From c29b5ab1cab351f3df824b0708b35c436076e95a Mon Sep 17 00:00:00 2001 From: Igor Sadalski Date: Sun, 28 Sep 2025 14:30:34 -0500 Subject: [PATCH 1/7] add proper path resolution for geneformer --- biomni/tool/genomics.py | 242 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 242 insertions(+) diff --git a/biomni/tool/genomics.py b/biomni/tool/genomics.py index 7d19a9ad4..10a44a337 100644 --- a/biomni/tool/genomics.py +++ b/biomni/tool/genomics.py @@ -2162,3 +2162,245 @@ def analyze_genomic_region_overlap(region_sets, output_prefix="overlap_analysis" log += f"- Summary statistics saved to: {summary_file}\n" return log + +def geneformer_embed( + adata_or_path, + base_dir, + adata_filename, + embeddings_prefix="embeddings_geneformer_zero_shot", + model_input_size=4096, + chunk_size=10000, + nproc=8, + forward_batch_size=64, +): + """ + Run Geneformer embedding extraction pipeline on an AnnData object or file. + + Parameters + ---------- + adata_or_path : str or AnnData + Path to .h5ad file or AnnData instance in memory. + base_dir : str + Base directory for all data/models/outputs. + adata_filename : str + Filename for AnnData file (used if adata_or_path is AnnData). + embeddings_prefix : str + Prefix for output embeddings csv. + model_input_size : int + Model input size for tokenizer. + chunk_size : int + Chunk size for tokenizer. + nproc : int + Number of processes for parallelization. + forward_batch_size : int + Batch size for embedding extraction. + + Returns + ------- + str + Steps performed during the embedding extraction process. + """ + + import anndata as ad + import pandas as pd + import numpy as np + import pickle + from pathlib import Path + from geneformer import EmbExtractor + from geneformer.tokenizer import TranscriptomeTokenizer + import os + import subprocess + + steps = [] + steps.append("Starting Geneformer embedding extraction pipeline") + steps.append(f"Base directory: {base_dir}") + steps.append(f"Model input size: {model_input_size}") + steps.append(f"Chunk size: {chunk_size}") + steps.append(f"Number of processes: {nproc}") + steps.append(f"Forward batch size: {forward_batch_size}") + + import sys + + proc = subprocess.Popen( + ["git", "lfs", "install"], + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + text=True + ) + for line in proc.stdout: + print(line, end='', file=sys.stdout) + proc.wait() + if proc.returncode != 0: + raise RuntimeError("git lfs install failed") + + geneformer_repo_dir = os.path.join(base_dir, "data", "Geneformer") + if not os.path.exists(geneformer_repo_dir): + proc = subprocess.Popen( + [ + "git", "clone", + "https://huggingface.co/ctheodoris/Geneformer", + geneformer_repo_dir + ], + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + text=True + ) + for line in proc.stdout: + print(line, end='', file=sys.stdout) + proc.wait() + if proc.returncode != 0: + raise RuntimeError("git clone of Geneformer failed") + + proc = subprocess.Popen( + ["pip", "install", "."], + cwd=geneformer_repo_dir, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + text=True + ) + for line in proc.stdout: + print(line, end='', file=sys.stdout) + proc.wait() + if proc.returncode != 0: + raise RuntimeError("pip install of Geneformer failed") + + try: + BASE_DIR = Path(base_dir) + MODELS_DIR = BASE_DIR / "Geneformer" + DATA_DIR = MODELS_DIR / "data" + HUMANIZED_DATA_DIR = DATA_DIR / "humanized" + MODEL_DIR = MODELS_DIR / "Geneformer-V2-104M" + EMBEDDINGS_DIR = BASE_DIR / "zero-shot-performance" / "embeddings" + + steps.append("Setting up directory structure") + HUMANIZED_DATA_DIR.mkdir(parents=True, exist_ok=True) + EMBEDDINGS_DIR.mkdir(parents=True, exist_ok=True) + steps.append(f"✓ Created directories: {HUMANIZED_DATA_DIR}, {EMBEDDINGS_DIR}") + + TOKEN_DICT_PATH = MODELS_DIR / "geneformer" / "token_dictionary_gc104M.pkl" + GENE_MEDIAN_PATH = MODELS_DIR / "geneformer" / "gene_median_dictionary_gc104M.pkl" + GENE_NAME_ID_PATH = MODELS_DIR / "geneformer" / "gene_name_id_dict_gc104M.pkl" + + adata_path = HUMANIZED_DATA_DIR / adata_filename + + steps.append("Loading and preparing AnnData object") + if isinstance(adata_or_path, str): + steps.append(f"Loading AnnData from file: {adata_or_path}") + adata = ad.read_h5ad(adata_or_path) + if Path(adata_or_path).resolve() != adata_path.resolve(): + adata.write_h5ad(adata_path) + steps.append(f"✓ Saved AnnData to: {adata_path}") + else: + steps.append("Using provided AnnData object") + adata = adata_or_path + adata.write_h5ad(adata_path) + steps.append(f"✓ Saved AnnData to: {adata_path}") + + steps.append(f"AnnData shape: {adata.n_obs} cells, {adata.n_vars} genes") + + steps.append("Preparing AnnData for Geneformer") + adata.var["ensembl_id"] = adata.var_names + adata.obs["n_counts"] = adata.X.sum(axis=1) + cell_indices = adata.obs.index.values + adata.obs["cell_index"] = cell_indices + adata.write_h5ad(adata_path) + steps.append("✓ Added required columns: ensembl_id, n_counts, cell_index") + + steps.append("Loading token dictionary and checking gene overlap") + + # Check if model files exist + if not TOKEN_DICT_PATH.exists(): + raise FileNotFoundError(f"Token dictionary file not found: {TOKEN_DICT_PATH}\n" + f"Please download the Geneformer model files to: {MODEL_DIR}\n" + f"Required files:\n" + f" - {TOKEN_DICT_PATH.name}\n" + f" - {GENE_MEDIAN_PATH.name}\n" + f" - {GENE_NAME_ID_PATH.name}\n" + f"You can download them from the Geneformer repository or Hugging Face.") + + if not GENE_MEDIAN_PATH.exists(): + raise FileNotFoundError(f"Gene median dictionary file not found: {GENE_MEDIAN_PATH}") + + if not GENE_NAME_ID_PATH.exists(): + raise FileNotFoundError(f"Gene name ID dictionary file not found: {GENE_NAME_ID_PATH}") + + with open(TOKEN_DICT_PATH, "rb") as f: + token_dict = pickle.load(f) + + token_keys = set(token_dict.keys()) + var_names = set(adata.var_names) + matching_tokens = token_keys & var_names + steps.append(f"✓ Loaded token dictionary with {len(token_dict)} tokens") + steps.append(f"✓ Found {len(matching_tokens)} matching genes between dataset and tokenizer") + steps.append(f"Sample matching tokens: {list(matching_tokens)[:10]}") + + steps.append("Initializing TranscriptomeTokenizer") + tokenizer = TranscriptomeTokenizer( + custom_attr_name_dict={"cell_index": "index"}, + model_input_size=model_input_size, + special_token=False, + collapse_gene_ids=True, + gene_median_file=Path(GENE_MEDIAN_PATH), + token_dictionary_file=Path(TOKEN_DICT_PATH), + chunk_size=chunk_size, + nproc=nproc, + ) + steps.append("✓ TranscriptomeTokenizer initialized successfully") + + steps.append("Tokenizing data for Geneformer") + tokenizer.tokenize_data( + data_directory=HUMANIZED_DATA_DIR, + output_directory=HUMANIZED_DATA_DIR, + output_prefix=f"tokenized_{model_input_size}_geneformer", + file_format="h5ad", + use_generator=False, + ) + steps.append("✓ Data tokenization completed") + + steps.append("Initializing Embedding Extractor") + embex = EmbExtractor( + model_type="Pretrained", + num_classes=0, + emb_mode="cell", + cell_emb_style="mean_pool", + gene_emb_style="mean_pool", + emb_layer=-1, + forward_batch_size=forward_batch_size, + nproc=nproc, + token_dictionary_file=str(TOKEN_DICT_PATH), + max_ncells=None, + emb_label=["index"], + ) + steps.append("✓ Embedding Extractor initialized successfully") + + steps.append("Extracting cell embeddings using Geneformer") + tokenized_dataset_path = HUMANIZED_DATA_DIR / f"tokenized_{model_input_size}_geneformer.dataset" + emb_prefix = f"embeddings_geneformer_{model_input_size}" + embs = embex.extract_embs( + model_directory=str(MODEL_DIR), + input_data_file=str(tokenized_dataset_path), + output_directory=str(EMBEDDINGS_DIR), + output_prefix=emb_prefix, + output_torch_embs=True, + ) + steps.append("✓ Cell embeddings extracted successfully") + + steps.append("Processing and saving embeddings") + df = embs[0] + df = df.set_index("index", drop=True) + df.index.name = None + df = df.loc[adata.obs.index] + + output_csv_path = EMBEDDINGS_DIR / f"{embeddings_prefix}.csv" + df.to_csv(output_csv_path) + steps.append(f"✓ Embeddings saved to: {output_csv_path}") + steps.append(f"✓ Embeddings shape: {df.shape}") + steps.append(f"✓ File size: {output_csv_path.stat().st_size / (1024 * 1024):.2f} MB") + + steps.append("Geneformer embedding extraction completed successfully") + return "\n".join(steps) + + except Exception as e: + steps.append(f"✗ Error during Geneformer embedding extraction: {str(e)}") + steps.append("Geneformer embedding extraction failed") + return "\n".join(steps) \ No newline at end of file From 63750fca8026c5c27e116d035e388b35b025fc1b Mon Sep 17 00:00:00 2001 From: Igor Sadalski Date: Sun, 28 Sep 2025 14:54:57 -0500 Subject: [PATCH 2/7] add resolution of some depreciated dependencies for geneformer --- biomni/tool/genomics.py | 37 ++++++++++++-- biomni/tool/tool_description/genomics.py | 63 +++++++++++++++++++++++- biomni_env/new_software_v006.sh | 26 ++++++++++ 3 files changed, 121 insertions(+), 5 deletions(-) diff --git a/biomni/tool/genomics.py b/biomni/tool/genomics.py index 10a44a337..fecf414eb 100644 --- a/biomni/tool/genomics.py +++ b/biomni/tool/genomics.py @@ -2233,13 +2233,12 @@ def geneformer_embed( if proc.returncode != 0: raise RuntimeError("git lfs install failed") - geneformer_repo_dir = os.path.join(base_dir, "data", "Geneformer") - if not os.path.exists(geneformer_repo_dir): + if not os.path.exists(base_dir): proc = subprocess.Popen( [ "git", "clone", "https://huggingface.co/ctheodoris/Geneformer", - geneformer_repo_dir + str(base_dir) ], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, @@ -2253,7 +2252,29 @@ def geneformer_embed( proc = subprocess.Popen( ["pip", "install", "."], - cwd=geneformer_repo_dir, + cwd=str(Path(base_dir) / "Geneformer"), + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + text=True + ) + # Also install required dependencies after installing Geneformer + proc.wait() + if proc.returncode != 0: + raise RuntimeError("pip install of Geneformer failed") + #required to make geneformer work + extra_packages = [ + "peft==0.11.1", + "pyarrow>=12.0", + "pytz>=2023.0", + "ray>=2.6", + "scanpy>=1.9", + "scipy>=1.13.1", + "torch>=2.0.1", + "tqdm>=4.66.3", + "transformers==4.40" + ] + proc = subprocess.Popen( + ["pip", "install"] + extra_packages, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True @@ -2330,6 +2351,14 @@ def geneformer_embed( token_keys = set(token_dict.keys()) var_names = set(adata.var_names) matching_tokens = token_keys & var_names + if len(matching_tokens) == 0: + raise ValueError( + "No matching genes found between the dataset and the Geneformer tokenizer.\n" + f"Number of genes in dataset: {len(var_names)}\n" + f"Number of tokens in tokenizer: {len(token_keys)}\n" + "Please ensure your gene names (var_names) are Ensembl IDs matching the Geneformer model." + ) + steps.append(f"✓ Loaded token dictionary with {len(token_dict)} tokens") steps.append(f"✓ Found {len(matching_tokens)} matching genes between dataset and tokenizer") steps.append(f"Sample matching tokens: {list(matching_tokens)[:10]}") diff --git a/biomni/tool/tool_description/genomics.py b/biomni/tool/tool_description/genomics.py index 564f2f1e3..32773c9b7 100644 --- a/biomni/tool/tool_description/genomics.py +++ b/biomni/tool/tool_description/genomics.py @@ -654,4 +654,65 @@ } ], }, -] + { + "description": "Generate Geneformer embeddings for single-cell RNA-seq data using the Geneformer transformer model. " + "This function automatically downloads and installs the Geneformer model, tokenizes the transcriptome data, " + "and extracts cell-level embeddings using the pretrained Geneformer-V2-104M model. The function includes " + "comprehensive validation to ensure gene names match the tokenizer vocabulary and provides detailed error " + "messages if no genes match. The embeddings are saved as CSV files and can be used for downstream analysis " + "such as clustering, visualization, and cell type annotation. Requires Ensembl gene IDs as input.", + "name": "geneformer_embed", + "optional_parameters": [ + { + "default": "embeddings_geneformer_zero_shot", + "description": "Prefix for output embeddings CSV file", + "name": "embeddings_prefix", + "type": "str", + }, + { + "default": 4096, + "description": "Model input size for tokenizer (maximum number of genes per cell)", + "name": "model_input_size", + "type": "int", + }, + { + "default": 10000, + "description": "Chunk size for tokenizer processing", + "name": "chunk_size", + "type": "int", + }, + { + "default": 8, + "description": "Number of processes for parallelization", + "name": "nproc", + "type": "int", + }, + { + "default": 64, + "description": "Batch size for embedding extraction", + "name": "forward_batch_size", + "type": "int", + }, + ], + "required_parameters": [ + { + "default": None, + "description": "Path to .h5ad file or AnnData instance in memory", + "name": "adata_or_path", + "type": "str", + }, + { + "default": None, + "description": "Base directory for all data/models/outputs", + "name": "base_dir", + "type": "str", + }, + { + "default": None, + "description": "Filename for AnnData file (used if adata_or_path is AnnData)", + "name": "adata_filename", + "type": "str", + }, + ], + } +] \ No newline at end of file diff --git a/biomni_env/new_software_v006.sh b/biomni_env/new_software_v006.sh index 7edf433f2..2b3df23ab 100644 --- a/biomni_env/new_software_v006.sh +++ b/biomni_env/new_software_v006.sh @@ -5,3 +5,29 @@ pip install lazyslide pip install "git+https://github.com/YosefLab/popV.git@refs/pull/100/head" pip install pybiomart pip install fair-esm + +#versioning for geneformer to make this work +anndata>=0.11 +datasets>=2.12 +loompy>=3.0 +matplotlib>=3.7 +numpy>=1.26.4 +optuna>=3.6 +optuna-integration>=3.6 +packaging>=23.0 +pandas>=2.2.2 +peft=0.11.1 +pyarrow>=12.0 +pytz>=2023.0 +ray>=2.6 +scanpy>=1.9 +scipy>=1.13.1 +torch>=2.0.1 +tqdm>=4.66.3 +transformers=4.40 +h5py>=3.11.0 +numcodecs>=0.13.0 +zarr>=2.18.2 +requests>=2.32.1 +numba>=0.6.1 +pynvml \ No newline at end of file From 0bf07c4a1768b5690933e39d7180452e97ba8bfc Mon Sep 17 00:00:00 2001 From: Igor Sadalski Date: Mon, 29 Sep 2025 20:25:10 +0000 Subject: [PATCH 3/7] add support for passinga different model --- biomni/tool/genomics.py | 30 +- biomni_env/new_software_v006.sh | 51 +- tutorials/geneformer_tests.py | 239 ++++ .../embeddings/embeddings_geneformer_4096.csv | 1001 +++++++++++++++++ .../synthetic_geneformer_embeddings.csv | 1001 +++++++++++++++++ 5 files changed, 2283 insertions(+), 39 deletions(-) mode change 100644 => 100755 biomni_env/new_software_v006.sh create mode 100644 tutorials/geneformer_tests.py create mode 100644 tutorials/zero-shot-performance/embeddings/embeddings_geneformer_4096.csv create mode 100644 tutorials/zero-shot-performance/embeddings/synthetic_geneformer_embeddings.csv diff --git a/biomni/tool/genomics.py b/biomni/tool/genomics.py index fecf414eb..b3b6e0409 100644 --- a/biomni/tool/genomics.py +++ b/biomni/tool/genomics.py @@ -2168,6 +2168,7 @@ def geneformer_embed( base_dir, adata_filename, embeddings_prefix="embeddings_geneformer_zero_shot", + model_name="Geneformer-V2-104M", model_input_size=4096, chunk_size=10000, nproc=8, @@ -2186,6 +2187,8 @@ def geneformer_embed( Filename for AnnData file (used if adata_or_path is AnnData). embeddings_prefix : str Prefix for output embeddings csv. + model_name : str + Name of the Geneformer model to use (e.g., "Geneformer-V2-104M"). model_input_size : int Model input size for tokenizer. chunk_size : int @@ -2206,14 +2209,14 @@ def geneformer_embed( import numpy as np import pickle from pathlib import Path - from geneformer import EmbExtractor - from geneformer.tokenizer import TranscriptomeTokenizer + import os import subprocess steps = [] steps.append("Starting Geneformer embedding extraction pipeline") steps.append(f"Base directory: {base_dir}") + steps.append(f"Model name: {model_name}") steps.append(f"Model input size: {model_input_size}") steps.append(f"Chunk size: {chunk_size}") steps.append(f"Number of processes: {nproc}") @@ -2233,12 +2236,13 @@ def geneformer_embed( if proc.returncode != 0: raise RuntimeError("git lfs install failed") - if not os.path.exists(base_dir): + geneformer_dir = Path(base_dir) / "Geneformer" + if not geneformer_dir.exists(): proc = subprocess.Popen( [ "git", "clone", "https://huggingface.co/ctheodoris/Geneformer", - str(base_dir) + str(geneformer_dir) ], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, @@ -2249,10 +2253,12 @@ def geneformer_embed( proc.wait() if proc.returncode != 0: raise RuntimeError("git clone of Geneformer failed") + else: + print(f"Geneformer directory already exists: {geneformer_dir}") proc = subprocess.Popen( ["pip", "install", "."], - cwd=str(Path(base_dir) / "Geneformer"), + cwd=str(geneformer_dir), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True @@ -2264,13 +2270,6 @@ def geneformer_embed( #required to make geneformer work extra_packages = [ "peft==0.11.1", - "pyarrow>=12.0", - "pytz>=2023.0", - "ray>=2.6", - "scanpy>=1.9", - "scipy>=1.13.1", - "torch>=2.0.1", - "tqdm>=4.66.3", "transformers==4.40" ] proc = subprocess.Popen( @@ -2286,11 +2285,14 @@ def geneformer_embed( raise RuntimeError("pip install of Geneformer failed") try: + from geneformer import EmbExtractor + from geneformer.tokenizer import TranscriptomeTokenizer + steps.append(f"Loading Geneformer model: {model_name}") BASE_DIR = Path(base_dir) - MODELS_DIR = BASE_DIR / "Geneformer" + MODELS_DIR = geneformer_dir DATA_DIR = MODELS_DIR / "data" HUMANIZED_DATA_DIR = DATA_DIR / "humanized" - MODEL_DIR = MODELS_DIR / "Geneformer-V2-104M" + MODEL_DIR = MODELS_DIR / model_name EMBEDDINGS_DIR = BASE_DIR / "zero-shot-performance" / "embeddings" steps.append("Setting up directory structure") diff --git a/biomni_env/new_software_v006.sh b/biomni_env/new_software_v006.sh old mode 100644 new mode 100755 index 2b3df23ab..4dd8840da --- a/biomni_env/new_software_v006.sh +++ b/biomni_env/new_software_v006.sh @@ -5,29 +5,30 @@ pip install lazyslide pip install "git+https://github.com/YosefLab/popV.git@refs/pull/100/head" pip install pybiomart pip install fair-esm +sudo apt update && sudo apt install git-lfs -#versioning for geneformer to make this work -anndata>=0.11 -datasets>=2.12 -loompy>=3.0 -matplotlib>=3.7 -numpy>=1.26.4 -optuna>=3.6 -optuna-integration>=3.6 -packaging>=23.0 -pandas>=2.2.2 -peft=0.11.1 -pyarrow>=12.0 -pytz>=2023.0 -ray>=2.6 -scanpy>=1.9 -scipy>=1.13.1 -torch>=2.0.1 -tqdm>=4.66.3 -transformers=4.40 -h5py>=3.11.0 -numcodecs>=0.13.0 -zarr>=2.18.2 -requests>=2.32.1 -numba>=0.6.1 -pynvml \ No newline at end of file +# versioning for geneformer to make this work +pip install "anndata>=0.11" +pip install "datasets>=2.12" +pip install "loompy>=3.0" +pip install "matplotlib>=3.7" +pip install "numpy>=1.26.4" +pip install "optuna>=3.6" +pip install "optuna-integration>=3.6" +pip install "packaging>=23.0" +pip install "pandas>=2.2.2" +pip install "peft==0.11.1" +pip install "pyarrow>=12.0" +pip install "pytz>=2023.0" +pip install "ray>=2.6" +pip install "scanpy>=1.9" +pip install "scipy>=1.13.1" +pip install "torch>=2.0.1" +pip install "tqdm>=4.66.3" +pip install "transformers==4.40" +pip install "h5py>=3.11.0" +pip install "numcodecs>=0.13.0" +pip install "zarr>=2.18.2" +pip install "requests>=2.32.1" +pip install "numba>=0.6.1" +pip install pynvml \ No newline at end of file diff --git a/tutorials/geneformer_tests.py b/tutorials/geneformer_tests.py new file mode 100644 index 000000000..30949c735 --- /dev/null +++ b/tutorials/geneformer_tests.py @@ -0,0 +1,239 @@ + +# ============================================================================= +# CONFIGURATION PARAMETERS - Modify these as needed +# ============================================================================= + +import os + +# Base paths +BIOMNI_ROOT = "/home/igor/exploration/biomni/Biomni/" +TUTORIALS_DIR = os.path.join(BIOMNI_ROOT, "tutorials") +DATA_DIR = os.path.join(TUTORIALS_DIR, "data") +EMBEDDINGS_DIR = os.path.join(TUTORIALS_DIR, "zero-shot-performance", "embeddings") + +# Dataset parameters +SYNTHETIC_FILENAME = "synthetic_ensembl_dataset.h5ad" +SYNTHETIC_EMBEDDINGS_PREFIX = "synthetic_geneformer_embeddings" +SYNTHETIC_UMAP_PLOT_FILENAME = "synthetic_geneformer_umap.png" + +# Geneformer parameters +# Available models: +# - "Geneformer-V1-10M": 10M parameters, fastest, good for quick testing +# - "Geneformer-V2-104M": 104M parameters, balanced performance (default) +# - "Geneformer-V2-104M_CLcancer": 104M parameters, cancer-specific fine-tuning +# - "Geneformer-V2-316M": 316M parameters, highest performance, requires more memory +MODEL_NAME = "Geneformer-V2-104M" +MODEL_INPUT_SIZE = 4096 +CHUNK_SIZE = 10000 +NPROC = 8 +FORWARD_BATCH_SIZE = 64 + +# Synthetic dataset parameters +N_CELLS = 1000 +N_GENES = 2000 +N_CELL_TYPES = 5 + +# UMAP parameters +UMAP_SIZE = 5 +UMAP_DPI = 300 + +# ============================================================================= +# HELPER FUNCTIONS +# ============================================================================= + +def create_synthetic_ensembl_dataset(n_cells, n_genes, n_cell_types, random_seed=42): + """ + Create a synthetic single-cell RNA-seq dataset with Ensembl gene IDs. + + Parameters + ---------- + n_cells : int + Number of cells to generate + n_genes : int + Number of genes to generate + n_cell_types : int + Number of different cell types + random_seed : int + Random seed for reproducibility + + Returns + ------- + adata : AnnData + Synthetic AnnData object with Ensembl gene IDs + """ + import numpy as np + import pandas as pd + import scanpy as sc + from scipy import sparse + + np.random.seed(random_seed) + + # Generate synthetic Ensembl gene IDs + # Real Ensembl IDs follow pattern: ENSG + 11 digits + ensembl_ids = [] + for i in range(n_genes): + # Generate 11-digit number with leading zeros + gene_number = f"{i+1:011d}" + ensembl_id = f"ENSG{gene_number}" + ensembl_ids.append(ensembl_id) + + # Generate synthetic cell type labels + cell_types = [f"CellType_{i+1}" for i in range(n_cell_types)] + cell_type_labels = np.random.choice(cell_types, size=n_cells) + + # Generate synthetic expression matrix + # Use negative binomial distribution to simulate count data + expression_matrix = np.zeros((n_cells, n_genes)) + + for i, cell_type in enumerate(cell_types): + # Get cells of this type + cell_mask = cell_type_labels == cell_type + + # Generate different expression patterns for each cell type + # Some genes are highly expressed in specific cell types + for j in range(n_genes): + if j % (n_genes // n_cell_types) == i: + # High expression for cell type-specific genes + mean_expr = np.random.negative_binomial(5, 0.3, size=np.sum(cell_mask)) + else: + # Low baseline expression + mean_expr = np.random.negative_binomial(2, 0.7, size=np.sum(cell_mask)) + + expression_matrix[cell_mask, j] = mean_expr + + # Add some noise + noise = np.random.poisson(1, size=(n_cells, n_genes)) + expression_matrix = expression_matrix + noise + + # Convert to sparse matrix for efficiency + expression_matrix = sparse.csr_matrix(expression_matrix.astype(int)) + + # Create cell metadata + cell_metadata = pd.DataFrame({ + 'cell_type': cell_type_labels, + 'cell_id': [f"Cell_{i:04d}" for i in range(n_cells)], + 'n_counts': np.array(expression_matrix.sum(axis=1)).flatten(), + 'n_genes': np.array((expression_matrix > 0).sum(axis=1)).flatten() + }) + + # Create gene metadata + gene_metadata = pd.DataFrame({ + 'gene_id': ensembl_ids, + 'gene_symbol': [f"GENE_{i+1:04d}" for i in range(n_genes)], + 'n_cells': np.array((expression_matrix > 0).sum(axis=0)).flatten(), + 'mean_counts': np.array(expression_matrix.mean(axis=0)).flatten() + }) + + # Create AnnData object + adata = sc.AnnData( + X=expression_matrix, + obs=cell_metadata, + var=gene_metadata + ) + + # Set gene names to Ensembl IDs + adata.var_names = ensembl_ids + adata.var_names_unique = ensembl_ids + + # Add some basic preprocessing + adata.var['highly_variable'] = adata.var['n_cells'] > n_cells * 0.1 + adata.obs['total_counts'] = adata.obs['n_counts'] + + return adata + +# ============================================================================= +# MAIN EXECUTION +# ============================================================================= + +if __name__ == "__main__": + import torch + import scanpy as sc + import numpy as np + import pandas as pd + + import sys + sys.path.append(BIOMNI_ROOT) + from biomni.tool.genomics import geneformer_embed + + print("=" * 80) + print("GENERATING SYNTHETIC DATASET WITH ENSEMBL IDs") + print("=" * 80) + + # Create synthetic dataset with Ensembl IDs + print(f"Creating synthetic dataset with {N_CELLS} cells, {N_GENES} genes, {N_CELL_TYPES} cell types...") + synthetic_adata = create_synthetic_ensembl_dataset(N_CELLS, N_GENES, N_CELL_TYPES) + + print(f"Synthetic dataset created: {synthetic_adata}") + print(f"Number of cells: {synthetic_adata.n_obs}") + print(f"Number of genes: {synthetic_adata.n_vars}") + print(f"Sample Ensembl IDs: {list(synthetic_adata.var_names[:10])}") + print(f"Cell types: {list(synthetic_adata.obs['cell_type'].unique())}") + + # Create directories + os.makedirs(DATA_DIR, exist_ok=True) + os.makedirs(EMBEDDINGS_DIR, exist_ok=True) + + # Save synthetic dataset + synthetic_path = os.path.join(DATA_DIR, SYNTHETIC_FILENAME) + synthetic_adata.write(synthetic_path) + print(f"Saved synthetic dataset to: {synthetic_path}") + + print("\n" + "=" * 80) + print("TESTING WITH SYNTHETIC DATASET (ENSEMBL IDs)") + print("=" * 80) + + # Test with synthetic dataset (should work better with Ensembl IDs) + print("Testing Geneformer with synthetic dataset containing Ensembl IDs...") + synthetic_steps = geneformer_embed( + adata_or_path=synthetic_adata, + base_dir=TUTORIALS_DIR, + adata_filename=SYNTHETIC_FILENAME, + embeddings_prefix=SYNTHETIC_EMBEDDINGS_PREFIX, + model_name=MODEL_NAME, + model_input_size=MODEL_INPUT_SIZE, + chunk_size=CHUNK_SIZE, + nproc=NPROC, + forward_batch_size=FORWARD_BATCH_SIZE, + ) + print("Synthetic dataset Geneformer embedding steps:") + print(synthetic_steps) + + # Load the synthetic embeddings CSV + synthetic_embeddings_path = os.path.join(EMBEDDINGS_DIR, f"{SYNTHETIC_EMBEDDINGS_PREFIX}.csv") + synthetic_embeddings_df = pd.read_csv(synthetic_embeddings_path, index_col=0) + print(f"✓ Loaded synthetic embeddings with shape: {synthetic_embeddings_df.shape}") + print(f"✓ Synthetic embeddings columns: {list(synthetic_embeddings_df.columns)}") + + synthetic_adata.obsm['X_geneformer'] = synthetic_embeddings_df.values + print("\nChecking for synthetic Geneformer embeddings...") + print(f"Available obsm keys: {list(synthetic_adata.obsm.keys())}") + + if 'X_geneformer' in synthetic_adata.obsm: + synthetic_adata.obsm['X_umap_input'] = synthetic_adata.obsm['X_geneformer'] + use_rep = 'X_umap_input' + print(f"✓ Found synthetic Geneformer embeddings in obsm['X_geneformer'] with shape: {synthetic_adata.obsm['X_geneformer'].shape}") + else: + print("⚠️ No synthetic Geneformer embeddings found in expected location (obsm['X_geneformer'])") + print("⚠️ Using raw data for UMAP.") + use_rep = None + + sc.pp.neighbors(synthetic_adata, use_rep=use_rep) + sc.tl.umap(synthetic_adata) + import matplotlib.pyplot as plt + synthetic_umap_output_path = os.path.join(DATA_DIR, SYNTHETIC_UMAP_PLOT_FILENAME) + sc.pl.umap(synthetic_adata, color='cell_type', show=False, size=UMAP_SIZE, title="UMAP of Synthetic Geneformer embeddings") + plt.savefig(synthetic_umap_output_path, dpi=UMAP_DPI, bbox_inches='tight') + plt.close() + print(f"✓ Synthetic UMAP plot saved to: {synthetic_umap_output_path}") + + # Show cell type distribution + print(f"\nCell type distribution in synthetic dataset:") + print(synthetic_adata.obs['cell_type'].value_counts()) + + print("\n" + "=" * 80) + print("TESTING COMPLETE") + print("=" * 80) + print("Generated files:") + print(f"- Synthetic dataset: {synthetic_path}") + print(f"- Synthetic embeddings: {os.path.join(EMBEDDINGS_DIR, f'{SYNTHETIC_EMBEDDINGS_PREFIX}.csv')}") + print(f"- Synthetic UMAP plot: {os.path.join(DATA_DIR, SYNTHETIC_UMAP_PLOT_FILENAME)}") diff --git a/tutorials/zero-shot-performance/embeddings/embeddings_geneformer_4096.csv b/tutorials/zero-shot-performance/embeddings/embeddings_geneformer_4096.csv new file mode 100644 index 000000000..763ed23f0 --- /dev/null +++ b/tutorials/zero-shot-performance/embeddings/embeddings_geneformer_4096.csv @@ -0,0 +1,1001 @@ +,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,index +0,0.4372309,-0.23207778,-0.5129313,-0.1505107,-0.3634494,0.22991809,-0.20210837,0.42830157,0.13887508,-0.44921246,-0.21464333,-0.24415077,0.050682355,0.27401868,-0.15017961,-0.37812823,0.0374734,0.23365864,-0.6975457,0.6355338,-0.31056368,0.14427702,0.18788977,0.33175665,0.23579076,0.12245113,0.17191654,-0.06309888,-0.08664267,-0.21743742,-0.34948164,0.22004306,-0.5177804,0.2804833,-0.23115024,-0.25012013,-0.038990825,-0.47206828,-0.40999436,-0.756197,0.24700302,-0.78854036,0.4353037,-0.20303614,-0.29390508,0.27218565,0.12297985,0.33031616,-0.11275032,-0.10072221,0.19491717,-0.23626986,-0.11313645,-0.13503897,-0.16626176,-0.42969012,-0.5224517,-0.050794378,-0.3405571,-0.24559972,-0.31661418,0.23586594,-0.2224473,0.12518609,-0.1300094,0.6589022,-0.4155468,0.22492318,0.2207923,-0.15420291,0.27590397,-0.69979304,-0.0258227,-0.10319634,0.27178735,0.06357276,-0.236632,0.3138563,0.31705773,0.3260627,0.08432958,-0.23138657,-0.28587154,-0.071928084,0.15571845,0.42014134,-0.05255979,-0.36748397,-0.14844249,0.022432012,0.21609217,0.15601234,0.1374452,-0.38278893,-0.10259365,0.09377084,-0.17703564,0.34630516,0.5432007,-0.28921926,-0.11883723,0.30603582,0.59142107,0.245034,-0.19415747,-0.14202738,-0.110766865,-0.51791596,-0.19859843,0.0520715,-0.27180564,0.60554236,-0.2252023,0.23310392,0.6609244,-0.080559984,-0.11082033,0.022976499,0.03607942,-0.1178181,-0.1990046,-0.12887916,0.16988936,-0.49232006,0.09014026,-0.1091098,0.75131094,0.13940585,-0.619661,0.19557634,-0.5455241,0.15753233,-0.016299518,0.4129727,0.6850104,0.5048944,0.21845385,0.6754938,-0.36893606,0.092702724,-0.059605733,-0.42031306,0.027477909,-0.2230806,-0.07632838,-0.6181169,-0.0045621274,-0.24601297,0.0642831,-0.032763507,0.5009018,-0.53682446,-0.11739376,0.06702504,0.81155324,-0.2941447,-0.035550874,0.6791706,0.8862041,0.96365243,0.04529369,1.0891742,0.20958701,-0.29116097,0.09191421,-0.15757328,-0.5334169,0.3759012,0.37447718,-0.03742246,0.14454725,0.022061951,0.08205789,0.4629951,-0.4660792,-0.045932673,-0.24005772,-0.054731622,0.11269383,-0.0950674,-0.43939856,-0.2863617,0.12859625,0.16398406,0.15905231,0.212034,-0.176273,0.49327126,0.23951003,1.5837617,-0.115931265,-0.021881377,0.14812535,0.25443166,0.19749963,-0.14307642,-0.043921556,0.3704277,0.4284556,0.124675386,-0.51894575,0.08929976,-0.27168787,-0.3806136,-0.18221422,-0.28426227,-0.15046415,0.11505049,-0.4963499,-0.18789458,-0.07483339,-0.28424478,0.37749383,-2.4825358,-0.1980811,-0.14580518,0.2926217,-0.21185361,-0.34600747,-0.0137704825,-0.5785228,0.31419253,0.30736163,0.3937756,-0.6629387,0.39200196,0.32618165,-0.64063597,-0.07039616,-0.56401914,-0.19529976,-0.027792852,0.42745212,0.073642105,-0.06735709,0.12693559,0.15384407,0.56446993,-0.09523867,0.10953885,0.4035327,0.43114972,-0.042142063,0.67469305,0.0016474864,0.58258194,-0.2733943,-0.18208002,0.43177256,-0.23982508,0.18164806,-0.09238567,0.14077498,0.5553805,-0.41662636,-0.7917117,-0.7547205,-0.16375701,1.2136562,-0.34062874,-0.4911096,0.27738336,-0.25323418,-0.25486034,0.00053487107,0.42825833,-0.08759057,0.0892176,-0.73456055,0.07579522,0.019897258,0.12278686,-0.06501098,-0.23633432,-0.44901434,0.850123,-0.069813296,0.4778953,0.31231117,0.18145242,-0.23211499,-0.5017984,0.08117761,0.8216889,0.48437595,0.042035,-0.27217236,-0.106719226,-0.3988256,-0.04959669,0.06303328,0.5284824,0.551958,-0.016870832,0.13909666,0.17864785,-0.016667321,0.057846792,-0.2878376,-0.2822064,-0.07948586,-0.13480723,0.55991215,0.52296734,0.010285179,0.43747845,-0.046397552,0.36134842,-0.105519526,-0.5781068,0.5203756,1.163941,-0.31076044,-0.32713172,0.40155298,0.3501656,-0.10142489,0.30780274,-0.56800795,-0.39739126,0.46387473,-0.19139859,-0.5054603,0.1376415,-0.25406107,0.15484998,-0.65780413,0.2388403,-0.16686596,-0.6132312,-0.59103405,-0.015613914,-2.618363,0.38196728,-0.28171706,-0.14879587,-0.27473024,-0.16369757,0.20415077,-0.43907714,-0.41536286,0.121916085,0.10547449,0.57459337,0.0040394417,0.09362882,-0.2507271,-0.22244097,-0.21851435,0.14629921,0.1417814,0.2892748,-0.15538353,-0.4770467,-0.030531565,-0.17608525,-0.45617104,0.122057706,-0.5933149,-0.4638554,-0.20812918,-0.29377383,-0.36030617,0.6431498,-0.3355685,0.09037874,-0.18767326,0.08472754,-0.06804906,0.15092103,0.032126665,0.12291039,0.03420359,-0.11086586,0.06835878,-0.3147095,0.24242058,0.07685274,0.18565477,0.22939374,0.0014640794,0.24064125,0.39038175,0.669186,-0.20855945,0.8898593,0.40895367,-0.022656789,0.23849061,0.0014334865,-0.31466457,-0.47804478,-0.1598322,0.17693797,-0.4778808,-0.37982392,-0.0045533846,-0.33525327,-0.64299005,0.47161236,0.0063450616,0.107324064,0.08658267,0.27231425,0.65518135,-0.36067355,-0.02890056,-0.05483272,-0.25032422,-0.54843646,-0.40890923,-0.66226006,-0.56220794,-0.041718878,1.0362958,-0.124124244,0.009864751,-0.09632212,-0.41621494,0.1186669,0.14626573,-0.059898887,0.1543822,0.46605104,-0.37966758,-0.6626912,0.53465796,-0.17702618,-0.15378545,-0.46670833,0.36055273,0.53733355,-0.4697307,0.37103873,0.33902308,0.039085872,-0.13136266,-0.45671934,-0.046575144,-0.11330163,-0.41373324,0.4336121,0.22091453,-0.68615997,0.4201279,0.14154473,-0.23235506,-0.7518496,0.45517564,-0.051991668,-0.2078114,0.06373639,0.34053254,0.102888905,0.009058364,-0.22853692,0.083572395,-0.46864423,0.29120955,0.22332497,-0.016565211,0.03726612,-0.2491993,-0.07850542,-0.762863,-0.042663552,-0.51625186,-0.2333469,0.2833715,0.11894145,0.18068157,0.15561472,0.10836558,0.39644387,-0.25721416,0.1192495,-0.10613086,-0.35016975,0.3929536,0.4469218,0.39430454,-0.40729463,0.62032557,0.0069580884,-0.16114286,-0.11448521,0.10618294,0.4325308,0.15273571,0.566653,-0.10944089,-0.16396742,0.33272237,0.72504807,0.24160983,0.456304,-0.029231261,-0.22024202,0.20223878,0.040100034,0.2293569,0.061372798,-0.6833876,0.037448674,-0.31754005,0.15502983,0.5512435,0.014491947,0.34024185,-0.075605296,-0.3451854,0.077381685,0.081993945,0.007827661,-1.2584392,0.27893564,0.2789406,0.9850306,0.33420476,-0.0710575,-0.071988575,0.67612857,-0.2161557,0.12997907,0.37593034,0.058791835,-0.3938042,0.4613928,-0.88495857,0.32565767,-0.13840127,-0.049393877,0.18373555,-0.0794754,0.35333234,0.82676625,-0.22808504,-0.01840937,-0.011549483,-0.3660257,0.30313376,-0.40847346,-0.014169665,-0.55022466,-0.45911705,0.5917398,0.5332233,0.3783074,-0.2701212,-0.025206698,0.042493347,-0.29556218,0.16564083,0.1548065,0.057649445,-0.13002479,-0.6600508,-0.100252464,0.38154423,-0.11325857,0.20652068,0.06807203,-0.05554557,0.15651251,-0.10561442,-0.006643085,-0.09870675,-0.67078537,-0.08005247,-0.28752196,-0.37321803,0.48800874,-0.1861383,0.14870773,0.25891447,0.07244025,-0.19772467,0.33313704,0.028238507,0.8264308,0.2508187,-0.063913696,-0.33727875,0.19175293,0.13191625,-0.21107608,-0.036088523,-0.28834558,-0.02081654,-0.54765767,0.39410916,-0.041887697,-0.3261172,0.13908708,-0.20577759,0.02602597,0.5462966,-0.08289389,-0.1237524,-0.101665616,0.1515426,-0.1366055,-0.22056001,-0.04140006,0.19711864,0.15398893,0.1519829,-0.10067034,-0.024199745,-0.2231038,0.42066544,0.04837872,0.44719034,0.38937074,-0.17898795,-0.32193998,-0.13345063,0.08851056,0.4714344,0.06821024,-0.1420807,-0.29474628,-0.45427394,-0.3461485,0.20626704,0.08931467,0.31220776,0.100829996,-0.1198665,0.77250093,-0.10880824,1.2134569,-0.021458037,-0.3274693,0.04608492,0.4564154,0.1434157,0.05657905,-0.3645843,0.6797279,0.39176413,-0.003673322,-0.1530489,-0.32853332,0.068508595,0.17834796,-0.11024614,-0.085930735,-0.06021137,-0.6271931,-0.3158404,0.19825335,0.2744836,0.24260625,-0.07190124,-0.01891003,0.40648124,-0.07214431,0.4169232,-0.42041454,-0.27650663,0.32009628,0.078518994,-0.1175519,0.1290759,-0.50484496,0.42856956,-0.45553732,-0.08358943,-0.29453874,0.10687768,-0.18396549,-0.2598697,0.3356949,0.011719002,0.40484804,-0.41253904,-0.22948326,-0.266443,0.5399789,0.24611795,0.20607425,0.5105691,-0.24131186,-0.05821434,0.080239184,0.45739326,0.93512744,-0.34914094,0.049264178,0.33422107,-0.45069516,-0.4922032,0.4337721,-0.25764504,0.071219206,0.15101063,-0.2413212,-0.31784552,0.35059014,0.24145225,0.02385176,0.053435177,-0.73151696,-0.08366235,0.5103437,-0.39650142,-0.15136904,-0.22479726,0.20644277,0.30537683,-0.3184487,-0.3697558,-0.048404194,0.26676154,-0.23331083,-0.51382536,-0.07814933,-0.34871554,0.25983062,-0.020900892,-0.27208203,-0.055889018,0.049219977,-0.46021965,0.20280018,-0.00094492995,-0.36238593,0.06063593,-0.1943345,-0.071788505,0.8236433,-0.20938133,-0.018123893,-0.4842232,-0.36455512,-0.73408824,-0.4004791,0.27898204,0.13023642,0.06344488,-0.6065912,-0.16745818,-0.17165983,-0.106663294,-0.06485026,-0.22826211,0.4298362,0.14943463,0.46884385,-0.0518118,-0.79008913,0.36228493,-0.011644781,-0.07216482,-0.51820487,0.51809543,-0.0728359,0.70607233,-0.0070755463,0.22243899,0.17298312,-0.45304725,-0.104519844,-0.23460996,-0.18912959,-0.70022684,-0.0013838691,32 +1,0.39858034,-0.17778991,-0.47388962,-0.13176416,-0.34211794,0.22410974,-0.2247194,0.27355933,0.15601909,-0.37778014,-0.1391723,-0.16187513,-0.071918815,0.17106494,-0.23323584,-0.57132107,0.06522264,0.14005528,-0.44080678,0.6353121,-0.26153582,0.43425378,0.045950413,0.17809375,0.12800068,0.28622672,0.27007568,-0.0966509,-0.15121417,-0.16526105,-0.31818122,0.3056635,-0.21366265,0.16747236,0.005839162,-0.23900896,0.07378386,-0.14746907,-0.33195692,-0.7306182,0.29499954,-0.7393907,0.3643805,-0.09167168,-0.29682687,0.28035673,0.18873397,0.2929721,-0.06866115,-0.0035958746,0.15363434,-0.16466719,-0.018987374,-0.29615107,-0.26572138,-0.5805165,-0.55788684,-0.1037572,-0.4773219,-0.41548806,-0.36699864,0.26401323,-0.3504908,-0.12211038,-0.067925565,0.43967718,-0.56169915,0.23034224,0.16713986,-0.1718854,0.42129457,-0.6154344,-0.04695615,-0.09033326,0.18842402,-0.13309939,-0.063313186,0.309307,0.34852004,0.38161355,0.0854847,-0.18686506,-0.40696064,-0.15085626,0.28245392,0.40418872,-0.08495045,-0.35463592,-0.017675316,-0.002267813,0.15012445,0.1567903,0.17312033,-0.24272543,-0.13883018,0.0753063,-0.1654741,0.19635779,0.3390968,-0.37911993,-0.24476632,0.27776486,0.5998983,-0.027108984,-0.29549497,0.055190545,0.025561221,-0.33242837,-0.1733963,0.050387423,-0.11936628,0.5112799,-0.23586433,0.20992397,0.7580711,-0.12459163,-0.11023608,-0.12328629,-0.03279481,-0.18040934,-0.052437693,-0.18947834,0.1301053,-0.41577962,0.034325723,-0.12663841,0.714905,0.13319097,-0.6003845,0.31852233,-0.4616595,0.120271854,-0.1097933,0.36886686,0.53219587,0.46743593,0.2748468,0.63213646,-0.4933234,-0.027132925,-0.0667507,-0.41997227,0.047112938,-0.18164246,-0.08624848,-0.5026444,0.08715916,-0.11341251,-0.08893493,-0.029243812,0.5429494,-0.48505032,-0.052688267,0.02230002,0.8199784,-0.39668116,-0.07647532,0.49416283,0.8677535,0.93929285,0.02279151,1.0003827,0.30496675,-0.28878304,0.105021164,-0.3746004,-0.3622874,0.34309933,0.5435274,-0.1201784,0.28251025,-0.06992591,0.10781512,0.47810286,-0.24524587,0.1456292,-0.20791015,0.08458314,0.1715356,-0.1582714,-0.42282003,-0.11868224,0.11168514,0.1837021,0.14881404,0.15926015,-0.09290444,0.36148402,0.15802853,1.7646927,-0.07580525,0.019594569,0.17718494,0.305298,0.1909102,-0.0738221,0.054981653,0.32427305,0.25737473,0.21007456,-0.47263482,0.12180759,-0.23873602,-0.5945671,-0.2525528,-0.2935137,-0.14583625,0.014796128,-0.46298173,-0.16333482,-0.055483826,-0.32559735,0.3964885,-2.5260127,-0.12984307,-0.26330444,0.21220565,-0.24801858,-0.35551733,0.06668561,-0.43699968,0.36008817,0.36940184,0.37392735,-0.60913223,0.40797952,0.4404813,-0.4137224,-0.10140216,-0.3993612,-0.16075659,-0.18763787,0.41947812,0.16081181,-0.16418462,0.0039889463,0.29962674,0.4254032,-0.260946,0.12981577,0.2881787,0.3113656,0.021663602,0.56522685,0.12923704,0.51391363,0.021360086,-0.18768108,0.47300327,-0.17454082,0.13349593,0.056099046,0.10555942,0.3599375,-0.2657162,-0.8706271,-0.705112,-0.18638252,1.1759546,-0.15236293,-0.46789172,0.220151,-0.1681385,-0.21504425,-0.06569995,0.2751885,-0.07037407,0.09951281,-0.8390217,0.16034153,0.007171589,0.10584555,0.099234596,-0.26945934,-0.5047391,0.82150537,-0.075950325,0.6079944,0.3337602,0.20632935,-0.23205787,-0.4249171,-0.017259967,0.8244719,0.4658584,0.062389873,-0.21906886,-0.27180743,-0.2663968,-0.0897394,0.050040275,0.46373165,0.61228967,0.029360984,0.12345387,0.2368,-0.10390902,0.021090087,-0.20456976,-0.29750612,0.124052666,0.016078662,0.5170376,0.44925752,-0.12488629,0.4551257,-0.025506284,0.4943455,-0.13138978,-0.50508356,0.33894417,1.1812781,-0.21072032,-0.4089683,0.4766724,0.397312,-0.20944369,0.28231063,-0.66472715,-0.26343045,0.42467892,-0.25982925,-0.42573097,0.22332299,-0.38687956,0.15679033,-0.7734259,0.33634293,-0.34172446,-0.51293206,-0.56249356,-0.17173363,-3.44746,0.23701134,-0.26457423,-0.22464363,0.021730136,-0.007379383,0.26767516,-0.71850204,-0.47753912,0.09317313,0.05273327,0.5397326,0.051002223,0.0895095,-0.23556687,-0.121760435,-0.0844634,0.27203268,-0.03554221,0.25054932,-0.10870367,-0.52938473,-0.027071834,-0.08836457,-0.5016131,0.02582258,-0.53027797,-0.5769221,-0.16580994,-0.36383462,-0.2696199,0.60754216,-0.26798147,0.07578087,-0.32947215,-0.037203427,-0.097029015,0.18926597,0.11426391,0.14298354,0.068290375,-0.038628306,0.10357966,-0.283416,0.26898885,0.016052973,0.2863323,0.20782791,-0.118826024,0.16167408,0.4621022,0.5037906,-0.06431267,0.7358309,0.51372075,-0.14552808,0.1954383,-0.21646515,-0.2985792,-0.6102758,-0.40962586,0.00022401047,-0.36946157,-0.46939325,-0.19653346,-0.31250596,-0.6801512,0.5022599,0.032852966,0.14715016,0.005460974,0.23295355,0.50958425,-0.19198151,-0.07758334,-0.04423836,-0.25763348,-0.48856613,-0.2893555,-0.64236045,-0.5702917,0.0790158,1.0189475,-0.14036258,-0.049199082,0.075195424,-0.14955428,-0.024712162,0.14895649,0.059012875,0.24386126,0.44541314,-0.21513684,-0.6726345,0.46370354,-0.121507674,-0.063975,-0.46431747,0.12920006,0.5072233,-0.41100958,0.5162988,0.35122132,0.008454975,-0.11800892,-0.46799803,-0.10957379,-0.017944444,-0.3817142,0.49466205,0.23957977,-0.5378872,0.3311776,0.23111857,-0.24512707,-0.6371197,0.49219316,-0.11505799,-0.42181402,-0.017031193,0.35405052,0.045448247,-0.049969327,-0.18532303,0.17045115,-0.32823876,0.29120505,0.27277502,-0.07141068,0.14097609,-0.22891814,0.04287674,-0.8350366,-0.045778226,-0.40711498,-0.271013,0.1316341,0.08951957,0.053113393,0.2695498,-0.10216082,0.3870993,-0.18352082,0.07129151,-0.07110296,-0.2927254,0.27184883,0.37228122,0.312707,-0.33829555,0.48372582,-0.013888808,-0.09045008,-0.10915192,0.1145547,0.5404706,0.076651745,0.44805485,-0.06267082,-0.22337958,0.48233065,0.77042896,0.2842874,0.58522826,0.066316985,-0.25883806,0.13012888,0.08742535,0.19284943,-0.014196122,-0.459024,0.026898839,-0.2097205,0.20991907,0.52398765,0.11019574,0.3722468,-0.027113609,-0.3877519,0.15708724,0.17977011,0.0049755014,-1.1591766,0.2921743,0.36587092,0.8879373,0.40881392,0.09926065,0.0214138,0.6562905,-0.2928707,-0.009844524,0.34152964,-0.041862283,-0.5483127,0.5214478,-0.89956284,0.27887616,-0.046878807,-0.09500257,-0.09252893,-0.03649935,0.27042997,0.79065806,-0.15885393,-0.011491646,-0.04903948,-0.28699645,0.13664232,-0.326384,0.11236087,-0.39230704,-0.3511886,0.52167827,0.58299726,0.3363065,-0.047161564,0.07239907,0.101359956,-0.101556875,0.21564783,0.13152094,0.21814585,-0.1343824,-0.6237518,-0.23771505,0.37422007,0.11108609,0.16140768,0.060065564,-0.24425854,0.1973027,-0.11425411,-0.025376363,0.031901646,-0.46934447,-0.02969886,-0.13722563,-0.42338046,0.64519244,-0.07137137,0.14520667,0.15288638,0.074813016,-0.1875616,0.29018995,0.14983933,0.5762281,0.19477318,0.06094349,-0.262321,0.026286466,0.006219522,-0.13533337,-0.061308175,-0.12625688,0.13913643,-0.63483685,0.3384107,-0.033202928,-0.4125885,0.21239215,-0.2530692,-0.0981423,0.4406575,-0.21857893,-0.18933597,-0.0031482542,-0.008043864,-0.22937669,-0.20510662,-0.039108813,0.23213173,0.018657213,0.013922713,-0.15475374,-0.07494262,-0.15552686,0.36990333,1.1217945e-05,0.39458016,0.43816373,-0.0916542,-0.37872672,-0.14723381,0.2024771,0.43529344,-0.09525291,0.004323567,-0.18573578,-0.55676574,-0.36909455,0.10390353,-0.037064582,0.28520456,0.12644133,-0.3316615,0.7894313,-0.14619137,1.2284646,0.03944071,-0.34798437,0.06785232,0.425645,0.05155242,0.07296468,-0.234349,0.7721967,0.5657213,-0.031716827,-0.17342778,-0.28693324,0.030732043,0.12423692,-0.16460106,-0.05662158,-0.011470507,-0.72615755,-0.39100412,0.22422972,0.15714781,0.15825379,0.032905765,0.011666715,0.26770946,-0.059696633,0.2702315,-0.3585053,-0.22129264,0.31930155,0.19854507,-0.042404268,0.11914291,-0.48467126,0.41782397,-0.370463,0.12914939,-0.31030056,0.16487165,-0.19945422,-0.16945702,0.2481014,-0.093736045,0.32296053,-0.29172152,-0.24950634,-0.14009489,0.5887504,0.06865235,0.082245216,0.60276186,-0.27893698,0.11236871,0.09656142,0.43416783,0.96752864,-0.41514847,0.009547808,0.41537398,-0.44310984,-0.5516604,0.30815795,-0.2537546,0.04756307,0.1707411,-0.37861496,-0.3621975,0.34428573,0.19990487,-0.028851839,0.08324205,-0.5010321,-0.1504153,0.38365677,-0.435833,-0.12751472,-0.15763548,0.25423583,0.4172353,-0.3493586,-0.29043055,0.023161607,0.23234315,-0.31050918,-0.43740067,-0.084642455,-0.20526218,0.43716145,0.11682649,-0.3821781,-0.045105353,0.097303875,-0.3458421,0.15598549,0.32077232,-0.38071486,0.055439204,-0.37812346,-0.0031121373,0.79351413,-0.22247025,-0.106473625,-0.5455829,-0.28292784,-0.88080376,-0.4341625,0.40129054,0.05652838,-0.11343006,-0.5861832,-0.069488555,-0.15567474,-0.036039114,-0.011893917,-0.30288523,0.46699652,0.24441446,0.46617442,-0.08620751,-0.76455945,0.08770602,-0.003756453,-0.119695015,-0.6641597,0.5788864,-0.25878513,0.617492,0.01990028,0.14607541,0.31122628,-0.5039744,0.030342389,-0.21845776,-0.27511483,-0.69568175,-0.11261614,51 +2,0.29438928,-0.13192235,-0.34572384,-0.13058536,-0.2870268,0.16073653,-0.11946653,0.20312464,0.12354601,-0.3665718,-0.153274,-0.0825751,0.05930397,0.40316525,-0.10146939,-0.6818228,-0.094573215,0.12654473,-0.68720394,0.36036608,-0.6165807,0.3953448,0.0804916,0.15629417,0.07061991,0.5373673,0.3353832,-0.2659717,-0.27141643,0.061351776,-0.22273675,0.15504663,-0.32623982,0.09818575,-0.10212744,-0.19812927,0.12588799,-0.37713864,-0.21206045,-0.5624863,0.15902176,-0.80193657,0.31873816,-0.11382101,-0.004024986,0.02450556,0.12893829,0.23795195,-0.38721395,0.16249695,0.26541188,-0.17342603,-0.038873084,-0.35444215,-0.14572807,-0.34727025,-0.31688106,-0.0019492998,-0.5135283,-0.47802684,-0.098281145,0.191491,-0.24753848,0.023839371,-0.05997948,0.23345612,-0.4457247,-0.015869308,0.27897903,-0.21476926,-0.012665798,-0.46907946,0.086205274,-0.031441327,0.5087245,-0.060320225,-0.051617216,0.4635252,0.33949247,0.32178378,0.27572417,-0.1573254,-0.2165319,-0.29499975,0.2304046,0.4074298,-0.16350645,-0.311471,-0.14706618,0.12392271,0.09929738,0.1947277,-0.037636954,-0.2969022,-0.10295895,-0.1075978,-0.17021015,0.26151684,0.4411795,-0.26664186,-0.22751962,0.3749862,0.60249394,0.09355628,-0.17967893,-0.16716778,-0.031743128,-0.392475,-0.14422593,0.21963748,0.07283538,0.36344004,-0.06896051,0.15697682,0.91421497,-0.19409204,0.17261885,-0.26291847,-0.08395982,-0.10254728,-0.1667978,-0.10836956,-0.02830384,-0.41168743,-0.028165141,-0.1700997,0.779672,0.2744276,-0.6545471,0.42360306,-0.40170333,0.12143213,-0.064854056,0.5741782,0.40189525,0.3481861,0.20222707,0.7258554,-0.4478408,0.3075149,-0.15992706,-0.43992862,-0.085242815,-0.12908237,0.037880685,-0.40088353,0.17621644,-0.14607626,0.04817114,0.042876102,0.1942011,-0.4571923,0.10449707,0.0663106,0.84914654,-0.49297905,0.023204109,0.52073884,1.0299524,0.8256161,-0.00303138,1.2132286,0.36674365,-0.2797578,0.11185736,-0.45759502,-0.5712748,0.14853431,0.31408167,0.15156773,0.19615982,-0.0053439606,0.046506103,0.25264707,-0.3809784,0.102496244,-0.12807858,0.23957185,0.10968208,0.16796805,-0.42133224,-0.15591161,-0.033905435,-0.061712068,0.19946876,0.16544348,-0.24179304,0.34939858,-0.042678863,1.6881156,-0.0814744,0.1622047,0.07264803,0.5263898,0.107183516,-0.089724384,-0.05129892,0.42775014,0.33248156,-0.19018456,-0.67948854,0.14313976,-0.32194352,-0.4755432,-0.091034666,-0.3806989,-0.109860644,0.1655914,-0.30494866,-0.1827498,0.008007728,-0.3659761,0.44377455,-2.7196448,-0.16326037,-0.088038735,0.31324783,-0.35619876,-0.21918172,-0.21204697,-0.4479452,0.21515457,0.24042337,0.36398667,-0.5699603,0.36043197,0.35452113,-0.352148,-0.30301672,-0.6212307,0.060341746,-0.056621194,0.4454427,-0.12241551,-0.029205013,-0.21382928,-0.0050190687,0.50789744,-0.066953406,0.092273995,0.48266372,0.29785883,0.4049705,0.43718314,0.04677342,0.56321985,-0.20306946,-0.14554396,0.34662515,-0.34748006,0.31562167,-0.16420437,0.104871556,0.33953437,-0.44200814,-0.6543084,-0.60229987,-0.42049336,1.0967374,-0.31370476,-0.27615827,0.19186032,-0.0041966983,-0.08478268,-0.030801913,0.44735864,-0.12725334,0.022514356,-0.5943424,0.18137819,0.00026043417,0.23110163,0.084240824,0.016776022,-0.25999293,0.58607143,-0.09179619,0.5234377,0.2695759,0.22729743,-0.01623444,-0.25194594,0.07814005,0.878357,0.19085579,-0.0041206935,-0.11657635,-0.32557583,-0.11980783,-0.3590787,0.029965302,0.32901573,0.77961224,0.09566375,0.0042903386,0.1639256,-0.11065712,0.015065705,-0.11240271,-0.2075793,0.03674258,0.017285144,0.38143355,0.4714691,-0.089403756,0.40406564,-0.23432069,0.3307984,-0.13183829,-0.3682333,0.5542829,0.4500728,-0.087449744,0.011797351,0.28009897,0.45303452,-0.3939922,0.38662377,-0.5265491,-0.17234407,0.706962,-0.35724658,-0.28948736,0.13436289,-0.22687696,0.12739575,-0.73500293,0.26490575,-0.1789397,-0.31789508,-0.41344324,-0.1201748,-2.8330173,0.06900329,-0.12868018,-0.225145,-0.097428754,0.0624352,0.19990605,-0.63962364,-0.39289582,0.14941399,0.11265262,0.4717681,0.07857951,0.14192663,-0.31258428,-0.042231414,-0.08366578,0.14523266,-0.016146258,0.33567098,-0.09740781,-0.3400661,0.022256501,-0.2230812,-0.41795138,0.23054047,-0.43519557,-0.30588126,-0.10676465,-0.45639372,-0.21534412,0.60806495,-0.50783974,-0.011275176,-0.16823785,0.06676264,-0.2786834,0.16913882,0.31482664,0.07477697,0.20909941,-0.022726193,0.06472812,-0.4128939,0.5220769,0.049381875,0.37834728,0.2564787,0.049270377,0.0025484036,0.3534914,0.5587705,-0.13051236,0.9554045,0.25551033,-0.17046915,0.2751572,-0.39999893,-0.14002846,-0.54454947,-0.43776175,-0.0047996463,-0.2449255,-0.534882,-0.06155475,-0.37109527,-0.7281175,0.41727772,0.008446423,0.24593942,0.0088839745,0.22222878,0.39707336,-0.18334894,0.0509705,-0.040026143,-0.06115482,-0.567979,-0.41776413,-0.61485624,-0.50272065,0.17829779,0.89336205,-0.3305245,-0.13889277,-0.25506347,-0.3535305,-0.07300193,-0.07157804,0.06757665,0.31191325,0.27323562,-0.13015105,-0.6285791,0.46951783,-0.06437799,-0.15302831,-0.4491505,0.0074604116,0.5526474,-0.6921154,0.47142416,0.3310368,0.140518,0.15608613,-0.40172508,-0.26414904,-0.036717385,-0.17873368,0.29680884,0.048206598,-0.6119896,0.4490851,0.25417736,-0.3655592,-0.7476489,0.17941748,0.060425416,-0.2743026,0.07647066,0.31472674,0.09505536,-0.18571985,-0.19059142,0.12020972,-0.38163337,0.27990016,0.3797132,0.008666025,0.24899194,-0.21644762,-0.3811166,-0.62131053,0.018003747,-0.39423734,-0.11973371,0.24982062,0.03488443,0.11621469,0.110138744,0.045842744,0.37530288,-0.295514,0.026630871,0.055447906,-0.13307743,0.14745295,0.23927599,0.27499536,-0.32066855,0.53463125,0.0007238002,-0.1273333,0.024696715,0.03261164,0.445549,0.13454024,0.15983991,-0.14303818,-0.2977981,0.4299879,0.7448479,0.18715797,0.26922452,-0.020545308,-0.32762572,0.4982301,0.056340076,0.06274554,0.19700325,-0.34502384,-0.062103488,0.10506489,0.1770562,0.33299547,0.3969068,0.49229965,-0.017569328,-0.20257756,0.13715613,0.11150163,-0.05297208,-0.82946914,0.32385132,0.10350682,0.68407583,0.35357922,0.12164065,-0.1453833,0.59574664,-0.33193877,0.16181938,0.3709967,-0.15891609,-0.51414376,0.60030866,-0.55102897,0.39507046,-0.112686805,-0.10838324,0.12950459,0.065049395,0.24072088,0.68727785,-0.07439315,-0.019489177,0.010440637,-0.19216368,-0.091536075,-0.2713222,-0.034193095,-0.40017515,-0.3261041,0.5585597,0.21875836,0.27881208,-0.11150211,-0.056431476,0.011149233,-0.08328908,0.21232283,0.0039375494,0.012348358,0.14417927,-0.43197975,-0.4245623,0.47027078,-0.08008991,0.13966675,-0.12722,-0.26163793,0.16897519,-0.27760112,-0.052967694,0.0024276883,-0.51414376,0.10137555,-0.20504497,-0.4544515,0.24401799,-0.08771617,0.2437865,0.17845362,-0.008617024,-0.19134887,0.47615364,0.25085112,0.8749938,-0.017266238,-0.24719918,-0.32652506,0.009514048,0.33919567,-0.18372625,0.21305934,-0.31576896,-0.016959751,-0.59613675,0.5976996,-0.18850678,-0.14508143,0.21621412,-0.3564693,-0.08827233,0.57529765,-0.083300345,-0.12852012,0.064052515,-0.06498248,-0.4530571,0.10149787,-0.33655947,0.12708595,0.33939078,-0.01696558,-0.15076236,-0.29980436,-0.2268335,0.46120307,0.124891296,0.43187442,0.120773904,-0.034980915,-0.13023652,-0.022496255,0.0815756,0.3001165,0.15389152,0.027734363,-0.30064845,-0.36081922,-0.30178204,0.23156825,-0.1532438,0.101503275,0.17239608,-0.39374897,0.6570044,-0.059274428,1.118535,0.20264755,-0.32464862,0.07888122,0.48996517,-0.011813474,0.2024307,-0.43250144,0.79878974,0.56524515,-0.0014985309,-0.08568484,-0.37928092,-0.20319949,0.3219462,-0.3340934,-0.026606567,-0.03475168,-0.5506127,-0.47847018,0.35953915,0.023590207,0.090024054,0.040628433,-0.090277225,-0.09075205,0.1807037,0.4388348,-0.58865947,-0.17781058,0.28128132,0.10101413,0.09516031,0.21227011,-0.42124134,0.59381694,-0.5550809,0.1664107,-0.29349172,0.09477687,-0.20328118,-0.2662032,0.15879834,0.07882528,0.3488365,-0.3789285,-0.49795094,-0.08527499,0.44595048,-0.09718412,0.27124718,0.53650236,-0.2759946,0.020865174,0.10600347,0.5538675,1.1130284,-0.28720334,0.121406615,0.43068096,-0.32953334,-0.51917815,0.3229027,-0.32856986,-0.14795166,-0.11715059,-0.31668258,-0.33411577,0.36747497,0.31134915,0.01139401,0.040373687,-0.45976162,-0.099240325,0.40857947,-0.3058383,-0.2977424,-0.14324023,0.33877918,0.64578825,-0.38148612,-0.30338064,0.0865311,0.29964373,-0.34899196,-0.40314108,-0.19260824,-0.1823464,0.35458907,0.24815801,-0.11984498,-0.06951576,0.13542488,-0.2623763,0.08772304,0.21515845,-0.4322219,0.07786342,-0.102226384,0.049242944,0.7284679,-0.023632785,-0.16294813,-0.7180526,-0.29780635,-0.9095912,-0.5959779,0.36722082,0.1095006,-0.013794597,-0.2803202,-0.01732599,-0.08744334,-0.0895243,0.0945441,-0.60309726,0.38873872,0.19139756,0.42605272,-0.32172605,-0.8216897,-0.05782602,0.1151787,-0.19816543,-0.5595347,0.561166,-0.12439067,0.8844803,0.0062839617,-0.2212918,0.16553392,-0.3198486,0.17310426,-0.4517521,-0.21418566,-0.8222533,0.12881206,105 +3,0.58813125,0.16504858,-0.635396,-0.14746986,-0.29855353,0.27378997,-0.2842547,-0.075352274,0.20709288,-0.63181114,-0.034740064,0.050308775,-0.24977434,-0.013324849,-0.24524117,-0.4388527,-0.031360935,0.122434616,-0.5735782,0.56068707,-0.32187793,0.512047,-0.04283005,0.15020104,-0.0067106434,0.19831102,0.073150724,-0.11751665,-0.4313171,-0.22241975,-0.003321234,0.20874114,-0.5176365,0.30582595,-0.17132041,-0.25669283,-0.092452765,-0.4122793,-0.24580635,-0.60969317,0.2071069,-0.53522587,0.61185557,0.0043243207,-0.29509813,0.16439374,0.2351629,0.11574087,0.13811386,-0.035834704,0.2799911,-0.16696577,-0.15990399,-0.14955738,-0.4925131,-0.3888784,-0.50636697,0.05258099,-0.5201635,0.043689094,-0.17871071,0.34398624,-0.16013025,-0.13434155,-0.18320908,0.44652092,-0.16567393,0.12363869,0.13678797,0.014147934,0.13337721,-0.71434623,-0.18561378,0.007517103,0.2716379,-0.17003375,-0.034775477,0.23039736,0.22395454,0.54972315,-0.039003316,-0.19173229,-0.5344315,0.052268352,0.23058449,0.39582807,-0.35290763,0.003159502,-0.07362174,-0.07620481,0.4734019,0.18861552,0.16050877,-0.39839146,-0.028672531,-0.14035477,-0.0471628,0.33341295,0.48263907,-0.23774096,0.007839837,0.53007555,0.48973534,0.13893515,-0.14415042,-0.009677791,-0.20419675,-0.32189155,-0.1279883,0.22050405,-0.055564977,0.34067664,0.034741625,0.27844176,0.31663346,0.121887065,0.007839171,0.20633164,0.08580038,0.11425505,0.0010267005,-0.061569776,0.08632499,-0.44591257,-0.116969995,-0.19590235,0.51221955,-0.051785145,-0.99811554,0.2969103,-0.4225338,0.017908748,0.14596187,0.48635635,0.7249353,0.63655996,0.011382854,0.81268543,-0.5600379,0.026232032,0.07834455,-0.28161216,0.10496254,0.0052757403,0.08378201,-0.64608216,-0.10772937,-0.051571615,-0.039673116,0.1014766,0.40826377,-0.59498525,-0.1667785,0.0036854954,0.6396814,-0.22401765,-0.07194094,0.7137343,1.1017185,0.9464049,0.159204,1.1052306,0.1754006,-0.07126503,-0.20262133,-0.52948666,-0.60858023,0.2660997,0.26919764,-0.5846019,0.41187644,0.0621185,0.06858238,0.31617063,-0.24787101,-0.25272766,-0.25106496,0.3353117,-0.12003851,-0.18109146,-0.39297417,-0.16141821,0.20985906,-0.15876482,0.23846976,0.24148235,-0.3231376,0.20772268,0.32911706,1.493064,-0.29119262,0.12251732,0.08917447,-0.027014276,0.16896486,-0.32123494,0.025660805,0.21057068,0.285434,-0.16705528,-0.25052217,-0.069658026,-0.18343349,-0.442733,-0.23790842,-0.06501115,-0.35527396,0.027817508,-0.21980003,-0.31011292,-0.12096137,-0.54193985,0.53039145,-2.6536884,0.009199902,-0.22721937,0.4138774,-0.27510914,-0.6006655,-0.16727433,-0.36608377,0.4869363,0.19845839,0.24296573,-0.38033327,0.3543934,0.4249232,-0.38462177,-0.1876454,-0.5634761,0.08023936,0.105588995,0.19219878,-0.07807207,-0.2937299,0.0682307,0.20626417,0.29610083,-0.16799742,0.11350939,0.44188493,0.46556455,-0.09144363,0.25988343,0.03814285,0.61111444,-0.21978985,-0.2135536,0.48043594,-0.5810997,0.2608707,0.05673546,0.15743819,0.44468543,-0.42265773,-0.48062858,-0.53127736,-0.17706329,1.1617597,-0.024773324,-0.46301556,0.07214318,-0.07448285,-0.5756012,0.036878012,0.4163637,-0.0835188,-0.014292564,-0.83939826,-0.08742418,-0.12584691,0.28285497,-0.16160484,0.1623573,-0.52058774,0.63586533,-0.14654274,0.48414534,0.44255662,0.31697667,-0.36978695,-0.28698155,-0.026410123,1.039865,0.48964667,0.16029543,-0.14821184,-0.145697,-0.24045874,-0.27038407,0.16646907,0.5266666,0.46448618,-0.044477668,-0.038819537,0.27140686,0.033283483,0.09638233,-0.20661134,-0.3840517,-0.17792499,-0.1028896,0.4555282,0.4662543,0.010521722,0.53581125,-0.094325975,0.050017174,-0.34137413,-0.4707868,0.49987108,0.7070116,-0.29750982,-0.39956972,0.5078931,0.3585484,-0.12763946,0.4406697,-0.5193117,-0.44345778,0.30506054,-0.10355951,-0.41285172,0.12237913,-0.3907117,0.22746551,-0.6009793,0.4392657,-0.39761052,-0.44992885,-0.57918775,-0.07161934,-1.3051664,0.19681847,-0.10102345,-0.07696574,0.0004374385,-0.07474121,0.2204777,-0.53734136,-0.6738763,0.014841147,0.020032808,0.42522988,-0.019242097,0.059401345,-0.07591381,-0.41206032,-0.27984762,0.276511,0.12795897,0.39308637,0.04586532,-0.23127958,-0.025677646,-0.15476418,-0.2543027,-0.1275913,-0.48861527,-0.5155913,-0.18553215,-0.37791732,-0.18328875,0.6732199,-0.70378464,-0.0024619172,-0.45418948,-0.06854579,0.14973536,0.2551952,0.024841793,0.2739778,0.098030545,-0.30676913,-0.10242729,-0.31768596,0.36228797,0.11618263,0.12144079,0.7458967,-0.2393163,0.31004107,0.36709282,0.8844003,-0.08421111,0.6907392,0.2879021,-0.11987926,0.24266484,-0.32091874,-0.23525293,-0.63090235,-0.2757342,0.09713278,-0.39982784,-0.3898482,-0.21691087,-0.43329033,-0.75051546,0.39849332,-0.022927957,0.20350097,-0.037470505,0.34028956,0.39198405,-0.13324903,-0.022917125,-0.025564022,-0.20795695,-0.26108146,-0.428575,-0.5536463,-0.43960223,0.1296173,1.2056874,-0.11285263,0.12529111,0.4064183,-0.063802786,0.09664692,-0.088794105,0.09789106,-0.086620554,0.26692495,0.10249069,-0.5277391,0.17220809,-0.053162433,-0.0033477405,-0.5173307,0.3652872,0.6246756,-0.385591,0.44279724,0.38117048,0.20934181,-0.08579695,-0.70071703,0.0061757704,0.14981192,-0.33673757,0.46820378,0.33283657,-0.5452739,0.41345042,0.4276992,-0.22660485,-0.7350229,0.33949184,0.13305044,-0.10389621,0.05515832,0.41979748,-0.030429833,-0.05749113,0.06440395,0.221021,-0.25751823,0.48320746,0.23545139,-0.07740327,0.1782275,-0.3419778,-0.491974,-0.68092626,0.18574049,-0.39453828,-0.47948804,0.16195484,0.0112872,0.121818066,0.12970613,0.2152537,0.47636077,-0.35604987,0.113935634,-0.083044074,-0.149393,0.29604018,0.39436498,0.5056936,-0.27415407,0.37099934,-0.03406578,-0.053930648,-0.21835677,0.09281495,0.5229857,0.1702457,0.24470119,0.10205156,-0.15596415,0.15846342,0.59940004,0.12947048,0.2039291,-0.031494338,-0.53151095,-0.037269346,-0.0067674397,0.16516072,-0.10489169,-0.43178532,-0.1643089,-0.05249039,0.12723179,0.36864877,-0.0044321944,0.27929312,-0.30485752,-0.20523258,0.08554704,0.14161971,-0.1325211,-1.2644608,0.3161595,0.011572979,0.77554023,0.41074193,0.22859305,0.013590851,0.47613615,-0.33153605,0.14929143,0.2754163,-0.25660124,-0.33391836,0.26026496,-0.58590454,0.24733734,-0.10426897,0.04369489,0.028623477,-0.08981201,0.21511364,0.94667727,-0.120639816,0.054621827,-0.17164329,-0.26619995,0.01880012,-0.09214099,0.23525473,-0.3810866,-0.39578927,0.72422737,0.2670755,0.590869,-0.20630552,0.016518028,0.10412805,-0.34204388,0.0799776,0.09735198,0.12699525,-0.024396785,-0.39333275,-0.09520024,0.407027,-0.01410497,-0.07465065,0.1765122,-0.219309,0.09768525,-0.1189601,0.119292416,-0.052787274,-0.62753385,-0.04214235,-0.34393385,-0.21349253,0.08773335,-0.105616204,0.10969307,0.16127951,0.113744244,-0.24670467,0.48572883,0.37140933,0.72595894,-0.010041156,-0.050994664,-0.23789972,0.33614537,0.1842011,-0.102000475,0.056953065,-0.12817526,0.29863617,-0.5750525,0.38268524,0.014096036,-0.359635,0.13733378,-0.09112417,0.10360537,0.4668127,-0.36112025,-0.26572582,0.124131985,0.11463219,-0.20548554,-0.033400368,-0.105938375,0.12017765,0.15812375,-0.095539466,-0.15920798,-0.116294354,-0.34280744,0.05434814,0.15091377,0.3789393,0.6251524,0.1328095,-0.69223034,0.04529503,0.17852159,0.3598983,0.068800956,-0.06120216,-0.37385035,-0.4094069,-0.3587338,0.69267553,-0.17913759,0.075488746,-0.033083837,-0.3069183,0.70287216,0.011888651,1.1493543,0.08272267,-0.15081678,-0.18608668,0.5426047,0.03735085,-0.011707008,-0.41236997,0.92706263,0.6393506,-0.048364725,0.072855875,-0.33022916,-0.11710048,0.15696844,-0.33777335,-0.06806164,0.03981856,-0.67139196,-0.34711435,0.07931553,0.09839195,-0.11688873,-0.088871405,-0.077664055,0.20956151,0.18327264,0.2620168,-0.44841307,-0.096604936,0.22652976,0.26974308,0.02826104,0.22939076,-0.5683561,0.24179256,-0.60143715,0.09457033,-0.14786142,0.09274408,0.03721038,-0.29354128,0.18731572,-0.03131911,0.2814424,-0.33538902,-0.40497422,-0.090263166,0.31911463,0.14869533,0.1285881,0.6762113,-0.15682404,0.2524926,0.12101269,0.46979833,1.0993965,-0.12370715,0.0900535,0.36755753,-0.26214758,-0.59004605,0.0800665,-0.35981077,0.09984164,-0.194173,-0.35737386,-0.15024586,0.31337315,0.16573192,0.15007254,-0.034322694,-0.61719525,-0.029838366,0.38833186,-0.27209815,-0.103664406,-0.14436178,-0.048429593,0.5691153,-0.17612074,-0.3772081,-0.0385222,0.3731738,-0.22739884,-0.6456298,0.09772967,-0.34062058,0.39395815,0.25200662,-0.29034922,-0.14285375,-0.022017553,-0.36307007,0.088003114,0.22201526,-0.32304567,-0.12280919,-0.26795495,0.064759314,0.53261155,-0.040499043,0.1156735,-0.2960499,-0.47051492,-0.8198776,-0.19244377,-0.3316209,0.25498536,-0.12719,-0.6360702,-0.05434851,-0.35476336,-0.014646699,0.01171503,-0.40568268,0.3907676,0.33094585,0.28329232,-0.37168288,-0.8172248,0.07522654,0.25698924,-0.042043205,-0.4663712,0.54040337,0.09656212,0.71394503,0.119168475,-0.04941563,0.16589896,-0.7780463,0.3308709,-0.22465739,-0.03060774,-0.78696644,0.13150723,121 +4,0.6750282,-0.11934945,-0.6944818,-0.097313285,-0.467983,0.050199144,-0.23556766,0.382272,0.18191886,-0.47745654,-0.18621792,-0.087048024,0.027905231,0.24888201,-0.17617007,-0.8381139,0.18468593,0.3580955,-0.5950115,0.72379404,-0.3480723,0.35323763,0.02556471,0.29568288,0.24095544,0.31115043,0.14264615,-0.041777764,0.033897303,-0.10103798,-0.16708685,0.3822415,-0.47936282,0.28861982,-0.11113189,-0.5111182,-0.14073391,-0.22161447,-0.39390016,-0.7937349,0.28035945,-0.66635454,0.47070077,-0.089081906,-0.36030677,0.048451893,0.199051,0.4022445,-0.18727827,-0.011569897,0.029537467,-0.11867554,-0.3039587,-0.30668506,-0.18505211,-0.4885051,-0.5515201,-0.027272148,-0.5224788,0.080654144,-0.31402326,0.35112762,-0.2143553,0.07124947,0.0017984053,0.43508878,-0.36286482,0.01515784,0.1523062,-0.11849483,0.17789964,-0.49740577,-0.22307089,-0.08956297,0.19843963,-0.06038375,-0.4527358,0.2048172,0.1857096,0.40122467,0.0681139,-0.21098213,-0.45309192,-0.012284247,-0.013055956,0.57129174,-0.20436254,-0.45028564,-0.20755075,0.05073445,0.21008265,0.18172912,-0.07799268,-0.29477948,-0.059909582,-0.10599504,-0.22240189,0.4129985,0.54510415,-0.39830124,-0.16481875,0.38419285,0.6013806,0.050806325,-0.29412264,0.13116929,-0.08084569,-0.57293767,-0.17134318,0.03592368,-0.025280373,0.46585375,-0.11425663,0.26404187,0.57784855,-0.007067456,-0.29405642,0.20194301,0.11349134,-0.032119174,-0.2803811,-0.23094189,0.3958379,-0.46423173,0.06966703,-0.19029057,0.7190057,0.02948653,-0.8114446,0.3337464,-0.47723052,0.07313539,0.0032208508,0.42942157,0.6931947,0.43049905,0.16943371,0.8507591,-0.21823657,0.14146407,-0.11805908,-0.22436547,-0.20139958,-0.017054772,-0.13978367,-0.53779525,0.19740887,-0.011539452,-0.10375229,0.18647973,0.6449185,-0.64736146,-0.21180622,0.07262042,0.7189843,-0.42958555,-0.18171328,0.824781,0.90391546,1.0473412,0.08293751,0.9804868,0.2723069,-0.13953649,0.040794294,-0.35206527,-0.47191417,0.33770323,0.24948213,0.37731072,0.36340117,0.01584181,0.0012432617,0.5052449,-0.22893798,-0.17110541,-0.1236539,0.2173802,0.12826507,0.022263717,-0.59291303,-0.2304773,-0.029470257,0.18432659,0.22712235,0.20010827,-0.35318202,0.4062709,0.13181272,1.5919993,-0.037903976,-0.023257371,0.16612239,0.3362583,0.3433516,-0.14449275,-0.1961791,0.18982866,0.3287183,0.109621555,-0.51556945,0.007232624,-0.25803947,-0.46734267,-0.109168895,-0.2777129,-0.12151857,-0.23661451,-0.48717332,-0.2651584,0.059142716,-0.35819423,0.55254894,-2.5083673,-0.20221014,-0.15639156,0.3669679,-0.11686235,-0.38163295,-0.2586541,-0.40776607,0.38915753,0.33917585,0.45241702,-0.506187,0.5468126,0.33570364,-0.65316546,-0.037378,-0.5457787,-0.035881374,-0.029762253,0.43540654,0.06596744,-0.043521143,-0.0101330355,0.11306695,0.58083206,-0.3383402,0.027886951,0.31315303,0.28036246,-0.012401164,0.45170653,0.08366289,0.5408572,-0.29007092,-0.28489685,0.39080596,-0.36731452,0.107601374,0.02759288,0.15473804,0.44061947,-0.54622793,-1.0794321,-0.6321456,0.055786245,1.025497,-0.32679176,-0.4389899,0.19256476,-0.28574023,-0.2862146,0.051752485,0.2465551,-0.12917773,-0.011918404,-0.7706701,-0.02022452,-0.0003435261,0.17096102,-0.05956672,-0.087577045,-0.3900027,0.7471025,-0.12109793,0.58818465,0.26436448,0.32212862,-0.27028364,-0.53951323,0.01231014,0.99213856,0.28030905,0.10910916,-0.3198378,-0.298467,-0.29059258,0.063050255,0.21907221,0.6296008,0.61710775,0.017672721,0.08778291,0.22881494,-0.017349532,0.0984221,-0.21039282,-0.23412393,-0.17940441,0.075874135,0.78240997,0.61035013,-0.03566429,0.5921065,-0.0877738,0.39430547,-0.19194154,-0.59377587,0.399802,1.0915003,-0.23948254,-0.6127206,0.6057831,0.47067934,-0.14489047,0.29358414,-0.7139965,-0.36888638,0.3415684,-0.24793348,-0.22239985,0.24411367,-0.33027312,0.22769646,-0.9208172,0.17120905,-0.16233978,-0.7931008,-0.5633253,-0.2607501,-3.3004174,0.31028944,-0.04847638,-0.085694216,0.082113676,-0.25279027,0.17634624,-0.49441928,-0.50585115,0.047009476,0.09737743,0.8102297,0.013982848,0.098352626,-0.15192443,-0.3725978,-0.14045443,0.3683552,0.21075913,0.34553948,-0.012424418,-0.48636526,-0.004389588,-0.145845,-0.5161672,0.0018268719,-0.6560445,-0.5221736,-0.16312899,-0.65404063,-0.21249214,0.59491014,-0.4542459,0.15023845,-0.24155448,-0.035348922,0.084159836,0.16774286,-0.020221753,0.15343356,0.22131316,-0.089977436,0.18183184,-0.23899771,0.16623425,0.0014002516,0.14404237,0.20171583,-0.121295914,0.37707973,0.6188543,0.65809464,-0.076499805,0.93461007,0.527017,-0.05887866,0.23124276,-0.13707948,-0.34728214,-0.59587663,-0.27255952,-0.106897935,-0.49173665,-0.2578689,-0.09365713,-0.42698267,-0.78997374,0.6809146,-0.07939439,-0.048148442,-0.054668278,0.4024911,0.640749,-0.28214306,-0.124643974,-0.057027634,-0.2651738,-0.31513265,-0.3683008,-0.57100576,-0.52658755,-0.15973747,1.3931383,-0.20233317,0.01256968,-0.047708433,-0.0997929,-0.012197614,0.29391262,0.11475701,0.29228503,0.3749512,-0.31891525,-0.5922023,0.30248302,-0.4541426,-0.24331604,-0.49803632,0.28793073,0.5137492,-0.5629302,0.39312094,0.36260948,0.29478708,-0.03865385,-0.5477764,-0.073091164,0.13714974,-0.22570784,0.5562518,0.32625288,-0.71164715,0.5248331,0.24855204,-0.11313082,-0.80299664,0.58612996,-0.09256793,-0.4372429,-0.066566505,0.42257896,0.107878745,-0.12887825,-0.3936619,0.11435343,-0.25392076,0.17495628,0.22756653,-0.053670377,0.19595906,-0.38016245,-0.04389246,-0.83962977,-0.101668835,-0.42316788,-0.23555288,0.16749354,-0.10903067,0.093376085,0.049776867,-0.15631326,0.43764973,-0.34443328,0.029530259,-0.41396764,-0.26200673,0.38101944,0.45977622,0.3530521,-0.32570577,0.5445634,0.040841345,-0.043188564,-0.27987462,0.041817717,0.5303119,-0.17164506,0.5883836,-0.033046275,-0.09747776,0.19089603,0.66300863,0.22466733,0.47418427,0.031527787,-0.23265906,0.040854797,0.08699507,0.25795814,-0.040201068,-0.3275479,0.02716662,-0.21389179,0.18436363,0.632888,0.15547659,0.3618845,-0.09386895,-0.32877898,0.0546436,0.07002299,0.025163066,-1.6002897,0.43982735,0.20161837,0.7457571,0.4329139,0.15440764,-0.05102333,0.5654666,-0.15353146,0.12549134,0.25183025,-0.0717144,-0.18254821,0.38417011,-0.86545026,0.57134956,-0.061177626,0.065481044,0.07723371,-0.07992661,0.5213752,0.9948869,-0.13024962,0.15088747,0.048456453,-0.23589878,0.14400849,-0.27048886,-0.090365455,-0.64814156,-0.34584796,0.84645426,0.483956,0.5520437,-0.14130051,-0.07519175,0.15282103,-0.069818325,0.072236046,0.10106616,0.14651302,-0.053213723,-0.55580705,-0.20014659,0.47474524,0.056427564,0.11884901,0.2318572,-0.1632693,0.342294,0.09672241,-0.034432847,-0.09958099,-0.5846327,-0.104648076,-0.37645423,-0.39546862,0.4722915,-0.1819628,0.19470218,0.18421897,0.048836306,-0.36652094,0.31119224,0.13945952,0.83175665,0.24703121,-0.12412388,-0.26774496,0.15951586,0.24108213,-0.23450086,-0.08370457,-0.36664122,0.2103738,-0.83761716,0.30046555,0.02194775,-0.5117556,0.29503563,0.0236851,0.038825866,0.42332,-0.060690515,-0.21614741,0.08237687,0.015027414,-0.24681063,-0.16463745,-0.20234069,0.1763155,-0.04399537,-0.17763393,0.027847247,-0.03579331,0.025146011,0.5586394,0.062084835,0.42277184,0.41255102,0.24071538,-0.33731845,0.06461871,0.28366798,0.5566306,-0.19983695,-0.20508897,-0.28452048,-0.4088819,-0.37757066,0.12228974,-0.06358632,0.32430622,0.21107955,-0.20607835,0.83732474,-0.19526719,1.2866333,-0.011044033,-0.40689763,0.15909351,0.41999665,-0.08199673,0.031717617,-0.24026711,0.88398695,0.5418916,-0.1354625,-0.21212755,-0.32687673,-0.0134777585,0.056333333,-0.26702002,-0.19733323,-0.1069061,-0.5110377,-0.43148458,0.087418444,0.22373219,0.27118653,-0.18168579,0.07025967,0.2640321,-0.060686804,0.1783458,-0.41166744,0.053969454,0.26636323,0.35137963,-0.1072529,0.15373215,-0.49460232,0.34706816,-0.4693715,0.07418087,-0.38572693,0.2697982,-0.12932321,-0.27163774,0.344222,0.017278206,0.2625589,-0.29339847,-0.17895466,-0.3401223,0.5775619,0.13896684,-0.04577747,0.55999637,-0.1998285,-0.060500298,0.12848578,0.39168802,1.0039428,-0.508392,-0.09102813,0.3135399,-0.25897816,-0.45601922,0.16323459,-0.34247088,0.140576,0.070194304,-0.3044241,-0.5734238,0.37584767,0.1663043,0.07478244,0.08594797,-0.66190535,-0.07530291,0.2926476,-0.2338489,-0.057687152,-0.15845849,0.24089622,0.45519873,-0.16751367,-0.28615287,0.05956354,0.21941929,-0.14383046,-0.6342078,0.09178665,-0.42383453,0.37146956,0.13760395,-0.30826646,-0.18300529,0.000673266,-0.45559603,0.019050097,0.39824653,-0.2572846,0.08576749,-0.4591571,-0.046684224,0.9718423,-0.21031617,0.3610023,-0.5663333,-0.43276277,-0.97752035,-0.22449976,0.32604688,0.25704923,-0.02037166,-0.78394157,-0.06573828,-0.18380709,-0.48928973,-0.032934163,-0.40067554,0.4525006,0.13291356,0.4587331,-0.041000403,-1.029252,0.22967912,0.07468086,-0.4255361,-0.3946455,0.43460384,-0.059196137,0.7940896,0.14224315,0.27482185,0.35100228,-0.53267264,0.08384085,-0.14041881,-0.031796187,-0.7649687,-0.064042695,177 +5,0.46949074,-0.12914278,-0.63483095,-0.14160185,-0.29058287,0.0640402,-0.25576073,0.4453448,0.20464294,-0.5487543,-0.16093123,-0.27017933,0.006469811,0.47542152,-0.19936979,-0.6925931,-0.023808716,0.1665434,-0.520467,0.5167991,-0.36054158,0.23739684,0.14626145,0.37576112,0.3820141,0.31194434,0.25693536,-0.26383677,-0.363522,-0.054523557,-0.058377974,0.10590084,-0.58832365,0.12409938,-0.2056919,-0.5135255,0.069668114,-0.4907861,-0.34827647,-0.6532317,0.3460947,-0.8182368,0.39561194,-0.08687709,-0.11777624,0.15881607,0.17364399,0.5359934,-0.21652804,0.027157156,0.07600373,-0.1744768,-0.058812372,-0.0066223284,-0.22234176,-0.36943343,-0.51864237,0.07805036,-0.4150901,-0.19368216,-0.17737257,0.09432144,-0.36604753,0.18854734,-0.08972602,0.41563618,-0.43498713,-0.13309297,0.27671027,-0.15789512,0.2769594,-0.50353587,-0.1809919,-0.17061752,0.22085527,-0.20205595,-0.112364516,0.3647831,0.29716447,0.5460248,0.0876398,-0.24528815,-0.34050632,-0.045283206,0.22167721,0.48874316,-0.18604076,-0.52138877,-0.25744042,0.0029908146,0.3541671,0.09390768,-0.028682355,-0.3550232,-0.015701083,0.13767298,-0.33539823,0.26425904,0.45467725,-0.21158803,-0.1597564,0.2225354,0.5065166,0.1835579,-0.17600818,-0.0045642396,0.03469494,-0.48539042,-0.18021773,0.16449897,-0.2184604,0.5068651,-0.035336155,0.16523297,0.6893665,-0.23633993,0.13362461,-0.09090657,-0.038909722,-0.18514258,-0.24680379,-0.29447803,0.24945371,-0.537409,0.17497116,-0.21422184,0.8456147,0.2730269,-0.7279517,0.30415246,-0.5741762,0.23539114,-0.053513426,0.44318908,0.6519725,0.3905384,0.29635826,0.61058605,-0.4239018,0.20939817,-0.2097678,-0.42125794,-0.01361869,-0.21854869,0.027071036,-0.36897296,0.07150325,-0.043857105,-0.08425746,0.071789235,0.29439372,-0.48477668,-0.041855525,-0.03860865,0.9522326,-0.2768295,-0.021892702,0.6919656,0.90693843,1.0134435,0.017164083,1.1546628,0.26821384,-0.34624645,0.24127229,-0.2009131,-0.6617368,0.29760665,0.39410433,-0.28465933,0.30990937,0.099617384,0.08352011,0.47056597,-0.39200225,0.18799187,-0.23150726,0.12946752,0.044000935,0.0028210317,-0.3948031,-0.20736492,-0.052077897,-0.037052047,-0.045129314,0.23000593,-0.15316392,0.44239148,0.07111575,1.8249059,-0.07526557,0.0777551,0.05331209,0.46988252,0.09082481,-0.0065645636,-0.0379632,0.103281595,0.22873875,0.024438953,-0.5458187,-0.011877501,-0.28151175,-0.5076397,-0.16140115,-0.24880168,-0.11708552,-0.11713853,-0.5069037,-0.119358346,-0.113953814,-0.22942433,0.392078,-2.412691,-0.255474,-0.18312632,0.17931743,-0.43455487,-0.37109038,-0.113382876,-0.47562256,0.43669268,0.30460048,0.5361692,-0.701612,0.4249824,0.35229155,-0.46159643,-0.120716654,-0.6646933,-0.13912264,0.00023832041,0.3554647,-0.05691451,-0.17242688,0.0338169,0.12895706,0.45578936,-0.24736612,0.05531763,0.16592379,0.31515792,0.21982355,0.6279748,-0.047012683,0.52210236,-0.38901556,-0.13046181,0.3667679,-0.3750206,0.15219285,0.010975992,0.18394473,0.34091192,-0.50765926,-0.91417426,-0.69725424,-0.3491571,1.1440412,-0.1992336,-0.2668012,0.23547758,-0.24824078,-0.11546404,-0.029654594,0.27858952,-0.090776,0.050613303,-0.8245063,0.07134096,-0.14926991,0.09953266,0.117743425,0.057513006,-0.26226154,0.5927039,-0.02960853,0.32574415,0.5139763,0.27533114,-0.17002527,-0.42839536,0.12998493,1.0199689,0.30717283,0.19737785,-0.19993083,-0.20654356,-0.39060682,-0.17467827,0.13880716,0.32150844,0.7832663,-0.014196894,0.076324776,0.21811251,-0.024894306,0.028731298,-0.10212505,-0.43641624,-0.13601764,0.06699699,0.56895274,0.5995509,-0.16424179,0.50358367,-0.10782452,0.32414937,-0.1450216,-0.44511324,0.5511597,0.81624717,-0.22571859,-0.2162092,0.39532408,0.551339,-0.24983527,0.46415946,-0.62407225,-0.41227704,0.553882,-0.15842783,-0.44693688,0.20410866,-0.39064535,0.13299008,-0.9774231,0.24016151,-0.3856854,-0.21184796,-0.513722,-0.15919618,-3.35905,0.09811414,-0.14067192,-0.251669,-0.09066466,0.012561777,0.19048916,-0.664463,-0.6413351,0.10840076,0.08207923,0.69285756,0.08160791,0.13882111,-0.2885778,-0.18846238,-0.23663038,0.03259648,0.20675601,0.17663825,0.06105923,-0.6059816,-0.17967457,-0.2947125,-0.4252163,0.13159777,-0.58366275,-0.52678144,-0.22262043,-0.53121996,-0.43146566,0.63149136,-0.3579321,0.057146877,-0.10603267,-0.03477877,-0.181132,0.30398315,0.13659385,0.067536004,0.11692036,-0.07172903,0.053281978,-0.33696488,0.12174525,0.18211804,0.29741076,0.37521636,-0.058643408,0.22556531,0.56358737,0.74290043,-0.06659194,0.8330638,0.51962596,-0.118706,0.39740804,-0.4225099,-0.30861068,-0.5370589,-0.29365432,-0.112895526,-0.2782575,-0.40904427,0.023612313,-0.37608775,-0.77563435,0.57579476,0.032749254,0.057349823,-0.06079746,0.08617344,0.4467355,-0.23623186,-0.11655269,-0.06592059,-0.08693746,-0.5675117,-0.3635853,-0.74157405,-0.6015197,0.105757326,1.1559349,-0.04569402,-0.07737018,0.06987908,-0.23644316,0.0828135,0.026771804,-0.013580606,0.11861998,0.4217287,-0.10806204,-0.7186894,0.46255848,-0.07647729,-0.14629498,-0.5636783,0.13997883,0.7613089,-0.64328337,0.405302,0.44481733,0.05220951,0.05476732,-0.3668214,-0.10068466,-0.09380351,-0.17652197,0.33037344,0.100487486,-0.57914025,0.45281175,0.42157176,-0.3021044,-0.79504335,0.4433139,0.12440544,-0.096118264,-0.01690615,0.33109567,0.21500412,-0.09296125,-0.1872732,0.0665094,-0.50651604,0.24612772,0.4164119,-0.08771613,0.34354708,-0.12251007,-0.23213933,-0.81782013,0.044918768,-0.38959724,-0.18702507,0.26430145,0.10934275,0.13682353,-0.059042305,0.029047359,0.2887432,-0.2556459,-0.020629862,-0.13557456,-0.23295113,0.37694004,0.4248793,0.4170118,-0.4342537,0.61062104,0.015990293,-0.050702356,-0.02678233,-0.020260205,0.4606326,0.16156429,0.2393355,0.12989955,-0.3214227,0.25514913,0.7370294,0.19746582,0.4779974,0.115031265,-0.2436278,0.23540261,0.19786581,-0.07158448,0.23671156,-0.43642965,-0.06470842,-0.025212422,0.11619983,0.47208938,0.20440505,0.41019797,-0.035824627,-0.2595867,0.010716478,0.108662955,-0.087349236,-1.323277,0.3920329,0.15933764,0.7167286,0.59448826,-0.024261085,0.15750268,0.5623674,-0.21506691,0.16234636,0.4250542,-0.1671407,-0.5360447,0.6336006,-0.6681463,0.51504946,0.030960217,0.10910587,0.071306616,0.042460352,0.51636237,0.73673767,-0.06609245,0.115227334,0.0017824523,-0.32197958,0.036465842,-0.30452538,-0.08160893,-0.46986175,-0.23248552,0.5810465,0.39369038,0.29664052,-0.102379546,-0.06638682,0.026404629,-0.09578133,0.24808797,-0.05996987,0.16284177,0.04614855,-0.5914815,-0.38462117,0.5152233,-0.030332537,0.29809344,0.035005935,-0.23009089,0.3177675,-0.07722749,-0.04631032,-0.066048495,-0.60072696,0.018947955,-0.4246685,-0.358989,0.39543977,-0.058568455,0.3416928,0.07533531,0.032742217,-0.3848002,0.49374187,0.066260055,0.7208202,-0.15496525,-0.3285087,-0.19620526,0.063717805,0.35162273,-0.20936537,-0.10459123,-0.25539425,0.0052394797,-0.5390092,0.43552113,-0.119845964,-0.18794467,0.14973338,-0.1677494,0.030199504,0.5478122,-0.19488811,-0.078149736,0.06169263,0.075287946,-0.2688393,-0.16159639,-0.15543468,0.21419632,0.23199567,0.07399984,-0.14092204,-0.14210165,0.03246111,0.45275712,-0.12292056,0.3741318,0.36518165,0.1725661,-0.40966097,-0.19591224,0.2111856,0.427563,0.11971639,-0.115181506,-0.3405032,-0.3004097,-0.30105236,0.11558424,-0.16272295,0.23788245,0.16477752,-0.43690935,0.902394,0.006302469,1.2986652,0.004194042,-0.38886338,0.074976414,0.34477633,-0.12730004,0.074916236,-0.40822577,0.8374111,0.5370167,-0.11608588,-0.19845657,-0.45305118,-0.120180525,0.17149617,-0.2526533,-0.16635294,-0.004002895,-0.51786804,-0.40081707,0.2692375,0.34030476,0.17761329,-0.21255729,0.060694862,0.10821121,0.06615011,0.4230087,-0.42390078,-0.26392746,0.35563043,0.3671928,0.0465531,0.122772865,-0.46998546,0.4284585,-0.5096828,0.03623735,-0.2434173,0.15055686,-0.090101555,-0.31021667,0.31351408,0.029061764,0.39052403,-0.44815984,-0.34773535,-0.25111875,0.572299,0.02038788,0.15649596,0.71955967,-0.22870874,-0.008025885,0.0155533375,0.54681325,0.987934,-0.31737423,0.039520472,0.4446993,-0.22560929,-0.5084335,0.29374588,-0.30930418,0.1326672,-0.07388073,-0.33111787,-0.66558737,0.3032438,0.23562863,-0.033692893,-0.0027691405,-0.5695876,-0.1321699,0.3172891,-0.3360598,-0.38136774,-0.3807543,0.057885334,0.56580096,-0.32367238,-0.28447488,0.21523486,0.2569542,-0.1271034,-0.36308044,-0.19287863,-0.26961595,0.39498076,0.31509298,-0.34069785,-0.111487836,0.12058279,-0.48097453,-0.019114709,0.17438161,-0.40335643,-0.012299303,-0.24484418,-0.07554827,0.9148694,0.007955845,0.23840058,-0.5796218,-0.3665612,-0.9092606,-0.4131441,0.59696263,0.14721912,0.024642,-0.5851154,-0.034616105,-0.045030624,-0.15251757,0.019086147,-0.44269866,0.43557557,0.10575984,0.47102287,-0.15516102,-0.58314514,0.11423882,0.16211048,-0.108835384,-0.55019736,0.490431,-0.078613184,0.8876763,0.07879962,0.0599608,0.3667083,-0.453372,-0.13631962,-0.2550039,-0.2586124,-0.7021215,0.07855742,218 +6,0.5765292,-0.114630535,-0.32122394,-0.07281329,-0.104547404,0.014056858,-0.10330247,0.3280689,0.19555944,-0.5876652,-0.06301076,-0.26026565,-0.004904025,0.24145514,-0.060354035,-0.71929264,-0.08593565,0.18665496,-0.34872943,0.5124342,-0.44243652,0.324106,0.026199706,0.30932477,0.073006965,0.21792923,0.23952234,-0.21472827,-0.087560974,-0.07500005,-0.09057366,0.2949493,-0.548291,0.10433244,-0.024263645,-0.29090217,-0.0048003057,-0.31925407,-0.2714317,-0.6815268,0.2269488,-0.62468797,0.37458438,0.1907361,-0.11669983,0.38749918,-0.044363547,0.32528618,-0.1980852,0.060097843,0.17262371,-0.21595049,0.014701114,-0.2168855,-0.15891951,-0.40033492,-0.52059287,0.06980368,-0.32725435,-0.34389827,-0.36458188,0.13998461,-0.30326372,-0.15779892,-0.12481019,0.3437932,-0.42773172,0.00068731344,0.17203572,-0.1422404,0.40727735,-0.4054901,-0.13951546,-0.15479529,0.113455884,-0.2452397,-0.13837092,0.2686259,0.21543229,0.6440806,-0.043151077,-0.21311423,-0.30968216,0.0055078478,0.14749166,0.5602968,-0.20005172,-0.4996573,-0.045497105,-0.036170736,0.18292983,0.03533086,0.030483628,-0.31903616,-0.26325738,0.11445761,-0.29880548,0.30323842,0.493284,-0.3244595,-0.32437676,0.31090236,0.518,0.022956148,-0.122023486,0.029821873,-0.011506078,-0.4289852,-0.17764525,0.10997008,-0.21292448,0.33949846,-0.11845118,0.1498469,0.7026914,-0.17770042,0.12056225,-0.041403566,-0.08197134,0.00047041036,-0.3300222,-0.26698548,0.25360915,-0.32576814,0.18507828,-0.2389597,0.8679598,0.16838616,-0.8647476,0.43172932,-0.48245215,0.17662795,-0.07677649,0.6555508,0.6754687,0.28479993,0.41069916,0.6542372,-0.6750044,0.06895027,-0.14999367,-0.33698678,0.055676553,-0.07903477,0.022420399,-0.49659252,0.045587044,0.0685037,-0.0910821,0.0010078076,0.2975865,-0.6426675,-0.0053693373,0.17199606,0.77238053,-0.3485703,-0.043848187,0.51953083,0.8942235,0.87463707,0.03799932,1.1682557,0.27662516,-0.3438673,0.33202603,-0.5165903,-0.5872531,0.21543466,0.3443434,0.024373427,0.26034904,0.123003006,-0.029508395,0.29256585,-0.33490002,-0.002707513,-0.15618518,0.13923235,-0.009585121,-0.124344096,-0.3791577,-0.11757673,-0.059739336,-0.008887565,0.05801638,0.17933773,-0.36286718,0.1446633,0.011966717,1.9109443,-0.03694775,0.13456662,0.034324896,0.4425211,0.10734187,-0.078039095,0.03263644,0.43531317,0.32756063,0.09989723,-0.54386157,0.11117069,-0.19546217,-0.51549596,-0.102114856,-0.21936211,0.1004649,0.050999235,-0.34963062,-0.012408295,-0.0599629,-0.41268048,0.4878016,-2.613746,-0.18944553,-0.043230936,0.31571218,-0.31273723,-0.3391744,-0.09259489,-0.33628583,0.3649752,0.3121444,0.40015277,-0.75272125,0.27092463,0.30852267,-0.42977607,-0.13634208,-0.6395446,-0.028180826,-0.12303428,0.37445393,0.10338971,-0.01184838,-0.030964537,0.18224908,0.4117376,-0.16670701,0.015693447,0.16243629,0.31464648,0.20817241,0.44980258,0.0088344,0.38164788,-0.14399055,-0.18134238,0.36703685,-0.423501,0.1287089,0.047722556,0.06846254,0.28680724,-0.4279415,-0.86513025,-0.65311235,-0.49691194,1.0682752,-0.26710677,-0.3960312,0.2496081,-0.069413066,-0.30079293,-0.12472935,0.31087336,-0.15558052,-0.07835105,-0.8659521,0.14434434,-0.04869158,0.22214018,0.08718198,0.042748276,-0.36330652,0.57637674,-0.13349114,0.42065173,0.3347404,0.20005001,-0.12518075,-0.45459715,0.018663196,1.0441928,0.21173868,0.16093238,-0.16825518,-0.21548958,-0.19078296,0.0012782111,0.13198243,0.48797327,0.7022927,-0.047996417,-0.008791653,0.25818297,0.0065143863,-0.09597371,-0.19949588,-0.26675138,-0.035869583,0.07954201,0.600699,0.5134064,-0.2793778,0.35096118,-0.073671706,0.27400154,-0.10380143,-0.48820946,0.4807394,1.1138618,-0.15848567,-0.09950994,0.5294511,0.26469252,-0.33257312,0.42328238,-0.7392847,-0.18795677,0.5400466,-0.19099939,-0.3062947,0.18842195,-0.30237377,0.032173928,-0.9415146,0.3588498,-0.18568055,-0.41325918,-0.4476916,-0.15156019,-3.302078,0.10155689,-0.16327341,-0.22339305,-0.02681385,0.08535776,0.21393046,-0.60148495,-0.3866789,0.048450246,0.11783322,0.5255516,0.10786823,0.105286404,-0.26409984,-0.15606171,-0.33049938,0.081475325,0.11492273,0.29978982,0.069098115,-0.41393355,0.00017709592,-0.09502327,-0.40827295,0.1302398,-0.42771986,-0.4510018,-0.24415076,-0.49859613,-0.33493346,0.5145657,-0.38176778,0.03783086,-0.21308438,-0.07399046,-0.19696255,0.34278718,0.17556201,0.08602775,-0.055725656,-0.016319083,-0.10894544,-0.23557977,0.21675873,0.15977545,0.105294496,0.44506267,-0.24197015,0.13033405,0.4361674,0.627387,-0.0012853496,0.7596408,0.6070263,-0.1405338,0.36678943,-0.33649963,-0.13551119,-0.63650036,-0.44878682,-0.15626208,-0.41447458,-0.5015741,-0.028646898,-0.31664667,-0.7332822,0.4694206,-0.12256735,0.14716932,-0.0026210845,0.24618572,0.50334823,-0.19150218,-0.08951402,-0.060232233,-0.1517173,-0.51053095,-0.29780173,-0.59912163,-0.47872886,0.25728345,0.8751121,-0.119166516,0.012561216,-0.034760736,-0.0584782,-0.11748892,0.13031581,0.03239676,0.23946956,0.3578184,-0.0974974,-0.62146544,0.51197386,0.014146497,-0.14671801,-0.5776978,0.20518768,0.55585194,-0.49909616,0.47463727,0.24039526,0.0882595,0.042390052,-0.4684295,-0.274472,-0.005249879,-0.2801404,0.39433548,0.1582339,-0.6897195,0.40990236,0.44764653,-0.2650412,-0.71891356,0.30838516,0.0026328599,-0.33608347,-0.010259104,0.28751808,0.015545628,0.045991316,-0.1458775,0.22695424,-0.60747164,0.17584518,0.29172197,-0.04117094,0.3361685,-0.19958222,-0.08326953,-0.7217499,-0.0017989102,-0.5015139,-0.2884954,0.08861448,0.14802656,0.038560156,0.2395023,0.02245565,0.46669468,-0.13629465,0.08797559,0.009250241,-0.10312672,0.24135716,0.47917628,0.36051005,-0.34607422,0.45210457,0.010456674,-0.11000786,-0.20482773,-0.005157304,0.5027523,0.14615275,0.2451884,-0.074809745,-0.29785615,0.37633228,0.6403483,0.24926887,0.43107584,0.043437384,-0.2234121,0.37768802,0.13819544,0.108894646,0.0750785,-0.37220073,-0.0482987,0.0013817688,0.15922207,0.4021895,0.1773267,0.39938828,-0.08513791,-0.2601197,0.038032312,0.25462615,-0.12500435,-1.0460782,0.3547509,0.24271193,0.7872376,0.56679225,0.015577064,0.13304682,0.57944655,-0.24601758,0.18643141,0.28462118,-0.17768154,-0.57326776,0.45954525,-0.6271693,0.2539509,-0.07195057,0.03406468,0.085574254,0.00092299195,0.4554041,0.70152384,-0.22694315,0.07834217,-0.1400738,-0.18790762,0.17969105,-0.34683266,0.20488442,-0.44342238,-0.28205395,0.6471241,0.40866303,0.3403237,-0.20453885,-0.050192114,0.08692189,-0.04980367,0.10363849,0.030476168,0.066339634,0.05777368,-0.52036494,-0.23939598,0.60750884,-0.09045013,0.15396811,0.052082628,-0.2597877,0.16682748,-0.20035045,-0.21840768,-0.0426387,-0.5229403,-0.08755053,-0.11772213,-0.2819853,0.5716281,-0.15066475,0.31718612,0.062700704,8.7794135e-05,-0.2589354,0.24002177,0.30928004,0.55622315,0.08132067,-0.1817464,-0.3187266,0.17975336,0.18208586,-0.1976801,-0.17236501,-0.19522965,-0.07172033,-0.6605469,0.44638488,0.06301239,-0.26285613,0.16171432,-0.13257074,0.0327042,0.57507205,-0.04617017,-0.1721025,0.033554368,-0.20624413,-0.2378673,-0.15090613,-0.11054977,0.34604084,0.085404456,-0.09958,-0.029163932,-0.030812327,-0.120582044,0.4236836,0.13818428,0.2620278,0.28049842,0.14359844,-0.3902514,-0.08366497,0.08366422,0.26375747,0.09576887,-0.102102794,-0.060282834,-0.40865007,-0.42734075,-0.083394974,-0.16555673,0.32703888,0.045484237,-0.3913299,0.84567213,0.1409589,1.2064427,-0.085481435,-0.24478592,0.02462629,0.4932693,-0.061213836,0.13787879,-0.3945073,0.82504416,0.55987036,0.044572115,-0.14287058,-0.18284686,-0.08028439,0.19102062,-0.19985837,-0.026635226,0.0147094205,-0.66817707,-0.43954286,0.27665496,0.27684158,0.08233085,-0.041607507,-0.0033567303,0.18420643,0.042510092,0.37279275,-0.3447603,-0.12388779,0.23017873,0.3162975,0.039732438,0.0783794,-0.38481057,0.40812212,-0.49716064,-0.0071929027,-0.13011573,0.0669837,-0.13557558,-0.2041857,0.27775022,0.074161835,0.3148625,-0.26439813,-0.36683217,-0.21907698,0.4806601,0.04488459,0.1674247,0.57833016,-0.21208468,0.10033527,0.012026604,0.47868258,1.1413819,-0.30045867,0.08588624,0.41829863,-0.3370202,-0.6280955,0.30330095,-0.23585606,0.09188777,-0.20744024,-0.3005221,-0.38580093,0.1686784,0.1805345,0.0060890475,0.18920752,-0.57095206,-0.241728,0.31714505,-0.31480658,-0.18614617,-0.12779772,0.22339788,0.7186028,-0.35546052,-0.38113284,0.14680184,0.24185924,-0.34077173,-0.5550129,-0.14360042,-0.33746907,0.38067403,0.18736632,-0.33409888,0.054552104,0.21358609,-0.373872,-0.035365216,0.21611135,-0.4395031,0.13886435,-0.28785896,-0.0024483746,0.80888975,-0.07317283,0.12061038,-0.6983419,-0.3537285,-0.9941762,-0.4430823,0.57686454,0.19561923,0.024172632,-0.41490224,0.02150192,-0.035175435,-0.21312632,-0.122143984,-0.3499612,0.37617916,0.18401542,0.45821285,-0.12298525,-0.77333283,-0.10012398,0.13297862,-0.070827834,-0.63727397,0.4389571,-0.020991718,0.86274886,0.049594216,0.111631855,0.35048115,-0.4989807,0.024407092,-0.24725176,-0.22400601,-0.6971864,0.04153826,223 +7,0.7473613,-0.12828133,-0.77294934,-0.043843877,-0.66733617,0.16519654,-0.38588524,0.13388823,0.228141,-0.5605262,0.1564959,-0.031126713,-0.21231037,0.12563287,-0.17853534,-0.67654353,-0.08011447,0.17325637,-0.7728109,0.8194837,-0.4148583,0.28941357,0.19025895,0.17268343,-0.10351919,0.16750751,0.1937135,-0.110399544,-0.28347418,-0.15419427,-0.061032042,0.14831448,-0.63032115,0.60752714,-0.024072459,-0.16988042,-0.06119167,-0.29076135,-0.270965,-0.7381163,-0.03880115,-0.6120508,0.44889292,-0.061494604,-0.36726683,0.06742786,0.07015176,0.22858341,-0.040448178,0.011744275,0.25563386,-0.4021422,-0.5885527,-0.31812203,-0.3860498,-0.7656189,-0.6289305,-0.22544609,-0.5411204,-0.082661875,-0.20214713,0.3934093,-0.31748578,-0.1705011,-0.29988647,0.649241,-0.31880066,0.07390348,0.2881298,-0.08986114,0.18456912,-0.6727494,-0.04211766,-0.0884907,0.009232495,0.28094134,-0.2856366,0.25596142,0.07206196,0.378707,0.12266288,-0.44352248,-0.41897252,-0.15151334,0.34466577,0.39995617,-0.13008839,-0.12393357,-0.2703714,-0.057714853,0.38538602,0.34439513,0.18164149,-0.4708712,0.12965141,-0.21000504,-0.23502018,0.38803485,0.4737395,-0.1970005,0.11148476,0.40601406,0.3189883,0.09101939,-0.35460445,-0.04664562,-0.26821396,-0.47331557,-0.12313767,0.3909226,0.064973876,0.26557273,-0.105513684,0.0639736,0.5150486,-0.11523342,-0.17912543,0.10862448,0.017760636,0.25725758,-0.23888652,-0.08808082,0.30975035,-0.6542386,-0.19890372,-0.517811,0.73392415,-0.12391434,-0.68293494,0.25003698,-0.51144934,0.16694103,0.08998928,0.7265458,0.8938196,0.677395,0.031079117,0.9173323,-0.29736754,0.29031983,-0.35628605,-0.24121198,0.10272554,-0.1228727,0.5554238,-0.39271975,-0.15993138,-0.11554158,-0.14512363,-0.27101022,0.7894553,-0.564495,-0.31663784,0.0009933631,0.73688686,-0.31876463,-0.11059538,0.6977903,1.1520059,1.0432367,0.32275447,1.173952,0.44191965,-0.12530789,-0.17229971,-0.3098046,-0.53699017,0.3358626,0.23944439,0.14158854,0.40564823,0.03592035,0.058414236,0.4412643,-0.14760192,-0.26876423,-0.20615579,0.4880357,-0.04360096,-0.16193141,-0.35593772,-0.119441144,0.25929508,-0.0463216,0.23409039,0.38227692,-0.169921,0.50266504,0.26358438,1.1596273,-0.21725261,0.06273804,0.12896065,-0.04201096,0.206948,-0.19456221,0.080784515,0.5030368,0.19411787,-0.12047761,-0.5041112,-0.018250234,-0.16902551,-0.5407432,-0.13426927,-0.22386312,-0.20111644,-0.093184665,-0.2208309,-0.29244646,0.02401265,-0.52448124,0.38921434,-2.2530034,-0.034986686,0.0046217917,0.20475791,-0.28095508,-0.43954545,-0.14302984,-0.5285446,0.57705766,0.26811385,0.3744875,-0.36881498,0.3094565,0.3799198,-0.6457273,0.02420748,-0.7501003,-0.06777088,-0.17837554,0.4878545,-0.05263211,-0.27291864,0.14437285,-0.036137223,0.51029134,-0.009457417,0.1134692,0.41552848,0.46331337,-0.14706412,0.5179531,0.13250534,0.5533025,-0.35011023,-0.14652121,0.44173154,-0.4246465,0.40073448,-0.115710355,0.047967438,0.5364141,-0.23242283,-0.5091487,-0.4273955,-0.14759627,1.0765773,-0.4699438,-0.61007154,0.060142938,-0.0225963,-0.18069862,0.107806236,0.3490416,-0.028936792,0.08346542,-0.6028862,-0.049475987,-0.04874845,0.30877176,-0.11687279,0.20182374,-0.50778645,0.75244015,-0.17180735,0.53858614,0.580655,0.35925215,-0.26071766,-0.35970435,0.21767136,0.77138346,0.39254203,0.021414125,-0.37122366,-0.26117358,-0.096227266,-0.07962305,0.010388419,0.5825209,0.6054489,-0.13938135,-0.05156074,0.30429676,-0.3370182,0.13017415,-0.2019099,-0.36741048,-0.28453845,0.1512111,0.30308348,0.5795912,0.08099711,0.60145503,0.010708791,0.3391097,-0.14416252,-0.6755851,0.49144,1.2826592,-0.27460903,-0.24035726,0.53976125,0.4589829,-0.057861175,0.66474026,-0.55583215,-0.37475297,0.4067666,-0.10798985,-0.5010771,0.1802601,-0.29621506,0.18648614,-0.8330454,0.41456184,-0.39569974,-0.54764265,-0.70962,-0.13813391,-1.6189901,0.35794517,-0.3242276,0.028542832,-0.19479182,-0.20960681,0.20067401,-0.4988446,-0.5700279,0.17358986,0.23809108,0.3830296,-0.024988273,0.04642284,-0.31914207,-0.4837745,-0.02840589,0.41793036,-0.013023426,0.12745593,-0.17271648,-0.3882152,0.14200447,-0.13519715,-0.17260942,0.024431512,-0.59362465,-0.2477127,-0.22756936,-0.40805268,-0.240944,0.59293735,-0.42341122,0.04430135,-0.16310622,0.08430606,0.20171405,0.1530185,-0.02458295,0.22626221,0.2217162,-0.19987327,-0.19662826,-0.387826,-0.062444407,0.22330116,0.14766371,0.70843285,-0.14844906,0.22414891,0.37175968,0.7069551,-0.05130796,0.8859048,0.038428806,-0.25843367,0.32500148,-0.23553433,-0.14825344,-0.9172198,-0.31858715,-0.016836872,-0.52153915,-0.49820787,-0.11147489,-0.35595986,-0.779156,0.60940284,0.073249534,0.1680185,-0.0036900744,0.540163,0.42529225,-0.19769886,0.004551642,-0.17248067,-0.33609417,-0.33352312,-0.6001539,-0.785546,-0.5027852,0.19805014,1.3555739,-0.2453965,-0.18381329,-0.002607314,-0.2617886,0.012353007,0.2699979,0.04200429,0.11827068,0.28266582,0.3364141,-0.44519126,0.4940579,-0.049270514,0.12022112,-0.2869297,0.42625698,0.792219,-0.68989235,0.3575369,0.44413668,0.15282811,-0.04001197,-0.8147565,-0.14617285,0.29252484,-0.2309141,0.4292689,0.39331067,-0.68375015,0.5304607,0.27094954,-0.30519107,-0.8591005,0.17715573,0.049568925,-0.27576166,0.13370104,0.45842543,-0.0065482715,0.10139462,-0.3102238,0.27836198,-0.5528065,0.29969582,0.05831257,-0.08121667,-0.067425705,-0.07144405,-0.41615626,-0.9713753,0.0062182792,-0.6083521,-0.3869574,0.31263942,-0.07745349,0.102174014,0.219612,0.28753898,0.4561831,-0.3352375,0.1132726,-0.29416236,-0.1475613,0.5365902,0.63665605,0.48834705,-0.41333243,0.6467377,-0.05439609,-0.11125817,-0.33151418,0.067483515,0.29798865,0.22698785,0.49787617,0.12253332,0.057063643,0.17006314,0.83612967,0.25068358,0.40749872,0.068122566,-0.35768688,0.25695613,-0.04312216,0.3610561,-0.21606277,-0.49948052,-0.14595681,-0.054912537,0.19628695,0.37918898,-0.025472922,0.48308435,-0.18828464,0.031229619,0.1459961,0.07996281,0.050180618,-1.0174793,0.44318098,0.40340626,0.59753793,0.615236,0.12138246,0.06166839,0.54025763,-0.4669838,0.044471297,0.29357103,-0.16912186,-0.22289288,0.37491906,-0.66748464,0.19103906,-0.26201794,0.04861579,-0.0027918115,0.069108345,0.36116958,1.060528,-0.11157405,0.053017933,-0.11776,-0.24897623,0.17049289,-0.12787424,0.0020225819,-0.35094756,-0.60593057,0.74456537,0.15193668,0.6913602,-0.17210843,-0.08977359,0.35242096,-0.35825607,0.43057138,0.020468852,-0.018394217,0.020632207,-0.19961372,-0.14214684,0.5052275,-0.27401194,-0.041579105,0.1498801,-0.119895995,0.15047447,0.06738655,-0.15739915,0.013845205,-0.60444295,-0.026162315,-0.3210762,-0.36031553,0.4007173,-0.11989397,0.041656673,0.15667015,0.15240103,-0.24431251,0.12186906,0.16560678,0.6585959,0.20413412,-0.18738988,0.08265734,0.07331485,0.21032226,-0.34919497,0.09593678,0.06501552,0.37915862,-0.8994,0.35176447,-0.27547908,-0.44569778,0.094732225,-0.3967168,-0.23829536,0.49097258,-0.26514035,-0.16384178,0.23002933,-0.019693403,-0.17555371,-0.08816916,-0.2498473,0.16507614,-0.26903453,-0.023739954,-0.0970698,-0.03438832,-0.013519329,0.38998985,0.103663,-0.001938301,0.39567629,0.051652994,-0.5802402,0.04689824,0.36388403,0.39746213,0.10994217,0.09168782,-0.17605413,-0.29614466,-0.52017546,0.4048559,-0.08620733,0.17901236,-0.045344003,-0.49549708,1.1146792,-0.039173555,0.9926937,-0.18701994,-0.4243546,-0.056271728,0.56013936,0.001010702,0.04183374,-0.3493722,0.95603895,0.5837848,-0.090698354,-0.06473546,-0.67861503,-0.11139039,0.4073859,-0.4349215,-0.13680868,-0.0052376073,-0.69663936,-0.2407948,0.24844097,0.06382377,-0.026762828,-0.18607858,0.0054695187,0.1625517,0.26707196,0.24335614,-0.6577562,-0.028799307,0.25074774,0.14470088,0.00053920463,0.23447905,-0.3567193,0.2899797,-0.8412899,0.3864364,-0.25440937,-0.08330078,-0.0056174994,-0.13184851,0.25703645,0.2353412,0.13299365,-0.3557361,-0.3517239,-0.0971134,0.40034848,0.21688746,0.23683722,0.84364027,-0.26179594,-0.03546462,0.09243445,0.57048225,1.310702,-0.19979486,-0.21985458,0.1719507,-0.3928933,-0.74015784,0.1393549,-0.3951491,-0.038088996,-0.12695377,-0.4945033,-0.4385137,0.257605,0.13488398,-0.06899316,0.1276536,-0.63974625,0.0025445293,0.1725585,-0.33500683,-0.11857651,-0.06104055,0.17337415,0.78571665,-0.34899694,-0.31674033,-0.09335994,0.15249932,-0.43310383,-0.4687673,0.17626512,-0.32291687,0.2713428,0.24189949,-0.34230062,0.08746795,0.23813884,-0.5971222,0.059614625,0.30249402,-0.21707419,0.015714375,-0.30324292,0.17977664,0.66443133,0.12574999,-0.008465115,-0.26304126,-0.66704965,-0.66996354,-0.41457248,-0.22709727,0.10703011,0.031206857,-0.75910467,0.013844069,-0.494156,-0.10334004,-0.0045515685,-0.5732123,0.46338344,0.25122356,0.32961532,-0.26543757,-1.1128354,0.34056455,0.09256088,-0.09960097,-0.4064118,0.32871577,-0.20920579,0.77198035,0.1769584,0.01636968,0.15629321,-0.92843705,0.3133613,-0.34411,-0.17365706,-0.69627684,-0.008424696,243 +8,0.4122613,-0.19398597,-0.6191717,-0.1567692,-0.57948446,0.17145906,-0.31865284,0.34016982,0.1669045,-0.21606337,-0.13918576,-0.06720222,0.0334887,0.38526943,-0.07210663,-0.54733133,-0.2427981,0.14479941,-0.85172486,0.48438478,-0.49179867,0.40053725,0.15274923,0.23480794,0.25684375,0.51157826,0.24442628,-0.017483557,-0.23695895,0.12590624,-0.11724714,0.1173373,-0.4358417,0.10660543,-0.23533513,-0.2872273,-0.04527014,-0.3222431,-0.184706,-0.59170014,0.15471762,-0.74421954,0.43941674,-0.2162813,-0.025699416,0.0502917,0.3318642,0.39000726,-0.37151003,0.15272897,0.24438463,-0.2300792,-0.15365888,-0.32631484,-0.14159511,-0.37491372,-0.3759586,-0.11065391,-0.67503536,-0.26455542,-0.10915891,0.2699544,-0.22523521,0.1961572,-0.02956523,0.23659195,-0.4646455,0.12507534,0.2324865,-0.18194816,-0.034834057,-0.4970992,0.014234873,-0.1328415,0.53399694,0.022210944,-0.17266452,0.41843107,0.24154565,0.30913287,0.31431714,-0.28570405,-0.3231903,-0.23754317,0.23035656,0.33990788,-0.12036772,-0.16029362,-0.1989199,-0.003845811,0.37932277,0.24217252,-0.03199174,-0.29290658,-0.041094076,-0.11460602,-0.24271926,0.3407054,0.44595546,-0.22792765,-0.2345754,0.3276179,0.48039514,0.22350104,-0.38283437,-0.0019766758,-0.09707782,-0.4415764,-0.13071921,0.13588628,0.11811037,0.40011716,-0.10993238,0.118355006,0.7947716,-0.115602955,-0.021213213,-0.07065385,0.062289204,-0.1846877,-0.25959685,-0.06092104,-0.027537528,-0.5530824,-0.049110733,-0.14562477,0.64637923,0.111982696,-0.75305647,0.32797518,-0.4723468,0.12569329,-0.11631462,0.4699866,0.6791695,0.40462878,0.14065844,0.7541996,-0.1985175,0.2694418,-0.20019655,-0.34262487,-0.052589044,-0.21370281,0.024497068,-0.5492035,0.23277803,-0.1214649,0.11214985,0.0828463,0.48776218,-0.42010555,-0.107173525,0.21098721,0.72826236,-0.40564847,-0.09222987,0.62727237,1.0436317,0.9093545,-0.011528967,1.1192037,0.39228013,-0.25933367,0.093753874,-0.49228,-0.40271008,0.16137569,0.30503306,0.11169953,0.32810804,-0.05493722,0.02694802,0.4162441,-0.33166152,0.06537309,0.04374234,0.25017998,0.15820971,0.037957687,-0.3275225,-0.14320002,0.15654793,-0.020503718,0.14287184,0.2700121,-0.28993392,0.40859103,-0.07102671,1.4809667,0.012523576,0.013207669,0.1336063,0.5558291,0.23047459,-0.11339086,-0.026244858,0.43167162,0.47760773,-0.12873152,-0.53881437,0.20638621,-0.33755776,-0.508724,-0.15700145,-0.45011118,-0.19321088,0.03987813,-0.5255967,-0.25014737,0.077426404,-0.27215183,0.37353218,-2.8585458,-0.30503827,-0.19077852,0.22812603,-0.33358246,-0.29877764,-0.2227194,-0.49310717,0.23648411,0.24643834,0.3519331,-0.52621573,0.583009,0.38515344,-0.4396999,-0.16011332,-0.57720476,-0.015956573,-0.034436017,0.42295462,-0.07982575,-0.03492948,-0.12611106,0.09739409,0.6569356,-0.16725641,0.22782099,0.5559511,0.33582345,0.15274017,0.6300013,0.08199797,0.5718502,-0.41493902,-0.2405721,0.31592005,-0.21651153,0.1873383,-0.035167053,0.11789964,0.51065296,-0.4379909,-0.83956695,-0.5743119,-0.15714885,0.9850605,-0.4626715,-0.36563084,0.25947505,-0.053240236,-0.1326184,0.11177458,0.51575863,-0.071616605,0.14551789,-0.6736889,0.19036284,0.050288383,0.19131206,0.021239476,-0.08398393,-0.24913254,0.6862416,-0.032827917,0.6043957,0.26895708,0.25045338,-0.115311444,-0.22091314,0.14623001,0.83909935,0.28016198,-0.0045852703,-0.1750061,-0.3297453,-0.18674208,-0.26538977,0.14118946,0.35433173,0.5389365,0.07451178,0.20275587,0.1978721,-0.11303015,-0.028613843,-0.18143384,-0.09472468,-0.034859452,0.1498544,0.4367964,0.603384,-0.034117192,0.5973212,-0.2029306,0.3890879,-0.12350607,-0.6381972,0.5409519,0.43159646,-0.21944681,-0.17402093,0.52989244,0.5782056,-0.29206324,0.41363117,-0.7013375,-0.40697742,0.6290742,-0.23110086,-0.35236335,0.18656245,-0.25596166,0.06701339,-0.72772384,0.14743304,-0.2289994,-0.3355953,-0.4032952,-0.32071975,-3.2425842,0.11370698,-0.0047433325,-0.1893723,-0.12420626,-8.0185775e-05,0.28630996,-0.6599277,-0.41849366,0.11005622,0.1879131,0.59982985,0.014813115,0.009969862,-0.25502726,-0.203467,-0.07155302,0.23150328,-0.029565763,0.31232905,-0.18168275,-0.52083766,-0.061055142,-0.07960339,-0.486881,0.17463693,-0.44258058,-0.35225415,-0.1087713,-0.28807202,-0.23177026,0.51914644,-0.39169496,0.0021370754,-0.31425086,0.05486981,-0.18794961,0.13883854,0.2237585,0.2017011,0.20938236,0.013969292,0.1473657,-0.38969457,0.37127662,-0.049337957,0.3093342,0.2864197,0.14442702,0.19188553,0.34987342,0.54758203,-0.17814058,0.9042266,0.32739273,-0.047225688,0.2930842,-0.15729606,-0.18745717,-0.55490303,-0.36364374,-0.20543724,-0.38612092,-0.44814733,0.0050179134,-0.33705524,-0.8010187,0.5769064,-0.033601467,0.22665776,-0.13781586,0.25066844,0.38744938,-0.23325913,-0.051762067,-0.0807493,-0.15129286,-0.44411996,-0.47275913,-0.59869534,-0.59456915,0.014217156,0.9801221,-0.24869728,-0.023693562,-0.15023942,-0.32106027,-0.028552823,0.21542951,0.15098555,0.39896047,0.4088475,-0.10098141,-0.7114424,0.42744985,-0.26704282,0.0014104071,-0.49270794,0.11433374,0.43761757,-0.57640284,0.50076437,0.3132652,0.2317715,0.08395665,-0.47658843,-0.17029908,-0.06985151,-0.21182524,0.49718392,0.21138608,-0.78639627,0.5637231,0.086094506,-0.40832824,-0.7527537,0.3211135,-0.015111485,-0.3056476,-0.06336047,0.326272,0.1590844,-0.13404283,-0.24000692,0.15539552,-0.41074058,0.27294853,0.3257602,-0.060040362,0.26437137,-0.13277057,-0.32007912,-0.59428895,-0.111323565,-0.2798569,-0.30685097,0.18739456,0.025561323,0.091602005,0.17117652,0.015304874,0.30351076,-0.23116265,0.0993991,-0.08522712,-0.25059915,0.2150984,0.36270618,0.3523084,-0.35441366,0.5070634,0.06257901,-0.18434298,0.06632655,0.025361545,0.33544812,0.09006647,0.38520768,-0.14689973,-0.25872353,0.4386623,0.55378354,0.21706943,0.2737789,0.04565022,-0.35867608,0.29728934,-0.009994478,0.055915404,0.0013876803,-0.42130986,-0.069344774,-0.0062520434,0.26059195,0.5104534,0.2009614,0.40442213,0.10241823,-0.0042018853,0.14816745,0.08530315,-0.040396065,-1.1935307,0.2873949,0.2768434,0.7729899,0.4066744,0.0073549044,-0.21452273,0.64272934,-0.3821755,0.050696667,0.36082894,-0.0571335,-0.36255002,0.62581396,-0.6369075,0.50513536,-0.1526032,-0.13617444,0.1802157,0.17122065,0.24866708,0.89159,-0.12251113,0.11066243,0.18776016,-0.3254629,-0.017687831,-0.1600882,-0.043286633,-0.51185274,-0.40832162,0.7190528,0.2565537,0.3845052,-0.16720992,-0.0919089,-0.018484892,-0.22179136,0.100177094,-0.055077933,0.11169118,0.106819965,-0.419327,-0.25711587,0.51086426,-0.01430847,0.20422405,0.009921022,-0.36722773,0.042980343,-0.20007756,0.020418601,0.0082852915,-0.53187525,-0.043316703,-0.15535699,-0.51960355,0.36656097,-0.18826768,0.23017663,0.12986867,-0.10427719,-0.19973382,0.38779318,0.08525443,0.758402,0.023969742,-0.19755742,-0.20300052,-0.05491785,0.3680402,-0.19079278,0.12087105,-0.42537975,0.03157439,-0.62824935,0.58692354,-0.13788275,-0.44494152,0.2920193,-0.18927962,-0.004813552,0.4696991,0.030986238,-0.09952984,0.0984254,0.084294304,-0.39137968,-0.116245106,-0.40511823,0.2374608,0.14934127,0.008321404,-0.067195736,-0.16707027,0.039341897,0.58597946,0.0034699598,0.41928017,0.26357102,0.019220976,-0.20756397,0.12128749,0.19651738,0.36695832,0.04707644,0.03656107,-0.41529918,-0.3758689,-0.3557425,0.24111602,-0.14863716,0.11001155,0.05410334,-0.24329048,0.8957939,-0.15983538,1.1349516,0.16120803,-0.32093573,0.21250737,0.40445787,-0.016847365,0.16066253,-0.32531276,0.68097633,0.57439756,0.0047500976,-0.142743,-0.3487893,-0.12712675,0.33638024,-0.33142185,-0.023241583,-0.043546773,-0.5635321,-0.5273782,0.14588629,0.043806423,0.1356157,-0.03415185,0.02012672,0.08627435,0.119660184,0.36047867,-0.6168076,-0.16317368,0.18301946,0.25464192,-0.12652464,0.26562032,-0.49002194,0.50042486,-0.72366667,0.059606805,-0.3374387,0.14745939,-0.084895864,-0.25839892,0.1405344,0.08995579,0.34554976,-0.2872235,-0.355464,-0.25562045,0.59175444,-0.050237473,0.21325988,0.51634943,-0.30539697,0.071476825,0.14870164,0.46716422,1.1255665,-0.5084717,0.034310993,0.33837858,-0.32562235,-0.5947211,0.30466154,-0.36416298,-0.05227763,0.007706488,-0.46469873,-0.2502483,0.40031168,0.101282164,0.109231345,0.14542973,-0.46554688,0.049777865,0.37716663,-0.22703299,-0.3000948,-0.12864892,0.25318074,0.66856825,-0.33845627,-0.2336659,0.074517824,0.34889817,-0.28859532,-0.3588004,0.037595153,-0.23095362,0.44134447,0.12312104,-0.11978315,-0.118842855,0.13811214,-0.40383917,0.042033643,0.36192498,-0.3824988,8.280838e-05,-0.23275498,-0.032704767,0.8453652,-0.10053263,-0.006670665,-0.702881,-0.4340173,-0.7890283,-0.42197374,0.07423956,0.18403842,-0.1248542,-0.42076993,-0.009364581,-0.07682953,-0.23563181,0.10388505,-0.5186236,0.441207,0.111750394,0.41718125,-0.15358904,-0.9215111,-0.06503879,0.019360589,-0.27575144,-0.5064532,0.5750111,-0.23371397,0.8161931,0.022409547,-0.10215564,0.031781208,-0.3793448,0.37275025,-0.4281873,-0.104642205,-0.69917464,0.039884195,338 +9,0.3936746,-0.18311538,-0.41547486,-0.17173803,-0.2672259,0.12780501,-0.18199413,0.2093463,0.08871172,-0.21741351,-0.13882837,-0.15895769,-0.06855543,0.37911904,-0.10385078,-0.6800562,-0.19662607,-0.019178264,-0.74021596,0.4456239,-0.60135955,0.43313712,0.16770303,0.19748496,0.009831274,0.53215283,0.3206888,-0.26326728,-0.06362379,0.031666137,-0.07825661,0.08645564,-0.43347853,0.055249978,-0.09782757,-0.15630753,0.08571226,-0.2951654,-0.32859576,-0.58902186,0.34078476,-0.6549716,0.32905784,-0.06400811,-0.07814741,0.10409463,0.305062,0.44431865,-0.33808446,0.10826135,0.1900166,-0.15877785,-0.08509118,-0.24963541,0.0036159193,-0.41323286,-0.396941,0.0057408772,-0.6102721,-0.4420624,-0.057390388,0.17349057,-0.3170887,-0.025863664,-0.11856335,0.38574815,-0.3698914,-0.048397418,0.37992495,-0.13369821,0.27970904,-0.61863947,0.033189215,-0.064375944,0.42499664,0.02564961,0.041147493,0.3963826,0.28915754,0.38703328,0.22313438,-0.25127006,-0.19525975,-0.21250631,0.26855686,0.3695251,-0.19617002,-0.23846708,-0.14472511,0.15322079,0.02792553,0.27238038,-0.0702626,-0.31316125,-0.025736328,0.0099695865,-0.29244053,0.43573394,0.5955186,-0.24110898,-0.39664066,0.30569714,0.65941566,0.11324738,-0.2556187,-0.030133262,-0.072776474,-0.42604375,-0.08565914,0.24546537,-0.060305882,0.39943814,-0.05984539,0.1782811,0.79676104,-0.113632016,0.018518336,-0.27163544,-0.20680203,-0.117601156,-0.16202363,-0.008826067,-0.06686615,-0.5857747,-0.09038272,-0.25003582,0.6548223,0.20070507,-0.7121824,0.4126515,-0.4095644,0.18197969,-0.09568734,0.53102267,0.65174246,0.22372887,0.17410961,0.80290985,-0.45217386,0.1433594,-0.09599462,-0.5137825,0.017139912,-0.15192893,0.05082189,-0.48452008,0.076007284,-0.18399785,0.08096194,-0.054985393,0.17909864,-0.50688374,0.019114831,0.17369537,0.7919638,-0.33614135,-0.0037409489,0.4952516,1.1043366,0.88971496,-0.03554515,1.1494851,0.3311042,-0.32258344,0.31879807,-0.7033673,-0.5141791,0.17863248,0.44412696,0.24332285,0.34057823,-0.15234879,-0.028910875,0.3748255,-0.39420065,0.16493252,-0.09386108,0.23941539,0.1792105,-0.027972838,-0.27513814,-0.06584142,-0.048639655,0.0019773666,0.1407703,0.14449762,-0.27704218,0.30995825,-0.087172285,1.2710466,-0.07703965,0.17878053,0.04757633,0.47720656,0.13369791,-0.11652807,-0.026934918,0.44944814,0.4569597,-0.017861502,-0.6994508,0.19848628,-0.41964895,-0.4070376,-0.22375576,-0.4266952,0.0022751584,0.21586165,-0.37352005,-0.15922198,0.028458336,-0.2619252,0.3737166,-2.9559078,-0.20453134,-0.27868053,0.22585592,-0.42556548,-0.16574113,-0.041662596,-0.56618357,0.3149053,0.40462518,0.44072545,-0.52714103,0.52696186,0.3993838,-0.34891057,-0.11152234,-0.550858,0.016120581,-0.1331426,0.5116986,0.005499206,0.01523933,-0.15167674,0.18556575,0.6054857,-0.05224492,0.08054104,0.35324472,0.38063228,0.16751096,0.6367192,0.03893323,0.5538866,-0.28470477,-0.09304088,0.4074386,-0.21380974,0.12485719,-0.18091641,0.13712645,0.37392756,-0.42142394,-0.77461004,-0.61332977,-0.4365902,1.0956417,-0.34135222,-0.2849917,0.28587666,-0.015562689,-0.01011204,-0.051319584,0.527911,-0.0062532984,0.1753271,-0.67063314,0.25148654,-0.078017555,0.12753671,0.02371671,-0.07926772,-0.29218656,0.6620526,-0.023294313,0.55823374,0.22528337,0.25123295,-0.11707885,-0.38460648,0.06652727,0.8973904,0.32760534,-0.030315153,-0.049586814,-0.27908647,-0.049455322,-0.20857221,-0.01966116,0.40029478,0.7148655,0.088712275,0.11331297,0.2680614,-0.14760101,0.014435971,-0.07336948,-0.18597268,0.047448363,0.0045050173,0.43627667,0.4513536,-0.09800631,0.4683663,-0.19563943,0.24342217,-0.07638005,-0.47775823,0.6152923,0.5470623,-0.162008,-0.12777098,0.36207595,0.49670723,-0.35244772,0.4134604,-0.65351725,-0.2699564,0.7331949,-0.28607315,-0.3651612,0.17284772,-0.19610034,-0.0022698115,-0.7727821,0.27268198,-0.38681042,-0.3784616,-0.4019045,-0.21642078,-3.743237,0.14747682,-0.23800892,-0.23504601,-0.08058852,0.09975662,0.28856444,-0.6203916,-0.3070912,0.08258778,0.21568263,0.46829468,0.07684914,0.07420307,-0.24319753,0.008296132,-0.16626999,0.17441264,0.033062823,0.18115325,-0.146376,-0.45469904,0.05805111,-0.12861082,-0.52133965,0.17027421,-0.25789398,-0.4104889,-0.1629853,-0.39315864,-0.1754057,0.5908814,-0.276923,0.06620381,-0.22792244,0.07540143,-0.13707034,0.2140251,0.09375409,0.2259465,0.13727006,-0.08045605,0.057857715,-0.5039713,0.45310792,-0.015505322,0.39646846,0.18330856,0.028730523,0.13416924,0.35299557,0.4694435,-0.16674128,0.7912158,0.4190895,-0.11040533,0.28188077,-0.27531078,0.009229843,-0.53472656,-0.46739027,-0.053030476,-0.33566356,-0.6623628,-0.07483677,-0.3479758,-0.73186547,0.48368803,-0.090377316,0.32455465,-0.061142493,0.2556689,0.34860978,-0.18726638,0.06264604,-0.17610775,-0.156239,-0.4870358,-0.3393852,-0.6057992,-0.509457,0.08449575,0.7715564,-0.25158894,-0.07145516,-0.30354357,-0.24137735,-0.019717686,-0.08067863,0.13273266,0.3863913,0.2392708,-0.12495964,-0.60199434,0.52188814,-0.16805449,-0.09283056,-0.5195217,0.057031635,0.58226043,-0.5490984,0.54251635,0.25269046,0.07613124,0.09080979,-0.37136292,-0.15464675,0.034479737,-0.27342582,0.4883182,-0.02913713,-0.73683137,0.44267598,0.2148376,-0.40270606,-0.7130211,0.30512607,-0.03154402,-0.33772972,0.023617804,0.23222195,0.116335556,-0.06909864,-0.27045655,0.08772605,-0.4073944,0.17476118,0.18070412,-0.026116157,0.3304155,-0.1667719,-0.2709538,-0.6715969,-0.015945021,-0.42754623,-0.18827543,0.2743288,0.021064132,0.06730814,0.12146797,0.03209551,0.388184,-0.04986791,0.15113685,0.15241644,-0.3200037,0.22431228,0.41994068,0.23550373,-0.45793232,0.46932092,0.08354974,-0.22744098,0.0121905245,0.050679415,0.46250182,0.16538633,0.28241226,-0.13125369,-0.18610346,0.53156304,0.70979106,0.17467283,0.42566532,0.18803053,-0.25780845,0.37647605,-0.018784083,-0.021515526,0.121251695,-0.3934997,-0.080593415,0.11825232,0.22618905,0.5018752,0.344609,0.44536796,0.026636595,-0.15135156,0.048541993,0.29858637,-0.06841543,-0.8558382,0.32748425,0.26562658,0.81563354,0.3115024,0.028938452,-0.21528654,0.6308352,-0.2679245,0.08168381,0.37333533,-0.10437343,-0.50655264,0.6866937,-0.6122785,0.42236742,-0.1969662,-0.13150875,0.049354583,0.18633491,0.2736512,0.76714987,-0.1266278,0.04860316,-0.073779464,-0.22883612,0.078441694,-0.2544554,0.07379083,-0.34890652,-0.34736723,0.55803007,0.30008298,0.21382557,-0.09503891,-0.04201095,0.0006711869,-0.14171284,0.2451244,-0.111439675,0.0696787,0.06117414,-0.6004842,-0.31405166,0.4348439,0.024286166,0.24234547,-0.06909065,-0.22274333,0.047423147,-0.25999415,-0.017522208,0.02348959,-0.5229406,0.023870446,-0.0061499653,-0.4561833,0.40994942,-0.3455113,0.15584555,0.18659317,0.0039429157,-0.3233569,0.22193839,0.1012437,0.73489875,0.04045197,-0.20574951,-0.48337364,-0.012060192,0.271158,-0.26543447,0.11173094,-0.42081878,-0.03786474,-0.5856384,0.6127478,-0.16951638,-0.32303938,0.23420732,-0.28942013,-0.044190325,0.6242663,-0.157999,-0.15543534,0.19569753,-0.16896504,-0.38028708,-0.032846842,-0.298475,0.19131619,0.21374424,0.09352708,-0.10769744,-0.1543342,-0.059739042,0.5268839,0.10725298,0.37597102,0.15593913,0.059961677,-0.23729862,0.009245473,0.19020994,0.3235762,0.25275564,0.034760293,-0.31250083,-0.44699726,-0.25780463,0.11902896,-0.042709477,0.20271191,0.03818682,-0.42556947,0.744458,-0.04382618,1.2170621,0.2145637,-0.19561616,0.06546351,0.40956587,-0.008368085,0.16343959,-0.42691883,0.6763338,0.6521657,-0.016866338,-0.098490566,-0.30016506,-0.09931912,0.3059166,-0.33246517,-0.018612504,-0.004026816,-0.556497,-0.47384048,0.19669542,0.16554415,0.09801392,0.035966065,-0.11927511,-0.053268902,0.038453877,0.4745786,-0.53074735,-0.172418,0.16961718,0.1501661,-0.06641011,0.12638173,-0.32991543,0.5355024,-0.5883733,0.08747729,-0.28119275,0.023430975,-0.12757318,-0.23374093,0.1561392,-0.07532205,0.36630872,-0.18801716,-0.5029967,-0.022851668,0.5694704,0.091357134,0.22550967,0.67788035,-0.27404168,0.11011348,-9.9185636e-05,0.52894884,1.2314218,-0.40938288,0.05811813,0.2562301,-0.4039621,-0.6229368,0.43374118,-0.21983974,-0.045810614,-0.108904086,-0.4880916,-0.2554925,0.36410922,0.10245361,-0.035526562,0.10289311,-0.5019479,-0.26784086,0.39853516,-0.3702648,-0.2990614,-0.18251832,0.4374742,0.7116259,-0.372687,-0.24642193,0.069137335,0.40147278,-0.3457411,-0.3666892,-0.02177916,-0.10328949,0.3968439,0.16343737,-0.121069625,-0.017504832,0.24176347,-0.35234588,0.17327486,0.16591746,-0.44327316,-0.05843892,-0.047550373,-0.13372326,0.7871533,-0.1929488,-0.13742508,-0.73592275,-0.41333362,-0.9261804,-0.5908947,0.38292584,0.1399237,-0.0034239152,-0.30145752,-0.06225708,0.007347696,-0.025187591,0.004032135,-0.56643414,0.2692199,0.09785592,0.5832443,-0.19856274,-0.7664836,-0.053394362,0.15267862,-0.14725792,-0.6551251,0.54252696,-0.12639314,0.79422337,0.023968395,0.01826171,0.12584718,-0.36921456,0.14503877,-0.41647217,-0.26311943,-0.8675416,0.16711934,359 +10,0.4061044,-0.11393451,-0.51231676,-0.28111187,-0.4842675,0.012623429,-0.30313617,0.2578685,0.21295628,-0.21146104,-0.21540451,0.06981294,0.05174367,0.26644385,-0.11058598,-0.66882914,-0.01661117,0.18920717,-0.7282622,0.5507897,-0.5121731,0.29677728,-0.008467366,0.34098825,0.12748054,0.4814534,0.14040048,0.061056823,-0.12866873,0.054992314,0.00921572,0.34314233,-0.5812936,0.09023236,-0.19282486,-0.28040624,0.024665605,-0.31628257,-0.1732033,-0.6613978,0.06416743,-0.8434659,0.5332183,-0.15642202,-0.19171108,-0.08838757,0.41776377,0.52229005,-0.37875745,0.17061235,0.25930566,-0.27500725,-0.1384382,-0.33470076,-0.0799726,-0.5510041,-0.5021815,-0.09909784,-0.76861906,-0.3270473,-0.21611217,0.2179231,-0.23589201,-0.03412286,-0.14907998,0.24279982,-0.5138257,0.09462898,0.258486,-0.08980951,0.22273172,-0.4448903,0.036652397,-0.12528878,0.36677355,0.015453931,-0.20733058,0.40959558,0.258497,0.39911357,0.2996641,-0.3077097,-0.30964178,-0.19888012,0.28783795,0.24590215,-0.10612127,-0.101977415,-0.40298247,-0.01032459,0.42907742,0.4490619,0.07007766,-0.15888268,-0.07911668,-0.09452296,-0.104978524,0.47401962,0.44787928,-0.23721807,-0.2681291,0.31159145,0.6238579,0.24245605,-0.43263984,0.056601062,0.0059980643,-0.4320399,-0.21121132,0.16134945,-0.09184896,0.39037928,-0.1656937,-0.019818993,0.9187886,-0.18480277,-0.0007286668,0.018304924,0.11502326,-0.15275495,-0.24018657,-0.12607448,0.067657344,-0.6266468,0.00255722,-0.2376153,0.52960634,0.049719706,-0.62773514,0.1718708,-0.53558016,0.20811583,-0.09231615,0.6605573,0.7611679,0.53684247,0.28127453,0.6904879,-0.11791151,0.26432934,-0.1458474,-0.4295142,0.14885002,-0.2921822,0.09774321,-0.53426516,0.07059892,-0.24959329,0.028615776,0.08032592,0.51238775,-0.48905876,-0.018360615,0.1994623,0.77709585,-0.40427917,-0.0344261,0.62612,1.0856283,0.9846751,0.007936706,1.2040962,0.3911581,-0.15008682,-0.008312281,-0.4186182,-0.46300253,0.14449944,0.36032286,-0.17669374,0.3947639,-0.11065855,0.093758054,0.31189036,-0.48974812,0.10384517,0.036975436,0.41259772,0.083907396,-0.11200631,-0.33854955,-0.06325908,0.14611787,0.0751973,0.17217535,0.24184474,-0.29957658,0.3845855,0.026323633,1.3726131,0.049095202,0.036055487,0.0752185,0.57609314,0.29795814,-0.136452,0.082499005,0.52064145,0.24625222,0.0015972572,-0.5721853,0.20697062,-0.34336966,-0.47361407,-0.2318593,-0.4709165,-0.10968668,-0.07302517,-0.40360045,-0.17650315,-0.08002027,-0.23996174,0.36952156,-2.5850625,-0.23029317,-0.08802398,0.3974704,-0.17296861,-0.20812844,-0.08547764,-0.53868306,0.2966116,0.30158436,0.4281463,-0.56862015,0.5928972,0.611613,-0.5128117,-0.07181012,-0.69738936,-0.17767376,-0.1292264,0.5160482,0.054544274,-0.054958396,-0.10638099,0.32434055,0.6876554,-0.092849106,0.20282693,0.5335442,0.24012358,-0.00094933016,0.5904138,0.11435691,0.52731246,-0.19015156,-0.2558199,0.35665008,-0.3050335,0.23607355,-0.06790823,0.008538804,0.60480034,-0.42311174,-0.9357032,-0.5554297,-0.2645564,0.9790867,-0.41325647,-0.48037955,0.12404747,-0.21613492,-0.19105367,0.09981069,0.53939,-0.17411993,0.25213584,-0.7872996,0.150676,-0.07163777,0.24585775,0.0040910053,0.078942716,-0.32927138,0.69254065,-0.12863988,0.63424414,0.1720143,0.23513177,-0.21658082,-0.39174855,0.16919926,0.90427196,0.42433333,-0.11324833,-0.23182958,-0.33998275,-0.058009386,-0.17360622,0.12781943,0.4763272,0.62978506,-0.15032086,0.28217012,0.354662,-0.15116796,-0.09138701,-0.23182446,-0.15529881,0.0379063,0.14080516,0.49194145,0.844854,-0.16179584,0.45479083,-0.2371155,0.38325593,-0.04125734,-0.6566228,0.5574353,0.39216006,-0.19523917,-0.15077828,0.64540106,0.5179726,-0.42363238,0.58650523,-0.759185,-0.30678785,0.65751946,-0.1144749,-0.29112646,0.20004569,-0.36657974,0.2596936,-0.745513,0.37511775,-0.30580184,-0.36958963,-0.5181489,-0.25615963,-2.9341998,0.073697746,-0.07004651,-0.13457693,-0.30623677,-0.079535894,0.24659608,-0.6653886,-0.6661518,0.029912269,0.16194107,0.5763383,-0.07629565,0.058976356,-0.22696744,-0.34461856,-0.14380087,0.29241252,0.06603287,0.29771462,-0.23005639,-0.58223903,-0.058157165,-0.12813558,-0.61761904,0.080288395,-0.42750955,-0.3998325,-0.09088826,-0.48207957,-0.16354366,0.51942784,-0.27197483,0.031169927,-0.3365564,-0.025001705,-0.107233495,0.1856731,0.28291705,0.18201691,0.2627531,0.050964385,0.04447355,-0.36949894,0.31787166,-0.11137869,0.32264867,0.17828687,0.03778121,0.26637965,0.45792955,0.549375,-0.29607368,1.0049539,0.33497226,-0.11896173,0.23555453,-0.3041763,-0.3314069,-0.64071137,-0.3654363,-0.22890483,-0.43519875,-0.47368297,0.054134592,-0.35510153,-0.8676001,0.6590142,0.02046273,0.3375531,-0.21592711,0.2631365,0.40791008,-0.11426443,-0.16869698,-0.038912747,-0.3031381,-0.5112066,-0.39865866,-0.69475627,-0.5120005,0.083192386,1.0337185,-0.32225126,0.077855885,-0.01894554,-0.23063906,-0.03139263,0.18103631,0.015318267,0.24591163,0.42227054,-0.03377362,-0.62717265,0.37917703,-0.013939507,-0.05953593,-0.46648183,0.050413404,0.6307879,-0.7642396,0.54438776,0.38771325,0.0944391,0.030100612,-0.5864343,-0.09349978,-0.10304125,-0.22952046,0.5551653,0.2269155,-0.74185216,0.54670423,0.13921508,-0.35726935,-0.6990462,0.37195942,-0.14875038,-0.31186378,-0.018242078,0.2804451,0.099979684,-0.08130947,-0.32299536,0.20822367,-0.3747748,0.27877185,0.37469044,-0.14417572,0.3126121,-0.15953523,-0.31484357,-0.7416722,0.04028535,-0.4973704,-0.3182289,0.1831014,-0.0668067,-0.0905757,0.20524803,0.07775897,0.30690905,-0.22354788,0.059304498,-0.051411103,-0.32976636,0.19563878,0.48240638,0.3980979,-0.3645713,0.55140954,0.20182383,-0.20181015,-0.00085160485,0.028622834,0.398581,-0.078267306,0.42032507,0.027026042,-0.12367565,0.4058581,0.48008996,0.21507514,0.48147702,0.14295956,-0.27160996,0.3479348,0.021263689,0.10700786,-0.10134249,-0.36774424,0.099227585,-0.17688325,0.1858419,0.46733183,0.3680123,0.4458945,0.08688447,-0.056731038,0.08493589,0.24022831,-0.107938714,-1.5752206,0.31743094,0.34849602,0.79497737,0.4567657,0.18685006,-0.20003772,0.6184456,-0.47592023,0.041341275,0.50976616,0.09975618,-0.3621507,0.7403251,-0.6943228,0.48422655,-0.13775851,-0.07908985,0.09192805,0.15232491,0.4422714,0.9208973,-0.12230468,0.13951345,0.015277766,-0.2551064,0.17603509,-0.24775477,-0.046401262,-0.42126232,-0.3784545,0.72538215,0.2512027,0.4138624,-0.18523057,-0.053911045,0.03806082,-0.32431895,0.28067684,-0.07988324,0.05319924,0.080248505,-0.28282252,-0.28705856,0.44065025,-0.15594558,0.118836306,-0.016963854,-0.35104448,-0.00661147,-0.09788628,0.09915839,0.045855295,-0.58977115,-0.111792006,-0.09282665,-0.4845972,0.59748936,-0.269551,0.062150605,0.16302884,-0.027720852,-0.2637024,0.20972522,0.0748383,0.5609723,0.087871775,-0.2501412,-0.092570744,0.035750583,0.33604407,-0.3070217,0.15523833,-0.3358289,0.20261894,-0.6340395,0.54436654,-0.17290433,-0.51374125,0.18098472,-0.2660676,-0.047007933,0.3883885,0.014362363,-0.31698993,0.12058345,-0.15434498,-0.35823086,-0.1407453,-0.34277987,0.20460075,0.08296888,-0.10944772,-0.19088042,-0.10103217,0.06353102,0.5873337,-0.059599113,0.42136765,0.29428184,-0.07246484,-0.34728914,0.14390399,0.21841791,0.35141373,0.046976924,0.15066902,-0.28660032,-0.39545086,-0.3427853,0.29485434,-0.23731677,0.14315043,0.16019782,-0.26598418,1.0523114,0.0035301237,1.2981788,0.117401965,-0.41041943,0.12801956,0.4144492,-0.1124832,0.13051589,-0.38249475,0.84356755,0.6417418,-0.16864349,-0.10678876,-0.5251222,-0.14859538,0.28419444,-0.36183152,-0.21720812,-0.06918398,-0.6511346,-0.4490503,0.21292919,0.17953622,0.20885971,-0.052211236,0.002896905,0.15891762,0.14132826,0.2754149,-0.5980054,-0.17819656,0.2602692,0.2279067,-0.10833044,0.17307441,-0.4535743,0.47042012,-0.61472476,0.09639828,-0.32580617,0.19003327,-0.2731299,-0.43666464,0.18406975,0.018735433,0.29557183,-0.27277017,-0.43338045,-0.073111095,0.49398625,-0.044755157,0.22425807,0.60835826,-0.3440987,0.059195366,0.010035094,0.40694317,1.2915965,-0.44248322,0.032216955,0.3657741,-0.40470248,-0.7105464,0.33215243,-0.4677832,0.014163305,-0.083933696,-0.61981356,-0.4320001,0.25601447,0.0052552433,0.056549057,0.09636813,-0.39283448,-0.003875473,0.31593665,-0.24938115,-0.16803864,-0.09596125,0.24154495,0.6898974,-0.36657307,-0.27471572,0.1137318,0.32644367,-0.3206656,-0.30894315,-0.052648015,-0.05427259,0.50479233,0.013074647,-0.28773728,-0.012803011,0.16326806,-0.4153854,0.022838509,0.53439444,-0.26386106,0.056894284,-0.3614373,0.051178467,0.8943249,-0.20342968,-0.12566167,-0.4779346,-0.49061045,-0.8627881,-0.3990478,-0.012246931,0.13605301,-0.056522045,-0.4145426,0.0334516,-0.22994877,-0.16839908,0.14227617,-0.552524,0.42436072,0.20186548,0.3443934,-0.2471679,-0.9951091,0.05944984,0.082710184,-0.1530291,-0.64050215,0.7691258,-0.26668045,0.75863683,0.13751812,-0.06265838,0.0007702708,-0.4697513,0.1825099,-0.31148994,-0.010389875,-0.8409211,0.029594835,381 +11,0.44850278,-0.18615955,-0.47189382,-0.11289778,-0.4705565,0.04662679,-0.31288883,0.2199559,0.3078071,-0.23867658,-0.07725166,-0.041361924,-0.0035764417,0.1872627,-0.075739324,-0.6674762,-0.31074917,0.12983496,-0.905875,0.5893266,-0.5307893,0.33420536,0.11905865,0.27867943,0.2177006,0.4295022,0.16524425,-0.14265999,-0.17439362,-0.051729593,-0.17848828,0.24137707,-0.5864043,0.11965025,-0.151284,-0.27927506,-0.007255719,-0.42299628,-0.29898226,-0.6781657,0.042435814,-0.81880563,0.49511236,-0.13417816,-0.1324631,-0.10190773,0.16989702,0.40412927,-0.4815468,0.18244435,0.33608562,-0.21928768,-0.1650399,-0.2603918,-0.0011993436,-0.46529365,-0.4748617,-0.13358296,-0.62649345,-0.19733918,-0.08680555,0.26590887,-0.24774796,0.022912113,-0.21883292,0.33745137,-0.46703044,-0.03845015,0.22098714,-0.189354,0.1926245,-0.550426,0.0751438,-0.12469187,0.46673304,0.024654543,-0.22434828,0.34662756,0.30009627,0.39739764,0.33031026,-0.36446565,-0.26248452,-0.1282128,0.18643644,0.34915763,-0.16008443,-0.28845727,-0.26348746,0.037764892,0.40574175,0.15732917,0.024628485,-0.33320054,-0.021999916,-0.08189296,-0.17756031,0.5060511,0.48129058,-0.29700625,-0.2932208,0.3217926,0.45959926,0.25889057,-0.243315,0.07559967,-0.017607044,-0.4371919,-0.09472603,0.29718006,-0.010385182,0.37736213,-0.16617101,0.11461225,0.70250756,-0.06495635,-0.044140853,0.02858771,-0.06172493,-0.09007179,-0.14035466,-0.09003679,0.16124749,-0.529999,-0.0014026866,-0.25611487,0.49352893,0.21569817,-0.6600466,0.39984584,-0.5468316,0.17539138,0.011585514,0.61662287,0.7678239,0.5196856,0.26635718,0.77729654,-0.24764243,0.23937404,-0.037610214,-0.40070784,0.055134606,-0.23464483,0.09374512,-0.5054108,0.13545197,-0.32426772,0.088069804,-0.028328104,0.31569353,-0.5203773,-0.11526553,0.11845225,0.75530154,-0.3200075,-0.073502764,0.74238956,1.1299605,1.017249,0.03989187,1.1700444,0.33239797,-0.28062072,0.012369475,-0.37920514,-0.5733849,0.1878802,0.36115837,-0.24445051,0.51920193,-0.19250631,0.059881665,0.34184787,-0.3978216,0.046032187,0.0076977294,0.2886994,0.098351926,-0.10245613,-0.28720757,-0.053100344,-0.023474878,-0.033795673,0.18381299,0.13990158,-0.31240445,0.3354133,0.06311555,1.3185148,-0.17307048,-0.052044585,0.108836286,0.44748846,0.34788686,-0.18377681,0.04091949,0.4431361,0.4719998,-0.053155072,-0.61172205,0.22444797,-0.3834388,-0.35685566,-0.1529454,-0.24526155,-0.030214015,0.03255148,-0.38067633,-0.26301652,0.024210887,-0.3443657,0.38630196,-2.7138574,-0.23110847,-0.15627086,0.2393653,-0.31265318,-0.2538047,-0.10840759,-0.6015012,0.26383138,0.16488871,0.4456918,-0.6518197,0.5958545,0.5241016,-0.6029582,-0.1493484,-0.63721454,-0.056361888,-0.013619703,0.652711,0.0281058,-0.22985727,-0.11034473,0.15846097,0.61673397,-0.016401151,0.19968913,0.50827605,0.4106766,0.113984555,0.6603305,0.093446955,0.6262257,-0.26987004,-0.17864957,0.52512604,-0.34323284,0.17440446,-0.049078517,0.12790836,0.54622793,-0.4692713,-0.88812804,-0.5717738,-0.1684933,1.0593843,-0.39257646,-0.44035226,0.15858668,-0.05549123,-0.082127035,0.24544188,0.5239177,-0.025497572,0.08204786,-0.78117174,0.15119298,-0.07622467,0.24254936,0.105092615,-0.005957421,-0.28437933,0.6886941,-0.043612957,0.6066097,0.25701421,0.29921448,-0.1318579,-0.4754769,0.117095076,0.9808426,0.3812682,-0.046584226,-0.1648262,-0.25477734,-0.093351744,-0.16433077,-0.07492789,0.5921214,0.68150306,-0.08533921,0.1363836,0.3281152,-0.052180193,0.060498517,-0.21297573,-0.18710569,-0.06871122,0.13560237,0.33003584,0.7239896,-0.08488748,0.56367356,-0.14653845,0.33470327,-0.021819398,-0.6064267,0.73921305,0.78769547,-0.1968045,-0.12363156,0.41716394,0.42279777,-0.20907472,0.48707294,-0.6143084,-0.3379797,0.5898641,-0.20450707,-0.3188489,0.3634679,-0.30937073,0.2441095,-0.77109784,0.28009284,-0.35142976,-0.35985166,-0.47807553,-0.21131705,-2.8650527,0.07091489,-0.11714387,-0.12849179,-0.28398877,-0.1232149,0.3000586,-0.6477492,-0.5846475,0.1301206,0.2376571,0.490117,-0.06592057,0.14995787,-0.2847643,-0.14354466,-0.06598874,0.32222533,0.17805405,0.27495033,-0.18084161,-0.42200732,-0.13712938,-0.04291336,-0.48319322,0.070345685,-0.62027335,-0.39887148,-0.07999577,-0.539147,-0.16888677,0.5933167,-0.39948723,0.03965471,-0.25686884,0.08507141,-0.14522855,0.13489217,0.20825505,0.13442221,0.16378221,-0.07213887,0.05190827,-0.2126062,0.3082003,0.06614628,0.27189234,0.15255973,0.06258047,0.12846236,0.34749532,0.6619057,-0.2565214,0.96479136,0.3289158,-0.20476343,0.28718486,-0.2514552,-0.26237458,-0.68942887,-0.39802995,-0.13923436,-0.46264675,-0.5593873,-0.022644838,-0.31368256,-0.8960139,0.56890327,-0.019299746,0.31981882,-0.005574724,0.2240806,0.51010257,-0.09958397,0.062123775,-0.1299368,-0.18965551,-0.42145953,-0.33596587,-0.6658631,-0.43374568,0.10670881,1.0618092,-0.22343229,0.038801495,0.0041787555,-0.32526106,-0.020504935,0.066837914,0.1307739,0.29955584,0.44974816,0.085981175,-0.5630366,0.26511276,-0.1027361,-0.012871999,-0.4984868,0.17675227,0.6201545,-0.6806565,0.5763725,0.24339117,0.06511205,-0.008257256,-0.44365698,-0.1513923,-0.0148456795,-0.16182308,0.5434088,0.18189357,-0.6815842,0.49306214,0.23340058,-0.38948226,-0.7616974,0.32060555,-0.004243153,-0.20359749,-0.07268039,0.37405288,0.051079623,-0.08849813,-0.2701741,0.26117754,-0.34281024,0.27742994,0.1543677,-0.14395303,0.1338254,-0.0030642275,-0.5380242,-0.77138907,0.07662951,-0.4753336,-0.33939767,0.2616926,-0.04095672,-0.0068347314,0.0068185665,0.11138312,0.37917086,-0.27978593,0.15292463,-0.009575253,-0.19877058,0.23395334,0.5067097,0.20955731,-0.37348127,0.51442456,0.21282099,-0.24397977,0.06515188,-0.032141376,0.3069806,-0.011091302,0.28187698,0.066552766,-0.1021669,0.44450638,0.70694894,0.23447716,0.46197942,0.043127034,-0.23574734,0.32492948,-0.04495468,0.23128802,-0.07509234,-0.46951175,-0.040714614,0.12228959,0.21368907,0.3823551,0.3979584,0.31504938,-0.02377642,-0.15403435,-0.022134542,0.17704369,-0.04047605,-1.2571459,0.25886077,0.25357983,0.8990974,0.51438713,0.054459494,-0.16140929,0.6297848,-0.33439907,0.027081707,0.4199301,-0.115272045,-0.35401553,0.64816445,-0.49538836,0.26446924,-0.11661619,0.05144767,0.098383114,0.07417938,0.3434316,0.79448205,-0.22554962,-0.015686214,-0.1205235,-0.09528487,-0.04706725,-0.18711255,0.024964644,-0.3229282,-0.45712113,0.8085645,0.32634774,0.3838582,-0.23153555,-0.026867086,0.043292698,-0.17335795,0.1506573,0.03341879,0.013084833,0.12625182,-0.3573945,-0.28433162,0.5496987,-0.18919465,0.0063369977,-0.13140216,-0.2910187,0.026269468,-0.14469756,0.05674254,-0.08826785,-0.70834106,-0.04485536,-0.33089167,-0.45722002,0.40594476,-0.19448459,0.031201705,0.105604075,0.05678594,-0.1872273,0.29179332,0.15856016,0.66157085,0.06521997,-0.1795069,-0.28348175,-0.026631903,0.21555653,-0.22367087,0.039944388,-0.37347126,0.097813815,-0.6274057,0.60938096,-0.21692273,-0.44706815,0.17779142,-0.29153323,-0.022729432,0.5187334,-0.097213075,-0.2652567,0.31631458,-0.06862079,-0.4279637,-0.11670755,-0.27531192,0.27921644,0.36339098,-0.030958967,-0.08055015,-0.13315356,-0.246114,0.54560035,0.09994079,0.49194565,0.30188632,0.03626736,-0.24406901,0.07763881,0.3162621,0.46881622,0.21255884,0.053683367,-0.31767362,-0.40581036,-0.4032581,0.22636084,-0.1443828,0.19497137,-0.049755476,-0.3414156,0.90653473,0.047806762,1.2694826,0.0096569555,-0.44471636,0.01800333,0.5340503,-0.09775038,-0.047657162,-0.2842621,0.9398338,0.63034403,-0.06771942,-0.028923241,-0.42505646,-0.25836176,0.21716194,-0.32505876,0.008104911,-0.109330155,-0.592102,-0.38305223,0.2952732,0.08855552,0.027621578,-0.06454012,-0.041037798,0.048114788,0.07321078,0.25992203,-0.6984888,-0.2132061,0.1671459,0.15656538,-0.08353546,0.106823035,-0.42424372,0.34733927,-0.6492038,0.10498498,-0.38707605,0.11238603,-0.08562078,-0.22633988,0.19964266,-0.0533799,0.29038692,-0.43273112,-0.4572171,-0.2462519,0.49473304,-0.07384395,0.11544933,0.66034997,-0.31851202,0.15264976,0.19742054,0.62305486,1.1285734,-0.46506304,0.10832079,0.34454447,-0.42025805,-0.5510142,0.3248317,-0.3052591,-0.0588552,-0.032721065,-0.4515735,-0.49972612,0.3151249,0.1242058,0.18892823,0.15685214,-0.7280948,-0.09578427,0.35327873,-0.29656562,-0.17980956,-0.19358721,0.32409522,0.8489141,-0.38143045,-0.46695998,0.08535447,0.3074142,-0.27623746,-0.51230234,-0.10815842,-0.22327664,0.3373239,0.2441776,-0.15567577,-0.034227543,0.14468396,-0.5301674,0.07461586,0.33877417,-0.3454762,0.09184937,-0.11716638,-0.042598363,0.84810144,-0.22086407,0.027876012,-0.65251493,-0.43050814,-0.84154344,-0.4866996,0.100340426,0.17033891,-0.0043280404,-0.5152063,0.049822416,-0.2280817,-0.22015287,0.15395257,-0.6063627,0.4114996,0.11336633,0.53574765,-0.37398657,-0.9875928,0.044774044,0.22512172,-0.12486259,-0.60528517,0.67297477,-0.05548993,0.8269415,0.08282194,-0.0836622,0.0085278675,-0.4873591,0.06127034,-0.40013918,-0.05217778,-0.79783404,0.054251656,384 +12,0.44793394,-0.1494282,-0.46540242,-0.07423659,-0.16244462,0.21318494,-0.12557997,0.54064995,0.11332112,-0.4733925,-0.045416966,-0.10939525,-0.09131634,0.35143444,-0.12198211,-0.45723686,0.008526276,0.16327527,-0.6528274,0.51666814,-0.38718292,0.25523174,0.026681887,0.36292073,0.20546368,0.34626237,0.07131039,-0.21754017,-0.3344808,-0.0625394,-0.16578004,0.31314442,-0.4255001,0.06341316,-0.17611067,-0.21418813,-0.018207554,-0.4034848,-0.35136673,-0.6621596,0.11067505,-0.7758629,0.42992118,-0.077997066,-0.22498429,0.2926533,0.031320684,0.38103485,-0.26397842,0.054876726,0.16343725,-0.17816448,-0.024718424,-0.20774749,-0.21802972,-0.3901824,-0.41303462,0.043182407,-0.38444918,-0.22532117,-0.1902197,0.09069182,-0.28966913,-0.06038448,-0.14212401,0.2802012,-0.45422623,0.046404764,0.12898536,-0.09606999,0.08101102,-0.55932665,-0.08171847,-0.1608552,0.19179758,-0.15213734,-0.14744452,0.38414422,0.27070072,0.452445,-0.055614218,-0.074212365,-0.30787024,-0.068962544,0.12815148,0.45198178,-0.22682257,-0.48143286,-0.005244171,0.062261973,0.260841,-0.0040944815,0.11186896,-0.15881695,-0.13171272,0.017953781,-0.1989128,0.2045925,0.528377,-0.33113953,-0.34321055,0.4258009,0.43469024,0.111404076,-0.18737103,-0.050935812,-0.061911106,-0.42046702,-0.13957153,0.18259275,-0.09167723,0.34118828,-0.13526046,0.13949282,0.6285074,-0.20762923,0.076780915,0.02099533,0.025804698,-0.006549085,-0.098751694,-0.15781105,0.1077195,-0.22466092,0.044657994,-0.19349141,0.6270752,0.32323268,-0.6388776,0.36249495,-0.47644126,0.15803878,0.008791033,0.5046344,0.56324506,0.53813696,0.18784492,0.6256115,-0.32936192,0.16501561,-0.10396369,-0.27974415,0.115373924,-0.2616597,-0.034806896,-0.48188636,0.11731933,0.049475525,-0.19383638,0.077845275,0.3137089,-0.6340639,-0.05062917,0.08863096,0.83337736,-0.3213895,-0.1316674,0.6859959,0.8356136,0.73635244,-0.017780349,1.1255234,0.3196868,-0.3256797,0.26519865,-0.51095897,-0.5949452,0.24189793,0.24456558,-0.32598433,0.33713534,0.07163411,-0.1641987,0.25470352,-0.26301754,0.061703738,-0.27396798,0.038706716,0.10392377,-0.08391613,-0.25159004,-0.297865,-0.14546038,-0.02082655,0.17950882,0.26446527,-0.3153355,0.38318425,0.012599798,2.0231104,-0.064529754,0.014081001,0.026972791,0.47394493,0.14438544,-0.060811576,0.006604426,0.41874236,0.3399437,0.04494628,-0.4600637,0.13751984,-0.24800093,-0.57717466,-0.06241122,-0.40390444,-0.06779573,-0.026290867,-0.41556612,-0.14280383,-0.020559479,-0.23883645,0.40592256,-2.5994017,-0.14200792,-0.053549707,0.37782282,-0.27196306,-0.3379832,-0.32502288,-0.40768752,0.28656757,0.2917132,0.49574515,-0.62464803,0.40227303,0.22556248,-0.48342323,-0.13429631,-0.46307507,-0.058862742,0.0019214854,0.3398506,-0.06982119,0.057821717,0.18500814,-0.03884411,0.4564825,-0.14308444,0.044766538,0.28988335,0.38251796,0.17844823,0.3199956,0.0099327145,0.61292034,-0.28529286,-0.23913841,0.2955352,-0.39112988,0.23990479,0.049686972,0.12085522,0.32982904,-0.41571656,-0.8549779,-0.60741043,-0.061788775,1.2350107,-0.19472894,-0.27624562,0.18987083,-0.2007484,-0.2358654,-0.107364364,0.35347316,-0.08007469,-0.120114885,-0.78006774,0.0526217,-0.09517358,0.24356855,0.007596349,0.06941745,-0.3381768,0.6446506,-0.16913508,0.51677907,0.19039173,0.14096598,-0.047950193,-0.40234578,0.118477166,0.9414622,0.32535997,0.11664764,-0.110787325,-0.3453853,-0.2904678,-0.045902666,0.105688654,0.40039802,0.58223987,0.04059905,0.08763488,0.31150082,-0.060285266,0.046853367,-0.21857318,-0.27414328,-0.0871411,0.057619408,0.52995425,0.4200761,-0.27327392,0.51304454,-0.09021075,0.3573962,-0.046317108,-0.43304673,0.508943,1.037287,-0.2635072,-0.17474388,0.365402,0.4357003,-0.3567566,0.3538766,-0.5760376,-0.32995728,0.4408996,-0.22456595,-0.24339135,0.33265412,-0.28608397,0.16027416,-0.8623396,0.369879,-0.18594551,-0.36978403,-0.61187696,-0.00962466,-3.0172203,0.06532308,-0.17153782,-0.29862842,-0.06112643,-0.051836945,0.101112716,-0.6147979,-0.3001852,0.08850803,0.1307684,0.6510409,-0.032118745,0.034257684,-0.28884166,-0.3215524,-0.26933584,0.14051482,0.17267634,0.42439717,-0.09836896,-0.46213293,0.000537129,-0.20187327,-0.3054634,0.10807266,-0.62637836,-0.41290793,-0.19992292,-0.46739808,-0.24267124,0.62997866,-0.2918853,0.009428315,-0.19411844,-0.007451734,-0.13639925,0.19218731,0.07929872,0.12160462,0.10966602,-0.14686637,0.029920638,-0.2662778,0.25374737,0.10728369,0.32096684,0.49887815,-0.072340816,0.09803122,0.4777214,0.59125865,-0.13178603,0.76103836,0.39557457,-0.1574145,0.33246443,-0.38462642,-0.15343136,-0.48338076,-0.3150905,-0.0076148547,-0.3897082,-0.47988117,-0.054825854,-0.35734576,-0.7585861,0.42189723,-0.13177997,0.026724128,-0.050087158,0.3255669,0.5788189,-0.07821286,0.0448592,-0.2121205,-0.019773953,-0.47094333,-0.33891964,-0.5861697,-0.45328188,0.18566427,1.1690663,-0.22068843,-0.057301104,-0.0364038,-0.23399965,-0.044594914,0.04999838,0.088576026,0.15960406,0.4191388,-0.3196649,-0.59734625,0.41270345,-0.22823967,-0.2105391,-0.48157126,0.22386289,0.6013329,-0.6376129,0.5396365,0.28524572,0.067419276,-0.06496304,-0.389851,-0.17729509,-0.049528927,-0.17337053,0.16719571,0.08807731,-0.60439575,0.40496644,0.3211966,-0.362072,-0.61581844,0.3866287,-0.041306537,-0.2771032,0.1029961,0.31987846,0.064853914,-0.058474038,-0.20921737,0.21668178,-0.41459802,0.27534795,0.2433744,-0.013445002,0.14688851,-0.1079545,-0.21519151,-0.6846241,0.12615427,-0.4280077,-0.3155024,0.26852873,0.1816003,0.25763714,0.0635826,0.048281994,0.38463345,-0.35172972,0.07612125,-0.064413235,-0.15996605,0.35820866,0.26613846,0.45448226,-0.53341407,0.5138694,-0.026852548,-0.21912098,0.045564614,-0.032699957,0.44572854,0.10878402,0.28425628,0.123835295,-0.27729496,0.35419926,0.74633306,0.2705765,0.528759,0.03537709,-0.30927086,0.30362582,0.10894987,0.10798758,0.038903616,-0.39140317,-0.044966474,0.071087584,0.14843139,0.39359525,0.10560279,0.37529022,-0.053635687,-0.19788165,0.031440966,0.16658486,-0.003787139,-1.0937774,0.34716478,0.16907942,0.76791465,0.30655527,-0.033484213,0.080851495,0.6582885,-0.22926442,0.119170144,0.23573625,-0.20261565,-0.62404037,0.42637858,-0.63758934,0.37919766,-0.015165462,0.04369452,-0.038658984,-0.028167684,0.33580488,0.7907121,-0.16634586,0.071699485,-0.0038514822,-0.26789448,0.04345793,-0.25405464,0.084071465,-0.5574502,-0.34248567,0.65978366,0.3797093,0.41852602,-0.14156422,0.03649678,0.05208122,-0.112468876,0.086552665,0.12463039,0.246678,0.008620973,-0.5677821,-0.20872939,0.5369245,-0.34343162,0.11430424,0.19928703,-0.32542923,0.2967151,-0.08833428,0.047900718,-0.12343707,-0.50195843,-0.019148178,-0.2547135,-0.36814034,0.29710722,-0.08132526,0.3148736,0.22343287,-0.029814979,-0.33247325,0.32815132,0.15136899,0.716302,-0.12701824,-0.3114965,-0.34377167,0.24557434,0.14491381,-0.30235344,-0.017331332,-0.14574051,0.09706193,-0.5011579,0.30541128,-0.028131071,-0.33758226,0.04960446,-0.19184792,-0.07957764,0.45618045,-0.12037799,-0.13199502,-0.1136154,-0.09417871,-0.32941073,-0.049708337,-0.13789979,0.22777021,0.21401526,-0.06451526,-0.10810919,-0.027232265,0.016480096,0.4323747,0.022757228,0.29140425,0.4420438,0.21139699,-0.20857659,-0.121846676,0.17467903,0.47002557,0.052882224,-0.0076241563,-0.3077058,-0.44358972,-0.3656969,0.17448285,-0.23223737,0.34797317,0.3081173,-0.4758468,0.71638834,-0.03497885,1.1674553,-0.01819394,-0.3151746,0.10596991,0.46938178,0.16033217,0.07764114,-0.33698916,0.9003211,0.52620494,0.051372312,-0.12602346,-0.35183096,-0.21068855,0.17954223,-0.19981611,-0.18124926,-9.8691264e-05,-0.5729617,-0.4106652,0.27722034,0.115467094,0.29016325,-0.053404324,0.116992906,0.23698534,0.10787417,0.13768283,-0.3773988,-0.34248534,0.2997682,0.16084455,-0.014719276,0.08996049,-0.40377885,0.34221253,-0.47733092,-0.0148239,-0.112540945,0.11340155,-0.045732904,-0.18728681,0.17403592,0.016805867,0.385646,-0.3995097,-0.28948787,-0.27783304,0.5175724,0.04106185,0.21129663,0.5537427,-0.24938262,-0.0026661789,0.11864993,0.50874835,0.96724373,-0.23379768,0.09379514,0.54973197,-0.27878258,-0.61383706,0.32627404,-0.19323914,0.11123926,-0.14630347,-0.32028997,-0.49381396,0.37172282,0.23167005,0.056491986,-0.03185257,-0.47981766,-0.14614141,0.39913845,-0.38303027,-0.2648517,-0.38648695,0.24063416,0.7094922,-0.36743748,-0.38337868,0.19805478,0.17532493,-0.23610777,-0.47872868,-0.16915046,-0.29980427,0.32349056,0.064778425,-0.17355537,-0.11166602,0.0077640363,-0.32842818,0.24520645,0.20167753,-0.38782835,0.08880678,-0.2863594,-0.014640967,0.84939957,-0.14697675,0.10566608,-0.5623397,-0.42037264,-0.75113386,-0.5257456,0.40822175,0.12607253,-0.060002193,-0.68243104,0.027512213,-0.028865432,-0.39794403,-0.06512493,-0.33839867,0.401029,0.08608997,0.14964488,-0.11009507,-0.74088115,0.22532184,0.041870333,-0.122671545,-0.5397228,0.4428882,-0.036583643,0.91306955,0.14571564,0.03336792,0.33487567,-0.37243515,-0.1775429,-0.2670408,-0.103786334,-0.6428684,0.03357805,497 +13,0.24929059,0.100198805,-0.6359823,0.06336234,-0.39375865,0.19247355,-0.3932277,0.09322749,0.22990336,-0.22637774,0.10555887,-0.03507271,-0.21170989,0.060398635,-0.10450687,-0.58358586,-0.0063702553,0.09707198,-0.5044861,0.8204946,-0.28739667,0.38981748,0.10359985,0.2290248,0.018032754,0.30346847,0.053861793,-0.112853095,-0.22866766,-0.23434651,0.029997062,0.11336242,-0.50181323,0.4210152,-0.11807372,-0.2139651,0.20059128,-0.28547877,-0.36282045,-0.6009009,0.13008477,-0.5558262,0.571407,-0.012492143,-0.27914196,0.2837855,0.10753058,0.15171887,-0.11463416,-0.007190417,0.23439586,-0.35195684,-0.3675967,-0.26745394,-0.40447745,-0.5136493,-0.58681154,-0.1806865,-0.6316184,0.039780706,-0.34296677,0.23236914,-0.37059814,-0.12103419,-0.12659353,0.2783639,-0.4671485,0.21833897,0.0431755,-0.12669516,0.08442101,-0.62622565,-0.08492398,-0.14297532,0.018993363,0.23545453,-0.061661083,0.3736341,0.087659806,0.42092904,0.1238243,-0.24253267,-0.37724525,-0.25361457,0.26648033,0.44971973,-0.16657531,0.08816618,-0.25924644,-0.13220519,0.45196614,0.34178713,0.119189054,-0.12958202,-0.039788958,-0.19322419,-0.34258765,0.3064684,0.47888178,-0.23988348,-0.0032771826,0.5151324,0.38824928,0.24251808,-0.3208393,0.1315194,-0.122778244,-0.267751,-0.2282436,0.10841309,-0.12783451,0.45654824,-0.037014686,0.22541498,0.54428846,-0.12587027,-0.027334943,0.00088702934,0.0066656647,0.14725052,-0.17207238,-0.1014524,0.21741147,-0.6415015,0.06598228,-0.25750983,0.5280139,-0.112104,-0.6708791,0.28751084,-0.4678278,0.035341073,-0.05900723,0.6118842,0.8170962,0.7197202,0.13730565,0.72927046,-0.30118334,0.09995299,-0.29736513,-0.12904319,0.2149537,0.108904906,0.11009978,-0.5359367,0.0049848137,0.02495931,-0.12149707,-0.06832054,0.5181213,-0.28126436,-0.2000185,0.1681523,0.798583,-0.28611267,-0.098578624,0.5543738,1.2183927,0.99345285,0.10004728,0.99623436,0.16452564,-0.06093657,-0.32479954,-0.18386838,-0.68097484,0.11734845,0.23689671,0.15585223,0.30000293,0.12017323,-0.07746272,0.41468582,-0.21480481,-0.15188599,-0.1651893,0.43469954,-0.04374467,-0.15593363,-0.27672338,-0.13689855,0.22847848,-0.028904347,0.18220603,0.43467715,-0.2004916,0.43619648,0.2760708,1.3150089,0.015135727,0.06973051,0.15320404,0.23766091,0.25118458,0.004203658,0.07233399,0.5706053,0.2302293,0.0071282326,-0.45619178,0.1520089,-0.23169495,-0.6544538,-0.07661866,-0.28658542,-0.12016626,-0.14717418,-0.2415749,-0.15667804,-0.14100367,-0.4515272,0.33156925,-2.8826807,-0.08990941,-0.122741155,0.1216688,-0.12793514,-0.19352229,0.056223925,-0.32124144,0.5171766,0.23608103,0.39561895,-0.4575896,0.5289791,0.56419635,-0.53659993,-0.07704265,-0.47476274,-0.25685295,0.00015930568,0.54269236,-0.10069496,-0.12687477,-0.101999834,0.18548043,0.5038511,-0.019953834,0.18062414,0.35828647,0.4179237,-0.20358375,0.28235716,0.0155307865,0.43215388,-0.16119839,-0.20558034,0.22862667,-0.30025297,0.5067069,-0.30155328,0.17098607,0.47278753,-0.2696577,-0.46583536,-0.30188045,-0.00045814234,0.99753255,-0.44531175,-0.557569,0.07612136,-0.22315487,-0.2030809,-0.014014209,0.3765373,-0.109638855,0.033121053,-0.61696106,-0.0058367183,-0.15152489,0.21663223,-0.050445676,0.19819185,-0.4336927,0.62952054,0.034805823,0.7465238,0.45685792,0.2266902,-0.29448605,-0.28975353,0.17725751,0.69734836,0.43511733,0.16599166,-0.3811908,-0.24908912,-0.00502958,-0.24186558,0.12243236,0.51272416,0.5491186,-0.12129774,0.14967945,0.2975053,-0.28840163,-0.16374265,-0.2223269,-0.2780041,-0.058522575,0.033653677,0.343632,0.74164623,-0.12839226,0.39718428,0.006686919,0.38934043,-0.19316293,-0.44286856,0.39458966,0.70139575,-0.26888466,-0.20112708,0.6629612,0.58276623,-0.07086956,0.5597805,-0.60038537,-0.35064954,0.457111,-0.05511122,-0.44433174,0.2161357,-0.38047057,-0.05271511,-0.7274078,0.2756793,-0.4058995,-0.5142778,-0.6876142,-0.067445196,-2.285068,0.1020991,-0.37324056,-0.15377155,-0.15870221,-0.13973399,0.21684068,-0.50632626,-0.6216202,0.23708293,0.3228939,0.38407052,-0.13146807,0.074673146,-0.22782937,-0.3831648,-0.10720442,0.3508541,0.0938743,0.10572018,-0.31121108,-0.50508726,-0.1651687,-0.025822453,-0.25236323,-0.023393441,-0.35001665,-0.19814093,-0.007323556,-0.2876103,-0.06388552,0.508397,-0.4510478,-0.065036766,-0.4153118,0.0056593698,0.1727875,0.09738278,0.07949446,0.17099422,0.0036118084,0.00079563435,0.039308697,-0.3458064,0.18680826,0.056446843,0.30431703,0.5253106,-0.030683728,0.05560581,0.5246072,0.50560385,-0.13550024,0.8375307,0.25949693,-0.27489656,0.325373,-0.15201043,-0.30387282,-0.6922307,-0.27808505,-0.050344244,-0.40772262,-0.45610526,-0.04180717,-0.35132927,-0.7961777,0.56717765,0.18900694,0.08368441,-0.18344986,0.42873806,0.3902621,-0.21998453,-0.030101446,-0.13623765,-0.23252569,-0.34055176,-0.36455074,-0.9697646,-0.36840636,0.12575614,1.1622884,-0.22594345,-0.19484234,0.2772524,-0.23380423,-0.09613633,0.16059518,0.22706708,0.2153256,0.2530143,0.20493867,-0.49962312,0.6092767,-0.0936349,0.07444882,-0.6109308,0.006202053,0.63524,-0.61394244,0.34095624,0.5690285,0.013470191,-0.13959771,-0.94287986,-0.13340022,0.038768977,-0.21455358,0.51270807,0.32219893,-0.79844,0.59390754,0.16786504,-0.23743178,-0.6889338,0.420534,-0.15125895,-0.2484525,0.0096690655,0.3727142,0.13805234,0.024419231,-0.13618736,0.24265862,-0.2550795,0.45200947,0.01098145,-0.2019444,0.26005092,-0.12717177,-0.25483927,-0.8495495,-0.022887178,-0.37524915,-0.333779,0.3703427,-0.018666046,0.10383773,0.13960662,0.1696175,0.4239613,-0.28564802,0.078929216,-0.20344256,-0.32560062,0.36793414,0.5015666,0.5464147,-0.25643215,0.5831404,-0.07107417,-0.10304952,-0.066161394,0.14369504,0.41925344,0.029079929,0.36773065,0.01660107,-0.10785832,0.10358122,0.7987857,0.23917353,0.26085785,0.15627606,-0.22821732,0.4302385,0.03856907,0.15681374,-0.020649128,-0.5603484,-0.06713239,-0.24342832,0.2201199,0.4893248,0.12016894,0.56775576,-0.1473287,-0.00962533,-0.02841939,0.07476667,0.17432228,-0.9052022,0.2656604,0.24771996,0.6950332,0.58511364,0.24529937,0.14321335,0.57574314,-0.35849193,0.01355408,0.45276356,0.016390625,-0.31020397,0.49548844,-0.6236972,0.2708492,-0.04730002,0.038461827,0.21573503,-0.0897062,0.49452108,0.9806104,-0.23209515,0.015548072,0.055020522,-0.35588127,0.06463657,-0.13210328,-0.07248683,-0.20199423,-0.40312257,0.62153184,0.3224924,0.31296474,-0.22978115,-0.05304584,0.21389598,-0.18325959,0.3264528,0.07033083,0.030886194,-0.14024904,-0.29142547,-0.3493011,0.6032973,-0.19043674,0.046220537,0.08361522,-0.14256081,0.18877865,-0.14431128,-0.2097801,0.13981174,-0.50187546,0.030039767,-0.2094897,-0.5327313,0.57703847,-0.000754977,0.08727817,-0.011370161,0.012083616,-0.13321303,0.28538626,0.10046307,0.46100268,0.17208512,-0.10428101,-0.04634845,-0.18019114,0.09174684,-0.26709098,0.050136693,-0.041059986,0.26173604,-0.84401584,0.3284883,-0.3911795,-0.34200278,0.053862456,-0.34107158,-0.0928156,0.2730254,-0.05072508,-0.20461711,-0.020962825,-0.13036129,-0.37468153,-0.4120107,-0.27378297,0.08796976,-0.11344877,-0.11093527,-0.17142677,-0.09213606,0.027123788,0.167771,0.033441186,0.06462873,0.20766917,0.08392343,-0.43927455,-0.12741244,0.2069542,0.4042102,-0.20388891,0.053523153,-0.23229116,-0.38685554,-0.31616092,0.34669754,-0.20170514,0.2302535,0.030808799,-0.3656367,0.975698,-0.05332233,0.9854407,0.046794683,-0.43783525,0.08521273,0.6293235,-0.02614212,0.19520298,-0.18326499,0.89390737,0.6435467,-0.023626955,-0.19472612,-0.5418208,-0.014810153,0.24926873,-0.3335628,-0.19564968,-0.0065989634,-0.55355865,-0.06770196,0.30229604,0.14000204,0.019239051,-0.13664791,-0.027519543,0.2017058,0.30953187,0.29171696,-0.61919004,-0.120150976,0.38705292,0.007113534,-0.0045850924,0.18843138,-0.4061833,0.28933555,-0.55972934,0.19445491,-0.3932372,-0.00652586,-0.06834152,-0.14997752,0.17120709,-0.002043584,0.26476288,-0.23420276,-0.33782855,-0.04649903,0.28681314,0.20355123,0.3678658,0.60866976,-0.16659792,-0.00036285556,-0.15028852,0.5030005,1.0824155,-0.37189186,-0.15313914,0.31856143,-0.35426965,-0.6580095,-0.023777338,-0.5206786,0.08702048,-0.010276135,-0.5335598,-0.35713455,0.25029984,-0.111870706,-0.021200605,0.07106398,-0.54333663,0.03304056,0.076969385,-0.26180243,-0.15213305,-0.109306335,-0.048046898,0.85725486,-0.2578981,-0.26332924,-0.0023934946,0.2601153,-0.34681404,-0.5499387,0.1988462,-0.27758178,0.24856529,0.122838214,-0.33707866,0.12823276,0.15396813,-0.4705222,0.018502962,0.47933656,-0.2704557,-0.042223725,-0.42253852,0.28021273,0.72620684,-0.14385945,-0.03161138,-0.2922527,-0.5433248,-0.6564266,-0.2879257,-0.06912236,0.13350002,0.0039337524,-0.57837534,-0.009694983,-0.2371548,0.009701473,0.004267959,-0.60856843,0.49335957,0.26384,0.2693206,-0.3339511,-0.87016565,0.04200284,0.056165185,-0.1563647,-0.4892957,0.5813343,-0.28389668,0.8988161,0.09493354,-0.05623954,0.09847184,-0.71379507,0.39653125,-0.40347278,-0.14520946,-0.5570829,0.06269128,521 +14,0.42676592,-0.092413254,-0.48785624,-0.18532579,-0.49393088,0.05026161,-0.32434678,0.21731278,0.13206774,-0.2815878,-0.11480349,0.05106269,0.044835076,0.3809694,-0.10602163,-0.671316,-0.10454391,0.18089648,-0.7452983,0.5316739,-0.5821596,0.3787261,0.16800027,0.32315433,0.115712516,0.4770876,0.38972086,-0.11526604,-0.08470085,-0.003648758,-0.099901035,0.25220823,-0.55620795,0.1495883,-0.1929217,-0.33831435,-0.0006710326,-0.23470223,-0.1437783,-0.63899004,0.12547311,-0.7687661,0.5664186,-0.10745035,-0.16482855,-0.023526588,0.39476764,0.4241861,-0.3325171,0.115881786,0.21050519,-0.2805153,-0.1452035,-0.38349593,-0.06050509,-0.5068851,-0.4111368,-0.10210258,-0.8031937,-0.38071543,-0.15293936,0.2394811,-0.28893065,0.05926438,-0.10590209,0.23979995,-0.47104874,0.0052037514,0.3020829,-0.22024852,0.2956889,-0.5068455,0.0039032907,-0.0684564,0.4745241,-0.020230126,-0.11917574,0.39716333,0.27585897,0.471385,0.33918297,-0.35743332,-0.25788662,-0.29331318,0.1298392,0.2775004,-0.15569475,-0.12149269,-0.2376948,0.026375918,0.4509596,0.4083951,-0.040469725,-0.1315305,-0.07646036,-0.09059179,-0.14505595,0.3608396,0.426311,-0.26683438,-0.34674436,0.20190766,0.53862405,0.13677311,-0.36050227,0.1429884,-0.084578745,-0.49871096,-0.19194373,0.1395971,0.08205213,0.35864955,-0.14608698,0.054346196,0.8822751,-0.17121363,-0.08674529,-0.06277293,-0.03225936,-0.16566628,-0.19360924,-0.019174652,0.03321722,-0.6015062,-0.040966094,-0.23751853,0.6543724,0.05275309,-0.6953696,0.27733764,-0.5230307,0.14049393,-0.0027369612,0.65101653,0.7356067,0.45853147,0.25007987,0.8025882,-0.27156994,0.22148682,-0.06496592,-0.40134788,0.104571454,-0.20385705,0.06580897,-0.5108701,0.19254528,-0.0688544,0.11362846,0.09370572,0.50268346,-0.5220926,-0.04278419,0.18698636,0.7575626,-0.35937622,0.0024781018,0.7236754,1.0131627,0.9712587,-0.0051591136,1.1416237,0.33902538,-0.17313747,0.019519437,-0.40863284,-0.4453477,0.13487844,0.4049013,0.114126794,0.4373541,-0.18205409,0.10997057,0.32764992,-0.3629634,-0.054970074,-0.0114370305,0.30119285,-0.007560935,-0.14624833,-0.40853047,-0.116095476,0.06900975,-0.011872313,0.10664476,0.29788375,-0.25130856,0.42530924,-0.09646825,1.4294958,-0.037341483,0.047602065,0.09029006,0.50023603,0.29748645,-0.07135147,0.063033886,0.46478468,0.36328694,0.008453194,-0.4993143,0.15985602,-0.36188596,-0.53444684,-0.19177583,-0.5547732,-0.10742122,-0.00855422,-0.40052766,-0.225772,-0.05357364,-0.31353232,0.30231082,-2.7720659,-0.21103045,-0.13244829,0.2633203,-0.26647827,-0.14900897,-0.10857344,-0.54118264,0.2853858,0.31773582,0.41883194,-0.5709442,0.62111056,0.50566477,-0.47896743,-0.13008225,-0.6261328,-0.12432463,-0.13020793,0.52347934,-0.03776696,-0.08270283,-0.076962724,0.33532923,0.761855,-0.0837527,0.17600326,0.44589496,0.3044799,0.07095089,0.5861697,0.0971655,0.50111467,-0.24875581,-0.22044098,0.4451689,-0.2102604,0.14454988,-0.076402694,0.021561485,0.45514172,-0.4533388,-0.9329871,-0.5785256,-0.19044554,0.94285494,-0.44992423,-0.4670104,0.19081448,-0.13578062,-0.07119005,0.14254193,0.46326408,-0.119530156,0.31389785,-0.66421473,0.17219158,-0.022354078,0.12235117,0.025981836,0.011338508,-0.31140572,0.6892806,-0.077214494,0.62628543,0.22784954,0.32650942,-0.18096225,-0.3303453,0.18047607,0.90160024,0.35382167,-0.07376243,-0.17504697,-0.39822942,-0.15470679,-0.22007407,0.08930296,0.41737628,0.6562028,0.022614345,0.2570336,0.29069212,-0.1731579,-0.0077639013,-0.1325688,-0.08990533,-0.00081767055,0.13540804,0.37716478,0.63177586,-0.07721125,0.50662243,-0.14737357,0.5034575,-0.08054373,-0.63345194,0.5947993,0.4281856,-0.18052399,-0.07651211,0.552412,0.59026414,-0.34146821,0.56295204,-0.7464294,-0.32602358,0.655177,-0.15365006,-0.32504478,0.2443444,-0.34007135,0.18035254,-0.7859254,0.21984488,-0.2470417,-0.3551035,-0.39935353,-0.3677726,-3.4313772,0.13572991,-0.097253,-0.11576462,-0.23737301,-0.058981992,0.31866282,-0.70285374,-0.510842,-0.0022698992,0.15743382,0.5901254,-0.039996658,0.07054987,-0.28631827,-0.29466945,-0.06592291,0.25426617,-0.010498965,0.24027407,-0.25267074,-0.53953326,-0.08480013,-0.109101236,-0.5583023,0.13214532,-0.42197537,-0.39379352,-0.13227497,-0.36571768,-0.20649588,0.59673476,-0.24101846,0.048182756,-0.28488135,0.017251585,-0.17744164,0.09562033,0.26035264,0.16802478,0.2123419,0.041567355,0.04377893,-0.3846132,0.33980414,-0.09879494,0.4304027,0.21972138,-0.018755361,0.19686921,0.43498605,0.41790238,-0.1682444,0.9448353,0.30418265,0.004421277,0.27957273,-0.2015519,-0.32129994,-0.7022786,-0.4579652,-0.2372742,-0.41746756,-0.45586595,-0.002583658,-0.35175645,-0.73978674,0.6961526,-0.03849848,0.36506423,-0.21476936,0.33201566,0.41001734,-0.2013696,-0.1261191,-0.050482597,-0.31507814,-0.44731444,-0.3146595,-0.7219419,-0.6169931,0.039563973,0.95748454,-0.33030513,0.029049776,-0.10593519,-0.10405994,-0.015523614,0.17302617,0.13203083,0.32409358,0.43894392,-0.0549025,-0.6937531,0.4939413,-0.1624617,-0.10040266,-0.40958494,-0.020801533,0.5034864,-0.72280777,0.45887688,0.3116215,0.13030347,0.16013591,-0.5459226,-0.051350325,0.047937654,-0.22792593,0.5072379,0.14897764,-0.7761903,0.5873137,0.16483569,-0.37398273,-0.6419937,0.33542752,-0.06775281,-0.32391235,0.025104284,0.3647251,0.124858916,-0.16317089,-0.18150128,0.17800036,-0.47381642,0.24935745,0.26145357,-0.057702586,0.3642935,-0.092510656,-0.38104108,-0.6747798,-0.055495467,-0.44062933,-0.31818917,0.100906976,-0.01640243,-0.047155954,0.19027698,0.001995788,0.3876452,-0.26542652,0.14701262,-0.022172824,-0.33777934,0.3270653,0.46835232,0.37834653,-0.32602787,0.51349425,0.15529835,-0.20475891,-0.025146568,0.04751921,0.3898799,0.030607501,0.43469906,-0.18822803,-0.15391193,0.5134518,0.5297598,0.19982211,0.36816403,0.08029195,-0.26779866,0.37683558,0.006213583,0.070502914,0.024609586,-0.3861199,-0.014976042,-0.03647158,0.18123727,0.47602105,0.30038112,0.41230634,0.106880456,-0.065659605,0.15306413,0.2034371,-0.17003058,-1.1982033,0.3441272,0.35734513,0.69183713,0.47244874,0.118127026,-0.22711046,0.6242628,-0.39130998,-0.0039217053,0.38269755,0.007973804,-0.32914072,0.8004637,-0.6300311,0.4937825,-0.1869059,-0.12611046,0.08515031,0.0571704,0.34911865,0.9435314,-0.09533269,0.118279174,0.054362837,-0.20437855,0.09172169,-0.22349863,-0.06968987,-0.31542614,-0.36942986,0.70617723,0.21896884,0.4235166,-0.18660723,-0.09136225,0.058775697,-0.23178254,0.28450677,-0.08886609,0.05814209,0.031083688,-0.3012902,-0.3389045,0.4874148,-0.012921256,0.16542695,-0.12820311,-0.36112148,0.036808643,-0.16382243,0.072348826,0.026205175,-0.5708141,-0.019105325,-0.21960768,-0.5161577,0.59363806,-0.3290762,0.18151586,0.13215786,-0.06627122,-0.23936269,0.15227424,0.031294398,0.5967126,0.11003257,-0.21647994,-0.12891541,-0.024994746,0.28972292,-0.30351895,0.0619145,-0.33851567,0.16323127,-0.63718694,0.4891613,-0.19629762,-0.4741138,0.22886604,-0.18752076,-0.015799837,0.4349718,0.06988022,-0.2281322,0.13568231,0.07405576,-0.3356396,-0.1203291,-0.32831043,0.2473905,0.08202448,-0.096917085,-0.12659006,-0.14303195,0.009071084,0.5130189,-0.014623187,0.39025858,0.18563387,-0.06553456,-0.2388835,0.17135644,0.22008084,0.33897176,0.10148146,0.10301774,-0.26817188,-0.4526284,-0.30624127,0.2143262,-0.18120295,0.17292397,0.08694731,-0.3063668,1.0454699,-0.025035521,1.1560079,0.07634526,-0.29601076,0.11087933,0.45163777,-0.06755044,0.14299114,-0.35614485,0.8487108,0.5914589,-0.20606922,-0.18039243,-0.36896336,-0.046132255,0.3625371,-0.43767968,-0.060983866,-0.07891343,-0.58480364,-0.4951641,0.21552481,0.16577867,0.14363071,-0.033433948,-0.039693784,0.100004785,0.077893436,0.36362973,-0.6579671,-0.16726822,0.25306445,0.24108899,-0.1579904,0.18404257,-0.45631382,0.49052772,-0.6671123,0.14810304,-0.42266092,0.09509012,-0.13470575,-0.43857467,0.16472319,-0.011613446,0.25497478,-0.27182114,-0.45628238,-0.046100155,0.52486014,-0.021525815,0.16737483,0.6864923,-0.35350284,0.084943116,0.042903025,0.41971254,1.2452444,-0.408714,-0.116912164,0.28569952,-0.43662453,-0.6193389,0.28262255,-0.4211526,-0.06382681,-0.15076624,-0.6623723,-0.3116979,0.30590096,0.13118306,0.071568444,0.12675111,-0.46768048,-0.0019315752,0.2841503,-0.28340152,-0.26635274,-0.12783222,0.34040084,0.72096807,-0.32390907,-0.20611098,0.03609228,0.3213023,-0.31230304,-0.47906342,0.0027013104,-0.15457757,0.46406594,0.049231447,-0.18415299,0.01619428,0.13956791,-0.37205294,0.12908186,0.5057578,-0.32553616,0.0027591656,-0.30784836,-0.08253807,0.84768057,-0.10981888,-0.14528431,-0.47580898,-0.4321211,-0.9088715,-0.5624868,0.11487756,0.15556903,0.02093191,-0.37331554,0.05764825,-0.08931253,-0.14563121,0.1920509,-0.5130823,0.39516348,0.11654767,0.47905603,-0.17382413,-0.9205907,0.0865462,0.13571306,-0.1510169,-0.6528585,0.6351069,-0.25267926,0.7705915,0.09579508,-0.08266172,0.074254304,-0.37435588,0.27099815,-0.3624497,-0.054985188,-0.8119465,-0.042681698,545 +15,0.47560525,-0.03147015,-0.6973079,-0.017983004,-0.44818884,0.051502824,-0.45488065,0.08987455,0.47042775,-0.30861896,-0.06596547,0.001147186,-0.20657256,0.20375805,-0.12961698,-0.71808743,-0.022514446,0.21531162,-0.5781877,0.73867923,-0.23422511,0.30232453,0.146813,0.17142752,0.09108105,0.16413349,0.19281127,-0.04504826,-0.21434021,-0.20240037,0.06654765,0.07050755,-0.5891724,0.39637172,-0.18470545,-0.2755135,0.014678528,-0.31276995,-0.24520268,-0.78848964,0.027155336,-0.540628,0.5980614,-0.01965922,-0.2621103,0.25064778,0.20786844,0.281924,-0.052408885,0.1372726,0.2114993,-0.5041313,-0.6543898,-0.23646733,-0.3691101,-0.59312063,-0.72485465,-0.062628746,-0.7061676,0.10805885,-0.3183087,0.2669026,-0.26894447,-0.076588504,-0.2798775,0.40057164,-0.40165302,-0.035615236,0.20552363,-0.12186791,0.11900536,-0.60915095,0.008030465,-0.0931811,0.21975307,0.22801831,-0.025206478,0.1665602,0.24594599,0.4659274,0.2640027,-0.42949098,-0.28467384,-0.12384701,0.22054254,0.2960034,-0.19607268,-0.089322984,-0.23052897,-0.08512642,0.60316175,0.257527,0.1644183,-0.21245655,0.018236423,-0.07641495,-0.31916428,0.2701876,0.4907512,-0.31092346,0.23470476,0.58473575,0.5597165,0.19156146,-0.25969827,0.20395383,-0.2137698,-0.4415063,-0.17564456,0.22260042,-0.12868585,0.4476059,-0.115229264,0.1720243,0.523652,-0.07820992,-0.15835914,0.15583318,0.0011633495,0.036470022,-0.10395998,-0.14794391,0.28010055,-0.54782754,0.01009683,-0.35214737,0.6609856,-0.13909848,-0.99735934,0.30047476,-0.36129445,0.15391675,-0.09450042,0.74198496,0.91838163,0.64114904,0.13863342,0.84876966,-0.27129427,0.24019794,-0.08934172,-0.36224002,0.081212536,-0.092714936,0.20002574,-0.53510565,-0.078041494,-0.21198559,-0.2605366,0.023758497,0.73937184,-0.46234578,-0.23190044,-0.072585724,0.54673445,-0.26596645,-0.080869205,0.79970163,1.1274352,0.9085395,0.13614799,1.1956025,0.34950328,-0.18803997,-0.31177986,-0.24295883,-0.57053983,0.18955123,0.29655853,-0.10953627,0.46274453,0.19111758,-0.048322216,0.3771398,-0.15086187,-0.17465644,-0.072004035,0.34995067,-0.15086827,-0.1930189,-0.31271476,-0.16967186,0.20241448,0.10937196,0.15511708,0.45040688,-0.21579516,0.54756534,0.23044121,1.1699305,-0.15168953,-0.1259282,0.05538548,0.2457132,0.30208293,-0.03160796,-0.13085072,0.29283684,0.3293595,0.0012370488,-0.520121,-0.070148505,-0.075726405,-0.5134673,-0.29451245,-0.23261245,-0.10665951,-0.31593862,-0.023094956,-0.13083732,0.025881747,-0.67459583,0.443074,-2.2367783,-0.079904795,-0.21924987,0.22509395,0.048919547,-0.29002023,-0.04973701,-0.41809735,0.6576406,0.35207248,0.45909628,-0.5475915,0.49425843,0.6143792,-0.65290713,-0.049683772,-0.70331526,-0.19414438,-0.062418047,0.50371605,-0.013691971,-0.30018896,-0.08105601,0.10689368,0.49257216,-0.12409945,0.094588235,0.50736964,0.33287922,-0.20512195,0.46547434,0.110778,0.5464901,-0.21924794,-0.23223658,0.44950712,-0.26139984,0.31671715,-0.3613764,0.06479794,0.3260786,-0.35857514,-0.75124645,-0.44619098,-0.06818227,1.3703598,-0.44746542,-0.63919693,0.3015201,-0.06443055,-0.18670107,0.21575224,0.37176442,-0.10504141,0.058972947,-0.782746,0.07491554,0.04644311,0.1362816,-0.0284188,0.116722114,-0.55231464,0.64150506,-0.18678555,0.6605447,0.53376913,0.36423028,-0.11412919,-0.36622834,0.15254574,0.989418,0.39811963,-0.0091367625,-0.24784896,-0.08718666,-0.105443574,-0.2458403,-0.044795606,0.44913247,0.6057685,-0.14172438,0.024198255,0.25921854,-0.320545,0.04561042,-0.29945126,-0.53372383,-0.104645446,0.1320535,0.53282815,0.68894255,0.062321614,0.46412602,0.03178216,0.37425047,-0.06759247,-0.61696273,0.5806178,0.95344555,-0.30628288,-0.19226576,0.69164556,0.30497208,-0.112502165,0.71970713,-0.59268796,-0.37846223,0.4267402,0.08029133,-0.37109876,0.31907046,-0.28799778,0.15879351,-0.9335851,0.22629467,-0.40535384,-0.5231566,-0.4199182,-0.06831798,-2.793774,0.2564342,-0.27186164,-0.053061217,-0.27361083,-0.14359808,0.14352301,-0.49154764,-0.71314013,0.03720078,0.25260478,0.41148207,-0.2101618,-0.0037388206,-0.21728723,-0.2901985,-0.07747385,0.33412188,0.00922208,0.12518084,-0.3123912,-0.4419194,-0.015102534,-0.32673162,-0.25156093,-0.19881174,-0.6231944,-0.100730866,-0.108068526,-0.3785519,-0.26297507,0.5212236,-0.5159531,-0.038118653,-0.4848947,0.06531006,0.12833157,0.2255585,-0.15506482,0.16135442,0.27081937,-0.085473254,-0.17435484,-0.10838208,0.12591419,-0.03741798,0.31646398,0.4554743,-0.06523627,0.13758601,0.5324809,0.6365411,-0.1783604,0.972399,0.36632738,-0.25424266,0.2571074,-0.24444047,-0.27158198,-0.73469573,-0.31895995,-0.11905872,-0.36219057,-0.4384371,0.04121706,-0.23820063,-0.9563928,0.66850287,0.17287035,0.09945898,-0.06955314,0.47904384,0.46618962,-0.093976565,-0.08109139,-0.04124013,-0.4469822,-0.3789411,-0.24196005,-0.8426248,-0.49668452,0.027914003,1.2539164,-0.34338406,0.12064795,0.22043827,-0.24981162,0.14568655,0.21416841,0.11791092,0.20261227,0.22959732,0.26652768,-0.6940734,0.52728397,-0.15241627,0.10909804,-0.5511857,0.120350264,0.5815397,-0.6251058,0.2654412,0.5434356,0.018740233,0.042973604,-0.8193734,0.03854366,0.11102222,-0.16142032,0.64876384,0.2584021,-0.7365681,0.7517222,0.29126996,-0.23198262,-0.8663921,0.3453248,-0.00895767,-0.19909853,0.047616385,0.5035702,-0.0066501675,0.039474856,-0.29685113,0.08525609,-0.42932618,0.36315957,0.19916752,-0.13133824,0.11667152,-0.17256671,-0.24353532,-0.87783194,0.037711106,-0.48952332,-0.21295452,0.14700626,-0.10464911,0.01895148,-0.011245468,0.25467622,0.40578973,-0.4581243,0.20456298,-0.254053,-0.33865297,0.57291406,0.6570282,0.33964348,-0.30835977,0.5811881,-0.054600276,-0.17619905,-0.29357916,-0.04178442,0.45404172,0.01597815,0.46491027,0.29784086,-0.08216103,0.2622955,0.55550176,0.015942974,0.28108978,0.06618947,-0.3766124,0.26692098,-0.011591007,0.30212665,-0.2619247,-0.39689553,0.044653177,-0.052380618,0.23491888,0.45463014,0.19510372,0.51654446,-0.14534628,-0.1381347,-0.032367542,0.12417096,0.119962886,-1.1921638,0.44454905,0.34229487,0.45551798,0.6195428,0.16400482,0.06288576,0.6176848,-0.35976613,-0.010127324,0.36351186,0.0325109,-0.20822251,0.48101667,-0.83848345,0.15976626,-0.21821715,0.10407558,0.1946744,0.038144436,0.47911477,1.140504,-0.13136889,0.1251446,-0.1690301,-0.2178765,0.023605213,-0.19715926,-0.013534826,-0.25172243,-0.4888111,0.7314536,0.19565229,0.47853878,-0.20907891,-0.060155287,0.20923726,-0.18393838,0.53154933,0.100196056,0.038443327,-0.03314524,-0.3499062,-0.3915775,0.4970031,-0.16519794,-0.04029424,-0.08236086,-0.19458786,0.28778642,-0.16763283,-0.09745432,0.063463464,-0.5372299,-0.017687006,-0.30170727,-0.4412641,0.44681063,7.0761234e-05,0.13591138,0.021638975,0.15412505,-0.31139874,0.12011029,0.12147996,0.5214759,0.12499013,-0.2636462,0.15850182,-0.1993791,0.23013745,-0.29392824,-0.0016805495,0.031009983,0.2204865,-0.8613343,0.44966552,-0.44778365,-0.5868792,0.21708645,-0.3259887,-0.09307429,0.3383674,-0.24662542,-0.24848242,0.2011887,-0.031607658,-0.24767601,-0.40776,-0.2964941,0.046404988,-0.20520343,-0.18755344,-0.087365404,0.048215237,0.031075394,0.46342206,0.0054783155,0.114619404,0.3317016,0.060942803,-0.64723194,0.03135042,0.41723338,0.3238686,-0.09452014,0.12075138,-0.3772623,-0.2859614,-0.3113616,0.014444701,-0.26772687,0.21698664,0.023134083,-0.37543827,0.92347753,0.106301166,1.1053416,-0.04120299,-0.39465234,-0.04528474,0.43212593,-0.010110294,-0.030055916,-0.2065746,0.93358266,0.6457952,-0.12205187,-0.11124955,-0.677518,-0.20709473,0.32831907,-0.33456233,-0.12319805,0.0059102913,-0.7255068,-0.33719757,0.18275219,0.19546752,-0.118839644,-0.17957388,0.14187491,0.1823591,0.304635,0.019938175,-0.6507501,0.021578053,0.42506722,0.20259954,-0.19742173,0.089484826,-0.37652048,0.29201108,-0.6548643,0.16149779,-0.2649806,0.011285261,-0.058330283,-0.13071766,0.18529698,0.04436744,0.13177754,-0.21381193,-0.33673173,-0.01825995,0.3778883,0.18470778,0.24168046,0.79745317,-0.32485867,0.08523291,-0.07158032,0.54307544,1.26109,-0.27663323,0.04480583,0.2635982,-0.20911309,-0.5497701,0.10390734,-0.34260917,-0.10267792,0.02940462,-0.5590623,-0.5792249,0.11788026,0.10381246,0.036025852,0.13486485,-0.5053031,-0.11952311,0.24700715,-0.33017543,-0.16219305,-0.2790269,0.15736042,0.7253859,-0.44139746,-0.45727405,-0.036266,0.17274037,-0.31836954,-0.56777805,0.1396898,-0.18902677,0.2376617,0.16033697,-0.32472283,0.0028770426,0.21631493,-0.5841091,0.06674278,0.34357333,-0.2143159,0.09097528,-0.38222313,0.15837088,0.6618731,-0.19602175,0.10345902,-0.29904062,-0.67195404,-0.66181856,-0.3759067,-0.06158429,0.12446004,-0.020088743,-0.54992676,-0.061836347,-0.3041505,-0.1040032,0.1595319,-0.5075689,0.4427402,0.15703762,0.39831105,-0.303422,-0.92690456,0.20237292,0.0638275,-0.17351505,-0.39184213,0.4310794,-0.11993543,0.7721211,0.086476624,0.055803593,0.20394051,-0.80421466,0.31774005,-0.18285389,-0.14521965,-0.6387789,-0.04041505,620 +16,0.70064723,0.03196172,-0.5600981,-0.1201598,-0.4528486,0.16590343,-0.2846087,0.12375178,0.16846001,-0.4949941,-0.25429964,-0.032322228,-0.14931695,0.30787137,-0.2433725,-1.0043522,0.031971727,0.20179619,-0.56097084,0.9083022,-0.27853557,0.4413712,0.004151835,0.18092075,0.117273346,0.38423562,0.31495214,-0.077153146,-0.19240396,-0.19076797,-0.1771282,0.10412483,-0.62806076,0.39285052,-0.07169502,-0.21404617,-0.025908584,-0.37650633,-0.29166153,-0.8205381,0.33921388,-0.6620307,0.35515285,-0.009576626,-0.14640293,0.12109351,0.24918477,0.37368357,-0.12794551,0.06732195,0.094407335,-0.051769573,-0.2487551,-0.15016577,-0.27517384,-0.4448139,-0.6025376,-0.035360124,-0.5837659,-0.23209837,-0.3851025,0.3144384,-0.32167053,0.09748425,-0.17956926,0.7100479,-0.33480912,-0.004934118,0.22489013,-0.13253522,-0.030272746,-0.6800241,-0.079714425,-0.111037664,0.32566732,0.0061226278,-0.16105196,0.3181685,0.18977064,0.36317798,0.20251113,-0.39616698,-0.403652,-0.26305458,0.46457508,0.41871923,-0.0696267,-0.3101451,-0.33349627,-0.07199317,0.2394049,0.13013418,0.22892132,-0.31353837,-0.059651088,-0.23828869,-0.29493833,0.43771967,0.5326666,-0.31482503,-0.19001076,0.4028742,0.5298397,0.07391669,-0.10642463,0.06721366,-0.0406122,-0.4218461,-0.1226257,0.28902054,-0.07162102,0.443464,-0.12312157,0.084586576,0.5501091,-0.13823582,0.037549082,-0.004742377,-0.0008187925,0.09829908,-0.24175924,-0.14767027,0.23097734,-0.58551854,0.095650546,-0.28093642,0.8237668,0.15211649,-0.7207431,0.17186844,-0.5290132,0.14356975,-0.024262778,0.55640763,0.5802929,0.36671472,0.054074008,0.8154069,-0.27616718,0.16319782,-0.111089624,-0.2724113,-0.30657163,-0.07861019,0.035093315,-0.3675216,0.17458834,-0.092338845,0.008510401,-0.09886515,0.48625362,-0.47767225,-0.21181768,-0.096901774,0.85032225,-0.34346637,-0.12677236,0.9222973,1.0196292,1.1172035,0.012179377,1.1910275,0.20807356,-0.29129848,-0.30412814,-0.3646272,-0.5808327,0.3269567,0.3307874,0.13605164,0.34895745,0.044865478,0.002502508,0.19379127,-0.42375436,-0.06843343,-0.17344065,0.26614022,0.10201584,0.049965143,-0.3563134,-0.21815884,0.115757,-0.0064928234,0.2795913,0.13908976,-0.2957597,0.43800092,0.018384477,1.2915604,-0.0027479162,0.18349777,0.14068834,0.30283654,0.26676255,-0.091671355,0.019256985,0.291122,0.28668958,-0.14165367,-0.66300976,-0.009280878,-0.38711122,-0.42007688,-0.19536443,-0.33830357,-0.06158778,-0.06345229,-0.24555953,-0.16729605,-0.02488099,-0.31365624,0.43563506,-2.3530767,-0.14294323,-0.24441223,0.38790682,-0.32973197,-0.3496248,-0.102558464,-0.66409683,0.4042222,0.3040134,0.38693994,-0.32940584,0.39998627,0.4756005,-0.5688509,-0.025311517,-0.51892287,-0.09503921,0.028470907,0.5207633,-0.19037957,-0.03646469,-0.13568845,0.25920144,0.5313926,0.033186983,0.17208445,0.4697438,0.3131017,0.14703716,0.44433385,0.16493572,0.5128155,-0.357727,-0.08517127,0.40189323,-0.42962262,0.30017394,-0.19577213,0.032871354,0.4409315,-0.5687413,-0.6302592,-0.6244114,-0.40576428,1.0223627,-0.35388547,-0.5357576,0.16915685,0.1586044,-0.13340712,0.04792346,0.33584175,-0.04021444,-0.04141098,-0.6412935,0.07148427,-0.050660685,0.25732478,-0.04025192,0.071731225,-0.47331175,0.6684348,-0.18747595,0.5214801,0.24105161,0.4669199,-0.20845196,-0.58940774,-0.023579404,1.0948557,0.42713785,0.11820971,-0.27668566,-0.18813749,-0.4387394,-0.19093956,0.0305542,0.59776646,0.70253414,-0.024380865,0.0032468894,0.29208106,0.046000432,0.25552958,-0.19348322,-0.385216,-0.2852551,-0.16727054,0.5516993,0.43235773,-0.08829773,0.37869027,0.0033475512,0.3369871,-0.1562021,-0.37643552,0.52648294,0.97505635,-0.17745277,-0.37639645,0.63757277,0.5012335,-0.26156238,0.5928941,-0.6455379,-0.30998954,0.49634048,-0.12270281,-0.2565584,-0.0051917327,-0.40883195,0.13638805,-0.75061965,0.28200853,-0.310888,-0.56623775,-0.51520145,-0.13797906,-2.4329674,0.24527988,-0.22298521,-0.10240684,-0.19105798,-0.08799048,0.0040248563,-0.5696359,-0.6112703,0.18962288,-0.005513233,0.6810867,-0.24231847,0.19887595,-0.09483142,-0.0938186,-0.3563282,0.25416824,0.16500412,0.35134482,-0.096782684,-0.25865498,0.098441,-0.14793079,-0.43859982,0.11985631,-0.43422246,-0.46256495,-0.25170153,-0.5083138,-0.08594728,0.6492644,-0.31209666,0.14529556,-0.14860204,0.093777806,0.0035006755,0.24635208,0.034954954,0.32131818,0.20104353,-0.15457612,-0.14601451,-0.22675377,0.39884448,0.09989155,0.27889174,0.35260054,-0.12675022,0.17109576,0.3727533,0.5416809,0.07324015,0.8326472,0.19906494,-0.12261321,0.33440882,-0.2752795,-0.31826982,-0.57660544,-0.21945058,0.0070564044,-0.4266322,-0.48675033,-0.101201236,-0.36655474,-0.9289068,0.48573804,0.0021558404,0.27974436,0.05278915,0.21799017,0.43909228,-0.0834323,-0.030142546,-0.07036543,-0.06835872,-0.46257,-0.33616465,-0.5933229,-0.41665494,0.07496134,0.985273,-0.2534393,-0.16524296,-0.14434394,-0.27958763,-0.06565708,0.15077075,0.14765936,0.114241205,0.38287702,0.08706937,-0.6451417,0.558653,-0.123581074,-0.008263076,-0.41242126,0.16771685,0.49486586,-0.57244354,0.42119065,0.40489167,0.12698185,-0.09435709,-0.6916906,-0.055460073,0.0609062,-0.20248199,0.35914403,0.31441674,-0.65953773,0.36757022,0.05882942,-0.26708722,-0.9981393,0.54418766,0.07402707,-0.3569586,0.03333549,0.4781292,0.17564039,0.009234428,-0.21606557,0.15602306,-0.31318334,0.19872592,0.25883126,-0.07758802,0.35287803,-0.27722493,-0.4094282,-0.75162196,0.03726432,-0.6082902,-0.18420659,0.18702768,0.017693913,-0.0028209116,0.1914321,0.20666431,0.51176286,-0.25060707,0.071506344,-0.17404824,-0.2376364,0.43741155,0.4385996,0.5849641,-0.45011458,0.6085068,-0.0152252875,-0.07780821,0.027230484,0.086961746,0.35375613,-0.010562504,0.4604364,0.17122082,-0.011726432,0.14357243,0.5558342,0.3195369,0.27328244,0.1653191,-0.41685048,0.39448944,0.050270945,0.2325879,-0.074816875,-0.53112763,-0.04557898,-0.11867672,0.07660314,0.4565028,0.17075932,0.41997153,-0.052094415,-0.21491507,-0.0018918654,0.0033673889,-0.18991928,-1.230463,0.2841208,0.07650088,0.8590729,0.50889826,-0.00092946785,0.07371509,0.47052464,-0.09966427,0.16612093,0.28588596,0.01733213,-0.2858462,0.35234985,-0.5121383,0.3384503,0.013108264,0.06764047,-0.039404258,0.122106984,0.38054284,1.0196729,-0.14941552,-0.012296864,-0.25416398,-0.26546282,0.32373992,-0.30882245,0.10667794,-0.4515355,-0.35494846,0.75687605,0.2820696,0.31234357,-0.0850332,-0.06598,0.15735295,-0.14668956,0.29282895,-0.010511138,0.0007645207,0.058235336,-0.5226741,-0.3707885,0.4709674,-0.32337537,-0.15051192,0.0706971,-0.10947653,0.06879533,0.045999873,0.020130789,0.04182305,-0.787026,-0.07433869,-0.20807609,-0.31965205,0.17603658,-0.2798955,0.16725239,0.15312926,-0.096453615,-0.4468757,0.20381029,0.30460364,0.54912704,0.09837154,-0.1887134,-0.37716293,0.00032605143,0.24351151,-0.37745285,0.2867546,-0.15795434,0.27782238,-0.7823373,0.53951603,-0.09843787,-0.33959344,0.059984587,-0.15460882,-0.21434796,0.4093583,-0.12805142,-0.09701259,0.11678242,-0.073895074,-0.076595485,-0.010496728,-0.20217018,-0.060326904,0.12284444,-0.15296666,-0.011302503,-0.021439258,0.016819883,0.4720428,0.08878775,0.3967311,0.36909485,0.08320762,-0.56522816,0.1309618,0.22126494,0.41819102,0.07305814,0.025723835,-0.088491894,-0.36473528,-0.35047728,0.42204705,-0.16299357,0.19368519,0.12529285,-0.2406955,0.723653,0.12554915,1.1067886,0.00046099283,-0.36331105,0.038400132,0.5413537,-0.0047937315,0.0018189725,-0.3422902,0.9860003,0.4920018,-0.2176651,-0.23358469,-0.41000324,0.053312838,0.073541775,-0.27789378,-0.09056767,-0.050873566,-0.33534417,-0.36046648,0.042232726,0.18654922,0.04044132,-0.052754752,-0.095867366,0.25954366,0.16587563,0.40054557,-0.6519361,-0.09613756,0.31249204,-0.007821987,0.1912199,0.19579525,-0.4726785,0.35862795,-0.70174325,0.11084147,-0.20887227,0.21823463,-0.14389193,-0.26532757,0.32866102,0.17380123,0.39693406,-0.36747238,-0.41799212,-0.3291867,0.41437042,0.13852628,0.097768374,0.63958335,-0.22723952,0.013458835,-0.048049442,0.58154154,1.102517,-0.102011055,0.20749302,0.3009206,-0.45383772,-0.57654274,0.018136933,-0.35476404,0.0028977816,-0.06113136,-0.31265736,-0.6369455,0.19372483,0.18979204,-0.014315816,0.32041484,-0.7466381,-0.3014073,0.24126653,-0.30092654,-0.20852697,-0.124635614,0.27157876,0.73590404,-0.32708377,-0.25577426,0.014378285,0.18517244,-0.26095006,-0.8291365,-0.07650067,-0.22717442,0.28437132,0.052841935,-0.22408763,-0.21296783,0.1456486,-0.4790715,0.13033281,0.26246625,-0.2234947,0.04065594,-0.24339333,-0.03727389,0.6783133,-0.121991,0.11010331,-0.43005612,-0.44060066,-0.9994867,-0.4796278,0.12553045,0.16448647,0.033902735,-0.5728855,-0.24385576,-0.28878722,0.05456224,0.14213358,-0.3267915,0.37178817,0.23893204,0.4772021,-0.13103236,-1.1087326,0.12991664,0.20084225,-0.2796444,-0.51196295,0.31445718,-0.10758049,0.7514538,0.18213423,-0.024890466,0.17057548,-0.6892133,0.08754515,-0.18664214,-0.089857146,-0.72284836,0.29770297,624 +17,0.3906109,-0.14516155,-0.4537445,-0.19291124,-0.3239529,0.09419543,-0.07032126,0.2659919,0.2312609,-0.11888229,-0.035061553,-0.16249157,0.10086058,0.28293353,0.0052324254,-0.54601413,-0.09670504,0.044921264,-0.7079589,0.43733972,-0.51817524,0.29203662,-0.0070943832,0.23474504,0.24559103,0.44110596,0.1782972,-0.19223465,-0.08062733,0.23766091,-0.3498978,0.22447813,-0.3472362,-0.05561069,-0.059311334,-0.13988347,0.033688635,-0.38589364,-0.3406251,-0.7412584,0.2755878,-0.77766126,0.34163615,-0.051056102,-0.08947736,0.052422173,0.3739824,0.26557508,-0.47694993,-0.021958698,0.27947232,-0.19740921,-0.084740475,-0.14868167,-0.12506181,-0.3908914,-0.2112599,-0.07606348,-0.6499541,-0.37186107,-0.26421577,0.12693395,-0.38460076,-0.13300431,-0.035517365,0.47272536,-0.4136656,-0.15768543,0.25513038,-0.19872774,0.14534868,-0.60043794,0.03443492,-0.16653785,0.630878,-0.107794404,-0.106438495,0.45959288,0.41779402,0.25643298,0.13439265,-0.17635062,-0.1479035,-0.24804008,0.136567,0.32914084,-0.14995152,-0.5113122,-0.041736286,0.084532894,0.13764563,0.22618917,-0.0040528416,-0.18061972,-0.10531034,0.004159857,-0.20303033,0.48332888,0.41225275,-0.3115313,-0.19922848,0.33197135,0.5275163,0.30679837,-0.28016558,-0.04444828,-0.032269537,-0.47967827,-0.19823377,0.22354549,-0.17452736,0.4192607,-0.2827449,0.2468818,0.83538216,-0.20094796,-0.0544326,0.016176406,0.05724597,-0.25442773,-0.16836219,0.0186546,-0.045411114,-0.5400482,0.121500924,-0.14317992,0.6561917,0.2778271,-0.52289337,0.25126636,-0.45595193,0.33722654,-0.017395133,0.6287947,0.6566901,0.25507146,0.41329026,0.92358506,-0.2879564,0.1429929,0.06437975,-0.5192506,0.0383302,-0.27561238,0.08801681,-0.53043425,0.08198773,-0.21878995,-0.015805924,0.03378288,0.14196546,-0.45312333,-0.06710486,0.1888925,0.7161803,-0.3607484,-0.060900297,0.55131966,0.9203384,0.8561351,0.033268996,1.0833195,0.14844574,-0.35806805,0.25815365,-0.41538215,-0.7436233,0.25490597,0.300527,0.03305842,0.20890965,-0.04021372,-0.047337897,0.29228055,-0.4355825,0.060337774,-0.17283145,0.107741065,0.1844649,-0.017914912,-0.27680996,-0.29363856,-0.23140772,0.02459999,0.07730833,0.1764944,-0.24526037,0.4227825,-0.01614044,1.4540201,0.08939045,-0.018873945,0.10051702,0.62449056,0.22260569,0.011781748,-0.13352408,0.6009927,0.44160247,0.022649601,-0.6869341,0.22239275,-0.39523578,-0.39528772,-0.12743738,-0.4454483,-0.10026067,0.17001721,-0.4450289,-0.19851503,-0.10477225,-0.3458446,0.51785135,-2.8868287,-0.20404588,-0.121315956,0.258705,-0.25705016,-0.108188525,-0.11226487,-0.52725554,0.09484518,0.35761413,0.47137132,-0.7262373,0.33917776,0.43203917,-0.48089185,-0.16265756,-0.7031038,-0.16610658,-0.034681432,0.5159641,0.030743508,-0.069444805,-0.057096463,0.10641023,0.5980401,0.016550751,0.12516528,0.45543244,0.43400237,0.10245163,0.685237,0.0024600765,0.5368803,-0.2736159,-0.16304304,0.27745697,-0.37073395,0.13844956,-0.020594379,-0.003623936,0.6914436,-0.38307774,-0.8304688,-0.4834045,-0.18545023,1.0478877,-0.4102718,-0.2692078,0.32369733,-0.4444767,0.12346172,-0.11920554,0.6856507,-0.010101233,0.0072223437,-0.6236361,0.27794462,-0.02386477,0.07329645,0.021415146,-0.071491785,-0.1264473,0.7598914,-0.047645863,0.5933403,0.27679402,0.055289656,-0.13838443,-0.4318025,0.04436493,0.70033073,0.29399562,-0.014830011,-0.20186694,-0.18132102,-0.10219158,-0.1253657,0.07054406,0.43863696,0.6298318,-0.025683088,0.19782612,0.36987475,-0.13412383,0.017341735,-0.14497553,-0.19183554,-0.09783477,0.008193717,0.43032736,0.5560977,-0.21850553,0.57043815,-0.15908325,0.12895052,-0.15511864,-0.41369396,0.6985154,0.7074418,-0.2953192,-0.069087885,0.19976646,0.50998944,-0.37992123,0.3860421,-0.62563634,-0.1759611,0.7727437,-0.23818675,-0.23178686,0.3068358,-0.21749702,0.12901627,-0.83644027,0.1773477,-0.26979026,-0.33635724,-0.41983545,0.020362714,-3.3351269,0.09427748,-0.24842139,-0.19782244,-0.39667472,-0.07121237,0.21249089,-0.6207344,-0.43573833,0.09477596,0.17622684,0.5800805,0.00032423175,0.07242995,-0.28311473,-0.110004425,-0.17632091,0.09650431,-0.023304518,0.42572522,-0.19369996,-0.50804013,0.031793438,-0.14112371,-0.42326114,0.10473669,-0.46646303,-0.32211965,-0.16820899,-0.5511496,-0.37267327,0.7145415,-0.19077127,0.03709708,-0.25031394,0.036123082,-0.13229726,0.2620542,0.32360846,0.16639319,0.04053954,0.069838665,0.14832297,-0.29556948,0.27984098,-0.15448299,0.35591322,0.08925891,0.1503936,0.21417803,0.5393597,0.53177005,-0.17785649,1.0999545,0.42848763,-0.13774434,0.36789435,-0.36532986,-0.20318969,-0.5631026,-0.38582438,-0.06356174,-0.3384255,-0.4939818,-0.037239216,-0.33915508,-0.6871184,0.40810898,-0.106944144,0.39071012,0.043405652,0.29182294,0.5515845,-0.15826607,0.082569234,-0.07086471,-0.28537756,-0.61794865,-0.27750292,-0.58853656,-0.41301063,0.0636495,0.73179865,-0.40579247,-0.104159735,-0.16782111,-0.4658626,-0.04347616,0.013971182,0.20339252,0.48843035,0.3586291,-0.23382,-0.57409203,0.39347762,-0.08753919,-0.029787246,-0.48244163,0.0073462585,0.48988914,-0.7075076,0.57879084,0.2619877,0.050334435,-0.06318415,-0.47257632,-0.20300664,0.0017733154,-0.14248607,0.3780957,0.12537773,-0.75895786,0.5236079,0.18197292,-0.29794475,-0.6201532,0.41574094,0.040366516,-0.38951606,-0.0023384795,0.34290794,0.1467568,-0.091478966,-0.22564259,0.0849356,-0.3857536,0.24937204,0.29402518,-0.04929862,0.21959843,-0.07812266,-0.28545737,-0.5320473,0.01778063,-0.47364068,-0.12448476,0.32565373,0.123711124,0.1337002,-0.049433727,-0.0028292537,0.27292347,-0.22740261,0.05489772,0.101497516,-0.23399292,0.28208548,0.35140043,0.18082032,-0.41805774,0.5980926,-0.008784115,-0.23313098,0.21859226,0.077043295,0.27678826,0.16785206,0.2502062,0.012857339,-0.29873002,0.38470644,0.9218738,0.16940588,0.34894097,0.025445843,-0.12735349,0.36393023,0.030998588,0.14329907,0.072200656,-0.38981283,-0.15631863,-0.0049865176,0.20433174,0.4424162,0.29999498,0.31346485,0.066253126,-0.14516413,0.0400822,0.20796563,-0.045441333,-1.2227557,0.5062927,0.34060776,0.79853314,0.251143,0.0046821176,-0.16486944,0.797825,-0.3064993,0.052611426,0.46665052,-0.1000015,-0.53870195,0.5742105,-0.6115904,0.55106753,-0.025654165,-0.111589596,0.09285146,0.20970507,0.20200059,0.8262954,-0.24291594,-0.14053322,0.08309924,-0.37473643,0.13443278,-0.2799362,-0.12682268,-0.44035408,-0.33176968,0.4872725,0.20648219,0.18074152,-0.15011667,-0.030433813,-0.053370677,-0.19343548,0.27549234,-0.007132765,0.07924981,0.0033569757,-0.6414963,-0.2718012,0.46635035,-0.11961164,0.15996301,-0.15827344,-0.22704218,0.18731698,-0.15360962,0.053838078,-0.08988059,-0.42616898,0.008083063,-0.11145018,-0.60639626,0.56972265,-0.3648338,0.33873734,0.30326486,-0.117407724,-0.28472582,0.494127,0.17640682,0.82240164,-0.3127169,-0.22586864,-0.54326355,-0.086777814,0.2768284,-0.16199093,-0.08430718,-0.33683288,-0.05621024,-0.3689878,0.59943086,-0.2026984,-0.30848956,0.10044253,-0.4393114,-0.07876514,0.5199088,-0.14571401,-0.14487521,-0.14986965,0.030448822,-0.3361274,-0.044084616,-0.26561412,0.26699135,0.2575311,-0.007409944,-0.33438393,-0.2560174,-0.07566921,0.4848942,-0.13618279,0.39795527,0.1370984,0.08537478,-0.10801865,0.09445973,0.31638825,0.30684286,0.23021251,-0.007877349,-0.4487206,-0.22312942,-0.31452793,-0.035274904,-0.13367005,0.1286302,0.18241481,-0.32189015,0.92376316,-0.113851115,1.1510378,0.10841026,-0.31303656,-0.0043542525,0.59724003,-0.039076224,0.117486335,-0.13259348,0.70378023,0.57108015,0.0056886743,-0.16943137,-0.39208114,0.053938925,0.37799025,-0.25505704,0.059236914,0.044923887,-0.45011598,-0.3451674,0.35776395,0.06801124,0.30805716,-0.037212394,-0.15149625,0.035845738,0.11545267,0.36442497,-0.513923,-0.21337995,0.1904056,0.027800502,0.06645251,0.15764037,-0.42658156,0.5989273,-0.5931133,0.06980217,-0.2811019,0.3039976,-0.14856787,-0.1899304,0.11832832,-0.18173155,0.39917937,-0.18969904,-0.3616491,-0.15872677,0.49700928,-0.04882774,0.2260758,0.5093829,-0.21182093,0.011270931,0.107864216,0.5734086,1.0200268,-0.29764664,-0.049634457,0.2529154,-0.2821195,-0.61956674,0.48080432,-0.2440808,-0.04524174,-0.029973542,-0.262994,-0.3986587,0.2451748,0.26957193,0.27692494,-0.07406237,-0.5586991,-0.35484868,0.39784205,-0.21687451,-0.15306047,-0.33193076,0.3352711,0.62908834,-0.2899121,-0.38080102,0.12849244,0.2605948,-0.26826167,-0.4660632,0.09178251,-0.2511586,0.46739224,0.14264865,-0.21439967,0.040110692,0.22657347,-0.4257114,0.3665119,0.17840134,-0.4173042,0.12369501,0.044558246,-0.1530332,1.0000083,-0.29782265,-0.04429288,-0.54203206,-0.47434267,-0.8790736,-0.4964278,0.3622509,0.120332435,-0.09041542,-0.48095545,-0.026094718,0.066752784,-0.11066371,0.007551532,-0.49477056,0.44460818,0.08667327,0.41537154,-0.2130024,-0.7815174,0.084086575,-0.07761723,-0.08410892,-0.5498688,0.59082747,-0.16950953,0.9154932,0.052532036,-0.06884143,0.18352702,-0.21111596,-0.07048906,-0.31180838,-0.33239624,-0.63200307,-0.08942941,642 +18,0.52715176,0.17145503,-0.4281926,-0.071191356,-0.3952689,0.2119792,-0.17940746,0.0068081687,0.091441095,-0.4423807,-0.060672157,-0.03921153,-0.086352,0.11428442,-0.13702825,-0.41724086,0.20798641,0.26010457,-0.5035739,0.6118721,-0.3202312,0.39206618,0.22011395,0.19083996,-0.048311543,0.1396941,0.30964807,-0.20571952,-0.17714489,-0.23903005,-0.37182572,0.09063603,-0.7476804,0.34096432,-0.2557424,-0.41258204,-0.033483528,-0.16740215,-0.19780564,-0.6882024,0.24200293,-0.70848846,0.56622773,-0.027479768,-0.21190284,0.10782435,0.21950598,0.2616607,-0.13996144,0.068157256,0.167599,-0.10919482,-0.3126422,-0.23163123,-0.119015105,-0.39986324,-0.3635552,0.011436291,-0.43514147,0.06292243,-0.29346135,0.26369673,-0.18558352,-0.023469277,-0.11553007,0.17741136,-0.23157199,0.45396334,0.15909109,-0.0015372984,-0.013552441,-0.536688,0.0696804,-0.20516764,0.37971184,-0.087689854,-0.1946366,0.21283473,0.35221872,0.5817013,0.11271199,-0.21780348,-0.17474128,-0.14539607,0.08621386,0.39976403,-0.20511997,-0.31706727,-0.1932297,-0.09067767,0.26505202,0.2571254,0.14254516,-0.3939522,-0.03636769,-0.105219945,-0.20830183,0.25410026,0.5206522,-0.41535234,-0.13598716,0.40305042,0.5530995,-0.0069462694,-0.038828276,-0.007351181,-0.06465808,-0.42739183,-0.17987569,0.12181441,-0.06729386,0.4409542,-0.11505675,0.16520707,0.5503034,-0.14394379,-0.062160127,0.102977276,-0.014755589,-0.0989441,-0.12145529,-0.10671203,0.21035239,-0.6450254,-0.09275267,-0.1783227,0.84566265,0.12893379,-0.5410399,0.30548877,-0.3796519,0.16857341,-0.022769267,0.48500746,0.66169053,0.37144002,-0.03143016,0.88745236,-0.53624356,0.053598545,-0.027334185,-0.32108957,0.082467794,-0.17516372,-0.00494938,-0.47923502,0.08829302,0.023197511,0.15338917,-0.02661562,0.26169175,-0.6984916,-0.2986358,0.024171717,0.7038869,-0.3825268,-0.011400531,0.6678092,0.8989577,0.93853426,0.039305307,1.3416356,0.33550498,-0.14592443,-0.15332295,-0.21260054,-0.68750185,0.106320806,0.26172733,-0.20974013,0.15001214,0.17761554,-0.07414212,0.38244852,-0.36600986,-0.14779274,-0.2634381,0.44558653,0.01359644,0.011706643,-0.40094477,-0.20063722,0.19059488,0.03130261,0.29765087,0.33131823,-0.19652936,0.21483842,0.18677178,1.7578393,-0.24245615,0.0683293,0.093702875,0.23914859,0.29549462,-0.0829677,-0.07736106,0.24122533,0.35419878,-0.070602596,-0.27900392,-0.24330863,-0.2673015,-0.49861264,-0.1565639,-0.18154939,-0.24306929,-0.12974718,-0.16538413,-0.33801037,-0.031676967,-0.15086485,0.65423214,-2.5490675,-0.09718341,-0.19805086,0.3203771,-0.39346582,-0.3452531,-0.19501725,-0.44882834,0.5227437,0.19941318,0.50653315,-0.63408446,0.31948677,0.2964101,-0.32295328,-0.2685801,-0.7025162,0.12746306,-0.02809178,0.43589726,0.0073608863,-0.22697802,-0.03191692,-0.0055956175,0.33338732,0.0150914015,0.1626162,0.2827251,0.43254825,0.1826013,0.39046612,0.3043715,0.6842272,-0.37076086,-0.10745162,0.48247203,-0.2780551,0.43032378,-0.2432428,0.090379864,0.42265773,-0.40007097,-0.60551035,-0.7612595,-0.06566828,0.96904004,-0.19842926,-0.4751073,-0.0234358,-0.20262785,-0.14332314,0.0026700217,0.17802192,0.050234985,-0.055118315,-0.66336656,0.21566537,0.038064163,0.25229922,-0.07035182,0.05437886,-0.38588116,0.6673311,-0.24472907,0.39967433,0.47746602,0.29587662,-0.08086419,-0.3797707,0.14665517,1.0050775,0.41303682,0.08700186,-0.21864878,-0.37527612,-0.3005863,-0.22946745,0.040195093,0.4269723,0.5965828,-0.06471499,-0.05097439,0.31901526,0.1377706,-0.03938872,-0.04688338,-0.36441544,-0.1784545,-0.19707242,0.48925233,0.6686562,-0.1371139,0.42228875,-0.13405932,0.16823435,-0.13954984,-0.5847789,0.6657938,0.90095174,-0.32731166,-0.19455248,0.41434687,0.31693926,-0.2242665,0.4259895,-0.6610102,-0.4582822,0.32923028,0.041244,-0.21975075,-0.035283905,-0.2974134,0.116756275,-0.6772328,0.44632226,-0.21008208,-0.28661767,-0.51821166,-0.19761837,-2.159113,0.22319135,-0.24625683,0.104484595,-0.1528589,-0.091967925,-0.003105472,-0.45228162,-0.41270745,0.19648933,0.010425217,0.45292968,0.15824796,0.33039,-0.18150151,-0.20488298,-0.29022747,0.18954314,0.12732394,0.288839,-0.1212192,-0.3872326,0.013326722,-0.05903049,-0.20490223,0.030222801,-0.6635973,-0.4668689,-0.2233045,-0.26733506,-0.1404307,0.76764244,-0.47055316,0.0811038,-0.37429163,-0.0391865,-0.19198763,0.22947678,0.20124161,-0.00784307,0.04052807,-0.0012165132,-0.0688262,-0.38035086,0.14838418,0.11337298,0.22754705,0.46764576,-0.25982666,0.14575675,0.17750667,0.5504453,-0.027410079,0.76030385,0.29916975,-0.27746853,0.35759157,-0.15858798,-0.23154055,-0.63083076,-0.49147964,-0.12387711,-0.46964237,-0.29752672,0.06246989,-0.37580255,-0.7153516,0.47217578,0.04350213,0.117063425,0.018864794,0.39321995,0.50704473,-0.26467934,-0.027302016,-0.08278572,-0.18254086,-0.60811996,-0.42387536,-0.55050004,-0.34944236,0.3080483,1.1215017,-0.34544846,-0.077978835,0.13942298,-0.20813236,-0.030736316,0.024367914,-0.048602134,0.056097887,0.48066044,-0.04837064,-0.64626926,0.41333896,-0.10051209,-0.099030845,-0.55990934,0.27888894,0.5459148,-0.64140654,0.2239179,0.46787474,0.22194992,0.14831264,-0.5727336,-0.24025275,-0.07231295,-0.31218654,0.30648956,0.19728717,-0.48226178,0.42516539,0.23615158,-0.03149165,-0.67412806,0.47198436,0.12044738,-0.27124634,0.08725737,0.3329933,0.14947769,-0.053838644,-0.12647447,0.06530348,-0.49392438,0.31175038,0.21930446,-0.176438,0.28488678,-0.24587917,-0.49900824,-0.597824,-0.067600176,-0.4814852,-0.4511713,0.11839781,0.016266398,0.023892147,0.10755296,0.30348745,0.34003562,-0.46784627,0.06036682,-0.01215802,-0.06979637,0.40038916,0.27553636,0.40016088,-0.4072823,0.5467751,-0.0057852725,-0.18147063,-0.18652633,0.19846201,0.3996626,0.08738414,0.27936107,0.049766675,-0.089983776,0.27659836,0.70327413,0.19981197,0.14374065,-0.024872405,-0.25726786,0.1315109,0.060532387,0.11521318,0.118030675,-0.48053715,-0.016049694,0.009147815,0.21953723,0.37686592,0.24766639,0.32490933,-0.07010886,-0.18789649,0.020228041,-0.060744874,-0.016315874,-1.1320401,0.07825593,0.21778052,0.69649184,0.4788732,-0.13134201,0.050063167,0.4561003,-0.2622645,0.17933668,0.31269205,-0.23764788,-0.2379524,0.46210894,-0.6411214,0.38479662,-0.022266464,0.12191838,-0.015545408,-0.025122182,0.13227542,0.9435318,-0.10363061,0.0802641,-0.27879283,-0.2559772,-0.08368646,-0.16398653,0.1402566,-0.26263142,-0.34148803,0.77634966,0.36471677,0.4516977,-0.29326892,-0.020433849,0.093414165,-0.19010103,0.14259882,-0.0048184358,0.19889918,0.0937648,-0.47204888,-0.14388113,0.5703191,-0.23798239,0.06192142,0.11779129,-0.20861673,0.21346878,-0.22986206,0.024378546,-0.07118576,-0.61417097,-0.04494703,-0.34460217,-0.024711227,0.3445863,0.005515505,0.15448812,0.08392215,-0.018849531,-0.15568635,0.3386889,-0.014251421,0.5969566,0.070623875,-0.07800984,-0.3847904,0.2077692,0.24383366,-0.30728877,0.11765748,-0.11112804,0.17613223,-0.7217226,0.31017804,0.056896135,-0.18205439,0.07447236,-0.24541178,-0.058377188,0.52554715,-0.02079545,-0.07900915,0.086048335,-0.023299877,-0.1466842,0.033462625,-0.059050377,0.09410349,0.33024535,0.04265669,-0.017882152,-0.18338992,-0.41752687,0.15595917,0.23751368,0.29988256,0.23935632,0.042385396,-0.47359332,-0.043748006,0.026676238,0.43719012,-0.15334378,-0.14805673,-0.17168696,-0.47200558,-0.4921563,0.39398357,-0.15811457,0.10556752,0.01650124,-0.20359042,0.68731105,0.11685688,1.1807845,0.15607615,-0.26766706,-0.051069085,0.6686733,0.004008307,0.10086775,-0.3157976,0.872066,0.461745,0.02842921,-0.10593085,-0.18374467,-0.1951922,0.23479453,-0.14379896,-0.056836996,-0.04134098,-0.46990538,-0.28647935,0.16872187,0.115403004,-0.007835348,-0.050556697,-0.090262085,0.23610808,0.0125969015,0.38901645,-0.61663663,-0.23763813,0.381066,0.24887836,0.01570795,0.11626877,-0.4929978,0.42108327,-0.4668323,-0.026600862,-0.29549712,0.08492001,-0.1767515,-0.13831075,0.2058082,-0.07227319,0.34242517,-0.5632426,-0.4392212,-0.24936014,0.38803327,0.34181932,0.3186614,0.6154647,-0.22842906,-0.03353652,0.0066560297,0.46465328,1.0597286,-0.18662576,0.039292533,0.47757372,-0.3763814,-0.49127883,0.23881842,-0.32340717,0.09858849,-0.00706583,-0.34849066,-0.3887369,0.36960375,0.12963974,0.10619842,0.07728645,-0.91877544,-0.022196932,0.2930054,-0.18019979,-0.17271227,-0.22474563,0.21034975,0.80764526,-0.1379169,-0.31712794,0.1554699,0.23628013,-0.2504988,-0.6490612,-0.1707233,-0.3908583,0.336042,0.24466464,-0.28650805,-0.16907164,0.045732252,-0.4637242,0.030397745,0.20418972,-0.33834234,0.044294957,-0.23098981,-0.043460775,0.72348523,-0.025609747,0.06127778,-0.4638207,-0.25296324,-0.759093,-0.40221095,0.2567481,0.27680406,0.057710625,-0.44013664,-0.18734758,-0.110811375,-0.09915547,-0.03714658,-0.5092559,0.48468623,0.20743774,0.20741639,-0.08612427,-0.9149169,0.06343686,0.034660805,-0.12081595,-0.4217467,0.3795195,-0.027336018,0.78077203,0.13580571,-0.13733292,0.36181426,-0.7079911,0.21166916,-0.24604355,-0.010183573,-0.8774465,0.08937016,678 +19,0.5935329,-0.1593402,-0.50380087,-0.1701976,-0.3551464,0.057287462,-0.34315726,0.07924772,0.062301874,-0.36575696,0.016651228,-0.13021326,0.029189643,0.36551583,-0.060866315,-0.90671873,0.10363612,0.0707032,-0.71373594,0.5944215,-0.55946326,0.5032185,0.060238805,0.13425454,0.010302027,0.32361078,0.28991035,-0.08702167,-0.12311342,0.042902164,-0.13426612,0.08526918,-0.56385505,0.1044281,-0.01173434,-0.22883521,0.07470417,-0.29418245,-0.3948435,-0.7029398,0.3795172,-0.6651068,0.31746486,0.06544712,-0.2950858,0.19220419,0.022064477,0.14854573,-0.2981552,0.3123381,0.1800239,-0.1579738,-0.063930035,-0.18826607,-0.18306841,-0.6036209,-0.54120594,0.13213447,-0.55979234,-0.31719133,-0.26205567,0.1614591,-0.40973815,-0.034005288,-0.09980712,0.34837016,-0.4701317,-0.14090139,0.19896036,-0.08291323,0.2632514,-0.4445668,0.010911427,-0.14573383,0.15753262,-0.17550305,-0.16731045,0.32298833,0.17254028,0.49275595,0.098249674,-0.28206182,-0.15866505,-0.098855436,0.2852541,0.36784896,-0.16322124,-0.45511556,-0.19396855,0.031209175,0.02861985,0.0099097965,-0.06433774,-0.45062542,-0.06580763,-0.0375818,-0.19992824,0.3682332,0.5014874,-0.364577,-0.27273494,0.38827857,0.45175254,0.15754473,-0.15779853,0.08622771,-0.07938727,-0.4695809,-0.17865106,0.2089764,-0.042617932,0.38568223,-0.35196534,0.25028467,0.7105616,-0.17683226,0.01915805,-0.075752445,-0.06395598,-0.09971136,-0.030173488,-0.08136112,0.12042262,-0.62910247,0.09560512,-0.16570978,0.7380899,0.32718658,-0.71695846,0.40686792,-0.5092498,0.318458,-0.24967623,0.5285215,0.82309055,0.25118777,0.11067996,0.6353056,-0.5741114,0.15575665,-0.121877655,-0.47806516,0.14253819,-0.10910432,-0.084656656,-0.55862606,-0.039358456,-0.15314639,-0.1322799,-0.19028495,0.55665153,-0.37818986,-0.04015164,0.038272016,0.6671481,-0.35114053,0.01660068,0.61370146,0.8303823,1.1846464,0.06335826,1.0967054,0.38624442,-0.20612492,0.0993732,-0.3536335,-0.73860264,0.28712144,0.409558,0.31842163,0.3183822,-0.14780003,0.025042642,0.43799922,-0.30365607,0.037391387,-0.2878568,0.2586724,-0.13018501,-0.042140357,-0.4244721,-0.10459834,-0.007710853,0.20793423,-0.04243339,0.29254273,-0.13036111,0.2651448,-0.027837697,1.5889809,-0.0986337,0.086191006,0.07533151,0.41546562,0.41449922,-0.21725266,-0.031801213,0.21282922,0.40297598,0.1537087,-0.6445473,-0.03903736,-0.37765178,-0.44974267,-0.16685417,-0.2761994,0.11854835,-0.07444066,-0.44731504,-0.20872152,0.040622823,-0.30683193,0.3493668,-2.3917758,-0.21556899,-0.17267357,0.21175283,-0.25598592,-0.3636904,-0.09352548,-0.43979675,0.42242557,0.36380702,0.5149835,-0.5773986,0.31519777,0.35847387,-0.52559674,0.020959966,-0.67687,-0.12013844,-0.15459464,0.4869639,0.04398889,-0.057016034,-0.102136515,0.30098012,0.5227933,-0.2119267,0.08908854,0.20213965,0.35839453,0.11910785,0.42823175,0.027852416,0.47242647,-0.28935942,-0.21747497,0.40035206,-0.19269598,0.115766,-0.17005311,0.10014709,0.3184302,-0.56026924,-0.9211383,-0.5481966,-0.30218956,1.2425903,-0.16253382,-0.4070392,0.3020816,-0.030771386,-0.10180495,0.14594644,0.28742862,-0.19806705,-0.10137476,-0.7037902,0.2615399,0.031355906,0.1821784,0.12294134,-0.046892915,-0.22848022,0.55665725,-0.054920305,0.33504462,0.27397117,0.21307382,-0.034513444,-0.5217716,0.114566155,0.983307,0.37658224,0.16102791,-0.25243127,-0.20879176,-0.19021483,-0.109202646,0.0867768,0.2923784,0.7923862,-0.057607513,0.09248655,0.20048764,-0.083439,0.11806649,-0.14066213,-0.31456783,0.0806262,-0.11814931,0.5517326,0.4872313,-0.09758681,0.37971565,-0.038773496,0.28502515,-0.11440182,-0.56024057,0.66018856,1.2853556,-0.09817785,-0.1591366,0.45868707,0.3331799,-0.26346454,0.58132124,-0.623557,-0.32754105,0.37179658,-0.2582984,-0.25939763,0.25356746,-0.37421024,0.0626667,-0.7237708,0.33284917,-0.23557511,-0.3800255,-0.5552951,-0.19188593,-3.7149308,0.24111891,-0.30737945,-0.10585349,-0.07599845,0.05338478,0.33387226,-0.5019479,-0.534802,0.11587441,-0.067543395,0.60132045,-0.056163978,0.1653379,-0.21265513,-0.20369923,-0.42989087,0.12244576,0.09365843,0.31910592,0.0014318859,-0.39826664,0.0405531,-0.28654265,-0.44819847,0.04993418,-0.5031243,-0.43354455,-0.18813454,-0.450272,-0.1591188,0.5973015,-0.013192831,0.043304246,-0.20707893,-0.11523719,-0.11809843,0.2802508,0.18901134,0.17622392,0.07107886,0.04652855,-0.14350763,-0.27488503,0.14279033,0.10145507,0.12576263,0.34709448,-0.1181329,0.11547953,0.48271433,0.57083166,-0.1681495,0.762972,0.5156379,-0.120892875,0.3918412,-0.23538488,-0.239145,-0.5166644,-0.37410003,-0.18090431,-0.33829236,-0.5377976,-0.04901056,-0.24904026,-0.65777844,0.40301815,-0.013441521,0.09465505,-0.049044166,0.1609172,0.32021433,-0.11772817,-0.095421664,-0.082564436,-0.15367149,-0.4724345,-0.27120814,-0.64300436,-0.44584063,0.111403786,0.9143345,-0.11469629,-0.1700826,-0.20256126,-0.136258,-0.096571,-0.09684779,-0.012633091,0.29519486,0.098732285,0.0021330854,-0.84001744,0.49327737,-0.05925037,-0.03740832,-0.47133794,0.088428795,0.58630526,-0.58350855,0.42583603,0.32491517,0.19060656,0.07389777,-0.6118405,-0.13390179,0.20433897,-0.24804564,0.51120114,0.118197724,-0.74175334,0.5710643,0.3933639,-0.27468082,-0.70757294,0.49628314,0.19169699,-0.36728376,-0.016472816,0.3325454,-0.03347658,0.027746862,-0.23828232,0.40709382,-0.39722532,0.27122957,0.2918275,0.013763392,0.2606591,-0.08857736,-0.25851208,-0.5608139,-0.10118277,-0.39914694,-0.28954554,0.074655436,0.08588141,-0.04235377,0.046990156,-0.12769735,0.5283885,-0.15963443,0.10829512,-0.07902193,-0.21839303,0.2812542,0.40467137,0.4197526,-0.38625482,0.66594374,0.022570308,-0.17430933,-0.036995444,0.17454955,0.45891064,0.21513642,0.3816706,0.057863824,-0.094770476,0.2855751,0.8376974,0.071901985,0.49678147,0.15338996,-0.34123588,0.33074778,0.1783576,0.09562581,-0.077619724,-0.24483976,-0.075940125,0.059850138,0.22727638,0.46886158,0.10415863,0.24884212,-0.1565292,-0.25032887,0.08529674,0.18714336,0.03229936,-1.1390392,0.34222063,0.25492626,0.67588854,0.68540597,-0.03750747,-0.0013348355,0.5745431,-0.25046065,0.040123552,0.36366367,-0.110658735,-0.54702413,0.4450543,-0.62356746,0.29577607,-0.06970846,-0.008742916,0.01698461,0.09887684,0.34664392,0.7701023,-0.07397929,0.07983729,-0.13076608,-0.33451125,0.118798,-0.33503544,0.039854743,-0.29637405,-0.33017278,0.6114638,0.28053084,0.12656029,-0.20005536,-0.042443093,0.006332054,-0.103653334,0.13582782,-0.0021066542,0.054105673,-0.04285144,-0.6638003,-0.3439613,0.48215967,0.103779964,0.042820122,-0.048255853,-0.1541865,0.23386702,-0.23016939,-0.0025220478,-0.008827069,-0.71272504,-0.06737232,-0.31700963,-0.25213668,0.4496511,-0.17629535,0.28973386,0.19857658,0.109729454,-0.35759112,0.21960723,-0.0053779096,0.6391642,0.059784062,-0.20576079,-0.3644241,0.047747638,0.20282549,-0.23016949,-0.12492278,-0.28825283,0.0064119557,-0.67637575,0.51273817,-0.11565137,-0.32929406,0.19012602,-0.11392188,-0.028415378,0.5654059,-0.20541826,-0.3322157,-0.031778794,-0.028960591,-0.27926415,-0.23402978,-0.082564056,0.245583,0.14740016,-0.17430922,-0.21005535,-0.025858963,0.005594001,0.5809408,0.05427495,0.3243489,0.33340344,0.14838384,-0.47145614,-0.06258732,0.296726,0.38076976,0.16971782,0.018448373,-0.21475825,-0.33102486,-0.34649104,0.10369247,-0.18871489,0.2583901,0.12658612,-0.39959666,0.59407836,0.20116901,1.1596011,-0.01968523,-0.23133713,0.1678616,0.4194313,0.051226467,0.052253474,-0.35101974,0.7446436,0.6525064,-0.03830011,-0.23953906,-0.37822902,-0.20302646,0.110281445,-0.2286957,-0.05991598,-0.010709846,-0.7509949,-0.32888693,0.2607473,0.21697578,0.08631466,0.03717375,-0.053194467,0.09638444,0.225448,0.38462812,-0.50831944,-0.09298155,0.26238912,0.24929126,-0.0038275192,0.16753668,-0.39811176,0.37293085,-0.5190625,0.17011411,-0.15714589,0.21473113,-0.0010249369,-0.26582143,0.2637455,0.041568648,0.3994112,-0.25374442,-0.50973743,-0.16064623,0.5568935,0.07914807,0.22444999,0.61085963,-0.33756196,0.22390889,0.08204347,0.5201336,1.0599632,-0.14378312,-0.054134272,0.3015468,-0.3375638,-0.7456464,0.25769475,-0.08827017,0.14110306,-0.0887996,-0.29383874,-0.4459311,0.15877277,0.18861438,0.052453466,0.120606564,-0.51512223,-0.24050176,0.31186965,-0.09359919,-0.21749252,-0.30862308,0.2032998,0.73606884,-0.40573716,-0.13967809,0.15492989,0.20937386,-0.26239538,-0.58416486,-0.0831166,-0.38579372,0.39489022,0.2862714,-0.077070504,0.16364074,0.09802853,-0.48445714,0.15653625,0.28145814,-0.40418696,-0.02819827,-0.1756019,-0.13187689,0.86755776,-0.22352658,0.042871904,-0.62293774,-0.5449572,-0.9231796,-0.39413685,0.6653422,0.15271932,0.19111617,-0.6692201,-0.028521637,0.024830742,0.06437492,0.057108056,-0.51986027,0.33190063,0.08815329,0.37063703,-0.09040291,-0.7300664,0.053839315,0.14002708,-0.33063278,-0.50787514,0.50848794,-0.10334451,0.73128366,0.030259771,0.04864393,0.2503237,-0.5152708,0.031261653,-0.24536152,-0.19905363,-0.5786462,0.20482324,693 +20,0.60457456,-0.2569849,-0.55922097,-0.026534498,-0.2632171,0.099666074,-0.12123456,0.48357487,0.2614137,-0.38663173,0.047841273,-0.21609747,0.0786138,0.30915064,-0.12958422,-0.27548814,-0.042477407,0.120163836,-0.34016737,0.54256546,-0.49858037,0.23487377,-0.07947982,0.43573487,0.20654392,0.19376105,0.027759783,-0.09586414,-0.36292732,-0.18317473,-0.019526454,0.3581199,-0.3878224,0.2656045,-0.1438044,-0.2605402,0.09627888,-0.3348006,-0.46806794,-0.6383254,0.19407234,-0.70862013,0.48987904,-0.02825359,-0.2649992,0.043567497,0.014724668,0.25663915,-0.2393782,-0.0071988245,0.08059646,-0.108009696,0.0892077,-0.361694,-0.08683447,-0.30869764,-0.4182538,0.023594337,-0.35999292,-0.020393506,-0.3178959,0.14239863,-0.33244428,-0.061715126,-0.15822604,0.48196304,-0.47569823,0.2934976,0.031893946,-0.2139706,0.3339592,-0.5279446,-0.38245296,-0.15452453,0.09069473,-0.06446936,-0.29805186,0.3803357,0.3280095,0.32568124,-0.029302696,-0.051888857,-0.38167563,-0.071033545,0.19206765,0.5448199,-0.1786331,-0.5961563,-0.14043388,0.0152049735,0.11448808,0.25467968,0.13534662,-0.443143,-0.05296685,0.1621383,-0.28079456,0.39885965,0.49947897,-0.30698776,-0.04335323,0.2665314,0.4434956,0.30112118,-0.08524947,-0.17367503,0.025291367,-0.48277035,-0.14912285,0.07032203,-0.03232172,0.56398153,-0.15059815,0.22191393,0.5631998,-0.26228222,-0.1869493,0.1143238,0.12080992,-0.15430956,-0.2321524,-0.21119183,0.054037068,-0.39083037,0.12961021,-0.099688865,0.8251985,0.17201151,-0.5800328,0.41066262,-0.49513996,0.10987835,-0.15782443,0.39172435,0.52057916,0.4769085,0.41381317,0.68267006,-0.48607394,0.036440983,-0.18042126,-0.4355404,0.03133584,-0.20837165,-0.011469056,-0.4756735,-0.019912258,0.014175706,-0.13453506,0.04194237,0.56868416,-0.43384498,-0.1820127,0.034443315,0.759354,-0.31581184,-0.06746104,0.6169713,1.00512,1.0330719,0.14149754,1.092106,0.14841346,-0.1764996,0.20499732,-0.21469018,-0.6665523,0.35325387,0.36408293,0.05357852,0.087550685,0.052048415,-0.004981672,0.41233435,-0.22731951,-0.041714396,-0.15144837,0.4876349,0.21889785,-0.08854909,-0.25172293,-0.45362556,-0.092325926,0.014950919,-0.17068446,0.30567864,-0.21443598,0.4148693,0.07647992,1.8939313,-0.01574883,0.047459267,0.06955893,0.5598523,0.20508498,-0.17887037,-0.01340148,0.36617884,0.11185767,0.14300953,-0.40324405,0.15796089,-0.2820021,-0.66112334,0.02105959,-0.30536962,-0.17405331,0.006798029,-0.43712634,-0.25616884,-0.079593934,-0.19005121,0.5915308,-2.8251073,-0.2550037,-0.057229955,0.34420845,-0.29684424,-0.34639236,-0.041798204,-0.41693664,0.3218963,0.18689632,0.5863388,-0.80013037,0.1762159,0.3568969,-0.42728683,-0.22700924,-0.50505435,-0.01688559,-0.020336628,0.37478855,0.003550852,0.012817772,-0.020466426,0.012971198,0.44587266,-0.15093727,0.26221466,0.21874066,0.25829872,-0.055129543,0.5014718,-0.0518979,0.47727394,-0.29163623,-0.16162847,0.3454274,-0.31081977,0.33422866,-0.04138639,0.03721282,0.47101605,-0.44571954,-0.77475095,-0.59238684,-0.09335979,1.0124351,-0.15106097,-0.4820502,0.23114382,-0.434441,-0.22404091,-0.15478297,0.17008503,0.010542111,-0.10235329,-0.8098397,0.13832678,-0.060786612,0.12979968,8.45825e-05,0.019632297,-0.21787941,0.6034776,0.038537983,0.48404706,0.4414203,0.08733226,-0.290985,-0.37796745,0.028435914,0.6899028,0.39403725,0.25354844,-0.2784233,-0.22427927,-0.10638346,-0.12985128,0.2208531,0.4501887,0.47643393,-0.16052328,0.1526445,0.35629562,-0.04680012,-0.07540622,-0.12799941,-0.19393493,-0.07789874,0.077409,0.59759593,0.84225553,-0.10132119,0.4468212,-0.034278456,0.3094244,-0.12765773,-0.49735624,0.42220092,0.9627257,-0.16300637,-0.27877134,0.4166104,0.45510697,-0.2166405,0.30249962,-0.5080306,-0.24962509,0.40936375,-0.17755337,-0.36103794,0.20600589,-0.3249829,0.1138613,-0.7988613,0.37720296,-0.37965223,-0.41886926,-0.40644166,-0.22409202,-2.7298515,0.14371705,-0.25290698,-0.22332512,0.048338573,-0.19371097,0.06102898,-0.58481884,-0.47615147,0.0739532,0.06512467,0.5607553,-0.026490482,0.011553729,-0.1888088,-0.38637775,-0.3038489,0.051560584,0.07639942,0.45939398,-0.07530454,-0.52552557,0.0073139807,-0.113777235,-0.42987743,0.16977863,-0.52959913,-0.5973108,-0.14045997,-0.3989091,-0.5670831,0.5701345,-0.09060106,-0.049336083,-0.08314831,-0.040979743,-0.090904094,0.20711124,0.14058287,0.10695527,0.037130754,-0.018111601,-0.030707408,-0.31455117,0.1648928,0.019789554,0.27903655,0.44820496,-0.09237332,0.11657524,0.52964926,0.5596741,-0.1496931,0.7630367,0.4202949,-0.13810475,0.24711691,-0.29983717,-0.31924087,-0.47835344,-0.38173366,0.056489542,-0.42928934,-0.47800535,-0.020506522,-0.31384602,-0.5282636,0.6073808,0.07361457,0.05312886,-0.01641553,0.1028847,0.52063674,-0.24559078,-0.11477193,0.07005339,-0.15455589,-0.7833445,-0.36063343,-0.68376374,-0.5166393,0.22376992,1.0564057,-0.22362351,-0.1540047,0.1414111,-0.3200276,0.013711171,-0.021364963,-0.015043042,0.061782986,0.3395773,-0.19444525,-0.56585956,0.36997834,-0.07758239,-0.1145704,-0.4726512,0.2919429,0.65373176,-0.47100055,0.6174645,0.25037226,0.27660853,-0.11024089,-0.48308113,-0.24852332,-0.020767776,-0.25312793,0.46936435,0.23128891,-0.7636037,0.38999933,0.44371328,-0.36112866,-0.68714905,0.48697338,-0.048256915,-0.29369673,-0.103976786,0.3033289,0.197529,-0.019370118,-0.044530813,0.31942874,-0.55079263,0.32569513,0.2980069,-0.12606129,0.13996083,-0.14030948,-0.21361756,-0.7169039,-0.031191755,-0.29102948,-0.37306938,0.22341366,0.049973805,0.043585766,0.011953536,0.19634283,0.31135833,-0.29667267,0.02556473,-0.084973805,-0.12292458,0.38285172,0.39472997,0.62047726,-0.25174946,0.5242551,-0.021650363,0.021041587,-0.08495782,0.039683063,0.27713794,0.20412877,0.26373017,0.026772654,-0.26073286,0.26938006,0.9370922,0.15405762,0.34503597,-0.06659728,-0.21087085,0.17784211,0.109186344,0.40680197,0.025077732,-0.46039242,0.07335985,-0.27229053,0.18750092,0.39190847,0.18785623,0.16094881,-0.11669407,-0.43982378,-0.020410016,0.15203288,0.02227847,-1.274206,0.30018687,0.203547,0.79282033,0.40418363,0.030677183,0.029997122,0.6834822,-0.22013938,0.056641906,0.31136277,-0.11421897,-0.47973856,0.35310978,-0.8334171,0.48990273,-0.021419033,-0.0077121495,-0.016652234,-0.03070717,0.4841078,0.7471474,-0.13355206,-0.065164566,0.13754486,-0.38089752,0.027593596,-0.4257196,-0.062092394,-0.6948191,-0.32775936,0.629581,0.45716664,0.36427274,-0.18982531,-0.017442338,0.11704105,-0.1499137,0.25758797,0.08008203,0.19075476,-0.08221617,-0.68194795,-0.17329523,0.5577378,-0.027246486,0.19279666,-0.06144336,-0.14552186,0.28403676,-0.1736807,-0.055169724,-0.02562939,-0.57411265,-0.06099848,-0.32881707,-0.34743086,0.4845406,-0.019407105,0.30421904,0.17620698,0.061525345,-0.16416521,0.5277269,0.115380555,0.76024145,-0.06172,-0.18709534,-0.4513002,0.072662205,0.19158694,-0.047236674,-0.08842031,-0.100104526,-0.13564211,-0.51799154,0.5048921,0.060543958,-0.17178264,0.073667064,-0.042148978,0.08278168,0.55482394,-0.078834385,-0.31332448,-0.20834559,-0.09648549,-0.39520785,-0.097364195,0.05731901,0.20157206,0.35420984,-0.01219638,-0.018587593,-0.18381795,0.037172437,0.3406175,0.026460953,0.2910663,0.2707987,0.20115043,-0.3656721,-0.18842298,0.17227656,0.5569874,-0.015650261,-0.002495706,-0.31609133,-0.4683047,-0.44085574,-0.0019509512,-0.18339598,0.33718756,0.10744818,-0.35084897,0.6736462,-0.19365534,1.1615878,0.13864493,-0.17913735,0.031763386,0.47076702,-0.018158495,0.06902944,-0.19912276,0.7717292,0.4733563,-0.11810721,-0.26430488,-0.33025575,0.015162528,0.10529524,-0.22363287,-0.062094957,0.03647546,-0.6038675,-0.14379437,0.16426751,0.1969821,0.14189787,-0.10611615,0.024958229,0.30747825,0.10983616,0.2868438,-0.27079865,-0.24221471,0.31660533,0.4017391,0.04730228,0.03078874,-0.47540855,0.3509842,-0.38243422,0.25405815,-0.16857454,0.18875785,-0.2236998,-0.22790034,0.2400378,-0.091703966,0.29307982,-0.31536406,-0.2954119,-0.19192132,0.4399336,0.07123932,0.14155675,0.65633214,-0.18245015,-0.109520875,0.15652996,0.33434695,1.0591154,-0.31240618,-0.17171386,0.54612845,-0.35948378,-0.5470019,0.3628879,-0.18194146,0.12838975,0.046447486,-0.12204027,-0.6617314,0.2201521,0.21800268,0.05626372,-0.07994256,-0.68849576,0.032380566,0.3495661,-0.4537615,-0.16871484,-0.30603135,0.03582902,0.5088722,-0.20201616,-0.36889198,0.19626418,0.18479216,-0.28381371,-0.33802,-0.05287595,-0.3699458,0.29386026,0.043909226,-0.26314917,-0.11175687,0.22441557,-0.41740862,-0.052016962,0.06481371,-0.35161814,0.12800202,-0.43970618,-0.040009744,0.92202353,-0.28148532,0.366524,-0.3942206,-0.36424458,-0.6862892,-0.22920653,0.48666024,-0.06785393,-0.011206156,-0.6525728,-0.15447581,0.07805464,-0.40198243,-0.28866932,-0.45090657,0.56068486,0.06702018,0.14690375,-0.028157908,-0.6688617,0.22825934,0.13329144,-0.08684117,-0.5026479,0.5571373,-0.16474326,0.71520334,0.07523103,0.030354276,0.3790227,-0.4172191,0.1098209,-0.21779922,-0.18690886,-0.58428144,0.032317422,712 +21,0.437486,-0.06554955,-0.525002,-0.21136087,-0.37615758,0.13459033,-0.26470146,0.1004678,0.23928079,-0.33598807,-0.00737632,-0.00683843,-0.0017551675,0.3315562,-0.17124413,-0.791881,0.052146107,0.07709426,-0.55439407,0.44832683,-0.5603806,0.52945226,0.026616657,0.3105353,0.08506849,0.3687121,0.19063991,-0.06358487,-0.02087011,0.12647839,-0.18987453,0.35642976,-0.6674094,0.038574796,0.08386518,-0.2676148,-0.07817009,-0.33323833,-0.29314166,-0.70732254,0.39525226,-0.7311746,0.47403285,-0.19644912,-0.3821316,0.15721525,0.06580765,0.3402103,-0.4356423,0.15866527,0.1913122,-0.3406035,-0.0204306,-0.01941359,-0.261822,-0.50394243,-0.5556615,-0.08669097,-0.6398397,-0.14493501,-0.3281431,0.21343805,-0.3832719,-0.009681936,-0.20878181,0.3991799,-0.37089735,-0.06809938,0.31212357,-0.11632826,0.10220292,-0.4160605,-0.074744776,-0.1872028,0.2347867,0.03807667,-0.26234618,0.28765038,0.36445943,0.5246974,0.11830206,-0.2801571,-0.12438674,-0.10398558,0.13928476,0.5079156,-0.07082749,-0.38209778,-0.3181192,-0.018591361,0.17137621,0.26399583,0.06050058,-0.41113967,-0.071825914,0.14823347,-0.23890296,0.30233568,0.44563618,-0.38937017,-0.20501451,0.45455045,0.41716817,0.10626616,-0.21970513,0.3229278,-0.04597963,-0.59053856,-0.23698501,0.2608329,-0.10660327,0.5372645,-0.24521172,0.15621544,0.7702843,-0.22664833,-0.0544297,-0.23720299,-0.17823115,-0.06930769,-0.26714125,-0.046498455,0.10058127,-0.43314767,0.12151192,-0.1969261,0.8534245,0.26632103,-0.8375912,0.34797436,-0.43614078,0.17603204,-0.24592416,0.63886935,0.9419847,0.26307687,0.3576489,0.89707285,-0.6160379,0.09269134,-0.03725396,-0.5168598,0.043175142,-0.04593725,-0.056844663,-0.48895574,0.09663185,-0.03319556,0.011145625,-0.09534149,0.36074203,-0.42816025,-0.04535041,-0.09231794,0.60148203,-0.48455733,-0.13148859,0.74930006,0.8502601,0.82787555,0.14349797,1.1966873,0.41155338,-0.13783203,0.14426851,-0.32797945,-0.4872219,0.16718695,0.29893813,0.10337799,0.327183,0.08459519,0.054858882,0.4076532,-0.15340054,-0.10695354,-0.005989047,0.25835246,0.0022301655,-0.10238197,-0.40471,-0.12752138,0.14030924,0.057951346,0.049160715,0.22084606,-0.2515522,0.40745616,0.22147691,1.5109211,0.03512295,0.07142318,-0.037440464,0.3819585,0.32516626,-0.21062486,-0.11064266,0.44861934,0.42909896,-0.116220094,-0.6648238,-0.020884044,-0.2311299,-0.40897667,-0.18704247,-0.45827407,-0.03444612,-0.093900725,-0.4959294,-0.09068297,0.1547159,-0.29525754,0.570584,-2.500299,-0.25487524,-0.104584835,0.25994405,-0.24681069,-0.36350632,-0.29608828,-0.4941344,0.27749148,0.36703795,0.22152276,-0.72443897,0.42498708,0.39099687,-0.2064997,-0.15668307,-0.64957607,-0.11163284,-0.08652311,0.38725966,-0.1204614,-0.017227087,-0.13665988,0.33363882,0.6233313,0.0042571602,0.014583155,0.047397867,0.4703083,0.062334687,0.6782556,0.14846437,0.63715166,-0.1259677,-0.08256183,0.32426548,-0.29660755,0.28751978,0.12594151,0.15927126,0.39141357,-0.43268642,-0.8108106,-0.57102776,-0.34653315,1.1096146,-0.53112334,-0.30955377,0.26841483,-0.016422398,-0.18640652,0.09098174,0.4220438,-0.08030116,-0.00982368,-0.721672,0.1887607,-0.083162956,0.0978411,-0.10360134,0.1456842,-0.14628705,0.6058523,-0.23231374,0.5630343,0.31790453,0.16760348,-0.08285657,-0.5433514,0.051248495,0.90451145,0.3672463,0.07203106,-0.17116669,-0.30373964,-0.19130515,-0.16807081,0.14881812,0.5039563,0.725225,0.0115223145,0.14867157,0.36110306,-0.23531513,0.011316724,-0.12431013,-0.25212383,0.027756313,-0.02501614,0.52596414,0.48676845,-0.2548688,0.42151222,-0.13995366,0.08047958,-0.1033669,-0.52866226,0.59298044,1.0062003,-0.26210925,-0.23777021,0.56379735,0.24902995,-0.30741194,0.3049391,-0.58388907,-0.14963844,0.72780216,-0.12256683,-0.30717334,0.14373146,-0.3165802,0.07389309,-0.878714,0.25419438,-0.017556218,-0.4745465,-0.45756972,-0.11541181,-4.1366796,0.11049293,-0.10573079,-0.12265382,-0.04266971,-0.17978281,0.3510989,-0.5300852,-0.56502676,0.09794235,-0.062435992,0.5154852,-0.05404718,0.1788332,-0.37969443,-0.02926234,-0.22541603,0.22909415,0.08665546,0.38596502,-0.022893513,-0.3740492,0.08545563,-0.3180668,-0.6274385,0.065541394,-0.35308766,-0.5670566,-0.16302375,-0.46520698,-0.28650078,0.76579195,-0.27623495,-0.04071837,-0.28543484,-0.09219214,-0.23285176,0.35511547,0.18508959,0.2223532,0.05896566,0.09891976,-0.17076413,-0.3805529,0.09473333,0.014498059,0.13700292,0.33378297,-0.015976418,0.11638819,0.5224332,0.58121705,-0.09104259,0.691734,0.31298485,-0.08968354,0.30950361,-0.38420698,-0.23043515,-0.70305526,-0.51205117,-0.43864524,-0.48868796,-0.46908897,-0.26080915,-0.4192746,-0.8264426,0.43322927,0.006730597,0.22948515,-0.14713404,0.30159026,0.37523606,-0.1794516,0.006756481,-0.08031253,-0.29343867,-0.5596142,-0.46931434,-0.5804404,-0.612463,0.22989193,0.9520367,-0.18619598,-0.17932616,-0.17441377,-0.2664299,-0.07107593,-0.050395854,0.2359689,0.31233197,0.29202098,-0.17682421,-0.57973975,0.49971175,-0.17002283,-0.082131736,-0.59742343,0.022486806,0.660993,-0.57036716,0.6052555,0.30102324,0.187338,0.12947091,-0.66456604,-0.26779506,0.08973311,-0.2659721,0.61488163,0.15108566,-0.7592061,0.58141357,0.14835761,-0.033298906,-0.664503,0.5052876,0.0383996,-0.23177128,0.12053271,0.34108028,0.026239378,-0.03486237,-0.23114681,0.17726183,-0.5739995,0.2896029,0.42173597,0.04356352,0.41985202,0.04870649,-0.2343771,-0.5814467,-0.16720763,-0.62274045,-0.26223013,-0.038078982,-0.049622364,0.18189526,0.043985307,-0.0991743,0.50427383,-0.32652625,0.20699005,-0.003472514,-0.07146356,0.31624532,0.56687844,0.22361031,-0.47754365,0.543986,0.15844539,0.026771938,-0.06748459,0.09302057,0.5525704,0.33044124,0.2936835,-0.11483086,-0.13353014,0.1138398,0.6361264,0.2755848,0.47163078,0.24450712,-0.3193153,0.35101616,0.2612901,0.21976864,0.077057645,-0.17360535,-0.1439401,0.052068148,0.23436606,0.48356858,0.21320204,0.34459653,-0.054664336,-0.17393945,0.23513547,0.087833494,-0.112158485,-1.1817249,0.3416664,0.27167436,0.614549,0.5645313,-0.019460559,0.073410176,0.30179438,-0.42309177,0.18165527,0.31512037,-0.0076651643,-0.46574125,0.50267404,-0.5932386,0.4629231,-0.21621263,0.02629158,0.08923645,0.24056995,0.36550957,1.0120231,-0.11854957,0.15237783,0.044191036,-0.17393026,0.23967586,-0.31598338,-0.08968847,-0.42857277,-0.2810737,0.5157399,0.34162655,0.25284553,-0.3364657,-0.06969714,0.051009297,-0.11450033,-0.16776422,-0.07223281,0.020433167,-0.03773385,-0.48781967,-0.49012515,0.5821827,-0.19537699,0.021458372,0.074762166,-0.37600645,0.2790161,-0.1344383,-0.06918836,-0.036947202,-0.6618242,-0.17356683,-0.2433419,-0.5315629,0.34118578,-0.48967996,0.2644757,0.14796741,0.043739572,-0.3234222,0.1227246,0.2859286,0.7520688,-0.026061324,-0.09245923,-0.41034657,-0.050724037,0.47817454,-0.34647292,-0.1692443,-0.33155304,0.082178086,-0.54367346,0.3868305,-0.0805975,-0.25769424,-0.011508661,-0.10427397,-0.023943152,0.41051093,-0.29207966,-0.19136,0.13387652,-0.035009407,-0.34856582,-0.08541345,-0.31469616,0.28032526,0.046373077,-0.12240059,0.18004563,-0.058679402,-0.06009306,0.3598962,0.12682295,0.2839005,0.25727355,-0.06283331,-0.29354453,-0.060732037,0.15999524,0.31917158,0.07899537,-0.0928271,-0.20606428,-0.32596704,-0.24795252,0.27894127,-0.1585162,0.24638306,0.09960998,-0.45932478,0.74113876,0.12434847,1.1062934,0.12543745,-0.36788458,0.06397034,0.43888894,0.14023611,0.1918568,-0.23843129,0.8474832,0.5195051,-0.06259648,-0.1924373,-0.34046587,-0.2876095,0.27074796,-0.23862603,-0.24778903,-0.114807785,-0.57489663,-0.2406524,0.16156662,0.22021045,0.12814718,0.0020837819,-0.15853475,0.10478087,0.17311978,0.4963908,-0.49996555,0.010643679,0.35281456,0.2016229,0.09102033,0.24598882,-0.26968607,0.4910028,-0.61649716,0.18613742,-0.4934174,0.23259942,-0.016291814,-0.13413225,0.23905417,-0.06901283,0.33746853,-0.18111496,-0.29808566,-0.28571382,0.6830077,0.09490385,0.25203213,0.782973,-0.2594113,0.044718813,0.055327095,0.46394882,1.2791263,-0.05290295,0.02295264,0.3329731,-0.29962546,-0.63739985,0.23157454,-0.30214226,0.10734373,-0.098121375,-0.35321683,-0.34360892,0.28712216,0.09350378,0.07354541,0.10401974,-0.5621476,-0.29270902,0.53155535,-0.15543579,-0.16913007,-0.19332407,0.34486413,0.7458248,-0.4412682,-0.30365986,0.040283974,0.25553298,-0.19478627,-0.5395081,-0.009738543,-0.24429439,0.42109203,0.09834821,-0.2772621,0.08142506,0.32581013,-0.38102013,0.1905964,0.40043914,-0.28988886,0.17235291,-0.16731584,-0.16801623,1.160568,0.0039779088,0.08411249,-0.7104216,-0.5036038,-0.9693305,-0.36857563,0.20682983,0.17880735,0.013226502,-0.58297795,-0.050741892,-0.02873514,-0.01954775,0.08660106,-0.5666985,0.45365566,0.114581905,0.39889738,-0.042488314,-0.86444,-0.10763704,0.09289677,-0.22504032,-0.5894011,0.7063538,-0.22445065,0.75591326,0.12008967,0.10566825,0.06893646,-0.5915007,0.2921707,-0.41736877,-0.08764407,-0.7748484,0.086009815,728 +22,0.37147364,-0.12697075,-0.5270509,-0.09708414,-0.19153626,0.19360961,-0.13789861,0.49348998,-0.0015473505,-0.3204163,-0.07109138,-0.032003004,-0.022480536,0.21081047,-0.18200064,-0.541893,-0.027072597,-0.014795633,-0.37379056,0.24311225,-0.47300115,0.25669602,-0.055872735,0.27383152,0.14843722,0.2598354,0.17533582,0.043275837,-0.02707433,-0.16940413,-0.22906467,0.318506,-0.48407447,0.08031867,-0.1443855,-0.23646952,-0.021770477,-0.36944988,-0.43319437,-0.5295912,0.2512956,-0.66694635,0.38644612,0.048851285,-0.20087202,0.36278227,0.21023098,0.20109607,-0.1198801,-0.00077188894,0.24766347,0.027112173,0.11556178,-0.16990902,-0.22019294,-0.44196022,-0.44255772,0.07400766,-0.5542769,-0.14133482,-0.01297286,0.15706958,-0.15232484,-0.030534608,-0.2613048,0.45183313,-0.3442678,-0.14700687,0.2094528,-0.10712773,0.29414332,-0.5246923,-0.07512136,0.05953312,0.08593281,-0.12610744,-0.14278825,0.11426231,0.1418568,0.39665976,-0.12761192,-0.13583408,-0.3411915,0.026313046,0.06238354,0.41652724,-0.31238306,-0.3524661,-0.23855445,0.038533956,0.21969432,0.19458131,0.035081644,-0.23610508,-0.10786317,0.007530293,-0.26725727,0.43807808,0.52888304,-0.33192194,-0.13815537,0.3839083,0.5259271,0.11845395,-0.19961813,0.1279756,-0.008228371,-0.44651812,-0.07297665,0.053988412,-0.1390653,0.43285155,-0.15968281,0.2602199,0.50152636,-0.06389462,0.07345414,-0.0056348145,-0.04625562,0.021511141,-0.23468985,-0.0742038,0.080190636,-0.3602284,-0.02736195,-0.12165336,0.6227437,0.052926525,-0.75641507,0.28255457,-0.46364868,0.16340072,-0.10926136,0.42092744,0.7035767,0.27071723,0.05826582,0.713097,-0.33844984,0.11531059,-0.122034915,-0.3391677,0.11541627,0.11625897,-0.010359399,-0.58347476,-0.10954317,0.15202059,0.0068546883,-0.018355517,0.40213048,-0.5652805,-0.088386916,0.20949739,0.82723707,-0.23001334,-0.11741292,0.63995564,1.0558062,0.88673437,0.0664344,0.7812372,0.15510449,-0.10863945,0.054411784,-0.32779193,-0.5176145,0.1319885,0.3650325,0.23436292,0.21958502,0.030916736,-0.034134716,0.47040698,-0.30573916,0.020436,-0.14747441,0.24615978,0.076359,-0.02244118,-0.25228763,-0.11103928,0.05779411,0.16490354,0.05819188,0.2791803,-0.2831072,0.25623408,0.09857304,1.5795164,-0.16373496,0.16210228,0.15498905,0.39971414,0.25214264,-0.33193412,0.061211657,0.19521025,0.49880117,0.111348405,-0.3986105,0.013133644,-0.22536242,-0.47534448,-0.09107463,-0.22169282,-0.08787092,-0.15082493,-0.5533541,-0.0113296565,-0.0054979674,-0.2878821,0.3824323,-3.1695764,0.057921212,-0.10720994,0.18383189,-0.19697237,-0.4473197,-0.17233019,-0.47906858,0.46149507,0.40238604,0.3545934,-0.5552568,0.35714912,0.2895724,-0.2853167,0.070781216,-0.6767703,-0.07184988,-0.03307565,0.3376936,0.073448114,0.02757233,0.1000682,0.27860686,0.34626928,-0.098655954,0.14251997,0.09051126,0.32757354,0.07517242,0.41020977,-0.0076608886,0.35897088,-0.17734471,-0.22415252,0.3668687,-0.3386557,0.09749088,-0.057999417,0.1855814,0.28759697,-0.37089178,-0.86311495,-0.43042713,-0.22724374,1.1420128,-0.18261898,-0.43225813,0.23070881,-0.14011319,-0.26720467,0.010888135,0.39342067,-0.08725019,-0.035514202,-0.7590131,0.14900632,-0.31640705,0.1050217,-0.11200261,-0.06001746,-0.41991588,0.62832904,-0.13642468,0.49718353,0.3956945,0.2204997,-0.31849965,-0.42663532,-0.014318652,0.88738734,0.41360924,0.016852371,-0.056640442,-0.1515258,-0.26355952,0.08124098,0.20039785,0.58417994,0.6681581,-0.0091177225,0.1617281,0.29361483,-0.024617096,-0.12212478,-0.05635634,-0.2811526,-0.019619416,-0.04057482,0.6261113,0.5455148,-0.020270336,0.5390237,-0.15647298,0.34474775,-0.30732465,-0.5038699,0.31285164,0.55145305,-0.12071231,-0.356607,0.4566028,0.41886857,-0.059922513,0.34313226,-0.6192777,-0.40842777,0.3873527,-0.22254458,-0.298083,0.33454362,-0.3173132,-0.049393445,-0.64809215,0.28253213,-0.22619146,-0.68275344,-0.60088336,-0.37527892,-3.4929585,0.14171816,-0.17907941,-0.1384724,0.0056916126,-0.17077816,0.27595335,-0.4221538,-0.36091793,0.1448828,0.101481825,0.5477582,0.0057164114,0.05178631,-0.22568825,-0.13107562,-0.20201744,0.1997949,0.18006185,0.23723955,-0.029450472,-0.3797614,-0.058692463,-0.17188925,-0.41474876,0.045782447,-0.45906764,-0.46872672,-0.12895858,-0.38332045,-0.14200711,0.59600145,-0.41174272,0.048601657,-0.21502833,-0.023928348,-0.029718915,0.3350322,0.17584616,0.08803992,-0.08474201,0.037529968,0.038323797,-0.39504603,0.14581324,0.10939828,0.26193902,0.32224438,-0.0527136,0.15617815,0.51517725,0.5547269,-0.050286025,0.67406845,0.47678488,-0.14588453,0.28546518,-0.11549929,-0.009066053,-0.49328828,-0.30156165,-0.05997955,-0.40326667,-0.38690063,-0.18378955,-0.3567042,-0.62904376,0.37671977,0.011566969,0.16536601,-0.066783644,0.34094357,0.44640377,-0.12320498,-0.040892206,-0.03400051,-0.11670184,-0.43813735,-0.3706091,-0.6124391,-0.36621732,0.092638195,1.0726323,-0.23145333,-0.045684822,-0.08424105,-0.1510898,-0.037280187,0.07673319,-0.047701567,0.20179033,0.25901937,-0.27227458,-0.5358195,0.3625671,-0.3523543,-0.16997674,-0.5420571,0.040889557,0.49793345,-0.42472962,0.4137828,0.2256994,0.2748007,-0.18829079,-0.59127253,-0.012975426,0.09307324,-0.29219103,0.5011946,0.20939061,-0.7557494,0.5545846,0.20294616,-0.12764855,-0.6603601,0.5089441,0.11112423,-0.24114037,-0.03145241,0.21558185,0.016086593,-0.045871362,-0.14130898,0.19317189,-0.32386118,0.22095947,0.2779312,-0.05131646,0.26427698,-0.22780919,0.028466856,-0.46081004,-0.10348002,-0.46439826,-0.26271975,0.055026524,-0.06703635,0.19114253,0.12885344,-0.25382158,0.37890723,-0.20837104,0.19591606,-0.11174011,-0.16902255,0.2997755,0.3714387,0.27775416,-0.40406328,0.51171046,0.14268972,-0.14594094,0.021760566,0.14493379,0.40012684,0.00086951256,0.25731844,-0.17114013,-0.11552386,0.33577245,0.72353834,0.1924048,0.44059518,-0.036073167,-0.19006401,0.047869835,-0.039408855,0.04332524,-0.06032722,-0.4914221,-0.072118506,-0.08321794,0.30792478,0.36319324,0.16782032,0.41298822,-0.06528628,-0.16031854,0.17315117,0.21669593,-0.033688348,-1.1428722,0.29929417,0.17870606,0.8154153,0.47017026,0.06120505,-0.038423005,0.49643072,-0.2981236,0.07724571,0.3513869,0.03922152,-0.26931673,0.3778727,-0.7749223,0.44373405,-0.047922272,-0.049193796,-0.11610644,-0.14027312,0.40110564,0.8671108,-0.13621703,0.1033521,0.0061016786,-0.1963965,0.15131384,-0.18681926,0.14206173,-0.48917803,-0.3973453,0.67353994,0.43902758,0.35187295,-0.117090106,-0.12351467,0.042055964,-0.083272934,-0.04112593,-0.004661526,0.08095688,-0.17012589,-0.59990704,-0.39693063,0.38262606,-0.08540602,0.100879684,0.13705742,-0.23753048,0.12571089,-0.053613152,0.004328426,0.035365324,-0.53280777,-0.0958716,-0.17266323,-0.31168607,0.5583047,-0.42010164,0.32367328,0.0626606,0.022888167,-0.16135441,0.1349383,0.068992004,0.7078094,-0.0731623,-0.028206902,-0.4240096,0.14745174,0.13008082,-0.18066628,-0.30472717,-0.36054316,0.16653521,-0.70899534,0.3027782,-0.08886625,-0.22269166,0.16337705,-0.13680498,0.08716731,0.48300406,-0.031248486,-0.2107182,0.045088742,-0.107018426,-0.20513041,0.009240603,-0.0951144,0.2570094,0.024019297,-0.09814579,-0.023907255,-0.020274095,-0.17437533,0.24660733,0.131961,0.3308978,0.28547487,0.19484651,-0.3737194,-0.067807995,0.07041697,0.45654416,0.02509796,-0.1392135,-0.14953026,-0.42593932,-0.2942706,0.1826488,-0.12937643,0.2869109,0.10426966,-0.05251387,0.6131255,-0.0896285,1.0844171,0.038601805,-0.32386684,-0.021414876,0.41989902,0.08281401,0.16343196,-0.36203703,0.8232929,0.5699048,0.0642779,-0.09185127,-0.19572824,0.10766827,0.23162082,-0.056578975,-0.1058802,-0.0666588,-0.63433284,-0.13298562,0.16300105,0.173077,0.20130882,-0.05223178,-0.091249764,0.26577255,-0.003552493,0.3080985,-0.53504616,-0.037839927,0.25513032,0.29687372,-0.08606969,0.09689545,-0.48700073,0.35191748,-0.3657911,0.0426727,-0.23738687,0.16370414,-0.07296645,-0.2862794,0.217683,-0.1795633,0.41256598,-0.30261043,-0.31203488,-0.09619379,0.5490847,0.1731058,0.1949124,0.46971372,-0.20106351,0.10115848,-0.05120155,0.5435272,1.0178696,-0.33844513,-0.031612746,0.43656898,-0.18563405,-0.6520358,0.15177582,-0.3402713,0.16239904,-0.056040436,-0.3327086,-0.18423696,0.47037905,0.17660113,0.017220095,0.07587082,-0.42971072,-0.05983165,0.34368473,-0.118346274,-0.23748364,-0.30577722,0.15570638,0.57791364,-0.24959984,-0.27597708,0.010794548,0.4042333,-0.11308561,-0.36992964,0.11013882,-0.25227946,0.27717337,0.13737392,-0.212515,-0.048678517,0.020391261,-0.37616548,0.17056538,0.2533439,-0.2585887,0.025906209,-0.15275581,-0.09135939,0.76305425,-0.19810355,0.079165176,-0.5705845,-0.3875307,-0.6701436,-0.44098222,0.22083461,0.005798494,0.099185735,-0.64808506,-0.030001087,-0.14812711,-0.107763894,-0.11760489,-0.30204797,0.51670176,0.105771855,0.30059567,-0.116455786,-0.58163023,0.13492517,-0.00035720714,-0.15259157,-0.4615484,0.5593212,-0.0895318,0.6156728,0.038231634,0.123535536,0.28840405,-0.5016369,0.109319754,-0.32979557,-0.1683677,-0.8297702,0.14221323,752 +23,0.24468338,-0.15643705,-0.5126499,-0.14078392,-0.32228133,0.15812752,-0.16043136,0.2982214,0.1641237,-0.30314705,-0.19443662,-0.17430958,0.066703886,0.5130237,-0.13886823,-0.57073736,-0.12269125,0.09603318,-0.7556391,0.39031982,-0.5843498,0.28363183,0.12536731,0.29818648,0.1863581,0.4223796,0.36461163,-0.323728,-0.29660267,0.05471142,-0.23427786,0.028461793,-0.42056045,0.1376186,-0.11920613,-0.22948392,0.13964246,-0.47246197,-0.14057375,-0.6069217,0.13195479,-0.8123375,0.28685868,-0.08291559,-0.06928355,-0.019445566,0.16064887,0.34920686,-0.39678442,-0.0075515755,0.2418039,-0.11654326,-0.094901994,-0.16616826,-0.1351895,-0.39032826,-0.36508578,-0.03152839,-0.51093256,-0.44673607,-0.16379885,0.17695948,-0.3025327,0.17845547,-0.14101788,0.18641631,-0.420157,0.004051741,0.24324757,-0.1808635,0.026891403,-0.4808358,0.052693017,-0.08511874,0.43792623,-0.09160257,-0.027510252,0.42401764,0.23796679,0.4028138,0.20581996,-0.27773044,-0.2451297,-0.15918745,0.26235798,0.4329361,-0.10078273,-0.28907344,-0.16767423,0.047638107,0.25121325,0.26662338,0.050792236,-0.2907505,-0.12467014,-0.09549138,-0.17271906,0.27931744,0.5750471,-0.22216313,-0.197161,0.38251835,0.62139565,0.18081088,-0.1745733,-0.16521028,-0.03868723,-0.47818723,-0.1757961,0.15635468,-0.024930667,0.50076026,-0.090497464,0.20617226,0.8704868,-0.19370638,0.10547412,-0.18203686,-0.09026043,-0.21009612,-0.16371864,-0.08608235,0.024251254,-0.4823417,0.02341594,-0.19890979,0.77332264,0.20339732,-0.8138925,0.33967662,-0.39332753,0.15930068,-0.08809531,0.6131432,0.4900039,0.310348,0.24436176,0.74179846,-0.4380157,0.28871033,-0.14831379,-0.47947457,-0.038950615,-0.16017824,0.05556484,-0.48093924,0.12710583,-0.17318496,0.07638251,-0.0005896372,0.2311467,-0.40632686,-0.029401982,0.15687926,0.70295465,-0.43946803,-0.06220697,0.6048723,1.0032203,0.8821705,0.011747573,1.1589625,0.3870976,-0.3141978,0.16177088,-0.49081966,-0.6413666,0.15521212,0.3299013,0.21756351,0.2191677,-0.07177313,-0.042808477,0.25210527,-0.41329747,0.15941955,-0.1302715,0.17735049,0.040604115,0.13148654,-0.36252815,-0.20301425,-0.037306253,-0.078006804,0.08726194,0.19315542,-0.27920878,0.35167632,-0.05885693,1.630984,-0.014623765,0.064030774,0.022199428,0.5462192,0.09404823,-0.073631,-0.11784619,0.4159646,0.42583236,-0.16011661,-0.6643846,0.17793933,-0.33147126,-0.53502333,-0.1588579,-0.4229607,-0.15328497,0.07563648,-0.4474672,-0.10005997,0.026582733,-0.28511745,0.43395433,-2.7754173,-0.1729519,-0.21217687,0.18668601,-0.30630943,-0.18277562,-0.028756602,-0.48144633,0.17356162,0.32414535,0.432493,-0.5616768,0.49337596,0.3810407,-0.3900757,-0.15527873,-0.63031286,-0.009656843,-0.020446567,0.40403897,-0.10207806,0.015891496,-0.10984531,0.053147607,0.5747927,-0.10918707,0.17766908,0.48247933,0.32694775,0.30419376,0.5152894,0.16830833,0.63453424,-0.30154034,-0.10326477,0.28477934,-0.26107597,0.31704578,-0.012852006,0.14793742,0.4474693,-0.4081532,-0.67429435,-0.6104084,-0.3645409,1.0623691,-0.44049475,-0.32803357,0.26916134,0.049015436,0.03514238,0.0153627815,0.43452352,-0.056748718,0.012553118,-0.6413925,0.20576537,-0.07022015,0.17976248,0.018965427,-0.012026815,-0.18779269,0.742851,-0.07755142,0.5890711,0.28086662,0.20595141,-0.03827039,-0.26760477,0.12758459,0.8145688,0.1498785,-0.051799245,-0.13059203,-0.37748623,-0.20157053,-0.2711973,0.07975675,0.29294404,0.8094818,0.07061252,0.06581401,0.21455832,-0.087696396,0.030066343,-0.037406832,-0.18868749,-0.052904412,0.008367163,0.33916372,0.5793138,-0.1259814,0.4718291,-0.28687888,0.36980173,0.032158468,-0.45226076,0.59516674,0.36910602,-0.14490339,0.015261084,0.31696385,0.597322,-0.39488715,0.40674454,-0.62878174,-0.16561732,0.75349164,-0.1417744,-0.32021,0.11550551,-0.22317299,0.09845843,-0.81358284,0.2825026,-0.19990088,-0.33905864,-0.39735517,-0.112936795,-2.7748075,0.18356197,-0.23846963,-0.28607142,-0.1196959,-0.038665034,0.17306569,-0.71416473,-0.4050948,0.019831285,0.17301697,0.5664397,0.13069156,0.09851717,-0.22251414,-0.016947066,-0.13857798,0.09095273,-0.0753332,0.27267942,-0.07818076,-0.37784478,-0.06116209,-0.14196008,-0.43839532,0.2206965,-0.4978112,-0.41147253,-0.17940189,-0.38805005,-0.24195138,0.50902057,-0.30464828,-0.049421817,-0.18421175,0.040367775,-0.23762837,0.16413648,0.25388327,0.065878324,0.22562908,-0.08046079,-0.006554407,-0.4176361,0.35301313,-0.016266627,0.35951334,0.25557426,0.16002925,0.12561737,0.31540897,0.5560247,-0.16144341,0.77051747,0.21956955,-0.10201494,0.25084203,-0.24074554,-0.11340604,-0.57226515,-0.37140256,-0.18030459,-0.33014977,-0.55045617,-0.034255538,-0.2852001,-0.7628727,0.4787786,-0.037214037,0.21499434,-0.042796545,0.15620591,0.48954177,-0.1447263,0.025058543,-0.13597839,-0.030696757,-0.4973811,-0.4284792,-0.7028236,-0.496229,0.13856646,0.92288744,-0.16392651,-0.11208579,-0.19352634,-0.33678278,-0.019687517,-0.012054235,0.04646738,0.40318888,0.2894726,-0.24124381,-0.59328663,0.5399664,-0.04740816,-0.05719935,-0.40771186,-0.05424931,0.5293808,-0.5978167,0.47854283,0.3981605,0.08378482,0.26308414,-0.40066195,-0.29518396,-0.07038204,-0.17358764,0.28725255,0.037471827,-0.7231698,0.45780396,0.22410582,-0.37389547,-0.77655476,0.22977765,0.056584157,-0.28839877,0.05180304,0.28007048,0.11514853,-0.12757054,-0.29781634,0.13185406,-0.38129878,0.30632228,0.3268769,-0.023149276,0.06520655,-0.11085052,-0.3525116,-0.5568841,0.00018971808,-0.4066738,-0.15037675,0.2594107,0.016278457,0.11381685,0.11720868,0.10008524,0.38922092,-0.335237,0.043684218,0.118086785,-0.26599425,0.08382141,0.30701205,0.3881887,-0.43701485,0.5364876,0.076894425,-0.1848422,0.0956989,0.023904208,0.4129152,0.2020105,0.23563696,-0.10343294,-0.2661916,0.49891213,0.6710447,0.18120833,0.33992073,0.055546828,-0.2516143,0.43495747,0.09091763,0.11301852,0.12608722,-0.3170016,0.09502018,0.099645294,0.25386468,0.35607585,0.30507842,0.51610076,0.059199024,-0.13563809,0.101925336,0.1394254,-0.1463957,-0.7843897,0.28003925,0.27314305,0.8429385,0.4251594,-0.08836047,-0.18516275,0.6823058,-0.28747678,0.16413607,0.3364756,-0.020400448,-0.513537,0.6878516,-0.5811303,0.40628636,-0.23612095,-0.12238247,0.113824286,0.13531365,0.20660266,0.7380867,-0.19780493,0.009288795,0.07994844,-0.2727017,-0.025884852,-0.30302036,0.103326544,-0.49986088,-0.33053225,0.5706094,0.23064223,0.24438155,-0.049537938,-0.081589125,0.012114449,-0.17247045,0.15952988,-0.004245978,0.122308426,0.229586,-0.52355886,-0.37248117,0.4887668,-0.14359117,0.23489329,-0.13839178,-0.3748043,0.035861693,-0.3703091,-0.045598075,-0.00091444043,-0.56675,0.07346827,-0.11874123,-0.43981197,0.20916797,-0.19408691,0.21802644,0.20696351,-0.027849674,-0.1927051,0.3393723,0.12991928,0.8219714,0.010242939,-0.2932632,-0.33373556,0.027944867,0.35281962,-0.19992624,0.19388399,-0.36677405,-0.09761812,-0.57219696,0.5888545,-0.11338297,-0.31677288,0.20799932,-0.33189118,-0.05904767,0.61189026,-0.067905106,-0.15470445,-0.094013534,-0.046980623,-0.38678688,0.12497013,-0.39843535,0.19294278,0.24977903,-0.055336975,-0.11793023,-0.12996855,-0.11828103,0.46086803,0.12383175,0.47835922,0.10787292,-0.06572754,-0.20640033,-0.030981489,0.16119182,0.34240386,0.26386172,-0.031695012,-0.3368463,-0.33909482,-0.20578133,0.1667031,-0.16996263,0.15146403,0.13108452,-0.3039549,0.731454,-0.021590699,1.1736596,0.18889731,-0.29056415,0.053591013,0.4723393,0.014967712,0.18252671,-0.42109367,0.7698328,0.49140784,-0.05003009,-0.10816344,-0.37581435,-0.22029726,0.4271085,-0.26747546,-0.067556076,-0.021001043,-0.4863884,-0.46892846,0.28050783,0.1060898,0.10994968,0.03233831,-0.06250701,-0.011321467,0.077500485,0.5958897,-0.62868905,-0.21076997,0.12721048,0.075545505,-0.05492303,0.28056127,-0.45319426,0.5602893,-0.658704,0.13271178,-0.30004,0.10520243,-0.19868934,-0.27077284,0.1286956,0.056767732,0.42393738,-0.2800649,-0.47506708,-0.13331892,0.5991577,0.0937984,0.40442464,0.57708955,-0.30491915,0.09299618,0.14605758,0.48418134,1.0845773,-0.4402051,0.064411476,0.42664036,-0.33816314,-0.5479629,0.42659375,-0.24577843,-0.1114437,-0.09399324,-0.38197353,-0.39595288,0.44695333,0.23690614,-0.04741946,0.16538016,-0.4706951,-0.00264625,0.47955972,-0.29007855,-0.33137122,-0.18664543,0.42754996,0.72695166,-0.3842187,-0.20041978,0.102597386,0.2869287,-0.33034053,-0.40418315,-0.11451412,-0.20227051,0.33510858,0.017941061,-0.19864172,-0.06626775,0.08996073,-0.2797018,0.15660018,0.18973239,-0.38545614,0.024719672,-0.09984699,-0.039202668,0.8217314,-0.13394938,-0.09774869,-0.75184494,-0.40723357,-0.8708803,-0.5699341,0.31287503,0.11778342,-0.049471978,-0.24783202,-0.022822887,-0.064051524,-0.173235,0.08042767,-0.48064333,0.3987594,0.16881311,0.42286465,-0.23507595,-0.9090293,0.031456154,0.05025058,-0.22094569,-0.5270972,0.56362206,-0.11666289,0.8252504,0.020420333,-0.10476029,0.0812704,-0.33668038,0.19894342,-0.47677264,-0.17245881,-0.707754,0.12188827,796 +24,0.4242911,-0.064757906,-0.3890882,-0.17723948,-0.20670892,0.17333321,-0.16973692,0.30532765,0.11601406,-0.4767484,-0.10740331,-0.13806625,0.07223625,0.13458854,-0.216201,-0.58113015,-0.07169811,0.12997584,-0.29967952,0.5321983,-0.43238544,0.54341376,-0.048695516,0.18856707,0.11052357,0.38197336,0.17459354,-0.12206581,-0.2561959,-0.11765644,-0.20698255,0.42116296,-0.39451277,0.055746548,-0.024423866,-0.3522735,0.034600515,-0.2682724,-0.3058592,-0.64056003,0.28681424,-0.65114105,0.33592987,-0.06518323,-0.26608253,0.4348672,0.046599627,0.1700012,-0.11865962,0.04316466,0.07466078,-0.24423088,0.032975834,-0.27407268,-0.18886606,-0.39061955,-0.57071155,0.025266396,-0.4403926,-0.32307804,-0.43152735,0.106072634,-0.32454187,-0.11324226,0.038195167,0.38018176,-0.5929306,-0.042631045,-0.017527139,-0.12112568,0.23438393,-0.6125755,-0.17055413,-0.073194005,0.1870423,-0.3534684,-0.073799856,0.36102897,0.23210208,0.44838104,0.041440543,-0.14877906,-0.5303285,-0.21028817,0.27091205,0.42505506,-0.1935755,-0.3983476,-0.052267045,-0.11037204,0.07989904,0.12668346,0.03775684,-0.118100196,-0.18323348,-0.014059806,-0.27487648,0.14306107,0.44232446,-0.43817753,-0.3458232,0.36849245,0.4621932,0.0647913,-0.1862935,0.0074697384,-0.0038423617,-0.3430716,-0.21324901,0.09005708,-0.18103272,0.489177,-0.13466826,0.23478244,0.6356708,-0.23623581,0.10691396,-0.15762419,0.051197175,0.014991802,-0.14813296,-0.15855119,0.18875028,-0.42150444,0.07544686,-0.20445406,0.8084829,0.09908045,-0.74163914,0.3376638,-0.42639136,0.040849257,-0.055831026,0.4707074,0.5028128,0.41505674,0.29051328,0.5859628,-0.48233026,-0.032953013,-0.04553541,-0.35193235,-0.013835237,-0.13291031,-0.09279825,-0.5284199,0.124545656,0.13873911,0.025358856,0.06683658,0.52810794,-0.42574412,0.029214362,0.12170702,0.7179277,-0.37619537,-0.088220164,0.6840582,0.97559404,0.89269143,0.0057365852,1.0092794,0.22099364,-0.28620675,0.046639834,-0.4488314,-0.47088376,0.20713726,0.3285485,-0.040025495,0.18396793,0.085968494,0.14953013,0.34179765,-0.3478253,0.060926296,-0.23077035,0.15233453,0.09716167,0.09372712,-0.4402026,-0.3075161,0.0751445,0.10667081,0.13381281,0.29674125,-0.04723551,0.48474833,0.13445024,1.6179746,-0.0015908795,0.12695423,0.06742456,0.48073646,0.17352867,0.03372688,0.057551496,0.30668724,0.18372071,0.081559725,-0.6070034,-0.0071413307,-0.14660034,-0.61844945,-0.18584563,-0.4046585,-0.11893544,0.021929257,-0.43428344,-0.21174186,0.0148196295,-0.4310426,0.47130325,-2.6975882,-0.063282505,-0.022217084,0.23660183,-0.253208,-0.37592793,-0.05486957,-0.45763335,0.49086577,0.3645705,0.44297913,-0.6548805,0.2589433,0.46958822,-0.3980355,-0.100845255,-0.43565106,-0.22749732,-0.15075439,0.31900513,0.101239815,-0.17624465,0.08284786,0.1744669,0.4704229,-0.1820083,0.14471711,0.24799693,0.22386658,0.07508592,0.39680022,0.06155231,0.4912004,-0.06762457,-0.18881004,0.4504876,-0.3960325,0.13166997,-0.10159099,0.15598294,0.3295242,-0.39811856,-0.77805334,-0.57716966,-0.30609393,1.158113,-0.1860926,-0.46753287,0.30808625,-0.14698485,-0.22636236,-0.21687488,0.33081985,-0.15970343,0.07333413,-0.7425811,0.2323283,-0.05711833,0.07599064,0.08458015,0.07827095,-0.46703255,0.6468296,-0.046288677,0.43612036,0.34920812,0.23189683,-0.2215672,-0.41996533,0.05459189,0.91125935,0.4352036,0.20261686,-0.3257545,-0.2593211,-0.1899109,-0.12835261,0.14847168,0.37184143,0.69566673,0.04234691,0.15839347,0.17993902,-0.076366596,0.09798832,-0.142267,-0.19751036,-0.0073315036,0.06739371,0.54979175,0.4156854,-0.20302996,0.4066691,0.0009824581,0.24317014,-0.23449592,-0.3858224,0.4256928,0.9639605,-0.050699554,-0.24359763,0.61378706,0.55903715,-0.19868074,0.4062427,-0.6187998,-0.2876729,0.48017097,-0.31502905,-0.42942575,0.16346073,-0.3952176,0.09147801,-0.75919276,0.29357925,-0.17610209,-0.35121694,-0.6914811,-0.11539037,-3.626472,0.08033462,-0.1612567,-0.20607698,-0.024190418,-0.16693433,0.17756456,-0.6303739,-0.45985922,0.16796097,0.0356172,0.5829434,0.023603959,0.019666806,-0.2189225,-0.2608553,-0.25005698,0.13263763,0.019477578,0.3266324,-0.07308924,-0.5033835,0.007450998,-0.20499271,-0.46286795,0.019271504,-0.2870884,-0.5351266,-0.10328364,-0.4271715,-0.32064462,0.6418052,-0.36134255,0.089321785,-0.20328772,-0.14621216,-0.124844775,0.2586193,0.20152074,0.19173667,0.12650321,-0.067420594,0.1320628,-0.3265168,0.24885362,0.030925835,0.1479721,0.48805714,-0.15625286,0.09775691,0.5128866,0.5834254,-0.017411618,0.85266155,0.47121507,-0.21029106,0.22333513,-0.33857414,-0.22782053,-0.6363042,-0.39031586,-0.021959797,-0.3850279,-0.5264756,-0.2201369,-0.33261776,-0.70962185,0.57657343,-0.032131966,0.19014496,-0.004057949,0.25185847,0.31171393,-0.14504696,-0.11812633,-0.18283835,-0.11075957,-0.36958712,-0.35018846,-0.73268634,-0.5227798,0.04614919,0.87250906,-0.10325652,-0.13396047,0.045002364,-0.04531951,-0.06565127,0.2142499,0.22815341,0.20799008,0.23162995,-0.0487881,-0.6024023,0.62562954,0.1153912,-0.16611665,-0.55788946,0.006339399,0.40503764,-0.5330075,0.45190838,0.400815,0.013049895,0.07056963,-0.52001,-0.20467955,-0.08277511,-0.31750685,0.4172142,0.20821297,-0.6279397,0.41877964,0.23290534,-0.20865321,-0.6796157,0.52342457,-0.109559864,-0.34978226,0.025930362,0.36646912,0.18771362,0.016830873,-0.15361607,0.1923879,-0.4270366,0.25183815,0.26442346,-0.017558321,0.47641423,-0.23631646,-0.13662612,-0.7379014,-0.015118557,-0.51227576,-0.21247971,0.055213187,0.14325818,-0.020081166,0.26988792,-0.123795554,0.44218007,-0.34329942,0.052530378,0.04216079,-0.1467864,0.26042792,0.3543691,0.4615545,-0.29327133,0.53456795,0.025719035,-0.015750341,-0.20205866,0.12189035,0.48431182,0.12947108,0.28193784,0.08934759,-0.3588727,0.2691354,0.76932424,0.35754508,0.48229244,0.10148152,-0.3230781,0.302842,0.18474185,0.18614075,0.09646355,-0.34181947,0.031698633,-0.25362936,0.12626979,0.35529265,0.054159254,0.49731177,-0.18607263,-0.19050673,0.09420281,0.30833852,-0.09658724,-0.9564889,0.18527202,0.16763672,0.7875838,0.58608687,0.06990808,0.13635664,0.5421028,-0.3440241,0.069018506,0.31977123,-0.07743909,-0.55582553,0.6377587,-0.7175929,0.4187698,-0.05014,-0.068526566,-0.041664034,-0.07885139,0.31605133,0.66551423,-0.06344128,0.056354396,0.050772518,-0.34400612,0.19514465,-0.35230958,0.10439183,-0.35083225,-0.16205412,0.64794904,0.31414038,0.30667892,-0.099007085,0.02977508,0.08592947,-0.13276456,0.13062851,0.11738404,0.2285705,-0.08851725,-0.50774884,-0.3487817,0.46878007,0.0021580597,0.15533602,0.022368515,-0.1495524,0.24211918,-0.060099512,-0.102028176,0.12028843,-0.45628685,0.110566854,-0.2329696,-0.42199612,0.59473884,-0.2368089,0.33836296,0.13905272,0.061840028,-0.37557375,0.19576731,0.35494518,0.5545004,0.072410025,-0.13570692,-0.30684897,-0.05020829,0.2362136,-0.16690597,-0.19778536,-0.08934493,0.1402025,-0.55539435,0.34218445,-0.17674369,-0.1326897,0.16469952,-0.18714234,-0.03647058,0.3613288,-0.07391697,-0.18384887,-0.010307445,-0.025722744,-0.27365932,-0.13074282,-0.17482655,0.26749676,0.10248483,-0.112090886,-0.08471652,-0.13508372,-0.11200778,0.3908108,-0.020548252,0.32883093,0.27172643,-0.047070764,-0.49723014,-0.07743871,0.14285222,0.3324122,-0.14678453,0.09214903,-0.21130644,-0.46582603,-0.30068815,0.13733499,-0.1461037,0.2766027,0.17057489,-0.3241672,0.6936661,-0.16288616,0.93931246,0.07600133,-0.45133084,0.08120708,0.40466905,-0.041898403,0.06950704,-0.14969769,0.9508391,0.61446494,-0.0041450015,-0.24726693,-0.29792607,0.07403369,0.19045165,-0.1382719,-0.12132713,-0.078009546,-0.7532228,-0.33846718,0.32966873,0.2716844,0.15679112,-0.0449054,0.027202334,0.22838391,0.222278,0.32366404,-0.508404,-0.1791662,0.44412512,0.09794521,0.08398436,0.158316,-0.31296608,0.41822848,-0.50255483,0.075162075,-0.29182664,0.111360505,-0.27534702,-0.21414489,0.32309008,0.09543116,0.29485288,-0.14186575,-0.4165308,-0.26050594,0.41220614,-0.05999484,0.14779162,0.4486529,-0.1654968,0.16266294,-0.035039403,0.34396657,1.0992546,-0.1891578,-0.10330422,0.34657457,-0.3472016,-0.5527131,0.27015233,-0.27863038,0.092273444,-0.043227963,-0.2660537,-0.4758321,0.18814367,0.19694474,0.020795088,0.21123564,-0.38005012,-0.20094413,0.28906554,-0.36574546,-0.15061633,-0.16846392,0.07273061,0.6361519,-0.3267875,-0.13474047,0.050438713,0.3533561,-0.28139976,-0.5741908,0.0799837,-0.2860018,0.3405863,0.19287097,-0.33103782,0.050593797,0.20970632,-0.2916932,0.04658392,0.5117794,-0.41098157,0.0012855565,-0.37238696,0.1701244,0.8956624,-0.116061784,0.17821133,-0.5220548,-0.42126718,-0.9259058,-0.44326615,0.55049956,0.16523862,-0.027958548,-0.57561123,0.045344494,-0.22598715,-0.112370916,-0.04772392,-0.43375942,0.47046828,0.28699857,0.23827244,-0.06685098,-0.5684228,-0.006498295,0.101710275,-0.1428022,-0.463629,0.52087784,-0.17564318,0.7339123,0.04806818,0.07843051,0.3351008,-0.47177136,0.07287472,-0.23151904,-0.27338472,-0.6068644,-0.051204458,857 +25,0.525285,-0.07306313,-0.516171,-0.10330221,-0.17524827,0.11691177,-0.22626168,0.49677837,0.4451088,-0.34378114,-0.007851249,-0.14266114,-0.011452265,0.34452292,-0.093471915,-0.33896795,-0.045144945,0.076201156,-0.44181475,0.48949185,-0.5000784,0.22521956,-0.22061104,0.46130416,0.17955373,0.31216016,0.039532077,0.04618207,-0.047246296,-0.12933838,0.10694054,0.41606313,-0.43351507,0.08282821,-0.17459247,-0.20219205,-0.090372,-0.36247692,-0.47170112,-0.77565926,0.21801426,-0.636756,0.4048982,0.07340247,-0.35323954,0.13644724,0.15182531,0.18646185,-0.14258051,-0.10940132,0.0579296,-0.09622955,0.0112872645,-0.13319655,-0.21212797,-0.24241829,-0.5497581,0.05863394,-0.43573812,-0.10359927,-0.28760675,0.1637854,-0.32425204,0.01800966,-0.13220054,0.5665545,-0.40886557,0.046563815,0.2298311,-0.18548667,0.33485782,-0.62645245,-0.3045789,-0.061972108,0.15282236,-0.04292527,-0.29869056,0.26027218,0.28682107,0.37601122,-0.059069663,-0.09996692,-0.39346746,-0.07849145,0.1557639,0.35400096,-0.22710502,-0.39430767,-0.16962354,0.006789709,0.20630758,0.32422364,0.14070071,-0.2876425,-0.12907569,0.1474445,-0.25845394,0.5643319,0.60822266,-0.24847132,-0.26354784,0.31026906,0.45328644,0.31520128,-0.22098878,0.006026249,0.00053066714,-0.5539618,-0.058560405,-0.007072,-0.057743184,0.49141222,-0.10582795,0.24440695,0.48735848,-0.21473452,-0.18109994,0.08651918,0.010078521,-0.02525624,-0.37311706,-0.030320775,0.073286444,-0.41243523,0.14720811,-0.07870884,0.6849827,0.17252019,-0.65157473,0.3288624,-0.47636998,0.15602861,-0.062269997,0.5048181,0.76483095,0.29519767,0.44133943,0.645731,-0.3436184,0.08379507,-0.22394507,-0.21213846,0.1035416,-0.22286482,-0.0016697645,-0.5290912,-0.13482152,0.0059720348,-0.14621559,0.18907659,0.4718001,-0.48537266,-0.19606455,0.18684801,0.69411486,-0.20130074,-0.08332226,0.7230608,1.0749657,0.9734762,0.053579632,1.0707375,0.02236778,-0.123738624,0.23953404,-0.34338558,-0.69895136,0.34443378,0.22464828,-0.22523463,0.16478327,-0.0061482303,-0.110716455,0.3829575,-0.3819239,0.024174344,-0.027946906,0.5014019,0.1809719,-0.04248772,-0.2757252,-0.29576898,-0.04642221,-0.0713607,0.0396962,0.27541953,-0.23143005,0.3729463,-0.057857335,1.4570191,-0.071443506,0.062896706,0.1298945,0.54460317,0.2431702,-0.2752286,-0.07378531,0.43236744,0.097051494,0.18946664,-0.42139685,0.13930854,-0.229714,-0.3994173,-0.07513867,-0.44359002,-0.087801814,0.018385101,-0.24207143,-0.11243514,-0.15813282,-0.4215035,0.49834207,-3.064875,-0.33856696,-0.09318208,0.33014888,-0.18115129,-0.3290935,-0.07505929,-0.52644575,0.41044128,0.28290915,0.42197803,-0.6984099,0.16626444,0.44067925,-0.52888805,-0.18856533,-0.5562731,-0.103544295,0.0844416,0.45775822,-0.016175684,-0.00035338892,-0.034431424,0.21600671,0.45210338,0.06881468,0.17456554,0.26240134,0.26619893,-0.05210968,0.51222706,-0.06280441,0.44525743,-0.24590003,-0.2548191,0.4242626,-0.4469117,0.2860601,-0.09714874,0.087117516,0.40552545,-0.35436606,-0.8747194,-0.47501284,-0.052407194,1.2869054,-0.13477409,-0.49008256,0.3056531,-0.60733235,-0.32705587,-0.112676196,0.45696783,-0.08218273,-0.031733066,-0.7848731,0.10448049,-0.13942917,0.1328511,-0.051868763,-0.047167093,-0.2385246,0.4858353,0.008018851,0.3932561,0.40668443,0.066606425,-0.39818725,-0.59465474,-0.07783765,0.8190792,0.39524505,0.1559359,-0.2083913,-0.21355236,-0.33802295,-0.076566696,0.15794423,0.5763812,0.55322546,-0.087760106,0.16030495,0.39538503,-0.043709256,0.05911119,-0.22150388,-0.17764041,-0.08518218,-0.040191032,0.63186646,0.85651726,-0.14629549,0.4885756,0.050907217,0.25664866,-0.107995555,-0.38784418,0.4752821,0.97048634,-0.25398722,-0.25328794,0.5863648,0.340425,-0.31525552,0.43130782,-0.41161388,-0.26301974,0.477193,-0.18580928,-0.44214153,0.33039212,-0.30509517,0.03886068,-0.7288308,0.2152796,-0.4214252,-0.509607,-0.48040885,-0.045751516,-3.2680771,0.12366603,-0.24729976,-0.18969132,-0.10218835,-0.13001135,0.11651143,-0.4586988,-0.56867826,0.038223702,0.16954832,0.65801597,-0.24824347,-0.021647668,-0.27272344,-0.34598783,-0.419221,0.09380883,0.13461085,0.46232972,-0.093969345,-0.44855362,-0.066913985,-0.11473336,-0.41896367,0.1254404,-0.421185,-0.5319903,-0.11978145,-0.4428332,-0.289206,0.6213005,-0.13911422,-0.048030987,-0.2848016,-0.030744318,0.07507108,0.25756264,0.08122995,0.10417613,0.16253212,-0.09862505,-0.0807504,-0.25446692,0.1857784,-0.034297653,0.26377195,0.504558,-0.051415265,0.20903607,0.5124512,0.57607895,-0.16357806,0.98655343,0.41729492,-0.014873648,0.34358135,-0.26693648,-0.31231153,-0.43897116,-0.2007735,0.07742515,-0.4662253,-0.3976092,-0.11705052,-0.28818443,-0.6195009,0.58421755,-0.07313685,0.16143173,-0.082383074,0.25063446,0.55787086,-0.117626145,0.012814472,-0.027742442,-0.1775356,-0.61095154,-0.2624931,-0.62651086,-0.5223409,0.25254762,0.7848982,-0.29580644,0.10708327,0.07675182,-0.24115798,-0.087490305,0.08675101,0.03132285,0.16203499,0.36615765,-0.061000913,-0.5420526,0.25482005,-0.06531137,-0.08468267,-0.6056921,0.3323822,0.60573393,-0.5581317,0.64709586,0.30071998,0.053924028,-0.19931546,-0.58661413,-0.087829225,-0.078824,-0.30385956,0.58421946,0.2792506,-0.8894791,0.48387024,0.35681993,-0.20984821,-0.7458895,0.5819468,-0.08612446,-0.26960015,-0.13068494,0.4112339,0.14631149,0.08935843,-0.14541319,0.35481334,-0.26653713,0.21743542,0.265779,-0.20121816,0.42763948,-0.179185,-0.22014055,-0.66954815,-0.0068427077,-0.5513478,-0.35107356,0.23998807,0.12827857,0.049319144,0.16615078,0.055669468,0.40446416,-0.18557218,0.12898915,0.018513652,-0.18127032,0.39705724,0.46278724,0.64169765,-0.32219774,0.5334902,0.0011543666,-0.07800106,0.019837435,-0.0017767338,0.2806525,-0.024789408,0.35767484,0.12155973,-0.22885711,0.2177762,0.7404037,0.10593848,0.37070835,-0.01691623,-0.118330926,0.2290296,0.02006706,0.25355712,-0.08750753,-0.56323105,-0.037798196,-0.4232833,0.17349872,0.42032394,0.22145063,0.24866088,-0.10699135,-0.42717245,-0.008906456,0.13106263,-0.026767079,-1.3302411,0.24808954,0.14625832,0.81576705,0.44862235,0.061906997,0.00997167,0.637161,-0.11876154,0.078409895,0.46415883,0.0934578,-0.4422317,0.42716366,-0.9225068,0.465128,-0.036219694,0.028912766,0.07080905,0.0021324297,0.489456,0.764709,-0.16264352,-0.025923138,0.11595863,-0.37405798,0.2091554,-0.38878733,0.049963165,-0.6424988,-0.30915827,0.50591594,0.47337747,0.29664263,-0.21038932,-0.034365036,0.14346503,-0.14456932,0.14006801,0.0518602,0.05758955,-0.1493284,-0.5944009,-0.17609109,0.43482408,0.1973031,0.14721394,-0.034869164,-0.09124648,0.21481015,-0.10581526,-0.014731006,-0.09266551,-0.54086053,-0.18492712,-0.30208254,-0.42745233,0.5140999,-0.26455688,0.2528417,0.254144,0.14798129,-0.21513097,0.45256782,-0.04819897,0.711475,-0.04166364,-0.09697747,-0.3345429,0.08839337,0.18718731,-0.15436895,-0.123970255,-0.23828173,0.011674054,-0.4932567,0.511741,-0.0761763,-0.2415678,-0.03436428,-0.0930675,0.090110354,0.50417507,-0.14492252,-0.2516803,-0.17796476,-0.15308845,-0.34708145,-0.15668747,0.058402166,0.15955462,0.23856707,-0.22519924,-0.08510569,-0.2366059,0.029073538,0.29118463,-0.053512957,0.23331252,0.2985712,0.08904146,-0.2607077,-0.13438384,0.2730097,0.5057347,0.11470385,-0.11251648,-0.2511333,-0.4488367,-0.4320542,0.11672896,-0.041544046,0.31853727,0.06905,-0.19591814,0.57246405,-0.048099503,1.0561259,0.062437296,-0.2584238,0.011804605,0.42007756,0.046823934,-0.07639756,-0.3478434,0.724636,0.46429476,-0.23305997,-0.17793517,-0.42741156,0.017173357,0.10217177,-0.18691316,-0.076557636,-0.12190493,-0.60996515,-0.06781173,0.12795609,0.2890173,0.22890733,-0.19906217,0.043920588,0.31159273,0.08979754,0.35916615,-0.3410229,-0.18018843,0.30008718,0.37856755,0.030692354,0.033213872,-0.45314032,0.4124379,-0.4546714,0.15141611,-0.1104764,0.2211811,-0.16573673,-0.31730422,0.287287,0.0007190985,0.36374983,-0.28265536,-0.38621718,-0.24604791,0.3250993,0.12481516,0.08899788,0.5018303,-0.2349529,-0.07665475,0.08450425,0.47090507,1.1486627,-0.18776567,-0.16273536,0.2956019,-0.27344784,-0.7259384,0.29721954,-0.38051605,0.1949441,0.06370479,-0.11741345,-0.48631886,0.20468391,0.18411317,0.09244871,-0.031345285,-0.6317354,-0.14109391,0.163231,-0.348416,-0.15112485,-0.28030038,-0.08178411,0.54733825,-0.18435074,-0.34479377,0.026989317,0.33336183,-0.18594414,-0.5441751,-0.023865735,-0.26186174,0.23063782,0.00085502514,-0.31218234,-0.10015207,0.11770587,-0.47989914,0.11022849,0.15537132,-0.3574979,0.035399806,-0.27520722,-0.16671847,0.90796584,-0.3246617,0.37852746,-0.21353368,-0.47352752,-0.65345234,-0.18248583,0.22589916,-0.022763561,-0.010518391,-0.53823775,-0.0077204844,-0.22531496,-0.24760689,-0.009974206,-0.35055092,0.49339053,0.035120573,0.29761317,-0.11391819,-0.7026498,0.15055011,0.22196513,-0.10759982,-0.5717215,0.59263384,-0.105737396,0.6919318,0.0732773,0.10044724,0.35937005,-0.38002777,-0.031913117,-0.09409294,-0.164857,-0.5093788,0.04565584,898 +26,0.6011616,-0.03464178,-0.52431995,-0.18514092,-0.31669548,0.1208691,-0.13025156,0.34273404,0.25728855,-0.45382988,-0.16569367,-0.09666942,0.0613129,0.21718787,-0.1393336,-0.62431574,0.14806876,0.1284696,-0.60736275,0.536555,-0.36604452,0.31612682,-0.0036437144,0.28420487,0.13076992,0.19821668,0.10032971,-0.23720331,0.10859248,-0.13319118,-0.23051472,0.45068952,-0.475208,0.113912374,-0.045312732,-0.34483933,-0.0041167666,-0.45522803,-0.40245315,-0.8383799,0.3142518,-0.6094102,0.4579909,0.032488417,-0.3156864,0.14313363,0.22592135,0.3041747,-0.11368217,0.0036774557,0.07436623,-0.0012131894,-0.08727699,-0.07537133,-0.08921916,-0.42164838,-0.49841237,-0.08937209,-0.32009435,-0.19263624,-0.34648287,0.22760503,-0.27834526,0.004174625,-0.1485058,0.5183698,-0.32585987,0.02224977,0.23822008,-0.10314105,0.23610054,-0.564703,-0.060341317,-0.077546455,0.34134302,-0.04551023,-0.19712839,0.18259725,0.19879794,0.4573179,-0.035115283,-0.1991284,-0.2548992,-0.094663605,-0.057215754,0.49823862,-0.21010077,-0.5371765,-0.035204396,0.093498394,0.138361,0.18908474,-0.026243484,-0.24509776,-0.14029844,0.033363454,-0.23335415,0.35406902,0.52647537,-0.3014951,-0.35798347,0.35108688,0.51791495,0.20433319,-0.16609693,0.03490725,-0.031747777,-0.60459954,-0.21050167,0.061562385,-0.16144587,0.48645148,-0.056450646,0.28524408,0.56886375,0.0059401672,-0.118218005,0.1864147,0.019529507,0.023806032,-0.19239008,-0.07045309,0.14400792,-0.346629,0.2874117,-0.15337352,0.84037095,0.10134707,-0.7877841,0.16639154,-0.60141563,0.07288769,-0.15897834,0.4778387,0.6273074,0.29223448,0.27018067,0.71587396,-0.3703165,0.069129646,-0.100225955,-0.4463897,-0.08082771,0.05435369,-0.004772204,-0.518548,0.11702061,-0.024428697,-0.067954466,0.05175906,0.21157393,-0.6665158,-0.13602945,0.121094085,0.78468806,-0.34319237,-0.13342868,0.6163532,0.8669944,0.88607514,0.079892695,0.9350449,0.18725856,-0.15757407,0.21562569,-0.41026187,-0.69787234,0.30367568,0.2619442,0.010998305,0.059012454,0.00010673439,-0.05934054,0.483749,-0.27371353,-0.014662881,-0.1805397,0.27569327,0.14302164,-0.1703975,-0.28026414,-0.28430054,-0.027363848,0.021913582,0.22920853,0.13946138,-0.3157984,0.25117734,0.0447314,1.5370026,-0.059232026,0.019328551,0.092272714,0.3566522,0.22317186,-0.16231537,-0.08337167,0.24153799,0.3905319,-0.0070349155,-0.57613075,0.2047916,-0.16718327,-0.38828933,-0.15761085,-0.3069512,-0.09282381,-0.009895948,-0.41902778,-0.19163936,-0.15719618,-0.21208511,0.62138736,-2.807633,-0.047993742,-0.12077208,0.3134353,-0.1671702,-0.34030077,-0.071732186,-0.50818354,0.30877566,0.3114716,0.39524987,-0.5675107,0.49192867,0.3448355,-0.5291849,-0.07218217,-0.6760216,-0.16536093,0.030818665,0.36767942,0.18367846,-0.045494873,-0.10676372,0.15355232,0.5146326,-0.07661685,0.042149868,0.23868676,0.47817966,0.071247846,0.56346977,0.046451177,0.6474396,-0.14459874,-0.13307402,0.3235434,-0.3726135,0.20666376,0.0037280514,0.116961345,0.4331549,-0.36374795,-0.8361999,-0.5944268,-0.13287698,1.1229897,-0.22446941,-0.36440608,0.20457542,-0.28427672,-0.13366438,0.06930957,0.34980738,-0.10915148,-0.18127789,-0.7042116,0.029487956,-0.1617762,0.13385491,-0.027804984,-0.07455394,-0.38213047,0.5851565,0.008628593,0.59621876,0.24126014,0.29009986,-0.27970192,-0.5073388,-0.12274591,0.80865854,0.3116205,0.10532555,-0.1562392,-0.25896406,-0.3890063,-0.008821011,0.033387292,0.73758036,0.7273426,-0.00801032,0.1423693,0.16146079,-0.070557036,0.14534079,-0.19531901,-0.23270252,-0.09112858,-0.04509849,0.54328513,0.47509256,-0.15201049,0.4088142,0.0141423065,0.41272774,-0.23076601,-0.37148434,0.42860556,0.9962212,-0.2646569,-0.3388178,0.54151297,0.45734724,-0.09568251,0.2832864,-0.6901329,-0.3612746,0.4929584,-0.19866283,-0.3552174,0.19148335,-0.32291484,0.16996208,-0.8905035,0.29440856,-0.3446118,-0.49574032,-0.45570266,0.011847965,-3.1427,0.23243868,-0.18279302,-0.092363834,-0.1421415,-0.0670108,0.13736795,-0.44675878,-0.5671475,0.13958345,0.087008126,0.6072705,-0.009178861,0.16430955,-0.26563704,-0.05315832,-0.23009692,0.24623382,0.082912415,0.3553604,0.08917676,-0.47924587,0.04519075,-0.14332323,-0.3817656,0.17446257,-0.5003512,-0.5389826,-0.029629013,-0.5273937,-0.33510083,0.5474867,-0.33569804,-0.025507193,-0.27240634,0.021066181,-0.08773152,0.29976097,0.061228205,0.11385317,-0.002457496,-0.07090574,-0.0049681664,-0.2926297,0.27985236,-0.006074037,0.34097168,0.30195305,-0.008449519,0.23659277,0.5662679,0.5283138,-0.023877379,0.85252595,0.4936713,0.026756624,0.30258825,-0.25281996,-0.30041078,-0.3714322,-0.20224006,-0.005326918,-0.34473404,-0.3279102,-0.1993897,-0.42200062,-0.6315918,0.35279956,0.036282618,0.04056995,-0.102428734,0.18269399,0.5515914,-0.19476503,0.0021878972,0.019475266,-0.18764505,-0.5346508,-0.29975033,-0.49583176,-0.4651088,-0.028852273,1.042658,-0.31474406,-0.0670965,-0.14212933,-0.13947414,-0.054405194,0.12904021,0.070089474,0.2716276,0.4515239,-0.26846406,-0.68390375,0.47547463,-0.24805737,-0.06930206,-0.494848,0.20196275,0.443203,-0.55346525,0.4113719,0.25803393,0.18052343,0.03949464,-0.65080506,-0.090249,0.145242,-0.19729361,0.40546203,0.1766839,-0.7194103,0.42492318,0.29521945,-0.09164806,-0.72001565,0.5079374,0.081285894,-0.4782744,-0.090464815,0.34003437,0.060869426,-0.0019895548,-0.17738733,0.114725396,-0.30678424,0.3425775,0.23346111,-0.044939745,0.025523402,-0.31170446,-0.011755677,-0.7421369,-0.026512146,-0.46990663,-0.19420716,0.24162108,0.057978064,0.23964916,0.15749848,-0.050876983,0.3342931,-0.35442844,0.06428619,-0.12070042,-0.19260302,0.30793545,0.44631347,0.277694,-0.33260503,0.48452988,0.11051447,-0.2367775,-0.052892357,0.17385638,0.4102805,-0.0065014013,0.438119,-0.06581623,-0.19621998,0.3411466,0.654732,0.062948644,0.28498656,-0.07635691,-0.17035793,0.21820962,0.049462132,0.07081343,0.16552633,-0.5350364,-0.17536363,-0.22285068,0.13230854,0.48401564,0.15124804,0.27095821,-0.032433625,-0.35318947,-0.02489382,0.16616574,0.0077724387,-1.1651545,0.33610293,0.19377922,0.89972496,0.46584448,-0.030480012,0.010777501,0.5352483,-0.19064575,0.17458144,0.39180288,-0.0034745196,-0.50412667,0.4292442,-0.6223073,0.49503237,-0.08366221,-0.018021472,0.040610526,-0.112555295,0.34194475,0.9865681,-0.24670789,0.12872566,0.09139973,-0.3035739,0.23165824,-0.2822683,-0.011070826,-0.629212,-0.26099348,0.5852017,0.4777872,0.30506137,-0.13578153,-0.04033205,0.15651761,-0.09463425,-0.049479216,0.095915094,0.13601643,-0.031055227,-0.6028989,-0.22506353,0.49343738,0.01622932,0.1149947,0.018738827,-0.16961521,0.24488345,-0.15349735,-0.016971,-0.21065821,-0.5330496,-0.025142131,-0.2609235,-0.38538456,0.47125745,-0.15814292,0.23226719,0.18117197,0.06362025,-0.27880177,0.3074833,0.08935347,0.7508033,0.004450083,-0.08972185,-0.4466067,-0.032505736,0.16333036,-0.19419126,-0.18783803,-0.34671587,0.057467073,-0.5759385,0.4775006,-0.03443572,-0.25171244,0.050939724,-0.091256134,0.07838593,0.42053,-0.1730052,-0.13685013,0.007152445,0.013345084,-0.25036675,-0.055568505,-0.09875572,0.23972785,0.12358378,-0.13802142,-0.08995237,-0.117872775,-0.111688405,0.29825717,0.04920617,0.45168343,0.35130373,0.14074576,-0.26352918,-0.0053702802,0.25066608,0.5679853,-0.10105836,-0.10040218,-0.28114304,-0.4038006,-0.3484983,0.17619526,-0.09985085,0.33101878,0.06229719,-0.29294187,0.5936026,0.0017773194,1.1207522,0.04283668,-0.23440212,0.046126757,0.5149626,0.08890581,0.0039847316,-0.36385965,0.8535426,0.49171376,0.0047767567,-0.12963976,-0.28151953,0.1730209,0.10091236,-0.13506342,-0.0017703561,-0.07531821,-0.4950027,-0.25738338,0.15112281,0.17288807,0.24185765,-0.010967416,-0.073110946,0.20711651,0.029869514,0.26021838,-0.44289935,-0.12914029,0.121963695,0.25992322,0.026515495,0.1227609,-0.55098534,0.40805486,-0.46453044,0.10029434,-0.24827433,0.23423634,-0.0900109,-0.16123803,0.23640725,-0.032513753,0.26962662,-0.3454532,-0.3503734,-0.18544798,0.39787564,0.17969188,0.16692294,0.59277534,-0.25121617,-0.04816156,0.11929917,0.55962086,0.8835652,-0.32981136,-0.0022139738,0.34250838,-0.32102275,-0.60701174,0.22301242,-0.20802988,0.053278532,0.061429627,-0.23253673,-0.47073612,0.44948572,0.2353071,0.16218048,-0.08675961,-0.605585,-0.20382218,0.49976018,-0.27604556,-0.21662495,-0.28157926,0.20664011,0.5268013,-0.27991885,-0.20403638,0.15022965,0.18874188,-0.1523851,-0.66830194,0.042734947,-0.3328259,0.3901507,0.170667,-0.29278553,-0.29736972,0.07732612,-0.4639566,0.17900811,0.33694604,-0.3397954,0.055398718,-0.38165808,-0.06293149,0.90219116,-0.18436061,0.13308014,-0.5761106,-0.32875913,-0.7153363,-0.41110715,0.39223632,0.20086278,-0.031065369,-0.5247065,-0.124718554,-0.037130084,-0.2876697,-0.14907192,-0.35484287,0.5050588,0.12405637,0.3267884,-0.06323781,-0.8628919,0.06730744,0.071068645,-0.22642457,-0.456607,0.47815108,0.047206458,0.81739795,0.0893016,0.17941155,0.3349155,-0.42696548,-0.08708775,-0.27799046,-0.063290276,-0.74534994,0.08265549,939 +27,0.40458643,-0.17419901,-0.5104056,-0.07468733,-0.3922627,0.055930052,-0.21506432,0.25097662,0.19341624,-0.14131367,-0.21373135,-0.12379513,0.011335788,0.24960832,-0.07017095,-0.55049795,-0.033804122,0.25405884,-0.77114576,0.5709614,-0.47863775,0.27898243,0.014170454,0.4567627,0.19713025,0.365386,-0.059238028,0.010090118,-0.13765426,0.2172468,-0.056622967,0.3164723,-0.454643,0.12647699,-0.14454667,-0.1183787,0.04228851,-0.32238743,-0.26419064,-0.7792441,0.07253569,-0.7249326,0.5462793,-0.24946684,-0.21600693,-0.17634718,0.13563532,0.43760294,-0.36555022,-0.01439754,0.23804502,-0.25187638,-0.26386976,-0.20930171,0.014383014,-0.33617675,-0.4045419,0.011556601,-0.5871892,-0.15076637,-0.15827692,0.20259112,-0.26853052,0.06583821,0.0047761817,0.371959,-0.34668803,0.095284216,0.2970512,-0.17060721,0.063258745,-0.51195115,0.021449082,-0.10776021,0.45091796,0.07633125,-0.30458355,0.3533544,0.26080298,0.40928465,0.21682864,-0.22466528,-0.06598393,-0.16553892,0.10185984,0.38846716,-0.1402127,-0.093078196,-0.25135806,0.026209971,0.42116114,0.2306251,0.007081642,-0.24873464,-0.100023046,-0.11615818,-0.13597545,0.25595376,0.4912365,-0.21172257,-0.23012088,0.27156028,0.6367386,0.24784867,-0.21762212,0.15684964,-0.06740974,-0.42603755,-0.100571744,0.06060636,-0.03916516,0.42196748,-0.09142999,0.0010652192,0.81552494,-0.10665643,-0.12938794,-0.08258408,0.08201355,-0.050028574,-0.36247748,-0.17573169,0.059462167,-0.48109138,-0.027289342,-0.098409034,0.6155618,0.18440905,-0.6406088,0.31164268,-0.48457235,0.16735594,0.039799735,0.63287747,0.7235733,0.46910712,0.379246,0.7800265,-0.26640183,0.24690011,-0.014740817,-0.2597285,0.05791371,-0.23277766,0.06946101,-0.48625958,0.24366795,-0.33698902,-0.14794873,0.040260185,0.38311312,-0.6936083,-0.046943817,0.0749543,0.64496934,-0.3523041,-0.1123785,0.66366404,0.9847561,0.77658963,-0.06275169,1.1477491,0.4930935,-0.14534323,0.19999424,-0.39153123,-0.65014774,0.13722481,0.20804305,0.035106745,0.32626757,0.07795192,-0.17192559,0.4447076,-0.4345379,0.0042296015,-0.059041698,0.29766583,0.097396724,0.13091893,-0.42326272,-0.17830026,0.06912115,-0.015555143,0.17458577,0.23925602,-0.41025072,0.380972,0.05047562,1.5227926,-0.0889694,-0.025068337,0.13153808,0.44374028,0.19054963,-0.20729479,-0.17698891,0.5730194,0.4135814,-0.094069816,-0.57680523,0.19050135,-0.2561793,-0.37422758,-0.11853921,-0.35265088,-0.06705745,0.0018423857,-0.5082742,-0.24897073,0.010110031,-0.29517466,0.4443235,-2.627445,-0.31251526,-0.10074283,0.48366952,-0.26418248,-0.23568742,-0.21301404,-0.50651056,0.060219057,0.28886583,0.3190058,-0.5376987,0.518506,0.3412837,-0.48017666,-0.22909394,-0.63533235,-0.06032068,-0.046841152,0.46683794,-0.02008653,-0.060718972,-0.25604388,-0.012139299,0.5575724,-0.14386497,0.16900091,0.58844525,0.2376093,0.18939817,0.47928923,0.06578161,0.5978659,-0.22333933,-0.2479135,0.49509785,-0.26974374,0.22439438,-0.033932798,0.04016865,0.58501387,-0.38052034,-0.7672965,-0.6324849,-0.23400576,1.0597283,-0.50454295,-0.46740454,0.18620443,-0.22706166,-0.14962511,0.10129064,0.54208875,-0.14974567,0.017724598,-0.75210893,0.117089845,0.10945314,0.35095242,0.051143516,-0.011355007,-0.23214848,0.69331133,-0.2545632,0.6601219,0.16899726,0.26561365,-0.02175552,-0.42741904,0.15627804,0.844393,0.29355073,-0.04317917,-0.14900672,-0.30111712,-0.09056887,-0.20294675,-0.01787732,0.4631925,0.7133862,0.030283375,0.15882581,0.2709368,-0.091819435,0.01762737,-0.19703083,-0.23353113,0.013051218,0.20058858,0.5059409,0.67101836,-0.1835267,0.4467577,-0.32130304,0.3919606,0.020575186,-0.5918839,0.5742568,0.61752826,-0.25428095,-0.13547814,0.4503138,0.5487773,-0.35513425,0.42148218,-0.7198319,-0.23422042,0.7119212,-0.18345468,-0.34427086,0.20577554,-0.22728872,0.25662422,-0.70723605,0.33322537,-0.21113974,-0.5411012,-0.45577148,0.010177977,-2.6769886,0.09703766,-0.067721345,-0.14854969,-0.18848006,-0.10616109,0.20003307,-0.54600805,-0.45991915,0.10289491,0.18015559,0.4986187,-0.002702776,0.052727364,-0.30307433,-0.21750414,-0.12612979,0.13302027,0.13475825,0.33388507,-0.17238095,-0.48463833,-0.057288527,-0.14042377,-0.4840072,0.10737646,-0.68769246,-0.45836756,-0.13838577,-0.60027266,-0.17349555,0.61882347,-0.3665975,-0.031883836,-0.34749335,0.029746648,-0.11557064,0.13485773,0.11723194,0.21650934,0.18354179,-0.040641386,-0.056775928,-0.41045952,0.27743685,0.049823433,0.13294238,0.1697672,0.0976519,0.16954212,0.428648,0.56555414,-0.32588178,1.0728962,0.40585917,-0.08741456,0.25944206,-0.25751063,-0.25718355,-0.42897606,-0.23335671,-0.066062294,-0.37994888,-0.36345613,0.02972715,-0.3855416,-0.7969599,0.58644533,-0.18023737,0.28046048,-0.0036301857,0.25996786,0.53696674,-0.22966067,-0.024161935,-0.23691791,-0.24378738,-0.48209152,-0.38774803,-0.58649004,-0.5423291,0.10952802,1.1991969,-0.33124584,0.030357193,-0.083285525,-0.4470078,-0.054032996,0.03283756,0.10034708,0.39475897,0.5612613,-0.19070849,-0.5974945,0.21964024,-0.16871192,-0.09242617,-0.44296682,0.10333911,0.60135025,-0.78232193,0.61136633,0.17622986,0.18780124,0.0014058808,-0.46049014,-0.24027434,-0.014412957,-0.22902624,0.5723474,0.1570338,-0.69561005,0.45427284,0.111400545,-0.36483768,-0.7806063,0.15561637,-0.18811771,-0.24392614,0.03454085,0.4095508,-0.10430998,-0.026624562,-0.32621652,0.058581736,-0.32679018,0.1968002,0.34836793,-0.23696817,0.27264905,-0.1646975,-0.21102312,-0.6731906,-0.114505775,-0.38349262,-0.3093984,0.23665299,-0.0013496157,-0.07296077,0.006224867,0.15558267,0.37410697,-0.31938973,0.0943169,-0.07117275,-0.2885414,0.179728,0.42157254,0.3912934,-0.395728,0.4311905,0.068234034,-0.22416277,-0.06884764,0.004710113,0.3905487,-0.054179102,0.2671963,-0.17606173,-0.12629405,0.31416172,0.7471633,0.09557504,0.5720184,0.04499889,-0.26712295,0.27360225,0.005096304,0.17956227,-0.05969921,-0.3959753,0.053282946,-0.0027029638,0.2359528,0.53556436,0.4389238,0.3653567,0.08039072,-0.28260124,0.013153949,0.11122909,-0.07879852,-1.20699,0.22975639,0.17846969,0.7954195,0.2944079,0.11294456,-0.123995975,0.6928325,-0.1907582,0.06345016,0.36039612,-0.047866765,-0.4050363,0.69348526,-0.63506675,0.45923492,-0.21924555,0.0067363004,0.31056973,0.1793509,0.3791198,0.81184536,-0.20007262,-0.027628005,0.038451653,-0.027744524,0.07749993,-0.33195668,-0.006782361,-0.44830707,-0.40353984,0.69785064,0.4280461,0.34409022,-0.34367824,-0.033808284,0.035784993,-0.2073447,0.20413662,-0.016649147,0.09409955,0.12921943,-0.5099495,-0.1964422,0.4878168,-0.05868396,0.025102276,0.026659608,-0.2628975,0.003987244,-0.291668,0.0030720935,-0.08051161,-0.6516662,-0.18318108,-0.13438518,-0.5165858,0.3846975,-0.09452915,0.11380316,0.19702405,-0.023849964,-0.36105067,0.40602997,0.031567603,0.92735153,0.097738564,-0.27862334,-0.29248798,0.0802237,0.35285613,-0.2406956,0.15213235,-0.3784462,0.039876718,-0.5232196,0.5195896,-0.1296787,-0.44545785,0.23013534,-0.21217403,-0.14153722,0.51695424,-0.10749031,-0.15759282,-0.052526608,-0.17985469,-0.38759893,-0.004839308,-0.3247605,0.112647444,0.22822714,-0.13720764,-0.08014113,-0.17410122,0.012072996,0.65384036,0.14974296,0.41457605,0.2924246,-0.03098826,-0.18982881,0.18167503,0.20260668,0.46652532,0.1439532,-0.11145611,-0.35669434,-0.28023884,-0.16523738,0.21452124,-0.08588685,0.21063247,0.14900486,-0.3057257,0.97812754,0.008919749,1.1923429,-0.024911078,-0.25902003,0.13905539,0.5250463,-0.08165563,0.16431366,-0.43756944,0.7583295,0.4555584,-0.031719595,-0.01161677,-0.3414314,-0.26932502,0.3873115,-0.34346128,-0.008194349,-0.13238811,-0.519621,-0.54165775,0.26236415,0.1834375,0.16591038,-0.021805318,9.1724534e-05,0.050408386,-0.06551722,0.21309763,-0.5193446,-0.12315593,0.22514355,0.1760241,-0.12371141,0.14539589,-0.3843389,0.56267494,-0.66075975,0.1696489,-0.3663748,0.11586101,-0.16202687,-0.2977003,0.08330883,0.033305842,0.36963338,-0.40057647,-0.20437801,-0.25657716,0.60299134,-0.059295688,0.109038144,0.6446816,-0.30797723,-0.0119826235,0.13770762,0.48861235,1.0734098,-0.38134745,0.10901963,0.27340922,-0.30381468,-0.56158483,0.3970968,-0.20463285,-0.062387984,-0.088696174,-0.4194617,-0.42002925,0.30300564,0.13419081,0.056064513,-0.07762665,-0.5388504,-0.052019957,0.41098562,-0.2488582,-0.089351594,-0.10595894,0.35119587,0.73141235,-0.17291169,-0.45141268,-0.019418793,0.2541513,-0.32764944,-0.38619873,-0.13243523,-0.3211841,0.396628,0.0634295,-0.26179668,-0.08747211,0.15519132,-0.42289305,-0.015049394,0.21946713,-0.33830452,0.11508967,-0.13138689,0.053628493,0.9574933,-0.18830939,0.033525277,-0.6369464,-0.5298775,-0.9472327,-0.33614337,0.24757595,0.22579373,-0.10180497,-0.41352394,0.047895323,-0.25009555,-0.20761465,0.18328775,-0.49436447,0.31104583,0.20870596,0.43205652,-0.31018314,-0.9093156,0.082990155,-0.01201271,-0.2222699,-0.6289703,0.5121398,-0.098668635,0.7956455,0.057926126,0.047759265,-0.025448779,-0.31881595,0.19914612,-0.2741776,-0.05022216,-0.79577184,-0.010178196,976 +28,0.49967554,-0.005362355,-0.6118299,-0.27165684,-0.4953663,0.20572762,-0.24548474,0.22578453,0.16468816,-0.3453899,0.03548696,-0.104678914,-0.075576656,0.30582023,-0.08109404,-0.7132856,0.17395552,0.21218468,-0.6500741,0.2984099,-0.4356563,0.36247054,0.017008387,0.3494233,0.07854388,0.3197039,0.11613001,0.033480525,0.004532084,0.037185904,0.06950168,0.47524303,-0.650784,0.20785652,-0.066062674,-0.27756476,-0.070365265,-0.29195654,-0.25790867,-0.66109216,0.17554556,-0.65317136,0.4432887,-0.12611257,-0.41143787,0.10662028,0.05420567,0.26035193,-0.30329394,0.059724636,0.3105045,-0.3310727,-0.12816486,-0.18212628,-0.31442496,-0.5899411,-0.55462325,-0.09759769,-0.598287,-0.034139518,-0.34691587,0.23075333,-0.27763534,0.011871703,-0.08357443,0.31303388,-0.42434475,0.16674796,0.21036468,-0.24077483,0.1010745,-0.2757076,-0.048432652,-0.14292343,0.23184894,-0.011427492,-0.39566663,0.26283634,0.30947676,0.5023751,0.1081518,-0.3123825,-0.27223673,-0.10433073,0.07026782,0.48998684,-0.1051659,-0.06541465,-0.29077026,-0.10340719,0.34018895,0.0795486,-0.046950556,-0.44997507,-0.04579874,0.081937015,-0.18287416,0.25852892,0.53218436,-0.39013046,-0.20201299,0.36708623,0.46526256,0.05841674,-0.2734253,0.2928254,-0.12355547,-0.5346539,-0.17279331,0.13526635,0.052733954,0.38223782,-0.18802404,0.0363396,0.8467388,-0.109256335,-0.12704869,-0.09159507,0.06955048,0.052865017,-0.24094158,-0.04655762,0.1491521,-0.596253,0.05390094,-0.0903944,0.80206585,0.08880526,-0.843006,0.3568372,-0.4791901,0.105778486,-0.12758088,0.5796051,0.9558332,0.42935967,0.14690891,0.78943056,-0.33755904,0.12103118,-0.039854724,-0.3732579,0.22343211,-0.23098126,0.030242205,-0.45948762,0.16318269,0.045117315,-0.11752468,0.15563214,0.37274402,-0.42685205,-0.09337937,0.042363405,0.5421042,-0.47091305,-0.060143877,0.61747575,0.8688613,0.96077645,0.15819281,1.3636032,0.42177,-0.09027512,0.27270097,-0.29431972,-0.49983618,0.15622143,0.26667714,0.25456092,0.2053937,0.21298058,0.24447447,0.5807333,-0.2533812,0.0048441067,-0.012838532,0.14053106,-0.029407183,-0.07695156,-0.42785913,-0.26389673,0.23283845,0.15075794,-0.14922777,0.33950165,-0.15282679,0.43297005,0.18230218,1.3133161,0.14327243,0.045958318,-0.01934874,0.40961403,0.19480784,-0.20006402,-0.11563788,0.31515485,0.35911828,-0.104961395,-0.3667811,-0.040561438,-0.18014571,-0.41960248,-0.23071319,-0.50055146,-0.09258161,-0.17569862,-0.5674071,-0.12745059,0.1824502,-0.2972738,0.44968855,-2.4381156,-0.2787866,-0.13076422,0.26278707,-0.044974007,-0.34808594,-0.475378,-0.49367478,0.18182169,0.31313372,0.35284412,-0.5848787,0.5115042,0.3050934,-0.40299547,-0.18206589,-0.6481279,-0.08117361,-0.12577671,0.3339816,-0.034701683,0.051705487,-0.1287741,0.34471327,0.7314905,-0.16037497,-0.07772742,0.17060639,0.3375886,0.034313098,0.5770011,0.22318923,0.62283146,-0.22200648,-0.2477369,0.3198641,-0.39291078,0.27059165,0.19638215,0.13447754,0.42899632,-0.3826832,-0.93998927,-0.5677449,-0.27915996,1.1832378,-0.45168427,-0.2712835,0.28325146,-0.22233725,-0.29903185,0.03019403,0.35613823,-0.061225414,0.18144354,-0.68425417,0.059518553,0.01569872,0.13825205,-0.09281495,0.1275664,-0.12908565,0.67228115,-0.2142255,0.38107485,0.35584408,0.123643495,-0.047893003,-0.5580463,0.06642834,0.8486676,0.30353236,0.14009301,-0.21750611,-0.24121654,-0.17185478,-0.17525624,0.24585271,0.49517328,0.5533418,-0.0043423474,0.1457467,0.2834507,-0.15886882,-0.03411776,-0.19002748,-0.29822925,0.013018411,0.09954755,0.62087524,0.6142378,-0.17277665,0.40807867,-0.16438176,0.16693807,-0.09667182,-0.5815406,0.39763397,0.9441662,-0.20101064,-0.26684523,0.4298333,0.3593739,-0.37241372,0.35184643,-0.55521286,-0.27441925,0.549268,-0.110405296,-0.39108774,0.08380042,-0.342058,0.06541626,-0.82531697,0.37229586,0.05138555,-0.71330565,-0.49330303,-0.1584171,-3.6018813,0.13680035,-0.095471725,-0.15956903,-0.03922618,-0.22423929,0.3112175,-0.5095421,-0.44229412,0.021748144,0.013857922,0.52199167,-0.045789026,0.026910502,-0.3656268,-0.3917981,-0.13929325,0.21914712,0.11856086,0.3391727,-0.087850735,-0.3983205,0.14152488,-0.34929356,-0.49638754,0.020830475,-0.6749504,-0.5901474,-0.08733734,-0.43761918,-0.2831269,0.68742687,-0.49680248,0.02200938,-0.25374037,-0.044068377,-0.25598523,0.2943203,0.2492247,0.1635048,0.08818822,0.15912095,-0.1225985,-0.3291925,0.14259338,0.10827776,0.28123617,0.40275332,-0.06566627,0.17659225,0.79182976,0.5829097,0.058602672,0.83400047,0.34784225,-0.0827799,0.21651131,-0.30586982,-0.20195201,-0.7148187,-0.34983233,-0.41143653,-0.4629817,-0.34339547,0.00047251582,-0.3053046,-0.8194623,0.4812474,-0.027233332,-0.03883186,-0.13179767,0.20580378,0.3634124,-0.11289996,-0.035653263,-0.080223,-0.3235162,-0.51348996,-0.44281304,-0.65163267,-0.71523356,0.15749882,1.3055425,-0.16588247,0.028208494,-0.10738071,-0.26995575,0.08570935,0.21575068,0.17701446,0.23570098,0.40426767,-0.17394826,-0.6623713,0.3216309,-0.27735612,-0.07759088,-0.6369814,0.045342278,0.692608,-0.6879519,0.5385511,0.3016315,0.20039377,0.09444763,-0.63675404,-0.28435907,-0.05393315,-0.2569352,0.62158865,0.1944685,-0.6963811,0.51785874,0.044662762,-0.22111279,-0.5718675,0.49710685,-0.1404776,0.017568173,0.14060435,0.33707774,-0.0287686,-0.2126229,-0.045089733,0.31847894,-0.45081335,0.2856677,0.4182711,-0.028154392,0.29491964,-0.09616865,-0.0747643,-0.6198287,-0.341707,-0.472893,-0.29544255,0.03074488,0.06415415,0.08407713,0.056196257,0.0039694253,0.3906714,-0.240115,0.11696774,-0.19424263,-0.31842005,0.40257192,0.49622613,0.3971979,-0.32878023,0.5601886,0.12377044,0.13840695,-0.08287,0.09757414,0.52311766,0.12636992,0.3905362,-0.1588464,-0.13805646,0.0662667,0.73935986,0.2847243,0.26976317,0.064434156,-0.18207091,0.2574387,0.2198072,0.11074944,-0.1297325,-0.18490025,-0.08631824,-0.09899032,0.26202214,0.28543413,-0.01324698,0.41010493,-0.13296884,-0.20833966,0.2903448,-0.0048172586,0.063283265,-1.3760532,0.32039905,0.29444072,0.5568278,0.33857912,0.082870625,0.08723843,0.54006636,-0.35300183,0.025727639,0.439813,-0.06939554,-0.2951909,0.51186657,-0.7448341,0.5461654,-0.13549134,0.04498659,0.18612619,0.31729975,0.33583742,0.92122626,-0.109733485,0.11244135,0.019851856,-0.3743492,0.1859251,-0.32018888,0.07603615,-0.54733574,-0.33168337,0.718444,0.4287817,0.28255355,-0.3794652,-0.10776289,0.0059647504,-0.17438118,0.046105705,0.013161626,-0.03567162,-0.07424469,-0.59163517,-0.29116747,0.5613277,-0.08175066,0.023952581,0.16504055,-0.33281717,0.36350042,-0.019356199,-0.03865262,-0.13024946,-0.49696213,-0.12745196,-0.24768458,-0.5467142,0.48439962,-0.35399604,0.25735858,0.3143845,-0.003938061,-0.27887663,0.4236471,0.15382417,0.6821108,-0.042212322,-0.25718448,-0.23890084,0.15898773,0.34536332,-0.21514206,-0.09565331,-0.4124058,0.089422524,-0.53586715,0.22854842,-0.3449408,-0.28532907,-0.0042917877,-0.1219526,0.05341818,0.3441096,-0.07180983,-0.15756556,0.04552698,0.113076374,-0.22751433,-0.072072774,-0.288765,0.26967356,-0.09339531,-0.14957713,0.00927715,-0.22039026,0.065118626,0.34021658,0.077097856,0.27429047,0.23777527,-0.14060569,-0.30901486,0.05686866,0.07654264,0.332224,0.100266576,-0.12065505,-0.29252982,-0.24311782,-0.33112603,0.2663098,-0.1422636,0.1674806,0.14700903,-0.41827238,0.9416137,-0.11139108,1.1973822,0.07857083,-0.34336737,0.23135486,0.47435346,0.124287575,0.18440802,-0.20276418,0.71803653,0.5833611,-0.08514167,-0.33716658,-0.37122908,-0.20541109,0.12508476,-0.28167358,-0.26015347,-0.06395945,-0.8014374,-0.15534179,0.039241403,0.113043256,0.2849952,-0.12571132,-0.09345791,0.15358649,0.029140122,0.39418134,-0.48036346,-0.0067601986,0.28969473,0.353092,-0.079099655,0.16236186,-0.2591653,0.44551122,-0.6346402,0.15774435,-0.41884387,0.10982862,-0.21723917,-0.1793473,0.18853456,0.07867865,0.31189555,-0.22181332,-0.16523449,-0.3201408,0.72201145,0.13757926,0.26886398,0.6656977,-0.24009591,-0.16452512,0.20156574,0.26465347,1.1809131,-0.11094239,-0.016140597,0.41730332,-0.23471574,-0.43843138,0.08114388,-0.3842622,0.13777637,0.017095994,-0.3918228,-0.30035174,0.28742275,0.1025006,0.003893081,0.10672169,-0.4230918,-0.07221669,0.43691304,-0.32763818,-0.26843104,-0.27281472,0.26835158,0.5427482,-0.4553655,-0.33260253,-0.0056955814,0.24706645,-0.37550652,-0.5268498,0.13298887,-0.32882315,0.40704384,0.1701825,-0.49471256,0.12347385,0.33637187,-0.32504568,0.046024792,0.4946233,-0.29467407,0.03031219,-0.26655227,-0.008360803,1.1012633,0.08746097,0.13178606,-0.54489505,-0.52393115,-0.96246237,-0.21902467,0.32535917,0.31396142,-0.03431168,-0.512465,-0.16097519,0.02097328,-0.15317829,0.07689078,-0.5686791,0.3978987,0.19292054,0.35524845,-0.04570064,-1.0531404,-0.0922676,0.1004909,-0.171832,-0.56533647,0.5367769,-0.27266103,0.83696526,0.20323251,0.16627976,0.13712296,-0.4648018,0.30344394,-0.33543432,-0.041838434,-0.7178791,0.06450989,6 +29,0.50849724,-0.36780077,-0.46201676,-0.17997314,-0.44357806,0.06040158,-0.41297927,0.3304576,0.32103652,-0.31871483,-0.22854535,0.1757577,0.062152594,0.43418038,-0.18074353,-0.5442007,-0.1141921,0.21400881,-0.66240203,0.5423376,-0.52822214,0.2750311,0.09843367,0.40666598,0.3004858,0.39437866,0.29355988,0.08775619,0.026685141,0.017657561,-0.022135228,0.26542592,-0.47490776,0.088169985,-0.19284274,-0.394498,-0.12661907,-0.45181274,-0.17648757,-0.81626713,0.15926698,-0.9280983,0.5133592,-0.20090486,-0.31062448,-0.20932211,0.34762174,0.36456788,-0.32387525,0.15868026,0.19581577,-0.1631602,-0.2673679,-0.2931153,0.002417978,-0.4611915,-0.5123801,-0.08334892,-0.5540419,-0.06329785,-0.13722706,0.306963,-0.30560887,0.048210863,-0.17120686,0.2556395,-0.4788705,-0.10519039,0.27278087,-0.10216146,0.20127507,-0.57030964,-0.09062263,-0.18509185,0.4030031,0.13243903,-0.335236,0.32169676,0.27838692,0.43071654,0.3094831,-0.21610144,-0.30427963,-0.09987138,0.22704391,0.3851604,-0.22846685,-0.16652729,-0.3777688,0.026563987,0.595019,0.3660854,0.031766508,-0.19178845,0.008010838,-0.21417265,-0.19754057,0.49573302,0.45260465,-0.26281267,-0.23264915,0.23540455,0.5418348,0.21834795,-0.2959565,0.17592078,-0.006243963,-0.5373712,-0.14789951,0.17018746,0.024902053,0.42490208,-0.172434,0.16888899,0.6578538,-0.070420176,-0.07350424,0.06339988,-0.03834012,-0.2503227,-0.31247088,-0.2772137,0.15408242,-0.57232785,0.014631838,-0.2193533,0.59559,0.103531085,-0.73706466,0.26473108,-0.5051384,0.2601768,-0.028538715,0.6046151,0.8333515,0.55331707,0.26147038,0.9220813,-0.19423014,0.20532988,-0.15247762,-0.29977265,0.08883336,-0.31097174,-0.03802186,-0.56038326,0.25868767,-0.2522232,-0.06896789,0.16006503,0.68162626,-0.52579105,-0.14078589,0.14851324,0.64162207,-0.39111003,-0.019562088,0.9034894,1.0449728,1.2135623,0.09126777,1.1648542,0.3728028,-0.057032675,-0.124089815,-0.18200749,-0.5938716,0.2427869,0.43366927,0.040534616,0.48980695,-0.07728936,-0.095723584,0.39312243,-0.5111186,-0.09624271,-0.05636964,0.22230534,0.11703184,-0.048426725,-0.50484246,-0.2037196,0.05761312,0.07408473,0.1413712,0.20639284,-0.22521168,0.6332171,-0.050762862,1.1569092,-0.09023295,-0.0019987086,0.12296615,0.45866907,0.31626153,-0.23386641,0.010730177,0.25743997,0.53661513,-0.1714362,-0.57708484,0.14396694,-0.30393034,-0.39804235,-0.16393954,-0.32444254,-0.14667167,0.08356957,-0.4570281,-0.3720189,-0.0321283,-0.25720596,0.3781035,-2.46462,-0.2767554,-0.1577115,0.29337746,-0.198298,-0.26133025,-0.22647811,-0.5216199,0.27625287,0.2740586,0.428921,-0.62248844,0.55261135,0.59445536,-0.6426994,-0.031585798,-0.8686824,-0.12557513,-0.10463966,0.46136606,0.09541363,-0.17867778,-0.058256567,0.20816243,0.8141788,-0.039356284,0.2345238,0.52833056,0.32205662,0.08926959,0.55236006,0.095667526,0.5995436,-0.397278,-0.26537266,0.43501166,-0.29006425,0.17267051,-0.20913419,0.06128272,0.5975244,-0.47272882,-1.0141244,-0.6096679,-0.122192934,1.2983029,-0.3094815,-0.45533925,0.12224132,-0.25461757,-0.08981145,0.16393653,0.5315459,-0.19386336,0.1438905,-0.7970691,0.05452349,0.05831919,0.13889316,-0.06380755,-0.12914611,-0.4060982,0.6681987,-0.14627819,0.6009195,0.28915265,0.31685883,-0.15485232,-0.5125625,0.05481324,0.8319944,0.45290068,-0.0619466,-0.20969006,-0.30457884,-0.08029914,-0.09116289,0.0722186,0.50542367,0.6229646,-0.06367509,0.2655084,0.39985722,-0.09021674,0.052810315,-0.19661665,-0.1778507,-0.1337372,0.11740264,0.51987386,0.7634678,0.016028367,0.3752738,-0.28282943,0.3290841,-0.016915679,-0.6838238,0.58892334,0.68092084,-0.29506713,-0.19382185,0.6242154,0.5069098,-0.28218564,0.52958053,-0.6487363,-0.36397073,0.43869373,-0.11054977,-0.35256752,0.20525032,-0.37709865,0.33029106,-0.7849119,0.412877,-0.38556024,-0.37420005,-0.4906104,-0.16860127,-3.2041502,0.19142936,-0.15266924,-0.16664627,-0.2459489,-0.25908732,0.37774128,-0.6083111,-0.6201992,-0.05752587,0.20361581,0.57373166,-0.07483351,-0.022673648,-0.2339761,-0.35581404,-0.14849563,0.16831088,0.08962866,0.3919425,-0.09810765,-0.52495646,-0.043875877,-0.12226607,-0.4902937,0.032108154,-0.62845886,-0.5059878,-0.092778824,-0.27917185,-0.2935794,0.50777566,-0.28055882,0.06568496,-0.36139327,0.13720328,-0.059710428,0.18821985,-0.021979854,0.24611464,0.13129094,-0.09206821,0.14486471,-0.24556938,0.4413315,-0.14292218,0.1329843,0.24225841,-0.13299179,0.24930735,0.56720537,0.6094081,-0.39621708,1.097002,0.50199366,-0.07618101,0.13830402,-0.13444184,-0.35804093,-0.5617122,-0.2914312,-0.07785497,-0.4980057,-0.39697573,0.019953549,-0.3283843,-0.92503524,0.642304,-0.06539882,0.43032974,-0.111764185,0.20418236,0.4467678,-0.1115652,0.027070608,-0.12858543,-0.36607903,-0.4813227,-0.39051223,-0.7114286,-0.59237236,-0.089806855,1.0607785,-0.30168587,0.16296028,0.01735118,-0.34706718,0.057711594,0.17514223,0.04843191,0.22841288,0.38183075,-0.008610353,-0.6604292,0.3063258,0.023929633,-0.011955664,-0.47493148,0.19328961,0.611437,-0.72893673,0.44222373,0.40760535,0.014048021,0.0039976053,-0.58301115,-0.15407178,-0.13274352,-0.1487623,0.7434645,0.28934184,-0.852376,0.6540009,0.2551664,-0.4772162,-0.62864286,0.34578592,-0.049766917,-0.17762402,-0.11300005,0.29359508,0.03158756,-0.11160983,-0.23205401,0.1688939,-0.3634964,0.45034453,0.14534688,-0.10114919,0.25149506,-0.19533513,-0.27327177,-0.7810435,-0.1118404,-0.6165346,-0.25820592,0.22826274,-0.038228713,-0.033867233,-0.029192552,0.01170246,0.44689548,-0.3257864,0.020566106,-0.029515514,-0.3327375,0.34979782,0.5103506,0.34779748,-0.2393079,0.54417515,0.20490125,-0.22722171,0.09721362,0.015278019,0.38501298,-0.016940944,0.41676366,-0.19184464,-0.098545074,0.34941483,0.5025939,0.124601945,0.36855322,-0.00045021623,-0.28297806,0.36360714,0.01638702,0.18029834,-0.183572,-0.3257311,-0.06364472,-0.17282136,0.21003191,0.53403544,0.3376903,0.4514341,0.021484418,0.0006295033,0.017255172,0.11911556,0.037226517,-1.4682816,0.38209322,0.20529485,0.7465254,0.45304674,0.040865168,-0.20122057,0.6348937,-0.41470608,0.046644613,0.5133958,0.09949933,-0.39268193,0.6983501,-0.63239217,0.5032034,-0.17134981,0.074556045,0.18308528,0.21608907,0.47649646,0.8300611,-0.0622764,0.20095688,-0.0751513,-0.19149387,0.01984973,-0.24637304,-0.024169035,-0.38118201,-0.41698903,0.79547703,0.33345157,0.5470823,-0.16047809,-0.092989996,0.07857939,-0.18863675,0.3608235,-0.037848048,0.063475855,-0.16148688,-0.4637569,-0.12899488,0.51453507,-0.020614747,0.16785501,-0.025352526,-0.3638397,0.028792407,-0.19034211,0.042414233,-0.019913316,-0.5629136,-0.26599807,-0.26656145,-0.3903932,0.41825563,-0.31703094,0.018443175,0.21622221,-0.051770408,-0.1743086,0.029097028,-0.026971906,0.80290544,0.0034039356,-0.256813,-0.18034637,0.12862661,0.33789253,-0.29346192,0.1706336,-0.23684189,0.16416003,-0.56276125,0.53686464,-0.25865898,-0.50428236,0.40215707,-0.16116522,-0.087773964,0.5347377,-0.10229673,-0.20405208,0.13874198,-0.07905716,-0.41176295,-0.26536018,-0.3402454,0.26299405,0.18103945,-0.11153153,-0.10459742,-0.23461628,0.103387274,0.65825784,0.05908042,0.43977204,0.3442824,0.080268174,-0.39602062,0.16653827,0.26737064,0.507093,0.1522363,-0.01507771,-0.5344641,-0.5102652,-0.32587013,0.029145181,-0.17514275,0.14040777,0.022810586,-0.2509861,0.9339027,0.027800925,1.1773891,0.023882784,-0.42318344,0.08204538,0.51621026,-0.12053561,0.05865391,-0.26525253,0.88415617,0.6716775,-0.22540094,0.003531565,-0.7087377,-0.23226647,0.3226286,-0.38870746,-0.12301478,-0.080020435,-0.6581702,-0.43310136,0.18481342,0.12703402,0.14203686,-0.13480538,0.09287604,0.22098112,0.028603882,0.4307949,-0.59797007,-0.26765794,0.23128185,0.3171373,-0.17804247,0.14251705,-0.55824554,0.33258,-0.65694714,0.035812005,-0.3407886,0.25064322,-0.15487629,-0.4130283,0.15883607,-0.056406073,0.2618971,-0.33827546,-0.4834199,0.041045394,0.5134321,-0.07499908,0.108191304,0.55905986,-0.35032168,-0.0027931407,0.13195829,0.4337505,1.3135896,-0.43083063,0.09159039,0.3308742,-0.40328416,-0.6953854,0.33823323,-0.39573783,-0.07732355,-0.053532492,-0.4623373,-0.45914024,0.31691706,0.09484462,0.15557945,0.041266426,-0.3992839,-0.08086916,0.35152906,-0.19561559,-0.19043638,-0.24269642,0.32374975,0.45264027,-0.34764495,-0.5130745,0.008295663,0.34309885,-0.23487474,-0.46402967,-0.09314613,-0.13486578,0.3225189,0.29286987,-0.29479286,-0.10859849,0.04360352,-0.46958387,-0.00882639,0.28867596,-0.2673627,0.15905014,-0.31958443,-0.015564721,0.91831374,-0.3058759,0.034154817,-0.57457626,-0.50275004,-0.95461065,-0.41589218,0.1816194,0.3214535,-0.0069652954,-0.6623019,0.081433,-0.19956239,-0.24095678,0.096587546,-0.49332398,0.50119966,0.15244034,0.38106665,-0.28791016,-0.7268764,0.14661926,-0.0113855265,-0.12376048,-0.4583455,0.6951822,0.019394279,0.93554723,0.21614791,0.007731933,-0.0059272517,-0.5187215,0.12861013,-0.29664558,-0.08560322,-0.8272759,-0.0731909,9 +30,0.31794685,-0.01037313,-0.39937732,-0.32618397,-0.30779946,0.20888808,-0.08883622,0.18959989,0.16105205,-0.32859743,-0.11707541,-0.094066225,0.033459567,0.2629714,-0.29703963,-0.8106551,-0.08670086,0.029161043,-0.49537206,0.33766276,-0.5164772,0.48448008,0.13684483,0.33103803,-0.0039607286,0.25888687,0.35596824,-0.19561034,-0.29445884,-0.13661961,-0.26750532,0.31125054,-0.6959423,0.15769725,-0.10919845,-0.25565135,0.122773185,-0.325046,-0.24795623,-0.6569829,0.28742594,-0.8240501,0.47911477,-0.07545852,-0.28146434,0.2244696,0.19736628,0.12691164,-0.4100976,0.20564261,0.08694891,-0.35188824,0.007933965,-0.11136419,-0.29782522,-0.5441766,-0.49017954,0.052011278,-0.63209087,-0.2997775,-0.2979102,0.17223695,-0.37422928,-0.017195573,-0.24297489,0.23929618,-0.51343125,-0.031714126,0.14607993,-0.13677552,0.20149258,-0.39618272,-0.15183899,-0.07301687,0.17965111,-0.16990061,-0.1918117,0.35388163,0.29094464,0.4411975,0.034172274,-0.32454377,-0.17141068,-0.15825292,0.17223927,0.4023879,-0.09369263,-0.42363268,-0.25476116,-0.034174867,0.22414772,0.24972701,-0.13842094,-0.34278843,-0.04527458,0.05579426,-0.100655176,0.15343618,0.4687695,-0.36168212,-0.25957096,0.34480602,0.17757574,0.13615635,-0.18566473,0.20509544,-0.04115942,-0.42087895,-0.2670148,0.24297303,-0.11427726,0.64430785,-0.050761692,0.12228185,0.76228744,-0.26622283,0.21891376,-0.17426613,-0.0047338866,-0.11512348,-0.15934166,-0.14567533,0.05766853,-0.544893,-0.06299924,-0.24195729,0.90753305,0.16188225,-0.8057499,0.26469412,-0.47226658,0.07091848,-0.22065139,0.606382,0.6294965,0.34214693,0.23200367,0.82880527,-0.64517033,0.092510656,0.06448132,-0.41757354,0.023585528,-0.11337468,-0.12119033,-0.44205016,-0.01686468,0.17532888,0.11894179,-0.07586605,0.26193425,-0.28638357,0.041775,-0.20212787,0.71518993,-0.44294822,0.050192375,0.74909365,1.0376608,0.8921379,0.1438208,1.4037048,0.36187893,-0.11061971,-0.072037995,-0.1640911,-0.463093,0.1484694,0.41970322,-0.08276874,0.28576732,0.038981613,0.13417526,0.28222805,-0.40120474,0.20186695,-0.005930679,0.2719823,-0.15583524,0.03064873,-0.3962366,-0.19924268,0.23295297,0.15561526,-0.1304036,0.18069637,-0.08684016,0.44327238,0.19321974,1.3353083,0.07694981,0.08486678,-0.10210812,0.4413017,0.28542447,0.03190484,-0.0015087798,0.34562466,0.3469875,-0.07022342,-0.5570532,-0.0876744,-0.21828455,-0.50635314,-0.29485968,-0.5222804,-0.0010330677,-0.14492717,-0.43547273,-0.13807002,0.17195892,-0.3194633,0.5243218,-2.4446545,-0.08029424,-0.14168927,0.26495788,-0.2104331,-0.24476928,-0.2238746,-0.39857048,0.42571473,0.41679227,0.30495262,-0.6788555,0.27577603,0.39088088,-0.14560297,-0.23392986,-0.65726817,-0.08134786,-0.18874943,0.4707889,-0.004860161,-0.0627397,-0.17372409,0.25680822,0.60448706,0.057058945,0.017632008,0.0062530227,0.34565467,0.08862158,0.57406104,0.23836263,0.5810672,-0.043001074,-0.0014644172,0.430373,-0.35785252,0.27834973,0.12446499,0.2023829,0.3440665,-0.5025904,-0.7161421,-0.6084595,-0.53165936,1.1946852,-0.47456324,-0.42264935,0.33658212,0.12929067,-0.16433723,0.02359637,0.32418597,-0.12964995,0.18667072,-0.6236445,0.004834899,-0.00896338,0.07442298,-0.04916014,0.19772418,-0.17209703,0.6033847,-0.21288511,0.36227006,0.4296676,0.2582718,-0.07395081,-0.6261256,0.1744881,0.9313661,0.5206897,0.036182754,-0.058931198,-0.26830438,-0.1565283,-0.24000779,0.2786554,0.49508098,0.92187387,-0.012143014,0.0322764,0.29370236,-0.22209662,0.05593899,-0.058935862,-0.3412475,0.153101,-0.03920868,0.5720558,0.4868859,-0.16236377,0.47373492,-0.18945654,0.41658688,-0.11271062,-0.41757223,0.5179774,0.89855856,-0.09971559,-0.14982584,0.48645905,0.502873,-0.34246022,0.34414786,-0.6815028,-0.15528432,0.8332646,-0.03588828,-0.38315225,0.18795842,-0.295335,0.07978297,-1.0984513,0.40287495,-0.03154663,-0.48912847,-0.5251954,-0.28534958,-3.652745,0.04286576,-0.20370428,-0.13309199,-0.08627303,-0.13227402,0.36003053,-0.589657,-0.538644,0.10058597,0.026720762,0.38540915,0.06112976,0.14306924,-0.30824292,-0.07532281,-0.27135462,0.20245597,0.08174942,0.16606116,-0.25026548,-0.39314228,0.07619332,-0.32467598,-0.50954473,0.02622648,-0.37042558,-0.6674133,-0.10096966,-0.45351,-0.29118693,0.8086195,-0.36195755,-0.15893479,-0.118616804,-0.09510705,-0.28912994,0.34473717,0.34802595,0.20255911,-0.0043595918,0.11155777,-0.077264346,-0.38088965,0.17681296,0.15463021,0.21506514,0.3724517,-0.19266401,0.14174402,0.51372045,0.3506441,0.012870997,0.6387829,0.19363928,-0.17345372,0.34419027,-0.5501952,-0.37206855,-0.8003704,-0.4761365,-0.28804722,-0.32421795,-0.4147508,-0.2355814,-0.35526472,-0.77868164,0.4561209,0.061179064,0.17770626,-0.2596182,0.19573665,0.2629517,-0.032724347,-0.02646976,-0.2297238,-0.20453928,-0.42956072,-0.42634672,-0.7617012,-0.5935657,0.02523863,1.02135,-0.074676156,-0.2717345,-0.06779151,-0.18652302,0.07410089,-0.119733736,0.15920669,0.3038139,0.25944477,-0.16020012,-0.73598236,0.5731338,0.07681023,-0.14570943,-0.6026503,-0.16430919,0.70923704,-0.6757991,0.445669,0.43904838,0.23109044,0.14488292,-0.55584085,-0.20986089,0.029757403,-0.21039607,0.6305547,0.043293275,-0.54708505,0.4917752,0.20054314,-0.1648596,-0.6821642,0.6240742,-0.052913643,-0.25293195,0.17032105,0.3247823,-0.06868772,-0.066451624,-0.038936317,0.3212277,-0.568966,0.33617103,0.5176345,0.09107149,0.5141669,0.017893706,-0.3497297,-0.6177943,-0.090022534,-0.46328014,-0.26636878,-0.02972645,0.12767598,-0.05529843,0.18699881,-0.042724997,0.47168088,-0.4403032,0.14764784,0.048581608,-0.21455559,0.3531825,0.44980156,0.33824715,-0.371009,0.666289,0.16337882,0.11684148,-0.2716018,0.14428392,0.4931567,0.3842493,0.14774553,-0.047232464,-0.18556392,0.2598819,0.659906,0.21402368,0.47724006,0.21525505,-0.24875024,0.37375784,0.24570511,0.15513438,0.15097904,-0.1300438,-0.14581552,0.016619712,0.09006015,0.2742485,0.0967733,0.40094343,-0.003675472,-0.11623942,0.29236692,0.13425143,-0.04604113,-0.98307866,0.21995558,0.18435833,0.5298469,0.6097056,-0.014086697,0.1797419,0.3833508,-0.41372007,0.011368893,0.3370722,0.16107102,-0.46918717,0.6686476,-0.5437839,0.4383005,-0.19909726,0.002443865,-0.004367605,0.20143558,0.29959822,0.9768935,0.0051630884,0.10129702,-0.065466814,-0.24011561,0.1618605,-0.29501283,0.12045781,-0.3532062,-0.297903,0.60377127,0.3579011,0.17343321,-0.22077417,-0.1533215,0.093795165,-0.15824606,0.27167696,-0.094533116,0.08611137,0.039045215,-0.5878239,-0.48245192,0.55319285,-0.07616617,0.039951302,-0.015388334,-0.27043188,0.28806794,-0.09628542,-0.06454455,0.008950926,-0.5205746,0.019572496,-0.35943416,-0.4761994,0.42885804,-0.6782719,0.34292412,0.15049414,-0.05028424,-0.2471449,-0.101237945,0.33270273,0.5132512,0.04521647,-0.27103347,-0.31415796,-0.12624896,0.30798262,-0.32880938,-0.15955764,-0.192026,0.16932654,-0.53246194,0.31448615,-0.23606893,-0.14175838,0.044141915,-0.19448295,-0.11262153,0.31684837,-0.23181427,-0.23616433,0.1821484,0.09690246,-0.32469636,-0.03563892,-0.30925876,0.29033107,0.017377708,-0.039011832,0.120613635,-0.08118073,-0.17488825,0.38052773,0.039311048,0.32574093,0.21333724,-0.25919598,-0.4927732,-0.07589873,-0.12740241,0.22979234,0.08536733,0.117431596,-0.19046691,-0.2520991,-0.18854606,0.2098918,-0.30617085,0.084293365,0.1242702,-0.47221076,0.88686407,-0.014058126,1.1566292,0.11945976,-0.32021123,0.048956797,0.5167865,-0.059348486,0.06352488,-0.22762886,1.0387928,0.7763401,-0.07350014,-0.27899858,-0.39566517,-0.13025461,0.30124658,-0.1754762,-0.2963518,-0.079775594,-0.6842032,-0.3116395,0.10537668,0.16870764,0.122785844,0.12899622,-0.17572246,0.07299064,0.18246117,0.58936346,-0.512333,-0.019358907,0.3388518,0.14378732,0.11279696,0.14146453,-0.27787468,0.47854733,-0.61139894,0.20961261,-0.4330417,0.0042834273,-0.19399491,-0.260728,0.19450025,0.020896506,0.21118617,-0.21349186,-0.2272118,-0.32645983,0.59579706,0.050643593,0.32980013,0.72294945,-0.24515787,0.07311688,0.10095336,0.41329738,1.4008571,-0.10577894,0.033013124,0.37429988,-0.44235092,-0.43515855,0.2039788,-0.41994548,0.051206823,-0.10246879,-0.3935402,-0.4518988,0.2528351,0.110940956,-0.010931933,0.014861859,-0.48348957,-0.20638506,0.46891174,-0.2617645,-0.30790013,-0.2762615,0.25049078,0.7282295,-0.42725623,-0.2188982,-0.014096152,0.20892823,-0.3516119,-0.56555337,0.08122576,-0.18304262,0.5234891,0.09622454,-0.30613875,0.21115363,0.4017382,-0.32027096,0.13912067,0.56301993,-0.3907147,0.012306869,-0.077063695,-0.04221758,1.0386958,0.041467894,-0.041276284,-0.7595349,-0.5283352,-0.9007003,-0.36557767,0.35763153,0.2934621,-0.008744284,-0.4922708,-0.009285048,-0.040009946,0.08581597,0.04076959,-0.5730815,0.34827954,0.12190937,0.5253468,-0.008416394,-0.7599289,-0.14128587,0.031564303,-0.15676051,-0.51743525,0.67313254,-0.30713594,0.5301063,0.06493582,0.033770885,0.2188327,-0.5641796,0.30688792,-0.25865206,-0.26865575,-0.60195756,0.0963423,20 +31,0.5744159,-0.09790284,-0.55421394,-0.1683615,-0.2648726,0.26215482,-0.19753933,0.40958047,0.092023775,-0.44664985,-0.23455903,-0.12578803,0.0384131,0.24484813,-0.22963113,-0.6725585,-0.055940293,0.11572716,-0.6871136,0.8115297,-0.26072496,0.42531446,0.021241415,0.23742571,0.26813465,0.45229656,0.23828085,-0.14853774,-0.22807698,-0.14648134,-0.1436432,0.0065196957,-0.70229495,0.18850201,-0.3655627,-0.40713978,-0.06434706,-0.38269722,-0.40180147,-0.72350675,0.34052306,-0.87881786,0.5057091,-0.084097326,-0.15656327,0.27498242,0.1891109,0.29438117,-0.2746287,0.039723083,0.095978394,-0.110002734,0.100569755,-0.31869775,-0.20522644,-0.6306572,-0.52303267,-0.008149825,-0.6055975,-0.1740463,-0.3201133,0.11823083,-0.32354546,-0.0249599,-0.20497847,0.43016815,-0.4929767,0.13030136,0.06072314,-0.03631465,0.018814623,-0.60738707,-0.14245644,-0.100514695,0.22018415,0.0009253491,0.041552994,0.41139212,0.0596105,0.35528964,0.13987124,-0.16265768,-0.3218314,-0.17135724,0.16364677,0.33969855,-0.08154678,-0.50712115,-0.0865281,-0.010594089,0.3926535,0.23378244,0.20662323,-0.09890978,-0.10714811,-0.25925764,-0.20878312,0.3775727,0.6402408,-0.34875554,-0.292153,0.3544448,0.4710644,0.1613015,-0.2617832,-0.023894455,-0.105562255,-0.35734582,-0.08306942,0.32009047,-0.21010646,0.57049155,-0.13202843,0.22448564,0.60844254,-0.2862261,0.18840125,0.028620707,0.023675889,-0.061725415,-0.053027548,-0.1761077,0.14778145,-0.46400076,-0.004240334,-0.41206828,0.70929974,0.14686742,-0.579638,0.2333138,-0.53263193,0.1749071,0.132403,0.49110177,0.6142393,0.5283506,0.08545785,0.7442268,-0.17940079,0.10802376,-0.2091618,-0.25642926,-0.051586434,-0.12388077,0.033329014,-0.4090625,0.15431897,-0.009995684,0.009792827,-0.12339948,0.5267654,-0.46004254,-0.11653754,0.064335935,0.84149235,-0.28758538,-0.03400603,0.86607003,0.99429345,0.90296096,-0.009388866,1.1724836,0.24720539,-0.3102001,-0.0067176875,-0.3121172,-0.5984019,0.23785692,0.26789325,-0.032049023,0.45874882,0.102435976,-0.059204705,0.13586293,-0.44916546,0.042741872,-0.2804394,0.15959755,0.11966482,0.06637788,-0.22727232,-0.41936842,-0.03456437,0.058737718,0.30598336,0.19424406,-0.19901402,0.34440643,0.011082216,1.4641355,0.08523446,0.1605477,0.14107452,0.6346773,0.23018546,0.029246137,0.058116626,0.3583579,0.3758874,0.030453138,-0.5980985,0.030075844,-0.39719605,-0.6095215,-0.101719245,-0.44477683,-0.21052247,0.047362637,-0.45798457,-0.16500238,-0.0869796,-0.25692296,0.34427506,-2.5531127,-0.047839973,-0.22311138,0.402188,-0.40633088,-0.2718544,-0.27866927,-0.5206853,0.5026214,0.34164995,0.5232915,-0.57305676,0.41660953,0.45571324,-0.5682707,-0.011484478,-0.4802763,0.020113457,-0.0022611134,0.5768044,-0.22114411,-0.07461503,0.17072117,0.08562957,0.5370342,0.0092378,0.09751486,0.30371562,0.41307297,-0.010393687,0.42454842,0.06465247,0.45188767,-0.37835938,-0.09852403,0.36341703,-0.43986052,0.31188822,-0.18103155,0.15362898,0.46866956,-0.68916094,-0.8331274,-0.6201391,-0.08117978,1.0582143,-0.36809987,-0.5427731,0.08456972,-0.17273876,-0.11008296,-0.2046771,0.4694187,-0.08991389,0.021626767,-0.6363493,0.054593384,-0.13220479,0.22036918,0.01674755,0.17430201,-0.43593526,0.842561,-0.117799416,0.5408988,0.13312505,0.31444886,-0.29722726,-0.53665733,0.17898935,0.8538726,0.56333095,-0.03510427,-0.26034814,-0.34888554,-0.3329161,-0.21647383,0.16753718,0.634409,0.5942228,-0.07923269,0.060817048,0.33592716,-0.11626683,0.23576143,-0.18975443,-0.3264981,-0.2517693,-0.11924501,0.5794481,0.5410691,-0.1653737,0.42858443,-0.063068464,0.41811132,-0.24440287,-0.44171214,0.5490304,0.9130514,-0.19149102,-0.29758346,0.37173903,0.6389213,-0.28785887,0.47657582,-0.6360769,-0.5349165,0.48864096,-0.2489284,-0.33700654,0.34642467,-0.25868985,0.03242874,-0.72778934,0.23662251,-0.4079227,-0.3021109,-0.50267595,-0.08504318,-3.1597936,0.12078377,-0.2779001,-0.19326311,-0.26612675,-0.2636682,0.036149852,-0.6133582,-0.5153544,0.09645416,0.110870756,0.7213057,-0.08198837,0.19485635,-0.17638269,-0.34815466,-0.39475608,0.24033971,0.094455175,0.36793527,-0.29423028,-0.34256607,-0.028710939,-0.12822834,-0.31266242,0.09664756,-0.4629543,-0.4011916,-0.22958098,-0.47160512,-0.29738516,0.56732935,-0.1666942,0.12536037,-0.22707573,-0.01912713,-0.1448375,0.27891564,0.15584953,0.19398257,0.22028983,-0.106274545,0.17669848,-0.3260791,0.37020564,0.05245735,0.44657716,0.38098305,-0.25662446,0.13395679,0.32606336,0.48104817,-0.035317674,0.7280476,0.29335067,-0.14344402,0.40435958,-0.22154075,-0.3392939,-0.6309518,-0.23470402,-0.06026779,-0.29263127,-0.51965255,-0.15402302,-0.40852857,-0.9151324,0.40174535,0.012878362,0.3049563,-0.10845996,0.3253683,0.62937045,-0.09943694,0.00856561,0.025766125,-0.09156157,-0.3646437,-0.25221884,-0.7182406,-0.35872364,0.05774278,0.8773619,-0.17359942,-0.15120785,0.027642554,-0.16672355,0.0656967,0.10478336,0.17947812,0.101414986,0.49520248,-0.09903254,-0.62746316,0.6930982,-0.13900742,-0.29608464,-0.4424552,0.2924911,0.56824255,-0.637893,0.43693265,0.42936626,0.017831698,-0.19102004,-0.42065272,0.035866737,-0.11581834,-0.22078091,0.27575678,0.19212219,-0.60600454,0.34250057,0.03635747,-0.2708059,-0.79037833,0.738502,0.013775978,-0.49133506,-0.00916183,0.39333084,0.09274116,-0.052039005,-0.25562587,0.114145756,-0.49168935,0.29953495,0.25047186,-0.042145543,0.4522718,-0.20316423,-0.2915387,-0.66703415,0.17639719,-0.51595855,-0.29639345,0.40503353,0.20559666,0.11021086,0.05073971,-0.07771613,0.46953404,-0.3407281,0.2251516,-0.07676817,-0.17283991,0.4330901,0.31574598,0.5156256,-0.54800016,0.6909579,0.010209076,-0.13680412,0.24205515,0.26681858,0.33195764,0.09325464,0.35948545,0.20495936,-0.22236544,0.3024519,0.6293278,0.41594136,0.48167706,0.20272443,-0.31202677,0.41883734,0.09396481,0.12332369,-0.059159167,-0.48932582,-0.118491374,0.0063813105,0.085347846,0.37372434,0.13409507,0.401506,-0.12492572,-0.0015756972,0.013391927,0.26898646,-0.21325895,-1.1916925,0.25694564,0.2077755,0.8518598,0.39436305,0.024672203,-0.0328791,0.64164674,-0.17704707,0.09860278,0.29378107,0.065196134,-0.458135,0.50905645,-0.48178786,0.5346061,-0.031466864,-0.03642783,0.051850572,0.1515153,0.30376762,0.87756926,-0.14797544,-0.06619862,-0.06424546,-0.4119777,0.16204911,-0.25724438,0.1341558,-0.51290596,-0.3051368,0.66980284,0.27581596,0.32045454,-0.05066841,-0.036593728,-0.034031242,-0.16721883,0.23529255,0.13282569,0.25938845,-0.04483951,-0.6836552,-0.3571536,0.4477994,-0.47411713,0.16561209,0.24199533,-0.31804365,0.2512575,-0.04969371,0.06535293,0.0034987405,-0.6967466,0.10467811,-0.24287811,-0.25426722,0.40915334,-0.24594818,0.38931853,0.24809873,-0.120209165,-0.4356076,0.1874885,0.22855724,0.62589246,-0.1719127,-0.31069613,-0.54380673,0.15709792,0.26816052,-0.36411265,0.09781337,-0.1422973,0.16092384,-0.5954881,0.43418792,-0.1002334,-0.20240499,-0.034976337,-0.28084984,-0.14655896,0.6153487,-0.11250268,-0.07788108,0.04916017,-0.030513633,-0.37842193,-0.20110178,-0.17228304,0.12347555,0.38468456,-0.07670036,-0.16161981,0.031546637,0.13366266,0.4559651,0.027771037,0.39855057,0.3379988,0.14583525,-0.42796266,-0.0014965683,0.29651555,0.36059487,0.09363204,0.072066024,-0.26613536,-0.5592104,-0.39058292,0.24850105,-0.16291656,0.14879975,0.26310825,-0.19931722,0.80401146,-0.07966313,1.1766536,0.12766692,-0.33805364,0.15914671,0.53908885,0.077986315,-0.022253968,-0.26681197,1.1565449,0.62619704,-0.031727474,-0.14046039,-0.32712793,-0.024614174,0.088936485,-0.3027189,-0.21607696,0.1192311,-0.39600798,-0.36531776,0.08488563,0.23857999,0.100313246,-0.1361376,-0.015518751,0.322354,0.20536794,0.39785528,-0.530894,-0.4461704,0.35172474,-0.035701994,-0.024977867,0.24181922,-0.41807166,0.39933145,-0.6495377,0.011697687,-0.20173678,0.1166365,-0.018594094,-0.27377838,0.30085656,-0.001199156,0.40348792,-0.4807366,-0.4582705,-0.2855623,0.44581193,0.09510201,0.17493072,0.5682482,-0.23415598,0.0751726,-0.060146663,0.6412414,1.1378777,-0.15184063,-0.066187166,0.35175028,-0.50980365,-0.7438508,0.15178552,-0.34074843,0.249271,-0.090973966,-0.3368545,-0.44955567,0.37673336,0.14195056,0.022712998,0.065280706,-0.73647845,-0.29930204,0.34578,-0.3135044,-0.20869699,-0.32115528,0.20399533,0.75650513,-0.27666384,-0.26400182,0.060457934,0.21063331,-0.19593516,-0.7663936,-0.0932837,-0.33568716,0.26801473,-0.073284864,-0.22429562,-0.13768338,0.18954125,-0.42865294,0.19787735,0.05262795,-0.32212967,-0.06897758,-0.31791127,-0.009855837,0.81296587,-0.24033685,0.11804302,-0.41775045,-0.46212247,-0.88625515,-0.39096665,0.1944967,0.15217906,0.11480258,-0.6660136,-0.038354486,-0.108418405,-0.038773514,-0.08538851,-0.3140606,0.37159172,0.24407232,0.33503798,-0.12356556,-0.8611858,0.26375273,0.057287727,-0.23886296,-0.5747103,0.48290324,-0.2137884,0.76281774,0.15520063,0.044866726,0.30768338,-0.68916786,-0.030777976,-0.23173173,-0.08560411,-0.6965866,0.15317607,29 +32,0.43382218,-0.17904972,-0.5297974,-0.10512173,-0.14398193,0.18515903,-0.08039981,0.42917186,0.22152197,-0.2690428,-0.00618322,-0.2576164,0.091338515,0.36984453,-0.014021197,-0.4244411,-0.02344342,-0.0045243874,-0.52818775,0.49506545,-0.42905414,0.19088241,-0.18700159,0.3926402,0.2937711,0.3597511,0.00034229457,-0.11217942,-0.034852672,-0.05306371,-0.024129827,0.39487913,-0.2806739,0.1378186,0.03451445,-0.11065892,0.01262043,-0.24895601,-0.45926702,-0.6249392,0.37102813,-0.5915104,0.37718344,-0.0027284175,-0.24510425,0.028332502,0.04459375,0.17371425,-0.36936608,-0.14806552,0.07965613,-0.07877433,0.0891889,-0.12275633,-0.088404834,-0.340619,-0.42927456,-0.075145856,-0.43181098,-0.25239116,-0.27558154,0.077510834,-0.40977728,-0.10106412,-0.12821834,0.55852926,-0.49465907,0.1063656,0.14461917,-0.24468766,0.25677934,-0.64980054,-0.32831293,-0.08991259,0.19786894,-0.091012545,-0.2198377,0.27401057,0.29393697,0.28384948,-0.026337113,-0.010840796,-0.31005624,-0.24408263,0.22662976,0.42300564,-0.16696009,-0.6028973,-0.06880437,0.04117708,-0.040587954,0.17319156,0.13302867,-0.34364617,-0.14870699,0.22118771,-0.24411875,0.35349798,0.4712323,-0.36794502,-0.2506992,0.25526655,0.52122766,0.35944137,-0.20420837,0.013093881,0.034454018,-0.40739995,-0.07585696,0.101189524,-0.074937,0.4562289,-0.1394112,0.37394977,0.63153183,-0.22154167,-0.017268173,-0.064134866,0.030897232,-0.24760409,-0.2254409,-0.038252335,-0.03376189,-0.3392886,0.26339206,-0.10994263,0.76479226,0.25814432,-0.4710849,0.44151068,-0.51535225,0.20862949,-0.05641284,0.51513433,0.64424765,0.15486363,0.4275966,0.71346027,-0.27226198,0.08122735,-0.17840445,-0.32110292,-0.042759098,-0.112052165,-0.02378216,-0.4329796,-0.06823118,-0.01567476,-0.19508168,-0.016444605,0.40205026,-0.4718539,-0.12797768,0.085689545,0.72525716,-0.28765357,-0.031230448,0.5209424,0.9546867,0.91582996,0.024926875,1.0464433,0.04995203,-0.25310352,0.2991264,-0.35009423,-0.65225846,0.31512,0.36788267,0.41346335,0.11979343,0.0014253333,-0.08731739,0.41491386,-0.34684312,0.24179418,-0.18490416,0.36923796,0.2496795,-0.04949172,-0.20931093,-0.30071157,-0.19176954,-0.121431276,-0.03468664,0.18997869,-0.18709046,0.3611509,0.035772152,1.8253322,-0.073300704,0.1070242,0.1826651,0.56592673,0.1285736,-0.19482602,-0.0608372,0.4753694,0.31428277,0.1135501,-0.5909606,0.20801815,-0.29457092,-0.635406,-0.060234696,-0.42051423,-0.18185577,0.011179919,-0.4181437,-0.14027388,-0.032750357,-0.31106952,0.4718616,-3.0039902,-0.22707987,-0.16347708,0.19904508,-0.23912893,-0.2013044,-0.06194958,-0.43425366,0.24439429,0.34341514,0.42883402,-0.68277234,0.16612081,0.44564104,-0.3884249,-0.10405981,-0.48913777,-0.115053326,0.010096736,0.4404943,-0.050423395,-0.0137478225,-0.08433338,0.18910542,0.42281368,-0.08477482,0.14181994,0.2753059,0.21230301,-0.00775335,0.5795511,0.007089464,0.4192429,-0.21416643,-0.088122904,0.40467507,-0.35458156,0.28976387,-0.12500069,0.13279125,0.44626743,-0.3052813,-0.724024,-0.4787662,-0.13316394,1.1695101,-0.2593525,-0.36105484,0.4014145,-0.5707905,-0.064146,-0.34117562,0.41469806,-0.041658945,-0.14835969,-0.74907136,0.18258585,-0.12204009,0.08514709,-0.0014914237,-0.041730274,-0.20532846,0.66916674,0.045806013,0.58065546,0.3395393,-0.06760213,-0.19064456,-0.42044455,-0.03588112,0.5950967,0.2956279,0.14658378,-0.3104802,-0.20446756,-0.22789675,-0.043542117,0.18345517,0.53839225,0.5228118,-0.0053509697,0.2168783,0.3425575,-0.18355703,-0.1343592,-0.2042706,-0.1743567,0.026663493,0.023966037,0.5748377,0.56246275,-0.23363999,0.5439873,0.044808157,0.14432643,-0.17870733,-0.4343015,0.37331074,0.8694546,-0.24726464,-0.2217635,0.38696298,0.34409675,-0.31079817,0.2565714,-0.5262362,-0.016495626,0.6223751,-0.19829014,-0.34805495,0.37446043,-0.3000919,0.16136587,-0.8865049,0.2051369,-0.34651473,-0.44172996,-0.50360256,-0.18802091,-3.138806,0.09144819,-0.27611336,-0.33241808,-0.079349905,-0.19851041,0.1060382,-0.60213804,-0.5816588,0.045221962,0.118106335,0.57074946,-0.09701718,-0.061010204,-0.30130818,-0.32267183,-0.3348003,0.07582995,0.022454567,0.47256935,-0.13698217,-0.41945314,0.097473726,-0.05281064,-0.33858937,0.088408634,-0.32136455,-0.56300676,-0.12047326,-0.47247624,-0.4663924,0.6453348,-0.074226275,0.04744009,-0.14413159,-0.09761015,-0.035067227,0.3057727,0.25359154,0.10388805,0.023341138,0.02226222,-0.10689297,-0.24848029,0.06386583,-0.094319314,0.32276383,0.4055032,0.03461179,0.22695799,0.5286747,0.4851802,-0.089980595,0.7901591,0.50095564,-0.041437354,0.29073474,-0.35649067,-0.21245795,-0.44769615,-0.2787507,0.1487234,-0.3903023,-0.58316374,-0.1581859,-0.23826146,-0.5230369,0.44023013,-0.079358116,0.099842116,0.1158836,0.17476764,0.58236915,-0.066573516,-0.026117675,0.09439602,-0.075661324,-0.7023555,-0.31949008,-0.64846635,-0.45483837,0.22577672,0.8139214,-0.2863044,-0.12683141,0.05538511,-0.5627858,-0.023692703,0.07206915,0.11827096,0.22820877,0.37094644,-0.19229567,-0.5427918,0.35278794,-0.08300498,-0.12754843,-0.53145564,0.18028057,0.57996464,-0.59250516,0.657427,0.12426413,0.092464484,-0.2855184,-0.56826687,-0.20072336,0.0093461685,-0.22155043,0.41519982,0.12560092,-0.7202836,0.3695358,0.32466194,-0.1460563,-0.691597,0.5422982,-0.11353815,-0.40576875,-0.022569004,0.2528957,0.11110722,-0.008820295,-0.11871988,0.31357533,-0.47343355,0.2663335,0.25615567,-0.14188063,0.2759027,-0.14216316,-0.18296948,-0.5457903,-0.035967246,-0.45236814,-0.25274074,0.31714645,0.11988172,0.13275552,0.05374439,0.11013212,0.3884661,-0.122620925,0.07437091,0.0011589155,-0.10776898,0.28431386,0.37919372,0.40654865,-0.34435204,0.6027471,-0.06395705,0.044592842,0.1387863,0.104738,0.3059709,0.19651303,0.37370747,0.04087593,-0.33037314,0.2351808,1.1077845,0.23365521,0.53584385,-0.03921647,-0.18883617,0.2145544,0.081594214,0.24576774,-0.036838472,-0.4663908,-0.020311609,-0.1722301,0.21714002,0.3447191,0.17087954,0.23806082,-0.08988899,-0.39504707,0.01922603,0.23095348,-0.031740457,-1.2343314,0.31062546,0.20773634,0.85738385,0.38835818,0.0044253394,-0.003284566,0.5711099,-0.16047515,0.07632318,0.3177482,-0.056843232,-0.6044688,0.4674591,-0.7707627,0.6022588,-0.025929742,-0.04742362,-0.008527122,-0.03830806,0.3284593,0.6899214,-0.16770445,-0.15293482,0.10187148,-0.26271877,0.12251016,-0.43067586,-0.087231874,-0.66571784,-0.30783835,0.4444915,0.5222372,0.19223316,-0.20896794,0.030698605,0.0502781,-0.08061355,0.21681592,-0.013371624,0.17695148,-0.08328668,-0.69843626,-0.34584498,0.43734884,-0.10617669,0.21124631,-0.05769359,-0.23521541,0.2840649,-0.11456949,-0.042680684,-0.11231181,-0.4169448,0.04557693,-0.22775665,-0.5273298,0.46907985,-0.23171821,0.3977156,0.2546709,0.046618104,-0.27690548,0.41072565,-6.394833e-05,0.7692635,-0.27342957,0.0019972567,-0.5647082,0.0020827428,0.22105011,-0.128286,-0.20719287,-0.19680613,-0.071348265,-0.4283466,0.48390096,0.029525762,-0.30026066,-0.02023004,-0.21038273,-0.033848252,0.63809747,-0.07623142,-0.24266808,-0.25304753,-0.18085691,-0.36816648,-0.07200599,-0.0029048473,0.20206505,0.1955008,0.0054997355,-0.10579727,-0.15262875,0.029626556,0.23475488,-0.013073007,0.29341573,0.29942173,0.14773133,-0.2471776,-0.16675116,0.2480326,0.46449608,0.107736066,-0.069962695,-0.23980334,-0.47652477,-0.36672077,0.1443416,-0.1149655,0.3998419,0.16136064,-0.49270436,0.6304228,-0.06283648,0.9992587,0.13096684,-0.22589849,0.098894835,0.52680427,0.0559043,-0.009958748,-0.21114513,0.65064895,0.4901785,-0.064701095,-0.2914486,-0.19069767,-8.8173896e-05,0.21897465,-0.12845173,-0.08530551,-0.007819162,-0.5629107,-0.06666605,0.23409986,0.22097209,0.2607954,-0.12397502,-0.11680147,0.16086021,0.07333283,0.3338037,-0.31460568,-0.097771086,0.2490295,0.15360293,0.11280007,0.07500121,-0.38419905,0.42919502,-0.44371623,0.20640984,-0.21420318,0.20189996,-0.2001729,-0.1843257,0.18862034,-0.095954776,0.38185972,-0.2616829,-0.30280608,-0.2990078,0.3924798,0.1789504,0.12849884,0.55210423,-0.15111446,0.0028254688,0.23341915,0.4628684,1.0819473,-0.22223675,-0.120718166,0.3756045,-0.31818762,-0.610333,0.42279154,-0.25548822,0.13537344,0.029594418,-0.050823636,-0.542186,0.23933154,0.30542055,-0.047375206,0.016961325,-0.6568651,-0.26198214,0.21819322,-0.42072868,-0.11736564,-0.47621956,-0.08041145,0.62501776,-0.20038351,-0.25467384,0.16019477,0.28703073,-0.29704785,-0.48663118,0.10980771,-0.2736026,0.41371354,-0.020264,-0.21886918,-0.061413124,0.2168499,-0.4039621,0.16233908,0.06599695,-0.43701485,0.13104123,-0.20228931,-0.07767576,0.91702485,-0.27005395,0.09343037,-0.34810883,-0.3546007,-0.71791846,-0.29730928,0.5118265,-0.08542875,-0.042312913,-0.5265167,-0.08926775,0.040048525,-0.08559666,-0.11171675,-0.45178565,0.5745925,0.06365326,0.2897504,-0.0474215,-0.6379173,0.16860668,0.0042105448,-0.07825316,-0.49833125,0.6104456,-0.14326689,0.57773733,0.09638631,0.069643795,0.2170974,-0.29824233,0.09645912,-0.21884674,-0.19517435,-0.5572791,0.09578073,44 +33,0.3319201,-0.084333345,-0.51722586,-0.20061357,-0.19827951,0.10081207,-0.111596435,0.43551782,0.18622139,-0.30291545,-0.11629756,-0.18794124,0.05876129,0.18500474,-0.09675113,-0.5308502,-0.0021826066,0.108292505,-0.5768009,0.6082442,-0.32827115,0.09820783,-0.17230338,0.26348096,0.2585171,0.36509213,-0.060187705,-0.13341498,-0.10450625,-0.037248686,-0.15694115,0.4517741,-0.31503433,0.07824425,-0.042970583,-0.050926395,-0.099283755,-0.4472391,-0.4017997,-0.7096972,0.36345166,-0.79112816,0.30100542,0.029435877,-0.24419183,0.27802116,0.21065341,0.26209727,-0.3161432,-0.2545226,0.14090285,-0.12313537,-0.03712741,-0.111249626,-0.12197538,-0.34687114,-0.45966247,-0.19002171,-0.3197644,-0.31132132,-0.39361033,0.06698377,-0.31575572,-0.015142176,-0.082099624,0.6166475,-0.53378844,0.1793919,0.21838138,-0.21631175,0.14588691,-0.65025675,-0.11921859,-0.093379825,0.35466364,-0.13832693,-0.16739787,0.31578407,0.3734217,0.2134436,-0.10039947,-0.115256146,-0.3392728,-0.21418369,0.2692501,0.40788054,-0.094993606,-0.53931385,0.018881574,0.015083078,-0.14548208,0.21618867,0.15541397,-0.27455544,-0.20262271,0.14891183,-0.12541175,0.41226923,0.42406273,-0.1508036,-0.124438286,0.32384333,0.51637775,0.36677974,-0.28751528,-0.10562923,-0.002550695,-0.44953936,-0.16383079,0.0011122674,-0.25226405,0.51348233,-0.13873383,0.21883705,0.7628973,-0.13232294,-0.12308088,-0.09728753,0.0046999827,-0.14125592,-0.24520683,-0.23341036,0.19028176,-0.27118406,0.3395535,0.0041352306,0.61186683,0.151952,-0.5533211,0.36984035,-0.54547083,0.12602758,-0.12146485,0.38902795,0.5694994,0.35295004,0.46458232,0.62301755,-0.3288681,0.088876784,0.0026295763,-0.36487076,0.05394337,-0.11301147,-0.061327875,-0.49110302,0.08124172,-0.09614863,-0.20703092,0.115063265,0.24492213,-0.37653768,-0.05787513,0.11412987,0.811548,-0.30133936,-0.096628696,0.5613132,0.8350403,0.8970005,0.043743994,0.8954125,0.11034087,-0.27034318,0.35658193,-0.2613926,-0.7502372,0.3156535,0.35257694,0.03394112,0.13796115,0.080099,0.06360276,0.38637045,-0.3388351,0.04686454,-0.16044447,0.010645052,0.24669406,-0.20460081,-0.3981538,-0.17771201,-0.21515246,0.07614011,0.03600288,0.18558049,-0.09942102,0.38781086,0.041997466,1.8503178,0.09182634,0.008596348,0.145184,0.48620743,0.24990219,-0.160808,-0.14110988,0.5349294,0.28411627,0.24953258,-0.6031109,0.2279096,-0.21176024,-0.4272287,-0.14838026,-0.5284292,-0.16992041,0.13241653,-0.44311106,-0.10645516,-0.15682037,-0.23555881,0.38854653,-2.9558082,-0.13039681,-0.14676636,0.3228078,-0.22443259,-0.24792337,0.0059097502,-0.39080307,0.19062181,0.30228788,0.48361313,-0.60813344,0.31266403,0.43243843,-0.63603246,-0.05621271,-0.43284452,-0.19549324,0.033369794,0.34304014,-0.06975691,0.054221023,0.15272404,0.22749545,0.42240503,0.070372425,0.24255894,0.3578331,0.41305113,-0.01817034,0.5967386,-0.10081403,0.53696036,-0.15207809,-0.15688702,0.1650167,-0.2065846,0.35411417,-0.15881711,0.09794543,0.56602913,-0.32812318,-0.8512029,-0.5712175,-0.05276472,1.2073545,-0.4221973,-0.3202487,0.3642515,-0.6129147,-0.23667419,-0.22156666,0.46341693,-0.020940863,-0.08636944,-0.74801236,0.19270372,-0.091074124,0.11354279,0.06316269,-0.14675689,-0.34064728,0.72604203,0.01636151,0.6388916,0.333487,0.010728512,-0.20551041,-0.29690474,-0.06150013,0.5868618,0.26757544,0.08531886,-0.31954044,-0.25815406,-0.25162083,-0.056589734,0.14057882,0.6011607,0.37365657,0.011609905,0.2015422,0.24280445,-0.07735117,0.010737589,-0.20133951,-0.17846322,-0.04278758,-0.030584887,0.365762,0.5812315,-0.33330494,0.40125564,0.10595948,0.25577256,-0.031840056,-0.36438796,0.4277821,1.2433838,-0.18034911,-0.3545252,0.47523674,0.43891978,-0.2565259,0.30785295,-0.4321279,0.004775949,0.6652441,-0.26078433,-0.42978728,0.24295726,-0.27879634,0.10809533,-0.72624874,0.090811536,-0.1666399,-0.46807218,-0.5161291,-0.089845404,-3.2709496,0.1258218,-0.3300597,-0.3402591,-0.20006806,-0.18309112,0.06847334,-0.7265712,-0.60456854,0.22443703,0.05780834,0.7048745,-0.1215263,-0.025012314,-0.31059822,-0.32029587,-0.1586345,0.16235237,0.10551266,0.44077933,-0.079771526,-0.51764005,-0.1261664,0.07622272,-0.40491742,-0.017812986,-0.41812617,-0.32807755,-0.076897025,-0.51183385,-0.12705737,0.68286777,-0.19423789,0.027914153,-0.08487072,0.0017115772,-0.10628643,0.15044224,0.2331662,0.24160855,-0.016421173,-0.010853294,0.10554753,-0.23618782,0.3093522,0.0016690306,0.37316537,0.24271664,0.054767765,0.18775207,0.48650837,0.5470137,-0.14128757,0.8663789,0.58467436,-0.09422612,0.19622597,-0.27119446,-0.2957273,-0.5867762,-0.32709548,0.09873515,-0.37650007,-0.51874393,-0.19517267,-0.3114548,-0.6898525,0.40233007,-0.03777896,0.19457352,0.12809595,0.17452295,0.5460493,-0.20028518,0.040732868,0.014853958,-0.16032279,-0.627017,-0.118998125,-0.42736384,-0.39959055,0.17622873,0.7787998,-0.28613633,-0.036549717,0.046251513,-0.45150077,0.026143583,0.14885536,0.1156809,0.40749666,0.47461748,-0.17691353,-0.5282848,0.49585718,-0.15760939,-0.19690858,-0.59509116,0.19682796,0.50603676,-0.521643,0.72453,0.29827127,-0.060480088,-0.27954447,-0.5009107,-0.25485024,-0.025752857,-0.15989652,0.35475522,0.2503334,-0.64626765,0.25672278,0.18031828,-0.14892066,-0.64307845,0.6853354,-0.18749699,-0.38489458,0.021668926,0.2718634,0.02998523,-0.08925424,-0.18504481,0.22118719,-0.26232725,0.085370906,0.35279047,-0.053354464,0.09457709,-0.2123478,0.09716554,-0.71635705,0.07634679,-0.46481806,-0.15471703,0.4147257,0.05498883,0.23096637,-0.021566778,0.009671742,0.2968331,-0.2494392,0.16729495,-0.042515233,-0.22845818,0.31848124,0.37797922,0.4514372,-0.48719162,0.5236875,-0.02200143,-0.07003288,0.19487885,0.18108869,0.38264054,0.053299095,0.45304298,0.027633876,-0.24159485,0.2678041,0.92136437,0.30424812,0.48548386,0.04210716,-0.08420646,0.20564294,0.06168209,0.23418482,-0.08103243,-0.5883866,0.08394652,-0.21539569,0.10372904,0.4225326,0.16999692,0.1747731,-0.11421046,-0.43630925,0.0137153715,0.3340547,0.21299219,-1.0456034,0.34809375,0.28566614,0.89926744,0.32236746,0.09340258,-0.12820533,0.59261894,-0.21227275,0.13484731,0.3356262,0.032840792,-0.6371661,0.46717164,-0.7429657,0.5146971,0.11705913,-0.14148416,-0.00957093,-0.046043053,0.27367863,0.61730343,-0.21224089,-0.1428461,0.08311925,-0.38570243,0.26782542,-0.45079944,-0.1412267,-0.49493727,-0.28656375,0.51443756,0.577239,0.24980758,-0.09643941,0.0767741,0.07063158,-0.17218581,0.09954724,0.105653815,0.20307061,-0.028986234,-0.7573962,-0.19762771,0.40050563,-0.18633363,0.2668562,-0.066619635,-0.16998383,0.40441337,-0.16255826,-0.021371514,-0.059917875,-0.624267,0.11463082,-0.20561326,-0.6207672,0.54814327,-0.08070795,0.36890548,0.21089102,0.011295125,-0.28971878,0.52256465,-0.09546603,0.8432002,-0.11134346,-0.0032074228,-0.5701473,0.030997142,0.08478871,-0.106353834,-0.06763551,-0.40262175,0.12299303,-0.44377232,0.40828133,-0.009855546,-0.3963561,-0.15042934,-0.12336852,0.06408794,0.5856238,-0.2166131,-0.115297735,-0.26361528,-0.22476968,-0.28023607,-0.22959784,-0.105273664,0.28257984,0.16201879,0.1320863,-0.23545134,-0.102782294,-0.14897726,0.3821762,-0.12647456,0.49890015,0.33689722,0.014466637,-0.10684058,-0.30750176,0.3585323,0.50180274,-0.031843297,-0.10942343,-0.27883673,-0.4833396,-0.41861475,0.14933018,-0.06275398,0.50708216,0.26851892,-0.17662258,0.5817903,-0.2861558,0.87218595,0.022137789,-0.41866475,0.16613278,0.46445486,0.08955607,-0.092275575,-0.118487045,0.6761034,0.41715652,0.05071772,-0.1838371,-0.20647994,0.09547245,0.11208918,-0.11454423,-0.0250202,-0.019894699,-0.54607695,-0.005205363,0.15726633,0.17466795,0.40275037,-0.098142676,0.007785352,0.14171518,0.04144025,0.13379474,-0.43339238,-0.33323824,0.24425438,-0.060929883,0.0824271,0.04873975,-0.5475336,0.49442804,-0.28802562,-0.039227318,-0.24595457,0.27383173,-0.26700807,-0.09415564,0.20805612,-0.10716959,0.44481894,-0.26570728,-0.22412854,-0.36239797,0.44145203,0.17595327,0.09097792,0.46775234,-0.22683083,0.16357404,0.16577104,0.54996777,0.6813216,-0.2580794,-0.035906076,0.30851722,-0.44125122,-0.4804116,0.3486107,-0.36160412,0.19700642,0.094271734,0.047680058,-0.53378665,0.17340806,0.19432375,-0.08641373,0.020884782,-0.65250343,-0.32885897,0.21224806,-0.32651007,-0.13714372,-0.22369072,0.079131454,0.58873504,-0.31940624,-0.30201942,0.08698904,0.03634176,-0.03359635,-0.45538932,0.09639822,-0.26619303,0.3212243,0.009745982,-0.32044843,-0.10760427,0.08413405,-0.39352727,0.34554344,0.055038884,-0.36117473,0.03644766,-0.27435842,-0.09702596,1.0512474,-0.2596362,0.09912189,-0.3548438,-0.42656773,-0.7276373,-0.29512134,0.37183988,-0.038259372,0.06797439,-0.6091218,0.04128032,-0.05076912,-0.063688464,-0.20609972,-0.40463528,0.55002385,0.08838971,0.3635015,-0.08563553,-0.8289399,0.121857665,-0.031913053,-0.13416281,-0.58988184,0.48839322,-0.21980989,0.71025157,0.021652061,0.20776197,0.2112709,-0.29615584,-0.106713235,-0.2373597,-0.20589858,-0.50296783,-0.013520954,58 +34,0.31830892,-0.08389412,-0.36351544,-0.1300801,-0.10546659,0.25524473,0.0002238173,0.34704122,0.03050549,-0.3800281,-0.009876564,-0.14126933,-0.054718222,0.36074448,-0.010143377,-0.54060775,0.14185286,0.025810119,-0.5260048,0.43794537,-0.4692399,0.4426239,-0.033309646,0.10352632,-0.008877991,0.44164425,0.18285468,-0.2820995,-0.19474025,0.0077889487,-0.25469795,0.05035879,-0.4573785,0.15069509,0.0945671,-0.16174963,0.14647347,-0.2217711,-0.2214427,-0.4703595,0.14142011,-0.54260445,0.30599403,-0.0927441,-0.08085379,0.14544357,-0.0352944,0.38318455,-0.3383807,0.18273413,0.1695011,-0.17698674,-0.1854915,-0.17201379,-0.13354197,-0.43948048,-0.4830278,0.051771857,-0.39286318,-0.31600046,-0.15555793,0.054186475,-0.30734736,-0.036643058,-0.017583752,0.071013555,-0.45160466,0.00060908124,0.25069898,-0.14242351,0.00058847666,-0.5889275,0.12023709,-0.14134394,0.35082233,-0.2899779,-0.14076309,0.41953307,0.3754915,0.53676623,0.085127145,-0.106918976,-0.15353483,-0.23114786,0.20118631,0.54582965,-0.109139666,-0.30608726,-0.107765555,-0.004390925,-0.009958204,0.15541793,0.0070766434,-0.32334208,-0.1769842,0.08660638,-0.18419078,0.1958994,0.36393964,-0.42024127,-0.33304054,0.49018654,0.5961028,-0.028604478,-0.113907054,-0.027061936,-0.022301104,-0.5022683,-0.23166588,0.20010379,-0.14484477,0.37174347,-0.098047204,0.1482365,0.74573296,-0.36469823,0.045258194,-0.13584574,-0.095987216,-0.07244243,-0.030667806,-0.032990694,0.0849443,-0.38731006,0.053982772,-0.06352219,0.707115,0.38850436,-0.6790972,0.36342046,-0.41050696,0.14887665,-0.1680418,0.58985996,0.61422956,0.3353529,0.14047669,0.7631422,-0.48766863,0.28797987,-0.08569985,-0.41530895,0.12031167,-0.16886044,-0.13698377,-0.48422307,0.16546004,0.062626965,-0.13203889,0.068163574,0.12185113,-0.64896584,0.06924887,0.07065832,0.74690974,-0.31455117,-0.149709,0.44616342,0.8346008,0.7661566,0.0010387041,1.1764417,0.29692605,-0.37887967,0.23215875,-0.5805337,-0.64623934,0.09944886,0.41221595,0.1096884,0.23382393,0.21663985,-0.008670941,0.2541313,-0.3771801,0.16150337,-0.08906103,0.23789755,0.087900184,0.008156821,-0.24562354,-0.15766972,-0.06483343,-0.029053591,0.122279614,0.268888,-0.2368268,0.34137815,0.01956467,2.0001354,-0.0032545477,0.16268326,0.00013702922,0.47202885,0.037822314,-0.12027977,-0.16162431,0.34907427,0.32412428,0.15169682,-0.4991356,0.04116471,-0.25206465,-0.6404641,-0.06624043,-0.38145107,-0.08727879,-0.07375077,-0.23094001,-0.072263926,0.11812837,-0.2706802,0.64181066,-2.7402353,-0.08548245,-0.102717295,0.26294318,-0.37002426,-0.34086463,-0.17161503,-0.4457137,0.24074838,0.4022374,0.5000839,-0.7042335,0.34886366,0.19427611,-0.28638315,-0.20779215,-0.59074473,-0.007071048,0.028767938,0.22070724,-0.020950925,-0.05179716,-0.039785843,0.10496841,0.35928887,-0.13480192,-0.02809972,0.26157412,0.26429266,0.3263297,0.41137603,0.07754934,0.5982673,-0.17283235,-0.15299787,0.24900036,-0.251559,0.34477293,-0.06294629,0.09622364,0.1481084,-0.33976665,-0.7700113,-0.6577798,-0.2950604,1.2423911,-0.26892513,-0.10681203,0.19842525,-0.105581686,-0.15042509,-0.23089641,0.34942317,-0.043265477,-0.18947192,-0.64576185,0.16293594,0.007888252,0.3820191,0.065399356,0.04730226,-0.34405136,0.42058855,-0.16442391,0.49768946,0.28071612,0.06133627,0.06613508,-0.2796535,0.0660892,0.9839847,0.28017724,0.106193185,-0.04682849,-0.2680442,-0.3565472,-0.23578128,0.120099574,0.29149312,0.66979885,0.030846708,-0.07988665,0.278176,-0.03074763,-0.07371386,-0.143907,-0.23299189,0.08139681,-0.112856485,0.53940296,0.3355017,-0.18413454,0.5561644,-0.06974876,0.2135315,-0.04828517,-0.34829766,0.52461934,0.6977167,-0.16312842,0.025083616,0.26930517,0.44812363,-0.26946756,0.36648458,-0.62628365,-0.24388102,0.5163288,-0.21160473,-0.20776597,0.15304928,-0.22378868,0.108673126,-0.79112166,0.32895622,-0.06720634,-0.37005627,-0.44353223,-0.08578697,-3.6405573,0.068584666,-0.13823846,-0.19490555,0.15355691,0.13758017,0.033475623,-0.6077837,-0.3094888,0.1864866,0.08040059,0.5438622,-0.020560278,0.081358954,-0.26121366,-0.18660302,-0.31424814,0.09636773,-0.06657504,0.2751665,0.062156767,-0.33280107,0.032751076,-0.18954796,-0.313101,0.07154411,-0.54890436,-0.3936904,-0.20437336,-0.46591312,-0.25168434,0.72633517,-0.42013854,0.10930327,-0.12935671,-0.032772742,-0.15255569,0.20434472,0.25866103,-0.01498431,0.054887325,0.061074957,-0.05242929,-0.41626367,0.22506762,0.15192103,0.40212148,0.32494548,0.020729385,0.05944491,0.48672238,0.53074074,-0.053249784,0.57019347,0.5181707,-0.16920641,0.25393313,-0.42975128,0.018035537,-0.38278514,-0.5231721,-0.08948955,-0.31622112,-0.5863402,-0.014707327,-0.24370195,-0.6975877,0.3041821,0.0682943,-0.04657858,0.02319967,0.25887713,0.40454146,-0.264798,0.07441001,-0.056201234,-0.0487991,-0.4828065,-0.3655014,-0.49837202,-0.36736512,0.42823574,1.0739436,-0.31866398,-0.14569303,-0.084269606,-0.24996763,-0.119054995,0.00791036,0.042107083,0.24643825,0.28330302,-0.24981833,-0.6720239,0.43376136,-0.26653576,-0.056069024,-0.63222694,0.07779098,0.5407082,-0.6999335,0.32236683,0.2573707,0.08920409,0.20015925,-0.32535744,-0.21906736,-0.07198036,-0.2701529,0.120530404,-0.14196134,-0.64463854,0.38669583,0.19076093,-0.26942903,-0.5447813,0.42415524,0.026020762,-0.2897594,0.14490733,0.21948111,0.18247789,-0.089346945,-0.37435535,0.17634472,-0.51480806,0.24482736,0.45076716,0.040663917,0.27326778,-0.09703002,-0.23238745,-0.53468096,0.06139267,-0.4110391,-0.20349856,0.16613898,0.18496886,0.2064998,0.09784944,0.106011316,0.30580693,-0.39629728,0.040239424,0.086233154,-0.23826084,0.28917328,0.3438995,0.36755985,-0.4425035,0.5059886,-0.014317114,-0.05593894,-0.05117833,-0.06636953,0.49015558,0.20119861,0.11720168,0.056561228,-0.34257236,0.24543297,0.80290246,0.26294753,0.3236821,0.012373442,-0.26709485,0.17457826,0.1558283,0.09294833,0.27297065,-0.41757968,0.052468844,0.15806553,0.25445595,0.39584458,0.27243325,0.37950218,-0.04352433,-0.23344567,7.655006e-05,0.08336738,-0.07420319,-0.84569657,0.37313575,0.2668972,0.662011,0.32354176,0.02150257,0.12926471,0.4810101,-0.32039756,0.20998633,0.19090392,-0.4005545,-0.6513452,0.49659824,-0.61728394,0.48480392,0.0679362,-0.0010569971,0.10132834,-0.09937145,0.2623564,0.9020724,-0.19416758,0.0019098371,-0.11177503,-0.17108376,0.004804589,-0.38528237,0.069053926,-0.53042245,-0.31018147,0.53739965,0.3287409,0.25769162,0.017014612,0.12906167,0.019541718,-0.103795074,0.1590203,-0.10159008,0.20009752,0.13263738,-0.56850094,-0.39746937,0.5704557,-0.3379646,0.07120916,0.17525667,-0.18196446,0.25544325,-0.2377496,-0.025699513,-0.15210685,-0.4876191,0.053752184,-0.060311455,-0.27624962,0.39412507,-0.08260196,0.38960093,0.12419085,0.02162834,-0.30840173,0.62157845,0.15062606,0.6762898,-0.094956025,-0.31617445,-0.4477108,0.11864547,0.21070372,-0.21394059,-0.007631447,-0.18187705,0.020598732,-0.60036546,0.31828177,-0.014892694,-0.3047391,0.05018477,-0.30967164,-0.076713644,0.48491335,-0.07077092,-0.03721441,-0.06107935,-0.14195313,-0.19031,0.052636787,-0.24997771,0.13238558,0.20659171,-0.047267377,-0.10269832,-0.17107241,-0.10673734,0.24262394,0.054628797,0.16311732,0.20631453,0.010920286,-0.2023728,-0.19229287,0.09276816,0.28195122,0.009511273,-0.050847456,-0.19442663,-0.31727588,-0.3197401,0.13867892,-0.26706246,0.36626023,0.19435658,-0.36399496,0.52411026,-0.052000597,1.1691751,0.070687845,-0.2538107,-0.0054810494,0.5221303,0.17618203,0.16625859,-0.32259744,0.8325582,0.54766786,0.07490036,-0.172179,-0.2307216,-0.30510622,0.3373716,-0.07425705,-0.1926029,0.047332883,-0.6597353,-0.403557,0.32258427,0.09136517,0.3183115,0.09235574,-0.049602073,0.09674499,0.10794084,0.23423265,-0.4925022,-0.27198815,0.38069606,0.16682677,0.13413164,0.13828343,-0.40591317,0.46892273,-0.532594,-0.00466682,-0.12011861,0.12141923,-0.10315187,-0.11767979,0.2348939,0.13893022,0.41902304,-0.27036467,-0.45214853,-0.23651682,0.4770494,0.10869463,0.2860788,0.63633335,-0.23775205,-0.00067090243,0.0023400858,0.38509664,0.9550153,-0.2421902,0.03595816,0.4896583,-0.32273623,-0.40716064,0.3467961,-0.09395504,0.07651079,-0.027181752,-0.2935636,-0.4259142,0.3177505,0.16471173,-0.01439634,0.16864721,-0.54744005,-0.22826955,0.112680264,-0.28907788,-0.32988316,-0.39954403,0.37565073,0.8954709,-0.5150146,-0.2510078,0.22748011,0.20953798,-0.20994478,-0.43600917,-0.14722508,-0.3149557,0.23475175,0.08981314,-0.2796958,-0.12702633,0.07992421,-0.25922728,0.19430813,0.23635478,-0.40755406,0.10780454,-0.113527864,-0.02837602,0.7662809,-0.010989755,-0.025157502,-0.56074625,-0.29009265,-0.7406544,-0.5686808,0.5030646,0.1975328,-0.1991343,-0.3728962,-0.04272199,0.00696446,-0.2162088,-0.026955705,-0.5170136,0.48625457,0.051122237,0.0895466,-0.08388966,-0.7910188,0.060869955,0.0027729115,-0.20343718,-0.5219923,0.3597142,-0.1799629,0.8613117,0.06706561,-0.12427373,0.4007541,-0.40189293,0.0152541585,-0.3615156,-0.15050414,-0.64379865,0.1542411,78 +35,0.53283453,-0.036724806,-0.50367904,-0.16729313,-0.32564873,0.107875995,-0.36456317,0.1918317,0.27239454,-0.18524863,-0.080260895,0.043928392,-0.05590242,0.24219517,-0.075265385,-0.749008,-0.008186599,0.06812986,-0.81233716,0.64227295,-0.36476612,0.3702271,-0.07026649,0.431258,-0.10565984,0.46217147,0.26043367,0.0194641,0.11195732,-0.1213877,0.14803183,0.019425241,-0.80710226,0.2752338,-0.21542147,-0.23389214,0.0016320869,-0.36934435,-0.12527832,-0.6570717,0.14729163,-0.76828957,0.528449,-0.12593551,-0.11809098,0.048760645,0.10347758,0.24640682,-0.28167585,0.056218266,0.13854276,-0.16608146,-0.17903669,-0.36778212,0.064648174,-0.49749267,-0.30921793,-0.06932155,-0.70286953,-0.2233103,-0.34545875,0.16230044,-0.2881503,-0.08165188,-0.26233116,0.44044837,-0.31198686,0.013310067,0.28405342,-0.20827134,0.20547926,-0.525552,0.061645217,0.033051066,0.38581076,-0.02471965,-0.19006877,0.44208795,0.08702384,0.36379236,0.28435996,-0.3482463,-0.09390155,-0.057943784,0.21836437,0.35471666,-0.07442349,-0.21491629,-0.21499997,-0.09567061,0.44976547,0.21847822,0.01294386,-0.21091793,-0.102335446,-0.11182195,-0.10286562,0.69740236,0.5073316,-0.29821366,-0.18540218,0.30900082,0.5198737,0.31179783,-0.12653457,-0.056386482,-0.04514899,-0.51638776,-0.15170681,0.18914795,-0.0280029,0.3721345,-0.06596284,0.17505568,0.7147526,-0.143318,-0.049114276,0.13587344,-0.008790224,-0.091098934,-0.26518288,-0.06729512,0.23731324,-0.60801244,-0.14964962,-0.41066366,0.55934757,-0.0221565,-0.7046313,0.31704545,-0.5382019,0.030726004,-0.09886311,0.54411703,0.818183,0.52245677,0.18316078,0.7603372,-0.30088174,0.114108294,-0.10317734,-0.41067368,0.014844671,-0.13594441,0.079297036,-0.4334681,0.06530885,-0.22930035,0.23879167,0.030194715,0.29395983,-0.54888594,-0.15042943,0.08096685,0.65791905,-0.28617847,-0.062414005,0.68852353,1.1534213,0.8456514,0.042953752,1.0364281,0.19979799,-0.16999815,-0.044485405,-0.11847615,-0.40634692,0.31179965,0.44564986,0.24216962,0.3519636,-0.19131473,-0.086149566,0.2509131,-0.23826614,-0.12766713,0.07481514,0.5322049,0.12145816,-0.12299183,-0.31846115,-0.09943711,0.049855433,0.10018295,0.24875641,0.16459574,-0.24909134,0.18160701,0.17341922,1.0057442,-0.08802634,0.07142906,0.061303608,0.37682447,0.41258958,-0.15449312,0.00014494732,0.4098853,0.33635065,-0.06649648,-0.661422,0.26631394,-0.43623328,-0.4730183,-0.11779534,-0.38250977,-0.2088661,0.021907762,-0.5634341,-0.15773445,-0.024061894,-0.2014184,0.33250076,-2.6242576,-0.31508714,-0.12803634,0.42177248,-0.21864897,-0.24645486,-0.046370115,-0.42002863,0.21878657,0.29719478,0.3975765,-0.50537056,0.5879591,0.54076606,-0.5291704,-0.10579462,-0.511209,0.010468688,-0.002234893,0.5623422,0.03289501,-0.27388525,-0.21347466,0.3376872,0.6852983,0.007996704,0.17945066,0.44526845,0.31525227,-0.07697697,0.4391717,0.09530316,0.55873674,-0.30998433,-0.1663123,0.25519344,-0.19092044,0.20611894,-0.14820562,0.13677756,0.54613227,-0.2985518,-0.8894739,-0.53016543,-0.29673052,1.2074283,-0.23316944,-0.59761775,0.09019716,-0.014648259,-0.14598572,0.22666404,0.543498,-0.117614396,0.26841927,-0.6215107,0.22629249,-0.19272141,0.191899,0.03905523,-0.049449034,-0.31560925,0.79612136,-0.118495844,0.59767956,0.1696784,0.3893473,-0.13020739,-0.38404536,0.15501633,0.7520033,0.37834212,-0.00428541,-0.19655795,-0.15447193,-0.10880645,-0.03794138,0.012237569,0.6455078,0.5906192,0.00089711696,0.12645331,0.28291473,-0.091134444,0.040847756,-0.25425845,-0.2765816,-0.053251594,-0.008256942,0.61191696,0.7561374,-0.12143059,0.3411101,-0.12043737,0.18406609,-0.068957284,-0.5582312,0.6958335,0.4644804,-0.24295034,-0.12649041,0.54449356,0.40416837,-0.24155271,0.413606,-0.6827529,-0.40139884,0.6709864,-0.08835269,-0.31578,0.1855542,-0.24398193,0.21521246,-0.60070276,0.4117009,-0.45564532,-0.5064806,-0.34946895,-0.109246865,-3.2402792,0.28953177,-0.025748914,-0.06536555,-0.47630683,-0.034629565,0.31178686,-0.5701241,-0.5239015,0.06879306,0.13209157,0.66513133,-0.16904926,0.1310041,-0.18405874,-0.44136828,0.07849711,0.2823746,0.13011268,0.2026395,-0.09258841,-0.28174052,-0.050341323,0.05398171,-0.58868384,0.23893486,-0.47507966,-0.49845576,-0.047944892,-0.42235753,-0.1087284,0.5406368,-0.34006777,0.044422965,-0.22904913,0.2263673,-0.007341251,0.15181355,0.05192084,0.18217744,0.24446869,-0.00017806282,0.015805315,-0.24605393,0.33413774,-0.007588541,0.5047282,0.18694174,0.018815896,0.0062770825,0.4309367,0.5778706,-0.19060081,1.0306005,0.18196939,-0.04847242,0.3536138,-0.08581936,-0.42869788,-0.68973374,-0.34817183,0.04340654,-0.35632327,-0.34461474,0.114562094,-0.21639991,-0.8677125,0.41619506,-0.041467123,0.35168603,-0.10782561,0.3917738,0.51464975,-0.14516374,-0.07535204,-0.074785054,-0.20368996,-0.47445965,-0.31217632,-0.7257569,-0.4252179,-0.07297306,0.74530876,-0.32687518,0.03164737,-0.018920925,-0.062443018,0.14655173,-0.08321022,0.06722358,0.13583897,0.29929373,0.08847469,-0.513492,0.33991462,-0.13785762,-0.09827763,-0.4178486,0.1678518,0.6268972,-0.60463417,0.3780328,0.38251668,0.048931323,-0.091980405,-0.57187575,0.0034325533,0.035359137,-0.21899755,0.45600432,0.18797463,-0.94450927,0.6201722,0.093587875,-0.32570243,-0.7413765,0.41286978,0.07665274,-0.2560864,-0.19360676,0.3994434,0.021213956,-0.082169995,-0.270917,0.245448,-0.47112137,0.22061719,0.12051824,-0.09465136,0.17400798,-0.122145765,-0.37126848,-0.6665916,-0.08242532,-0.54317766,-0.31828249,0.23669337,-0.16995779,-0.03538045,0.19830066,0.04450726,0.49315345,-0.26872557,0.10715346,-0.09025982,-0.41812205,0.3855065,0.54823333,0.46619922,-0.17269728,0.48782745,0.10170529,-0.110864036,0.2184782,0.100796774,0.46886846,-0.05920857,0.3755198,-0.11410934,0.13720608,0.27172452,0.6827103,0.11309105,0.38992295,-0.06805294,-0.21144536,0.44188216,0.020243965,0.31135583,-0.21166846,-0.43549362,0.08859892,0.14233899,0.03732077,0.45594934,0.22547747,0.30910647,0.05596163,-0.24164389,0.0670235,0.2482854,-0.1610974,-1.327596,0.30827358,0.23832579,0.9306054,0.39618513,0.0055907518,-0.16592559,0.59196615,-0.16833034,0.10265303,0.31369284,0.08058496,-0.44156468,0.6169729,-0.6165534,0.25622016,-0.13601384,-0.021451164,0.22795704,0.07915436,0.30414551,0.8840005,-0.2952689,-0.005056926,-0.1823993,-0.13591188,-0.0761691,-0.19182733,0.07429269,-0.24204487,-0.4243588,0.7675476,0.28738132,0.29658315,-0.3267441,0.027615745,-0.06344902,-0.22667,0.22876889,-0.101784565,-0.033606358,0.0032765027,-0.36795083,-0.21394342,0.5184585,-0.06939915,0.14781605,-0.18616946,-0.12811892,-0.04544944,0.10429411,-0.04099351,-0.02431164,-0.57031405,0.08006213,-0.33469558,-0.363704,0.4388586,-0.32922095,0.021019265,0.2035635,-0.014040686,-0.08005799,0.21122012,0.09374506,0.48604783,0.11170095,-0.28652823,-0.35121998,-0.0029776935,0.11461875,-0.28597128,0.11050048,-0.36092132,0.14597622,-0.66186255,0.4298541,-0.19043817,-0.35221618,0.33787894,-0.25420794,-0.049177166,0.45742756,-0.0023468956,-0.16686988,0.09543677,-0.14766105,-0.29736546,-0.116232015,-0.21785997,0.20888454,0.17579927,-0.1823443,-0.1698949,-0.10088821,-0.15166718,0.4594676,0.14469874,0.38297793,0.21605432,0.0497763,-0.36783618,0.23085739,0.36543113,0.46786737,0.11864019,0.13196588,-0.31593728,-0.42245674,-0.4931169,0.14582244,-0.058780476,0.03813511,0.032292582,-0.23658444,1.021724,-0.03315015,1.0667942,0.010814618,-0.36327353,0.07193158,0.55733126,-0.08266097,-0.07471535,-0.4650273,0.9238095,0.50760573,-0.01803656,0.011933494,-0.24604727,-0.15350996,0.19308342,-0.38866746,-0.016079195,-0.13946176,-0.612206,-0.45084238,0.19372797,0.21628207,0.06351893,-0.108186714,-0.15470307,0.16845205,0.07095556,0.29987618,-0.8535102,-0.24772696,0.013329059,0.09072945,-0.13504508,0.24472985,-0.3850243,0.33689955,-0.7822019,0.17712311,-0.55570614,0.094509915,-0.17818232,-0.33826405,0.11683294,-0.030418068,0.3703828,-0.26291877,-0.4896269,-0.072325595,0.20471269,0.06329375,0.1439882,0.5599251,-0.17089672,0.004331693,0.12448554,0.6035482,1.0281503,-0.35439909,0.0920552,0.14505237,-0.45059305,-0.6353178,0.098267004,-0.41182625,0.02288394,-0.07714487,-0.37165186,-0.3169107,0.22911988,0.056374293,0.12589352,0.06467253,-0.8402971,-0.132819,0.31016296,-0.28898537,-0.07233921,-0.12990278,0.29715985,0.77078915,-0.35009792,-0.27759802,0.10571789,0.4501996,-0.1386208,-0.6296355,-0.015331879,-0.28856593,0.37463734,0.064525336,-0.25155616,-0.047432587,0.059178293,-0.51803946,0.13269389,0.33804476,-0.32336968,-0.0800755,-0.09183139,0.092668526,0.7615412,-0.17757417,0.056260742,-0.55085254,-0.53391737,-0.84838736,-0.5655282,-0.021064732,0.23449385,0.024932472,-0.37238392,-0.035269413,-0.12780069,-0.14664155,-0.030643811,-0.4908929,0.2581909,0.16971906,0.57955545,-0.28949526,-1.1201602,0.2033188,0.1596537,-0.13006195,-0.59616,0.48660856,-0.1687115,0.6845667,0.047219552,-0.10908108,-0.086385265,-0.58968663,0.08482756,-0.37518674,0.037832487,-0.7003311,0.21629103,80 +36,0.4130866,-0.2624192,-0.48464507,-0.09813253,-0.40776646,0.11735763,-0.24190466,0.49725062,0.19447261,-0.5344108,-0.2042878,0.014509341,-0.10793717,0.14666454,-0.13705468,-0.39456394,-0.10400428,0.23379925,-0.6019489,0.7496604,-0.3097391,0.124771066,-0.043867204,0.3676359,0.27243966,0.20282835,-0.056099225,-0.14043036,-0.32994366,-0.14815974,0.020663794,0.3454835,-0.53210706,0.31707364,-0.41536918,-0.37498617,-0.12620555,-0.46415395,-0.42891794,-0.69133234,0.17692383,-0.89805335,0.57267064,-0.11821355,-0.25122967,0.24340527,0.14428475,0.3355907,-0.04221765,0.100188345,0.15520388,-0.21946913,-0.14450513,-0.35394406,-0.09506008,-0.4621015,-0.53496945,-0.059881438,-0.30971578,0.08389821,-0.16785465,0.24765041,-0.12875181,0.020203803,-0.24552208,0.3676287,-0.49097908,0.33950713,0.10328995,0.023444675,0.11621243,-0.7384878,-0.26603878,-0.10603706,0.13885133,-0.05714745,-0.26648527,0.31524143,0.17472777,0.54596186,-0.03179741,-0.09395815,-0.2955026,0.10754262,0.16124962,0.44286835,-0.2681005,-0.23018792,-0.11326347,0.034063067,0.48920524,0.06675178,0.06477373,-0.24779941,-0.043525346,-0.16576181,-0.18153141,0.2875057,0.39657673,-0.21190602,-0.15805365,0.43613857,0.41310757,0.32760006,-0.17713946,-0.13587332,-0.18247724,-0.45526856,-0.11068119,0.13235797,-0.28345236,0.56971145,-0.13707635,0.11334567,0.29768282,-0.055280186,-0.0704123,0.2226739,0.15738332,0.14887388,-0.12292098,-0.35328254,0.29855525,-0.4523376,0.04744834,-0.33851627,0.4804865,-0.051889874,-0.572309,0.27460298,-0.5157976,0.09538515,-0.024477828,0.3848626,0.6965779,0.57340246,0.06506142,0.6532289,-0.14467846,0.07562267,-0.09140788,-0.1851885,0.10870065,-0.26334682,-0.06185843,-0.5505536,0.14733249,-0.22232343,-0.1038222,0.04900805,0.48806152,-0.51017344,-0.23627296,0.04567256,0.76479924,-0.28058833,-0.1457271,0.8352735,1.0056126,1.0006666,0.045723163,1.0875397,0.2897617,-0.20408262,-0.11288282,-0.27539098,-0.5774413,0.31115338,0.27372628,-0.4027664,0.31689674,0.12802677,0.04576608,0.45179832,-0.35637525,-0.12506066,-0.289664,0.3192173,0.075358704,0.002337262,-0.403408,-0.38837194,-0.07881921,0.13904047,0.17286141,0.21303324,-0.25794464,0.39377716,0.057609603,1.397052,-0.13371615,0.0070327334,0.13963881,0.29768258,0.1381855,-0.119491085,0.11259472,0.14459385,0.25796726,-0.008729152,-0.5063058,0.16948706,-0.2461492,-0.56261146,-0.17824483,-0.19312263,-0.29146385,0.083960116,-0.50524145,-0.30131346,-0.046077948,-0.21917814,0.36963734,-2.4384782,-0.1511973,-0.19113412,0.50728476,-0.31128997,-0.3216181,-0.16255523,-0.42815095,0.2730943,0.2886164,0.4690119,-0.6043685,0.4450188,0.29767781,-0.59577227,-0.058300838,-0.6149477,-0.14750296,0.072994694,0.33278555,0.021654954,0.0033911373,0.30404446,0.030529138,0.4830262,-0.2353631,0.24686812,0.4038149,0.34826994,-0.05508136,0.29542878,-0.03840368,0.579473,-0.3918059,-0.27626693,0.45704308,-0.32046497,0.24660772,-0.07035797,0.08441035,0.4794244,-0.5032315,-0.8211533,-0.67589164,0.06459129,1.3492278,-0.11201671,-0.5253695,-0.026682978,-0.38224924,-0.2966771,-0.04769482,0.33131087,-0.16591647,-0.08285295,-0.91668177,-0.082423806,-0.14440249,0.25494888,-0.04614718,0.0037735403,-0.49391887,0.68712187,0.008034296,0.58146477,0.37167728,0.3531177,-0.18585712,-0.3830469,0.046320405,0.75879186,0.51748025,0.09596348,-0.24754965,-0.23934743,-0.35558024,0.13849989,0.27332276,0.52874005,0.37319294,-0.09910616,0.094036326,0.2585044,-0.029667787,0.026047222,-0.21141018,-0.31854513,-0.28491503,0.22453642,0.6932131,0.74409497,-0.09779504,0.35220167,-0.11553517,0.39814365,-0.10711174,-0.6113085,0.44935083,1.1959993,-0.28111055,-0.3530302,0.6427618,0.5993135,-0.22007619,0.452963,-0.6560395,-0.49925193,0.18913046,-0.10535832,-0.37558103,0.028115738,-0.379932,0.3311419,-0.8426491,0.5146599,-0.42581356,-0.3491907,-0.74207425,-0.05659288,-1.5795683,0.22088294,-0.14348523,-0.21661955,-0.17476998,-0.23703754,0.14062813,-0.6068489,-0.6167484,0.15977816,0.17768455,0.5258938,-0.051683847,0.023629121,-0.18565038,-0.4497945,-0.039859742,0.1548926,0.23993507,0.39926267,-0.111714445,-0.5063264,0.059552357,-0.08299548,-0.20123568,0.039308317,-0.6116624,-0.6166029,-0.033646755,-0.47104117,-0.17130661,0.33977175,-0.3733717,0.0056036413,-0.23886508,0.095633015,0.061199214,0.16251521,-0.085979566,0.26641095,0.21394326,-0.09193499,0.08348561,-0.15458922,0.35580117,0.1722337,0.1048989,0.47343758,-0.2145076,0.18245915,0.52343416,0.6095074,-0.30001324,0.8005227,0.5964496,-0.19864357,0.2673988,-0.18085,-0.3309925,-0.5520494,-0.2621578,0.107082665,-0.40095025,-0.32448363,0.12521918,-0.34979087,-0.95765805,0.57858974,-0.09661803,0.14899367,0.06999371,0.14300463,0.55537486,-0.13578954,-0.055575714,-0.050885048,-0.1399827,-0.46360213,-0.53547454,-0.6298147,-0.39451474,-0.094757825,1.1968923,-0.15222089,0.17269966,0.26325783,-0.27774617,0.04990397,0.23622659,-0.11340313,0.021606077,0.5424112,-0.17146546,-0.65417117,0.2595899,0.05953533,-0.03291769,-0.45234275,0.42944553,0.62567353,-0.5166949,0.5456336,0.46127766,0.019786896,-0.10418022,-0.60367244,-0.16610214,0.049368903,-0.29046094,0.4066282,0.25325575,-0.6614479,0.41358107,0.20012392,-0.35553554,-0.6853821,0.5928066,-0.07812394,-0.24313152,-0.16654544,0.33610508,0.08133814,0.09128932,-0.16002904,0.25054318,-0.3471019,0.441399,0.12366043,-0.03399368,-0.13717702,-0.29738665,-0.075021125,-0.93139434,0.09291418,-0.42992932,-0.39597222,0.25767013,0.031840287,0.1429339,0.07301128,0.23812762,0.34453562,-0.33267248,0.08664774,-0.18972617,-0.30003735,0.42552358,0.4048798,0.59587157,-0.4451115,0.514209,0.07796957,-0.2428211,-0.019055234,-0.0011848956,0.45342147,0.12021364,0.2845897,0.0905049,-0.042400688,0.18935302,0.7548617,0.24661668,0.35365862,-0.08164437,-0.24375711,0.12399435,-0.025200963,0.24175225,-0.22927201,-0.42872894,-0.10784401,-0.078276284,0.12310438,0.39929944,0.08730088,0.2963125,-0.15799195,-0.27149615,-0.020589726,0.12795146,0.18102665,-1.3114604,0.21043625,0.2297549,0.8988018,0.49773204,0.012113496,0.04042194,0.636753,-0.31612554,0.01256505,0.46779624,-0.06529912,-0.4483209,0.43093818,-0.72201514,0.3308075,-0.032538317,0.072522976,0.037773106,0.0667314,0.4102679,0.76525545,-0.17850485,0.18492809,-0.026914645,-0.3774876,-0.05521522,-0.16866858,0.19127339,-0.5336114,-0.3820855,0.7239151,0.5508018,0.50850976,-0.28772467,0.012994905,0.13293739,-0.12988582,0.27302313,0.103903264,0.12438156,0.036104854,-0.6119845,0.07417473,0.45285404,-0.13531087,-0.016602032,0.0897078,-0.23818961,0.27521002,-0.0550574,-0.031981107,-0.0044759456,-0.5840924,-0.13955876,-0.39527008,-0.18296644,0.26195478,-0.099050894,9.880867e-05,0.09717405,0.09415117,-0.22261569,0.13371886,-0.04896494,0.8238809,0.08279079,-0.19688725,-0.3623116,0.25799397,0.19022228,-0.11006665,0.0815047,-0.24836041,0.11329652,-0.5945345,0.4148292,0.05995092,-0.18309581,0.07252453,-0.088875696,0.06985544,0.38983315,-0.055013314,-0.24836959,0.106108725,0.055692326,-0.41285276,-0.14809567,-0.15565684,0.25171748,0.3743215,-0.020005211,-0.24430615,-0.08796014,-0.091919586,0.5419651,0.105630554,0.44806153,0.47092676,0.021780593,-0.48326063,0.027722334,0.1969339,0.5212637,-0.05960764,-0.15027691,-0.36293888,-0.36772135,-0.37603748,0.4097911,-0.16971782,0.24318172,0.10982333,-0.13979214,0.7135991,-0.01588607,1.2023253,-0.0900987,-0.34006813,0.050608505,0.41685215,-0.14201644,-0.12643258,-0.47708946,0.7920028,0.51461256,0.099206455,-0.041177202,-0.47050345,-0.07021649,0.017178014,-0.1677994,-0.13418347,-0.15295674,-0.71016216,-0.3032821,0.19968772,0.2576397,0.02119995,-0.09250912,0.14234719,0.3155439,0.12503006,0.19470158,-0.4184608,-0.34863022,0.3029941,0.29487872,-0.06392901,0.1530159,-0.5074428,0.24061498,-0.5261814,-0.06496943,-0.11105405,0.07682745,-0.20229712,-0.25201604,0.20487681,-0.010742199,0.30400115,-0.47529754,-0.37746632,-0.22117317,0.45319164,-0.07839978,0.073240265,0.4734382,-0.18937066,0.083309814,0.12122731,0.40824276,0.9472949,-0.45260882,0.17495655,0.346485,-0.3886662,-0.59214246,0.20012811,-0.3085007,0.15977904,0.058291323,-0.22235633,-0.619797,0.3116194,0.10944076,0.105075404,-0.1333864,-0.64021707,0.10336629,0.37524506,-0.27249962,-0.1341774,-0.16142182,0.047058694,0.413807,-0.16550142,-0.38491493,0.068440706,0.30572766,-0.18622038,-0.3431316,0.011354972,-0.4314769,0.28605473,0.12001549,-0.35628182,-0.25649017,-0.050162084,-0.45670182,0.16595824,0.3476014,-0.28572685,0.061209284,-0.31116557,0.11120304,0.7952568,-0.16991572,0.23591049,-0.44723687,-0.42992747,-0.7983623,-0.33588877,0.09307186,0.3478317,-0.12674367,-0.69424725,0.03932268,-0.16578177,-0.37612927,-0.109295085,-0.30219638,0.5592111,0.1868155,0.27674627,-0.20542657,-0.7320837,0.27027252,0.18579713,-0.15246055,-0.35853276,0.44065383,-0.041574836,0.9730109,0.09233238,0.11529893,0.10344262,-0.501805,-0.1340878,-0.13511986,-0.04562427,-0.6363111,-0.07240813,85 +37,0.51340634,0.031369865,-0.5147417,-0.25399318,-0.3918769,0.08303189,-0.19596274,0.18219104,0.37742522,-0.18401237,-0.10019727,-0.12723036,0.06862428,0.29400274,-0.02837506,-0.77104694,0.02108325,0.1910463,-0.83721346,0.53779966,-0.5094853,0.35391837,0.050993014,0.55727285,0.1136626,0.28402758,0.014576538,0.019846804,-0.016429394,0.1155504,-0.07038914,0.5134722,-0.75132096,0.14611636,-0.07905078,-0.23574258,-0.23273124,-0.42945454,-0.2593819,-0.64281243,0.36324698,-0.8087671,0.57917076,0.031437088,-0.48024434,0.0620091,0.09783078,0.26515877,-0.39091188,0.059706815,0.1784555,-0.41808736,-0.03301411,-0.12991062,-0.25346768,-0.4466482,-0.6723703,0.03699386,-0.63057935,-0.12558696,-0.2823295,0.26521674,-0.30156252,0.035371773,-0.31262907,0.40550676,-0.3224947,0.10769741,0.3621149,-0.22630456,0.06804845,-0.22256981,-0.12277262,-0.11895889,0.3483163,0.007965915,-0.45387644,0.20829585,0.26550537,0.65399224,0.13806042,-0.41101748,-0.26504982,-0.025078647,-0.08384848,0.40301916,-0.07090813,-0.17430624,-0.33772177,-0.09599739,0.16929366,0.33808678,0.090156816,-0.37197307,-0.050650224,0.09314075,-0.024051026,0.48135564,0.50020283,-0.31876814,-0.28971153,0.29123914,0.49114874,0.12187341,-0.32406744,0.13295656,0.03321054,-0.65260386,-0.20883562,0.19519505,0.04659693,0.52018785,-0.11657895,0.07911427,0.8063543,-0.05847439,-0.21093361,-0.23002917,-0.17478545,0.053375002,-0.40419763,-0.04347888,0.2953852,-0.36237103,0.095844895,-0.16314715,0.53454375,0.102091715,-0.7790461,0.3144975,-0.57738197,0.27738053,-0.09456185,0.6313972,1.056843,0.35333484,0.33755904,0.85047275,-0.47123036,0.18752351,-0.0006487947,-0.40866724,0.15806088,-0.22426534,0.29564822,-0.4465145,-0.053596426,-0.01643896,-0.16835068,0.069745705,0.31196955,-0.5008515,-0.12653597,0.10236891,0.72623736,-0.3750512,-0.13397673,0.9616392,0.95919955,0.92355835,0.08523014,1.2886094,0.43333134,-0.15498886,0.16078536,-0.26090083,-0.68535,0.09190629,0.24753365,0.10346574,0.37313226,0.12398621,0.20887984,0.4921211,-0.29227078,-0.010818023,0.066470474,0.123163395,0.03749114,0.010166146,-0.456048,-0.07405749,0.091537654,0.15239286,0.062059708,0.26921612,-0.060329616,0.4072827,0.02632337,1.6261849,0.13022283,0.09439023,0.021213196,0.34279883,0.3047279,-0.2577554,-0.16021512,0.36932275,0.40680656,-0.009443298,-0.4779479,0.033761993,-0.2110498,-0.26923132,-0.21356913,-0.4592834,0.014659379,-0.29133946,-0.5459257,-0.19477817,-0.002026111,-0.3531142,0.476175,-2.6327672,-0.26238492,-0.064465016,0.36896044,-0.05156164,-0.333857,-0.3615405,-0.52054334,0.207239,0.3748628,0.3031629,-0.69086796,0.40370154,0.25731426,-0.40241438,-0.089303695,-0.7164858,-0.023573719,-0.07747762,0.36545852,-0.107651934,-0.01592394,-0.06875802,0.42058614,0.6543965,0.033883095,0.0093279965,0.23504975,0.5115883,-0.13228859,0.64297205,0.17072675,0.5045201,-0.11859402,-0.22239202,0.32005784,-0.33350086,0.3612552,0.070489325,0.04989611,0.47452587,-0.4186504,-0.8062243,-0.54070675,-0.17491199,0.9451275,-0.45310023,-0.31265602,0.3166775,-0.44721216,-0.24276768,0.044989213,0.5953323,-0.047417194,0.099470034,-0.75298125,0.014448099,-0.08744468,0.23757437,-0.1200605,0.1723148,-0.32184094,0.69466037,-0.24979657,0.4178819,0.2693743,0.10465735,-0.19589056,-0.47448075,0.29773527,0.7993429,0.30901328,0.10978073,-0.18261315,-0.31790066,-0.1408586,-0.15638518,0.14290129,0.6865788,0.58411473,-0.10297472,0.22155628,0.44392517,-0.18098678,-0.03158091,-0.12729265,-0.22130021,-0.037129622,-0.017585078,0.48668495,0.86040115,-0.17241892,0.40431923,-0.07359396,0.31210244,0.008390484,-0.6245127,0.5639414,1.0001829,-0.17041321,-0.15606847,0.53116953,0.32038736,-0.38414446,0.4144078,-0.52021766,-0.10103938,0.6481327,-0.031525478,-0.39725584,0.23911913,-0.43711585,0.04769954,-0.88069934,0.22617757,0.1186154,-0.46296695,-0.42526844,-0.13187799,-3.861787,0.2016082,-0.19873908,-0.076108746,-0.12503374,-0.26597482,0.31677765,-0.578423,-0.5704962,-0.00017171912,-0.0030567031,0.5021751,-0.22769287,0.0897446,-0.33997083,-0.2676564,-0.20378646,0.27087903,0.20596676,0.42856807,-0.10487938,-0.40511775,0.015897233,-0.24327189,-0.5396502,-0.06049222,-0.5798881,-0.56455654,-0.11890492,-0.4492307,-0.23243067,0.7119305,-0.26333433,-0.028259218,-0.43728638,-0.13236982,-0.09422109,0.29539618,0.29064816,0.3305925,0.18488991,0.1888181,-0.17844243,-0.2742392,0.14833724,-0.066669375,0.22054276,0.30201274,0.0047008665,0.29303306,0.3862119,0.685496,-0.230182,0.79167527,0.44784352,0.01527093,0.28551975,-0.26039904,-0.25204456,-0.83642876,-0.28588563,-0.29196715,-0.54942584,-0.37052757,-0.15674931,-0.36135685,-0.8320081,0.4906324,0.075565666,0.20744602,-0.09079054,0.3083021,0.4532878,-0.23525907,-0.027554594,-0.058600314,-0.32684872,-0.6034306,-0.33807898,-0.550172,-0.7416791,0.2039793,0.9135535,-0.15688984,-0.041215613,0.023611443,-0.24514854,0.04977432,0.18751603,0.1658925,0.27040246,0.49051085,-0.09265822,-0.5499972,0.4849552,-0.3437974,-0.15460092,-0.69207406,0.15715544,0.5747812,-0.62479985,0.78130925,0.27910113,0.23772627,0.011460908,-0.6643705,-0.34484488,-0.07254459,-0.1931465,0.6620787,0.25758302,-0.80297816,0.48013496,0.13589337,-0.10340083,-0.6416314,0.4809453,-0.19388947,-0.2562384,0.21168096,0.31157774,-0.034747332,-0.06911216,-0.012027383,0.24868503,-0.4448393,0.1769036,0.47353175,0.023269322,0.24498801,-0.016488373,-0.105762236,-0.60001963,0.055764936,-0.6115716,-0.3469165,-0.061529204,0.022918057,0.15995559,0.09255189,-0.051165543,0.4083841,-0.30888134,0.23841754,-0.14203912,-0.26235098,0.21305408,0.58270276,0.3426337,-0.54379636,0.59844077,0.14150597,-0.001377061,-0.035538673,0.20543137,0.50979567,0.11472969,0.42627764,-0.19370633,-0.04429086,0.1739282,0.6891214,0.14567044,0.38012084,0.09173219,-0.09004854,0.32142982,0.14436954,0.22982995,-0.12701137,-0.28822416,0.023215864,-0.100167684,0.33337533,0.48089236,0.17920277,0.31512427,-0.09890257,-0.21667454,0.24045308,0.099253364,-0.041025396,-1.4343108,0.31014967,0.40086037,0.79983664,0.4436268,0.100169495,-0.097942844,0.42303115,-0.38542956,0.13715215,0.39004454,-0.010991113,-0.26360965,0.5374158,-0.62641764,0.58284086,-0.1548379,-0.062453806,0.16361274,0.30370724,0.40674567,0.8772228,-0.2255598,0.09169459,0.07513563,-0.18887398,0.113135435,-0.38346335,0.013377884,-0.51755583,-0.38394392,0.6107933,0.4264472,0.34247422,-0.49337187,-0.07830666,0.023412962,-0.119537756,-0.1454245,-0.15665174,-0.073738046,-0.039079983,-0.5691789,-0.406281,0.5429398,-0.32858717,-0.031944238,-0.012128316,-0.35058022,0.1767575,-0.066100635,-0.020747937,-0.09220142,-0.78001904,-0.107629076,-0.3527881,-0.5283892,0.6122276,-0.48544556,0.22403379,0.228564,-0.002926818,-0.3556925,0.3740126,-0.110430464,0.7690125,0.013789192,-0.037863385,-0.40533537,0.15473482,0.41785836,-0.32092947,-0.13836546,-0.448736,0.17191245,-0.51038885,0.42713726,-0.12764972,-0.4222115,-0.19088188,-0.005916615,0.1358976,0.47867146,-0.2701447,-0.26409057,0.24275103,-0.14952128,-0.17629907,-0.1292792,-0.30856737,0.3458546,-0.0056111254,-0.019991808,0.14284588,-0.016420748,-0.023580492,0.38735598,0.17926012,0.35346925,0.31916428,-0.08658856,-0.21298972,0.13900699,0.0806196,0.34156123,0.10185455,-0.12642688,-0.23114261,-0.2965026,-0.38317227,0.2975533,-0.14794055,0.27825138,0.106195435,-0.42080715,0.7511525,0.2645223,1.1773028,0.11517328,-0.41872987,0.24677595,0.39522707,0.010780525,0.15855224,-0.28498784,0.8290056,0.38460252,-0.13823009,-0.23747098,-0.27002704,-0.09646862,0.21703981,-0.26631644,-0.2293932,-0.19805282,-0.7135885,-0.11548003,0.06261515,0.22919297,0.18487582,-0.086317874,-0.09057307,0.0795405,0.08141109,0.38681376,-0.4580842,-0.032644514,0.33288756,0.2862874,-0.051335774,0.2188792,-0.23418666,0.49636653,-0.48007396,0.08694856,-0.619944,0.18587717,-0.14896145,-0.3150843,0.13069059,-0.15282613,0.27401987,-0.3246302,-0.24242221,-0.36596897,0.61801267,0.27966806,0.2620808,0.7424871,-0.27772874,-0.16064349,0.20935479,0.47344857,1.2998774,-0.25241917,-0.0152471475,0.3174434,-0.22327384,-0.55859965,0.10269724,-0.36371318,0.12859905,-0.10711075,-0.42006016,-0.28922936,0.12038779,0.020981405,-0.05151988,0.10426663,-0.5732384,-0.07174809,0.40565565,-0.20195091,-0.23112851,-0.38986176,0.3081491,0.703299,-0.3597253,-0.37752095,0.12625228,0.2340063,-0.27937555,-0.48983023,0.05357468,-0.33230364,0.36817893,0.037704293,-0.4491402,0.042704653,0.18750447,-0.46719512,0.13242567,0.44781923,-0.24695626,0.14385617,-0.22189678,-0.366124,1.2231778,-0.014380977,0.14245805,-0.5677751,-0.6288173,-0.99613285,-0.41177696,0.11442784,0.20608315,0.046306733,-0.51000154,-0.10475718,-0.005680591,-0.12177518,0.14483717,-0.49253798,0.40893146,0.115191035,0.48271492,-0.083316684,-0.99237204,-0.14093436,0.08105995,-0.31671625,-0.51503825,0.5959605,-0.0857666,0.7121539,0.13665304,0.17894235,0.1406575,-0.5963039,0.23654796,-0.28703552,-0.006518852,-0.73667324,-0.027200103,109 +38,0.529624,-0.016905256,-0.49799135,-0.23126473,-0.27070266,0.35035264,-0.07267062,0.06541452,0.1669803,-0.24528944,-0.0021988004,-0.21235251,-0.018389873,0.33905208,-0.1100589,-0.7341898,-0.08951886,0.092129216,-0.73301095,0.35373628,-0.40339792,0.43832844,0.06005153,0.261636,-4.708208e-05,0.39009857,0.17707816,-0.205072,-0.041987285,0.16858919,-0.11497302,0.13731974,-0.5579972,0.040739886,0.086229704,-0.11663621,0.020932319,-0.30047822,-0.2695712,-0.5479125,0.33324963,-0.6056944,0.5366896,0.009248517,-0.28902632,0.147722,-0.07450763,0.1876085,-0.3877803,0.100402646,0.20587732,-0.30505598,-0.014637165,-0.14745393,-0.27075398,-0.56258094,-0.54485726,0.019643713,-0.6602575,-0.207633,-0.25088003,0.18827194,-0.33313903,-0.060579643,-0.15920982,0.41871452,-0.34781688,0.0821352,0.34798455,-0.2641259,0.04587546,-0.2361317,-0.12985201,-0.1282119,0.33161923,-0.07729132,-0.16779537,0.15971012,0.25334048,0.58132297,0.060662594,-0.33114147,-0.17812023,-0.018508852,0.05008991,0.4525688,-0.1271899,-0.22584704,-0.19283076,-0.07694906,-0.06739712,0.07603863,-0.008808553,-0.40129122,0.010261919,0.12134853,-0.18518755,0.3796512,0.50937897,-0.39191958,-0.26048228,0.35523966,0.55567765,0.100635394,-0.18070902,0.15031482,0.0073602237,-0.482,-0.25221592,0.30120793,-0.05492829,0.51377964,-0.10542594,0.23916732,0.74442166,-0.14881757,-0.0335225,-0.22620295,-0.22470577,-0.043858353,-0.065475546,-0.013767071,0.056169145,-0.3805318,0.011253936,-0.22525707,0.7670102,0.16788502,-0.8045722,0.36059093,-0.52225906,0.17015164,-0.15827543,0.67052,0.8970587,0.23155284,0.06601658,0.8367559,-0.57522666,0.096889,-0.06257847,-0.5249874,0.09378028,-0.07570773,-0.022790298,-0.5578577,-0.012772031,0.055683836,-0.07374498,-0.10420582,0.22339763,-0.49862513,-0.067677975,0.006443072,0.6875905,-0.46223348,-0.22004029,0.6038867,0.91209173,0.8026477,0.110196404,1.1272588,0.4427359,-0.28411108,0.20722489,-0.6110646,-0.51327425,0.13943376,0.3030659,0.321649,0.5187125,0.079557404,0.08738653,0.45239234,-0.11355251,0.17619032,0.04122337,0.10776773,0.06134257,-0.08620094,-0.30504295,-0.13259868,0.07549029,0.009893874,0.1793355,0.24736422,-0.24853209,0.3759166,0.16813178,1.5308039,0.06725018,0.13270926,-0.095291376,0.302928,0.16709161,-0.11472459,-0.1389985,0.4416665,0.3628637,-0.003573738,-0.5966541,0.007770937,-0.25470498,-0.39236078,-0.18570244,-0.40068886,-0.09055845,-0.16578352,-0.42944103,-0.01953599,0.18906625,-0.37834418,0.49559504,-2.5591404,-0.1435469,-0.11351184,0.23585913,-0.25955716,-0.34995425,-0.20151298,-0.4337608,0.034728486,0.42687225,0.24556127,-0.6272781,0.48932934,0.2722091,-0.2597047,-0.16418688,-0.63323724,-0.053962704,-0.09733205,0.2950891,-0.12192565,-0.015883116,-0.115067616,0.32266286,0.5012731,-0.110777244,-0.21532874,0.176501,0.5877575,0.05210498,0.48372787,0.16758628,0.5403888,-0.1640144,-0.16726133,0.32009912,-0.3387305,0.24867278,0.15567291,0.12413629,0.19448414,-0.39763504,-0.8222352,-0.5281048,-0.35008228,1.1987801,-0.38446593,-0.21054155,0.21644713,-0.038942162,-0.22254707,-0.027805358,0.46333125,-0.026955348,-0.09390745,-0.65171075,0.109297246,-0.10917226,0.15796983,-0.07882751,0.16224787,-0.21237652,0.58839613,-0.14112191,0.42924538,0.23911478,0.26446274,-0.017571859,-0.48894835,0.25833395,0.81719744,0.225669,0.10130252,-0.13374203,-0.2276389,-0.13636988,-0.103241585,0.16610743,0.4549713,0.7278181,0.10609101,0.15422033,0.36212525,-0.17467663,0.038619496,-0.121275544,-0.3223197,0.044913564,-0.06319415,0.5889113,0.50830203,-0.23122889,0.47539574,0.02764016,0.14942661,-0.18024586,-0.4406448,0.62719893,0.70956933,-0.1305054,-0.1693054,0.3462991,0.3569413,-0.49628308,0.3015883,-0.56154126,-0.11215614,0.75309104,-0.1754311,-0.33080104,0.23654252,-0.26975226,-0.018117387,-0.9726572,0.29707533,0.1257531,-0.3152323,-0.34336856,-0.20319043,-3.9321141,0.15139246,-0.26127905,-0.08199049,0.071814105,0.029052451,0.24613367,-0.545969,-0.36581543,0.054619387,-0.029492563,0.47658598,-0.06494165,0.2112758,-0.291739,-0.07911375,-0.1995751,0.28840998,0.077980354,0.31280857,-0.051337548,-0.3500531,0.15039042,-0.3420344,-0.49137756,0.0036246479,-0.38201672,-0.54090333,-0.099393055,-0.5188471,-0.17637807,0.77202636,-0.33993468,-0.072226465,-0.33838055,0.056868672,-0.15510768,0.4439438,0.18867204,0.13870932,0.15174255,0.028347895,-0.2126469,-0.4189797,0.217669,0.13026841,0.36685663,0.35795105,0.00040769763,0.21122368,0.59221065,0.6242827,0.02667861,0.573477,0.3805483,-0.13291286,0.4017784,-0.35792315,-0.05860465,-0.6866267,-0.4369772,-0.26217833,-0.41989988,-0.6492093,-0.27523172,-0.25630438,-0.67114997,0.32436883,-0.035494484,0.14559837,-0.08419981,0.27517968,0.3986227,-0.17849493,0.03978266,-0.11252056,-0.28577223,-0.35850772,-0.4197036,-0.48078924,-0.5183672,0.29971874,0.97345555,-0.1382316,-0.09742982,-0.16239782,-0.32669696,-0.08898237,-0.07634879,0.34457988,0.3059823,0.19134744,-0.29328898,-0.6250718,0.46910375,-0.28881052,-0.037911035,-0.6395905,-0.110734686,0.64382845,-0.5767983,0.5603073,0.14834993,0.22583091,0.18776241,-0.4756761,-0.27793735,0.17417069,-0.24467999,0.45621112,-0.0003022477,-0.5734997,0.43319753,0.17235465,-0.06002848,-0.5529283,0.5072259,0.054206006,-0.21823668,0.14573842,0.3395141,0.023073915,-0.121627904,-0.13649946,0.15720236,-0.57364285,0.19330084,0.3718003,0.05034624,0.30767524,0.044955064,-0.20255017,-0.49897882,0.06464225,-0.54397285,-0.30493438,0.030376118,0.1887291,0.31833696,0.101645045,0.018876731,0.43861288,-0.3311448,0.049917772,-0.033030733,-0.23499095,0.2987659,0.46265763,0.28352535,-0.5469109,0.5622189,0.08399238,0.11356567,0.031985253,0.080972224,0.56102973,0.25740322,0.2516634,0.010137102,-0.14766695,0.2445972,0.57503456,0.1975107,0.4364694,0.19136265,-0.27154505,0.32957834,0.17609513,0.064236104,-0.08535774,-0.18420629,-0.0911077,0.15579727,0.31826195,0.4300357,0.05148509,0.34775472,-0.14204356,-0.2061151,0.26628605,0.2210123,-0.21153384,-1.0337484,0.27225468,0.4150039,0.65346724,0.3760607,-0.045052372,0.064805046,0.45442164,-0.45839167,0.14849073,0.34512907,-0.07651637,-0.56655025,0.55050373,-0.49501133,0.5411753,-0.22590643,-0.07264617,0.06384671,0.1321446,0.20618793,1.0131708,-0.06821449,-0.021388266,-0.05829545,-0.2185765,0.032450538,-0.33826643,0.22620478,-0.5709683,-0.24580503,0.56213665,0.38094613,0.27049577,-0.3002388,0.02477885,0.03184417,-0.10893977,0.121602446,-0.1287779,-0.028605971,-0.12443039,-0.70354474,-0.5608754,0.548515,-0.18151027,-0.00036301464,0.052509643,-0.34462392,0.2091918,-0.21041702,-0.019836228,-0.12792033,-0.5955182,-0.016978778,-0.2379663,-0.6198788,0.4246419,-0.30793464,0.3352374,0.17309895,-0.0103880735,-0.44293556,0.31150222,0.14528501,0.7199789,0.068183176,-0.09504913,-0.47738495,0.08232771,0.3322615,-0.27591032,-0.210807,-0.30566943,0.08361827,-0.44971454,0.42427188,-0.10307031,-0.37440035,-0.14530735,-0.14441986,0.009774378,0.43948066,-0.2821159,-0.078261815,0.04903289,-0.033553574,-0.19164744,0.19185269,-0.35265118,0.31685275,0.00714143,-0.1336468,0.021015089,-0.041724674,-0.030792892,0.23844889,0.20586982,0.21611883,0.38820747,-0.039961874,-0.40209818,-0.102367096,0.01591589,0.26164278,0.18220598,-0.057830364,-0.28400034,-0.31710067,-0.28003022,0.33091092,-0.18356779,0.160042,0.09859037,-0.5325334,0.66249275,0.08144536,1.2084689,0.1706422,-0.22875199,0.16498983,0.46292692,0.2209818,0.21158594,-0.48964444,0.7499537,0.5778175,-0.049238153,-0.40736324,-0.25845912,-0.20722565,0.26180273,-0.24806663,-0.20461446,-0.06320117,-0.7089825,-0.22733282,0.1792056,0.108589925,0.13626117,0.1329996,-0.1542723,0.08220285,0.1459122,0.4975777,-0.50613296,-0.16203976,0.3421501,0.12402106,0.023914468,0.26981777,-0.30267465,0.4600029,-0.6364448,0.10868369,-0.45878908,0.08202718,-0.022747623,-0.17900406,0.19018957,0.053514466,0.35436776,-0.19543704,-0.32959965,-0.25509655,0.6561099,0.22389828,0.3213029,0.7624602,-0.22347337,-0.107180476,0.12586407,0.40954003,1.2392414,-0.037273765,0.030140772,0.4029301,-0.29080173,-0.64941484,0.21676138,-0.30125427,0.14792573,-0.14228287,-0.3284822,-0.26659942,0.32818526,0.03164328,-0.013050996,0.11944935,-0.5199355,-0.3266838,0.47021788,-0.28464866,-0.26137415,-0.22568402,0.39053118,0.8145775,-0.46120796,-0.24906248,0.10457486,0.28600535,-0.24431534,-0.51809406,0.12917417,-0.35003287,0.3523405,0.121213466,-0.2899248,0.098478675,0.17565507,-0.38367796,0.24631473,0.45685366,-0.39891517,0.037330512,-0.051697895,-0.2809777,0.91675764,0.08286926,0.0044254214,-0.6701215,-0.46846417,-1.0200611,-0.56540775,0.2677169,0.15083703,-0.1304051,-0.48490122,-0.07656465,0.038199108,-0.07590415,0.13417107,-0.5630209,0.34798163,0.13248932,0.4802321,-0.027423918,-0.89657414,-0.13021415,0.08151014,-0.33441123,-0.7288115,0.58167285,-0.23965524,0.66104454,-0.017332762,0.03987781,0.20961721,-0.4920558,0.18771274,-0.40708023,-0.15917759,-0.739905,0.08824521,147 +39,0.28451508,0.14148071,-0.68616754,-0.24763343,-0.21935385,0.15626904,-0.20026207,0.37084794,0.26368877,-0.4445745,0.103018716,-0.063232444,0.001726443,0.39452562,-0.20542923,-0.56103086,0.23804505,0.113328665,-0.6819397,0.427674,-0.34917986,0.24229154,-0.07725991,0.37278074,0.21742523,0.2514214,0.06973131,-0.056968898,-0.07454921,-0.037245035,-0.12467993,0.3268997,-0.27387637,0.07307491,-0.19951853,-0.28538528,-0.046923988,-0.24694069,-0.34236795,-0.621109,0.17775607,-0.5435227,0.54901046,-0.06442274,-0.21528575,0.23816991,0.21266815,0.18932487,-0.068532854,-0.13632613,0.12077531,-0.20273098,-0.15719838,-0.082419686,-0.54469097,-0.51926225,-0.647859,0.05762159,-0.7474973,-0.006887719,-0.29078102,0.116413936,-0.27919972,-0.11059021,-0.0022267643,0.406411,-0.29385978,0.038886327,0.0220761,-0.100016035,0.17373055,-0.6082951,-0.23563865,0.042018585,0.3315956,-0.20441896,-0.32717815,0.3539287,0.33982122,0.3895126,-0.115223795,-0.16790283,-0.43513793,-0.041475542,0.020209726,0.5454947,-0.27297214,-0.36060488,-0.021319177,0.094302975,0.2863403,0.28139353,0.077566236,-0.29258448,-0.09020059,0.018406615,-0.19378187,0.58629245,0.53560424,-0.30381596,-0.12051849,0.45379525,0.49673483,0.17955042,-0.29457107,0.18745506,-0.13107397,-0.5798417,-0.15862632,-0.016593307,-0.06843139,0.44077468,-0.10255062,0.2566249,0.58788675,-0.026454676,-0.14430541,0.14538318,0.072090425,-0.05921992,-0.0965913,-0.08469579,0.092477314,-0.5142145,0.15402989,-0.19835606,0.5754788,0.099403314,-0.99562985,0.31114733,-0.4931901,0.079078935,0.04548613,0.41781437,0.8515892,0.36766738,0.074250184,0.6747798,-0.3469067,0.0866714,0.06672439,-0.3583971,0.027738903,-0.07086515,-0.036935396,-0.67719764,-0.06344851,0.0059573054,-0.116967484,0.3339536,0.40041423,-0.45009497,-0.2122339,0.22766823,0.74371374,-0.30936387,-0.23254596,0.684499,1.0385286,0.9266406,0.060443632,0.9697716,0.108816035,-0.17245035,0.22323585,-0.25555223,-0.6700307,0.27325848,0.29426497,-0.33818433,0.3439706,-0.004419038,0.11190996,0.29412213,-0.3563064,-0.07582927,-0.06719121,0.19198248,0.065118454,-0.07138983,-0.20552336,-0.3678003,0.07115378,-0.014193647,0.1345507,0.22888157,-0.22439548,0.38569212,0.1541512,1.4521768,0.06117428,0.008795824,0.023905376,0.45854574,0.27139166,-0.20501451,-0.2586199,0.37238765,0.4099533,0.0084453765,-0.38504055,0.012482436,-0.3227836,-0.32206166,-0.14819047,-0.3808752,-0.22625652,-0.046942886,-0.415978,-0.11821389,-0.10075112,-0.5812452,0.53123766,-2.9320707,-0.14334187,-0.10782224,0.28381193,-0.078316145,-0.33649665,-0.27667207,-0.47208232,0.36453462,0.26281708,0.32944334,-0.4708796,0.36709845,0.4864021,-0.4770673,-0.13993944,-0.6934669,-0.07510716,-0.03832973,0.22778477,0.0040579997,-0.031808328,0.16876172,0.35045803,0.37448242,-0.17307442,0.04065315,0.3242529,0.25684798,0.03765608,0.39069915,-0.13246366,0.62863696,-0.24994808,-0.13211343,0.2363148,-0.4896808,0.11752325,0.0073470958,0.15206964,0.5366386,-0.3520586,-0.89284396,-0.430533,-0.048665375,1.1425154,-0.26794764,-0.16097052,0.4246779,-0.348177,-0.42000598,-0.052633017,0.46760195,-0.070984036,-0.06978494,-0.6719965,-0.08173303,-0.062785484,0.08103433,-0.19333777,0.042713307,-0.3290498,0.5675962,-0.05444309,0.56352055,0.22126488,0.2882756,-0.37430194,-0.39093104,0.040769935,0.7543702,0.26892495,0.075770974,-0.123603195,-0.19586805,-0.46646363,-0.08450793,0.26092184,0.54025203,0.53700805,-0.07412167,0.08937588,0.25818315,0.039500546,0.04101277,-0.22921108,-0.24231553,-0.06300019,0.020886011,0.5053187,0.49468684,-0.058614366,0.49810117,0.043393902,0.13455904,-0.29514444,-0.44367412,0.4820813,0.8072116,-0.21869466,-0.40606853,0.5268884,0.29720277,-0.16591232,0.3665615,-0.57175905,-0.28024885,0.59343296,-0.17339852,-0.2728893,0.1692618,-0.2194145,0.14106356,-0.74337804,0.18557535,-0.10880586,-0.604478,-0.37350217,-0.14040461,-2.941369,0.01398761,-0.13928723,-0.27015954,-0.12557857,-0.09448802,0.21655062,-0.5396952,-0.48116243,0.1339909,0.11278914,0.6666142,-0.10125382,-0.05089663,-0.11360434,-0.43035606,-0.4260069,0.16087756,0.0064051077,0.39759693,0.0035050362,-0.22225064,-0.01747547,-0.22173044,-0.4222333,0.06691968,-0.38967586,-0.26776955,-0.14197588,-0.5211274,-0.3074892,0.72555315,-0.4664595,-0.00428929,-0.30964017,-0.032565974,0.032423317,0.20830132,0.16216393,0.07763076,0.11911207,-0.026409376,0.016527316,-0.39092067,0.1940454,-0.08600842,0.244369,0.37983736,0.12291124,0.30592382,0.580546,0.7292687,-0.18814436,0.9117582,0.4370553,0.03158754,0.30283743,-0.26680633,-0.28702366,-0.42880368,-0.28291178,0.006968174,-0.3907592,-0.31031302,-0.13663606,-0.37062258,-0.6513629,0.39796156,0.050264686,0.17983608,-0.07618575,0.28405812,0.396703,-0.23917377,-0.028571924,-0.09291153,-0.20993945,-0.3627596,-0.3115403,-0.6717735,-0.411515,0.1422123,0.9974536,-0.2533902,-0.0813809,0.06844891,-0.2938157,0.25902227,0.20092621,0.18046159,0.36837107,0.23866606,-0.22702855,-0.61415446,0.379622,-0.4089852,-0.17427091,-0.6638785,0.05781199,0.5943589,-0.46486768,0.54407954,0.2882144,0.11240977,-0.19958714,-0.5754652,-0.0015194863,-0.0056707487,-0.23203626,0.3909374,0.13194251,-0.91931254,0.45569372,0.22780974,-0.21052313,-0.5814239,0.5401882,-0.0019185133,-0.07996741,-0.06363563,0.38460052,0.05380176,-0.036578577,-0.1658337,0.037878476,-0.28278396,0.27227616,0.3141415,0.049179703,0.3712488,-0.29594147,-0.03577099,-0.64207816,-0.09135981,-0.5204614,-0.23086143,0.2247726,0.0992756,0.308609,0.039245926,-0.21339133,0.2730006,-0.3301425,0.1777674,-0.10104832,-0.2497398,0.260954,0.41369018,0.43460888,-0.32558453,0.6033442,-0.019991,-0.12410866,0.016553216,0.046084516,0.52691764,0.022898361,0.3482845,0.100786805,-0.27581382,0.21814984,0.7785113,0.2284382,0.22823939,0.0007906109,-0.22876415,-0.015260644,0.03227854,0.098098755,-0.0008277893,-0.5267933,-0.13087541,-0.24555135,0.20705399,0.5020794,-0.032572612,0.25156087,-0.04297192,-0.21737619,0.04971762,0.11253591,-0.081366,-1.5021564,0.3529334,0.3047544,0.7995237,0.3095712,0.18445109,-0.11085953,0.5938836,-0.14778769,0.23388773,0.26878625,-0.105601035,-0.32594866,0.46158233,-0.73311216,0.5988461,0.09525858,-0.01760543,0.09778633,-0.022521786,0.3665825,0.9515904,-0.22438566,0.10447484,0.08966109,-0.29834136,0.25768742,-0.3267456,0.038141146,-0.5301262,-0.31766066,0.5524747,0.37027752,0.42346328,-0.18745798,-0.031015657,0.04871428,-0.1301634,-0.025448823,-0.05260484,0.13883582,-0.2632534,-0.48101604,-0.16937913,0.38691574,-0.04011508,0.17582467,0.35915983,-0.17859867,0.37352064,-0.01982136,0.20447038,-0.06387094,-0.5588846,-0.01766378,-0.10820429,-0.43641585,0.4684978,-0.31804293,0.3479083,0.3285015,0.033765726,-0.2586203,0.4436333,0.2422495,0.70933753,-0.14133358,-0.057359703,-0.2843313,0.16577105,0.16464724,-0.11700025,-0.09787329,-0.3687646,0.021786094,-0.53339255,0.2664287,-0.1284669,-0.33866292,-0.1017566,-0.00061382353,0.17950355,0.51437104,-0.0891403,-0.09838252,-0.06961776,0.04870464,-0.21038271,-0.14373003,-0.091007285,0.2971491,0.052795064,-0.11421236,-0.18088941,-0.0952181,-0.049244635,0.1206889,-0.03817991,0.42273793,0.39224777,0.22391413,-0.24716188,-0.0037879944,0.20200706,0.4381561,0.05980477,-0.09812748,-0.24862942,-0.14934695,-0.2859219,0.20939565,-0.14963384,0.22573213,0.11721309,-0.2542493,0.553687,-0.1698522,1.085482,0.048282724,-0.2760932,0.06451538,0.48121718,0.055279426,0.028634682,-0.24909155,0.78108704,0.44535995,-0.014217004,-0.20564225,-0.3378206,-0.039166585,0.20174213,-0.19427998,-0.18306586,0.040829837,-0.59680295,-0.2568531,0.14581922,0.038101934,0.31024992,-0.20507002,-0.11078064,0.2955554,0.048780352,0.27341092,-0.46181443,-0.06499219,0.24476324,0.16150945,-0.04363822,0.15390232,-0.4486246,0.29484016,-0.4182114,-0.02785704,-0.08170883,0.23114786,-0.17043796,-0.18598634,0.22317758,0.023908675,0.29024914,-0.08345252,-0.2432908,-0.17944485,0.44246402,0.13995646,0.16634008,0.58072066,-0.19172165,-0.029857058,0.071369015,0.36557695,0.9589029,-0.23254432,-0.043593094,0.40763664,-0.23676287,-0.59330744,0.16940916,-0.51699847,0.24852866,-0.02240134,-0.15881732,-0.15185423,0.18609644,0.14045815,0.1609332,0.039503608,-0.540884,-0.21458356,0.26557344,-0.23254287,-0.14920087,-0.35675904,-0.13873972,0.50556374,-0.31949297,-0.29021934,0.11554171,0.1897172,-0.0016815029,-0.6772715,0.24414676,-0.2844623,0.32398513,0.11850602,-0.36405998,-0.104204684,0.021490753,-0.3806534,0.29645866,0.10873066,-0.30460042,0.04223177,-0.19681731,-0.06760362,0.91405606,-0.2868312,0.24516878,-0.31902865,-0.54834104,-0.78139466,-0.3279513,0.07333541,0.10321967,-0.052957743,-0.62958634,-0.0026481636,-0.05773934,-0.14487462,0.028649405,-0.20830032,0.4306072,0.103291534,0.34830105,-0.080979764,-0.9497475,0.10099157,-0.026573451,-0.24052313,-0.54353756,0.5734148,0.03217005,0.7094698,0.18445109,0.18957527,0.19412583,-0.34336945,0.2025502,-0.25178364,0.017261498,-0.46258843,-0.008840218,153 +40,0.461215,0.0055605024,-0.49027207,-0.12481381,-0.23001638,0.088598534,-0.40340257,0.38803548,0.18748686,-0.47494024,0.07220159,0.061663583,-0.014450991,0.35423514,-0.35761958,-0.52846956,0.14790633,0.08594297,-0.5107253,0.54171485,-0.34591156,0.28791696,-0.051966563,0.40139198,0.077102914,0.31622624,0.22249955,0.0019990727,-0.055876844,-0.30461857,-0.07171753,0.15783468,-0.53847563,0.20764229,-0.29652023,-0.22671747,-0.054394666,-0.42475322,-0.36758777,-0.6493199,0.12858707,-0.6097897,0.6938538,0.018055797,-0.29397807,0.19482344,0.16885188,0.2342905,0.02918461,-0.056940556,0.14319362,-0.29420477,-0.20507959,-0.2580159,-0.3173694,-0.4953485,-0.546713,0.05460766,-0.571173,0.06308415,-0.23384446,0.23921195,-0.20655814,-0.024771139,-0.024295427,0.5367365,-0.26609945,0.047073103,-0.053315155,-0.18089554,0.23297837,-0.6010169,-0.2676076,0.1029006,0.28710073,-0.13378878,-0.19441843,0.3082216,0.15539452,0.49372283,-0.058161914,-0.22604261,-0.37594894,-0.044301413,0.049026966,0.60615236,-0.24985075,-0.3154624,-0.18689474,-0.115855895,0.42406082,0.17063296,-0.0052896813,-0.4249668,-0.08778638,-0.1738285,-0.18451917,0.46196395,0.5794126,-0.19297603,0.11086699,0.36550438,0.3069939,0.07078442,-0.18776071,0.13609271,-0.121284425,-0.45238099,-0.14311154,-0.029461298,-0.1464977,0.47249258,-0.0645252,0.35845298,0.4803487,0.009221643,-0.12856957,0.15660739,0.1289973,0.1121241,-0.17896622,-0.26097217,0.22651,-0.6118009,0.05290245,-0.17112763,0.6595916,0.058936108,-0.98187846,0.3953691,-0.47638637,-0.020155512,0.117785156,0.41038048,0.6560335,0.5559405,0.08880861,0.7529259,-0.46046197,0.122742824,0.03610878,-0.29453114,-0.02301985,-0.16980228,-0.028126441,-0.5171869,-0.0029635932,0.11184895,-0.07543782,0.16111997,0.4095857,-0.4248361,-0.09818874,0.2636002,0.68608975,-0.22024857,0.016850585,0.830329,1.1233023,0.9242915,0.15070458,0.96695423,0.042623702,-0.12810284,-0.106817804,-0.0057824478,-0.6260047,0.3083899,0.3581661,-0.060750484,0.35607314,0.084176846,-0.035345454,0.23235977,-0.34178346,-0.3198924,-0.083955415,0.27729347,0.0592661,-0.11540061,-0.38505915,-0.30138987,0.15607712,-0.077977344,0.14556515,0.24133357,-0.2166961,0.4388338,0.2836121,1.2591617,-0.06396006,0.13667567,0.21075305,0.36976025,0.3143893,-0.1727637,-0.1912901,0.24818888,0.28897387,0.18232775,-0.43859175,-0.04176671,-0.24419384,-0.5335931,-0.1816072,-0.20112303,-0.28140378,-0.04058276,-0.41474557,-0.2575692,-0.07829158,-0.4475846,0.4805798,-2.8786287,-0.103126466,-0.14204372,0.37841833,-0.09226794,-0.3899881,-0.16887721,-0.44461757,0.5879971,0.3274891,0.39181313,-0.5471904,0.2589252,0.5649334,-0.4261679,-0.20278941,-0.54792845,-0.053423535,0.034188606,0.38124627,0.10398161,-0.29344448,0.11021835,0.24372335,0.4910189,-0.15860945,0.18360204,0.25290886,0.30342576,-0.07166024,0.3003899,-0.08572467,0.52026063,-0.4087203,-0.18991008,0.3409757,-0.41942278,0.027255202,-0.13015443,0.13995871,0.53468645,-0.44713452,-0.76238525,-0.52686435,-0.09028271,1.1309017,-0.13254362,-0.49184537,0.22001399,-0.1387473,-0.48562112,0.078841366,0.35791957,-0.21706176,0.11772084,-0.68149453,-0.048415605,-0.15041578,0.15324047,-0.092060134,0.06683062,-0.46152475,0.61649966,-0.10064764,0.62676346,0.40344822,0.28666347,-0.35771826,-0.4225461,0.019121157,0.8830461,0.48566943,0.15859959,-0.15814225,-0.1113701,-0.15176961,-0.27865967,0.07657747,0.6357499,0.61970633,-0.08878747,0.07777631,0.27247006,0.1096128,0.16554391,-0.18316144,-0.35068476,-0.13968855,0.05338967,0.619308,0.6077983,-0.06603173,0.2936589,-0.00042080972,0.2895816,-0.18276945,-0.40712315,0.47203797,0.7558744,-0.1575978,-0.39301935,0.6011203,0.36009267,-0.08162261,0.43891695,-0.59721625,-0.5747599,0.44505486,-0.06287373,-0.43681258,0.2874081,-0.25679788,0.20992629,-0.6388793,0.40005428,-0.2773594,-0.5926572,-0.4619745,-0.22442901,-2.8760195,0.1195357,-0.16989553,-0.16804364,-0.21350467,-0.23012792,0.22003703,-0.56351066,-0.5923691,0.11279637,0.025181673,0.6537365,-0.13451752,0.06869084,-0.16321614,-0.45817515,-0.35710943,0.20312902,0.08571464,0.35340804,0.06752148,-0.23053625,-0.117848516,-0.22461572,-0.42201185,0.04030681,-0.5841911,-0.44141418,-0.16156694,-0.4790116,-0.283464,0.65972716,-0.43130583,0.072870985,-0.36515394,-0.04808816,-0.10438751,0.25284088,0.08352959,0.15089087,0.124462985,-0.027106397,0.0338292,-0.33655673,0.19655791,-0.027120491,0.12492269,0.5057918,-0.107706204,0.15826336,0.4122495,0.7334489,-0.28239813,0.8971015,0.32459202,0.010661991,0.3264964,-0.21826673,-0.4142541,-0.46556404,-0.31494543,0.13275263,-0.36951023,-0.3034837,-0.1025557,-0.3461375,-0.7129144,0.5538503,-0.020120889,0.15045306,-0.10351948,0.19716722,0.266002,-0.26939934,-0.18200986,-0.020972107,-0.15019396,-0.39370143,-0.37571707,-0.65764195,-0.44568092,-0.09275987,0.9475087,-0.066933244,-0.03643801,0.2650271,-0.10490282,0.13430464,0.11304818,0.19283387,0.17457557,0.3311418,0.057967726,-0.73836833,0.40552303,-0.30740535,-0.22093122,-0.46992934,0.17872995,0.67335844,-0.5270494,0.4360773,0.49699652,0.20670307,-0.25784516,-0.61264753,-0.056566317,0.054622494,-0.20126756,0.55325484,0.25867406,-0.87146956,0.6021573,0.2823521,-0.29144648,-0.7078275,0.41636539,0.13101494,-0.076785356,0.018062837,0.43989214,-0.016561564,-0.10393414,0.03914208,0.14962167,-0.32647172,0.36848032,0.21493536,0.0060575604,0.4372763,-0.25848305,-0.13781382,-0.7026447,-0.110521205,-0.49341595,-0.34526467,0.10650478,-0.022804076,0.025555491,0.037277747,-0.15523085,0.44348267,-0.42252684,0.17029643,-0.17811218,-0.26511872,0.2637245,0.50373447,0.48753378,-0.24950713,0.5489863,0.0069030076,-0.022279762,-0.16093835,-0.010617018,0.47510582,0.1436137,0.28238633,-0.09528702,0.040590327,0.13290213,0.65672106,0.25780585,0.29898834,0.03581939,-0.26300567,0.15237606,0.07982001,0.16378754,-0.047453366,-0.4929269,-0.025438666,-0.29558122,0.07930196,0.5097193,0.0338073,0.33862603,-0.1853686,-0.14128521,0.050803136,0.19601001,-0.13045591,-1.6823537,0.41929603,0.2045429,0.7571254,0.4126302,0.13226189,-0.064563096,0.74656427,-0.05971707,0.046710953,0.26118624,0.13383694,-0.18964216,0.45403346,-0.72266793,0.3681982,-0.027711209,-0.016159125,0.09927784,-0.02299475,0.36355957,0.79297227,-0.15460852,0.110971615,0.042384293,-0.24756952,0.081122845,-0.36724472,0.07301877,-0.24197939,-0.28639352,0.7757262,0.3247375,0.3622863,-0.23425564,0.0031746335,0.10439362,-0.14047348,0.17245422,0.04374798,0.05738561,-0.18876745,-0.44023877,-0.096057855,0.5591279,0.04326675,0.10782876,0.20351346,-0.18933041,0.25124872,-0.017515115,0.13340925,0.04720982,-0.6483666,-0.0020228904,-0.35730228,-0.35718834,0.3614485,-0.16198486,0.20118691,0.25209397,0.1383332,-0.23356129,0.20803417,0.31353116,0.68293554,-0.034757502,-0.072111115,-0.13183254,-0.027466653,0.21595411,-0.22305804,-0.059449814,-0.43056068,0.093034506,-0.5631409,0.22803465,-0.084556535,-0.18458243,0.23819116,-0.028582849,0.12809202,0.47763607,-0.14306358,-0.12746455,0.05087648,0.10224417,-0.17622799,-0.32436204,-0.21973628,0.10449594,0.16139475,-0.09386093,-0.03266557,-0.11063138,-0.2563708,0.21783192,0.032748807,0.42032152,0.40915182,0.18585053,-0.3186341,0.15958029,0.05207544,0.5694254,0.15147462,-0.07709649,-0.16953057,-0.41946557,-0.23500124,0.1940633,-0.14281999,0.07782637,0.19105159,-0.19084525,0.6832473,-0.06172827,0.97080564,-0.022196982,-0.3323593,-0.031228414,0.4083091,-0.08763066,0.05038792,-0.27961713,0.9789452,0.5149599,-0.039430946,-0.07221113,-0.30329582,-0.104628876,0.12864208,-0.30472022,-0.12572883,-0.022983385,-0.5276004,-0.22542723,0.102666155,0.15040386,0.05449661,-0.14447048,-0.11400059,0.3093156,0.14461799,0.2622509,-0.5239035,0.08478476,0.37474102,0.19274412,-0.041865215,0.12773056,-0.46362323,0.30081567,-0.3958412,0.034885023,-0.3969278,0.056649655,-0.1832674,-0.24525115,0.17174101,-0.051200807,0.4041458,-0.23579955,-0.36893255,-0.13525176,0.35142204,0.13250951,0.12570968,0.51811165,-0.13518181,0.007268451,0.009317674,0.46802324,0.93141466,-0.34456176,0.08058385,0.4102552,-0.24977756,-0.5465688,0.00037063845,-0.50071466,0.1011217,-0.064989954,-0.17551044,-0.30667013,0.13494575,0.21393707,0.16413465,-0.02256209,-0.6155392,-0.18442088,0.41373774,-0.23400632,-0.1771115,-0.19080564,-0.0013719238,0.58731484,-0.2715718,-0.3265406,0.0145061165,0.24982536,-0.14303213,-0.6779033,0.1510978,-0.33606246,0.27833128,0.2820742,-0.29287112,-0.19354245,-0.029166933,-0.48000985,0.16287477,0.23992363,-0.3019353,0.015544337,-0.30213267,-0.046466462,0.72703683,-0.18511629,0.36898082,-0.4562468,-0.5129887,-0.82226306,-0.3578544,-0.018672764,0.2004716,0.11487543,-0.6798891,-0.14342044,-0.24563876,-0.13312441,-0.024050586,-0.36664534,0.39547783,0.1871248,0.52243346,-0.234862,-0.84949625,0.19953483,0.1503737,-0.13184908,-0.5104841,0.45088452,0.10107021,0.71553695,0.1620543,0.045084354,0.116280764,-0.62277293,0.1969398,-0.19675061,-0.10162543,-0.60227287,0.11968541,165 +41,0.39385068,-0.10714157,-0.38174176,-0.18121745,-0.24782827,-0.026306152,-0.25581583,0.31797,0.24197473,-0.20239575,-0.16503923,-0.052001797,0.124351524,0.36083138,-0.12134214,-0.7407823,-0.13956493,0.11925669,-0.5841744,0.50770736,-0.6311511,0.3760209,0.033385016,0.30691347,0.09478666,0.45450547,0.18691094,-0.08514642,0.053549826,-0.016140714,-0.16777962,0.38737538,-0.66336733,0.064810924,-0.09565315,-0.22720656,0.09854467,-0.43822598,-0.32604367,-0.68966997,0.10159208,-0.7734106,0.40710846,-0.1633124,-0.05284271,0.08582597,0.09894709,0.3426873,-0.40199637,0.07622319,0.17975864,-0.14223903,-0.12445974,-0.25537482,0.058062218,-0.3599195,-0.407929,-0.0752228,-0.51374555,-0.35381916,-0.22405711,0.11938601,-0.31611174,-0.030496262,-0.17176588,0.35608572,-0.40707442,0.06217155,0.38307962,-0.11753957,0.13150783,-0.52297986,0.07984224,-0.057621002,0.45698738,0.017288785,-0.13539186,0.39245096,0.29773927,0.37273696,0.26300538,-0.26162377,-0.13425067,-0.21625915,0.2153914,0.30096662,-0.077322535,-0.33455166,-0.16581222,0.09744208,0.11597777,0.338429,-0.020105703,-0.23268862,-0.12946221,-0.040219367,-0.34511262,0.53670347,0.53730094,-0.22231674,-0.35854694,0.29119366,0.51294816,0.3120085,-0.23918933,-0.028066859,0.02184045,-0.5022637,-0.17445989,0.07047701,-0.07484721,0.45693004,-0.18911497,0.13992497,0.85005236,-0.16534919,0.11784926,-0.13172892,-0.038865082,-0.08432665,-0.42633757,-0.08821714,0.023418015,-0.5326915,0.034137644,-0.18566093,0.75171053,0.15714991,-0.73710704,0.3897433,-0.5917036,0.13736692,-0.17616884,0.6258497,0.6855547,0.32274473,0.3456524,0.7292323,-0.33081022,0.19008036,-0.07142848,-0.5328164,0.10694036,-0.16423456,0.05840662,-0.452693,0.102142796,-0.17715597,0.16994691,0.005621871,0.21717392,-0.47842512,-0.15805823,0.13304377,0.80712897,-0.31480166,-0.101893276,0.5696721,1.0612018,0.8503853,0.04302743,1.178949,0.2974527,-0.15651754,0.1572234,-0.3411916,-0.717598,0.17156988,0.40859514,0.044502705,0.2419962,-0.032057233,0.03139061,0.30450982,-0.3101594,-0.05542825,0.00034837332,0.46809483,0.20492181,-0.15912779,-0.40589148,-0.17076986,-0.03186962,-0.1096801,0.1410526,0.23681456,-0.15646577,0.19579698,-0.014759788,1.4719542,0.046247065,0.055457313,0.08480126,0.6404851,0.4259497,-0.21559563,0.011036009,0.56659806,0.49157628,-0.043488264,-0.5848693,0.27564222,-0.30672935,-0.35102504,-0.12774572,-0.48602945,-0.006283015,0.16312581,-0.42289537,-0.01115229,-0.005908631,-0.040973436,0.44944072,-2.9292006,-0.24933973,-0.034466058,0.3635193,-0.3090964,-0.14695437,-0.011341587,-0.52529347,0.2735739,0.2755708,0.4789806,-0.5622092,0.58537406,0.56646234,-0.40625447,-0.13470662,-0.687235,-0.10000391,-0.060573846,0.52479243,-0.017849617,0.03879441,-0.1643309,0.10560919,0.56121683,0.021991696,0.10547607,0.44127542,0.3437656,0.16918866,0.6509329,-0.114090696,0.5496292,-0.19286548,-0.13711888,0.3028025,-0.23069933,0.27025366,-0.12511346,0.102207124,0.6182723,-0.29998186,-0.86912227,-0.49882483,-0.37715846,0.9846837,-0.44985116,-0.44783407,0.2723828,-0.18338102,-0.12383454,0.060218897,0.47428173,-0.09757383,-0.016395941,-0.61433756,0.29628706,-0.06356315,0.13291892,0.033869848,-0.076715566,-0.24923919,0.6618887,0.010907082,0.57626754,0.21380371,0.26049393,-0.08345345,-0.28612256,0.009338841,0.7392998,0.2707021,-0.024704115,-0.18953449,-0.3593313,-0.11419824,-0.060963638,-0.008263819,0.5444619,0.64019704,-0.07714319,0.14838041,0.34457794,-0.022402102,-0.016549187,-0.14524242,-0.20063463,0.03950972,-0.022252144,0.3977962,0.68669915,-0.2294994,0.37710458,-0.20521443,0.26114517,-0.09434654,-0.5676359,0.6786626,0.43350628,-0.18288621,-0.011424188,0.39152962,0.46766064,-0.3532009,0.42036763,-0.5886933,-0.05465384,0.7161277,-0.1660716,-0.2727749,0.17414548,-0.15567417,-0.02134446,-0.7632346,0.2582992,-0.3210749,-0.2633533,-0.38397002,-0.176822,-3.638474,0.13341998,-0.050371576,-0.104522385,-0.30659565,0.042272314,0.2992432,-0.59598655,-0.49258482,0.15403424,0.16976616,0.52812886,-0.060956568,0.087040484,-0.29236788,-0.13490504,-0.15730208,0.15096419,0.030959923,0.36374146,-0.13819714,-0.42362663,-0.10863258,-0.0019648997,-0.5395345,0.264501,-0.5004159,-0.36401004,-0.08091943,-0.44945335,-0.14671774,0.57024735,-0.34399647,-0.0041866517,-0.23434347,0.04837533,-0.32598993,0.118336596,0.14056756,0.26089737,0.124978185,-0.033352274,-0.007137336,-0.37769598,0.3440182,-0.00379794,0.44193622,0.08316855,0.15748657,-0.019316364,0.41295052,0.45898968,-0.15701741,0.9865588,0.33183596,-0.13436541,0.2888837,-0.28326467,-0.26626897,-0.5994781,-0.38652068,-0.16896151,-0.37899452,-0.47656277,-0.061481524,-0.30368656,-0.7073276,0.5370367,0.040093645,0.33788517,0.013277678,0.26587784,0.42448798,-0.12920043,0.049204655,0.055785812,-0.18703018,-0.5696207,-0.2476333,-0.6616583,-0.39811805,0.1614135,0.5842054,-0.35926828,-0.07309313,-0.35301,-0.22424597,-0.07396396,-0.033952944,0.14022318,0.41273025,0.38697818,-0.039420534,-0.5679,0.48369434,-0.16394672,-0.096733816,-0.47628137,-0.030981354,0.6407105,-0.6846578,0.6346964,0.23174429,-0.0112088695,0.03859146,-0.55264044,-0.305588,0.005284246,-0.23747046,0.5221475,0.12255695,-0.9522178,0.53488714,0.17601866,-0.38810727,-0.69220644,0.3847247,-0.08771902,-0.3008663,-0.06604268,0.20616384,0.21325299,0.047272965,-0.22847506,0.2832656,-0.43380412,0.17804018,0.23206127,-0.11901116,0.3119435,-0.07427871,-0.15574399,-0.6496553,-0.06407824,-0.4498516,-0.2023184,0.24923462,-0.10685015,-0.035081223,0.095934354,0.15935278,0.3057553,-0.21521631,0.2126407,0.18496911,-0.27222466,0.30921426,0.47476506,0.37849048,-0.3455287,0.4381624,0.15143046,-0.15171573,0.18389279,0.20304525,0.3607036,-0.01120634,0.3198046,-0.1316557,-0.086001545,0.35738423,0.82677966,0.18145998,0.47562003,0.003446333,-0.17629471,0.51627916,-0.003446971,0.13837662,0.10034998,-0.47080043,-0.051475663,0.06904213,0.24544024,0.5689274,0.32325447,0.23260711,0.09199186,-0.20381086,0.029619023,0.2990749,-0.051880702,-1.0698454,0.39074033,0.2783187,0.8894993,0.37207055,0.045935094,-0.12276353,0.60839933,-0.20793585,0.2257141,0.45446438,-0.049424827,-0.51834196,0.73786354,-0.5343477,0.37166658,-0.10888487,-0.056154273,0.17726928,0.10787493,0.40709198,0.73841727,-0.24881813,0.043173894,0.029002966,-0.16656516,0.107969865,-0.34215605,-0.0009904262,-0.32865766,-0.33633548,0.5498065,0.42888713,0.23221049,-0.30343905,-0.04296803,0.1264384,-0.11320316,-0.0057161823,-0.074487045,-0.110198855,0.17879252,-0.4383604,-0.30082893,0.59656596,-0.12139099,0.1347172,-0.2527741,-0.21350949,0.19833171,-0.15105437,-0.09332726,-0.025505017,-0.6459791,0.035701364,-0.13680431,-0.4940435,0.47103938,-0.24900545,0.097238526,0.12198035,-0.023731466,-0.19969511,0.3693343,0.09560068,0.67274344,-0.18890724,-0.1929138,-0.37649757,-0.015474647,0.1960327,-0.24769014,0.06279299,-0.5396287,-0.05050318,-0.5130922,0.4019824,-0.11329107,-0.35170615,0.15401708,-0.17430755,-0.003514655,0.55696493,0.03743184,-0.17042914,-0.06937273,-0.1795292,-0.38840792,-0.095307,-0.22667557,0.3176,0.30494893,-0.082595356,-0.10440011,-0.28782585,-0.11765044,0.50342834,0.05234071,0.40992558,0.10546024,0.022085473,0.0016430151,-0.10988026,0.2877504,0.3634001,0.0971439,0.00060646236,-0.24854635,-0.30449924,-0.3098219,0.1806862,-0.12762704,0.26691407,0.05559051,-0.4169096,0.8350407,0.005611576,1.0657437,0.032514058,-0.3335838,0.10440986,0.4059052,-0.0762108,0.08408756,-0.33349216,0.79039717,0.46086523,-0.015747644,-0.0051769763,-0.47325355,-0.1132069,0.23568681,-0.27518162,-0.021940913,-0.032234777,-0.50023973,-0.2822032,0.27302247,0.22606802,0.06764852,-0.052539162,-0.18642485,0.07038021,0.1555348,0.40848854,-0.5444143,-0.23700267,0.11623593,0.13768412,-0.04301214,0.097393,-0.4569815,0.47097808,-0.61854863,0.15964073,-0.44736677,0.20120162,-0.28257528,-0.21210639,0.16343905,-0.16049536,0.40157086,-0.33430728,-0.4844693,-0.2185291,0.33815745,0.07259747,0.17660408,0.5564069,-0.19499828,0.11392373,0.13175032,0.571385,1.117706,-0.37681365,-0.01762602,0.2684644,-0.46177202,-0.65996945,0.22793959,-0.31589904,-0.05731357,-0.053513184,-0.3994097,-0.3242572,0.15529476,0.030962396,0.13915214,0.09682813,-0.5418559,-0.18244156,0.3454087,-0.28072882,-0.2164483,-0.14576471,0.27518636,0.8665583,-0.31113183,-0.39360443,0.06632649,0.20156825,-0.2547205,-0.438413,-0.18581122,-0.16355199,0.3178021,0.02660647,-0.19273254,-0.06591134,0.22261228,-0.4193833,0.17808592,0.21857858,-0.38386247,0.09956224,-0.04101146,-0.1280671,0.9764198,-0.28811577,-0.08461932,-0.6595442,-0.5890075,-0.81555223,-0.5236862,0.29798114,0.17391449,0.012809802,-0.33527127,0.12368486,-0.06796552,-0.12641388,0.034867294,-0.5441429,0.33737445,0.10647033,0.36894602,-0.16432966,-0.9830928,-0.009915493,0.06506132,-0.22087848,-0.731144,0.70224786,-0.2730068,0.79021,0.013748303,0.012061663,-0.06272748,-0.25369778,0.07088229,-0.3763544,-0.13922353,-0.7387499,0.19242509,178 +42,0.35817567,-0.17785287,-0.42248315,-0.016908497,-0.285657,0.06024191,-0.13162598,0.35851687,0.17644435,-0.41868913,-0.06361689,-0.06950402,-0.048446983,0.39309064,-0.16672413,-0.5338766,-0.17511334,0.23600413,-0.42434123,0.6174956,-0.4762839,0.3388472,0.089615494,0.28604177,0.111315474,0.19553371,0.13569655,-0.08823971,-0.10834398,-0.08405718,-0.104481876,0.38976997,-0.47244674,0.07819105,-0.12053841,-0.26739368,0.05174359,-0.49186128,-0.43734536,-0.62725985,0.35755086,-0.74111897,0.4401228,0.16003495,-0.22264725,0.253052,0.027603805,0.19953133,-0.1133802,0.06690637,0.2122379,-0.021694988,-0.029141456,-0.12814218,-0.21668558,-0.15844655,-0.46529216,0.09905158,-0.49961078,-0.18623415,-0.17667855,0.21133849,-0.24425735,-0.03835657,-0.17651463,0.34910163,-0.47619325,0.0068757385,0.113983706,-0.13008587,0.37479156,-0.57312226,-0.13021067,-0.039947562,0.07255863,-0.23702407,-0.18369462,0.2911742,0.18850678,0.47990125,-0.11725109,-0.18327418,-0.28765598,0.107701026,0.12550874,0.5533584,-0.33134294,-0.21920595,-0.14206602,0.2115368,0.23619634,0.16955078,-0.08588297,-0.46090013,-0.075404994,-0.032120436,-0.055643365,0.34599772,0.5276399,-0.2143142,-0.12447295,0.4345733,0.33394063,0.234447,0.007946137,-0.020035315,-0.11550432,-0.4409774,-0.062242344,0.0925746,-0.15251474,0.42635325,-0.060427707,0.06852825,0.46934927,-0.054773103,0.0042638183,-0.15322065,-0.018446822,0.041312777,-0.15336058,-0.16874981,0.25005943,-0.3497754,0.15385336,-0.043079317,0.5843113,0.1125579,-0.75221026,0.31732634,-0.44808313,0.1820937,-0.18507619,0.47979194,0.65353763,0.31725428,0.18404481,0.76202357,-0.4403985,0.14025128,-0.17683975,-0.3143247,0.1394996,-0.07161803,-0.17996007,-0.54303783,0.012789737,-0.17626835,-0.26702267,0.09212581,0.23236626,-0.6054598,0.05332219,0.11647104,0.6713653,-0.31583816,0.08697364,0.6023941,0.92213327,0.83110154,0.021072892,1.0059283,0.22858758,-0.1419227,0.22740775,-0.29280895,-0.6657968,0.19803686,0.50231624,-0.09302476,0.2093913,0.18023589,-0.05280914,0.25331077,-0.32730776,-0.19795099,-0.33579773,0.22580379,0.001964949,-0.0081007555,-0.47190166,-0.17751063,-0.07558266,0.14762591,-0.132896,0.20720874,-0.34418485,-0.017945468,-0.022315606,1.8180904,-0.15530738,0.10143921,0.14837769,0.21771848,0.26539314,-0.10378152,-0.04257884,0.4058566,0.26719657,0.12128091,-0.53458405,0.06935098,-0.2680647,-0.506172,-0.06928533,-0.12505625,0.026354171,0.11051137,-0.49275988,-0.00030644238,0.056220613,-0.36407822,0.4740075,-2.7259915,-0.12877059,-0.12746665,0.36844608,-0.29561415,-0.40621608,-0.13599372,-0.2511199,0.4267815,0.4096649,0.47008696,-0.58970064,0.14915667,0.24253488,-0.519881,-0.097927645,-0.45536494,-0.11942804,-0.039632037,0.38654274,-0.0050248653,-0.03173269,0.08400318,0.104233,0.43284887,-0.13544999,0.061776757,0.2948983,0.37794152,0.0841687,0.40520525,-0.1278891,0.44774023,-0.17673184,-0.27850294,0.4045306,-0.1686036,0.25799048,0.046854727,0.13035989,0.30374128,-0.58413637,-0.8477564,-0.5314053,-0.3798002,1.2835166,-0.20536798,-0.42498007,0.2749291,-0.1913827,-0.21483627,-0.012102647,0.31600848,-0.08118096,-0.12741184,-0.85375947,0.14956364,-0.14649858,0.32943937,0.037714086,-0.0009878222,-0.32543305,0.5535442,-0.09254065,0.4149744,0.45133197,0.29482388,-0.031824358,-0.44812632,-0.033495847,0.8553742,0.480004,0.09811781,-0.16959733,-0.1452648,-0.07567866,0.055997845,0.18219209,0.41747478,0.70347404,-0.07637825,-0.019279974,0.30083093,0.049090486,-0.0041714404,-0.13469991,-0.2972603,0.0037528872,0.01051769,0.5202635,0.5548497,-0.15023576,0.40192485,0.0083514415,0.24750301,-0.011936955,-0.4025392,0.31048387,1.1641113,-0.10439159,-0.19837524,0.5196841,0.37490392,-0.16875154,0.34284413,-0.60493267,-0.18494192,0.29015425,-0.2143325,-0.37888125,0.25499684,-0.27824146,0.037388656,-0.7665267,0.35809493,-0.16487277,-0.32135063,-0.55153537,-0.056898646,-3.1182158,0.15803991,-0.31735724,-0.21235669,-0.0037433207,-0.10666348,0.22216427,-0.6050803,-0.5476142,0.06457654,0.03136523,0.43507618,-0.04831866,0.1510416,-0.08138813,-0.1909627,-0.097085446,0.2115792,0.16366349,0.34052953,-0.06818077,-0.4024667,-0.26209924,-0.12231949,-0.37705874,0.14504063,-0.542092,-0.46261638,-0.16242777,-0.5647459,-0.0744213,0.54229915,-0.21385567,-0.025361504,-0.1731007,-0.05162651,0.007580828,0.2055158,0.21487306,0.29639882,0.14697464,-0.000419572,-0.10110904,-0.25585845,0.24692656,0.18053475,0.095212236,0.41001433,-0.14545724,0.14188376,0.4425999,0.59378153,-0.40403855,0.6685548,0.71497655,-0.23718765,0.15978147,-0.30412143,-0.18725806,-0.6023437,-0.43001068,-0.22329019,-0.36911625,-0.36338657,-0.13711062,-0.35990256,-0.69546103,0.6112591,-0.14373639,0.22310305,0.11673484,0.20782968,0.5436396,-0.14578447,-0.024570342,-0.039048,-0.15808398,-0.5401964,-0.33175066,-0.47452566,-0.39943635,0.10402532,1.0479841,-0.16965199,0.093086705,0.08933702,-0.1112282,-0.07578353,-0.24381047,-0.026691908,0.2272161,0.29087135,0.03778319,-0.57433206,0.41508767,0.05956527,-0.18045889,-0.5112606,0.31315616,0.6066793,-0.4815538,0.4684455,0.2703796,0.16592652,-0.015641594,-0.70837146,-0.18917117,0.1470131,-0.24309412,0.48142558,0.20230368,-0.645603,0.4164986,0.408934,-0.36101547,-0.74787134,0.421304,0.05682522,-0.38040748,-0.028230034,0.24931282,0.079453595,0.0014269948,-0.04224827,0.28695408,-0.25896358,0.29393494,0.25461793,-0.13868102,0.24125805,-0.27750283,-0.20616636,-0.70347714,0.20076498,-0.31008458,-0.31118825,0.2178314,0.12712349,-0.029681262,0.013678558,-0.011918686,0.51039577,-0.28006536,0.12996149,-0.093187325,-0.1798816,0.38623846,0.5085258,0.43188265,-0.3182015,0.47488692,-0.046711173,-0.20175545,-0.23263925,0.05610361,0.5147871,0.005639598,-0.017891195,-0.1712973,-0.16003661,0.2583712,0.698937,0.0987022,0.2602805,-0.046787612,-0.21133173,0.29576743,0.07648165,0.08800937,-0.15654083,-0.5514436,0.08180339,0.037073523,0.16749984,0.4651844,0.22390051,0.17004353,-0.21723863,-0.2981006,0.04389549,0.18795416,0.15874512,-0.965682,0.249915,-0.015786178,0.6777558,0.5596114,0.051392652,0.10530317,0.50220525,-0.23354436,0.037267983,0.3701393,-0.17757083,-0.4297055,0.3355843,-0.7040255,0.28703928,0.03435351,0.050543662,0.0989787,0.13258994,0.3743459,0.64783275,-0.13904089,0.035327815,-0.08195874,-0.17324968,-0.09106937,-0.20958881,-0.0391315,-0.4195198,-0.5240466,0.5077949,0.37466252,0.32393777,-0.23821804,0.0058459695,0.04719732,-0.16993353,0.21778305,0.09474824,0.046678863,0.033812985,-0.4863428,-0.24178548,0.59097016,0.12448138,0.027399998,-0.2068164,-0.055397987,0.23850974,-0.13077597,-0.19484505,0.007476546,-0.6234672,-0.098735124,-0.4537959,-0.23851001,0.28529054,-0.18010822,0.1952965,0.011139078,-0.028665371,-0.31519935,0.3967263,0.18827637,0.9493249,-0.010265827,-0.18720707,-0.3276656,0.28308272,0.10885949,-0.01834502,-0.03787354,-0.21888272,-0.025516734,-0.6576484,0.43404722,-0.050635442,-0.26489776,0.19307593,-0.07299316,0.08007369,0.45217898,-0.11986384,-0.217583,-0.15353154,-0.13503978,-0.35170865,-0.27668908,-0.114815414,0.15207404,0.22951575,-0.09264697,-0.03672822,-0.09510188,-0.16903238,0.46540475,0.10416991,0.3495468,0.18317556,0.2158809,-0.32131055,-0.030830862,0.25396436,0.37963048,-0.011917051,0.058799557,-0.089322865,-0.38877314,-0.38820314,-0.048805848,-0.18684725,0.30850795,0.18180238,-0.25492373,0.70548517,0.12596633,1.1816319,-0.0917195,-0.21614113,-0.0054179914,0.40058398,-0.014681539,0.0019373875,-0.31553152,0.85335684,0.72344077,0.156567,-0.09862722,-0.26766413,-0.2097184,0.16478622,-0.21533093,0.008554585,0.023327818,-0.5877422,-0.3863889,0.22532773,0.21508937,-0.0037227161,-0.12433381,-0.06984091,0.07862497,0.037770264,0.24398287,-0.30749518,-0.10796358,0.29576012,0.30601394,0.057176434,0.17614806,-0.48929375,0.39931154,-0.42667097,0.11398712,-0.29152587,0.20712301,-0.00952634,-0.16845231,0.11897632,-0.14127329,0.38041705,-0.31210092,-0.3314013,-0.14782694,0.53373826,-0.089405224,-0.0071446784,0.5624572,-0.23287237,0.19143632,-0.08325027,0.36386108,0.9479287,-0.37587333,0.057546094,0.33092347,-0.18939418,-0.53576714,0.27626508,-0.16715394,0.049860395,-0.12439961,-0.29987577,-0.38008937,0.1735266,0.11711289,-0.030303083,-0.17979172,-0.48797587,0.00021754764,0.37929735,-0.15798168,-0.2053145,-0.3148329,0.20059796,0.54492986,-0.30231774,-0.49973115,0.1854671,0.16683458,-0.16611725,-0.4438179,-0.09483629,-0.2840136,0.098278925,0.22220583,-0.37588423,-0.049520597,0.1854224,-0.40971002,-0.08794168,0.14479369,-0.25578085,-0.03742356,-0.16790685,-0.060669832,1.0295943,-0.21245612,0.08845119,-0.66997397,-0.49414876,-0.8978361,-0.34248346,0.5340574,0.17418282,0.20754981,-0.67411643,0.08861424,-0.14485914,-0.1894369,-0.15138464,-0.38071537,0.49048156,0.15371999,0.3438664,-0.41399804,-0.6071411,0.15552104,0.13329259,-0.17099324,-0.53595155,0.43077132,0.099017546,0.7686836,0.020732751,-0.017433774,0.24756104,-0.54464495,-0.026805907,-0.18865263,-0.25165823,-0.7755789,0.112046435,185 +43,0.5737051,-0.21451096,-0.46360934,-0.12467401,-0.5625102,0.33828792,-0.21457134,-0.036603317,0.07701948,-0.46641508,0.009440076,-0.13217995,-0.10821231,0.29287142,-0.25854594,-0.65474653,-0.11096435,0.09514109,-0.6641482,0.5434216,-0.6272699,0.39145264,0.1454919,0.23136592,0.04528401,0.14414653,0.24139789,-0.120646,-0.3599847,0.060617108,-0.1342949,0.25138378,-0.6915416,0.28992787,-0.11045148,-0.3713598,-0.02365265,-0.33394417,-0.0906939,-0.8073399,0.3191537,-0.7940539,0.47881562,-0.14601517,-0.35617536,0.096011624,0.15390992,0.17160366,-0.2841189,0.007822208,0.17761305,-0.36276883,-0.22529618,-0.17174686,-0.3503499,-0.75838524,-0.82403725,0.04580831,-0.70128685,0.004935302,-0.3321255,0.46797135,-0.28507358,0.03182163,-0.1543801,0.4602161,-0.4436642,0.08276035,0.11526758,-0.027688632,-0.13208666,-0.46950465,-0.11217901,-0.15012683,0.101759315,0.06961914,-0.07535258,0.26229596,0.4979383,0.6476022,0.26032776,-0.43393862,-0.291927,0.083908655,0.015079774,0.45497382,-0.11036372,-0.2657001,-0.27506036,-0.110819966,0.5393088,0.23600417,0.19300087,-0.2732053,0.03997825,0.035590746,-0.2243594,0.3776565,0.4186474,-0.33031347,-0.18533385,0.48259926,0.50901926,-0.18227229,-0.19151689,0.16528402,-0.029325929,-0.6463544,-0.08926031,0.42959535,-0.16407107,0.63480514,-0.22640763,0.16740379,0.7506089,-0.28168932,-0.13369553,-0.065551944,-0.24718499,-0.078864746,-0.20132895,0.023491748,0.050647102,-0.5060701,-0.11633154,-0.3540931,0.7532302,0.07655223,-0.86878717,0.30775544,-0.36094874,0.14830391,0.0023796689,0.74906594,0.8800913,0.5025007,0.31975794,0.9500352,-0.44471753,0.08225473,0.033513308,-0.34435996,0.15382524,-0.18641008,0.060818702,-0.4613448,0.1845384,-0.16183944,-0.10280697,-0.2057188,0.77102274,-0.5742365,-0.14733702,-0.15461919,0.648959,-0.4230979,-0.09809048,1.0019065,0.85753804,0.9301723,0.17613538,1.5134861,0.57246876,-0.088488355,0.010036631,-0.3942307,-0.4904172,0.24643607,0.23995517,-0.20708,0.39691144,0.057854533,0.03868382,0.4388647,-0.4360024,-0.08139321,-0.22199711,0.23383966,-0.023225829,0.04382725,-0.4653207,-0.22455302,0.17576581,0.0008703247,0.23745693,0.35173708,-0.34039772,0.6114048,0.3236794,1.2105983,-0.16743132,0.043185305,-0.04684656,0.12790796,0.020758718,-0.11547713,-0.027781658,0.06898372,0.4439792,-0.25229532,-0.60347116,-0.06975798,-0.28473532,-0.4089465,-0.37254757,-0.27012646,-0.1346095,-0.20531969,-0.39528042,-0.35946393,0.06670306,-0.46439883,0.42270303,-2.0748553,-0.2811218,-0.29967046,0.36986828,-0.056748334,-0.43006712,-0.14881295,-0.6176939,0.26455003,0.2774519,0.22556435,-0.73163164,0.44068643,0.30826274,-0.42944154,-0.103925474,-0.81970346,0.053317323,-0.16781956,0.33235714,-0.087855,-0.24674074,-0.23298626,0.10967809,0.6556413,0.019469187,0.16608861,0.28998038,0.6030078,0.053204928,0.5147809,0.38940644,0.6999771,-0.18697824,-0.23805355,0.5613748,-0.39715979,0.33061427,0.21611002,0.20293348,0.4599148,-0.50822806,-0.8047796,-0.67040193,-0.36115888,1.0661013,-0.3496134,-0.37083834,0.09590727,-0.003029585,-0.15496352,0.0100634545,0.48413253,-0.15513977,-0.018705275,-0.81799996,-0.09476051,0.12260311,0.18696102,-0.14150393,0.13510461,-0.26551515,0.6879569,-0.3297728,0.259663,0.3997853,0.2756459,-0.3127026,-0.5322791,0.21022475,1.0539149,0.46256799,0.13964063,-0.16548713,-0.56129146,-0.24071014,-0.19782893,0.0973529,0.41354835,0.7647945,0.11467311,0.04477749,0.30099553,-0.20451611,0.14970148,-0.2439411,-0.26559857,-0.21589118,0.07982062,0.4428142,0.4155838,-0.13398485,0.4577076,-0.28616077,0.18654962,-0.027984139,-0.53999156,0.58613926,1.0571164,-0.15758829,-0.30575812,0.57799256,0.33898118,-0.3652513,0.47756356,-0.59029245,-0.22880852,0.6374498,-0.023676546,-0.34837708,-0.07956906,-0.48681712,0.27320528,-0.89737964,0.41354385,-0.1131984,-0.4300202,-0.6503571,-0.15972678,-2.8110747,0.22010265,-0.28318465,-0.029930413,-0.12980324,-0.34341544,0.31843686,-0.47943482,-0.4851914,-0.07640745,-0.034466643,0.46150076,0.04598551,0.089938626,-0.27188855,-0.20911266,-0.26027814,0.16559117,0.25013247,0.28972813,-0.09406812,-0.34727985,0.31615466,-0.51967424,-0.4002301,-0.048832774,-0.7209496,-0.74041724,-0.18560311,-0.4809563,-0.39405844,0.7766597,-0.3492316,-0.19145739,-0.3201156,0.15903307,-0.07794095,0.35396257,0.16843523,0.035521798,0.13538264,-0.15244523,-0.13517343,-0.36623582,0.22394995,-0.009646092,0.17543183,0.65033174,-0.15841845,0.32623634,0.4442829,0.6568956,0.045075208,0.7845867,0.2512933,-0.1296033,0.20086087,-0.052725192,-0.26640028,-0.88190335,-0.39136153,-0.12021073,-0.5459377,-0.3884486,-0.09139311,-0.37987754,-0.84569716,0.52006495,-0.12957637,0.27007985,-0.1684625,0.4780622,0.44613746,-0.1082079,0.1776851,-0.3243325,-0.34357688,-0.45623854,-0.595647,-0.84865683,-0.7454766,0.08228165,1.4929883,-0.05610545,-0.1098668,0.062013432,-0.3632817,0.1946468,0.16333145,0.09316523,0.2221804,0.4948635,-0.18975943,-0.678357,0.41825926,-0.09152017,0.06208539,-0.41552475,0.045717254,0.6775921,-0.5835242,0.4786157,0.41134888,0.20619532,0.22863561,-0.5927381,-0.2346186,0.16562115,-0.25186327,0.5414662,0.28249127,-0.56295115,0.5395498,0.102347836,-0.27527308,-0.85861415,0.26350477,0.05748237,-0.028439835,0.052972943,0.49124137,0.21235311,-0.03205017,-0.29391676,0.2667791,-0.5871782,0.31210685,0.4029563,-0.20631945,0.24584296,-0.2580304,-0.3924863,-0.638129,-0.16332263,-0.5148711,-0.28265548,-0.064275116,0.02321845,0.05719696,0.048914723,0.2740165,0.4941612,-0.47068614,0.07886494,-0.058577858,-0.21316856,0.28297693,0.51589847,0.24418177,-0.37928897,0.6575788,0.02915962,-0.14596453,-0.1858559,0.04733439,0.48747444,0.2877673,0.14951481,0.21308745,-0.06024558,0.26894557,0.69563246,0.119904526,0.34895337,0.18975395,-0.39745182,0.42566866,0.1912255,0.2981402,-0.10732838,-0.29948562,-0.20837021,0.15020359,0.17469546,0.45907012,0.04148848,0.463677,-0.16081378,-0.040093645,0.2388654,0.037856273,-0.11385812,-1.1883488,0.11496421,0.21449608,0.5846597,0.37099382,-0.09955415,0.08688303,0.54259944,-0.5503278,-0.0488079,0.3968167,0.0709178,-0.32646728,0.5428862,-0.5441619,0.32400727,-0.41891605,0.14372958,0.011890195,0.17270277,0.27710786,1.0582812,-0.09988965,-0.06563277,-0.044256654,-0.07787531,0.21180448,-0.1453813,0.19288261,-0.45141804,-0.2986894,0.7375573,0.39161268,0.4492504,-0.26242453,-0.032721788,0.1270903,-0.20591266,0.23290072,-0.11243294,-0.11182205,-0.10478921,-0.6079883,-0.25123125,0.5254106,0.10906012,0.25433576,0.27440405,-0.480726,0.2092528,-0.19989288,-0.13976617,-0.08485928,-0.7015484,-0.28546172,-0.36316237,-0.4216525,0.21145545,-0.44707066,0.21131983,0.37269312,0.05965674,-0.4610927,-0.19759241,0.33353636,0.780651,0.104239285,-0.12310595,-0.22039697,0.12046889,0.39159068,-0.39021164,0.06085316,-0.13341217,0.23294559,-0.58763766,0.5406186,-0.32406798,-0.35840407,-0.033338115,-0.25676304,-0.07338031,0.581307,-0.3666216,-0.14842016,0.15385461,0.10941613,-0.22923774,-0.013245847,-0.24265066,0.3158251,0.05582148,-0.1810823,-0.042111117,-0.13789028,-0.19337139,0.46289992,0.20403978,0.24178268,0.3816013,-0.09849823,-0.5358877,0.010982215,0.06267716,0.54241943,0.10092135,-0.21879087,-0.37824693,-0.19915551,-0.23303445,0.43017012,-0.0862142,0.12991147,-0.007709572,-0.5366957,0.97886235,0.08091183,1.2767376,0.14773986,-0.43627438,-0.03419518,0.691916,0.03306301,0.18895988,-0.28462052,0.9344592,0.4769464,-0.1887713,-0.09882538,-0.5510297,-0.14270101,0.40707555,-0.27355137,-0.07248783,-0.28010535,-0.7443123,-0.31728896,0.24694778,0.17199197,-0.10495421,-0.039962806,0.10020815,0.058070537,-0.07061762,0.6596601,-0.64761436,0.007145196,0.23218328,0.13406426,-0.018477686,0.39734435,-0.29290032,0.37631994,-0.7013519,0.09259144,-0.31063968,0.18538061,0.15233617,-0.21720986,0.33031443,0.034808733,0.37200737,-0.26708603,-0.3146491,-0.42968538,0.8250485,0.30153272,0.34816808,0.9209164,-0.46316803,-0.05304327,0.17001303,0.5380683,1.5020216,-0.15834647,0.22607629,0.10809765,-0.37500462,-0.60665965,0.38540044,-0.46571139,-0.015430823,-0.15848711,-0.3841807,-0.46397784,0.31974468,0.3271352,0.105901375,0.14438799,-0.44651443,-0.17965296,0.60267395,-0.23450585,-0.0757834,-0.1198186,0.28151956,0.7363335,-0.4310183,-0.3165856,-0.12432492,0.48392427,-0.23367421,-0.6514682,-0.05106715,-0.27414313,0.51443106,0.29388952,-0.22582659,0.019910343,0.25387752,-0.43105993,0.18407123,0.42737532,-0.27351457,0.050734818,-0.26196173,-0.015817106,0.91022813,0.093231395,0.18798552,-0.6683986,-0.4318501,-0.88753295,-0.36476254,0.11538707,0.31280887,0.013050855,-0.59942836,-0.0979533,-0.15802394,-0.12585007,0.26205724,-0.77387995,0.3709411,0.05343652,0.55598,-0.037588835,-0.9068735,-0.029146098,0.041943736,-0.033642262,-0.41315952,0.5091342,0.004647389,0.6809786,0.41166204,0.15221547,-0.09267359,-0.5599934,0.4265948,-0.43495458,-0.1639463,-0.71450967,0.1262183,195 +44,0.51447713,-0.23205446,-0.5516473,-0.3378631,-0.547372,0.16047578,-0.31579185,0.026522234,0.28575715,-0.33688945,0.042828124,0.038122486,-0.14560372,0.15212928,-0.14447653,-0.6242742,-0.1928848,0.11062515,-0.83452666,0.59285665,-0.47253674,0.21289697,0.08329334,0.3568138,0.15618873,0.2388308,0.17863142,-0.0033571497,-0.19374436,-0.11301213,-0.08355078,0.33607867,-0.8569995,0.16681065,-0.22871292,-0.40302384,-0.1212143,-0.5417678,-0.19358356,-0.713608,0.25656086,-0.8605842,0.6089972,-0.19560368,-0.300662,0.05317553,0.2323827,0.23503122,-0.2589567,0.15937658,0.2520504,-0.1662298,-0.1751807,-0.09279859,-0.30020306,-0.47393912,-0.6447114,0.07141728,-0.6426145,0.038308606,-0.19155625,0.33627266,-0.28566226,0.13245517,-0.35530978,0.42363617,-0.39294058,-0.076670446,0.015826069,0.0069976673,0.019470893,-0.4511954,-0.14891607,-0.31842834,0.34239638,0.031775557,-0.30963728,0.20693249,0.27897105,0.6159078,0.11450935,-0.39899245,-0.32258135,-0.10974794,0.05276882,0.36225057,-0.077016324,-0.21561703,-0.41555902,-0.04253623,0.46888018,0.26307935,0.037321776,-0.334001,0.16072038,-0.0023173227,-0.23070164,0.6585113,0.45977283,-0.3846591,-0.28298432,0.38720262,0.40491456,0.16636892,-0.24302927,0.2132959,-0.040526837,-0.5322819,-0.26950407,0.3207028,-0.11281459,0.38939184,-0.09590705,0.22819698,0.692921,-0.20748688,-0.10556575,-0.14959517,-0.2647051,-0.09213258,-0.33029333,-0.17201833,0.1698589,-0.5642194,0.1620345,-0.24597788,0.4941265,-0.0013938807,-0.952433,0.332304,-0.61115843,0.23755929,-0.055061273,0.6918285,1.0565485,0.5730519,0.30510503,0.8025868,-0.22355625,0.12591106,-0.029036734,-0.2711567,0.01414586,-0.18059038,0.1616762,-0.51892346,0.0401145,-0.1352255,-0.032808334,-0.13001022,0.60911924,-0.4428326,-0.1997383,-0.019755758,0.6734384,-0.3332247,-0.13274682,1.1235476,1.0183005,1.2357742,0.18752378,1.3636796,0.30440485,-0.061516672,-0.08164122,-0.2592969,-0.5540215,0.21124177,0.2765203,-0.11696401,0.46626994,0.0010088915,0.09649606,0.43708473,-0.43882143,-0.024866879,-0.027905278,0.2119248,-0.039564986,-0.028658282,-0.2784024,-0.26735824,0.37985206,0.08908498,0.21562862,0.2512347,-0.28253222,0.63148755,0.22458898,1.1673033,-0.043724243,-0.010123886,-0.0013615638,0.3852982,0.2188756,-0.18709028,-0.024665006,0.3071362,0.44153142,-0.15162493,-0.55901086,0.060136724,-0.30275416,-0.23466316,-0.16927499,-0.37320563,-0.1591039,-0.3732784,-0.4606286,-0.36480176,-0.0132279135,-0.44656533,0.502241,-2.2997193,-0.3269886,-0.19118655,0.14682727,-0.18276066,-0.3677377,-0.16838121,-0.56990093,0.27632827,0.30495942,0.34832802,-0.6977013,0.62303203,0.5086449,-0.6245369,-0.035315458,-0.8043431,-0.21092318,-0.108148046,0.3904433,-0.074516445,-0.32369983,-0.24899232,0.29508254,0.59278613,0.039832048,0.15003844,0.32312512,0.5533001,-0.07917812,0.7198298,0.119921744,0.53751004,-0.21492247,-0.23244165,0.46640265,-0.3701366,0.2632817,0.03366311,0.12921052,0.60985965,-0.5830185,-0.8963014,-0.6719742,-0.3956622,1.236022,-0.35331693,-0.44957253,0.07752337,-0.2527971,-0.28569043,0.054780677,0.5514288,-0.20105231,0.002351489,-0.8461445,-0.10607651,-0.025153399,0.2802429,-0.1529178,0.15305361,-0.4739648,0.66258633,-0.08858438,0.5068183,0.26935944,0.25330025,-0.32480443,-0.4220431,0.22880176,0.9471143,0.4885075,0.0086852275,-0.3021516,-0.2553427,-0.1168904,-0.079899006,0.017439406,0.58194685,0.57521456,-0.0786369,0.12046998,0.48980016,-0.16604395,0.10831936,-0.25393096,-0.22153412,-0.1719441,0.0840718,0.6231891,0.60300624,-0.12217299,0.42773262,-0.22102278,0.23672894,-0.06400713,-0.5720937,0.57340604,0.86885417,-0.11303108,-0.21006691,0.6408771,0.4895115,-0.30179718,0.5411385,-0.62194145,-0.27237874,0.5463129,-0.017613344,-0.4359479,0.13963193,-0.42385232,0.08959683,-0.86420083,0.1581278,-0.25263122,-0.3015317,-0.57684946,-0.20227255,-3.4327054,0.034547277,-0.09374493,-0.06466968,-0.23695958,-0.42554498,0.44307286,-0.46321714,-0.7939367,0.08792331,0.0826435,0.54081225,-0.14743735,0.11481837,-0.28515503,-0.3735483,-0.42575473,0.23381227,0.24274985,0.25606817,-0.0867182,-0.4603203,0.006644888,-0.34794995,-0.47906458,-0.15539005,-0.63147426,-0.45607623,-0.07954154,-0.5613489,-0.3656768,0.63384193,-0.2699654,-0.078751154,-0.42024165,0.0053559355,-0.056810707,0.4081001,0.100140676,0.16981693,0.10855009,-0.13242668,-0.097447254,-0.22563457,0.22768044,-0.042434033,0.1994873,0.23850387,-0.08480193,0.28746486,0.4392447,0.77699995,-0.08945809,0.9190488,0.27502006,-0.168156,0.37521446,-0.115640186,-0.3204086,-0.7917459,-0.25152296,-0.111332566,-0.5777441,-0.42892408,-0.11308947,-0.39076805,-0.85407394,0.5210748,0.07187722,0.24530452,-0.21769062,0.36164925,0.39535052,-0.14812353,0.16221485,-0.19631854,-0.3040866,-0.37387258,-0.49006712,-0.77509207,-0.549202,-0.096523724,1.3921535,0.01179564,0.017532036,0.18875933,-0.3309334,0.13352795,0.261629,0.21205585,0.34760165,0.5878164,-0.054368407,-0.64777863,0.34994423,-0.21146625,0.0671093,-0.5796361,0.07706146,0.8360488,-0.65909874,0.5775176,0.3754065,0.1827661,-0.0030497424,-0.6068174,-0.12301781,0.04510431,-0.19055462,0.7675315,0.42151973,-0.77990025,0.6246711,0.13537392,-0.08354102,-0.7669742,0.5143624,0.07128834,-0.03844455,0.03142048,0.43287212,0.058192447,-0.03823141,-0.03837215,0.19546944,-0.43053603,0.37161264,0.28563634,-0.02039764,0.33628425,-0.15735653,-0.29601127,-0.64998,-0.12976682,-0.41831416,-0.35913706,0.02789193,-0.120040044,0.15075144,0.12536697,-0.037832916,0.4714175,-0.19864729,0.084194936,-0.16770057,-0.20573431,0.23453881,0.569457,0.28287327,-0.41124922,0.7110162,0.24709797,-0.14935857,-0.09340101,0.102671206,0.32130575,0.16275589,0.35797414,0.10475133,-0.20778419,0.2370843,0.62661517,0.17840019,0.30982518,0.1003471,-0.17620121,0.35279846,0.110767186,0.15886557,-0.23238362,-0.43362987,-0.21091416,-0.023002457,0.17328563,0.4562332,0.12831655,0.2686972,-0.127472,0.041767035,0.030845396,0.19733098,-0.2831624,-1.5541055,0.14793515,0.31789368,0.8321443,0.7060545,0.06171307,0.0067457594,0.55604863,-0.45428884,-0.022966899,0.4950776,0.25908372,-0.29297656,0.59481436,-0.4693096,0.475219,-0.10240177,0.10820286,0.046889216,0.11846854,0.4456253,1.0327152,-0.21517006,0.099093676,0.02301132,-0.11657789,0.2525014,-0.0992392,0.090456136,-0.39033476,-0.33684048,0.77915144,0.37806988,0.3911533,-0.37334114,-0.096081965,-0.05727032,-0.29503688,0.10022084,-0.017356958,-0.10948796,-0.12765111,-0.52303016,-0.19558758,0.51503485,-0.0921689,-0.0007432215,0.29085156,-0.474182,0.16546081,-0.027736379,0.11419518,0.010708988,-0.6917371,-0.16638467,-0.22098993,-0.41970533,0.24774893,-0.40482545,0.09915176,0.13818265,0.04033483,-0.2736681,0.027287126,0.13878885,0.6677494,0.10249039,-0.047909554,-0.14094776,0.045914337,0.20825422,-0.37167105,-0.09055059,-0.30650115,0.2608553,-0.6638739,0.521634,-0.17538181,-0.45496273,0.15430185,-0.063745335,0.021297915,0.37673175,-0.21026984,-0.19773015,0.10899383,0.10323078,-0.3649954,-0.18562534,-0.3282671,0.27627861,0.04947278,0.031645715,-0.020520808,-0.07844944,-0.10360625,0.6245146,0.09518389,0.2560044,0.46820927,0.070677675,-0.6101655,0.075982206,0.034378685,0.6663625,-0.0058760047,-0.15368457,-0.33974275,-0.18719098,-0.3069088,0.593439,-0.13454351,0.18334377,-0.08790171,-0.4860283,0.8280039,0.107675955,1.2106445,0.033281557,-0.44086057,0.03626309,0.5301333,-0.17566806,0.046403266,-0.30473414,0.9313505,0.5274105,-0.17857084,-0.2527377,-0.5344968,-0.15287952,0.115460485,-0.33970433,-0.17343333,-0.27193332,-0.71407634,-0.17176381,0.16730654,0.13908774,0.1578427,-0.00824772,0.1122722,0.16269754,0.106914625,0.5190966,-0.54050934,-0.06957501,0.26031187,0.26542988,-0.0654322,0.19369546,-0.40054458,0.25098076,-0.75272894,0.109241806,-0.44932967,0.11333207,-0.05727853,-0.2678592,0.23399088,0.119213276,0.26363057,-0.24828495,-0.35612532,-0.30750853,0.63725686,0.0057669254,0.30886388,0.9330711,-0.21667574,0.063513234,0.08922868,0.46624207,1.3349965,-0.10912211,0.032138295,0.14579709,-0.2733982,-0.5267072,0.16236177,-0.5400741,0.14084892,0.13238111,-0.40755957,-0.30759043,0.27466634,0.05773824,0.18443942,0.11809962,-0.71744263,-0.16147949,0.436626,-0.116296545,-0.11803609,-0.33905897,0.26010808,0.85137004,-0.3135205,-0.27132344,-0.103999786,0.42427635,-0.24691199,-0.7568879,-0.047282685,-0.44176945,0.5090242,0.09608192,-0.2750329,0.018297676,0.098739035,-0.55245876,0.109308414,0.46095073,-0.2966042,0.06531182,-0.32991588,-0.18914874,1.0825838,-0.13231054,0.2342422,-0.51086813,-0.5852121,-0.892531,-0.1263941,0.02483508,0.23422226,-0.024951477,-0.5215487,-0.09259215,-0.1786463,-0.14853133,0.26967487,-0.6685678,0.4757155,0.1766222,0.61888385,-0.038162045,-0.8636464,0.02611208,0.040789627,-0.05765653,-0.27657935,0.7288598,0.090391956,0.6981107,0.22951093,0.09522909,-0.122892916,-0.6335725,0.35570258,-0.33693644,-0.060360655,-0.8326634,0.06403687,196 +45,0.482038,-0.1573207,-0.53620654,-0.11606369,-0.39465335,0.16227093,-0.26317424,0.36271024,0.18234703,-0.2659361,0.08198781,0.0014600935,-0.04048779,0.33670238,-0.06204133,-0.62128323,0.050425813,0.13638127,-0.7252275,0.6226436,-0.51551145,0.45736706,0.053405568,0.19878237,0.18149623,0.35589322,0.11645786,0.04176899,0.06229563,-0.108560234,-0.15955609,0.2606288,-0.44274107,0.122323975,-0.03981146,-0.29895136,-0.09394387,-0.387119,-0.5313239,-0.65226245,0.29152074,-0.6452675,0.58836174,0.09475538,-0.39876038,0.11590497,0.1346134,0.2636369,-0.32193574,0.17864043,0.17365393,0.019765709,-0.0637802,-0.26765826,-0.28315184,-0.4334817,-0.45443103,0.09137471,-0.6101809,-0.068930015,-0.317723,0.1359224,-0.2783959,-0.052418713,-0.20422873,0.3969376,-0.46735248,0.031304218,0.07716294,-0.06286204,0.18852493,-0.5604865,0.08838971,-0.15058447,0.1389867,-0.15420467,-0.311855,0.2366179,0.17896089,0.6119314,0.013780758,-0.291827,-0.26962522,-0.10195662,-0.04720111,0.44870064,-0.23871252,-0.44157937,-0.21426192,0.06463879,0.3685174,0.21423681,-0.021087065,-0.31928876,-0.07424033,-0.16509496,-0.26180205,0.45977095,0.5447717,-0.3458649,-0.20541358,0.4944461,0.4749887,0.1989111,-0.16149153,0.21421805,0.0147238225,-0.5613785,-0.2305804,0.026650786,-0.036015674,0.44942516,-0.24264859,0.22978291,0.5906532,-0.07029087,-0.056292627,0.20285302,0.07625386,0.025256008,-0.18875453,-0.18275326,0.06847349,-0.5515415,0.058806054,-0.12780112,0.721121,0.11791819,-0.694808,0.41484004,-0.5290242,0.15329778,-0.054485068,0.56037587,0.832829,0.47210836,0.14283943,0.7528297,-0.39152503,0.1566003,-0.22255239,-0.29092997,0.06522098,-0.058537275,-0.15371674,-0.56802857,0.02849666,-0.09031225,-0.102675475,0.022608705,0.7258022,-0.46056637,-0.24557117,0.07647311,0.7570962,-0.41330242,0.020025741,0.60138726,0.9492746,0.9528017,0.023983078,1.1471863,0.25278053,-0.08981496,0.04146836,-0.29001504,-0.6257044,0.2789565,0.4230807,0.105749935,0.32468542,-0.04235028,0.024867676,0.32052612,-0.3135934,-0.0123625975,-0.20423813,0.31394696,-0.095514536,0.029462144,-0.45320255,-0.24770752,0.0066881627,0.26018086,0.05321207,0.30852908,-0.25871786,0.23433045,-0.019810634,1.6330606,-0.12874074,0.13284354,0.20164543,0.5137684,0.36564928,-0.342604,-0.17163444,0.2549159,0.3581917,0.054042615,-0.5626491,-0.032402083,-0.26647285,-0.40540746,-0.14446075,-0.32189757,-0.079962,-0.17737861,-0.5848745,-0.22682998,0.10177024,-0.5064819,0.49992073,-2.5496182,-0.20831223,-0.11546463,0.2600278,-0.24098587,-0.43300372,-0.24716029,-0.36060074,0.4470042,0.29615748,0.38269174,-0.62839735,0.35981297,0.5787756,-0.4042579,0.046534225,-0.5454692,-0.10449589,-0.018584974,0.34517726,0.04903937,-0.22615163,-0.118043154,0.3237202,0.5516466,-0.20191884,0.13467593,0.28449383,0.2944854,0.08779521,0.43261862,-0.028664373,0.4362175,-0.2580441,-0.2655365,0.44893134,-0.25428623,0.20012246,-0.15261564,0.09543655,0.44596243,-0.6551401,-0.9080077,-0.5628519,-0.07975407,1.2079875,-0.3142389,-0.47158027,0.31525323,-0.37791392,-0.3061177,0.040791072,0.4407205,-0.077410504,-0.038799986,-0.77857643,0.18252657,-0.05561669,0.22189319,0.04031299,-0.009374343,-0.2913721,0.6245554,0.053138956,0.4672264,0.30061245,0.09080616,-0.22583093,-0.38185635,0.12705907,0.9637102,0.507118,0.14808536,-0.22810204,-0.24775761,-0.21775638,0.059182547,0.12037855,0.4923606,0.67901915,-0.03696473,0.07154633,0.27190796,0.05746626,0.05905653,-0.22531058,-0.251032,0.010066325,0.050788153,0.6241563,0.56040996,-0.08188508,0.38155648,-0.113912165,0.23580116,-0.23672688,-0.5847793,0.46636617,1.0006869,-0.095700175,-0.2460989,0.61687744,0.45520595,-0.29042736,0.4014218,-0.57118845,-0.3864796,0.3364419,-0.19486111,-0.27979153,0.33559188,-0.4009719,0.17123295,-0.7242206,0.25536937,-0.15860523,-0.5463428,-0.3727369,-0.17891791,-3.3002012,0.24883601,-0.17523399,-0.043103162,-0.018965686,-0.10527951,0.30054677,-0.5015691,-0.49718738,0.029093836,0.05551507,0.7033236,0.023653843,0.13658673,-0.105358385,-0.3709792,-0.28390473,0.15981454,-0.013355317,0.40525633,-0.09342654,-0.4495569,-0.3115033,-0.12048467,-0.34888282,-0.023991704,-0.6562606,-0.42666218,-0.22301967,-0.5369469,-0.011170324,0.6084194,-0.090833604,0.069543146,-0.29351982,-0.10354461,0.061715305,0.19067508,0.14579874,0.16890971,0.0483066,-0.114446685,0.0030687153,-0.35179785,0.17547695,-0.044207618,0.17185022,0.3201788,-0.07002251,0.1004204,0.5131587,0.58162177,-0.2391244,0.9824853,0.45863622,-0.21731007,0.38682833,-0.15617894,-0.22038256,-0.54951787,-0.2784343,-0.18912122,-0.43056428,-0.16836049,0.0030653924,-0.28708735,-0.77905166,0.45902103,-0.043353513,0.15585434,-0.03331601,0.27610564,0.47787356,-0.20337851,-0.061664842,-0.13034369,-0.29790452,-0.44823423,-0.27663124,-0.6085537,-0.39130688,0.23900865,1.114079,-0.2285679,0.021237362,0.06123062,-0.115685396,-0.108501405,-0.07405221,0.20280144,0.27878484,0.3122181,-0.2600755,-0.6539655,0.3066752,-0.06320839,-0.07122864,-0.504056,0.1497127,0.73979086,-0.5058881,0.46670866,0.21588773,0.21390651,-0.10089737,-0.6827007,-0.1665899,0.07516439,-0.26125535,0.50905204,0.20985055,-0.8692529,0.552658,0.31319106,-0.22823691,-0.7438256,0.5016886,0.02614005,-0.43492085,-0.11894328,0.3328113,0.007182032,0.0014639124,-0.23707607,0.27391386,-0.31784293,0.39034683,0.18510872,-0.15640539,0.18999073,-0.28029066,-0.33475798,-0.5710976,-0.111762136,-0.4672548,-0.42642286,0.19115382,0.038954154,0.07937023,-0.030211294,-0.11771171,0.45682517,-0.29587442,0.10584912,-0.16637816,-0.26508573,0.37554696,0.42269576,0.5284317,-0.35845536,0.6136763,0.025421027,-0.022618815,-0.117099494,0.24889854,0.46150106,-0.060246788,0.34872395,-0.029276745,-0.11522347,0.38200063,0.86726344,0.18112323,0.32642943,0.014876749,-0.18794504,0.14159645,0.1498996,0.012453511,-0.11665756,-0.42773902,-0.080599055,-0.17157656,0.25494966,0.53004044,0.119955905,0.21955216,-0.15653795,-0.28768623,0.096108146,0.19144756,0.011908488,-1.4571247,0.21880043,0.20410681,0.6845445,0.50215626,0.10875618,-0.16221674,0.6177875,-0.26934177,0.046496402,0.3008627,-0.115466736,-0.37155733,0.39658403,-0.66088855,0.4622921,0.027534105,0.050834805,0.10755585,0.030053396,0.37379444,0.8456706,0.018180816,0.07669692,0.05709968,-0.3254947,-0.014056541,-0.31519637,0.0097403005,-0.48642564,-0.3909011,0.7323317,0.3262979,0.32374525,-0.06815768,-0.05589952,0.07374872,-0.20765649,0.107644364,0.036685523,0.06762756,-0.2041615,-0.6436603,-0.15803042,0.55857533,0.22197613,0.04265374,0.097424425,-0.056031514,0.2986498,-0.10987198,0.04205653,-0.07882595,-0.5674218,-0.045290943,-0.4442468,-0.39224464,0.4120104,-0.25149408,0.21301946,0.13780375,0.07918618,-0.33379346,0.41863045,0.07480852,0.7127883,0.0077198446,-0.0961708,-0.18375693,0.21863815,0.13927805,-0.21898398,-0.20164412,-0.18738085,0.12309605,-0.780985,0.36250523,-0.096133314,-0.4238609,0.24221021,-0.06800928,0.05741455,0.42753875,-0.07076054,-0.3054353,0.0035513937,-0.15662429,-0.3350703,-0.26561737,-0.1216076,0.29083523,0.20223112,-0.14028361,-0.10905995,-0.14608017,0.03381589,0.42916927,0.0058001447,0.36920178,0.317592,0.15891579,-0.3183518,0.119710766,0.31456977,0.5730779,0.044205546,0.03193912,-0.22781065,-0.2840101,-0.37157974,0.06068769,-0.16330333,0.26687717,0.13531223,-0.20701307,0.88270223,0.095393166,1.1065903,0.035810746,-0.20679146,0.16935223,0.37940133,0.054380726,0.011933241,-0.29168493,0.9360545,0.6539501,-0.07945345,-0.16286021,-0.39019305,-0.14351982,0.061397493,-0.3064756,-0.15456128,0.012552306,-0.76627386,-0.28167242,0.24921489,0.22539312,0.21933004,-0.08346935,0.029635333,0.1578788,0.04829171,0.19309744,-0.59697914,0.009551175,0.33336258,0.20865875,-0.00789856,0.16648164,-0.5487289,0.29449785,-0.5904754,0.002976166,-0.16470556,0.23000541,-0.07691838,-0.29498887,0.27701864,0.014439993,0.3463797,-0.36006773,-0.3749802,-0.23703355,0.5352346,0.018615924,0.14435384,0.55007917,-0.33467487,0.1167522,0.07345429,0.40779868,0.98135996,-0.324405,-0.011103388,0.35240608,-0.37127346,-0.7140197,0.09218869,-0.38565424,0.075508356,0.06909739,-0.3196362,-0.29188737,0.33774996,0.006049011,0.1845126,-0.07682459,-0.6279102,0.018625524,0.24341303,0.017015178,-0.18997067,-0.29904237,0.19622609,0.62315226,-0.24941045,-0.33839166,0.10853599,0.29410183,-0.25835985,-0.6661342,-0.023083296,-0.2687982,0.17966162,0.12974992,-0.22062962,0.0023704767,-0.01244919,-0.4938134,8.017197e-05,0.36762366,-0.39398587,0.008606657,-0.30214885,-0.09547554,0.9833648,-0.22943383,0.09447043,-0.4861059,-0.5246696,-0.85036504,-0.35157543,0.4095524,0.11648364,0.073814824,-0.7340235,-0.01041048,-0.20896131,-0.06581775,0.08351836,-0.4085734,0.5301885,0.099531576,0.32997656,-0.1527424,-0.82527626,0.19210842,0.028652828,-0.2668673,-0.53505015,0.50781405,-0.07410053,0.74626374,0.14890715,-0.0065556914,0.22734503,-0.8056763,0.1335986,-0.22544472,0.017534574,-0.82074463,0.08716302,204 +46,0.48094773,-0.23860158,-0.30013043,-0.025000094,-0.2388775,0.20138207,-0.14960858,0.5479269,0.17246254,-0.35953978,-0.0719073,-0.21136868,-0.023702033,0.30317888,-0.08766325,-0.39100152,-0.09634764,0.25131783,-0.5374326,0.49428004,-0.4381542,0.2961766,-0.13540448,0.453493,0.14617914,0.2526216,-0.044988804,-0.07596849,-0.26935196,-0.11219856,-0.09601094,0.3170159,-0.6010143,0.10553435,-0.12432642,-0.31617945,-0.05107995,-0.5480808,-0.31004798,-0.7437371,0.30880618,-0.80095994,0.4277609,-0.020778785,-0.2715774,0.4409892,-0.06892544,0.33029297,-0.257792,-0.01838027,0.18109357,-0.15719628,0.02845313,-0.19886893,-0.09228996,-0.092127405,-0.521562,0.09713532,-0.32982334,-0.24963644,-0.33011198,0.06924977,-0.33210126,-0.025673907,-0.0489626,0.2832284,-0.5038614,0.08793751,0.061591223,-0.054312073,0.11160971,-0.525059,-0.110816374,-0.13401173,0.27401885,-0.20301226,-0.13378093,0.4100634,0.19858053,0.52459776,-0.099893466,-0.11313507,-0.3705387,0.043928362,0.04549007,0.5433246,-0.16711159,-0.46042344,-0.060904622,0.023330627,0.23489857,0.0779556,0.072785154,-0.19717532,-0.2994115,0.002852857,-0.10263932,0.26573864,0.45566952,-0.35185927,-0.30679816,0.3221241,0.5475408,0.17517619,-0.041652378,0.030668724,0.014659807,-0.50608313,-0.12552293,0.093766764,-0.16917557,0.42226368,-0.061186876,0.24859342,0.7056362,-0.2010166,-0.008729614,-0.045947466,0.0786562,-0.009681519,-0.21832275,-0.27442467,0.2199578,-0.325982,0.20469172,-0.18420048,0.73749834,0.17569482,-0.84804547,0.3549836,-0.47045425,0.14348112,0.009528004,0.5478258,0.68940973,0.47292492,0.48182374,0.68330216,-0.38417798,0.126885,-0.15724365,-0.23388878,-0.027537977,-0.22809248,-0.12497527,-0.48905334,0.106436186,-0.022950608,-0.18771689,0.14449352,0.21989608,-0.6358038,0.08375803,0.12252452,0.7791818,-0.23975328,-0.013994671,0.80068797,0.9106835,0.9057025,0.039287146,1.047061,0.21953063,-0.23737323,0.30064726,-0.37900352,-0.6766411,0.18340303,0.31855565,0.04154427,0.17215186,0.1956718,-0.09437573,0.40423968,-0.47201282,-0.0045509897,-0.14818458,0.08608641,0.16867884,-0.093144834,-0.32565454,-0.2675106,-0.13035208,-0.005152218,0.0012831539,0.3271709,-0.28360665,0.42339206,-0.009256732,1.9210007,0.050869644,0.09018035,0.08548267,0.5263887,0.11223605,-0.14386383,-0.14696935,0.3942846,0.36283892,0.0014436366,-0.53753114,0.10559409,-0.13927032,-0.468484,0.058781084,-0.3025853,-0.111648686,-0.064353,-0.4037661,-0.23631257,-0.13838907,-0.23665997,0.4337395,-2.7938614,-0.09615103,0.02402972,0.35522187,-0.22123662,-0.35205954,-0.041017845,-0.4453658,0.31502807,0.27382284,0.4632851,-0.70432156,0.25081664,0.28351146,-0.5179935,-0.15955025,-0.633946,-0.111667044,0.08010071,0.3647671,-0.012970487,-0.0574525,0.025479328,-0.007885039,0.49419594,-0.04814195,0.098732434,0.321114,0.40711433,0.111377776,0.41816473,-0.022889309,0.45121205,-0.21553366,-0.24387647,0.29852948,-0.39618775,0.22508521,0.055622347,0.12959792,0.3959161,-0.46136898,-0.8550121,-0.6719191,-0.10571006,1.1787012,-0.14889845,-0.45674002,0.28352237,-0.30114383,-0.20771942,-0.16014084,0.41374975,-0.053192157,-0.25885576,-0.8042494,-0.09001459,-0.09836838,0.29667988,0.037611604,0.014367102,-0.35976732,0.61761206,-0.13207678,0.41947138,0.34658736,0.12007624,-0.15594083,-0.4063189,0.08571389,0.84745693,0.3057388,0.1803968,-0.18875402,-0.26144722,-0.2715176,-0.12214848,0.053138066,0.43100202,0.5858866,0.019739553,0.14352542,0.22452118,-0.0734298,-0.08740714,-0.2785325,-0.09442474,-0.098788075,0.06006341,0.5452841,0.5615978,-0.18495066,0.47277117,-0.014453169,0.07445637,-0.12541766,-0.4169452,0.5370603,0.79615366,-0.08888079,-0.17831889,0.44286335,0.46064216,-0.20240894,0.4127709,-0.6001991,-0.28506887,0.50375694,-0.24971306,-0.34693757,0.2549107,-0.21199606,0.1465381,-0.7871322,0.269803,-0.15116552,-0.47953755,-0.59310514,0.008776873,-2.9608345,0.0712704,-0.15206236,-0.3900951,-0.02265054,-0.17443383,0.048663076,-0.53543925,-0.43153778,0.08035851,0.13623895,0.71483815,-0.08552752,0.033266865,-0.23311338,-0.29786485,-0.39870435,0.036090072,0.118839756,0.40114307,0.07056351,-0.4915855,-0.08279076,-0.2128294,-0.3793412,0.0017565899,-0.5409647,-0.43600845,-0.18397948,-0.47406176,-0.2700003,0.6176975,-0.29015857,0.07613603,-0.2720217,-0.10744342,-0.13355437,0.35825497,0.21249133,0.12250224,0.02824933,-0.13614096,0.11404399,-0.2840954,0.34605017,0.048743602,0.20620245,0.5218863,-0.18870421,0.15577763,0.4874923,0.63913345,-0.09557979,0.7788463,0.49608177,-0.075491354,0.3004126,-0.36603305,-0.17775866,-0.45002967,-0.25907516,-0.059319034,-0.43998283,-0.47020912,-0.1074462,-0.40103367,-0.7558819,0.4811361,-0.13812125,0.097354695,-0.030984692,0.2858436,0.5456389,-0.20007007,-0.007920565,-0.16479072,0.02300191,-0.4375947,-0.30070135,-0.5918128,-0.4063639,0.1022207,1.0313703,-0.10810758,0.005298279,0.11663644,-0.23054597,-0.05556495,0.06671918,-0.07371173,0.16090776,0.37673223,-0.109295756,-0.66639775,0.47527367,0.0016879104,-0.21052274,-0.51916283,0.20099446,0.44356537,-0.55397445,0.47064006,0.114350654,0.030210592,-0.057996422,-0.44381747,-0.18627317,-0.09344833,-0.17666966,0.30823958,0.115796365,-0.6859392,0.44690967,0.3742014,-0.2832114,-0.71802115,0.26316136,-0.024008185,-0.4398845,0.074158385,0.16764134,0.05622113,0.027771134,-0.26449898,0.20590925,-0.49305677,0.2894059,0.26324755,-0.043077864,0.27359903,-0.25356507,-0.23246315,-0.66338176,0.05800199,-0.3758129,-0.29184616,0.20877801,0.18722878,0.09831609,0.14068234,0.10827011,0.40214884,-0.27669168,0.019895103,-0.09360536,-0.10176037,0.20251402,0.43817374,0.4450103,-0.43167484,0.5520883,0.05136137,-0.10676138,-0.08094059,0.030429471,0.40207392,0.07882586,0.19181578,-0.0062134415,-0.3335752,0.25392216,0.6874475,0.30236518,0.50111425,-0.10641861,-0.21216688,0.34093642,0.17292279,0.25054237,0.06400442,-0.38732725,0.14262526,-0.19678031,0.09864897,0.42128026,0.16793221,0.29949665,-0.054728962,-0.27458635,0.076192714,0.1965721,-0.110075474,-1.224906,0.24111271,0.1329777,0.86651874,0.44192693,0.02406301,0.21003477,0.7354872,-0.28564095,0.08553866,0.2730211,-0.071232036,-0.63270485,0.5292305,-0.7128775,0.48098224,0.031066163,0.028601445,0.09655996,-0.042231143,0.44019043,0.5846075,-0.1688681,-0.03953173,-0.012647884,-0.24722663,0.05414713,-0.32365775,0.08331666,-0.618399,-0.18651219,0.6361207,0.43773395,0.31131798,-0.1954574,0.09309144,-0.0056514665,-0.10041557,0.09747506,0.16410851,0.15269972,-0.030602295,-0.5080737,-0.1501116,0.5513681,-0.16528478,0.13016973,-0.007828962,-0.2669562,0.24128127,-0.18802693,-0.26035202,-0.15511036,-0.625161,0.05433523,-0.2555739,-0.30671242,0.40453735,0.120526254,0.38404596,0.22809967,0.063465565,-0.3733701,0.41239965,0.26081622,0.8423704,0.022582572,-0.18538882,-0.31288368,0.26741102,0.18942356,-0.14250967,-0.13903265,-0.11482568,-0.09246783,-0.49182892,0.36969638,-0.096992396,-0.24392799,0.10061989,-0.09183417,0.09992617,0.5141251,-0.0814606,-0.09941515,-0.096598946,-0.22373052,-0.4326509,-0.1115736,-0.14933652,0.26528704,0.29210028,-0.13864551,-0.108344905,0.07501025,-0.09140473,0.5536159,-0.059416655,0.23292978,0.20892583,0.09812011,-0.3691783,-0.091804296,-0.009101048,0.44699264,-0.029323041,-0.09736256,-0.32143208,-0.39759883,-0.40090612,0.13745178,-0.1773397,0.45271242,0.11723212,-0.3655646,0.82917917,0.022415232,1.0378525,0.04935099,-0.27882168,0.24663676,0.51421773,-0.034264803,-0.03347092,-0.33336172,0.77713156,0.4986314,-0.09357107,-0.02414795,-0.2115663,-0.11721895,0.26570675,-0.18895034,-0.067024775,-0.0066356696,-0.53537995,-0.2898415,0.2689854,0.2593329,0.24782525,-0.1248029,-0.010207702,0.20709014,0.010166745,0.19115588,-0.2486355,-0.23080109,0.27071327,0.15609875,0.1328617,0.034350395,-0.45809066,0.38410532,-0.50357366,0.051429264,-0.13314939,0.19799206,-0.18858284,-0.25259447,0.21101749,0.14607246,0.300871,-0.3177878,-0.31536537,-0.34560037,0.4385128,0.06675729,0.17119418,0.43717423,-0.30342695,0.15876529,-0.003624227,0.35703045,0.84765756,-0.20999296,0.061796766,0.3976556,-0.23892179,-0.51829875,0.44637352,-0.20217413,0.14312439,-0.10048193,-0.09926212,-0.5566832,0.2306734,0.22330955,0.13826858,-0.04699129,-0.5674144,-0.25463885,0.35977653,-0.25240508,-0.23900343,-0.37025124,0.1557414,0.6975266,-0.20367672,-0.3816253,0.18559685,0.22619551,-0.20831965,-0.46149313,-0.068967365,-0.39745688,0.27468917,-0.025485106,-0.3748749,-0.07442251,0.06785735,-0.37016144,-0.019399107,0.09899312,-0.35495645,0.045038838,-0.3791277,0.09237096,0.9704188,-0.20972928,0.27767873,-0.6030212,-0.3539393,-0.9620386,-0.30873048,0.56180006,0.19040439,-0.006753806,-0.6287915,0.070944615,-0.1205737,-0.36100817,-0.08035524,-0.47389075,0.4470423,0.15231833,0.18415347,-0.104631424,-0.6343031,0.13140526,0.058737308,-0.17342974,-0.5047136,0.5090767,0.06607043,0.83702415,0.121131726,0.102602154,0.2501454,-0.5236242,0.07675335,-0.23239379,-0.16120094,-0.5660917,0.051340446,208 +47,0.37618196,0.152169,-0.56795627,-0.39365917,-0.37342125,0.14097399,-0.28100553,0.13418043,0.12760295,-0.23967347,0.14005446,-0.017672796,-0.09037283,0.44900346,-0.14568591,-0.8264219,0.09646367,-0.04898429,-0.63755554,0.39912003,-0.4512071,0.5062215,0.17408086,0.31329745,0.026657335,0.22300376,0.3491186,-0.13358527,-0.027987935,-0.032359224,-0.23445645,0.33034322,-0.59109634,0.11478202,0.02000388,-0.36315614,0.03996043,-0.07146154,-0.2385042,-0.60796946,0.37464324,-0.65381074,0.5479423,-0.15404567,-0.38523832,0.076372445,0.20393474,0.2893716,-0.2711028,0.1528505,0.2512563,-0.34236035,0.008333497,-0.059233308,-0.39912322,-0.71300983,-0.65364456,-0.18302807,-0.8683908,-0.3462811,-0.38508657,0.2534347,-0.3137824,0.11094335,-0.1950481,0.30446267,-0.4022112,0.03971924,0.19327557,-0.13833204,0.15910375,-0.5222124,-0.028390858,-0.103770554,0.1496185,0.13233504,-0.07330315,0.22749016,0.43037206,0.56823754,0.074102685,-0.3940235,-0.33301932,-0.23064566,-0.014138795,0.46731266,-0.026557729,-0.02225507,-0.2832415,-0.10543069,0.34847814,0.25651392,-0.09108207,-0.22401401,-0.014704971,0.13962832,-0.19487083,0.25628236,0.41727254,-0.5420488,-0.30328172,0.39670646,0.4602359,0.122681305,-0.32940656,0.21037564,-0.01731051,-0.35000822,-0.15440059,0.25596315,-0.071755014,0.4868164,-0.032750882,0.23992276,0.9127641,-0.20946378,-0.13008595,-0.33101785,-0.17738578,-0.04342316,-0.022675663,0.0003253445,-0.09975033,-0.5303927,-0.09096055,-0.26639396,0.9538781,0.1356768,-0.6814031,0.27899018,-0.33936584,0.027766835,-0.22009043,0.6435231,0.7038977,0.3549677,0.04200721,0.84077674,-0.62549293,0.04767313,0.026603423,-0.45712978,0.13919923,-0.08630857,0.11325089,-0.47103155,-0.03812377,-0.0026795194,0.05955388,-0.09804921,0.3621283,-0.28160593,-0.06359729,-0.06496817,0.70427424,-0.50986683,-0.016296893,0.57598454,1.0232451,0.87290645,0.05568354,1.1182747,0.33478028,-0.17825133,0.056038857,-0.49559438,-0.36010775,0.17146125,0.33919615,0.16499674,0.29832208,0.084062815,0.17630762,0.50408036,-0.17959459,0.015245492,0.11584933,0.21087626,-0.0032393634,-0.11997926,-0.57694715,-0.22072431,0.23445848,0.09847371,0.069586486,0.11171482,-0.21401444,0.45746005,0.27961397,1.3407903,0.089089274,0.12037479,-0.012826193,0.43818682,0.13177902,-0.04193943,-0.017738104,0.30509058,0.325065,0.06328762,-0.5925127,-0.003374204,-0.37021536,-0.4042719,-0.3730994,-0.45243827,-0.066186994,-0.07572337,-0.5225771,-0.12649938,0.1319834,-0.32858992,0.43042988,-2.556215,-0.19385739,-0.18122259,0.17725424,-0.12909162,-0.23051983,-0.19955501,-0.5745722,0.20120987,0.45652303,0.23876745,-0.60779613,0.5509546,0.33523157,-0.13084751,-0.15017216,-0.56207514,-0.11684817,-0.10181403,0.4073668,-0.040948365,-0.068047225,-0.32777938,0.556939,0.6914037,-0.051966883,0.06583205,0.12115279,0.34988198,-0.04231231,0.58999515,0.22992262,0.52057374,-0.09719606,-0.07387712,0.433176,-0.23838146,0.23804423,0.016822167,0.21273315,0.4643455,-0.4347372,-0.7788672,-0.51710284,-0.24763441,1.0680913,-0.525668,-0.34523422,0.32664466,-0.008988794,-0.11560521,0.017792545,0.30302036,0.045748547,0.12762481,-0.51300895,0.11599898,-0.027493091,0.20314455,-0.110484496,0.029177465,-0.21500897,0.62847906,-0.22547254,0.46421507,0.2299833,0.24902622,-0.02848123,-0.4415403,0.03330083,0.8777295,0.3902916,0.00659921,-0.28438655,-0.25723904,-0.22587559,-0.24958694,0.16608347,0.29978734,0.9039856,0.078538,0.1001827,0.280176,-0.3092749,0.054915108,-0.09537681,-0.41251528,0.14527637,0.027276382,0.3243404,0.40078807,-0.22508669,0.46617603,-0.086634286,0.22677374,-0.1766954,-0.44408208,0.5576399,0.864884,-0.15514973,-0.198367,0.5040159,0.25888836,-0.34116793,0.3914493,-0.6868061,-0.2631948,0.82323486,-0.069861345,-0.3263747,0.071284585,-0.360824,-0.07443759,-0.9174958,0.37640876,-0.073774934,-0.6062787,-0.47047985,-0.28051624,-3.8084908,0.10685985,-0.23659581,-0.0827813,0.06755683,-0.06455331,0.2966415,-0.6119518,-0.45018688,0.046248436,-0.0072403047,0.48292667,0.08287918,0.15401429,-0.28866923,-0.21245815,-0.22996798,0.2968493,0.098475784,0.18552113,-0.019082524,-0.44380718,0.28584158,-0.34144768,-0.5575417,-0.00804483,-0.33785582,-0.5505308,-0.08231736,-0.35560918,-0.16213733,0.80122185,-0.30362862,-0.030541915,-0.29409963,-0.044515178,-0.1910498,0.37415785,0.46161094,0.052779894,0.08343,0.04695739,-0.18020105,-0.54577667,0.12406948,0.13303122,0.3414722,0.2921513,0.10292776,0.22394103,0.65248024,0.34680986,0.052257545,0.63257307,0.17853856,-0.20078593,0.29956096,-0.2931293,-0.14845867,-0.81080735,-0.4077018,-0.2529585,-0.39479938,-0.40407467,-0.17503494,-0.36907497,-0.77547497,0.46849942,-0.01948392,0.38835412,-0.20197527,0.3165115,0.27672094,-0.0017793253,-0.04133073,-0.24103433,-0.35296994,-0.503825,-0.45856774,-0.6665809,-0.6931921,0.19633609,1.1877819,-0.13423517,-0.20959437,-0.08788361,-0.20119104,-0.004629731,0.13117896,0.3535818,0.27567035,0.36863366,-0.1689687,-0.6997933,0.42708644,-0.19218373,0.11048263,-0.65795,-0.2643695,0.5646303,-0.603282,0.42831904,0.3492837,0.2315188,0.22712137,-0.73302674,-0.25231612,0.06716321,-0.26146397,0.49188483,-0.03312424,-0.39039204,0.53259826,0.008947566,-0.05803673,-0.5217596,0.5382039,-0.06675511,-0.37586725,0.12879857,0.3458404,0.03409125,-0.102592215,-0.129979,0.24673508,-0.5635986,0.27367952,0.4884163,0.003934793,0.44334137,-0.08121096,-0.18929718,-0.48331463,-0.14212747,-0.4562862,-0.22365633,-0.06272017,0.18664843,0.17478685,0.24481015,0.039971992,0.40980914,-0.25372076,0.21771827,0.03720235,-0.24552575,0.48047736,0.49517387,0.3375451,-0.45834002,0.519483,0.110241055,-0.077308744,-0.12472074,0.103276275,0.5929506,0.21743926,0.34918427,-0.1254614,-0.18008855,0.29862532,0.66986156,0.28797027,0.31916717,0.12221499,-0.2516372,0.27312815,0.22354792,-0.059401162,0.1687206,-0.09442139,-0.1835039,0.15128043,0.16919395,0.5131453,0.14936483,0.37683672,-0.07732911,-0.12796335,0.36433843,0.099889696,-0.2490825,-0.9012314,0.14846349,0.3949166,0.64483285,0.40636826,0.13513635,-0.1202832,0.38989082,-0.47344822,-0.04704494,0.38483822,0.10602911,-0.38709486,0.64880973,-0.6085186,0.52457106,-0.20056994,-0.0899822,0.13736929,0.17096278,0.23373666,1.0469395,-0.050119724,-0.06850311,0.048246678,-0.34990725,0.22247255,-0.28088325,0.0013652891,-0.45565256,-0.26335695,0.6042367,0.33053547,0.11365388,-0.33176628,-0.033928413,-0.008629642,-0.14050755,0.10205231,-0.16485108,-0.0285002,-0.21199802,-0.46318838,-0.5018077,0.5160162,-0.13635981,0.014285279,0.06753833,-0.36223382,0.2557186,-0.065666646,-0.04952552,0.05824896,-0.42465955,-0.03807188,-0.24489003,-0.5622147,0.40616688,-0.40923154,0.30514008,0.12471181,0.033848334,-0.32179207,0.13506469,0.18284461,0.4986065,0.117260635,-0.13294508,-0.2953063,-0.05112555,0.3483863,-0.2847043,0.10671402,-0.29074067,0.22272234,-0.68105155,0.35267878,-0.27094734,-0.27528733,-0.23184605,-0.2901682,-0.009716418,0.31729013,-0.2358597,-0.05658487,0.17331594,0.15070097,-0.21907449,-0.048543103,-0.32735163,0.2064613,-0.19366266,-0.15894753,-0.05264949,-0.13892807,-0.008719765,0.25358093,0.0837178,0.24211793,0.18338543,-0.1363277,-0.28261128,-0.061528258,-0.060705278,0.26125073,0.08682858,0.05400463,-0.2755536,-0.31109226,-0.2516392,0.45868477,-0.14555411,0.13505024,0.1819183,-0.5232576,0.891824,0.02993904,1.2972248,0.23328264,-0.31817165,0.08471176,0.6157681,0.20656495,0.26359496,-0.28954297,0.8112196,0.5529156,-0.0901531,-0.37417316,-0.2506842,-0.21214008,0.30027625,-0.27274427,-0.3573426,-0.19197492,-0.747696,-0.15054491,0.1388504,0.13825987,0.23281959,0.07560466,-0.15593389,0.13260473,0.20833352,0.64477146,-0.45854235,-0.017636418,0.28788197,0.116447754,0.058064207,0.28904617,-0.3287937,0.40462792,-0.69919956,0.14601052,-0.4961295,0.066184,-0.092708655,-0.2789934,0.28984094,0.003665924,0.25588626,-0.13938695,-0.21838227,-0.21786115,0.71483654,0.2603335,0.29449862,0.7155839,-0.21806237,0.04236252,0.06746797,0.4368866,1.3614542,-0.03239771,-0.18645862,0.20223229,-0.35084933,-0.6411893,0.13253959,-0.29229286,0.0013388582,-0.14319836,-0.5207057,-0.23239645,0.4201981,0.04901535,-0.19362795,0.24837737,-0.40432274,-0.16512838,0.31895235,-0.2930325,-0.26085365,-0.109179914,0.37015358,0.7624019,-0.53027,-0.24316898,-0.085630134,0.44336417,-0.23990332,-0.58644205,0.14804432,-0.18226787,0.5670707,0.12579283,-0.42667162,0.17452873,0.22641955,-0.36188024,0.2116665,0.6457216,-0.42182073,-0.11582552,-0.23349082,-0.15416598,0.94443685,0.12559164,-0.17676339,-0.65621114,-0.37632665,-0.8482307,-0.2952031,0.35647872,0.18355827,-0.12476933,-0.45907986,-0.14488353,-0.14008382,0.06712134,0.17763239,-0.6217798,0.26912928,0.18906005,0.460822,0.054009464,-0.91144025,-0.1548473,0.06377379,-0.23058927,-0.5828532,0.68920714,-0.37490335,0.6119702,0.07782169,0.05431195,0.060969297,-0.46772802,0.46158484,-0.4408371,-0.16911572,-0.8405131,0.02107077,214 +48,0.29571345,0.034651794,-0.5153885,-0.17755046,-0.28535748,0.15973054,-0.06811038,0.12167398,0.11026898,-0.27381092,-0.026238158,-0.21644643,0.020532057,0.45645446,-0.118885115,-0.70604587,-0.029057536,0.08641641,-0.68271655,0.3772372,-0.5738526,0.3727212,0.06406669,0.3762608,0.04054419,0.37814993,0.29202354,-0.15726866,-0.20310055,0.18238828,-0.15302317,0.35492843,-0.584357,0.054392356,-0.009894116,-0.2079677,-0.0009684954,-0.38911214,-0.3206045,-0.55054057,0.4790591,-0.7226972,0.36987054,-0.055400796,-0.23646247,0.15436922,0.049047142,0.25880018,-0.44702238,0.059675857,0.15652597,-0.29920247,0.048044857,-0.099357724,-0.2507106,-0.34605008,-0.5840147,0.055341687,-0.5648146,-0.30750474,-0.2190274,0.16353254,-0.37902495,-0.0073382556,-0.19491294,0.4658497,-0.43065462,-0.037260085,0.3233714,-0.23923188,0.088290006,-0.2587555,-0.11666559,-0.021785429,0.39580673,-0.05628132,-0.10183085,0.31988084,0.30117118,0.49557564,0.0073154094,-0.24994022,-0.22940186,-0.03346581,0.12497255,0.53692913,-0.04506142,-0.15635282,-0.12890534,-0.03462028,-0.1404854,0.19363421,-0.0068321824,-0.48367766,-0.05287802,0.13231187,-0.082437366,0.13906921,0.4770985,-0.38251364,-0.30159622,0.34007943,0.39088666,0.07764814,-0.12365395,0.1418183,-0.025437586,-0.56204796,-0.24607477,0.15730049,-0.19632772,0.6271861,-0.04139226,0.2310549,0.7096653,-0.088979065,0.013555024,-0.34395224,-0.12516409,0.005808994,-0.2507727,0.06415324,0.114989296,-0.31220326,0.059200402,-0.069951646,0.7078074,0.1854766,-0.88279146,0.40267932,-0.44864666,0.12438637,-0.1341489,0.5862949,0.6984887,0.2343646,0.3155136,0.86436725,-0.64877456,0.12000775,0.0036308318,-0.4829694,0.031259242,-0.041662455,0.045057528,-0.44247878,-0.0354928,0.09822804,-0.047353376,0.043100394,0.055816267,-0.3555692,0.086412124,-0.02307757,0.7471693,-0.47719386,-0.044106692,0.6524197,0.96445864,0.733037,0.10106732,1.3177836,0.3835972,-0.21351999,0.20702684,-0.44157666,-0.56941044,0.07850572,0.2969414,0.21112087,0.28834772,0.13940215,0.10569208,0.45828748,-0.3133649,0.16944058,-0.043689687,0.012163755,0.015890196,-0.03082006,-0.38305688,-0.17244913,0.044647295,0.060443953,0.006222749,0.18881978,-0.14370294,0.37613207,0.13277686,1.790075,0.11660169,0.18289188,0.03126307,0.39505345,0.19935954,-0.12802637,-0.2141524,0.3658204,0.35402128,-0.08555068,-0.5324853,-0.01870697,-0.23444554,-0.46011207,-0.19702795,-0.3989464,-0.043671902,0.00059168786,-0.48880827,-0.0768775,0.11127274,-0.26509953,0.4908064,-2.7104897,-0.115974754,-0.13138916,0.2905699,-0.30885407,-0.32463068,-0.31194854,-0.44755802,0.21469866,0.46072906,0.22992572,-0.65027344,0.31407464,0.2303862,-0.19139613,-0.18359044,-0.5218248,-0.010156333,-0.059474237,0.33039472,-0.17303438,0.008088436,-0.1274097,0.27481553,0.58884627,-0.009146713,-0.14138281,0.12392716,0.3631508,0.24030544,0.5189061,0.05365967,0.5449966,-0.101528466,-0.10285472,0.25342274,-0.24337009,0.31184125,0.03337987,0.19822943,0.27929583,-0.44371617,-0.70070744,-0.55465925,-0.4296002,1.1479506,-0.50399435,-0.18263845,0.38650587,-0.041481204,-0.18108483,-0.026563937,0.4731697,-0.02424638,-0.023858324,-0.68046594,0.087193124,-0.081665084,0.123512104,-0.03123127,0.10644982,-0.20118234,0.6052542,-0.18973927,0.3777417,0.41169167,0.21315661,-0.0024055503,-0.4982129,0.14336176,0.84534556,0.25063157,0.12184207,-0.09383465,-0.2315265,-0.103657044,-0.2661916,0.11518919,0.4101397,0.671545,0.0843424,-0.01610455,0.34229475,-0.098653406,0.009898093,-0.09487066,-0.26614752,0.09540268,-0.107051924,0.48674214,0.58371395,-0.25791302,0.38382906,-0.13773128,0.14137816,-0.058552016,-0.43513423,0.5715406,0.9427176,-0.12795666,-0.047003567,0.41888925,0.38149226,-0.3780082,0.2766757,-0.5053065,-0.13489509,0.7648345,-0.20884392,-0.42248094,0.10779049,-0.292229,0.04443147,-0.93048346,0.17951253,0.16201314,-0.24373446,-0.39233518,-0.097938195,-4.0283804,0.05625387,-0.30614546,-0.18230301,0.03448253,-0.063667744,0.18733189,-0.5931178,-0.5048195,0.11530428,-0.048896916,0.44300014,-0.040603176,0.22608328,-0.3433153,-0.039119147,-0.08878934,0.22686993,0.15827721,0.3005615,0.012581665,-0.33635956,0.08243867,-0.37805617,-0.49327466,0.057038087,-0.40637833,-0.5587144,-0.2230295,-0.5043306,-0.30811042,0.7363274,-0.37200323,-0.08860575,-0.20773163,-0.0584157,-0.31121147,0.2852339,0.3378044,0.22878532,0.08686593,0.07962333,-0.18969971,-0.38377714,0.20871527,0.07201236,0.16166773,0.43204853,0.07482907,0.07931625,0.3726606,0.5094452,-0.10696975,0.515439,0.30852437,-0.035442524,0.28365096,-0.54122365,-0.099643946,-0.7286161,-0.4879265,-0.36101496,-0.37398857,-0.63743573,-0.30294865,-0.40404895,-0.72802866,0.39362666,0.00084463507,0.20303869,-0.016723637,0.19593433,0.4285738,-0.14503087,0.03892401,-0.10421727,-0.1784683,-0.5568313,-0.4209014,-0.5830352,-0.68774706,0.24484149,0.88527465,-0.05984572,-0.18526024,-0.10194651,-0.25828075,-0.014024654,-0.06570081,0.2855054,0.30508214,0.2273145,-0.18073334,-0.62679136,0.5936686,-0.10790376,-0.17973766,-0.6974714,-0.0025372617,0.5736286,-0.59260154,0.7533988,0.25348356,0.20838599,0.24397922,-0.48299658,-0.38325316,0.0674093,-0.24154004,0.51434445,0.09299837,-0.62604356,0.40909785,0.20692015,-0.10127807,-0.7091111,0.50641555,-0.052989636,-0.29481417,0.19454645,0.34001464,-0.04872655,-0.12245122,-0.046759464,0.13036142,-0.5281295,0.21541709,0.4809171,0.10044347,0.4505679,-0.07817742,-0.13594344,-0.5427784,-0.06249001,-0.51239294,-0.14456077,0.042308774,0.11727871,0.19140922,0.04776018,-0.049003296,0.4269527,-0.43020132,0.22127458,0.03551726,-0.0927921,0.16096735,0.43767875,0.2597589,-0.5279621,0.5474698,-0.049596637,0.07727145,-0.11450142,0.24667501,0.46698654,0.34098214,0.15103853,-0.10293632,-0.21418917,0.19749668,0.64834887,0.2120658,0.43454722,0.19001175,-0.23988718,0.38503015,0.14574236,-0.0007991418,0.05873005,-0.19127248,-0.061513677,0.07983477,0.25940204,0.3394568,0.15316392,0.41089824,-0.15354052,-0.213795,0.26132077,0.21983376,-0.041663695,-0.801214,0.290424,0.2197408,0.58263326,0.4999137,-0.0053768903,0.09077341,0.30869374,-0.38703898,0.16354315,0.31145424,-0.12136272,-0.46901554,0.5322162,-0.5116687,0.51279616,-0.18574017,-0.06552005,0.123092726,0.31276596,0.1693162,0.78650373,-0.09634583,0.12666102,0.05302555,-0.18318588,0.031330597,-0.28357893,0.077687144,-0.5360081,-0.31807587,0.41842136,0.4122125,0.24180368,-0.322826,-0.056637958,-0.0065278113,-0.079782486,-0.010781137,-0.033232387,0.05888826,0.06887371,-0.5848081,-0.5608902,0.54443276,-0.19816095,0.028830718,0.029815312,-0.30507946,0.28883514,-0.20635857,-0.16788241,-0.0359748,-0.6824805,0.05590867,-0.23568371,-0.50044036,0.31522447,-0.38829947,0.32298803,0.16297029,0.019427046,-0.49610254,0.23977442,0.11230186,0.81243765,-0.004156083,-0.16249093,-0.43856868,0.0016325116,0.37579474,-0.21157146,-0.042238556,-0.3562098,0.015173882,-0.3874189,0.3858665,-0.06871767,-0.15795988,-0.18867604,-0.101831175,-0.009907749,0.52880627,-0.16837423,-0.11803034,0.014477726,-0.0002027303,-0.35625592,-0.026050702,-0.39482886,0.24921697,0.09522641,0.0033865646,0.0849527,-0.0599738,-0.12703753,0.40433946,0.12038685,0.27524146,0.24437742,-0.18543306,-0.30586183,-0.1024752,0.056859124,0.28374347,0.11615546,-0.09761504,-0.22768907,-0.3353832,-0.22502889,0.28144556,-0.17989218,0.1603663,0.19435506,-0.41356608,0.6866825,0.16186948,1.1137288,0.20918304,-0.23670089,0.120152146,0.31165987,0.1508537,0.15652105,-0.32587987,0.80508024,0.7024179,-0.0730105,-0.26440594,-0.2224091,-0.13803175,0.22578499,-0.19539161,-0.1492149,0.011932265,-0.59026206,-0.25983572,0.114722304,0.22559075,0.18005018,0.06477046,-0.12251997,-0.041939266,0.18810129,0.4895721,-0.39309317,-0.17264621,0.40348712,0.12973757,0.13896574,0.2476901,-0.23101854,0.5274682,-0.4799412,0.115824506,-0.5171836,0.05142855,-0.03941854,-0.18653145,0.1821007,-0.0474841,0.36657792,-0.15035766,-0.22755244,-0.3527671,0.6577257,0.24914351,0.3180889,0.6961205,-0.2108912,0.032037806,0.10039022,0.57383716,1.2626265,-0.2123997,0.09693317,0.3505799,-0.24351113,-0.51081187,0.14958945,-0.29854095,0.05196266,-0.22708473,-0.3063442,-0.47608623,0.23318878,0.082343765,-0.09322819,0.107386254,-0.41635013,-0.30166215,0.4591758,-0.3021075,-0.34159642,-0.29631388,0.34324715,0.704069,-0.40368205,-0.2715347,0.06336513,0.16916001,-0.18149048,-0.52701104,-0.002888374,-0.2338897,0.25692576,0.18692252,-0.37848714,-0.017764773,0.3840081,-0.2534323,0.09469223,0.4223658,-0.33697593,0.036341958,-0.121153675,-0.2265847,1.1468087,-0.013577394,-0.03640464,-0.6615405,-0.478547,-1.0726542,-0.47639585,0.42564383,0.15529187,0.042059872,-0.4374007,-0.00012510642,0.03628414,-0.013356354,0.0012644455,-0.44405863,0.40828145,0.1251373,0.42354995,-0.0029800795,-0.72407293,-0.20323062,0.09164055,-0.21269041,-0.5276905,0.4960681,-0.14023094,0.7441386,0.0002935063,-0.022375554,0.20764518,-0.4811644,0.16674095,-0.45039344,-0.19983542,-0.72625357,0.07392794,215 +49,0.44018638,-0.19031775,-0.38672277,-0.1411397,-0.24956968,0.063969836,-0.22423226,0.5797975,0.24169579,-0.386082,-0.15442461,-0.013685938,-0.040400688,0.25944602,-0.3024187,-0.34809294,-0.0023444816,0.08840488,-0.33563375,0.5672705,-0.43564293,0.19411346,-0.041750252,0.39204428,0.25750017,0.17333697,0.07283993,0.0985663,-0.20279548,-0.4304706,-0.09010173,0.41755286,-0.48049062,0.17182848,-0.2714823,-0.32657537,-0.08682577,-0.54258937,-0.42874253,-0.8044917,0.21806642,-0.85920143,0.45714816,-0.046426553,-0.39332706,0.3818681,0.14717758,0.14467758,-0.021503415,-0.17644358,0.081152946,-0.16027999,-0.06602329,-0.0992128,-0.188613,-0.32365534,-0.6174943,0.10004404,-0.4555539,-0.088984184,-0.27547503,0.2107326,-0.26622343,0.03252529,-0.09861842,0.43171233,-0.5009878,0.06604856,-0.009684451,-0.017481204,0.25667825,-0.58515173,-0.26008618,-0.107020825,0.12579527,-0.12720367,-0.2919846,0.28899294,0.34323424,0.46670237,-0.08541573,-0.21337156,-0.3943172,-0.025492985,0.07004597,0.5040152,-0.26180464,-0.6929276,-0.16180652,-0.019328007,0.42101005,0.24979767,0.054132275,-0.119078815,-0.15573297,0.058825772,-0.24816039,0.41615385,0.58543926,-0.24402499,-0.21270134,0.29898012,0.41058558,0.211943,-0.19004235,0.013749689,0.0060351267,-0.5623605,-0.101806045,-0.08372204,-0.14338687,0.5703457,-0.15000093,0.29406077,0.5050782,-0.11615951,-0.06817789,0.20754282,0.040849358,-0.13754451,-0.2915724,-0.22478652,0.28538412,-0.55258155,0.17969775,-0.20177223,0.6852082,0.008263398,-0.8481171,0.3267372,-0.41881877,0.092047594,-0.067329586,0.5405444,0.68157244,0.45817944,0.38155112,0.66674805,-0.29832697,0.0035016537,-0.06721532,-0.28769585,0.057630025,-0.3338108,-0.0806162,-0.4504369,0.03710015,0.09867927,-0.13409248,0.17202665,0.54164225,-0.59423614,-0.11895238,0.30060238,0.62002575,-0.21281213,-0.060247615,1.0655999,1.0802615,1.0062966,0.036726903,0.9929998,0.099697016,-0.0783766,0.20439559,-0.06743522,-0.5674691,0.25737396,0.3634128,0.012589455,0.15800384,0.011463429,-0.1210857,0.40522626,-0.47514075,-0.21709254,-0.13314322,0.20144391,0.11255026,-0.042273596,-0.46117157,-0.32012242,-0.006007258,0.19477683,-0.011366576,0.29729068,-0.30328277,0.5282947,0.015125655,1.4590657,-0.07278822,-0.05188188,0.05445149,0.6085708,0.18726148,-0.15274328,0.020163,0.29905933,0.22088704,0.15445076,-0.43961075,0.011720099,-0.20352358,-0.48555702,-0.05335905,-0.38954994,-0.21224639,-0.07821691,-0.5252148,-0.19733475,-0.14812247,-0.35444325,0.47257257,-2.9181123,-0.15051797,-0.04806762,0.19423157,-0.11803767,-0.4334553,-0.0022155978,-0.50558233,0.4698459,0.38839057,0.43410578,-0.7060148,0.12822072,0.39371386,-0.5373684,-0.12509418,-0.6294956,-0.18660358,-0.018227303,0.4945283,0.12524895,-0.039662924,0.13587716,0.07442168,0.6333956,0.10221111,0.19848748,0.2548631,0.34107918,-0.15919964,0.43777013,-0.08401349,0.40137446,-0.20071971,-0.2534238,0.3938322,-0.37201935,0.2700021,-0.20455018,0.21454923,0.48663148,-0.47186297,-0.8945552,-0.5731898,-0.18844365,1.2409716,-0.12155479,-0.49811804,0.23781139,-0.3164588,-0.28354993,-0.07016357,0.50286174,-0.15802923,0.06012974,-0.66421366,-0.03603927,-0.12551738,-0.02033757,-0.10207352,-0.0034751613,-0.4336778,0.6542034,-0.058342416,0.44087648,0.301927,0.12001906,-0.44920892,-0.54208493,-0.03318789,0.8632798,0.5428047,0.14574325,-0.28241304,-0.14834572,-0.33489868,-0.103496,0.07540794,0.5806804,0.67098755,-0.08288537,0.12513983,0.28916785,0.107365765,0.040497564,-0.12579957,-0.17064841,-0.1019685,0.064728774,0.66055834,0.71291775,-0.15623833,0.35462993,-0.061383132,0.29109412,-0.16879836,-0.47017133,0.2999969,0.91312015,-0.115101576,-0.28973305,0.60657084,0.5072286,-0.11621261,0.44042805,-0.5624094,-0.30892432,0.3694595,-0.08196031,-0.4284115,0.3697591,-0.35381216,0.04784091,-0.8152752,0.39110374,-0.18791929,-0.62205386,-0.59106636,-0.10470618,-3.1070635,0.1083362,-0.21560279,-0.2585539,-0.09862773,-0.36306334,0.25275913,-0.51784736,-0.48681644,0.07567823,0.09547274,0.63961,-0.17998943,0.027746774,-0.19455746,-0.24396305,-0.30979195,0.17257582,0.12215014,0.35068476,-0.23384878,-0.3004774,-0.14782552,-0.1670106,-0.46468773,-0.038441036,-0.4969892,-0.55691385,-0.06666207,-0.38504124,-0.18269716,0.60325617,-0.3261346,0.13384774,-0.24570712,-0.04827132,-0.06617222,0.18042529,0.11394959,0.13793881,0.05818394,-0.09100064,0.21321088,-0.30333886,0.3005316,0.035406247,0.22915697,0.4628309,-0.21196172,0.27767077,0.5097383,0.6614057,-0.2389974,1.0683163,0.3717823,-0.13324738,0.3095337,-0.12684654,-0.3748433,-0.5874486,-0.21046156,0.0025152005,-0.44900507,-0.28416833,-0.04752119,-0.3645476,-0.79306895,0.5353624,0.0069568045,0.22871429,-0.14935657,0.25200006,0.6118521,-0.20722711,-0.09070037,-0.04576534,-0.13908319,-0.5503752,-0.30258703,-0.6594837,-0.51546544,-0.10108062,0.9345824,-0.015635088,0.061844498,0.116714634,-0.0055830926,0.0040028393,0.11070356,0.005441278,0.047890954,0.30681607,-0.06581654,-0.6966442,0.5266475,-0.04908044,-0.20627768,-0.46187016,0.32371166,0.5998117,-0.50003844,0.3846325,0.496001,0.14893073,-0.203013,-0.6174502,-0.05540543,-0.13090742,-0.15885699,0.55261075,0.38570875,-0.8231422,0.561548,0.3240166,-0.18098067,-0.700168,0.4899999,0.012549408,-0.10574006,-0.021029335,0.3286208,0.23391539,0.06957081,-0.16751114,0.20522691,-0.35934302,0.28116447,0.22719672,-0.10631596,0.3068375,-0.2488513,-0.05214797,-0.7479502,-0.0067632394,-0.5307476,-0.40279698,0.15242115,0.031093927,0.05384831,0.12992099,-0.045855254,0.36329755,-0.27649838,0.051888064,-0.05316168,-0.27754566,0.41147757,0.55051225,0.58018523,-0.3169406,0.6292435,0.19148391,-0.12122457,-0.050906897,-0.0057580955,0.37559244,0.014479734,0.3701595,-0.045471802,-0.20263499,0.22306943,0.7722501,0.31178468,0.39752483,-0.05012504,-0.14958969,0.21969827,0.08928617,0.34016022,-0.026987694,-0.6389723,-0.012129478,-0.4674905,0.13232537,0.45031548,0.16021742,0.22349226,-0.013531387,-0.2795764,0.051817838,0.12473016,-0.009274505,-1.441498,0.33702916,0.20061627,0.90459466,0.47701043,0.033811558,0.006519422,0.78597915,-0.18361323,0.09390625,0.46720922,0.16224577,-0.37409514,0.6062411,-0.88511705,0.44514117,-0.036815554,0.09768869,0.04703327,-0.117676325,0.4895391,0.6732971,-0.13856678,0.027978437,0.041637033,-0.32974097,0.13767636,-0.43685693,0.15402137,-0.46467587,-0.1933929,0.72838837,0.4855321,0.35366327,-0.15105866,0.028505277,0.1656132,-0.113223806,0.08501735,0.059179578,0.10664966,-0.28209487,-0.58148503,-0.08408713,0.50277704,-0.10641644,0.17268327,-0.02292283,-0.2079966,0.18382835,-0.08694441,-0.15604195,-0.066551924,-0.56972736,-0.07191628,-0.28759387,-0.4627697,0.5880947,-0.23767509,0.18313083,0.24828121,0.067508064,-0.14487621,0.12569737,0.17006983,0.6970142,0.026044939,-0.059236288,-0.24717112,0.13972208,0.10965289,-0.20486432,-0.2515992,-0.19118768,0.043906957,-0.5419493,0.36755604,-0.16108248,-0.34461018,0.10802855,0.0490105,0.12495576,0.4317048,-0.086933084,-0.2055654,-0.042893205,-0.05704068,-0.20098902,-0.1968077,-0.001119107,0.33625534,0.25477138,-0.07705145,-0.00904618,-0.043427125,-0.15460685,0.34104,-0.081122115,0.40307647,0.23908776,0.0020385496,-0.3233854,-0.046220373,0.07387518,0.5216913,-0.0728175,-0.026615635,-0.23055968,-0.355538,-0.37542906,0.15677328,-0.061270766,0.4182452,0.21451196,-0.09853326,0.7487644,-0.09908532,1.1048942,0.015489116,-0.5084353,0.0923783,0.5019531,-0.05152153,0.0069873296,-0.26117638,0.91948545,0.3244759,-0.09728569,-0.094241485,-0.38873243,0.1590859,0.20517409,-0.13292915,-0.100449406,-0.052400418,-0.67778134,-0.12143346,0.20599991,0.29257077,0.19287461,-0.15479721,-0.07388156,0.38844207,-0.048244696,0.33524638,-0.39166203,-0.15463322,0.34421706,0.3249446,-0.16451764,-0.05692539,-0.5068027,0.28869048,-0.41299325,0.007823937,-0.3546448,0.21336079,-0.33001754,-0.29233217,0.2570782,-0.10071629,0.3624543,-0.3006302,-0.39802945,-0.26361865,0.4471932,0.036497585,0.0074569527,0.3748514,-0.28917605,0.0058606258,0.006535087,0.3368495,1.1037716,-0.37371188,0.016862847,0.3202143,-0.27769792,-0.52015245,0.33314624,-0.38195962,0.23386961,0.12885202,-0.20194538,-0.43324348,0.241767,0.31138635,0.23134503,0.07631134,-0.6489552,-0.102861695,0.23098512,-0.22486502,-0.14658666,-0.37800562,0.015103277,0.5243985,-0.28340587,-0.47370815,0.010940436,0.25418356,-0.19998507,-0.54121906,0.04700795,-0.28005275,0.21864866,0.08299694,-0.4385289,-0.09850773,0.052725367,-0.4476819,0.07075559,0.17630953,-0.26085377,0.095462404,-0.39270163,0.08848757,0.9913596,-0.16249326,0.27281505,-0.4234135,-0.53548026,-0.7426359,-0.36276683,0.21630332,0.21489376,0.09025722,-0.6494327,-0.036384802,-0.23405956,-0.20362127,-0.118244335,-0.30384475,0.49683782,0.16297327,0.3904993,-0.17981823,-0.6697718,0.2332038,0.046061873,-0.06356162,-0.45559615,0.54904366,0.04898111,0.6834713,0.11523734,0.14643377,0.24071416,-0.5475148,-0.005930327,-0.11469738,-0.20270199,-0.62780625,0.111276194,226 +50,0.6699736,-0.08572594,-0.5307628,-0.10676274,-0.40918338,0.14518318,-0.2698749,0.3275053,0.07332748,-0.38356584,-0.19679242,0.03480101,-0.1388365,0.17439432,-0.23059025,-0.8736969,0.020678602,0.102593005,-0.5088482,0.768047,-0.37957764,0.5706767,-0.25259304,0.26650715,0.41305462,0.25979024,0.0828526,0.16002291,-0.22783926,-0.13003933,0.10479738,0.2479823,-0.41254482,0.15982783,0.13564612,-0.312831,-0.063083805,-0.11253835,-0.361347,-0.7418153,0.33008182,-0.5545376,0.54753745,-0.19233412,-0.38037086,0.08784442,0.15369901,0.03434162,-0.13653654,0.06252595,0.16674268,-0.22940463,-0.11113994,-0.17633367,-0.35962552,-0.5589251,-0.6294902,-0.008320849,-0.474235,-0.21110828,-0.2798266,0.3518231,-0.40000036,-0.1323377,-0.03886825,0.5670744,-0.5156316,0.102452666,-0.0788627,-0.29347265,0.07194843,-0.8517965,-0.17128736,-0.094627365,0.041327283,0.109770335,-0.15979564,0.24730481,0.26146552,0.35265642,0.08634281,-0.23934117,-0.59082603,-0.09447522,0.24871269,0.5063592,-0.19705744,-0.3383143,-0.32667035,-0.19518295,0.3310692,0.04979626,0.18400727,-0.46109834,-0.14871788,-0.06678891,-0.23007688,0.39729548,0.5388254,-0.34950888,0.08026048,0.3541984,0.5541305,0.2137107,-0.45518583,0.1226269,-0.1820432,-0.37208277,-0.12084223,0.12374112,0.0313663,0.52182114,-0.19751623,-0.040537372,0.43010733,-0.094729215,-0.04570307,0.0151216425,-0.014370587,0.26126528,-0.21043628,-0.07656814,0.21571541,-0.077924825,0.09278712,-0.3046628,0.6317476,0.030084673,-0.6648038,0.43291128,-0.35635346,0.13954332,0.030802393,0.5925257,0.83691293,0.4963903,-0.055709116,0.7680921,-0.2385232,0.10751581,0.10357195,-0.09932579,-0.13579978,0.091117695,-0.09077048,-0.4809444,0.2586555,-0.21360287,-0.0261999,0.11632464,1.0466002,-0.44067043,-0.15120077,-0.10032089,0.71131605,-0.40838873,-0.14062732,0.79821193,1.0347753,1.0350176,0.026275683,1.0676239,0.36175275,0.0038256394,-0.25251356,-0.3360895,-0.5453222,0.2134847,0.33115733,0.32668382,0.21384452,0.05779086,-0.004532039,0.53599256,-0.28242552,0.048417654,-0.082082435,0.4743315,0.2617373,-0.101903625,-0.37406385,0.038020182,0.3132676,0.11871675,0.15189096,0.28603852,-0.29661983,0.30840126,0.037605572,1.4814794,0.014294058,0.002012249,0.21104436,0.39815515,0.2874248,-0.32785866,0.29508466,0.18995248,0.40010428,-0.20942223,-0.59092176,0.06550807,-0.17851576,-0.6377467,-0.33368623,-0.2290245,-0.23015359,-0.157633,-0.507409,-0.1878646,0.10213227,-0.4159643,0.4733355,-2.4338353,-0.052356414,-0.17900515,0.3630153,-0.08224423,-0.46580335,-0.013521716,-0.38904354,0.4244508,0.3969187,0.31362477,-0.44017822,0.48561156,0.47386765,-0.5074238,0.063522235,-0.5077365,-0.09229435,-0.021269936,0.68017846,-0.046527058,0.018333888,-0.06440814,0.33781898,0.6391751,-0.040387705,0.12666343,0.3373009,0.31426412,-0.12407852,0.5558665,0.0839114,0.56277704,-0.07552969,-0.24937733,0.4909473,-0.6090349,0.03527853,-0.015444834,0.2612724,0.28820503,-0.45641154,-0.8903222,-0.6716393,-0.23903894,1.0453639,-0.3030764,-0.7192483,0.4120913,-0.3469664,-0.33565736,0.14610083,0.31864282,-0.3199434,0.023164518,-0.7689421,0.049210586,-0.10807432,0.20105144,-0.16625567,-0.06404275,-0.4934765,0.8081255,-0.2721218,0.5814199,0.36475083,0.3004269,-0.21333474,-0.46395808,0.014108451,0.9190858,0.5271091,0.08690548,-0.20757379,-0.11759782,-0.29106343,-0.15030798,0.117597,0.8251826,0.47455546,0.03737968,-0.014061112,0.18030956,-0.2722681,0.030851223,-0.27735758,-0.24552892,-0.0842412,0.086342074,0.52562445,0.6835273,-0.22342576,0.4610641,-0.1822299,0.47021973,-0.17791428,-0.5349238,0.37826732,0.88481385,-0.22409754,-0.49641412,0.5008134,0.45483324,-0.21039,0.29143244,-0.6248949,-0.13612786,0.47822857,-0.28038716,-0.2607025,0.2922514,-0.49694598,0.050413713,-0.76303893,0.17651118,-0.27165255,-0.6459615,-0.4348167,-0.39048597,-3.036239,0.0588068,-0.13500431,-0.28583047,-0.06846488,-0.31632963,0.2902934,-0.56614405,-0.59490824,0.021011867,0.098835185,0.4138782,0.117018,-0.053807605,-0.2811628,-0.18423404,-0.17755407,0.3579414,0.008764908,0.47265473,-0.060558867,-0.47935587,-0.13446921,-0.24153346,-0.5559921,0.017413903,-0.5049847,-0.49230242,-0.06580083,-0.4112095,-0.1283825,0.5490165,-0.545062,0.13617423,-0.33610582,0.042894833,-0.17437994,0.08887191,0.0711538,0.32442775,0.1648558,-0.13239768,0.10394441,-0.24986725,0.2434034,0.083283246,0.1203285,0.4419955,-0.15910107,0.04123144,0.3674721,0.68761253,-0.0657483,0.885486,0.47819394,-0.018739033,0.32770878,-0.22663337,-0.30575085,-0.6563922,-0.162179,-0.018549088,-0.48675513,-0.41981426,-0.37452862,-0.3885913,-0.789497,0.3832855,-0.031478293,0.10544315,-0.06965077,0.29717386,0.41431826,-0.07873349,-0.085127234,-0.021563858,-0.22113189,-0.3532712,-0.4182809,-0.6118232,-0.54555094,-0.12277228,1.118508,0.034808394,-0.111753,-0.0077246577,-0.33847886,0.065932035,0.27712154,0.18920681,0.0948559,0.3281886,-0.053571127,-0.66755444,0.38941702,-0.28081182,-0.10891557,-0.56110346,0.23622496,0.50013804,-0.3865728,0.5088319,0.1486178,0.23400754,-0.25940388,-0.73771936,0.022995142,0.08502186,-0.31658974,0.5521687,0.32073623,-0.8392094,0.47161758,0.24588096,-0.12024665,-0.64712954,0.42583364,-0.10345488,-0.6564944,-0.055923805,0.51218724,0.07158296,-0.18440914,-0.24370834,0.4075464,-0.3803469,0.28291088,0.22933231,-0.114537634,0.28386015,-0.2600127,-0.29562935,-0.8561963,-0.0861477,-0.39305907,-0.31793186,-0.02298344,0.11245899,0.1852301,0.06225162,-0.06344396,0.5637156,-0.29412556,0.24059321,-0.2825088,-0.23080772,0.20842057,0.46763873,0.41248223,-0.30553254,0.6469382,0.098572075,0.15049393,-0.09397046,0.13495134,0.54790217,-0.10802357,0.46774673,0.032719024,0.10038465,0.13754511,0.7221841,0.30974233,0.46548378,0.023541942,-0.61443216,0.24163124,-0.0055603515,0.37850362,-0.21489505,-0.53453696,-0.01768063,0.029481022,0.23513061,0.5405395,0.1586816,0.5719905,-0.17972098,-0.355457,0.13847789,0.07870436,-0.07630086,-1.2654521,0.22847308,0.17920266,1.01176,0.6046083,0.11354244,0.104434185,0.37207276,-0.23615283,0.033056214,0.40185478,-0.09907445,-0.24297537,0.2089794,-0.7433544,0.3446904,-0.16307038,-0.06856622,0.25683224,0.03312362,0.50728,0.70914793,-0.12840803,0.007835336,0.07738271,-0.2954189,0.101580486,-0.19701415,0.15892297,-0.51275903,-0.38663346,0.52755016,0.5295104,0.41326937,-0.3449121,-0.066262186,0.21776916,-0.18070437,-0.0120572,0.05114918,-0.030885927,-0.23249425,-0.40369874,-0.45704508,0.4077016,0.12552911,-0.12758894,0.20731324,-0.26863313,0.20768082,0.038416628,0.02820737,0.110189185,-0.53355217,0.092935756,-0.26449785,-0.39340255,0.3319796,-0.40469384,0.19629578,0.2573842,-0.07761839,-0.36840332,0.27685255,0.38227567,0.77078557,0.2721752,0.058883604,-0.28858262,-0.08954139,0.30362555,-0.19758986,-0.17015511,-0.17666918,0.21697891,-0.6656982,0.35486245,-0.30873203,-0.25621718,0.20858285,-0.05662784,-0.12235382,0.388269,-0.15963954,-0.29661632,0.13618961,0.019802304,-0.16425374,0.0128391385,-0.040179826,0.25761512,0.0066252146,-0.20243579,0.0036570374,0.02195441,0.100577675,0.3678719,0.0407765,0.4013238,0.51529384,-0.029852666,-0.45697623,-0.12211442,0.2836491,0.5070205,-0.034956295,0.21988122,0.035866246,-0.57110727,-0.44492334,0.29041395,-0.23700891,0.22504134,0.042113736,-0.5518861,0.6846193,0.17685106,1.2158478,-0.0027912557,-0.4814177,0.093863755,0.70244896,-0.10272772,0.20317629,-0.2506727,1.0185206,0.5884063,-0.34063596,-0.2466608,-0.39218426,-0.026708849,0.26050544,-0.24487658,-0.16325489,-0.080544904,-0.66141963,-0.14246875,0.053186495,0.09551326,-0.01215104,-0.061058376,-0.07602037,0.11327397,0.17925593,0.33324045,-0.47210285,0.106861904,0.2663225,0.109331094,-0.109502725,0.12626943,-0.30425787,0.26607496,-0.52529734,0.33296803,-0.30721116,0.12458131,-0.2242469,-0.2364251,0.34970188,0.10451964,0.17612205,-0.4289715,-0.2197988,-0.22408189,0.49159494,0.13342093,0.13255192,0.54264957,-0.16110311,0.18179278,0.1568841,0.44202363,1.2055292,-0.2337529,0.091935046,0.27623668,-0.4523034,-0.61961544,0.078792095,-0.3690819,0.14412078,-0.18914397,-0.34501934,-0.5468099,0.26488087,0.16239914,-0.0037070364,0.10744938,-0.5915207,-0.27511913,0.46320805,-0.3024295,-0.123204984,-0.20929854,-0.007922672,0.47151458,-0.28736004,-0.48392016,-0.117303126,0.3313936,-0.2838256,-0.6601884,0.14859441,-0.1954306,0.44926006,0.15668203,-0.3793826,-0.17401788,0.3032931,-0.4700408,-0.10543844,0.34757155,-0.3519601,0.12539078,-0.266913,0.09270743,0.8887603,-0.16725634,0.32170352,-0.56291187,-0.5531189,-0.93657464,-0.42985976,0.2546629,0.26367712,-0.17070639,-0.73713636,-0.20519987,-0.56555057,-0.14086984,0.1302796,-0.45041797,0.53129435,0.21823964,0.31977606,-0.10653365,-0.833668,-0.031661183,0.1669637,-0.24963158,-0.4778959,0.5671427,-6.6012144e-06,0.6997578,0.11221884,0.19809192,0.13807613,-0.57277304,0.40525806,-0.12865795,-0.16935815,-0.6493445,0.24668264,256 +51,0.46482682,-0.2367049,-0.41293466,-0.15291327,-0.4199251,0.025199734,-0.22266358,0.26752496,0.22617391,-0.07958986,-0.06590165,-0.051724657,0.0011637304,0.3960813,-0.07011493,-0.60281795,-0.28642103,0.059007086,-0.6624301,0.35830307,-0.6445318,0.33087337,0.08316872,0.34886843,0.057061143,0.53309256,0.26434064,-0.19251762,-0.04737882,0.0076015443,-0.09207915,0.3159871,-0.5401776,0.07440183,0.04099061,-0.1528579,0.06959782,-0.54425085,-0.17446716,-0.57291037,0.08821232,-0.7786742,0.38872322,-0.10385895,-0.16262186,0.108995974,0.12486987,0.34029073,-0.3875296,0.11589838,0.29115504,-0.020507524,-0.043108284,-0.28244334,0.069308236,-0.21026173,-0.33551472,-0.0009095166,-0.4199667,-0.32285744,-0.04025039,0.13072187,-0.21028458,0.03913203,-0.25416666,0.29876012,-0.48579204,-0.13937034,0.36163163,-0.26638207,0.24889576,-0.39328334,0.1516236,-0.08668016,0.39414233,-0.064213835,-0.14048,0.4176896,0.21242101,0.36190856,0.25545242,-0.2418609,-0.25930104,-0.16775566,0.2343054,0.43292755,-0.1822527,-0.3634186,-0.30261,0.0125075355,0.15404612,0.27219683,-0.025796078,-0.26443297,-0.009871243,-0.12498726,-0.20394105,0.38055003,0.43328816,-0.30539393,-0.317423,0.33831227,0.6766889,0.31779662,-0.20623723,0.036299944,-0.0066352617,-0.59263855,-0.15680228,0.15753685,0.021532852,0.34437647,-0.10594675,0.1910197,0.84380895,-0.1525737,0.0011090236,-0.072293505,-0.16596413,-0.12725815,-0.3620416,-0.13092911,0.023127574,-0.48273304,0.030272778,-0.12934862,0.6196461,0.22608763,-0.78343534,0.46277338,-0.5231717,0.14493808,-0.18928716,0.67770666,0.5485704,0.39272565,0.27129766,0.7826411,-0.3730647,0.24472511,-0.062907316,-0.49852613,0.18139118,-0.12736577,0.05337137,-0.5543126,0.15298145,-0.19539957,0.05488514,-0.038656376,0.28912228,-0.5539449,0.016951002,0.11411678,0.7399752,-0.36799267,0.007749308,0.6090783,1.0169533,0.9601267,-0.010719957,1.1175581,0.3025816,-0.26280165,0.2633921,-0.5327342,-0.5781796,0.28869122,0.40969485,0.025435157,0.3679145,-0.15531589,-0.06659803,0.23931454,-0.3038589,0.08667219,-0.07792717,0.24004585,0.09720029,0.02334315,-0.43835264,-0.14196472,0.020644573,0.027158774,0.09189973,0.09765863,-0.21917629,0.37062374,0.0015849881,1.6249243,-0.08991353,0.02677729,-0.014232986,0.533823,0.26522452,-0.16412695,-0.17356187,0.46728095,0.4305319,0.019489288,-0.6127329,0.351027,-0.18086804,-0.5291011,0.002015695,-0.43079373,-0.08088423,0.007121414,-0.42693233,-0.05475898,0.08315399,-0.2927081,0.43594915,-2.75885,-0.20991527,-0.046589278,0.18439466,-0.33271855,-0.18852884,-0.07507983,-0.44837412,0.15257461,0.32874638,0.44687718,-0.6633205,0.5093187,0.50177693,-0.43233573,-0.19770387,-0.6470603,-0.06289446,-0.02570433,0.4772088,0.10467544,-0.061143577,-0.13341993,0.26787198,0.5984591,-0.01087359,0.15765776,0.27132162,0.35394362,0.17400053,0.6189487,0.03724032,0.58908963,-0.19953674,-0.1365978,0.44788417,-0.2213745,0.1694233,-0.17371967,0.082316115,0.35235763,-0.34379783,-0.99681467,-0.6626587,-0.3342143,1.1381836,-0.41695654,-0.44346672,0.27971852,-0.08056223,-0.10029964,0.17221156,0.39595303,-0.075184494,0.015089843,-0.7450279,0.26344326,-0.040278703,0.15122601,0.077522166,-0.01628258,-0.32259184,0.7114165,-0.016213993,0.63124275,0.30539143,0.19982785,0.0192779,-0.40689746,0.10908535,0.6947662,0.23064843,-0.057466183,-0.1425618,-0.24990344,-0.07673451,-0.05604229,-0.08339936,0.42034507,0.75991106,0.06472949,0.17506702,0.22108859,-0.06865473,0.06585522,-0.14160806,-0.23095825,0.10714264,-0.039184622,0.39651322,0.71317315,-0.13628754,0.46354353,-0.33443213,0.37396595,0.016811656,-0.5751208,0.66748655,0.42765853,-0.2301541,0.031966683,0.4579355,0.47130448,-0.30112743,0.43995315,-0.63340026,-0.12694834,0.6054512,-0.1645001,-0.41739073,0.223953,-0.16329339,0.14664727,-0.7593351,0.34200257,-0.25307375,-0.27657607,-0.342424,-0.104836285,-3.7081454,0.18566884,-0.08603631,-0.20661332,-0.11151362,-0.058413282,0.33275333,-0.69775486,-0.5370204,0.06398712,0.20179835,0.4379293,-0.018114835,0.07920765,-0.34323847,-0.05707417,-0.06700005,0.2064612,-0.019922942,0.29337704,-0.14743862,-0.41762555,-0.1521653,-0.073534146,-0.5871739,0.19468161,-0.5529736,-0.442775,-0.038866017,-0.51293176,-0.18515846,0.5437468,-0.24071783,0.006508314,-0.14096302,0.106463596,-0.25100702,0.26176402,0.12026688,0.12553243,0.11041486,-0.014019452,0.06519808,-0.30244228,0.44967002,0.027629638,0.36711943,0.13718583,0.109171785,0.14734262,0.4255401,0.52825975,-0.18198162,0.87777925,0.35134873,-0.18213877,0.30923492,-0.3763429,-0.049793117,-0.5451344,-0.49708974,-0.092148244,-0.45326084,-0.52268565,-0.08581756,-0.31486088,-0.7202763,0.54526335,-0.007864386,0.22469829,-0.08017831,0.1323535,0.53674465,-0.1301582,0.10810583,-0.19521332,-0.15442646,-0.655067,-0.294745,-0.6212008,-0.4525765,0.15854673,0.9888904,-0.30925187,0.052787308,-0.1476585,-0.2916681,-0.04573502,0.011798196,0.0058449805,0.40629822,0.3493739,-0.06593579,-0.6249401,0.44868356,0.017956182,-0.05902959,-0.4378739,0.037936613,0.633434,-0.7205169,0.5850972,0.33453304,0.109032266,0.09191607,-0.5067644,-0.29692847,-0.077737555,-0.233888,0.5867965,0.017772896,-0.63268983,0.48865837,0.27703825,-0.4288522,-0.65132123,0.27945232,-0.056595758,-0.24588422,0.05224684,0.27837065,0.03590451,-0.08822921,-0.2793858,0.19685285,-0.43223888,0.24965343,0.20204443,-0.024833128,0.3101622,0.009889513,-0.3586685,-0.6910573,-0.12061626,-0.41335243,-0.33427957,0.26564425,-0.089674175,0.0023648627,0.020150438,0.040022917,0.43677604,-0.21727906,0.058031604,0.22695696,-0.21218012,0.2753899,0.46340024,0.30504867,-0.37998438,0.43475842,0.16320294,-0.14214797,0.0080047995,-0.07115242,0.40526897,0.040962152,0.326603,-0.15529102,-0.15370935,0.42174202,0.62068844,0.13098432,0.36812958,-0.105207495,-0.20105621,0.47086352,-0.035380773,0.15893117,0.015237302,-0.377203,0.01470235,0.09150314,0.2276926,0.3935461,0.37921622,0.27557886,0.12815642,-0.18540026,0.09854221,0.22108027,-0.14084797,-0.9416419,0.34856313,0.30223143,0.775556,0.534867,0.0120949745,-0.12003088,0.716817,-0.31581363,0.15427902,0.40255713,-0.022672683,-0.64540076,0.66075766,-0.6522582,0.27748626,-0.17457522,-0.019727506,0.17891158,0.07470819,0.35357195,0.6891871,-0.113470316,0.0074631386,-0.04844959,-0.15435502,-0.142802,-0.30277395,-0.017978258,-0.46537954,-0.3432838,0.6362722,0.4081272,0.29857942,-0.14465946,-0.024831975,0.12527621,-0.15946972,0.19739136,0.03830043,0.025384862,0.17400458,-0.57852423,-0.30299023,0.51011276,-0.060733672,0.12028523,-0.2886524,-0.2838521,-0.0574641,-0.39048275,-0.07239424,-0.017299773,-0.4789684,0.005728565,-0.17854902,-0.40518865,0.23690608,-0.17874913,0.124165505,0.07380343,-0.016821517,-0.18647096,0.19327864,0.10450328,0.86022794,0.07702474,-0.22633381,-0.39752805,0.102219656,0.23822135,-0.28617626,-0.0981576,-0.3609107,-0.014767274,-0.48421,0.49575683,-0.12089042,-0.5493649,0.19789335,-0.1645328,-0.04285788,0.5502116,-0.14766201,-0.36877507,-0.05622229,-0.16413145,-0.43070468,0.04833314,-0.25702572,0.23815824,0.33981687,-0.13657176,-0.065460294,-0.19315158,-0.085298896,0.54754925,0.08906148,0.43569216,0.25217342,-0.024662599,-0.36561766,0.088359706,0.26360193,0.41250527,0.19293436,0.098631874,-0.43132025,-0.3481529,-0.24419841,0.17678411,-0.16114438,0.22591713,-0.05458781,-0.21420795,0.850167,0.0318375,1.2384058,0.109256975,-0.27716902,0.12458202,0.43580222,0.009773333,0.12391706,-0.44808713,0.8312756,0.54763967,-0.12757716,-0.16315977,-0.50330794,-0.25836247,0.22743171,-0.28427652,-0.045763686,-0.11292458,-0.6171981,-0.4444923,0.3567767,0.11296899,0.22206351,0.058756232,-0.05756715,-0.06925386,0.08232334,0.391881,-0.52771914,-0.20011449,0.07689929,0.24747682,-0.06026122,0.10701488,-0.46857774,0.3869179,-0.49760768,0.18751715,-0.38655606,0.036379866,-0.20589025,-0.19468689,0.073582515,-0.12226178,0.2742012,-0.22216703,-0.54765326,-0.15881874,0.5173599,0.07933996,0.20199528,0.7102737,-0.28786367,0.18620317,0.17894983,0.48350063,1.1761045,-0.3764386,-0.008719847,0.4242818,-0.33034128,-0.6214805,0.3021846,-0.21011469,-0.14142081,-0.096729025,-0.4580126,-0.42958015,0.2891246,0.11477798,0.044314973,0.086280465,-0.5335342,0.011411641,0.38971823,-0.21548799,-0.23251706,-0.39068314,0.3271431,0.81211007,-0.36392245,-0.38069886,0.10815122,0.24109752,-0.39573663,-0.52059525,-0.1425781,-0.18981034,0.3535235,0.18608537,-0.216961,-0.0025526881,0.1467031,-0.34265295,0.20149335,0.24993066,-0.36663067,0.18247736,-0.079962246,-0.11189526,0.87867737,-0.20122235,-0.13984266,-0.7076607,-0.525933,-0.9802122,-0.4285947,0.29639745,0.119339295,-0.07667744,-0.34632975,0.056991816,-0.12387799,-0.154776,0.0014757514,-0.5689969,0.37879705,0.04450624,0.52647877,-0.24126722,-0.8496916,0.11342663,0.1924218,-0.08915712,-0.6461111,0.6783188,-0.1651873,0.76839495,0.07856592,-0.113268614,0.0421344,-0.3750897,0.026964165,-0.3751325,-0.1960293,-0.8433102,0.15959314,285 +52,0.44965932,-0.012491286,-0.23826784,-0.1366867,-0.31437886,0.101716176,-0.22098011,0.21704859,0.16463405,-0.57991976,-0.033653878,-0.107677326,-0.014138777,0.161564,-0.2535969,-0.7290776,0.14316618,0.049479064,-0.38313323,0.56716096,-0.4356107,0.3760401,0.04324229,0.12789331,0.007785082,0.27588117,0.38987175,-0.058422975,0.0017961413,-0.1523394,-0.15686563,0.24553709,-0.63687915,0.4521041,-0.042616468,-0.23839067,0.13887474,-0.27591467,-0.17623952,-0.5533166,0.15832746,-0.6538628,0.26468623,0.14513141,-0.18974724,0.2782632,0.21895248,0.21468097,-0.11308496,0.07889122,0.13743596,-0.15942061,-0.116549134,-0.2537914,0.09203362,-0.45714283,-0.4159016,-0.0821794,-0.586559,-0.44691956,-0.21304591,0.16307838,-0.32118967,-0.137227,-0.12535065,0.43755835,-0.38789898,-0.17369556,0.26489893,-0.32077312,0.19234887,-0.5288471,-0.16886652,0.053588435,0.20563078,-0.1404899,-0.1856145,0.3630055,0.076297544,0.45964378,0.07842146,-0.28091693,-0.15592128,-0.22324327,0.22324073,0.46088713,-0.22844931,-0.43576038,-0.096295685,2.226606e-05,0.10610615,0.064138375,0.18205222,-0.22534409,-0.08958802,-0.08638117,-0.12738921,0.39750665,0.4835028,-0.46380997,-0.10863851,0.24527457,0.39816368,-0.025452368,-0.08010955,0.0037576593,-0.05999583,-0.3602889,-0.26493955,-0.00798963,-0.061855376,0.47252095,-0.15902916,0.25174177,0.47919813,-0.23205343,0.16702087,0.031545974,0.025633907,0.15825167,-0.20490783,-0.20338032,0.31312552,-0.67995304,-0.1712704,-0.3419224,0.76004934,0.12039408,-0.6308775,0.30422986,-0.4322505,0.036446624,-0.06817872,0.4950326,0.5667689,0.42222828,-0.018100474,0.6815476,-0.5311543,0.055025645,-0.29218072,-0.18313044,0.13442001,-0.10166806,0.17657995,-0.3346434,0.012465667,0.117734134,0.121244535,-0.121423125,0.21223143,-0.6089439,-0.10775768,0.16233835,0.68067425,-0.28705552,0.010785263,0.65435374,1.1696911,0.80739605,0.105092496,0.9369353,0.047718905,-0.10033597,-0.093550645,-0.047277864,-0.4208158,0.20197876,0.40352035,0.7224667,0.1524213,0.06864306,-0.10091931,0.24837048,-0.31371656,-0.20703965,-0.17909564,0.5433512,0.015626295,-0.00011508539,-0.3636312,-0.1492497,0.11454609,0.12494828,-0.016588364,0.3180973,-0.1543846,0.1817218,0.059442677,1.1944697,-0.09306176,0.16196781,0.08307053,0.4066356,0.2634265,-0.08366559,0.13821763,0.26742357,0.20980012,0.11107563,-0.43663025,-0.08834988,-0.1776151,-0.5468403,-0.040024888,-0.36711106,-0.060097806,-0.04992187,-0.43408358,-0.19515662,0.018778011,-0.12562588,0.31406996,-2.9007874,0.007203538,-0.16946863,0.29760283,-0.23910466,-0.22198145,-0.0829051,-0.39019823,0.52698654,0.42982638,0.3816856,-0.5305895,0.30380118,0.458161,-0.37400776,-0.05797123,-0.4941906,0.005290745,-0.22430584,0.46658736,0.018734422,-0.20542446,0.027276723,0.290318,0.49352965,0.084651224,0.19502057,0.1659131,0.14282319,0.00948851,0.3282252,0.12737441,0.3016094,-0.333746,-0.11583507,0.2696861,-0.29163188,0.009271257,-0.14385018,0.026637815,0.22006294,-0.26255026,-0.65827006,-0.5698332,-0.34314194,1.1583049,-0.18830335,-0.59894204,0.26093385,0.07516149,-0.13567972,-0.050909847,0.22916009,0.014075559,0.18931614,-0.66018724,0.16244093,-0.12699786,0.058963932,0.036980562,-0.058486316,-0.6799762,0.70266634,-0.216324,0.433699,0.372119,0.34303904,-0.25484213,-0.42920226,0.06936569,0.94977653,0.48367178,0.08901264,-0.025368657,-0.2250367,-0.03939294,0.01507907,0.3085009,0.6099121,0.7803022,-0.056551732,0.18263602,0.3565455,0.03392306,0.09284076,0.009030728,-0.3693114,-0.011808269,0.0019408092,0.72072214,0.53281283,0.04100976,0.38066864,0.070111565,0.28518254,-0.21614486,-0.48015577,0.34596795,0.67862815,-0.07057515,-0.16978943,0.66014844,0.55292517,-0.05672809,0.48500454,-0.6312628,-0.5221623,0.43226874,-0.22340038,-0.43921274,0.100933634,-0.31987065,0.1335913,-0.58829945,0.465468,-0.36248407,-0.6217348,-0.54384196,-0.24736331,-3.2972555,0.15468323,-0.2585017,-0.16394153,-0.07240133,-0.13673326,0.24045272,-0.6298528,-0.31755286,0.3136261,-0.09814466,0.57621616,-0.117844656,-0.019552348,-0.24303159,-0.30083427,-0.117386244,0.2621076,-0.013908058,0.0765272,-0.028765664,-0.21715108,0.15560842,-0.077294044,-0.33920917,0.1515859,-0.3644693,-0.6034839,-0.13585556,-0.35336605,-0.19133013,0.5932527,-0.34801465,-0.018635504,-0.21215545,-0.040481977,-0.06881818,0.21939199,0.22730523,0.23595786,0.103812926,0.062165186,-0.17007618,-0.30623096,0.29333794,0.15038669,0.33560026,0.416775,-0.16654205,-0.026098669,0.43515068,0.3139395,-0.03537848,0.7586934,0.21206012,-0.09256831,0.36768812,-0.2477442,-0.32966617,-0.5853272,-0.4075388,0.06507135,-0.31284374,-0.31290329,-0.08757134,-0.30750608,-0.65021044,0.47883752,-0.08369504,0.27525824,-0.21102414,0.14523414,0.23619343,-0.10098477,-0.14859757,-0.12457548,-0.06475826,-0.46129352,-0.21891835,-0.7453611,-0.3106704,0.16948691,0.79592633,-0.2851969,-0.08805095,0.1004091,0.15612826,0.14138559,0.08278825,0.07160897,0.0020084828,0.34476697,0.062279567,-0.64731216,0.50712514,-0.18422717,-0.09775225,-0.45721623,0.058964767,0.4952042,-0.6163104,0.37199107,0.3896444,0.1808221,-0.13247778,-0.5993696,-0.1808601,0.061376873,-0.33920634,0.48739198,0.14428738,-0.8739428,0.44878718,0.23705016,-0.47269452,-0.68828434,0.5727393,0.021839783,-0.2501947,-0.012650445,0.2451276,0.20898128,0.036919795,0.088749975,0.21743569,-0.5356067,0.2682557,0.20853817,0.029430108,0.39434966,-0.14283875,-0.23933503,-0.54197884,-0.15858585,-0.52445364,-0.23386133,0.019071031,-0.0989252,-0.14496441,0.40832448,-0.0824069,0.48868418,-0.24479392,0.17941289,-0.0012213737,-0.3607093,0.4819649,0.46699464,0.466466,-0.35226846,0.51018333,0.011515854,0.06013982,-0.2673188,-0.04167296,0.379362,0.090568,0.2335052,-0.14610487,-0.08682843,0.36438978,0.7855643,0.19689384,0.36142927,0.013569582,-0.1467035,0.35497627,0.108921096,0.12727201,0.09811766,-0.3743049,-0.18130352,-0.012788663,0.069879845,0.3550202,0.11703211,0.48836383,0.06712569,-0.2705531,0.09778094,0.17378713,-0.09858515,-1.1360233,0.28502744,0.07738898,0.65261054,0.65832394,0.113726474,0.107746765,0.44346696,-0.18788132,-0.0020478629,0.17911091,-0.0019715354,-0.3368834,0.6213168,-0.58607745,0.28073788,-0.124953486,-0.0069854828,-0.18947333,-0.0023039225,0.35999545,0.72201806,-0.16308215,0.13903534,-0.13868588,-0.1964524,0.067890696,-0.3049494,0.12398377,-0.43416163,-0.3277265,0.62001,0.2826021,0.32879215,-0.070504315,-0.04094824,0.11429809,-0.13239895,0.13238302,-0.03934279,-0.01668353,-0.06016317,-0.42900276,-0.37998968,0.56805146,-0.17061506,0.026203416,-0.059852608,-0.088649005,0.09661504,0.09823198,-0.095547065,0.10931111,-0.53222156,0.16333528,-0.20017375,-0.2638539,0.4860581,-0.32150397,0.08138091,0.16658568,0.058873106,-0.15512474,0.059919696,0.20401281,0.3601163,-0.049789254,-0.25246787,-0.29221907,-0.022372179,0.06809507,-0.07630835,0.022975534,-0.12842008,0.26780623,-0.67334205,0.33319858,-0.061276227,0.003089629,0.28742558,-0.21344957,-0.041974574,0.4512525,0.08090803,-0.05662099,0.253685,-0.15534928,-0.07882127,-0.22170861,-0.24208954,0.13281068,-0.10509639,-0.01795136,-0.018478893,-0.1420052,-0.11802977,0.2877295,0.0629669,0.15711492,0.21849573,0.050747603,-0.44373477,0.15591487,0.08264783,0.26731783,-0.004643023,0.115928,-0.21492305,-0.5294821,-0.30973634,0.10349108,-0.15732431,0.0524356,0.052140437,-0.25784346,0.8722395,-0.009648927,1.0704924,-0.018436775,-0.3639718,-0.08300722,0.46737188,-0.21836588,-0.01271082,-0.25018582,0.9971074,0.54357415,0.004381068,-0.057058048,-0.41578528,-0.017320268,0.22658585,-0.19949971,-0.1531179,-0.13772225,-0.5916587,-0.36581314,0.19524391,0.2881968,-0.03569252,0.047183596,-0.12778075,0.27194738,0.22265172,0.3975864,-0.74236417,-0.026768468,0.26985946,0.21274695,0.16807985,0.1722173,-0.23521191,0.3869121,-0.5537796,0.18405423,-0.19846706,0.00030069053,-0.12627771,-0.31154338,0.11282006,-0.01859676,0.3800862,-0.23687367,-0.38500124,-0.13907385,0.3810464,-0.04898086,0.135937,0.5344535,-0.16501492,0.04967898,-0.117832795,0.44626063,1.0611534,-0.17251709,-0.12824449,0.3643983,-0.39878082,-0.67950076,0.09213553,-0.33238292,0.03812124,-0.04811059,-0.45079982,-0.38311717,0.17165512,0.22957946,0.030199585,0.1392531,-0.5515744,-0.28088325,0.20333359,-0.31705576,-0.39587003,-0.18428764,0.31247306,0.7080595,-0.28174794,-0.06997158,-0.059469245,0.39309523,-0.30169493,-0.6764015,-0.009748675,-0.24449714,0.27886802,0.16078381,-0.13740347,-0.12646283,0.1789324,-0.3620355,0.025721971,0.35268247,-0.17975748,0.04933797,-0.10914438,0.15482977,0.7097374,0.071779504,0.12740937,-0.64090157,-0.45344073,-0.7511924,-0.44520196,0.17939194,0.17452379,0.017766366,-0.4832697,-0.077077255,-0.13902506,0.046384573,-0.14481443,-0.2299627,0.39137694,0.221109,0.3369615,-0.17857711,-0.70918655,0.08056677,0.13129997,-0.021194763,-0.3360501,0.38530958,-0.123219855,0.67620486,0.1264428,-0.117245056,0.023456853,-0.5245162,0.17925361,-0.23397177,-0.2312477,-0.59004503,0.14277215,309 +53,0.45009357,-0.06826473,-0.30222476,-0.13671388,-0.24530937,0.17724206,-0.06168486,0.46605122,0.15272287,-0.40902397,-0.17848852,-0.29855818,0.06474167,0.2935275,-0.17215145,-0.66139877,0.19376224,0.11290436,-0.33860528,0.40233994,-0.49720737,0.5943419,0.19553661,0.14655131,-0.036859002,0.23819372,0.25403905,-0.23310801,-0.0940935,-0.30506286,-0.30934548,0.35095674,-0.67925155,0.14361581,-0.20196016,-0.36265928,0.26232523,-0.47734365,-0.2696553,-0.7306883,0.12130766,-0.6623762,0.6220757,0.116263516,-0.18748668,0.21414006,0.049973115,0.20349748,-0.11663812,0.18193245,0.16468616,-0.14304852,0.01425378,-0.14769092,-0.2966296,-0.65742517,-0.53076833,0.063609414,-0.3911975,-0.35367584,-0.26095837,0.08198275,-0.39122823,-0.004969187,-0.1509873,0.31453156,-0.41460532,0.029891461,0.20704773,-0.22054727,0.16817735,-0.56563103,-0.061735965,-0.13758488,0.110854305,-0.32210696,-0.17720063,0.22504084,0.34516832,0.40138042,0.03328629,-0.3239556,-0.039287496,-0.13143837,-0.04728149,0.69269305,-0.32890666,-0.6295129,-0.053345677,0.069863215,0.22823545,0.22410806,0.08016245,-0.23613296,-0.17039919,-7.2252005e-05,-0.32793945,0.34806553,0.48335966,-0.47555664,-0.27857628,0.24618348,0.38702175,0.09401432,-0.008649753,0.014869377,-0.05166199,-0.5729368,-0.20823562,0.06956543,-0.12239089,0.47483253,-0.16479713,0.18920235,0.7854651,-0.20501094,0.14053103,-0.039116308,-0.06767574,-0.081153676,-0.22014296,-0.22149631,0.25467765,-0.53832585,0.084506966,-0.25348026,0.9064138,0.22128713,-0.6306827,0.3281424,-0.4794782,0.075739056,-0.06457228,0.5006917,0.49766755,0.3423829,0.19748834,0.50103706,-0.4844163,0.068627015,-0.14570703,-0.40950495,0.1014967,0.03040247,-0.066303305,-0.2775025,-0.004308045,0.09728837,-0.08358221,0.14113961,0.27280858,-0.6558589,0.006008068,0.18082234,0.77725554,-0.37305295,-0.15122023,0.69985473,0.8704008,0.750119,0.0014455812,1.4046988,0.35476714,-0.11826256,0.05422292,-0.24990824,-0.47104955,0.19011074,0.4361843,-0.43586433,0.21359883,0.07966452,-0.026029395,0.28801292,-0.24258098,0.023052782,-0.15181123,0.123183444,-0.07332901,-0.23658241,-0.43258697,-0.26856166,-0.036484316,-0.03403132,0.2154623,0.2607288,-0.15480636,0.26862717,0.10076937,1.349501,-0.036339775,0.02781589,0.0536148,0.3078626,0.39769703,-0.03101401,0.13267995,0.35558474,0.3709222,-0.03506522,-0.49027187,0.056252144,-0.19999456,-0.55698514,-0.15924793,-0.28734666,-0.06646349,0.12779517,-0.44840798,-0.10344437,-0.0076200143,-0.10085789,0.58721614,-2.6407447,-0.11162514,-0.031509124,0.25687465,-0.18843529,-0.48556483,-0.13798551,-0.4954117,0.42022848,0.35757926,0.3866991,-0.77487403,0.21839282,0.42461675,-0.41019145,-0.26823223,-0.7084134,-0.042798515,-0.102550715,0.3252015,0.144907,-0.0593163,-0.034783714,0.08505459,0.6165321,-0.09463806,0.06530548,-0.016265664,0.4262998,0.039441526,0.43439096,0.18270566,0.5587867,-0.0022235736,-0.12472873,0.38189372,-0.3427772,0.24787122,-0.081923775,0.15947989,0.23482892,-0.22484162,-0.755123,-0.62256336,-0.49210167,0.9184728,0.061811194,-0.3126794,0.13370524,0.16687159,-0.26945853,-0.022839487,0.41268197,-0.25417686,0.07441811,-0.64414746,-0.021942772,-0.022610188,0.044101812,-0.027350692,0.01516486,-0.4826547,0.5695889,-0.047124375,0.34318197,0.3212886,0.2605259,-0.24737509,-0.48248267,-0.16020392,0.9103038,0.55320716,0.12894586,-0.21874025,-0.18943861,-0.24859825,-0.08831225,-0.029963566,0.52477455,0.8911046,-0.046443164,0.039464414,0.26717642,0.1347881,0.11021476,-0.07434945,-0.31502822,0.15407029,-0.008025162,0.60912025,0.37385786,-0.1826345,0.40524113,-0.086364985,0.57046914,-0.15301526,-0.4800512,0.4114769,1.0659993,-0.16597562,-0.007443847,0.61145544,0.35785848,-0.24757972,0.3756895,-0.68408704,-0.28957075,0.62956285,-0.20193385,-0.42818362,0.2927412,-0.2307441,0.0408725,-0.8623804,0.49758792,-0.1518028,-0.44207442,-0.48926395,-0.17849721,-3.5541794,0.1340473,-0.22006118,-0.009874959,-0.09830075,-0.17534234,0.109057516,-0.5207662,-0.27300292,0.17079651,0.13347554,0.46745878,-0.04672323,0.13992839,-0.34506708,-0.30760977,-0.22458172,0.2512135,0.026048433,0.24589415,-0.15487003,-0.2895883,0.113185115,-0.25903058,-0.4875038,0.18309629,-0.6801925,-0.4676381,-0.19158365,-0.651128,-0.25522867,0.74307615,-0.39421204,0.04966822,-0.1190694,0.101040624,-0.13957387,0.3528782,0.20223917,0.13682826,-0.068588145,0.026400814,0.053386703,-0.37945807,0.33800358,0.21951431,0.39384073,0.3194284,-0.1229673,0.04318403,0.4474368,0.43249297,-0.04022055,0.70634055,0.3184141,-0.106138915,0.41483378,-0.22813523,-0.40759218,-0.5693715,-0.5087138,-0.030261658,-0.39077312,-0.3806951,-0.17878455,-0.32247615,-0.62487686,0.5190778,-0.017060585,-0.047630146,-0.15276599,0.25718677,0.3670417,-0.23544541,-0.11420581,-0.041044,-0.03179808,-0.3963755,-0.33348745,-0.62890923,-0.49652103,0.10322596,0.85085267,-0.15825775,-0.036986645,-0.17917001,0.21328667,-0.03770163,0.011467308,0.06304647,0.046306007,0.32276875,-0.27304718,-0.64932853,0.59940565,-0.10991657,-0.3348916,-0.5863997,0.15451086,0.6529668,-0.7040514,0.51104546,0.46249935,0.019284993,0.02344076,-0.55284315,-0.2322242,0.1318674,-0.24942887,0.4107251,-0.046291843,-0.60866034,0.49953887,0.36326274,-0.3689088,-0.57072544,0.6033034,-0.009004949,-0.37964648,0.12277734,0.35687992,0.030061945,-0.027724836,-0.12516646,0.2062802,-0.58227694,0.258398,0.25961232,0.10537677,0.5381402,-0.051779196,-0.30264783,-0.87184817,0.06717482,-0.44102353,-0.3506274,-0.04628554,-0.033246286,0.018844858,0.37654954,0.018103473,0.40907568,-0.40293592,0.14624067,-0.13311419,-0.28044286,0.4007616,0.34791195,0.38809556,-0.2101185,0.5296248,0.07094013,-0.09711871,-0.067367494,0.14543515,0.5406311,0.076235,0.24884138,-0.05555884,-0.13769364,0.36070973,0.8068502,0.15595952,0.31933326,0.16412756,-0.08633782,0.27429813,0.14262846,0.13109525,0.25312978,-0.33952713,-0.10744174,-0.1313372,0.019287907,0.5694628,0.13133045,0.25691658,-0.06914228,-0.34903485,0.13200767,0.18542938,0.20827937,-0.7688954,0.12729366,0.12867428,0.64974976,0.37789226,0.09368623,0.049466647,0.518689,-0.2522604,0.16868575,0.19726202,0.0153948255,-0.472655,0.5729084,-0.5785444,0.4197085,-0.030367803,-0.02839464,-0.054569557,-0.13382638,0.36665097,0.930304,-0.18922088,0.12501095,-0.038570385,-0.16295408,0.14267582,-0.49542975,0.18173906,-0.33538902,-0.24961981,0.7441577,0.38446438,0.26618373,-0.18198623,-0.0038016587,0.24432805,-0.18463004,0.017991245,-0.012919322,0.19630182,0.0552743,-0.42257783,-0.27424106,0.62330395,0.0056038685,0.061844286,-0.10208309,-0.22892688,0.3142891,-0.23849052,0.008299299,-8.698553e-05,-0.70694304,0.07742496,-0.37418348,-0.54870766,0.42904845,-0.12799823,0.21963279,0.17272255,0.06312966,-0.13105272,0.30844185,0.28324676,0.80602133,0.06444504,-0.14927867,-0.39107436,0.19588856,0.18391594,-0.3124929,-0.14973302,-0.17476827,0.0869147,-0.6086776,0.3107036,-0.043271847,-0.26147363,0.072592095,-0.1908266,-0.09546764,0.40038958,-0.105132535,-0.20433578,0.21339774,-0.14166185,-0.14353539,0.042982057,-0.13016303,0.280127,0.23643754,-0.09933333,-0.03691629,-0.23981181,-0.19428957,0.2906858,0.019796804,0.33016783,0.16375537,-0.010773741,-0.41333294,0.011893913,-0.0054832846,0.31755117,-0.21315816,0.020036556,-0.16100064,-0.47323555,-0.2877294,0.008797161,-0.1245698,0.2464447,0.12245832,-0.2828,0.85135514,0.08623305,1.1602904,-0.056516826,-0.4333714,0.029935066,0.5272542,0.03043868,-0.008473655,-0.3567948,1.1925589,0.586407,0.029684048,-0.20505527,-0.22011986,0.036235776,0.18258825,-0.19691607,-0.15375079,-0.05018353,-0.59260917,-0.4178568,0.33024853,0.27654168,0.112610996,0.07613186,0.006979188,0.29639333,0.1512401,0.4378472,-0.69163704,-0.081369944,0.21000972,0.31169292,-0.030939024,0.18403721,-0.4187033,0.50728476,-0.50606656,0.18318686,-0.38556826,0.1260441,-0.31537756,-0.1623072,0.23732865,-0.035936065,0.30916446,-0.41894728,-0.38649967,-0.19207829,0.27592447,0.061804995,0.2859637,0.69608414,-0.23621833,-0.02074257,-0.07064095,0.63728374,1.1616383,-0.22162893,-0.10061358,0.5868689,-0.45523158,-0.5527356,0.22144678,-0.25771195,-0.011083964,-0.08529285,-0.30115372,-0.32341504,0.28762916,0.12953356,-0.03723654,0.0076028313,-0.5392165,-0.048483506,0.4160425,-0.3981595,-0.29500347,-0.3455663,0.59841496,0.85018843,-0.3248198,-0.32908523,0.023393538,0.28483772,-0.39997125,-0.72439146,0.0026414096,-0.18600681,0.540084,0.08128621,-0.1913262,0.06865581,0.0128724985,-0.3026981,0.08364965,0.4055968,-0.3854611,0.1021399,-0.196849,0.08237379,0.84925777,0.0029041432,-0.0817722,-0.7245099,-0.4327031,-0.8835263,-0.57372236,0.64858866,0.330574,0.066818535,-0.52738976,-0.1328676,-0.103529945,-0.12839971,-0.094977595,-0.20779794,0.39713103,0.16293114,0.51589006,-0.23729303,-0.8834529,-0.03957243,0.090318225,-0.18162885,-0.51154315,0.35015213,-0.0044746622,0.8398516,0.1955658,-0.118538424,0.4040133,-0.42962605,0.07115931,-0.35850054,-0.19075301,-0.8104645,0.13269085,322 +54,0.54617673,-0.09075162,-0.5790001,-0.041971,-0.3084819,0.20040563,-0.059659485,0.52765566,-0.014686243,-0.4314536,-0.12093005,-0.04926346,0.00668101,0.26225096,-0.27041405,-0.42821002,0.068773866,0.23943883,-0.49352163,0.5942731,-0.3267723,0.4303679,0.014040172,0.18032883,0.074856564,0.36431083,0.11522086,-0.07294778,-0.2842869,-0.22193994,-0.15919329,0.43084133,-0.5058415,0.12711139,-0.18775244,-0.38434136,0.03787016,-0.43225774,-0.3479367,-0.63680017,0.067223296,-0.63020515,0.6370315,-0.04869181,-0.33421516,0.38253307,0.13725503,0.13332446,-0.104348466,0.02684913,0.03722384,-0.05352458,-0.10735296,-0.35828364,-0.16124037,-0.49657816,-0.4979023,0.09912151,-0.49107733,-0.13355424,-0.17392753,0.09222113,-0.21729057,-0.0018935129,-0.16610521,0.5075653,-0.4684767,0.16065317,0.028596528,-0.03287751,-0.010792773,-0.5628239,-0.115152374,-0.07867257,0.22215036,-0.18445939,-0.102773935,0.19958854,0.29064053,0.43774188,0.0097880075,-0.11243374,-0.2690094,-0.11477858,-0.01605061,0.48926258,-0.27331144,-0.49566132,-0.06380146,-0.06942113,0.19848207,-0.0064768344,0.12943704,-0.17727375,-0.12825541,-0.1684976,-0.2914902,0.29545072,0.4349925,-0.4874851,-0.20152695,0.38268328,0.3692718,0.17802595,-0.22051838,-0.019707877,-0.12185197,-0.4691687,-0.18592669,0.060279593,-0.16632524,0.5814414,-0.10216656,0.30922776,0.5921024,-0.06539685,0.04869257,0.13107611,0.109742306,0.10459126,-0.17052992,-0.17472053,0.12951683,-0.37543708,-0.03469865,-0.099868566,0.79549724,0.045089383,-0.770041,0.35019335,-0.4895205,-0.09547,-0.07251771,0.38319695,0.45225516,0.5472707,0.096879974,0.58122337,-0.28513643,0.050808348,-0.02133432,-0.35025883,-0.022241399,0.090906255,-0.22316751,-0.55895627,0.215005,0.13366795,-0.05219724,0.045983475,0.48226798,-0.52981377,-0.15352254,0.1839187,0.7912583,-0.35921115,-0.26319927,0.6848682,0.88328755,0.9354446,-0.040858872,1.0220995,0.19597992,-0.09079829,-0.011400282,-0.27971154,-0.42140192,0.20922443,0.27438828,-0.15772535,0.20877743,0.035581224,-0.11183542,0.28207538,-0.07395863,-0.09103511,-0.1723127,0.21410985,0.14180677,-0.16447712,-0.38884026,-0.46155167,-0.012227368,0.0709416,0.21351135,0.24978638,-0.18723822,0.33205637,0.19660047,1.656131,0.0067629963,0.103263974,0.111513674,0.41149515,0.31693617,0.02645339,-0.07326536,0.30724913,0.19654351,0.13717234,-0.42630786,0.094164886,-0.13976306,-0.70491266,-0.10333636,-0.3163254,-0.22913325,-0.18153143,-0.661065,-0.22426862,0.042854898,-0.22036609,0.49801403,-2.7001247,-0.06788705,-0.075606495,0.30935243,-0.21606383,-0.49843898,-0.19468974,-0.3100067,0.37747884,0.2976653,0.47353673,-0.6105989,0.59604764,0.3429035,-0.32219693,-0.25444585,-0.41768906,-0.11238602,0.019182695,0.36449787,-0.031365886,-0.017879948,0.15137817,0.10064475,0.4626054,-0.39935243,0.16381213,0.21838546,0.26585695,0.032143705,0.24584958,0.1101412,0.5607338,-0.14345992,-0.2588056,0.3489927,-0.27250835,0.2619351,-0.034100734,0.18156365,0.29932746,-0.4680675,-0.9495981,-0.558509,0.036463447,1.1256723,-0.14998217,-0.2732846,0.15258817,-0.10283857,-0.3884909,-0.030383341,0.23623195,-0.16045517,-0.0049269106,-0.6702073,0.12257974,-0.10607032,0.17871019,-0.0965797,0.04405916,-0.47042823,0.53444046,-0.06314641,0.65833974,0.29914588,0.17224449,-0.2206247,-0.3779953,-0.04850819,1.0362949,0.4693571,0.1277784,-0.20169538,-0.19088939,-0.31958544,0.040348265,0.09058785,0.53352916,0.70663846,0.1278168,0.06696987,0.054904938,0.0045837983,0.13896894,-0.17923385,-0.25504065,-0.04524288,0.06902448,0.5381586,0.4655785,-0.27027887,0.49479762,-0.17365691,0.39793068,-0.1312856,-0.491417,0.4571346,0.85929966,-0.29838914,-0.3244316,0.5231278,0.5730599,-0.26131836,0.2874472,-0.5866959,-0.4112196,0.3860857,-0.24603495,-0.24713482,0.36525294,-0.19185896,0.14782813,-0.92170537,0.3566167,-0.32596278,-0.4551863,-0.32827336,-0.14320157,-3.5996742,0.22095919,-0.11164273,-0.11939725,-0.15176629,-0.19667134,0.16730347,-0.55781865,-0.39117855,0.09581977,0.11210506,0.57634413,-0.0015874077,0.14076644,-0.14404921,-0.43271804,-0.11183867,0.29460168,0.017389886,0.39005265,-0.16479562,-0.45885074,-0.04688192,-0.19417636,-0.47668323,0.12065888,-0.669367,-0.46126226,-0.091195695,-0.5441342,-0.32043117,0.6008828,-0.38012466,0.058407776,-0.25627655,0.038466915,-0.10995005,0.20287019,-0.0015228912,0.05881109,-0.005072508,-0.07466085,0.17005962,-0.25801915,0.12494526,0.121935874,0.28197467,0.38298455,-0.025021926,0.20077282,0.50602,0.56836826,-0.023404844,0.7758681,0.38463572,-0.12704377,0.3831898,-0.20222774,-0.26537317,-0.6316732,-0.49934822,-0.048670348,-0.33889997,-0.26712582,-0.091620415,-0.3053419,-0.74090344,0.6167157,-0.019598573,-0.030167341,-0.084765546,0.44844276,0.4988338,-0.27071622,0.014804428,-0.08983956,-0.15974686,-0.45388392,-0.3106269,-0.6679993,-0.34103465,-0.06960145,1.157066,-0.3326465,-0.06418523,-0.0730318,0.04102951,-0.07096065,0.13192554,0.20049185,0.20608357,0.44367638,-0.35476294,-0.6114534,0.4403726,-0.3623554,-0.31187624,-0.2899813,0.17733333,0.5374782,-0.617303,0.43486923,0.42312056,0.1472333,0.046174124,-0.58345294,-0.026537925,0.09613629,-0.19401424,0.33304358,0.29225612,-0.8235501,0.5158567,0.2934343,-0.23617122,-0.6809951,0.64591753,-0.089271426,-0.44433123,-0.0014771484,0.4057707,0.12099845,-0.090511836,-0.28188384,0.17231992,-0.5051152,0.2633792,0.16212934,-0.038148932,0.2866384,-0.30028346,-0.16691259,-0.7090664,-0.060525596,-0.35929048,-0.45357984,0.20525813,0.07442574,0.11689471,0.118487485,-0.065692,0.4687509,-0.62440264,0.032478966,-0.044204246,-0.2679515,0.3895862,0.32816014,0.51396626,-0.30414605,0.45194897,-0.03161571,0.021666098,-0.077396676,0.1656821,0.5001634,0.0026373267,0.31670278,0.023950405,-0.16945738,0.3219824,0.66188437,0.28241313,0.48028642,0.00664822,-0.2782483,0.18737966,0.05152401,0.10604368,0.118709534,-0.3322817,-0.15187478,-0.13204053,0.12051256,0.59046435,0.1745393,0.2865821,-0.13794726,-0.15998293,0.07852009,0.24994077,-0.034726374,-0.9998122,0.29759112,0.11298844,0.6624196,0.43441835,0.13732915,-0.07829224,0.5480266,-0.32310307,0.20780629,0.28374398,0.02749221,-0.5081047,0.48785007,-0.62245214,0.39859354,-0.09704194,-0.016060358,0.14667656,-0.15423924,0.38539216,1.0391297,0.042380974,0.07209727,0.11112858,-0.40191442,0.0030593649,-0.31970865,0.018025182,-0.44005942,-0.25299135,0.7485254,0.43295035,0.32457507,-0.12515908,0.014994246,0.12421009,-0.14274925,0.0623557,0.038295776,0.44734502,-0.13127148,-0.55539155,-0.27591962,0.59509337,0.027063392,0.025443979,0.14125918,-0.30603588,0.36941367,-0.07310804,-0.015497319,-0.047503777,-0.53543687,0.09715715,-0.26234898,-0.3120916,0.34658134,-0.23574556,0.18737854,0.10878021,0.09656747,-0.3488757,0.341015,0.2642147,0.57465315,0.021865658,-0.24066357,-0.35863304,0.2611534,0.1503464,-0.28809184,-0.2123734,-0.27466294,0.22897848,-0.6458071,0.23899762,0.055975534,-0.18956093,0.055171933,-0.07429778,0.04882365,0.3464781,0.046219807,-0.06245204,-0.053969707,-0.025380768,-0.29407713,-0.13565844,-0.15441456,0.1711405,0.20953959,-0.2444736,-0.10432087,-0.033635627,-0.011999946,0.34100592,0.077648826,0.38081074,0.47697145,0.17253019,-0.4006669,-0.01677395,0.15057369,0.47500673,-0.19960791,0.02974265,-0.34704205,-0.37047747,-0.20361988,0.26734683,-0.28994086,0.21085837,0.20471567,-0.08067276,0.97802436,-0.083405375,1.1507212,0.08392388,-0.29965246,0.13027324,0.4141021,0.06921664,0.057642348,-0.4072528,1.1212467,0.5615003,0.018702019,-0.13425632,-0.26300943,-0.06096808,0.0697003,-0.26468354,-0.19553453,-0.102434814,-0.5728244,-0.34940594,0.25136524,0.16098124,0.23345283,-0.02067036,0.14937927,0.24069817,0.1515772,0.25223002,-0.5947392,-0.12973094,0.31807166,0.26168936,-0.11662132,0.18857503,-0.54193854,0.3870977,-0.62848157,0.0549308,-0.2617649,0.1520094,-0.16849227,-0.28870508,0.2205419,-0.022701517,0.35043353,-0.3749283,-0.32345292,-0.24539995,0.2917217,0.038253963,0.045333162,0.59757054,-0.25455597,0.16678327,0.050863106,0.5215932,0.90465367,-0.19989747,-0.11144165,0.42270252,-0.32350516,-0.6818217,-0.011872277,-0.24631718,0.2092887,-0.19186401,-0.15240031,-0.46561712,0.43216568,0.17997748,-0.019423373,0.011452043,-0.47050288,0.039373532,0.51786554,-0.35936004,-0.20190963,-0.20979379,0.28087252,0.74554145,-0.3179274,-0.31575057,0.03267587,0.29411113,-0.1356104,-0.613625,-0.012667857,-0.35884652,0.28134233,0.20847967,-0.32018137,-0.08919047,0.025305215,-0.31857675,0.14976388,0.51673704,-0.22443289,0.049926743,-0.44774586,-0.014446616,0.8562203,-0.07917392,0.14106254,-0.38420588,-0.54989946,-0.7904168,-0.39393967,0.33621913,0.13311608,-0.07774671,-0.6413522,-0.059918493,-0.19200464,-0.4491699,-0.10213144,-0.20057794,0.4538679,0.15457672,0.19959292,-0.060301915,-0.86663735,0.15804172,0.033081453,-0.18342793,-0.48993054,0.43991923,-0.13749692,0.9086578,0.11507535,-0.024597013,0.42568767,-0.5681301,-0.06423257,-0.3204435,0.01977292,-0.66735446,0.13686144,337 +55,0.5374982,-0.1569744,-0.5738089,-0.13514352,-0.2255387,-0.055583645,-0.17691877,0.61396873,0.17771862,-0.45563763,-0.06594219,-0.13466589,-0.03199487,0.38727817,-0.14384912,-0.6593915,-0.07759872,0.0964347,-0.54363286,0.48600394,-0.4380411,0.186434,-0.08555543,0.44871098,0.22776939,0.3014164,-0.052942917,-0.05648671,-0.080787696,0.0011901706,0.09701577,0.100097045,-0.68651116,0.08361436,-0.10157156,-0.392454,-0.1390262,-0.51960516,-0.41141802,-0.75572914,0.37117332,-0.7192755,0.51210225,0.055744864,-0.22918579,0.01772958,0.0065906383,0.4483801,-0.28277653,-0.003086187,0.106729396,-0.0099784285,-0.00031088293,-0.10674423,-0.18583064,-0.2607861,-0.55068445,0.044488557,-0.38594562,-0.14527684,-0.06518297,0.045215275,-0.30149797,0.0920794,-0.10247111,0.5186775,-0.3820355,-0.052894056,0.45911926,-0.09537995,0.30749625,-0.46413213,-0.06367393,-0.17553115,0.2525088,-0.18248196,-0.33924985,0.3950156,0.15248969,0.50392133,0.03785745,-0.32237554,-0.28378665,0.008020431,0.17027837,0.4187185,-0.31401405,-0.45130664,-0.12637344,0.088967845,0.13322663,0.21643433,0.1694883,-0.27960777,-0.15014932,0.12668952,-0.19891153,0.33686662,0.56535226,-0.17186396,-0.3067302,0.24256259,0.5792286,0.22898135,-0.03842303,0.1934515,0.1203171,-0.60592127,-0.3025927,0.10955398,-0.07162394,0.2590987,-0.08203316,0.21805526,0.72948474,-0.25454846,0.060549207,-0.045004733,-0.12703753,-0.0021803528,-0.40381324,-0.34741357,0.21148133,-0.42613196,0.2889282,-0.13741136,0.784644,0.24849313,-0.81257945,0.244178,-0.68741363,0.18174314,-0.21284103,0.56949794,0.8035209,0.4438437,0.22258888,0.7085111,-0.40021697,0.20925052,-0.11618219,-0.34439456,0.070405774,-0.22024676,-0.014114283,-0.3864832,0.00994505,-0.1319988,-0.14703166,0.15377866,0.19468763,-0.5360964,-0.08609586,-0.0016985629,0.85558516,-0.2903066,-0.043961585,0.79200083,0.83797944,0.92920375,0.15289477,1.0975561,0.21471255,-0.25260493,0.408292,-0.22676553,-0.92213356,0.3831539,0.26644456,-0.10641527,0.2826931,0.053783305,-0.06978202,0.41803133,-0.39205816,0.24410799,-0.2310057,0.21889737,0.1425367,-0.33470333,-0.21635596,-0.19100499,-0.1419815,-0.039204128,-0.059503913,0.2453951,-0.15814663,0.33237857,-0.040430892,1.8295555,0.08072075,0.11058675,0.08559807,0.48579842,0.16062315,-0.19305569,-0.1831169,0.12719959,0.35232174,0.12946975,-0.5912903,0.15696898,-0.17354004,-0.46471682,-0.13596475,-0.34777695,-0.01594117,-0.30648255,-0.4899587,-0.18214533,-0.13091177,-0.08949603,0.3635041,-2.5577912,-0.22979274,-0.028402783,0.30903673,-0.31359148,-0.31698108,-0.1755209,-0.48003033,0.43715757,0.34754813,0.4120468,-0.6445106,0.5435105,0.39411643,-0.5301697,-0.028508725,-0.62511146,-0.20254692,0.15363464,0.12259179,-0.0015524104,0.016866237,-0.010358579,0.13363142,0.46207762,-0.15866582,-0.040615402,0.21901889,0.38605937,0.051517516,0.5242357,-0.1295561,0.5812569,-0.41612536,-0.20720217,0.28287363,-0.3976431,0.10992458,0.0918802,0.06647638,0.31886733,-0.5574237,-0.9862287,-0.6564143,-0.23409177,0.9637566,-0.11019326,-0.31347483,0.30069026,-0.4086877,-0.16182208,-0.14813836,0.4171299,-0.038336348,-0.04218044,-0.8581822,-0.047132023,-0.21604718,0.21848215,-0.012740953,-0.0025916193,-0.3344173,0.5414924,-0.11221254,0.48048115,0.45259565,0.15765196,-0.1766367,-0.5257673,0.14883167,0.9076756,0.2707683,0.19551165,-0.31083417,-0.1432962,-0.397178,-0.038391117,0.026047979,0.47369337,0.8299891,-0.12715048,0.1974329,0.24504393,-0.028145295,-0.019030832,-0.091178596,-0.3053538,-0.1518732,-0.11826022,0.5430417,0.7063383,-0.2637635,0.48494786,-0.045231137,0.46085197,-0.18495406,-0.39515424,0.54252946,0.7768482,-0.17526394,-0.30172852,0.50695133,0.2921263,-0.3095997,0.46651927,-0.52034175,-0.15807974,0.4306833,-0.14753185,-0.35809135,0.31531113,-0.31067953,0.1557641,-0.99528503,0.30816942,-0.3308446,-0.22862741,-0.5654056,-0.22074765,-3.0638106,0.13340606,-0.20014352,-0.22436792,-0.113426775,-0.068310335,0.18532875,-0.53024876,-0.7328658,0.07943588,0.06001709,0.7830064,-0.080519974,0.13907579,-0.20811465,-0.14495699,-0.35626772,0.057573713,0.2684447,0.3101433,0.029462665,-0.47490993,-0.29675174,-0.17915346,-0.5248377,0.19954675,-0.5353439,-0.50001115,-0.15047485,-0.5122545,-0.30690968,0.73050094,-0.1744321,-0.051361144,-0.13745922,-0.075784,-0.04949576,0.4714761,0.16387813,0.08161456,0.15237041,-0.0719704,-0.041368622,-0.24290696,0.13548926,0.03182042,0.4089855,0.21363142,-0.19967899,0.292734,0.5654792,0.8470549,-0.11487935,0.6929219,0.5766893,-0.086749256,0.409958,-0.3664053,-0.34426332,-0.45101783,-0.22592081,0.038655587,-0.3580659,-0.51177365,0.01575447,-0.41225266,-0.76236105,0.5027045,-0.0821743,-0.054456495,0.04747537,0.10655588,0.360676,-0.2452591,-0.0942703,-0.11659195,-0.02489125,-0.50982326,-0.20788349,-0.50380236,-0.58803725,0.048173912,1.2562605,-0.12119748,0.0077357106,-0.009973913,-0.26598108,0.016378637,0.03007792,0.01725354,0.26880983,0.39632002,-0.13009131,-0.5925338,0.4575322,-0.1919098,-0.29474708,-0.6672596,0.09803299,0.68284225,-0.62801516,0.47443062,0.15149513,0.11447207,-0.072198994,-0.49808443,0.015098989,0.0471133,-0.14970842,0.40679848,0.14569908,-0.7560986,0.46609735,0.49327022,-0.23353542,-0.7072707,0.35376447,0.08159457,-0.30397332,-0.072170444,0.31732818,0.05514978,0.06054967,-0.1468623,0.21896087,-0.3764312,0.09059636,0.30438334,-0.10478188,0.29838246,-0.15794766,-0.12143954,-0.67486703,0.08638116,-0.52687514,-0.20782317,0.286343,0.011785952,0.19158325,0.089189306,0.23618591,0.4197269,-0.30508003,0.048004776,-0.13761753,-0.22245677,0.27170187,0.44895667,0.46624994,-0.5472317,0.5311624,0.009385949,-0.07474442,0.08320412,0.12786178,0.5304498,-0.07737001,0.327204,0.047705196,-0.20811701,0.19769853,0.81633365,0.08505437,0.3440309,0.06995067,-0.24168894,0.20623623,0.18794402,0.00999943,0.10158917,-0.47815144,0.098723486,0.011606444,0.18236938,0.5184882,0.1667696,0.2326195,-0.03375617,-0.2527588,-0.13689476,0.2282458,-0.08212571,-1.4844834,0.495217,0.15013435,0.8563999,0.47647864,0.07501026,0.1903012,0.55247885,-0.14671877,0.20366754,0.33652204,-0.16633224,-0.54918396,0.49073303,-0.6326308,0.545241,0.014487732,0.031223705,0.0723954,-0.043860115,0.6399853,0.75412273,-0.0793431,0.0208712,0.021151353,-0.23463461,0.15362675,-0.46155703,-0.088615224,-0.49746794,-0.26767364,0.73126835,0.39438164,0.22793418,-0.21159868,-0.010099843,0.14337584,-0.04692152,0.16302292,-0.16673413,0.08885998,0.059251167,-0.5855497,-0.38082904,0.5689191,-0.12391097,0.16558884,-0.05114471,-0.22490577,0.26411587,0.003911257,-0.030581027,-0.16393703,-0.72831374,0.036818627,-0.45769176,-0.29013997,0.3325876,-0.073425785,0.26777238,0.20815179,0.11651739,-0.40789568,0.61957186,-0.11032204,0.8369831,-0.16661605,-0.20734066,-0.3418824,0.2746389,0.27563846,-0.27961892,-0.08898184,-0.23459709,-0.003832791,-0.41547105,0.42574376,0.0004050266,-0.45703396,0.1926685,0.011230099,0.055116717,0.38350058,-0.21338359,0.00093242526,0.0396175,-0.16434613,-0.2095035,-0.16840118,-0.11273205,0.23959248,0.3157655,-0.03605044,-0.045753516,-0.06235365,0.05881352,0.5683215,-0.023297567,0.38669556,0.37346923,0.25253135,-0.43416157,-0.15639713,0.2502711,0.48127162,-0.037842263,-0.12465013,-0.4019767,-0.29124284,-0.31455636,0.29706421,-0.21856692,0.40758398,0.0677121,-0.43711,0.7179357,0.13527998,1.2866157,0.081546396,-0.32687506,0.18583812,0.31816274,-0.009103069,0.009928508,-0.53979504,0.8119726,0.47375602,-0.19953874,-0.19847254,-0.25115493,-0.12703998,0.120279215,-0.19245397,-0.16108932,-0.08272539,-0.5359747,-0.2805634,0.2795963,0.18795037,0.19006594,-0.08760574,0.025538668,0.16498247,-0.017088056,0.123726696,-0.43189391,-0.08566764,0.16465503,0.2647799,0.024938956,0.024756923,-0.56363815,0.4043999,-0.41413137,0.10132455,-0.23894116,0.2118429,0.0033514611,-0.30014873,0.17611496,0.010655396,0.4065007,-0.32231253,-0.30672953,-0.18793705,0.50631434,0.14063299,0.2342266,0.72646815,-0.2843399,0.15941435,-0.03480553,0.5361414,0.90072954,-0.2259807,0.0120517835,0.38832834,-0.15456566,-0.4868914,0.3339731,-0.23193662,0.15367337,-0.10027383,-0.14660746,-0.5737253,0.27223742,0.2799733,-0.038311414,-0.048151784,-0.6900945,-0.3601582,0.32697427,-0.2290556,-0.31375623,-0.47719193,0.1267439,0.73587054,-0.1664614,-0.20649034,0.26843002,0.20030932,-0.09904176,-0.37882394,-0.07320529,-0.34340245,0.22748682,0.052631777,-0.29641747,-0.04363905,0.17203678,-0.46987233,0.13059756,0.15547378,-0.33336765,0.015165804,-0.2195079,-0.13807698,0.9449166,-0.20041446,0.25686133,-0.54198873,-0.5437132,-0.9279634,-0.34218097,0.554414,0.20859513,-0.015353441,-0.7171239,-0.18753356,0.073330425,-0.16576383,0.010569453,-0.29985136,0.42721483,0.04190692,0.34181976,-0.13292836,-0.6651222,0.07168925,0.12351983,-0.23152843,-0.61075515,0.54005456,0.051695988,0.86151016,0.009772077,0.09054083,0.29945445,-0.4339964,-0.10087179,-0.23111327,-0.17894697,-0.6376392,0.037651666,340 +56,0.4291949,-0.28821105,-0.71106386,-0.12129944,-0.37268382,-0.027653363,-0.21182603,0.54624397,0.25050074,-0.5028977,-0.15852854,-0.18383016,-0.07859042,0.38789803,-0.249407,-0.46107498,-0.023039054,0.21299127,-0.69224733,0.59743804,-0.20448416,0.11141658,-0.0017242096,0.53526026,0.34261507,0.10493975,-0.059664443,-0.035021074,-0.06099059,-0.043950677,0.037824493,0.15271431,-0.6682434,-0.027938053,-0.33765957,-0.48221505,-0.15640552,-0.4669638,-0.50707865,-0.93950623,0.45571402,-0.9058737,0.5210687,-0.061740004,-0.42553473,-0.05069153,0.16437262,0.39962265,-0.114681005,-0.16411337,0.20223443,0.030301169,-0.11375928,0.10518196,-0.16108516,-0.32096958,-0.6206835,0.12954542,-0.46218097,0.08994098,-0.11368542,0.24751246,-0.32515478,0.13325047,-0.20878886,0.679866,-0.33161226,-0.118939534,0.35328028,-0.06065856,0.37998587,-0.71117496,-0.08288991,-0.1432323,0.26624638,-0.07330812,-0.21838826,0.2934962,0.22071186,0.5560187,0.006501248,-0.29053843,-0.31525105,0.24530667,0.067377776,0.297794,-0.15979466,-0.45334184,-0.073844,0.10462396,0.336223,0.1955603,0.24068508,-0.36701393,-0.09886608,0.10730366,-0.222352,0.2477125,0.533958,-0.086039215,-0.1454721,0.2386143,0.6015279,0.40954676,-0.060985517,0.1921254,0.051872365,-0.534329,-0.1796698,0.0273794,-0.2667577,0.5597007,-0.12022557,0.2800716,0.52053636,-0.104080096,-0.12801477,0.049645577,0.015448865,-0.120589495,-0.3284876,-0.31647438,0.34004575,-0.38500684,0.34805256,-0.1975514,0.63058263,0.19827583,-0.7873212,0.22307442,-0.61693263,0.25876182,-0.040084146,0.45896274,0.8612313,0.51728475,0.28315327,0.8016251,-0.37894866,0.12778457,-0.04464195,-0.3355407,0.096489646,-0.34226853,-0.059377268,-0.45239997,-0.18496063,-0.24279864,-0.19552688,-0.020164296,0.40826428,-0.6148306,-0.09452794,-0.08563043,0.79137695,-0.14777172,-0.029990299,0.8091145,0.92071205,1.1453578,0.11385803,1.0815026,0.10972233,-0.2570765,0.35598737,-0.084516585,-0.9480829,0.3758359,0.264116,-0.2794487,0.293532,0.017397664,-0.033356618,0.6457786,-0.60004103,0.20367137,-0.16138303,0.13154055,0.040053997,-0.14386441,-0.3706106,-0.21249929,-0.07149233,-0.0071269907,-0.032188345,0.2349157,-0.121761486,0.32367426,0.021268666,1.7670696,-0.097141795,0.03284807,0.11914079,0.45011413,0.055550024,-0.18107408,-0.19574848,0.04833506,0.3665065,0.115276225,-0.54184675,0.007129524,-0.27482155,-0.43483698,-0.113169104,-0.20451069,-0.19336447,-0.19952112,-0.55286306,-0.3006562,-0.17055674,-0.3554056,0.36675102,-2.383348,-0.20917189,-0.10042316,0.319714,-0.35467768,-0.36342478,-0.0042778067,-0.6141705,0.5177165,0.35715333,0.33545065,-0.6689116,0.42082572,0.3731116,-0.56873935,0.070298344,-0.6704553,-0.14852257,0.12881675,0.26136687,0.0029514097,-0.16816798,0.13364862,0.17436108,0.34579697,0.016882375,0.10900734,0.34322694,0.29767948,0.05898597,0.53200233,-0.17019232,0.4833431,-0.3351877,-0.17474595,0.41768232,-0.406267,0.18855245,-0.098478064,0.10397195,0.539731,-0.62280875,-0.87108254,-0.66880906,-0.19268373,1.2167766,-0.105017334,-0.39281476,0.32381177,-0.5843193,0.048237577,-0.10951227,0.56639326,-0.0072506703,0.0049633086,-0.8811352,-0.09299533,-0.1515471,0.2070709,0.0148293255,-0.08476448,-0.43143532,0.5300136,0.019132506,0.47553158,0.5500299,0.09470428,-0.21750623,-0.6848333,0.15341505,0.8885836,0.4015117,0.20140457,-0.27303588,0.0016714036,-0.54917186,0.021096379,0.0675202,0.47929007,0.8081669,-0.0952376,0.21774411,0.17617847,0.06299934,0.11285957,-0.24978155,-0.43298316,-0.25236496,0.061837226,0.5800404,0.73695123,-0.13972837,0.47403225,-0.12986808,0.33152568,-0.2609108,-0.35478693,0.5430726,1.0894958,-0.37963408,-0.2929873,0.57516927,0.49000758,-0.20123422,0.5049173,-0.5023125,-0.35228658,0.5116271,-0.12085181,-0.5087906,0.24875745,-0.37025934,0.26405725,-0.94107527,0.2781623,-0.39999115,-0.27880898,-0.67672044,-0.07790632,-2.3580751,0.17259549,-0.21630791,-0.17818367,-0.23644283,-0.25051373,0.28494114,-0.58261776,-0.8713112,0.06923823,0.047907416,0.74824184,-0.105976,0.10402401,-0.10769802,-0.25352016,-0.3150311,0.08781539,0.42631307,0.31141454,0.01039584,-0.6362337,-0.24393527,-0.19538969,-0.35341677,-0.0028474052,-0.65516907,-0.5305294,-0.2773769,-0.63076407,-0.35466862,0.6111696,-0.099146396,0.038474716,-0.22852762,-0.09523067,0.027793135,0.33205503,0.004744237,0.20402768,0.09292861,-0.09124361,-0.0041619837,-0.112200916,0.03605943,0.0928049,0.18718548,0.24619173,-0.20351325,0.44968075,0.65270203,0.9575223,-0.37614703,0.90970504,0.69054073,-0.09315187,0.3090247,-0.2761229,-0.35793197,-0.6143017,-0.057693187,0.10938047,-0.43937272,-0.42367145,0.1672279,-0.4959618,-0.8070546,0.68251777,-0.15308553,0.24459025,0.14264764,-0.032173418,0.5861672,-0.24514154,0.00017437339,-0.19086762,-0.12274424,-0.51014495,-0.38641527,-0.5508378,-0.59653807,-0.14114857,1.3173242,-0.052510068,-0.034550734,0.24981335,-0.25080287,0.13070239,0.07702948,-0.02962742,0.20031081,0.42852664,-0.13950361,-0.76787806,0.26360595,0.05581928,-0.047175247,-0.5518088,0.25386465,0.65078294,-0.6364436,0.5715741,0.22686222,-0.061946914,-0.28747073,-0.60323465,-0.0117738135,0.058543466,-0.24396631,0.5402713,0.3325423,-0.65591806,0.34512037,0.36967546,-0.18553938,-0.8323062,0.481822,-0.07038048,-0.16767436,-0.10869146,0.36899552,-0.029927567,0.038277354,-0.22171472,0.10213732,-0.3034458,0.2455086,0.37456328,-0.14472976,0.25686032,-0.24581403,0.09777418,-0.74744916,0.20323814,-0.5362028,-0.18917094,0.38444534,0.11278857,0.10711317,0.06680924,0.23783153,0.30069053,-0.26359597,0.07681193,-0.105846375,-0.322583,0.31243974,0.51705945,0.47287083,-0.5708442,0.6194289,-0.0042118244,-0.22016971,0.004195139,0.00803078,0.40877643,0.022853822,0.2726067,0.15206897,-0.21703202,0.13414025,0.8360461,0.04254581,0.48896223,0.01297117,-0.13081574,0.06855748,0.14223307,0.13629466,-0.020723939,-0.71084976,0.038183622,-0.19054782,0.11471166,0.53135914,0.13417384,0.22029614,-0.04238718,-0.36532494,-0.08764583,0.07748085,-0.08450776,-1.5997167,0.44131818,0.18917438,0.87932813,0.6255944,0.10597595,-0.05763654,0.49466118,-0.1770477,0.16678864,0.59550214,0.009297178,-0.49679723,0.4944925,-0.775225,0.52496815,-0.030497469,0.08725366,0.08722445,0.09570095,0.4616334,0.70933497,-0.115656845,0.0788899,-0.012162376,-0.25502908,0.09952789,-0.3248328,-0.0871189,-0.5702345,-0.31927356,0.6365249,0.52757394,0.32426995,-0.28559667,0.056501046,0.14965153,-0.14713357,0.19501083,-0.004965726,0.05443295,-0.1387026,-0.70840585,-0.10506822,0.48861367,-0.07992062,0.030167159,-0.04121197,-0.25759378,0.21388713,-0.15824264,0.05767907,-0.07146526,-0.8702571,-0.1656131,-0.5317817,-0.23576252,0.32789806,-0.17128736,0.13726336,0.23088966,0.13386534,-0.4410317,0.39755318,-0.14442451,0.7544006,-0.15867752,-0.08957036,-0.32362345,0.22336426,0.25000423,-0.22588758,-0.09510277,-0.11295687,0.0282881,-0.37272385,0.443318,0.06464506,-0.32947108,0.13461494,-0.021916721,-0.03897445,0.4506,-0.2636967,-0.19551963,0.064535186,0.036632862,-0.26034814,-0.26313207,-0.09657502,0.18765019,0.17082623,0.07452943,-0.18838236,-0.110370114,-0.064106695,0.56719834,0.033111334,0.3836432,0.54801214,0.09537331,-0.48702154,-0.06403579,0.33307636,0.60400057,0.07466239,-0.17935526,-0.46661323,-0.30200142,-0.3416547,0.17749259,-0.089830466,0.40286523,0.100445166,-0.2230694,0.7491839,0.22089754,1.2519238,0.01819296,-0.34967124,0.066230014,0.3416072,-0.039870262,-0.15832752,-0.5266115,0.7810025,0.42634046,-0.16308415,-0.18630773,-0.32245877,-0.0631741,0.1431145,-0.15611249,-0.11667544,-0.107960515,-0.7059681,-0.26232204,0.22900023,0.3376382,0.16404976,-0.18633384,0.04060767,0.3620599,-0.027917162,0.2876331,-0.44940138,-0.23009318,0.3206846,0.2082142,-0.05311752,0.06024859,-0.52132565,0.37453538,-0.4390359,-0.07576633,-0.18869102,0.110627085,-0.11719543,-0.3335291,0.25697014,-0.054188747,0.36704227,-0.32227215,-0.31644845,-0.28467134,0.54779387,-0.023444533,0.15453026,0.6626734,-0.27142507,0.0013833418,0.06412703,0.55046654,0.9310859,-0.29598114,0.09414067,0.20143351,-0.1947142,-0.6272427,0.34719118,-0.29672644,0.14813668,-0.028384045,-0.23652977,-0.6007786,0.1901368,0.1470383,-0.017991893,-0.013108939,-0.7663897,-0.16058691,0.45623094,-0.21108225,-0.15936248,-0.42354605,0.0041963086,0.4277857,-0.14079314,-0.4451081,0.12813997,0.33171403,-0.053322405,-0.4626217,-0.07482268,-0.33066365,0.20829701,0.113053784,-0.55527073,-0.17663312,0.0967851,-0.49472147,0.1619609,0.18351072,-0.3080482,0.0034329025,-0.317862,-0.104826376,1.1307744,-0.17785211,0.18007472,-0.2960259,-0.48644674,-0.97070175,-0.3288002,0.286609,0.34376848,0.015404712,-0.80537117,-0.08043942,-0.22667754,-0.15435304,-0.0057313293,-0.16462919,0.50886464,0.20084783,0.58487743,-0.07419771,-0.59506655,0.20106757,0.12862015,-0.02879234,-0.33308712,0.6409602,0.12272835,0.811031,0.0071454816,0.20208997,0.20805535,-0.46178627,-0.06107994,-0.1486339,-0.1664623,-0.5967696,-0.08169547,347 +57,0.33155707,-0.054749366,-0.43327934,-0.03584791,-0.15694363,0.16578484,0.017331354,0.43455827,0.18575674,-0.37341633,-0.030293532,-0.13283862,0.08040549,0.27705848,-0.09545436,-0.40256053,0.018434547,0.08809252,-0.54171216,0.5333857,-0.3501389,0.24046095,-0.21003398,0.33146697,0.075566076,0.366261,0.11363597,-0.28986442,-0.108347654,0.14330427,-0.20402682,0.24721147,-0.40929186,0.01331397,-0.060906604,-0.082154244,0.10495362,-0.33030698,-0.31435415,-0.60887325,0.36320055,-0.64154,0.26506644,0.06233788,-0.10582316,0.23043989,0.012409076,0.25736654,-0.39093053,-0.06396218,0.18578595,-0.12772182,-0.050404858,-0.15854013,-0.092388,-0.35207105,-0.43673128,-0.0044008642,-0.3682555,-0.16125546,-0.28097713,0.03963897,-0.32374477,-0.16933851,-0.027531052,0.33493534,-0.49666905,0.14386389,0.1796503,-0.1527377,0.089778535,-0.48574236,-0.08085483,-0.115950726,0.35349166,-0.23574767,-0.14919531,0.35411647,0.23955444,0.4192284,-0.09705838,-0.13003762,-0.286815,-0.046862863,0.20413047,0.44326806,-0.11901217,-0.50684834,0.014049593,0.06187921,-0.13028878,0.26158273,0.045034997,-0.39007953,-0.21213235,0.1301182,-0.13696337,0.2112586,0.45260733,-0.27015007,-0.23160061,0.4600098,0.539296,0.110485725,-0.20908333,-0.19811615,0.009120047,-0.5138694,-0.15396705,0.18768732,-0.18597502,0.49652737,-0.03679803,0.21375284,0.7160166,-0.23537734,0.067113414,-0.054742876,0.029109161,-0.068317816,-0.16106029,-0.013771649,0.033153847,-0.37666172,0.27345976,-0.0052475315,0.72055304,0.27993375,-0.705245,0.32693064,-0.47236413,0.19926614,-0.19642459,0.5129981,0.6481279,0.28477767,0.3764202,0.77382123,-0.5255748,0.14499643,-0.075526565,-0.5587697,0.13993102,-0.10250962,-0.2359348,-0.5232345,0.011870917,0.08098375,-0.11414065,-0.02794848,0.045653433,-0.48073238,-0.03371707,0.14831626,0.80133575,-0.3143844,-0.12002427,0.41085887,0.8396673,0.81737554,0.06172649,1.138981,0.052293852,-0.30957487,0.5028852,-0.36997724,-0.79261863,0.14420298,0.25910446,0.061324503,0.16612105,0.22449458,0.070746474,0.33066002,-0.39622325,0.1642699,-0.18412998,0.2740128,0.23451237,-0.037855104,-0.23616418,-0.2557198,-0.1415824,0.02037551,-0.028908081,0.24098451,-0.20448962,0.044580862,-0.058384877,2.0182,0.10910216,0.12285094,0.08391702,0.6023979,0.13756393,-0.098752536,-0.26766622,0.54206574,0.37068683,0.27060226,-0.5590112,0.13160965,-0.2557571,-0.59402895,-0.04463712,-0.43636408,-0.104710236,0.09653731,-0.48003298,-0.04089271,-0.04739367,-0.23467512,0.6182135,-2.9060493,-0.008910675,-0.11870566,0.3305603,-0.3205199,-0.28048563,-0.15317717,-0.4197012,0.3023132,0.35694402,0.41866112,-0.6868997,0.26781484,0.31585363,-0.45973113,-0.09626819,-0.5678879,-0.17481081,0.007772334,0.38210315,0.054914773,0.03518718,0.12273975,0.15797038,0.3316009,-0.016089901,0.060617216,0.14553174,0.2687353,0.26100522,0.5247984,-0.051447432,0.49074373,-0.06979792,-0.109156296,0.1415592,-0.25486958,0.43666494,0.019018017,0.08283168,0.31503353,-0.29416597,-0.89317226,-0.54797244,-0.14470997,1.17808,-0.32239735,-0.16592625,0.3358339,-0.4811701,-0.072341174,-0.26069197,0.50179005,-0.028541164,-0.20341307,-0.7545872,0.22143555,-0.07854833,0.20478384,0.0312962,0.016287895,-0.29370397,0.5245081,0.009482159,0.5950594,0.40997714,0.04068682,-0.06561756,-0.3323016,0.0034664944,0.6278187,0.21329756,0.1084951,-0.16348016,-0.26612943,-0.33950043,-0.123479515,0.11051297,0.48236707,0.636021,-0.0396799,0.1016365,0.2066586,-0.023247063,-0.03746711,-0.21326116,-0.24306601,0.0416155,-0.19276357,0.45394742,0.63644457,-0.2681513,0.41795015,0.004466906,0.14366329,-0.21179354,-0.3002239,0.3763687,0.8961953,-0.15496437,-0.016942844,0.28842926,0.54448926,-0.2576217,0.32696417,-0.5314776,-0.00026395544,0.55054355,-0.2098074,-0.29360154,0.112433255,-0.2843489,0.116043925,-0.694747,0.25564283,-0.023804173,-0.27350223,-0.38753676,-0.06724373,-3.348951,0.1394254,-0.27800474,-0.23637794,-0.03385808,0.026053369,0.111359775,-0.7117706,-0.4229672,0.20017637,0.048566602,0.5767046,-0.062169958,0.07403554,-0.3272633,-0.23034146,-0.25885892,0.08847201,-0.05811148,0.36157048,-0.07377399,-0.5077465,-0.016808039,-0.13005461,-0.2828216,0.059714727,-0.44936436,-0.35157514,-0.13701722,-0.3749712,-0.31103128,0.68882227,-0.28150287,0.046742536,-0.13256662,-0.11173533,-0.18505591,0.26350534,0.27440065,0.040836446,-0.014011946,0.15409824,-0.039788477,-0.33357045,0.19488826,0.02895103,0.30880392,0.3680073,0.16202942,0.10550414,0.45848617,0.54920316,-0.1747246,0.80615366,0.62478244,-0.13076141,0.20583825,-0.40151232,-0.10657695,-0.47437686,-0.48984987,-0.109631516,-0.41299695,-0.45190307,-0.07283461,-0.3410005,-0.6604141,0.4389377,-0.03865861,0.1678094,0.110167645,0.10095479,0.514754,-0.31596482,0.026154637,0.038107812,-0.10525206,-0.6278314,-0.28449285,-0.51706797,-0.35861328,0.25630966,0.8929161,-0.34920144,-0.21257526,-0.0008016676,-0.3009522,-0.053555593,0.034312725,0.013452504,0.3290813,0.3314805,-0.12901717,-0.6063861,0.59115326,-0.07226202,-0.10949543,-0.6945873,0.13496795,0.36961704,-0.63073164,0.5636421,0.29847088,-0.0031667277,0.02484259,-0.5043012,-0.33154058,-0.03769873,-0.1488528,0.2048128,0.08759816,-0.78992146,0.31907225,0.2390199,-0.23910153,-0.62964714,0.6142189,-0.033078834,-0.37860084,0.028864115,0.21611066,0.17357108,-0.0656639,-0.2432164,0.2334743,-0.49785006,0.18375267,0.47941425,-0.03177402,0.1308405,-0.12121019,-0.051702254,-0.620347,0.055779375,-0.34614426,-0.15968403,0.36403877,0.103997186,0.19134147,0.038045995,0.16033801,0.2881682,-0.39443293,0.08990322,0.007864803,-0.13320783,0.3689,0.37134382,0.51818216,-0.4714365,0.4890403,-0.08182292,-0.0757227,0.1718092,0.13890278,0.4512117,0.13142447,0.2193766,-0.010624155,-0.32655793,0.22733387,0.8584116,0.22188324,0.36504912,-0.06451078,-0.16191232,0.25679436,0.17904544,0.17513657,0.20501724,-0.5074018,0.07283746,0.03778605,0.2717626,0.34445894,0.1415278,0.25207657,-0.03325719,-0.24857469,-0.009127807,0.2240631,0.066786125,-1.1448114,0.45167756,0.27583474,0.7481478,0.42277265,0.029055677,0.006109776,0.5245109,-0.22156322,0.21357478,0.31952336,-0.22468111,-0.6575093,0.46766692,-0.6084429,0.5374417,0.035016276,-0.060545877,0.06571078,-0.06747302,0.18456301,0.78075665,-0.16885833,-0.05237681,0.10147524,-0.28216195,0.08630716,-0.38421318,-0.06933535,-0.6450641,-0.31744534,0.46407843,0.52652866,0.30003533,-0.07274847,0.05221938,0.050558373,-0.14122897,0.04595388,0.030451294,0.29197544,0.20370619,-0.7076887,-0.25214785,0.53094065,-0.421587,0.13834083,-0.094066896,-0.18403247,0.28599867,-0.31306916,-0.11757663,-0.050333258,-0.59329593,0.008090951,-0.16886106,-0.3818356,0.42938817,-0.10308439,0.36868975,0.21465877,0.03679144,-0.3649831,0.63954335,0.040328134,0.6770346,-0.30052406,-0.09502675,-0.5721647,0.07419575,0.22440487,-0.07268019,-0.12439343,-0.31172138,-0.048603803,-0.46275717,0.3535499,0.09106381,-0.16885251,-0.14910342,-0.26213527,-0.012357531,0.6048069,-0.07485607,-0.23390666,-0.21986504,-0.13703498,-0.32051817,-0.15537706,-0.18318167,0.19744459,0.18725568,-0.024120454,-0.084912255,-0.18971872,-0.07677182,0.3305381,0.06581519,0.31237143,0.22271204,-0.039560646,-0.16576964,-0.2382927,0.21270607,0.38637006,-0.09690787,-0.014061365,-0.2606738,-0.3948297,-0.39206105,-0.014823377,-0.19025995,0.3947684,0.20084125,-0.25432026,0.5765801,-0.088839084,1.0880187,0.13296777,-0.30302775,0.036475077,0.49022686,0.0895346,0.074443646,-0.29728118,0.7242193,0.54948246,-0.0013235807,-0.23790863,-0.1680144,-0.08108929,0.26120368,-0.16237068,-0.04332584,0.11722089,-0.5371953,-0.121821806,0.32791352,0.17714082,0.3113779,-0.017668005,-0.09576451,0.09850824,0.10035844,0.22341105,-0.39672333,-0.22170497,0.25312954,0.22156088,0.15565124,0.16531122,-0.43436262,0.54988587,-0.30759892,-0.07879435,-0.22859854,0.22470848,-0.2026865,-0.19527845,0.18918118,-0.005686894,0.50923526,-0.21339539,-0.29756153,-0.38384682,0.45429635,0.17239931,0.2736809,0.48707408,-0.15036157,0.04260013,-0.008630503,0.47534665,0.8754332,-0.3008352,-0.090263404,0.4758274,-0.35154992,-0.5860794,0.2160067,-0.23345718,0.09701744,-0.086354226,-0.09568912,-0.5634717,0.18916762,0.16394565,0.068268806,-0.0037461221,-0.6070255,-0.2398425,0.14446191,-0.32420862,-0.29191932,-0.35535038,0.24167064,0.8417667,-0.41350555,-0.20089397,0.14170115,0.11968061,-0.12370608,-0.47921842,-0.051578462,-0.33146563,0.20262615,0.065315306,-0.3791016,-0.16842334,0.11068856,-0.32047206,0.15066274,0.12833443,-0.3758534,0.19098449,-0.16473666,-0.05406574,0.9717226,-0.14334421,0.026064936,-0.48183435,-0.37485158,-0.73921853,-0.39197832,0.46932343,0.14984527,-0.042974956,-0.4394943,0.03819154,0.030515928,-0.13774599,-0.18980499,-0.495983,0.5201467,0.03724117,0.15961215,0.013925785,-0.84509325,-0.044433624,-0.003315946,-0.2108525,-0.5679987,0.49346906,-0.18551958,0.8514601,0.045172665,0.019475358,0.3304889,-0.26687753,-0.053848855,-0.33402815,-0.19466941,-0.6701064,0.098495245,358 +58,0.34747848,0.089317866,-0.52498776,-0.14957862,-0.47804976,0.3626904,-0.27542835,0.15596631,0.26213574,-0.041051693,0.025546398,0.07172917,-0.12612233,0.19472708,-0.14264545,-0.6235419,-0.0470714,0.118232146,-0.54727244,0.5373343,-0.3136992,0.43999347,-0.18176228,0.3570059,0.18234754,0.44480556,0.13535897,0.100254595,-0.050050635,-0.006547004,-0.25139558,0.29976928,-0.5793214,0.3299203,-0.046792366,-0.4041298,-0.074739106,-0.41727468,-0.22878978,-0.67062366,0.33657938,-0.7756567,0.5996088,-0.1234653,-0.3434726,0.060199123,0.22950369,0.16070612,-0.2475226,0.038126104,0.19441892,-0.24508496,0.15109268,-0.30290973,-0.31217468,-0.5648461,-0.49957004,-0.18640098,-0.65999365,-0.06291662,-0.35957313,0.23751542,-0.23250076,-0.12549315,-0.36650518,0.10137911,-0.5118352,0.17933914,0.14353873,-0.35421038,-0.16709717,-0.4899528,-0.062774554,-0.13251711,0.2100831,0.11190003,-0.06808624,0.40984076,0.18274157,0.4630803,0.13915852,-0.31964236,-0.45306984,-0.14078858,0.062202945,0.37087616,-0.08447322,0.014028877,-0.26035962,-0.14102635,0.4686729,0.36676794,0.11855616,-0.25300923,-0.017290588,-0.10529396,-0.1303508,0.28498137,0.40979677,-0.4006348,-0.22924635,0.45127273,0.45333806,0.16910452,-0.33370575,0.22093195,-0.12448439,-0.2100984,-0.29843894,0.17110693,-0.061120704,0.41092217,-0.07983069,0.13439009,0.72948194,-0.04522788,0.077823214,-0.19412135,-0.061929565,-0.02410172,-0.32412586,-0.0709095,0.15778627,-0.3758158,0.20003963,-0.13550963,0.501102,0.06634526,-0.6996801,0.34630787,-0.5589515,0.097573996,-0.0310492,0.5117209,0.7413222,0.5305866,0.085276894,0.93619066,-0.32290044,0.012852779,-0.19281201,-0.18509465,0.1414396,-0.052637644,0.11697943,-0.4783632,0.22483908,0.088357195,-0.030810822,0.13081534,0.32805023,-0.27769095,-0.11499332,0.09466539,0.59532416,-0.4378554,0.044473827,0.6916282,1.0566318,0.9509522,0.009343766,1.1242303,0.3691675,-0.13243747,-0.2477292,-0.24134031,-0.4860061,0.054715924,0.42702737,-0.067560345,0.5341852,0.16623247,0.02924773,0.30932584,-0.22995867,0.047164492,0.095232494,0.21885416,-0.05300907,-0.06318657,-0.370697,-0.2115887,0.31103063,0.10427318,0.079706356,0.23483118,-0.28601414,0.41887483,0.27453035,1.524298,0.112898365,0.12930906,0.13634777,0.38096374,0.26192573,-0.21274936,-0.035866674,0.35120878,0.29734913,-0.21915835,-0.47079235,0.064817585,-0.35896763,-0.5319387,-0.062280837,-0.3608964,-0.28208637,-0.027863203,-0.38008514,-0.18850131,0.050918456,-0.23353615,0.37904108,-2.6252382,-0.009249248,-0.114850104,0.2776768,-0.26904333,-0.2964453,-0.35849482,-0.4900306,0.21227118,0.31229013,0.18720606,-0.45779657,0.4243045,0.4364321,-0.36521006,-0.06424151,-0.5613518,0.16908032,-0.020174779,0.40542814,-0.16496283,-0.20696978,-0.17686006,0.3923161,0.65759087,0.11749414,-0.043194663,0.33994743,0.38554555,-0.029051978,0.36998037,0.10359404,0.5637358,-0.13241492,-0.16338105,0.48348737,-0.4531383,0.49226692,0.002037216,0.10276273,0.41279632,-0.4170158,-0.6916162,-0.49489784,-0.14316425,1.1474724,-0.4443487,-0.46074513,0.13463373,-0.109394774,-0.23373657,0.10353261,0.37803358,-0.036959875,-0.04387176,-0.5613023,0.03386663,-0.2548429,0.17573163,-0.12664908,0.29976684,-0.35248628,0.754312,-0.2288157,0.5575232,0.23116267,0.20786373,-0.06689963,-0.42079002,0.19300231,0.65809685,0.5145977,0.09616051,-0.24797249,-0.13231027,-0.066036895,-0.31216633,0.24526063,0.5723767,0.49850157,-0.14891456,0.051439166,0.29949662,-0.18550918,-0.067766234,-0.2809913,-0.20230773,-0.010449211,0.22001748,0.40408498,0.60973406,-0.18673325,0.16676506,-0.11896149,0.20530955,-0.18569356,-0.65351886,0.37830853,0.5251411,-0.16684633,-0.23523259,0.59759986,0.4294301,-0.25701424,0.3584295,-0.68562555,-0.2567119,0.521691,-0.09838858,-0.40011394,0.09944001,-0.2928587,0.05225282,-0.60455287,0.055932343,-0.05668055,-0.5120877,-0.39025715,-0.14220601,-2.9892108,0.07412993,-0.13281965,-0.0511002,-0.120722145,-0.19761708,0.2844038,-0.6228751,-0.65146625,0.07005748,0.01341957,0.41641876,-0.07976845,0.12281148,-0.35490492,-0.24600662,-0.26437172,0.29095864,0.052030064,0.40646234,-0.20782523,-0.29508686,0.037241846,-0.116062805,-0.44078094,-0.120620616,-0.48003694,-0.26491284,-0.18903066,-0.32445735,-0.07862117,0.6027198,-0.49806833,-0.0063349344,-0.29827648,-0.045416694,-0.08019033,0.2408998,0.35157394,0.0937375,0.23514643,0.06065296,0.018230624,-0.3547027,0.3566062,0.077742994,0.21821362,0.46014988,-0.09090811,0.06910587,0.4352725,0.5512694,-0.059716173,0.73184955,0.16478908,-0.1727506,0.4751886,-0.2885802,-0.32988465,-0.79810536,-0.39096096,-0.21926324,-0.46919203,-0.39553905,-0.2506227,-0.38587,-0.86303484,0.31984645,0.13898183,0.36908284,-0.043124177,0.23810567,0.39983407,-0.2017287,0.09361711,-0.023163386,-0.2412585,-0.4880882,-0.5334705,-0.61334217,-0.6498798,0.35715732,0.93276894,-0.16808334,-0.04132969,0.17437339,-0.34931955,0.068987615,0.18722421,0.17681788,0.09319514,0.47660923,-0.056962237,-0.45917356,0.32281193,-0.0147032775,-0.086731404,-0.49943352,0.058697235,0.6652529,-0.56440526,0.44986266,0.15877399,0.18927999,-0.05809626,-0.7591111,-0.18841529,-0.07514569,-0.285058,0.5910719,0.3104056,-0.5799296,0.38151607,0.009969203,-0.123440355,-0.55478966,0.45527542,-0.093547136,-0.18169296,0.009401761,0.4042542,0.07921409,-0.12613498,0.11825238,0.14735945,-0.5151669,0.382639,0.2495614,-0.07817056,0.2949899,0.03448657,-0.23778504,-0.7089717,-0.0743234,-0.4333474,-0.4672895,0.09228411,0.02350352,0.028075676,0.08154144,0.064168856,0.5186048,-0.3651756,0.21619296,-0.18570141,-0.24577343,0.36674514,0.3683706,0.39683193,-0.4746353,0.5569813,0.049702093,0.08782458,0.055025928,0.145177,0.55655307,0.09587101,0.3570789,-0.11964494,-0.11345849,0.066712774,0.51904523,0.31058088,0.1893675,0.041054774,-0.37681484,0.2745749,0.14977297,0.12745373,-0.028067479,-0.2937806,-0.010041162,-0.18509838,0.19850895,0.4312796,0.15391672,0.3561762,-0.028221171,-0.022124158,0.3590675,0.080342606,-0.34376758,-1.0174048,0.2631886,0.25175682,0.7936069,0.46094567,0.0065306993,-0.013673756,0.41713905,-0.43726355,0.031485245,0.5303932,0.07862244,-0.36118543,0.47529805,-0.539816,0.45356196,-0.1248591,-0.101650625,0.3043838,0.35825115,0.39769518,0.8880794,-0.16176125,0.058771774,-0.035853438,-0.22341754,0.020124305,-0.025550734,0.14607403,-0.44216132,-0.39888042,0.5986644,0.41428104,0.4658175,-0.34665945,-0.09495589,-0.11296227,-0.19135591,0.1406814,-0.006542243,-0.045687035,-0.18652494,-0.37777904,-0.41658068,0.54264283,-0.17155805,-0.077227,0.03909645,-0.3051796,0.21698567,-0.016203472,-0.014418237,0.06343947,-0.546305,0.029702801,-0.22929882,-0.38673097,0.43363827,-0.22851709,0.25454268,0.09761216,0.011668788,-0.23550107,0.28865466,0.1595303,0.67506963,0.021323517,0.036957853,-0.31714672,0.35999572,0.35125828,-0.23169483,0.009001434,-0.2458877,0.26858914,-0.6352674,0.22469121,-0.21602178,-0.24154481,-0.05146223,-0.23079538,0.016099405,0.37529528,-0.18210566,-0.16204791,0.12306309,0.03554699,-0.42765212,-0.15465203,-0.4492191,0.12295321,-0.06835364,-0.1415777,-0.0049792305,-0.0779293,-0.14048085,0.26919937,0.11811527,0.1040167,0.29010674,-0.18244925,-0.39812553,0.083245695,0.034729626,0.34731114,0.11231084,0.081097245,-0.23517483,-0.393849,-0.35793272,0.5463939,-0.2678005,0.108747795,0.08062823,-0.31892383,0.8403751,0.03869987,1.141523,0.12000276,-0.41716722,0.14974612,0.5620742,0.14902104,0.15645412,-0.28371167,0.8852012,0.65371317,-0.14414573,-0.118898325,-0.20890775,-0.19817525,0.24873401,-0.41008478,-0.18184987,0.030546244,-0.77601045,-0.07285103,0.15770063,0.10628922,0.14933795,-0.041822117,-0.14333996,0.04941197,0.1335738,0.5098408,-0.36959273,-0.2946416,0.3844726,0.092621006,0.038042575,0.26172236,-0.29427993,0.39679286,-0.72589856,0.2050178,-0.6205827,0.089968316,-0.18535401,-0.32913965,0.2151249,-0.01565774,0.27072197,-0.35286152,-0.48605323,-0.16233747,0.4992459,0.14587417,0.2928065,0.62345326,-0.23764795,-0.0511531,-0.07615308,0.3945731,1.1014624,-0.059493348,0.08849135,0.37647384,-0.3820747,-0.6656472,0.018436713,-0.4260089,0.092870906,-0.012380734,-0.44490296,-0.18292552,0.32353866,0.00011852011,-0.11627299,0.027095638,-0.51892567,-0.055340067,0.24110118,-0.2461754,-0.1685456,-0.33458155,0.19703183,0.78188086,-0.27570027,-0.5575718,0.11383383,0.35999978,-0.25874195,-0.61965626,0.15880674,-0.12036589,0.39586556,0.07290517,-0.45198423,0.08859818,0.41634566,-0.43298686,-0.027707111,0.4552574,-0.3404195,0.005769156,-0.3571887,0.097509146,0.92876315,0.02232558,0.001301378,-0.43514043,-0.4411075,-0.96121025,-0.35857368,-0.13176823,0.1982457,-0.03569322,-0.5263714,-0.042812534,-0.31212592,0.14593762,0.05534191,-0.5611141,0.44111773,0.29113716,0.53617704,-0.19764194,-0.93400884,-0.0376667,0.2036443,-0.14699933,-0.4526598,0.57375175,-0.32308716,0.65206516,0.1586481,-0.040015258,0.13417819,-0.785665,0.39845616,-0.43090913,0.029082628,-0.6543202,0.11470379,375 +59,0.45744035,-0.07391837,-0.3943597,-0.08523166,-0.22766961,0.09785192,-0.06976802,0.652017,0.27815732,-0.4421025,-0.10432261,-0.105532214,0.008603103,0.22878921,-0.10826692,-0.40432703,-0.12265198,0.19674142,-0.5054987,0.45093787,-0.4732623,0.33218655,-0.11646354,0.3313921,0.23699169,0.3107617,-0.044652387,0.0065103625,-0.23802279,-0.00791274,-0.09926237,0.40274668,-0.2535105,0.10602201,-0.13944222,-0.26142746,-0.14337613,-0.45795736,-0.4156755,-0.56714165,0.33121693,-0.65486765,0.37877217,0.0052859336,-0.32370317,0.2928899,-0.06750365,0.2697531,-0.14608547,-0.02586314,0.076434866,-0.0109243095,0.013600022,-0.17754044,-0.30513716,-0.23199084,-0.5789364,0.1689986,-0.4024582,-0.17610951,-0.19340345,0.065755054,-0.20340358,-0.06702736,0.049553134,0.36457318,-0.4390728,0.053967178,0.12751901,-0.010332417,0.16417575,-0.47955406,-0.082791775,-0.03655806,0.2986836,-0.28972366,-0.21506178,0.2361981,0.24107209,0.50376916,-0.09755167,-0.06267186,-0.39252192,0.005323801,0.16269766,0.4579691,-0.17845286,-0.43768695,-0.14340205,0.0017589778,0.12350486,0.27311248,0.19180912,-0.2872632,-0.18314552,0.018988717,-0.16103746,0.399423,0.4936738,-0.28480285,-0.36444664,0.43010768,0.69986343,0.10912333,-0.12021092,0.0032076687,-0.006369613,-0.49924728,-0.15982814,0.015639506,-0.10359213,0.35621035,-0.033195145,0.15946358,0.5603296,-0.14931983,0.04986193,0.08209808,-0.024095442,0.007970378,-0.31502095,-0.12101841,0.10972302,-0.39025778,0.043434367,-0.027224481,0.6692406,0.15545972,-0.84703255,0.35065228,-0.5283076,0.094695225,-0.07168086,0.4703629,0.7543261,0.31258416,0.27848223,0.6772431,-0.38206527,0.11531207,-0.15311289,-0.27634633,0.061805617,-0.17441055,-0.013076,-0.56869704,0.0010142997,0.08717788,-0.23219717,0.19550174,0.37613043,-0.54084814,-0.10312829,0.1866897,0.70737237,-0.3203549,-0.15898697,0.75554144,1.0482701,0.9015969,0.00084352866,1.1839348,0.12965745,-0.24600336,0.36341614,-0.58841515,-0.65362847,0.23244718,0.30732843,-0.041617483,0.24438493,0.07847977,0.086940095,0.3661922,-0.34595177,0.122969806,-0.11425104,0.12656748,0.025188467,-0.06052576,-0.4667763,-0.25646973,-0.058733612,0.11258273,0.16698505,0.2620538,-0.30475265,0.30894053,-0.004401058,1.8418664,-0.050939083,0.09600865,0.073855676,0.44355887,0.13302082,-0.38057294,-0.11106227,0.29477105,0.23581801,-0.08125664,-0.48189205,0.12968007,-0.1261223,-0.5118357,-0.106973395,-0.354244,-0.004211195,-0.06553277,-0.41150647,-0.057669815,-0.1466279,-0.40976536,0.59279835,-3.000711,-0.22508922,-0.07546188,0.25391018,-0.23660137,-0.5026798,-0.21006235,-0.35805467,0.3330263,0.284529,0.38389316,-0.66620445,0.3043356,0.32094425,-0.4901164,-0.11385669,-0.61788285,-0.09653697,0.005290818,0.20520833,-0.06345002,0.050771542,0.06828288,0.11761187,0.4100172,-0.070157334,0.103104316,0.31043357,0.33804107,0.016126432,0.3999051,-0.052371543,0.5077654,-0.14188483,-0.28271458,0.39219922,-0.35577613,0.20077284,-0.011500113,0.1322027,0.30007517,-0.48327675,-0.83759284,-0.57621056,-0.21758074,1.0499628,-0.15387362,-0.2976634,0.3487913,-0.51787084,-0.27821586,-0.13951068,0.53156495,-0.010806009,-0.21088672,-0.8232014,0.08617456,-0.062448245,0.09114905,-0.079334095,-0.03641425,-0.4089394,0.55811477,-0.11443919,0.52817166,0.3486418,0.22417015,-0.24490875,-0.38628352,0.072249815,0.9573705,0.30188948,0.12422803,-0.20014004,-0.23288193,-0.44314754,-0.11791626,0.15822689,0.4553115,0.62917155,0.010087129,0.14200397,0.22459736,-0.02096044,0.031065002,-0.15378274,-0.16489245,-0.088772595,-0.10982325,0.6094662,0.58060926,-0.14573397,0.559562,-0.020270895,0.09910452,-0.2646212,-0.3952812,0.40688467,0.69651866,-0.1532684,-0.26544866,0.61813617,0.39013314,-0.2127074,0.36235464,-0.5671308,-0.1539855,0.40175873,-0.30266422,-0.3775185,0.27776662,-0.2383292,0.07312742,-0.9264042,0.16548331,-0.12252238,-0.56799877,-0.5668842,-0.08547874,-2.8936908,0.13782802,-0.086563095,-0.2890944,0.05114461,-0.15081277,0.08304515,-0.46838295,-0.5479272,0.18960324,0.10894125,0.61211514,-0.076501906,0.029053457,-0.20668823,-0.24982521,-0.37220243,0.09891917,0.077292494,0.43331647,-0.02210622,-0.34895647,-0.10578127,-0.15399823,-0.43346006,0.0683835,-0.54909563,-0.40173885,-0.067569345,-0.47056675,-0.23683634,0.65020764,-0.33527407,0.0021037832,-0.21781778,-0.084391214,0.02654408,0.3276044,0.13350897,0.09479366,0.24614564,-0.03953173,0.026049152,-0.26309577,0.25294617,0.07005697,0.29401374,0.37727296,-0.21458507,0.28330076,0.48605746,0.64494246,-0.23459092,0.82454044,0.56120205,-0.05159812,0.20343357,-0.29317647,-0.079325624,-0.3779006,-0.24897553,-0.07060677,-0.40497252,-0.51960135,-0.22326528,-0.4086745,-0.73888814,0.41809797,0.04274481,0.13954636,-0.015727937,0.21172199,0.51479715,-0.18479067,-0.014241319,-0.14864857,-0.15377977,-0.5040809,-0.32652032,-0.583069,-0.48608768,0.29475862,1.0611997,-0.12740457,0.07028509,0.050048284,-0.20849656,-0.09473016,0.06828181,-0.01909914,0.21023008,0.2999203,-0.16141573,-0.41984862,0.40467978,-0.08260971,-0.198643,-0.6162095,0.16970678,0.49157718,-0.45286196,0.5914915,0.18851757,0.0748619,-0.059100647,-0.48249727,-0.08952238,-0.02860707,-0.25527805,0.45906162,0.30201417,-0.8229363,0.4430623,0.30636793,-0.14548641,-0.7421022,0.48991895,-0.07512554,-0.2083329,-0.104692265,0.2514477,0.258145,0.020828161,-0.19535288,0.19877405,-0.37337822,0.31414807,0.19874671,-0.045904964,0.33610487,-0.22129397,-0.10995342,-0.61006963,-0.01669845,-0.54782754,-0.24696968,0.14408356,0.12840733,0.2526339,0.20329897,0.080830306,0.3209952,-0.27961376,0.09618143,-0.04286141,-0.20433591,0.1697354,0.35006875,0.56470543,-0.35487702,0.40218896,-0.01433032,-0.0054769516,-0.0866336,0.020742133,0.550045,-0.020325907,0.24038172,-0.0497372,-0.32159734,0.31623322,0.675125,0.1840519,0.19060582,0.009025779,-0.22558299,0.2042234,0.036609314,0.19012126,-0.016786385,-0.47542223,0.12294674,-0.11060813,0.23433271,0.37519288,0.1960304,0.26984784,-0.10088168,-0.33043873,0.048649244,0.18050148,-0.042815626,-1.1719396,0.303849,0.19160937,0.8963756,0.4999057,0.07011539,0.07982701,0.53597206,-0.20398945,0.19238973,0.35204357,-0.15353253,-0.48887247,0.4417708,-0.7657452,0.569429,0.00632238,-0.052886695,0.08071186,-0.126351,0.47527277,0.68025124,-0.13168916,0.078394085,0.04824791,-0.23047906,0.0447364,-0.28528756,0.02869229,-0.705802,-0.17234378,0.6552832,0.47965816,0.3137421,-0.11386407,0.034620374,0.16332117,-0.029309683,-0.04964801,-0.014368542,0.09475505,0.028909795,-0.58614457,-0.20205769,0.42368174,-0.12960617,0.08680267,0.056833297,-0.18464066,0.15462562,-0.11637682,-0.22094037,-0.06402308,-0.5582095,-0.06394024,-0.23994511,-0.3186614,0.4296198,-0.11131984,0.22299507,0.18700187,0.15156838,-0.24765554,0.47202063,0.15636483,0.8508404,0.04021624,-0.047087356,-0.38145387,0.28128877,0.19466014,-0.14613977,-0.2139897,-0.29040688,0.0119047575,-0.56733644,0.34112853,-0.06139993,-0.42101166,0.14534122,-0.068631664,0.123882115,0.5250914,-0.11286679,-0.10050111,-0.04303241,-0.16993046,-0.2688641,-0.04503457,-0.089034155,0.3716817,0.26457876,-0.12233058,-0.015251784,-0.109222606,-0.026770085,0.38598138,0.083910674,0.42447075,0.26618308,0.10136098,-0.22942673,-0.08028734,0.21955481,0.3649144,-0.10946655,-0.087333284,-0.24879202,-0.31285912,-0.4034869,0.23405407,-0.15783378,0.35856104,0.106734574,-0.15534152,0.5763874,0.09514621,1.1199358,0.11774806,-0.28338832,0.22094816,0.3625235,0.10791221,-0.01510454,-0.35053635,0.84885806,0.43302196,0.0008812137,-0.13719055,-0.2723303,-0.04758152,0.19360967,-0.1941059,-0.14532101,-0.0022034608,-0.6778131,-0.2285736,0.30944502,0.10834257,0.24419561,-0.06650615,0.0546651,0.21525146,-0.016845496,0.19259323,-0.3285059,-0.16662419,0.26979047,0.36020043,-0.013948422,0.12344775,-0.46882528,0.37668163,-0.47501153,-0.008911636,-0.14080645,0.18633534,-0.18207017,-0.29421747,0.19632556,0.03233317,0.39956617,-0.19957656,-0.40884602,-0.3501436,0.48699084,-0.02354655,0.09586364,0.36781007,-0.24357477,0.08112793,0.013425876,0.32602856,0.9779189,-0.20533818,-0.0526445,0.36759293,-0.17711496,-0.5990652,0.35891756,-0.26495022,0.28383058,0.031533964,-0.14244157,-0.4018342,0.35230866,0.2105911,0.053882256,0.069433525,-0.44389248,-0.13397793,0.16256408,-0.26339495,-0.1852905,-0.2557852,0.05689735,0.6522943,-0.28897193,-0.37047315,0.12174042,0.3276794,-0.16948947,-0.43754363,0.0785079,-0.39668524,0.16212423,-0.0056059957,-0.3065818,-0.17996322,0.004511304,-0.3077485,0.08097823,0.19494262,-0.2781026,0.10876496,-0.30277494,-0.07104777,0.998006,-0.12922063,0.31413177,-0.5032442,-0.5510154,-0.83105356,-0.43637025,0.2952127,0.10998124,-0.11698732,-0.56155264,0.020200029,-0.09638355,-0.24587333,0.029488826,-0.3255632,0.49332216,0.09436758,0.24978544,-0.24671172,-0.76368576,0.009258365,0.12341892,-0.33701584,-0.5674976,0.5548901,0.123192534,0.87976295,0.07542935,0.09292491,0.28010866,-0.4837958,-0.00042272732,-0.2959114,-0.07568779,-0.63400316,0.094098695,376 +60,0.46082702,-0.08962192,-0.63523424,-0.055769913,-0.06932945,-0.016776575,-0.29317933,0.3439371,0.19227903,-0.45694792,-0.05774081,-0.09627376,0.011801752,0.25461316,-0.13266961,-0.53612804,-0.10200004,0.1417068,-0.52888674,0.5486743,-0.60615885,0.3351043,-1.414679e-05,0.33738914,0.064226806,0.1961089,0.36340165,-0.094996214,-0.17747255,-0.10340592,0.32325745,0.32484868,-0.6894123,0.099966496,-0.08576693,-0.39079514,-0.10010813,-0.31946248,-0.4109821,-0.7459335,0.33232507,-0.9229522,0.58724535,0.20248377,-0.22875446,0.26479554,0.05673766,0.18746474,-0.3637151,0.20626715,0.11395939,-0.24672112,-0.15395138,-0.3405464,-0.024698593,-0.2668964,-0.6686996,-0.012337409,-0.45506644,-0.043284073,-0.3404078,0.19276805,-0.38048762,0.08015042,-0.33416396,0.42530048,-0.5498455,0.012501545,0.3040002,-0.050060693,0.38971204,-0.46646267,-0.12374762,-0.18093783,-0.045516692,-0.13956283,-0.31585038,0.26014328,0.22429729,0.511121,-0.048158787,-0.28305215,-0.36361974,-0.062146984,0.32019347,0.31814802,-0.3196484,-0.4912926,-0.1180276,-0.10781232,0.125299,0.1732288,0.10071975,-0.38647223,-0.0624544,0.2952659,-0.122428045,0.42494303,0.6662631,-0.24374503,-0.16049686,0.31566703,0.5640099,-0.02530496,-0.07223033,0.13035405,-0.05846075,-0.6355344,-0.24243575,0.26880008,-0.18489029,0.4870996,-0.07662748,0.12131955,0.6588867,-0.2822784,-0.15613186,0.0871072,0.024239017,0.1021953,-0.2518246,-0.41598687,0.47250146,-0.5492388,0.105918124,-0.29811952,0.66464853,-0.009259708,-0.7478559,0.366054,-0.5700174,0.21153635,-0.13323045,0.7436179,0.63952786,0.54083323,0.41661417,0.76804227,-0.6194156,0.049914606,-0.046640955,-0.3922975,0.19495668,-0.1673877,-0.09822814,-0.4260908,-0.07073236,0.07513184,-0.20122541,0.12461152,0.5153619,-0.473635,-0.005981233,0.038806923,0.5459808,-0.34310013,0.033141028,0.5825072,1.084965,1.0503772,0.15431333,1.3340056,0.26759157,-0.28974307,0.100286745,-0.12690687,-0.88754654,0.3012858,0.38536358,-0.31586802,0.36238623,0.08864795,-0.11341926,0.38394138,-0.55545473,-0.06737424,-0.19528326,0.24096504,-0.13871789,-0.30982295,-0.30185828,-0.14455453,0.018281696,0.029167201,0.0039691906,0.36491898,-0.2604315,0.22303486,0.10863261,1.5513463,-0.13468814,0.16046113,0.23973647,0.26385736,0.24060722,-0.25470415,-0.007686347,0.33437654,0.51292855,0.25652742,-0.5805735,0.11902793,-0.16203775,-0.6521512,-0.16373931,-0.2506982,0.19590662,-0.1158478,-0.5091963,-0.05156257,-0.046396594,-0.38782007,0.40553004,-2.4334335,-0.051696204,-0.07954764,0.30415538,-0.18856838,-0.34330404,-0.24392188,-0.45928484,0.44230145,0.3674032,0.47147062,-0.75418496,0.3401283,0.36795652,-0.4857641,-0.015938662,-0.7088133,-0.081511796,-0.115222156,0.29719236,0.0266799,-0.23800378,0.028150344,0.28665292,0.5369252,-0.19997618,0.06882404,0.28954113,0.3470301,-0.08785098,0.5143121,0.08259969,0.33570662,-0.40350038,-0.3136591,0.509866,-0.404208,0.14409679,0.017190957,0.057013523,0.3105538,-0.46577707,-1.0761021,-0.5727358,-0.09362118,1.1939337,-0.42852974,-0.49543658,0.25915977,-0.18188997,-0.39657772,-0.005373981,0.3770932,-0.2721915,0.08879172,-1.007409,0.093016386,-0.19190165,0.3111822,0.05384399,0.15621431,-0.4426397,0.66798943,-0.17840205,0.6328775,0.53086185,0.10495782,-0.33005223,-0.49197915,0.12856293,1.0809131,0.36253577,0.15786584,-0.2881161,-0.15209489,-0.14035553,0.009309959,0.16275303,0.46994463,0.7389728,-0.06514608,0.19212109,0.24279903,-0.04931747,-0.0021284223,-0.2779754,-0.2922796,0.030089222,0.16496843,0.6207278,0.7640704,-0.14049888,0.21275233,-0.02928543,0.43914568,-0.1664807,-0.5192453,0.51034814,1.1617646,-0.032707743,-0.33736497,0.6933415,0.4064209,-0.29753736,0.6301637,-0.6878288,-0.28687435,0.3996089,-0.10261051,-0.34516326,0.29877138,-0.44264162,0.215116,-0.8420427,0.5096177,-0.37902364,-0.32016122,-0.6149133,-0.30491266,-3.3563364,0.16311494,-0.3303943,-0.09720088,-0.023398563,-0.01765401,0.3633841,-0.6603442,-0.6432242,0.07479508,0.21223706,0.59117025,-0.12416208,-0.052095905,-0.17898916,-0.14644484,-0.10470213,0.25381222,0.26437408,0.16216087,0.10796036,-0.5550946,-0.18253273,-0.117806226,-0.4400653,-0.105547085,-0.5460361,-0.47311515,-0.20971721,-0.5436719,-0.4968903,0.6066659,-0.3105177,-0.07833555,-0.17736208,-0.08082145,0.0011662329,0.3324635,0.060875498,0.34712535,0.003545612,-0.10773158,0.032816686,-0.15228847,0.20793697,-0.059458822,0.22426304,0.43668276,-0.32081848,0.041231655,0.46747848,0.61536604,-0.14433096,0.8265102,0.6582937,-0.028364308,0.3066776,-0.21750408,-0.2490914,-0.82513523,-0.4592031,-0.1539374,-0.51901376,-0.296866,-0.008921728,-0.31149748,-0.7672252,0.6465796,-0.162818,0.16651355,-0.01640901,0.38217023,0.3457776,-0.15001976,-0.124989,-0.105420314,-0.201454,-0.5066204,-0.27756903,-0.77323645,-0.5750807,-0.101468354,1.1892328,-0.06413547,0.0067826733,0.057968877,-0.052781228,0.01761199,0.2631198,0.012011811,0.33603853,0.5121347,0.11165141,-0.5088934,0.43435657,-0.15858954,-0.20648076,-0.71350837,0.020710312,0.6369173,-0.6159965,0.6552961,0.5837091,0.1803674,-0.040730555,-0.7936188,-0.32732716,0.14681058,-0.14736882,0.75148827,0.33763188,-0.91342866,0.5075604,0.50088567,-0.43057632,-0.66249484,0.47068036,-0.026697375,-0.20869567,0.045546535,0.46642706,-0.2876209,0.037919603,-0.25069636,0.3398775,-0.46430883,0.2684963,0.20089567,-0.08069417,0.3532044,-0.2653727,-0.24378377,-0.71234435,0.10764556,-0.5455487,-0.25205907,0.18840045,-0.09901987,-0.08736153,0.1693338,-0.12789214,0.57139206,-0.22580041,0.1406821,-0.17484131,-0.41634554,0.5472709,0.58403176,0.28127706,-0.27964064,0.64301157,-0.091577224,-0.10085101,-0.43248826,0.061090983,0.5990759,-0.06920835,0.406866,-0.069271505,-0.03145521,0.41586274,0.7396955,0.2862762,0.49039125,0.19778326,-0.14923303,0.22344086,0.14026698,0.24826603,-0.028069712,-0.38006157,-0.064640045,-0.13868518,0.23694071,0.47869536,0.034459345,0.48812017,-0.25825256,-0.2695225,0.069493026,0.20457359,0.014707044,-1.3503091,0.50415194,0.066380374,0.5917774,0.6323708,0.035554923,0.027800871,0.43475682,-0.20948133,0.08671051,0.23820919,-0.10427386,-0.54284835,0.5904739,-0.67705333,0.2991024,-0.16229598,0.035774656,0.020709515,-0.014020022,0.45638803,0.6642844,0.0058971047,0.20769322,-0.09097804,-0.20099516,0.21471678,-0.3172045,0.1934315,-0.42281118,-0.34600025,0.8727326,0.2959953,0.49888033,-0.21346617,-0.0944114,0.2633221,-0.16856673,0.18522683,-0.013384998,0.094071135,-0.05361446,-0.5344744,-0.26830366,0.53103966,0.124869436,0.13111736,-0.059825774,-0.17971386,0.21384344,-0.12913854,-0.060929887,-0.0948079,-0.6124508,-0.042217176,-0.41279453,-0.3148871,0.49303186,-0.38688445,0.22514108,0.2644334,0.06634855,-0.49485978,0.09964301,0.2080782,0.7000614,-0.07630318,-0.21184605,-0.14177594,0.31116927,0.23087502,-0.11278197,-0.010095088,-0.29914227,0.1338485,-0.7014051,0.42437315,-0.120198935,-0.31628755,0.23614205,-0.056782324,-0.06014569,0.60248023,-0.23159745,-0.42035866,0.17556922,-0.14176206,-0.19428822,-0.4587742,-0.15243617,0.2931531,0.09323883,0.08443828,0.016761992,0.028645277,-0.03870665,0.4124506,0.15515228,0.20208362,0.3806673,0.076543465,-0.46874547,0.010786563,0.15740435,0.63758326,0.015989438,-0.12765408,-0.509931,-0.53293705,-0.22011738,0.13412097,-0.20723605,0.34812757,0.015336929,-0.4233231,1.0081605,0.028837964,1.1033587,-0.030624062,-0.34028402,-0.044861145,0.6463156,-0.06294967,-0.17233053,-0.23497126,0.97514623,0.741453,-0.23170158,-0.15154302,-0.2734808,-0.04669563,-0.05621905,-0.2909377,-0.299105,-0.017908841,-0.6882685,-0.12153642,0.1501857,0.41134748,0.027181309,-0.12616691,0.13251323,0.21822104,0.03841881,0.14758107,-0.41358593,0.033225533,0.23174551,0.18801422,-0.015741013,0.013449255,-0.49226096,0.30589333,-0.4619286,0.07102504,-0.24885362,0.07269812,0.07374567,-0.36900532,0.27588397,-0.028994923,0.25239512,-0.3813585,-0.15375021,-0.09595442,0.44153678,0.19094682,0.1643492,0.8099092,-0.2852347,0.26555791,0.11042024,0.4508978,1.2374226,-0.38291565,0.039881453,0.33658957,-0.3332383,-0.71459544,0.26242116,-0.2929377,0.2605991,-0.20399226,-0.49789214,-0.54711497,0.12481852,0.05608498,-0.06688508,0.15559179,-0.67896795,-0.18247536,0.18160054,-0.3384604,-0.26559108,-0.4154317,0.0013394132,0.6262288,-0.2444235,-0.41903898,0.02926249,0.3565386,-0.26215267,-0.4670628,-0.08621634,-0.3086596,0.2253713,0.17181587,-0.24645899,0.10784143,0.16374794,-0.38021338,0.11552368,0.32465205,-0.33920914,-0.017434195,-0.35364193,-0.06839953,0.77474564,-0.18031748,-0.043616965,-0.44405383,-0.5682447,-1.1116331,-0.1351372,0.52314496,0.04313305,0.15153357,-0.6337361,0.08812329,0.057359003,0.0030366946,-0.14336753,-0.3687286,0.46430326,0.07643395,0.36648217,-0.04478998,-0.64428765,-0.051028542,0.13630687,-0.10747099,-0.4236055,0.58284736,-0.026702758,0.7244387,0.07405549,0.18250987,0.2586373,-0.6739099,0.18315002,-0.13565019,-0.25460768,-0.73849326,-0.042553253,382 +61,0.40857178,-0.13191256,-0.3706587,-0.118870005,-0.112028435,0.12954892,-0.18037558,0.25454444,0.18786488,-0.1368882,0.009210318,-0.22511603,0.025746044,0.34780577,-0.108655274,-0.62124926,0.0036862008,-0.060362473,-0.55855507,0.6021019,-0.46071875,0.23533547,-0.056235626,0.29596925,0.11493039,0.3566143,0.23371601,-0.19287983,-0.07620843,-0.085188866,-0.0662719,-0.03541802,-0.4806579,0.12260955,0.026860118,-0.115967795,0.12846327,-0.2862792,-0.37480357,-0.7031477,0.3728459,-0.6410177,0.29209918,-0.05249577,-0.12721126,0.45263484,0.08134189,0.39292794,-0.24850115,0.015244349,0.2773546,0.011477165,0.016521882,-0.041330844,-0.03779304,-0.49892926,-0.47141844,0.070066005,-0.34153783,-0.32041112,-0.17024094,0.11166608,-0.20126906,-0.032110415,-0.12634356,0.2635117,-0.49137786,-0.0030225143,0.19495839,-0.15815216,0.3736791,-0.44511992,0.09119868,-0.10633194,0.22445144,-0.12765121,-0.05953487,0.33836848,0.36181742,0.35635528,-0.10268232,-0.060845517,-0.355423,-0.046482407,0.17246866,0.4055531,-0.08131911,-0.4495163,-0.16110662,-0.056746252,-0.12101191,0.14157133,-0.009643901,-0.36723614,-0.059797086,0.088756785,-0.24315888,0.30942068,0.45931345,-0.35112906,-0.3341304,0.47492042,0.59512514,0.21074533,-0.19740057,-0.18456735,0.029446693,-0.41628382,-0.1333033,0.14845288,-0.20777225,0.4918307,-0.17256413,0.19629245,0.71402943,-0.1727849,-0.04340243,-0.14498745,-0.1012192,-0.26183003,-0.19508205,-0.05890758,0.00707086,-0.50262886,0.11518529,-0.22739723,0.5626967,0.263329,-0.6526349,0.40414992,-0.40475774,0.15195681,-0.15213284,0.46269023,0.7013746,0.2460212,0.12626337,0.81137997,-0.61840403,0.16664502,-0.108716615,-0.47759625,0.2944656,-0.13674192,-0.16028918,-0.5461171,-0.022352427,0.07342851,-0.104824975,-0.16492188,0.096481524,-0.5296591,0.025376597,0.07114891,0.7994394,-0.23114122,-0.05524823,0.45463502,1.0231862,0.9588588,0.014392944,1.0895952,0.19959761,-0.32789302,0.3989295,-0.4596657,-0.7436346,0.18026099,0.23891395,0.058641165,0.13242014,-0.031481735,-0.0113122985,0.36410227,-0.33672333,0.13069308,-0.15741712,0.22917828,0.21435285,-0.01974143,-0.11542554,-0.2392098,-0.012544334,0.14157522,0.12809579,0.21988633,-0.23040184,0.12522434,0.0076037943,1.8287952,-0.08336468,0.10886299,-0.0011463054,0.52117234,0.23228663,-0.16229194,-0.044130366,0.29871115,0.42842063,0.30440158,-0.5684603,0.24479626,-0.23866579,-0.5192504,-0.042570226,-0.24980626,0.039524198,0.02182366,-0.30690366,-0.060254384,0.08152002,-0.16036856,0.51834166,-2.8498783,-0.01755394,-0.21879016,0.24338126,-0.27729192,-0.22217081,-0.018046819,-0.43881336,0.3574493,0.46716636,0.42923063,-0.67646176,0.27751186,0.39261642,-0.5025531,-0.013827674,-0.59122574,-0.04386752,-0.059891153,0.4783558,0.07007527,0.056166478,0.040908754,0.28680348,0.3860642,0.009162955,0.17226714,0.12779836,0.29240087,0.15435848,0.545481,0.06741763,0.518952,-0.034093946,-0.12360296,0.29977056,-0.31492233,0.2967809,-0.1505134,0.16705783,0.36829302,-0.26475886,-0.8866765,-0.60547763,-0.2502882,1.0829082,-0.22548506,-0.3649658,0.28101528,-0.07073168,-0.18950509,0.010190833,0.37840876,-0.06325491,-0.030917987,-0.70787734,0.2217155,-0.038828067,0.157606,0.013051312,-0.07618017,-0.3694133,0.6351781,-0.011430139,0.46864307,0.26647708,0.12172917,-0.1897966,-0.56636316,0.06920305,0.87187475,0.2852061,-0.05579868,-0.10066854,-0.14071025,-0.46243957,-0.16422397,0.11062072,0.34490496,0.58051336,0.01777405,0.063678585,0.14106065,-0.08546934,-0.03769084,-0.05073335,-0.3020608,0.12693787,-0.21007556,0.45826933,0.6304452,-0.13992241,0.31366378,-0.044964544,0.2578119,-0.14161333,-0.4761041,0.65423405,0.7891268,-0.12716453,-0.121281825,0.3032208,0.33810797,-0.17632295,0.33974165,-0.57400554,-0.16790798,0.34725484,-0.12325791,-0.2634394,0.12573494,-0.22826603,0.026614279,-0.70677954,0.24674675,-0.24576628,-0.34765857,-0.50915396,-0.14850177,-3.8178072,0.0418646,-0.21396083,-0.32863885,-0.045310505,0.096168235,0.35172108,-0.5368079,-0.52170473,0.110465646,0.020882133,0.4832308,-0.009105237,0.12687247,-0.38693458,-0.0017621573,-0.44374,0.26279998,0.05617642,0.20768657,0.10598208,-0.4816118,0.031578615,-0.19112849,-0.45566538,0.03407821,-0.38993353,-0.38373658,-0.23407315,-0.39447036,-0.32675523,0.6668488,-0.20495006,0.067315996,-0.08832534,-0.056299247,-0.2259531,0.35781208,0.19819462,-0.029824216,-0.02784501,0.026644029,-0.022216598,-0.29307607,0.17699721,0.03709221,0.23039813,0.3045532,-0.014996804,0.043578282,0.35683265,0.5133405,-0.14972827,0.67021513,0.5408718,-0.18549696,0.22556233,-0.32439113,0.004964955,-0.30823025,-0.3715565,-0.14705487,-0.30074123,-0.59217596,-0.12549509,-0.2850417,-0.6490296,0.3091573,0.03361319,0.10465045,-0.025778782,-0.03194097,0.37375918,-0.21078917,0.22601047,-0.024497058,-0.028756447,-0.53833693,-0.26232633,-0.57160306,-0.38198352,0.25155294,0.8610672,-0.17717841,-0.25110462,-0.08364985,-0.20357056,0.056391574,-0.011062678,-0.08457717,0.1786585,0.22285864,-0.14009166,-0.68214464,0.5587427,-0.17699164,-0.006670367,-0.6404563,0.15546003,0.497005,-0.4291339,0.43898058,0.24234219,0.043631233,-0.030115977,-0.44376525,-0.06707177,-0.060702905,-0.26218256,0.3642654,0.07473485,-0.7621087,0.3145402,0.29016274,-0.23782389,-0.6042367,0.5580789,0.08863224,-0.2715574,0.015375772,0.26393473,0.0570522,-0.0068556303,-0.4021125,0.2601039,-0.5402055,0.07851815,0.35840333,-0.009888218,0.24593747,-0.10926472,-0.058691572,-0.5728455,-0.044593327,-0.31127647,-0.18426187,0.19350775,0.08422357,0.17282483,0.22377989,0.14891285,0.3150922,-0.17872483,0.15294898,0.10322697,-0.16617149,0.32764333,0.3561204,0.34719482,-0.44223303,0.47614655,0.00872688,-0.2278555,0.18977965,0.04179509,0.3774745,0.2772544,0.3950574,0.111256614,-0.20924571,0.32360986,0.6959349,0.19468117,0.3793753,-0.08346817,-0.3069777,0.23796517,0.14971283,0.18244809,0.17511925,-0.4892928,0.018436529,0.017710928,0.25712597,0.344138,0.10044318,0.28560323,-0.08167225,-0.3325166,-0.045285918,0.08129539,-0.10913531,-1.0799819,0.4512028,0.30659348,0.8170342,0.5651067,-0.096578084,0.052968226,0.66425085,-0.06815271,0.107946485,0.31404763,0.023036636,-0.56054395,0.4567545,-0.7430699,0.35813728,0.04826456,-0.069612436,0.0037453105,-0.078352265,0.25707886,0.7755944,-0.1926683,0.02786794,-0.19225952,-0.3558074,0.22613727,-0.21836632,0.096154705,-0.45147622,-0.43020585,0.5137182,0.45189252,0.19979958,-0.15392014,0.07656212,0.024686556,0.010219075,0.045495313,0.05653403,0.1349789,0.12992464,-0.6850989,-0.34248072,0.502271,-0.4354574,0.076226756,-0.039429538,-0.19984806,0.1317011,-0.23310024,-0.000922136,-0.007200945,-0.575579,-0.053752013,-0.029837757,-0.21901362,0.46559006,-0.26683986,0.29260877,0.06571163,0.09046039,-0.34796032,0.31691265,0.060036495,0.6363139,-0.0766222,-0.07351753,-0.50172466,0.09499475,0.14874075,-0.15339819,-0.111278154,-0.23581956,-0.08563559,-0.5315812,0.42456663,-0.024545662,-0.37299463,0.04424714,-0.20596203,0.0435728,0.6249589,-0.22093017,-0.30854854,-0.1137445,-0.092467666,-0.22448164,-0.13921705,-0.15380178,0.13035089,0.14647163,-0.002787061,-0.05993629,0.04550415,-0.15950295,0.38675985,0.14096321,0.32938334,0.26120383,0.07744853,-0.35203254,-0.074404046,0.085288495,0.38777483,-0.0027822554,-0.00325761,-0.23043343,-0.5043327,-0.4343109,0.07609382,-0.11373958,0.4683214,0.092587456,-0.22723113,0.4509095,0.05133113,1.190038,0.061025493,-0.28022966,0.022775456,0.48775,0.048295412,0.047853634,-0.4201688,0.7421515,0.5511458,-0.14040945,-0.1770041,-0.1285636,-0.21540913,0.20045352,-0.12524602,0.05162185,0.0661386,-0.74465007,-0.32116112,0.20112091,0.16001844,0.1730653,-0.018217843,-0.12108435,0.19505236,0.115728274,0.44062525,-0.50329596,-0.17015694,0.3248243,0.23791207,0.092591256,0.21210326,-0.35682362,0.3729586,-0.36418986,0.08811496,-0.13405363,0.19276476,-0.18255605,-0.15249534,0.16337168,-0.18766084,0.33073053,-0.17813146,-0.4157233,-0.29116485,0.57897526,0.273036,0.2645294,0.68205607,-0.17445143,0.09714066,0.051366262,0.57246304,0.99336684,-0.26974532,0.006000558,0.376956,-0.29336575,-0.60119706,0.25143215,-0.11982484,0.16563283,0.0260113,-0.24334703,-0.41902438,0.39975888,0.06376065,-0.005130873,0.10211431,-0.71747804,-0.20032129,0.31685573,-0.17041212,-0.3011832,-0.3497461,0.19762093,0.67120576,-0.33932543,-0.2090821,0.16358641,0.25404063,-0.30948865,-0.51529294,-0.115457416,-0.37971824,0.2974953,0.15470177,-0.3196406,-0.13458768,0.09702438,-0.41826868,0.25293532,-0.047530707,-0.3553085,0.043250803,-0.121124655,-0.072867185,0.8595285,-0.2151047,-0.01678238,-0.66611373,-0.33692598,-0.73850536,-0.42924884,0.39786407,0.14082937,-0.057603966,-0.4481929,-0.16079591,-0.086223654,0.07263685,-0.12224874,-0.43287137,0.44570157,-0.010452025,0.31633353,0.029178854,-0.8591997,0.02655756,0.18671556,-0.10902269,-0.57331836,0.49714273,-0.13258883,0.6787336,0.101483844,0.12430021,0.34919345,-0.2768302,0.10794826,-0.36384484,-0.24007438,-0.6887463,0.28202152,383 +62,0.19224054,-0.11861815,-0.55022216,-0.03745103,-0.21068436,0.070961446,-0.31020743,0.35196728,0.24868076,-0.3055924,-0.18788838,-0.11392296,-0.0008227788,0.33659086,-0.14777595,-0.45878762,-0.027944393,0.23412447,-0.6467651,0.46928078,-0.4083532,0.20832911,-0.22381112,0.23888108,0.14586253,0.06675977,0.1366315,-0.075033605,-0.08125128,-0.106972985,0.153783,0.278759,-0.5519203,0.34212866,-0.22515717,-0.35871875,-0.052410603,-0.38093197,-0.47891364,-0.86106837,0.14531983,-0.6284699,0.5426832,-0.11426708,-0.20727138,0.34216067,0.04825057,0.23340936,-0.20614766,0.015441008,0.12633646,-0.30733538,-0.31368217,-0.12579082,-0.1289562,-0.3765438,-0.52537996,0.15917706,-0.45976332,-0.022840556,-0.30756378,0.15843575,-0.45021725,0.077651024,-0.1453229,0.46012187,-0.32433483,0.07964796,0.11195756,-0.1224089,0.08184731,-0.64395636,-0.07436329,-0.0834678,0.15014845,-0.08660397,-0.28744182,0.3554389,0.23401448,0.35676908,-0.07816216,-0.23587401,-0.18730906,-0.0015459917,0.069131054,0.48951143,-0.21870062,-0.28724873,-0.059607036,-0.030002255,0.3957434,0.031789623,-0.17639768,-0.24986112,-0.12111571,0.17016245,-0.16728815,0.23678069,0.66201,-0.1117012,-0.004043415,0.39411145,0.41240677,0.1225204,-0.089916356,0.028488897,-0.11113077,-0.43470633,-0.19449429,0.020007059,-0.10289548,0.38511327,-0.060902916,0.14412934,0.54410446,-0.16180956,-0.15377486,0.16569479,0.06591052,0.112287514,-0.1213204,-0.36321628,0.35571444,-0.53304285,0.15283361,-0.11608208,0.80648726,0.04665301,-0.709204,0.30516136,-0.41917795,0.14826441,-0.018189881,0.6962686,0.67463636,0.5165529,0.34946445,0.7563035,-0.3969695,0.06678455,0.023728974,-0.3434198,0.022084221,-0.2095798,-0.14562075,-0.3794619,0.04411233,0.18542561,-0.15988111,0.14993264,0.23143877,-0.5049023,-0.056648985,-0.0062003303,0.55414397,-0.28219992,-0.025983132,0.69835967,0.9587797,0.882318,0.11719304,1.1440634,0.18596719,-0.09416362,-0.019242518,-0.023239046,-0.79968566,0.28662544,0.1944604,-0.5883486,0.2774797,0.14568017,-0.20011686,0.34450462,-0.59716016,-0.23742557,-0.1771253,0.30898288,-0.005049616,-0.12804261,-0.27226725,-0.3282939,0.007440418,0.06476203,0.10732288,0.31683084,-0.2377497,0.1900284,0.16270982,1.2294052,-0.082247734,-0.025747176,0.27124217,0.32604477,0.13364145,-0.16663438,-0.10880429,0.110070735,0.49044815,0.08209589,-0.58061033,0.025422871,-0.14226076,-0.40895593,-0.15585268,-0.19895396,0.07494685,-0.08471978,-0.3430959,-0.16600668,-0.18848416,-0.5238247,0.5172334,-2.6610098,-0.11483997,-0.09690125,0.32250273,-0.12310476,-0.20936315,-0.24500015,-0.49891865,0.39519432,0.36167148,0.39525896,-0.49481776,0.32003665,0.26246157,-0.67769706,-0.12208405,-0.59363055,0.092516094,-0.012506014,0.3698804,0.11105826,-0.1341711,0.023168813,0.038622055,0.5455523,-0.14560714,0.08974991,0.37696266,0.30472726,-0.103816904,0.27583644,0.011976939,0.5280584,-0.3884138,-0.2852608,0.43816566,-0.3276397,0.21423852,-0.13850962,0.16702369,0.39887518,-0.58735657,-0.8471942,-0.49848232,-0.13568333,1.4208606,-0.30463868,-0.49763295,0.26210028,-0.24177054,-0.3015135,-0.0655482,0.43890443,-0.24225032,-0.10391819,-0.75825036,-0.008081645,-0.057727724,0.35286027,-0.063894846,0.040375434,-0.35554278,0.50754,-0.16887636,0.5690922,0.38138855,0.18927306,-0.2235343,-0.36400688,0.10713777,0.9382789,0.5083554,0.1511701,-0.18666671,-0.09915264,-0.21439643,-0.2184102,0.1854587,0.50680107,0.6957313,-0.06311566,0.111665316,0.29912356,0.0115129575,0.08199797,-0.19303702,-0.21576136,-0.011103552,0.18187542,0.6629111,0.56677914,-0.016117483,0.29381746,0.05028924,0.3307425,-0.187997,-0.40074623,0.4351523,1.0054443,-0.15364105,-0.28591442,0.42059946,0.49017882,-0.1441007,0.43423328,-0.55205506,-0.48827192,0.4593512,-0.19132984,-0.47227228,0.19666156,-0.29890233,0.19112349,-0.6447472,0.4172303,-0.22188683,-0.67311263,-0.41512185,-0.06092264,-2.973662,0.10012135,-0.31629926,-0.164365,-0.20274365,-0.09496001,0.23995024,-0.42283365,-0.5856006,-0.0075424146,0.16229844,0.7570189,-0.048534863,0.02720714,-0.16012917,-0.19863933,-0.34900028,0.041346613,0.24325302,0.23859406,-0.015949555,-0.39229512,-0.13960186,-0.25415024,-0.40854624,0.028718185,-0.44783545,-0.28971282,-0.25907406,-0.5094612,-0.28214633,0.5646341,-0.35207734,0.00958672,-0.23810978,0.015450355,-0.028829256,0.33381593,0.06197741,0.03857056,0.06762475,-0.16385542,0.059227124,-0.22072357,0.37671202,-0.0058117434,0.20860581,0.4848414,-0.25334427,0.07447862,0.49412674,0.6062057,-0.21240908,1.073992,0.44919264,-0.039287236,0.270899,-0.13575397,-0.3596237,-0.46814185,-0.20269334,0.09643796,-0.444063,-0.23622468,-0.031727254,-0.26021153,-0.8918482,0.6029829,-0.021394297,0.18921432,0.018708339,0.21648249,0.46470273,-0.11751792,-0.059276525,-0.07665891,-0.15909836,-0.24395737,-0.24078974,-0.7300563,-0.4684857,-0.0873788,1.1207459,-0.17464653,0.08864833,0.069196686,-0.087865174,0.15742683,0.05172602,0.07994797,0.30994463,0.38234764,-0.02501899,-0.70858157,0.37813908,-0.3170653,-0.16788045,-0.5044018,0.2237507,0.64211446,-0.58985287,0.33871612,0.43950728,0.11404957,-0.2240777,-0.63355017,-0.15712783,-0.00571901,-0.21530762,0.4580468,0.2135537,-0.9286687,0.5063917,0.41031662,-0.3177077,-0.66718864,0.5125165,-0.022775747,-0.05939088,0.07327984,0.4931836,-0.16006473,-0.025024297,-0.12284312,0.22286779,-0.22823864,0.33575994,0.14836463,-0.080003336,0.3442336,-0.27054244,-0.117840126,-0.647861,0.037209183,-0.43538198,-0.16298638,0.0799349,-0.027582468,-0.07333382,0.10466844,-0.09706274,0.46725088,-0.3597269,0.11254299,-0.21708298,-0.4256224,0.48560685,0.54460526,0.4134369,-0.22788179,0.6403358,0.055238873,-0.11971663,-0.2678912,-0.0032560527,0.50531566,-0.009121759,0.38463026,0.05328562,-0.08750273,0.24853373,0.8122193,0.221865,0.4260533,0.04013498,-0.21835285,0.08250056,0.17665364,0.28706396,-0.007384423,-0.39713073,-0.071523376,-0.3021843,0.21505743,0.39920345,0.18113545,0.4547893,-0.19023362,-0.29048878,-0.017620666,0.13970175,-0.045173895,-1.259601,0.53203577,0.08187431,0.7210116,0.35348988,0.12809214,0.048629627,0.5311662,0.0076486208,0.11162607,0.2004293,0.004736066,-0.46541113,0.5248681,-0.7920043,0.4481393,0.00050416216,0.005725532,0.16486612,0.07431585,0.4436667,0.74904096,-0.24857375,0.06919209,-0.07911341,-0.1594168,0.32195422,-0.40294698,0.23293464,-0.4582491,-0.46599513,0.720354,0.34954262,0.43485814,-0.21085197,-0.037614837,0.07961,-0.14433305,0.25915954,0.039426204,0.029265925,-0.066317104,-0.5086671,-0.13271585,0.38874355,0.06967576,0.03515459,-0.0006445721,-0.06015835,0.3073998,-0.19513825,0.044032335,-0.1325493,-0.4636152,-0.017427243,-0.33793083,-0.43033344,0.2844968,-0.35139593,0.3140279,0.26309228,0.0064214403,-0.44792494,0.12388407,0.29146636,0.6696036,-0.050012454,-0.28587282,-0.15957668,0.25291005,0.2100005,-0.2403793,-0.03130214,-0.30251706,0.03740938,-0.69684535,0.37431,-0.2443184,-0.2681455,0.39504755,-0.105904914,-0.031608462,0.5044707,-0.12978098,-0.08875239,0.06957179,-0.12458427,-0.2173939,-0.34157324,-0.16706379,0.30489075,0.16348204,0.015277773,-0.044715825,-0.024806513,-0.13408631,0.23508587,0.044168964,0.25457814,0.31539237,0.05208999,-0.31257147,0.011556052,0.043417774,0.6259966,0.17105588,-0.16094097,-0.35013634,-0.32380375,-0.19354607,0.08723253,-0.120443106,0.2901202,0.10470513,-0.26910025,0.61990964,-0.09684965,0.8680159,-0.030353349,-0.2781302,0.02799464,0.5528805,-0.05274694,-0.22871241,-0.22924712,0.8539982,0.481117,-0.118943945,0.010107737,-0.30171707,-0.10591623,0.1510809,-0.27569583,-0.23242879,0.03451424,-0.59514177,-0.29133087,0.20439203,0.3491341,-0.052704073,-0.15639308,-0.034649394,0.29789782,-0.0019224472,0.224776,-0.41142517,0.029995784,0.3694622,0.12096751,-0.051643316,0.12647992,-0.4065709,0.28008458,-0.59900415,0.003117174,-0.06708902,0.10614151,-0.121438764,-0.30420122,0.3216231,0.14425625,0.36560318,-0.2485703,-0.14389892,-0.21719536,0.35808802,0.087903604,0.082107365,0.51705784,-0.2942745,0.014024869,0.13643178,0.39393765,0.75853795,-0.25831467,0.14349931,0.25731188,-0.33717647,-0.5285256,0.3126998,-0.29024178,0.16163377,-0.1014328,-0.2722876,-0.41300607,0.22942173,0.27257574,0.08267803,0.023628533,-0.68719894,-0.053919785,0.129552,-0.22548848,-0.2197109,-0.3864408,0.17313522,0.587639,-0.27846795,-0.2994978,0.053898267,0.26148728,-0.15622492,-0.53532386,0.04724273,-0.36315495,0.13327634,-0.055752013,-0.28158897,-0.08607245,-0.0010953397,-0.4473805,0.15539303,0.12174542,-0.2915553,-0.055667922,-0.12668264,0.13049708,0.69134945,-0.28925928,0.24151555,-0.47847727,-0.47424442,-0.9110911,-0.25825405,0.37146205,0.29613602,0.042722773,-0.6695363,-0.0016220417,-0.054397285,-0.21875301,-0.0701389,-0.36907238,0.40393832,0.16306971,0.2908164,-0.20900092,-0.74339926,0.14408265,0.059038512,-0.22289339,-0.28470084,0.33800235,-0.010979906,0.65983385,0.14657578,0.12510094,0.15294372,-0.53349185,0.15329847,-0.15564738,-0.20416254,-0.56752384,0.09929624,411 +63,0.44448304,-0.05357919,-0.57774115,0.020538377,-0.41698867,0.24008113,-0.085006356,0.48158738,0.22481553,-0.3956047,-0.20796375,-0.01646078,-0.07025402,0.17067751,-0.23048283,-0.572177,-0.038632564,0.15583116,-0.31168306,0.51219267,-0.29766452,0.38414574,0.10352304,0.20528223,0.24804159,0.15425496,0.008831149,-0.11577277,-0.23449121,-0.29066503,-0.12860227,0.27523965,-0.6552275,0.41206986,-0.1263452,-0.24458233,-0.011642383,-0.36223197,-0.3654142,-0.72485757,0.16556695,-0.69599617,0.6009751,0.10272372,-0.3978052,0.06425668,0.18180582,0.262507,0.014991526,0.04219288,0.21610975,-0.09213393,-0.008141674,-0.1690414,-0.012865409,-0.5197476,-0.53049505,-0.18083817,-0.5410688,-0.11065841,-0.040880557,0.26289213,-0.23643012,-0.09693979,-0.2128649,0.5878427,-0.47625887,0.10433967,0.26932722,-0.099544756,0.2984433,-0.59229374,-0.09649122,-0.05680555,-0.017291121,-0.09258796,-0.26496643,0.25879204,0.10247259,0.43436998,-0.044187702,-0.14441268,-0.18835363,-0.007057769,0.12904644,0.3541434,-0.34443322,-0.34564888,-0.12521252,0.057067335,0.41450316,0.010541424,0.19881742,-0.2898787,-0.0984333,0.00299526,0.0004746858,0.32593712,0.5601946,-0.20131657,0.02833677,0.2683451,0.5498877,0.1646821,-0.15397334,0.08445297,0.02910145,-0.36980665,-0.107629046,-0.034580253,-0.19278763,0.5119804,-0.056423172,0.06418395,0.62152344,-0.052016012,-0.07069114,0.1933788,0.17300698,0.12284908,-0.1671778,-0.3238883,0.23469745,-0.5358335,-0.13597329,-0.059396695,0.72690475,-0.0029116161,-0.6967779,0.23502828,-0.45236146,0.07211675,0.02327825,0.5134348,0.5866006,0.5229084,0.11253024,0.81332487,-0.3252492,0.093092844,-0.07325549,-0.2441818,0.14837097,-0.097466975,-0.102137685,-0.4764642,-0.14667618,-0.09806079,-0.3717081,-0.102841295,0.3568007,-0.6772174,-0.161382,0.11359477,0.71029484,-0.30801672,-0.06334789,0.5815383,1.0361937,0.9133095,0.1622867,0.86493623,0.18093422,-0.120234795,-0.19417393,-0.2363586,-0.5367043,0.18426618,0.29315543,-0.17051071,0.4662167,0.24359998,0.111863464,0.44483924,-0.47576267,-0.027886763,-0.19423388,0.4046003,-0.054997966,-0.07051061,-0.38711122,-0.17571594,0.048496045,0.1732299,-0.016975999,0.363797,-0.24666332,0.25276986,0.25037786,1.4961476,-0.28349656,-0.041926056,0.12580717,0.28309557,0.16389883,-0.40226734,0.016144596,0.31161958,0.28688484,0.0441501,-0.50481653,-0.0099709,-0.099219725,-0.46241063,-0.16894628,-0.13575886,-0.175997,-0.15243079,-0.44455382,-0.26918462,-0.06129051,-0.25815868,0.44376233,-2.596479,0.11102483,0.00875938,0.3221828,-0.20577392,-0.40615585,-0.07916466,-0.40932447,0.19686183,0.33797723,0.33005285,-0.66619617,0.33371562,0.501018,-0.34374523,0.036504373,-0.554187,0.14252785,-0.011225332,0.41116202,-0.025126241,0.03726967,0.19823165,0.31444886,0.45007935,-0.17327113,0.20329544,0.19230132,0.26338103,-0.021352792,0.27498785,0.08112947,0.4272759,-0.0015000179,-0.19450785,0.4649301,-0.34985703,0.18863326,0.008500997,0.037075747,0.29072142,-0.3182774,-0.6231465,-0.5886066,-0.11895515,1.0260904,-0.27122086,-0.5669538,0.19008467,-0.19929296,-0.29556555,-0.046308592,0.29773527,-0.06225604,0.04881013,-0.802515,-0.07046445,-0.18918946,0.3244556,-0.08917268,-0.05248966,-0.52931774,0.74169683,-0.23895866,0.4717089,0.43688127,0.27318263,-0.29324746,-0.54553664,0.029552605,1.0227723,0.6427189,0.14298353,-0.27986917,-0.17128731,-0.21943365,0.0899801,0.09244561,0.6584248,0.83893925,-0.14810686,0.044623874,0.2963422,0.03923425,-0.020651817,-0.16294536,-0.4713926,-0.021221235,-0.043482564,0.5756096,0.6588111,-0.054035667,0.53186953,-0.0904161,0.3573795,-0.17985806,-0.50574327,0.37543058,0.7292539,-0.19337985,-0.28127712,0.70259833,0.5319041,-0.1277705,0.41211647,-0.63711834,-0.22584085,0.4130394,-0.18778259,-0.460356,0.34099495,-0.3386954,0.26599586,-0.6984291,0.6681497,-0.25254917,-0.7902309,-0.5787822,-0.17428377,-1.8986577,0.2319839,-0.20843507,-0.19278768,-0.06820953,-0.174518,0.24163476,-0.7090213,-0.5985995,0.16422954,0.058514047,0.5179846,0.03229276,0.049262565,-0.08006145,-0.369147,-0.041320577,0.2865653,0.16403157,0.16331154,-0.00037343055,-0.4273113,-0.058791965,-0.110770814,-0.2903884,0.020170484,-0.620363,-0.63271457,-0.12661842,-0.51735824,-0.13078405,0.6425432,-0.3745888,0.039179888,-0.21108957,0.043770812,-0.009243948,0.07367091,0.1221991,0.11633359,-0.025451235,0.0153685585,-0.0041462183,-0.29739195,0.09405681,0.12905961,0.4086738,0.3772646,-0.13532978,0.23251027,0.54187816,0.6247122,0.022826418,0.8297721,0.4838931,-0.26702797,0.08712918,-0.121267386,-0.27018243,-0.60572624,-0.32911754,0.0692912,-0.5690847,-0.2684956,-0.0037758294,-0.39675286,-0.75910234,0.4803298,-0.13878152,0.2646956,-0.037298903,0.2206463,0.45557368,-0.20811602,-0.13245195,-0.23944923,-0.13791972,-0.58999515,-0.33925512,-0.67303884,-0.36554453,0.19224092,1.4155059,-0.34134272,0.005990967,0.13601124,-0.1752761,0.109329656,-0.037504133,-0.07140587,0.020105675,0.49698406,-0.076577716,-0.58501863,0.20820257,-0.1659774,-0.031661157,-0.4611863,0.10797348,0.5330993,-0.61263216,0.45460412,0.2785011,0.16936406,-0.05471401,-0.6758014,-0.06557665,0.10445873,-0.39552355,0.53319085,0.31729904,-0.5203556,0.33163568,0.27247363,-0.37600124,-0.66317654,0.46586883,-0.02941426,-0.32069522,-0.09806052,0.2977333,-0.12659632,-5.1882118e-05,-0.030428424,0.23081182,-0.3208171,0.19501904,0.2903458,-0.12676094,-0.08091363,-0.25367856,-0.18778999,-0.7874133,0.14231874,-0.33681762,-0.36532068,0.10878666,0.024198802,0.08591122,0.23638028,0.2288419,0.5682353,-0.31158423,0.08328809,-0.09080383,-0.30840212,0.5767659,0.47138473,0.42238602,-0.18684886,0.46196437,0.07067905,-0.0586303,-0.26248562,0.12766422,0.4321701,-0.0314757,0.26101136,0.028892636,-0.080317214,0.34014776,0.8709954,0.10845532,0.43717536,-0.073023215,-0.15729167,0.08612442,-0.010190858,0.22311693,0.010586977,-0.5528188,-0.051751696,-0.02372301,0.13089716,0.3825928,0.19010639,0.28481805,-0.14639148,-0.37256575,0.1335514,0.20045355,0.035011586,-1.3014609,0.23483513,0.02869787,0.73898697,0.6180024,0.2585122,0.030776855,0.4661612,-0.27034938,0.051420618,0.2201368,0.047651455,-0.3517263,0.32575125,-0.6651114,0.28737113,-0.0935492,-0.02111565,-0.019281514,-0.22838348,0.33566308,0.90484196,-0.14550184,-0.050094202,-0.0724447,-0.14666288,-0.073709436,-0.29379803,0.2452085,-0.6569596,-0.5055909,0.7583792,0.5279231,0.46795654,-0.14125869,0.017453307,0.18744728,-0.22212619,0.22713718,0.04779107,0.02623648,0.007548958,-0.4562738,-0.27997917,0.5367172,-0.19792691,-0.107157506,-0.08821065,-0.12422041,0.07553616,-0.15660311,-0.10828527,0.045101993,-0.7030739,0.018759497,-0.47764555,-0.3140206,0.47328857,-0.19367218,-0.013081364,0.09971104,-0.023401465,-0.28795817,0.2874211,0.33111274,0.616909,0.09829463,-0.02550962,-0.21577784,0.3410818,0.07714887,-0.13466938,-0.042034633,-0.11649219,0.3639235,-0.5794043,0.34062934,-0.007063272,-0.19657938,0.061756596,-0.21514213,0.0113281105,0.5008058,-0.11004007,-0.1715225,0.10413315,-0.19191706,-0.15875654,-0.14892586,-0.21904443,0.12215334,0.06643747,-0.14902756,0.03230136,-0.13504845,-0.2138947,0.11616941,0.1822033,0.41306233,0.58386695,-0.11767873,-0.61478174,-0.049379557,-0.036396287,0.42808118,0.061457533,-0.09163959,-0.3860615,-0.39762378,-0.41823965,0.2765946,-0.26342672,0.35328665,0.036038034,-0.24075244,1.0386342,0.12498914,1.1844214,-0.031279653,-0.40992138,-0.15151432,0.5758287,-0.05197399,0.081967145,-0.4248561,1.0148636,0.5789015,-0.058993764,-0.019400088,-0.23893094,0.08050496,0.29294112,-0.12860397,-0.21050946,-0.060091034,-0.5833829,-0.09620122,0.29718453,0.20542824,0.021884248,0.05820515,0.022546554,0.31418857,0.016763197,0.23912251,-0.56000465,0.12864691,0.23043641,0.12424964,0.24896917,0.020845752,-0.5488243,0.3009022,-0.41971135,0.14422771,-0.21593225,0.009971544,-0.028767955,-0.36317104,0.18464492,0.015699223,0.31172925,-0.5533619,-0.23013741,-0.18177673,0.56311744,-0.078138195,0.12085394,0.59383565,-0.20421793,0.15364474,-0.04227063,0.5714767,1.0344056,-0.3346857,-0.094471954,0.51583606,-0.45386976,-0.60959536,0.1868928,-0.3200952,-0.1262541,-0.17159045,-0.47419637,-0.5137471,0.25354522,0.25128877,-0.113359265,0.06333685,-0.7074996,-0.042948484,0.33489603,-0.3554762,-0.13711308,-0.17158157,0.25480425,0.6216849,-0.4233954,-0.36223462,-0.15562102,0.37066185,-0.28603202,-0.45022488,-0.06930498,-0.25851613,0.3206843,0.071507044,-0.33683798,-0.14826146,0.18748969,-0.32607397,-0.06797536,0.35833117,-0.24788958,0.04121328,-0.18807995,0.11992433,0.69172686,0.039575655,-0.13277023,-0.49710453,-0.32926926,-0.889227,-0.35177654,0.14178836,0.1050643,0.015194388,-0.6999022,-0.06693013,-0.29074228,-0.0225273,-0.09454564,-0.34966207,0.5364835,0.22082853,0.3457569,-0.05630234,-0.90047574,0.16024269,0.09638362,-0.10617225,-0.57041377,0.46374062,-0.03193241,0.85945636,-0.0058970097,0.0054980777,0.077810705,-0.6352874,0.1988842,-0.16010323,-0.1384446,-0.8226621,0.11848143,417 +64,0.43781084,-0.21513583,-0.42867208,-0.036755256,-0.21589702,0.034020744,-0.009163776,0.19886586,0.16105798,-0.45969892,-0.03280802,-0.19093274,0.03126132,0.45168388,-0.18143976,-0.5820059,-0.0740113,0.15522194,-0.4764271,0.4617086,-0.36416078,0.33956927,0.08092535,0.22268766,0.023865059,0.28110188,0.283955,-0.38508394,-0.16947316,-0.04418429,-0.26913548,0.16841605,-0.44797352,0.24063885,-0.034147326,-0.3525712,0.21822743,-0.31755558,-0.34015363,-0.57292694,0.15118042,-0.5977967,0.28988856,0.09138428,-0.12042518,0.26287538,-0.020045683,0.35192716,-0.3947553,0.04463777,0.12247547,-0.12596986,-0.10087487,-0.41079706,-0.04449997,-0.31044838,-0.3834426,-0.020483036,-0.29579425,-0.13942882,-0.27628875,0.14544488,-0.26824626,-0.011861388,-0.14670652,0.23287576,-0.42635453,-0.0065506883,0.15087032,-0.23010483,0.23227827,-0.44078714,-0.12910768,-0.059205934,0.17005636,-0.21779212,-0.07929378,0.3966871,-0.07620276,0.41104335,-0.027220525,-0.0254491,-0.37590432,-0.20321818,0.13636287,0.59836197,-0.18619579,-0.47510082,-0.042437345,0.08971882,-0.015778987,0.12480891,-0.1470956,-0.36138427,-0.15936552,-0.19528747,-0.20555922,0.1332601,0.5029939,-0.3569636,-0.014745437,0.34165215,0.35961324,0.0038718395,-0.09088564,-0.25078988,0.02527326,-0.49595052,-0.15914157,0.06922436,-0.20137537,0.51246095,0.01819558,0.1562649,0.57831526,-0.17365614,0.06540222,-0.092203885,-0.048627418,0.00049661845,-0.08315222,-0.20431691,0.1780979,-0.22533299,0.034714025,-0.08365071,0.83340555,0.1591426,-0.75695705,0.28945512,-0.46874672,0.12795964,-0.07742749,0.42970824,0.17497374,0.55941296,0.22462668,0.70776075,-0.56919473,0.19098078,-0.21774772,-0.28591645,-0.16783412,0.122531354,-0.19454832,-0.38063848,0.14705941,0.030065082,-0.18332988,0.15697984,0.10332022,-0.4470181,0.14670092,0.041711144,0.8553525,-0.39222682,0.06576434,0.46551093,0.88542193,0.81392473,0.03932379,0.9790069,0.1778386,-0.39091122,-0.017392755,-0.35283095,-0.6298306,0.12647226,0.41274124,0.026897728,0.18960969,0.22285119,0.12671754,0.27237076,-0.23767659,-0.029807054,-0.21803296,0.12305711,0.056528613,0.044618096,-0.29756865,-0.16819046,-0.229049,-0.05562019,0.014382154,0.1620267,-0.2990019,0.3589731,0.16640416,1.9587575,0.021926463,0.15362163,0.1468601,0.2886188,0.12790059,0.06658058,-0.071267776,0.28566927,0.15773056,0.022114258,-0.46923596,0.0664969,-0.16157562,-0.63310385,-0.06517082,-0.13996929,-0.05099164,0.064841434,-0.3035335,-0.10053918,0.023223553,-0.23908082,0.507523,-2.5080552,-0.0037736772,0.020879956,0.4034679,-0.32536113,-0.26181307,-0.10998382,-0.3386631,0.32987198,0.38857955,0.45749205,-0.610459,0.31834686,0.34992847,-0.39336196,-0.2072678,-0.4901064,-0.033035547,0.041316226,0.2647737,-0.014747538,0.00017414615,-0.008446544,-0.015282784,0.32116893,-0.25724888,-0.011262268,0.2051992,0.25604165,0.29355055,0.46299934,0.01880122,0.48313707,-0.31937844,-0.05692187,0.14150253,-0.39473546,0.21357298,0.12934463,0.12858617,0.2838316,-0.46537662,-0.73978233,-0.601691,-0.1997109,1.1006719,-0.23195887,-0.2783086,0.24991465,0.06467661,-0.17507368,-0.086099416,0.20553441,-0.023380954,-0.034051657,-0.72032225,0.097245395,-0.058779787,0.33407542,0.1257993,-0.0098639615,-0.35416853,0.6479527,-0.0978726,0.500474,0.45217508,0.20812126,-0.110906586,-0.26140928,0.06305315,0.83957785,0.29612598,0.19942777,-0.08373466,-0.2067532,-0.11200181,-0.11525272,0.17687231,0.370514,0.6746487,-0.07151493,-0.03876148,0.19942942,0.10125175,-0.14386,-0.12113187,-0.30467257,-0.00614696,-0.050488766,0.5421698,0.5059915,-0.17731848,0.32752067,-0.0958291,0.41630673,-0.13823408,-0.32059905,0.41155854,0.9301066,-0.1301502,-0.20630088,0.46302438,0.6065628,-0.119369134,0.29983494,-0.6806927,-0.25918484,0.44673896,-0.21862265,-0.30718866,0.16839704,-0.21210834,0.10949693,-0.8517305,0.3178393,-0.20233771,-0.3508729,-0.5123684,-0.16176422,-2.8129115,0.10153549,-0.27501512,-0.22333549,0.1478962,0.1656302,0.0072476473,-0.58132076,-0.3777016,0.13206932,0.13373639,0.4598436,0.049250785,0.3223238,-0.14763469,-0.035361923,-0.15980253,0.17198999,0.01572571,0.18335146,0.05700034,-0.45651513,-0.14364259,-0.17327055,-0.30962947,0.19799608,-0.49810743,-0.35249627,-0.1163339,-0.48206747,-0.25698364,0.46642146,-0.3564514,-0.009275654,-0.1362474,-0.019245826,-0.1886016,0.18600832,0.055721797,0.094432354,-0.058055304,-0.108862266,-0.043146316,-0.2939917,0.28477916,0.16737077,0.21229124,0.28591722,-0.018708197,-0.028953936,0.39715958,0.5433129,0.011447951,0.5935863,0.37799028,-0.13764074,0.20255944,-0.4085545,-0.29258543,-0.51378167,-0.5739034,-0.038388938,-0.26405936,-0.37225962,-0.08795297,-0.37014633,-0.61421824,0.5442296,0.037413828,-0.16352512,0.089506775,0.16704324,0.49366072,-0.1599202,-0.16537187,0.05007731,-0.12634182,-0.45861566,-0.415284,-0.50007534,-0.23352721,0.07611455,1.1516507,-0.14305004,-0.09699787,0.002973061,-0.086492166,-0.1302542,0.057078995,-0.019596584,0.33012837,0.26818562,-0.14553507,-0.6170152,0.5948189,-0.062919304,-0.26713574,-0.44633704,0.19367884,0.5335927,-0.61143553,0.29967642,0.2507013,0.16477537,0.188936,-0.37400517,-0.25545353,-0.08067722,-0.21095052,0.22740573,-0.023719944,-0.4508748,0.25218433,0.40775812,-0.4536792,-0.7375062,0.2842934,0.027380425,-0.63066864,0.096887365,0.24010655,0.08493017,-0.12557751,-0.19726755,0.092852555,-0.33387575,0.2708459,0.2846305,0.026758224,-0.070357926,-0.28563625,-0.16205162,-0.78070354,0.05363054,-0.27344295,-0.21068606,0.2873507,0.14787965,-0.022212364,0.011300772,0.09435603,0.37068954,-0.36008158,-0.0057551675,-0.11775267,-0.100179255,0.44986308,0.3449121,0.38640285,-0.3303923,0.53441817,-0.06790672,0.032267477,-0.31169614,0.0236061,0.5042641,0.047029894,0.097022146,0.0072631687,-0.3208039,0.38750803,0.5800126,0.2597314,0.36580932,0.052236363,-0.25024697,0.38333243,0.19925675,0.08386487,0.167124,-0.3908611,0.1480466,0.02180031,0.112443194,0.34567666,0.20063248,0.45708588,-0.12056572,-0.28820714,0.0668437,0.18548532,-0.0055058897,-0.8944698,0.3468862,-0.046429858,0.61039203,0.60631657,0.066319264,0.17739305,0.67379457,-0.2195301,0.06481975,0.27729762,-0.14639534,-0.4465146,0.43272984,-0.58816767,0.3467526,-0.016081264,0.04746805,0.08819333,0.041159738,0.2661338,0.8539129,-0.13763416,0.04111893,0.016120883,-0.17950052,-0.103637844,-0.26638377,-0.07475789,-0.4879066,-0.42783922,0.51548505,0.27434647,0.388861,0.0017372333,0.02557617,0.14575726,0.036625035,0.294736,0.15866488,0.10554601,0.1008465,-0.6085575,-0.19720122,0.5840597,-0.18468267,0.13280536,-0.032495484,-0.14290705,0.37055722,-0.116343096,-0.24877664,-0.06127502,-0.39269364,0.080358475,-0.2511883,-0.18105721,0.31034565,0.0064277556,0.42822868,0.04484033,0.01271314,-0.34645975,0.42552522,0.20476991,0.85266864,0.06967774,-0.166061,-0.3443281,0.12292977,0.28882793,-0.07203717,0.13333087,-0.04481519,-0.12066685,-0.7840923,0.34787372,-0.0010493323,-0.16462809,0.18379083,-0.2431021,-0.066569544,0.45810902,-0.14717492,-0.15824936,-0.0045077577,0.061577633,-0.22408797,-0.0749688,-0.33253968,0.16775763,0.1315274,0.06140131,0.028047701,-0.055030633,-0.0131617505,0.48298556,-0.004340902,0.41965804,0.08307733,0.06951964,-0.4569187,-0.13058856,-0.0016705543,0.34791726,-0.08096044,-0.10197753,-0.25214168,-0.48382398,-0.26396698,-0.12055324,-0.22707824,0.18096757,0.16044015,-0.31692877,0.752499,-0.07052171,1.028943,-0.049772423,-0.14732188,0.056636572,0.41218778,-0.024699215,0.16371955,-0.30704197,0.95442194,0.7143679,0.001909893,-0.15053412,-0.1950586,-0.07750409,0.00035844743,-0.16116625,-0.036607064,0.09909472,-0.39109,-0.41500044,0.18386455,0.08334152,0.13074163,-0.05359577,-0.004112974,0.13299245,0.123902366,0.21898791,-0.28608587,-0.24602596,0.2489824,0.082737885,0.21609493,0.081242114,-0.48246056,0.49584568,-0.36378145,0.105686925,-0.28096527,0.09231285,-0.12733558,-0.1537278,0.15502536,-0.04628098,0.1643471,-0.36202002,-0.24932992,-0.21630044,0.47314382,0.14690118,0.21624191,0.55480313,-0.138966,0.019930733,-0.0061383788,0.41862863,0.7916889,-0.48855555,0.113543645,0.6065416,-0.34279382,-0.25212544,0.275776,-0.052065425,-0.19472834,-0.06658526,-0.18816769,-0.5693002,0.32453987,0.1583437,-0.08200332,0.044984207,-0.59496665,-0.16283607,0.38248855,-0.3744921,-0.31576842,-0.31115562,0.4253886,0.5479822,-0.2999226,-0.3271241,0.27236816,0.055640712,-0.20949376,-0.37838507,-0.106592916,-0.40000957,0.3379894,0.30539867,-0.23323618,-0.2236504,0.08512483,-0.25052622,-0.0010803342,0.18387169,-0.2835257,0.068689846,-0.30527496,-0.08209729,0.78736913,-0.18107529,0.099369705,-0.7328191,-0.280164,-0.9776161,-0.46681684,0.680002,0.19958304,-0.051963042,-0.47569248,-0.1366793,0.056594,-0.3259861,-0.14956485,-0.3656422,0.39172444,0.12778854,0.2654726,-0.16212979,-0.72429556,0.14244741,0.11194228,-0.2971381,-0.42952323,0.38934952,-0.121523425,0.8663033,-0.023142532,-0.017417647,0.45215666,-0.5171739,-0.08851802,-0.21127596,-0.35190645,-0.52892,-0.008576974,449 +65,0.22598192,-0.14704128,-0.4802016,-0.21707061,-0.36286235,0.27551383,-0.18881808,0.15421484,0.056256443,-0.3439699,0.09499914,-0.0983002,-0.0483315,0.393104,-0.14326088,-0.5673921,-0.20408352,0.070091605,-0.6212999,0.307875,-0.522283,0.21583879,0.007793518,0.32109743,-0.09802556,0.36401957,0.23417568,-0.09057612,-0.19444169,0.03618993,-0.026745811,0.2544534,-0.7449648,0.138161,-0.039593115,-0.37540373,0.0061710607,-0.49466923,-0.17681544,-0.544883,0.3931712,-0.6512866,0.44309294,-0.28879482,-0.26165378,0.34187365,0.12673828,0.15932246,-0.17740327,0.07343279,0.31826785,-0.1258495,0.026288792,-0.08716062,-0.22898212,-0.5048188,-0.52942973,0.037570275,-0.632686,-0.2035349,-0.062262937,0.31249607,-0.25325978,0.13936058,-0.2563444,0.47718427,-0.31149256,-0.13128768,0.15848434,-0.14345893,0.14446178,-0.4469445,-0.023959897,-0.08856875,0.2621118,-0.20544076,-0.07699002,0.18009098,0.2822536,0.5262426,0.016247459,-0.24554682,-0.22145209,0.044900164,0.0017741807,0.53392154,-0.17064436,-0.21491466,-0.27937284,-0.074729964,0.0035257116,0.15412365,-0.076361254,-0.4209164,0.031939052,0.11500387,-0.30270717,0.27208275,0.32828763,-0.4862051,-0.39123982,0.46439302,0.4293394,0.05343821,-0.06937809,0.06103646,0.021590006,-0.5213231,-0.20480044,0.22691236,-0.11758771,0.42272168,-0.10739444,0.33192444,0.726435,-0.062053256,0.033110507,-0.22461616,-0.16674669,0.033019163,-0.3300775,0.10497814,0.066264525,-0.38181728,0.014035106,-0.12216644,0.59227043,0.08995489,-0.9354814,0.43233728,-0.43040052,0.03624121,-0.103258036,0.5435747,0.7184311,0.32337683,0.079789676,0.7697381,-0.45175475,0.114396304,-0.0942882,-0.3598317,0.14024192,0.012282187,0.081899874,-0.5603795,0.05543811,-0.011547431,0.11982538,0.007985719,0.30374515,-0.4562404,-0.013394954,0.073623866,0.66549623,-0.41210154,-0.11169527,0.6378954,0.9504164,0.85938656,0.08560973,1.3678887,0.1416264,-0.17450625,0.16355726,-0.37544698,-0.45186585,0.2090607,0.41268957,0.2052103,0.29077336,0.07035284,0.16727988,0.49613026,-0.18224987,0.12933797,-0.031065881,0.22219652,0.021806091,0.02042232,-0.41360652,-0.32452428,0.23342748,0.036298703,0.060905192,0.1543421,-0.25993603,0.40286216,0.2930674,1.5485425,-0.0189918,0.12122854,-0.029953208,0.35484648,0.18888947,-0.14245686,-0.12987724,0.31320268,0.27098596,-0.040958658,-0.5034377,0.11625085,-0.2382931,-0.44734418,-0.22986774,-0.3217116,-0.17541833,-0.2187088,-0.50167215,-0.12575956,0.13757363,-0.40869397,0.4432089,-2.7010183,-0.23842812,-0.17687248,0.2601503,-0.24059968,-0.4056443,-0.20391896,-0.3823119,0.27778608,0.4299889,0.2753017,-0.49055988,0.46376395,0.305305,-0.37366667,-0.1638025,-0.6366556,-0.082159504,-0.03387029,0.3015849,-0.045229845,-0.18679003,-0.40642434,0.37184578,0.42758536,-0.13441455,-0.017608348,0.19900338,0.4119978,0.23084883,0.5284231,0.0672026,0.5259764,-0.160936,-0.17368217,0.4814654,-0.36118937,0.15895325,0.053914744,0.2442011,0.3374262,-0.40994874,-0.914415,-0.6236252,-0.52242017,1.0922521,-0.31241214,-0.2963379,0.32823354,0.04355661,-0.29751757,0.07999496,0.39373308,-0.0802742,-0.004449159,-0.7350051,0.09415972,-0.06466375,0.25830793,-0.09293306,0.12403967,-0.45377126,0.508965,-0.113721065,0.51200986,0.41616723,0.17573214,-0.14390258,-0.317109,0.08274028,0.9492088,0.3600951,0.13371946,-0.08772094,-0.14890921,-0.16152011,-0.01218842,0.044978116,0.35519475,0.6565174,0.12549052,0.11861106,0.22592515,-0.123306304,0.071919374,-0.12233967,-0.26499572,0.011826862,0.046092805,0.4781881,0.42676806,-0.16973895,0.3711821,-0.18041152,0.22331145,-0.063535474,-0.4380718,0.32244635,0.63713485,-0.24096352,-0.07409754,0.49756077,0.43792728,-0.32434595,0.4272977,-0.5586835,-0.2997716,0.6269775,-0.21539661,-0.38385433,-0.015025707,-0.2500465,0.043417193,-0.8127221,0.16979682,-0.013463385,-0.41457024,-0.46318468,-0.26876402,-3.870001,0.0947949,-0.050552018,-0.1447643,0.005239073,-0.16067955,0.3910193,-0.47567138,-0.5923235,0.06705904,-0.022887034,0.53488064,-0.006457641,0.21659933,-0.36267963,-0.11140807,-0.21119049,0.35422483,0.09666634,0.1964644,0.05440402,-0.4540282,0.09975171,-0.40017825,-0.53439784,0.040644504,-0.5807479,-0.4846521,-0.056118302,-0.53765595,-0.4295488,0.6412203,-0.40204066,-0.17330424,-0.2660118,0.03680952,-0.08497603,0.42360196,0.153298,0.08243161,0.17792304,0.04714998,-0.091290414,-0.26183882,0.2554933,0.12789086,0.19527617,0.37850052,0.06461582,0.1847245,0.5271435,0.5492724,0.046953607,0.7649541,0.28913218,-0.062866405,0.40293303,-0.3261062,-0.12616327,-0.6374715,-0.384049,-0.13067816,-0.46195945,-0.49337703,-0.12239413,-0.32744747,-0.6728476,0.50589323,-0.005263649,0.0432387,-0.061945453,0.31313795,0.3211658,-0.2841724,0.14549205,-0.15014508,-0.11811862,-0.3794502,-0.5567817,-0.74002546,-0.60272145,0.02773913,1.130861,0.022730805,-0.112600096,-0.0030780416,-0.2007648,-0.031056521,0.03939039,0.19867729,0.41758382,0.46819204,-0.1476932,-0.6596226,0.4115237,-0.20963445,-0.041108966,-0.4366982,-0.014225777,0.5440885,-0.5310623,0.5661672,0.39880446,0.25005454,0.2366188,-0.5254879,-0.08574413,0.08046149,-0.33594278,0.58692735,0.18331897,-0.6706763,0.61883885,0.05242539,-0.14160529,-0.7879046,0.50766546,0.020081358,-0.07873233,-0.010601282,0.38525462,0.14219564,-0.052764155,-0.061375733,0.14932458,-0.5769143,0.40474677,0.32981744,0.10677385,0.6378317,-0.20200537,-0.17910227,-0.6073359,-0.3360908,-0.29496664,-0.30660677,0.019376144,-0.09696242,0.19000946,0.2749746,-0.10723195,0.48153383,-0.36498195,0.044942234,0.020230232,-0.2458959,0.17431377,0.4908017,0.2888213,-0.34581813,0.5213029,-0.04480501,-0.0752602,-0.20581105,-0.043596677,0.46152824,0.2594477,0.15499511,-0.05081825,-0.20164655,0.21306089,0.67019266,0.17821836,0.23500627,-0.091271624,-0.3363743,0.36548933,0.047398932,0.017566182,0.024836209,-0.31876695,-0.05684479,0.080826394,0.15005532,0.38751876,0.06388682,0.30878842,-0.12560558,-0.08890858,0.22197025,0.22168922,-0.26315874,-0.8766723,0.19305782,0.19607541,0.74997675,0.62120634,0.07947743,0.100240335,0.4551384,-0.48253673,0.07055997,0.3856783,0.0105064325,-0.43073803,0.59671456,-0.54189473,0.5378555,-0.19252436,-0.091198534,0.21776988,0.07926008,0.37198704,0.9700892,-0.027837114,0.11445622,0.11248578,-0.19074306,0.2082431,-0.11651388,0.077413514,-0.4098337,-0.24659565,0.5454876,0.44707555,0.28016573,-0.2791644,-0.07379182,-0.007116899,-0.20204921,0.08049305,-0.027828919,-0.14480115,0.037289813,-0.6502512,-0.38413623,0.5956988,0.062239453,0.042303268,0.13607839,-0.48799267,0.22863227,-0.10139086,-0.101408824,0.045916293,-0.5986979,-0.1373642,-0.28260228,-0.42323795,0.2542542,-0.36506084,0.18046221,-0.012801062,0.10490905,-0.35719785,0.128961,0.3117949,0.71973586,0.12066104,-0.059059393,-0.32097036,-0.01212462,0.25011328,-0.2947186,-0.11788149,-0.5099107,0.12619361,-0.5667951,0.4993897,-0.10529021,-0.27905786,0.1307096,-0.033448223,0.12688282,0.37986827,-0.011921838,-0.06855072,0.0009443313,0.1789008,-0.32674092,0.02246768,-0.45706275,0.2047306,0.06467896,-0.03290601,-0.020716127,-0.09970578,-0.2446508,0.51539016,0.21861903,0.26193422,0.28025293,0.043723043,-0.45924503,-0.049840495,-0.078095034,0.44846165,-0.055913553,-0.04544067,-0.27180344,-0.17955947,-0.18365355,0.47326186,-0.17983934,0.1447188,-0.01913283,-0.41125822,0.7068318,-0.007159304,1.1353136,0.13685548,-0.3200521,-0.010280365,0.40146077,-0.023532137,0.08877006,-0.52400994,0.8506818,0.5197318,-0.012093529,-0.24015653,-0.26018003,-0.17627132,0.20478255,-0.22207892,-0.1438382,-0.27307895,-0.7808904,-0.3905439,0.20288897,0.15666184,0.13970375,-0.015126124,0.034228116,0.071584545,0.12293695,0.54016364,-0.4450764,-0.10285192,0.3221038,0.3161898,-0.052951746,0.26152647,-0.31765977,0.5352662,-0.68677163,0.17328432,-0.42982662,0.04310813,-0.034110785,-0.14337021,0.10522288,0.0679626,0.37519386,-0.088732034,-0.40883997,-0.25242853,0.6201448,0.17328137,0.2116833,0.876794,-0.11798394,0.038947098,0.0121004805,0.44292507,1.1887664,-0.1686776,0.05479254,0.28881717,-0.17349233,-0.5630528,0.014228843,-0.4302585,0.031738523,-0.011990827,-0.22313325,-0.2746358,0.2730739,0.11880739,0.057392247,-0.042754944,-0.43954644,-0.022629414,0.6017995,-0.23334141,-0.21343043,-0.25064445,0.39434183,0.80991906,-0.43524095,-0.1780205,0.02049881,0.4578419,-0.2716961,-0.62481165,0.06375962,-0.4620058,0.4910628,0.11026174,-0.3507744,-0.004684329,0.19566101,-0.4028417,0.13506323,0.45807797,-0.3389226,-0.12852094,-0.23728588,-0.1158249,1.018357,0.10697491,0.095880345,-0.64334273,-0.51132196,-0.96838784,-0.19366743,0.14611197,0.14554307,-0.069098376,-0.30588046,-0.08012816,-0.22416013,-0.08496731,0.021409549,-0.5902253,0.36446336,0.09387514,0.61006564,-0.10275406,-0.81737924,-0.18555461,0.22805361,-0.10873905,-0.41636622,0.6150006,-0.06004535,0.7063208,0.108304225,-0.031229373,0.09897095,-0.42187372,0.26937163,-0.52702576,-0.069725245,-0.76809734,0.18014172,450 +66,0.44451973,-0.06777794,-0.38291168,-0.0038338602,-0.31688014,0.02914986,-0.2508967,0.4923315,0.23566605,-0.32713547,-0.1831372,-0.036829036,-0.014817439,0.23789813,-0.24548829,-0.5223285,-0.064763695,0.12193075,-0.36237022,0.7347952,-0.5016438,0.3008681,-0.04464761,0.4188319,0.37594706,0.20466378,0.12638833,-0.10129751,-0.22232948,-0.19745469,-0.11029577,0.3409887,-0.47375646,0.061071333,-0.28694737,-0.39242396,-0.026016124,-0.4874332,-0.42605647,-0.76386636,0.4239806,-0.7342169,0.4664576,0.0022662356,-0.2888924,0.37185726,0.053959988,0.24904229,-0.26739687,-0.08375195,0.14226021,-0.15141456,-0.019681713,-0.04668682,-0.21754856,-0.33891475,-0.58661103,0.023738967,-0.5496067,-0.08387506,-0.34072948,0.18507214,-0.26500246,-0.10122241,-0.029292833,0.5494766,-0.48706818,-0.1090345,-0.03735688,-0.04594233,0.21369919,-0.6222775,-0.22305241,-0.15051597,0.10786004,-0.07948608,-0.21273804,0.18319933,0.24062651,0.42880958,-0.01317884,-0.11316859,-0.39038694,-0.096172765,0.12277517,0.3660905,-0.115550384,-0.673371,-0.19699025,-0.10967422,0.2591704,0.1772237,0.08197195,-0.29399154,0.0126642175,0.10938469,-0.3154379,0.5251929,0.48738348,-0.2958049,-0.2155606,0.3477167,0.52226764,0.33037752,-0.18543407,0.017803643,-0.12711716,-0.49858353,-0.12804465,-0.06330104,-0.23419383,0.6316476,-0.094241664,0.21832013,0.56541204,-0.11450455,0.042809837,0.055936992,-0.07677792,-0.1112079,-0.32331538,-0.2848594,0.12376417,-0.43452936,0.24577479,-0.13783154,0.72263384,0.07565626,-0.6802199,0.34116754,-0.4919788,0.11431542,-0.032837983,0.5469432,0.6505781,0.37029755,0.36792317,0.6695604,-0.34103954,0.02082435,-0.13603044,-0.21642052,-0.06354219,-0.034951046,-0.13193047,-0.42580673,0.018373914,-0.053118654,-0.10929192,0.039199136,0.41604453,-0.5017575,-0.054005772,0.12805289,0.71409607,-0.29085478,-0.07647378,0.8556314,1.1425065,1.0760148,0.03557445,1.0842618,0.20835245,-0.06692393,0.1132528,-0.26821935,-0.6544961,0.24313305,0.37278375,-0.14720689,0.22906367,0.06738509,-0.04024055,0.39809844,-0.446795,-0.11443657,-0.17430696,0.23225449,0.12024864,0.062289752,-0.3886023,-0.24298842,0.01716935,0.087207526,0.15002133,0.25291318,-0.34926063,0.19671628,0.1545543,1.4659207,-0.15281264,0.021466812,0.1014271,0.5648393,0.19211501,-0.08212135,-0.028433712,0.40524265,0.40325058,-0.021626819,-0.6482338,0.12031908,-0.25453612,-0.47492322,-0.07264534,-0.3112328,-0.09192243,0.05132623,-0.41051474,-0.07318407,-0.17721938,-0.3708339,0.45419282,-2.7536168,-0.15270236,-0.04653553,0.20823461,-0.14464577,-0.32458925,-0.048686326,-0.43740407,0.3691236,0.2655349,0.44175178,-0.6442204,0.34960496,0.5631918,-0.4603828,-0.1599013,-0.6648611,-0.14000735,-0.08418821,0.56283516,-0.078805976,-0.020991009,0.029287234,0.12753011,0.5973617,0.06469574,0.20755492,0.25151545,0.37594542,0.0104018,0.4579154,-0.007879738,0.43206176,-0.12821057,-0.14657554,0.40616497,-0.30269742,0.26273844,-0.101374015,0.1903985,0.43912786,-0.5121552,-0.84748685,-0.6407411,-0.14910227,1.2123936,-0.24234863,-0.47750688,0.35077983,-0.26421806,-0.21954764,-0.03305676,0.44508117,-0.15854552,-0.11274975,-0.8308129,0.04508332,-0.15943623,0.095801525,-0.012042571,0.18231307,-0.3126626,0.6530933,-0.05925186,0.46873713,0.3610234,0.29976672,-0.33079976,-0.54814065,0.06403111,0.9431645,0.4425941,0.09532687,-0.2689594,-0.21011055,-0.25430292,0.0097181,0.063757256,0.58080786,0.63898325,-0.026053607,0.15312195,0.27615112,0.052194938,-0.035898883,-0.22418845,-0.20704222,-0.08090404,0.06050422,0.4847383,0.62873775,-0.19855219,0.4492002,-0.04957623,0.20184776,-0.21187623,-0.39393225,0.52469933,0.9672699,-0.28322253,-0.23269756,0.6873698,0.4908156,-0.1838714,0.4950112,-0.66467535,-0.27071157,0.48288906,-0.20988426,-0.3646203,0.29922628,-0.2930065,0.060858823,-0.7907873,0.27531672,-0.26698905,-0.521835,-0.53953683,-0.1823678,-3.1462991,0.13264632,-0.27978426,-0.25239056,-0.18855456,-0.2683702,0.2943592,-0.5671748,-0.5288675,0.15768687,0.15566182,0.5534224,-0.11463793,0.08209873,-0.29640007,-0.3118907,-0.30277023,0.1670716,0.122449346,0.4158468,-0.1017957,-0.400038,-0.074641734,-0.14714362,-0.39307266,-0.027425893,-0.41844198,-0.33989957,-0.0845892,-0.47680607,-0.23309009,0.60240465,-0.39279908,0.06259271,-0.26520035,-0.11259332,-0.13277516,0.36271882,0.17651027,0.13895501,0.018046834,0.0033735633,0.07413352,-0.33512992,0.1344399,0.058271248,0.08183143,0.38644612,-0.137214,0.20181426,0.3786648,0.6528541,-0.18604976,1.0017946,0.5554738,-0.13660459,0.30906227,-0.28167748,-0.28550193,-0.67691904,-0.2925469,-0.12635976,-0.40517175,-0.4923787,-0.20088254,-0.2886993,-0.78268373,0.54466355,-0.025885087,0.40203723,-0.041653357,0.24843833,0.49556762,-0.20138445,-0.018974576,-0.010221276,-0.06315457,-0.5178822,-0.30074394,-0.69728166,-0.46229795,0.018275179,0.79342675,-0.11027445,-0.049983546,0.10064432,-0.26637352,-0.038553976,0.052641194,0.08889316,0.14037831,0.47992235,-0.092603736,-0.67754686,0.39946085,-0.109763905,-0.11021565,-0.486022,0.1460569,0.5765082,-0.5845129,0.51931703,0.40864965,0.14687406,-0.123056054,-0.55641335,-0.20945549,-0.06269771,-0.18733217,0.5353543,0.30553308,-0.86182994,0.51712114,0.35761335,-0.16000679,-0.7724113,0.60773903,-0.08556959,-0.23654185,-0.013525642,0.36927155,0.17555135,0.060530674,-0.21562648,0.24285273,-0.30118787,0.317926,0.19247016,-0.18124986,0.22031385,-0.2722426,-0.12347363,-0.6888721,-0.0027132947,-0.47187635,-0.2663832,0.07643427,0.08123036,0.060416117,0.10192925,-0.079160444,0.4199191,-0.2614801,0.19619244,-0.03852416,-0.09816493,0.25484952,0.5675283,0.5387718,-0.30057555,0.6006624,0.04099491,-0.18757536,0.028604329,0.024581715,0.33817077,-0.06748944,0.34361777,0.069985986,-0.18328172,0.29266214,0.6475818,0.32609093,0.4856341,-0.039775558,-0.26801598,0.364773,0.15719143,0.35223448,-0.011515968,-0.5392587,-0.12550119,-0.20869207,0.14730604,0.6046226,0.18772054,0.33278278,-0.10720987,-0.19309412,0.04797052,0.15035373,-0.1499036,-1.2298027,0.27054662,0.15357584,0.7945816,0.6205452,-0.027833328,0.09872344,0.4852047,-0.22112998,0.06378875,0.44937187,0.23837943,-0.5269819,0.52585006,-0.66334,0.41065407,-0.095590755,0.03694419,0.046858825,-0.06429562,0.39690065,0.72412944,-0.24871151,0.08039221,0.013459016,-0.23536706,0.16490573,-0.2758496,0.10605101,-0.54851794,-0.25322825,0.6289884,0.6066642,0.31267664,-0.19809729,-0.005204918,0.10131423,-0.13338028,0.0687109,0.06552385,0.06769795,-0.16444421,-0.5765429,-0.24847682,0.47842526,-0.12210417,0.14073858,-0.06032449,-0.2514394,0.13959911,-0.067992695,-0.16648962,0.037792232,-0.6601176,-0.12724699,-0.19304094,-0.40199634,0.47108808,-0.20147073,0.21676925,0.085765116,0.07976898,-0.28404468,0.19312029,0.17117447,0.589793,-0.039467134,0.01888372,-0.285039,0.10505855,0.18411678,-0.0926998,-0.29246548,-0.31249565,-0.00074471533,-0.6613401,0.37855187,-0.06512237,-0.26753864,0.0957139,-0.16377449,0.06555029,0.56517863,-0.063127816,-0.1984927,0.0003274083,-0.063894585,-0.27442718,-0.19134885,-0.059544142,0.24685512,0.19984448,-0.11109781,-0.09896722,-0.06597288,-0.0633425,0.3933593,-0.01887973,0.4430727,0.3050281,0.13863814,-0.33240163,-0.11533095,0.15392056,0.46188238,0.027466774,-0.10235011,-0.16668658,-0.37742162,-0.3756345,0.17081767,-0.19404143,0.24598739,0.13912337,-0.3390203,0.77799976,0.1594173,1.1762954,0.03674459,-0.4078716,0.12917727,0.57666075,-0.10324524,0.030529492,-0.34246397,0.9320572,0.38197276,-0.13897514,-0.11877288,-0.3968167,0.008849807,0.27867374,-0.1897199,-0.16723382,-0.12287509,-0.5148517,-0.18317926,0.1886808,0.3113378,0.097045176,-0.11769718,-0.07414428,0.216025,0.086898655,0.538249,-0.3757646,-0.079340115,0.41433382,0.16810873,-0.03944129,0.14011088,-0.4238382,0.4069624,-0.46415478,-0.040726773,-0.30735183,0.1407053,-0.30569148,-0.3194595,0.24381743,0.017359853,0.3997707,-0.29232085,-0.4125139,-0.29271212,0.5014888,0.021634974,0.12829491,0.5011674,-0.2793029,0.13048176,-0.10696965,0.37626055,0.9781264,-0.30411306,-0.055457935,0.28805977,-0.37831524,-0.63675284,0.27274507,-0.42542124,0.11738002,0.0074362457,-0.23366284,-0.524865,0.34007865,0.16152069,0.024296202,0.019312967,-0.6829386,-0.117222086,0.32204992,-0.1196831,-0.16553196,-0.15459979,0.008027852,0.6825529,-0.32626113,-0.50765926,-0.03786192,0.27866322,-0.13483879,-0.6515809,-0.05494752,-0.3682592,0.361497,0.20074086,-0.23004934,-0.06742695,0.15392676,-0.49556336,-0.031052908,0.1737881,-0.29925418,0.024612581,-0.31943184,0.07910969,0.98359096,-0.12412379,0.22004616,-0.43851113,-0.48017263,-0.855254,-0.37630552,0.28315437,0.18217164,0.11232138,-0.5811115,0.13712528,-0.21906734,-0.08883226,-0.06112693,-0.4637902,0.4910633,0.1343608,0.49405006,-0.11999388,-0.7669378,0.03328792,0.09167336,-0.033004276,-0.5478617,0.5293842,0.039621197,0.7475435,0.082084246,0.13359918,0.13318242,-0.49829382,-0.003601674,-0.22780731,-0.18621401,-0.66213256,0.15509748,451 +67,0.48970097,-0.32276142,-0.509445,-0.0620706,-0.3854331,0.19760817,-0.258139,0.46204883,0.15324987,-0.32348865,-0.1210406,-0.11008004,0.018158004,0.33181438,-0.21578357,-0.41942397,-0.022813495,0.25501424,-0.5014791,0.67894506,-0.30667183,0.21472132,0.0017515756,0.34469363,0.31669858,0.2546714,0.1024344,-0.063586965,-0.26295578,-0.19464673,-0.23268732,0.3373986,-0.48450148,0.1759124,-0.072651595,-0.254166,0.0048796833,-0.42561036,-0.3466012,-0.7584709,0.32438725,-0.8264398,0.4861465,-0.08777632,-0.3636867,0.28795016,0.12640406,0.412204,-0.28201497,-0.100007996,0.2330973,-0.1641739,-0.08628783,-0.17794566,-0.102689624,-0.38586792,-0.5238595,0.063566096,-0.3803897,-0.16828367,-0.30121797,0.25154412,-0.2422475,0.04215671,-0.14886901,0.5708462,-0.53566384,0.19413164,0.16417266,-0.15734394,0.227756,-0.73700416,-0.07526253,-0.058123313,0.31198555,-0.038200885,-0.09355421,0.2579234,0.40374434,0.32284224,0.14027551,-0.24838696,-0.34498224,-0.14935295,0.048087835,0.42178017,-0.13827959,-0.52236277,-0.19118766,0.02486898,0.22405028,0.16528897,0.13619584,-0.335005,-0.11715815,0.014294378,-0.28115225,0.26518577,0.41056812,-0.3454664,-0.087646246,0.38826802,0.64591306,0.15218475,-0.244184,-0.17191675,-0.08567284,-0.57884896,-0.09219212,0.06729093,-0.2760769,0.64535713,-0.15161923,0.27760905,0.7130016,-0.11050324,-0.08690968,0.07976746,0.08052409,-0.27882788,-0.29499745,-0.25835183,0.09831718,-0.44723392,0.20034893,-0.09247703,0.8402555,0.07776435,-0.6234559,0.3423978,-0.5073413,0.13393575,-0.093979806,0.3833142,0.56892,0.4359953,0.36285952,0.639001,-0.30680227,0.10858681,-0.016439393,-0.5338692,-0.037208844,-0.08492889,-0.11571526,-0.5730232,0.14816184,-0.17035851,-0.08483715,-0.050063718,0.5670221,-0.47739226,0.017113568,0.1124806,0.8353871,-0.3221863,-0.15615767,0.717543,0.94484115,0.97533476,-0.0047452133,1.1025677,0.29995626,-0.24126339,0.07030912,-0.35386258,-0.5255387,0.34388286,0.5524342,-0.25514922,0.25553113,0.07773158,-0.029661588,0.54336655,-0.31317538,-0.03463526,-0.263694,0.0969519,0.12560445,-0.085333765,-0.44963673,-0.27631387,0.02593896,0.17204918,0.1273557,0.2188404,-0.15032417,0.47286817,0.22010756,1.7044631,-0.08853501,0.03666447,0.075439006,0.42826995,0.19254096,-0.09818779,-0.073300764,0.35728267,0.46350855,0.108758986,-0.5125749,0.08682604,-0.28448057,-0.5309621,-0.16011393,-0.28265935,-0.21276754,0.060323734,-0.48142153,-0.11940314,-0.1408792,-0.16588038,0.45379433,-2.643458,-0.16761643,-0.2237351,0.12839699,-0.3098777,-0.41528794,0.12344752,-0.5201182,0.30826676,0.32682756,0.4810847,-0.668568,0.38753864,0.29980943,-0.57107794,-0.053578023,-0.5873326,-0.24208283,-0.05329942,0.5030776,0.0015882179,-0.14431137,-0.023171319,0.04030416,0.5273109,-0.096485965,0.18695399,0.36353108,0.3820011,-0.0080924295,0.5854372,0.07705639,0.52290344,-0.09054742,-0.21995142,0.35291195,-0.22963293,0.33799717,-0.071812235,0.13399519,0.49245805,-0.3967871,-0.83425,-0.72561157,-0.06584716,1.2695539,-0.27397025,-0.4630765,0.24652296,-0.2365973,-0.242399,0.0064395815,0.33283696,-0.10885172,-0.046094354,-0.7991662,0.14408064,-0.055113524,0.12414143,0.0012358124,-0.19141684,-0.43286628,0.78256494,-0.06816846,0.47005978,0.4062553,0.13754618,-0.24049722,-0.39082196,0.008410774,0.93088365,0.45103303,0.047175743,-0.22429474,-0.19290179,-0.42619365,-0.083465174,0.046255924,0.42827308,0.5216249,0.06451161,0.11867438,0.22310662,-0.03459706,0.09500594,-0.24075955,-0.2437467,-0.0671417,0.012902714,0.55663514,0.6390604,-0.06593032,0.5407279,-0.17522226,0.3081977,-0.10864829,-0.510605,0.5392504,1.0585954,-0.27400675,-0.4313878,0.66594183,0.48913875,-0.17108703,0.33543938,-0.5188717,-0.27497625,0.48498607,-0.16752735,-0.45465022,0.19539948,-0.23373866,0.07248755,-0.87685776,0.20548517,-0.2029157,-0.457323,-0.5109947,-0.12270189,-3.195571,0.34710085,-0.3287048,-0.23440051,-0.12117391,-0.2563947,0.14349256,-0.7080406,-0.48223782,0.14339083,0.0945201,0.55100477,-0.055667117,0.12009959,-0.24235836,-0.19747202,-0.15235332,0.15257987,0.075938694,0.2454537,-0.19045007,-0.5352179,0.009226784,-0.07062844,-0.445978,0.015832044,-0.7417289,-0.48288274,-0.12648734,-0.48050362,-0.23030525,0.60248566,-0.31749308,0.08055529,-0.23101917,0.075581625,-0.0918278,0.19094688,0.05693923,0.14268251,0.0035192445,-0.12596343,0.13994552,-0.3406114,0.33406222,0.04381404,0.25181264,0.14118709,-0.06478939,0.26848477,0.39578474,0.62147415,-0.28127626,0.93217945,0.4956536,-0.14938852,0.23102091,-0.09236546,-0.3045879,-0.63632417,-0.3070701,0.027231136,-0.4377269,-0.43335178,-0.07561239,-0.32656693,-0.6774234,0.6479883,-0.011980869,0.12385017,0.019565325,0.3232325,0.6336721,-0.31901518,-0.041662183,-0.049762227,-0.17515975,-0.6120002,-0.31692243,-0.6161394,-0.4607687,0.0317719,0.9710592,-0.10486682,0.10890836,0.031396504,-0.3492474,-0.040236253,0.10653034,-0.028407812,0.26652187,0.48387605,-0.31348825,-0.75922894,0.49850577,-0.14512874,-0.15196311,-0.41803855,0.24808578,0.50849825,-0.5330438,0.5567065,0.39298213,0.104588866,-0.10215707,-0.50352454,-0.18538481,-0.040048257,-0.2825718,0.52523047,0.25670782,-0.623187,0.44068852,0.23625849,-0.19107732,-0.8110782,0.5083675,-0.09952819,-0.3322938,-0.10341464,0.33969408,0.089785166,-0.02013378,-0.3421531,0.08648404,-0.45016196,0.3011569,0.20414749,-0.14426383,0.08504156,-0.22838682,-0.1344189,-0.7712926,-0.0106553435,-0.4195356,-0.30323777,0.25534463,0.03792236,0.01841122,0.10593267,0.10071339,0.32570624,-0.26860946,0.11731429,-0.04675115,-0.22423631,0.33028957,0.45978576,0.51827574,-0.465937,0.5833431,0.05682816,-0.12173832,-0.2238775,0.027761621,0.47544292,0.08923195,0.5114964,-0.061783433,-0.20256913,0.4504501,0.60836923,0.24651252,0.5850314,-0.032466464,-0.15768981,0.12902877,0.053638235,0.29628605,0.0916736,-0.7127294,0.06591556,-0.2612139,0.14994349,0.5936433,0.13701922,0.32430965,-0.07145752,-0.30091915,0.073403716,0.119475275,0.0808194,-1.1351147,0.28080425,0.3514469,0.8403541,0.31893685,-0.026409669,-0.07377981,0.8189286,-0.31465888,0.08291411,0.4420582,0.07933493,-0.5203424,0.53158593,-0.8614752,0.37543654,-0.07085427,-0.02655089,0.09822014,-0.077863224,0.29018986,0.82717264,-0.2340567,-0.00857158,-0.0017406233,-0.42128327,0.163911,-0.35627538,-0.056303486,-0.57462424,-0.38973498,0.6324439,0.5897278,0.35055888,-0.15913455,0.057030357,0.12182324,-0.14733325,0.13761525,0.17178038,0.18513367,-0.009742692,-0.71741253,-0.19389603,0.45595014,0.0677336,0.23454629,-0.033938095,-0.18436322,0.2995515,-0.3279135,-0.09678719,-0.02364346,-0.6404318,-0.06108529,-0.15324357,-0.46335512,0.43308616,-0.12176325,0.14070715,0.13802476,0.10148922,-0.26724374,0.38658562,-0.008608237,0.8713978,0.21946555,-0.087707594,-0.29337186,0.20355272,0.06198311,-0.054784898,-0.061982546,-0.3737753,-0.012017764,-0.6699569,0.39380258,-0.046174247,-0.40742528,0.05427464,-0.17178309,-0.022128914,0.50164247,-0.07556046,-0.18383336,-0.03953463,-0.0049901716,-0.24012433,-0.28313613,-0.07801247,0.24756631,0.3045053,0.14060326,-0.17380938,-0.011570256,-0.18330187,0.4921417,-0.06377886,0.4344408,0.3125077,-0.08318418,-0.2620198,-0.21271215,0.20437667,0.4959507,-0.15720508,-0.16094969,-0.33249578,-0.5401356,-0.26201954,0.1363696,-0.045971952,0.39555544,0.11891541,-0.09909913,0.8653343,-0.16073205,1.2918534,0.11247928,-0.44905084,0.083904065,0.53866446,0.052082345,0.0377296,-0.30972183,0.926319,0.41882673,-0.022311486,-0.14763291,-0.4721365,0.020580132,0.19914341,-0.16595855,-0.018769763,-0.053506725,-0.55767536,-0.2878722,0.16859865,0.293901,0.1841661,-0.0074113384,-0.015651532,0.32804614,-0.059606872,0.41697615,-0.4413898,-0.30353385,0.2859838,0.21074477,-0.18393797,0.14545287,-0.5732469,0.44392833,-0.4445724,0.062199183,-0.35933742,0.13245098,-0.26504534,-0.23966569,0.26538843,-0.1119862,0.43508995,-0.4312979,-0.32284388,-0.30503932,0.55198914,0.22846103,0.14157641,0.550936,-0.37935892,0.09960551,0.12231882,0.44076028,0.7941428,-0.39845937,-0.0061109215,0.34992123,-0.2744378,-0.5496887,0.38279977,-0.18905377,0.11859644,0.24497643,-0.21750113,-0.44769618,0.36527988,0.109735295,0.007871866,0.041426525,-0.654228,0.031506464,0.44645756,-0.25204408,-0.079257235,-0.18408753,0.28584963,0.49928206,-0.32786208,-0.57864964,-0.00844142,0.21703897,-0.08544268,-0.46699697,-0.08930599,-0.36706057,0.34453255,0.090391815,-0.28847805,-0.17205751,0.087539315,-0.43522334,0.093107104,0.26710725,-0.38683122,0.08973021,-0.30102712,-0.12080374,0.9234961,-0.17062879,0.108650714,-0.6512611,-0.35618982,-0.7097651,-0.32116538,0.32659364,0.04021185,0.049080513,-0.6129118,-0.07383104,-0.2497979,-0.12824732,-0.05046953,-0.43088073,0.50025785,0.15235186,0.4904371,-0.052194238,-0.6710453,0.20549473,0.024793053,-0.12652586,-0.5641483,0.54020065,-0.14033356,0.8256649,-0.0131118875,0.20374253,0.26401767,-0.4817716,-0.072721004,-0.32579908,-0.18521973,-0.81394434,-0.007047821,452 +68,0.46886176,-0.20655255,-0.50999033,-0.091684714,-0.6117102,0.2628128,-0.27889287,0.14959493,0.31676427,-0.102021545,0.0009845495,0.07542877,-0.2813149,0.10118657,-0.033966456,-0.76311255,0.017253434,0.17665136,-0.8920032,0.744076,-0.22363731,0.4140101,-0.04420373,0.31545222,0.3223034,0.30333897,-0.07330459,0.17331488,-0.07672019,-0.34821,-0.1779687,0.18228498,-0.8017271,0.35697597,-0.17195912,-0.40947077,-0.20928656,-0.47712898,-0.40577838,-0.85139036,0.37212974,-0.8813901,0.62935936,-0.07161838,-0.39397725,-0.10620861,0.23227058,0.27693313,-0.031708367,0.016603947,0.24329174,-0.31553406,-0.091291174,-0.262283,-0.19172777,-0.363216,-0.537453,-0.12543283,-0.46770066,-0.033845823,-0.21627282,0.28339833,-0.2535229,-0.056898817,-0.40039742,0.33827555,-0.35090846,0.401268,0.18362041,-0.17732322,-0.011755854,-0.50617224,-0.10181446,-0.22773688,0.25630015,0.1926043,-0.35899085,0.53880864,0.14298989,0.6441521,0.31087554,-0.34843552,-0.15738031,-0.13525237,0.05363472,0.38265058,-0.11683048,0.04954748,-0.42046145,-0.089656994,0.6351906,0.25064075,0.036209546,-0.33580002,0.057252493,-0.28727943,0.028154664,0.48050198,0.4894942,-0.18709736,-0.008874422,0.28924564,0.5340191,0.30396247,-0.34216374,0.22500226,-0.17352013,-0.26117414,-0.22058612,0.352058,-0.07028316,0.37794134,-0.08020733,-0.008578233,0.5954622,-0.098250926,-0.17038958,0.05121132,-0.03517825,0.10502272,-0.33224568,-0.18408865,0.26997474,-0.5671518,0.2018272,-0.29931185,0.5525721,0.16025999,-0.7326907,0.32136112,-0.61770296,0.22358626,0.04515131,0.65415835,1.0332575,0.66650796,0.08271735,0.921232,-0.22166233,0.16777661,-0.04476242,-0.044198558,-0.03138814,-0.13331935,0.14486621,-0.43219256,0.14739797,-0.3078986,-0.13846162,-0.032005645,0.29609054,-0.4280653,-0.24950144,-0.06652584,0.5531924,-0.29108217,0.10532327,1.0396514,0.8870115,1.0604074,0.12585822,1.1074481,0.28849345,-0.1441488,-0.3450408,-0.011246502,-0.55182517,0.10488926,0.19734108,0.13474168,0.4076566,0.10471556,0.0060066204,0.30267012,-0.47234344,-0.13394302,-0.022720568,0.16891298,-0.12038049,-0.006131809,-0.57119733,-0.35657632,0.33671027,0.059329856,0.06947389,0.3066061,-0.32580233,0.64689314,0.26740927,0.964986,-0.0241917,0.026475018,0.034223735,0.21351886,0.17475225,-0.3390891,-0.059296794,0.31995514,0.393807,-0.14405191,-0.554615,0.03080492,-0.29182273,-0.33386794,-0.17498414,-0.31902707,-0.27235204,-0.2288419,-0.42522424,-0.37654865,-0.029647658,-0.34382543,0.50793135,-2.3886003,-0.22078533,-0.1457524,0.22622968,-0.18250349,-0.21984738,-0.2313622,-0.49980488,0.21249992,0.20554551,0.32548457,-0.63742256,0.41478813,0.45416957,-0.5692861,0.07783819,-0.62225807,-0.015067632,0.12843308,0.37161618,-0.12410718,-0.09399946,-0.16310269,0.2332623,0.5950802,0.07391339,0.08105283,0.45221916,0.3982715,-0.17795531,0.29914337,0.08253026,0.57533634,-0.3870215,-0.20850152,0.61741877,-0.3889907,0.4340052,-0.023927048,0.05173829,0.5640541,-0.5469965,-0.5005992,-0.46264893,-0.26607218,1.1591502,-0.42969358,-0.67663187,0.0055969283,-0.18015185,-0.13755485,0.104336776,0.5220637,-0.12518571,0.011313468,-0.61198556,-0.19211906,-0.08848479,0.32130224,-0.289301,0.14334121,-0.39762446,0.76925296,-0.16406712,0.5200963,0.3027515,0.14335637,-0.18731563,-0.50638455,0.19042102,0.7232338,0.63467395,0.14935116,-0.2643792,-0.15592343,-0.19731995,-0.25731575,0.11218402,0.8499235,0.5055918,-0.1701633,0.09573589,0.44663867,-0.15683128,0.10172094,-0.24061377,-0.27924734,-0.29747775,0.084636696,0.57744277,0.5770315,0.11704992,0.34316203,-0.11108298,0.28906995,-0.043394007,-0.5903817,0.44161737,0.8114864,-0.31164923,-0.2756066,0.52915865,0.3985632,-0.33423448,0.45148587,-0.64990306,-0.25434038,0.56155676,0.058348946,-0.50515485,0.16338195,-0.25033906,0.19153607,-0.75722194,0.2695418,-0.3877699,-0.7213433,-0.5207279,-0.011708781,-2.3797355,0.21107852,-0.20523071,-0.050167456,-0.37669456,-0.3577396,0.29974544,-0.36548576,-0.698448,0.037028372,0.06115564,0.5467737,-0.13448334,0.09694365,-0.2700869,-0.29653558,-0.30878085,0.28260642,0.25704625,0.34804815,-0.39029068,-0.21492733,-0.044647567,-0.13189794,-0.38889682,-0.19838521,-0.76379144,-0.3953436,-0.09856067,-0.58361685,-0.20924537,0.6296425,-0.43084145,0.011640493,-0.37923068,-0.084923364,-0.00080077536,0.1292639,0.28939056,0.32184982,0.25271288,-0.13207254,-0.10916183,-0.18825254,0.16628619,0.04009492,0.17864084,0.23787948,-0.18701313,0.4070589,0.32545185,0.7779696,-0.08435931,0.7948605,0.22701585,-0.17854714,0.4801583,-0.21620616,-0.49816066,-0.797575,-0.14934686,-0.07448462,-0.48374826,-0.37420994,-0.122389644,-0.35150313,-0.99809265,0.4224238,0.22121009,0.34065726,-0.038872786,0.32491693,0.44156373,-0.108274266,0.082623154,-0.12349582,-0.3648678,-0.3679552,-0.47154787,-0.6003752,-0.5963631,-0.03933434,1.1611147,-0.14412841,0.10559121,0.32444012,-0.374062,0.25224802,0.19560789,0.14763528,0.116327584,0.5172022,0.10405861,-0.39845386,0.39345366,-0.09014063,-0.010471076,-0.4672583,0.24274948,0.82872957,-0.6158184,0.48640653,0.29636782,0.12203072,-0.32472527,-0.7794804,-0.06469601,0.023532568,-0.2793076,0.5694411,0.40213093,-0.4679209,0.4906779,0.112300634,0.07244401,-0.66817695,0.47080886,0.0064621232,-0.27165776,0.10076037,0.5386171,-0.17163955,-0.09752088,0.14096266,0.18777114,-0.30976984,0.3383814,0.2802763,-0.21120085,0.033425823,-0.00033577532,-0.38610232,-0.697481,0.17300484,-0.7048975,-0.3848189,0.17472482,-0.0324132,0.029775828,0.1289978,0.20848833,0.5554772,-0.17272994,0.16322048,-0.27968764,-0.30120388,0.45592597,0.5264445,0.35996258,-0.46585986,0.6922707,0.1968065,0.034620192,0.10238805,0.30961472,0.53652024,0.048733346,0.41578358,-0.028721306,-0.029897474,-0.0028775334,0.5609308,0.21152736,0.35667658,0.020320268,-0.13815114,0.16016775,0.16408563,0.42593062,-0.18302998,-0.34519294,-0.014172355,-0.037279606,0.08124477,0.50382566,0.20284235,0.30233282,-0.027127005,-0.014354702,0.14541754,0.017427877,-0.26564714,-1.5171356,0.2708916,0.36185396,0.8583473,0.38602275,0.15061918,-0.027115352,0.54867643,-0.4412812,-0.043909512,0.42532903,0.019211173,-0.22735694,0.4449415,-0.6188072,0.373653,-0.17138694,-0.027756238,0.33340287,0.19937128,0.49972457,0.82977647,-0.2511179,-0.021619149,-0.047222972,-0.29078287,0.13417923,-0.1502394,0.14651722,-0.38067457,-0.5426479,0.68652946,0.36158428,0.3767004,-0.4793347,0.060959864,-0.14769778,-0.1991888,0.16431232,-0.0046870485,-0.08592844,-0.22099844,-0.43464708,-0.23959842,0.531531,-0.34190017,-0.10393067,0.1471878,-0.29622534,0.13738012,0.0069154277,0.07875419,-0.08100857,-0.7727102,0.1909784,-0.41004676,-0.33747077,0.3090287,-0.35422623,0.0519716,0.29916286,-0.016226143,-0.27408963,0.28742123,0.05808003,0.74948597,0.009360317,-0.07346876,-0.0826694,0.34537196,0.26137242,-0.26547295,0.012563869,-0.13660105,0.26527187,-0.56638473,0.32828853,-0.24084266,-0.3646009,0.112566866,-0.16475895,-0.10539009,0.3488528,-0.2537709,-0.11356455,0.13595521,-0.031183109,-0.42852852,-0.16855729,-0.3009556,0.18222478,0.17783208,-0.12281355,-0.09406081,-0.0026154341,-0.14067496,0.3403713,0.13077456,0.27968284,0.46904147,-0.05163886,-0.5643316,0.20400469,0.111629665,0.3802846,0.07557195,0.0034927614,-0.18200406,-0.21687928,-0.428573,0.6985929,-0.26925817,0.29035395,-0.10869761,-0.36399475,0.87631863,0.048324183,1.1329077,0.078912295,-0.40133953,0.03791136,0.6001171,-0.18183152,-0.036069665,-0.29597202,0.8550624,0.49319845,-0.034981057,-0.10821947,-0.2668858,-0.07429378,0.2189621,-0.32142645,-0.17905147,-0.09291234,-0.5558029,-0.0631047,0.10000047,0.20913625,-0.013449809,0.0242698,-0.25397697,0.1870891,-0.02031244,0.3091895,-0.50908625,-0.15402761,0.37388927,-0.0132588595,-0.11322971,0.18043326,-0.34236974,0.30545002,-0.75670624,0.16898777,-0.549994,0.03619916,-0.017668117,-0.27839425,0.23426622,-0.13867745,0.19179466,-0.56730735,-0.25438517,-0.24773641,0.51444924,0.18554708,0.25213963,0.6965904,-0.26571554,-0.03332889,0.22389674,0.37216932,0.98581195,-0.1866884,0.015289582,0.07105173,-0.39739567,-0.61173224,0.13623753,-0.33071902,0.15511726,0.08759408,-0.40621263,-0.2066476,0.31487063,0.15686086,0.10170476,0.033833504,-0.90718293,-0.026283199,0.41097522,-0.14111045,-0.11240129,-0.39986727,0.2950786,0.67460984,-0.20021172,-0.4147123,0.073730625,0.2334401,-0.35467416,-0.556298,0.25788388,-0.32322478,0.29053324,-0.04363065,-0.4540713,0.009225331,0.33914444,-0.52570546,-0.017982394,0.3728578,-0.24446537,0.021237355,-0.13883716,-0.019124866,0.8925054,-0.14148128,0.09937978,-0.47174096,-0.57743305,-0.8579515,-0.28863662,-0.10361617,0.45181322,-0.016256426,-0.70379305,-0.2657325,-0.4473611,-0.04072075,0.11696419,-0.4850735,0.48334157,0.31855166,0.5635668,-0.17260002,-0.9423855,0.31134874,0.08200056,-0.25184587,-0.331975,0.4487201,-0.060235277,0.5681642,0.18386196,0.084279254,-0.018757083,-0.70564604,0.32878622,-0.28284025,-0.035857957,-0.72160625,0.06374255,459 +69,0.55987656,-0.113476455,-0.40422213,-0.046877395,-0.14786562,0.08240479,-0.19167861,0.48580974,0.16146863,-0.37183526,-0.22011071,-0.24412322,0.09089124,0.3827627,-0.16637063,-0.576145,-0.1589401,0.13505791,-0.37792096,0.5053246,-0.42139786,0.2262488,0.05459927,0.40036732,0.2113016,0.33393407,0.20162284,-0.08403645,-0.24188668,-0.06348808,-0.07006805,0.4390813,-0.5905725,0.02381491,-0.06670663,-0.36391807,-0.164704,-0.4968606,-0.28092578,-0.6397628,0.399194,-0.70792186,0.3851941,0.19194153,-0.16899914,0.3391639,0.03701485,0.15857375,-0.23755533,0.022019722,0.10188388,-0.18772954,-0.030041747,-0.14234565,-0.1236618,-0.22254004,-0.6755693,0.03647419,-0.4245108,-0.23709728,-0.23920657,0.17159575,-0.24910937,0.032253623,-0.12128946,0.49398777,-0.43664593,-0.07659982,0.24413607,-0.12882489,0.25172645,-0.50949895,-0.21600379,-0.056444652,0.23015143,-0.25735936,-0.059790403,0.15713668,0.29314986,0.5591259,-0.009291768,-0.1452046,-0.4616272,-0.0039381757,0.114572555,0.5461145,-0.3235031,-0.62132436,-0.14968073,0.046686463,-0.066981845,0.17056233,0.07472732,-0.28067473,-0.099128306,-0.016425185,-0.104376316,0.30707207,0.39745742,-0.39796123,-0.36475092,0.2723598,0.44790033,0.13431445,0.0022537597,-0.0687439,0.062964246,-0.58466244,-0.11380616,0.08164819,-0.25293484,0.53887546,-0.004511562,0.3079708,0.6033297,-0.08597009,-0.00014880672,-0.10902071,-0.06457043,0.013414107,-0.35196766,-0.055240422,0.25996858,-0.26356953,0.21417224,-0.06143526,0.7916312,0.06257202,-0.86198604,0.3285754,-0.5224923,0.13433042,-0.034209475,0.49257267,0.68735963,0.23385113,0.4440467,0.7124036,-0.498939,0.052032705,-0.13357584,-0.32312334,-0.052143943,-0.07698007,0.104066506,-0.58672965,0.046238806,0.030548364,-0.025886144,0.21242452,0.4383691,-0.6091192,0.01500589,0.21737443,0.77939934,-0.28152248,-0.08907705,0.7088105,1.0593488,1.0916336,0.021725936,1.1087545,0.16730575,-0.22536412,0.32355052,-0.45114,-0.6817584,0.17980225,0.3788038,-0.008008048,0.20546597,0.1368496,-0.11123401,0.3992867,-0.36435997,0.004030615,-0.07106517,0.029933944,0.17381293,0.023921961,-0.424706,-0.21117964,-0.08979235,0.05748434,0.13924994,0.2272803,-0.21082519,0.39195856,0.005957395,1.8882668,-0.13782428,0.1744794,0.10946442,0.43584442,0.13005584,-0.15748218,-0.12182912,0.21593246,0.31854877,0.050708696,-0.5589001,0.06828946,-0.1657542,-0.53334594,-0.067700416,-0.29245734,-0.13095874,0.011413803,-0.51455015,-0.113770336,-0.13861099,-0.40174824,0.43368635,-2.9760284,-0.06461412,-0.010623328,0.25802648,-0.2215704,-0.45243692,-0.17071602,-0.42618665,0.36781245,0.37113973,0.39708096,-0.629917,0.25978097,0.25330546,-0.4511979,-0.1433442,-0.6058028,-0.08396982,-0.05874797,0.33299077,-0.036919672,-0.14100555,0.058032084,0.17116605,0.5480056,-0.02258461,0.13481483,0.18575493,0.378319,-0.0120676905,0.48147854,-0.03128034,0.4563833,-0.18027806,-0.27357033,0.36288017,-0.34158513,0.1835229,-0.1962981,0.17793927,0.2976477,-0.39355752,-0.9429245,-0.57727695,-0.23318839,1.0441918,-0.21031645,-0.3417229,0.27351364,-0.14371899,-0.17068075,-0.0468701,0.49349585,-0.085301176,-0.08005212,-0.8334856,0.16380444,-0.14484581,0.051502645,0.05414681,0.017443081,-0.5018524,0.7209642,-0.08313431,0.4917996,0.465151,0.20364021,-0.16146186,-0.45674625,0.11460626,0.96013534,0.24832392,0.19576128,-0.16585547,-0.18137994,-0.17595562,-0.08315089,0.0527326,0.53254825,0.6537018,0.07333877,0.21743599,0.24017769,0.04124111,0.07887219,-0.16257358,-0.2537681,-0.10022578,-0.09890157,0.5823503,0.72721213,-0.21700728,0.3899423,-0.10657567,0.23427793,-0.08267856,-0.28363758,0.5176084,0.93412507,-0.11022433,-0.18609233,0.6019459,0.5440167,-0.23399329,0.3908231,-0.5681313,-0.2958311,0.4680771,-0.24225569,-0.41935426,0.25937712,-0.3079641,0.0004594396,-0.9012984,0.15208332,-0.1867853,-0.2533476,-0.5595981,-0.15409157,-3.7883723,0.1622963,-0.35969937,-0.21367334,-0.04440467,-0.09463053,0.16068242,-0.64417946,-0.46898472,0.098254934,0.06189393,0.5401655,-0.10704103,0.17929739,-0.2062802,-0.1750161,-0.16872244,0.16971156,0.11807665,0.32678562,0.0403292,-0.36706105,-0.019199044,-0.14117111,-0.34874076,0.01960501,-0.537062,-0.45221043,-0.10663716,-0.524799,-0.40181297,0.5423006,-0.41466618,0.019166376,-0.22432305,-0.08823477,-0.14502373,0.35897568,0.099411085,0.20102471,0.028065383,-0.06724247,0.019153185,-0.24104086,0.25424904,0.049052887,0.23990612,0.5533716,-0.19127515,0.20864119,0.38172033,0.53450316,-0.07564603,0.8533062,0.64765924,0.043963253,0.18687277,-0.3038343,-0.119794734,-0.62205404,-0.42502272,-0.11579797,-0.3932628,-0.5128648,-0.18225747,-0.41625202,-0.7436744,0.5132638,-0.0803491,0.28901052,-0.04284702,0.30316338,0.5206559,-0.30973968,-0.03859575,-0.07129637,-0.035214797,-0.4814106,-0.27180773,-0.5703091,-0.63148797,0.052716166,0.7819148,-0.055599667,-0.031797655,0.05279605,-0.15624693,-0.16861044,0.19442397,0.06729712,0.1858277,0.49377772,0.024141889,-0.644818,0.5771538,-0.11846945,-0.22608304,-0.66379434,0.12162564,0.34868076,-0.58005905,0.66805726,0.33928835,0.14500016,0.12158221,-0.5396582,-0.19197361,-0.07804249,-0.19061086,0.43305504,0.26698452,-0.77521193,0.4631802,0.37354156,-0.22458456,-0.8366779,0.4483614,0.017103255,-0.4476115,0.012667246,0.2950526,0.14161794,0.05609715,-0.16004513,0.20430629,-0.4826255,0.3058162,0.17402315,-0.084713414,0.38087595,-0.21611843,-0.07519282,-0.5917759,0.0927123,-0.47234327,-0.31720048,0.15945588,0.12277676,0.15621763,0.16509081,-0.050343707,0.37626594,-0.24770534,0.079277486,0.03182346,-0.19070083,0.17807506,0.43882617,0.40875685,-0.4082431,0.5388138,-0.02680791,-0.09181556,-0.03236695,0.1294542,0.48123303,0.017367065,0.36844686,-0.11594848,-0.33964297,0.3203935,0.6112784,0.12766185,0.35760802,-0.014385151,-0.2370823,0.47082135,0.05672317,0.08630409,0.007017538,-0.5779403,0.007475402,-0.16066456,0.21461949,0.5043167,0.14254616,0.3695081,-0.15418366,-0.1910215,0.12222126,0.22270907,-0.075151704,-1.0298469,0.22445802,0.08475925,0.85024196,0.6439278,-0.06532645,0.061030786,0.4981109,-0.24038182,0.12065603,0.3091877,-0.06305881,-0.56218934,0.62002516,-0.7056688,0.42314374,-0.11576476,-0.027392827,0.0093635805,-0.109872654,0.35358024,0.6107987,-0.12431471,-0.0021337233,0.023974115,-0.2557769,0.016626012,-0.30540425,0.24270518,-0.6026249,-0.15807395,0.64142215,0.6189202,0.33547372,-0.13326332,-0.027924387,0.0754807,-0.05534531,0.010594575,0.034458026,0.15977766,0.044858918,-0.64310193,-0.27615103,0.59650064,-0.12740088,0.12187313,-0.04064888,-0.29910034,0.19305253,-0.15088984,-0.30097032,-0.05750697,-0.6029158,0.08806686,-0.36551178,-0.44576228,0.5558195,-0.08121514,0.3053885,0.14610192,0.14582413,-0.43012884,0.20776322,0.1727629,0.8837738,0.03301818,-0.16233736,-0.41705662,0.13133153,0.2378582,-0.11485269,-0.2969228,-0.29741046,0.03877889,-0.58520454,0.44285107,-0.053061314,-0.29909387,0.12145206,-0.10681027,0.087995626,0.56623346,-0.016040355,-0.17022216,-0.010272458,-0.085755646,-0.35005322,-0.087275654,-0.14637545,0.29673114,0.12549414,-0.09313042,-0.0726043,-0.10067952,-0.1429712,0.4365617,0.1219841,0.35132334,0.32518405,0.06774732,-0.3537661,-0.072107844,0.30614185,0.42289826,-0.03781103,-0.17094271,-0.2951406,-0.49537224,-0.40277472,0.14518897,-0.1729851,0.3493729,0.09709449,-0.23099163,0.74406767,0.021246959,1.1078784,0.1322333,-0.28826553,0.12820557,0.4225341,-0.026788294,0.015837558,-0.43517148,0.9647877,0.5796401,-0.009549692,-0.14288771,-0.17013618,0.049139127,0.1300731,-0.17862976,-0.08787852,-0.13490205,-0.6292217,-0.26904348,0.14112023,0.27342343,0.23917706,-0.09328098,0.012191951,0.19514665,0.053975582,0.41383877,-0.396808,-0.22262092,0.32365492,0.31383362,-0.061502982,0.11290604,-0.46473038,0.45936057,-0.3748819,-0.026397139,-0.37923014,0.15763137,-0.18220073,-0.19688772,0.26356867,-0.08692074,0.46646142,-0.2094245,-0.3334953,-0.2559689,0.40854925,0.07684653,0.07816401,0.59327394,-0.24279904,0.13812667,-0.0003117174,0.52447927,1.223969,-0.34779084,0.005622633,0.32784027,-0.17034632,-0.63712823,0.35256574,-0.1658857,0.12090272,-0.043136552,-0.21534272,-0.47956574,0.22356063,0.08528167,-0.019580454,0.052211083,-0.49247813,-0.2237237,0.21818888,-0.28591034,-0.1921817,-0.24663532,0.14661187,0.6965349,-0.29732037,-0.32464954,0.11344212,0.33471954,-0.07677485,-0.60833734,0.050364092,-0.37842667,0.24678163,0.19589408,-0.28209856,-0.15838148,0.087868325,-0.36181483,0.009384707,0.25544742,-0.3354674,0.046571314,-0.34836873,-0.023866748,1.0036452,-0.1434604,0.25220722,-0.5899623,-0.4776214,-1.0184579,-0.42918056,0.5529223,0.06515078,0.087232195,-0.50939274,0.0461761,-0.1446162,-0.1819715,-0.14276353,-0.40325308,0.46731696,0.13824245,0.42187953,-0.15712032,-0.45288387,-0.0019828398,0.1606966,-0.13042863,-0.4952998,0.45152473,0.09987415,0.86081535,0.028688904,0.081214495,0.34712043,-0.52493006,-0.13780625,-0.20559573,-0.1945796,-0.7390426,0.086000346,477 +70,0.51450217,-0.4394157,-0.37761635,-0.15012561,-0.4108265,0.058883984,-0.12671632,0.60278016,0.22898443,-0.5806503,-0.1748298,-0.13106689,0.0019435063,0.28406787,-0.17747894,-0.490166,-0.007862031,0.24689633,-0.47664583,0.6712477,-0.34325504,0.26076856,0.0348287,0.30510983,0.26327935,0.24096984,0.15377204,-0.048471898,-0.21184543,-0.10107516,-0.16077548,0.3216729,-0.42602658,0.33546287,-0.13129649,-0.20471361,0.14388643,-0.4011659,-0.18806866,-0.7240249,0.21831799,-0.71786594,0.39711303,0.066711515,-0.39734143,0.36214226,0.08657156,0.28894657,-0.2716765,0.0014729686,0.09158144,0.03784483,0.113993704,-0.15236689,-0.08608249,-0.47339272,-0.5792835,-0.03958689,-0.358381,-0.30504775,-0.30031672,0.14850122,-0.39188504,-0.02520074,-0.08377628,0.6138009,-0.5178393,0.100233406,0.24866715,-0.16493292,0.3213302,-0.62356,-0.14525318,-0.17710093,0.221596,-0.029401395,-0.17586958,0.33510745,0.30495262,0.32229927,-0.023339923,-0.20760679,-0.3688017,-0.06467153,0.28255185,0.38899305,-0.18195923,-0.40723103,-0.008990396,-0.011511371,0.20916128,0.21180859,0.25347507,-0.23261595,-0.18031764,0.030418772,-0.17258403,0.19686796,0.2806762,-0.23546425,-0.25130975,0.18650684,0.5575591,0.05377645,-0.18863939,-0.10338688,0.05319529,-0.5410229,-0.2622896,0.10142292,-0.33971858,0.47490036,-0.19796333,0.15907559,0.6911714,-0.22993621,0.0014298633,-0.030565152,0.14864218,-0.119818866,-0.33378765,-0.33164772,0.22260754,-0.4737396,0.012079585,-0.10772078,0.71114475,0.1253757,-0.5826591,0.21138194,-0.45822275,0.123172306,-0.14993227,0.3454042,0.5599738,0.4751796,0.3580061,0.62286305,-0.45719138,0.12381175,-0.07133427,-0.35302174,0.07804133,-0.26135045,-0.0621849,-0.53356063,0.044413857,-0.06761194,-0.13010791,-0.009547897,0.4184552,-0.5557638,0.011275047,0.12819508,0.78336114,-0.31296116,0.002960654,0.70699775,0.8193278,1.071048,0.06612349,1.0872217,0.23684858,-0.2792827,0.24350396,-0.2212893,-0.63647014,0.31872588,0.51398754,0.08691114,0.2823378,0.012685649,0.11452568,0.4268002,-0.2379596,0.17927364,-0.28566587,0.08133734,0.0293569,-0.31863552,-0.48738053,-0.35666752,-0.09984346,0.11141048,-0.18663085,0.2635428,-0.08451975,0.33030778,0.078437194,1.825329,-0.022392813,0.051737092,0.14636981,0.33464938,0.27296734,-0.20250969,-0.008961476,0.5684296,0.2912759,0.26771998,-0.56891525,0.15966411,-0.25505444,-0.54676664,-0.14367746,-0.3546793,0.03217999,-0.057143345,-0.5016639,-0.18397595,-0.12538359,-0.24246922,0.35006514,-2.6359115,-0.24969566,-0.28098664,0.25483721,-0.21819478,-0.3132183,0.017166961,-0.41681635,0.29024047,0.3651513,0.46209568,-0.58286893,0.2148005,0.42114815,-0.5823205,-0.050383724,-0.51296484,-0.2627843,-0.1720549,0.4014666,0.037724763,-0.020394623,-0.012593016,0.15800425,0.5351353,-0.15003252,0.26994675,0.2675277,0.31472713,0.028243814,0.5602941,0.07512971,0.39356464,-0.1905364,-0.22571626,0.3569373,-0.3741917,0.15896714,0.19378158,0.21910529,0.41695294,-0.43322092,-0.85730326,-0.7693228,-0.31039667,0.9974409,-0.15008616,-0.38338658,0.32412386,-0.27695617,-0.31879053,-0.10930998,0.2405304,-0.06433832,0.051781446,-0.8697221,0.14044039,-0.014078848,0.076762296,0.01325421,-0.23876299,-0.3882746,0.7961986,0.0009035021,0.50886667,0.38627958,0.13083223,-0.24710312,-0.3781613,-0.07313366,0.8932732,0.4950974,0.12248451,-0.2745929,-0.23981844,-0.34068918,0.03756319,0.060391698,0.36196744,0.7687806,-0.13861081,0.17437957,0.19026011,-0.025225462,0.109273896,-0.19788298,-0.28796163,0.02416107,0.098615885,0.42977673,0.46237725,-0.16317846,0.37588117,-0.10322266,0.46517193,-0.05785299,-0.49428165,0.47168815,0.9477996,-0.114693575,-0.32307476,0.57809484,0.6500872,-0.1852963,0.4297251,-0.4582606,-0.12810037,0.5766963,-0.27514562,-0.36755317,0.14001466,-0.41198906,0.19228579,-0.8826092,0.3410434,-0.3116568,-0.38369882,-0.48474476,-0.14792956,-3.0003169,0.2532333,-0.22966374,-0.372626,-0.1404463,-0.1200147,0.17609195,-0.7777301,-0.48375952,0.17434254,0.16269645,0.6836459,-0.008549045,-0.03231941,-0.1901587,-0.38627532,-0.14251216,0.15352555,-0.07391624,0.19019589,-0.10010338,-0.5761239,-0.04236804,-0.16542394,-0.3854165,0.117599815,-0.6835582,-0.5532621,-0.24991766,-0.56725556,-0.37137094,0.7021184,-0.05458394,-0.008904889,-0.047393546,0.02709626,-0.059093148,0.24542254,0.12657845,0.13282825,0.10054098,-0.093122415,0.0015109777,-0.28305182,0.27192,0.10600096,0.23404469,0.30906263,-0.1654539,0.19067585,0.5975564,0.5745152,-0.22257681,0.7656855,0.41349852,-0.124148294,0.2957762,-0.28315538,-0.2928117,-0.49751395,-0.41410655,0.01844336,-0.4170686,-0.45352063,0.043775134,-0.35192412,-0.64317095,0.6327739,-0.011273105,0.243785,-0.06439926,0.20353642,0.43162096,-0.31558037,-0.112318374,-0.11371808,-0.15715599,-0.52121305,-0.2913548,-0.75538605,-0.47865453,0.19623527,1.0827334,-0.2550724,-0.01445058,-0.013590792,-0.2154878,0.060397454,0.117225036,-0.06833062,0.20554361,0.38497278,-0.059617758,-0.6409999,0.5360558,0.09443759,-0.21863562,-0.35914046,0.18112344,0.6033334,-0.46488726,0.6153524,0.33969188,-0.014853289,-0.12873018,-0.6013917,-0.116277635,0.02693107,-0.17697728,0.5085231,0.27035642,-0.70439464,0.38552237,0.3085831,-0.47284904,-0.69788355,0.5237934,-0.14106151,-0.27734458,-0.065759495,0.35984498,0.15039998,-0.028662158,-0.23665795,0.3293237,-0.44351518,0.26445287,0.36489275,-0.03161947,0.16449186,-0.16000411,-0.07518034,-0.88932335,-0.035089523,-0.39319602,-0.32154825,0.34537965,0.10083298,-0.04725185,0.26293075,0.070765205,0.41718173,-0.3801624,0.10479267,-0.03489121,-0.24799635,0.44555855,0.4074707,0.41811842,-0.38794056,0.455936,0.0038498528,-0.035669334,-0.18566537,0.0337345,0.4504866,0.098785974,0.42702717,-0.19061524,-0.16329253,0.49601975,0.79946935,0.15892695,0.46141642,0.09640754,-0.27208817,0.27450886,0.09946765,0.18644702,0.0264249,-0.46368232,0.06694684,-0.1637163,0.06995263,0.48901778,0.09922795,0.18275593,0.001098223,-0.2622887,0.11942159,0.27722943,0.14264579,-1.1999959,0.24562171,0.2003403,0.7761741,0.5483485,0.09546644,-0.04127019,0.65805924,-0.31222796,0.088382535,0.37700784,-0.010706186,-0.5869038,0.6045048,-0.718072,0.3419427,-0.09813504,-0.10428536,0.0046618897,-0.13420421,0.54017365,0.7370821,-0.16615714,-0.0025347807,0.010544991,-0.4129222,0.31113875,-0.47930858,-0.07469328,-0.52424306,-0.38129738,0.5646982,0.5298802,0.34873214,-0.13421158,0.002711975,0.1434752,-0.18305583,0.24135737,0.10245929,0.16995195,0.11705602,-0.6670128,-0.16914034,0.40744817,-0.042200387,0.21844679,-0.09452155,-0.26875955,0.15605305,-0.18943341,-0.09922117,-0.0008189799,-0.709428,0.07904452,-0.25186032,-0.34784266,0.5222299,-0.07400407,0.09894849,0.18321991,0.084301874,-0.29621992,0.28059095,0.18403088,0.7532196,0.01219596,-0.057880335,-0.18587075,0.2221905,0.05882949,-0.15423003,0.046714634,-0.22529808,0.06566857,-0.68991655,0.46964335,0.10103734,-0.3182744,0.07739161,-0.19025037,-0.018186798,0.5704186,-0.16022463,-0.28413856,-0.35238016,-0.017950408,-0.14285871,-0.34376758,-0.05534992,0.3805801,0.07483011,0.14812388,-0.12590925,0.0853831,0.0067647584,0.47428775,0.031436183,0.47383085,0.2709019,-0.09755212,-0.4955034,-0.016059887,0.15795079,0.30614188,-0.0871561,-0.11977194,-0.22192529,-0.410052,-0.38310504,0.07787123,-0.11845904,0.38033873,0.14359672,-0.22952503,0.9416295,-0.11627372,1.3021328,0.007909581,-0.4611296,0.1313607,0.5658734,-0.07080194,-0.04991001,-0.30647314,0.88599443,0.55538476,-0.05381173,-0.12876324,-0.36814833,-0.0807578,0.16385582,-0.24603215,-0.13788721,-0.058419958,-0.6183747,-0.29607594,0.23141901,0.21292126,0.22913171,-0.09215565,0.037420474,0.3128252,0.014554638,0.27980718,-0.36562005,-0.2895254,0.212585,0.19323276,0.033779837,0.15631306,-0.5642903,0.39151302,-0.53948,0.27669156,-0.17526597,0.23184069,-0.24758646,-0.3161172,0.25274402,0.06428022,0.25437728,-0.34166652,-0.34398508,-0.17823824,0.5962768,0.07749504,0.17021239,0.580907,-0.32202056,0.20170566,0.11469978,0.4734745,0.9078936,-0.2859613,-0.107488334,0.37572068,-0.48364797,-0.7106856,0.34516162,-0.23140001,0.11898661,-0.037287265,-0.32276264,-0.58089584,0.3105905,0.25231972,0.02627831,-0.051745538,-0.4738366,-0.13591681,0.49145705,-0.46834853,-0.2867842,-0.24719727,0.31938314,0.48715663,-0.2951513,-0.5222243,0.004109338,0.19844712,-0.26779842,-0.3791399,-0.16778074,-0.256285,0.41904438,0.023115885,-0.31511003,-0.077754,0.014147047,-0.39879766,0.10310477,0.18442795,-0.31468093,0.11439511,-0.3863155,-0.108878985,0.9554932,-0.05303095,-0.010622915,-0.44938016,-0.3333888,-0.8333485,-0.2995353,0.6689798,0.0031455234,0.09076264,-0.47607118,-0.037416324,-0.043444812,-0.07909857,-0.12551057,-0.25977278,0.43809772,0.15316302,0.38378912,-0.079694346,-0.6919452,0.15919852,0.15811954,-0.031719197,-0.61314505,0.5278294,-0.26418033,0.8772219,0.07086868,0.081973076,0.27237183,-0.45608944,-0.021405365,-0.16365597,-0.33444098,-0.5409193,-0.08278483,493 +71,0.47348526,-0.13783331,-0.46250674,-0.23882219,-0.35402694,0.094659574,-0.20632228,0.13780919,0.14928171,-0.42971244,-0.3375693,-0.09647892,0.09929888,0.4643588,-0.08623574,-0.850038,0.014174532,0.1489138,-0.9729093,0.5281824,-0.59610945,0.43097478,0.20893383,0.1668884,0.23609553,0.51554453,0.49223906,-0.23785885,-0.19238617,0.06446986,-0.105932996,-0.026264615,-0.54457074,0.13667816,-0.099304706,-0.33708042,0.09978412,-0.46422133,-0.20984975,-0.6445492,0.23405139,-0.934042,0.4005385,-0.070310876,0.054960873,-0.06421557,0.26556534,0.37870464,-0.45802042,0.2791655,0.18949763,-0.27474937,-0.22780478,-0.29011297,0.06388188,-0.52895457,-0.49593818,-0.021187592,-0.5708545,-0.43993077,-0.2223,0.13762242,-0.3417303,0.13774905,-0.09979221,0.26516268,-0.44865096,-0.030231535,0.37912947,-0.15831794,0.059686534,-0.44471318,0.058840632,-0.0972448,0.4922255,0.022899894,-0.12939042,0.51835257,0.3760395,0.54535496,0.31540242,-0.35857132,-0.12430917,-0.22487845,0.36069712,0.39705235,-0.010178011,-0.37464792,-0.18792215,0.07540199,0.2639892,0.3239111,0.08236116,-0.34137586,-0.029664196,-0.04773048,-0.17136304,0.51986015,0.5816116,-0.31566438,-0.37806982,0.40406924,0.5154479,0.15703134,-0.14093718,0.02981016,-0.039245263,-0.5692242,-0.19939637,0.31262493,-0.012271348,0.43949366,-0.10657795,0.06573734,0.9312744,-0.37173587,0.029184595,-0.3091861,-0.20248824,-0.2658538,-0.0982163,-0.11942295,0.075924546,-0.6010235,-0.0770693,-0.43369573,0.70443964,0.317771,-0.71201664,0.2971518,-0.5220341,0.18749897,-0.22776106,0.6518684,0.65932393,0.32468975,0.304266,0.8533787,-0.41735363,0.38759202,-0.10669266,-0.5080389,-0.010650314,-0.41444463,0.09460445,-0.4362793,0.09511533,-0.30012167,0.016924925,0.026860744,0.47127026,-0.49183035,0.015522853,-0.025233645,0.66086733,-0.47018087,0.00304088,0.70385295,1.0884315,1.1476834,0.09861373,1.2699256,0.59953076,-0.3553074,0.16611724,-0.4674024,-0.60678,0.20325933,0.45166638,0.25338712,0.28193212,-0.1729607,-0.01173383,0.20006011,-0.57734436,0.15681179,-0.0405015,0.35407212,0.06717324,-0.082988255,-0.32041845,-0.20322594,0.03771069,-0.034583084,0.1338308,0.23637593,-0.2182017,0.43826032,-0.062391363,1.3389617,-0.017665874,0.050938338,-0.16484855,0.5546859,0.21815278,-0.1898351,-0.06801336,0.29164532,0.4858863,-0.13823657,-0.75678754,0.1390171,-0.44077194,-0.3999242,-0.26298058,-0.4297482,0.05567981,0.00064085796,-0.25863063,-0.09577274,0.04009255,-0.3003874,0.4244941,-2.4923532,-0.31792313,-0.1982219,0.3178141,-0.2791265,-0.07832976,-0.12345046,-0.53686965,0.31151733,0.27848703,0.4531342,-0.60060304,0.46573412,0.3467982,-0.55563056,-0.24255101,-0.827495,0.03267911,-0.1394227,0.47700834,-0.11722441,-0.061673373,-0.11888704,0.16948673,0.69856083,-0.13061218,0.12913306,0.4347866,0.36067265,0.23044962,0.5957397,0.076629594,0.6776781,-0.28922027,-0.12911946,0.40262994,-0.21793172,0.30150005,-0.22099628,0.09752904,0.39729905,-0.5465139,-0.80302393,-0.70916665,-0.45147532,0.9673617,-0.42121896,-0.4099781,0.10416779,0.057753675,0.14876412,-0.017344896,0.5622899,-0.06864289,0.14423129,-0.6192086,0.08224525,0.07769417,0.06221426,0.09681189,0.11729282,-0.3240568,0.5925386,-0.06674118,0.5302609,0.18649301,0.3562982,-0.14156668,-0.3572879,0.30008325,1.0425876,0.20476946,-0.10151471,-0.15173087,-0.3307028,-0.19017468,-0.31945884,0.026705246,0.36620018,0.8386214,-0.031539973,0.14993499,0.22562133,-0.21252753,0.038885944,-0.14804688,-0.23781197,0.07478716,-0.02393777,0.43999827,0.6594087,-0.09712075,0.5112262,-0.2640217,0.34708127,-0.005694689,-0.5944346,0.7166811,0.6458108,-0.06300139,-0.005247634,0.46344256,0.47354138,-0.44193053,0.5939622,-0.6779815,-0.2766113,0.8445196,-0.23103637,-0.35903174,0.16971338,-0.27815422,0.15494019,-0.8571571,0.43348745,-0.28338924,-0.22192436,-0.35315657,-0.031566955,-3.5704775,0.11862823,-0.081231356,-0.14246683,-0.0775799,-0.053725332,0.21838614,-0.63149405,-0.5010522,0.18958034,0.22435188,0.72799206,-0.008667545,0.22188509,-0.24481618,-0.15038499,-0.2472234,0.19442938,-0.016668811,0.2517555,-0.06381045,-0.30595055,0.092452876,-0.10513154,-0.5314549,0.19811355,-0.43658802,-0.48515335,-0.18054013,-0.40735742,-0.36621097,0.6059056,-0.34117416,-0.048020877,-0.14636318,-0.05727138,-0.29682472,0.24971168,0.16037542,0.19528909,0.25299633,-0.029660894,0.0040817894,-0.2862609,0.45286328,-0.03882528,0.41004616,0.12341542,0.01611101,0.13600978,0.40485507,0.5410124,-0.14612918,0.8360958,0.39441705,-0.09437984,0.116673715,-0.3561527,-0.23407793,-0.55744344,-0.45491093,-0.116168484,-0.28891814,-0.5435478,-0.022124913,-0.34816098,-0.8114065,0.43878135,0.104655646,0.3121234,-0.11585195,0.22441025,0.3136974,-0.10598377,0.0034575872,-0.12712128,-0.16490021,-0.5718492,-0.23005438,-0.69560754,-0.51484776,0.12440481,0.7788714,-0.2882353,-0.122558996,-0.21613605,-0.3106336,0.048657805,-0.009422336,-0.07071061,0.32307285,0.3303553,-0.0226829,-0.805784,0.47967827,-0.16969468,0.0069321617,-0.5809068,-0.011489274,0.5753552,-0.750329,0.47893924,0.4247216,0.045780312,0.23766537,-0.48146763,-0.12387139,0.030285783,-0.11503125,0.31045392,-0.03463081,-0.8716383,0.5708845,0.17785086,-0.48234028,-0.7419029,0.37320578,0.13170373,-0.18893918,0.18435733,0.2021912,0.09613375,-0.13062803,-0.46209043,0.25866768,-0.5603709,0.3635781,0.22126125,0.019612487,0.3320825,-0.1520532,-0.46158224,-0.6126039,-0.046670146,-0.502614,-0.030087277,0.25512964,-0.051360223,0.10763466,0.13612747,0.058964282,0.43860483,-0.2660908,0.087606415,0.06616871,-0.39124438,0.18207856,0.443845,0.33085135,-0.4925266,0.5768494,0.12328462,-0.29671952,0.18503745,0.033382773,0.37046516,0.29266256,0.2681534,0.022801548,-0.22686668,0.41863522,0.7364608,0.06748929,0.2707771,0.19058034,-0.34924775,0.5001633,0.0824566,0.113190554,0.109324396,-0.25946724,-0.019516699,0.19873932,0.120457806,0.483222,0.373463,0.58997047,0.111705825,-0.18740398,0.037690267,0.1128279,-0.06512548,-1.0982428,0.30557936,0.15564004,0.76929724,0.6245052,-0.04297693,-0.16245052,0.60365075,-0.28846228,0.089253455,0.33263004,-0.095675915,-0.5433169,0.66877186,-0.6088795,0.43080124,-0.093857825,-0.10463246,0.0052811727,0.1710616,0.16225773,0.8777402,-0.13799721,0.12996888,-0.081092134,-0.2047216,0.15800714,-0.36438316,-0.037358716,-0.48672372,-0.42646807,0.69114083,0.19944195,0.22131228,0.025697127,-0.088987306,0.102104396,-0.21672162,0.272033,-0.012308657,0.022165336,0.07449392,-0.5623024,-0.37756804,0.40322724,-0.18156715,0.13610585,-0.156177,-0.27495295,0.015222952,-0.3350036,-0.026962966,-0.073904954,-0.7378411,-0.050145905,-0.19403814,-0.3862401,0.3941734,-0.21477455,0.2898174,0.27081457,0.031593315,-0.20824261,0.20642085,0.1806033,0.77209646,-0.013364304,-0.35129154,-0.31703866,-0.054897897,0.44019163,-0.31335005,0.3191267,-0.3546133,0.030981295,-0.6950992,0.7462082,-0.20209724,-0.38686016,0.27428687,-0.21747702,-0.06595485,0.5761453,-0.2173526,-0.08799252,0.19413069,-0.06497089,-0.31394905,0.024328474,-0.40274128,0.1408274,0.18880993,-0.037363555,-0.1334554,-0.16888891,0.06645142,0.6437085,0.0075868256,0.45890537,0.118058115,0.04681447,-0.20328712,0.05621554,0.22766127,0.3868758,0.29609695,-0.014929088,-0.4783838,-0.34209025,-0.3497582,0.20282781,-0.16924015,0.093678385,0.04975808,-0.49595717,0.7083204,0.024646766,1.2771386,0.17479905,-0.38965535,0.16518623,0.48999915,-0.12884827,0.074886695,-0.42380095,0.7734209,0.54524267,-0.018663388,-0.008788981,-0.44950703,-0.2344409,0.42487007,-0.32288447,-0.15135789,-0.029564466,-0.6628902,-0.52351487,0.22836453,0.03869583,0.14095566,0.023386894,-0.02498395,0.030847725,0.22320883,0.5076515,-0.6922929,-0.23504108,0.19732891,0.22927849,0.039944082,0.21376655,-0.3978778,0.5207772,-0.74035794,0.17134407,-0.25289357,0.08248071,-0.099746384,-0.4054979,0.20641796,0.21935505,0.4008483,-0.23676133,-0.5648046,-0.015384253,0.6256716,-0.06259893,0.2560432,0.66615355,-0.43128368,0.06568417,0.035793975,0.5940081,1.3642629,-0.35368073,0.17173153,0.34281802,-0.4234056,-0.6050324,0.47510242,-0.29659808,-0.093057446,-0.10048365,-0.44828188,-0.431284,0.38170213,0.19544294,-0.03591147,0.18287444,-0.5095478,-0.17227845,0.39568794,-0.25283545,-0.41641045,-0.25272468,0.3650126,0.6773737,-0.48589897,-0.14755684,0.2086299,0.36604244,-0.28092042,-0.34893972,-0.12164796,-0.2205647,0.3912482,0.15874226,-0.22804344,-0.14142297,0.16241078,-0.4187703,0.112600796,0.20717089,-0.37474322,-0.05815331,-0.087441325,-0.06390187,0.80177057,-0.17681618,-0.052820176,-0.69235903,-0.3789117,-0.89898837,-0.5138289,0.3306432,0.07748174,-0.016659051,-0.39490548,0.057233676,0.060194246,0.009971049,0.17974386,-0.6262853,0.3709812,0.07243952,0.4149689,-0.21933728,-0.87319344,-0.01824873,0.15677027,-0.27021837,-0.6337986,0.5767727,-0.13782915,0.8767363,0.094026044,-0.11150934,0.06833776,-0.41507933,0.13358963,-0.4135067,-0.1540873,-0.7698557,0.22093849,502 +72,0.52170515,-0.13285601,-0.5648892,-0.12425259,-0.24816622,0.037382558,-0.14109461,0.43734244,0.0542057,-0.5352376,-0.058186024,-0.21258216,-0.15729606,0.48484132,-0.33443993,-0.81617844,-0.13163379,0.2109634,-0.5657329,0.5374635,-0.30666816,0.31918347,0.06354454,0.3533397,0.1600517,0.2223414,0.28255063,-0.13557482,-0.21545278,-0.06993626,-0.034247786,0.13454974,-0.5693052,0.026162714,-0.23486373,-0.49694413,-0.075295456,-0.35761708,-0.25418985,-0.8901343,0.51437813,-0.86185604,0.43964344,-0.19588917,-0.30327648,0.0877228,0.25832975,0.43977576,-0.13426517,-0.033913888,0.20349678,-0.074039474,-0.033196386,-0.064454995,-0.22702983,-0.34089875,-0.56497645,0.27347955,-0.5228778,-0.11784705,-0.22888991,0.2821878,-0.38343543,0.057421215,-0.11248047,0.49131274,-0.3759163,-0.2606138,0.46452516,-0.146323,0.47110355,-0.620228,0.0049508065,-0.14134042,0.12309774,-0.11867687,-0.036384955,0.28558087,0.30832276,0.6035104,0.1370127,-0.29373193,-0.32936832,0.13258314,0.1714812,0.37656796,-0.19734661,-0.5645822,-0.180033,0.08635003,0.23639476,0.1452907,0.1527401,-0.3993376,0.0126517825,0.12447407,-0.2907689,0.4386357,0.45779428,-0.3171821,-0.19106704,0.34603375,0.63286823,0.27255058,-0.14185914,0.09589616,-0.015310781,-0.48528963,-0.17863072,0.17379622,-0.17886856,0.46559548,-0.14229871,0.2369272,0.6711033,-0.19193932,0.0518886,0.06859626,-0.0705412,-0.17404231,-0.24011138,-0.21499565,0.21871267,-0.4885295,0.052627653,-0.3176297,0.84324795,0.12312962,-0.7945703,0.41367602,-0.5622601,0.32565582,-0.15994556,0.5050875,0.72826725,0.36465997,0.16818494,0.96606964,-0.534282,0.045043923,-0.118827716,-0.44135028,0.13423464,-0.21364763,-0.05818242,-0.3847381,0.018107593,-0.18687926,-0.1478502,-0.07158527,0.39841804,-0.6770703,-0.043488726,-0.16594325,0.9085908,-0.3308688,-0.018572327,0.7074506,0.97353613,1.0701294,0.03406394,1.4197917,0.23451778,-0.23328452,0.2965413,-0.2552301,-0.7525039,0.42636275,0.33426043,-0.2690872,0.31526908,-0.03431625,-0.062330436,0.5239173,-0.41972452,0.090489835,-0.38385522,0.22158533,0.056151822,-0.15234184,-0.37917265,-0.13916324,0.05341899,-0.023568776,0.1921309,0.14266303,-0.12678203,0.388952,0.00559932,1.6365064,-0.17101943,0.06044312,0.097689286,0.42689914,0.11442323,-0.039486952,-0.095828,-0.019767068,0.41079897,0.001114238,-0.44418657,0.097466595,-0.23182407,-0.6040264,-0.22754075,-0.21054621,-0.0753946,0.075459994,-0.4595502,-0.2165697,-0.09075263,-0.24298725,0.38571694,-2.3236651,-0.20252606,-0.09099139,0.20574096,-0.3481487,-0.39192063,-0.0924723,-0.6081388,0.5777367,0.34804156,0.46722442,-0.6694723,0.41004488,0.39272264,-0.4728449,-0.06724772,-0.67454904,-0.111632586,-0.008547043,0.35582986,0.12836343,-0.3454675,-0.0377196,0.18419012,0.53984475,0.05004242,0.01719879,0.19426209,0.25367236,0.091853015,0.46536142,0.08595514,0.5894506,-0.25093645,-0.21205004,0.49640316,-0.24768785,0.1064221,-0.05801931,0.049633056,0.3482671,-0.508214,-1.0516051,-0.82704556,-0.26508993,1.1915879,-0.009831635,-0.49165827,0.22227083,-0.0385456,-0.11404574,0.09500462,0.38277236,-0.06537528,-0.05325242,-0.9452573,0.07520776,-0.106931746,0.09342767,0.1728538,-0.12353043,-0.4376125,0.6926387,-0.12361396,0.41172677,0.51664996,0.18955638,-0.22020684,-0.6706181,0.043883666,1.0660995,0.33150384,0.09801978,-0.17889665,-0.20684011,-0.51820195,-0.1655609,0.09904662,0.45974624,0.89670956,0.1609546,-0.026467334,0.2435235,-0.09820351,0.039387673,-0.10861181,-0.48735076,-0.19250038,-0.09308903,0.5900126,0.58068264,-0.09075725,0.5297491,-0.27275807,0.4307341,-0.086193435,-0.429067,0.8282827,1.1774987,-0.32325816,-0.24600407,0.62263525,0.32009298,-0.24447784,0.5692564,-0.56806195,-0.40786362,0.49114165,-0.16535614,-0.51479274,0.23848006,-0.37757042,0.20233282,-1.0886284,0.31112358,-0.45631427,-0.21362221,-0.6959161,-0.23856488,-3.1855962,0.24658494,-0.21167973,-0.111564,-0.15416369,-0.09954588,0.3091655,-0.5621631,-0.72451586,0.052167475,0.14068536,0.6403351,0.054293778,0.20916651,-0.1676727,-0.13155958,-0.25302055,0.1237998,0.30230987,0.30052283,0.05777806,-0.5666816,-0.17852291,-0.30348054,-0.36262006,0.0037162472,-0.64051867,-0.5431485,-0.38454276,-0.5833739,-0.3903873,0.6634249,-0.44217312,-0.022078188,-0.21313836,-0.0230292,-0.029380482,0.44214204,-0.05538659,0.10274442,0.14373952,-0.06567611,0.043159015,-0.27161664,0.16411889,0.12020031,0.36538833,0.3422634,-0.24251725,0.35019505,0.63855064,0.80766815,-0.11073792,0.74883974,0.66341645,-0.051124338,0.25712037,-0.33989906,-0.29406285,-0.6932161,-0.28929237,-0.1279478,-0.37189525,-0.4226249,0.004201457,-0.48777753,-0.8140116,0.58164006,-0.039826594,0.14095278,-0.0041970722,0.20262651,0.47147048,-0.11047186,0.0028124396,-0.15521559,-0.22038577,-0.5346464,-0.27683535,-0.7022545,-0.71008044,0.062422164,1.1230365,-0.15201548,-0.10951766,0.107605174,-0.12390341,0.16171122,-0.0101823285,-0.08306558,0.16553299,0.41407317,-0.12028677,-0.7341524,0.31324053,0.06761247,0.011471946,-0.5303277,0.13583595,0.63058203,-0.597388,0.41172817,0.37276697,0.10925056,0.07895529,-0.4676444,-0.06836802,0.062859684,-0.23461658,0.6184139,0.18187052,-0.5229805,0.5841044,0.45957977,-0.1936485,-0.92866147,0.40600216,0.08828328,-0.17667682,-0.1886813,0.24882373,-0.024088949,-0.029673757,-0.30820185,0.08622379,-0.48131114,0.28124565,0.35825938,-0.061743803,0.36745334,-0.26729003,-0.25340256,-0.6905452,0.16214883,-0.5503806,-0.17395964,0.18328269,0.041106045,0.019604731,0.082232684,0.16238788,0.4805307,-0.22468038,0.10285151,-0.017888643,-0.21148491,0.3380402,0.4454913,0.3171479,-0.607056,0.5354024,-0.119355515,-0.15936193,-0.103248544,-0.026202422,0.64383394,0.21649964,0.22639458,0.12139503,-0.08568726,0.22429335,0.66953313,0.05957594,0.42400986,-0.061743736,-0.2647403,0.12464081,0.173993,0.24924242,0.14972349,-0.5251728,-0.12273117,0.106848955,0.104491696,0.51261073,0.12375878,0.37403643,-0.0117866425,-0.42539254,0.0010055285,0.05595319,-0.23353758,-1.3679272,0.5101995,0.2024255,0.78379,0.60941887,-0.07901084,0.054283045,0.5749655,-0.12608641,0.28336906,0.33682722,-0.092303,-0.56350106,0.57602584,-0.71581674,0.2882563,-0.10420859,0.1410575,-0.009975071,0.09160344,0.33575362,0.7623726,-0.11770995,0.18565272,-0.1747688,-0.18007614,0.10436301,-0.25565535,0.103374474,-0.38512015,-0.25739288,0.61867255,0.4302876,0.33319375,-0.24443501,-0.0063125696,0.14319667,-0.11743276,0.15431398,-0.057813384,0.0772323,0.018249536,-0.62588215,-0.37793243,0.47649837,0.16340238,0.039940946,0.008920386,-0.38022688,0.18037164,-0.14496167,0.0062564462,-0.13012658,-0.54625314,-0.12133275,-0.34112805,-0.24767676,0.2801756,-0.10709107,0.1961945,0.15489593,0.183792,-0.45645413,0.23486793,-0.060793154,0.74731946,-0.17967851,-0.1426555,-0.38451743,0.19241704,0.24019426,-0.3330243,-0.20241873,-0.114957705,0.08429216,-0.53088975,0.5311335,-0.121205434,-0.36668733,0.33024198,-0.1459177,-0.20862797,0.5351223,-0.32723758,-0.14194568,0.16726997,-0.13526385,-0.13295425,-0.21063852,-0.074215375,0.12364962,0.15387417,-0.056263976,-0.20883426,-0.18133911,-0.09906908,0.55449986,-0.034634087,0.363932,0.5250805,0.12499833,-0.56252116,-0.10490906,0.23900151,0.49729097,-0.0006201826,-0.07706905,-0.3766813,-0.38094088,-0.3018663,0.16469367,-0.18712887,0.1982541,0.10457156,-0.3922218,0.8249459,0.28560928,1.3343024,0.044970617,-0.28924483,0.08792336,0.45943016,0.10189337,-0.022838023,-0.49097782,0.8034469,0.5996519,-0.20851144,-0.08147007,-0.4475213,-0.14176244,0.18330702,-0.29057068,0.081415996,-0.12081801,-0.6354636,-0.5538856,0.33521032,0.3670527,0.098927006,-0.12212902,0.005339101,0.15741602,0.03378948,0.41776088,-0.4511478,-0.14278826,0.2459788,0.2852576,-0.02686239,0.06805973,-0.59983814,0.41500285,-0.5535377,-0.029408373,-0.21762724,0.19271731,-0.0075684637,-0.27893198,0.22631392,-0.1728106,0.32148758,-0.2657426,-0.4695487,-0.20752159,0.4932028,-0.02349351,0.1292718,0.81911826,-0.30254567,0.07849406,-0.0102658495,0.6507214,1.3171916,-0.2409753,0.119210266,0.3343367,-0.12051056,-0.5227331,0.250262,-0.27417266,0.049789585,-0.15738943,-0.35175762,-0.58839464,0.28609577,0.14777304,0.049011778,-0.057101276,-0.6690514,-0.30355403,0.39460266,-0.30946317,-0.27752906,-0.34359163,0.15097596,0.5926835,-0.33754903,-0.34327602,0.13805723,0.3900475,-0.11368032,-0.5729352,-0.14913228,-0.2871392,0.35934526,0.40133113,-0.4258793,0.025387136,0.1778894,-0.48499024,0.28737068,0.18711114,-0.33225876,0.042448543,-0.25904277,0.008726031,1.0055988,-0.13098311,0.11874038,-0.4955399,-0.4313391,-1.0515406,-0.3454129,0.4232963,0.21246657,-0.016991425,-0.67989564,-0.05344806,-0.28802478,0.039112017,0.11819378,-0.35237795,0.32598948,0.15395218,0.6715691,-0.22191483,-0.6123781,0.04854154,0.12338349,0.001405701,-0.5008192,0.61426705,0.0693547,0.8141793,0.11205638,0.12138124,0.3170588,-0.5937315,-0.021878751,-0.25134543,-0.2619084,-0.74588823,0.14190456,506 +73,0.34157935,-0.023922686,-0.606838,-0.06673883,-0.076514125,0.24658781,-0.09421153,0.55009604,0.13826074,-0.4114552,-0.2023406,-0.05154179,0.06869525,0.16960065,-0.16511229,-0.40778053,-0.08105531,0.14820513,-0.49626762,0.50523967,-0.31743354,0.15948498,-0.1411955,0.37607566,0.06051261,0.27799812,-0.03243781,-0.1342978,-0.24768128,-0.013453372,-0.046368472,0.5576168,-0.31858087,-0.04153593,-0.2168766,-0.18663603,-0.0033457354,-0.38407332,-0.38675952,-0.6125736,0.27401355,-0.7777752,0.45928875,0.027890973,-0.2531763,0.3865473,0.082051456,0.13654232,-0.20181039,-0.11271596,0.114402026,-0.060320348,-0.02227594,-0.20044675,-0.23711443,-0.35444692,-0.49171883,0.07627821,-0.39557108,-0.0718357,-0.22084403,0.1259596,-0.2837754,-0.096698105,-0.11620523,0.41359806,-0.5014896,0.2064957,0.1305733,-0.059807204,0.14695969,-0.72850806,-0.15017025,-0.088214,0.2311876,-0.25626338,-0.07343424,0.21707411,0.3450745,0.47056097,-0.16001034,-0.039211754,-0.43206042,0.036354307,0.13694014,0.42253518,-0.31067625,-0.49435723,-0.005742319,0.10118528,0.14469868,0.11951689,0.11065602,-0.14254785,-0.19999766,-0.1044385,-0.15003242,0.25288478,0.5065657,-0.28659767,-0.2947607,0.42845938,0.49867266,0.2311281,-0.15777661,-0.14926551,-0.015509626,-0.4046049,-0.100613,0.07163233,-0.17748138,0.5095337,-0.06199587,0.18784921,0.5331971,-0.03454249,0.11536198,0.093470015,0.16272892,0.086436056,-0.23424923,-0.0057746675,0.046145722,-0.2248755,0.1181921,-0.082236305,0.57102776,0.08271201,-0.6587555,0.35667786,-0.47368288,0.09789752,-0.06081073,0.43766886,0.582811,0.32894617,0.15525448,0.4986275,-0.25108805,0.046744443,-0.055290103,-0.2698717,0.12110754,-0.047518287,-0.11918993,-0.5910953,0.11654732,0.023602467,-0.101889834,0.13974035,0.22135891,-0.4853893,-0.10693413,0.2622011,0.85471946,-0.2939383,-0.1965149,0.54653037,0.92094964,0.6760081,-0.03962151,1.1542281,0.11625635,-0.11581996,0.31722325,-0.47994307,-0.6787537,0.17615739,0.3177692,-0.28109342,0.26844883,0.18117365,-0.051123302,0.4253009,-0.34890622,-0.004456859,-0.24720046,0.16616261,0.17697653,0.01785085,-0.3443696,-0.2871576,-0.1560046,0.026296176,0.16008289,0.24121475,-0.22321065,0.1939906,-0.017104715,1.7335783,-0.045002766,0.10295726,0.11129656,0.36502355,0.16687551,-0.009994863,-0.007945754,0.4733106,0.16557568,0.06051163,-0.43050998,0.1779605,-0.14241487,-0.57666993,-0.12406877,-0.32881042,-0.096191764,0.09478017,-0.51903003,-0.09574711,-0.19645111,-0.33008724,0.45503128,-2.9099863,-0.08496471,-0.08675025,0.42122355,-0.21980652,-0.41660067,-0.3360968,-0.35979056,0.35964102,0.26749936,0.46349797,-0.6444826,0.36007625,0.18874864,-0.44916293,-0.10241818,-0.53386587,-0.1884939,0.035470165,0.27754843,0.021465996,0.021886382,0.16099903,0.08124321,0.34349436,-0.17788845,0.10415368,0.28439653,0.39128327,-0.008542702,0.30713493,-0.15201893,0.5395478,-0.1547949,-0.2802233,0.2803898,-0.38075966,0.38325173,-0.091581784,0.13933809,0.27442282,-0.32244253,-0.863032,-0.544452,-0.08379724,1.2983624,-0.13540016,-0.32243136,0.18617995,-0.33480442,-0.20663804,-0.1621324,0.46406096,-0.16447984,-0.14708519,-0.84204054,0.12153278,-0.1825875,0.19419253,-0.049948473,0.003869757,-0.38433385,0.6170863,-0.057538517,0.5176301,0.3528072,0.18967009,-0.09242091,-0.31395227,-0.031619254,0.8220685,0.39414954,0.08096506,-0.15190053,-0.28910798,-0.28629836,-0.0005709864,0.11649657,0.54788125,0.38296035,0.036579113,0.19949421,0.2664249,-0.0039080624,0.057572458,-0.17758858,-0.2756489,-0.07416308,0.050982174,0.4599828,0.63963956,-0.39821336,0.39004666,-0.15690488,0.31738335,-0.10463937,-0.37751183,0.3245914,0.77337426,-0.17769298,-0.2572422,0.59403706,0.5562748,-0.33229697,0.2899308,-0.47139144,-0.28449616,0.43024495,-0.23124646,-0.29044455,0.17729114,-0.2663445,0.03178668,-0.8857272,0.3558402,-0.2807519,-0.33465648,-0.56831044,0.020939395,-2.9039965,0.14404982,-0.22073679,-0.16693005,-0.1489835,-0.08954622,0.10178978,-0.6303819,-0.47500262,0.15580873,0.12733713,0.43709713,-0.0773471,0.16810647,-0.14337404,-0.29248032,-0.10531397,0.11913216,0.21655166,0.37410372,-0.17569637,-0.54652846,-0.07181366,-0.10051243,-0.24348855,0.18566993,-0.65546393,-0.37176737,-0.011885009,-0.5102558,-0.19579661,0.5107192,-0.44262478,-0.07331212,-0.21626224,0.09589228,-0.0851886,0.27680796,0.07799817,0.15398681,0.022237182,-0.041050643,0.09426908,-0.25572628,0.43900204,0.04692482,0.27931678,0.5199548,0.020512078,0.15231277,0.5064546,0.49500835,-0.08970583,0.75521123,0.5782895,-0.039026733,0.26596716,-0.25659895,-0.15687399,-0.4288153,-0.3548838,0.011191161,-0.40710792,-0.3923485,-0.05605556,-0.40254146,-0.8343761,0.4162707,-0.10254046,0.00082897395,0.0071487874,0.22313657,0.597272,-0.17586334,0.049345143,-0.06994296,-0.100469775,-0.4713808,-0.362175,-0.57031834,-0.33965775,0.07255953,1.0855725,-0.2587304,0.10264119,-0.0635017,-0.11536461,-0.14450729,0.1809677,0.01905346,0.16882476,0.58469087,-0.15733282,-0.52442145,0.3925706,-0.13319334,-0.2965153,-0.5525868,0.21022128,0.40449202,-0.6107421,0.67727,0.4080771,0.04868027,-0.07070542,-0.57324976,-0.1710342,-0.095227584,-0.22268689,0.26242954,0.19464919,-0.66827756,0.36689132,0.29329118,-0.24801345,-0.6767843,0.54896116,-0.041492265,-0.3291109,-0.027718272,0.3043273,0.062902644,-0.007173948,-0.18144764,0.13441932,-0.28224245,0.37969267,0.11959619,-0.07981466,0.3751038,-0.21035369,-0.10213128,-0.7110472,0.01627276,-0.4824239,-0.29085535,0.2998021,0.11275213,0.15333264,0.020666145,0.038776886,0.34757793,-0.5058874,0.043958515,-0.058672015,-0.21227194,0.2314901,0.25740254,0.48288548,-0.42099577,0.45630607,0.0059055574,-0.103597626,0.09503804,0.19101125,0.5185507,-0.011895396,0.24660324,0.06724633,-0.17201589,0.24670248,0.68486345,0.11083948,0.360709,-0.053197384,-0.26067847,0.32386485,-0.07884242,0.00371461,-0.12803613,-0.42871925,-0.0036641285,-0.124214396,0.21787284,0.47740746,0.12671465,0.37365618,-0.12875941,-0.26958188,0.046958845,0.26484263,0.2304119,-0.93619955,0.22884694,0.10317109,0.867447,0.27160847,0.089605644,0.011914946,0.5039022,-0.146534,0.14738247,0.45308238,-0.15117316,-0.5785719,0.529095,-0.6337825,0.37587747,-0.007462986,0.015689226,0.0648572,-0.010419935,0.26591274,0.7871925,-0.1830388,0.019254304,0.12056307,-0.41283715,-0.014745681,-0.25706574,0.098291434,-0.57861906,-0.22812992,0.46941617,0.62062484,0.31149408,-0.22140019,0.015657067,0.14664853,-0.09362446,0.11224674,0.11577102,0.29426485,-0.01986004,-0.68226326,-0.21307878,0.53406274,-0.029262774,0.1374754,0.029203907,-0.19446439,0.36444265,-0.10816142,-0.07810031,-0.03517254,-0.36330473,-0.0525829,-0.29827008,-0.43972746,0.4174324,-0.2018006,0.29573053,0.17298281,0.037171736,-0.32406533,0.4844776,-0.01624412,0.8007661,-0.040196735,-0.10087323,-0.48921725,0.24918208,0.22643107,-0.101514,-0.13375378,-0.39125037,0.13890451,-0.39964315,0.40228853,-0.09181355,-0.15479134,-0.05305604,-0.19405083,0.02339533,0.5003283,-0.013722625,-0.122898325,-0.15126473,-0.10288292,-0.44408137,-0.1388985,-0.09905031,0.26042143,0.23454323,-0.070431605,-0.17782465,-0.17942303,-0.11996086,0.31754813,0.12423085,0.33273625,0.45350683,0.11064408,-0.28281772,-0.16776676,0.2548172,0.5118124,-0.04644253,-0.11958513,-0.3270952,-0.43889675,-0.28446943,0.1229409,-0.21707338,0.2788066,0.23826706,-0.1155281,0.65457535,-0.01008147,1.1214718,0.15866926,-0.23649268,0.02888693,0.357108,0.011191264,0.01470547,-0.2852224,0.845538,0.53377587,0.1328396,-0.07638456,-0.33134606,-0.026962664,0.021973591,-0.087795116,-0.12373543,-0.09703592,-0.6209841,-0.3488757,0.15667583,0.14936286,0.2865191,-0.0642,0.15137559,0.11722288,0.0991855,0.21478803,-0.40652022,-0.25991008,0.23792392,0.28447548,-0.023545831,0.191135,-0.44626504,0.4242072,-0.42088312,-0.090425625,-0.22685549,0.1945417,-0.044930626,-0.2645342,0.11925585,-0.2045081,0.38098627,-0.3924472,-0.2552952,-0.26329666,0.46020013,0.13902307,0.09864537,0.4811896,-0.19148669,0.050597217,0.011634536,0.5209958,0.87277603,-0.2524661,0.07355094,0.3919471,-0.23806642,-0.70445293,0.2306765,-0.24892384,0.20982939,-0.16221917,-0.12909405,-0.536921,0.39143467,0.07909874,-0.026850767,-0.1363773,-0.42237455,-0.095541745,0.18998966,-0.33815545,-0.17099628,-0.22000827,0.04333123,0.6225916,-0.26319906,-0.29409933,0.065678984,0.24645203,-0.13362908,-0.43098128,0.03533683,-0.4224137,0.2454951,0.1260989,-0.25707224,-0.15720078,0.11166128,-0.297859,0.20532468,0.28550017,-0.22586803,0.024189103,-0.26645386,-0.023769952,0.8902818,-0.1386474,0.16303535,-0.4628289,-0.44162938,-0.7596909,-0.22960547,0.32654655,0.06742707,0.024761844,-0.6873275,0.01617793,-0.12898965,-0.33389673,-0.18967474,-0.3390442,0.43482065,0.07929659,0.15486851,-0.2739867,-0.6001564,0.12658358,0.059300013,-0.16198337,-0.50946647,0.43244886,-0.035971396,0.97465044,0.058645286,0.13327631,0.34830558,-0.32875365,-0.16424775,-0.19363579,-0.15451927,-0.6150231,-0.051552847,509 +74,0.59429115,-0.055924278,-0.7033105,-0.035893563,-0.32566503,0.16779576,-0.45581,0.19517066,0.4509099,-0.44612184,0.040565617,-0.061961576,-0.0014912598,0.24247514,-0.12562767,-0.4640767,-0.095932364,0.18726453,-0.54490685,0.68458486,-0.48155266,0.22398046,0.27984,0.39683178,0.0831654,0.12864453,0.16150501,-0.20623766,-0.18533832,-0.23714355,0.14391285,0.15175493,-0.64948523,0.21334395,-0.26840943,-0.22707218,-0.07524197,-0.44402152,-0.34291595,-0.72441405,0.23849678,-0.76196766,0.64740616,-0.011388354,-0.33862948,0.12654427,0.19614702,0.070390105,-0.19774696,0.07737994,0.23548174,-0.35212725,-0.63210905,-0.12369519,-0.1369028,-0.4386711,-0.6547485,-0.1112683,-0.60848236,0.18786272,-0.39044905,0.337729,-0.3921489,-0.0419408,-0.20959745,0.4813521,-0.45942312,0.15423574,0.09130153,-0.21590386,0.06845897,-0.62818253,-0.056827966,-0.029956017,0.23976383,0.2961538,-0.20757012,0.11795701,0.28431427,0.5760829,0.19834238,-0.36599743,-0.4797525,0.025034515,0.048265412,0.38418984,-0.21852882,-0.17369884,-0.17202915,-0.025683448,0.5529057,0.31171793,0.010610057,-0.30190012,-0.07751022,-0.15279193,-0.2852039,0.38924408,0.6119039,-0.26315925,0.011911824,0.40675336,0.36143637,0.21186496,-0.2294138,0.14759272,-0.1661661,-0.57919985,-0.113695085,0.10676515,-0.11280028,0.42351478,-0.112173446,0.34306583,0.59590095,-0.106886804,-0.19637859,0.15539177,0.074024096,0.12194196,-0.3281684,-0.1935342,0.37607944,-0.58408755,0.08480912,-0.3333671,0.5958689,-0.13284087,-0.85238314,0.3771259,-0.36626163,0.2011484,0.14254332,0.72821236,0.999197,0.66497433,0.23321256,0.94015896,-0.35810316,0.12401199,-0.18854815,-0.3171002,0.3164052,-0.029423699,0.47083795,-0.56091124,-0.108346716,-0.1045295,-0.18023466,0.02693653,0.8530592,-0.48966786,-0.20955299,0.15498537,0.7025744,-0.23535222,-0.10000898,0.88079405,1.0939652,1.0701774,0.048291054,1.2450148,0.30534405,-0.16142772,-0.2622923,-0.24390173,-0.92180836,0.20411292,0.28620666,0.43825567,0.3041661,0.27433023,-0.13452137,0.53813124,-0.35199064,-0.27583212,0.0149623975,0.44167817,-0.057439517,-0.12534457,-0.40429187,-0.18841875,0.17445248,0.022418475,0.22943616,0.38291246,-0.121629745,0.45847416,0.07840437,1.5685436,-0.16055328,0.08643058,0.13677007,0.22812274,0.23723432,-0.082048595,-0.05205709,0.3344913,0.44513866,0.006215574,-0.44091392,-0.011735849,-0.26269567,-0.47092357,-0.19512776,-0.31968987,-0.23735337,-0.31684533,-0.2233644,-0.24103497,-0.048861083,-0.6107954,0.25727782,-2.7214353,-0.10711194,-0.10794976,0.26394832,-0.16957672,-0.32505554,-0.15055601,-0.44629246,0.65486383,0.3006161,0.55312634,-0.6282548,0.518124,0.54532015,-0.65121716,-0.04841967,-0.86060417,-0.15974651,-0.22512189,0.45648316,-0.04699749,-0.46687424,-0.078938,-0.03736265,0.6194781,-0.028132048,0.13201074,0.5673267,0.47262657,-0.19352224,0.4193422,-0.1271864,0.6240632,-0.2986945,-0.24280035,0.37133452,-0.401689,0.25957435,-0.48243994,0.0862086,0.4469136,-0.35544744,-0.7151343,-0.39827558,0.1444657,1.0792215,-0.42121997,-0.5966895,0.17457198,-0.40497988,-0.1646719,0.25783408,0.60913414,-0.12700294,-0.034371294,-0.8381989,-0.16988534,-0.055483736,0.13418561,-0.09420976,0.19315562,-0.54252666,0.8197991,-0.106484674,0.59738827,0.42461756,0.3165979,-0.25543788,-0.2981287,0.21051735,0.9344827,0.37773976,0.014676617,-0.27912593,-0.19480552,-0.11519421,-0.33309484,0.012179827,0.7007722,0.5482773,-0.12710553,0.14071879,0.30431962,-0.27228263,0.0140062645,-0.20519868,-0.36546153,-0.28263658,0.05759711,0.5889472,0.7627771,0.043059662,0.5340115,-0.004652027,0.29645765,-0.13457969,-0.59021974,0.57765085,0.6371213,-0.27929282,-0.2028428,0.5784392,0.29176608,0.011857361,0.62172437,-0.59404504,-0.43071026,0.25010154,0.008681687,-0.4408834,0.3270262,-0.4522758,0.029241465,-0.8929063,0.1815297,-0.34464556,-0.6520222,-0.6822798,-0.23213989,-2.617296,0.10191874,-0.3349041,0.0010177772,-0.17004858,-0.11196635,0.26471484,-0.45180142,-0.64120877,0.10188027,0.21728416,0.5480944,-0.18721053,-0.03510474,-0.21670283,-0.44892353,-0.3230601,0.26151276,0.13854755,0.21286127,0.039734643,-0.41342407,-0.021547372,-0.20724453,-0.13606998,-0.17063117,-0.58247685,-0.25711495,-0.04817173,-0.44047368,-0.31946254,0.69964206,-0.39590958,0.08514185,-0.34308058,0.08145752,0.09448248,0.18884407,-0.15056428,0.22882888,0.06820454,-0.15248072,0.0048172977,-0.29666752,0.2617179,-0.031226201,0.3665784,0.5989737,-0.10303074,0.15462402,0.4800384,0.7786517,-0.14283903,1.1348684,0.46918643,-0.11244486,0.1951659,-0.10630394,-0.20633027,-0.6904177,-0.17363587,-0.040764857,-0.61227053,-0.33059385,0.020194769,-0.481786,-0.8493649,0.58732766,0.1950663,0.056336366,-0.055031568,0.47732493,0.5633157,-0.19578591,-0.06306833,-0.15368693,-0.34366554,-0.41731688,-0.27960625,-0.81282985,-0.51916677,-0.12881483,1.1972195,-0.12404098,-0.14500824,0.11799263,-0.3365607,-0.044016417,0.2180633,0.10375649,0.1539774,0.4133653,0.18189305,-0.679309,0.49850917,-0.24603051,0.095022395,-0.70336944,0.28814477,0.58961606,-0.75144863,0.41545478,0.482483,0.23154083,-0.19463576,-0.7882138,-0.18497205,0.15822837,-0.13892512,0.49200666,0.36289865,-0.8303683,0.7303865,0.27769613,-0.14302516,-0.8055819,0.25000358,-0.0019366089,-0.3022324,-0.027120396,0.3502926,0.09276549,0.17684597,-0.41173202,0.26539776,-0.41058356,0.5630485,-0.0058521964,-0.27025875,0.3287072,-0.15925932,-0.25375038,-0.8003937,-0.07231979,-0.45579273,-0.34301305,0.23788583,0.14597799,0.14606068,0.020649455,0.22551352,0.51020455,-0.41760284,0.12868343,-0.51312494,-0.32030517,0.5098387,0.5891497,0.3213219,-0.38337085,0.6447078,0.050053064,-0.25877854,-0.136167,-0.038910724,0.3768948,-0.08206052,0.49398655,-0.055373106,-0.15645707,0.30968845,0.7926107,0.081880316,0.30656856,0.10633649,-0.1438826,0.37870586,-0.09451027,0.15256603,-0.22143261,-0.63096553,-0.14791203,-0.2013728,0.2476597,0.48913652,0.21070407,0.57667065,-0.14817084,-0.046677716,0.1044647,0.12506013,0.16728783,-1.1045251,0.35436827,0.18292674,0.72681427,0.46651977,0.000892777,-0.035896644,0.7158251,-0.2969066,-0.026805306,0.41531307,-0.0038238093,-0.21161738,0.5641379,-0.84094983,0.3718341,-0.2610937,0.10079077,0.17527558,0.08250446,0.47905806,0.99269366,-0.2534274,0.13432029,-0.047868386,-0.2723496,0.12176722,-0.110445835,0.06329052,-0.48891923,-0.3739506,0.77245283,0.30137426,0.5632506,-0.22898757,-0.047956653,0.3063481,-0.19299802,0.2846247,0.048995722,-0.0018952321,-0.11999667,-0.4274829,-0.16550678,0.5076617,0.08832002,0.109888576,0.10309323,-0.10640568,0.31634814,-0.14718215,-0.19663727,-0.06045807,-0.5607773,-0.04529698,-0.34805736,-0.53223705,0.5977751,-0.030391209,0.25137037,0.17557883,0.035250593,-0.06771594,0.27906376,-0.014999688,0.78157187,0.092440456,-0.28556192,-0.056301106,-0.0706289,0.20738672,-0.27925476,-0.12353979,-0.18314098,0.2420198,-0.6867301,0.38930798,-0.45627084,-0.4414689,0.20494826,-0.22922425,-0.00894168,0.47076082,-0.14114043,-0.16173705,0.23834842,-0.12976688,-0.18440579,-0.39483997,-0.40537623,0.17222454,-0.17542934,-0.042704783,-0.12318621,-0.07580116,-0.12365899,0.38556674,0.17218211,0.017583646,0.42508113,0.1884771,-0.43836358,0.050945487,0.43224412,0.60804194,-0.036212824,-0.083694965,-0.55041504,-0.36634555,-0.4413026,0.26819074,-0.06937688,0.33947727,0.08488926,-0.37819105,1.0618993,0.10726053,0.9910326,0.061405025,-0.32011998,0.08815082,0.6761754,0.06300612,0.07770229,-0.32341993,0.9440323,0.553918,-0.12242288,-0.0075032692,-0.62293833,0.021619286,0.4218481,-0.3618033,-0.15965414,-0.07919012,-0.73053193,-0.102252655,0.15544473,0.16597873,0.063663445,-0.23602793,-0.004201226,0.17262188,0.25160813,0.17690468,-0.6012459,-0.1304853,0.46128935,0.20411535,-0.086057,0.17669556,-0.44855917,0.2289544,-0.5983783,0.10883327,-0.3063901,0.109912656,-0.079941444,-0.19396386,0.4581118,-0.010169897,0.2851074,-0.37847218,-0.31825185,-0.08604437,0.2900256,0.2395827,0.3374486,0.6457684,-0.31839967,-0.085732155,0.1572047,0.58116335,1.2233826,-0.34378463,0.19005656,0.2916345,-0.37135664,-0.775524,0.26546726,-0.39070997,0.09868758,0.033952985,-0.53639483,-0.44756836,0.2226884,-0.005451534,-0.05636154,0.05626699,-0.44868276,-0.14510721,0.23378861,-0.34745663,-0.12382526,-0.1915454,0.026057068,0.81967545,-0.28699547,-0.2967317,-0.07960458,0.28872132,-0.111159146,-0.5254252,0.13314213,-0.45970762,0.2220383,0.24403065,-0.3444858,0.0030437186,-0.046296027,-0.75437516,0.025721382,0.36121702,-0.29326633,0.03972645,-0.443063,0.055465948,0.8753252,-0.083000794,0.22710901,-0.44979206,-0.49696285,-0.81589746,-0.0934196,-0.06282313,0.0032953247,-0.017924191,-0.5552939,-0.09080522,-0.35938096,-0.123325415,-0.0449121,-0.64806247,0.39566302,0.15443835,0.39127672,-0.27824238,-0.9802826,0.045726717,-0.005224675,-0.24352297,-0.38576564,0.6193359,0.044900343,0.92835563,0.17066541,0.055161633,0.13634112,-0.6519726,0.1465154,-0.27087086,-0.2760916,-0.82671416,-0.02734004,524 +75,0.32526845,-0.10144975,-0.6639423,-0.047369216,-0.25075015,0.1953845,-0.19068736,0.33284485,0.16297859,-0.367813,0.030794542,-0.13061056,-0.014745977,0.38845187,-0.013777081,-0.5308367,0.028261295,0.21221833,-0.6510348,0.40963054,-0.51123303,0.343443,-0.11783797,0.17266583,0.15416974,0.29586965,0.17970422,0.02011276,-0.13056499,-0.0018653534,0.08467642,0.20458874,-0.39443463,0.23585421,0.003190089,-0.301055,-0.07686164,-0.34491426,-0.35179454,-0.5336864,0.289062,-0.5591303,0.5852437,-0.20747778,-0.15933767,0.2891776,0.171672,0.23713282,-0.2552393,-0.08329907,0.058771566,-0.28095508,-0.23634312,-0.3167987,-0.2123224,-0.22963497,-0.54898256,0.06823331,-0.54237664,-0.09197006,-0.3031274,0.1087034,-0.3383334,0.121926725,-0.06859459,0.51842993,-0.3911151,0.10904503,0.11972511,-0.20853546,-0.07198855,-0.62431145,-0.033397384,-0.04586863,0.0995339,-0.20698312,-0.27953976,0.3381037,0.17259628,0.44039628,-0.043986592,-0.11048412,-0.4192029,-0.17117628,0.07337201,0.5852814,-0.16659299,-0.11517004,-0.15886556,0.014113128,0.09367801,0.06622795,0.044898957,-0.22041011,-0.15119544,0.059695676,-0.121510066,0.32360736,0.49265128,-0.44315463,-0.18775493,0.49363256,0.5948058,-0.03999634,-0.10764932,0.10366977,-0.10765182,-0.48740095,-0.19263917,-0.020560972,-0.058915474,0.3886137,-0.17798045,0.20677158,0.5234543,-0.27495396,-0.12882599,0.24148151,0.16366082,0.061233673,-0.245301,-0.12935318,0.19458619,-0.45942914,-0.07180007,-0.0899343,0.6189029,0.15157513,-0.60385406,0.35059324,-0.45464808,0.13182035,0.01982373,0.5914477,0.7818122,0.46823406,0.17907497,0.72575885,-0.31565684,0.14341629,-0.12867843,-0.31313205,0.038081557,-0.08184837,-0.117880814,-0.51247567,0.16295813,0.10943897,-0.013257029,0.29279897,0.5382198,-0.43896243,-0.100706175,0.09932619,0.6776245,-0.3433539,-0.21907452,0.7117421,1.0298043,0.9382893,0.025255416,1.1699511,0.14938113,-0.21600297,0.092810735,-0.27341676,-0.7101183,0.22291473,0.26328698,-0.123923644,0.33361536,0.15481503,-0.029305026,0.3863079,-0.40581757,-0.025364451,0.0053738104,0.2407232,0.01796294,-0.042859968,-0.36055022,-0.26238933,0.08555652,0.032278605,0.20595077,0.33415642,-0.42202932,0.41635787,0.09419788,1.5516872,-0.041093785,0.16260675,0.13760756,0.29352295,0.14790845,-0.24890675,-0.21875905,0.26459473,0.31962022,0.08805053,-0.49257246,0.034157522,-0.17407314,-0.4928072,-0.1176061,-0.31692886,-0.078808,-0.18501276,-0.4192653,-0.21862376,-0.052241717,-0.5642253,0.42004097,-2.723856,-0.18756893,-0.0744454,0.3374355,-0.11614647,-0.3947353,-0.28863296,-0.46889764,0.17617218,0.3722633,0.41971177,-0.475922,0.34987172,0.26871604,-0.42100975,-0.15438277,-0.50682664,-0.0030116625,-0.09931369,0.2274795,0.0414119,-0.110512644,-0.010888159,0.1833509,0.49681938,-0.31156683,0.049332842,0.31903327,0.24931511,-0.012067404,0.3431378,-0.028422505,0.659976,-0.47294784,-0.28829777,0.429056,-0.5321865,0.062672846,-0.06705813,0.19837159,0.36228955,-0.49966407,-0.84978783,-0.4700501,0.05164349,1.3255169,-0.25688595,-0.23780414,0.26629508,-0.3761394,-0.44135696,-0.10653433,0.36021,-0.14304177,-0.112642355,-0.7500033,0.07021873,-0.18043756,0.24937037,-0.12167309,0.0010601319,-0.37776482,0.49690711,-0.057896398,0.71192336,0.31048605,0.17083436,-0.3684773,-0.23263685,0.21513267,0.96593237,0.39072645,0.14393345,-0.18296659,-0.17364258,-0.25483862,-0.14200568,0.21902862,0.5013536,0.6207731,0.025576435,0.117153,0.29901415,-0.019573372,-0.042400375,-0.2127408,-0.21733828,0.03149733,0.07345317,0.6003015,0.43151295,-0.05741708,0.37925044,0.0490328,0.30129567,-0.26997158,-0.5349347,0.32908878,0.8917818,-0.17892274,-0.45418978,0.43691495,0.5253706,-0.2807163,0.478807,-0.5261634,-0.38434616,0.24239507,-0.3151205,-0.17360248,0.17701684,-0.32384968,0.16083728,-0.70111144,0.18348911,-0.018982448,-0.6873566,-0.5398575,-0.20668797,-3.3466072,0.04986553,-0.13181515,-0.10657129,0.054792494,0.023178335,0.114400834,-0.42922533,-0.47084057,0.008435257,0.19417672,0.6701287,-0.07382832,-0.086353466,-0.10392146,-0.39206713,-0.2279025,0.1549448,0.077782914,0.30733567,0.0009456761,-0.41325897,-0.0033193715,-0.29206192,-0.40048173,-0.093787074,-0.48989844,-0.33964586,-0.12738073,-0.5140064,-0.32857266,0.6572802,-0.4532056,0.13269442,-0.2660115,-0.0150772,0.043154128,0.30387637,0.03481394,0.050037537,0.15680647,-0.12705731,0.18954141,-0.38416964,0.2388382,-0.025898237,0.23021276,0.5844489,-0.16987783,0.088541664,0.5387726,0.64760786,-0.03212945,0.9571339,0.40560704,-0.103998184,0.33208346,-0.26550847,-0.20800102,-0.3662871,-0.31241283,0.07586433,-0.46156758,-0.32560337,-0.06458337,-0.3649884,-0.84462905,0.45873222,-0.026106343,0.09205688,0.034269758,0.3753695,0.40667132,-0.20459563,-0.055665366,-0.07945424,-0.14497003,-0.29755592,-0.37821257,-0.67542726,-0.54790026,0.100091085,1.2989877,-0.21618266,0.06258691,-0.004994899,-0.22531143,0.018255979,0.17190626,0.2750144,0.42602807,0.3868728,-0.18652567,-0.5210935,0.28878176,-0.5143623,-0.18080415,-0.5604231,0.1059899,0.5020606,-0.5848162,0.39238268,0.3504184,0.25503865,-0.045754142,-0.48988473,-0.0065757334,0.021238148,-0.21255279,0.45967537,0.30229783,-0.8831317,0.5468966,0.24952477,-0.34310478,-0.70461285,0.44687876,-0.02704601,-0.058233026,-0.034993906,0.40145367,-0.034318954,-0.053889148,-0.27234024,0.02740432,-0.4068439,0.32459465,0.20302492,0.053552985,0.37498492,-0.3420652,-0.14586985,-0.5249008,-0.13039425,-0.45218498,-0.1829633,0.07696217,0.048145875,0.23130043,0.17255342,-0.09264386,0.3778761,-0.35452807,0.061354313,-0.18803306,-0.36845538,0.28999227,0.41110602,0.34617478,-0.2924903,0.5733039,-0.033450194,-0.008921862,-0.12865682,0.008139454,0.49856657,-0.012663737,0.37826344,0.0856424,-0.09019528,0.2618704,0.8944862,0.2513649,0.2325426,0.073913805,-0.3067779,0.02829101,0.058847472,0.13909593,0.08738397,-0.40918037,0.02895065,-0.15289424,0.2292107,0.5363481,0.21977563,0.55311465,-0.18309367,-0.34738404,0.050505616,0.12407571,-0.069697335,-1.3746457,0.3344848,0.09370223,0.7363719,0.4263652,0.111288905,0.05781661,0.43806654,-0.29348826,0.20440075,0.23980534,-0.26760483,-0.35414982,0.488194,-0.79682803,0.6063173,0.06755085,0.017839843,0.15147997,-0.052594446,0.47651994,0.87675184,-0.11418027,0.016982058,0.23817801,-0.2270203,0.2011309,-0.32348704,0.06646,-0.5705452,-0.20914519,0.7534969,0.34294578,0.43889648,-0.15921953,-0.035880253,0.05420556,-0.19902213,0.16779152,-0.03194139,0.23194247,-0.22990659,-0.54678065,-0.21833004,0.40812993,0.14063305,0.19289063,0.22717986,-0.1237878,0.2965149,-0.046910085,-0.099315636,-0.11448746,-0.4614092,-0.026479661,-0.2575424,-0.5444343,0.27073416,-0.17950714,0.3045498,0.2720514,0.04767154,-0.50288314,0.42696726,0.23772223,0.82610476,-0.0322339,-0.15978532,-0.19229741,0.26250684,0.2703729,-0.20483619,-0.122742675,-0.48433942,0.14885195,-0.64737993,0.43026453,-0.16958839,-0.29793423,0.28376037,-0.08228508,-0.023374364,0.53157574,-0.10727183,-0.09891847,0.030004412,-0.051697824,-0.30689913,-0.2246782,-0.3149112,0.23402584,0.002598565,-0.09999849,-0.1990253,-0.106419556,-0.106682345,0.24921583,0.051671114,0.27070183,0.2835851,0.09521541,-0.32211894,-0.018417902,0.12281724,0.5477993,-0.0029652454,-0.15244283,-0.41684213,-0.36712205,-0.19304697,0.29687777,-0.066617094,0.25544536,0.18303156,-0.24448287,0.6788263,-0.20744804,1.0734968,0.10663144,-0.26261404,0.11049198,0.51853937,-0.00085695833,-0.08789933,-0.25695515,0.91550875,0.5266954,-0.105708666,-0.27629015,-0.38320687,-0.029229265,0.17536686,-0.23306158,-0.40695667,-0.107346945,-0.6178523,-0.36416098,0.19721733,0.17079407,0.24396339,-0.17530909,0.15721169,0.30242214,0.050663453,-0.03066133,-0.39740855,0.08460522,0.411836,0.24617986,-0.090816446,0.12501979,-0.4878365,0.3649771,-0.604018,-0.057965726,0.024162918,0.15326916,-0.11881991,-0.31214154,0.3177734,0.24061587,0.26935893,-0.22236478,-0.22911078,-0.2547738,0.48598397,0.026490834,0.045865834,0.68494266,-0.2519661,0.003636674,0.06984052,0.34577942,0.910621,-0.2109925,-0.0126285665,0.25873595,-0.31845582,-0.5961969,0.29930663,-0.34972262,0.15052831,-0.119972125,-0.25742692,-0.5281704,0.36930424,0.18600042,0.07923671,0.11025898,-0.44453585,-0.1475099,0.15150577,-0.31732532,-0.1559179,-0.36876535,-0.06517278,0.628386,-0.21396211,-0.21206895,0.20554945,0.4499949,-0.17908686,-0.58647555,-0.018298738,-0.38684368,0.2700679,-0.027790073,-0.19344401,-0.112088524,0.02751819,-0.36205292,0.25628042,0.3324346,-0.22451177,0.09679867,-0.23368557,0.01864621,0.72066045,-0.17730722,0.20765164,-0.48406988,-0.5583443,-0.9305092,-0.2364796,0.36233783,0.12004247,-0.022206372,-0.6404655,-0.006802369,-0.17639975,-0.28986073,-0.007468488,-0.47250152,0.38593483,0.027501876,0.18901014,-0.19028898,-0.8240031,0.08119241,0.13794275,-0.24096549,-0.43204802,0.40994185,-0.044460934,0.7507831,0.22461702,0.05808507,0.41808003,-0.5380412,0.13484575,-0.17839801,-0.102822155,-0.58610874,-0.014051076,525 +76,0.5299336,-0.119712055,-0.5737795,-0.053311445,-0.41182956,0.17510359,-0.20176855,0.32523298,0.31859055,-0.36602148,-0.050976016,0.1416305,-0.15879878,0.19739789,-0.18745393,-0.6125623,-0.051329203,0.10683901,-0.3770923,0.61481565,-0.38199753,0.4477176,0.0017060991,0.22286928,0.054519318,0.34081122,0.022426743,-0.0633907,-0.108002886,-0.30379945,-0.07283636,0.19389573,-0.6181721,0.30222642,-0.017400056,-0.28615868,-0.036709264,-0.36754194,-0.15282512,-0.6782506,0.22038195,-0.5611668,0.6040133,-0.0303232,-0.26990792,0.18015537,0.043270335,0.26199657,-0.079712406,0.015338529,0.2556057,-0.058472387,-0.28165781,-0.10058556,-0.06941734,-0.35668844,-0.477359,0.035257906,-0.39193398,0.019330544,-0.16242635,0.21245624,-0.25284824,0.00694409,-0.17970128,0.40852526,-0.32623643,0.101566374,0.09979515,-0.11396398,0.22202489,-0.65930724,-0.00828832,-0.1291128,0.18082853,-0.1156363,-0.23720872,0.26187408,0.3328086,0.47319594,0.10081493,-0.19507879,-0.35222626,0.01344084,0.20316112,0.41174063,-0.2750865,-0.3727646,-0.22281788,0.08966566,0.2571653,0.064957395,0.041535452,-0.41601783,-0.03711579,-0.14306049,-0.26417837,0.4188767,0.43055475,-0.3472445,-0.05336556,0.41983667,0.5937897,0.20717287,-0.07553825,0.016731502,-0.086637214,-0.46887338,-0.19459756,0.07650323,-0.055666573,0.33861327,-0.0918315,0.099876404,0.44913775,-0.12151457,-0.225276,0.22102669,0.037387922,0.033939272,-0.19244164,-0.1638228,0.17264512,-0.5594638,0.0027519874,-0.24586795,0.5599358,0.115016736,-0.7630632,0.27368742,-0.45707077,0.032116186,0.011316504,0.4711671,0.77113414,0.5067013,0.08981614,0.8627989,-0.4655012,0.049727976,-0.18809393,-0.35342547,0.15198202,-0.08450579,-0.10510534,-0.61389065,0.19950613,-0.07148476,-0.18233056,0.09051452,0.17855084,-0.595754,-0.029156156,0.116812065,0.6321983,-0.33506268,-0.031212322,0.65278727,1.1203363,1.0556722,0.07908062,1.3572732,0.09541459,-0.18834989,-0.02784653,-0.3098987,-0.68081677,0.28340447,0.3631249,-0.09165092,0.3315794,0.17721127,-0.032149762,0.38653147,-0.32814482,-0.11013037,-0.12659107,0.46685073,0.029283747,-0.115893364,-0.3467259,-0.21676062,0.064875275,0.18486893,0.022639103,0.19192791,-0.32170013,0.24293192,0.16805917,1.368526,-0.22372365,0.039139427,0.12507154,0.23586933,0.27426895,-0.21547568,-0.1001806,0.22344726,0.3091622,0.18514416,-0.4552368,-0.034451026,-0.17112724,-0.43854946,-0.13276312,-0.15246198,-0.15618712,-0.07285302,-0.2194378,-0.23030153,0.04291907,-0.26567686,0.5561055,-2.6145256,-0.035375386,-0.12944037,0.16665274,-0.11687632,-0.4942421,-0.11583814,-0.45468652,0.3447874,0.2750615,0.43203205,-0.63955665,0.36189806,0.42499927,-0.55995613,-0.13140196,-0.5077952,-0.13780625,-0.015981125,0.38037914,0.13276675,-0.16478245,-0.15644999,0.21765454,0.41689432,-0.14174774,0.09407386,0.3887563,0.33151776,-0.057755936,0.45439088,0.13652739,0.60886955,-0.13529415,-0.21663764,0.401533,-0.3360127,0.20480159,-0.07301368,0.14622858,0.3228651,-0.404427,-0.88190854,-0.7581035,-0.1558178,1.3306019,-0.19312441,-0.4430816,0.14779317,-0.23579833,-0.49175957,0.061932236,0.19030476,-0.072216675,-0.12885642,-0.8371941,0.07871011,-0.10232245,0.20316568,-0.075686365,-0.015154716,-0.6355525,0.7538853,-0.11825861,0.45718542,0.5377065,0.15713033,-0.11542064,-0.44370946,-0.08253458,1.0834823,0.54966515,0.025907632,-0.17029291,-0.13707021,-0.35342407,0.059329055,0.16347206,0.59071827,0.5090927,-0.037430447,0.04326486,0.15450318,0.01438003,0.06337915,-0.207477,-0.36049202,-0.05627147,-0.19084811,0.5899891,0.62258536,-0.07281919,0.4312031,-0.048147645,0.26466858,-0.007265631,-0.574181,0.4310481,0.9515383,-0.1519793,-0.29897207,0.73434365,0.37140027,-0.07399689,0.4428526,-0.4546788,-0.36601135,0.17827265,-0.10056832,-0.27594006,0.27127588,-0.24068148,0.09023104,-0.6171125,0.35193986,-0.32912964,-0.6620139,-0.42974293,-0.1559606,-3.032799,0.28250134,-0.12889653,-0.057874627,-0.012882199,-0.047814902,0.29702404,-0.5688583,-0.62223583,0.13196763,0.08143738,0.5048202,-0.14742705,-0.012888711,0.013036879,-0.37160277,-0.13330066,0.26481566,0.054294672,0.27153242,0.07492443,-0.3767238,-0.08485874,-0.10945335,-0.32313693,-0.000327399,-0.55964494,-0.52986073,-0.08391571,-0.43887672,-0.22871716,0.7235667,-0.48730248,0.03797582,-0.22294539,0.02821263,0.031575486,0.16993658,-0.15589263,0.07896264,0.004863739,-0.018450607,0.03686332,-0.22546867,0.30278265,0.10612109,0.27925617,0.3316208,-0.11380872,0.26339865,0.46751028,0.7395648,-0.10838328,0.94200724,0.43111598,-0.17446733,0.25965238,-0.14853062,-0.30368084,-0.5157283,-0.34504503,-0.023651712,-0.54552984,-0.24412231,-0.02347364,-0.35196114,-0.7982096,0.55354506,0.06546947,0.0030313283,0.011498272,0.27092236,0.5052166,-0.12783802,0.08484201,-0.16097902,-0.24026631,-0.44402874,-0.33209544,-0.5606233,-0.31974968,-0.015949491,1.2859938,-0.38026124,0.11450536,0.09765959,-0.16981411,0.09001225,0.03220187,0.017881092,0.16513127,0.41545427,-0.03348886,-0.6502037,0.3007602,-0.2352524,-0.029375408,-0.5362127,0.27261436,0.61824197,-0.62014925,0.34706858,0.34894323,0.18815178,0.035449825,-0.504827,0.0058782306,0.060712095,-0.3689076,0.597717,0.2628854,-0.6293486,0.45545888,0.36138952,-0.23488094,-0.73868126,0.42838562,-0.067826025,-0.19846858,-0.07284898,0.36229616,0.1696867,0.042342626,-0.19210558,0.1826947,-0.27599886,0.38217127,0.13025393,-0.09489293,0.061179493,-0.16972502,-0.20688528,-0.7708963,-0.03945017,-0.3885211,-0.40803194,0.13144824,0.045393802,-0.031531043,0.10190649,0.13244766,0.46465695,-0.3760162,0.0790125,-0.10928235,-0.30779716,0.45784575,0.47195402,0.37442935,-0.276602,0.47955823,-0.00022386573,-0.2037161,-0.22456895,-0.07807088,0.5182091,-0.027539417,0.2910819,0.07374756,-0.0045631714,0.29902285,0.6214487,0.05165613,0.25435895,-0.17903164,-0.31814954,0.07539787,0.01935316,0.24356024,0.045607165,-0.5108663,0.04246967,0.030812431,0.16539565,0.5788237,0.18051676,0.207048,-0.14307891,-0.33230293,0.035422537,0.14758949,0.032458715,-1.431038,0.34700432,0.038287267,0.78758645,0.64553094,0.010792816,0.14668858,0.5317235,-0.122686855,0.073112026,0.421969,-0.014765263,-0.29864383,0.28348494,-0.7699202,0.3339244,-0.07079777,0.11755325,0.121407524,-0.14102615,0.31238177,0.9925064,-0.14518136,0.03173295,-0.17511438,-0.19979914,-0.15427276,-0.26607943,0.09239873,-0.5214056,-0.41901842,0.75216484,0.44758558,0.49338982,-0.20934889,0.07988189,0.10095156,-0.15916465,0.16123754,-0.027408775,0.027896114,-0.05355698,-0.53268576,-0.13482954,0.58971983,-0.071901396,-0.018751284,0.03521783,-0.23152058,0.18831539,-0.059777766,0.0050517824,-0.04645495,-0.62583435,-0.19470438,-0.38353032,-0.2421973,0.2881024,-0.12502415,0.12900649,0.07851526,0.12995014,-0.2168689,0.28936344,0.25511765,0.7428379,0.118615836,0.011441879,-0.21915662,0.31024596,0.10478999,-0.15971951,-0.10259826,-0.15325254,0.20454764,-0.7553601,0.40368998,-0.03644833,-0.4071414,0.17138043,-0.039424144,0.055563435,0.42917594,-0.26785696,-0.23948863,0.092380166,-0.066878825,-0.0651666,-0.23543167,-0.12315134,0.07691464,0.158667,-0.16991606,-0.119924545,-0.21479985,-0.14691705,0.21711329,0.11517088,0.33029917,0.35752818,0.09453127,-0.518082,0.048589915,0.13845539,0.51389676,-0.06746194,-0.13587634,-0.3031754,-0.4953366,-0.3809603,0.21902698,-0.11901705,0.25715607,-0.09255629,-0.24157766,0.71612906,0.16115323,1.3393891,0.019933375,-0.30006862,0.042271502,0.5101028,-0.028231248,0.09351201,-0.39792675,0.99757624,0.6121471,-0.21930267,-0.12741299,-0.48013043,-0.052778408,0.07262147,-0.1757741,0.041683394,-0.09094004,-0.68105924,-0.38287205,0.2810238,0.21484277,-0.018767953,0.019336477,0.0059100688,0.21220498,0.05359085,0.32431838,-0.47253597,-0.031220905,0.24409948,0.27805462,0.053592555,0.058155067,-0.55720353,0.34522474,-0.503228,0.09225313,-0.17758746,0.04239578,-0.19841754,-0.12773491,0.14333218,-0.11728555,0.24770574,-0.4273508,-0.49343586,-0.20455985,0.41041967,0.021606125,0.05126465,0.66197026,-0.22676125,0.0945203,0.04521574,0.41208613,1.0293245,-0.2645388,0.033540823,0.3896476,-0.27334043,-0.4486019,0.016322471,-0.21603274,-0.06864646,-0.023515977,-0.32327998,-0.46038458,0.3616588,0.1070558,0.11396462,0.049514554,-0.6829914,0.024928167,0.33085746,-0.20537427,-0.1434924,-0.16441175,0.10756622,0.7183168,-0.39056206,-0.5766759,0.07027486,0.26363474,-0.19549254,-0.6590604,-0.14799032,-0.30990058,0.3605055,0.22161919,-0.3036175,-0.1939565,0.07573663,-0.44804156,-0.10100937,0.26036233,-0.30526096,0.025409443,-0.29492608,-0.067158096,0.7309532,-0.08963003,0.24139978,-0.46718943,-0.4512794,-0.8731165,-0.23194283,0.19312683,0.262052,-0.072356865,-0.6617424,-0.09092212,-0.26149896,-0.12394957,0.011563063,-0.38115793,0.4539492,0.14940977,0.3868367,-0.19805312,-0.891557,0.15100096,0.20842397,-0.028275289,-0.43262523,0.47060126,0.064499184,0.6522759,0.15599813,-0.001107309,0.18329407,-0.63325906,0.107636124,-0.1624769,-0.0767656,-0.7242565,0.11816088,539 +77,0.38083997,-0.14701307,-0.49127018,-0.18092112,-0.28758293,0.28221333,-0.0750658,0.41349486,0.27164468,-0.40781,-0.14123438,-0.09111164,0.027750038,0.36985835,-0.20197958,-0.39186412,0.017688446,0.046445593,-0.47010353,0.28682917,-0.45773557,0.3462428,-0.016566098,0.23271915,0.17578353,0.31513128,0.15808469,-0.20200843,-0.23642811,-0.090671375,-0.008980811,0.25754324,-0.3776862,0.22532547,-0.1456364,-0.26655984,0.05581682,-0.34106082,-0.28957263,-0.6825587,0.240331,-0.8821328,0.34166718,-0.102520004,-0.22528307,0.28743854,0.119667076,0.2417572,-0.10894889,0.05435502,0.2461097,-0.17559566,-0.15567002,-0.16032958,-0.21755946,-0.35029206,-0.45557564,-0.0347552,-0.38354796,-0.18662725,-0.18561628,0.29492718,-0.20621893,-0.024476554,-0.07256741,0.30345702,-0.47502214,0.14777231,0.14158696,-0.16492432,0.09961053,-0.5618205,0.03645142,-0.057957307,0.24909951,-0.24789906,-0.24480483,0.362677,0.26184875,0.32892498,-0.0075228307,-0.106154054,-0.44018558,-0.13299583,0.1851976,0.42855284,-0.142032,-0.311205,-0.13125363,-0.06231138,0.14598128,0.26038322,-0.051007524,-0.46425366,-0.099257484,-0.04722254,-0.19540161,0.34629184,0.5592688,-0.3090838,-0.3086341,0.48277408,0.6708342,0.101994455,-0.29922995,-0.0688176,-0.058169663,-0.5850347,-0.1259192,0.2551266,-0.08695202,0.5490763,-0.11505354,0.13471547,0.7353192,-0.4236738,-0.00051481277,0.13517922,0.18270804,-0.028941154,-0.26727647,-0.0835262,0.1322267,-0.5513489,0.06644823,-0.11739834,0.7162698,0.09687105,-0.71492034,0.28124347,-0.3776104,0.01309745,-0.21902874,0.52131975,0.58857054,0.42784256,0.13774353,0.7618528,-0.4433296,0.08670027,-0.20887548,-0.40787426,0.20794162,-0.13732621,-0.13673186,-0.44402257,0.058078013,0.10363793,-0.10347264,0.088661134,0.3143279,-0.59047,-0.13823223,0.18693931,0.59008455,-0.42417276,-0.11252594,0.57168883,0.8637125,0.849306,0.094247356,1.217708,0.2521461,-0.17037699,0.12320533,-0.37881008,-0.55022955,0.26070058,0.22309485,-0.00558953,-0.017127827,0.12471664,0.045555193,0.26187375,-0.4416361,-0.040497214,-0.21549708,0.39182305,0.14134416,0.06957278,-0.22793797,-0.2673188,-0.022742953,0.15862812,0.1643674,0.12539709,-0.38796198,0.19291109,0.102408126,1.699971,-0.05668494,0.08060767,0.03450686,0.31369773,0.16078933,-0.13584381,-0.07675749,0.42518198,0.3224901,0.103522554,-0.49287412,0.036874406,-0.22109818,-0.46796525,-0.13184072,-0.40804625,-0.09143464,-0.08758661,-0.41754878,-0.14236,0.04065818,-0.2428539,0.7108415,-2.7156549,-0.09887997,-0.02405239,0.28111824,-0.1937217,-0.3947448,-0.255688,-0.47592598,0.36376897,0.3236484,0.44663423,-0.64942825,0.20619127,0.34152055,-0.4342695,-0.1675535,-0.6790519,0.033838682,-0.07549137,0.2790833,0.15239799,0.026588462,-0.036784217,-0.012887694,0.48374352,-0.09240992,0.14907908,0.3696419,0.26511958,0.12423024,0.44960722,0.052053265,0.6104571,-0.24533755,-0.2662994,0.36855498,-0.3698551,0.3007195,-0.099745505,0.25472987,0.35895854,-0.27282476,-0.9464022,-0.7555714,-0.2253762,1.2197027,-0.22632894,-0.40480965,0.20615974,-0.19257557,-0.33908913,-0.013428215,0.3742708,-0.04232241,-0.04525057,-0.762587,0.08256009,-0.07813238,0.20838293,-0.13922319,0.017084055,-0.31849152,0.45358646,-0.12541224,0.36462694,0.31005785,0.2085307,-0.27587956,-0.4358378,-0.027684998,0.8325659,0.33008456,0.09797772,-0.09523983,-0.320354,-0.31337726,-0.14384997,0.18995953,0.45304766,0.6389687,0.051077705,0.035365455,0.15593961,-0.078622326,0.0095595885,-0.11790143,-0.29357067,0.004255846,-0.10194945,0.53506035,0.5000595,0.0108247325,0.518083,-0.12517434,0.27113837,-0.09146252,-0.55522585,0.33046386,0.7087182,-0.292354,-0.3240904,0.4341624,0.41032818,-0.25157338,0.392985,-0.63914007,-0.25728703,0.38391134,-0.1521574,-0.45473507,0.0557134,-0.29545307,0.1319246,-0.79272485,0.29075217,-0.10996759,-0.63021857,-0.45342878,-0.1619526,-2.8628776,0.17436832,-0.101447105,-0.13229914,0.07172798,-0.16597262,0.17515042,-0.504664,-0.39880994,0.16158119,0.16752072,0.62530977,0.04593051,0.042384326,-0.29723865,-0.089246914,-0.27751446,0.18322422,-0.050189987,0.36170948,-0.1258882,-0.44806546,0.059949547,-0.024299264,-0.36114603,0.11667194,-0.5007416,-0.41991717,-0.18013036,-0.3617961,-0.37240806,0.75003976,-0.44618294,-0.029717833,-0.027710598,0.07217729,-0.0066823885,0.24219228,0.20071715,0.08214532,0.17683649,0.06850879,-0.10546659,-0.38276798,0.43400037,0.0006510429,0.07165596,0.42417052,-0.033424474,0.17103766,0.45774424,0.45416713,-0.16644944,0.8515452,0.5614844,-0.06504411,0.13354649,-0.20971106,-0.13504404,-0.3455832,-0.38669527,-0.2015851,-0.5435518,-0.2783745,-0.0801782,-0.259179,-0.77251554,0.60302013,0.17407875,0.034132928,-0.07392773,0.21163589,0.5900458,-0.2240275,-0.033730052,-0.09665778,-0.22620311,-0.6368456,-0.49538177,-0.59837353,-0.5285759,0.10766359,1.1162953,-0.29131654,-0.050584562,-0.05260671,-0.14782329,-0.020633817,0.18468887,-0.13064331,0.1613577,0.35469353,-0.28860462,-0.5352528,0.51465374,-0.17910118,-0.12387834,-0.680219,0.2809155,0.57773364,-0.6051731,0.42089754,0.46921152,0.09323598,-0.05386591,-0.55431014,-0.20266494,-0.10609004,-0.26324734,0.34096748,0.13011722,-0.74410605,0.3940669,0.2517486,-0.27774408,-0.72464275,0.50087804,-0.04479066,-0.264949,0.112193905,0.32253888,0.22400604,-0.12156149,-0.31547412,0.1548497,-0.395971,0.35694966,0.31911346,0.115325645,0.32522628,-0.20680322,-0.18127473,-0.70528895,-0.064091906,-0.41988096,-0.2199691,0.21203627,-0.06930726,0.06798549,0.33428988,0.17484699,0.41428596,-0.42309976,0.053027887,-0.20625427,-0.23806038,0.34884423,0.4108212,0.4591444,-0.27643144,0.45991135,0.048949912,-0.10471061,-0.0505334,0.100888446,0.52988946,-0.0034093335,0.36537766,-0.04559031,-0.20054045,0.2699828,0.7305693,0.19696397,0.37584123,-0.15229262,-0.4055187,0.10582675,0.10807303,0.22367035,0.11469068,-0.4746356,-0.036144048,-0.21960339,0.2831795,0.36106598,0.190564,0.47582334,0.0057565663,-0.2436003,0.069872595,0.16509342,0.08358726,-1.0665827,0.37192875,0.17823553,0.83611465,0.47313017,-0.020185478,0.053075712,0.5275387,-0.15869159,0.27028286,0.30287227,-0.11820082,-0.47756624,0.39354357,-0.88314044,0.54852885,-0.07675718,-0.044993322,0.096969485,0.008644283,0.36024737,0.88538635,-0.064900294,0.11370639,0.05709907,-0.3401821,0.14348412,-0.39377487,0.19189711,-0.67390484,-0.33369014,0.6243516,0.44718677,0.44621146,0.029470388,-0.07778694,0.115016825,-0.13696626,0.14824441,-0.09679679,0.24167466,-0.010032775,-0.54331774,-0.250777,0.49079955,-0.10955783,0.23358184,-0.002526082,-0.093690746,0.23113628,-0.17944069,-0.029652368,-0.072598234,-0.47022584,-0.09613967,-0.17114356,-0.3504057,0.4783932,-0.35473448,0.30718374,0.18815534,0.051244847,-0.32844186,0.42089775,0.25405174,0.87487787,-0.06899245,-0.15410739,-0.4416384,0.1803598,0.34108314,-0.2028679,-0.0791741,-0.2576738,0.034672342,-0.70365703,0.2431603,-0.102705464,-0.36225772,0.05140471,-0.20349222,0.05994023,0.5628666,-0.12725382,-0.2051478,0.010985434,-0.15426132,-0.35208306,-0.005683437,-0.22789776,0.15837975,0.24491914,-0.04655651,-0.07700814,-0.22184685,-0.14039317,0.21822105,0.0872401,0.3455211,0.3031611,0.049864784,-0.26573434,-0.11755346,0.17229931,0.4476749,-0.11038241,-0.10193394,-0.22435123,-0.36777258,-0.2898278,0.13691115,-0.07150657,0.35635996,0.162456,-0.15433846,0.70092356,-0.14991137,1.1250427,0.17191902,-0.28351736,0.09441628,0.4431069,0.1763938,0.09278321,-0.32543504,0.8677921,0.6319175,-0.07934384,-0.060552835,-0.23899686,-0.07827871,0.24761431,-0.08185103,0.0042747743,-0.019547839,-0.6567844,-0.32009643,0.30312026,0.18379328,0.17769179,-0.08342156,-0.06843815,0.16599862,-0.021412326,0.43506184,-0.48330826,-0.045116853,0.24142411,0.42701325,0.092695065,0.27268076,-0.37724423,0.43593696,-0.4668095,0.0061896928,-0.11295384,0.21759014,-0.24841453,-0.21763217,0.1834676,0.059749074,0.41862047,-0.15759307,-0.4519609,-0.25033644,0.48772043,0.14073321,0.16808456,0.59325135,-0.24012433,-0.026423458,-0.06715081,0.39498836,0.9882684,-0.43240416,0.059857283,0.5651096,-0.22052181,-0.5010334,0.29002148,-0.36198342,0.24312906,-0.043943122,-0.27163365,-0.2776914,0.4316241,0.23004486,-0.03413716,0.084698424,-0.52242863,0.04118243,0.19017324,-0.21748708,-0.19255058,-0.29827064,0.2957778,0.6261865,-0.4721165,-0.26492253,0.17114061,0.35718948,-0.2604408,-0.4068352,0.020535335,-0.33963507,0.28302935,0.021088196,-0.42050695,-0.14898631,0.011324266,-0.3552463,3.0055642e-05,0.09082551,-0.2479829,0.10175425,-0.21783671,0.170142,0.73540086,-0.05738136,0.06789946,-0.57249296,-0.2877454,-0.88310266,-0.20047945,0.16352484,0.27988297,-0.11713968,-0.44764525,0.011965536,-0.106759384,-0.17577553,-0.085219435,-0.4320894,0.60937554,0.04256682,0.20192254,-0.16539678,-0.90647185,0.040320218,0.07528445,-0.1532763,-0.51752913,0.4774679,-0.22639747,0.7678292,0.15023026,-0.06937169,0.27606025,-0.48296803,0.09497601,-0.37375152,-0.28464562,-0.7787373,-0.024573762,565 +78,0.45672718,-0.04364032,-0.5025879,-0.16011408,-0.32982144,0.32888645,-0.1123761,0.28984,0.12620597,-0.20689033,-0.16687885,-0.14624165,-0.025112377,0.26035628,-0.16510245,-0.76520723,-0.083382174,0.12177559,-0.65987456,0.31447646,-0.51155955,0.35421306,-0.079267785,0.41231936,0.021696739,0.3658381,0.06372871,-0.10523259,-0.1815735,0.096555874,-0.036781423,0.1696392,-0.5883019,0.14828703,-0.09387908,-0.18428043,-0.084717765,-0.430665,-0.3471198,-0.5761569,0.39007336,-0.62667,0.5254008,-0.15504818,-0.38252494,0.14268818,-0.06904666,0.1857928,-0.3073498,0.09012724,0.18705438,-0.09739722,0.009721197,-0.11566606,-0.22061586,-0.39691043,-0.502585,0.06700802,-0.5082178,-0.114132926,-0.18051888,0.1543434,-0.2921369,-0.030495722,-0.22423226,0.39440286,-0.34483832,0.15881035,0.23499978,-0.16708921,-0.0045097694,-0.44660646,0.00889433,-0.08012851,0.27856797,0.022765273,-0.225185,0.098064646,0.21794237,0.52411723,0.012797156,-0.19419402,-0.21415053,0.01347346,0.06661831,0.38973093,-0.10026617,-0.22649693,-0.23885292,-0.017006818,0.11231425,0.16693383,0.017071597,-0.48112884,-0.07910979,0.0682732,-0.20078678,0.20338002,0.41011512,-0.27282634,-0.30058402,0.444427,0.4298218,0.17595886,-0.0020121727,0.036581878,-0.04807176,-0.4433576,-0.3358043,0.10822934,-0.033195537,0.5277779,-0.109321706,0.29410353,0.6755418,-0.052214783,0.10433002,-0.09388834,-0.075447135,0.11458227,-0.20931813,-0.034711093,-0.030273017,-0.42399383,0.0069576157,-0.159374,0.67267525,0.16183269,-0.8497707,0.41877887,-0.54876554,0.098745555,-0.046391718,0.516201,0.84629524,0.39803764,0.028117545,0.67151576,-0.43470728,0.029036833,-0.09924052,-0.45033735,0.1897567,-0.019650593,0.03417453,-0.4877841,0.008190285,0.10675241,-0.08522901,-0.062127754,0.24821246,-0.45121062,-0.0043870807,-0.08102854,0.6466404,-0.4008168,-0.11807402,0.75354224,0.92423064,0.799059,0.11858949,1.4505732,0.39967483,-0.12079908,0.18042357,-0.40188918,-0.58542156,0.20389584,0.26244128,-0.05000116,0.42408037,0.07836704,0.007666204,0.4648401,-0.15391436,0.09984302,-0.052433677,0.23889537,-0.013902202,-0.019348767,-0.2967134,-0.38254964,0.15159944,0.07179157,0.10895759,0.26714385,-0.19159906,0.24719433,0.15055694,1.5851836,0.095961854,0.15351133,0.00095736794,0.31228325,0.20056531,-0.2098841,-0.15437758,0.35951114,0.31473756,-0.09467474,-0.5835365,-0.014592588,-0.238508,-0.44758406,-0.2045149,-0.2927512,-0.185632,-0.1537632,-0.5188752,-0.1947619,-0.0445743,-0.25416896,0.56578267,-2.6217852,-0.1647683,-0.04429737,0.3967031,-0.32026684,-0.44688126,-0.27740508,-0.4260566,0.23006408,0.3557335,0.26034877,-0.62124896,0.46650106,0.25426114,-0.38696328,-0.22802989,-0.57736695,0.06735411,0.15151672,0.29868537,-0.18992296,-0.14379211,-0.23606932,0.1972048,0.43087503,-0.08321451,-0.005584771,0.23885849,0.49601066,0.13383321,0.30310798,0.17319784,0.49438107,-0.07716659,-0.0422713,0.374909,-0.34008506,0.38540402,-0.0131093655,0.13022164,0.20135273,-0.5332228,-0.56955326,-0.598546,-0.40986204,1.1557555,-0.3225443,-0.16951025,0.16233918,-0.20898229,-0.30212566,0.038188346,0.37384507,-0.07930436,-0.15980308,-0.7276956,0.042078808,-0.03834394,0.26026127,-0.11278789,0.21713662,-0.41086483,0.6367868,-0.20210889,0.48272127,0.32498676,0.20016253,0.033909723,-0.452565,0.08396437,0.7721334,0.39947557,0.16712274,-0.09341252,-0.094809026,-0.1740295,-0.079077095,0.06148753,0.56562454,0.66938967,0.13367108,0.06810235,0.24557987,-0.21473853,0.035134062,-0.12789229,-0.26598835,-0.052875817,-0.0020499872,0.5764368,0.5706196,-0.30514863,0.33396032,-0.19564013,0.2199009,-0.24654137,-0.52391064,0.52932787,0.7213555,-0.19631468,-0.101998806,0.42934513,0.37225455,-0.29473716,0.33283758,-0.4425403,-0.16717081,0.6686091,-0.18141907,-0.42860037,0.17016885,-0.22460388,0.017235031,-0.88344806,0.37516925,-0.0038099512,-0.5363281,-0.42586324,-0.1208397,-3.3595364,0.11709617,-0.07470898,-0.116866976,-0.08313277,-0.14573923,0.24398313,-0.5226871,-0.57271457,-0.017611768,-0.059933312,0.46264216,-0.022202257,0.17513406,-0.22101763,-0.19494368,-0.29119056,0.23855007,0.19985689,0.31752223,-0.03965715,-0.24666983,-0.03326606,-0.31991258,-0.37182835,0.12996075,-0.48958617,-0.5574439,-0.07757365,-0.4428553,-0.15438977,0.7094971,-0.36763278,-0.058817834,-0.24566415,-0.035099044,-0.2129445,0.36349717,0.18492585,0.10232033,0.19707859,0.009221256,-0.0731758,-0.38747776,0.29401252,0.13151932,0.27281684,0.50388396,-0.01923503,0.23269622,0.45505884,0.6084975,0.012184069,0.64235497,0.18918438,-0.05287914,0.34824502,-0.291984,-0.17482054,-0.49464872,-0.26386613,-0.17268032,-0.3782936,-0.43954206,-0.24921627,-0.45109016,-0.7683133,0.20838654,0.013125397,0.09191753,-0.04698278,0.23680514,0.47743514,-0.09855213,0.09407033,-0.07235556,-0.18022229,-0.49617037,-0.4721551,-0.5207487,-0.48333073,0.2930755,1.1520513,-0.003285244,-0.054552455,-0.07928035,-0.31012022,0.025036853,-0.004242271,0.1023413,0.1600026,0.3294961,-0.18991905,-0.670434,0.37750483,-0.11020163,-0.26058656,-0.608015,0.07070532,0.65300286,-0.57492477,0.5840586,0.24124244,0.17362686,0.2846805,-0.49031478,-0.1456943,0.105755,-0.23028359,0.497908,0.3007398,-0.5102645,0.42589384,0.18891492,0.0013576783,-0.7118728,0.4936013,0.00031312555,-0.19870779,0.025221135,0.3341896,0.027341716,-0.16415754,-0.05845186,0.19682156,-0.48372754,0.276725,0.35250998,0.056672588,0.42708826,-0.0012441985,-0.16698112,-0.585221,-0.16413507,-0.5029468,-0.34719616,0.111016974,0.09646699,0.2796457,0.058765113,0.13286793,0.49078256,-0.41298702,0.10064784,-0.07335534,-0.16797377,0.24341689,0.4296123,0.26497185,-0.46288747,0.4815396,-0.013697688,0.24957798,-0.007202722,0.13909659,0.42499518,0.1898542,0.26410592,-0.0123760365,-0.14675693,0.08741614,0.61837494,0.1889016,0.3601439,0.110441454,-0.32182124,0.30173138,0.079329535,0.08446252,-0.043902144,-0.21920332,-0.09182887,0.077790335,0.22888471,0.38974068,0.12110992,0.21669886,-0.20576674,-0.213416,0.1995728,0.15118368,-0.11206256,-1.0292234,0.23546809,0.14708176,0.7095043,0.5265782,-0.0316834,0.001514215,0.32973468,-0.36049727,0.2239753,0.39672622,0.005122995,-0.567107,0.4450817,-0.4650726,0.4719776,-0.22889727,-0.13544363,0.1256591,0.07535719,0.2515077,0.9003794,-0.001959037,0.09576678,0.00081380457,-0.22445554,0.00094683375,-0.30009675,0.029911503,-0.6054412,-0.18375055,0.58153653,0.44414166,0.26268914,-0.46973497,-0.07112785,-0.028691888,-0.18290219,0.117164455,-0.00043263845,0.037371743,0.005974807,-0.6121346,-0.5268679,0.5333961,-0.20725018,-0.029107869,0.08258507,-0.3775629,0.21322678,-0.22887543,-0.05932156,0.010266904,-0.6206195,-0.03270732,-0.33685833,-0.47626933,0.32110777,-0.21064848,0.11775773,0.184441,0.11175808,-0.37319157,0.27844584,0.18247545,0.8214995,0.10148608,-0.09145721,-0.39233464,0.2516948,0.35710067,-0.2748912,-0.24205999,-0.22622563,0.2085059,-0.52975583,0.40648648,-0.07284573,-0.16881058,0.029742353,-0.04225286,0.072897896,0.36301324,-0.19805253,-0.13363172,0.1253376,0.0285175,-0.29959524,0.07681881,-0.37056908,0.14169225,0.13253725,-0.0980621,0.1061167,-0.050064117,-0.14343931,0.33502948,0.21433541,0.28523996,0.50718415,-0.08325385,-0.46748596,-0.14043516,0.027675536,0.36228934,0.16101591,-0.023138247,-0.385432,-0.2869436,-0.27470377,0.5158973,-0.1705308,0.10020561,0.09679793,-0.34602717,0.6724419,0.22683012,1.048275,0.06375254,-0.17300658,0.17929034,0.44033188,0.121440485,0.047076866,-0.46919775,0.7967845,0.56421375,-0.10566774,-0.20920461,-0.15674771,-0.2418741,0.18658343,-0.27795056,-0.19141403,-0.17698142,-0.7552952,-0.27270952,0.08736466,0.07763873,0.05173654,0.0342568,-0.054428965,0.045062155,0.11346398,0.42893544,-0.36763465,-0.07157548,0.3139168,0.19482195,0.14603691,0.3257079,-0.37762058,0.46242946,-0.7131714,0.16313522,-0.42055905,0.064166665,-0.017712194,-0.30850774,0.08304863,0.18817735,0.3119029,-0.35423678,-0.3954563,-0.36797705,0.49871972,0.19314663,0.25286645,0.68246037,-0.13827156,-0.043393288,0.12542441,0.5872382,1.1768357,0.1243449,0.0890518,0.5120794,-0.37009364,-0.587641,0.051543932,-0.3433972,0.14300191,-0.15050495,-0.2092708,-0.37982196,0.3259087,0.10585062,-0.049904495,0.033412807,-0.5838927,-0.16395709,0.43308753,-0.2743705,-0.2269324,-0.30486217,0.286423,0.7861786,-0.39415267,-0.17857692,-0.0058079436,0.35041672,-0.26865292,-0.45533246,-0.014708713,-0.33146328,0.32809624,0.11676774,-0.31291655,0.027741294,0.1688604,-0.37080133,0.06002993,0.33380356,-0.3963383,-0.0041552093,-0.2629647,-0.12326129,0.984527,0.08129108,0.042662248,-0.55885375,-0.5120075,-0.94479173,-0.36338723,0.11172578,0.16405565,-0.049024794,-0.61867493,-0.112954035,-0.042548712,0.05004219,0.04383765,-0.4842365,0.41149062,0.20528913,0.32965434,-0.013216078,-0.82642746,-0.14370103,0.19926903,-0.27813452,-0.51948416,0.653718,-0.16040921,0.7336424,0.096752405,-0.01723998,0.0861105,-0.63865733,0.31338745,-0.42235523,0.038124487,-0.6954888,0.21326295,569 +79,0.5890892,-0.2000686,-0.5983676,-0.23406166,-0.22933213,-0.022515833,-0.17893875,0.42591,0.29938233,-0.61592555,-0.05979056,-0.18933588,-0.041763086,0.40327048,-0.1464606,-0.7415271,-0.0017602555,0.120383315,-0.5089557,0.5872653,-0.44370586,0.30358297,0.1427166,0.38231277,0.13582453,0.2578746,0.15342537,-0.15451159,-0.17847583,-0.07879473,0.10079104,0.18598002,-0.68929255,0.14437705,-0.096847534,-0.3457873,-0.11008037,-0.3264109,-0.444965,-0.78250384,0.2845118,-0.8412618,0.51820654,0.00032930076,-0.38531354,0.101768896,0.22909476,0.40091074,-0.17174315,0.04713645,0.17623895,-0.1411058,-0.15910856,0.049833506,-0.2529881,-0.5672877,-0.63199556,0.10271862,-0.5041493,-0.19434261,-0.28848132,0.20433997,-0.43165982,0.045871265,-0.14874673,0.72502047,-0.34274256,0.033496615,0.49110824,-0.12907033,0.41969064,-0.55814016,-0.08462863,-0.2090658,0.12358201,-0.1462107,-0.3119505,0.18648297,0.3361264,0.6020355,0.11058536,-0.3508628,-0.29997706,0.008718297,0.25445172,0.19589642,-0.24287426,-0.56713766,-0.2506281,0.059905335,0.32100558,0.123915665,0.1644161,-0.34545037,0.0007850006,0.26881725,-0.25334057,0.5901841,0.56923205,-0.19091812,-0.2000671,0.19973889,0.5461218,0.23021315,-0.1303463,0.23248394,0.016724637,-0.53620756,-0.15500867,0.19822602,-0.22137168,0.46574724,-0.26741076,0.20175074,0.7084892,-0.24700382,-0.006748289,0.15907937,-0.076035485,0.09125709,-0.41511992,-0.16589114,0.33798453,-0.61819804,0.114270836,-0.3093584,0.8155747,0.1784086,-0.68202096,0.33957404,-0.5637313,0.26383263,-0.059350938,0.56655276,0.8116893,0.43557423,0.22525641,0.80890644,-0.5382019,0.09723821,-0.22456807,-0.39417472,0.17569914,-0.3280535,-0.05363685,-0.42241442,-0.119872645,-0.046907585,-0.2067653,-0.0039136857,0.32658243,-0.65114343,-0.08767556,0.11156211,0.93392277,-0.23624292,-0.09485197,0.8543627,0.97905797,1.0079237,0.074313454,1.3461707,0.26636016,-0.23825343,0.29041123,-0.2843711,-0.82490396,0.45342338,0.34397447,-0.16692121,0.3582245,-0.02810248,-0.008091226,0.47040302,-0.49116337,0.10000838,-0.21828285,0.33750638,0.08040463,-0.25384748,-0.46626246,-0.056152966,0.0017660931,-0.04146628,0.041022263,0.17717257,-0.046926856,0.37697148,0.010420218,1.3093606,-0.26593253,0.05707058,0.09752256,0.4892866,0.2234613,-0.18540922,-0.043018322,0.13466984,0.29922724,0.23742908,-0.64502496,0.0032593533,-0.3466152,-0.47962078,-0.29525745,-0.3317631,0.044323526,-0.16787393,-0.39146987,-0.24725813,-0.14620654,-0.26998097,0.37858716,-2.5423472,-0.30539253,-0.2290149,0.2577312,-0.45669684,-0.36571205,-0.029040113,-0.5533081,0.46834686,0.36971036,0.49681616,-0.67540634,0.4576983,0.43271512,-0.5383756,-0.03905703,-0.8311937,-0.09666549,-0.1600607,0.38302743,0.07869439,-0.2644422,-0.08750364,0.20896462,0.5058576,-0.016264934,0.12142648,0.17918193,0.31138206,-0.015408374,0.60890687,0.040657423,0.5712348,-0.3404408,-0.21128242,0.42323685,-0.37228882,0.1230305,0.070315555,0.11973115,0.41123304,-0.45078146,-0.9446785,-0.7808574,-0.3592361,1.0338522,-0.14892375,-0.45058608,0.33717775,-0.46437103,-0.24949291,0.02111809,0.4273616,0.051973227,0.10680312,-1.0048702,0.089012995,-0.12569371,0.00851424,-0.0044781864,-0.06769699,-0.38312885,0.75492066,-0.19283047,0.33377331,0.4395935,0.21427989,-0.35937908,-0.5871724,0.047428645,1.2017637,0.41448307,0.21762845,-0.24327904,-0.26511028,-0.4501984,-0.08214882,0.026799962,0.5256526,0.8653494,-0.08666919,-0.0155647695,0.2755936,-0.09780209,0.18933743,-0.13225722,-0.4607998,-0.16641787,-0.09142858,0.6309335,0.51115274,-0.22500032,0.565892,-0.045756377,0.3682698,-0.15908849,-0.50304294,0.60352135,0.93695843,-0.24497813,-0.3862761,0.6526559,0.41659582,-0.3582319,0.5762291,-0.570838,-0.3125907,0.41266304,-0.07666491,-0.57686937,0.2413066,-0.530359,0.23452741,-1.0914382,0.36098862,-0.4691128,-0.47597054,-0.56505805,-0.23603293,-3.2898788,0.29004636,-0.33760783,-0.07523896,-0.18685395,-0.004565574,0.36101604,-0.5580521,-0.7970774,0.14862591,0.08164777,0.7368453,-0.11803989,0.14486408,-0.22562248,-0.19353306,-0.33840826,0.18894821,0.35020727,0.16772883,-0.017429475,-0.57798755,-0.07610783,-0.16211212,-0.41905978,0.08659232,-0.6416763,-0.6048921,-0.24120677,-0.6268021,-0.28790465,0.73985803,-0.29469657,0.023941867,-0.22801337,0.11380878,-0.01522639,0.40914205,0.059823934,0.17521903,0.17255163,-0.06533481,-0.049893126,-0.31659555,0.11335621,0.1582296,0.39985788,0.29550675,-0.25788558,0.3425447,0.6875131,0.88115597,-0.032898225,0.9381517,0.6617218,-0.07203431,0.4291582,-0.28129748,-0.36500937,-0.63740027,-0.17680201,0.036509227,-0.48810464,-0.40941918,0.08416028,-0.4022687,-0.8769498,0.6721581,-0.002475869,0.15228401,-0.13924903,0.20647313,0.43859398,-0.21027765,-0.022537336,-0.09047499,-0.22364017,-0.53432,-0.23732692,-0.62688166,-0.6609175,0.051533617,1.1115708,-0.13410999,0.10423889,-0.040709637,-0.17082775,0.011993311,0.105918154,0.00966578,0.06351787,0.54973084,-0.06235592,-0.6337208,0.350966,-0.03364496,-0.104971305,-0.64642733,0.24730355,0.7785602,-0.57645935,0.62518865,0.3841375,-0.011818297,-0.13601501,-0.5811026,-0.08853845,0.11329629,-0.24983703,0.5766267,0.22155194,-0.77281445,0.3887081,0.4368991,-0.23377497,-0.7423059,0.4794725,0.037748933,-0.078749344,-0.051124513,0.36427638,0.03638337,0.019625809,-0.19595447,0.25375807,-0.442034,0.22470064,0.44380134,-0.17495604,0.41653723,-0.2352149,-0.22240141,-1.0025403,-0.09287229,-0.59452873,-0.25799227,0.28816393,0.12861201,0.09683025,0.22322482,0.123316824,0.46849304,-0.12810358,0.08301127,-0.17788297,-0.42745733,0.45464906,0.54489166,0.33218652,-0.57456255,0.64718395,0.12504494,-0.19433811,-0.078644365,-0.03573798,0.6140777,0.0069253556,0.47211316,0.16226646,-0.14724629,0.31875074,0.9478196,0.041965324,0.52910453,0.22313285,-0.06958874,0.25016505,0.14443168,0.042383876,0.08448546,-0.5862342,-0.09203512,-0.08955613,0.20746179,0.43160358,0.1456972,0.3359539,0.013551738,-0.375629,-0.030375805,-0.06372566,-0.0076695937,-1.6085268,0.43330306,0.30265415,0.73454314,0.5204376,0.16288596,0.0557163,0.642828,-0.17733033,0.17622866,0.41120338,-0.017962836,-0.42343634,0.56972,-0.75690055,0.4725806,-0.080278575,0.05997335,0.014263542,0.031221211,0.5578009,0.8493547,-0.098386586,0.10068859,-0.19198702,-0.29952392,0.32275257,-0.41813117,0.1586625,-0.3912918,-0.25746682,0.7152585,0.50212175,0.34497938,-0.19741456,0.0122259,0.20656517,-0.074951336,0.2112662,-0.15343942,-0.0563186,0.044987287,-0.64390874,-0.28299665,0.4515119,0.26893747,0.14075798,-0.04173261,-0.18639824,0.21957234,-0.06624965,-0.10944612,-0.08136058,-0.66980004,-0.15624733,-0.39711553,-0.53791416,0.38376147,-0.2625579,0.21728048,0.14243953,0.10081985,-0.38258523,0.24300183,-0.04635209,0.62696743,-0.030391261,-0.20589837,-0.29297727,0.13955978,0.21103749,-0.2668839,-0.14406742,-0.3316058,0.102955304,-0.62127227,0.5047579,-0.14692423,-0.45151526,0.2056753,-0.14109123,0.056778662,0.40863878,-0.34895408,-0.17909974,0.25095305,-0.1689451,-0.1067653,-0.26260772,0.054027323,0.35905468,0.16685429,0.032453366,-0.12500603,-0.14194989,-0.07054394,0.4992469,0.07359575,0.30365062,0.4722999,0.12390641,-0.46460652,-0.10421114,0.3540824,0.5912633,0.09389253,-0.09259355,-0.3184386,-0.38268527,-0.3478022,0.19080566,-0.016850226,0.32883286,0.102894954,-0.42301047,0.9610723,0.1974683,1.4115216,0.03904257,-0.43641287,0.076054305,0.3466843,-0.039824348,-0.0859773,-0.47391412,0.93859684,0.5779059,-0.2617734,-0.11046122,-0.6083766,0.017484196,0.10211141,-0.25220504,-0.15804885,-0.051128224,-0.6799681,-0.28407538,0.29442453,0.33045703,0.12881392,-0.13226452,0.16162129,0.110970974,-0.056123033,0.46997973,-0.60461885,-0.028724853,0.16942069,0.4070586,0.044138204,0.056138948,-0.490628,0.35504413,-0.6434029,0.166255,-0.18969475,0.14086734,-0.07447791,-0.39037707,0.29355097,-0.03660798,0.35590088,-0.39666897,-0.36054668,-0.26983836,0.6060203,0.07548933,0.04577828,0.7615965,-0.26332203,0.053036384,0.23708017,0.60715127,1.1523252,-0.14928243,0.06084211,0.27873465,-0.2041567,-0.7201881,0.33580235,-0.35924092,0.29864603,-0.07927826,-0.44191828,-0.5372509,0.2268592,0.19599864,-0.07920509,0.06660408,-0.6164198,-0.33228987,0.35995704,-0.42972198,-0.23156035,-0.1906807,0.07907508,0.5182145,-0.2225506,-0.29823875,0.044360436,0.4477627,-0.22704785,-0.560397,-0.25717345,-0.2470605,0.33717,0.18374014,-0.37437397,0.011713374,0.08625468,-0.50059605,0.06389435,0.2679258,-0.40958703,0.029800087,-0.22096641,-0.20884353,0.7956103,-0.014606798,0.21989831,-0.5597357,-0.42184603,-0.9386667,-0.2545323,0.39169067,0.14907223,0.08248682,-0.60019326,-0.053037874,-0.16477254,0.11124322,0.09144841,-0.5124732,0.43254733,0.17501935,0.5987989,-0.07481361,-0.71755636,-0.08800026,0.27057064,-0.131196,-0.6009686,0.5826792,-0.033022497,0.9554458,0.12674862,0.19840789,0.35277724,-0.61043817,-0.05751456,-0.15722632,-0.26909545,-0.77622503,-0.01165954,576 +80,0.5631794,-0.18610334,-0.63841903,-0.15219802,-0.3376785,0.113472715,-0.25132173,0.63303936,0.24251544,-0.5905495,-0.28256452,-0.20788836,-0.06658968,0.53314495,-0.18187504,-0.67204463,0.025385298,0.11375891,-0.5092734,0.47517666,-0.3802408,0.2580156,0.18432382,0.41033933,0.28770405,0.24210289,0.21593422,0.027130716,-0.21907762,-0.2421665,-0.0870444,0.12867185,-0.79801446,0.108062044,-0.18009862,-0.38294014,-0.13466729,-0.3765911,-0.28914303,-0.8353172,0.33030704,-0.89612985,0.5600221,-0.15670958,-0.31563032,0.15840858,0.16469975,0.35730827,-0.23777655,-0.01847624,0.06613573,-0.06762272,-0.11123125,-0.030432027,-0.25641188,-0.3421731,-0.65738267,0.110951945,-0.39654365,-0.1685879,-0.25550747,0.19430935,-0.29101044,0.34054714,-0.1172512,0.48423105,-0.4077343,0.0058721006,0.39687836,-0.20795627,0.14833164,-0.64110297,0.028657341,-0.25075212,0.19973251,-0.03594597,-0.21965155,0.34069148,0.3061444,0.54329526,0.20789571,-0.37806553,-0.3025752,-0.072820365,0.13064641,0.36361545,-0.15300551,-0.3798846,-0.24449699,-0.105242714,0.31134158,0.17357285,0.23844482,-0.32974863,-0.09556766,0.03769624,-0.3739017,0.31385073,0.48023218,-0.33229902,-0.23561338,0.3685441,0.4806109,0.096695796,-0.09599431,0.11495894,0.012187259,-0.6430717,-0.14595607,0.06523456,-0.2213881,0.53944224,-0.12768386,0.22195895,0.69108295,-0.19402535,0.0348474,0.109205544,-0.1419862,-0.239363,-0.42960727,-0.23844343,0.16011359,-0.54571146,0.20305392,-0.17217262,0.8560807,0.2371689,-0.73565096,0.34865448,-0.5398913,0.14487638,-0.13147563,0.46795157,0.7072539,0.5556216,0.16213277,0.7560142,-0.3420601,0.09942372,-0.19973245,-0.36875477,0.08196516,-0.29191083,0.049687684,-0.34767348,0.058553092,-0.15405314,-0.04684944,0.03573684,0.47540322,-0.4710226,-0.14248551,-0.0852994,0.8537127,-0.31987324,-0.16027609,0.80833036,0.82984334,1.0384836,0.06384693,1.1818525,0.33054268,-0.09903662,0.23494142,-0.09764572,-0.695835,0.39686108,0.3549968,-0.20693666,0.2723552,-0.028794909,-0.032667458,0.5408758,-0.25939977,0.051630966,-0.18709019,0.20852305,0.12448664,-0.12629098,-0.29875186,-0.27773538,0.16444959,0.026444886,0.11445971,0.28578418,-0.08965774,0.5012889,0.103452265,1.7584224,-0.077641346,0.04426726,0.17653623,0.50255847,0.1426307,-0.24188942,-0.05114522,-0.070431806,0.3817663,-0.008139089,-0.56427443,0.034169503,-0.21921018,-0.5114731,-0.17445374,-0.3095612,-0.18682848,-0.24321681,-0.57472897,-0.25483578,-0.055635117,-0.20509884,0.42497665,-2.3591573,-0.25272927,-0.20782676,0.27135387,-0.4899035,-0.38342273,-0.13721123,-0.5614024,0.4482622,0.25666526,0.4697277,-0.64012134,0.47510543,0.3942469,-0.4609208,-0.16109052,-0.5790582,-0.06658878,0.06359802,0.18319732,-0.016684007,-0.28243923,-0.078218326,0.07389166,0.5997834,-0.07066393,0.12616006,0.3062261,0.32704678,0.0047870465,0.57534957,-0.18771999,0.5907061,-0.4508853,-0.16513695,0.49004415,-0.36092496,0.17770186,-0.16779289,0.13722686,0.40675998,-0.5171025,-0.8577569,-0.81139624,-0.382092,1.1750727,-0.2622526,-0.43418244,0.23662426,-0.22497281,-0.064425185,0.036942184,0.46103108,-0.06001399,0.17942634,-0.72522014,0.113309465,-0.08966681,0.20288579,-0.024539037,-0.017235406,-0.34897956,0.6708213,-0.10679149,0.40368262,0.43200004,0.25265774,-0.21418089,-0.5569642,0.16144006,0.96673584,0.40777558,0.12105319,-0.3063361,-0.19749966,-0.46391603,-0.1950177,0.04198038,0.5187918,0.7513813,-0.029945323,0.07633875,0.20382291,-0.023915153,0.037296347,-0.18058263,-0.3699744,-0.1977256,0.026477233,0.6034975,0.5793223,-0.096957624,0.4948063,-0.2708126,0.4371876,-0.19053498,-0.526981,0.5854699,0.68017066,-0.35569584,-0.33659637,0.5403422,0.36398193,-0.16073878,0.52884394,-0.7258004,-0.5001755,0.37396792,-0.09747006,-0.4456358,0.09792076,-0.34437522,0.041787,-0.93220013,0.21222487,-0.4690969,-0.20784257,-0.42186123,-0.28152156,-3.1914923,0.20608908,-0.0857282,-0.09526835,-0.16147196,-0.18078074,0.25512758,-0.5772948,-0.73624694,0.055871952,0.041844204,0.70335424,0.04117952,0.20353673,-0.33629966,-0.1595168,-0.2988745,0.18852049,0.21689543,0.3236006,-0.035179406,-0.48738134,-0.09756607,-0.15832542,-0.5845926,0.07727915,-0.6555586,-0.61935914,-0.2706353,-0.44473407,-0.32011446,0.6699634,-0.38257492,0.15349793,-0.13361508,0.06668735,-0.124081634,0.32673472,0.040075924,0.10539723,0.24735202,-0.074546285,0.0626532,-0.35040373,0.20821223,0.15107343,0.36322492,0.29304802,-0.12150283,0.28649262,0.6083141,0.7254995,-0.09207311,0.793019,0.49757606,0.005024396,0.37379575,-0.19541752,-0.3730977,-0.43019593,-0.17056465,0.099417865,-0.39785767,-0.31847274,0.13620052,-0.30949777,-0.7430104,0.55068505,0.14313197,0.025609866,-0.021187332,0.108890705,0.4376266,-0.28505126,-0.05410602,-0.061663445,-0.1742093,-0.67067134,-0.49451008,-0.6506497,-0.64789706,-0.013280243,1.1855291,0.0011203121,-0.03907933,-0.028783284,-0.1691791,0.09718488,0.065241694,-0.051026374,0.0021096058,0.44932976,-0.15393433,-0.73979354,0.41399503,-0.11974183,-0.09513511,-0.57744724,0.2956984,0.61888206,-0.6155733,0.38300896,0.4017218,0.11369741,-0.11124933,-0.5897898,-0.056054175,-0.08715209,-0.23208734,0.3813395,0.22997731,-0.7834917,0.46072724,0.4277109,-0.25383222,-0.7606696,0.48983648,0.032138895,0.030940467,-0.0073815733,0.3798641,0.2177813,-0.035217788,-0.22581004,0.08937333,-0.495937,0.13228494,0.32852405,-0.013469765,0.44040683,-0.23862335,-0.103351295,-0.7142814,-0.10216081,-0.4926256,-0.26211697,0.14529991,0.008593753,0.1480366,0.11662265,0.19194117,0.33590204,-0.21984038,0.06350644,-0.06901513,-0.37885654,0.39701,0.42457443,0.58791727,-0.4326768,0.607956,0.09459415,0.019461669,0.27243268,-0.042759728,0.43703288,0.100040525,0.40962854,0.10233131,-0.15393631,0.059176445,0.8157853,0.13057917,0.38555542,0.10608289,-0.2578679,0.18117094,0.05616466,0.11828403,0.16818842,-0.69589114,-0.1258885,-0.20260273,0.10146442,0.6172918,0.29552013,0.4241581,-0.0056350864,-0.25800288,-0.045389496,-0.04414676,-0.19365463,-1.5591581,0.33676344,0.1917966,0.88829434,0.42489618,1.956895e-05,-0.040512584,0.55891657,-0.17690703,0.21809271,0.48649308,-0.027614981,-0.47995612,0.50991416,-0.693201,0.49685484,0.06541486,-0.0036301771,0.024710093,0.056816842,0.4868039,0.8692323,-0.08853367,0.11883144,-0.0660508,-0.37999296,0.27377406,-0.51560414,-0.02328381,-0.35164428,-0.25105152,0.71307325,0.4375137,0.2984755,-0.18953186,-0.053687513,0.11895389,-0.08626924,0.0964989,-0.09329736,0.05711059,-0.042599697,-0.5529783,-0.31481418,0.52741426,0.010480449,0.29024947,-0.0016052872,-0.29423234,0.24892813,-0.18137202,-0.15519565,-0.120834574,-0.72284234,-0.06557655,-0.54552466,-0.3778561,0.15818964,-0.11611902,0.15971312,0.1292331,0.05569133,-0.35860196,0.4529858,-0.003955722,0.6879262,-0.076611996,-0.22194871,-0.28365457,0.105580576,0.24846351,-0.3554541,-0.022696912,-0.18416806,0.023321431,-0.5084202,0.27871716,-0.16163051,-0.3652103,0.33245313,-0.08608423,0.03602653,0.48561126,-0.14843896,-0.042601444,0.14751631,-0.07581889,-0.24202831,-0.18839753,-0.09319511,0.2794014,0.26202577,0.08132351,-0.059976652,-0.116194345,-0.0005816519,0.50923115,-0.03550728,0.38706607,0.5165174,0.029134825,-0.45018697,-0.12961477,0.30602446,0.6073191,0.081654966,-0.10400681,-0.43401337,-0.35647818,-0.2683884,0.34269586,-0.16949959,0.3423205,0.030174403,-0.40431315,0.80367404,0.06741674,1.2114112,0.13198866,-0.3709944,0.07957843,0.3765229,0.047627658,-0.023194423,-0.45502388,0.9111536,0.4084513,-0.109091535,-0.19310312,-0.35201383,-0.087526545,0.15324156,-0.2883254,-0.19398499,-0.19012555,-0.662942,-0.25602266,0.2413392,0.2959768,0.13537769,-0.14373086,0.124847546,0.21989924,0.05511567,0.41271523,-0.5333202,-0.14317255,0.45205608,0.35814393,-0.094935834,0.1334166,-0.50330657,0.3583563,-0.57614523,0.12326166,-0.2800999,0.142063,-0.046745814,-0.2240711,0.3259279,0.083070256,0.39128608,-0.33986893,-0.43358323,-0.27716047,0.57735807,0.10720307,0.22944303,0.6275444,-0.21146728,-0.038963232,0.06892959,0.6284547,0.96403253,-0.25937292,0.19229619,0.32073593,-0.2528792,-0.6010747,0.39374256,-0.23848389,0.18160255,0.004832506,-0.20201929,-0.5590482,0.34784055,0.16074309,-0.06398767,0.23621319,-0.6802348,-0.24639368,0.31092864,-0.29314926,-0.18359166,-0.3911813,0.13014689,0.6345159,-0.17279163,-0.20697737,0.15538949,0.40602142,-0.14431605,-0.36502314,-0.17648259,-0.2573729,0.07470739,0.09801857,-0.2920606,-0.14856078,0.022170164,-0.53842986,0.11397131,0.18413557,-0.31733593,0.055183973,-0.2639198,0.082199134,0.85452276,-0.022435501,0.21056457,-0.5736803,-0.4750725,-0.7902595,-0.40527377,0.34456202,0.21980336,-0.0669743,-0.53910524,-0.20018724,-0.14957173,-0.006578028,0.012867775,-0.37655395,0.434303,0.030982424,0.47348318,0.057783265,-0.6400362,0.14539367,0.07647619,-0.11268194,-0.4484209,0.5372536,-0.12390475,0.888038,0.008288976,0.044465527,0.16084619,-0.52092844,-0.029768988,-0.20629185,-0.17377836,-0.70528364,0.095994815,578 +81,0.4885347,-0.25289077,-0.46699992,-0.0979048,-0.25911012,0.2324778,-0.34496954,0.44348672,0.20120585,-0.38410687,-0.115621954,-0.25692773,0.01998992,0.36650243,-0.083439544,-0.64463586,0.180621,0.1296069,-0.4644027,0.5277572,-0.52764136,0.45015204,0.030687906,0.36630392,0.1607343,0.3507349,0.40984696,-0.020937115,-0.18022892,-0.16064101,-0.1703848,0.11864877,-0.5339615,0.2413798,-0.21353899,-0.48031035,0.11668692,-0.39363986,-0.39307022,-0.7491622,0.1774084,-0.6509248,0.61043394,-0.015406404,-0.16649884,0.20163025,0.011620972,0.393581,-0.2591617,0.23121461,0.17670864,-0.08120383,0.059682153,-0.13001208,-0.36764637,-0.65304685,-0.5114319,-0.0013227444,-0.47578177,-0.28475928,-0.1841666,0.18222168,-0.124910176,0.21405149,-0.18262051,0.29577315,-0.36741105,-0.16085404,0.2303802,-0.20984088,0.19245306,-0.5903547,-0.15267688,-0.21600345,0.19685468,-0.21223159,-0.14472921,0.23881777,0.2728689,0.41521764,-0.038805332,-0.24777012,-0.32628664,-0.11015554,0.024201604,0.5968694,-0.12358414,-0.53040963,-0.22389644,-0.07519551,0.28504592,0.08348796,0.097559646,-0.2661963,-0.015859347,-0.04538995,-0.42163822,0.3611693,0.47350794,-0.4706716,-0.22175889,0.26012987,0.46430123,-0.056198534,-0.13086917,0.020089723,-0.060784932,-0.48063117,-0.17178062,0.04009156,-0.17037536,0.5020301,-0.16876033,0.07627771,0.7519697,-0.08774932,-0.03997242,-0.16976309,-0.09170333,-0.25801986,-0.08131857,-0.2957715,0.2310445,-0.3796742,0.037909977,-0.3098878,0.6729073,0.23660763,-0.6348886,0.40397912,-0.40512478,0.090555176,-0.0036808513,0.39109933,0.60663855,0.28504908,0.07559856,0.5394586,-0.4660344,0.18977666,-0.19566312,-0.27888808,0.05723526,-0.056135654,-0.034669764,-0.46377254,0.06560878,0.019566052,-0.12499118,0.156158,0.43935156,-0.5143987,-0.078204215,0.16648486,0.7693608,-0.37336168,-0.08457614,0.7586427,1.1065634,0.89821243,-0.019810738,1.2290059,0.5413406,-0.22843528,0.07296737,-0.40438873,-0.47047505,0.25196502,0.3945468,-0.1664984,0.3942574,0.052432492,-0.09778346,0.3607835,-0.2370517,0.08264567,-0.09106867,-0.015125781,-0.043015648,-0.18637043,-0.42719033,-0.17002085,-0.0042071445,0.0050363317,0.36087382,0.20982262,-0.276099,0.46116072,0.0713186,1.4085046,-0.042758487,-0.07348443,-0.046607055,0.4105717,0.3591557,-0.07544478,0.08411601,0.23648643,0.3708953,-0.014358701,-0.43640006,0.095686466,-0.27864444,-0.39424282,-0.26971015,-0.17425977,-0.087529205,0.06951195,-0.40473688,-0.08001769,0.12087452,-0.14707729,0.33298695,-2.6873102,-0.20737809,-0.15351658,0.16278249,-0.13563067,-0.45687068,-0.073667035,-0.4976992,0.4953365,0.39486775,0.32560995,-0.53076446,0.37581658,0.43899286,-0.4395084,-0.037675183,-0.63533926,0.017364211,-0.20146665,0.55200607,0.12848555,-0.0153724905,-0.014172974,0.27628583,0.567128,-0.029559508,0.15543461,0.060698185,0.43830714,0.03919494,0.45012453,0.34612012,0.6946465,-0.24492726,-0.22827098,0.40160146,-0.42009914,0.25972015,-0.186254,0.28079787,0.35101184,-0.3132281,-0.81361926,-0.5793434,-0.31759283,0.91568726,0.088733345,-0.40460813,0.14304797,-0.008141695,-0.3402013,0.16752732,0.34610793,-0.3361598,0.06036949,-0.7796253,-0.03152149,-0.011238445,0.030377818,-0.08205041,-0.005675379,-0.43712717,0.646752,-0.050522488,0.30192727,0.32544702,0.18735558,-0.18856564,-0.52814186,0.14026843,0.89381516,0.42053014,0.19805968,-0.24221265,-0.20425105,-0.27064657,-0.08259067,-0.08050335,0.43922025,0.64390314,-0.05293377,0.087005325,0.2161721,0.07881326,0.05483729,-0.1417833,-0.26775685,0.056069918,0.107494295,0.57989967,0.579911,-0.18054798,0.38864043,-0.16528097,0.67087376,-0.14900169,-0.46681136,0.7161784,0.9216505,-0.22232544,-0.20824288,0.53867084,0.4760875,-0.29629746,0.43767297,-0.812847,-0.43123126,0.35922986,-0.077047005,-0.31507862,0.20322198,-0.28389132,0.11970186,-0.9417772,0.257522,-0.19323865,-0.27192077,-0.661683,-0.28809518,-3.8945293,0.15710995,-0.13880362,-0.10329875,0.05773163,-0.050351404,0.26053482,-0.56904644,-0.38242674,0.18336186,0.050674394,0.53183484,0.0025766282,0.17448668,-0.21374702,-0.2266314,-0.23317727,0.2131293,-0.038642786,0.28965253,-0.01760476,-0.5139637,0.19016352,-0.36560673,-0.51094025,0.04784508,-0.68870914,-0.26282945,-0.2835986,-0.5655077,-0.21109228,0.5588031,-0.39680922,0.102985576,-0.2027556,0.099142924,-0.24566963,0.34133026,0.08034062,-0.022312837,0.08188679,-0.10478833,0.08546044,-0.33367115,0.17783058,0.12214319,0.28049088,0.38633257,0.035660453,0.024022818,0.3599559,0.57897854,-0.104437724,0.64165395,0.34652346,-0.20586613,0.34558374,-0.28945592,-0.26629022,-0.46507472,-0.4722348,-0.14906052,-0.38022333,-0.5563989,-0.14366172,-0.366127,-0.62165093,0.41586292,0.042617902,-0.06855748,-0.056473754,0.16736773,0.36944306,-0.31691557,-0.012718517,-0.025881695,0.004303165,-0.40965515,-0.41569448,-0.6111665,-0.53939253,0.18436927,0.8891099,0.044032026,-0.0410683,-0.008329363,-0.17741863,-0.07314011,0.17695168,0.09944329,0.045338534,0.40238577,-0.20184693,-0.70904946,0.49013466,-0.16967653,-0.23414977,-0.5969437,0.20537496,0.5961097,-0.55739045,0.49451894,0.5088165,0.15095638,0.06387874,-0.3866427,-0.1646804,0.1248261,-0.18306091,0.52169615,0.1488244,-0.6009904,0.53587747,0.2873984,-0.3934172,-0.6357183,0.5215835,0.076607674,-0.3135634,0.1199283,0.33682415,0.0054624826,0.027871564,-0.40397692,0.10010565,-0.48673218,0.12981865,0.3160366,0.11184084,0.43361193,-0.20272577,-0.16408506,-0.862086,-0.13117498,-0.35378212,-0.26146707,0.014458921,-0.008865664,0.044404157,0.23747788,-0.11766346,0.30960488,-0.2721166,0.19158404,-0.10263555,-0.21791479,0.4090132,0.2592218,0.41171548,-0.36165243,0.53926,-0.0238909,-0.078048036,-0.06405921,-0.007547494,0.56549394,0.091553055,0.44963673,0.057041973,-0.08418225,0.35822263,0.6869269,0.2972033,0.38028517,0.23532297,-0.36271107,0.23512326,0.1334787,0.10609405,0.16329093,-0.31875363,-0.14486462,-0.1965827,0.1342093,0.39357495,-0.01767942,0.42392755,-0.09030949,-0.28647906,0.17097217,0.14817187,0.13485286,-1.1102012,0.2533441,0.23719922,0.6973941,0.4316795,0.021266904,0.06369686,0.54698044,-0.3130218,0.0670964,0.23891214,-0.028065193,-0.4254951,0.38440108,-0.5538439,0.38571757,-0.07945645,-0.024879362,-0.009470872,-0.13379306,0.40933385,0.96809727,-0.19938333,0.223427,0.08033608,-0.28810158,0.02288203,-0.34404504,0.21389571,-0.30941296,-0.34897834,0.76226604,0.45899552,0.35113412,-0.14397885,-0.061429776,0.09510672,-0.1398935,-0.10154247,0.057342514,0.18809667,-0.06967252,-0.5763221,-0.30263546,0.51597047,0.08892112,0.15955181,0.0063866638,-0.3242784,0.193236,-0.102406,0.036778323,-0.0051331315,-0.59103596,0.04077891,-0.16838607,-0.41663885,0.60283154,-0.043140296,0.23382172,0.11292798,0.092211656,-0.29025188,0.32548007,-0.008739762,0.75584173,0.097435735,-0.0997209,-0.21181937,0.14627594,0.4599234,-0.29402447,-0.08668418,-0.29826188,0.07120999,-0.644238,0.31358862,-0.007325992,-0.37867394,0.047869086,-0.13271168,0.0766907,0.44033617,-0.14427917,-0.27414823,0.27436924,0.08460435,-0.23367368,-0.1599708,-0.21789391,0.30599323,0.1308653,-0.0031184182,-0.07869819,-0.016837459,-0.1263878,0.4710097,0.033719003,0.2905451,0.33148926,0.06847809,-0.4340052,-0.0020569265,0.08469119,0.4197754,-0.07096994,-0.0713287,-0.07658261,-0.60761404,-0.47562015,0.05085089,-0.100448266,0.11026676,0.12101601,-0.30271992,0.6285364,0.10738591,1.2852006,0.029032465,-0.44045725,0.14772598,0.6012708,0.08878483,0.092987396,-0.42809308,1.0352142,0.59241647,-0.16553597,-0.07971862,-0.30428022,-0.025948448,0.14041476,-0.210224,-0.2222888,-0.13486364,-0.65946925,-0.27494374,0.23159605,0.34351355,0.1602486,-0.023542892,0.22647034,0.17401396,0.083258495,0.43753976,-0.5105617,-0.39434206,0.36210203,0.23155987,-0.09796812,0.13825274,-0.4011866,0.4090507,-0.5015365,-0.0029838458,-0.34600455,0.19798657,-0.22966269,-0.31840366,0.24140657,0.06560914,0.30459505,-0.4596185,-0.40858132,-0.18840307,0.48338988,0.15629463,0.2232779,0.6110905,-0.14705415,-0.052560378,0.016629525,0.5129683,1.0337232,-0.334482,0.044944756,0.5160154,-0.3077851,-0.5526769,0.22005898,-0.2918604,0.15480591,-0.0062187687,-0.4050933,-0.4626602,0.3993166,0.04696154,0.01345697,0.085283175,-0.50418425,-0.06707461,0.34532827,-0.28534675,-0.28947732,-0.3604617,0.389027,0.6703647,-0.31545314,-0.47589043,0.16978559,0.33570656,-0.34086645,-0.5823482,-0.105864584,-0.14727622,0.56008637,0.31792527,-0.089972585,-0.05138509,-0.049013145,-0.42147034,0.08719705,0.2892717,-0.46337986,0.1074304,-0.3556275,-0.118091345,0.72058094,-0.017656155,0.12171538,-0.7705313,-0.42492157,-0.9553791,-0.5121224,0.61049944,0.24837439,-0.1602629,-0.5643201,-0.00040219352,-0.017907236,-0.027889272,0.0045955256,-0.24651161,0.4417049,0.039365742,0.5587565,-0.1128525,-0.7961422,-0.06914139,0.2668512,-0.20307389,-0.5432202,0.36176774,-0.011562943,0.92014533,0.14745593,0.013830133,0.36176163,-0.5427001,0.080230296,-0.31183034,-0.08602801,-0.7205459,0.14482643,580 +82,0.5277773,-0.16448466,-0.5106334,-0.024312168,-0.17133054,-7.169694e-05,-0.057063177,0.5213452,0.32974315,-0.2603935,0.08581039,-0.07795075,-0.010819058,0.2902152,-0.09299208,-0.2729294,0.06518017,0.09710671,-0.41565728,0.519332,-0.41701728,0.21187022,-0.27132052,0.49360895,0.12981115,0.33112356,-0.01721548,0.07907429,-0.10898171,0.008690121,0.19007382,0.59635496,-0.20286247,0.17536421,-0.080353916,-0.14932281,-0.059269503,-0.28944203,-0.43505946,-0.76917934,0.2475656,-0.54016405,0.3885017,0.06307943,-0.42776877,0.037092835,-0.07815232,0.18893805,-0.3205039,-0.13595508,0.014018447,0.014196418,0.08511302,-0.29810846,-0.12847349,-0.25189048,-0.4528194,-0.03263118,-0.4435204,0.020936325,-0.15634309,0.16502742,-0.29702312,-0.13458611,-0.11384551,0.5883504,-0.4798036,0.16757919,0.15211266,-0.120612375,0.31555665,-0.54673624,-0.32019582,-0.095692456,0.13396297,0.15240195,-0.31820256,0.29337794,0.30639872,0.40898135,-0.08954522,-0.06474053,-0.37669292,0.00087610167,-0.029975345,0.3606629,-0.1930047,-0.53220814,-0.15792395,-0.008987382,0.23672491,0.27668375,0.1691237,-0.22270879,-0.15640488,0.091978945,-0.2223497,0.40114665,0.5244871,-0.31981444,-0.077570155,0.26975775,0.4521191,0.34543842,-0.23535782,0.054398045,0.06275024,-0.527839,-0.07904725,-0.044677176,-0.08458456,0.57983315,-0.09341933,0.29511365,0.61385703,-0.18038209,-0.20787472,0.15079795,0.16989928,-0.14246126,-0.30869925,-0.106236815,0.026825171,-0.35268033,0.056626342,0.001046326,0.6332735,0.14724806,-0.51238143,0.3645159,-0.4581589,0.132185,-0.06374285,0.54563564,0.7127638,0.41139597,0.45702657,0.7590789,-0.30043656,0.04574825,-0.12254493,-0.27483118,0.08706255,-0.107413396,-0.18206003,-0.5323438,-0.11194962,0.033386193,-0.28999788,0.19531623,0.36121416,-0.53764296,-0.21406968,0.107184306,0.70675695,-0.24098599,-0.1049448,0.58186084,1.0735378,0.84146607,0.016460579,0.91897464,0.123857796,-0.077563,0.302423,-0.4298994,-0.6531899,0.29824394,0.29277968,-0.005133856,0.1894779,0.035131358,-0.14232375,0.3950582,-0.22841516,0.03339631,-0.05606938,0.44466913,0.144307,-0.17063294,-0.36450434,-0.24272521,-0.14147915,-0.048112053,-0.11205808,0.2919472,-0.24483787,0.29277304,-0.019532047,1.6285964,0.006721434,0.051956687,0.1575981,0.5349188,0.2633994,-0.26359233,-0.10715787,0.41579497,0.19588523,0.16870134,-0.49339178,0.25090855,-0.27299726,-0.5756002,0.013012312,-0.35866177,-0.089241154,-0.047551606,-0.4906684,-0.12382731,-0.10401363,-0.31630248,0.5030979,-3.085985,-0.29599565,-0.03236821,0.42310667,-0.24166909,-0.22483574,-0.0976324,-0.3741389,0.29151088,0.32414398,0.4341947,-0.80144155,0.16494857,0.39266896,-0.41939792,-0.07031774,-0.5324315,-0.03093426,0.016533915,0.35586643,0.038233727,0.077249296,0.10375407,0.16821684,0.4510638,-0.034658723,0.1903791,0.19360483,0.2320664,-0.048382707,0.41667354,-0.099148646,0.3768307,-0.2918126,-0.24202666,0.2995506,-0.3465334,0.19999456,0.07579319,0.123943,0.52053547,-0.33894682,-0.8109459,-0.48167613,0.08077206,1.1072085,-0.19306447,-0.41124138,0.3318794,-0.68214387,-0.230967,-0.23774898,0.38168576,-0.020542456,-0.18205681,-0.7414469,-0.0092238095,-0.14029855,0.058703896,-0.10054423,-0.077905595,-0.19024348,0.4997875,0.009305178,0.46035707,0.42258328,0.045543723,-0.2997703,-0.5834362,-0.060727052,0.51051855,0.42694607,0.16508074,-0.20947129,-0.17547494,-0.18621093,0.100776255,0.18756919,0.55680525,0.5140201,-0.14035833,0.23514389,0.3234158,-0.10506326,-0.134425,-0.22513154,-0.20963144,0.025331635,0.09601973,0.51185256,0.84186417,-0.18755552,0.43826595,0.07059863,0.17628558,-0.15440486,-0.48561165,0.4765814,0.8333106,-0.3027981,-0.31146246,0.5400232,0.37860078,-0.38153654,0.30551258,-0.45387304,-0.22890635,0.5224157,-0.20546255,-0.29371923,0.3218304,-0.2641744,0.21259989,-0.71316844,0.16225937,-0.317164,-0.5050627,-0.44024256,-0.11708413,-3.105273,0.16463478,-0.27678677,-0.26345438,-0.01110021,-0.13624066,0.1379153,-0.6549986,-0.46907753,0.13103549,0.20509557,0.6114433,-0.1260888,-0.09026898,-0.3032932,-0.49132872,-0.19459619,0.13171475,0.15466705,0.49112654,-0.056159604,-0.58386815,-0.07573411,-0.0013813749,-0.36028373,0.09542532,-0.53373766,-0.55027014,-0.13025649,-0.53263235,-0.34326592,0.65755004,-0.00732141,-0.04421695,-0.21206798,0.023957673,0.059917264,0.2453295,0.094498396,-0.0021329643,0.032847125,-0.04679536,0.013541292,-0.3404308,0.0668179,-0.05209865,0.19247009,0.4601849,-0.06595811,0.2515089,0.6009761,0.64469814,-0.13134418,0.85589117,0.5648874,-0.059522524,0.28965572,-0.29405394,-0.26871926,-0.45831275,-0.33288968,0.010922328,-0.40592685,-0.4207684,-0.11189664,-0.38049498,-0.6090007,0.58127666,-0.19212833,0.27301124,0.03335727,0.23935102,0.62288487,-0.15787861,0.011747621,0.051299613,-0.21180996,-0.59063494,-0.29602408,-0.6016624,-0.47640023,0.33255717,0.9300497,-0.38588062,0.003961997,0.0991118,-0.3465315,-0.13317627,-0.0059775915,0.024286821,0.17545415,0.38598806,-0.20994344,-0.34523058,0.2715773,-0.11483741,-0.14244226,-0.47631466,0.21936378,0.63642883,-0.54198027,0.62819195,0.152994,0.039949432,-0.3149407,-0.61244875,-0.10725488,0.082676485,-0.1656416,0.58365315,0.3845362,-0.8579045,0.46708164,0.3848734,-0.25604266,-0.5661024,0.4622202,-0.17265005,-0.40033907,-0.21017861,0.31147832,0.1096469,0.09381728,-0.21300396,0.35478336,-0.45712036,0.20362648,0.32859254,-0.25440368,0.31529793,-0.18046598,0.019938875,-0.73944193,-0.126411,-0.4780837,-0.32297564,0.31618187,0.1001923,0.08857547,0.008757178,0.17008059,0.33289132,-0.3256709,0.09235257,-0.01755568,-0.15701072,0.31467044,0.49171305,0.5234486,-0.31734836,0.507372,-0.01404296,0.021849621,0.05048473,0.02288095,0.28222758,0.09128566,0.42342198,-0.023755025,-0.21489652,0.325372,0.82713675,0.09019834,0.4467922,0.0020666653,-0.17699248,0.040328547,0.032921962,0.32109725,-0.18385945,-0.4259738,0.08609679,-0.26767945,0.21521144,0.43497238,0.19362554,0.17435275,-0.0027515106,-0.4280895,0.018295133,0.20488507,0.117468365,-1.3743944,0.32870072,0.21472347,0.6903527,0.34536362,0.20802496,-0.1475495,0.68760717,-0.18408391,0.08630358,0.4196625,0.021770526,-0.48554254,0.42331415,-0.8159739,0.6235675,-0.09020806,-0.03793644,0.06816512,-0.059746716,0.42973348,0.7015029,-0.052218154,-0.1022193,0.15430203,-0.32020104,0.077426665,-0.30406708,0.022564316,-0.7650436,-0.37033165,0.51847345,0.6129735,0.3256716,-0.17249279,0.016464934,0.22127773,-0.06304403,0.21136552,-0.036462445,0.17563325,-0.22834921,-0.6720043,-0.09937109,0.44221637,0.16984282,0.14518286,-0.08394569,-0.043441765,0.2282883,-0.1779259,-0.03663664,-0.0092167,-0.6619891,-0.13384545,-0.34158736,-0.3967097,0.5341519,-0.16148742,0.35182235,0.17071642,0.074355856,-0.34013933,0.4430663,0.0007849885,0.82359636,-0.17406806,-0.029780556,-0.4863212,0.19747321,0.136074,-0.12653324,-0.21324599,-0.22132428,-0.026353091,-0.35413384,0.41623873,0.07023181,-0.24547227,-0.17888525,-0.07843224,0.08088586,0.5304611,-0.08628557,-0.33998668,-0.34799916,-0.13245723,-0.41474748,-0.19405563,0.05892627,0.2672308,0.28121153,-0.10396883,-0.05803532,-0.12519602,0.13400033,0.31844044,0.117403865,0.15363741,0.41003093,0.0138841495,-0.24531342,-0.1520761,0.22918358,0.51957107,0.06386703,-0.08606957,-0.36062425,-0.47764605,-0.42369828,-0.11187339,-0.11341238,0.4035415,-0.023825807,-0.18801263,0.73281693,-0.11351469,1.1314176,0.020254295,-0.2580668,0.08482939,0.45245415,0.046581555,-0.008784324,-0.3130918,0.78636694,0.5141734,-0.1908136,-0.22478974,-0.2557773,-0.021732505,0.21812028,-0.19746092,-0.093624406,-0.027071293,-0.6380787,-0.039344512,0.20200817,0.18333343,0.24893437,-0.17895606,0.050209254,0.29881215,0.061775405,0.2673967,-0.35237756,-0.010769218,0.25620693,0.35506868,0.06710037,0.056354035,-0.50113463,0.4118897,-0.3573609,0.22716643,-0.22925009,0.24103472,-0.123704314,-0.4365366,0.21173114,-0.069793575,0.31322503,-0.31468487,-0.20658809,-0.32694468,0.40879846,0.1408382,0.013489006,0.54123414,-0.2864099,-0.07963523,0.12273883,0.47519428,1.0099192,-0.28288907,-0.17459781,0.3672909,-0.2711864,-0.7833955,0.28020617,-0.30656847,0.2021285,-0.07889598,-0.15120849,-0.64477646,0.24708375,0.17916986,0.11361152,-0.10645331,-0.5742597,-0.03720072,0.21155296,-0.3697171,-0.1319804,-0.30174217,0.029810723,0.4770581,-0.20724995,-0.51069313,0.024973247,0.2813179,-0.18360674,-0.39292878,0.03111083,-0.32521468,0.3217086,0.06140454,-0.40221316,-0.09600524,0.13227972,-0.45983312,0.022504555,0.10178903,-0.31165045,0.19482657,-0.324248,-0.14870802,0.9946754,-0.3421424,0.3280834,-0.2515268,-0.427153,-0.67206407,-0.16945082,0.34979272,-0.028888356,-0.032575354,-0.7616229,0.103311636,-0.058113623,-0.25317848,-0.20877442,-0.30428296,0.54726815,0.06993552,0.27236813,-0.020427026,-0.69501185,0.14312778,0.13530007,-0.10308997,-0.5461365,0.5936762,-0.24500722,0.7168569,0.12794617,0.08870855,0.29198793,-0.35920793,-0.02013734,-0.203473,-0.23475519,-0.5400156,-0.044311326,589 +83,0.5681739,-0.1530087,-0.36485252,-0.19430129,-0.30421966,0.0046898685,-0.24957618,0.39911488,0.28432837,-0.4314766,-0.2648556,-0.25659883,0.13237037,0.08293189,-0.060254604,-0.29890177,0.0039403364,0.27200657,-0.64513355,0.6811705,-0.29624993,0.2602382,0.10464605,0.4366364,0.2155937,0.19268112,0.04356681,0.03079696,-0.1449937,-0.22685042,-0.0016963221,0.19839185,-0.6227999,0.21632929,-0.42298692,-0.41404364,-0.21602081,-0.48269925,-0.3014122,-0.8025819,0.11513133,-0.89819247,0.48358306,-0.09427075,-0.41270345,0.3506137,-0.003119439,0.2536955,-0.18096429,0.056075748,0.11094093,-0.02997128,-0.18737194,-0.20942874,-0.16078456,-0.27373904,-0.45486253,0.13191837,-0.31388324,0.059712257,-0.42666852,0.13614346,-0.26282805,0.10450439,-0.10345486,0.4320255,-0.35744,0.2172994,0.09742993,-0.12814319,0.19753751,-0.46282682,-0.0529058,-0.15539001,0.2904137,-0.09946982,-0.27170926,0.1348725,0.2320865,0.5398661,0.06674691,-0.19554411,-0.22827817,-0.07024041,-0.068354845,0.3947691,-0.012686461,-0.3105818,-0.17656028,-0.2450886,0.34020162,0.22350518,0.16544706,-0.15805039,-0.16542038,-0.18856072,-0.21926752,0.26614437,0.55000156,-0.28440228,-0.18742403,0.39512074,0.62694335,0.06828721,-0.12791136,0.0020815432,-0.031455044,-0.45857844,-0.18070975,0.050738946,-0.26615185,0.4563735,-0.20391074,0.17623189,0.5661567,-0.12697592,-0.16459131,0.2065725,0.060054526,-0.08033395,-0.3254481,-0.25889683,0.28010088,-0.5773592,0.07778561,-0.24480039,0.7126309,0.03455773,-0.7395313,0.2426587,-0.5489974,0.19778906,0.0132112745,0.47473556,0.85700876,0.43134832,0.27882633,0.6622622,-0.31921297,0.027181992,-0.21968073,-0.23397803,-0.077574596,-0.19882144,0.04164903,-0.4997053,0.031676035,-0.011417657,-0.17659956,0.08963868,0.6060209,-0.5106645,-0.19555517,0.10536918,0.69997406,-0.2888217,-0.11551607,1.0926661,0.8075115,1.0179629,0.14322022,1.1258324,0.27682242,-0.09686448,0.116461284,-0.30689338,-0.51317084,0.25872907,0.2706509,0.072996646,0.12889804,0.06277101,0.03595616,0.31057936,-0.49514437,-0.06800375,-0.318383,0.14689052,0.014019966,-0.00077231415,-0.4629991,-0.4360992,-0.05782549,0.21314096,0.18466382,0.28738895,-0.19316368,0.41028363,0.060227428,1.3264551,-0.022792643,-0.049730096,0.17553474,0.37847203,0.23788746,-0.23211052,-0.17911394,0.27150238,0.3233157,-0.09170963,-0.49073493,0.042776987,-0.117928796,-0.3466838,-0.054265253,-0.36094534,-0.12069875,-0.13222922,-0.45314384,-0.26640576,-0.15584505,-0.4847607,0.52151096,-2.5107436,-0.18714169,-0.059049524,0.39495283,-0.12044434,-0.3710876,-0.20322657,-0.5679178,0.44255713,0.27140734,0.4606073,-0.66843235,0.42887807,0.3113923,-0.6557116,-0.047677428,-0.69263756,0.01937823,-0.00455115,0.27935794,-0.0116875395,-0.1073634,-0.12357725,-0.087423496,0.6107895,0.097062,0.2733279,0.5420295,0.3127361,-0.012122162,0.39151156,0.12387106,0.41878992,-0.2896481,-0.30556843,0.36896867,-0.3682248,0.154266,-0.25233242,-0.023611672,0.60451317,-0.60528624,-0.8558035,-0.69179773,-0.1865425,1.2162769,-0.21248925,-0.44937184,0.20601648,-0.3522367,-0.2830935,-0.02432461,0.5918709,-0.18290977,-0.05717261,-0.8224027,-0.06726443,0.048606098,0.12371602,-0.051320873,-0.007596612,-0.39477926,0.6422309,-0.1667492,0.39018482,0.30977252,0.12814452,-0.15864386,-0.3872912,0.18429598,1.0024757,0.36409593,0.1523428,-0.32619783,-0.2981109,-0.39618486,-0.06424968,0.08614839,0.5538402,0.5527815,-0.074390166,0.17650256,0.33741656,0.026658662,0.10334652,-0.19357847,-0.094996154,-0.24637248,0.15302947,0.6757407,0.7416059,-0.013495991,0.33193916,-0.21025369,0.20401601,-0.174263,-0.6410677,0.5821466,0.8475403,-0.17462136,-0.24540085,0.5468116,0.4821951,-0.09016344,0.5396495,-0.5154098,-0.48249727,0.27104667,-0.15467672,-0.33714682,0.26911837,-0.25490007,0.20107764,-0.77594507,0.22925854,-0.12902611,-0.48618412,-0.4696705,-0.1211708,-2.3600366,0.1919561,0.06874699,-0.22242017,-0.110103555,-0.4804582,0.09562057,-0.31757793,-0.60987294,0.13405402,0.041403018,0.71467656,-0.0682133,0.11015242,-0.113053456,-0.4631825,-0.48842964,0.07003009,0.16341019,0.4510911,-0.113373265,-0.35279563,-0.0073620006,-0.17765658,-0.41712612,-0.05650776,-0.6127924,-0.422106,-0.22825265,-0.44944054,-0.30143717,0.46536785,-0.19717857,0.19739708,-0.28952533,-0.041077826,-0.064807266,0.29443967,0.047745906,0.0911367,0.17229034,-0.0837947,0.09059644,-0.20296276,0.32326177,-0.0034853239,0.05661275,0.28644642,-0.22981398,0.2881683,0.4724843,0.6340348,-0.15942805,0.9396832,0.42454243,0.024620948,0.27355754,-0.12539199,-0.3706233,-0.56946635,-0.16768606,-0.13123275,-0.48940963,-0.16631621,0.018026646,-0.29843622,-0.83426666,0.47546342,-0.013501078,0.17698386,0.009884089,0.3082693,0.5841798,-0.25259653,0.018721886,-0.12098273,-0.13552538,-0.4169621,-0.39922187,-0.74495065,-0.4220414,0.08815551,0.98510736,-0.09191776,0.08558169,0.119992785,-0.022033254,0.07662112,0.25996643,-0.03001783,0.07361525,0.5704144,-0.14125955,-0.5116916,0.37289912,0.027112491,-0.20788206,-0.51125187,0.31865954,0.45779294,-0.59822464,0.40556508,0.37597376,0.089541316,-0.18108056,-0.5001706,-0.17085248,-0.23165585,-0.25799555,0.45643836,0.4294241,-0.7709181,0.49974748,0.29462332,-0.042617828,-0.9375118,0.45144027,-0.09423985,-0.29265893,-0.1491974,0.36499473,0.15966894,-0.11034423,-0.24715407,0.096583575,-0.4311277,0.39046997,0.18921217,-0.15242386,0.3351548,-0.34211797,-0.14236036,-0.69986284,-0.10723285,-0.47376797,-0.35479385,0.032188892,0.06649925,-0.015955929,0.14655872,0.16060156,0.38176155,-0.2194048,0.0923138,-0.24398631,-0.24578536,0.35736057,0.32965687,0.5711434,-0.24394861,0.69620895,0.018943213,-0.045363225,-0.17162399,0.056679994,0.40950885,-0.1214879,0.2900306,-0.07875487,-0.30950207,0.19391455,0.5281167,0.18446222,0.35087606,0.07100165,-0.11275355,0.13687128,0.11340815,0.32216778,-0.14386985,-0.4034217,0.0017131567,-0.44718093,0.063787885,0.35081726,0.16924922,0.30292144,-0.072584525,-0.21411142,-0.007363986,0.15440759,-0.13110428,-1.425344,0.2985461,0.20361623,0.7989713,0.5175352,-0.013771843,-0.07135401,0.72307044,-0.24368374,0.12177837,0.18228447,-0.122698516,-0.3435298,0.53961927,-0.8188913,0.4354019,-0.053851344,-0.029616842,0.1790177,-0.03616398,0.37451303,0.7487599,-0.15035243,0.086031035,-0.07187548,-0.30795708,0.1585726,-0.34190708,0.08469496,-0.6379594,-0.3026614,0.8158574,0.30029586,0.45588607,-0.31109363,0.013642031,0.0069097094,-0.16531175,0.09693377,0.19647086,0.100075126,-0.00033029914,-0.54417974,-0.1471946,0.4046203,-0.05236686,0.21193388,0.16833076,-0.23245245,0.123002924,-0.19519278,0.0066589545,-0.092482336,-0.6466294,-0.24800774,-0.36091423,-0.18988027,0.35524336,-0.06866869,0.24899122,0.19411837,0.13291106,-0.22977479,0.18689391,0.15878592,0.6561173,0.08216375,-0.16302341,-0.14068165,0.33072096,0.32808432,-0.20896187,0.045674905,-0.123548985,0.06534815,-0.69836974,0.4301113,-0.07513861,-0.36331555,0.33554816,-0.08816221,0.042922422,0.51458246,0.006332651,0.035426095,0.1111355,-0.049808007,-0.35827422,-0.20518856,-0.12417021,0.24602911,0.24504484,-0.17816904,-0.06568454,-0.019023782,0.023073878,0.635345,0.049226195,0.30516282,0.26335487,0.14076062,-0.3360073,0.09736003,0.16274977,0.4734142,0.070918314,-0.058056623,-0.23475288,-0.30821437,-0.34609264,0.15481056,-0.10870117,0.23392662,0.13170114,-0.05566664,0.7591735,0.094782114,1.0098007,0.11609247,-0.32170093,0.21124008,0.42367464,-0.068926945,-0.05933579,-0.23729378,0.8807067,0.37151504,-0.1630826,0.029082557,-0.28521255,-0.026327338,0.09046739,-0.2893847,-0.11388688,0.01828615,-0.5597646,-0.33056575,0.10533878,0.28815615,0.15565261,-0.20110533,0.09344293,0.31454048,-0.079872295,0.29701856,-0.3816548,-0.21545926,0.40475398,0.20686767,-0.10394019,0.09209,-0.43684435,0.3224846,-0.5401953,-0.04175402,-0.11302263,0.13317366,-0.16970953,-0.34600922,0.2278537,0.062817454,0.37112686,-0.28584403,-0.46158564,-0.31727645,0.43639523,0.09511115,0.116830125,0.36862993,-0.23913452,0.04578576,0.045365695,0.45400158,0.9323564,-0.048389908,0.108746305,0.37317565,-0.22213574,-0.53512895,0.26282048,-0.2557662,0.28982335,0.086331606,-0.17097023,-0.44504887,0.23152283,0.18981507,0.080972046,0.19629388,-0.6017761,-0.04883394,0.2846753,-0.083301686,-0.1021233,-0.26395875,0.07037025,0.41598594,-0.077656195,-0.3972202,0.06956786,0.08544829,-0.30675745,-0.51774114,-0.09143998,-0.43346566,0.1271915,-0.06457898,-0.3370911,-0.10809159,0.17983031,-0.35450786,-0.010501638,0.003008172,-0.20770565,0.07725057,-0.4556325,0.1393207,0.87259036,-0.122360855,0.4038844,-0.33886355,-0.5867585,-0.8349099,-0.25083113,0.37536252,0.083609775,-0.04943662,-0.6583682,-0.043641746,-0.1726307,-0.27768412,0.020967107,-0.33647144,0.47104296,0.2650875,0.35380527,-0.0038628802,-0.7484584,0.22255336,-0.010556601,-0.2820466,-0.43614233,0.42671525,0.1255,0.6648488,0.18605736,0.06346968,0.13872582,-0.58686286,0.015887931,-0.10031892,0.058124192,-0.5286971,0.014504135,591 +84,0.34143355,-0.19380826,-0.36735857,-0.21914768,-0.45558566,-0.0014899597,-0.24832296,0.05893723,0.17182112,-0.25884843,-0.08959293,0.048691902,0.03493788,0.34055907,-0.18874352,-0.75422055,-0.13918397,0.011545315,-0.66396606,0.529325,-0.6426405,0.47803617,0.07805182,0.22376351,-0.014823988,0.4613407,0.33999968,-0.26560086,-0.014667787,-0.053217083,-0.22945176,0.38328934,-0.55579436,0.15545684,-0.029132204,-0.25009742,0.29215646,-0.35311028,-0.15064171,-0.5945092,0.175782,-0.74869514,0.4944235,-0.06876597,-0.06782263,0.049416,0.3660809,0.31236,-0.46951467,0.22002655,0.1661354,-0.26515794,-0.053199574,-0.2546426,-0.04421524,-0.50674933,-0.43870634,-0.13581668,-0.8442553,-0.43510568,-0.21184231,0.19761945,-0.38430402,0.074088916,-0.18062302,0.27865458,-0.5134847,-0.015462071,0.22880417,-0.19645661,0.12052775,-0.5133506,0.009577688,-0.044034146,0.4612611,0.0185709,-0.14176093,0.4267382,0.2302147,0.37194037,0.27055892,-0.34749866,-0.2011906,-0.44841495,0.21247388,0.3435135,-0.17650193,-0.19871865,-0.1782059,0.08450562,0.31079492,0.37100273,-0.09462576,0.010295615,-0.06971718,-0.030994996,-0.25679454,0.3872768,0.55588627,-0.29285628,-0.5117512,0.28052744,0.4722175,0.12607244,-0.1363998,0.095108,0.029572725,-0.45339137,-0.2121044,0.08291323,-0.13296297,0.4464296,-0.17758963,0.13600752,0.9501691,-0.28804263,0.11133559,-0.16374367,-0.17464742,-0.123833954,-0.07250982,0.01018611,0.018412706,-0.69090486,0.026717596,-0.19826506,0.84403217,0.24086079,-0.55515397,0.33383414,-0.5796634,0.114894226,-0.042867973,0.62486446,0.5129621,0.44496998,0.42590648,0.73623496,-0.30174822,0.15098953,-0.081712425,-0.4317444,0.08104611,-0.33106506,0.03344705,-0.4453544,0.142412,-0.09782219,0.1476462,0.0010504983,0.37626532,-0.5815898,0.07988064,0.19475971,0.815536,-0.36682668,0.030641694,0.6007702,0.9509595,1.0587084,0.044258907,1.0669837,0.29357472,-0.2652474,0.05470684,-0.34792846,-0.5174297,0.13885008,0.37127748,-0.049988687,0.3504712,-0.094313204,0.04202623,0.36786193,-0.44486722,-0.10457543,-0.05702403,0.3683486,0.18690273,-0.09004751,-0.3852015,-0.15450971,0.08267584,-0.1550879,0.13481684,0.305467,-0.11885084,0.49578017,-0.013573594,1.2714119,0.0447063,0.14694181,0.12991557,0.5531204,0.2916425,0.13959014,0.05863866,0.54513323,0.34365955,0.08271158,-0.6849554,0.121056065,-0.40936363,-0.4288392,-0.18501222,-0.46285343,-0.17551391,0.027197719,-0.36339352,-0.20743847,-0.08703021,-0.19053859,0.37868896,-2.8037946,-0.24650332,-0.11487284,0.2463018,-0.35144427,-0.07901792,0.02584619,-0.5864517,0.22058177,0.26571774,0.35850242,-0.6644287,0.4837517,0.58519065,-0.5028239,-0.225144,-0.61303043,-0.094521396,-0.10971587,0.640996,-0.06411622,-0.10014814,-0.29466566,0.15874189,0.73564345,-0.06068309,0.2556352,0.39878988,0.40506703,0.2545125,0.5867346,0.07580754,0.57428443,-0.35562444,-0.09511066,0.39498013,-0.33912355,0.2729856,-0.10468793,0.049146477,0.4027736,-0.5163832,-0.90160906,-0.47882247,-0.2702102,1.0310442,-0.42152765,-0.39682508,0.2764155,-0.09908062,0.0002565179,-0.0037666298,0.3905512,-0.1770069,0.22886376,-0.5915968,0.29641902,-0.06052036,0.23555091,0.12550549,0.036455162,-0.235876,0.6410452,-0.052511334,0.53407454,0.15805486,0.27863264,-0.1821723,-0.42352086,0.065667704,0.8018693,0.48012632,0.0050917417,-0.11531832,-0.37886912,0.118086316,-0.25075728,0.010445611,0.5338747,0.77938455,0.022152133,0.16055529,0.29331464,-0.12336629,0.15324628,-0.18447123,-0.048405528,-0.009202857,0.12832133,0.46983975,0.60456264,-0.2079575,0.4729198,-0.13237947,0.48133466,-0.08612663,-0.5416949,0.59202325,0.714164,-0.12796496,-0.043596543,0.58384603,0.6284599,-0.34109688,0.46634245,-0.6369175,-0.3252725,0.77891886,-0.2929908,-0.472596,0.061437752,-0.24201459,0.14866626,-0.85142875,0.35551655,-0.31895638,-0.42660618,-0.5500285,-0.1938034,-3.6720805,-0.025941849,-0.309931,-0.07124642,-0.32716632,-0.068936266,0.17663252,-0.86066395,-0.55789244,0.15945135,0.15505555,0.4393968,-0.07365964,0.14753088,-0.32491678,-0.21896386,-0.12234703,0.293265,0.11724365,0.14799166,-0.13312079,-0.4116816,0.01622248,0.011112969,-0.51582587,0.29141408,-0.3587558,-0.5128715,-0.064497314,-0.46995452,-0.14899144,0.66570216,-0.26270887,-0.013348063,-0.28437203,0.12032207,-0.2137654,0.07912466,0.2952888,0.29710895,0.21914762,-0.1637605,0.043573704,-0.37380403,0.5197245,-0.05895637,0.47583604,0.20230806,0.04223737,-0.0025396235,0.48210174,0.3615501,-0.09162491,0.87220734,0.28644297,-0.15534812,0.37418744,-0.37252486,-0.3283026,-0.68659246,-0.53286535,0.028669585,-0.44639438,-0.5978967,-0.06159064,-0.30319235,-0.74136925,0.6413177,-0.112174004,0.38773614,-0.24529323,0.35155725,0.3941142,-0.029125996,-0.049660016,-0.072506316,-0.16875097,-0.6007756,-0.28024852,-0.7267024,-0.46142307,0.08344741,0.9640552,-0.35102642,-0.09516704,-0.20040306,-0.21473193,-0.046040393,0.09175654,0.21155599,0.36071408,0.4426729,0.058825966,-0.8176305,0.54061234,-0.06473086,-0.04469544,-0.43332952,-0.029256463,0.605687,-0.93540144,0.51057345,0.4215241,0.02586687,0.24047935,-0.53039956,-0.17878266,-0.017233893,-0.1433859,0.3503877,0.09376535,-0.736706,0.54104954,0.16092312,-0.5383687,-0.6524104,0.27972293,-0.085890785,-0.29426277,0.067354456,0.3473312,0.30130076,-0.06987969,-0.024904959,0.21192124,-0.49369353,0.24786234,0.24054146,-0.043285128,0.39493632,-0.09647764,-0.5220762,-0.7432798,-0.12496929,-0.45239466,-0.25066578,0.20961569,-0.04823496,-0.10904777,0.17485759,-0.030463051,0.4649881,-0.23089394,0.1438628,0.1471178,-0.35242513,0.27768564,0.4766572,0.3747468,-0.29540446,0.6605558,0.23026434,-0.07449553,0.06789696,0.018254735,0.31152624,-0.09533371,0.43254226,-0.11251539,-0.23716709,0.5378082,0.818107,0.2013863,0.37800226,0.08260943,-0.09742223,0.4953429,-0.013111645,-0.08329718,0.1559453,-0.34016278,-0.12388283,0.07438178,0.10103603,0.48497128,0.33042628,0.44526902,0.074633114,-0.020370748,0.029841758,0.34199333,-0.0964876,-0.9253617,0.2665338,0.25812173,0.7406843,0.42560485,0.1903458,-0.05890882,0.6300718,-0.4394231,0.026389996,0.4382323,0.10960899,-0.43934685,0.78595567,-0.48404923,0.50216436,-0.13636291,-0.0039666165,0.015237138,0.12335491,0.24370615,0.89318573,-0.0891995,-0.049862623,0.017665511,-0.3546682,0.11444778,-0.33345395,-0.090247005,-0.25455824,-0.24428816,0.6422781,0.30845934,0.30170515,-0.14657554,-0.12399368,0.04549537,-0.2085604,0.33535814,-0.07326631,0.14692271,-0.05201476,-0.25496256,-0.36332834,0.6478002,-0.05580711,0.32537225,-0.24988802,-0.23646569,0.19472085,-0.22554252,-0.10913056,0.08389623,-0.41328385,0.26937944,-0.1195309,-0.67083144,0.43787256,-0.2715465,0.14117233,0.26261994,0.036153983,-0.2603291,0.0820637,0.028093874,0.553632,-0.13874881,-0.34628633,-0.33167553,-0.12812304,0.22969489,-0.30433,0.17540446,-0.26560396,0.14203589,-0.5163005,0.59783745,-0.2465232,-0.4186847,-0.0044517145,-0.4078957,-0.112533905,0.46973056,-0.040210042,-0.14558198,0.08989965,-0.1931771,-0.397047,-0.17573611,-0.28708804,0.21532091,0.22473237,-0.014244035,-0.08089641,-0.32589427,-0.10753348,0.5578367,-0.0420858,0.35684177,0.08986744,-0.043779977,-0.24511665,-0.014062423,0.15237746,0.34954268,0.07755801,0.20167844,-0.30219465,-0.48099935,-0.31193393,0.22427963,-0.22328293,0.22702676,0.081991665,-0.45471048,0.9717611,-0.07914564,1.051659,0.09489341,-0.32867938,0.054946363,0.56900406,-0.08980115,0.072114944,-0.17773996,0.97013444,0.6324372,-0.087855324,-0.17280869,-0.41837344,-0.082887694,0.333068,-0.37533885,-0.19574912,-0.03326933,-0.482408,-0.33535635,0.29811773,0.11986479,0.12651478,0.07748047,-0.22312295,-0.13065472,0.18699884,0.37375796,-0.6688432,-0.34871405,0.29061627,0.12894978,0.037645224,0.1609996,-0.40710348,0.43190292,-0.6050025,0.19672036,-0.40625727,0.14586091,-0.24228628,-0.22350352,0.20208542,-0.016980872,0.28203812,-0.28210223,-0.47077107,-0.07414065,0.38880637,-0.012296997,0.1849455,0.5857076,-0.267782,0.09694423,0.051362876,0.58447003,1.2482195,-0.24766362,-0.122351095,0.21143036,-0.48182464,-0.7125141,0.41110057,-0.4010385,-0.24472243,-0.056345537,-0.54198813,-0.41742676,0.24733573,0.26155263,0.13463813,0.23231673,-0.61491066,-0.24612999,0.23006645,-0.4090952,-0.242528,-0.17935139,0.3831086,0.96604556,-0.37627286,-0.11206209,-0.001053486,0.29975903,-0.38539886,-0.58390653,-0.092870936,-0.01832461,0.51590276,0.20151755,-0.09902659,0.028084364,0.2775982,-0.38957888,0.16915762,0.48805952,-0.3811133,0.06618442,-0.15867653,-0.0044088736,0.8002136,-0.32675505,-0.20472538,-0.73747146,-0.40678242,-0.9100323,-0.3919247,0.40544307,0.15176788,-0.009195216,-0.36648953,-0.0002682656,0.039489344,-0.18525302,0.10015262,-0.6795235,0.37157646,0.15773042,0.46900874,-0.22947781,-0.8261248,-0.08032566,0.10942466,-0.039033636,-0.6659942,0.672927,-0.34637177,0.78454745,0.060097307,-0.25787416,0.042469412,-0.3263782,0.13468607,-0.33044216,-0.14230931,-0.84513634,0.038870238,597 +85,0.67489713,-0.31701237,-0.670028,-0.1011074,-0.28572497,0.0068246573,-0.18065661,0.42666864,0.3952455,-0.24484769,-0.08567484,-0.14912444,-0.029835861,0.13474181,-0.10850787,-0.31004727,0.0796874,0.11016606,-0.656757,0.5689234,-0.5235207,0.20967916,-0.0430562,0.49211287,0.38541102,0.3253953,0.020939944,0.13628477,-0.120033175,-0.16261572,0.206875,0.28915912,-0.60075116,0.15213828,-0.32260808,-0.2831203,-0.06752011,-0.45657778,-0.5181693,-0.8411739,0.40832585,-0.715244,0.43143463,0.0023809671,-0.25385734,-0.0021976605,0.085805036,0.13523723,-0.30008233,-0.096265525,0.17454812,-0.061415665,0.023260929,-0.22158472,-0.14654183,-0.28852475,-0.54226696,-0.071479656,-0.51078033,-0.06494522,-0.39827916,0.15217102,-0.34097457,-0.11095437,-0.1158705,0.6327008,-0.43913418,0.28856522,0.029973209,-0.13482857,0.13189173,-0.68752885,-0.41812265,-0.17853574,0.10850202,0.09364277,-0.38949656,0.35716403,0.19508216,0.30138662,0.004329808,-0.07568532,-0.327111,-0.15185955,0.15418701,0.31048328,-0.06672592,-0.5841541,-0.12967226,-0.21797936,0.34729555,0.26392075,0.28109816,-0.38493058,0.050606586,0.091993704,-0.14465888,0.5306364,0.6479891,-0.21854764,-0.11843432,0.10002342,0.31560242,0.34968415,-0.23841172,0.032628357,-0.05789084,-0.62373495,-0.18578684,0.040049996,-0.11269902,0.6160033,-0.09357995,0.30736157,0.5919688,-0.28046933,-0.23055807,0.19708002,0.094498426,-0.042682715,-0.41967195,-0.30313662,0.17718157,-0.5338277,0.09138855,-0.16017553,0.66710246,0.2278341,-0.6075138,0.3097173,-0.4355352,0.15352304,0.018568857,0.5637045,0.826911,0.42339453,0.44735062,0.76615375,-0.16828565,0.023218356,-0.1669121,-0.25330424,0.05127924,-0.20085056,0.06961328,-0.3540355,-0.12761527,-0.1000887,-0.037392303,0.21635142,0.66753244,-0.47722885,-0.30362052,0.111170344,0.70563745,-0.2587421,0.10558601,0.77681625,1.0899692,1.0434084,0.1329631,1.1354189,0.07348268,-0.100563355,0.15507603,-0.1515608,-0.7249212,0.32569677,0.16327326,0.111394964,0.09738337,-0.14809285,-0.07711977,0.23829073,-0.49035558,-0.023985133,-0.025938753,0.5383507,0.14823535,-0.018611655,-0.23568249,-0.39844203,-0.036274612,0.08294684,0.039852016,0.28360313,-0.29468873,0.3681615,0.10423911,1.458862,-0.046736337,-0.045389183,0.060049754,0.730526,0.32091692,-0.2194374,-0.04734026,0.4284721,0.2045798,0.039271936,-0.5343894,0.09816407,-0.32832897,-0.4248091,-0.05422502,-0.46188802,-0.21478888,-0.09600389,-0.3769856,-0.2379829,-0.095362194,-0.2932934,0.47780263,-2.7834575,-0.2693731,0.0021699667,0.36233872,-0.15719451,-0.32770005,-0.30816543,-0.5036654,0.4430805,0.09848455,0.49552512,-0.6836107,0.13685277,0.5558264,-0.5548308,-0.11309979,-0.55102277,-0.09558955,0.018843014,0.3370451,-0.09126503,-0.0059390515,-0.08910808,0.14577031,0.48541188,0.092117764,0.2902735,0.37709934,0.31297934,-0.13786456,0.55158514,-0.11037277,0.32708308,-0.3778994,-0.27509767,0.31954914,-0.4482752,0.27155143,-0.28127348,0.09057167,0.6691193,-0.6202365,-0.80457985,-0.4534378,0.13586095,1.0418534,-0.16381629,-0.5662066,0.32638842,-0.7303166,-0.15866135,-0.17047375,0.5816611,-0.13754109,-0.013030833,-0.6976031,-0.04774876,-0.06441443,0.10704045,-0.013958301,0.029756397,-0.2910056,0.57631147,0.017519219,0.5056823,0.2719044,0.067899466,-0.6091609,-0.5086133,0.24073462,0.742317,0.41264945,0.07957034,-0.18889731,-0.1071472,-0.32600686,-0.14182118,0.10717295,0.7619516,0.6742064,-0.19098347,0.22028258,0.32602715,-0.016134135,0.0021002162,-0.19398327,-0.17658049,-0.26513353,0.03657744,0.58587205,0.78569674,-0.13340798,0.36595532,0.14022326,0.2364879,-0.14789161,-0.51881063,0.44968805,1.0505064,-0.21158957,-0.32877845,0.41998267,0.37574935,-0.362585,0.4514489,-0.4973673,-0.46525627,0.4554495,-0.089493155,-0.34091583,0.3250894,-0.395351,0.019671362,-0.57287085,0.33981895,-0.4416749,-0.38829315,-0.44990793,-0.23419537,-2.5288367,0.15590528,-0.19714081,-0.06820285,-0.26834872,-0.37429327,0.07124546,-0.45316684,-0.6761044,0.17194219,0.11310765,0.7958165,-0.19696023,-0.13324043,-0.16982722,-0.4959253,-0.44476905,0.16119394,0.21771815,0.5516115,-0.08423639,-0.4153694,-0.083259135,0.027425736,-0.40021026,0.042668145,-0.45474857,-0.4917277,-0.11165902,-0.5353066,-0.5184027,0.6272743,-0.114709824,0.01813128,-0.13788255,-0.056855477,0.069797635,0.23247465,0.17150977,0.21067701,0.027325869,-0.054341055,0.052846,-0.18135318,0.022781488,-0.073556624,0.2158218,0.34340614,-0.08208561,0.17318973,0.31073666,0.73359513,-0.23817556,1.0083066,0.2182932,-0.080909014,0.35958558,-0.1493205,-0.47682458,-0.5338067,-0.20835969,0.03918712,-0.52116835,-0.29219723,-0.07335084,-0.3623628,-0.6642703,0.5787013,0.078273065,0.19748424,-0.006144684,0.29045156,0.52537614,-0.092163764,0.04062061,-0.083160624,-0.17140344,-0.6120655,-0.28536218,-0.74674773,-0.49093702,0.16935347,0.8378964,-0.3575319,-0.100666985,0.33786228,-0.30188593,0.039232574,0.2330385,-0.088920005,0.07688122,0.5305192,-0.10223319,-0.4390531,0.39447612,-0.1269629,-0.094521925,-0.56825066,0.42014194,0.6034893,-0.62115324,0.7213624,0.2857719,0.07544617,-0.45306614,-0.5741509,-0.13595295,-0.09647888,-0.123264164,0.5494838,0.3075414,-0.8397675,0.43580368,0.30684876,-0.14189288,-0.7328421,0.57252365,-0.115567766,-0.34463358,-0.19777827,0.48584712,0.16050817,0.06760029,-0.23048995,0.34088498,-0.42426834,0.34141237,0.22965397,-0.23828883,0.30422056,-0.24798043,-0.33214796,-0.6907197,-0.06077555,-0.48120037,-0.35173136,0.3509035,0.011192182,0.09684887,0.16650122,0.1710119,0.36501065,-0.22308064,0.06483001,-0.19122875,-0.195256,0.36146963,0.529968,0.6193569,-0.35898674,0.6027763,0.08998333,-0.19208536,0.21159342,0.17925772,0.16695884,0.025022447,0.41486788,0.06803739,-0.2589759,0.1631305,0.8290684,0.21356404,0.36167458,-0.011676408,-0.027704164,0.18455686,0.084702596,0.38369042,-0.036510095,-0.5624577,-0.0068713725,-0.3410745,0.24316815,0.41566992,0.23046553,0.22960497,-0.04988417,-0.23425376,-0.06585343,0.34517854,-0.10248751,-1.4778116,0.31408602,0.16204712,0.88030267,0.5304576,-0.011031121,-0.18489552,0.5923028,-0.01021209,0.054037184,0.31126156,0.18659747,-0.4013772,0.48769346,-0.5570013,0.6059987,-0.00079390034,0.04388742,0.069871806,0.056861386,0.6060602,0.7265108,-0.12954807,-0.076777585,0.12106238,-0.26234984,0.32381773,-0.36993933,-0.024460532,-0.60473496,-0.37307167,0.6900941,0.5295282,0.2881317,-0.19529134,0.016157746,-0.044924285,-0.25678423,0.18073452,0.0054724887,0.071433574,-0.20008753,-0.6643487,-0.05541232,0.42928332,0.0064458884,0.08884332,0.13586354,-0.08510086,0.19020551,-0.053403817,0.15893482,-0.1072474,-0.64039296,-0.08552787,-0.38363403,-0.36463994,0.47067043,-0.11641677,0.2153962,0.31969258,0.061946005,-0.23480122,0.41373056,0.029148698,0.6135228,-0.26239187,-0.05886744,-0.3775874,0.16740689,0.20731896,-0.22124657,-0.034047037,-0.18489975,0.088061504,-0.59846586,0.5206385,0.08584694,-0.14997739,0.021304578,-0.044751152,-0.029887617,0.61138844,-0.17199977,-0.2183314,-0.049556606,-0.1351532,-0.30880302,-0.2041283,-0.015370913,0.21959098,0.24457502,0.036574148,-0.1915709,-0.081064254,0.17590396,0.35761094,0.034022212,0.32353008,0.29791188,0.25317192,-0.3644807,-0.11077489,0.24450576,0.6927277,0.034618475,-0.056339957,-0.35791188,-0.5356666,-0.54268944,0.28358847,-0.11120363,0.3312147,0.15118936,-0.15939663,0.7248873,-0.107658386,1.0539589,0.122167885,-0.32605433,0.17190804,0.6356527,-0.10221362,-0.084693074,-0.16171332,0.7867978,0.42908984,-0.2317452,-0.12667005,-0.29635423,0.20051181,0.15140039,-0.24275742,-0.12163929,-0.119822115,-0.63126814,-0.08415134,0.048812643,0.29146582,0.13302463,-0.3028333,0.006607432,0.35742182,0.029584197,0.22272998,-0.49734372,-0.16226003,0.3244892,0.25470552,-0.05273404,0.13574259,-0.39082038,0.33521113,-0.47927773,0.12687086,-0.29902938,0.28884917,-0.14921927,-0.40429875,0.23483168,0.03386309,0.36359364,-0.4729864,-0.3134588,-0.3360112,0.29410398,0.18258461,0.2008607,0.53563195,-0.22366214,-0.09134484,0.039295517,0.5183425,1.117518,-0.15386304,-0.15806523,0.3472231,-0.43994898,-0.6405642,0.2682175,-0.5115494,0.17769386,0.15996368,-0.10022989,-0.589303,0.2685679,0.14273298,0.11589203,0.025449622,-0.9010446,-0.14348868,0.25226653,-0.26859692,-0.05475332,-0.43817395,-0.066472344,0.59899974,-0.24711184,-0.24203667,0.010677692,0.16554059,-0.19766352,-0.6269739,0.009395867,-0.38833183,0.35316187,-0.006345935,-0.21646714,-0.19290237,0.10063663,-0.59812415,0.1541992,0.015683427,-0.27767575,0.08778831,-0.359953,-0.010875685,0.95561385,-0.38908327,0.26222134,-0.057316467,-0.51840675,-0.72473204,-0.018288381,0.22247446,0.021134699,0.04263778,-0.67195815,-0.11764705,-0.17535087,-0.052023515,-0.09483874,-0.3642155,0.49994045,-0.020542664,0.37935683,-0.15975448,-0.8484945,0.30022764,0.1096984,-0.23597428,-0.40701967,0.5536219,-0.126934,0.5646198,0.14667909,-0.05035177,0.25925136,-0.5495796,-0.019143302,-0.22720851,0.009718187,-0.6248659,0.13769878,601 +86,0.39935187,-0.05841663,-0.4560293,-0.058621544,-0.24413691,0.028915852,-0.19307178,0.66808987,0.28128496,-0.22595464,-0.03232687,-0.041503165,0.048991546,0.377034,-0.15982926,-0.446381,0.011683218,0.21317214,-0.54720414,0.7220032,-0.345375,0.20587379,-0.38742065,0.4159395,0.25060087,0.25154015,-0.1063854,0.07215665,-0.12626359,0.012212137,-0.0062909573,0.55176324,-0.29091316,0.102789044,-0.32270923,-0.24016523,-0.09912828,-0.40762094,-0.46839017,-0.80891514,0.31667477,-0.6388289,0.5153385,-0.15341006,-0.28467155,0.27842385,0.047706075,0.2553034,-0.11395265,-0.16563939,0.09695093,0.01127167,0.016492039,-0.16074716,-0.3438382,-0.4140574,-0.45733875,0.01028088,-0.6222226,-0.048270047,-0.12022475,0.08669516,-0.201193,-0.1080445,0.013600718,0.53719866,-0.42422742,0.19410464,0.08388708,0.02774299,-0.052617766,-0.6642847,-0.0986411,-0.126473,0.37089822,-0.049650297,-0.28751513,0.34321362,0.1668347,0.3455491,-0.2420997,-0.067315206,-0.40203592,0.027509186,0.05105701,0.426027,-0.23595177,-0.6198963,-0.10253981,0.15968591,0.26357144,0.14484707,0.0932317,-0.106968194,-0.12731923,0.008339344,-0.13763146,0.49142247,0.57502013,-0.23121424,-0.17994425,0.4206882,0.43318337,0.3864197,-0.31949347,-0.012755534,-0.02654792,-0.54047257,-0.10174379,-0.049722657,-0.09813169,0.55086094,-0.078350484,0.17029063,0.44430333,-0.1305929,-0.16711819,0.14054361,0.06336534,0.050965406,-0.14857264,-0.19801532,0.117308624,-0.44254994,0.1434006,-0.011748757,0.4703993,0.17914413,-0.6865335,0.31677604,-0.4573494,0.08485724,-0.041444212,0.39092493,0.7549776,0.43029916,0.30360863,0.5447671,-0.11089766,0.16832653,-0.18035895,-0.22252733,-0.039769866,-0.17419757,-0.19141439,-0.56832945,0.1071606,-0.18049811,-0.22310588,0.18270348,0.29772386,-0.44646728,-0.19694918,0.09513673,0.8273202,-0.2579722,-0.18039024,0.7839293,1.0175568,0.8374926,-0.09366059,0.90100527,-0.0047355816,-0.12342939,0.23703974,-0.3312205,-0.6497133,0.29070914,0.13758768,-0.30269074,0.3599884,0.0052804425,0.02687642,0.30477336,-0.3795877,-0.0480128,-0.16457939,0.12839106,0.18794665,-0.033871256,-0.39026606,-0.33922,-0.18303424,-0.10683308,0.25271794,0.2992364,-0.32703966,0.2390979,-0.070503846,1.4773755,0.12712489,-0.05008826,0.11082427,0.6416835,0.2960849,-0.15393059,-0.13607244,0.50964403,0.34669048,0.14917111,-0.46868616,0.17308217,-0.23639524,-0.4731451,-0.10414719,-0.46877897,-0.13144249,0.022839941,-0.4566217,-0.16418281,-0.08588998,-0.2000368,0.4755175,-3.0049696,-0.20097423,0.03812339,0.39644343,-0.108951025,-0.236757,-0.2742119,-0.43886894,0.3906715,0.26029536,0.39621145,-0.53209835,0.4703525,0.288562,-0.63007313,-0.09161443,-0.51685214,-0.054198265,0.040319726,0.46065164,-0.09479338,0.032167174,0.3244685,0.3160543,0.5260993,0.023304045,0.21038483,0.3150826,0.438897,0.055383373,0.32416123,-0.22153345,0.4747697,-0.28897506,-0.18109159,0.25130287,-0.44073072,0.29998982,-0.08436925,0.103312016,0.53073204,-0.46027088,-0.9775684,-0.47260922,0.28164703,1.1723098,-0.1543885,-0.3713472,0.19939306,-0.5792769,-0.24938701,-0.15586159,0.54364705,0.04319219,-0.18912187,-0.6532926,-0.03717301,-0.051355258,0.052355446,-0.0829498,0.033821538,-0.21459606,0.4716038,0.02769436,0.41432807,0.21675928,0.1907524,-0.3117949,-0.4922511,0.008849021,0.5822499,0.32168123,0.056129996,-0.15786272,-0.2828734,-0.43683773,0.022001445,0.09334129,0.72086555,0.35611558,-0.10235184,0.15193133,0.263412,-0.027517892,0.09947255,-0.29046136,-0.15124588,-0.09017808,0.0969774,0.4941467,0.6049977,-0.29250032,0.50562257,0.09176847,0.122193515,-0.19790243,-0.32492143,0.31391916,1.1697023,-0.29417267,-0.33663145,0.40500268,0.49381208,-0.19438605,0.32468942,-0.36977863,-0.20539287,0.43624383,-0.2323274,-0.30382776,0.32960936,-0.11253624,0.121207505,-0.69706464,0.23549116,-0.21303827,-0.5295718,-0.6293667,0.09444137,-2.9276032,0.0934098,-0.12056433,-0.3634957,-0.119786784,-0.31666416,0.043977905,-0.50443107,-0.5703596,0.15570463,0.08714093,0.6537667,-0.25111824,0.034057572,-0.22863936,-0.47502097,-0.29990578,0.18074971,0.14631397,0.50779736,-0.06878508,-0.43101156,-0.13782465,-0.08825155,-0.3507909,0.13531356,-0.5209538,-0.16300118,-0.06453796,-0.5153026,-0.1627256,0.6310625,-0.22361559,-0.0076143313,-0.2303401,0.017054718,0.028397743,0.23026899,0.04292441,0.14805788,0.19542864,-0.15809356,0.21056569,-0.20247462,0.25695363,-0.06781586,0.30340394,0.2705486,0.07422043,0.22723423,0.54922295,0.6232105,-0.1623091,0.9161224,0.5474998,-0.020931104,0.2530607,-0.3499976,-0.23673654,-0.34864172,-0.20752066,-0.06427042,-0.43112004,-0.4240784,-0.13415544,-0.4563591,-0.7625028,0.44964412,-0.12523015,0.17298463,0.06599777,0.34573537,0.6446904,-0.16132432,0.1155256,0.0016554408,-0.2070512,-0.4410314,-0.23518886,-0.43928465,-0.33409098,0.07680954,0.8920224,-0.3267153,0.016901445,0.020745628,-0.29972667,-0.03230288,0.13002433,0.08036748,0.23149997,0.23242253,-0.32282084,-0.50543547,0.30367216,-0.15727593,-0.20110528,-0.46991768,0.26333094,0.4955946,-0.46128577,0.64143634,0.26467708,-0.07056959,-0.23142949,-0.5766942,-0.03354102,0.043771394,-0.15518671,0.44246808,0.2998463,-0.82222706,0.39598513,0.29116952,-0.30258757,-0.6230608,0.65549177,-0.04336589,-0.33809793,-0.10969609,0.33083886,0.19187886,0.012431096,-0.39208058,0.17771892,-0.24461079,0.14092386,0.22345234,-0.14741762,0.238871,-0.27764592,0.044025753,-0.685712,-0.035233866,-0.46853873,-0.2180616,0.39640844,0.09228982,0.29096317,-0.055759683,0.11123489,0.30112934,-0.44443274,0.12944758,-0.09247025,-0.19435182,0.34978914,0.37127483,0.49935856,-0.40821803,0.45077866,-0.044572122,-0.22575074,0.26499188,0.09250911,0.35862,-0.06623618,0.43611935,0.26507244,-0.16391066,0.2086443,0.7565573,0.22832456,0.37350607,0.02483575,-0.28150207,0.088849306,0.06298527,0.13808186,-0.11278869,-0.40321946,-0.019962423,-0.20900786,0.22614443,0.4529459,0.22832265,0.22422296,-0.040261805,-0.33872828,-0.10544641,0.17883326,0.1274444,-1.4059801,0.29153174,0.17895658,0.7977367,0.26699162,0.16084187,-0.004438244,0.54727554,-0.054936074,0.08929653,0.4390083,0.062583946,-0.5358993,0.47161484,-0.6528053,0.45827985,0.011714878,0.010287549,0.16454893,0.012504626,0.42981172,0.7522858,-0.07447608,-0.01204952,0.24609977,-0.3011839,0.13422187,-0.28352138,0.038835846,-0.6136811,-0.22844088,0.5133076,0.5193594,0.22132531,-0.20525017,0.07161785,0.1505493,-0.18717197,0.11437704,0.11568086,0.113257214,-0.108036436,-0.6391413,-0.06166031,0.35490134,-0.19201857,0.101613626,0.03860977,-0.112038724,0.37648383,-0.1801781,-0.04128277,-0.02960803,-0.5922799,-0.117341876,-0.3044924,-0.41940963,0.5792261,-0.17985982,0.25606215,0.2848963,0.08724081,-0.5184055,0.43740687,-0.011217415,0.710451,-0.18427226,-0.007249482,-0.39096093,0.10345142,0.18519157,-0.15490772,-0.2214593,-0.30189058,-0.012399412,-0.4208939,0.31676978,-0.009166166,-0.27577192,-0.26555574,-0.068720415,0.21851525,0.43834606,-0.039170068,-0.101837166,-0.17318586,-0.12410931,-0.52134955,-0.34708774,-0.07083465,0.18485865,0.2441433,-0.11547972,-0.14513765,-0.12040129,0.037307877,0.48443785,-0.123158604,0.45643973,0.40145773,0.30438367,-0.048059613,-0.12703215,0.2704773,0.50374657,-0.002009008,-0.06450994,-0.40087655,-0.32270014,-0.38017368,0.07970524,-0.12114799,0.33040726,0.2095851,-0.12228569,0.5699979,-0.099496335,1.0657474,0.015328035,-0.34244362,0.23842269,0.3978657,0.1435643,-0.12954833,-0.29267785,0.77065694,0.47498065,-0.027308162,-0.004157232,-0.28398576,-0.04774774,0.108284056,-0.18159604,-0.23515023,0.012313079,-0.42803246,-0.16302249,0.23640047,0.19841322,0.35156623,-0.19771883,0.11908026,0.2285446,0.0628715,0.16112462,-0.297883,-0.12147078,0.2785374,0.2316488,0.090994254,0.06181518,-0.51673055,0.3918223,-0.3084978,0.030127317,-0.22357965,0.33271092,-0.12686431,-0.36659262,0.20588581,-0.02156217,0.28074324,-0.16875844,-0.19822866,-0.3424288,0.42235455,0.08669256,-0.0016583949,0.35521343,-0.20499521,0.107607216,0.0012086704,0.53776884,0.7714615,-0.27306524,-0.16865182,0.24500158,-0.31719965,-0.725634,0.29384723,-0.41800356,0.26309356,-0.023862801,0.024500497,-0.685921,0.28755778,0.13828464,0.22827518,-0.16900936,-0.6419125,-0.17890522,0.2535965,-0.19276787,-0.13384598,-0.35792515,0.012930969,0.525992,-0.24529572,-0.41687012,-0.06686804,0.19738954,-0.094565496,-0.585934,0.09890058,-0.35235372,0.24744242,-0.004551159,-0.29570958,-0.21768294,-0.032308556,-0.38124153,0.25601825,0.059756283,-0.301514,0.093865775,-0.2026329,0.062368248,0.91417754,-0.33355087,0.23291063,-0.29042256,-0.5400868,-0.7685996,-0.35876456,0.077453434,0.2601242,-0.08071901,-0.85922134,0.13421364,-0.21688883,-0.44236094,-0.13614361,-0.33922565,0.46625003,0.08022833,0.19617471,-0.07433167,-0.781258,0.13860568,0.104329005,-0.317854,-0.5274371,0.45328242,-0.08789325,0.92992103,0.082908615,0.27255613,0.244231,-0.24491915,-0.10656424,-0.19511317,-0.07945285,-0.43203223,0.0075078104,645 +87,0.5655846,-0.26117,-0.3851496,-0.13652276,-0.2680196,0.30786783,-0.24777184,0.3331769,0.05125095,-0.29230613,-0.06751455,-0.090305775,0.084082715,0.52176386,-0.077541605,-0.5969988,0.05855774,0.06537324,-0.75832975,0.5236344,-0.5645495,0.31261024,0.07673703,0.27006108,0.20064396,0.28377616,0.17466895,-0.07297436,-0.093670204,0.06446085,-0.14329636,0.3199866,-0.5795028,0.11115422,-0.050319247,-0.19707674,0.01393199,-0.40609682,-0.31710318,-0.6026101,0.2794462,-0.75259477,0.47688305,-0.082325414,-0.31374553,0.39701676,-0.055115648,0.17768718,-0.41433823,0.09279113,0.08457507,-0.1068065,-0.04731804,-0.24141073,-0.122279525,-0.31928176,-0.5527141,0.101444855,-0.6726908,-0.32445988,-0.23423672,0.096029975,-0.31709003,0.041403882,0.0019049533,0.22643152,-0.51576865,0.07721695,0.072820045,-0.08174992,-0.09674147,-0.5019203,0.08728026,-0.07618087,0.18085386,-0.12784398,-0.2411015,0.2961695,0.2576673,0.5749463,-0.009213369,-0.18636595,-0.06439988,-0.012903251,0.13569054,0.58547693,-0.17236128,-0.29947016,-0.25692642,0.051277068,0.24500868,0.0054186136,0.016347416,-0.38808465,-0.16653076,-0.01261545,-0.15941675,0.17536767,0.4489082,-0.55399346,-0.34576744,0.4855901,0.47420642,0.19577023,-0.06213809,0.07125532,0.002316678,-0.53720015,-0.07786461,0.07610504,-0.11296777,0.40783742,-0.11257311,0.25106263,0.673778,-0.23988484,0.17658338,-0.051638935,-0.09956929,0.011018608,-0.13881287,-0.0633181,0.011368882,-0.43117815,-0.03551667,-0.15299052,0.76223487,0.24749364,-0.65600836,0.4908696,-0.46786028,0.13670541,-0.09931223,0.5695499,0.7993274,0.38241613,0.020303365,0.6033237,-0.38916636,0.13373592,-0.21606016,-0.33490926,0.2410115,-0.19629872,-0.22106892,-0.47640398,0.07173722,-0.008258028,-0.14472073,-0.0059866905,0.64575565,-0.5320867,-0.07946443,0.031494647,0.69325435,-0.3859548,-0.1524348,0.5898444,0.8586731,0.7854997,0.0056025535,1.2477039,0.39879206,-0.062148705,0.2097818,-0.366757,-0.66283154,0.21339864,0.52941835,0.11167002,0.40092394,0.12659417,-0.16980323,0.37524232,-0.3025748,-0.033621997,-0.18720603,0.3666184,0.0052104704,0.0024847835,-0.34442198,-0.21577522,0.0074933786,0.077846594,-0.035876516,0.3048339,-0.42953822,0.2729972,0.047840223,1.9311594,-0.11480113,0.13433905,0.033975974,0.39387137,0.27027035,-0.20469616,-0.22579569,0.33817112,0.43544367,-0.025399169,-0.5268161,0.10233154,-0.21588813,-0.53029054,-0.13990954,-0.43311483,-0.061615758,-0.10176443,-0.47400412,-0.086519934,0.25874704,-0.20411655,0.46501857,-2.6335413,-0.2335862,-0.11311957,0.42848903,-0.33963424,-0.44372213,-0.30385655,-0.33270016,0.21124971,0.30938047,0.4772411,-0.620045,0.42212957,0.3223117,-0.3137316,-0.15803106,-0.538293,-0.10016222,0.016142651,0.5055918,-0.11231553,-0.10677664,0.019605167,0.1792664,0.55385095,-0.16872302,0.0023384877,0.22129077,0.3049295,0.25594997,0.3243283,0.025029331,0.4992659,-0.20718487,-0.21371067,0.48378092,-0.042667415,0.2619927,-0.059443273,0.218537,0.23747225,-0.4614377,-0.8734366,-0.57752585,-0.11495753,1.1823782,-0.4056614,-0.2950699,0.19634043,-0.020700686,-0.15602371,-0.02495154,0.25887665,-0.15565653,-0.16699547,-0.72861576,0.16975203,0.06458862,0.19567996,-0.055520963,0.121250495,-0.21492118,0.4878854,-0.10317602,0.42293775,0.21762715,0.2937847,0.07959154,-0.40048072,0.13272265,1.0260268,0.34951705,0.12312277,-0.1796042,-0.23991528,-0.1458157,-0.1258243,-0.009062078,0.3107902,0.7994646,0.17948867,0.14095479,0.1615203,-0.12810329,-0.048612587,-0.19877079,-0.2650012,0.080120735,0.041023552,0.58059925,0.4994604,-0.16992354,0.4866684,-0.05826175,0.19559622,-0.047077,-0.554886,0.41549182,0.98895776,-0.18973958,-0.11114323,0.43219888,0.38284403,-0.3609101,0.38843566,-0.67388463,-0.30195683,0.48780027,-0.2283909,-0.27112672,0.3582393,-0.24428795,0.16730824,-0.7721833,0.5042798,-0.013906255,-0.28900418,-0.43979973,-0.123031795,-3.5957716,0.104976274,-0.17301969,-0.16388568,0.05619956,-0.041028585,0.31309807,-0.5750193,-0.36118817,0.010917619,-0.0062252516,0.6049819,-0.057442877,0.10343289,-0.2913342,-0.2699988,-0.2951002,0.084388,0.114716575,0.3508301,-0.03818241,-0.37044016,-0.021518724,-0.2445435,-0.26480255,0.14571728,-0.5336753,-0.5539449,-0.13761748,-0.44030756,-0.067707054,0.69166696,-0.2765957,-0.07136312,-0.20223266,0.045027953,-0.13213563,0.2926657,0.290725,0.045015555,0.13695446,-0.006917091,-0.08930753,-0.46108586,0.28224087,0.10363588,0.20798513,0.5508075,-0.044181824,0.051105008,0.6536597,0.384929,-0.16637728,0.7018362,0.42978942,-0.1684207,0.24397805,-0.24745074,-0.24502523,-0.3951007,-0.40512985,-0.1300206,-0.3764128,-0.35429752,-0.12559605,-0.2602076,-0.73327875,0.49854225,-0.16988015,0.11951816,-0.082157336,0.27423218,0.51884454,-0.13270977,-0.08346843,-0.12150252,-0.13371243,-0.6020924,-0.37913406,-0.6903654,-0.5594046,0.23557003,1.0214765,-0.24599731,-0.10516976,-0.1546298,-0.11695175,-0.120682895,-0.18042421,0.064544916,0.3277579,0.318896,-0.14220956,-0.8049072,0.4636497,-0.19478965,-0.15334731,-0.56026757,0.11437906,0.50685203,-0.67673516,0.37544858,0.28661326,0.21433447,0.19057523,-0.55285096,-0.2304225,0.1203276,-0.19970356,0.31960392,0.07615118,-0.7849579,0.53671753,0.24260353,-0.34282514,-0.7405207,0.48234475,0.13246109,-0.22441679,-0.009698726,0.30039072,0.106953904,-0.07494584,-0.16341795,0.20730385,-0.51181436,0.44843164,0.2879659,-0.005393766,0.38008752,-0.21278122,-0.27539593,-0.5427656,-0.12395261,-0.36462355,-0.32426333,0.12950914,0.07240539,0.26803178,0.0637168,-0.019047126,0.5208993,-0.4403172,0.028767046,0.09009823,-0.24068339,0.388346,0.42224577,0.52572036,-0.2843158,0.53815556,0.040240616,-0.05055987,0.14041619,0.031348746,0.4174662,0.087585464,0.1281799,-0.018412054,-0.14234106,0.27733925,0.92824894,0.21808648,0.36947095,0.05920525,-0.4333167,0.28625426,0.18419568,0.046547815,0.11989668,-0.32596424,-0.02987137,0.07481563,0.2275212,0.493645,0.24933529,0.29294825,-0.14018872,-0.27093774,0.14863272,0.022026025,0.09073351,-1.0519246,0.11077024,0.16492262,0.56063527,0.38136017,-0.05494669,0.02538985,0.507752,-0.24146733,0.072472304,0.29993114,-0.1849524,-0.6784137,0.51651424,-0.59979403,0.5058508,-0.033375934,0.003442768,0.11585231,0.090129405,0.37496728,0.85769343,-0.07385911,0.049772974,0.06089077,-0.29000768,0.06674355,-0.41117555,-0.04374016,-0.47295937,-0.22418097,0.58541924,0.42706844,0.17273742,-0.10171424,-0.032709684,-0.019328594,-0.20497315,0.08376408,-0.004403429,0.13408406,-0.049952284,-0.6043,-0.47122008,0.5204731,-0.022767462,0.108351015,-0.011440977,-0.0851038,0.3099503,-0.2820608,-0.1963711,-0.074869566,-0.55990326,-0.0702572,-0.4875549,-0.54962015,0.30950752,-0.13502195,0.23237401,0.16998634,-0.05695445,-0.41843897,0.4697777,0.11320883,0.8836067,-0.043770466,-0.28612423,-0.40040863,0.20147987,0.26129276,-0.20597541,-0.04940813,-0.2857305,0.044338338,-0.7425026,0.44159403,-0.19169366,-0.3130828,0.16274121,-0.13935104,0.013670639,0.45675054,-0.047251545,-0.21979737,-0.13572726,-0.038973905,-0.40141657,-0.108957306,-0.19114581,0.16983691,0.17506626,-0.17083545,-0.039240066,-0.11574782,0.00020590052,0.4824884,0.11117848,0.35455042,0.38898402,0.15091886,-0.2362338,-0.12233861,0.3206424,0.44396883,0.028627157,0.028216321,-0.38057062,-0.44519445,-0.34098914,0.1647829,-0.24785581,0.32486227,0.19452018,-0.46606773,0.7530458,0.0023663435,1.0652372,0.07968521,-0.2674345,0.20103164,0.54255223,0.15103501,0.03933935,-0.34507582,0.87269926,0.6256355,0.11202844,-0.18390912,-0.3871003,-0.28901353,0.24899876,-0.30691713,-0.13402064,-0.08358979,-0.68584573,-0.31861883,0.20308231,0.18603677,0.20895812,-0.041747063,0.061719507,0.18299718,0.08658582,0.2558832,-0.5569774,-0.16427243,0.2601595,0.31434482,-0.079207994,0.3035619,-0.4576162,0.46623158,-0.5733571,0.01764571,-0.27492803,0.13401115,0.06918843,-0.2907493,0.15676275,0.16819228,0.4116001,-0.33079875,-0.34276637,-0.2686876,0.50761366,0.08422712,0.16709426,0.6414654,-0.25144854,-0.013891585,-0.051173963,0.40079308,1.0000412,-0.14637113,0.118834816,0.35545802,-0.3325995,-0.6751085,0.27318266,-0.17273712,0.26567453,-0.11075303,-0.24450228,-0.52286255,0.30042976,0.10912057,-0.0065353625,-0.019362472,-0.51603526,-0.12551498,0.33467314,-0.16870867,-0.25889412,-0.3950847,0.15981199,0.756058,-0.45871288,-0.16243638,0.15138794,0.3619718,-0.29985458,-0.56195444,-0.109880574,-0.42281467,0.14741425,0.22889555,-0.15942192,-0.028176457,0.06901123,-0.36181822,0.07762897,0.2895221,-0.38113123,-0.0068732314,-0.1210484,0.11976341,1.0047369,-0.08182135,-0.09259092,-0.7970102,-0.53746015,-0.9244461,-0.4289444,0.5454701,0.23353584,0.07546355,-0.5319104,0.043479316,-0.08518088,-0.063403,-0.013834365,-0.508378,0.45195884,0.033324786,0.20880514,-0.030287646,-0.71823287,0.08244003,0.07466333,-0.31375626,-0.5943434,0.5199672,-0.17312726,0.8329414,0.08929476,-0.037600987,0.26177603,-0.5247051,-0.020283602,-0.47308993,-0.096686095,-0.7668102,0.23677675,660 +88,0.20346159,0.043069012,-0.48208904,-0.052563842,-0.22653133,0.35637543,-0.33322674,0.06504212,0.22145955,-0.42950863,0.20222962,-0.059917845,-0.19776814,-0.06561917,-0.10160583,-0.48477185,0.088746265,0.06531774,-0.3016007,0.48758963,-0.44243246,0.33827126,-0.017340511,0.11853083,-0.27804878,0.2521718,0.24566114,-0.24427938,-0.16359115,-0.20855355,-0.02769722,0.18581231,-0.36312175,0.4101242,-0.060616586,-0.19452482,0.20740518,-0.23697051,-0.20603508,-0.44943735,0.034124617,-0.6339958,0.33015913,0.020815361,-0.2765043,0.38577425,0.15595043,0.027631382,0.040224753,-0.01768757,0.14541733,-0.4708798,-0.24734536,-0.39278972,-0.48199952,-0.5440333,-0.37622434,-0.10241479,-0.5900286,-0.31322426,-0.29211038,0.23571919,-0.32991308,-0.2923174,-0.08883393,0.27062437,-0.40677333,-0.04412815,0.09243725,-0.33076382,0.19632849,-0.7505573,-0.12856664,0.010970684,0.007284304,0.1311074,-0.012340706,0.32016176,0.10452208,0.49164963,-0.018075872,-0.21822041,-0.50293165,-0.3083392,0.2736554,0.39938825,-0.23287353,0.12043981,-0.20503001,-0.07267678,0.2817236,0.32401255,0.12673305,-0.14078118,0.010554073,-0.09166114,-0.3290636,0.21088655,0.42958653,-0.46950623,-0.02103012,0.4007595,0.37497655,-0.025097057,-0.31356812,-0.00794635,-0.16159946,-0.20467764,-0.17220981,0.126777,-0.03734836,0.32059813,-0.10688779,0.24308217,0.54408187,-0.10396954,0.058880776,0.026598662,0.053071566,0.24470878,-0.28177205,0.06912401,0.25259757,-0.5748671,0.01661909,-0.25792524,0.456558,-0.17926617,-0.63737273,0.28171873,-0.29410195,-0.045551974,-0.017917272,0.53410155,0.5258569,0.55747956,-0.13769445,0.74787945,-0.4464631,0.021157324,-0.21199396,-0.018144138,0.1786832,0.06300393,0.13664894,-0.48206708,0.1454192,0.1531747,0.05913563,0.033508763,0.3748241,-0.34728172,-0.1285908,0.41891253,0.8031242,-0.26942632,-0.026728861,0.3958882,1.2511177,0.7885973,0.027264904,0.88426036,0.20985249,-0.17918696,-0.14555204,-0.1913197,-0.55964303,0.0570346,0.29204595,0.538184,0.2743225,0.0028282963,-0.09206672,0.2645228,-0.16197842,-0.23589441,-0.13968009,0.41863286,0.18088391,-0.013204031,-0.299223,0.05427642,0.22157636,-0.04592854,0.17706427,0.26636246,-0.10234112,0.42362225,0.009493202,1.0112957,-0.076740116,0.14915211,0.17401057,0.27743542,0.22050786,0.19895901,0.09844285,0.5972004,-0.03437377,-0.053419802,-0.45727456,0.061832882,-0.20481771,-0.59361935,-0.09768124,-0.30783135,-0.18076563,-0.07954032,-0.14258817,-0.19797,-0.04556703,-0.48098737,0.29558164,-3.025577,-0.025128514,-0.07397397,0.18337575,-0.1818842,-0.19153866,-0.066401824,-0.24605708,0.75757146,0.31951383,0.33879095,-0.28953847,0.23511389,0.5387864,-0.38622296,-0.15712552,-0.49350518,-0.03929569,-0.1726613,0.59614706,-0.023025893,-0.30937794,-0.102935374,0.048235364,0.387283,0.095176965,0.16292405,0.31224754,0.29471976,-0.087188244,0.14178893,-0.08171085,0.48498374,-0.3157231,-0.16099232,0.2651257,-0.34875965,0.33712274,-0.3130768,0.17923848,0.30854973,-0.09984064,-0.3679533,-0.28892183,-0.10181306,1.3254973,-0.30167747,-0.603129,0.22274832,-0.063371435,-0.17789178,-0.016224688,0.3460366,0.009070776,0.1494681,-0.515647,0.16803701,-0.12642303,0.18834482,-0.09831607,0.16162124,-0.48206654,0.52358115,-0.073128775,0.53220063,0.5434134,0.29653513,-0.24129927,-0.25521606,-0.0013942011,0.60293025,0.3987798,0.05889923,-0.12540118,-0.18089288,-0.010468738,-0.30864665,0.2183196,0.4228442,0.5975698,0.0038755313,0.09878507,0.2866686,-0.22889343,0.079104446,-0.06066725,-0.32373816,-0.08053222,0.18544501,0.36328503,0.41418824,0.0042748414,0.2960511,0.13535263,0.42211068,-0.16752386,-0.37818378,0.29087582,0.4652602,-0.25073248,-0.21237126,0.556552,0.5630536,-0.19096714,0.52243024,-0.63598317,-0.4416843,0.47081572,-0.23049095,-0.46657217,0.024275722,-0.4091333,0.083410606,-0.7228326,0.23245206,-0.351872,-0.50925684,-0.6561074,-0.13387944,-2.7164624,0.08329633,-0.38410327,-0.060329918,-0.0985623,-0.02804397,0.27762556,-0.50821376,-0.42160282,0.15949118,0.12843543,0.4085608,-0.073726535,0.04743453,-0.40458485,-0.25589478,-0.06439574,0.400484,-0.09967508,-0.061161265,-0.2408325,-0.39427692,-0.0076264106,-0.15660846,-0.14315712,0.016656598,-0.32298613,-0.14381975,-0.1273867,-0.2593894,-0.06586513,0.52105266,-0.49353272,-0.13610236,-0.280106,0.12491135,0.09689696,0.08311102,0.101534955,0.19971758,0.22821885,-0.035364307,-0.009327058,-0.3654198,0.20777915,0.11410044,0.17592219,0.5792609,-0.07061359,-0.028165098,0.45745692,0.3115149,0.07282844,0.731707,0.1752784,-0.13477163,0.33299482,-0.30725688,-0.13760602,-0.5439982,-0.25910494,-0.0043527465,-0.3622873,-0.6200979,-0.06486114,-0.3030844,-0.68643135,0.51819503,0.13736218,0.20775734,-0.17666599,0.40495935,0.38292456,-0.2164889,-0.036125265,-0.07376619,-0.124203846,-0.19363883,-0.3154999,-0.8561436,-0.42838377,0.21066082,0.7807957,-0.18043023,-0.14175254,0.23048997,-0.07255341,-0.14170514,0.3174201,0.30202192,0.13779664,0.25736278,0.23394962,-0.5570861,0.5008504,-0.09413287,0.005632825,-0.44369197,0.054499187,0.5142447,-0.5858158,0.30884686,0.54546005,-0.0127091175,-0.12987351,-0.6853327,-0.10402218,0.18644068,-0.3290637,0.48377597,0.056601204,-0.8035424,0.53099203,0.15653376,-0.24205437,-0.6680399,0.26570725,-0.041605376,-0.11849532,0.08919494,0.39494172,0.17599933,0.029037014,-0.027550027,0.22433512,-0.3577982,0.35024822,0.05779355,-0.14063613,0.55891556,-0.13947317,-0.11501406,-0.6872059,-0.0068405606,-0.40386432,-0.19742674,0.348785,-0.013621323,-0.0030572684,0.25664294,0.010294041,0.48407042,-0.31751347,0.16679743,-0.1593565,-0.32476962,0.35328975,0.444946,0.4417795,-0.31213123,0.5887263,-0.13147861,-0.07932189,-0.041533664,0.0041816263,0.503952,0.092070304,0.35142732,-0.02143772,-0.121091396,0.20124,0.7716148,0.22724058,0.25761038,0.101456136,-0.17937809,0.47128436,-0.035573386,0.020761399,-0.12547764,-0.42414856,-0.14505233,-0.11423315,0.24010831,0.32830143,0.20734368,0.7167977,-0.11754075,0.037057456,0.07411211,0.17390627,0.12890099,-0.33380708,0.25111282,0.21515237,0.58247185,0.48421097,0.30147082,0.18020424,0.5699954,-0.26872844,-0.022003613,0.38356176,-0.10076984,-0.3214583,0.52637976,-0.5445144,0.36967528,-0.19444564,-0.025126029,0.17975211,0.023003966,0.49459207,0.85079,-0.16313177,0.08412254,0.07079804,-0.3678566,0.18570213,-0.12586778,0.0944083,-0.06739667,-0.2933085,0.47389334,0.22047243,0.3380614,-0.11949715,-0.08713882,0.34224182,-0.09288584,0.43658316,-0.024958227,0.06393113,-0.18365757,-0.30189383,-0.38006142,0.47978914,0.050068058,0.18914124,0.10798957,-0.10503256,0.26816344,-0.09980441,-0.17280585,0.16625303,-0.34800422,0.2021932,-0.060179688,-0.5911813,0.54582715,-0.0047996193,0.17956385,0.057572864,-0.024748445,-0.13891259,0.14852703,0.0902397,0.4355805,0.028677478,-0.24974447,-0.16134614,-0.31774867,0.052979667,-0.1785845,-0.062065963,-0.0968163,0.26946804,-0.6803736,0.31208742,-0.49387267,-0.0865885,0.15658917,-0.4008518,-0.0362384,0.31313112,0.015542293,-0.15303671,0.18163908,-0.09721348,-0.49219665,-0.35268387,-0.36886817,0.09046849,-0.31631574,-0.032657005,-0.2995785,-0.24824613,-0.14515033,0.22919147,0.043923184,-0.095587865,0.28962418,0.036212876,-0.46768615,-0.05880662,0.14409402,0.28281948,-0.17292026,0.2699666,-0.0051728636,-0.45708564,-0.39319092,0.17608795,-0.113111064,0.29766616,0.10423183,-0.46379825,0.7892918,-0.21083863,0.7832257,-0.05102635,-0.3973176,-0.06996818,0.44569722,-0.1588532,0.005373027,-0.2604872,0.8932131,0.7292038,0.031110862,-0.13751431,-0.49901015,-0.043487437,0.38214874,-0.23686174,-0.10919866,-0.12371953,-0.58347225,-0.26235667,0.20235597,0.1803043,0.09667853,-0.08810265,0.030656569,-0.08440078,0.37121636,0.11572716,-0.47891644,-0.14799239,0.4660976,0.12940873,-0.069480285,0.20495173,-0.24337229,0.3130495,-0.65969986,0.23920652,-0.3838815,-0.094065435,-0.14326364,-0.15240312,0.10414946,-0.12375434,0.16131714,-0.09608534,-0.3736477,0.051424053,0.087436125,0.13684136,0.3505506,0.56447864,-0.17748988,0.0478027,-0.1214838,0.4538948,1.0501447,-0.17878443,-0.14872153,0.2038573,-0.38358426,-0.7419558,0.15566641,-0.5418744,0.1048485,-0.073789544,-0.3764608,-0.24871387,0.08406195,0.039525643,-0.07020205,-0.04942538,-0.37300617,-0.14193776,-0.13314588,-0.3313177,-0.12220247,-0.022647634,0.06896675,0.7868507,-0.25806218,-0.08060556,-0.078663155,0.406209,-0.38151598,-0.61988497,0.2599022,-0.24708986,0.3126127,0.30149892,-0.21119127,0.12639016,0.1463127,-0.49980068,0.0878272,0.42743087,-0.28470936,-0.09064569,-0.41285247,0.29564333,0.5098629,0.032199915,0.01704146,-0.40726417,-0.55506825,-0.6341671,-0.30475536,-0.043854143,0.11762758,0.059159577,-0.3605886,0.15985402,-0.2899274,-0.094235614,-0.045414183,-0.46089244,0.3654409,0.21462926,0.39273617,-0.3998772,-0.6130321,0.04231862,0.08087593,0.018357275,-0.43560702,0.37346503,-0.24886008,0.7494708,0.055317663,-0.17112225,0.2092053,-0.5674744,0.3334339,-0.34998786,-0.25757757,-0.489693,-0.07785864,676 +89,0.37982118,-0.07709753,-0.33854297,-0.1715903,-0.34810138,0.071222395,-0.13136789,0.123055995,0.1950868,-0.2468229,-0.12120074,-0.06302686,-0.02662203,0.3004724,-0.037354954,-0.6757457,-0.14564522,0.16839218,-0.7333292,0.38527542,-0.55171067,0.40550297,0.0763938,0.15564951,-0.04555542,0.42425895,0.22058563,-0.25214612,0.020046424,-0.05262924,-0.2026058,0.33089548,-0.4895789,0.09275991,-0.21762916,-0.14044535,0.045823347,-0.36623532,-0.33504874,-0.5464639,0.113079324,-0.7622893,0.45162177,-0.013152067,-0.11066879,-0.10762702,0.22760776,0.35635433,-0.28693354,0.09767128,0.29403707,-0.15230995,-0.13004944,-0.24381346,0.032662425,-0.31079155,-0.36263695,-0.079965875,-0.5785965,-0.3242937,-0.13587347,0.14073968,-0.33123878,0.041852854,-0.09731744,0.31453013,-0.32509357,0.06379337,0.33666968,-0.27673092,0.14979379,-0.36630884,0.18595636,-0.039266724,0.53909904,-0.020092651,-0.12147367,0.39299268,0.35135278,0.4766144,0.21279827,-0.27273896,-0.118159726,-0.22385827,0.17131004,0.43106925,-0.18261747,-0.27191615,-0.17474735,0.14873177,0.08476204,0.32157445,-0.16650961,-0.3074196,-0.05566118,-0.04645703,-0.2854431,0.45515996,0.50663847,-0.2898266,-0.40340778,0.31013978,0.5546513,0.32142586,-0.14623335,0.024747163,0.06275528,-0.507809,-0.23999469,0.2100685,-0.042967327,0.40977526,-0.07861063,0.17135927,0.81640553,-0.12141087,0.037651822,-0.00070381444,-0.18630253,-0.11777712,-0.15229851,-0.019212129,-0.039227497,-0.6323531,0.026760101,-0.15713134,0.76392007,0.16398193,-0.7629423,0.5151174,-0.5927511,0.17678815,-0.0986567,0.6404751,0.73843336,0.35494143,0.20001878,0.78493893,-0.3680464,0.16555038,-0.20794925,-0.48674357,0.07015425,-0.09406519,0.12425734,-0.4801022,0.06635829,-0.16916503,0.14356431,0.002922684,0.10548652,-0.5415374,-0.060807742,0.20130707,0.8999816,-0.3739133,-0.0011596903,0.5004649,0.9661416,0.8242001,-0.042513836,1.0496411,0.22835736,-0.22325553,0.26064804,-0.46693882,-0.63045204,0.137135,0.34177652,0.24922985,0.22226912,-0.053460345,-0.007919442,0.24222434,-0.3480296,0.07006271,-0.122677445,0.33911756,0.12271696,-0.019533778,-0.28888822,-0.11104825,-0.01335609,-0.08824544,0.10452741,0.22579046,-0.18395244,0.25355154,-0.026774146,1.3232933,-0.007380694,0.11957373,-0.019518185,0.4523924,0.22745459,-0.075201,-0.077617235,0.43008167,0.43969846,-0.035295483,-0.5637457,0.25361592,-0.3346171,-0.3416956,-0.09351346,-0.42602354,-0.063232765,0.19598156,-0.34680602,-0.067702174,-0.08375108,-0.25496647,0.55505365,-3.0498176,-0.27279803,-0.10485472,0.3125857,-0.3322919,-0.15789765,-0.08135407,-0.49179986,0.17989752,0.24679914,0.4094379,-0.59121674,0.60339785,0.45265394,-0.44393855,-0.20687473,-0.5980971,-0.093967944,0.0061132153,0.44491073,0.031052731,-0.0365403,-0.21772829,0.19806226,0.5472902,-0.020302016,0.031517178,0.37768185,0.41205883,0.2409233,0.6329349,-0.06709157,0.53106254,-0.29577103,-0.14749286,0.34724188,-0.20549892,0.28197873,-0.12207692,-0.027126247,0.39602047,-0.38899854,-0.83156836,-0.62327933,-0.4207649,1.0864427,-0.39142042,-0.2537859,0.19023395,-0.18928792,-0.08878748,0.073302805,0.5021534,0.04582747,0.06810961,-0.58497506,0.16236746,-0.041810248,0.18051445,0.07836921,-0.124567226,-0.2500604,0.5898016,0.016080115,0.5931258,0.22553146,0.20787993,-0.07351036,-0.33274916,0.06327239,0.7386367,0.26251695,0.024458915,-0.10269265,-0.35818693,-0.10257081,-0.07764049,-0.00031412765,0.50580895,0.66149724,-0.037472963,0.10784461,0.35800937,-0.12440752,0.07799218,-0.1533094,-0.15405065,0.0403639,-0.018981017,0.33952945,0.59241736,-0.12871212,0.43486476,-0.06703306,0.13576323,-0.11307578,-0.42977327,0.6338638,0.52698046,-0.20373997,0.02217282,0.385205,0.42743832,-0.3047408,0.45952874,-0.6154651,-0.20052132,0.58987904,-0.22800693,-0.37589538,0.21402222,-0.26904362,0.10456468,-0.76992226,0.32457083,-0.3088532,-0.39568612,-0.4221987,-0.062135592,-3.6835623,0.1479002,-0.12796268,-0.09355305,-0.19458096,0.066695675,0.33984652,-0.50780547,-0.37570623,0.10598159,0.23002447,0.5043669,-0.026901131,0.11844691,-0.32569933,-0.11346914,-0.15772645,0.19229439,0.041214507,0.28608558,-0.13930658,-0.3933583,-0.01442419,-0.09600888,-0.37686545,0.2735293,-0.4512845,-0.34390652,-0.08245246,-0.39758217,-0.17140497,0.5787957,-0.39060616,0.020608712,-0.30359843,0.0932492,-0.30024883,0.24462,0.24727547,0.13300449,0.10773358,-0.050993256,-0.07698069,-0.39710176,0.57074213,-0.030200616,0.40198445,0.13134365,0.16660437,0.09418983,0.49976027,0.43243906,-0.116039775,0.8926234,0.34436923,-0.063583694,0.31252068,-0.30840522,-0.21910548,-0.4134336,-0.41984627,-0.07878409,-0.3725609,-0.5127443,-0.050223377,-0.2804713,-0.75492114,0.5034357,-0.0076208897,0.24760503,-0.08888321,0.18605985,0.34303904,-0.23720598,0.048591822,0.023621585,-0.22117437,-0.52190965,-0.29298288,-0.582621,-0.44114494,0.13792714,0.7409322,-0.32765836,0.054480016,-0.18692684,-0.15269494,-0.11012219,0.00040967762,0.18246856,0.44804075,0.38014245,-0.20746604,-0.57689506,0.43329534,-0.14428683,-0.106687956,-0.5271739,0.0008007996,0.5774872,-0.74398565,0.5847413,0.21847057,0.02654368,0.04146245,-0.43328428,-0.28413448,-0.014634261,-0.22409712,0.33770585,0.03533254,-0.787796,0.4335264,0.23027392,-0.3663908,-0.64719045,0.34079885,-0.034317546,-0.27142704,0.004240051,0.2185297,0.2328592,-0.09537899,-0.1180029,0.19076124,-0.41464475,0.25381663,0.13802807,-0.09953254,0.25398713,-0.14701095,-0.3496906,-0.5943498,-0.07461906,-0.43376786,-0.25359342,0.26917177,0.030085558,0.102157995,0.07188378,0.07092872,0.40224224,-0.18954602,0.08794294,0.10567128,-0.3137324,0.25526094,0.42756766,0.35971445,-0.36157632,0.48747203,0.15487596,-0.11400078,0.11588254,0.11304568,0.41993806,0.027668945,0.278585,-0.08219105,-0.1458214,0.4175868,0.7981426,0.17604661,0.27100313,-0.036306348,-0.0747734,0.50141937,0.012459982,-0.011769969,0.13534462,-0.43167013,-0.113398075,-0.016063713,0.22060227,0.41885093,0.28144786,0.28669256,0.08801675,-0.2252883,-0.04063096,0.19712126,-0.12176185,-0.98279387,0.3664787,0.3179094,0.7740471,0.3705613,0.11485772,-0.11089615,0.6835807,-0.25794232,0.13864276,0.34004217,-0.17601006,-0.49512324,0.6368632,-0.60417885,0.4483178,-0.10110029,-0.114725895,0.14095686,0.030996453,0.32812458,0.7805109,-0.1615634,0.06224469,0.010046776,-0.23872936,-0.051924214,-0.2863209,0.012656301,-0.43648976,-0.35354346,0.57767224,0.3440897,0.2837961,-0.20544252,-0.012130609,0.08567283,-0.086755954,0.13104628,-0.09537832,0.011430226,0.106660455,-0.4867038,-0.16846664,0.57798594,-0.10586101,0.116484515,-0.17878169,-0.1989371,0.19077215,-0.20655492,0.026476935,-0.108669475,-0.47626638,0.11149041,-0.18667941,-0.40255117,0.4330927,-0.26191026,0.2310602,0.2012082,0.053231154,-0.19587429,0.49470505,0.11235217,0.71465945,0.016847193,-0.1799069,-0.45572025,-0.028881334,0.17332172,-0.2524835,-0.08368933,-0.47150502,-0.08363269,-0.570464,0.48775828,-0.20359482,-0.37805974,0.1809429,-0.2720329,0.068914495,0.5730658,0.00734747,-0.1248095,0.04369589,-0.18669567,-0.46287423,0.01164645,-0.20672551,0.29359984,0.32291284,-0.028190542,-0.12593597,-0.33489743,-0.16663623,0.4571848,0.122026145,0.33081365,0.15034777,0.023966186,-0.027132204,0.021390911,0.22473454,0.38079432,0.19843888,0.14024974,-0.38584206,-0.2835345,-0.2626908,0.12201133,-0.13189265,0.23748955,-0.03711687,-0.37170354,0.72402465,-0.03904944,1.1083126,0.22126,-0.15561578,0.09895687,0.47561917,0.011032652,0.15572786,-0.41809338,0.71047974,0.50649995,0.064054586,-0.10727063,-0.44988033,-0.0631767,0.17303689,-0.31246987,-0.016984664,-0.061909158,-0.5982604,-0.3419608,0.21102941,0.17840518,0.1482251,0.04100154,-0.23592475,0.02212803,0.08808455,0.4076923,-0.52249414,-0.20583321,0.24577416,0.21591213,0.0007219147,0.12686235,-0.34946936,0.49857864,-0.6073402,0.08234299,-0.38991195,0.10418305,-0.2649904,-0.30023178,0.13750781,-0.044027086,0.31472754,-0.18953675,-0.40881458,-0.09037019,0.39382976,0.055299547,0.14867483,0.66908157,-0.18550414,-0.03239607,0.053733528,0.52483857,0.99663967,-0.34837127,-0.0371373,0.29276824,-0.3768697,-0.5236383,0.31903124,-0.3823134,-0.062140547,-0.029954728,-0.4405868,-0.24399212,0.3499598,0.11241639,0.18767007,0.05067726,-0.5155689,-0.109979965,0.23761122,-0.2300967,-0.30448717,-0.17259733,0.3666478,0.8534839,-0.30868757,-0.23664156,0.09252699,0.295493,-0.29285818,-0.5143206,-0.0892115,-0.1538049,0.27252364,0.18544875,-0.20636511,-0.052762818,0.19522563,-0.39628017,0.10349934,0.27997524,-0.35594857,0.10977813,-0.078280136,-0.092392266,0.87771404,-0.22551097,-0.13842815,-0.6233359,-0.42514664,-0.8309176,-0.40923363,0.24513812,0.3219286,-0.04168664,-0.2780077,-0.027458757,-0.015936313,-0.16645882,-0.012097535,-0.57509255,0.39570284,0.059609015,0.44936103,-0.27821916,-0.84177774,-0.022452708,0.09659156,-0.14491996,-0.6594196,0.55608183,-0.26541305,0.8917122,-0.015741525,-0.14540862,0.061454527,-0.3607785,0.09316553,-0.45939124,-0.19708711,-0.8584098,0.12651783,706 +90,0.5338311,-0.12789077,-0.42834195,-0.10513975,-0.3129265,0.068509415,-0.093813166,0.4929866,0.14777862,-0.29456767,-0.17980894,-0.091091946,-0.0025065723,0.25435743,-0.12133292,-0.5370038,-0.007936306,0.13608818,-0.46827084,0.681625,-0.40286532,0.32325676,-0.09331531,0.20567471,0.06591655,0.2959761,0.1186592,-0.20903614,-0.12083696,0.0024147015,-0.21603954,0.21856654,-0.5690762,0.23792616,-0.11452717,-0.2736864,0.13607247,-0.28657272,-0.33695912,-0.6480641,0.22058119,-0.5411328,0.4584716,0.056957603,-0.20081109,0.13361886,-0.0631275,0.34233138,-0.31349486,0.11702332,0.23446816,0.057474058,-0.04955449,-0.11124918,-0.17093532,-0.45126092,-0.53314203,0.023305327,-0.33009952,-0.11635086,-0.18421385,0.10234238,-0.30475104,-0.12598862,-0.18138762,0.36853886,-0.5106847,-0.023444148,0.21271153,0.0028255172,0.2741217,-0.567102,0.034656305,-0.16475663,0.25370955,-0.19823101,-0.2496726,0.3232701,0.3199147,0.56306297,-0.012404431,-0.2301149,-0.20516849,-0.117783606,0.24371812,0.46145502,-0.12576644,-0.6136813,-0.08885108,0.024294876,0.19976385,0.123813435,0.0070327288,-0.45722598,-0.06585335,0.13490665,-0.15130673,0.26848274,0.45597082,-0.310337,-0.28970075,0.39019352,0.7102686,0.19255795,-0.024395507,-0.045379907,-0.06782378,-0.49475,-0.2541993,0.17229697,-0.2839024,0.48558939,-0.11353946,0.13302413,0.58163977,-0.16365324,-0.060063116,0.2043288,0.01843375,-0.07197831,-0.1456249,-0.32323325,0.0709868,-0.5835634,0.04106815,-0.062176343,0.66531,0.27688715,-0.78630376,0.32830432,-0.46449175,0.17443861,-0.18903594,0.5441974,0.73507416,0.3945425,0.246601,0.8044486,-0.52887267,0.18236019,-0.028265618,-0.39207286,0.15629983,-0.21786109,-0.20704052,-0.6054013,-0.03706599,0.028705683,-0.13459022,-0.036116708,0.11456406,-0.65964586,-0.0025629066,0.026861005,0.76846135,-0.3282353,-0.019689284,0.5463315,0.88317215,0.973319,0.09144756,1.2851807,0.11699591,-0.29506811,0.2802503,-0.47910726,-0.69703823,0.21123901,0.40820125,-0.30116463,0.30703583,0.060837872,0.02499117,0.41069242,-0.44280884,0.09567462,-0.18965127,0.39348248,-0.004428182,-0.18866915,-0.34602025,-0.27442825,-0.056360178,0.12693283,-0.114995,0.3844476,-0.23340556,0.12077355,0.100050285,1.6938524,0.0017431863,-0.0119689265,0.05217155,0.40053236,0.17037517,-0.1533505,-0.12002069,0.32271355,0.36050987,0.16415668,-0.5157261,0.087714255,-0.27971518,-0.5399605,-0.12832364,-0.26964143,0.060983192,-0.077087656,-0.34896883,-0.0715854,-0.07125488,-0.17623194,0.6847477,-2.6617632,-0.101670936,-0.12406626,0.16270041,-0.31769508,-0.36954004,-0.13209246,-0.59922993,0.32004738,0.3226368,0.54285836,-0.789596,0.3076424,0.25867522,-0.5095018,-0.014753934,-0.660982,-0.12294578,0.03639877,0.34495145,0.0943556,-0.06053768,0.0023720562,0.11297977,0.39576373,-0.05007297,0.06758695,0.16796014,0.35594946,0.19633721,0.4276132,0.02474337,0.5270604,-0.12879032,-0.073758006,0.34354958,-0.22156194,0.32761195,-0.15652613,0.046560436,0.329766,-0.39955738,-0.8847754,-0.7521204,-0.21128732,1.0952585,-0.14086075,-0.35333228,0.2347568,-0.2743016,-0.13844034,-0.16449147,0.25402707,-0.16685158,-0.17603451,-0.80583894,0.20064606,0.032924697,0.16429038,0.013335751,0.0034360262,-0.33961084,0.5731243,-0.021353358,0.4774146,0.43792656,0.10193079,-0.008547984,-0.4105692,-0.059081424,0.9092526,0.4724045,0.07422369,-0.122973494,-0.13282758,-0.44117904,-0.038602646,0.08751778,0.4363521,0.75356346,-0.096320644,0.035893116,0.29416257,0.05837003,-0.015750099,-0.1598733,-0.40510637,-0.020810515,-0.060821578,0.48487648,0.6031858,-0.29294837,0.46444184,-0.09007314,0.09531483,-0.0051758923,-0.5730043,0.60595995,0.99929404,-0.20387754,-0.13987736,0.46156722,0.43535417,-0.25190908,0.4568776,-0.57961154,-0.18314077,0.43322,-0.1015097,-0.2713416,0.1505304,-0.32392538,0.17937031,-0.8082393,0.47138906,-0.28624582,-0.4596148,-0.46110773,-0.07974216,-3.000403,0.22888671,-0.25360882,-0.12899132,-0.0057604834,0.046802957,0.15173082,-0.59490025,-0.60047925,0.24739194,0.136198,0.54714155,-0.056323852,0.031486776,-0.16596062,-0.26141846,-0.3640299,0.08906753,0.06991436,0.34729517,0.0034742206,-0.53087366,-0.14083478,-0.20038882,-0.3938445,0.1651445,-0.6350508,-0.41685617,-0.17239232,-0.5695923,-0.36565512,0.70285434,-0.25087568,0.002836932,-0.17226101,-0.012580998,-0.13035476,0.3315093,0.08065632,0.017024072,0.00090919994,0.010050016,-0.020733885,-0.30616948,0.198801,0.113368526,0.29381078,0.30858925,-0.021642417,0.24662031,0.58388346,0.64754534,-0.051303342,0.7676703,0.63456076,-0.2895732,0.3141148,-0.40117878,-0.17663848,-0.46492222,-0.48862478,-0.18652518,-0.4828965,-0.3974653,0.074695736,-0.41270825,-0.69591963,0.33638352,-0.047259774,0.16680506,0.0030645225,0.17517796,0.54421204,-0.24696742,0.060453385,-0.09123316,-0.17399389,-0.60552317,-0.27963892,-0.6792518,-0.42521006,0.26443505,1.2126573,-0.27848583,-0.12511511,-0.02846893,-0.17604496,0.060506925,0.11801249,-0.16981494,0.1572389,0.34433192,-0.14042181,-0.6872914,0.42476177,0.009692945,0.0038916487,-0.49288154,0.1369467,0.52736866,-0.65700537,0.39293194,0.29267114,0.071658894,0.10765894,-0.46908778,-0.19043155,-0.040574387,-0.19718625,0.4338428,0.07435425,-0.61251175,0.3974621,0.3666648,-0.29710126,-0.6242873,0.51116365,0.0031591123,-0.21697521,0.029114857,0.35378337,0.10454248,-0.035113666,-0.2564329,0.23020162,-0.47204322,0.25890994,0.43833423,-0.110517785,0.13061199,-0.094242774,-0.28630942,-0.7862731,-0.11669645,-0.4742674,-0.26732764,0.23236986,0.12298706,0.08201061,-0.037166804,0.25956503,0.41144678,-0.29498586,0.10151767,-0.0016935989,-0.23688333,0.35230303,0.4114504,0.38489568,-0.393211,0.44156513,0.023766503,-0.093196504,-0.19543765,0.049252175,0.39078075,0.15827143,0.33936986,0.025883384,-0.19772232,0.31636405,0.7420827,0.21263725,0.25514615,-0.107004,-0.25556254,0.1927207,0.107798636,0.2738872,0.15021667,-0.43588364,0.05205785,0.07027576,0.19802493,0.41669214,0.22362064,0.19851668,-0.04761107,-0.29988593,0.031575676,0.116176315,-0.037094094,-1.277654,0.48400298,0.26211327,0.6894467,0.6356657,0.0033141896,-0.009561133,0.46711105,-0.17282525,0.22920276,0.41131797,-0.12866677,-0.4982588,0.45659068,-0.6340278,0.50240064,0.00054584444,0.045759633,0.080510594,-0.07785387,0.28765845,0.85398424,-0.24754754,0.04447779,-0.20064494,-0.24242783,0.15995052,-0.27496243,0.03537947,-0.6379193,-0.37481388,0.67205656,0.44974893,0.3302781,-0.088963404,-0.024429651,0.16537058,-0.15766996,0.25629124,-0.024264324,0.19972417,0.11343292,-0.6364416,-0.17124662,0.5189347,-0.24478585,0.03777919,-0.039933167,-0.16866487,0.1680516,-0.3413539,-0.017714158,0.005634738,-0.5727585,-0.047602728,-0.16670889,-0.1310648,0.60719275,-0.037628904,0.21798433,0.11155168,0.07520627,-0.27248478,0.4197775,0.06006964,0.66541123,-0.1261548,-0.16500105,-0.40060866,0.15485163,0.18933032,-0.14977759,0.048791442,-0.12447107,0.00908722,-0.60682416,0.4309718,0.10820372,-0.23480234,0.041047722,-0.24156734,0.025390686,0.5137106,-0.13802525,-0.2659763,-0.13685137,-0.12295436,-0.16655454,-0.18075933,-0.15576825,0.21916418,0.27191716,0.054710053,-0.08592764,-0.12991637,-0.1685456,0.3992925,0.059943527,0.19325608,0.19348699,0.071188994,-0.45061716,-0.21802315,0.093329914,0.3061721,-0.06080942,-0.11886223,-0.25866958,-0.35010263,-0.38133943,-0.10218012,-0.19678244,0.37834376,0.07389634,-0.2433385,0.68438065,0.08642289,1.416324,0.08768973,-0.24286957,-0.025149794,0.64342195,0.095390886,-0.032975204,-0.30082136,0.851165,0.5399097,-0.034458067,-0.2057074,-0.36783817,-0.11001865,0.11884646,-0.14604388,-0.02339517,0.018989675,-0.47845444,-0.39471805,0.31498113,0.16565982,0.16100197,0.0028891228,-0.11388924,0.1725555,0.049733117,0.2693784,-0.332812,-0.14261183,0.25904447,0.22866577,0.16632155,0.13956492,-0.5346517,0.37616703,-0.4943024,0.12761056,-0.08093878,0.18573661,-0.24108958,-0.22068076,0.19753768,0.0910486,0.27523565,-0.29251492,-0.5565233,-0.26812878,0.58790064,0.14666101,0.2214549,0.7293645,-0.26531196,-0.06811139,0.0018925071,0.4519425,0.9923396,-0.26997417,-0.09224387,0.47941494,-0.20478073,-0.5609967,0.2922341,-0.25925773,0.13901696,0.03750571,-0.27929094,-0.5865785,0.24492744,0.12444312,0.11238284,-0.00260311,-0.6582551,-0.18056445,0.11488658,-0.2565805,-0.25805375,-0.33920377,0.38419586,0.8345099,-0.49445093,-0.33854586,0.17551552,0.17265564,-0.20915763,-0.42185187,-0.1139905,-0.38543677,0.28031465,0.20975296,-0.36333388,-0.100766644,0.21526377,-0.37582582,0.095094316,0.17998648,-0.4319276,0.19295576,-0.24938154,-0.08772221,0.90262914,-0.18651468,0.13873887,-0.38177016,-0.3157933,-0.8011882,-0.31241888,0.44313532,0.19945167,-0.0377519,-0.62653553,0.0051639993,0.059038144,-0.01955675,-0.121219814,-0.30600208,0.53418106,0.08818586,0.27310246,-0.09472078,-0.83522576,0.039754186,0.093709126,-0.10277929,-0.4642893,0.4671207,-0.047380608,0.8166529,0.07659845,0.12025292,0.26293027,-0.4646215,-0.0688921,-0.2728821,-0.14038223,-0.65191567,0.10299489,709 +91,0.53986394,-0.08075051,-0.4590187,-0.15899879,-0.15310761,0.1505641,-0.06861146,0.24434295,0.14985977,-0.40129787,-0.085126445,-0.105104305,-0.0046487264,0.1912403,-0.12397395,-0.71633446,0.055533618,0.073972434,-0.64935476,0.62835056,-0.4757581,0.38485712,0.118415624,0.11320983,-0.101889804,0.39239419,0.2172544,-0.2746275,-0.033295587,-0.07370074,-0.11037718,0.1199428,-0.7403848,0.2604224,-0.025576323,-0.18228672,-0.03398156,-0.3174897,-0.30679688,-0.6658803,0.27399707,-0.6660167,0.38374245,0.081681415,-0.23912391,0.23261802,0.03797195,0.29577732,-0.3653935,0.1769008,0.23939231,-0.033719227,-0.2039703,-0.12976086,-0.005405806,-0.4727711,-0.53940016,0.04853073,-0.520408,-0.19568506,-0.21372889,0.16375314,-0.38073546,-0.017341927,-0.09316558,0.32994804,-0.37680006,-0.018173505,0.30313605,-0.1443297,0.23196626,-0.41884387,0.08783822,-0.0986494,0.26627216,-0.19703747,-0.20312482,0.20844857,0.32480317,0.5705769,0.13601913,-0.25496492,-0.22490294,-0.011026779,0.19133982,0.46113214,-0.108075775,-0.45480284,-0.19363837,0.113284044,0.028275114,0.20982122,0.026966792,-0.3690586,-0.27227315,0.074661784,-0.2237764,0.34042698,0.569846,-0.3866827,-0.34292838,0.5281471,0.5858989,-0.02448722,-0.007877411,0.1267129,0.037502483,-0.5416759,-0.1807951,0.24679206,-0.15903056,0.40988842,-0.2051729,0.1463302,0.66298306,-0.29423088,-0.071386695,-0.004394075,-0.10344204,-0.03926252,-0.11151357,-0.029525258,0.13275379,-0.55657715,-0.0033697896,-0.32445562,0.73830265,0.23230442,-0.7844802,0.32917732,-0.4738292,0.20457497,-0.12359142,0.64901257,0.8797878,0.3739372,0.18324357,0.8710557,-0.48483592,0.12240267,-0.13838771,-0.48924106,0.2714439,-0.21913621,-0.053073633,-0.49177277,-0.013844173,0.02857349,-0.081247464,-0.08528899,0.3559619,-0.6062194,-0.09916248,0.11246572,0.6305165,-0.34277457,0.025575839,0.6596194,0.8350643,0.9137567,0.17852063,1.3712972,0.26799786,-0.22595225,0.1872786,-0.4184692,-0.77476895,0.21668802,0.3795603,0.15228848,0.12137068,0.08214455,0.008814881,0.29866016,-0.39648324,0.12719178,-0.2868887,0.40706322,-0.0548964,-0.13244069,-0.13412082,-0.08668201,-0.118522786,0.20864972,0.15053603,0.20068803,-0.20536658,0.29277074,0.085318364,1.5546718,-0.14288083,0.13643321,0.023082668,0.25436544,0.24847853,-0.19362688,-0.14347272,0.3050738,0.48438495,0.18386468,-0.60884786,-0.05449602,-0.15744683,-0.41769323,-0.19895887,-0.33108038,0.026594106,-0.12149524,-0.28444526,-0.1320566,0.01635795,-0.32278198,0.58548796,-2.6498747,-0.047681794,-0.13014689,0.32289314,-0.25916222,-0.30534047,-0.21658947,-0.6009117,0.48723897,0.33466756,0.40688318,-0.77305174,0.31481135,0.2968691,-0.37139535,-0.02337366,-0.7264365,-0.0015640333,-0.08802411,0.31851864,0.02305185,-0.13253261,-0.12709114,0.105354555,0.44440812,0.019295715,0.06735077,0.26761866,0.34376055,0.18334036,0.5563463,0.11591405,0.54800034,0.000301769,-0.2248597,0.31373852,-0.3453628,0.28982165,-0.1613453,0.07424147,0.24756932,-0.51028305,-0.8653896,-0.7537225,-0.278826,1.1742209,-0.24395582,-0.26981318,0.21167651,-0.16764414,-0.2357389,-0.13081834,0.37350976,-0.09541698,-0.1381944,-0.7492807,0.14551502,-0.06845948,0.17111604,-0.03944906,-0.09804955,-0.4500432,0.75459206,-0.1286069,0.5805093,0.30310762,0.11877775,-0.07382533,-0.506079,0.055754878,1.214689,0.40099126,0.040130958,-0.08961796,-0.22257023,-0.33784413,-0.11302267,0.066968665,0.46903533,0.821223,-0.08109354,0.015188515,0.31951302,-0.075840175,0.04657131,-0.09748609,-0.24802193,-0.091184326,-0.21606322,0.58692926,0.49899185,-0.120626,0.44033965,-0.10625799,0.20707805,-0.065803215,-0.4736676,0.65038025,0.8609594,-0.06613138,-0.28922802,0.47146422,0.3111546,-0.15298209,0.43514538,-0.5119833,-0.24860297,0.30989596,-0.23740305,-0.19834432,0.1855022,-0.41640502,0.14833307,-0.8546462,0.3459983,-0.18602723,-0.41059598,-0.47145754,-0.1978606,-3.4391747,0.14515856,-0.18411753,-0.124066755,-0.034324884,0.052283436,0.29771453,-0.46361843,-0.47568238,0.23882324,0.096353866,0.655553,-0.01281083,0.12418779,-0.17433286,-0.11678934,-0.34080583,0.16540556,0.10018884,0.16606143,0.029757142,-0.31804872,0.05033055,-0.06030231,-0.2908421,0.11169663,-0.4867285,-0.4775713,-0.2565686,-0.45261627,-0.26808897,0.71625644,-0.23743169,0.05057455,-0.16390687,-0.021207524,-0.017105948,0.3462926,0.092893735,0.062876426,-0.00064065866,0.0011431985,-0.024921328,-0.34310433,0.23241092,0.0076732934,0.2828199,0.27650952,-0.19297689,0.12715891,0.39658728,0.4467402,-0.19838923,0.73107624,0.45368266,-0.07093805,0.15720834,-0.23660202,-0.16606295,-0.5485059,-0.37148798,-0.20072219,-0.5162886,-0.3745453,-0.089474045,-0.37625083,-0.78658015,0.4041819,0.022992045,0.004579097,-0.01593583,0.3408394,0.48061478,-0.008137219,0.090124145,-0.068856135,-0.15740557,-0.45050094,-0.22723588,-0.538694,-0.36245117,0.25757384,1.1082839,-0.33398277,-0.03518771,-0.04679887,-0.027530748,-0.010686215,0.07929118,-0.035645794,0.24192552,0.4712975,-0.039513722,-0.56500846,0.4932981,-0.23324981,-0.14047512,-0.72530323,0.16238065,0.50408226,-0.77303296,0.43306926,0.31975198,0.10304004,0.035107434,-0.52830756,-0.12945941,-0.057202682,-0.30091977,0.41753954,0.12404308,-0.8293566,0.5255695,0.25318238,-0.14921631,-0.72462285,0.35145968,-0.06676974,-0.30628255,0.06472479,0.25959224,0.12249889,-0.027277725,-0.3224957,0.23270456,-0.4793985,0.22612372,0.25274432,-0.0643765,0.3675244,-0.05896329,-0.30441695,-0.67335826,-0.15515599,-0.51033646,-0.21197739,0.1516038,0.06606398,0.12558809,0.17090392,0.006378904,0.53569067,-0.34881085,0.20301235,-0.03362474,-0.26844186,0.35935026,0.40364504,0.35065025,-0.43376952,0.54710805,0.06959334,-0.12457212,-0.19347505,0.12712224,0.60166717,0.12300329,0.29450065,0.013318183,-0.24201453,0.4185407,0.8706676,0.13456333,0.36574355,0.019945353,-0.25079486,0.2726605,0.13998978,0.09472589,0.10812169,-0.48817408,-0.0015833043,0.09015946,0.19405702,0.35635415,0.19835287,0.37328476,-0.050516136,-0.13546059,-0.09231987,0.18198664,0.019076277,-1.0586247,0.34785846,0.24336055,0.6959286,0.52457774,-0.039276972,-0.0042891316,0.46636087,-0.28730446,0.19290727,0.16230226,-0.19138414,-0.43900692,0.45040166,-0.8260202,0.42051613,0.02293418,-0.017121192,0.054146837,-0.019117052,0.2950855,0.98933923,-0.12491928,0.10682752,-0.16206142,-0.18159652,0.15596586,-0.32568362,0.008357849,-0.538483,-0.36694592,0.6783721,0.31191927,0.3495615,-0.09953919,0.034147825,0.04142029,-0.09091492,0.05570353,-0.04561977,0.11666518,0.072992,-0.5504892,-0.34437835,0.5055841,-0.06532898,0.12692206,0.07888764,-0.22539817,0.18870759,-0.22027653,-0.04210995,-0.18290392,-0.5318973,0.03132478,-0.18552159,-0.28295127,0.5262497,-0.17749622,0.3233898,0.20310813,0.06563277,-0.21978936,0.2230421,0.19041029,0.62619084,-0.032588415,-0.21408914,-0.472867,0.22954747,0.15391493,-0.27511707,-0.1315711,-0.31596246,0.19009389,-0.6848924,0.38245392,-0.08716407,-0.5213568,0.17517497,-0.22815812,-0.06770836,0.49026257,-0.25126272,-0.17583165,0.15216987,-0.30480233,-0.2291747,-0.10940147,-0.18034406,0.2493597,0.30998966,-0.03902881,0.005382385,-0.15190953,-0.14951646,0.33777392,0.24498925,0.31278482,0.22421804,0.1249685,-0.30859458,-0.09545286,0.2173795,0.40697664,-0.08183442,-0.1378187,-0.2580164,-0.6005149,-0.4086557,0.029701918,-0.12319707,0.3222139,0.104820296,-0.21874686,0.5731611,0.06774193,1.1194172,0.1991225,-0.3106449,-0.0021796227,0.56648034,0.07487551,-0.0068543926,-0.31647748,0.876312,0.60313743,-0.11676285,-0.10136025,-0.35224503,-0.21316135,0.17744221,-0.17429319,-0.019701302,0.0560328,-0.67438906,-0.4551433,0.23650779,0.13820365,0.15538698,0.021647688,-0.175314,0.15757264,0.03908001,0.13163304,-0.5745468,-0.107079566,0.27357668,0.16785114,0.087782204,0.17553346,-0.45778647,0.3570693,-0.42591417,-0.05598475,-0.050950065,0.13740586,0.0050539076,-0.16531193,0.2956715,0.05158279,0.41755253,-0.25826234,-0.57784635,-0.2878832,0.49145854,0.24025312,0.17600426,0.68497956,-0.28883967,0.121263504,0.04018811,0.57380563,1.2557987,-0.24885684,0.13773894,0.35749903,-0.28798476,-0.56150365,0.21174696,-0.16828889,0.082912475,-0.040160723,-0.3675414,-0.41365165,0.3119479,0.10826072,0.15100402,0.28019357,-0.67075515,-0.16347873,0.1611533,-0.32644102,-0.27197966,-0.31860778,0.2821845,0.8473047,-0.35527116,-0.20340696,0.18638559,0.22324865,-0.26996785,-0.63194555,-0.23896784,-0.27527896,0.22321978,0.14401925,-0.2472029,-0.01059968,0.17002967,-0.40277794,0.15742789,0.2497685,-0.3195174,0.08013634,-0.23404887,-0.12074922,0.8845496,-0.18116567,0.13289395,-0.5545087,-0.35928184,-0.83714926,-0.34024268,0.46864653,0.17166789,0.050673142,-0.52751905,-0.15651488,-0.078134276,0.10903581,-0.0034482717,-0.49015874,0.5418851,0.1170869,0.25669444,-0.040205576,-0.939049,0.07984248,0.009126237,-0.25298375,-0.5541346,0.5216428,-0.04483859,0.7436258,0.16108404,-0.04921398,0.32915756,-0.62196046,-0.053072296,-0.27049354,-0.13001694,-0.8422364,0.062261,717 +92,0.35732365,-0.026139062,-0.5672534,-0.040549207,-0.113085486,0.1552766,-0.09098762,0.41550335,0.31140137,-0.28606555,0.032018863,-0.08431023,0.11978653,0.3684144,-0.086631715,-0.49353835,0.010307603,0.083365306,-0.35554615,0.40184793,-0.50839084,0.24231723,-0.23529083,0.5019176,0.023756005,0.35034946,0.12995468,-0.08724341,-0.074530885,-0.07437833,0.008518428,0.567621,-0.30502224,0.1674026,0.054884814,-0.24390717,0.05243627,-0.28399152,-0.4359712,-0.6454474,0.2679549,-0.50045204,0.38104156,0.0707526,-0.30899256,0.17370239,-0.016948007,0.1754021,-0.21033615,-0.16506487,0.11232843,-0.16066635,-0.009710517,-0.30726874,-0.11740592,-0.3126475,-0.47364634,-0.0031144312,-0.43920648,-0.18623897,-0.25601906,0.10787457,-0.36432523,-0.09044704,-0.09617851,0.42524624,-0.4310317,0.14175113,0.13349116,-0.32453078,0.26983315,-0.60722864,-0.32674405,-0.012666517,0.15941107,-0.13290226,-0.2832082,0.30631912,0.32362524,0.47330663,-0.07641104,-0.044030942,-0.45774522,-0.16814783,0.114042975,0.44269326,-0.35405025,-0.5344311,-0.0375173,0.09751861,0.002522163,0.22114071,0.03753656,-0.22813134,-0.09624768,0.27838606,-0.21993536,0.41370997,0.48195988,-0.40673587,-0.28715998,0.32164523,0.4358676,0.22924009,-0.08412527,-0.009253945,-0.004267833,-0.46035498,-0.13529783,-0.117601044,-0.08027292,0.3823821,-0.10049106,0.29134938,0.6997025,-0.1826354,-0.08280133,0.045164455,0.059396237,-0.053289875,-0.1967386,-0.034793984,0.10315873,-0.26615676,0.21018589,-0.0794503,0.77811795,0.15738982,-0.62820625,0.42753455,-0.44297156,0.14977041,-0.11162058,0.51159394,0.6601743,0.2515529,0.34765995,0.7276654,-0.3629009,0.064773425,-0.093589,-0.43192416,0.13908191,-0.10540087,-0.08304352,-0.51157737,0.058634274,0.14735308,-0.08248537,0.21486032,0.38855976,-0.6264567,-0.14815672,0.1411949,0.79009265,-0.26597938,-0.14868197,0.43863878,1.001052,0.8480092,0.0016402714,0.9817393,0.10747879,-0.16935399,0.2544425,-0.4156564,-0.6432104,0.22232366,0.2690667,0.015910953,0.12909573,-0.018915124,-0.04307963,0.37969685,-0.17540479,-0.0053457525,-0.11686472,0.4595891,0.12558573,-0.065417066,-0.24046475,-0.28074118,-0.073601864,-0.13155292,0.077342525,0.3063256,-0.16208296,0.4266502,-0.028181992,1.7471281,-0.020990934,0.18199056,0.1310648,0.4687665,0.24604489,-0.13296072,0.004491331,0.37894818,0.1125447,0.11766871,-0.42934242,0.14677191,-0.2224131,-0.6159033,-0.020246062,-0.3637335,-0.080239415,0.21491337,-0.31117243,-0.14322181,-0.120640725,-0.26949987,0.50085104,-3.0222983,-0.14250016,-0.013662152,0.30532363,-0.24212146,-0.3056979,-0.153416,-0.4061711,0.2891896,0.31024924,0.47850686,-0.66884506,0.10927113,0.42521745,-0.4769271,-0.085353225,-0.43090293,-0.011983775,0.0018112808,0.3374477,0.027388796,-0.11294045,-0.11270696,0.19006646,0.48008043,-0.085030004,0.091578454,0.23316991,0.23176706,0.04923246,0.35087413,-0.08264198,0.47441697,-0.13939814,-0.2339096,0.47077733,-0.37775078,0.24855882,-0.089026764,0.019578673,0.3424895,-0.3019684,-0.8885838,-0.5087702,-0.06370035,1.1655545,-0.1387771,-0.37202287,0.33243707,-0.4380191,-0.22822267,-0.13210343,0.30145264,-0.044582695,-0.17070004,-0.73905665,0.17083013,-0.18146327,0.08767094,0.10538204,-0.046438277,-0.3337939,0.5279978,0.04297389,0.4370023,0.3407762,0.037029132,-0.25826484,-0.35955203,-0.026213208,0.66048366,0.35976595,0.242365,-0.22877583,-0.24336317,-0.21486801,-0.12829241,0.19971727,0.5864911,0.50254035,-0.044666387,0.13455148,0.3829325,-0.16076604,-0.045398694,-0.19500403,-0.22645943,0.082141615,0.008775903,0.61025786,0.6773898,-0.30457282,0.3925907,0.13276774,0.30749032,-0.10459327,-0.47511378,0.51505613,0.8775671,-0.17634383,-0.28030166,0.5384722,0.25129876,-0.34223714,0.2985403,-0.5323743,-0.22478227,0.5648818,-0.26180008,-0.37482524,0.15637535,-0.33627325,0.118947804,-0.79560757,0.2021968,-0.24338259,-0.40643343,-0.48882768,-0.14804007,-3.4264956,0.14564586,-0.3571902,-0.14792426,-0.06876867,0.0039301217,0.08312045,-0.6077744,-0.46977478,0.07754092,0.16131409,0.58479965,-0.13299981,0.09887751,-0.31980705,-0.3246501,-0.24697882,0.18231167,0.06566587,0.44429204,0.029313803,-0.4046164,0.11886388,-0.07768986,-0.36331546,0.11928174,-0.39240432,-0.59300053,-0.17329332,-0.5209592,-0.35792345,0.6209528,-0.22299623,-0.05506532,-0.14892396,-0.010169007,-0.1139375,0.24503732,0.19963324,0.024998877,0.12953368,0.012325537,-0.019145388,-0.3437646,0.1877369,-0.11759659,0.3339719,0.47656137,-0.011839494,0.0944033,0.5375449,0.58977216,-0.07929379,0.81763834,0.4279945,-0.04443063,0.2884303,-0.36632344,-0.13948685,-0.44817442,-0.31533596,-0.0040002055,-0.37647328,-0.48656204,-0.11058898,-0.3575734,-0.540346,0.51432914,-0.07868226,0.06669875,0.032465305,0.21791425,0.5578537,-0.16666336,-0.057455093,0.00891209,-0.09337655,-0.63499105,-0.2263872,-0.60359645,-0.5048915,0.31105265,0.78304183,-0.3288998,-0.05976732,-0.01738192,-0.18913133,-0.098046936,0.09788421,0.19981146,0.19645825,0.46902537,-0.11849493,-0.5324043,0.31368423,-0.11168607,-0.16483267,-0.664403,0.24734725,0.4644022,-0.5940852,0.67858136,0.21697244,0.17782936,-0.10031931,-0.5581757,-0.19788484,0.019047415,-0.25400907,0.43278983,0.1935682,-0.82895035,0.46303725,0.46278703,-0.2660372,-0.6382585,0.4636858,-0.111879095,-0.37954348,-0.15663831,0.27142403,0.1420581,-0.03209612,0.009922586,0.26614693,-0.47727314,0.24794026,0.16460836,-0.10951118,0.4675753,-0.14445965,-0.21203388,-0.68074054,-0.010281669,-0.50247246,-0.29588726,0.23859641,0.11340593,0.043989573,0.033785027,0.010602355,0.47433078,-0.32465038,0.044285163,-0.05199077,-0.10514218,0.31723687,0.38233268,0.48357517,-0.3809166,0.52607685,-0.06385268,0.006671207,0.034923043,0.080860555,0.36635756,0.090714544,0.32855347,0.05128371,-0.2865447,0.15838961,0.864527,0.057299428,0.4518198,-0.13840286,-0.18879548,0.17039709,-0.020513128,0.15848838,0.0016168281,-0.5105861,-0.063868694,-0.22263888,0.17102385,0.49766386,0.17802934,0.3088972,-0.08799396,-0.46568745,0.036912546,0.21028751,0.05166158,-1.0795594,0.24794206,0.19733453,0.77487093,0.41115302,0.07627713,0.02070231,0.575885,-0.21875621,0.12670802,0.32501912,-0.016076542,-0.58622503,0.47229794,-0.85330343,0.5241847,-0.039573908,-0.08951948,0.022879824,-0.08229889,0.30978212,0.7414005,-0.16377562,-0.043005995,0.13302107,-0.30006492,0.11759814,-0.30854413,0.025997698,-0.6098192,-0.26605222,0.5116436,0.6201022,0.26088357,-0.2575112,-0.0766379,0.09851636,0.0043527335,0.10398434,-0.034693725,0.17944996,-0.043247677,-0.5810064,-0.32547426,0.52225614,0.23657736,0.19916266,-0.04709123,-0.10648926,0.39870396,-0.10214038,-0.013162948,-0.08623233,-0.3537125,0.07013654,-0.17402616,-0.48235375,0.66471463,-0.10538012,0.35012147,0.16163696,0.108391136,-0.2657999,0.44250038,-0.039814703,0.7265091,-0.05656147,-0.053298168,-0.5125309,0.13409176,0.16025102,-0.12143731,-0.28974622,-0.2520854,-0.06793952,-0.42931363,0.4315548,-0.027452506,-0.16870195,-0.045486305,-0.15987487,0.03569731,0.43293554,0.004947275,-0.23205717,-0.14765038,-0.14714286,-0.37279084,-0.122994065,-0.039721474,0.1587058,0.14580801,-0.12520902,-0.11939211,-0.2331021,-0.09917767,0.24211745,0.015406871,0.13596842,0.33550793,0.075777724,-0.31878906,-0.13557878,0.2534835,0.44921488,0.014206018,-0.058186524,-0.18291461,-0.46509922,-0.38591918,0.10361661,-0.11711612,0.33265066,0.18445197,-0.42195585,0.5308758,-0.10786329,1.0003331,0.08316881,-0.11744978,0.033148885,0.43814716,0.019176364,0.004620157,-0.31001604,0.77368605,0.55814743,-0.11162899,-0.27212077,-0.35145822,0.015192484,0.16150527,-0.21569845,-0.10224634,-0.038979776,-0.6646232,-0.11994191,0.22480294,0.25629526,0.22325844,-0.111326426,-0.05747713,0.1203163,0.1981605,0.30604306,-0.2427635,-0.26494348,0.21908653,0.30534947,0.086219095,0.15159898,-0.40836993,0.34493637,-0.4706799,0.16856831,-0.21817867,0.14615327,-0.2386366,-0.30357617,0.17510164,-0.02895322,0.35289767,-0.23761863,-0.2944337,-0.16615045,0.26763162,0.18492849,0.06734273,0.6892475,-0.23730704,-0.06228092,0.17781958,0.4038899,1.1629257,-0.20282036,-0.14440918,0.40330285,-0.20982115,-0.6096068,0.3209344,-0.29431874,0.13035946,-0.095066175,-0.11786996,-0.5590638,0.17732057,0.19559628,-0.008251039,-0.08185841,-0.5696739,-0.14261547,0.10192462,-0.46183878,-0.09622325,-0.31697536,0.043103583,0.7243905,-0.22932842,-0.197938,0.112475246,0.33375573,-0.15645836,-0.578295,0.09040095,-0.23812039,0.35776913,0.0014884621,-0.25940478,-0.031367064,0.2147274,-0.43957824,0.12128091,0.2490935,-0.45352754,0.12329248,-0.30732682,0.0139381215,0.8680115,-0.25394425,0.33434713,-0.35092938,-0.34957558,-0.6969127,-0.20265135,0.47027212,-0.110474534,-0.017051425,-0.6589132,-0.11690049,-0.055848762,-0.29362085,-0.16113025,-0.39301637,0.4879225,-0.029805379,0.23545802,-0.11331456,-0.5854847,0.12722957,0.1353397,-0.055875298,-0.55106974,0.566871,-0.21800052,0.80774486,0.11312467,-0.006722551,0.38703018,-0.40034854,0.04407945,-0.2225119,-0.24549799,-0.58723444,-0.019007836,718 +93,0.5649487,0.019036116,-0.38470602,-0.18134469,-0.48623654,0.20612307,-0.27557743,0.055221446,0.14107129,-0.14602587,0.0025923513,0.0027708411,-0.1858235,0.22363268,-0.25312153,-0.6961601,-0.06692585,-0.0004905015,-0.6473788,0.55288476,-0.4764463,0.3705744,0.073650464,0.23663683,0.17396387,0.32255566,0.25911456,-0.05278857,-0.025952738,-0.1844051,-0.22221142,0.1087196,-0.8071845,0.38233095,-0.18724072,-0.3152445,-0.06097091,-0.34969097,-0.37591296,-0.6886885,0.27991927,-0.7555648,0.4676901,-0.22147655,-0.32454237,0.14913204,0.12493876,0.33568388,-0.27432883,0.0707466,0.30135238,-0.23599169,0.01425045,-0.07672488,-0.26046118,-0.4054786,-0.55880886,-0.073784634,-0.76522225,-0.012945805,-0.37102968,0.31374112,-0.27662095,0.06164114,-0.32789204,0.27168578,-0.37817442,0.15113005,0.16124362,-0.09376159,0.03671881,-0.42021978,0.034185603,-0.08989783,0.2657021,0.22671866,-0.07529274,0.29411036,0.24787322,0.35409003,0.2706821,-0.47816914,-0.2320638,-0.08739271,0.12187172,0.2908064,0.04350543,-0.07638344,-0.31325364,-0.046236165,0.51812696,0.41493675,-0.0024202839,-0.27432758,0.0898817,-0.11081876,-0.19770545,0.5041966,0.56568205,-0.36760983,-0.16796085,0.46346533,0.44966692,0.16500223,-0.29033542,0.17912652,-0.14899994,-0.3526364,-0.16867402,0.3337195,-0.07275012,0.38312334,-0.13771357,0.05834872,0.6745288,-0.15548795,0.030545242,-0.017933778,-0.21466163,-0.0037584752,-0.17448488,-0.0646658,0.10249594,-0.63106215,-0.039941482,-0.20792279,0.6596775,0.0727808,-0.87271696,0.2868302,-0.5036537,0.11904208,-0.094275385,0.6159462,0.78350616,0.66180235,0.011059681,0.80874056,-0.37804842,0.058567017,-0.300793,-0.34791708,0.15007117,-0.07823895,0.16527161,-0.48528558,0.020231895,-0.21754384,0.0037925597,-0.19178979,0.34016463,-0.2804259,-0.2502331,-0.105600014,0.6056276,-0.32977524,-0.0058151186,0.88556576,1.1224592,0.9901012,0.087418735,1.1138554,0.33720183,-0.009588569,-0.15609938,-0.27906597,-0.40143588,0.10194808,0.37063408,0.19582766,0.3420681,0.13336565,0.018135538,0.28612807,-0.15862526,-0.15286525,0.047394447,0.24860016,-0.050463296,-0.0007526167,-0.30734286,-0.32728374,0.329332,0.16757399,0.04496239,0.28136933,-0.1721361,0.42141834,0.24723026,1.1059468,0.10490363,0.10529882,0.024776518,0.4889136,0.26508513,-0.22790334,0.059869483,0.26351753,0.29303148,-0.11676639,-0.46740007,-0.020435093,-0.4041184,-0.27578962,-0.1495934,-0.45803025,-0.1400349,-0.040250108,-0.3536563,-0.11534679,0.04903427,-0.37806672,0.45236358,-2.6269588,-0.09358284,-0.1710214,0.2880965,-0.28910136,-0.21037419,-0.18864502,-0.54272383,0.37351882,0.27143645,0.34910262,-0.5660136,0.5642585,0.3745032,-0.54484135,-0.04475764,-0.6429056,0.04725551,-0.115097456,0.4786716,-0.10737981,-0.19409572,-0.20301697,0.23405103,0.7580404,0.28860897,0.1571751,0.33778912,0.45537436,-0.10416329,0.679407,0.057699114,0.43755478,-0.35714042,-0.033178028,0.53011966,-0.41662621,0.48310795,-0.027648225,0.13773525,0.3799464,-0.5499527,-0.76826775,-0.55786467,-0.40195808,1.3249686,-0.50944924,-0.5841,0.22562271,5.884096e-05,-0.14078824,0.23546386,0.38415217,0.008713022,0.14664288,-0.5168488,0.03673184,-0.15530956,0.11847115,-0.11143498,0.16959879,-0.41443682,0.7634179,-0.19985092,0.5030861,0.17564856,0.27753782,-0.11473106,-0.4135583,0.13861702,0.72558093,0.51517385,-0.08133374,-0.107028544,-0.23980872,-0.13833866,-0.24826494,0.15601546,0.7833089,0.4860356,-0.07826288,0.082698986,0.3884799,-0.20175497,-0.03703734,-0.20920101,-0.29463458,-0.09120535,0.0808208,0.45785448,0.64810896,0.0352773,0.2827438,-0.10242468,0.20536649,-0.10039875,-0.6849966,0.55095375,0.71838665,-0.085189216,-0.14615689,0.5022656,0.49707294,-0.1338493,0.49862912,-0.55167955,-0.41389334,0.5871562,0.025242712,-0.43648905,0.13139847,-0.28814963,-0.18992218,-0.6679511,0.19128154,-0.32294032,-0.6360723,-0.43287814,-0.09195216,-3.3591466,0.047268927,-0.07027433,-0.034428876,-0.14702839,-0.2860685,0.42898935,-0.45409447,-0.56085354,0.067824274,0.07749151,0.41540003,-0.14333452,0.20387274,-0.28782287,-0.25036013,-0.38646573,0.3472432,0.109660186,0.2435275,-0.1982795,-0.25350514,0.04474681,-0.18075615,-0.49459523,-0.116960876,-0.52324045,-0.35761806,-0.03283281,-0.35253903,-0.1765246,0.5820303,-0.3046022,0.00043409318,-0.21712103,-0.09788272,-0.07555015,0.2757977,0.13179646,0.20842865,0.15941922,-0.1509464,-0.13742076,-0.39135706,0.3820475,0.16893233,0.3443096,0.39937627,-0.0548569,0.090215385,0.3982172,0.5100508,-0.0743562,0.85372376,-0.01772771,-0.073293164,0.44692886,-0.16032179,-0.43560672,-0.7270353,-0.18944094,-0.34369603,-0.42651612,-0.39629945,-0.12685063,-0.3367982,-0.8993534,0.30128568,0.20390026,0.33968747,-0.3077824,0.20477405,0.42211553,-0.14374813,0.071116805,0.036794454,-0.33742374,-0.53091943,-0.52203614,-0.6717305,-0.55537355,0.14871758,0.9362077,-0.14805672,-0.039637834,-0.15056482,-0.19911642,0.16490935,0.06451235,0.16016577,0.0824047,0.3388176,-0.016017266,-0.5655748,0.47608608,-0.18176663,0.0072971135,-0.5001222,0.16898774,0.67253876,-0.5179667,0.51238734,0.30940598,0.1937407,-0.028509997,-0.7139653,-0.058785915,-0.0040514246,-0.17817196,0.6991632,0.34511963,-0.75829023,0.51939076,0.0595806,-0.1647985,-0.6816808,0.5487423,0.054073934,-0.13825338,-0.0008268878,0.35752785,0.205877,-0.07474749,0.023555234,0.22595982,-0.5216218,0.3067177,0.3452894,-0.0003500022,0.3579856,-0.05705962,-0.34398663,-0.5951282,-0.144532,-0.5388764,-0.28073558,0.13388264,0.0084069185,-0.009130582,0.1446821,0.01556731,0.4725564,-0.12128717,0.2912005,-0.121525556,-0.23308152,0.5815265,0.5476152,0.46349797,-0.45782676,0.54985774,0.19815229,-0.15089047,0.08241671,0.16076237,0.34079129,0.12568723,0.34491572,-0.06744801,0.007544631,0.109431714,0.46172404,0.2904148,0.29065827,0.06212599,-0.3343032,0.362377,0.07259102,0.19976115,-0.1840076,-0.5164693,-0.038204014,-0.034403298,0.15237355,0.4332032,0.03485913,0.3700495,-0.008302327,0.037828095,0.15679847,0.08025073,-0.2785405,-1.2192662,0.29149607,0.27863503,0.7889534,0.50850844,0.0862301,-0.06324131,0.5647098,-0.2626764,0.037905894,0.44705695,0.15564717,-0.24766468,0.44608447,-0.64290506,0.37531257,-0.046219334,0.013310136,0.2394107,0.22423878,0.4197309,1.0134276,-0.107671015,0.050423786,-0.07458858,-0.27660358,0.12161651,-0.1369253,0.18481393,-0.36134952,-0.44460875,0.6251592,0.26938915,0.3948393,-0.3981858,-0.15489201,-0.074822545,-0.17396078,-0.0126421,-0.096494086,-0.14876556,-0.15529302,-0.4115801,-0.35596913,0.5055376,-0.22826703,0.101956084,0.07586027,-0.20476875,0.21667227,0.016880883,0.017212667,0.047105078,-0.74165785,-0.031509332,-0.19102079,-0.26910773,0.25845155,-0.3808239,0.31794477,0.113025665,-0.088948384,-0.2618115,0.17311266,0.16907126,0.57438356,0.02653598,-0.061045248,-0.2846474,0.013776988,0.23854873,-0.29974484,0.030687876,-0.26964477,0.06513865,-0.65541905,0.27908117,-0.35642093,-0.304254,-0.002442291,-0.17816657,-0.06805365,0.4515891,-0.09284943,-0.12340194,0.23336534,0.11269209,-0.37021694,-0.19793466,-0.22618479,0.16558805,0.09301095,-0.1372897,0.12828079,-0.042018313,0.07147235,0.38046014,0.17745075,0.2395685,0.11957072,-0.11618352,-0.4785425,0.04561366,0.041985393,0.34589258,0.13942614,0.07749033,-0.2263556,-0.3873198,-0.37980497,0.48856223,-0.20979631,0.06843881,0.03707326,-0.23670247,0.73628336,0.04947714,1.0915347,0.049983438,-0.32090843,0.13180505,0.60288334,0.052124258,-0.020554608,-0.292628,0.9210286,0.6286846,-0.08430448,-0.048727088,-0.48217967,-0.26518768,0.0898331,-0.33212724,-0.3123806,-0.020512734,-0.5853983,-0.051569715,-0.048368856,0.25545514,0.019352026,-0.082146145,-0.2308653,0.26914245,0.2036978,0.60626006,-0.43530408,-0.27737427,0.37154225,0.028521124,-0.11858416,0.10403617,-0.33475527,0.42074543,-0.7218345,0.103881076,-0.3329321,0.045475796,-0.21841313,-0.2847513,0.18750836,-0.05003531,0.30789846,-0.25050324,-0.46552452,-0.17306826,0.47600362,0.29285818,0.28063577,0.6863394,-0.16552152,-0.03561819,0.05313839,0.54182744,1.0972434,-0.12580833,-0.04055597,0.27757472,-0.35200208,-0.6018586,0.06400202,-0.40168685,0.062362682,0.013763359,-0.4708184,-0.1507689,0.30226085,-0.0011880286,0.06820931,0.12385947,-0.76123375,-0.07222003,0.17008667,-0.17761284,-0.25025585,-0.20661594,0.29195276,0.81614137,-0.3302969,-0.4015357,-0.0076912753,0.28765556,-0.19171861,-0.6365529,-0.018587057,-0.22267896,0.22496155,-0.06931076,-0.27536082,0.06412883,0.3907432,-0.44332775,-0.018005982,0.12542617,-0.31971008,0.10268772,-0.12637183,-0.03134636,0.758015,-0.0009882152,0.026986867,-0.5090433,-0.53573054,-0.74280775,-0.40784308,-0.14881247,0.2827766,-0.026786998,-0.39231277,-0.11685343,-0.2747449,0.035791762,0.031420317,-0.6089236,0.3946244,0.17141825,0.4786522,-0.12067965,-0.90588844,0.078218274,0.14931384,-0.14845762,-0.4539277,0.66179496,-0.3387617,0.5978068,0.14126222,-0.06361267,-0.11631495,-0.7047264,0.22521463,-0.36159685,-0.14893138,-0.6807573,0.20608449,721 +94,0.53554374,-0.07275382,-0.55666065,-0.13828397,-0.38622624,-0.030850977,-0.13727228,0.38698405,0.1807832,-0.31815943,0.030212529,-0.049591064,-0.100306466,0.41675508,-0.14175679,-0.7048691,0.0951727,0.09350742,-0.5273644,0.6811823,-0.41134852,0.34732747,0.0032308754,0.24751404,0.18201642,0.15528733,0.14133264,-0.034391858,0.06366676,-0.08139378,-0.11190364,0.25987756,-0.46130782,0.083926596,0.09032766,-0.17778793,0.042133294,-0.37059152,-0.3091329,-0.66063464,0.227333,-0.66553247,0.49240726,0.0049619526,-0.3590607,0.14705843,0.14429998,0.30431196,-0.26062268,0.02269034,0.21999387,0.02343461,-0.1048823,-0.0033878312,-0.08999918,-0.51271874,-0.515785,-0.0884356,-0.5475311,-0.3199761,-0.371983,0.11441767,-0.39591247,-0.06345566,-0.14742035,0.5585909,-0.43004763,-0.14159521,0.15119153,-0.14272183,0.19466186,-0.6591457,-0.007422358,-0.082040526,0.07123922,-0.035333917,-0.15677723,0.32035744,0.21126497,0.5543075,0.018244991,-0.2126956,-0.2174329,-0.18384323,0.12728715,0.41616637,-0.27236184,-0.35634455,-0.11484262,0.08414819,0.21443307,0.012520131,0.054314725,-0.3943672,-0.04866772,0.1042956,-0.21821846,0.27437174,0.4938884,-0.37708727,-0.098123536,0.41560802,0.41108146,0.22031598,-0.027312614,0.11531988,-0.08944097,-0.510638,-0.114121795,0.0073911343,-0.25498962,0.29862136,-0.12180383,0.16228715,0.6292677,-0.14183648,0.04893534,0.0061546825,0.098317884,0.14333871,-0.25290743,-0.2721408,0.15883228,-0.6724042,0.1550487,-0.07346339,0.74957645,0.16863188,-0.56432486,0.28015593,-0.46612862,0.1372977,-0.13014334,0.43910515,0.7959042,0.3495526,0.1427845,0.71802676,-0.40736535,0.1210147,-0.15673004,-0.22284426,0.16545804,-0.039092593,0.08988405,-0.47408795,0.08632084,-0.06571817,-0.15763386,0.0027776216,0.36684924,-0.61303353,-0.21286163,0.21703334,0.68696356,-0.313472,0.06813881,0.53234273,0.9476842,0.91109866,0.088580295,0.96786314,0.2572341,-0.10810031,0.213391,-0.23174122,-0.5451733,0.23344886,0.40839,-0.06995082,0.19281666,0.027001828,-0.06811693,0.48315006,-0.24177164,-0.112777874,-0.33021793,0.54245126,0.09422707,-0.1996117,-0.3634094,-0.22738022,-0.011397094,0.12775902,-0.09451627,0.34878266,-0.30404565,0.07779468,-0.1289377,1.4286278,-0.12969662,0.16863474,0.18021193,0.3792048,0.36604232,-0.18615957,0.030948825,0.32857448,0.37080473,0.096246496,-0.5815942,0.08153157,-0.38783687,-0.42635012,-0.119378656,-0.3514502,-0.021098852,0.077415615,-0.4918041,-0.06761656,0.052033905,-0.17573729,0.48949775,-2.5236933,-0.24052642,-0.10889343,0.2506198,-0.2873619,-0.3146315,-0.21012223,-0.27396578,0.4015724,0.3074762,0.5388967,-0.5489554,0.4021589,0.37451023,-0.54709387,0.0397881,-0.5233518,-0.07409908,-0.05868603,0.36726424,-0.11769895,-0.19116029,-0.021484613,0.28463042,0.5933952,0.018256359,0.15183266,0.3864107,0.26317635,0.05119914,0.38731274,-0.058276072,0.3980174,-0.22021244,-0.16038886,0.33077076,-0.22835755,0.18664204,-0.03253159,0.1843484,0.40256688,-0.40252396,-1.008834,-0.4594567,-0.17692685,1.1841372,-0.3340547,-0.39847553,0.40264708,-0.1653719,-0.20094624,0.06272628,0.3949149,-0.028336948,-0.008821823,-0.77012795,0.26581898,-0.042327356,0.18358856,0.051894233,-0.066999204,-0.29162842,0.5648129,-0.1693247,0.48445553,0.33138835,0.30971295,-0.18022662,-0.42627326,-0.076422766,0.9816953,0.5776096,0.07351285,-0.19402634,-0.10569162,-0.23808394,-0.102347,0.14935246,0.37282318,0.70004404,-0.0037698261,0.058124892,0.18487833,-0.04472921,0.02330849,-0.17933379,-0.37642717,0.026985275,0.10609,0.43071947,0.44109544,-0.14220242,0.4713997,0.011319375,0.041400522,-0.10914014,-0.6018377,0.3985059,0.9182261,-0.2238093,-0.22348899,0.5931636,0.33131346,-0.15046616,0.4172666,-0.57385963,-0.25817394,0.47014648,-0.2524555,-0.37847987,0.27907532,-0.34519494,0.21813688,-0.7475356,0.37628478,-0.346376,-0.48473346,-0.5450465,-0.16744974,-3.437225,0.24606499,-0.3209773,-0.12897123,-0.13632108,-0.11805886,0.30099696,-0.5945749,-0.46988446,0.19574001,0.038117446,0.7554457,-0.031908058,0.04194369,-0.22781458,-0.392224,-0.2258251,0.12345359,0.035775125,0.26432887,0.049116187,-0.3737008,-0.09980889,-0.0317723,-0.49202263,0.13106015,-0.6187986,-0.48872152,-0.21957707,-0.5178107,-0.117019296,0.68307483,-0.18598765,0.07206261,-0.09081198,0.037656844,0.00309241,0.19912183,0.20158228,0.18317239,0.1306823,-0.07418702,-0.1260795,-0.29320508,0.12625706,0.09869453,0.28832912,0.35854936,-0.0305957,0.03693051,0.6425071,0.6147453,-0.10247957,0.82734025,0.42170525,-0.1664383,0.29342347,-0.2969393,-0.18653388,-0.5134444,-0.40402272,-0.19249323,-0.3748784,-0.44078696,-0.014335319,-0.3321572,-0.7022705,0.48563224,-0.16469295,0.20741451,-0.13226563,0.25326073,0.4462673,-0.13746658,-0.10176789,-0.09279431,-0.17592065,-0.4234971,-0.24832311,-0.5725821,-0.385633,0.18573484,1.1255168,-0.395644,-0.07045852,-0.14520276,-0.031638402,-0.030276759,-0.17523104,0.14605825,0.21314208,0.19268951,-0.051885277,-0.52664846,0.32652625,-0.13843223,-0.04730863,-0.45254987,0.1427331,0.5788943,-0.5040629,0.5091491,0.21060255,0.10495393,-0.04745479,-0.6718769,-0.11623296,0.27935368,-0.2920202,0.4396009,0.1817947,-0.73394895,0.4951496,0.4331918,-0.38216677,-0.74908185,0.41223913,0.009771908,-0.25550848,-0.048944395,0.39068854,0.23759133,0.026274804,-0.17775042,0.35057902,-0.4808018,0.2866646,0.28293386,-0.16555543,0.29541355,-0.25639084,-0.29851854,-0.6704431,-0.036957256,-0.4724017,-0.3019934,0.07938366,-6.485917e-05,0.023763765,0.098788545,0.035809778,0.5129018,-0.37019536,0.1376484,-0.11618997,-0.2868867,0.5963491,0.5310807,0.38390625,-0.21410048,0.47997707,-0.06587763,-0.09907397,-0.02330548,0.073543034,0.4288761,0.04868956,0.2952093,-0.09202597,-0.0956163,0.22931524,0.8181969,0.005960215,0.3207163,0.070847675,-0.14622962,0.17105497,0.025391757,0.039370887,-0.01628143,-0.32678854,-0.052893147,0.10334412,0.2958085,0.48646632,0.23398802,0.22613637,-0.07072738,-0.21597728,0.07027246,0.19617021,0.11339549,-1.1939778,0.40621796,0.021553911,0.6490176,0.4437114,0.08514972,-0.086440116,0.55506015,-0.108211964,0.06927363,0.26827106,-0.19938056,-0.42879915,0.5616485,-0.6110075,0.30682823,-0.08881154,0.07820057,0.047995318,0.17685942,0.3757587,0.70498306,-0.044153377,-0.06866823,-0.0153586175,-0.30175406,0.086568676,-0.21480362,0.07583347,-0.41586515,-0.44670445,0.5499776,0.33502617,0.16152492,-0.28848755,-0.07713996,0.058481183,-0.20605332,0.17479984,-0.021486402,0.055691645,-0.10508536,-0.44630516,-0.38106614,0.42104694,-0.06902467,0.15990008,-0.13994041,0.0074386187,0.141977,-0.070888825,-0.022257874,0.048347134,-0.6206559,-0.059481606,-0.39898336,-0.2884015,0.35470933,-0.23713839,0.19972277,0.07418709,-0.032120906,-0.30248135,0.4091218,0.11883522,0.65156317,-0.15489066,-0.17502102,-0.21791032,0.09990129,-0.040183026,-0.12126963,0.020253565,-0.21745597,0.0903361,-0.7684438,0.36020574,-0.09962626,-0.2113396,0.18973151,-0.21811934,0.020978881,0.4285401,-0.1898059,-0.19942336,-0.2154394,-0.25954717,-0.18704972,-0.3726924,-0.10202039,0.16472045,0.028053194,-0.031098284,-0.07527667,-0.20740946,-0.09602077,0.52518505,0.060268894,0.2496633,0.3031549,0.20508766,-0.36265075,-0.010513738,0.2561341,0.42336556,0.011538196,0.06998344,-0.30304986,-0.30810067,-0.34203482,-0.025700394,-0.23002176,0.31459847,0.057500675,-0.3862499,0.8770118,0.11365881,1.1111484,-0.15126815,-0.3508254,-0.0715933,0.43811628,-0.0808751,-0.057296507,-0.07980702,0.71323556,0.67683554,0.033700075,-0.08130878,-0.39894488,-0.22847115,0.2097139,-0.3265003,-0.040485516,-0.0022651441,-0.49167597,-0.29450932,0.20244056,0.25430226,0.06823109,-0.22582012,-0.08757959,0.17189273,0.14884093,0.274161,-0.5985311,0.011766374,0.17867623,0.25272927,0.13774638,0.2515302,-0.45450297,0.40884075,-0.6696589,0.23559783,-0.18225509,0.14431441,-0.06882042,-0.14322817,0.124893434,0.09550248,0.35679898,-0.2576897,-0.35976768,-0.1457054,0.5377156,0.0014199875,0.032425873,0.68573016,-0.22758558,0.10664062,0.062372353,0.50552166,1.0543505,-0.17509815,-0.026014829,0.2703645,-0.26749033,-0.7718133,0.23556718,-0.2905469,0.10952597,-0.0449137,-0.30438977,-0.43451488,0.2387731,0.28364125,0.15207992,-0.09119892,-0.5239353,-0.23680776,0.30045104,-0.23791538,-0.15071838,-0.22747003,0.20685232,0.7226739,-0.29273883,-0.26481467,0.007769555,0.35271406,-0.12311257,-0.63112557,-0.013234675,-0.34213462,0.36887044,0.2589171,-0.26072526,0.045819543,0.065127544,-0.49859446,-0.06607242,0.13558257,-0.26920864,0.120043926,-0.27556914,0.115200184,0.7851385,-0.050316587,0.10780145,-0.578799,-0.50861573,-0.84638953,-0.335238,0.47549772,0.11934604,0.12559715,-0.7061857,0.07500547,-0.17126974,0.057961937,-0.07909626,-0.3468098,0.38314372,0.13784856,0.28703567,-0.19610164,-0.7606748,0.054009512,0.041013803,-0.08862783,-0.4953694,0.44542533,-0.019770965,0.8398397,0.0221354,-0.026098456,0.070501156,-0.4038512,0.060120646,-0.34575668,-0.21504204,-0.61775947,0.08344785,724 +95,0.36258447,-0.11464862,-0.5024982,-0.04190451,-0.099017024,0.22180404,-0.21615565,0.22785242,0.21422726,-0.3614136,0.047709353,-0.1280095,0.063796274,0.3340906,-0.14689216,-0.49082664,-0.10332355,0.20956515,-0.5028967,0.29337567,-0.53293765,0.3466461,-0.19309883,0.19673999,-0.118144765,0.22287774,0.2212692,-0.17353337,-0.19661468,-0.141526,0.053495824,0.27075237,-0.35501856,0.13846585,0.007794981,-0.21830168,0.044457477,-0.36708027,-0.40418985,-0.58642733,0.3662802,-0.6858058,0.4783616,0.02478015,-0.21396323,0.32787812,0.1742586,0.25408468,-0.25596148,0.04205592,0.12692747,-0.2650125,-0.13807562,-0.27458537,-0.15305176,-0.25683942,-0.49126416,0.031693824,-0.4573927,-0.18707737,-0.28452685,0.13283554,-0.34718612,0.12371183,-0.21940742,0.42909533,-0.3499167,-0.04489816,0.23271868,-0.18455438,0.2064264,-0.43729308,-0.04412358,0.0146089755,0.16785097,-0.15188342,-0.058462456,0.2733236,0.043856025,0.4155084,-0.10485272,-0.16808303,-0.36019188,-0.18836293,0.21102688,0.5389224,-0.17711516,-0.46795455,-0.16009167,-0.030930206,-0.0034930836,0.09848653,-0.11007081,-0.22270155,-0.034714166,0.13301848,-0.25612986,0.28445846,0.5677743,-0.23381825,-0.13085568,0.42136562,0.54479384,-0.027430639,-0.030593675,0.020622998,0.06983255,-0.49276596,-0.1792372,0.044207282,-0.12164806,0.47086048,-0.13365895,0.26617694,0.56682426,-0.25184825,-0.07481022,-0.047209986,0.07754127,-0.07210282,-0.23349264,-0.155909,0.19522056,-0.48438144,0.039744873,-0.0956745,0.80815613,0.097847104,-0.6527358,0.42271203,-0.5017703,0.11647101,-0.025706835,0.5865934,0.5403841,0.4284451,0.24402204,0.7797773,-0.5569497,0.022491898,-0.2279123,-0.5188371,0.13185392,-0.06997572,-0.014731139,-0.38314107,0.0695779,0.20727761,-0.08070971,0.047780953,0.3799745,-0.39223632,0.013160117,0.0815521,0.708735,-0.37358713,-0.020405848,0.56566775,1.1060317,0.8747457,0.051434133,1.1727968,0.19155174,-0.27808398,-0.017633624,-0.25563836,-0.79099643,0.2418029,0.27982482,-0.24899387,0.2667447,0.1339825,-0.06296151,0.4304887,-0.46734333,-0.064362384,-0.0663043,0.3310695,0.025993086,-0.010983184,-0.42809322,-0.2270722,0.14955205,-0.08064841,0.3078837,0.30296624,-0.3044169,0.32554388,0.014998062,1.4628258,-0.04092304,0.26450202,0.16849187,0.29045054,0.07398987,-0.048705865,-0.14945026,0.28662133,0.3416103,0.23793685,-0.52362025,0.07027573,-0.15962943,-0.5215588,-0.11609167,-0.23485407,0.07310052,-0.1292015,-0.3989291,-0.06771161,-0.09160374,-0.41939163,0.42820692,-2.8553782,-0.07929464,-0.09380491,0.18158591,-0.2975747,-0.2694133,-0.081645265,-0.45272368,0.3001485,0.35792768,0.3606742,-0.59222656,0.35123682,0.3242905,-0.4047491,-0.11643581,-0.5421474,-0.04021212,-0.14700145,0.33835799,0.087818086,-0.18525478,-0.09501085,0.1796569,0.38299733,-0.25265062,0.07627121,0.29006165,0.30853012,0.10333177,0.3797135,-0.028556813,0.49033934,-0.41595256,-0.21944527,0.35983393,-0.45602274,0.13638338,-0.059043128,0.118081585,0.2699354,-0.3299283,-0.80601007,-0.4729015,-0.18427166,1.3443655,-0.36933312,-0.32305932,0.23040336,-0.21521927,-0.3628033,0.018261783,0.3125431,-0.21838364,-0.04465523,-0.80649525,0.20608896,-0.13169886,0.33834592,-0.0008546561,0.105451286,-0.42037684,0.55775857,-0.08822672,0.5972513,0.35374624,0.1613212,-0.37984744,-0.37180638,0.032675594,1.0296865,0.29963908,0.21843986,-0.1437583,-0.19352493,-0.19420089,-0.15235054,0.13923626,0.52361125,0.6923109,0.005411636,0.11092953,0.2898079,-0.06660865,0.013341678,-0.0475368,-0.18994881,0.0105933435,-0.06982234,0.58226186,0.4589858,-0.17624871,0.33696055,-0.016531656,0.3163629,-0.33918488,-0.36205608,0.4065383,0.81051385,-0.12418695,-0.28126442,0.6062896,0.62071824,-0.21554443,0.40727857,-0.5839012,-0.41968584,0.38008392,-0.3289147,-0.3526399,0.31706944,-0.23855552,0.095210895,-0.8620663,0.21435626,-0.21705341,-0.59351116,-0.60219926,-0.2343935,-3.8691654,0.10483592,-0.20768997,-0.225285,0.009221531,-0.023289923,0.23331046,-0.51332253,-0.49721274,0.05293488,0.1326924,0.56977904,0.0021073706,0.069747895,-0.23197383,-0.11185953,-0.20763099,0.09686608,0.17711547,0.20892903,0.06923705,-0.4665324,-0.048924588,-0.18584852,-0.41320294,0.06606531,-0.49822804,-0.34927064,-0.17268701,-0.4686708,-0.35045892,0.60119355,-0.39643395,0.08847548,-0.27131286,-0.018447544,-0.04792878,0.37114513,0.023842797,0.1478831,0.09701282,-0.16012739,0.027429044,-0.30087322,0.43986163,0.017794348,0.31552836,0.47964332,-0.22443484,-0.024379358,0.48843104,0.611042,-0.029234253,0.81626326,0.40761322,-0.15702857,0.33696055,-0.29885384,-0.13085939,-0.46687016,-0.3736835,0.05831581,-0.43127528,-0.3660932,-0.23326427,-0.30401248,-0.7069802,0.5652013,-0.0025435463,0.061172105,-0.09150137,0.29494956,0.33347416,-0.16502932,-0.10480157,-0.07718566,-0.1421934,-0.3193241,-0.25728816,-0.64537394,-0.3477597,-0.023686051,0.9672823,-0.077635005,0.03546987,0.040192135,-0.123904936,-0.059912227,0.044606,0.24411961,0.34350184,0.33299297,-0.018676933,-0.5744221,0.40609065,-0.30824065,-0.15777296,-0.5637599,0.05122842,0.6196518,-0.6014483,0.5198861,0.4900849,0.20099224,-0.09274689,-0.52552384,-0.17519939,0.1343238,-0.20786974,0.5096478,0.3056058,-0.82443833,0.5290935,0.41811597,-0.3628178,-0.67683965,0.44012323,0.012534592,-0.20665386,-0.019014973,0.42262256,0.0035012513,0.052898034,-0.21208993,0.14570649,-0.4200118,0.30107972,0.17681508,-0.02694943,0.4935886,-0.28519952,-0.032625377,-0.59309363,-0.11187727,-0.42338684,-0.20549852,0.000291273,-0.022846285,-0.016720504,0.20670925,-0.19872895,0.39642805,-0.36217052,0.020236155,0.029042557,-0.22446704,0.41593122,0.4013825,0.344132,-0.34028125,0.6370628,0.010100308,0.014067357,-0.25256005,-0.06622734,0.50775695,-0.009291876,0.4340055,-0.028400542,-0.095131874,0.46535003,0.7618692,0.17980444,0.41162902,0.18082954,-0.20402247,0.116810784,0.076679125,0.0639397,0.17469001,-0.41545752,-0.08516353,-0.20670253,0.22722022,0.43602908,0.17011482,0.58919203,-0.12057815,-0.30530113,0.07735092,0.1826347,-0.22410615,-1.1768008,0.4412809,0.14113836,0.6629701,0.40485808,0.10702508,0.1901334,0.5402955,-0.3004852,0.1338978,0.28543395,-0.06915792,-0.45558053,0.5493067,-0.729393,0.41179994,-0.060923945,0.017221928,0.06509212,-0.029651731,0.45323598,0.6970856,-0.00834734,0.15511869,0.005682148,-0.28418976,0.18708733,-0.24202615,0.17923605,-0.5295847,-0.17357105,0.5828157,0.35602304,0.42303643,-0.16317205,-0.1085751,0.16879725,-0.07432316,0.14869824,-0.00061010197,0.12596376,-0.074330755,-0.67222226,-0.37268102,0.5256017,0.25730956,0.13448738,-0.0594409,-0.13865748,0.2614243,-0.19149972,-0.13361621,-0.032381274,-0.39641583,0.015848873,-0.20209625,-0.45142692,0.2920051,-0.27070612,0.31792772,0.16805974,0.086452454,-0.5026787,0.20993112,0.17978086,0.77198446,-0.00441825,-0.21231861,-0.25725833,0.12633786,0.28157502,-0.09649895,-0.1418293,-0.4004107,0.07621914,-0.57267433,0.3912992,-0.22646247,-0.37473792,0.20885259,-0.2175886,0.029156143,0.57152694,-0.19898568,-0.21821116,0.039117184,-0.119739205,-0.24922685,-0.28755245,-0.26712173,0.16816474,0.100970075,-0.027746372,-0.025345653,-0.057205975,-0.15796094,0.3591733,0.0058539524,0.16069664,0.3965206,0.19477034,-0.30379865,-0.08881931,0.011846807,0.49560228,-0.008992932,-0.11929109,-0.4000967,-0.4463379,-0.28615656,0.1352242,-0.12916432,0.22387023,0.13500759,-0.308556,0.64851177,-0.035641607,0.9601319,0.09695819,-0.30827975,0.017587304,0.5002872,0.09514587,0.036577065,-0.33164927,0.94079244,0.5603367,-0.110426426,-0.21244165,-0.4166749,0.049838997,0.07857554,-0.22435978,-0.32423365,-0.0430489,-0.6323348,-0.2221707,0.29803374,0.34715793,0.10634862,-0.04811766,-0.017063107,0.18799147,0.11513614,0.29834804,-0.4333071,0.044426084,0.46240565,0.27539825,0.043920875,0.16205692,-0.41493073,0.36830646,-0.5933588,0.09233597,-0.1671164,0.10779722,-0.13934487,-0.24820429,0.27766627,0.069769494,0.27830023,-0.31877095,-0.28112912,-0.0038851053,0.39625537,0.08550016,0.08625763,0.7159241,-0.13361719,0.02121607,0.08727352,0.52823615,0.97911745,-0.30343264,0.08495772,0.3563731,-0.23835905,-0.7148569,0.17614749,-0.22471175,0.11104971,-0.11463264,-0.30798274,-0.4900782,0.34892803,0.16334742,0.016428363,0.07233192,-0.35438958,-0.16616152,0.35618132,-0.2801862,-0.30178294,-0.26134187,0.11241,0.5159351,-0.24214119,-0.320136,0.1005635,0.3911119,-0.28464645,-0.49645764,-0.1091029,-0.32335222,0.26157802,0.13169391,-0.1837214,-0.054146014,0.042131055,-0.4206738,0.24262258,0.22809726,-0.31470945,0.03151896,-0.21258692,-0.048515268,0.6733775,-0.23423654,0.1742864,-0.6486812,-0.47907424,-0.9681382,-0.2571109,0.46752685,0.027610932,-0.002342131,-0.5229809,-0.037014425,0.007796295,-0.19434972,-0.09171801,-0.51243246,0.34238502,0.118766464,0.32294077,-0.12267835,-0.6166117,-0.043100722,0.108436495,-0.28221962,-0.42943197,0.6335532,-0.11220798,0.68141687,0.018276436,0.19204685,0.45822123,-0.5227153,0.1216844,-0.19554973,-0.15238982,-0.6959627,0.07442662,750 +96,0.6793936,-0.2915211,-0.6372118,-0.15873557,-0.489976,0.07594736,-0.19162042,0.5110923,0.14286372,-0.48000348,-0.07176316,-0.10243988,-0.122075565,0.07049103,-0.09615502,-0.44966614,0.005231466,0.26359913,-0.607435,0.56067765,-0.25505143,0.28678113,0.06988132,0.33717775,0.37369123,0.11823568,-0.01022014,0.19278295,-0.021678675,-0.4093748,-0.26898348,0.36151215,-0.54249746,0.19826598,-0.09823547,-0.42056084,-0.14298339,-0.5779503,-0.32801566,-0.8098856,0.17976156,-0.87797505,0.5640793,0.026221722,-0.30854917,0.047746167,0.4255566,0.32025206,-0.017093163,0.07462819,0.22654994,-0.29778928,-0.066709384,-0.24413154,-0.13904968,-0.4797725,-0.6828843,-0.15466505,-0.44803447,-0.11592217,-0.26652488,0.27999043,-0.23818026,0.057526164,-0.21854584,0.7641783,-0.26190418,0.05275892,0.30089822,-0.09849569,0.17695157,-0.7306114,-0.11919056,-0.19232324,0.25420055,-0.06972416,-0.24915719,0.19897789,0.20829926,0.36344388,0.099571116,-0.37066805,-0.3667102,-0.094996616,-0.01221271,0.5387517,-0.14928263,-0.26771602,-0.07883831,0.025693778,0.37085912,0.34538352,0.30161577,-0.23626053,-0.12845814,-0.09093637,-0.19087717,0.44155857,0.44876352,-0.37558094,0.028558772,0.417631,0.55581784,0.1522309,-0.3561923,0.00027468055,-0.17757154,-0.50991446,-0.044765573,0.20788065,-0.25097173,0.4110956,-0.11768535,0.14471245,0.5841483,-0.09827996,-0.10666104,0.18492201,0.16392282,0.057301544,-0.37855673,-0.3418315,0.35263962,-0.36375856,0.23351929,-0.15738434,0.7874182,0.017049106,-0.6058553,0.3211119,-0.58112144,0.12287693,-0.028594691,0.39304242,0.7632587,0.48754752,0.2216738,0.71962255,-0.12512705,0.07441926,-0.053378224,-0.3003174,-0.21970244,-0.072069764,0.26140964,-0.5617151,-0.0037358124,-0.30696207,-0.086065575,0.086441144,0.86117786,-0.5471016,-0.3151215,0.32826445,0.86867136,-0.26918477,-0.08239026,0.89105725,0.9878063,1.1579432,0.106522135,0.7903512,0.108654164,-0.16259813,-0.08952261,-0.085500404,-0.43389964,0.29121655,0.40613124,0.12618287,0.20409176,0.16389298,-0.038439594,0.52423626,-0.32281628,-0.062901914,-0.08032586,0.14429158,0.047560543,-0.091348946,-0.401493,-0.2969423,0.032068603,0.14339097,0.07595331,0.2102955,-0.32832125,0.34374863,0.0014541708,1.4704139,-0.100394204,0.038874686,0.18876362,0.30752146,0.27085,-0.2176342,0.076254964,0.317543,0.32278246,0.11529057,-0.48095825,0.12052687,-0.33111244,-0.46130666,-0.2223314,-0.32620424,-0.26708117,0.06938532,-0.6178184,-0.23831233,-0.10983856,-0.3487591,0.26845896,-2.5544455,-0.15245944,-0.21527773,0.3619679,-0.235872,-0.47512603,-0.006162282,-0.46598256,0.32241404,0.29625392,0.43915218,-0.63101304,0.4773959,0.37022373,-0.5775416,0.07036298,-0.70630586,-0.1349186,-0.08691688,0.21947804,-0.06723827,-0.15378965,0.03577882,0.34652033,0.6200297,-0.04158635,0.01452038,0.3316608,0.37045503,-0.21379176,0.6710971,0.025511514,0.5372327,-0.24016613,-0.19272709,0.47862297,-0.47615635,0.06268568,0.040163923,0.12246229,0.68302166,-0.36303186,-0.84109026,-0.6903547,0.05191129,1.0539441,-0.31049916,-0.42942894,0.20753276,-0.41302884,-0.25067052,0.055176526,0.5691142,-0.011110984,0.032723695,-0.8153493,0.029483087,-0.21785273,0.12898459,-0.1650059,-0.15094823,-0.59289885,0.8553574,-0.04204417,0.7395558,0.1734389,0.25923488,-0.45083392,-0.43491423,0.03315556,0.9509406,0.49658513,0.0160971,-0.2140666,-0.08207676,-0.3685437,-0.08521231,0.27977026,0.6732668,0.4544338,-0.12020461,0.09024192,0.308541,-0.106860965,0.01083892,-0.23915778,-0.275052,-0.1636655,-0.067910545,0.5931457,0.49279726,0.09598877,0.67396,-0.081960015,0.38263083,-0.15535896,-0.47100377,0.2267618,1.180225,-0.24592757,-0.5475084,0.6047137,0.42622462,-0.235862,0.29806784,-0.65833044,-0.35058498,0.3530302,-0.13241212,-0.4609117,0.17467712,-0.3945691,0.3048194,-0.7502621,0.1372088,-0.46858537,-0.6167969,-0.7023709,-0.31790355,-2.8005865,0.32301006,-0.3619188,-0.13110827,-0.043688245,-0.3456608,0.18533996,-0.6810268,-0.47481403,0.04075419,0.10692154,0.65320677,-0.12900817,0.08421527,-0.26868108,-0.4689853,-0.19507444,0.28277224,0.16486445,0.4536185,-0.08919434,-0.2777586,0.13967231,-0.013513958,-0.334795,-0.13627118,-0.6406816,-0.56180143,-0.13880643,-0.6271131,-0.37442118,0.54384184,-0.33035654,0.23195307,-0.16680601,0.04482498,0.04749609,0.12259811,0.14721583,0.14977908,0.07464416,-0.12107941,0.11244887,-0.35936034,0.11631912,-0.04681178,0.29436445,0.11470928,-0.038898863,0.259008,0.43255597,0.59874105,-0.0794966,0.985569,0.41687465,-0.09405615,0.25971663,-0.13309954,-0.25458178,-0.71109015,-0.36895692,0.15699029,-0.46893716,-0.4017837,-0.014769092,-0.3738748,-0.8635628,0.6030845,-0.028334996,0.14262746,0.09167545,0.52960277,0.6180429,-0.31213957,-0.09110013,0.084258035,-0.2506743,-0.38557935,-0.3032935,-0.6454908,-0.504507,-0.02589921,1.1756094,-0.33569396,0.010464085,0.09135066,-0.19677222,0.038354587,0.22603033,0.06637062,0.04664711,0.56355363,-0.15096147,-0.443648,0.3735198,-0.28143585,-0.022331733,-0.65272224,0.40551966,0.5809747,-0.656301,0.5779964,0.3163767,0.21025269,-0.33271396,-0.6972709,0.15215433,0.18323863,-0.28231624,0.49295354,0.44209564,-0.72154546,0.43942153,0.23531356,-0.07073684,-0.8973468,0.6565963,-0.100374915,-0.5316868,-0.20397627,0.43255022,0.2484473,-0.018806677,-0.23416947,0.23229653,-0.46115267,0.3241109,0.17445898,-0.070111714,0.00022079796,-0.2713159,0.0002438277,-0.69590235,0.095139444,-0.5706951,-0.41781288,0.26895678,-0.016754005,0.14984703,0.419594,-0.035924196,0.39679968,-0.33984017,0.053174693,-0.26546976,-0.30631688,0.4732174,0.4483785,0.48112726,-0.4077025,0.6536698,0.10103172,-0.16417554,-0.16697663,0.15415303,0.4133696,0.07736508,0.5431078,0.036722437,-0.061255388,0.26396322,0.6894238,0.10850836,0.5106497,0.063390456,-0.117877185,-0.02095437,0.054393113,0.28831872,-0.10046477,-0.6732869,-0.055235438,-0.30223942,0.3168164,0.5102142,0.08754847,0.2753125,-0.07114662,-0.30076796,0.07130084,0.12647253,-0.15463209,-1.240557,0.31028995,0.25831863,0.914112,0.41384172,0.109416425,-0.11001046,0.6869211,-0.27438387,0.051078625,0.27964786,-0.036593407,-0.10752516,0.47803935,-0.85816646,0.43521738,-0.11041506,-0.047713477,-0.07947936,-0.1023299,0.5341565,0.710538,-0.16341574,0.032306112,-0.0037961788,-0.35427907,0.10669607,-0.40392506,0.051218748,-0.5560395,-0.34546375,0.69809544,0.4699961,0.46562126,-0.28400758,0.024103243,0.04645554,-0.21643719,0.083888456,0.05523538,-0.022171015,-0.031679712,-0.5894773,-0.15215373,0.45904198,-0.06829827,0.08382876,0.08617781,-0.109985664,0.27348536,0.15772332,0.110823415,-0.048943654,-0.59505355,-0.040811077,-0.30500162,-0.42475444,0.34025276,-0.13322607,0.17714024,0.3112275,0.024838455,-0.05178809,0.337321,0.19512649,0.8890895,0.049638137,-0.067369245,-0.42098022,0.22173662,-0.026982263,-0.16740564,-0.16565323,-0.28877896,0.39070404,-0.71879876,0.39822984,-0.10460586,-0.51098555,0.16752075,-0.12011276,-0.07537475,0.48907074,-0.15953024,-0.19013558,0.024236768,-0.02802093,-0.19053894,-0.200832,-0.09511168,0.1849938,-0.066034004,-0.06885788,-0.16844197,-0.053535365,-0.1299709,0.4371274,0.03976133,0.41821337,0.46939963,-0.014108898,-0.38076162,0.03464622,0.24473938,0.49988902,-0.28352672,-0.13866217,-0.30334073,-0.4136569,-0.3715238,0.40671095,-0.026132096,0.27235276,0.05171214,-0.0767961,0.93898463,-0.20834374,1.1613626,-0.08586429,-0.41460308,-0.029766805,0.45410538,-0.04734283,-0.03797891,-0.34123108,0.9120605,0.60381746,0.002991356,-0.08176769,-0.30935848,-0.011494286,0.26598457,-0.17722166,-0.06500327,-0.012615588,-0.5335614,-0.18704885,0.119025216,0.18931195,0.209174,-0.14216705,0.12918904,0.5266802,-0.06751922,0.18802129,-0.48991916,-0.08930521,0.16551112,0.33929873,-0.20610933,0.05311167,-0.4874565,0.39404353,-0.57894987,0.07487373,-0.34063503,0.22675614,-0.171872,-0.23837087,0.36017188,-0.007966122,0.32789353,-0.4926937,-0.26152426,-0.05183044,0.47553802,0.11712387,0.07570258,0.58319503,-0.24826086,0.0052741095,0.15278691,0.56234264,1.1257885,-0.1738621,0.003384512,0.13968919,-0.46380723,-0.6269052,0.30626452,-0.28585804,-0.0008498803,0.24408208,-0.26767057,-0.38216716,0.40776274,0.32770723,0.12846205,0.061811663,-0.6490872,0.0026106834,0.31298622,-0.4216439,-0.061625823,-0.24805225,0.18957436,0.5609739,-0.17987125,-0.35473126,-0.029292837,0.37585643,-0.0027475134,-0.55377716,-0.012320252,-0.48760262,0.25250596,-0.052163713,-0.37927812,-0.20263892,-0.025423147,-0.490289,0.061056904,0.24320437,-0.20118272,0.071608976,-0.22721237,0.050559282,0.80895686,-0.16196485,-0.117627,-0.4658339,-0.5312624,-0.71108574,-0.3123958,0.23489872,0.079982705,0.024281848,-0.6609429,-0.17609185,-0.37313238,-0.2240793,-0.1126634,-0.3908462,0.3569767,0.19062719,0.5478113,-0.082727976,-0.87045276,0.29538253,-0.02256567,-0.13086455,-0.47295237,0.49011642,-0.047046266,0.8396146,0.017453056,0.16921388,0.22919084,-0.41824642,0.100889005,-0.26540864,-0.09455019,-0.73015237,-0.13864863,757 +97,0.42374402,-0.33724806,-0.24028756,-0.09289405,-0.41463968,0.10973984,-0.29759604,0.1534936,0.22734848,-0.37090698,-0.09624693,-0.09664257,0.0005299803,0.32942313,-0.19704278,-0.5337596,-0.094299376,0.08093535,-0.66120493,0.5674571,-0.53193855,0.3930897,0.1576555,0.18024242,0.17796157,0.39349097,0.3403284,0.04048255,-0.2937675,-0.095124826,-0.13305397,0.21684587,-0.51654446,0.18200383,-0.22326303,-0.4571577,0.04674176,-0.42048508,-0.1394408,-0.64583516,0.15822057,-1.0091436,0.47316957,-0.19373831,-0.052087437,0.14913712,0.32927543,0.40483394,-0.27216995,0.1102418,0.1875475,-0.118539676,-0.1980435,-0.29370332,-0.07689838,-0.39463073,-0.40362743,0.0011087973,-0.5765499,-0.37397864,-0.21709028,0.17733867,-0.24005702,0.118093275,-0.032783233,0.34718904,-0.29235798,-0.036531102,0.27966046,-0.11941153,0.27561188,-0.63390535,-0.12686327,-0.10352731,0.39563733,-0.11558264,-0.1295849,0.47371203,0.30282086,0.42611948,0.22700895,-0.3304297,-0.25598323,-0.1641425,0.11975559,0.33861452,-0.26043212,-0.3022997,-0.26199576,0.08179395,0.34687102,0.33907276,0.16684501,-0.17378142,0.11346856,0.017923016,-0.17614552,0.48748165,0.43883893,-0.27420235,-0.30049896,0.2869016,0.48342866,-0.052700613,-0.24068363,-0.13233076,-0.05028647,-0.4760866,-0.19629338,0.24741004,0.018534916,0.43917704,-0.092117146,0.10491943,0.6906216,-0.20419076,0.00587406,-0.18132384,0.036053345,-0.20501226,-0.20100647,-0.18747431,0.24516328,-0.5970209,-0.044897582,-0.35440257,0.6142515,0.115596786,-0.8106011,0.3528819,-0.48546553,0.11165319,-0.067961566,0.3673016,0.646703,0.41947982,0.19862698,0.6719162,-0.2539404,0.11514275,-0.21244314,-0.29410803,-0.12052308,-0.338182,0.16572772,-0.51394856,0.18961884,-0.048608672,0.045389183,0.07296538,0.31328914,-0.44730702,-0.19078963,0.24065067,0.72209686,-0.32293332,-0.045750126,0.7599362,1.0713757,1.0376842,0.021065919,1.1160469,0.47245333,-0.115832634,0.071026474,-0.21237186,-0.44386834,0.1267513,0.47860932,-0.05097551,0.22371255,-0.10076207,-0.054385718,0.18120094,-0.33930728,-0.017933026,-0.052358042,0.33781487,0.2219925,-0.025153747,-0.4104002,-0.13566221,-0.06235785,-0.06742299,0.13110106,0.17444763,-0.12169234,0.40310246,0.06240488,1.3351392,-0.10090707,0.09110129,0.032690097,0.42565632,0.27918437,-0.21467894,0.025768656,0.18243098,0.19232346,-0.080239154,-0.4918107,0.056015793,-0.32529068,-0.4108293,-0.123048745,-0.335899,-0.1187326,0.1238881,-0.327924,-0.16262683,-0.04761466,-0.24794376,0.41671035,-2.8563137,-0.28796363,-0.109047554,0.25218153,-0.38056067,-0.26435435,-0.060359843,-0.61452204,0.425224,0.27430022,0.425098,-0.5551115,0.4201274,0.436422,-0.5927364,-0.11549136,-0.66132027,-0.03143712,-0.113527566,0.45710197,-0.083151676,-0.17921811,-0.058046773,0.21592125,0.58268553,0.09833524,0.10122498,0.5035273,0.3291,0.15750267,0.5762065,0.061172392,0.51444423,-0.44549033,-0.23558041,0.43915832,-0.24600495,0.11787951,-0.028025016,0.11992933,0.5529824,-0.45753494,-0.7844405,-0.6816264,-0.37233254,1.0898095,-0.24999237,-0.4681107,0.04725443,-0.020390056,-0.106075205,0.052577093,0.3603952,-0.0709258,0.22329083,-0.6461626,0.18651898,-0.021816142,0.0321387,-0.032127935,0.007541241,-0.46543086,0.49380827,-0.06169644,0.44929767,0.2763321,0.31631988,-0.27655652,-0.32348478,0.049657457,1.0042722,0.402073,-0.009449717,-0.076395795,-0.32589805,-0.18358429,-0.21664721,0.17565167,0.27502435,0.6276857,-0.0061983354,0.11876917,0.35596332,-0.16491969,0.11155309,-0.0121173505,-0.19617036,-0.111066364,0.19091594,0.4709991,0.53212345,0.007492763,0.511117,-0.2563667,0.27546215,0.024909452,-0.4874944,0.63960266,0.6135269,-0.13428223,-0.094821885,0.50309235,0.58188915,-0.33025107,0.48244053,-0.6050942,-0.31601676,0.608774,-0.27694425,-0.41836968,0.08321513,-0.2782333,0.1809418,-0.8072115,0.27476665,-0.29179865,-0.25055397,-0.5557133,-0.10836944,-3.2652805,0.1651677,-0.031056218,-0.17156783,-0.08438415,-0.21401499,0.26464775,-0.6575124,-0.5110687,0.23989335,0.04525316,0.6226266,-0.03044631,0.15735567,-0.2111516,-0.10402419,-0.1340001,0.30874014,-0.017538056,0.19052395,-0.20516175,-0.4260016,0.061704524,-0.1338616,-0.57249045,0.16845363,-0.47199357,-0.40568423,-0.116286226,-0.5161707,-0.3427304,0.50212693,-0.31783617,0.031466573,-0.23359591,0.056530833,-0.15776254,0.11820026,0.11068213,0.2306764,0.2733058,-0.11416215,0.047111712,-0.37378052,0.39880317,0.08511551,0.26367617,0.26976413,-0.08654095,0.16118383,0.38518435,0.54898024,-0.11718655,0.8461824,0.2832049,-0.056310564,0.24601814,-0.28514054,-0.19776925,-0.68340987,-0.34446636,-0.146895,-0.33517757,-0.4910104,0.049437806,-0.25829425,-0.713604,0.7160468,-0.026712835,0.40881482,-0.11655891,0.24206743,0.36223292,-0.23252124,0.002390515,-0.08569841,-0.082271434,-0.482938,-0.36237407,-0.7025631,-0.52593946,0.042122114,0.7919017,-0.18108311,0.058585607,-0.048139464,-0.17069137,0.1258632,0.087148614,0.0001342725,0.2602934,0.3940134,0.09778757,-0.6774614,0.34273988,0.023374423,-0.043434687,-0.3961077,0.20299588,0.66479564,-0.49617767,0.431762,0.37848625,-0.0032242257,-0.09858569,-0.53475475,-0.17085794,-0.0131099,-0.27913898,0.42442796,0.15612583,-0.8072314,0.5886347,0.21988826,-0.49113497,-0.735403,0.33899707,0.16785796,-0.17287245,0.03669767,0.23452096,0.3008383,-0.10130944,-0.17253229,0.18707526,-0.4777997,0.26876742,0.08180911,0.08103188,0.3817511,-0.07729533,-0.44301778,-0.6837723,-0.048415985,-0.38672993,-0.22689506,0.29034567,-0.076851904,-0.07044285,0.28117234,-0.058349706,0.4179901,-0.23862174,0.14800197,0.0710326,-0.34430906,0.23409186,0.39918208,0.40827942,-0.38524073,0.53221256,0.035597414,-0.13429624,-0.01577083,-0.10849781,0.3926818,0.15737838,0.122160874,0.0059954785,-0.26011288,0.35389066,0.4407273,0.1949311,0.35379684,0.19496365,-0.20277315,0.50312024,0.029349314,0.074749984,0.0100018345,-0.36796725,-0.061409995,-0.06565364,0.011894245,0.36832547,0.24155812,0.40859544,0.055850707,-0.14651126,-0.061255924,0.039025024,-0.14708437,-0.9991597,0.21435344,0.12648654,0.8197746,0.5580829,-0.008662611,-0.065035395,0.6736506,-0.36416432,0.07701499,0.42739317,-0.08535384,-0.42537352,0.7319307,-0.5164988,0.37238735,-0.121891215,-0.04661129,-0.024353694,0.15472296,0.31719327,0.79968476,-0.17513856,0.14037271,0.015376842,-0.19139026,0.04929713,-0.2323321,0.07672152,-0.3027618,-0.3220005,0.63705325,0.18687803,0.37868682,-0.11871248,-0.07276867,0.0751602,-0.2237936,0.21437278,0.03549964,-0.014946334,0.02593942,-0.4079786,-0.32243955,0.49200606,0.14965217,0.3391117,-0.13470548,-0.25599042,-0.014218569,-0.046328887,-0.097885445,0.056804657,-0.6013063,0.07846662,-0.15624188,-0.3848335,0.4558913,-0.2281291,0.03402859,0.12156916,0.043717057,-0.090206906,0.031231739,0.2803988,0.6918062,0.006901134,-0.32801217,-0.13654424,-0.017919669,0.25848264,-0.19832101,0.19379014,-0.17820598,0.04083294,-0.7490116,0.6435014,-0.14959015,-0.33730033,0.31097934,-0.17189795,-0.036106072,0.5069144,-0.07915853,-0.0021528602,0.1615148,-0.029571164,-0.4098786,-0.1657367,-0.23098992,0.1802575,0.23530744,0.020286262,-0.07566948,-0.17497623,-0.014036983,0.5859479,0.033851966,0.31577605,0.14085525,0.099355295,-0.3267467,0.17137754,0.18170226,0.31552416,0.07376561,0.052053057,-0.3849415,-0.32733864,-0.3000908,0.17127241,-0.00884771,0.12003994,-0.019470394,-0.50141644,0.8277486,-0.21531434,1.0706545,0.030562578,-0.3900048,-0.03119966,0.43896025,-0.23230758,-0.015474964,-0.30716935,0.84623444,0.6098928,0.029081374,0.008359853,-0.52641886,-0.16591746,0.3307246,-0.3559427,-0.118170455,-0.07820937,-0.40831023,-0.58717334,0.16349413,0.17967632,0.06962771,-0.10987899,0.0037461668,0.117739454,0.14252606,0.4130914,-0.54521465,-0.2857371,0.2901808,0.29715815,-0.12720284,0.21850227,-0.413601,0.35311872,-0.6946279,0.17480311,-0.2805779,0.07717449,-0.16996628,-0.21877387,0.08577429,-0.003580939,0.3341937,-0.23026316,-0.5704889,-0.043076515,0.46159655,-0.054434493,0.062634826,0.5862301,-0.22939274,0.078559786,0.015019428,0.46136683,1.1987906,-0.2747512,0.047236778,0.320604,-0.37371248,-0.52814984,0.42682582,-0.21369983,0.052919406,-0.07772009,-0.31969735,-0.38164425,0.19500704,0.30452377,0.111973464,0.015610501,-0.43285096,-0.11263037,0.29945797,-0.32369882,-0.26086697,-0.20176776,0.27226624,0.62465787,-0.31169108,-0.13016227,0.019081771,0.40632045,-0.26083878,-0.39642787,-0.14089292,-0.10862355,0.37993655,0.22204143,-0.14215225,-0.15010172,0.15332863,-0.45683208,-0.12528908,0.15132296,-0.40419042,-0.058639813,-0.28266728,-0.014021274,0.81299824,-0.064900145,0.077445745,-0.56736124,-0.4350809,-0.84394896,-0.4863636,0.19715719,0.13607636,0.077600084,-0.36849558,0.0600182,-0.13039558,-0.20256555,0.14422141,-0.45623106,0.3173564,0.17703766,0.41510788,-0.30116707,-0.6931578,0.08027474,0.17970784,-0.007320989,-0.41388413,0.6375737,-0.066583484,0.8325795,0.095526814,-0.105980456,0.09779638,-0.4253137,0.12163213,-0.29866248,-0.16244392,-0.6376736,0.09525204,762 +98,0.5672341,-0.2983851,-0.5373297,-0.10221484,-0.3632428,0.0955929,-0.3089487,0.31318432,0.10205476,-0.33767658,-0.12055896,-0.1909724,-0.02827271,0.5312784,-0.15709135,-0.4363236,0.066887304,0.11235017,-0.73035413,0.67692316,-0.42963594,0.41648006,0.061761126,0.33278877,0.24083722,0.28788853,0.17739186,0.028677832,-0.03806028,0.034069657,-0.08491469,0.38379216,-0.5964687,0.026758507,-0.106498845,-0.26234782,-0.096683905,-0.22745377,-0.30155155,-0.80498874,0.23276019,-0.9557712,0.52578855,-0.08839202,-0.56492734,0.18829878,0.21250002,0.26055714,-0.27918565,-0.024648272,0.14093071,-0.09373397,-0.030431954,-0.13056475,-0.16552676,-0.64532876,-0.5989192,0.0017947983,-0.791034,-0.28770536,-0.35218143,0.2661686,-0.32546782,-0.1065692,-0.15267915,0.26691306,-0.56258607,0.06359686,0.07637148,-0.0733656,0.24776888,-0.5377679,-0.08790204,-0.12160365,0.11497302,-0.18751833,-0.29008055,0.23738207,0.35974896,0.5137715,0.04317598,-0.20551358,-0.31888703,0.06504077,-0.002199214,0.37383646,-0.1493954,-0.39528352,-0.27524525,0.048555862,0.3748786,0.18603519,0.23325223,-0.3594094,-0.14071429,0.07570773,-0.0799029,0.3783698,0.47043446,-0.43668866,-0.34737533,0.42685568,0.5989054,0.14766121,-0.16016735,0.1071801,-0.04472728,-0.5980593,-0.05543507,0.08155966,-0.07736162,0.66498846,-0.17789377,0.21293396,0.64326864,-0.24415319,0.014926992,0.017638654,0.008047618,-0.07063685,-0.078425854,-0.104342304,0.16747971,-0.5494344,-0.05905138,-0.20362122,0.53523237,0.09329167,-0.6139404,0.23079935,-0.49502832,0.18503508,-0.1498367,0.500883,0.79763734,0.55919194,0.12861042,0.7125327,-0.35981405,0.082543865,-0.09502675,-0.25671557,0.28742242,-0.32355657,-0.07462494,-0.5188989,-0.06900343,-0.053140096,-0.16758674,-0.022531785,0.84844655,-0.72017473,-0.096706316,0.04750365,0.68717647,-0.3604005,-0.078027464,0.6725317,0.83374053,1.0229756,0.08021049,1.1355236,0.36638558,-0.06893543,0.16069855,-0.25651428,-0.68983227,0.25378874,0.40163195,-0.082019545,0.42560363,-0.07147277,-0.1551831,0.48627973,-0.2819481,-0.11717304,-0.26635298,0.27117312,-0.029016692,-0.08809101,-0.49259996,-0.22665259,-0.062469188,0.28139573,-0.030366154,0.30403513,-0.33795863,0.26126933,0.03920235,1.8974643,-0.14348906,0.046532765,0.02128957,0.44827107,0.27282387,-0.19880515,-0.05493648,0.4345014,0.32441455,0.15161516,-0.5920365,0.0036564283,-0.22785252,-0.46729678,-0.19437064,-0.39981532,-0.0717876,-0.24883533,-0.6372913,-0.12514135,0.0529558,-0.23461595,0.4115255,-2.405588,-0.17512222,-0.077025615,0.44257617,-0.2909447,-0.3862583,-0.14139149,-0.3531331,0.36351836,0.43891498,0.40774447,-0.62967694,0.35271382,0.4157189,-0.48666844,-0.09827785,-0.5872085,-0.14249143,-0.07594578,0.5918436,-0.11482782,-0.14216152,0.17192197,0.2921936,0.52279663,-0.20952016,0.17544812,0.32758394,0.503523,-0.028754875,0.47600952,0.1110743,0.47162658,-0.08870375,-0.29368675,0.4642135,-0.22495683,0.27312106,-0.008348137,0.22617465,0.44020292,-0.46383968,-1.062527,-0.49642092,0.029139606,1.1370127,-0.47109497,-0.40469337,0.25544482,-0.27525607,-0.15643656,-0.012922386,0.38834348,-0.06843341,0.1589363,-0.8615206,0.13856085,-0.0043039694,0.17250642,-0.00921811,0.050721124,-0.3214344,0.60999703,-0.10286245,0.35486448,0.24902542,0.33136126,-0.34094268,-0.7356411,0.111382544,1.0462443,0.52908397,0.03757681,-0.28132743,-0.3490129,-0.30260554,-0.024630088,0.16416235,0.34287742,0.7756629,0.014107933,0.29947647,0.24743551,-0.13966176,0.02911003,-0.28434345,-0.2534846,0.05156803,0.17287926,0.42522785,0.74696463,-0.13877925,0.5772687,-0.051617842,0.37287706,-0.082594186,-0.6212899,0.44385362,1.214914,-0.2604971,-0.19554815,0.5652048,0.49385643,-0.2926596,0.4786839,-0.6466344,-0.42477804,0.5053442,-0.26332515,-0.38458723,0.42889056,-0.38053352,0.2030987,-0.95284057,0.4444723,-0.052327584,-0.23687603,-0.54893786,-0.058080643,-3.5952175,0.15404767,-0.25822982,-0.23572893,-0.0370066,-0.2940068,0.38492125,-0.79285514,-0.5186486,0.00907957,-0.0063909963,0.68947315,-0.11327971,0.08119336,-0.20915341,-0.36255288,-0.12788546,0.30289182,0.059511527,0.356638,-0.07827854,-0.58725935,-0.05035018,-0.121708214,-0.46343553,0.049562763,-0.6162491,-0.6165472,-0.23517522,-0.5939767,-0.099346325,0.68694067,-0.030558635,-0.014068885,-0.22972842,0.022511113,0.13375589,0.22894731,0.2938635,0.07757928,0.21836436,0.02167321,0.0176855,-0.35178393,0.059045304,0.0048690652,0.19647123,0.4810602,-0.1548624,0.29811496,0.63865536,0.46444547,-0.3307411,0.82007533,0.5784859,-0.07574016,0.26598406,-0.16486034,-0.34159994,-0.659781,-0.3842535,-0.3153619,-0.47085032,-0.30262744,-0.03337648,-0.31046832,-0.7291055,0.65531546,-0.09819521,0.37357455,-0.16415119,0.37869152,0.6187285,-0.18453833,-0.16114864,-0.16115908,-0.31128258,-0.54992455,-0.33277637,-0.7614078,-0.7069408,0.11820638,1.0851392,-0.21101496,-0.058149084,0.0921603,-0.02386517,0.016729483,0.04039877,0.030426037,0.23234618,0.35020256,-0.028348029,-0.7809055,0.5205004,-0.049963593,-0.007864825,-0.4458042,0.14853132,0.5741799,-0.60311157,0.36998296,0.37853405,0.16157866,-0.014134532,-0.6810777,-0.08577773,0.19516838,-0.26601452,0.60448444,0.30249247,-0.9104161,0.4655379,0.29518026,-0.4965421,-0.7044697,0.60582155,-0.009678859,-0.29841024,-0.14806741,0.3727138,0.11227569,0.037135277,-0.30112913,0.30531627,-0.5136925,0.2846499,0.37411544,-0.10817293,0.37430525,-0.22473912,-0.17912029,-0.7084408,0.13049126,-0.43661514,-0.4214532,0.20147389,-0.02293012,0.053867374,0.1219862,-0.002656147,0.5121752,-0.31134212,0.07295361,-0.0010742247,-0.313438,0.5364028,0.6128694,0.6159803,-0.3352607,0.53009397,0.031668484,-0.15919363,-0.0038049147,-0.03227581,0.5366999,-0.02084335,0.31938154,0.089033425,-0.101098314,0.41153675,0.74252397,0.15734011,0.5017951,0.15057711,-0.2971973,0.09199845,0.16939552,0.12610751,-0.11431656,-0.458889,-0.06810707,-0.076665916,0.30139506,0.6152822,0.14752817,0.20557891,-0.12709975,-0.21423283,0.19707158,0.1114425,0.11036289,-1.2784387,0.12965865,0.3534576,0.66791916,0.48894614,0.053580113,-0.0319932,0.43772805,-0.2713525,0.0506171,0.36693746,0.00964573,-0.6326121,0.6003662,-0.7812854,0.45019227,-0.13838202,0.027175415,0.05442271,0.056307852,0.41609862,0.8884418,-0.11399542,0.031964466,-0.015467927,-0.3282755,0.12301763,-0.4265024,0.10637997,-0.52131116,-0.36178985,0.67753696,0.39566764,0.293421,-0.18136886,-0.010816246,0.1571789,-0.3151494,0.26389572,-0.00631465,0.15821072,-0.23051555,-0.55795217,-0.25372884,0.49087623,0.026416011,0.11328722,-0.0012004524,-0.17624879,0.15522398,-0.27760255,-0.0033641271,0.023777252,-0.68818814,-0.093715236,-0.47823632,-0.4068223,0.5888066,-0.21072693,0.12710263,0.21723866,0.020799352,-0.43161833,0.20191005,0.097706154,0.77056515,-0.06588146,-0.20151004,-0.22704822,0.17160484,0.17032288,-0.17541865,-0.10045455,-0.20560762,0.15050747,-0.66436005,0.45200175,-0.1503089,-0.40059808,0.03757986,-0.1015286,0.014911963,0.4593842,0.002392225,-0.27319157,-0.08523971,-0.051579837,-0.33654368,-0.26095948,-0.0440225,0.27566618,0.206571,-0.17607588,-0.13430876,-0.03712678,0.16579095,0.57025796,-0.027970638,0.3624065,0.4911334,0.053468935,-0.40338588,0.05881487,0.46139592,0.53086656,0.027787,0.058627956,-0.40001732,-0.48930866,-0.40934378,0.111210786,-0.26841283,0.3643373,0.15863827,-0.37926868,1.0222127,0.082447335,1.2704743,-0.06418168,-0.47033548,0.20795622,0.5849072,0.021937799,-0.10833749,-0.37889254,1.0474901,0.6918787,-0.10767538,-0.16867487,-0.39107096,-0.29530275,0.25503567,-0.40226108,-0.17861971,-0.10445538,-0.6977282,-0.27191952,0.13999644,0.30020618,0.030272849,-0.14493278,0.1250311,0.3736089,0.03381569,0.2697361,-0.562538,-0.22852814,0.2596018,0.26137847,-0.1256023,0.14469063,-0.54907274,0.46249846,-0.45843834,0.11988342,-0.28347448,0.22335215,0.032305297,-0.3541008,0.29861522,0.018951813,0.27664942,-0.35273272,-0.36424926,-0.2677486,0.63333136,0.022915695,0.069831006,0.62546754,-0.45250478,0.17028593,-0.10737236,0.38994572,1.1956587,-0.2568825,-0.07380667,0.3691269,-0.34561282,-0.87994695,0.38657004,-0.40920287,0.33003995,-0.02850142,-0.4354785,-0.4920322,0.33136857,0.15993074,0.06438683,-0.031472526,-0.5335946,-0.04612232,0.23211357,-0.23625264,-0.17378458,-0.24459916,0.07078704,0.55158997,-0.40545934,-0.22493853,0.03776423,0.35206822,-0.18126145,-0.5595815,-0.076557875,-0.29923114,0.28543994,0.1402492,-0.40177503,0.030036628,0.09457649,-0.41781422,0.06381884,0.37793514,-0.32158262,0.081187785,-0.3476982,0.08171351,1.1164181,-0.13669834,-0.11519736,-0.57640314,-0.54580927,-0.9646907,-0.3540288,0.38044667,0.16686018,0.12826353,-0.81618917,0.10766579,-0.22710547,-0.081123255,-0.023462016,-0.47692233,0.5671501,0.15238316,0.33340302,-0.05511871,-0.7820326,0.12799446,0.12873542,-0.21026951,-0.6265911,0.64752185,-0.27057588,0.7624937,0.19557935,0.15743843,0.23658265,-0.6185665,0.013023124,-0.22539173,-0.08243113,-0.74311167,-0.0054957196,769 +99,0.5639065,-0.16277117,-0.30357248,-0.1713871,-0.18104869,0.12521723,-0.26577193,0.31054914,0.17806864,-0.69121623,-0.11860378,-0.3784804,0.012841351,0.4339648,-0.13642932,-0.6566811,0.0033351108,0.12010488,-0.48809728,0.61430615,-0.45568246,0.3950454,0.25239098,0.33280718,0.15597409,0.2202919,0.46233684,-0.21895811,-0.059931345,-0.26931745,-0.04553462,0.052705973,-0.70268816,0.13146211,-0.10714644,-0.44511837,-0.025948592,-0.332677,-0.22994475,-0.75040114,0.32292098,-0.7138007,0.45590258,0.19527733,-0.21329702,0.38995832,0.10937457,0.23017383,-0.1897916,0.13008407,0.1679615,-0.11069776,0.06281829,-0.11568502,0.014567107,-0.4744409,-0.5617441,0.16010165,-0.37502053,-0.29451054,-0.41039371,0.15508424,-0.3229169,-0.03882597,-0.11054444,0.46124464,-0.28873545,0.012580663,0.18857023,-0.2208059,0.4815085,-0.467756,-0.17134376,-0.18071076,0.1847144,-0.2375655,-0.14834404,0.1971391,0.18127377,0.6911264,0.053484626,-0.18099624,-0.3517025,-0.07642929,0.019317182,0.52883,-0.1617683,-0.6021344,-0.12778223,0.03719812,0.1497156,-0.0049977656,0.10585131,-0.28694034,-0.22227667,-0.016675599,-0.22731945,0.39863402,0.42329216,-0.33234707,-0.33759248,0.37550405,0.34860408,-0.0053078905,-0.062396683,-0.069582015,-0.030455327,-0.542317,-0.10357724,0.117551215,-0.24420431,0.55427563,-0.16482985,0.34247208,0.6524725,-0.112798475,-0.043055233,0.024271015,-0.119619764,-0.050869387,-0.086530864,-0.21481189,0.25208616,-0.49754223,0.029927962,-0.30875772,0.82650346,0.1054789,-0.9048643,0.38204762,-0.42781365,0.1451987,-0.025139267,0.5466462,0.6808795,0.33524513,0.31223038,0.6491381,-0.5336967,0.0234458,-0.17904635,-0.34995508,0.07183185,-0.09096012,-0.10648583,-0.52033603,-0.08043797,0.049373858,-0.010347933,-0.015947372,0.43819773,-0.59815043,0.010573328,0.19925842,0.7935079,-0.3222955,-0.04565213,0.65992004,0.9886138,1.0250962,-0.017473638,1.1604671,0.17408207,-0.29492682,0.22139408,-0.35305077,-0.6178812,0.34869564,0.3925236,0.21031079,0.21819207,0.024050951,-0.01398664,0.31140348,-0.3366635,-0.008861326,-0.2292694,0.15035553,-0.012747418,-0.036737643,-0.34934282,-0.23424608,-0.043420695,0.043007545,0.1053752,0.105987236,-0.15302366,0.29056603,0.025130246,1.661054,-0.13727468,0.12415118,0.047481954,0.4000657,0.17890558,-0.25021,-0.10703621,0.16386873,0.29860967,0.09116827,-0.5367596,0.0821362,-0.14104739,-0.5411555,-0.15862238,-0.22822401,0.014865013,-0.04814908,-0.45943838,-0.035643272,-0.1623159,-0.45511293,0.39267048,-2.6834183,-0.1963575,-0.07044255,0.35051882,-0.31443584,-0.29558235,-0.123016246,-0.4953437,0.4574728,0.43640774,0.4249623,-0.7392415,0.24530242,0.34707072,-0.4581605,-0.16732442,-0.6725942,-0.02189996,-0.10740794,0.45551747,0.068646856,-0.10444197,-0.09328596,0.34677693,0.59342885,-0.10126327,0.08114745,0.10246873,0.39734733,0.17344895,0.50178444,0.034639657,0.4837267,-0.21642902,-0.16697045,0.41400218,-0.35668653,0.086212225,-0.17109874,0.14789696,0.24311087,-0.41848785,-0.8100852,-0.72450364,-0.35019252,1.1579574,-0.14050214,-0.3830479,0.21554108,0.06760037,-0.20092633,-0.035494704,0.35962865,-0.104987025,0.021975826,-0.8926431,0.116748385,-0.020620666,0.09376999,0.09217121,0.007982742,-0.48466134,0.6938097,-0.0020744745,0.3727784,0.4384768,0.31157216,-0.2976604,-0.5181745,0.17444387,1.1068693,0.32213894,0.09772473,-0.200923,-0.174686,-0.41449982,0.049151167,0.06042748,0.3594753,0.7585662,0.030712485,0.10647471,0.28326878,0.037692983,0.11721198,-0.11789046,-0.28377378,-0.059292234,-0.053235695,0.6897053,0.5544634,-0.081811786,0.34705478,-0.13977066,0.2913978,-0.18788394,-0.39188948,0.6484789,1.1158838,-0.11565591,-0.1255154,0.52742374,0.45722502,-0.107138544,0.3919731,-0.6276972,-0.4138588,0.408014,-0.16618973,-0.36437687,0.25744766,-0.3316553,0.15151897,-0.97309375,0.34239724,-0.28210646,-0.3489762,-0.6149497,-0.12390934,-3.676321,0.22933605,-0.23470932,-0.24077487,-0.069790885,-0.043746967,0.30416572,-0.5533111,-0.37677616,0.08807389,0.063494995,0.75270975,0.035535913,0.22544521,-0.20798534,-0.16929457,-0.29704806,0.19352019,0.014695063,0.19603461,0.100325614,-0.43592665,0.02734984,-0.20568906,-0.34555537,0.10448639,-0.44048488,-0.54747,-0.25448212,-0.47815502,-0.41866738,0.51115155,-0.32500705,0.10539162,-0.23020253,-0.11058511,-0.022915218,0.40983486,0.12221353,0.053807758,0.043943834,-0.09083596,-0.017576102,-0.31748316,0.18302146,0.1709872,0.24102522,0.48490703,-0.33456478,0.19534498,0.43319353,0.53187764,-0.1282,0.7503979,0.5039236,0.03929939,0.24219987,-0.27684233,-0.19392332,-0.5634294,-0.3419401,-0.09966287,-0.38489252,-0.41018832,0.010120355,-0.27844876,-0.7250558,0.4895132,-0.031274613,0.0839768,-0.18940297,0.26595956,0.46087387,-0.2507149,-0.010602064,-0.12544805,-0.16955394,-0.5391164,-0.30324072,-0.6303243,-0.51393163,-0.022802442,0.84690225,-0.07018535,0.030868486,-0.013133828,0.0059779957,0.036268577,-0.013518421,-0.05804248,0.15251218,0.32420653,-0.018177275,-0.77761626,0.60117126,0.012643725,-0.10662519,-0.53092736,0.23450229,0.49292317,-0.40536675,0.35780537,0.430639,0.10665712,0.03366179,-0.53906655,-0.059483528,-0.029245242,-0.28282577,0.39798582,0.13901532,-0.62000686,0.49565876,0.3283788,-0.21115336,-0.7865615,0.49495625,0.14561602,-0.3876236,-0.004920967,0.2337093,0.06687239,0.09382036,-0.27792466,0.29538053,-0.5327153,0.22871761,0.15448532,0.052271783,0.41627756,-0.23533158,-0.1679624,-0.7766925,-0.10457523,-0.4675374,-0.2882975,0.088103324,0.18522866,0.039527886,0.3589189,-0.03743399,0.4538297,-0.1550507,0.076467276,-0.087752976,-0.16776589,0.28800258,0.49814442,0.3839691,-0.3737467,0.5810747,0.033365637,-0.0477798,-0.19872032,0.04345603,0.50692046,0.07962615,0.31267935,-0.040204722,-0.26545027,0.40910214,0.6014856,0.15992919,0.36204797,0.067088716,-0.19052505,0.42487007,0.107700996,0.14542553,0.026158981,-0.44697458,-0.10966289,-0.19284934,0.13037828,0.46447715,0.088690236,0.3205779,-0.075301394,-0.32910278,0.04690075,0.08212554,-0.12191852,-1.1359521,0.35860947,0.21104035,0.7612622,0.63557756,-0.055345993,0.16355598,0.72705895,-0.22879265,0.14657193,0.25936428,0.011234917,-0.5628128,0.5343915,-0.6938225,0.30096853,-0.089573234,-0.08336606,0.032338616,-0.014796771,0.35072148,0.6937812,-0.13568212,0.18404122,-0.11984548,-0.2852254,0.13028368,-0.36652794,0.33584088,-0.49658686,-0.20870468,0.7512667,0.43733323,0.2168184,-0.10226948,0.0029070936,0.092984974,-0.10074219,0.15210426,0.118469104,0.046828896,0.029685419,-0.64399314,-0.115726575,0.554014,0.13476819,0.22220695,-0.041178025,-0.31584835,0.11467008,-0.19129725,-0.16566873,-0.101133704,-0.5503845,-0.020034444,-0.2825716,-0.1928046,0.52912486,-0.34121913,0.37832475,0.13380328,0.15395069,-0.1983254,-0.02041322,0.25690195,0.5580636,0.20647213,-0.12146708,-0.3617986,0.09612323,0.15307,-0.22725548,-0.21792074,-0.2571268,0.0047280416,-0.72613555,0.41636822,0.025299236,-0.24864784,0.26545405,-0.14247411,0.06550917,0.6110195,-0.061884575,-0.13430263,0.18444723,-0.21696287,-0.24394834,-0.06026436,-0.03049763,0.37107167,0.12723285,-0.09944482,0.03615384,-0.034595408,-0.14071849,0.39555016,0.1861934,0.36218852,0.20083839,0.05133648,-0.39621666,-0.03350451,0.14711404,0.39576918,0.11411585,-0.09101341,-0.2164115,-0.41345716,-0.3781464,-0.008720182,-0.07918607,0.20710646,0.059976146,-0.28333554,0.7564849,0.10507107,1.095574,0.008077577,-0.35685027,0.060599744,0.4270835,-0.052529614,-0.025779147,-0.38051862,0.91706324,0.6018763,-0.07077293,-0.12945563,-0.20142333,0.021013735,0.061920643,-0.25113055,-0.11158034,-0.049608216,-0.666098,-0.40053686,0.227235,0.30223057,-0.0011251196,-0.13469036,-0.050433025,0.18591814,-0.1277073,0.46312335,-0.46228328,-0.1771791,0.22702831,0.36641157,0.055476576,0.026138395,-0.43993965,0.47817376,-0.6311592,-0.019001067,-0.24117406,0.15021731,-0.20001513,-0.23457041,0.3244289,0.017961502,0.32141426,-0.25993937,-0.4887845,-0.2744575,0.36665967,0.09338969,0.19620019,0.62552357,-0.22912405,0.09789668,0.057970278,0.46050212,1.2442317,-0.33602566,0.033500835,0.40155107,-0.33197954,-0.59061015,0.2480294,-0.26266652,0.09894309,-0.05428273,-0.23484406,-0.40043497,0.30591366,0.14987952,0.07454504,0.058691658,-0.64727867,-0.25333697,0.35155618,-0.2909923,-0.25857285,-0.2768163,0.11093261,0.5003526,-0.32008696,-0.30477995,-0.013228414,0.3720277,-0.3100692,-0.6598462,-0.14684066,-0.34269315,0.38978043,0.26728326,-0.2541932,-0.09414004,0.069962025,-0.38372493,0.008635564,0.17784262,-0.4244889,-0.038370825,-0.44576946,-0.020322932,0.8044224,-0.10096002,0.12310401,-0.5688598,-0.31068325,-1.0124481,-0.36328316,0.6052097,0.1329654,0.079579696,-0.44753382,-0.043484956,-0.17570685,-0.10952635,0.006428484,-0.4068455,0.32661515,0.16534087,0.495942,-0.038988836,-0.66349363,-0.0071122795,0.24892105,-0.19589303,-0.52015203,0.48548666,0.07035484,0.8294222,0.074558005,0.070803076,0.39451486,-0.6298714,-0.012802672,-0.07543717,-0.19086269,-0.7124172,0.117714055,780 +100,0.41489154,-0.28921166,-0.3833222,-0.09523822,-0.325296,0.13222052,-0.28805178,0.52091867,0.101646684,-0.33987692,-0.1169752,-0.2657524,0.10633237,0.4625784,-0.21417737,-0.6063879,0.109062694,0.20453149,-0.51446176,0.43986145,-0.44687036,0.4309812,0.16375631,0.23687826,0.11597324,0.18698505,0.26484153,-0.12519632,-0.10158102,-0.22580458,-0.22043523,0.24396521,-0.4486579,0.16367984,-0.26023307,-0.43917146,0.15014143,-0.4816699,-0.37401867,-0.68842155,0.094283506,-0.6767873,0.5972425,-0.029527545,-0.3152001,0.14206873,0.05776772,0.4447217,-0.18097715,0.11068806,-0.005860187,-0.13415994,-0.08888066,-0.18194894,-0.24924111,-0.48017645,-0.48227048,0.08731894,-0.5308914,-0.30450705,-0.08566253,0.15427223,-0.18409652,0.11059341,-0.11729019,0.45510936,-0.4789196,-0.038880944,0.2607348,-0.18073334,0.19324027,-0.53156203,-0.022959277,-0.07608764,0.28088647,-0.22236541,-0.30534348,0.089762315,0.33431834,0.45439392,0.018002553,-0.2249097,-0.20577969,-0.21789563,0.027405094,0.65835524,-0.10912271,-0.6156086,-0.28995723,0.015417685,0.3359147,0.1686042,0.069732025,-0.41469774,-0.14930585,-0.052475847,-0.38613302,0.2963287,0.45560837,-0.5585467,-0.23742092,0.30500597,0.5618114,0.11601229,-0.13166477,0.2503369,0.020546732,-0.4873861,-0.041599162,0.16639005,-0.1259679,0.5816256,-0.13575439,0.22348407,0.600853,-0.0840428,-0.027473103,0.039595753,-0.041202668,-0.09338707,-0.19551343,-0.19113666,0.30698153,-0.4551875,-0.0011128336,-0.33925903,0.8131945,0.19281492,-0.6383775,0.37228587,-0.5812083,0.15170157,-0.024946153,0.5940583,0.6400423,0.34305197,0.16963425,0.61675733,-0.41970566,0.13075286,-0.27072713,-0.34462982,-0.006481895,-0.08997071,0.05179608,-0.49552274,0.12128067,0.027551785,-0.03193891,0.19488236,0.34841385,-0.63454294,-0.11429771,0.04034745,0.71876013,-0.3095686,-0.09663148,0.79197747,0.9404379,0.8052958,0.0056522917,1.2814988,0.31062657,-0.1260804,-0.057523627,-0.29277316,-0.33381507,0.21809071,0.3573642,0.13257264,0.2858572,0.09454629,-0.030770496,0.46909028,-0.29443088,-0.006198406,-0.17434637,0.046375237,0.047425695,-0.011917364,-0.52057135,-0.17648514,0.111344025,0.038434684,0.25399953,0.32859123,-0.22181909,0.48890227,0.12917931,1.3198001,-0.04055175,0.09803897,0.09511553,0.32329258,0.2957834,-0.015401404,-0.031003498,0.31053036,0.3677889,0.03349956,-0.46593097,0.123708665,-0.21382043,-0.41035408,-0.09145737,-0.26346272,-0.16608828,-0.010018872,-0.5324988,0.014653716,0.08834213,-0.20350468,0.5252407,-2.804213,-0.34510583,-0.14677018,0.3138674,-0.24558815,-0.40557408,-0.09584764,-0.47598213,0.4085952,0.37687874,0.48493567,-0.685772,0.46759275,0.38752785,-0.35925382,-0.21347697,-0.64407665,-0.10358382,-0.023103558,0.43817532,0.05941665,-0.10368827,0.042624444,0.16080269,0.5737518,-0.08712177,0.09470466,0.07726047,0.28692034,0.14720517,0.4376366,0.15528002,0.5835788,-0.21515155,-0.21466058,0.3623916,-0.26379323,0.2932186,0.022386566,0.18384609,0.34238705,-0.2988563,-0.84640765,-0.68714863,-0.31783348,0.88392305,-0.19502267,-0.46358642,0.107317336,-0.09070654,-0.283165,-0.03588619,0.4092096,-0.08809514,0.08376394,-0.7442136,0.018160032,0.04749155,0.24923177,-0.061966285,-0.060900513,-0.38434476,0.5352226,-0.19701134,0.355392,0.38647395,0.2515996,-0.18884411,-0.47156072,-0.020525236,0.97932696,0.3826713,0.18390842,-0.14186658,-0.21144474,-0.30290785,0.010221951,-0.01654067,0.64622575,0.73271257,-0.026006669,0.096178174,0.23965992,0.04947351,0.06195891,-0.21340679,-0.31295073,0.023008365,0.055064823,0.5886235,0.491234,-0.06711812,0.58164454,-0.091468714,0.39457506,-0.20636833,-0.5302958,0.5137793,0.8086971,-0.34118375,-0.24471134,0.6084025,0.45558387,-0.21827789,0.35838613,-0.76590496,-0.33761004,0.40055615,-0.1902294,-0.4865457,0.36953336,-0.20270942,0.17018962,-0.87024295,0.30468592,-0.14724639,-0.48985088,-0.52073234,-0.09179017,-3.638503,0.19794184,-0.07245327,-0.14388311,0.032657534,-0.27356035,0.13650912,-0.4433405,-0.38306803,0.1729928,0.1211117,0.5459125,-0.05648867,0.050172426,-0.36080942,-0.34773493,-0.10048803,0.27740788,0.025457941,0.27981973,-0.18821482,-0.39826894,0.1385577,-0.23790154,-0.4781058,0.14269693,-0.69029725,-0.4175826,-0.15605228,-0.48284113,-0.28724918,0.6497687,-0.53717035,0.16374905,-0.27504873,0.10902497,-0.14847404,0.32155985,0.1581781,0.08428637,0.049568437,0.025858521,0.0460895,-0.38498583,0.24532044,0.13187715,0.10149163,0.30212712,-0.036211118,0.19042721,0.48983198,0.5852039,0.042507365,0.7293284,0.33304152,-0.0022993265,0.28826505,-0.19425225,-0.3841195,-0.48316494,-0.3714931,-0.14986677,-0.45490253,-0.42635965,-0.20704821,-0.25965655,-0.6835227,0.661279,0.079161346,-0.081359945,-0.1840648,0.4246099,0.48578128,-0.38065043,0.019062918,-0.0016075,-0.06951469,-0.48260337,-0.3852647,-0.7031079,-0.48230854,0.06496173,0.8452559,-0.188196,0.039505154,-0.025890611,-0.032966226,-0.05732097,0.2010085,0.21910019,0.22280192,0.45013055,-0.35984153,-0.67273986,0.4897518,-0.3117975,-0.44840676,-0.58914244,0.23075733,0.6649603,-0.6308621,0.4245214,0.42433563,0.08607298,-0.14606823,-0.42304644,-0.19416116,0.13247955,-0.26602143,0.49530783,0.08985448,-0.74072254,0.5069396,0.28607333,-0.20663482,-0.68632805,0.5872117,0.01696056,-0.321985,0.1241216,0.36947817,0.19302337,0.044178784,-0.16242056,0.044544186,-0.4177068,0.23162118,0.34596947,-0.044836156,0.47103667,-0.277239,-0.10135223,-0.7883715,-0.21490327,-0.5308448,-0.2054712,0.06754934,0.077761166,0.12465774,0.12117117,-0.091376245,0.39476043,-0.38202688,0.13406436,-0.12280846,-0.23842412,0.3796098,0.48212963,0.26830548,-0.23401123,0.59987473,-0.013942296,-0.074379005,-0.19335642,0.03145225,0.5331439,0.14105684,0.43172607,-0.14612705,-0.2034831,0.3532593,0.6938019,0.26132676,0.31818447,0.18601999,-0.09373574,0.22260854,0.15732893,0.14719273,0.08337092,-0.36952066,-0.113251075,-0.21520472,0.123507485,0.4877729,0.09532962,0.40859455,-0.04416489,-0.38187066,0.09517685,-0.061082195,0.09002426,-1.2163013,0.19579147,0.17415136,0.6644647,0.36219496,0.1912309,0.020787347,0.5189883,-0.2637261,0.0116333775,0.25878733,0.055091716,-0.3550352,0.5858137,-0.7555504,0.5287497,-0.21347293,0.012680472,0.098050565,-0.09675534,0.39153203,0.9344466,-0.14915633,0.07345813,0.0055169035,-0.19811156,0.08435064,-0.38835302,0.09201314,-0.48642737,-0.30003083,0.7133609,0.44019514,0.40561998,-0.20730346,0.0075403955,0.22385918,-0.12948951,-0.00013307482,-0.01582532,0.22697936,-0.14283016,-0.5016991,-0.24724552,0.6003587,-0.09061898,0.06964953,-0.008391801,-0.23827049,0.22660941,-0.0794934,-0.042451985,-0.076026574,-0.6459723,-0.06544575,-0.3177713,-0.47464973,0.47070518,-0.2662516,0.20924145,0.10052812,0.06608186,-0.33165154,0.5132811,0.20756263,0.86072624,0.1056356,-0.10471879,-0.20270357,0.08619109,0.30688664,-0.18368086,-0.17257635,-0.27104115,0.13143606,-0.6573467,0.3353851,-0.13173115,-0.29561055,0.07541364,-0.045628995,0.029462788,0.39774013,-0.091845736,-0.2909457,0.29140517,-0.10051116,-0.17218713,-0.12981926,-0.1908727,0.25300655,0.24603364,0.02116875,0.004510559,-0.124423675,-0.22195956,0.35435525,0.06459697,0.40944973,0.31257075,0.13929829,-0.36405012,0.08178699,0.0116150305,0.3733068,-0.12128095,-0.10624411,-0.19427155,-0.5441491,-0.35448056,0.006317094,-0.047837675,0.2995219,0.04409621,-0.2739235,0.9010659,0.011928827,1.201954,0.015967399,-0.46261835,0.16636795,0.5133096,0.045359403,0.06398073,-0.2664657,1.0001338,0.4454161,0.026377779,-0.11010928,-0.29186016,-0.035354055,0.15892659,-0.16354552,-0.2069763,-0.019205863,-0.46268928,-0.2343073,0.3255293,0.28272766,0.23382388,-0.011810057,0.15783714,0.23996285,-0.015472699,0.35910913,-0.5639085,-0.005985856,0.31702965,0.37710842,-0.13654989,0.07362668,-0.32776836,0.5007202,-0.58546287,0.06932199,-0.5148592,0.08963892,-0.13569969,-0.25232804,0.1359631,-0.009434,0.31311178,-0.4183327,-0.36478102,-0.30590975,0.5168811,0.15037334,0.072905436,0.6856164,-0.14182597,-0.035481352,-0.036642298,0.5160688,1.0947224,-0.52011096,-0.06886022,0.44745174,-0.28690773,-0.50426304,0.23306942,-0.44874564,0.20113553,-0.04486981,-0.16177511,-0.41997212,0.32429016,0.20688239,0.027892802,0.035041645,-0.51036906,-0.042355932,0.46804035,-0.33647072,-0.27512032,-0.3609946,0.37535825,0.5781735,-0.25162965,-0.49557054,-0.028485958,0.3214203,-0.30034703,-0.6470588,-0.020175144,-0.25176698,0.3275437,0.19929886,-0.21347591,-0.073170915,0.04401159,-0.44723475,-0.04791934,0.24606374,-0.30326337,0.21072364,-0.24860041,0.0023859143,0.8301906,-0.11329587,0.21204558,-0.7871852,-0.55752325,-0.88777906,-0.42339337,0.5591908,0.28199142,0.023966433,-0.5786773,0.0070029683,-0.16542114,-0.14376229,-0.022198267,-0.21770072,0.46008196,0.16349204,0.507769,-0.11963627,-0.8483323,0.03123407,-0.038103916,-0.2066577,-0.50425935,0.43277818,0.10234642,0.84089005,0.1063672,0.10128541,0.37798598,-0.5043859,0.044355728,-0.4265206,-0.15375946,-0.8455329,0.13134426,804 +101,0.6410558,0.01479511,-0.38276285,-0.29914925,-0.25740653,0.11903036,-0.17073373,0.22601658,0.14499772,-0.6220098,-0.12812112,-0.2522732,0.021564547,0.21688008,-0.21437104,-0.7557901,0.06766296,-0.022648904,-0.6440797,0.42873374,-0.494946,0.21610555,0.17615561,0.29346812,0.069421664,0.22234455,0.3575115,-0.3035791,-0.095320046,-0.2617588,-0.0075181536,-0.059492454,-0.842407,0.095373414,-0.106109805,-0.19979583,0.07122405,-0.47844034,-0.5175148,-0.68287873,0.28432596,-0.90598637,0.5615456,0.15775417,-0.17025301,0.2664749,-0.008156322,0.20524655,-0.17996131,0.23607162,0.16973814,-0.23397559,-0.07308179,-0.063230395,-0.2070785,-0.5539893,-0.6907726,-0.05260491,-0.45738596,-0.21911533,-0.29433933,0.003184985,-0.35568088,-0.10392513,-0.192787,0.567395,-0.34241122,0.03635758,0.08435478,-0.02724195,0.3575095,-0.552431,-0.18497667,-0.053232975,0.21122648,-0.13298866,-0.13920662,0.27747607,0.38906616,0.5693339,0.10269447,-0.29040033,-0.1415402,-0.088529184,0.2910303,0.42348778,-0.12484918,-0.44730735,-0.10609022,-0.02471285,0.1789619,0.27485722,0.028809808,-0.46084318,-0.0703851,0.075608544,-0.2663939,0.47712687,0.7137265,-0.36060354,-0.2544296,0.3412937,0.31275457,0.091515526,-0.022806,0.15040456,0.0013671331,-0.6189822,-0.20936286,0.34022993,-0.26250264,0.6341669,-0.21765897,0.1663519,0.64532346,-0.20599452,0.06106712,-0.021039572,-0.06349635,-0.0032036705,-0.14516604,-0.19838719,0.26208127,-0.59454274,0.102212586,-0.44860622,0.77785903,0.27370316,-0.8475226,0.24658656,-0.6006532,0.069219396,0.051801585,0.58886075,0.69789904,0.3276429,0.08548593,0.6201507,-0.5637162,0.07106763,0.030711703,-0.46945179,0.13116552,-0.095865905,0.10732864,-0.46026865,-0.20571646,-0.012877867,0.061044186,-0.098879166,0.32850134,-0.31322694,-0.09796343,0.11160734,0.8106191,-0.23496994,0.15296587,0.6262953,1.1300862,1.028536,0.24415483,1.402042,0.2878477,-0.12646426,0.11024065,-0.0950704,-0.8425051,0.29607195,0.39012444,-0.032459036,0.26005167,-0.027018355,-0.0678636,0.1536358,-0.4946093,0.10223453,-0.2120376,0.41913155,0.042642776,-0.19811586,-0.3077212,-0.17433031,0.031632893,-0.08994235,0.14557493,0.18508068,-0.12349369,0.33016294,0.28518045,1.0767388,-0.0883241,0.18938811,0.16460416,0.4344457,0.20450178,0.009776223,0.054040015,0.19426273,0.5451424,0.06642699,-0.5479399,-0.032135777,-0.29688382,-0.4097649,-0.28468424,-0.26953703,0.06555042,-0.042455915,-0.3601846,-0.18062854,-0.07469775,-0.34612566,0.50911987,-2.7216096,-0.15690061,-0.29776192,0.2729302,-0.31298214,-0.29441547,-0.073822245,-0.6275199,0.63365626,0.34631333,0.3394125,-0.67290735,0.3934813,0.50693256,-0.33376712,-0.055937473,-0.7463411,-0.1425304,-0.06498279,0.38667965,-0.012666468,-0.1515818,-0.10658551,0.3468275,0.46906918,0.035869114,0.10653153,0.16511384,0.35682032,0.17777239,0.4731648,-0.0016056821,0.54806125,-0.1831255,-0.09050986,0.35022038,-0.17341101,0.058769587,-0.15792131,0.16892672,0.4151767,-0.38447195,-0.58630073,-0.5821482,-0.45616025,1.1365172,-0.28527397,-0.40420568,0.28394833,0.13807082,-0.1610889,-0.08949312,0.32221115,-0.080776416,0.18550354,-0.7199113,-0.03964422,-0.030788004,0.21294099,-0.05665438,0.12916222,-0.45115593,0.6912575,-0.11089812,0.29370385,0.40358153,0.31161493,-0.2078757,-0.5868252,0.10422224,0.98208773,0.3757825,0.18846118,-0.26078582,-0.16774945,-0.192924,-0.19255649,0.051479403,0.44918865,0.9313377,-0.16215095,0.09427115,0.27284172,-0.01571193,0.12920739,-0.107289106,-0.3063416,-0.10974108,-0.1432035,0.49842995,0.4917228,-0.20384504,0.40140128,-0.22956605,0.27574492,-0.22532049,-0.34255123,0.67479575,1.0011718,-0.16674504,-0.278892,0.56451523,0.3540523,-0.24980888,0.5016815,-0.5190961,-0.3186953,0.6180194,-0.07480971,-0.49318618,0.19722134,-0.40693724,0.1867978,-0.8534267,0.5009079,-0.3421197,-0.28868487,-0.54250354,-0.20776433,-3.751399,0.12910926,-0.38060987,-0.14816396,-0.14466666,-0.07847275,0.3883054,-0.54662025,-0.4961534,0.17887045,-0.04509683,0.7379495,-0.04268143,0.23656294,-0.2572221,-0.051192723,-0.52330434,0.16666178,0.190108,0.14959513,0.041318275,-0.2590994,0.08310814,-0.1725124,-0.4310078,0.13138676,-0.46390313,-0.4994537,-0.14408547,-0.32842752,-0.49435994,0.65099496,-0.23051167,-0.06829095,-0.2931747,-0.062816896,-0.2588527,0.3979922,0.15853721,0.22562066,-0.07811335,-0.007891214,-0.10852073,-0.32546717,0.33692595,0.08443734,0.26679483,0.34428513,-0.21701872,0.07675529,0.33172208,0.5546627,-0.0038057119,0.73159444,0.25843626,-0.03519654,0.31215277,-0.27556244,-0.29418653,-0.58400536,-0.40066886,-0.13199255,-0.33038574,-0.5085949,-0.142378,-0.32691675,-0.65189403,0.31490153,-0.058936022,0.2197124,-0.118655294,0.07933089,0.33030576,-0.12954523,-0.06100022,0.013114202,-0.1848064,-0.3870284,-0.32719386,-0.760196,-0.4036995,0.01170741,0.74527174,0.059411865,-0.17657855,0.020547211,-0.24713428,0.15695068,0.028159713,0.023053342,0.1569039,0.43315235,0.054487795,-0.79757476,0.59184337,-0.07594992,-0.1400566,-0.73750806,-0.026971415,0.7477247,-0.6178227,0.6073685,0.31749383,0.09855239,-0.19888002,-0.57051766,-0.35812807,0.09126088,-0.2784846,0.47746345,0.046431907,-0.76887214,0.53897774,0.27037197,-0.2320674,-0.6971418,0.5994455,0.11975581,-0.20920636,0.15654112,0.39000225,-0.107189596,0.012410323,0.029899552,0.3834811,-0.42171633,0.38114795,0.38963693,-0.00016929954,0.37837696,-0.10342793,-0.14588821,-0.6345109,-0.17800348,-0.4339612,-0.25118262,0.08470996,0.05319208,0.059502542,0.12741193,-0.05493031,0.39756402,-0.20244396,0.29180002,0.12810919,-0.26224965,0.32406262,0.44367176,0.37775773,-0.26101044,0.63559365,0.039874643,-0.043662503,-0.14394896,0.15676115,0.39894828,0.22930263,0.24809039,0.058521196,-0.14964479,0.3340271,0.7139487,0.18784937,0.4592327,0.41406864,-0.01677576,0.5226687,0.06160474,0.13142598,0.073492445,-0.5794014,-0.211368,-0.08753937,0.15024634,0.3641406,0.082064524,0.33722496,-0.1474477,-0.069290236,-0.038716674,0.16215958,-0.008777708,-1.550822,0.13990408,0.18151224,0.69833934,0.5817855,-0.08555159,-0.0053480044,0.46104863,-0.16751328,0.06934833,0.35526907,0.1337007,-0.43106806,0.5864666,-0.62068903,0.3024727,-0.143943,-0.075644314,-0.14316107,0.12666154,0.2192365,0.8533484,-0.15384376,0.11140515,-0.14394183,-0.20148173,0.34729773,-0.37535864,0.2065166,-0.2998526,-0.2700349,0.62858295,0.43001992,0.2210716,-0.25426638,-0.0128824,0.059154287,-0.16369484,0.15966426,0.09145677,-0.100612365,-0.0789162,-0.6492003,-0.32794252,0.45350093,0.089067355,0.08958479,0.10661931,-0.12960193,0.061365437,-0.19547234,-0.016176939,-0.061870046,-0.8603263,-0.22180477,-0.21952473,-0.38514596,0.33254904,-0.3574554,0.23856184,0.22390978,0.062327057,-0.25409353,0.011823349,0.27665576,0.57659197,-0.04926666,-0.185037,-0.4007435,-0.08899169,0.17313373,-0.21528442,0.08506336,-0.2629319,0.0012491755,-0.53059065,0.36473313,-0.1628165,-0.14914401,0.18915975,-0.24232918,-0.009580206,0.5565323,-0.24166366,-0.09817971,0.14456718,-0.0069017187,-0.18909982,-0.08532357,-0.06460081,0.2669169,0.19181651,-0.03442438,-0.006596897,-0.05848021,-0.149815,0.26024055,0.22672662,0.4358065,0.44356632,0.08397298,-0.40329713,-0.28692377,0.07094163,0.5065097,0.15471181,-0.17938061,-0.2647096,-0.5235907,-0.114507906,0.20499587,-0.12916014,0.15258178,-0.06499996,-0.38264245,0.6968237,0.07256731,0.98322153,0.17180385,-0.3690208,-0.10688148,0.4294814,-0.020978846,-0.12795392,-0.41870177,0.9666958,0.552662,-0.096064836,-0.14339511,-0.36872327,-0.021140397,0.1510193,-0.20630375,-0.21202499,-0.012595445,-0.57740635,-0.17192027,0.18210112,0.22459027,0.03958516,-0.03779934,-0.0918823,0.3141253,0.1290726,0.60072845,-0.55821705,0.014330182,0.24145733,0.09393957,0.17191005,0.32721192,-0.27955258,0.26648998,-0.45099932,0.067316584,-0.16925064,0.071953855,0.04631702,-0.20015725,0.17379245,0.012083158,0.48424184,-0.31380102,-0.43347508,-0.05310159,0.4436187,0.12748384,0.3058097,0.72715974,-0.13933498,0.20272574,-0.0359564,0.5249131,1.2789971,-0.100094385,0.15133277,0.32034656,-0.40634868,-0.6463748,0.37425488,-0.41354114,0.2745818,-0.13921902,-0.34461394,-0.30899647,0.23933353,0.009532239,0.06272744,0.21711664,-0.55024344,-0.47506708,0.5587206,-0.3004153,-0.31710067,-0.30498517,0.15641728,0.6379595,-0.32518318,-0.04937117,-0.07489544,0.24753165,-0.2548018,-0.5789886,-0.072523035,-0.26987746,0.27310127,0.12449508,-0.18934402,0.10765512,0.10343076,-0.43382117,0.1987718,0.1081465,-0.3645276,-0.06848828,-0.20278142,-0.12248264,0.7665962,-0.19363004,0.019618027,-0.65606946,-0.5484861,-0.8935076,-0.4364741,0.36300042,0.07577236,0.035772342,-0.41718867,-0.10210203,0.019426934,0.2711384,0.07938208,-0.48704326,0.42909247,0.09696446,0.5237675,0.05240188,-0.67259073,-0.004967615,0.069482595,-0.14135322,-0.5498646,0.7081603,-0.033722185,0.64547426,0.078998595,0.07901579,-0.023895219,-0.5591863,0.1676472,-0.2696729,-0.21373081,-0.72674197,0.1968888,810 +102,0.42539883,-0.11868656,-0.33777207,-0.13093115,-0.33237296,0.2133002,-0.22732715,0.28106812,0.20873587,-0.25322336,-0.15703505,-0.06075434,0.04580999,0.36378193,-0.037437405,-0.6428803,-0.073393166,0.05523497,-0.8261413,0.3464579,-0.64921385,0.37679517,0.11698264,0.32460123,0.059560984,0.51744634,0.34125966,-0.19661152,-0.12645163,0.0015392564,-0.11349207,0.14161713,-0.5729518,0.10169597,-0.17086402,-0.26134723,0.13187891,-0.44475746,-0.16370364,-0.60443485,0.08546472,-0.81705534,0.4168187,-0.10160632,-0.05581535,0.054275025,0.011228561,0.31640065,-0.44592392,0.21917054,0.1470488,-0.19422975,-0.06662584,-0.3215388,-0.0847156,-0.34182662,-0.36370856,0.060730595,-0.5449153,-0.39625132,-0.13847108,0.16297999,-0.34554833,0.07628311,-0.10554904,0.09938111,-0.42546132,0.027371211,0.2734536,-0.29894155,-0.0022700205,-0.42253125,0.17174992,-0.076741606,0.5422605,-0.12846455,-0.16584304,0.33852524,0.31356114,0.49399814,0.24902219,-0.22469741,-0.036998373,-0.22342071,0.17460617,0.50929934,-0.17772454,-0.18736608,-0.26884663,-0.022085499,0.19021899,0.26692396,-0.0023478698,-0.25920594,-0.08263756,-0.109940775,-0.1553813,0.25435245,0.46630186,-0.40338433,-0.3479849,0.376166,0.58231354,0.12902199,-0.12043083,0.06599213,0.032041647,-0.50522804,-0.144974,0.12872165,0.025649415,0.42354065,-0.1388539,0.17331053,0.85417444,-0.21261248,0.07810931,-0.2006955,-0.117432974,-0.10120295,-0.25062978,-0.08400174,0.13698983,-0.4055211,-0.0567931,-0.18630075,0.699516,0.3185149,-0.67575574,0.46222192,-0.48668814,0.11806388,-0.106298886,0.69566923,0.6584005,0.3144536,0.20363209,0.8253819,-0.35982636,0.3483674,-0.19601087,-0.39504445,0.034778535,-0.20061536,0.012609009,-0.44107175,0.28542444,-0.106152885,0.10751754,0.15371594,0.22856861,-0.5624112,-0.04466591,0.20692481,0.68710667,-0.3608317,-0.093755394,0.69149435,0.95540094,0.7260324,-0.076661915,1.2027583,0.51577604,-0.27075154,0.1047689,-0.3157501,-0.63729215,0.1679855,0.38124102,0.23264563,0.27081826,0.030991279,-0.10915092,0.19422741,-0.30653808,0.0013903305,-0.094571516,0.2510988,0.03273807,0.0852866,-0.38842303,-0.11945513,0.004222829,-0.1747113,0.13926849,0.25230187,-0.16393338,0.36980987,0.016499497,1.5565495,-0.07825282,0.049693078,0.12274867,0.5087435,0.30415362,-0.15925707,-0.14688721,0.47586152,0.36368316,-0.16258352,-0.6131965,0.19429442,-0.29113302,-0.59617627,-0.042983714,-0.36081785,-0.07671534,0.013556272,-0.33086216,-0.1616683,0.037213914,-0.23704648,0.5088314,-2.8507075,-0.26914302,-0.050838556,0.3158658,-0.4181286,-0.23031348,-0.26781872,-0.4268815,0.16802588,0.27865964,0.4303275,-0.5849792,0.4250155,0.3379152,-0.37672725,-0.22037151,-0.6132187,0.025591984,-0.014675738,0.44690633,-0.04579316,-0.14560492,-0.24095832,0.026846558,0.63118064,-0.027055766,0.13858804,0.3789987,0.3811931,0.3159352,0.4723735,0.053315908,0.6244072,-0.36894834,-0.27843446,0.45615438,-0.22618645,0.321602,-0.11211361,0.18467247,0.38455293,-0.41852242,-0.82325953,-0.60963273,-0.38513887,1.0602635,-0.4266636,-0.37210965,0.15225756,0.116534635,-0.042403296,0.14229594,0.4073022,-0.16315949,-0.0053817155,-0.6511532,0.17660698,0.061119784,0.2561745,0.06851205,0.019947097,-0.23331589,0.561604,-0.21255246,0.6103228,0.18168384,0.1526204,0.065768585,-0.2631477,0.11338255,0.9453566,0.24512182,-0.039871093,-0.096363544,-0.3142675,-0.09026012,-0.2562681,-0.016898744,0.4162519,0.793456,0.09368798,0.04923463,0.26324445,-0.06027136,-0.013162419,-0.11345107,-0.17126358,0.005925037,0.029282998,0.4941638,0.51359797,-0.1030321,0.4241857,-0.18265226,0.36685586,-0.0803185,-0.45780933,0.5823362,0.42728642,-0.2162975,-0.041170754,0.37063336,0.36757857,-0.45875224,0.45134538,-0.6737037,-0.27707046,0.64773875,-0.15992686,-0.3452431,0.24760923,-0.112250455,0.15744835,-0.81955564,0.2683919,-0.18079741,-0.23447302,-0.36094087,-0.1840653,-3.305131,0.087217584,-0.076384075,-0.12680964,-0.16272025,0.0049770083,0.23571923,-0.5861998,-0.41096628,0.12661257,0.122571915,0.5017207,0.025306301,0.1495772,-0.34889308,-0.19770879,-0.12115578,0.13218065,0.053001486,0.27256218,-0.11749895,-0.36737338,-0.053602625,-0.1384836,-0.47768563,0.1745366,-0.65049076,-0.4219525,-0.0989358,-0.45153475,-0.16739517,0.6373312,-0.44380984,0.010480832,-0.2222836,0.07550449,-0.4036387,0.116503365,0.22857271,0.20128761,0.18405622,-0.04769756,-0.008077584,-0.41377458,0.4948206,0.05838971,0.38157165,0.20624113,-0.011882234,-0.033763345,0.3705169,0.47423756,-0.13710877,0.8551024,0.20991698,-0.102311805,0.23967102,-0.3004473,-0.16899616,-0.536245,-0.43780503,-0.14130099,-0.36868855,-0.5811453,0.028654855,-0.3581097,-0.8108634,0.5317662,0.061882198,0.26140553,-0.0637408,0.36924154,0.47159258,-0.21901149,0.03192593,-0.04657487,-0.09073763,-0.5075275,-0.34222808,-0.6166827,-0.52727246,0.20929277,0.90039384,-0.30053276,-0.06322916,-0.19586743,-0.19602758,-0.07216987,-0.05582376,0.11516777,0.35419115,0.53516865,-0.07620561,-0.5639105,0.4597179,-0.13455114,-0.20740694,-0.4970423,0.017412243,0.5724218,-0.7686093,0.52060217,0.2731513,0.14633928,0.27716333,-0.43566227,-0.19293033,-0.016040307,-0.18470494,0.3804263,0.035445746,-0.7515699,0.5861634,0.23215306,-0.35621116,-0.6570254,0.2591286,0.10677542,-0.29236937,0.110938266,0.29605526,0.08380024,-0.2316238,-0.25077647,0.16126831,-0.510278,0.23990755,0.22826841,-0.029925363,0.3581638,-0.11425988,-0.49370754,-0.6125909,-0.073806055,-0.4740929,-0.2715494,0.30124632,-0.05739933,0.07023006,0.092785135,0.07596971,0.4396779,-0.37146658,0.08754934,0.03870228,-0.24280897,0.16135159,0.3141566,0.25171974,-0.3878485,0.4296425,0.08823821,-0.090515524,0.22976921,-0.07881284,0.47500902,0.052458636,0.2049959,-0.20008942,-0.20353158,0.3492087,0.77932966,0.21686059,0.3290612,0.0011768341,-0.2047055,0.5516677,0.065363966,0.093292385,0.08047208,-0.34558576,-0.030224964,0.18005179,0.12327503,0.4322285,0.43301424,0.41353935,0.047177896,-0.1714503,0.07265602,0.10184809,-0.059203625,-0.70043933,0.16245154,0.13641824,0.6988267,0.34008655,0.067824036,-0.11449071,0.516457,-0.3006673,0.17810163,0.28183177,-0.19811659,-0.50158983,0.607585,-0.44869223,0.3799998,-0.14078648,-0.09785128,0.2613753,0.13034101,0.3318767,0.80649143,-0.15319628,0.02270146,-0.01967405,-0.1026438,-0.008366564,-0.22895245,-0.027230866,-0.3267364,-0.2728842,0.6742587,0.33957246,0.2554667,-0.21696962,-0.038154293,0.0268125,-0.12220001,0.116820365,-0.035435814,0.12706527,0.22300671,-0.4105134,-0.37321466,0.6192251,0.055006247,0.06691663,-0.090215564,-0.35589808,0.15749323,-0.24238636,-0.04273086,-0.10084943,-0.5088185,0.0911667,-0.21697968,-0.5043533,0.20976372,-0.009010479,0.14485373,0.15983579,-0.013311885,-0.19458197,0.3096893,0.10365349,0.95593256,0.040368445,-0.4035102,-0.3952001,0.08296221,0.33388558,-0.2962911,0.043693896,-0.412669,0.032431744,-0.61670494,0.55375874,-0.17243989,-0.3237045,0.26800942,-0.20963609,-0.11296271,0.4971839,-0.058722727,-0.04569775,0.059452347,-0.11215425,-0.46228257,0.10950923,-0.40112358,0.14309707,0.2598241,-0.06798719,-0.10262041,-0.18266343,-0.13568321,0.48821387,0.13762504,0.36319232,0.21369042,-0.04971265,-0.14349222,0.08797096,0.20595704,0.36123163,0.0558733,0.0064061657,-0.19433185,-0.45730013,-0.24046767,0.28144646,-0.15530476,0.2527451,0.10391773,-0.31765378,0.76664627,0.030692901,1.0230694,0.06949716,-0.276769,0.07344928,0.51396084,-0.025314342,0.06804544,-0.43577874,0.85516685,0.5774386,-0.018704973,-0.04366698,-0.29398522,-0.2307772,0.2814028,-0.36907881,-0.04972417,-0.07472975,-0.5808923,-0.5348854,0.31217763,0.041677624,0.2094175,0.057813335,0.010371489,-0.008650815,0.13001417,0.33682483,-0.6238061,-0.3833077,0.22164342,0.23164237,-0.044845093,0.18907398,-0.38087258,0.48300183,-0.71333784,0.10452164,-0.45823675,0.07757168,-0.072883576,-0.2399593,0.10095192,-0.030181006,0.37948394,-0.35173273,-0.5246853,-0.04232402,0.32992804,0.07987078,0.26360795,0.6210622,-0.27419752,0.05534777,0.11649259,0.53466254,1.090034,-0.32189092,0.15071966,0.39940625,-0.25356615,-0.5112688,0.26792413,-0.33317578,-0.0007567033,-0.1979152,-0.36616763,-0.35544083,0.3950214,0.17838016,-0.021225099,0.08351693,-0.5594808,0.010440424,0.33276552,-0.2279147,-0.30610126,-0.25244212,0.38590258,0.9563575,-0.3160799,-0.2706975,0.15507933,0.26886106,-0.43650997,-0.55316687,-0.072950795,-0.24687853,0.30496785,0.13983937,-0.17962569,0.03109717,0.1136675,-0.3822685,0.1027253,0.2636761,-0.35590565,0.06136597,-0.12582096,0.0786904,0.82030857,-0.10096664,0.0025468543,-0.6919892,-0.42543307,-0.9102224,-0.62110764,0.39591384,0.14355947,0.06427489,-0.24987683,0.08243938,-0.12572153,-0.2984651,0.14933282,-0.5631642,0.3710916,0.119253404,0.45116282,-0.29029253,-0.8719558,0.11797008,0.11193742,-0.24991074,-0.61173546,0.46947414,-0.12822779,0.90437174,0.045978814,-0.2010035,0.09139241,-0.4996184,0.10508945,-0.49704075,-0.0033506379,-0.809886,0.1820975,818 +103,0.6541018,-0.21968713,-0.5107881,-0.15398355,-0.2663571,0.24696185,-0.20778185,0.60876465,0.1475476,-0.5604508,-0.05432493,-0.12490168,0.015094146,0.27080673,-0.10271591,-0.41598257,0.11863413,0.1943863,-0.7231202,0.5739327,-0.52970093,0.2521486,0.005938273,0.44361097,0.16779228,0.29577574,-0.007546097,-0.11418471,-0.24832267,-0.20236337,0.052831694,0.32778752,-0.5518873,0.13547999,-0.2765451,-0.2531402,-0.06871591,-0.54149455,-0.2678809,-0.7262068,0.1286824,-0.85047126,0.4796096,-0.06198481,-0.32705778,0.3322934,0.08708027,0.22136872,-0.2531677,0.08762482,0.13853638,-0.11744621,-0.13544811,-0.23506263,-0.18074581,-0.36712658,-0.5876632,0.10331866,-0.39939058,-0.07285651,-0.16665816,0.12502886,-0.18886876,0.022416428,-0.039207336,0.4135444,-0.32682657,0.13958365,0.06321473,-0.05753613,0.087039776,-0.5530472,-0.099669725,-0.14897391,0.3591038,-0.22729234,-0.19748148,0.18648142,0.24936458,0.53481233,0.009242337,-0.09768118,-0.24099624,0.015435703,-0.010125563,0.5279285,-0.13137534,-0.40367514,-0.112235725,0.009420721,0.32361495,0.050632525,0.25030926,-0.1826496,-0.20536579,-0.22733395,-0.22897457,0.33963636,0.4723028,-0.3513404,-0.23576745,0.36869097,0.51908696,0.14738436,-0.24724287,-0.011152549,-0.111941375,-0.5450516,-0.10436094,0.12393278,-0.14903863,0.46617815,-0.17458007,0.14744253,0.5369996,-0.16874416,-0.08260846,0.20378646,0.07630622,0.11011581,-0.11735602,-0.23196733,0.15907985,-0.31175733,-0.020813938,-0.25495636,0.5792715,0.20060924,-0.7428951,0.29734287,-0.44859946,-0.06768134,-0.028035454,0.4708507,0.69692564,0.57000685,0.15488361,0.49902308,-0.2539453,0.14648604,-0.19895165,-0.2742371,0.13247424,-0.21496233,-0.09285267,-0.43408072,0.14934108,-0.109244704,-0.21084778,0.07312644,0.46064785,-0.44318694,-0.16454706,0.20533457,0.82101154,-0.28932852,-0.21761657,0.87099135,0.88678646,0.8699677,0.035117116,1.0487971,0.22470373,-0.12234917,0.16598049,-0.27364573,-0.60629475,0.34705472,0.3431216,-0.027302235,0.27552956,0.07936905,-0.12707072,0.26952186,-0.2593834,-0.04346863,-0.17465125,0.08925878,0.06013915,-0.030194461,-0.2986235,-0.30778205,-0.023622958,-0.009594407,0.16375159,0.20691153,-0.28901345,0.43135625,0.0057770107,1.7552388,0.033306282,0.04109387,0.052071206,0.50187004,0.18228774,-0.23520342,-0.13787144,0.39745784,0.2765667,0.072479,-0.3862611,0.072748005,-0.10062008,-0.43315935,-0.09177329,-0.45351613,-0.11573864,-0.0986177,-0.58691233,-0.1367512,-0.07139419,-0.21588212,0.4064551,-2.681942,-0.19143073,0.040981114,0.34841403,-0.33449495,-0.41430467,-0.25622272,-0.47218698,0.24148649,0.2759674,0.49361783,-0.6277401,0.5368138,0.19308172,-0.5442016,-0.2132847,-0.51211256,-0.1150403,-0.018341742,0.36357766,-0.09741457,0.03534059,0.12144899,0.08165072,0.57720673,-0.102624625,0.099476464,0.286786,0.41489425,0.19993375,0.42413172,-0.12675792,0.5277511,-0.30685365,-0.26172927,0.37496686,-0.43691733,0.22199154,-0.0068517476,0.19246562,0.38151842,-0.523551,-0.89052814,-0.7154664,-0.015072003,1.2517762,-0.15694737,-0.2707518,0.05609677,-0.28238547,-0.3154015,0.029710837,0.45277065,-0.07836126,-0.09875543,-0.7577566,-0.10292578,-0.02411431,0.33139402,-0.012524655,-0.01815151,-0.4170949,0.42720017,0.013491403,0.49512362,0.13062492,0.18398611,-0.15717584,-0.45244795,0.061465364,0.97429585,0.27241856,0.19399731,-0.2807381,-0.28264117,-0.36775634,0.14853281,0.01441347,0.56407905,0.517573,0.044188224,0.13945358,0.19835737,-0.032317556,0.108062245,-0.14292406,-0.22175775,-0.2525317,0.11898869,0.4753037,0.4861041,-0.10265741,0.5313288,-0.17146474,0.35912022,-0.07834373,-0.40983397,0.3876515,0.91601354,-0.22518066,-0.18737204,0.5098989,0.4687329,-0.20771956,0.49063605,-0.53533727,-0.46204185,0.31553692,-0.18086961,-0.20852065,0.39716265,-0.22470772,0.22831583,-0.8853565,0.3068524,-0.32875076,-0.35112762,-0.49536344,-0.023127437,-2.7339342,0.17235279,0.010259673,-0.29083455,-0.06903369,-0.2004476,0.1393044,-0.53430986,-0.41722378,0.085668705,0.08342473,0.7224754,-0.045084976,0.062435534,-0.2938376,-0.4211092,-0.34662968,0.15101233,0.1873096,0.44514686,-0.11424271,-0.4482909,-0.062159754,-0.27563205,-0.21563108,0.046499602,-0.6918578,-0.51271904,-0.15400332,-0.44410223,-0.19886903,0.60638535,-0.29012656,0.07316408,-0.11712061,-0.007935593,-0.043132517,0.17193045,0.047146082,0.13696194,0.18661666,-0.13802482,0.065770194,-0.2582008,0.250432,0.18710022,0.17546317,0.46061543,-0.102234185,0.18982922,0.5682908,0.61220455,-0.23778419,0.78363395,0.40477464,-0.03531269,0.34081918,-0.2755904,-0.28144422,-0.453652,-0.14730169,-0.078422636,-0.41694084,-0.32664305,-0.019565128,-0.3498039,-0.8335277,0.5294834,-0.113375805,-0.019070387,-0.08292483,0.4008155,0.5962893,-0.23290345,0.0019191131,-0.13966708,-0.11368188,-0.48479906,-0.39260507,-0.5108473,-0.4080039,-0.07571017,1.1257038,-0.2311548,0.08997683,-0.006199777,-0.036372315,0.0069699567,0.087493435,-0.04060833,0.058292355,0.498991,-0.19405335,-0.62744457,0.40101314,-0.29325232,-0.16498384,-0.36604437,0.3361779,0.51101184,-0.6290765,0.52368456,0.35145998,0.08667436,-0.21531266,-0.5357698,-0.18545017,-0.00044609606,-0.12290272,0.3623834,0.16667077,-0.8329589,0.44533658,0.21579303,-0.26338658,-0.69748926,0.52076,0.02594095,-0.36567372,-0.027071308,0.32321554,0.12852949,0.016936505,-0.40034923,0.14687505,-0.5183642,0.25739378,0.24373618,-0.016983032,0.1790188,-0.26716134,-0.1408388,-0.6689546,-0.024672993,-0.42066792,-0.39669633,0.25390187,0.073173195,0.14920075,0.17034051,0.05049386,0.31547713,-0.39434037,0.06450375,-0.06819604,-0.20099412,0.27887475,0.37770498,0.5266674,-0.41192916,0.48797947,0.07590019,-0.14797552,0.06528226,0.12491106,0.44713888,0.06787443,0.21576245,0.043205455,-0.14462036,0.18618527,0.6879628,0.2528902,0.43065116,0.00023195893,-0.28170335,0.24828902,0.05497385,0.20796475,0.007923812,-0.4657665,-0.0540161,-0.2136661,0.114467375,0.4684744,0.12654968,0.36328903,-0.08172445,-0.30536336,0.02866603,0.15995795,0.026850354,-1.1507199,0.20682195,0.12287993,0.8028129,0.302063,0.06098792,0.0006108731,0.7355128,-0.2581183,0.16643614,0.33110029,-0.15489513,-0.5393885,0.506535,-0.58785075,0.38463128,0.023495857,-0.027957736,0.08673536,-0.16590394,0.5032429,0.78369164,-0.13660723,0.16823706,0.13907045,-0.34118682,0.055755537,-0.46772313,0.0038892347,-0.56872654,-0.13666698,0.6381011,0.35573348,0.38170928,-0.17770961,0.070002206,0.033878252,-0.1383288,0.067455344,0.19975172,0.1928524,0.05271142,-0.5445639,-0.1368584,0.57484907,-0.055852182,0.092160046,0.12606476,-0.22865367,0.27069208,-0.0552955,-0.028057784,-0.14410748,-0.6014015,-0.13884741,-0.4173411,-0.27702048,0.34771448,-0.1029896,0.1713317,0.24905324,0.036563326,-0.309437,0.46989796,0.22304979,0.7508426,-0.018675782,-0.28000546,-0.41972232,0.25591803,0.2135003,-0.23533112,-0.12401558,-0.31779677,0.108121954,-0.5847166,0.37768477,-0.07013999,-0.24768107,-0.014885947,0.034656577,0.10998137,0.4199006,-0.018989526,-0.020491377,0.025137432,-0.034519155,-0.39625305,-0.06258191,-0.09053819,0.20628372,0.43098807,-0.25175607,-0.12918848,0.030804954,0.046702523,0.44761103,0.0147769675,0.42385116,0.33126053,0.08639587,-0.24719478,-0.004369594,0.27356225,0.4674477,-0.016508602,-0.13380858,-0.37300053,-0.31260163,-0.29189593,0.20812374,-0.10192607,0.26911142,0.19945739,-0.14720066,0.78065187,0.0057423897,1.0319219,-0.04887678,-0.3042451,0.17132244,0.4439131,-0.015214473,-0.011114296,-0.37531,0.96962965,0.44885197,0.056217343,-0.02157192,-0.3209491,-0.1538907,0.045957923,-0.2452062,-0.23458743,-0.094980754,-0.56650573,-0.35056105,0.2532425,0.22164175,0.27478603,-0.15689626,0.21055071,0.20302054,0.035399705,0.070166565,-0.48858958,-0.24357921,0.20664778,0.36981156,-0.034245986,0.05174354,-0.47885486,0.34966695,-0.5777326,0.0054173674,-0.16445932,0.15541896,-0.05139462,-0.41362908,0.19789419,0.09165498,0.3506148,-0.43944055,-0.43258002,-0.3286823,0.45891985,0.04898594,0.15634696,0.49177018,-0.23822775,0.08141133,0.09286061,0.47968757,0.90276873,-0.1601554,0.021339782,0.4045539,-0.31508633,-0.6502138,0.22375916,-0.29258275,0.3929177,-0.1257654,-0.11131695,-0.57425034,0.38434502,0.17701936,0.11193045,0.0003447011,-0.4623374,-0.07076221,0.44243187,-0.22217661,-0.26047498,-0.32708588,0.18731606,0.5591531,-0.23543756,-0.3050786,0.1581645,0.3036921,-0.31286794,-0.5223404,-0.24604023,-0.4239165,0.18518683,0.022523453,-0.24114615,-0.18457063,-0.08894286,-0.39071593,0.24037172,0.28627974,-0.3173495,0.081878275,-0.43194765,0.018592887,0.8806103,-0.14752847,0.1071725,-0.47471887,-0.46952504,-0.8070438,-0.4431574,0.3895465,0.15615892,-0.041397307,-0.6599279,0.016559623,-0.21563879,-0.42735565,-0.018264377,-0.40845746,0.46232796,0.10090193,0.16639888,-0.15292753,-0.83251226,0.21534817,0.1531495,-0.33795372,-0.5644792,0.364312,-0.009413816,0.988335,0.10930303,0.13417056,0.34611535,-0.48508054,-0.13902542,-0.2660752,0.09334901,-0.5890738,0.07664703,858 +104,0.58812827,-0.12775876,-0.44466925,-0.0774823,-0.3554784,0.27181,-0.23136866,0.23933715,0.32915872,-0.16784894,-0.124166235,-0.14798585,-0.18948634,0.20581464,-0.1606798,-0.54456484,-0.24249229,0.081674114,-0.5731441,0.742947,-0.34088293,0.43806198,-0.030153438,0.2909158,0.46536222,0.2689349,0.028982326,0.018468149,-0.19522637,-0.3142919,-0.16385508,0.22062987,-0.58060825,0.23820774,-0.27278274,-0.27803633,-0.13905989,-0.48750585,-0.40677628,-0.78175646,0.20320252,-0.74843,0.52261895,-0.044281084,-0.20709875,0.14501868,0.23757151,0.2806676,-0.041803055,-0.006389519,0.1596854,-0.27134514,-0.12616874,-0.096215695,-0.36424837,-0.5328293,-0.6432231,-0.02280489,-0.5357187,-0.19807231,-0.34139156,0.21745837,-0.33630192,-0.13272941,-0.030222565,0.6013216,-0.50494564,0.26062262,0.04928175,-0.11913951,0.021296237,-0.634555,-0.15596266,-0.10921042,0.20245662,-0.013013443,-0.13194466,0.2202661,0.25434497,0.40446943,0.12316422,-0.22903442,-0.56162846,-0.015822858,0.2510219,0.4329419,0.015774881,-0.24359174,-0.19657958,-0.12378688,0.25084943,0.2599443,0.18374473,-0.3699869,-0.111326754,-0.071244225,-0.23209864,0.5844508,0.48372787,-0.20370461,-0.2079261,0.3287568,0.4993152,0.34348553,-0.35829717,0.16506763,-0.14249769,-0.31981722,-0.011361621,0.15386868,-0.11831193,0.544976,-0.05434861,0.18871991,0.63681483,-0.069253564,-0.16562714,0.033058915,0.07201585,-0.092812665,-0.08148308,-0.14511248,0.27785942,-0.32562706,0.18983474,-0.10409304,0.6774007,0.089542694,-0.7135254,0.27622014,-0.5592301,0.09214661,0.13135016,0.5815232,0.71638846,0.4702698,0.2985849,0.6440659,-0.22779605,0.11699411,-0.12263481,-0.23789775,-0.109592564,-0.25698853,0.09471743,-0.5399883,-0.01667314,-0.11480665,-0.018238246,0.057077814,0.70844823,-0.4535922,-0.15863274,0.14317155,0.7778896,-0.20589061,-0.18902948,0.90713686,1.0453787,1.1790994,-0.0020965654,1.0234652,0.21948817,-0.20846868,-0.06046358,-0.41500992,-0.56720495,0.2480546,0.13969234,-0.42973885,0.3315871,0.12778413,0.084946595,0.4598759,-0.37313318,0.10454822,-0.052096628,0.11597434,0.24887887,-0.12816791,-0.3538173,-0.22920415,0.12428428,0.13692102,0.13779192,0.21541281,-0.3076273,0.3604995,0.11591561,1.3802695,0.06405687,-0.08071697,0.07889178,0.47050858,0.14829211,-0.21894355,0.004107021,0.27474332,0.39976096,0.01873234,-0.5339502,0.07585354,-0.23616476,-0.43253204,-0.20897317,-0.30704665,-0.26751184,-0.035713755,-0.28123388,-0.28015187,-0.14109083,-0.5573642,0.45956954,-2.6747444,0.042559993,-0.14298683,0.18373623,-0.20794468,-0.30782714,-0.038154654,-0.59120244,0.26497644,0.260865,0.36429274,-0.5821587,0.4145006,0.45544738,-0.6684066,-0.13397576,-0.51985717,-0.021281306,-0.008606303,0.5768263,-0.06116588,-0.018620778,0.030519865,0.13888215,0.56615436,0.09988888,0.19602296,0.38887393,0.43901402,-0.18071738,0.5528281,0.030726755,0.542827,-0.219877,-0.20696324,0.5624935,-0.42835295,0.25322497,-0.28080317,0.08975373,0.43511337,-0.36313856,-0.855569,-0.6059754,-0.3408087,1.2189881,-0.301441,-0.61292106,0.21429887,-0.25149626,-0.19148266,-0.07936469,0.55800825,-0.10605586,0.0029549114,-0.683535,-0.020383198,-0.11935154,0.16257937,-0.099780254,0.029081132,-0.37953657,0.73969716,-0.028530348,0.5370716,0.22122778,0.3659576,-0.38516104,-0.5209319,0.1959804,0.88605577,0.41067198,0.0973403,-0.37313384,-0.12082407,-0.23154718,-0.18950136,0.05605744,0.7194114,0.6291835,-0.1351638,0.14233807,0.23741056,-0.09407012,0.09028731,-0.28329867,-0.24411003,-0.14814644,0.061996378,0.5068819,0.67418957,0.028866611,0.5477464,-0.07587123,0.32397017,-0.076331064,-0.36886474,0.44208765,0.81396693,-0.22263388,-0.39645994,0.5019695,0.54837185,-0.25783932,0.4889415,-0.5574395,-0.39669302,0.5164605,-0.12922353,-0.55505544,0.20778035,-0.3855788,0.04302606,-0.77891415,0.13573027,-0.21722384,-0.59821314,-0.46704423,-0.22478661,-3.063589,0.05045008,-0.15952902,-0.21980323,-0.115745604,-0.16789451,0.10694479,-0.52391344,-0.56175476,0.03913343,0.18026656,0.5867936,-0.06526787,0.07980977,-0.26844263,-0.3992361,-0.32474643,0.30656448,0.06470237,0.5006744,-0.2807629,-0.52776325,-0.08821604,-0.14883305,-0.31358933,-0.19547305,-0.50472915,-0.33525276,-0.06014369,-0.5212026,-0.19781259,0.5606669,-0.5275663,0.05934532,-0.27305692,-0.014809534,-0.0046450347,0.18433142,0.14151429,0.22041453,0.14204428,-0.1635142,0.03357096,-0.24722238,0.377204,0.031957548,0.33961034,0.43449754,-0.023805052,0.29736727,0.37311208,0.5773455,-0.2207575,1.1034956,0.4391381,-0.13447538,0.4024793,-0.21574047,-0.2980214,-0.7035338,-0.15044057,0.08225542,-0.4839698,-0.51649845,-0.12881327,-0.20501801,-0.86071444,0.44289038,0.029148648,0.45719525,-0.12563491,0.121831566,0.5080962,-0.10576803,-0.06036387,-0.09463308,-0.14656915,-0.2786057,-0.50587326,-0.60126114,-0.59984845,-0.025194734,0.96122825,-0.07374351,-0.07780422,0.24314044,-0.38561034,-0.06150953,0.23089716,0.19161287,0.11115428,0.509347,0.04710031,-0.6284565,0.42911625,-0.23898253,0.13030864,-0.5643142,0.12554157,0.48106512,-0.5956098,0.477149,0.17077088,0.1913878,-0.21169373,-0.63864684,-0.14580452,-0.050237108,-0.2282151,0.48882684,0.36845034,-0.68771183,0.42562518,0.1334478,-0.12965868,-0.7161169,0.5153803,-0.12138371,-0.22599036,-0.05950305,0.50791097,0.19264527,-0.0162692,-0.124682605,0.23091327,-0.3236879,0.3015837,0.13098186,-0.15365359,0.23325782,-0.2089715,-0.25479484,-0.79641366,0.14815092,-0.32011816,-0.4365111,0.19195724,0.08076924,0.1587605,0.32407165,0.020939223,0.31411645,-0.16430245,0.13183323,-0.22853903,-0.17538625,0.34282213,0.4692681,0.66146326,-0.4499301,0.54937387,0.11000916,-0.11464988,0.11578793,0.11528007,0.39530274,-0.093713894,0.40695578,0.18727304,-0.2701365,0.21263269,0.76581866,0.31563014,0.5205246,-0.107402876,-0.32711667,0.27553955,0.11991364,0.21752867,-0.14034867,-0.6268362,-0.092992,-0.2970225,0.21922565,0.4795628,0.040731844,0.46567905,-0.1222716,-0.100928806,0.13862345,0.14386205,-0.051870324,-1.2023263,0.19358256,0.23772955,1.0081828,0.4370237,0.065045245,0.008040518,0.5758407,-0.2361058,0.07937819,0.5236043,0.05506747,-0.40560424,0.52574986,-0.74658716,0.5896616,-0.06633451,-0.04174667,0.2144011,4.0266663e-05,0.46432343,0.7443783,-0.2825951,-0.045007214,-0.021165587,-0.41806716,0.06857444,-0.3156833,0.2830441,-0.5407581,-0.26792282,0.7628062,0.6581696,0.31440133,-0.25059244,0.023889484,-0.0035440773,-0.20575511,0.062320184,0.0698785,0.01284273,-0.25502515,-0.6008708,-0.11192246,0.55598515,-0.16958621,-0.071725,0.16370265,-0.19222024,0.19276053,-0.11064319,0.024045322,-0.051142357,-0.6846517,-0.12992665,-0.19004093,-0.45275438,0.45989636,-0.19319203,0.30111557,0.18737604,-0.020317925,-0.3581281,0.42292055,0.23453012,0.69674575,0.038222868,0.046793655,-0.29411912,0.08482614,0.23019521,-0.1857355,-0.20717452,-0.19278774,0.17317818,-0.61775845,0.2998767,-0.27526507,-0.38054383,0.027940858,-0.16394201,-0.04445718,0.6255308,0.088282846,-0.10137054,0.20524141,-0.06667968,-0.2758277,-0.1436696,-0.15348618,0.28764522,0.08061458,-0.2727039,-0.11110856,-0.11029232,0.011189379,0.1609177,-0.11725498,0.38634053,0.31554383,-0.076769084,-0.34266794,0.06990287,0.17540172,0.5184508,-0.018538307,-0.0032030493,-0.16865575,-0.2666138,-0.47841305,0.29769772,-0.100778416,0.34542343,0.09350271,-0.3829837,0.77454746,0.07538439,1.2026343,0.08170263,-0.51012987,0.16082269,0.50595933,0.0023755096,-0.04215586,-0.23518695,0.95601904,0.5195142,-0.03351897,-0.14728962,-0.260037,0.08388785,0.17742468,-0.28187448,-0.1552006,-0.041219007,-0.60164094,-0.030939326,0.16261303,0.1356484,0.03580328,-0.063644916,-0.1167583,0.26201868,0.17089501,0.3619384,-0.4571335,-0.14803278,0.21938702,0.22933596,-0.050607916,0.06860021,-0.44439226,0.38339087,-0.6736665,-0.034407254,-0.23297039,0.24685983,-0.4141497,-0.1589452,0.32841635,0.05630163,0.3707587,-0.3506001,-0.44402704,-0.38224792,0.3838401,0.032391146,0.15487158,0.5406257,-0.30168858,0.08286802,0.017345004,0.42939433,0.95785517,-0.29773915,-0.10926575,0.23999438,-0.51729095,-0.6449422,0.2605083,-0.490132,0.15260762,0.07740872,-0.2552133,-0.32503924,0.3139645,0.12568448,0.05097347,0.07293315,-0.54969704,-0.0046864785,0.18226147,-0.30536214,-0.18927911,-0.18641388,0.11251762,0.6195189,-0.28623503,-0.38593698,-0.031458817,0.35647246,-0.2250824,-0.56624895,0.07458049,-0.18609788,0.36110088,-0.044600785,-0.36586112,-0.17798084,0.081953086,-0.5086868,-0.04798849,0.44137967,-0.29776245,-0.080298826,-0.26036388,0.055347126,0.8397384,-0.22826463,0.27606085,-0.50106335,-0.5184541,-0.8670707,-0.4277777,0.10271616,0.31319016,-0.12071779,-0.5841864,-0.09237002,-0.33461213,-0.06378932,0.09026867,-0.50080216,0.33959448,0.23282677,0.38008288,-0.17142908,-0.8962599,0.044453293,0.17260309,-0.11834764,-0.5428775,0.51393306,-0.087383136,0.71964586,0.09765517,0.12408381,0.18454073,-0.74518335,0.098056614,-0.10924809,-0.10810253,-0.717994,0.1213667,878 +105,0.5107329,-0.13539843,-0.5319476,-0.08501698,-0.124541044,0.2175976,-0.06978446,0.32060173,0.08958614,-0.4724169,-0.16125149,-0.20870382,-0.092332006,0.4248525,-0.11703147,-0.72653055,0.012310764,0.16687301,-0.6518675,0.64627683,-0.39609897,0.4362917,0.03612752,0.21118027,0.037375465,0.29482776,0.15909842,-0.19323787,-0.22056298,-0.08821448,-0.271123,0.061802965,-0.3548799,0.043183148,-0.15129878,-0.26408184,-0.07111021,-0.28788492,-0.5440009,-0.67852527,0.36123365,-0.69928545,0.42324865,-0.14147165,-0.20360795,0.3147033,0.2813695,0.46539456,-0.18247783,0.11003925,0.10680251,0.008272596,-0.107127324,-0.19893508,-0.3372671,-0.708817,-0.5657043,0.13600282,-0.44589004,-0.28439435,-0.21900368,0.11699886,-0.41663525,-0.079610854,-0.12896301,0.38064522,-0.32836515,-0.1238724,0.24929771,-0.068344444,0.17341232,-0.60729545,-0.15729979,-0.19211113,0.25475988,-0.107704826,-0.011317344,0.38258886,0.35404137,0.49731863,0.038005218,-0.12896624,-0.33115268,-0.054489344,0.33359995,0.42063507,-0.1490507,-0.5590548,-0.06496885,0.033636868,0.11226672,-0.043863453,0.13642627,-0.14134906,-0.11861779,0.027542949,-0.292127,0.37900022,0.40584737,-0.375734,-0.40836614,0.42266804,0.50035435,0.039083913,-0.15651584,-0.082176216,-0.073366635,-0.4072877,-0.10196379,0.24490455,-0.21436365,0.36191267,-0.24600725,0.23099177,0.65547144,-0.21660925,0.044582948,-0.039231174,-0.14372009,-0.1234471,-0.04946331,-0.06296441,-0.026633471,-0.39059263,-0.067804694,-0.2896671,0.60803634,0.26601118,-0.6913855,0.33237717,-0.55578035,0.29484874,0.021564102,0.42933875,0.72142005,0.26761883,0.07260594,0.64627385,-0.35470992,0.085965246,-0.011159979,-0.4284356,0.024988063,-0.2745236,-0.03509041,-0.61373395,0.07209097,0.110301,-0.09871582,-0.047127094,0.40601283,-0.5368399,-0.14344236,0.011884697,0.89702576,-0.25226,-0.16824584,0.69093275,0.9421092,0.88679767,-0.039268892,1.3964926,0.25110593,-0.3558698,0.31344852,-0.6941551,-0.5737319,0.28035074,0.17801207,-0.2293511,0.48242968,-0.039756663,-0.10543206,0.33556074,-0.28801054,0.14892614,-0.27083993,0.022092849,0.13001546,-0.20965855,-0.25725752,-0.27801812,-0.13067278,0.02649012,0.2818855,0.17747468,-0.13066974,0.4302904,0.031691153,1.5490279,-0.062435392,0.023003854,0.013918519,0.3588093,0.14911148,0.007907497,0.14662647,0.23703673,0.41244537,0.003238365,-0.5417961,0.06000659,-0.39531428,-0.4648785,-0.23323755,-0.27841276,-0.013678908,0.08816591,-0.36837053,-0.17940673,-0.124896646,-0.25944847,0.3673071,-2.535391,-0.24916846,-0.22824776,0.31598848,-0.31553724,-0.34853128,-0.23968367,-0.4613103,0.323272,0.283201,0.44139606,-0.58248365,0.5017608,0.3253976,-0.53294206,-0.09559634,-0.49647942,-0.047055833,-0.0074731074,0.45507717,-0.112203605,-0.006049146,0.27037102,0.08845209,0.40831256,-0.1550877,0.02964732,0.24402267,0.39711106,0.08643097,0.5160356,0.14931864,0.63445973,-0.1646322,-0.21869652,0.28937858,-0.34304103,0.16636091,0.035680555,0.103164844,0.43012375,-0.3769435,-0.79936266,-0.5346132,-0.21574007,1.0755806,-0.13760436,-0.23167661,0.23916432,-0.18117765,-0.27386382,-0.114723414,0.34670368,-0.09543851,-0.10737606,-0.72088873,0.13429724,-0.07695518,0.07266622,-0.05100709,-0.13139012,-0.37173027,0.7890875,-0.0899287,0.35302317,0.22209887,0.23960137,-0.25963297,-0.52156377,0.06576674,1.0166116,0.38466686,0.06399995,-0.18422458,-0.24039188,-0.49354383,-0.1578188,0.09362295,0.3914611,0.62127686,0.03441548,0.028331505,0.29013214,-0.056351885,0.18848108,-0.14504346,-0.3207178,-0.166527,-0.028909955,0.672704,0.44419208,-0.29142103,0.6703146,-0.10617575,0.2533412,-0.12925836,-0.45344028,0.70945656,1.0769767,-0.22307882,-0.24883938,0.37584454,0.3716426,-0.32855082,0.32207757,-0.5443606,-0.4066456,0.46389252,-0.24506152,-0.22910185,0.3164351,-0.3057773,0.06549273,-1.0126384,0.2311592,-0.2826926,-0.37170613,-0.5129073,-0.057899192,-3.1557162,0.22615007,-0.3175951,-0.152146,-0.114709586,0.16613407,0.10716525,-0.61523736,-0.38329464,0.05126818,0.09471637,0.59843206,-0.030951915,0.085939094,-0.20005359,-0.22130936,-0.2920161,0.16487263,0.1251181,0.32285985,0.011087112,-0.45046374,0.09549728,-0.21378535,-0.3062187,0.03878904,-0.64900917,-0.46284193,-0.29039282,-0.50664616,-0.38154796,0.7228466,-0.24818403,0.054849476,-0.23922244,0.10042976,-0.02422762,0.35869694,0.027853657,0.12325008,0.11799314,-0.040617317,0.1382612,-0.2260968,0.21033578,0.039827697,0.47149444,0.42899796,-0.12547836,0.13844268,0.3673768,0.6848629,-0.06344209,0.6284587,0.4801961,-0.15175468,0.35007298,-0.26958615,0.028441843,-0.50209206,-0.29015577,-0.089711785,-0.23461877,-0.646513,-0.18881495,-0.42729273,-0.760758,0.2739128,-0.055123262,0.10376102,-0.11563157,0.36297414,0.51427066,-0.018702133,0.16480905,-0.1221763,-0.16580203,-0.38025528,-0.34729552,-0.5757308,-0.46857703,0.16397192,1.0632788,-0.099536955,-0.10858859,-0.08866338,-0.2601301,-0.023601536,0.06260737,0.12520681,0.13055758,0.34664452,-0.2328982,-0.69702935,0.44632325,-0.179964,-0.22157973,-0.47985393,0.21383819,0.55798423,-0.44312438,0.61511654,0.31875142,0.012834851,0.08610497,-0.37575388,-0.0035933293,0.048527323,-0.22381252,0.28596702,0.11348394,-0.5454696,0.4054001,0.24312171,-0.30750877,-0.6154437,0.57715124,0.19619988,-0.27412716,-0.10071475,0.3754819,0.10425331,-0.045565248,-0.31763887,0.27765113,-0.42979282,0.18724611,0.26451728,0.053040784,0.2525111,-0.13623363,-0.2805906,-0.71835005,0.10617715,-0.4052335,-0.13149013,0.18677385,0.22216883,0.37006307,0.036558613,-0.14231367,0.28940657,-0.38343543,0.13521187,-0.024005745,-0.25720966,0.2484743,0.23312032,0.27290457,-0.5609065,0.5019815,-0.0054565035,-0.15545225,0.021637037,0.12627348,0.52537113,0.27382076,0.39756438,0.18681103,-0.25912362,0.36384925,0.7203005,0.24851051,0.480769,0.21793815,-0.2860448,0.20765045,0.07371035,0.07906738,-0.044256963,-0.37567765,-0.18269035,0.13777852,0.2352646,0.4143044,0.05017308,0.3905698,-0.15827104,-0.28340796,-0.02246404,0.24429794,-0.0055469275,-1.2789797,0.47974676,0.3252394,0.85137045,0.3191889,-0.14090315,-0.010006268,0.6641782,-0.20851892,0.13624462,0.30244613,-0.16167015,-0.5440105,0.41584998,-0.5955521,0.36514008,-0.047925536,-0.022756508,-0.023462212,0.009211287,0.29576862,0.88720876,-0.24959616,0.018240862,-0.10469536,-0.364982,0.19548707,-0.15145183,0.1450395,-0.4727345,-0.26909083,0.6027376,0.30635542,0.16422729,-0.13029057,0.024503723,0.1392076,-0.10593657,0.15775406,0.020720422,0.2068337,-0.14430992,-0.7030549,-0.22815195,0.3904519,-0.19255602,0.1850728,0.36409461,-0.20300175,0.20848078,0.017765157,0.013871169,-0.12445854,-0.43868995,0.012622171,-0.076047026,-0.3151797,0.4898469,-0.27025193,0.26333994,0.27178156,0.017373038,-0.36679572,0.35935315,0.0828592,0.5578161,-0.10876543,-0.33410448,-0.4104327,0.18728074,0.11205082,-0.28282982,-0.008445933,-0.12006241,0.13381577,-0.532897,0.44006014,-0.0064201653,-0.2512501,0.03100498,-0.23041219,-0.029829517,0.4293626,-0.24126607,-0.07756983,0.08099085,0.003872024,-0.16036975,-0.049012348,-0.052427597,0.2915682,0.16389641,-0.091601916,-0.1120312,-0.026828066,-0.004627362,0.43078944,0.044099182,0.31175685,0.38012418,0.23772608,-0.40806285,-0.097096,0.38130403,0.32920057,0.030995652,-0.020979697,-0.31134385,-0.33292812,-0.3837692,0.14431548,-0.04905177,0.27295542,0.18585068,-0.37711853,0.6913655,0.03120472,1.3385266,-0.050516088,-0.2934553,-0.005241558,0.5860714,0.15042943,0.058246326,-0.2879097,0.8766666,0.57700413,-0.08692186,-0.13528886,-0.3503749,-0.044073258,0.10440861,-0.259829,-0.20229657,0.14186181,-0.58289754,-0.5472629,0.20810293,0.12293928,0.22513251,-0.0629628,0.1302229,0.24421221,0.042239606,0.38649833,-0.5483637,-0.40345946,0.13014089,0.18971746,-0.020033479,0.22741961,-0.44743377,0.30776033,-0.58161163,0.08293394,0.0047439337,0.19133857,0.030166484,-0.2229146,0.25902283,-0.051910643,0.4001264,-0.28081995,-0.33977827,-0.30571574,0.55371493,0.007773401,0.1489948,0.62973326,-0.2816981,0.024402011,0.16079903,0.60420144,1.2924244,-0.16725759,0.06753758,0.3053261,-0.31179503,-0.68253064,0.33886462,-0.1983547,0.20617454,-0.11249997,-0.34141827,-0.47862643,0.43296826,0.11512633,0.11040968,0.017655825,-0.4981171,-0.32506847,0.39986032,-0.38332087,-0.24245472,-0.31499195,0.2000882,0.61217386,-0.30550027,-0.2423485,0.17221501,0.2712014,-0.29242933,-0.5954195,-0.046305653,-0.26586884,0.33672398,0.17216137,-0.16085061,-0.055261604,0.06390799,-0.35940263,0.26455536,0.28901738,-0.3857232,0.03472265,-0.30178636,-0.28834426,0.8483459,-0.26127777,0.22477223,-0.63292503,-0.41764674,-0.744998,-0.5977081,0.37536797,0.11122017,-0.15292734,-0.59607834,-0.1836682,0.08947627,-0.15419814,-0.010855425,-0.2583772,0.34257433,0.05894001,0.2506348,-0.13563669,-0.8418362,0.016799927,0.15724,-0.119813174,-0.7016533,0.4169967,-0.01760216,0.9702605,0.17536101,0.124995306,0.43698505,-0.4679845,-0.07568658,-0.179683,-0.16405669,-0.7017271,0.007145051,888 +106,0.45747355,0.026348911,-0.5914605,-0.07351533,-0.36724204,0.043908328,-0.20476288,0.5179207,0.22619572,-0.33225095,-0.16697252,0.075641975,-0.05905582,0.31490213,-0.17286211,-0.59990776,0.17168203,0.16795897,-0.49143034,0.5339091,-0.30693236,0.27264127,-0.08967416,0.41336048,0.13680406,0.3729481,-0.03575934,-0.013168499,0.0022901632,-0.15259337,-0.077417485,0.37544778,-0.4926339,0.27447343,-0.14289096,-0.26018938,-0.010860451,-0.41636503,-0.27380872,-0.80407774,0.22620556,-0.5664542,0.4407174,-0.1039857,-0.29285002,0.0754085,0.22736324,0.38912293,-0.057379045,-0.18857297,0.08819914,-0.090799056,-0.24048328,-0.10511932,-0.0946723,-0.39318395,-0.43319058,-0.050127223,-0.47842395,-0.07705183,-0.28656688,0.17742686,-0.27155244,0.027749453,0.0101523325,0.5772876,-0.279083,0.08544034,0.30529732,-0.1094504,0.1471873,-0.6663695,-0.009941161,-0.055348024,0.41857067,-0.05150838,-0.20731577,0.24178712,0.23748769,0.4742716,-0.02727335,-0.16213426,-0.35717154,-0.18485856,-0.044786274,0.47445494,-0.19178832,-0.3619205,-0.09695126,0.086290374,0.08727199,0.21157198,-0.080294624,-0.1464984,-0.10452979,-0.10650865,-0.20273821,0.29089138,0.48203215,-0.2362915,-0.14767465,0.4695593,0.5375413,0.16417786,-0.15101159,-0.01992755,0.03813467,-0.55034673,-0.23945326,-0.23415022,-0.118499935,0.3316061,-0.049328662,0.29459888,0.6161633,0.056240812,-0.15595992,0.20879796,0.08088439,0.013398722,-0.29541636,-0.107433766,0.19433045,-0.37164322,0.089291856,-0.06600109,0.6503186,0.1395216,-0.6910949,0.21126965,-0.5228811,0.073510095,-0.005867712,0.38097963,0.74298424,0.47471166,0.22822098,0.6760502,-0.21124339,0.18399584,-0.14950714,-0.2776733,0.041815262,0.036812067,0.057577036,-0.48119274,0.09741908,0.032982253,-0.055451326,0.15853015,0.21750489,-0.52194184,-0.14343908,0.08292958,0.8494768,-0.20415391,-0.18507576,0.66219217,0.82937384,0.80496216,-0.015262338,0.9127476,0.064341836,-0.101453885,0.19442548,-0.24073651,-0.6021998,0.2947566,0.33353263,0.114119604,0.17907748,0.02752304,-0.11757584,0.4871999,-0.20508534,-0.12950827,-0.013329864,0.30562848,0.18164068,-0.10749158,-0.41753018,-0.2682635,-0.041000668,0.0040863194,0.25220457,0.21552555,-0.19348414,0.35329384,0.027208453,1.6082268,-0.024753299,0.108369306,0.18817607,0.39421967,0.2894612,-0.3228891,-0.16173933,0.23710728,0.086773,0.12254355,-0.46625155,0.19375148,-0.15359041,-0.41274002,-0.119181536,-0.28588945,-0.23641384,-0.008021265,-0.41429335,-0.15457863,-0.19037211,-0.25856924,0.42883426,-2.8396645,-0.12186143,-0.10712076,0.36104348,-0.22914985,-0.36596566,-0.18335393,-0.44958377,0.33934164,0.2898582,0.43409806,-0.5170654,0.5003472,0.46092528,-0.602725,-0.06475713,-0.49263567,-0.057657346,0.13853687,0.26367235,0.022894183,-0.09518716,-0.14128678,0.14993042,0.45722198,0.0022168718,0.0913111,0.4016865,0.4029178,0.0153004825,0.34043503,-0.17086057,0.55849785,-0.29512936,-0.16053298,0.22941676,-0.50949633,0.1677104,-0.23929241,0.0858553,0.56283295,-0.46959853,-0.97096795,-0.6636185,-0.045621857,1.1393082,-0.1028291,-0.27563542,0.29931778,-0.63110334,-0.27522618,0.13343409,0.53964466,-0.049471818,-0.13570166,-0.6958209,-0.012528179,-0.21364823,0.16849945,0.0016136672,-0.07570421,-0.429414,0.54960376,-0.05750085,0.5603268,0.17747119,0.21448112,-0.22574073,-0.39354962,-0.087008506,0.72077143,0.45597965,0.22896853,-0.22612837,-0.19021688,-0.50960624,0.012243915,0.07413,0.6945579,0.47248387,0.013660569,0.063362285,0.19234703,0.01310401,-0.047038957,-0.14233814,-0.24515678,-0.068786286,0.013219528,0.55431044,0.57541484,-0.199384,0.33002272,0.040562935,0.24392964,-0.28919804,-0.44206718,0.48138964,0.77555805,-0.25951487,-0.3011726,0.6489267,0.38709712,-0.098957114,0.338077,-0.60763216,-0.4537813,0.31527114,-0.122363195,-0.38781935,0.09618971,-0.22208689,0.095795594,-0.7547854,0.15348871,-0.38249856,-0.7190883,-0.45931616,0.05033986,-3.042919,0.25781035,-0.058558144,-0.17875537,-0.23549213,0.005162807,0.15104863,-0.52288157,-0.6252665,0.1968976,0.06092049,0.7199702,-0.12999243,0.18352748,-0.11415103,-0.33964097,-0.21970563,0.22895616,0.07952289,0.33778837,0.012013659,-0.47532484,-0.107813776,-0.051068164,-0.43998763,0.1858619,-0.5958664,-0.38766423,-0.120461926,-0.45956805,-0.059969902,0.5914375,-0.37546033,0.12751435,-0.2675339,0.063411,-0.22931737,0.22626972,0.01075092,0.07494187,0.14358672,-0.17921408,-0.01589556,-0.2577666,0.27655092,-0.011331074,0.4612048,0.2411339,0.08631033,0.19295955,0.56357497,0.6020253,-0.12165765,0.9711814,0.33286005,0.018294161,0.34464154,-0.23764461,-0.3240751,-0.18717921,-0.19400373,0.019512605,-0.31516048,-0.2355586,0.021010332,-0.51422095,-0.7774055,0.23000796,0.020644765,-0.012020588,-0.0020201355,0.21773562,0.5903495,-0.28491387,-0.0496513,-0.07074393,-0.075650945,-0.57806355,-0.32031462,-0.40571636,-0.43077686,0.0044455808,1.0226232,-0.30528122,0.08659883,-0.08305234,-0.08581583,-0.13407601,0.13216826,-0.016814847,0.11115106,0.48567128,-0.21080865,-0.5489608,0.3657297,-0.30970818,-0.22298187,-0.56922907,0.3104071,0.4592563,-0.5967388,0.5774852,0.37461698,0.11525978,-0.22778964,-0.59781396,-0.09411108,0.008028418,-0.2928596,0.3865239,0.41339862,-0.7662774,0.35710907,0.18797636,-0.14059359,-0.73304933,0.590964,0.03501842,-0.32096514,-0.09926401,0.3691874,0.14102882,-0.025727505,-0.17698184,0.07630798,-0.21499225,0.1678506,0.08535334,-0.059556082,0.3458653,-0.37638444,-0.001460962,-0.7052005,-0.05451052,-0.47871897,-0.2363566,0.1795274,0.059115656,0.1894977,0.12214787,0.03475345,0.3534882,-0.31708404,0.056618135,-0.25885916,-0.2680834,0.36190864,0.40333486,0.4835429,-0.37598813,0.50931865,0.018987272,-0.1011492,0.056280732,0.16367021,0.40142602,-0.15559268,0.5020086,0.009138092,-0.11273829,0.15971455,0.6624024,0.09646033,0.23016913,-0.012689643,-0.14000499,0.22329089,-0.028503746,0.12228216,0.028532773,-0.6071321,-0.071734145,-0.2944382,0.09121861,0.6081543,0.18500061,0.24213514,0.055649057,-0.30700326,0.058989048,0.12864284,0.022261709,-1.1776694,0.45984793,0.14095944,0.9132205,0.31687424,0.04562293,0.0023130067,0.708338,-0.017473646,0.20799327,0.3777922,0.05851637,-0.34786063,0.49640912,-0.68279755,0.47431493,0.0041966066,-0.07785287,0.074680924,-0.1559494,0.47729397,0.8948903,-0.13952264,0.02405868,0.05227966,-0.32162237,0.11931093,-0.2177114,-0.14099567,-0.681107,-0.28905475,0.59093815,0.49926257,0.26782256,-0.2387187,-0.028409194,0.13335136,-0.015484711,-0.0016410276,-0.010112375,0.05325541,-0.0328354,-0.5341391,-0.19312769,0.5076761,0.046568416,0.15094396,0.109648034,-0.09182175,0.29459363,0.0060117543,-0.057791013,-0.091072775,-0.5789322,-0.052136064,-0.3032164,-0.45856363,0.46400416,-0.21864703,0.17031932,0.1687672,0.1066445,-0.3150087,0.50742316,-0.03414715,0.7441751,-0.012907121,0.05388402,-0.29547027,0.21102288,0.19025436,-0.22290403,-0.22641745,-0.38819084,0.0058697127,-0.62208253,0.30238873,-0.09496167,-0.28671286,0.13211557,-0.058564078,0.13924086,0.4052366,-0.035122678,-0.2003061,-0.08955413,-0.014355395,-0.27836683,-0.19472343,-0.1351865,0.23301056,0.029398516,-0.04991202,-0.1530079,-0.17232808,-0.12002881,0.33002624,-0.067741096,0.34679466,0.32638484,0.14909558,-0.1971334,0.0023195446,0.30411378,0.52116966,0.041069545,-0.1298739,-0.22799146,-0.3568318,-0.34808868,0.33134902,-0.05479329,0.28640866,0.23460928,-0.1556302,0.6063442,-0.02089042,0.93570995,-0.011889387,-0.25015214,0.10681336,0.29584634,0.0843576,-0.06631429,-0.40965706,0.8202207,0.4177197,-0.075825356,-0.06796805,-0.34685785,0.07210271,0.20829585,-0.16449058,-0.08882919,-0.12600496,-0.565065,-0.16734362,0.15889823,0.2312384,0.13768338,-0.07206915,-0.056313936,0.23799182,0.0890712,0.23809457,-0.4115174,-0.1268329,0.28498366,0.2612093,0.112787545,0.09823411,-0.6000584,0.344993,-0.6031339,-0.03288819,-0.25784832,0.22355554,-0.3144239,-0.29199785,0.18781757,-0.042521425,0.35971147,-0.2146149,-0.30724958,-0.33117667,0.38588178,0.19562072,0.07356019,0.4674217,-0.20589563,-0.009330589,0.12082314,0.6444086,0.71868926,-0.29703403,0.016012296,0.33089817,-0.22480665,-0.53231907,0.23885527,-0.37412232,0.07368391,0.09035696,-0.17626968,-0.4252201,0.3698387,0.12713408,0.123812445,-0.073801085,-0.6235257,-0.10906974,0.16822168,-0.22956046,-0.15871672,-0.25931475,0.13461919,0.6369064,-0.14013329,-0.25616056,0.1001492,0.31211296,-0.04137935,-0.64283717,0.037360046,-0.31621987,0.27799457,0.06486307,-0.2750461,-0.29032063,0.018733032,-0.48588437,0.30309188,0.065541066,-0.29935277,0.083836354,-0.32484215,-0.024219006,0.8081848,-0.10799736,0.2625788,-0.4385458,-0.37672335,-0.68373615,-0.31483987,0.20330188,0.21654408,-0.052888915,-0.6298293,-0.061038222,-0.1202032,-0.18084171,-0.043163344,-0.35931057,0.36244178,0.07949662,0.22512555,-0.04255961,-0.870602,0.09529353,0.062381424,-0.2368324,-0.44023612,0.3644915,-0.045696173,0.94768405,0.08890608,0.120878376,0.23962314,-0.4205675,-0.121769354,-0.1255005,-0.082018614,-0.62985605,0.05974281,894 +107,0.4445941,-0.020583943,-0.44573116,-0.25293738,-0.22213547,0.31820124,-0.041952,0.15376186,0.054009013,-0.37119472,-0.081513494,-0.10839027,-0.04796224,0.32001588,-0.18012181,-0.81311893,-0.10227914,-0.017658988,-0.56583166,0.2993807,-0.52770895,0.5866385,0.18295473,0.239763,0.082503505,0.47558922,0.34307706,-0.29505634,-0.21043421,0.06448434,-0.22288091,0.13125072,-0.5738756,0.15479627,-0.0018064259,-0.2964877,0.21457762,-0.2668905,-0.22462675,-0.6047083,0.4065375,-0.68692774,0.3628555,-0.08183009,-0.25453764,0.20041406,-0.07424699,0.21578829,-0.45542827,0.24166691,0.25825375,-0.34664625,0.0426338,-0.19442898,-0.27307934,-0.52276033,-0.47098365,0.03662534,-0.57874525,-0.2943843,-0.36712202,0.19973004,-0.30181757,0.027902015,-0.18326038,0.17757595,-0.4720093,-0.1428445,0.14951384,-0.18060683,-0.0020835027,-0.31269068,-0.14351812,-0.14278668,0.22963068,-0.067248456,-0.0011675917,0.27738255,0.38239723,0.5479146,0.12973313,-0.27892286,-0.2302564,-0.13572975,0.117421255,0.45229882,-0.13953668,-0.386928,-0.11556859,0.019491524,0.08341023,0.11793019,-0.04539959,-0.29957736,-0.0024147741,0.09182823,-0.16024402,0.09919131,0.54429805,-0.3744816,-0.2176373,0.38532427,0.42451924,-0.0753374,-0.036944486,0.056687385,-0.059106965,-0.4096655,-0.26279145,0.2423065,-0.12938944,0.4813882,-0.05219543,0.10893889,0.86137235,-0.16532041,0.13593897,-0.34913194,-0.09251901,-0.14485586,-0.076050185,-0.091518015,0.040829614,-0.364734,-0.026121587,-0.3466136,1.0139867,0.16289772,-0.7926556,0.31692344,-0.40154728,0.18585996,-0.14271882,0.6632134,0.5680396,0.2800274,0.13464746,0.83722484,-0.64834785,0.16671066,-0.047307476,-0.40770817,0.081722915,-0.10864487,-0.041931063,-0.36049864,0.18454522,0.08279894,0.017006129,-0.033396497,0.19158918,-0.37853447,0.12793991,-0.08612217,0.6061555,-0.56380916,0.081911206,0.59767693,0.9107627,0.7717167,0.1475232,1.3876377,0.5039196,-0.24585094,0.02521548,-0.46561393,-0.48114833,0.1415791,0.48618338,0.37189418,0.120010436,0.1469991,0.14017454,0.34263396,-0.29142672,0.09764831,-0.17187813,0.26755133,-0.059553165,0.057948016,-0.39650577,-0.23858811,0.091413796,0.103908435,0.030380573,0.21242207,-0.10560578,0.41177836,0.08683108,1.5919887,0.09660062,0.17532477,-0.067376226,0.33064717,0.14617549,-0.054370396,-0.051443055,0.37942597,0.36420393,-0.2371966,-0.6004245,-0.14921167,-0.32910612,-0.49857008,-0.19761416,-0.3457812,0.0153028965,0.031617295,-0.35219753,-0.10877965,0.13712876,-0.28443807,0.47001934,-2.3686638,0.03507065,-0.12921573,0.29210594,-0.25354552,-0.3802527,-0.1838989,-0.41675746,0.33586788,0.4667215,0.31089723,-0.55482143,0.20353056,0.120269775,-0.13487941,-0.18277784,-0.70487344,0.04787222,-0.15107292,0.3493589,-0.1894786,-0.06408207,-0.24792127,0.09596688,0.5732832,-0.01461691,-0.09593412,0.20388934,0.39259398,0.22284321,0.4663941,0.36603197,0.53461945,-0.0880679,-0.11694313,0.3617751,-0.41478044,0.42258978,0.073550925,0.16968377,0.25445136,-0.58713156,-0.7807879,-0.6972853,-0.37111554,1.3317268,-0.3614765,-0.2648844,0.30744496,0.12806946,-0.1965021,-0.012976021,0.30241007,-0.19063948,-0.07006025,-0.6461295,0.03140288,0.040384695,0.12543844,-0.0066300295,0.2253344,-0.1670368,0.6667427,-0.31097794,0.3116175,0.36685574,0.22553368,0.13095705,-0.53143245,0.0362067,1.0031664,0.30006042,0.10243912,-0.06798701,-0.3172187,-0.09952085,-0.283813,0.33911476,0.24001202,0.9302318,0.15812713,0.02065771,0.26684445,-0.23501371,0.021576738,-0.0173739,-0.37855232,0.05458522,-0.019198023,0.48506898,0.35731253,-0.1821022,0.32850692,-0.20614548,0.30845028,-0.090160176,-0.4263121,0.5346419,0.83571684,-0.10756309,-0.1395455,0.49926713,0.4721899,-0.39950815,0.33139855,-0.5680701,-0.18272349,0.7128922,-0.20489791,-0.36090985,-0.07821247,-0.341191,-0.023200244,-1.0263826,0.35544014,0.14301568,-0.44483668,-0.53861445,-0.20364933,-3.7191358,0.0014697537,-0.26411352,-0.14637543,0.12255095,-0.15074499,0.22871724,-0.59617615,-0.38732716,0.072225675,-0.083396986,0.3950216,0.07968916,0.23554237,-0.2552309,-0.0064010248,-0.26480222,0.14979911,0.116800666,0.23791327,-2.1964312e-05,-0.30239636,0.21514937,-0.41070998,-0.38121474,0.10938333,-0.31100523,-0.51838994,-0.29357362,-0.39429507,-0.21028718,0.7130394,-0.4942984,-0.15686347,-0.1739288,-0.06755301,-0.38034564,0.40019488,0.35544184,0.20944126,0.092704095,0.030990096,-0.22947896,-0.52043855,0.3727629,0.1626848,0.25310895,0.42376962,-0.066207305,0.060320772,0.4897777,0.50557554,-0.0006311387,0.5428238,0.2314409,-0.10001251,0.26754087,-0.54785156,-0.2575631,-0.8194872,-0.51454395,-0.4071911,-0.33234644,-0.456668,-0.20360959,-0.47984803,-0.8117603,0.251552,-0.02830907,0.07434274,-0.14218365,0.22608292,0.31228203,-0.047515273,0.028499164,-0.19765297,-0.06384802,-0.52258086,-0.39770183,-0.6032603,-0.6046251,0.30114833,1.0712764,-0.092218645,-0.22671357,-0.14267704,-0.2199179,0.19986387,-0.13751546,0.17386203,0.28065443,0.37001908,-0.14875926,-0.7256259,0.59970725,-0.04962285,-0.12941796,-0.6151974,-0.14125054,0.58051956,-0.8048673,0.39124334,0.35457513,0.2521511,0.38628542,-0.44234288,-0.48591557,0.0034595653,-0.18966283,0.4551317,-0.0010668337,-0.43217593,0.43749565,0.24274546,-0.06785227,-0.6750505,0.35665333,0.007271873,-0.23335108,0.2843501,0.28861785,0.02475715,-0.23363732,-0.18805137,0.19916365,-0.5408929,0.3793307,0.5105945,0.10224047,0.37515008,-0.1714643,-0.35918707,-0.5375492,0.04381077,-0.50233984,-0.200174,0.0008786041,0.16664046,0.14743851,0.036477357,-0.055951297,0.5452368,-0.38401175,0.15842591,-0.008890744,-0.12095632,0.3267769,0.43860793,0.25601506,-0.53749144,0.6214859,0.03868745,-0.0005640909,-0.2607139,0.06237259,0.5562244,0.34347147,0.047174558,0.01668182,-0.21192893,0.2708531,0.59715796,0.2679076,0.4235764,0.14206691,-0.3264767,0.48560876,0.27065653,-0.037164737,0.1375747,-0.072944894,-0.048319325,0.18826684,0.17707388,0.32421514,0.04110109,0.4751413,-0.11677545,-0.123047665,0.36081803,0.08591452,-0.14726898,-0.6797803,0.18808123,0.11454459,0.49443692,0.4728499,-0.12019625,0.06508822,0.38187325,-0.467452,0.13562469,0.29677033,0.0019039661,-0.60360694,0.54567724,-0.58334416,0.37963942,-0.29046294,-0.011533417,0.0330598,0.16445735,0.27938217,0.9143697,-0.06841311,0.1018249,-0.061614014,-0.19650649,0.050939303,-0.28712443,0.097292244,-0.48916075,-0.24796976,0.50185764,0.2255897,0.26762843,-0.22213529,-0.12723157,0.0651779,-0.04271829,0.21238245,-0.08625467,0.07774007,0.003941793,-0.5163619,-0.6558697,0.5431001,0.0263599,0.048858505,0.10360734,-0.3773979,0.39440164,-0.21703087,0.009745399,-0.004961093,-0.44199145,0.09278579,-0.21749021,-0.48620373,0.20647056,-0.30871105,0.4989591,0.17198049,0.09158291,-0.39451167,0.031525284,0.31875175,0.7984162,-0.05999627,-0.2622144,-0.46501333,0.1349294,0.4777128,-0.32164198,0.090133354,-0.19355075,-0.013115462,-0.647395,0.3982209,-0.23565441,-0.17891705,-0.026617624,-0.24788463,-0.14023633,0.36335194,-0.24475838,-0.05662354,0.2888971,0.14274082,-0.2295343,0.019116025,-0.38015312,0.21745479,0.0073112547,-0.012801394,-0.055832554,-0.14296474,-0.06172707,0.36412776,0.05169297,0.15828611,0.052364796,-0.19888791,-0.43547577,-0.12844008,-0.07462977,0.11800335,0.13931097,-0.08011765,-0.31338853,-0.3748446,-0.17214456,0.12279943,-0.30433196,0.14954527,0.16538975,-0.5601809,0.71870697,0.069721974,1.1365069,0.20754978,-0.2582686,0.06513263,0.58147824,0.18577239,0.16283609,-0.28678265,0.9350039,0.6569213,-0.12516917,-0.2860502,-0.33494946,-0.28717694,0.32910773,-0.19678888,-0.14149499,-0.12554014,-0.6533543,-0.40791833,0.15592125,0.23261108,0.08550559,0.13333154,-0.118709125,0.053737663,0.19200203,0.66399145,-0.32408777,-0.12470397,0.25751132,-0.029277433,0.21368569,0.2524914,-0.32769907,0.45540297,-0.68788517,0.09632219,-0.29033518,0.07202945,0.013777584,-0.24571571,0.12559944,0.012391772,0.38296038,-0.2670167,-0.41416055,-0.17930387,0.67940545,0.19598208,0.34242317,0.6777733,-0.27738214,-0.036870692,0.0043291952,0.3586033,1.353288,-0.024670012,0.18697704,0.37338996,-0.25534078,-0.47335324,0.27696478,-0.19509114,0.026508585,-0.20600563,-0.4562291,-0.31268045,0.32243258,0.20772317,-0.20659433,0.103004366,-0.37168586,-0.2513039,0.48729193,-0.25835937,-0.40046456,-0.28538626,0.40549368,0.6530541,-0.532282,-0.3630474,0.12839067,0.22914802,-0.3232106,-0.5147107,-0.124657646,-0.19070509,0.41367358,0.11971394,-0.21612954,0.0577953,0.31682244,-0.2273244,0.23496512,0.309931,-0.4241072,-0.12459254,-0.12902093,0.028146207,0.99395204,0.17935738,-0.049558714,-0.76055115,-0.29996282,-1.0452198,-0.46394357,0.57806516,0.17316656,0.013537422,-0.47338802,-0.009003293,0.12752448,0.17324449,0.114893265,-0.6369548,0.3778038,0.20816916,0.38837987,-0.08399151,-0.75715625,-0.12558176,0.032431334,-0.18127136,-0.50532424,0.4859259,-0.185591,0.58910584,0.059529766,-0.00017412007,0.19835764,-0.5374476,0.2890065,-0.45187682,-0.20942056,-0.6328902,0.1665717,900 +108,0.5696894,-0.104166426,-0.45902437,-0.20375082,-0.2081976,0.16756018,-0.26366198,0.3074698,-0.008937718,-0.55873054,0.10840875,-0.19234526,0.014032442,0.2969747,-0.19240965,-0.5680977,0.035553474,0.034309767,-0.39968514,0.17965332,-0.5667265,0.41837433,0.07365588,0.20133798,0.012343392,0.3149978,0.2895831,-0.19676256,-0.33020616,-0.24671495,-0.1412426,-0.034308773,-0.549792,0.064842336,-0.15256637,-0.2832023,0.16664651,-0.5490678,-0.41121906,-0.4856262,0.10354004,-0.70471513,0.5277822,-0.023511693,-0.17845106,0.3103072,0.026848076,0.3325299,-0.091658495,0.2108859,0.2814327,-0.261841,0.012059946,-0.1963822,-0.4452377,-0.46822757,-0.5238046,0.0009282725,-0.44839638,-0.20601656,-0.21882643,0.12526669,-0.26923072,-0.054335695,-0.07802271,0.28649244,-0.36032674,-0.023950212,0.11960095,-0.12744352,0.35678446,-0.37868464,-0.19539505,-0.11805181,0.22224608,-0.3575043,-0.16850081,0.38515395,0.31010067,0.45049852,-0.11198455,-0.22870497,-0.43315154,-0.049450077,0.09830298,0.67373514,-0.24780338,-0.25962487,-0.24429357,-0.13162842,0.23599261,0.25045076,0.032404333,-0.33519173,-0.14418793,0.06570572,-0.38863632,0.24860667,0.5210402,-0.40680876,-0.16778843,0.43624127,0.3468461,-0.014754292,-0.1576126,0.04909871,-0.0074700955,-0.45991918,-0.15933216,0.33440042,-0.11004554,0.44366854,-0.0758081,0.3031799,0.7380496,-0.25105178,0.052891456,-0.014768696,0.029213898,-0.0026194043,-0.12870929,-0.20756729,0.21021059,-0.5823359,0.009248257,-0.10106501,0.8259181,0.25758755,-0.9025638,0.4359845,-0.42774448,-0.010675598,-0.064706765,0.45695525,0.5526618,0.5219017,0.089852534,0.6292512,-0.61300516,0.13821876,-0.13450508,-0.3890026,0.11196976,-0.068317644,0.02597797,-0.45083973,-0.13323304,0.14051428,-0.070948325,0.092873186,0.2849747,-0.3331637,-0.004211411,0.22648892,0.7089226,-0.3273642,-0.018262662,0.52470887,0.98557204,0.8544556,0.04120443,1.1179434,0.2719807,-0.27434584,0.15976855,-0.37680444,-0.6442312,0.19700065,0.4046995,-0.165664,0.25453442,0.14583118,0.03754292,0.29817852,-0.26971707,-0.025296554,-0.18829614,0.110927016,0.009764416,-0.053609796,-0.3907831,-0.28212202,-0.054685622,-0.17040838,0.032823578,0.23815009,-0.194853,0.36875495,0.14796335,1.6848522,-0.026859213,0.13160181,0.05643513,0.5321318,0.17662537,-0.11894405,-0.097433135,0.27472472,0.26599863,0.1148983,-0.4031333,0.019658606,-0.04999444,-0.512962,-0.12897089,-0.29228503,0.051915772,-0.10875599,-0.47830367,-0.15206857,0.06921016,-0.33409205,0.6034362,-2.8171325,-0.12170677,-0.11202711,0.36702657,-0.31473136,-0.48655406,-0.13820371,-0.4993839,0.5159024,0.32186916,0.4262566,-0.5724348,0.27662623,0.4277713,-0.2593844,-0.14079654,-0.71524596,-0.086693585,-0.19621775,0.16754821,-0.022919912,-0.0985616,-0.039474927,0.18694581,0.42750326,-0.20167023,0.11247407,0.05577488,0.21858412,0.23529914,0.492702,0.0173518,0.55782074,-0.30187175,-0.21949852,0.22005536,-0.38200387,0.057863526,0.08798872,0.18757096,0.3579663,-0.31523013,-0.78635055,-0.5657988,-0.29428267,1.0700951,-0.30436552,-0.28889516,0.28963494,0.12770298,-0.42073622,-0.0743986,0.28115025,-0.04959832,0.025373623,-0.68024445,0.01497306,-0.085180014,0.13884832,0.0033785552,0.10012158,-0.32506037,0.50722,-0.17964849,0.4756504,0.35885888,0.13617146,-0.15479334,-0.26952735,-0.006852068,1.0271318,0.27416357,0.21154605,-0.18744224,-0.21811163,-0.16546741,-0.22116223,0.16449493,0.27461696,0.73904413,-0.0062263794,0.11418369,0.25871885,-0.12441853,0.07101846,0.019000486,-0.34056097,-0.015608951,-0.09968544,0.55852556,0.44825357,-0.028539836,0.4561897,-0.1316153,0.26127696,-0.29444614,-0.36122826,0.4973414,0.75397384,-0.1273987,-0.18411407,0.5272502,0.47644395,-0.2637292,0.3693649,-0.6569759,-0.28802267,0.45847455,-0.17890829,-0.39028412,0.17966413,-0.27589968,0.113070585,-0.8252589,0.40197018,-0.19678631,-0.43151963,-0.4003155,-0.22492987,-3.5428991,0.07515568,-0.247358,-0.34324986,0.20827194,-0.12820557,0.2712298,-0.58572423,-0.24230304,0.17039678,0.037992742,0.68389565,0.08449887,0.08591621,-0.3421689,-0.18817014,-0.47702694,0.2157236,0.07662979,0.26348183,0.0472862,-0.40639293,0.08376537,-0.30403417,-0.5244993,0.10956888,-0.6454617,-0.39302734,-0.22350346,-0.47175562,-0.5006198,0.6949234,-0.47116628,0.05514108,-0.16958906,-0.034663048,-0.25222045,0.5095249,0.19756705,0.16132103,-0.07340126,-0.035237536,-0.05404769,-0.41011304,0.33093694,0.19139056,0.24722777,0.3788308,-0.14395326,0.08210837,0.53631175,0.58891153,0.03968519,0.68875027,0.35555175,-0.14275832,0.3185193,-0.3752094,-0.1372301,-0.42794722,-0.44563293,-0.0867528,-0.33035585,-0.413378,-0.1528586,-0.3156827,-0.73183703,0.52337945,-0.003182359,0.022471119,-0.08731498,0.16744252,0.2686286,-0.28460634,-0.12727626,-0.015028402,-0.12961161,-0.3647909,-0.3193433,-0.5769944,-0.51013476,0.1638664,1.0346891,-0.007422015,-0.07196942,0.06967397,-0.16081417,0.021492667,0.0038183294,0.022996001,0.21195617,0.34598783,-0.034899905,-0.6478044,0.43774086,-0.20027666,-0.18989877,-0.5984447,0.14651018,0.70213044,-0.5351442,0.4559011,0.41581583,0.24228193,-0.056980718,-0.5659049,-0.2539681,-0.008454651,-0.2858505,0.39567855,0.049932104,-0.782738,0.5485985,0.42236272,-0.38107055,-0.54598993,0.49943987,0.0629652,-0.22392611,0.17095174,0.26481742,0.013431888,-0.04298333,0.032734107,0.29055434,-0.50322837,0.31655484,0.46287137,0.07800083,0.47330886,-0.13754013,-0.044568487,-0.5429956,-0.105299816,-0.24562413,-0.297042,0.11966469,0.0040179268,0.1640487,0.22340861,0.059057746,0.3444962,-0.3812481,0.0862035,-0.046479516,-0.13040942,0.2629935,0.36930338,0.45407012,-0.3927325,0.55235803,-0.053318866,-0.013817221,-0.24794249,0.00033948943,0.4949865,0.24669844,0.1759846,-0.11699475,-0.33946717,0.19816263,0.6284243,0.30713174,0.45952997,0.18201,-0.14300567,0.1575452,0.17983893,0.041818436,0.28346652,-0.3560133,-0.07771765,-0.056804247,0.17797995,0.3907097,0.004262425,0.35421923,-0.25918132,-0.1250217,0.11339479,0.06380226,-0.19483909,-1.2120042,0.3189647,0.15598094,0.62743926,0.27656567,0.040884417,-0.011461921,0.66735315,-0.28761047,0.087703556,0.13256584,-0.0722858,-0.39313895,0.57204336,-0.60728884,0.4424612,-0.050243415,-0.018042916,-0.028477013,0.019405544,0.39753157,0.83130014,-0.084932625,0.1868965,0.042263135,-0.3870769,0.20840345,-0.21610728,0.20164967,-0.4938746,-0.15517597,0.6458576,0.24468523,0.32828525,-0.08009709,0.020222604,0.020805644,-0.08662196,0.1392425,0.07369283,0.07539363,0.105360545,-0.56134844,-0.34583881,0.60473174,0.02189097,0.08473013,0.067012504,-0.2067649,0.2889698,-0.16831261,-0.026904546,-0.038034387,-0.55568206,0.019387597,-0.3414473,-0.40967488,0.22589815,-0.17846364,0.31582597,0.16746804,0.014429372,-0.20006827,0.545375,0.44002777,0.8277758,-0.11871658,-0.22079271,-0.3492418,0.03287793,0.26877218,-0.18421927,0.009616416,-0.32191423,-0.08294554,-0.5511361,0.21696654,-0.10696236,-0.21445161,0.15999633,-0.099999435,0.064085685,0.5233847,-0.21339491,0.033489488,0.02036034,0.0055134017,-0.3203243,-0.1326389,-0.13316229,0.19343613,0.12258677,-0.060840257,-0.010697246,-0.116113536,-0.052643955,0.31232446,0.18108194,0.36159766,0.34392452,0.16623704,-0.35780603,-0.14517897,-0.09273154,0.40028262,-0.060375713,-0.08529326,-0.38653165,-0.3482187,-0.14545575,0.14767708,-0.18114334,0.22428273,0.06592414,-0.25187606,0.7717334,-0.24313504,1.0326176,0.08344102,-0.31740743,-0.015054956,0.34341356,-0.019828197,0.1505368,-0.36308533,0.89995694,0.4753083,-0.015295692,-0.1263341,-0.2950331,-0.2348561,0.12526847,-0.2091039,-0.24607202,-0.015889484,-0.57149196,-0.32385737,0.2377083,0.040237635,0.19151369,-0.017862529,0.10094908,0.34515017,0.22610591,0.4523562,-0.41593572,0.006684959,0.34739596,0.36028367,0.07082122,0.22777233,-0.38812548,0.35583246,-0.4772907,0.090423636,-0.30178005,0.16501729,0.0010344274,-0.20055868,0.22426675,-0.027868073,0.39760494,-0.16929865,-0.31156635,-0.047112368,0.5638283,0.11294228,0.35509562,0.66425925,-0.17011245,0.09638988,-0.027593197,0.36910367,1.0779295,-0.312788,0.015964106,0.615526,-0.21242827,-0.6458473,0.25289416,-0.24588762,0.13988349,-0.16989292,-0.24612336,-0.27768055,0.27411306,0.19323146,0.038344894,0.11512795,-0.37879318,-0.15864842,0.45947897,-0.30700037,-0.4158023,-0.33955437,0.21445006,0.72064453,-0.35015565,-0.24567494,0.015651949,0.33862007,-0.23089212,-0.34457114,0.024026502,-0.27416182,0.24087185,0.18605956,-0.2690757,0.03800022,0.0012807772,-0.25658488,0.1976593,0.19774082,-0.36825898,-0.030755648,-0.22764774,-0.05829452,0.8217265,-0.070888735,0.024039686,-0.64788485,-0.5437082,-0.92448545,-0.46613613,0.44367915,0.15767837,-0.04096578,-0.34358445,-0.06647642,-0.05578964,-0.08914698,-0.078674875,-0.4634562,0.38233984,0.14188139,0.3447227,-0.04588419,-0.5996304,-0.0011420287,0.09345427,-0.19670668,-0.55145675,0.49591962,-0.21352394,0.87471,0.100774854,0.04778491,0.14863652,-0.3833906,0.10956474,-0.26370755,-0.28858516,-0.72482413,0.1357871,916 +109,0.22104187,-0.13258417,-0.3760966,-0.20005402,-0.36723492,0.042041034,-0.24832115,0.2509107,0.18323992,-0.26643392,-0.074571095,0.06279805,0.024777897,0.37835386,-0.14262146,-0.53068435,-0.13177802,0.2175312,-0.6189476,0.44812787,-0.5708064,0.38715026,0.06965755,0.4097324,-0.058298394,0.43774122,0.18560886,-0.13290738,-0.08769935,-0.049848877,-0.1472123,0.35160345,-0.46350113,-0.00542517,-0.18063201,-0.28748718,0.057640817,-0.25913718,-0.2064633,-0.75434124,0.11129986,-0.7278481,0.4914682,-0.12818223,-0.23579493,0.098982245,0.3554474,0.4282481,-0.3471842,-0.004426023,0.19673914,-0.26502043,-0.09556091,-0.34735024,-0.07146154,-0.36443448,-0.45837063,-0.039905254,-0.67022705,-0.38601515,-0.2131377,0.24054109,-0.3179718,-0.05506617,-0.12159078,0.24341205,-0.40769607,-0.08132815,0.1971676,-0.2287114,0.2581088,-0.5018652,-0.019662548,-0.058443263,0.3461571,0.038785897,-0.21956727,0.45955276,0.21550126,0.36549738,0.1833689,-0.22874844,-0.297746,-0.1934798,0.23034966,0.3501364,-0.18338445,-0.25397378,-0.22255337,0.067397065,0.1545944,0.35681102,0.0010926574,-0.16137631,-0.042761303,0.01426206,-0.22019741,0.4153405,0.43408704,-0.21253744,-0.28538474,0.24876666,0.63568366,0.20636858,-0.41183335,0.035073422,-0.08857962,-0.5293324,-0.15088128,-0.049680673,-0.056331616,0.45426783,-0.07613075,0.054897416,0.8521899,-0.18858027,-0.11198081,-0.15633376,0.024265684,-0.050169274,-0.26223892,-0.13541985,0.10551162,-0.47814274,-0.04112211,-0.23496512,0.5141193,0.03876034,-0.6906905,0.3656147,-0.5429662,0.09198865,-0.014200762,0.5453399,0.67998403,0.51280963,0.29256144,0.7645125,-0.28305387,0.13393137,-0.09712562,-0.41849273,0.16221116,-0.27106196,0.015518181,-0.52129096,0.18390763,-0.12149683,0.07116703,0.15569858,0.45105398,-0.5495255,-0.03131334,0.18305646,0.698425,-0.39227712,-0.0046731587,0.6057273,1.0719273,0.97361314,-0.046325073,1.0035284,0.28573957,-0.21428813,0.19376759,-0.358072,-0.5239254,0.18379125,0.4184221,-0.031527273,0.37653828,-0.1316788,0.03598483,0.48134303,-0.34845912,0.01421231,0.0401094,0.38439307,0.18530281,-0.115454495,-0.5288378,-0.059226513,0.093104675,0.021914896,0.2509997,0.2329451,-0.25073984,0.35405177,-0.05957647,1.5334194,-0.020521875,0.086867884,0.07558117,0.4958005,0.35026628,-0.0710046,-0.06083726,0.5955106,0.33924997,0.013688166,-0.4738604,0.20666447,-0.30074787,-0.48358136,-0.034573145,-0.46733493,-0.16420406,-0.06433683,-0.46142703,-0.08973868,0.016550265,-0.31502125,0.37728912,-2.8074172,-0.29558703,-0.034427106,0.325444,-0.2513898,-0.23947567,-0.059178215,-0.44587946,0.355847,0.29845437,0.39556283,-0.54111123,0.5699698,0.61302805,-0.3966345,-0.19327028,-0.53208554,-0.19999737,-0.14201668,0.5624684,0.124044664,-0.08759618,-0.13969576,0.26250577,0.6409874,-0.075887926,0.1759477,0.43447214,0.29728973,0.0348097,0.57547456,-0.08430165,0.54249614,-0.1526711,-0.17456861,0.39438617,-0.31569064,0.07574165,-0.10655229,0.09467684,0.49918813,-0.33022082,-1.0117056,-0.5941537,-0.19751672,1.0561506,-0.44350964,-0.36991775,0.30258566,-0.2743551,-0.18648116,0.09557843,0.52970165,-0.03770484,0.33776143,-0.66264653,0.2226614,-0.08320419,0.10784227,0.007359432,0.055399485,-0.35505664,0.5723724,-0.078089595,0.5567186,0.29741848,0.23763597,-0.21944267,-0.2787451,0.12142731,0.65829754,0.29790068,-0.049951937,-0.033072483,-0.34561116,-0.017837986,-0.19211999,0.06479168,0.5248543,0.70854604,0.003929306,0.13398437,0.18639272,-0.10370883,-0.013560783,-0.22378156,-0.1337841,0.13738212,0.12742722,0.45332372,0.75979483,-0.21433714,0.3812092,-0.15329848,0.4204298,-0.05151207,-0.6488435,0.5115732,0.5212569,-0.22073235,-0.06824006,0.54750454,0.50132656,-0.3931572,0.43850684,-0.66833377,-0.23368579,0.71884763,-0.20907182,-0.38220835,0.2908433,-0.19661973,0.15693915,-0.7874524,0.2131499,-0.22074138,-0.28627223,-0.49467683,-0.19736427,-3.74024,0.101430625,-0.085188285,-0.14586264,-0.15239693,0.05198519,0.3603288,-0.7069524,-0.51196283,0.03989251,0.17075521,0.5368632,-0.14506154,-0.004904203,-0.32653588,-0.27550685,-0.03199721,0.3520293,-0.037814554,0.21040845,-0.27330878,-0.45901608,-0.10851304,-0.1840086,-0.72905314,0.1421888,-0.5029163,-0.4713733,-0.08234553,-0.46170515,-0.13114104,0.67075604,-0.34718046,-0.001948107,-0.19665754,0.04433568,-0.11882031,0.16103373,0.26001713,0.25391674,0.23789823,-0.008777883,0.16219237,-0.3727894,0.35589638,0.0073095113,0.23544265,0.10265003,0.023350772,0.12617192,0.48630694,0.7295331,-0.18992169,0.9599861,0.33613572,-0.16160497,0.2788656,-0.3734162,-0.27241603,-0.6084956,-0.36800304,-0.1481939,-0.40417868,-0.46515068,-0.035057418,-0.36611027,-0.712372,0.67065245,-0.009228483,0.3034219,-0.09967684,0.28119135,0.34271663,-0.18076184,-0.07971243,-0.09744718,-0.24681436,-0.48490432,-0.29919338,-0.68492085,-0.6107948,-0.023561198,0.9028691,-0.22652072,0.024534605,-0.17328197,-0.1667434,0.006495975,0.1085563,0.12784518,0.34341794,0.36256734,-0.016446665,-0.69359773,0.43459818,-0.015745025,-0.17204405,-0.49820927,0.04771624,0.53317994,-0.6760758,0.6111502,0.29972526,-0.0016305409,0.002495531,-0.5709877,-0.13668916,0.024608314,-0.2570097,0.5703814,0.10004715,-0.8146696,0.5351864,0.24255937,-0.49327934,-0.58964497,0.35586736,-0.2279345,-0.27433097,-0.2201798,0.33878204,0.1300366,-0.011667791,-0.25566685,0.21413058,-0.41821992,0.21261929,0.23098174,-0.10228505,0.3976629,-0.077566914,-0.15326424,-0.8045027,-0.04659919,-0.46364146,-0.30657318,0.24143638,-0.0011176076,-0.014409616,0.18863061,0.06836511,0.37955242,-0.2781932,0.07183711,0.06519721,-0.35223928,0.21342745,0.54296815,0.32181078,-0.3560846,0.5326177,0.10613463,-0.20197871,-0.01095178,0.0042371564,0.41150808,-0.06601819,0.3873635,-0.19496211,-0.15337244,0.43849155,0.66342,0.19899394,0.41946107,0.07769913,-0.25204363,0.344518,-0.04653491,0.080928355,0.03755364,-0.45768723,0.08721231,-0.07805847,0.1823546,0.5574641,0.3834755,0.3460922,0.18715434,-0.18411757,0.062469155,0.32029852,-0.080112174,-1.267316,0.33595932,0.36861068,0.8790759,0.3849638,0.23326081,-0.05571967,0.5767222,-0.40149724,0.059869096,0.3918721,-0.04764407,-0.43222988,0.7340878,-0.74740237,0.389265,-0.12073299,-0.080796115,0.15474387,0.030355634,0.4566003,0.7976831,-0.13245706,0.04278186,0.13557258,-0.1264829,0.07261377,-0.197337,-0.03082485,-0.30764133,-0.3284105,0.4872592,0.43709248,0.37155965,-0.20249632,0.019385412,0.198784,-0.20257394,0.23455022,-0.08268532,0.074058816,0.10058071,-0.44011346,-0.24846162,0.4370878,0.108167626,0.22881263,-0.036617476,-0.25638944,0.11510345,-0.085087895,-0.09808227,0.06685874,-0.46854526,-0.034442917,-0.13581084,-0.49412045,0.6270281,-0.29473758,0.17630379,0.13537341,0.01370215,-0.24021327,0.14979264,0.0164209,0.7163748,0.08268696,-0.1680093,-0.22583356,0.025771871,0.044217337,-0.2549243,-0.0069153085,-0.39831176,0.11539726,-0.5363827,0.5144967,-0.184401,-0.34370252,0.12750486,-0.2861957,-0.0781658,0.46965626,-0.07490802,-0.29495203,-0.04981734,-0.009157769,-0.37317985,-0.08855837,-0.2883242,0.24764983,0.10925998,-0.09568279,-0.016676098,-0.1534349,-0.15306616,0.69542694,-0.035748143,0.4703808,0.2633663,-0.16708031,-0.25586814,0.093088716,0.34873226,0.30381253,0.08895537,0.115602136,-0.28034413,-0.41920397,-0.39793456,0.2430343,-0.22294214,0.2395936,0.08712895,-0.26857796,0.91139966,-0.042432997,1.1561253,0.0075649098,-0.41113073,0.19267693,0.5585066,-0.059795007,0.13340658,-0.4531984,0.8348719,0.56146157,-0.1896185,-0.12086217,-0.48714107,-0.04960672,0.3027426,-0.4558743,-0.13971247,-0.1445072,-0.6322966,-0.4744858,0.15336254,0.16360703,0.28433084,-0.032681286,-0.1052438,0.05577688,0.110498175,0.32083094,-0.5184386,-0.26615497,0.31877854,0.292513,-0.24451283,0.063555166,-0.36225542,0.48859897,-0.3973998,0.13113892,-0.40817595,0.10350711,-0.2909239,-0.28073755,0.14452492,-0.044470716,0.2047784,-0.14789343,-0.3737833,-0.061515927,0.3419801,-0.055028174,0.10686902,0.6169755,-0.2576424,0.11173195,0.08839859,0.4501239,1.1491249,-0.41396382,0.009706631,0.420269,-0.41366833,-0.60794795,0.32820618,-0.28904504,0.0075200424,0.023104195,-0.49482137,-0.49834162,0.21339445,0.046738666,0.016406953,0.044118233,-0.41416904,-0.043557398,0.4061264,-0.26399153,-0.11153664,-0.09942213,0.30795887,0.73154306,-0.341306,-0.3639122,0.039157063,0.31835717,-0.2614797,-0.46673822,-0.052255243,-0.13962643,0.48530686,0.15316261,-0.333382,-0.032679893,0.23953462,-0.49926177,0.09896672,0.39270288,-0.34422538,0.13475631,-0.18303333,-0.028634254,0.8925899,-0.2215828,-0.08729808,-0.62280464,-0.48523575,-0.9442431,-0.4108209,0.22564334,0.15818092,-0.11863479,-0.4486669,0.09311427,-0.14164197,-0.23842563,0.03888827,-0.4841021,0.28820226,0.20038444,0.51474565,-0.25748855,-0.7959789,0.060325664,0.12461272,-0.15430662,-0.60814744,0.747574,-0.24324231,0.75831944,0.019857313,-0.0059736874,0.15241255,-0.3226406,0.14592153,-0.3168915,-0.063085794,-0.7995783,0.002300948,923 +110,0.4837763,-0.13054276,-0.3743717,-0.13382354,-0.29302353,0.16380695,-0.16888033,0.6013732,0.1814766,-0.37420857,-0.17026988,-0.23926635,0.019219436,0.35273108,-0.032173585,-0.33183512,0.050993297,0.22549678,-0.46360287,0.3862008,-0.45676926,0.15342137,-0.08670674,0.42371833,0.19240507,0.14132404,0.038051926,-0.004904514,-0.10650194,-0.09729461,-0.058635414,0.2830956,-0.4305432,0.14364499,-0.25267255,-0.29217336,-0.1173728,-0.49576262,-0.32179356,-0.6624674,0.19654302,-0.7384462,0.43573475,-0.0390983,-0.30723113,0.39477283,-0.045273088,0.24552736,-0.22498682,-0.013012344,0.08588587,-0.14545986,-0.1175538,-0.11422994,-0.2588223,-0.30639338,-0.44422373,0.124834105,-0.3889733,-0.06022218,-0.24232034,0.072634414,-0.2161494,0.01862111,0.044157855,0.29645255,-0.4123922,-0.037363566,0.13718727,-0.00076510385,0.21881592,-0.52948666,-0.08291741,-0.18473217,0.31572035,-0.15111654,-0.35746157,0.24146491,0.26496124,0.49774027,-0.12156439,-0.091993354,-0.2788075,-0.013011668,0.040025786,0.4263227,-0.12589295,-0.38411522,-0.15579903,-0.0861917,0.33566988,0.20368838,0.15877414,-0.10797426,-0.26020437,-0.08276709,-0.20316592,0.29682022,0.5304754,-0.3801867,-0.22849096,0.35639971,0.5823481,0.34651554,-0.13616088,0.12322593,0.025002135,-0.5753614,-0.12454966,-0.06233402,-0.23323269,0.45309117,-0.19166611,0.24936157,0.5582199,-0.13319296,-0.040193357,0.12779233,0.036611613,-0.110354856,-0.21220909,-0.16371915,0.23020361,-0.4090333,0.12207153,-0.10307327,0.6105331,0.1755456,-0.656602,0.31452763,-0.53932416,0.14753272,-0.0801152,0.57265675,0.85549283,0.40521842,0.2847488,0.68556535,-0.30019748,0.05918112,-0.14235993,-0.18562846,0.060177848,-0.21772462,-0.11803693,-0.5105171,0.052153032,0.042624816,-0.14664856,0.17809224,0.42321724,-0.5001931,-0.11751489,0.20304601,0.6220741,-0.2731465,-0.1681836,0.8008867,0.96488714,0.9079512,0.07092089,1.0246873,0.0918611,-0.1382167,0.2641712,-0.22572741,-0.6514147,0.28071105,0.31672874,0.2764951,0.17621744,0.2199004,0.005213218,0.36843675,-0.50202864,0.0036742054,-0.12638003,0.036191493,0.11487744,-0.02753672,-0.35972947,-0.2555259,-0.11609025,0.09219764,0.0056869164,0.2432936,-0.21868551,0.38851398,-0.053786583,1.5622597,0.052592784,-0.013744265,0.051871255,0.47897637,0.125523,-0.16320439,-0.18229729,0.36106777,0.3193438,-0.081430756,-0.48964188,0.11505164,-0.14920811,-0.50405717,-0.016559795,-0.36160907,-0.21182992,-0.090427525,-0.54256845,-0.14194097,0.01493502,-0.40424287,0.5427287,-2.9295983,-0.2376806,-0.026809815,0.3224451,-0.14377472,-0.25038505,-0.16717106,-0.33536124,0.2722362,0.4143067,0.41292274,-0.5994443,0.33298782,0.30852836,-0.5190536,-0.09505069,-0.5866907,-0.13539267,-0.022835888,0.22517408,0.08338265,-0.027637228,0.06210123,0.17707063,0.5529734,0.06665928,0.12769374,0.2929169,0.36310345,0.023004971,0.34415647,-0.07618599,0.450733,-0.24487999,-0.26757136,0.3076927,-0.29564255,0.23802334,-0.088938996,0.1361633,0.45255774,-0.42487353,-0.8710928,-0.63953805,-0.17709704,1.1696779,-0.2588591,-0.35450906,0.23662388,-0.5437482,-0.19657081,-0.13656265,0.5491578,0.008963279,-0.054778755,-0.7465188,-0.04153043,-0.04072128,0.14772068,-0.10605361,-0.0064500384,-0.32907498,0.72637594,-0.15855631,0.43584302,0.31079432,0.097917125,-0.09450726,-0.39952064,0.0441083,0.735585,0.3409452,0.14686428,-0.28681248,-0.22673124,-0.44565544,0.053932518,0.15240176,0.4144777,0.56327426,-0.027958162,0.19938844,0.22881809,0.012668377,-0.08045549,-0.16625322,-0.076699644,-0.073398404,-0.037298903,0.5134498,0.62708765,-0.13737251,0.47145584,-0.08941637,0.14212868,-0.2161436,-0.44714782,0.46677163,0.7175052,-0.2587725,-0.14882198,0.53005975,0.55816257,-0.21404156,0.36694196,-0.6750507,-0.3211152,0.46354568,-0.09697704,-0.3519322,0.25788414,-0.3104447,0.17375831,-0.8407056,0.22294955,-0.02562689,-0.5063428,-0.5287409,-0.05706361,-3.0447953,0.18383585,-0.08664709,-0.27469704,-0.025788926,-0.26207703,0.25212583,-0.4568206,-0.5227566,0.054973163,0.0215308,0.7724054,-0.09925931,-0.019831747,-0.22914715,-0.434955,-0.36996523,0.113554165,0.072774164,0.47498876,-0.07750878,-0.38824433,-0.02304846,-0.23741856,-0.27864796,-0.070002615,-0.5502839,-0.4181043,-0.21479826,-0.38477823,-0.18978493,0.51422596,-0.3953754,0.030928934,-0.28516757,-0.08251702,-0.057409607,0.29187047,0.07869114,0.012058027,0.09284272,-0.094699875,0.014675744,-0.24990648,0.25184992,0.036669023,0.07544512,0.43745267,-0.07720066,0.28223416,0.61990047,0.60809934,-0.22352338,0.87796366,0.4738622,-0.021205202,0.30591556,-0.20741974,-0.21641842,-0.43333498,-0.19137843,-0.037920088,-0.52410173,-0.4251744,-0.07659709,-0.3208692,-0.7911659,0.4678989,-0.13289931,0.1307941,0.071693614,0.23908396,0.5950781,-0.23790303,0.020127438,-0.1112065,-0.08113138,-0.45606017,-0.4262659,-0.5933192,-0.4258847,0.1093759,1.0607263,-0.17639409,0.060782194,0.091034174,-0.16393133,0.013075485,0.06593953,0.077984594,0.08614348,0.36925545,-0.16474694,-0.4743475,0.4016956,-0.13513134,-0.19541362,-0.56378007,0.12653768,0.49173486,-0.5860842,0.4390688,0.36379075,0.07627508,-0.1475734,-0.61332834,-0.16374701,-0.16982548,-0.28078133,0.36952183,0.23000523,-0.83155626,0.49432364,0.306513,-0.15724567,-0.7591249,0.5414626,-0.10005529,-0.21883765,0.03804161,0.2625816,0.13410784,0.014547138,-0.17786992,0.18016328,-0.41841766,0.3457772,0.27342194,-0.037410907,0.29572928,-0.3169787,-0.038734414,-0.5823355,-0.17605463,-0.48567232,-0.2247521,0.18534923,0.12068936,0.18967852,0.13854803,0.13624862,0.34495735,-0.3337397,0.09407629,-0.10190093,-0.21618034,0.2751428,0.42581326,0.5637073,-0.3378356,0.5915611,0.0030845087,-0.07846172,-0.046696108,-0.04461203,0.3091375,-0.050505012,0.3641544,0.018752575,-0.2468719,0.116419226,0.7688757,0.2209444,0.34621796,-0.004088726,-0.25192153,0.23419727,0.11218052,0.260941,-0.08651738,-0.4788695,0.018278878,-0.34313804,0.1647267,0.3559572,0.1521256,0.27791882,-0.02556058,-0.20481163,0.02710819,0.062966794,-0.05235767,-1.2534649,0.24226655,0.20774326,0.81076247,0.40290633,-0.025813192,0.0879869,0.58812165,-0.14247172,0.10103309,0.3905856,0.0134532675,-0.4983071,0.42616892,-0.7310687,0.5385201,-0.13534391,-0.064566635,0.12313878,-0.074712396,0.47713482,0.7054833,-0.14020197,0.0066036787,0.19848399,-0.3324036,0.17786041,-0.37385178,0.032463737,-0.6670412,-0.19089778,0.6097052,0.44042927,0.32584733,-0.24860084,0.026504826,0.01886399,-0.13321595,0.029474005,0.09599243,0.14180104,-0.14415888,-0.66385716,-0.103483126,0.44637045,-0.023194429,0.13522053,0.07355725,-0.29975906,0.15002963,-0.15140006,-0.10506934,-0.04555869,-0.51297677,-0.18336125,-0.2939423,-0.44468912,0.45330408,-0.175338,0.40137938,0.23573893,-0.0061554024,-0.24076712,0.44181332,0.12994328,0.7496761,0.07671708,-0.13064069,-0.2973569,0.2543014,0.2516809,-0.19862492,-0.20076191,-0.20519568,-0.06341762,-0.43568677,0.34870684,-0.14754659,-0.36462083,0.16471413,-0.0684125,0.017759815,0.4396885,0.02345189,-0.102084376,-0.07884568,-0.194363,-0.27053738,-0.06922804,-0.10123651,0.35225955,0.056550752,-0.15905568,-0.1189484,0.013143782,0.09483361,0.3581669,-0.00044236332,0.30377376,0.33022806,0.065971315,-0.2924561,-0.019101862,0.049699232,0.49629405,-0.004331207,-0.20689277,-0.2764871,-0.35561067,-0.31007868,0.14562541,-0.13306151,0.37122053,0.17673963,-0.10333543,0.7120188,-0.011741411,0.9529859,0.08311955,-0.27470943,0.20926788,0.4414964,0.06039977,-0.08067811,-0.3346842,0.69386184,0.31944853,-0.056757595,-0.16293767,-0.20038,-0.019465808,0.2072185,-0.19342232,-0.23409511,-0.08843161,-0.61988723,-0.17011392,0.23183854,0.23633943,0.30522862,-0.14199816,0.10371652,0.31201112,-0.068130456,0.28230935,-0.26099277,-0.15156537,0.3983692,0.29894045,-0.056828175,0.07512303,-0.30545086,0.4467715,-0.5685471,-0.18064252,-0.2319034,0.18905029,-0.24515012,-0.40195906,0.20713395,0.14965303,0.35621667,-0.18733773,-0.23212244,-0.34927988,0.46576437,0.12415297,0.20375068,0.35169613,-0.18950999,-0.022995822,0.076257266,0.3361108,0.9644681,-0.2701202,-0.03204511,0.3669685,-0.21893972,-0.5241178,0.4219696,-0.5009935,0.3904143,-0.018966418,-0.14226963,-0.5309374,0.30935642,0.19904079,0.10439494,0.072050154,-0.5523756,-0.09168984,0.27846968,-0.16944773,-0.17835297,-0.32318193,0.07974889,0.5277694,-0.1487049,-0.35128158,0.030019121,0.31736705,-0.18396182,-0.5224314,0.12793148,-0.36257416,0.21895266,-0.0955152,-0.34049943,-0.027228922,0.0008947626,-0.41844627,0.15333602,0.116385415,-0.28015646,0.12809674,-0.449223,0.19852851,0.94257057,-0.1929034,0.22998884,-0.45061272,-0.51905715,-0.85150063,-0.2578541,0.45257717,0.26557463,-0.027523696,-0.53196925,0.08519125,-0.12808189,-0.28992805,-0.09436465,-0.25480273,0.41277534,0.15730974,0.34056503,-0.024546735,-0.68769455,0.14773437,-0.07156797,-0.28328064,-0.43774408,0.48446718,0.012321252,0.8608335,0.1562739,0.11305862,0.15567179,-0.4835959,0.057414167,-0.15900533,-0.0014420673,-0.5004947,0.08435792,925 +111,0.31983894,-0.27042472,-0.5075626,-0.12465503,-0.35954788,0.09869696,-0.3303897,0.10534353,0.20134914,-0.26136208,-0.22644475,-0.016307535,0.028895535,0.25044337,-0.064970866,-0.60111874,-0.2038604,0.17776519,-0.78895974,0.5079206,-0.49001357,0.2949051,0.16899104,0.3312953,0.036869492,0.22208858,0.18219566,-0.10614971,-0.13509084,0.0033445433,0.02141187,0.21684647,-0.6938772,0.1453424,-0.23795952,-0.17244789,-0.04021634,-0.2824129,-0.3148242,-0.7019167,0.18647799,-0.8661084,0.5593778,-0.28260306,-0.15918696,-0.051421426,0.24205814,0.5548228,-0.23881087,0.0769552,0.25408664,-0.1712609,-0.18212414,-0.26922965,0.18362837,-0.38908768,-0.36976248,-0.003994273,-0.53512406,-0.25727624,-0.18173225,0.2765878,-0.18712464,-0.0013066158,-0.22316955,0.450945,-0.4384751,-0.12360604,0.4270401,-0.12309641,0.3763596,-0.5859213,0.04407473,-0.10175629,0.49581486,0.00767339,-0.18594365,0.30803555,0.24081406,0.33104414,0.22496691,-0.27806216,-0.14213765,-0.15426277,0.3477748,0.2642458,-0.019820103,-0.18567374,-0.27714488,0.10512224,0.2382245,0.16255926,0.13007873,-0.43708834,0.04969331,-0.035555765,-0.23308653,0.55857927,0.42302918,-0.20378432,-0.22186781,0.24728823,0.7111295,0.35886046,-0.27322918,0.07909805,-0.03754144,-0.46525282,-0.12519991,0.23142457,-0.07788132,0.4745166,-0.14778034,0.036527492,0.75797856,-0.12110113,-0.056182973,-0.00024680048,-0.07595666,-0.19497457,-0.2492256,-0.13698475,0.066268094,-0.53456795,0.04995409,-0.19851428,0.64583766,0.112668365,-0.69669676,0.3818117,-0.54661745,0.17015117,-0.05633856,0.5984517,0.7700349,0.4305593,0.20565033,0.8745997,-0.27937883,0.17024225,-0.0023241192,-0.48706424,0.12329867,-0.31660366,-0.0027842075,-0.45413637,0.09832656,-0.24653432,0.062516466,-0.13682567,0.25905657,-0.49929965,-0.047738083,0.16495147,0.72722083,-0.30346903,-0.05464936,0.5596145,1.0893341,0.9992981,0.10869864,1.3033595,0.3649241,-0.25994876,-0.021549962,-0.31199408,-0.6778451,0.2097232,0.3012322,0.04327894,0.39681476,-0.07095243,0.05457641,0.37062147,-0.5101906,0.12008125,-0.051603258,0.40569225,0.14598596,-0.02397278,-0.36318082,-0.05889275,0.1611194,-0.062018573,0.13993496,0.053926215,-0.16018288,0.3167167,0.112350196,1.3335308,-0.2377177,-0.009924087,0.044164844,0.45235574,0.294388,-0.13773303,-0.0034397785,0.40765908,0.49787632,-0.14004654,-0.5531076,0.30379465,-0.26528206,-0.45232555,-0.21770196,-0.33490476,-0.06198132,0.12310371,-0.3369611,-0.18980908,0.112795874,-0.20349105,0.4359616,-2.7459726,-0.3390294,-0.07347818,0.21805483,-0.40082198,-0.23836085,0.0044630505,-0.48280883,0.27898094,0.21443,0.38907528,-0.64842975,0.622262,0.4805569,-0.4706427,-0.05226788,-0.6054236,-0.1636257,-0.050036445,0.50343233,0.09013684,-0.094152115,-0.19067493,0.28365755,0.5482343,-0.16262828,0.15778627,0.5226587,0.17831144,0.10529906,0.59731996,0.07380624,0.601766,-0.18680406,-0.07689103,0.5060271,-0.2038742,0.15600911,-0.10269608,0.03327017,0.5216794,-0.37460247,-0.78632814,-0.7410159,-0.40102607,1.0206379,-0.4311206,-0.56111586,0.08961724,-0.14483961,-0.064680636,0.122629,0.4662427,-0.015889332,0.14175919,-0.8300841,-0.008957267,0.0130710825,0.29366264,0.016001325,-0.13039345,-0.41104746,0.7112738,-0.020430364,0.5807885,0.26655322,0.33487004,-0.083887875,-0.53546983,0.14195691,0.89976454,0.35456076,-0.067253515,-0.3168478,-0.2590527,-0.06965564,-0.08176144,-0.040813822,0.54527456,0.65090215,0.016665127,0.059513666,0.25786594,-0.19159397,0.02879756,-0.22707126,-0.2637129,0.037852004,-0.10910171,0.48321813,0.6760801,-0.15336566,0.51497674,-0.30656523,0.3384043,0.027470194,-0.61097795,0.7545452,0.63956,-0.19918095,-0.113527045,0.43427038,0.40275848,-0.37576538,0.38527417,-0.6384742,-0.22633074,0.7050106,-0.1373766,-0.4212531,0.26106763,-0.28282475,0.24922784,-0.8904846,0.31384423,-0.37291878,-0.3078479,-0.504694,-0.13131201,-3.0650485,0.14947414,-0.10463761,-0.1566425,-0.37375528,-0.08511549,0.31790116,-0.4746703,-0.58700466,0.15872082,0.20368454,0.5874915,-0.029276682,0.10570623,-0.2874932,-0.19440109,-0.13808882,0.20434615,0.08312563,0.20408219,-0.15135492,-0.39023638,-0.08276993,-0.21639216,-0.43393993,0.20130411,-0.53361195,-0.45617637,-0.07470347,-0.3983306,-0.33294386,0.639272,-0.35497376,-0.049559303,-0.22372131,0.084328264,-0.08667193,0.25343305,0.091111675,0.3099163,0.22290722,-0.0053441226,-0.05390977,-0.36567265,0.401618,0.016593974,0.22489566,0.1546687,0.0067924,0.17031014,0.39767936,0.65407485,-0.24361101,0.7887286,0.49389997,-0.007970192,0.21608415,-0.24547103,-0.29739588,-0.5531235,-0.2750129,-0.10723184,-0.439829,-0.50087106,-0.06892122,-0.33513874,-0.7585257,0.5758559,0.04384002,0.3088824,0.056163512,0.21701935,0.40264416,-0.126289,0.031541575,-0.12670636,-0.15785521,-0.5444206,-0.39636,-0.61182046,-0.4997099,-0.1285716,0.9948765,-0.26022425,0.06098059,-0.08692337,-0.5050355,0.08145652,0.18713588,0.067411646,0.35025352,0.5569475,-0.010410806,-0.6630987,0.31455088,-0.011452582,-0.071286574,-0.47117925,0.16195777,0.7251797,-0.67877364,0.58720946,0.35145706,-0.023742229,-0.1381575,-0.46801206,-0.20054695,0.01803632,-0.3949078,0.5313129,0.07320753,-0.7110412,0.4272664,0.16675323,-0.38449,-0.70508945,0.39486,-0.09311649,-0.2455434,-0.024212278,0.28920674,-0.05065487,-0.0024215113,-0.22526535,0.15324098,-0.4296446,0.22074105,0.21539445,-0.024362028,0.22416419,-0.12475215,-0.2900634,-0.6595659,0.025782283,-0.52108896,-0.25915006,0.28896883,0.08353533,0.00016170368,0.092068516,0.16882177,0.4783729,-0.2237907,0.13843995,0.005627744,-0.331727,0.23651159,0.5300233,0.2230367,-0.36158082,0.4689889,0.093163446,-0.12511204,-0.096506536,0.10510512,0.40715033,0.12691996,0.2683519,-0.022375971,-0.011218168,0.37139538,0.64143485,0.098337874,0.5060915,-0.023033544,-0.22683056,0.4543826,-0.075491294,0.2838642,0.030175216,-0.4485067,0.015486177,-0.06281382,0.30640015,0.44740272,0.34575975,0.29038975,0.07916332,-0.2646099,-0.024487793,0.24284597,-0.12337829,-1.2151436,0.48019904,0.3726914,0.86198306,0.48736048,-0.036444858,0.035439868,0.64659023,-0.27773744,0.13926068,0.34350464,0.040277347,-0.4468277,0.6221854,-0.7098468,0.25420952,-0.17106539,-0.08968103,0.1299396,0.1334985,0.26458526,0.84725124,-0.28327566,0.046868242,-0.07356002,-0.04509095,-0.07888903,-0.25193614,-0.0045601428,-0.33407164,-0.48998243,0.61454445,0.45410693,0.3418192,-0.33316278,0.042527832,0.024397023,-0.23275828,0.28739747,-0.057181433,-0.012532325,0.15055981,-0.49816507,-0.33482343,0.5041864,-0.14365959,0.08576816,-0.105221584,-0.1861261,-0.013714317,-0.1570096,0.033996657,-0.028716898,-0.6369704,-0.06449175,-0.15150347,-0.3367569,0.46750477,-0.28735888,0.10941644,0.20512046,-0.019140545,-0.14115912,0.32034877,0.009653829,0.65904444,0.24444722,-0.22051385,-0.31874985,-0.03081774,0.23014833,-0.28816566,0.032385997,-0.39415184,0.09006047,-0.52311116,0.629568,-0.06485973,-0.38379484,0.27389574,-0.23196863,-0.12567443,0.56893134,-0.17258349,-0.14171791,0.23982213,-0.10404374,-0.25357357,-0.08645759,-0.31873435,0.20365776,0.36209488,-0.02199231,-0.05327199,-0.29156244,-0.15268773,0.60264117,0.07619102,0.4483645,0.41178596,-0.095220685,-0.37127683,-0.027585324,0.3392338,0.5077565,0.20794468,-0.0025231577,-0.23356415,-0.37330788,-0.2777443,0.2931673,-0.09382407,0.104757875,-0.04122395,-0.3283974,0.8259741,0.14342439,1.1525353,0.08035718,-0.30483055,0.12287155,0.46702862,-0.04444751,0.1281414,-0.54593575,0.59403324,0.5568951,-0.039688863,0.01960583,-0.44653487,-0.13874738,0.19129968,-0.2603051,0.08518029,-0.14068322,-0.669133,-0.46503258,0.24157676,0.1775154,0.07114927,0.048437484,-0.11678936,0.039592177,0.049498864,0.42753312,-0.58070284,-0.11542799,0.14590898,0.15735039,-0.11376025,0.09964562,-0.41822836,0.42301297,-0.6884365,0.01212775,-0.3002667,-0.010542594,-0.18852665,-0.26787543,0.08316225,0.004797671,0.27944133,-0.40942287,-0.44098422,-0.14283356,0.4837083,-0.026259296,0.22975197,0.7402185,-0.19411208,0.21170445,0.14205027,0.41599783,1.144747,-0.40066147,0.05046332,0.20951733,-0.40162832,-0.5496966,0.34055302,-0.28974164,0.097899094,-0.083672896,-0.4943345,-0.55751395,0.23314646,0.0072180256,0.06984766,-0.007860031,-0.62893367,-0.09104942,0.46321142,-0.3745718,-0.16275221,-0.25339228,0.29113337,0.60890466,-0.35002965,-0.33450836,0.0005160123,0.2733901,-0.32745773,-0.38644055,-0.082365885,-0.2599169,0.40807363,0.12925352,-0.17199625,-0.13598202,0.25370258,-0.5066824,0.08283764,0.28704804,-0.3051819,0.07986401,-0.013609223,-0.035666406,0.8830726,-0.17990881,-0.17432061,-0.6634737,-0.44994462,-0.9348224,-0.38062447,0.19667313,0.18079042,0.022829514,-0.5591184,-0.029018506,-0.18469554,-0.01913376,0.11263969,-0.57280445,0.37264025,0.1271202,0.5693084,-0.20100127,-0.95707804,0.06391373,0.0624849,-0.055186197,-0.66371226,0.6539918,-0.05986209,0.79838866,0.013028016,-0.032453034,-0.09450997,-0.39877933,0.18907185,-0.35125208,-0.11516915,-0.82964486,0.102341466,929 +112,0.40242302,-0.18462116,-0.5417799,-0.11530328,-0.1772289,0.3679883,-0.18074472,0.49735114,-0.032984044,-0.5438507,-0.16636294,-0.023585683,-0.03489162,0.37296087,-0.20749979,-0.43615356,0.1088513,0.16295876,-0.5632918,0.68031895,-0.4707954,0.1964277,-0.064971834,0.38028508,0.26922405,0.1081929,0.14057106,-0.04359507,-0.42317492,-0.14247513,-0.18592276,0.5424858,-0.37878662,0.08252042,-0.19870216,-0.30108228,-0.12087944,-0.33007324,-0.37408853,-0.6909313,0.08504571,-0.85150623,0.53202677,-0.17529248,-0.2880252,0.2837058,0.40414214,0.29088122,-0.28458,-0.016864553,0.083071455,-0.19987726,-0.12434755,-0.28623918,-0.2569784,-0.54844093,-0.58750254,0.14205611,-0.534014,-0.095369466,-0.19898425,0.26871908,-0.20544152,-0.05620254,-0.13458574,0.5915925,-0.5161108,0.08337018,0.12588286,-0.014238773,-0.02265086,-0.70828766,-0.18847118,-0.24763264,0.20458487,-0.06942861,-0.20856543,0.19922492,0.47894555,0.518975,-0.017536711,-0.13022396,-0.43325743,-0.041607566,0.032436296,0.40808818,-0.21925163,-0.5200486,-0.22156502,0.010295193,0.3060264,0.03982424,0.14088571,-0.28580377,-0.051218778,-0.01822155,-0.37230778,0.26829687,0.4590108,-0.49940854,-0.30393064,0.39050865,0.43401578,0.15387204,-0.37389848,-0.0386918,-0.0653016,-0.6008194,-0.025307052,0.24445802,-0.1592918,0.60729235,-0.21051605,0.083377175,0.5269328,0.0209452,-0.04547743,0.10376642,0.1611786,0.07326546,-0.2251432,-0.2486106,0.061800346,-0.21969475,-0.04263508,-0.15064561,0.7198249,0.108560525,-0.6196657,0.34798586,-0.5340852,0.08491323,-0.032057695,0.44453347,0.6055735,0.5211297,0.16867042,0.6064865,-0.13662457,0.072717845,0.028472152,-0.17973572,0.023383765,-0.28643852,-0.10652168,-0.47517893,0.2600266,0.014293544,-0.10965012,0.031909764,0.7518529,-0.56092125,-0.17936185,0.09717731,0.845088,-0.2640609,-0.3202141,0.8430639,0.91765094,1.0113564,0.01705388,1.2058277,0.28669655,-0.15856351,0.12659675,-0.3971418,-0.5154924,0.2652866,0.34014216,-0.29888713,0.32873756,0.098165624,-0.15609603,0.52147794,-0.37064117,-2.4815556e-05,-0.3037773,0.1441822,0.21204486,0.07683663,-0.4179057,-0.37913987,0.056345068,-0.031973653,0.23154718,0.23945433,-0.30692294,0.34170386,0.022942195,1.5940062,-0.10069591,0.00091801956,0.023550991,0.49615258,0.21612793,-0.028776187,0.09061247,0.2912568,0.30397704,0.02446721,-0.39026952,0.12438811,-0.2779294,-0.61074054,-0.110293515,-0.35987377,-0.18790528,-0.07461649,-0.6428648,-0.16661763,-0.020470709,-0.21637666,0.48606676,-2.7145705,-0.18461159,-0.116671205,0.2973389,-0.2801693,-0.39514512,-0.23230475,-0.41863436,0.377728,0.29142386,0.4849968,-0.573619,0.5179254,0.26268905,-0.40702522,-0.12148993,-0.6222937,-0.14069033,-0.04415942,0.51979005,-0.0040026773,-0.021972332,0.19726206,-0.001957573,0.6164951,-0.2794295,0.18893184,0.26173162,0.21151444,0.02946715,0.4922341,0.046549514,0.6449663,-0.35107732,-0.26401424,0.42956227,-0.55944973,0.35922456,-0.045847178,0.1422254,0.45864147,-0.45494533,-0.9120235,-0.6703683,0.003714189,1.1641713,-0.25927755,-0.40109408,0.012752992,-0.28088126,-0.1823314,-0.06784764,0.4617027,-0.14354558,0.0063009635,-0.82220185,0.051768616,0.033580672,0.24614006,-0.14800131,0.14117467,-0.33169055,0.5983242,-0.09331496,0.44682318,0.27145973,0.24284416,-0.37518215,-0.4265048,-0.07005943,0.9417832,0.4216826,0.124942034,-0.1978567,-0.33841556,-0.37660685,-0.09088791,0.094541505,0.6367806,0.41727608,0.07068263,0.09275706,0.2994001,-0.09058697,0.07887293,-0.2945669,-0.2745813,-0.111361764,0.20726873,0.5571118,0.5304824,-0.14093268,0.5961425,-0.1604013,0.41454598,-0.11559586,-0.39749533,0.47588438,1.0595093,-0.27965948,-0.30819756,0.5630086,0.619316,-0.24837163,0.315758,-0.66610175,-0.44698614,0.5578182,-0.18094245,-0.26041302,0.22619997,-0.32894862,0.12557968,-0.87579465,0.43905243,-0.3249041,-0.35291183,-0.6921656,-0.106055975,-3.3440423,0.17876357,-0.17667243,-0.05558096,-0.09325495,-0.25866756,0.19297922,-0.58942705,-0.41815683,0.06795146,0.1766774,0.50287414,-0.12601656,0.085339405,-0.2644282,-0.3190291,-0.19639999,0.26683784,0.17587428,0.3929807,-0.17547122,-0.54682297,0.059688777,-0.2668855,-0.29603118,0.026635978,-0.81248826,-0.53533113,-0.06674227,-0.58835703,-0.36775166,0.7056657,-0.51213604,0.023859773,-0.1617581,0.10721865,-0.051792584,0.23002483,0.043381028,0.10925375,0.07674845,-0.17760865,0.102890104,-0.3520003,0.18729377,-0.02053029,0.16234016,0.48687577,-0.01941111,0.21895431,0.60328346,0.5633619,-0.016098648,0.8721205,0.5683435,-0.11371462,0.38845757,-0.20387265,-0.16737014,-0.46482155,-0.28985828,-0.046704322,-0.3865962,-0.44044796,-0.043032788,-0.34967864,-0.79870105,0.5523062,-0.12258166,0.07851653,-0.131437,0.47349873,0.5989216,-0.1809797,-0.02738195,-0.07048525,-0.15433201,-0.42737526,-0.5708316,-0.6067896,-0.5033155,-0.02441288,1.10373,-0.21657121,-0.08279635,-0.06592082,-0.22711605,-0.18892853,0.2641228,0.09028428,0.13476303,0.5755825,-0.2947744,-0.7209252,0.4003001,-0.3025373,-0.117963,-0.29312062,0.34487885,0.6053741,-0.6385223,0.5800094,0.52809477,0.1616509,-0.13926497,-0.55066276,-0.21796523,0.025152067,-0.19222534,0.41006312,0.20560518,-0.75892377,0.44617707,0.15115492,-0.34129477,-0.7436404,0.6010866,-0.04178299,-0.24521208,-0.08985743,0.43257448,0.19005159,0.06911984,-0.22612411,0.087283365,-0.5495982,0.25877038,0.18737094,-0.044087976,0.3514899,-0.31449044,-0.13956623,-0.77759826,0.011357361,-0.46685028,-0.35277927,0.2953071,0.051264793,0.2280578,0.1162737,-0.09098675,0.301023,-0.37597287,0.07642388,-0.1202314,-0.17186785,0.22608797,0.4940678,0.42255116,-0.46103546,0.55358726,0.06474902,0.03566431,0.024177298,0.028160501,0.34581798,0.118202746,0.529281,0.09830113,-0.073750734,0.3614386,0.74554586,0.33322176,0.46400377,-0.0029605068,-0.3606152,0.19204536,-0.05795455,0.14054577,-0.043948554,-0.41530454,-0.20167309,-0.19001144,0.2211106,0.47198984,0.13227305,0.44842255,-0.059738167,-0.23558864,0.079611376,0.18080392,0.03886585,-1.1461134,0.24651513,0.23263133,0.7506721,0.31372303,0.0792395,-0.019994818,0.73297364,-0.35722214,0.04890466,0.45926332,-0.05313733,-0.42924312,0.5780592,-0.67702675,0.5074686,-0.19747749,0.07326476,-0.045657266,0.06419947,0.3596064,0.86622536,-0.16256133,0.07120566,0.1331685,-0.3745636,0.20328227,-0.30317217,0.21705985,-0.46447948,-0.2642018,0.6742748,0.56051826,0.40174317,-0.17133412,0.0028734393,0.17283471,-0.29169655,0.15890846,0.09198372,0.23980916,-0.12127069,-0.777915,-0.1781047,0.54862976,-0.1583983,0.12758055,0.25430992,-0.28098172,0.3367493,-0.13056585,-0.023354873,-0.08128904,-0.55766726,-0.14199454,-0.26113954,-0.4863826,0.44371003,-0.36972022,0.21364574,0.21987587,0.0017911792,-0.40944272,0.41070455,0.043049853,0.7331504,-0.0008786097,-0.20202585,-0.30730698,0.07136183,0.17920823,-0.21197805,-0.13300212,-0.29384738,0.19562204,-0.5278317,0.39504302,-0.13044271,-0.24215099,-0.12973794,-0.070144325,-0.07817976,0.45874506,-0.08531863,-0.15192452,0.018115401,-0.052607544,-0.32995307,0.0055698305,-0.0822219,0.31318274,0.121913075,-0.018103339,-0.12408148,-0.13651808,-0.16070509,0.4638637,-0.06566677,0.31577858,0.58150434,0.17308037,-0.37506038,-0.03404326,0.18001877,0.647701,-0.02787067,-0.124383874,-0.25791058,-0.32504016,-0.37169167,0.21803683,-0.11192712,0.34757808,0.2344164,-0.4325282,0.7943982,-0.21381733,1.2623725,0.03611803,-0.38424605,0.07852663,0.51036596,0.02051972,0.13039672,-0.29929486,0.9055266,0.52178717,0.03413497,-0.08182672,-0.4212868,-0.04932051,0.12989591,-0.18307677,-0.21724299,-0.07175556,-0.56700397,-0.27161342,0.117998905,0.1735421,0.3228849,-0.052203443,0.14619473,0.3412238,0.10959137,0.29714692,-0.4367604,-0.12009598,0.31400493,0.449749,-0.1490944,0.1253747,-0.46862757,0.34737715,-0.5548192,0.014013981,-0.17828418,0.18785506,-0.13406388,-0.2682133,0.30333143,0.035325453,0.28922135,-0.43320715,-0.22157365,-0.25739264,0.562186,0.0020396076,0.12646139,0.64748096,-0.26914793,-0.0114575755,0.062488105,0.5566342,1.0774429,-0.35743043,-0.0059940666,0.26470196,-0.34081775,-0.70926654,0.27428842,-0.37142214,0.25395083,0.028563257,-0.21866359,-0.6034772,0.3795808,0.25853956,0.1132977,-0.02202096,-0.5562933,-0.08955148,0.36412323,-0.21250689,-0.11938405,-0.19768925,0.23387432,0.4935586,-0.36919898,-0.37703916,-0.0070575066,0.37501535,-0.21285671,-0.49982524,-0.016105227,-0.4901441,0.2964344,0.20641649,-0.2503709,-0.10796035,-0.03001244,-0.44482815,0.14937437,0.45093122,-0.33587915,0.11146884,-0.30028656,-0.025826186,0.8973738,-0.085306376,0.21350376,-0.48310837,-0.45977458,-0.8759657,-0.22481152,0.32182977,0.11209595,-0.105818465,-0.77288306,-0.040184475,-0.09556769,-0.52869815,-0.011493518,-0.49170244,0.54933774,0.082995646,0.26916343,-0.018772922,-0.71541697,0.0914528,0.06899957,-0.038750514,-0.45277828,0.36527383,-0.11756915,0.96894425,0.11649243,0.1297459,0.29222718,-0.44237006,-0.00077021867,-0.27247608,-0.013129715,-0.72234374,-0.004358884,942 +113,0.59180146,-0.27840123,-0.47444126,-0.10622961,-0.32704818,-0.049511705,-0.3474144,0.5110451,0.23978218,-0.60467815,-0.19455577,-0.080216445,-0.1404771,0.46353582,-0.21208546,-0.6800362,0.07910412,0.16949959,-0.7342745,0.6799032,-0.30974352,0.20289746,0.27339068,0.4595487,0.36095655,0.1613492,0.19089374,0.004081942,-0.20873757,-0.2590977,0.10128409,0.106068715,-0.91592973,0.1918703,-0.35564688,-0.44863665,-0.118245006,-0.48489165,-0.33452183,-0.88145995,0.3144905,-0.9291366,0.62877756,-0.10917449,-0.30838782,0.1294382,0.165649,0.44133687,-0.18121791,0.030128343,0.1949676,-0.2540572,-0.13923399,-0.08761746,-0.097954094,-0.34127888,-0.6227752,0.20661014,-0.5084579,0.026500199,-0.24818148,0.23948675,-0.41272908,0.20416236,-0.04595919,0.58476865,-0.46293372,0.1699448,0.39508396,0.006134415,0.20351171,-0.51227665,-0.18516488,-0.25652626,0.16878058,-0.16065551,-0.30130717,0.27992994,0.30240998,0.5768184,0.25388867,-0.40590322,-0.32678908,-0.07147432,0.21310435,0.33807483,-0.03627178,-0.42257768,-0.32068762,0.03507353,0.3924486,0.09306334,0.253319,-0.22856876,-0.069818035,0.09389539,-0.34607786,0.5922258,0.54721004,-0.3165423,-0.25274676,0.16517869,0.6944125,0.2711762,-0.119028986,0.115443714,0.049128506,-0.693465,-0.2118769,0.15418361,-0.20407966,0.6097879,-0.35482123,0.2259103,0.6623153,-0.34697056,-0.004018029,0.2020019,-0.04313966,-0.15314673,-0.2470064,-0.33364496,0.32236853,-0.5630251,0.13097167,-0.34247613,0.8348512,0.24606824,-0.7066164,0.17304872,-0.6607805,0.26035944,-0.10940454,0.6146549,0.8304612,0.48231322,0.37779307,0.7382642,-0.32791913,0.15133125,-0.15638861,-0.40139276,-0.0037622694,-0.339762,-0.0011485927,-0.4103205,-0.09626454,-0.22352034,-0.058736615,-0.060649306,0.49631757,-0.5675669,-0.20543608,-0.01399526,0.99529177,-0.28709227,-0.11833275,1.0893457,0.8607613,1.3024325,0.15197694,1.3557558,0.28836977,-0.12512305,0.09112474,-0.08134657,-0.7853854,0.4652079,0.32663572,-0.30129486,0.44122803,-0.059428185,-0.006178662,0.44958472,-0.5567322,0.15850659,-0.39585197,0.40108806,0.073461175,-0.18858638,-0.2693711,-0.14755645,0.0703041,-0.035493296,0.07410959,0.26992297,0.025640791,0.60998344,0.058346048,1.4446485,-0.1383492,-0.042885847,0.08902752,0.44849348,0.19499835,-0.073448524,-0.07388066,-0.06251034,0.39774793,0.10213722,-0.6269356,-0.02064544,-0.37643105,-0.3270588,-0.3673399,-0.25681126,-0.050997518,-0.16144924,-0.376948,-0.26716322,-0.17381172,-0.12954137,0.35637984,-2.1345992,-0.40011424,-0.19513687,0.2914223,-0.305247,-0.3276557,-0.071113646,-0.68251574,0.5539475,0.31966162,0.51763266,-0.7126419,0.4716061,0.4325788,-0.5055,-0.13772418,-0.76024115,-0.20011461,0.04573132,0.43502837,0.0047126096,-0.13445087,0.011435531,0.17140189,0.5740751,-0.11766809,0.044368193,0.3106303,0.45162976,-0.062582806,0.5257413,0.06837334,0.51492006,-0.49160826,-0.1833959,0.4791821,-0.3450899,0.32246277,-0.12071042,0.07030486,0.58311677,-0.5738965,-0.89317715,-0.69284,-0.24113092,1.1816692,-0.13639528,-0.45105252,8.875504e-05,-0.2149524,-0.0749148,-0.03195773,0.29073778,-0.22015539,0.023487007,-0.8273039,-0.15802205,0.0005371338,0.1174048,-0.028427815,0.005493216,-0.43161714,0.6543514,-0.13421309,0.24027136,0.5281199,0.29266927,-0.28495866,-0.6435089,0.18848693,1.0637097,0.49678114,0.16872853,-0.5754047,-0.22829947,-0.38811338,-0.15153196,-0.052674852,0.5229546,0.86402315,-0.15651362,0.17532383,0.379021,-0.00842143,0.07630128,-0.14930013,-0.44861364,-0.27580264,-0.08240806,0.5459959,0.7791536,-0.15000877,0.47452736,-0.12178371,0.36674535,-0.07588708,-0.48082083,0.62768126,1.0190372,-0.42522705,-0.39574757,0.5480705,0.31022355,-0.27843404,0.66104144,-0.5385436,-0.36600533,0.46737894,0.031526297,-0.33049685,0.1768938,-0.45345667,0.18309148,-1.0981483,0.37155363,-0.40956342,-0.2177127,-0.707269,-0.3023317,-2.2658448,0.20795491,-0.20399994,-0.040503547,-0.31342983,-0.29779214,0.15880832,-0.38659823,-0.8981596,0.16845332,0.1339554,0.6892921,-0.12751603,0.26450256,-0.1367382,-0.264983,-0.55933267,0.035066508,0.3986181,0.3739614,-0.06395082,-0.49598932,-0.013429865,-0.2885219,-0.42711022,0.10656558,-0.70258313,-0.6584838,-0.17016259,-0.4405114,-0.32832283,0.6407025,-0.2891727,-0.035559244,-0.32102823,-0.021171743,-0.03400767,0.4401667,0.1422469,0.085370034,0.17738515,-0.13390853,0.0020054579,-0.35076568,0.12525246,0.19658408,0.26853442,0.34538954,-0.16986817,0.44021007,0.499221,0.8777789,-0.08370039,0.7995478,0.52677304,-0.10812821,0.3037535,-0.24133092,-0.6070254,-0.5700208,-0.2138561,0.029582407,-0.4898944,-0.36037064,0.18002185,-0.34953392,-0.87911284,0.5608116,0.016741427,0.07200119,-0.0848194,0.3318045,0.40106452,-0.15599528,-0.08902033,-0.074603714,-0.18491873,-0.63966036,-0.41501784,-0.7335957,-0.68750846,-0.14209878,1.1996204,-0.09810747,-0.12875873,0.1641525,-0.29998663,0.19474804,0.1905206,-0.20327778,0.0126309,0.4340779,-0.08381075,-0.78228146,0.4468894,-0.07901987,-0.08958031,-0.61359775,0.24291475,0.66495657,-0.64795357,0.35270935,0.41613972,0.068993434,-0.09172096,-0.6249169,-0.110510565,-0.09682478,-0.14373153,0.45941365,0.28176692,-0.6195332,0.53023744,0.39732665,-0.31775576,-0.91373783,0.49670166,0.15043975,-0.10527521,0.094673365,0.3697101,0.17582566,0.006906094,-0.25880653,0.16231206,-0.35795426,0.21813276,0.25113863,-0.14426248,0.102954045,-0.27837515,-0.4500049,-0.8100194,0.020597514,-0.57522154,-0.2982995,0.20239542,0.044468127,0.0060687214,0.050300065,0.21463436,0.27261454,-0.18284465,0.055210885,-0.2228487,-0.35896593,0.37319118,0.5092265,0.5859017,-0.45220172,0.62424755,0.123170905,-0.115623206,0.13916215,0.029606376,0.53181803,0.0025520474,0.34332186,0.39034602,0.027287211,0.08570671,0.80190396,0.0617027,0.504725,0.20567313,-0.2772444,0.28346503,0.20647025,0.2929367,0.01699806,-0.48678228,0.055515237,-0.1262107,0.072822966,0.57833016,0.14035699,0.37985116,0.040935874,-0.16139302,-0.099953964,-0.01297234,-0.009259839,-1.8169652,0.3615967,0.2190745,0.7844446,0.43829703,-0.056989945,0.22720616,0.6574025,-0.19759493,0.15314132,0.44625592,0.06257636,-0.369819,0.5549683,-0.6421752,0.49372625,-0.12711391,0.15753943,0.02142984,0.18236282,0.52321005,0.7782336,-0.2021394,0.06917556,-0.10279188,-0.26525283,0.18406206,-0.52466536,0.09124665,-0.3389228,-0.29036802,0.8574879,0.46874595,0.2841533,-0.3176923,0.041444506,0.08490094,-0.1847637,0.3553558,-0.16598518,0.08717266,-0.15297067,-0.53353333,-0.1710821,0.5027878,0.004765872,0.18615927,-0.06414866,-0.18465903,0.20516388,-0.14492235,-0.034159787,-0.13236511,-0.9943404,-0.18345967,-0.42295665,-0.3381226,0.20281586,-0.17081581,0.07953213,0.2636036,0.088519394,-0.5863343,0.33977318,-0.2945161,0.65616745,-0.011939526,-0.24710819,-0.16755012,0.14693028,0.46616104,-0.33753118,0.13739537,-0.13223673,0.22815147,-0.5437102,0.50728816,-0.124686,-0.471831,0.21123149,-0.1365096,-0.09306769,0.53414357,-0.22739932,-0.066206545,0.22055179,-0.1632696,-0.14633575,-0.2635411,-0.0077159554,0.28991845,0.38711208,-0.124280356,-0.13333504,-0.23155446,-0.035999157,0.6111039,0.010208018,0.43145213,0.38729995,0.12340379,-0.50657517,-0.23578513,0.18411158,0.5768885,0.022563133,-0.29038036,-0.41190997,-0.43278378,-0.32475892,0.43983778,-0.20866635,0.21167535,0.071391806,-0.47421402,0.8593562,0.26975754,1.4160789,0.13505691,-0.4568271,0.22645739,0.4902152,-0.10688029,-0.078228384,-0.4498348,0.87486845,0.44978598,-0.33514103,-0.09982136,-0.536545,0.042389728,0.010516442,-0.22841269,-0.22492264,-0.093437836,-0.46837234,-0.30827817,0.2682398,0.289558,-0.0739862,-0.21746433,-0.0049886573,0.2552459,-0.0646256,0.37602496,-0.57930434,-0.05780518,0.29237926,0.21718639,-0.048741966,0.18308623,-0.51957273,0.33243388,-0.5228232,0.06468368,-0.2674045,0.23188497,0.0025539417,-0.4398086,0.35244763,0.04381621,0.3381713,-0.5612452,-0.4420265,-0.29443115,0.48603427,0.33141345,0.1929391,0.70746607,-0.27129012,-0.09406473,-0.040131144,0.53602886,1.1400076,-0.29551584,0.107994795,0.2409741,-0.20020269,-0.46317452,0.4688054,-0.3095972,0.22671227,-0.11388037,-0.315861,-0.7315153,0.23202172,0.17939287,0.092819646,0.068503015,-0.75596553,-0.19512865,0.37389153,-0.26430708,-0.20499292,-0.47641033,0.03495381,0.5840631,-0.25475988,-0.2590471,0.16496518,0.2723284,-0.18156368,-0.40029007,-0.17517811,-0.22439846,0.23935379,0.22265095,-0.26052386,-0.19763213,0.13854957,-0.57586336,0.12399718,0.1825589,-0.2789987,-0.053194955,-0.15895307,-0.05830446,0.8435354,-0.23244268,0.34161857,-0.5068058,-0.47061038,-0.83665437,-0.23281746,0.4213434,0.24033651,0.03141217,-0.7226349,-0.24831173,-0.1379615,-0.07550301,0.14192232,-0.5390041,0.5084095,0.13254952,0.44902337,-0.028507536,-0.84765875,0.10663619,0.092399165,-0.23262775,-0.57532585,0.5263679,-0.027400665,0.7322838,0.14359984,0.16829988,0.24456576,-0.6156867,-0.07206385,-0.14461035,-0.09565587,-0.6536739,0.03996311,959 +114,0.4064182,-0.2933477,-0.5860152,-0.12124261,-0.39680654,0.10615057,-0.13438132,0.4360577,0.33956942,-0.46041358,-0.121060506,-0.08894793,-0.09919895,0.18425103,-0.2082035,-0.59080917,-0.12129366,0.14047986,-0.43108997,0.50284815,-0.19495444,0.25350857,0.011717796,0.2734193,0.28878456,0.33948544,0.016571235,-0.14671747,-0.0319748,-0.07394822,-0.089464396,0.28588158,-0.3241368,0.07088973,0.04161642,-0.21579486,-0.07942595,-0.324573,-0.3769095,-0.71867985,0.42033952,-0.7550283,0.4664392,-0.02509392,-0.19801386,0.27344316,0.19676101,0.3282335,-0.10911913,0.038794205,0.2897663,-0.14105745,-0.109805256,-0.04889612,-0.2476151,-0.38833776,-0.5202609,-0.05713588,-0.4154516,-0.3030051,-0.30737633,0.19364643,-0.35052603,-0.10271571,-0.07579662,0.5633356,-0.47420272,0.14892082,0.35818115,-0.10765165,0.3265357,-0.65703624,-0.06798213,-0.020845216,0.24223538,-0.04706425,-0.08282563,0.09148969,0.31324452,0.45106372,0.10680409,-0.21386664,-0.42613852,-0.10254373,0.3003739,0.32553476,-0.16704302,-0.29972407,-0.09517886,0.24449037,0.2502609,0.22336972,0.19001774,-0.2580524,-0.16535811,0.06324133,-0.17661312,0.36872518,0.4433334,-0.2779906,-0.26663777,0.4209419,0.5376423,0.12838316,-0.16680503,0.10712147,-0.10382652,-0.4208283,-0.17842674,0.0073629245,-0.24478969,0.2876925,-0.1040186,0.18819547,0.6651733,-0.07247149,0.0353449,-0.03717694,-0.008458957,-0.0357325,-0.33144137,-0.05398125,0.10470419,-0.5163961,0.10110414,0.0009124521,0.7261754,0.036823563,-0.6417808,0.23061135,-0.4548747,0.21429026,-0.054401547,0.46765488,0.67076474,0.36603427,0.23128816,0.78045344,-0.43645322,0.07264647,-0.07310022,-0.46935633,0.05325766,-0.0950482,0.03188491,-0.6005871,0.13603464,-0.04130134,-0.0065854834,0.07001573,0.37795413,-0.5690043,-0.14096093,0.18085673,0.83042336,-0.26645076,-0.08448195,0.6855978,0.9196512,0.9698654,-0.04524557,1.1035311,0.14218776,-0.30052525,0.11763894,-0.46124822,-0.57573265,0.31856033,0.4462527,-0.12752593,0.24480449,0.0076289885,0.029354826,0.42152536,-0.26717335,-0.011235873,-0.24657944,0.1476008,0.20617774,-0.26325828,-0.39846152,-0.054320715,0.08899374,0.05245591,0.1581643,0.119626075,-0.1694323,0.29279685,4.1881576e-05,1.5723028,-0.25590572,0.08394274,0.18378055,0.26005787,0.157018,-0.045726016,0.10928276,0.42458367,0.31695157,0.13660686,-0.5712166,0.07847085,-0.36845624,-0.42133063,-0.2483259,-0.3312717,-0.1820636,0.103352666,-0.31994322,-0.16529575,-0.21720974,-0.45252234,0.42254767,-2.7706745,-0.088413745,-0.27503896,0.2070084,-0.31014973,-0.3600231,-0.07541241,-0.46407712,0.3338892,0.36682123,0.5046831,-0.60585797,0.45273128,0.4570592,-0.61112434,0.00095754117,-0.51814425,-0.11146286,-0.08803108,0.3357215,0.07245109,-0.21184008,0.02790777,0.14094417,0.48758638,0.0020312965,0.09681247,0.49519575,0.4944628,-0.11876507,0.57914495,0.014889408,0.54299736,-0.06522988,-0.18733057,0.33505976,-0.22366795,0.20946571,-0.0057890583,0.1640531,0.42779374,-0.2873638,-0.89131886,-0.59554774,-0.120662235,1.2481319,-0.16156694,-0.40452236,0.35197437,-0.3994286,-0.28526133,-0.057460204,0.46695185,-0.051802102,-0.06291206,-0.8348386,0.13123491,-0.18245038,0.07317912,0.029554531,-0.25579095,-0.48305318,0.9277872,-0.11051804,0.56124,0.3681294,0.16737139,-0.23060952,-0.35480797,0.01572664,0.8592268,0.46408623,0.07465108,-0.116567604,-0.13990411,-0.29933667,-0.18230893,0.11731723,0.6271858,0.5499909,0.024185264,0.052218236,0.30943963,0.020327296,0.070455216,-0.21114156,-0.3397033,-0.13117056,-0.06867002,0.45985365,0.4409375,-0.31252733,0.43011236,-0.0134584345,0.35580924,-0.07238506,-0.53323215,0.38264504,0.9282612,-0.20828547,-0.57848173,0.6623839,0.3777851,-0.18151972,0.39048076,-0.5249279,-0.22547406,0.44979763,-0.3189643,-0.4943852,0.20681916,-0.4084581,0.032355905,-0.8379876,0.19464417,-0.41264564,-0.5593405,-0.44637772,-0.15279822,-3.3864257,0.24922074,-0.40069282,-0.14905187,-0.28435266,-0.024253398,0.102016866,-0.6140888,-0.63804185,0.1357381,0.106981054,0.6058998,-0.061356593,0.064580634,-0.18360622,-0.2627224,-0.19222762,0.20862326,0.009428933,0.25401443,-0.034914084,-0.4034399,-0.08336714,0.07856851,-0.37335318,0.027887894,-0.4581466,-0.40394866,-0.08475749,-0.3946276,-0.12002372,0.59169674,-0.36839318,0.077400886,-0.31184202,0.13949485,-0.11538032,0.26677567,-0.09352059,0.17358142,0.091988504,-0.16349922,0.09216514,-0.2922033,0.38407886,0.013741048,0.38007078,0.3217068,-0.25595742,0.18285824,0.3762589,0.5848685,-0.12611097,0.81965554,0.46388426,-0.18095799,0.29067624,-0.18353574,-0.23426262,-0.6220823,-0.34469903,0.107100844,-0.481802,-0.4621116,-0.13825727,-0.3969264,-0.8300233,0.39203906,-0.00093064085,0.3707643,-0.021099817,0.3235443,0.5902066,-0.10696185,0.08137154,0.053017784,-0.22916959,-0.37513155,-0.20688802,-0.5338565,-0.42393464,0.22205935,1.0649776,-0.23223808,0.07865903,-0.032830667,-0.21665558,-0.033214584,0.19590002,0.09466135,0.16627356,0.48414418,-0.20002674,-0.62582684,0.44478327,-0.18629295,-0.14712788,-0.6616469,0.20871125,0.4791137,-0.4859397,0.68200946,0.24393737,0.05156375,-0.19138485,-0.4839995,0.009154798,-0.02879512,-0.29926792,0.52055126,0.2703391,-0.5827381,0.40889645,0.36946413,-0.13978672,-0.68121797,0.36775088,-0.019060588,-0.2912864,-0.014266142,0.38967174,0.18641458,-0.06125136,-0.13600577,0.1929587,-0.3547244,0.3338468,0.14641897,-0.24068864,0.2326996,-0.17265779,-0.17980841,-0.8027721,-0.016706478,-0.59081376,-0.15315333,0.24675782,0.13681652,0.13686657,0.087622136,-0.013411138,0.54074484,-0.17703086,0.057454214,-0.16613226,-0.29494599,0.36647528,0.4676578,0.26931906,-0.51162225,0.45023325,0.009949427,-0.2483731,-0.103048205,0.1891675,0.57702553,-0.022920012,0.44373932,0.0069740303,-0.2094479,0.34224653,0.73048997,0.13196054,0.4877563,0.06854789,-0.16314615,0.20832409,0.0658747,0.11133899,-0.1756413,-0.68724525,-0.051407337,-0.17728558,0.13079217,0.5013795,0.11051548,0.32672513,-0.08490202,-0.25779137,0.010664726,0.23888776,0.14180529,-1.0107691,0.27036947,0.13870986,0.93467855,0.41004455,-0.026442863,0.08182454,0.5989278,-0.05807625,0.085109755,0.39787516,0.03193447,-0.5043301,0.5240655,-0.7026541,0.31054068,-0.008442506,-0.052397475,0.020336539,0.058484524,0.26395243,0.74717534,-0.14788127,-0.048948698,-0.12922615,-0.2850989,0.24406117,-0.24135113,0.11820577,-0.46912214,-0.36682713,0.4954814,0.52138484,0.33665127,-0.15186682,-0.009192839,0.10464928,-0.101861596,0.17585856,0.027783558,0.13988608,-0.067076504,-0.59933895,-0.239458,0.31296122,0.18177488,0.17918098,0.051348157,-0.16338314,0.17925349,-0.101550356,-0.088262096,-0.036765624,-0.49395585,-0.06093584,-0.14361237,-0.6063417,0.4965148,0.0065271296,0.2372951,0.083057284,-0.014124431,-0.23591232,0.23999178,-0.004303448,0.7152087,-0.043957237,0.05747187,-0.40160775,0.19786139,0.053480722,-0.16826306,-0.09636183,-0.2149595,0.11223338,-0.7228577,0.4612842,-0.015328247,-0.42540282,0.34850693,-0.18800935,-0.04939132,0.5158503,-0.24179469,-0.12019587,-0.033593636,-0.104184225,-0.20146498,-0.31106633,-0.101542786,0.2041113,-0.016347822,0.031617075,-0.15431191,-0.09401933,-0.13605586,0.3103649,-0.05356795,0.31538424,0.3992797,0.06271469,-0.42979816,-0.16624576,0.31842238,0.42173383,0.023975689,-0.06285076,-0.26597512,-0.66404283,-0.4754229,0.15183873,-0.012144178,0.36136568,0.070848435,-0.21140753,0.8182583,-0.0018502772,1.1813338,-0.011702588,-0.3755283,0.06488483,0.6330726,0.067220934,0.031833407,-0.2539928,0.81936765,0.6943285,0.035697125,-0.06270175,-0.4785939,0.07779922,0.13930508,-0.21826792,0.054388702,0.011398777,-0.6282766,-0.439419,0.23979871,0.18648893,0.1766366,-0.06556267,0.059431136,0.15261243,0.017891914,0.30684,-0.48051035,-0.32355055,0.1684795,0.20735754,0.035314687,0.04144188,-0.59797776,0.37155858,-0.56171185,0.07454693,-0.16082793,0.1861644,-0.22626828,-0.1568473,0.28559163,-0.07582211,0.3722461,-0.34665298,-0.3584336,-0.15260187,0.47585592,0.15546677,0.121719696,0.5822012,-0.28397173,0.07057454,0.17380214,0.54625094,0.994593,-0.14583424,0.121777326,0.4740103,-0.3283577,-0.65746284,0.35877895,-0.32727158,0.10925574,0.06348464,-0.3107473,-0.2779346,0.28053933,0.09493813,-0.067139216,0.021577138,-0.5270268,-0.27626175,0.3087562,-0.37528348,-0.04750513,-0.21835798,0.10404915,0.62976503,-0.32470852,-0.30724496,0.0028348248,0.3350393,-0.09491858,-0.53987145,-0.0213357,-0.2530264,0.42047656,0.14141397,-0.28149068,-0.097413845,0.008785162,-0.41636568,0.13865541,0.1504956,-0.32805887,0.07436145,-0.34127223,-0.1343163,0.73934245,-0.17538163,0.1412836,-0.6160394,-0.29791075,-0.8106645,-0.3023525,0.23622686,0.10019519,-0.041710287,-0.6481717,-0.0027752146,-0.26700485,0.02977838,-0.042731322,-0.3131598,0.40697014,0.10544817,0.461646,-0.22278829,-0.7120141,0.14470136,-0.016393786,-0.22006035,-0.66022724,0.65788585,-0.11743288,0.7533348,0.017904274,0.12930396,0.25770134,-0.50478077,-0.028718814,-0.26021016,-0.30725563,-0.7117869,-0.06954589,961 +115,0.62822723,-0.15782242,-0.6649213,-0.20935602,-0.31550258,-0.24327034,-0.19607222,0.5376768,0.38081634,-0.49771756,0.035125356,-0.139507,0.008765788,0.47617477,-0.15044059,-0.7709718,-0.04044871,0.06817202,-0.5361202,0.5956649,-0.46400627,0.29498592,0.024158817,0.46321136,0.1914598,0.29775575,0.10818705,-0.10281262,0.0002874732,-0.14251491,0.080480315,0.292207,-0.73723006,0.04093898,-0.087463096,-0.504169,-0.09821437,-0.5317951,-0.34854966,-0.7600142,0.3066698,-0.763631,0.4770882,-0.020301677,-0.24990712,0.14073749,0.20621803,0.4108318,-0.3106289,-0.07734954,0.056351446,-0.013927415,-0.06107662,-0.14015117,-0.3667115,-0.4287867,-0.7535801,-0.0036081448,-0.45764273,-0.12018862,-0.33719528,0.1489082,-0.40621272,0.14961389,-0.16654134,0.46891662,-0.37671527,-0.13710809,0.50829107,-0.07949525,0.30468583,-0.3800446,-0.14129427,-0.21493185,0.12826659,-0.058041636,-0.31779182,0.3744832,0.28939068,0.58657205,0.09129805,-0.34563142,-0.384592,-0.029885463,0.091150805,0.40462542,-0.29076442,-0.48784864,-0.22435147,-0.043675065,0.282403,0.33239567,0.17130792,-0.27593154,0.025620492,0.241423,-0.36718088,0.46916053,0.4924127,-0.29197207,-0.2623673,0.17712703,0.49629936,0.2153798,-0.21461779,0.27592266,0.06567225,-0.6053172,-0.20229259,0.07382087,-0.09120293,0.41631645,-0.10874877,0.20211971,0.78733087,-0.24435103,0.019806504,0.034941345,-0.023173492,-0.15110122,-0.46860495,-0.2854038,0.28103936,-0.5538073,0.2762677,-0.21782973,0.8921767,0.2004194,-0.6835436,0.31743115,-0.67630625,0.2872401,-0.18041536,0.5117353,0.8281985,0.46270424,0.40052515,0.67944425,-0.40584219,0.15600336,-0.12018195,-0.39663458,0.11676513,-0.26637942,0.083455876,-0.37714058,0.03428662,0.073874,-0.103644595,0.2071031,0.37853456,-0.6344107,-0.18176568,-0.03837145,0.8904521,-0.18581223,-0.038891785,0.8413008,0.83922446,0.9950519,0.093084484,1.178985,0.30125612,-0.19172297,0.3844356,-0.15343308,-0.8191961,0.26903826,0.36652732,-0.43100047,0.28515035,-0.013074335,-0.045706272,0.55677205,-0.32807148,0.053900316,-0.15447414,0.21528503,0.025444701,-0.30098987,-0.3104828,-0.27462542,-0.028206388,-0.11584419,0.086291336,0.34947777,-0.08479488,0.40408695,0.049287617,1.7501659,0.0137970075,0.119148,0.12821555,0.55649173,0.30438802,-0.07616247,-0.06374029,0.13118842,0.3827362,0.1314538,-0.5883952,0.037040446,-0.23879626,-0.43161115,-0.113881454,-0.40302992,-0.03866972,-0.2554686,-0.65362453,-0.07670953,-0.25233755,-0.15344128,0.39976817,-2.428814,-0.35045847,-0.16819586,0.2265491,-0.27580255,-0.33761495,-0.105228,-0.5605098,0.49258918,0.30092517,0.43570575,-0.73279536,0.44304734,0.45356813,-0.5425452,-0.020273648,-0.7129352,-0.17057994,-0.058854304,0.28480196,0.012278663,-0.10391208,0.053437933,0.24727339,0.47561544,-0.11604929,0.062102277,0.17235778,0.4241936,-0.029691573,0.69628894,-0.10905154,0.54374254,-0.43242252,-0.22644475,0.36038572,-0.480553,0.17353109,0.021357443,0.110632084,0.48866686,-0.5281621,-1.0369425,-0.6175946,-0.19447085,1.0767376,-0.27850685,-0.33209616,0.33561766,-0.40211907,-0.17631555,-0.0480508,0.48457107,-0.073516525,0.035615806,-0.8680788,0.14289346,-0.1456841,0.078448005,0.0039196396,-0.012403095,-0.2004161,0.51560533,-0.06485799,0.41207874,0.29467905,0.13691059,-0.33541957,-0.54838455,0.12159836,0.9092668,0.3392274,0.20144625,-0.25667468,-0.18754238,-0.4133766,-0.099460036,0.049685005,0.47405952,0.79476196,-0.12165073,0.1842777,0.3049664,-0.07416554,0.041404843,-0.19376709,-0.3832705,-0.15734132,-0.059988625,0.5267053,0.77225614,-0.2474225,0.41868007,-0.06903673,0.3539633,-0.17982264,-0.4967327,0.6560937,1.0190364,-0.2576151,-0.32695347,0.6055456,0.50630665,-0.3180644,0.57286686,-0.55799973,-0.2659123,0.50026894,-0.023228474,-0.38710696,0.17983572,-0.3969205,0.09719667,-0.9039082,0.22095424,-0.33198956,-0.21243584,-0.50945234,-0.19872895,-3.7556899,0.16667563,-0.24406675,-0.09139208,-0.22662109,-0.09215015,0.3632796,-0.71622384,-0.7406298,0.17896667,0.17104387,0.8002736,-0.0738452,0.1144368,-0.2619689,-0.3222125,-0.34928823,0.013515206,0.26381892,0.3571096,0.049862415,-0.47824782,-0.21088319,-0.1081815,-0.5537642,0.12632959,-0.6494652,-0.58852303,-0.19852829,-0.6708528,-0.4216273,0.754992,-0.21937269,0.021622919,-0.13817066,-0.13092364,-0.19385673,0.36189,0.13952683,0.08981933,0.061533153,-0.06864788,0.06566588,-0.26752892,0.036691613,0.061187483,0.33713913,0.20883611,-0.13871756,0.33214164,0.59782714,0.90786755,0.0021507144,0.8520944,0.5784459,-0.04133424,0.47769845,-0.37356073,-0.3054294,-0.6493156,-0.2570976,-0.22144711,-0.4049665,-0.38024256,0.04766324,-0.3501037,-0.8253529,0.68980634,-0.0069052055,0.22947538,-0.084679514,0.079092205,0.56062365,-0.1117621,-0.13184842,0.06983642,-0.1817396,-0.5668918,-0.16393185,-0.67347956,-0.545313,0.25436392,1.0701195,-0.06923561,-0.046731587,0.06535129,-0.1512534,0.012089731,0.16431116,0.031029947,0.15197875,0.41408414,-0.035956845,-0.6364173,0.4039643,-0.18908553,-0.24800582,-0.6678492,0.1536868,0.71757936,-0.7605361,0.52427924,0.2433222,0.061824095,-0.03201905,-0.5282463,-0.1002924,0.073574185,-0.06544938,0.463572,0.35759953,-0.90989006,0.46024597,0.48070717,-0.2308711,-0.6758495,0.5184755,0.007159941,-0.15452345,-0.10969687,0.26694277,0.29942882,0.13038805,-0.13425392,0.23013955,-0.49715847,0.12223327,0.32288444,-0.15287994,0.3523267,-0.13980645,-0.036713243,-0.7351352,-0.002512537,-0.5689005,-0.26722828,0.30172962,0.00094651803,0.08602997,0.0040338524,-0.005626019,0.16185178,-0.28816357,0.10672785,-0.04580726,-0.26188684,0.38999188,0.5605081,0.40974927,-0.42672735,0.68287927,0.10882595,-0.016321117,0.2234649,0.13891333,0.484423,0.067915946,0.5165635,0.02532012,-0.27510104,0.11870171,0.79504526,0.043847464,0.34045196,0.06863135,-0.07798211,0.1879996,0.20579745,0.027422402,0.10452069,-0.48520637,-0.025241202,-0.024621965,0.17157638,0.67245984,0.19131757,0.32595572,0.056540154,-0.34544587,0.018711282,0.16233465,-0.18350902,-1.7068434,0.44120145,0.2108295,0.7913575,0.51201177,0.1306391,-0.084787175,0.615426,-0.14667343,0.22432755,0.507936,-0.064576566,-0.4515593,0.6197538,-0.609685,0.6436068,-0.036374353,0.15187068,0.02090247,0.20026927,0.48138925,0.72948,-0.045640536,0.08136714,0.036446977,-0.35246378,0.1797665,-0.36810756,-0.13344088,-0.40846485,-0.17136487,0.6764787,0.52793205,0.39559764,-0.2588639,0.021848312,0.1041347,-0.17571896,0.07305889,-0.13664165,0.0270366,-0.03607633,-0.5805511,-0.32154426,0.5997758,0.03978353,0.21828228,-0.07802432,-0.22451818,0.30568644,-0.14029141,-0.07895419,-0.124150135,-0.7395797,-0.05687523,-0.4822784,-0.4538534,0.46601883,-0.05475322,0.26239502,0.23185807,0.09047059,-0.40351465,0.5125828,-0.05613576,0.71930385,-0.34196493,-0.33936524,-0.34893286,0.2187906,0.25590682,-0.3508495,-0.14710224,-0.4014404,0.06126486,-0.49348205,0.30551904,-0.07316496,-0.40558052,-0.027356211,-0.06696265,0.087819554,0.4600886,-0.20463194,-0.1500659,-0.036195256,-0.14893566,-0.24111277,-0.40411398,-0.059043452,0.30094656,0.1209638,0.050478853,-0.047091134,-0.2740678,0.07346916,0.51262635,-0.04518423,0.28284097,0.46202177,0.20947534,-0.27507535,-0.15946984,0.38551855,0.491904,-0.016578078,-0.1285362,-0.39397752,-0.39733443,-0.4305302,0.21073829,-0.10515325,0.44712615,0.06284056,-0.48732954,0.9547097,0.048086822,1.1625868,-0.05856823,-0.48961657,0.17368266,0.3900371,-0.07598146,-0.059603494,-0.30974787,0.86987764,0.40505147,-0.19505352,-0.30660984,-0.40292588,-0.12522101,0.099878095,-0.30404365,-0.21646772,-0.009482866,-0.58947176,-0.16342288,0.13464274,0.299264,0.27437845,-0.2630761,0.15030403,0.18639287,-0.024516374,0.45284155,-0.4323855,-0.1590257,0.20904492,0.4098432,-0.08748841,0.07281891,-0.548614,0.41482276,-0.38665193,0.15982476,-0.37179244,0.2489146,-0.12540516,-0.39260888,0.2515563,-0.013503879,0.34618357,-0.31125346,-0.28826576,-0.2754316,0.5750967,0.13839158,0.08633121,0.803134,-0.3314907,-0.012225833,0.026309885,0.6138638,1.1225736,-0.1934612,-0.032171264,0.31885183,-0.30451137,-0.59640753,0.1871935,-0.24199048,0.25304613,-0.0172977,-0.32695395,-0.57288116,0.19064276,0.12168009,0.09007824,0.14448746,-0.5921083,-0.28324115,0.24112272,-0.2900591,-0.31798926,-0.40829945,0.09210515,0.5853722,-0.32565516,-0.25810236,0.20185313,0.17962392,0.066672005,-0.49839693,-0.21090047,-0.32694966,0.30220467,0.20729075,-0.41838512,0.08534558,0.07650766,-0.48748565,0.07950283,0.23003778,-0.37449154,0.09148594,-0.33316913,-0.18302022,1.1092901,-0.24813825,0.2783825,-0.52377284,-0.51572436,-0.8875346,-0.41338024,0.58835536,0.2015608,0.1390002,-0.5991997,-0.039217904,0.06038425,-0.066012315,-0.0183663,-0.3492658,0.43120837,0.1553494,0.46912813,-0.060014293,-0.725796,0.06434891,0.11395125,-0.18440326,-0.63534415,0.6122285,-0.15892658,0.8315011,0.1482543,0.09817002,0.28392175,-0.47683284,-0.22309136,-0.2656595,-0.23176204,-0.7527137,0.093165874,968 +116,0.46535596,-0.12843364,-0.36825734,-0.058634065,-0.18821764,0.21602109,-0.0980313,0.47524428,0.14915827,-0.42198497,-0.17176163,-0.31471485,0.024635242,0.27504617,-0.14662921,-0.48618782,-0.037155513,0.13290915,-0.52527845,0.38227695,-0.5387503,0.36989063,-0.038180076,0.4011774,0.098126896,0.2048592,0.04443828,-0.17417923,-0.14043672,-0.109332025,-0.12296387,0.35961476,-0.4624965,0.06934184,-0.18429229,-0.36140004,-0.0019754842,-0.49689013,-0.31029332,-0.5919192,0.26702508,-0.7137115,0.38834125,0.05171172,-0.24369158,0.3957706,-0.08574559,0.18151855,-0.17793316,0.048621655,0.18975136,-0.04873196,0.036372125,-0.13404319,-0.17075348,-0.26918098,-0.5035406,0.1813498,-0.4084496,-0.22239777,-0.16659328,0.17119852,-0.17552137,-0.033261325,-0.055014268,0.36470369,-0.4244822,0.08609224,0.12546831,-0.052345075,0.25150493,-0.44805858,-0.19325784,-0.07204568,0.28119057,-0.2742911,-0.09542726,0.14027332,0.28387195,0.5399127,-0.08464044,-0.018212542,-0.33691877,0.03875722,0.017569043,0.6073943,-0.2036607,-0.4992825,-0.1729944,-0.10743672,0.026926778,0.19271159,0.12967494,-0.28370094,-0.21124965,-0.0209538,-0.23011412,0.24569725,0.43947488,-0.38175035,-0.26370177,0.37458387,0.5009997,0.19965458,-0.010650227,0.013593819,0.012750456,-0.5109745,-0.10795961,-0.017670564,-0.15998434,0.532383,-0.030506724,0.3032903,0.6071396,-0.06267306,0.09591143,-0.05342307,-0.023660466,-0.056717083,-0.232658,-0.06258462,0.16677965,-0.28108,0.13310613,-0.093029365,0.82549036,0.0929416,-0.8120718,0.38462242,-0.5416728,0.07827151,0.006527112,0.5214353,0.62463635,0.28003818,0.28692517,0.55659723,-0.49441856,0.06843373,-0.12872574,-0.26601675,-0.10786661,-0.051787615,-0.08621923,-0.45085698,0.12293563,0.09277597,-0.06598161,0.079887606,0.37875262,-0.57448953,0.02536951,0.12883475,0.6986498,-0.38017693,-0.08677244,0.66278815,1.0076728,0.8504966,0.06335537,1.1320279,0.3184463,-0.32966444,0.29493105,-0.38204852,-0.7122218,0.23090163,0.34373936,0.06883356,0.28131735,0.1521129,-0.057083774,0.41992453,-0.34836027,-0.018092906,-0.1349168,0.05970044,0.0795984,0.038761333,-0.34285045,-0.29322895,-0.03983274,-0.011524631,0.13744621,0.18566051,-0.21494913,0.23338558,0.07707841,1.8668416,-0.078900665,0.15597177,0.06161301,0.37914363,0.10921867,-0.15273057,-0.13028328,0.44000253,0.28933805,-0.058527283,-0.58420515,0.047163326,-0.10272128,-0.5603635,-0.1302631,-0.2535048,-0.14901923,0.045514762,-0.47789097,-0.1491437,-0.19547294,-0.24741474,0.51184255,-2.8523371,-0.10697953,-0.10571495,0.30546468,-0.32376155,-0.3713365,-0.178058,-0.38824174,0.31756184,0.39452118,0.34715885,-0.6485988,0.31167203,0.2858342,-0.381077,-0.1543695,-0.54650813,-0.067857444,0.04741963,0.24559945,-0.07650566,-0.042369492,-0.04546075,0.025198907,0.38187853,-0.07980175,0.14616886,0.2673834,0.44265613,0.19039683,0.33491224,0.05452903,0.5113318,-0.18609197,-0.16393866,0.35889333,-0.34294164,0.2827426,-0.09428195,0.15459818,0.28575352,-0.5065819,-0.738785,-0.58045816,-0.37246948,1.1838044,-0.2570645,-0.34542626,0.26451916,-0.062134877,-0.08323218,-0.047162466,0.43383315,-0.11163111,-0.18519656,-0.8398678,0.104125306,-0.04345583,0.2129226,-0.008927185,0.033289626,-0.39732957,0.6045128,-0.12156424,0.44373876,0.35131878,0.16559425,-0.17641899,-0.36237356,0.008630259,0.8892689,0.3135147,0.18288587,-0.19129916,-0.2655133,-0.32976547,-0.049508855,0.06916892,0.38341802,0.6427894,0.098105654,0.18356626,0.2580824,0.08779086,0.0912839,-0.16292214,-0.15802911,-0.02828518,-0.10228371,0.5984934,0.5419074,-0.24040678,0.38781458,-0.13754043,0.21483341,-0.22306193,-0.32735643,0.39335087,0.7782698,-0.14270698,-0.1643461,0.5699061,0.5449201,-0.24318282,0.27171722,-0.55881435,-0.2778639,0.5954732,-0.23337531,-0.46299222,0.22926775,-0.2693812,0.08540631,-0.9127517,0.31346697,-0.10311661,-0.3303001,-0.5385643,-0.11364018,-3.2962446,0.19006242,-0.19630606,-0.20948653,-0.012895971,-0.10097217,0.14871907,-0.56776226,-0.49105218,0.10780568,-0.0325325,0.48314825,0.016221356,0.28105494,-0.23688689,-0.16565007,-0.23869711,0.08505279,0.08782674,0.358051,-0.031613115,-0.35697806,-0.030189462,-0.17691204,-0.2696287,0.040806115,-0.52065194,-0.46292913,-0.05764519,-0.5375001,-0.28924263,0.5221035,-0.44047695,-0.027990822,-0.24693069,-0.08674425,-0.23016022,0.35343817,0.14121963,0.14418828,0.06593452,-0.09891433,-0.07544531,-0.28322014,0.30584773,0.06909118,0.067562215,0.47184628,-0.10971542,0.1523731,0.35279363,0.57128006,-0.13756165,0.7230378,0.45794252,-0.05830715,0.32256165,-0.32390183,-0.065256454,-0.56796956,-0.30289704,-0.10145499,-0.38916215,-0.5095582,-0.17271854,-0.3411914,-0.7026284,0.4222283,-0.030999802,0.20548898,0.004051313,0.17909828,0.527047,-0.15665242,-0.10067327,-0.07582857,-0.020188924,-0.463862,-0.38408947,-0.6152394,-0.42047957,0.2042197,0.944489,-0.045300275,-0.034811337,0.07762292,-0.16149661,-0.05191135,0.06276648,0.0852727,0.13678294,0.37290022,-0.12557922,-0.60526156,0.5489218,-0.0740906,-0.29959577,-0.5141155,0.07512837,0.4985331,-0.5563702,0.539384,0.33786878,0.23622131,0.18538012,-0.5145922,-0.15349135,-0.015924647,-0.27500477,0.32030773,0.18842417,-0.70209646,0.44862372,0.4015773,-0.16347931,-0.84675795,0.3959408,-0.028044777,-0.34442997,0.06644911,0.32031137,0.1791012,0.012709511,-0.17613474,0.16722704,-0.53623736,0.31555632,0.27050593,-0.04505923,0.3717513,-0.23381832,-0.05739575,-0.63259053,0.021843772,-0.4980091,-0.29441363,0.138081,0.035390213,0.11126596,0.18445265,0.07935582,0.38683683,-0.38151994,0.10589954,0.0010680575,0.0003818227,0.03230141,0.43097705,0.45033717,-0.426878,0.5366324,0.004760919,-0.0071222186,-0.13612792,0.09295746,0.4923249,0.010558389,0.23758036,-0.06589796,-0.3204953,0.3817162,0.69338703,0.22463092,0.39929166,0.020856928,-0.23351121,0.29815036,0.06105004,0.12961344,-0.020841599,-0.4911482,-0.091862716,-0.024255872,0.20991297,0.4299165,0.1812048,0.39394352,-0.11249772,-0.2724148,0.0886872,0.2880641,-0.13467391,-0.9156875,0.26052612,0.11003068,0.84039676,0.558227,0.0015235133,0.1563718,0.4161672,-0.23284343,0.13856511,0.27959856,-0.049605604,-0.5892929,0.55386716,-0.540836,0.36476088,-0.23576495,-0.019347817,0.07600516,-0.07635725,0.38693142,0.7160222,-0.09874706,0.052810945,0.05147071,-0.23561706,0.007862149,-0.361203,0.10160847,-0.5855957,-0.10165672,0.6193265,0.48286933,0.2741345,-0.2341469,0.03649459,0.06283032,-0.09187311,-0.033155862,0.12738362,0.098395616,0.041814998,-0.6360512,-0.29029375,0.6069035,-0.055193253,0.14118972,0.038851157,-0.39750493,0.24092767,-0.22072731,-0.12134373,0.04392697,-0.5626604,-0.039342754,-0.32640362,-0.45420158,0.29499212,0.012144739,0.23796074,0.15539196,0.042044334,-0.35076132,0.29020625,0.14146967,0.7580557,0.03034481,-0.15078902,-0.4507854,0.19827372,0.32394314,-0.13733001,-0.260783,-0.2014049,-0.059219547,-0.5073395,0.44148934,0.054865416,-0.2229971,0.16276902,-0.12090817,0.025532223,0.565225,-0.05451349,-0.08035075,0.050278433,-0.20726347,-0.36063406,-0.022302097,-0.15065937,0.2735511,0.22342703,-0.07388242,0.009448387,-0.042109903,-0.12687898,0.43777388,0.0885928,0.3720988,0.43345052,0.037185192,-0.33994395,-0.09355975,0.09836613,0.41688412,-0.05498686,-0.10252804,-0.19681698,-0.4388673,-0.34411585,0.16160363,-0.22171238,0.33212748,0.10251992,-0.2999102,0.6774209,0.06335456,0.9271981,0.092960596,-0.23580536,0.06225696,0.36151493,-0.0019214638,-0.037260085,-0.46236446,0.91093403,0.5176146,0.0061684344,-0.17479077,-0.08439386,-0.08844786,0.1911522,-0.17418955,-0.15872589,-0.14404662,-0.62098163,-0.3380009,0.1535839,0.24021238,0.09036383,-0.014256563,0.025323022,0.15793839,0.024139825,0.39357477,-0.44077083,-0.31924105,0.26388752,0.24606706,0.005979128,0.114988774,-0.34716964,0.5206971,-0.5345995,-0.015978541,-0.2794457,0.11375003,-0.21431825,-0.21568075,0.12334866,-0.04489266,0.36022916,-0.2870163,-0.35130683,-0.29287308,0.42360675,0.061896987,0.17209919,0.47985375,-0.24753065,0.0513442,-0.022313688,0.51096976,1.0618674,-0.20282778,0.012003288,0.43110412,-0.2291235,-0.50231475,0.27889144,-0.29899728,0.13871726,-0.03439826,-0.15602675,-0.44437498,0.33169025,0.13752842,-0.03187842,0.021115083,-0.5536253,-0.11516313,0.37074733,-0.2729136,-0.25753397,-0.20794587,0.1663053,0.7686631,-0.32725346,-0.22718048,0.07240467,0.25469837,-0.27870026,-0.59844494,0.048419107,-0.4080312,0.35531485,0.10925409,-0.24547738,-0.19796285,0.026955865,-0.286306,-0.031895492,0.13010694,-0.32581717,0.06871616,-0.40887848,0.053638864,1.0208018,-0.056514733,0.17094362,-0.6136695,-0.44371203,-0.9848304,-0.39671236,0.541069,0.12874982,-0.0014150441,-0.39571714,0.041813172,-0.10868581,-0.20772806,-0.05465272,-0.3579085,0.48593628,0.14432421,0.40701526,-0.16929135,-0.6140789,-0.011143088,0.11365907,-0.2654459,-0.47711244,0.46951362,0.033997204,0.8164887,0.01964582,0.021296173,0.30488434,-0.48919666,0.06493799,-0.28273654,-0.07994406,-0.7717218,0.09319469,981 +117,0.4802388,-0.0914431,-0.57846844,-0.08633191,-0.57933915,0.08526304,-0.14699666,0.24884814,0.2653952,-0.17026256,-0.32440543,-0.1392046,0.23041706,0.37469664,-0.13691252,-0.80478513,-0.08293371,0.18498385,-0.79734075,0.48920733,-0.55058736,0.34772044,0.080954626,0.45047265,0.18279281,0.34141934,0.2433458,-0.11862131,-0.12197102,0.068379655,-0.060049444,0.16330753,-0.60489154,0.14960198,-0.1711525,-0.3373746,0.10367816,-0.45990545,-0.24441157,-0.6641208,0.20712547,-0.99186724,0.5175505,-0.17264566,-0.08090626,-0.03986414,0.26865453,0.33477277,-0.37959743,0.15389258,0.20590496,-0.27925804,-0.18389145,-0.23441441,-0.101839185,-0.5022702,-0.4834724,-0.05561912,-0.55950177,-0.31631577,-0.21827386,0.22087495,-0.30645952,0.15552536,-0.073966056,0.24579129,-0.4450099,0.06756349,0.35083556,-0.21403523,0.12157008,-0.47798002,-0.0019180477,-0.030886032,0.45548636,-0.012368336,-0.19142552,0.37594754,0.3813506,0.45447317,0.30397758,-0.36719233,-0.16902484,-0.25559196,0.2401762,0.5075206,-0.11375884,-0.30014104,-0.17437808,0.06916592,0.27548122,0.33774418,-0.056705974,-0.21832743,-0.046933915,-0.13620889,-0.13039671,0.38081023,0.5306399,-0.31123,-0.30204582,0.43362382,0.66444534,0.19943914,-0.14987922,0.119717926,0.050888535,-0.624552,-0.1515484,0.15727076,-0.062473454,0.44981253,-0.18514487,0.12160571,0.9366107,-0.08936228,0.042638276,-0.14177673,-0.04323145,-0.2416605,-0.26760986,-0.078873456,0.16322826,-0.5809504,0.0011615027,-0.30600667,0.81835103,0.19761837,-0.6267351,0.41296166,-0.54231894,0.22876024,-0.11661891,0.5969704,0.65246505,0.33919436,0.2897778,0.7577852,-0.30185276,0.33617184,-0.104676604,-0.5153757,0.050057575,-0.26865342,0.085734904,-0.4069925,0.28390557,-0.22234696,0.060250755,0.07500565,0.51014584,-0.51718616,-0.18172352,0.115676425,0.79631317,-0.3980274,-0.1350937,0.66738486,0.85886663,1.0363319,-0.028070368,1.394921,0.40441525,-0.17846125,0.008570276,-0.28262487,-0.613713,0.18075672,0.36503887,0.013373271,0.29110977,-0.061095573,-0.09744913,0.36509112,-0.32572064,-0.1489736,-0.07081179,0.38980693,0.16606325,0.058545396,-0.42759883,-0.21248117,0.022270307,-0.03957393,0.22266886,0.32876623,-0.22777149,0.38681638,-0.07259846,1.4296672,-0.068518944,0.12248092,0.09603618,0.45562685,0.27528954,-0.035673283,-0.085069865,0.41844344,0.37945092,-0.017119274,-0.6071039,0.20862691,-0.35749063,-0.45351142,-0.14604762,-0.33021596,-0.18705727,0.085892364,-0.46587607,-0.20065258,-0.10983813,-0.17785186,0.4281835,-2.5458353,-0.30603793,-0.11848354,0.3574337,-0.2586139,-0.2350387,-0.20665747,-0.5912653,0.20862766,0.21195707,0.40041563,-0.7176031,0.51554364,0.5106733,-0.49891508,-0.13152885,-0.6803051,-0.08267022,0.015634663,0.43053892,-0.14932832,-0.04507058,-0.26789635,0.2189116,0.60749173,-0.0042252243,0.23311661,0.5379242,0.383284,0.20715556,0.53620964,-0.028932098,0.54238045,-0.26256222,-0.16612086,0.4011346,-0.25386652,0.35556757,-0.27961513,0.12721929,0.51177174,-0.44109285,-0.9563654,-0.6285664,-0.2815048,0.93739045,-0.48133898,-0.46650654,0.20819287,-0.056221254,0.019674286,0.14766008,0.44833136,-0.10319883,0.04636982,-0.7525137,0.032984056,0.026305437,0.13781255,0.043956894,0.02750948,-0.21204041,0.67741245,-0.151573,0.52737045,0.14105871,0.34304142,-0.01658979,-0.4233387,0.09103799,0.8012366,0.2923622,0.10362893,-0.26152742,-0.2951633,-0.13043985,-0.22639188,-0.031914525,0.5680582,0.786831,0.025318976,0.15098207,0.21067563,-0.07856552,0.057237096,-0.18574996,-0.22504899,0.067317866,-0.061798133,0.40170288,0.74891466,-0.24851242,0.4696106,-0.32348996,0.37499094,-0.12206185,-0.68936163,0.63456464,0.70232576,-0.26483965,-0.05568111,0.52010554,0.4535637,-0.5101566,0.47040147,-0.7158358,-0.27890706,0.7535863,-0.19640982,-0.4606759,0.1505476,-0.21718107,0.04757414,-0.79025435,0.3090335,-0.1937603,-0.4017567,-0.40779698,-0.0604269,-3.4237494,0.2670291,-0.18581499,-0.04617957,-0.23422994,-0.058439165,0.23565419,-0.5848941,-0.6941365,0.17132398,0.18787631,0.6915277,-0.12274042,0.2644961,-0.26146972,-0.1463452,-0.11422644,0.11426304,0.12086065,0.24828458,-0.077994555,-0.45054764,0.09295751,-0.048306078,-0.473419,0.26607695,-0.58781075,-0.50949466,-0.07533839,-0.3969276,-0.2192881,0.53686965,-0.44788072,-0.070090644,-0.25898582,0.108710185,-0.33205092,0.14366746,0.15175718,0.27831644,0.19513312,-0.005220769,0.091920644,-0.32788536,0.56445175,-0.09235443,0.26256996,0.03552985,0.054014623,0.07882344,0.42028773,0.57050085,-0.23311782,1.0154824,0.26034683,-0.022378776,0.19316818,-0.19470692,-0.3163008,-0.5536652,-0.3729983,-0.2326079,-0.45167476,-0.49936712,-0.028447598,-0.38496014,-0.8156212,0.47423047,0.047441587,0.32287148,-0.18495242,0.24753013,0.55485624,-0.34192088,-0.010689035,-0.061260503,-0.15747893,-0.6321125,-0.35223526,-0.6620868,-0.5218324,0.10126758,0.99844134,-0.32108888,-0.0031373724,-0.18086791,-0.28739098,0.008447422,0.09499267,0.05972769,0.28027552,0.6255685,-0.12864345,-0.7189586,0.48269552,-0.17985646,-0.13242553,-0.59248906,0.010254921,0.57227945,-0.7592336,0.6315105,0.46620739,0.12142283,0.12776558,-0.6055823,-0.26641876,-0.06557763,-0.19665746,0.48465765,0.088045835,-0.7566191,0.5798053,0.30578196,-0.43057078,-0.8448231,0.30399853,-0.02513786,-0.34433278,0.03264251,0.31092837,0.13761847,-0.100213915,-0.25989187,0.15021059,-0.526566,0.3301631,0.23671344,-0.049235642,0.31286836,-0.16439112,-0.4189031,-0.69979894,-0.13104711,-0.44199845,-0.23756948,0.19416974,-0.11150162,0.0011738464,0.08508977,0.096961856,0.47171804,-0.32346523,0.102172144,-0.006106943,-0.34049946,0.27870914,0.39141473,0.32113373,-0.3419452,0.5280722,0.036139168,-0.2482062,0.14761838,0.14245483,0.4317522,0.15138,0.38400257,-0.09317055,-0.18500063,0.3755203,0.74977946,0.08882616,0.35288116,0.033923365,-0.25116348,0.47279269,0.013052233,0.12063978,0.024812594,-0.36634612,-0.021120735,-0.04360196,0.19607206,0.5073179,0.3651313,0.43959028,0.055443034,-0.15990594,0.12078561,0.09360903,-0.005108457,-1.1052333,0.21975607,0.17360166,0.89016044,0.44253284,0.08976433,-0.098269895,0.562934,-0.21027279,0.13400108,0.46873295,0.095906556,-0.43155292,0.8109376,-0.60143936,0.3213501,-0.31652898,-0.08392052,0.14907217,0.22578266,0.29680738,0.8831969,-0.17586401,-0.027590683,-0.108577006,-0.1940816,0.010820888,-0.2906368,-0.06476776,-0.56323755,-0.3318394,0.692944,0.44570422,0.34191945,-0.27198416,-0.13160197,-0.038088154,-0.11619849,0.09493819,-0.015766248,0.06426707,0.15035829,-0.5051259,-0.3512005,0.5944318,0.09274772,0.16819197,-0.22543761,-0.35372245,0.066904195,-0.34651124,0.0211261,0.017231582,-0.68561983,-0.10244935,-0.16616213,-0.62206733,0.3964094,-0.17928296,0.11326994,0.18030584,-0.017324418,-0.278781,0.1814054,0.097095996,0.9880911,0.03459598,-0.22952096,-0.33257943,0.12514234,0.38497788,-0.25547534,0.095054224,-0.34393904,0.12908052,-0.5141619,0.7116699,-0.1633895,-0.3356232,0.35693023,-0.29902294,-0.026835157,0.59984916,-0.053299397,-0.14565288,0.15740252,-0.047059506,-0.5273715,0.0037677437,-0.34289986,0.19707955,0.24163772,-0.14691876,-0.106772065,-0.18250239,-0.08405334,0.5595967,0.040216513,0.5007518,0.27594346,0.0073678754,-0.22150172,-0.039393652,0.17378023,0.51751655,0.12584297,-0.13949162,-0.391136,-0.44022813,-0.2320678,0.23332268,-0.15701483,0.13601165,0.10838136,-0.22346567,1.0198187,0.013773007,1.149577,0.16787145,-0.3047545,0.09033914,0.51273584,-0.07787043,0.0038836487,-0.36700267,0.7799482,0.48841774,-0.13325179,-0.051164094,-0.36882877,-0.054840825,0.36981916,-0.36450624,-0.022429623,-0.090215445,-0.51498675,-0.4866112,0.32276106,0.23737606,0.12815426,-0.06581099,0.008755298,0.027625374,0.085123256,0.5391444,-0.6969952,-0.23935911,0.17525625,0.25191182,0.027113743,0.3030158,-0.3539327,0.4377398,-0.7390499,0.08847487,-0.51911557,0.14551486,-0.13158603,-0.3331179,0.11823679,0.027215783,0.39914343,-0.30278623,-0.44398808,-0.18427198,0.46940833,0.08584265,0.13028832,0.62917113,-0.28757793,0.059161104,0.1366253,0.5725733,1.2605054,-0.42600554,0.114304066,0.4497881,-0.3153246,-0.5865693,0.44434744,-0.3732832,-0.09964397,-0.10456035,-0.45183548,-0.46183696,0.3215006,0.2434303,0.06724337,0.09374989,-0.57462215,0.021372177,0.37863427,-0.2559,-0.22143818,-0.18512549,0.3190413,0.7899303,-0.29353172,-0.29142213,0.05899367,0.3466212,-0.25369564,-0.49979302,-0.08339012,-0.30103528,0.39820856,0.101444304,-0.0863261,-0.075160295,0.17165986,-0.4286206,0.106161624,0.16000623,-0.37829956,0.12796566,-0.26210642,0.19018644,0.84714675,-0.17953134,-0.1472,-0.83843625,-0.36178055,-0.93511117,-0.454464,0.1670638,0.15021744,0.026117451,-0.37996265,0.06925832,-0.10584938,-0.15100886,0.06313166,-0.4935661,0.40392816,0.08684096,0.49834287,-0.26446676,-0.9745467,0.040179014,0.042077623,-0.26907116,-0.6626394,0.5985699,-0.13347608,0.8479388,0.036669362,-0.0978611,-0.008369185,-0.34554374,0.3061211,-0.47477466,-0.08504635,-0.8760117,0.12199935,994 +118,0.35852987,-0.21421257,-0.5082455,-0.07557819,-0.2717296,-0.046913315,-0.17160329,0.62672967,0.20821519,-0.36085624,-0.12240076,-0.2373073,-0.019471364,0.4476611,-0.13190477,-0.52289677,0.005088069,0.045875534,-0.62035394,0.49004474,-0.36717847,0.043673873,0.033167396,0.5337162,0.23451903,0.23550662,0.027586734,-0.07896665,-0.22919114,-0.1494146,-0.0018862442,0.32234845,-0.6470248,0.061529923,-0.24004515,-0.27710667,-0.11289547,-0.62836283,-0.31815663,-0.75342643,0.245698,-0.8391985,0.4552621,0.010651823,-0.17050849,0.25619063,0.14882308,0.37925386,-0.23864624,-0.2619833,0.18028742,-0.19878775,-0.11678218,-0.03336237,-0.23164108,-0.16154546,-0.6375107,0.22528999,-0.45815718,-0.16676314,-0.27613074,0.09936805,-0.2935198,0.04353342,-0.043522518,0.49668935,-0.42555183,0.05965003,0.3732496,-0.18043153,0.18441351,-0.47438297,-0.07960652,-0.20799018,0.19148259,-0.31335515,-0.27983984,0.37289268,0.23708674,0.498062,0.0053665796,-0.20504813,-0.35923514,0.100230776,0.04818035,0.46448332,-0.17679529,-0.4236625,-0.13040404,0.092667505,0.14605764,0.1974096,0.11294488,-0.25068817,-0.19547294,0.004709697,-0.098300196,0.40639353,0.48354676,-0.24269746,-0.16598988,0.16089405,0.59455466,0.31644538,-0.04994458,-0.025399057,0.09972062,-0.61006,-0.15458116,-0.0065665683,-0.034901712,0.50248617,-0.07909846,0.20163707,0.6307613,-0.21504714,-0.06680083,0.08555327,-0.02965091,0.012216274,-0.31239203,-0.15491556,0.3178152,-0.39461213,0.27747044,-0.14101951,0.609749,0.2713639,-0.7044452,0.36484382,-0.5113159,0.21385041,-0.07900966,0.44957986,0.7336626,0.5395524,0.45989183,0.69219166,-0.32560363,0.2340628,-0.14737228,-0.35397214,0.17151575,-0.32719615,-0.10907666,-0.43921915,-0.0473968,-0.2244622,-0.14761224,0.2212726,0.16717274,-0.58418745,-0.0054649794,0.12265134,0.9429278,-0.14444304,-0.14620765,0.91213775,0.8948079,0.9774156,0.0037960252,0.9995383,0.081382275,-0.17344688,0.40148753,-0.09241107,-0.79748493,0.31779397,0.32477218,-0.21265142,0.20961386,0.040076826,-0.14884557,0.6139469,-0.47081614,0.051973917,-0.19269432,0.019845966,0.1443173,-0.09972604,-0.38984865,-0.22869545,-0.13827747,-0.058908843,-0.07361946,0.25611866,-0.08374249,0.5349876,-0.19572869,1.7083514,0.025058,0.17300579,0.031277053,0.65828586,0.10424292,-0.14710875,-0.2447,0.12289012,0.23619753,0.22018744,-0.45184323,0.09286175,-0.20013529,-0.36202106,-0.082233764,-0.39810884,-0.07018452,-0.12834066,-0.4743538,-0.18727106,-0.1573364,-0.16054052,0.3973789,-2.7825809,-0.092058815,-0.013196579,0.3101617,-0.27401587,-0.31114605,-0.11416725,-0.50616115,0.46389845,0.28244987,0.5251516,-0.58482647,0.36139956,0.30665252,-0.6003221,-0.086744264,-0.7000169,-0.10933725,-0.01479598,0.3320495,0.015918072,-0.08760296,0.13040014,0.06615327,0.56667995,-0.087042,-0.004855325,0.17492229,0.4330656,0.10184202,0.48262602,-0.18056388,0.58637756,-0.47347298,-0.32545233,0.28539184,-0.2888145,0.30409607,-0.042861264,0.089299455,0.4913608,-0.42636955,-1.0284902,-0.59471184,-0.13036293,1.2141595,-0.17197777,-0.38714778,0.34882036,-0.45084083,-0.14364815,-0.03551638,0.46654767,0.07671605,0.030774005,-0.720837,-0.09302758,-0.13598947,0.10146491,0.007747714,0.01731683,-0.40135625,0.5053133,-0.121768,0.23985912,0.5059706,0.1595287,-0.24236774,-0.53446895,0.1494827,0.79186237,0.26832575,0.10851414,-0.28202647,-0.27767146,-0.3613736,-0.17143092,0.037914556,0.4694675,0.68648976,-0.052590836,0.17062464,0.2531895,0.08111814,0.0382788,-0.17824148,-0.32133728,-0.20401856,-0.021328917,0.6257246,0.80285454,-0.105349384,0.41095,0.047955237,0.38351974,-0.051984992,-0.44472092,0.4790865,0.8772223,-0.16575052,-0.28938618,0.4838157,0.3671135,-0.24646215,0.5163334,-0.4409481,-0.2431758,0.38901138,-0.1139733,-0.5280659,0.19975744,-0.28189963,0.14150691,-0.9138864,0.27700704,-0.28932628,-0.3520334,-0.6507911,-0.11114371,-3.4041317,0.120884575,-0.23811089,-0.13886738,-0.0743052,-0.09185222,0.081783056,-0.5932658,-0.61430067,0.09286586,0.07068177,0.7767568,-0.19323087,0.049549613,-0.22185214,-0.24845484,-0.38043737,0.08895346,0.37542483,0.38326886,-0.005172634,-0.45754296,-0.20460661,-0.26314986,-0.5001597,-0.03282799,-0.6741115,-0.40062162,-0.25400332,-0.5342658,-0.2824158,0.69047797,-0.29233736,0.06557308,-0.18126278,0.050960336,0.037184358,0.30677027,0.16409205,0.15415065,0.15115315,-0.095216274,0.05301695,-0.21964723,0.20766197,0.12271638,0.34695354,0.37042445,-0.03922855,0.3481186,0.592852,0.943667,-0.190412,0.9222148,0.55266094,-0.027792875,0.28178132,-0.38056836,-0.32257426,-0.43975416,-0.16236138,0.085030146,-0.4773971,-0.41665205,0.18615976,-0.36009684,-0.8747397,0.7054073,-0.063724145,0.03603877,-0.0037498316,0.16089328,0.60294527,-0.3460886,-0.11095394,-0.09118026,-0.0009955327,-0.61761665,-0.24611518,-0.43359548,-0.72620416,-0.07509403,1.0168316,-0.17809702,0.06655235,0.05907832,-0.1759964,0.03699513,0.052764136,-0.061231267,0.19844891,0.373784,-0.07748253,-0.6683351,0.47742695,-0.1639878,-0.17212394,-0.6045584,0.3409216,0.5497869,-0.659094,0.61943126,0.33630842,0.021004265,-0.19195591,-0.510083,-0.23516132,-0.13777253,-0.11043296,0.3327506,0.05850791,-0.7888833,0.39423743,0.45495814,-0.37217343,-0.8074238,0.37709108,0.020798746,-0.16944711,0.04934748,0.32254758,0.106690526,0.00015028616,-0.23220351,0.18133564,-0.38203785,0.122186586,0.28788692,-0.08237784,0.27877337,-0.31383547,-0.18468246,-0.67998254,0.1741653,-0.4154375,-0.30663013,0.3813524,0.12199309,0.062004115,0.070637256,0.1714645,0.3027863,-0.16997705,-0.0088823475,-0.16431178,-0.3208644,0.2669779,0.49267966,0.5397101,-0.595609,0.60183454,0.06571566,-0.1055074,0.179281,-0.042728543,0.4557767,-0.08248653,0.32163286,0.105355404,-0.21827014,0.1016039,0.8252695,0.06995479,0.4673477,-0.067154504,-0.0742215,0.18488051,0.15958166,0.13638894,0.143151,-0.6354755,0.16438083,-0.17437261,0.24007517,0.42747465,0.15334447,0.36577553,-0.06719879,-0.2691957,-0.014763415,0.06846536,0.048051015,-1.4080641,0.35846463,0.23364757,1.0019648,0.3265723,0.12563682,0.0810319,0.8120348,-0.17307596,0.15462966,0.4351671,-0.1322731,-0.5567985,0.54807395,-0.79945105,0.639084,0.1918897,0.008680028,0.11918228,-0.0460124,0.5832197,0.6354703,-0.21541895,-0.057069197,0.040169977,-0.26770326,0.2396595,-0.53309786,0.08523631,-0.45573866,-0.23262297,0.6415722,0.5761653,0.26325536,-0.17267331,0.0071468037,0.15268575,-0.07668133,0.21462587,-0.033202093,0.084191516,0.009145307,-0.61840236,-0.13346218,0.5679427,-0.10728487,0.2562238,-0.113128796,-0.12978461,0.2310974,-0.199944,-0.17744945,-0.2352448,-0.6812897,0.013974544,-0.47269756,-0.43848523,0.36247593,-0.047327466,0.3421239,0.24038619,0.06623384,-0.49062756,0.687019,-0.1809069,0.9047827,-0.16180745,-0.21918978,-0.38831574,0.34008986,0.2938174,-0.17228581,-0.04639437,-0.2888412,0.06793148,-0.36442515,0.32349622,-0.15648825,-0.50942284,-0.020611579,-0.021472719,0.08055806,0.5464415,-0.12836768,-0.01086684,-0.012343312,-0.23510142,-0.36434492,-0.1504065,-0.06422248,0.23340505,0.25427434,-0.08527276,-0.14148301,-0.15394889,-0.0998307,0.53896934,-0.017387072,0.41646135,0.31230685,0.06183513,-0.28754112,-0.18952173,0.2348617,0.6611923,-0.069020085,-0.25605613,-0.4023421,-0.27018687,-0.36251366,0.18637225,-0.13660458,0.45235723,0.117809914,-0.32946962,0.7018991,-0.0072814464,1.312881,-0.0272875,-0.43670556,0.20735115,0.43930048,-0.04821741,-0.052693352,-0.4937976,0.92010766,0.37839037,-0.11609553,-0.1286872,-0.37324366,0.006963118,0.21791612,-0.24265017,-0.20653799,-0.056381416,-0.5087669,-0.10627768,0.24754736,0.3141065,0.3445758,-0.23729374,0.009225086,0.17463459,0.021976693,0.140202,-0.373257,-0.19914576,0.3033414,0.36478695,-0.07949176,0.08514978,-0.48346218,0.4048394,-0.3114684,0.059049044,-0.29273346,0.22590917,-0.21693373,-0.30564144,0.28749526,-0.08790091,0.4115722,-0.33975124,-0.29543468,-0.3283071,0.4218214,0.29033664,0.19630763,0.6041275,-0.28623375,-0.03346907,0.062205095,0.52246976,0.81114185,-0.28170225,0.014253521,0.32024786,-0.06964619,-0.48870242,0.45309952,-0.27832964,0.2576748,-0.108006,-0.10356839,-0.6856925,0.1344535,0.14155337,-0.034988485,-0.06935929,-0.64306694,-0.13577406,0.20815231,-0.22202414,-0.284648,-0.5276857,0.008372796,0.61967,-0.13961855,-0.26854992,0.24165884,0.19226973,0.007988667,-0.40381482,-0.082041375,-0.22282659,0.10700525,0.08978513,-0.5643037,-0.07328473,0.0608361,-0.5252878,0.15786196,0.050977714,-0.2911066,0.049716983,-0.10921212,-0.019390147,0.9387369,-0.28561345,0.35513973,-0.47478575,-0.513146,-0.9543426,-0.3046104,0.4822649,0.070447475,0.043781407,-0.6678965,-0.03710165,-0.20288242,-0.30677977,-0.052346405,-0.49166667,0.35474586,0.061244022,0.36213705,-0.19351985,-0.6305058,0.24790902,0.10619981,-0.12269654,-0.5704042,0.4904651,0.076360054,0.81617224,0.10733033,0.16438945,0.44852144,-0.38379413,-0.24986883,-0.18403314,-0.102278,-0.5122573,-0.049635526,0 +119,0.2614745,-0.019233406,-0.4816751,-0.17611119,-0.4058563,0.05030082,-0.1432229,0.34655297,0.26998806,-0.26255795,0.042727087,0.025702557,-0.08578718,0.2822681,-0.24314703,-0.7273008,0.10097357,0.18101378,-0.64158577,0.45926154,-0.4560178,0.3666661,-0.17002758,0.33771974,0.056437366,0.26373088,0.0270614,-0.026515337,0.112497345,-0.0022240798,-0.056592267,0.3613356,-0.35828632,0.26579055,-0.058456652,-0.22962376,0.01900121,-0.35952178,-0.3639269,-0.71530116,0.30659446,-0.4800077,0.4924711,-0.055463124,-0.43110314,0.16968913,-0.032255847,0.24125203,-0.3865387,0.043007154,0.21241342,-0.10809307,-0.0995102,-0.13355714,-0.26588517,-0.36231232,-0.44275787,0.0007608533,-0.5890309,0.03047468,-0.30556306,0.19323209,-0.29861984,-0.063718654,-0.20399147,0.31584024,-0.43280366,0.13839397,0.18128252,-0.09193397,0.037704013,-0.37234247,-0.051885962,-0.15575224,0.2059889,-0.085029505,-0.2553067,0.17164713,0.23321387,0.47729868,-0.00086783565,-0.2106313,-0.25328973,-0.06264532,0.04099586,0.3506392,-0.07948939,-0.23927797,-0.24201012,0.13785173,0.14779015,0.20943451,-0.15529843,-0.3311453,-0.07286808,-0.021281762,-0.2996376,0.45318255,0.44055864,-0.33413282,-0.1721828,0.4267359,0.415767,0.26270744,-0.31106707,0.17116234,-0.07231627,-0.4174778,-0.35286316,0.073432036,-0.031842414,0.46991542,-0.11838558,0.21016067,0.7247673,-0.09563212,-0.1376819,-0.004275358,-0.050291784,0.035421956,-0.16752367,-0.18246533,0.09200333,-0.4790884,0.151925,-0.07938907,0.7512686,0.10423642,-0.92836565,0.36946216,-0.480591,0.118290424,-0.19159393,0.58911353,0.7963949,0.4572611,0.2501185,0.7112891,-0.52755195,0.18069264,-0.0057518193,-0.4169346,-0.037979424,0.02367603,-0.099520594,-0.5587928,0.10406659,0.008430858,-0.03513803,0.021174384,0.039778177,-0.32610255,-0.13972804,-0.04876465,0.6774286,-0.3859658,-0.17918916,0.790322,1.0147442,0.9630978,0.14426921,1.1490155,0.27417478,-0.007697324,0.05161092,-0.33505592,-0.52834785,0.2245244,0.2600673,0.03113741,0.29089403,0.1590814,0.1947953,0.39829192,-0.11790419,-0.041117348,-0.159743,0.29503992,-0.06514258,-0.11608158,-0.3612185,-0.33499625,0.17193025,0.15636039,-0.09932906,0.27726173,-0.13904886,0.23170286,0.2147941,1.1864792,0.2471635,0.010272447,0.0057058604,0.3670517,0.16100264,-0.20751701,-0.16043131,0.31610367,0.3802332,-0.025459746,-0.55264354,-0.00980356,-0.2028797,-0.31597266,-0.10617172,-0.30618703,-0.0015515486,-0.19009088,-0.479777,-0.07667664,0.07314251,-0.21936356,0.62024856,-2.7876215,-0.19995397,-0.08217765,0.28379086,-0.16837575,-0.26417577,-0.14425404,-0.38986906,0.33842182,0.35763356,0.3453034,-0.5410777,0.664888,0.19555712,-0.484398,-0.03951401,-0.6522667,-0.056706633,0.08866228,0.4073414,0.0449277,-0.03859785,-0.07189242,0.21952061,0.5990268,-0.067425765,0.049246173,0.21717685,0.57654214,-0.054329615,0.509487,0.10701715,0.4780031,-0.21335743,-0.06792057,0.27496856,-0.3573809,0.4242534,0.12992501,0.08180979,0.37199974,-0.5314234,-0.83270717,-0.4966736,-0.29581484,1.2316278,-0.25912935,-0.3402875,0.24845845,-0.2315448,-0.28809512,-0.05977034,0.2971103,-0.049555056,-0.21968536,-0.6441591,-0.0011980097,-0.030537626,0.2035265,-0.100813374,0.083512135,-0.16618824,0.6435806,-0.083978646,0.5234764,0.3727168,0.14875844,-0.11661012,-0.27780235,0.10260795,0.6719054,0.3636926,0.07049696,-0.22815691,-0.19967543,-0.15913172,-0.038797993,0.16891202,0.6078766,0.5127609,-0.029509788,0.02948929,0.2928339,-0.23638959,-0.028391456,-0.25072357,-0.18729596,-0.07266151,0.11017154,0.59975743,0.64522624,-0.19097398,0.37903377,-0.035879437,0.07868735,-0.09182561,-0.49622682,0.3614865,0.7075972,-0.052532636,-0.30375227,0.42978248,0.3970309,-0.19429107,0.27968213,-0.3369902,-0.18262705,0.5667051,-0.15816341,-0.29180616,0.119846135,-0.2663084,-0.004069664,-0.8928093,0.3104889,-0.1513072,-0.7525931,-0.47842348,-0.08462096,-3.6526225,0.2191454,-0.122886226,-0.11187038,-0.07422548,-0.161158,0.2336915,-0.49316132,-0.56073,0.14945807,0.14402008,0.4770789,-0.07426117,0.06113232,-0.2490388,-0.2748272,-0.24080744,0.16636893,0.0777619,0.3239434,-0.0621381,-0.30405658,-0.05180835,-0.23355117,-0.48622847,-0.01485218,-0.5078429,-0.4122289,-0.031647436,-0.495657,-0.2426874,0.6924291,-0.35787004,-0.0625684,-0.23150365,-0.06658487,-0.18561764,0.44479617,0.17129119,0.25449958,0.010633477,0.06947096,-0.12518726,-0.38397697,0.26239213,0.04183501,0.25612625,0.25129324,0.060169145,0.19685036,0.6502847,0.6644952,0.069839224,0.7237222,0.26879027,-0.19964738,0.35867387,-0.26358077,-0.34733158,-0.66391724,-0.3190215,-0.30452737,-0.359999,-0.32120705,-0.099031165,-0.36934012,-0.71445876,0.29328203,0.05645379,-0.00028645992,-0.00809013,0.24071662,0.3756517,-0.05623389,0.12790239,-0.049209427,-0.24395357,-0.42255655,-0.4542335,-0.57031566,-0.4267812,0.11960385,1.0485082,-0.17608815,-0.014540854,-0.014419059,-0.21035652,0.03417957,0.07621252,0.25102845,0.37179253,0.14987792,-0.24164733,-0.6345416,0.34696394,-0.15513021,-0.09745132,-0.66611874,0.015427237,0.7189175,-0.5574824,0.61224717,0.28073877,0.17241427,0.17060016,-0.63188666,-0.31575045,0.06699525,-0.17529391,0.5019864,0.23323473,-0.7396581,0.5639065,0.30287477,-0.04144264,-0.58975893,0.5671395,-0.112914704,-0.16470976,0.06709163,0.3125801,0.18266755,-0.12026267,-0.016851481,0.19957511,-0.3304803,0.22663762,0.25104302,-0.04143041,0.20324716,-0.034336742,-0.030521575,-0.62845695,-0.23347549,-0.58745897,-0.20644093,0.021875659,-0.022739407,0.13969104,-0.056677066,-0.06611706,0.3439668,-0.29809675,0.16371511,-0.11698716,-0.25520262,0.1868997,0.48216388,0.31771645,-0.41425693,0.57022405,0.072223835,0.25843498,-0.043097593,0.1566762,0.48004463,0.08738379,0.41059884,-0.07481752,-0.095634565,0.12023094,0.82952225,0.21029158,0.34654012,0.06989882,-0.11515341,0.25176626,0.17040174,0.21777931,-0.10576652,-0.14567712,0.07222292,0.04379309,0.22959144,0.37107405,0.07686894,0.1879954,-0.14008935,-0.18252526,0.12257622,0.18708633,-0.02864658,-1.2194474,0.4851181,0.34823975,0.68275577,0.35881606,0.0784479,-0.02932239,0.56955975,-0.25721496,0.10623164,0.39809716,0.0019583304,-0.4468547,0.4324323,-0.59613186,0.6021314,-0.0761158,-0.078921966,0.18911959,0.18573815,0.29700607,0.82202834,-0.15709712,0.04507649,0.077624485,-0.2903558,-0.031104548,-0.36882514,-0.017187564,-0.4351142,-0.31722406,0.65710145,0.5276803,0.3109209,-0.33272398,0.026463313,0.07793355,-0.19236925,-0.0057121227,-0.14049648,-0.091670066,-0.1086485,-0.5393189,-0.20104338,0.5037462,-0.095415436,0.07812011,0.08485301,-0.20603329,0.4129096,-0.06862155,0.014325524,-0.08050695,-0.57888234,0.0029744825,-0.22767061,-0.38523716,0.36496308,-0.22817558,0.33179802,0.15993387,0.11840836,-0.34190413,0.35753518,0.051257778,0.68174094,-0.07695828,-0.081604384,-0.3204523,0.055252638,0.23459087,-0.16331914,-0.19628827,-0.38279405,0.039743524,-0.62770766,0.30135906,-0.26501527,-0.31144714,-0.112025246,-0.08980713,0.13043055,0.3786008,-0.20790829,-0.193892,-0.01391023,5.697409e-05,-0.21850702,-0.16796298,-0.2737106,0.32172993,0.09596279,-0.051598854,0.0058604437,-0.12809321,-0.106222026,0.3228467,0.12480737,0.22420844,0.2449417,0.11409235,-0.22040175,-0.06400223,-0.097779274,0.39505985,0.041348603,-0.06317089,-0.24366896,-0.14945579,-0.2376148,0.28365326,-0.22210354,0.10892406,-0.009854897,-0.33305493,0.6507034,0.049474455,1.0527943,0.04605975,-0.17896062,0.16361451,0.44670343,0.16983981,0.042898912,-0.22637312,0.621824,0.5223324,-0.06374326,-0.16435996,-0.37343132,-0.14857669,0.06739534,-0.22290736,-0.2561747,0.031014534,-0.6514892,-0.14423925,0.14989635,0.109302536,0.16743039,-0.03950615,-0.18304911,0.10853601,0.23164542,0.38357577,-0.4433958,-0.017770013,0.21411571,0.14797375,-0.012373046,0.08028645,-0.3900587,0.44032922,-0.5946699,0.13580994,-0.3187812,0.14585534,-0.1969571,-0.18405816,0.15632153,-0.018468857,0.2859576,-0.20285913,-0.22122113,-0.31783444,0.63087326,0.1903836,0.119468644,0.6224887,-0.18940134,-0.063636504,0.10865031,0.4461202,0.8957405,-0.114280194,-0.19656743,0.3234583,-0.19975628,-0.44815916,-0.0046316665,-0.43946293,0.08436589,-0.0056629223,-0.18528035,-0.32838613,0.32209522,0.13197741,0.068271965,0.014978703,-0.61536825,-0.07237422,0.3615173,-0.26820722,-0.3191881,-0.29362896,0.3189296,0.6814874,-0.31478375,-0.3620897,0.012705215,0.2129392,-0.20267104,-0.5120423,0.12996478,-0.28321847,0.31684828,0.07964298,-0.41042143,0.019816926,0.22444372,-0.38358232,-0.0137834465,0.3599991,-0.30521375,0.0977031,-0.14038672,-0.081337884,0.90768397,-0.13741986,0.33967456,-0.5926396,-0.54138094,-0.75110084,-0.30960763,0.19592044,0.27482083,-0.13315532,-0.58662087,-0.04310361,0.037700024,-0.15451345,0.013576265,-0.48747382,0.4698569,0.08888401,0.27274826,-0.045464396,-0.94036496,-0.08376514,0.04303968,-0.34706828,-0.42316172,0.57697177,-0.32146898,0.6227722,0.008546743,0.16528249,0.0046624583,-0.40173733,0.32574162,-0.47390455,-0.16696411,-0.54716706,0.08912746,7 +120,0.44488475,-0.25743976,-0.5159148,-0.0924605,-0.33708933,-0.1578853,-0.22091955,0.1717604,0.18874766,-0.059151586,-0.19924363,-0.1609756,0.2139729,0.5024792,-0.12988383,-0.7563636,-0.103032134,0.16504161,-0.8180517,0.5290792,-0.5772398,0.15623781,0.16872048,0.45626247,0.15885755,0.4627964,0.43618077,-0.17189834,-0.065994054,-0.03917748,-0.12686405,0.30873892,-0.65183514,0.017021,-0.24162439,-0.3001286,0.11559164,-0.51059324,-0.23736218,-0.77736795,0.112789676,-0.97569686,0.48854688,0.055306066,-0.06470038,-0.10284632,0.2816316,0.3544372,-0.4329535,-0.043381818,0.20634297,-0.26804593,-0.13552722,-0.3153532,0.06297776,-0.5137368,-0.52577275,0.0035678367,-0.5254624,-0.3062913,-0.26507047,0.16590089,-0.35872206,0.058769148,-0.12187108,0.4156165,-0.45966625,-0.04136545,0.41700116,-0.24738552,0.21534367,-0.44792625,-0.05388614,-0.09824133,0.46306476,0.0631884,-0.19781561,0.4604408,0.3085706,0.38818875,0.31659746,-0.38857454,-0.25077063,-0.19133233,0.24674839,0.45778263,-0.1533126,-0.4853353,-0.1890519,0.057254013,0.24670582,0.39139727,0.0143709285,-0.19291404,0.030550273,-0.016749699,-0.10034949,0.4644925,0.5596006,-0.24079739,-0.36265284,0.20599145,0.5036919,0.20895928,-0.13510971,-0.17640899,0.031490874,-0.55324763,-0.19267918,0.10960892,-0.02360731,0.62762886,-0.1333949,0.027437815,1.0398839,-0.26239523,0.06274049,-0.28302664,-0.08335173,-0.3046785,-0.3022504,-0.14006743,0.19627823,-0.6183519,0.07944288,-0.30987433,0.79093075,0.19245474,-0.6609511,0.3682669,-0.53412145,0.20058806,-0.07817704,0.6101855,0.67737365,0.34367672,0.53818107,0.6372023,-0.30648342,0.26166365,-0.064141944,-0.5892427,0.1706055,-0.3096679,0.17359611,-0.4263458,0.01781152,-0.15735605,0.112726875,0.012736698,0.48570016,-0.60669106,-0.005460207,0.2929358,0.702979,-0.35912234,0.012733754,0.70561284,1.107064,0.9923254,0.027231162,1.2280993,0.42603454,-0.2284515,0.14954518,-0.27011764,-0.71690696,0.16650121,0.39915022,-0.124428354,0.28439584,-0.08664869,-0.08909921,0.3879238,-0.55161864,-0.012015752,-0.07305443,0.2646555,0.121153265,-0.017152289,-0.48689488,-0.18608329,-0.04570628,-0.07898912,0.1176319,0.29853287,-0.20007804,0.52934676,-0.13683988,1.3766366,-0.0068005524,0.073868655,-0.009255541,0.568177,0.26040405,0.0026366392,-0.035174575,0.39200726,0.4026481,0.13684267,-0.5231424,0.22857358,-0.40316808,-0.475019,-0.1835238,-0.41298848,0.061408963,0.25234684,-0.38628796,-0.08485183,-0.03996931,-0.0951642,0.37159857,-2.5546448,-0.12691669,-0.13249286,0.19963779,-0.2068949,-0.16674389,-0.032150585,-0.5793542,0.26953787,0.21870072,0.5312027,-0.6559433,0.4268551,0.4106553,-0.58555454,-0.09300017,-0.8039849,-0.06959612,-0.13299103,0.6044838,-0.05164906,-0.1448571,-0.09168479,0.1069509,0.85149926,0.084741496,0.22956705,0.38782835,0.3199676,0.21193251,0.6247614,0.14312604,0.5815474,-0.35852814,-0.24812476,0.4202637,-0.11390481,0.41060412,-0.29349527,0.108704545,0.5574036,-0.48468742,-1.0515413,-0.60974866,-0.39721304,0.98651886,-0.44617072,-0.5077446,0.218474,0.009410492,0.102068596,0.02176289,0.4861995,-0.20878226,0.16418676,-0.70587504,0.18593264,0.019250603,0.11318811,0.14739823,-0.002465728,-0.33694735,0.71653205,-0.008019726,0.42489105,0.2839547,0.31171212,-0.12889996,-0.55296,0.18505754,0.84515846,0.3034834,-0.03178374,-0.17563719,-0.34450895,-0.07614377,-0.30190912,0.0522206,0.4852788,0.8988369,-0.07112694,0.17277388,0.26496196,-0.0064680814,-0.00052698754,-0.12432917,-0.22197244,-0.048534114,0.07176395,0.52738565,0.8362961,-0.1807759,0.33371094,-0.28624943,0.46777326,0.18290654,-0.5754454,0.68832886,0.88079035,-0.14985721,-0.00070737995,0.55308443,0.5606731,-0.45886272,0.5240081,-0.6351825,-0.29540828,0.73628783,-0.13761382,-0.37867984,0.1514124,-0.31079742,0.16523856,-0.90300155,0.4032478,-0.27040762,-0.36796603,-0.5035728,-0.17590724,-3.8938599,0.22536455,-0.34000522,-0.11128793,-0.3058875,-0.13866791,0.35806936,-0.76292163,-0.3834504,0.16408774,0.1850019,0.6711964,-0.043699574,0.15727705,-0.25238526,-0.17217344,-0.10920241,0.21128988,0.29019126,0.2737299,-0.17692584,-0.42113164,0.10113869,-0.062504455,-0.5126633,0.18453234,-0.56468827,-0.4754337,-0.20287876,-0.47168928,-0.39883816,0.53887963,-0.331773,0.051765125,-0.19914196,0.056065816,-0.27541223,0.23627901,0.16917048,0.24134251,0.05151392,0.006482768,0.11410583,-0.3443995,0.43702164,-0.047271665,0.41378388,0.11555826,0.06353695,0.13867925,0.42299953,0.5671052,-0.23999065,0.9787634,0.5357228,-0.0046091946,0.081523724,-0.31183517,-0.20714691,-0.7559919,-0.5453406,-0.15732126,-0.42841104,-0.5748001,0.03349606,-0.30667964,-0.84784317,0.6996171,-0.108504444,0.39017102,-0.15573022,0.13165241,0.46092662,-0.2610367,-0.09629267,-0.065165654,-0.1484395,-0.70096916,-0.2225306,-0.7155596,-0.6599166,-0.003128322,0.7761211,-0.28638813,-0.06799737,-0.10643298,-0.32470486,0.046144538,0.11410675,-0.03716719,0.3136436,0.5368561,0.054282445,-0.7633909,0.66550434,-0.020476889,-0.042407107,-0.5112448,0.12314057,0.518061,-0.8512961,0.62072456,0.46568674,0.11384462,0.10708384,-0.4869002,-0.40718967,-0.05175806,-0.07447931,0.5451528,0.15855926,-0.8039342,0.60912377,0.30736452,-0.5725624,-0.7643468,0.29959214,-0.049017157,-0.28221413,0.16298488,0.23845963,0.07028384,-0.07695839,-0.35710976,0.19629882,-0.5395705,0.26649016,0.30070382,-0.032410458,0.28397655,-0.10711949,-0.35126528,-0.70849055,0.045016542,-0.53808033,-0.2018741,0.35685,-0.027101435,-0.18098345,0.05287822,0.08233958,0.386959,-0.2880789,0.16415943,0.05175185,-0.37590796,0.25336775,0.5005967,0.34962818,-0.54315394,0.6503928,0.14798476,-0.32212448,0.062372565,-0.0268941,0.36447638,0.09790412,0.38735646,-0.12418597,-0.195715,0.30931646,0.6622786,0.062363822,0.50393033,-0.0048015704,-0.031579886,0.57510847,0.08882242,0.08302238,0.0721008,-0.42689505,0.014273056,0.06947092,0.14977394,0.5266523,0.33883196,0.36682206,0.09920411,-0.07705409,0.05763266,0.2542652,-0.0016808748,-1.1416361,0.44197452,0.21771163,0.7544033,0.5260322,0.04388769,-0.2667018,0.77918065,-0.31839314,0.025025893,0.43096873,0.11228547,-0.518973,0.7707107,-0.6476638,0.29613924,-0.25143096,-0.03828914,0.09784428,0.1702088,0.24872202,0.77336746,-0.24397454,0.07181382,-0.06374551,-0.1960351,0.08804111,-0.4089522,-0.013400348,-0.34880155,-0.41357175,0.8278906,0.40102616,0.34461215,-0.1682817,-0.17818438,0.05845988,-0.25291535,0.32638586,-0.058243923,0.04688618,0.19511083,-0.61639,-0.17684866,0.60440046,-0.11571162,0.31103882,-0.19937862,-0.3236834,0.03085432,-0.30044705,-0.12897159,-0.030488063,-0.7207041,0.008514969,-0.24413334,-0.58153033,0.57774377,-0.34768817,0.20212583,0.2759469,-0.002958265,-0.29291922,0.2086744,-0.010632225,0.86611927,-0.0297036,-0.32471484,-0.38714072,0.172698,0.36574447,-0.27868405,0.12653707,-0.4157843,-0.072160676,-0.4687947,0.6733204,-0.22747017,-0.49327543,0.074265644,-0.25663778,-0.09561456,0.63530326,-0.09481926,-0.1972831,0.11857352,-0.12910552,-0.3661119,-0.18719734,-0.2648484,0.22307713,0.18358265,0.040123906,-0.117796466,-0.20860699,-0.1327017,0.6016828,0.017990736,0.5610987,0.2052018,0.033947244,-0.19328226,0.029768197,0.14954476,0.43419102,0.19078234,-0.14493658,-0.47978336,-0.43833402,-0.37498823,-0.17385517,-0.115672275,0.1900445,0.11967729,-0.23148426,0.892514,0.006158336,1.3582842,0.08774768,-0.41884467,0.13996206,0.6643744,-0.18369956,0.09953223,-0.4518243,1.0107684,0.55579084,-0.18036844,-0.11392665,-0.5004913,-0.02297307,0.39936525,-0.3825984,-0.10735285,-0.0431636,-0.4889595,-0.47089368,0.22315498,0.31368148,0.17574312,-0.055790298,0.013273632,-0.0094692055,0.13048619,0.6050332,-0.6619469,-0.3177495,0.19390598,0.2814942,-0.12554498,0.264306,-0.34783784,0.49321336,-0.57294464,0.114028454,-0.54865974,0.122082405,-0.24117388,-0.45911723,0.08063619,-0.08147655,0.39502177,-0.3113902,-0.36937076,-0.016848309,0.5493138,0.07302175,0.18948461,0.77495843,-0.29604232,-0.048687767,0.085322134,0.59006685,1.3576273,-0.5854671,0.04436978,0.26266637,-0.37453616,-0.5682282,0.50053954,-0.32683647,-0.17760153,-0.24697353,-0.5711933,-0.58739305,0.17063332,0.16310981,-0.098650776,0.10116312,-0.5642483,-0.08777164,0.31934845,-0.27304617,-0.29256713,-0.23538975,0.4519913,0.66352737,-0.38516852,-0.30513573,0.15289684,0.181524,-0.17046307,-0.5154508,-0.2653232,-0.22470754,0.36122748,0.1827969,-0.3305601,-0.04370706,0.21172696,-0.46203053,0.1337159,0.085835524,-0.34376088,0.16878082,-0.12497196,0.0072327494,1.020096,-0.31676042,-0.04598902,-0.75599074,-0.44852227,-0.99039626,-0.5175731,0.49984464,0.08635678,0.15585874,-0.3757055,-0.011848986,0.03339591,-0.024246557,-0.028152537,-0.6345339,0.2998174,0.047980685,0.6354549,-0.2436607,-0.8657661,0.0057941596,0.2240677,-0.009880892,-0.6480777,0.62058896,-0.10280671,0.92372906,0.063602105,-0.03676086,0.16372545,-0.37532052,-0.025440868,-0.46542442,-0.18305343,-0.8467359,0.070683666,12 +121,0.3198788,-0.19417654,-0.4986742,-0.08629727,0.06717421,0.18904835,-0.21208255,0.45551637,-0.0483187,-0.50172293,-0.1523055,-0.14000437,0.0035159588,0.44135463,-0.2011985,-0.60555667,-0.05489007,0.0082280915,-0.6001049,0.62348384,-0.37048462,0.22039102,0.027487239,0.2587578,0.12330296,0.2221988,0.13214001,-0.27925083,-0.12791394,-0.1524468,-0.12808195,0.12908222,-0.41570064,0.015508238,-0.17540668,-0.2946559,0.005652241,-0.27832767,-0.31444862,-0.6122084,0.22671299,-0.74808186,0.38008195,-0.04719033,-0.23295327,0.39820778,0.057704728,0.32535598,-0.3498222,0.025343394,0.1390975,0.014108608,-0.04974084,-0.2059831,-0.18690605,-0.6013342,-0.50909984,0.0400625,-0.4137721,-0.27023897,-0.078600995,0.06572318,-0.33839452,0.055806138,-0.19441456,0.34573066,-0.46297905,0.0014737527,0.17678365,-0.07680668,0.21931116,-0.5087257,-0.16834621,-0.1259884,0.16602132,-0.0687434,-0.032690205,0.0927135,0.2557449,0.46058014,-0.13560478,-0.014227142,-0.21685524,-0.15316598,0.18209341,0.4408484,-0.12454093,-0.51331335,-0.07222232,-0.024909882,0.09007635,0.01987787,0.053364564,-0.24318632,-0.15008251,0.03881859,-0.48401126,0.19269113,0.37198958,-0.41757762,-0.40106937,0.38314274,0.52468365,0.20396192,-0.25938594,-0.08581369,-0.041325387,-0.33076143,0.0027825653,0.13931176,-0.19407402,0.546876,-0.15215711,0.29681996,0.59550995,-0.1055706,0.17615186,-0.13366453,-0.09899041,-0.1460504,-0.16321276,-0.2363843,0.04623631,-0.29929075,0.15346405,-0.27080873,0.78143597,0.12325084,-0.6679508,0.40132958,-0.5115648,0.13305148,-0.052130125,0.5201157,0.5341777,0.21568419,0.10053166,0.45666617,-0.34053293,-0.016897658,-0.20599064,-0.24498844,0.0921711,-0.0021839063,-0.117964156,-0.45460054,0.056758635,0.15671021,-0.061415125,-0.1100833,0.2615641,-0.47197065,-0.06391165,0.046858814,0.8266601,-0.3117367,-0.10573185,0.4965247,0.9784086,0.91606075,-0.0011165519,1.1608853,0.27662036,-0.16470481,0.19770685,-0.42357513,-0.68287003,0.1898324,0.305145,0.24034677,0.33014092,-0.0020275393,-0.1326659,0.33643487,-0.18998334,0.15659158,-0.24262549,0.13431133,0.12194671,-0.0035122077,-0.22712652,-0.24559307,-0.003228267,-0.087746225,0.17534615,0.13230355,-0.19942814,0.3102941,0.088155,1.6130577,-0.037675697,0.17915006,0.113829605,0.31215012,0.11737779,-0.017569592,-0.0011415859,0.41953245,0.45468348,0.061734613,-0.6046523,0.21568036,-0.264816,-0.5427122,-0.05523952,-0.34357452,-0.08279102,-0.050373513,-0.54192734,0.043245576,-0.074551776,-0.20075569,0.25659508,-2.8392174,-0.12814112,-0.25927132,0.28510344,-0.29442388,-0.23879178,-0.1503384,-0.37125635,0.36051783,0.33225593,0.42664182,-0.526264,0.507636,0.3136881,-0.3248888,-0.15353197,-0.5574481,-0.109641805,-0.046208,0.45231828,-0.077957734,0.20822906,0.1549895,0.09281559,0.38919845,-0.16060568,0.12514456,0.26989573,0.33168158,0.12125471,0.38520148,0.16834341,0.49315214,-0.2370534,-0.03551706,0.19683637,-0.3207588,0.34523338,0.026228232,0.18058003,0.28856558,-0.32034317,-0.7791784,-0.5625126,-0.30632147,1.372309,-0.29063126,-0.30178487,0.18935302,-0.07146287,-0.28735548,-0.20801684,0.338592,-0.1315329,-0.13071926,-0.780971,0.06555054,-0.16617028,0.3018905,-0.046475198,0.053883534,-0.2555286,0.608131,-0.050941482,0.57990867,0.2659551,0.17168456,-0.046491094,-0.29959202,0.016579533,0.9199593,0.25796056,-0.0025888581,-0.14307426,-0.23455541,-0.37235874,0.04946392,0.1681791,0.47273323,0.6171993,0.17021443,0.08032982,0.21161605,-0.07532653,0.06621288,-0.1627254,-0.24274397,-0.046099346,-0.017991876,0.4777171,0.44147488,-0.31385696,0.40596676,-0.13032085,0.3980829,-0.13672939,-0.3994037,0.47770527,0.7858726,-0.20861572,-0.19496945,0.46148932,0.52905023,-0.32869437,0.28722987,-0.53193015,-0.15557528,0.5409275,-0.3082144,-0.27461237,0.33512956,-0.289513,0.12336743,-0.8778821,0.23620449,-0.39683193,-0.3172711,-0.50828356,-0.083366,-3.5039008,0.18178706,-0.17357586,-0.32589638,-0.14594685,-0.11486697,0.31526136,-0.6323186,-0.4952674,0.04878855,0.11773224,0.57298654,0.07542947,0.15630884,-0.30531913,-0.19160177,-0.22796462,0.1916372,0.08110919,0.27473944,-0.101570144,-0.3983437,-0.050600607,-0.16610084,-0.34900683,0.19364037,-0.45947647,-0.4411726,-0.10059675,-0.35602078,-0.25789794,0.5226535,-0.2660514,-0.01172753,-0.11161211,0.0025584758,-0.20801185,0.3204366,0.15956523,0.16326143,-0.0529096,-0.03960871,0.026459916,-0.3185798,0.18648027,0.10640058,0.31431085,0.44476852,-0.03341911,0.15809868,0.41347134,0.47256014,0.09686084,0.5742873,0.45849302,-0.1062037,0.2946035,-0.25523916,-0.12957482,-0.5021688,-0.22777684,-0.14760056,-0.25103143,-0.56771374,-0.17816207,-0.1892126,-0.7075043,0.35286856,-0.08949513,0.05692625,-0.08883443,0.28209314,0.50371623,0.012378327,0.066122375,-0.002522107,-0.0145034455,-0.396996,-0.3315918,-0.6944379,-0.25218773,0.13319555,0.88763416,-0.10425309,-0.0105694095,-0.17068808,-0.22338311,-0.07711876,0.14400987,0.14659153,0.21497099,0.39214125,-0.2208967,-0.67598456,0.5788792,-0.2215306,-0.29857597,-0.3991476,0.061188944,0.6007776,-0.5937668,0.48969823,0.3651559,0.033803765,-0.078925356,-0.34751147,-0.12801714,-0.026816837,-0.2776014,0.22258335,0.095839165,-0.6068529,0.32320398,0.33840364,-0.085509375,-0.5734405,0.55989265,0.007190585,-0.36786416,0.06600528,0.34251055,-0.045596395,0.030121772,-0.17691013,0.17046623,-0.4475333,0.15683974,0.2587559,-0.06554194,0.24877523,-0.14937435,-0.028692741,-0.560579,0.027747747,-0.4500585,-0.25175035,0.27823278,0.09896158,0.25543123,0.11483299,-0.121701084,0.34575084,-0.21731596,0.12900464,-0.048239328,-0.06609645,0.32849228,0.4002855,0.32528323,-0.34306228,0.5739524,0.030110836,-0.031381197,0.10850022,0.12328284,0.44962117,0.17544495,0.39543998,-0.010566241,-0.2680356,0.38634452,0.6111692,0.3263012,0.52648413,0.06472851,-0.27250674,0.30032045,0.04457348,0.022297764,-0.065838,-0.3288972,-0.17656495,0.05589432,0.16351512,0.49988994,0.05326241,0.3840316,-0.17975336,-0.15475447,0.04294251,0.18825081,-0.084512584,-0.96247476,0.40443358,0.16962455,0.7667815,0.45385557,-0.085955426,0.046393726,0.5072585,-0.2663927,0.1322554,0.29829445,0.06872388,-0.67245495,0.62388366,-0.57054245,0.3779896,-0.05228417,0.06743904,-0.022728026,-0.050099183,0.24634865,0.8605329,-0.19378288,-0.008047589,0.014903605,-0.3573264,0.18250911,-0.277353,0.08167578,-0.39828107,-0.31055892,0.46998712,0.5019227,0.2788439,-0.20217682,-0.013505117,0.045168247,-0.029928211,0.15179081,0.0847934,0.23766646,-0.04598208,-0.62987316,-0.34457552,0.53020155,-0.25620395,0.1958311,0.11631309,-0.35557225,0.35824347,-0.110610805,0.012683709,-0.053665005,-0.48499906,0.05603586,-0.18874653,-0.41718665,0.28617537,-0.329897,0.3352806,0.14782408,0.024164625,-0.34030125,0.14787951,-0.07589148,0.52784187,-0.13249503,-0.21197873,-0.40102056,0.10462185,0.1891567,-0.1687941,-0.015957618,-0.25344452,0.009809987,-0.5626239,0.35084254,0.04170188,-0.27248082,-0.06481852,-0.2460861,0.028617399,0.49894232,-0.094932646,-0.065710686,-0.09558902,-0.116669826,-0.2519803,-0.09186164,-0.08046678,0.23782413,0.108498685,0.017479248,-0.077295795,0.06575046,-0.015770905,0.38513675,0.009084032,0.42015913,0.48817018,0.21193634,-0.32762393,-0.2853741,0.15631543,0.30563042,0.13512418,-0.1645916,-0.2576763,-0.553381,-0.21743569,0.22330745,-0.18901409,0.4751735,0.1857592,-0.32720953,0.64263064,0.0020121078,1.0125827,0.023533825,-0.294009,0.050413005,0.47096145,0.09873622,0.013335536,-0.30556583,0.7262442,0.42421642,0.03502292,-0.1346852,-0.21476147,-0.20405611,0.0072209197,-0.19155025,-0.23395425,-0.0525218,-0.5217144,-0.3493515,0.11541,0.23281187,0.26473796,-0.025077263,0.06813196,0.1750814,0.078895845,0.4150256,-0.4101347,-0.18684149,0.21734628,0.05136644,-0.083149165,0.15035538,-0.47974166,0.39504534,-0.5933692,0.043911893,-0.16781959,0.09583733,-0.055455558,-0.27272326,0.19931942,0.0028597831,0.3166249,-0.3541092,-0.37144855,-0.279796,0.5194033,0.18672441,0.15726538,0.6660484,-0.14019425,0.053572915,0.12775527,0.57545364,1.0146929,-0.18571065,-0.02257696,0.3256857,-0.402417,-0.6788909,0.13022436,-0.2111169,0.33735552,-0.011585397,-0.15437286,-0.43392113,0.40140316,0.12798026,-0.07986718,0.06938246,-0.4715458,-0.31649482,0.35847953,-0.34239623,-0.25882584,-0.26691303,0.15901822,0.578222,-0.40179294,-0.257582,-0.04344273,0.21371046,-0.27907765,-0.5256373,-0.11934164,-0.40066913,0.35441336,0.23687705,-0.18239406,0.030587226,0.06943067,-0.3785891,0.26241344,0.21907955,-0.37242144,-0.029289505,-0.27142805,-0.1457338,0.8680205,-0.19411321,0.05961592,-0.48772278,-0.4570479,-0.6917952,-0.5255402,0.5845014,0.05191343,0.04260341,-0.4448881,0.0748748,0.020713652,-0.12286744,-0.046719182,-0.31560162,0.41729245,0.14590408,0.23160006,0.046613455,-0.6902648,0.08346748,0.0038633824,-0.12118823,-0.5909443,0.51043415,-0.070747286,0.68621975,0.07484631,0.11501215,0.32074103,-0.40448716,-0.08747773,-0.26058605,-0.13608098,-0.6938697,0.13439764,18 +122,0.49934393,-0.24427715,-0.48407307,-0.13663301,-0.31459793,0.09762552,-0.034383837,0.44843483,0.20333113,-0.36280823,-0.10205736,-0.17418839,0.11372471,0.22912833,-0.061342772,-0.6171644,0.0007729848,0.2806286,-0.55661964,0.5708997,-0.39249548,0.17925741,-0.094573826,0.33800286,0.21387464,0.25607887,-0.014277484,-0.19128257,0.008534614,-0.1760221,-0.23256704,0.3535759,-0.4756271,0.15528342,-0.1097965,-0.19397432,-0.021895504,-0.46819407,-0.36677277,-0.67494017,0.31959412,-0.7362362,0.3829651,0.0072054765,-0.19209853,0.33360374,0.056861408,0.30657816,-0.28915083,-0.19903418,0.30101174,0.019796813,-0.09326508,-0.15499742,-0.014600659,-0.35623488,-0.4729762,-0.08553798,-0.267994,-0.3003747,-0.28146908,0.07534426,-0.3371333,0.011294151,-0.09457766,0.5757571,-0.36254227,0.2445034,0.2241221,-0.14228147,0.17010808,-0.46894428,-0.027804732,-0.065028,0.36075455,-0.13769995,-0.22918826,0.26508325,0.32564843,0.24875611,-0.054332517,-0.12373107,-0.17763217,-0.113232456,0.12678733,0.5058903,-0.16787083,-0.60460526,-0.07196563,0.060193446,-0.2278787,0.123276636,0.10152816,-0.4264369,-0.1532639,0.10786767,-0.23162499,0.39968678,0.33420303,-0.29052612,-0.24791886,0.2673677,0.49146912,0.29016745,-0.15532757,-0.025597285,0.040878184,-0.5193821,-0.1458231,0.050728396,-0.1497869,0.46412545,-0.1419565,0.256332,0.7673575,-0.07272816,-0.09642687,0.09187795,0.030646654,-0.13348296,-0.3068692,-0.1719842,0.23365006,-0.4324536,0.24192439,-0.06890071,0.8181616,0.18551685,-0.67973244,0.4796297,-0.63788426,0.112927094,-0.17274208,0.36409894,0.65727526,0.22377287,0.2740354,0.55003047,-0.37670368,0.02701974,-0.060254447,-0.53805834,0.02498549,-0.06984422,0.059754364,-0.5453366,0.05621044,-0.06099016,-0.07015848,0.03832485,0.20027654,-0.47369638,-0.13768029,0.16283208,0.8733495,-0.31348902,-0.09790143,0.6238001,0.9472589,0.9147831,0.06330079,1.0415642,0.13613933,-0.26814553,0.31436,-0.17315441,-0.70796984,0.2486976,0.3717992,0.25798485,0.07699146,0.13882619,0.083073325,0.40512857,-0.23343469,0.06530869,-0.09093008,0.19945058,0.1782704,-0.07976565,-0.4108872,-0.30114725,-0.118173435,0.0660602,0.08135428,0.06753309,-0.13435178,0.39227197,0.15597199,1.7972214,0.026430022,0.09483054,0.068842314,0.42517567,0.24857451,-0.09707325,-0.18919493,0.3919583,0.35916778,0.14126389,-0.5030265,0.23542842,-0.14488322,-0.3978677,-0.08688914,-0.38963285,-0.2283273,0.0079068085,-0.39028803,-0.07432961,-0.0915701,-0.1968058,0.5025045,-3.0476847,-0.14847693,-0.09101035,0.3224796,-0.18663651,-0.31502578,0.004050644,-0.47458532,0.17701915,0.22848926,0.48101857,-0.6683172,0.48061758,0.3337983,-0.47235993,-0.12219674,-0.50473505,-0.19203101,0.055936288,0.34503806,0.061413623,0.13202816,0.026462412,0.1953208,0.41882223,-0.015480348,0.07675091,0.20072085,0.38112718,0.031513803,0.67889404,-0.07436053,0.5233504,-0.14575757,-0.108318835,0.2201144,-0.16860224,0.28599027,-0.044221725,0.09358867,0.48944762,-0.30478272,-0.7949871,-0.68086076,-0.14423308,1.0191139,-0.3169271,-0.18214951,0.3125825,-0.44191977,-0.2863356,-0.039501783,0.28429997,0.036113795,-0.09881829,-0.7149521,0.11854647,-0.032388855,0.08590526,0.029737763,-0.22042471,-0.3983008,0.765242,0.03999366,0.62027997,0.3325343,0.07767601,-0.1965642,-0.34902754,0.021569984,0.65054226,0.23754305,0.1290677,-0.10823827,-0.14899065,-0.35238793,-0.006589047,0.044363983,0.60458356,0.5197752,-0.023698013,0.16852301,0.26622808,-0.020972256,0.09178685,-0.15528044,-0.23607127,-0.030702667,-0.18714496,0.44948405,0.5913916,-0.20783368,0.4341051,-0.00537453,0.3324602,-0.12840863,-0.3836816,0.44687164,1.0449755,-0.14261273,-0.28199005,0.4147101,0.4216736,-0.21901368,0.25423986,-0.41939524,-0.076831646,0.5070244,-0.24724182,-0.3524895,0.28068373,-0.24843471,0.09501317,-0.7564596,0.21777739,-0.17987885,-0.58394724,-0.40369755,-0.15324338,-3.6047814,0.21508186,-0.2579797,-0.1708245,-0.14727905,-0.014432192,0.1271228,-0.6021435,-0.49148354,0.13864939,0.069275804,0.6235747,-0.07716436,0.11549722,-0.24441138,-0.20518301,-0.11349057,0.13949837,0.057624795,0.3272508,-0.10940192,-0.36482346,-0.04054036,-0.024132859,-0.34107175,0.09539615,-0.66328996,-0.4666614,0.021179114,-0.5705617,-0.3163084,0.65848416,-0.27290446,-0.004457585,-0.16854505,-0.039460946,-0.26537272,0.267889,0.14359413,0.1338083,-0.13837,0.0758395,0.033937182,-0.3438241,0.26253337,0.0072219926,0.31404725,0.16033024,0.023353685,0.16685675,0.46651882,0.5686603,-0.06172518,0.8530512,0.40245745,-0.10239053,0.24074928,-0.2567711,-0.34777293,-0.46270669,-0.31340683,0.06639685,-0.32288128,-0.43259132,-0.1365511,-0.3223943,-0.55656904,0.44508654,0.068734966,0.060161058,0.07500865,0.049123503,0.53365654,-0.23358454,-0.011302781,0.084558085,-0.14598857,-0.64516234,-0.17828801,-0.59136933,-0.4410496,0.14215101,0.8486653,-0.27007934,-0.004024756,0.0068309624,-0.40892914,0.06459867,0.18481807,0.033558853,0.3474908,0.47789133,-0.22680269,-0.57153165,0.57552254,-0.2508095,-0.2737545,-0.49128118,0.19702314,0.53948253,-0.64337605,0.69264114,0.24377593,0.06417422,-0.1509709,-0.3653179,-0.22688685,-0.034718625,-0.18796507,0.3552135,0.19240595,-0.7350663,0.33511153,0.3295868,-0.18672186,-0.70476574,0.56174904,-0.074164,-0.32644606,0.024921954,0.2536823,0.066348255,-0.039120186,-0.14810117,0.211555,-0.4284078,0.18838494,0.11972187,-0.076868944,-0.034563884,-0.16771518,0.06458,-0.66276425,-0.09922574,-0.3392233,-0.26358944,0.20705785,0.036895037,0.20581453,0.09067372,0.006557043,0.26603714,-0.2938156,0.096598595,0.03152058,-0.24110462,0.31412193,0.39095,0.36283714,-0.40967765,0.50861824,0.0027420481,-0.043430746,0.06125581,0.11997219,0.37184462,0.102654226,0.50158876,-0.06644145,-0.16999076,0.26431724,0.9759799,0.14089979,0.46025142,-0.021970289,-0.064748526,0.18347563,0.02430105,0.25955757,0.14093822,-0.6746541,0.08971027,-0.17673787,0.2125333,0.45671108,0.09820579,0.15058818,-0.038293686,-0.5014722,-0.023171136,0.1908867,0.15809312,-1.2361608,0.42525586,0.21970135,0.86134875,0.39697257,0.056659207,-0.02370927,0.66374004,-0.11930822,0.1587626,0.26905313,-0.10226463,-0.5523234,0.5429697,-0.66946316,0.4261478,-0.11798501,-0.106873125,0.047096837,-0.09300869,0.27030322,0.6599649,-0.22131577,-0.017949639,0.055862196,-0.37269497,0.18321104,-0.46102905,0.008579151,-0.44998068,-0.28077686,0.49758127,0.73619807,0.3198661,-0.23262952,0.11712638,0.07543667,-0.09351514,-0.0031460572,0.08292511,0.030044874,0.06051967,-0.8113947,-0.15603603,0.5832161,-0.15636286,0.24448316,-0.123297736,-0.17727624,0.396865,-0.11661736,-0.076049194,-0.14376254,-0.6718409,0.09653784,-0.3041262,-0.527731,0.62029725,-0.020283593,0.21040146,0.21672545,0.022382034,-0.12756224,0.51388085,0.15274352,0.83862877,-0.061548505,-0.012773623,-0.5464276,0.017667007,0.059107468,-0.12051259,-0.19391544,-0.46474534,0.008923433,-0.4928517,0.40157136,0.09124366,-0.32549718,0.014938775,-0.08706519,0.08742947,0.5618622,-0.08992537,-0.12930945,-0.12261728,-0.051448833,-0.26365432,-0.15687118,-0.03842419,0.23822628,0.22368692,0.04084234,-0.12483266,-0.14123283,-0.2192104,0.37143925,0.06067891,0.5975997,0.35983706,-0.02203521,-0.096811466,-0.18233956,0.38369685,0.43311882,-0.080911845,-0.1567595,-0.30915037,-0.38102484,-0.35503998,0.1990477,-0.025306635,0.40710175,0.04043339,-0.17372634,0.6815123,-0.19445318,1.0256037,0.112455435,-0.2852526,0.30086434,0.46005222,0.0514297,-0.00080904167,-0.29315588,0.765527,0.37849432,0.048005316,-0.20028931,-0.27770615,0.012357394,0.097588986,-0.17031911,-0.07703201,-0.030167166,-0.5049436,-0.16261019,0.1478142,0.199021,0.32266998,-0.08445403,-0.028772546,0.2764102,-0.07161629,0.19131282,-0.4077402,-0.23782478,0.23959915,0.18870682,0.02265507,0.09904304,-0.4170955,0.4586439,-0.33896658,0.12910937,-0.37633508,0.22077808,-0.3556987,-0.11818988,0.10172693,-0.020731179,0.33754244,-0.29163456,-0.23223399,-0.29082388,0.43806833,0.25149032,0.06830673,0.52288383,-0.20412925,0.016338617,0.1582748,0.52485335,0.6638498,-0.2400917,-0.10832871,0.41031533,-0.4394721,-0.41805345,0.31058356,-0.14876722,0.11259452,0.11502588,-0.09171927,-0.5550405,0.2933883,0.23411971,0.065542586,0.007212817,-0.6397281,-0.13714303,0.41552356,-0.35024825,-0.24377419,-0.24091782,0.16558628,0.5831726,-0.32934913,-0.28153664,0.08082798,0.0039171698,-0.06551151,-0.567663,-0.077371866,-0.43149564,0.3371636,0.025925461,-0.25101763,-0.15085249,0.061973877,-0.39845005,0.1909776,0.024168829,-0.35915887,0.13270408,-0.19847417,-0.1444604,1.0285596,-0.12090548,-0.044867888,-0.64656574,-0.41351902,-0.6364575,-0.4495893,0.45757928,0.050934814,0.080087475,-0.43595663,-0.06949656,0.07146356,-0.1542703,-0.1605366,-0.34942433,0.43868962,0.063559376,0.36923018,-0.06801726,-0.9099571,0.21453151,0.08351581,-0.16669875,-0.6254645,0.4111751,-0.15123698,0.7197518,0.023112353,0.086867616,0.251341,-0.25441763,-0.19775629,-0.3358477,-0.17990804,-0.74797785,0.05878628,19 +123,0.4338906,0.051807947,-0.4702287,-0.27103922,-0.3137801,0.19133355,-0.12325311,0.29022613,0.24990477,-0.27922854,0.037046064,-0.15964788,-0.12528887,0.3298804,-0.088876724,-0.70420104,0.07620961,0.1482368,-0.74648625,0.5479071,-0.49603906,0.36717898,0.06042134,0.39337394,0.08178457,0.23849702,0.17835213,0.02580815,-0.008586345,0.024136733,-0.09608332,0.29300788,-0.5899709,0.07227706,-0.05809217,-0.17321555,-0.09886539,-0.37281367,-0.20547199,-0.6616285,0.27109078,-0.5167661,0.49974987,-0.056766413,-0.4467596,0.05236034,0.1703694,0.30361468,-0.37400818,0.020328857,0.25118208,-0.10364438,-0.040384125,0.014397414,-0.31889427,-0.50117385,-0.6149228,0.07762458,-0.64386165,-0.14854379,-0.22451262,0.24437688,-0.2762899,-0.01247677,-0.080150284,0.58528453,-0.3260054,-0.05242671,0.21860169,-0.24099398,0.04712295,-0.4082994,-0.14328419,-0.11681488,0.27609128,0.097992115,-0.16751757,0.13391739,0.35556442,0.5707358,-0.041054536,-0.2439709,-0.20701462,0.0046735923,-0.013078707,0.48919147,0.020569468,-0.2078679,-0.24357082,-0.012921802,0.035691563,0.13996467,0.070754,-0.39661723,-0.0155816395,0.053127903,-0.27253225,0.3184388,0.3691759,-0.5347761,-0.27830693,0.39682052,0.44068477,0.11156297,-0.2328508,0.23255159,-0.041212924,-0.51058215,-0.28495756,0.22870718,-0.084348015,0.43375188,-0.107095085,0.21000578,0.70858544,0.009111341,-0.16127163,-0.07533574,-0.068995886,0.04599803,-0.19255129,-0.043426637,0.112118796,-0.41224056,-0.06690697,-0.21915977,0.6784995,0.02046762,-0.871139,0.31807798,-0.48348716,0.099149905,-0.11712532,0.5122997,0.90316325,0.30249855,0.11339567,0.8821097,-0.59907895,0.06193317,-0.03439846,-0.21461463,0.08121907,-0.07906803,0.093465194,-0.6201557,0.05100545,0.15246235,0.012275314,0.06453484,0.24838762,-0.4181467,-0.1826378,0.05989917,0.7696509,-0.33172074,-0.22429729,0.63624597,0.9457268,0.9184831,0.14530583,1.1460437,0.26548904,-0.12464909,0.17438148,-0.4879035,-0.5639431,0.18771172,0.26206815,0.24104628,0.3337455,0.056838002,0.10361778,0.4546381,-0.21840464,0.20715979,0.02130353,0.11784594,0.09232577,-0.06651523,-0.28071153,-0.3161622,0.20790288,0.007615002,0.08308949,0.21046829,-0.20056547,0.33882496,0.030712893,1.468513,0.2302053,0.09832232,0.099617735,0.37794188,0.280311,-0.22071438,-0.23233318,0.32452267,0.36393294,-0.050715048,-0.44909292,0.029118475,-0.2527369,-0.35627607,-0.17653595,-0.3703241,-0.001088957,-0.089572094,-0.50049865,-0.108442426,0.007150857,-0.41899034,0.5273892,-2.8549702,-0.18557432,-0.11411392,0.22916263,-0.20502461,-0.27681255,-0.34468162,-0.46571797,0.26176178,0.5038226,0.3104045,-0.50497127,0.55907834,0.24202485,-0.28624976,-0.1381962,-0.5967162,-0.16342306,0.0064513367,0.29290977,-0.1286783,-0.043089908,-0.29069665,0.45511264,0.60781914,-0.008149131,-0.0053703943,0.2885293,0.47792026,0.012194046,0.6664358,0.15065292,0.45932972,-0.11349082,-0.13211507,0.29489428,-0.52574736,0.29331398,0.21857847,0.14866383,0.4115199,-0.49508223,-0.871287,-0.51841414,-0.12035124,1.1361165,-0.3843996,-0.20345983,0.28207678,-0.14571482,-0.28964177,-0.02091033,0.52691317,-0.10100018,-0.00847114,-0.68983203,0.041234683,0.075467266,0.20843248,-0.10463951,-0.03198417,-0.29923192,0.532687,-0.08635307,0.6163873,0.26851645,0.09248861,-0.24742985,-0.47599757,0.035688963,0.9948482,0.31414187,0.101526015,-0.08441749,-0.1546749,-0.44726995,-0.07736925,0.18407895,0.44432607,0.5748178,0.114122435,0.26707643,0.3717151,-0.30092934,-0.0039062263,-0.107157424,-0.3018275,0.011516932,0.12322311,0.4818569,0.53046095,-0.16959123,0.48076713,-0.08203336,0.12513617,-0.18650764,-0.5021463,0.60732114,0.6386022,-0.108305715,-0.25612342,0.50255007,0.4030272,-0.23048037,0.35831723,-0.45557246,-0.38137582,0.6373789,-0.099500194,-0.32004443,0.16341661,-0.28152326,-0.037412483,-0.9331961,0.12422535,-0.030327085,-0.41238168,-0.43871263,-0.18819278,-3.8195298,0.14285837,-0.045612846,-0.15377112,-0.083569504,-0.08491972,0.31097594,-0.44063658,-0.60407764,-0.028389424,0.0888103,0.60495496,-0.06588823,0.1834387,-0.2826851,-0.21582103,-0.2975523,0.27962592,0.100609474,0.40488386,0.07477582,-0.3670625,0.06929481,-0.3407014,-0.4692749,0.026185745,-0.45917228,-0.47680098,-0.12493615,-0.4647643,-0.30563885,0.6686936,-0.29069197,-0.06577525,-0.32097894,-0.052101653,-0.026861278,0.42787254,0.26473853,0.18100283,0.062682025,-0.057397183,-0.18808013,-0.39763227,0.15545471,0.07598397,0.2638612,0.3900252,0.088860795,0.289637,0.58223337,0.5558999,-0.08295819,0.6287974,0.2653876,-0.001913621,0.376123,-0.3071643,-0.20114341,-0.57410353,-0.28141725,-0.3821558,-0.3721444,-0.44748524,-0.18414326,-0.35894945,-0.7606689,0.3675696,0.034022503,0.016120426,-0.14916314,0.26975983,0.2523066,-0.19911154,0.101942025,-0.17448902,-0.2623502,-0.37570113,-0.43757847,-0.5821102,-0.47967216,0.23763178,1.0509928,-0.20926188,-0.1149325,-0.032204263,-0.21061464,0.044349257,0.0056381305,0.24260876,0.28473213,0.2973464,-0.14782855,-0.6346676,0.37361035,-0.32430524,-0.05393018,-0.677012,0.043096147,0.5517389,-0.5233511,0.58631855,0.1514864,0.23058596,0.04824637,-0.5633937,-0.25425944,0.06843867,-0.23692776,0.6330464,0.15139292,-0.7115134,0.44135872,0.19106695,-0.05441595,-0.6517069,0.49830163,-0.09913016,-0.23657842,0.046672072,0.26799685,0.07102583,0.005560676,-0.18719152,0.17621242,-0.5202905,0.20157054,0.34441814,0.0667747,0.578102,-0.14503,-0.20040412,-0.445873,-0.17120221,-0.51990813,-0.280407,-0.0073770084,0.16341977,0.14759427,0.10129873,-0.23599045,0.31215325,-0.28264531,0.25462034,-0.0046503665,-0.047685616,0.41345394,0.41234866,0.34180918,-0.48314747,0.50365,0.010980191,0.09781129,-0.056871925,0.087278605,0.4632858,0.268024,0.30485058,-0.055181384,-0.13711776,0.33827603,0.46701035,0.17398764,0.2756349,0.2211299,-0.1947845,0.29188472,0.0314889,-0.0036427935,-0.12905052,-0.30141976,-0.06367359,-0.011910828,0.27339944,0.43575,0.025763962,0.3103448,-0.03251312,-0.11341495,0.2058484,0.13945937,-0.15732583,-1.0013882,0.33815235,0.28567028,0.6902062,0.5461469,-0.036907606,-0.026631586,0.5328463,-0.3211692,0.13097441,0.34672928,-0.00803421,-0.52154183,0.52940124,-0.5576636,0.6077582,-0.25470823,-0.08129372,0.13763046,0.22712873,0.4145234,0.89494973,-0.082941025,0.07559211,0.050254412,-0.26690245,0.12731591,-0.23176594,0.09746565,-0.6011865,-0.26444763,0.5864831,0.35621834,0.27635399,-0.44826317,-0.033843696,0.02739818,-0.19635971,-0.024754087,-0.13133635,-0.042413816,-0.112614885,-0.6811142,-0.35761124,0.54885685,-0.04393526,0.021263557,0.19791289,-0.286112,0.2802611,-0.13634859,0.058612093,-0.044055,-0.59325475,-0.13740005,-0.24149552,-0.47001076,0.425943,-0.4493876,0.21230377,0.12684079,0.024418075,-0.4717024,0.38579097,0.15662827,0.64886814,-0.029616006,-0.06636254,-0.2841758,0.06722423,0.19249259,-0.26361433,-0.1732531,-0.49342868,0.12075461,-0.5961355,0.39173222,-0.07787393,-0.38166755,-0.09964445,-0.028616067,0.072613545,0.40485066,-0.14994152,-0.029825438,0.069319114,-0.037742306,-0.16521598,-0.057108257,-0.3335676,0.4547465,-0.039600305,-0.1451068,0.079887435,-0.010209775,0.029140918,0.29564768,0.06282929,0.2118393,0.23044942,0.081716396,-0.32768393,0.19424771,-0.005620424,0.30718374,0.17641261,-0.12322463,-0.26144063,-0.20520161,-0.3162135,0.3232006,-0.1777573,0.12421603,0.029375887,-0.43687692,0.7174226,0.15006964,1.1324288,0.109969266,-0.24470308,0.06574383,0.49375495,0.23928563,0.15407705,-0.24678166,0.66298175,0.53763396,-0.12455692,-0.2381294,-0.32579595,-0.25298458,0.0970322,-0.29737064,-0.30033153,-0.12987722,-0.651262,-0.15376125,0.0420161,0.12311623,0.27343372,-0.07433859,-0.13210776,0.1524424,0.11144527,0.3156147,-0.40879303,0.044972625,0.29549995,0.1861586,-0.015004602,0.16735741,-0.37968558,0.43522352,-0.7679848,0.17656676,-0.2354301,0.12297762,-0.05252901,-0.28843084,0.17908487,0.08986779,0.2631557,-0.21030453,-0.26319462,-0.2505992,0.7230033,0.30363116,0.29523292,0.78495544,-0.2629486,-0.10814573,0.06551425,0.42523864,1.2237877,-0.036182903,-0.1745115,0.19865973,-0.21239202,-0.67591393,0.06465976,-0.39976606,0.1996106,-0.067018114,-0.32380947,-0.23366883,0.2744204,0.122534506,0.073077045,0.0126287555,-0.46173713,-0.19766006,0.43851689,-0.15003671,-0.2434234,-0.2914025,0.23355412,0.5966156,-0.27196106,-0.33066884,-0.010748538,0.30353132,-0.139838,-0.6854161,0.0722493,-0.3007884,0.36643675,0.16870792,-0.28936067,0.014214584,0.21915239,-0.48689678,0.16539463,0.34627628,-0.34312525,0.014832628,-0.2896642,-0.25907734,1.0938861,0.08588246,0.21627754,-0.5030659,-0.5654923,-0.9055271,-0.295177,0.3547378,0.014043275,-0.10641421,-0.53633523,-0.17490552,-0.13843568,-0.056183744,0.10994838,-0.47433552,0.3786318,0.089498475,0.31664744,-0.043583773,-0.8498983,-0.09138629,0.07302448,-0.26493147,-0.49506253,0.54342556,-0.060690485,0.65232044,0.06771652,0.120875806,0.262364,-0.6365645,0.29245102,-0.44556606,-0.047268603,-0.5123792,0.11337895,36 +124,0.62143964,-0.3350552,-0.5960008,-0.22986771,-0.3550237,-0.0045161527,-0.26430294,0.4151058,0.3776929,-0.20709899,-0.19622803,-0.02805177,0.05044423,0.19057173,-0.014975027,-0.6870808,-0.2303135,0.15409063,-0.79443055,0.67258847,-0.5091475,0.436252,0.091781445,0.3213896,0.08224033,0.45627248,0.10483287,-0.15431292,-0.028689865,0.020079294,0.0496969,0.2764552,-0.66246045,0.1845458,-0.27091596,-0.29990435,-0.087417535,-0.41900447,-0.16683592,-0.7486799,0.051820096,-0.80588704,0.5603972,-0.027244793,-0.3130039,-0.26179254,0.105592534,0.25547698,-0.47977975,0.22755517,0.34262273,-0.15102163,-0.14020115,-0.40088564,0.08304475,-0.41195196,-0.49465513,-0.12355761,-0.6022206,-0.12539752,0.123038664,0.25569624,-0.2411816,-0.050662503,-0.22955483,0.51435685,-0.3049202,-0.13536906,0.4046192,-0.24607582,0.20867148,-0.5131555,-0.103297494,-0.083344474,0.42705384,-0.0613456,-0.37857252,0.22945309,0.25428626,0.5321206,0.3219402,-0.35011995,-0.2617994,-0.042813446,0.03486991,0.4242703,-0.20042601,-0.44549465,-0.30394953,-0.0483531,0.33495933,0.19785075,0.024560101,-0.30441168,0.034723934,-0.23742418,-0.017587502,0.48668987,0.5132667,-0.22078887,-0.3431271,0.2932966,0.61327165,0.09062997,-0.20743337,0.04768711,0.062906936,-0.6209659,-0.14234,0.11064633,0.011176491,0.3915068,-0.14350528,0.13400552,0.7937707,-0.054232128,-0.12755696,0.25979045,0.01868829,-0.080472946,-0.36199272,-0.26400745,0.36419615,-0.5549276,-0.10953461,-0.44353676,0.57716095,0.11747307,-0.62889165,0.27302733,-0.6325906,0.09637017,0.009730196,0.6067397,0.8490554,0.45164955,0.168809,0.724761,-0.30528754,0.29927355,-0.044316847,-0.31143856,0.22545895,-0.34482506,0.20811656,-0.54908365,0.064405724,-0.20709495,-0.079758406,-0.018995745,0.42235714,-0.73607326,-0.31389058,0.151723,0.62675804,-0.33438683,0.058067463,0.81617534,1.0585299,1.0291016,0.067967504,1.2401391,0.37538165,-0.25608116,0.08386923,-0.3707673,-0.7472941,0.25718933,0.24425074,-0.38823527,0.45218465,-0.17749567,0.03169233,0.44564325,-0.31247255,-0.0002861917,-0.0035566508,0.35923845,-0.017643448,-0.06261805,-0.4749397,-0.20488809,-0.022312645,0.12708135,0.15132608,0.28139544,-0.33059344,0.37066433,-0.012535469,1.4066354,-0.24900836,0.020297615,0.21587129,0.27911004,0.3249523,-0.3287096,-0.08908713,0.3784009,0.42468292,-0.020758374,-0.55003697,0.18649188,-0.34371933,-0.3449899,-0.19024706,-0.24850437,0.0026014566,-0.056911103,-0.46209776,-0.29801512,-0.11344058,-0.24840806,0.27590066,-2.5385556,-0.17580488,-0.1739521,0.4415547,-0.22264622,-0.22647084,-0.11217675,-0.589065,0.13491563,0.26840925,0.5426959,-0.6412946,0.5037772,0.49873483,-0.6553108,-0.17014013,-0.709635,-0.016934363,-0.07866117,0.44146416,0.08420734,-0.17849198,-0.052139316,0.07834714,0.6763079,0.0097979065,0.16162989,0.48876914,0.46830347,-0.01568861,0.49320975,0.096094675,0.52909595,-0.49072006,-0.2443301,0.4903761,-0.46970713,0.07035268,-0.036911443,0.025392795,0.6337288,-0.59636706,-0.86309075,-0.59706384,-0.114421144,0.9327455,-0.23848043,-0.38571262,0.036218714,-0.28441906,-0.15155473,0.09326684,0.65673614,-0.15998046,0.09304491,-0.83182347,0.01836579,-0.07428732,0.035660427,0.018425675,-0.012653013,-0.42137954,0.729143,0.0068470975,0.650304,0.2806811,0.23539132,-0.24058232,-0.49799487,0.1460569,0.99733967,0.24717757,0.04044082,-0.1011589,-0.13837348,-0.13939044,-0.016873768,0.08338134,0.61545855,0.7526855,-0.12554543,0.2329511,0.39833164,-0.07023592,0.122063115,-0.1237589,-0.25990373,-0.18524192,0.12458239,0.4240715,0.8563042,-0.14334147,0.40571797,-0.22109309,0.46522102,-0.22379328,-0.6287734,0.6451972,0.79723984,-0.17309189,-0.09756681,0.54210377,0.38264874,-0.2778631,0.5925311,-0.5966539,-0.39095995,0.43742827,-0.250575,-0.3120537,0.23808466,-0.26529855,0.4086992,-0.8933464,0.42390478,-0.3065651,-0.45780748,-0.6520193,-0.21827322,-2.1372688,0.28831494,-0.15019022,-0.0034802516,-0.24505034,0.03727464,0.30354616,-0.7700342,-0.47523358,0.19995897,0.1384916,0.5918621,-0.06551547,0.12547249,-0.338467,-0.4481706,-0.023498476,0.399673,0.18469064,0.35278335,-0.07810931,-0.5027589,-0.08064114,0.17228346,-0.36687815,0.07896237,-0.67848974,-0.5820486,-0.09251603,-0.7196214,-0.16879974,0.6014522,-0.3099089,-0.0036347706,-0.14973643,0.06308763,-0.07851391,0.1859929,0.07398565,0.22300304,0.1768343,-0.022890864,0.12847543,-0.29202828,0.35420552,-0.022810929,0.40269852,0.21895227,-0.20655116,0.17824522,0.394879,0.6000767,-0.27261418,0.96687895,0.41921458,-0.014791974,0.1734607,-0.22004405,-0.35230145,-0.5983285,-0.35166016,-0.04149721,-0.4070779,-0.40592623,0.082152285,-0.39149094,-0.938732,0.64263153,-0.009966512,0.31843528,0.022580694,0.29314983,0.5359431,-0.18939233,0.023885412,-0.1278917,-0.15513282,-0.37880903,-0.1521075,-0.6393462,-0.5198908,0.17896797,1.1892235,-0.31537044,0.15126151,0.006506443,-0.27603132,0.060411762,0.008102084,0.03383491,0.26198563,0.51691467,0.035159994,-0.53701246,0.33514568,0.029302763,-0.23348661,-0.40281528,0.1632845,0.6489678,-0.7720444,0.5955908,0.34013134,0.10742305,-0.035468895,-0.6173098,-0.12409798,0.11263338,-0.09568455,0.5570193,0.23089026,-0.59116036,0.46696466,0.3348879,-0.47068462,-0.7507032,0.25606713,-0.11294373,-0.2948407,-0.10292575,0.35045657,-0.020493574,-0.013211266,-0.3250627,0.40635923,-0.31385952,0.17965229,0.16266403,-0.24826522,0.21216281,-0.10589231,-0.36385927,-0.70978814,0.062119007,-0.6736304,-0.34047106,0.4222422,0.022477308,0.06882242,0.1115865,0.11235343,0.42449632,-0.21697448,0.14791937,-0.06837756,-0.38268307,0.3833926,0.39458376,0.3075053,-0.4486155,0.52737695,0.16922398,-0.27026206,0.01352868,0.07207843,0.49993172,-0.016639639,0.43437043,-0.12281554,-0.072634205,0.42120215,0.72277284,0.15013386,0.4771258,-0.031538233,-0.15503229,0.21181978,0.11445143,0.16605572,-0.14601578,-0.3467364,0.058872335,0.13149936,0.28385633,0.3968049,0.17400824,0.4010174,-0.06149297,-0.25970128,0.07937326,0.25504777,0.009394288,-1.4706782,0.23609018,0.25973803,0.9081755,0.4906456,0.11175438,-0.19539504,0.49467078,-0.30152404,0.14048596,0.35157463,-0.24694349,-0.40999857,0.6834148,-0.5727239,0.36375856,-0.16613026,0.019732405,-0.029536294,-0.025044588,0.36943546,0.7530524,-0.14366703,0.07422034,-0.06566128,-0.11289532,-0.1201114,-0.3127044,0.1338219,-0.42079327,-0.36597088,0.8324163,0.29330254,0.4228436,-0.29187518,-0.07898403,0.10547098,-0.1565163,0.23194641,-0.052612655,0.11397584,0.17272407,-0.5078906,-0.14814693,0.4713805,-0.05602307,0.088511564,-0.17930956,-0.26449886,0.04884022,-0.19613126,0.03077642,-0.19887587,-0.5791991,0.038919926,-0.47450674,-0.31595516,0.57611126,-0.075614564,0.065800056,0.1886542,0.16808105,-0.26846436,0.30138296,0.03469278,0.82178843,-0.015569659,-0.2952447,-0.39225656,0.18470407,0.2294484,-0.3627887,0.026318677,-0.4368309,0.12676579,-0.67715347,0.58820045,0.062805675,-0.5528698,0.16065326,-0.20506458,-0.022836851,0.5632716,-0.1357401,-0.22819091,0.2392478,-0.042076197,-0.39327067,-0.071495056,-0.25889015,0.20854491,0.38644442,-0.0025010894,-0.21591626,-0.19002466,-0.1466534,0.5698915,0.13708551,0.4445582,0.47668132,-0.0107930815,-0.2510871,0.30527985,0.4175059,0.34677848,0.2547782,-0.13431473,-0.5748584,-0.44825605,-0.46433467,0.12870163,-0.20404425,0.27932397,0.01290125,-0.24678494,0.988017,0.022099193,1.3217678,-0.0135932285,-0.31961256,0.076570906,0.60451293,0.049597654,-0.035322133,-0.33604828,1.1185604,0.662522,-0.15008834,0.07668404,-0.31046295,-0.19894879,0.2757625,-0.34329197,-0.07649358,-0.16052474,-0.702196,-0.46684197,0.2927949,0.22968188,0.07621584,-0.2892903,-0.018785112,0.056049936,0.12153916,0.19375175,-0.66308963,-0.17353593,0.005317517,0.24923848,-0.09810551,0.26312816,-0.50837547,0.3247835,-0.6660457,0.22790423,-0.38766572,0.16602169,-0.11006138,-0.33487275,0.17186455,-0.07378467,0.34270012,-0.49898586,-0.48595467,-0.16064088,0.4401728,-0.019731427,0.10065057,0.63386256,-0.34870175,-0.08857418,0.30211937,0.5873029,1.2866591,-0.31325132,0.009571489,0.3081134,-0.41528037,-0.7383433,0.2498239,-0.25662902,0.013227582,-0.22329564,-0.561246,-0.3872626,0.28661245,0.1602269,0.13866547,-0.0001301368,-0.62074596,-0.10386656,0.4070495,-0.42160797,-0.14265203,-0.19842029,0.31168938,0.75726444,-0.23951456,-0.4150031,0.030781103,0.19633135,-0.23280483,-0.49465102,-0.1812182,-0.42174488,0.25193915,0.22380885,-0.22978266,-0.040938556,-0.010360805,-0.4748195,0.2334571,0.28752595,-0.37866578,0.06079173,-0.2677742,-0.16660962,0.9652784,-0.00920995,0.11691144,-0.53565526,-0.47304398,-1.0137919,-0.4130462,0.24037936,0.08205433,0.09496399,-0.4991239,0.10367739,-0.15761957,-0.14608483,-0.0016576211,-0.41363904,0.43532068,0.22486739,0.4456014,-0.34393126,-1.024131,0.12338947,0.35351762,-0.21699238,-0.68334043,0.48803347,0.032758556,0.89577,0.09427833,-0.0005524556,0.20185103,-0.58223844,0.061218563,-0.3135763,-0.10366019,-0.7988654,-0.08438061,37 +125,0.413376,-0.14857484,-0.6249626,-0.08067673,-0.27434894,0.3011815,-0.34049076,0.18195432,0.11729793,-0.58347756,-0.06263754,-0.27754936,-0.15766248,0.14473629,-0.005999746,-0.4768649,-0.20599246,0.32515845,-0.7272269,0.6701456,-0.38489768,0.31170025,0.384423,0.12084119,-0.15381879,0.10335718,0.06813598,-0.24982058,-0.17196336,-0.26222837,0.023602527,-0.12749639,-0.5704857,0.38818333,-0.20847043,-0.3293338,0.05729505,-0.4129996,-0.24571368,-0.70445544,0.14150688,-0.68105406,0.656024,0.120544754,-0.26214826,0.21168967,-0.0044153533,0.19876562,0.0054591657,0.092424266,0.36775443,-0.3272216,-0.5142849,-0.39015993,-0.25076494,-0.46602026,-0.60734075,-0.04977119,-0.5118874,0.06733085,-0.015814686,0.3067742,-0.17173344,-0.13198796,-0.25232258,0.45675427,-0.32780755,0.07883005,0.109292954,-0.20336641,0.19196956,-0.63423496,-0.0060288827,-0.15540284,0.11509702,-0.020933663,-0.17248923,0.038779147,0.039915085,0.7204437,0.07066861,-0.18602389,-0.18799524,0.047241457,0.09819751,0.44578373,-0.12915944,-0.0030053179,-0.03742265,-0.08932042,0.38052103,0.08190542,0.11522787,-0.41801167,0.028685471,-0.2993529,-0.35337517,0.24214874,0.53940797,-0.24043986,0.059058126,0.50579655,0.3636512,0.10967031,-0.16357055,0.006796849,-0.13458495,-0.3669229,-0.049519096,0.4041652,-0.09630955,0.5552509,-0.096734494,0.27443942,0.38527665,0.033062946,-0.20884858,0.17325792,0.016338404,0.122635484,0.05351611,-0.16431107,0.37909192,-0.52511215,-0.118849024,-0.52583957,0.59092206,-0.13861097,-0.872079,0.5044424,-0.4879331,0.022415435,-0.024247544,0.66227967,0.8184837,0.62812793,-0.120480545,0.9144691,-0.47584164,0.106742226,-0.3950875,-0.18579645,0.16991572,0.16963218,0.29726785,-0.49030384,-0.17733099,-0.09558453,-0.25263304,-0.2362686,0.59693706,-0.42623833,-0.2303895,0.08939753,0.5857198,-0.26211402,-0.0818921,0.71324146,1.0287077,0.7774819,0.21834736,1.2638278,0.36599082,-0.27560467,-0.13420935,-0.29981807,-0.7357848,0.21930799,0.20514724,0.41444293,0.1457118,0.10659705,0.0058532753,0.35501882,-0.24999198,-0.07135677,-0.27151746,0.16529217,-0.2545374,-0.0047251624,-0.1510564,-0.12472468,0.09132719,0.019712625,0.22913279,0.16089468,-0.24147715,0.23097517,0.28979272,1.6130854,-0.18916525,0.08900125,0.1103884,-0.16217308,0.19748695,-0.072099015,-0.11391496,0.31191623,0.2288638,-0.09296041,-0.47673368,0.036997434,-0.12738517,-0.56672865,-0.20456208,-0.06676216,-0.058315415,-0.34536484,-0.30683085,-0.2674685,0.07286739,-0.72259176,0.2822859,-2.5638433,-0.29953247,-0.0069368044,0.39873627,-0.273828,-0.36523122,-0.10151943,-0.3546976,0.6175198,0.2466813,0.3461159,-0.63249534,0.58554935,0.38532767,-0.455608,-0.1958674,-0.6922683,0.06384544,-0.05486016,0.32572138,0.029258879,-0.2609758,-0.09518298,-0.122089,0.30274254,-0.29596668,0.049939577,0.5199244,0.488906,0.1371,0.30468163,0.03857545,0.55018616,-0.2954304,-0.22545023,0.4765879,-0.32591993,0.18399422,-0.09898294,0.20471402,0.36331895,-0.4133938,-0.43885198,-0.64799684,-0.16557841,1.069258,-0.23513293,-0.44240066,-0.0061418414,-0.10450063,-0.33562738,0.06788694,0.51556736,-0.09688158,-0.17524926,-0.8313593,-0.25289127,-0.038725205,0.5373198,-0.036179364,0.17654,-0.4321427,0.6308157,-0.057623707,0.5668249,0.59733754,0.24560761,-0.2751585,-0.17716233,0.29326996,1.0545155,0.3177155,0.034891985,-0.18997717,-0.2510184,-0.14774169,0.02078158,-0.040022936,0.48155054,0.6435843,-0.016251957,-0.10957443,0.43972003,-0.23245764,-0.051098086,-0.28709528,-0.3856006,-0.17637137,-0.06245214,0.42269418,0.5819566,0.18702255,0.593813,-0.08719449,0.3830342,-0.15961371,-0.44902766,0.49440953,0.7198656,-0.16747381,-0.1316023,0.33928666,0.38539746,-0.19266978,0.53148913,-0.57514584,-0.38301545,0.15730263,0.025647538,-0.4138257,0.35743856,-0.31585345,0.28247336,-0.9307655,0.32207662,-0.191066,-0.42515135,-0.76753384,-0.032871805,-2.0610325,0.16322406,-0.18196693,-0.026897682,0.037252847,-0.117327906,0.13901494,-0.4217782,-0.5466736,0.016491093,0.28698698,0.5301441,0.12716623,0.20241459,-0.14510079,-0.36681122,-0.10376366,0.4346646,-0.039388258,0.10006794,-0.13157503,-0.2622749,-0.072182626,-0.34097573,0.0082706455,-0.09799077,-0.6574036,-0.28562132,-0.110398814,-0.43019262,-0.31603733,0.64095116,-0.3942413,-0.06341062,-0.32288638,-0.0038428982,0.27897814,0.25840554,0.20421867,0.14660266,0.07693814,-0.10723664,-0.1427138,-0.3260642,0.10961895,0.06819215,0.04059536,0.65500957,-0.072580844,0.28144532,0.32034752,0.6147998,-0.048401874,0.833178,0.47628433,-0.081939556,0.25083658,-0.19367531,-0.083772354,-0.59517354,-0.1185311,-0.2361395,-0.49718508,-0.31002468,0.04634412,-0.28651094,-0.78173983,0.42823952,0.22915736,-0.15110208,0.246128,0.5823449,0.50743496,-0.14227177,0.088034734,-0.24391665,-0.31376833,-0.27086937,-0.4905129,-0.8144675,-0.33836094,-0.047811642,1.2467494,-0.0075916806,-0.030003624,0.26426914,-0.14478976,0.040579233,0.0043649874,0.13064082,0.13097566,0.4111565,0.103767544,-0.5464493,0.40394866,-0.085838586,0.031065647,-0.5302916,0.30022362,0.8138849,-0.6522861,0.12578799,0.38845742,0.13617381,-0.12281907,-0.5530636,-0.115979545,0.20849821,-0.3037821,0.26158813,0.09974139,-0.52519184,0.5561374,0.28888226,0.007852221,-0.9257418,0.17509769,0.06582164,-0.38267213,-0.058264744,0.38520387,-0.024370614,0.06600979,-0.31371212,0.21677954,-0.37150404,0.2860994,0.10805824,-0.24463387,-0.00597713,-0.28929153,-0.26781633,-0.76460016,0.105558716,-0.40132982,-0.4094416,0.2764554,0.1366644,0.24940303,0.34561634,0.26003075,0.45869344,-0.46220866,0.15866414,-0.24267322,-0.17082281,0.33125067,0.41860715,0.28344563,-0.3382761,0.5067865,-0.19970217,-0.10862505,-0.3303272,-0.012260823,0.37465218,0.0904829,0.05108246,0.13313475,-0.07690627,0.29815826,0.7191954,0.067658335,0.24133795,0.06212611,-0.34426436,0.3483496,0.040884245,0.23349787,-0.36051908,-0.55020535,-0.19784327,0.08552793,0.27506843,0.30670148,0.088576764,0.5254816,-0.24944833,-0.18335561,-0.03951982,0.09098593,0.14286773,-0.67571044,0.34308738,0.10672331,0.6810876,0.59835696,0.039337937,0.2011966,0.4869259,-0.43830472,0.14994213,0.18819806,-0.30047545,-0.32664916,0.38765654,-0.62571126,0.027110223,-0.14161082,0.029561218,0.16362089,-0.11959832,0.39877266,0.9267667,-0.16617304,0.17018503,-0.14538637,-0.16380736,0.023762917,-0.273058,0.042306535,-0.46085003,-0.49775326,0.70408595,0.22028814,0.459268,-0.2898831,0.052073166,0.24989204,-0.21750031,0.46825328,0.14399341,0.18326643,0.12344432,-0.3683451,-0.11023987,0.70373756,0.03395335,0.06263211,0.15456657,-0.27494666,0.1782233,0.0031189919,-0.12892127,-0.20916656,-0.61605436,0.07963668,-0.46998724,-0.32964543,0.44524983,0.027781157,0.19222072,0.12772006,0.030221997,-0.2056537,0.27318203,0.4131679,0.6998933,0.22279827,-0.09683361,-0.02585449,0.08867404,0.099951714,-0.20939788,-0.13681994,0.04240203,0.25830173,-0.7827785,0.44224054,-0.15594174,-0.39064282,0.247932,-0.22080322,0.02779669,0.5276866,-0.09160972,0.022035027,0.26810473,-0.0854999,-0.330175,-0.16783524,-0.28133726,0.23146158,0.04340807,0.06533502,-0.2449475,-0.031606443,-0.21667005,0.3094076,0.26838976,0.22373642,0.40094578,0.1519131,-0.59417397,-0.032961804,0.23626325,0.32112586,0.06377344,-0.045463137,-0.2288376,-0.15498392,-0.382491,0.2805603,0.0039135017,0.12011936,0.06277221,-0.46954188,0.8830468,0.22836466,0.9634525,0.060786407,-0.16279931,0.05871037,0.42230323,-0.0308091,-0.002748706,-0.4475097,0.9152925,0.66316473,0.08179114,-0.047477294,-0.3060794,-0.17860538,0.27819145,-0.18750323,-0.016172325,0.022582889,-0.85584044,-0.4539736,0.1791367,0.16397946,-0.16760737,-0.21329369,0.12337422,0.07855361,0.016938707,0.12080871,-0.5324659,0.0040099104,0.3428398,0.10994939,-0.09706931,0.23347855,-0.40386397,0.33438027,-0.62629354,0.12281652,-0.26864088,-0.03434328,0.19188581,-0.016670406,0.12947878,0.11581969,0.08955755,-0.33799475,-0.45194754,-0.16880642,0.4816305,0.1561025,0.36285383,0.75750446,-0.23688337,0.14318071,-0.027227037,0.5234141,1.1980236,-0.28565073,0.08062816,0.27926704,-0.39009687,-0.5697366,0.15048738,-0.30779588,-0.019149622,-0.11840861,-0.33028564,-0.273777,0.3695195,0.03712214,-0.14446887,-0.052213132,-0.5516816,0.0069094617,0.37183225,-0.27596474,-0.19664374,-0.18025367,-0.04698873,0.7372761,-0.24537954,-0.32747617,0.007554738,0.24299963,-0.49601373,-0.44887882,0.12739493,-0.5358283,0.16168621,0.35279453,-0.20494716,0.17184952,0.069814526,-0.5682572,-0.036935624,0.27256182,-0.38068804,-0.1898714,-0.40672773,0.13930371,0.792683,0.04972617,-0.09242266,-0.28808162,-0.5909963,-0.63143003,-0.44329053,0.035941817,0.1371975,-0.037618365,-0.668382,-0.0172986,-0.31558648,-0.17478769,0.043341443,-0.45167258,0.502457,0.22245973,0.4686756,-0.37347183,-0.96709454,0.15317583,0.1533308,-0.2709246,-0.39849085,0.42555434,-0.0012384971,0.8762586,0.007814201,-0.067971475,0.37788773,-0.8934408,0.2643746,-0.3705288,-0.10388199,-0.67069954,-0.006134029,40 +126,0.30627352,-0.043116566,-0.33100098,-0.053793266,-0.28461856,0.04609751,-0.26120287,0.39876178,0.44908,-0.44317016,-0.23894851,0.055116873,-0.24816862,0.06222776,-0.17813037,-0.38801256,-0.17260145,0.19433776,-0.4397054,0.6934008,-0.14720373,0.35638663,-0.06266519,0.46590143,0.30551574,0.24698909,-0.06565168,0.08130797,-0.09238041,-0.24797669,0.086807,0.4093992,-0.38841325,0.40124714,-0.30683258,-0.28666115,-0.23270124,-0.41721076,-0.43957654,-0.68126553,0.34761974,-0.65759355,0.5142193,0.10189501,-0.2329908,0.11966543,0.22268346,0.17407335,0.1520405,-0.14356147,0.22811402,-0.13024318,-0.14712858,-0.026274903,-0.23560296,-0.2606288,-0.5842339,0.04535586,-0.22197956,0.017061833,-0.34936488,0.2516977,-0.29675835,-0.13056022,-0.2195219,0.50789636,-0.29336765,0.2568702,0.069161214,-0.12224485,0.07136513,-0.7399624,-0.25474355,-0.13357218,0.12544605,-0.052838985,-0.31777006,0.26523212,0.15532564,0.4486037,-0.033898782,-0.0738272,-0.40651566,-0.106145136,0.4018821,0.4559359,-0.28302774,-0.1147581,-0.15940197,-0.02380214,0.3997418,0.0839997,0.20678349,-0.34398863,0.03023214,-0.23044197,-0.07326705,0.45185998,0.47088447,-0.0382574,-0.23559366,0.28233328,0.49619156,0.43700466,-0.1514039,0.049756296,-0.02718337,-0.39129856,-0.14232685,-0.053925574,-0.19333082,0.30951664,-0.041373584,0.19565222,0.41223797,-0.105389915,-0.038422085,0.25185484,0.23754995,0.26252285,-0.37013796,-0.29021472,0.2115603,-0.50571513,0.12688424,-0.14657487,0.44945663,-0.1089359,-0.70348996,0.21907265,-0.41868418,0.07652285,0.077184685,0.4814237,0.7657777,0.31718922,0.31045455,0.7401074,-0.20298567,0.034311574,-0.076588474,-0.090124324,-0.16344735,-0.13299698,-0.0033673446,-0.565164,-0.016234191,-0.11098026,-0.021755258,0.23716202,0.3960013,-0.4400453,-0.19708684,0.040827338,0.8530125,-0.24936546,0.09847789,0.84742934,1.0871445,1.0649273,0.0086742975,1.1237869,-0.1258625,-0.23800911,-0.18653376,-0.2325334,-0.6347974,0.21254285,0.26495236,-0.5420757,0.25749108,0.090857975,0.103009015,0.37156552,-0.60494155,-0.06760617,-0.22308461,0.24436454,0.11830975,0.0074923993,-0.49042982,-0.20516004,0.035843257,0.11335306,0.13082947,0.22993088,-0.35718346,0.32551414,0.12496354,1.096388,-0.26585308,-0.11616667,0.09759654,0.26890805,0.12875898,-0.22514562,-0.06301195,0.21221349,0.29532826,-0.09887937,-0.5197939,0.03390943,-0.17048179,-0.34718683,-0.150269,-0.25655746,-0.27586707,0.11360867,-0.18436207,-0.296241,-0.1616314,-0.5374299,0.37974727,-2.646433,-0.14488922,-0.05468116,0.28277197,-0.13335861,-0.3967296,-0.20315436,-0.36294395,0.4359183,0.13028206,0.3252133,-0.41429865,0.114504896,0.5483452,-0.66458714,-0.06354854,-0.45013797,-0.16444781,0.1449499,0.37585768,0.058565173,0.018385053,0.02559684,0.29074377,0.45265847,0.041636396,0.15319155,0.4529548,0.3599642,-0.18102725,0.25045022,-0.069655046,0.57872146,-0.24766363,-0.31417137,0.42446855,-0.32751846,0.39102507,-0.36046895,0.13032106,0.49449137,-0.37591317,-0.6119108,-0.50215137,-0.24515818,1.324808,-0.14535774,-0.53583294,0.34076846,-0.60711974,-0.31088632,-0.102977276,0.5588243,-0.059474207,-0.19005994,-0.809292,-0.09802411,-0.15477744,0.15322366,-0.08062123,-0.070714764,-0.4084657,0.7693157,-0.061083414,0.44827315,0.43341067,0.2823489,-0.2758149,-0.387296,0.13301058,0.88870895,0.5643308,0.17054577,-0.29732984,-0.047723975,-0.3794621,-0.1573855,0.14264984,0.67647135,0.50624007,-0.076219074,0.11310287,0.21190688,0.11466101,0.057538867,-0.27778193,-0.21142527,-0.22460492,-0.031717993,0.62480515,0.49079177,-0.10724934,0.31356442,0.01013865,-0.010925209,-0.1711248,-0.35199115,0.36725122,1.0090852,-0.1862956,-0.27897003,0.72055167,0.5055345,-0.19561033,0.41878426,-0.57882375,-0.21716127,0.32204068,-0.20911665,-0.5322636,0.13487908,-0.4708121,0.112201706,-0.5342415,0.42899734,-0.23903182,-0.7141063,-0.66609395,-0.050150625,-1.3417706,0.23157038,-0.23592205,-0.32219726,-0.34031364,-0.30621716,0.11070783,-0.32146123,-0.63886416,0.18147346,0.114263244,0.608574,-0.20690003,-0.052728023,-0.039749563,-0.3255332,-0.11024491,0.07342794,0.21284457,0.34145203,-0.0563041,-0.30533472,-0.11019523,0.012884617,-0.30746225,-0.06991593,-0.50358117,-0.52338535,-0.03775382,-0.3364707,-0.008789794,0.5087278,-0.430168,0.15174145,-0.24300058,-0.06964093,0.08504249,0.20116739,0.020492097,0.30954486,0.24162553,-0.049439646,-0.0067611537,-0.10260787,0.45109397,0.21853386,0.17970015,0.4835453,-0.24958639,0.3588073,0.35476866,0.7650675,-0.20450278,1.1134591,0.48541743,-0.1464365,0.24857815,-0.33612448,-0.45917422,-0.528194,-0.056352545,0.29370695,-0.464821,-0.45865422,-0.045259126,-0.365373,-0.89074385,0.5056917,0.109213986,0.3310931,-0.08488334,0.07331034,0.40390062,-0.17715864,-0.088698596,-0.15644884,-0.19606324,-0.40894032,-0.47765917,-0.61892533,-0.34541813,0.044938304,0.9616597,-0.18305172,0.22207238,0.3481218,-0.30437666,0.044332344,0.1163233,0.0029610514,-0.014079953,0.36852297,0.12476822,-0.5046178,0.28960714,0.25415114,-0.057108387,-0.60541284,0.31824142,0.61653227,-0.4276348,0.61198807,0.2751153,-0.095401436,-0.37139156,-0.56050915,-0.12259412,-0.10150129,-0.35097083,0.4846005,0.30863073,-0.5341491,0.29828778,0.30662164,-0.07688831,-0.8376411,0.534614,-0.08032758,-0.097093254,-0.043042652,0.32590115,-0.029895388,0.096060134,0.07472624,0.34427235,-0.17148672,0.44734573,0.10794627,-0.24466802,0.05552252,-0.35894948,-0.20119594,-0.8226815,0.18174897,-0.5509679,-0.36112732,0.2608981,0.107304506,0.15562579,0.21374363,0.38881522,0.36314365,-0.19112794,0.11114118,-0.16681556,-0.3335022,0.3069546,0.48943818,0.61276406,-0.260974,0.43761384,0.087057255,-0.1941403,0.0777798,0.078857906,0.38081446,-0.13541906,0.31647682,-0.096918024,-0.14007886,0.052884348,0.8126085,0.1707657,0.24053438,-0.16098261,-0.121090695,0.2412021,-0.006252253,0.2849913,-0.19977368,-0.56970406,-0.04399862,-0.25940016,0.09755857,0.43604267,0.23423865,0.29250136,-0.1802969,-0.28188393,0.035681535,0.2189202,0.15169002,-1.4025807,0.3844199,0.1839705,0.88190824,0.5452101,0.049801327,0.058810096,0.6079804,-0.09156416,0.0585148,0.36766377,-0.050227888,-0.40402555,0.34142077,-0.59393495,0.4344874,-0.012434109,0.074991144,0.07781092,-0.04414573,0.3561798,0.72359806,-0.15284517,0.023654845,-0.1193852,-0.32360736,-0.026252694,-0.32545847,0.28265542,-0.52150285,-0.5037673,0.8019353,0.59402287,0.40338135,-0.20663062,0.14319319,0.097875066,-0.28237584,0.2107249,0.024305034,0.04808825,-0.14271119,-0.64523864,0.13363391,0.36200082,-0.2548628,-0.007330513,0.056896646,-0.08944915,0.15564589,-0.07705341,-0.04246847,0.03150144,-0.72331375,0.0061000665,-0.3906559,-0.40624455,0.14639853,-0.1316176,0.056111224,0.22730064,0.06698847,-0.22827731,0.41384214,0.07538676,0.6596029,0.22639205,-0.028160302,-0.25096554,0.30822226,0.06790774,-0.15256907,-0.048727263,-0.057440255,0.22235762,-0.5223125,0.41669023,-0.12031722,-0.29620335,0.05659126,-0.16110821,-0.014461575,0.40047815,-0.11576518,-0.12557362,-0.001821818,-0.29515857,-0.22671922,-0.14500266,-0.10416611,0.25948244,0.06908082,-0.007710485,-0.17270833,-0.19474138,-0.3572373,0.21577041,0.12083317,0.47158045,0.44160348,-0.0010428886,-0.47334728,0.011891093,0.15384741,0.4905875,-0.011467448,-0.013030112,-0.097859465,-0.30980244,-0.4148505,0.42198005,-0.08387796,0.35724643,0.024159312,-0.1749791,0.7615215,0.06564616,0.938864,0.04856996,-0.3593726,0.10281278,0.40981495,-0.24316429,-0.028747419,-0.2650627,0.7512464,0.447069,-0.013225059,-0.09953999,-0.3648825,0.1503727,0.121118404,-0.3058279,-0.08449976,-0.086821176,-0.71180505,-0.240501,0.1991848,0.2499287,0.104277685,-0.14486006,0.017556107,0.17939356,-0.015638288,0.25350204,-0.46735084,-0.17810497,0.39750078,0.21192105,-0.06679438,0.14913863,-0.4673823,0.2809143,-0.51789457,-0.0059472444,-0.17878982,0.097180806,-0.2774375,-0.21397154,0.24770994,-0.05718835,0.2395406,-0.44788647,-0.29911616,-0.2959579,0.13373896,-0.1139567,0.12830108,0.40195253,-0.25077853,0.089007534,0.16467936,0.42492214,0.923914,-0.11510291,0.0634182,0.24047278,-0.28493398,-0.44099554,0.11054794,-0.44886714,0.052814793,0.08621083,-0.26931858,-0.35710385,0.21288998,0.15050745,0.124712594,-0.05641387,-0.7590853,-0.29862908,0.15608904,-0.23527445,-0.040189352,-0.18690498,-0.23366259,0.48517936,-0.2205469,-0.46441677,-0.13867603,0.16906688,-0.2849759,-0.5659678,0.16709684,-0.39630964,0.23995237,0.014543023,-0.42614633,-0.3066289,-0.11600171,-0.44969577,-0.009707753,0.15539163,-0.2727537,-0.12478404,-0.25767273,0.14847237,0.71789664,-0.15477699,0.21678504,-0.20740029,-0.51562405,-0.8580771,-0.21149012,-0.027525838,0.2467378,-0.14599714,-0.7271723,-0.0026164493,-0.33342808,-0.0766112,0.114230916,-0.39140752,0.4800845,0.25393507,0.45637867,-0.28236446,-0.8280791,0.25343645,0.19202343,-0.08567691,-0.37423363,0.44791558,0.23367205,0.67634517,0.07293361,0.028907565,-0.05646843,-0.69398725,0.10981165,-0.09201441,-0.17559218,-0.6201982,0.12084886,46 +127,0.17429887,-0.1163907,-0.59167117,-0.11103848,-0.5052698,0.30496776,-0.27702528,0.20677558,0.2848991,-0.19608553,0.08082401,-0.03735217,-0.099011,0.40854868,-0.11130874,-0.69871706,0.048250403,0.049727358,-0.6275833,0.41925424,-0.46723643,0.38102537,-0.14969839,0.30664384,-0.03468459,0.31640166,0.1678885,-0.074987136,-0.1595512,0.044868566,-0.109636806,0.23562516,-0.39086735,0.30252022,0.0018921773,-0.2826695,0.12517922,-0.23590758,-0.2159292,-0.6346518,0.21093775,-0.6000852,0.5449637,-0.18930298,-0.36947602,0.16647013,0.08252777,0.18784557,-0.39375037,0.22461154,0.22279033,-0.32556874,-0.04401983,-0.22506717,-0.4224106,-0.3585848,-0.45313638,-0.08206957,-0.65060717,-0.12394769,-0.44903573,0.21185288,-0.31414267,-0.08825132,-0.11896797,0.3181182,-0.5024811,0.25318065,0.12820044,-0.22875047,0.00974656,-0.37466142,-0.08799744,-0.114241205,0.23811011,-0.14372139,-0.12619835,0.25525978,0.36665118,0.41554847,0.07485558,-0.17780972,-0.4265067,-0.28730693,0.10351089,0.44917774,-0.077916384,-0.16200906,-0.21213506,0.01191563,0.18533972,0.19733019,-0.19338837,-0.28021926,-0.11505701,-0.028974025,-0.2814459,0.2977716,0.35127392,-0.34906617,-0.33831885,0.46136317,0.3332229,0.10747347,-0.2500037,0.14571358,-0.05101295,-0.48392615,-0.26763895,0.16399378,0.05026672,0.3911719,-0.16384563,0.2593077,0.78129005,-0.23566397,-0.06307974,-0.11651622,0.017192988,0.013909829,-0.111798964,-0.032427955,-0.022753673,-0.47789466,0.034043215,-0.031631146,0.7737604,0.16417055,-0.7776301,0.41681108,-0.48838893,0.0745784,-0.14117709,0.55151486,0.65304756,0.45967656,0.26369697,0.73348725,-0.4461993,0.1910934,-0.089017734,-0.4420183,-0.002430745,-0.086678766,-0.11179271,-0.6021789,0.08388528,0.06147367,0.030022684,0.09852416,0.33081084,-0.36104038,-0.018340738,0.00032008888,0.7304881,-0.47221085,-0.1461162,0.74078995,0.8405463,1.0073036,0.067157626,1.2084678,0.45436847,-0.16229981,0.016138045,-0.460991,-0.3991069,0.21108942,0.2391773,-0.0712041,0.265664,0.09050679,0.20450354,0.3369466,-0.14190848,-0.055337746,-0.10581191,0.15842065,0.089706846,0.026995596,-0.33326414,-0.37809277,0.19133161,0.14844607,-0.10343455,0.27885884,-0.12384972,0.5462619,0.08506464,1.3708723,0.1493537,0.069611296,-0.054192886,0.47563058,0.12114572,-0.04854236,-0.19848761,0.32337567,0.25817573,0.04325221,-0.49529916,-0.042372838,-0.26058975,-0.46440107,-0.18984792,-0.3235853,-0.111539505,-0.113271005,-0.44913545,-0.18798093,0.07255828,-0.30454203,0.54007924,-2.597684,-0.016685423,-0.08343173,0.23294166,-0.25021487,-0.27064458,-0.28090557,-0.4609343,0.35895893,0.37640777,0.361635,-0.5509829,0.3391562,0.24549408,-0.37915748,-0.20482177,-0.58521265,-0.017467786,0.0093922615,0.400818,-0.10986004,-0.059774686,-0.16054313,0.20545608,0.68076533,-0.12119352,0.0062539726,0.26044992,0.47688484,0.150482,0.4650947,0.14711209,0.5612335,-0.26501426,-0.19792645,0.37371844,-0.40166292,0.26690742,0.10740994,0.07872453,0.3090657,-0.5057214,-0.913509,-0.4791737,-0.2794261,1.2698814,-0.34458488,-0.42593375,0.28309652,-0.07846589,-0.23817004,-0.05084507,0.2695894,-0.070488766,0.014790579,-0.6578076,0.11280301,0.03199509,0.27243963,-0.054378342,0.10459757,-0.11667165,0.5730837,-0.1965258,0.24897432,0.34089717,0.19915509,-0.16518854,-0.4289466,0.17599529,0.7630985,0.3083231,0.19526066,-0.10228927,-0.32452482,-0.049430825,-0.16059802,0.16102797,0.40189826,0.56242764,0.0015001575,0.09262911,0.21565025,-0.1996433,0.037539463,-0.24366918,-0.17673373,0.051178657,0.23639719,0.6082403,0.47427636,-0.031199064,0.5405689,-0.09061939,0.13546795,-0.088689126,-0.4979661,0.41099685,0.71849257,-0.12189417,-0.32945257,0.41260803,0.41641808,-0.3084672,0.28469932,-0.398757,-0.27490765,0.6690586,-0.22810355,-0.4165563,-0.062469974,-0.3049803,0.036494356,-0.7857509,0.3236619,0.064550206,-0.6446651,-0.39781135,-0.04685844,-3.8293793,0.108620614,-0.0970109,-0.20858416,0.05223821,-0.12149355,0.23996834,-0.45756105,-0.45232975,0.061348617,0.04229496,0.40858132,0.010299174,0.026592681,-0.38788185,-0.15746766,-0.22000167,0.16759,0.11041651,0.3457717,0.02680232,-0.46389902,0.21118212,-0.3698234,-0.41307074,-0.076998614,-0.4561982,-0.44606417,-0.14834195,-0.41859138,-0.25769827,0.6934415,-0.4354175,-0.060833104,-0.34007356,0.019278144,-0.21923904,0.37128556,0.2863264,0.12838921,0.076343514,-0.008002839,-0.027655868,-0.35576156,0.33201686,0.09723774,0.13149092,0.38604316,0.10890439,0.15205428,0.61634284,0.52503514,0.080900736,0.773725,0.17247295,-0.25263664,0.38118905,-0.39001054,-0.23952717,-0.58592457,-0.39902,-0.23059654,-0.34286982,-0.32346275,-0.17510279,-0.2517067,-0.74061185,0.41530597,0.06625598,0.051451884,-0.114141256,0.28376713,0.41029695,-0.1664907,0.090451024,-0.14844078,-0.1903955,-0.44738388,-0.5458412,-0.5737025,-0.5575448,0.18424867,1.1639247,-0.16824672,-0.049012166,-0.013633204,-0.37173328,0.07215953,0.18282904,0.25005263,0.37030372,0.2873111,-0.31983286,-0.804151,0.37841496,-0.12178327,-0.072303146,-0.6958839,-0.002027917,0.7738402,-0.60735184,0.48848775,0.36046633,0.21024556,0.20674016,-0.49807227,-0.3267966,-0.031291876,-0.22475295,0.41391844,0.16198519,-0.5810465,0.4890191,0.16391712,-0.09680447,-0.58499837,0.48683387,0.0056776386,-0.18690355,0.17298898,0.31885654,0.06756004,-0.14807115,-0.10108447,0.101536684,-0.41691455,0.301322,0.3222939,-0.00413723,0.3483674,-0.11510752,-0.26462686,-0.6377566,-0.2481964,-0.37202078,-0.2987094,0.08163554,0.13315906,0.09018124,0.037233073,-0.1356873,0.2988222,-0.29448977,0.12743,-0.14608864,-0.22663304,0.35797736,0.42973444,0.3272901,-0.37582558,0.67102844,0.013000308,0.17003898,0.031738773,-0.009161774,0.5548583,0.13579074,0.34889477,0.04409958,-0.2851811,0.21690449,0.7064812,0.20949619,0.3192969,-0.059571937,-0.26329646,0.25095838,0.23705961,-0.02597962,0.008052302,-0.13330647,-0.13344367,-0.077604026,0.22040667,0.3309466,0.12553142,0.38723692,-0.0798316,-0.118636236,0.23972815,0.108780734,0.059186306,-0.9159688,0.32712844,0.29224116,0.6281645,0.35863554,0.037238255,0.04769081,0.5711599,-0.39322785,0.08862916,0.36163837,0.015573612,-0.43363363,0.54732746,-0.58597827,0.64590055,-0.1398199,0.009719477,0.20875788,0.30921295,0.21262102,1.0049356,-0.049130987,0.088801354,0.15778597,-0.4586443,-0.066263214,-0.2782528,0.05739981,-0.5571537,-0.2576014,0.56329745,0.36629608,0.36428082,-0.21886034,-0.060009804,0.030737253,-0.18722035,0.07762405,-0.058033988,0.041591667,-0.25397265,-0.5593509,-0.23974864,0.52343047,0.004071331,0.090723425,0.14877428,-0.1582036,0.42781168,-0.13555865,0.1060421,0.008231733,-0.47467473,-0.0013782163,-0.23533353,-0.5226185,0.35589293,-0.31345186,0.37955624,0.12926218,0.112076506,-0.39460343,0.42007104,0.19795386,0.81460506,-0.023687402,-0.1458761,-0.23251818,-0.04137175,0.45409337,-0.19674173,-0.14334354,-0.24487773,0.011752495,-0.68482685,0.3725433,-0.3803299,-0.22583914,0.008851325,-0.1594979,-0.023397235,0.36820152,-0.021570412,-0.19699179,0.108984604,-0.03181511,-0.38186303,-0.08825339,-0.32170165,0.31265974,0.041304287,-0.05579056,-0.037053797,-0.15687984,-0.06474383,0.2870817,-0.05723371,0.15727425,0.29525605,-0.009889993,-0.3110103,-0.020823289,-0.2022718,0.48028478,0.023118058,0.083111875,-0.35436487,-0.27277035,-0.16990294,0.3042476,-0.19653775,0.0571738,0.06000651,-0.49267736,0.7278105,-0.093828194,1.1216412,0.14735457,-0.27255613,0.21800311,0.36361423,0.08239526,0.16636024,-0.22844492,0.79314476,0.6763506,-0.00903581,-0.25817892,-0.35908586,-0.20125917,0.19095679,-0.24839382,-0.24145718,-0.08018382,-0.76485956,-0.23866129,0.19479771,0.05137136,0.22415636,-0.020141652,-0.13812631,0.014634379,0.26217258,0.38590133,-0.40411758,-0.045465723,0.26173753,0.29242665,-0.05258455,0.21949151,-0.3196612,0.3753778,-0.59557396,0.0880425,-0.2943181,0.126884,-0.2734769,-0.09425743,0.2625139,0.13362764,0.28397045,-0.17150955,-0.18326299,-0.31129995,0.6499879,0.20364293,0.18795453,0.64386076,-0.2454617,-0.11088085,0.054873686,0.2935497,1.0609502,-0.04729231,-0.13178729,0.48130152,-0.26321548,-0.46814415,0.12926474,-0.43336332,0.054874066,0.0421044,-0.28748578,-0.25271592,0.35634908,0.14977892,0.036841463,0.045999166,-0.42173475,-0.029323291,0.31057447,-0.31316745,-0.38417143,-0.3614961,0.33129212,0.50853115,-0.33146775,-0.22514343,0.034999624,0.2963403,-0.28638014,-0.49822482,0.09306348,-0.20374246,0.37287876,0.16073723,-0.38805586,-0.013187373,0.2723732,-0.33837345,0.020673864,0.4685508,-0.39503482,-0.020162709,-0.1234584,-0.072341524,0.8797568,-0.09176738,0.14119273,-0.6684171,-0.43346146,-0.91726,-0.2675858,0.39621326,0.15220252,-0.097013615,-0.5939035,-0.15319616,0.0029683898,-0.16219063,0.07944539,-0.624729,0.44207317,0.12929943,0.31658605,-0.0634849,-0.9146553,-0.023312101,0.083717115,-0.24303073,-0.51418775,0.53839153,-0.35911953,0.681053,0.16413455,0.0018986384,0.3543597,-0.485497,0.32769248,-0.34404805,-0.25538388,-0.55854803,0.093943976,49 +128,0.28685078,-0.39526346,-0.3884238,-0.13334154,-0.2920922,-0.016077522,-0.21555033,0.2888182,0.07395701,-0.27343404,-0.013020675,-0.07572562,-0.025001016,0.5754737,-0.27342337,-0.46021926,-0.038000073,0.075700834,-0.5485213,0.59300894,-0.42708954,0.2692341,0.1548992,0.26164004,0.14944357,0.26413092,0.33917528,-0.04324373,0.09618592,-0.12056052,-0.18215632,0.035038438,-0.62032473,0.14973022,-0.15476957,-0.21282345,0.11203965,-0.38448557,-0.42189714,-0.82266575,0.30424505,-0.9267262,0.4952931,-0.102638245,-0.35296863,0.2596148,0.26789948,0.31631917,-0.2599631,-0.11750293,0.014494141,0.027123522,-0.04611716,-0.023816643,-0.023984171,-0.58006024,-0.61070687,-0.017914172,-0.6769462,-0.2383845,-0.19893813,0.2252636,-0.41778275,0.1544021,-0.055902053,0.24424869,-0.64707893,-0.1180099,0.11117969,-0.05453641,0.2763476,-0.50153285,0.0618174,-0.14769588,0.068764605,0.07332284,-0.15541026,0.4341265,0.25775024,0.46035516,0.019449595,-0.19555968,-0.27275786,-0.13615172,0.15009555,0.5420085,-0.05495241,-0.39198554,-0.18945843,0.13918869,0.34058988,0.2444312,0.004559857,-0.3464061,-0.041457474,0.047161944,-0.2544471,0.2896752,0.4965285,-0.48290572,-0.22030528,0.41825417,0.49385053,0.08735586,-0.11501883,0.106023826,0.07998412,-0.4302127,-0.119811945,0.051809255,-0.30281603,0.53741175,-0.122085854,0.23996234,0.5889692,-0.17425938,0.11855357,-0.13109542,-0.07303621,-0.22417308,-0.12899365,-0.21555932,0.26694232,-0.50755775,0.09657257,-0.26346523,0.7604753,0.1558222,-0.74675524,0.4398659,-0.5415732,0.1784942,-0.2051906,0.546469,0.72092557,0.5114429,0.4443897,0.68080926,-0.39878267,0.19049333,-0.16929144,-0.4574421,0.32360396,-0.32329997,-0.118592106,-0.5063041,0.034544658,-0.03067699,-0.2018808,-0.13129959,0.60991204,-0.5155413,-0.09968939,0.15990658,0.7528218,-0.27154383,0.0006998221,0.6104146,0.9428444,0.9080203,0.08151637,1.054066,0.33405793,-0.097993694,0.321408,-0.19890901,-0.79377186,0.17247804,0.51246566,0.26943526,0.32051474,0.048937462,-0.048038714,0.42923006,-0.44384277,0.026062457,-0.26510054,0.32930642,0.014989758,-0.005512659,-0.58669126,-0.23664941,-0.029214382,0.080393694,0.0581606,0.41211674,-0.20616178,0.34339613,0.15366767,1.8499669,-0.10160119,0.1217514,0.12332594,0.5776695,0.32161513,-0.16875727,-0.13378982,0.3452048,0.34480536,0.13807537,-0.6971147,0.050093032,-0.28313118,-0.5105618,-0.1405323,-0.3508396,0.025782831,-0.08895135,-0.4125993,-0.1548408,0.08503838,-0.28395668,0.4092209,-2.6546204,-0.3184829,-0.20827007,0.32272086,-0.40317944,-0.1639965,0.045828227,-0.4151086,0.406606,0.51252675,0.43864766,-0.8073827,0.34279194,0.50940114,-0.5365847,0.051703777,-0.53320175,-0.098570354,-0.16635966,0.47846496,0.024818812,-0.13146874,-0.06394937,0.28182966,0.45015904,-0.034615286,0.19299498,0.22091092,0.36052355,0.105323076,0.46492395,-0.13395959,0.35158223,-0.2237517,-0.15350062,0.27886146,-0.17802261,0.28207767,-0.18343358,0.29198134,0.3867923,-0.57090074,-0.978488,-0.67563576,-0.25394443,1.0351756,-0.46657073,-0.454099,0.40331328,-0.20141464,-0.15979157,-0.1176807,0.44902474,-0.10255333,0.05424736,-0.7752069,0.12695919,-0.09633205,0.21007721,0.069755554,-0.035744432,-0.31966373,0.69691354,-0.07354767,0.46569294,0.24919319,0.24132136,-0.29079637,-0.54145217,0.08437606,0.63817734,0.52314645,0.015373109,-0.25223437,-0.26015943,-0.2658912,-0.20373774,-0.04063557,0.306787,0.84362376,0.01497995,0.018475449,0.18765728,-0.18980853,-0.014951827,-0.16476244,-0.29297596,0.17154182,0.12087433,0.52936035,0.67048776,-0.156275,0.37372816,-0.116994865,0.36735472,-0.04205131,-0.5673252,0.37271053,0.8525204,-0.1688555,-0.099284045,0.6385587,0.5669573,-0.24064086,0.49888936,-0.84774095,-0.27998784,0.43145695,-0.12950322,-0.48044616,0.19430058,-0.31694666,0.22252879,-0.92792267,0.27675733,-0.16097178,-0.26341453,-0.46529517,-0.10093747,-3.4912784,0.18535589,-0.11306999,-0.2814844,-0.04918806,-0.088700935,0.38048273,-0.63495815,-0.56367475,0.21355596,0.15819235,0.6302063,0.043762937,0.11611349,-0.23569621,-0.25529677,-0.31383467,0.15625991,0.12420229,0.26745415,-0.036270738,-0.56191766,-0.10072328,-0.23344631,-0.42898288,0.12546325,-0.52711165,-0.5808135,-0.32310277,-0.5869304,-0.2959462,0.6186711,0.033010434,-0.045725662,-0.24610005,-0.08565232,-0.12593165,0.21880178,0.24281749,0.11609624,0.0560608,-0.06354213,0.071324095,-0.3459617,0.31504026,-0.028787991,0.31165588,0.29824325,-0.012534376,0.13482748,0.7129212,0.48818392,-0.2506997,0.74494284,0.5456689,-0.2206003,0.27343407,-0.16193445,-0.36564952,-0.5118978,-0.3896,-0.039646868,-0.35569265,-0.42682812,-0.1388978,-0.37193742,-0.68068874,0.63045406,0.013482833,0.3207447,-0.046267945,0.07680619,0.46621564,-0.27224132,-0.088713855,-0.011978944,-0.22091784,-0.6267044,-0.27337354,-0.73059684,-0.57172763,0.17470242,1.0498703,-0.1295672,-0.18791252,-0.025361124,-0.10999731,-0.0328033,-0.13827609,0.096112415,0.3180106,0.25166065,-0.10503641,-0.69643515,0.62985414,-0.025956415,-0.02187888,-0.48866695,0.1737428,0.5480467,-0.636568,0.2883106,0.30134133,0.13545182,-0.07491554,-0.68375,-0.11829373,0.12432664,-0.23469567,0.51617134,0.24872802,-0.95299035,0.51593024,0.34273925,-0.53826827,-0.7240775,0.42968494,-0.05171144,-0.16540521,-0.14437583,0.2583994,0.13240282,0.15217055,-0.32961908,0.2094519,-0.5438154,0.23448168,0.27255976,-0.027556412,0.5245819,-0.29299116,-0.1590107,-0.72001475,-0.047945023,-0.40164483,-0.19582206,0.30609563,-0.063722864,0.018919945,0.13724288,-0.063645825,0.44005686,-0.34259567,0.038769018,0.06830276,-0.27015477,0.4159211,0.52609646,0.48640183,-0.30464202,0.57760465,0.08526566,-0.20128901,-0.29550454,-0.08016833,0.3919966,0.07047716,0.27122292,0.026191195,-0.10724185,0.37692702,1.0008615,0.17564948,0.41472498,0.15108043,-0.11773865,0.32444426,0.14866288,0.016513716,0.13206305,-0.4646107,-0.016576346,-0.07417485,0.13222554,0.525068,0.16018753,0.27026495,-0.11855043,-0.26401392,0.10951423,0.12613653,0.020906942,-1.1664472,0.1804743,0.18793103,0.65525234,0.59061855,0.11358977,0.006538429,0.83344215,-0.27395627,0.11484539,0.38301215,0.094877526,-0.6250298,0.63010585,-0.7465584,0.4589633,-0.14689855,0.023128737,0.0941288,0.113615476,0.42036095,0.7609429,0.0151892165,-0.0028937638,0.030465994,-0.23144425,0.16120085,-0.29184785,0.046270195,-0.45857874,-0.32449514,0.5043977,0.455793,0.32788506,0.07693054,-0.083026804,0.0209934,-0.12589274,0.20914207,-0.024995657,-0.0040774546,-0.09517152,-0.52308387,-0.31944352,0.5882606,0.17459212,0.2520987,-0.053495463,-0.1095174,0.20577969,-0.28303015,-0.3224811,0.05607847,-0.6503738,0.0016536037,-0.19897062,-0.35863537,0.5694193,-0.24723713,0.16426389,0.037889365,-0.027950244,-0.38861644,0.09624427,0.20916262,0.7753511,0.020342572,-0.08492286,-0.3018845,0.0011021435,0.09590803,-0.24243544,-0.015693339,-0.28393546,-0.005023265,-0.6898842,0.5141593,-0.10540943,-0.40920302,0.11911438,-0.17486435,0.063324496,0.5293434,-0.14261991,-0.3203288,-0.250426,-0.14034662,-0.32637468,-0.3121025,-0.17158209,0.23382123,0.1554799,-0.02628049,0.008874027,-0.12880136,-0.011911013,0.6243891,-0.060487114,0.33530417,0.24630694,0.023812912,-0.30465692,-0.06705804,0.2509065,0.52017015,-0.079210505,0.06106478,-0.23696072,-0.36209235,-0.34070867,0.010515611,-0.14565489,0.42264965,0.08912357,-0.3199169,0.8039152,0.078197524,1.2191144,-0.048740033,-0.37029594,0.09999132,0.52136177,0.053571437,-0.06536689,-0.3053056,0.7561128,0.68498445,-0.06701362,-0.26601306,-0.51713276,-0.24359147,0.3019916,-0.38821086,-0.032345723,0.030394332,-0.6501621,-0.19546476,0.28162205,0.32360083,0.051376175,-0.07420287,0.0694808,0.04855535,0.076646335,0.46672902,-0.4206517,-0.11268742,0.48962066,0.24845514,0.10235052,0.048712384,-0.4058539,0.38857687,-0.44969097,0.174824,-0.4242926,0.187198,-0.15109585,-0.35551974,0.16585231,-0.05306218,0.43677706,-0.25671566,-0.3856558,-0.17872804,0.6739511,0.17703448,0.10687075,0.6908839,-0.31991962,0.22656567,-0.013436405,0.49803412,1.1111194,-0.3833383,-0.07578133,0.1425843,-0.42627907,-0.81727946,0.503292,-0.35988885,0.22410098,0.044869732,-0.2520384,-0.55735993,0.25842634,0.22900857,0.014856379,-0.11076798,-0.53786224,-0.18738781,0.30029956,-0.2517656,-0.15557891,-0.39814332,0.19011761,0.63587976,-0.274301,-0.31387547,0.054156985,0.343366,-0.15420492,-0.64517707,-0.12041115,-0.17874524,0.2816384,0.1019234,-0.33786604,0.09193317,0.20281693,-0.44610664,0.018812204,0.2060914,-0.29552326,0.22040603,-0.37279287,0.13145958,0.95710456,-0.24979632,-0.22268884,-0.740071,-0.56256795,-1.0108356,-0.26125237,0.49522337,0.24445473,0.10173962,-0.62003064,0.15377998,-0.10439651,0.08725599,0.015887456,-0.49153316,0.42827034,0.08592234,0.42338556,-0.00069210527,-0.67048967,0.1357885,0.14663094,0.008636163,-0.4812908,0.64028347,-0.20690452,0.9391332,0.15032583,0.09135569,0.060129058,-0.4806911,0.03055059,-0.29884973,-0.3328349,-0.7311766,0.11447498,56 +129,0.38770667,-0.17467284,-0.36466056,-0.10973857,-0.257936,0.046727262,-0.118279405,0.32179412,-0.019640263,-0.5856597,-0.10341387,-0.186314,-0.051161338,0.26067787,-0.20974378,-0.47621268,-0.0056144614,0.13600668,-0.5679086,0.46819973,-0.43501815,0.30915436,0.02631747,0.28517833,0.1199913,0.2729126,0.28419024,-0.2293126,-0.13592836,-0.17453457,-0.23964642,0.28062412,-0.5447045,0.1769277,-0.13186775,-0.4661897,-0.09313785,-0.28566703,-0.3017635,-0.6103886,0.2610199,-0.9413199,0.4138316,-0.052959103,-0.21340695,0.45707375,0.07518433,0.20158498,-0.23794998,0.06471183,0.1633633,-0.13337547,-0.032996412,-0.19981034,-0.058012765,-0.3455599,-0.5329593,0.02892969,-0.40894222,-0.12670381,-0.44012558,0.13583097,-0.38439238,0.07155234,-0.029733606,0.32512486,-0.54320693,0.09119662,0.07639661,-0.018181378,0.1703065,-0.53178346,-0.12677865,-0.157243,0.27701727,-0.26010215,-0.13285205,0.3057338,0.22591524,0.44317073,0.02786278,-0.12955984,-0.4848166,-0.022032412,0.21691205,0.4627538,-0.11477466,-0.48834077,-0.07763241,-0.053838618,0.07012628,0.15259638,0.043185767,-0.19138244,-0.17973527,0.014445762,-0.2969819,0.3432396,0.464755,-0.38657883,-0.41573665,0.35088885,0.5315564,0.14079277,-0.11906523,0.069520615,-0.00023901476,-0.5258093,-0.11683462,0.16810973,-0.048698295,0.42664725,-0.19610366,0.28721878,0.6348247,-0.28109312,0.15000394,-0.06766057,-0.111346476,-0.11339712,-0.03659866,-0.12917021,0.107485496,-0.39450026,0.22768702,-0.20193294,0.8506429,0.1046418,-0.77129716,0.29189867,-0.44307575,0.15647332,-0.10395427,0.54773355,0.5940468,0.38757324,0.251615,0.67117196,-0.5083723,0.011796347,-0.070370294,-0.3578033,-0.037183158,-0.15250073,-0.08038235,-0.4933039,-0.027771497,0.07515376,0.08546788,-0.10225373,0.57528967,-0.50944704,-0.0039764643,0.10556404,0.7649081,-0.35767907,-0.1507681,0.8542191,0.9501487,1.0540407,0.06634775,1.0790372,0.2720812,-0.1896901,0.14719035,-0.30971155,-0.612372,0.26529336,0.30652383,0.47583458,0.08631527,0.17709391,-0.028710276,0.3207034,-0.48840916,0.068772286,-0.26753834,0.23691724,0.2091205,-0.05663437,-0.33372372,-0.27137533,0.02060676,-0.0034282326,0.049847268,0.28115088,-0.16201393,0.5543577,0.06090008,1.6842333,0.053905927,0.07999367,0.060623053,0.52150935,0.14639877,-0.053420193,0.07152822,0.15896021,0.38400322,0.03756455,-0.6356076,0.08924388,-0.21225674,-0.64362794,-0.13980278,-0.3249151,-0.26823625,0.033196885,-0.44231004,-0.19562855,0.018601365,-0.2627221,0.44557616,-2.7055323,-0.054267906,-0.05427613,0.41122997,-0.21151842,-0.27231616,-0.14863357,-0.4871755,0.53838116,0.36192656,0.4397246,-0.63136965,0.4183588,0.38082182,-0.40480897,-0.08858214,-0.7079691,-0.059250686,-0.020286,0.38352025,0.025634862,0.030794589,0.22822802,-0.05632581,0.5425039,-0.13217965,0.07458125,0.26939073,0.33917472,0.17336081,0.47921547,0.15978113,0.42153302,-0.33165747,-0.1738021,0.28712007,-0.29409352,0.32354453,-0.13525325,0.13695084,0.39229742,-0.49335188,-0.8858618,-0.7380028,-0.27484354,1.1300012,-0.09795877,-0.5178497,0.29721558,-0.15233812,-0.153099,-0.17571814,0.34486488,-0.19426626,-0.11480566,-0.80805993,-0.014323449,-0.051320706,0.15750284,-0.016349413,-0.009556774,-0.4752282,0.7532384,-0.15198472,0.43370068,0.3715291,0.3011534,-0.29995564,-0.5153362,0.0752117,0.78123075,0.31025124,0.12065478,-0.27786633,-0.3610077,-0.18607174,-0.19297172,0.1284752,0.45362607,0.610495,0.04864245,0.15545763,0.2769823,-0.058792952,-0.011590183,-0.23019654,-0.058415394,-0.20018728,-0.09094487,0.52011484,0.6316317,-0.12207505,0.46301273,-0.119351506,0.17082077,-0.18540548,-0.49389347,0.5561577,0.83767235,-0.17085738,-0.25950614,0.39196855,0.54778737,-0.18363555,0.29865333,-0.6300978,-0.33478925,0.48966655,-0.26481843,-0.47085467,0.10323114,-0.32269213,0.10965657,-0.7977278,0.36368647,-0.18643247,-0.58342093,-0.6871703,-0.25577018,-3.259529,0.023987412,-0.31374684,-0.25417018,0.023564536,-0.27652758,0.17305705,-0.5309339,-0.38402367,0.08325817,0.050021354,0.6633498,-0.0040908097,0.13987158,-0.2918956,-0.03940344,-0.35466197,0.112669155,0.14029923,0.37631854,0.030039867,-0.39729518,0.1614535,-0.15829378,-0.42727196,0.025641706,-0.4440642,-0.4805942,-0.15908685,-0.23458046,-0.40621606,0.65179926,-0.32190514,0.04386383,-0.24081166,-0.1461096,-0.13765262,0.4457305,0.22595392,0.08599326,-0.004676521,-0.0771711,-0.028989526,-0.3165387,0.23893422,0.011789187,0.20894319,0.54492354,-0.22942571,0.14130385,0.4230131,0.48975465,-0.076386675,0.7316662,0.48560145,-0.044234242,0.20380135,-0.26408392,-0.18073197,-0.64918226,-0.37426695,-0.0545639,-0.48547187,-0.58361727,-0.07819388,-0.32558337,-0.80505574,0.54186696,-0.063281216,0.116923064,-0.015626727,0.16998164,0.41483888,-0.036927395,-0.12564065,-0.13557999,-0.03554459,-0.5387475,-0.36771515,-0.69269717,-0.61510235,-0.030421695,1.0009196,-0.14208187,-0.1398577,-0.03140795,-0.25309202,-0.031509086,0.13067691,0.019624868,0.19856699,0.26415247,-0.07590936,-0.721806,0.66985667,-0.034697663,-0.16228475,-0.6562921,0.19011506,0.5416418,-0.63108885,0.33367315,0.38466543,0.029278401,0.035167854,-0.49309048,-0.19334488,-0.2745294,-0.2561911,0.3120526,0.07806769,-0.7435426,0.5082519,0.30047223,-0.21586418,-0.73458153,0.40044844,0.03647737,-0.27992696,0.2266409,0.13567121,0.20648041,0.017212663,-0.24109672,0.3000104,-0.5687655,0.3982579,0.23339829,-0.034204397,0.3785782,-0.2839312,-0.22480701,-0.53836304,-0.049215928,-0.4069783,-0.20860909,0.0866913,0.17566581,0.07491951,0.26114044,-0.016875684,0.3853569,-0.33660635,0.0647498,-0.03234084,-0.041811347,0.19327095,0.45162427,0.47507125,-0.45420474,0.6468984,0.016808415,0.01557157,-0.01547637,0.15498537,0.413863,0.1620706,0.36620057,0.05765698,-0.20042203,0.19809678,0.88356405,0.32460696,0.5325025,0.057168737,-0.3258528,0.4412733,0.1404212,0.29380804,0.011272267,-0.41234916,0.12552454,-0.25639826,0.15454724,0.3953563,0.050034616,0.32083148,-0.1271967,-0.07234049,-0.013256085,0.25209704,-0.12862161,-1.194033,0.3294768,0.2720505,0.7819906,0.56950074,-0.07877552,0.20885108,0.7523382,-0.33568904,0.09380349,0.22094783,0.046847396,-0.56744206,0.5392119,-0.79054433,0.48738256,-0.11577085,-0.046802703,-0.07239187,-0.00054207246,0.2542655,0.652605,-0.071154326,0.05004357,0.016257042,-0.4232982,0.13500647,-0.41400972,0.23941259,-0.42246592,-0.097385615,0.7323881,0.47940972,0.2310385,-0.07429824,-0.019171031,0.05599698,-0.123698264,0.10943165,0.091105126,0.21625344,-0.1499018,-0.6181147,-0.31321412,0.5201036,-0.17729633,0.20917384,0.15058888,-0.20651992,0.24718057,-0.10540571,-0.09150313,-0.023527227,-0.58428663,0.08985664,-0.20725296,-0.24535714,0.44486094,-0.20452811,0.4049326,0.2527541,-0.008624501,-0.2977456,0.16854094,0.11272624,0.5804374,0.06627846,-0.12743677,-0.42576578,0.07654328,0.3202883,-0.22946991,-0.02923565,-0.03952026,-0.059063017,-0.61159605,0.32321683,-0.19453688,-0.29581815,0.23743576,-0.08896984,-0.017009242,0.59933275,-0.023534672,-0.13362718,0.06914622,-0.078112446,-0.2124319,-0.056992058,-0.1407428,0.3050949,0.18780534,-0.08126152,0.008842975,-0.12704615,-0.007151119,0.44540805,-0.00034744342,0.40976092,0.1784912,0.08184651,-0.4712787,-0.18245652,0.04333461,0.5016629,0.03795872,0.04553135,-0.1918773,-0.457852,-0.35274085,0.1349384,-0.16842829,0.23095326,0.12429707,-0.39427534,0.62496454,-0.10911519,1.0291041,0.1964483,-0.31049022,0.31212413,0.45460021,0.1458872,0.108429626,-0.2679056,0.8566535,0.6163212,-0.07697377,-0.22864078,-0.19892809,-0.020748913,0.337894,-0.15934263,-0.24420443,0.068665154,-0.68690723,-0.2672511,0.18166032,0.15898667,0.09213582,-0.08649047,-0.057160676,0.20663957,0.06500676,0.39675325,-0.46103472,-0.18358491,0.40751123,0.22831532,0.050104015,0.13415937,-0.38186333,0.44052476,-0.42229065,0.042309705,-0.2441149,0.18238431,-0.1862999,-0.12202316,0.2774121,0.2452514,0.374443,-0.111753985,-0.37878513,-0.2824474,0.5590025,0.16388471,0.28175536,0.48839238,-0.17679438,0.075386606,-0.024158092,0.32087773,1.120285,-0.30192104,-0.08621569,0.37964574,-0.25171444,-0.5271262,0.473807,-0.25368285,0.13343982,-0.06331598,-0.25565115,-0.44304523,0.25169572,0.21321398,0.13152,0.19196707,-0.61637646,-0.25839314,0.31303388,-0.3404811,-0.24791946,-0.4212871,0.13730086,0.6145528,-0.3522144,-0.14186043,0.06438635,0.2852898,-0.24447638,-0.5420839,-0.0359989,-0.3531661,0.25297585,0.13022149,-0.3112063,-0.052503705,0.11850972,-0.35926333,0.083947055,0.16040659,-0.37149152,0.0596512,-0.34051606,0.067693755,0.9251279,-0.26318437,0.2480044,-0.70174146,-0.42562875,-0.9416148,-0.2606753,0.6060989,0.21442324,0.011534077,-0.6220862,-0.07539024,0.055042446,-0.13303,-0.111107096,-0.56535107,0.51317865,0.11940634,0.1655775,-0.034265127,-0.6768252,0.05517055,0.06654755,-0.17137368,-0.42232376,0.5793353,-0.048793532,0.78966194,0.08508768,0.10730336,0.23776884,-0.42859143,0.101578146,-0.25048333,-0.24261394,-0.67384034,-0.0048799873,59 +130,0.37557033,-0.2135964,-0.3732879,-0.041513562,-0.31169662,0.107008375,-0.15733142,0.40410605,0.21695091,-0.1588178,0.067710616,-0.26071808,0.016491735,0.44545308,-0.13581194,-0.49642292,-0.017470038,0.11059902,-0.5855616,0.5244207,-0.4150767,0.3461282,0.06509595,0.2686486,0.07827323,0.35625952,0.17103313,-0.1738704,-0.017967295,-0.09328982,-0.13945611,0.049150553,-0.53168243,0.18994491,-0.15435986,-0.22128677,0.12761812,-0.40469855,-0.5830422,-0.60406774,0.19856386,-0.71793693,0.5136686,0.064214796,-0.3488526,0.11302234,0.10445004,0.33154646,-0.27958456,0.057803813,0.21874245,0.085910335,0.10189188,-0.21779127,-0.21181574,-0.5224454,-0.5051592,0.05693915,-0.47852176,-0.35831052,-0.26457912,0.11279174,-0.35191888,-0.058103245,0.010786617,0.13747525,-0.49675387,0.013438066,0.19819777,-0.18109736,0.22639862,-0.5148138,0.07117624,-0.11407218,0.06810179,-0.13424876,-0.1970842,0.43829897,0.1493831,0.41755825,-0.07326209,-0.24302842,-0.09116761,-0.1665212,0.06376887,0.61708844,-0.20958687,-0.32073706,-0.10012167,0.11517797,0.2189085,0.14395823,0.009136768,-0.35864893,-0.18421431,-0.005123198,-0.11754228,0.18961151,0.53527826,-0.44448847,-0.24250145,0.33620635,0.42641562,0.23612125,-0.087688215,0.15692613,0.052165486,-0.44109097,-0.23626593,-0.033613794,-0.110499926,0.4751661,-0.06075756,0.2719621,0.7549618,-0.13637035,0.1023588,0.08484035,0.055999923,-0.13218635,-0.114780456,-0.16946128,0.13150303,-0.5267732,0.03182571,-0.04449602,0.76825535,0.22390018,-0.7881206,0.38634312,-0.48696482,0.16971461,-0.16553198,0.578319,0.69995654,0.3091793,0.14726028,0.6937498,-0.44047925,0.17285666,-0.08303892,-0.439398,0.35204214,-0.27354953,-0.15100147,-0.61702883,-0.02949036,0.23040935,-0.12446937,0.09315213,0.33678997,-0.5524261,-0.0063327234,0.13498238,0.9114918,-0.3043217,0.033764653,0.50466734,0.92311406,0.85350525,0.024846362,1.1212462,0.22799867,-0.22005746,0.2687545,-0.3004731,-0.766023,0.23996739,0.53799534,0.062076345,0.33636385,0.103664875,-0.12586696,0.27055177,-0.34284312,0.12686493,-0.2287721,0.21877345,-0.07954669,-0.11732507,-0.52554095,-0.28560045,-0.0821765,0.01826469,-0.089565404,0.29014003,-0.22619681,0.19745414,-0.056818493,1.8222587,0.0034228424,0.14016096,0.07819987,0.61652476,0.2679203,-0.12519571,-0.17046942,0.36364853,0.3256077,0.23250885,-0.5120898,0.06886309,-0.22423156,-0.50181365,-0.04272262,-0.32862714,-0.047961906,-0.08039301,-0.48876274,-0.14729498,0.05201125,-0.31593844,0.44412845,-2.8549845,-0.17363374,-0.05748868,0.25352466,-0.3382414,-0.2531339,-0.08756336,-0.3219894,0.27846605,0.4474456,0.49738273,-0.65076715,0.2150795,0.37544194,-0.46386567,-0.08002806,-0.5405253,-0.12772211,-0.0063905995,0.4479143,0.06478386,-0.046413638,-0.029797189,0.34930566,0.43465722,-0.043694057,0.09585786,0.16748291,0.27576897,0.13795567,0.2716758,0.0016682069,0.33727127,-0.15595356,-0.15570633,0.35875005,-0.22998644,0.27810678,0.10908993,0.1287058,0.29254398,-0.48604187,-0.8108785,-0.5367944,-0.2521597,1.0621936,-0.29730985,-0.32814223,0.3407325,-0.26849803,-0.23134737,-0.07888846,0.39754918,-0.15454279,0.110217534,-0.68013436,0.058890805,-0.046034522,0.18176799,0.07142995,-0.013450649,-0.27714416,0.5914477,-0.024868758,0.4076986,0.271318,0.057780758,-0.059904497,-0.34645244,0.1230354,0.8395378,0.42552254,0.15410942,-0.17983681,-0.17695138,-0.40252686,-0.15185724,0.07135644,0.40096915,0.8911899,-0.055840217,0.13742495,0.21859783,-0.106946446,-0.013041262,-0.06970975,-0.1890988,0.1121083,0.12096496,0.6041111,0.60362077,-0.22318234,0.44647518,-0.040628336,0.3481771,-0.12257694,-0.5899634,0.3736514,0.6897709,-0.080198035,-0.15359528,0.55205977,0.5909742,-0.30732745,0.4870202,-0.7494841,-0.33659998,0.4308076,-0.11059148,-0.4318302,0.37382972,-0.31568706,0.20897178,-0.88361,0.4541002,-0.04804219,-0.5229298,-0.3769077,-0.19194302,-3.206715,0.14976749,-0.20019145,-0.2027152,0.015679032,0.022690065,0.2756644,-0.5978182,-0.4308224,-0.062649295,0.07620303,0.6029625,-0.045575734,0.029637177,-0.15107034,-0.27528256,-0.38800544,0.093438216,0.029625837,0.31833592,-0.15375608,-0.48828572,-0.26351532,-0.28934386,-0.4176676,0.14294863,-0.70727146,-0.59864587,-0.23364411,-0.55601627,-0.09850582,0.7056097,-0.19868854,0.022054084,-0.21095704,-0.062196862,-0.09828078,0.26041257,0.38174045,0.019673228,0.03016566,0.028510321,-0.08043643,-0.37306756,0.27885154,0.10544314,0.49329337,0.39742532,-0.16937906,0.16670053,0.69070274,0.48209146,-0.238455,0.6621404,0.47010294,-0.20179044,0.36713532,-0.2508741,-0.21973367,-0.42235842,-0.4447922,-0.12840714,-0.38097742,-0.42890522,-0.10723033,-0.2598685,-0.68395925,0.52785873,-0.012579981,0.14503919,-0.039783493,0.06354611,0.4260926,-0.2172412,-0.13695082,-0.16409384,-0.18675347,-0.5216265,-0.28129885,-0.6675734,-0.54658335,0.32704675,1.1141158,-0.10889159,-0.039830673,0.04733016,-0.18787451,-0.15622555,-0.11296746,0.042508475,0.2321852,0.16892216,-0.11926762,-0.7452037,0.55065995,-0.03981127,-0.16025782,-0.49619693,0.074691966,0.583803,-0.62989336,0.30849412,0.20745015,0.25371683,0.07033278,-0.4401005,-0.20580424,0.05409984,-0.19703813,0.3762663,0.053163983,-0.71003395,0.3782338,0.3165829,-0.4679736,-0.50596005,0.52941656,-0.0373219,-0.26161784,-0.019405408,0.19570948,0.009809673,0.037946813,-0.17990296,0.33065143,-0.45623472,0.31721878,0.38644272,-0.013626901,0.43084186,-0.122948,-0.22219375,-0.57501763,0.027312227,-0.32663265,-0.40538797,0.24573027,0.15699151,-0.04826433,0.15239494,0.040588688,0.41390198,-0.25851253,0.0804142,-0.04159964,-0.31372565,0.5742391,0.37434572,0.599933,-0.3887609,0.5934571,-0.022907492,-0.03192932,-0.07143901,0.038250543,0.5007962,0.104208805,0.2230145,-0.08125693,-0.088181525,0.2974431,0.8480424,0.20831528,0.3780574,0.018668525,-0.108226135,0.18602315,0.14903836,0.0062239943,0.1613698,-0.47675118,0.07156692,-0.16308528,0.21824746,0.45581543,0.12797844,0.16573104,-0.09246082,-0.39768487,0.16830023,0.15236072,0.025694184,-1.2101874,0.27390102,0.3687705,0.5481983,0.5278442,0.03850937,0.016709214,0.7403246,-0.11714051,0.12712331,0.3004125,-0.10276301,-0.661684,0.5481752,-0.67539823,0.6253321,-0.06722266,-0.04685407,0.08154461,-0.025673095,0.45965356,0.74091756,-0.0910735,0.031869326,-0.026698468,-0.35565552,0.028903794,-0.39761466,0.17342891,-0.5469421,-0.33662874,0.57982534,0.43169373,0.16108608,0.00582968,0.009957645,-0.022662597,-0.14366254,0.39116108,-0.061713155,0.031175153,-0.12526281,-0.69025856,-0.32646745,0.57436043,0.015565348,0.09312453,-0.007546556,-0.09757121,0.25219184,-0.22953469,-0.033521175,-0.11364303,-0.5522897,0.17556486,-0.34361494,-0.3498033,0.5696805,-0.1599981,0.24692036,0.0943848,0.036567144,-0.285219,0.4359184,0.061441563,0.80481213,-0.058703262,-0.35855097,-0.24946244,0.14611825,0.09531123,-0.17303485,-0.1414826,-0.28057817,0.020948308,-0.67525035,0.37719414,-0.07714844,-0.40113556,0.16056685,-0.15709186,0.036709912,0.3876548,0.0364162,-0.29097444,-0.13939327,-0.04194224,-0.20973226,-0.1009484,-0.21566819,0.265986,0.22620104,-0.22692223,-0.057536583,-0.06183479,0.013895933,0.34358698,-0.113215655,0.37215316,0.24119194,0.13095562,-0.28009936,-0.027968628,0.22604793,0.42803898,0.06842181,0.25628737,-0.13516189,-0.27755147,-0.3769808,0.05350594,-0.22974648,0.3510879,0.21409747,-0.31365195,0.8222304,0.073492005,1.3035415,0.0076486627,-0.28752485,0.21792999,0.45949093,0.14081869,-0.019923735,-0.42661223,0.94206387,0.73819906,-0.037198577,-0.27164066,-0.33394396,-0.2262729,0.23680235,-0.24857181,-0.13716917,0.030592393,-0.6665659,-0.30612066,0.2238864,0.29796588,0.21061675,0.019243725,-0.039280057,0.09906553,-0.055337064,0.18648511,-0.42796558,-0.07090727,0.305863,0.1810856,-0.021916438,0.101368956,-0.5540146,0.45279422,-0.6773436,0.10769223,-0.26022956,0.12221162,-0.1329932,-0.42848533,0.191896,0.04571077,0.4703646,-0.33776695,-0.39757365,-0.12514548,0.539261,0.05934252,0.24299124,0.59174985,-0.3121223,0.08501988,-0.08333062,0.36414993,1.0570716,-0.30759144,-0.09230644,0.40784073,-0.36141053,-0.74107134,0.20625407,-0.32326302,0.235652,-0.119684376,-0.3265793,-0.4335082,0.22148976,0.2061327,-0.08132045,-0.12514123,-0.38439122,-0.09845674,0.16741033,-0.2026531,-0.3422135,-0.4490321,0.28759888,0.6700428,-0.29004878,-0.33872518,0.2114021,0.25974998,-0.23620272,-0.60973096,0.04151765,-0.23668191,0.20600182,0.0019112905,-0.30288723,0.019665726,0.0827549,-0.37286466,0.17452136,0.33911392,-0.4569719,0.098720625,-0.3746148,0.016023846,1.0159215,-0.14437841,-0.044267647,-0.80506516,-0.545407,-0.86702603,-0.4904322,0.5971111,0.22093193,0.04043488,-0.5064614,-0.010603666,-0.08641981,-0.014415939,-0.086151734,-0.37739494,0.4171006,0.066650435,0.31819013,-0.18008587,-0.8643821,0.17583853,0.033243444,-0.15254335,-0.670194,0.56550705,-0.113260955,0.7883692,0.17013595,0.043439202,0.33293766,-0.49787024,0.08237477,-0.25816032,-0.18947801,-0.6742688,0.20872869,61 +131,0.4148545,-0.13402742,-0.54694146,-0.22569968,-0.15257087,0.035973713,-0.178461,0.658877,0.2340012,-0.42058846,-0.023821604,-0.034615632,-0.008453162,0.39135602,-0.07643113,-0.68137795,-0.03636203,0.10279051,-0.2999903,0.40346763,-0.46003684,0.31680745,-0.056865755,0.48102006,0.20375668,0.3005389,0.030248333,0.04878049,-0.13763481,-0.13541053,0.16613021,0.22283153,-0.51107997,0.17783524,-0.055490986,-0.32297885,-0.04656483,-0.46058807,-0.27038527,-0.6882914,0.2422604,-0.67799383,0.5323916,0.12261663,-0.34856468,0.076698095,0.1937904,0.44058454,-0.18252043,-0.003548932,0.22951606,0.016686888,-0.03712694,-0.10816501,-0.2429428,-0.43434733,-0.5848694,0.13079017,-0.41073212,-0.18468451,-0.0780832,0.22417209,-0.2734951,0.019237367,-0.2293553,0.50018233,-0.36318198,-0.23426676,0.388607,-0.284221,0.3363443,-0.51237553,-0.08463747,-0.15189809,0.09739961,-0.1685236,-0.23550552,0.24378434,0.2630431,0.54720515,0.04347981,-0.31290835,-0.40185001,0.06109933,0.11959456,0.37005743,-0.2883969,-0.3962072,-0.19663745,-0.044279672,0.104724884,0.18623252,0.16958493,-0.32360637,0.0730337,0.19140495,-0.30287153,0.23955414,0.4541143,-0.33188757,-0.1400191,0.22112055,0.5558032,0.09279861,-0.10582374,0.10724922,0.080421835,-0.5326261,-0.25797865,0.031902943,-0.07425152,0.29975,-0.06696184,0.08108164,0.62602437,-0.14510186,0.04401578,0.066115595,-0.015617386,-0.012403492,-0.50323504,-0.3236789,0.21171592,-0.39145285,0.079245314,-0.26420647,0.78600043,0.19046292,-0.68759924,0.28537762,-0.59326583,0.13455711,-0.16457182,0.4190883,0.6822627,0.3663191,0.10682605,0.8045447,-0.42587292,0.090635434,-0.21063472,-0.2589634,0.21398811,-0.23355238,-0.067198,-0.40807584,0.07199694,0.006774314,-0.19961214,0.07141889,0.33719638,-0.5408774,-0.07198116,0.2114353,0.78655994,-0.2695154,-0.052276805,0.6811354,0.9531718,0.8794568,0.051449142,1.1738802,0.20343095,-0.18293165,0.31551132,-0.3060444,-0.64803535,0.37990707,0.34874874,-0.34987572,0.20489794,0.07375378,0.08944488,0.5020447,-0.35818425,0.13028885,-0.15497014,0.2310352,0.062557146,-0.16727714,-0.40530497,-0.17886448,0.06854816,-0.047092404,0.12300437,0.1946573,-0.23014012,0.23972252,-0.038424063,1.6659015,-0.109807536,0.04926068,0.09196308,0.38555536,0.27249318,-0.29699633,-0.08691704,0.17340733,0.16603222,-0.016641349,-0.5249328,0.1051582,-0.21305564,-0.49647802,-0.24355508,-0.29973856,0.040231194,-0.07110059,-0.46317083,-0.12526362,-0.12033205,-0.20620571,0.35490134,-2.6712415,-0.1719091,-0.032475147,0.21497343,-0.4218156,-0.47604284,-0.1506159,-0.3964912,0.4852899,0.37396345,0.39775798,-0.51956505,0.3340666,0.36129844,-0.4111378,-0.080742225,-0.63576114,-0.077057846,-0.076602526,0.18647505,0.08672233,-0.20657727,-0.1346472,0.15389816,0.51927716,-0.08262748,0.11133957,0.17496958,0.236629,0.026429527,0.5709951,0.0050026313,0.64479893,-0.369105,-0.28570908,0.4171137,-0.4511315,0.11068036,0.13527216,0.13423322,0.20533052,-0.5510494,-0.89151657,-0.67300606,-0.3552651,1.0383744,-0.032330886,-0.3067196,0.34290186,-0.32838544,-0.30927113,0.113109216,0.40322807,-0.120160505,0.020319683,-0.8539082,0.06072558,-0.16094078,0.18132073,-0.06842889,0.004906225,-0.4416045,0.58306754,-0.051340614,0.43690357,0.43234113,0.16994146,-0.26661408,-0.50903326,0.009089251,1.1313999,0.31280577,0.17761102,-0.17909,-0.21751404,-0.42522463,-0.062321123,0.1257467,0.45773113,0.7844954,-0.023605354,0.0028565517,0.2118423,-0.08653786,-0.036609933,0.0053906054,-0.47690922,-0.1261672,0.11812617,0.5719588,0.42274237,-0.16073026,0.42150083,-0.12371229,0.528228,-0.23436533,-0.45142803,0.51282746,0.7257965,-0.2288997,-0.28375185,0.66787493,0.3910564,-0.25018686,0.51880914,-0.5748014,-0.33744267,0.3031748,-0.15684825,-0.4258525,0.14839055,-0.34219116,0.1887899,-1.116729,0.1396776,-0.36476675,-0.29834053,-0.63357717,-0.34344122,-3.42674,0.1698774,-0.10934167,-0.111669466,-0.07988453,0.100156225,0.3635691,-0.55728644,-0.68793267,0.032315355,0.06949189,0.6718871,-0.032554932,0.05669033,-0.35574844,-0.16899493,-0.21129732,0.1833071,0.23147832,0.293611,0.04895379,-0.48718962,-0.20509548,-0.13943958,-0.5023753,0.112392664,-0.6963959,-0.488195,-0.2341068,-0.65040904,-0.2518399,0.7384604,-0.46388504,-0.035744485,-0.07514555,0.09088908,-0.021212898,0.41617328,0.13061275,0.16089767,0.2472602,-0.19305763,-0.043041993,-0.34144947,0.16496871,0.12832996,0.35325563,0.37957734,-0.12002052,0.28192344,0.65593916,0.7362937,-0.1075939,0.7271601,0.6442245,-0.091092564,0.41404018,-0.37658226,-0.20791511,-0.33751997,-0.29716057,-0.042248003,-0.39602864,-0.34125578,0.026023876,-0.3695402,-0.797405,0.5874094,-0.04737512,-0.11550415,0.01578787,0.12455379,0.32600743,-0.26450965,-0.14227404,-0.17834142,-0.081337325,-0.49019766,-0.4227204,-0.4901904,-0.5938548,0.11846992,1.1462299,-0.15769139,0.14168224,-0.0669103,-0.15420817,0.011424263,0.015524489,0.051925067,0.18977779,0.49033305,-0.09064446,-0.5969859,0.31874925,-0.08556002,-0.1844758,-0.49955654,0.286771,0.71178335,-0.6507407,0.6026183,0.24636616,0.25498575,0.015310508,-0.5051448,-0.045895945,0.14280063,-0.19123335,0.52413034,0.21279524,-0.73409873,0.4806232,0.48661882,-0.19585648,-0.7173922,0.35116705,0.0023292662,-0.09375518,-0.22848235,0.36260137,0.0778249,0.031351145,-0.13982083,0.23355907,-0.46156958,0.042554602,0.36207193,-0.06023748,0.51987094,-0.27729163,-0.1558044,-0.69420683,0.07541139,-0.6027455,-0.3779544,0.22145413,0.0033267934,0.060890984,0.27117568,0.10756355,0.38377082,-0.21577808,0.07359593,-0.10358407,-0.21204135,0.388966,0.40464973,0.42711315,-0.5364942,0.43443954,0.032740917,-0.031591695,-0.030843934,-0.09306963,0.6197925,-0.03766087,0.38332638,-0.09036447,-0.024551146,0.26692432,0.7168659,0.11643708,0.3131777,-0.0063527822,-0.22158664,0.027903546,0.08814451,-0.019416343,0.08262139,-0.5544337,0.037732687,0.008505662,0.19638588,0.4716151,0.2044533,0.3610683,-0.015250009,-0.31742173,0.08862107,0.09608089,-0.13637324,-1.2186702,0.50723296,0.12731676,0.7380329,0.5381816,0.09358147,0.16509934,0.54759574,-0.20026693,0.2601014,0.36564636,-0.19507615,-0.44665357,0.44985232,-0.704776,0.42784518,0.0057447064,0.061434448,-0.025447067,-0.08890771,0.6133419,0.8061342,0.0068609994,0.21493095,0.024824237,-0.16626193,0.13107662,-0.32609144,-0.017474007,-0.52280796,-0.21216975,0.7783093,0.37137288,0.32966283,-0.20144172,-0.16095276,0.22925347,-0.05594768,0.12384108,-0.19733232,0.0015315593,0.15654577,-0.54699445,-0.4121624,0.5553462,0.16532545,0.16233319,-0.06419364,-0.22767334,0.22219685,-0.004695344,-0.009464113,-0.09472411,-0.5702635,-0.031998143,-0.49425256,-0.31917003,0.36121902,-0.22301473,0.19544844,-0.0043171686,0.14798927,-0.38057706,0.5585975,0.0093244715,0.8119815,-0.114962436,-0.051714294,-0.31871903,0.25648203,0.18936959,-0.29867104,-0.2527268,-0.4557408,0.051215455,-0.5926673,0.36665574,-0.050016165,-0.41495958,0.11548117,0.09380791,0.044511557,0.5046269,-0.2267652,-0.0024620255,0.21253633,-0.17266487,-0.12112587,-0.21189107,-0.084880725,0.32497156,0.039949782,0.0048181536,-0.07855089,-0.15836082,-0.06497602,0.47331542,-0.10060071,0.31351152,0.45232385,0.07984359,-0.32208014,-0.028944714,0.19342707,0.41644987,0.016734008,0.0027117212,-0.25762656,-0.19712375,-0.3650442,0.20165655,-0.24732502,0.261013,0.14530036,-0.38114056,0.81625944,0.2030339,1.3950683,-0.014466391,-0.3792341,0.072916,0.38420704,-0.052813053,0.047124393,-0.57870966,0.8857718,0.54151696,-0.16509946,-0.07376704,-0.45900685,-0.114966735,0.1306589,-0.25076324,-0.14758635,-0.14157146,-0.73985046,-0.38403437,0.31832898,0.33420917,0.113581374,-0.102843,0.16796225,0.04931992,0.008044219,0.23915964,-0.40036044,0.038989704,0.24343345,0.43895614,0.011223308,0.14479169,-0.55291694,0.37022573,-0.6290896,0.09261338,-0.25149906,0.18318509,-0.09638414,-0.3981134,0.1691027,-0.08386977,0.31160983,-0.30729225,-0.33579686,-0.14685999,0.6102728,0.025894912,0.19635439,0.706843,-0.26086596,0.097947374,0.079857476,0.56301254,0.99656457,-0.21628462,-0.015213559,0.33942568,-0.09482349,-0.6749228,0.23440515,-0.30541566,0.14332566,-0.050411534,-0.40508258,-0.53534406,0.3691602,0.27549848,-0.14071473,0.013166046,-0.50971407,-0.19159333,0.24945755,-0.21733984,-0.33857286,-0.20382999,0.20830801,0.6490822,-0.23456435,-0.38539657,0.2317031,0.3520738,-0.22185971,-0.4016733,-0.11902857,-0.25746787,0.25457686,0.19900016,-0.27869797,-0.08087627,0.11166116,-0.4500981,0.12102308,0.22408298,-0.34790972,0.07228012,-0.23226914,-0.1311486,0.88575447,0.15705656,0.25877327,-0.58607465,-0.46112493,-0.9145735,-0.33558026,0.45418376,0.024214914,0.0062610805,-0.6408141,-0.080848485,-0.1477519,-0.15815446,0.09115179,-0.4581807,0.3848402,0.035434164,0.50557125,-0.1323215,-0.6084611,-0.01693519,0.28618792,-0.12666294,-0.63446915,0.38538736,-0.061534483,1.0020002,0.057617184,0.06786887,0.41278133,-0.52620834,0.0037786365,-0.29464823,-0.1337303,-0.7141778,0.074437335,65 +132,0.3525177,-0.2441336,-0.48671722,-0.04837264,-0.12587814,0.0005936265,-0.18468933,0.56269586,0.22624832,-0.47997445,-0.044181246,-0.075574376,-0.0304617,0.2745201,-0.14478257,-0.32670364,-0.116487026,0.09612672,-0.3726819,0.47130638,-0.40879616,0.32711315,-0.029487459,0.43162,-0.027884746,0.30520192,0.11064283,-0.00939382,-0.0526272,-0.3014988,-0.017330825,0.18550438,-0.52027136,0.24158533,-0.20809168,-0.32250258,-0.11352583,-0.5624888,-0.2502275,-0.6801079,0.27035162,-0.65019,0.51089835,-0.013335927,-0.3535153,0.51748383,0.05207844,0.19023943,-0.13533269,-0.05686548,0.16989699,-0.09478063,0.00702007,-0.23043147,-0.16461903,-0.22095805,-0.53462243,0.14094798,-0.3552171,-0.12678441,-0.22606832,0.17677635,-0.32131213,0.016914463,-0.06285901,0.5213672,-0.38049176,0.016255148,0.0050473986,-0.16244154,0.29384163,-0.47839603,-0.10553773,-0.098383136,0.22074464,-0.19821341,-0.23659874,0.18538012,0.16770318,0.4833232,-0.08703471,-0.1765075,-0.4467354,-0.039637692,-0.020808328,0.6515911,-0.23558024,-0.45343396,-0.026604425,-0.00045763652,0.15314485,0.11456443,0.054677453,-0.28407568,-0.23377761,-0.07162986,-0.27045295,0.3739821,0.5004187,-0.2630348,-0.27082497,0.37402254,0.49748394,0.07659287,-0.20711292,0.0017798861,-0.05454713,-0.44603464,-0.11736416,-0.12390296,-0.100125104,0.33860913,-0.1801592,0.30356905,0.5538526,-0.16785653,-0.127046,0.17351076,0.018758977,0.08551603,-0.22654037,-0.2955417,0.22840041,-0.37298355,0.096053,-0.12533355,0.66265166,0.03448329,-0.887123,0.45226023,-0.42768702,0.09960856,-0.016808918,0.4050174,0.7176024,0.47716826,0.25763565,0.6065126,-0.46293637,0.093253404,-0.0604441,-0.25723147,-0.0005254626,-0.10842376,-0.08331544,-0.43649864,0.05914645,0.14344215,-0.17534767,0.2101733,0.3436066,-0.45276794,-0.06434407,0.24472716,0.7805488,-0.17483447,-0.07673684,0.9013936,0.9906615,1.0719311,0.04690879,0.95293087,0.09578622,-0.14436848,0.15656473,-0.28827813,-0.6674882,0.2626096,0.33344522,0.22989464,0.24911398,0.100163236,0.051978193,0.42300937,-0.31872854,-0.10577682,-0.123867325,0.13831395,0.18056542,-0.15656625,-0.420953,-0.20033596,0.045416158,0.13029666,0.032162417,0.29264227,-0.24142273,0.40558013,0.060256157,1.6310399,-0.029572904,0.068970665,0.16454703,0.54726344,0.23646235,-0.22539042,0.029542888,0.26281795,0.25081405,0.041609026,-0.5383493,0.06474432,-0.035593294,-0.5522452,-0.116965406,-0.3110045,-0.13972554,-0.06438854,-0.44886765,-0.19762586,-0.17158021,-0.38070652,0.39496514,-2.9388504,-0.12176306,-0.0033277492,0.29809648,-0.2122189,-0.4670307,-0.03935578,-0.49514335,0.45365068,0.41868213,0.5012687,-0.660047,0.31353492,0.37193772,-0.44681492,-0.08773377,-0.61384004,-0.07981505,-0.14521307,0.37939993,0.08814227,-0.022888303,0.016734887,0.12085679,0.5144576,-0.01456825,0.017085552,0.20614424,0.37803715,-0.031829942,0.3634927,-0.05111083,0.44204178,-0.26862946,-0.21841595,0.36751625,-0.43888336,0.07705593,-0.17606796,0.16077305,0.2982019,-0.4291802,-0.9134712,-0.6297934,-0.077193975,1.2108915,-0.021034753,-0.37866887,0.33787888,-0.3706223,-0.3955552,-0.11108438,0.37127754,-0.096151404,-0.056898404,-0.7632765,-0.04531374,-0.18028322,0.110236205,0.0017521243,-0.11276755,-0.44047084,0.6483648,-0.06684447,0.48047745,0.42252582,0.11816316,-0.34015554,-0.33208716,0.03804854,0.86380696,0.33476657,0.18820728,-0.21604046,-0.118038006,-0.24302727,-0.08129915,0.13715753,0.4814581,0.47677782,-0.0015136977,0.06423629,0.19586508,-0.074364334,0.015966577,-0.2054433,-0.13121308,-0.14874405,0.053364046,0.588914,0.6823228,-0.1353084,0.4100141,-0.03953463,0.23087423,-0.21952893,-0.38810146,0.43349257,0.9256676,-0.03867478,-0.29926807,0.51645285,0.40188235,-0.20000571,0.40331656,-0.4390824,-0.26008925,0.24574909,-0.23908709,-0.4225741,0.2477452,-0.2444381,0.13566995,-0.7731752,0.20104104,-0.14828543,-0.56835914,-0.620959,-0.25180995,-3.17188,0.12648377,-0.11523536,-0.2831608,-0.12339724,-0.11518066,0.13153768,-0.46291882,-0.48766384,0.17119595,0.080785066,0.60776025,-0.053108033,0.12609854,-0.23613872,-0.30690968,-0.35551882,0.17855969,0.07406951,0.44866064,0.07079646,-0.3864909,-0.1997549,-0.08794702,-0.47197708,0.050202597,-0.4625587,-0.3747991,-0.08559697,-0.3976138,-0.2961052,0.58513474,-0.24988696,0.079749666,-0.17046402,-0.058845863,-0.12090419,0.32701504,0.19813119,0.021844236,0.031645205,-0.052005425,0.26919687,-0.2788051,0.29110956,0.043375604,0.24655409,0.39843366,-0.21754195,0.15410215,0.43124336,0.74728894,-0.1541693,0.8211578,0.43286768,-0.009687594,0.3812451,-0.27986193,-0.2697173,-0.47258633,-0.21243344,0.053488277,-0.3682715,-0.3896879,-0.06547548,-0.36781365,-0.78278834,0.49318543,0.033120938,-0.028751383,-0.027922846,0.4077929,0.47668368,-0.17081502,-0.026102142,-0.020501455,-0.12251624,-0.48410589,-0.3945895,-0.5399725,-0.48815447,-0.02376655,1.0227458,-0.083978005,0.060284223,0.013600274,-0.043161534,-0.06099337,0.091729134,0.07782174,0.1837602,0.27743772,-0.082333736,-0.6689129,0.4663199,-0.07832958,-0.26809806,-0.49550742,0.25873664,0.5980039,-0.42706954,0.43909723,0.22727123,0.12435781,-0.09583893,-0.52590376,-0.038121343,-0.08188841,-0.22841927,0.46647173,0.28868797,-0.8145489,0.55340654,0.34680158,-0.24837612,-0.65266776,0.31036994,0.0014181972,-0.2507379,-0.12342854,0.20743427,0.18974826,-0.032579243,-0.13801078,0.23813473,-0.42781022,0.18707378,0.13387513,-0.06699196,0.39350775,-0.2940984,-0.05172615,-0.6556328,-0.029972918,-0.43327585,-0.30123058,-0.00033837557,0.1772757,0.1683124,0.15042639,-0.1276699,0.45188376,-0.2591647,0.1525937,-0.19412346,-0.19424814,0.28840807,0.34168777,0.45704412,-0.4123923,0.57839787,0.04063863,-0.11753426,-0.070859864,0.029676756,0.48302066,0.029812038,0.26833975,-0.017461991,-0.17348196,0.25322777,0.62528527,0.28804246,0.36840346,-0.13925794,-0.22416976,0.29622442,0.06141629,0.1827297,0.016798638,-0.4841804,-0.0091766035,-0.18331668,0.15274662,0.46304348,0.019674782,0.33394632,-0.21831255,-0.312507,0.12227054,0.22648512,0.023690462,-1.1769584,0.34118113,0.15337975,0.8499882,0.42809227,0.03918883,0.12563802,0.7541654,-0.22406133,0.1273794,0.31184575,-0.028622884,-0.4822646,0.4461899,-0.7569701,0.49900156,0.0065931915,-0.033127174,0.0335783,-0.13011229,0.45143902,0.68032455,-0.107395284,0.042468708,0.047073435,-0.3108019,0.08801663,-0.37583894,0.056215063,-0.44529456,-0.17255244,0.67347693,0.39004248,0.35626984,-0.18278824,0.043247547,0.123330034,0.030400263,0.0028335412,0.018355023,0.08687553,-0.14152892,-0.5150626,-0.07807052,0.5436539,0.045114372,0.20120949,-0.0014835835,-0.23859288,0.3051049,0.01450518,-0.21838512,-0.09234789,-0.54010016,0.095227,-0.19569908,-0.3826913,0.49391755,-0.03473459,0.27649015,0.20461035,0.0841671,-0.20802742,0.28913447,0.20435375,0.75753933,0.037350908,-0.0099349655,-0.31518078,0.21038672,0.1435864,-0.21585824,-0.27659315,-0.24931815,-0.10088495,-0.55020565,0.29521072,-0.06681699,-0.3632229,0.12982264,-0.06755579,0.10376271,0.60475296,-0.048496947,-0.13383794,0.036459718,-0.16887191,-0.19980818,-0.27563617,-0.05194244,0.4375685,0.1926178,-0.124508634,-0.015998082,-0.13884374,-0.19287458,0.48060504,0.017926788,0.4221,0.24811037,0.05973679,-0.36082125,-0.033068195,0.047199264,0.39173558,0.0035874844,-0.06640796,-0.23961583,-0.45886004,-0.3281583,0.18799934,-0.085402995,0.283274,0.07174573,-0.18185572,0.67950344,0.011408852,0.9585617,-0.0023397484,-0.35063592,0.24985479,0.3698829,0.1421096,0.09026659,-0.40493634,0.8981264,0.43290466,-0.09892787,-0.11780499,-0.2729665,-0.006798776,0.107596315,-0.24326004,-0.1590929,0.033960093,-0.69705516,-0.19706208,0.28489247,0.21444088,0.1529497,-0.18698575,0.043506388,0.26292345,0.030123234,0.28384697,-0.37028074,-0.06696983,0.38023096,0.2898717,-0.06128168,-0.016057063,-0.53854877,0.34311572,-0.45160753,0.05238872,-0.27483168,0.13907434,-0.26997843,-0.19719873,0.27233636,0.07886292,0.29668623,-0.23575585,-0.38915756,-0.2292632,0.42003667,0.0048249485,0.1350424,0.3054939,-0.26206544,0.07135752,0.06486796,0.35974553,0.88963825,-0.26317364,-0.031982463,0.3755532,-0.29130232,-0.5565475,0.23992243,-0.22702573,0.19839881,-0.006040419,-0.08499873,-0.47998208,0.24638815,0.23022692,0.13336284,0.056257073,-0.55528176,-0.25259712,0.29464656,-0.4041127,-0.19626738,-0.22141026,-0.024067935,0.7054571,-0.22340089,-0.33672965,0.08557474,0.2568801,-0.23165788,-0.5872931,0.027573442,-0.3394228,0.27709055,0.118469715,-0.2871326,-0.113620475,0.08279478,-0.43867332,0.14349604,0.17974322,-0.36907476,0.017071025,-0.4593598,-0.05143971,0.90422666,-0.13211398,0.33987758,-0.46447575,-0.5085209,-0.8976633,-0.32462355,0.41822654,0.09958723,0.07657436,-0.62735176,-0.1155767,-0.19441031,-0.3047193,-0.017296592,-0.36349782,0.418454,0.16655967,0.25613144,-0.19526742,-0.69701725,0.040620767,0.06915136,-0.172819,-0.53516537,0.43557733,0.18518187,0.76985294,0.09921651,0.08073984,0.3550638,-0.49721658,0.003738316,-0.16963919,-0.25544694,-0.5741257,-0.002411906,67 +133,0.37101525,-0.020502785,-0.53490233,-0.12772962,-0.19635257,0.19145085,-0.24222046,0.43046984,0.22007892,-0.5211383,0.095621854,-0.09279136,-0.0018591901,0.44327742,-0.21956673,-0.57409453,0.12984496,0.07714869,-0.5077654,0.374839,-0.46688405,0.37078342,0.06825744,0.19113144,0.12726085,0.2939148,0.13248697,-0.08424008,-0.2911931,-0.14505889,-0.24223427,0.32906702,-0.3273424,0.1859448,-0.066311926,-0.2954233,-0.03918122,-0.4368561,-0.2236241,-0.61263794,0.011148437,-0.63192403,0.5644658,-0.07801566,-0.3094984,0.19409184,0.31298822,0.20466107,-0.10827555,-0.029888451,0.06432014,-0.21530904,-0.17110255,-0.120772734,-0.4910091,-0.53704673,-0.6739648,0.015768072,-0.54601645,-0.081350654,-0.23227192,0.22715896,-0.27218905,-0.08535776,-0.14582881,0.4651677,-0.3197841,0.12532924,0.20192423,-0.19644101,0.21916516,-0.5344561,-0.17619887,-0.027772542,0.16558048,-0.12104367,-0.28052947,0.25412753,0.6190622,0.44096965,0.031607643,-0.30067146,-0.62494737,-0.123687014,0.08795222,0.6181608,-0.24451208,-0.3136839,-0.18300408,-0.0029710373,0.33861917,0.3229355,0.12372543,-0.35414112,-0.12713844,-0.009748,-0.36800003,0.34185186,0.45683947,-0.46839035,-0.16138329,0.54474235,0.43279603,0.07587768,-0.25297776,0.12227387,-0.019685635,-0.5220006,-0.10172636,0.20691206,-0.070557676,0.55438703,-0.22144032,0.22080907,0.61652756,-0.12760527,-0.17371865,0.17040803,0.12316649,-0.06073342,-0.26896587,-0.14451598,0.10202589,-0.5483913,-0.040035024,-0.13883495,0.69557774,0.0847623,-0.8632221,0.43418396,-0.40737286,0.052926775,-0.04088383,0.3364172,0.720418,0.5740095,0.111060634,0.66946495,-0.43558538,-0.071561255,-0.18544057,-0.3714526,0.1143348,-0.042910475,0.11855466,-0.586607,0.12720187,0.08227228,-0.050309442,0.24363557,0.34175763,-0.46974772,-0.12789336,0.20735715,0.69659084,-0.33677313,-0.3737847,0.6324205,0.9603442,1.1025335,0.05314083,1.182592,0.17826988,-0.049236078,0.085524745,-0.40652484,-0.5097365,0.26064855,0.32505652,-0.50912565,0.37076822,0.05010831,0.07871596,0.43068376,-0.06803021,-0.09995704,-0.08323055,0.30739796,0.11356854,-0.11398151,-0.4568969,-0.37558308,0.013131659,-0.13069186,0.21576768,0.2601601,-0.24647102,0.44532034,0.1600578,1.5404153,-0.019654667,0.113994665,0.06624215,0.26423037,0.2054162,-0.1514713,-0.15495077,0.28994086,0.262015,0.14978312,-0.3277387,0.026139371,-0.20350692,-0.4434911,-0.11730375,-0.36048248,-0.025714926,-0.12634827,-0.4337816,-0.23071574,0.0036389192,-0.4413334,0.5942258,-2.8995295,-0.25515363,-0.15442571,0.27750906,-0.19793753,-0.52264094,-0.20240264,-0.56383353,0.42252558,0.18789044,0.45469007,-0.5415295,0.32724845,0.42295507,-0.40851766,-0.25337446,-0.6599182,-0.03735942,-0.12812334,0.25109702,0.0026408513,-0.07608129,0.023622382,0.18378463,0.5375501,-0.27984795,0.11232253,0.27611586,0.22947647,-0.02280782,0.4456019,-0.17166771,0.748472,-0.23152825,-0.21691494,0.24498695,-0.41848314,0.15895382,0.033627708,0.1984021,0.5464944,-0.33694676,-0.7530088,-0.62369156,-0.11890601,1.1328568,-0.23306488,-0.2671951,0.18527764,-0.24177796,-0.48510754,-0.064457946,0.3125524,-0.04506635,-0.05474937,-0.677344,-0.023535881,0.003982139,0.18033287,-0.16293465,0.013272727,-0.36210912,0.41716304,-0.06489244,0.4829685,0.41083214,0.20826094,-0.5176671,-0.40635172,-0.07442415,0.99060017,0.3916977,0.16421178,-0.22344695,-0.32378775,-0.31276506,-0.16204032,0.14953035,0.444269,0.5294551,-0.078459285,0.10764739,0.29240605,-0.032393508,0.037871905,-0.05912765,-0.24559921,-0.0138778025,0.16605493,0.45994645,0.51530796,-0.09601132,0.5125638,-0.12588574,0.2576236,-0.17366512,-0.54874665,0.47919783,0.9066271,-0.2899925,-0.4054604,0.73279977,0.26366073,-0.10846696,0.3908771,-0.45753238,-0.39204082,0.48398897,-0.22297613,-0.21597055,0.15058216,-0.2888983,0.1032096,-0.74528867,0.26806882,-0.17879131,-0.5517472,-0.33183414,-0.09523948,-3.505874,0.108418174,-0.113248155,-0.15428872,0.2001573,-0.14407247,0.25119895,-0.59907424,-0.4775446,0.17634328,0.18619499,0.61320883,-0.16382718,0.041461643,-0.19359586,-0.38958377,-0.26168102,0.23507933,0.011726729,0.36917722,0.027619096,-0.42564967,0.15202549,-0.25569004,-0.45693868,0.1510757,-0.69989944,-0.3474315,-0.14291443,-0.54055864,-0.45431468,0.7885024,-0.63324076,0.13922663,-0.24989511,0.071798034,0.00949926,0.30342808,0.012706162,0.17116866,0.05569329,0.08228385,0.07964326,-0.31877998,0.27503204,0.11553987,0.30497694,0.5881454,0.018078387,0.28267306,0.67343545,0.7056348,-0.03924467,0.83703077,0.41772595,-0.05901664,0.33819112,-0.29946545,-0.20150803,-0.4467165,-0.42995775,-0.044379424,-0.48993176,-0.32118353,-0.119752556,-0.25547704,-0.7330392,0.5232109,0.09117285,0.09874077,-0.16596128,0.25172073,0.40917575,-0.39073002,0.018365623,-0.09494252,-0.2202959,-0.35365131,-0.41756856,-0.65145326,-0.5155628,0.20488568,1.0248497,-0.23592159,0.07375622,0.040126063,-0.19985208,-0.07614001,0.20078899,0.11040783,0.24030592,0.3591185,-0.16615216,-0.59736484,0.2826333,-0.35303545,-0.15206917,-0.43883163,0.2880987,0.746899,-0.56042176,0.4834439,0.4200212,0.13849871,-0.31913197,-0.58677316,-0.24692927,-0.10800593,-0.32254475,0.523553,0.2294775,-0.84631604,0.47160968,0.369216,-0.37150756,-0.6626944,0.48108637,-0.057865195,-0.009409499,-0.07900108,0.37102494,0.23089613,0.07902112,-0.055816993,-0.003631417,-0.43482095,0.21609841,0.34962183,0.117748566,0.4374865,-0.2927449,-0.022709083,-0.7918611,-0.18524386,-0.30999464,-0.37119916,0.11350589,0.050327387,0.12082853,0.12498644,-0.1201427,0.31912547,-0.4175046,0.12079332,-0.09787287,-0.14622097,0.24632482,0.3994648,0.38757032,-0.24961041,0.57511646,0.023573864,0.04402118,-0.19601555,-0.0739693,0.5575567,0.18803024,0.28838715,-0.044987068,-0.27442577,0.29666469,0.5933163,0.13449948,0.22577305,0.14381342,-0.22296324,-0.06327006,0.034142174,0.2082071,0.12743346,-0.4153751,-0.12413774,-0.42266467,0.23042104,0.6455967,0.07693785,0.3144273,-0.09955765,-0.15646024,0.07206986,-0.020427385,0.0010577679,-1.313824,0.33596584,0.18124256,0.63746995,0.30610168,0.13244794,-0.06791653,0.64164263,-0.26458794,0.23251304,0.33343887,-0.11986225,-0.37698954,0.61250556,-0.8367987,0.44029772,-0.0052164514,0.05876945,0.013764886,0.041449904,0.3892681,1.0180379,-0.20537402,0.13383992,0.088266484,-0.38020712,0.17528082,-0.2882429,0.14047973,-0.4679154,-0.3592697,0.6826267,0.34082603,0.5397338,-0.115410954,0.0016006768,0.19195685,-0.20817299,0.12613282,-0.048632864,0.19260646,-0.19730534,-0.46968573,-0.18382506,0.5854216,0.1643975,0.2413936,0.19609271,-0.18682735,0.2818841,-0.19777413,0.0063765724,-0.08601473,-0.556836,-0.22716025,-0.24897034,-0.49515,0.35869014,-0.34348235,0.24097878,0.14256062,0.067352965,-0.23916815,0.5813853,0.3658851,0.7196676,-0.0898498,0.008073028,-0.15420333,0.16565183,0.18330942,-0.12883736,0.06143191,-0.39256462,0.007995278,-0.67407924,0.28132325,-0.12664035,-0.3036685,-0.05316545,-0.025504239,0.18929379,0.5287067,-0.19310325,-0.08187963,-0.009749196,-0.039114773,-0.31590697,-0.28386408,-0.07618405,0.24393658,0.15764324,-0.1096319,-0.086535245,-0.24687372,-0.1768262,0.059061933,0.052420378,0.23376893,0.26026058,0.13707513,-0.30734506,0.024970882,0.0853324,0.44472015,0.15450332,-0.16687225,-0.31821305,-0.23729691,-0.2805276,0.11583209,-0.105753325,0.28086412,0.005523029,-0.26588506,0.8238961,-0.21349144,1.283669,0.17319778,-0.48001805,-0.04830326,0.33723906,0.030435944,0.0813862,-0.20666392,0.9373702,0.5304961,-0.06899156,-0.025022693,-0.4480168,-0.11082913,0.21510509,-0.2207699,-0.21863437,0.034068756,-0.47437117,-0.26748174,0.21324149,-0.14652608,0.24866576,-0.12315379,0.022946903,0.31448337,0.122245386,0.4137994,-0.34366494,0.18144748,0.24285768,0.47488517,0.03479262,0.19118303,-0.47460416,0.4030538,-0.53042525,0.19389854,-0.24511118,0.24566428,-0.19973667,-0.17030858,0.28029355,0.051830392,0.2651776,-0.13907741,-0.40560332,-0.10111,0.6066002,0.039897513,0.10088525,0.83124375,-0.2112008,-0.0022537052,0.003049906,0.37312567,1.0060279,-0.33484256,-0.035449743,0.5453358,-0.24431856,-0.79363257,0.30643,-0.3836401,0.18816288,0.010983435,-0.27543196,-0.24148543,0.26960385,0.2631968,0.19330734,0.09790695,-0.34174284,-0.00020588239,0.23566955,-0.36199084,-0.22376095,-0.24900647,0.1211439,0.46792772,-0.36588493,-0.45637926,0.09061416,0.2317604,-0.13456567,-0.4665785,0.056119807,-0.25242862,0.23179425,0.22292253,-0.28208816,-0.0044079623,0.005695047,-0.3112373,0.02669816,0.17307287,-0.29881114,0.13968942,-0.31476307,-0.114739574,0.78886604,-0.1034111,0.18230683,-0.6224495,-0.55255467,-0.7741305,-0.2707066,0.20105648,0.08289316,-0.09913068,-0.5668132,-0.08780031,-0.10456062,-0.16757737,0.0025968591,-0.5149179,0.4851952,0.13469668,0.2344274,-0.07932099,-0.78191227,-0.048950814,0.19423176,0.02669354,-0.5329076,0.46740702,-0.2081274,0.9253798,0.20052518,0.10671527,0.33410168,-0.44967607,0.28893146,-0.24823596,-0.17636825,-0.55781925,-0.06939951,73 +134,0.47032753,-0.11759587,-0.57269514,-0.16626048,-0.35103017,0.06914552,-0.34301487,0.42992598,0.25647262,-0.46065274,-0.1484929,0.0017737865,-0.13151376,0.20699674,-0.20636441,-0.60537905,0.13386698,0.08299481,-0.61332107,0.72813183,-0.37246037,0.19727112,-0.06462465,0.42073718,0.098831706,0.18318614,0.26082507,0.023598926,0.12420856,-0.24669962,-0.012757829,0.07360046,-0.72270405,0.32239208,-0.35589364,-0.35260364,-0.10819815,-0.33771357,-0.31788152,-0.7049483,0.21603225,-0.5838982,0.5882387,0.08145067,-0.27695018,0.09243536,0.24346028,0.31113365,-0.41042617,-0.018357148,0.09406796,-0.026489075,-0.12444636,-0.2736182,-0.13100712,-0.4569835,-0.50173366,-0.0448843,-0.50068897,0.056807358,-0.4021552,0.26027068,-0.22349499,-0.09795867,-0.1751114,0.52557296,-0.44184512,0.18643656,0.10517391,-0.096113734,0.057896256,-0.7378671,-0.22085108,-0.20033558,0.2316355,-0.10026766,-0.30530894,0.34878984,0.041158922,0.41372254,0.012294718,-0.07771217,-0.37487024,-0.3991123,0.17857529,0.42559353,-0.15853916,-0.5533308,-0.08397651,-0.052137297,0.21176347,0.13591178,0.13548476,-0.2661928,0.015975513,-0.16718082,-0.24438709,0.563258,0.5655062,-0.3596734,-0.1770044,0.24725412,0.48525846,0.32655638,-0.17039016,-0.09178796,-0.1090611,-0.59218925,-0.31124544,0.027233744,-0.093971364,0.32257804,-0.10636543,0.29420766,0.4737803,-0.09665442,-0.091587394,0.23659006,-0.0030478477,0.15572308,-0.38553852,-0.36471623,0.31145033,-0.55091196,0.2355226,-0.31736055,0.5645647,0.026016312,-0.62782836,0.21640517,-0.5043663,0.094341345,0.08689353,0.40386,0.7157926,0.4273767,0.17378362,0.7786182,-0.21343355,-0.00061590475,-0.21998374,-0.12182077,-0.07711004,-0.003811717,-0.038778786,-0.4074177,0.19560575,-0.06617406,0.14863151,0.11808852,0.37486362,-0.444583,-0.19156332,0.14298931,0.7470562,-0.26545674,-0.0010873239,0.8084499,0.9738311,1.1126431,0.054046493,1.2195374,0.038644634,-0.22002539,-0.059042357,-0.041626748,-0.8518439,0.36262342,0.36375803,0.35136503,0.2508294,0.008696007,-0.090275005,0.34934866,-0.31287327,-0.13371976,-0.15486422,0.4290643,0.23298086,-0.12525497,-0.21815684,-0.32275078,-0.010977086,-0.11337146,0.1434111,0.25123367,-0.27523857,0.3344243,0.10782306,1.0979589,0.02131889,0.056557003,0.21428987,0.48072115,0.3519964,-0.025341064,-0.018755633,0.28335017,0.2803536,0.04131906,-0.6809255,0.10319196,-0.31985363,-0.5317377,-0.04453039,-0.41327018,-0.25740576,-0.09489851,-0.34437522,-0.22957897,-0.21519779,-0.047816213,0.4183674,-2.8018198,-0.20988266,-0.17306252,0.31692448,-0.1712756,-0.3029155,-0.20513152,-0.43288803,0.5900978,0.25274435,0.5342814,-0.31440872,0.40941325,0.49007398,-0.5458622,-0.1347917,-0.5999386,-0.13432546,0.031170337,0.4266582,7.398128e-05,-0.1455871,-0.07406274,0.22577928,0.58451754,-0.034796905,0.16714223,0.37645873,0.432682,-0.23071738,0.39986452,-0.03409246,0.45639712,-0.6054117,-0.16549262,0.28420264,-0.43801197,0.2887702,-0.1497085,0.01077347,0.61483514,-0.5680276,-0.8457795,-0.5420069,-0.00080729724,1.0536932,-0.21882465,-0.40719312,0.08348677,-0.47969347,-0.12556864,-0.124772385,0.46178803,0.026565393,0.01845913,-0.6377118,0.047680475,-0.1996112,0.28332248,-0.081941985,0.033147935,-0.49900427,0.7476699,-0.0782931,0.63060844,0.30214435,0.2952349,-0.4472414,-0.3485332,0.031956445,0.7370061,0.45184496,0.14847656,-0.24089012,-0.18043388,-0.2846693,-0.050337695,0.119263284,0.8917416,0.44404334,-0.060512803,0.14277267,0.228763,-0.001409785,0.14928064,-0.22172089,-0.20852539,-0.3630846,0.17461203,0.63329494,0.5986417,-0.15433922,0.16457735,0.08367648,0.24636817,-0.39350426,-0.34409297,0.4084821,0.99844784,-0.21232605,-0.35511974,0.6715939,0.54885864,-0.14715488,0.53312343,-0.6200651,-0.5118838,0.4912363,-0.12893362,-0.3795826,-0.0015791734,-0.40573707,0.06618095,-0.6930554,0.20409097,-0.59559476,-0.43524882,-0.64038813,-0.30578184,-2.4594946,0.26472872,-0.1897954,0.0037021567,-0.40091822,-0.32682723,0.100869745,-0.44993055,-0.58797896,0.21618152,0.08146208,0.717368,-0.19470246,0.14373024,-0.18496756,-0.45889047,-0.287761,0.18404497,0.25008506,0.34111196,0.0214758,-0.3006337,-0.058113057,0.0073777926,-0.3662817,0.0040410715,-0.41922003,-0.22647327,0.0038877726,-0.29527912,-0.07453026,0.5799888,-0.47867188,0.035097864,-0.22302924,-0.018230239,0.027912999,0.37508658,0.12335418,0.20807685,0.07268949,-0.15630819,0.012740948,-0.34376985,0.35380352,0.05610586,0.30279976,0.39495197,-0.21512724,0.10889213,0.36003366,0.64643747,-0.064465605,0.8004373,0.25604874,-0.098231696,0.5143186,-0.21163663,-0.4527523,-0.47641706,-0.19085261,0.112304725,-0.31858426,-0.38444236,0.009789085,-0.34307638,-0.71705663,0.4170315,0.06925653,0.07917735,-0.045538757,0.29619554,0.30270308,-0.17657185,-0.086386666,0.011287731,-0.098066375,-0.42286852,-0.32788676,-0.574644,-0.35645962,0.022143293,0.9581274,-0.20939814,-0.095300816,0.18296562,-0.13379021,0.047285784,0.34467107,0.027908,0.1926686,0.39044672,0.029015625,-0.52659696,0.53705883,-0.05538301,-0.31249923,-0.34795657,0.2924729,0.5673451,-0.5266803,0.48236644,0.38951525,0.11150352,-0.24738048,-0.66658485,-0.12611103,0.01957554,-0.25407222,0.3736413,0.2680434,-0.76274234,0.40465507,0.22903304,-0.1661752,-0.7545224,0.70124525,0.07136181,-0.31777808,-0.13259946,0.41680428,0.17863826,0.050352715,-0.12233973,0.25792065,-0.23577635,0.30403158,0.053218234,-0.069387235,0.14929408,-0.27104214,-0.25133058,-0.60694766,-0.017785458,-0.5482121,-0.34992653,0.37413007,0.007933792,0.01524488,0.14996545,0.07689378,0.3969289,-0.3665856,0.1157667,-0.28187543,-0.25741005,0.45053875,0.42226207,0.4914194,-0.41334736,0.64121765,0.05413951,-0.07422759,0.15748866,0.22123092,0.39774257,-0.13839394,0.63306075,-0.11824322,-0.06402684,0.13747868,0.6264323,0.23853374,0.16001874,0.041746773,-0.113556825,0.2475552,0.106067374,0.19982399,0.02801447,-0.4177756,-0.0127549255,-0.15397245,0.081884526,0.5016016,0.13230027,0.1805528,0.053756755,-0.03875002,-0.084695734,0.26283187,-0.13371538,-1.3903751,0.39170313,0.10029721,1.0099186,0.56479293,-0.036515824,-0.014037562,0.6834316,-0.019528683,-0.028218377,0.3341003,0.21364945,-0.24607235,0.45966613,-0.44958833,0.6331951,-0.16073847,0.048515785,-0.038441956,-0.043214306,0.38481387,0.85548997,-0.14569113,0.065316826,0.066126265,-0.30497786,0.2516925,-0.29516697,0.089687854,-0.38697988,-0.18139505,0.7414938,0.42170206,0.31114367,-0.21641919,0.044716205,0.06414331,-0.21065022,0.2502381,0.020653328,0.055207912,-0.104867786,-0.5591406,-0.12266689,0.4957905,-0.20573838,0.11230745,0.18099381,-0.16676189,0.2165263,-0.00011035601,0.08856638,-0.036743045,-0.62309843,0.046413645,-0.33691564,-0.15544036,0.37639138,-0.17664398,0.15165757,0.34362364,0.054147758,-0.24109888,0.35289803,-0.08895278,0.55015314,-0.026088795,0.026137726,-0.35249218,0.19666405,0.15487382,-0.18749984,0.12912875,-0.32118708,0.15384087,-0.7376384,0.37144566,0.0276516,-0.28414065,0.20934907,-0.056523934,-0.11116209,0.49689344,-0.07706961,-0.14176542,0.13479455,-0.09471583,-0.050067488,-0.26269656,-0.20657307,0.30509087,-0.020374736,0.1512492,-0.15877667,-0.10934635,-0.009309506,0.46668965,0.05060047,0.33284786,0.26962525,0.24523564,-0.4795088,0.10142108,0.097484805,0.61033314,0.025200808,-0.0006962299,-0.1519408,-0.5752188,-0.33535424,0.4431416,-0.19832392,0.2207735,0.19916992,-0.30758688,0.61170477,-0.046120394,1.0997175,-0.033510935,-0.43646497,0.09662148,0.63398486,-0.10888188,-0.051227402,-0.29981214,0.830408,0.427623,-0.12346018,-0.06363125,-0.21761416,0.033484712,-0.09541022,-0.3787385,-0.070162416,-0.06746515,-0.4040101,-0.19083674,0.06850844,0.0733263,0.11073809,-0.20723362,-0.18129879,0.244046,0.034885343,0.28692225,-0.5751064,-0.059766483,0.35271823,0.19664939,-0.044890147,0.08616907,-0.39815503,0.3308784,-0.6390615,0.04256626,-0.34787673,0.18297146,-0.29164925,-0.3415774,0.2602678,-0.048703022,0.26886457,-0.4144469,-0.39629364,-0.13542674,0.29340822,0.2190753,0.22788954,0.5499076,-0.20335627,-0.06846772,-0.052416228,0.5407275,0.80831605,-0.23977186,-0.1599371,0.22408561,-0.49737218,-0.5423208,0.0828121,-0.6073325,0.11463143,0.059098322,-0.14598729,-0.3970775,0.2945069,0.10911963,0.17848821,-0.055442892,-0.94369143,-0.28123638,0.26084295,-0.25195062,-0.18111339,-0.36530113,0.13583857,0.65505636,-0.23580487,-0.13615227,0.06759439,0.17642514,-0.14385012,-0.76546645,0.17345232,-0.43087548,0.36821467,0.21930571,-0.20509349,-0.16719942,-0.027606042,-0.58043534,0.16920887,0.1726778,-0.20121646,-0.02527628,-0.37018442,-0.022496456,0.7529263,-0.13048616,0.26116276,-0.23134686,-0.48646373,-0.8432947,-0.14151031,0.18910207,0.14518146,0.03898566,-0.70153433,-0.17388992,-0.10938809,-0.19926517,-0.051889036,-0.33207455,0.4166763,0.15805082,0.43184206,-0.10471546,-0.91560054,0.25713524,0.15103267,-0.21823867,-0.3913039,0.33319083,-0.034160785,0.7645814,0.18198211,-0.027785324,0.16900612,-0.7660204,0.12075761,-0.21486963,0.043703537,-0.5334193,0.17810939,77 +135,0.37189656,-0.036523532,-0.37717,-0.11445549,-0.15798381,0.22181176,-0.1258109,0.4033675,0.17264992,-0.30715314,0.0051971017,-0.05515442,-0.09521823,0.14846016,-0.06330712,-0.5789751,-0.055605005,-0.042321514,-0.35184753,0.47701535,-0.43084088,0.23838589,-0.26035193,0.28725937,-0.019834237,0.39640254,0.026089685,-0.054539,0.16400932,-0.0830456,-0.060090985,0.24181078,-0.40838608,0.27561292,-0.080734245,-0.09726562,0.09043495,-0.18129008,-0.31919172,-0.5176227,0.10364623,-0.6213406,0.4181438,0.0956831,-0.35812524,0.25541946,0.1274902,0.25369632,-0.2608705,0.10791136,-0.008650061,-0.014743058,-0.03601098,-0.21313287,-0.18563172,-0.6243211,-0.4400659,-0.025741922,-0.5232773,-0.1178887,-0.061683852,0.087701365,-0.16820237,-0.16155934,0.069616236,0.25316572,-0.4016843,0.11762188,0.27668953,-0.14278024,0.25955048,-0.5922006,0.03796668,-0.043771632,0.3048557,-0.05550553,-0.24297015,0.13969775,0.27953294,0.3800802,0.009165705,-0.14837855,-0.19415717,-0.23612073,0.19846849,0.3648814,-0.18237111,-0.31337687,-0.23373483,-0.05753108,0.02821186,0.38043112,-0.00402536,-0.2681999,-0.051143624,0.02685775,-0.07894714,0.2763032,0.41865477,-0.49289075,-0.347643,0.44640863,0.69932574,0.20560281,-0.110269055,-0.014132389,0.07042198,-0.41888908,-0.19098005,0.17290238,-0.069314815,0.3296874,-0.084900066,0.016830083,0.47593355,-0.24535123,0.08650472,-0.04550048,-0.05174845,-0.061012726,-0.44513923,-0.027263395,0.15416436,-0.4983031,0.09342659,-0.0534399,0.53264815,0.1126962,-0.5101927,0.22828466,-0.4558429,0.050219517,0.0051175593,0.47126848,0.71693027,0.36598718,0.029711245,0.8179493,-0.4024881,0.038573228,-0.27864262,-0.1119627,0.22866504,-0.13464294,-0.13856669,-0.50953496,0.21436208,0.19597705,0.032575678,0.07992547,0.1446118,-0.5705731,-0.10715068,0.28687662,0.6623438,-0.2894867,-0.08418026,0.506309,1.0956721,0.71309626,0.06894563,1.0811081,0.12924543,-0.1749486,0.24442454,-0.30668432,-0.6271551,0.13874987,0.32814917,0.11739953,0.28516787,0.1052214,0.036736917,0.2860632,-0.32278374,0.00993704,-0.09426441,0.4402111,0.16088845,0.0041090646,-0.28994936,-0.097746536,0.011478512,-0.07524475,0.2869296,0.1630295,-0.2952774,0.03650588,0.110107966,1.2686327,-0.17371848,0.29440174,0.11113507,0.28942245,0.29234067,-0.2275169,-0.017260032,0.47051606,0.21440691,0.17985101,-0.4981434,0.115830675,-0.15278696,-0.4774628,-0.18823105,-0.31553376,-0.079638295,0.002878221,-0.29098886,-0.09534,-0.027521668,-0.29559505,0.6439477,-3.0892668,-0.08853113,-0.26432207,0.2492533,-0.2917328,-0.2416375,-0.3063203,-0.31643328,0.36448574,0.41592205,0.31759357,-0.47265258,0.17896405,0.3876996,-0.48750558,-0.12762624,-0.49797752,0.010317111,-0.11456498,0.36585847,0.046369378,-0.123103715,-0.037834737,0.22396253,0.4119462,-0.0060552596,0.16150858,0.2045878,0.27371547,-0.08427843,0.35405844,-0.017570699,0.49296686,-0.21615893,-0.20534793,0.27643546,-0.38144016,0.39186576,-0.0141905835,0.1800388,0.3353657,-0.35239246,-0.8194996,-0.66424334,-0.26375613,1.174092,-0.24902073,-0.40508243,0.24272594,-0.48447368,-0.3177314,-0.12475642,0.47872868,-0.013562481,-0.05516074,-0.6920697,0.2154359,-0.13220273,0.23738521,0.0076972665,-0.002324291,-0.3868011,0.6141908,-0.059599835,0.43270662,0.2686061,0.09831098,-0.18330346,-0.3937231,-0.048552345,0.8094457,0.4621454,0.032286774,-0.034388937,-0.21530621,-0.31090742,-0.029310448,0.20669915,0.46427652,0.59355944,-0.07531044,0.07860977,0.21928644,-0.05012404,0.010185978,0.017872978,-0.21237797,-0.021028044,-0.051034555,0.598133,0.45399335,-0.19409929,0.2906465,-0.015852682,0.2177913,-0.24710867,-0.37677887,0.38395512,0.6367837,-0.20817754,-0.28447494,0.63402635,0.60215265,-0.17543408,0.29917446,-0.64825875,-0.21651742,0.3743245,-0.19613673,-0.32980317,0.07094383,-0.39167064,0.14062938,-0.70311075,0.2627016,-0.23518422,-0.4648637,-0.6369006,-0.24417813,-3.407092,0.14256497,-0.12418004,-0.083448984,-0.12723194,-0.018279335,0.44505933,-0.44176447,-0.42903718,0.2652916,0.025170539,0.52013665,-0.060323477,-0.032674875,-0.3467463,-0.28915274,-0.29336175,0.24244298,0.06566818,0.27142948,-0.09421737,-0.3003965,0.018260878,-0.016225075,-0.3051292,0.05980305,-0.4315646,-0.34337774,-0.12438424,-0.43967783,-0.038359635,0.7462973,-0.44676015,-0.002818356,-0.29581815,0.04055241,-0.012047456,0.18452969,0.13780592,-0.012778512,0.14693485,-0.02543525,-0.11904286,-0.40567076,0.32438692,0.14360356,0.22251335,0.3687048,-0.08756472,0.0982391,0.48840237,0.51480424,-0.08962444,0.85232806,0.4315106,-0.070174575,0.32076588,-0.24981579,-0.11676253,-0.3136333,-0.39068586,-0.12861498,-0.5124143,-0.48476335,-0.12596984,-0.25803378,-0.66570824,0.4039682,-0.003722304,0.24318549,-0.049656276,0.2945027,0.4506966,-0.22865997,0.06963302,-0.0012874941,-0.17956784,-0.36849442,-0.3286648,-0.40138072,-0.39976114,0.39086908,1.0056177,-0.3793253,0.0059524854,0.066764615,-0.21588595,-0.041677877,0.031156225,0.026972735,0.080257565,0.3416996,0.111924365,-0.41932875,0.41309774,-0.13511075,-0.27651122,-0.72527623,0.14364663,0.5783502,-0.63305324,0.51467925,0.3093342,0.13142772,-0.17241043,-0.48422182,-0.018934933,0.020035572,-0.29807433,0.3736314,0.23704529,-0.8041958,0.39744744,0.13366087,-0.11309963,-0.6246277,0.53204143,-0.10242108,-0.17170177,0.046386838,0.43854168,0.3188285,-0.011320984,-0.06953438,0.30769053,-0.484666,0.13890778,0.2576709,-0.050401963,0.6074726,-0.14453143,-0.18514639,-0.68475187,-0.25827974,-0.54237443,-0.2437764,0.3618893,0.01953658,0.069734015,0.23560013,-0.0032484294,0.42311615,-0.2722211,0.20145722,-0.041261606,-0.27681193,0.33367157,0.3537499,0.48539415,-0.27834496,0.44454306,0.052019987,0.0917841,-0.093615636,0.17734885,0.47968146,-0.09876121,0.4572285,-0.13838322,-0.110994495,0.24862213,0.7800658,0.062333364,0.22929072,0.01583012,-0.13716322,0.25267118,0.012837988,0.05213098,-0.007385417,-0.47180757,-0.022063788,-0.035909668,0.28676564,0.3214442,0.1800819,0.34400335,-0.027361117,-0.1460125,0.03087439,0.27889913,0.07214641,-1.0103801,0.30630353,0.12206628,0.67447007,0.40590763,0.10791885,0.09211705,0.43153623,-0.11384409,0.09516346,0.30421486,-0.011609729,-0.3368097,0.42638636,-0.7373856,0.6026351,-0.07627252,-0.059913658,0.046384733,-0.0091436105,0.5064321,0.9057966,-0.072598316,0.02449559,0.04142149,-0.21281268,0.1578998,-0.18270163,0.05073191,-0.4642772,-0.35554615,0.5532376,0.4343024,0.42863494,-0.2464769,-0.051246595,0.15769069,-0.066617504,0.074845165,-0.17795835,0.028010914,0.038626354,-0.599294,-0.27226707,0.37690338,-0.08705793,0.11219016,0.033567324,-0.23732719,0.1398213,-0.050601084,-0.0077869957,0.025909867,-0.4204392,-0.03592881,-0.17171447,-0.5534181,0.53139764,-0.36876336,0.21598521,0.15186474,0.022758195,-0.19589578,0.359463,0.018927677,0.7403373,-0.04685287,-0.11312071,-0.60931146,0.17241389,0.1335337,-0.2556941,-0.10942985,-0.3672672,0.18366759,-0.6744264,0.2793257,-0.1918518,-0.4249035,0.20765957,-0.25802982,0.06237878,0.49566936,-0.12684679,-0.17748566,-0.03482445,-0.4010093,-0.26288283,-0.14554143,-0.22229512,0.2550949,0.062773,0.050765578,-0.025432596,-0.26142484,-0.12535633,0.087793395,0.2727328,0.22754414,0.29090977,0.07288494,-0.15009204,-0.024210548,0.18950006,0.31732187,-0.16180044,-0.039596137,-0.05416423,-0.5132717,-0.45664874,0.11686865,-0.048567608,0.32901832,0.047803465,-0.27079573,0.5717132,-0.12296891,1.0304745,0.11621283,-0.27303654,-0.023714732,0.43272257,-0.031079466,-0.08165034,-0.305185,0.86345327,0.59128636,-0.07303017,-0.12919159,-0.13271487,-0.15540713,0.24147098,-0.19588709,-0.06327285,-0.034894533,-0.5675584,-0.24012633,0.16128871,0.20694415,0.20892814,-0.06944787,-0.11555693,0.0010278065,0.066167444,0.24253957,-0.45387703,0.006660406,0.3171893,0.34634525,0.028832415,0.19926907,-0.23928724,0.37977654,-0.54581136,0.025596919,-0.33415127,0.1536989,-0.20540968,-0.3044588,0.17604448,-0.12502177,0.39521995,-0.243356,-0.32585227,-0.20270042,0.3884385,0.17416523,0.10086049,0.5146193,-0.09867195,-0.01225971,0.042397548,0.5077364,0.92562383,-0.20427059,-0.062262848,0.21662779,-0.28009433,-0.54633975,0.21006083,-0.5398126,0.2149245,-0.007866081,-0.30804786,-0.222498,0.3324506,0.19796467,0.16936661,-0.08395108,-0.66492075,-0.11711743,-0.013408112,-0.22273152,-0.15944356,-0.123971954,0.18989778,0.77960575,-0.23654342,-0.28943932,0.06456258,0.32558793,-0.277404,-0.5868441,0.07466374,-0.37538254,0.19181521,0.1410443,-0.3022409,-0.03486669,-0.035267066,-0.39600593,0.028230023,-0.012580955,-0.3672376,0.065464936,-0.23819886,0.09444412,0.7266895,-0.07794738,0.25306568,-0.5382383,-0.38474366,-0.7454494,-0.29326248,0.20887747,0.23423281,0.042137288,-0.31792253,0.06451821,-0.15148121,0.03740643,0.021272827,-0.31419277,0.43687165,0.07886098,0.40739813,-0.1258544,-0.83020157,0.07940633,0.15161684,-0.18329641,-0.5383269,0.49410564,-0.18946268,0.77601755,0.102484606,0.011028956,0.27536204,-0.48410815,0.12293291,-0.28373623,-0.082322374,-0.8216193,0.08416775,79 +136,0.5072425,-0.3658976,-0.64852005,-0.08260037,-0.17938274,0.10638401,-0.26505342,0.5282467,0.19672921,-0.5412748,-0.10099265,-0.15182495,0.038702585,0.32294503,-0.19811009,-0.63170344,-0.10893496,0.08492153,-0.580549,0.45099753,-0.309923,0.3166247,0.09317418,0.36938503,0.33117387,0.3547723,0.03419962,-0.047948968,-0.4129705,-0.18412504,0.14297836,0.09317341,-0.524105,0.08416819,-0.18651004,-0.44048604,-0.09627066,-0.47050363,-0.27688026,-0.74570274,0.33804518,-0.8597698,0.44561407,-0.15685914,-0.37152883,0.14114851,0.016171329,0.56887156,-0.0761933,0.005113061,0.20120093,-0.12837164,-0.076891646,-0.12944108,-0.22953619,-0.3438613,-0.5287892,0.07440588,-0.34942982,-0.16113481,-0.039702095,0.09677089,-0.37274265,0.12453647,-0.07869032,0.4972306,-0.45778134,-0.11498766,0.28804848,-0.12645206,0.4156109,-0.5303722,-0.16330287,-0.17434289,0.17309402,-0.23111407,-0.15336984,0.2540749,0.28140843,0.41722926,0.049916252,-0.17497267,-0.42698878,0.01889968,0.2891911,0.43286297,-0.035268977,-0.3943302,-0.28124183,-0.0682253,0.22343014,0.09917943,0.23129956,-0.28578433,-0.061996676,0.0029292663,-0.34218243,0.34257305,0.43563515,-0.1637978,0.028915185,0.2734265,0.6302149,0.19552632,-0.19376603,-0.06673034,0.104940675,-0.42550707,-0.12253844,0.25626022,-0.13966073,0.4565531,-0.15312657,0.22613226,0.61570907,-0.2616186,0.043946497,0.062803246,0.0050840457,-0.17712711,-0.16491827,-0.30539715,0.28603932,-0.5499638,0.05887754,-0.39528206,0.67775697,0.19266771,-0.7178041,0.3240139,-0.5445248,0.08868041,-0.14445254,0.3814167,0.60621136,0.50893605,0.10307939,0.5817019,-0.43889868,0.0961697,-0.19416939,-0.31757122,0.05055189,-0.28303114,-0.024360832,-0.41924506,-0.015501508,-0.105911456,-0.19305891,0.02181549,0.35235834,-0.45294815,-0.068799295,-0.055391867,0.83004284,-0.27155158,0.0035300096,0.81852305,0.85657805,0.99492174,0.002729696,1.1940029,0.22044775,-0.29279646,0.15249316,-0.25841525,-0.59475887,0.4408355,0.2787405,-0.3230506,0.33912227,-0.09580953,0.13189307,0.5379572,-0.23107694,0.25724855,-0.23424838,0.03220507,0.085146815,-0.060841274,-0.37543276,-0.2478166,0.0030176998,0.03566587,0.049274944,0.20333262,-0.104118414,0.5925522,0.024345452,1.7004315,-0.15436932,0.11524057,0.04153878,0.30522472,0.101100355,-0.21489273,-0.1345346,0.03189771,0.19002597,0.08185882,-0.50364536,0.029987983,-0.15992735,-0.3528051,-0.22371219,-0.24825004,-0.0068080346,-0.20548026,-0.60799843,-0.04694934,-0.12728162,-0.2212297,0.31530765,-2.5300505,-0.31862104,-0.11909624,0.18893798,-0.46569103,-0.48763138,-0.118341684,-0.45028698,0.4433661,0.22760111,0.541659,-0.6307556,0.41761893,0.44809732,-0.51566887,-0.034365598,-0.54100484,-0.18932928,0.056384552,0.19998632,-0.006687464,-0.1362482,0.062574275,0.11597844,0.43214694,-0.23390089,0.060483873,0.20451637,0.2747825,0.013688871,0.5273493,0.051202282,0.5826609,-0.45878258,-0.23445514,0.3432954,-0.37711373,0.20617837,0.047183886,0.22837442,0.46717772,-0.48748866,-0.7839264,-0.7171425,-0.26846737,1.1636251,-0.042275675,-0.39760813,0.11870652,-0.31704488,-0.40428898,-0.044585396,0.3062881,0.024914093,0.08620796,-0.93866736,-0.08983936,-0.12900093,0.19630323,0.04752364,0.00090487796,-0.3752718,0.6266844,0.025762754,0.34757006,0.4675547,0.21372901,-0.19539131,-0.44002864,0.085620694,0.92678386,0.36129183,0.29317504,-0.35632852,-0.109264396,-0.5097916,0.07960745,0.08658595,0.37706995,0.64843714,0.016934125,0.010080402,0.1580988,-0.13157605,0.074732274,-0.13297293,-0.32963154,-0.18626592,0.052674692,0.5625979,0.5973806,0.050318763,0.5185701,-0.051495448,0.393227,-0.1611273,-0.5182066,0.558419,0.7914687,-0.21349287,-0.4055391,0.37927178,0.5510982,-0.28593573,0.4382948,-0.52889067,-0.3686674,0.30395275,-0.19168396,-0.55169296,0.33889157,-0.37927967,0.30461305,-1.0326478,0.1149378,-0.552579,-0.2552458,-0.5510197,-0.18441702,-3.0229297,0.23298006,-0.021725496,-0.32729116,-0.026024591,-0.11152277,0.2374796,-0.6217236,-0.7574618,0.10352993,0.0054808045,0.7734733,0.010190391,0.048367795,-0.22121117,-0.16547073,-0.15255155,0.10509269,0.230917,0.23150696,-0.02465625,-0.568146,-0.24205609,-0.28917977,-0.3776792,0.10776583,-0.69405776,-0.62935627,-0.24511696,-0.48171842,-0.38871416,0.5876125,-0.2704954,0.06420842,-0.007467063,0.07954638,-0.046441514,0.40290987,0.052555908,0.121059984,0.18560284,-0.17110136,0.12297765,-0.2362323,0.12446175,0.1808586,0.26019266,0.47233248,-0.21204092,0.3867175,0.5701662,0.9156893,-0.049210824,0.72973025,0.41297728,-0.15995461,0.2924289,-0.3408464,-0.40981787,-0.4608429,-0.14162804,-0.07190568,-0.3680322,-0.44131917,0.026153104,-0.3443286,-0.74268955,0.52595097,0.10163693,-0.11380062,0.065159515,0.12373927,0.4605281,-0.23369725,-0.07900395,-0.055514175,-0.024511179,-0.4519315,-0.39240277,-0.65104324,-0.6398218,-0.03237496,1.1563035,-0.014309003,0.09382558,0.11699698,-0.2889194,0.10044384,0.18484643,-0.038969286,0.023948852,0.3241404,-0.12005364,-0.56504,0.4276744,0.005807789,-0.13130717,-0.5729572,0.19327103,0.77403426,-0.5159824,0.42772827,0.40724862,-0.028913118,-0.18523884,-0.35957125,-0.008884132,-0.0032669762,-0.26468846,0.5098632,0.23671202,-0.5108791,0.27254283,0.3949318,-0.29790413,-0.6362429,0.47160402,0.11339652,-0.119591184,-0.21154395,0.36302418,0.004769639,0.05299944,-0.17480375,0.10173845,-0.41592553,0.09484294,0.40904713,0.012804175,0.24752387,-0.11736871,-0.14587396,-0.6805035,0.06382123,-0.45289657,-0.13568728,0.3312991,-0.034230795,0.22520797,0.16729297,0.17176437,0.2957491,-0.28423545,-0.009079565,-0.14359084,-0.2683855,0.3832021,0.41235092,0.46539465,-0.45790374,0.51111454,0.025450507,-0.00014967124,-0.008454565,0.036271587,0.65481925,0.21011995,0.29557213,0.13239056,-0.20983832,0.15739377,0.80043995,0.20518813,0.54994905,0.13449232,-0.22777349,0.061012696,0.16140166,0.18677801,-0.014951853,-0.48217806,0.03382788,-0.06721687,0.0985853,0.32886824,-0.06285413,0.34567377,-0.11222327,-0.3918541,-0.047521226,0.04083967,-0.07812985,-1.3287574,0.40442112,0.23376976,0.795781,0.42795798,0.023204792,0.14536624,0.586374,-0.13427737,0.25359538,0.3349096,-0.09387233,-0.62036884,0.4981926,-0.6965664,0.4270415,0.088625744,0.005567938,0.033393003,-0.10657228,0.5392724,0.70956075,-0.16201405,0.16997972,0.04538356,-0.3624749,0.025035,-0.36402112,-0.06896618,-0.48690188,-0.1922278,0.6744449,0.4618882,0.40516904,-0.17547435,-0.04048248,0.12965408,0.09710924,0.33864644,0.037518024,0.22781709,-0.0060620625,-0.5522302,-0.299826,0.44972458,0.09458634,0.3039333,-0.052699592,-0.22657588,0.22951807,-0.031130785,-0.09429259,-0.18393464,-0.6252383,0.0030503036,-0.5570484,-0.43227214,0.3161182,-0.059575345,0.28041095,0.12995681,0.111293904,-0.37387472,0.5712767,0.0386081,0.80445653,-0.086553015,-0.12991634,-0.19001588,0.27441072,0.32157248,-0.14941907,-0.10228153,-0.1371922,0.10287048,-0.6148891,0.4243618,-0.08129935,-0.39104816,0.14370935,0.051829856,0.10031017,0.511521,-0.26201195,-0.19392858,0.07529887,0.02296765,-0.24561481,-0.26353434,-0.075750336,0.27401552,0.2775559,0.012820447,-0.15792824,0.023685666,0.111251205,0.46325245,-0.045320194,0.47784868,0.49979815,0.09689527,-0.5323843,-0.1453902,0.23554903,0.4933667,-0.04580524,-0.18898776,-0.51564664,-0.36787456,-0.34952354,0.33569488,-0.07692431,0.2567685,0.12914307,-0.32620937,0.8050592,0.018094389,1.1632748,0.024339434,-0.3522152,0.18102542,0.34620205,-0.062874906,-0.07258192,-0.44222745,0.82058877,0.43523833,-0.2305317,-0.07659613,-0.5125516,-0.09347639,-0.037319183,-0.23107538,-0.06753676,-0.07093623,-0.6810207,-0.30785015,0.31855246,0.27655715,0.12804034,-0.2407692,0.17530337,0.22964579,0.018084597,0.213694,-0.47914132,-0.13609533,0.3392046,0.29544133,-0.00083449285,0.13987722,-0.52216494,0.3059961,-0.56236,0.06628557,-0.18760353,0.15112375,0.01726508,-0.3552036,0.2588197,0.018846836,0.21457966,-0.41557497,-0.3639004,-0.24802637,0.5518507,0.1056536,0.18080588,0.5999668,-0.18246715,0.09551463,0.09970123,0.5109788,0.91012585,-0.21988373,0.11909887,0.45116007,-0.19687265,-0.50608927,0.20873909,-0.26058832,0.38921946,-0.09224919,-0.22911477,-0.72230524,0.3197096,0.31698844,-0.085839584,0.041338906,-0.5472735,-0.08882883,0.352457,-0.41079172,-0.3107459,-0.37579003,0.015040477,0.33413452,-0.14033331,-0.32371446,0.14468527,0.31799105,-0.28077048,-0.08284375,-0.10104526,-0.23613328,0.22028944,0.20515491,-0.305579,-0.056315508,0.108307436,-0.47057608,0.098922096,0.08634936,-0.36736143,0.043305222,-0.29357296,-0.056811117,0.8360203,-0.16109058,0.2437091,-0.4693684,-0.47277963,-0.859556,-0.3131279,0.4635688,0.07360809,-0.045387816,-0.68547523,-0.0056704483,-0.09926948,-0.052879356,0.02515127,-0.41621482,0.48806825,0.06554785,0.37686282,-0.13896161,-0.6035864,0.16607997,0.20110743,-0.18423061,-0.56082326,0.4227293,-0.07680818,0.7561812,0.09220084,0.20187964,0.38098133,-0.45583278,-0.05697068,-0.20336924,-0.18725678,-0.5885179,0.0080142375,81 +137,0.41420874,-0.27974936,-0.5270966,-0.057577275,-0.39171666,0.0985528,-0.19486304,0.39386266,0.19371423,-0.48002625,-0.12322618,-0.1498421,0.036908828,0.30919358,-0.16196588,-0.280924,0.005011479,0.2451422,-0.687914,0.5856785,-0.2772897,0.1338412,0.03213586,0.4471649,0.1377876,0.2320089,0.11696403,-0.06075655,-0.15048355,-0.3925134,-0.28219545,0.11786326,-0.5091048,0.27575547,-0.2954382,-0.29038316,-0.035143804,-0.5463976,-0.34977368,-0.76048213,0.25673437,-0.9300169,0.5110521,-0.11139598,-0.27341336,0.17229366,0.2571739,0.32491493,-0.18672495,-0.12988307,0.1757348,-0.28134286,-0.12255171,-0.22646262,-0.18353829,-0.3374898,-0.47986448,-0.07119228,-0.45987898,-0.16519709,-0.3121072,0.146849,-0.32217818,0.10675765,-0.07690468,0.7236961,-0.36257985,0.391734,0.1698846,-0.16781718,0.20885484,-0.6989729,-0.04209428,-0.1677772,0.31321558,-0.090753086,-0.26568422,0.29440242,0.27194712,0.3731139,0.08016075,-0.14426297,-0.23678498,-0.22623186,0.14441161,0.40530598,-0.05719041,-0.5515172,-0.12642747,0.14911836,0.16574351,0.2414838,0.13665749,-0.27020276,-0.08547364,-0.15128438,-0.19502774,0.5254059,0.48100427,-0.20970216,-0.07711841,0.26361448,0.54570526,0.20948829,-0.14577805,-0.08990657,0.003951609,-0.5492927,-0.28384003,0.004749036,-0.16839574,0.48521087,-0.15336698,0.34923893,0.59215224,-0.19032685,-0.25770792,0.11398783,0.06659472,-0.14821154,-0.2190805,-0.21684858,0.19745229,-0.59369475,0.10110934,-0.12462359,0.7098525,0.10503985,-0.59493434,0.16947842,-0.6007277,0.094177015,-0.03751505,0.42607918,0.6712479,0.56815875,0.2056271,0.6573789,-0.26488116,0.13972493,-0.18614693,-0.37469414,-0.05105962,-0.20024982,-0.09726964,-0.5537936,0.019550836,-0.14172404,0.023969078,0.09489254,0.39593416,-0.4244004,-0.13318844,0.12650457,0.9392621,-0.25814256,-0.07322916,0.90723586,0.95564485,0.93041724,0.010380711,1.0741291,0.07854128,-0.24167165,0.010374213,-0.038443826,-0.69439113,0.37117118,0.38147795,-0.06445358,0.1604147,0.09015458,0.030513462,0.39565527,-0.49016038,-0.15246935,-0.22305141,0.115164265,0.19175181,-0.048464026,-0.42894545,-0.24996354,-0.0062009236,0.110805474,0.18591902,0.20287329,-0.0891911,0.70799994,0.04499708,1.4782046,-0.046760283,0.07704648,0.15270843,0.4093014,0.29379368,-0.1810015,-0.09931063,0.36237755,0.2938122,0.24356559,-0.5418756,0.1760184,-0.1714675,-0.44520998,-0.1986215,-0.31198442,-0.16841976,0.010870429,-0.36407477,-0.2755188,-0.2979592,-0.21778177,0.4416367,-2.6764894,-0.11187867,-0.10043941,0.3473264,-0.23461638,-0.2564901,0.07333433,-0.51076615,0.3733893,0.2366165,0.5199806,-0.5634556,0.36460343,0.43326098,-0.6738115,-0.12562199,-0.53675056,-0.1031287,-0.019928435,0.39985096,-0.07049287,-0.12854756,0.048628107,0.13368014,0.65035325,-0.051136248,0.19330803,0.4121248,0.45282847,-0.057902746,0.6349426,-0.06692327,0.4910401,-0.3376568,-0.19004913,0.24809471,-0.14280699,0.23016204,-0.069787405,0.118954286,0.6081974,-0.51391447,-0.8724981,-0.6959298,0.07572206,1.1889324,-0.31696793,-0.57351816,0.21979348,-0.38769487,-0.28368396,-0.06358978,0.47093016,-0.00127636,0.13276632,-0.6714306,0.08019101,0.005761524,0.2675327,0.018037712,-0.20537163,-0.5020725,0.78870517,-0.07493957,0.49518237,0.35864097,0.18892236,-0.38837475,-0.42196515,0.055517457,0.86305976,0.4285628,0.12466355,-0.20834762,-0.20790055,-0.34878814,-0.099271625,0.07813946,0.67005485,0.49780378,-0.074161485,0.24224962,0.269664,-0.04521371,0.11427932,-0.16806558,-0.20773599,-0.19123513,-0.13315918,0.52626723,0.6278713,-0.0044520735,0.60659343,-0.06312408,0.35278538,-0.1536257,-0.5944075,0.5661116,1.1793141,-0.29148388,-0.39774862,0.59524035,0.45392278,-0.11834066,0.31965357,-0.38514563,-0.4219335,0.51665014,-0.14764246,-0.6969513,0.19229737,-0.18891147,0.099532045,-0.8545329,0.17494407,-0.24774148,-0.6854637,-0.63568443,-0.11098453,-3.0415952,0.29714182,-0.3251955,-0.25824437,-0.3056582,-0.25856435,0.0919319,-0.472747,-0.4796931,0.19035257,0.11151654,0.80422235,-0.18876567,0.25153244,-0.23104115,-0.42100954,-0.26207468,0.07203736,0.1929758,0.26506868,-0.13791515,-0.4897352,-0.079101495,0.010605614,-0.42961273,0.00659058,-0.62900037,-0.31362528,-0.18754965,-0.42704365,-0.3024132,0.634934,-0.1736054,0.038235333,-0.22624503,0.12756103,-0.012824804,0.31674257,0.062283278,0.1542545,0.031854816,-0.05599251,0.11675139,-0.28857034,0.34594,0.01754173,0.28961307,0.17495495,-0.13536507,0.22197765,0.4281296,0.673067,-0.09848591,0.8946384,0.3557745,-0.051335033,0.25058717,-0.01298527,-0.4553166,-0.44845322,-0.13293554,0.11911713,-0.39544335,-0.41141206,0.012760725,-0.32273757,-0.8489985,0.6112314,0.06622154,0.06990971,-0.0065580765,0.342099,0.5887691,-0.38875973,-0.08074211,-0.11278479,-0.21602347,-0.51958853,-0.25735483,-0.59598273,-0.4104384,-0.1252279,1.0774473,-0.23108386,0.085431054,-0.043109704,-0.30394676,0.10816054,0.14022039,0.014452988,0.23401721,0.5182289,-0.18117765,-0.7362034,0.57735676,-0.23205242,-0.2140039,-0.6035227,0.43536958,0.66377485,-0.5731192,0.50176513,0.38952544,0.028106872,-0.34736067,-0.4624492,-0.05401847,-0.14525346,-0.2714283,0.3818237,0.2002335,-0.76276207,0.46954882,0.33183548,-0.19832698,-0.74874383,0.50577784,0.0022541105,-0.3464604,0.048843298,0.31777325,0.19817019,-0.084142014,-0.34921697,0.14347626,-0.353533,0.32995006,-0.041755475,-0.16725962,0.16475032,-0.24980752,-0.23037955,-0.7196614,0.016043102,-0.57029724,-0.2607694,0.3160217,0.10015877,-0.024508577,0.25669882,-0.0031227907,0.37574828,-0.31129602,0.034008123,-0.22737534,-0.22592792,0.33275133,0.4653874,0.44922963,-0.4562841,0.72742844,0.1033491,-0.15784496,0.022618754,0.17286949,0.38181964,0.14783154,0.6288766,-0.010391688,-0.11650387,0.25906983,0.6363865,0.14211649,0.4300732,0.055507865,-0.059926152,0.17453831,0.06094826,0.2894097,0.06658185,-0.7415937,0.030948253,-0.40560997,0.104990646,0.5036578,0.08897953,0.35140228,-0.026618497,-0.3684293,0.002396672,0.079239585,0.023105705,-1.4347513,0.3163578,0.28603584,0.94456404,0.30388457,0.07232679,0.005174885,0.9007786,-0.14821921,0.01673893,0.23103374,0.16541265,-0.29862526,0.5202902,-0.8547982,0.47544768,-0.010586963,-0.09476168,0.05211117,-0.13159695,0.35974684,0.9083798,-0.13435236,0.013691334,-0.020307887,-0.387651,0.19645816,-0.49770486,0.053088687,-0.54291713,-0.40148017,0.6223317,0.4539161,0.3913613,-0.28499362,0.0145843625,0.16821623,-0.19122744,0.12462668,0.18961708,0.13186435,-0.13049738,-0.7031642,-0.05353803,0.49712142,0.015390378,0.28726447,0.08366615,-0.07655967,0.28192568,-0.10357663,-0.060847513,-0.08006088,-0.596085,0.06684343,-0.28765365,-0.4501222,0.39023933,-0.2499447,0.16220742,0.21069056,0.0015061438,-0.22035758,0.40272808,-0.013576571,0.826267,0.16829588,-0.04577375,-0.29044282,0.13859108,0.06464608,-0.1718092,0.06588959,-0.2088144,-0.045055132,-0.5799816,0.4026559,-0.17306967,-0.29467052,0.17839834,-0.16376455,0.05626773,0.5042953,-0.060333345,-0.031225089,0.035273936,-0.062563956,-0.26209316,-0.3712675,-0.060565032,0.28469867,0.2339745,0.12382946,-0.05488003,-0.040360052,-0.23828039,0.41487673,-0.03385853,0.55105025,0.28482893,-0.01035914,-0.4102207,-0.15969871,0.050399594,0.60903764,-0.11549787,-0.10650538,-0.30834234,-0.45039564,-0.28427702,0.039619997,0.03380561,0.25689378,0.021686962,-0.07205956,0.801562,-0.12195086,1.1495228,-0.0439199,-0.43100995,0.20937008,0.4721336,0.03856606,-0.013737705,-0.2771076,0.8573398,0.45341483,-0.022125328,-0.05775019,-0.4032826,0.12594181,0.14417258,-0.1837595,-0.24836849,-0.023196196,-0.44728297,-0.3004497,0.24792224,0.28602618,0.23537788,-0.12565778,0.05258546,0.46021497,-0.09161997,0.30591747,-0.5218448,-0.20511553,0.32232597,0.19606476,-0.0063251695,0.10880898,-0.51008296,0.38486403,-0.42771757,0.023259556,-0.19832096,0.19886754,-0.2871012,-0.18849991,0.2820458,0.03307325,0.35132775,-0.40550163,-0.236864,-0.30465043,0.49167174,0.3282196,0.14105366,0.54772097,-0.27053124,-0.02569725,0.05245154,0.44384667,0.72985005,-0.30092752,-0.058909725,0.39397806,-0.40981025,-0.46787256,0.446612,-0.36849064,0.0115879215,0.2086599,-0.12812431,-0.47624117,0.3433089,0.16778159,0.18598029,-0.024001356,-0.80663884,-0.014405612,0.37111154,-0.30549178,-0.18133119,-0.2740737,0.18528138,0.41788048,-0.07893287,-0.29773846,-0.0048763594,0.19437763,-0.03188677,-0.5637887,-0.11992476,-0.37766477,0.18446802,-0.080462284,-0.2585135,-0.22481337,-0.0012317201,-0.52195424,0.09836986,-0.07553817,-0.24264212,0.087500885,-0.18552354,-0.061981745,0.76812184,-0.33646834,0.09798553,-0.47220427,-0.47390258,-0.67025703,-0.27627963,0.31948662,0.051161256,0.09978245,-0.74382234,-0.087960504,-0.20207328,-0.26813272,-0.10720413,-0.46525913,0.38522908,0.067466974,0.33028418,-0.054514907,-0.7219676,0.43506008,0.042653166,-0.0957123,-0.5911731,0.51907176,0.026214957,0.81361973,-0.004415713,0.14103016,0.2825853,-0.5116668,0.02824824,-0.20166971,-0.27784353,-0.6620684,-0.059356563,93 +138,0.36999068,-0.1884877,-0.43149695,-0.1429296,-0.27352878,0.015251493,-0.06810074,0.36876985,0.29973993,-0.18357147,-0.088573016,-0.21211568,0.049550377,0.30406502,-0.081771016,-0.66513973,-0.13488083,0.11061971,-0.4829978,0.42071632,-0.5750509,0.40348947,0.0012497246,0.3468278,0.04474179,0.3884086,0.17332943,-0.1804517,0.06836931,-0.106493406,-0.28666118,0.35398236,-0.4434133,0.039581284,-0.15743016,-0.2076524,0.17232084,-0.40119582,-0.32447207,-0.6751583,0.1346384,-0.8842767,0.5624692,-0.052570544,-0.068947665,0.08525896,0.16996232,0.2949328,-0.37334403,-0.018347597,0.2617075,-0.13732332,0.030469673,-0.33478266,-0.09142256,-0.32104194,-0.39245644,-0.013916981,-0.5025779,-0.32972223,-0.046332326,0.17440195,-0.3617964,-0.101058535,-0.101323344,0.2152061,-0.41233405,0.20344439,0.39832094,-0.27164608,0.26232764,-0.45957288,0.0046383156,-0.032576498,0.38761953,-0.13728014,-0.117573336,0.39008936,0.36531734,0.3237892,0.19848005,-0.2878502,-0.1347819,-0.2683681,-0.014083457,0.5478504,-0.19625948,-0.39286515,-0.1479955,0.18414968,0.20154282,0.33987448,0.05523892,-0.1325003,-0.20841318,-0.18384627,-0.24954475,0.47135028,0.46356755,-0.34006944,-0.27068108,0.2857388,0.5379885,0.31114239,-0.19017534,0.062566854,-0.012747826,-0.50834477,-0.14835475,-0.02107238,-0.11378813,0.553525,-0.10325429,0.18891732,0.9240283,-0.101354994,0.0919632,-0.040440954,0.029829752,-0.22362725,-0.32357553,-0.049265847,0.13740298,-0.5540549,0.122115724,-0.113836095,0.7744511,0.13835046,-0.6120059,0.3753482,-0.578725,0.14532545,-0.105144136,0.5798508,0.42557326,0.31289938,0.48815396,0.72400934,-0.432439,0.19816151,0.082151204,-0.51065755,0.1305139,-0.2586536,-0.06312737,-0.53140473,0.26006457,0.019747138,0.20263419,0.14361759,0.10242021,-0.6085482,-0.0090640765,0.25199273,0.82130057,-0.2918987,-0.038574696,0.5301163,1.030499,0.8273024,-0.103917226,1.0914344,0.18895045,-0.3114453,0.18932195,-0.21021827,-0.7037602,0.10430206,0.42269,-0.24152447,0.40449983,-0.0014791489,0.002462387,0.20450766,-0.2577019,-0.056861162,-0.013489747,0.2018705,0.09702692,-0.033248164,-0.5728578,-0.28303364,-0.07262693,-0.15690432,0.1681685,0.2367826,-0.123905025,0.40531114,-0.04629509,1.4850191,0.100635834,0.0735884,0.14015283,0.6372346,0.29412574,0.059455432,-0.123222,0.5664606,0.36955318,0.059491396,-0.45737317,0.24195835,-0.29458803,-0.43360576,-0.022611413,-0.42684683,-0.12388821,0.06252556,-0.39106777,-0.07431245,-0.13553284,-0.10656263,0.42893213,-3.0725484,-0.24701037,-0.071384296,0.21836019,-0.36111543,-0.07529904,0.0029771328,-0.4782532,0.121534966,0.3257324,0.45108038,-0.6944571,0.3926032,0.434208,-0.46577758,-0.22230142,-0.63710076,-0.17498134,-0.055750143,0.46757492,0.058115944,-0.035388894,-0.18114834,0.241769,0.6332114,0.0477102,0.16933234,0.3156051,0.44657287,0.07781908,0.5407165,-0.084652394,0.5752041,-0.16389653,-0.04296671,0.3262485,-0.2534507,0.39358208,-0.038921077,0.024364782,0.5356633,-0.3522519,-0.8281968,-0.40188402,-0.27426702,0.9985705,-0.42458805,-0.20647268,0.16105756,-0.3041867,-0.051024403,-0.010797208,0.49324596,-0.027005501,0.06468194,-0.578014,0.13634463,-0.051433966,0.037991684,0.05426274,-0.024398541,-0.2310706,0.6572177,-0.007555452,0.5563818,0.30853945,0.07973055,-0.12265184,-0.42582884,0.008982497,0.6833533,0.34004688,0.055458948,-0.17413053,-0.23794772,-0.23673758,-0.2119503,-0.001877597,0.4828553,0.78371876,-0.054048773,0.16164424,0.3248501,0.08195756,-0.0011208515,-0.110939935,-0.07727667,0.11943987,0.012961384,0.49117598,0.73711526,-0.17771152,0.44252217,-0.15075986,0.38765517,-0.1262771,-0.50195086,0.39813814,0.50131214,-0.23180436,-0.06750794,0.5003325,0.5089005,-0.4026488,0.44377992,-0.6048941,-0.18728119,0.7006181,-0.24906448,-0.42905694,0.3652045,-0.18990664,0.10299165,-0.9496602,0.21271311,-0.12765579,-0.25373703,-0.2952603,-0.08615817,-3.4796207,0.17271926,-0.18311314,-0.0990851,-0.29027253,0.032900997,0.23113184,-0.66601497,-0.5355475,0.12039192,0.180663,0.46459547,-0.098041855,0.17250305,-0.31827196,-0.16356412,-0.075806536,0.15667082,0.038753096,0.2797491,-0.33669084,-0.37416184,-0.09377648,-0.098945715,-0.47431868,0.21006751,-0.54966426,-0.4235721,-0.04472203,-0.5337502,-0.22488591,0.6166378,-0.29141548,-0.01800952,-0.2143455,0.013771033,-0.28489473,0.033926073,0.19424114,0.11225478,-0.07388054,0.08409492,0.101669416,-0.4019345,0.567126,-0.024848878,0.43951282,0.022899915,-0.015261799,0.03798121,0.55352265,0.45315394,-0.26630476,0.9595387,0.25446546,-0.07380208,0.3488788,-0.2743931,-0.30858153,-0.6533734,-0.43369657,-0.09490518,-0.368087,-0.4721517,-0.027802689,-0.328809,-0.68041915,0.7233881,-0.0010746042,0.37889385,-0.046276513,0.2405746,0.49182123,-0.29650414,0.0852201,0.06427566,-0.18180814,-0.5653427,-0.07643031,-0.69099534,-0.5194524,0.199456,0.81291664,-0.41956934,-0.0075482936,-0.14407982,-0.19787376,-0.08549523,0.03501405,0.18460126,0.36071804,0.4727813,-0.061823543,-0.58078545,0.57512337,-0.075982764,-0.21332608,-0.41532844,-0.12065307,0.55129755,-0.830622,0.5256742,0.28853977,0.010544691,0.04979964,-0.5221926,-0.20324616,-0.057700563,-0.20829588,0.47039083,0.08095515,-0.72754866,0.4224203,0.33903235,-0.4700752,-0.63603556,0.31115896,-0.16717033,-0.3118944,-0.07802848,0.27170315,0.21743473,-0.085862845,-0.06257992,0.13493125,-0.4577939,0.18693522,0.2908668,-0.060094845,0.26266426,0.03370654,-0.1662195,-0.7518526,0.051042598,-0.3853406,-0.3442439,0.31070134,-0.10592772,-0.0026562056,0.07608471,0.20368314,0.3417231,-0.3313133,0.10469704,0.14751354,-0.27207282,0.3121353,0.41893452,0.349618,-0.3724347,0.56462085,0.16309635,-0.08102355,0.14203878,0.0555176,0.49474794,-0.0074015735,0.27858356,-0.15023048,-0.20643435,0.3793402,0.81571734,0.15743461,0.36608607,0.015875021,0.08845603,0.35846946,0.01795326,0.08691718,0.26650122,-0.47219834,-0.05142502,-0.013249842,0.1486333,0.5099948,0.35306582,0.28660625,0.07390034,-0.25255802,0.057109367,0.23622447,-0.014853703,-0.9217336,0.24606265,0.32160175,0.767956,0.25933012,0.25104558,-0.12259261,0.68103623,-0.24813801,0.08687149,0.5263918,-0.085415006,-0.59798354,0.82700616,-0.5138717,0.47618893,-0.19322415,-0.06915736,0.14808664,0.13060229,0.3981676,0.7930959,-0.27594915,-0.07080719,-0.03352027,-0.2166508,-0.046029996,-0.44616738,-0.11058128,-0.35993645,-0.2491851,0.60861033,0.44230354,0.23909974,-0.19960709,-0.029459344,0.06688975,-0.06321707,0.2093164,0.0051645543,0.04482493,0.04534752,-0.49048546,-0.11555794,0.5395915,-0.0053581637,0.08982992,-0.33954963,-0.33759484,0.12008405,-0.23772821,0.03796401,-0.07010336,-0.60422325,0.049753617,-0.14496921,-0.6783749,0.5153526,-0.09191523,0.14612515,0.1721097,-0.085009225,-0.06476407,0.33627117,0.072808795,0.9032763,-0.0953423,-0.34450743,-0.3936109,0.1399126,0.100087926,-0.23301981,-0.025547974,-0.46059507,0.08030341,-0.38256982,0.56982845,-0.090453975,-0.37895766,0.03822239,-0.25448424,-0.046654653,0.47699255,-0.03361296,-0.11940331,-0.21662836,-0.20303787,-0.4002817,-0.09069085,-0.3032914,0.15127356,0.38528094,-0.16813152,-0.13509439,-0.24748841,-0.10581599,0.42667878,-0.05706995,0.44266683,0.15733248,-0.100021966,-0.14858052,-0.012212785,0.25135532,0.39548212,0.026058512,0.06427717,-0.35093826,-0.29287368,-0.24304155,0.18816304,-0.15545869,0.309912,0.052306235,-0.22457238,0.95919037,-0.06871939,1.151403,0.058168158,-0.35570228,0.0875901,0.62541693,-0.14835118,0.111513644,-0.365876,1.0230514,0.4399751,-0.0657754,-0.18588609,-0.37547243,0.02658665,0.30638486,-0.30809963,-0.03349367,-0.044793926,-0.42004877,-0.3260494,0.352297,0.19989564,0.220038,0.022526765,-0.09342639,0.016477482,0.056539785,0.46622765,-0.5167635,-0.35049975,0.14305474,0.21575658,-0.09640253,0.025808327,-0.4091687,0.5329996,-0.51597035,0.22792587,-0.53593856,0.027893197,-0.3196077,-0.3429815,0.09164463,-0.22509848,0.36287433,-0.39207813,-0.44151098,-0.10143585,0.2845049,-0.033247232,0.16851506,0.5163466,-0.31270495,0.037476517,0.09560121,0.49254435,1.0880073,-0.31906685,-0.055681884,0.41306925,-0.37091148,-0.6034813,0.24093586,-0.31058267,0.050713357,-0.16077493,-0.38323906,-0.3706274,0.24767913,0.25228876,0.23335028,0.075855225,-0.5502083,-0.074292704,0.39074644,-0.35052842,-0.24758412,-0.24135615,0.24285531,0.7431646,-0.24681406,-0.3607748,0.15826175,0.07948944,-0.26612344,-0.624167,-0.091879115,-0.16377552,0.36721796,0.037115995,-0.23873742,0.018788831,0.14550118,-0.38633516,0.2084842,0.29915842,-0.3989835,0.16529536,-0.2591407,0.014811167,0.93900114,-0.250407,-0.18876573,-0.6817008,-0.5480614,-0.8578813,-0.5769244,0.3632968,0.15501234,0.083837636,-0.37070853,0.08783371,-0.0086810505,-0.25782764,-0.01648277,-0.4315809,0.38523296,0.12841102,0.43670985,-0.25766137,-0.9550618,0.17763089,0.15932342,-0.19727145,-0.7297445,0.5998317,-0.15013824,0.7613591,0.0638347,-0.05074472,0.22619738,-0.28392172,0.05192965,-0.48057476,-0.06655253,-0.7550204,0.0431775,96 +139,0.4929952,-0.18481736,-0.33952615,-0.20867401,-0.40393645,0.11263321,-0.16672118,0.16677386,0.16183424,-0.40672323,-0.020091752,-0.24261154,-0.15277998,0.4288338,-0.048239633,-0.673239,0.020684281,0.3286672,-0.661403,0.47020695,-0.4409712,0.38002503,0.076287046,0.15749975,-0.059103083,0.17320271,0.2094793,-0.1917968,0.10654243,-0.08739415,0.073679015,0.2362118,-0.8069981,0.3419118,-0.11949955,-0.29356176,0.008251508,-0.4002123,-0.2849283,-0.6679459,0.11528864,-0.8443032,0.50441116,-0.013747018,-0.24985233,0.004851985,0.09664586,0.30458274,-0.0765803,0.15522145,0.24038598,-0.16389294,-0.2047166,-0.19998717,-0.14696041,-0.5104482,-0.5333168,0.06305274,-0.5657215,-0.24035425,-0.1970964,0.31301358,-0.21065111,0.017954325,-0.15478992,0.25259277,-0.4208046,-0.009001819,0.18879375,-0.09584311,0.10794664,-0.34163457,0.09674004,-0.19156145,0.2571512,-0.18531272,-0.21233365,0.35665196,0.12905475,0.6705092,0.10856455,-0.2586269,0.013030243,-0.086410455,0.091341875,0.589224,-0.26345697,-0.15515393,-0.18230368,0.03585542,0.2881463,0.14835416,-0.18730478,-0.49407595,0.05670972,-0.27237862,-0.053647414,0.21816641,0.4763498,-0.31408256,-0.359656,0.3265956,0.5284315,-0.00756406,0.08313818,0.13365822,0.11831937,-0.44093978,-0.2283251,0.091675915,-0.077264115,0.26076868,-0.07750782,0.11578439,0.7146353,-0.23590203,0.017731905,-0.33547804,-0.08212807,0.019663373,-0.18618935,-0.19088237,0.23197263,-0.5134666,0.069450095,-0.094882265,0.8934734,0.16689096,-0.7860901,0.3368177,-0.5515939,-0.04305897,-0.17362456,0.7116717,0.718888,0.4398592,0.12126485,0.7233645,-0.4686902,0.2979235,-0.22790615,-0.33508462,0.14786477,-0.23683195,0.0088220835,-0.44421566,-0.034529638,-0.1691938,-0.20649534,-0.14963935,0.55210775,-0.6994345,-0.0798938,0.16203332,0.7723702,-0.3947115,-0.022513894,0.6306342,0.95084286,0.6805705,0.06865602,1.1455904,0.55777997,-0.23126389,0.30301204,-0.35557613,-0.6928394,0.1522786,0.35523245,0.10507533,0.24213673,0.1811378,-0.13977285,0.35038617,-0.66818327,-0.12449266,-0.26329297,0.43004075,-0.11563819,0.1601259,-0.36898586,-0.12397762,0.052387707,0.037226714,0.07649387,0.29574126,-0.30493578,0.20106095,0.08814006,1.8682262,-0.18992311,0.1581721,0.10710217,0.33901468,0.0954511,-0.12371909,-0.23293753,0.29801205,0.3387574,-7.133782e-05,-0.54912966,0.0756004,-0.20966037,-0.35330755,-0.20786002,-0.20533457,0.07199694,-0.087476246,-0.32806295,-0.20855898,0.070737354,-0.41574863,0.5583767,-2.1173441,-0.24290547,-0.11723072,0.4383251,-0.35302293,-0.31795877,-0.20449091,-0.4164284,0.31356156,0.26960096,0.33723363,-0.51533633,0.3297974,0.26661345,-0.3422831,-0.1865396,-0.63860786,0.11657079,-0.06583272,0.35401028,-0.09980677,-0.14926839,-0.33351994,0.011679562,0.3950534,-0.10547559,0.10094198,0.48426118,0.36571944,0.30372268,0.30059677,0.026616283,0.5301425,-0.48137274,-0.33441296,0.46299198,-0.079396516,0.33040184,-0.21583357,0.14148773,0.27347583,-0.52575696,-0.79839694,-0.7875528,-0.6279054,1.1530346,-0.3812911,-0.35854158,0.19680409,0.08756115,-0.15155646,-0.034884166,0.5193745,-0.19125023,-0.089059465,-0.73811334,0.116699226,0.04550271,0.55418706,0.10284359,0.14090864,-0.36874723,0.43740508,-0.32701036,0.34430483,0.103942946,0.16969226,-0.07213754,-0.57857585,0.17048572,1.1097007,0.28032485,0.17754364,-0.070196725,-0.286496,-0.09881498,-0.10949838,-0.060070403,0.39514014,0.8907242,-0.018657224,-0.08369028,0.3025668,-0.1525667,0.010858874,-0.15510581,-0.4057253,0.034145728,0.095851764,0.46528834,0.43029004,-0.0443338,0.5152475,-0.1551524,0.25630543,-0.082278065,-0.37937143,0.34503424,0.95489216,-0.16014704,-0.017416466,0.5126381,0.44551224,-0.25759166,0.45448717,-0.8591675,-0.3816788,0.299854,-0.08126982,-0.44417632,0.058904756,-0.25627232,0.26367062,-0.93246007,0.59512925,-0.21711737,-0.5573341,-0.57073396,-0.12596998,-2.7120943,0.22611934,-0.13960548,-0.0070094983,0.12138793,-0.021213023,0.43657535,-0.4523494,-0.34071758,0.14390168,-0.07667408,0.46960917,0.0356048,0.23440716,-0.24402161,-0.17932715,-0.3262071,0.2225773,0.3341452,0.30378255,-0.046572812,-0.4416308,-0.03801779,-0.15362357,-0.27456015,0.048728652,-0.69442976,-0.53460306,-0.23096424,-0.62522894,-0.1415841,0.58508044,-0.463433,0.058130432,-0.2939629,-0.005797711,-0.10681333,0.2235379,0.1832446,0.17638792,0.14956218,-0.060829822,-0.40409425,-0.41013333,0.49284402,0.14598131,0.15477897,0.3702702,-0.10890153,0.14855064,0.50694734,0.41070673,-0.091270335,0.71035004,0.52766204,-0.13529684,0.20851438,-0.26843446,-0.12677036,-0.5667316,-0.4301511,-0.114437215,-0.43465894,-0.4058343,-0.04357439,-0.3657719,-0.7199298,0.60677946,-0.098389246,0.08270482,-0.044954784,0.15510836,0.36323625,-0.20865807,-0.06654294,-0.18677776,-0.082568265,-0.46976918,-0.5234335,-0.48539716,-0.45908058,0.23182228,1.2615587,-0.1809436,0.00494082,0.06976234,-0.12089059,0.0036387166,-0.082517706,-0.027320186,0.22455238,0.5436447,-0.08482536,-0.71289617,0.4023524,-0.054177787,0.027043879,-0.59247303,0.2737876,0.72996336,-0.82007915,0.40647963,0.2167916,0.25498608,0.17095551,-0.5293046,-0.25797614,0.13968617,-0.36748582,0.31469163,0.0268425,-0.771477,0.39913225,0.28051007,-0.41278112,-0.9670684,0.36102018,0.08397456,-0.20870753,0.12664738,0.30528215,0.003419292,-0.054730915,-0.3437058,0.2974147,-0.42816722,0.2799438,0.22467658,-0.20617023,0.3134154,-0.44580808,-0.2325346,-0.7039378,0.1785182,-0.38051113,-0.51444817,0.2587044,-0.043829367,-0.12545219,0.31712478,0.107329175,0.4808641,-0.2890704,0.013148176,0.009421948,-0.4429793,0.30101815,0.39268914,0.47126415,-0.3841006,0.57878095,-0.014907909,-0.17535807,-0.35257918,0.16676727,0.48793784,0.02250847,0.13318901,-0.063370176,-0.09719951,0.31171617,0.96774507,0.09886988,0.44848615,-0.040836506,-0.13914181,0.3376715,0.10055188,-0.065846495,-0.03530263,-0.50431055,-0.09794854,0.09265639,0.15629797,0.4599808,0.34277332,0.41852233,-0.19882672,-0.30799764,0.13432972,0.10999896,-0.07155298,-1.134959,0.17215084,0.09269044,0.48354325,0.41178164,0.021740552,0.051911842,0.5934001,-0.23584244,0.16284175,0.23461683,-0.14045967,-0.27682993,0.44496498,-0.5668909,0.28054288,-0.08344412,0.032995,0.23608671,0.0950984,0.32988942,0.83485997,-0.06331292,0.026713677,-0.09473276,-0.0981479,0.08170946,-0.23799072,0.31388825,-0.5703282,-0.37471765,0.65246683,0.38489464,0.31678116,-0.23691463,0.101807036,0.026040442,-0.16646454,0.21704435,-0.15325703,0.041514374,0.15397123,-0.4900976,-0.18759592,0.6849542,-0.008170835,-0.08466447,0.03638024,-0.118085146,0.15775324,-0.32932308,-0.030499639,-0.021529976,-0.78874844,-0.003822565,-0.42639053,-0.15338911,0.38892496,-0.048379652,0.12196508,0.08920033,0.05452372,-0.41175714,0.38202903,0.21482863,0.9186768,0.2712021,-0.38749892,-0.32433775,0.05656025,0.2057329,-0.30062813,0.11271583,-0.27137128,-0.026515242,-0.9814762,0.43099606,-0.091866985,-0.4383524,0.31896463,-0.15803674,-0.03978985,0.5348208,0.08623683,-0.13744654,0.08278165,-0.24078263,-0.39131442,-0.048945103,-0.15379746,0.13465187,0.17239067,-0.10979913,-0.09217633,-0.14650895,-0.26370227,0.500529,-0.005486802,0.28912702,0.3786565,0.257272,-0.18206576,0.12369563,0.19189246,0.44628417,-0.09839861,-0.0027818999,-0.048068162,-0.21451563,-0.23421344,0.19359574,-0.2147926,0.26197213,0.08872318,-0.47804603,0.685898,0.17273024,1.028927,-0.003345565,-0.062062275,0.11697124,0.47020566,0.10913337,0.03317588,-0.5364918,0.91364825,0.63045055,0.084862314,-0.12296372,-0.2263733,-0.39704043,0.32150453,-0.29651728,-0.05396462,-0.035321075,-0.78599703,-0.48134696,0.28474468,0.3825,-0.07762136,0.01723967,0.062814064,0.09278609,-0.0038740535,0.32844096,-0.5617745,0.064368345,0.20533156,0.42993248,0.12552989,0.3379136,-0.39976484,0.4405774,-0.65227485,0.06872663,-0.4356371,0.14294109,-0.124201946,-0.19450165,0.065472744,0.21332122,0.42060822,-0.23688574,-0.3356729,-0.13332413,0.6201278,0.17204998,0.14541821,0.81495005,-0.34320277,0.09004755,-0.049549382,0.35754362,1.1117278,-0.23205748,0.030463822,0.2970371,-0.27058607,-0.61928624,0.44472218,-0.33370835,0.100045905,-0.044072814,-0.35818842,-0.31356138,0.30349538,0.13577193,-0.14142428,-0.022939885,-0.56179124,0.105426766,0.28872842,-0.060221728,-0.30855876,-0.2891764,0.40103805,0.8371213,-0.2522228,-0.34346738,0.2385022,0.40721187,-0.33706096,-0.64564437,-0.22359306,-0.37583086,0.13367972,0.14721832,-0.3623387,-0.100292996,-0.06359235,-0.37582776,-0.025457343,0.29919627,-0.36786634,0.07649007,-0.06429486,0.15447798,0.7522245,-0.05784701,-0.1958418,-0.71642554,-0.4609951,-0.9536578,-0.39782205,0.55276465,0.44181928,0.075451694,-0.28473672,0.012007785,-0.112790816,-0.13401458,0.07249714,-0.5002272,0.22506599,0.22967336,0.4856836,-0.16917299,-0.91148895,0.14229815,0.05954368,-0.20154262,-0.55985737,0.39481634,-0.14361404,0.9430265,-0.057783507,-0.14053033,0.16674235,-0.5843526,0.05412275,-0.2683405,-0.05998717,-0.74318194,0.21884312,99 +140,0.43050632,-0.35756114,-0.45017096,-0.05259684,-0.4138343,0.067819566,-0.19522956,0.43175107,0.07597177,-0.1996551,-0.15980588,-0.25279796,-0.098347634,0.18612552,-0.17990844,-0.25595573,-0.22661673,0.10801487,-0.63551044,0.7859492,-0.114541784,0.17329635,-0.19333579,0.40750903,0.6699219,0.2799239,-0.017468708,0.13794647,0.050692257,-0.2598174,-0.10223068,0.14867194,-0.5562004,0.16713502,-0.3057003,-0.2904862,-0.09838409,-0.5672499,-0.5124342,-0.8937136,0.51506823,-0.9109114,0.63775504,-0.081366636,-0.18894596,0.2675409,0.3552523,0.34835732,-0.09641075,-0.17205943,0.30460903,-0.05734231,0.14833952,-0.12165737,-0.19900052,-0.39232546,-0.56713355,-0.14916016,-0.34579837,-0.11777388,-0.43464953,0.16007432,-0.34981802,0.008861834,-0.124121584,0.5154216,-0.47211334,0.30241317,0.050376393,-0.023180012,0.091979384,-0.7535526,-0.17093188,-0.16781346,0.27197742,-0.0034055968,-0.088020906,0.47381496,-0.029382467,0.17335497,0.0028023045,-0.11464407,-0.23740827,-0.22534736,0.0991894,0.39294547,-0.065882966,-0.4119294,0.012486744,-0.029953416,0.35727316,0.39018303,0.2530284,-0.0155326845,-0.118697405,-0.07341686,-0.05301883,0.5508322,0.43485376,-0.13855846,-0.106039256,0.38596967,0.654022,0.42303988,-0.28281578,-0.041305076,-0.026057513,-0.48046547,-0.09334751,0.12546234,-0.31823307,0.47766843,-0.08388813,0.19062825,0.49153376,-0.26402542,-0.08083644,0.046509456,0.13012925,-0.21346706,-0.1721184,-0.4849075,0.22804363,-0.45966494,0.44400704,-0.10574028,0.58089846,0.10488245,-0.47578755,0.29712355,-0.5592336,0.06831274,0.08019241,0.43827966,0.6190272,0.49224737,0.45392126,0.6965895,-0.079327255,0.044050142,-0.2779601,-0.2400803,-0.061929025,-0.21370599,0.00578324,-0.5345868,0.022823304,-0.2683297,-0.15872835,-0.11728747,0.53165287,-0.34785324,-0.08207002,0.15772335,0.78029543,-0.23183727,0.0779768,0.9267639,0.99480426,1.0420672,-0.044252116,0.7383511,0.041152883,-0.24350943,0.09234145,-0.17175789,-0.5903384,0.2469158,0.400717,-0.17772938,0.26668125,0.122868694,-0.0270276,0.2644265,-0.44396287,0.00783785,-0.13822807,0.13390191,0.24747582,0.00948142,-0.2445576,-0.32047358,-0.06912414,-0.021606298,0.18926017,0.17267223,-0.34321603,0.47993058,0.11274188,1.6394463,0.052011203,-0.041330244,0.22954664,0.66155124,0.15945822,-0.25278386,-0.09955431,0.35368195,0.29226175,0.14240228,-0.50555027,0.28795782,-0.32908112,-0.44381174,-0.09081788,-0.47736597,-0.3345478,0.07497803,-0.28873417,-0.27792174,-0.22142388,-0.26392597,0.43682683,-2.8937337,-0.04323519,-0.047019266,0.2692236,-0.22322688,-0.3103597,0.08532303,-0.48186225,0.47980702,0.29459155,0.38935238,-0.5898297,0.3984174,0.5065938,-0.81265694,-0.024527024,-0.52839476,-0.13839127,0.09401669,0.40851897,-0.142068,0.029673643,0.09502697,0.22104886,0.4880585,0.14801994,0.19569837,0.43846476,0.4771807,-0.13086277,0.7316858,-0.04156172,0.30615294,-0.35320562,-0.09702174,0.3541792,-0.3407313,0.40475884,-0.20121318,0.13533421,0.70381445,-0.5949495,-0.80561316,-0.55825436,0.003134227,1.1406398,-0.32188714,-0.5841,0.27082223,-0.65511006,-0.19883417,-0.16692823,0.5535983,-0.18177801,-0.1824991,-0.63739055,-0.115640126,-0.11902606,0.16250058,-0.068975136,-0.09003797,-0.33519086,0.79569125,0.009681842,0.5738317,0.19535996,0.14586423,-0.50057584,-0.48522785,0.14045633,0.4652696,0.51289743,-0.056135066,-0.24219488,-0.20296755,-0.23046805,-0.15724847,0.15309525,0.68260604,0.4202408,-0.081393816,0.18169887,0.30759516,-0.14767747,-0.01319348,-0.31807086,-0.17954479,-0.2726903,0.025322413,0.4184967,0.54616946,-0.0013481379,0.40493095,0.05730366,0.23026164,-0.094443895,-0.40209076,0.2912585,1.3067708,-0.19104078,-0.42297205,0.43135178,0.61270255,-0.102521464,0.40223604,-0.58952636,-0.12413238,0.5864084,-0.15324417,-0.598374,0.15182658,-0.28651997,-0.000835826,-0.57348055,0.0064060865,-0.35023588,-0.5762917,-0.65298235,-0.10680335,-2.344116,0.11272562,-0.270505,-0.40357703,-0.31220016,-0.4533437,0.083281964,-0.5878096,-0.6619403,0.054012474,0.122695416,0.7950709,-0.11543376,0.051542617,-0.2098589,-0.39357308,-0.50445324,0.15409508,0.18669564,0.44426012,-0.3093494,-0.42966253,-0.11310975,-0.018413937,-0.4028865,-0.08397756,-0.4769365,-0.195538,-0.19097425,-0.3860549,-0.2960109,0.5630687,-0.08831368,0.108252764,-0.17641239,-0.02177925,0.16886629,0.14622402,0.19671017,0.18339466,0.09472311,-0.14348684,0.13659705,-0.2280172,0.37116,0.10230395,0.34260482,0.20242341,-0.050832964,0.3454976,0.25253996,0.5456633,-0.09158243,0.95187414,0.3243947,-0.17929104,0.22439711,-0.15556605,-0.4285653,-0.571645,-0.084799044,0.1759792,-0.33649027,-0.47315815,-0.1701415,-0.28976128,-0.7556288,0.5161442,0.0874829,0.38589287,-0.08580847,0.23016055,0.59273434,-0.20043828,-0.030573677,0.011870116,-0.17669836,-0.54265046,-0.29733393,-0.53501666,-0.40907204,-0.0966591,0.7820292,-0.32491675,-0.07776562,0.16502886,-0.42773023,0.20810132,0.14951564,-0.077814296,0.18501247,0.44116667,-0.15998834,-0.539286,0.51463294,0.012665121,-0.13811922,-0.498511,0.4038202,0.5666482,-0.4747325,0.47928435,0.13016887,-0.10841465,-0.6287223,-0.53049475,0.05353231,-0.10359447,-0.19570981,0.4236275,0.33092722,-0.6267798,0.25492632,0.1507064,-0.098061636,-0.7572571,0.6788336,-0.1072106,-0.49736038,-0.096765585,0.28568214,0.13269183,-0.034717783,-0.26310956,0.2637963,-0.26838657,0.24647088,0.11971356,-0.116945855,0.06940239,-0.25772613,-0.14103228,-0.72936636,0.29113224,-0.43922815,-0.35173836,0.6245647,0.084360614,0.11129192,0.26764145,0.18572386,0.2930226,-0.11859878,0.13540149,-0.16068801,-0.17091939,0.29165477,0.45868096,0.5538884,-0.50929135,0.55786175,0.05108612,-0.18896362,0.34414068,0.11214828,0.23156968,-0.07434834,0.50008416,0.16744114,-0.27735576,0.18826962,0.6745849,0.35338804,0.43095404,0.010881785,-0.09913993,0.23779485,0.0021107257,0.34704602,-0.14376144,-0.776542,0.068835124,-0.2981811,0.012361637,0.5166468,0.107060246,0.16564779,-0.13639508,-0.1537932,-0.08519927,0.20925331,-0.16999808,-1.2693261,0.27991912,0.25586268,1.0307262,0.43542004,-0.015513022,-0.014968306,0.82214445,-0.12724827,-0.0067253886,0.3960036,0.33635393,-0.46750212,0.5173559,-0.64595044,0.49986824,0.129912,-0.08615173,0.04920498,0.03724472,0.3687088,0.6464775,-0.25483593,-0.12477231,0.058593947,-0.42728963,0.2915443,-0.25147676,0.021630196,-0.60301346,-0.3069127,0.52688986,0.49513385,0.35671705,-0.030004056,0.023517588,-0.057920326,-0.20527655,0.26894978,0.17935562,0.09685351,-0.17869872,-0.644392,-0.059509613,0.40663823,-0.21046111,0.17469269,-0.037822854,-0.17548294,0.23534289,-0.05067381,0.064383894,-0.023992918,-0.8432656,0.21258928,-0.20951174,-0.39116606,0.36273625,0.00068814756,0.2995485,0.25503346,-0.021843309,-0.24001122,0.34089622,0.052256178,0.85124564,-0.07421203,0.007933545,-0.3646919,0.039076556,0.080877416,-0.18196239,0.055360403,-0.10451202,0.068576306,-0.6437753,0.49829465,-0.025256956,-0.4262146,-0.03200615,-0.20476232,-0.07991194,0.6751991,-0.07405417,0.020596031,-0.24367903,-0.13009006,-0.38586813,-0.42974383,-0.07664239,0.21567903,0.14910068,0.16667223,-0.18348607,0.09808075,-0.05446697,0.6755247,-0.014685352,0.55619127,0.21446444,-0.031070638,-0.33007076,-0.14699247,0.05350534,0.533858,-0.053389426,-0.07117382,-0.24095565,-0.4704395,-0.38357538,0.36239997,-0.057410788,0.38494045,0.07553669,-0.14396615,0.75974196,-0.17035504,1.0830952,0.015359866,-0.4414237,0.25372687,0.72497046,-0.04989228,-0.19157617,-0.17634337,0.8289645,0.47933474,0.030427566,-0.069940425,-0.26791537,0.09826696,0.07594102,-0.22080462,-0.08111078,-0.041005716,-0.3845841,-0.05950997,0.023708662,0.26337558,0.26313564,-0.16339353,-0.0056584678,0.39273632,0.007916528,0.3142804,-0.2063531,-0.3818324,0.43323585,-0.16116253,-0.0860455,0.14356692,-0.53029525,0.48707512,-0.4368822,0.14247672,-0.3707579,0.2682094,-0.21730086,-0.23774382,0.22383328,-0.011245314,0.30546045,-0.34630954,-0.3189967,-0.28068867,0.40290153,0.30624276,0.1963664,0.4214885,-0.2629277,0.1821843,-0.04311819,0.49661943,0.6829263,-0.11926587,-0.107993856,0.11497608,-0.5508537,-0.61219496,0.39898428,-0.41796336,0.12226378,0.23634891,-0.044137876,-0.3950115,0.25086054,0.18105894,0.14650024,-0.18431044,-0.9444516,-0.23303229,0.23352194,-0.24341956,-0.074130535,-0.45247486,0.033378497,0.5435892,-0.14561097,-0.45565245,-0.056814853,0.07699327,-0.12424708,-0.469394,0.007309266,-0.34645826,0.3172284,-0.16806799,-0.32963118,-0.18406697,0.101369314,-0.46913016,0.19346514,-0.17884864,-0.38485387,-0.030006906,-0.28931317,0.08635326,0.9285328,-0.3475087,-0.011810561,-0.24430484,-0.44721782,-0.7804563,-0.30561402,0.17640203,0.21172547,0.013799476,-0.7140873,0.030547833,-0.29927272,-0.20772532,-0.1357317,-0.41985095,0.40589347,0.20557421,0.44809204,-0.030945698,-0.7413155,0.32728896,0.014831098,-0.16916306,-0.5098703,0.5125989,-0.029548867,0.6746667,0.048963226,0.20356035,0.05755024,-0.456675,-0.031305287,-0.15395187,-0.13131776,-0.5432929,-0.024695067,102 +141,0.46852416,-0.254902,-0.50880307,-0.06867841,-0.24178244,-0.059161894,-0.20330863,0.31526366,0.03319034,-0.55463195,0.0038989743,-0.09467247,-0.061073788,0.3725186,-0.04163393,-0.46803224,0.06346588,0.10275689,-0.5995094,0.61362976,-0.46882617,0.5729838,0.08358525,0.14327243,0.12437658,0.2617726,0.171425,-0.17814948,-0.061597597,-0.10220888,-0.1402181,0.07086175,-0.6363265,0.11700096,-0.08527161,-0.27444464,0.047059633,-0.2598549,-0.47354153,-0.76134384,0.2667581,-0.78171104,0.5483641,0.020830922,-0.36227816,0.22905287,0.0710739,0.40770522,-0.32807302,0.19444299,0.2510336,0.052360076,-0.07841082,-0.106019944,-0.18649003,-0.41091076,-0.3318741,0.05870485,-0.54564065,-0.28893834,-0.2890665,0.07918235,-0.36957252,-0.057908285,-0.1109854,0.38929468,-0.4682836,-0.092503,0.14610837,0.045638863,0.41567805,-0.5949144,-0.13584042,-0.17887166,0.16828851,-0.27956173,-0.25830013,0.19274275,0.30166826,0.55666006,-0.056138404,-0.14009425,-0.03661818,-0.23400784,0.22294982,0.50386924,-0.21500808,-0.3781168,-0.14584494,0.047999058,0.13873437,0.12799376,0.057340607,-0.58767444,-0.05329958,0.03943817,-0.16244155,0.3612653,0.4623982,-0.27786055,-0.2205365,0.2570626,0.4865965,0.1897512,-0.10556407,0.1588342,-0.07958356,-0.42621288,-0.1448334,0.25712398,-0.030328061,0.45133564,-0.11569587,0.22567515,0.5934983,-0.30774373,0.014342296,-0.0947104,-0.08978332,0.032200232,-0.08026443,-0.2579788,0.102790594,-0.7511336,0.12814708,-0.0833617,0.68401885,0.2929077,-0.62026405,0.3344421,-0.49848303,0.09842787,-0.14267983,0.54871327,0.7581004,0.25157434,0.07945495,0.6411743,-0.52697504,0.100354955,-0.142739,-0.35472116,0.010820214,-0.0641769,-0.13465138,-0.50524116,-0.18080507,-0.041957036,-0.18122448,-0.16239528,0.29420662,-0.4750087,-0.07529745,-0.0015071352,0.714935,-0.4149383,0.2125831,0.53935033,0.9569674,0.97995883,0.22709268,1.1770567,0.33780333,-0.23345058,0.20089372,-0.24568768,-0.57943267,0.29593173,0.5252915,0.0074862163,0.26296747,0.06612222,-0.014507727,0.33715278,-0.4033293,0.05363648,-0.32095787,0.33314782,-0.13348633,-0.07648869,-0.5255134,-0.20897272,-0.17509702,0.15736064,-0.20705411,0.20122732,-0.2058683,0.24548881,0.017252648,1.5720688,-0.31435612,0.09943029,0.07623433,0.40173274,0.2972763,-0.2157018,-0.16769536,0.3170988,0.56284446,0.097638056,-0.65790915,-0.11890065,-0.27818865,-0.44260475,-0.21128538,-0.30001816,0.14358075,-0.075608246,-0.4268071,-0.12429149,0.08641874,-0.3059916,0.45036545,-2.4360235,-0.18810035,-0.13687436,0.2587476,-0.37404123,-0.40819234,-0.15189332,-0.3120851,0.4897787,0.35060748,0.45660096,-0.6116406,0.2776932,0.36012083,-0.3758639,-0.07858208,-0.6133382,-0.20541707,-0.025460493,0.42013898,-0.07948576,-0.05657036,-0.094923034,0.28094465,0.534625,-0.23056291,0.14589652,0.2373972,0.3378988,0.19419487,0.4452965,0.063085936,0.39695817,-0.36732668,-0.1212686,0.50257534,-0.048866674,0.09696056,-0.025735727,0.2382532,0.28801128,-0.6826355,-0.85847396,-0.6915429,-0.42035744,1.1757678,-0.26229563,-0.36127385,0.3921379,-0.2220596,-0.064581014,-0.048533812,0.33347437,-0.0127188545,0.09147536,-0.87498164,0.10129659,0.0657453,0.32717642,0.039969143,0.013217317,-0.32766473,0.5019912,-0.12798044,0.3626145,0.4290088,0.1971119,-0.04683215,-0.44478068,0.008089149,1.1954906,0.61636835,0.10560325,-0.1740376,-0.16288586,-0.31253204,-0.042024788,0.060232718,0.31064042,0.94829094,0.013023038,0.092724256,0.15120104,-0.10635985,0.11751068,-0.13148476,-0.28962862,0.008916186,0.052976623,0.54644966,0.22847815,0.005729527,0.6798309,-0.0855181,0.205043,-0.08293072,-0.46195552,0.47850105,1.1750056,-0.18739033,-0.15755872,0.49125093,0.37642097,-0.2472899,0.48532087,-0.6105231,-0.22265908,0.5606481,-0.19423465,-0.3581641,0.37019813,-0.39807957,0.30162904,-0.91346645,0.3983924,-0.3544684,-0.49309024,-0.5009353,-0.066149235,-3.3998246,0.34385642,-0.2778235,-0.24491991,-0.08115216,-0.13550122,0.37438905,-0.44583756,-0.45478278,0.20341744,0.00910716,0.6759533,0.08718219,0.012172062,-0.15150227,-0.26448005,-0.2431597,0.16559687,0.09623463,0.26251376,-0.13701123,-0.44965905,-0.111660115,-0.16091423,-0.3633782,0.029681236,-0.63801354,-0.5341391,-0.27759722,-0.54129833,-0.21854462,0.7143285,-0.11510695,-0.022352306,-0.0728661,-0.035056163,-0.052767042,0.44482198,0.19941965,0.26957652,0.0048833448,0.0022149484,-0.109755345,-0.3732553,0.051065207,0.20582703,0.0006894509,0.15681858,-0.15088421,0.20737647,0.5737355,0.6471891,-0.18320686,0.6504934,0.54607177,-0.26342717,0.33461198,-0.3283611,-0.27854636,-0.5935093,-0.45766973,-0.26308414,-0.296027,-0.5701463,-0.10412004,-0.22375454,-0.72134,0.56014246,-0.11467586,0.08785994,0.05225002,0.23333834,0.24251257,-0.14702663,-0.056456055,-0.1704407,-0.14631675,-0.54658115,-0.37219632,-0.670607,-0.4756814,0.024096496,0.9390694,-0.13279885,-0.029638862,-0.054196056,-0.25437522,0.062418852,-0.1416922,0.12322542,0.33243197,0.23791961,0.0075992583,-0.7068213,0.49323183,0.110473685,-0.18167442,-0.5522813,0.10954912,0.8624303,-0.60123307,0.3747985,0.27967793,0.028299754,-0.058266558,-0.51889,-0.22520031,0.26387772,-0.34517825,0.4340542,0.08334771,-0.7359048,0.40924826,0.5104956,-0.2002683,-0.66046107,0.60551,0.12460901,-0.2409272,0.089416064,0.3843197,-0.06753839,0.03615818,-0.389681,0.37729505,-0.38838816,0.25999016,0.39706817,-0.04551924,0.19915661,-0.27863476,-0.3233234,-0.6046392,0.1007066,-0.481676,-0.26845998,0.19881119,0.08553182,-0.022748271,0.16222307,0.07658269,0.4819663,-0.3362424,0.19748831,-0.16023256,-0.35573843,0.41315538,0.60158,0.23646422,-0.20480302,0.6772125,-0.011478549,-0.18164031,-0.29184386,0.065688156,0.51226187,0.17637523,0.13329026,-0.14963205,-0.2096878,0.30900213,0.9028093,0.10271595,0.5574911,0.13913435,-0.11062297,0.121218376,0.23977564,0.090482585,0.12456958,-0.3185886,-0.161934,0.10846802,0.17810424,0.5294505,0.17176062,0.23374167,-0.13703388,-0.20935796,0.050931398,0.19069248,0.16454701,-0.927561,0.43633953,0.14063923,0.44144887,0.47818005,0.032756258,0.059422664,0.5283094,-0.27045164,0.011282754,0.15182263,-0.14440608,-0.56128126,0.5827612,-0.6910115,0.41682413,-0.16192737,0.0647734,0.18421732,0.08517942,0.40781415,0.92609394,-0.0056182267,0.0873127,0.025898771,-0.2246034,0.056834877,-0.50460446,0.041642744,-0.33423144,-0.48942935,0.6803132,0.32709092,0.2223105,-0.13754314,0.037277468,0.10538933,-0.24533278,0.31187427,-0.09140197,0.08909993,-0.08383053,-0.6578167,-0.22353134,0.4797549,0.09442518,0.080197066,-0.02394496,-0.050822034,0.27343607,-0.18883738,0.11580915,0.04528268,-0.7481496,-0.009110649,-0.563147,-0.347015,0.3121677,-0.34900725,0.28984484,0.14231735,0.015454841,-0.24465373,0.44362944,0.15033646,0.73686105,-0.09392166,-0.20862903,-0.29299074,0.16071187,0.24994291,-0.23134041,-0.09500354,-0.2294449,-0.011076559,-0.9241683,0.40637475,-0.09504456,-0.22668843,0.25094593,-0.24420261,-0.074292965,0.49641502,-0.15447743,-0.14582096,0.010745064,-0.2278828,-0.2329757,-0.38938552,-0.097803816,0.27276576,0.20260319,0.04373361,0.010462065,-0.050881427,-0.04889003,0.4016553,0.07890463,0.401559,0.30793616,0.24294825,-0.42971328,-0.016405089,0.22793137,0.36651236,0.12901868,0.1088271,-0.16765253,-0.42677206,-0.35607997,-0.045284316,-0.19323982,0.3391105,0.13315096,-0.29915053,0.85116214,0.14670862,1.0743276,-0.09590249,-0.39493397,0.069480814,0.35986227,-0.09747182,-0.11391631,-0.25976402,0.7596286,0.63136035,0.0048225084,-0.1541045,-0.3029877,-0.34059843,0.26809314,-0.26966208,-0.19190283,0.033585288,-0.48229104,-0.33525187,0.31146342,0.32270804,-0.06897624,-0.042049725,0.05523305,0.13281201,-0.015916191,0.23600282,-0.52599245,0.07131109,0.3479443,0.20921156,-0.0119353095,0.12454663,-0.3719712,0.43100154,-0.6283671,0.070120126,-0.19427428,0.1304947,0.030334089,-0.24619038,0.15180202,0.06603284,0.426603,-0.38279602,-0.33069882,-0.22691065,0.61284,0.032348227,0.06643841,0.6059568,-0.30144998,0.20059995,-0.03341531,0.36253992,1.0591751,-0.29394296,-0.04204044,0.33390793,-0.42526838,-0.5788709,0.33631468,-0.18204829,0.3249162,0.056361463,-0.40872923,-0.4400135,0.2442369,0.25728244,0.004150625,-0.047750007,-0.4272363,-0.19617344,0.39389038,-0.21977085,-0.33170566,-0.37275106,0.20802563,0.5584756,-0.44758552,-0.3370539,0.058653656,0.15240666,-0.2667948,-0.48265442,-0.024547163,-0.28024343,0.35391146,0.14884885,-0.17874718,0.06683065,0.037935965,-0.47038513,-0.03727995,0.105130814,-0.44658482,-0.041964874,-0.19225755,-0.08912333,0.80462223,-0.20576115,-0.21573871,-0.61649185,-0.5423244,-0.79805744,-0.47187513,0.747701,0.28418785,0.1797878,-0.51374555,0.10721526,0.0038870582,0.24475746,0.051370025,-0.32095224,0.4433085,0.19083643,0.41395494,-0.22846001,-0.75526136,0.23809446,0.10507368,-0.15761207,-0.55338776,0.48582605,0.021578046,0.7939673,0.08015032,-0.052399907,0.30202264,-0.5835106,0.025362289,-0.20081188,-0.24000295,-0.719097,0.0026064834,104 +142,0.3254008,-0.08864724,-0.45370927,-0.22267224,-0.040822204,0.113619246,-0.2233838,0.25848043,0.04372239,-0.52268046,0.17856668,-0.30619413,0.047079563,0.16408825,-0.010450216,-0.6211886,-0.021781301,0.07853089,-0.4217099,0.55866313,-0.59601474,0.18245234,0.2553,0.012008484,-0.28318936,0.27790567,0.34378067,-0.41754436,-0.16243683,-0.16955802,0.0010654847,0.013576537,-0.44179916,0.26326516,0.01536836,-0.12961191,0.27475637,-0.28777802,-0.24156919,-0.5034004,0.016665565,-0.6227681,0.2593793,0.093811244,-0.18298177,0.5442018,-0.028451996,0.059086647,-0.32785743,0.23268041,0.30949828,-0.05606358,-0.18756455,-0.2860144,-0.22363923,-0.6693995,-0.4752287,0.012128202,-0.41310012,-0.19759159,-0.16754727,0.091842294,-0.28262034,-0.036203794,-0.17716941,0.3464935,-0.3789598,-0.059051774,0.04829866,-0.2814809,0.31172848,-0.4382197,-0.01756403,-0.049957898,0.08147419,-0.01993124,-0.025805503,0.23015116,0.2447126,0.56433797,-0.045990236,-0.13163929,-0.20641035,-0.21407562,0.19104406,0.5708714,-0.17592797,-0.2879071,-0.09242327,-0.15206541,0.032685604,0.15807216,-0.15078464,-0.40497145,-0.17079973,-0.035662603,-0.4713343,0.07268823,0.46456024,-0.44621557,-0.073731296,0.44184396,0.21193293,-0.13734823,-0.12515314,-0.044875342,-0.12593275,-0.48224747,-0.073801346,0.26707545,-0.13908507,0.49321786,-0.13592686,0.18481432,0.5930402,0.019223355,0.08421775,-0.16892855,-0.101353124,0.123095036,-0.12903498,-0.13219346,0.18568334,-0.41753143,-0.1538022,-0.5005104,0.7492254,0.015229664,-1.0079987,0.45895508,-0.35268268,0.055820726,-0.13710405,0.62573737,0.55075765,0.49164113,-0.09485642,0.65656,-0.61312175,0.14641912,-0.21508284,-0.33369765,0.2676192,0.19798112,0.1418967,-0.4151804,-0.0190152,0.195755,-0.08378028,-0.15481399,0.51631206,-0.3187459,0.032766122,0.22551918,0.8132891,-0.3464857,-0.1375302,0.312838,1.015015,0.66318685,0.114173315,1.2511809,0.24576458,-0.2365109,0.08312974,-0.40001076,-0.7068607,0.13738172,0.3904587,0.7089004,-0.00403746,0.04784452,0.0068986733,0.2511042,-0.11167826,0.04074518,-0.30966637,0.21742164,-0.08501204,-0.11274357,-0.26462963,-0.26010418,0.065481916,0.036820985,-0.036741234,0.20305175,-0.0722007,0.26594034,0.009770107,1.7639561,0.004692069,0.24078181,0.14709324,0.22143364,0.23194058,0.06370536,-0.14323163,0.46237764,0.17763628,0.0045670867,-0.5326846,0.13974898,-0.076975,-0.5258915,-0.017294744,-0.27261728,0.12992376,-0.16215488,-0.35755584,-0.047174048,0.1557536,-0.47808304,0.3746157,-2.9010975,-0.11232246,-0.07503225,0.27316418,-0.34504643,-0.21915847,-0.123934455,-0.34443036,0.56118244,0.4977637,0.5295235,-0.5276206,0.32230723,0.36141637,-0.32856673,-0.08185489,-0.706425,-0.07043617,-0.1776088,0.34700906,0.028787227,-0.2402635,-0.09600724,0.06872937,0.37597263,-0.12975784,0.007938066,0.22939914,0.355734,0.3132355,0.4829704,-0.090492815,0.4114583,-0.18010888,-0.05951232,0.17041442,-0.28161913,0.21326965,-0.16578022,0.1691485,0.19979528,-0.41574365,-0.7223725,-0.40120354,-0.30884913,1.0839635,-0.425088,-0.32431895,0.31256884,0.3143126,-0.16534057,-0.019769816,0.35732853,0.04565634,-0.038911596,-0.6839033,0.037756708,0.10956605,0.37618366,0.049364574,0.0639275,-0.42260057,0.5415433,-0.021154102,0.6010429,0.50530326,0.087651186,-0.06952848,-0.2781134,0.070533484,1.0121472,0.18072456,0.06795716,-0.15823112,-0.17069921,-0.18109451,-0.03599174,0.060798433,0.2731064,0.71805155,0.003693829,-0.106525965,0.29067054,-0.21834224,-0.06491001,-0.07133394,-0.41475365,-0.062506154,0.015044719,0.5129666,0.41523492,-0.10712523,0.34192452,-0.09200491,0.35996014,-0.16534074,-0.4150651,0.4930846,0.5707716,-0.055493217,-0.07868501,0.39338773,0.54170775,-0.12371494,0.5050052,-0.43964085,-0.36960122,0.4565938,-0.1645965,-0.3767074,0.3009891,-0.36647186,0.09870554,-0.83649987,0.24027437,-0.20560694,-0.34357935,-0.68223757,-0.19290055,-3.7461517,0.08477443,-0.1846508,-0.2120126,0.14308873,0.2036005,0.28888685,-0.4965255,-0.34715107,0.14154243,0.13211872,0.37293586,0.05251611,0.03238927,-0.34035534,-0.06329301,-0.19027586,0.21797103,-0.049681004,0.11110748,0.019593898,-0.36688516,0.00059929094,-0.2997506,-0.19514342,0.1899321,-0.40911463,-0.2470769,-0.17220522,-0.4472314,-0.39394602,0.60304743,-0.44985035,-0.07475772,-0.011318179,0.10981985,-0.069287166,0.3498679,0.11929323,0.08227597,-0.11657481,-0.023517199,-0.17760251,-0.29062876,0.17583364,0.14941348,0.26854932,0.52545434,-0.0069364705,-0.08639989,0.6030361,0.3734586,0.055965822,0.6361892,0.3185902,-0.063044325,0.2640976,-0.29741192,0.08048013,-0.5548131,-0.37866166,-0.19316603,-0.33381793,-0.52738446,-0.038113903,-0.294198,-0.61170024,0.36657238,0.07045018,-0.27136832,0.087703705,0.29432604,0.25830093,-0.12479847,0.0933534,-0.15598835,-0.09822245,-0.39891848,-0.4042449,-0.76603675,-0.25729057,0.23388131,1.009113,-0.11887886,-0.19260073,-0.06458147,-0.1497949,-0.055001438,0.031787865,0.14467897,0.38407573,0.24053663,0.0748766,-0.6995237,0.5929432,-0.091563225,-0.054508153,-0.42547455,0.0830444,0.5115775,-0.6427794,0.38056132,0.41382778,0.21039674,0.04361581,-0.6049803,-0.33316162,0.16011666,-0.17893054,0.332881,-0.07651396,-0.7851283,0.56369245,0.1716585,-0.1926649,-0.6817268,0.29302117,-0.015133127,-0.29284626,0.10801172,0.2516308,0.056317296,0.14618246,-0.30185536,0.23543125,-0.6228193,0.25876835,0.2703796,-0.006371956,0.55383205,-0.14797106,-0.09379927,-0.6925518,-0.26375374,-0.37368613,-0.19714454,0.2479938,0.086946644,0.15182486,0.13619594,0.09192209,0.4163628,-0.26889068,0.13578998,-0.079652525,-0.10645345,0.42820483,0.3686412,0.26521537,-0.38190588,0.5194697,-0.18708213,0.12927642,-0.27982035,-0.023189541,0.3602994,0.29278243,0.050131038,-0.1310759,-0.20948291,0.36098063,0.82349885,0.26767528,0.26505572,0.16325574,-0.2271033,0.52800184,-0.023888005,-0.057565905,-0.04550391,-0.40587464,-0.17102545,0.0497928,0.23431195,0.29858118,0.05398543,0.49051145,-0.22886708,-0.010420748,0.12387704,0.3354643,0.21205507,-0.35462973,0.41445974,0.19750956,0.41861603,0.7597724,0.07499354,0.1190188,0.6450843,-0.37114462,0.17898317,0.19780949,-0.12120488,-0.48960128,0.46978396,-0.45862418,0.16312239,-0.106577285,0.026104778,0.110551566,-0.03952,0.3820041,0.84591806,-0.0796573,0.1187866,-0.10718904,-0.20749405,0.23854952,-0.24472739,0.06056916,-0.25775388,-0.37084204,0.60094553,0.18637675,0.25818595,-0.14475304,-0.10971388,0.24845745,-0.027064474,0.36364168,0.06256593,-0.003672115,0.06720904,-0.6253818,-0.39008054,0.64244425,0.06834696,0.08745486,0.12189037,-0.14985196,0.35307086,-0.21661608,-0.1225461,-0.13116173,-0.41444352,0.1293244,-0.21369672,-0.26629344,0.5220576,-0.19239578,0.48311552,0.04237687,0.05137586,-0.1967855,0.12885484,0.2717214,0.6394927,-0.03726946,-0.21808712,-0.17471525,-0.15753727,0.13766183,-0.2141015,-0.063158646,-0.18753828,-0.0405339,-0.87716484,0.4240238,-0.26828107,-0.19020618,0.108121954,-0.20515108,-0.014254824,0.46024564,-0.08847826,-0.032810338,-0.13351783,-0.010928352,-0.28274268,-0.17292567,-0.3087636,0.19842722,-0.15113392,0.033434074,-0.1179764,0.014948142,0.03706998,0.4762705,0.17519554,0.011437718,0.109663375,0.21740964,-0.3268434,-0.08202695,-0.0024462917,0.34352893,0.10237106,0.09163098,-0.20059963,-0.1759331,-0.24672155,-0.11767989,-0.13786754,0.25918406,0.0651377,-0.45238456,0.72243786,-0.10244837,0.97604483,0.043281615,-0.2872711,-0.019064816,0.4761617,0.088002905,0.16302581,-0.23544079,0.87359023,0.7007408,0.054102413,-0.18646862,-0.37369376,-0.1556041,0.16213721,-0.16660766,-0.22044353,-0.039763156,-0.6979687,-0.3681798,0.18744682,0.16632809,0.10878042,-0.110551,-0.03768123,-0.0013952652,0.25779104,0.26077145,-0.37864283,-0.17503525,0.27588445,0.17834829,0.1868538,0.16509885,-0.3567302,0.36968175,-0.57762605,0.15003926,-0.24144538,-0.014845666,0.09438055,-0.01413182,0.15575983,-0.047055103,0.2209163,-0.16145083,-0.4719497,-0.06061182,0.50896245,0.24754487,0.38731745,0.81855065,-0.12418081,0.0045220214,0.08607408,0.51852304,1.1787742,-0.21657269,-0.03061685,0.50982434,-0.30458677,-0.60704243,0.07986786,-0.29221788,0.11552784,-0.08317949,-0.41217008,-0.2863351,0.2281114,0.15313224,-0.20984697,0.04210667,-0.42266348,-0.14772321,0.27515224,-0.31529653,-0.25794348,-0.2446029,0.10742488,0.90546745,-0.3957802,-0.15698345,0.033881795,0.04670364,-0.45454022,-0.5619241,0.056578986,-0.39503956,0.23403342,0.41335827,-0.26027492,0.11540581,0.12610887,-0.4754074,0.20812537,0.21784891,-0.36482608,-0.032349158,-0.39203072,-0.1314523,0.8128221,0.041744456,0.007930631,-0.5640949,-0.6015827,-0.7694923,-0.33516228,0.5753182,-0.1222874,-0.060329914,-0.33801767,-0.049586535,0.00041104952,-0.08143347,-0.13251397,-0.43603817,0.40659764,0.07788013,0.343717,-0.16417271,-0.6893597,0.009758528,0.039634474,-0.16353355,-0.49013615,0.45748717,-0.17996755,0.8294674,-0.027205443,-0.03055528,0.45651606,-0.65350443,0.16156077,-0.47544098,-0.35391364,-0.47835132,-0.00321724,110 +143,0.22944444,-0.14716125,-0.44954574,-0.22527005,-0.29191858,0.24598888,-0.26972008,0.11945342,0.197892,-0.28476372,-0.007051901,-0.040800545,-0.02371537,0.39321455,-0.27125826,-0.7357791,0.06791997,0.0111742,-0.5287541,0.41714764,-0.5453153,0.36221406,0.18198928,0.38659403,0.03042117,0.24105667,0.24221903,0.009408823,-0.041067924,-0.12362967,-0.205081,0.29869837,-0.5008405,0.2596252,0.0053539197,-0.28809625,-0.08863881,-0.3332287,-0.3411892,-0.5559753,0.39608428,-0.74790895,0.46827573,-0.1961934,-0.45085353,0.0022438585,0.16869469,0.13236181,-0.34778303,0.104714714,0.18644889,-0.04016621,-0.060628764,-0.031027472,-0.23805997,-0.5181026,-0.5442946,-0.042364217,-0.6564888,-0.08039159,-0.25440195,0.29799318,-0.2981586,-0.0113388775,-0.1463427,0.3550731,-0.47175092,0.025645088,0.18100436,-0.33792564,-0.04303883,-0.52653944,-0.075996466,-0.023652753,0.26321232,0.0052757463,-0.14910175,0.20731598,0.3394064,0.5727499,0.008270327,-0.17398588,-0.30635548,-0.10915935,-0.0036823512,0.46446413,0.034951102,-0.3627827,-0.236281,-0.035366103,0.30707023,0.15763427,0.16387342,-0.45753926,-0.07176183,0.024234017,-0.26229432,0.43735436,0.46763736,-0.50311005,-0.22748694,0.48727384,0.17399193,0.073831625,-0.3265785,0.3253509,-0.04776625,-0.4249038,-0.17471609,-0.06032092,-0.022376243,0.55738664,-0.21610974,0.4115175,0.73790973,-0.022570593,-0.050556935,-0.008002695,-0.26842645,-0.17796096,-0.20553856,-0.039254084,-0.009213706,-0.3434882,-0.007568951,-0.114861704,0.77038264,0.030690176,-0.8838757,0.45609435,-0.403647,0.09669501,-0.099337064,0.5190242,0.75073487,0.4401438,0.12814909,0.8998806,-0.5230192,-0.07093584,-0.022638854,-0.34504014,0.07825644,-0.03913508,-0.021921257,-0.41374156,0.10501461,0.13482067,0.14538455,0.054058813,0.46819755,-0.3157666,-0.062293403,0.040899627,0.6063077,-0.4003256,-0.0922207,0.84348035,1.0297908,0.9981541,0.043517735,1.3224078,0.36491463,-0.02542273,-0.049478035,-0.196311,-0.5578087,0.059254605,0.35309803,0.34419262,0.23866738,0.086734734,0.025662163,0.51693624,-0.19650196,-0.069252826,-0.030819066,0.26082176,0.04089064,-0.12788825,-0.32876787,-0.15992837,0.28862846,0.1839475,0.09713903,0.15513723,-0.089969546,0.41453597,0.14901759,1.2477635,0.017945787,0.13881491,0.11467852,0.3431517,0.24424712,-0.15102744,-0.060771126,0.2186553,0.40440422,-0.211675,-0.5762993,-0.16508374,-0.27984017,-0.5469939,-0.19165084,-0.2795406,-0.38244823,-0.20213209,-0.51523983,-0.19217633,0.14054559,-0.42264795,0.42916107,-2.8400066,-0.20795706,-0.23146819,0.3161833,-0.10389149,-0.2624187,-0.33303645,-0.50907636,0.38144362,0.4715825,0.30194423,-0.5631253,0.50130725,0.346547,-0.2190757,-0.15866153,-0.59905,0.13184099,-0.1550274,0.42496306,0.027743736,-0.2796383,-0.13881192,0.18725896,0.7373194,0.10672193,0.02920594,0.16701649,0.46986195,-0.046754997,0.5634492,0.00401514,0.55722564,-0.06391199,-0.023820508,0.34241942,-0.43208057,0.352112,-0.10976018,0.15724331,0.44195968,-0.514693,-0.8016624,-0.59326166,-0.14903186,1.2067568,-0.34271702,-0.36628866,0.29998988,-0.1112337,-0.27854717,0.12381033,0.6081908,-0.10808773,0.047974978,-0.61573327,0.06846488,-0.16708805,0.16941322,-0.15043592,0.041340955,-0.43078664,0.76551276,-0.17267634,0.7073341,0.3701295,0.12051873,-0.17419931,-0.4317898,0.06778946,0.80243134,0.4346784,0.05767625,-0.09829109,-0.14506236,-0.27407163,-0.21060729,0.03898023,0.5588869,0.5012414,0.12124233,0.22103772,0.31724337,-0.08223912,0.06412949,-0.22245952,-0.18719843,-0.0062492937,0.13371833,0.5939617,0.67003703,-0.2249295,0.27745882,-0.092148624,0.21403141,-0.14218098,-0.62446374,0.5363495,0.52544576,-0.12742493,-0.34458447,0.53086275,0.3968693,-0.12555051,0.34504694,-0.4289612,-0.39654115,0.5707985,-0.17859516,-0.40920368,0.2863733,-0.38152346,-0.054391645,-0.80669785,0.27881438,0.037703946,-0.5304279,-0.4729344,-0.33902958,-3.7218072,0.052583836,-0.112285875,-0.07451946,-0.14100187,-0.2362299,0.34415257,-0.4486232,-0.5939275,0.029607004,0.012276453,0.4120991,-0.04976856,0.19263607,-0.311471,-0.10288529,-0.25865245,0.24133702,-0.031208845,0.31058884,-0.0075478544,-0.22320278,-9.389719e-06,-0.2755484,-0.51106924,-0.050873145,-0.45225802,-0.49027622,-0.0034074604,-0.36338228,-0.20386519,0.7389051,-0.37214157,0.027612654,-0.3279606,-0.071372695,-0.22498092,0.32625392,0.16023222,0.1312366,-0.033957217,0.019598132,0.004432758,-0.3033719,0.23517497,-0.026702853,0.22094968,0.43910658,-0.035748005,0.14000271,0.459367,0.45655626,-0.10082388,0.751526,0.17009373,-0.06479582,0.34694615,-0.105769664,-0.32775936,-0.6844808,-0.33615348,-0.10771204,-0.5227217,-0.34414235,-0.15879424,-0.37019303,-0.7140222,0.2832072,0.06434082,0.078240715,-0.17762785,0.22155164,0.28681037,-0.120900474,0.119128734,-0.007284735,-0.19586954,-0.49427655,-0.5302506,-0.6838478,-0.51005614,0.07684323,0.9488109,-0.0067285853,-0.24181484,0.03731884,-0.3102724,-0.04816269,0.03816318,0.294274,0.13949658,0.32220352,-0.15135759,-0.8103855,0.35342762,-0.35535127,-0.04310132,-0.4869383,-0.061532296,0.6500917,-0.57640433,0.48107302,0.33472034,0.31367937,0.060598683,-0.6888913,-0.2473754,-0.050542887,-0.23234573,0.60566545,0.24840961,-0.60026616,0.5032636,0.06638015,0.041300096,-0.60499424,0.37979242,-0.03493358,-0.1754718,0.06443238,0.33581296,0.10345759,-0.17243476,-0.10602747,0.15242891,-0.53443784,0.43276554,0.15120047,0.018248383,0.6066798,-0.14094314,-0.31308448,-0.42925853,-0.43759516,-0.49029616,-0.18106993,-0.1147943,0.048456024,0.18037266,-0.022375472,-0.16321565,0.45376894,-0.260129,0.2593231,-0.08122601,-0.08659109,0.34795666,0.54702777,0.32331365,-0.49805835,0.6510713,0.15470923,0.16248241,-0.10653354,0.08678417,0.53157043,0.25849754,0.39905772,-0.14222108,-0.11953269,0.13878931,0.7732323,0.2425985,0.3144305,0.17913848,-0.21992354,0.2942321,0.07409026,0.06437468,-0.072966255,-0.32084236,0.004340146,-0.18827482,0.23690033,0.34790167,0.19089845,0.358088,-0.110630766,-0.12250649,0.18561739,0.1374404,-0.13763371,-1.0485114,0.31419304,0.18865989,0.80988663,0.50431794,-0.00023171106,-0.040730134,0.47922954,-0.25828493,0.048794057,0.26857272,0.09034162,-0.40310135,0.57146806,-0.46597165,0.5201568,-0.22891946,-0.04796913,0.19086394,0.24231143,0.22675778,0.8144873,-0.018333126,0.15899569,0.019090036,-0.23537806,0.039697886,-0.24474487,0.11107974,-0.34612188,-0.25205192,0.6360222,0.48979503,0.24093321,-0.29735696,-0.09410203,0.026856385,-0.1925804,-0.083264954,-0.0358016,-0.102112435,-0.31700534,-0.6836534,-0.35324866,0.57861155,0.038554873,0.051607702,0.110791676,-0.35350165,0.2930113,-0.15255699,-0.004683336,-0.056944136,-0.46205133,-0.04153951,-0.3150056,-0.5958624,0.3317565,-0.37543476,0.3384346,0.19120164,-0.047988765,-0.1777834,0.124657445,0.08312643,0.679519,0.02926005,0.027644353,-0.2619466,-0.057171397,0.33953694,-0.30743307,-0.23707327,-0.35848525,0.26548102,-0.5718926,0.3723737,-0.25322077,-0.16438057,0.025851047,-0.057432517,0.023405302,0.35460657,-0.21871224,-0.04168664,0.27170306,0.12522939,-0.28790125,-0.03836223,-0.41190898,0.272429,0.04863548,0.14734305,0.14838387,-0.10363578,-0.14100756,0.2930086,0.13251194,0.23143464,0.3116,-0.02311549,-0.34310323,-0.018783135,-0.020061605,0.60142344,0.1883358,-0.061772957,-0.27384466,-0.52069753,-0.31148174,0.43540654,-0.10354342,0.14908934,0.15306526,-0.4544892,0.6494929,0.23513243,1.0007795,0.14048497,-0.39553615,0.13291796,0.53738827,0.12862696,0.16392459,-0.19083132,0.8945227,0.5517094,-0.15259504,-0.1745899,-0.35636237,-0.07421243,0.072820954,-0.29845485,-0.30550846,-0.18512985,-0.7198581,-0.09609617,0.050859764,0.1147444,0.13405772,-0.11309845,-0.08340044,0.1302471,0.1262115,0.4122009,-0.5889893,-0.093140386,0.41076177,0.18359655,-0.0810129,0.102449164,-0.39668694,0.38322696,-0.64344895,0.09360324,-0.42048606,0.15454635,-0.12406177,-0.14833114,0.22224905,0.047428623,0.3071394,-0.28945217,-0.40856358,-0.2873067,0.6231914,0.14416236,0.25254685,0.6926417,-0.18935475,-0.16414304,0.13372903,0.6428946,1.3879752,-0.051982697,0.14483753,0.3289338,-0.3302932,-0.57332367,0.050112557,-0.49933892,0.029670795,0.041681733,-0.29098442,-0.24966116,0.24654087,0.056673657,0.056559753,0.07068982,-0.52639973,-0.31490734,0.4431819,-0.15942399,-0.14202724,-0.27049887,0.1272776,0.60730165,-0.33446863,-0.23017938,0.0058375834,0.36639258,-0.24115436,-0.6813259,0.18191361,-0.24316676,0.37885496,0.22417274,-0.26883203,-0.01070774,0.23084368,-0.47670588,0.16693674,0.46901193,-0.33739442,0.03501801,-0.33824494,-0.14245996,1.0941939,-0.046118878,0.17551771,-0.5937051,-0.47454348,-0.955452,-0.27566254,0.13614918,0.15361811,-0.0635201,-0.57436097,-0.21326998,-0.16986027,0.120211564,0.10726121,-0.49195448,0.4326123,0.094214365,0.54285926,-0.096627496,-0.85412705,0.021158163,0.07584231,-0.24285723,-0.42234612,0.7143986,0.008975104,0.62804383,0.15022118,0.011964833,0.10672056,-0.6512127,0.31102535,-0.30768266,-0.05811371,-0.7239339,0.17736068,114 +144,0.31832233,-0.21892,-0.62400126,-0.19801927,-0.3776127,0.0022731542,-0.26042905,0.22368284,0.3176377,-0.13845085,-0.141268,0.11828928,0.025792992,0.27501872,-0.13023779,-0.6969563,-0.1100266,0.22600028,-0.6530656,0.46361637,-0.42534444,0.39760256,0.045019064,0.29849255,0.065184295,0.50413,0.20692001,0.06411991,-0.054634035,0.03816248,-0.37330168,0.25714725,-0.31665313,0.1738547,-0.02160375,-0.15527129,0.114722535,-0.22050259,-0.21542828,-0.72580063,0.07346888,-0.82969844,0.5844435,-0.23749372,-0.15263371,-0.11431443,0.25925204,0.22188243,-0.49438223,-0.068513565,0.1498871,-0.40277842,-0.34586126,-0.34403285,-0.14844385,-0.5475029,-0.37106225,-0.048010167,-0.71254885,-0.2886445,-0.22693641,0.21381909,-0.34222546,-0.015925828,-0.08927082,0.4348653,-0.4157533,-0.029963596,0.2247619,-0.3362606,0.020416351,-0.5885391,0.025522232,-0.119036056,0.43869838,0.1366238,-0.21583469,0.42757156,0.36721224,0.49262163,0.36790025,-0.3536113,-0.38994113,-0.25005037,0.102257475,0.28839296,-0.2489574,-0.29823872,-0.19080216,0.041310225,0.45234734,0.25196615,0.051230326,-0.049563654,0.01618111,-0.0773303,-0.15986103,0.57513887,0.522725,-0.42241427,-0.24933973,0.336088,0.51460904,0.15816508,-0.28011402,-0.034562565,-0.14108321,-0.44808128,-0.259515,0.00091495516,-0.12356926,0.43225244,-0.1875096,0.023475686,0.8624998,-0.18035312,-0.14512059,0.07358395,0.13987878,-0.16128306,-0.3021521,-0.14927877,0.07295559,-0.58744186,-0.060573895,-0.22961421,0.687179,0.14177507,-0.60828894,0.407729,-0.29226273,0.14504203,-0.060591187,0.73528653,0.7244216,0.62959075,0.3266212,0.9219414,-0.3262124,0.23931177,-0.12063868,-0.38747194,0.03196123,-0.19384626,0.19588003,-0.5147036,0.3594471,-0.13649948,-0.012252744,0.17765054,0.34541407,-0.5113795,-0.1314878,0.26777294,0.80697554,-0.31719667,-0.13551651,0.7516795,1.1382301,0.94867414,-0.046707053,1.1957285,0.23096615,-0.28159052,-0.100965925,-0.30810732,-0.5201086,0.25253758,0.38872418,0.076020986,0.32656002,0.038249586,-0.014752205,0.32456544,-0.43697172,-0.11438747,-0.12458888,0.32188728,0.057473682,0.03736542,-0.4939933,-0.0860658,0.1394594,-0.086859785,0.35636082,0.23298164,-0.3058909,0.45935905,-0.0017155528,1.1311307,-0.11969752,-0.0076191663,0.0033285082,0.57001686,0.38577572,0.09038511,0.010422013,0.5083059,0.38744944,-0.07681465,-0.5618798,0.124417976,-0.45760304,-0.34385964,-0.17259912,-0.3496757,0.0077142077,0.22083692,-0.27295843,-0.29685062,0.02367915,-0.32371286,0.32563254,-2.6043468,-0.27038434,-0.14837542,0.3112587,-0.3081052,-0.16577671,-0.08080271,-0.49731112,0.25194442,0.20165531,0.44977996,-0.53054935,0.48893943,0.54990673,-0.62653905,-0.23194546,-0.5733617,-0.07266704,-0.14072704,0.63407683,0.19925073,-0.19264857,-0.2755312,0.054925445,0.7732548,0.030955493,0.18588564,0.59130687,0.3757443,-0.08349053,0.41154978,0.13896093,0.727638,-0.32531983,-0.23389012,0.38287833,-0.24683245,0.2558158,-0.19824511,0.09805039,0.547641,-0.42909902,-0.87335175,-0.6428097,-0.051630434,1.1570399,-0.37418938,-0.5673615,0.18201618,-0.1752572,-0.15521677,0.097282626,0.6621731,-0.042764504,0.09308095,-0.62728924,0.22004388,-0.019542877,0.26460642,0.10560133,-0.06735599,-0.261382,0.71854234,-0.1009734,0.57962745,0.17773663,0.35148895,-0.21266046,-0.25966606,0.11606897,0.8891768,0.4054961,-0.06516843,-0.15977901,-0.2772828,-0.12137072,-0.2852599,-0.01878767,0.63287884,0.6990214,-0.02302425,0.07427252,0.25706565,-0.053844746,0.092895985,-0.24785855,-0.22963998,-0.07728282,0.15439363,0.33822325,0.6562099,-0.13244793,0.36315617,-0.19517629,0.35611555,0.0036788443,-0.6624985,0.6422282,0.6179782,-0.30794534,-0.15834488,0.7292337,0.45622733,-0.5077667,0.47192875,-0.69167423,-0.35030204,0.55801064,-0.29224452,-0.37340528,0.1005334,-0.23088999,0.16590884,-0.65606743,0.22492243,-0.23146054,-0.6032862,-0.38597074,-0.12306147,-3.675448,0.1669449,-0.32436916,0.024758132,-0.37146002,-0.121835686,0.3191484,-0.5877221,-0.48576388,0.17739964,0.2582442,0.6699118,-0.08719646,0.126845,-0.24700724,-0.35876408,-0.023051571,0.3003783,0.025035245,0.287329,-0.12767272,-0.39384562,0.017075742,0.062028386,-0.47689238,0.13456677,-0.55844,-0.38160405,-0.07890596,-0.56476665,-0.17725798,0.6707062,-0.33767125,0.031844594,-0.30184487,0.21004926,-0.11122282,0.063769415,0.045699697,0.15158863,0.10254605,-0.12664987,0.26087287,-0.30903018,0.44686157,-0.12783328,0.37764028,0.15089189,0.0126439575,0.031879943,0.5394743,0.64899814,-0.3195539,1.1437227,0.31330487,-0.18300582,0.32849413,-0.11657712,-0.49230713,-0.69465,-0.42610657,0.081629746,-0.5173517,-0.24922228,0.11645709,-0.36741525,-1.0724014,0.6644284,-0.052340522,0.48645872,-0.06029688,0.36257318,0.51335233,-0.26901817,-0.068061545,-0.13954026,-0.34312946,-0.49781743,-0.21552506,-0.75521725,-0.51668346,0.04086613,0.92664784,-0.41387874,-0.009922341,0.017519506,-0.2611614,-0.09289697,0.07788045,0.28802013,0.3001388,0.5479515,-0.057401516,-0.6320165,0.35318077,-0.13111669,-0.07484929,-0.57891756,0.22673334,0.5550589,-0.7700775,0.5411883,0.4052343,0.024491219,-0.012886198,-0.52267677,-0.1915959,-0.14356123,-0.090185374,0.589145,0.20398097,-0.8440098,0.6034712,0.27161464,-0.4178676,-0.6744406,0.19933383,-0.1657061,-0.10051472,-0.13466215,0.40971145,0.19159634,-0.110492304,-0.17925343,0.052956842,-0.3530017,0.31967112,0.16765124,-0.18411057,0.35425344,-0.13562395,-0.4372403,-0.77120847,-0.29619455,-0.5671661,-0.19363898,0.20797314,0.012478837,-0.03953176,0.050364025,-0.075627714,0.49386257,-0.3152536,0.12330442,0.02133882,-0.39334697,0.40992782,0.4896013,0.3360618,-0.39033195,0.52327895,0.074681364,-0.26658112,-0.09642749,-0.03216309,0.47084695,-0.02449801,0.43776256,-0.058953013,-0.06739426,0.28614452,0.8056242,0.08178456,0.43130007,0.045641087,-0.14247163,0.4303085,-0.005644691,0.10953428,0.031722177,-0.41442928,0.0035709182,-0.1641229,0.21336517,0.63784206,0.30957633,0.49591026,0.092191964,-0.11883953,-0.08270993,0.047661748,0.082625836,-1.228172,0.40353042,0.15779285,0.7808164,0.18200137,0.25449672,-0.3614765,0.7902553,-0.16174693,0.049188387,0.37365052,-0.0029598593,-0.31636536,0.65222424,-0.59560305,0.424537,-0.06324434,-0.020463474,0.23920168,0.10206497,0.2741763,0.95275855,-0.3024338,-0.074899785,-0.10194551,-0.18126851,0.050564885,-0.32976002,-0.031553924,-0.34727228,-0.576621,0.6379293,0.34074402,0.3900557,-0.17514925,-0.12332379,-0.005713743,-0.20032574,0.26307708,-0.2056031,0.0514886,-0.0021547575,-0.4272775,-0.17085448,0.49826214,0.19640249,0.14667231,-0.25704405,-0.101703316,0.05051147,-0.11079175,-0.09904739,-0.058018252,-0.4083905,-0.063219726,-0.09371303,-0.6663007,0.6553217,-0.20845231,0.089596584,0.20739351,-0.0840362,-0.17604272,0.29576027,0.1723569,0.68344134,0.12548266,-0.17599675,-0.41625118,0.076822236,0.16928656,-0.28494936,0.22317669,-0.42997894,0.13869114,-0.52415115,0.5683299,-0.3987728,-0.46189362,0.30480227,-0.3161582,0.009169014,0.4685299,-0.10810902,-0.1365222,0.16944557,-0.051520698,-0.36975572,-0.35249206,-0.30344766,0.21203999,0.06349607,-0.027920691,-0.26655358,-0.39963835,-0.14902487,0.41766325,0.04193201,0.18501256,0.17062283,-0.07646991,-0.08463119,0.19936164,0.20474546,0.5317085,0.16422053,-0.062055264,-0.33177522,-0.41831493,-0.42667913,0.050118633,-0.025520945,0.13412526,0.081338935,-0.22181793,1.0293208,-0.06766525,1.2471071,-0.018093575,-0.4272319,0.02098773,0.69093996,-0.060248177,0.14958976,-0.17133328,0.9150093,0.62748045,-0.08182047,0.027827676,-0.60254997,-0.058519244,0.46182722,-0.42391473,-0.057144213,-0.08881729,-0.6208815,-0.47443253,0.38419655,0.18797614,0.23052342,-0.08574751,0.12304915,-0.005052185,0.20802145,0.44577816,-0.6951259,-0.1217706,0.28126186,0.16593847,-0.19706102,0.25824812,-0.36589852,0.4735942,-0.7803919,0.08862403,-0.42599303,0.06745991,-0.21342368,-0.45514306,0.24157764,-0.060493287,0.42759424,-0.32477432,-0.4016115,-0.15787284,0.49472135,0.023755586,0.05388447,0.5436801,-0.31223163,-0.05427934,0.19452009,0.60425085,1.1314771,-0.32233682,0.14940305,0.33442557,-0.40702865,-0.58341193,0.40725186,-0.36694038,-0.04083344,-0.02729098,-0.40322247,-0.32426766,0.24398385,0.22716531,0.104468174,0.22891034,-0.547139,-0.19613902,0.1735108,-0.3438273,-0.05521198,-0.00981325,0.48133644,0.5691414,-0.3814642,-0.44866392,0.061065625,0.46831152,-0.21571782,-0.6366016,-0.0132173365,-0.17233673,0.41830376,0.28476277,-0.2844333,-0.020151345,0.024775958,-0.5542925,-0.035558917,0.34936234,-0.39596665,0.14178883,-0.3452795,0.15898687,0.6678867,-0.12846638,0.20190945,-0.72557384,-0.4874588,-0.91559154,-0.32764733,0.021511538,0.13931698,-0.06008307,-0.5599725,0.05277017,-0.27919844,-0.07678523,0.14879252,-0.62310326,0.42813158,0.14478633,0.4816633,-0.3829114,-0.9613726,-0.03169297,0.15533921,-0.15772398,-0.61594087,0.6283826,-0.15444864,1.0223446,0.104766764,-0.118423134,0.107117385,-0.53017706,0.1824154,-0.4782693,-0.2851641,-0.71396506,0.05099685,119 +145,0.5913151,-0.15718399,-0.5354785,-0.10436858,-0.38206002,-0.004946629,-0.117645785,0.6725362,0.23369758,-0.4064207,-0.21461795,-0.20940547,0.07891701,0.22817574,-0.2935401,-0.48706678,0.06600399,0.18506426,-0.28361544,0.56250507,-0.45021704,0.16516949,0.17129819,0.39226308,0.28025395,0.06250014,0.203888,0.036003962,-0.1983814,-0.38936612,-0.11422641,0.36620182,-0.41919076,0.092123434,-0.3576613,-0.4798451,-0.076610886,-0.46554774,-0.27186057,-0.80682176,0.30927074,-0.85539323,0.4268066,0.16874097,-0.43712643,0.27842045,0.08322358,0.046886586,-0.24573237,-0.1493296,0.118811555,-0.16361,-0.034090262,-0.21946952,-0.23867017,-0.31250852,-0.7215777,-0.019523537,-0.36896268,0.03875963,-0.4363294,0.23335934,-0.31619588,-0.13790129,-0.15854457,0.47514984,-0.476412,0.014835533,0.10110486,0.04717432,0.32240158,-0.6831888,-0.19271678,-0.17095052,-0.08004544,-0.1671219,-0.30046162,0.23058316,0.35887283,0.4604858,-0.041127797,-0.27298015,-0.442719,-0.00904704,0.08695283,0.28932223,-0.25268883,-0.66750205,-0.17082952,-0.104760066,0.31622174,0.44350657,0.29580525,-0.14801775,-0.13063209,-0.07001677,-0.22083575,0.44362402,0.5101915,-0.3819289,-0.15570368,0.1434877,0.4739652,0.19278048,-0.17661531,-0.045800947,-0.06915603,-0.6561288,-0.1477036,0.08523663,-0.30342236,0.68330395,-0.25045878,0.16019915,0.6198626,-0.1693962,-0.11266533,0.25960657,0.16039737,-0.13406661,-0.4360368,-0.34741777,0.32145154,-0.57969075,0.19110475,-0.25341243,0.78553796,-0.0060305875,-0.8521084,0.25356534,-0.5073102,0.09737036,-0.08587707,0.5564626,0.632965,0.40084967,0.49928647,0.7326572,-0.4030226,-0.037947673,-0.0649442,-0.24594314,0.098990925,-0.2483469,-0.101576895,-0.5104632,-0.017743273,-0.14525665,-0.09134711,0.11480085,0.67234623,-0.56216276,-0.120947234,0.38662058,0.6040401,-0.28330535,-0.19306657,0.9037369,1.0914683,1.1981671,0.059165172,1.0223373,0.14618705,-0.14639282,0.082296945,-0.12650378,-0.6228311,0.28220728,0.37183106,0.07299099,0.026930816,-0.007580175,-0.058299847,0.38223788,-0.48224875,-0.13124654,-0.16502641,0.07005135,0.025524434,-0.15169166,-0.4701051,-0.4484213,-0.050569043,0.17445844,-0.08035879,0.3367939,-0.22727016,0.48157737,0.014440354,1.3909612,-0.0145445345,-0.077151746,0.16462778,0.51116735,0.23728466,-0.06294597,-0.05867495,0.29905722,0.23393328,0.045882706,-0.4245844,0.07579504,-0.19668564,-0.591858,-0.017290263,-0.34098235,-0.18822289,-0.08105873,-0.6825705,-0.17450759,-0.079383664,-0.34846509,0.53512746,-2.5939841,-0.022063542,0.094167955,0.18551676,-0.09544707,-0.4061024,-0.014830065,-0.4586005,0.5095004,0.34209242,0.47905558,-0.7363378,0.3172273,0.5162347,-0.55850106,-0.060684778,-0.7835781,-0.3051736,-0.0987172,0.33696845,0.16876628,-0.124500595,0.11056207,0.06564529,0.7510275,-0.013699434,0.3057685,0.24527882,0.27361667,-0.28422675,0.41315466,0.08733454,0.4117104,-0.18497995,-0.30639592,0.41294083,-0.2602469,0.25650984,-0.048797164,0.09667882,0.5556084,-0.50459915,-1.0112945,-0.65709686,-0.15902151,1.0933543,-0.14777565,-0.4444918,0.31825176,-0.31722298,-0.21070156,-0.043334257,0.5113194,-0.009850685,0.01585466,-0.75809383,-0.0007271806,-0.103204004,0.17060277,-0.007508429,-0.069974236,-0.4346236,0.8915938,-0.101485215,0.41557753,0.4535796,0.17661761,-0.4351507,-0.5493229,-0.004143991,0.9436595,0.53778994,0.10986614,-0.31700078,-0.21065423,-0.3378074,0.030783566,0.14364132,0.5596804,0.66510874,-0.12412796,0.24008362,0.22918914,0.18725558,-0.045594964,-0.2078553,-0.2832785,-0.17761175,0.01291007,0.63126576,0.82548565,-0.09927807,0.3545613,-0.22839098,0.35102418,-0.0872607,-0.50888455,0.41629037,1.0039353,-0.134259,-0.20914431,0.73375076,0.5690227,-0.2416982,0.5890186,-0.61832464,-0.32305497,0.34104165,-0.09063207,-0.45029843,0.17386644,-0.33558255,0.036961447,-0.83897305,0.30702305,-0.3810961,-0.4670246,-0.74408287,-0.21120402,-2.8925936,0.41546422,-0.32849646,-0.1551742,-0.092151806,-0.28589928,0.23703724,-0.7582251,-0.5754984,-0.020837903,0.22562766,0.6551774,-0.045789238,-0.0068119722,-0.23682605,-0.43673566,-0.16287199,0.13554038,0.117511526,0.29255423,-0.19723015,-0.43119892,0.01733659,-0.195733,-0.40917167,-0.14228617,-0.72510046,-0.4680242,-0.22931947,-0.382934,-0.3079422,0.62449634,-0.33636132,0.09544166,-0.101237096,-0.033646878,-0.011419074,0.27917972,0.15177079,0.14869396,-0.100411095,-0.08593979,0.01949112,-0.2365995,0.07655667,0.03951614,0.21126483,0.5397553,-0.15356404,0.24945664,0.56585133,0.72826666,-0.17352526,1.0484849,0.49166,-0.044302765,0.22508939,-0.14131941,-0.32942227,-0.7500451,-0.24647838,-0.06592323,-0.508507,-0.3886552,0.04656783,-0.29120547,-0.8163549,0.6593993,-0.033141874,0.22604321,-0.06542554,0.30817774,0.57713675,-0.24300379,-0.11831471,-0.09804215,-0.12823455,-0.5614738,-0.4040905,-0.7748217,-0.5659779,-0.058011103,1.10131,-0.19505781,0.010339165,0.13485837,-0.07416981,0.01825677,0.16253895,-0.11579719,0.031606667,0.49672553,0.040189438,-0.57479197,0.47258663,0.11505261,-0.26060787,-0.41998816,0.27375826,0.5250329,-0.5845314,0.60427976,0.50257355,0.10670876,-0.16993837,-0.7910227,-0.17838506,-0.08716537,-0.17246428,0.66185445,0.43036583,-0.73833364,0.5281788,0.3922786,-0.23693706,-0.823715,0.6088035,-0.045151852,-0.42688695,-0.14192803,0.33044443,0.10372729,0.019482516,-0.14699337,0.38567993,-0.5469001,0.31065372,0.29834569,0.0071133403,0.13349219,-0.21837778,-0.12001392,-0.8036799,0.1497327,-0.57003886,-0.40742233,0.18282229,-0.0071812826,-0.14779444,0.2927475,0.16196373,0.4365185,-0.30838615,0.22013786,-0.1334753,-0.24143623,0.38146237,0.52981055,0.5288538,-0.34767506,0.64224935,0.030185735,-0.16495846,-0.20674556,0.11728051,0.43581396,-0.08049409,0.5370146,-0.19684838,-0.17122819,0.27565315,0.58513236,0.1973017,0.44132057,-0.09089152,-0.080246,0.2434517,0.09341981,0.398092,-0.13574713,-0.53017366,0.10452973,-0.30720586,0.10121034,0.5258822,-0.081736274,0.24501804,-0.017389575,-0.12710196,0.07260856,0.23381716,-0.029284218,-1.3072308,0.26720804,0.14097077,0.88545495,0.7263257,0.0389695,-0.047214072,0.7173216,-0.37539154,0.1342341,0.48858115,0.22937289,-0.53736496,0.63497424,-0.76643395,0.33911768,-0.16776152,0.021058861,-0.071408056,-0.12644917,0.46416202,0.6435848,-0.2524415,0.11248228,0.07529692,-0.35425168,0.18633531,-0.45758596,0.18865356,-0.49814045,-0.34309682,0.8030527,0.5516978,0.28692588,-0.19756825,-0.0027260084,0.18279535,-0.20772512,0.21803634,0.07870065,0.2402624,-0.12281105,-0.5737226,-0.026745073,0.5324895,-0.1128982,0.18872294,-0.04417863,-0.24308124,0.12886795,-0.10664971,-0.17843345,-0.058875374,-0.6474028,-0.027424676,-0.34219763,-0.33789834,0.52118576,-0.26046196,0.09259768,0.27302858,0.07708415,-0.25036684,0.13247178,0.20930843,0.5789205,0.03579456,0.047759794,-0.1865882,0.3069184,0.085898496,-0.1579038,-0.22239749,-0.19449523,0.093495674,-0.55654466,0.44171014,-0.08692939,-0.24438949,-0.040186584,-0.03714793,0.008368729,0.5767277,-0.035610422,-0.23758069,-0.18833777,-0.035138033,-0.21256344,-0.17953353,0.016009148,0.31607446,0.03798656,-0.054890957,-0.03943036,-0.0817262,-0.01572119,0.43234357,0.04669148,0.41629353,0.3353217,-0.035179242,-0.56756747,0.087864116,0.06911517,0.4952729,-4.17312e-05,-0.12993574,-0.3133408,-0.29612732,-0.31757793,0.033975918,-0.21160272,0.41396013,0.15529732,-0.14355901,1.1257404,0.017565079,1.335636,0.01949505,-0.39727888,0.011129225,0.6084085,-0.12688987,-0.05719234,-0.19795375,1.0486404,0.5272181,-0.11673551,-0.07304867,-0.26879558,0.181696,0.22312097,-0.16972929,-0.25834364,-0.0607448,-0.7012765,-0.052467417,0.14615451,0.3572419,0.25466424,-0.22790012,0.048771944,0.40076855,0.09352521,0.34260765,-0.3753069,-0.11198514,0.30915913,0.34717375,-0.11390791,0.09723795,-0.48147285,0.30028912,-0.5516138,0.074065015,-0.27215368,0.14335069,-0.32586783,-0.38639933,0.27363613,-0.056071043,0.32022947,-0.21785723,-0.2849281,-0.17215036,0.4422918,0.16499011,0.22297923,0.49688175,-0.33108187,0.18320863,0.06986804,0.38659772,1.2297264,-0.34226218,-0.26709116,0.2802962,-0.32408053,-0.65501595,0.4799363,-0.3066366,0.043441452,-0.13048851,-0.24839024,-0.55108356,0.23328498,0.2374246,0.018096328,0.13146813,-0.6481804,0.0026877462,0.32869062,-0.3211203,-0.2287472,-0.28500023,0.22474518,0.50279194,-0.2796753,-0.4102152,0.03246398,0.21793851,-0.21826394,-0.58069867,0.12666109,-0.3461875,0.32402602,0.03391267,-0.41437814,0.14207755,-0.024660131,-0.45306775,-0.03515749,0.24976379,-0.2447202,0.11711038,-0.48150718,0.15282568,1.0015521,-0.12857008,0.13343531,-0.42377317,-0.5948256,-0.8886601,-0.28505886,0.5676749,0.010678347,0.04810453,-0.7124144,-0.040727377,-0.26559705,-0.18404369,-0.124556385,-0.2769938,0.4869353,0.10998916,0.37262765,-0.11421537,-0.62164843,0.30795166,0.10016024,-0.012429872,-0.3830586,0.47313946,0.06279471,0.8400675,0.15529521,0.09112736,0.2490289,-0.5511939,0.13168913,-0.12836471,-0.20908216,-0.51487553,0.008059283,129 +146,0.57899964,-0.254408,-0.4403815,-0.22795591,-0.3783954,0.04255496,-0.31950843,0.39829364,0.18490626,-0.34953645,-0.16200699,-0.008658939,0.15420206,0.19378595,-0.056081023,-0.56152993,-0.23184414,0.11183705,-0.6711055,0.50216794,-0.6990206,0.3161582,0.11009004,0.38638097,0.1590608,0.3823725,0.21015568,-0.044618152,-0.11112021,-0.17100035,0.11888923,0.16523576,-0.77726746,0.12694976,-0.12671407,-0.28009805,-0.03123595,-0.47414044,-0.19361718,-0.5887331,0.14375782,-0.96667325,0.60218567,0.048508443,-0.2949332,-0.14738728,0.085678644,0.44020215,-0.35488778,0.2141665,0.25461248,-0.1913393,-0.19775018,-0.42617315,0.10406387,-0.30556822,-0.3616052,-0.11800213,-0.41226998,-0.30652878,-0.082844146,0.21954094,-0.18779445,0.12842825,-0.20726004,0.34638056,-0.3860688,-0.06824777,0.29224616,-0.07884194,0.11465978,-0.6191854,-0.18565607,-0.137548,0.33253005,-0.08810889,-0.31599835,0.3564643,0.19967887,0.5105377,0.2191156,-0.20903869,-0.13482735,-0.17039753,0.31691772,0.34571183,-0.17961879,-0.3503844,-0.24305204,-0.09980202,0.35883063,0.31037363,0.052492835,-0.4014289,0.11379107,-0.09175657,-0.28972623,0.37079984,0.40790814,-0.1365111,-0.26701078,0.08525119,0.5055639,0.22802635,-0.21103285,0.13583048,0.06330435,-0.5244586,-0.10167038,0.22628795,-0.07982979,0.40128088,-0.11138819,0.021964049,0.80992734,-0.14852224,0.12620941,-0.03384896,-0.084068015,-0.010669852,-0.47101894,-0.42387897,0.19718958,-0.5927778,0.013033446,-0.35891977,0.7451449,0.069563486,-0.66211694,0.31801832,-0.6391608,0.069061905,-0.03224641,0.5594493,0.6315393,0.2695457,0.26225317,0.67777944,-0.23355995,0.22781123,-0.08445003,-0.21827678,0.021231882,-0.23547453,0.23387127,-0.40306348,0.08784451,-0.2583405,-0.10293589,0.036052298,0.320062,-0.5007554,-0.062111076,0.2123811,0.5736841,-0.40738228,0.20565687,0.689024,1.2597691,1.0171098,0.20912078,1.3991708,0.40371668,-0.21060754,0.096163176,-0.25520265,-0.76948243,0.13554873,0.29981098,-0.14172462,0.33402213,-0.059407696,-0.035390116,0.3101996,-0.59648806,0.11515226,-0.031407904,0.4835388,0.0606184,0.055318642,-0.5093313,-0.18078989,0.11229359,-0.032187536,-0.0708785,0.16067924,-0.28043354,0.25975075,-0.005991407,1.2155054,-0.16894746,0.04439138,0.21490057,0.38276485,0.25514728,-0.23328279,-0.012860759,0.5103745,0.39031056,-0.13181238,-0.6146537,0.24664256,-0.16810416,-0.37753218,-0.19026984,-0.3261853,0.048816662,0.042582892,-0.39953068,-0.25876012,0.029774714,-0.22979045,0.42745012,-2.6819506,-0.2823926,-0.201378,0.34295234,-0.3077052,-0.34619623,-0.05532264,-0.45458123,0.25387323,0.15186581,0.44895527,-0.5394839,0.5188524,0.5721165,-0.45446682,-0.035610374,-0.732415,-0.2736268,-0.10098602,0.35075074,-0.043602277,-0.045202184,-0.22715114,0.19423126,0.6860623,0.021384196,0.18376619,0.47202176,0.2873051,0.14387533,0.71545565,0.14847909,0.4627666,-0.33023605,-0.2539527,0.34668007,-0.36089933,0.13071102,0.06965713,0.008406495,0.6632531,-0.5617074,-0.8078625,-0.6883533,-0.34081644,0.87306947,-0.32882956,-0.47007218,0.21484539,-0.25427046,-0.14560753,0.06866274,0.5354078,-0.052860137,0.08333394,-0.89651453,0.04687023,-0.06981392,0.25832084,0.10616123,0.01307499,-0.4159554,0.7886269,-0.17018507,0.5694004,0.3632376,0.2045259,-0.05879058,-0.302513,0.12393175,0.9568915,0.3354732,0.02273623,-0.16062692,-0.23485303,-0.09757422,-0.11694338,0.14795205,0.5895472,0.7698901,-0.05121986,0.20841798,0.23175332,-0.19414939,0.040840242,-0.14962603,-0.31000417,-0.06521168,0.043043472,0.542973,0.51583284,-0.12876816,0.4857705,-0.20394543,0.39442435,-0.12887014,-0.48985198,0.4403375,0.6110643,-0.056797322,-0.13264194,0.60293216,0.5322578,-0.362482,0.54182166,-0.64685947,-0.08928129,0.61615264,-0.14385039,-0.32893693,0.322579,-0.32135984,0.26379007,-0.8553564,0.4415264,-0.48372942,-0.39602703,-0.6273128,-0.34080097,-2.338206,0.3045067,-0.14740616,-0.15535322,-0.2168496,-0.11639986,0.38402602,-0.6525996,-0.58580714,0.20475508,0.09637358,0.5022421,0.014323316,-0.08302485,-0.16014916,-0.20856546,-0.19352403,0.23229013,0.1535415,0.2253091,-0.13699366,-0.37549305,-0.0541196,0.0076341727,-0.423946,0.163296,-0.5208203,-0.5435398,-0.038595524,-0.501453,-0.2994631,0.59934264,-0.35217813,0.007893983,-0.16963257,0.044810828,-0.23353066,0.24560528,0.12410058,0.338605,0.15659098,0.14257279,-0.029962642,-0.35301018,0.28711167,0.11556446,0.21396665,0.013726806,-0.022180812,0.13687126,0.30749118,0.66186744,-0.1178336,0.9119083,0.35145664,-0.11803723,0.16256768,-0.39272907,-0.3264485,-0.46688417,-0.31298593,-0.16221632,-0.35832492,-0.39875087,-0.02310938,-0.28510702,-0.7385401,0.6499279,-0.07614059,0.110742114,0.005328531,0.2688464,0.21385369,-0.06708182,-0.03154514,-0.16158618,-0.053972166,-0.58612984,-0.31176433,-0.60176146,-0.3655824,-0.03286668,0.9889934,-0.23575255,0.07608021,0.048940584,-0.4465313,0.121724494,0.028595822,0.028801512,0.31916744,0.6190871,0.06613911,-0.57615674,0.29404035,0.06271794,-0.22637607,-0.58687913,0.107535295,0.81053704,-0.77218884,0.70437986,0.37296453,0.116115205,-0.06518614,-0.57299614,-0.28855744,0.14003038,-0.3108609,0.53491604,0.13095835,-0.66284156,0.47557005,0.38613757,-0.3520648,-0.7141155,0.37931588,-0.08378104,-0.3437701,-0.034400955,0.41272274,-0.08262069,-0.011688403,-0.18561116,0.3527085,-0.27726704,0.27012596,0.27612197,-0.15673308,0.05405027,-0.14035584,-0.21794628,-0.64109313,0.060477886,-0.45381483,-0.3213104,0.28956464,-0.02649643,-0.008805931,0.2601254,0.25725392,0.4078456,-0.25362608,0.15964633,-0.15292495,-0.45732716,0.28965092,0.42958647,0.34428826,-0.28695068,0.55621994,0.06352497,-0.23656633,-0.079448156,-0.02749416,0.36501044,-0.11607038,0.28992593,-0.27150795,-0.07915301,0.39646772,0.74713504,0.083607644,0.59063566,0.05556265,-0.011648679,0.3868889,0.16519406,0.070648655,0.04780094,-0.38600424,-0.0020633459,0.1897234,0.3146507,0.27561206,0.25461343,0.4144989,-0.05426074,-0.21058944,0.048057146,0.2676421,-0.07063363,-1.3550745,0.2916285,0.09264626,0.7101721,0.5931815,0.028650722,-0.11710841,0.4688195,-0.26021922,-0.010387715,0.2458507,0.05449655,-0.3760257,0.6004308,-0.4575938,0.29326648,-0.2516827,-0.017719146,0.045426447,-0.01698055,0.41765362,0.75343144,-0.22872922,0.002344334,0.0028070014,-0.09868849,-0.037642922,-0.3607407,0.019241165,-0.37351736,-0.40564558,0.8502982,0.3959033,0.41892752,-0.27712488,-0.03421002,0.109681636,-0.13058443,0.29004416,-0.059638355,-0.10968589,0.3655087,-0.5424406,-0.16745465,0.5006201,-0.1734806,0.031137427,-0.17536478,-0.27540305,0.061943196,-0.079284236,0.03527857,-0.019389426,-0.7344459,-0.09905257,-0.47550705,-0.40033397,0.32528883,-0.22960402,-0.014163422,0.15232088,0.03200487,-0.051548276,0.3532411,0.23344591,0.8310128,0.017187648,-0.28999418,-0.18969245,0.041598815,0.28093445,-0.19752893,0.19050385,-0.35492045,0.07972837,-0.7787115,0.58997524,-0.086700775,-0.43878275,0.25506353,-0.21807799,-0.09773424,0.44116828,-0.23520054,-0.17144366,0.15669769,-0.13438277,-0.31967866,-0.09040513,-0.24981858,0.17867626,0.2292082,0.0714675,-0.09706845,-0.23751426,-0.07794224,0.6005488,0.13594714,0.5799951,0.41162014,0.0061870576,-0.19246665,0.14028835,0.10827398,0.5110479,0.023756424,-0.052607495,-0.3336587,-0.3496152,-0.2072321,0.37274355,-0.11597809,0.25197697,-0.022171088,-0.3857834,1.0083978,-0.0051424345,1.0973632,-0.032650627,-0.4118077,0.112415716,0.5127893,-0.1416486,0.118638925,-0.4291207,0.83842653,0.52665544,-0.09017714,-0.036081478,-0.4890052,-0.16827805,0.27676165,-0.28539672,-0.013417474,-0.16632767,-0.5903574,-0.38965544,0.27998143,0.32817534,0.0022369584,-0.0043168487,0.21931152,0.11909935,0.10559769,0.37829238,-0.5739809,-0.032765977,0.08241025,0.20167603,-0.009172773,0.16881593,-0.4424071,0.33318824,-0.7196064,0.18462922,-0.425908,0.025114765,0.0013546825,-0.22152323,-0.010768275,0.013308684,0.32415974,-0.49498403,-0.4173644,-0.12069213,0.5735358,-0.097192496,0.17710397,0.5960301,-0.27915424,0.049100243,0.19810744,0.5051874,1.2561042,-0.29380828,0.04559292,0.15732011,-0.40333414,-0.5684893,0.41000348,-0.20634086,-0.020835916,-0.097288944,-0.43984905,-0.4877461,0.22205232,0.12375608,-0.11547132,-0.06312029,-0.46106845,-0.22977348,0.49617043,-0.29651177,-0.1885293,-0.13333702,0.19884844,0.7227151,-0.22796759,-0.3224972,-0.049728747,0.27141267,-0.39686865,-0.37514308,-0.17674485,-0.36977735,0.36364773,0.14928405,-0.1934019,-0.06838539,0.1650811,-0.44867584,-0.02601641,0.2285586,-0.28915182,-0.013687539,-0.10586984,-0.11149363,0.8824069,-0.084177844,-0.17137317,-0.6417104,-0.6274863,-0.90846163,-0.35124537,0.3527725,0.14022613,0.104562216,-0.47303772,0.1643569,-0.09001476,-0.030803705,0.19303522,-0.47541034,0.37270057,0.24713853,0.5885744,-0.27748907,-0.84765804,0.1322795,0.02889625,-0.119750835,-0.5961125,0.60940194,0.03254099,0.7737778,-0.005040602,-0.13734695,-0.15764444,-0.4249217,0.19873527,-0.29601723,-0.10191993,-0.8163555,0.045555606,131 +147,0.4186271,0.010670464,-0.51006985,-0.22406048,-0.37000704,-0.056813456,-0.2525877,0.31046587,0.24254204,0.12576427,-0.13622202,0.08323643,0.07349345,0.33430722,-0.09680704,-0.59982747,0.011824086,0.10698166,-0.8916646,0.5344527,-0.44673258,0.3687223,0.13556369,0.389164,0.120763876,0.35308826,0.25094727,0.014859096,-0.0050669513,-0.27304015,-0.20225868,0.16188209,-0.68525094,-0.048426572,-0.2128267,-0.34480304,0.045610547,-0.5782869,-0.12505665,-0.8165886,0.006685199,-0.78106755,0.4980536,-0.25546944,-0.22394636,-0.0020793756,0.38370374,0.4083026,-0.15411045,-0.17426355,0.26539814,-0.23153254,-0.12962207,-0.037757874,0.14185396,-0.4406966,-0.34450155,-0.11058629,-0.6630648,-0.4648317,-0.1219491,0.22859357,-0.42050323,0.07827627,-0.16788119,0.5032734,-0.45431295,0.0006184697,0.19717915,-0.3724797,0.23247099,-0.6001738,0.048332993,-0.017012913,0.5310647,0.08654733,-0.11214137,0.41197804,0.33567974,0.2698471,0.20516165,-0.42316195,-0.35464445,-0.22998247,-0.12621404,0.4937125,-0.18766494,-0.2652322,-0.116626434,0.13011733,0.50783485,0.3641735,0.021506993,-0.022582268,-0.05705761,-0.044800777,-0.17872384,0.5200373,0.5155298,-0.30484474,-0.263581,0.38032982,0.59123343,0.4360332,-0.37300274,0.013090539,-0.08789388,-0.4028658,-0.055587668,0.008671848,-0.0070682527,0.47537223,0.0012540062,0.19310637,0.91268176,-0.091632,-0.047683112,0.008514166,0.02018348,-0.051662333,-0.17499144,-0.24578705,0.32392976,-0.59753144,0.027640644,-0.24682721,0.8040053,0.033899385,-0.81632096,0.4231895,-0.47759506,0.03475744,-0.028201938,0.58613694,0.7466729,0.49516323,0.30789,0.7583665,-0.20239566,0.26291806,0.035056036,-0.39787108,0.04018817,-0.25937748,0.34861523,-0.47178793,0.1082171,-0.10436699,0.017548887,0.11683297,0.34986836,-0.5681897,-0.27482828,0.339588,0.7419529,-0.23715073,-0.045378827,0.7611317,1.1419206,0.8313016,-0.056528077,0.8415955,0.2993785,-0.07110928,0.0023656606,-0.06812153,-0.4379439,0.12782522,0.41743892,-0.05993082,0.26887667,-0.14199685,-0.09091387,0.35158202,-0.3132331,-0.0986943,0.12113943,0.28842768,0.20267431,-0.16643625,-0.46271846,-0.22555478,0.11656552,-0.02252737,0.12130717,0.29905388,-0.19028142,0.34552586,-0.14128917,1.2309285,0.13202974,-0.024633862,0.09571614,0.7177049,0.32837996,-0.016331278,-0.029800517,0.3033666,0.44712335,0.12521075,-0.4647816,0.3203002,-0.4550486,-0.45589736,-0.103355214,-0.49251893,-0.15215807,0.19710036,-0.48550063,-0.11216924,0.03920544,-0.02859996,0.38478768,-3.0245478,-0.16399956,-0.20681763,0.2382151,-0.2739108,-0.096846305,0.013797192,-0.58858454,0.14269009,0.36566597,0.5707914,-0.59914184,0.5552456,0.4654546,-0.5989903,-0.13870332,-0.6027235,-0.10063616,0.053829692,0.4158362,0.08944061,-0.15430087,-0.11334017,0.23864676,0.8104957,0.18242817,0.19605729,0.4562762,0.27561077,-0.062119834,0.5143896,0.024447449,0.51173896,-0.18677928,-0.1644456,0.38127372,-0.2991591,0.08555094,-0.114101216,0.1442359,0.63549644,-0.27338174,-1.122911,-0.5495176,0.018673293,1.0370191,-0.40876618,-0.6674954,0.29794776,0.017703025,-0.01583608,0.25186056,0.55478656,-0.05615167,0.18461952,-0.5420143,0.1719278,-0.09087442,0.12882607,-0.0092148585,-0.09163638,-0.269066,0.64243144,-0.01661017,0.65050435,0.010402141,0.27557862,-0.18497284,-0.22382946,0.15275508,0.54183376,0.4197273,-0.13360135,-0.17606834,-0.04196792,-0.18823245,-0.19240442,0.055755477,0.6622023,0.753315,-0.0682705,0.10644602,0.14059435,-0.15026616,0.057660937,-0.12876278,-0.2207623,-0.06604428,0.102782086,0.3548754,0.7041592,-0.05906807,0.55351543,-0.16486189,0.38143855,-0.053579163,-0.69619876,0.6463127,0.28737146,-0.1445726,-0.042543832,0.5039263,0.40420926,-0.38449854,0.43854016,-0.6459162,-0.29480207,0.70924175,-0.10264847,-0.547184,0.19678387,-0.19832931,0.060302675,-0.7411376,0.21905069,-0.3300519,-0.54537296,-0.2111219,-0.19055793,-3.353157,0.07067217,-0.19470753,-0.050013814,-0.351002,-0.17635606,0.19029637,-0.72587377,-0.5511386,0.14630422,0.26993865,0.7493572,-0.09676116,0.063709125,-0.26997992,-0.33424872,-0.11945172,0.31571385,0.09808926,0.294378,-0.083221525,-0.2279629,-0.18570192,0.043302134,-0.54621184,0.07949445,-0.45592672,-0.5113156,-0.14425927,-0.5429976,-0.28191045,0.5477633,-0.35389414,0.17086247,-0.2729862,0.12480313,-0.2027419,0.123675086,0.16867732,0.21046825,0.14893545,-0.032675948,0.34248954,-0.35787666,0.43220425,-0.04699838,0.5642074,0.045985598,0.178795,0.17096621,0.53881234,0.5660097,-0.16468343,1.0333463,0.2709802,-0.040966053,0.39778408,-0.22953597,-0.283269,-0.65540963,-0.37736756,-0.0853765,-0.36798993,-0.35409996,0.09538441,-0.2771902,-0.7844403,0.6616714,0.05961182,0.43545887,-0.190863,0.37633982,0.48682675,-0.33980456,-0.12055855,0.010584865,-0.0948912,-0.4886512,-0.13370642,-0.77224797,-0.53688836,-0.26323354,0.9401801,-0.3056006,0.01792102,-0.06883826,-0.066697374,0.13431427,0.039333586,0.28859073,0.13486482,0.38832152,-0.16066629,-0.7257849,0.4181305,-0.32862914,-0.035650633,-0.57961357,0.21292725,0.48173,-0.74960035,0.46450442,0.35542062,0.22244763,-0.08766465,-0.6677891,-0.10245622,0.078645386,-0.07193918,0.42345116,0.19374163,-0.87594664,0.5705957,0.17942508,-0.47440416,-0.6369002,0.37351105,-0.0805622,-0.4284314,-0.084501624,0.21254563,0.1612924,-0.12400341,-0.16655196,0.104548335,-0.587352,0.19773576,0.25453344,-0.00065755646,0.54887927,-0.03704698,-0.30616748,-0.64187926,-0.12902944,-0.53178287,-0.28213292,0.21522684,-0.028542582,-0.032401964,0.20854276,0.0024600823,0.3304383,-0.32851833,0.1511843,-0.02336954,-0.34745535,0.565297,0.49528104,0.37283725,-0.460001,0.5800293,0.1975126,-0.35217988,0.060361758,-0.06450994,0.43269265,-0.03749345,0.41078818,-0.07514488,-0.09539927,0.24122815,0.6041471,0.14346953,0.46519887,-0.13167734,-0.10139484,0.2264834,-0.11254451,0.17814003,-0.06297644,-0.528911,-0.017045472,-0.17763287,0.10074297,0.6024191,0.23661837,0.24240485,0.14313607,-0.15105256,0.11585034,0.12098304,-0.15534343,-1.1039776,0.4687557,0.32484356,0.9275443,0.18161726,0.19890356,-0.36160177,0.7993158,-0.28731963,0.12696391,0.27048984,0.19258317,-0.37000147,0.89143384,-0.785807,0.47847825,0.034779694,-0.20393296,0.1776258,0.14282349,0.3796082,0.6645711,-0.24112718,0.015930127,-0.04509486,-0.3694795,-0.05382582,-0.32116136,0.0025983015,-0.39557716,-0.38492423,0.6997233,0.30265632,0.1626312,-0.27915755,-0.17167336,-0.024208065,-0.21964,0.23778555,-0.28894314,-0.02456096,-0.009918304,-0.30727065,-0.2601579,0.54336286,0.044154517,0.15060069,-0.20665315,-0.1771298,0.053998854,-0.12602262,0.0075783334,0.1020445,-0.48770678,0.24944563,-0.15991129,-0.521537,0.6062134,-0.23197569,0.0643913,0.046034932,-0.06217873,-0.07123776,0.32852545,0.07372638,0.51185334,-0.10266983,-0.12620142,-0.31958935,0.017871412,0.17646447,-0.23229384,0.020856833,-0.44380477,0.005397594,-0.4666598,0.39098153,-0.28265926,-0.48117274,0.097897135,-0.1923969,0.036958378,0.44485343,-0.10816606,-0.04545768,0.015747648,-0.1438621,-0.3256773,-0.16937432,-0.36802286,0.16508563,0.16344959,-0.23325248,-0.07246323,-0.15439156,-0.05062938,0.5574143,-0.19507676,0.39259326,0.18441163,0.04074902,-0.21691173,0.15715891,0.14421953,0.4666352,0.024930825,0.0878813,-0.4685536,-0.41581073,-0.36530086,0.18276088,-0.05506824,0.25155613,0.20226757,-0.04848155,0.95669824,-0.029165141,1.1927212,-0.094750784,-0.3551572,0.10318418,0.53449523,-0.06806781,-0.025291242,-0.33652547,0.8839228,0.48600426,-0.07683183,-0.011207839,-0.43735823,-0.033396948,0.39879483,-0.32505903,-0.06555977,-0.1186354,-0.40575588,-0.39327765,0.22850448,0.15858062,0.15488611,-0.090052366,-0.07393642,0.18269889,0.17123808,0.40349862,-0.65934503,-0.21939185,0.16818987,0.21604042,-0.2064649,0.12793414,-0.48927963,0.39797333,-0.84309715,0.19805966,-0.5908921,0.12631789,-0.16857177,-0.35885775,0.06617601,-0.0042586285,0.45556277,-0.24865618,-0.46782067,-0.029078461,0.38303775,0.22680016,0.081422426,0.5837676,-0.27424043,-0.030849172,0.12710936,0.6115599,1.0668372,-0.5284922,-0.03664391,0.2299288,-0.3687462,-0.5832216,0.31070533,-0.39738473,0.012416196,-0.0018475612,-0.36348674,-0.39378548,0.27730313,0.30860424,-0.01455218,0.031234097,-0.5940418,-0.12665303,0.18497616,-0.30988026,-0.12684669,-0.34211415,0.39217234,0.7517465,-0.22751802,-0.383504,-0.08063046,0.41171777,-0.07204437,-0.5430172,0.17938513,-0.2043603,0.34119472,-0.045147248,-0.3596839,-0.13101204,0.16101478,-0.4562696,0.20045325,0.39038822,-0.33564535,0.10576062,-0.23896728,0.13824421,0.9043775,-0.12786599,-0.011929282,-0.6409127,-0.5566,-0.8249028,-0.44926357,0.08342831,0.17850795,-0.11642974,-0.43464926,-0.019695861,-0.27685907,-0.16123568,-0.08816314,-0.51185715,0.23142354,0.07669166,0.63468134,-0.31655654,-0.9239596,0.053791683,-0.027811201,-0.00035663147,-0.5093163,0.5321834,-0.11029053,0.76950145,0.06902258,-0.16663189,-0.028403334,-0.3765389,0.19720145,-0.40742016,-0.24715973,-0.6723176,0.11804345,133 +148,0.4621962,-0.15829991,-0.6310392,-0.04480741,-0.27720916,0.090683244,-0.19711892,0.42082995,-0.0047169393,-0.43096364,-0.09280891,-0.17060712,0.14478105,0.62864125,-0.1636549,-0.560962,0.08954671,0.2708251,-0.6630193,0.6235578,-0.42986935,0.3545283,0.02461424,0.3033649,0.24497825,0.38110343,0.3173886,-0.14001933,-0.4567443,-0.03942454,-0.2481921,0.34662858,-0.3831208,0.10689159,-0.16249941,-0.47057977,0.020106198,-0.28842914,-0.4216343,-0.6290533,0.2637574,-0.74772257,0.5164777,-0.18287936,-0.26386708,0.37231424,0.16303906,0.3395654,-0.23498726,0.016911779,0.21233936,0.009337576,-0.12625794,-0.27536538,-0.33064917,-0.70576286,-0.65526986,0.07115798,-0.5309726,-0.10641025,-0.15337227,0.22557673,-0.2783553,0.09063141,-0.12391046,0.28766248,-0.4115865,0.13813263,0.049561627,0.020817392,0.05377637,-0.6246207,-0.19291013,-0.099078044,0.3366423,-0.16804393,-0.043865077,0.277485,0.3658537,0.41390607,0.024061752,-0.07347237,-0.50243336,-0.15699682,0.16994019,0.4842414,-0.17781568,-0.66800225,-0.12098063,-0.10079284,0.14344423,0.04417683,0.17968483,-0.31595275,-0.005617716,0.015708063,-0.41400686,0.37135634,0.42303535,-0.385654,-0.27205226,0.38419983,0.37758845,0.107317306,-0.30641833,-0.13769831,-0.10936216,-0.51282,-0.09906808,0.08678802,-0.086345695,0.5991623,-0.16486059,0.28783655,0.648703,-0.16178213,0.021757105,-0.13182616,0.05408567,-0.10687171,-0.18826705,-0.25810036,-0.072185084,-0.4287701,-0.021489104,-0.18664879,0.6621835,0.108484454,-0.7695252,0.40526617,-0.5035267,0.07358561,-0.07571748,0.29384625,0.46045944,0.40132776,0.01601806,0.43166363,-0.2709622,0.10685606,-0.020467265,-0.42782184,0.0011433284,-0.17816085,-0.03850111,-0.5444842,0.21817115,0.10615686,0.09509935,0.0641736,0.6781398,-0.40046617,-0.14689158,0.06659395,0.86776924,-0.40890175,-0.3475706,0.79748183,0.9645954,0.9057571,-0.049904004,1.2164267,0.43724123,-0.27286023,0.113092475,-0.5255748,-0.4250973,0.22022337,0.32110006,-0.5842676,0.40510553,-0.044896398,0.0065709553,0.27400988,-0.1326073,-0.012759503,-0.2374637,0.024588697,0.075101614,-0.08056507,-0.4175501,-0.46772546,-0.068872936,-0.07931184,0.3663985,0.27137706,-0.20877008,0.5154181,0.024250556,1.7582295,0.02691562,0.07128198,-0.008631217,0.5640573,0.254477,-0.029266449,-0.04863266,0.20919253,0.2866651,0.018094143,-0.45941716,0.026149523,-0.34506613,-0.7373103,-0.1845444,-0.3572671,-0.16163568,0.031581707,-0.5431719,-0.17268385,0.039219264,-0.16792615,0.47993168,-2.596292,-0.17049885,-0.09082141,0.20717576,-0.28925365,-0.49423218,-0.22452496,-0.55978584,0.3856827,0.3004499,0.4622422,-0.55479234,0.49400192,0.14499375,-0.38727582,-0.21583763,-0.5077932,-0.06017733,-0.007078475,0.42912397,-0.22915998,0.0010216713,0.33352122,-0.030711882,0.5258627,-0.31583804,0.22198887,0.22831462,0.27535665,0.20206894,0.30571812,0.15623666,0.7052487,-0.28961647,-0.095615864,0.2921487,-0.238851,0.31257376,-0.008083761,0.2621218,0.37891304,-0.5656232,-0.86244416,-0.5708769,0.08842697,0.91492105,-0.16663228,-0.34838116,0.0814348,-0.011205258,-0.2930334,-0.016537355,0.25452825,-0.21385647,-0.09536268,-0.64923185,0.16651413,0.05691763,0.0725117,-0.03388577,-0.015678069,-0.36273542,0.45452452,0.023562526,0.37319443,0.26778713,0.30159912,-0.29098272,-0.38702488,0.14323868,0.97909915,0.24869967,0.09299729,-0.13864008,-0.32291794,-0.46506947,-0.12300345,0.08104927,0.317092,0.6484405,0.084481195,0.07827941,0.14728676,0.05317205,0.22702758,-0.1371962,-0.3041121,-0.11638995,0.08607678,0.4424728,0.40091127,-0.30478606,0.76034576,-0.23518369,0.3843737,-0.21447326,-0.5531699,0.5198587,1.2103516,-0.3722291,-0.31905934,0.5398808,0.5428328,-0.31785712,0.4837763,-0.6003843,-0.5098484,0.3946944,-0.20783396,-0.2180823,0.19404036,-0.27711418,0.08929722,-1.026464,0.25083762,-0.175043,-0.3613814,-0.47429374,-0.23376714,-3.1788995,0.16475579,-0.1952674,-0.11742976,-0.090878375,-0.16573884,0.14736944,-0.71191484,-0.43432555,0.20899422,0.11591845,0.66376746,0.085037805,0.17532682,-0.14927262,-0.2585602,-0.1738196,0.20205717,-0.028465938,0.42413428,-0.14229421,-0.5868562,0.116730295,-0.24653628,-0.39603272,0.18103585,-0.7619438,-0.36142084,-0.2545283,-0.4171374,-0.35373178,0.63743645,-0.41087982,0.1366175,-0.13697092,0.03889664,-0.22853623,0.39014664,0.03687573,0.16150917,0.16925389,-0.057805717,0.17761262,-0.3832975,0.1396399,0.057155732,0.3106238,0.3909405,0.05079531,0.11240273,0.42516175,0.758304,-0.02417531,0.60205597,0.43902862,-0.1369341,0.3446727,-0.2900406,-0.13829507,-0.6162673,-0.5393828,-0.1622203,-0.3053335,-0.5981442,-0.16087748,-0.30226135,-0.8010779,0.56443375,0.016698401,0.16781893,-0.050455835,0.36083058,0.5155193,-0.2553347,0.10801696,-0.1935208,-0.02365626,-0.52852476,-0.38752243,-0.6422407,-0.56666684,0.15818577,1.0163534,-0.066090144,-0.10953583,-0.08508418,-0.28511474,-0.074267484,0.22268501,0.05407067,0.16388416,0.381107,-0.36180356,-0.78195584,0.6106909,-0.24269418,-0.07385219,-0.37772503,0.15109298,0.5063938,-0.61761755,0.4519924,0.49952143,0.11070003,0.028483517,-0.39911416,-0.23621632,0.0024903854,-0.121966,0.24084704,0.19515392,-0.7395548,0.40496096,0.25834906,-0.431241,-0.67243457,0.64418125,0.13239102,-0.25951764,0.008005286,0.32540667,0.17576183,-0.0733594,-0.4540696,0.04985175,-0.5907179,0.2382696,0.3424628,0.12721263,0.2239689,-0.19787648,-0.17124526,-0.83884776,0.030230077,-0.3507003,-0.3026393,0.17098196,0.13392812,0.19522049,0.10058344,-0.045142688,0.18524638,-0.5638335,0.122692235,-0.07092737,-0.14876674,0.25748882,0.27687892,0.4092654,-0.54319745,0.55490315,-0.021806758,-0.13287821,-0.0048938077,0.09282429,0.4439768,0.3485668,0.36188632,0.13108188,-0.20068772,0.27477315,0.66957587,0.4031825,0.39643037,0.040004212,-0.3587357,0.03869435,0.029965715,0.16529351,0.20242946,-0.37089258,-0.19400647,-0.14659858,0.20720425,0.519039,-0.029634573,0.4368588,-0.13769016,-0.18292926,0.11948177,0.2191535,0.0023067317,-1.0730051,0.40063757,0.33658057,0.70872533,0.4536028,-0.019508313,-0.13017659,0.5392215,-0.2789858,0.23399618,0.30508435,-0.034888744,-0.5319405,0.5554951,-0.52460515,0.43126577,-0.07062997,-0.024087708,0.092453435,-0.024552306,0.28423887,0.89764047,0.021093901,0.20296624,0.1869266,-0.39646897,0.09613838,-0.24882384,0.107956015,-0.46772784,-0.16634327,0.72608924,0.37249956,0.24313341,-0.07644586,-0.030531203,0.13213055,-0.1445951,0.053327646,0.062663816,0.42799333,-0.07962563,-0.6518937,-0.3171948,0.47570992,-0.113044366,0.16053562,0.25423092,-0.39161465,0.3636828,-0.22860675,0.03811916,0.061663505,-0.58148915,0.033145484,-0.11805633,-0.37953243,0.59787184,-0.10637976,0.21603896,0.10846833,0.13577227,-0.32398352,0.26825005,0.070495635,0.63529754,-0.10847462,-0.25046727,-0.31289274,0.092558146,0.29145196,-0.25242022,0.043577645,-0.23626135,-0.003848056,-0.61423784,0.39650375,0.12665695,-0.073894374,-0.13717426,0.1046315,0.06648542,0.44681728,0.055009,-0.06922032,0.045279972,0.21128422,-0.22689693,-0.14601181,-0.22975942,0.18553384,0.35350913,-0.039020505,-0.15990856,0.08913011,0.030842697,0.4812018,-0.15459877,0.38636965,0.4766929,0.2853342,-0.37152308,-0.24918582,0.2944609,0.41271394,-0.02277902,0.056912854,-0.2720784,-0.38398078,-0.31538138,0.15782811,-0.2366646,0.14257704,0.27718243,-0.18036982,0.6834367,-0.020930227,1.321064,0.13033696,-0.41614312,0.223445,0.3975464,0.06912168,0.081288464,-0.33731925,1.1169002,0.541387,0.00088202057,-0.15869106,-0.33565292,-0.05168151,0.14834143,-0.17722674,-0.3107977,0.044708166,-0.5098161,-0.42654908,0.12454483,0.18673533,0.15651561,-0.065842636,0.30261716,0.24966846,0.11531162,0.46921977,-0.6026525,-0.3634028,0.29634494,0.3191298,-0.040731683,0.22788592,-0.46920884,0.3451471,-0.5416718,0.011872097,-0.26762974,0.18894038,-0.1120278,-0.31432602,0.24461743,0.23924668,0.35809168,-0.32351205,-0.4755888,-0.28846204,0.619771,0.112959765,0.17373848,0.5647181,-0.24049756,-0.06911313,-0.014983797,0.50030327,1.1095904,-0.23583731,-0.045192193,0.5206373,-0.30141523,-0.7519061,0.2565914,-0.24619992,0.25623655,-0.12827393,-0.2555648,-0.6087029,0.44764826,0.16226043,-0.07491754,0.1825065,-0.32366318,-0.049188197,0.3086954,-0.30193633,-0.30709544,-0.36927587,0.3113519,0.64505833,-0.47780216,-0.27782646,0.21977885,0.14580446,-0.17567705,-0.5173274,-0.06976864,-0.3732953,0.30306277,0.31188756,-0.23717336,-0.20962796,-0.051612202,-0.29089946,0.3115217,0.38155353,-0.31854364,0.07758602,-0.36817142,-0.2050538,0.88113856,-0.12708473,0.08440583,-0.58754224,-0.42112854,-0.8189115,-0.6440896,0.32537752,0.112173654,-0.0058540157,-0.70528394,0.07570149,-0.019557452,-0.21129689,-0.012465696,-0.25775355,0.42343086,0.0793691,0.18283042,-0.048386943,-0.83769566,0.0069286823,0.2330478,-0.13363433,-0.5030223,0.36354294,-0.25824058,1.0536879,0.19862957,0.17924565,0.501487,-0.44821283,-0.040065493,-0.37278283,-0.04989511,-0.6222198,0.12760171,143 +149,0.3699492,-0.275952,-0.40616563,-0.2005332,-0.19635622,0.044087514,-0.24760331,0.28301272,0.0815438,-0.21149454,0.14548141,-0.12566207,-0.005876259,0.37343916,-0.11921372,-0.69502205,0.058339316,-0.05985694,-0.5953142,0.622943,-0.5183297,0.37155494,-0.014162485,0.23071623,0.20835285,0.23007372,0.27907905,-0.16194871,0.08516929,-0.11722055,0.029305728,0.13941263,-0.52391154,0.067240685,0.0006125828,-0.2288563,0.18044814,-0.35273603,-0.45872936,-0.66436195,0.37086192,-0.6883004,0.36976293,0.038366366,-0.30784005,0.41107714,0.13173178,0.16306193,-0.4680112,0.12389055,0.26425222,0.05853866,-0.13458565,-0.019821556,-0.08263939,-0.4869028,-0.48230255,-0.03454487,-0.6205867,-0.31722698,-0.30131721,0.08658641,-0.45649898,-0.031746738,-0.13672216,0.36738002,-0.5186835,-0.17112793,0.17174414,-0.06556034,0.10115418,-0.6763801,-0.121105,-0.072958134,0.11770563,0.00024051666,-0.07718911,0.35882074,0.077806205,0.44329616,0.0020507337,-0.20291306,-0.11644185,-0.209924,0.07203374,0.5078478,-0.014298676,-0.47729784,-0.049987093,0.07104866,0.036595367,0.09159141,0.06299293,-0.3765753,-0.08245231,0.1312087,-0.31215155,0.42894152,0.51192725,-0.47732595,-0.25474185,0.36978802,0.27312288,0.24240543,-0.106489256,0.04094305,-0.022421423,-0.4519733,-0.19942349,0.07368458,-0.18380834,0.3505203,-0.14411178,0.30683613,0.6264971,-0.26321477,0.25417534,-0.21485431,-0.014168585,-0.0320405,-0.22418404,-0.23351245,0.05819885,-0.54154,0.17785892,-0.18987049,0.8204201,0.25190437,-0.5251221,0.42748302,-0.50644916,0.23734097,-0.26640457,0.52413094,0.69419616,0.18666169,0.188183,0.63716495,-0.36708266,0.0107239885,-0.18300287,-0.29988128,0.035561547,-0.06506116,0.04390637,-0.4220092,0.007537556,-0.025655985,0.027924633,-0.15602382,0.33194983,-0.3365928,-0.1298506,0.17957264,0.7691952,-0.32906246,0.07538285,0.46677577,1.1105502,1.1393756,-0.023490362,1.037086,0.401313,-0.14597054,0.16898133,-0.2565089,-0.6723376,0.18863559,0.48337987,0.3737612,0.19453147,-0.048110906,-0.18157434,0.3383834,-0.30254975,0.101985045,-0.19237943,0.35674363,0.20539497,-0.010367755,-0.28156742,-0.20162551,-0.025920248,0.050793204,-0.04382495,0.2267304,-0.25440487,0.025370734,-0.016722435,1.4935722,-0.13713409,0.030752541,0.11752718,0.59031093,0.3092307,-0.1597959,0.035489574,0.32659906,0.43161643,-0.005395758,-0.77238655,0.09454927,-0.36239627,-0.53047365,-0.10735701,-0.43720537,-0.077266,0.07477452,-0.5640192,-0.104956284,0.0896189,-0.042565588,0.35285404,-2.8191211,-0.21138777,-0.17578754,0.22706294,-0.3694913,-0.15967256,-0.04011829,-0.39847967,0.39687547,0.38664073,0.40108737,-0.51016265,0.40928832,0.44286925,-0.3371971,0.0019453525,-0.59455174,-0.16101068,-0.12860963,0.40292835,-0.14189486,-0.048201337,-0.030186953,0.31934682,0.40832424,0.12195576,0.14631078,0.20820932,0.42270547,-0.08489507,0.51321524,0.034553085,0.42667618,-0.30677712,0.03103177,0.24777564,-0.15732701,0.41182855,-0.24452704,0.14059542,0.37963995,-0.32493725,-0.81825924,-0.40527096,-0.1434124,1.2813154,-0.3542588,-0.41260764,0.45857683,-0.15934154,0.043403342,-0.12329151,0.3296569,-0.12958108,-0.1892955,-0.65172935,0.2806636,-0.16858958,0.028447725,-0.05146761,0.04142769,-0.333307,0.70511764,0.0017081122,0.45019785,0.22712955,0.24999163,-0.04886314,-0.36490855,0.04605735,0.75787,0.4577381,-0.019814169,-0.14367189,-0.121524066,-0.10725974,-0.26468262,0.073394105,0.45843267,0.7707419,-0.010423724,0.13514343,0.19841139,-0.15982011,0.02557383,-0.16703454,-0.25736216,-0.013978209,0.12885256,0.5382896,0.41304722,-0.15540546,0.3768457,-0.0273593,0.14523643,-0.09548697,-0.45124775,0.49266183,0.8952381,-0.09928851,-0.12280755,0.50897115,0.43486068,-0.20540756,0.40947622,-0.5604467,-0.25514778,0.661362,-0.31981906,-0.27282456,0.24082823,-0.32400945,-0.06345952,-0.6863243,0.25965828,-0.18224218,-0.1205844,-0.384576,-0.3622621,-3.4840307,0.07736845,-0.3165446,-0.15718381,-0.19541143,-0.08699347,0.32294223,-0.5523767,-0.47995156,0.2397046,0.03975918,0.58637583,0.027819643,0.18685175,-0.20253976,-0.1219318,-0.33336723,0.1662557,-0.08306922,0.29580173,0.10768004,-0.34924588,0.040133435,-0.07366478,-0.38076097,0.0724328,-0.33375937,-0.33378655,-0.08014056,-0.41154596,-0.15321928,0.62919647,0.08318231,0.019362746,-0.088782094,-0.124201626,-0.2289946,0.21169883,0.35362902,0.16175763,-0.10838069,-0.013704706,-0.05997766,-0.438438,0.16041018,0.076216035,0.3221946,0.28163528,0.061344266,-0.018730847,0.40905628,0.28821677,-0.18696101,0.6072573,0.39026397,-0.1359844,0.3065001,-0.19307002,-0.2111215,-0.5131436,-0.44298527,-0.0995343,-0.19992383,-0.4872699,-0.21523744,-0.23814084,-0.52821386,0.39682674,-0.06924947,0.31025714,-0.12398529,0.0787549,0.3839127,-0.025075102,-0.07899884,0.13715029,0.00788581,-0.45068482,-0.26937354,-0.6614918,-0.32294163,0.35180643,0.6908362,-0.2154008,-0.28340477,-0.033749692,-0.25699657,0.011869902,-0.16357057,0.09875271,0.26549068,0.2642519,0.06659749,-0.81263924,0.57657665,-0.14092216,0.014484886,-0.48974323,0.07222652,0.57100034,-0.53884053,0.42252052,0.20965837,0.16337821,-0.1294819,-0.567187,-0.21699633,0.19904785,-0.19095628,0.42697853,0.021760374,-0.9249907,0.48359737,0.2680619,-0.3313937,-0.6105358,0.5713164,0.11276663,-0.36189842,0.041981332,0.26551464,0.24966264,-0.0357257,-0.06645271,0.47848412,-0.39427775,0.29765618,0.11777938,-0.06462915,0.42027903,-0.10218152,-0.2011984,-0.44258577,-0.14676686,-0.35269883,-0.27262476,0.123666234,-0.05258749,0.10512693,0.096628174,-0.10338566,0.41023198,-0.25125945,0.17237902,-0.014417617,-0.23171231,0.5720853,0.41092294,0.4607256,-0.3562097,0.6627267,0.04866152,0.0019824624,0.19016589,0.10490843,0.38020623,0.21226306,0.33725327,-0.042119868,-0.10250894,0.3243721,0.9229861,0.20321701,0.41233778,0.20964536,-0.22605184,0.22912434,0.0629473,-0.1577234,-0.023463214,-0.36238882,-0.21021935,0.1050508,0.21508437,0.48396766,0.16670418,0.24581479,-0.12213325,-0.17429398,0.098248355,0.14364955,0.03770562,-0.8592578,0.32250893,0.18219467,0.68566,0.5384306,-0.15987562,0.017134951,0.49306062,-0.16644515,0.0051522334,0.30829823,0.0669087,-0.6186247,0.6367398,-0.34566143,0.48631355,-0.12717606,0.03611494,-0.017440828,0.19187975,0.2157567,0.6427078,-0.10120939,-0.05569188,0.034593813,-0.42467037,0.1275383,-0.26694056,0.048242632,-0.30844897,-0.34972122,0.37143898,0.5290601,0.055705108,-0.063948445,-0.0037682434,0.039918277,-0.15542455,0.08509307,-0.06848659,-0.1406482,-0.09585093,-0.58684915,-0.4471094,0.47490418,-0.06263721,0.14392158,-0.11704251,-0.028818829,0.19582961,-0.1627152,0.02524752,0.025457164,-0.7933866,0.083279625,-0.28476962,-0.46891,0.33567733,-0.29420713,0.22529243,0.15344046,0.0011590143,-0.24625088,0.21112983,-0.026227651,0.66573614,-0.34930435,-0.12210803,-0.45745894,-0.18751007,0.16915934,-0.1965196,-0.04845802,-0.358547,0.009367583,-0.68346626,0.43749097,-0.15973677,-0.23588301,-0.022019727,-0.2457224,-0.00580678,0.5959802,-0.1702364,-0.04557181,-0.11134045,-0.19089365,-0.2995611,-0.24278444,-0.08823899,0.18737262,0.20721494,-0.013781111,-0.13984972,-0.1981904,0.0514219,0.4227592,-0.057254504,0.23850158,0.23460308,0.22946812,-0.2951452,-0.14998646,0.30072367,0.47776857,0.08948124,0.04611505,-0.2778934,-0.37793228,-0.27596447,0.27041593,-0.25728294,0.25250852,0.05296006,-0.5254591,0.60303944,0.1527161,0.9121737,-0.023522113,-0.33059755,0.101587616,0.49126312,-0.037786108,-0.026133766,-0.19394632,0.7266556,0.58160347,-0.00021577279,-0.19494748,-0.34921217,-0.21808931,0.29511565,-0.23937923,-0.15569703,-0.011606906,-0.56171286,-0.20008211,0.19971257,0.17747049,0.057613946,-0.06375068,-0.123578355,0.081674434,0.13399357,0.4934944,-0.69399506,-0.11683848,0.17823538,0.102952376,0.021229377,0.2710332,-0.4372145,0.4172481,-0.63825506,0.23922281,-0.21716675,0.10656742,-0.10154716,-0.09023442,0.21288353,0.14812809,0.38382003,-0.29712045,-0.42177957,-0.1734218,0.5296425,0.1402517,0.20565608,0.54438347,-0.23900113,0.13274331,0.00885168,0.5341152,0.9307105,-0.044773053,-0.088382244,0.21310796,-0.46671757,-0.79500276,0.26597646,-0.2277005,0.093536176,0.039752845,-0.2198555,-0.51081944,0.2688303,0.18029398,0.01778889,0.029081067,-0.56448925,-0.3149285,0.24629827,-0.10091542,-0.3154988,-0.33676082,-0.012166947,0.7429572,-0.35277826,0.021712644,0.0064444146,0.2685469,-0.13722906,-0.64325327,0.03948056,-0.36675367,0.3193279,0.19860007,-0.074174486,-0.08226013,0.1606136,-0.4461839,0.14885542,0.12732951,-0.34858784,-0.0787112,-0.08825586,0.010488419,0.8871378,-0.15829493,0.013043157,-0.71061975,-0.4946965,-0.7637584,-0.4911685,0.5321319,0.091996625,0.1477988,-0.56472355,0.008582259,0.07862789,0.14684,-0.10144337,-0.53052825,0.4011369,0.08820523,0.2903412,-0.024976166,-0.69871014,0.04084339,0.030544555,-0.3204581,-0.42221466,0.55081487,-0.13229315,0.70343906,0.060590465,-0.032782458,0.05230488,-0.3289432,0.052038714,-0.31471118,-0.31712684,-0.6042992,0.20810659,146 +150,0.55100656,-0.22705153,-0.49212992,-0.1477224,-0.19321512,0.079308145,-0.27303642,0.24247234,0.20412411,-0.160392,0.0024179618,-0.17891306,-0.0315582,0.53771174,-0.030601645,-0.85570467,0.15934348,0.14702313,-0.7499373,0.7315104,-0.4244328,0.33089557,0.05496166,0.37705192,0.16379616,0.36279538,0.17314465,0.058290347,-0.11818876,0.047307666,-0.020714613,0.106173865,-0.39006796,0.030247223,-0.0005595525,-0.12810431,-0.1006727,-0.29358393,-0.68752223,-0.85588896,0.47175348,-0.76368546,0.45569128,0.0007174636,-0.36342824,0.19495812,0.092064336,0.30507547,-0.18753073,-0.034857433,0.16262923,-0.01079269,-0.05486893,-0.14643298,-0.30999887,-0.51476157,-0.57547224,0.069432534,-0.6520761,-0.2327923,-0.13205156,0.22049919,-0.2987663,0.016639471,0.013025403,0.5484933,-0.39768252,-0.20963581,0.22454509,-0.1966568,0.30859116,-0.50761396,0.058729645,-0.08367278,0.1192308,0.029911447,-0.10320864,0.27098504,0.31643423,0.43788862,-0.15196605,-0.17743771,-0.3070202,0.014072467,0.19519353,0.4827425,0.094510056,-0.45856148,-0.20062555,-0.086322665,-0.016511837,-0.0359394,0.16622598,-0.5340297,-0.007251954,-0.042354807,-0.15459234,0.473424,0.5653573,-0.39953393,-0.2608056,0.3747099,0.64911556,0.3155467,-0.21321113,0.09411669,0.046344817,-0.4502503,-0.042263523,0.102064386,-0.1437022,0.61946803,-0.199374,0.20231004,0.76535404,-0.04472929,0.0402325,-0.008932455,0.0070483955,-0.03220986,-0.090254545,-0.07404186,0.14626983,-0.4135626,-0.029255828,-0.15021181,0.56639427,0.23909172,-0.6989295,0.58598834,-0.567975,0.23505396,-0.17608695,0.564473,0.81884885,0.20512274,0.18036318,0.75499815,-0.3978485,0.15670122,0.028335758,-0.482299,0.224892,-0.281163,0.0060604215,-0.47373182,-0.07289458,-0.06548648,-0.31412986,-0.15400775,0.591622,-0.38879946,-0.10883905,-0.06141903,0.9118198,-0.271159,-0.06530313,0.5374887,0.9720079,0.9817702,-0.035942897,1.3295046,0.45516816,-0.19876881,0.16651706,-0.33758053,-0.86110646,0.3672309,0.34659827,0.3026862,0.40642223,-0.008622916,-0.18084624,0.5080811,-0.26135072,0.22586158,-0.24761412,0.1707633,0.07319765,-0.053568427,-0.39324456,-0.33041292,-0.057395935,0.1725505,0.22433624,0.25390774,-0.26003626,0.2682336,-0.07081056,1.7019871,-0.17624685,0.012782981,0.057932027,0.6273155,0.27601707,-0.18872544,-0.2755335,0.21460375,0.367274,0.17552723,-0.66351306,0.17201878,-0.2846094,-0.39250857,-0.30684438,-0.31627935,0.08960407,-0.08928711,-0.4973459,-0.22239247,0.048556082,-0.34747988,0.40098742,-2.4742343,-0.3095681,-0.0989411,0.3017491,-0.27637625,-0.13092057,-0.17459151,-0.389067,0.13492832,0.3876953,0.38367864,-0.7343002,0.41258472,0.58621544,-0.55668044,-0.0658417,-0.4521185,-0.121223286,-0.096246295,0.51337093,0.0758152,0.009859594,0.15397763,0.34299198,0.45957837,-0.014571837,0.07050008,0.27825457,0.40098366,0.07999453,0.29075828,0.046069782,0.32822853,-0.19117314,-0.15191078,0.55227077,-0.34246713,0.20306127,-0.20633163,0.18794355,0.37133116,-0.4313869,-1.0249221,-0.5809325,-0.13887706,1.0555241,-0.21632099,-0.48542833,0.23308973,-0.13252337,-0.120344095,0.16238953,0.53309083,-0.19012499,-0.008839977,-0.7282817,0.06579992,0.019462772,0.1233037,0.102070965,-0.021444304,-0.17491895,0.64849275,0.08120653,0.31778863,0.13974948,0.21451767,-0.17235288,-0.64744055,0.1650941,0.7994879,0.31798407,0.091729775,-0.24437854,-0.21066588,-0.21971768,-0.1584231,-0.108448856,0.53864926,0.8138535,0.022892412,0.14392617,0.2331158,-0.11025576,0.124936245,-0.073466055,-0.40326884,0.0383017,-0.011640931,0.61738217,0.75319725,-0.26794785,0.4908186,-0.11387836,0.26248387,-0.098911025,-0.5468918,0.7493015,1.1883887,-0.21286014,-0.23653191,0.4507949,0.2825919,-0.5960668,0.52787143,-0.7474544,-0.2883226,0.42020124,-0.22985475,-0.517782,0.33722064,-0.35969752,0.15482952,-0.79317486,0.46579126,-0.1294141,-0.27936605,-0.46366805,-0.19491506,-3.2211888,0.24689016,-0.27057594,-0.18454628,-0.13350445,0.00905015,0.34543663,-0.46174774,-0.5670496,-0.02902848,0.07396944,0.63279474,0.007049207,0.16958469,-0.24352273,-0.17130953,-0.37437266,0.13919987,0.06992638,0.49897975,-0.013062851,-0.4832941,-0.0039903116,-0.25053602,-0.40313718,0.03559917,-0.63899803,-0.47977498,-0.31968433,-0.5564832,-0.15598981,0.71325433,-0.06451914,0.031109689,-0.39291137,-0.06512204,-0.05313841,0.45400673,0.22084184,0.10722183,0.0045983354,-0.08724463,-0.11296857,-0.2255467,0.16420141,0.04129552,0.16253096,0.3758547,0.04354441,0.16401775,0.6055495,0.596975,-0.21041396,0.7084437,0.53929687,-0.098899916,0.28248695,-0.17595838,-0.255225,-0.40139922,-0.2989135,-0.0932401,-0.2715595,-0.5231829,-0.123707786,-0.29881003,-0.7568216,0.3792054,-0.03737875,0.2583901,0.11527575,-0.0032987655,0.4787866,-0.2130739,-0.008525149,-0.062402714,-0.22856998,-0.6235507,-0.19194907,-0.6310873,-0.6393274,0.29715374,0.95151967,-0.17352304,-0.28770223,-0.015816577,-0.3067626,-0.04383662,-0.09866876,0.050747856,0.19376816,0.14729333,-0.18483454,-0.7942322,0.5236817,-0.2424437,-0.06646612,-0.5323951,0.15746798,0.6330003,-0.64604867,0.5100505,0.26061466,0.19437939,-0.10025769,-0.49609426,-0.21132012,0.16849011,-0.15569307,0.42529434,0.055089645,-0.74594104,0.309368,0.2540561,-0.44720656,-0.65187246,0.52779233,0.02063423,-0.27866706,-0.112422675,0.44192138,-0.10239868,0.074898705,-0.44468486,0.32211637,-0.417652,-0.010743241,0.3378892,-0.0071200053,0.363125,-0.16548207,-0.26798993,-0.49500954,0.010758098,-0.42296678,-0.2320092,0.111137845,0.04601912,0.25163084,0.091307625,0.09414986,0.42708287,-0.1487643,0.087034464,0.035829213,-0.1774559,0.41939571,0.4179941,0.5267093,-0.41735718,0.59320885,-0.051828876,-0.12995996,0.101412326,0.025671769,0.36733907,0.25346938,0.41075793,0.24096963,-0.05986096,0.22096328,0.9794271,0.16125225,0.5211369,0.13655749,-0.43515724,0.21866134,0.175995,0.16979028,-0.19068678,-0.41005886,-0.07962906,-0.05982248,0.28031677,0.6008009,0.029397,0.36362,-0.24281482,-0.3222886,0.10366602,0.063473515,-0.06559405,-1.2062172,0.19787188,0.28719234,0.70048434,0.4386708,-0.06621412,0.015040438,0.6751985,-0.0826616,0.07423862,0.31027895,-0.16853327,-0.7966788,0.5035751,-0.6697196,0.38861594,-0.044844206,0.02607383,-0.02717793,0.13927275,0.33713347,0.593448,-0.026864938,0.019521141,-0.19033273,-0.3640673,0.061989706,-0.46319345,0.22574605,-0.50058275,-0.42705148,0.5843002,0.55614495,0.113448456,-0.1318451,-0.03204565,0.040847234,-0.07215559,0.31436622,-0.017799944,0.075937614,-0.12496285,-0.79858124,-0.3467371,0.5305789,0.02581857,-0.076387696,-0.05875387,-0.007912087,0.16641632,-0.23903988,-0.076435395,-0.018625975,-0.7314527,0.029639851,-0.1674725,-0.45590726,0.49771032,-0.12666668,0.21309748,0.19146426,0.06024669,-0.5629848,0.38520476,-0.073145986,0.7971219,-0.028043684,-0.07075058,-0.50556463,0.0071609337,0.17119905,-0.39247304,-0.14402583,-0.25872308,0.006475099,-0.56796455,0.59772784,-0.14677478,-0.48574024,0.15724261,-0.22261065,0.07418128,0.61705476,-0.31326896,-0.35492033,-0.08484575,-0.1611925,-0.37111333,-0.06700887,-0.03773021,0.29161218,0.19769892,-0.3515555,-0.12812498,-0.07094034,-0.02391543,0.43353325,-0.13141026,0.3676654,0.5905406,0.14690547,-0.3513724,-0.19278374,0.5024734,0.49582896,0.1937259,-0.009892309,-0.28613046,-0.38415134,-0.44130498,0.15568523,-0.1332549,0.2721973,0.23475364,-0.34270394,0.64247674,0.2777995,1.2291275,0.011186842,-0.31842795,0.35197824,0.43976688,0.11942907,-0.041135523,-0.4567223,0.802601,0.6086053,-0.22287346,-0.15323703,-0.4233921,-0.23955236,0.20004794,-0.297635,-0.03537531,-0.038776927,-0.7894246,-0.17964321,0.15612598,0.29044792,0.08243105,-0.077400714,0.13968608,0.066287465,0.026871169,0.32231167,-0.5119941,-0.18351027,0.3914285,0.15883487,-0.011825514,0.13195774,-0.41912922,0.3536296,-0.5659533,0.002779738,-0.26934248,0.25543863,-0.0475527,-0.4149125,0.2909377,0.18751912,0.48769256,-0.26957908,-0.35790315,-0.31369388,0.55041534,0.22720425,0.20903961,0.61205864,-0.3171892,0.075351976,0.1052182,0.58446693,1.0418471,-0.13138264,0.03425862,0.26360837,-0.34176233,-0.8726782,0.25529775,-0.30775642,0.3045922,-0.044861507,-0.31608185,-0.7431419,0.36373743,0.1355641,-0.08105931,-0.02032166,-0.5123511,-0.24868679,0.2585056,-0.13042577,-0.23957041,-0.47529367,0.108764805,0.57387507,-0.29177096,-0.29016125,0.06339469,0.22310549,-0.26689595,-0.5530693,-0.01389403,-0.42091042,0.28142014,0.17663503,-0.22289394,0.05716338,0.016861295,-0.5422647,0.3460649,0.19659314,-0.40190223,0.13528611,-0.24459015,-0.04928607,0.95200294,-0.17118575,-0.113567896,-0.78796744,-0.6284422,-0.9957064,-0.42180386,0.36411422,0.18527722,-0.016916681,-0.6973957,-0.012749986,-0.07478532,0.15738669,0.12993887,-0.49014917,0.39128512,0.03077008,0.3769976,-0.053126194,-0.8522158,-0.045763645,0.14341977,-0.34743282,-0.63613504,0.50142753,-0.10165976,0.82034457,0.16125135,0.10161686,0.26872304,-0.49348545,0.11277949,-0.31287184,-0.26826885,-0.62780696,0.17522274,151 +151,0.41067237,-0.17886254,-0.3188945,-0.046172556,-0.032509446,0.12294941,-0.04386028,0.5774397,0.38347968,-0.25299132,-0.03413601,-0.24793436,-0.0024882196,0.38808826,-0.16463143,-0.4568833,0.0028680107,-0.04916699,-0.31550473,0.411376,-0.42728034,0.23944798,-0.053829655,0.43778896,0.052114848,0.2858745,0.14391963,-0.0010587231,0.0036806504,-0.35928595,0.09222821,0.27329567,-0.43008342,0.36207977,-0.1011739,-0.27348298,0.13500817,-0.37584975,-0.4150187,-0.57853967,0.25626594,-0.7658723,0.37961102,0.105938554,-0.32943615,0.31096143,-0.0019842465,0.056518696,-0.21831466,-0.22657725,-0.011476469,-0.118976675,0.047084384,-0.36829883,0.0050747474,-0.31302553,-0.48464802,0.062497415,-0.38077182,-0.17579392,-0.20435092,0.06746397,-0.39074454,0.07601218,0.027708411,0.3553394,-0.41843817,0.067389876,0.17650741,-0.49823362,0.28381646,-0.46331966,-0.4013252,0.01342049,0.036636688,0.05566744,-0.21264845,0.35702375,0.22228377,0.4333955,-0.07342632,0.019662453,-0.258087,-0.22593804,-0.0283375,0.47111472,-0.17342654,-0.66480005,-0.101504765,-0.009676202,0.18004502,0.29825416,0.22169788,-0.1880708,-0.10336747,-0.059746277,-0.30967504,0.36963832,0.56387204,-0.47065294,-0.17643666,0.1763489,0.32832634,0.08827739,-0.10969068,0.01815974,0.040943112,-0.3999837,-0.13913298,-0.22354627,-0.1497119,0.61562574,-0.0352061,0.29779294,0.64320046,-0.24430612,-0.037374742,0.14337203,0.011792167,-0.16596857,-0.35449716,-0.13635658,0.23342183,-0.38495007,-0.02785557,-0.17931157,0.7407624,0.2453845,-0.5847019,0.45736006,-0.4067159,0.122042194,-0.07627289,0.42616892,0.5238091,0.46244192,0.4101139,0.7181238,-0.47135392,0.027670475,-0.1510014,-0.3131584,0.12739505,-0.21209757,0.032769695,-0.4082213,0.1418678,0.29253393,-0.12024472,0.19696029,0.26350683,-0.58802795,-0.06835189,0.24842885,0.7965883,-0.1581867,0.08365964,0.6965221,1.1978098,0.8748365,-0.088565424,1.1012236,0.106186114,-0.1411064,0.22934557,-0.040551994,-0.67086035,0.20078088,0.3947422,0.42821687,0.14372487,-0.025742983,-0.13242409,0.18794036,-0.35667306,-0.09172388,-0.03794967,0.53974617,0.2008016,-0.07628086,-0.46595606,-0.23626566,-0.033869956,-0.08387682,-0.055123903,0.3714153,-0.102359295,0.5020746,0.10762286,1.3789304,-0.06327768,0.21564822,0.15571906,0.6276465,0.25585574,-0.060612246,0.09995272,0.3770095,0.04109591,0.13957094,-0.4564274,0.13036017,-0.22112712,-0.545482,-0.040206466,-0.45282358,-0.14904574,0.006393955,-0.199106,-0.24461628,-0.19508205,-0.1739942,0.44610104,-3.1155128,-0.2655653,-0.16249469,0.40698892,-0.26431292,-0.13370724,0.05410393,-0.50959694,0.35594878,0.41857135,0.55137765,-0.7457907,0.01163743,0.49433124,-0.47388506,-0.24485523,-0.39652967,0.12135842,-0.0413156,0.46713373,0.08977779,-0.1344031,-0.12607957,0.08485783,0.46431604,0.1360367,0.18063752,0.13383797,0.24154581,-0.17361793,0.2785274,-0.2100078,0.39773268,-0.3338752,-0.12624942,0.29502916,-0.3060034,0.21842977,-0.17990062,0.12484125,0.361544,-0.35516366,-0.6815914,-0.49222583,-0.06744002,1.2149552,-0.12304654,-0.5748142,0.26275268,-0.2261334,-0.1996641,-0.2103974,0.30519256,-0.06013077,0.07084738,-0.5914665,0.13663785,-0.1485029,0.07834126,-0.01920319,-0.025245782,-0.3006319,0.6125693,-0.022010842,0.464137,0.34661147,-0.012713635,-0.33310005,-0.3217734,0.030567426,0.6533385,0.47926292,0.15103605,-0.04812336,-0.1610282,-0.20687939,-0.22506033,0.18957381,0.57495123,0.6466163,-0.099455446,0.105844006,0.24692592,-0.10408702,0.049082983,-0.056999862,-0.21087027,-0.041482512,0.018944569,0.70382893,0.8674537,-0.2710406,0.16923091,0.008684142,0.48855093,0.0012679974,-0.47149557,0.43250763,0.473378,-0.14617436,-0.24600936,0.62776524,0.4068778,-0.3987812,0.42775622,-0.52089095,-0.33802548,0.49355295,-0.18391755,-0.52120185,0.22093238,-0.22241668,0.20081304,-0.7190226,0.33684558,-0.31715345,-0.48654938,-0.35748306,-0.20611914,-3.3320098,0.028940747,-0.20210543,-0.15983772,-0.072680034,-0.013718891,0.09621651,-0.49813303,-0.50223905,0.1018354,0.12395593,0.48872626,-0.16361882,0.051624462,-0.30071354,-0.39368913,-0.30773756,0.088043176,-0.023511386,0.28483087,-0.049023114,-0.36805305,0.03520955,-0.0061376533,-0.39343566,0.18910703,-0.44951168,-0.59017843,-0.11718931,-0.35667884,-0.33065218,0.6282488,-0.15941662,-0.0018877983,-0.13539556,-0.042796418,-0.21563488,0.06516287,0.078709796,-0.026150966,0.018362029,0.022620555,0.097448856,-0.40336162,0.4215867,-0.02195955,0.39525408,0.39131784,-0.14122997,0.052055463,0.4804314,0.49160594,-0.0031590532,0.73254263,0.16660684,0.084625706,0.3680823,-0.23563963,-0.4284263,-0.3422111,-0.24902011,0.22006108,-0.37910375,-0.3565561,-0.0010847857,-0.35118935,-0.5421429,0.5246461,0.12568793,0.12735699,-0.0038780808,0.23138343,0.5747129,-0.11727073,-0.0441604,0.13153218,-0.10148797,-0.68029696,-0.2121482,-0.7980472,-0.46027228,0.4309859,0.8358734,-0.19399433,-0.13800973,0.10004519,-0.07822736,0.036932398,0.048958674,0.120141014,0.04554492,0.36932132,-0.09953095,-0.5771802,0.51878285,-0.11925688,-0.22373953,-0.548313,0.16545817,0.48060104,-0.7496256,0.4692394,0.25095508,0.18960755,-0.11842652,-0.4308232,-0.08889993,-0.109263934,-0.27740988,0.40123627,0.16070881,-0.8873422,0.43848476,0.36421412,-0.31188545,-0.65282136,0.39238003,-0.20168778,-0.19631371,-0.026346529,0.26954907,0.30498612,0.03551867,0.14962249,0.24672247,-0.5907906,0.20400721,0.2146136,-0.10387961,0.5801956,-0.05128059,-0.15693556,-0.68755907,-0.05019939,-0.49136537,-0.32924354,0.1973559,0.07274263,-0.11424454,0.14187342,0.1382346,0.46801618,-0.21842076,0.13185184,0.0026891152,-0.26579568,0.54873264,0.42156765,0.52425486,-0.27139613,0.6189379,-0.03201167,0.07269263,-0.005026833,-0.07277708,0.3985858,0.1559216,0.34790364,0.03355282,-0.27085337,0.22020476,0.79415095,0.075917915,0.29951128,0.06000614,-0.03291179,0.32278016,0.051411256,0.15506922,0.08034262,-0.5783676,-0.023156412,-0.2448905,0.07656379,0.46721077,0.26182434,0.26610646,-0.07154382,-0.41552156,-0.017657785,0.14494847,-0.082291834,-1.0298916,0.088423915,0.04393307,0.7072716,0.45306414,0.115423836,-0.07225417,0.70616794,-0.01040672,0.041067846,0.315204,0.107904986,-0.50007635,0.6262495,-0.75052875,0.63280475,-0.06954401,-0.10388566,0.049563352,0.046527732,0.42238057,0.69683194,-0.13110264,-0.047547985,0.04345011,-0.33125564,0.13508344,-0.5047247,-0.019703101,-0.46841115,-0.19866307,0.46482214,0.48935363,0.17543726,-0.20221461,-0.008599339,0.018198473,0.0197352,0.2865847,-0.10634089,0.071254686,-0.2586183,-0.51779884,-0.29194096,0.49053052,0.26115522,0.20797418,-0.07860483,-0.16079253,0.22508135,-0.11993896,-0.15451083,-0.06799965,-0.48640403,0.06165654,-0.22599673,-0.44265178,0.5395181,0.03168638,0.22798915,0.18355256,0.09071175,-0.18475491,0.08693772,0.03180053,0.73222566,-0.1401441,-0.21154103,-0.4714604,0.073804684,0.011718217,-0.17439789,-0.110049374,-0.2726994,-0.06971703,-0.45686817,0.45061275,-0.011732008,-0.12541169,0.04177862,-0.05899338,0.05230405,0.5058904,-0.047209572,-0.23458308,-0.1817587,-0.15826628,-0.31537172,-0.20993409,-0.07622293,0.20756501,0.2886586,-0.06480183,0.014233226,-0.2373591,0.07874129,0.2342818,0.06387322,0.18758075,0.29415295,0.024258045,-0.309018,-0.030342845,0.08167783,0.41381603,0.019190112,-0.0128291845,-0.24087477,-0.65748876,-0.30221102,0.13724534,-0.13038096,0.36897695,0.096437104,-0.3144469,0.58162624,-0.10397238,0.9665194,0.03984152,-0.21668261,0.07586238,0.5178093,-0.06873325,-0.054094456,-0.3438759,0.9366796,0.48263925,-0.18746836,-0.2121918,-0.3146403,0.0900856,0.1324372,-0.22194226,-0.13863066,-0.056895692,-0.65538484,-0.21836211,0.095916085,0.25589517,0.17850477,-0.0695594,-0.012040794,0.18137386,0.14740483,0.37337902,-0.3529548,-0.2608366,0.416819,0.3282472,0.030865382,0.005643487,-0.3646048,0.38370958,-0.43835393,0.14646187,-0.34950295,-0.016848018,-0.15653174,-0.3567502,0.16609646,-0.13086902,0.27469787,-0.38661188,-0.49087316,-0.17338923,0.27679184,0.17469257,0.10464708,0.48931867,-0.16269395,-0.2203314,0.05142991,0.51611155,1.1877595,-0.11744893,-0.067868225,0.29069182,-0.40022972,-0.685636,0.32264838,-0.2952133,0.21959244,-0.042243503,-0.051548775,-0.63286823,0.30133566,0.2962907,-0.10531706,0.037031632,-0.5958061,-0.21592937,0.16641425,-0.5963118,-0.22275673,-0.48274964,-0.044366125,0.6238552,-0.23020649,-0.10589568,0.06422316,0.29511088,-0.31063265,-0.6777693,0.017665796,-0.29783052,0.22982316,0.027314646,-0.32758158,-0.0816882,0.19736147,-0.39290014,0.12839912,0.037328433,-0.32750612,0.08743744,-0.4776438,0.0011860708,0.8106012,-0.20640984,0.26521316,-0.48373005,-0.47981834,-0.7893342,-0.30759874,0.48903617,-0.0166347,0.084369816,-0.46885017,-0.15908651,-0.07402539,-0.0671569,-0.16130671,-0.23774482,0.4135055,-0.000997906,0.4366488,-0.071004026,-0.67748445,0.1907052,0.13219751,-0.03284751,-0.57356465,0.47883078,-0.17054535,0.6413019,0.14047623,-0.07527199,0.36025587,-0.5372623,0.06709214,-0.1976419,-0.26685554,-0.4150363,0.21737428,152 +152,0.23687682,-0.09667566,-0.378951,-0.14454311,-0.10312773,0.19053331,-0.252075,0.39689958,0.07535601,-0.46837133,-0.031373344,-0.084992126,0.02196965,0.312847,-0.15047567,-0.31070936,-0.031061143,0.13384376,-0.46923262,0.33357576,-0.5137581,0.20371355,-0.16666685,0.35265148,0.074831076,0.14411166,0.26955512,-0.16262044,-0.22584584,-0.079324484,0.12013795,0.29293332,-0.42907178,0.081773415,-0.15053792,-0.21121426,0.0045315903,-0.4060425,-0.36269054,-0.670186,0.40496168,-0.83372587,0.5155566,-0.028922208,-0.15832256,0.4534912,0.20692119,0.17841342,-0.31064034,-0.080559365,0.19066574,-0.1536366,-0.20023006,-0.14803554,-0.14710857,-0.17549986,-0.5330295,0.0020253449,-0.46829847,-0.08464727,-0.42497838,0.17930566,-0.4316551,0.14724322,-0.11308555,0.48712686,-0.50163233,0.06697945,0.15377155,0.01883641,0.12700626,-0.5231051,-0.15820186,-0.1748895,0.1761447,-0.1920543,-0.13680834,0.29968792,0.28385475,0.345839,-0.15368499,-0.13574377,-0.19921143,-0.19647838,0.2169369,0.45584318,-0.12359738,-0.46534073,-0.052808207,-0.13031477,-0.000174431,0.10100394,0.07020203,-0.15899454,-0.16229957,0.21989952,-0.30091694,0.40528688,0.5580857,-0.2000584,-0.16925834,0.42369574,0.5537953,0.10263667,-0.14151339,-0.023168514,0.0057293405,-0.46948984,-0.16545674,0.12266258,-0.21135116,0.41341114,-0.17206486,0.2965435,0.5464731,-0.3629653,-0.105897784,0.0062603313,0.09630085,-0.115128525,-0.165763,-0.33174455,0.16835268,-0.48756945,0.21262598,-0.11138995,0.7895101,0.15156336,-0.6138567,0.40599492,-0.46533263,0.10869112,-0.039226346,0.6434035,0.68917847,0.42103624,0.41587335,0.6281436,-0.44916847,-0.07940213,-0.06274366,-0.45376956,0.07107598,-0.25343242,-0.11185549,-0.35550645,0.012727507,0.14173375,-0.06493629,-0.019750992,0.42813635,-0.33529514,-0.054400597,0.05845692,0.63853914,-0.368031,-0.025895732,0.69208187,0.99876773,0.9531554,0.14772859,0.9822067,0.15221487,-0.18752548,0.19228904,-0.10358023,-0.96961683,0.3966025,0.4135142,-0.06640527,0.22036219,0.2056622,-0.06482831,0.3376509,-0.67663884,-0.07398283,-0.1575142,0.259184,0.12148126,-0.11086636,-0.36881003,-0.22755095,0.0954432,-0.11198733,0.24827896,0.28375667,-0.23872952,0.3183233,0.041133378,1.4844464,0.0043253363,0.10568202,0.16470854,0.44184348,0.07835962,-0.08174243,-0.18223003,0.32013968,0.47518322,0.13285412,-0.5848971,0.07193274,-0.14617564,-0.46594015,-0.11529021,-0.3668329,-0.10011958,-0.081826404,-0.4176369,-0.078538656,-0.12591524,-0.39209014,0.33193773,-2.845687,-0.13897316,-0.16607523,0.26780626,-0.16378048,-0.25164667,-0.16254807,-0.52126,0.40564123,0.37541705,0.381798,-0.56843597,0.32607636,0.26560023,-0.50204223,-0.11534451,-0.64964044,-0.20506911,-0.13333152,0.3119792,0.06340305,-0.12151004,-0.0019264271,0.16071606,0.44953856,-0.12048144,0.084809415,0.33827162,0.4437055,0.08966373,0.43926525,0.008804556,0.4814181,-0.4103252,-0.17819366,0.214089,-0.4038436,0.26935247,-0.12310408,0.059827678,0.44671234,-0.4456908,-0.8673152,-0.51429504,-0.18380457,1.343322,-0.3507962,-0.26232362,0.2761301,-0.45264608,-0.27017358,-0.17484328,0.5220767,-0.2634832,-0.14507,-0.8449271,0.12318819,-0.12460788,0.30063948,-0.15187056,0.18600817,-0.42046502,0.50515777,-0.16893865,0.5795549,0.35323414,0.08696103,-0.40242413,-0.3977241,0.019246196,0.85644853,0.2526557,0.2088047,-0.3181049,-0.20284748,-0.25470743,-0.10796431,0.12744401,0.4333463,0.65846723,0.045986585,0.26889324,0.24824275,0.00041584572,0.0016123672,-0.20783505,-0.12197105,-0.10895452,0.036683034,0.59449667,0.4765067,-0.20578489,0.3751485,-0.054678954,0.17827241,-0.27521724,-0.38102227,0.37775022,0.8096676,-0.15152344,-0.2384551,0.6067456,0.5990368,-0.26797873,0.44646642,-0.6032636,-0.37751135,0.5136626,-0.20339155,-0.32734114,0.13684055,-0.31049052,0.13851538,-0.79284304,0.34800598,-0.21055922,-0.47371894,-0.55258155,-0.14003369,-3.0902221,-0.029324654,-0.21679412,-0.23931125,-0.14938878,-0.21919148,0.2692094,-0.5189141,-0.63471055,0.1549793,0.0044962484,0.7449744,-0.015846502,0.028306877,-0.21623239,-0.13490559,-0.3079632,0.021573609,0.26640627,0.34044826,-0.03943837,-0.5137151,0.060602717,-0.35533467,-0.3662735,0.018626519,-0.3509086,-0.3893866,-0.11722718,-0.40617618,-0.36522678,0.63782865,-0.30507267,0.025969068,-0.24383317,-0.09488266,-0.028669897,0.5010713,0.1111935,0.07837882,0.022804596,-0.12694551,0.088480584,-0.24838838,0.40492085,0.0019427468,0.21529852,0.4850773,-0.12731542,0.06639804,0.5278258,0.6239605,0.016752938,0.9688375,0.43810079,-0.03186737,0.2920259,-0.3173151,-0.20863742,-0.47484702,-0.28089148,0.16007169,-0.5232794,-0.3758458,-0.0467374,-0.25921413,-0.739395,0.5551758,-0.07517918,0.18510617,-0.09235541,0.25046647,0.32302767,-0.11528208,-0.040789746,0.013611825,-0.11362009,-0.4427561,-0.2629709,-0.72121185,-0.46423498,-0.14411524,1.0316367,-0.019603463,-0.009860579,-0.11783919,-0.2852392,0.048007987,-0.00043649177,0.1106744,0.4415832,0.4050785,-0.030184139,-0.63415533,0.5051858,-0.26561686,-0.17835228,-0.6605946,0.031479307,0.50058967,-0.60189915,0.43324196,0.54157454,0.09932851,-0.23603392,-0.62419474,-0.20048591,-0.009162708,-0.23396635,0.48285788,0.24164183,-0.95576286,0.5717567,0.34468836,-0.28440675,-0.6600888,0.5683979,0.035426967,-0.08139746,0.06160728,0.36788553,0.028579967,0.010774593,-0.23586608,0.26421317,-0.40301147,0.34557202,0.09964369,-0.0388273,0.58810717,-0.2853433,-0.104189016,-0.6149509,-0.1531076,-0.52892435,-0.19808222,0.043472864,0.024450807,0.11507929,0.2641886,-0.07685884,0.40801275,-0.3453311,-0.013064277,-0.042994857,-0.31331718,0.26127604,0.47629267,0.45775267,-0.30633646,0.73317975,0.037425168,-0.052309196,-0.21417756,-0.014123563,0.3895133,-0.039926697,0.40969416,0.051471844,-0.13209723,0.33328542,1.0035819,0.30329636,0.5262359,0.11782046,-0.20312552,0.22683129,0.098280884,0.2427153,0.15117575,-0.46282777,-0.0720046,-0.19442225,0.1948448,0.5212689,0.08428321,0.4485127,-0.1738692,-0.2946449,0.08499123,0.15806977,-0.057169072,-1.2980211,0.43605942,0.23302579,0.7602313,0.3932902,-0.09396728,0.16409925,0.5331899,-0.2785441,0.07821373,0.28323695,-0.044256404,-0.5165016,0.5858948,-0.6647036,0.47872683,-0.14756887,-0.017377261,0.036310203,-0.015560516,0.45637423,0.7536752,-0.05233781,0.1463617,0.12945439,-0.3066463,0.47055086,-0.38551372,0.099827565,-0.4701424,-0.13543962,0.55229264,0.357915,0.29300803,-0.16915454,-0.05289825,0.11382501,-0.235444,0.04279908,0.009818172,0.05683485,-0.17928293,-0.731972,-0.36278668,0.46662578,0.25336793,0.27009067,0.057227526,-0.17423995,0.28937203,-0.12263168,0.0055874386,-0.05988767,-0.59337866,-0.10229562,-0.21256848,-0.5052671,0.3537914,-0.3196939,0.39874935,0.33297,0.05675181,-0.5265959,0.21256307,0.2995692,0.60596377,-0.138479,-0.19699137,-0.337127,0.07010262,0.36329505,-0.14587447,-0.120564714,-0.38356754,-0.0016655525,-0.55218405,0.47304013,-0.3001719,-0.27863804,0.12735596,-0.16635732,-0.013445808,0.6101159,-0.09234175,-0.030153632,-0.19706097,-0.20805801,-0.22304909,-0.2034988,-0.113365434,0.18241526,0.27628818,0.008513419,-0.14301716,-0.115649536,-0.2367367,0.42027885,0.043219972,0.2562774,0.3093806,0.1401651,-0.3833395,-0.16490307,0.007971945,0.6749409,-0.020403298,-0.27122968,-0.3901211,-0.33876324,-0.18569992,0.3867422,-0.226852,0.25852427,0.06204747,-0.43637875,0.6020768,-0.15396073,0.8399387,0.117952116,-0.34458777,0.027334617,0.575819,0.011342378,-0.088594265,-0.29470003,0.7245753,0.36322778,-0.10103885,-0.2536151,-0.40904695,0.04366237,0.18073162,-0.24871597,-0.4661114,-0.09493187,-0.5388571,-0.15386659,0.21170416,0.25057167,0.09469107,-0.08797324,0.08907998,0.18330696,0.08661273,0.36667222,-0.38897422,-0.023930894,0.42886657,0.18362135,0.045324948,0.065685466,-0.40894744,0.4264281,-0.51975656,-0.03965707,-0.08645405,0.15800068,-0.18010564,-0.2852059,0.26440996,0.18062791,0.3830939,-0.16173694,-0.3050651,-0.18973367,0.39507398,0.18186906,0.23031229,0.56126183,-0.14256243,0.09317417,0.10964737,0.4340605,0.80072784,-0.14408083,0.11215841,0.26155204,-0.2234401,-0.6592176,0.42358744,-0.3210037,0.3190386,-0.04372167,-0.229409,-0.5258284,0.28725433,0.26245484,0.050866805,0.08633998,-0.47565377,-0.31047502,0.31591216,-0.21417001,-0.26203197,-0.36810723,-0.13742277,0.57720816,-0.24179235,-0.10319498,0.043553773,0.37212092,-0.16599983,-0.53486824,-0.1647944,-0.37598115,0.24917266,-0.020017935,-0.20810822,0.0065295976,0.103496306,-0.39236456,0.23315828,0.19784197,-0.32014084,-0.0076703173,-0.25424775,0.003360776,0.75293756,-0.27398828,0.1716297,-0.49598545,-0.45734024,-0.8887799,-0.1350287,0.510089,0.109829076,-0.010058873,-0.59460133,-0.013341288,0.0780759,-0.21119852,-0.07763468,-0.5379919,0.4104561,0.15241647,0.30717283,-0.0042828443,-0.58180845,-0.08069751,-0.09711816,-0.18901974,-0.3440026,0.5817548,0.07093235,0.72525465,0.16432227,0.19367911,0.26092243,-0.38628337,0.14259437,-0.13617347,-0.15713896,-0.5560366,0.10310198,155 +153,0.37274933,-0.14908953,-0.5775996,-0.2080876,-0.41959056,-0.036410023,-0.23649965,0.29752514,0.34050658,-0.118486054,-0.17378642,-0.077227004,0.08184986,0.4491599,-0.055149443,-0.72288173,0.0019783655,0.21359462,-0.832589,0.50875205,-0.537858,0.22941287,0.15197115,0.43927062,0.009764,0.34102675,0.13842623,-0.16038746,-0.048810072,-0.040802136,-0.17946644,0.21668513,-0.71096665,0.12546398,-0.12256646,-0.32212144,0.17468818,-0.4421705,-0.24365206,-0.83425176,0.072504684,-0.901887,0.6017763,-0.22323309,-0.15300614,-0.11592419,0.22211027,0.32534167,-0.39312667,-0.038723163,0.18524344,-0.39333412,-0.2515463,-0.33609626,0.057892848,-0.5874586,-0.36383173,-0.024092672,-0.6606666,-0.2183199,-0.2902668,0.13401847,-0.400225,-0.023560004,-0.195543,0.41650406,-0.43015158,0.04723733,0.22579987,-0.3309546,0.22325392,-0.54790086,0.03467679,-0.064230256,0.46342385,0.14441101,-0.29298154,0.52251786,0.38381317,0.4982598,0.4951653,-0.3991225,-0.06039604,-0.13739923,0.03481609,0.2726414,-0.25864202,-0.28623277,-0.16891113,0.04000724,0.33420002,0.34208614,0.011397393,-0.21765544,0.006054185,0.06644293,-0.26245815,0.58238155,0.64808196,-0.34200636,-0.31449062,0.27591762,0.6768416,0.29369158,-0.25155792,-0.03661292,-0.14235945,-0.52628386,-0.26520625,0.028568523,-0.17422025,0.47834387,-0.21844834,0.022157649,0.96169317,-0.14555593,-0.16438456,0.042682808,0.081331015,-0.20804304,-0.27648914,-0.09063656,0.21334597,-0.60997766,-0.0004402717,-0.27718046,0.7536373,0.16292973,-0.61503613,0.3273379,-0.6086479,0.12218742,-0.15152965,0.7089891,0.88888085,0.6232128,0.41805777,0.899465,-0.3272608,0.12615487,-0.13752271,-0.611536,0.16430274,-0.33550674,0.12720607,-0.48346832,0.1845607,-0.20362803,0.09781659,0.11953714,0.37922862,-0.7285076,-0.023963396,0.2943122,0.7124012,-0.3318713,-0.18829629,0.6812101,1.0075215,0.9034275,0.003513686,1.2987764,0.39700064,-0.21030119,0.26090264,-0.2712431,-0.6610968,0.23298594,0.42780444,0.25413826,0.23066439,0.050603013,-0.09120839,0.5473246,-0.4785066,-0.06432261,-0.058506127,0.40443859,0.11012946,-0.19699176,-0.50355947,-0.1432196,-0.035518385,-0.0034911314,0.19737393,0.30871058,-0.2860444,0.36660463,-0.043357987,1.1317179,-0.028835285,-0.034112427,-0.05282086,0.63364005,0.43255964,-0.024897592,0.032767225,0.56907773,0.512831,0.021904852,-0.647345,0.33416045,-0.3117715,-0.5178131,-0.15055594,-0.48044688,-0.115233816,0.058396712,-0.38791284,-0.17418927,-0.05830046,-0.14439702,0.43157896,-2.5463312,-0.29825532,-0.012312881,0.34039372,-0.21980648,-0.15268026,-0.05729335,-0.5353641,0.26976046,0.23831746,0.5822028,-0.6799374,0.60349154,0.56363857,-0.6523704,-0.16213408,-0.75787175,-0.013035615,-0.08256877,0.5798674,0.08819364,-0.14506386,-0.2992345,-0.08503929,0.85930187,0.016359108,0.18810923,0.4904629,0.30794507,-0.07292388,0.5471235,-0.00028525194,0.6708258,-0.23058882,-0.324958,0.41369435,-0.11580066,0.19069912,-0.16106577,0.03529925,0.65646243,-0.22111578,-1.0408913,-0.58384854,-0.24232174,1.0284861,-0.58604556,-0.6737699,0.22592953,-0.089385174,-0.06419449,0.14324807,0.53469175,-0.048454467,0.22544555,-0.6410485,0.22993034,0.06817318,0.2684765,0.0503831,0.0189009,-0.2823707,0.882841,-0.12431439,0.5620626,0.09973359,0.33997175,-0.18049425,-0.38722613,0.13916938,0.73022133,0.3710455,-0.028918149,-0.115272455,-0.40595996,-0.015262151,-0.21892545,-0.0319779,0.67603874,0.7346255,-0.06682642,0.10354088,0.35641566,-0.15613209,-0.026297962,-0.2079077,-0.32678694,-0.022274856,0.16801134,0.5892609,0.8050451,-0.11517207,0.5290553,-0.30291185,0.42835972,0.02402062,-0.83944577,0.7822807,0.72809863,-0.38838437,-0.060261257,0.6596127,0.48790935,-0.41978008,0.5114323,-0.72638476,-0.35323197,0.64955455,-0.12192817,-0.48412374,0.20501085,-0.07465884,0.14611872,-0.8573271,0.34783515,-0.25005153,-0.5034126,-0.36006296,-0.123306945,-3.6989005,0.13975126,-0.22953075,0.05294017,-0.4087011,-0.21164484,0.3284413,-0.552437,-0.45427603,0.04431827,0.34392738,0.60220283,-0.12620792,0.11390459,-0.26443446,-0.25965998,0.0001976808,0.254281,0.07997753,0.2259736,-0.2670893,-0.4951709,0.04829484,-0.0211285,-0.62546885,0.14254206,-0.73502594,-0.44047138,-0.15990232,-0.5842787,-0.2681374,0.6727334,-0.40577596,0.06040678,-0.38411236,0.2166162,-0.17318091,0.15559778,0.0035748442,0.20671003,0.20115252,-0.018611105,0.068971395,-0.34834108,0.35551548,-0.112283446,0.41097102,0.05054973,0.041173343,0.09212985,0.60350746,0.6248473,-0.3174299,1.1091641,0.47448316,-0.09770434,0.30629498,-0.20229219,-0.45123816,-0.76868427,-0.45944166,-0.13237487,-0.49271873,-0.39702594,0.07530734,-0.26276857,-0.8555114,0.7211924,0.028333457,0.36495855,-0.03171884,0.41125652,0.58829373,-0.26553473,-0.10565035,0.014836278,-0.29951864,-0.6107668,-0.2083522,-0.6400058,-0.56050473,-0.112458296,0.9008966,-0.31261098,0.033082105,-0.16008724,-0.22653061,0.06687162,0.066552736,0.11785095,0.33887103,0.6601624,-0.10480948,-0.6638501,0.44365862,-0.17177577,0.009340908,-0.4522437,0.26083508,0.5784171,-0.8819149,0.586183,0.32760426,0.079635754,0.0016408762,-0.46642736,-0.31149292,-0.09508297,-0.23598306,0.6637282,0.14490296,-1.0037733,0.72618455,0.29663345,-0.5218453,-0.7350513,0.28503808,-0.36015156,-0.13269857,-0.09495583,0.3128632,0.21170953,0.0034355521,-0.26731557,0.05883391,-0.43957472,0.30757946,0.24449587,-0.14410387,0.33144256,-0.11336157,-0.33169767,-0.87930095,-0.19017999,-0.5189182,-0.27764854,0.214976,-0.07229454,-0.15392184,0.18990894,0.1708964,0.40847617,-0.23961347,0.10767707,0.049840022,-0.38075924,0.39451855,0.6297013,0.2718465,-0.41671133,0.5550095,0.16337703,-0.21433279,0.029472891,-0.02018861,0.42769888,0.090504065,0.48296902,-0.13100514,-0.07736151,0.305799,0.78589857,0.085447386,0.518851,0.0037977297,-0.06409427,0.44638252,-0.019821225,0.2357314,-0.061787143,-0.5483247,-0.022869706,-0.15616061,0.10117838,0.6278104,0.38793486,0.25913402,0.20275244,-0.22424752,-0.006166192,0.08623998,0.02413707,-1.3924923,0.37490195,0.346104,0.87256926,0.27628013,0.13638227,-0.27206296,0.82863843,-0.19356129,0.07707569,0.3598575,0.03104372,-0.3969249,0.8234387,-0.82639694,0.3932566,-0.22208509,0.027689178,0.28593123,0.15837483,0.34079903,0.9821297,-0.39201647,0.06142044,-0.09481656,-0.14301507,0.11885885,-0.3898568,-0.08062411,-0.3622801,-0.50012326,0.5920729,0.27821887,0.3981253,-0.38296425,-0.058987655,0.029771296,-0.22875571,0.17786066,-0.05956485,-0.0597694,0.042844705,-0.504979,-0.19739936,0.60375625,0.0818652,0.29486814,-0.24412526,-0.20140958,0.14064822,-0.17482908,-0.1553785,-0.04857952,-0.55885863,-0.103194766,-0.099041745,-0.5972749,0.5850697,-0.23434146,0.09219447,0.19003859,0.026770897,-0.22254448,0.23828362,-0.013457409,0.8910802,0.08925327,-0.2896624,-0.43604693,0.0538595,0.20709231,-0.23741437,0.102180146,-0.40290934,-0.12464228,-0.4769886,0.55780387,-0.31117517,-0.48636863,0.33277923,-0.273754,-0.06441371,0.51049775,-0.049750637,-0.17741083,0.18474266,-0.1500454,-0.27356103,-0.1492397,-0.22962798,0.236086,0.13115364,-0.047117434,-0.14869693,-0.36777732,-0.046311595,0.5486811,-0.011543524,0.24664932,0.1565066,-0.027218437,-0.14784451,0.122634694,0.3520846,0.46531487,0.10096493,-0.023607353,-0.2621051,-0.445793,-0.30159757,-0.012070068,0.03801828,0.24295826,0.038595937,-0.28530064,0.9285523,0.11967882,1.3659271,-0.01082542,-0.4169716,0.07505606,0.5794016,-0.16781637,0.1351487,-0.34201142,0.7877351,0.4377203,-0.08668299,-0.01074725,-0.6219035,-0.097097225,0.38258642,-0.36748248,-0.04219156,-0.07638118,-0.6633011,-0.46851674,0.24823213,0.23269469,0.1862614,-0.0023047766,-0.034132473,0.12392252,0.003391695,0.44996542,-0.55945027,-0.3221485,0.26535898,0.27357668,-0.23922509,0.11408119,-0.3655591,0.5063908,-0.7517394,0.12886469,-0.44414538,0.07896564,-0.28739282,-0.21200013,0.08883904,-0.18093835,0.41814613,-0.28978428,-0.4350149,-0.048810005,0.5572536,0.08042122,0.04648783,0.7753915,-0.2744983,-0.052369613,0.2001011,0.46114308,1.206331,-0.46266204,0.033701602,0.30678454,-0.45980483,-0.5578488,0.5412219,-0.31877723,-0.021236528,0.0027895847,-0.47360352,-0.4411096,0.26197046,0.15145995,-0.0028424123,0.07261516,-0.6117382,0.009047016,0.40201828,-0.2507353,-0.10300309,-0.16390909,0.49956927,0.7006063,-0.29103354,-0.34467456,0.14384049,0.406487,-0.2969628,-0.55709594,-0.09609859,-0.29288405,0.41892055,0.11805216,-0.34362686,0.024171174,0.21358617,-0.5885324,0.07209239,0.27678353,-0.29319033,0.21512076,-0.16542183,0.023733588,0.8266936,-0.22218771,0.05706105,-0.6817038,-0.4796863,-0.9790184,-0.35182866,0.17098351,0.19668826,-0.002531286,-0.4807816,0.0071543334,-0.09195555,-0.22476664,-0.0063143414,-0.61499906,0.40345705,0.10407792,0.5357545,-0.32404187,-1.044505,0.21021229,0.12496236,-0.030297805,-0.669347,0.5939958,-0.20453276,0.83369243,0.10977246,0.067335576,-0.019205637,-0.33016667,0.14889288,-0.3609429,-0.18203184,-0.77507144,0.053614616,162 +154,0.4506901,-0.18685599,-0.5604207,-0.04072779,-0.2873871,0.08050411,-0.15121374,0.2895683,0.26725337,-0.298647,-0.28244624,-0.05244891,-0.16176,0.15843931,-0.2177053,-0.8569763,-0.06911363,0.2786169,-0.79661787,0.6774946,-0.28032112,0.37690818,-0.08777364,0.43194935,0.3507025,0.21355076,0.001934584,0.17686187,-0.10862188,-0.060578655,0.23834404,0.21042562,-0.3900215,0.30404207,0.024192035,-0.4214136,-0.13847241,-0.16217996,-0.54029936,-0.71971947,0.4014746,-0.5606444,0.6853284,-0.17508915,-0.2636565,0.11348777,0.07523993,0.2700611,-0.09112729,0.0798485,0.12198598,-0.08940484,-0.13268378,-0.20443055,-0.12185461,-0.32766995,-0.6285646,0.08618562,-0.21192113,0.10864104,-0.29342568,0.33014277,-0.26936227,-0.17843652,0.033262692,0.6838092,-0.4434037,0.24085078,0.09555736,-0.09736455,0.15554056,-0.7633921,-0.18589588,-0.05801362,0.14148246,-0.08925138,-0.24219428,0.35325202,0.23478957,0.3633885,-0.0026423573,-0.070223495,-0.38507944,0.027930005,0.31092775,0.51111394,-0.1918398,-0.27855533,-0.21848409,-0.081882715,0.18332878,-0.03944478,0.18000199,-0.46738866,-0.038921986,-0.16972104,-0.12590389,0.43315664,0.5875241,-0.22357877,-0.04643644,0.21109752,0.60645527,0.24850534,-0.31220895,0.19082107,-0.08414053,-0.47311223,-0.18617731,-0.020083357,-0.036733326,0.39810255,-0.26270455,0.17315458,0.41140467,-0.019855734,-0.09560133,0.15627146,0.14645134,0.1943868,-0.1419762,-0.27079707,0.28489748,-0.32062557,0.023594951,-0.21583627,0.5158904,-0.059835315,-0.73785627,0.3897819,-0.5035517,0.18882097,-0.03326698,0.42932364,0.89654756,0.5494087,0.2286916,0.7250782,-0.26758403,0.0932425,0.0070761126,-0.21001078,-0.0031593083,-0.18112348,-0.25899637,-0.5782595,0.10436353,-0.17630193,-0.11888883,0.18821925,0.68745875,-0.55058277,-0.09850205,0.13677579,0.7601775,-0.310329,-0.074626185,0.7556603,1.1051093,1.0355098,-0.018952202,1.2855303,0.32553163,-0.2164308,-0.116092876,-0.4470415,-0.76917493,0.2806236,0.20110124,0.00055090187,0.29139405,0.13544534,0.049175788,0.6438084,-0.5653442,0.09208746,-0.14379008,0.30190268,0.24238668,-0.18021907,-0.3286608,-0.02281042,0.1089977,-0.006359168,0.08473409,0.30473545,-0.18450995,0.52050364,0.05601406,1.4450259,0.045845076,-0.015575296,0.06527952,0.4226646,0.27754575,-0.21922256,0.037868787,0.14730212,0.3211914,-0.1058106,-0.38726914,0.05819267,-0.19803222,-0.46000487,-0.34151787,-0.15364598,-0.027979637,0.015986083,-0.3386606,-0.32140574,0.026031077,-0.34768203,0.42321813,-2.4974425,-0.12847215,-0.003623871,0.31916836,-0.17467387,-0.38162187,-0.1380207,-0.43972164,0.5028688,0.39787292,0.27831644,-0.5171347,0.42040318,0.54741615,-0.6069824,0.07856898,-0.48774394,-0.26062644,0.08481685,0.42706013,0.098836385,-0.0041149952,-0.004215779,0.27979797,0.3800414,-0.28748912,0.07848878,0.601245,0.32058278,-0.121856526,0.35534057,0.15422456,0.4860276,-0.23819119,-0.19211149,0.47830716,-0.4409538,-0.105399214,-0.09605323,0.16251473,0.4483897,-0.58759344,-0.81548405,-0.73099047,-0.010224919,1.0951059,-0.13024867,-0.44463772,0.2236522,-0.55422646,-0.4562655,0.12568586,0.390713,-0.28322694,-0.0908932,-0.93637884,-0.06346515,0.029551132,0.17700125,-0.058492444,-0.18201709,-0.52274925,0.7359908,-0.11982953,0.44627598,0.3476567,0.26720947,-0.41162536,-0.60595006,0.15665223,0.83628833,0.41904035,0.2230994,-0.34849685,0.0010137201,-0.2726112,-0.019432664,0.026403582,0.74037284,0.43505272,-0.07267036,0.17027004,0.20833167,-0.18333127,0.005258723,-0.32832068,-0.22452666,-0.16404864,0.15426487,0.59721947,0.80410826,-0.06844747,0.32882348,-0.05344161,0.27077356,-0.12859382,-0.5835431,0.4741358,1.2430363,-0.12483377,-0.41212857,0.57421315,0.32146734,-0.35730827,0.3666331,-0.5175871,-0.32930136,0.32918674,-0.20213555,-0.47285882,0.22981231,-0.47935548,0.27436596,-0.7373413,0.41184703,-0.27218515,-0.6829903,-0.7923965,-0.21927248,-2.699856,0.15785035,-0.16255121,-0.20543434,0.00027934313,-0.0985034,0.2366407,-0.4150655,-0.6181412,0.14528349,0.122177884,0.622366,-0.10339952,-0.006995074,-0.2228155,-0.24406092,-0.2725633,0.13439964,0.2674244,0.4036349,0.056387685,-0.5925653,-0.039211024,-0.21612908,-0.37842363,-0.018915253,-0.564956,-0.47112072,-0.12921134,-0.40524408,-0.3052059,0.5592724,-0.37072498,0.11208847,-0.38785505,-0.05816532,-0.041709915,0.29008913,-0.0015163899,0.3086788,0.09451454,-0.12964661,-0.016978212,-0.20032355,0.28149053,0.026752543,0.10862185,0.4007007,-0.24711232,0.23851338,0.4397593,0.79068834,-0.06549905,0.8568115,0.67456186,0.02826536,0.3594825,-0.2372317,-0.23631604,-0.45018852,-0.19460502,-0.03515742,-0.50945324,-0.38371196,-0.06016945,-0.41344678,-0.84317297,0.3907079,0.055344917,0.015063898,0.08259659,0.0263654,0.382095,-0.075689666,-0.07954613,0.0020101587,-0.16725999,-0.41272953,-0.38415283,-0.5758603,-0.63215446,-0.036934875,1.2350681,-0.069265254,0.049225695,0.0071793157,-0.37663117,0.06824842,0.45312753,0.070847146,0.18479179,0.2492188,-0.08154602,-0.6384016,0.30961242,0.0135345375,-0.18984821,-0.777889,0.33887655,0.6042546,-0.46626613,0.69694895,0.11869344,0.08285419,-0.17704137,-0.46636862,-0.08421458,-0.08212772,-0.36083743,0.65224373,0.27550218,-0.77470624,0.36081064,0.31997764,-0.14949757,-0.73283464,0.4649414,-0.070903346,-0.47909498,-0.03509056,0.36252648,-0.032214113,-0.06349039,-0.29502842,0.4163305,-0.31107077,0.3516021,-0.042323455,-0.017736562,0.26107332,-0.33133328,-0.21194172,-0.8050509,0.025396133,-0.7494355,-0.2248283,0.05966769,0.23025656,0.050499775,0.17675386,0.19481756,0.5336834,-0.14149386,0.08463161,-0.2653534,-0.35877183,0.13893466,0.42892864,0.3616918,-0.23500799,0.49012193,0.0066014924,-0.028554369,-0.13884738,0.21776411,0.4784952,-0.012263664,0.5181205,0.1537022,0.023031782,0.17031096,0.83130443,0.12611634,0.49257553,0.082682975,-0.42760515,0.12455165,-0.00700444,0.27135113,-0.24756306,-0.38327515,0.15350066,-0.07461263,0.28623885,0.48412952,0.038361542,0.34914058,-0.25886196,-0.54622036,0.044059515,0.22029267,0.13388465,-1.261864,0.22983462,0.2801719,0.9400834,0.64684,0.027047275,0.08961179,0.6291349,-0.20187952,0.1804912,0.28640863,-0.11329515,-0.36728752,0.18555275,-0.66877043,0.28636685,-0.06746138,-0.014270093,0.031055331,0.10027324,0.31833872,0.631292,-0.09854301,0.17540452,0.08904681,-0.3268339,-0.013286384,-0.30754316,0.2114182,-0.6242756,-0.29317617,0.7395276,0.6037123,0.31989262,-0.31604674,0.027946698,0.057233334,-0.16681808,0.21029395,0.08259661,0.037242077,-0.20331192,-0.62643343,-0.23005508,0.37851036,-0.09156459,-0.061961852,0.16362152,-0.16926424,0.11398499,-0.026688028,0.049055915,0.012015085,-0.6804343,0.030346863,-0.1864925,-0.2574615,0.56442845,-0.11210596,0.18563844,0.26699695,0.1679041,-0.5138957,0.43011147,-0.11713366,0.6114496,0.27219492,-0.08849514,-0.14207025,0.107627995,0.18377215,-0.23260196,-0.09380486,-0.25164768,0.12584561,-0.55757844,0.5309831,0.03310759,-0.33384547,0.21659908,-0.043361958,0.039273158,0.43714058,-0.17780396,-0.2628645,0.16558236,-0.103464685,-0.2474551,-0.07577847,-0.15524833,0.29874882,0.05131442,-0.08131029,0.022295343,-0.026784489,0.10558153,0.4613764,0.00034152268,0.37849107,0.52670556,-0.03772788,-0.6036997,-0.11438713,0.21525559,0.57973444,-0.13698754,-0.0061644954,-0.14344007,-0.5882972,-0.34572938,0.15779649,-0.093944296,0.24704543,0.09207668,-0.3661038,0.6556966,0.25008374,1.0688788,-0.046750896,-0.33697116,0.16613425,0.45791528,-0.00014923414,0.08698707,-0.4214288,0.78000844,0.6958944,-0.31163895,-0.185145,-0.2846941,0.07655837,0.093157984,-0.20489554,-0.09976683,-0.06588217,-0.672434,-0.25805634,0.14157702,0.19656359,-0.03871723,-0.08772082,0.07355436,0.19073036,-0.07378825,0.049348693,-0.38847452,0.15873255,0.267434,0.1951676,-0.06103829,0.17668322,-0.41632032,0.18028536,-0.4879065,0.0021709919,-0.095496856,0.078714505,-0.24255161,-0.4185961,0.293973,0.12201972,0.16584127,-0.38336653,-0.17423187,-0.3610702,0.4326425,0.08840346,0.18597198,0.51072115,-0.19039008,0.11441318,0.13521475,0.43326876,1.0859106,-0.23416182,-0.10237346,0.26725942,-0.4004678,-0.58639246,0.12634544,-0.34635586,0.1387234,-0.13652392,-0.2741197,-0.6542526,0.24527302,0.15756449,0.030239511,0.09337781,-0.6013168,-0.28061792,0.17244457,-0.3745204,-0.17293213,-0.22778429,-0.11988063,0.37898207,-0.30906853,-0.3158521,0.054941174,0.27652928,-0.34247595,-0.46846455,0.018247524,-0.47720322,0.341222,0.04674333,-0.39999703,-0.3096082,0.08834764,-0.4116589,-0.099053755,0.21115139,-0.38594002,0.05787366,-0.23337944,-0.14333053,0.7929717,-0.29346463,0.38455597,-0.4659541,-0.50202316,-1.146037,-0.26939213,0.41160545,0.33386937,-0.17528106,-0.9837298,-0.18107858,-0.28347814,-0.24125478,0.25101817,-0.32550174,0.5306778,0.119110845,0.35380393,-0.14242278,-0.8283419,0.05193255,0.23126838,-0.3977567,-0.5664772,0.4951262,0.07950557,0.87853485,0.03121459,0.17139983,0.12788756,-0.5959846,0.27665854,-0.1647136,-0.29797643,-0.3359446,0.07112409,168 +155,0.4525439,-0.18503271,-0.3472379,-0.08898704,-0.23806654,0.32467943,-0.1524414,0.67112666,0.12006932,-0.4173092,-0.26128113,-0.15260975,0.042759545,0.2970726,-0.18351673,-0.67510045,0.18117745,0.17496796,-0.54928195,0.46832898,-0.4579204,0.41291282,0.09978994,0.28464645,0.1341854,0.1869346,0.10921065,-0.0819697,-0.09084538,-0.17339844,-0.18376662,0.18901499,-0.5238197,0.22539784,-0.2812936,-0.26971915,0.120175295,-0.40510538,-0.1810936,-0.74532753,0.21338636,-0.67834693,0.5686485,-0.124370255,-0.19689558,0.17156808,-0.06575345,0.27376768,-0.15784372,0.07277761,-0.00839374,-0.15845019,-0.20716947,-0.18887405,-0.30417043,-0.53512204,-0.55640954,0.13491268,-0.4111374,-0.18965791,-0.13523944,0.08937171,-0.23557281,0.15911508,-0.1395395,0.2569726,-0.30167547,0.11651297,0.20733906,-0.102184966,-0.23065597,-0.74577385,-0.10607322,-0.049811974,0.26584396,-0.1461196,-0.2228054,0.13877612,0.36310846,0.4612587,0.07397759,-0.13236716,-0.0081062,-0.17306802,0.095706016,0.61094683,-0.030629775,-0.44031653,-0.18712208,-0.1075372,0.33592552,0.09892881,0.1469204,-0.24163179,-0.13982283,-0.11742379,-0.34477994,0.2666156,0.40991324,-0.4397446,-0.21438351,0.2734311,0.63830733,0.29021242,-0.03168384,0.0031448046,-0.13129447,-0.48009524,-0.17956069,0.0418643,-0.15202741,0.53495765,-0.19709176,0.24317147,0.5907186,-0.09011584,0.17675826,0.14376834,0.07750416,-0.057411637,-0.3000126,-0.17115821,0.24712703,-0.3912782,-0.025060771,-0.4724142,0.9019745,0.21316189,-0.48799363,0.35707876,-0.5603602,0.04896548,0.015507896,0.50274533,0.65089154,0.46483344,0.06117536,0.50863844,-0.36505777,0.04292108,-0.24080965,-0.19404347,0.00024227897,-0.035357837,0.13589843,-0.32766542,0.14807667,0.006854272,-0.04848568,0.14205717,0.401634,-0.55235267,-0.1910491,-0.020472368,0.6514463,-0.33745804,-0.19034459,0.8834745,0.7941045,0.59732246,0.022315009,1.4069767,0.35947686,-0.08462346,0.005822088,-0.11350438,-0.51757896,0.26431906,0.42756793,0.022713447,0.22622482,0.14655222,-0.22327873,0.51763356,-0.21201736,-0.10180179,-0.12750551,0.107972614,0.067582145,-0.0894554,-0.37560785,-0.4230939,0.05913692,-0.0010059715,0.36278751,0.31898782,-0.1735219,0.44171238,0.16351582,1.4495457,0.013160872,0.035938084,0.14866963,0.29707846,0.27217168,-0.103753544,0.014266928,0.32140905,0.4442538,-0.25395855,-0.6021399,0.09792228,-0.17613906,-0.49703866,-0.11284904,-0.20428766,-0.31278357,0.0014601827,-0.5201879,-0.16434774,0.0007189711,-0.0649047,0.52784705,-2.4599333,-0.29354334,-0.062108763,0.4353255,-0.24886084,-0.5680083,-0.1222645,-0.5111574,0.28528756,0.27298635,0.38851902,-0.55230534,0.41085273,0.3058426,-0.39802578,-0.30041817,-0.7667964,0.00017073154,0.07117708,0.18805012,-0.0077837706,-0.06738218,-0.12447158,-0.14831664,0.48938274,-0.1794279,0.041822795,0.27587345,0.35715994,-0.00027712385,0.19506977,0.10643341,0.72618896,-0.23613353,-0.20881669,0.35633776,-0.40930384,0.45464352,-0.11815001,0.20459713,0.43622005,-0.24067567,-0.69139045,-0.57609344,-0.43025622,1.0750155,-0.113414794,-0.29175052,0.07167921,-0.22856897,-0.28842923,-0.09675792,0.4871237,-0.28314874,-0.2691836,-0.71273464,0.0017261207,0.0017553369,0.33550936,-0.12675074,-0.007276883,-0.36850446,0.64435744,-0.21493435,0.42249668,0.21370506,0.25445303,-0.008424266,-0.24468024,0.03321358,0.79466313,0.5260352,0.23106645,-0.1602969,-0.097982734,-0.31758806,0.050068174,-0.08612495,0.58124864,0.61663973,0.17755626,-0.0581975,0.2547092,0.03989335,0.030286439,-0.1524305,-0.2986614,-0.073566005,0.061670747,0.56033605,0.47786275,-0.22998829,0.34071413,-0.18698753,0.41263524,-0.3244642,-0.4550351,0.4789568,0.6948748,-0.28800327,-0.019296153,0.5577128,0.38113564,-0.22307198,0.33827174,-0.74530286,-0.32018337,0.5387638,-0.13673906,-0.29691255,0.16934827,-0.14663629,0.1384127,-0.8224852,0.40484092,-0.25872996,-0.41010907,-0.53496754,-0.040070526,-2.618008,0.068026215,-0.06204713,-0.070130125,-0.15003738,-0.27883607,0.07998071,-0.512823,-0.3801632,0.29314363,0.09338166,0.45635766,-0.019897643,0.07708425,-0.20141338,-0.4501178,-0.16122116,0.09307518,0.06979516,0.2788862,-0.28089145,-0.25462693,0.0782294,-0.27561596,-0.30333626,0.16952032,-0.71832126,-0.45463786,-0.17804359,-0.42504057,-0.12340773,0.6573972,-0.5845034,0.08992529,-0.20179494,0.10979237,-0.34953466,0.33264214,0.13037892,0.09755047,0.085420646,-0.09055224,-0.011635484,-0.46751973,0.21219711,0.22880314,0.18285121,0.46322966,-0.0036645378,0.056523435,0.3689655,0.61386234,0.007840793,0.73662084,0.18483604,-0.034360293,0.405624,-0.10966839,-0.53377753,-0.34716925,-0.20140664,0.007682109,-0.31756112,-0.30117926,-0.13653943,-0.35908365,-0.74812675,0.27546486,0.10428996,-0.14905088,-0.02419851,0.40518734,0.6040396,-0.21652669,-0.02687343,0.009041618,0.032094136,-0.49558803,-0.51436573,-0.5847221,-0.46720472,0.085932605,0.97262055,-0.047942813,0.15796345,0.004653287,-0.08259026,-0.012020183,0.15628289,0.071169,-0.08097903,0.44823524,-0.3709027,-0.6069661,0.4570478,-0.2712016,-0.48726055,-0.58227,0.15310097,0.49741432,-0.71978927,0.4222133,0.4289027,0.058004163,0.0028246164,-0.34006944,-0.20983817,0.062339902,-0.2137373,0.2626778,0.17921986,-0.6502713,0.52772844,0.23817152,-0.08175181,-0.7207603,0.53063464,0.0018287738,-0.32013333,0.047929298,0.40373978,0.121440604,-0.02826624,-0.10259579,-0.055942442,-0.49510288,0.13951522,0.28471598,-0.033571906,0.33725885,-0.2521972,-0.1751338,-0.7548068,0.008334577,-0.5288091,-0.25689134,0.044509042,0.05653625,0.17125668,0.152851,0.13912927,0.39191854,-0.5523157,0.11419285,-0.14550234,-0.28161237,0.28777447,0.38676554,0.38874233,-0.22595257,0.53664523,0.04701083,0.11933729,0.054831985,0.1486609,0.5374812,0.16896589,0.3568602,-0.08537896,-0.10326908,0.10023331,1.0271884,0.2314652,0.34790403,0.1006653,-0.20336702,0.2646201,0.09033591,0.10735735,0.1096301,-0.41511333,-0.15589206,-0.022315582,-0.03494721,0.46005133,0.025992986,0.33752868,-0.06693339,-0.26696968,0.13770628,0.025466638,0.19000106,-1.033662,0.061348725,0.07433716,0.80808085,0.20432676,-0.008886472,-0.064918384,0.4548197,-0.19343932,0.18361476,0.22262605,-0.12244606,-0.42238364,0.56506544,-0.5089549,0.4470022,-0.06584363,-0.066216856,0.13328475,-0.22044982,0.33591065,0.85723764,-0.30193475,-0.04491489,0.048720676,-0.23861109,0.018874193,-0.45358744,0.07330037,-0.43712717,-0.21565422,0.6647464,0.40690467,0.46484593,-0.4151353,0.07200398,0.1483994,-0.17749706,0.0744925,-0.053361163,0.30299637,-0.04049944,-0.39816862,-0.35315707,0.5224839,-0.19181372,0.10878969,0.12823276,-0.34057158,0.27165574,-0.055910625,-0.027307475,-0.055760805,-0.6344349,0.053380765,-0.37118566,-0.6163384,0.27456906,0.033553276,0.12615032,0.23592854,0.09424333,-0.30800858,0.5499575,0.1272415,0.9146955,0.073523715,-0.14964506,-0.3119263,0.28058338,0.28598017,-0.2866602,-0.058508623,-0.1869369,0.19843756,-0.66759187,0.30251685,-0.12717049,-0.13418658,0.157505,-0.15395704,-0.08304038,0.4211679,-0.004532091,-0.10582411,0.15147223,-0.018535102,-0.14727035,-0.03264715,-0.10690786,0.22243194,0.22968587,0.02085084,-0.17744552,-0.12727664,-0.11748435,0.20263132,0.15816861,0.23893552,0.35462084,0.07612153,-0.3716699,-0.034997918,0.1624774,0.37869158,-0.2262492,-0.10607626,-0.24697885,-0.5597671,-0.36672878,0.39011934,-0.09080431,0.31495836,0.18977712,-0.3219943,0.76206714,0.09509117,0.9660771,-0.11864899,-0.3091095,0.18380693,0.56476784,-0.021178339,-0.12730499,-0.3098966,0.92012876,0.311165,0.0019645889,-0.009716607,-0.22213106,-0.100308985,0.3073781,-0.20587622,-0.025390824,-0.15017636,-0.52726924,-0.34212977,0.15304784,0.2788808,0.055631235,-0.023558687,0.11396589,0.3058402,0.018669112,0.27884886,-0.6159289,-0.20688955,0.28834996,0.11072138,-0.13524266,0.19232419,-0.3405364,0.4349529,-0.7907794,0.02280547,-0.4779773,0.031539567,-0.22082247,-0.13077272,0.12751733,0.10422931,0.34853998,-0.5824918,-0.39749843,-0.32714078,0.2645193,0.1803281,0.2651009,0.552033,-0.15088913,-0.123352766,0.0029479365,0.6751269,0.9354239,-0.18973373,0.11192412,0.4221384,-0.37058145,-0.45051008,0.23815598,-0.26866618,0.20289111,-0.052140277,-0.05315167,-0.42135778,0.32443377,0.32069167,0.00972751,-0.027072705,-0.5226381,-0.047422703,0.32434186,-0.36817056,-0.2763583,-0.34556285,0.26930764,0.7448715,-0.1880338,-0.22723755,0.058361277,0.34512624,-0.25744227,-0.58309716,-0.088789225,-0.40536082,0.42010477,0.1173307,-0.2174971,-0.16638559,-0.045648158,-0.34067762,0.062144008,0.22206952,-0.40978208,0.025589867,-0.16719837,-0.0154897375,0.7892291,0.04044574,0.14448747,-0.6450798,-0.5036155,-0.7148365,-0.47303823,0.4369173,0.30136982,-0.04165154,-0.5560462,-0.017407276,-0.050704908,-0.06348504,-0.024912722,-0.23219438,0.52437615,0.22880904,0.32633483,-0.08606981,-0.9581201,0.03012422,-0.041124523,-0.3834888,-0.32870165,0.27050686,0.013836277,0.7801342,0.12689832,-0.08279535,0.19378671,-0.51454014,0.11624393,-0.35683128,0.03898561,-0.7643561,0.1874184,170 +156,0.45106384,-0.19562773,-0.52528226,-0.052194696,-0.22866866,0.017123563,-0.08747257,0.31242526,0.18610677,-0.37552637,-0.05258345,-0.2098792,0.14251032,0.2641493,-0.085009694,-0.53981227,0.05681867,0.19805495,-0.6712932,0.5416213,-0.34740365,0.25755054,0.11051153,0.29750577,0.18952554,0.35585627,0.16817074,-0.18004872,-0.100505725,-0.05889829,-0.18908675,0.19903083,-0.30936226,0.129434,-0.08591037,-0.24811761,-0.019588945,-0.54152703,-0.3317976,-0.6550135,0.29061958,-0.7206459,0.5026483,0.046490766,-0.23896,0.31727803,0.17901258,0.3723268,-0.29529545,-0.06511405,0.14088835,-0.023985637,-0.10334534,-0.18502855,-0.1140886,-0.26965332,-0.48266146,-0.0234774,-0.32758978,-0.26127565,-0.25388822,0.053397182,-0.3085985,0.01570087,-0.055087972,0.5798144,-0.46761042,-0.02464795,0.26870528,-0.14990412,0.37176058,-0.37692323,-0.07755612,-0.092125244,0.3862456,-0.19944283,-0.22394663,0.23062387,0.4455829,0.32143128,-0.024101429,-0.07746328,-0.22944818,-0.10145887,0.14881532,0.49956158,-0.14265923,-0.59863484,-0.21643752,0.08082175,0.06190228,0.22609153,0.2067837,-0.3408242,-0.15446948,-0.04439223,-0.207755,0.39658636,0.32641804,-0.37641034,-0.18046378,0.34911105,0.5695372,0.1430893,-0.17968993,-0.0050895056,-0.019016627,-0.48808116,-0.15395851,0.0136907995,-0.16350812,0.3915446,-0.22354822,0.33954257,0.74020517,-0.10397987,-0.042765096,0.042434685,0.031003276,-0.20792867,-0.23232633,-0.083789915,0.20075607,-0.47917548,0.09656288,-0.108410135,0.74004465,0.20504488,-0.7527275,0.33114877,-0.5907025,0.19181944,-0.13473143,0.4395232,0.6274722,0.3604061,0.21880606,0.70929027,-0.42672288,0.0977421,-0.062363245,-0.57041353,-0.008809272,-0.059618436,-0.05825158,-0.62409997,-0.0001306971,0.036500625,-0.119159535,0.10980673,0.2713435,-0.55786437,-0.06558772,0.11662021,0.8645632,-0.2895099,-0.10148291,0.7234527,0.8871869,0.85841507,-0.012012828,1.1032488,0.12789568,-0.3507962,0.24591534,-0.39739674,-0.66376483,0.3425681,0.41073567,-0.06314931,0.27968222,-0.0005455772,0.056011844,0.2600573,-0.28217897,0.104678266,-0.12290194,-0.035071295,0.04182198,-0.16751817,-0.48099232,-0.22248538,-0.15422077,0.096252955,0.14369932,0.1666382,-0.15405057,0.4758397,0.08337248,1.8721431,-0.010948309,0.20154938,0.078195006,0.37147126,0.29254004,-0.08752079,-0.30618784,0.3731308,0.32239878,0.23647556,-0.5722458,0.14663666,-0.16206864,-0.4436946,-0.05595747,-0.37003443,-0.077139236,-0.052716855,-0.4055436,0.027368056,-0.17071374,-0.32476228,0.517956,-2.8049378,-0.20589256,-0.15265939,0.30543745,-0.24820639,-0.3033081,-0.17270564,-0.4005434,0.3436549,0.2529434,0.59745574,-0.66914016,0.38941413,0.3572507,-0.54590416,-0.11263214,-0.5352867,-0.12525043,0.02913606,0.32303482,0.0041109086,-0.027324302,0.042959657,0.23455146,0.44353855,-0.054181393,0.024388552,0.18082593,0.38649672,0.08103515,0.6215751,-0.005088502,0.56287456,-0.083256215,-0.23291254,0.18441005,-0.08630918,0.20718905,-0.05863534,0.13401915,0.45438066,-0.41746798,-1.0134037,-0.5756188,-0.11800282,1.1203955,-0.33937293,-0.26582754,0.2866275,-0.22964856,-0.27369064,-0.048427097,0.41488343,-0.04942871,-0.040959723,-0.8947779,0.18667746,0.030419815,0.12859555,0.10063485,-0.19669908,-0.41904885,0.7012522,-0.05681602,0.5886345,0.29605517,0.15622215,-0.20895582,-0.45361626,0.03475778,0.8919293,0.31127784,0.034795698,-0.0719032,-0.14325716,-0.44945458,-0.05985059,0.09755274,0.44012058,0.62987894,0.048435654,0.13471751,0.25680727,0.020506648,0.12576391,-0.13105187,-0.29163033,-0.04516422,-0.27187252,0.5134962,0.59296125,-0.28097495,0.5655441,-0.087709434,0.34605375,-0.05400844,-0.48033184,0.6684733,0.9816558,-0.16411386,-0.28349307,0.5542776,0.32971743,-0.23153336,0.30618593,-0.45284593,-0.17855495,0.52739024,-0.25782523,-0.41808274,0.32872972,-0.23947798,0.21476069,-0.98462963,0.2322616,-0.28861675,-0.42735514,-0.34408778,-0.048687458,-3.952385,0.28244755,-0.26939714,-0.21681118,-0.11199745,-0.025406213,0.08905055,-0.61274093,-0.55444646,0.16287763,0.06787556,0.7706092,-0.13128263,0.14580713,-0.13567342,-0.31199643,-0.13720137,0.13046339,0.07508776,0.31759483,0.004648348,-0.50221723,-0.14642055,-0.13037504,-0.5423978,0.13527584,-0.5372475,-0.4364497,-0.027046137,-0.55429655,-0.36065328,0.6641309,-0.16495101,0.097052075,-0.14738001,0.03109918,-0.0870043,0.32518002,0.03207779,0.14211187,-0.027040549,0.012678713,0.03832071,-0.17158821,0.23675396,0.024332397,0.28327072,0.1344154,-0.15489079,0.198944,0.44647223,0.605335,-0.07477036,0.77011734,0.46348056,-0.12367151,0.2255746,-0.33108202,-0.3107002,-0.5685962,-0.35442963,0.041991282,-0.39320186,-0.54268616,-0.17014939,-0.3369591,-0.646088,0.5172338,0.060865752,0.12417283,-0.14351885,0.2776982,0.57974035,-0.242831,0.020382594,0.02206804,-0.19977704,-0.6544421,-0.106360756,-0.6381089,-0.30107364,0.15777503,0.86381215,-0.394288,0.102521196,-0.089833856,-0.22536412,0.020568471,0.120629445,0.0069745937,0.35142803,0.34983456,-0.28813496,-0.6639465,0.48589426,-0.19235769,-0.27405745,-0.6029533,0.20206347,0.6264082,-0.58324444,0.5957635,0.36070883,0.00092144014,-0.16280572,-0.31395042,-0.11582612,0.03518106,-0.24587394,0.38731024,0.19549379,-0.6419699,0.3919382,0.38464698,-0.19158958,-0.67366105,0.57071626,0.08370916,-0.27707493,0.015072803,0.3720862,0.113082364,-0.04097213,-0.3163096,0.22549456,-0.39996994,0.2833272,0.16826425,-0.12593685,0.28996667,-0.18048471,-0.22659926,-0.79267716,-0.04834095,-0.53884834,-0.11645536,0.33980653,0.1060247,0.14879324,0.026496394,-0.12537655,0.4086198,-0.305424,0.08665418,-0.0683909,-0.116100535,0.32141045,0.4022052,0.33101833,-0.4841465,0.5119346,0.01260461,-0.14265724,-0.056781225,0.0016045967,0.53448564,0.100841016,0.39507905,0.0069571636,-0.33951578,0.3165787,0.53580743,0.16918232,0.3786159,0.048599817,-0.08120745,0.17771278,0.07847247,0.22413209,-0.0018886566,-0.53393155,-0.055104837,-0.20391063,0.12576382,0.55482584,0.19875094,0.16832368,-0.08981325,-0.46189472,0.012091081,0.20816495,0.08659364,-1.127425,0.4632033,0.20752405,0.7272738,0.45859095,0.0031526526,0.033826437,0.6807235,-0.22081047,0.23001482,0.3042936,-0.020967882,-0.5877766,0.5246349,-0.7910667,0.40002477,-0.02740494,-0.049081422,0.047919035,-0.10484738,0.277814,0.7937616,-0.14345405,0.03943404,-0.058192916,-0.27568674,0.18467309,-0.38411,-0.06995525,-0.6014028,-0.31031767,0.5666599,0.44792402,0.23335157,-0.11195367,0.09355626,0.20691109,-0.09101491,0.034258734,0.15630038,0.25678355,-0.006751569,-0.76760745,-0.19063811,0.5446055,-0.025358772,0.18601976,0.05283069,-0.05803639,0.28613326,-0.21033001,-0.036465097,-0.12163858,-0.5886716,-0.02104307,-0.25178745,-0.3857835,0.52028465,-0.15944582,0.32868242,0.19222252,0.038552012,-0.20832556,0.41114026,0.04054012,0.7485669,0.030373577,-0.14858148,-0.3273551,0.27007666,0.14729418,-0.15535502,-0.09738569,-0.31773666,0.008169945,-0.591716,0.56009537,0.047710158,-0.33762136,0.109997034,-0.051673483,0.010743683,0.6493565,-0.22892371,-0.14796396,-0.28963357,-0.18317989,-0.22836894,-0.2113278,-0.0787484,0.1752002,0.25404748,0.0091136955,-0.122724675,-0.018543398,-0.195739,0.37826687,-0.03866694,0.4851348,0.29706347,0.09379414,-0.34971154,-0.13058539,0.29834118,0.29769167,-0.026871895,-0.1471719,-0.32698965,-0.40435913,-0.3435213,-0.020983648,-0.02784007,0.34722176,0.05993259,-0.11643548,0.80200464,-0.017620603,1.0742421,0.020679263,-0.3710422,0.16045456,0.47381237,0.03369151,-0.09256204,-0.18463469,0.91010344,0.541026,-0.012733976,-0.12096286,-0.33611095,-0.036704656,0.054376435,-0.21047755,-0.16554357,0.04209288,-0.36377946,-0.37442464,0.25556463,0.18487328,0.3738364,-0.1012862,0.10241305,0.28653657,0.0116094705,0.20962134,-0.5008373,-0.3607622,0.2069379,0.31219986,0.045122743,0.081377715,-0.52101004,0.472447,-0.4161082,0.14119367,-0.23695841,0.23506472,-0.20577344,-0.18473047,0.22768387,0.0021353562,0.3524373,-0.27746412,-0.37497416,-0.3565872,0.47048128,0.18194826,0.033168085,0.65833133,-0.30050603,0.059712544,0.13023785,0.4486528,0.90374833,-0.2011551,-0.0072755176,0.4479986,-0.24616246,-0.5694179,0.3155325,-0.29578397,0.17468032,0.0078065195,-0.15202612,-0.5048801,0.26450777,0.15182638,0.095292106,-0.10969203,-0.6281174,-0.24247263,0.3678787,-0.26750806,-0.16627921,-0.31516322,0.12212266,0.51811635,-0.27668792,-0.4100856,0.117362596,0.03169792,-0.09478131,-0.63229185,-0.15806907,-0.28469685,0.29916194,0.10675279,-0.2694566,-0.11491091,-0.010980773,-0.42630526,0.24867126,-0.019155018,-0.30357975,0.17722975,-0.2731168,-0.18909405,0.9862487,-0.2510452,0.08243624,-0.47995836,-0.42502195,-0.7558313,-0.32128304,0.60054153,-0.09436749,0.03780435,-0.6080181,-0.0011211882,-0.057739962,-0.110298045,-0.08293686,-0.29573014,0.32776248,0.09662862,0.38020286,-0.047333352,-0.7616505,0.2511874,0.014834178,-0.17183742,-0.67176193,0.50555253,-0.03366893,0.7975538,0.080975294,0.044452142,0.446725,-0.47895563,-0.25373003,-0.22253805,-0.14742035,-0.6617591,0.026511775,175 +157,0.4732054,-0.075510584,-0.4607168,-0.26844698,-0.44428417,0.13926691,-0.17077413,0.24717188,0.3959371,-0.22229056,0.027085708,-0.055393465,-0.19411364,0.23730777,-0.030224644,-0.6551951,-0.035917155,-0.007412064,-0.79711795,0.45700115,-0.42299965,0.41057083,0.057454612,0.30331382,0.17437772,0.28857628,0.058740366,0.019486971,0.112981014,0.06757509,0.09371099,0.3210283,-0.7026338,0.26321426,0.05790925,-0.11870844,-0.11338169,-0.3032311,-0.31038317,-0.67072886,0.34624034,-0.6842243,0.5120582,-0.07345327,-0.3310868,0.1104925,0.0005040089,0.3023867,-0.38938624,0.0191774,0.28424028,-0.05989384,-0.119057454,-0.093920015,-0.07684286,-0.43597755,-0.42503273,-0.12274094,-0.5553926,-0.12924296,-0.38128132,0.20788552,-0.27271375,-0.08405161,-0.30314937,0.43452695,-0.39281464,-0.00069918635,0.16229422,-0.15933631,0.1286998,-0.5655378,-0.11622871,-0.09657214,0.29641932,0.09976776,-0.30727303,0.23977229,0.3458826,0.5534227,0.05302052,-0.2631787,-0.255056,-0.016647879,0.14519699,0.20355208,-0.07296237,-0.12658504,-0.22259238,-0.095224224,0.31313473,0.21770784,0.107161306,-0.4896828,0.0033560276,0.0050564865,-0.28329647,0.41966206,0.4126428,-0.44252464,-0.20212382,0.45510846,0.32639295,0.23324199,-0.22583394,0.336695,-0.09408423,-0.57915264,-0.17259793,0.20555124,-0.14154945,0.29313558,-0.19996853,0.07934256,0.78645843,-0.11961194,-0.021767247,-0.010116597,-0.08358463,-0.016274877,-0.25053352,-0.117530584,0.021423062,-0.5176666,0.038439807,-0.13894735,0.56552625,0.11529258,-0.7769191,0.19098881,-0.60479164,0.23041327,-0.16702005,0.65533614,1.0183353,0.50632566,0.082664095,0.834244,-0.5097626,0.019548703,-0.111921184,-0.3408666,0.31825367,-0.16477133,0.13293327,-0.5082964,-0.041831907,-0.01075511,-0.11935544,-0.057993457,0.23474184,-0.4182954,-0.09821767,-0.06326094,0.60368174,-0.30754852,0.020022018,0.757014,1.0214295,0.9640621,0.20411777,1.1959004,0.3506099,-0.14015785,0.16934615,-0.28075287,-0.47014865,0.15316923,0.20027876,0.3456233,0.20455927,0.087886326,0.14646003,0.430039,-0.37532791,0.086323455,-0.09558348,0.31312785,0.08142961,-0.117259376,-0.15891102,-0.24509929,0.2571209,0.1648806,-0.033589743,0.25500488,-0.20437129,0.3081872,0.19531849,1.206587,0.092138454,0.052481286,0.007756313,0.3809496,0.13606714,-0.25469452,0.0397421,0.19632544,0.43716323,-0.109441064,-0.6266482,0.08975767,-0.12543185,-0.33406022,-0.12114192,-0.38724157,-0.118581325,-0.18151289,-0.5167182,-0.15085433,0.07926633,-0.2977382,0.48034906,-2.6719716,-0.07813383,-0.21307598,0.22282399,-0.2092984,-0.32091287,-0.13792743,-0.40294966,0.15504669,0.44000873,0.2950353,-0.71368,0.55396515,0.34896216,-0.5828665,0.010346015,-0.6204354,-0.26494896,0.014286097,0.36986175,0.03398955,-0.08448829,-0.20773867,0.2901158,0.56788516,-0.03546734,0.059621114,0.26530543,0.4563188,-0.11080397,0.7352313,0.20273559,0.46139154,-0.13456412,-0.16790578,0.35900912,-0.38388512,0.22763847,0.17850263,0.14849153,0.45410842,-0.3377501,-0.90559775,-0.5727417,-0.30087247,1.3396761,-0.29628164,-0.3579401,0.36647734,-0.3164509,-0.23074453,0.04665576,0.5191933,-0.035818014,-0.0118746245,-0.87621015,-0.08214831,-0.10355287,0.2750091,-0.07562479,-0.04899496,-0.316707,0.79428697,-0.12127931,0.51904124,0.3468542,0.13013048,-0.21928556,-0.43832284,0.18623056,0.88084155,0.4609551,0.03023841,-0.11663079,-0.28876814,-0.23502813,-0.15618038,0.23754412,0.65501946,0.5117696,0.021577796,0.18686241,0.3244532,-0.34646288,0.00405733,-0.29271698,-0.21146466,-0.04909035,0.19239925,0.45395043,0.58498114,-0.041070547,0.31139466,-0.046345968,0.055640858,-0.09163641,-0.5906727,0.60971165,0.6377005,-0.10239608,-0.25689575,0.47842705,0.45308533,-0.16133446,0.35171482,-0.4932259,-0.26773173,0.43064702,-0.11196546,-0.29596406,0.16080648,-0.42915788,-0.032577045,-0.8023023,0.19222946,-0.26120025,-0.4929188,-0.5600048,-0.15542112,-3.8207564,0.035732973,-0.12215544,-0.15603706,-0.16079335,-0.12663391,0.5149003,-0.62165326,-0.6114422,0.053245958,0.04783243,0.53539056,-0.014106092,-0.005127104,-0.33858535,-0.26970962,-0.29233795,0.19061986,0.020173455,0.2855572,0.0024075985,-0.3951908,-0.037625425,-0.14515701,-0.41823712,-0.03233939,-0.51297677,-0.55346,-0.09602797,-0.28941804,-0.18482727,0.67889214,-0.34318432,-0.02281847,-0.2230595,-0.074517146,-0.2675621,0.3996297,0.13841057,0.17159843,0.17917214,0.02915721,-0.14999507,-0.27968067,0.104302675,0.022751851,0.32069823,0.25473008,-0.08095887,0.20278218,0.59464115,0.60176164,0.04936503,0.7992314,0.3725777,-0.150797,0.32404622,-0.21104668,-0.22284395,-0.62595236,-0.2795448,-0.28382656,-0.47268555,-0.28164488,-0.07035389,-0.23175077,-0.8437545,0.33625573,0.064792246,0.09493325,-0.12610257,0.1298871,0.38629824,-0.03916859,0.06634004,-0.10573987,-0.30999097,-0.47967598,-0.40990868,-0.5992439,-0.48529518,0.13441557,1.1039873,-0.17051284,-0.0098578455,0.061068997,-0.4064325,0.0561953,0.039321225,0.085043184,0.20256814,0.43578163,-0.09838476,-0.69014895,0.33711657,-0.21151683,0.011019905,-0.64277476,0.1556035,0.69954973,-0.48318806,0.5849718,0.19500016,0.21717073,-0.0283639,-0.63303393,-0.34604195,0.108623914,-0.22192314,0.6805034,0.3178205,-0.7450659,0.4764247,0.2421429,-0.10924883,-0.544048,0.49753347,-0.01756823,-0.100534916,0.06498174,0.2734174,0.06037675,-0.03448378,-0.05803955,0.3710211,-0.47425318,0.31170836,0.2461905,-0.08067416,0.20113333,-0.0352023,-0.23693468,-0.5210229,-0.15164341,-0.4528288,-0.27930996,0.00596594,0.04078392,0.22011025,0.0953299,0.04131031,0.35518783,-0.08416655,0.1390504,-0.14849503,-0.25324988,0.29669914,0.5690637,0.2918506,-0.37835437,0.51792514,0.18563196,0.072601505,0.06405539,0.14332168,0.44432652,0.18429658,0.3318676,-0.08544852,-0.115660265,0.28147027,0.76505923,0.21028213,0.26536596,0.034853436,-0.13622308,0.21366785,0.12442774,0.15695623,-0.15348764,-0.38734183,-0.068776496,0.10347142,0.31052628,0.40808195,0.070570625,0.3316393,-0.043506097,-0.16738628,0.16937979,0.09658658,-0.04241962,-1.4948367,0.3949924,0.2734532,0.6675998,0.6414637,0.018429905,0.10772686,0.5636717,-0.3087464,0.02266292,0.3840072,0.12789904,-0.38991103,0.45322755,-0.6012596,0.46656668,-0.011755091,-0.014807706,0.06028914,0.33324316,0.23986945,0.85061187,-0.043175116,0.027466599,0.098454,-0.4268734,0.07156302,-0.19391933,0.08370419,-0.5485535,-0.39783365,0.5635958,0.5063924,0.30429807,-0.43259087,-0.04205811,-0.076143645,-0.17550747,0.055598292,-0.18176532,-0.120368816,-0.0903889,-0.5121035,-0.28964087,0.52129596,-0.1194088,0.029200407,0.046369758,-0.3062472,0.16122212,0.008161163,-0.105001934,-0.08344503,-0.63902026,-0.1264638,-0.27864042,-0.3992752,0.37253904,-0.39352307,0.20537344,0.21655662,-0.0184182,-0.2846359,0.3314505,0.12470513,0.66957575,-0.11188045,-0.12934744,-0.30155295,0.027205944,0.2112344,-0.20505638,-0.22553764,-0.30204955,0.042347398,-0.4698437,0.21251363,-0.25587896,-0.21923868,0.024269713,-0.10110581,0.11396365,0.41464406,-0.36232993,-0.16047381,0.04061234,-0.05615461,-0.2656692,-0.18947905,-0.36461034,0.37703964,0.0050528925,0.13772698,0.04847791,-0.06533715,-0.00493433,0.3204206,0.13658153,0.2427763,0.383906,-0.14843439,-0.3663808,0.030319555,0.12409737,0.36023802,0.10714252,-0.12774993,-0.3611898,-0.25439742,-0.42887104,0.29942513,-0.19567819,0.2604383,-0.1364037,-0.5498634,0.8862841,0.10908776,1.111582,-0.06535081,-0.33447587,0.13560645,0.48681152,0.023484772,0.12884156,-0.18285272,0.67605346,0.6913182,-0.0861813,-0.17485228,-0.4249522,-0.22175445,0.20098099,-0.3620407,-0.120958716,-0.059690755,-0.7959368,-0.007691179,0.11897146,0.17106846,0.030559445,-0.060729977,-0.16604802,0.025984423,0.1359262,0.4400292,-0.512338,0.016852032,0.2859445,0.25656447,0.1007069,0.19072424,-0.3198379,0.4813644,-0.7713898,0.16113703,-0.33093604,0.16095515,-0.12800561,-0.173582,0.20855369,-0.0056592384,0.28081882,-0.2593222,-0.30969778,-0.33221486,0.6678256,0.124835685,0.3453239,0.7260943,-0.21352133,-0.05566364,0.073690526,0.5026234,1.0269805,-0.0742453,0.015438223,0.18326677,-0.2620147,-0.5335451,0.11158346,-0.3736089,0.20516062,0.037642565,-0.33614603,-0.25518253,0.34310374,0.006905945,0.26251742,0.039014243,-0.61779976,-0.32057875,0.36791033,-0.18244076,-0.2830177,-0.27192813,0.1936283,0.5862464,-0.36882764,-0.26722288,0.0174892,0.39530385,-0.23295332,-0.5878743,0.045681667,-0.38350964,0.37500033,0.021416528,-0.35935608,0.03667808,0.20782857,-0.4002533,0.036211696,0.26651317,-0.3298837,0.058206342,-0.2625161,-0.13911505,0.9716222,0.033312563,0.21191475,-0.6303209,-0.5753335,-0.83263755,-0.4113324,0.19334501,0.29453334,-0.20937076,-0.5864525,-0.11011826,-0.117305346,0.076593556,0.12352716,-0.5651128,0.50892055,0.16996725,0.41275817,0.0014289458,-0.9258161,-0.038587883,0.0961922,-0.031992387,-0.43371484,0.70382893,-0.11060925,0.7031826,-0.0021259547,0.09628475,-0.04625122,-0.5498432,0.28559703,-0.24164933,-0.18240151,-0.6556141,0.08586289,181 +158,0.5332194,-0.17541164,-0.5638955,0.032212507,-0.27670047,0.20769596,-0.09752878,0.582144,0.35436994,-0.29891506,-0.10830431,-0.29911247,0.081676446,0.37263525,-0.038718652,-0.37314546,0.034238618,0.17336304,-0.66366017,0.48653162,-0.43824244,0.20302315,-0.09770549,0.50440395,0.21473186,0.25322405,0.09494642,-0.0590814,-0.369895,-0.08740673,-0.01084601,0.25432196,-0.37895828,0.19615741,-0.25463933,-0.2950185,0.010687264,-0.33734515,-0.5149579,-0.735156,0.23606136,-0.6803256,0.43797302,-0.015523418,-0.27112886,0.033165727,-0.097007304,0.27954537,-0.23831314,-0.11594726,0.09219914,-0.22744282,0.035258885,-0.31292537,-0.1703109,-0.30686367,-0.5302004,0.076681264,-0.44952723,-0.06503047,-0.21727899,0.022119673,-0.3129502,-0.02045711,-0.14992565,0.4203597,-0.37922972,0.22176762,0.1438938,-0.1880634,0.13102031,-0.5439545,-0.39627922,-0.1428598,0.12033047,-0.008065741,-0.27735144,0.32499513,0.27921256,0.45745844,-0.06842678,-0.03147559,-0.4097807,-0.012549504,0.15578468,0.40373632,-0.027115269,-0.61777467,-0.0909512,0.052305307,0.1515419,0.21035753,0.15994792,-0.254027,-0.08431002,0.16072938,-0.2399862,0.4061755,0.4624272,-0.33730218,-0.27752697,0.23257956,0.514536,0.3198958,-0.13231616,-0.17187557,-0.021570347,-0.5465224,-0.16157971,0.09772827,-0.21845938,0.52484775,-0.10416,0.28771725,0.5497119,-0.2767288,-0.19422475,0.17879893,0.18723403,-0.22543672,-0.07840989,-0.16835742,0.05610522,-0.29456475,-0.011392339,-0.1335277,0.7073791,0.26116237,-0.5442665,0.4719799,-0.46011886,0.14903761,0.008744144,0.4491344,0.82041055,0.40864244,0.2840638,0.62979215,-0.30357736,0.13774423,-0.12223049,-0.34598282,0.13539146,-0.25648764,0.098588735,-0.5420181,-0.0794316,-0.0042766095,-0.23471731,0.14665954,0.60049146,-0.46928468,-0.10283062,-0.021839015,0.8192739,-0.1767748,-0.2273186,0.7588547,1.0140357,0.9995014,-0.028758418,1.0402544,0.21625815,-0.2668832,0.26662585,-0.44291726,-0.64726794,0.30489758,0.2983004,-0.20644815,0.29198965,-0.09673715,-0.024210183,0.354987,-0.2918679,0.11527564,-0.049199987,0.43046433,0.19566122,-0.046765093,-0.22789909,-0.4917221,-0.30799356,-0.07421093,0.014099987,0.36110884,-0.19690196,0.46864802,-0.013278937,1.7904385,0.04521578,-0.02393954,-0.0032539228,0.5941353,0.18925886,-0.23314826,-0.13720317,0.3363224,0.038584664,0.12118979,-0.45965403,0.13746499,-0.3354154,-0.50102913,-0.040912636,-0.3129793,-0.114074595,0.028541902,-0.34241125,-0.1883255,-0.22911923,-0.27010503,0.5200219,-2.7681706,-0.29069623,0.08505132,0.3441951,-0.25923702,-0.42957315,-0.15310912,-0.6433526,0.22858486,0.25649843,0.5209488,-0.68450165,0.25896803,0.29801372,-0.5770839,-0.19975229,-0.5564602,0.01491217,0.10111825,0.3009429,-0.114109725,-0.048854694,0.058040645,-0.008825199,0.4098592,-0.06402208,0.16027692,0.2727429,0.3107043,0.012717867,0.29554048,-0.0022906938,0.50104314,-0.39445394,-0.20299599,0.40997028,-0.29042226,0.3748614,-0.13091406,0.10070462,0.539819,-0.52196133,-0.7904555,-0.48767072,0.05558753,1.0908104,-0.04175888,-0.43189922,0.18711099,-0.4639354,-0.2447297,-0.19559485,0.45681494,-0.025978176,-0.261496,-0.70849377,0.052876648,0.02150451,0.16765377,-0.03472154,-0.07788291,-0.2072657,0.4959093,0.0073087197,0.37435862,0.21362711,0.15600252,-0.3458316,-0.38444906,0.2335628,0.8393098,0.34860185,0.19451576,-0.13223536,-0.22219066,-0.3322881,-0.1273882,0.08286907,0.5293716,0.5732303,-0.11479201,0.13969445,0.3457201,-0.0837905,0.0062574525,-0.19213094,-0.28312963,-0.04118763,0.013117365,0.5189014,0.78744584,-0.13293496,0.62408155,0.10876394,0.25698727,-0.13016137,-0.48847622,0.63071173,0.9590345,-0.24649957,-0.25138363,0.327463,0.30912924,-0.40481645,0.39146945,-0.43126494,-0.44684282,0.56248105,-0.15702066,-0.31584257,0.2792484,-0.26549464,0.1612639,-0.78119093,0.25021002,-0.3441872,-0.3874745,-0.6019464,0.0042422474,-2.6909912,0.11971808,-0.20649405,-0.16372052,-0.010544451,-0.003392746,-0.018163629,-0.53532064,-0.5732651,0.13446555,0.06219598,0.7026245,-0.15674825,0.07076167,-0.09409244,-0.4756792,-0.48554903,0.06516311,0.18126284,0.48551732,-0.0048574605,-0.5168149,0.12910102,-0.27128756,-0.30361897,0.22384787,-0.57983804,-0.5777725,-0.26366764,-0.4471701,-0.44174868,0.7022924,-0.22391237,-0.01304185,-0.18962161,0.027048893,-0.08270915,0.27278036,0.2555521,-0.10071906,0.07162693,-0.07472489,-0.012722071,-0.34125063,0.19136745,-0.012865741,0.35839197,0.60065675,0.05273201,0.3063268,0.44747263,0.7520921,-0.04017469,0.7657234,0.33292305,-0.13457718,0.30911806,-0.2610341,-0.2431714,-0.27353725,-0.16883107,0.063218996,-0.4369175,-0.45220688,-0.14499985,-0.39791057,-0.6210822,0.34839824,-0.028347118,0.13195144,0.1348204,0.2185743,0.68481064,-0.16480704,0.08588465,-0.057638135,-0.0955172,-0.62166774,-0.32881403,-0.64875954,-0.5534658,0.42849922,0.92653835,-0.20277414,-0.08564583,0.18162541,-0.40865618,-0.012039582,0.15640374,-0.1562706,0.096548416,0.3776835,-0.28616744,-0.56302774,0.39828855,-0.103023656,-0.15903395,-0.65715915,0.27296895,0.5091672,-0.6251948,0.567475,0.14262183,0.12424382,-0.15719274,-0.25320634,-0.15226358,-0.039539974,-0.15688327,0.26827872,0.19461349,-0.7134524,0.34883115,0.27533263,-0.3186289,-0.74505204,0.4065779,0.0573376,-0.26571515,-0.15968674,0.31159833,0.17360361,0.0812144,-0.26284927,0.23381422,-0.5599051,0.20265701,0.34948713,-0.12979664,0.16952713,-0.19402666,-0.33048075,-0.7286078,0.104336284,-0.31475037,-0.39302272,0.34674212,0.25715834,0.1479147,0.08335376,0.310906,0.27461365,-0.22778906,0.022107108,-0.081173405,-0.2106284,0.3332782,0.36644503,0.6927019,-0.37592882,0.55765456,-0.05527329,-0.12713313,0.118969776,-0.06521489,0.2149454,0.30112615,0.34869033,0.25628603,-0.392876,0.29771724,0.9202902,0.16711341,0.33496788,0.017127998,-0.09867242,0.093901746,0.029972378,0.2919091,-0.06524037,-0.46123308,-0.037632,-0.19300528,0.22280246,0.47115344,0.09424519,0.18989936,-0.07544113,-0.37638396,0.004247456,0.19492534,-0.044082206,-1.3192366,0.22050698,0.17254467,0.9288256,0.35671562,-0.079664245,-0.076688625,0.64174026,-0.079114266,0.24558942,0.32735208,-0.034123056,-0.56635284,0.5412848,-0.6613169,0.64885205,-0.09226668,-0.11984202,0.011274548,-0.042770814,0.44186884,0.7876454,-0.27554864,-0.12684569,0.15564094,-0.33671197,0.120571755,-0.3836991,0.04989999,-0.7983423,-0.3150315,0.56044847,0.49380144,0.30838126,-0.30802086,0.027214587,-0.03663576,-0.1726106,0.35898504,0.0021869282,0.25819537,-0.07192208,-0.74179107,-0.14490871,0.48302895,0.028387817,0.16148649,0.09763861,-0.14341412,0.26929808,-0.22038539,0.06962999,-0.08519756,-0.65721905,-0.09681503,-0.3538562,-0.44463247,0.5851586,0.07450728,0.29141885,0.1979783,0.11096198,-0.34219643,0.58130395,0.03031677,0.7646736,-0.02046522,-0.16861543,-0.4204698,0.29562154,0.21069473,-0.13711722,-0.053776145,-0.029874679,-0.057454947,-0.59571636,0.6187328,0.073697805,-0.1372992,-0.14892557,-0.04070956,0.068459764,0.6104864,-0.06499819,-0.23092836,-0.21806517,-0.0503378,-0.40178153,-0.06932445,-0.013092516,0.12874338,0.32546446,-0.115869455,-0.15119952,-0.09781049,0.049582534,0.23757778,-0.06731038,0.18098532,0.40325144,0.09278896,-0.25498104,-0.269114,0.12309548,0.48758304,0.2036964,-0.096539356,-0.41228327,-0.41873857,-0.40778986,0.14909202,-0.053861316,0.2876076,0.1356794,-0.36493126,0.4992669,-0.17482659,1.2603232,0.19609483,-0.17370155,0.16473608,0.46933904,-0.016871449,-0.10100613,-0.42761377,0.7895698,0.34379876,-0.096695326,-0.15682983,-0.28546527,0.057749636,0.26425594,-0.16637225,-0.180336,0.06128924,-0.63149375,-0.18467095,0.11352292,0.2599874,0.21099256,-0.21854171,0.0971649,0.38178927,0.13140236,0.20781389,-0.3027429,-0.35748413,0.3757248,0.2938451,0.05373001,0.14002614,-0.4088159,0.3980545,-0.5516637,0.10440031,-0.26803833,0.22091727,-0.11581003,-0.49088576,0.2747863,0.3422149,0.29014847,-0.36038718,-0.40379283,-0.39256886,0.50876933,0.2020436,0.13497472,0.5535219,-0.21010464,-0.2666043,0.16843575,0.459221,1.010648,-0.119999446,-0.19593008,0.5097457,-0.32222876,-0.57970184,0.63606805,-0.3097855,0.20765877,0.049298327,-0.11067939,-0.74680847,0.25861898,0.1096857,0.0061206063,-0.08620183,-0.621822,-0.049229957,0.11358822,-0.53081256,-0.18048327,-0.42554194,0.15239301,0.5497353,-0.26023343,-0.16236804,0.2147323,0.27673876,-0.3112148,-0.3744922,-0.032035436,-0.4054871,0.24171036,-0.00508246,-0.3276408,-0.17112592,0.10419245,-0.50958943,0.14246829,-0.009465826,-0.48824087,0.09252571,-0.30942917,-0.17410527,0.9439936,-0.2977281,0.31188747,-0.34135404,-0.4414445,-0.6574568,-0.26513174,0.45224863,-0.09208855,0.0121117495,-0.7100528,-0.09389321,-0.07242098,-0.2626598,-0.09908079,-0.38176146,0.4931888,0.0639259,0.12652859,0.019771155,-0.64017683,0.22020823,0.13584763,-0.14883812,-0.5820759,0.39589292,-0.24329406,0.77321804,0.06696624,0.014423555,0.5313326,-0.39944202,0.031972323,-0.16604449,-0.07194804,-0.49900708,0.1044954,183 +159,0.41420987,-0.23918213,-0.32930216,-0.06971731,-0.18286358,0.29265112,-0.09635864,0.58523077,0.07766321,-0.44238696,-0.27551603,-0.041241784,0.07253363,0.3230187,-0.250781,-0.46305415,-0.01585617,0.050505344,-0.3876313,0.45790017,-0.5412093,0.2613408,0.03498963,0.4018126,0.14747874,0.12590149,0.25102803,-0.05067915,-0.19507667,-0.23800558,-0.15543987,0.4520441,-0.6042226,0.166358,-0.12932165,-0.26937088,-0.050811313,-0.5583155,-0.25121668,-0.6496628,0.28530076,-0.7789884,0.46445873,-0.06368209,-0.229344,0.49598065,-0.0052919528,-0.058606192,-0.12179065,-0.05924661,0.06441837,-0.20332159,-0.034648154,-0.0928223,-0.12213968,-0.3170945,-0.61866057,0.1148371,-0.43669635,-0.11203795,-0.3350139,0.08574571,-0.32807282,0.057537686,-0.110987395,0.48067093,-0.3764064,0.0009258111,0.047341242,-0.090400726,0.0491824,-0.61867344,-0.26145914,-0.036503293,0.2710816,-0.11538347,-0.17402062,0.17424326,0.29849732,0.5432397,-0.020349931,-0.09246819,-0.4279059,0.05957579,0.121608034,0.5670967,-0.11716906,-0.6858408,-0.098432206,-0.04270451,0.12021073,0.10903878,0.09253428,-0.02749819,-0.20649152,0.14486523,-0.3019265,0.44657534,0.49023983,-0.3511048,-0.39922467,0.4005141,0.37547073,0.23127867,-0.02435749,-0.19040836,-0.0700318,-0.58269846,-0.16398092,-0.049755827,-0.29002488,0.51495826,-0.15159264,0.41855088,0.50786275,-0.11337362,0.07415802,0.1619907,-0.06772031,-0.038732663,-0.09866008,-0.08766027,0.13403651,-0.33548763,0.17954503,-0.2050705,0.8722111,0.079962,-0.6791201,0.3737827,-0.47328073,0.074193336,-0.020130428,0.47726968,0.7021142,0.42156354,0.286214,0.6453341,-0.4198651,-0.10200158,-0.1003431,-0.3346229,-0.022737702,-0.10180892,0.04286589,-0.39384538,0.08200232,0.10604878,0.06898657,0.12817605,0.5608681,-0.56416625,-0.09387871,0.02481692,0.7290066,-0.2622649,-0.22218233,0.89455277,0.9402153,0.94960773,0.059519656,1.0572107,0.14155678,-0.11796438,0.21139409,-0.21918765,-0.5755759,0.3140463,0.3857538,0.15693693,0.18440336,0.0917845,-0.1595253,0.47173017,-0.30525526,-0.16751833,-0.07208498,0.21072021,0.25217497,-0.056390632,-0.38670298,-0.3519038,-0.02164076,0.10472512,0.2434337,0.22192663,-0.19484147,0.33687654,0.095823675,1.552394,-0.048848193,0.11659489,0.03447113,0.34525642,0.20914944,-0.031804197,0.02998048,0.23668887,0.3346492,0.010565249,-0.6528094,0.124149166,-0.21751957,-0.5518653,-0.050520744,-0.31468162,-0.29041705,-0.039103612,-0.491034,-0.10525061,-0.1193148,-0.2377412,0.488905,-2.9253962,-0.26048508,-0.046831965,0.31927046,-0.24909626,-0.48015943,-0.1525245,-0.53390986,0.4072526,0.33264542,0.48577568,-0.6229182,0.30956066,0.2348834,-0.40848288,-0.19315606,-0.6162731,-0.036482908,0.060077768,0.35993442,0.07634943,-0.1079745,-0.004883909,-0.05805335,0.5885862,0.00012904406,0.07535495,0.26869413,0.4914509,-0.06172615,0.40638825,-0.11684013,0.58507305,-0.2383007,-0.14861819,0.3436327,-0.3979564,0.35840327,-0.29309532,0.18443368,0.44494307,-0.28699768,-0.86457705,-0.49820852,-0.24090174,1.2871678,-0.19780435,-0.35778192,0.14330466,-0.2782753,-0.31152573,-0.12444815,0.49861184,-0.26098996,-0.22264579,-0.6860691,0.1269556,-0.112499915,0.0676479,-0.16636235,0.07038728,-0.43905088,0.7386112,-0.040800128,0.5240365,0.21791814,0.30474842,-0.26420486,-0.32151535,-0.071173854,0.8439423,0.37057585,0.15968424,-0.24988954,-0.18684308,-0.25914487,-0.06755682,0.036153182,0.6624502,0.5221563,0.13526602,0.09225213,0.22698362,0.044104435,0.08129202,-0.1314405,-0.06583848,-0.1321259,-0.025775384,0.60976017,0.63446236,-0.21026926,0.4326714,-0.08789282,0.16878144,-0.16258536,-0.3519925,0.49236667,0.75324327,-0.20742801,-0.19548355,0.48308092,0.5010016,-0.10659196,0.29928395,-0.5867834,-0.42446104,0.535614,-0.28426677,-0.3752761,0.16375026,-0.19523385,0.038440417,-0.8289153,0.29138222,-0.17442027,-0.4600515,-0.5039925,-0.058006745,-3.3270414,0.0669393,-0.13278177,-0.1805922,-0.2593633,-0.30300385,0.16677752,-0.5703477,-0.4814917,0.09219332,-0.009462698,0.51567215,-0.08746579,0.16714977,-0.20664974,-0.28894633,-0.16270946,0.1496512,0.026846886,0.39270738,0.027395133,-0.2935948,0.02226631,-0.15403327,-0.36315867,0.10667197,-0.4746784,-0.6151492,-0.019874847,-0.30833155,-0.26782608,0.6223193,-0.483109,0.007474611,-0.14584453,0.086197615,-0.18028036,0.31389037,0.10991653,0.12012761,-0.026228424,-0.1486194,0.19286604,-0.30856693,0.38518712,0.065734625,0.2692383,0.60844064,-0.15362078,0.21103144,0.48504943,0.5591614,-0.09762935,0.82817155,0.40719935,0.007830739,0.3525941,-0.18710893,-0.3197905,-0.5556352,-0.23955025,0.095485896,-0.3823205,-0.38611418,-0.17921744,-0.36938986,-0.74723023,0.3114414,-0.011610732,0.25080603,-0.056030627,0.24811801,0.595305,-0.19314124,-0.025218975,0.018246295,-0.057035644,-0.43959147,-0.33002463,-0.64750856,-0.49507028,-0.0946735,0.80227494,-0.05259722,-0.09893995,-0.049373914,-0.09867646,-0.018947748,-0.032722507,0.10474005,0.0510382,0.26563555,-0.057856757,-0.7346317,0.5760037,-0.22972156,-0.22996777,-0.5652967,0.109288245,0.43202692,-0.50884384,0.3584981,0.44877282,0.11373221,0.061288845,-0.51976913,-0.06680657,-0.024488676,-0.17732406,0.3236066,0.28793088,-0.83183795,0.5566753,0.25023305,-0.22494844,-0.72198504,0.45149258,0.07538756,-0.16965644,-0.11034998,0.30210114,0.32396472,0.09347191,-0.017747637,0.11656908,-0.59116364,0.39906362,0.13201159,0.01985443,0.41539988,-0.16054249,-0.11982906,-0.57230973,-0.12532404,-0.50124276,-0.2723479,0.087557875,0.12138695,0.2870164,0.10891177,0.04297333,0.36158517,-0.4334673,0.04934062,0.041253287,-0.15016337,0.24473146,0.48169604,0.5669554,-0.3568767,0.51560116,0.06178799,0.16190426,0.24862458,0.043057982,0.3845001,0.100312285,0.29567164,-0.063447244,-0.19744794,0.1391044,0.8834461,0.23840341,0.37547317,-0.055678394,-0.31481716,0.33246696,0.046742365,0.2230352,-0.031352393,-0.6122277,-0.15654215,-0.19256112,0.10626039,0.46714813,0.12356582,0.17998078,-0.10705539,-0.17296289,0.088121146,0.2555482,-0.05543472,-1.0364147,0.27920407,0.19344027,0.91324943,0.2834501,-0.06850791,0.07115352,0.58038986,-0.24033132,0.10567277,0.36630157,0.05699227,-0.53472626,0.571344,-0.6520038,0.55335736,-0.11715807,-0.015306717,-0.026897056,-0.07954321,0.30780357,0.77115405,-0.25450552,0.0006524583,0.08268953,-0.3937095,0.16969274,-0.44948286,0.0824909,-0.54589856,-0.029741786,0.59952277,0.5434478,0.30473742,-0.27330476,0.0069072824,-0.001451395,-0.08608346,0.0029318014,0.072541475,0.16274667,-0.12268147,-0.71002513,-0.2420743,0.48482305,0.050571244,0.32234356,-0.010596156,-0.26855123,0.27238208,-0.19817773,-0.18266346,-0.046355452,-0.564189,-0.017090647,-0.30374387,-0.5853598,0.36155275,-0.055010047,0.21063311,0.20711762,0.07302446,-0.21017241,0.16223131,0.16231653,0.7920862,0.062244065,-0.096115634,-0.51451176,0.103352204,0.17832759,-0.19299483,-0.22285773,-0.09350217,0.029057674,-0.5162327,0.3740063,-0.16449372,-0.22665435,0.094114,-0.08249699,0.09302265,0.5252507,-0.026505915,0.009362808,-0.15647773,-0.07935378,-0.20593044,-0.04388469,-0.09064528,0.2385628,0.19052857,-0.022540176,-0.048428204,-0.17558612,-0.18534207,0.36191124,0.14682934,0.28882682,0.3619335,0.054625355,-0.29397902,-0.247707,0.17716935,0.49953845,-0.013319317,-0.18166028,-0.3492796,-0.4886817,-0.33840886,0.25964484,-0.055924814,0.25472578,0.13293569,-0.35665396,0.50561655,-0.12661512,0.905616,0.11120024,-0.29650465,0.118078716,0.50380933,0.08714385,-0.011684996,-0.3523311,0.8226284,0.30183136,-0.021873252,-0.119484216,-0.27918616,0.08425798,0.2185339,-0.2026886,-0.13879508,-0.12990193,-0.62332606,-0.26958883,0.18351428,0.1956861,0.12795903,-0.06212105,-0.05942136,0.31266102,0.05698339,0.4534694,-0.44658008,-0.30341086,0.37192777,0.2795461,-0.15723284,0.11879409,-0.44282252,0.36306018,-0.4860012,-0.010969511,-0.32032627,0.16793296,-0.25735566,-0.089802824,0.33949342,0.107224144,0.33911,-0.22490098,-0.5487507,-0.21930449,0.33712876,0.04916898,0.14647573,0.3369507,-0.16837,-0.096356824,0.08792852,0.55035007,1.1115577,-0.17540638,0.14085618,0.3381844,-0.31410474,-0.55112004,0.27281693,-0.24299502,0.27180016,-0.0565864,-0.09130522,-0.4490236,0.30322456,0.20264088,0.123560295,0.07226607,-0.56265384,-0.20896521,0.29387966,-0.36634895,-0.152731,-0.2500485,0.026795825,0.65820205,-0.36299124,-0.14109913,-0.010151442,0.5017855,-0.12767392,-0.56652564,-0.0019140482,-0.4117014,0.24012133,0.05998083,-0.28177464,-0.18587811,0.04068796,-0.4176071,0.11246881,0.14416851,-0.3845642,0.0633949,-0.28626218,0.022661678,0.96362215,-0.124986514,0.30022627,-0.56362,-0.42745832,-0.8464883,-0.41269022,0.315631,0.15635915,-0.026888167,-0.5838706,-0.03713386,0.017774506,-0.34275696,-0.28817663,-0.42009124,0.4775623,0.13812803,0.35386616,-0.03367974,-0.5821417,0.09429846,0.06260732,-0.14725937,-0.46604007,0.43676415,0.00030447444,0.71266454,0.08136273,0.12244506,0.18325877,-0.48816955,-0.008993049,-0.22886698,-0.096709736,-0.6981411,0.2044259,187 +160,0.4646342,-0.04437777,-0.4979896,-0.18633148,-0.06543896,0.15549706,-0.17087892,0.24042556,0.19074407,-0.54755515,-0.16757871,-0.18093023,-0.24208364,0.2708896,-0.16566405,-0.54048425,-0.021981018,0.15026101,-0.50349927,0.59966445,-0.3407866,0.37670425,0.096146815,0.25887007,0.14450563,0.16031787,0.37389278,-0.1504742,-0.21109098,-0.35728496,-0.007740748,0.04417349,-0.65578705,0.33564034,-0.18394855,-0.35888788,0.018435871,-0.39551753,-0.26156163,-0.7441645,0.2778515,-0.58433557,0.41575554,-0.0022215843,-0.24414445,0.348982,0.08578027,0.29456392,0.00128329,0.12027188,0.22021182,-0.10011948,-0.057597745,-0.168186,-0.0614415,-0.32373363,-0.45947692,0.16412371,-0.47376004,-0.21069089,-0.25856555,0.14530307,-0.116820835,-0.020579224,-0.08733613,0.56124187,-0.3908282,-0.21688488,0.06508298,-0.12779763,0.40505546,-0.70996255,-0.21414293,-0.23406789,0.17689916,-0.1908677,-0.032290615,0.24289055,0.104547344,0.4882789,0.032383848,-0.06632551,-0.22150196,0.0001268228,0.19411229,0.38371494,-0.10706248,-0.49716634,-0.120149136,-0.060185388,0.078435406,-0.025471708,0.122640505,-0.34035143,0.07408478,-0.09598248,-0.31050286,0.34933832,0.44794694,-0.4068874,-0.17533861,0.35624412,0.5001429,0.123895936,-0.063588984,-0.17321904,-0.1378269,-0.37690818,-0.20135012,0.19083777,-0.3020797,0.49480474,-0.10413826,0.063208334,0.5466154,-0.07617021,0.040462185,0.011339458,-0.05518115,-0.03246579,-0.09453821,-0.38524348,0.25044444,-0.34107652,0.031298723,-0.28006327,0.72274435,0.01702854,-0.8154455,0.31560987,-0.42691353,-0.041436505,0.038974382,0.5865501,0.6309446,0.39765438,0.07215298,0.6391603,-0.5803267,-0.0050610225,-0.14449981,-0.1476971,-0.12983474,-0.067258134,-0.08395866,-0.37174997,-0.0006227692,-0.14518099,-0.065762244,-0.1585842,0.3542158,-0.4438631,0.062196024,0.20734333,0.67018074,-0.337516,0.020453397,0.6200703,1.1352795,1.0608869,0.060142536,1.0904413,0.15282647,-0.33468783,0.04764648,-0.3469664,-0.4778701,0.33806357,0.36742306,0.20164505,0.2705611,0.026371403,0.07905664,0.23457566,-0.5167127,0.07740634,-0.0938712,0.29973385,0.006147609,0.07283378,-0.35279307,-0.15016773,0.09791269,0.026501548,0.115571454,0.12179149,-0.31498414,0.19627088,0.157502,1.3234268,-0.25028533,0.12495313,0.093948126,0.40132096,0.12937278,0.006821235,-0.026455022,0.35070404,0.20887226,-0.04303433,-0.57645875,0.006202555,-0.23307346,-0.4522794,-0.22836939,-0.2111591,0.0019478083,0.1997213,-0.35188216,-0.15236229,0.08542326,-0.37309137,0.39363977,-2.5045059,-0.14912869,-0.0983073,0.14358558,-0.39900872,-0.32462516,-0.031363532,-0.4448214,0.4973179,0.36558,0.3377601,-0.50156295,0.3238061,0.42833892,-0.24962266,-0.15070121,-0.47606048,-0.0771991,-0.14248523,0.45764965,-0.025480837,-0.18124014,-0.17907755,0.16737613,0.51044536,0.023317965,0.105729565,0.28767616,0.15876852,0.15766464,0.47820675,0.21027263,0.44146428,-0.38339564,-0.07519452,0.4787661,-0.32729045,0.068289004,-0.119628385,0.24981254,0.2591298,-0.44811094,-0.7259585,-0.7200594,-0.48655406,1.4104625,-0.217635,-0.51020795,0.21112885,0.2159393,-0.20548815,-0.0075787744,0.34261915,-0.064259626,0.12955979,-0.8185863,0.018212112,0.011243152,0.37727648,0.12052445,0.123078845,-0.57447755,0.80214053,0.020269912,0.38727713,0.35212967,0.18764468,-0.32705003,-0.48261395,0.11917303,1.130216,0.28361133,0.08948657,-0.15043072,-0.12028174,-0.2414164,-0.029857691,0.06589232,0.39967218,0.6912031,0.19168077,-0.038044,0.20667197,-0.0442851,0.11084884,-0.024005296,-0.41900292,-0.08426759,-0.012753804,0.6819657,0.48358366,-0.065709524,0.405907,-0.16272275,0.3507162,-0.29144517,-0.2861567,0.6680749,0.89776444,-0.22026032,-0.29400173,0.5939578,0.32539815,-0.20239092,0.44563445,-0.6771044,-0.44629818,0.4272558,-0.101701565,-0.42199993,0.16035582,-0.2982508,0.20635988,-0.8706638,0.25312388,-0.37555304,-0.34126827,-0.65738755,-0.2397836,-3.1036563,0.08299365,-0.14577508,-0.15565775,-0.02349952,-0.02252572,0.36063194,-0.42568594,-0.51069194,0.04594986,0.07257369,0.4094857,0.018399807,0.08630614,-0.17916927,-0.23447952,-0.31028333,0.3473056,0.02900018,0.3085743,0.06165552,-0.36528397,0.064648,-0.2399974,-0.2696707,-0.028897261,-0.3324817,-0.4030758,-0.26086265,-0.47126928,-0.20868526,0.6031161,-0.519204,0.042652864,-0.14559513,-0.06386829,-0.042696904,0.27858105,0.0919547,0.19568163,0.099877745,-0.12464268,-0.099071056,-0.2785282,0.19156359,0.120303825,0.10440481,0.3482086,-0.2586133,0.0710533,0.27655604,0.6515474,-0.048802376,0.7095299,0.5239943,-0.14180645,0.3366865,-0.3949413,-0.2841116,-0.5928348,-0.29947394,-0.07825057,-0.26825795,-0.49866256,-0.114237614,-0.31191936,-0.75886244,0.47978595,-0.11575195,0.0040867506,-0.00680664,0.24382986,0.2865015,-0.20120896,-0.09634992,-0.06251172,-0.05923141,-0.417863,-0.51874757,-0.6157111,-0.3130512,-0.15403047,0.8817282,0.011673407,-0.1165404,0.03927601,-0.09658767,0.06725984,-0.06709221,0.10783196,0.07300391,0.37340012,0.0072560706,-0.7452635,0.43910208,0.03417818,-0.0896046,-0.43448383,0.23264016,0.6302609,-0.4633334,0.33375266,0.37886876,0.22160727,-0.021226065,-0.3648124,-0.094968416,0.052808125,-0.2810549,0.47388136,0.11537445,-0.5221184,0.50338215,0.21395572,-0.25998613,-0.8364246,0.4156477,0.07716622,-0.3474268,-0.031017002,0.4334179,0.013734484,0.05240561,-0.2579914,0.115759894,-0.399186,0.15328914,0.22452177,-0.0026326617,0.3349585,-0.37783644,-0.19918042,-0.5875714,0.08233391,-0.4890655,-0.3618444,0.09161283,0.16227593,0.020255256,0.35170013,0.05907246,0.46208757,-0.09310169,0.11920931,-0.05078087,-0.06757442,0.39824504,0.50942004,0.36738667,-0.41080108,0.5575338,-0.057255555,-0.052556235,-0.3781008,-0.08121583,0.39506534,0.10403241,0.17700888,0.12863493,-0.106794916,0.3899606,0.5696576,0.33823153,0.4425834,0.052009776,-0.29148266,0.35725397,0.08583414,0.15370165,-0.051900085,-0.47713533,-0.31353378,-0.045133274,0.12024262,0.4346124,0.035126973,0.28121677,-0.1285496,-0.22848682,0.15290631,0.22717355,-0.1801851,-0.87319946,0.34631154,-0.036471948,0.7272389,0.7519648,-0.08891005,0.19604851,0.5201095,-0.3214834,0.02667748,0.24050157,0.012834114,-0.4989504,0.5560682,-0.5103623,0.147471,-0.09329999,-0.068040185,-0.090001345,-0.11580499,0.39575043,0.70962435,-0.0984689,0.12207968,-0.16711988,-0.21802354,0.06425594,-0.32003164,0.2519135,-0.32849413,-0.32383585,0.6660805,0.30251697,0.18268718,-0.29118168,-0.03699126,0.0380787,-0.13078174,0.12907949,0.006973505,0.03268514,0.011257187,-0.6031507,-0.14640306,0.564409,0.070046976,0.07141455,0.15462951,-0.19305994,0.14037088,0.04169518,-0.040894866,-0.025047312,-0.5417966,-0.016543923,-0.18542077,-0.2030943,0.3146269,-0.27566206,0.14936027,-0.051849015,0.08206101,-0.25221846,0.077360705,0.32728833,0.45825228,0.22128993,-0.0005054017,-0.3073412,0.06789789,0.057620473,-0.2217744,-0.19108966,-0.18927132,-0.007820525,-0.7756892,0.41407055,-0.03377563,-0.11993263,0.20234805,-0.12749097,-0.13003339,0.58435714,-0.12143598,-0.04002649,0.11434229,-0.11653273,-0.13559747,-0.12672876,-0.19731225,0.17929687,0.034621987,-0.06542656,-0.14706364,-0.051090915,-0.16467495,0.41856328,-0.008648085,0.28516635,0.36701483,-0.020131595,-0.50158185,-0.016237171,0.04394097,0.32235107,0.21596603,-0.025036184,-0.10676642,-0.47062367,-0.2773827,0.21593966,-0.07299686,0.010279298,0.09355285,-0.40375748,0.65924567,0.23404908,1.0877806,-0.021020496,-0.21335158,0.06697464,0.43905815,-0.06515878,0.08373379,-0.5018502,0.8876476,0.54865205,-0.103442386,-0.0764184,-0.2195895,-0.008792869,0.039866827,-0.2206733,-0.043294188,-0.18451329,-0.60682815,-0.4018655,0.16165139,0.43847308,-0.036319528,0.02145802,0.05232511,0.19791283,0.18686533,0.471636,-0.34327358,-0.16498128,0.40072346,0.18990657,0.091196395,0.06165645,-0.35107937,0.44298032,-0.70445824,0.032914985,-0.294011,0.082090825,-0.15401505,-0.21213351,0.16455957,0.11950685,0.29111746,-0.34965554,-0.4429218,-0.2227606,0.4415047,-0.063447535,0.20057036,0.5445131,-0.1645667,0.11135364,0.035417937,0.3960182,1.0046262,-0.13635118,0.07353211,0.22431828,-0.29725343,-0.5685409,0.34214437,-0.34128138,0.13681507,-0.07931468,-0.30401516,-0.45054615,0.2975998,0.1699149,-0.14750385,0.100856274,-0.671347,-0.2938056,0.36890113,-0.24591018,-0.17063546,-0.138051,0.0914888,0.6385369,-0.3616575,-0.36103812,0.010627699,0.33040914,-0.4335128,-0.6919836,-0.01884102,-0.3431537,0.46872357,0.17910792,-0.11616411,-0.14443442,0.22873203,-0.47402313,0.02058204,0.24823895,-0.38537353,-0.021673597,-0.32019126,0.107945964,0.63095635,0.08404164,0.051449105,-0.5430288,-0.41263285,-1.10588,-0.31231546,0.47694674,0.06678215,-0.035071515,-0.45456108,-0.02723704,-0.29815248,0.12055609,0.055745862,-0.32237053,0.32951364,0.13251397,0.5325596,-0.013604204,-0.65656245,0.036986303,0.16441602,-0.024226967,-0.4887481,0.31212938,-0.045351163,0.83498275,-0.016306795,-0.0015670061,0.18264948,-0.7382166,0.113923535,-0.18110244,-0.1225351,-0.54499966,0.23017989,193 +161,0.3726441,-0.17151119,-0.5182727,-0.13327213,-0.14324372,0.2238739,-0.16754754,0.5107438,0.18689916,-0.3892855,0.02261556,-0.050778843,0.034501616,0.3121921,-0.07762908,-0.23605089,-0.02094688,0.16219565,-0.52444303,0.3487952,-0.4921238,0.13547535,-0.18081352,0.38043037,0.0974314,0.19782718,0.112995654,0.041938182,-0.064032935,-0.07816785,0.27463153,0.19499446,-0.5270094,0.3362802,-0.052604057,-0.2612072,-0.052129947,-0.43128055,-0.5284465,-0.64410174,0.31389925,-0.7287706,0.508382,-0.01123184,-0.2767952,0.27768296,0.027728982,0.2311619,-0.32409707,-0.0780574,0.1712915,-0.2736011,-0.1514652,-0.2815461,-0.016835455,-0.20624126,-0.5943893,-0.05521275,-0.33173224,-0.05346175,-0.23771732,0.10907204,-0.3233256,0.10623012,-0.1948647,0.4655309,-0.3492573,-0.055012815,0.24520466,-0.19082455,0.12961608,-0.4496299,-0.049294338,-0.196647,0.017649932,-0.18947425,-0.29642504,0.37300667,0.12203864,0.41218537,-0.20206709,-0.1635007,-0.24952078,-0.042448215,0.08756633,0.45999032,-0.11216078,-0.19781446,-0.11762284,-0.17139158,0.019470979,-0.008613094,0.17324229,-0.19017725,-0.11083508,0.1090893,-0.097130425,0.17266324,0.5643528,-0.22512244,-0.16517867,0.3738308,0.552198,0.033416055,-0.0973537,0.00817554,0.04555458,-0.46753058,-0.28507236,0.033159576,-0.12374822,0.35736874,-0.17145315,0.23984274,0.5710407,-0.21881437,-0.17308998,0.16144091,0.13703902,-0.0720136,-0.32777375,-0.42915946,0.38426492,-0.42834812,0.04739081,-0.1495047,0.66133195,0.081142016,-0.66240793,0.46558207,-0.44349608,0.08100996,-0.09210883,0.60945374,0.74910945,0.57205445,0.22250347,0.71437186,-0.45063022,0.02864934,-0.098236196,-0.38660768,0.33090484,-0.30974045,-0.13183992,-0.39329872,0.013281957,0.09593535,-0.21627907,0.11233711,0.28189096,-0.450242,-0.07124602,0.20329401,0.5923065,-0.30848652,-0.13567463,0.5760165,1.0564307,0.92022055,0.14077258,1.0905414,0.23044392,-0.22373997,0.10357443,-0.09898237,-1.0465608,0.31601524,0.18230176,0.019029776,0.35975134,0.17785147,-0.13754386,0.45583567,-0.4966171,-0.015693905,0.005933392,0.20466708,-0.078811914,-0.10256858,-0.40744057,-0.34559923,-0.002924635,-0.03666823,0.060988765,0.30386573,-0.27573013,0.46037135,0.0538583,1.5318228,-0.060083143,0.16757338,0.08192532,0.4409916,0.14857663,-0.3202097,-0.15822144,0.32412973,0.37633255,0.14020576,-0.60683364,0.262944,-0.051809836,-0.5102446,-0.14803882,-0.39314547,0.12370028,-0.10366828,-0.38911262,-0.21202901,-0.089480385,-0.33334628,0.3025406,-2.836242,-0.075730324,0.025597665,0.32924142,-0.18583916,-0.20743744,-0.14719701,-0.38683745,0.19834258,0.4818265,0.40741497,-0.58919346,0.23240215,0.38053158,-0.47158653,0.011340334,-0.6121155,-0.09028225,-0.19400693,0.21607488,0.12939404,-0.0003833294,-0.029430874,0.1781228,0.4462308,-0.11602438,0.06085195,0.38228127,0.30054656,0.039930362,0.28691152,-0.0725912,0.53218216,-0.61600435,-0.2836356,0.31904832,-0.46010864,0.09702776,-0.077669874,0.0458414,0.49222252,-0.38708112,-0.8044881,-0.50880843,0.013879408,1.2945961,-0.36731094,-0.30736235,0.20295754,-0.37947407,-0.31081435,-0.04363676,0.5226663,-0.20531233,-0.09397089,-0.8509186,-0.022702677,-0.10349063,0.3951508,-0.11538364,-0.0008722971,-0.53165305,0.41003895,-0.010920745,0.81886166,0.23490904,0.14598091,-0.32298335,-0.40051225,0.15132436,0.76964927,0.3719088,0.21912184,-0.26257125,-0.11017649,-0.14991586,0.008441516,0.2148123,0.3446153,0.63166046,-0.046596702,0.24343124,0.37048146,-0.12773013,-0.036725935,-0.089969665,-0.2677607,-0.070320375,0.004401775,0.590546,0.607017,-0.089762464,0.17700025,0.0056025307,0.36242217,-0.23832792,-0.46279222,0.5101046,0.7475058,-0.111542635,-0.3227833,0.5434684,0.5626954,-0.38614804,0.54799616,-0.62475944,-0.31961742,0.2913066,-0.122997314,-0.32358477,0.09913222,-0.32516295,0.35561812,-0.90163004,0.25993913,-0.24288994,-0.5677554,-0.7146746,-0.13524573,-3.2347865,0.10276249,-0.19060372,-0.15893005,-0.021150347,-0.07756678,0.34565622,-0.5710799,-0.52443445,0.085827634,0.10887871,0.8310897,-0.08098748,-0.112217404,-0.25253648,-0.16570446,-0.323263,0.12016327,0.27138415,0.27361774,0.07822063,-0.5372154,-0.077480234,-0.32573128,-0.3936334,-0.054896362,-0.49517906,-0.35275564,-0.16875388,-0.5514552,-0.4159385,0.64388555,-0.23345232,0.07043249,-0.19528112,-0.009139457,-0.048906095,0.31519955,-0.04315717,0.1507611,0.095960654,-0.16642527,-0.07583752,-0.30556858,0.3155871,-0.048802756,0.28368133,0.47246465,-0.30287963,0.06982422,0.6116602,0.6570541,-0.06666609,0.82095516,0.5330126,-0.07501338,0.33797246,-0.32511488,-0.23903401,-0.3619255,-0.23571716,0.075784765,-0.42567843,-0.36526474,0.049525294,-0.35702318,-0.88729465,0.5185107,-0.018124921,0.108057186,0.046164073,0.07324826,0.37110838,-0.11014705,-0.12136122,-0.064014524,-0.15826939,-0.35331306,-0.29322782,-0.67364055,-0.49501926,-0.00016438166,1.1941863,-0.12796408,0.080672495,0.076177225,-0.16830818,0.09784448,0.12144636,0.012385603,0.2880712,0.4529986,-0.024701126,-0.45889595,0.47973064,-0.2833505,-0.112400025,-0.5585042,0.23306829,0.59719884,-0.6917204,0.557376,0.39654872,0.12750895,-0.20379387,-0.5613647,-0.1729478,-0.014932469,-0.10327251,0.5057782,0.22495387,-1.0477222,0.48589543,0.32949898,-0.39328244,-0.61026627,0.5335254,-0.087853715,-0.02234122,-0.08298257,0.3358552,-0.1887921,0.09751935,-0.09347508,0.24171104,-0.46525213,0.17687996,0.1688428,0.045013208,0.44665697,-0.2771527,0.052642304,-0.52442765,0.00087176956,-0.53031844,-0.22057372,0.2312691,-0.07825244,0.087862976,0.23239203,0.03508199,0.46997222,-0.2439401,0.04416548,-0.17097773,-0.4016618,0.5264511,0.48380718,0.37976927,-0.44145352,0.62782556,0.09691906,-0.025515573,-0.19748713,0.0701404,0.43205163,0.15477346,0.41767925,0.033745836,-0.10270805,0.28766283,0.77538884,0.20200102,0.44820797,-0.0046234867,-0.15915976,0.13064735,0.11045746,0.28826982,-0.022225956,-0.46556416,0.050362747,-0.28663474,0.29187208,0.40328518,0.11707792,0.4802415,-0.12177669,-0.32648626,0.08093975,0.07328283,-0.1385534,-1.2233694,0.46576443,0.17893918,0.77162266,0.41407904,0.067015804,0.0073883096,0.6806698,-0.22725226,0.1556334,0.25746724,-0.10336917,-0.52696764,0.61630315,-0.7230941,0.5498077,0.03373652,-0.14609787,0.00046030284,-0.099571295,0.5719113,0.67874146,-0.026587296,0.18201897,0.07592298,-0.31630102,0.33118942,-0.4054665,0.21408159,-0.505606,-0.2533388,0.6042717,0.37790257,0.4283064,-0.2681661,0.01227893,0.09743532,-0.11888276,0.15416647,0.033178087,0.050937857,-0.039289407,-0.7038315,-0.2744699,0.595341,0.032956645,0.13435875,0.017484797,-0.22476499,0.2868561,-0.12822504,0.039588485,-0.11238091,-0.63948846,0.028944766,-0.233671,-0.42441007,0.4249673,-0.23992391,0.23334795,0.28928992,0.09307729,-0.5106239,0.25424227,0.13091694,0.8129888,-0.105032995,-0.25232732,-0.28767484,0.17756388,0.2911369,-0.18444696,-0.081851214,-0.42757168,0.0054445346,-0.43017185,0.43796036,-0.16459955,-0.31242657,0.17293987,-0.0044781636,0.08015167,0.54647607,-0.05894263,-0.14211035,-0.10049095,-0.061451748,-0.3313085,-0.17692414,-0.29823142,0.2953434,0.12006271,0.09506766,-0.09679854,-0.042403024,-0.0012958527,0.361508,0.05299101,0.2568664,0.40417945,-0.03370153,-0.38200948,-0.030256223,0.019853437,0.57198906,-0.017038401,-0.17454402,-0.40909514,-0.36715558,-0.18817274,0.31486398,-0.07088666,0.39165848,0.17157339,-0.34150913,0.6582001,-0.15335639,0.9052705,-0.022743728,-0.35304424,0.0065261843,0.6242281,0.052306734,-0.073292926,-0.38830456,0.7977367,0.5789374,-0.21179336,-0.14660914,-0.34217918,-0.013867168,0.12482335,-0.22771831,-0.42488477,-0.07211065,-0.76448286,-0.015776088,0.19425812,0.33519128,0.19828911,-0.08674763,0.11441481,0.268363,0.026579281,0.04232967,-0.32439488,0.01977539,0.42490742,0.22207178,0.022478346,0.0970551,-0.4699068,0.32628676,-0.7093706,-0.017617736,-0.16354424,0.1414911,-0.09002273,-0.41549173,0.14057526,0.14916559,0.21552709,-0.22765426,-0.24948348,-0.10757203,0.48069173,0.12120442,0.23656917,0.78491217,-0.21505333,0.07874991,0.14960292,0.3196956,0.7161857,-0.21439253,-0.015687283,0.17103313,-0.33952814,-0.7743724,0.3829206,-0.19946247,0.36932942,-0.13275565,-0.21947856,-0.6040751,0.33682522,0.23678122,-0.11383231,0.13833876,-0.52911854,-0.12092878,0.16490409,-0.31206733,-0.30097902,-0.40559337,0.016068827,0.49842983,-0.25759238,-0.21067467,0.21129629,0.3463221,-0.18340452,-0.41326633,-0.024877954,-0.43009442,0.17635709,0.020182414,-0.38263687,-0.0053860624,0.04603003,-0.39470997,0.32499662,0.15228884,-0.23994742,0.024234716,-0.34902012,0.015447666,0.7335558,-0.20920998,0.018876815,-0.58549964,-0.5183055,-1.0088058,-0.25739333,0.45338383,0.18985398,-0.004201625,-0.65339446,-0.0010436655,-0.060168456,-0.13791877,-0.18703532,-0.3694291,0.40872812,0.049793504,0.21906129,0.06426519,-0.63597065,0.111225635,0.13050619,-0.12693511,-0.43164775,0.4594559,-0.1308501,0.82157606,0.16840567,0.21942666,0.23954262,-0.47645637,0.115916215,-0.23083371,-0.16738221,-0.50595146,0.05889022,200 +162,0.34002832,-0.1392932,-0.42897287,-0.24253611,-0.40378135,0.15094589,-0.15002786,0.2848047,0.198747,-0.09914551,-0.04774139,0.01700058,-0.06240758,0.4284896,-0.11652174,-0.59247553,0.09475579,0.16250962,-0.61519855,0.50189894,-0.5543615,0.3032395,-0.005392627,0.44652423,0.08474439,0.29314545,0.11692783,-0.08273004,-0.052106276,0.08367764,-0.26393604,0.49256524,-0.6387583,0.25791246,-0.039279032,-0.2504531,-0.022499848,-0.29231647,-0.26573756,-0.79704463,0.2337329,-0.76393646,0.602325,-0.22987062,-0.5652226,0.030224482,0.022091929,0.2852361,-0.48071155,0.05167299,0.17262223,-0.371787,-0.04083654,0.032046665,-0.15921251,-0.49521667,-0.58561385,-0.0026940028,-0.6574665,-0.06017851,-0.35178947,0.29247797,-0.33662325,-0.11827043,-0.1550691,0.38840428,-0.47105303,0.046522,0.11302395,-0.27977222,-0.13361889,-0.44750765,-0.07976561,-0.22935,0.35206792,0.1786918,-0.3676224,0.2613209,0.46809974,0.61122984,0.18718967,-0.29340553,-0.14159958,-0.07961673,-0.006776615,0.43392196,-0.06942242,-0.2945679,-0.35657215,-0.07321234,0.42355248,0.13543685,0.0170708,-0.32287508,-0.0276017,0.10140934,-0.16938716,0.20148224,0.45715252,-0.503959,-0.16982664,0.4766194,0.38019383,0.13969988,-0.20806971,0.2506737,-0.0523656,-0.563315,-0.2514656,0.025221338,-0.27629024,0.70000154,-0.30945188,0.15789996,0.8108237,-0.03543157,-0.07050384,-0.07718197,0.0039646546,-0.15345034,-0.18545885,-0.121776976,0.13563381,-0.39298946,0.06730875,-0.15108235,0.81185913,0.15034844,-0.73134726,0.29676488,-0.40466613,0.14371163,-0.1634151,0.70484746,0.8889398,0.52743214,0.31518036,0.9203299,-0.50011134,0.018341323,-0.00774229,-0.4157063,0.17805439,-0.1215124,-0.13058858,-0.48004895,0.14700013,0.019075366,-0.12932527,0.014541225,0.32119182,-0.5555722,-0.015446325,0.038929027,0.5927713,-0.42318204,-0.1889706,0.8810953,0.8570318,0.93038756,0.09154347,1.2821059,0.51023704,0.009048571,-0.027912179,-0.24367118,-0.58461285,0.15421449,0.28220126,-0.20858397,0.39877573,0.09894207,0.03096352,0.60426563,-0.37563723,-0.14678413,-0.09949671,0.26168758,-0.070340775,-0.03986759,-0.40729707,-0.22294803,0.21085761,0.14284918,0.030346008,0.30940124,-0.20928647,0.42983335,0.15514,1.1790805,0.112851284,-0.02320596,0.044809863,0.33477393,0.26442215,-0.14664268,-0.1227137,0.4002985,0.5293228,-0.09125962,-0.52086484,0.042344775,-0.223065,-0.3910328,-0.15243064,-0.37121093,-0.049933262,-0.10832238,-0.5270328,-0.24658367,0.07516514,-0.15142298,0.5167255,-2.5186472,-0.24884063,-0.13463023,0.30257624,-0.19048828,-0.19738674,-0.17866246,-0.4845692,0.10192595,0.4288645,0.36038944,-0.6918317,0.41550466,0.35598847,-0.3176255,-0.081647426,-0.75617915,-0.065709084,-0.039456986,0.5223692,-0.026876176,-0.14687033,-0.15278263,0.16021992,0.7222215,0.038663857,0.050908804,0.18351936,0.37147376,0.060717393,0.42291757,0.19504073,0.637355,-0.028478865,-0.23733774,0.35017195,-0.26787427,0.41990608,-0.0770703,0.116286755,0.46987706,-0.43217182,-0.7394491,-0.569437,-0.20442706,1.3640654,-0.5329086,-0.38418093,0.2887047,-0.22288005,-0.16000646,0.044579674,0.36094,-0.15051451,-0.068523616,-0.7655427,0.008145722,0.008356476,0.27250162,-0.13620834,0.13534984,-0.23876543,0.633296,-0.25418612,0.51054484,0.29792848,0.1957547,-0.06967713,-0.61290103,-0.005543701,0.8403041,0.51366794,0.060867593,-0.23603347,-0.28053677,-0.16735989,-0.16714849,0.09098841,0.4517349,0.6569134,-0.04017423,0.16840544,0.45220295,-0.19561876,0.05824953,-0.18763734,-0.28218955,0.029878315,0.26585826,0.512221,0.6803256,-0.22313112,0.39501008,-0.15586825,0.1483741,-0.041828547,-0.6124095,0.62704957,0.90984476,-0.31886086,-0.121783264,0.62901294,0.42274824,-0.29225084,0.4304336,-0.6046448,-0.24153982,0.6379106,-0.07484512,-0.39961192,0.08738567,-0.34071657,0.17500976,-0.9394372,0.3440452,0.051932976,-0.5725339,-0.5925649,-0.06498747,-3.8833833,0.010764897,-0.26850697,0.051952165,-0.058711912,-0.30560634,0.43701643,-0.6634682,-0.5848242,0.03717717,0.00647736,0.4252436,-0.18537733,0.16797858,-0.30969638,-0.24604629,-0.17019922,0.15025489,0.24101223,0.26608822,0.0651612,-0.50110435,0.15904805,-0.3420754,-0.52134115,-0.079203494,-0.5625997,-0.4745157,-0.084694885,-0.5308325,-0.20893723,0.7003094,-0.36308247,-0.02515821,-0.371442,0.15734854,-0.1930693,0.37280923,0.12373303,0.084829465,0.1449687,0.0029751768,-0.046394467,-0.29957053,0.21688122,-0.019942397,0.22568491,0.36033297,-0.11838419,0.2020842,0.719881,0.45536405,-0.11524274,0.8309296,0.45341274,-0.16043304,0.28259298,-0.24689484,-0.31193033,-0.77242416,-0.40206355,-0.28194237,-0.551783,-0.42091924,-0.05845565,-0.42678085,-1.0006865,0.5510448,-0.06494212,0.25516808,-0.15471862,0.29539993,0.48339263,-0.12261384,0.0176269,-0.11968951,-0.3102436,-0.5410472,-0.37180355,-0.68033767,-0.6083852,0.21509366,1.2451417,-0.19393124,-0.06701117,0.00439371,-0.42294532,0.014004576,0.033395566,0.23200445,0.08078794,0.48875496,-0.22472946,-0.8864314,0.23746487,-0.17897364,0.049006555,-0.63072246,0.06019962,0.7435261,-0.7304694,0.4786031,0.34290984,0.23360272,0.18392125,-0.6396138,-0.4348802,0.0040711025,-0.16719766,0.72799367,0.22113404,-0.6649406,0.5632085,0.07613609,-0.12985301,-0.70649713,0.46097633,-0.05636588,-0.1333215,0.21153472,0.31995738,0.031489596,-0.108094834,-0.15162244,0.07792072,-0.52443844,0.3847008,0.37099516,-0.07735089,0.38924757,-0.08458675,-0.19152944,-0.6740936,-0.30900887,-0.55661356,-0.22772972,0.037149955,0.039546967,0.1105519,-0.08749641,-0.05749213,0.4851773,-0.30382022,0.1561416,-0.007638097,-0.16385062,0.35618898,0.66137415,0.32784325,-0.50513965,0.56260663,0.27846017,0.052120566,-0.11479316,0.007914773,0.5243522,0.26334333,0.30502284,-0.124342285,-0.12282649,0.21094981,0.70959115,0.21351096,0.43882683,0.10994413,-0.21939524,0.37811512,0.18649617,0.20543604,-0.07160066,-0.2763572,-0.068047866,-0.12818381,0.2678054,0.46306664,0.24620104,0.30064493,0.00546901,-0.20258318,0.18550065,-0.05016367,0.08192292,-1.3152988,0.25184846,0.36648834,0.693294,0.45095855,0.03757026,-0.102355815,0.57751745,-0.39367524,0.04887594,0.42385143,0.0873599,-0.42656344,0.52848667,-0.5651903,0.5217524,-0.15101852,0.021967385,0.15624167,0.31762776,0.3160921,0.9459451,-0.10095168,0.08903592,0.029928977,-0.18964672,0.11612126,-0.31214207,0.025972184,-0.57704353,-0.30175447,0.59619236,0.3945462,0.30820045,-0.45336875,-0.09423647,0.054958977,-0.18059883,0.089806125,-0.1317596,0.039902013,-0.2124894,-0.54202086,-0.37554872,0.5836841,-0.022997973,-0.029997746,0.1559388,-0.39746544,0.23514776,-0.273427,-0.086592674,-0.054980494,-0.5562576,-0.16641569,-0.14428613,-0.502987,0.42458093,-0.28022015,0.23684701,0.15000549,-0.0049378444,-0.37100774,0.19487709,-0.01673859,0.85642815,0.075561814,-0.15884997,-0.31846383,0.08395639,0.4272942,-0.23907568,-0.12904571,-0.32514232,0.11389828,-0.41873607,0.3218017,-0.23143317,-0.23265523,-0.10665293,-0.18346387,-0.028250678,0.29954365,-0.13913544,-0.1672726,0.16382675,-0.007349523,-0.37696606,-0.070691325,-0.429689,0.27857724,0.013134222,0.025699567,-0.07819293,-0.16643168,-0.1655612,0.3539557,0.07185138,0.07638526,0.25685638,-0.19614048,-0.33204868,-0.051939677,0.017220037,0.446123,0.048720397,-0.16452986,-0.42103443,-0.4327608,-0.24038957,0.13187037,-0.16293167,0.21650632,0.036298558,-0.4747804,0.8263846,0.24132474,1.3243164,0.020367486,-0.40419868,0.08505821,0.58397925,0.15573867,0.180935,-0.21148485,0.8359917,0.5830282,-0.17439337,-0.13418867,-0.5420742,-0.28326264,0.25438398,-0.19615486,-0.249729,-0.17386644,-0.69904065,-0.19955005,0.19339949,0.1506185,0.19544369,0.06563297,-0.116129614,0.08890544,0.1537339,0.5116994,-0.41736782,-0.12005896,0.38102835,0.25919905,0.10459503,0.23546474,-0.36433893,0.41991657,-0.6163771,0.09956912,-0.44398087,0.2339236,-0.13898917,-0.3351822,0.23208074,0.0050174673,0.26442784,-0.35237905,-0.31096682,-0.28253847,0.7419484,0.055146847,0.1941374,0.7523106,-0.31435424,-0.10412304,0.009261757,0.46844706,1.1927189,0.007787147,0.12330667,0.26594955,-0.22773221,-0.6473295,0.17761421,-0.34979928,0.13742238,-0.04967792,-0.37877777,-0.445343,0.29886627,0.08740654,0.021404512,0.14106373,-0.52967876,-0.08834076,0.3811344,-0.100235544,-0.099943146,-0.19841106,0.32082793,0.73096883,-0.49753997,-0.43579394,0.011626538,0.354003,-0.17185721,-0.61976343,-0.058205914,-0.279185,0.35774645,0.20768921,-0.4308853,0.01787849,0.26825958,-0.35654557,0.07551685,0.452022,-0.23102671,0.21929434,-0.20993854,-0.011542678,1.0629791,0.033288237,0.20895842,-0.6041674,-0.44817537,-0.986754,-0.24250123,0.3021059,0.27112466,-0.13893233,-0.73494184,0.014847513,-0.12983283,-0.024543246,0.13996556,-0.64057136,0.59793186,0.2008147,0.44098964,0.025889253,-0.93036956,-0.0275268,0.11138198,-0.12644364,-0.4952509,0.6590238,-0.18536758,0.7276627,0.08313991,0.115825996,0.0037525257,-0.5624148,0.21566203,-0.41894636,-0.067666784,-0.6812068,0.067325346,201 +163,0.453046,-0.4275162,-0.4302573,-0.19760935,-0.3112756,0.091457605,-0.14072594,0.46974003,0.05790558,-0.5304038,-0.3313021,-0.08586759,-0.12208458,0.30420902,-0.31654498,-0.511633,0.0383429,0.21547338,-0.41004595,0.70343155,-0.21716751,0.20626463,-0.033536967,0.38299078,0.19052927,0.2909334,0.1559232,0.08673843,0.04502473,-0.18554233,-0.13813108,0.1164035,-0.5056419,0.36520436,-0.16361791,-0.35646313,-0.069291785,-0.40111887,-0.44587108,-0.71188533,0.33178014,-1.086738,0.5291373,-0.07517343,-0.3662791,0.04572707,0.23816657,0.2565095,-0.1259182,-0.05190297,0.21246156,-0.14209242,-0.041994195,-0.24520442,-0.08542654,-0.5109686,-0.5740563,-0.11712779,-0.37225047,-0.2662592,-0.3100389,0.22496991,-0.35983855,0.03588462,0.017387906,0.6651162,-0.54830164,0.040210705,0.19471182,-0.25400865,0.34880525,-0.7540294,-0.18369745,-0.07298536,0.20800212,0.014985586,-0.2003894,0.42236355,0.24938376,0.37643987,0.028018972,-0.12249605,-0.21220882,-0.2246788,0.1721313,0.44035038,-0.103630595,-0.46204135,-0.12344265,0.01945719,0.44058642,0.14129274,0.1435594,-0.36205906,-0.13583276,0.032976065,-0.11228687,0.25590613,0.439479,-0.25415033,-0.16855898,0.23517384,0.5551683,0.0010136605,-0.17473193,0.016831128,0.041007414,-0.5048775,-0.26000196,-0.08393803,-0.33287382,0.70307547,-0.14634006,0.34094942,0.7194032,-0.12074173,0.034268398,0.017576609,0.1324656,-0.21653582,-0.3314974,-0.40847847,0.29452446,-0.5082855,0.08127165,-0.17935899,0.6598287,0.07864257,-0.65983063,0.28400514,-0.5157317,0.050448775,-0.2512056,0.44273594,0.5868355,0.526993,0.2738651,0.6567281,-0.41206577,0.0015856823,0.06998567,-0.38088602,0.15062551,-0.2467403,-0.113749385,-0.5277147,0.13244696,-0.020647023,-0.008495816,0.0071605127,0.42726436,-0.5759815,-0.010667243,0.07940807,0.92387635,-0.27191857,0.054329235,0.74105287,1.0349841,0.9496862,0.06769268,1.214695,0.19815406,-0.2988509,0.094194874,-0.01065768,-0.588219,0.32493475,0.5704703,0.18775047,0.33237714,0.04731149,-0.038977496,0.49803203,-0.6137879,0.043242835,-0.2004918,0.20113018,0.10920458,-0.27388617,-0.67187405,-0.12429573,-0.041363906,0.18556486,-0.09294936,0.23147227,-0.09906432,0.5171788,0.12770037,1.6237446,-0.0693374,0.106677055,0.12709679,0.49136847,0.2181839,-0.050035145,0.18139137,0.2980607,0.34797546,0.2043241,-0.52972513,0.11338966,-0.21278234,-0.55608183,-0.2959533,-0.33952174,-0.010170124,-0.018163225,-0.49397075,-0.29978064,-0.22108875,-0.121388756,0.38161847,-2.52725,-0.24833158,-0.22899322,0.4404826,-0.24324688,-0.273569,0.047950387,-0.4050372,0.49542135,0.32719848,0.51422805,-0.6463871,0.351013,0.553251,-0.5093453,-0.0039883433,-0.53020275,-0.17794326,-0.065505914,0.47049612,0.078603745,-0.06277181,0.07184274,0.2655365,0.52659076,0.037431136,0.2510328,0.30144987,0.30891854,-0.061544277,0.41719908,0.04515337,0.44634473,-0.12098033,-0.14404713,0.3756976,-0.13562553,0.17102432,-0.20667644,0.110438414,0.60272294,-0.40857136,-0.76207376,-0.7426956,-0.20912789,1.0569241,-0.22264567,-0.64911824,0.27558842,-0.34816238,-0.33690056,-0.121932216,0.31825274,-0.18949126,0.13155073,-0.85056895,0.09043611,-0.09454983,0.124057665,0.06724195,-0.31989127,-0.5260268,0.8990743,0.004328839,0.6869477,0.41406578,0.2146709,-0.22386545,-0.52412575,0.061319828,0.9099478,0.6957606,0.13806845,-0.1188684,-0.16522053,-0.289637,-0.23722868,0.1032947,0.6704739,0.7085763,-0.055362903,0.1893123,0.3210875,-0.06574316,0.079889014,-0.10766776,-0.26981595,-0.09911958,0.13204953,0.57266504,0.6479223,-0.3211388,0.36766255,-0.120255515,0.46312842,-0.031607606,-0.49947435,0.41550004,1.2489123,-0.15699972,-0.34356204,0.6351256,0.48715505,-0.26843587,0.39270937,-0.6764701,-0.26524982,0.52087474,-0.15178446,-0.6173758,0.07291385,-0.37771633,0.2974416,-0.9340583,0.5070772,-0.31881645,-0.5294196,-0.67930186,-0.25891414,-2.959155,0.22565596,-0.3795458,-0.20489809,-0.21014756,-0.22244841,0.27535373,-0.8478346,-0.5537441,0.2555977,-0.008352569,0.67615974,-0.012159232,0.08108649,-0.13514087,-0.2715597,-0.15139817,0.1966063,0.13530983,0.19409065,-0.08470873,-0.5465787,-0.12765014,0.0026812155,-0.5819884,0.063348606,-0.5643636,-0.53861237,-0.18465854,-0.38667747,-0.17979915,0.6228219,-0.17935392,0.029945524,-0.21325396,0.05034597,-0.2759203,0.20377249,0.10853887,0.13396004,0.010123811,0.06296347,0.12183133,-0.3264881,0.28623873,0.021817287,0.29116675,0.21272229,-0.33733377,0.14580794,0.50765187,0.52438295,-0.26113978,0.7807677,0.5729025,-0.19225867,0.27324957,-0.1516101,-0.46962675,-0.59759146,-0.41912562,0.16491477,-0.33944243,-0.5116765,0.061346952,-0.5122463,-0.78858525,0.58459294,0.03205307,0.26037496,-0.04155677,0.11849259,0.48026937,-0.20173432,-0.20651695,-0.13710266,-0.21396485,-0.72291595,-0.29073736,-0.6948572,-0.547658,0.10777876,1.114806,-0.20661308,-0.0982337,0.1921536,-0.27873436,0.10134649,0.2092201,-0.106798425,0.07660783,0.4596714,-0.09151292,-0.858676,0.72324693,0.00038642288,-0.2539501,-0.58639026,0.23314661,0.5679853,-0.58380544,0.44013843,0.36524683,-0.05753565,-0.30516255,-0.51801586,-0.1303324,-0.12073352,-0.28995693,0.53743434,0.22809993,-0.622296,0.4033197,0.32829767,-0.26165986,-0.6454529,0.58428574,-0.082726814,-0.109749176,0.0064118784,0.3343037,0.10505251,-0.0629134,-0.16201636,0.2254224,-0.41838488,0.27966768,0.24784373,-0.10326967,0.2561135,-0.13244298,-0.0863805,-0.8905486,0.059077747,-0.61618805,-0.16519143,0.19248538,0.054068092,0.0018774271,0.12997332,0.053495254,0.4373806,-0.34177443,0.13487382,-0.04006684,-0.40185642,0.38623115,0.42226106,0.4474774,-0.39854917,0.63823205,0.069184095,-0.04698981,-0.18432458,0.10029197,0.46528444,0.3115922,0.38242766,-0.13110468,-0.056509387,0.28178364,0.7773565,0.24548873,0.5761081,0.20362036,-0.12775803,0.16095513,0.064563245,0.24320619,0.039755665,-0.6065734,0.11862502,-0.3008256,0.07993665,0.4903344,0.17143081,0.34859827,-0.147909,-0.2853404,0.055397447,0.21083476,0.06187986,-1.3529229,0.32040235,0.25904384,0.88112223,0.41149554,-0.012402195,-0.09630448,0.8270339,-0.24968567,0.07822418,0.3934321,0.06457528,-0.44229516,0.63027877,-0.79701066,0.35355645,0.075255364,-0.06123598,-0.014695374,0.0133598745,0.3743116,0.6361082,-0.17725547,0.02223223,-0.109455675,-0.35215914,0.2691604,-0.4507589,0.03686237,-0.3208699,-0.40202972,0.4845185,0.5156084,0.273519,-0.19080259,0.03762468,0.16883932,-0.13596068,0.40989706,0.10784616,0.15810294,-0.1471541,-0.54889,-0.21520062,0.33670625,-0.19341065,0.14674085,0.0144171,-0.25294787,0.18599683,-0.0007963896,0.050457828,0.08278819,-0.6814768,0.09941398,-0.30277306,-0.37922192,0.79841346,-0.09480264,0.06240068,0.1078958,0.04621507,-0.150809,0.09849677,-0.10981992,0.6637709,0.11488778,-0.1052636,-0.32267463,-0.035136435,0.09768207,-0.22583522,0.13896063,-0.23947829,0.057119705,-0.659502,0.49577186,0.013798495,-0.17238349,0.23297206,-0.19701344,-3.102521e-05,0.40904865,-0.158938,-0.21944161,0.022628082,0.041073825,-0.2172773,-0.36965382,-0.13722216,0.2981185,0.18885006,0.25181738,-0.08593924,-0.06763589,-0.20330861,0.4558323,0.04098087,0.3754368,0.43340963,-0.21379733,-0.3478585,-0.17864919,0.1779928,0.42684302,-0.042967748,-0.026899215,-0.18814434,-0.704218,-0.4219281,0.16714634,-2.7418136e-07,0.3858232,0.109148115,-0.13164929,0.7339811,-0.028939025,1.1928991,-0.07350979,-0.50664395,0.0029492616,0.65288544,-0.043044757,-0.025939941,-0.22053036,0.86978877,0.6337061,0.0010166843,-0.08413622,-0.4434925,0.15978645,0.27817708,-0.18929757,-0.06840428,-0.10082313,-0.721382,-0.3640044,0.13771963,0.36835155,0.15491082,-0.117234185,-0.03712217,0.34818718,-0.072286464,0.3431176,-0.47666183,-0.26624873,0.34987932,0.15679929,-0.06087606,0.08081085,-0.46279582,0.40042418,-0.49169704,0.07742454,-0.33645487,0.14150788,-0.15989567,-0.24587913,0.21855725,-0.107667446,0.35698488,-0.29292896,-0.37033895,-0.12682785,0.56816936,0.025990475,0.082554616,0.54266447,-0.32148442,0.012427056,-0.00023937225,0.41537586,1.085228,-0.2516545,0.07285724,0.27655098,-0.56174254,-0.64833003,0.34539354,-0.31413883,0.29886374,0.0479218,-0.25335172,-0.5801753,0.27445304,0.25919443,-0.08297394,0.055953186,-0.63053125,-0.27380353,0.25926766,-0.4506654,-0.114396505,-0.24184911,0.097934835,0.3654703,-0.28614858,-0.35297865,0.09953639,0.27669972,-0.1324914,-0.5110752,-0.093740866,-0.3057256,0.3019608,0.0890395,-0.43383917,-0.17213972,0.078719616,-0.4663885,0.1616163,0.24586363,-0.34981024,-0.001121537,-0.3929768,-0.11966381,0.9262174,-0.13989854,-0.01655357,-0.59611857,-0.35129136,-0.7546323,-0.47730356,0.375471,0.12141024,0.078675106,-0.6720902,0.0207334,-0.20623432,0.15695849,-0.30858225,-0.2439216,0.46164572,0.16114645,0.46396977,-0.09190105,-0.72262883,0.24297409,0.05385432,-0.09542151,-0.544172,0.64018005,-0.07439497,0.8461058,0.123382814,0.15502484,0.16703309,-0.5557675,0.05816109,-0.19109698,-0.3471404,-0.5929756,0.035244424,213 +164,0.27692732,-0.1817098,-0.34288037,-0.16793095,-0.3677078,-0.007027169,-0.23906921,0.16869803,0.1392662,-0.34280646,-0.22010233,-0.16386077,0.020888202,0.19059542,-0.13658123,-0.61908776,-0.18729696,0.07936623,-0.7471935,0.37550232,-0.6536644,0.29341313,0.10193381,0.24636889,0.06296376,0.5081788,0.27076778,-0.22097273,-0.06607088,-0.012409735,-0.020130659,0.26607487,-0.5553239,0.17129472,-0.19351631,-0.21793383,0.115828656,-0.48001093,-0.14731461,-0.6018149,0.0496165,-0.8981418,0.3503326,-0.07102206,-0.015883517,-0.02709269,0.19947545,0.4453945,-0.28451616,0.13278408,0.29255137,-0.058833424,-0.09452998,-0.11771469,0.03824828,-0.2346346,-0.42579022,-0.0032634235,-0.5564728,-0.4115534,-0.16589458,0.14238253,-0.3277979,0.032492816,-0.10124224,0.17781763,-0.46577656,-0.056417547,0.26994947,-0.085354604,0.13413845,-0.4886948,0.09326904,-0.08334357,0.60342664,-0.232891,-0.14451632,0.40615642,0.3257691,0.4940693,0.15879737,-0.17469111,-0.07663003,-0.14659634,0.2768171,0.4411662,-0.21032758,-0.2195112,-0.25705793,0.0762342,0.18050757,0.31502336,-0.16267487,-0.3136553,0.057062343,0.013527099,-0.22846852,0.31438032,0.40638745,-0.29191697,-0.34963915,0.41422734,0.66639304,0.09521658,-0.19552271,0.031502757,0.060357586,-0.39459804,-0.16797085,0.2501753,-0.031845536,0.3285233,-0.049530316,0.15941317,0.81991756,-0.24708387,0.23867832,-0.14626375,-0.15926532,-0.15636717,-0.19344464,-0.19076957,0.059074577,-0.50649124,-0.021290159,-0.20439954,0.77543867,0.25592625,-0.80926156,0.43829343,-0.5221158,0.1549236,-0.1854138,0.70205635,0.6926164,0.34184748,0.30176392,0.6944641,-0.31337157,0.31153256,-0.14379829,-0.42397913,0.008246173,-0.14810963,0.10184564,-0.5072421,0.036581263,-0.16778561,0.06738809,-0.16438206,0.14805445,-0.44013032,-0.071864076,0.17825685,0.69584924,-0.41169965,-0.009560029,0.5712688,1.0449733,0.752284,0.064725585,1.1900696,0.3941136,-0.18430024,0.31638488,-0.4528209,-0.72898513,0.14473473,0.43230876,0.0538022,0.17995586,0.005198876,0.035660036,0.25328645,-0.49574697,0.14052303,-0.16489673,0.38720903,0.053163204,0.07703406,-0.3686828,-0.14142394,0.01786324,-0.15056896,0.04204259,0.20692286,-0.14300108,0.21356061,0.053659108,1.4888222,-0.028884359,0.09510994,0.04872047,0.67590225,0.13306235,-0.17072885,-0.12355339,0.41193104,0.36287537,-0.011561958,-0.65031165,0.26018247,-0.16694276,-0.4766629,-0.1281102,-0.40029186,-0.038580798,-0.01109941,-0.33930337,-0.0028835137,-0.049430467,-0.30976903,0.48661086,-2.9017208,-0.1968705,-0.15813619,0.39670223,-0.3574001,-0.24441582,-0.154414,-0.5139481,0.30097884,0.27224264,0.43586546,-0.6660874,0.48394388,0.4898184,-0.36704776,-0.20281158,-0.6937465,0.01694297,-0.05233907,0.4218778,-0.0023180882,0.003285281,-0.11682339,0.13554034,0.46079293,-0.07200546,0.17833589,0.33600876,0.42969024,0.36516267,0.6739548,0.035118464,0.51217365,-0.256946,-0.17892084,0.29276016,-0.24729997,0.22282122,-0.09944449,0.1124959,0.41395283,-0.46035782,-0.85547346,-0.6853219,-0.65947926,1.0282423,-0.44558576,-0.30267483,0.19485371,-0.037376914,-0.037686165,-0.010539878,0.5053898,-0.12908743,0.015844854,-0.7720735,0.20929438,-0.1243398,0.26904544,0.11841056,0.07223471,-0.3861221,0.5301899,-0.16458705,0.5438348,0.22454363,0.17143679,-0.15669407,-0.3050968,0.104900055,0.8665837,0.1877485,-0.02244792,-0.06644421,-0.2923444,-0.1980823,-0.2857998,0.08066075,0.4106248,0.74804455,0.039287157,0.10745462,0.34982675,-0.16627948,-0.042757675,-0.14553611,-0.19309168,-0.01757998,0.1079918,0.4205241,0.49809277,-0.14995575,0.46935737,-0.25290975,0.219625,-0.11957628,-0.44078004,0.5813053,0.40809104,-0.09906245,0.15173079,0.3942383,0.58401936,-0.37367025,0.39636242,-0.62826824,-0.24974014,0.6103952,-0.13205321,-0.40688896,0.1038644,-0.2286531,0.20178786,-0.87255234,0.33783743,-0.35567346,-0.30081502,-0.440872,-0.11079853,-3.1400096,0.09918621,-0.050574865,-0.24911596,-0.10357324,-0.0071289632,0.30865496,-0.57734984,-0.45574963,0.12255974,0.09071951,0.47780335,0.10512107,0.074242085,-0.36676463,-0.032972835,-0.14995092,0.109773606,0.20215024,0.35097212,-0.14023009,-0.42802817,-0.03899342,-0.08153728,-0.40967166,0.16787975,-0.48557737,-0.36214718,-0.10018514,-0.5041557,-0.2831542,0.539461,-0.4069914,0.05598481,-0.19895144,-0.015233,-0.35177526,0.30304697,0.36107597,0.17797966,0.17035276,-0.004251802,-0.13292554,-0.3728289,0.4878403,0.02126997,0.22896951,0.12177207,0.11191269,0.049601115,0.43588176,0.5065309,-0.09147375,0.8978517,0.3174227,-0.19638804,0.23483442,-0.41933373,-0.07231809,-0.5572662,-0.33001855,-0.27106857,-0.2934192,-0.5644559,0.03029073,-0.3498748,-0.77855283,0.5382918,0.100348316,0.24669796,-0.084159516,0.20781283,0.34633324,-0.11570511,0.052082993,-0.08258877,-0.075674616,-0.5443615,-0.3694276,-0.5956503,-0.37952858,0.1959416,0.84664726,-0.2533216,-0.063742116,-0.19020642,-0.18900752,-0.045332566,-0.07015552,-0.014602933,0.43378776,0.40980986,-0.004832258,-0.55480564,0.39911497,0.042473484,-0.08296857,-0.5216589,0.08693042,0.6953599,-0.8260065,0.5828374,0.28284505,0.06350346,0.13823242,-0.43585116,-0.2548392,0.002610762,-0.23084244,0.28907296,-0.083018236,-0.7447205,0.48066753,0.27416354,-0.3024228,-0.69614923,0.4453501,0.05891057,-0.27124676,0.04492741,0.22458628,0.1572451,-0.06247319,-0.36094067,0.274296,-0.37368375,0.18388046,0.12813248,-0.0781944,0.46972913,-0.16237411,-0.3359803,-0.56006294,0.056180518,-0.5043927,-0.2550267,0.33921286,-0.057634767,0.014454526,0.21945086,0.047908712,0.31385326,-0.22345367,0.016023032,0.17873666,-0.22484156,0.01519142,0.37115628,0.28606382,-0.4567239,0.49781224,0.15322222,-0.14139183,0.05897317,0.01968823,0.38259596,0.096053384,0.18399721,-0.016932487,-0.20784539,0.34806904,0.8698236,0.20472272,0.46562448,0.0074098585,-0.09142733,0.510435,0.04903752,0.057965264,-0.002040418,-0.42363688,0.07470653,0.2773399,0.15157832,0.33008182,0.36726886,0.33097354,0.04651262,-0.11534659,0.008718469,0.21967824,-0.093957424,-0.85027176,0.2916042,0.17164822,0.7688885,0.49808258,-0.024287164,0.031523358,0.56593513,-0.4366913,0.17314552,0.34253642,-0.21369615,-0.48387066,0.6421207,-0.5549367,0.34598,-0.07595932,0.020172877,0.09103114,0.08667438,0.23013361,0.64980644,-0.1310173,0.0688365,0.017470049,-0.14575149,0.06781079,-0.26742062,0.07109559,-0.374101,-0.220657,0.6718674,0.3702186,0.27939934,-0.10420626,-0.012843478,0.017099626,-0.22470579,0.13331425,-0.08415541,0.014640258,0.3465388,-0.49497908,-0.3378057,0.7021546,-0.10467599,0.053414155,-0.06685292,-0.35997972,0.17928688,-0.16134173,0.0465971,0.020704322,-0.6746148,0.109669,-0.23362383,-0.24871483,0.3596581,-0.18856035,0.17662197,0.14921993,-0.06698877,-0.24292946,0.33195433,0.2580609,0.6732164,0.020768324,-0.28094998,-0.321338,-0.07340849,0.29678032,-0.29363295,-0.0435534,-0.38842452,0.01721071,-0.53746897,0.5414365,-0.051471017,-0.34774545,0.22843768,-0.27236184,-0.07421206,0.6606013,0.08223081,-0.06672358,0.09105183,-0.22482924,-0.47022927,0.08280266,-0.32127586,0.26762554,0.27422565,0.046559557,-0.08347368,-0.26957008,-0.23259714,0.6098746,0.063516386,0.4678552,0.19980131,0.027868723,-0.21256405,-0.018478941,0.20731373,0.3033772,0.046427734,0.09574381,-0.24932715,-0.19167048,-0.29167327,0.17194675,-0.21495344,0.22691627,-0.013951619,-0.43713775,0.7063058,-0.11494715,1.0846697,0.10016076,-0.2832627,0.055040836,0.44720206,-0.09956291,0.05635976,-0.40715045,0.775834,0.5909042,0.05871513,-0.08680759,-0.46377137,-0.31976274,0.23999391,-0.25368232,-0.11337783,-0.06164274,-0.50307244,-0.46773857,0.3050262,0.18882065,0.04722227,0.04550722,-0.09306741,-0.10584817,0.08928274,0.47386876,-0.6249927,-0.19552751,0.20047665,0.19227369,-0.001072673,0.17376593,-0.40000182,0.47468546,-0.59562,0.16559713,-0.38260263,0.10872249,-0.18265344,-0.20719437,0.06131177,-0.06508986,0.4103703,-0.1414725,-0.5036482,-0.08985733,0.4631912,-0.004686197,0.2376079,0.6425953,-0.19434084,0.15715493,0.038175385,0.55751395,1.0778888,-0.36427853,-0.08789599,0.28611076,-0.35512605,-0.5146166,0.33029646,-0.39111435,-0.1056601,-0.043684233,-0.33615762,-0.29693416,0.25243917,0.20926395,0.02187601,-0.009842966,-0.53182006,-0.061251976,0.21893086,-0.1962529,-0.25087395,-0.16895097,0.4132875,0.9288822,-0.40988192,-0.15391459,0.00688556,0.23902546,-0.25106138,-0.4446963,-0.14409715,-0.2266633,0.25451475,0.16671865,-0.19416457,-0.039424334,0.17952962,-0.3135471,0.07377473,0.2824224,-0.34577507,0.099878475,-0.03832803,0.03507317,0.8641666,-0.042942405,-0.16333039,-0.629095,-0.36266187,-0.8252491,-0.41294,0.34449422,0.2560697,0.037095904,-0.24355395,0.0823691,-0.081705585,-0.32550856,0.08009221,-0.6654307,0.3376028,0.08195004,0.40136483,-0.2135609,-0.8205396,-0.001492091,0.1434506,-0.08942084,-0.6472893,0.62345356,-0.14227273,0.9639463,0.027194027,-0.17009005,-0.045464437,-0.29819712,0.029364133,-0.40772197,-0.20187283,-0.7905384,0.115763,219 +165,0.46396032,-0.028424108,-0.4562451,-0.051207226,-0.3824275,0.23027182,-0.18673912,0.24976854,0.19311617,-0.5364796,-0.29557985,-0.036791388,-0.16514502,0.21314281,-0.33027703,-0.7521593,0.20611049,0.20647958,-0.49940977,0.8438704,-0.37680307,0.5845743,-0.01387341,0.28760165,0.28522858,0.3226347,0.232205,0.07175209,-0.24016924,-0.4993042,-0.1374301,0.03752614,-0.43841296,0.34004393,0.09513478,-0.2511351,-0.09069262,-0.22760174,-0.49757677,-0.83716893,0.24679498,-0.6804923,0.34254113,-0.25058097,-0.3232261,-0.14574821,0.25403014,0.18910481,-0.055010375,-0.021326503,0.083583914,-0.13831525,-0.097364545,-0.15647644,-0.370007,-0.49135888,-0.53059834,0.031048452,-0.30244774,-0.20656414,-0.34460795,0.32846153,-0.3970043,0.04826165,-0.020710716,0.55747145,-0.3148276,0.10327484,-0.11221932,-0.32782832,-0.03579246,-0.75195515,-0.22955796,-0.045157187,0.07717004,0.061691985,-0.18761393,0.19638237,0.35897085,0.36264464,0.08640884,-0.1062746,-0.3337642,-0.32699972,0.49737853,0.596503,-0.18082584,-0.42008108,-0.26568773,-0.20017451,0.33321348,-0.0031917205,0.2002224,-0.48958817,-0.040426604,-0.20094791,-0.30033252,0.29391935,0.6037951,-0.36191544,0.03850485,0.25160268,0.39159358,0.1596479,-0.4331468,0.20306748,-0.19121146,-0.31659186,-0.095261335,0.109802164,0.03554887,0.55732274,-0.15206808,0.17416093,0.40514043,-0.11196112,0.15670124,-0.09310099,-0.056950934,0.08831259,-0.24935447,-0.12143186,0.13710727,-0.37162825,0.037685324,-0.40271178,0.88637775,-0.04452447,-0.66217506,0.4965023,-0.39138192,0.14495154,0.014158007,0.5020971,0.59222144,0.372841,0.046733234,0.67676586,-0.19517273,0.062355343,0.05190242,-0.2659572,-0.13161702,-0.0861992,-0.098360375,-0.3536258,0.22976047,-0.06900223,0.03386752,-0.009414049,0.6650128,-0.41582102,-0.20395343,-0.04482764,0.83924854,-0.28898284,-0.029908499,0.86490536,1.0364833,1.0721986,0.011974999,1.1788409,0.28273648,-0.032271657,-0.33956414,-0.022040384,-0.5115187,0.19185203,0.36353308,0.36003006,0.135107,0.15362413,-0.13941802,0.5402834,-0.33455077,-0.081627205,-0.21694139,0.21119596,0.25172976,-0.04051151,-0.41416022,-0.13702084,0.3147799,0.025245396,0.21431182,0.24256007,-0.23451479,0.55898416,0.030521138,1.4154836,-0.099471234,0.017929252,0.15145025,0.4290207,0.20422077,-0.2951825,0.23666248,0.033383302,0.33576208,-0.18367842,-0.4829423,0.01994323,-0.2554227,-0.59677315,-0.15899996,-0.25831354,-0.30533588,0.08650506,-0.36545673,-0.22281574,0.0815387,-0.34159192,0.39986983,-2.523996,-0.047891498,-0.32621846,0.14067006,-0.16970558,-0.38761088,-0.060712464,-0.4338296,0.5937766,0.35883036,0.46333104,-0.498077,0.44226012,0.59235674,-0.35575658,-0.02683876,-0.6216879,-0.027382493,-0.043096583,0.61031914,6.0071547e-05,0.06342357,0.045838952,0.20108317,0.5436493,-0.06353197,0.11450221,0.4344255,0.27300066,-0.016475866,0.3642694,0.09206942,0.5234814,-0.11587699,-0.05716356,0.47281238,-0.4868822,0.22812858,-0.12336237,0.16174327,0.46065363,-0.53036976,-0.5936514,-0.67987376,-0.43090123,1.1714157,-0.21646614,-0.7049552,0.32375115,-0.086090155,-0.3458786,0.017319314,0.44110107,-0.26577497,-0.12388771,-0.5378908,-0.056916498,-0.15182854,0.25272515,-0.28390232,-0.0688962,-0.34072846,0.7352262,-0.21566851,0.50469536,0.35414663,0.39281768,-0.16523752,-0.5041554,0.021865701,0.94841933,0.4378827,0.09208783,-0.25712377,-0.15577438,-0.38353282,-0.25759855,0.019675342,0.78506786,0.5169181,0.03463012,0.06829764,0.30360717,-0.023859108,0.033368252,-0.23112823,-0.3543545,-0.24690233,-0.026789118,0.7272132,0.513147,0.050860036,0.48265335,-0.023776107,0.23548119,-0.3165582,-0.51084447,0.29878706,0.9431948,-0.26215446,-0.3947196,0.5611,0.40128183,-0.3743226,0.30309758,-0.6212482,-0.20207453,0.43787745,-0.20760845,-0.50412405,0.30305925,-0.3561716,0.069123395,-0.59426063,0.47565052,-0.31149086,-0.63136756,-0.5557764,-0.17913264,-3.1936357,0.21175243,-0.05851375,-0.28413442,-0.18031155,-0.25139344,0.3182369,-0.36313325,-0.43991432,0.1510975,0.08137922,0.5153588,-0.08689202,-0.01585528,-0.2704673,-0.14343664,-0.28141546,0.26306224,0.06806413,0.38998276,-0.3466732,-0.2624741,-0.07449032,-0.16806348,-0.50263554,0.024019,-0.49387679,-0.6427359,-0.08491732,-0.23868555,-0.19807339,0.72387534,-0.60874057,0.22646593,-0.32433003,-0.13406944,-0.32044798,0.113769926,0.15015243,0.37323385,-0.057046197,-0.10944681,-0.074098505,-0.34291127,0.16967297,0.13693167,0.16387157,0.47517517,-0.13192046,0.04047451,0.2418347,0.641035,0.04352938,0.93444085,0.23417552,-0.09082731,0.37894595,-0.14516692,-0.3929554,-0.46939686,-0.22324012,0.1079436,-0.35544804,-0.4175264,-0.23618123,-0.32823223,-0.679462,0.40597638,0.10992167,0.20729908,-0.057686437,0.24848267,0.29325646,-0.05956522,-0.09752851,0.088025205,-0.01715653,-0.4434906,-0.4106193,-0.66552734,-0.58014774,0.06056842,0.836591,0.035133798,-0.08469764,-0.019070577,-0.3888344,0.106584705,0.23799849,0.19587846,0.095654756,0.17208584,0.015826115,-0.8294353,0.6337312,-0.1870708,-0.09788031,-0.4896821,0.29865804,0.6483822,-0.43893433,0.37336165,0.23676194,0.17808002,-0.26086205,-0.7114157,-0.023729015,-0.0828359,-0.33894876,0.41253433,0.30124134,-0.8111394,0.4531155,0.23328832,0.10516513,-0.742473,0.4928769,0.06428067,-0.33841372,0.12339713,0.41469574,0.008608985,-0.12648405,-0.23282126,0.2262622,-0.39872205,0.25736544,0.1758324,-0.072345115,0.23239245,-0.243687,-0.42465687,-0.6508944,-0.045664653,-0.6314069,-0.28617442,0.0917052,0.1442242,0.13376872,0.19702831,-0.047798123,0.5256918,-0.24113274,0.18666926,-0.17559035,-0.17392384,0.4310541,0.46692345,0.41962153,-0.3529725,0.62998605,0.12566204,0.04171959,0.17221397,0.21892907,0.39937314,0.034258984,0.51193994,-0.08552892,-0.028797295,0.16903517,0.89337784,0.35187066,0.5967006,0.106850006,-0.4504982,0.24900793,0.09508861,0.35322112,-0.011770261,-0.5747279,0.018715767,-0.092794925,0.1424584,0.5143075,0.068277635,0.48589474,-0.15417223,-0.17758904,0.0750979,-0.016276104,-0.041404437,-1.1734607,0.25464714,0.09542256,1.0131663,0.4607317,-0.039547935,0.019612677,0.58645767,-0.183361,0.07346468,0.11893572,0.054233536,-0.33747754,0.41102177,-0.49404854,0.32616788,-0.04658664,0.09114682,0.17552516,-0.12325538,0.34196573,0.7304072,-0.17772852,0.12405857,0.029753463,-0.2958473,0.048192415,-0.35810655,0.33217773,-0.4500597,-0.43115997,0.5168864,0.47018102,0.3568362,-0.091199145,0.029922538,0.08287049,-0.1627594,0.10073226,0.044448037,0.09235919,-0.31513456,-0.49971488,-0.4306566,0.48584563,-0.2371776,0.01926751,0.22228962,-0.30731228,0.19809695,0.061302055,0.041526306,0.11311893,-0.54610544,0.13588518,-0.21637577,-0.4614345,0.25189397,-0.32507792,0.2662011,0.23542625,-0.049574018,-0.34166852,0.2690663,0.26655972,0.6008677,0.067927875,-0.043844353,-0.24501298,-0.052671585,0.22487508,-0.26936668,-0.16430697,-0.16097355,0.16730784,-0.6610492,0.1900451,-0.23021694,-0.25062054,0.15525128,-0.07151111,-0.121330306,0.4281966,-0.052298483,-0.11330464,0.21295144,0.1527729,-0.09196413,0.022189872,0.047758643,0.10897306,0.038913567,-0.14415956,0.16104473,0.03310571,0.046414737,0.16130893,-0.020700479,0.44625705,0.6172343,-0.07592199,-0.48563337,0.013269135,0.11436629,0.57572246,-0.020839827,0.15963253,0.04661649,-0.637397,-0.4153028,0.45225522,-0.11029549,0.34206852,0.04610199,-0.48005685,0.6366399,0.110754155,1.0192579,-0.06855216,-0.50447476,0.08107669,0.6047333,-0.032234237,0.16920573,-0.22410072,0.87675756,0.46474153,-0.23392633,-0.1281853,-0.33718804,0.031766172,0.15396217,-0.23872589,-0.21235725,-0.069123186,-0.5155709,-0.10468694,-0.08842018,0.18193588,0.010991494,-0.04819614,-0.00914348,0.3509306,0.08275927,0.45956993,-0.55616766,0.03618037,0.3943285,0.105873145,-0.1888812,0.05973722,-0.33994046,0.2010382,-0.6917195,0.19789605,-0.27047622,0.15666743,-0.09318926,-0.21243878,0.333212,0.008877691,0.35091415,-0.43768245,-0.25533807,-0.29836228,0.5259412,0.16165036,0.2675886,0.52776974,-0.11443115,0.17928581,0.16436462,0.5923042,1.2094007,-0.1640141,-0.021630954,0.32482332,-0.5319062,-0.4981705,-0.02344648,-0.3654054,0.1790871,0.01942294,-0.41301638,-0.4238739,0.22463042,0.36176726,-0.019869965,0.02903638,-0.60468185,-0.33376947,0.11181902,-0.26089233,-0.22994722,-0.28616437,0.072404996,0.5041385,-0.3203062,-0.33186787,-0.20613053,0.3181935,-0.36505497,-0.7453758,-0.029435333,-0.1874375,0.28659394,0.12917885,-0.46664187,-0.2033856,0.13944507,-0.44740772,-0.17666827,0.25380656,-0.36705574,0.019015452,-0.18145679,-0.02722718,0.7159968,-0.1352013,0.19624124,-0.70432156,-0.61596227,-0.72053665,-0.674204,0.22212261,0.21042894,-0.005197525,-0.5589374,-0.28713557,-0.47283158,0.03019685,0.08937943,-0.34137726,0.5490121,0.22800322,0.3599596,-0.17221406,-0.9394793,0.3061712,0.1634823,-0.19469446,-0.44902405,0.3855589,-0.0078666685,0.61774707,0.21751699,0.12049413,0.04097299,-0.5879008,0.3317226,-0.15541786,-0.29520464,-0.7218235,0.30168286,232 +166,0.28470543,-0.17640413,-0.78717494,-0.10878257,-0.1242002,0.29949385,-0.20407304,0.2783461,0.07747033,-0.38444453,0.034542553,0.006651016,-0.2533768,0.1968601,-0.12056172,-0.545797,-0.109665506,0.1657086,-0.46027118,0.24250032,-0.31212988,0.45271444,-0.13368247,0.12589069,0.08757774,0.19897082,0.13319692,-0.058261085,0.09274337,-0.16029955,0.11914904,0.20252892,-0.3206285,0.16996591,0.008266251,-0.4241691,0.04086044,-0.25639495,-0.43295607,-0.61574286,0.3991663,-0.6954459,0.5314446,-0.023583507,-0.21968265,0.17501268,0.17608365,0.27503058,-0.18689585,0.15712614,0.31201372,-0.33714467,-0.1135483,-0.26190895,-0.26484662,-0.5081204,-0.523797,-0.07156319,-0.6392745,-0.04008813,-0.29193485,0.18351766,-0.4579064,-0.10425165,-0.26690763,0.2853679,-0.40613118,-0.1985027,0.17601389,-0.20187894,0.048666842,-0.6184655,-0.091933556,-0.047763087,0.12230158,-0.14158902,0.027655888,0.29339898,0.04664019,0.54083335,0.010239506,-0.12395649,-0.45019096,-0.040569585,0.121298485,0.61607337,-0.14066587,-0.10225764,-0.13574658,0.06877355,0.38549182,0.24892338,0.032566447,-0.12874159,-0.16759318,0.08605189,-0.09392593,0.3406622,0.5052544,-0.3693022,-0.03263081,0.5337729,0.6024639,-0.027562078,-0.26099625,0.2355562,-0.13373007,-0.25998342,-0.099325806,0.022012753,-0.027097825,0.38378507,-0.0075699897,0.24604368,0.5297681,-0.23798244,-0.022236379,0.109838046,0.11143646,0.006300479,-0.07593964,-0.17296672,0.35841018,-0.37234345,0.11344695,-0.19537042,0.71794814,0.028202975,-0.6266512,0.30212632,-0.4272534,0.12569708,0.08587435,0.66569704,0.5905176,0.6076666,0.116565034,0.93255436,-0.44252843,0.09087376,-0.062053394,-0.35622215,0.055830535,-0.04600331,-0.22184815,-0.41541427,0.20798811,0.06594263,0.06812227,0.14808173,0.48584637,-0.41711158,-0.07192095,0.22744457,0.7023086,-0.37067643,-0.07204261,0.48845354,0.9358968,0.96095717,-0.06356453,0.83419734,0.14490916,-0.23886085,-0.13779025,-0.31525248,-0.62214744,0.23582825,0.39623636,0.22767237,0.33652133,0.09337652,-0.1272666,0.34551474,-0.43064645,-0.11161695,-0.04745508,0.15045601,-0.007960963,-0.21990258,-0.49004167,-0.06386747,0.22429778,-0.09274049,0.17419717,0.34339255,-0.33566156,0.15587799,0.008691891,1.2629489,-0.17579886,0.18778619,0.34045163,0.47994512,0.195024,-0.21834679,0.083028674,0.27357033,0.37468728,-0.05015668,-0.56870544,0.112356976,-0.40795848,-0.61186755,-0.24821006,-0.2717846,-0.27102834,-0.06079115,-0.46657932,-0.21170187,-0.10891546,-0.5020856,0.3128899,-2.6469307,-0.030651916,-0.13386227,0.31777295,-0.20219675,-0.29012725,-0.13292466,-0.44426885,0.276828,0.32714203,0.4394458,-0.4302454,0.45415947,0.55138546,-0.44220045,-0.057201665,-0.5349046,0.040012456,-0.15602039,0.30507725,0.08894225,-0.27398303,-0.028193004,0.16936609,0.4003772,-0.229133,-0.03822184,0.34719786,0.42638594,-0.02352916,0.38699895,0.12790416,0.5969822,-0.41468623,-0.15634441,0.45649242,-0.5911049,0.2139756,-0.20114276,0.087453336,0.36335322,-0.32328802,-0.8854818,-0.42485613,-0.080674075,1.5222336,-0.3075873,-0.3276116,0.13557082,-0.095839374,-0.21284883,-0.16956684,0.41978258,-0.16266803,-0.07195706,-0.69556147,-0.1027081,-0.23533298,0.37187776,-0.11050524,0.038091976,-0.5377122,0.53886694,-0.10175007,0.73407453,0.30493024,0.29571617,-0.23726253,-0.35180613,0.028943414,0.92052513,0.5136995,0.08713094,-0.22630152,-0.17183489,-0.15614451,-0.13943478,0.24243125,0.41301593,0.62480956,-0.0054199123,0.10228743,0.27642685,0.064233415,0.12560086,-0.22314383,-0.31001222,-0.13586134,0.20868868,0.49832523,0.31864217,-0.006627713,0.26707596,0.058639415,0.23329407,-0.3573057,-0.30193248,0.247746,0.84100837,-0.058919646,-0.41754228,0.5556891,0.4380516,-0.1627712,0.45523053,-0.74540955,-0.41936874,0.4551459,-0.34683415,-0.31213933,0.24120201,-0.4269868,0.05056459,-0.677991,0.1741016,-0.3087911,-0.62718886,-0.60787976,-0.2747405,-2.8905325,0.03916943,-0.21714352,-0.1114145,-0.03816106,-0.0069062533,0.2514939,-0.5233996,-0.5878378,0.0010829131,0.21700399,0.6338833,-0.061689522,0.06143129,-0.3438148,-0.3980709,-0.22069822,0.30939502,0.074171335,0.20788537,0.0875919,-0.42155656,0.0016326885,-0.17341705,-0.2587784,-0.054009233,-0.27672532,-0.20705755,-0.06992369,-0.3714512,-0.0971174,0.6334678,-0.44484407,0.10685594,-0.17639299,0.046583414,0.09585988,0.110300794,0.11808094,0.11909372,-0.018467171,-0.23812263,0.20500161,-0.3531114,0.3783953,-0.006331881,0.40163797,0.47078463,-0.23788638,-0.11498859,0.466931,0.5685599,-0.06166708,0.8479508,0.3387002,-0.036858402,0.34380785,-0.15144348,-0.23533887,-0.61020344,-0.29613742,0.08134689,-0.39258018,-0.51978344,-0.0021312237,-0.44365877,-0.99166477,0.41620165,-0.15535338,0.36327857,-0.15485384,0.5023037,0.41150194,-0.08290434,-0.11721253,0.031730868,-0.05497625,-0.116739325,-0.40188745,-0.77333367,-0.37595853,0.08935841,1.2602541,-0.2496658,-0.022957465,0.16767244,-0.051909957,0.05058919,0.20020464,0.29787543,0.22306105,0.4147608,0.03281695,-0.5711251,0.39308882,-0.35951844,-0.069789335,-0.58491653,-0.0039667767,0.44793063,-0.69250417,0.29134962,0.33002388,0.17271627,-0.08606405,-0.788256,0.112229064,0.15974645,-0.2025273,0.40022582,0.21142222,-0.6409208,0.4162982,0.11622175,-0.24647762,-0.6122019,0.46287313,-0.09925385,-0.21562876,-0.0009325504,0.3705515,-0.03898047,-0.16890854,-0.17334332,0.29882076,-0.32832256,0.3996257,0.20706984,-0.18793513,0.30839697,-0.3408651,-0.15590926,-0.52686465,0.11674559,-0.5631819,-0.20375958,0.22169909,0.037774023,0.17198819,0.21736088,-0.10054379,0.51940787,-0.23915316,0.026956078,-0.22818384,-0.3524937,0.58948547,0.40797287,0.32393977,-0.36557177,0.59098226,0.0658387,-0.26113755,-0.019426137,0.13454498,0.59709144,-0.073261306,0.3828718,-0.08657071,-0.119757615,0.30550918,0.8074688,0.38928756,0.34678805,0.03020835,-0.23601493,0.080371074,0.14000215,0.004744323,-0.24902971,-0.4707906,-0.1331247,-0.015623859,0.16867971,0.42966917,0.19561659,0.5549169,-0.16949062,-0.15530552,0.27806103,0.1417358,-0.24611592,-0.8873686,0.19522022,0.024691964,0.779863,0.32527217,0.22163287,0.057882324,0.39982608,-0.22831352,-0.077817634,0.37568787,0.016640948,-0.38033357,0.5036279,-0.5789039,0.54596794,0.07502739,-0.092303656,0.25543132,0.034667816,0.5041408,0.72613853,-0.025923936,0.06437311,-0.057249904,-0.2836676,0.12923978,-0.19736841,0.19354804,-0.48734948,-0.14683597,0.69395226,0.39129123,0.3011258,-0.096452355,-0.04257857,-0.0087764505,-0.17035231,0.09538791,-0.117324635,0.18366115,-0.22236064,-0.3554222,-0.1898771,0.43832314,0.17849536,-0.076493315,0.08263065,-0.26713523,0.26250848,-0.029705977,0.24424037,-0.021780616,-0.5063179,0.13725513,-0.23828974,-0.4917202,0.28830782,-0.07592388,0.3764449,0.2543287,-0.035131466,-0.33301672,0.24533674,0.16909125,0.7258821,-0.20998931,-0.08972193,-0.42560098,0.21111552,0.19605647,-0.16511849,-0.114026345,-0.31568825,0.33004034,-0.7116423,0.3383733,-0.27862585,-0.19299155,0.15149869,-0.25322422,-0.22684254,0.62103397,-0.1509829,-0.123029105,0.08227881,-0.086484484,-0.35167965,-0.20543489,-0.21447681,0.06039796,-0.08922829,-0.048791487,-0.23969859,-0.09697025,0.048285127,0.245631,-0.0070733787,0.05085997,0.3474668,0.006240467,-0.4811557,-0.019968254,-0.0038100402,0.54531705,0.0013861308,0.05180725,-0.35907593,-0.61348635,-0.28049672,0.37060836,-0.19765472,0.38731977,0.1320587,-0.29005557,0.77421683,0.041118015,0.99327344,0.016350541,-0.35042438,-0.021068756,0.7512263,0.094610214,-0.01565414,-0.2580741,0.9766262,0.772428,-0.06421723,-0.28555447,-0.21191254,-0.073317446,0.10109145,-0.27040094,-0.28219846,-0.0032770515,-0.7078964,-0.25040707,0.28193057,0.24213041,0.1379352,-0.17271315,0.069568366,0.33160397,0.13055517,0.21714608,-0.54948765,-0.3317905,0.24819939,0.13673387,-0.08069816,0.04328393,-0.5786897,0.29704645,-0.73753047,-0.15313,-0.12392448,0.16492696,-0.04490731,-0.25553012,0.3106332,0.0041222214,0.18708095,-0.35294256,-0.288384,-0.026357826,0.33891025,0.053086367,0.27803296,0.6269273,-0.25343728,0.032706253,-0.021721203,0.38397944,1.0172651,-0.17372999,-0.01353031,0.41952762,-0.45200184,-0.7740679,0.09170539,-0.5321132,0.17193201,-0.15405177,-0.42199183,-0.3842765,0.4152569,0.14403208,-0.05570082,0.14678206,-0.53982705,-0.121815644,0.10436908,-0.32016394,-0.26151913,-0.32759514,-0.077499524,0.78546894,-0.3548107,-0.22212045,0.06998459,0.5402527,-0.16267401,-0.69393665,0.16180474,-0.28725567,0.4164817,-0.04015435,-0.27937022,-0.104940034,0.011156362,-0.30902207,0.22382693,0.5389088,-0.29849568,-0.060391083,-0.3728206,0.10909427,0.62119967,-0.09402685,0.033281468,-0.5258259,-0.32962286,-0.99036723,-0.25443578,0.40436438,0.16673717,0.018084506,-0.6377302,0.05032695,-0.33985406,-0.1546653,-0.101490095,-0.406763,0.31692493,0.12750891,0.32090554,-0.27416185,-0.7619258,0.09872934,0.045970622,-0.4644876,-0.3788782,0.49603257,-0.1240226,0.7673367,0.1131797,0.022418195,0.27289248,-0.6572463,0.35386315,-0.21843545,-0.1376672,-0.6714496,0.01798438,233 +167,0.61866033,-0.23643894,-0.5249493,-0.18828715,-0.16143212,0.21911615,-0.25643674,0.54515004,0.14392227,-0.4555312,-0.096369475,-0.07253068,0.10592054,0.24619088,-0.26086476,-0.5677882,-0.020114804,0.22309045,-0.525815,0.53552055,-0.43271643,0.30569795,-0.044127353,0.30593273,0.177908,0.19448848,0.024898732,-0.123511225,-0.20986198,-0.29038128,-0.05221647,0.2677888,-0.6053692,0.10187168,-0.21027957,-0.33904532,-0.034426387,-0.5829216,-0.4143965,-0.71557045,0.31414637,-0.8820573,0.76781255,0.14617644,-0.22224715,0.17467256,0.16724467,0.3562125,-0.23023213,0.19060175,0.17862916,-0.046185143,-0.02103247,-0.260501,-0.1919982,-0.39535505,-0.57823485,0.0041970434,-0.48090312,-0.14852537,-0.08667914,0.0645525,-0.1653998,0.033263173,-0.12398626,0.4549844,-0.43045262,0.1364541,0.14380963,-0.10412644,0.2148394,-0.5447286,-0.18378049,-0.07118512,0.41960162,-0.27105415,-0.16188407,0.24448845,0.0863117,0.549591,-0.14022085,-0.09738455,-0.28185895,-0.107174166,0.015239843,0.6219837,-0.31559843,-0.5170764,-0.14534919,0.016498279,0.30871153,-0.0013207357,0.10716348,-0.22035953,-0.09386177,-0.06382571,-0.29405603,0.43046108,0.5928031,-0.43750387,-0.14581934,0.35002455,0.39033386,0.1268654,-0.092074774,0.03173187,0.077965036,-0.5897969,-0.19272622,0.1973797,-0.13195974,0.5114614,-0.0050898395,0.22046134,0.44533673,-0.17445211,0.1130179,0.14318416,-0.005980104,0.17306465,-0.1383806,-0.47889546,0.07346959,-0.44460496,0.014113605,-0.2520548,0.6979884,0.2682486,-0.7938414,0.43356723,-0.517764,0.0577883,-0.057190914,0.40985125,0.5245767,0.4744757,0.074623264,0.62818545,-0.31601664,0.09882038,-0.13382135,-0.23130907,0.08019764,-0.09323442,-0.03383577,-0.47293612,0.09523725,-0.029750992,-0.157027,0.2211106,0.4974221,-0.4943101,-0.110241644,0.11697518,0.873757,-0.25407463,0.010629114,0.7765165,1.1011833,0.8730004,-0.02020183,1.1754903,0.22823213,-0.26561812,0.10084381,-0.25485164,-0.6846463,0.27427927,0.30369872,-0.38235226,0.37123197,0.027645051,-0.1390786,0.25792256,-0.38268933,0.01745825,-0.11368405,0.09526213,0.08970984,-0.0700938,-0.3678437,-0.2510267,-0.17527314,-0.064472266,0.16392761,0.2167448,-0.4225991,0.2882281,0.090849005,1.6166921,-0.07533514,-0.027009146,0.0104905125,0.5272041,0.23673372,-0.0743037,-0.06733413,0.28061664,0.3981103,0.0633439,-0.60000324,0.06329742,-0.1229145,-0.34972534,-0.18013859,-0.2824699,-0.16464825,-0.018888699,-0.56347346,-0.13442205,-0.04535873,-0.16575636,0.36181983,-2.7221856,-0.15712382,0.042313766,0.5115306,-0.23132913,-0.44147202,-0.3093282,-0.46732056,0.438934,0.19469087,0.44671077,-0.5964454,0.5624899,0.37578917,-0.41611528,-0.17311668,-0.6201647,-0.12940629,-0.013847562,0.28542766,-0.0804085,-0.091518484,0.15300183,0.29343235,0.43160692,-0.06733228,0.13819432,0.19201145,0.4351157,0.12891617,0.42765948,-0.06144208,0.55676633,-0.2492525,-0.16293877,0.33754852,-0.37492234,0.17334741,0.012750228,0.091654494,0.3264826,-0.6191406,-0.9053707,-0.713116,0.051510468,0.97648466,-0.16169557,-0.38654816,0.1629596,-0.21086283,-0.4269187,-0.08290536,0.5356811,-0.08834114,-0.13203979,-0.775149,0.006759724,-0.019098807,0.15959153,-0.028297504,0.14722678,-0.4955214,0.5098363,-0.048457213,0.54732805,0.30169278,0.18836555,-0.12110582,-0.44071314,0.043616433,1.1340705,0.37500098,0.21963397,-0.15386073,-0.18584153,-0.37440175,0.051558517,-0.12064004,0.634612,0.6818334,0.0050596874,0.07680747,0.19482088,-0.046659242,0.22442462,-0.13024633,-0.34014866,-0.16339378,0.08497106,0.60993356,0.43420404,-0.14897838,0.46180135,-0.044081114,0.31764603,-0.2372341,-0.36405823,0.38631335,0.99856335,-0.21191,-0.20202726,0.58087504,0.43423113,-0.26739958,0.4194783,-0.59227806,-0.35131946,0.2709966,-0.2630729,-0.24918829,0.49157944,-0.2887705,0.21371849,-0.888188,0.32289934,-0.34211776,-0.30439112,-0.36212933,-0.17780064,-3.1089325,0.060730346,-0.082928665,-0.11750063,-0.15521605,-0.18762021,0.21428385,-0.55866605,-0.5284674,0.07713813,-0.009588377,0.6875174,-0.09528207,0.114756145,-0.27450284,-0.32679695,-0.30572554,0.22701469,0.07538711,0.42311853,-0.0052197594,-0.42035535,-0.08803382,-0.17227899,-0.24212892,0.09633031,-0.6482985,-0.45968297,0.019825177,-0.519037,-0.24493913,0.6349994,-0.27688923,0.08223891,-0.1730552,0.022769092,-0.14733616,0.27821338,0.065292105,0.16337961,0.039477088,-0.11952081,0.06046046,-0.25660738,0.34497344,0.09336219,0.22663005,0.37207827,-0.07916193,0.073766164,0.42396563,0.4801869,-0.10442998,0.81288683,0.44598275,-0.17471042,0.19979021,-0.3286112,-0.23618014,-0.37408683,-0.33775777,-0.04805025,-0.43252915,-0.48997343,-0.2211557,-0.4069986,-0.76393473,0.48751196,-0.14401348,0.046028648,0.024604466,0.35700002,0.48478395,-0.04415379,0.08783611,-0.057375953,-0.089620255,-0.4514361,-0.18334574,-0.5873229,-0.29792735,0.11761169,1.0055187,-0.17122044,-0.021048455,0.10501349,-0.16111363,0.021950781,0.08808816,0.02370129,0.090692185,0.5389925,-0.08502516,-0.62542796,0.3919841,-0.25014317,-0.33969882,-0.49372882,0.23128563,0.54366666,-0.6292665,0.5282636,0.418894,0.113701105,-0.12733412,-0.38720843,-0.12612054,0.14567041,-0.20912199,0.3498933,0.1462836,-0.7386618,0.4105533,0.27293926,-0.27706397,-0.65421677,0.60137546,0.0918033,-0.4233807,0.019251687,0.31922492,0.1413119,-0.04573626,-0.2112744,0.2536958,-0.5135774,0.3345559,0.1515612,-0.08733619,0.26838124,-0.2112573,-0.16712144,-0.7090793,-0.04355202,-0.46336308,-0.4167098,0.24906088,0.12296032,0.2018296,0.19577266,0.075647764,0.4493718,-0.4967752,0.07651194,-0.059885774,-0.24008557,0.4999646,0.28506088,0.47623184,-0.38092646,0.4507206,-0.13178448,-0.1384997,0.14261284,0.11629566,0.50007015,0.059629984,0.25285777,0.025124613,-0.19066706,0.36945036,0.665729,0.28447506,0.32603768,0.12256865,-0.18671516,0.21819106,0.088082895,-0.01599931,0.07729652,-0.40638202,-0.14473216,-0.051443946,0.1113993,0.38903373,0.21496102,0.2491142,-0.1593511,-0.275959,-0.024525246,0.19635044,-0.1530948,-1.230868,0.3678611,0.026734272,0.66754967,0.4502477,0.03363333,0.027487481,0.50906885,-0.17689861,0.09688163,0.29161713,0.028891897,-0.4261239,0.49150264,-0.45341733,0.45618263,-0.08967934,0.013583059,-0.04496712,-0.06841009,0.45060632,0.8118432,0.00088392023,0.18434699,0.09597126,-0.29890347,0.09476611,-0.36264548,0.012066706,-0.62029266,-0.13951588,0.73424894,0.407587,0.3847416,-0.17172284,-0.007073897,0.07477499,-0.15303564,0.117879786,0.18448733,0.11953318,0.01929662,-0.74519914,-0.11573254,0.60878533,-0.33175096,-0.054146387,-0.023556137,-0.32615665,0.30413148,-0.1777597,0.11699905,-0.08419573,-0.63691956,-0.07752557,-0.6194095,-0.31449005,0.4181698,-0.17048372,0.108140625,0.25294787,0.052541148,-0.33193308,0.3472646,0.20161733,0.6017775,-0.03152938,-0.22276989,-0.45647606,0.12058341,0.19085659,-0.24903777,-0.08959874,-0.3004772,0.2372642,-0.5964757,0.3371788,0.008439723,-0.23284525,0.020104071,0.013827366,0.1911499,0.5449535,-0.24408334,0.0040034573,0.12491004,-0.07126602,-0.32993424,-0.1741795,-0.27843124,0.109210625,0.36363927,-0.034177255,-0.034438156,-0.1200696,-0.08872043,0.44833165,0.11651315,0.6005971,0.5417922,0.24624777,-0.25842008,-0.1407709,0.09492746,0.549353,-0.003961722,0.015640628,-0.4719654,-0.4751159,-0.24692819,0.31027073,-0.26418427,0.22614048,0.1454491,-0.15182301,0.7931656,0.031764634,1.067427,0.034895133,-0.3348692,0.086341925,0.51791275,-0.042036705,-0.06596263,-0.41372985,1.0754244,0.5629017,0.03525187,-0.024590569,-0.25771052,-0.15496634,0.048159447,-0.18513349,-0.2115188,-0.12001983,-0.6156127,-0.4075777,0.20793696,0.25353935,0.25758517,-0.17172052,0.25683448,0.20788985,0.043062653,0.06994519,-0.55938953,-0.19116326,0.3516021,0.25837976,-0.014964261,0.12511542,-0.4679028,0.30370635,-0.4350301,0.0024847507,-0.23460563,0.122626886,0.10186215,-0.30854887,0.22194748,0.018534418,0.24012947,-0.4147787,-0.29204887,-0.15735964,0.41482002,0.020689217,0.13354158,0.6054203,-0.19182462,0.059335895,0.0031145096,0.644463,1.214638,-0.12586649,0.08132924,0.51271904,-0.3302084,-0.6241924,0.13926066,-0.30707338,0.11001615,-0.03376399,-0.12207409,-0.65317726,0.32599592,0.1246572,0.0103978515,0.0058217626,-0.5864367,-0.31691507,0.421744,-0.32559434,-0.25115865,-0.32678065,0.09715922,0.7796974,-0.28427985,-0.18433253,0.12600069,0.36812267,-0.24515203,-0.5866954,-0.006842742,-0.41515407,0.25513905,0.26670164,-0.15251406,-0.21583298,0.045049675,-0.35105243,0.17095813,0.26029807,-0.39671654,0.07695187,-0.41731772,-0.07158079,0.92536205,-0.20162134,0.039347198,-0.43850234,-0.48061046,-0.8837941,-0.34791845,0.33334407,0.22693805,0.05972944,-0.6455712,-0.0031017805,-0.17734791,-0.32097843,-0.18552312,-0.31973717,0.4800366,0.037848677,0.29577217,-0.19992712,-0.7862895,0.1881316,0.14608933,-0.46474984,-0.60608155,0.59654045,0.102050275,1.083023,0.07205329,0.034898933,0.45453408,-0.54487234,-0.099681094,-0.2512886,-0.051496625,-0.7591375,0.15119423,235 +168,0.44735798,-0.25732672,-0.39130914,-0.100416474,-0.29813108,0.16214289,-0.10766074,0.5601056,0.19205491,-0.24233967,0.012071016,-0.19015245,-0.05572181,0.43342447,-0.06404069,-0.4361613,-0.023567624,0.1426099,-0.6970082,0.5675093,-0.34939697,0.17754227,-0.13887402,0.4954254,0.349335,0.32220212,-0.07946491,-0.022714976,-0.23257798,-0.061257984,-0.1278387,0.34456035,-0.35775578,0.08854146,-0.26133594,-0.42964086,-0.032158628,-0.26396298,-0.4666573,-0.736981,0.26831385,-0.7420521,0.60004526,-0.20355974,-0.17160837,0.34348428,0.15809982,0.32211372,-0.30802545,-0.062074736,0.09375102,-0.04615152,0.12968537,-0.36341396,-0.30119422,-0.6626722,-0.46050262,-0.07394628,-0.5388757,-0.030974008,-0.23611802,0.14853846,-0.20373946,-0.012747431,-0.005554533,0.36661306,-0.4560091,0.32429492,0.10774195,-0.0021471104,-0.041071363,-0.57512605,-0.25177318,-0.22291884,0.32169282,-0.12583739,-0.17850766,0.4838031,0.23855747,0.29514658,-0.13737673,0.0019276103,-0.37611353,-0.026759284,-0.032835167,0.4460702,-0.12942368,-0.6838674,-0.13548127,-0.028538946,0.18857758,0.1347287,0.22843583,-0.284121,-0.003354299,-0.03203803,-0.289864,0.402085,0.4482848,-0.31363198,-0.1476752,0.43171158,0.46746796,0.29252094,-0.44346187,-0.11232183,-0.056193147,-0.508937,-0.060080927,0.17621464,-0.1960598,0.57670426,-0.1654267,0.23129316,0.6414931,-0.13290094,-0.13352245,0.0017071088,0.21429135,-0.15224266,-0.121001616,-0.3690948,0.0753336,-0.30149794,0.0826947,-0.12360503,0.55195224,0.13265024,-0.59559494,0.30552483,-0.5287363,0.08349835,-0.07883733,0.3567752,0.57935333,0.46500415,0.21471828,0.50667137,-0.16744156,0.11165988,-0.118955255,-0.26231262,0.013789757,-0.2814168,-0.12858953,-0.55168396,0.06056684,-0.10761418,-0.052025683,0.13892028,0.5209853,-0.33929288,-0.13196181,0.19703327,0.9118267,-0.3476867,-0.1362728,0.76817346,0.9821277,0.9667062,-0.019494932,0.92064553,0.27658048,-0.22497752,0.19347581,-0.24631919,-0.56676,0.27291533,0.2494841,-0.30453035,0.33421233,0.03268,0.059750628,0.32806906,-0.32344094,-0.04179888,-0.21545358,0.14409214,0.28067622,-0.0030940732,-0.2897837,-0.41235748,-0.15433955,-0.110011384,0.121636346,0.29702836,-0.29060465,0.51756155,0.16770688,1.6430535,0.25101683,-0.15693027,0.079470254,0.77846605,0.21502012,-0.05064253,-0.004777555,0.36363643,0.37464777,-0.022586528,-0.5154802,0.1816697,-0.2960287,-0.5705742,-0.15428953,-0.35254282,-0.23457308,-0.07813285,-0.68858147,-0.23455808,-0.09063517,-0.045867436,0.5282043,-2.6988504,-0.13140613,0.024254192,0.33972067,-0.18518186,-0.3709189,-0.1605583,-0.47620624,0.3051529,0.26514336,0.3477815,-0.6397768,0.49323374,0.2358359,-0.5181371,-0.08874061,-0.5583376,-0.1302153,-0.005301507,0.37649065,-0.15569551,0.22401644,0.2947076,0.04224764,0.49661005,-0.1850626,0.20616928,0.35178307,0.39097923,0.06871168,0.43860582,-0.0005806764,0.56516963,-0.49309433,-0.20936324,0.24812698,-0.44944063,0.25402826,-0.027956402,0.1730999,0.669612,-0.4525519,-0.8777004,-0.5219682,0.19154923,1.1212552,-0.21835785,-0.34603876,0.1717706,-0.47602987,-0.21328624,-0.28583625,0.46668682,-0.086367816,-0.10814626,-0.6904157,-0.05440625,-0.14309965,0.1572974,-0.11105351,-0.023240464,-0.13385563,0.5351948,0.09415556,0.37344787,0.11439483,0.09253227,-0.4508619,-0.43737376,0.0975002,0.5728839,0.31767327,0.09039366,-0.07662085,-0.21368937,-0.34659755,-0.008844582,0.16937596,0.4619552,0.33891147,-0.09811199,0.25664043,0.2761148,-0.09292765,0.03040662,-0.33947876,-0.17231007,-0.18197493,0.23892158,0.41234696,0.61950094,-0.12092093,0.6671478,-0.12623613,0.25840372,-0.22690922,-0.46206754,0.5029128,1.1289004,-0.32126006,-0.34517518,0.2967881,0.6050602,-0.24215478,0.43004546,-0.5120237,-0.36910644,0.53495663,-0.1897164,-0.24746437,0.22801541,-0.20429793,0.15669681,-0.82474834,0.13583972,-0.1919341,-0.3756057,-0.61073506,-0.08061618,-2.3015368,0.0038326106,-0.07577639,-0.27113017,-0.18563904,-0.21878259,0.13733934,-0.5878389,-0.48415202,0.14057866,0.14162272,0.65586096,-0.0092824185,0.10751451,-0.25940624,-0.24601607,-0.21235174,0.23099846,0.24534774,0.43191305,-0.1424613,-0.6294286,-0.102096766,-0.16903046,-0.33608344,0.17606421,-0.71422917,-0.22121023,-0.10443127,-0.5128731,-0.37586877,0.6151155,-0.31971112,0.042886034,-0.19438453,-0.0007687072,-0.09357419,0.22721392,0.16820611,0.025118904,0.009086991,-0.15645352,0.2835689,-0.25290605,0.12660375,-0.055165213,0.23183458,0.27543637,0.094686605,0.08594527,0.42366135,0.6672504,0.010711006,0.7605326,0.51663274,-0.14039704,0.3587707,-0.15355642,-0.24764344,-0.5038599,-0.22696355,-0.06605431,-0.31120014,-0.50326186,-0.0066856663,-0.4097891,-0.75869876,0.5142845,-0.012784744,0.11733851,0.0299487,0.37109888,0.67379695,-0.20915219,0.08851029,0.011350044,-0.21413985,-0.50090903,-0.38235474,-0.5883617,-0.3755309,0.18216224,1.0366666,-0.1239672,-0.056016695,0.13098624,-0.44748318,-0.04567446,0.35734928,-0.12713265,0.12559293,0.4573625,-0.29480234,-0.6414637,0.45075732,-0.18632504,-0.12763204,-0.49339014,0.2557394,0.4698596,-0.6745288,0.5640558,0.24089037,0.031676475,-0.20169163,-0.42843854,-0.124789946,-0.1598001,-0.048612054,0.2429326,0.25811833,-0.73156244,0.3443274,0.20009258,-0.33608347,-0.5537549,0.5996536,-0.022927126,-0.45767346,-0.1461498,0.30979264,0.2825412,-0.069956355,-0.427527,0.09172181,-0.44625384,0.20196104,0.30922166,-0.09245172,-0.014025155,-0.22271414,0.0009724339,-0.77918726,0.12469186,-0.24482517,-0.3646348,0.45866394,0.026916634,0.28840077,0.0486591,0.08034695,0.0701714,-0.30612713,0.075944744,-0.1919478,-0.1879188,0.23800698,0.31709856,0.52754027,-0.4441648,0.63575524,-0.026342718,-0.16530167,0.28916034,0.1767873,0.3537013,0.23438503,0.45685098,0.19877812,-0.33789295,0.25910613,0.74195385,0.35926315,0.32075742,-0.067836694,-0.22047657,0.20242848,0.052955586,0.18446021,-0.0142412335,-0.3900077,-0.1044633,-0.20186952,0.20360072,0.40213317,0.016758975,0.3014997,-0.0616106,-0.24722528,0.026001243,0.14274721,0.008144506,-1.3867753,0.30133066,0.43929434,0.8157419,0.23466915,0.08498004,0.021621577,0.75650686,-0.24125877,0.022354634,0.40339097,-0.026114384,-0.4562219,0.52607197,-0.6437439,0.53619474,0.013031068,-0.01865505,0.11022698,0.092011236,0.35408428,0.8094879,-0.0812678,0.03559963,0.306143,-0.5520529,0.026141118,-0.22224276,0.04264665,-0.59171146,-0.19322078,0.56504405,0.5181772,0.3803664,-0.2276075,0.034765556,0.059987027,-0.28143656,0.19773626,0.16832729,0.14219493,-0.20362554,-0.6353699,-0.11260243,0.5058974,-0.3427388,0.13952665,0.1810921,-0.28873616,0.39957097,-0.1862641,0.043108013,-0.106262565,-0.613697,-0.010669363,-0.26915345,-0.26732144,0.57965434,-0.036456402,0.20853661,0.32582155,0.059176326,-0.3698057,0.5278024,0.057257924,0.8389612,-0.23129943,-0.16429928,-0.38259953,0.060174424,0.15854833,-0.084082946,-0.053790748,-0.1736111,-0.097282045,-0.39566797,0.3274325,-0.017009199,-0.11146851,-0.33435497,-0.080648154,0.096174985,0.48511896,-0.018167783,-0.16966964,-0.2150779,0.06500601,-0.5103277,-0.14104173,-0.1378579,0.35969684,0.27765653,0.07886873,-0.17376706,-0.0719237,0.11483293,0.52489924,-0.20360462,0.44978732,0.3884496,0.10876741,-0.23305258,-0.24337721,0.13760425,0.5053768,-0.14812444,0.060891353,-0.35469463,-0.4241298,-0.40499833,0.08096872,-0.17603397,0.33564988,0.10665644,-0.31676248,0.84474456,-0.23907706,1.1618665,0.080533005,-0.3608435,0.31075108,0.4965506,0.04845098,0.08499601,-0.25714308,0.8283841,0.5473278,0.0626158,-0.18598649,-0.26904973,-0.02535392,0.13042913,-0.24955352,-0.20670602,0.09454679,-0.47772515,-0.21728082,0.15999022,0.13002762,0.38593563,-0.19666886,0.10908155,0.26903197,0.013505017,0.1859117,-0.43815288,-0.24864128,0.28542063,0.19302781,0.011779022,0.12694916,-0.50348914,0.3604207,-0.32269207,0.045354236,-0.29450962,0.24029793,-0.21233925,-0.29520482,0.21096215,0.0651357,0.23709042,-0.4203681,-0.2520559,-0.33522597,0.61305547,0.13833946,0.20577605,0.40233362,-0.24923255,0.014288461,-0.05166087,0.46667162,0.7914823,-0.3763029,-0.23076563,0.3400046,-0.3962768,-0.6637219,0.42289478,-0.26229504,0.24289991,0.1595222,-0.017370733,-0.6363665,0.5089609,0.14733076,0.19072977,-0.1251707,-0.58184946,-0.073718116,0.30583343,-0.21112005,-0.24106379,-0.4115809,0.11011613,0.4024144,-0.26381442,-0.26691502,0.15209478,0.21380405,-0.21460848,-0.34012598,-0.057827998,-0.5082249,0.29469877,0.13789797,-0.33072102,-0.22893658,-0.01850875,-0.37126678,0.2265363,0.1525586,-0.31673834,0.06460599,-0.28972948,0.010332723,0.9845997,-0.2980205,0.0977127,-0.49678987,-0.51019806,-0.81467086,-0.39546698,0.33482128,0.24666208,-0.12765594,-0.7189309,-0.0017770608,0.038192336,-0.4805241,-0.10434372,-0.41567275,0.5179883,0.0046740402,0.152361,-0.008966287,-0.80271786,0.22312604,0.07618957,-0.20700172,-0.6046472,0.3723832,-0.19878162,0.9491885,0.060024284,0.14093368,0.28001937,-0.27593288,-0.1891258,-0.27965516,-0.14380574,-0.46806195,0.053092785,241 +169,0.4264018,-0.14599422,-0.5056085,-0.15750943,-0.5833232,0.23597947,-0.07876619,0.47383815,0.16775128,-0.39313415,-0.09291779,-0.017180055,-0.29822448,0.19537278,-0.21822295,-0.5071131,-0.17371458,0.073879376,-0.5053392,0.44057292,-0.22256461,0.49729118,0.0838299,0.2116629,0.33407164,0.33987078,0.03911879,0.08923038,-0.09088285,-0.21650101,-0.14036831,0.20354877,-0.6552778,0.37379897,-0.27047148,-0.22150452,-0.11954447,-0.39077085,-0.41182137,-0.63333535,0.19117351,-0.70483154,0.5072839,-0.09072106,-0.3772831,-0.05633143,0.1891191,0.13076751,-0.20958894,0.07962343,0.27836603,-0.26037315,0.013513327,-0.23790644,-0.34426773,-0.6394975,-0.49122402,0.005715434,-0.6350517,-0.17418432,-0.1216133,0.28910872,-0.24436942,-0.32897505,-0.26926616,0.6293595,-0.50399965,0.06213473,0.12518619,-0.255411,-0.05299999,-0.7037388,-0.09085128,-0.046852548,0.13923143,0.11217589,-0.40307182,0.3486672,0.20546302,0.37514675,0.07767146,-0.294871,-0.34621084,0.037340652,0.17431983,0.30456057,-0.19697838,-0.18973015,-0.2148182,0.07004676,0.5133326,0.25357923,0.100284085,-0.538792,0.11944887,0.030976582,-0.14249134,0.48239955,0.49640647,-0.30662107,-0.15324934,0.51634383,0.2868726,0.10528884,-0.3098353,0.22779097,-0.27857602,-0.23996595,-0.05077752,0.35100815,-0.03257575,0.46330833,-0.0145272575,-0.07820749,0.6884804,-0.14445727,-0.15817331,-0.08987816,0.05510198,0.14919056,-0.35762474,-0.08952742,0.1956811,-0.46142504,-0.04608788,-0.16309519,0.6535849,-0.014263195,-0.77684146,0.24806625,-0.5096119,0.12563616,0.1244686,0.59188735,0.71326584,0.6202398,-0.07984245,0.9852964,-0.391211,0.0990524,-0.097517066,-0.23072259,0.03673684,-0.27492556,-0.0895033,-0.52666324,0.14584687,-0.02078549,-0.107966214,-0.12926994,0.36116657,-0.3596168,-0.17991774,0.2282427,0.7313826,-0.37141702,-0.09382819,0.6795232,1.0738999,0.9712422,-0.017434979,1.1377013,0.19580278,-0.30131474,-0.018480735,-0.31279907,-0.22903341,0.12837829,0.39388308,0.052194912,0.3135814,0.0347684,0.07095052,0.278439,-0.3372484,0.1002901,-0.22440828,0.25429147,0.11093359,-0.018269977,-0.57851344,-0.21651226,0.23473956,0.23993699,-0.12367021,0.2621922,-0.3263086,0.22756653,0.0083698435,1.1880835,-0.057683047,0.119048394,0.15333334,0.43364775,0.29972938,-0.27053347,0.073395886,0.3647719,0.3896863,-0.02086726,-0.4684491,0.05456787,-0.4117907,-0.5950336,-0.13830157,-0.36935183,-0.17827006,-0.09658445,-0.6246466,-0.24185899,0.15616846,-0.40132535,0.527208,-2.6958208,-0.062023185,-0.22496085,0.14601518,-0.29731143,-0.3310369,-0.22171284,-0.33043778,0.2534187,0.29546145,0.34327355,-0.37285596,0.3523802,0.42370507,-0.48599452,-0.098541416,-0.55639243,0.18856879,-0.07825271,0.50266707,-0.08806767,-0.053821035,-0.062483538,0.04418963,0.6931137,-0.0659971,-0.046418376,0.2568398,0.32280764,-0.23812327,0.57085514,0.18480381,0.54486,-0.22693443,-0.26173055,0.4831969,-0.2688832,0.3026358,0.27983195,0.18064907,0.4348081,-0.53623563,-0.8455785,-0.43996727,-0.35568175,1.086886,-0.42261568,-0.5251406,0.31602603,-0.16287138,-0.17780069,-0.10915389,0.50411224,-0.021751443,0.2799876,-0.61672395,-0.017487917,-0.054598678,0.33765575,-0.17031392,0.1607522,-0.25770673,0.77432936,-0.14453799,0.5548261,0.40844756,0.37261784,-0.337001,-0.4709921,0.061750796,0.94581795,0.4238772,-0.029270148,-0.031351324,-0.1645476,-0.18970864,-0.14208065,0.2807849,0.6177944,0.6508701,0.0047484916,-0.010043907,0.31355685,-0.074560724,0.043660395,-0.21739882,-0.32350904,-0.20417684,0.17907754,0.56105286,0.32830283,0.029345484,0.58221334,-0.061445948,0.13520914,-0.15208572,-0.4529589,0.32835892,0.6692384,-0.22106789,-0.41154847,0.5547955,0.5613579,-0.29395425,0.20785634,-0.5718857,-0.2747876,0.7868851,-0.2794402,-0.6531409,0.10023758,-0.34740475,0.0015830934,-0.7831744,0.2759189,-0.09078033,-0.7514843,-0.44867784,-0.36314055,-2.9452128,0.11643014,-0.18750285,-0.12031063,-0.049542554,-0.15933698,0.28178468,-0.5106461,-0.48600948,0.022164632,0.052906394,0.556413,-0.07859507,0.04088807,-0.32209823,-0.20286798,-0.15739895,0.47862008,0.08904551,0.2877313,-0.101900175,-0.25182456,0.032025043,-0.26782963,-0.5159695,-0.023331255,-0.6116381,-0.54089457,-0.014890115,-0.42032284,-0.22204815,0.732102,-0.5455284,-0.030019823,-0.15643162,0.07402395,0.1313598,0.19459747,0.17213562,0.35739887,0.20435463,-0.05329015,-0.15870096,-0.38714755,0.14192526,0.1128562,0.36108208,0.3732614,-0.044127163,0.2921308,0.6134771,0.56810176,-0.15131237,0.75245696,0.18093707,0.019600486,0.4125314,-0.20884201,-0.19304585,-0.82638896,-0.24921638,-0.11677701,-0.44445127,-0.49504834,0.06596963,-0.43248737,-0.9050531,0.47096723,0.08476726,0.34212416,-0.10284536,0.3077842,0.43443877,-0.19647399,0.09241929,-0.11444116,-0.23235235,-0.40371487,-0.6182128,-0.6410348,-0.6210239,-0.12431685,1.2070191,-0.112158984,-0.23872663,0.09235789,-0.36256018,0.10762383,0.11076258,0.048128042,0.117571115,0.22473985,0.14186952,-0.6990401,0.26264712,-0.112331934,0.0027953067,-0.5955447,0.24991804,0.7807766,-0.56964314,0.47770566,0.32166818,0.28489703,-0.36681727,-0.6003348,-0.22875828,0.24999943,-0.2791415,0.67518735,0.165547,-0.68404526,0.39276117,0.066290155,-0.24309935,-0.7427728,0.5823193,-0.040131114,-0.04785598,0.009089466,0.4417586,0.11667088,-0.27271062,0.11536413,0.4088766,-0.46932748,0.32380173,0.45330048,-0.045240067,0.29712063,-0.14786695,-0.29861858,-0.70004255,-0.0493205,-0.44684264,-0.44280174,0.3071248,0.18583809,0.05725852,0.13478492,-0.115970016,0.40748265,-0.09805981,0.32080728,-0.16387695,-0.30389982,0.5973171,0.56409526,0.40692806,-0.47149545,0.44991636,0.08317971,0.07778364,-0.07434872,0.26241887,0.4854848,0.26490504,0.34094456,-0.17024006,-0.07715328,0.35476837,0.5399087,0.2788464,0.40098202,0.108191624,-0.21365643,0.22277482,0.13822255,0.2529236,-0.32411328,-0.5322224,-0.11049101,-0.013001815,0.25111204,0.2683822,0.04218268,0.33431354,-0.066553876,0.17128362,0.32733873,0.104354054,0.013365896,-0.921408,0.33740786,0.15353629,0.8357702,0.30004823,0.08832448,-0.12032615,0.53098345,-0.3090906,-0.030062292,0.5117023,0.16364536,-0.19860189,0.4627441,-0.7154624,0.5625765,-0.16788591,-0.13614388,0.28927007,0.28189117,0.52054614,0.85049725,-0.16315477,0.035595406,-0.034734763,-0.22231029,0.13504563,-0.33817226,0.37312797,-0.4284121,-0.5936816,0.66899353,0.4455899,0.30503735,-0.35182306,-0.068059206,-0.0011555235,-0.17289816,0.3123861,-0.02207219,-0.21486421,-0.082739115,-0.53059363,-0.18758647,0.52052087,-0.22677091,0.015110842,0.09130336,-0.18735507,0.2066535,-0.14778604,0.057909552,0.07217686,-0.5674502,-0.059848532,-0.3657343,-0.39521486,0.31124446,-0.44111827,0.21509196,0.2089529,-0.08070101,-0.40704736,0.13275068,0.3469879,0.7321306,-0.009557154,-0.13664696,-0.1864753,0.099065766,0.14556958,-0.1870344,0.0021520695,-0.24866636,0.14732638,-0.7008819,0.25446007,-0.3901357,-0.3607346,-0.008936481,-0.14151007,-0.0732118,0.44712767,-0.19980523,-0.122088544,0.009360289,-0.0027685761,-0.14918216,-0.08739311,-0.25008497,0.35031798,-0.07453206,-0.08574429,-0.019826714,-0.13104999,-0.065525815,0.098768555,0.12829593,0.32507074,0.25167367,-0.035916094,-0.33436546,0.12789668,0.047793187,0.4450842,0.16434766,0.05326542,0.011807179,-0.14512302,-0.3205608,0.16278023,-0.027841423,0.2126676,0.16648157,-0.46546358,0.8016831,-0.0028544029,1.4394362,-0.023190683,-0.4623925,0.019251982,0.60888666,0.09491265,0.061765503,-0.34491453,0.9143808,0.72053695,0.09616713,-0.13868771,-0.24347362,-0.16558406,0.20179859,-0.24801607,-0.30101326,-0.08984851,-0.62049013,-0.03634228,0.096083246,0.17011096,0.08005413,0.04097241,-0.31673586,0.2559293,0.0606998,0.24718812,-0.4319369,-0.059167568,0.33969307,0.25352952,-0.04174507,0.11859134,-0.29629755,0.38654968,-0.76839906,0.41615793,-0.27721772,0.14484262,-0.2084814,-0.17964026,0.1837438,-0.088649385,0.43208733,-0.26117262,-0.38420737,-0.26400667,0.6708472,-0.12835254,0.23648426,0.60502654,-0.2551976,0.047819026,0.13234177,0.39619306,1.1967633,-0.26354602,0.02244386,0.1157877,-0.50607187,-0.5987755,0.14995815,-0.6158001,0.20107755,0.04495599,-0.31236935,-0.051273085,0.2536883,0.1457081,-0.0020970304,-0.05647739,-0.6253427,-0.060772676,0.41898692,-0.25979313,-0.18763046,-0.2196486,0.38758275,0.49643987,-0.3400423,-0.44982585,-0.061873965,0.2869293,-0.2243761,-0.58097357,0.28028026,-0.36478674,0.3136712,-0.017729385,-0.5491813,0.009730335,0.16056986,-0.48718372,0.04440924,0.306481,-0.3106284,-0.015884085,-0.105586834,0.009501401,0.76802504,0.17970683,0.17223446,-0.5052697,-0.5545388,-0.86773986,-0.25491723,0.09353826,0.17591253,-0.04594879,-0.58692765,-0.16233441,-0.3516281,-0.013765923,-0.12878834,-0.55356914,0.42429683,0.16747814,0.6653337,-0.3489671,-0.93669724,0.08737324,0.3366531,-0.07721005,-0.43049437,0.61272544,-0.16317432,0.6953299,-0.09162219,0.12598827,0.040627327,-0.7675386,0.40301687,-0.33169192,-0.107498266,-0.6712491,0.031209258,244 +170,0.47679836,0.10323671,-0.48943245,-0.12899408,-0.18518104,0.15684171,-0.21296264,0.5780267,0.19448045,-0.34815374,-0.012704613,0.1287192,-0.16542855,0.3369129,-0.20785287,-0.6265829,0.14117657,0.043556675,-0.42726773,0.72734183,-0.22844383,0.41622332,-0.13410343,0.35820848,0.01621577,0.308958,0.040437117,-0.0021081844,-0.16644688,-0.28462678,-0.058643855,0.40555865,-0.2998628,0.22840519,-0.3362777,-0.17539972,0.11210262,-0.23537603,-0.28358582,-0.6158897,0.22310552,-0.49041733,0.6019228,-0.09600555,-0.3304505,0.27524063,0.17056091,0.11904276,-0.109833315,-0.062538944,0.108317055,-0.16699222,-0.022496048,-0.28800938,-0.29634413,-0.6484408,-0.413943,0.059511784,-0.6115417,-0.10371034,-0.21139301,0.10769408,-0.3211132,-0.23756285,-0.06150837,0.58963203,-0.24587895,-0.009709605,0.09863846,-0.16784182,0.0371425,-0.65238434,-0.0669843,-0.09826791,0.2948355,-0.04158721,-0.06331354,0.31683254,0.21060649,0.47521606,-0.02947456,-0.24611704,-0.20037574,-0.22055952,-0.011745214,0.5297162,-0.24825104,-0.6098277,-0.16099742,0.059206836,0.366692,0.13963443,0.059568282,0.05061972,-0.038438782,-0.18567643,-0.18471093,0.48489323,0.5710935,-0.3022933,-0.27957404,0.3746681,0.42772585,0.3054131,-0.18377352,0.015676912,-0.17580003,-0.37780342,-0.24888317,-0.029902799,-0.15590738,0.3604224,-0.03611113,0.07068186,0.48948702,-0.03187697,0.01873455,0.1832677,0.15856785,0.24889097,-0.10809649,-0.27405387,0.11172389,-0.44345635,0.03189981,-0.25638872,0.6005032,0.1283543,-0.6077698,0.38801834,-0.4996226,0.016794449,0.05983105,0.42509848,0.76701033,0.5265917,-0.013579551,0.4421161,-0.29415673,0.0076065143,-0.11525919,-0.04496534,0.07883798,-0.1690376,-0.049790733,-0.45315424,0.10365799,0.07131323,0.018524365,0.010524813,0.2247055,-0.4720042,-0.21287575,0.27219832,0.9587011,-0.24257499,-0.087040745,0.6729928,1.0989513,0.8642101,-0.19731967,1.032594,-0.04160932,-0.23968671,-0.049123876,-0.27581358,-0.46328735,0.24275479,0.35671476,-0.1272846,0.45054597,-0.033940602,-0.03517895,0.24515657,-0.34844264,-0.19359079,-0.11093751,0.2654215,-0.038977616,-0.09163438,-0.64378315,-0.23096745,0.06504668,-0.092422724,0.390962,0.37832,-0.27685803,0.3664074,0.015696583,1.0833637,-0.03415807,0.16745837,0.12768912,0.45331416,0.2999677,0.07495507,0.031788494,0.30074447,0.2170073,0.16696505,-0.43200016,0.15775786,-0.42813867,-0.42512113,-0.19119018,-0.4000058,-0.09564459,0.06685986,-0.3178577,-0.05233831,-0.11631031,-0.2210465,0.29929563,-2.834272,-0.17632535,-0.13943468,0.30950755,-0.19164456,-0.24698572,-0.20156789,-0.34752738,0.35304958,0.25058705,0.51873475,-0.44723848,0.37787372,0.418742,-0.3870144,-0.114131615,-0.45840135,-0.16333331,-0.029218996,0.52807117,-0.025064796,0.012260421,0.008383397,0.30653408,0.5354039,0.10548345,0.13909218,0.17503026,0.357063,-0.0019317548,0.22228403,-0.070904285,0.5698277,-0.36407146,-0.1279746,0.22423881,-0.38513422,0.30991665,-0.21647169,0.11863315,0.39943498,-0.43556988,-0.78623265,-0.38141307,-0.12102105,1.2542989,-0.096341714,-0.34617534,0.11881173,-0.2918708,-0.414628,-0.0529506,0.40009594,-0.26644152,0.012535493,-0.58828104,0.010797119,-0.18796706,0.14941362,-0.07687471,0.04175232,-0.4978199,0.5135136,0.021018393,0.49821606,0.14832275,0.32347733,-0.27918664,-0.45168215,-0.09329255,1.0134287,0.54227865,0.005569467,0.045442414,-0.072467044,-0.4398709,-0.008061076,0.1155378,0.7688197,0.5812157,0.045296736,-0.017219376,0.1587119,-0.073587306,0.22215852,-0.0035640956,-0.39873683,-0.15697311,0.1497247,0.75213915,0.45021516,-0.26416728,0.37236717,0.065008484,0.3113722,-0.31086054,-0.36605012,0.41527098,0.7533279,-0.34235966,-0.24497885,0.8517862,0.5672886,-0.2714394,0.47178555,-0.5859689,-0.4223716,0.38705456,-0.23558007,-0.38206452,0.26186916,-0.25696567,0.111514874,-0.88176626,0.32365665,-0.39449462,-0.59297526,-0.58448166,-0.045620788,-2.525825,0.09665207,-0.1894266,-0.15145905,-0.30262348,-0.05074807,0.22060782,-0.6106826,-0.5583309,0.1549204,0.046261773,0.6604787,-0.12759143,0.13225041,-0.13339774,-0.5678099,-0.06397061,0.2627169,0.14065978,0.27481276,-0.0634703,-0.30335626,-0.04960868,0.0054352423,-0.3060713,0.18594737,-0.63721716,-0.3746626,-0.088844076,-0.47984594,0.008447377,0.73389184,-0.40316698,0.07687047,-0.33732903,0.1496595,0.027038552,0.010479387,0.0691971,0.26472318,0.16627645,-0.14275548,0.1751129,-0.38369653,0.39077446,0.13823134,0.41811296,0.24638405,-0.020893244,0.07336688,0.58457816,0.5266645,0.002682543,0.8217944,0.41668898,0.025304647,0.46093553,-0.35235196,-0.41421917,-0.4406432,-0.37027597,0.20249395,-0.29250896,-0.38507032,-0.19326153,-0.35617706,-0.85409147,0.5156886,-0.037407048,0.19172427,-0.3130027,0.381987,0.49549034,-0.17483005,-0.00918719,0.07107481,-0.2039405,-0.31858382,-0.21329302,-0.58113635,-0.3511743,-0.046257775,0.92117405,-0.23477322,0.17427951,0.10586234,-0.122375995,0.046618592,-0.017488206,0.19105162,0.08152383,0.34111068,-0.16881797,-0.6351804,0.4522947,-0.26720074,-0.16474588,-0.40337044,0.12963274,0.6739304,-0.6768544,0.40455613,0.4845515,-0.035826843,-0.46654797,-0.5982458,0.11663513,0.16547519,-0.09253015,0.3451524,0.19781122,-0.68666273,0.44193396,0.06854828,-0.32246467,-0.5539131,0.5869774,-0.07506575,-0.17465827,-0.049047675,0.41223633,0.16567153,-0.04744563,-0.09682218,0.22431011,-0.3169761,0.30162674,0.10581244,-0.04145768,0.32085997,-0.27923483,-0.040152393,-0.80576766,-0.110776804,-0.61075264,-0.31352666,0.3797062,0.067060195,0.06962381,0.061980892,-0.040174205,0.40898487,-0.5781742,0.27169782,-0.053035013,-0.38514364,0.5791353,0.3792555,0.6103321,-0.40172336,0.44683513,0.08648279,-0.14543985,0.097552575,0.112637535,0.5932267,-0.09198145,0.4148656,0.0010291178,-0.034163468,0.42731497,0.6030632,0.22212501,0.22428423,0.11980171,-0.11048685,0.1528439,-0.13557695,-0.00024303993,-0.01011979,-0.51886773,-0.31528,-0.02895565,0.094801195,0.45632058,0.022156062,0.32507217,-0.14128153,-0.28585583,0.070003465,0.08321252,0.10558109,-1.2353128,0.43424094,0.10943374,0.73678905,0.2017656,0.26054555,-0.04262627,0.57864743,-0.10654369,0.08719257,0.3603105,0.079088144,-0.35281822,0.48109695,-0.44631964,0.5085581,-0.053976603,-0.010353736,0.0064982893,-0.21382223,0.51312536,0.94916743,-0.12065349,0.07380919,-0.017448012,-0.35607657,0.077294864,-0.34140396,0.15867952,-0.438024,-0.2424744,0.4824739,0.42927864,0.32625037,-0.24664982,0.09573049,0.16503593,-0.06795283,0.17135127,-0.05126204,0.06950137,-0.21700725,-0.52090657,-0.21330051,0.45933193,0.064499795,0.11073726,0.022834023,-0.082467,0.38181642,-0.029217899,0.13225484,0.025378598,-0.47442302,0.061462745,-0.29629657,-0.38598424,0.4725359,-0.37636873,0.16806497,0.11262543,0.10717675,-0.36145872,0.28983432,0.1967584,0.44860622,-0.05659523,-0.2114175,-0.36301896,0.03621398,0.07315334,-0.3356333,-0.11394564,-0.31474915,0.27361843,-0.6355113,0.22320251,-0.13620186,-0.21308857,-0.18822473,-0.09458964,0.085464954,0.33227012,0.08241401,-0.07618641,0.0024735709,-0.15236174,-0.35158756,-0.2697598,-0.1103082,0.18295802,0.24427809,-0.047530454,-0.2713742,-0.18393181,-0.24757619,0.22955988,0.15481587,0.34833518,0.5422986,0.21702738,-0.12441412,-0.03998224,0.20886907,0.31808242,0.0140265785,-0.061252758,-0.34694073,-0.40120232,-0.2294188,0.3598314,-0.20067474,0.13621302,0.14322314,-0.1742866,0.68186986,-0.08110415,1.112326,0.048517488,-0.2726498,0.08709065,0.5053843,-0.05254441,0.035245404,-0.30610567,1.1541446,0.45873487,-0.060888037,-0.072917305,-0.34239656,0.06714129,0.050477777,-0.25407228,-0.26650426,-0.0758736,-0.49097267,-0.29569718,0.22856286,0.21785812,0.123236604,-0.12847129,-0.0688454,0.24074984,0.18393926,0.31132093,-0.50640386,-0.11812928,0.4798289,0.15083669,-0.010110521,0.23271841,-0.35981706,0.25991267,-0.6421318,0.05535392,-0.3295664,0.1276386,-0.21082108,-0.37175986,0.22933702,-0.17534946,0.37825212,-0.4575483,-0.3462891,-0.13243577,0.19975385,0.11505689,0.017198507,0.3675104,-0.23927797,-0.02402418,0.033086166,0.6176207,0.91779274,-0.099197835,-0.047123082,0.19416027,-0.3324395,-0.76643777,-0.07768098,-0.48507875,0.17974468,-0.23277998,-0.3782812,-0.46551913,0.37935147,0.1902086,0.047256526,-0.09127739,-0.4450579,-0.13224734,0.12827343,-0.26367226,-0.28631312,-0.10916353,0.08313993,0.58425635,-0.3112852,-0.3760581,-0.17275698,0.3175579,-0.28089577,-0.8120676,-0.023433903,-0.35091537,0.23308049,0.21931921,-0.39939874,-0.1072423,-0.10418404,-0.4013329,0.3316795,0.3461218,-0.31635866,-0.062388007,-0.3028083,0.0075489837,0.6618949,-0.05440666,0.09883855,-0.34329975,-0.44456893,-0.7747372,-0.42214966,0.17349362,0.1864171,-0.0011495233,-0.7062984,0.0016595046,-0.28169903,-0.06632716,-0.0134361265,-0.24036561,0.21160874,0.10189685,0.38797086,-0.25133514,-0.8926887,0.19149442,0.12522109,-0.2067865,-0.5977627,0.40905783,-0.07775011,0.8605484,0.06304104,0.07362123,0.21933511,-0.5443906,-0.07954507,-0.22035322,-0.028161226,-0.6254722,0.27432242,250 +171,0.41292012,-0.101495616,-0.5391875,-0.21292628,-0.28486925,0.24175768,-0.16624148,0.21390752,0.16045412,-0.25686872,0.04305535,-0.027055575,-0.056317028,0.52128613,-0.07800305,-0.596471,0.008437125,0.13452367,-0.6284382,0.30841967,-0.52039456,0.44254717,0.021137241,0.3825806,0.15851718,0.2528021,0.27668253,-0.079515316,-0.0685097,0.04408838,-0.07439155,0.23120262,-0.41256258,0.07171135,-0.09946613,-0.39774957,-0.08856138,-0.2619079,-0.3693352,-0.63225496,0.37782755,-0.6905125,0.64777726,-0.20263961,-0.44472912,-0.04376562,0.16411586,0.32754955,-0.3038027,0.08715653,0.26896903,-0.33077553,-0.09113694,-0.027550705,-0.23879966,-0.5050548,-0.6533639,-0.070508786,-0.6536586,-0.117215745,-0.26880127,0.3216847,-0.26885018,0.120448984,-0.09090201,0.39098927,-0.39825764,-0.01724875,0.339335,-0.26786727,-0.060386296,-0.42555848,-0.11911753,-0.15373841,0.29385966,0.0333823,-0.12712102,0.26912612,0.3881835,0.55565727,0.10160058,-0.31589895,-0.3970392,-0.0012056887,-0.09819758,0.463962,0.014772952,-0.087640665,-0.2879964,-0.042134847,0.26592025,0.16101615,-0.0766201,-0.34587395,0.08437823,0.048941597,-0.22876032,0.26177624,0.40890306,-0.4689991,-0.2613385,0.4252792,0.42540798,0.0991566,-0.3262767,0.23221776,0.02592172,-0.4721009,-0.19688445,0.10323983,-0.014101656,0.5487982,-0.07973313,0.30894366,0.8261463,0.034128092,-0.035073664,-0.33142614,0.01262506,-0.11804867,-0.13881375,-0.17787991,0.077143304,-0.4702216,0.05553943,-0.18114398,0.83244306,0.011586698,-0.886144,0.340487,-0.4412757,0.09794248,-0.14009437,0.5467417,0.7902781,0.23801854,0.18241268,0.9336507,-0.5006817,0.08442889,0.100739636,-0.355299,0.050569825,-0.10147654,0.034316156,-0.56218123,-0.005829831,0.06538092,-0.035129145,0.059642915,0.4839173,-0.44575864,-0.10114942,0.024698561,0.720008,-0.43797916,-0.033462953,0.6279452,1.0440905,1.0873324,-0.05014251,1.1650548,0.5605894,-0.19215909,-0.024009384,-0.47131506,-0.3774707,0.07315286,0.27886048,0.266828,0.4193527,0.12459127,-0.0022153775,0.6400324,-0.33347294,0.119149536,-0.013158628,0.045270704,0.02610411,0.019914245,-0.43725312,-0.20727445,0.18176661,0.08056331,0.0055048424,0.21286291,-0.24464045,0.54712933,0.010235993,1.4366294,0.12560727,-0.004622712,0.025872082,0.45420104,0.1489501,-0.20450787,-0.13411394,0.050611846,0.5408745,-0.13158153,-0.4474584,-0.06590726,-0.30597705,-0.36510983,-0.15666634,-0.3147128,-0.20890424,-0.06547296,-0.4997819,-0.12870404,0.14696842,-0.29006106,0.44208214,-2.7304206,-0.1550795,-0.18116061,0.2651692,-0.1803595,-0.28555366,-0.3578858,-0.4441088,0.17194389,0.4413224,0.2891931,-0.4886611,0.5488764,0.32187977,-0.3091849,0.006857689,-0.5836954,-0.058015894,-0.17409565,0.4218331,-0.07940199,-0.026811425,-0.12191294,0.35369554,0.73809135,-0.0025719563,-0.12425116,0.21049912,0.39845726,0.050001785,0.6405377,0.30188137,0.5106537,-0.18708389,-0.20161386,0.388027,-0.37894645,0.26886198,-0.035309147,0.13640927,0.48762766,-0.47317198,-0.8304152,-0.5624061,-0.16026781,1.1606239,-0.33799076,-0.2678703,0.33035353,-0.1960778,-0.24740781,-0.037999846,0.38977367,-0.034270123,-0.04135065,-0.620678,-0.08736167,0.022835545,0.11093194,-0.08802458,0.011063043,-0.25351372,0.60127014,-0.17003626,0.44890663,0.30873123,0.21445619,-0.026814366,-0.5504747,0.075352944,0.8301141,0.3198411,0.09310538,-0.22808191,-0.14995965,-0.24537092,-0.23612538,0.29303244,0.42325395,0.71965885,0.038312208,0.16088702,0.4022141,-0.28571668,0.07053093,-0.16470149,-0.27334967,-0.03570993,0.13173953,0.45850965,0.63995534,0.06257548,0.4642031,-0.11444263,0.18499759,-0.1892806,-0.5164805,0.60074073,0.66340446,-0.14977123,-0.3193725,0.42854413,0.47202837,-0.28557128,0.30185527,-0.58550876,-0.22425602,0.70600724,-0.12313175,-0.49221733,0.11763302,-0.3323951,0.017443664,-0.90295905,0.20584737,0.09334901,-0.60278016,-0.59219605,-0.31585237,-3.6110704,0.16824654,-0.26028046,-0.08066247,0.15534207,-0.14562072,0.34367195,-0.5972587,-0.44622675,0.0032675534,0.04776884,0.49975917,0.0164538,0.08493771,-0.35849953,-0.25783968,-0.19576028,0.2705822,0.1280955,0.2759519,0.09882604,-0.46786347,0.28327447,-0.39231429,-0.4948058,-0.13164072,-0.5237159,-0.49113306,-0.14330798,-0.42421192,-0.26913688,0.7782329,-0.3373466,0.013438393,-0.2675198,0.041430943,-0.15452157,0.3486869,0.26269764,0.15287279,0.09298238,-0.05641928,-0.10552476,-0.3401149,0.19842319,0.006063193,0.30096194,0.33747733,0.011550371,0.21738401,0.65809447,0.49790055,-0.089568056,0.72437257,0.45533314,-0.10814408,0.19739528,-0.24356577,-0.12278626,-0.7042501,-0.37895405,-0.25703418,-0.49156386,-0.51439315,-0.07831282,-0.3378078,-0.75867736,0.44704014,-0.06140182,0.19048375,-0.16610657,0.15610142,0.34854165,-0.13203096,-0.07412264,-0.08284853,-0.26337695,-0.4356404,-0.42057073,-0.6644679,-0.6833324,0.17167126,1.2766764,-0.17330101,-0.12529904,-0.023531647,-0.4817293,0.0006103754,0.20560592,0.25233746,0.123058595,0.37088266,-0.2086051,-0.82804,0.29001912,-0.31504205,0.07004359,-0.67463285,0.026643332,0.64008087,-0.6221952,0.5506127,0.28737774,0.29465273,0.06351754,-0.5626386,-0.3927598,0.015810886,-0.25135365,0.58006746,0.109278165,-0.45198855,0.4091747,0.114363916,-0.2072864,-0.57753146,0.47513995,-0.09695853,-0.22081527,0.16913512,0.2980215,0.050467264,-0.23255144,-0.040475927,0.2271999,-0.54276294,0.35092667,0.31959945,0.012798469,0.26762542,-0.10125647,-0.16654982,-0.46549973,-0.17091946,-0.34956595,-0.2038287,0.08426247,0.02844686,0.3181375,0.012909007,0.0152115105,0.33138606,-0.21013997,0.14989625,0.01571583,-0.17722124,0.3605934,0.5151211,0.24814327,-0.4747511,0.6086903,0.117172725,0.0796078,-0.08496686,0.04194146,0.44253832,0.26488775,0.46659973,-0.25562656,-0.18661971,0.2178679,0.6361524,0.3087413,0.37627974,0.14401048,-0.28762862,0.23761968,0.1520122,-0.022343896,-0.08417246,-0.19732125,-0.06975226,-0.13038819,0.3096805,0.3236749,-0.013181853,0.3728735,-0.17080845,-0.06487422,0.37845647,0.058193557,-0.22666168,-1.0814432,0.27861124,0.3563569,0.6512219,0.31825572,0.029735018,-0.15202609,0.5590843,-0.44146287,0.033026937,0.45029563,0.04153706,-0.4486192,0.5430679,-0.534012,0.64863586,-0.16792461,-0.05212771,0.09137691,0.26175278,0.2587718,0.82298857,-0.057691596,0.063906215,0.0300417,-0.41705656,-0.003239123,-0.2900596,0.28667447,-0.6606018,-0.3142794,0.6020186,0.47616732,0.28722247,-0.2958022,-0.0663854,0.042169657,-0.16415758,0.04581,-0.14094846,0.032199025,-0.20727675,-0.63763773,-0.294351,0.4258546,-0.10336793,0.020160066,0.21672998,-0.268755,0.27856186,-0.13236956,0.033540107,-0.015325276,-0.54442036,-0.13952662,-0.3182148,-0.44604474,0.47791654,-0.40535864,0.31955317,0.16175635,-0.0013820045,-0.397056,0.23997475,0.00057103235,0.74773,0.049310625,-0.16712876,-0.352329,-0.045413055,0.34869516,-0.3441539,0.0017115434,-0.35216615,0.18430212,-0.59838605,0.38255432,-0.25640982,-0.27630487,-0.16723956,-0.15602972,0.09073814,0.45843378,-0.19545817,-0.041340098,0.13231693,0.114892274,-0.38859496,0.019180438,-0.37588724,0.2284398,-0.16207436,0.034824133,0.005143126,-0.16333748,-0.0036336104,0.3418531,0.088997945,0.26657492,0.3550196,-0.19816308,-0.334191,-0.003017819,-0.0906301,0.40241823,0.16197045,-0.16188817,-0.4721252,-0.32663283,-0.25487113,0.33305973,-0.18481977,0.24761759,0.049550828,-0.45146644,0.87477916,0.015817214,1.2351178,0.06857178,-0.2914027,0.13511771,0.5859969,0.28668448,0.22975221,-0.2706141,0.76812994,0.69810814,-0.103682086,-0.2915139,-0.33877194,-0.08733358,0.31431058,-0.29907954,-0.25927603,-0.103194736,-0.8190428,-0.11693989,0.12706791,0.08372945,0.24711256,-0.057551403,0.011837488,0.080167055,0.19227062,0.56157285,-0.4082063,-0.13265832,0.35061774,0.29855058,-0.01234676,0.20200604,-0.45123765,0.37730476,-0.7281765,0.23082314,-0.34177908,0.06744167,-0.04007637,-0.27247286,0.29488784,0.07232735,0.27650103,-0.28638822,-0.19441566,-0.22449693,0.7957311,0.19976954,0.36233857,0.7675032,-0.2651489,-0.20233086,0.13562308,0.47312024,1.4530197,-0.17108747,-0.038211472,0.32309228,-0.21636009,-0.53693086,0.07971447,-0.3849778,0.1660951,-0.058257755,-0.4038804,-0.3203185,0.33502653,0.001844132,-0.18736641,0.21629265,-0.44748288,-0.18019606,0.30949274,-0.2057875,-0.20891313,-0.29863244,0.26725802,0.45635217,-0.3707548,-0.4056263,-0.06925393,0.44451326,-0.27108553,-0.53667796,0.20392856,-0.3504041,0.33203512,0.15648259,-0.43965304,-0.04605379,0.18491481,-0.43364245,0.14222449,0.5214497,-0.37997139,-0.059877753,-0.2334745,-0.14866233,1.0803173,0.010874287,0.023815095,-0.63257915,-0.37750867,-1.0371307,-0.31343353,0.32861057,0.25957707,-0.17101267,-0.5939546,-0.06123228,-0.043955017,-0.0044038137,0.09396397,-0.5342051,0.40950352,0.17222409,0.39077446,0.009776687,-0.80412936,-0.07538858,0.0646834,-0.3800683,-0.44233847,0.5423103,-0.16117662,0.790832,0.046615634,0.12095938,0.14953879,-0.4340178,0.40311807,-0.37257192,-0.13409756,-0.78325194,-0.04969425,253 +172,0.5297926,-0.39320326,-0.30155644,-0.23616692,-0.40553734,0.12971963,-0.16054896,0.16716646,0.078432,-0.4130813,0.09245221,-0.333456,-0.10759533,0.5974411,-0.21748479,-0.74002856,-0.03363157,0.13885638,-0.6388988,0.77824384,-0.50612575,0.4024804,0.24909408,0.12253585,0.11531002,0.22008358,0.5457506,-0.09666847,-0.03485333,-0.06482847,-0.2687903,0.047860365,-0.5839865,0.25924936,-0.078372546,-0.3222806,0.21168366,-0.26062337,-0.33436352,-0.74264234,0.31819314,-0.8101328,0.2877681,0.002209393,-0.22837254,0.17354517,0.28273302,0.23362452,-0.2984203,0.12892711,0.13837343,-0.05775421,-0.050442886,-0.19457437,-0.1033746,-0.62174153,-0.6351693,0.026219746,-0.6971704,-0.40617135,-0.2126972,0.23888998,-0.38320625,0.050081473,-0.0875962,0.30198008,-0.54351944,-0.27037314,0.11963834,-0.099549465,0.27360767,-0.5053811,-0.09049355,-0.14165993,-0.08903182,-0.074700475,-0.11068344,0.5007091,0.25388804,0.6196331,0.006766349,-0.25501618,-0.067986846,-0.1453943,0.24327587,0.47628078,-0.0400151,-0.59168476,-0.21299288,0.10474184,0.17503193,0.09353988,-0.025612107,-0.48350233,0.06629966,-0.08934751,-0.23359172,0.33922666,0.3913204,-0.59043056,-0.38732564,0.30415434,0.47065413,-0.047457345,-0.0713843,-0.007267769,0.051362786,-0.5353119,-0.1654796,0.20968373,-0.31743392,0.47593555,-0.11419327,0.07636307,0.67018783,-0.24014536,0.08482072,-0.15710713,-0.19783472,-0.070974335,-0.15664223,-0.24989699,0.24930611,-0.63731855,-0.09765477,-0.32136205,0.94743323,0.16292843,-0.7494296,0.44070423,-0.58725715,0.17492406,-0.22330584,0.5605636,0.61033744,0.41815022,0.21693341,0.66118866,-0.49161807,0.19496821,-0.18565793,-0.2758428,0.09301195,-0.2987107,-0.066418014,-0.48532152,0.20731153,-0.22286378,-0.067211755,-0.26997757,0.6893451,-0.42188618,-0.11482746,0.098947726,0.85665345,-0.34943742,0.096470095,0.4630956,0.9832065,1.0460378,0.017048614,1.3356841,0.4385018,-0.24024417,0.30270258,-0.28612718,-0.6629858,0.22520804,0.5589115,0.15710682,0.26153767,-0.046109986,-0.043189492,0.37660754,-0.41169697,0.09583404,-0.27995238,0.43708813,-0.08507636,0.076191425,-0.5104329,-0.26363453,0.20503168,0.039688643,-0.015644964,0.32107347,-0.21366934,0.32339013,0.07381814,1.8504033,-0.09029611,0.10164436,0.11881913,0.47172794,0.30777067,-0.05161656,-0.012732967,0.18631247,0.36154237,0.032847613,-0.5739847,0.15405568,-0.35698283,-0.5161717,-0.24560668,-0.32850513,0.10979004,0.024538422,-0.48585197,-0.18445499,0.13028792,-0.2281235,0.351814,-2.197806,-0.24662548,-0.15193515,0.22366813,-0.4838104,-0.1668573,-0.07000563,-0.4635507,0.4499102,0.39904684,0.44112968,-0.65706766,0.34959516,0.5024307,-0.42476097,-0.120164126,-0.57214135,-0.24674495,-0.20536384,0.54154867,-0.024772102,-0.2177978,-0.12820333,0.3918548,0.5515019,-0.08441327,0.047565516,0.20734742,0.38004932,0.26847556,0.5572641,-0.027022226,0.41147855,-0.28972402,-0.11434065,0.42939675,-0.1102859,0.28219005,-0.01828336,0.18874127,0.4532518,-0.5347857,-1.0558336,-0.6660318,-0.446519,1.0383066,-0.3415075,-0.38893113,0.32964867,0.11629277,-0.050527997,-0.09720966,0.27295098,-0.15484114,0.028202858,-0.7589375,0.1406551,0.11809845,0.20067905,0.20182547,-0.08594225,-0.37261614,0.69356626,-0.08309191,0.3867654,0.26190475,0.28268072,-0.39459673,-0.5593117,0.07194128,0.9891694,0.3545896,0.12284882,-0.21728805,-0.34312552,-0.22789794,-0.1244499,-0.032478895,0.22085923,0.9786838,0.11728677,0.0026513333,0.2709686,-0.2229639,0.03926117,-0.08029852,-0.46940345,0.093670815,0.16627,0.55259347,0.37824503,-0.054609403,0.40310028,-0.09410854,0.3659075,-0.18558726,-0.3914469,0.43131173,1.2562658,-0.1544052,-0.04478838,0.6112308,0.51608115,-0.3419002,0.5623907,-0.7483976,-0.40998656,0.40038058,-0.20189597,-0.45523682,0.10276497,-0.34944054,0.1375547,-0.9922364,0.47561854,-0.26451668,-0.21009883,-0.58349335,-0.20417236,-3.5459116,0.29020327,-0.0769948,-0.18245445,0.08779909,0.14341162,0.48983568,-0.6323688,-0.38097313,0.07724056,-0.0086354595,0.52198035,0.106531076,0.14905311,-0.32942536,-0.23014812,-0.31343117,0.2622516,0.030272087,0.2228349,-0.057785764,-0.5047094,-0.016866732,-0.2405836,-0.35579157,0.1363409,-0.50956976,-0.57117736,-0.34620506,-0.5603344,-0.29100138,0.5871115,-0.010507707,-0.03703084,-0.20649455,-0.015634926,-0.08362493,0.23666292,0.22348377,0.197269,0.06417625,-0.01637135,-0.19973193,-0.3365603,0.21656914,0.031961836,0.33842432,0.34636948,-0.04648392,0.10056552,0.6665976,0.40765557,-0.09147365,0.67470723,0.39612502,-0.13372149,0.10840513,-0.19152507,-0.26819718,-0.5508109,-0.44660416,-0.21433592,-0.26844713,-0.47640085,-0.03909482,-0.39841413,-0.49531552,0.5130961,0.011850127,0.24302383,-0.12896866,0.082609445,0.34872538,-0.25858715,0.03863287,-0.15630743,-0.17991409,-0.55381036,-0.3884724,-0.7792213,-0.5001136,0.27902314,1.1349355,-0.15053448,-0.31949717,-0.08092734,-0.03847262,-0.032239858,-0.15173873,0.032703478,0.40096524,0.2936327,0.009361709,-0.77254015,0.56239724,0.023293026,0.1531252,-0.35603502,0.08635699,0.6098661,-0.5315209,0.45986456,0.33437616,0.15017365,0.10888653,-0.6244012,-0.17508186,0.15521206,-0.22289094,0.4943131,0.017542306,-0.6851266,0.44864738,0.28756398,-0.46676537,-0.80126065,0.42827097,0.06582608,-0.32838666,-0.113874845,0.31761518,0.16534677,0.121199355,-0.3948328,0.33589306,-0.69616246,0.22984216,0.4107915,0.03305763,0.21121,-0.2669864,-0.24327418,-0.6509648,-0.032592334,-0.43433112,-0.3636359,0.20510769,0.025157582,-0.0077541512,0.24693307,-0.06627844,0.4278468,-0.23926687,0.039871193,0.057274386,-0.3496809,0.46059063,0.41065082,0.4299518,-0.34882274,0.5339417,-0.035748623,-0.1589083,-0.30391827,0.014526638,0.39538443,0.3011638,0.15245095,-0.08368886,-0.19251485,0.50471276,0.99617493,0.19217753,0.4131429,0.13380463,-0.24963541,0.35105982,0.17737837,-0.10447712,0.12837324,-0.36290187,-0.16839713,0.15214364,0.11851928,0.5338861,0.013698252,0.3425846,-0.14917001,-0.10823663,0.12915455,0.21932627,-0.2497308,-1.007891,0.18004617,0.14088406,0.5122829,0.75917774,0.032994263,0.03840162,0.6342684,-0.22430436,0.06024719,0.36079508,-0.03101492,-0.528127,0.6808502,-0.5254213,0.24011026,-0.098755315,0.024787346,-0.05897931,0.10592079,0.36696202,0.8264291,-0.04543382,-0.019168355,-0.15859823,-0.2948984,0.12985654,-0.3063478,0.11219385,-0.30296803,-0.42948115,0.48238292,0.36097425,0.29643187,-0.038878836,-0.023769835,0.0010875106,-0.1518295,0.30268192,-0.02172892,-0.03228421,0.03921352,-0.5886476,-0.16947125,0.62184775,0.08153211,0.09047437,-0.06383166,-0.20108649,0.09147615,-0.22833504,-0.100168295,0.03512957,-0.6972113,0.06227041,-0.32289234,-0.25074634,0.63080096,-0.30591348,0.054862782,-0.024274612,0.040046494,-0.4410102,-0.01091066,0.23423466,0.71636134,-0.014166713,-0.17511746,-0.2781207,-0.039983477,-0.034467865,-0.24491067,0.027919738,-0.20775244,0.07171789,-0.9199072,0.5755957,-0.110476576,-0.41677672,0.16658555,-0.24071436,-0.045337837,0.53876966,-0.20210437,-0.1605869,-0.24941333,0.08722975,-0.24728593,-0.11361006,-0.032414045,0.28177324,-0.03324697,-0.039977375,-0.14101572,-0.054773632,-0.04114557,0.6457282,-0.039673332,0.20684926,0.2644725,0.10352575,-0.3847102,0.050602555,0.13592583,0.37905237,1.6506512e-05,0.05252512,-0.27885076,-0.13307945,-0.17881645,-0.017596753,-0.22185837,0.22836241,0.14721091,-0.5458359,0.92856604,0.13874346,1.2870785,-0.13934107,-0.26646346,-0.038850937,0.5171282,0.030159319,0.06081534,-0.36721858,0.791654,0.69293034,-0.059015214,-0.21767057,-0.45635623,-0.19118932,0.30340517,-0.3362245,0.007470131,-0.0039724032,-0.7313364,-0.4218171,0.3585149,0.34832093,-0.002872006,-0.086250715,0.060495116,0.1488181,0.17023586,0.4675141,-0.5122624,-0.06829119,0.28730318,0.29518744,0.15257981,0.30556506,-0.38562834,0.33267596,-0.6360712,0.24906226,-0.31813425,0.061369006,-0.0061068316,-0.2390275,0.23299138,0.0920877,0.32189402,-0.22404514,-0.4037658,-0.15888856,0.7504141,0.14028242,0.15640745,0.82850796,-0.34027117,0.2634348,-0.007331657,0.40162498,1.348185,-0.27909726,-0.19851461,0.19411334,-0.3360841,-0.8486383,0.3635346,-0.3683447,-0.03722926,-0.038921107,-0.40521246,-0.43455046,0.38723055,0.23325583,0.026272485,0.018698825,-0.5118841,-0.11163608,0.4076491,-0.17637347,-0.2814701,-0.28882217,0.27654558,0.6732951,-0.3694587,-0.20578185,0.13664795,0.33170176,-0.32161278,-0.754857,-0.16128567,-0.32427362,0.32456237,0.29149267,-0.2426321,0.13182798,0.11478982,-0.46256238,0.07614635,0.3807603,-0.41366097,-0.0044246,-0.26355037,0.06929979,0.9464264,-0.14717975,-0.31384814,-0.7754325,-0.58264273,-0.95968366,-0.46793574,0.7804591,0.16643196,0.085128374,-0.4441748,0.04733282,-0.034660373,0.1184199,0.017237624,-0.39572772,0.34235942,0.046164427,0.49108627,-0.08332607,-0.70785177,0.13501875,0.14196925,-0.090093635,-0.48493597,0.5456013,-0.19083472,0.89847785,-0.013852691,-0.024036638,0.19534105,-0.5976385,0.100127816,-0.41443065,-0.29434383,-0.6158933,0.11946401,254 +173,0.43126258,-0.13585809,-0.4257569,0.06335115,-0.2550286,0.0507999,-0.30744174,0.3742226,0.15388899,-0.47740784,-0.20368789,-0.060720094,-0.048453305,0.32659304,-0.18435542,-0.4657543,-0.013303502,0.20415924,-0.38985696,0.5021861,-0.5273087,0.38717955,0.1253645,0.475502,0.41756445,0.21421733,0.22889256,-0.0029554884,-0.45160332,-0.34393084,-0.107311316,0.14259484,-0.64444184,0.12412182,-0.2409882,-0.56187016,0.013014157,-0.524972,-0.23896858,-0.6628919,0.35480016,-0.78176427,0.41611046,-0.06567789,-0.19974117,0.45904216,0.02436769,0.31022868,-0.1176329,0.036724616,0.20860028,-0.1982987,-0.061900113,-0.14368324,-0.20349471,-0.35449514,-0.5721003,0.10247755,-0.45754883,-0.076476365,-0.3195034,0.25329033,-0.24502137,0.040539138,0.019861178,0.40793067,-0.47531232,-0.028432036,-0.061410222,-0.0485298,0.13541082,-0.644068,-0.2832163,-0.18128611,0.22110115,-0.16151595,-0.019498121,0.20607704,0.27527517,0.46238092,0.11352547,-0.087991245,-0.5152248,-0.11513165,0.11204159,0.5807006,-0.15339717,-0.39869493,-0.2671461,-0.20604692,0.21790355,0.09902401,0.08233908,-0.22287239,-0.0027082243,0.077191345,-0.36759064,0.33908463,0.46012646,-0.39944613,-0.19936317,0.24717264,0.50026387,0.1526901,-0.26832741,-0.08724017,-0.043448463,-0.4216946,-0.054679092,0.027709298,-0.25631866,0.58625495,-0.14963718,0.26380542,0.59409904,-0.29080388,0.14115636,-0.046120502,0.14101201,-0.006006805,-0.23994645,-0.40607262,0.30115998,-0.45875162,0.086521946,-0.2492972,0.76870257,0.02945532,-0.6189358,0.3963713,-0.45135963,0.10356086,-0.12460669,0.47024447,0.6592901,0.30212355,0.28202254,0.53877777,-0.33167437,0.09541998,-0.16848901,-0.20820777,-0.07867361,-0.11348848,0.007904847,-0.40196773,0.050580185,-0.007926325,-0.043579835,0.040303692,0.7109773,-0.41460067,-0.021345044,0.2506524,0.7907918,-0.38380817,-0.06387708,0.79557383,1.1806389,1.110948,0.03685769,1.0977042,0.37282032,-0.26745334,-0.10318283,-0.2681317,-0.50866944,0.31717762,0.29652315,-0.26391342,0.25547928,0.2184426,-0.10325292,0.47421226,-0.44713384,-0.06004735,-0.16872889,0.06287171,-0.012704571,0.11454797,-0.46747875,-0.27389514,0.1180649,0.019795299,0.11826169,0.23268357,-0.3667205,0.4341142,0.0708014,1.5804235,-0.14948195,-0.029530885,0.033958793,0.53194064,0.12674962,-0.13947502,-0.0383143,0.19618894,0.30679837,-0.044149138,-0.6548861,0.06342946,-0.2116251,-0.5324234,-0.20633025,-0.18436813,-0.09156709,-0.0003181696,-0.5010014,-0.18205126,-0.07329561,-0.3830194,0.4078006,-2.458764,-0.18443775,-0.020528989,0.29938444,-0.1825541,-0.49900335,-0.11967387,-0.50502324,0.5354509,0.2905789,0.43936878,-0.56290114,0.34056744,0.39548805,-0.35089272,-0.20928608,-0.68162763,-0.14241862,-0.13186112,0.37717506,-0.09067767,-0.10936446,-0.09205224,0.026090177,0.5903366,-0.057636,0.21231559,0.26364908,0.4160177,-0.011875021,0.56044525,0.23000498,0.5226783,-0.240719,-0.24397913,0.4061809,-0.39033872,0.15766805,-0.20631899,0.2174684,0.41392252,-0.51856595,-0.8960898,-0.77594745,-0.24922088,1.1884679,-0.15970501,-0.47124654,0.1985597,-0.076938346,-0.20918499,0.05728546,0.35811523,-0.14282222,-0.1260794,-0.7944854,0.016886806,-0.079173714,0.13046417,0.029693643,0.14076042,-0.45233658,0.5973742,-0.13035342,0.35395315,0.39181045,0.29999033,-0.23926881,-0.38570756,0.113088466,1.046976,0.3930958,0.14578763,-0.3685561,-0.19067469,-0.2968825,-0.09913109,0.06915825,0.24549204,0.63675326,-0.029408865,0.20056792,0.21301848,-0.032167796,0.09699217,-0.17447345,-0.3596055,-0.11110418,0.12529753,0.6011569,0.57282627,0.0016348601,0.53681254,-0.19497925,0.28483087,-0.18208247,-0.41196075,0.46442646,1.041605,-0.21848182,-0.19060351,0.716134,0.5223007,-0.16834226,0.5383269,-0.7129045,-0.47654533,0.38111547,-0.11920455,-0.328472,0.16000737,-0.36868033,0.098183446,-0.86466515,0.22688879,-0.2214639,-0.4050639,-0.6750539,-0.29639927,-2.7767303,0.12930913,-0.19919838,-0.18702379,-0.05865179,-0.3113828,0.2939035,-0.5827297,-0.4760896,0.15812927,0.10859215,0.6987244,0.05359506,0.17685941,-0.181708,-0.2828048,-0.32598445,0.13393204,0.1947907,0.34483558,0.07808932,-0.5239571,0.16495495,-0.21489707,-0.30629,-0.017990053,-0.59646714,-0.39716607,-0.093714386,-0.43733463,-0.38160947,0.5562106,-0.49530783,0.1121449,-0.19906431,-0.049981836,-0.22148523,0.4490526,0.17838396,0.05570543,0.11274707,-0.013018344,0.16458158,-0.31229782,0.20478445,0.13443764,0.06883461,0.41288653,-0.0928582,0.11140355,0.32279414,0.5701303,-0.06662051,0.8664368,0.49729055,-0.14247103,0.31461176,-0.30021894,-0.2373538,-0.6507797,-0.35816357,-0.1285874,-0.34485185,-0.508814,-0.17814173,-0.3747298,-0.88745046,0.59393233,0.02022963,0.18799908,-0.028476708,0.4341429,0.36450827,-0.17539981,-0.117815815,-0.044902515,0.05141622,-0.49842772,-0.46539825,-0.7615461,-0.5481003,-0.060735624,0.9093951,-0.08499859,0.0733472,0.24093339,-0.2357723,0.03342007,0.17985658,-0.0044490416,0.010802575,0.57218176,0.029189937,-0.7635409,0.426118,-0.11194324,-0.018159024,-0.6061068,0.24477895,0.59276944,-0.6555846,0.3838157,0.5379479,0.18944512,0.097389,-0.43636557,-0.15742804,-0.029130781,-0.24798483,0.5717595,0.22454108,-0.75757676,0.51970226,0.29370472,-0.22237825,-0.7850094,0.5037407,0.018402208,-0.2800906,-0.036425155,0.35448366,0.26426965,0.03095835,-0.29429168,0.14749955,-0.46055585,0.3624359,0.19254753,-0.07822461,0.43824655,-0.34936836,-0.14798452,-0.69170153,0.07036751,-0.42848822,-0.37779087,-0.022494245,0.10657445,0.045878623,0.41018718,0.070658244,0.38063747,-0.36449412,0.056291714,-0.22173385,-0.17142281,0.22224538,0.48787642,0.47846004,-0.33232757,0.57911104,0.03318872,-0.25667673,-0.18483159,-0.09593385,0.4109781,0.016505377,0.36034492,0.08143564,-0.24536844,0.23620349,0.530935,0.36933786,0.5485528,-0.04462653,-0.31803066,0.26451492,0.10304349,0.15514094,-0.021231651,-0.44715548,-0.04389047,-0.26074445,0.19844776,0.54377455,0.17140321,0.40928763,-0.18011554,-0.12152607,0.18812567,-0.013264561,-0.09232447,-1.0830518,0.28588396,0.15089403,0.6756732,0.6828306,-0.15600489,0.13145618,0.5239626,-0.31780446,-0.013165257,0.27708334,0.1527105,-0.4023038,0.56570035,-0.69913065,0.3472156,-0.19185546,0.05885361,0.051548615,-0.1265309,0.45902306,0.6872266,-0.11475078,0.14201806,0.11117433,-0.33211413,0.038617577,-0.23370437,0.28640842,-0.5904075,-0.12604566,0.7681118,0.45737177,0.25975296,-0.10525449,-0.020780435,0.030893628,-0.13941264,0.1544198,0.016793652,0.08442474,-0.001874272,-0.5893938,-0.19947465,0.5627163,-0.012686332,0.07876971,0.1373537,-0.3489055,0.20557338,-0.06762676,-0.07237436,0.095301054,-0.61764896,-0.07125201,-0.31373593,-0.33619753,0.397351,-0.09434452,0.2833006,0.07230184,0.13538708,-0.32290548,0.17484656,0.35122678,0.68189424,0.061057623,-0.08613621,-0.27865866,0.14411655,0.34094766,-0.18366311,-0.18878946,-0.30763498,0.05557784,-0.74346584,0.4772175,-0.21118923,-0.099445485,0.1445288,-0.16919571,-0.029838638,0.5827498,0.0030842305,-0.013228234,0.07943283,0.040567648,-0.3330793,-0.1717867,-0.20528507,0.21484931,0.112337306,-0.12462615,-0.15473457,-0.14636944,-0.12066572,0.47746032,-0.027125878,0.3646738,0.3749239,0.019361693,-0.39651874,-0.12591368,0.062291715,0.45725223,-0.08126623,-0.13388042,-0.3203953,-0.4365261,-0.31890836,0.2629835,-0.2174677,0.21566884,0.11795187,-0.17035185,0.8346259,0.15504217,1.1818173,0.13269947,-0.43384492,0.18610962,0.44136757,-0.18752636,0.118563734,-0.39174575,0.94848365,0.4823101,-0.16362663,-0.18257561,-0.44992816,-0.16210744,0.27449158,-0.24670334,-0.30003765,-0.19317304,-0.5915625,-0.31806108,0.21307701,0.25918466,-0.06694648,-0.017112194,0.21997099,0.32686818,0.06714358,0.5871589,-0.47186106,-0.19739914,0.3691806,0.31906167,-0.15938321,0.24092104,-0.42572257,0.49490088,-0.60138327,-0.06905389,-0.34952697,0.119871214,-0.24745147,-0.35414702,0.25524154,0.2659945,0.3101938,-0.29552677,-0.3902588,-0.29511863,0.49690476,0.05319983,0.1654226,0.5050272,-0.2949602,0.01068303,-0.2080835,0.34826916,1.1596997,-0.39844388,0.0759656,0.41052943,-0.21861748,-0.5779503,0.28033364,-0.47762877,0.057766087,0.1265219,-0.35176697,-0.7224608,0.31903246,0.09019544,-0.10927277,0.17181908,-0.4752097,-0.0036741814,0.15710425,-0.11323618,-0.20571221,-0.20047964,0.07624592,0.604118,-0.3983985,-0.36583596,-0.057737943,0.40241414,-0.21814266,-0.5700075,-0.063190274,-0.43687853,0.45748994,0.21196182,-0.23813565,-0.1979235,0.08354017,-0.32345468,-0.08708436,0.24722879,-0.33267602,0.046953846,-0.42980173,0.11706385,0.8398001,0.061413623,0.24224739,-0.58429474,-0.35030687,-0.8670737,-0.36248964,0.41362318,0.20316945,0.059080463,-0.561016,0.06274257,-0.2666556,-0.13404371,0.062445972,-0.64167076,0.46064875,0.21772909,0.4417364,-0.14172767,-0.61113304,-0.040042855,0.15684147,-0.24428567,-0.43143144,0.45454037,-0.0008990049,0.9542457,0.15076715,0.05983252,0.25155714,-0.51944965,0.07338061,-0.2321234,-0.22474174,-0.6803742,-0.049368296,260 +174,0.39854515,-0.31949693,-0.42044643,-0.14191884,-0.40497205,-0.000634106,-0.20158483,0.24661213,0.20996977,-0.30999413,-0.04996912,-0.06920793,0.097448386,0.40844986,-0.07934694,-0.7383902,-0.14641377,0.06198007,-0.6467523,0.4960326,-0.6706474,0.3538545,0.15263276,0.28927884,0.05891486,0.51082784,0.2491085,-0.22560507,-0.06025963,-0.005205405,-0.09603398,0.3606638,-0.570053,0.111130565,-0.028584685,-0.22386725,0.13480815,-0.46473613,-0.24795231,-0.6143523,0.15125373,-0.86816853,0.57338274,0.044244643,-0.19123381,0.017971357,0.11152723,0.40639895,-0.4320567,0.17169945,0.20659722,-0.08899508,-0.09162657,-0.3069416,-0.02023822,-0.34751084,-0.515408,-0.0092617115,-0.5103817,-0.40971452,-0.10463403,0.13569646,-0.3785264,0.016137796,-0.31282654,0.44743448,-0.48267695,-0.06199322,0.267929,-0.30371305,0.39010704,-0.39437434,0.07997365,-0.07996635,0.31524172,-0.012299876,-0.14809947,0.31119257,0.34942093,0.47778416,0.23886786,-0.24603207,-0.073817745,-0.21157883,0.33872166,0.47439444,-0.1651937,-0.45606104,-0.22614613,0.110178456,0.07076116,0.38848764,-0.09846369,-0.37696373,0.060621522,0.07351746,-0.2510707,0.44969627,0.47515038,-0.40392634,-0.29637733,0.19380832,0.6198943,0.13313442,-0.10422173,0.15036227,-0.009155952,-0.611007,-0.1768125,0.25119108,-0.07431939,0.45581606,-0.11774435,0.18201739,0.81777686,-0.12375074,-0.032018688,-0.07254612,-0.14467593,-0.1390777,-0.40739816,-0.1098667,0.07851219,-0.5872488,0.11669038,-0.27329648,0.854009,0.15708086,-0.7049497,0.4404272,-0.5744122,0.1868453,-0.13492166,0.7261303,0.5647978,0.38757178,0.3095292,0.83102477,-0.5361153,0.27166355,-0.11994437,-0.5075179,0.0115268035,-0.14852606,0.15868522,-0.48623303,0.21213913,-0.07590186,0.12883858,-0.17852801,0.32769045,-0.60432035,-0.0154340705,0.054751907,0.8753109,-0.43559986,0.024404483,0.67953676,0.9738911,0.9597904,0.04036309,1.2832097,0.43689486,-0.25103888,0.1878315,-0.43502524,-0.4959845,0.23468615,0.52719665,0.26444247,0.19341113,-0.20466298,-0.09908625,0.39332676,-0.37321976,0.11797578,-0.20663741,0.44835573,0.045358393,-0.08007863,-0.5866963,-0.17350556,-0.025014741,-0.059399556,0.04111537,0.17525864,-0.25121942,0.48362917,-0.054388262,1.3569676,-0.1962942,0.18699868,0.08809892,0.4330614,0.3150807,-0.15319456,-0.07681171,0.3641344,0.53455025,-0.041267533,-0.68409336,0.31401262,-0.27532977,-0.5225836,-0.060763437,-0.41642532,0.028851612,-0.04159134,-0.5005731,-0.09223035,-0.070632935,-0.22929542,0.51425755,-2.7140532,-0.3153155,-0.13975674,0.29227963,-0.3852343,-0.21123835,-0.038709767,-0.49416643,0.21217808,0.30157182,0.4102649,-0.7274265,0.59450036,0.42603657,-0.3764444,-0.17390932,-0.7372965,-0.1208072,-0.09329275,0.49173915,-0.002510663,-0.11242931,-0.30821654,0.095826454,0.8068567,-0.05307043,0.18445832,0.25280422,0.33096966,0.22905843,0.55598414,0.10834336,0.5771697,-0.3093478,-0.11467317,0.40851575,-0.18950336,0.2082661,-0.10068067,0.11816137,0.35770568,-0.43791988,-0.9097879,-0.75963986,-0.5264984,0.9701687,-0.44450653,-0.4154989,0.25742745,0.03341557,-0.008791566,0.06764976,0.4697715,-0.05660772,0.16210356,-0.7310472,0.26002175,-0.051109347,0.15337464,0.086004406,0.0015265067,-0.24200168,0.7205941,-0.0762626,0.6046196,0.25942865,0.2616267,0.017306583,-0.35769564,0.029232617,0.96623063,0.273564,0.05485624,-0.05061458,-0.40061024,-0.012304576,-0.05693058,-0.078440115,0.4866993,0.8737714,0.07059536,0.1347123,0.24153176,-0.13675578,0.08315698,-0.13791667,-0.32946172,0.13272908,0.07357885,0.45402563,0.4940111,-0.19327591,0.5142883,-0.3026428,0.32044843,0.02202793,-0.58140075,0.6258773,0.5843903,-0.27928033,-0.041245136,0.62996083,0.5661051,-0.48083737,0.41452724,-0.7311747,-0.10852659,0.66162044,-0.22707336,-0.3820494,0.18928012,-0.16809079,0.23150438,-1.012798,0.40661258,-0.39933005,-0.4733734,-0.38428408,-0.12369867,-4.1747284,0.21918882,-0.19198272,-0.07464088,-0.16548415,-0.07791347,0.39217624,-0.51166093,-0.49577305,0.13538367,0.17298047,0.47271505,-0.031962488,0.13333513,-0.35198548,-0.031630132,-0.058909312,0.2493844,0.098283775,0.19203418,-0.21878944,-0.38938284,0.0072774114,-0.09061291,-0.5511878,0.2626852,-0.59466016,-0.5275249,-0.07585544,-0.51797915,-0.39512858,0.6713604,-0.20136149,-0.009604925,-0.20681266,0.15069094,-0.29697004,0.3111304,0.102071054,0.26414168,0.15736206,-0.07874925,-0.014716546,-0.41969025,0.3675269,-0.04271612,0.3107292,0.035124667,-0.0066097695,0.12972026,0.4828993,0.5342541,0.059911918,0.9066651,0.34919935,-0.10375222,0.3504372,-0.39478964,-0.26189727,-0.65042037,-0.4953268,-0.14933607,-0.3935006,-0.54528254,-0.04951217,-0.2503833,-0.6750714,0.5809757,0.06422237,0.39362773,-0.1353309,0.3640279,0.5181589,-0.06084277,0.016513169,-0.09614147,-0.21640362,-0.6303667,-0.1785819,-0.7667515,-0.5411535,0.17521726,0.8455888,-0.26131648,-0.023612222,-0.1848362,-0.30242613,-0.09706195,0.10407724,0.12669758,0.3771597,0.3972507,-0.15355596,-0.73481184,0.43552786,0.019319257,-0.15587749,-0.5605556,0.06656809,0.6945178,-0.80398625,0.6628278,0.21386303,0.13108706,0.06495144,-0.48035595,-0.32800153,0.04997618,-0.24481374,0.61271125,0.079529434,-0.75074744,0.5567357,0.53591543,-0.3012161,-0.66531694,0.240387,-0.03731274,-0.23329535,-0.0016895373,0.30346793,0.058050755,-0.020697793,-0.23368518,0.12402377,-0.57978034,0.2892488,0.25020173,-0.11719734,0.32643673,-0.13937221,-0.3277529,-0.76513875,-0.18181656,-0.6157177,-0.1758983,0.38546294,-0.06516182,-0.049209658,0.102656245,-0.1386885,0.47792515,-0.12295531,0.04938961,0.061178997,-0.32394427,0.28593618,0.56822,0.09724588,-0.3406374,0.56845725,0.1709805,-0.17927869,-0.0536055,0.035354007,0.41376957,0.12994194,0.39083487,-0.19877522,-0.24921791,0.49100134,0.8260119,0.16687569,0.60474765,0.032302998,-0.075594775,0.5529327,-0.022021206,0.008203125,0.14780398,-0.25950322,-0.121553,0.13667974,0.11644773,0.48407698,0.3151618,0.3327549,0.14040102,-0.2402638,0.03668656,0.20407058,-0.028532067,-0.9667418,0.45115373,0.2102764,0.7088937,0.5592057,0.059955187,-0.141882,0.65522015,-0.24727294,0.101416,0.35154217,-0.035312973,-0.57646066,0.7957733,-0.64806694,0.3678734,-0.282884,0.034055475,0.03734454,0.107336916,0.35821944,0.92260176,-0.1697898,0.022746328,-0.046497144,-0.11760255,0.100536846,-0.25391808,-0.020476786,-0.4391837,-0.32147706,0.6143013,0.37574694,0.452406,-0.16089305,-0.097701564,0.1386213,-0.12544027,0.3063038,-0.01211744,-0.016661191,0.13067771,-0.5189463,-0.41691485,0.59514415,0.12790872,0.15438583,-0.10721442,-0.38516587,0.22601178,-0.2800626,-0.13765772,0.03086558,-0.48872173,0.059472863,-0.19907953,-0.57638764,0.34279785,-0.2273313,0.07176189,0.059371818,0.044135787,-0.3147344,0.08728452,0.0463625,0.9267508,0.021447368,-0.42566597,-0.46085992,0.021329753,0.24927981,-0.27313823,-0.048897702,-0.2909146,-0.089854114,-0.6253672,0.5699436,-0.09930989,-0.46972162,0.22970441,-0.23726425,-0.10148693,0.5421199,-0.1537151,-0.2631288,0.034579873,-0.20038381,-0.47689798,-0.13489674,-0.15336657,0.24388286,0.2428347,0.040832724,-0.13511038,-0.26601413,-0.105613366,0.5870845,0.042711996,0.4256231,0.24524614,0.07617664,-0.2706221,-0.03276186,0.29923686,0.32237035,0.14082012,-0.014102356,-0.3442066,-0.43157712,-0.23365612,-0.04762449,-0.05764636,0.32549888,-0.12530217,-0.46219364,1.1343471,-0.011039957,1.3147517,0.0816832,-0.18253957,0.052665066,0.49060276,-0.046121337,0.032419704,-0.38227132,0.867643,0.5790993,-0.04679983,-0.08326141,-0.6106401,-0.14452332,0.2211021,-0.31996307,-0.078929946,-0.12904592,-0.6251211,-0.46294576,0.2749218,0.2517492,0.19971351,0.06310515,-0.050263762,-0.009624531,-0.013649178,0.46762612,-0.5929326,-0.1551886,0.16574804,0.24161483,-0.059145164,0.11111625,-0.37831873,0.30632198,-0.60827166,0.28771108,-0.40060434,0.060224686,-0.12670586,-0.26670286,0.09174678,-0.2120812,0.22105609,-0.22070451,-0.5143855,-0.03606973,0.56180054,0.09611294,0.064374164,0.9076698,-0.28811163,0.09321664,0.20848192,0.59742725,1.2591527,-0.333097,-0.0141376285,0.26976204,-0.3441072,-0.7044646,0.38439733,-0.16574217,-0.027584163,0.0061233956,-0.45420876,-0.37023297,0.26379895,0.23896927,-0.100680485,-0.064631976,-0.4757747,-0.22716874,0.4217528,-0.21565439,-0.23484391,-0.2856897,0.4605726,0.724259,-0.36010176,-0.2558837,0.072730176,0.25333473,-0.44898662,-0.565463,-0.15555845,-0.18552424,0.3857055,0.11377961,-0.25642413,0.1030643,0.21074966,-0.43945435,-0.06548255,0.23251635,-0.3773958,0.14912178,-0.07444978,-0.20020536,0.8685221,-0.21527927,-0.26849702,-0.6468773,-0.49238876,-1.0080402,-0.4962184,0.46042714,0.1020016,0.089964055,-0.45852533,0.16989355,0.047534164,-0.038736265,0.10206782,-0.6084553,0.37822732,0.046860162,0.622101,-0.20924921,-0.747234,0.05528978,0.20994097,0.031677485,-0.6085888,0.7547904,-0.09436391,0.8059397,0.027845317,0.011132193,0.00980165,-0.42127186,0.03354852,-0.46618184,-0.23757423,-0.929244,0.06694234,262 +175,0.4895142,-0.29338995,-0.43011734,-0.095764,-0.18130426,0.06746672,-0.12959118,0.2935025,0.21397495,-0.49913463,-0.120906845,-0.17982438,-0.065820865,0.2620794,-0.13221322,-0.7754059,-0.037267882,0.24317743,-0.5677815,0.6846857,-0.23149373,0.20405227,-0.011140802,0.28347367,0.047146685,0.17062584,0.23633619,-0.18140183,0.1024439,-0.16180502,0.00068882306,0.18450521,-0.56392616,0.37964672,-0.06794916,-0.26951945,0.071463235,-0.3681949,-0.24637628,-0.6834444,0.15395276,-0.7577144,0.42906672,0.11660405,-0.21433266,0.104009666,-0.0073500634,0.46680897,-0.3185916,0.15808342,0.19241302,-0.16901465,-0.09989525,-0.20178474,0.011924896,-0.4525749,-0.48541507,-0.057042904,-0.36651528,-0.28800467,-0.19582608,0.18268685,-0.3641605,-0.10609808,-0.01128706,0.5162176,-0.4290566,0.061918903,0.30354854,-0.3247864,0.40288442,-0.4682314,-0.1265811,-0.047158726,0.33651537,-0.16647683,-0.17802833,0.21434812,0.15847273,0.5757656,0.0966553,-0.13774627,-0.10466838,-0.08449886,0.20932989,0.5960692,-0.18970199,-0.5161407,-0.09592285,0.123860665,0.06675765,0.060558327,0.039786123,-0.46965653,-0.09256715,0.02236254,-0.058782935,0.32851246,0.471878,-0.34197867,-0.18786392,0.37526074,0.5883218,-0.02575525,0.0028774163,0.05186517,0.0864784,-0.4308423,-0.23135096,0.1270663,-0.23365659,0.48862365,-0.10982189,0.2858129,0.71035063,-0.13555638,0.08484833,0.03924937,-0.062248614,-0.1599753,-0.21310133,-0.24385315,0.4026647,-0.4202413,0.07110631,-0.18890204,0.80990803,0.20797463,-0.80622834,0.317107,-0.52360314,0.10636572,-0.21898133,0.4894146,0.59320647,0.36073345,0.13472532,0.7232396,-0.6034671,0.09419422,-0.053199515,-0.5027944,0.039192606,-0.097545594,-0.12823404,-0.55938214,-0.0346472,0.032444235,0.008783877,-0.07255669,0.1406393,-0.69873196,-0.09153329,0.08360965,0.80143356,-0.3157379,0.088105984,0.5662004,1.0382997,0.79493725,0.007740891,1.233806,0.16836277,-0.34838662,0.17811917,-0.23952405,-0.60802853,0.28788093,0.4914901,-0.050266195,0.20207071,0.06798521,-0.06542299,0.3591213,-0.3736896,0.0871129,-0.12892708,0.2091151,-0.084848635,-0.20912515,-0.5048595,-0.029320879,-0.027148671,0.07965973,-0.034141507,0.22361952,-0.14607984,0.2981707,0.117613725,1.6335355,-0.14051925,0.23887597,0.11142505,0.30436692,0.124728896,-0.047083296,-0.048821855,0.28577983,0.35031852,0.17317057,-0.55701935,0.09975269,-0.17887929,-0.40900266,-0.23118116,-0.17369734,0.05427031,0.0042212238,-0.42228448,-0.0025346293,-0.08516648,-0.24176066,0.47228673,-2.796074,-0.21380334,-0.24067035,0.43532684,-0.36784238,-0.29132345,-0.08732107,-0.38222736,0.34946424,0.35248235,0.48922437,-0.713931,0.42013866,0.3706726,-0.53444165,-0.13364854,-0.5018858,-0.1123082,-0.085258074,0.45583394,0.09157764,-0.15620977,-0.07731378,0.22672383,0.38926363,-0.12760444,0.15110752,0.2593682,0.36446163,0.14004064,0.48953468,0.03642518,0.40120652,-0.24207045,-0.1413386,0.37766474,-0.13981324,0.09625551,-0.028750174,0.10641294,0.287666,-0.41190383,-0.9101171,-0.8099467,-0.3015618,1.0545942,-0.19258496,-0.4558322,0.17784935,0.1267425,-0.24093446,-0.03575539,0.26912275,-0.016328914,0.07953824,-0.9619328,0.15796742,-0.046924625,0.2548037,0.1884324,-0.26751488,-0.5821126,0.6791751,-0.15438484,0.5649385,0.4699059,0.29640993,-0.009609517,-0.43074924,0.066007525,1.1014255,0.3610455,0.101264074,0.0023043274,-0.07245525,-0.21859337,0.03496428,0.093789004,0.5113827,0.7803335,-0.020476703,0.031403463,0.32878953,-0.0927852,0.13436331,-0.17413148,-0.37786,-0.06418859,0.029523714,0.50853074,0.53147626,-0.1680238,0.3503071,-0.008236822,0.39662617,0.028020648,-0.4095123,0.563509,1.1293701,-0.15785262,-0.21703236,0.48293772,0.3986792,-0.17064577,0.32663023,-0.63981134,-0.33301964,0.44950244,-0.20592831,-0.48906276,0.12711735,-0.3485961,0.33200276,-1.0084416,0.4822087,-0.48939437,-0.5152173,-0.56293887,-0.14377159,-3.3964076,0.22458868,-0.4233803,-0.16243865,-0.0026928266,0.048490364,0.289489,-0.74366283,-0.38233376,0.19624391,0.110147156,0.5101598,-0.054138638,0.23692387,-0.24729171,-0.11950539,-0.03637668,0.21833754,0.20551196,0.114072956,0.07244652,-0.47245967,-0.017226402,0.10164718,-0.28639096,0.13833833,-0.658465,-0.4916267,-0.19558096,-0.51441747,-0.25448734,0.6308563,-0.26624253,-0.11343262,-0.1414903,0.06755246,-0.20211795,0.30897844,0.06273147,0.11167472,-0.06443836,0.07499678,-0.14999872,-0.28579223,0.3083561,0.048184957,0.25594527,0.1456043,-0.3881819,0.088669695,0.5238076,0.46438962,-0.078230746,0.6799039,0.60678136,-0.11053631,0.30307674,-0.29946372,-0.28119615,-0.66184795,-0.46491712,-0.08898726,-0.35746524,-0.44955513,-0.056545086,-0.361028,-0.762071,0.56046736,0.006418407,0.098911,0.016338443,0.19083217,0.5231828,-0.14956443,-0.07146043,-0.06104723,-0.1859334,-0.5823805,-0.15671326,-0.59915024,-0.47919285,0.22348915,1.016384,-0.21472557,0.052518003,0.066442214,-0.11954965,0.058807354,0.18121888,-0.028044699,0.23147802,0.45162895,-0.1384271,-0.59058577,0.51244646,-0.0020618017,-0.18252203,-0.7220408,0.13921706,0.6006069,-0.567733,0.4586108,0.26846394,-0.0045870603,-0.0019462983,-0.38138026,-0.16696136,0.02401712,-0.22676796,0.3510769,0.010516198,-0.53880906,0.395717,0.34224945,-0.21329117,-0.7340061,0.5441916,0.0036883333,-0.23295586,0.09429432,0.25555056,0.041355554,-0.101726845,-0.23253827,0.29449335,-0.48768297,0.28150907,0.13457243,-0.15266106,0.33023897,-0.15395112,-0.121400826,-0.7816534,-0.08913364,-0.5940749,-0.25817338,0.25341722,0.12898225,-0.0015512545,0.18762429,-0.03481652,0.4415388,-0.294138,0.09197469,0.025312642,-0.3723974,0.34864643,0.49908352,0.28840795,-0.42281356,0.54738784,-0.009646916,-0.0626234,-0.32065102,0.12861022,0.5680496,0.21339935,0.3828612,-0.15905373,-0.14518149,0.391503,0.72381324,0.19875552,0.51210374,0.0856314,-0.064049475,0.24716514,0.12505263,0.12807468,-0.015067053,-0.5111853,0.11650833,0.078442015,0.17221245,0.43897778,0.22461838,0.3298325,-0.079856604,-0.54807156,-0.008352783,0.27254286,0.07580965,-1.047095,0.33553636,0.19191168,0.7011975,0.59280384,0.010207955,0.10984766,0.57947665,-0.16229996,0.11157452,0.30103353,-0.13792774,-0.45798743,0.5242257,-0.69136506,0.2656222,0.00019705296,-0.04789816,0.014143201,0.030337684,0.20894416,0.63422775,-0.07911084,0.10062941,-0.20469227,-0.20575762,0.0137912175,-0.3290691,0.083909295,-0.42280146,-0.3213023,0.6271253,0.5936279,0.32304943,-0.20368738,-0.01607216,0.061621238,-0.05862346,0.30982164,0.033732597,0.13947207,0.09899362,-0.649602,-0.25718084,0.62185895,-0.05212075,0.022457393,-0.04305704,-0.20353368,0.26417476,-0.11120951,-0.019332035,-0.07614072,-0.53002244,0.05056756,-0.2834736,-0.13672669,0.6702764,-0.09852599,0.1759963,0.11497666,0.07914033,-0.14238434,0.1857983,0.07801273,0.7112854,0.25613752,-0.23767538,-0.53840774,0.03487587,0.04575965,-0.124032624,-0.03445673,-0.3548455,-0.017507546,-0.70104736,0.43876973,0.089888334,-0.1840279,0.33570644,-0.1774189,-0.011128541,0.52226156,-0.08896633,-0.18708672,0.10386754,-0.04162865,-0.23789702,-0.3069515,-0.12071499,0.22838749,0.1668053,0.22782122,-0.058256205,-0.023033356,-0.324519,0.39605764,0.22499739,0.3601993,0.33293256,-0.0020681422,-0.30892804,-0.093519196,0.20089372,0.27811795,-0.05673066,-0.1107234,-0.18192582,-0.5893775,-0.38908243,-0.13616124,-0.1277634,0.2339062,0.03480949,-0.2336041,0.7567647,0.04448085,1.2322123,-0.04609133,-0.2644611,0.042163834,0.5380977,-0.0057967105,-0.07900141,-0.30357686,1.029341,0.79063237,0.08655501,-0.12622698,-0.28013203,-0.22021346,0.06651563,-0.22174476,0.036319353,0.026857398,-0.5640405,-0.4578345,0.25090817,0.27743536,0.1076491,-0.089009896,-0.06275676,0.17187439,0.0014627735,0.2038243,-0.5492824,-0.21006377,0.15288404,0.3188575,0.06753626,0.15280706,-0.45622918,0.4565792,-0.49742663,0.073463134,-0.40795314,0.08946298,-0.096798845,-0.14096016,0.13517761,-0.025012696,0.33480084,-0.29539493,-0.3417171,-0.10448189,0.47784021,0.16410993,0.056099143,0.7629337,-0.19295433,0.10947601,0.03940787,0.41585886,0.9365104,-0.37217146,0.028399674,0.42416313,-0.394293,-0.56222916,0.18229252,-0.26523402,0.18273804,-0.09064816,-0.35357246,-0.4583772,0.202368,0.13854745,-0.077139966,-0.0092355255,-0.71526206,-0.13791175,0.32774657,-0.49720412,-0.26497194,-0.2315618,0.25933683,0.6131727,-0.3820639,-0.42115057,0.13172922,0.19271186,-0.113201536,-0.65272605,-0.20351133,-0.3459418,0.29279107,0.2033396,-0.349616,-0.07901616,0.11533293,-0.30938584,0.048928134,0.15113804,-0.37352258,0.009298013,-0.3501752,-0.16533707,0.8249993,-0.03553211,0.031087661,-0.7273216,-0.20191832,-0.90169305,-0.48497888,0.5696574,0.16400889,0.095435,-0.54369354,0.022447824,-0.0043430687,0.013435232,-0.18583913,-0.30299494,0.39527795,0.13986634,0.58321923,-0.2297597,-0.8090556,0.1291871,0.2373676,-0.12473986,-0.6230248,0.42312035,0.0023653985,0.85093176,-0.041884884,0.075425915,0.2695066,-0.64803225,-0.1503539,-0.31771126,-0.22487068,-0.669873,-0.0033644119,264 +176,0.33543125,0.038509443,-0.5511783,-0.16154903,-0.4019458,0.2131656,-0.35244113,0.22591016,0.15751213,-0.12894495,-0.16564336,0.13520412,-0.10746977,0.10811976,-0.09343075,-0.6635283,-0.11273635,0.053083654,-0.70350367,0.44928932,-0.39858848,0.5150918,0.102440245,0.35850528,0.056185532,0.33362362,0.20259193,-0.03787496,-0.15623602,-0.22624655,-0.23858987,0.36246482,-0.5784988,0.16607372,-0.28399208,-0.2709213,0.20082751,-0.36910668,-0.18946394,-0.7251998,0.030153103,-0.8647067,0.53674465,-0.19487973,-0.17645384,-0.038083266,0.34306067,0.27273205,0.012407986,0.12851661,0.23046026,-0.2990268,-0.12001557,-0.37371275,-0.27787292,-0.6706305,-0.32626212,-0.07251504,-0.9007455,-0.2204381,-0.10238172,0.25976267,-0.3565553,-0.19005013,-0.19842486,0.2712668,-0.3279552,0.033059463,0.1930953,-0.35549292,0.19648038,-0.5857957,0.12253116,0.04838705,0.49117675,-0.08075917,-0.15545015,0.39436337,0.32871303,0.2215175,0.2585824,-0.31664678,-0.28446123,-0.1392918,0.104020044,0.44588688,-0.28305295,-0.10536039,-0.27353486,0.17291382,0.6992802,0.5527161,-0.002255853,-0.117531225,-0.0570062,-0.09550647,-0.12639502,0.6676417,0.499506,-0.31558636,-0.22796421,0.5628822,0.48600137,0.38726503,-0.29599288,0.06975685,-0.15641509,-0.39554846,-0.046724375,0.2620648,-0.038356196,0.2632372,-0.023431571,0.10959825,0.7083622,-0.06584742,0.086468935,0.0090948185,-0.038812567,-0.05701039,-0.21047926,0.058407284,0.17394583,-0.547393,0.07352491,-0.2128322,0.7429382,-0.12210369,-0.6467542,0.28712374,-0.6068653,0.08621485,0.037378073,0.55171925,0.6004361,0.6098369,0.047339376,0.84584314,-0.18792626,0.13041328,-0.116672404,-0.38986132,0.10543515,-0.17903751,-0.0048074285,-0.5729917,0.16254574,-0.17000344,0.17900531,0.07899931,0.5048089,-0.6085005,-0.2194124,0.23037829,0.9697094,-0.29339167,-0.2303742,0.633062,0.9991812,0.7586707,-0.16247742,0.8835355,0.19177602,-0.08505611,-0.23614877,-0.22106346,-0.44695517,0.19701909,0.48475143,-0.28398374,0.3872375,-0.16042088,0.022537705,0.07446912,-0.12503494,-0.29758316,-0.10114827,0.25537986,0.1442949,-0.14138147,-0.313969,-0.1253262,0.07566101,-0.1296441,0.26328644,0.26022843,-0.23864917,0.347635,0.011547514,1.0659124,-0.1498968,0.08222203,0.21403731,0.46816933,0.527325,-0.045296006,0.18232705,0.5190685,0.33726475,0.032241743,-0.5194307,0.32983908,-0.5567238,-0.48484918,-0.11843201,-0.325229,-0.29868945,0.33331266,-0.4883491,-0.03586537,0.07483346,-0.2131996,0.4780217,-2.7287874,-0.20778589,-0.22884917,0.26809612,-0.42836004,-0.286893,-0.099240765,-0.51313883,0.27965716,0.23861817,0.485424,-0.44104654,0.3397486,0.489248,-0.5781179,-0.20229721,-0.5907551,0.08774522,0.04618965,0.4724197,-0.01535734,-0.20449114,0.02181304,0.14395393,0.67859113,0.11048896,0.14033714,0.44562158,0.46682623,0.005144426,0.21460356,-0.06704881,0.63990176,-0.1727981,-0.3177033,0.44272587,-0.26285484,0.4191109,-0.10700419,0.10014396,0.5975621,-0.30936012,-0.95888436,-0.48527515,-0.27416843,1.1898066,-0.42531985,-0.49116218,0.014080023,0.17727938,-0.13734478,0.13102095,0.5723787,-0.16844593,0.21592961,-0.5181468,0.09251539,-0.21518707,0.27320015,-0.029799897,0.00032635828,-0.20499822,0.6592369,-0.101637006,0.4892215,0.10027279,0.398733,-0.19747883,-0.4030875,-0.04105842,0.80286014,0.52095264,-0.092387706,-0.24028735,-0.2681636,-0.07398916,-0.08113572,0.13750753,0.6594809,0.66844994,-0.0190599,0.07058319,0.37051854,0.051433675,0.09494688,-0.20177661,-0.33395353,-0.13095336,0.07984645,0.42965683,0.4891213,0.016143251,0.55504835,0.010834223,0.2610712,-0.20557672,-0.63507766,0.6631904,0.5964723,-0.39740813,-0.1916378,0.618882,0.27906463,-0.3627743,0.3797497,-0.70484585,-0.30251476,0.6867346,-0.30391905,-0.60965836,0.1725893,-0.18230067,0.080470696,-0.7324347,0.33101144,-0.3871259,-0.4862431,-0.3554818,-0.101147585,-3.006986,0.049614284,-0.071625695,-0.084347576,-0.4593368,-0.19580011,0.32251146,-0.59885734,-0.6215052,0.031180209,0.12102529,0.62020683,-0.30772915,0.14453574,-0.30433884,-0.30990374,-0.087700725,0.36918387,0.13129093,0.19790694,-0.21741958,-0.16152042,-0.028144391,-0.0036711171,-0.46885183,0.2300672,-0.4091257,-0.3139504,-0.051841043,-0.39987782,0.03243462,0.4754259,-0.57086974,0.1904602,-0.22253452,0.29559854,0.009829649,-0.021320796,0.29328367,0.2586501,0.23301926,-0.15201983,0.1334527,-0.39447954,0.58822507,0.03777269,0.45150813,0.1746022,0.10972321,0.1271058,0.49453157,0.46608987,-0.2890664,0.9509446,0.089457236,-0.028316578,0.26609218,-0.28616163,-0.3112919,-0.69388074,-0.3212714,0.0039833607,-0.4481277,-0.49943265,-0.05062817,-0.27826282,-0.8944204,0.528919,0.04406418,0.6372233,-0.18992598,0.5417085,0.49762794,-0.30077258,-0.06031398,-0.02064567,-0.16898872,-0.40446845,-0.3760393,-0.6518868,-0.54263824,0.14894484,0.8512155,-0.43078765,0.07061676,-0.026559195,-0.0035037498,0.0943905,-0.103010304,0.095114574,0.055546377,0.49318746,0.055221993,-0.5414438,0.24795116,-0.13193664,-0.055859998,-0.5192691,0.30980644,0.603246,-0.63198036,0.38020977,0.41657394,0.08541563,-0.19581155,-0.7128447,0.03516179,0.14846468,-0.20446211,0.46737602,0.19292638,-0.79826456,0.48665315,0.10378923,-0.48930866,-0.6559483,0.33356714,0.053075746,-0.30624437,-0.052323055,0.5057304,0.27564156,-0.23561001,-0.09844845,0.1349033,-0.41424516,0.37689108,0.21053235,-0.060056046,0.32778308,-0.20047794,-0.47685316,-0.77953035,0.07059983,-0.57462555,-0.356717,0.34519,-0.17522141,-0.06890944,0.156712,0.069325946,0.48182628,-0.23172814,0.18346022,0.030629901,-0.21773608,0.53088444,0.44359916,0.49480724,-0.37976456,0.4063438,0.21900596,-0.3297206,0.37784413,0.18442623,0.5189732,0.0025991797,0.23894499,0.0062931855,0.015091014,0.40569344,0.5611267,0.20652172,0.33582917,-0.10911742,-0.20798923,0.27956542,0.0061796904,0.22058773,-0.18528949,-0.508921,-0.16750146,0.0056036157,0.06702502,0.65625745,0.22703613,0.3211134,0.18473168,-0.042759765,0.17044057,0.21077044,0.021525541,-0.8962115,0.35356444,0.3229489,1.0132148,0.09610876,0.23270363,-0.13698448,0.63049203,-0.2693381,0.06883137,0.47645944,0.14808497,-0.35678375,0.68042094,-0.6282442,0.34277728,-0.08722082,-0.067125395,0.19484851,0.09399101,0.33486253,0.94895375,-0.2243475,-0.05598475,-0.122168384,-0.17258969,-0.10804725,-0.062399514,0.083642654,-0.35935575,-0.46629485,0.5629547,0.30126092,0.32842624,-0.39469126,-0.08674454,-0.018730603,-0.20982365,0.17923428,-0.07819184,0.1654236,-0.059038617,-0.14173113,-0.23445146,0.5891112,0.060344253,0.11305191,-0.13288172,-0.15390533,0.006543088,-0.17129874,0.16178355,0.100114614,-0.5490568,0.02159946,-0.15568762,-0.64273345,0.2989898,-0.41532275,-0.005283153,0.13717124,-0.102240734,-0.08364304,0.286652,0.20419486,0.6738803,-0.073088184,-0.2763922,-0.43195668,0.23094667,0.17019787,-0.22813776,0.10006025,-0.19885081,0.119339384,-0.591258,0.40872127,-0.33942205,-0.46602526,0.058411513,-0.35953325,-0.15763906,0.45093155,-0.009018417,-0.10719221,0.17640534,-0.19396333,-0.44545138,-0.0055844425,-0.3292614,0.07362769,0.12628485,-0.22129449,-0.313116,-0.28727785,-0.30086577,0.17086884,-0.009100312,0.3519711,0.24853177,0.057972386,-0.26377138,0.045879956,0.29166776,0.36902612,0.106064275,0.24172334,-0.279746,-0.49805304,-0.38943145,0.24105437,-0.17148,0.19336864,0.07475156,-0.3573119,0.92691296,-0.059492763,1.1421237,0.051532935,-0.32640526,-0.06905996,0.6387464,-0.032478757,-0.017193783,-0.42266136,1.0496633,0.5921971,0.025864696,0.013797951,-0.2605127,-0.11229912,0.112390995,-0.40254968,0.013923287,-0.009252536,-0.5479622,-0.36634558,0.2633103,0.21926981,0.03940038,-0.017419461,-0.16917577,0.26498458,0.14634648,0.31913802,-0.61943024,-0.37827295,0.22876242,0.15628345,-0.24314196,0.23773588,-0.38771507,0.3407012,-0.7793377,0.12259688,-0.5063927,0.17561351,-0.08553517,-0.3779815,0.17729661,-0.27462584,0.31980452,-0.23375298,-0.45545676,0.047503598,0.21327002,0.09589898,0.10660746,0.5125672,-0.24471322,0.1739366,0.1357047,0.5714054,1.2438492,-0.31559798,-0.02150717,0.2796621,-0.3708644,-0.5935123,0.2332439,-0.49017587,-0.007828562,-0.12626635,-0.45546728,-0.1258532,0.24487768,0.08600057,0.200725,-0.015120292,-0.6856648,0.16747841,0.14033459,-0.28933463,-0.11614492,-0.11918925,0.444698,0.89680964,-0.27814877,-0.351798,0.045781843,0.34794775,-0.2217103,-0.5377565,0.11107335,-0.12985498,0.23396228,0.1317945,-0.39595887,0.02568899,0.18287484,-0.47354606,0.16731198,0.26889223,-0.24022913,0.07901821,-0.0010414998,0.16081661,0.64336723,-0.34104827,-0.20272551,-0.600672,-0.49662146,-0.8616828,-0.51999414,-0.12416803,0.30463612,0.012962723,-0.55667424,0.041924775,-0.3974617,-0.2695165,0.0011483788,-0.5236296,0.2552316,0.16909094,0.7052005,-0.48375008,-0.97589177,0.2220786,0.062230572,-0.10222726,-0.7096885,0.5777778,-0.23208007,0.79673743,0.036858644,-0.21589524,0.12009928,-0.5521505,0.1633705,-0.4991145,-0.16155474,-0.92062706,0.24230862,276 +177,0.5132426,-0.20587578,-0.3901839,-0.2412356,-0.24393067,0.39925066,-0.25731725,0.29161617,0.28347427,-0.2237842,0.042324033,0.00796235,-0.17334096,0.30158898,-0.22034216,-0.8733032,-0.044877674,-0.106335245,-0.727639,0.55040646,-0.536184,0.4215876,0.05436675,0.24298699,0.063174464,0.24662942,0.29546687,-0.008082262,-0.09463754,-0.13092825,0.075741895,0.34293702,-0.6828794,0.20223314,0.06926853,-0.13060787,-0.09727914,-0.38909715,-0.2259853,-0.76032215,0.4649068,-0.6127435,0.4659317,0.05390032,-0.38728186,0.17444697,0.14786415,0.08607909,-0.3006141,0.025280707,0.24975269,-0.2467665,-0.010213274,-0.11135366,-0.1319678,-0.6110503,-0.6416544,-0.040125377,-0.76969075,-0.10681126,-0.25459424,0.25161105,-0.41886976,-0.17956187,-0.13852994,0.6892612,-0.3669843,-0.09188948,0.3473404,-0.30912212,0.044397715,-0.6944335,-0.10379167,-0.1292716,0.24683383,0.16167362,-0.18021949,0.38695845,0.29503724,0.535183,0.14452846,-0.48207992,-0.25937566,-0.2070062,0.14108585,0.36160058,-0.03160562,-0.43593714,-0.2560727,-0.03251125,0.29550898,0.20135999,0.12429092,-0.24531978,-0.012790878,0.016006334,-0.06621535,0.61221343,0.5640994,-0.387051,-0.34615728,0.42913282,0.5262897,0.1473206,-0.15154754,0.02895058,-0.14032859,-0.52704656,-0.19446765,0.34909722,-0.101721086,0.4523492,-0.18139654,0.096976675,0.77542037,-0.25458872,-0.008484292,0.09078132,-0.024049483,0.03733647,-0.10252043,-0.04893371,0.1647776,-0.45635742,-0.12939726,-0.34368333,0.75230044,0.1203841,-0.6927091,0.3537046,-0.3526699,0.18484922,0.071612395,0.7678453,0.9193726,0.38251457,0.17822312,0.946641,-0.3926426,-0.000978748,-0.019753141,-0.3224481,0.112134345,-0.17167841,0.23270443,-0.5566718,0.14183864,0.069354214,0.04813111,-0.031996045,0.42497545,-0.5611543,-0.23296185,-0.010238314,0.4793445,-0.3037173,-0.13534458,0.7630006,0.97525734,0.9795694,0.012947644,1.2053457,0.23352405,-0.015832882,-0.026243674,-0.4322437,-0.45202303,0.24137177,0.3137619,0.38520396,0.44438535,0.021034218,-0.029526567,0.46939087,-0.3312748,-0.071022585,-0.0264953,0.46918732,0.085844584,-0.10035101,-0.25377408,-0.17067783,0.22501001,0.08130493,0.13198854,0.31479844,-0.24192633,0.4161291,0.06829448,0.97594833,-0.07449393,0.13565117,-0.047887847,0.3214164,0.23118669,-0.03191447,0.023400612,0.4397331,0.2998662,-0.036961015,-0.6401757,-0.01880515,-0.457332,-0.4039549,-0.13655359,-0.41046378,-0.16823,-0.103345625,-0.3396191,-0.16209862,0.07606958,-0.33256614,0.45615566,-2.6572392,-0.16587977,-0.21225865,0.2813782,-0.21570824,-0.27806014,-0.2807869,-0.5573687,0.25697103,0.48155424,0.38563377,-0.6522633,0.26978585,0.37587655,-0.45114416,-0.015762258,-0.6695892,0.04987555,-0.13787104,0.5596818,-0.066107996,-0.1983503,-0.055582453,0.33930275,0.72405994,0.2550672,0.078760415,0.22717243,0.55605197,-0.27838224,0.4711117,0.0078393305,0.5136975,-0.3132081,-0.15201798,0.46184438,-0.5960289,0.49233726,-0.08831741,0.1466934,0.46444505,-0.19580005,-0.8545135,-0.46870872,-0.2874146,1.333673,-0.42085066,-0.43180797,0.1972736,0.05303342,-0.09780001,0.0027299703,0.57072324,-0.023710625,0.081436664,-0.62824,0.020608593,-0.14423643,0.028404547,-0.25283945,0.3158379,-0.35098475,0.7451233,-0.12275295,0.47222778,0.24566802,0.16337799,-0.37466052,-0.47009212,0.03464221,0.91788226,0.47718492,0.01657589,-0.13197379,-0.28237692,-0.20428911,-0.30742452,0.06220662,0.7105649,0.73922265,0.076974966,0.18953416,0.33062685,-0.23355958,0.12659429,-0.14891662,-0.3054681,-0.17716987,0.1363612,0.55385953,0.4752838,-0.28468698,0.33622074,-0.009770856,0.11494614,-0.09708508,-0.5608517,0.41417858,0.699519,-0.2834793,-0.16404317,0.41584572,0.3335398,-0.45121717,0.54796016,-0.54365546,-0.3932008,0.71455234,-0.11055014,-0.48109868,0.12316526,-0.3425978,-0.0123076625,-0.79703003,0.38817507,-0.1988403,-0.5236714,-0.5063587,-0.2820915,-3.331853,0.08064154,-0.27766138,0.037978698,-0.20509528,-0.13586071,0.2268392,-0.61930925,-0.513817,0.0138741415,0.07790586,0.5102366,-0.1789302,0.0184834,-0.2572586,-0.3141631,-0.2526747,0.31857154,0.035693742,0.2772145,-0.11749828,-0.2557749,0.32434577,-0.17018303,-0.40718,-0.05230306,-0.41587108,-0.65853083,-0.0011490623,-0.5184734,0.01192869,0.74394625,-0.35671866,-0.030122865,-0.24626032,0.07804727,-0.00026202004,0.2609492,0.18104966,0.19494042,0.12018696,-0.15321824,-0.11434846,-0.42171523,0.3421604,0.031583305,0.36047807,0.6110965,-0.09337635,0.304142,0.59849226,0.5835696,0.028246025,0.854369,-0.01091819,-0.13554773,0.37443766,-0.19709644,-0.2183368,-0.68523675,-0.4378171,0.015339887,-0.5122446,-0.4437746,-0.2666145,-0.38447347,-0.85098904,0.4159736,-0.06533666,0.4061047,-0.42533195,0.3966714,0.39035594,-0.1683461,0.08790496,0.01850239,-0.33836567,-0.45986626,-0.4007395,-0.6232507,-0.5488692,0.29567567,0.88755393,-0.34217393,-0.27772823,-0.11944563,-0.20459591,0.09571756,-0.008734749,0.3102327,0.10735848,0.2831952,0.118569754,-0.67955714,0.49569565,-0.27401918,0.07179336,-0.5452168,0.09754805,0.5681012,-0.57963437,0.5604995,0.44597244,0.08912226,-0.015874136,-0.67706126,-0.1200792,0.29654044,-0.16434231,0.5327744,0.20113815,-0.5368748,0.48498413,0.048200972,-0.25186262,-0.5629016,0.5145111,0.045202628,-0.14632536,0.07734146,0.530969,0.18993686,-0.06424959,-0.044612598,0.36971715,-0.57754415,0.38835323,0.19594008,0.062162016,0.47674438,-0.08119988,-0.5130247,-0.6801052,-0.18328567,-0.66725415,-0.2827238,0.19990936,0.06278723,0.13279694,0.13580634,0.09079407,0.5688021,-0.19664091,0.13163643,0.054525163,-0.30664256,0.68665427,0.59762025,0.4121626,-0.4478312,0.64102435,0.18883155,0.01683959,0.11263867,-0.07880899,0.5309664,0.1732941,0.3731361,-0.0074408976,-0.02134178,0.25544256,0.53518695,0.2658208,0.30992278,0.07551976,-0.3537544,0.25738394,0.0839535,0.17646927,-0.18010172,-0.31927994,-0.1211717,0.105960384,0.14130113,0.4943615,0.16256252,0.3095831,0.098240234,-0.04783873,0.19616003,0.13036211,-0.1799563,-1.1561196,0.30986378,0.2731009,0.70911,0.3820366,-0.03535957,0.060739633,0.4144227,-0.40574,0.023383278,0.54711056,0.048393328,-0.4921479,0.55603725,-0.45903784,0.6006287,-0.2928588,0.060450904,0.06523884,0.2469431,0.3841678,0.8371367,-0.1551505,-0.13161825,-0.09407434,-0.37745965,0.3070138,-0.30082285,0.2815529,-0.53809905,-0.23754588,0.5309729,0.4298221,0.24465384,-0.15604068,-0.14541125,-0.0050073387,-0.2624923,0.17966333,-0.26208237,-0.070440575,-0.24256884,-0.62370074,-0.31497005,0.37804762,-0.1987588,-0.003043727,0.07430612,-0.19203536,0.2469234,-0.09140722,-0.036367543,-0.07857403,-0.74862665,-0.13815647,-0.25521123,-0.66385144,0.3561737,-0.53617823,0.26559445,0.35749295,0.041519698,-0.46255904,-0.025266973,0.12219657,0.7569516,-0.0655088,-0.21550855,-0.4527476,0.08227395,0.23592806,-0.3791856,0.040995333,-0.23261572,0.31428868,-0.5093518,0.4422526,-0.38087174,-0.29162642,-0.11539249,-0.28892526,-0.15853582,0.53647345,-0.33733508,-0.103839144,0.01812039,-0.15026553,-0.1435112,0.10919941,-0.39763257,0.31951335,0.048328295,-0.0019010444,-0.08278193,-0.1690273,-0.009087475,0.29380593,0.08322593,0.0074851355,0.4125576,-0.036427684,-0.47089857,0.028511949,0.20993654,0.49234647,0.30072436,0.0037050168,-0.37684292,-0.38824204,-0.44761154,0.47376123,-0.19093736,0.15015984,0.11013939,-0.47826445,0.86020446,0.11699426,1.1934065,0.1334456,-0.3478367,-0.055123515,0.70976615,0.13382418,0.06970655,-0.31506407,0.97371763,0.5232597,-0.16681153,-0.12662353,-0.5190557,-0.034099396,0.24728544,-0.43375424,-0.18749514,-0.2576766,-0.6647925,-0.13663583,0.19539373,0.117346145,-0.005953312,-0.1429073,-0.3090266,0.11074201,0.21077436,0.5073777,-0.6357212,-0.13509555,0.27108485,0.059121355,-0.08224145,0.24405119,-0.39317033,0.42754677,-0.8660352,0.2708903,-0.33283654,0.119829245,-0.13466407,-0.29626915,0.27971324,-0.01632762,0.2503793,-0.2724839,-0.56911534,-0.09241776,0.54152095,0.35062817,0.2396258,0.7199857,-0.2642147,-0.12390446,0.09126508,0.5888625,1.3744768,0.03958664,0.021272313,0.18601039,-0.34689537,-0.8646332,0.12770186,-0.59652257,0.010106995,-0.19293782,-0.29120365,-0.36221126,0.3302971,0.09515678,0.050161894,0.09451272,-0.6354393,-0.30909175,0.23448631,-0.35691544,-0.17092495,-0.3008484,0.19812168,0.7429244,-0.53104204,-0.31238538,-0.12656608,0.38318792,-0.2792696,-0.7004627,0.1586097,-0.21531053,0.4545992,0.17403619,-0.26515144,-0.0036601503,0.3566698,-0.52788234,0.23942131,0.40489987,-0.2968222,-0.060632993,-0.14194365,0.033640996,0.85887057,0.09607807,0.19188179,-0.51263314,-0.34533086,-0.88017386,-0.32439786,0.15718533,0.039325994,-0.10180918,-0.5138111,-0.12431045,-0.1964569,0.08326359,0.061341826,-0.5514437,0.3236056,0.08981296,0.41788575,-0.09343829,-0.86895114,0.011692842,0.0325492,-0.11179741,-0.5515013,0.6029986,-0.19077459,0.64843017,0.18276101,0.019948727,0.078195095,-0.76706225,0.28184783,-0.3351192,-0.21785161,-0.53671646,0.2671424,277 +178,0.35682166,-0.08431549,-0.5117055,-0.05524942,-0.028130343,0.24226804,-0.026480397,0.55399734,0.14843208,-0.2741347,0.06808798,-0.19246672,0.13851953,0.5764382,-0.05446295,-0.5451375,0.05017261,0.20231156,-0.54498297,0.5638672,-0.41106194,0.3244153,-0.07977487,0.35276395,0.08353947,0.38651514,0.10081795,-0.23761123,-0.35757744,-0.05559682,-0.15749684,0.18627763,-0.2959924,0.04472113,-0.1332513,-0.22779022,0.025361378,-0.362456,-0.40784505,-0.5099183,0.21158367,-0.56435186,0.50434357,-0.08646546,-0.2147307,0.39094037,0.10357317,0.41241783,-0.36903068,-0.09367068,0.16336253,-0.037888743,-0.04743854,-0.27856585,-0.3008098,-0.54851025,-0.52652633,0.11367122,-0.45823854,-0.23371635,-0.16347538,-0.015706522,-0.24266586,-0.10174342,0.09229908,0.3203458,-0.41585132,0.07029692,0.11594384,-0.112787455,0.019612273,-0.45916313,-0.11455155,-0.04880055,0.40663406,-0.28045967,0.018128224,0.36922577,0.23697786,0.45079234,-0.10516045,0.016444704,-0.3864551,-0.066131525,0.032941926,0.6015422,-0.15835902,-0.6842012,-0.028195662,-0.017873289,0.02016686,-0.0005148093,0.11552186,-0.15198082,-0.14294602,0.012749481,-0.24944697,0.3863848,0.3443024,-0.4158294,-0.23789838,0.5122417,0.45544967,0.19683532,-0.16788228,-0.1989773,-0.021564452,-0.47867998,-0.13576266,0.04042323,-0.141018,0.503002,-0.075662054,0.27099672,0.60613173,-0.13088027,0.020917369,-0.04912177,0.02530812,-0.033829447,-0.040326696,-0.10670454,0.06799438,-0.34199312,-0.06570171,-0.113684975,0.6159346,0.21404597,-0.65024936,0.51054126,-0.47738683,0.08856066,0.014904837,0.34027764,0.50251675,0.35300273,0.14237629,0.43741935,-0.32415548,0.11854318,-0.10903911,-0.3973779,-0.009707161,-0.14165512,-0.09068293,-0.63933396,0.18568465,0.17273384,-0.027197909,0.18231727,0.3167015,-0.4946762,-0.0765145,0.1962114,0.9425849,-0.31322557,-0.22866316,0.63133657,0.96637666,0.69251126,-0.12013844,1.0734026,0.18658923,-0.31606388,0.24434285,-0.6017595,-0.5262156,0.1854268,0.29904038,-0.45147845,0.45002452,0.06076348,0.0046296436,0.3068332,-0.13704461,0.14825651,-0.08360573,0.05588681,0.09873216,0.0014418374,-0.40479133,-0.3646026,-0.12917764,-0.17497677,0.30892977,0.35234278,-0.22631897,0.4057823,-0.10590356,1.9072887,0.13967685,0.1421081,-0.021807408,0.53102654,0.16415091,0.026697647,-0.25401056,0.48314407,0.24069403,0.10153753,-0.42387295,0.12403634,-0.32702643,-0.6075827,-0.07196275,-0.3533704,-0.0692362,-0.1048559,-0.50611985,0.0026560624,0.024966994,-0.23279001,0.53587526,-2.9859436,-0.3499257,-0.120982744,0.26078472,-0.34807694,-0.38844416,-0.18831877,-0.36588657,0.25550753,0.2705674,0.45775017,-0.60082066,0.4506738,0.17229304,-0.39660186,-0.24625778,-0.44856384,-0.066102184,0.028962938,0.35536423,-0.22419192,-0.019552402,0.19509482,0.25723344,0.36145046,-0.23601566,0.032594852,0.24163647,0.31931293,0.2521818,0.31766054,-0.17065634,0.6150967,-0.22716975,-0.12519574,0.14833052,-0.29803494,0.28875872,-0.024229297,0.16131543,0.24498703,-0.3580082,-0.86483425,-0.4034142,-0.018969735,1.148719,-0.15724903,-0.1602753,0.16684748,-0.3382862,-0.23890771,-0.113807835,0.4006542,-0.012283627,-0.07588177,-0.59330285,0.15158369,-0.039690915,0.11237952,0.010257278,0.08130991,-0.33426479,0.44527677,-0.01176249,0.49248543,0.28205603,0.17415921,-0.23356776,-0.23708245,0.04818075,0.8373668,0.2053731,0.1305316,-0.09678423,-0.21528868,-0.49293435,-0.12951349,0.12958576,0.40558186,0.49612173,0.046094958,0.017351035,0.23840974,-0.0036772809,0.11550756,-0.12357731,-0.20368932,-0.058217604,0.023961056,0.46656975,0.49753806,-0.3730992,0.749132,-0.100977674,0.17866193,-0.26955223,-0.35823002,0.50902164,0.73023224,-0.2719951,-0.16099453,0.39900988,0.47824675,-0.3010636,0.33986396,-0.46234357,-0.27405798,0.54007596,-0.2883417,-0.22727808,0.3369307,-0.2130599,0.14630213,-0.96759623,0.14464168,-0.09072841,-0.38761607,-0.41943935,-0.048591223,-3.5219138,0.1187543,-0.14936489,-0.20890222,-0.027283179,0.013161222,0.01088083,-0.6172448,-0.38181254,0.15450433,0.10541025,0.5789402,-0.05495337,0.0930782,-0.24092008,-0.34671083,-0.15885776,0.12415637,0.002184546,0.43420845,0.0029427768,-0.51599824,-0.08673219,-0.24026394,-0.3412316,0.15910009,-0.6935844,-0.34406212,-0.12078501,-0.5706411,-0.27465147,0.7212412,-0.3938952,0.043950405,-0.17977743,0.09698747,-0.074236825,0.3146247,0.03718468,0.039157227,0.049027465,-0.100716814,0.19558683,-0.35952696,0.2164503,0.0964225,0.37520313,0.2935222,0.056729242,0.19072527,0.61099476,0.69849205,-0.04390152,0.6519087,0.3840918,-0.20107909,0.3625731,-0.41601476,0.015138475,-0.36728314,-0.5182315,-0.041024014,-0.3467291,-0.548448,-0.17320925,-0.34915859,-0.64463574,0.47745126,0.0010862033,0.010383886,-0.054366715,0.31911546,0.53701705,-0.31601626,0.12385186,-0.06329331,-0.10785052,-0.47918633,-0.22531518,-0.55528486,-0.39802495,0.27311847,0.8825386,-0.19930027,-0.015920162,-0.092912816,-0.34883007,-0.10155072,0.017399943,0.1868427,0.21104997,0.27553794,-0.39030063,-0.5998377,0.44242477,-0.3056982,-0.15135159,-0.45235318,0.10692315,0.53769416,-0.5030742,0.58024484,0.34798247,0.003673911,-0.015488625,-0.3102541,-0.12723936,0.11073933,-0.066262454,0.07187731,-0.03479139,-0.7853321,0.31050593,0.3103956,-0.37496078,-0.5974818,0.6137219,0.023335127,-0.30237898,-0.15870266,0.30188408,0.2776473,-0.06821828,-0.3505433,0.17063287,-0.5413786,0.18947825,0.28227144,0.030145725,0.35062402,-0.10557842,-0.17972231,-0.69926465,-0.0834619,-0.33481494,-0.2483823,0.24865483,0.19753863,0.27876347,-0.05055284,0.0055091144,0.17630528,-0.5061981,0.014771719,-0.005456372,-0.2450081,0.31234166,0.22423549,0.3787566,-0.5163826,0.5267118,-0.066563666,0.017195094,0.105884805,-0.06510362,0.53577316,0.17113806,0.2497882,0.05700772,-0.34555054,0.31541732,0.6985992,0.26644394,0.28010896,0.12981184,-0.24042676,0.12528335,0.076195754,-0.048200987,0.1327499,-0.37688047,0.010546748,0.023389084,0.1680536,0.43186733,0.19018342,0.31962177,-0.030456575,-0.38151786,0.06402751,0.13136058,0.050089043,-1.082048,0.39108133,0.2880675,0.69546735,0.2420811,0.055830274,0.04892093,0.5944933,-0.23062037,0.1892121,0.3325929,-0.22979529,-0.5521476,0.49610907,-0.63525,0.58107215,0.08767522,-0.08322924,0.18225734,-0.089025564,0.3219036,0.7837425,-0.16039696,0.07703808,0.18776314,-0.38452265,-0.030146424,-0.25850278,0.031119445,-0.6418406,-0.11809946,0.48697993,0.3898855,0.28486055,-0.099373385,0.044854205,0.15657431,-0.120416954,0.038755614,0.10125236,0.31235516,0.036741924,-0.71812755,-0.19222078,0.47739208,-0.070214346,0.15733074,0.1518886,-0.22523095,0.34492296,-0.26118988,-0.024124483,-0.018431846,-0.49452004,0.032819383,-0.23611546,-0.3957494,0.586051,-0.0726254,0.37537614,0.123838894,0.054902628,-0.24505372,0.6006085,0.020849522,0.7265232,-0.13528925,-0.3095253,-0.40151742,0.144121,0.19835348,-0.16102359,-0.008785526,-0.29311875,-0.04780736,-0.48836604,0.29996726,0.0006783962,-0.10482333,-0.16213067,-0.10684968,0.1522026,0.37469372,-0.024061957,-0.06854281,-0.17476615,-0.029352598,-0.21495943,-0.045568123,-0.1827227,0.26834244,0.40161842,-0.08524516,-0.17889513,-0.0942674,-0.025764827,0.4154161,-0.051287115,0.3168309,0.30750397,0.21508308,-0.026544753,-0.16810183,0.2554812,0.3025009,-0.032200906,-0.040760357,-0.39784083,-0.21147601,-0.28636837,0.13485247,-0.21866553,0.22936265,0.23959808,-0.21318096,0.64610636,-0.13446766,1.1534237,0.13889411,-0.26645273,0.07829612,0.43797845,0.11232731,0.09800069,-0.3156415,0.99724555,0.49132118,0.08189013,-0.23939537,-0.39368722,-0.14130355,0.19399491,-0.24724264,-0.27243978,0.10890748,-0.4359891,-0.39702842,0.3205486,0.06459442,0.41588366,-0.09508808,0.16612636,0.20515701,0.15169574,0.24280411,-0.47681573,-0.19457947,0.3618184,0.34487504,-0.00029233296,0.20914592,-0.44665578,0.41712603,-0.47870454,0.09543942,-0.23698281,0.12318972,-0.15280147,-0.3291832,0.22944085,0.11820392,0.2637566,-0.29025808,-0.40046594,-0.21782564,0.40854982,0.07009199,0.050722416,0.45994127,-0.2222731,-0.08108715,0.053039763,0.4876057,0.8880024,-0.24305582,-0.03892083,0.56054837,-0.21847671,-0.6506271,0.24641185,-0.17330573,0.28819996,-0.16656433,-0.08858991,-0.6039754,0.4174395,0.15258953,0.0037312687,-0.081811875,-0.34118965,-0.19483082,0.24028978,-0.309935,-0.29760277,-0.3201222,0.17915888,0.68638813,-0.31613356,-0.3185282,0.18814301,0.24723966,-0.20382638,-0.5625999,-0.034879874,-0.39129952,0.23190175,0.10833203,-0.28961554,-0.2228608,-0.0094291605,-0.28149897,0.3404952,0.34484679,-0.3985525,0.043578062,-0.32473382,-0.1563688,0.9505174,-0.1730562,0.33529076,-0.48057353,-0.42813063,-0.77333224,-0.625029,0.4424649,0.047300447,-0.16116263,-0.6037222,0.032185834,-0.009570781,-0.37966785,-0.05494895,-0.36163524,0.3489407,0.07257804,0.14478116,-0.14537692,-0.72146815,0.11391703,0.14978947,-0.33891094,-0.60966986,0.3364127,-0.11171642,0.9089728,0.03925944,0.13480473,0.47564444,-0.31072408,-0.2071205,-0.31813633,-0.002229474,-0.51562035,0.15356609,286 +179,0.38292173,-0.28614464,-0.37696794,-0.014990078,-0.23727332,0.1113466,-0.047057908,0.5063908,0.21125983,-0.40290174,-0.1610759,-0.30489957,-0.0024436892,0.3783602,-0.22549537,-0.4257449,-0.099076316,0.22281061,-0.5055714,0.49976826,-0.487062,0.16847102,0.09098374,0.40641102,0.19798294,0.036086004,0.199811,-0.17424652,-0.34460232,-0.19308329,-0.27111626,0.26914394,-0.5172828,0.17089953,-0.17912555,-0.32692146,0.022410832,-0.45999655,-0.25932708,-0.6974771,0.31259096,-0.6896164,0.32255659,0.07471355,-0.25267133,0.45718,-0.008002639,0.3292548,-0.283557,-0.13895202,0.11039068,-0.18510157,-0.04808885,-0.185865,-0.1088857,-0.14922899,-0.7318277,0.21491213,-0.30899173,-0.21450275,-0.39755613,0.26586196,-0.2647129,-0.07002356,-0.14982493,0.4770384,-0.41753674,0.14740826,0.03445879,-0.059493043,0.111468405,-0.5132446,-0.21516947,-0.033000838,-0.0020831784,-0.11732993,-0.08431087,0.24940348,0.26659867,0.57732195,-0.03653344,-0.14565611,-0.41771343,-0.0461244,0.053608913,0.4637202,-0.10895276,-0.64406306,-0.098416105,-0.010516803,0.07272582,0.060610987,0.088068455,-0.2023432,-0.22451067,-0.12372741,-0.25904953,0.29107162,0.4543305,-0.33477396,-0.38143715,0.3118197,0.51218265,0.10504245,-0.07178025,-0.13054334,-0.034913514,-0.6486637,-0.13023771,0.103421874,-0.18110034,0.55337334,-0.17558031,0.2171255,0.67973405,-0.2090324,-0.08752734,0.040941563,0.04485206,-0.05159665,-0.26148328,-0.24577647,0.17242931,-0.33045655,0.17354873,-0.25903234,0.94886845,0.0051161707,-0.85989445,0.347156,-0.49310488,0.2435678,0.05532845,0.5445198,0.50546134,0.38789508,0.49670085,0.5318683,-0.4097084,0.13261627,-0.10392303,-0.2715823,-0.07924709,-0.25237685,-0.0047151884,-0.43525633,0.113199905,-0.15709537,-0.14570114,0.024376867,0.42680356,-0.6218373,-0.050229263,0.15937765,0.7651337,-0.2591125,-0.12142076,0.7651177,0.95445925,1.1601541,0.0029825629,1.0980166,0.41009998,-0.31845322,0.16791034,-0.42174816,-0.6852711,0.27419332,0.2942271,0.13771346,0.13635498,0.022659509,-0.13102953,0.3275449,-0.47304657,-0.033806026,-0.25162974,0.16236454,0.1676,0.052374262,-0.38673294,-0.416708,-0.028139288,-0.030009143,0.049642883,0.27979326,-0.22545497,0.44449025,0.001328969,1.8045827,0.03167876,0.12527063,0.16972958,0.51249814,0.038651023,-0.11929958,-0.043476734,0.27918848,0.31940964,0.01898427,-0.56181353,-0.03138382,-0.28517812,-0.49979323,-0.092789896,-0.17541781,-0.13276027,0.06390868,-0.48564723,-0.23630132,-0.1423185,-0.262864,0.48879433,-2.6435065,0.077524275,0.013203204,0.28386518,-0.30875415,-0.39674366,-0.0029345988,-0.5531073,0.37870756,0.36347163,0.4184449,-0.7035629,0.3242056,0.2397008,-0.4877098,-0.07954062,-0.66565406,-0.14265057,-0.0432525,0.32781842,0.025636578,-0.05793653,-0.068444245,-0.06783767,0.5607775,-0.12401797,0.0805482,0.3436283,0.29807675,0.08767298,0.4140138,0.20959595,0.35597643,-0.28639802,-0.11584555,0.43631613,-0.43320644,0.2376595,0.005737555,0.08556327,0.4041784,-0.5327339,-0.8174076,-0.68271446,-0.15310937,1.2468317,-0.07742769,-0.32635644,0.2520444,-0.18224022,-0.17795865,-0.12808737,0.31197053,-0.15223384,-0.19854736,-0.75497067,0.043521926,-0.020085605,0.30280888,-0.009339013,0.0048346915,-0.36703163,0.70338744,-0.14779715,0.2505505,0.31742492,0.19920379,-0.41383582,-0.4514008,0.104663596,0.87165326,0.32038802,0.13877042,-0.23256226,-0.29999486,-0.3174736,-0.089665435,0.03820363,0.3781463,0.67004216,0.009829418,0.14135768,0.30156943,-0.04824029,0.10096017,-0.18353789,-0.22326796,-0.13843937,-0.011926616,0.65420777,0.690787,-0.1662013,0.3803927,-0.09195159,0.24354863,-0.0595475,-0.41753742,0.5301796,0.8214881,-0.038347792,-0.17071919,0.52082473,0.52657336,-0.25136802,0.36867124,-0.55594516,-0.3153165,0.587327,-0.1709533,-0.42309922,0.08638762,-0.29149562,-0.013691177,-0.80480456,0.35924146,-0.14863475,-0.43292174,-0.7861738,-0.14588885,-2.666061,0.27088395,-0.36328268,-0.15478767,-0.025748687,-0.06304407,-0.013247579,-0.6066354,-0.4020134,0.02797722,0.15345973,0.44646612,-0.007580894,0.19307038,-0.27261856,-0.23602708,-0.49923512,0.1176776,0.07981933,0.29160598,0.028315729,-0.39607996,0.08379304,-0.21564649,-0.3344622,0.06363108,-0.56015146,-0.55733496,-0.15817174,-0.43195215,-0.3819116,0.65051883,-0.3802633,-0.05245595,-0.15514204,-0.032761805,-0.050826807,0.3467695,0.15925704,0.11301262,0.07227779,-0.15039288,-0.015544945,-0.29352936,0.28834465,-0.0020017277,0.23393819,0.42496985,-0.16197824,0.18109417,0.3028446,0.6700653,-0.15793352,0.77625155,0.48889634,-0.09043649,0.25274733,-0.21453302,-0.16701375,-0.48087153,-0.21129146,0.008330652,-0.41022378,-0.40384388,0.045219526,-0.30530152,-0.6976567,0.4353753,-0.107909,0.10260806,0.006016135,0.31875992,0.56236136,-0.074837156,-0.07302942,-0.1415191,-0.027035965,-0.4797488,-0.43453434,-0.7136055,-0.4533602,0.08660597,1.0612683,-0.037080575,-0.05860363,0.017772608,-0.30364367,-0.1650245,0.06708612,-0.083533205,0.20100619,0.38603124,-0.20433696,-0.66039693,0.4971491,0.031700753,-0.23470841,-0.51891387,0.19638006,0.57344234,-0.46234852,0.48493055,0.30904242,0.111288644,0.1101508,-0.49507505,-0.22967501,-0.07863211,-0.1825586,0.32485187,0.2279089,-0.5742358,0.396308,0.28445616,-0.21146312,-0.87500066,0.2440755,0.08100302,-0.3517102,-0.06229552,0.28050846,0.18156436,0.100083224,-0.22843699,0.20783488,-0.56454164,0.37597302,0.22029908,0.00027012627,0.06576814,-0.31607014,-0.24225919,-0.6338464,0.019051163,-0.5154285,-0.34548122,0.2639521,0.15054925,0.0011654755,0.20037784,0.027595885,0.3153277,-0.21624945,0.01709064,-0.05402718,-0.08851888,0.21641888,0.42836288,0.4235454,-0.43122613,0.64051807,0.078556724,-0.112981,-0.18465458,-0.024912516,0.41862786,0.055436738,0.38975862,0.03657471,-0.261309,0.39968282,0.59296316,0.25697955,0.5240983,0.025177483,-0.2232974,0.39694202,0.041458424,0.15832955,0.04444973,-0.42073473,0.102965236,-0.20712735,0.14607774,0.43759176,-0.004261718,0.3884885,-0.10199157,-0.07974078,0.14782982,0.21218467,-0.16672882,-0.9753288,0.19303153,0.15384197,0.87257767,0.57980794,-0.10311658,0.14442499,0.82925016,-0.30983672,0.11344767,0.34667987,0.14438018,-0.59718525,0.7028158,-0.6442916,0.41446722,-0.24986942,0.00013910333,-0.0306003,-0.018801233,0.4384675,0.6284666,-0.17484428,-0.066179946,-0.040970586,-0.3218385,0.04876353,-0.3510264,0.33275643,-0.477315,-0.25261468,0.6125796,0.47602668,0.27351582,-0.11267241,-0.006776625,0.09182198,-0.15848665,0.17185242,0.024253365,0.10660351,0.13016947,-0.7340922,-0.18016765,0.5153489,-0.09659571,0.30661917,0.08080881,-0.22062367,0.29121315,-0.25200096,-0.22664127,-0.06854465,-0.5364304,-0.021243043,-0.17642498,-0.3172704,0.4419867,-0.19378062,0.27912143,0.1960001,0.13224427,-0.41770038,0.11064735,0.14185213,0.73761547,0.08290682,-0.061276145,-0.34019077,0.26473388,0.18684247,-0.13026637,-0.12179233,-0.12726338,-0.07536848,-0.6724422,0.41201574,-0.07410946,-0.35316727,0.0031536182,-0.17684291,-0.023418497,0.5856292,-0.025966056,-0.08506577,-0.027442273,-0.1306603,-0.19780664,-0.06307883,-0.043579288,0.33198205,0.14235406,-0.027478313,-0.020399518,-0.014012039,-0.13530813,0.44121674,0.0067160707,0.30030334,0.204957,0.003682526,-0.43299535,0.023375038,-0.09719003,0.45417908,0.14131026,-0.22008681,-0.24009632,-0.2854505,-0.2992047,0.18437344,-0.13865058,0.25973117,0.15835562,-0.34948015,0.89394796,0.036812544,1.289223,-0.016314339,-0.2685436,0.07110251,0.532343,0.099677406,0.10267544,-0.43487653,0.8628309,0.45960292,-0.109352276,-0.11560738,-0.25838566,0.025934378,0.2747617,-0.13332805,-0.15087897,0.006234765,-0.6066421,-0.27406844,0.17560135,0.23601188,0.1441443,-0.13247217,-0.030143023,0.22837208,0.05956584,0.5358328,-0.35430706,-0.16046849,0.24345109,0.26048303,0.009712419,0.20566498,-0.42555496,0.3759934,-0.5567153,0.08364597,-0.15371951,0.11699908,-0.2147418,-0.24380475,0.33902672,0.08686641,0.40227735,-0.37957504,-0.35972416,-0.3363514,0.5388971,0.29739565,0.2912126,0.52119815,-0.27601564,-0.01607675,0.114330605,0.4275055,1.0552431,-0.34404942,-0.06740257,0.42887953,-0.2043006,-0.58267194,0.5780276,-0.24770936,0.04536711,-0.03371113,-0.18967484,-0.48966405,0.28552437,0.24011306,-0.07973553,0.12033753,-0.5761227,-0.16157538,0.41796467,-0.3581499,-0.17191073,-0.28122482,0.2246469,0.59389025,-0.25063473,-0.4588381,0.10757386,0.2963896,-0.30175844,-0.46377414,0.016077287,-0.42527387,0.33171356,0.078233436,-0.20107926,-0.14135231,-0.0026090464,-0.44967598,-0.10724665,0.20563923,-0.34439373,0.04753085,-0.3145148,0.03218733,0.84411246,-0.17027153,0.27600333,-0.74556005,-0.37004614,-0.9820888,-0.36964804,0.6954146,0.014207919,0.029410101,-0.56658334,-0.1276737,-0.041772243,-0.21876757,0.0036806336,-0.4048242,0.45967242,0.13003309,0.29093245,-0.128732,-0.6331088,0.07179936,0.091274805,-0.23116796,-0.41723493,0.36630994,0.05138219,0.82600707,0.021578943,0.08312653,0.3571018,-0.5062371,0.12636925,-0.2175642,-0.27209318,-0.543523,0.08071737,295 +180,0.4107866,-0.120959066,-0.38764036,-0.3139099,-0.24118093,0.16504756,-0.07129126,0.052971967,-0.10080738,-0.50837594,-0.06261281,-0.355898,-0.07422261,0.39278996,-0.21528813,-0.8019488,-0.07425542,-0.06715285,-0.67197365,0.37355042,-0.34085885,0.54409474,0.41196945,0.13585107,-0.004820009,0.4170338,0.505253,-0.35863462,-0.1183664,-0.019745925,-0.36425698,0.07105209,-0.60040015,0.18475851,0.03859211,-0.22006406,0.21483313,-0.13283683,-0.12452148,-0.66447043,0.21597408,-0.68675244,0.27762452,-0.14947227,-0.2860384,0.21996066,-0.008747665,0.26675874,-0.42030728,0.32084975,0.18784116,-0.2593399,0.029089153,-0.25516555,-0.15643567,-0.71986616,-0.4370806,0.051705852,-0.69075763,-0.46043333,-0.19418249,0.17935874,-0.42151204,0.008300615,-0.21006687,0.3458357,-0.50204366,-0.2600065,0.20687547,-0.2574125,0.24708056,-0.3769914,-0.069532275,-0.17354509,0.3145399,-0.101334125,0.022827882,0.25559303,0.31130806,0.56160295,0.12265201,-0.28838763,-0.056937013,-0.20628387,0.20135851,0.4924892,0.10039593,-0.37967274,-0.11279329,-0.06838115,0.022554927,0.14779687,0.045932684,-0.4407526,-0.14165811,-0.018041346,-0.24948393,0.04847373,0.41657084,-0.49327287,-0.24859826,0.35906792,0.4618706,-0.039921187,-0.13784985,0.1768506,-0.06775317,-0.3938568,-0.1880676,0.36025375,-0.11870233,0.6193035,-0.22193798,0.39915392,0.80565834,-0.1897592,0.13233094,-0.36460164,-0.1557498,-0.26379135,0.09445497,-0.049977295,0.10839481,-0.48809358,-0.0781964,-0.33689168,0.959583,0.27643096,-0.81768066,0.34246552,-0.38791102,0.16914612,-0.14925997,0.7358917,0.538245,0.25124064,-0.021017324,0.8989185,-0.7533728,0.04314555,-0.06695627,-0.45018288,-0.06762164,-0.021139871,-0.17676021,-0.32290432,0.03597876,0.059028435,0.11040452,-0.25146356,0.20024985,-0.3206096,0.117536075,-0.18341926,0.58704287,-0.5366067,0.022938954,0.6257945,0.7997291,0.8251153,0.14705096,1.25641,0.30363,-0.2643718,-0.01594912,-0.5061048,-0.39946958,0.14761367,0.53839624,0.8262732,0.21461289,-0.10473388,0.1589478,0.25447312,-0.18386191,0.34653938,-0.16043012,0.13830678,-0.1583011,-0.10977482,-0.4898563,-0.23910291,0.11437569,0.08258801,-0.0124245845,0.1662188,-0.0062666973,0.5899491,0.19900386,1.3868673,0.014864048,0.27231604,0.063796714,0.25714934,0.22004248,-0.011084227,-0.010362832,0.30443674,0.4229633,0.03088859,-0.62615144,-0.11656507,-0.3162557,-0.57682955,-0.23295666,-0.44093412,0.048235066,-0.2512886,-0.5225908,-0.11479448,0.2303153,-0.42297295,0.4407193,-2.2317069,-0.080188945,-0.28675205,0.10739449,-0.3286247,-0.2296581,-0.18313299,-0.44745588,0.27936038,0.52865165,0.29730102,-0.65160346,0.46498823,0.36810434,-0.058594774,-0.10611248,-0.63939786,-0.06415839,-0.1501153,0.3298602,0.012078722,-0.11185614,-0.23917261,0.23760769,0.51691985,-0.10311505,-0.107428744,0.13023342,0.26340392,0.2053738,0.59717745,0.35207984,0.4177253,-0.1309497,0.07886526,0.30035114,-0.24114202,0.26183167,0.11586063,0.22650991,0.17201272,-0.52655786,-0.6770939,-0.75538504,-0.555362,1.3457942,-0.4757993,-0.32671705,0.33912495,0.4519591,-0.03476209,-0.056557167,0.31942934,-0.09451771,0.1376031,-0.587491,-0.0069356086,-0.060619414,0.27958617,-0.078581005,0.0864938,-0.31531373,0.67967147,-0.21760912,0.43133435,0.33553526,0.1598408,0.00022950968,-0.43378976,0.090637125,1.0352014,0.40531337,-0.030545216,-0.080635734,-0.23613057,-0.2218397,-0.186114,0.19780222,0.28051835,1.0476058,0.13755229,0.053359754,0.31126678,-0.15570848,0.13367106,-0.049368177,-0.3926253,0.1712245,-0.08305137,0.5569531,0.26024693,-0.022173261,0.52620596,-0.23542118,0.32046166,-0.12813747,-0.42949528,0.5609089,0.9527597,-0.06722034,-0.16725422,0.27503318,0.49915984,-0.3513715,0.31750727,-0.5994833,-0.27478266,0.71016556,-0.1684862,-0.36114654,0.25223455,-0.28430137,0.16581208,-1.0990585,0.31518564,-0.051857963,-0.51857656,-0.5020274,-0.2721648,-3.7585123,0.07440519,-0.20886359,-0.12749574,0.024912046,-0.1647127,0.2965979,-0.5411098,-0.4433006,-0.0093580745,0.011298043,0.38308805,0.12959558,0.16976404,-0.2753803,-0.12295782,-0.19950317,0.22819076,5.767743e-05,0.106104665,-0.032682482,-0.3706275,0.17951904,-0.51867974,-0.45080918,0.08672643,-0.3493597,-0.5588551,-0.20067602,-0.3139844,-0.35454184,0.6409057,-0.2625591,0.02726481,-0.050207656,-0.17056134,-0.22622661,0.37502295,0.32776347,0.16550587,-0.065114826,0.12778038,-0.25355566,-0.4032767,0.13271591,0.12993042,0.28733948,0.1983753,-0.15366787,0.11471868,0.5169391,0.45236614,0.008681039,0.5346143,0.18151031,-0.052009236,0.32255942,-0.4130837,-0.2319102,-0.8978432,-0.44913843,-0.33684736,-0.27234486,-0.63390166,-0.21615647,-0.27809206,-0.7303359,0.3435849,0.059100866,0.030855747,-0.1150127,0.22687915,0.27864918,-0.07479051,0.042132393,-0.221666,-0.16953367,-0.3969495,-0.42575905,-0.80925167,-0.47969982,0.009128618,1.1458708,-0.030424865,-0.29971847,-0.18043327,-0.08069416,0.15976031,-0.013556548,0.23399934,0.32381693,0.16081223,-0.2026871,-0.7989381,0.68195426,-0.09732521,-0.051608168,-0.4504453,-0.26321414,0.557838,-0.6845573,0.2769883,0.23877549,0.15840997,0.2048815,-0.3594776,-0.24001922,0.042708624,-0.4113867,0.47754195,-0.16135985,-0.3666006,0.47931406,0.17037357,-0.007102263,-0.5095661,0.48568952,0.0014938673,-0.30315056,0.28213176,0.29779705,-0.12178294,-0.07244488,-0.359399,0.1957095,-0.55543166,0.28545392,0.55883974,0.19062056,0.4918272,-0.050593268,-0.27330643,-0.4327144,-0.070862964,-0.40688488,-0.18909988,-0.037486542,0.15224075,0.02933073,0.13964857,-0.109822385,0.45459852,-0.29275692,0.14016485,-0.032041553,-0.1764882,0.31549862,0.42951176,0.10947888,-0.47770202,0.60690916,0.10073872,0.17978863,-0.42923254,0.045780182,0.48057163,0.43645498,0.11413193,-0.055735603,-0.19441637,0.389748,0.60474354,0.37657535,0.5846469,0.25226387,-0.23208526,0.39560446,0.3267637,0.13654889,0.046329632,-0.016485868,-0.1026824,0.14777945,0.094298534,0.34953752,0.037624303,0.4665166,-0.08454538,-0.1192721,0.22993013,0.23235169,-0.23236026,-0.62030154,0.25601894,0.26510966,0.4959617,0.6443921,-0.06089735,0.094046764,0.438712,-0.4876406,0.02380451,0.19435593,-0.08550353,-0.5756746,0.6969026,-0.4983862,0.26785624,-0.18094355,-0.08135775,0.00021966298,0.09965434,0.15161449,0.9803341,-0.03374195,0.03536759,-0.19634707,-0.1248493,0.19116454,-0.43722418,0.06839851,-0.3785802,-0.2514382,0.44342047,0.18752523,0.20697738,-0.1592096,-0.013546439,0.07495381,-0.055360503,0.2991243,-0.062644556,0.10437538,0.035014175,-0.60762984,-0.51659197,0.6050464,-0.0055812597,-0.06434899,0.15891522,-0.44734856,0.33958787,-0.043149408,0.040705126,-0.0976418,-0.52879274,0.1766402,-0.23029543,-0.45206496,0.20628233,-0.4032508,0.46714595,0.17767903,-0.055781167,-0.29154575,-0.09476297,0.30221575,0.6298736,0.060257673,-0.3261189,-0.30588505,0.07201909,0.3024431,-0.33305848,-0.044340845,-0.22121146,0.16094074,-0.6638473,0.41165224,-0.13382173,-0.21888746,0.113463685,-0.23516403,-0.2669603,0.38054556,-0.23504347,0.03739943,0.23195624,0.14803907,-0.092592366,0.012590122,-0.54673326,0.20262156,-0.13104104,-0.07242277,0.033465553,0.055861283,0.079838224,0.47060153,0.1037676,0.16384609,0.07174145,-0.26651084,-0.50725114,-0.0595447,-0.046106394,0.05558404,0.25049308,0.036010664,-0.18433918,-0.3360634,-0.1306685,0.091171585,-0.23197407,0.2387731,0.16510865,-0.48699242,0.76336175,0.18196869,1.1825736,0.13600343,-0.23678951,0.092411056,0.49386102,0.14041351,0.14678285,-0.30114183,0.9365297,0.67096907,-0.12690385,-0.2895703,-0.36503604,-0.22459704,0.2226394,-0.21788716,-0.23455101,-0.023019219,-0.70462596,-0.44379914,0.1315526,0.25861654,0.13267474,0.2644733,-0.14364372,0.09302883,0.114122964,0.68060726,-0.48986652,-0.17221576,0.19607824,-0.15469022,0.14249153,0.11978242,-0.3558261,0.52140707,-0.7624493,0.22229372,-0.3110161,0.027176348,0.079784654,-0.22310854,0.24914531,0.075983554,0.3330638,-0.18253565,-0.4903612,-0.24186048,0.69796556,0.16343711,0.41436857,0.831422,-0.30764753,0.17340933,0.16068454,0.34480318,1.3801098,-0.026707537,0.029454628,0.3741789,-0.42747563,-0.4994426,0.1715441,-0.13928947,0.049031537,-0.18164302,-0.4721151,-0.40749556,0.28266823,0.16240504,-0.09285418,0.18630147,-0.38169667,-0.31356958,0.57939136,-0.29794112,-0.41005623,-0.4235918,0.48127657,0.6139304,-0.5083078,-0.2563167,-0.012719504,0.10251251,-0.44799933,-0.6535881,-0.029134631,-0.21293001,0.5274301,0.08962237,-0.24605677,0.20205173,0.3825149,-0.31485873,0.21392968,0.524237,-0.38374797,0.016899245,-0.20958737,-0.078991696,0.96515214,0.015679391,-0.20637444,-0.6699258,-0.4877023,-0.9570667,-0.40669537,0.7105742,0.1710413,0.033035804,-0.43187994,-0.0923244,-0.051615253,0.131776,0.11461143,-0.49308267,0.2529902,0.17044678,0.45686534,0.060627177,-0.81811506,-0.008404231,-0.05295034,-0.21562035,-0.4280929,0.58303744,-0.21833521,0.4790557,0.05721204,0.009697842,0.17986849,-0.54455215,0.2877498,-0.30394492,-0.24274167,-0.58471227,0.12480111,297 +181,0.6393105,-0.18246624,-0.37171742,-0.24487281,-0.24911489,0.08691616,-0.13382003,0.31581777,0.16889471,-0.51164067,-0.047866862,-0.13106473,-0.011781728,0.0618152,-0.15431918,-0.632107,-0.06982843,0.043791953,-0.44868848,0.6135119,-0.4696961,0.33415425,0.03809944,0.21940564,0.07815065,0.27211052,0.25341454,-0.23972884,-0.08442716,-0.1345617,-0.13693745,0.26884133,-0.75430804,0.23501045,-0.056560345,-0.28437743,0.08267345,-0.377067,-0.23743361,-0.7362384,0.22316347,-0.8222725,0.448602,0.17420414,-0.21293579,0.17800957,-0.0014551163,0.21992142,-0.22143729,0.17278385,0.19870299,-0.039887913,-0.018104978,-0.08792356,-0.1464983,-0.5427493,-0.64089227,0.061044984,-0.26912376,-0.19880849,-0.27074164,0.19615623,-0.4386167,-0.09527189,-0.1478438,0.43475276,-0.46661994,0.018202562,0.12534267,-0.014557949,0.43710843,-0.5163767,-0.01573071,-0.228826,0.18100758,-0.4074707,-0.35369363,0.28448066,0.3633451,0.4879433,0.047382772,-0.23623377,-0.14539985,-0.15620235,0.15115087,0.50679916,-0.22464056,-0.7225025,-0.15856075,-0.06072219,0.14916421,0.31481284,-0.112262994,-0.37049323,-0.075703666,0.13875945,-0.2005765,0.42656523,0.5130474,-0.4736227,-0.35212347,0.4095572,0.5825471,0.0035927177,-0.031273015,-0.082998045,0.029987741,-0.7059739,-0.25045556,0.40094754,-0.089701176,0.4420525,-0.18187033,0.13944802,0.69278705,-0.40181553,-0.009624998,0.083358936,-0.061750628,-0.09721133,-0.19238384,-0.2872751,0.2962634,-0.56692123,0.108636394,-0.3041302,0.8296783,0.24874789,-0.7897293,0.27948567,-0.61748606,0.08006254,-0.19592553,0.6990119,0.6447432,0.43844232,0.2772536,0.70862466,-0.594968,0.06637668,-0.09982939,-0.44461983,0.06849618,-0.19669834,-0.118734546,-0.42892674,0.03469818,0.0982852,-0.058975074,-0.130491,0.32487094,-0.56259286,-0.006026429,0.049482964,0.6767981,-0.33311003,-0.09628735,0.68268573,0.8786162,0.9940103,0.12743443,1.375336,0.2829984,-0.3060687,0.15760067,-0.3431133,-0.7748938,0.36323196,0.47589752,-0.17172109,0.14073268,0.11213121,-0.0074196896,0.2158489,-0.46445948,-0.012055339,-0.3296181,0.38807684,-0.010383925,-0.07447591,-0.3587881,-0.23855686,-0.05152104,0.11261468,0.07272091,0.20401327,-0.18801309,0.22189511,0.19623114,1.4588293,-0.15443645,0.123160996,0.07779523,0.438361,0.17487288,-0.05232714,0.0155196665,0.23909898,0.45942086,0.30697164,-0.6358059,-0.0026572347,-0.17881685,-0.53414637,-0.15891787,-0.31411642,-0.009650937,-0.11963563,-0.38061967,-0.086321525,-0.09694249,-0.3246207,0.59400505,-2.6596472,-0.046130292,-0.12213627,0.2213158,-0.22297472,-0.44462246,-0.18859193,-0.6096813,0.57999164,0.35606316,0.5237407,-0.8454739,0.29308233,0.3510507,-0.5091794,-0.0035171588,-0.7973484,-0.13054515,-0.13135192,0.37423506,0.12452408,-0.07893312,-0.11236037,0.12888414,0.55011564,-0.051898915,0.077332124,0.07149175,0.43363747,0.08951412,0.56572545,0.10978497,0.47074717,-0.14490822,-0.18998304,0.3608562,-0.21367224,0.17803484,-0.08538864,0.13462861,0.2700641,-0.48929024,-0.9453514,-0.8995556,-0.55580443,1.0931647,-0.15318164,-0.45932496,0.09608832,-0.105907425,-0.2803803,-0.12240301,0.3520362,-0.2536705,0.040340174,-0.7871281,0.12017367,-0.08212344,0.21765785,0.012780446,0.06533016,-0.4859577,0.65394247,-0.12649216,0.32855955,0.44364044,0.08200519,-0.18646249,-0.5325617,0.03868766,1.0747845,0.37036735,0.1544592,-0.20567164,-0.298029,-0.34447905,-0.028028412,0.068936385,0.4556733,0.80213815,-0.085352525,0.083776735,0.2890472,-0.011476736,0.04719117,-0.11770203,-0.29879224,-0.09060684,-0.0985339,0.7187124,0.44063517,-0.19848566,0.46125117,-0.09951871,0.2523511,-0.05333807,-0.40659934,0.53455764,1.1147643,-0.11249338,-0.21750297,0.59530866,0.52574736,-0.26782706,0.42755452,-0.6315114,-0.261989,0.35719022,-0.08684642,-0.3546231,0.14609718,-0.38712797,0.15555556,-0.843778,0.4783663,-0.33921203,-0.44790548,-0.55017084,-0.1280928,-3.4078836,0.2685281,-0.26106533,-0.029335538,-0.05452142,-0.1453632,0.39052144,-0.55505884,-0.50967497,0.25022116,0.07145708,0.5313917,0.014770033,0.05658985,-0.24445347,-0.1408698,-0.40078315,0.122675546,0.16990574,0.2927161,-0.020360466,-0.41390106,0.053879693,-0.13630177,-0.43352118,0.1495864,-0.5386892,-0.5546323,-0.15340953,-0.48644918,-0.4199918,0.7061474,-0.3304338,0.008685636,-0.1428093,0.03807443,-0.018749733,0.41058862,0.08242985,0.15418799,-0.08399156,0.034633208,-0.14601931,-0.28851348,0.41107547,0.056851722,0.13978486,0.2446632,-0.2888585,0.2221055,0.49714005,0.5121374,0.053515732,0.85460013,0.56469333,-0.10456485,0.2131951,-0.33693543,-0.20309235,-0.59139705,-0.39819902,-0.13006775,-0.4956954,-0.40111464,-0.0325224,-0.31849682,-0.6789747,0.57938933,-0.020509934,0.062411405,-0.07347777,0.31926578,0.4437507,-0.1351437,0.053457346,-0.06910767,-0.13501061,-0.48020548,-0.3279033,-0.60795337,-0.40563032,0.046427142,1.1084296,-0.21578927,-0.11631214,-0.025612246,-0.1360374,0.0381995,0.086420186,-0.12823328,0.24278793,0.40712115,-0.07115258,-0.65352696,0.5554262,0.011477605,-0.12442374,-0.6328658,0.14020266,0.7010295,-0.74525917,0.39745525,0.34217831,0.068803065,-0.14219576,-0.6360661,-0.22900926,-0.0070027965,-0.30477574,0.44506976,0.075143225,-0.7290789,0.5185002,0.40122154,-0.18829349,-0.67241913,0.6174277,0.087176256,-0.34580985,0.07381989,0.27923623,0.10914949,0.046320796,-0.26348153,0.36960143,-0.46727234,0.33669502,0.20143436,-0.020794272,0.36975396,-0.026900165,-0.24706435,-0.6786927,-0.06215899,-0.45966783,-0.41453943,0.17752776,0.002983447,-0.0020871798,0.29981473,1.1384487e-05,0.4760085,-0.25352317,0.07856533,-0.0051113605,-0.3190165,0.2145744,0.3640708,0.40849483,-0.36846918,0.6004799,0.07952665,-0.11469371,-0.20575804,0.09375127,0.553701,0.055473544,0.31426874,-0.029794069,-0.21210852,0.3467819,0.8111164,0.22276379,0.40696305,0.002163454,-0.06650063,0.30009085,0.17469583,0.24862741,0.11255531,-0.50267845,-0.10418512,0.073727116,0.065527625,0.44997838,0.09289327,0.21771675,-0.1498971,-0.23151445,-0.006931625,0.105519265,-0.005344788,-1.1105224,0.41693535,0.11507681,0.76081437,0.59227026,-0.15581182,0.120275065,0.51288617,-0.23187973,0.08960069,0.35197785,0.0101041,-0.44590378,0.5541398,-0.7122868,0.41049644,-0.085455224,0.070766404,-0.12488367,-0.11561426,0.27412117,0.8991356,-0.10589345,0.10234995,-0.17863792,-0.15313165,0.2659041,-0.34454829,0.17741747,-0.486752,-0.20910312,0.7304084,0.41096625,0.3601204,-0.007719768,0.0004967143,0.17008963,-0.16061325,0.18015406,-0.053007953,0.080723494,0.13861546,-0.67028946,-0.18273766,0.66366667,0.021750959,0.05148022,-0.037361324,-0.22960217,0.27099115,-0.17229837,0.025241148,-0.15143725,-0.60014504,0.019288126,-0.33947155,-0.22441308,0.59148747,-0.3499071,0.24017677,0.14258115,0.0676421,-0.25273448,0.15963846,0.3128647,0.7203028,0.07309442,-0.21282692,-0.5079335,0.14531918,0.2598679,-0.23826136,-0.23569804,-0.1264078,0.0021606407,-0.74802554,0.35872588,-0.04898054,-0.44459817,0.12158929,-0.16875039,-0.06388941,0.5443228,-0.08896956,-0.20988598,0.061080147,-0.1570906,-0.1679116,0.024789575,-0.046120085,0.28843313,0.33903658,-0.0035297116,-0.079464935,-0.19523162,-0.25784427,0.34689087,0.088955574,0.29133272,0.3057889,0.1819145,-0.35244468,-0.080611125,0.15307999,0.47189704,-0.08822368,-0.09699499,-0.17533585,-0.38257393,-0.30724427,0.048115764,-0.13478334,0.34398985,0.006466232,-0.44083968,0.69398296,0.0044873,1.2605519,0.08418547,-0.29388618,-0.09205754,0.62275386,-0.0029224355,-0.0082065305,-0.333735,1.0000137,0.5810501,-0.07991912,-0.19921865,-0.31938314,-0.004863612,0.078756884,-0.11170983,-0.06135547,-0.1148526,-0.63583934,-0.351852,0.31922844,0.28547636,0.10451958,0.040488735,-0.120385595,0.18089399,0.029335694,0.45165926,-0.4720846,0.015143631,0.2578067,0.31660557,0.11751452,0.26893812,-0.30175045,0.29347858,-0.41409698,0.13917519,-0.23937927,0.20142303,-0.20482215,-0.1854023,0.21877323,-0.06679988,0.3193847,-0.21163623,-0.52987486,-0.2013374,0.46578124,0.22074983,0.23733707,0.68690556,-0.28094807,0.109623685,-0.01550986,0.4465226,1.1941757,-0.20039003,-0.004907753,0.44552884,-0.29492822,-0.5009129,0.4098484,-0.28757003,0.1305786,-0.022649534,-0.271727,-0.33607686,0.23046137,0.22673455,0.064220354,0.0035615643,-0.7106322,-0.22404978,0.21649498,-0.13818803,-0.26922646,-0.33404344,0.40063375,0.8114658,-0.41958258,-0.23429696,0.1561004,0.21912812,-0.24984239,-0.57909495,-0.05040783,-0.34728384,0.34891605,0.17544593,-0.30413455,0.05581182,0.061939288,-0.4135926,0.10193981,0.2050053,-0.41361302,0.087003864,-0.15369672,-0.079841964,0.9196076,-0.1709268,0.07359774,-0.5211588,-0.34097072,-0.8902516,-0.28843033,0.4937143,0.28899392,0.076660864,-0.42664844,-0.11337255,0.07314698,-0.08381469,-0.023271767,-0.45248803,0.4857231,0.049404096,0.44667664,-0.12441637,-0.8190632,0.14373295,0.10682169,-0.06325253,-0.5345546,0.5111104,-0.044282354,0.68676144,0.1245312,0.123272024,0.28612205,-0.49845296,-0.041309375,-0.1877428,-0.19903521,-0.8525836,0.13932624,299 +182,0.36163825,-0.046810247,-0.61625266,-0.019468885,-0.1818052,0.20118485,-0.18102854,0.32566687,0.048370916,-0.3701816,-0.11317137,-0.14331885,-0.0445402,0.2738493,-0.07938365,-0.457011,0.18331677,0.30939192,-0.67422193,0.29796034,-0.6129225,0.307842,0.12938768,0.14802171,-0.0048366864,0.10155188,0.15100819,-0.13011989,-0.16857041,-0.21726297,0.10020849,0.20433642,-0.5742833,0.36032104,-0.2209178,-0.36617094,-0.00323385,-0.39297697,-0.33133394,-0.66168976,0.33741465,-0.8309839,0.53423923,-0.05861933,-0.20840219,0.241226,-0.0069238027,0.29684365,-0.15078071,0.004208986,0.21166238,-0.27734312,-0.36573008,-0.2375542,-0.06620135,-0.16721033,-0.6032581,0.16448964,-0.40289077,-0.07027909,-0.27361807,0.17331395,-0.30708903,0.1445275,-0.21258454,0.34209213,-0.3152504,0.05914755,0.13796592,-0.054774318,-0.049504027,-0.429164,0.03280053,-0.10213721,0.18138261,-0.24180228,-0.21407168,0.37482437,0.21264675,0.5680881,-0.041213885,-0.25216138,-0.09569319,-0.101898246,0.24952747,0.5256731,-0.17855202,-0.26270077,-0.16865359,-0.01379594,0.15674023,0.07060062,-0.037575744,-0.27625483,-0.059455376,-0.016812626,-0.16017164,0.26581144,0.6275078,-0.3123172,-0.12664266,0.39923322,0.598785,-0.08651967,0.055737518,0.19518839,-0.027266322,-0.56353647,-0.25381315,-0.0071953437,-0.08638553,0.4135059,-0.26376393,0.23606917,0.60608333,-0.23702525,-0.07923159,0.27013922,0.05002516,0.031878628,-0.081093036,-0.19438525,0.27912292,-0.5971582,0.05627226,-0.13315503,0.84232014,0.055964794,-0.7705573,0.4283102,-0.457574,0.21460083,-0.09506987,0.7221143,0.6042113,0.49160793,0.18369508,0.6974894,-0.49683577,0.014788268,-0.14360286,-0.50000656,0.052503966,-0.09950983,-0.058254004,-0.3645237,0.039207794,0.03746446,-0.08363951,-0.05921,0.4217915,-0.42961088,-0.13407166,0.056960378,0.6512462,-0.3389186,-0.23023194,0.6990022,1.0423192,0.89491814,0.10843933,1.3248341,0.28093135,-0.12836222,-0.009235473,-0.19245,-0.8282789,0.3096033,0.22873197,0.0899452,0.22263929,0.13011327,-0.11171524,0.2880672,-0.54698485,-0.160113,-0.13897566,0.26724353,-0.13746092,-0.10091685,-0.2578534,-0.23475827,0.11041296,-0.0052800816,0.19543782,0.33749256,-0.2385713,0.34886262,0.053613,1.3930763,-0.12160633,0.110684596,0.17509522,0.3104138,0.09360654,-0.0449754,-0.25206614,0.17273133,0.32369605,0.08602691,-0.54195887,-0.05280367,-0.13507676,-0.55727,-0.17172202,-0.26181218,0.027136136,-0.19464222,-0.2771243,-0.22539902,-0.09879487,-0.46155566,0.458613,-2.592462,-0.16815533,0.023316797,0.28862748,-0.19674405,-0.3436773,-0.1743118,-0.49611762,0.27778885,0.30758104,0.4526509,-0.71270293,0.4210843,0.24444224,-0.477846,-0.08320774,-0.6953585,0.05333142,-0.1367241,0.1911246,0.14292265,-0.075260974,-0.12730628,-0.04893099,0.49836752,-0.14818574,0.0164479,0.4291424,0.30735767,0.11977706,0.39237675,0.15861405,0.57283014,-0.55760306,-0.205039,0.3215286,-0.4043435,0.18415053,-0.11025596,0.12818216,0.26679844,-0.5306652,-0.8273432,-0.6141098,-0.22745362,1.3993111,-0.25510767,-0.26696354,0.24451698,-0.19564022,-0.25105605,0.042808518,0.3010993,-0.24846824,-0.058872856,-0.68743175,-0.08625857,-0.00815615,0.32207572,-0.12190951,0.06566345,-0.5422756,0.5548955,-0.25267726,0.5004245,0.25243148,0.06353773,-0.24790679,-0.386627,0.20814465,1.087146,0.3774179,0.14873879,-0.28685912,-0.19134556,-0.22605342,-0.22537436,0.096101485,0.48193285,0.7413792,-0.057193503,0.06732382,0.31391475,0.018791573,-0.009296163,-0.11312294,-0.34984705,-0.04423354,-0.07894887,0.66934484,0.5541214,0.017434107,0.4248548,-0.057576362,0.3476269,-0.21591201,-0.38051364,0.38244084,0.7578986,-0.1512046,-0.28926933,0.5153835,0.40162987,-0.32570893,0.5411723,-0.58186734,-0.49471983,0.24843222,-0.05956086,-0.3612513,0.18779056,-0.3140594,0.2790733,-0.82683784,0.49040073,-0.21328573,-0.78446424,-0.5098368,-0.13597395,-3.1751266,0.1928559,-0.2401341,0.011675773,0.051539585,-0.054475196,0.15189633,-0.32343313,-0.48790655,0.049392637,0.1419819,0.60742164,-0.035142772,0.07576131,-0.20461674,-0.20234784,-0.39098224,0.14253631,0.23161833,0.29379424,-0.08548334,-0.4078268,0.053467236,-0.37854752,-0.18445063,0.02568603,-0.6244434,-0.3548879,-0.11051901,-0.46423873,-0.4437392,0.66027707,-0.46071473,0.08893763,-0.25687,-0.03752557,-0.039038192,0.36423102,-0.016040524,0.11996626,-0.019639738,-0.20788105,-0.07896469,-0.25711754,0.4686751,-0.020993253,0.31904286,0.43525994,-0.1924554,0.05423248,0.40986425,0.5859029,-0.07551499,0.8414833,0.4155545,-0.13918068,0.26618236,-0.21937315,-0.19906227,-0.43991262,-0.113713235,0.007542071,-0.51109743,-0.35917002,0.035411842,-0.35737005,-0.81164056,0.4330722,0.00022366842,-0.061862357,0.059448518,0.26626596,0.4204435,-0.058972858,-0.16063288,-0.15574828,-0.10363589,-0.36107787,-0.4181392,-0.6869845,-0.45887023,-0.09037046,1.2225376,-0.15468822,0.09652957,0.023397831,-0.006097833,-0.021613609,0.10807705,0.008114016,0.23010792,0.48914927,-0.22775911,-0.6835206,0.39962256,-0.35632026,-0.06853495,-0.47502348,0.17106707,0.6195286,-0.7347669,0.49599773,0.52642655,0.24456319,0.0547631,-0.43073395,-0.16872129,-0.037884887,-0.25028136,0.43379983,0.19932482,-0.825362,0.5657238,0.3350759,-0.25996524,-0.7255756,0.41952667,0.037120685,-0.14553474,0.080594294,0.45408615,-0.2408647,0.04463064,-0.24305029,0.11651781,-0.45235443,0.33561942,0.18809786,-0.01313416,0.27998617,-0.2969595,-0.16380975,-0.51199925,-0.028536336,-0.54836905,-0.2141018,0.04385136,0.010114895,0.006559952,0.19124795,0.027707068,0.4722083,-0.25266013,0.010445644,-0.1459478,-0.3818527,0.36340588,0.44939902,0.4093847,-0.4719581,0.5891525,0.033640783,-0.13093509,-0.26296547,0.037325628,0.49881133,0.009974873,0.35167176,0.13538282,0.07382121,0.35966307,0.8248952,0.34395722,0.4308936,0.079823,-0.17559321,0.18583514,0.11174571,0.2343212,0.040843032,-0.50163925,-0.05651284,-0.13347732,0.2474897,0.43234012,0.18072887,0.45896354,-0.12261789,-0.27443627,0.021232003,0.11959818,-0.17060384,-1.0978947,0.50343376,0.10196161,0.6640571,0.40255412,-0.00976156,0.15391512,0.5837294,-0.24320568,0.17805807,0.18555562,-0.17407961,-0.42720512,0.5149713,-0.6489345,0.37865102,-0.104971856,0.07031127,0.11311904,-0.10096182,0.3854989,0.74012595,-0.039093852,0.09447677,-0.082928784,-0.21654037,0.14646749,-0.27239367,0.23092912,-0.5498088,-0.2061408,0.87057596,0.40731353,0.29427412,-0.14776653,0.038990658,0.101848885,-0.1000217,0.13247329,-0.07678641,0.14351486,-0.11075284,-0.6607895,-0.19051811,0.6326515,-0.0054941694,0.04486813,0.21870661,-0.17538032,0.2852371,-0.19832405,-0.005432463,-0.18230009,-0.5725087,0.05788804,-0.20942189,-0.3101426,0.1856531,-0.23450874,0.2672461,0.24751513,0.017919242,-0.50617385,0.28934,0.15113363,0.6829425,0.059070427,-0.28178176,-0.20464729,0.31750822,0.27856398,-0.268081,-0.13481121,-0.32354957,0.043306645,-0.694638,0.41190326,-0.14473465,-0.36599004,0.24109954,-0.05945337,-0.13729325,0.5430154,-0.1296006,-0.11203582,0.094623595,-0.09191057,-0.20073493,-0.109348364,-0.20046636,0.24226615,0.2674686,-0.15004295,-0.11430906,-0.010342093,-0.122970834,0.25901967,-0.06204508,0.19282745,0.28539145,0.058945842,-0.41919568,-0.052594207,0.05342209,0.5673497,0.056613103,-0.04389646,-0.3454471,-0.13420776,-0.15654401,0.22420658,-0.07250131,0.33860305,0.075742476,-0.26543695,0.69998443,0.10802933,1.0750068,0.09035544,-0.13484271,0.02590247,0.54086,0.08891679,-0.0073646605,-0.46408173,0.98081106,0.5045383,-0.17204763,-0.11840652,-0.46037012,-0.02711939,-0.040745694,-0.12695798,-0.38628483,0.015003592,-0.59381294,-0.24229176,0.22988254,0.35570943,0.06429996,-0.008880373,0.13279395,0.29412544,0.04378282,0.16905709,-0.43156263,-0.12204134,0.26385218,0.24899887,0.015552954,0.016289007,-0.48724225,0.33636123,-0.7166957,0.07634302,-0.07044863,0.08752529,-0.05661653,-0.33797637,0.22179116,0.12346672,0.30466282,-0.32055664,-0.2837162,-0.10943259,0.43215185,0.20081404,0.269542,0.76108205,-0.23565388,-0.016122222,0.07133387,0.34160823,0.88309324,-0.14253075,-0.008306247,0.32503578,-0.15173677,-0.6358902,0.39240387,-0.25943896,0.21089935,-0.044763148,-0.39730313,-0.48756605,0.3522288,0.2056395,-0.115714245,0.15905997,-0.60121346,-0.07510088,0.22597863,-0.18860109,-0.32769224,-0.40186158,0.11158393,0.8038109,-0.21964483,-0.33473587,0.11870947,0.23092924,-0.3642346,-0.6183499,-0.016587906,-0.41780064,0.22471142,-0.055208027,-0.19869232,-0.04662868,0.08134411,-0.3989504,0.21471177,0.22568361,-0.1909948,0.14807187,-0.27587044,0.11145881,0.6423429,-0.15131325,0.039102428,-0.54532313,-0.43542007,-0.8591155,-0.19316754,0.3471249,0.14155169,-0.035292037,-0.4875473,-0.19399816,-0.08080182,-0.22067894,-0.024340717,-0.40440473,0.33429152,0.06668725,0.1883473,-0.0027890664,-0.78164923,0.11489034,0.059965387,-0.3009511,-0.39848354,0.46807998,-0.056680076,0.76904005,0.07735955,0.015545994,0.40691668,-0.56444424,0.15195277,-0.25796616,-0.049791433,-0.6027777,-0.0037390192,300 +183,0.34391734,-0.24701786,-0.61385053,-0.107481025,-0.05177248,0.18940642,-0.27397615,0.22550598,0.04047276,-0.53085905,0.028432822,-0.044953663,-0.12066711,0.358293,-0.11470342,-0.47156727,0.008449086,0.20114414,-0.50952303,0.24767794,-0.52037627,0.38254303,-0.10119032,0.17918661,-0.015829977,0.27312222,0.24049939,-0.0424001,-0.18664637,-0.1698312,0.1383495,0.015496961,-0.5666715,0.18450557,-0.037504364,-0.37184018,0.008534503,-0.40877715,-0.49464858,-0.5950306,0.41800994,-0.82690173,0.50986934,-0.002005905,-0.19691592,0.19943507,-0.0074485857,0.33533257,-0.30891982,0.19769557,0.2969848,-0.23835577,-0.2011898,-0.16953593,-0.020778792,-0.27409208,-0.5652874,0.057441313,-0.5387412,-0.019021956,-0.24262692,0.17454024,-0.40564385,0.18986899,-0.25051528,0.3928957,-0.46576625,-0.13225314,0.24619831,-0.0845576,0.25922057,-0.544039,-0.07978327,-0.070864595,-0.02423271,-0.14328259,-0.029244678,0.30517462,0.08872022,0.55974567,-0.054342173,-0.12671329,-0.30706814,-0.052145313,0.19289993,0.54812396,-0.046693016,-0.2984536,-0.16269454,-0.10581699,0.18714263,0.0011386137,-0.04622399,-0.20362444,-0.09808969,0.14005218,-0.24747133,0.2413849,0.59183,-0.25264254,-0.083228804,0.3884825,0.5089119,-0.07654204,-0.038309466,0.11863079,0.085902594,-0.5031365,-0.2290488,0.08512474,-0.18028669,0.45876935,-0.10497309,0.34164822,0.67883086,-0.3777396,-0.0148249185,0.0027043105,0.02314939,0.0065939864,-0.13783321,-0.4276261,0.26341766,-0.5278463,0.019988561,-0.13456751,0.82637316,0.05656079,-0.67076474,0.3244491,-0.38062745,0.16714239,-0.1763129,0.6826876,0.62077874,0.49311885,0.24462868,0.77877724,-0.6051379,0.13269511,-0.048738535,-0.3423009,0.060819853,-0.08160555,-0.10607276,-0.35556784,-0.036628954,0.07198462,-0.13002142,-0.06360081,0.6029746,-0.35668468,0.035306074,0.049680926,0.76269096,-0.39089808,-0.013806427,0.59202754,1.1693611,1.1143243,0.027629098,1.099994,0.36767516,-0.2585166,-0.07497408,-0.24964997,-0.7705814,0.22694692,0.33826917,0.07470643,0.29782063,0.10811874,-0.2600795,0.47309986,-0.5826463,0.113534756,-0.20012353,0.2746378,-0.10705019,-0.08546083,-0.4632269,-0.17645095,0.15129709,-0.025651967,0.085104465,0.29236725,-0.28520998,0.3606776,0.0310626,1.4515622,-0.12325177,0.17367464,0.12229053,0.40349242,0.11931164,-0.241436,0.012459715,0.09361281,0.5106384,0.044068154,-0.6893758,0.12107625,-0.19059515,-0.5385357,-0.2951449,-0.28967947,0.004645254,-0.19326659,-0.47254476,-0.13421187,0.015714558,-0.39481673,0.32482007,-2.4583323,-0.047141533,-0.06816233,0.34933648,-0.24767238,-0.24663876,-0.075377226,-0.39012858,0.39796504,0.39843675,0.4424835,-0.5857473,0.5031236,0.4204726,-0.28673553,0.0036333243,-0.5956407,-0.11349325,-0.16212752,0.31933302,0.14536722,-0.13082089,-0.15911415,0.168871,0.47748005,-0.20302178,0.076726325,0.2705182,0.35877132,0.029614445,0.42687738,0.1258489,0.5325626,-0.50140935,-0.18279769,0.4011962,-0.4724553,0.16923505,-0.21961358,0.15819123,0.32811287,-0.39840528,-0.8924299,-0.50273603,-0.17682041,1.3098052,-0.2314319,-0.43544897,0.27753788,-0.117512114,-0.2557751,-0.032531932,0.37971827,-0.21489404,-0.11684804,-0.8215631,0.004784129,-0.1737414,0.36093134,0.013030372,-0.03917018,-0.4377182,0.5764894,-0.17415498,0.646397,0.45972922,0.25775516,-0.20376574,-0.3609494,0.12628083,1.1232353,0.39789346,0.13624196,-0.32497516,-0.12515996,-0.16658163,-0.097872086,0.08050768,0.3688454,0.8029932,0.02038001,0.26994234,0.2087856,-0.11559876,-0.011601168,-0.07316845,-0.36199743,-0.1119325,0.030382443,0.5681343,0.5036156,-0.06383156,0.37351513,-0.08428459,0.2420805,-0.27065244,-0.34891504,0.4447728,0.77658623,-0.09982768,-0.33778164,0.65783656,0.5564558,-0.21976423,0.5390712,-0.65060556,-0.4429044,0.3455435,-0.20329306,-0.33907315,0.24708247,-0.3859708,0.18615104,-0.86564523,0.4371071,-0.23117904,-0.6408095,-0.69528073,-0.3179847,-3.5320303,0.13668247,-0.23685865,-0.19978468,0.07975599,-0.044978555,0.45877847,-0.5495415,-0.41872433,0.11628356,0.11020233,0.73362595,0.15409862,0.033859894,-0.26691115,-0.04638617,-0.31295058,0.19071582,0.24543591,0.109469794,0.15267378,-0.5598662,-0.0036216737,-0.3089458,-0.38454404,-0.00293233,-0.5194246,-0.40570801,-0.22982581,-0.35770556,-0.4199533,0.65966725,-0.17724514,0.10744369,-0.20814818,-0.014878035,-0.059351113,0.3549224,0.08364944,0.08256375,-0.03434056,-0.19123237,0.054018572,-0.30395228,0.28529578,0.030006595,0.3618142,0.43280545,-0.26943952,-0.08882683,0.57373375,0.5497986,-0.087854885,0.78049827,0.49339956,-0.16991459,0.29207906,-0.11925849,-0.22124015,-0.54554397,-0.4475893,-0.005435733,-0.43000373,-0.45569167,0.015235277,-0.39392596,-0.8906367,0.469094,-0.117366076,0.07019324,-0.05573795,0.32642406,0.28963217,-0.061036035,-0.09148957,-0.14573999,-0.03933945,-0.23249312,-0.3873004,-0.8206654,-0.40620956,-0.08308289,1.2947065,-0.08343945,-0.09973995,0.11531102,-0.15470281,0.025406739,0.0420848,-0.026918657,0.29800108,0.36914387,0.0043545086,-0.68430495,0.41112188,-0.37294313,-0.05557781,-0.6202145,-0.016737849,0.60574085,-0.63816184,0.34905466,0.56897175,0.09083076,-0.04565168,-0.64057475,-0.12913875,0.039557286,-0.11846731,0.506982,0.2697838,-0.8671764,0.59717464,0.22131203,-0.3320502,-0.6770782,0.40891466,-0.006095497,-0.22120409,0.0647543,0.22061148,-0.24800175,0.048853535,-0.31604055,0.2348984,-0.4247537,0.30191013,0.24977918,-0.11031337,0.36830807,-0.31548887,-0.09986598,-0.5647927,0.0111937765,-0.4704315,-0.12148152,0.01885738,-0.09524145,0.15651534,0.22606008,-0.10391235,0.44365633,-0.2721432,-0.0063639223,-0.13470855,-0.36423385,0.50393194,0.4720894,0.38180417,-0.41665572,0.6418592,0.037008468,-0.19047895,-0.31863552,0.13967901,0.5639319,0.091094084,0.3992583,-0.08451756,-0.09735911,0.37943682,0.82743806,0.26160097,0.59021837,0.08460506,-0.25084686,0.17360465,0.1772796,0.11643301,0.09961256,-0.32168669,-0.017378982,0.014552951,0.26308563,0.39796,0.03180116,0.66929185,-0.3071146,-0.11554934,0.12758031,0.13640691,-0.19016777,-1.0852166,0.48412788,0.120320335,0.7196886,0.3962712,0.08199768,0.09264999,0.5798567,-0.27812803,0.078187324,0.1452623,0.06668255,-0.4715183,0.43856105,-0.60637015,0.50840825,-0.06384384,0.041839607,0.07722619,-0.08867752,0.5329275,0.72309685,0.038255177,0.10745402,0.011771786,-0.3739082,0.1973235,-0.26554415,0.2906267,-0.568759,-0.24941184,0.7415592,0.38092086,0.30980262,-0.014471217,-0.051139764,0.05059727,-0.140022,0.1300924,-0.09533362,0.10070045,-0.08649418,-0.6620501,-0.23651727,0.43600973,0.057997808,0.039838385,0.058181588,-0.26362267,0.21514578,-0.056700207,0.043186706,-0.0013115645,-0.57905406,0.049358543,-0.42196593,-0.3483874,0.28923625,-0.2778589,0.26037264,0.11903458,0.053395506,-0.5496463,0.13271584,0.17161769,0.71765536,-0.06971156,-0.15844382,-0.31497845,0.035123207,0.3483656,-0.24891016,-0.10605195,-0.38495535,0.05875374,-0.69624215,0.43191424,-0.22447555,-0.27540907,0.28291592,-0.2274153,-0.06030084,0.6244572,-0.19353376,-0.119036116,0.17430934,-0.0797978,-0.28768677,-0.20504738,-0.16612735,0.21819381,0.1696043,0.03811558,-0.052090075,-0.024639416,0.004876717,0.41873127,0.1180346,0.17479496,0.43705386,0.11231289,-0.45830834,-0.16711944,-0.08283673,0.59045357,0.051703013,-0.11620351,-0.59830767,-0.54042083,-0.22523974,0.22377162,-0.20302843,0.3325315,-0.004581396,-0.32876435,0.8068558,0.006289673,0.99032336,0.08269252,-0.3729577,-0.020296521,0.68685085,0.05066008,0.14849451,-0.34247684,0.88843,0.5522837,-0.19016804,-0.25947514,-0.40620327,-0.08201651,0.087917134,-0.22515036,-0.456731,-0.103160314,-0.72402656,-0.20353095,0.27097014,0.37335718,0.03342045,-0.07074983,0.13511579,0.30113715,0.060824115,0.27263457,-0.5771014,0.0032299082,0.30402005,0.13689464,0.015366787,0.15620346,-0.52543366,0.30447283,-0.67330384,-0.012638374,-0.1480514,0.11248732,0.05013385,-0.3177691,0.37650305,0.15963641,0.276647,-0.36100194,-0.19787216,-0.098980315,0.52413744,0.17699386,0.27620646,0.81898713,-0.26787362,0.040157717,0.0052310484,0.45637995,1.1750598,-0.4059836,0.039867274,0.36320674,-0.2733321,-0.77252394,0.26341954,-0.3273196,0.052968018,-0.15082102,-0.46474373,-0.5649568,0.39633915,0.1460478,-0.14924821,0.20993003,-0.5389637,-0.19407202,0.24684331,-0.19994621,-0.2955775,-0.36954206,0.030989153,0.589241,-0.29549047,-0.2147296,0.077373356,0.52821565,-0.21139762,-0.48552817,-0.022760976,-0.4207159,0.30309325,0.015636198,-0.23878536,-0.0299129,0.0027119636,-0.36709887,0.24289624,0.34516615,-0.2931588,-0.07892458,-0.25045437,-0.070692405,0.7023014,-0.11529139,-0.038438026,-0.6204254,-0.430383,-0.99665505,-0.261881,0.6247443,0.1517916,-0.07906333,-0.5292574,0.020394385,-0.073290244,0.015833752,-0.2132307,-0.49587914,0.41417333,0.11227678,0.33521023,-0.02649742,-0.62118614,-0.043262184,0.09270062,-0.45778984,-0.40947983,0.59724116,-0.09339109,0.79686457,0.07220672,0.17406784,0.2689337,-0.60281,0.3133487,-0.27750772,-0.23651457,-0.69934094,-0.051427174,313 +184,0.51744205,-0.16557525,-0.5528868,-0.09729891,-0.16925281,0.22943935,-0.2023794,0.48433718,0.122084565,-0.3322768,-0.14316045,-0.07244648,-0.0017319262,0.36038506,-0.18100695,-0.47898322,0.04669307,0.14213,-0.57942444,0.71578914,-0.46716937,0.29169905,0.031010201,0.2577967,0.3154215,0.17075394,0.13102202,0.0016495108,-0.32129398,-0.3384474,-0.08444525,0.36022106,-0.33487147,0.06544135,-0.21022095,-0.42078984,-0.14278439,-0.5257675,-0.49824885,-0.70560354,0.15961011,-0.85435975,0.71089005,-0.11260154,-0.31224817,0.36282876,0.22819702,0.21136741,-0.104530334,0.0190754,0.19841976,-0.07840608,-0.088110246,-0.10006365,-0.33853424,-0.48872533,-0.58582157,0.07454508,-0.45471328,0.009687038,-0.2034455,0.11167769,-0.28783208,-0.0052770297,-0.19491173,0.44203052,-0.41783693,0.001041766,0.10074683,-0.09642465,0.12492573,-0.6600465,-0.21070054,-0.07886334,0.32790914,-0.15989906,-0.19320671,0.20593381,0.43848366,0.51642895,-0.03277523,-0.25172517,-0.5156785,0.046028927,-0.015085375,0.5484015,-0.21958661,-0.6790152,-0.25000608,0.11944227,0.42627946,0.076622844,0.15024033,-0.07878114,-0.073846854,-0.021179438,-0.3750072,0.51544654,0.5046983,-0.3181181,-0.18913631,0.4495278,0.34592003,0.23165278,-0.23927672,-0.06897535,-0.12491291,-0.5583083,-0.008057381,0.03237593,-0.13822171,0.5335271,-0.18223272,0.23925243,0.45845836,-0.10214748,-0.03189349,0.2850978,-0.012338148,0.033985488,-0.08757284,-0.26081258,0.12773632,-0.41013697,0.036723673,-0.15636362,0.61129296,0.12917192,-0.72642213,0.35976082,-0.42869893,0.12465086,-0.068438545,0.39454702,0.7316291,0.34697372,0.16843864,0.49212354,-0.13665828,0.09969356,0.0115889665,-0.23790474,-0.040726386,-0.18863821,0.09176038,-0.58138543,0.16206105,0.02854794,-0.06565003,0.22668839,0.645354,-0.5866548,-0.24688426,0.22306436,0.85628384,-0.22055271,-0.2598915,1.0531149,1.1361573,1.0095378,-0.015684856,1.0927861,0.25858894,-0.11803135,0.02233134,-0.37403706,-0.4356497,0.22398582,0.24414796,-0.41374665,0.35148957,6.52194e-05,-0.034152612,0.46845877,-0.33443704,-0.17452185,-0.19333169,0.14756495,0.21918215,-0.043046046,-0.4450086,-0.36732382,-0.10348528,0.017083919,0.33233845,0.29930368,-0.21419702,0.4788438,0.00922006,1.5501045,0.0060358844,-0.07048105,-0.04785627,0.44180438,0.21592139,-0.04788815,0.08058972,0.16016054,0.34803674,0.020778839,-0.41737074,0.13143054,-0.280384,-0.43897206,-0.10967251,-0.27319103,-0.2369971,-0.2237258,-0.50857854,0.04333599,-0.052605584,-0.39015463,0.42235318,-2.9672525,-0.3165742,-0.15515852,0.23420572,-0.19038185,-0.4760355,-0.12858397,-0.53164256,0.48270494,0.19605964,0.4981337,-0.6123926,0.55145717,0.1268805,-0.5391775,-0.12511608,-0.59449553,-0.13777004,0.048103355,0.5034164,-0.026829254,-0.17897949,0.3587351,0.19054209,0.5565561,-0.059652377,0.11878251,0.22057524,0.425856,-0.050794832,0.51381326,-0.07588155,0.7156165,-0.23139025,-0.20814888,0.41662043,-0.42972106,0.29136628,-0.17504255,0.21065791,0.4865863,-0.34096876,-1.0072689,-0.5062397,-0.0010006666,1.1635873,-0.09136148,-0.41749084,-0.0012241363,-0.21419811,-0.32397974,-0.025620075,0.39359412,-0.19712272,-0.15597378,-0.7799404,-0.0037683647,-0.1039552,0.015587095,-0.1816242,0.045154158,-0.51494336,0.5957534,0.044360843,0.46720654,0.18462642,0.251215,-0.36052674,-0.48116368,-0.035360314,1.037732,0.5261061,-0.003855145,-0.20526582,-0.024683062,-0.4049366,-0.039445713,0.102653295,0.74093235,0.5270256,0.050891154,0.004031984,0.23418067,-0.014346512,0.20883936,-0.22058313,-0.25796923,-0.2070041,0.18633427,0.65731084,0.6205649,-0.053418234,0.8033077,-0.20099878,0.33705392,-0.25566596,-0.43194532,0.49066934,0.9076718,-0.2305481,-0.39604002,0.3851382,0.469932,-0.09826081,0.34783062,-0.50417197,-0.50455827,0.27054802,-0.18014635,-0.28396347,0.42232165,-0.2887682,0.08352138,-0.93965966,0.30296925,-0.34757745,-0.5438355,-0.6069696,-0.15785584,-3.1164246,0.16314891,-0.13519141,-0.15462631,-0.0957314,-0.3505675,0.07816348,-0.5242754,-0.5703565,0.11302366,0.11115217,0.65868956,-0.14013529,0.087317176,-0.21611395,-0.24593128,-0.17120337,0.25771523,0.110564895,0.47096786,-0.09533162,-0.3760188,-0.10976664,-0.17611074,-0.40131664,0.07313967,-0.7829498,-0.44955307,-0.035664774,-0.5103843,-0.24407601,0.633489,-0.32721978,0.032608323,-0.17813975,0.13996972,-0.06537845,0.20857175,-0.057868395,0.22266549,0.04647668,-0.27474144,0.30525473,-0.19638102,0.21065713,0.041754737,0.3553728,0.43493894,-0.02197233,0.35559654,0.5395767,0.6837536,-0.07135911,0.8418858,0.36885244,-0.13668273,0.26993528,-0.29632515,-0.16387731,-0.51785904,-0.3226344,0.056618404,-0.45252475,-0.44837418,-0.22639489,-0.3472618,-0.80661243,0.57718873,0.0007567207,0.076657206,-0.15625069,0.52062595,0.6871433,-0.24549259,0.119879484,0.061517175,-0.06714392,-0.3959425,-0.33992642,-0.60661906,-0.44140413,-0.14189857,1.0567402,-0.08457085,0.110050544,-0.0120914085,-0.21781506,-0.09803454,0.14121781,0.107745506,0.039701767,0.37686604,-0.36025542,-0.68435895,0.2904105,-0.47215664,-0.12366312,-0.44707793,0.34325877,0.6174772,-0.43719786,0.47771472,0.5567977,0.15920617,-0.21877457,-0.48824355,-0.039836917,0.036790546,-0.044809863,0.35259566,0.21957022,-0.67899984,0.51615715,0.2385536,-0.28104627,-0.6093079,0.64816445,0.12486603,-0.20166321,-0.14574972,0.31366667,0.2831417,0.004740451,-0.36611795,0.23687503,-0.44515368,0.3670718,0.10904596,0.050159864,0.34366184,-0.2759882,-0.18711956,-0.6968675,-0.033756264,-0.48704067,-0.34025708,0.2571201,-0.0030698418,0.35913646,0.06847045,-0.025022106,0.23569378,-0.53315514,0.08261926,-0.112184756,-0.32739878,0.29372007,0.4598528,0.47556102,-0.4923379,0.55923325,0.11037622,-0.072529085,0.08566152,0.06898681,0.49033782,0.022164373,0.4146808,0.1086267,-0.06861701,0.34073144,0.8140741,0.24961667,0.3022122,-0.003861936,-0.24362607,-0.06348314,-0.13325769,0.1920138,-0.05670448,-0.553065,-0.11595914,-0.18644947,0.27896088,0.3936773,0.053831093,0.33480814,-0.12191612,-0.38278607,0.012477931,0.1760367,-0.016216304,-1.492558,0.4250844,0.13180414,0.9130396,0.17404357,0.0020255486,-0.032165386,0.61720335,-0.15081906,0.12190766,0.39014637,-0.016968815,-0.32611415,0.4567181,-0.7744652,0.48893872,0.07494051,0.07252038,-0.037962515,-0.038107388,0.35979825,0.8389107,-0.28942066,0.10049946,0.112653516,-0.3861073,0.10509275,-0.28702193,0.14378262,-0.5319474,-0.21051213,0.79617745,0.48727754,0.31329435,-0.119253196,-0.00089727045,0.16955797,-0.16732177,0.03552235,0.16767338,0.27780542,-0.26647818,-0.7143936,-0.08107621,0.39078015,0.004993822,0.17254023,0.14670639,-0.11581696,0.2588808,-0.16776428,0.0347496,-0.06876202,-0.47772694,-0.040695764,-0.41620082,-0.35514995,0.42192382,-0.33766985,0.19351864,0.18650071,0.06844523,-0.14295033,0.34850064,0.15204713,0.6358879,-0.07378616,-0.28526434,-0.29945153,0.07384478,0.16589643,-0.24083942,-0.12726882,-0.17421418,0.22111592,-0.607304,0.3619981,-0.1143739,-0.29285476,-0.049855214,-0.014048902,0.15128306,0.3724459,-0.07443539,-0.088414796,0.026478497,0.049413405,-0.2948267,-0.09300136,-0.09328873,0.288016,0.34659526,-0.12852195,-0.1282966,-0.028356755,-0.12611079,0.43252128,-0.03104511,0.44068673,0.5189806,0.26597616,-0.21509574,-0.123795554,0.21942899,0.63918203,-0.0969534,-0.13899599,-0.39129838,-0.3495423,-0.32848868,0.23780768,-0.11237014,0.32543358,0.10524429,-0.16046534,0.6223555,-0.13738789,1.3185252,0.07031636,-0.3643258,-0.015149092,0.5181554,0.032063182,-0.10139481,-0.24396655,1.1085514,0.40480295,0.08918524,-0.048661098,-0.42128196,0.050838448,0.12379177,-0.21776527,-0.2764435,0.047978632,-0.53429234,-0.32070586,0.27354035,0.10384249,0.2595289,-0.11905599,0.16563262,0.33319268,0.06263541,0.21392663,-0.5995305,-0.1293075,0.24465951,0.35103428,-0.20454772,0.1484944,-0.5587991,0.2319568,-0.56833977,-0.015649866,-0.23586008,0.17678134,-0.11093758,-0.21343108,0.37012327,0.009759876,0.34141967,-0.38973075,-0.3576264,-0.08593542,0.37794203,0.08103359,-0.02376879,0.4384529,-0.19799678,-0.043420196,0.21369031,0.50607413,1.1074661,-0.27873835,0.07857733,0.3396742,-0.29573902,-0.61062056,0.26449788,-0.28984702,0.3000824,-0.0045368117,-0.19220959,-0.58467066,0.40774506,0.13423282,0.14493296,0.03697891,-0.5041738,-0.0631438,0.32615376,-0.31019047,-0.17495257,-0.43483284,0.009862844,0.46569014,-0.31407708,-0.29371104,0.0011650622,0.3161537,-0.20582822,-0.5969833,-0.03121732,-0.37922922,0.21826838,0.094663545,-0.33478308,-0.2323651,-0.12077082,-0.41929403,0.33710524,0.3571147,-0.3016988,0.05009636,-0.22901908,-0.1942565,0.8857552,-0.31144392,0.32907328,-0.49644873,-0.4506749,-0.71655595,-0.39274412,0.07088551,0.20171942,-0.13533853,-0.7415056,-0.043720294,-0.26121953,-0.40248492,-0.090446115,-0.28289315,0.41008234,0.03678887,0.33322796,-0.19727807,-0.80232114,0.19397761,0.08172771,-0.13621339,-0.48183373,0.44078094,0.040148657,0.729481,0.1352846,0.23353964,0.34736043,-0.3985985,-0.092031755,-0.18197033,-0.06201394,-0.76837856,0.06631105,314 +185,0.27637112,0.023951054,-0.5398916,-0.22834097,-0.18711755,0.23905894,-0.089516066,0.32783088,0.105120614,-0.25269502,-0.07401112,-0.20183498,-0.09795244,0.44610775,-0.16400261,-0.6821953,-0.08488858,0.08763339,-0.6791917,0.4218079,-0.43688667,0.4541573,0.14273329,0.21977834,0.052722763,0.29072487,0.18419807,-0.1492073,-0.11919885,-0.006655089,-0.10919195,0.08360409,-0.7415913,0.20030206,-0.11983851,-0.17502002,-0.07910829,-0.35202128,-0.24438912,-0.634269,0.25518936,-0.5060592,0.53431004,-0.16133162,-0.286795,0.23955567,0.102790385,0.3201151,-0.35568133,0.110679895,0.20018722,-0.042938665,-0.02000411,0.011942136,-0.24121042,-0.4946982,-0.525312,0.13820557,-0.68297005,-0.20548348,-0.1452743,0.15593435,-0.23069498,0.0022336324,-0.30108708,0.51820356,-0.2949368,-0.012453111,0.28098863,-0.07331503,0.10547862,-0.4327944,-0.036467392,-0.08421547,0.30340087,0.028743673,-0.16673444,0.2441831,0.47505495,0.4961272,0.076099016,-0.21167493,-0.14207672,-0.07982264,0.075764224,0.3949534,0.054783646,-0.30855948,-0.15351412,-0.0025143793,0.005712239,0.0531534,0.056186642,-0.4989647,0.041426226,0.10748381,-0.22025135,0.1208769,0.3717256,-0.5061834,-0.35280636,0.49148336,0.4702169,0.121411934,-0.01008153,0.106069274,-0.12965956,-0.5124506,-0.18949093,0.15632278,-0.13649264,0.52368015,-0.11936585,0.15754665,0.66599476,0.009088699,-0.010683942,-0.13865875,-0.13889167,-0.006206083,-0.2816118,-0.12065583,0.0011341035,-0.41487247,-0.03926197,-0.23159203,0.65145713,0.08529976,-0.8431826,0.38623142,-0.5079842,0.121574424,0.06649841,0.5600599,0.8138802,0.30008143,0.029134028,0.7753601,-0.51677287,0.07485667,-0.037160814,-0.26548442,0.17091165,-0.08478082,-0.0057149846,-0.54920506,0.03683432,0.012269099,-0.04758834,-0.025708683,0.19905177,-0.4121589,-0.12341656,-0.053146433,0.63960344,-0.36439997,-0.19342889,0.650829,1.0271573,0.89335555,0.1650771,1.3993633,0.4096325,-0.17357877,0.16503666,-0.48833275,-0.5556707,0.123848654,0.32612145,-0.059785653,0.4030222,0.034261007,0.14300022,0.44939175,-0.23922315,0.2165101,-0.023650905,0.3015889,0.00945454,-0.18199347,-0.308004,-0.32803443,0.2048696,0.016987165,-0.03677392,0.2418315,-0.15860415,0.2508996,0.21928455,1.6789138,0.044193126,0.15034193,0.02573875,0.25079232,0.2818248,-0.26846156,-0.22455445,0.35131726,0.2954528,-0.19351403,-0.51759994,0.0010355373,-0.36156994,-0.4417529,-0.30585787,-0.3469698,-0.06941431,-0.064786784,-0.40798095,-0.14360915,0.10911908,-0.19024353,0.42209834,-2.6839554,-0.16889492,-0.1809265,0.2901039,-0.40396163,-0.26525253,-0.17457908,-0.3638523,0.3661204,0.5337388,0.26210308,-0.55046356,0.31387967,0.20231333,-0.2191825,-0.27447805,-0.6138904,0.09352113,0.04350712,0.19096276,-0.14596061,-0.0970812,-0.2657994,0.30792198,0.46587434,-0.048127748,0.0041082706,0.3237433,0.38920662,0.11223305,0.4941193,0.18894716,0.5967444,-0.10201553,-0.0008610646,0.346741,-0.3408573,0.27991194,0.1984405,0.19682404,0.25090164,-0.5784729,-0.70440537,-0.57224005,-0.45202008,1.0819682,-0.44722512,-0.14534134,0.3431465,-0.0063822987,-0.10746409,0.046484645,0.40114507,-0.014489416,-0.07295736,-0.68121326,0.042531855,0.07902051,0.22724155,-0.17587978,0.19960971,-0.32858175,0.6102369,-0.15151224,0.41194674,0.44112265,0.25302348,-0.09752867,-0.44211423,0.080784425,1.0522358,0.3897427,-0.019389952,-0.083657734,-0.1799273,-0.31494513,-0.1201673,0.10190209,0.3076495,0.6674052,0.057952385,0.024792464,0.22465476,-0.20508114,0.08733442,0.010088495,-0.3850865,0.010112792,0.042642936,0.44065768,0.40307578,-0.23866902,0.5125628,-0.3124139,0.06424239,-0.20545398,-0.52541584,0.5783214,0.66813314,-0.2804752,-0.14400567,0.3557798,0.27423176,-0.25540125,0.3342174,-0.43011743,-0.25400355,0.8660685,-0.07625889,-0.24846989,0.070058376,-0.17678586,-0.026866836,-1.0374949,0.25470605,0.036486506,-0.41556975,-0.48606256,-0.15242094,-3.4574857,0.006317691,-0.09726129,-0.0511046,-0.073624104,0.018321108,0.27174664,-0.4062077,-0.5797814,0.017884266,0.00465885,0.47252998,0.03121422,0.25302574,-0.22734256,-0.2718722,-0.37960473,0.2566372,0.10986091,0.31890425,0.060315236,-0.349263,0.03616357,-0.35700378,-0.508507,0.157877,-0.46768105,-0.50973195,-0.2850078,-0.4901801,-0.3087531,0.7836489,-0.41140115,-0.10049625,-0.19344988,-0.054891206,-0.13094112,0.30584472,0.24540213,0.20630045,0.14490597,-0.099499226,-0.17893621,-0.45602912,0.123404786,0.15974495,0.31536072,0.5245475,0.024641188,0.23608683,0.49193385,0.6178836,0.018115096,0.46115315,0.30637398,-0.088657565,0.39215106,-0.4769879,-0.03731779,-0.5164503,-0.3706877,-0.39242223,-0.364523,-0.545951,-0.20009695,-0.385258,-0.7275171,0.25673714,-0.028749045,0.10455561,-0.019460836,0.34160012,0.31835642,-0.14175068,0.12899399,-0.17842725,-0.24488409,-0.45096081,-0.48941866,-0.6301497,-0.551939,0.3136594,1.1339297,-0.086060904,-0.23565479,-0.16874106,-0.2567798,0.14310837,-0.093112245,0.16335149,0.19477436,0.30912966,-0.198443,-0.7040095,0.41681603,-0.07695875,-0.20158768,-0.61211866,0.050708905,0.6196811,-0.49144718,0.6087189,0.20981884,0.21883969,0.18235627,-0.4242665,-0.14808826,0.18152255,-0.37345186,0.48509243,0.056386754,-0.5121849,0.4267759,0.16482933,-0.058024373,-0.7316878,0.5016706,-0.037661053,-0.12341622,0.12707916,0.3209602,0.060468365,-0.11089712,-0.16111214,0.26171383,-0.53336984,0.17507932,0.50724995,0.08411773,0.52183855,-0.09707775,-0.23047099,-0.53671193,-0.12852535,-0.51414037,-0.32428977,0.025322147,0.28911898,0.17608611,0.029989148,0.07988623,0.41580006,-0.33858633,0.13942613,0.036697533,-0.12701124,0.36177245,0.38904637,0.21173,-0.46312115,0.44497046,0.052364595,0.11960588,-0.23613341,0.03630162,0.3893381,0.3115618,0.1413757,0.10583805,-0.07450256,0.2685934,0.5145698,0.18360707,0.27580172,0.114094764,-0.3499495,0.2617841,0.03965908,0.008618816,0.058918145,-0.17442198,-0.10599424,0.11918783,0.18297027,0.43739837,0.14708449,0.22179817,-0.06837585,-0.054762285,0.24718128,0.17770304,-0.11813385,-0.72927576,0.3933695,0.15837468,0.645591,0.6263954,-0.097218275,0.13913223,0.35737297,-0.37459183,0.18038744,0.42231864,-0.061057653,-0.48083484,0.55960727,-0.5724757,0.4853391,-0.2028955,-0.04235413,0.099750616,0.1817041,0.35351577,0.9839742,-0.07413532,0.035048567,-0.07674928,-0.19041291,0.08295608,-0.29077688,0.087670736,-0.5136526,-0.38208312,0.54492354,0.25014108,0.1951701,-0.4173317,-0.098216504,0.044474863,-0.2558634,0.1475378,-0.06735547,0.019612318,0.07276844,-0.5846067,-0.3881117,0.5164182,-0.22142996,0.039314512,0.17989327,-0.3835439,0.15978248,-0.25329834,0.027535273,0.02016145,-0.59751904,-0.07625417,-0.20135339,-0.29822698,0.23455499,-0.50721365,0.27262726,0.037858356,0.009228107,-0.43980408,0.20085236,0.22440015,0.68658614,-0.082600504,-0.10669644,-0.23568018,0.1436545,0.18733117,-0.28686687,0.028239029,-0.29083163,0.0933592,-0.60445184,0.35403615,-0.02259813,-0.23813261,-0.03302427,-0.11595364,0.036945507,0.45200157,-0.2472121,-0.05328027,-0.13523279,-0.113485605,-0.14080635,-0.016344389,-0.30618146,0.3244497,0.06352065,0.0140812555,0.08213026,-0.0029292027,-0.16040091,0.32275313,0.057431277,0.25415164,0.22081521,-0.0938596,-0.38077322,-0.07826676,-0.043285258,0.19666816,0.3785574,-0.120116234,-0.2576526,-0.15983275,-0.21383257,0.25782365,-0.22507551,0.09214359,0.09280626,-0.4450465,0.7538968,0.20327148,1.3212277,0.11449744,-0.22689615,0.081943415,0.462282,0.15497461,0.04239021,-0.40421066,0.778033,0.63588345,-0.05286323,-0.077109165,-0.25134027,-0.3579146,0.23682429,-0.13251427,-0.2471617,-0.057378672,-0.6888828,-0.31413278,0.035167076,0.18612243,0.03080529,-0.023950608,-0.1402326,0.13585849,0.06646338,0.46886063,-0.36311415,-0.023618404,0.32129008,0.10154204,0.17827721,0.27147463,-0.45143107,0.51390654,-0.8507633,0.27853045,-0.2518521,0.06156925,-0.05454619,-0.20504254,0.18651466,0.10677627,0.29447466,-0.18447962,-0.36551502,-0.26827767,0.7355654,0.20081417,0.28635377,0.83736795,-0.21587452,0.042808108,0.14994626,0.5297028,1.2746104,-0.021077517,-0.011378918,0.35726115,-0.39149603,-0.6679547,0.18718499,-0.3519697,0.11080701,-0.1799122,-0.28327474,-0.30686906,0.20810512,0.014587804,0.03356306,0.048298184,-0.5557206,-0.22453468,0.41035062,-0.34787768,-0.22946778,-0.28437367,0.2038077,0.80572575,-0.38184786,-0.38809732,0.032809965,0.21163766,-0.30402312,-0.6028587,-0.02957083,-0.2869406,0.38923758,0.24715143,-0.3507232,-0.019053075,0.35305846,-0.3935768,0.04690691,0.26746637,-0.4113444,0.014981764,-0.16736838,-0.14687966,0.9907744,0.15800166,0.014845294,-0.56399304,-0.5604551,-0.93632615,-0.28176087,0.30322972,0.004899152,-0.0060803136,-0.52066153,-0.090185925,-0.054950174,0.13665076,0.097818285,-0.48247048,0.33292028,0.15593942,0.35551465,0.015374438,-0.9307306,-0.13394363,0.20209001,-0.04430566,-0.5560987,0.5800101,-0.091999434,0.79486,0.049498238,0.005277113,0.17233251,-0.7147586,0.32796085,-0.36640593,-0.071166955,-0.5315115,0.124049075,318 +186,0.52310276,-0.42703003,-0.5961577,0.03673104,-0.23871638,0.14416271,-0.15245362,0.5798962,-0.030923175,-0.5472267,-0.13709027,-0.11724117,-0.021722184,0.41549942,-0.2031435,-0.42840806,-0.02571953,0.2628224,-0.55722815,0.66636074,-0.32955754,0.36016506,-0.062059656,0.28258374,0.06990194,0.26015824,0.057934113,-0.20309769,-0.25137243,-0.17949009,-0.093599245,0.23898774,-0.47287655,0.24656463,-0.15621424,-0.37115052,-0.012684196,-0.29828072,-0.3059241,-0.7350429,0.11797362,-0.69532937,0.5478477,0.016909337,-0.39263383,0.22727874,0.016143449,0.27952656,-0.300651,0.0984256,0.22805169,-0.11209526,-0.0952029,-0.3564201,-0.1461039,-0.6056294,-0.5759965,-0.060172644,-0.4424488,-0.12200346,-0.048913606,0.17343731,-0.25111204,-0.082351334,-0.20866942,0.41978264,-0.49191573,-0.08775309,0.104392275,-0.046926036,0.22910397,-0.56690764,-0.17753384,-0.24278474,0.14092864,-0.08311617,-0.19601656,0.24999097,0.1576345,0.4679952,0.0374187,-0.13910116,-0.24256773,-0.064103834,0.1306434,0.47655383,-0.15328328,-0.48356044,-0.07463925,-0.12439283,0.17131323,-0.1550634,0.16866861,-0.23081629,-0.116966836,-0.027160231,-0.20010163,0.045253012,0.39417896,-0.31954286,-0.3106845,0.31081465,0.60807437,0.1788179,-0.19806154,0.098807976,-0.10229264,-0.47975233,-0.20274459,0.14461273,-0.09017582,0.55767876,-0.18855406,0.20668268,0.5989758,-0.15215372,-0.005155579,0.0386849,0.029040484,-0.008553973,-0.08774614,-0.5720505,0.28740254,-0.35479593,0.069983535,-0.17439093,0.595887,0.22077826,-0.65165025,0.45148283,-0.5495004,0.0734504,0.03113846,0.4737145,0.63674664,0.563425,0.09781622,0.46050367,-0.24750371,0.10252774,-0.038250707,-0.16514407,0.09506176,-0.23786275,-0.21585006,-0.46892625,0.1530982,-0.029315216,-0.27387065,-0.17036384,0.46247387,-0.62086135,-0.06306268,0.038522944,0.7660087,-0.3127037,-0.04377246,0.6975596,0.87330955,1.0442315,0.08488052,1.1589549,0.30986804,-0.26269335,0.021451639,-0.2471378,-0.5695637,0.20418021,0.35641295,-0.027040299,0.45342207,0.015718056,-0.12195552,0.41054186,-0.29114178,0.086141184,-0.20248416,0.033315666,-0.06181719,-0.09529999,-0.5402002,-0.25584343,-0.16535291,-0.06958661,0.00835943,0.23184499,-0.20549656,0.32639486,0.17847417,1.6538677,-0.18044524,0.042091306,0.15405641,0.393065,0.14782909,-0.11163257,-0.021681791,0.29359967,0.4586993,0.14961602,-0.5061608,0.14058533,-0.16488314,-0.73564243,-0.20657319,-0.22836144,0.012932872,-0.14270423,-0.5673856,-0.18651204,0.08021774,-0.16493091,0.21301273,-2.346876,-0.056640673,-0.0761516,0.27527696,-0.17327932,-0.3994242,-0.05453237,-0.36952627,0.22641902,0.26217708,0.43258947,-0.6478617,0.47132936,0.34804776,-0.40564978,-0.06918209,-0.5919818,-0.17394096,-0.07521068,0.43627262,-0.0355804,-0.013290966,0.11643119,0.024037743,0.37603608,-0.30723172,0.12016271,0.20641705,0.20928858,0.1584817,0.29913706,0.12916976,0.5011204,-0.26853922,-0.13731797,0.39511287,-0.34318656,0.19027065,0.040771168,0.21862753,0.33559456,-0.45889142,-0.83862305,-0.680064,-0.22365803,1.1403441,-0.16380267,-0.2715074,0.096526615,-0.22374357,-0.3956149,-0.18570445,0.31973442,-0.1336976,0.05290666,-0.80887717,-0.025100885,-0.093647875,0.3746423,0.016547177,0.013230248,-0.48917803,0.576623,-0.043693133,0.63711506,0.4274505,0.1352925,-0.12551475,-0.4778959,-0.08809268,1.089281,0.4479298,0.14587098,-0.15496387,-0.21228412,-0.3489994,0.15548763,-0.04780054,0.42335203,0.74402404,-0.03918368,0.06387989,0.18137659,-0.024742085,0.22344495,-0.15296799,-0.3543943,-0.06690804,0.15711135,0.49989885,0.30555496,-0.14205052,0.5632799,-0.2738877,0.53359944,-0.15179352,-0.40879238,0.44754678,1.0957409,-0.2593504,-0.16297117,0.6145497,0.5084515,-0.31004295,0.3922924,-0.6560928,-0.2604373,0.326994,-0.2419743,-0.2432594,0.43561867,-0.23740013,0.36453208,-0.92256254,0.5205266,-0.32171923,-0.57395196,-0.626099,-0.14260203,-2.9557912,0.24866979,-0.118387274,-0.19739218,-0.027903585,-0.13352521,0.39451733,-0.6846342,-0.4559768,0.07220776,0.10952399,0.6023628,0.035981733,-0.086621955,-0.25324047,-0.50410736,-0.11179306,0.2816475,0.090291515,0.26067582,-0.17420883,-0.5293056,-0.081377186,-0.20695959,-0.34452406,0.06568911,-0.8383477,-0.5268383,-0.13691215,-0.52950484,-0.3229896,0.66399133,-0.20353632,0.1170143,-0.09400991,-0.06714587,-0.17593437,0.17342362,0.025362408,0.26092494,-0.015409513,-0.06880323,0.09900867,-0.20348406,0.0819592,0.15472294,0.2240403,0.35970503,-0.2611076,0.18964805,0.58555776,0.68323696,-0.110345356,0.82239515,0.62884253,-0.1810331,0.4301847,-0.17085412,-0.215472,-0.6414978,-0.48122412,-0.020225527,-0.36056516,-0.4695347,-0.046713065,-0.3044772,-0.81674933,0.64997464,-0.17769171,0.0011564374,0.086379446,0.38655424,0.51459366,-0.2019802,-0.06926703,-0.1106592,-0.17631921,-0.392026,-0.41969612,-0.75753754,-0.43002245,-0.020290295,1.3137499,-0.20265032,0.102445886,0.11910228,-0.23890118,0.040890694,0.13804907,0.0140869655,0.11323878,0.4156395,-0.22856797,-0.6999185,0.5260938,-0.10251741,-0.28134346,-0.18333356,0.27398655,0.74830043,-0.7420502,0.42677796,0.39903003,0.01959353,-0.24794383,-0.45325178,-0.22142096,0.096761584,-0.17791905,0.40523037,0.17879707,-0.6364259,0.40176657,0.3223625,-0.36337906,-0.674309,0.466035,-0.034596,-0.24624461,0.09229329,0.35890818,-0.2128289,0.058714136,-0.3728427,0.23585504,-0.48703936,0.19351467,0.37058797,-0.06062256,0.066548795,-0.24452001,0.006066235,-0.8277524,0.070992075,-0.3742927,-0.34809673,0.27575347,0.09067513,0.15379347,0.16030271,0.09234405,0.40889543,-0.4022886,0.1145716,-0.065352455,-0.30612585,0.4056926,0.40348282,0.21321869,-0.30048516,0.48067066,0.014155629,-0.09656267,-0.26822665,0.10614917,0.55329967,0.13995923,0.41759187,-0.07175066,-0.20809129,0.3414942,0.7960406,0.31075805,0.63572186,0.008313123,-0.13353406,0.18503883,0.10598922,0.23079924,0.094274126,-0.3302746,-0.049036987,0.08133186,0.20660114,0.50892043,0.051501267,0.38293898,-0.17100368,-0.24388734,0.040464696,0.21881573,0.035677005,-1.1121627,0.44952738,0.17801683,0.6300704,0.63427466,0.1635094,-0.1487482,0.57542026,-0.32316697,0.1152511,0.3423316,-0.034657247,-0.58375186,0.5372115,-0.64633286,0.33169693,-0.109656766,-0.052911762,0.041991796,-0.17266846,0.5426829,0.885586,-0.061672848,0.11909537,0.0026340366,-0.20194419,0.08360299,-0.34485015,0.05983253,-0.4133721,-0.365132,0.72632116,0.44687155,0.40450957,-0.16596515,0.057169702,0.11754587,-0.14681871,0.37333933,0.14159788,0.25827152,0.018147819,-0.61184394,-0.146302,0.5907497,-0.2443013,0.066687986,0.079526305,-0.5272512,0.2070147,-0.061287235,0.012469991,-0.02052462,-0.6342284,0.01956716,-0.39260644,-0.314178,0.56272304,-0.105340675,0.09672438,0.16362739,0.06874303,-0.2884674,0.29651174,0.13489887,0.62423015,0.12753966,-0.16645207,-0.18209185,0.28789333,0.16365999,-0.24058637,-0.11038415,-0.22937985,0.09673437,-0.60945046,0.3081116,0.11449493,-0.2470266,0.057097897,-0.053650375,-0.011761081,0.43658677,-0.026751598,-0.16964756,0.006404257,-0.011564628,-0.19327196,-0.2562915,-0.15231766,0.2831152,0.15324074,0.026573602,-0.067355424,0.08734996,-0.005008926,0.5697264,0.097411364,0.44382197,0.57593143,0.05398617,-0.4404455,-0.11826232,0.07837917,0.3688702,0.03857853,-0.030678503,-0.31638438,-0.42096606,-0.33231786,-0.023466023,-0.24987565,0.4095537,0.20375586,-0.24866565,0.962081,-0.012116241,1.2301676,-0.121592276,-0.33429763,0.06802109,0.41308016,0.05484677,0.0871844,-0.421737,1.0836129,0.45412222,-0.06312877,-0.097974844,-0.2605362,-0.22379008,0.09598141,-0.24343099,-0.22961079,-0.08146398,-0.6979023,-0.4134628,0.20855877,0.3279297,0.15414084,-0.10191556,0.17553124,0.2964163,-0.0066179195,0.12263704,-0.48660338,-0.025294764,0.38349375,0.2261432,-0.08421723,0.11654563,-0.5273925,0.3823045,-0.64266783,0.18934713,-0.20101975,0.08342401,-0.09682034,-0.43344232,0.21720524,0.11337616,0.23197907,-0.51437736,-0.37943316,-0.23735991,0.5510343,-0.048015416,0.12687606,0.60688645,-0.32748902,0.14510009,0.10743012,0.5069534,0.94957435,-0.3936566,0.006666009,0.42897612,-0.42128894,-0.63663447,0.11983841,-0.21399304,0.20996137,-0.13842313,-0.23002917,-0.66959256,0.2914076,0.27069017,-0.11239778,0.026939234,-0.47114295,-0.061672583,0.5208644,-0.44414523,-0.24871527,-0.30867442,0.3615519,0.593124,-0.5098935,-0.4924293,-0.037833255,0.23748241,-0.45958152,-0.50633705,-0.18309647,-0.43993872,0.46913016,0.23353806,-0.3241242,-0.015669862,0.04764737,-0.41171607,0.09243239,0.34146273,-0.3926268,0.11179863,-0.5221215,0.00039230386,0.8506596,-0.050069496,-0.10901987,-0.47792122,-0.4820458,-0.9157817,-0.5313889,0.49941388,0.25818282,0.0641017,-0.6132191,0.055982854,-0.12609883,-0.13868667,-0.026433144,-0.21720646,0.4602075,0.19764636,0.28624067,-0.10428422,-0.8474013,0.3317013,0.097263254,-0.11104898,-0.527386,0.39859515,-0.12938315,0.9752422,0.09650646,0.21941127,0.26768792,-0.56738085,-0.059617057,-0.1328104,-0.038040526,-0.74210376,0.094809085,320 +187,0.29698697,-0.1312197,-0.5290776,-0.14186904,-0.14783713,0.009669741,-0.0550677,0.5136228,0.30143368,-0.48306084,0.015035484,-0.2712678,-0.036011577,0.45326266,-0.15417649,-0.71418977,-0.0024420181,-0.023767956,-0.5827673,0.60227674,-0.40683264,0.21083085,0.040834162,0.4249318,0.16974616,0.40276322,0.14836663,-0.23817448,-0.09543573,0.044802036,0.01637366,0.07337324,-0.52315134,0.039404266,-0.12238096,-0.33000043,-0.011769978,-0.39965662,-0.43546358,-0.76371896,0.4292668,-0.8671814,0.42197558,-0.03351983,-0.21076539,0.18094331,0.19358058,0.399347,-0.40843385,-0.07906424,0.017588139,0.08363632,-0.06301466,0.011347562,-0.31549254,-0.3574501,-0.6588137,0.060170937,-0.52033114,-0.28284818,-0.26927146,0.13423195,-0.42989558,0.07212968,-0.06851807,0.6209894,-0.44065052,-0.12127422,0.44452408,-0.2961912,0.24589086,-0.505041,-0.10993055,-0.14604323,0.13294971,-0.11478119,-0.12846312,0.366265,0.34649178,0.60876995,0.07835164,-0.19888064,-0.284135,-0.027729336,0.22909811,0.3585931,-0.14594494,-0.58069366,-0.17093499,-0.029837433,0.0911674,0.112492934,0.18781781,-0.36188474,0.0043872753,0.24836569,-0.3269498,0.3603225,0.55414647,-0.362822,-0.36086586,0.28768703,0.51133525,0.19946721,-0.12953152,0.08648365,0.11021933,-0.5030527,-0.14343289,0.06573298,-0.30563673,0.573085,-0.12805699,0.19509216,0.79796416,-0.17465182,0.12569612,-0.11998752,-0.11224601,-0.09007053,-0.44523224,-0.18421389,0.10954188,-0.5253949,0.18904768,-0.2228291,0.76489335,0.36304656,-0.63318765,0.4394494,-0.55181146,0.31244084,-0.09807291,0.50637543,0.72540057,0.31880724,0.25768572,0.72795635,-0.5510689,0.05074553,-0.11583435,-0.38529152,0.048578754,-0.18980889,0.01325446,-0.34830335,-0.087542616,0.10296686,-0.1512958,-0.03888049,0.29801133,-0.54657096,-0.049018245,0.069006845,0.9885244,-0.25925556,-0.013709458,0.76379496,0.9359389,0.95454013,0.030502943,1.342596,0.28051758,-0.28414932,0.4029743,-0.31653196,-0.8493449,0.2691659,0.29401734,0.0074325404,0.2842969,0.0030645707,-0.016861347,0.4928772,-0.48338848,0.26023057,-0.30995938,0.29904082,0.17558047,-0.12217037,-0.17831063,-0.13086183,-0.008462427,-0.048204105,0.08632536,0.18569747,-0.082181826,0.30229637,0.08165085,1.6061499,-0.07871151,0.111398146,0.14022246,0.56435615,0.186387,-0.07312369,-0.11123467,0.14593501,0.4192011,0.11629652,-0.7274963,0.04971216,-0.43797252,-0.4685758,-0.13448569,-0.3797698,-0.035636153,-0.035189103,-0.49190533,-0.15683956,-0.17899282,-0.2893251,0.32986468,-2.6085994,-0.22949256,-0.30414644,0.2640111,-0.40345192,-0.1369698,-0.02715195,-0.5109246,0.33995527,0.46137053,0.38389668,-0.63124883,0.46215388,0.5407305,-0.45650056,0.068715975,-0.6539565,-0.13619515,-0.06972324,0.33672333,-0.0006851991,-0.05722006,-0.06484076,0.18645607,0.48198274,0.15412016,0.022718191,0.3068029,0.32234046,-0.0057476363,0.55967915,-0.03499668,0.5223196,-0.3291855,-0.08746922,0.33879617,-0.44596282,0.20211323,-0.087903984,0.12904464,0.45285237,-0.45429546,-0.81237435,-0.6899883,-0.31545863,1.1801566,-0.15960759,-0.32349735,0.45874995,-0.30440986,-0.030128289,-0.2026292,0.60688823,-0.045395803,0.04445599,-0.80696464,0.09106603,-0.18576585,0.11080552,0.04432227,-0.00837602,-0.27491638,0.6374967,-0.06311998,0.4753827,0.30556476,0.16623001,-0.22115326,-0.5407301,0.12906058,0.8850794,0.36308628,0.15572186,-0.14170009,-0.2328452,-0.5191447,-0.24839936,0.12037928,0.42806536,0.89376056,-0.04787011,0.1278602,0.29032263,-0.04218725,0.08474953,-0.09921816,-0.48899618,-0.12168992,-0.036642965,0.54221666,0.53396744,-0.31578743,0.3717041,-0.045565996,0.28241348,-0.113106474,-0.41838962,0.62176883,0.75851643,-0.2608507,-0.28329474,0.5469628,0.41464362,-0.43799093,0.5390726,-0.6318752,-0.21065448,0.6062374,-0.16927834,-0.519874,0.16768196,-0.35632902,0.15398791,-0.98024255,0.35836276,-0.34969962,-0.23652633,-0.43174335,-0.2275173,-3.505524,0.11975539,-0.3716231,-0.14787586,-0.22989407,0.0809614,0.35398722,-0.5104033,-0.81943244,0.19110604,0.122232914,0.6944678,-0.020615654,0.15682255,-0.25555724,-0.08130991,-0.40610334,0.07578453,0.22654991,0.25288305,0.09101704,-0.519071,-0.15912797,-0.13334863,-0.4279324,0.20484398,-0.48743805,-0.5366772,-0.2948496,-0.653308,-0.31652805,0.7764052,-0.18787499,0.07777799,-0.1988618,-0.0266994,-0.22557841,0.4078626,0.14971104,0.006911977,0.17004183,-0.04777142,-0.016460033,-0.33233774,0.22256298,0.06456546,0.46115315,0.15846367,-0.06076123,0.25009382,0.5310621,0.7525002,0.049703218,0.8119249,0.52127653,-0.06758852,0.42099735,-0.35946324,-0.28374636,-0.5122288,-0.37560362,0.09459473,-0.36657712,-0.41714963,0.06798346,-0.39822325,-0.77382183,0.5067781,-0.06269643,0.354783,0.03837693,-0.022989241,0.4482731,-0.1848488,0.008801904,-0.012682387,-0.1252703,-0.620231,-0.20077196,-0.80902064,-0.5563284,0.29124004,0.9808582,-0.14351459,-0.16206487,0.0012025714,-0.34813705,0.03720445,0.09745566,0.04994879,0.1337371,0.5151908,-0.120339386,-0.68155384,0.40985745,-0.07590679,-0.059004672,-0.6330746,0.07235694,0.5774775,-0.7062637,0.6338646,0.26554808,0.022985578,-0.07419659,-0.38167718,-0.1740933,-0.14196195,-0.17560284,0.3057157,0.104663275,-0.7801405,0.332111,0.3885072,-0.22990759,-0.73735034,0.43284073,-0.061232965,-0.044512432,-0.01737405,0.365241,0.18445136,0.012671795,-0.22170852,0.2133319,-0.47441503,0.16797143,0.28457227,-0.15278816,0.54668045,-0.1422653,-0.21580859,-0.7684298,-0.11727434,-0.5369257,-0.11060317,0.3369916,-0.01092482,0.058715828,0.03981335,0.10529861,0.40750802,-0.017587693,0.10032435,-0.0017610948,-0.37430537,0.47399652,0.49790946,0.5173289,-0.49857962,0.72142726,-0.01269172,-0.014450761,0.22758694,-0.04844657,0.4142085,0.09887255,0.41765437,0.24398027,-0.28565156,0.316291,0.89613056,0.1602632,0.48362893,0.18757702,-0.1885067,0.3270961,0.17474446,-0.0876064,0.112226315,-0.527672,-0.051179428,-0.075519085,0.18716845,0.5569112,0.25391656,0.37738293,0.019297687,-0.37467873,-0.06931231,0.0481617,-0.21209612,-1.1711959,0.3400134,0.18036911,0.85821146,0.5285708,-0.013400849,0.05734936,0.59441245,-0.060151923,0.23277698,0.41464508,-0.1279086,-0.609555,0.5904981,-0.6243956,0.59968114,0.06007266,0.06123052,0.048415717,0.14175917,0.4383759,0.8440571,-0.08625135,-0.034576975,-0.13680753,-0.32839668,0.3637256,-0.46455076,0.102508865,-0.38536942,-0.23541275,0.5049667,0.5181091,0.28244242,-0.13925554,-0.02895918,0.06156124,-0.13795559,0.26642254,-0.19158225,0.016070686,-0.07674362,-0.6638557,-0.43285182,0.46592906,0.036675826,0.2270209,-0.029040825,-0.15275009,0.23623611,-0.22331381,-0.1259159,-0.08209501,-0.67704004,-0.050515223,-0.21606283,-0.4760659,0.38731357,-0.18165499,0.25320584,0.1908764,-0.036414705,-0.55653507,0.28466827,-0.19973275,0.67036885,-0.30154905,-0.17113757,-0.4632634,0.036491513,0.26943907,-0.32998917,-0.021946399,-0.3163584,-0.053323988,-0.5039581,0.42133135,-0.06283551,-0.30502743,0.05053773,-0.29237232,-0.06366104,0.60618377,-0.26378748,0.031183934,0.0064475616,-0.19057609,-0.27561325,-0.24379632,-0.13469087,0.2744463,0.032910608,0.08362251,-0.10427605,-0.26003462,-0.0031120102,0.53510404,-0.07008565,0.22791621,0.44067618,0.086954765,-0.39860025,-0.2334054,0.3088226,0.50549406,0.18561126,-0.17158785,-0.34145638,-0.4548539,-0.26638734,0.23150733,-0.09162008,0.39215127,0.03555728,-0.6084437,0.7948479,0.13322715,1.1989778,0.14203358,-0.35905582,0.1076642,0.44220668,0.05050976,0.031455263,-0.39340344,0.83928424,0.5407241,-0.16143554,-0.21731396,-0.416859,-0.014059595,0.15403658,-0.22097112,-0.16632871,-0.08367739,-0.65892607,-0.28770846,0.2805441,0.26364312,0.20739444,-0.008266195,0.042959746,-0.05467499,0.010563604,0.4890671,-0.48945364,-0.19177777,0.29210943,0.18044242,0.16164133,0.19066219,-0.49637908,0.3876496,-0.52570903,0.003346302,-0.16086522,0.14717625,-0.06994665,-0.3212903,0.26891595,0.013482501,0.47295177,-0.32885453,-0.53121126,-0.33102164,0.6105784,0.23015226,0.17275056,0.7523673,-0.30936432,-0.082306094,0.13204946,0.6886537,1.0671084,-0.11674916,0.02254396,0.19180226,-0.28889912,-0.7089951,0.35529345,-0.4626295,0.24367872,-0.04116789,-0.18201491,-0.6110807,0.27121437,0.21356939,-0.23560658,0.1689573,-0.6064938,-0.5553919,0.09258018,-0.23795009,-0.23252596,-0.3656502,0.067963295,0.61641985,-0.37764266,-0.07499191,0.216781,0.2676915,-0.15103278,-0.6028975,-0.22422408,-0.3243784,0.28574792,0.18724193,-0.43418306,-0.040905822,0.098215036,-0.5438339,0.19597377,0.14449488,-0.46103022,-0.022367867,-0.18587667,-0.19401623,0.911659,-0.08712553,0.20571777,-0.581246,-0.45570728,-0.9140924,-0.3046865,0.5792324,0.018883113,-0.023733504,-0.53652585,-0.10121923,-0.019721666,0.19671442,0.18965897,-0.5306038,0.41246125,0.058767024,0.51899016,-0.021688597,-0.6243515,-0.0036898772,0.12148221,-0.07418752,-0.6016155,0.62358296,-0.046118923,0.89211655,0.1187881,0.07257424,0.2688045,-0.47107697,-0.16715236,-0.33350596,-0.36456245,-0.564738,0.14972264,323 +188,0.30228963,-0.067536615,-0.61117786,-0.035531808,-0.26573083,-0.064878546,-0.20360711,0.41646656,0.34674075,-0.1707299,-0.052368116,-0.06739779,-0.0369872,0.45779413,-0.060805257,-0.5448853,0.051436923,0.28298208,-0.678479,0.61842084,-0.32939288,0.18633138,-0.18126479,0.45332596,0.08117664,0.28183442,-0.14844713,0.13570844,0.037938762,0.07475125,0.034088325,0.51093554,-0.38199443,0.19786279,-0.08939607,-0.18409903,-0.10133674,-0.35674217,-0.43007407,-0.7697305,0.2869449,-0.6232589,0.49989498,0.09052244,-0.40948746,0.28862298,-0.012559128,0.3260685,-0.4290345,-0.1550901,0.16833948,0.013067499,-0.19217148,-0.33174202,-0.23090945,-0.13979167,-0.5448702,0.03431153,-0.52050143,-0.11474277,-0.15897094,0.11070768,-0.31495664,-0.020307425,-0.017535688,0.45668986,-0.34524456,0.12716693,0.3023847,-0.12252576,0.06515804,-0.6487952,0.015107163,-0.042767055,0.10445411,-0.09126687,-0.33939978,0.23666193,0.029105889,0.4395044,-0.10226436,-0.2213745,-0.24276228,-0.009153014,0.029072406,0.3374849,-0.35008967,-0.23278645,-0.07135718,0.21511024,0.18998788,0.1412939,0.013525034,-0.354053,-0.083169684,-0.09237435,0.088366196,0.26787478,0.5449074,-0.17912616,-0.34173062,0.22690304,0.72695804,0.2222189,-0.057153378,-0.0247034,0.08399193,-0.41532505,-0.2063442,-0.13534822,-0.10610564,0.3118169,-0.086852424,0.22403921,0.5891579,0.029212456,-0.2123461,0.0038327554,0.19201483,0.19492492,-0.43350798,-0.24577735,0.28595728,-0.46383277,0.15448877,-0.0016989231,0.57375133,0.06651761,-0.7327625,0.38686663,-0.5003886,0.15855104,-0.005205989,0.430751,0.92714757,0.38193414,0.20703378,0.6040738,-0.32562926,0.24594785,-0.18481292,-0.13955553,0.10732679,-0.10132345,0.12025955,-0.59033954,0.033474136,-0.17331609,-0.39014733,0.35158613,0.23833865,-0.5424963,-0.23690227,0.1913242,0.7063724,-0.2276927,-0.06586785,0.553786,0.9539655,0.78729707,-0.054502495,0.90898293,0.25671116,-0.014838946,0.3173351,-0.39216316,-0.770457,0.17852338,0.21864462,0.08720796,0.2819311,0.056348983,-0.018051052,0.42902225,-0.42213386,0.01341029,-0.14166951,0.3361045,0.08462833,-0.019277323,-0.44966698,-0.22266485,-0.059240714,0.12352817,-0.046742983,0.30809337,-0.2118712,0.2889603,-0.06541576,1.7343643,0.033648513,0.10360111,0.18804295,0.3086189,0.3963517,-0.25484577,-0.25522897,0.44530943,0.11500812,0.11061291,-0.4330023,0.1495758,-0.18887001,-0.304165,-0.14891529,-0.28006262,0.09174118,0.0047603846,-0.4627481,-0.22286303,-0.13000561,-0.2764262,0.5174356,-2.7613757,-0.13433895,0.043289464,0.40021452,-0.19839947,-0.3665157,-0.21308972,-0.3790944,0.31919482,0.15194508,0.45965427,-0.48397547,0.32196113,0.28646678,-0.67500025,-0.03843862,-0.47957578,-0.14392552,0.12050735,0.29861924,-0.03455289,-0.12226272,-0.13268822,0.18979038,0.31939638,-0.15125482,0.08527488,0.4838197,0.29604182,-0.034295257,0.15570845,-0.11928617,0.4404431,-0.3834409,-0.2999851,0.37763005,-0.3106095,0.29676917,-0.06596773,0.08001206,0.46133634,-0.36346725,-0.9426861,-0.5029944,0.16802908,1.0664839,-0.18455474,-0.41533342,0.29222503,-0.59776515,-0.27307388,-0.035794415,0.36568722,-0.0064921738,-0.16454814,-0.83585167,0.09181433,0.023353163,0.38336807,0.14099006,-0.11601322,-0.3752306,0.51778394,-0.06741055,0.3750178,0.32153803,0.20221825,-0.28988954,-0.32656878,0.06394223,0.72478133,0.40683848,0.1192498,-0.16845912,-0.25228,-0.28134027,-0.02442816,0.13915142,0.45887792,0.58154994,-0.10262265,0.15652958,0.28211316,-0.083547845,0.023711676,-0.21062762,-0.19310741,-0.016887184,0.21180178,0.49513426,0.7187721,-0.34184462,0.388716,0.047681674,0.20005375,-0.04578597,-0.6093611,0.3850073,1.0282813,-0.021898678,-0.28506863,0.6141826,0.21021661,-0.3197912,0.40851003,-0.44134542,-0.25156307,0.40500185,-0.16752394,-0.3751737,0.14147547,-0.21482168,0.16177021,-0.7170395,0.29513258,-0.15717758,-0.542775,-0.62511504,-0.108385324,-2.3310475,0.17890634,-0.19226268,-0.031430293,-0.07487663,-0.039363578,0.036404658,-0.6154147,-0.56045556,0.16364631,0.1801366,0.6873206,-0.13943352,0.071840115,-0.09185394,-0.38985437,-0.18717526,0.16047117,0.21837786,0.38584998,-0.04179628,-0.4792455,-0.26024652,-0.0077425283,-0.30595475,0.044015847,-0.6718754,-0.26601583,-0.17405178,-0.7337442,0.055885695,0.5700726,-0.1352825,-0.06756589,-0.2862086,0.0596783,0.0605548,0.16931339,0.23351519,0.2389027,0.2365024,-0.05199574,-0.0629208,-0.26854694,0.15175332,-0.036772713,0.25760084,0.32546112,0.0033570607,0.25704995,0.52810127,0.70700866,-0.3021717,0.6936047,0.618517,-0.069116354,0.3225636,-0.21404769,-0.27259102,-0.3123212,-0.25334257,-0.101382,-0.3812788,-0.22804989,-0.022612253,-0.40215114,-0.77884716,0.44121447,-0.108417444,0.010781018,0.07782133,0.14633113,0.55415,-0.32073134,-0.040023785,-0.16127115,-0.08546756,-0.47082293,-0.255841,-0.4163609,-0.46429595,0.28403023,1.1968576,-0.31525293,0.16986969,0.074276224,-0.21178801,-0.08164825,0.09749189,-0.03366215,0.29632422,0.48301938,0.04374529,-0.47119674,0.28959855,0.0028747718,-0.22019455,-0.6347248,0.23113492,0.51365334,-0.4827757,0.63967854,0.17113905,0.035748623,-0.04931965,-0.7560411,-0.20001793,0.10465148,-0.30151716,0.37049302,0.31510755,-0.77375257,0.35140908,0.40583757,-0.446959,-0.7825789,0.30045378,-0.10997973,-0.45133114,-0.1804676,0.29967013,-0.014694242,0.034748387,-0.21609305,0.36812544,-0.20262697,0.17739828,0.16376933,-0.20878181,0.25002244,-0.40545312,-0.23730436,-0.67384315,0.04706062,-0.39022824,-0.36227942,0.33600846,0.17452072,-0.053438485,-0.0429802,0.02190332,0.5042005,-0.34709466,0.13186951,-0.28792915,-0.43368715,0.31641278,0.3681293,0.496821,-0.37563187,0.45572993,-0.09833268,-0.1147048,-0.028960986,0.024042448,0.51128966,-0.15563901,0.33429334,-0.062230434,-0.10966372,0.16026713,0.70501,-0.05241013,0.3226122,-0.032059293,-0.08929922,0.08616205,0.037446473,-0.082123406,-0.15126638,-0.43642855,0.21594359,-0.12095537,0.27811736,0.385049,0.12948203,0.19584343,-0.08939627,-0.3807239,-0.0041997987,0.21974629,0.094834134,-1.2206252,0.3185463,0.1524811,0.78148043,0.4674832,0.23330647,-0.09889078,0.6745668,-0.019327195,0.13996795,0.22608009,-0.15837017,-0.4721294,0.5397867,-0.752425,0.554636,0.08672541,-0.057344563,0.20298934,0.095581226,0.45713273,0.5913858,-0.16888756,-0.104771785,0.07545719,-0.1763557,-0.04232893,-0.31654963,0.112333484,-0.5410715,-0.46742734,0.5807108,0.46051693,0.29874876,-0.3575401,-0.036635138,0.18750477,-0.13844071,0.19157551,-0.025072671,0.17855808,0.1330848,-0.5173091,-0.14329652,0.46878394,0.0789954,0.08571377,-0.10805825,0.009250458,0.23424596,-0.2052824,-0.01661256,-0.0855357,-0.5831078,0.070105806,-0.37781546,-0.3623718,0.69681627,-0.09770151,0.118723504,0.13901539,0.067796454,-0.35893136,0.6300167,-0.16197486,0.8463513,0.11525492,-0.04648091,-0.19696967,0.36865452,0.00961562,-0.12436746,0.11257656,-0.37151432,0.03604994,-0.6095677,0.5065494,-0.01876772,-0.42566153,0.1003985,-0.15145646,0.17008893,0.5058453,-0.05774231,-0.17250869,-0.30999756,-0.22775477,-0.4113706,-0.48216906,-0.07473314,0.21868242,0.16021475,-0.037062906,-0.1410472,-0.1725494,-0.04204632,0.5268556,0.0059990166,0.23895302,0.33699927,0.25939587,-0.254424,0.13867177,0.26910475,0.46907392,-0.023215326,-0.099207446,-0.20628701,-0.24300112,-0.49587372,0.16803265,-0.18039784,0.38720408,0.07317186,-0.12682821,0.6428217,0.08023332,1.1044323,-0.07253752,-0.17181972,0.25631434,0.36414236,0.048953712,-0.09096472,-0.21231535,0.645353,0.6662939,0.12233008,-0.04547813,-0.22868414,-0.09549061,0.16218792,-0.2848414,-0.074622676,-0.0053297984,-0.63537353,-0.27034104,0.24174531,0.2689431,0.2096817,-0.2154511,0.08517989,0.08617205,0.016866283,0.049416613,-0.38219124,0.015145751,0.26745874,0.29750377,0.09566087,0.13457307,-0.53010374,0.34917924,-0.47332343,0.10671651,-0.32298306,0.20989323,-0.1219024,-0.28150946,0.11029264,0.04863085,0.31164965,-0.38959947,-0.24253592,-0.28147164,0.47222036,0.3267432,-0.014203036,0.5353522,-0.27852443,0.06831012,0.012706797,0.35715064,0.7148693,-0.3073115,-0.19529176,0.2787083,-0.16714348,-0.6237618,0.3467333,-0.3353101,0.109748475,-0.092477165,-0.15727496,-0.5699256,0.10844255,0.11323867,-0.037762824,-0.16293094,-0.5588506,-0.015426401,0.03604005,-0.21567263,-0.01828601,-0.29998836,0.07342458,0.5737865,-0.11859384,-0.36773527,0.18430719,0.17616227,-0.121059135,-0.48084918,-0.044456173,-0.37872323,0.11842289,0.019968595,-0.4247591,-0.10566531,0.11604146,-0.40239194,-0.098468654,0.16977008,-0.261455,0.031774655,-0.28213492,0.05528536,0.9710909,-0.19515565,0.3115118,-0.3790244,-0.5105522,-0.8824994,-0.11772953,0.45233482,0.008860902,0.12042214,-0.8451001,-0.013149317,-0.20944138,-0.10632014,-0.025216661,-0.29609373,0.37122986,0.10640207,0.22084396,-0.3152853,-0.70551693,0.22983447,0.063714996,-0.21360445,-0.45779502,0.44635424,0.0009944042,0.9286452,-0.048393957,-0.0068104537,0.26962045,-0.48575154,0.0915556,-0.20636736,-0.16282424,-0.5044738,-0.08977772,324 +189,0.4723291,-0.2547022,-0.47536516,0.08065033,-0.28366867,0.060169544,-0.047948044,0.47721753,0.18480532,-0.56847125,-0.17736055,-0.20936012,-0.124511845,0.30531654,-0.08101569,-0.24994698,-0.0017548918,0.24749486,-0.42611688,0.6941175,-0.09531517,0.30543548,0.0025567054,0.29338866,0.23641892,0.37867916,-0.034761466,0.06319739,-0.1574215,-0.20094903,-0.1094171,0.18460563,-0.4541607,0.14993048,-0.18737489,-0.36180618,-0.112838596,-0.57257307,-0.5490733,-0.76919264,0.29778644,-0.9367761,0.38983127,0.025385005,-0.26454777,0.17300323,0.10985992,0.45668787,-0.09975708,-0.17342506,0.31732577,-0.14310595,-0.09044706,-0.3316051,-0.115977205,-0.37287915,-0.5800566,-0.06244169,-0.22185558,-0.41348585,-0.35875824,0.11669641,-0.37326902,0.024248285,-0.08029755,0.6673232,-0.41555417,0.06602389,0.28537455,-0.25259286,0.27902928,-0.70627606,-0.16360418,-0.151895,0.14405264,-0.048447687,-0.13748175,0.3589641,0.24748497,0.3436344,0.011446039,-0.15256971,-0.38388878,-0.10809504,0.24348503,0.4997485,-0.19721648,-0.39758456,0.044930972,0.24386498,0.031865645,0.07801144,0.25262734,-0.38695815,-0.11510923,0.20673521,-0.07367916,0.3305151,0.4285139,-0.15409604,-0.111573555,0.38352472,0.60536736,-0.004040897,-0.25002417,-0.05580793,-0.02839518,-0.35004845,-0.17358647,-0.11276891,-0.13248862,0.55797595,-0.030172165,0.22467543,0.6078592,-0.14002466,-0.12752149,0.04458981,0.089126445,-0.09172937,-0.2164128,-0.20992078,0.29290664,-0.29173842,0.21832515,-0.080212004,0.62818515,0.11289085,-0.7288749,0.34459266,-0.5754536,0.14103056,-0.008557232,0.2893296,0.55001014,0.48427543,0.4246254,0.698987,-0.43553144,0.15687281,-0.024313482,-0.3641063,-0.053702462,-0.27028802,-0.04690563,-0.44746578,0.040981594,0.004413291,-0.2950453,0.031073371,0.29405078,-0.5331144,-0.12714453,0.2394248,0.92105764,-0.24204789,-0.13151196,0.688864,0.9500899,0.98520976,0.042296685,0.91795605,0.14634007,-0.28923222,0.29820248,-0.24292472,-0.5461482,0.21929325,0.37860903,0.1898462,0.18918103,0.14677301,0.034550138,0.37345684,-0.3579529,0.08576138,-0.14661719,0.07126935,0.2297524,-0.37275764,-0.46686858,-0.1647282,-0.21966502,0.10183807,-0.11769251,0.25149095,-0.14624144,0.29891044,-0.06626165,2.00765,-0.05593392,0.13726778,0.257898,0.43044916,0.12626001,-0.22505979,-0.017239511,0.4112068,0.17519997,0.2635349,-0.4499188,0.064902455,-0.3159707,-0.50337803,-0.06314275,-0.28872144,-0.09144299,0.12529267,-0.47374108,-0.27272272,-0.22351967,-0.28860754,0.42070305,-2.6488168,-0.1575322,-0.17637922,0.43785042,-0.30641568,-0.4157794,0.016727941,-0.47168127,0.3468963,0.3934019,0.48457706,-0.6094207,0.2722675,0.334177,-0.60238534,-0.11183326,-0.4535068,0.01247524,-0.014491503,0.37257868,0.025032649,-0.089880094,0.21329263,0.12339899,0.4280724,0.03030668,0.13610642,0.56668437,0.3009082,-0.09470068,0.5618919,-0.045358546,0.4075088,-0.15901737,-0.15872374,0.34916306,-0.26115316,0.1805975,0.12009041,0.008678023,0.48872757,-0.46424752,-0.8138573,-0.75339264,-0.12619792,1.1632113,-0.16569906,-0.48503545,0.28792608,-0.42610738,-0.2648534,-0.21493016,0.45824078,0.053152062,0.072783664,-0.7621746,0.016644584,-0.11892208,0.12595224,0.05971255,-0.31495592,-0.48237407,0.82097596,-0.08317668,0.67869633,0.47342423,0.1723332,-0.17246047,-0.20730034,-0.017336603,0.9649051,0.50724,0.12820937,-0.15624015,-0.18893029,-0.3508984,-0.18490547,0.2332879,0.50724214,0.5329515,-0.08169326,0.13082156,0.31427008,0.029152978,0.038135115,-0.25142112,-0.22560187,-0.04042423,-0.03714227,0.39955267,0.6576601,-0.22476953,0.4805308,-0.04132544,0.35562545,0.031992026,-0.46009535,0.25085086,1.0762687,-0.14071731,-0.35163194,0.5150299,0.47965086,-0.2815054,0.34416446,-0.3713183,-0.13971536,0.48575374,-0.30001396,-0.5902592,0.3272319,-0.30439875,0.24626127,-0.71149373,0.34976253,-0.17139533,-0.77263796,-0.45553175,-0.16309436,-2.6473231,0.347349,-0.22272977,-0.28465226,-0.0061336635,-0.10901297,0.04831947,-0.6868431,-0.4599929,0.20003453,0.09324678,0.7301458,-0.06787912,0.16239497,-0.20240273,-0.28958318,-0.2571211,0.15255055,0.021514535,0.38522798,-0.0184846,-0.41227433,-0.17830276,0.013186238,-0.54587454,0.053100966,-0.602906,-0.36366397,-0.24317604,-0.56564516,-0.27617925,0.6190078,-0.22671334,0.11596611,-0.21628635,-0.06289543,-0.13569112,0.15850472,0.19129324,0.21243855,0.054904137,-0.053314067,0.069926135,-0.21808037,0.26302767,0.09671827,0.3810641,0.27231917,-0.19390622,0.2683634,0.46770763,0.7624412,-0.21144573,0.8237482,0.62028956,-0.15255126,0.32130024,-0.16878286,-0.31862208,-0.64545447,-0.42893,0.055599865,-0.32170093,-0.4872257,0.02314278,-0.36067238,-0.75487536,0.46949074,0.01235948,0.19022922,0.12017471,0.14756186,0.6217087,-0.37871793,-0.20951435,-0.102090515,-0.15252063,-0.64545697,-0.15503362,-0.53236747,-0.5713539,0.19662322,1.0364145,-0.28126532,-0.05711643,0.09413871,-0.22848246,0.081028484,0.23890418,-0.013044282,0.19216587,0.4487478,-0.19456737,-0.6645317,0.50355285,-0.1562646,-0.14468005,-0.58992016,0.44681653,0.5529603,-0.57761234,0.643856,0.10740736,0.090144224,-0.14902979,-0.5130397,-0.20542067,-0.15782118,-0.22034965,0.28658256,0.22266307,-0.84260076,0.10267196,0.4096647,-0.34945768,-0.69960076,0.47375372,-0.13232033,-0.25084302,0.007856925,0.22345072,0.1300305,-0.10480613,-0.18318875,0.14105417,-0.4493943,0.19614683,0.3714429,-0.108215824,0.07079767,-0.18906577,-0.15661792,-0.8374518,0.2674181,-0.5091919,-0.28240508,0.21994047,0.21204878,-0.028301688,0.050213184,0.07721977,0.3428585,-0.09112056,0.12353791,-0.16903457,-0.3639946,0.60154337,0.36508074,0.4232797,-0.51963156,0.53244966,-0.090890564,-0.20805451,-0.11003992,0.021455895,0.46184912,0.12165095,0.2715193,0.07717597,-0.20627454,0.079578094,0.7133779,0.1770051,0.62251943,0.18287176,-0.10085179,0.16483277,0.13113968,0.14531787,-0.12171183,-0.8062576,0.29546958,-0.23539262,0.02594301,0.4332219,0.18893504,0.18624893,-0.17085336,-0.3760701,-0.05957048,0.19011049,0.038276833,-1.2177265,0.3223618,0.076693535,0.8240401,0.39937526,0.028104996,-0.056720335,0.7220665,-0.06734367,0.16034046,0.28860274,-0.19587716,-0.6276171,0.53033596,-0.7782936,0.3335186,0.11471501,-0.057996396,0.11085018,0.051558793,0.31617793,0.6489128,-0.25585762,-0.049281012,-0.19006465,-0.24629848,0.07235555,-0.44526994,0.13153954,-0.5406434,-0.47813115,0.5536276,0.53426576,0.43694106,-0.1080052,0.053820685,0.05777408,-0.14941858,0.37595078,0.06645964,0.2279798,-0.045630198,-0.6068767,-0.12673348,0.48327446,-0.3293485,0.11633546,-0.021729605,-0.18066049,0.3501123,-0.067229524,-0.13187109,0.037211124,-0.72283375,0.16340517,-0.34770653,-0.46071714,0.45651072,0.13641001,0.24737677,0.09200916,0.03996973,-0.21603385,0.48804948,0.029506203,0.91164756,-0.09847755,-0.15986212,-0.24871324,0.27148834,0.028856762,-0.08505816,0.21296176,-0.22817022,0.050114747,-0.64378524,0.42444924,0.13820383,-0.3156619,0.151938,-0.117042504,-0.032763716,0.49303952,-0.1795776,-0.1190823,-0.080238216,-0.1076585,-0.14992896,-0.34995022,-0.038070116,0.2877734,0.053725775,-0.030454079,0.0059713842,-0.05039813,0.0047370433,0.4351378,-0.06834209,0.42037186,0.31359345,0.065158464,-0.34364647,-0.13429756,0.25670737,0.37492257,0.13497041,-0.06619314,-0.2650066,-0.5610638,-0.49104166,-0.07631086,-0.036016107,0.60052884,0.25184587,-0.19332825,0.7139051,-0.089031704,1.2503164,-0.052073773,-0.3622173,0.05002427,0.47997296,0.039963443,-0.15856618,-0.24003477,0.7954448,0.63982546,0.06989578,0.034006793,-0.37441558,-0.12818907,0.1286343,-0.19457152,-0.12844217,0.098442644,-0.6012152,-0.35876614,0.05733943,0.2625961,0.25979263,-0.20162317,0.09416116,0.39330015,-0.1109089,0.1753843,-0.26708806,-0.40518162,0.1649198,0.11084537,-0.009425639,-0.050739054,-0.5984067,0.41437906,-0.50979805,0.11279203,-0.15418468,0.1761934,-0.14861499,-0.19189182,0.14827207,0.03025968,0.45099443,-0.37704355,-0.31867638,-0.18972392,0.57710665,0.07283139,-0.030508721,0.64737517,-0.31506544,-0.028999066,-0.08430251,0.4444814,0.9103895,-0.26639184,0.05906919,0.46316865,-0.3554159,-0.51522267,0.36821344,-0.0430351,0.23999344,0.08935911,-0.16346772,-0.48366994,0.24319798,0.1941247,-0.22936437,-0.020259237,-0.5453734,-0.25707486,0.21278551,-0.5297031,-0.060692072,-0.3120054,0.2396579,0.55946136,-0.2995281,-0.56190515,0.052339476,0.0036607902,-0.031778064,-0.39706796,-0.06114849,-0.25108367,0.24962345,-0.013281242,-0.4500974,-0.22269353,0.051959336,-0.33806762,-0.029304655,-0.047011264,-0.37293187,0.025635328,-0.41309607,-0.21866633,1.0705001,-0.08882246,0.15264206,-0.4328967,-0.43453887,-0.7392463,-0.5024846,0.32497385,-0.09649567,0.023800876,-0.65500057,-0.042258725,-0.14232926,-0.061175458,-0.29068738,-0.17181474,0.35976642,0.13742885,0.3493262,-0.26888976,-0.7799364,0.26559407,0.11450817,-0.0038086057,-0.5804827,0.4214175,0.04899978,0.7470295,0.09154533,0.17035526,0.40974694,-0.56711066,-0.005136426,-0.16684608,-0.19427976,-0.5265363,-0.05009888,325 +190,0.49948055,-0.0238417,-0.49510527,-0.18442877,-0.31917864,0.1850405,-0.11134346,0.15927099,0.28020236,-0.15777375,-0.11095209,-0.0391907,0.07872755,0.44460022,-0.12500328,-0.9007195,-0.029822933,0.17536281,-0.7139922,0.464587,-0.5683752,0.36366922,0.24774402,0.49759254,0.07231165,0.35674983,0.24830088,-0.17015941,-0.061126452,0.17870186,-0.09765283,0.36131305,-0.74848396,0.029133331,0.023680124,-0.18835928,-0.02040246,-0.42126352,-0.23254254,-0.71098906,0.43083853,-0.7484582,0.5342744,0.058249593,-0.351613,0.07888095,0.037444744,0.16790184,-0.45387542,0.14696214,0.10622434,-0.29376698,-0.0647867,-0.09306329,-0.18804213,-0.52902853,-0.6287097,0.09736527,-0.6107714,-0.17115021,-0.37255606,0.1991292,-0.41438586,-0.014714555,-0.22945628,0.3845149,-0.43683174,-0.057779912,0.30062833,-0.24244003,0.052639093,-0.28775138,-0.1663778,-0.16380431,0.37639996,0.034767523,-0.29018593,0.2956792,0.38209572,0.64990765,0.2260503,-0.39173144,-0.25945312,-0.06585528,0.14019057,0.44351634,-0.113217086,-0.3384349,-0.29011658,-0.05455079,0.05709728,0.3118976,0.0118915085,-0.478007,0.054063305,0.19872884,-0.1200514,0.2451035,0.46700063,-0.45125076,-0.28175002,0.23250842,0.3502038,0.15059145,-0.015063594,0.21058041,-0.048277665,-0.6614115,-0.29878917,0.23863997,-0.1490669,0.712226,-0.15597068,0.19762047,0.84309655,-0.16371064,-0.03492662,-0.30067283,-0.18008766,-0.06922017,-0.29928502,0.0008493344,0.20869182,-0.49399635,0.09591801,-0.18678853,0.7099453,0.10823557,-0.7664251,0.27772963,-0.533394,0.35774204,-0.16536684,0.8379677,0.90221137,0.16106935,0.34648317,0.90029526,-0.6390377,0.012664795,-0.023935974,-0.50553185,0.10233824,-0.084755614,0.11507029,-0.42968094,0.08346113,0.11081131,-0.03406407,0.06518437,0.4035723,-0.46378598,0.022487683,0.027264543,0.666164,-0.40578508,0.021805359,0.92356753,0.9933132,0.9543418,0.15169482,1.4923335,0.4872247,-0.1758332,0.13936989,-0.25968233,-0.69414276,0.123121835,0.31230354,0.13673757,0.44415396,0.10970008,-0.0043967743,0.4776169,-0.34847754,0.016992813,-0.19142802,0.2065021,-0.04940219,-0.05567307,-0.43607506,-0.27762908,0.15663837,0.13931808,-0.02737159,0.33467987,-0.07538594,0.49990892,0.0680792,1.260116,0.11876961,0.034227468,-0.0838302,0.31342372,0.26655182,-0.03638698,-0.102884196,0.41633293,0.52233356,-0.0349287,-0.6532041,-0.019162042,-0.31689024,-0.4122698,-0.19434991,-0.43958086,0.08563808,-0.022566387,-0.4489584,-0.106506035,0.08814346,-0.25953805,0.5495641,-2.400758,-0.19986853,-0.10455809,0.22733113,-0.08077462,-0.25614586,-0.21220651,-0.5011194,0.26153833,0.43168932,0.36390507,-0.784508,0.2631586,0.3362954,-0.36319834,-0.11365615,-0.83447784,0.014071214,-0.06415357,0.3684545,-0.08340551,-0.21879046,-0.17850457,0.25525707,0.69354314,0.13218357,-0.036505654,0.15282473,0.5644503,-0.014262215,0.5309786,0.14077899,0.6044177,-0.10089723,-0.32139978,0.29802898,-0.15800816,0.33412346,-0.0051639318,0.048732653,0.32964212,-0.5302217,-0.9058869,-0.6089084,-0.373056,1.1766135,-0.51110035,-0.27434132,0.39483124,-0.044902787,-0.14825515,0.039660707,0.46783572,-0.19813886,0.033228587,-0.7203466,0.14320324,0.00012606382,-0.0514599,-0.1207849,0.1800198,-0.31114212,0.71856415,-0.26722792,0.22563228,0.40953732,0.20055602,0.011688495,-0.53784955,0.20702444,0.84226197,0.32266867,0.15215017,-0.16329359,-0.23782167,-0.025994655,-0.19522706,0.17481318,0.5451069,0.8739694,-0.04711087,0.11246427,0.33367553,-0.030240918,0.09277722,-0.055925608,-0.3394694,-0.06263842,0.0034157832,0.56259525,0.6432299,-0.21689312,0.36291492,-0.16550432,0.20909771,0.006385541,-0.4335219,0.57981426,1.1137475,-0.26058537,-0.13556172,0.65681106,0.4044057,-0.4610621,0.52575874,-0.56466764,-0.18436667,0.6404925,-0.10120936,-0.40988588,0.15780805,-0.32868734,0.106412396,-1.039757,0.3105683,0.11886751,-0.39337966,-0.35336825,-0.20460172,-4.4022994,0.2537042,-0.3649247,0.02852158,-0.17322172,-0.28348783,0.38807243,-0.58360696,-0.5846529,0.035820387,0.023674557,0.36610183,-0.1556784,0.14197312,-0.2804493,-0.18128125,-0.22804458,0.12225429,0.1870821,0.3519874,0.046532042,-0.4015194,0.067915276,-0.33061358,-0.43053395,0.03371417,-0.58685195,-0.5537695,-0.14879933,-0.4568923,-0.4029309,0.72789997,-0.28358543,-0.022600535,-0.4252864,0.013513636,-0.23006605,0.4200299,0.20021947,0.21211487,0.038516022,0.07809402,-0.17161311,-0.2520761,0.307121,-0.0741923,0.22185637,0.34121493,-0.15246789,0.20594081,0.42848566,0.6596243,-0.13649859,0.6673702,0.4304891,0.03456463,0.25143453,-0.426883,-0.2975184,-0.879798,-0.5314066,-0.39686537,-0.59545213,-0.6166818,-0.2514641,-0.4887715,-0.7702816,0.49894992,-0.0314278,0.21828127,-0.1765068,0.31788686,0.44888574,-0.18865451,0.043429073,-0.14030154,-0.3064002,-0.5940932,-0.3206621,-0.6925347,-0.6425,0.10985065,0.93094367,-0.17142604,-0.13529973,0.055545554,-0.21775962,0.0417499,0.094280444,0.22689384,0.2504137,0.45372915,-0.10278829,-0.71811366,0.57834667,-0.1923768,-0.09636014,-0.64512926,-0.0095822355,0.4979556,-0.7591904,0.7451633,0.28015646,0.30540943,0.32486856,-0.54157615,-0.56489843,0.10190721,-0.14557621,0.8056257,0.25508583,-0.6607451,0.5421261,0.25630754,-0.14443801,-0.66912925,0.43610764,-0.112409614,-0.27848503,0.23099136,0.46814394,0.04108292,-0.15517883,0.05259789,0.18085892,-0.49956653,0.2857262,0.4022393,0.024001244,0.3673208,-0.032979656,-0.28542846,-0.6755244,-0.054128442,-0.6363786,-0.23602703,-0.04031964,0.11763477,0.051667873,-0.08440514,-0.04251929,0.5444491,-0.38186672,0.17194055,-0.03352971,-0.28909287,0.19043182,0.57212335,0.29548985,-0.573667,0.5907428,0.03253649,-0.014921355,-0.107337624,0.0964335,0.42496452,0.19771881,0.30029255,-0.19439252,-0.061204202,0.17589182,0.5674646,0.094043575,0.36458912,0.15683158,-0.1768278,0.49771458,0.30079016,0.14583562,-0.063355334,-0.17178209,-0.023402708,0.10338337,0.1745366,0.5206099,0.25884372,0.20967847,-0.055232428,-0.060663916,0.23172718,0.17802098,-0.033605687,-1.0864605,0.29960454,0.2660243,0.4849339,0.6235098,-0.04516737,-0.044273805,0.3623868,-0.52544475,-0.021458486,0.44924963,0.03574002,-0.45413944,0.5299875,-0.5109438,0.43845272,-0.34470648,-0.031099562,0.13200285,0.33388013,0.30152136,0.87982917,-0.09697426,0.08119342,-0.09041022,-0.14911304,0.13161747,-0.33272496,0.042539306,-0.56709707,-0.33886585,0.57205695,0.35905057,0.30256706,-0.39109403,-0.14114743,0.12034723,-0.23700182,0.10947596,-0.14199035,0.063496456,-0.002356708,-0.69959706,-0.37785783,0.55322814,-0.120035924,0.026757594,-0.044138215,-0.4388811,0.2138605,-0.23559052,-0.20836864,-0.05834871,-0.72840106,-0.011680929,-0.3471817,-0.54170734,0.31618658,-0.40456468,0.27922973,0.25283882,0.082328714,-0.5189261,0.13724722,-0.08601221,0.9779654,0.0022576333,-0.1770582,-0.40222663,0.14699961,0.44679448,-0.27731675,-0.10544474,-0.3407692,0.02831205,-0.37532672,0.5068644,-0.18669844,-0.3169625,-0.07765029,-0.13920084,-0.1317784,0.48493508,-0.3831358,-0.1413864,0.06494078,-0.04707526,-0.12654632,-0.098068856,-0.41419023,0.3684516,-0.055257082,-0.08064639,0.02016554,-0.09144419,-0.110547535,0.4915934,0.11116589,0.22143812,0.25368986,-0.09070549,-0.3666384,-0.022143865,0.15642187,0.27876908,0.10873009,-0.07511111,-0.33854622,-0.38233665,-0.2244194,0.08513213,-0.20689222,0.23135278,0.14174551,-0.43038997,0.870089,0.35786757,1.2708677,0.20988645,-0.2981922,0.11990602,0.6169694,0.05483679,0.1471961,-0.29568174,0.98789763,0.6330881,-0.239393,-0.28308553,-0.43597373,-0.14734316,0.14233813,-0.347185,-0.11591119,-0.17388275,-0.6424859,-0.26403847,0.06200839,0.18582249,0.14565569,0.18722536,-0.10867388,0.08852612,0.05366207,0.5646869,-0.44459376,-0.20520471,0.31579885,0.1285554,0.10943912,0.28137258,-0.26742622,0.5213567,-0.54156476,0.07666031,-0.4383404,0.20235397,0.02302045,-0.32738787,0.17899236,-0.058621358,0.34426916,-0.33896485,-0.32034808,-0.24635926,0.6839836,0.17974804,0.25117669,0.8369539,-0.36201584,-0.04969826,0.11495766,0.5626796,1.4898168,-0.09099009,0.04405079,0.2160589,-0.2185669,-0.5322311,0.12504107,-0.42056084,-0.024899105,-0.2655228,-0.4026511,-0.5816069,0.27716866,-0.014846222,-0.09433182,0.14169723,-0.4670745,-0.26129943,0.43681648,-0.13213229,-0.22500545,-0.35575935,0.4938193,0.807699,-0.504997,-0.42010134,0.06783938,0.1768651,-0.19652194,-0.6558982,0.030211182,-0.28231862,0.39739957,0.18111563,-0.4395526,0.02239856,0.33064523,-0.35171717,0.15901938,0.51674896,-0.24588583,0.20479326,-0.22986431,-0.27515164,1.2042824,0.028249653,0.18572523,-0.7001457,-0.5413606,-1.1166465,-0.35630414,0.3698455,0.16265042,0.07955503,-0.5224015,-0.10615444,0.037380684,0.035267457,0.10512307,-0.47890696,0.44744027,0.054122407,0.45884064,-0.013144132,-0.7326835,-0.1496606,0.14609972,-0.15853293,-0.57196057,0.5951753,-0.111474425,0.58230966,0.15670384,0.079771645,0.09730562,-0.65971595,0.11279208,-0.355213,-0.18207069,-0.72834224,0.052255176,330 +191,0.3975237,-0.07150329,-0.37568504,-0.17809719,-0.08516022,0.18670535,0.051087786,0.20031443,0.1602347,-0.45328128,-0.14289382,-0.21793784,-0.037558928,0.23534212,-0.14112745,-0.71354216,0.026568813,0.044633094,-0.41519582,0.44458625,-0.3540242,0.46782735,0.06462173,0.17934126,0.015812986,0.30725697,0.22985741,-0.49139982,-0.0867916,-0.08409158,-0.43269774,0.24890684,-0.42088667,0.14007989,0.001689138,-0.14502475,0.17884614,-0.38792905,-0.5108391,-0.59667957,0.30653828,-0.6253421,0.31575212,0.12065748,0.006586945,0.11939819,0.098318234,0.2823253,-0.32164112,0.1523381,0.19872113,-0.10353247,-0.15182178,-0.16128829,-0.21652195,-0.344328,-0.4430938,-0.04866946,-0.31780046,-0.26655287,-0.2768013,0.12442238,-0.31546253,-0.17524938,-0.12115169,0.397554,-0.34848264,-0.047455527,0.31936958,-0.2514603,0.11615434,-0.42184526,-0.02101477,-0.10097873,0.31147778,-0.19795217,-0.12603761,0.26571727,0.24838065,0.4529963,0.03171306,-0.173752,-0.16398522,-0.304407,0.20489079,0.5969963,-0.06266329,-0.5789079,-0.010473662,0.121365465,-0.10984366,0.13604896,-0.108568475,-0.3364816,-0.15190485,0.060025472,-0.38158095,0.40159303,0.45884272,-0.29066047,-0.36023575,0.33574417,0.39253846,0.07251481,-0.044481795,-0.009118382,-0.012731711,-0.5398729,-0.17935453,0.3437721,-0.23159285,0.40782607,-0.15345572,0.2753436,0.7689363,-0.3058462,0.14415625,-0.0012309928,-0.042844772,-0.07293643,-0.12394075,-0.14703225,0.014772203,-0.41752538,0.209519,-0.06689657,0.998794,0.27970687,-0.6629678,0.34377778,-0.54973084,0.23854719,-0.1765074,0.5454281,0.42230785,0.27212146,0.21901588,0.6916106,-0.43693224,0.2224384,-0.059716955,-0.5578845,-0.13032986,0.026020868,-0.07770292,-0.374108,0.04962994,0.018472092,-0.046005096,-0.01468896,0.08569247,-0.53820693,-0.0074515264,-0.023530383,1.0374392,-0.32095584,-0.069071226,0.36184436,0.71391416,0.82548785,-0.0011953284,1.181196,0.28668445,-0.42269713,0.17707856,-0.5365856,-0.71328276,0.2718832,0.36155623,-0.15673567,0.15534566,0.05584713,-0.012856289,0.10051725,-0.40495187,0.1081155,-0.26754177,0.17307694,0.16506037,-0.038028765,-0.3283302,-0.2791872,-0.24216934,-0.1240214,0.206535,0.11766553,-0.2296668,0.23739551,0.10012891,1.675573,0.044113025,0.12332026,0.019814488,0.4560518,0.20502551,0.13200365,-0.12315815,0.3600029,0.43600863,-0.008005978,-0.53648674,0.12334321,-0.17931496,-0.45656356,-0.13598938,-0.3775288,0.017013526,0.09279288,-0.32188943,-0.052154724,-0.020876152,-0.2973751,0.55241126,-2.6325538,-0.03298125,-0.037020598,0.3186801,-0.27484924,-0.171335,-0.09547026,-0.47462866,0.23697582,0.32033947,0.46751276,-0.6826034,0.3226555,0.47157648,-0.37714037,-0.18995911,-0.5777642,-0.080811776,0.008450834,0.2915432,0.109573886,0.11114666,-0.11106954,0.05834182,0.3114722,-0.0715834,-0.091209635,0.1401679,0.41239733,0.36692566,0.48186558,0.12735294,0.54955167,-0.12175811,0.012547811,0.28683832,-0.30986813,0.33211645,-0.028948935,0.0055847485,0.24679992,-0.24552004,-0.7234194,-0.581801,-0.41732642,1.1776069,-0.30613512,-0.07914909,0.28485096,-0.08577294,-0.056112964,-0.15215294,0.36113983,-0.1469159,-0.25427708,-0.66530186,0.042702984,-0.04518908,0.31850746,0.037900444,0.0094304085,-0.29162318,0.60617983,0.009349815,0.48429304,0.19799541,0.14212793,-0.06593062,-0.4508133,0.04379253,0.883637,0.22115466,0.1974313,-0.12338282,-0.26862943,-0.3539821,-0.084052995,-0.013880565,0.5369209,0.78444785,0.018356405,-0.025568822,0.34196264,0.029801916,0.03357291,-0.17013659,-0.2999111,0.05516522,-0.13714235,0.5925187,0.2123818,-0.2088829,0.4063973,-0.048267324,0.351662,-0.17007415,-0.2683362,0.488107,1.0759902,-0.13462241,-0.14695859,0.36396107,0.51757604,-0.2836405,0.22050005,-0.6481441,-0.19269614,0.6327212,-0.22621472,-0.39225397,0.26566425,-0.2986227,0.18570973,-0.94653475,0.34290722,-0.122075066,-0.3348341,-0.44506106,0.012144616,-3.6819835,0.08839456,-0.22138461,-0.20880452,-0.002501905,0.19660306,0.059323795,-0.37822267,-0.40632802,0.13534297,0.06290306,0.5220281,0.026392397,0.27768275,-0.21144775,0.071772605,-0.3040108,0.23291093,-0.06277493,0.22332077,0.07305042,-0.36986414,0.06400825,-0.16562973,-0.3198239,0.27479073,-0.58733463,-0.46542695,-0.06617065,-0.5351183,-0.37080434,0.6928216,-0.4483175,0.011752057,-0.07613249,0.031693738,-0.21203865,0.29114106,0.24646486,0.071482845,-0.11904378,-0.00861674,-0.02023882,-0.29388937,0.4244088,0.08534301,0.4145659,0.27261314,0.16127832,0.051870964,0.4297633,0.46153912,0.1025851,0.6420562,0.363669,-0.1130003,0.26647747,-0.39692992,-0.21094173,-0.40250745,-0.4124436,0.030091293,-0.26377937,-0.4500021,-0.21599586,-0.32514736,-0.5887404,0.22428589,0.11226447,-0.02817371,0.025658352,0.16494998,0.4816853,-0.050605647,0.11728409,0.14182258,-0.08586432,-0.510521,-0.31656665,-0.513169,-0.26363727,0.25757644,0.93337035,-0.26227704,-0.18700117,-0.19504131,-0.23303379,-0.14570346,0.08531074,0.05980779,0.23867242,0.41495356,-0.2257769,-0.6997548,0.5673041,-0.21730119,-0.19195525,-0.56743824,-0.037663747,0.57754904,-0.78211904,0.40512192,0.36857426,0.11240221,0.19547011,-0.36199817,-0.39802292,-0.025835522,-0.17601785,0.113893285,-0.056319434,-0.42164436,0.367181,0.2821097,-0.21947546,-0.5960319,0.4770513,0.15542358,-0.4319893,0.1339811,0.24163246,0.035450887,-0.1114821,-0.19380389,0.1262134,-0.34632942,0.31411782,0.31175593,0.059396382,0.14493258,-0.24506398,-0.16014461,-0.68109876,0.08379965,-0.3633526,-0.23300692,0.24579613,0.230742,0.22502325,0.14159614,-0.029419461,0.33657983,-0.36455253,0.07162856,0.0046151797,-0.13163462,0.38838515,0.34555727,0.27791226,-0.38040054,0.53392094,-0.042781353,-0.02853196,0.010998908,0.16028409,0.41138807,0.11103609,0.2511174,0.039964788,-0.3678562,0.38990974,0.86274517,0.21306726,0.3313237,0.042774476,-0.122960836,0.4457725,0.07238314,0.019723928,0.2336883,-0.46466258,-0.21557833,-0.10874675,0.07065126,0.4874536,0.16815631,0.3199773,-0.03455817,-0.3110834,-0.031814363,0.26677552,0.10447655,-0.9341244,0.48411044,0.23674384,0.7600806,0.46869743,-0.11868728,0.14360644,0.53311574,-0.18253899,0.24027802,0.238111,-0.17049149,-0.68472517,0.43988875,-0.3653225,0.5461585,-0.056396443,0.00076292356,-0.02321763,-0.13214023,0.15452847,0.9475878,-0.2057382,-0.0076713553,0.019487357,-0.28259087,0.073850244,-0.45654404,0.028419351,-0.607928,-0.3392231,0.4665928,0.4290952,0.16951455,-0.010921833,0.036029406,0.06412108,-0.080479816,0.06234839,0.025004847,0.010472457,0.06465672,-0.6902135,-0.32182708,0.65806574,-0.13221832,0.012610569,0.0031197309,-0.087511525,0.32875144,-0.25577337,0.09095213,-0.18797868,-0.45684782,-0.033199914,-0.17702547,-0.39001957,0.29194048,-0.18181437,0.39573383,0.21759316,-0.04875592,-0.2773839,0.32426924,0.29472092,0.6320308,-0.18118666,-0.26158106,-0.59670395,0.056149125,0.13717183,-0.22187114,-0.14860535,-0.25819814,-0.009778794,-0.6039381,0.45549238,-0.06204732,-0.25154364,-0.028153025,-0.34514764,-0.13061567,0.50481254,-0.13361771,-0.06252658,-0.057099443,-0.0658498,-0.12000385,0.13971682,-0.2526024,0.20733318,0.20994309,-0.13297032,-0.106156535,-0.2306317,-0.19571649,0.24833424,0.050034363,0.34624067,0.30857268,0.14381236,-0.21626432,-0.20568012,0.08226196,0.41445115,0.13550635,0.007043918,-0.13325767,-0.23255037,-0.27571762,0.11659694,-0.22315863,0.22671907,0.1566094,-0.4721673,0.57474667,-0.076718934,1.0716474,0.08760688,-0.23611106,0.047427654,0.5275183,0.11874812,0.15121908,-0.3984333,0.93830216,0.48844433,0.045825697,-0.25039682,-0.2660496,0.09529778,0.09677962,-0.072721735,-0.17310412,0.11421348,-0.62831944,-0.367939,0.21994543,0.13643204,0.2790785,0.114222385,-0.19008414,0.065787464,0.0320928,0.4459314,-0.50148517,-0.18282346,0.21049976,0.13233203,0.22041076,0.11423716,-0.46321467,0.4945941,-0.43583393,-0.021165077,-0.2750939,0.18414968,-0.20047115,-0.14378026,0.2406968,0.03890345,0.42964602,-0.35379842,-0.40152943,-0.30248314,0.4431558,0.09147652,0.24237706,0.56848526,-0.20010081,0.009637054,0.0842899,0.6198083,1.0146875,-0.25327867,0.08759887,0.48497722,-0.4698731,-0.44453427,0.16440462,-0.23291269,-0.026082862,0.032066356,-0.21446246,-0.43643734,0.30872306,0.12942472,0.044661563,0.09863238,-0.53612036,-0.36292598,0.38699716,-0.3233553,-0.38994235,-0.4749742,0.33184892,0.7218378,-0.41806185,-0.12827642,0.15437719,0.077755995,-0.2704678,-0.57872033,-0.089424625,-0.27901152,0.40827364,0.17481579,-0.13009925,-0.13909617,0.04453582,-0.35950556,0.28253892,0.2638916,-0.45101956,0.060712203,-0.14730431,-0.17563751,0.8473063,-0.15242554,-0.104579575,-0.6619312,-0.2351457,-0.72675985,-0.44446403,0.7130831,0.11540447,-0.0880353,-0.41370928,-0.20715943,0.21622147,-0.13536559,-0.13466296,-0.46119526,0.4397359,0.06499594,0.3719184,-0.04648087,-0.83476216,0.021690782,-0.015681235,-0.40367392,-0.65445644,0.46063772,-0.14388633,0.8018017,0.043186136,-0.082368836,0.40404028,-0.3491331,-0.15317497,-0.3125758,-0.24046065,-0.7518081,0.28566635,334 +192,0.43767393,-0.18851957,-0.4614236,-0.11479755,-0.17811541,0.22396812,-0.136764,0.49045113,0.10598154,-0.34354478,-0.023857385,-0.20797464,0.077185705,0.31596893,-0.21087265,-0.49698687,-0.101775125,0.08584682,-0.6652114,0.7151217,-0.31009772,0.14730111,-0.042062078,0.34529305,0.11974076,0.20026328,0.064712755,-0.15000239,-0.13165034,-0.11294006,-0.08434602,0.29874244,-0.4340723,0.08906601,-0.15590353,-0.23281425,-0.015304166,-0.34654891,-0.33905077,-0.61561936,0.31203926,-0.74875146,0.47775328,-0.07691827,-0.30803272,0.42827517,0.07405898,0.2492374,-0.31087768,-0.05961521,0.02913766,0.08618286,0.015980184,-0.16527233,-0.15347125,-0.4667281,-0.50942916,0.026866976,-0.5595637,-0.17603892,-0.14782304,0.051156428,-0.28444082,-0.0019176344,-0.21228752,0.51163846,-0.48830637,0.100436226,0.25578827,-0.038952604,0.26261422,-0.5357437,-0.15979925,-0.116564356,0.24448167,-0.09289351,-0.09108417,0.18991505,0.2216048,0.44249195,-0.14481905,-0.084323026,-0.19113657,-0.18347944,0.2504221,0.41575,-0.098867096,-0.63967294,-0.09125898,-0.037445474,0.20692028,-0.0032466173,0.20273593,-0.14649585,-0.1086726,-0.082065105,-0.34728643,0.25424093,0.49181226,-0.37310725,-0.34587008,0.34047633,0.4219395,0.31369746,-0.19711263,-0.016707739,0.015916266,-0.41216856,-0.05284906,0.14699939,-0.23842134,0.577782,-0.14821632,0.18582651,0.5292842,-0.12007084,0.21218869,0.05176042,-0.0021712035,-0.17695716,-0.17565516,-0.26189452,-0.011951212,-0.35570046,0.10299258,-0.23011331,0.6840496,0.21893956,-0.5775907,0.34342533,-0.5316214,0.15071093,-0.015899578,0.40015686,0.7182178,0.34588483,0.04246491,0.48838702,-0.28902414,0.020217432,-0.16446663,-0.25179482,0.12844223,-0.16609669,-0.035696246,-0.49447268,-0.028577086,0.019802006,0.01959885,-0.08825298,0.23747487,-0.46091262,-0.1099569,0.085934035,0.78810734,-0.2651513,-0.020541092,0.70087606,0.98444706,0.9132181,0.07155803,1.101975,0.17095463,-0.17538397,0.2389364,-0.362663,-0.7561112,0.247201,0.33635345,0.1089453,0.32397926,0.01105392,-0.08112332,0.37292272,-0.3216487,0.13340402,-0.258794,0.23814802,0.15821487,-0.04407807,-0.258814,-0.31417337,-0.05917424,-0.09694603,0.14891773,0.2252362,-0.16932511,0.37112358,0.098354004,1.4971967,-0.104072444,0.05892353,0.12404805,0.444465,0.20269164,-0.08835268,-0.047942113,0.42137736,0.4895108,-0.026843674,-0.5933636,0.20540166,-0.25936648,-0.42821988,-0.07466326,-0.42686167,-0.10142939,-0.010525282,-0.52862746,-0.0820838,-0.059885275,-0.16663907,0.30652115,-2.9708142,-0.09433214,-0.2854406,0.27960998,-0.26334053,-0.2622164,-0.090617225,-0.5091805,0.31520233,0.32378152,0.4132808,-0.55660266,0.42495987,0.30644146,-0.37329456,-0.0667595,-0.6264649,-0.24018615,0.011399199,0.49371007,0.010503308,0.14600421,0.13083942,0.22809441,0.48013335,-0.012623,0.14520556,0.19384791,0.3833395,0.06882261,0.44800642,-0.016974585,0.50297886,-0.2620047,-0.09695121,0.25907758,-0.25149542,0.3840495,-0.038449354,0.16765776,0.37947956,-0.3219801,-0.7547292,-0.6445419,-0.20922917,1.2969418,-0.31050345,-0.37840596,0.19535516,-0.30682436,-0.2216823,-0.22462222,0.4550292,-0.08982829,-0.11167819,-0.7530247,0.039070394,-0.12008535,0.197287,-0.045885388,0.0212603,-0.36518496,0.574232,0.017847626,0.5217409,0.2504177,0.21092539,-0.06477269,-0.36674652,0.06391179,0.78226197,0.40891215,0.012827728,-0.16770044,-0.21953084,-0.39727643,0.10412083,0.033038627,0.5884663,0.5690346,0.07098036,0.24880429,0.17428027,-0.0953274,0.124058574,-0.14317152,-0.22518918,-0.10952354,-0.019964011,0.49341652,0.41650918,-0.20862731,0.4174127,-0.091743484,0.19096793,-0.19698375,-0.41422606,0.52649206,0.7297999,-0.28218663,-0.21480674,0.5548185,0.60942996,-0.24177149,0.32110876,-0.47318885,-0.1674437,0.48668867,-0.22595184,-0.29804856,0.40514573,-0.30762896,0.1618875,-0.92747974,0.28683713,-0.44477972,-0.41516685,-0.5096906,-0.04571787,-3.339766,0.15057656,-0.12502326,-0.287169,-0.21733147,-0.20324464,0.32662758,-0.5579146,-0.54911095,0.13774584,0.12890233,0.54561424,-0.08936463,0.0637551,-0.26154083,-0.26861763,-0.25427613,0.19586252,0.13405508,0.31278178,-0.24483185,-0.41369832,-0.048461094,-0.1774402,-0.33714828,0.27335224,-0.5122165,-0.47614193,-0.0007220864,-0.30374914,-0.14538069,0.57440263,-0.21557859,-0.007462136,-0.23485371,-0.008233384,-0.1638679,0.2967821,0.065121934,0.13357742,-0.029722046,-0.0940384,0.0066883406,-0.37588614,0.3095551,0.11176091,0.30118206,0.4116006,-0.042474423,0.18640015,0.47863188,0.48131707,0.031938866,0.6954267,0.3645749,-0.10855376,0.39709124,-0.29474327,-0.22953221,-0.413182,-0.2703633,-0.012661612,-0.3636423,-0.55523074,-0.19760253,-0.24728814,-0.6694165,0.3107804,-0.12263169,0.17021638,-0.095075004,0.28814277,0.55986476,-0.05255695,0.11997876,-0.045962468,-0.098322205,-0.47763452,-0.3322124,-0.6602648,-0.27320197,0.0768818,0.9138331,-0.12994167,-0.037267964,-0.1025134,-0.33723754,0.004224962,0.08836268,0.07356045,0.17033844,0.45078513,-0.12967499,-0.6749799,0.51415634,-0.12586758,-0.19932671,-0.44465536,0.06051325,0.47320554,-0.64453644,0.52952176,0.29351395,-0.05088065,-0.19522576,-0.4184559,-0.154373,0.048854243,-0.20925952,0.255575,0.1633247,-0.6810966,0.39700764,0.2285874,-0.08773146,-0.6228577,0.59498537,0.058794938,-0.22783445,0.039292786,0.3267496,0.07946911,0.015194968,-0.18483098,0.19192365,-0.4384925,0.3736744,0.21688794,-0.10172315,0.24578327,-0.17914847,-0.15040909,-0.64289004,-0.02459429,-0.4308388,-0.24739258,0.3327375,0.12981062,0.24810006,0.08110742,0.01816112,0.3320359,-0.27293473,0.11939357,0.08355964,-0.24009344,0.3940568,0.38401285,0.411711,-0.38994667,0.5693809,0.051236175,-0.03411209,0.16254495,0.14544001,0.38006964,0.1235008,0.4393015,0.03338454,-0.21238613,0.42013407,0.8042796,0.22993419,0.50652117,-0.0035183548,-0.18105721,0.33271375,-0.004460134,0.043657206,-0.028410705,-0.42923635,-0.18940312,-0.03539044,0.18370251,0.46610153,0.018586587,0.24472335,-0.07681508,-0.20611477,-0.003960214,0.14810508,-0.01882376,-1.1825124,0.34260792,0.16481295,0.8032974,0.48459345,-0.052451238,0.044830546,0.55028915,-0.16441225,0.17170402,0.4149601,0.0967809,-0.59702164,0.5071709,-0.58787465,0.511981,-0.06859347,-0.006176903,0.052865468,-0.07432213,0.29549798,0.8469745,-0.15812562,0.0195558,0.050318267,-0.42949444,0.16476998,-0.3680742,0.0031992078,-0.5059017,-0.31919843,0.45273086,0.4921037,0.30483344,-0.22852877,0.020083698,0.085735545,-0.08679732,0.15103129,0.11730973,0.13774973,-0.1391961,-0.74868387,-0.25544366,0.5345745,-0.21891508,0.1221232,0.019857932,-0.39447185,0.3163005,-0.107249804,0.003870197,-0.030315975,-0.53811383,-0.0068903924,-0.36598638,-0.43196288,0.37801203,-0.33525506,0.26977265,0.20280065,0.009776656,-0.3435275,0.1673039,-0.009883833,0.6213795,-0.177414,-0.08533613,-0.45334777,0.03327797,0.2185996,-0.17216896,-0.12500986,-0.23832907,0.09326647,-0.38767955,0.36051586,-0.04896612,-0.27592218,-0.101103514,-0.14832632,0.0775135,0.571794,-0.121272646,-0.13641852,-0.17421414,-0.103901416,-0.27473864,-0.10234269,-0.052707814,0.25708863,0.23504576,-0.005211988,-0.11863457,-0.025016626,-0.017312193,0.33341777,0.05455284,0.47463787,0.47596818,0.08949152,-0.26949224,-0.12624358,0.22251481,0.40152007,0.07314224,-0.17510267,-0.35399723,-0.5292823,-0.21574189,0.25586182,-0.18605731,0.34190333,0.06690173,-0.27568558,0.7157529,-0.046829525,0.98389626,0.09154307,-0.34325412,0.08259214,0.47539818,0.056706283,-0.08405523,-0.37991163,0.80370754,0.4037735,-0.0027016322,-0.08722856,-0.29634002,-0.011265167,0.081172936,-0.19351715,-0.20504329,-0.0138919195,-0.5032106,-0.15861502,0.06980161,0.23320173,0.27405655,-0.090560704,-0.0071029663,0.18301845,0.0984736,0.24233869,-0.49193516,-0.1306751,0.25327092,0.103286035,-0.0065878313,0.14096521,-0.49546322,0.36840877,-0.51542026,-0.007389015,-0.17318456,0.106492564,0.022035567,-0.25721243,0.19700514,-0.03493595,0.29023287,-0.333488,-0.3825347,-0.2985789,0.51908314,0.17956904,0.115784965,0.52334565,-0.101800434,0.1488211,0.15712425,0.6203283,0.9127201,-0.19863461,-0.034640305,0.2774267,-0.38364637,-0.7337869,0.17815803,-0.18347263,0.3672198,0.022575863,-0.11655728,-0.5411223,0.36351326,0.17436682,0.028543686,-0.03172827,-0.51623636,-0.3859812,0.34689555,-0.34531954,-0.27142397,-0.40116537,-0.026939223,0.5376133,-0.3303314,-0.20051503,0.0123399375,0.25168422,-0.25430048,-0.53981,-0.10244792,-0.38691863,0.25591284,0.12728146,-0.21397337,-0.09703191,0.10882543,-0.40052193,0.268599,0.13162519,-0.3246606,0.037361376,-0.24320237,-0.05844899,0.88144875,-0.28348646,-0.024074484,-0.4883639,-0.52340794,-0.6562853,-0.46444148,0.48790833,0.10102599,0.019630158,-0.48052704,0.032025542,0.04867036,0.10452989,-0.07500101,-0.37350503,0.3838847,0.06437329,0.29203746,0.035985876,-0.6821616,0.23333998,-0.017535504,-0.10983697,-0.54050004,0.55781144,-0.06253804,0.73209393,0.047668997,0.16995855,0.22880942,-0.35716563,-0.2411095,-0.16348222,-0.12196248,-0.66970056,0.23609652,335 +193,0.40046635,-0.29611793,-0.43515113,-0.12651391,-0.32314196,0.13380514,-0.05365324,0.4527579,0.004324162,-0.434975,-0.14728332,-0.20732751,0.023515757,0.24249165,-0.20611148,-0.26053327,-0.08316143,0.08572042,-0.37950802,0.38608357,-0.38276443,0.30341142,0.11209889,0.3177785,0.35547516,0.17742623,0.13059834,-0.12695666,-0.25266382,-0.2454278,-0.19937086,0.23704801,-0.43077463,0.025463272,-0.109436736,-0.39171547,0.14189568,-0.438504,-0.2265611,-0.73988056,0.3232184,-0.85144067,0.46815193,-0.019613886,-0.24194597,0.35941553,0.19653387,0.39641887,-0.116108425,-0.046398617,0.3079939,-0.0640673,0.050493225,-0.08475462,-0.21666002,-0.2910325,-0.6109409,-0.024374409,-0.29109356,-0.41840586,-0.3160663,0.17908683,-0.30778855,-0.09082045,-0.07153291,0.46571273,-0.5016591,0.022794493,0.123865046,-0.105928764,0.37328923,-0.55406946,-0.16832952,-0.10153398,0.2965265,-0.36056724,-0.10759247,0.25992572,0.29487383,0.30983728,-0.022834636,-0.051948734,-0.25558838,-0.032164913,0.0080191055,0.52754724,-0.13259163,-0.4119514,-0.027375123,-0.093549624,0.17585959,0.24626347,0.28434154,-0.21063623,-0.13410957,0.17542934,-0.1896183,0.17541109,0.3212923,-0.3747405,-0.18947157,0.3355984,0.46793574,0.17853485,-0.13975932,-0.052205037,-0.042812023,-0.44293994,-0.14786841,0.110873066,-0.21237826,0.5258386,-0.06334504,0.3776001,0.6860823,-0.17899346,0.05216407,-0.11819206,0.0828717,-0.09912767,-0.15160078,-0.45731533,0.2534879,-0.38558426,0.24154195,-0.10224419,0.7920825,0.05953571,-0.6718951,0.29386336,-0.6054991,0.04924531,-0.12750886,0.4067844,0.30693004,0.43072128,0.37881824,0.5285873,-0.36087695,-0.0289162,-0.077060275,-0.35052106,-0.051789172,-0.22524172,-0.13613988,-0.4721847,0.051450748,0.1229136,-0.24866737,0.06210895,0.3966631,-0.5681379,0.08726272,0.15743087,0.77382964,-0.3058869,-0.042065606,0.6221654,0.8880843,0.984106,0.06358103,0.9868037,0.21629544,-0.31329444,0.21297416,-0.22813259,-0.63266456,0.31064257,0.5927258,-0.2335873,0.2531647,0.1263339,-0.027036497,0.4451097,-0.278047,0.15094763,-0.2256468,-0.10095625,0.061108336,-0.15862423,-0.50917584,-0.37020874,-0.04938638,0.020857789,-0.08468494,0.23395105,-0.13118796,0.32232824,0.119662285,1.9688969,-0.06791282,0.109770946,0.24208847,0.4620702,0.092042685,-0.09412604,-0.10712268,0.38575995,0.35241038,0.24908027,-0.5227787,0.19405645,-0.08748506,-0.6187036,-0.079479344,-0.37424806,-0.16627173,-0.059126277,-0.51597023,-0.12358746,-0.18700285,-0.19341408,0.36498502,-2.672983,-0.09654823,-0.18876831,0.25768632,-0.27391684,-0.38289985,0.12292259,-0.40264907,0.34267157,0.33738682,0.4524155,-0.62611926,0.42648083,0.41361535,-0.49276194,-0.14628926,-0.60758555,-0.27082887,-0.049090233,0.33587176,-0.009204674,-0.07323958,0.014522191,0.22777636,0.3926406,-0.12837237,0.17128824,0.22758357,0.41588116,0.105650045,0.6906603,0.059640344,0.42614317,-0.03676741,-0.1463301,0.32437512,-0.24732344,0.10007767,0.16977088,0.035860937,0.2716487,-0.41535047,-0.89976907,-0.67085034,-0.31315678,1.2172122,-0.25215504,-0.29650915,0.246042,-0.32880655,-0.3133481,-0.21293004,0.33109474,-0.0569134,0.0007410367,-0.75033593,0.07443307,-0.11919294,0.12652457,0.03929508,-0.028463623,-0.5456204,0.6338524,-0.20553395,0.6057883,0.44897753,0.13190381,-0.21836866,-0.32210854,-0.06262345,0.84253097,0.38899535,0.088655554,-0.16376056,-0.21337366,-0.37740198,-0.07355556,0.163445,0.3892822,0.7406337,0.081703804,0.24288875,0.18639213,-0.07243704,0.013527954,-0.24488287,-0.22772394,0.013420531,-0.09035157,0.5718972,0.3666733,-0.11283444,0.43044835,-0.108482696,0.36867192,-0.16678123,-0.29758254,0.23096602,1.1359181,-0.11492788,-0.1511264,0.6641665,0.586974,-0.23587841,0.2672426,-0.6138167,-0.10343035,0.5148614,-0.27478102,-0.47053543,0.24037223,-0.2775089,0.13133007,-0.9064545,0.34983578,-0.26529,-0.3959637,-0.42313924,-0.122855596,-3.2364798,0.24480152,-0.21334332,-0.2661199,0.07613538,-0.2956587,0.19815023,-0.7387234,-0.53164184,0.12279787,0.03134687,0.6990193,-0.05306563,0.10193573,-0.23326883,-0.3458372,-0.2380729,0.093435206,0.02201535,0.3444739,-0.04830734,-0.512618,-0.03310759,-0.12662287,-0.46383366,-0.0034663677,-0.6010581,-0.57659394,-0.111356534,-0.4683434,-0.36625087,0.6733342,-0.29304504,0.075999305,-0.09570615,-0.075617306,-0.111320905,0.25324738,0.12150543,0.1579757,0.0031075676,0.040757354,0.05723177,-0.25523302,0.27591306,0.09426959,0.2389774,0.14831024,-0.22820717,0.26434663,0.49415347,0.5401745,-0.059348073,0.7809649,0.5047581,-0.06530861,0.2408687,-0.35641733,-0.2964426,-0.58654505,-0.33099923,0.00095472333,-0.31462604,-0.5154527,-0.06308801,-0.28823566,-0.60654575,0.6701781,-0.0743789,0.20619182,-0.022619164,0.2982717,0.49096072,-0.1634233,-0.24588814,-0.008324551,-0.08313721,-0.5675686,-0.18265982,-0.6666833,-0.5396178,0.038017575,1.0127645,-0.17667113,0.047964804,0.08998332,-0.20500985,0.06396565,0.07264104,-0.026914762,0.2788677,0.4141811,-0.21401453,-0.7473496,0.49779668,-0.037894793,-0.23521352,-0.37174675,0.18049444,0.5007043,-0.5354358,0.4666178,0.3295532,0.03207026,-0.122354425,-0.45624438,-0.14060755,0.027799582,-0.29548275,0.49542394,0.101450965,-0.66111284,0.37758276,0.4360899,-0.18002787,-0.6708588,0.65314037,-0.05960136,-0.36346987,0.036371898,0.3349212,0.14681278,-0.06666807,-0.17473902,0.2954942,-0.44489327,0.28267816,0.30443722,-0.06595583,0.13925193,-0.14401153,0.013131555,-0.7153785,0.2235255,-0.3777805,-0.3189895,0.20411935,0.062075797,0.01629385,0.36202627,0.06324732,0.39535555,-0.3409753,-0.0037783831,-0.07381531,-0.26684564,0.259505,0.42726517,0.34155405,-0.44507122,0.44228134,0.0039177737,-0.110329196,-0.16964442,0.00082787673,0.4023549,0.014277844,0.30091932,-0.19344275,-0.36003208,0.35055026,0.61493003,0.2841521,0.5634326,0.06968751,-0.09435537,0.15272477,0.16594766,0.19963886,0.11451829,-0.58810127,0.09702665,-0.08816158,0.069933176,0.5499059,0.105223194,0.19501363,-0.23462455,-0.27322644,0.12234197,0.18018298,-0.13997628,-0.9145532,0.33709043,0.17487271,0.70248944,0.514383,0.010088761,0.024055688,0.65814596,-0.34686285,-0.019341234,0.26105282,0.0974294,-0.63739777,0.6087839,-0.7247604,0.3707703,-0.055069264,-0.15848431,-0.10536273,-0.16237707,0.3898373,0.72398174,-0.121039055,0.008479576,-0.034410015,-0.3348876,0.1806135,-0.40519917,-0.0017433614,-0.5754557,-0.20902623,0.577516,0.50781304,0.2858676,-0.066278234,0.12206851,0.1438765,-0.2097988,0.25714105,0.15995534,0.20440845,0.085095175,-0.6755665,-0.26933232,0.52218217,-0.07561581,0.15350835,-0.07075429,-0.44562614,0.2102302,-0.1498688,0.012245939,0.03675606,-0.6045276,0.08080209,-0.3349255,-0.35921696,0.34089687,0.02440521,0.24680713,0.2602569,0.031108519,-0.23836742,0.253094,0.23879442,0.7360785,0.009419394,-0.15836842,-0.32177913,0.16912594,0.025767708,-0.12196846,-0.11590227,-0.17636849,0.16376956,-0.6057547,0.45099264,0.13969475,-0.26678643,0.07772398,-0.13464214,-0.048168804,0.5065054,-0.12952775,-0.051273797,-0.15906106,-0.024897305,-0.098537736,-0.16392215,-0.08909653,0.1316008,0.108847804,0.0084969485,-0.07972803,-0.05497734,-0.13523105,0.49752554,-0.047812603,0.4991998,0.42639428,-0.15111093,-0.41592252,-0.1656126,0.021012418,0.33235168,-0.1399392,-0.044081345,-0.3407455,-0.46177658,-0.19883336,0.23820165,-0.1998613,0.4333428,0.123317614,-0.20964885,0.9036594,-0.1576542,1.0633433,-0.08468358,-0.46359673,0.06672351,0.5572077,-0.07976565,-0.0369951,-0.34348643,0.9532369,0.5395448,-0.042738013,-0.12740742,-0.19203377,-0.15801862,0.203679,-0.1839287,-0.11739084,-0.07711852,-0.5310725,-0.31388396,0.19110204,0.19232298,0.21623777,0.008965522,0.18280727,0.2947774,-0.0574711,0.3610802,-0.31353873,-0.30611393,0.2676279,0.24149637,-0.11330747,0.025415638,-0.53015435,0.512746,-0.39623553,0.16390096,-0.282983,0.1488395,-0.14632334,-0.22323315,0.19715044,-0.049659926,0.31119674,-0.22961505,-0.30424735,-0.1555176,0.42142683,0.09741333,0.16937691,0.5628999,-0.35702297,0.1871245,-0.033394568,0.42714554,1.0218104,-0.17022495,-0.07886308,0.42943496,-0.37882176,-0.48942345,0.31514585,-0.1521856,0.04550556,0.1147724,-0.13730194,-0.55057794,0.20257115,0.37830353,-0.10823519,-0.0053409575,-0.45840284,-0.29380926,0.47373676,-0.43487135,-0.23902982,-0.3763387,0.2355557,0.55898654,-0.372389,-0.26749405,-0.058899116,0.22272769,-0.14021069,-0.40012157,-0.0037192504,-0.35682487,0.41263103,0.037983082,-0.43698987,-0.1870336,0.012513001,-0.2031848,0.03352081,0.2687942,-0.36606938,0.034551393,-0.44359234,-0.051131885,1.0145546,-0.02435572,-0.14561735,-0.44425467,-0.34102058,-0.8573493,-0.49588734,0.5157765,0.04717041,0.024280049,-0.46450168,0.008818846,-0.094912514,-0.26334506,-0.06319867,-0.319905,0.46681538,0.18009014,0.4459605,-0.042114932,-0.5808563,0.18804222,0.033014994,-0.19483137,-0.5246936,0.58699906,-0.05202734,0.7130435,0.09121455,0.052302487,0.22839497,-0.37013787,-0.04211882,-0.19430175,-0.23812689,-0.6865257,-0.045485854,336 +194,0.4687628,-0.3281843,-0.4725048,-0.15027617,-0.18062511,-0.057762668,-0.223626,0.33280116,0.18587913,-0.43860137,-0.09500602,-0.040475093,-0.05106326,-0.030915251,-0.1809824,-0.43369284,0.10727799,0.053138606,-0.60411286,0.69948906,-0.29810777,0.16688834,-0.14309457,0.30446026,0.2947935,0.36089882,0.019234793,-0.016676132,-0.0024307729,-0.15597501,-0.030444881,0.1864379,-0.60329837,0.29574716,-0.25993037,-0.23938291,-0.123692945,-0.40420607,-0.47139245,-0.7051559,0.28309664,-0.9683459,0.44411978,-0.020464692,-0.29681656,0.35403487,0.22191277,0.34601536,-0.352251,-0.11859382,0.30225104,0.058474064,-0.13322073,-0.09875346,-0.005396543,-0.5491055,-0.4609329,-0.08731417,-0.44480866,-0.07391011,-0.47633514,0.11745629,-0.3101513,-0.07194277,-0.08370013,0.5457489,-0.45911896,0.24174364,0.19296214,-0.05017334,0.42385852,-0.59317166,-0.10563245,-0.12133943,0.2476661,-0.049658395,-0.21540065,0.2794838,0.20244089,0.3674849,0.0496797,-0.12550016,-0.17143324,-0.041426104,0.23790549,0.31274095,-0.0892165,-0.4139043,-0.11738928,0.03154663,0.21082424,0.28941903,0.21880585,-0.27447692,-0.12445166,0.092570804,-0.17858028,0.5068439,0.55391884,-0.20414113,-0.15897904,0.24207298,0.58855796,0.21685217,-0.2591668,0.026306843,0.0044644177,-0.4523467,-0.23815782,0.11258361,-0.16987625,0.53395396,-0.12065781,0.31963062,0.6890326,-0.1119392,-0.0017122786,0.13062602,-0.0941708,-0.220395,-0.32410267,-0.25793213,0.18664159,-0.58939815,0.2591938,-0.26144382,0.6059846,-0.005992181,-0.65075225,0.3076864,-0.4771194,0.14761041,-0.066027716,0.43598855,0.74672866,0.41575634,0.31519204,0.7215342,-0.38326785,-0.027071023,-0.13440882,-0.3947887,0.18256949,-0.081414916,0.028120017,-0.5489145,-0.019126426,-0.08055345,0.023356851,-0.11376319,0.36426985,-0.412835,-0.13376373,0.03850349,0.87355906,-0.21091624,0.05364077,0.7922223,0.96540487,0.8973802,0.14524205,1.1422945,0.116558306,-0.13488293,0.15897848,-0.0919497,-0.6562579,0.2793357,0.40025902,0.38959312,0.17261718,0.072067834,-0.024875512,0.5366408,-0.42260978,0.19440313,-0.25351796,0.19054778,0.113410756,-0.23853837,-0.20949271,-0.16127442,-0.066218086,0.08248642,-0.032730475,0.15866056,-0.11205384,0.29216772,0.10753996,1.6272258,-0.0013842186,-0.0015032947,0.11530983,0.5484798,0.25029767,-0.21968238,-0.057647962,0.21503362,0.4431118,0.15485306,-0.5542688,0.076156855,-0.21507844,-0.43204376,-0.12192221,-0.4720308,-0.2073191,0.00066953304,-0.47226417,-0.16697854,-0.29797083,-0.27149898,0.39387882,-2.8977008,-0.17051032,-0.18153948,0.35997105,-0.29211503,-0.1369069,-0.045821097,-0.44591185,0.46286693,0.32014492,0.4811191,-0.6664444,0.5992278,0.4807186,-0.65425414,0.043310363,-0.59003574,-0.16473344,-0.021750612,0.46181148,0.0728723,-0.09227456,0.10264961,0.22208163,0.5078932,0.17815161,0.17002216,0.38347617,0.466299,-0.21766336,0.60569495,0.01948681,0.3330305,-0.19527133,-0.11256058,0.24354322,-0.2826334,0.34026095,-0.043988775,0.16312341,0.54236245,-0.45758292,-0.89573616,-0.7342344,-0.12786306,1.1113706,-0.22295618,-0.5066919,0.21691865,-0.65311515,-0.25687093,-0.1779725,0.49112102,0.056820434,0.029177273,-0.85079676,-0.011279043,-0.13173588,0.035125617,-0.015674481,-0.19780043,-0.5162259,0.91777253,-0.014104865,0.6474637,0.3268004,0.15443555,-0.27414244,-0.34193322,0.14357358,0.70631015,0.43112895,0.09044709,-0.24232762,-0.21838108,-0.41252902,-0.16210088,0.14064345,0.75407946,0.48800257,-0.06333819,0.22414859,0.2975609,-0.12799163,-0.057910506,-0.23591618,-0.2144401,-0.2473902,0.008473432,0.5074113,0.6414622,-0.10000534,0.29971507,-0.052918043,0.13238603,-0.17175181,-0.47650397,0.5311209,1.0137455,-0.14284915,-0.26763397,0.49218184,0.5368568,-0.124176756,0.36769983,-0.5301424,-0.2058545,0.45365307,-0.16459641,-0.41300339,0.21558285,-0.46286708,0.058742926,-0.74868655,0.19894356,-0.44052586,-0.50079125,-0.39608815,-0.16875622,-3.2097123,0.20895156,-0.25824133,-0.20169654,-0.28969696,-0.39545146,0.27768338,-0.5549205,-0.5603429,0.24457766,0.003165402,0.85911936,-0.043839335,0.05812169,-0.2557348,-0.24415572,-0.3470974,0.09088543,-0.0139958775,0.34257177,-0.22350441,-0.4378158,-0.27787125,0.043963615,-0.39330953,-0.020603104,-0.42675367,-0.31000963,-0.13089083,-0.32855988,-0.19470535,0.56790507,-0.033469193,0.076231904,-0.20973554,-0.13511978,-0.20805931,0.3368864,0.18925504,0.13364355,-0.04842615,-0.081096694,0.052139897,-0.31928736,0.26570505,0.059598207,0.3368906,0.24916294,-0.17545113,0.20195551,0.41814214,0.52205676,-0.18499668,0.8749448,0.3708984,-0.10044333,0.3615628,-0.07883553,-0.29784945,-0.6920341,-0.26887357,0.021181086,-0.39128277,-0.44383934,-0.038431942,-0.4247701,-0.71262157,0.39283946,0.06669632,0.28866374,-0.014845748,0.14977442,0.5051817,-0.16757545,-0.11259051,-0.01933812,-0.19339137,-0.55053383,-0.24959205,-0.5556438,-0.34712029,0.052552547,0.8220311,-0.20169732,-0.051761437,0.15194245,-0.2746727,0.16048694,0.23814347,-0.09945255,0.18273538,0.42254865,-0.12419179,-0.6279234,0.49075642,-0.06164359,-0.24706574,-0.5821294,0.37012964,0.53717405,-0.5367006,0.61601394,0.22849631,-0.052457564,-0.38114062,-0.54164505,-0.09909666,-0.22571668,-0.2648631,0.4848329,0.2232932,-0.8210824,0.31138983,0.4082944,-0.108616255,-0.6930645,0.7409591,-0.073177576,-0.2219548,-0.118687786,0.20881945,0.12297282,-0.058126487,-0.16554204,0.31889874,-0.34998885,0.30076462,0.16514018,-0.06966016,0.15873769,-0.09754713,-0.08523096,-0.6216429,-0.08510732,-0.48585236,-0.20250776,0.26383632,0.040481694,0.018535951,0.1715871,0.058168314,0.36576575,-0.20741664,0.14562657,-0.060228,-0.28666323,0.34553385,0.44785148,0.51333326,-0.51121527,0.6629575,0.05422377,-0.14328645,0.10659169,0.3264297,0.34580675,0.11172156,0.4754252,-0.0957869,-0.12604398,0.2925924,0.832792,0.22058381,0.57160693,0.14883518,-0.06482873,0.18118411,0.14014766,0.30255958,-0.0896167,-0.66655385,0.084613174,-0.2492945,0.2226332,0.37569234,0.124752834,0.20238107,-0.008891416,-0.2684445,-0.13233882,0.27500814,-0.03166524,-1.4423958,0.41652054,0.29315117,0.97676045,0.51733154,-0.052326616,-0.09374353,0.75044215,-0.080237225,0.085668534,0.33428568,0.13310577,-0.55485916,0.572112,-0.6792063,0.3584345,0.07156824,-0.040871415,-0.034924053,-0.013811214,0.33011016,0.6404198,-0.20562601,-0.015186922,-0.026225297,-0.3928007,0.35682997,-0.364007,0.029199896,-0.43794486,-0.39648244,0.6123014,0.5317743,0.3653495,-0.21894462,0.041092966,-0.014385984,-0.12316321,0.13543867,0.16339651,0.08282541,-0.16529551,-0.73965806,-0.17667468,0.35027292,-0.16128717,0.24500056,0.06067476,-0.2900335,0.21832663,-0.20746951,0.07909326,-0.04020884,-0.7609306,0.07073254,-0.2892564,-0.29190984,0.6454751,-0.08181168,0.20899901,0.25068825,-0.022139125,-0.14332813,0.33964863,-0.19718036,0.62720007,-0.031882126,0.01563133,-0.4988307,-0.037452046,0.1590168,-0.25248262,0.00115211,-0.26119873,0.061051305,-0.7622764,0.48422286,0.093593955,-0.3716849,0.21905638,-0.13234018,0.084513105,0.59011024,-0.2447359,-0.18087676,-0.010083048,-0.07000678,-0.32120425,-0.40751463,0.041635655,0.30876064,0.23184274,0.21405996,-0.15319782,-0.046117987,-0.031681787,0.38973218,0.050214496,0.38853297,0.33096626,0.07177385,-0.35944685,-0.14915232,0.28257892,0.518252,0.036589496,-0.09163788,-0.29701865,-0.60024315,-0.38309675,0.2242307,0.01867547,0.42583802,0.014094595,-0.062392283,0.6975423,-0.11732486,1.0197645,0.12902309,-0.31599107,0.16269821,0.6108441,-0.09260593,-0.17682473,-0.15072575,0.6116343,0.531632,-0.0591221,0.038429268,-0.40558204,0.038560238,0.14792575,-0.2120684,-0.018761761,-0.039379254,-0.6255956,-0.10896812,0.13068618,0.30398387,0.15848097,-0.19595107,-0.04102409,0.2700461,-0.06267782,0.24551259,-0.5269722,-0.28438577,0.24415062,0.07326908,-0.052286975,0.037336454,-0.46566582,0.41819477,-0.51031846,0.12510486,-0.23612252,0.079346165,-0.25802383,-0.28216925,0.2385785,-0.12529986,0.30449206,-0.34490356,-0.36114967,-0.24032177,0.39628226,0.3119818,0.18830504,0.58813375,-0.19734968,0.08408868,0.13204561,0.46677297,0.81874454,-0.22472446,-0.08903793,0.3444331,-0.5001552,-0.5834524,0.32456857,-0.3989612,0.279321,0.15340897,-0.21329546,-0.41636387,0.29230988,0.28328425,0.095613584,-0.0015440643,-0.87001127,-0.27639267,0.21579498,-0.1944306,-0.14926702,-0.3516593,0.011352476,0.49114722,-0.23121971,-0.20498565,-0.005252306,0.08144882,-0.095047645,-0.48783857,-0.035940815,-0.38478488,0.314102,-0.08470558,-0.37944126,-0.07279111,-0.014882803,-0.44085425,0.28032342,0.01123476,-0.32986048,0.043690007,-0.35896778,-0.18699507,0.90682274,-0.22433424,0.113049015,-0.3107951,-0.326753,-0.6691521,-0.33596832,0.14126155,0.1666996,0.061300613,-0.5332043,0.018122546,-0.08575228,0.09906602,-0.11206896,-0.4015292,0.50475687,0.102560475,0.4662598,0.0063608726,-0.7072627,0.25080433,0.10478377,-0.13692679,-0.5309251,0.6538452,-0.15686011,0.62460315,0.086376086,0.16498521,0.08225448,-0.53305346,-0.04317147,-0.23591797,-0.16151981,-0.5988088,-0.021895317,339 +195,0.48052213,-0.27074152,-0.2918791,-0.14550574,-0.14510989,0.12731616,-0.18336293,0.42999455,0.086671345,-0.68383294,-0.14744633,-0.16271451,-0.043289304,0.32964104,-0.1715467,-0.3971807,0.06297644,0.026983283,-0.36861095,0.60263187,-0.4769048,0.25158554,0.06837142,0.344808,0.08441551,0.15112615,0.28157577,0.0008603374,-0.13035049,-0.2143813,-0.11722051,0.10177865,-0.50855595,0.25065038,-0.18767451,-0.47627994,-0.13233514,-0.34684607,-0.3393364,-0.60305077,0.24385363,-0.95062983,0.36609456,-0.06318817,-0.28039023,0.2957359,0.07158895,0.22848208,-0.1935357,0.013671947,0.053134307,-0.13116162,-0.019673824,-0.15646133,-0.082388215,-0.30055264,-0.54553086,0.035411634,-0.47111928,-0.3104316,-0.23137161,0.11079902,-0.3264423,0.0045930822,-0.07864884,0.57240844,-0.46501598,-0.018028926,0.07346358,-0.10584025,0.44464093,-0.61355287,-0.21145764,-0.05400704,0.18954974,-0.217671,-0.17659998,0.23424062,0.22102931,0.5846326,-0.013058305,-0.010358155,-0.32696924,-0.10541784,0.36863008,0.52013695,-0.08944004,-0.5802901,-0.13946487,-0.047123518,0.15444928,0.14524259,0.18586715,-0.39489555,-0.09985914,0.15082748,-0.14594717,0.32595274,0.54373616,-0.24269815,-0.2884031,0.27041528,0.49687073,0.004033454,-0.1905048,0.07246321,-0.011074054,-0.38737065,-0.12813197,0.13772745,-0.09662395,0.62717235,-0.066229485,0.36300305,0.5351599,-0.1377395,0.06831352,-0.074467346,-0.12507653,-0.19888644,-0.1960284,-0.1427311,0.115063176,-0.32838717,0.19768329,-0.26201352,0.76379126,0.114707604,-0.8493197,0.38323852,-0.5002528,0.026799444,-0.15249684,0.51998615,0.572692,0.22417389,0.19792798,0.6561262,-0.48379526,0.014093908,-0.17118874,-0.303825,-0.22277944,-0.2039738,-0.054309767,-0.45548964,0.0302824,0.14352223,-0.09265398,-0.05245013,0.3190637,-0.3492737,-0.073588766,0.09318217,0.7065122,-0.31259543,0.04107576,0.8702184,1.0999074,0.9253338,0.15757184,1.1370374,0.2570473,-0.15609612,0.16532832,-0.11583435,-0.6039435,0.2831832,0.42814904,0.7416413,0.20684004,0.022126103,-0.035164777,0.38161576,-0.54678893,0.22130544,-0.16267477,0.18053386,0.18072207,-0.14307033,-0.43501338,-0.06999025,-0.025827928,-0.007933903,-0.0034642934,0.13531463,-0.13358536,0.41579714,0.13111863,1.5941002,-0.23863935,0.12622435,0.12375216,0.4980888,0.15287778,-0.19086987,0.059446868,0.17272186,0.41226763,-0.07156661,-0.6492233,0.14131418,-0.09856244,-0.59510124,-0.25003403,-0.40749672,-0.08931054,-0.018256597,-0.485828,-0.21432787,-0.07207635,-0.34087473,0.35058412,-2.815593,-0.267265,-0.23763375,0.3243133,-0.36669767,-0.2703664,-0.09271067,-0.38063413,0.56102914,0.37768987,0.36257085,-0.703538,0.38014665,0.47222665,-0.27938688,-0.11132552,-0.5850042,-0.06053656,-0.11340192,0.45691472,0.030031037,-0.13195035,0.08443182,0.1419876,0.5897711,-0.010106425,0.121686526,0.20810969,0.21072201,0.024136985,0.40923414,0.013061595,0.37113583,-0.2758199,-0.04355015,0.34828076,-0.18869391,0.049381927,-0.056300435,0.23367064,0.31223705,-0.45171908,-0.71587265,-0.78905886,-0.44161704,1.1639458,-0.19763409,-0.56168705,0.32469252,-0.22434518,-0.18386902,-0.17048715,0.3936676,-0.04195819,0.11875956,-0.8179649,0.037113864,-0.12304447,0.11028353,-0.04725292,0.0014828086,-0.4530421,0.70279574,-0.123443745,0.63942504,0.4401168,0.27609983,-0.14953762,-0.38449907,0.06701479,0.97803783,0.37030876,0.15689084,-0.2327866,-0.2298937,-0.231765,-0.23117615,0.15711123,0.55314624,0.777477,0.022162847,0.14017826,0.27076235,-0.08286739,0.04530982,-0.078019835,-0.10721703,-0.14449158,0.03594578,0.5790097,0.451449,-0.25461623,0.51586694,-0.25604114,0.16016175,-0.20198098,-0.35461038,0.50693595,0.6933365,-0.16601358,-0.18778501,0.52199066,0.4299246,-0.34441954,0.3432311,-0.6695031,-0.11543829,0.47697732,-0.23104769,-0.4134811,0.21177833,-0.36856386,0.20969804,-0.9332675,0.28314188,-0.28890905,-0.48874518,-0.55607253,-0.28628194,-3.085225,0.08678732,-0.13904287,-0.33104113,-0.050644774,-0.44620928,0.24549977,-0.50947964,-0.45476335,0.16558535,-0.007379615,0.64169717,0.07245319,0.15899605,-0.25620857,-0.023347605,-0.33003604,0.11935449,-0.026061527,0.36171043,-0.013716072,-0.31799445,0.026241994,-0.15706116,-0.54146546,0.044248056,-0.2815933,-0.47492105,-0.18759279,-0.19335529,-0.32928413,0.59198034,-0.30887446,0.09699813,-0.21195951,-0.17720196,-0.26815477,0.45828134,0.20869909,0.098320924,0.08799951,0.056772307,-0.037905287,-0.29364374,0.19860567,0.0030317504,0.054095365,0.50124556,-0.30126494,0.21431047,0.38353586,0.51179963,-0.013158763,0.5875932,0.50822467,0.008216079,0.2519575,-0.33145866,-0.26490888,-0.5055219,-0.33600956,-0.003940475,-0.34075013,-0.6496135,-0.109624006,-0.28655702,-0.7733482,0.4189207,0.05693727,0.20140384,0.0020941237,0.12612131,0.39548352,-0.13577121,-0.19049703,-0.09387687,-0.017237421,-0.64615077,-0.3794449,-0.6748828,-0.5682067,0.014492357,0.8479,-0.018604103,-0.25972694,0.068206824,-0.23693374,0.052023787,0.15039802,0.08270096,0.057197127,0.2632704,-0.088251665,-0.7190544,0.5760118,0.021981992,-0.37663138,-0.5930449,0.2210121,0.61352545,-0.44818884,0.30574292,0.22897871,0.06263246,-0.19075057,-0.4459748,-0.10817954,-0.073257364,-0.2387365,0.40710706,0.0864817,-0.80257,0.42826167,0.39827356,-0.015311357,-0.72386384,0.51822466,0.061210837,-0.12845252,0.013000679,0.23655492,0.15707614,-0.07292611,-0.22142018,0.20745936,-0.54233867,0.27736658,0.27252927,-0.00079010526,0.4153476,-0.19661659,-0.09662983,-0.58719355,-0.04797641,-0.5691312,-0.14322285,0.017271014,0.14985695,0.22415464,0.23115775,-0.09332095,0.45951283,-0.2701545,0.14789225,-0.00039553244,-0.18006277,0.2599482,0.34934938,0.3230667,-0.41332635,0.6610319,0.0035887936,-0.008486271,-0.10722084,0.12841225,0.43274525,0.35757577,0.23207475,-0.1340916,-0.20150532,0.231392,0.79001313,0.3388084,0.44762674,0.24200198,-0.2428843,0.40683854,0.10992948,0.23467611,-0.03459924,-0.40540114,0.004053529,-0.12670109,0.10704699,0.30995423,0.18026188,0.3963618,-0.06487935,-0.21968459,0.07471243,0.15935189,-0.20337994,-1.2711487,0.32948208,0.14875314,0.83250564,0.56625926,-0.18001814,0.12083855,0.5156434,-0.19333951,0.16117388,0.19819051,0.05826634,-0.43758056,0.58744645,-0.73098576,0.3211682,-0.058146976,-0.0463862,-0.08888904,0.06498407,0.31221396,0.5950682,-0.07903312,0.23910135,-0.04713749,-0.22714655,0.18694538,-0.432047,0.08209013,-0.36137098,-0.22236449,0.6353503,0.4812064,0.31235597,-0.13860893,-0.028019527,0.14575131,-0.012746771,0.11528868,0.044159673,0.14207046,-0.014434991,-0.56577873,-0.3134821,0.4435891,-0.20913297,0.13590689,0.020622082,-0.40207,0.22595833,0.075611316,-0.21132085,0.12774482,-0.64056194,0.07081828,-0.28500775,-0.35932383,0.46927422,-0.19538306,0.25674897,0.15524822,-0.03922019,-0.24184948,0.08154114,0.16449326,0.6226637,0.08642915,-0.08288664,-0.37506047,-0.045369364,0.282269,-0.16410877,-0.103578135,-0.065482266,-0.02465212,-0.57424283,0.41561934,-0.042877503,-0.16941299,0.4431538,-0.072440036,0.023165138,0.55436355,-0.11598543,-0.18042704,0.16111352,-0.2131978,-0.24972291,-0.25671995,-0.10120964,0.40709835,0.09776254,0.017426658,0.14641072,-0.028847916,-0.0072058914,0.33682072,0.030795176,0.44653985,0.3258429,0.011504211,-0.43426648,-0.17596012,0.20761506,0.34602165,0.124026604,0.021815216,-0.12938918,-0.5396291,-0.2746269,0.07094795,-0.10458803,0.22276637,0.10192892,-0.39022127,0.61810887,0.08784895,1.0000937,0.109140225,-0.33089092,0.15960269,0.26414543,-0.0012669245,0.016950488,-0.3489256,0.7236384,0.5127229,0.016351143,-0.07720127,-0.26517373,-0.079864964,0.2877472,-0.18874818,-0.096499905,-0.06318543,-0.7162091,-0.29595953,0.13290499,0.25003126,0.058135964,-0.07504853,0.045446537,0.15243517,-0.031590704,0.35697412,-0.39140034,-0.019384913,0.36923298,0.21070354,-0.0144627215,0.013459015,-0.38672465,0.3315182,-0.543151,0.02109514,-0.22062431,0.08441689,0.045379184,-0.17047843,0.15359548,0.05859352,0.3207196,-0.14694712,-0.3684526,-0.25273314,0.5399223,0.017455865,0.07267405,0.46429756,-0.20276956,0.21171974,0.009960502,0.3671357,1.1933692,-0.16486305,0.053805135,0.26585606,-0.3564938,-0.52135795,0.36132553,-0.2979352,0.36510518,-0.06774894,-0.16241506,-0.55578554,0.22995453,0.2808362,-0.12420606,0.13024533,-0.49144867,-0.41537017,0.4063018,-0.35108328,-0.18511483,-0.39550495,-0.07751196,0.5349821,-0.34354076,-0.08763536,0.042725336,0.29891363,-0.25010818,-0.4832881,0.03428379,-0.21927585,0.26417476,0.095889874,-0.32094306,-0.13057633,0.18089868,-0.40924984,0.05913566,0.07089578,-0.34270903,0.04404601,-0.3859041,-0.03529698,1.0152878,-0.08532162,0.1279557,-0.6329817,-0.49877983,-0.81529826,-0.52605844,0.45491728,0.14477031,0.04414517,-0.4566532,0.009453169,-0.056142807,0.0801009,-0.08869658,-0.37193853,0.4636336,0.12801678,0.38062245,0.023861255,-0.54885215,0.05957481,0.044545032,-0.10558395,-0.44503498,0.49715108,0.19193888,0.7139315,0.07376353,0.102287225,0.14477219,-0.53802204,0.04652055,-0.19179717,-0.2856247,-0.5828709,0.10268308,341 +196,0.4962234,-0.14468534,-0.479629,-0.114340924,-0.15230532,0.085745685,-0.13392492,0.6933918,0.23028654,-0.42883915,-0.13239685,-0.1161287,-0.017694967,0.20347986,-0.036814343,-0.3902947,-0.0040855366,0.062569804,-0.2571959,0.44139135,-0.40681738,0.29931137,-0.1297438,0.3681349,0.076479085,0.26621774,0.060061608,-0.075145215,0.06012819,-0.09746418,-0.08356936,0.35326517,-0.27341187,0.15411378,-0.14030442,-0.38073125,-0.12158562,-0.48233992,-0.40188345,-0.60674745,0.20219725,-0.70676386,0.46876556,0.1112403,-0.3406997,0.39032644,-0.12649965,0.19915822,-0.2645015,0.06408462,0.15052779,0.0128013035,0.035504896,-0.19931957,-0.27206853,-0.32562968,-0.4835284,0.05137682,-0.38236508,-0.070737645,-0.13972585,0.0199272,-0.23738606,-0.09456001,0.030511076,0.40124464,-0.50813127,-0.14376643,0.19661047,-0.14977987,0.39036465,-0.55569667,-0.16134192,-0.06722692,0.25711676,-0.2564804,-0.109283656,0.11299399,0.22027,0.58119166,-0.122622006,-0.07769735,-0.46894425,-0.029882776,-0.08717731,0.4665502,-0.19809107,-0.44311187,-0.120997615,0.008999053,0.28357276,0.26607472,0.09060762,-0.13976917,-0.1915168,-0.05883836,-0.23870324,0.2877402,0.53898925,-0.48867068,-0.21053381,0.39593357,0.61695707,0.17053191,-0.06700684,0.10078002,0.026568497,-0.46832076,-0.18848103,-0.039037473,-0.26611674,0.41563532,-0.13045062,0.28552186,0.57455915,-0.0040414156,0.07762418,0.20547329,0.08124872,-0.13933477,-0.24113505,-0.17201601,0.237447,-0.3430349,0.10577533,-0.08283626,0.59355795,0.021563845,-0.7580665,0.3550388,-0.47635266,0.08597764,-0.09302937,0.56551147,0.70685524,0.2586792,0.23808987,0.69581974,-0.5598784,0.061935145,-0.0890006,-0.23132303,0.04629232,-0.051346347,-0.16863866,-0.6121771,0.051501464,0.23577596,0.020021824,0.31962457,0.2550554,-0.5666939,-0.11278122,0.34167245,0.7198297,-0.25315112,-0.08216271,0.63797307,1.050216,0.9647111,-0.04372503,0.91328496,0.07425129,-0.2588076,0.3026385,-0.4654311,-0.6210898,0.24526644,0.39409503,0.10286393,0.3378499,0.18326506,0.061485585,0.3334288,-0.32663345,0.032373942,-0.11656036,-0.041676287,0.054940183,-0.094447,-0.51977694,-0.21762429,-0.11109093,0.13682117,0.04010438,0.30180654,-0.19607855,0.3206304,0.029036919,1.578001,-0.07727944,0.11207398,0.15168503,0.4012528,0.19097881,-0.13599531,-0.08491926,0.38184717,0.32947114,0.10468421,-0.5341985,0.14842325,-0.14068937,-0.47831973,-0.042195465,-0.27228668,-0.032061145,-0.024995176,-0.5166286,-0.025330318,-0.20272781,-0.43256676,0.4396198,-2.981584,-0.17362207,-0.090306655,0.24590905,-0.22550805,-0.33896488,-0.19883347,-0.35148653,0.42079535,0.37245145,0.4782093,-0.7241973,0.40966097,0.41617545,-0.42677397,-0.020513069,-0.57651544,-0.16857836,-0.0012811144,0.24544494,0.12539019,-0.026714247,0.056185022,0.24881262,0.43751732,-0.010683592,0.12519534,0.21124509,0.36559853,-0.023132626,0.36071503,-0.04766184,0.37382317,-0.26395485,-0.26276797,0.29909483,-0.32867423,0.2191658,-0.13451253,0.1159583,0.36389393,-0.4693244,-0.9148778,-0.5880563,-0.17725602,1.2011335,-0.112363,-0.49007824,0.29629403,-0.46761814,-0.3182081,-0.17010294,0.48336306,-0.1320009,-0.12114557,-0.830466,0.07193089,-0.11094549,0.09776711,-0.014899443,-0.074341096,-0.4249848,0.62731785,-0.071045436,0.64558995,0.47449714,0.10154462,-0.18614183,-0.36777824,-0.07672764,0.8898668,0.4114313,0.15768522,-0.26288334,-0.006373485,-0.3844353,0.14762452,0.17820488,0.391698,0.59003866,-0.012182137,0.18016103,0.2856752,0.059963275,-0.04770537,-0.1899592,-0.1378649,-0.051069524,0.07349988,0.58214176,0.64765954,-0.2380359,0.35059512,-0.027431717,0.08748203,-0.2747363,-0.42985743,0.4509388,0.6355756,-0.108001195,-0.26042938,0.619355,0.54241526,-0.22269617,0.40076026,-0.6284199,-0.37701324,0.26087976,-0.22405806,-0.40879574,0.23159274,-0.25572526,0.20381318,-0.8811623,0.10292506,-0.12582044,-0.53715146,-0.53318614,-0.09675675,-3.1131577,0.2115647,-0.18894343,-0.19141397,-0.11963852,-0.117349245,0.2278432,-0.5305765,-0.6082007,0.13789447,0.17701077,0.5953726,-0.0168058,0.07286237,-0.25155255,-0.32560942,-0.20314918,0.115098074,0.042322174,0.36983454,0.14057653,-0.54162925,-0.12620491,-0.07510712,-0.33961037,0.012974268,-0.49866858,-0.37885752,-0.07994396,-0.4948741,-0.24064894,0.53424954,-0.3041564,0.04437773,-0.22484487,0.009934378,-0.11457865,0.3098269,0.045582097,-0.00054191746,-0.082221,-0.009535178,0.11512097,-0.2959091,0.36038116,-0.00071409147,0.16667862,0.40508652,-0.2295331,0.14004658,0.5921795,0.6449732,-0.1414554,0.78730184,0.5504119,-0.026814636,0.29314086,-0.19367829,-0.2223235,-0.5430655,-0.39269397,-3.970663e-05,-0.439631,-0.4774874,-0.0338199,-0.3882392,-0.8396864,0.5085015,-0.14372008,0.21736728,0.054475196,0.18382269,0.5862261,-0.25498107,0.07080577,-0.052764867,-0.11831444,-0.434958,-0.28927457,-0.6015055,-0.3380038,0.20579425,1.0248423,-0.26469284,0.13694862,0.16029915,-0.124852404,-0.09470706,0.09288724,0.087877624,0.20181979,0.3658183,-0.0887522,-0.44384992,0.47099102,-0.098109215,-0.23836933,-0.51543504,-0.008315953,0.51342446,-0.5533572,0.39403853,0.25301307,0.004444812,-0.106692694,-0.6308626,-0.10056174,-0.124146394,-0.27532354,0.4620666,0.3391867,-0.7473278,0.4405406,0.3806691,-0.15603283,-0.5987217,0.52329564,-0.1341038,-0.31499568,-0.08107013,0.22781666,0.16527714,0.021290315,-0.06316658,0.18495055,-0.35925236,0.33417302,0.2316,-0.11076292,0.47685573,-0.2228845,0.031075787,-0.7406151,-0.19854283,-0.51263976,-0.235734,0.22352749,0.14829665,0.11242003,0.11101618,-0.0009087642,0.37883767,-0.37347215,0.12533079,-0.11127705,-0.20444325,0.36256486,0.34265217,0.4912522,-0.30597445,0.5156104,-0.020780701,-0.049839042,-0.18253177,0.03680711,0.4923256,-0.019546568,0.34404567,-0.18477722,-0.27450624,0.33153105,0.609662,0.23485817,0.1828319,-0.013909137,-0.14897971,0.20589216,0.07080366,0.09953003,-0.16415234,-0.41663468,0.11142365,-0.21107878,0.20370755,0.38017878,0.10238325,0.31005913,-0.13909313,-0.30830562,0.07296548,0.20293145,-0.035974845,-1.0602983,0.29104272,0.17937063,0.77660674,0.4292488,0.07802673,0.055873744,0.6391705,-0.157623,0.1618505,0.3979277,-0.008124963,-0.52789277,0.5319963,-0.76294005,0.5683877,-0.031180333,-0.019776108,0.071277305,-0.10168301,0.4549311,0.67469734,-0.047911175,-0.0076474985,0.050677154,-0.31513882,0.017728085,-0.33937067,0.0428459,-0.6409288,-0.1342748,0.6134359,0.564298,0.3509167,-0.17858155,0.004927536,0.06530822,-0.0102566965,0.051059864,0.060362037,0.16823182,-0.2538226,-0.6976332,-0.07384103,0.4101092,0.18704651,0.060731824,-0.101006284,-0.2727031,0.20230147,-0.06993909,-0.056706198,-0.023040036,-0.5030284,-0.017537037,-0.286843,-0.36105555,0.5243822,-0.115915984,0.3225184,0.0947208,0.09721365,-0.19628935,0.3837581,0.026221048,0.78856796,0.04437208,-0.040745094,-0.4242236,0.22521658,0.24330479,-0.14015831,-0.21756564,-0.32569078,0.0986353,-0.50628954,0.35862547,-0.050715342,-0.2304669,0.21019231,-0.084763214,0.1306047,0.49465993,-0.038863577,-0.19284123,-0.051283564,-0.1301896,-0.29277962,-0.20822026,-0.21250232,0.32892177,0.06798182,-0.12979904,-0.15187772,-0.028603133,-0.06934737,0.3313168,0.08268115,0.23265578,0.2800814,0.07542508,-0.3065593,-0.02588133,0.13144273,0.41885084,-0.009458935,-0.10432921,-0.24409577,-0.5369648,-0.27439675,-0.048579644,-0.10859116,0.37151212,0.062343836,-0.013823533,0.7505772,0.043818634,1.0845106,0.12300258,-0.30411768,0.04891061,0.42847264,0.023218174,-0.044469308,-0.27205163,0.91701305,0.544997,-0.11274474,-0.17074773,-0.17861785,-0.016147533,0.12256336,-0.1401124,-0.17575084,-0.017338676,-0.7052159,-0.21469766,0.33808202,0.20151688,0.2678105,-0.09519334,0.092302896,0.24453601,0.047907267,0.2438922,-0.39110184,-0.14937337,0.22006962,0.28181604,-0.049804326,0.09038602,-0.3917224,0.38911656,-0.54889846,-0.046907213,-0.28517812,0.1126585,-0.299869,-0.36211973,0.17302814,-0.08144187,0.33724988,-0.22787975,-0.36434734,-0.23140332,0.4641817,0.10026647,0.050233483,0.45062992,-0.24803773,0.08286516,-0.061680395,0.32638642,0.9994891,-0.22688462,-0.093979105,0.4443093,-0.20798007,-0.66026974,0.21615934,-0.4216599,0.29330933,-0.112416,-0.23557782,-0.39781153,0.40282497,0.19878118,0.037829813,0.050330188,-0.4540314,-0.023768242,0.16616192,-0.2693021,-0.23757878,-0.3205072,-0.017650675,0.5103837,-0.2822924,-0.44839928,0.11397799,0.36445883,-0.16097613,-0.5494176,0.1415437,-0.35754502,0.22267725,0.11688396,-0.3754289,-0.052179392,-0.04598715,-0.32714245,0.09042645,0.24537244,-0.3061537,0.024231173,-0.54249203,-0.012745134,0.9764422,-0.1636561,0.29547003,-0.48028532,-0.40934098,-0.89664894,-0.29568416,0.53411037,0.06775934,0.037180845,-0.5924737,0.17948388,-0.10167958,-0.103610545,-0.16651203,-0.16853961,0.5268773,0.16826579,0.35327882,-0.23203327,-0.692603,0.18553379,0.117580004,-0.18281381,-0.4941916,0.4728742,0.037601806,0.78360516,0.13198681,0.11660567,0.3193569,-0.53638816,-0.06710822,-0.22744921,-0.13671404,-0.6706341,-0.05014234,343 +197,0.44616517,-0.14449367,-0.29252276,-0.18168725,-0.16541788,0.0048882505,-0.2417605,0.04133111,0.006568694,-0.413503,-0.21533568,-0.3369967,0.105321854,0.44799423,-0.033806812,-0.8278377,-0.18994114,-0.03923719,-0.5670001,0.35371393,-0.612842,0.4564928,0.166988,0.20321368,-0.064801045,0.5040623,0.532264,-0.32387882,0.01031546,-0.015569266,-0.07436846,0.095159374,-0.54510313,0.024831617,-0.026843281,-0.29196018,0.23346823,-0.4104044,-0.13058765,-0.6203622,0.26252005,-0.9137323,0.33261913,0.04678842,0.13880107,0.108711496,0.13167842,0.3975995,-0.35701668,0.32940274,0.251441,-0.11524332,0.049445532,-0.20633171,-0.10609674,-0.58319795,-0.48693976,0.06162502,-0.4951387,-0.5738379,-0.17849591,0.16043955,-0.36809602,0.07269921,-0.05527101,0.07073073,-0.47008198,-0.24558268,0.4110047,-0.19032839,0.31374013,-0.44736186,0.029585933,-0.16571322,0.48371086,-0.26745114,0.08349781,0.36462346,0.32766733,0.48871118,0.1956254,-0.19594495,-0.11057205,-0.20758137,0.32553303,0.50224596,-0.17399518,-0.41670945,-0.2073129,0.17218398,0.092728786,0.34190375,-0.11406569,-0.20121019,-0.100282855,-0.0012811184,-0.25000617,0.3595496,0.40191928,-0.30688033,-0.46897155,0.2933193,0.5823609,0.03981423,-0.089815125,0.05203055,0.037606683,-0.48592886,-0.07262554,0.19822973,-0.10548909,0.40786844,-0.14590415,0.21922828,0.90285593,-0.22890197,0.17401846,-0.4937138,-0.32917106,-0.3238827,-0.101663575,-0.08563951,0.11217332,-0.5265156,0.039300125,-0.3077825,0.80203265,0.28768378,-0.805627,0.53633314,-0.52007204,0.17966703,-0.19782655,0.6579171,0.56136197,0.10838485,0.3449608,0.71581346,-0.48813584,0.20746498,-0.13648868,-0.47498766,0.025433961,-0.13465753,-0.039018217,-0.4255682,0.19532661,-0.0390927,0.13451153,-0.115325116,0.34640732,-0.5411535,0.10794135,0.1614059,0.71932465,-0.4500555,0.084615685,0.5245973,0.89537686,0.92619646,-0.019294607,1.2173561,0.40948448,-0.37190717,0.30066332,-0.5507145,-0.5953176,0.10778166,0.44556123,0.16854502,0.26428553,-0.1206609,0.065871574,0.2248407,-0.35625127,0.11579824,-0.106024735,0.1434203,0.15543102,0.0010670185,-0.5062017,-0.029791793,-0.043395314,-0.14597298,0.18398596,0.035814866,-0.16563664,0.26684147,0.0036870777,1.5359241,0.026900899,0.20610933,0.07571348,0.44050667,0.22949627,-0.10000787,-0.011044041,0.3905043,0.44197902,0.024920993,-0.6965422,0.19510235,-0.36112705,-0.55257213,-0.13550285,-0.2662153,0.041055318,0.16476305,-0.31487525,0.018660152,-0.005967033,-0.2939996,0.38427296,-2.6013923,-0.35276413,-0.2590957,0.21964373,-0.4387592,-0.120596066,-0.1869101,-0.5546572,0.235561,0.39500704,0.40707085,-0.6216473,0.47342938,0.3562636,-0.37313238,-0.1645615,-0.7363983,0.034610644,-0.14868774,0.3822828,0.02057594,-0.11000366,-0.16855282,0.24008457,0.554882,-0.03485244,0.041334048,0.21921295,0.48085496,0.43560895,0.5299329,-0.015659126,0.5048377,-0.17239295,-0.12600061,0.3495861,-0.24000007,0.28240934,-0.121401675,0.16215038,0.3162875,-0.4479753,-0.9010052,-0.68598115,-0.75840914,1.0505795,-0.39906433,-0.30898112,0.21136548,0.29485148,-0.050889395,-0.029140553,0.43119627,-0.14782508,0.106552266,-0.75517935,0.24235246,-0.09606181,0.18900456,0.14192274,0.1446894,-0.26933756,0.607925,-0.15931253,0.47324744,0.30509403,0.20270762,-0.021654272,-0.39616948,-0.0073135197,0.98015213,0.21517776,0.021619864,-0.110411644,-0.26875928,-0.18182757,-0.22140674,0.09838779,0.27709225,0.8133382,0.14118953,-0.030444784,0.2950217,-0.03589884,0.029096542,-0.17885806,-0.20329003,0.16876696,0.0030484677,0.5411011,0.38580963,-0.2432681,0.42660484,-0.24527904,0.29514554,-0.059808783,-0.36891893,0.6219111,0.6959356,-0.12361703,0.055056017,0.41812345,0.42124563,-0.4558784,0.38689712,-0.73656434,-0.19952099,0.6905421,-0.32753173,-0.3601949,0.19252107,-0.20029855,0.16181153,-0.94723296,0.3333617,-0.26629388,-0.06525235,-0.54630816,-0.17315309,-3.6506877,0.111037485,-0.06157828,-0.21292074,-0.069263235,0.0073028128,0.36132118,-0.66494066,-0.5153714,0.13749863,0.06362374,0.4886799,-0.0014607619,0.22311792,-0.35667378,0.0048831305,-0.19435872,0.14316693,0.13506134,0.18234383,-0.026167594,-0.40358338,0.15624724,-0.19144277,-0.53287876,0.29260197,-0.28617185,-0.3968999,-0.15930547,-0.44178954,-0.23812495,0.45166683,-0.409276,0.0700034,-0.13628358,0.08566442,-0.33574805,0.24600463,0.25173876,0.22273895,0.07084788,0.0007410437,-0.051654015,-0.28091526,0.57620883,-0.010875749,0.2859496,0.08328109,-0.102815054,-0.02346204,0.39195317,0.5196701,0.0052631935,0.8277747,0.44435918,-0.09844051,0.2248035,-0.43834192,0.007759585,-0.6342476,-0.5115868,-0.14652628,-0.3747296,-0.77581066,-0.08002725,-0.2782954,-0.68874043,0.50884163,-0.094739236,0.26506966,-0.054302763,0.24955977,0.2734424,-0.120499596,0.15113007,0.025790721,-0.11248701,-0.5271491,-0.23108469,-0.6664661,-0.434616,0.20430177,0.84795773,-0.20386644,-0.09325694,-0.27201587,-0.18521556,0.0022319714,-0.07823343,0.10179113,0.37521112,0.28460935,-0.01963609,-0.71069616,0.47965083,0.050188936,-0.106292926,-0.55190027,-0.09108288,0.6981279,-0.6505036,0.45649686,0.35642707,0.11086757,0.13577761,-0.4618997,-0.21252136,0.024666492,-0.2910245,0.36452276,-0.16673002,-0.5608927,0.5245535,0.33848614,-0.39003232,-0.69657135,0.35216933,0.114157066,-0.35108125,0.1435292,0.229642,0.12622096,-0.12446065,-0.4033639,0.24263597,-0.5248042,0.12765428,0.321318,0.012212296,0.4091643,-0.026978334,-0.2818213,-0.68502986,-0.09698143,-0.45111006,-0.21785736,0.28027007,-0.058428366,-0.030403875,0.13119714,-0.031209985,0.44631404,-0.18709596,0.023427697,0.13581893,-0.1631062,0.07296967,0.35465226,0.21519738,-0.39636675,0.55760765,0.11658872,-0.18330072,0.021884413,-0.084819235,0.38515237,0.11332866,0.17137638,-0.040266875,-0.31669158,0.4506045,0.77232325,0.28460553,0.39239785,0.2170777,-0.19409303,0.55140764,0.08865324,-0.004476134,0.12845169,-0.20939773,-0.17948365,0.23440695,0.05472506,0.47229415,0.2379389,0.43909076,-0.08487735,-0.20792398,0.08953323,0.28270036,-0.13482584,-0.66247994,0.28679785,0.17816506,0.65573823,0.54620284,-0.058866195,0.11013026,0.4924099,-0.3639124,0.11559009,0.3014767,-0.10493722,-0.5981628,0.7290708,-0.4195308,0.17638078,-0.13216928,-0.041269325,-0.012039872,0.17819414,0.25849673,0.7413592,-0.16775551,0.037313182,-0.15850057,-0.058619604,0.13941227,-0.30141914,0.075478554,-0.27787992,-0.22252975,0.6079418,0.3423564,0.2277016,-0.0924811,-0.09866483,-0.051945124,-0.11490408,0.2565631,0.0026488602,-0.006300187,0.124318294,-0.59415275,-0.35270888,0.61221045,0.15551935,0.1724187,-0.07540473,-0.46269524,0.14271961,-0.23248737,-0.028618613,0.040154193,-0.53241354,-0.03908988,-0.095299825,-0.5121017,0.37716025,-0.21495527,0.2912612,0.13476382,-0.049081776,-0.19795561,0.0432381,0.1678627,0.80480224,-0.05789369,-0.35874715,-0.41546288,0.06235748,0.36226088,-0.2742694,0.015978483,-0.2944249,-0.05682412,-0.58652663,0.66617674,-0.047625538,-0.3546901,0.24117793,-0.33737782,-0.16763096,0.6474054,-0.19070576,0.020446952,0.1375492,-0.23499289,-0.38868314,0.050420593,-0.3698272,0.10413658,0.19261116,-0.02928977,-0.1392161,-0.10426666,-0.09852992,0.6393786,0.11700698,0.3630771,0.19983597,0.16264696,-0.3599711,-0.05836458,0.1208581,0.19953363,0.1688107,-0.10002697,-0.31933758,-0.46845227,-0.10747778,0.0070235906,-0.10679086,0.24269359,-0.026592802,-0.5564787,0.7970666,0.03925343,1.1568758,0.1614098,-0.30543965,-0.017778581,0.536632,-0.111299396,0.11801769,-0.38005254,0.73789686,0.67481405,-0.017327627,-0.28206375,-0.2744494,-0.22635098,0.21971878,-0.29531974,-0.10380731,-0.058791224,-0.5658624,-0.6774409,0.35426196,0.18276826,0.076149516,-0.005501882,0.0025612593,-0.0886084,0.14761356,0.666407,-0.58546424,-0.40025845,0.18091844,0.17388138,0.06673231,0.12801242,-0.3045588,0.48476535,-0.6405217,0.18508612,-0.41454497,0.13564402,-0.1395318,-0.23968592,0.15801072,-0.022300832,0.3454427,-0.15813513,-0.5855286,0.039549835,0.48094568,-0.0021511943,0.242839,0.62686354,-0.29549783,0.2373092,0.08759121,0.60826993,1.4270257,-0.31635746,0.11239956,0.3658968,-0.3504214,-0.59223354,0.35535136,-0.30183318,-0.054019887,-0.15628938,-0.43188938,-0.2910428,0.3333632,0.21349713,-0.046198417,0.07712574,-0.4695473,-0.34258312,0.4048256,-0.31179163,-0.23022725,-0.17567171,0.36757222,0.879707,-0.41725168,-0.11488864,0.057167538,0.31183922,-0.46746242,-0.60780865,-0.26954967,-0.13075392,0.50148547,0.27742523,-0.13152494,0.17364591,0.26210505,-0.33407772,0.14766566,0.19134738,-0.49493933,-0.028999973,-0.16225019,-0.069578856,0.8219985,-0.1532094,-0.31877887,-0.8339099,-0.3157883,-1.0234797,-0.48521823,0.5962117,0.14699793,0.06326295,-0.23396635,0.15395358,0.041672014,-0.17417912,0.08115468,-0.5783249,0.2542755,0.17762426,0.6699304,-0.2727266,-0.6775827,-0.07008342,0.107891195,-0.06309291,-0.6613215,0.60787773,-0.022086136,0.8859657,-0.0056669414,-0.018914755,0.19410318,-0.3471468,0.13384908,-0.36111408,-0.18700816,-0.9036282,0.12871204,357 +198,0.22216204,-0.22317496,-0.50383073,-0.040160958,-0.30944487,0.2270812,-0.2862664,0.45623222,0.14483222,-0.4599017,-0.06886654,-0.09660527,-0.10218386,0.22105983,-0.12307542,-0.23468794,-0.042792883,0.23044515,-0.5540239,0.36706442,-0.37832636,0.23072772,-0.039099026,0.3311748,0.08660055,0.29080427,-0.095801316,-0.08717968,-0.04494264,-0.25713536,0.0051985225,0.22380342,-0.5859307,0.36502045,-0.27230728,-0.2708977,0.014948899,-0.31949326,-0.25054702,-0.65569717,0.10299856,-0.8029992,0.5569999,0.0020869474,-0.24610282,0.10277686,0.07471417,0.44651732,-0.1649966,0.0740466,0.31404248,-0.31522733,-0.25918275,-0.37936923,-0.0653685,-0.45286375,-0.48868412,-0.06397649,-0.50471336,-0.111052044,-0.15257612,0.28446656,-0.21730667,-0.06568535,0.04447,0.3025929,-0.36056077,0.307565,0.049966726,-0.15869074,0.15715507,-0.6940076,-0.06323972,-0.17989495,0.23304892,-0.2552327,-0.47573838,0.3170581,0.1642903,0.40541667,0.041424643,-0.10995094,-0.34789243,-0.12000222,0.0923398,0.44986832,-0.23506378,-0.22947365,-0.026214894,0.078066126,0.29466662,0.22707106,0.0135760745,-0.3985162,-0.13356471,0.012773673,-0.12187287,0.32437629,0.5307403,-0.14478745,-0.30972096,0.43727788,0.72816443,0.08876414,-0.14154339,0.049247734,-0.06637272,-0.5720207,-0.06138247,0.030472064,-0.07249069,0.37569442,-0.11176488,0.11043942,0.6917606,-0.36083743,-0.20444734,0.07772417,0.21227923,0.01067268,-0.2694486,-0.16928817,0.3432473,-0.48472112,0.12563623,-0.13220532,0.62030697,-0.03840377,-0.68988776,0.1743981,-0.5194414,0.0186328,-0.04253309,0.53714246,0.7930702,0.53032476,0.17240402,0.70476204,-0.3358764,0.1438573,-0.18341699,-0.21884535,0.1346971,-0.24328664,-0.13707122,-0.50582784,0.079280496,-0.072450414,-0.17025934,0.18494278,0.20739144,-0.6999544,-0.12682973,0.2503899,0.56842655,-0.36963928,-0.111485265,0.6556145,0.91719043,0.8512102,0.13378535,1.1963936,0.2214536,-0.16865346,0.16296639,-0.27603564,-0.7464993,0.17846803,0.20188037,-0.1437179,0.15605578,0.19180816,0.06797199,0.32918233,-0.5371425,-0.15796791,-0.20000052,0.52744216,0.13493109,-0.11414286,-0.23302348,-0.06532092,-0.031166304,0.02651426,0.097870745,0.23133118,-0.31463405,0.32971627,0.19146723,1.3586164,-0.039210625,0.0794646,0.12817478,0.24193494,0.190662,-0.1812384,-0.0342777,0.47236678,0.33102196,0.1951321,-0.40870178,0.060125407,-0.17134802,-0.5022064,-0.17442714,-0.1996967,-0.16501203,-0.087075315,-0.3718523,-0.29992172,-0.045919266,-0.193612,0.6096435,-2.8550622,0.021341983,-0.10296359,0.312697,-0.18191984,-0.4624747,-0.18835713,-0.39607298,0.33819792,0.17199828,0.4597025,-0.54268897,0.19672935,0.3280403,-0.65010893,-0.18556385,-0.6227841,-0.07502679,0.01577553,0.33459166,0.14784239,-0.03984654,-0.06596201,-0.1862279,0.54985446,-0.26852232,0.07478944,0.42824656,0.2639397,0.054002333,0.4050412,0.20031519,0.55866086,-0.29301116,-0.34916785,0.3917485,-0.4177009,0.29026607,0.070788704,0.03576598,0.49277037,-0.2785293,-0.8196776,-0.7702165,-0.025414975,1.1815034,-0.2627352,-0.38765225,0.14172377,-0.3448019,-0.3987519,-0.07593051,0.33528948,-0.102622405,0.06126604,-0.7791069,0.054319393,-0.14776094,0.4045959,-0.008854168,-0.019600682,-0.3902979,0.5840379,-0.20543763,0.35302174,0.45067436,0.18777351,-0.40695724,-0.3463363,-0.033228595,1.0194811,0.415109,0.08032766,-0.08586346,-0.28349826,-0.2862906,-0.12211146,0.21872982,0.6415091,0.41375384,-0.1344572,0.19161947,0.27095786,-0.16987279,0.113802314,-0.15281662,-0.18241236,-0.11214439,0.12717548,0.52628744,0.5910825,-0.008980027,0.57203656,-0.083496355,0.31180412,-0.09874127,-0.5400474,0.38794377,0.87033355,-0.19178829,-0.39820367,0.530991,0.37960353,-0.1814909,0.37915593,-0.55473113,-0.3272412,0.4350796,-0.16923732,-0.44938537,0.13907005,-0.24162285,0.24696249,-0.7753955,0.30731332,-0.22908685,-0.7429904,-0.71092093,-0.2699777,-2.0898414,0.14889066,-0.17240664,-0.103244044,-0.050968993,-0.19080044,0.21450645,-0.52929574,-0.34114343,0.12959987,0.10375834,0.5292409,-0.047922213,0.00059620343,-0.22403142,-0.32527918,-0.16687514,0.3207246,0.20717494,0.21963318,-0.113037795,-0.42427388,0.003177599,-0.016468795,-0.2941558,0.08712377,-0.6451189,-0.38826066,-0.07509635,-0.4566803,-0.26947448,0.7042674,-0.420549,-0.10170989,-0.1060807,0.11611153,0.121681325,0.088501826,0.22992903,0.16013367,0.12847368,0.013707325,-0.06815661,-0.31860194,0.3272642,0.025645072,0.2518446,0.48170286,-0.17222634,0.27163887,0.49465984,0.563835,-0.33717743,0.8483397,0.60356987,-0.10314844,0.2240209,-0.14041616,-0.21797727,-0.45806897,-0.300825,-0.14564157,-0.5608286,-0.26245517,0.021395126,-0.22064005,-0.73297024,0.64149475,0.02067559,-0.11892459,-0.03483819,0.46604246,0.4138198,-0.20951134,-0.17865008,-0.18715292,-0.09658448,-0.4419723,-0.4818316,-0.5324212,-0.50453967,0.008791673,1.3586421,-0.33703658,0.1841381,0.091607936,-0.22719435,-0.026802218,0.32026756,-0.100986265,0.14977883,0.5631723,-0.10465158,-0.5352615,0.3399308,-0.19026352,-0.22896232,-0.6982948,0.35306683,0.59973925,-0.7512999,0.43529573,0.23872373,0.057302628,-0.180759,-0.58846146,-0.13046496,-0.05550456,-0.4043117,0.30698243,0.25744256,-0.7594372,0.4233511,0.2928382,-0.24866104,-0.5863513,0.3427796,-0.059439663,-0.12221754,0.015122445,0.32833913,0.16678163,-0.03268489,-0.18883258,0.2573615,-0.28580314,0.37121534,0.06297266,-0.06562191,0.18125172,-0.24805681,-0.21221265,-0.6487226,0.044487,-0.3771318,-0.40875858,0.34416017,0.015680082,0.085702516,0.33163124,0.063826576,0.4268447,-0.27219963,0.07852785,-0.29939848,-0.2716824,0.20262337,0.40132916,0.42364243,-0.37639135,0.5396241,0.07094412,-0.26062095,-0.08472673,-0.0031827649,0.62213033,-0.1362337,0.39123717,-0.040725492,-0.110041395,0.18607426,0.67901117,0.13638707,0.49778822,-0.2377939,-0.16702232,-0.012300013,0.03599467,0.18384238,0.060078543,-0.6174462,0.10955949,-0.12142204,0.22078404,0.40210587,0.07979039,0.4897384,-0.09585734,-0.21341226,-0.048643567,0.20345102,0.21447198,-1.3725859,0.39636225,0.31401882,0.7843548,0.31131876,0.11321406,0.07080007,0.63120157,-0.23718172,0.11677875,0.23016709,-0.13025509,-0.2721791,0.372245,-0.90604085,0.56556714,-0.06981301,0.07124616,0.0661813,-0.09745179,0.44544584,0.9843871,-0.26955906,0.03700069,0.10355911,-0.27502537,0.1546088,-0.2840673,0.1737261,-0.57555085,-0.39751995,0.7104218,0.44941172,0.44320408,-0.15137953,-0.050033305,0.2890595,-0.11108819,0.23423032,-0.031065112,0.17681615,0.05133455,-0.3525236,-0.10212493,0.6320721,-0.21841711,0.16944881,0.11007878,-0.20157698,0.36750358,-0.036246035,0.014566581,-0.13319452,-0.42110118,0.025052028,-0.248049,-0.37399042,0.60495794,-0.3516179,0.15611272,0.20449717,0.090964206,-0.21350582,0.53644484,0.15644707,0.8579283,0.06983432,-0.19211505,-0.29654747,0.34225276,0.14929628,-0.16460893,0.020611163,-0.27645996,0.016169855,-0.6906857,0.18149765,-0.23647954,-0.43989143,0.01575404,-0.15288748,-0.0064271945,0.5036803,0.03880385,-0.12565298,0.14577295,-0.26543403,-0.25396684,-0.20621684,-0.2497699,0.2817539,0.29578844,0.023223843,-0.21635841,-0.22775349,-0.23330459,0.19938754,0.06240917,0.31252918,0.20071216,0.00872858,-0.19221278,0.08525823,0.13522281,0.4945388,-0.16354989,-0.12398208,0.003259448,-0.3293396,-0.46182826,0.19252902,-0.15552332,0.45473078,0.2271653,-0.26142147,0.8296173,-0.115653835,1.2195494,0.082483746,-0.2655707,0.14032486,0.5077652,0.14629236,0.07875439,-0.35871398,0.9049601,0.6516244,0.071372,-0.06369691,-0.2641744,-0.13058107,0.19586353,-0.18544601,-0.15323757,-0.035795353,-0.663433,-0.29597527,0.34505552,0.19239025,0.09365849,-0.12299867,-0.04614792,0.29342833,-0.09459269,0.16704121,-0.43272546,0.044960868,0.21841694,0.3883037,-0.10741396,0.19412167,-0.49720865,0.4289107,-0.4760249,0.028203432,-0.1383625,0.22449154,-0.18398218,-0.17843825,0.14215747,-0.025443697,0.3474765,-0.4150421,-0.31950453,-0.20280698,0.49240273,0.17440285,0.19805747,0.59101105,-0.3255631,0.02420566,-0.05645193,0.29312143,0.9671353,-0.578494,-0.08784457,0.4355393,-0.2395514,-0.404028,0.3753988,-0.40372494,0.19501638,-0.03475887,-0.2396904,-0.280235,0.28966597,0.18246517,0.08546179,-0.052402362,-0.6055954,0.102035746,0.15980321,-0.3120684,-0.108807944,-0.10467779,0.29116383,0.66676456,-0.26164332,-0.46576247,0.07932003,0.25465414,-0.267979,-0.37177786,-0.055089258,-0.32886928,0.19777207,0.0095748985,-0.37020403,-0.15390949,0.08545688,-0.42583594,-0.11436289,0.10971387,-0.2488313,0.046077285,-0.20357123,0.17759481,0.68413514,-0.19542636,0.21088044,-0.46860406,-0.37512106,-0.78105074,-0.011877577,0.21195449,0.19301298,0.006783644,-0.7364767,-0.12651552,-0.2045193,-0.3194889,-0.032367244,-0.5060594,0.5632467,0.15615335,0.1637352,-0.25485367,-0.9897414,0.25318652,0.13979381,-0.020005222,-0.64337975,0.51376766,-0.088404864,0.81685513,0.09452493,0.009782829,0.34948668,-0.49947014,0.2031475,-0.20017835,-0.071408816,-0.86050797,-0.1021341,362 +199,0.34625703,0.011339994,-0.45186532,-0.06357749,-0.33647975,0.1439781,-0.14301774,0.5106424,0.021718243,-0.40238163,-0.052542415,-0.08135971,0.07799088,0.36447963,-0.29952303,-0.5067516,0.08139011,0.11059241,-0.4766464,0.6143879,-0.32290748,0.39282146,-0.085792035,0.22202258,0.19191392,0.35712227,0.09886484,-0.22790964,-0.23860504,-0.091315016,-0.10200844,0.25110504,-0.5980235,0.10774582,-0.099495344,-0.3084139,-0.008114491,-0.1614287,-0.4829694,-0.60374933,0.3231529,-0.76086813,0.43092683,-0.06194804,-0.2764452,0.37650868,0.093374036,0.28669894,-0.19800492,0.010724926,0.115388766,-0.07770169,-0.0023732951,-0.19515152,-0.15454645,-0.6453065,-0.5473828,0.022967098,-0.5714461,-0.24513987,-0.32949135,0.14148931,-0.28942317,-0.12213791,-0.14814474,0.2962829,-0.6295029,0.09484087,0.09239789,0.037925895,0.11299636,-0.5597435,-0.13889913,-0.027553022,0.25272325,-0.17752409,-0.0023442705,0.3435832,0.20266335,0.2239077,0.011187092,-0.06158062,-0.42451972,-0.22707777,0.27392054,0.39430892,-0.18693647,-0.62627804,-0.00632481,0.0167053,0.078598686,0.10687326,0.15878065,-0.116819985,-0.15296885,-0.054475117,-0.31461304,0.37972873,0.48496065,-0.34882516,-0.29106063,0.33031458,0.41693336,0.26905122,-0.28916612,-0.020652508,-0.027599568,-0.47818673,-0.09914212,0.10885032,-0.06825996,0.54977226,-0.21201071,0.27111003,0.7345347,-0.3111338,0.17386265,-0.0052669784,0.06851465,-0.026435426,-0.10497127,-0.096409716,0.07668544,-0.46510497,0.08477166,-0.1999435,0.8060169,0.16057518,-0.6405551,0.3918521,-0.56791306,0.06405785,-0.10657035,0.4013554,0.3496138,0.466101,0.045717414,0.5242549,-0.3004633,0.07102857,-0.020059569,-0.42532244,0.18264885,-0.28031498,-0.22458868,-0.4548005,0.03751082,0.08128725,-0.062273636,-0.20554732,0.53113395,-0.49255827,-0.101056576,0.20041393,0.87687504,-0.36278695,-0.13630909,0.6993581,0.939062,0.9982803,-0.0673898,1.1177777,0.039297827,-0.22023672,0.054612365,-0.2998508,-0.6343184,0.19198507,0.251564,0.05903331,0.24140361,0.2355946,-0.041118186,0.20028739,-0.24385157,0.05031923,-0.33858433,0.16920932,0.1360089,-0.14923534,-0.3706164,-0.3221807,-0.040795684,0.02914212,0.13305138,0.3555441,-0.056664966,0.39253986,0.004890426,1.7328582,0.035142846,0.08651967,0.065274045,0.7043964,0.26506016,0.100986436,-0.02617168,0.29252827,0.39453512,0.3074362,-0.4445634,0.06269631,-0.27081886,-0.81073534,-0.011138278,-0.38331014,-0.23774593,-0.10314817,-0.6813461,-0.17881706,0.043181177,-0.076697126,0.3336774,-2.7456236,-0.07263397,-0.086063646,0.27712256,-0.19831398,-0.24262063,-0.06342059,-0.35082525,0.42061904,0.31340164,0.50593317,-0.65214443,0.56024474,0.4189638,-0.42778552,-0.02825353,-0.45047233,-0.1842115,-0.032655425,0.47324613,-0.07668244,0.07868758,0.28716508,-0.009785447,0.42777404,-0.30673778,0.18277659,0.11990775,0.21643446,0.060847457,0.39223462,0.11057327,0.4124886,-0.21018313,-0.09209382,0.28292984,-0.28382805,0.40101483,-0.18272498,0.14646628,0.2925234,-0.4417206,-0.9270445,-0.5879584,-0.12872571,1.016903,-0.14652057,-0.3469524,0.2095292,-0.31104368,-0.28822866,-0.19310807,0.25762552,-0.08223845,0.09564511,-0.7114715,0.06465534,-0.08682978,0.20383967,0.0018686026,0.017447893,-0.38020393,0.6690582,-0.014627339,0.34098053,0.29423296,0.14191738,-0.32809058,-0.57930094,-0.046594366,0.72854084,0.30485693,0.092249535,-0.33029085,-0.25748855,-0.30951527,-0.0822734,0.07232778,0.4128834,0.62407655,0.057893295,0.10858288,0.14159267,-0.030482966,0.09827403,-0.17096399,-0.35211584,-0.052813496,-0.09405272,0.54902387,0.5355928,-0.2929239,0.5819415,-0.22487248,0.30165687,-0.2813987,-0.38143572,0.4957334,1.1158336,-0.17956166,-0.21112356,0.5557832,0.6071977,-0.2712439,0.3398001,-0.4801531,-0.23635688,0.5123659,-0.26661,-0.35741326,0.25586027,-0.23809032,0.054843616,-0.8914215,0.4479212,-0.46967295,-0.418497,-0.52293694,-0.11379507,-3.6562617,0.093790166,-0.22322902,-0.2764099,-0.2014447,-0.15411803,0.08957682,-0.6933047,-0.4384352,0.056177862,0.1441392,0.6299116,-0.072294086,0.12682289,-0.25453153,-0.25514343,-0.2346795,0.21256499,0.13845731,0.2987667,-0.21624425,-0.43911165,-0.025899675,-0.26976597,-0.3884764,0.14158958,-0.61503154,-0.40227228,-0.12888719,-0.457853,-0.24277078,0.6677142,-0.17159237,0.027397713,-0.17476943,-0.012704237,-0.16738766,0.27325642,0.1188351,0.044381738,0.08420261,-0.05891432,0.10628676,-0.2806541,0.28940424,0.08790962,0.5285312,0.42570436,-0.08693843,0.005120615,0.55107003,0.45612544,-0.10015964,0.8296679,0.28900862,-0.17900136,0.34987456,-0.3074375,-0.18778893,-0.6604278,-0.35080966,0.028293813,-0.32098073,-0.59608215,-0.074154645,-0.3691368,-0.7232999,0.51421255,-0.19171901,0.024192674,-0.04934422,0.37263843,0.48824865,-0.11763317,-0.025021719,-0.0567679,-0.032234218,-0.5556141,-0.33758202,-0.5907221,-0.4256995,-0.094285876,0.94715756,-0.19101678,-0.08734188,-0.13913304,-0.27688536,-0.0031154433,0.116464406,0.07844202,0.17013845,0.26577204,-0.16483113,-0.7861604,0.7586412,-0.066630706,-0.23008905,-0.302354,0.05667751,0.48559472,-0.71656144,0.35977966,0.57062477,0.040749263,0.023745649,-0.534212,-0.2176027,0.055078007,-0.13917738,0.34047496,0.10828714,-0.71243644,0.41858897,0.2933257,-0.36598584,-0.54847604,0.7728352,-0.0030615865,-0.41282788,0.08047261,0.25507954,0.011737378,-0.016393578,-0.34958515,0.36067683,-0.5302937,0.18338004,0.19170551,-0.001347049,0.3597557,-0.14027707,-0.21666236,-0.6371692,0.11316438,-0.34501138,-0.30562735,0.28862724,0.13999985,0.009315117,0.13409847,0.07312472,0.37729225,-0.4395464,0.15682913,-0.019101245,-0.1268173,0.4338557,0.27870587,0.49802065,-0.4849645,0.5309385,-0.06878033,0.0010059933,0.15290171,0.18207581,0.48026648,0.086616434,0.47757953,0.23674649,-0.21535192,0.29566517,0.9264297,0.348108,0.5636119,0.034134816,-0.30685616,0.2991653,0.12551257,0.14170144,0.111704506,-0.37486073,-0.020329492,-0.12580012,0.14999662,0.42149353,0.054713666,0.25885847,-0.1627255,-0.19101177,-0.017967869,0.26816234,0.1444331,-1.023435,0.3479101,0.23612578,0.6269628,0.47518757,0.045207057,0.11946246,0.62270904,-0.32403982,0.1787091,0.37651315,0.114816226,-0.6358401,0.46941358,-0.65571827,0.4906164,-0.017139716,-0.031250868,0.12712398,-0.10503352,0.25770316,0.77401847,-0.017665587,0.06272714,0.05483863,-0.4514756,0.061286233,-0.47339553,0.12481126,-0.3717759,-0.091709524,0.63564163,0.49595654,0.20083402,-0.10801905,-0.00899879,0.19264267,-0.11120126,0.23746678,0.16458565,0.34389463,-0.029067885,-0.5392223,-0.373526,0.54755867,-0.31086066,0.104788676,0.04090522,-0.2252245,0.3781308,-0.20769806,-0.061443508,-0.01628549,-0.6789003,0.25640732,-0.15775868,-0.31321982,0.49988708,-0.28847477,0.2917824,0.22903657,0.0063494844,-0.42419142,0.2962614,0.016501259,0.6188666,-0.06678273,-0.14695288,-0.30812433,-0.020086054,0.19513565,-0.21001269,-0.06356262,-0.09021358,0.05927141,-0.47687542,0.34720075,-0.08433204,-0.18317658,-0.24568357,-0.13701344,-0.07648385,0.433672,-0.0033281366,-0.15177199,-0.073585376,0.14319763,-0.22868031,0.024621133,-0.033473715,0.15263878,0.27876794,-0.18552405,-0.10191794,-0.122834936,0.030838294,0.42599162,-0.09570774,0.44913784,0.3844163,0.07923215,-0.3431646,-0.20651852,0.24378088,0.44160125,-0.15028347,0.04449008,-0.25952426,-0.34420618,-0.26923132,0.19341087,-0.26246762,0.24854441,0.26180857,-0.3088577,0.8737447,-0.028508432,1.1484572,0.089377865,-0.43855894,0.27693036,0.5230077,0.10906188,0.063186795,-0.31198344,1.0853007,0.58836263,-0.13216445,-0.18872811,-0.16238949,-0.07335614,0.12311465,-0.20865989,-0.2532047,0.024530776,-0.43804953,-0.13056314,0.31454024,0.2583819,0.16542734,-0.017833322,-0.07324067,0.23185495,0.21139531,0.3096542,-0.58804536,-0.32623607,0.32613364,0.2271823,0.09646765,0.1677557,-0.5270259,0.36545002,-0.49027374,0.104332656,-0.23657991,0.14995432,-0.18952782,-0.3500437,0.15759894,0.13359115,0.3890583,-0.22647175,-0.33228862,-0.30987504,0.3455349,0.25400832,0.20550154,0.5330872,-0.14688705,0.20390965,0.057424523,0.43738803,0.8953884,-0.20164742,-0.27218536,0.4612565,-0.46674463,-0.710277,0.20685536,-0.38635787,0.22868395,-0.16068941,-0.18458632,-0.6480611,0.31632602,0.35866168,-0.06684127,-0.01249156,-0.5534698,-0.17880502,0.36078602,-0.3559494,-0.3502697,-0.3008958,0.1547416,0.7804083,-0.35874337,-0.2132256,-0.03429509,0.2365358,-0.17603621,-0.54875565,0.015154209,-0.40069744,0.3901413,0.09133746,-0.19262238,-0.049302123,0.002136596,-0.26478153,0.31244114,0.45880514,-0.3437182,0.14305966,-0.3327276,0.040950146,0.8026945,-0.2389306,-0.044885363,-0.53275084,-0.47913837,-0.81748736,-0.3942421,0.5035889,0.21978544,0.052388463,-0.6126614,-0.08476851,0.024979651,-0.30029002,-0.02042227,-0.39693558,0.50363314,0.113609955,0.0766874,-0.08123512,-0.81728643,0.08719869,0.09397229,-0.24221863,-0.5151111,0.53156376,-0.22674847,0.90204775,0.0609734,0.013365784,0.25419906,-0.34630394,0.046474654,-0.2071159,-0.19148885,-0.5316352,0.061536584,364 +200,0.26078454,-0.21409829,-0.39637342,-0.15190388,-0.3581217,0.17423071,-0.22757702,0.15576416,0.07971278,-0.38774088,-0.20025234,-0.04329093,0.07824548,0.27986094,-0.08047913,-0.5966879,-0.02079057,0.15933967,-0.798496,0.44301277,-0.6156396,0.35509402,0.11437754,0.33525088,0.0962731,0.4245097,0.12970257,-0.1492869,-0.055055395,-0.23688258,-0.07410271,0.15926674,-0.3881047,0.21771884,-0.16834728,-0.20212762,0.16640997,-0.3619074,-0.22614051,-0.61363804,0.09544352,-0.97322726,0.44337618,-0.13964802,-0.10620155,-0.089236304,0.18879806,0.4627786,-0.36524472,0.10633993,0.12273606,-0.2499825,-0.23500015,-0.38961565,-0.049104653,-0.20337561,-0.31525585,0.0939947,-0.47468823,-0.40971696,-0.044827603,0.23160559,-0.2083249,0.067680076,-0.18682022,0.18743657,-0.41349143,0.090997666,0.32506734,-0.32016128,-0.05583902,-0.51837593,-0.014587259,-0.026962193,0.56263787,-0.06600411,-0.114361,0.33969492,0.18026471,0.48728,0.24359483,-0.24008112,-0.0519435,-0.3496308,0.17219916,0.56083834,-0.061735388,-0.10774982,-0.22064851,-0.0077235224,0.29077825,0.37447268,-0.0037507752,-0.2642484,-0.102316804,-0.2800471,-0.17367649,0.2754194,0.44155154,-0.22158654,-0.31259635,0.35656688,0.50589013,0.038566433,-0.17965372,0.20639838,0.03977915,-0.40098047,-0.16428007,0.18702513,0.19386564,0.4323782,-0.13541085,0.21842629,0.75963646,-0.11415381,0.08887504,-0.05208335,-0.0155107975,-0.18735425,-0.28883377,-0.16467114,0.044074953,-0.547738,0.011488537,-0.30411884,0.8367037,0.19588155,-0.6441374,0.35882792,-0.47545975,0.072664656,-0.017136518,0.63399166,0.4841057,0.3852565,0.19842069,0.6718289,-0.3217208,0.22132412,-0.16566893,-0.34468976,-0.13347551,-0.13333826,0.044500813,-0.38465947,0.28628045,-0.030501945,0.120913714,-0.056213833,0.38141266,-0.5306789,-0.0020943086,0.14886467,0.7182036,-0.38244337,0.05395723,0.78875417,0.94940394,0.7064836,0.04125541,1.2026378,0.37890518,-0.185466,-0.0048307795,-0.24879931,-0.61962116,0.0782468,0.32482263,0.43572506,0.14110237,0.020882575,-0.061881885,0.3581707,-0.47593558,0.1599231,-0.19905697,0.30603963,-0.12719344,0.1686379,-0.44455853,-0.20625499,0.040243115,-0.16715784,0.25335506,0.23607992,-0.2580707,0.42515987,-0.05804495,1.299687,-0.119053885,0.09497897,0.18809037,0.44401243,0.09406173,-0.13475566,-0.15377375,0.42616826,0.46094647,-0.1906786,-0.6234113,0.0500684,-0.25034148,-0.4313713,-0.16130237,-0.38018006,-0.1302372,-0.04778831,-0.3870547,-0.26060975,-0.038971648,-0.32982534,0.41883758,-2.6781774,-0.22309606,-0.15371844,0.33521843,-0.39047292,-0.27708676,-0.1714845,-0.43278927,0.2193594,0.1790796,0.34038055,-0.5291366,0.47913292,0.4329911,-0.29271695,-0.28115177,-0.6532672,0.04643317,-0.10498902,0.34103858,-0.016854756,-0.092426635,-0.42129996,-0.14888027,0.5899093,-0.036154635,0.14665829,0.5429342,0.30211893,0.35209048,0.51297444,0.06642253,0.6384954,-0.39531168,-0.12805375,0.38857394,-0.24783958,0.37112096,-0.18772887,0.12586217,0.38966045,-0.6033309,-0.54861706,-0.5888482,-0.49311242,1.1724377,-0.45361117,-0.36465582,0.19692533,-0.16238587,-0.18837349,0.10736305,0.63993704,-0.1695173,0.02060825,-0.5798063,-0.009108181,-0.024741888,0.41066235,-0.0012954145,0.02953537,-0.31335393,0.5768949,-0.25442323,0.6751572,0.17495622,0.22179495,-0.085610196,-0.28015763,0.12152529,0.9310115,0.26329815,-0.0058270413,-0.10431349,-0.34195006,-0.19023076,-0.31209052,-0.045928497,0.585971,0.78269464,0.077538244,0.014546224,0.32217038,-0.16124485,-0.0051392196,-0.17841548,-0.1259211,-0.10651131,0.065584496,0.47621605,0.40757248,0.05188097,0.4859261,-0.28784496,0.46550223,-0.18826638,-0.4541903,0.4848846,0.2303296,-0.20806475,-0.1681637,0.5881158,0.6495533,-0.28608522,0.34120852,-0.6117423,-0.31920528,0.58222985,-0.18025322,-0.49624434,0.28698146,-0.1601731,0.31110534,-0.80783045,0.24961138,-0.23735647,-0.5041799,-0.41627845,-0.0690866,-2.5679312,0.10047575,-0.04429859,-0.13796361,-0.17020164,-0.11765487,0.16486746,-0.389213,-0.35756508,0.13670023,0.19929396,0.6251139,0.051176038,0.13009037,-0.2876239,-0.09960375,-0.02457467,0.13774046,0.061669096,0.2748896,-0.32981095,-0.23584965,0.06073548,-0.09055285,-0.36651233,0.17255399,-0.6611858,-0.524954,0.01263939,-0.5528019,-0.21540709,0.6172826,-0.54322463,0.024148563,-0.20322813,-0.0707432,-0.22512333,0.12126226,0.20870797,0.26845166,0.13609266,-0.13699798,-0.07335699,-0.49426338,0.4669577,0.031263687,0.22493187,0.084410325,0.02031706,0.13441661,0.22367963,0.50411284,-0.18582787,0.8959843,0.2170653,-0.07340159,0.24371475,-0.27589953,-0.29980054,-0.4383438,-0.22031341,-0.021592315,-0.3517024,-0.4639605,-0.052934263,-0.25254694,-0.777561,0.5937208,0.13243145,0.0633621,-0.09490714,0.31741938,0.4214652,-0.016754815,-0.026307741,-0.06595855,-0.08129821,-0.44850424,-0.41890207,-0.6208909,-0.36130196,0.027274013,0.97012067,-0.2571618,0.057430103,-0.027613753,-0.42303413,-0.044394914,0.066215925,0.13406317,0.37155056,0.60120636,-0.1273912,-0.60059524,0.47017315,-0.13481788,-0.15746687,-0.33290288,0.070514955,0.6557039,-0.8456002,0.49548784,0.25840327,0.114420764,-0.038860217,-0.32499543,-0.2231863,-0.02154702,-0.27299318,0.38873115,0.101634055,-0.7537338,0.47714177,0.1733673,-0.16666079,-0.85859406,0.18930095,-0.06164786,-0.30545172,0.16919045,0.43364894,0.027316237,-0.044855542,-0.25069648,-0.017398022,-0.36397296,0.26884183,0.21010993,-0.17534687,0.25906426,-0.3989379,-0.36198375,-0.59067225,-0.05571767,-0.5483111,-0.22203524,0.23120579,-0.06344338,-0.035590388,0.27065858,0.067856304,0.35075885,-0.33756146,0.097371385,0.025741274,-0.2994148,0.16916583,0.33967468,0.23173358,-0.41826317,0.520409,0.06370401,0.019129673,-0.08255809,0.08969094,0.42030498,0.042576227,0.28069574,-0.2478786,-0.14570875,0.36414775,0.91289276,0.1575451,0.5106428,0.2380445,-0.11951324,0.41168964,-0.011236661,0.05549644,0.07513544,-0.37727496,0.013850365,0.10566136,0.1277477,0.34047043,0.4647011,0.5344214,0.058992404,-0.21104528,0.048337374,0.1437411,-0.118990324,-0.83896744,0.20777269,0.13365431,0.7408908,0.29100844,0.11370536,-0.1358126,0.65164816,-0.35476333,0.14030625,0.22304174,-0.18436402,-0.41205174,0.66012514,-0.36550808,0.41815317,-0.20244715,-0.071593255,0.26696873,0.06917237,0.28259805,0.8286676,-0.110330366,0.03254462,-0.07320344,-0.056939777,-0.0827047,-0.2887432,-0.031856816,-0.44686705,-0.32509592,0.6720941,0.40276405,0.45707008,-0.14182329,-0.0077411523,0.13791077,-0.15034573,0.11325385,-0.011452576,0.053455822,0.1669914,-0.43901518,-0.2981793,0.5649043,0.022358995,0.09556745,0.03309323,-0.3168513,0.10849576,-0.2710796,0.039076988,-0.10238348,-0.60128444,0.124343604,-0.28321105,-0.57971513,0.09026919,-0.24966292,0.16536449,0.21326794,-0.06952039,-0.19729838,0.39590067,0.118555516,0.94266224,0.075689174,-0.3407055,-0.23955849,0.009090984,0.32007858,-0.34935957,0.0862895,-0.38274363,0.13852367,-0.7413871,0.5453549,-0.18379964,-0.37653401,0.21202949,-0.23834863,-0.13082753,0.49443752,-0.03276856,0.021352682,0.16400068,-0.20049745,-0.47076893,-0.010693184,-0.34295723,0.11759349,0.35185793,0.023090383,-0.047417905,-0.19312058,-0.11807697,0.47376072,0.09192371,0.5176554,0.20731373,-0.045172047,-0.14888467,0.16264413,0.15146914,0.42293134,-0.030842774,0.12175061,-0.19009107,-0.2714438,-0.08468618,0.44896066,-0.052549053,0.21229932,0.07571094,-0.25399983,0.9177036,0.0046973866,0.84604377,0.17174286,-0.2353391,0.07207643,0.46583515,-0.09271596,0.16984409,-0.3440316,0.9372579,0.3913007,-0.0293629,0.03378216,-0.42025438,-0.15252203,0.34918308,-0.29911658,-0.09303393,-0.09544309,-0.4742221,-0.45741794,0.21065207,0.20343964,0.15029334,-0.03858849,0.013376715,-0.05013104,-0.059298635,0.3455649,-0.6930243,-0.10376059,0.27127197,0.1489065,-0.06776159,0.14833859,-0.44048193,0.48385912,-0.77686983,0.1594425,-0.39537245,0.008244603,-0.07548496,-0.23491865,0.0109366635,-0.013304802,0.31461823,-0.5402927,-0.42482606,-0.2639967,0.47795212,0.09010527,0.20719963,0.65656036,-0.24994664,0.00038493623,0.13792108,0.54928905,1.049086,-0.22002943,0.14283167,0.23316115,-0.3492211,-0.5589991,0.27394742,-0.2705011,-0.053063378,0.0004831925,-0.4710416,-0.2999602,0.35610092,0.3444748,0.06718295,0.08074163,-0.51923823,-0.052627023,0.45625082,-0.14991353,-0.28954583,-0.16170861,0.29062968,0.63280475,-0.08255849,-0.3159736,-0.028590463,0.29708746,-0.43535712,-0.40816957,-0.075768456,-0.25486898,0.2697625,0.04061521,-0.2268051,-0.1959913,0.12984632,-0.39820918,0.008731453,0.33205974,-0.35198414,-0.008445493,-0.101672806,0.018445313,0.8199556,-0.14468478,-0.09160821,-0.68656045,-0.4788664,-0.7758052,-0.50439954,0.20407334,0.19005568,0.052122395,-0.27807814,0.04277234,-0.19181246,-0.17379607,0.2949224,-0.51039255,0.26831338,0.1856248,0.4235444,-0.2784732,-0.9192263,0.26044187,0.030636137,-0.3770655,-0.54464954,0.4909249,-0.09196527,0.701455,-0.006522368,-0.1397861,0.08986498,-0.53469825,0.13292977,-0.35815546,0.04927652,-0.8223669,0.1032072,372 +201,0.30533296,-0.1557929,-0.45070538,-0.14327288,0.026436014,0.17172475,-0.12622155,0.59860355,0.2076995,-0.4987909,-0.0007022659,-0.1831708,0.046967927,0.14595346,-0.18490297,-0.36560422,0.023356104,0.076920815,-0.20749687,0.35778967,-0.47839496,0.32301226,0.038577553,0.13743207,0.1365065,0.30769035,0.16408795,-0.20644644,-0.10054768,-0.11792863,-0.33979067,0.28875294,-0.37969428,0.07168415,-0.20157911,-0.20702095,0.14456293,-0.38528213,-0.4219096,-0.6554678,0.3808438,-0.75352466,0.4437741,0.07682007,-0.1596681,0.2252043,0.15739581,0.2670323,-0.18871447,0.022621969,0.24172309,-0.063716374,0.16432239,-0.16103655,-0.31740245,-0.392744,-0.37750638,0.040099356,-0.46526152,-0.21753529,-0.21292563,0.04060425,-0.31410822,-0.12686591,-0.22881489,0.29562318,-0.36541858,-0.1484953,0.17471059,-0.24093147,0.24261841,-0.5602502,-0.21320948,-0.028090527,0.19439448,-0.2929901,-0.15962233,0.22743554,0.19252181,0.471024,-0.23399611,-0.026536204,-0.13367341,-0.23242368,0.07873833,0.5570732,-0.23120798,-0.5863339,-0.010254057,0.0630858,0.2049256,0.17946178,0.06452129,-0.23084898,-0.1514408,-0.040392954,-0.33709174,0.3941611,0.6077772,-0.39613244,-0.109161824,0.29569873,0.46950716,0.257444,-0.1299276,0.03670273,-0.0672239,-0.57865214,-0.14097403,0.046825014,-0.2541858,0.62141794,-0.09485171,0.21535166,0.587941,-0.24309942,0.1533049,0.13868889,0.075991295,-0.06700942,-0.19475564,-0.25768584,0.058941957,-0.45797125,0.09087249,-0.10320867,0.76159453,0.14352895,-0.6225308,0.4078199,-0.36387083,0.109712124,-0.052882608,0.49592984,0.52639335,0.18545265,0.18084106,0.7168633,-0.62704563,0.12716162,-0.16577269,-0.34941146,0.12134813,-0.057358123,-0.023017133,-0.39254877,0.07587024,0.14929156,-0.06806908,0.10539199,0.28230342,-0.49445316,0.02463617,0.10609953,0.8903919,-0.25265136,-0.061192267,0.54811573,0.8397688,0.8259202,0.012694941,1.0125105,0.04601551,-0.3075151,0.053758804,-0.14730765,-0.76278913,0.24362427,0.2925935,-0.11263145,0.17369388,0.30270287,0.12984471,0.17025325,-0.29133466,-0.06391523,-0.18543476,0.21021064,0.17145385,0.009894192,-0.30190113,-0.2539841,-0.08822908,0.0727902,-0.008922827,0.18030605,-0.16499853,0.2252745,0.08775996,1.6135821,-0.031118723,0.11215185,0.12236268,0.42545998,0.27551612,-0.16594853,-0.08673313,0.43537548,0.45773628,0.005313532,-0.5351125,-0.07668374,-0.179564,-0.37057585,-0.08313959,-0.26209837,-0.08300929,0.011567845,-0.5180397,-0.08143958,-0.10178733,-0.27219915,0.48448464,-3.046693,-0.00020488998,0.0009623468,0.27928355,-0.31646767,-0.33299333,-0.13546751,-0.46432915,0.3241575,0.4124557,0.36553103,-0.650217,0.12191723,0.33299434,-0.26587746,-0.18296097,-0.62087756,-0.098828636,-0.06109423,0.30519918,0.120368384,0.00095648767,0.053301882,0.2285754,0.332145,-0.00015509129,0.0774678,0.025211167,0.4131465,0.2598568,0.38637343,0.0017443975,0.47908542,-0.18224488,-0.05924257,0.34003645,-0.3783055,0.18840833,-0.029307198,0.1729844,0.33767274,-0.26088235,-0.6806454,-0.48178998,-0.24484423,1.195819,-0.23786242,-0.3791579,0.2876152,-0.29329816,-0.31812173,-0.22355217,0.46833393,-0.12755887,-0.15591525,-0.73970824,0.0608697,-0.11701135,0.16964646,0.004339232,-0.043802906,-0.34375465,0.6227352,-0.00036295652,0.4362251,0.3889273,0.10998125,-0.17933348,-0.31037274,-0.05639263,0.8637066,0.37416857,0.11172963,-0.16272688,-0.08449728,-0.2983642,0.06241963,0.13085261,0.52177304,0.7466019,-0.008582128,0.05900377,0.25221127,0.106939115,-0.005878357,-0.08377197,-0.3022442,-0.0371245,-0.036040016,0.6093375,0.39002064,-0.14360599,0.38698027,-0.07923588,0.09776608,-0.305067,-0.3983929,0.28594717,0.64694905,-0.081129625,-0.1916019,0.41453227,0.44840494,-0.17705555,0.3886627,-0.5828855,-0.30555293,0.581516,-0.2554521,-0.35211104,0.3889032,-0.39333174,0.12104332,-0.74470216,0.20545253,-0.15377621,-0.46295077,-0.5315587,-0.17476243,-3.4071834,0.08662378,-0.13173482,-0.21794952,-0.098906115,-0.07615617,0.17457822,-0.5157689,-0.46905518,0.18880787,0.05401493,0.5530759,-0.018328506,0.008104726,-0.25828722,-0.28068334,-0.21976201,0.05718473,0.010581698,0.23654552,0.026852647,-0.3655501,-0.17012046,-0.21640588,-0.25516984,0.105470754,-0.44452965,-0.45455799,-0.10214718,-0.41314203,-0.27007198,0.6899281,-0.55707335,-0.08916328,-0.08131564,0.03843004,-0.13477524,0.27267888,0.23470858,0.08699468,-0.14298029,-0.049702052,0.087871484,-0.39277717,0.37642893,0.10043288,0.2786003,0.37454802,0.017539905,-0.06690764,0.402208,0.56270826,-0.0009917389,0.7931608,0.38130972,-0.15972723,0.317702,-0.31199995,-0.23696078,-0.39106795,-0.30159843,0.094526425,-0.4277326,-0.48108438,-0.19982852,-0.32062256,-0.641745,0.37806913,-0.08309554,0.21545258,0.025328994,0.41663283,0.41154426,-0.0264195,0.025178226,0.020570543,-0.0887426,-0.49107042,-0.4246675,-0.6539845,-0.30798087,0.19890782,0.91354907,-0.26475412,0.0042643705,-0.056204088,-0.19091728,-0.027646145,-0.04432801,0.07127709,0.14284308,0.35026667,-0.18067463,-0.64999163,0.4254928,-0.09461593,-0.3329741,-0.5529054,-0.1466958,0.55327696,-0.6092419,0.4220236,0.3508574,0.052242246,0.018616097,-0.45297417,-0.25355422,0.062187087,-0.3115793,0.32255235,0.107999116,-0.6007017,0.46902734,0.27871883,-0.27483788,-0.5154288,0.5648018,0.08551501,-0.2835341,-0.10295608,0.3193367,-0.007892545,0.056306206,-0.03294208,0.08399018,-0.48925695,0.18049082,0.43084806,-0.014914504,0.23565097,-0.1565154,-0.12927239,-0.637022,-0.014777863,-0.45602772,-0.2058796,0.21987718,0.09309204,0.2479584,0.16004784,0.0020145932,0.39272574,-0.4524497,0.18126695,-0.002542615,-0.084759474,0.45816612,0.31208494,0.4491429,-0.35245517,0.53133476,-0.058219545,-0.0712202,0.028401764,0.10438654,0.5266512,0.12363358,0.14614318,-0.05566888,-0.26669264,0.44208857,0.9547471,0.29192504,0.3643198,-0.07193861,-0.030645275,0.18479557,0.16097307,-0.0021189451,0.16496822,-0.46745518,-0.30232856,-0.15504879,0.1597632,0.41385904,0.07844747,0.3277014,-0.07469229,-0.28215143,0.12575656,0.2984465,0.08717772,-0.8998224,0.32733476,0.040333245,0.6975955,0.3737482,0.063598685,0.07846693,0.4645527,-0.19224565,0.17926727,0.25733286,-0.015149661,-0.45357457,0.3456398,-0.442328,0.4700638,-0.10330978,0.07327242,-0.014150337,-0.14007764,0.43018335,0.874807,-0.23799919,-0.009680662,0.1534685,-0.19228597,0.088577755,-0.4236193,-0.036662914,-0.5929243,-0.2720832,0.5172622,0.3419456,0.26332334,-0.11527563,-0.06583352,0.024363752,-0.08566954,0.06553067,-0.025103698,0.14281888,-0.10239677,-0.68666,-0.18755566,0.4610258,0.047325276,0.10064735,-0.086857796,-0.18470278,0.4006761,-0.1561608,-0.0037884174,-0.08691091,-0.4876327,0.015011223,-0.24850562,-0.43352416,0.38482884,-0.13583949,0.37660998,0.2533293,0.06730484,-0.16161658,0.29368046,0.20790315,0.7514372,-0.31096172,-0.18800099,-0.61106366,0.17357571,0.19213396,-0.08845285,-0.20144528,-0.29866472,0.072962776,-0.58872056,0.32105434,-0.057073448,0.05459921,0.05225769,-0.23093094,-0.0048825084,0.5885794,-0.020742588,-0.08645283,-0.08317283,-0.100758746,-0.14711457,-0.08610104,-0.23573735,0.21178001,0.16492996,-0.109227546,-0.15302554,-0.18668485,-0.2476826,0.12305519,0.05235732,0.3119798,0.24896751,0.16533802,-0.21653162,-0.06461155,0.012383123,0.34325856,0.11037354,-0.11819782,-0.31103337,-0.49809152,-0.24405281,0.2463975,-0.10996482,0.24620469,0.17886125,-0.18199791,0.7572294,-0.087789744,1.007559,0.022948762,-0.3112742,-0.0717827,0.58541584,0.015114715,-0.00040506918,-0.3755657,0.8724431,0.54972064,0.095295526,-0.058859065,-0.2010684,0.07255257,0.11703871,-0.12028349,-0.02020987,0.030763436,-0.50315076,-0.18937905,0.3196657,0.28337386,0.20931625,-0.06661579,-0.036983658,0.27752116,0.08677114,0.3170043,-0.4417904,-0.14682104,0.22715853,0.19160934,0.0640594,0.028159397,-0.41232854,0.44558823,-0.4752538,-0.08645323,-0.35374793,0.14589112,-0.15159303,-0.24760336,0.22300452,-0.17160273,0.42098555,-0.42121708,-0.3195386,-0.25711903,0.35556224,-0.03839528,0.2390385,0.3492549,-0.14617442,0.033702232,0.02140812,0.5732368,0.94989026,-0.13537152,-0.029812733,0.68857294,-0.2549566,-0.5661909,0.15010783,-0.35591316,0.17506583,-0.013930885,-0.08627291,-0.30162752,0.27372715,0.27607438,0.083492674,-0.02745952,-0.46329403,-0.28085086,0.31809404,-0.21561055,-0.3252183,-0.31375843,0.15696795,0.6358041,-0.3672064,-0.23864378,0.044271518,0.34673056,-0.27035624,-0.5637377,0.021663785,-0.26073655,0.4568182,0.19011268,-0.12813352,-0.07009271,0.01781358,-0.36121893,0.2540732,0.16108726,-0.3671921,0.04708788,-0.22169575,-0.027255036,0.823443,-0.08814091,0.0036639848,-0.49134776,-0.3551273,-0.72353005,-0.29634705,0.54182756,0.03266538,0.11369376,-0.50170475,0.004270758,-0.05276685,-0.048423495,-0.15216784,-0.24094613,0.5732204,0.11044283,0.3876224,-0.15733983,-0.69793725,-0.036491103,-0.018670047,-0.2976049,-0.5357084,0.5511742,-0.02871995,0.7084685,0.11949184,-0.017948382,0.37776554,-0.40112096,0.083816625,-0.26708603,-0.24737126,-0.70653665,0.10413548,377 +202,0.35054532,-0.10264499,-0.5272358,-0.07333874,-0.16091532,0.10645963,-0.25474313,0.37639564,0.20150734,-0.34510213,-0.061664246,-0.12174579,0.033146624,0.24955411,-0.07702443,-0.397134,-0.027573593,0.1226847,-0.42415184,0.39449513,-0.43000707,0.32834715,-0.15440567,0.4288754,0.18058538,0.36800358,0.004736149,-0.1092586,-0.089811794,-0.14568983,-0.19590937,0.3559081,-0.2652658,0.01577725,0.018813642,-0.24856058,0.09044311,-0.40090287,-0.3363863,-0.70859164,0.34314257,-0.7496962,0.46196193,0.037252538,-0.20002492,0.2831141,0.1937259,0.46467572,-0.25352198,0.035387866,0.26965034,-0.15879965,-0.057627454,-0.16506048,-0.18505353,-0.4110342,-0.47027284,-0.036600366,-0.43009868,-0.30844435,-0.30796713,0.14805211,-0.25091097,-0.1031963,-0.05059373,0.48680675,-0.5196947,0.03525501,0.21939228,-0.20243715,0.2741811,-0.56625557,-0.0964388,-0.053535905,0.38565928,-0.14950386,-0.06669666,0.1512584,0.34286746,0.32742792,-0.038457647,-0.1523943,-0.39774877,-0.1440349,0.08952022,0.47720978,-0.20183171,-0.41837952,0.0016966263,0.037274104,0.06405766,0.2754503,0.14060625,-0.21583636,-0.07901504,0.14235623,-0.2498469,0.24805422,0.33695304,-0.34456146,-0.14721942,0.3682311,0.5179056,0.16459551,-0.17935811,-0.030900208,0.03433485,-0.4505186,-0.11782119,0.033802677,-0.28534257,0.4257264,-0.08949568,0.3527119,0.716758,-0.14006427,0.070499904,-0.10613774,0.057268873,-0.14618436,-0.25651297,-0.24022214,0.087151185,-0.36400706,0.28078535,0.01643575,0.78013384,0.12285651,-0.5817878,0.293304,-0.56521314,0.10617157,-0.20868212,0.39149123,0.5243409,0.29789177,0.40437856,0.6175133,-0.349485,0.09199225,-0.07853539,-0.48667124,0.0008229415,0.0287156,-0.1006749,-0.5798434,0.06213408,0.001793023,-0.11749258,0.08339731,0.31378883,-0.5071814,0.06875264,0.17981987,0.8903796,-0.3216206,-0.13647394,0.54282135,0.97486454,0.8738857,-0.0012544801,0.9490939,0.20531943,-0.319548,0.18224287,-0.41855878,-0.52436936,0.276625,0.3753914,-0.33361977,0.23044287,0.15362087,-3.973643e-06,0.472133,-0.31629428,0.059344966,-0.120250106,-0.011817662,0.22352338,-0.07333107,-0.42703724,-0.21674512,0.0038902601,-0.068629436,0.16715011,0.23604487,-0.18697158,0.24293788,0.013006385,1.830352,-0.03727317,0.10301965,0.09750584,0.47163334,0.19026877,-0.11571153,-0.052975737,0.5305231,0.3724906,0.12594754,-0.5902086,0.20981078,-0.23447566,-0.5096455,-0.10098745,-0.3075482,0.012971576,0.12232354,-0.49505523,-0.0839714,-0.17815271,-0.26338112,0.38001385,-2.8320668,-0.06314812,-0.14290066,0.27943403,-0.25546712,-0.32150945,0.09364574,-0.3753722,0.36417338,0.28107145,0.39646706,-0.5892151,0.3919135,0.41398683,-0.47925416,-0.11491089,-0.54381585,-0.2102692,-0.06298981,0.24552082,0.019982386,-0.060504008,-0.035023235,0.19550835,0.38567588,-0.10311278,0.1464723,0.275641,0.40954506,0.14582056,0.6516895,0.055621095,0.5639441,-0.03741013,-0.22243829,0.25622594,-0.23852442,0.17559548,-0.020367904,0.058962647,0.3249181,-0.2688323,-0.85061705,-0.6874197,-0.1997569,1.2549099,-0.26529953,-0.36397055,0.28143886,-0.23758346,-0.31017172,-0.03607653,0.44604757,-0.08563115,-0.17948173,-0.7899802,0.17069206,-0.18567027,0.18678102,0.11884232,-0.039314706,-0.48874867,0.5753666,-0.03686055,0.5415268,0.34281683,0.20559318,-0.17392395,-0.28085816,-0.049745012,0.79206175,0.31189126,0.11962021,-0.14042439,-0.24425247,-0.28809386,-0.10148044,0.0962565,0.49083653,0.71228856,0.06310757,0.15292458,0.2323771,-0.11211609,0.039964907,-0.18552858,-0.26635417,0.07168518,-0.0179434,0.5184398,0.37979907,-0.19310942,0.48062798,-0.067789994,0.29610264,-0.18633755,-0.26987717,0.38451546,1.0421579,-0.22298566,-0.27477834,0.5494039,0.45389155,-0.2928957,0.25356534,-0.6256624,-0.10009327,0.57288325,-0.18064533,-0.49049786,0.1816954,-0.30287373,0.16222474,-0.91143507,0.19946954,-0.16332461,-0.44767115,-0.45894888,-0.09461192,-3.945421,0.15596907,-0.34319007,-0.22871044,-0.1257508,-0.119476505,0.1944508,-0.66150266,-0.4790016,0.103605986,0.07395646,0.6381131,-0.117190756,0.13529888,-0.26608953,-0.2102837,-0.2297246,0.13855341,0.031994537,0.35157612,0.009894282,-0.5197912,0.02266037,0.045963403,-0.47685614,0.11763408,-0.59953743,-0.3681907,-0.049890295,-0.5677608,-0.27232495,0.5665999,-0.2950427,0.011749911,-0.22844772,0.02833523,-0.14150563,0.34044167,0.18596111,0.10906125,0.022465134,-0.044698615,0.05026526,-0.314067,0.30618212,0.007608664,0.23679402,0.19347292,0.10466916,0.11093195,0.41736028,0.52559066,-0.07447281,0.7446156,0.47979668,-0.177395,0.26224577,-0.40129507,-0.21430959,-0.5015292,-0.39614055,0.00346333,-0.3665758,-0.5035895,-0.16292463,-0.44795334,-0.66953295,0.5411077,-0.01755611,0.15600829,0.029330263,0.33724433,0.49148986,-0.16932772,-0.058694147,0.062376186,-0.13397278,-0.5542718,-0.129957,-0.5183516,-0.34182945,0.18704656,0.77036494,-0.26924053,0.070990674,-0.011175762,-0.21682781,-0.108179025,0.0778688,0.13542554,0.286445,0.49835014,-0.22597955,-0.6727254,0.446607,-0.13158734,-0.1994366,-0.6055452,0.190448,0.5579836,-0.6184429,0.632984,0.30374378,0.16390972,-0.11440048,-0.5239149,-0.17629464,0.12093479,-0.21448784,0.37676004,0.19257364,-0.7011557,0.39794433,0.40680048,-0.12321411,-0.5580603,0.550619,-0.06239787,-0.39114487,-0.025230369,0.3606785,0.12564664,-0.033657014,-0.25644138,0.18520007,-0.4344537,0.24627382,0.2567091,-0.1529984,0.22555852,-0.2011017,-0.03398396,-0.6641907,-0.016473632,-0.42623004,-0.24496572,0.249546,0.109420255,0.13740817,0.22210635,-0.049879488,0.33603603,-0.32754388,0.023376746,-0.079992995,-0.0977825,0.19747901,0.40056565,0.39115104,-0.45098782,0.46448594,-0.019073619,-0.17360792,-0.06590239,0.052249327,0.44893512,-0.0028640905,0.41763538,-0.11593281,-0.26044744,0.37067363,0.7000836,0.19482677,0.5301026,-0.03392671,-0.09159856,0.14223951,0.07522189,0.055878386,0.08786937,-0.6305409,0.02745777,-0.17124303,0.19829673,0.5512608,0.21469767,0.32441458,-0.08703396,-0.36028376,0.051889736,0.20967683,-0.06958601,-1.0124122,0.48508373,0.24002157,0.7548285,0.34388754,0.013946267,0.0051740725,0.67706895,-0.2897205,0.10964758,0.34112868,0.062418986,-0.5163904,0.49062034,-0.7235332,0.3591175,-0.026425295,-0.055380117,0.029283376,-0.14725667,0.3162063,0.7604191,-0.15927163,0.018350072,0.116140015,-0.28771913,0.10482235,-0.35194317,-0.06088888,-0.56565875,-0.25290543,0.4223097,0.58792996,0.2870037,-0.13989156,0.033891257,0.17167212,-0.12239271,0.11547801,0.122858986,0.18166704,0.106281824,-0.73254913,-0.3441966,0.4947858,0.011656737,0.10467462,-0.12397125,-0.1933031,0.2625582,-0.19439714,0.0075804633,0.030373275,-0.48920193,0.0546261,-0.21291488,-0.43091437,0.41367343,-0.006259565,0.25099793,0.1275033,0.01354845,-0.24648994,0.49942556,0.10410605,0.6811656,0.09311078,-0.058856726,-0.5346511,0.08024497,0.067358874,-0.07465851,-0.23199923,-0.377255,0.044107176,-0.5973165,0.4011304,-0.003039509,-0.32766595,0.0032895803,-0.2053095,-0.016434517,0.5331936,-0.0925,-0.122750856,-0.026861038,-0.157538,-0.25218183,-0.24369009,-0.20206429,0.19430926,0.078582555,0.033083856,-0.20214829,-0.07590259,-0.2607598,0.4608614,-0.039015956,0.4274739,0.41627118,-0.048134945,-0.19344044,-0.25486425,0.11982748,0.38155222,-0.19024356,-0.11975444,-0.2579899,-0.5241549,-0.28921852,0.065537974,-0.07371151,0.46402544,0.16678311,-0.12799717,0.7709353,-0.0814358,1.0765901,-0.0059670787,-0.3938409,0.045896333,0.481946,0.028182097,0.07523389,-0.35904095,0.8383024,0.58195853,0.034294207,-0.13923441,-0.32421863,-0.046289004,0.1838792,-0.16445312,-0.08484397,-0.019216113,-0.588315,-0.2769989,0.242453,0.19834144,0.22688071,0.026443118,0.14398827,0.20376097,0.018519463,0.28923878,-0.39991772,-0.20084316,0.24868867,0.28168955,-0.030704807,0.082507625,-0.5322723,0.4793568,-0.3750554,0.03051082,-0.37493026,0.28152147,-0.16829756,-0.30601946,0.2264654,-0.08717983,0.35021332,-0.24217574,-0.27076906,-0.15204452,0.44799128,0.17058145,0.15261017,0.570757,-0.25992194,0.10984944,0.02590347,0.5573916,0.9365172,-0.22814696,-0.0035516818,0.3788628,-0.35148647,-0.5782388,0.24616845,-0.27975428,0.00012212197,0.1637369,-0.178942,-0.4475413,0.28853807,0.15992838,-0.020584345,-0.039637137,-0.47571176,-0.16690446,0.2847617,-0.27941486,-0.19783321,-0.21292101,0.20982952,0.5466768,-0.4138298,-0.37737432,-0.019203926,0.3098393,-0.041814215,-0.47273967,0.0046843886,-0.3244823,0.36585724,0.1529058,-0.3514547,-0.18261383,0.033127658,-0.2679709,0.13308571,0.24723364,-0.3423794,0.12214088,-0.34006804,-0.10154384,0.8124396,-0.123958975,-0.0039459704,-0.60366756,-0.26973626,-0.7304161,-0.376594,0.36050168,-0.028470643,0.006654664,-0.5256073,0.0012006343,-0.060855806,-0.15892357,-0.13944179,-0.38440618,0.4145142,0.07112969,0.46431234,-0.08589358,-0.6525227,0.06871036,0.04721675,-0.31683695,-0.6084433,0.6295541,-0.13840695,0.9053986,-0.035758425,0.074478164,0.3137696,-0.35082817,-0.047339685,-0.27535278,-0.2557747,-0.8845133,-0.07058258,385 +203,0.41594556,-0.13296951,-0.3204371,-0.15966667,-0.21045326,0.07181232,-0.14989659,0.42499512,0.16989331,-0.5347624,-0.1928748,-0.15376158,-0.0029024244,0.17147675,-0.1911599,-0.5196776,0.028058577,0.12482793,-0.3560848,0.53430426,-0.43751496,0.36469948,0.12007679,0.26359957,0.05852061,0.25529876,0.20991677,-0.109229706,-0.1399793,-0.32434005,-0.15136965,0.40868282,-0.5453009,0.2323025,-0.19262467,-0.31170815,-0.037789892,-0.36910588,-0.22316314,-0.71961915,0.09083494,-0.77178496,0.45933005,-0.049483284,-0.34288624,0.3248687,-0.014635078,0.24230008,-0.11425854,0.08979882,0.040911935,-0.21794817,-0.05486485,-0.14238901,-0.21301985,-0.35950738,-0.5046219,0.009033122,-0.4592945,-0.30154693,-0.3640509,0.11397512,-0.38444698,-0.12183733,-0.06987718,0.431091,-0.5405231,-0.055306792,0.14763273,-0.091979265,0.45352978,-0.4666266,-0.1132152,-0.17153336,0.14515145,-0.255562,-0.16060032,0.14172183,0.3501194,0.567052,0.018413862,-0.1314521,-0.3118601,-0.1762657,0.22264251,0.3997847,-0.13641602,-0.42380854,-0.06968624,-0.064902015,0.19613439,0.22762752,0.06632414,-0.14683929,-0.201508,0.08194106,-0.24613978,0.18007837,0.38876355,-0.40969542,-0.38009498,0.29443753,0.58350307,0.037221774,-0.08083737,0.10790315,0.00918089,-0.33942863,-0.15305933,0.14654599,-0.1789239,0.46963614,-0.12929705,0.24249345,0.61375266,-0.17470007,0.076602474,0.0132846115,0.048307776,-0.074672,-0.19493069,-0.15604901,0.2604189,-0.5030337,0.098997094,-0.2638388,0.8034667,-0.024760647,-0.7281082,0.24938484,-0.47779578,0.07399333,0.026740806,0.6150259,0.68428767,0.40655786,0.15723133,0.5413684,-0.39494503,0.027822841,-0.16543573,-0.29350388,-0.062754154,-0.13089362,-0.062464766,-0.4746733,-0.081832774,0.13796622,-0.07199289,0.024946062,0.24195029,-0.61019516,-0.016624684,0.2009244,0.79203606,-0.2832002,-0.04932135,0.774668,0.96134585,0.8649466,0.1144315,1.1461756,0.19425449,-0.13652338,0.0997798,-0.28787735,-0.45655537,0.33130094,0.4223794,-0.020097153,0.1857088,0.060906507,0.05782266,0.30243593,-0.4594631,0.10217301,-0.27956364,0.18391708,-0.05534608,-0.12685356,-0.4522172,-0.19235484,0.013757606,0.16806234,-0.08138911,0.26198906,-0.08408397,0.42134216,0.1061292,1.3180226,-0.08786054,0.17362577,0.114647865,0.32570994,0.15967911,-0.12988463,-0.018579157,0.21586189,0.3513905,0.17838106,-0.5132649,0.028704107,-0.14342676,-0.53492624,-0.18518162,-0.34041464,0.021371333,-0.053849675,-0.37904373,-0.076006666,-0.11384494,-0.42372462,0.42680883,-2.7206962,-0.09987227,-0.18260457,0.24062999,-0.2381669,-0.30739194,-0.06880648,-0.50424933,0.3950995,0.37933084,0.38766858,-0.6187813,0.3260612,0.44059163,-0.39140555,-0.0897368,-0.60665095,-0.109298825,-0.035197236,0.28274238,0.008033577,-0.10710009,-0.120003834,0.094365425,0.53771466,-0.053289067,0.09022608,0.2762057,0.18629424,0.10075995,0.365549,0.071102604,0.36270413,-0.15935706,-0.21445903,0.30761477,-0.34059185,0.1483066,-0.05496488,0.14948587,0.3167091,-0.4796295,-0.7829845,-0.8195981,-0.63004494,1.264008,-0.1783733,-0.4751976,0.31312266,-0.00068225263,-0.32720172,-0.16469221,0.41496876,-0.111683525,0.076289885,-0.7601215,0.024383353,-0.041005395,0.2661079,-0.027094936,-0.020249192,-0.4769167,0.5588715,-0.23328765,0.36237937,0.3645052,0.2211707,-0.17892818,-0.37952435,0.0008263747,1.1910596,0.4951006,0.11108374,-0.25602823,-0.2739064,-0.4019491,0.06551325,0.11936345,0.419048,0.81763685,0.010463031,0.14579882,0.2854602,-0.05150117,0.10030452,-0.20831315,-0.22989419,0.0004622698,0.091909125,0.5980291,0.3055004,-0.095192,0.58019453,-0.08335081,0.28092292,-0.17576183,-0.40829426,0.4282336,0.7862975,-0.13226499,-0.14162056,0.7034384,0.48266417,-0.29657415,0.4531147,-0.506622,-0.3541795,0.43437624,-0.19971961,-0.48018378,0.24630491,-0.32490075,0.17222641,-0.9147377,0.28955778,-0.23704694,-0.7366695,-0.5615462,-0.1618751,-3.380588,0.2537594,-0.020239519,-0.283528,-0.04663224,-0.14858767,0.350235,-0.54632014,-0.43991286,0.09831705,0.09452021,0.6487926,0.01462461,-0.03556273,-0.20060712,-0.3613247,-0.2382292,0.17540468,0.15759334,0.21852382,-0.12669009,-0.36111528,-0.06903078,-0.24645445,-0.38373536,0.0777805,-0.43555743,-0.62589926,-0.16123705,-0.5069151,-0.27669868,0.6498291,-0.3834883,0.0737636,-0.30801657,-0.019252146,-0.0476799,0.3192875,0.22816344,0.17678685,0.058724426,-0.040335394,-0.031580128,-0.32755485,0.26014823,0.122069165,0.15703064,0.41243747,-0.241531,0.31245264,0.5186102,0.473738,-0.017403984,0.856807,0.462115,-0.11866434,0.3508773,-0.32317728,-0.37063166,-0.6335533,-0.28331006,-0.016943391,-0.40248236,-0.45569313,-0.12672347,-0.23375884,-0.7871647,0.56425744,-0.069349386,0.18355693,-0.18656246,0.36658576,0.45399052,-0.16695681,-0.1281498,-0.11859117,-0.10647693,-0.3414603,-0.3016216,-0.710984,-0.4809658,0.004567965,0.99882203,-0.14952059,0.16105199,-0.0038503646,0.010727604,0.005578065,0.16540441,0.059182417,0.13103758,0.39524564,-0.09858761,-0.6094162,0.52160674,-0.014862915,-0.210951,-0.615884,0.0904781,0.68549925,-0.6532345,0.35814926,0.32396486,0.03221885,-0.10914184,-0.5186737,-0.09893311,-0.15643229,-0.2903989,0.36098856,0.15848778,-0.70709676,0.43834648,0.326867,-0.06489787,-0.69594246,0.41335824,-0.09082743,-0.2984223,0.08546508,0.33617082,0.04010666,0.13437177,-0.09045787,0.24634436,-0.3808187,0.28686634,0.3107072,-0.08122079,0.50376934,-0.23320647,-0.15725191,-0.6813475,-0.018338358,-0.519225,-0.2853617,0.097941525,0.17913832,-0.0415516,0.35416985,-0.03739055,0.5224773,-0.22317982,0.15936178,-0.045899443,-0.37200516,0.3009635,0.451762,0.39859912,-0.21896076,0.6751862,0.12822393,-0.12640935,-0.46585166,0.0576279,0.54345876,-0.0034350078,0.332901,-0.1169788,-0.2676206,0.3461065,0.6917357,0.23164259,0.5090379,-0.050575472,-0.012030824,0.30408138,0.08678306,0.07986673,0.011964065,-0.34713528,-0.044429254,-0.17370084,0.007167812,0.3896801,0.13204971,0.35079032,-0.09993304,-0.17357302,0.09882196,0.2307888,-0.01742334,-1.0066311,0.29301637,0.15040436,0.7606051,0.522234,0.05978655,0.040310595,0.55670816,-0.28508195,0.11596243,0.27885067,0.014765684,-0.49296457,0.6678163,-0.7615942,0.42043433,-0.084781185,-0.05024492,-0.016054261,-0.20110632,0.43771157,0.8691046,-0.11954939,0.027749471,-0.107801594,-0.19442698,0.1809129,-0.375341,0.17084293,-0.4496265,-0.28090188,0.6509941,0.47210297,0.39844096,-0.16201058,0.0059764427,0.07078223,-0.09785371,0.28106123,0.020086015,0.18911843,-0.06193797,-0.4891305,-0.22974135,0.498983,0.0005080859,0.06411428,0.06429502,-0.20825809,0.22920719,0.07555238,-0.038754035,0.029857853,-0.47710323,0.09117357,-0.45121643,-0.3338272,0.53133446,-0.31067377,0.26249102,0.102191545,0.08932131,-0.22913978,0.1831698,0.3165588,0.5607781,0.20850913,-0.15487507,-0.21291202,0.31475565,0.13979611,-0.23446044,-0.22412801,-0.18592699,0.04568858,-0.77043027,0.32239476,-0.21595459,-0.35011417,0.25269127,-0.13798553,0.0328324,0.4378482,0.041652255,-0.063623406,0.09362214,-0.22033216,-0.17202047,-0.0765935,-0.14803538,0.32064417,0.0459963,-0.08203794,-0.055430364,0.019994205,-0.091485016,0.3712122,-0.007907578,0.28469747,0.29614592,0.039541133,-0.415908,-0.06910234,0.034356005,0.3551419,0.06116717,0.1074605,-0.092802115,-0.39233997,-0.29355735,0.05577445,-0.17662868,0.33233315,0.053268544,-0.28717214,0.8034899,0.036377057,1.093768,0.05679721,-0.31096166,0.08298907,0.42836374,-0.097456194,-0.049269654,-0.32155052,1.0026821,0.4776229,-0.10603037,-0.16021754,-0.30885032,-0.01943006,0.22057393,-0.17770334,-0.27548236,-0.023185236,-0.761963,-0.2573922,0.20860034,0.2649979,0.099571474,0.0008533875,0.03231249,0.2861625,0.08693342,0.36547843,-0.4237084,-0.041308444,0.34991786,0.18965694,-0.03243132,0.046607964,-0.27778044,0.36710218,-0.6321786,0.01272641,-0.217658,0.08904905,-0.18278423,-0.35784185,0.18963096,0.092151746,0.30071816,-0.2087845,-0.41260117,-0.2641651,0.47520238,0.057420537,0.050246514,0.5395533,-0.24919994,0.15947656,-0.05703367,0.31877652,1.1318599,-0.12892571,-0.0813045,0.34442836,-0.3486254,-0.5570252,0.32082474,-0.44424364,0.21441337,-0.056202713,-0.37077323,-0.30745703,0.20200929,0.2663443,-0.048860736,0.10852325,-0.3434522,-0.07684005,0.1512335,-0.33388776,-0.21318905,-0.28469548,0.22343321,0.5887238,-0.3044287,-0.33400232,-0.029178618,0.22739644,-0.32293513,-0.53349847,-0.04959051,-0.111223124,0.29606083,0.09413422,-0.408918,0.1016867,0.08880569,-0.4004571,-0.13479067,0.2328782,-0.3447086,0.057078432,-0.37293705,0.07376787,0.81725335,-0.09197722,0.07960473,-0.52012926,-0.49018842,-0.7254082,-0.3247945,0.58375794,0.15998732,0.066846676,-0.4860592,0.106400646,-0.16711618,0.10260216,0.0043105492,-0.29812476,0.40877002,0.252035,0.40090057,-0.08472548,-0.7013746,0.14990835,0.066073306,0.010788933,-0.48629397,0.51005775,-0.08191409,0.63419133,0.11994402,0.052109934,0.27426043,-0.59945625,-0.09322729,-0.15632442,-0.13789517,-0.6341201,-0.0038097014,386 +204,0.35654536,-0.06485928,-0.79066414,-0.24005254,-0.03192277,0.0068301996,-0.10762326,0.40373623,0.28261402,-0.37000865,-0.014143586,0.25455797,-0.1955057,0.19364204,-0.15205055,-0.5562205,-0.016255863,0.020319592,-0.4939443,0.2800484,-0.4542789,0.19197692,-0.36648914,0.15560462,0.017358892,0.31025225,0.119111136,0.017184956,-0.11447981,0.036240306,0.24912484,0.25591853,-0.29986826,0.13620727,-0.1037495,-0.27013585,-0.14120045,-0.2264608,-0.4321452,-0.6362518,0.33164713,-0.6514152,0.4792793,-0.020872306,-0.2757368,0.41850278,0.118571214,0.13133475,-0.27897078,-0.07325692,0.24924894,-0.15776567,-0.1610412,-0.15685193,-0.2795786,-0.30310652,-0.5519689,-0.10811882,-0.5590034,-0.11889874,-0.14736047,0.15456559,-0.3641589,0.021264255,-0.3611232,0.5286515,-0.52890193,-0.18603091,0.20758416,-0.033546567,0.08469191,-0.66073775,-0.080345966,-0.07069322,0.0053219595,0.006303382,-0.11822862,0.2542449,0.06175859,0.42445576,-0.0658857,-0.14743844,-0.32705295,-0.20575644,0.2379951,0.27464485,-0.25436392,-0.22150977,-0.15809578,-0.0992023,0.27739677,-0.00032283267,-0.073437005,-0.2689109,0.0021933685,0.23600957,-0.1237737,0.41284835,0.57362497,-0.2313039,-0.09698777,0.40263417,0.68277234,0.06828005,-0.25281325,0.12334437,-0.13373287,-0.3074704,-0.24350366,0.07326892,-0.21698043,0.389946,-0.10114867,0.19645172,0.6331216,-0.17953545,-0.0547205,0.11456875,0.14737056,0.22032684,-0.25472218,-0.3639085,0.19824977,-0.3800978,0.17522596,-0.13151953,0.6420747,-0.050192676,-0.7853769,0.44689572,-0.33340162,0.008360745,-0.07828962,0.72743404,0.724342,0.431129,0.14297317,0.78837204,-0.51190484,0.087683804,0.055788763,-0.22137363,-0.05614723,-0.04734243,-0.15706037,-0.54396343,-0.102177285,0.0173433,-0.10789063,0.1667208,0.3555483,-0.37892446,-0.15335235,0.079881154,0.6630243,-0.37116736,-0.040196847,0.48892447,1.1252505,0.89578474,0.091344036,0.8080483,0.16569962,-0.19317141,0.023408405,-0.30829743,-0.78289723,0.30707577,0.26409185,0.029495923,0.28373823,0.10249522,0.028751219,0.39541048,-0.55840796,0.047986843,-0.16418737,0.36501116,0.029731035,-0.11241283,-0.3502126,-0.055093877,0.17421891,0.08670616,0.12204352,0.29702628,-0.32999766,0.14272544,0.1584669,1.104968,-0.14065188,0.018727712,0.2779332,0.526079,0.07536084,-0.25737748,-0.05876417,0.31405878,0.4600363,-0.14820108,-0.5984357,0.25010398,-0.1697914,-0.4514805,-0.25263315,-0.40436277,-0.05760888,-0.10615087,-0.2828437,-0.1094142,-0.07346424,-0.5927362,0.37556204,-2.5495882,-0.065560766,-0.20330374,0.32412216,-0.015666785,-0.15871711,-0.26850036,-0.4874224,0.25980428,0.32757363,0.3060938,-0.47986826,0.56782085,0.5371757,-0.5121965,0.082488336,-0.4576398,-0.019639753,-0.112848714,0.34911206,0.19624542,-0.022977514,0.070907906,0.3534614,0.49961954,-0.110035524,0.054447673,0.33860728,0.3043499,-0.10199913,0.32615843,0.04778398,0.51398563,-0.38720262,-0.14649798,0.32305688,-0.555034,0.051208623,-0.18415686,0.14977542,0.33715513,-0.3658067,-0.86866117,-0.46163902,-0.0111804325,1.4679056,-0.26569945,-0.42675573,0.3609171,-0.29484412,-0.3907291,-0.12677905,0.3404576,-0.1645243,-0.14066973,-0.80297256,0.069822975,-0.12075526,0.24799529,-0.06703396,0.07513857,-0.3319198,0.53234416,-0.15169829,0.7392737,0.2726874,0.2205589,-0.3407033,-0.3214214,0.025396006,0.78103215,0.42646745,0.03336924,-0.07396185,-0.06781671,-0.13317028,-0.10815818,0.18553811,0.49485716,0.7595943,0.05311857,0.03751523,0.23452981,-0.1087372,-0.019904347,-0.35685176,-0.248958,-0.14027418,0.21820864,0.507345,0.42715168,-0.14374685,0.16946366,-0.008207824,0.21191563,-0.27652475,-0.44482958,0.35206816,0.781415,-0.0970429,-0.3789228,0.5133398,0.4667641,-0.39188626,0.3829382,-0.7040061,-0.25142255,0.4665607,-0.22412848,-0.42552254,0.0024053256,-0.36402088,0.2791403,-0.71120346,0.372495,-0.3437961,-0.8526997,-0.4849084,-0.34093362,-2.44799,0.14377281,-0.25948018,-0.11369816,-0.021155033,-0.066524476,0.14746903,-0.51306695,-0.58135605,0.12742938,0.19748738,0.5853819,-0.026007008,-0.007103904,-0.20205253,-0.12755357,-0.16166073,0.25112826,0.047486283,0.28351125,-0.019011267,-0.43620098,0.0001654605,-0.07212099,-0.42626226,-0.1632208,-0.23559631,-0.32344255,-0.049897347,-0.45553645,-0.22602695,0.5349122,-0.27343467,0.0026611488,-0.2563918,0.062988825,0.0029175798,0.33413804,0.08110854,0.22129145,0.032763492,-0.16352002,0.09927165,-0.25924695,0.30856097,-0.06713942,0.4126581,0.5070637,-0.080785625,-0.06669752,0.7055215,0.54295784,0.16621895,0.9111015,0.3760416,-0.21323632,0.3281379,-0.15652773,-0.20450355,-0.5701017,-0.40064317,0.13800049,-0.34577492,-0.40127477,-0.030146532,-0.41304067,-0.9593108,0.31613114,-0.07542172,0.28798333,-0.06984527,0.31909055,0.4322424,0.041221175,0.02605377,-0.023448769,-0.15242004,-0.36391097,-0.27976283,-0.7796369,-0.3704755,-0.0027529956,1.2392342,-0.14605917,-0.057282034,-0.042184167,-0.15761699,0.14412193,0.2426105,0.19960366,0.2904901,0.3081328,-0.11941867,-0.4737256,0.22915031,-0.25384828,-0.078994796,-0.63622224,-0.03900421,0.62941843,-0.5007466,0.45235482,0.40868053,0.07196616,-0.19325706,-0.6938908,-0.09207222,-0.008836524,-0.17786957,0.52860236,0.14204028,-0.6888047,0.60311955,0.27335185,-0.1880634,-0.6194602,0.48955613,-0.13240685,-0.0846638,0.09592676,0.42170507,-0.15714502,-0.089614496,-0.27294922,0.21142563,-0.22538862,0.3072034,0.36206248,-0.08620939,0.32256016,-0.2415149,-0.14577015,-0.6630056,-0.14727716,-0.6762722,-0.15085353,0.1317394,-0.07887956,0.2425084,0.15969951,-0.19003071,0.5043309,-0.2950819,0.14619112,-0.121946484,-0.4580991,0.47812334,0.4965921,0.3117882,-0.17400303,0.596494,0.047615774,-0.13190705,-0.13583554,0.11019419,0.5366415,0.0665616,0.53561693,0.14648075,-0.09409812,0.33941734,0.878957,0.28762487,0.32622772,0.10828933,-0.27122015,0.17096946,0.014724095,0.16084167,-0.14947525,-0.3228435,-0.13709687,-0.04483781,0.29570764,0.25331157,0.10191258,0.45014015,-0.18336889,-0.18811907,0.08541216,0.22792539,-0.09795781,-1.0987631,0.35469052,0.10604923,0.6184019,0.32893407,0.10727375,-0.0851017,0.37910905,-0.17109908,0.18316112,0.2669753,0.058287546,-0.53206575,0.42776924,-0.5147961,0.53069764,-0.058573026,0.0401901,0.15296602,0.15668508,0.37268314,0.78733754,0.028784977,0.03353297,0.07850961,-0.2825406,0.31422532,-0.3203345,0.12479255,-0.46056375,-0.34777364,0.67376465,0.40335366,0.5122153,-0.08406736,-0.08435019,0.14564626,-0.13927175,0.24227594,-0.11649641,0.150374,-0.16146322,-0.6235944,-0.24068548,0.25221747,0.13491756,-0.02954427,0.04334496,-0.07812178,0.22145271,0.062190574,0.09872319,-0.04860317,-0.326369,0.026984401,-0.12259365,-0.5366033,0.2502333,-0.3315408,0.31421328,0.21532795,-0.018319169,-0.508191,0.12340274,0.16181454,0.5487149,-0.10958148,-0.17751502,-0.3838929,0.15160613,0.20899653,-0.17660576,0.057595145,-0.23486954,0.27356234,-0.7285912,0.49513647,-0.25675926,-0.30629954,0.22505818,-0.361095,0.024470834,0.57377994,-0.27502435,-0.27977422,0.0025709548,-0.119748406,-0.26519403,-0.25420746,-0.21142486,0.19841416,-0.26804808,-0.03826856,-0.14278106,-0.13112207,0.012443272,0.20842642,0.08164889,0.14476416,0.53176665,0.05202539,-0.5366374,-0.06769434,0.07844628,0.5171248,0.07114525,-0.09065304,-0.43364003,-0.50066423,-0.22621065,0.2490708,-0.114937395,0.36075222,0.16026513,-0.26980987,0.5405004,-0.12522195,0.95858425,0.14771791,-0.19011027,-0.05209761,0.5576604,0.16702352,-0.0684076,-0.09943358,0.6680057,0.62241113,-0.17385949,-0.21977429,-0.42765045,-0.02009002,0.08914534,-0.121755034,-0.2342353,0.020872243,-0.8085484,-0.16552404,0.29929227,0.1772839,0.0755871,-0.139615,0.13667414,0.16356733,0.0626228,0.22235754,-0.56598735,0.064098924,0.32492265,-0.002779166,0.029371109,0.01683733,-0.603898,0.18066235,-0.6205184,-0.034859236,0.096936375,0.010495835,-0.13067235,-0.22273202,0.19401623,0.09066629,0.21075375,-0.2921655,-0.22352795,-0.16365926,0.40496242,0.056588393,0.15793559,0.542236,-0.159045,0.16228113,0.17757194,0.46663603,1.0053177,0.017312765,0.067812555,0.26812407,-0.3529562,-0.74936575,0.11388652,-0.36649868,0.1663513,-0.12202971,-0.26124477,-0.5581609,0.35150903,0.19351088,-0.22598241,0.2679566,-0.54378206,-0.26210248,0.013831405,-0.31420806,-0.1348815,-0.32532135,-0.019504141,0.5656443,-0.37555832,-0.15419106,-0.07334766,0.41081354,-0.19176833,-0.5071817,0.096911795,-0.21753031,0.43097144,-0.0022945127,-0.30351028,-0.093182966,-0.05202907,-0.36096635,0.33194435,0.3507403,-0.25656736,0.021001266,-0.1750709,0.07549168,0.34599802,-0.061367907,-0.02344757,-0.28406557,-0.41441518,-0.9104944,-0.19912206,0.10724071,0.23974515,-0.19285719,-0.5783851,0.11655159,-0.08121009,0.14093709,-0.080751576,-0.41726094,0.5203275,0.020072717,0.28028256,-0.12439458,-0.7827395,-0.02287558,0.130272,-0.22086248,-0.25806746,0.58485,-0.1707608,0.7590119,-0.021068934,0.06773131,0.057690404,-0.52755105,0.33161354,-0.29700717,-0.22912888,-0.4721168,-0.041097745,388 +205,0.32289988,-0.12556121,-0.48344436,-0.11919715,-0.11715784,-0.08486343,-0.4242592,0.14449307,0.2505355,-0.30338013,-0.11079133,0.023541806,-0.0020101864,0.22054072,-0.10577072,-0.6733065,-0.112110995,-0.023905175,-0.7602676,0.5606467,-0.54654396,0.24910611,0.062316693,0.3207857,0.06717905,0.5324941,0.112100884,-0.13172476,-0.13685115,-0.1410263,0.010297598,0.27484253,-0.5515819,0.012209479,-0.18284117,-0.1763931,0.062085018,-0.36090603,-0.2655162,-0.75526524,0.08867852,-0.9442189,0.43981764,0.011575496,-0.10340985,-0.040658545,0.22838868,0.39060268,-0.3013912,0.07778315,0.08500417,-0.19378385,-0.23447946,-0.3554938,-0.07810337,-0.16566086,-0.43981287,0.051488977,-0.59117633,-0.29309127,-0.14164788,0.14202935,-0.32926,0.04010922,-0.20587334,0.40893134,-0.42210358,0.019008867,0.3675178,-0.14514272,0.23274466,-0.5337202,0.03723212,-0.069826715,0.5414139,-0.099285655,-0.12992273,0.26613972,0.27987128,0.48357543,0.23816255,-0.2086524,-0.22046873,-0.301128,0.34136003,0.35937673,-0.21453683,-0.2323306,-0.27157295,0.11242792,0.23451686,0.49970284,-0.077318385,-0.17042087,-0.03298696,-0.13859606,-0.12369546,0.44639847,0.5807483,-0.22999433,-0.3919515,0.24009782,0.68195546,0.31500596,-0.244198,-0.01772201,0.048276164,-0.45938635,-0.12351279,0.32082495,0.009003683,0.40293592,-0.1424763,0.057734456,0.7550017,-0.18741319,0.012331589,-0.12260855,-0.07907527,0.0055565196,-0.31058857,-0.15849301,0.19102041,-0.54208004,0.12314439,-0.22663012,0.55748993,0.10311618,-0.7048971,0.35460594,-0.5168836,0.17499687,0.02885836,0.72794735,0.7308481,0.34635967,0.40444103,0.6656733,-0.317221,0.20692724,-0.096758924,-0.37711114,-0.12018802,-0.14024504,0.120229684,-0.42325813,0.06108885,-0.19245267,0.057340417,0.04163103,0.20804933,-0.43722153,-0.01989568,0.21414515,0.6765331,-0.3302748,0.035389718,0.8461638,1.1073711,0.9466475,0.12147677,1.2232056,0.30547932,-0.22943231,0.036074936,-0.36523214,-0.7011231,0.1664731,0.31919473,0.26735938,0.25934255,-0.089045666,-0.0010880192,0.37667206,-0.54744774,0.05377047,-0.07165535,0.30143464,0.028173586,0.043208305,-0.5244595,-0.09093909,-0.053084966,-0.044784658,0.16464636,0.21791936,-0.018571654,0.42313534,-0.060012903,0.9447385,-0.15059566,0.1018786,0.22346057,0.43540427,0.20311442,-0.1835912,-0.084886186,0.4439258,0.39981282,-0.05871659,-0.6531688,0.14383316,-0.3322234,-0.2598708,-0.17682497,-0.40365335,0.03516126,0.10336068,-0.31931478,-0.12364454,-0.110476874,-0.25252277,0.34179935,-2.7989824,-0.1946859,-0.23515701,0.20178786,-0.31940612,-0.1679629,-0.1525794,-0.5155411,0.4029148,0.17428258,0.48404628,-0.5674068,0.48868167,0.45342407,-0.5540076,0.019100396,-0.72849935,-0.13040547,-0.09093905,0.47151688,-0.018886916,-0.031112226,-0.1354502,0.13358736,0.63980037,0.055194657,0.05464629,0.45551482,0.31238785,0.17081235,0.46462905,0.0020288667,0.5289667,-0.3166008,-0.2336015,0.36986867,-0.2748136,0.32084653,-0.18577024,0.15030378,0.5313833,-0.5444544,-0.82455766,-0.5454742,-0.5246635,1.225129,-0.3184901,-0.5559122,0.14050029,-0.18253721,-0.22283313,-0.011767631,0.54588765,-0.10895642,0.13178048,-0.7896651,0.12749575,-0.11822731,0.30593714,0.08252669,0.024275996,-0.35245085,0.5813529,-0.114818364,0.41926658,0.33019102,0.26208577,-0.13125362,-0.3983381,0.08233533,0.8832144,0.35205323,-0.030098354,-0.19524717,-0.33421904,-0.077033244,-0.26874813,0.0019432565,0.537551,0.75444204,-0.045125745,0.07624658,0.2610774,-0.08720069,0.13654779,-0.020376006,-0.22157662,-0.12310359,-0.0154864015,0.6143909,0.696471,-0.034794427,0.4128777,-0.1311995,0.31771263,-0.05693585,-0.4101854,0.68015504,0.46425977,-0.086079165,-0.19148375,0.672008,0.5371048,-0.46749237,0.4489515,-0.4652755,-0.11945235,0.5022027,-0.23986268,-0.48624197,0.2842771,-0.24542652,0.27034754,-0.88122445,0.28738865,-0.44311973,-0.3548148,-0.47829455,-0.01795601,-3.2186513,0.16553338,-0.21892601,-0.15247947,-0.28621334,-0.15384929,0.31291255,-0.45182547,-0.5660854,0.20017727,0.16773704,0.5845645,-0.11941109,0.020197034,-0.2018253,-0.18897404,-0.13902506,0.18120496,0.317282,0.304032,-0.20746405,-0.29760855,-0.016170789,0.0022043309,-0.37450403,0.13841693,-0.47230327,-0.42186794,-0.06550275,-0.5272404,-0.19967261,0.5783599,-0.3712173,0.01376735,-0.3215226,0.018702531,-0.19640532,0.22466844,0.27407932,0.47612536,0.19883302,-0.062380888,-0.019768571,-0.25680593,0.3761764,-0.0014948408,0.21529607,0.09362879,-0.010684959,0.24966905,0.2745543,0.64936715,-0.1701618,0.9820579,0.4985953,-0.13436407,0.17314707,-0.3607196,-0.29689848,-0.68817294,-0.29540852,-0.03159486,-0.37987489,-0.56478614,-0.08106141,-0.3399936,-0.790081,0.6393069,-0.025069462,0.3144722,-0.1177526,0.3445406,0.4137993,-0.12865312,-0.0021276711,-0.04260877,-0.13478637,-0.4588346,-0.19798318,-0.619697,-0.4700731,-0.041714672,0.62215483,-0.29729757,0.07509737,-0.10324917,-0.27160233,-0.10577025,0.17309189,0.14998421,0.35442343,0.4791754,0.1374913,-0.46532765,0.3785644,-0.012131163,-0.24264516,-0.67175126,0.11761902,0.7477786,-0.73682314,0.78011954,0.406704,-0.01800735,-0.07486208,-0.534199,-0.16362606,0.04512578,-0.2022855,0.45246804,0.19116965,-0.7649018,0.50504136,0.267278,-0.12509176,-0.74924093,0.39784303,0.027885545,-0.33958894,0.1047818,0.4024351,-0.10163123,-0.09568003,-0.18850523,0.17044643,-0.19415388,0.19054943,0.27469096,-0.15568878,0.31912068,-0.20035791,-0.389135,-0.67545664,0.057699773,-0.7301901,-0.13217872,0.42881697,-0.12581255,-0.028526342,0.08685548,0.10893535,0.41548756,-0.25002614,0.14017421,-0.06660469,-0.28677115,0.1851959,0.4513137,0.32729998,-0.38498262,0.60093063,0.24153452,-0.22732183,-0.031878915,0.18910232,0.5156273,-0.1651149,0.32079333,-0.12598167,-0.2651936,0.22091939,0.71513075,0.1342248,0.5272569,0.16787186,0.04734111,0.5429667,0.0706438,0.08054426,-0.12637119,-0.29912692,-0.026359256,0.040545084,0.1516977,0.38261938,0.30668148,0.36253154,-0.0027421354,-0.12987109,-0.097042,0.29983345,0.095158,-0.91410655,0.4558689,0.15568884,0.7267185,0.47475556,0.22833906,-0.22797646,0.63685673,-0.37397403,0.02464271,0.36922082,-0.07871953,-0.4631033,0.6951857,-0.5906766,0.42812806,-0.110205695,-0.042754356,0.115555845,0.07759144,0.36829293,0.80464005,-0.15408619,0.01818697,-0.13487272,-0.14134507,0.048762646,-0.35030535,-0.011246097,-0.18219924,-0.4298683,0.7238567,0.3022003,0.38744393,-0.18410078,-0.03821036,0.14832702,-0.16435018,0.2079129,-0.060707606,0.103676386,0.090222575,-0.46204826,-0.29996333,0.42064494,-0.0062516807,0.13400032,-0.12460505,-0.11945703,0.13770384,-0.12207987,-0.05200994,-0.032260813,-0.63707936,0.027218413,-0.29358834,-0.6167406,0.3083315,-0.3589709,0.10135272,0.20132115,0.025195079,-0.3178264,0.3314442,-0.030283865,0.7789776,0.054236572,-0.32414237,-0.25282428,0.033467844,0.32536,-0.26341054,0.08613958,-0.32239813,0.17467724,-0.6517953,0.5938518,-0.21813798,-0.4853081,0.08213628,-0.18862757,-0.10456476,0.55857795,-0.123998694,-0.17996383,0.12696384,-0.2670972,-0.49364802,-0.21229444,-0.21109088,0.18126336,0.38120988,0.03774694,-0.12768625,-0.28885585,-0.24753179,0.49278605,0.08947592,0.4644786,0.24317935,0.06788887,-0.20182504,0.11174633,0.33072913,0.3619369,0.072167605,-0.0011300087,-0.2962265,-0.52678496,-0.3303055,0.27079198,-0.0037584554,0.26258242,0.011563527,-0.21168108,0.8106173,-0.024414547,0.92327946,0.17645113,-0.327793,0.009324964,0.34843355,-0.17269519,0.0038964867,-0.29656747,0.8914797,0.6057797,-0.08651365,0.0034040094,-0.46959826,-0.072824515,0.082483195,-0.30531093,0.037844278,-0.032225892,-0.46036485,-0.29868758,0.24408573,0.23389739,0.16025697,-0.06087373,0.00055422384,-0.025972996,0.11986867,0.36743417,-0.7295486,-0.2430356,0.28250778,0.11846664,-0.08311354,0.19839059,-0.23100866,0.4589569,-0.63762325,0.1191809,-0.46539778,0.014714847,-0.021529967,-0.39816633,0.07651887,-0.1699853,0.36842838,-0.39803204,-0.37223947,-0.2195271,0.37200016,0.09049301,0.09995777,0.5884149,-0.20988682,0.15166728,0.24945377,0.5895698,1.1470497,-0.30985337,0.07007038,0.03240854,-0.17325017,-0.54779506,0.33266327,-0.49670753,0.08497702,-0.12145608,-0.39659792,-0.38438243,0.12322755,0.22312044,0.03727257,0.08021391,-0.50424105,-0.20361201,0.1568479,-0.25835094,-0.20721497,-0.18037295,0.26126713,0.68116534,-0.27892083,-0.28032127,0.0025363048,0.041425202,-0.32486945,-0.4004437,-0.07203179,-0.14830494,0.17154773,0.17651722,-0.3677761,-0.013455932,0.16334276,-0.5031246,-0.016127756,0.2722553,-0.2854442,-0.032764602,-0.15779853,-0.08775063,0.7705401,-0.42295468,-0.0014336269,-0.5743977,-0.5135069,-0.8780824,-0.37006032,0.28644735,0.06496947,0.17744279,-0.5095765,0.115443006,-0.19301656,0.048057437,0.25293967,-0.5941917,0.40641546,0.1613488,0.5066873,-0.30793694,-0.7735414,0.14205606,0.031849388,-0.17928578,-0.59080505,0.5840673,0.020544019,0.77427846,0.03486492,-0.12121141,0.055467412,-0.57716674,0.033782475,-0.33472964,-0.15504365,-0.88824826,-0.06047653,396 +206,0.52976876,-0.19649707,-0.459397,-0.045846265,-0.14595553,0.08074615,-0.19763584,0.47854295,0.18107596,-0.50196755,-0.19615676,-0.18836541,0.015833903,0.26128194,-0.2551295,-0.41051203,0.003817306,0.1657492,-0.4311748,0.62703425,-0.29861277,0.31165218,0.12815657,0.3921833,0.10796503,0.20346005,0.254619,-0.17381702,-0.17309867,-0.19300574,0.038965877,0.13346389,-0.58020204,0.17898442,-0.19074275,-0.35569525,0.03574149,-0.5303557,-0.39881754,-0.8250395,0.316938,-0.8267587,0.5158011,0.050736766,-0.33456382,0.22092326,0.093644574,0.22113724,-0.2049511,0.041582294,0.11884538,-0.024821432,-0.062200543,-0.13865168,-0.08225188,-0.20289294,-0.62096953,0.08328467,-0.3441343,-0.07002498,-0.33675286,0.11970064,-0.31299785,0.017224608,0.018995518,0.5642557,-0.45350105,0.08287273,0.07088461,-0.10062255,0.3602328,-0.5631781,-0.23644494,-0.06953239,0.2513217,-0.2221728,-0.17088011,0.24544828,0.24692623,0.5868855,-0.048833895,-0.09304547,-0.31664938,-0.038832687,0.1575183,0.5762023,-0.2170235,-0.5664686,0.046721254,-0.052815013,0.4010418,0.10276245,0.12102404,-0.33338442,-0.22126958,0.018878842,-0.2071098,0.286158,0.5629765,-0.29739103,-0.186925,0.3831445,0.48709956,0.090192094,-0.097185835,0.15776081,0.0022884437,-0.47023678,-0.17601998,0.052686416,-0.26028463,0.5264108,-0.10849902,0.35368773,0.5668123,-0.16457245,0.07013211,0.20717007,0.012338259,-0.15996285,-0.07523842,-0.3302695,0.14172271,-0.41937378,0.04044692,-0.17344595,0.83374393,0.16225317,-0.9803196,0.37718323,-0.41006973,0.13949206,-0.03186388,0.47110024,0.6371505,0.41317847,0.40924576,0.7237383,-0.5559218,0.035275765,-0.046956223,-0.32237238,-0.04026491,-0.12135164,-0.112623654,-0.50292075,-0.08789406,0.01230946,-0.21421584,0.12948318,0.3536705,-0.42972645,-0.024546228,0.06498469,0.8353911,-0.26450244,-0.004617548,0.7411902,1.0351918,1.0210091,0.11152507,1.1204245,0.104216725,-0.24526592,0.16196747,-0.22699696,-0.7392753,0.29001638,0.51707727,0.051249392,0.25454962,0.10956114,0.048371196,0.33962637,-0.4906594,0.11190781,-0.11657758,0.122286476,0.098978326,-0.12354017,-0.39192504,-0.25533408,-0.053929795,0.021068012,-0.06550304,0.1964943,-0.22780101,0.33973208,0.05577987,1.7597317,-0.058957685,0.055406317,0.11130783,0.5210611,0.16092794,-0.17196724,-0.08299808,0.19627616,0.23581554,0.06922005,-0.62505645,0.056230154,-0.13386443,-0.50964314,-0.1563974,-0.2804204,-0.058890525,-0.041174445,-0.4709925,-0.15605387,-0.20066194,-0.44400266,0.39822063,-2.714137,-0.1010317,-0.019903159,0.27347293,-0.28863952,-0.43236813,-0.08660402,-0.5236126,0.41088834,0.38846162,0.46276578,-0.7969884,0.24357125,0.38704026,-0.4598357,-0.08413753,-0.68877304,-0.20550285,-0.042368047,0.3480469,0.093968645,-0.123430364,0.014748935,0.28953037,0.426025,0.025121678,0.1079447,0.26954764,0.34184977,0.12346509,0.40308458,-0.104058504,0.37234756,-0.1444905,-0.1590252,0.46984187,-0.36897284,0.11777903,-0.18489258,0.17439477,0.29624787,-0.5222559,-0.8756341,-0.745681,-0.16858646,1.2020452,-0.0984571,-0.49138483,0.31324038,-0.20647262,-0.19016454,-0.09701999,0.48238316,-0.15355946,-0.059741892,-0.97113776,-0.059318606,-0.083751366,0.25131702,0.09790778,-0.028114738,-0.46488246,0.6234446,-0.04074482,0.523576,0.4142213,0.111068584,-0.16001572,-0.4197567,0.15995486,1.0612293,0.45738122,0.17639078,-0.22751443,-0.08683122,-0.4285287,-0.10339907,0.06333045,0.45450085,0.7207436,-0.029615736,0.06952303,0.22044028,0.024242532,0.07620443,-0.18142296,-0.29345942,-0.090416685,-0.02379055,0.5983091,0.6279678,-0.18040743,0.32554835,-0.09062519,0.09370062,-0.13756332,-0.39343926,0.68801016,0.84263235,-0.08283229,-0.25138462,0.4952221,0.4620808,-0.20633288,0.4500609,-0.64669687,-0.30537316,0.38662001,-0.13578863,-0.4011576,0.31996462,-0.37327746,0.21919979,-0.84545344,0.33729467,-0.31511128,-0.33160096,-0.43405816,-0.10376431,-3.0694964,0.12836502,-0.07821267,-0.25593868,-0.06776477,-0.15722667,0.15538135,-0.49727723,-0.6140104,0.12073799,0.09683609,0.669738,0.009795813,0.14046334,-0.095278345,-0.30593827,-0.43631747,0.04109179,0.04949951,0.36537328,0.1061863,-0.4721186,-0.16807511,-0.2522529,-0.360742,0.09600319,-0.4314043,-0.57210785,-0.18943828,-0.38533047,-0.35718054,0.54443747,-0.3706979,0.037376884,-0.19925527,-0.14827545,-0.22397973,0.39196032,0.11678008,0.030658606,-0.065835305,-0.05842892,0.033928044,-0.21451534,0.3118154,0.07813521,0.19600753,0.41876754,-0.20161152,0.24987835,0.5672712,0.6578522,-0.22329578,0.8022957,0.52267563,-0.07836791,0.24866231,-0.31463856,-0.33842298,-0.50623995,-0.24754842,-0.06642525,-0.40269655,-0.3253304,0.00819056,-0.40059254,-0.8032158,0.373656,-0.022434182,0.068140015,0.04954777,0.18776347,0.42075577,-0.12986878,-0.048026,-0.08746711,-0.19876143,-0.6499544,-0.35014597,-0.6945582,-0.39682716,0.07278232,0.97599906,-0.06638887,-0.07113098,0.09892905,-0.0669453,0.026385916,-0.026687698,-0.03772882,0.12577382,0.34917113,-0.009753371,-0.80714345,0.47335443,0.0109597575,-0.1817166,-0.50942767,0.10544138,0.4438599,-0.48455924,0.44576743,0.33274314,0.062810004,-0.015225093,-0.51460737,-0.1406071,-0.070317626,-0.16913743,0.38620594,0.21078709,-0.6911382,0.43692234,0.34473047,-0.14898206,-0.7160356,0.4117562,0.061325047,-0.27992913,-0.010981506,0.22673517,-0.058509476,0.08970035,-0.31244355,0.14259343,-0.5092652,0.4437637,0.24100211,-0.028495006,0.34164056,-0.24841285,-0.17975898,-0.6952287,-0.0946593,-0.544315,-0.28454092,0.09055993,0.24761786,0.046144985,0.0978313,0.10386734,0.44020203,-0.3371954,0.0965164,-0.081090145,-0.1377026,0.3371352,0.5016348,0.5574576,-0.35233447,0.5651195,0.011285651,-0.15325163,-0.22429675,0.11749674,0.40420702,0.17849824,0.10275779,0.033690277,-0.1817531,0.32187182,0.6952573,0.26463315,0.39475575,0.046081662,-0.25579172,0.34565926,0.099002674,0.21679632,-0.014192323,-0.5084172,0.018886006,-0.2960478,0.010797769,0.47744498,0.081200056,0.25253052,-0.11183665,-0.40636304,0.065674044,0.27354875,-0.13559261,-1.239652,0.31242904,0.09150105,0.7342079,0.700126,-0.16967802,0.17612417,0.79664266,-0.18753843,0.12231662,0.28794548,-0.022314962,-0.5386069,0.536116,-0.6807179,0.39440468,-0.038445108,0.039326645,0.044280298,-0.051341772,0.26381642,0.68059593,-0.015994826,0.1436225,-0.07294185,-0.22313994,0.0343608,-0.44437835,-0.029772973,-0.53068155,-0.17466873,0.7435346,0.40093428,0.32724002,-0.06361163,0.10527982,-0.0028393387,-0.062214017,0.15983225,0.103466555,0.092944145,-0.113754176,-0.69463736,-0.14446431,0.5504243,-0.0017282963,0.21219444,-0.021490533,-0.23591436,0.21167523,-0.20125748,-0.18832156,-0.08534415,-0.6555719,-0.09626627,-0.27428487,-0.2276695,0.50991696,-0.081188746,0.33923957,0.22958294,0.07588094,-0.2299296,0.17822023,0.27221808,0.602793,0.062695175,-0.11902766,-0.26993656,0.20371667,0.18230054,-0.17588903,-0.10522876,-0.113890775,-0.037732646,-0.5567686,0.38648835,0.03546167,-0.25897458,0.29242313,-0.10173321,0.061302237,0.68790764,-0.21264677,-0.13707842,0.04239161,-0.14300379,-0.15831779,-0.16258499,-0.18837173,0.30702743,0.2308979,-0.1232251,-0.026336042,0.013983035,-0.047955815,0.3827091,-0.0059030154,0.41495952,0.23393577,0.07498367,-0.47556442,-0.042323176,0.07339377,0.4729184,0.11628286,-0.0051728827,-0.3101577,-0.4415921,-0.34023672,0.03276826,-0.12982677,0.18511719,0.16761617,-0.21998765,0.7898578,0.19484912,1.0272759,0.050640773,-0.25460297,0.091832526,0.3999557,-0.05120166,0.0022180458,-0.3268608,0.8774847,0.5471751,-0.056995478,-0.100536965,-0.2636318,0.012541489,0.11494686,-0.16228692,-0.07273841,0.06710081,-0.6751119,-0.32562053,0.23404716,0.32529926,0.08754481,-0.12362529,0.011551324,0.1159351,-0.008235367,0.2986809,-0.39006907,-0.11096891,0.3756072,0.23282649,0.051237073,-0.07829022,-0.56823164,0.41199923,-0.58806485,-0.11100997,-0.2201319,0.17248051,-0.15743509,-0.35018736,0.24832286,0.1756636,0.39488247,-0.35827672,-0.39790204,-0.29220816,0.5123152,0.038567614,0.15068217,0.4047624,-0.25702164,0.1349316,0.03452134,0.4648,1.0939878,-0.22846317,0.13905926,0.4324016,-0.33303705,-0.5119873,0.2837119,-0.24949278,0.13193773,-0.06296237,-0.18424413,-0.6685308,0.122742586,0.26767066,0.078562655,0.016048301,-0.62082887,-0.40638226,0.34489354,-0.39270642,-0.25227723,-0.34502062,-0.11856289,0.608547,-0.38185367,-0.34096402,0.12999313,0.32056728,-0.15552655,-0.5247568,-0.10869319,-0.29761487,0.2579649,0.18569562,-0.28515682,-0.23526448,0.23003823,-0.37560174,0.02784777,0.1267394,-0.3641159,0.08791385,-0.52100956,0.0359743,0.9303596,-0.15780789,0.13258187,-0.4616299,-0.42956793,-0.932046,-0.2503609,0.6153645,0.10486197,-0.003759414,-0.68878245,0.029015103,-0.14544246,-0.006025954,-0.06416166,-0.36603323,0.49647114,0.13737385,0.37261721,-0.11457411,-0.593406,0.04905789,-0.008709189,-0.19351648,-0.4580024,0.5182722,0.2020058,0.8519713,0.010745904,0.043667484,0.30301368,-0.637086,-0.019635057,-0.13512109,-0.24875149,-0.55916125,0.15156236,402 +207,0.367461,-0.21981768,-0.5038935,-0.111332305,-0.14238863,0.20077865,-0.19544935,0.47295702,-0.043608896,-0.4872675,-0.1029324,-0.2506765,-0.022403877,0.32110158,-0.17540582,-0.34659493,-0.011594049,0.013662334,-0.54346824,0.4266126,-0.44326916,0.2327375,-0.023632389,0.35696134,0.10644266,0.21568385,0.022957452,-0.11434393,-0.18126613,-0.06775978,-0.20485996,0.14448309,-0.5194511,0.09574134,0.030538162,-0.16538976,-0.03920033,-0.33884355,-0.19152793,-0.63432103,0.3373241,-0.6670404,0.43056244,0.034813803,-0.33192864,0.27404925,0.20475931,0.3549022,-0.28028476,-0.06473755,0.21792142,-0.061678402,0.11290066,-0.14545903,-0.07846589,-0.41455773,-0.5321389,0.044260144,-0.47592303,-0.29978323,-0.016002767,0.16061303,-0.27922007,-0.037234895,-0.3003665,0.46119052,-0.4017784,0.010518197,0.25391552,-0.08749146,0.18486737,-0.5715264,-0.094501115,0.033321105,0.20284876,-0.2482739,-0.2340414,0.23179223,0.17204557,0.40952852,-0.21585874,-0.080896504,-0.24511315,-0.016257267,0.16292308,0.51369715,-0.19523495,-0.3972294,-0.113893226,0.013346998,0.091579325,0.017036764,0.21118815,-0.29295632,-0.25291613,0.09939063,-0.0917722,0.3135336,0.5370539,-0.20507552,-0.15783015,0.30051243,0.5508082,0.23922817,-0.14137593,0.05135901,-0.011537863,-0.5226255,-0.098955356,0.19096518,-0.17531066,0.44263062,-0.14386219,0.30288297,0.5416094,-0.21367364,0.016905967,0.084939696,-0.03385192,0.05092891,-0.13429448,-0.25211477,0.12545495,-0.36258385,0.0291265,-0.28239915,0.7199679,0.22223148,-0.7894282,0.4089378,-0.46649152,0.13774295,-0.03792332,0.53381133,0.75061774,0.42394117,0.22148259,0.7081104,-0.46049663,0.12162669,-0.101234816,-0.23528562,0.19417614,-0.20875986,-0.036674373,-0.5462449,-0.16897169,-0.06619263,-0.23581961,-0.1290126,0.23225409,-0.71000105,0.19055723,0.05298012,0.77387375,-0.26531556,-0.06587792,0.73758286,0.81365585,0.9291593,0.2331272,0.8892709,0.19273315,-0.27593547,0.20489372,-0.3129191,-0.7140667,0.26452354,0.3291529,0.47083881,0.31420258,0.097513564,-0.062136672,0.44692963,-0.41348988,0.16355298,-0.23787345,0.07554371,0.08468009,-0.12491291,-0.25276792,-0.19482599,-0.07022305,0.06717167,-0.068213105,0.25855508,-0.18005134,0.47058597,0.09425966,1.7330229,-0.06882762,0.07461745,0.09646846,0.3499726,0.07259084,-0.43764964,-0.061603583,0.33328068,0.59184074,0.0486472,-0.67765087,0.11276191,-0.03498784,-0.47086862,-0.16146661,-0.3310905,-0.0843996,-0.083746225,-0.54107744,-0.17591763,-0.007894035,-0.15178087,0.28633928,-2.93659,0.09085957,-0.06491298,0.30063048,-0.2476462,-0.3265873,-0.0060578664,-0.51382315,0.3253712,0.47316483,0.27764252,-0.6888317,0.3731474,0.24054378,-0.25590977,-0.00022776921,-0.6413133,-0.011508377,-0.06569636,0.28534365,-0.043547515,0.046951976,0.23886102,0.19254269,0.37316337,-0.16938373,0.11169119,0.055965893,0.41564742,0.11793114,0.3594993,0.09310956,0.35170257,-0.15899692,-0.10096536,0.28492278,-0.35892335,0.064273156,0.0102642495,0.13000327,0.31797445,-0.41903085,-0.6382814,-0.57406056,-0.13964488,1.0867658,-0.18564327,-0.4155825,0.26146916,-0.2798894,-0.3373122,-0.23886092,0.40660337,-0.06330566,-0.19329184,-0.80085284,0.010118812,-0.19281188,0.2504495,-0.042813636,-0.2067015,-0.38473067,0.71206325,-0.11663916,0.49419674,0.39134887,0.0573266,-0.21818991,-0.44149786,0.09008883,0.81648916,0.4522511,0.114847854,-0.16852763,-0.21206698,-0.29373276,0.10322032,0.17287797,0.47457585,0.74597394,-0.021031145,0.15075655,0.26160353,-0.117851235,0.050155062,-0.15309931,-0.2534685,-0.08571995,-0.008601157,0.62463486,0.5073669,-0.077402,0.56338084,-0.13522059,0.17414586,-0.19493799,-0.4355995,0.38961002,0.81525916,-0.06917436,-0.2639218,0.44742066,0.51808566,-0.18844433,0.2943207,-0.5151002,-0.22394064,0.5570269,-0.2672637,-0.34417427,0.29713294,-0.29735613,0.2530632,-0.7730109,0.41564313,-0.19169979,-0.547649,-0.714888,-0.13231167,-2.8350012,0.14030232,-0.29756597,-0.3414481,-0.08753727,-0.1354434,0.2635992,-0.5621025,-0.445324,0.203011,0.08001689,0.69285023,0.06929531,-0.027087457,-0.15638402,-0.20552193,-0.1729108,0.07780601,0.06448174,0.2080203,-0.0027337868,-0.37569797,-0.01537865,-0.19072972,-0.25820178,-0.015896667,-0.41821703,-0.5612315,-0.28449836,-0.49394158,-0.31578842,0.58679783,-0.36425093,0.020287514,-0.11879993,-0.03263028,0.011303683,0.4249741,0.23154637,0.107103474,-0.08727476,-0.059432086,0.086247444,-0.4198329,-0.053506553,0.067161724,0.30419743,0.3871794,0.103519715,0.28112862,0.46593297,0.5840398,0.02238344,0.5646282,0.5317341,-0.060330965,0.29441896,-0.29116902,-0.056533553,-0.40525237,-0.23124522,0.108620666,-0.4435288,-0.50431687,-0.03286253,-0.2680162,-0.72317535,0.32269913,-0.12864642,-0.027125163,-0.01048701,0.33931282,0.49300498,-0.10423223,-0.016277773,-0.18378963,-0.13368924,-0.46488407,-0.28503132,-0.6036977,-0.39795277,0.11695898,1.2009218,-0.13789102,-0.04552157,-0.0147486245,-0.21317865,0.06313405,0.14541057,-0.059649162,0.25115138,0.24879247,-0.23868078,-0.6745227,0.47409979,-0.08721169,-0.22296026,-0.56758726,0.07300392,0.4843398,-0.5908802,0.45146036,0.13547148,0.084544234,-0.13946003,-0.4871909,-0.08157874,0.11229508,-0.25193676,0.357006,0.08992003,-0.66107845,0.38021088,0.29904515,-0.24992698,-0.7087201,0.31917867,0.0055904468,-0.38247368,-0.0024502676,0.19162661,-0.18587752,0.060722537,-0.2698094,0.19835353,-0.46190643,0.037786223,0.45533744,0.004992529,-0.01841592,-0.24392039,-0.13532373,-0.56497395,0.032007955,-0.48512,-0.21298787,0.2599888,0.10743243,0.23017666,0.16460416,0.18513091,0.46368402,-0.3113567,0.11024661,-0.05191202,-0.2265308,0.20216791,0.45222276,0.34252298,-0.42317298,0.6139625,0.088051334,-0.0188262,-0.1414721,0.19894062,0.49437687,0.25131565,0.32820952,-0.07467187,-0.24285218,0.356261,1.0262887,0.22095136,0.6268417,0.031145748,-0.066335775,0.0711968,0.08463215,0.16232672,0.148226,-0.29893506,-0.01564238,0.052023195,0.15548955,0.38118833,0.03278928,0.32570016,-0.06138899,-0.2697787,0.12310977,0.19353513,-0.02957805,-1.1108493,0.3686928,0.23811728,0.7632121,0.4172987,0.028708482,0.060269114,0.53900707,-0.26180372,0.13940115,0.0519745,-0.022328673,-0.51819235,0.42640617,-0.7040742,0.40572065,-0.13704711,-0.036608703,-0.07327543,-0.13824573,0.45911068,0.770134,-0.22548018,0.077158354,0.050710548,-0.23830914,0.11735116,-0.4168972,0.09500847,-0.573964,-0.33072,0.59123045,0.40393803,0.4167847,-0.05867343,0.019905804,0.16715463,-0.117413335,0.060844418,0.026965864,0.13817693,0.060473602,-0.7097721,-0.31469238,0.47119176,-0.22527485,0.1733944,0.005198264,-0.23342076,0.11908435,-0.16920453,-0.10099704,-0.1176398,-0.59562546,0.17056532,-0.282061,-0.45316964,0.47483456,-0.19898368,0.26746044,0.34575734,0.111264326,-0.34861085,0.29289913,0.088977896,0.6673032,-0.15033881,-0.12841333,-0.48145428,0.25298294,0.21936525,-0.18567172,-0.15979847,-0.28532192,0.0854899,-0.5252124,0.41267532,-0.037381873,-0.25053385,0.08911301,-0.05856015,-0.027929919,0.6725292,-0.053463403,-0.17531122,0.07962136,-0.29600614,-0.20190257,-0.1693071,-0.11962009,0.21053505,0.17914085,-0.04013898,-0.023144472,0.046645183,-0.118555374,0.3141229,0.21730341,0.4165966,0.3673586,0.00093242526,-0.54282516,-0.018452918,0.03675862,0.4410724,0.08343046,-0.18688531,-0.43872327,-0.5389411,-0.3050437,0.26856306,-0.22405316,0.3879532,0.041553576,-0.31187242,0.79821575,-0.040128756,1.0574201,0.03172239,-0.396735,0.05970359,0.5073648,-0.004678599,-0.01703184,-0.38592407,0.70466536,0.47620448,0.0316525,0.03247955,-0.14267255,-0.0417823,0.3906893,-0.107030585,-0.17121309,-0.022083888,-0.5740545,-0.21355735,0.16777371,0.18663219,0.20563895,-0.067859426,0.06005149,0.2136075,-0.109783836,0.09241968,-0.4032943,0.0058688642,0.20804267,0.0530492,0.10280616,-0.03490566,-0.4391848,0.39993006,-0.3358887,-0.004657308,-0.23435402,0.069201365,0.10635857,-0.27433914,0.13014767,-0.068837866,0.17241293,-0.35604605,-0.192755,-0.32345596,0.59030557,0.2757822,0.3405619,0.5153291,-0.20917886,0.2066619,0.10336632,0.58930564,0.9374276,-0.2761325,-0.08641403,0.43060505,-0.31764647,-0.60711795,0.33947983,-0.15025851,0.09689628,0.010794019,-0.25063014,-0.46336097,0.24135561,0.26562348,0.0076382714,0.10459914,-0.5335681,-0.30198687,0.4071855,-0.35680917,-0.27977893,-0.26515368,0.24281837,0.56279725,-0.2908702,-0.1461203,-0.028551165,0.32576576,-0.2598425,-0.3179926,0.05081127,-0.33618298,0.22027776,0.004344233,-0.25195614,-0.17936026,0.18214951,-0.3303718,0.19847186,0.20150293,-0.34172696,-0.030933417,-0.24550638,-0.15630119,0.78326124,-0.23247531,-0.06531762,-0.6517099,-0.44980052,-0.82881814,-0.30236876,0.4537587,0.11184616,0.13472907,-0.724964,-0.05592393,0.0006737729,0.030239249,-0.14144494,-0.30816728,0.55910796,0.15613873,0.28802723,-0.029237783,-0.5909077,0.10543993,0.063435085,-0.17077859,-0.45175913,0.5028834,-0.006918065,0.79214096,0.036318116,0.11891481,0.23203048,-0.47642463,0.20414506,-0.23518935,-0.26146248,-0.69835436,0.09137197,409 +208,0.52283764,0.09304914,-0.45039216,-0.1428425,0.0061902544,0.15326853,0.055367716,0.4001071,0.025951883,-0.42767745,-0.26590905,-0.2740839,-0.039829448,0.12117514,-0.2284996,-0.7676305,0.22124025,0.039288078,-0.22039206,0.43160072,-0.38461608,0.45941284,-0.028603157,0.18800806,-0.029279169,0.2588734,0.32693002,-0.14874192,-0.14723186,-0.26957992,-0.12378929,0.17742811,-0.36494005,0.11939098,-0.021129966,-0.22471005,0.19751692,-0.20118432,-0.4131244,-0.6678596,0.2529684,-0.72773415,0.4850647,0.17964397,-0.26222843,0.3734186,0.07089503,0.02890436,-0.1089354,0.053741872,0.08698754,-0.1861005,0.09546973,-0.24623345,-0.3887069,-0.5356091,-0.41138873,0.06969901,-0.32589054,-0.3364889,-0.38275835,0.016410789,-0.37472022,-0.06887902,-0.13145241,0.2376318,-0.37766513,-0.21493965,0.30189535,-0.26389146,0.1662631,-0.6254852,-0.26536193,-0.09623721,0.03236529,-0.12229618,-0.10688848,0.24259697,0.24479225,0.60384315,-0.19977862,-0.05619428,-0.23071384,-0.12667035,0.14906244,0.7095319,-0.32786173,-0.4291588,-0.08430875,-0.030859835,0.23491758,0.15028967,0.21120737,-0.03370973,-0.07899599,0.06525811,-0.3089001,0.35430127,0.61040086,-0.50735825,-0.14520663,0.24629763,0.25955105,0.040812254,-0.13453798,0.06580592,-0.14379962,-0.43548742,-0.15025263,-0.09803764,-0.22893405,0.63224614,-0.035835396,0.09649493,0.5716578,-0.23197684,0.36982498,0.1671777,-0.10959067,0.01928867,-0.117662326,-0.03098003,0.24654022,-0.33647877,0.117118426,-0.33779955,0.80055493,0.13636313,-0.5043753,0.3971409,-0.35168043,0.14875335,-0.025341133,0.52233535,0.476525,0.401886,0.3114397,0.53202605,-0.48405424,-0.0221182,0.060962103,-0.34864834,0.2284955,0.010346635,-0.096241646,-0.32230753,0.08169716,0.26427725,-0.052132837,0.093581885,0.35236987,-0.49560753,-0.022982163,0.19665144,0.75282305,-0.28262872,-0.10924285,0.51706636,1.0832436,0.7194323,-0.13746206,1.0331539,0.3034378,0.006538208,0.0689652,-0.17238222,-0.5861487,0.14478454,0.46540272,-0.04643506,0.15953337,0.19184774,-0.21409898,0.437327,-0.28453574,-0.108427316,-0.16909365,0.33814463,0.060838383,-0.29462376,-0.36620352,-0.05573345,-0.00974462,-0.059943233,0.08784019,0.3407998,-0.21565093,0.36318552,-0.07755222,1.2898988,0.087490164,0.14061943,0.14465874,0.45982248,0.2772866,0.04780542,0.21618897,0.29190832,0.08601699,0.026902897,-0.34042504,0.0345769,-0.22193769,-0.5772652,-0.08560289,-0.3078983,-0.042908918,-0.0697873,-0.42878953,-0.03960887,0.068947755,-0.11463677,0.37342662,-2.8161366,-0.04207351,-0.19099328,0.24183662,-0.23912835,-0.362064,-0.031908862,-0.4005998,0.38603413,0.48615137,0.42814368,-0.59583294,0.3396962,0.524424,-0.3642171,-0.108058706,-0.6050802,-0.09758532,-0.007011022,0.48652583,0.20225506,-0.05378469,0.034131695,0.12665504,0.54888153,-0.016130947,0.055216774,0.05624924,0.38966593,0.000113449496,0.30427375,0.035812013,0.5047001,-0.11283945,-0.064957805,0.38499674,-0.25731647,0.31802285,-0.051958364,0.17274718,0.1381592,-0.24049264,-0.6961548,-0.48494962,-0.3382447,1.2099564,-0.12365355,-0.3415615,0.32237884,-0.1512052,-0.29896182,-0.049741283,0.37329972,-0.13996077,0.01216472,-0.60236764,0.14310452,-0.2964955,0.100711815,-0.07669083,0.069908954,-0.38498715,0.72324306,-0.15457843,0.31949413,0.26892012,0.27525526,-0.14678532,-0.3774751,-0.22155038,0.8997147,0.47128296,0.05145209,-0.15668355,-0.025060542,-0.23573385,0.035464182,0.071216986,0.6651359,0.58988833,0.07652767,-0.03685806,0.15770459,-0.06932637,-0.039965417,-0.23030806,-0.22861648,-0.014765438,-0.07100785,0.72049916,0.6179976,-0.29464513,0.29640785,-0.1295646,0.36602995,-0.32292783,-0.4436641,0.33772194,0.7457024,-0.110935606,-0.13351418,0.6156124,0.39901802,-0.3146289,0.3051553,-0.6914013,-0.36980808,0.66923565,-0.24465333,-0.42731893,0.31965736,-0.327755,0.11501764,-0.83330804,0.3420054,-0.27610627,-0.4071356,-0.50279707,-0.18296571,-3.8768773,0.19248359,-0.34517804,-0.16976248,0.053524084,-0.020272184,0.21199326,-0.6149426,-0.27087924,0.030103523,0.17109251,0.38701564,-0.045025207,0.11162362,-0.3597883,-0.34018666,-0.10644548,0.22045945,0.06581504,0.18793978,-0.15136531,-0.34364802,0.088800825,-0.115744375,-0.2846341,0.08356464,-0.47909608,-0.70789295,-0.2057216,-0.252829,-0.11185273,0.61202174,-0.38321838,0.005302509,-0.15458873,0.011255564,-0.182805,0.14466755,0.23175506,0.28398198,-0.24032643,-0.029094942,0.10586225,-0.39696506,0.35329434,0.22986834,0.43874177,0.6759091,-0.14104427,-0.080402546,0.54131925,0.3586611,0.12552403,0.6776193,0.2896112,-0.070120215,0.4477043,-0.24670911,-0.29793578,-0.54389215,-0.37134922,-0.14361137,-0.26056248,-0.39560926,-0.23536752,-0.37238902,-0.65420705,0.3693829,-0.11056917,0.10719409,-0.14921491,0.4203452,0.53816295,-0.15742601,-0.11718012,0.197221,-0.056652103,-0.44187263,-0.17101994,-0.6525412,-0.5124887,0.18761882,0.788906,-0.016586844,0.024925685,-0.0935534,0.05582576,0.06156148,-0.05675687,0.26309472,0.064780034,0.20245294,-0.1030351,-0.66325754,0.5992435,-0.11959146,-0.23762615,-0.66128945,0.023572851,0.57832944,-0.6511469,0.4169232,0.3471213,0.09183829,0.15698878,-0.660994,-0.036474444,-0.018932767,-0.279626,0.28775498,0.13324705,-0.85992336,0.46439174,0.34896657,-0.13810486,-0.51195484,0.56722033,-0.00024900833,-0.5370342,0.059361234,0.21024793,0.10122096,-0.109875254,-0.020165265,0.34282213,-0.49537718,0.2425525,0.33853632,0.11621458,0.439473,-0.046606172,-0.20496865,-0.64435035,-0.029431501,-0.5618912,-0.2692998,0.119457215,0.089727,0.10596076,0.2237211,0.033489242,0.44405457,-0.42658302,0.21701351,-0.06619807,-0.15820242,0.5192442,0.44632214,0.3579249,-0.31668308,0.60281265,0.040019307,0.051501174,-0.0009880265,0.15108554,0.52639294,0.005628689,0.31352738,-0.084778994,-0.19794671,0.20924307,0.833126,0.18478225,0.5076625,0.20851365,-0.20413306,0.26773676,0.032057635,-0.036899503,0.07507339,-0.4035043,-0.13892956,0.08647003,0.055190135,0.44917,0.096516415,0.26141033,-0.21668513,-0.25830165,0.14925636,0.24875066,0.3046395,-0.8119655,0.051149774,0.13067529,0.7267916,0.4006843,-0.0015083621,-0.035294782,0.4675662,-0.14449285,0.087982625,0.27666438,-0.082100585,-0.47621396,0.41910288,-0.3715992,0.41586077,-0.10819044,-0.03509685,-0.031687018,-0.18216094,0.18887094,0.79602635,-0.25250018,0.05892933,0.02965949,-0.32167676,0.06464692,-0.3387019,0.11428626,-0.48061463,-0.18032427,0.58008105,0.5242532,0.24431208,-0.11769616,-0.13579425,0.02462192,-0.1427702,0.031825088,-0.05048776,0.27406222,-0.29454023,-0.44700292,-0.38911754,0.5327881,0.039279427,0.022647794,-0.067418054,-0.20502059,0.23223835,-0.04340543,-0.17932421,-0.046982016,-0.30985066,0.21836276,-0.36540386,-0.5050207,0.42003092,-0.18653938,0.2943428,0.11131024,0.02407488,-0.13425669,0.26235893,0.17474109,0.51828617,-0.15042336,-0.16548277,-0.56476337,0.10321171,0.15398814,-0.23463821,-0.1264097,-0.23504472,0.24403878,-0.53290737,0.15491822,-0.16420422,-0.14370099,-0.24697772,-0.12130164,-0.07382346,0.40531236,-0.1160452,-0.24466613,0.015765835,-0.037138455,-0.23696709,0.09487367,-0.06042615,0.20106776,-0.07046097,-0.17309317,-0.0027420605,-0.0412822,0.047400434,0.22214463,0.16741136,0.10071906,0.48186558,-0.097290024,-0.36829805,-0.13829833,0.054363307,0.50756055,-0.15322207,0.050997846,-0.17869076,-0.7377819,-0.34612963,0.073915854,-0.2365684,0.32786974,0.1862063,-0.2239274,0.8385748,0.029615168,1.1454232,-0.09580227,-0.35487562,-0.11883228,0.6862202,-0.013626237,0.0045561027,-0.3072167,0.9999071,0.47244537,-0.11186908,-0.30044883,-0.17493644,-0.089871235,0.13423388,-0.21433218,-0.15500759,-0.067460746,-0.59892356,-0.08264002,0.18411712,0.34635752,0.20790972,-0.026550118,0.112799376,0.19342484,0.12252974,0.42773706,-0.5074566,-0.37423265,0.24773873,0.21122865,-0.20145969,0.08072082,-0.2929931,0.34125632,-0.58638245,0.042419,-0.36966255,-0.049344994,-0.079512216,-0.3152213,0.20492938,0.0051617185,0.41979793,-0.5079671,-0.30482197,-0.0969937,0.2242491,0.12090328,0.24420057,0.40516073,-0.035626166,-0.095996186,0.09917917,0.6350422,1.3700638,-0.13799831,-0.10273475,0.37730893,-0.43721846,-0.75080764,0.100186124,-0.2997326,0.21917786,-0.31593454,-0.3113245,-0.4170861,0.32826197,0.30422333,-0.10594097,-0.022786062,-0.46504503,-0.35511622,0.16364853,-0.47798604,-0.33373752,-0.33739147,0.18907033,0.67863065,-0.38176996,-0.12034545,-0.18764037,0.36610496,-0.30944297,-0.6651061,0.059948526,-0.10990637,0.3081958,0.19444755,-0.34270018,0.030274995,0.067115314,-0.36145398,0.15477876,0.3208405,-0.36696237,0.017581536,-0.3205982,0.049368836,0.7609135,-0.04447078,0.008420467,-0.51201886,-0.5032179,-0.8451882,-0.6048195,0.5096625,0.14843506,-0.062897764,-0.43395123,-0.12452352,-0.047709934,0.029923836,-0.1348395,-0.109974034,0.5203181,0.12913394,0.25645128,-0.057762615,-0.73862725,0.016824134,0.087775774,-0.19401169,-0.6286403,0.38501078,-0.1356708,0.7957096,0.17322809,0.02064865,0.30034986,-0.4039817,0.14634424,-0.23992898,-0.21483094,-0.57983685,0.16145308,413 +209,0.48849174,-0.1582443,-0.5711394,-0.11536427,-0.1928539,-0.020564714,-0.16477807,0.66031057,0.19423796,-0.48268303,-0.15477511,-0.07308455,-0.0012405157,0.32530233,-0.14254403,-0.55494726,-0.046647895,0.20112911,-0.6685674,0.50111234,-0.38989198,0.21504945,0.0035164037,0.6391394,0.1907023,0.2071252,-0.1185888,0.12942539,-0.0449241,-0.2568779,0.060327195,0.25286338,-0.6984786,0.08207383,-0.21540776,-0.37982234,-0.19765292,-0.4599577,-0.47496712,-0.8439314,0.33704415,-0.8856557,0.6252439,-0.123770975,-0.39631155,0.03228833,0.23971382,0.50514436,-0.14538689,-0.17660482,0.089247026,-0.07767153,-0.09279051,-0.15236838,-0.17003575,-0.35248852,-0.60965854,0.1769537,-0.32168496,0.0192847,-0.23477693,0.19305226,-0.35280353,0.18427688,-0.11143017,0.47450784,-0.30772454,0.0929966,0.40962836,-0.084133066,0.25501245,-0.5421083,-0.044007838,-0.093338825,0.26692593,-0.07678464,-0.34532252,0.29407808,0.14682418,0.4748637,0.05327636,-0.34618455,-0.24826832,0.041100193,-0.037462786,0.46313015,-0.1969797,-0.48575824,-0.16085263,0.054252733,0.43983504,0.22438224,0.11852822,-0.06697743,-0.12503307,0.040851276,-0.20252392,0.47161832,0.6082565,-0.08146591,-0.2998264,0.28501242,0.54885805,0.23477171,-0.059428032,0.09851417,0.08122445,-0.60560507,-0.20028053,0.0072871167,-0.19846793,0.40530396,-0.16529998,0.25321847,0.6996977,-0.19344202,-0.11126101,0.21251847,0.063244,-0.03515721,-0.4166459,-0.3190302,0.23557563,-0.53549314,0.23871265,-0.26021224,0.77471405,0.18346676,-0.68727505,0.22623353,-0.65968174,0.2306175,-0.045523856,0.47276226,0.74901325,0.50942165,0.25582466,0.74380493,-0.38792592,0.13312745,-0.10871067,-0.32744038,0.10889505,-0.28263727,0.10295877,-0.4195093,-0.010632523,-0.02993315,-0.1256003,0.14741129,0.38143805,-0.5695141,-0.21743637,0.03592142,0.89475477,-0.21013379,-0.06960059,0.98178655,0.82848895,0.9131826,0.04264941,1.1305851,0.14699398,-0.1427504,0.18743162,-0.09031366,-0.9175498,0.43799964,0.20275782,-0.37906292,0.31895414,-0.064024985,-0.080348685,0.48759925,-0.49406117,0.072917886,-0.18254468,0.3396697,0.058025733,-0.13233154,-0.4309254,-0.24066718,-0.054309145,-0.10603355,0.21860828,0.26651976,-0.026542332,0.56775594,-0.013014967,1.444268,-0.026728181,0.08623282,0.091234185,0.40101975,0.1760597,-0.12965855,-0.13583365,0.08291386,0.32071564,0.15649267,-0.5297826,0.079304345,-0.1670923,-0.32392102,-0.18493064,-0.21598014,-0.1864528,-0.20719372,-0.4556733,-0.3053821,-0.26809344,-0.18570815,0.38358715,-2.5995722,-0.2824978,-0.0406509,0.33926356,-0.3824855,-0.48695558,-0.14125462,-0.56109875,0.6067226,0.18164107,0.5517781,-0.67831737,0.27057555,0.28173155,-0.5672777,-0.013702829,-0.7967984,-0.16788565,0.17095011,0.21266563,0.06797599,-0.19852321,-0.051414188,0.11310158,0.47684056,-0.06473721,0.01131554,0.28210488,0.44554406,-0.13479567,0.5229011,-0.17865114,0.65980476,-0.45271817,-0.25859788,0.35460767,-0.45094463,0.28454313,-0.07443158,0.060933303,0.51742846,-0.5288344,-0.8625441,-0.5270812,-0.17618115,1.029627,-0.17942767,-0.34974283,0.20393215,-0.6468189,-0.24720025,0.05136131,0.4587631,-0.17900518,0.0021662554,-0.79284364,-0.13340817,-0.22289582,0.02667452,-0.057085764,-0.10497376,-0.3416725,0.6128043,-0.14556995,0.2710986,0.38281924,0.12684889,-0.4415935,-0.5588102,0.06984376,0.8517721,0.38063785,0.22564551,-0.29723296,-0.23292615,-0.52613986,-0.22536628,0.026735552,0.7256361,0.80106646,-0.14831872,0.119303614,0.2621383,-0.01665976,0.022216681,-0.08715749,-0.33349222,-0.2579365,-0.096976265,0.76002175,0.7784495,-0.19369285,0.5362405,-0.077129774,0.32869393,-0.24721578,-0.4931005,0.5968609,0.8074852,-0.24660672,-0.40079087,0.65487194,0.33797613,-0.14935762,0.4504071,-0.4869346,-0.4074168,0.43811128,-0.09256632,-0.5141057,0.2072209,-0.2582901,0.23012428,-1.0372955,0.12380169,-0.43798986,-0.44596758,-0.75323296,-0.13755803,-2.229101,0.09494659,-0.24914196,-0.032692518,-0.37877426,-0.18576954,0.18114506,-0.40288654,-0.73193586,0.16998489,0.07016155,0.8617972,-0.09659937,0.1266672,-0.22969145,-0.12757851,-0.4526744,0.08239431,0.49578354,0.3804615,0.0011137803,-0.44716138,-0.1860418,-0.15360567,-0.5847871,0.13768053,-0.77734035,-0.5689727,-0.16074546,-0.5368387,-0.233255,0.74214536,-0.23424792,0.017783105,-0.19204544,0.05231712,0.035766937,0.3782798,0.12154619,0.04483113,0.18852353,-0.13215347,0.1442743,-0.27506742,0.21670556,0.09130125,0.38845342,0.29421484,-0.12458382,0.405078,0.45422328,0.99846596,-0.16106264,0.8383485,0.51437134,-0.010065607,0.31566238,-0.29737896,-0.42660195,-0.36170083,-0.054076534,0.053628445,-0.402525,-0.20663856,0.059604295,-0.3959953,-0.80954564,0.5723365,0.08856324,0.021879641,-0.076352164,0.16580829,0.5120365,-0.3130991,-0.14379296,-0.120899886,-0.12674962,-0.551775,-0.2700464,-0.5066673,-0.7363354,-0.1822531,1.1294007,-0.07354965,0.11637257,0.040504653,-0.29154077,-0.015114402,0.0645244,-0.09427259,0.049014084,0.48094395,-0.055275,-0.5327397,0.35136178,-0.05711599,-0.24406256,-0.7508575,0.3474788,0.6766319,-0.5172223,0.4453047,0.24323566,0.014038042,-0.30802646,-0.5631917,0.031933777,0.020115407,-0.20719299,0.4785455,0.26532796,-0.736904,0.52732736,0.5203075,-0.20156728,-0.73635304,0.44802076,0.12502573,-0.18797217,-0.16957802,0.37112343,0.16439782,0.03463644,-0.11754663,0.27137575,-0.31809312,0.17222585,0.20240487,-0.14179869,0.4404958,-0.26079527,-0.17477076,-0.7801819,0.10707584,-0.62706643,-0.31572473,0.2843136,0.053973947,0.13376264,0.1168905,0.22677456,0.3534762,-0.37388146,0.00439415,-0.30308864,-0.3633054,0.3062954,0.39641348,0.555705,-0.559358,0.62449104,0.11101139,-0.058014736,0.1817243,0.0709255,0.57972616,-0.07152724,0.37282214,0.10838968,-0.05414347,0.03611536,0.81179726,0.06160659,0.4586765,0.11745076,-0.027146196,0.086563796,0.15163599,0.14750801,0.06321495,-0.6570298,0.006448972,-0.14579615,0.1560516,0.49915224,0.16325945,0.29139656,0.02732306,-0.32693556,-0.07199858,0.028003637,-0.036116008,-1.7327473,0.55293757,0.25097293,0.95014185,0.18783556,0.09106705,0.09623359,0.74588335,-0.15173618,0.17683949,0.37815616,-0.07786754,-0.3985255,0.49555746,-0.85220975,0.53565824,0.052270226,0.0940978,0.087545484,0.046803687,0.6611098,0.729487,-0.13381882,0.053560477,0.00560801,-0.31574726,0.22986865,-0.43248132,0.05840396,-0.5243917,-0.17528585,0.71778774,0.43458578,0.321054,-0.246574,-0.017258553,0.25557077,0.0064982893,0.10474647,-0.0558849,0.11973882,-0.0048884354,-0.5474136,-0.16711381,0.46329355,0.16894814,0.2953687,-0.008173669,-0.025436934,0.2585129,-0.15371905,-0.048963286,-0.21106839,-0.75230354,0.0031637151,-0.5348412,-0.41925618,0.34100544,-0.2618591,0.15753286,0.2489184,0.11176691,-0.29104292,0.484742,-0.21986805,0.9210394,-0.06566002,-0.2728363,-0.28195947,0.25748464,0.25378835,-0.3175612,-0.07393178,-0.21412976,0.053189833,-0.3924532,0.37120265,-0.16509561,-0.5235968,0.1314611,-0.0992703,0.04918351,0.3932182,-0.2563063,0.017537594,0.11857606,-0.30786282,-0.21176742,-0.32165977,-0.044725068,0.3799176,0.44643372,-0.018531067,-0.01773294,-0.12936859,-0.20213011,0.4236522,-0.010688647,0.4200283,0.4152942,0.0884991,-0.31338528,-0.11237788,0.35844672,0.55441767,-0.09097996,-0.11493899,-0.45926067,-0.2730573,-0.3303894,0.52839917,-0.1031254,0.39490405,0.042402517,-0.24917823,0.7350956,0.088157065,1.1476914,-0.00048511822,-0.36333174,0.19599281,0.4052098,-0.005121684,-0.1059532,-0.4845689,0.8981962,0.3025959,-0.2311531,-0.05916622,-0.41721928,0.17066711,0.25157234,-0.22372201,-0.20311387,-0.13306238,-0.45943356,-0.25685754,0.32513836,0.2853306,0.18361594,-0.18107751,-0.014666454,0.23435208,-0.15586305,0.29632145,-0.43477204,-0.07536217,0.24795447,0.3339321,-0.095074974,0.112579376,-0.54932976,0.3863458,-0.44413102,0.05996388,-0.3173283,0.25330672,-0.030666979,-0.39002207,0.29140842,-0.108933054,0.3254951,-0.4759856,-0.29003245,-0.19499715,0.39708424,0.2743267,0.18555768,0.5608271,-0.26420134,-0.101391315,0.12506422,0.5277761,0.86198145,-0.25314948,0.19002658,0.22305563,-0.13678926,-0.5183284,0.46612185,-0.18123141,0.37048098,-0.033739995,-0.22698107,-0.5394361,0.27637464,0.2914789,0.06376802,-0.034657877,-0.679359,-0.20416495,0.32846102,-0.24630699,-0.24731849,-0.3821694,-0.021668483,0.53303826,0.072743736,-0.28810644,0.16159014,0.2634384,-0.08511257,-0.39259586,-0.09986513,-0.37158218,0.044774555,-0.0072139422,-0.36523038,-0.109188475,0.04495422,-0.55901736,0.1565926,0.110674165,-0.3299826,-0.016402697,-0.20647025,-0.0929806,0.9153797,-0.29625174,0.4167905,-0.5096093,-0.44573736,-0.7280615,-0.36684996,0.35221425,0.16237657,0.022234468,-0.77738076,-0.2698173,-0.09949843,-0.17075586,0.0014130791,-0.32456413,0.404348,0.18881239,0.35607547,-0.13473195,-0.6106786,0.15295093,-0.015999347,-0.26164773,-0.5394319,0.57989115,0.10255278,0.7933654,0.02126753,0.2676819,0.3767917,-0.5966034,-0.21192688,-0.08939754,-0.13496017,-0.7216127,0.012478224,419 +210,0.22890776,0.113838054,-0.726351,-0.014920226,-0.20793132,0.14508858,-0.29825816,0.29427394,0.4277551,-0.3071332,0.10326342,-0.14745137,-0.24903795,0.23885968,-0.067348465,-0.5260765,-0.06296571,0.15431139,-0.50375676,0.6803718,-0.27586517,0.27324903,0.18862289,0.22179101,-0.05908961,0.16397518,0.1766296,-0.22392255,-0.09919466,-0.096514195,0.1661685,0.09046119,-0.39903364,0.24283062,-0.1376641,-0.18943158,0.14123696,-0.26302534,-0.4696635,-0.6782294,0.15125881,-0.6244184,0.57457006,0.042557884,-0.15412553,0.40811607,0.12402308,0.22523595,-0.11995847,-0.11314788,0.15218973,-0.20954747,-0.3079085,-0.3070159,-0.48377407,-0.26604262,-0.4000831,-0.08100773,-0.5615049,-0.011612189,-0.40130028,0.06741117,-0.25527748,-0.15627335,-0.2027476,0.20353231,-0.26547843,0.089939386,0.29772085,-0.0965453,0.23922403,-0.63377434,-0.038959287,-0.08402352,0.16928883,0.08115406,-0.049517743,0.39595076,0.18610694,0.6095949,-0.031310964,-0.07185222,-0.3511586,-0.17504174,0.10512379,0.46473533,-0.20657612,-0.14224361,-0.14915921,0.0015837859,0.5520822,0.3719977,0.1307023,-0.2787145,0.048307095,-0.07188226,-0.18350762,0.3020323,0.5044309,-0.33428344,-0.052351873,0.52466846,0.31672686,0.29699403,-0.12902492,0.027508607,-0.22501943,-0.3744598,-0.17551622,0.1608038,-0.09188145,0.36764425,0.10254885,0.16575782,0.6916969,0.06504164,0.06024118,-0.043996986,-0.034291316,0.009261827,-0.24978133,-0.08730625,0.15168367,-0.5862688,0.13414901,-0.014511275,0.49811956,-0.06512884,-0.78181267,0.36606464,-0.36101872,0.20474547,0.029951552,0.6316407,0.77882975,0.5474704,0.10656322,0.8978522,-0.5544024,0.061125115,-0.105668634,-0.33512396,0.31256238,0.12681109,0.26816306,-0.48722684,-0.038369153,0.12944229,-0.19203645,0.07119895,-0.0139803095,-0.47053796,-0.17907871,0.17256543,0.8947947,-0.19800244,-0.118854046,0.45112726,1.2768867,0.7274231,-0.06757558,1.3009094,0.22891493,-0.23206387,-0.039107542,-0.3505977,-0.77351326,0.09298487,0.25090137,-0.22877833,0.35880697,0.14332514,-0.09313824,0.2859073,-0.18978778,-0.27109843,-0.13104823,0.44056645,-0.05753749,-0.10779099,-0.1661109,-0.06454791,0.025161719,-0.030791827,0.23273952,0.3096971,-0.14502877,0.30771872,0.18770064,1.5357829,-0.19036181,0.12997915,0.12761433,0.26305813,0.273376,0.090298295,-0.018164646,0.49540985,0.1634461,-0.13645434,-0.4970522,0.14668792,-0.2509213,-0.50457025,-0.018501464,-0.29409772,-0.15203379,-0.03970992,-0.17102978,-0.11551415,-0.15585211,-0.4382066,0.38637635,-2.9689667,-0.110549435,-0.12393982,0.2057298,-0.24802695,-0.22876994,-0.18009202,-0.3103911,0.5033446,0.19983058,0.47726008,-0.5234115,0.3008793,0.5282852,-0.5472752,-0.16799626,-0.53587216,0.11929016,-0.0079902215,0.39978713,-0.044172406,-0.2098518,0.13754848,0.13936552,0.45697612,0.094547346,0.1171628,0.4774646,0.5934395,-0.10002806,0.27235654,-0.20023298,0.50368494,-0.31339988,-0.109166175,0.22815919,-0.2049594,0.43924174,-0.27839762,0.25054324,0.42811403,-0.23763014,-0.51068634,-0.29703802,-0.08250424,1.1073252,-0.3431595,-0.46785438,0.19443278,-0.20726448,-0.18595624,-0.04937346,0.5382601,-0.015557552,-0.08303365,-0.61952174,-0.12805618,-0.18159316,0.2150801,-0.009318471,0.18128294,-0.32751036,0.6266106,-0.0153368395,0.4996066,0.45854917,0.18044071,-0.16909109,-0.26087785,0.113807105,0.75429136,0.33238715,-0.022061443,-0.1780634,-0.17741826,-0.141429,-0.2750777,0.08961095,0.44364834,0.53618675,-0.1281035,-0.022296278,0.32387677,-0.1837913,-0.081378214,-0.20986666,-0.40662175,-0.09774186,-0.026259832,0.40016097,0.6705741,-0.17428096,0.41581133,0.06856454,0.09589963,-0.3579468,-0.5229023,0.6578665,0.31284174,-0.29662704,-0.07184775,0.58334947,0.38360873,-0.12806289,0.557346,-0.6327267,-0.36890188,0.594999,-0.04919074,-0.4265007,0.15054967,-0.23494552,-0.119535886,-0.86548007,0.15471181,-0.44587475,-0.46556967,-0.47279274,0.10814484,-2.3724353,0.031755447,-0.39415067,-0.014994486,-0.22395103,0.13286643,0.25013438,-0.38337848,-0.5504758,0.19499278,0.362691,0.4296408,-0.06506552,0.03348671,-0.23938936,-0.35194892,-0.24634762,0.20906706,-0.00026640893,0.17962469,-0.099152654,-0.36270398,-0.1839331,-0.041577592,-0.2571309,0.0711047,-0.3370008,-0.12603292,-0.1593087,-0.36459127,-0.21466415,0.56849873,-0.54107183,-0.08225942,-0.2546664,0.04755064,0.08617924,0.28944224,-0.028966289,0.05842612,0.023564806,-0.09671029,-0.054406084,-0.32952687,0.3325786,0.051859036,0.3617263,0.47286728,-0.16813228,-0.049936797,0.41906032,0.6248903,0.0058599473,0.7485023,0.31774598,-0.19068378,0.37667704,-0.32118714,-0.004237652,-0.5579833,-0.28585884,-0.16262144,-0.296595,-0.58110327,-0.12642314,-0.37954485,-0.8381029,0.4469569,0.23810394,0.14387183,-0.090183325,0.30566877,0.5548378,-0.17953806,0.12507522,-0.15921314,-0.2910629,-0.39179212,-0.2652301,-0.87755865,-0.3503523,0.5222293,0.8544327,-0.26466256,-0.15394899,0.1515792,-0.29573867,-0.05365008,0.09408396,0.15035537,0.12397049,0.34473324,0.13195014,-0.52731746,0.45213005,0.057692744,-0.06738159,-0.7044532,0.21826465,0.6654265,-0.5872316,0.3693251,0.46931702,0.08218567,-0.17380746,-0.6644253,-0.054193776,0.18520352,-0.23852943,0.28532708,0.14040388,-0.6882277,0.44685698,0.3343517,-0.16561309,-0.78480583,0.34491715,0.16862385,-0.09007836,0.10108875,0.32198623,0.031354982,0.07392362,-0.29518095,0.17220011,-0.35657227,0.41368935,0.16582607,-0.12856512,0.32052407,-0.107827865,-0.23254314,-0.7805831,0.123113185,-0.40577847,-0.16837496,0.42662138,0.13396019,0.1520883,0.026988832,0.22891696,0.34384057,-0.32354805,0.18740006,-0.22438008,-0.25136676,0.515781,0.55562234,0.25222084,-0.40071282,0.6673427,-0.06885321,-0.29777083,0.03071196,0.14219205,0.38021147,0.16506688,0.2584687,0.10068491,-0.2695879,0.12405389,0.6471809,0.13100664,0.044908356,0.16940166,-0.08746397,0.40421662,0.06759008,0.0875672,-0.15538415,-0.563626,-0.13575138,-0.16064388,0.13723952,0.44679463,0.3400531,0.3980517,0.06093015,-0.25327745,-0.028173085,0.1053332,0.115367845,-0.8375688,0.46594226,0.16987206,0.65953165,0.570939,0.106842354,0.14643161,0.5828202,-0.07042783,0.10484045,0.3932972,-0.03334059,-0.35905072,0.5838154,-0.57537276,0.31141302,-0.08522335,0.017512536,0.24077241,0.18655568,0.36648044,0.9639761,-0.15008315,0.03594102,-0.17460544,-0.23110642,-0.00587025,-0.007126081,0.07880423,-0.38099244,-0.58931977,0.5347649,0.30405876,0.37919888,-0.1711858,-0.107284896,0.14248435,-0.20526408,0.37851867,0.033715144,0.12980859,0.0132676605,-0.3386527,-0.22397962,0.55309504,-0.11984274,0.08600429,-0.024961213,-0.109854,0.18612695,-0.28565767,-0.11013316,-0.03590669,-0.55845696,0.036426138,-0.15485662,-0.5133899,0.5041661,0.012286535,0.359526,0.075850055,-0.01621206,-0.018711202,0.46842894,0.06640463,0.4904012,-0.057856336,-0.30837405,-0.14135262,-0.012730726,0.057698734,-0.2849242,0.03225072,-0.08566627,-0.00061005354,-0.68322647,0.37308267,-0.18614711,-0.23202582,0.031010918,-0.3281175,-0.044587784,0.4339975,-0.19380663,-0.16533785,-0.14246625,-0.36800098,-0.33006334,-0.3485776,-0.21952267,0.13698778,-0.061413877,0.056338437,-0.18869153,-0.05572145,-0.075664744,0.040196516,-0.033205613,0.022633553,0.3150209,0.20072612,-0.48706922,-0.06288936,0.21830685,0.35209975,0.17148025,-0.07554807,-0.33275324,-0.34769276,-0.4765615,0.20792542,-0.14072795,0.23608643,0.07297416,-0.38175312,0.8141281,0.0039866883,1.0262221,-0.042264473,-0.23308048,0.08889755,0.51380664,-0.017783856,0.017978204,-0.35491225,0.90865886,0.6511509,0.03969964,-0.04952654,-0.34223023,-0.119283326,0.27837244,-0.32714817,-3.491044e-05,0.09920255,-0.60126716,-0.3572537,0.20529579,0.08747165,0.0009474476,-0.23690931,0.060525026,0.02949744,0.24948207,0.37049854,-0.5247696,-0.35342023,0.2641982,0.17946202,0.07398669,0.15803401,-0.42426312,0.32009622,-0.56898874,0.13690825,-0.37044343,0.018042084,-0.1523655,-0.22639808,0.16187154,-0.026690014,0.32965487,-0.32334888,-0.32625416,-0.0798214,0.38323727,0.20993692,0.21527386,0.66332275,-0.19954354,0.03687733,-0.035219852,0.5209374,1.060847,-0.24287723,0.0073129814,0.3777389,-0.37939173,-0.6958938,0.045037482,-0.521109,0.07695913,-0.11718504,-0.45692894,-0.26813787,0.31527558,-0.11605081,-0.02897408,-0.04002986,-0.7010838,-0.16187264,0.065476425,-0.33148602,-0.18232365,-0.3055558,-0.06717383,0.9336037,-0.38376188,-0.26572987,0.097251095,0.2120176,-0.28610387,-0.57553905,0.14574848,-0.3733658,0.2325146,0.17380041,-0.33640486,-0.040990938,0.12566955,-0.584885,0.09647396,0.055051804,-0.23178886,-0.03357211,-0.2954207,0.22017466,0.65970117,-0.08598492,-0.097331986,-0.38318422,-0.5248578,-0.7260253,-0.4929593,0.11713578,0.1522529,0.022386499,-0.4804512,-0.009057776,-0.154811,0.06430543,-0.09069826,-0.39520797,0.3235712,0.14656208,0.15850927,-0.4398072,-1.0068375,0.010323493,0.119161285,-0.0393149,-0.5900343,0.54466766,-0.13485104,1.0220003,0.085511945,-0.14307556,0.2733593,-0.6313299,0.2514868,-0.43660113,-0.1964243,-0.6587722,0.23057882,431 +211,0.21671604,-0.14576726,-0.4396658,-0.16615231,-0.03888813,0.13179046,0.010855798,0.44126204,0.21987823,-0.2924538,-0.07857022,-0.01784355,-0.07286522,0.28354672,-0.0836324,-0.4618145,-0.09194422,0.0064898254,-0.42765176,0.50929075,-0.3743372,0.33982697,-0.18169667,0.23905872,0.049272887,0.46335572,0.012584706,-0.23936138,-0.021453539,0.07232802,-0.13762389,0.07590981,-0.29754364,0.10422266,-0.008360481,-0.11948124,0.13518767,-0.14684643,-0.3642183,-0.5459616,0.31392956,-0.6115729,0.27617797,-0.052643344,-0.1600217,0.19264896,-0.009103866,0.26677302,-0.4197208,0.040180467,0.1247025,0.06780619,0.029970497,-0.07900189,-0.103924975,-0.3441148,-0.42463753,-0.051598325,-0.4384201,-0.16416411,-0.2241871,0.013276321,-0.3011873,-0.1275461,-0.052097205,0.30120182,-0.4744174,0.04054548,0.20979223,-0.123676576,0.17381884,-0.60366035,0.0032758713,-0.0791308,0.23745912,-0.12826405,-0.14021303,0.35379118,0.16701144,0.37537375,-0.01469383,-0.052730188,-0.23532481,-0.1460355,0.18426739,0.30107197,-0.074536756,-0.3569177,-0.06515055,0.038869165,-0.0070711565,0.14990367,-0.07133912,-0.26534688,-0.15075992,0.119175814,-0.21445383,0.13722964,0.38960043,-0.33176154,-0.28597492,0.5190667,0.680513,0.17194414,-0.1823098,-0.01662411,0.021543443,-0.34315094,-0.1665469,0.06437426,-0.16690359,0.4661752,-0.09998706,0.15844399,0.6870021,-0.2684001,0.2293706,-0.13386269,-0.00436124,-0.25857064,-0.18341725,-0.15374002,-0.023888268,-0.32417208,0.14468366,-0.0547477,0.6937138,0.19648512,-0.58449817,0.2839811,-0.39253342,0.16074158,-0.15580127,0.5660306,0.6590254,0.33114845,0.13573319,0.7046505,-0.54580694,0.15045461,-0.08017949,-0.39604595,0.23726,-0.1813377,-0.32754505,-0.5365011,0.014508668,0.18478104,-0.21864031,-0.095114104,0.011015827,-0.46738005,-0.01781035,0.0939517,0.6784943,-0.3083974,-0.02219191,0.30949125,0.97391254,0.8350811,0.020585299,1.158613,0.14033826,-0.2910104,0.39471313,-0.45877746,-0.7630686,0.21048026,0.37029874,0.08544178,0.29185003,0.17290844,0.09058203,0.32351542,-0.49232545,0.19856617,-0.21886893,0.36122695,0.151572,0.01251254,-0.30302677,-0.13059801,-0.041908544,0.033733074,0.035066646,0.24454387,-0.21232969,0.061489318,0.110588886,1.7823108,0.052308485,0.1689474,0.12798722,0.53809226,0.118555546,-0.1522459,-0.13559748,0.44925976,0.46297294,0.07505036,-0.6441526,0.1346902,-0.2959094,-0.5015023,-0.12682232,-0.40157983,-0.03287922,-0.019244047,-0.46223825,-0.07590027,-0.050374962,-0.19912843,0.44254604,-2.9483306,0.0070397565,-0.16159429,0.3562898,-0.37102565,-0.19121294,-0.08123185,-0.36290917,0.2881422,0.44043052,0.36445385,-0.5542254,0.23783468,0.4662331,-0.45513442,-0.0872135,-0.4791398,0.0019133012,0.01845998,0.40692264,0.022045493,0.087355055,-0.061258364,0.13331005,0.22835064,0.048625812,0.060216565,0.26823145,0.21728247,0.18082261,0.48613197,0.053706225,0.38416958,-0.11945343,-0.011623895,0.17045905,-0.26085472,0.40607125,-0.1067913,0.1393225,0.31817374,-0.32393128,-0.68387806,-0.6388418,-0.28693503,1.3607057,-0.30874628,-0.24896882,0.33741978,-0.3727109,-0.16730683,-0.2867817,0.4785406,-0.119139,-0.15166196,-0.7367063,0.18783692,-0.06626064,0.3471678,0.06695916,-0.0455721,-0.36661634,0.61689365,-0.002055033,0.5730497,0.3193015,0.045879528,0.0058399043,-0.40037423,0.025608849,0.6210888,0.34710154,0.08710531,-0.10710421,-0.13604528,-0.36149016,0.009469772,0.22075869,0.33526003,0.6252335,0.008230916,0.06959353,0.19871108,-0.071488775,-0.07708063,-0.13250032,-0.18792349,-0.006543659,-0.10030716,0.45465457,0.54527944,-0.29055503,0.2841566,-0.11607465,0.062239435,-0.21564975,-0.3629527,0.5978395,0.62002295,-0.16411476,-0.086486764,0.4334891,0.5570151,-0.23883823,0.30714625,-0.6174333,-0.04127473,0.5491756,-0.23076038,-0.26102734,0.10766511,-0.31696665,0.15162945,-0.8218279,0.15785922,-0.16343832,-0.2980885,-0.5737121,-0.16934608,-3.3325572,0.042349003,-0.16205554,-0.2605029,-0.0828259,0.056550495,0.32536164,-0.6897012,-0.4595345,0.18965912,0.055038232,0.5262267,0.04969844,0.01598804,-0.3245679,-0.1466196,-0.37346593,0.07014597,-0.0024300218,0.27305043,0.041909643,-0.47299936,-0.109424844,-0.024960598,-0.36665618,0.13384151,-0.36002052,-0.2999925,-0.18223931,-0.42586327,-0.260024,0.7166376,-0.22954842,-0.0021113951,-0.09062126,-0.050525267,-0.15278901,0.21508007,0.2129133,0.007687326,0.064969555,0.046053533,-0.055427518,-0.33734688,0.29560757,0.040894914,0.3251477,0.2602902,-0.02660156,-0.0086691575,0.5189021,0.45828596,-0.16011448,0.6712143,0.6384984,-0.1630168,0.2550631,-0.36852664,-0.027341468,-0.39473048,-0.33807555,-0.13182727,-0.30834988,-0.56339556,-0.09560881,-0.37580347,-0.7760876,0.32945263,-0.042556245,0.15349859,0.10896052,0.09364555,0.48124236,-0.032833498,0.12664399,0.09611745,-0.07135823,-0.50775516,-0.39750162,-0.5455232,-0.24052949,0.30076537,1.0902883,-0.32639298,-0.13519984,-0.06618771,-0.37313882,0.004219826,-0.0072148363,0.028621078,0.16849962,0.24726114,-0.06792227,-0.6091313,0.43709722,-0.017021434,-0.08778828,-0.66561204,0.02364157,0.43106174,-0.63699263,0.4579838,0.2605518,-0.023154374,0.043534692,-0.4438421,-0.22758952,-0.10779837,-0.14940977,0.25490692,0.07651344,-0.6794967,0.31475708,0.18555507,-0.15830651,-0.58056194,0.4991583,-0.09853282,-0.32719097,0.020676693,0.20717087,0.13003652,-0.01550856,-0.21166459,0.24639037,-0.44356278,0.12748006,0.42521688,-0.07021981,0.2477306,-0.12399988,0.015274067,-0.6066941,-0.038204525,-0.41775474,-0.10341255,0.2541662,0.15292324,0.18272908,0.089502946,0.12034129,0.31366682,-0.20497343,0.07347346,0.10702494,-0.19965261,0.3779542,0.31968567,0.3859581,-0.34343272,0.46561342,-0.038560223,0.051954433,-0.00574344,0.13364072,0.4407967,0.18596435,0.3075722,0.048951097,-0.3463679,0.28430682,0.7986853,0.21051452,0.3934277,-0.068278536,-0.24559633,0.2673949,0.12800585,0.17417835,0.085407324,-0.46954945,0.030054754,0.013262113,0.23162948,0.32382366,0.15022011,0.3079481,-0.09642685,-0.20055334,0.054462608,0.20303354,-0.031259645,-1.0029397,0.40816358,0.18350394,0.67130876,0.46352944,0.018331798,0.019446472,0.48546496,-0.16320726,0.2275845,0.33024853,-0.096323684,-0.58229154,0.3852275,-0.6264004,0.5840561,0.113491155,-0.07295361,-0.020507058,-0.024147844,0.16360421,0.82153064,-0.09210971,-0.098566435,-0.018686993,-0.32773176,0.074931994,-0.34864298,0.015067903,-0.5514472,-0.30133867,0.39712662,0.47135913,0.3410447,-0.10495426,-0.050739136,0.020395812,-0.0693795,0.14316039,-0.083783254,0.061367355,0.12681721,-0.63511956,-0.3395219,0.4249563,-0.28700778,0.10149581,-0.071227506,-0.22346841,0.23920618,-0.1033251,0.010728343,0.025924172,-0.52210957,0.056682013,-0.074695274,-0.24813621,0.3950179,-0.27451906,0.41199857,0.10037688,0.013862564,-0.33591393,0.38533834,-0.020052908,0.6693495,-0.22722481,-0.19083251,-0.5346642,0.07277249,0.16938621,-0.1303918,-0.04014063,-0.30327466,0.0061375815,-0.4641075,0.28829896,-0.01358366,-0.21925873,0.0027469953,-0.42330703,0.0017667651,0.56995314,-0.07197411,-0.16179824,-0.20255576,-0.14647485,-0.21535069,-0.15157579,-0.19534935,0.22805944,0.12389514,0.050383464,-0.07950313,-0.19611983,-0.06504185,0.29202473,0.11248014,0.24736144,0.30554187,-0.076203935,-0.21822467,-0.2381794,0.16769163,0.3070661,-0.04379758,-0.04476245,-0.2708465,-0.47001684,-0.3661137,0.08024383,-0.17543958,0.35475904,0.13223521,-0.30714092,0.48759657,0.011817753,0.9113588,0.039677605,-0.2528636,0.08582635,0.5415299,0.21325938,0.08358096,-0.21477972,0.7505774,0.6734455,-0.07114153,-0.22415896,-0.1771622,-0.17757146,0.16575721,-0.14455391,-0.06463777,0.046382997,-0.6542391,-0.1836599,0.28419396,0.11795798,0.22568344,0.09287238,-0.17377645,-0.034693576,0.14598796,0.36854658,-0.3911542,-0.12819725,0.30685318,0.08170034,0.26641655,0.21860339,-0.4629658,0.46206513,-0.47680372,0.024260055,-0.13578254,0.19439769,-0.20031887,-0.18354866,0.1674544,0.030734815,0.39302924,-0.21933015,-0.4391592,-0.32970962,0.54749453,0.011952051,0.19544159,0.5171263,-0.16265719,0.04936694,0.008568951,0.49962854,0.9119591,-0.20154507,0.0009536902,0.46204728,-0.37854657,-0.50593936,0.16725609,-0.2920121,0.15788864,0.07046212,-0.15697552,-0.44947675,0.24530627,0.13210125,0.012314472,0.09863009,-0.58322006,-0.34042248,0.09716579,-0.24534711,-0.1924074,-0.28697115,0.13400911,0.7511403,-0.40267423,-0.2351015,0.0774147,0.28048542,-0.17725264,-0.5122897,-0.08462319,-0.4179181,0.31514102,0.12427257,-0.2377796,-0.14533135,0.11651703,-0.30649242,0.19851759,0.115937695,-0.37711382,0.11717607,-0.26452413,-0.020178366,0.8249945,-0.08616725,0.0063017607,-0.48747364,-0.2576827,-0.7886088,-0.28097102,0.47415748,0.10135265,-0.07762957,-0.4028873,0.09501315,-0.022526132,0.15968429,-0.08344632,-0.51045203,0.5730475,0.049417216,0.14697787,0.021907179,-0.84351563,0.040999316,-0.023006618,-0.17663051,-0.5046573,0.593779,-0.18847513,0.8374857,0.033021983,-0.037884165,0.1427634,-0.3807205,0.07094689,-0.29019117,-0.2837387,-0.62560266,0.11276896,434 +212,0.54258764,-0.246599,-0.46401307,-0.13401093,-0.23087756,0.33900234,-0.19774412,0.4323172,0.07745938,-0.44695294,-0.2027361,-0.20601763,0.14375392,0.48310146,-0.10974585,-0.5436607,0.16666655,0.2056728,-0.6124276,0.5778428,-0.47652674,0.36915454,0.046293817,0.33489358,0.081287034,0.36173362,0.15480514,-0.16628161,-0.3700551,-0.06235798,-0.037182026,0.16004378,-0.6095801,0.17580867,-0.16989027,-0.36857402,0.02451755,-0.48926392,-0.3591847,-0.6062968,0.120374694,-0.8361033,0.511467,-0.1235226,-0.23244566,0.41910014,0.14600195,0.33504808,-0.2837632,0.22173792,-0.0054142238,-0.020636294,-0.14695519,-0.30070373,-0.31365326,-0.5924426,-0.56829375,0.11092871,-0.45248488,-0.14528807,-0.014842431,0.048243944,-0.2570726,0.05330439,0.06740985,0.24948801,-0.39528444,0.04430207,0.19848748,-0.04453396,0.03505746,-0.36297145,-0.14525911,-0.13400497,0.4020987,-0.23488232,-0.13320352,0.27216455,0.43645996,0.54901284,-0.026727477,-0.16254619,-0.27825782,-0.014095739,0.2122889,0.6137908,-0.077269174,-0.54938114,-0.18329215,-0.0077323597,0.21121988,0.17964587,0.28528097,-0.2359538,-0.07375403,-0.14743312,-0.22815384,0.21732108,0.45957267,-0.4930841,-0.38013253,0.45482698,0.5532552,0.09782275,-0.10976561,0.11978779,-0.017978309,-0.43797973,-0.1772668,0.20328368,-0.1514101,0.5633674,-0.13491735,0.1678804,0.61902887,-0.25562224,0.08201766,-0.0033390084,-0.110295005,-0.091699705,-0.061091807,-0.2320419,0.08939996,-0.3240333,-0.013932964,-0.21036403,0.6205794,0.35103816,-0.6755302,0.39798632,-0.48208427,0.0988045,-0.12210252,0.45347995,0.61614996,0.37281168,0.081294656,0.52368087,-0.3634514,0.10820875,-0.184863,-0.2886688,-0.008437932,-0.27934203,-0.15199734,-0.5326592,0.2850355,0.036243536,-0.11862152,0.11756339,0.44532606,-0.42860827,-0.07200251,0.10442243,0.833314,-0.32861263,-0.19108939,0.79677075,0.96087736,0.8435312,0.0016756833,1.348993,0.49221423,-0.20223993,0.04956076,-0.3878952,-0.6142731,0.28427663,0.40187228,-0.44220915,0.54344505,0.08724427,-0.029447485,0.29993975,-0.24911736,0.015019019,-0.11161947,0.1019698,0.08391218,-0.14289276,-0.28745282,-0.2345747,-0.078258514,-0.16583358,0.30500597,0.26041034,-0.19057003,0.39915147,-0.031629372,1.8752548,0.040943615,0.03747534,-0.13110633,0.4498315,0.23708993,-0.08249641,-0.11400983,0.35421208,0.2884801,0.026578037,-0.5188796,0.08299964,-0.20541224,-0.59688514,-0.2394378,-0.3317428,-0.008548474,-0.03466981,-0.39279366,-0.13415232,-0.063403204,-0.14731741,0.51349026,-2.6517127,-0.34108797,-0.070747495,0.37187654,-0.4182478,-0.33380902,-0.38154152,-0.40985182,0.28428108,0.2590248,0.44057867,-0.68755364,0.47225678,0.21441571,-0.44226745,-0.2365254,-0.513542,-0.076155625,-0.08498539,0.31080717,-0.1657067,0.009996502,0.26832542,0.12820335,0.45628703,-0.12606026,0.07549556,0.22494617,0.40996578,0.28942686,0.3243815,-0.008741426,0.59564763,-0.3014874,-0.20149669,0.3634239,-0.29265928,0.32135952,0.01248302,0.16869082,0.25096285,-0.48932686,-0.7750902,-0.7087298,-0.21423617,1.0531418,-0.22631845,-0.3593408,0.03906629,-0.028267376,-0.19052012,-0.026879616,0.32058176,-0.07386096,-0.11975361,-0.7372945,-0.022608537,0.11945069,0.1481922,-0.05721822,0.18237475,-0.31587043,0.3703621,-0.10194448,0.43701306,0.15163739,0.31785482,-0.024401283,-0.42644787,0.15652078,1.0125328,0.34499472,0.14390928,-0.11637686,-0.32805404,-0.32101497,-0.051946647,0.09460737,0.3802245,0.65683836,0.020830495,0.037974156,0.24672154,0.017987955,0.17073599,-0.09993162,-0.27245033,-0.07735274,-0.047657795,0.48388854,0.39937577,-0.18051535,0.67496514,-0.25289413,0.29175237,-0.20795529,-0.4494821,0.53913915,1.0019157,-0.33376735,-0.24458064,0.42603728,0.35966504,-0.43224427,0.4507558,-0.6991294,-0.31597424,0.42237297,-0.1664591,-0.25338027,0.3574713,-0.17791338,0.17506264,-1.0693185,0.3679979,-0.1899597,-0.17132495,-0.43563712,-0.062702574,-3.2227342,0.066092394,-0.040225253,-0.16019192,0.03475038,-0.1408365,0.11083523,-0.58151424,-0.51178247,0.2986674,0.0038854082,0.7310871,-0.04056799,0.26405704,-0.2514762,-0.3101538,-0.34757754,0.19291785,-0.0060998024,0.37737125,-0.022320224,-0.4502615,0.019323412,-0.25585315,-0.25741893,0.17451675,-0.6670097,-0.46235836,-0.25638145,-0.40900338,-0.22289354,0.65209305,-0.35746473,0.018889105,-0.1992314,-0.055638324,-0.23042892,0.27066436,-0.033362944,0.15081628,0.14475702,-0.11176095,0.06402339,-0.2776836,0.3695555,0.15503411,0.20560858,0.43853536,-0.12603109,0.16790657,0.44772884,0.58048266,-0.08577065,0.5125495,0.47374538,-0.07678084,0.3377079,-0.46367767,-0.07555329,-0.38831088,-0.48258334,-0.16018876,-0.3864924,-0.6321208,-0.15208188,-0.329776,-0.7021175,0.5141173,0.003766038,0.022452127,-0.111103006,0.2626227,0.54378307,-0.26450628,0.04852248,-0.12926526,-0.12970784,-0.4869663,-0.3595077,-0.5105622,-0.43615732,0.31937847,0.9920201,-0.17012501,-0.052555274,-0.06791529,-0.11428172,-0.024013495,0.009915622,-0.041200817,0.037825234,0.46115965,-0.15694954,-0.6996648,0.43461025,-0.28368086,-0.2988215,-0.5214639,0.21178092,0.5905887,-0.6606477,0.64221054,0.40765172,0.09706895,0.1966252,-0.44738185,-0.1383627,-0.03511095,-0.21861553,0.18695065,0.0932414,-0.8054771,0.40595484,0.3215481,-0.44416216,-0.7132168,0.5830423,0.1186728,-0.21363279,0.08076416,0.2909115,0.24410187,-0.02382751,-0.5604923,0.19445625,-0.66911775,0.31675848,0.31546992,0.027116705,0.28964078,-0.072192825,-0.15808302,-0.74587923,-0.08747649,-0.46305454,-0.35790947,0.20057635,0.11210565,0.17480174,0.08205695,0.10724218,0.39606762,-0.6099175,0.14762478,0.10346263,-0.20729944,0.24740645,0.28549603,0.381563,-0.5131807,0.52725726,-0.00058473746,-0.12495572,0.0894841,0.11759755,0.46579638,0.34700042,0.18868503,0.26072434,-0.186756,0.24005897,0.66816705,0.24375452,0.30175036,0.2272722,-0.36456245,0.24374917,0.090440944,0.12907812,0.0027718623,-0.3012351,-0.13956502,-0.040932346,0.18311307,0.42047137,0.20260862,0.35313976,-0.05787495,-0.34933102,0.007861304,0.08514786,-0.0054852883,-1.0656213,0.23820442,0.11349078,0.6664224,0.41911134,-0.023586726,0.20498905,0.44156516,-0.24150859,0.12224308,0.36889064,-0.17298803,-0.44861552,0.5030336,-0.4920578,0.28536034,0.05518001,0.007999997,0.00022753874,0.04559327,0.3229922,0.9028693,-0.07651775,0.23616555,-0.005730599,-0.27374077,0.034801364,-0.39636356,-0.00096779066,-0.5380755,-0.17908049,0.6172632,0.33895886,0.3072711,-0.19728504,0.053539746,0.13079314,-0.14280109,0.09450755,0.23394568,0.34462267,-0.026597448,-0.68141437,-0.34765238,0.63073605,-0.097551316,0.052611776,0.10765692,-0.34678748,0.26546347,-0.26180103,-0.011825574,0.017166765,-0.677912,-0.19970235,-0.36127606,-0.33879337,0.3581785,-0.08292107,0.1628036,0.14587332,-0.008879966,-0.31011766,0.44574445,0.19027726,0.7204104,-0.026409928,-0.2773321,-0.42002872,0.2181824,0.3106645,-0.29849556,0.13669871,-0.101392195,0.060039394,-0.57267386,0.49597415,-0.043093577,-0.3028344,-0.03873811,0.038906302,0.049558412,0.53552544,-0.17950107,-0.08775881,0.10883788,-0.16448234,-0.3925625,-0.014114467,-0.19883868,0.15412425,0.32007235,-0.1898789,-0.087926574,-0.027650945,0.06926866,0.42873606,-0.0773761,0.35017845,0.3835308,0.14394219,-0.19057178,-0.10603556,0.20524979,0.3795796,-0.076050065,-0.08878129,-0.35871843,-0.36172524,-0.1931923,0.049968217,-0.25606287,0.23798886,0.11504405,-0.26644817,0.70056623,0.086210646,1.1687354,0.05942201,-0.36025506,0.1784232,0.33303395,0.041339274,0.004345547,-0.41601345,1.0146118,0.50752366,0.047177568,-0.057082076,-0.36628598,-0.2324564,0.14045782,-0.27126077,-0.38328457,0.03296543,-0.56882876,-0.5512951,0.19593503,0.14858662,0.22459255,-0.14378884,0.3432783,0.22644135,0.13860424,0.21858393,-0.5196174,-0.3648825,0.35473308,0.42648742,0.030439286,0.14779054,-0.36938506,0.37528738,-0.55711675,-0.010562325,-0.18242179,0.15871212,0.034374077,-0.34023717,0.21866134,0.2517031,0.299453,-0.30141178,-0.48631537,-0.22066413,0.49570426,0.06818002,0.09919355,0.57644683,-0.24831632,0.044598326,0.04498228,0.4964048,1.117864,-0.19712307,-0.00046124856,0.5643606,-0.32714233,-0.6646773,0.48886257,-0.22877187,0.28949896,-0.15140961,-0.23124415,-0.77685916,0.4423909,0.17291957,0.024645964,0.0590206,-0.414726,-0.16215661,0.3790531,-0.35398942,-0.3139948,-0.41654146,0.17150228,0.8208316,-0.3186822,-0.19564942,0.18871015,0.2891473,-0.34261626,-0.49375254,-0.21978179,-0.31975135,0.22588444,0.1661231,-0.29761654,-0.16053371,-0.044655148,-0.31017417,0.23268427,0.2598872,-0.29461777,0.1397079,-0.47095382,-0.052488703,0.8847717,-0.26345423,0.082155354,-0.66112083,-0.38306874,-0.89893925,-0.4200601,0.36022398,0.10069712,-0.08323581,-0.53106284,0.09862742,-0.03225647,-0.26637247,0.0033065677,-0.3643113,0.41694865,0.025268465,0.23570086,-0.098072104,-0.79159826,0.16295354,0.21235624,-0.31791788,-0.6028276,0.43177864,-0.083440565,1.1171308,0.09403975,-0.0116063235,0.4929827,-0.49372515,-0.09552369,-0.31784764,0.04910079,-0.649571,0.13056569,439 +213,0.26896745,-0.10740343,-0.5708771,-0.12883179,-0.3833991,0.16756882,-0.18735124,0.1541665,0.15284277,-0.2363693,0.09495448,0.067301616,0.05699042,0.5198067,0.03781362,-0.5249085,0.10475676,0.06934023,-0.53529716,0.6135422,-0.3958758,0.45458496,-0.14533135,0.3236686,-0.092351526,0.40553412,0.22465502,-0.009378354,0.071164705,0.07112017,-0.14542475,0.21984115,-0.3323936,0.13824199,0.22496305,-0.14825891,-0.062958434,-0.16412076,-0.51194483,-0.57234484,0.43711206,-0.71423745,0.45763084,-0.002926926,-0.3227035,0.20764692,0.14938416,0.28228563,-0.26616022,-0.024733407,0.17929812,-0.0102407215,-0.006647726,-0.19501378,-0.21296965,-0.6044502,-0.46010673,0.017689547,-0.67959684,-0.42818195,-0.40006727,0.19206928,-0.37383428,-0.09431238,0.0047375243,0.24779858,-0.5199214,-0.04898065,0.21555112,-0.3324429,0.13040875,-0.5620043,0.03398638,-0.059587978,0.13816282,-0.0077008805,-0.11005703,0.3226699,0.34056658,0.54076993,0.06858475,-0.28663716,-0.3375582,-0.2549183,0.16087481,0.4890705,-0.16464345,-0.38150012,-0.21576685,0.011812897,0.09412577,0.07167559,0.041501537,-0.45957634,-0.13478562,0.11491553,-0.18840875,0.30770475,0.37445953,-0.46590653,-0.2682778,0.49724343,0.42559382,0.16733167,-0.32981396,0.13754915,0.03674818,-0.35051352,-0.16508318,-0.06950946,-0.13324882,0.47388694,-0.18504009,0.3467134,0.7636854,-0.11768742,0.11831937,-0.055057224,0.008131657,-0.14134921,-0.1107031,-0.004125754,-0.05282827,-0.38633636,0.115316026,0.0039026698,0.72335804,0.10539201,-0.5853477,0.52782935,-0.440945,0.20001386,-0.17089157,0.52365357,0.7796266,0.29917967,0.13796881,0.7649247,-0.35849476,0.12116823,-0.03691281,-0.4463678,0.20851485,-0.20237708,-0.14234997,-0.5210846,0.14052705,0.21510503,-0.09196282,0.03044182,0.47134152,-0.50790435,-0.07454698,0.17267632,0.8146736,-0.2986413,-0.09089853,0.38032082,0.9480196,0.7728804,-0.017269773,0.93897754,0.3023557,-0.18798889,0.17592493,-0.35434955,-0.6940746,0.16871881,0.43652865,0.465964,0.39010665,0.07835189,-0.037259087,0.4290642,-0.28744125,0.056267783,-0.11729201,0.27144825,0.14204147,-0.17514782,-0.44891873,0.05252371,0.10194211,0.074892215,0.0632107,0.2126976,-0.28326887,0.20576015,-0.0025974275,1.6608016,-0.087926544,0.13413247,0.037911654,0.614199,0.381332,-0.1250746,-0.047601882,0.39843225,0.2636474,0.03722073,-0.65760416,0.17302996,-0.2883279,-0.59213704,-0.21397178,-0.34386963,-0.10762766,0.08921233,-0.5705139,-0.114803426,0.15151149,-0.21851291,0.32618293,-2.8045163,-0.18918997,-0.1880236,0.3438596,-0.36039332,-0.17524824,-0.16743985,-0.2689048,0.29393238,0.45491067,0.40634638,-0.6712808,0.31573817,0.54525936,-0.38775623,-0.045670215,-0.4319671,0.051530045,-0.1908882,0.5960019,0.05245511,-0.17646663,-0.07344203,0.34207574,0.42825297,-0.08551493,0.059865322,0.2764784,0.22092246,0.03338178,0.36629677,-0.013264817,0.4971295,-0.115885355,-0.2170908,0.25451177,-0.20726734,0.11201512,-0.16538692,0.1165984,0.3390215,-0.27908713,-0.88370097,-0.55210805,-0.17983995,1.0947748,-0.3310657,-0.46956456,0.4315707,-0.43523982,-0.0973777,0.100488216,0.44388637,-0.04046567,-0.013532472,-0.7058899,0.36357656,-0.15080157,0.14913702,0.063169256,-0.044321317,-0.28319255,0.6760188,-0.09129922,0.5561408,0.25162166,0.22978045,-0.15307373,-0.38177168,0.13094571,0.6316496,0.40605417,0.10840314,-0.20145728,-0.17551139,-0.1428574,-0.34476584,0.17013834,0.38601393,0.63775223,0.0616539,0.10716956,0.06919976,-0.16583137,-0.08660764,-0.18582882,-0.23035093,0.12896803,0.1650863,0.4773941,0.53852,-0.36018926,0.43757012,-0.050545827,0.15110968,-0.16830514,-0.63582575,0.5789191,0.7971772,-0.18277289,-0.21716096,0.6579115,0.3105469,-0.42388472,0.33995023,-0.81151426,-0.23992325,0.52070916,-0.2497082,-0.31183183,0.18566367,-0.35106486,0.12765911,-0.73617005,0.23396407,-0.036958773,-0.47527802,-0.34565744,-0.34756836,-3.8936741,0.13104327,-0.2960149,-0.050230518,-0.041519817,0.06416848,0.29321855,-0.5741328,-0.48469648,0.17279415,0.018194227,0.57376534,0.034800522,0.086347915,-0.25821432,-0.09164173,-0.13774936,0.25452718,-0.07217509,0.37501648,-0.07894461,-0.5468122,-0.04434751,-0.073152415,-0.46483982,-0.0026819468,-0.6028709,-0.36557525,-0.24490817,-0.49806774,0.05291619,0.66724396,-0.16134758,0.022204872,-0.29236275,0.024899192,-0.22110555,0.37459272,0.2208115,0.05469084,0.14157984,0.08474771,0.017691517,-0.43621635,0.2476093,-0.012706732,0.30462307,0.3981675,0.006018609,0.061840605,0.5992919,0.52079654,-0.19418456,0.72728896,0.6033174,-0.21242818,0.35037655,-0.24721844,-0.12458932,-0.4750307,-0.5333065,-0.10113835,-0.3281584,-0.52455634,-0.11312131,-0.31058592,-0.7175875,0.3816784,-0.0010423899,0.2727101,0.10005762,0.075788274,0.38608322,-0.10474817,-0.096909,-0.025091164,-0.22675554,-0.6288399,-0.34932372,-0.4032225,-0.5185267,0.27987766,0.8358333,-0.17551391,-0.093036786,-0.10851801,-0.22802779,-0.32125142,0.027116176,0.22041363,0.26270905,0.2142795,-0.13751528,-0.62509435,0.43654177,-0.18082194,-0.11906057,-0.54809725,0.081680365,0.4132194,-0.5474838,0.44234422,0.24213572,0.2238848,-0.04788577,-0.4955767,-0.2765025,0.12833615,-0.21978925,0.42129698,0.03024272,-0.86823326,0.50874865,0.29243782,-0.32312804,-0.57018214,0.4565446,-0.11328093,-0.37374324,-0.13589387,0.33708572,0.10707751,-0.030177813,-0.3628707,0.19397749,-0.55107814,0.21306553,0.22434494,-0.15647568,0.54402834,-0.17041518,-0.24066612,-0.50323164,-0.07935725,-0.46113694,-0.23898989,0.04084819,0.0795825,0.09182118,0.08884533,-0.1488354,0.4427676,-0.22887649,0.097714804,-0.07276132,-0.31200975,0.30932277,0.42069384,0.3707404,-0.40015844,0.6449216,0.00030736823,0.040377658,0.017215466,0.057153787,0.5802938,0.19377418,0.43529505,-0.09274291,-0.0449601,0.33002174,0.9661921,0.20209248,0.4064799,0.14292297,-0.32311738,0.17935805,0.09430125,0.03482069,-0.0054808715,-0.37548053,-0.051774185,-0.13686393,0.27683115,0.47991142,0.31690514,0.2694192,-0.061973203,-0.29378784,0.2783443,0.13182975,0.082124546,-1.2095453,0.31369972,0.32401893,0.5442698,0.34032905,0.05759793,-0.094610244,0.69811004,-0.21496609,0.07416689,0.40925542,-0.18939985,-0.5943126,0.49025312,-0.70051485,0.4917439,-0.11258684,-0.0844049,0.17221728,0.15998983,0.23794064,0.7721849,-0.0026563844,0.006779309,0.022849003,-0.30439535,-0.002625068,-0.2438187,0.0021559636,-0.45909664,-0.359191,0.49837723,0.50849086,0.11784434,-0.10509611,-0.024316497,0.07885714,-0.03951012,0.08244583,-0.19198619,0.09573933,-0.17589077,-0.5968185,-0.38269183,0.46668735,0.3034379,0.20328824,-0.04783971,-0.09281362,0.25748524,-0.15859774,-0.12175682,0.015975077,-0.5793485,0.08849721,-0.1798217,-0.5619081,0.6776878,-0.24465476,0.3624044,0.08518101,-0.027204253,-0.3008861,0.49090147,-0.033371396,0.68873,-0.067001335,-0.017703746,-0.3377456,0.016614746,0.13794388,-0.17546077,-0.13212852,-0.30311787,0.03736017,-0.5934557,0.43529007,-0.18022205,-0.25083753,0.20256549,-0.32748285,0.09207278,0.442316,-0.014954076,-0.34564635,0.0141388895,-0.15446499,-0.31981885,-0.2237486,-0.19658905,0.29799044,-0.0058306833,-0.119568996,-0.13019241,-0.210242,-0.059074398,0.37980828,-0.084992565,0.31735742,0.30063623,-0.031850565,-0.20085564,-0.09626408,0.484767,0.44096896,0.0017415951,0.2734982,-0.027083572,-0.43807703,-0.43063775,-0.010915989,-0.14972925,0.32199106,0.22113034,-0.3800053,0.71380776,0.08724819,1.1106781,0.061417706,-0.3586419,0.24715382,0.46916518,0.15893093,0.119806886,-0.30532557,0.76708233,0.73395634,0.052263778,-0.23849179,-0.35839856,-0.21668401,0.33387795,-0.33371383,-0.038075868,-0.024761982,-0.7924507,-0.2502575,0.24864857,0.10085547,0.060595706,0.022208298,-0.04697315,-0.12125597,0.06626714,0.21898752,-0.5893863,-0.00405768,0.38346985,0.27153763,0.0723032,0.17977871,-0.5141306,0.5500243,-0.6467965,0.15044023,-0.2918003,0.19742697,-0.17986913,-0.22456628,0.2078016,0.083568424,0.38711017,-0.10566518,-0.28548527,-0.24956438,0.51999533,0.048101746,0.19634227,0.58110774,-0.27111292,0.13370919,-0.08407815,0.44529706,0.9449735,-0.29026952,0.039987557,0.30539054,-0.28707945,-0.80723757,0.35417932,-0.21888584,0.23573822,0.027368577,-0.28032753,-0.525173,0.23300551,0.09721539,-0.11278558,-0.014257888,-0.3427703,-0.26415756,0.068954244,-0.20220213,-0.15614696,-0.25614497,0.17007726,0.74278235,-0.32125765,-0.19015694,0.16854759,0.44349414,-0.1577391,-0.6474791,0.17400764,-0.1254169,0.41743007,0.1980445,-0.3721631,0.04961645,0.16579764,-0.45960334,0.15325975,0.3689147,-0.45030123,0.119898655,-0.26531383,-0.005699877,0.96503794,-0.07169805,-0.010397641,-0.75520396,-0.525858,-0.8381596,-0.39594123,0.2953061,0.23393002,-0.039777283,-0.5375771,0.0021755616,-0.13506956,0.10671555,-0.026974298,-0.6294441,0.43780333,0.008076872,0.35136992,-0.086061254,-0.78362113,-0.13163637,0.03828531,-0.1654337,-0.6300059,0.57936215,-0.2786627,0.879501,0.10346565,-0.04794926,0.20527667,-0.40244955,0.10821877,-0.29419273,-0.28694314,-0.6682914,0.039246812,441 +214,0.38652596,-0.1133988,-0.43247327,-0.06558145,-0.63056165,-0.026060645,-0.33389422,-0.096490026,0.50690854,-0.25420934,-0.34419835,0.01879453,0.019440738,0.21473464,0.0039238823,-0.44042426,0.013180369,0.36495963,-0.88250595,0.89232033,-0.38906452,0.22646569,0.18968433,0.48295468,0.18807422,0.23334843,0.27069312,-0.007845449,-0.3127365,-0.30909756,0.07389222,0.116916664,-0.694039,0.36475143,-0.420042,-0.370707,-0.07980586,-0.50207955,-0.18911679,-0.8320009,0.1422134,-0.9297409,0.5759879,-0.07918256,-0.11708448,-0.17255592,0.5546504,0.26055,-0.15617207,-0.18205366,0.28587386,-0.25173357,-0.4895119,-0.29203066,0.021211147,-0.28550455,-0.43374854,-0.10370984,-0.26422197,-0.008601991,-0.33217117,0.36791816,-0.20344052,-0.022109063,-0.2688122,0.55105126,-0.30566394,0.2720514,0.23731002,-0.19287401,0.073717274,-0.60679,-0.13889907,-0.1778646,0.35832042,0.21083452,-0.21147195,0.495286,0.40106142,0.53795695,0.3408164,-0.47206408,-0.2684901,-0.080507725,0.4007216,0.36167976,-0.18101178,-0.040123034,-0.25364912,-0.04082379,0.4591597,0.26187554,0.29850572,-0.42543405,0.06174077,-0.35111418,-0.02168812,0.53213567,0.42198056,-0.124843486,-0.03900575,0.18015558,0.53115904,0.40823942,-0.3306226,-0.081713244,-0.12092821,-0.5878302,-0.07687654,0.105725765,-0.028895162,0.43601266,-0.1598515,-0.030007469,0.70035523,0.0793887,-0.23991491,0.2453995,0.26001254,0.06888007,-0.30750006,-0.3720241,0.42030653,-0.56433874,0.067885734,-0.38536358,0.43833357,-0.022205738,-0.6355809,0.2645694,-0.6578093,0.30608985,0.028476255,0.52502835,0.7936027,0.52977484,0.4105033,0.8689445,-0.2190189,0.08479243,0.0045452835,-0.31189603,0.10762138,-0.44900268,0.19295746,-0.49784133,0.10126633,-0.36381906,-0.016796289,0.07097337,0.45759362,-0.5413605,-0.32386035,0.10601783,0.6921484,-0.21718672,-0.035334524,0.9243816,1.072231,1.4094803,0.08938178,1.279983,0.244484,-0.25098553,-0.34091997,-0.087018356,-0.7072143,0.2192064,0.33378616,-0.24851583,0.22139817,-0.094682805,0.04607869,0.40582636,-0.4532601,-0.25372612,-0.13737251,0.39184555,0.09304322,-0.11331882,-0.4375989,-0.24678345,0.10931419,-0.06517453,0.31697482,0.31215662,-0.22859277,0.40508226,-0.0260191,0.9255529,-0.20852627,-0.077297546,0.10696873,0.19640996,0.2551257,-0.25036505,-0.07031714,0.10456176,0.18813096,-0.12823766,-0.40284425,0.09531482,-0.34946424,-0.42603272,-0.086089745,-0.25505528,-0.35249588,0.14723593,-0.20282291,-0.3243208,-0.1508369,-0.16980682,0.4138034,-2.2841098,-0.16088858,-0.30812663,0.32139647,-0.35062736,-0.06631526,-0.07076599,-0.50174624,0.3148499,-0.0010163427,0.5645255,-0.48278695,0.5000686,0.5473841,-0.9068156,-0.18240331,-0.68904465,-0.12850715,0.15915368,0.50743103,0.006696681,-0.1835006,-0.009951339,0.20392206,0.6202642,0.174062,0.3062073,0.7792459,0.39736283,-0.06612911,0.41798934,0.14258222,0.6096933,-0.4216255,-0.25409478,0.47023946,-0.36427832,0.61544406,-0.17413782,-0.03101296,0.847046,-0.49687755,-0.7911469,-0.5688103,-0.15815005,1.0385529,-0.28002194,-0.5835322,0.0429224,-0.2389362,-0.03937678,0.22372094,0.59433067,0.011128727,0.09625486,-0.81570536,-0.09314318,0.123022035,0.21377611,-0.05787731,-0.047937755,-0.37075073,0.96035314,-0.08946707,0.48087198,0.33159408,0.3555049,-0.34925476,-0.2906875,0.23877177,0.6491576,0.48643726,-0.018074095,-0.34123522,-0.28447813,-0.16510585,-0.36246613,0.06146807,0.7095738,0.35329637,-0.26567513,0.106397554,0.27672347,-0.07173597,-0.00036301216,-0.36763304,-0.35486168,-0.21904966,-0.06703076,0.67550385,0.9411007,0.092963606,0.4350154,-0.12364534,0.24711244,-0.024580842,-0.74072593,0.6736853,0.77851105,-0.25962368,-0.1139773,0.5919392,0.4823923,-0.32264194,0.5985718,-0.5546407,-0.45569292,0.31354347,0.057697255,-0.44880906,-0.04750829,-0.3449964,0.2073965,-0.53158647,0.49833643,-0.5553144,-0.34472924,-0.5029566,-0.12392581,-1.2863462,0.39275083,-0.19431487,-0.049033143,-0.38676843,-0.08334788,0.13909088,-0.5070597,-0.85883194,0.178924,0.14450374,0.6453213,-0.15656191,0.20513707,-0.12674192,-0.45085984,-0.061176267,0.07917584,0.20445539,0.30557278,-0.20479682,-0.32990646,-0.001207606,-0.07368041,-0.33990914,0.01728791,-0.66590947,-0.68740237,-0.08556107,-0.43614033,-0.2604451,0.48796022,-0.57347757,0.15781109,-0.381406,0.00046070566,-0.0016563535,0.1197519,-9.4572704e-07,0.4577108,0.262424,-0.09025813,0.039898,-0.02923197,0.48055094,0.09355715,0.23180316,0.34400436,-0.15454578,0.2339471,0.31891313,0.9114038,-0.2568232,1.1464275,0.27994823,-0.06547157,0.14097808,-0.17046283,-0.49817386,-0.6692442,-0.1427642,0.13108698,-0.49088925,-0.33885816,0.12743202,-0.2615112,-0.90415394,0.73049664,0.11362118,0.2918469,-0.053355694,0.014899,0.40521082,-0.2106887,-0.14203697,-0.06589849,-0.19210745,-0.5373783,-0.38445032,-0.6580792,-0.42037347,-0.088582516,0.9794144,-0.27830786,0.098095275,0.2627443,-0.40393466,0.13460384,0.094811045,-0.23756412,-0.012197224,0.5341122,0.34607905,-0.67324984,0.33989325,0.17882991,0.11660053,-0.3247728,0.5808104,0.62590504,-0.50811756,0.6441533,0.51204675,-0.00087016023,-0.2314268,-0.70831907,-0.23502807,0.024419168,-0.32251033,0.55680645,0.33069086,-0.72041285,0.33843046,0.3017244,-0.5747073,-0.8465564,0.3929339,-0.09759892,-0.21381894,-0.07659977,0.41535056,0.125344,-0.011871616,-0.1852276,0.2302927,-0.3453175,0.4507321,-0.020308161,-0.15066192,0.029226955,-0.32234222,-0.45638102,-0.93234575,0.058690075,-0.5590398,-0.41846704,0.2923414,-0.065263845,-0.19282189,0.16344097,0.4837122,0.29213133,-0.1642301,-0.015654929,-0.29868945,-0.3750435,0.30699807,0.55320895,0.5381958,-0.3697337,0.553862,0.18142526,-0.21716604,0.10934145,-0.0825383,0.19299902,0.08310738,0.45043847,0.008629203,0.06881566,0.115263104,0.67241395,0.049600624,0.23479728,-0.0385655,-0.23239651,0.42131862,-0.16439062,0.4168226,-0.2739455,-0.45671165,-0.07575991,-0.11344138,0.030472675,0.530389,0.23019342,0.25360912,0.10093,-0.21570028,0.012304133,0.051719714,-0.06899258,-1.593081,0.40461487,0.20801617,1.0149279,0.69866055,-0.053101975,-0.14291154,0.89041406,-0.2801481,-0.0492872,0.3854216,-0.09967646,-0.37107357,0.61103326,-0.6159976,0.28246826,-0.32794517,0.019518351,0.04812826,0.2370192,0.25282595,0.78026354,-0.2241903,0.13127324,-0.32507998,-0.19453172,-0.020947166,-0.19318612,0.20054843,-0.2812566,-0.6332639,0.86534894,0.44544113,0.57615906,-0.39930883,0.047249626,0.04390707,-0.2785343,0.24097733,0.12416215,-0.09997587,0.04096062,-0.4932173,0.09701422,0.5753681,-0.37142316,0.0992013,-0.06285833,-0.17981052,-0.056032136,-0.22862308,-0.14758164,-0.10736946,-0.88449633,-0.108752996,-0.2642151,-0.32111886,0.21971779,-0.13510567,-0.11353455,0.14012466,0.014114801,-0.20446461,0.41404662,0.13786131,0.74664766,0.15236965,-0.10717675,-0.0073180515,0.28936383,0.16495815,-0.0827305,0.31649157,-0.099392384,0.2182552,-0.49873984,0.64888775,-0.13773306,-0.55058473,0.10990674,-0.09060254,-0.04770026,0.3939112,-0.19397224,-0.27014688,0.11903678,-0.17264065,-0.40158752,-0.025476066,-0.16436726,0.19714803,0.25611123,-0.09863881,-0.20758978,-0.24625872,-0.29887754,0.6009659,-0.041824803,0.46043497,0.4638656,0.013036823,-0.5718468,0.2384078,0.24756359,0.6328245,0.13555962,-0.2009621,-0.42613807,-0.25378305,-0.5075559,0.54099655,-0.101689555,0.12748829,-0.13891909,-0.25083652,0.9948016,0.008753519,1.2379973,-0.031522807,-0.32789642,0.07156811,0.5213665,-0.2195357,-0.021284968,-0.39894918,0.729767,0.50289375,-0.23387899,0.10067525,-0.59302765,-0.006963515,0.27043793,-0.44612178,-0.047198612,0.0069193305,-0.5783959,-0.2610239,0.031638123,0.20184389,-0.08135513,-0.20207088,0.06001658,0.19334932,0.15496905,0.45608252,-0.7229534,-0.3634826,0.25727904,0.376427,-0.15984543,0.079179175,-0.31032807,0.2351946,-0.7162055,0.20509095,-0.27493516,0.076440066,-0.28076553,-0.403029,0.06491148,-0.04917332,0.27678463,-0.5277999,-0.31326225,-0.19575523,0.41238514,0.17242132,0.07078169,0.69682604,-0.2727445,-0.00039522848,0.36512512,0.47927582,1.0335171,-0.37659565,0.01806319,0.280091,-0.40432614,-0.5286092,0.45819512,-0.34260422,-0.11101629,-0.008958801,-0.4917565,-0.5543863,0.12511404,0.22615841,0.16935375,-0.027552279,-0.7796648,-0.008251055,0.44229928,-0.2054121,-0.12864801,-0.18535402,0.113758534,0.41845804,0.038027413,-0.39849514,-0.029646715,0.18527724,-0.3010287,-0.54849946,-0.013045875,-0.55582017,0.3379396,0.0201564,-0.34006253,-0.20995663,-0.07626111,-0.6285207,-0.056808893,0.06504829,-0.24976209,0.17004985,-0.19323249,0.14032888,0.79273385,-0.24766506,0.17427997,-0.42405784,-0.5978081,-0.8487944,-0.2043115,-0.15940197,0.14562576,-0.073762745,-0.55543005,-0.11514707,-0.16200349,-0.30290714,0.21576889,-0.58707654,0.22720197,0.3512079,0.36743814,-0.30646998,-0.94601417,0.13474433,0.17408974,0.071185656,-0.38154075,0.4283121,0.06555453,0.7962765,0.12006923,-0.16156629,-0.16575459,-0.4238098,0.23145825,-0.28775874,-0.028972857,-0.5623402,0.0934923,456 +215,0.39893162,-0.27513134,-0.45944378,-0.033637475,-0.31174165,0.26648477,-0.224493,0.356489,0.21880385,-0.3677296,-0.18778022,-0.21917261,-0.015666299,0.2634962,-0.09231173,-0.4774355,-0.047826655,0.21653247,-0.5173281,0.4515332,-0.44078532,0.26600334,-0.063328214,0.412376,0.15309456,0.2570921,-0.008792253,-0.055902123,-0.05362066,-0.26638168,-0.2749125,0.2430659,-0.3473919,0.20338202,-0.1015409,-0.22325799,0.0652197,-0.422354,-0.40777,-0.68820816,0.22725011,-0.81209755,0.45772177,-0.04377501,-0.22556782,0.35324818,0.13568054,0.3632331,-0.16736025,-0.04956247,0.16705759,-0.18558596,-0.13328846,-0.1917452,-0.270501,-0.3576294,-0.44992113,0.09795694,-0.23023123,-0.16067824,-0.2355189,0.15160926,-0.2705509,0.018761834,-0.05412874,0.46874878,-0.30601978,0.27451274,0.31221452,-0.25124106,0.17435858,-0.49771416,-0.1186413,-0.048015308,0.38550365,-0.08570119,-0.11730423,0.17389669,0.30146295,0.4209674,0.0010551374,-0.17523393,-0.2591251,-0.102130145,0.045324706,0.5942576,-0.14265624,-0.21648288,-0.13628465,0.114829145,0.05810138,0.21948798,0.14486483,-0.22331055,-0.2449949,-0.08368589,-0.2674711,0.254949,0.34777805,-0.33047402,-0.16487056,0.3526753,0.5571198,0.23977055,-0.08728221,-0.0048523825,0.0716531,-0.50284415,-0.10649813,-0.004790632,-0.15850039,0.37719557,-0.17662899,0.3691246,0.72300684,-0.045431886,-0.049658794,0.058448814,0.06803334,-0.26643065,-0.27382573,-0.04959711,0.23008355,-0.35425338,0.23677579,0.030770082,0.7963149,0.13846442,-0.51164335,0.3559539,-0.5712607,0.21987948,-0.10773623,0.4822587,0.53590864,0.30366567,0.37139353,0.6759819,-0.33707675,0.11717863,-0.1794326,-0.47165075,-0.0365356,-0.08367948,-0.06046052,-0.52629334,0.2065585,0.06907559,-0.04102192,0.1264525,0.2719045,-0.53060853,0.008700303,0.1396578,0.91147447,-0.18850726,-0.22712971,0.72831833,0.83475804,0.81854415,-0.00662694,1.0660021,0.17482957,-0.24149957,0.07873664,-0.19690758,-0.66232646,0.32864732,0.38586494,-0.20422669,0.38650098,0.19956166,-0.06644816,0.43603453,-0.18984611,-0.06167204,-0.14852484,-0.028109057,0.07856913,-0.037909616,-0.5198077,-0.27372512,-0.050104942,-0.089382716,0.24605672,0.22143345,-0.036076196,0.4230078,0.018669853,1.799132,-0.05780097,0.09997327,0.11988466,0.33573535,0.17625989,-0.05208937,-0.13261737,0.45580044,0.27893108,0.14215712,-0.46542466,0.15939544,-0.17809767,-0.3679531,-0.054945447,-0.26906845,-0.14674467,-0.011225927,-0.33044305,-0.14661138,-0.22202727,-0.2811415,0.44051018,-2.9048626,-0.114695095,-0.14808077,0.22074631,-0.36624253,-0.32018915,-0.0496231,-0.39814112,0.25225842,0.26704434,0.40527192,-0.61520976,0.36392567,0.35251692,-0.5718573,-0.15775792,-0.5717426,-0.0729386,0.018649915,0.32428256,0.049137402,-0.034372076,-0.13838957,0.13248776,0.39441517,-0.0038037659,0.11595071,0.3449112,0.5279821,0.09504504,0.59190166,0.025965648,0.56188065,-0.18313059,-0.2122495,0.3508387,-0.25417817,0.41484064,-0.072116375,0.0296793,0.48722488,-0.37714463,-0.73803,-0.57176113,-0.20356987,1.2802218,-0.3405231,-0.39932775,0.14847206,-0.3305619,-0.22720289,0.04911542,0.36255082,-0.010599622,-0.1707747,-0.76806366,0.060309667,-0.0564972,0.14581588,-0.006008125,-0.15665272,-0.37109908,0.6903752,-0.051935576,0.5137524,0.27937967,0.1252403,-0.08957222,-0.26003167,-0.016127653,0.7371719,0.27461308,0.12980086,-0.2579992,-0.2489021,-0.40590897,-0.09828579,0.017798722,0.5672098,0.48952636,0.01285923,0.12920184,0.3028025,0.0856834,-0.017013645,-0.13327073,-0.1601449,-0.03469352,-0.14009802,0.55043024,0.60079676,-0.09728865,0.41562927,-0.004469522,0.35397857,-0.2046654,-0.41727942,0.36247647,0.8591955,-0.23617058,-0.29616565,0.5967297,0.45168218,-0.2656794,0.3099942,-0.5671007,-0.25499952,0.5312514,-0.123385,-0.3985906,0.22719416,-0.25162137,0.08263216,-0.84370273,0.15135676,-0.037137613,-0.45539805,-0.48404625,-0.05503636,-3.2090352,0.30708873,-0.23538037,-0.16736175,-0.13031547,-0.09521333,0.09416116,-0.5377744,-0.51578724,0.16059269,0.060392603,0.64026713,-0.15504518,0.18217164,-0.2527408,-0.23603755,-0.20915255,0.054963693,0.050098095,0.39482927,-0.16155007,-0.40006378,-0.040258866,-0.08711263,-0.2034186,0.05908637,-0.69939816,-0.47384608,-0.07847778,-0.59376115,-0.14721926,0.5510239,-0.28366405,0.04086101,-0.35878527,0.08169736,-0.23140584,0.18566613,0.05924351,0.0628555,0.01735398,-0.12132611,-0.03577683,-0.3254023,0.4026366,0.055012453,0.22655062,0.29084238,-0.10110746,0.1583989,0.36701238,0.6141685,-0.19294651,0.8114223,0.24473481,-0.108378075,0.2366868,-0.17659302,-0.2640036,-0.46747112,-0.2339651,0.0289984,-0.40519634,-0.5026208,-0.12572983,-0.3801171,-0.76402867,0.6103604,0.117247604,0.14931637,-0.06878074,0.28094947,0.6695011,-0.28130147,-0.0140015045,0.055956457,-0.16695718,-0.6156227,-0.25512788,-0.45694366,-0.29306838,0.19684696,0.8300785,-0.2801218,0.22451775,0.09034217,-0.38190684,-0.13054398,0.13537754,0.07461043,0.23391794,0.54984784,-0.1619323,-0.60564154,0.46174648,-0.24171187,-0.20488653,-0.50666124,0.17323564,0.5820857,-0.52922153,0.59021324,0.33588943,0.15899648,-0.04839502,-0.35985374,-0.18324202,-0.034226045,-0.24212125,0.33989725,0.29207394,-0.62531906,0.4116582,0.30437702,-0.07651488,-0.6494156,0.48401892,-0.08080585,-0.26448333,0.047655176,0.36993924,0.091836944,0.03672589,-0.10922213,0.06900466,-0.35913655,0.22178431,0.13003689,-0.096956864,0.16240555,-0.1367619,-0.0970874,-0.7089643,-0.04980938,-0.39079005,-0.3133087,0.1969718,0.058527194,0.06956775,0.14922647,0.09333031,0.32499954,-0.34554005,0.05793226,-0.09470393,-0.11205448,0.2883033,0.38767383,0.4385476,-0.4968958,0.59612614,0.09129074,-0.05996274,-0.031376578,0.01465379,0.40363452,0.01602726,0.42093906,-0.06018173,-0.21803604,0.25312933,0.7583265,0.101977155,0.42397854,0.019528484,-0.10915195,0.13003162,0.04310181,0.19717026,-0.09299179,-0.657623,0.06692357,-0.31019884,0.15070547,0.4350446,0.23953056,0.22007415,0.026894707,-0.39289463,0.033966172,0.055071868,0.009214874,-1.1022936,0.23403695,0.30982897,0.78558296,0.22168787,0.04225823,0.06260369,0.72273606,-0.23424512,0.057163604,0.34929028,-0.056265958,-0.45841452,0.45411018,-0.67973113,0.3916281,-0.090275005,-0.105162166,0.047478918,-0.07759573,0.36992353,0.76011974,-0.2517627,-0.063261345,-0.047101703,-0.29026002,0.03946118,-0.34358725,-0.01769081,-0.53949946,-0.30555883,0.5031242,0.6251201,0.41828716,-0.3122365,0.08994175,0.1255159,-0.05968712,0.06841978,0.1687198,0.042720035,-0.048429232,-0.698019,-0.030292857,0.4844853,0.05638198,0.16091548,-0.06465828,-0.24664369,0.3319135,-0.20422623,0.044570826,-0.1448844,-0.58275586,-0.06316691,-0.2785248,-0.5959435,0.27302346,0.010974821,0.24294277,0.2041748,-0.036586415,-0.18411733,0.4450825,-0.03411734,0.91232115,0.16219282,-0.15009643,-0.4391629,0.14359075,0.06881847,-0.14392696,-0.20295925,-0.37342948,0.07828246,-0.49417406,0.41015598,-0.00035152436,-0.44509727,-0.020900821,-0.10173389,-0.029982623,0.47202882,-0.09233283,-0.0775934,-0.07992127,-0.08524019,-0.31726468,-0.12874936,-0.119358525,0.24641673,0.17717521,-0.114004225,-0.17716551,0.02581381,-0.21816446,0.23543282,0.021883544,0.28908473,0.37721482,-0.028215058,-0.21923088,-0.11608362,0.09406569,0.5070717,-0.1546141,-0.19708855,-0.13187961,-0.44535434,-0.3014229,0.38252315,0.059480906,0.43438992,0.11873278,-0.08081896,0.65931576,-0.050016057,0.98457664,0.004440093,-0.29194355,0.057613246,0.44175225,0.0059262295,-0.062467977,-0.37255624,0.78833014,0.38859072,-0.026158221,-0.117158055,-0.4122087,-0.028936421,0.17094453,-0.13716987,0.06590886,-0.0012632052,-0.54495996,-0.3028504,0.22191606,0.1398873,0.31142533,-0.10148773,0.059711024,0.25849804,-0.05350331,0.377543,-0.36319768,-0.35844183,0.2126334,0.17757,-0.09338929,0.046696,-0.4691342,0.49632883,-0.5018467,0.11532046,-0.38710606,0.1572878,-0.26165643,-0.14244431,0.23678038,-0.14933348,0.43886903,-0.50001985,-0.2716451,-0.2880069,0.3627557,0.20421878,0.05490222,0.4884616,-0.30744162,-0.021608679,0.20551856,0.55646193,0.7610827,-0.18325427,0.17084439,0.4101085,-0.24469115,-0.44920558,0.31044826,-0.3394708,0.15677755,0.07482872,-0.17599398,-0.41126797,0.3702116,0.2308498,0.20239243,0.03328601,-0.5778696,-0.036837403,0.36554432,-0.24240042,-0.2126797,-0.2144662,0.0370155,0.5094787,-0.1490786,-0.43032658,0.050224468,0.06307737,-0.12970187,-0.45565835,-0.02391095,-0.2903218,0.3290081,0.02243137,-0.29006794,-0.18963,-0.0950929,-0.3865117,0.1462397,0.18085746,-0.33501577,0.09060943,-0.33784738,-0.09531889,0.8641667,-0.26351127,0.17074485,-0.5911338,-0.3106005,-0.6669511,-0.42356452,0.3000766,0.01137735,0.031152477,-0.42108622,-0.011915958,-0.16520678,-0.3302016,-0.050793275,-0.35648057,0.42547634,0.12137343,0.4616556,-0.07721111,-0.7750032,0.25263876,-0.027598495,-0.31900755,-0.5814077,0.463561,-0.12984724,0.66560155,0.049179256,0.07936774,0.30803075,-0.4521705,0.01691585,-0.24321891,-0.0626752,-0.80516076,-0.047899667,464 +216,0.5694362,-0.045545444,-0.6567918,-0.16152166,-0.39166275,0.0018534542,-0.2025833,0.534766,0.03863627,-0.58068836,-0.20792815,-0.3717796,0.06981537,0.47408772,-0.3724737,-0.8340614,0.11061323,0.10622995,-0.39202365,0.50145584,-0.44730175,0.47078595,0.18634887,0.32501885,0.26200092,0.15653175,0.3311375,-0.13024692,-0.34398207,-0.1911309,-0.108324386,0.32078496,-0.72230214,0.1393197,-0.32934442,-0.5654846,0.07851417,-0.32270595,-0.29330513,-0.84005517,0.30694386,-0.91152483,0.51341325,-0.15923618,-0.23596317,0.14728983,0.2834655,0.40178096,-0.20904014,0.06443634,0.11716759,-0.16554922,-0.13095458,-0.008097989,-0.39184144,-0.55909073,-0.6347715,0.1329393,-0.5670653,-0.24730816,-0.19617723,0.24799798,-0.3398357,0.05089439,0.0935219,0.4527336,-0.49371782,-0.03655938,0.38852826,-0.13805647,0.4887022,-0.53734726,-0.1574557,-0.24303418,0.24079219,-0.3143063,-0.16126718,0.31307808,0.41961893,0.43285763,0.058459684,-0.33690426,-0.27176344,-0.21016781,0.18493634,0.494751,-0.18826623,-0.56379014,-0.20818153,-0.016517513,0.30653659,0.37329707,0.29713675,-0.3158129,-0.07903948,0.0325079,-0.26331785,0.4756122,0.52664477,-0.23032397,-0.1417218,0.22359155,0.45854428,0.22639732,-0.17914693,0.16905712,0.07562078,-0.7192885,-0.1778873,0.19281892,-0.121832736,0.697498,-0.22266191,0.25773308,0.9327785,-0.2724339,0.15420313,0.015427204,0.021237902,-0.18667905,-0.30387154,-0.13220374,0.26376787,-0.74570835,0.054934446,-0.26093423,0.8243821,0.23680855,-0.60221225,0.25497615,-0.62610155,0.15484299,-0.22279929,0.49917072,0.5152369,0.36380064,0.23158789,0.59554917,-0.5169226,0.094676815,-0.0061039287,-0.55615354,0.024587043,-0.2585487,-0.1709692,-0.26491964,0.050577387,-0.07545142,0.12366561,0.064256035,0.61806995,-0.5330256,-0.11496716,-0.14558731,0.9690666,-0.42834598,-0.16172476,0.8795845,0.81578314,1.1187946,0.013124556,1.5365936,0.36042482,-0.13002534,0.087107584,0.051697426,-0.750873,0.36151406,0.3703942,-0.71594584,0.39005703,-0.09079264,-0.027910419,0.38555342,-0.3546127,0.100117035,-0.32270682,0.22854996,0.06073568,-0.16054402,-0.4601846,-0.28247404,-0.0245358,0.057271685,0.038846295,0.2606992,0.08761713,0.5411055,-0.06802724,1.5880955,-0.08125904,0.13467526,0.099474095,0.415061,0.3249755,0.048425045,-0.08574625,0.11099127,0.29650113,0.28552723,-0.45852357,-0.1320109,-0.29333696,-0.6580312,-0.30955347,-0.33189562,-0.118848085,-0.18446025,-0.6329572,-0.063443676,-0.1789582,-0.13315052,0.40237454,-2.2036738,-0.26487154,-0.22669211,0.29827932,-0.30443236,-0.3790379,-0.25211227,-0.6146263,0.6847127,0.3280901,0.53863335,-0.6835512,0.28991327,0.5407935,-0.39009902,-0.14215222,-0.6779359,-0.19242784,-0.05570994,0.107545115,-0.12406877,-0.22959423,0.13553128,0.1530127,0.6526268,-0.09071956,0.1306795,0.10841612,0.38031873,-0.030167906,0.5533865,-0.023380661,0.4938306,-0.38116512,-0.14643027,0.4494171,-0.26113644,0.22982273,-0.1011976,0.13486129,0.40130553,-0.5657818,-0.90987647,-0.7154313,-0.47931245,0.96021706,-0.0851903,-0.36519533,0.22734267,-0.11186109,-0.07209642,0.0027656397,0.34960216,-0.061800797,0.29029667,-0.7543672,0.02354443,-0.051277813,-0.061154533,0.053558,0.1165133,-0.3637019,0.58580405,-0.098105565,0.21500629,0.5473404,0.30110174,-0.4090695,-0.6384815,-0.0034111936,1.1455867,0.47410074,0.21043733,-0.394033,-0.25384638,-0.6328111,-0.18580763,0.006926947,0.45213747,1.0388315,-0.12356716,0.21587181,0.2820144,0.1511597,0.1824902,-0.14172688,-0.39611655,-0.057936795,-0.07209533,0.5374087,0.5290193,-0.12880313,0.6246079,-0.1743706,0.4996091,-0.14563355,-0.5275067,0.5137852,1.0851667,-0.25813758,-0.33103976,0.5569635,0.5536142,-0.32755914,0.5742542,-0.5823851,-0.44722813,0.62234956,-0.15531859,-0.5955569,0.30225095,-0.31492862,0.064557865,-1.0704379,0.38066757,-0.37314954,-0.25716257,-0.49047655,-0.3308787,-3.4224653,0.20862335,-0.25060907,-0.024794834,-0.24585867,-0.18734269,0.23903729,-0.6177775,-0.7722081,0.10074129,-0.0906843,0.7663236,-0.0066243648,0.28899378,-0.26008508,-0.2656857,-0.20333356,0.21012473,0.1969313,0.15820608,-0.09857491,-0.57334936,-0.023481274,-0.33546653,-0.563549,0.10508467,-0.66605085,-0.71694237,-0.21032622,-0.60977185,-0.41091475,0.75702184,-0.45806524,0.021797976,0.011723267,-0.045442645,-0.042591907,0.3876433,0.17269984,0.20082276,0.08146052,0.033284757,-0.028113969,-0.27631226,0.25965393,0.14084278,0.33432138,0.19251941,-0.17234534,0.3617272,0.5884174,0.78149915,-0.14923705,0.82120425,0.28184345,-0.028897293,0.33643007,-0.33393392,-0.45530263,-0.6963509,-0.31716177,-0.08062904,-0.45691442,-0.5209208,0.051162466,-0.38278368,-0.8395326,0.8080013,0.05453224,0.17349972,-0.15566581,0.19670945,0.34018523,-0.15582912,-0.1887927,-0.039628897,-0.07984843,-0.5691029,-0.2493794,-0.8363539,-0.7310105,0.02135911,1.1448365,-0.15287393,-0.12880261,0.00047286352,-0.07172527,0.10442982,0.110671885,0.0020067215,-0.046139017,0.34964854,0.020575562,-0.7822373,0.6030692,-0.05616985,-0.28616545,-0.584144,-0.029994993,0.74244773,-0.79164207,0.5150002,0.5590571,-0.024475146,0.021805732,-0.6554764,-0.014583544,-0.030517658,-0.29271114,0.59870833,0.08644864,-0.64893526,0.45745564,0.52890515,-0.34850532,-0.7322605,0.628178,0.076029174,-0.10696439,0.0806115,0.3802415,0.12152807,0.0021896164,-0.2655089,0.23153356,-0.5780228,0.1678379,0.47986373,-0.04138851,0.59878933,-0.12956911,-0.22104102,-0.9099701,0.13185428,-0.36196476,-0.2062635,0.1542663,-0.14435396,-0.16171265,0.25299913,0.06997255,0.3978914,-0.33267644,0.14926572,-0.219002,-0.21294504,0.39335486,0.47041887,0.51469547,-0.5206653,0.73330265,-0.08476596,-0.16304734,0.035882663,0.16385338,0.5520488,0.1185403,0.38841802,0.11244586,-0.16676359,0.19792883,0.8489735,0.10552221,0.5963798,0.19092256,-0.15851332,0.06372576,0.19248514,0.13121895,0.19728324,-0.48614424,-0.16688581,-0.12501852,0.059115663,0.5892159,0.105067015,0.48116416,0.0059654335,-0.33459935,0.0009852102,0.080878004,0.07515598,-1.3566903,0.30285266,0.22764717,0.8920843,0.40222946,0.091073014,0.048583522,0.3775204,-0.19113146,0.18655281,0.39360335,-0.11856291,-0.50294566,0.6919609,-0.57635915,0.5024783,-0.1783759,0.0110368375,-0.0037930012,-0.05435969,0.6135474,0.89854866,0.010507288,0.1140223,0.05447936,-0.23004971,0.30336332,-0.6266911,-0.10918453,-0.29183453,-0.11162158,0.73773444,0.49698284,0.18333739,-0.17900151,-0.045455106,0.1434399,-0.13051495,0.2667118,-0.09862111,0.18023509,-0.17006269,-0.48324153,-0.4592799,0.6445926,0.112227425,0.2215218,-0.06930779,-0.2679171,0.33825633,-0.10253001,0.22151624,-0.09406375,-0.73859125,-0.10993918,-0.5388996,-0.51947576,0.40642068,-0.06620653,0.2266729,0.21116644,0.030445836,-0.5238965,0.34703663,0.0012410044,0.6720889,-0.2766537,-0.36506838,-0.34387502,0.24630737,0.29574403,-0.43736014,-0.08887484,-0.23353502,0.073640704,-0.54015976,0.48328,-0.039863057,-0.36647052,0.07674026,-0.117581606,-0.20248102,0.54289925,-0.21788451,-0.10414974,0.16442111,-0.029093647,-0.25249073,-0.15226151,-0.11789094,0.18268143,0.23407531,-0.08502472,-0.09266079,-0.025917102,0.014579328,0.4339548,-0.13475773,0.43891767,0.44292685,0.07244816,-0.59632,-0.15169027,0.22511454,0.5440343,0.020658651,-0.069149986,-0.32812515,-0.3908347,-0.18009663,0.1944123,-0.17861442,0.2687419,0.2702864,-0.3332638,0.9500536,0.1831935,1.3382818,0.16496107,-0.4837237,0.057945617,0.44196382,-0.007693823,-0.11990871,-0.40256557,1.0953541,0.48434475,-0.3166872,-0.24361286,-0.42650408,0.08375989,0.18295123,-0.2508431,-0.37046131,-0.13178165,-0.6161125,-0.38914502,0.26980764,0.30756366,0.06765128,-0.21959805,0.045868803,0.22361161,0.06671004,0.475627,-0.6937468,-0.1336626,0.2703088,0.4327648,-0.07898669,0.045054156,-0.38731676,0.4192975,-0.46221238,0.033195946,-0.35589954,0.21616293,-0.20653062,-0.47860065,0.22097236,0.015150745,0.31411144,-0.23792733,-0.3243026,-0.26388216,0.39152676,0.115569495,0.1841967,0.67150855,-0.33367026,0.063769914,-0.047513787,0.62710446,1.309365,-0.29785246,-0.042742293,0.4945941,-0.30562392,-0.5963565,0.34882644,-0.49564323,0.21501279,-0.10385745,-0.3882588,-0.59803975,0.17356734,0.21764903,-0.06481422,0.20525083,-0.52402794,-0.07124679,0.37868994,-0.32311156,-0.37154058,-0.4894406,0.12808558,0.6414986,-0.2765657,-0.19058684,0.1702247,0.24600692,-0.21476075,-0.52790517,-0.06553994,-0.109370895,0.42539462,0.15812577,-0.25552,0.05898606,0.058731247,-0.4665165,0.26971608,0.31672874,-0.27228454,0.14687923,-0.17677666,0.050093874,0.9403122,-0.14880241,0.010554866,-0.4226775,-0.53928924,-0.90770394,-0.35637558,0.6093209,0.35292488,0.14260936,-0.5655623,-0.029381497,-0.12859195,0.06150277,0.09396294,-0.23745887,0.36145183,0.09000961,0.5220073,-0.15203851,-0.7947434,0.0057942867,0.16839121,-0.3035725,-0.6018902,0.5762491,-0.20163898,0.8294765,0.12866051,0.03559098,0.48364004,-0.48182756,-0.10671293,-0.20616667,-0.13502903,-0.69442344,0.014549955,468 +217,0.40264237,-0.1679899,-0.4802995,-0.16587515,-0.3385637,-0.122598335,-0.17884423,0.15004854,0.4015525,-0.098975085,-0.122951716,0.10523403,0.108599186,0.41238675,-0.036142685,-0.8389684,0.06586108,0.18451773,-0.7927752,0.62938124,-0.6026385,0.30705795,0.050622907,0.3586607,-0.13338585,0.3384333,0.2470652,-0.12651502,0.15894248,0.06733705,-0.037348356,0.40742412,-0.6940885,0.16403697,-0.15072492,-0.29120797,0.0013699974,-0.31999704,-0.35883293,-0.65369827,0.052788757,-0.83779615,0.61086464,-0.10236256,-0.27847534,-0.030789483,0.31547043,0.3263547,-0.39821205,0.03977517,0.14430091,-0.16071323,-0.2845145,-0.27838293,-0.0748302,-0.5678392,-0.52975965,-0.15292598,-0.7378346,-0.32457206,-0.37417176,0.15698227,-0.40398923,-0.034340993,-0.1590193,0.49490058,-0.467993,0.0693861,0.42905357,-0.13018341,0.33153114,-0.46483555,0.103470564,-0.034271635,0.36299297,0.08515073,-0.33168876,0.4535913,0.46132988,0.49434987,0.40377745,-0.46179172,-0.15472965,-0.2620904,0.19504209,0.14637883,-0.1289727,-0.47534427,-0.22798967,0.20194012,0.43463197,0.37168255,0.06701417,-0.37030327,0.058213223,0.04651204,-0.08579958,0.76853645,0.6561216,-0.3148426,-0.4586521,0.28744113,0.5400926,0.2352219,-0.26615295,0.08903926,-0.09365411,-0.5974342,-0.16592295,0.08152588,-0.09793986,0.5435093,-0.1489741,-0.066526,0.9434576,-0.26292762,-0.17151895,-0.014344088,-0.12173598,-0.16984482,-0.41598448,-0.090555936,0.17037673,-0.7166803,0.023040874,-0.3468689,0.5286281,0.22024134,-0.6375852,0.38217577,-0.6225869,0.18510556,-0.11241291,0.79707325,0.86218005,0.5771703,0.43639365,0.7727119,-0.2516052,0.217182,0.050815653,-0.56935245,0.10150441,-0.3254128,0.20252076,-0.4329255,0.14347376,-0.11034744,0.0734012,0.085888796,0.27662626,-0.55712295,-0.19565961,0.1894011,0.79215276,-0.251946,-0.08477225,0.74282825,1.1983415,0.98072374,0.017142685,1.3027227,0.4314759,-0.20012216,0.16040663,-0.3643107,-0.6324326,0.10922242,0.36723772,-0.027771624,0.4173622,-0.12919718,-0.10553925,0.27690157,-0.42829916,-0.054744843,0.03645568,0.69203764,0.15345676,-0.23056652,-0.4603467,-0.008741983,-0.017277567,-0.015804755,0.17543039,0.2086896,-0.21341361,0.37641633,0.053131886,0.9020494,-0.062506035,0.030403731,-0.1152656,0.60998845,0.3912758,-0.052451935,0.002091988,0.40899217,0.43053246,0.03163508,-0.63821244,0.21744363,-0.50723493,-0.3547179,-0.19217713,-0.46288604,0.0886047,0.05282236,-0.16833964,-0.122076795,-0.07247559,-0.18829711,0.487346,-2.7271113,-0.43160036,-0.15277363,0.32974333,-0.20026925,0.05458251,-0.04628582,-0.6105356,0.31303596,0.24420676,0.4496746,-0.5878092,0.559889,0.56634414,-0.7042741,-0.20820251,-0.7237227,0.008749434,-0.079438224,0.57016903,-0.065462366,-0.13022466,-0.092350975,0.28175557,0.74576443,0.14566132,0.1824383,0.48860988,0.3137966,-0.010853142,0.46728972,-0.013269965,0.61667764,-0.1638158,-0.1360174,0.3738917,-0.0631612,0.23167762,-0.24796392,0.025450626,0.7373124,-0.37363407,-1.0226855,-0.57299334,-0.25294617,0.99691457,-0.4323025,-0.5981588,0.20805521,-0.31898823,0.02989483,0.08152571,0.51482016,-0.031195957,0.20846108,-0.6984798,0.2817214,0.019241596,0.059979416,-0.0008292834,0.061655216,-0.29306775,0.70791173,0.0027418255,0.48814824,0.21141897,0.30796114,-0.20194016,-0.4094245,0.19896351,0.7243965,0.4610249,-0.14198421,-0.23805697,-0.29160976,-0.08953678,-0.09012641,-0.1162019,0.62386364,0.82184345,-0.2543752,0.051061127,0.3409057,-0.15528393,0.048176885,-0.23208478,-0.20457897,-0.09700008,0.15830947,0.41666165,0.80857646,-0.32378516,0.44817743,-0.25571215,0.2758323,0.2320409,-0.7453896,0.86601156,0.66774625,-0.23892625,-0.009428555,0.45488185,0.39534423,-0.48612964,0.623642,-0.6771604,-0.06891642,0.6992304,-0.1966953,-0.32750842,0.06889579,-0.26192525,0.1353365,-0.8691903,0.3266271,-0.39943114,-0.4998302,-0.34504732,-0.12775302,-3.6425161,0.30892035,-0.2862628,0.05915526,-0.38295072,-0.04279165,0.25471914,-0.6611821,-0.5877094,0.26642668,0.36803037,0.6639195,-0.18796274,0.15095739,-0.22626643,-0.3324293,-0.2104165,0.19815639,0.10099713,0.2077355,-0.17053273,-0.41506454,-0.01403478,0.11509439,-0.6910662,0.16829161,-0.43747824,-0.23969136,-0.12183391,-0.5644625,-0.24282815,0.5909234,-0.21675219,0.10820128,-0.33073172,0.13363484,-0.17158455,0.26759666,-0.026994854,0.23135492,0.29034585,0.034865927,0.14056556,-0.1978089,0.36183196,-0.17650212,0.48780957,-0.0007567763,-0.052789416,0.13261048,0.5345865,0.59983814,-0.066914655,0.8796711,0.4554692,-0.051919222,0.30856806,-0.29004657,-0.44903424,-0.7918664,-0.4638548,-0.1577936,-0.4680774,-0.43184605,0.07549201,-0.3712273,-0.83562976,0.6444734,0.0029356799,0.5948388,-0.1306425,0.35062495,0.50715554,-0.22746609,-0.020211438,-0.028579751,-0.27126104,-0.56844103,-0.16707583,-0.75737417,-0.48937505,0.17597456,0.797004,-0.48038006,0.06113341,-0.22747265,-0.17231701,0.019535951,0.19578744,0.098189086,0.2937029,0.5372142,0.03540136,-0.5914997,0.31664032,-0.055628855,-0.13960162,-0.61754143,0.26761684,0.7195384,-0.7770387,0.6353987,0.2705665,0.014424769,-0.06322281,-0.6677824,-0.21808268,0.03931054,-0.13507421,0.56758285,0.13026549,-0.9313913,0.6034678,0.27021593,-0.49770212,-0.5794212,0.35773066,-0.10855148,-0.2663315,-0.2126008,0.2784246,0.27975038,-0.019800669,-0.3955657,0.21825118,-0.4911017,0.27191678,0.1166403,-0.19984072,0.37733242,-0.0017712235,-0.34880814,-0.9019867,-0.18262109,-0.52948093,-0.2096619,0.242797,-0.14585882,-0.07349178,0.053852383,0.070988625,0.4181868,-0.20659043,0.23330545,0.015437833,-0.39694998,0.30882367,0.52060676,0.2341966,-0.30035153,0.581251,0.18466516,-0.27055562,-0.0729872,0.05937369,0.38695866,0.030509952,0.459898,-0.10667605,-0.15272735,0.33822125,0.62538356,0.076241724,0.38628012,0.14242738,-0.018508645,0.42223194,-0.012086492,0.18580872,-0.067156784,-0.35046992,-0.08083158,-0.15711002,0.1707714,0.60828024,0.5481842,0.27994165,0.13695367,-0.30547562,-0.033413336,0.26602995,-0.018843746,-1.3407369,0.5025725,0.30432996,0.8258727,0.4634705,0.14890303,-0.2510684,0.6962435,-0.1755028,0.08142104,0.60119706,0.050164707,-0.33969113,0.8420652,-0.6600982,0.29359716,-0.09641974,-0.033273146,0.15300956,0.19201978,0.2941261,0.9414423,-0.26637694,-0.0009395043,-0.19296323,0.031890508,0.16091847,-0.30636585,-0.10357095,-0.28125197,-0.43055546,0.6232706,0.32930854,0.2822669,-0.27511173,-0.08919775,0.1605299,-0.29356524,0.14910358,-0.17360216,-0.05493941,0.026408393,-0.38974056,-0.16568565,0.42394632,0.14332575,0.10950978,-0.21883012,-0.1299108,-0.10316682,-0.24408515,-0.21685001,0.012423986,-0.77624476,-0.06440873,0.033205662,-0.36507982,0.8470451,-0.31291613,0.097918384,0.15519004,0.036392026,-0.08737563,0.25788847,-0.0009627501,0.50689656,0.0663882,-0.3147925,-0.2345365,0.09990947,0.13711183,-0.27160576,0.18044646,-0.2926778,0.01966494,-0.51048726,0.57023895,-0.10606127,-0.2820379,0.16576494,-0.3169913,-0.00088473357,0.47804725,-0.1461518,-0.19200061,0.14841466,-0.25599733,-0.34453616,-0.24292348,-0.17681411,0.31818995,0.11786975,-0.11687513,-0.023234315,-0.18918686,-0.09051234,0.6321447,0.006842812,0.22169085,0.035454035,0.012289532,-0.13913621,-0.024021022,0.29861557,0.38044676,0.22473916,-0.011205125,-0.22849837,-0.321861,-0.3987836,-0.05001629,-0.019317485,0.13575663,-0.031625975,-0.30479184,0.93475723,0.26358253,1.2906178,0.017313337,-0.4342965,0.05821686,0.60550994,-0.10493471,-0.0013019105,-0.36613658,0.83893734,0.5547371,-0.14328977,-0.003948768,-0.57559264,-0.07534344,0.3483943,-0.47379225,-0.1374268,-0.110899635,-0.5551668,-0.447746,0.261144,0.18661141,0.04721183,-0.024330325,-0.053635262,0.00513889,0.054393817,0.51995367,-0.65040535,-0.15834548,0.09016817,0.26446426,-0.02076137,0.15654446,-0.29633945,0.40986907,-0.7441176,0.123767495,-0.2691026,0.097788915,-0.3343062,-0.4758188,0.18294725,0.040220723,0.2543623,-0.22073312,-0.48605564,-0.16058478,0.42471427,0.04549056,0.0036770504,0.710548,-0.29306373,-0.028941998,0.23719932,0.57139564,1.3411558,-0.34187216,-0.04408992,0.2913475,-0.5639336,-0.67906183,0.40670022,-0.47291362,0.015020418,-0.15354668,-0.42358112,-0.42419356,0.16900189,0.015539757,0.05446518,0.15059544,-0.6204142,-0.16018179,0.25396922,-0.24390006,-0.1122199,-0.28971785,0.3620259,0.81081414,-0.23847413,-0.36359996,0.17661034,0.30815956,-0.17797399,-0.60271555,-0.12922941,-0.18960471,0.33357424,-0.018445302,-0.34076518,0.06560121,0.2830579,-0.5635571,0.020346701,0.28085878,-0.2849933,0.18086338,-0.28658238,-0.0942934,0.8416429,-0.2508003,0.0146010835,-0.6066969,-0.48557863,-0.8587854,-0.4075348,0.07379707,0.17893726,-0.012194244,-0.48366338,0.06092388,-0.06576065,0.082846574,0.076963425,-0.53676605,0.25551307,0.04144881,0.58008575,-0.1678303,-1.1045245,0.00042969186,0.16893476,-0.0089258235,-0.77357864,0.7295714,-0.19708322,0.8021853,0.06801106,-0.09513078,-0.09980035,-0.3896207,0.08362843,-0.4190507,-0.15520318,-0.6910627,0.016965771,471 +218,0.47030336,-0.12382321,-0.43200123,-0.10787996,-0.31666964,-0.045495573,-0.29886252,-0.0057393215,0.28539732,-0.23917821,-0.1138192,0.032287005,0.005490287,0.18215059,-0.13292313,-0.65306973,-0.11636744,0.1447219,-0.6805506,0.8408645,-0.34412882,0.2941564,0.086771436,0.41297176,0.14035244,0.37761247,0.33090955,0.05532503,-0.058240794,-0.13951156,-0.04737824,0.1496028,-0.50030726,0.30747518,-0.13254887,-0.24069716,0.059921097,-0.3627982,-0.1941293,-0.75907934,0.15999056,-0.78499794,0.3869626,0.023792572,-0.14516428,-0.029927218,0.41226277,0.22549309,-0.32532245,-0.16217443,0.28483158,-0.22040492,-0.28885555,-0.27228928,0.110194854,-0.19554469,-0.37378946,-0.11044302,-0.48025802,-0.3023078,-0.23055,0.22586387,-0.33574283,-0.09194414,-0.102435365,0.48875037,-0.30935657,0.039108045,0.37999153,-0.34704426,0.09757417,-0.73246455,-0.17117085,-0.02953732,0.27428162,0.10828622,-0.09495786,0.45223674,0.119314566,0.33957565,0.31951702,-0.38803795,-0.18008515,-0.21238898,0.24219012,0.33937117,-0.17177013,-0.22086522,-0.19188349,0.093322195,0.21242398,0.3151699,0.25175476,-0.3252796,0.081558384,-0.3074439,-0.015702466,0.53585374,0.53082293,-0.11487128,-0.25159654,0.16666521,0.41710955,0.31224123,-0.20522642,-0.17757617,-0.13089126,-0.43956295,-0.23153816,0.09465303,0.084501535,0.30879217,-0.04399096,0.08179938,0.68984693,-0.046490442,-0.067063875,0.059866015,0.065924205,-0.021964995,-0.45074564,-0.17786215,0.39382643,-0.48979932,0.02538972,-0.34409046,0.59683824,0.03236767,-0.6288564,0.3225623,-0.4654854,0.1155677,-0.01711152,0.54116285,0.63873786,0.32638073,0.2344422,0.8358296,-0.2980549,0.073835246,-0.07781514,-0.2864107,-0.07788048,-0.06616335,0.31570658,-0.45035902,0.21842507,-0.16205911,0.26817912,0.052548204,0.09569286,-0.3689413,-0.18923952,0.26485267,0.7982805,-0.25392732,0.026975425,0.58984894,1.2129834,1.0012575,0.0003303965,0.9605588,0.0858284,-0.14907299,-0.21320334,-0.18485136,-0.6409288,0.19263858,0.39822438,0.2994529,0.25292623,-0.19229083,-0.14724661,0.30881223,-0.22752836,-0.18335511,0.013963699,0.38049185,0.16831703,-0.017850947,-0.41433632,-0.11954306,0.028140258,-0.15870208,0.2125004,0.19946294,-0.24939913,0.17895705,0.006854109,1.2886649,-0.29690397,0.1544307,0.2513698,0.38195366,0.29637802,-0.064860485,0.046371922,0.4045496,0.30369377,0.038386367,-0.39843026,0.23978344,-0.38048786,-0.5190824,0.0063522756,-0.3915844,-0.16208294,0.26756752,-0.35068992,-0.11032726,-0.10739317,-0.12030192,0.27758357,-2.9376643,-0.10380237,-0.16189797,0.24158047,-0.33441848,-0.103581905,0.045619685,-0.41782892,0.4191181,0.16285749,0.48837617,-0.47192398,0.37869474,0.5534115,-0.6130695,-0.0994754,-0.50511754,-0.035105307,0.03381056,0.57454795,-0.006147424,-0.23159024,-0.09327661,0.32564506,0.53936744,0.2717692,0.12019763,0.5253094,0.37321794,-0.13043651,0.53590786,0.025582092,0.4707106,-0.41828945,-0.15935649,0.37404498,-0.27766985,0.4952207,-0.21099456,0.06511244,0.6093656,-0.26741073,-0.77248496,-0.37330583,-0.31275722,1.0384653,-0.40115225,-0.6547409,0.19970585,-0.07321348,-0.04142379,0.0048542065,0.46735448,0.0287352,0.22637078,-0.67256665,0.18632777,-0.19419362,0.25391018,-0.028424911,-0.045752898,-0.5811668,0.83850235,0.036520947,0.6724111,0.30365753,0.33806622,-0.2530914,-0.2921957,0.14048833,0.6794681,0.34818634,-0.08094124,-0.084546454,-0.14727281,0.096137956,-0.29252782,0.09165815,0.71714425,0.5451957,-0.080865875,0.13629359,0.28111008,-0.0014202555,0.0393824,-0.030639656,-0.24427687,-0.22061807,0.021524465,0.4547795,0.7199711,-0.11166605,0.2989497,-0.04100675,0.354047,-0.009013606,-0.51691926,0.54293483,0.42437935,-0.18236552,-0.10180202,0.61028737,0.46645936,-0.3818508,0.46439382,-0.5938354,-0.2577843,0.5333914,-0.20111643,-0.39023834,0.13437746,-0.33438575,0.06354568,-0.6771197,0.25497347,-0.3282618,-0.15515219,-0.47706768,-0.17354825,-2.8039384,0.13186206,-0.26118222,-0.07980277,-0.40595323,-0.11011651,0.14879677,-0.51034164,-0.6257267,0.28858036,0.20343968,0.56465054,-0.1392574,0.17549817,-0.2110906,-0.19576403,0.10569927,0.33166885,0.004492915,0.24676204,-0.09773184,-0.24426739,-0.13837244,0.15881017,-0.42587057,0.14581485,-0.42331377,-0.44050542,-0.090379745,-0.4728394,-0.14113645,0.55961055,-0.2815408,0.02760228,-0.24617685,-0.02961019,-0.13426287,0.012797316,0.16607136,0.41780454,0.13309114,-0.0055924216,0.0133326845,-0.2553809,0.40099776,0.09869549,0.27054068,0.2710856,0.0067336964,0.11159813,0.08274969,0.5941608,-0.1989284,0.80283934,0.15692739,-0.030454764,0.33128726,-0.278935,-0.36638066,-0.68152267,-0.22147924,0.09644888,-0.28583616,-0.53466445,-0.12384317,-0.26952636,-0.723726,0.56330806,0.018342761,0.42829463,-0.13614883,0.14142103,0.40419525,-0.18961406,-0.14288162,0.08609458,-0.1363856,-0.38276762,-0.20161219,-0.66264313,-0.38842118,0.042569347,0.59465504,-0.34669897,0.063829824,0.16208805,-0.28983596,0.042587135,0.05615646,0.11304732,0.14866382,0.53490514,0.3787939,-0.56459373,0.55026984,-0.034878317,-0.10549453,-0.3415631,0.26898178,0.5184943,-0.46782383,0.6232356,0.29802486,0.009802962,-0.23468809,-0.55343753,-0.21195044,0.1728758,-0.20560642,0.57113236,0.22781888,-0.7315177,0.46654415,0.25922376,-0.38590783,-0.692561,0.28727564,0.041224837,-0.45729315,0.026143724,0.35880896,-0.03680621,0.021831274,-0.039615728,0.25768363,-0.32829374,0.22524339,-0.02661035,-0.064226195,0.2302323,-0.07636175,-0.3981028,-0.5385476,0.14268026,-0.5128967,-0.38191268,0.43933782,-0.1663895,-0.24006179,0.16179769,0.12841697,0.45186406,-0.18896645,0.2358978,-0.07054364,-0.27432343,0.34671846,0.52014846,0.43073317,-0.5410951,0.42240062,0.17932945,-0.18451977,0.30551916,0.08912828,0.41089332,0.06353755,0.22521213,-0.2824908,0.093319535,0.22239552,0.47275847,0.11956131,0.24117169,-0.03295285,-0.17114744,0.42410502,-0.08698741,0.17637524,-0.10285983,-0.5775597,-0.053677734,0.08866464,0.11050888,0.40767708,0.39131305,0.29940793,0.19047739,-0.23478274,0.0256391,0.25271493,-0.12852639,-1.0528485,0.50462836,0.11280503,1.0054989,0.48177993,0.07846915,-0.15995571,0.60223866,-0.13273205,-0.014953659,0.31004703,-0.09144094,-0.46465594,0.83458066,-0.19363855,0.24718536,-0.14867072,-0.047913425,0.018456837,0.05020195,0.22127247,0.6428595,-0.29292932,0.06353542,-0.23844801,-0.056788135,-0.099622406,-0.2565548,0.021396257,-0.12123122,-0.60265654,0.550267,0.401275,0.4201867,-0.29050907,0.054774225,0.012377064,-0.23867856,0.103356205,0.060058594,-0.107949145,0.1811686,-0.40326855,-0.16319723,0.6731566,-0.29047737,0.13636188,-0.17894024,-0.18244092,-0.09232155,-0.04122754,0.07138678,-1.9425153e-05,-0.76484436,0.17513342,-0.21104869,-0.46381262,0.32010728,-0.32179075,-0.017126737,0.18861757,0.032146133,-0.13840438,0.28038058,0.13554975,0.72477186,-0.042426016,-0.14977105,-0.3147482,-0.0408451,0.03850789,-0.15080936,0.177581,-0.25458524,0.20394757,-0.6047825,0.6816853,-0.10510604,-0.38074145,0.07370193,-0.24582325,-0.06092384,0.5309495,-0.13157865,-0.13862595,0.051736522,-0.22265993,-0.41893435,-0.14890173,-0.2975327,0.19590974,0.3068139,0.042323697,-0.10705698,-0.2705095,-0.23052618,0.43632132,0.04117399,0.4118611,0.24608612,0.08545904,-0.30646548,0.22496013,0.22636904,0.46816912,0.11845934,0.0035791874,-0.3174936,-0.42486572,-0.41038027,0.47694066,-0.103052236,0.07016414,-0.12733015,-0.32926908,0.9294547,0.08182379,0.9798088,-0.029839583,-0.2829137,-0.01267459,0.41821158,-0.38664955,0.0014038205,-0.3021614,0.92593056,0.53017545,0.026752762,0.063498065,-0.43599644,-0.040578965,0.27317008,-0.47614065,0.1083906,-0.14000839,-0.38277033,-0.454651,0.1047108,0.20991118,0.035671305,-0.2523863,-0.13136911,0.050349046,0.22235523,0.405712,-0.6843719,-0.28448927,0.066416614,-0.012993407,-0.17843069,0.22112706,-0.40248844,0.4811987,-0.70605177,0.3352693,-0.62764823,-0.03971332,-0.14437507,-0.2290132,0.019431893,-0.17385188,0.30895475,-0.5501502,-0.3465805,-0.08776433,0.16470076,0.14932217,-0.0019922291,0.6394512,-0.18697913,0.2084384,0.22602068,0.60304046,0.9122563,-0.27982897,0.0050390563,0.024264129,-0.43281466,-0.5782881,0.2209219,-0.23682334,-0.19622773,-0.20594765,-0.45337477,-0.42305267,0.10870511,0.18522808,0.12343751,-0.0001959006,-0.7729304,-0.20786247,0.27740154,-0.22727199,-0.25421098,-0.24691932,0.11886832,0.69378656,-0.10741542,-0.20928262,0.03261651,0.08752545,-0.12952584,-0.61705554,-0.0052858195,-0.30612105,0.36797503,0.006764652,-0.14068452,-0.32526004,0.1156328,-0.5311716,0.11612766,0.12631108,-0.25387356,0.0077846926,-0.06559841,0.010169395,0.8510865,-0.08765635,-0.0126039665,-0.6141083,-0.46034253,-0.77730817,-0.43219388,-0.15997785,0.046831507,0.063703306,-0.40754193,0.01719188,-0.309379,0.026767237,-0.0659427,-0.3925048,0.15180531,0.15214032,0.5109432,-0.43177038,-0.8273869,0.21565224,0.15370144,-0.042857815,-0.38572964,0.53017956,-0.0594554,0.65357345,0.05928616,-0.15313295,-0.01051596,-0.46236676,0.15513134,-0.32522982,-0.10407261,-0.7575789,0.13852435,478 +219,0.5565596,0.001014638,-0.39452943,-0.10205022,-0.2806684,0.2514066,-0.24811004,0.3062008,0.22566423,-0.3634821,-0.024679966,-0.10519368,0.06715044,0.13678767,-0.10071471,-0.4392462,0.012023584,0.20153719,-0.6624418,0.78134364,-0.20048006,0.31373346,-0.0863777,0.2886173,0.26701933,0.3751425,-0.0018278281,-0.109060444,0.08950884,-0.17216259,-0.21932332,0.12284465,-0.5530083,0.26651025,-0.20567025,-0.14571913,-0.044920865,-0.29647195,-0.31605455,-0.772935,0.23730183,-0.83639544,0.4961613,0.002967002,-0.30208358,0.15355358,0.39226705,0.2700983,-0.16980138,-0.039603658,0.14487073,-0.2311276,-0.05442745,-0.14529628,-0.17175217,-0.4834022,-0.5478736,-0.16690132,-0.562111,-0.16771163,-0.48308524,0.21976046,-0.229923,-0.06839485,-0.10650604,0.45634142,-0.40165532,0.3422474,0.26433203,-0.19517508,0.22845072,-0.46133268,0.032179203,-0.20071827,0.4602693,0.077383325,-0.09353827,0.33593082,0.16309503,0.2966157,0.20231646,-0.17203331,-0.36772,-0.17743604,0.16726777,0.386844,-0.13259348,-0.22328593,-0.13034287,-0.041871503,0.19496737,0.28850573,0.14811665,-0.17132749,-0.13695696,-0.18250886,-0.12455538,0.5237429,0.4143058,-0.2733456,-0.16397524,0.464641,0.6814518,0.28583857,-0.27510312,0.17140417,0.07979922,-0.3765202,-0.1404794,0.2069309,-0.1441841,0.38116995,-0.10828586,0.20025219,0.7454322,-0.08242383,0.003189977,0.016902555,0.028587364,-0.076067075,-0.14237013,-0.2207287,0.2776535,-0.55504376,0.28471035,-0.20622204,0.6982969,0.1722763,-0.47217277,0.27559844,-0.6603091,0.13191028,0.058897413,0.50102746,0.6900408,0.58794576,0.277227,0.8420978,-0.29676828,-0.015329782,-0.18593569,-0.2936049,0.13896431,-0.28373146,0.104763635,-0.40610632,0.13544385,-0.14360183,-0.05176534,-0.04187589,0.35587972,-0.47548848,-0.14097333,0.053512465,0.9155363,-0.24317786,-0.07727809,0.7919911,0.9625138,0.98141986,-0.021779247,0.8720299,0.11247955,-0.31919867,-0.037246782,-0.27294254,-0.5120315,0.2988402,0.25200033,0.17004435,0.3131504,0.16637413,-0.023090772,0.26101035,-0.4458696,0.0017499209,-0.054721642,-0.0002966881,0.13476764,-0.026597532,-0.31129983,-0.24380137,-0.04900132,-0.023709033,0.33241406,0.09723968,-0.22426198,0.4231661,0.18082695,1.6020249,-0.0547217,0.15313055,0.18412256,0.51544094,0.23042901,-0.043775834,-0.17784038,0.5068665,0.23921238,0.2522454,-0.5319441,0.26436108,-0.33466884,-0.36099002,-0.042726222,-0.4251827,-0.16288668,0.03358221,-0.28307423,-0.11823023,-0.092441835,-0.405771,0.43041328,-2.8306253,-0.07392807,-0.1145712,0.44754502,-0.217266,-0.081353836,-0.081167124,-0.48721343,0.21003816,0.2673691,0.39298025,-0.5746794,0.40002587,0.5803181,-0.7053322,-0.09355271,-0.48051426,-0.12873097,-0.06602333,0.4449786,-0.003792413,0.021664698,-0.051151354,0.25068027,0.4888807,0.0905791,0.15790042,0.43314478,0.33533624,-0.18184546,0.6439336,-0.056554716,0.41554984,-0.22596039,-0.22199942,0.3070428,-0.40896252,0.35123,-0.15150723,0.05218337,0.57322043,-0.37014818,-0.9044865,-0.5964401,-0.06167831,1.0840732,-0.3701391,-0.5276752,0.19910583,-0.42822555,-0.25000075,-0.040012337,0.5978554,0.039152972,0.02140624,-0.692407,0.05445837,-0.12935044,0.34284163,0.047389325,-0.039191406,-0.4067235,0.7551787,-0.022685679,0.64650434,0.06633422,0.15584382,-0.31677362,-0.5512352,0.052156396,0.68443215,0.32999796,0.018397637,-0.32295278,-0.19650653,-0.30369613,-0.0824622,0.061167736,0.7001484,0.439401,-0.15422884,0.15945773,0.34338838,-0.14527005,0.095101476,-0.2655562,-0.34933332,-0.07440605,-0.15720804,0.3919157,0.66076505,0.013529015,0.3315768,0.10575512,0.4154255,-0.12153879,-0.49202988,0.45450088,0.7359192,-0.24859677,-0.2780832,0.66113824,0.46690273,-0.10077245,0.50858814,-0.66406316,-0.27397364,0.543147,-0.1228115,-0.54515076,0.14235385,-0.3079553,0.16386385,-0.69163394,0.12923545,-0.3975081,-0.5556571,-0.26057488,0.087407865,-3.3762577,0.12447238,-0.21019082,-0.19468693,-0.2502053,-0.10398283,0.1742851,-0.5340776,-0.6259345,0.040173195,0.0991522,0.70143026,-0.25923645,0.07641177,-0.31579062,-0.41359165,-0.28982598,0.31573611,0.029007895,0.40743822,-0.24325815,-0.41231102,-0.08611085,-0.004247512,-0.31361067,-0.10143534,-0.5348637,-0.30053625,-0.115518026,-0.48985875,-0.2635148,0.6198047,-0.24485391,0.11988519,-0.3054697,-0.06875708,0.014686712,0.2813327,0.17083628,0.11297465,0.096010916,-0.07539725,-0.09969567,-0.20441015,0.38780203,-0.05072358,0.2258125,0.294024,-0.09015414,0.18772344,0.45011356,0.50179106,-0.17580834,1.0423039,0.2971355,-0.14233555,0.3757504,-0.18318197,-0.3706164,-0.6034339,-0.16539663,0.066200264,-0.3955898,-0.4234204,-0.21054031,-0.36241144,-0.86686337,0.56962806,0.07732786,0.34917447,-0.06137536,0.2368003,0.63127786,-0.29724208,-0.07930647,0.1097428,-0.22851999,-0.5608085,-0.06558181,-0.5648476,-0.42144352,0.15351343,0.76937795,-0.5304941,0.080068834,0.17058153,-0.30259132,0.027632337,0.2256319,0.07996328,0.19740209,0.593881,-0.079950385,-0.50300467,0.5649126,-0.25457147,-0.12995185,-0.569021,0.34534058,0.6686257,-0.728349,0.48995253,0.25716186,0.00034776528,-0.41193613,-0.5337886,-0.076362155,-0.18756442,-0.19862194,0.38194525,0.20623474,-0.8936212,0.18158813,-0.0128142275,-0.19752786,-0.7382225,0.5942086,-0.1641398,-0.3466717,0.031827632,0.43952453,0.11489895,-0.014067594,-0.20384963,0.09091962,-0.42569244,0.24528852,0.20657666,-0.12523662,0.2956799,-0.22260815,-0.20744921,-0.7358882,0.09697333,-0.48084825,-0.26980317,0.47813836,0.091024645,-0.09443197,0.3397319,0.087874934,0.3648707,-0.1629006,0.105427906,-0.104829066,-0.0859797,0.50651646,0.5087295,0.40387884,-0.53560066,0.663229,0.087092526,-0.18985817,0.19209221,0.13020107,0.31715918,-0.11710718,0.6547695,0.0895999,-0.21247967,0.29330498,0.6103923,0.22144876,0.2858406,-0.0035787423,-0.15542601,0.17794551,0.12123504,0.30031157,-0.040972367,-0.73878765,0.084267505,-0.350545,0.106483124,0.43828896,0.1315311,0.23272608,0.023804126,-0.36880767,0.020903386,0.1505939,-0.17040902,-1.2632378,0.29644737,0.30662337,0.94967043,0.3770173,0.07921381,0.019584406,0.8563141,-0.17099245,0.0741104,0.34174082,0.14633815,-0.44162452,0.62062305,-0.85102785,0.4239444,0.04819463,-0.08636169,0.11984114,0.018904828,0.4140892,0.76016915,-0.2510807,-0.081790365,-0.105447024,-0.39056093,0.270441,-0.3479864,0.10570372,-0.52056056,-0.4715854,0.48564994,0.50990295,0.4731695,-0.1972195,0.05594609,-0.07918159,-0.12327822,0.23353821,0.15017897,0.054240204,-0.19241914,-0.56382245,-0.1481204,0.57486284,-0.3003273,0.10146518,0.032356147,-0.16381626,0.28990656,-0.08787267,0.07811465,-0.14074747,-0.6749861,0.049375717,-0.14588541,-0.3829723,0.54236156,-0.07821553,0.32192785,0.20241661,-0.061381463,-0.15369691,0.59076345,0.06567837,0.57159495,0.08319429,-0.042405583,-0.37434617,0.2084994,0.15771252,-0.21933502,0.04690043,-0.15954584,0.17712136,-0.5717495,0.4328825,-0.22294684,-0.43317923,0.0067470195,-0.18518928,-0.006211537,0.63330495,-0.05425,-0.227042,-0.16825113,-0.12905437,-0.357712,-0.29674903,-0.12548338,0.07270065,0.21549359,-0.13365367,-0.20918849,-0.119295925,-0.16186818,0.26028237,0.069605194,0.49336928,0.22844149,-0.067051075,-0.3090594,0.09382091,0.3175434,0.46209946,-0.022948574,-0.019369427,-0.12738104,-0.56994045,-0.5597131,0.22794189,0.037833616,0.2962376,0.13320015,-0.14221494,0.81448555,-0.20014653,1.0671436,0.13923642,-0.35873163,0.24475415,0.5818163,-0.036068074,-0.11772822,-0.33370668,0.90548426,0.54589725,-0.07942363,-0.06478038,-0.28817686,-0.096708044,0.08135331,-0.273225,-0.06489112,-0.008814188,-0.50204283,-0.010261583,0.15584472,0.23855467,0.24352536,-0.17741965,-0.09196485,0.2610336,0.0347062,0.23413117,-0.42212582,-0.3583519,0.37200195,0.13065995,0.041174565,0.075345956,-0.3684381,0.51740175,-0.44131315,0.1036541,-0.44811124,0.18957087,-0.3058061,-0.29408118,0.26651117,-0.01684734,0.3719679,-0.37931675,-0.35730037,-0.27596468,0.36024266,0.3236111,0.14777349,0.6046576,-0.23734204,-0.005022588,0.031690706,0.5036472,0.6563694,-0.29987144,0.0042250515,0.2826678,-0.4143149,-0.6429402,0.26464683,-0.44847286,0.07655353,0.1636629,-0.23060669,-0.31237724,0.24221581,0.073820226,0.064866945,-0.00035971802,-0.8087186,-0.16521874,0.08795827,-0.18909802,-0.17043617,-0.26678938,0.1771544,0.52459,-0.27464774,-0.41073525,0.08429897,0.1124145,-0.10537586,-0.74380016,-0.180296,-0.28389937,0.31253582,0.002023856,-0.32355502,-0.0919795,0.21620461,-0.57038474,0.1961173,-0.03952004,-0.29273683,0.04299965,-0.28345966,0.020231605,0.787958,-0.31959313,-0.123534456,-0.46743917,-0.4127839,-0.8110569,-0.2859067,0.15664919,0.2228241,-0.021096965,-0.45638457,-0.125491,-0.22584338,-0.067909926,0.012375092,-0.57798386,0.40289906,0.14047,0.4398155,-0.105975464,-1.0128057,0.2804725,0.009341021,-0.19815612,-0.7327353,0.43498433,-0.21123073,0.7607819,0.11017787,0.07734346,0.21936718,-0.53031856,-0.034036182,-0.24109516,-0.039126635,-0.6918738,0.011636992,480 +220,0.41734442,0.032107465,-0.364383,-0.25434116,-0.31611258,0.13663131,-0.14266853,0.20950963,0.23545246,-0.24931218,0.04150709,-0.098652475,-0.08477325,0.3182973,-0.12393169,-0.8945287,0.01030964,0.077589706,-0.6556323,0.3013976,-0.65162724,0.44278318,-0.008824845,0.38407022,0.06356993,0.17263816,0.21055596,-0.15930709,-0.012525376,0.12156153,-0.2265851,0.2817343,-0.29606524,0.15154846,0.10988108,-0.2612451,0.117799595,-0.28944728,-0.28138685,-0.6335317,0.41919738,-0.59597605,0.45109928,-0.043896746,-0.30002818,0.037377674,0.10064909,0.3188865,-0.33438513,0.079246715,0.17226568,-0.24693012,0.036236834,-0.2021506,-0.35478926,-0.45924333,-0.5644122,-0.038965657,-0.56108195,-0.23079206,-0.33412108,0.2533205,-0.34071064,-0.006980101,-0.15593949,0.394797,-0.2764689,-0.00031154155,0.40935323,-0.11275485,-0.03064653,-0.31782553,-0.13119921,-0.1074595,0.1820878,0.09629426,-0.22312202,0.27598968,0.40000474,0.5128987,0.018037518,-0.35320896,-0.17016882,-0.099013075,0.009405152,0.58429044,-0.16730422,-0.20264015,-0.23394765,0.042656757,0.06903614,0.22369912,-0.032147296,-0.3537906,0.076079085,0.15081613,-0.30502367,0.36943296,0.46556023,-0.44589356,-0.2599653,0.2909275,0.4285552,0.04843103,-0.21173699,0.13990706,0.04079827,-0.51403135,-0.22921304,0.37316486,-0.056392193,0.48360792,-0.119490676,0.1432643,0.7523906,-0.1556934,0.05249833,-0.22229895,-0.009507533,0.08328617,-0.43152,-0.15951003,0.052070513,-0.5091399,0.039126977,-0.2727074,1.0884264,0.21335483,-0.81835014,0.43780506,-0.54061186,0.15408255,-0.21127032,0.6040577,0.8256864,0.2185546,0.2610691,0.875517,-0.56027275,0.015749995,-0.05623114,-0.3301946,0.042662553,-0.040633313,0.13845341,-0.39705893,0.19201492,-0.07857264,0.06858122,0.025433216,0.2089569,-0.37709013,-0.14044315,0.015652705,0.787912,-0.45706284,-0.058766555,0.5977118,0.93756014,0.83390737,0.06613851,1.3614888,0.48435095,-0.22961117,0.12218382,-0.50305927,-0.4409407,0.17012812,0.2721626,0.111680046,0.28193656,0.11574253,0.0031500577,0.49559408,-0.32864246,0.055018116,-0.068747304,0.17546192,0.10336504,0.030275583,-0.4112853,-0.26887062,0.14286469,-0.084532954,0.14306515,0.24072647,-0.23894222,0.18229917,0.022856057,1.5050857,0.13544154,0.093968056,-0.016281486,0.3972023,0.21210776,-0.06153575,-0.013180212,0.24651736,0.39821658,-0.17159064,-0.6285613,0.037964236,-0.33896497,-0.34201044,-0.22458461,-0.36216062,0.054853033,0.038762208,-0.4830969,-0.071849465,0.04667924,-0.19025213,0.42786208,-2.532677,-0.27716866,-0.116141416,0.28226337,-0.1711639,-0.35799122,-0.37980384,-0.45411274,0.26665574,0.27959195,0.26275122,-0.6068007,0.48750687,0.2220682,-0.16410685,-0.066993594,-0.7362683,-0.08484002,-0.1522462,0.22386935,-0.09782956,-0.01778605,-0.2926633,0.2512123,0.75370353,0.061484497,-0.0899707,0.08758545,0.4522552,0.093020044,0.66067594,0.1293091,0.60016507,-0.05754958,-0.092567235,0.2649162,-0.4075515,0.3799878,0.20254189,0.16841109,0.3717327,-0.44961846,-0.726921,-0.5960909,-0.4339878,1.0390383,-0.40740526,-0.24107066,0.28296635,-0.07704559,-0.19402638,-0.020713849,0.42234933,-0.14451388,-0.23190306,-0.6283511,0.09828969,0.02107157,0.20252508,-0.09448437,0.08679313,-0.10352895,0.70317096,-0.28252926,0.3904838,0.16417433,0.21957922,-0.09767883,-0.4848143,-0.07313397,0.7652919,0.25604862,0.11287297,-0.14044835,-0.30667064,-0.1672428,-0.22066982,0.13055287,0.58363265,0.76009476,0.08679023,0.0115874745,0.42756268,-0.34846336,-0.012623112,-0.020344911,-0.36720958,0.012905631,0.040615592,0.6027014,0.37206486,-0.18184786,0.39373034,-0.046638586,0.12509362,-0.245399,-0.46883938,0.50530994,0.8539597,-0.16142759,-0.21921794,0.5235124,0.3104758,-0.42077243,0.21107379,-0.56436086,-0.1335812,0.75665843,-0.06970928,-0.3385124,0.03481854,-0.3463318,-0.08473335,-0.85969085,0.27324483,0.0099931145,-0.514117,-0.43520844,-0.16013509,-3.8147469,0.09146308,-0.29556212,-0.007866031,0.023433836,-0.026441677,0.2630406,-0.495179,-0.4125681,0.025029985,0.046881445,0.43023345,-0.003936555,0.1441969,-0.33647403,-0.12908359,-0.23005971,0.15543595,0.085037455,0.27734974,0.07832193,-0.24219665,0.37715694,-0.31150502,-0.44736817,0.115591414,-0.46324876,-0.5403146,-0.088277325,-0.45755556,-0.34975323,0.7564452,-0.42429674,-0.047129493,-0.26793945,0.031721175,-0.21011919,0.45941082,0.35338357,0.25768253,0.08743162,-0.055250842,-0.27718097,-0.4331547,0.24377945,0.07554488,0.2767014,0.31518194,0.119532585,0.08073091,0.48033306,0.5672486,0.10911797,0.5876024,0.26323518,-0.061717037,0.28166348,-0.42445284,-0.108327605,-0.54162794,-0.3906819,-0.29524803,-0.40904674,-0.51528126,-0.208848,-0.36067614,-0.74762714,0.31928506,0.026361426,0.07090931,-0.18029475,0.34679997,0.45874307,0.054783616,0.07167601,-0.018900782,-0.22496991,-0.5105425,-0.46083322,-0.61477774,-0.49397048,0.42092884,1.1265072,-0.18893534,-0.07641395,-0.17274904,-0.28365517,-0.024145277,0.1020317,0.2752439,0.36716402,0.35295677,-0.3010811,-0.5739882,0.31315392,-0.2081193,-0.18537287,-0.6826966,-0.029155118,0.75428444,-0.72874093,0.77448493,0.24664919,0.2939429,0.013815471,-0.5788707,-0.36805838,0.21889606,-0.27550495,0.5825959,0.0635544,-0.57834435,0.47076142,0.22512633,-0.0022233527,-0.65895665,0.429067,-0.06988521,-0.31060722,0.1130606,0.3421274,0.13303287,0.007185646,-0.07076802,0.20943078,-0.571334,0.19036002,0.3325674,0.14691098,0.41206276,-0.17317909,-0.15373367,-0.5162937,-0.12890056,-0.6233116,-0.24935442,-0.048186406,0.07178435,0.18147253,0.20885865,-0.06618293,0.4545835,-0.32149774,0.2188624,-0.010577491,-0.06893722,0.19121447,0.42364174,0.08485958,-0.44303137,0.5151211,0.08743424,0.083336,-0.024008267,0.14659627,0.46846783,0.23571663,0.40200812,-0.33853918,-0.10871223,0.17022607,0.7598021,0.13255502,0.27384704,0.23178443,-0.14711234,0.38509548,0.09758519,-0.048868276,0.07964332,-0.098074645,-0.22285321,0.11020344,0.2754385,0.4251478,0.09269862,0.31811893,-0.05204374,-0.22775091,0.26474205,0.14661631,-0.21563976,-1.0023925,0.33279592,0.25577906,0.66456765,0.41931295,-0.037953105,-0.06526154,0.40740055,-0.32925713,0.16976805,0.2945205,-0.06253786,-0.43783873,0.6196474,-0.49415386,0.499644,-0.2541005,0.006472842,0.040018365,0.29276946,0.3870161,0.80553985,-0.06775699,0.08509946,0.009347041,-0.28879306,0.107281,-0.24164991,0.15329823,-0.5164315,-0.2756891,0.47277874,0.40139726,0.24459137,-0.34180614,-0.10453653,0.08460323,-0.10603401,-0.005828138,-0.20270552,-0.14028719,0.017357413,-0.57911646,-0.503255,0.58712757,-0.24893516,0.0874513,0.07068627,-0.17406961,0.24178529,-0.038649686,-0.024918763,0.0026033083,-0.561291,-0.08994734,-0.18726215,-0.5737962,0.28748688,-0.5075052,0.2339295,0.26989654,0.06692989,-0.43340454,0.30448493,0.3243407,0.6614228,-0.12367081,-0.15968212,-0.51209515,0.06352102,0.14876227,-0.33155948,-0.10855395,-0.40736675,0.17962167,-0.6534311,0.47129157,-0.15407015,-0.25289476,-0.18321608,-0.13068983,-0.027925126,0.52726364,-0.36096197,-0.08142764,-0.0648442,-0.13352497,-0.2721487,-0.06926647,-0.27861246,0.27020866,-0.0055104415,-0.03432359,0.059763264,-0.26674092,-0.15950152,0.36276403,0.16736998,0.2048799,0.24189927,0.059514545,-0.2914439,-0.074749134,-0.12058282,0.2713597,0.057712745,-0.12537216,-0.32051694,-0.22349897,-0.19530776,0.4612986,-0.17352858,0.18869925,0.07940967,-0.5393043,0.75172776,0.08511984,1.1027681,0.15248843,-0.23096053,0.014046828,0.5569145,0.13602854,0.1951108,-0.2785739,0.7277736,0.55787903,-0.07992129,-0.2507455,-0.35367343,-0.1342503,0.26938984,-0.2592941,-0.23165806,-0.15565583,-0.6946861,-0.28206483,0.066675834,0.09330918,0.2253451,0.05201825,-0.15040486,0.06697524,0.10416536,0.63713515,-0.3698373,0.0869663,0.21915096,0.26948187,0.16278794,0.3706822,-0.23830882,0.3860996,-0.69539225,0.25482374,-0.4823139,0.09530724,-0.058513213,-0.19434121,0.19961151,-0.021228233,0.3125321,-0.120600715,-0.19782962,-0.21318303,0.6860308,0.24947461,0.32659626,0.7552935,-0.18872125,-0.046473976,0.19864415,0.5684659,1.5070076,-0.027800512,-0.029433267,0.18967454,-0.2282456,-0.6585687,0.17065343,-0.2865457,-0.054248538,-0.10678712,-0.39579725,-0.42084616,0.30868977,0.15467754,0.055920806,0.17788093,-0.46760628,-0.34359607,0.44427374,-0.28246453,-0.3020274,-0.3155184,0.40644592,0.74221367,-0.29820454,-0.30469558,-0.09209277,0.38524598,-0.2722197,-0.61173195,0.058447346,-0.44128215,0.47654375,0.1317241,-0.23229375,0.03223694,0.30961615,-0.4004135,0.11975608,0.42019045,-0.37301016,0.17179851,-0.015747407,-0.20799974,1.086701,0.12731074,0.061620545,-0.8432789,-0.45463958,-0.9356426,-0.39365166,0.5035292,0.23634954,0.0050926646,-0.47499448,-0.19861937,0.12664746,-0.07207707,0.10397796,-0.591059,0.25285357,0.07724382,0.37943587,-0.05154522,-0.8984446,-0.28088242,0.023083298,-0.37018028,-0.5068994,0.5617437,-0.29495364,0.80422443,0.050915506,-0.012605276,0.078231014,-0.36268967,0.4015505,-0.5249638,-0.21818975,-0.84573936,0.10090483,485 +221,0.6771746,-0.18933274,-0.35046014,-0.05649352,-0.36075774,0.10477588,-0.19909556,0.3502059,0.1511701,-0.40327558,-0.22858474,-0.022732342,-0.13549575,0.27908677,-0.27986035,-0.5649878,-0.08505822,0.13310114,-0.33396482,0.5751959,-0.48205584,0.2867801,-0.0066894847,0.42658952,0.34199473,0.31065693,0.11051672,0.032303445,-0.36654967,-0.42728347,-0.047742512,0.16548967,-0.5887235,0.3017563,-0.18076913,-0.46149865,-0.11210847,-0.3648793,-0.39678589,-0.5994063,0.27214274,-0.9023823,0.47575814,0.060282245,-0.15304647,0.16812068,-0.025315214,0.23988806,-0.19203043,0.16134879,0.13532989,-0.25775552,-0.11956618,-0.29031697,-0.16755982,-0.35004807,-0.57640666,-0.019232472,-0.38065752,-0.017346315,-0.35187447,0.29141957,-0.21815224,-0.030994643,-0.11323437,0.33759016,-0.6065396,0.20912905,0.100333974,-0.14950228,0.0916238,-0.68038255,-0.26354447,-0.1672933,0.10668508,-0.22189312,-0.2853414,0.2482424,0.22576329,0.54188144,0.1196741,-0.09702485,-0.42292354,-0.14398794,0.19425553,0.44488445,-0.21314666,-0.47284317,-0.18174477,-0.20908254,0.46924534,0.24428104,0.1342668,-0.30162686,-0.011187295,0.007120947,-0.28434753,0.43732733,0.5616703,-0.321261,-0.13360998,0.288598,0.44810066,0.0773484,-0.17565988,0.09523428,0.006875506,-0.40525302,-0.13641357,0.105656095,-0.2592502,0.5543644,-0.15134883,0.1600632,0.693194,-0.30793306,0.15786695,0.078978695,0.0665052,-0.05154059,-0.28215355,-0.41192505,0.2209549,-0.47997102,0.13502121,-0.17666125,0.84916705,-0.0128371315,-0.7453364,0.29941642,-0.47816986,0.030485954,-0.2056121,0.57805127,0.50318563,0.3736557,0.3648634,0.7553074,-0.4003002,0.074360386,-0.16151695,-0.24841572,-0.14258316,-0.104590885,-0.05500184,-0.44591948,0.067093804,-0.052993543,-0.032732103,0.13473774,0.6146399,-0.49073225,0.007925693,0.19440025,0.6908632,-0.48728865,0.10243584,0.8745335,1.180151,1.0878825,0.044613454,1.271089,0.4183136,-0.20075141,-0.104546115,-0.318875,-0.41936073,0.20354423,0.35335335,-0.2995311,0.24957825,0.17654237,0.016491778,0.34075877,-0.5320472,-0.02437845,-0.23410797,0.27983925,0.025118995,0.07119671,-0.4166675,-0.23422691,0.09387562,0.022904355,0.083964795,0.28655598,-0.4053819,0.32457176,0.10832551,1.4089652,-0.096554294,-0.06704379,-0.039492354,0.59283066,0.16580805,-0.10813924,0.15186939,0.121707715,0.3530808,-0.22234297,-0.6457811,-0.034408636,-0.23630738,-0.57692087,-0.17085025,-0.21944171,-0.14422426,-0.10842579,-0.35567385,-0.21518761,0.09292955,-0.3405832,0.49253052,-2.3453827,-0.15417449,-0.041341417,0.26105016,-0.11117775,-0.3976975,-0.118645445,-0.38870084,0.47038767,0.15315394,0.32384047,-0.63806117,0.46862787,0.57426864,-0.44279012,-0.12331005,-0.7231334,-0.056766447,-0.1609589,0.31495324,-0.03134869,-0.029871194,0.05493563,0.00048578184,0.70556706,-0.12097355,0.2558536,0.20976128,0.1970041,0.08248244,0.43027946,0.33640262,0.51399004,-0.24876696,-0.35432243,0.3878237,-0.36165914,0.19344038,-0.10307266,0.061248444,0.39714354,-0.51585495,-0.88288593,-0.71442914,-0.35918558,1.0962906,-0.20980929,-0.602327,0.25262558,-0.14209819,-0.37027842,0.031746723,0.3583205,-0.23171923,-0.094765306,-0.8288881,-0.041521255,-0.0672808,0.18095544,0.022436267,0.12643424,-0.41544935,0.6220386,-0.27612934,0.3795333,0.4524755,0.28281823,-0.2379993,-0.44060317,0.08905805,1.1049416,0.53098416,0.13687344,-0.31308013,-0.20664595,-0.07493031,-0.11120499,0.09692171,0.47841948,0.6173541,-0.06035509,0.113743134,0.16701236,0.05537912,-0.05743698,-0.28781447,-0.35662174,-0.11819984,0.1352391,0.7631451,0.59948194,0.06603796,0.5624069,-0.10389139,0.29336932,-0.19041462,-0.48007196,0.5404078,0.8783299,-0.16469781,-0.32846695,0.8155115,0.48105183,-0.30179256,0.5062186,-0.7979796,-0.27750364,0.30358955,-0.124956205,-0.4051711,0.13849793,-0.27556956,0.107378915,-0.8400603,0.4226179,-0.21264455,-0.62219876,-0.5787697,-0.38136283,-2.4211605,0.13844348,-0.30861017,-0.20985392,0.01841074,-0.3774509,0.25032836,-0.6468754,-0.5730569,0.12809776,0.08841979,0.5102208,0.028514652,0.15078214,-0.063489534,-0.16042337,-0.20913473,0.19829664,0.070886105,0.34469602,-0.01123902,-0.40256062,0.18634507,-0.0508185,-0.37321767,0.009624811,-0.63791883,-0.43901184,-0.079959854,-0.3847197,-0.2003992,0.57745343,-0.51871437,0.026467387,-0.35262316,0.013233998,-0.20647839,0.34112284,0.1376742,0.17545962,0.08667817,0.06156163,0.026630938,-0.25045437,0.1924443,0.108870655,0.084136315,0.32683536,-0.19434375,0.07235206,0.37776697,0.56683564,-0.07597058,0.9358022,0.54800767,-0.20420215,0.107009284,-0.18384266,-0.23547395,-0.66753083,-0.45165017,-0.082845695,-0.46687385,-0.48713174,-0.011206611,-0.3535175,-0.89888597,0.6628106,0.010451762,0.09786172,-0.015606379,0.2525505,0.3667843,-0.15482183,-0.056796867,-0.08644628,-0.0759247,-0.54595834,-0.43646047,-0.7149159,-0.35182026,0.031312272,1.0667329,-0.09673167,-0.06427263,0.3159858,-0.42426687,-0.040393054,0.10159678,-0.08248145,-0.021087121,0.5643266,-0.0041656257,-0.59736407,0.31190178,-0.036322888,-0.11972645,-0.5688087,0.1866845,0.72845197,-0.6460865,0.46045917,0.40505296,0.2166061,0.010672923,-0.54083425,-0.19058944,-0.12940179,-0.2403757,0.55036914,0.28571197,-0.71133727,0.5277549,0.33050898,-0.15967195,-0.726697,0.4924107,0.019214239,-0.2534804,0.006036838,0.23934379,0.24597129,-0.0036033874,-0.20968013,0.25268048,-0.40616304,0.3929337,0.28432903,-0.12536997,0.25092345,-0.32323965,-0.22712317,-0.75341034,0.034405947,-0.322361,-0.46381328,-0.013262633,0.09814789,0.11519162,0.3078801,0.21554963,0.3823654,-0.35012978,0.08848371,-0.14336236,-0.24726157,0.336981,0.5122333,0.5622838,-0.22202516,0.60152066,0.07110792,-0.15503922,-0.09034422,-0.097560376,0.48515707,-0.07631029,0.3263676,0.009240075,-0.20296517,0.37912115,0.70439947,0.25831065,0.39637628,0.011729197,-0.16120577,0.2816576,0.14317992,0.2858573,-0.018229397,-0.4464708,0.061396692,-0.030487688,0.18676478,0.34390822,0.2741631,0.42646676,-0.1186914,-0.2121481,0.06305133,0.03853774,-0.1500923,-1.4222913,0.26606888,0.06550066,0.75597084,0.637896,-0.057857372,0.06675088,0.60481197,-0.31257483,-0.074588105,0.34316596,0.07199159,-0.24900834,0.41155356,-0.6356558,0.436155,-0.08990897,0.091215506,0.038313277,-0.0010289471,0.36119977,0.74574834,-0.13283505,0.1012098,0.037832838,-0.33377087,0.026758019,-0.27272728,0.23158069,-0.57807237,-0.22675394,0.9531425,0.52224845,0.4400533,-0.10721293,0.00073380274,0.0672494,-0.10275384,0.1927108,0.13642098,0.013657181,-0.10947332,-0.51248604,-0.27077886,0.571066,-0.17701085,-0.012303487,0.053581335,-0.23612888,0.13779251,-0.052274924,-0.16176215,0.00060118735,-0.6144115,-0.08898397,-0.2498189,-0.27419585,0.21879816,-0.1292091,0.11944027,0.18357004,-0.050114784,-0.19495322,0.25906336,0.24731025,0.713437,0.18018939,-0.16577168,-0.08902285,0.22261162,0.2871929,-0.030041456,-0.06295838,-0.21000935,0.15763777,-0.7705932,0.36718887,-0.19699351,-0.38165298,0.16229142,-0.12645693,0.037955347,0.4502388,-0.12260506,-0.16067918,0.21896096,-0.09880975,-0.35289034,-0.15283523,-0.32844552,0.18857603,0.12393144,-0.062001027,-0.13002926,-0.1471182,-0.12977225,0.5286256,0.19084409,0.42009798,0.40014294,0.017278433,-0.46612567,-0.16052395,-0.034653846,0.513057,-0.2006602,-0.029803399,-0.23055588,-0.41102222,-0.3197821,0.23653339,-0.23990028,0.28175375,-0.016161462,-0.32399222,0.90125376,0.052914597,1.3135465,0.10912595,-0.4120038,0.17575432,0.5487168,-0.19654875,0.15280072,-0.23745598,0.95695007,0.5910067,-0.08944195,-0.23922281,-0.41537267,-0.039260093,0.23831914,-0.21172322,-0.29219633,-0.07069206,-0.7357147,-0.31062654,0.23059402,0.17080829,-0.036665265,0.061089672,0.247465,0.3813226,0.011893004,0.46293864,-0.5195523,-0.12714791,0.42705435,0.2709461,-0.042189114,0.09854113,-0.4083598,0.29110846,-0.5243744,-0.109641396,-0.25563952,0.1437818,-0.17147087,-0.2575832,0.21807583,0.107029915,0.41226283,-0.3528772,-0.29003084,-0.17408305,0.5778283,-0.09777316,0.10349556,0.44606146,-0.32782146,0.22029829,-0.11003087,0.37876967,1.178648,-0.3685544,0.13370892,0.33300468,-0.26712272,-0.49916515,0.33983314,-0.42795965,-0.08252878,0.11208407,-0.36291638,-0.54557407,0.3074264,0.14404781,-0.03958591,0.20212097,-0.61723965,-0.082830526,0.32404977,-0.11057563,-0.18169644,-0.1972575,0.12096931,0.6433605,-0.40482223,-0.3704136,0.029718788,0.37057763,-0.29868275,-0.43946043,-0.020743124,-0.32860625,0.41806367,0.11147587,-0.30863044,-0.1747557,0.11615745,-0.3912564,-0.14885044,0.37310597,-0.24738249,0.075691275,-0.34225675,0.21175508,0.6856361,-0.11162198,0.20146951,-0.68213195,-0.4450857,-0.9199956,-0.24465127,0.32154617,0.2025326,-0.10825407,-0.6672765,0.08664866,-0.21333763,-0.1722345,0.012691768,-0.5022673,0.49649277,0.19681378,0.45751247,-0.0494985,-0.81673527,0.056115076,0.04499763,-0.21449505,-0.5520179,0.5441961,0.059564088,0.889512,0.103809625,-0.012824378,0.005857573,-0.6393315,0.070208795,-0.21486661,-0.21427448,-0.83237904,0.14279476,488 +222,0.4260507,-0.041456725,-0.57330424,-0.2416503,-0.31320113,0.16769218,-0.19609343,0.18106298,0.13703378,-0.45384318,0.0017665704,-0.21759002,-0.025797209,0.32230815,-0.17708327,-0.72591287,0.13467021,0.0061785253,-0.5420479,0.30295345,-0.6630065,0.48324487,0.1730757,0.24568774,-0.047355246,0.35019392,0.28674078,-0.25544426,-0.1414086,0.019312883,-0.12425909,0.1569486,-0.7356097,0.14125894,0.018959641,-0.32273108,-0.0008977016,-0.23604779,-0.307885,-0.59959817,0.45597032,-0.7535713,0.46501198,-0.1340874,-0.3554589,0.16910018,0.06546009,0.29539862,-0.38109028,0.24689461,0.2594168,-0.086204566,-0.048384834,-0.067582436,-0.2622359,-0.60133857,-0.52892435,0.010396512,-0.5815715,-0.2360063,-0.31796482,0.17645188,-0.31688184,0.010985064,-0.21507107,0.33281243,-0.43673864,0.03725346,0.16184555,-0.114866875,0.23731384,-0.48175696,-0.1327474,-0.07752385,0.29368958,-0.13112608,-0.117987424,0.24477428,0.33107367,0.5439813,0.05747135,-0.1662654,-0.24056283,-0.17266493,0.19129829,0.53176206,-0.04300858,-0.29053155,-0.2880593,-0.12522583,0.029031456,0.21845552,0.06240581,-0.5766298,-0.013478746,0.14009279,-0.24189289,0.3908036,0.4782076,-0.48234737,-0.2346391,0.4256676,0.3700802,0.116852984,-0.14483516,0.29996485,-0.07708069,-0.6045606,-0.21645936,0.20782763,-0.08397301,0.5800007,-0.20554574,0.2121243,0.7957056,-0.13162464,0.078204624,-0.23360306,-0.24338265,-0.08227086,-0.1859596,-0.0064813453,0.13373835,-0.5107894,-0.022922348,-0.11848413,0.6765725,0.1777051,-0.74761045,0.41901118,-0.473689,0.01599839,-0.18269673,0.5875699,0.72766346,0.23120533,-0.0032277545,0.8247843,-0.65174663,-0.0013365905,-0.055017337,-0.55222255,0.17912436,-0.05262318,-0.033997003,-0.41375324,0.0011123011,0.19308046,0.09119236,-0.15103714,0.30023772,-0.38154152,0.06584989,-0.101963416,0.5656914,-0.51589495,-0.08358307,0.70466894,0.93820226,0.89442724,0.26276892,1.4216658,0.42328778,-0.15274204,0.20638159,-0.29092553,-0.52444977,0.13866693,0.29855412,0.13614163,0.24921721,0.14916325,0.08864615,0.32656005,-0.11687945,0.06780216,-0.05321157,0.23145603,-0.05424579,-0.17291114,-0.3546139,-0.1749223,0.1631808,0.0942302,-0.00086769264,0.110730365,-0.07789004,0.31636333,0.21879432,1.3762795,0.04159168,0.20756012,-0.02273035,0.2978897,0.21879171,-0.1373148,-0.10923188,0.34217697,0.28667516,0.007970643,-0.60958415,-0.024692647,-0.23538907,-0.46525815,-0.15139347,-0.35108584,-0.11632361,-0.15620016,-0.58988065,-0.08702615,0.1884466,-0.26338878,0.60235536,-2.5126905,-0.2872066,-0.2444885,0.23230022,-0.3045491,-0.30871376,-0.26542625,-0.49109048,0.33880728,0.46991724,0.34536391,-0.67147917,0.40334728,0.34200498,-0.12593421,-0.18836823,-0.6176599,-0.046559326,-0.0720977,0.33602676,-0.17696005,-0.10517728,-0.17257455,0.19691268,0.58153224,-0.121819325,0.054937758,-0.04055547,0.5046529,0.18958613,0.5877725,0.19550864,0.5742586,-0.23986258,-0.0040692864,0.3247896,-0.28191903,0.35523808,0.034908675,0.2712956,0.28698498,-0.42339668,-0.7539161,-0.6444075,-0.5209481,1.1312039,-0.38193005,-0.30122143,0.26143792,0.12088397,-0.19171911,0.0754156,0.35185447,0.044007346,0.074268706,-0.7406698,0.052376118,-0.12886047,0.11556726,-0.09724119,0.14255136,-0.28382534,0.67653006,-0.14048252,0.44832295,0.4404712,0.14394946,-0.0074288687,-0.5201291,0.029718745,0.9160059,0.34660515,0.09921103,-0.17751905,-0.18659058,-0.116777726,-0.23079745,0.16938387,0.4509724,0.746144,0.14421508,0.118416555,0.23800442,-0.07412307,0.11960276,-0.041490827,-0.26755682,0.05649643,-0.019839263,0.49990425,0.4775711,-0.3004927,0.40445417,-0.15791057,0.02969169,-0.23049614,-0.49824747,0.5841517,0.8621031,-0.17751579,-0.1526309,0.40965033,0.45110422,-0.39290848,0.40979636,-0.55596274,-0.2257886,0.6999373,-0.13433628,-0.33755988,0.08151173,-0.3120584,0.013600239,-1.0323287,0.34016842,-0.10856249,-0.409393,-0.41542754,-0.34969458,-4.389174,0.19443472,-0.2662714,-0.06757997,-0.13485391,-0.09176891,0.42584118,-0.5757305,-0.52625185,0.14487596,-0.09407184,0.45977706,0.02969556,0.25653225,-0.3719373,0.039164003,-0.17368388,0.23828726,0.045060694,0.1877448,-0.004050636,-0.40154073,0.15344462,-0.3298525,-0.5120347,-0.0048387805,-0.49545118,-0.60669845,-0.16421948,-0.43540546,-0.25449896,0.7973221,-0.49280944,-0.046071984,-0.1932977,-0.070183605,-0.39026827,0.493025,0.15549608,0.16151592,0.08764076,0.11984439,-0.2662701,-0.41061285,0.10419414,0.11869314,0.18012573,0.37139443,-0.21686259,0.1003991,0.4518965,0.5667928,0.021673024,0.62257695,0.11553285,-0.09339795,0.45376363,-0.3774943,-0.14032741,-0.7970993,-0.58032584,-0.4317385,-0.37714043,-0.72344244,-0.25961643,-0.32019052,-0.6930588,0.4172084,0.04666374,0.17583065,-0.1406435,0.13732506,0.24478808,-0.11363016,0.10373313,-0.1111063,-0.1540301,-0.52088714,-0.52449167,-0.61337173,-0.64965326,0.20800617,0.9400947,-0.068108864,-0.26268145,-0.00056989194,-0.27011248,0.012023994,-0.007306075,0.29198435,0.1757852,0.30857712,-0.14737895,-0.7113407,0.59444034,-0.18152998,-0.12790585,-0.5567494,-0.1807567,0.83793217,-0.60300606,0.5151582,0.45566064,0.25856888,0.2786433,-0.56340444,-0.33000082,0.08990244,-0.35037887,0.5935021,0.061965328,-0.5869939,0.50400364,0.28888848,-0.07437956,-0.5983354,0.70820206,0.078223705,-0.17251012,0.1793667,0.3773742,0.05947916,-0.10515296,-0.19270252,0.2962204,-0.6337755,0.23755787,0.44433117,0.078158885,0.52905285,0.009628359,-0.19615754,-0.6312147,-0.27077582,-0.3984486,-0.14443718,-0.04514854,-0.044935085,0.13769743,0.079850316,0.076608226,0.43296665,-0.44077697,0.23778777,-0.0349999,-0.11104055,0.17848912,0.5098152,0.2765442,-0.5091335,0.61410695,0.1092033,0.12787305,-0.10165558,0.08139895,0.47126517,0.38931766,0.32216308,-0.10376118,-0.15385208,0.11808273,0.7869704,0.341024,0.49576625,0.31365407,-0.30107126,0.34818122,0.26754457,0.2421952,0.06313331,-0.1836128,-0.072151676,0.017230935,0.20488717,0.35460442,0.123448804,0.34721455,-0.14326088,-0.046367295,0.1846247,0.22929786,-0.09777414,-0.9206468,0.3287646,0.30349013,0.49715182,0.58207417,-0.06377684,0.22208364,0.27470973,-0.3450295,0.10734818,0.34152743,0.02637427,-0.5648502,0.492406,-0.49852848,0.4060406,-0.34346077,-0.09362197,0.13707685,0.22748218,0.27158463,0.878912,0.07349127,0.20128404,0.12911256,-0.2414151,0.18022276,-0.3208228,0.068411775,-0.31157053,-0.13152732,0.621413,0.47892615,0.21963838,-0.28288367,-0.0751801,0.0115781985,-0.035841055,-0.02219599,-0.059721943,0.04660797,-0.035336114,-0.6682852,-0.4585522,0.5452604,0.006535061,0.029895313,0.13732593,-0.48070225,0.34666,-0.1961594,0.076739505,-0.036853734,-0.6701098,-0.058627892,-0.23477596,-0.48220712,0.2656652,-0.27452666,0.34083155,0.109840594,0.006385394,-0.3136595,0.10133372,0.12376644,0.7541223,-0.04470478,-0.22178572,-0.41152763,-0.12625211,0.5089019,-0.34954742,-0.17381331,-0.30586892,0.10661181,-0.46614513,0.33438358,-0.059254117,-0.058231276,0.07409743,-0.12812495,-0.011560345,0.43342283,-0.29820105,-0.10683085,0.21965216,0.0690607,-0.20388646,-0.020467173,-0.32373917,0.25798622,0.008836976,0.019799419,0.06094823,-0.052609634,-0.1317051,0.34384248,0.2418812,0.21376519,0.35426006,-0.055689495,-0.37276125,-0.12752435,0.027770517,0.3475291,0.071630575,-0.044812597,-0.12209376,-0.41415194,-0.25611743,0.34851483,-0.1403029,0.07074283,0.115758575,-0.42110613,0.63908696,0.14902648,1.1201528,0.15606856,-0.3779395,0.086231455,0.38689807,0.01554087,0.10874043,-0.35835248,0.92182696,0.70270467,-0.20342067,-0.28211066,-0.2790842,-0.27059403,0.1858035,-0.36377433,-0.23813592,-0.0694303,-0.6645744,-0.15208088,0.11750902,0.18753293,0.0057435534,0.092028625,-0.097098134,0.008972061,0.12656517,0.5603694,-0.65790784,-0.20419003,0.30605787,0.2762751,0.061420243,0.11290951,-0.23522994,0.4968618,-0.5844204,0.1212689,-0.4988243,0.09149123,-0.15528414,-0.1994429,0.14003812,0.06933274,0.29857475,-0.1305348,-0.36116028,-0.32710397,0.62028044,0.13004914,0.32014477,0.7553169,-0.21481527,-0.0070501724,0.0751962,0.5422491,1.2426059,-0.12069538,0.041498695,0.44873014,-0.39638695,-0.557943,0.14902149,-0.46525446,0.15981577,-0.19185804,-0.36623254,-0.3263475,0.3332563,0.1288301,-0.0050262213,0.11822633,-0.5171491,-0.30509266,0.5290843,-0.21043536,-0.38300574,-0.19316076,0.43420035,0.81521255,-0.5827686,-0.21522847,0.015696477,0.2751899,-0.27452743,-0.6045921,0.114308454,-0.2576196,0.4751105,0.18653539,-0.23896506,0.081379585,0.3081492,-0.28220752,0.20599073,0.44591448,-0.30017498,0.08806753,-0.3675541,-0.20242685,0.9789877,0.08075064,0.08367419,-0.7365542,-0.4814342,-0.9995377,-0.37939575,0.3524249,0.21287781,0.0186713,-0.36968583,0.04270952,-0.04074514,0.04208542,0.09797328,-0.49883178,0.44904894,0.115536585,0.45145407,0.02384944,-0.794624,-0.16266823,0.21865317,-0.26878262,-0.45658287,0.6429067,-0.2168968,0.62854886,0.15819179,0.06840715,0.11454192,-0.6022984,0.34847978,-0.4304603,-0.12515752,-0.79392934,0.07304946,496 +223,0.47934106,-0.1596756,-0.26435047,-0.13674746,-0.14446059,0.24349762,-0.014144784,0.51497906,0.21576613,-0.44875783,-0.0713023,-0.33221695,0.015919244,0.35741183,-0.11036571,-0.37945196,-0.04062205,0.085865445,-0.5029161,0.40101779,-0.44267836,0.3111629,0.063042775,0.37267935,0.08086705,0.25478926,0.17371774,-0.28873765,-0.20144895,-0.13535866,-0.15672608,0.07375113,-0.38369435,0.09307286,-0.13260351,-0.23443845,0.049991485,-0.41248983,-0.29493922,-0.66740566,0.19982651,-0.5720454,0.37882122,0.10658465,-0.1706007,0.4192859,0.031324517,0.2053292,-0.3392344,0.0030265688,0.23765244,-0.13244122,-0.025834598,-0.12782493,-0.12717612,-0.17495842,-0.4226179,0.022790283,-0.38319722,-0.28897622,-0.2784859,0.08576926,-0.23604693,-0.05465922,0.008835968,0.3702113,-0.40517557,0.020120287,0.12744065,-0.2197395,0.2629408,-0.3936269,-0.20476636,-0.088859685,0.30568713,-0.19949108,-0.09188767,0.3057283,0.12688252,0.5358114,-0.10491757,-0.1031264,-0.37604204,-0.10303364,0.07091076,0.53363436,-0.1167702,-0.56543595,-0.014011327,-0.10291125,0.03013722,0.09075793,0.11971423,-0.20556055,-0.20960355,0.022504533,-0.2880661,0.26348045,0.394829,-0.29730338,-0.28639558,0.38997838,0.47623986,0.041374613,-0.053792093,-0.12228927,-0.030720767,-0.51360697,-0.17936471,0.03875346,-0.2568685,0.3950164,-0.064293586,0.3385393,0.5763129,-0.15138507,0.05498759,0.04919665,-0.0075206677,-0.07824227,-0.049294513,-0.12256401,0.10559084,-0.29080874,0.11006028,-0.20335884,0.79926187,0.18851084,-0.72487414,0.3849027,-0.50068134,0.11796041,0.010367441,0.53870976,0.661992,0.32933146,0.32099822,0.6742644,-0.47833315,0.071744636,-0.1584395,-0.23890625,-0.03444445,-0.16834857,0.04645842,-0.46300977,0.032674022,0.18449458,-0.06854502,0.108107835,0.28789172,-0.5202123,0.004352021,0.17686574,0.7977058,-0.28511104,-0.033376567,0.59298044,0.95016503,0.79225427,0.010243264,0.94188476,0.21471867,-0.3670662,0.36471745,-0.4521349,-0.62638414,0.2943888,0.3099366,0.24831854,0.1630781,0.15866566,-0.013069505,0.26907107,-0.46876648,0.0983198,-0.11589846,0.114703946,0.170151,0.016611164,-0.27699262,-0.2909492,-0.13469583,-0.016810572,0.19469234,0.23527312,-0.21776484,0.30036786,-0.108137034,1.8105998,0.03500437,0.13166337,0.03184895,0.5121337,0.02210259,-0.019783003,-0.2107032,0.42102548,0.25478905,-0.031801384,-0.60793394,0.1885922,-0.14122869,-0.41360804,0.013239511,-0.3762879,-0.118795514,-0.030731698,-0.36402103,-0.0810068,-0.035013195,-0.4230321,0.48479268,-2.9111395,-0.18792789,-0.07084112,0.2277339,-0.25252813,-0.18919782,-0.15817288,-0.45269832,0.35824803,0.4488002,0.41411713,-0.60153395,0.2389153,0.29458395,-0.4093034,-0.21882716,-0.48219642,-0.058170192,0.04155537,0.3289896,0.06986656,-0.072275795,-0.07499752,0.11937588,0.36843392,0.019017844,0.055076923,0.23066787,0.40351954,0.09023321,0.4252113,0.022840777,0.42504492,-0.32553264,-0.12449643,0.22262189,-0.36308333,0.1967899,-0.11397317,0.120418265,0.2685916,-0.40558255,-0.8222036,-0.5626514,-0.21052662,1.2997204,-0.19722243,-0.28278822,0.3350393,-0.22568811,-0.116558574,-0.09175444,0.5139975,-0.018941225,-0.038652293,-0.79184353,0.1158224,-0.09791071,0.2916661,0.013910353,0.054633576,-0.4206083,0.67146236,-0.10959189,0.5158792,0.24554816,0.08451322,-0.26048645,-0.29246178,0.08997456,0.82248205,0.20637421,0.1516894,-0.054605056,-0.15831108,-0.30688605,-0.13942362,0.07510129,0.4302192,0.69035065,0.12708707,0.12929483,0.21979144,-0.021554856,0.030138314,-0.13058794,-0.1620778,-0.06056327,0.008128715,0.5460397,0.48446214,-0.19781272,0.40849712,-0.12107571,0.260068,-0.17506786,-0.35225576,0.52280045,0.52622265,-0.17110582,-0.1078285,0.48306274,0.5027574,-0.19196387,0.3880382,-0.5828667,-0.44320595,0.5921567,-0.23987235,-0.4617477,0.1697637,-0.27209333,0.16248061,-0.90433615,0.19779243,-0.092228316,-0.39398205,-0.4784432,-0.07382973,-3.4486873,0.03736379,-0.1185052,-0.28509533,0.08362018,0.0039408705,0.041916132,-0.56301063,-0.42461735,0.06494415,0.0046516676,0.5717274,0.010382014,0.14627688,-0.24368502,-0.23527925,-0.32381842,0.083201304,-0.09264967,0.36870325,0.04336308,-0.44927654,-0.0689442,-0.22106291,-0.34748375,0.04575577,-0.42850438,-0.4287627,-0.14829901,-0.4807476,-0.2592807,0.53705764,-0.3875402,0.0104044415,-0.20200695,-0.06160388,-0.1340401,0.41032505,0.20237058,0.1005133,-0.023796504,-0.039056037,-0.01745177,-0.2849882,0.28112152,0.09029015,0.1620295,0.503353,-0.051007506,0.15533727,0.44599405,0.63399637,-0.094303645,0.69889313,0.34122074,-0.11119275,0.2877049,-0.3583912,-0.1721176,-0.40814447,-0.2971381,0.030920785,-0.32101068,-0.38291562,-0.18318193,-0.3240513,-0.67985284,0.37898487,-0.0374472,0.12420061,0.043589063,0.15977392,0.4924708,-0.23210208,0.04330326,-0.117521666,0.009895444,-0.538906,-0.31560585,-0.6173624,-0.36629662,0.18522042,0.9179873,-0.11860275,-0.031933084,0.088500604,-0.174207,0.01795212,0.0049612005,0.080724865,0.16627066,0.36044046,-0.063482635,-0.6624907,0.5888884,-0.18924928,-0.13467093,-0.5744103,0.14002581,0.42489475,-0.55588967,0.39847437,0.29386997,0.16026898,0.019645441,-0.36050823,-0.19188073,-0.16229773,-0.1579803,0.18094209,0.03366091,-0.6006492,0.40661365,0.3179493,-0.24977309,-0.7432251,0.34186834,0.01672398,-0.4045687,0.053638794,0.26856562,0.21312396,0.052792773,-0.12974145,0.10229861,-0.45986488,0.383584,0.19167209,0.03222287,0.42825952,-0.21842642,-0.18123169,-0.5668695,-0.05904075,-0.39567268,-0.26509446,0.14850076,0.20830488,0.14868547,0.1935654,-0.038270786,0.29767832,-0.25784758,0.02939715,0.01197522,-0.12671374,0.2748081,0.37773094,0.47499588,-0.45261115,0.60513365,-0.020475268,0.021202154,-0.10617325,-0.11598126,0.37572908,0.07116546,0.27480513,-0.093989305,-0.3429353,0.3473114,0.6590141,0.23510985,0.28685942,0.035116866,-0.22555949,0.31072798,0.14757027,0.10765807,0.07095248,-0.42571828,0.014426375,-0.1593711,0.13292116,0.36754766,0.11240664,0.33507204,-0.024839604,-0.26051086,0.038339652,0.22332273,-0.21485281,-1.16645,0.30556786,0.10751455,0.8176301,0.49056482,-0.058963794,0.15096132,0.6678404,-0.22259562,0.13041261,0.19847076,-0.08573287,-0.6760368,0.58013,-0.56158733,0.48682755,-0.14626673,-0.024599869,0.006257677,-0.04520084,0.32114217,0.6496513,-0.14281705,0.017117003,0.094561115,-0.2677738,0.060284723,-0.35596138,0.15436387,-0.62164783,-0.189905,0.41371816,0.3473665,0.26520675,-0.17791346,0.05414849,-0.009258425,-0.06666002,-0.020357788,0.053581495,0.14501959,-0.027932383,-0.76135796,-0.15002309,0.5196544,0.00076028507,0.18483013,0.10076413,-0.25844678,0.15720078,-0.20808302,-0.10711077,-0.13265486,-0.451731,-0.057078507,-0.2809909,-0.3091249,0.3223864,-0.11607633,0.3785782,0.16961072,0.03504878,-0.26312014,0.33136776,0.2367527,0.6350434,-0.002236581,-0.15304706,-0.36731353,0.16106315,0.19100532,-0.14436038,-0.14873329,-0.16844334,-0.14407928,-0.49205893,0.4597715,-0.026609052,-0.16743806,0.18988337,-0.22368802,0.042327013,0.54639333,-0.054528333,-0.037367,-0.14363585,-0.2337556,-0.22067611,0.020677272,-0.1958432,0.28148574,0.13375495,-0.070136756,-0.05317998,-0.028933508,-0.07675794,0.40718687,0.04587681,0.251277,0.2458478,0.047864117,-0.30083483,-0.03098611,-0.006275928,0.3458983,0.06585122,-0.050879758,-0.27897498,-0.37383544,-0.36201757,0.094852366,-0.15044095,0.2694983,0.14536117,-0.33382872,0.6107499,-0.0016957521,0.96920913,0.05276328,-0.24637909,0.12446022,0.46308577,0.043644957,0.064442776,-0.4019514,0.75253814,0.46583265,0.016071744,-0.15143734,-0.19513386,-0.059775088,0.26152197,-0.19983643,-0.20583579,-0.06905233,-0.55679476,-0.36358684,0.28092724,0.20982693,0.22459193,-0.065380365,-0.03309358,0.1315197,0.054903116,0.37199852,-0.3859194,-0.2556311,0.34136513,0.17131875,0.11082614,-0.0076861638,-0.3611298,0.5042296,-0.57205606,-0.033677638,-0.13700955,0.09342549,-0.3181222,-0.19590276,0.2060601,0.19618651,0.3550865,-0.25679624,-0.36000004,-0.32593113,0.4484766,0.10376713,0.18462618,0.4345466,-0.1848118,-0.03027785,0.12891522,0.46240488,0.9416462,-0.26153857,0.05239524,0.47730866,-0.21378371,-0.5346909,0.35333374,-0.22992104,0.11896697,-0.05431315,-0.12646773,-0.46116582,0.29498917,0.18630543,0.08766388,0.037404962,-0.50992244,-0.24115713,0.40411982,-0.27383354,-0.26914513,-0.3378278,0.14699058,0.57543725,-0.28580686,-0.16993122,0.16046809,0.3159179,-0.24724385,-0.5816995,-0.019254986,-0.26391527,0.25992802,0.10192467,-0.25639048,-0.232995,0.093012385,-0.35149416,0.09335995,0.05950465,-0.45183438,0.022173723,-0.40594965,0.025595158,0.93114054,-0.08345785,0.26461002,-0.6177657,-0.38855875,-0.8689812,-0.33530897,0.72004396,-0.023254562,-0.17269227,-0.40391633,-0.08570218,-0.0750818,-0.15006648,-0.09361201,-0.31389925,0.39172748,0.14495216,0.3042969,-0.02125732,-0.60768783,0.075360455,0.017005173,-0.21266934,-0.4917694,0.4431333,0.06913815,0.74396497,0.059622664,0.0030501762,0.3748806,-0.47613484,-0.00314341,-0.17185974,-0.13038643,-0.52440447,0.16448304,500 +224,0.37973613,-0.24020703,-0.29820785,-0.10328083,-0.31426185,0.05764691,-0.17165308,0.56068057,0.108654805,-0.40981343,-0.19682193,-0.05067043,-0.005895086,0.22199017,-0.2422795,-0.3936381,0.109445676,0.07518103,-0.35367793,0.6106816,-0.37531388,0.20349605,-0.12284434,0.47238198,0.12139759,0.20807672,0.010169997,0.11443151,-0.031389546,-0.23657608,-0.04176379,0.4970083,-0.51438075,0.353245,-0.21401855,-0.2999906,-0.044518422,-0.47874394,-0.31198072,-0.8349547,0.19803686,-0.78211224,0.5351187,-0.15934245,-0.32784307,0.2914609,0.11563102,0.20660701,0.10794115,-0.18829863,0.06157569,-0.19227849,-0.0062109153,-0.15855023,-0.097897336,-0.3750442,-0.5351309,0.06260281,-0.46735686,-0.09771497,-0.33960503,0.169304,-0.30242622,-0.01721739,-0.0678194,0.53148913,-0.4745431,-0.043821275,0.13405846,-0.099488616,0.26835594,-0.6874162,-0.1159246,0.005892376,0.20629008,0.015419803,-0.24939826,0.2862381,0.3122508,0.46488082,-0.020059535,-0.16897802,-0.21618271,-0.05007823,0.1919642,0.6330119,-0.06287813,-0.47108567,-0.16283207,-0.11746909,0.3066507,0.18381189,0.14516404,-0.08106061,-0.2616255,0.056730725,-0.16361256,0.29720607,0.5128968,-0.26762497,-0.22676441,0.34229377,0.39488128,0.2984504,-0.09561868,0.08105477,0.016536148,-0.5009095,-0.16655357,-0.11443313,-0.23378533,0.56349903,-0.18428424,0.361596,0.55234057,-0.10134997,0.0025708356,0.22818293,0.07163432,-0.10046904,-0.33371836,-0.17605038,0.24926546,-0.55474406,0.1656505,-0.15807503,0.82301843,0.007219887,-0.6557226,0.27381974,-0.4450339,0.0015749614,-0.037498925,0.49771836,0.71959186,0.45521376,0.37322176,0.60853094,-0.2685891,-0.08225613,-0.13839136,-0.25929397,-0.083056614,-0.29005238,0.034299936,-0.53669757,0.0032261333,0.0830861,0.080503955,-0.048758525,0.3656708,-0.5535281,-0.06598093,0.09378286,0.72081053,-0.2438718,0.0025913268,0.93111813,0.9930488,0.9053267,0.19597673,0.9080839,-0.0022179803,-0.011110131,0.1242067,0.027402673,-0.5026949,0.29376423,0.35973495,0.43682507,0.12708068,0.015943909,-0.05157837,0.57461804,-0.33370203,-0.14042886,-0.16814466,0.2697968,0.09930487,-0.13774611,-0.5212557,-0.37077686,-0.0074839336,0.06616263,0.045540452,0.31322414,-0.19509272,0.41694075,0.13830169,1.3766351,-0.18481812,0.029330527,0.16449252,0.4403226,0.25117788,-0.20843367,-0.004635143,0.2643428,0.31050456,0.111523725,-0.5842211,0.22338744,-0.11074621,-0.50874895,-0.1167892,-0.3792626,-0.28068072,-0.027381087,-0.6063121,-0.15285152,-0.17332618,-0.24939051,0.41038808,-2.864657,-0.18219529,-0.04261452,0.29441112,-0.1639276,-0.4027771,0.10188819,-0.4762491,0.48605672,0.39394653,0.41799232,-0.5601625,0.3911373,0.4117007,-0.5316478,-0.10455168,-0.5650858,-0.18887635,0.06346748,0.3532258,0.21836516,-0.07848155,-0.029403877,0.021886593,0.5633897,-0.07938683,0.19745257,0.1822912,0.2550251,-0.21511021,0.31341723,-0.11097832,0.41641834,-0.14643352,-0.14857803,0.38433376,-0.3088727,0.29011604,-0.18222356,0.1829568,0.564395,-0.37894627,-0.8023671,-0.73622704,-0.38085017,1.2613108,-0.114979476,-0.45295924,0.2944755,-0.4996432,-0.34360075,-0.11667332,0.38442072,-0.17254296,-0.0095051015,-0.6409668,0.033645667,-0.17795709,0.005804288,-0.028688876,-0.08885148,-0.43791136,0.7016046,0.028424565,0.59725696,0.29865912,0.28048858,-0.26318267,-0.36941722,-0.07872556,0.6875697,0.64137596,0.18300216,-0.43164933,-0.18353605,-0.36353332,-0.06279787,0.14798495,0.57775635,0.6520315,0.010302013,0.18392883,0.21228646,-0.0034802635,0.051420704,-0.16730374,-0.16618367,-0.07180928,0.1642976,0.6816036,0.5754817,-0.15602855,0.37299076,-0.07747989,0.1788516,-0.26503322,-0.49039212,0.39737085,0.9095213,-0.20064835,-0.24372987,0.72528225,0.58796024,-0.078009404,0.33900625,-0.60296375,-0.34360605,0.38474637,-0.17165047,-0.437938,0.12968679,-0.31237248,0.21776079,-0.84571916,0.35046303,-0.34852192,-0.7759292,-0.5617236,-0.026347978,-2.9023771,0.24746071,-0.09669791,-0.26422295,-0.24112305,-0.48073474,0.23035595,-0.5785645,-0.5592143,0.15158479,0.04116533,0.72107065,-0.075413816,0.050355904,-0.23493095,-0.37774652,-0.20974083,0.11725021,-0.03213637,0.272597,-0.17732912,-0.2732924,-0.06729995,-0.15092497,-0.46394333,0.096385695,-0.4029547,-0.5767908,-0.17282775,-0.27685538,-0.27986276,0.49670985,-0.25148335,0.10742987,-0.23071188,-0.06045395,-0.09863225,0.35223112,0.11019232,0.22369304,0.12362803,-0.100492135,0.13199158,-0.29898226,0.17286961,0.023051314,0.22688776,0.52049047,-0.1005676,0.3285905,0.5916316,0.47557268,-0.20089836,1.0503544,0.43616676,-0.008764724,0.35480973,-0.14545682,-0.4418293,-0.46686694,-0.20785376,0.122204505,-0.42750493,-0.38651326,-0.029577564,-0.3198695,-0.78175324,0.5104903,0.093056805,0.29585725,-0.07268151,0.105200835,0.47922,-0.25145784,-0.14489584,-0.05454852,-0.08486382,-0.5706237,-0.4024487,-0.7510216,-0.63237965,-0.110246256,0.96357137,-0.15121704,-0.02483238,0.052031223,-0.17127705,0.028095761,0.10410966,0.010375985,-0.08288085,0.29895976,-0.108957544,-0.7255261,0.56193715,-0.009024119,-0.29379666,-0.3687577,0.2572913,0.58077115,-0.53113365,0.37254927,0.3919956,0.15925191,-0.225838,-0.64002967,-0.026658202,-0.16317873,-0.23310052,0.54279655,0.36821836,-0.8031657,0.4874629,0.28451353,-0.10840105,-0.76015157,0.46296754,-0.06009863,-0.21451406,-0.103446074,0.25488433,0.2418711,0.120006606,-0.12554003,0.19867174,-0.48395106,0.22778368,0.24575557,0.009767375,0.35537624,-0.25915366,-0.042005744,-0.67448497,-0.14208578,-0.60350454,-0.25264397,0.11792461,-0.026532345,0.088171616,0.23454615,0.12613818,0.3747514,-0.35734546,0.17222439,-0.058133963,-0.24731295,0.27197757,0.555292,0.54286104,-0.23670082,0.6125339,0.14811231,-0.012461766,-0.038427927,0.19300191,0.45436624,0.08428168,0.4716276,-0.23808217,-0.08743334,0.068941675,0.98420143,0.14480996,0.49381608,-0.101661175,-0.09863148,0.23069206,0.025737613,0.42481238,-1.9598006e-05,-0.53872234,-0.032794528,-0.3890207,0.07261038,0.5270915,0.087148994,0.24196924,-0.00085702934,-0.23571876,0.092689484,0.12128583,-0.07540814,-1.327005,0.3627529,0.29320842,0.8807564,0.47875676,0.053721204,0.071154036,0.7385511,-0.19133136,0.18036614,0.27926254,0.15882272,-0.4811956,0.5599805,-0.94487244,0.3787279,-0.051614273,-0.08802879,-0.040950757,-0.12418036,0.401093,0.59777015,-0.2049621,0.03439321,0.019441886,-0.41512254,0.2096034,-0.46419683,-0.041474994,-0.47371835,-0.23466955,0.72477204,0.56981176,0.3337148,-0.28087014,0.005231581,0.21057497,-0.07983933,0.110242404,0.038777165,0.08534687,-0.12972438,-0.45540947,-0.1430529,0.5506068,-0.059667077,0.29720017,-0.055576514,-0.26672336,0.19912027,-0.005748419,-0.23455824,-0.010383767,-0.6496974,0.10546659,-0.37993076,-0.55973727,0.45646408,-0.15257473,0.06886645,0.18303236,0.07571146,-0.12730366,0.18514591,0.07801485,0.64098495,0.052273862,-0.019520227,-0.31852925,0.13213506,0.1904097,-0.23632553,-0.20547065,-0.2291488,0.08304896,-0.45685995,0.28935555,-0.0937659,-0.19815236,0.12499056,-0.036672514,0.094604746,0.39467195,0.03949051,-0.12382393,-0.009866301,-0.20524146,-0.33218077,-0.20857283,-0.03720599,0.2989403,0.055330165,-0.08751013,-0.1035573,-0.12270708,-0.120934404,0.34755218,-0.0023668776,0.33427987,0.26274812,-0.17224601,-0.28908926,-0.047518842,0.19140667,0.51718545,-0.08931386,-0.09372511,-0.20590973,-0.42785487,-0.31051922,0.15531185,-0.032263644,0.31690255,0.09882224,-0.19139466,0.82096,0.0143622635,0.9008208,-0.012421777,-0.41067976,0.17797548,0.3346867,-0.01893372,-0.09597003,-0.33236548,0.78266186,0.29083106,-0.026694138,-0.11425122,-0.32833788,0.1184999,0.22305365,-0.14538176,-0.019383287,-0.066076554,-0.7319768,-0.17031386,0.27159357,0.29236957,0.015788956,-0.12562472,-0.14658995,0.31923616,-0.05214445,0.30544126,-0.44252524,-0.19162253,0.3708223,0.10593996,-0.091690384,0.12071596,-0.43916938,0.26910952,-0.6003021,0.07183839,-0.2266719,0.142945,-0.3562879,-0.23904593,0.27755642,0.021654343,0.36707643,-0.19188677,-0.35630074,-0.2825428,0.37505576,-0.0075883707,-0.00038990827,0.34129706,-0.223327,0.055246938,0.058829468,0.41291746,1.0220274,-0.30748194,0.108687945,0.2557109,-0.36895084,-0.54801,0.23808673,-0.30554885,0.19203204,0.072718844,-0.1957152,-0.53845036,0.16896993,0.38908184,0.17486241,0.007005318,-0.61534745,-0.15595001,0.13424608,-0.32238284,-0.1852909,-0.2580567,-0.015746208,0.56714183,-0.2571089,-0.23196311,0.032609895,0.3362004,-0.16384955,-0.512843,0.08768209,-0.3012399,0.23550098,-0.11773858,-0.41922912,-0.1376799,0.03422577,-0.39961174,0.08374774,0.18444853,-0.2661365,0.08093724,-0.4826073,0.22713418,0.9551332,-0.15906072,0.18432857,-0.46059695,-0.549822,-0.6649315,-0.39104903,0.22009425,0.28170303,-0.033032183,-0.5124953,0.07786395,-0.098496065,-0.08353775,-0.14138618,-0.35067004,0.4947073,0.17333221,0.34105304,0.010438045,-0.71524084,0.2810153,0.061013527,0.040848512,-0.41594493,0.39104757,-0.031287562,0.71633023,0.08763389,0.15330939,-0.022410464,-0.48342305,0.10272276,-0.20603244,-0.21885824,-0.6371656,0.042993255,501 +225,0.47078818,-0.16959016,-0.43959963,-0.19772743,-0.28984544,0.17583479,-0.25424224,0.106228605,0.25042415,-0.0836203,-0.0003531933,0.07959489,-0.19837332,0.30148897,-0.10391138,-0.6412183,-0.0053943973,0.06189034,-0.6731709,0.6042294,-0.3466716,0.3799207,-0.10622565,0.36984184,0.056904666,0.46662918,0.06265338,0.0972615,0.07527294,-0.049315352,-0.122472264,-0.005011038,-0.685783,0.3513983,-0.18633865,-0.3466702,-0.1378856,-0.3524424,-0.27425116,-0.72669256,0.32801867,-0.71254843,0.4779557,-0.22398624,-0.4170572,-0.08348176,0.16730952,0.3099147,-0.37385038,-0.115548834,0.13404961,-0.18760593,0.013581167,-0.11783629,-0.16076094,-0.6188792,-0.48782757,-0.11207645,-0.5590894,-0.037715618,-0.21282199,0.28102133,-0.30330345,0.017782044,-0.1810047,0.33166963,-0.40255097,0.033433095,0.27332312,-0.3057905,-0.15036091,-0.40459552,0.022757845,-0.14226022,0.2837972,0.27845183,-0.10723553,0.33074033,0.23162319,0.5637292,0.30540064,-0.30567947,-0.26410097,-0.17145504,-0.037131857,0.4285456,0.034030396,-0.19832917,-0.3156757,-0.20218521,0.5882446,0.13517745,0.097867414,-0.3169811,0.06378483,-0.17858212,-0.11586938,0.35974583,0.57002985,-0.29560956,-0.16842517,0.4363893,0.40864372,0.08409428,-0.33706146,0.27692947,-0.095046975,-0.22199488,-0.1925252,0.06529094,-0.07861824,0.46260878,-0.033400305,0.19749339,0.69350946,-0.04075213,-0.011591085,-0.0945696,-0.12282631,-0.07890694,-0.32686502,-0.19126488,0.19776143,-0.45283228,0.021864064,-0.28618547,0.60789263,0.058126587,-0.88998026,0.36044753,-0.44425672,0.07933437,0.034379017,0.6511932,0.79303956,0.5854669,0.17825945,0.8232966,-0.34639597,0.10717309,-0.0507854,-0.18796453,0.14033447,-0.20463659,0.14098732,-0.45737132,0.26521018,0.078127116,-0.072514854,-0.062329803,0.23114513,-0.43491375,-0.15263334,0.039187655,0.61328727,-0.3564087,0.016919034,0.8977121,1.0204091,1.0001845,0.070126645,1.1875837,0.4001156,-0.09054337,-0.093353905,-0.22734803,-0.43112096,0.053077593,0.32472813,0.31819,0.48235947,0.084059514,-0.07538209,0.49042332,-0.26890835,-0.0336048,0.047571026,0.26773027,-0.053869966,-0.023829728,-0.43020073,-0.2604762,0.32001698,0.1528768,0.0113118645,0.39928564,-0.22277983,0.55896974,0.1815949,1.1570085,0.17255625,0.10131014,0.09174042,0.44319162,0.15109368,-0.3699838,-0.048404567,0.25959048,0.29711086,-0.19444065,-0.51621443,-0.0901705,-0.34294024,-0.37633628,-0.21737316,-0.413964,-0.22433634,-0.10851264,-0.31201327,-0.26691416,-0.0005960822,-0.29033864,0.43940315,-2.4993908,-0.09806886,-0.25322142,0.2946105,-0.3290776,-0.15705791,-0.18439502,-0.50646263,0.13953243,0.35673636,0.31530195,-0.6007674,0.45049953,0.36098224,-0.51752186,-0.035520125,-0.6019681,0.18329407,-0.06298067,0.45381248,-0.078538746,-0.209047,-0.22472224,0.2730123,0.72282284,0.3886042,0.054959483,0.31793195,0.37624472,-0.07523026,0.3991932,0.08397557,0.44190425,-0.34725994,-0.110217944,0.43032664,-0.54275364,0.37833968,-0.06763103,0.19073887,0.47057286,-0.56730336,-0.64612454,-0.55737895,-0.26484433,1.3748542,-0.48656946,-0.53225404,0.27357972,-0.088858895,-0.21474247,0.062648825,0.5362236,-0.13824943,0.0989989,-0.48550975,-0.07573934,-0.10364883,0.22809839,-0.0903356,0.07766868,-0.3196179,0.7309775,-0.23707788,0.53600526,0.24856658,0.23910576,-0.1248514,-0.46110305,0.14378087,0.7123608,0.61396325,0.055498164,-0.074848175,-0.12601008,-0.22824939,-0.35471237,0.09567787,0.66062903,0.5786549,-0.09954928,0.07887055,0.33532888,-0.2650199,0.1397493,-0.13826875,-0.29051667,-0.1997463,0.17880633,0.5969414,0.6278963,-0.107069425,0.13517164,-0.12553866,0.16236594,-0.12240375,-0.60368407,0.5205523,0.5835295,-0.21658655,-0.14519024,0.5747841,0.47219247,-0.3622423,0.47366798,-0.62916696,-0.3697137,0.53706586,0.0029649993,-0.46906677,0.10137481,-0.3370965,0.058787894,-0.7064143,0.24366006,-0.13224284,-0.67323047,-0.42695218,-0.11644344,-2.8689017,0.115013756,-0.035312593,-0.11677567,-0.120356135,-0.11522511,0.42865425,-0.55951744,-0.5637369,0.20698342,0.062480614,0.43018153,-0.034608047,0.12389679,-0.29281434,-0.24345447,-0.4118797,0.25573274,0.10481093,0.2830097,-0.1445265,-0.357662,-0.0810739,-0.110865235,-0.5041584,-0.08195067,-0.65035075,-0.39926496,-0.19097878,-0.4818357,-0.18288682,0.6100058,-0.3433716,0.09331739,-0.34599647,-0.121699266,-0.2384107,0.23922087,0.22239408,0.16667245,0.14368607,-0.12464102,0.035099737,-0.2964404,0.29228547,0.055106103,0.32857648,0.41517422,-0.18506838,0.108320154,0.5188413,0.6022464,-0.01554536,0.7857017,0.07448629,-0.07300145,0.5422216,-0.19992606,-0.4019932,-0.61828697,-0.3142205,-0.13028578,-0.45282713,-0.3724334,-0.020886092,-0.2942103,-0.8571589,0.3468485,0.12726162,0.3441753,-0.1881868,0.13133296,0.45212355,-0.14691353,0.0873461,-0.09710515,-0.21223497,-0.5035948,-0.40999004,-0.65676516,-0.6037548,0.28938434,1.0585825,-0.100962594,-0.009290362,0.037373934,-0.3888879,0.0779617,0.10041855,0.21049014,0.057953235,0.31370825,-0.075140916,-0.628587,0.4186882,-0.17904653,-0.041752737,-0.48823044,0.21586703,0.6300146,-0.5939914,0.51003045,0.24273029,0.18233518,-0.14931351,-0.7652298,-0.15303864,0.005486107,-0.10808496,0.5803907,0.34802625,-0.6498818,0.38916004,-0.005467121,-0.1402888,-0.6347091,0.37950525,-0.082730226,-0.06603432,0.014764738,0.43993774,0.058834195,-0.20072702,-0.14250953,0.14007153,-0.5756965,0.2590576,0.39960727,0.027512755,0.43209597,-0.037211105,-0.33461085,-0.63977164,-0.17405656,-0.56369674,-0.20594254,0.09123346,0.046129253,0.023654552,0.022905236,-0.034796778,0.41065267,-0.21330027,0.21484426,-0.10073986,-0.284957,0.58776295,0.508003,0.47278252,-0.44728792,0.6766785,0.24964467,-0.043639265,-0.12957197,0.058331575,0.48121887,0.2242212,0.3588497,-0.07351885,-0.017601904,0.012746751,0.53635937,0.3406104,0.40694264,0.08009555,-0.29071534,0.33209208,0.14829364,0.1076866,-0.10493448,-0.31019703,-0.037237186,-0.14515024,0.17659439,0.411279,0.06808378,0.47717178,-0.10826111,-0.035353877,0.2435017,0.01520447,-0.31545582,-1.1771249,0.29579464,0.3091425,0.8082207,0.45086887,0.15383783,-0.15351573,0.6646829,-0.29941443,0.06304648,0.3900101,0.0077313026,-0.39505714,0.58997667,-0.44986698,0.41992807,-0.018658495,-0.011639134,0.3504486,0.2687287,0.45519385,0.8079949,-0.101371594,0.026122864,-0.115607545,-0.26687425,-0.007088356,-0.2253042,0.26510292,-0.4664851,-0.45108128,0.58221537,0.32669073,0.35677797,-0.3091245,-0.09619379,-0.010383652,-0.1708481,0.11161712,-0.15635708,-0.021924365,-0.24634014,-0.53244287,-0.3704396,0.5265905,-0.2861474,-0.057678837,0.13432887,-0.3273163,0.15344815,-0.13930945,-0.03730391,0.04354048,-0.63320345,0.14448781,-0.23426278,-0.33513588,0.3932673,-0.29867032,0.2511179,0.14070779,-0.040786274,-0.36464444,0.06473133,0.07482691,0.7454719,-0.014653317,-0.19208957,-0.2606706,-0.02277985,0.32015565,-0.38232043,0.10607801,-0.3391598,0.054487552,-0.6106317,0.32054654,-0.2389432,-0.22203453,0.052068885,-0.13024895,0.011159425,0.38450032,-0.1982844,-0.16203478,0.22971365,0.03697184,-0.4944211,-0.25036728,-0.3430194,0.28787374,0.101358004,0.06838725,0.07120703,-0.08351316,0.07929257,0.35855597,0.09825872,0.13068579,0.29981664,-0.18698259,-0.46072626,0.24790828,-0.0093858,0.34441042,0.21706527,0.031570774,-0.32015827,-0.37585753,-0.36161432,0.3243226,-0.22943905,0.19179024,-0.06699875,-0.2657576,0.8389632,0.08063242,1.1422323,0.08566458,-0.42219195,0.18950576,0.59679484,0.007348754,0.084843226,-0.30621612,1.0158727,0.62803155,-0.177215,-0.18494233,-0.4284724,-0.26156232,0.21936226,-0.36831194,-0.27675804,-0.014772505,-0.6586495,-0.11794748,0.017680092,0.17894863,0.033971462,-0.057630047,-0.13158354,0.22462621,0.127537,0.5353279,-0.4981984,-0.17048544,0.32518804,0.020447278,0.06641692,0.17964908,-0.3808858,0.3858639,-0.82052684,0.12153331,-0.45020404,0.0432832,-0.100096814,-0.4184206,0.16404481,0.039735034,0.3590731,-0.39517292,-0.51610595,-0.17813708,0.6464522,0.24218264,0.20806861,0.67336756,-0.27401263,-0.15241215,0.118727475,0.53367865,1.1535027,-0.13901709,0.09852834,0.18621698,-0.3403856,-0.7053595,0.11636943,-0.35639194,0.093617685,-0.00654765,-0.44449535,-0.2731891,0.30371687,0.11919567,-0.14636315,0.19484776,-0.5612856,-0.15462217,0.14505482,-0.24870926,-0.18550208,-0.33834794,0.20864144,0.6852292,-0.33725864,-0.502464,0.0026091218,0.22241758,-0.24838775,-0.7015769,0.04131611,-0.24420626,0.31017044,0.0006816864,-0.49213573,-0.099748135,0.29169372,-0.42491737,0.043673143,0.36015892,-0.37152913,-0.0031460046,-0.29898208,-0.118331686,0.9559891,0.20549883,0.14686604,-0.64772666,-0.40780053,-0.8605577,-0.44120774,0.0569125,0.27079687,-0.051351972,-0.5060028,-0.03326165,-0.30878222,0.21530391,0.116863504,-0.5192934,0.31598425,0.21828909,0.5714489,-0.13957296,-0.94697213,0.12607187,0.20519136,-0.1275159,-0.41974264,0.5192279,-0.12995404,0.74565226,0.210361,-0.012354863,-0.061585434,-0.6951185,0.228117,-0.3165492,-0.17665698,-0.6166454,0.2218052,503 +226,0.34947008,-0.037415575,-0.5401853,-0.25259864,-0.41191542,0.1494754,-0.27967772,0.1658052,0.16032194,-0.3358309,-0.00020453334,-0.06613841,-0.110926986,0.28264672,-0.0932029,-0.5621502,0.1405038,0.11705259,-0.67848855,0.48192212,-0.6309001,0.3160143,0.044101954,0.3205712,-0.034660317,0.24073629,0.13894,-0.08834412,0.023835996,-0.07328084,-0.13924718,0.36494955,-0.76529515,0.2560805,-0.109521486,-0.31699154,-0.0032312472,-0.23791961,-0.21647525,-0.696727,0.18521948,-0.7012474,0.5452983,-0.10672405,-0.4418848,0.027408374,0.059812233,0.29901823,-0.30516112,0.15635599,0.31280607,-0.14205557,-0.13682999,-0.09219635,-0.10068042,-0.41617125,-0.5071201,-0.026027216,-0.6717859,-0.08151453,-0.27493662,0.23977095,-0.34104434,0.006991601,-0.3718139,0.4172579,-0.37461442,0.057042487,0.013666423,-0.13551189,0.04543812,-0.43251938,0.0017121792,-0.09721469,0.3594937,0.022327201,-0.23912078,0.056593616,0.32582673,0.673204,-0.0035496673,-0.2244497,-0.16678225,-0.24049574,0.21544844,0.33704773,0.03381252,-0.18659994,-0.22451226,-0.080966264,0.22486286,0.2407053,-0.06365953,-0.47215202,0.12103991,0.05665218,-0.25138897,0.24639218,0.4118077,-0.4176186,-0.2354566,0.4053322,0.45070824,0.12564509,-0.26300147,0.3090626,-0.07560987,-0.44713694,-0.29580015,0.2803383,-0.03182378,0.31537655,-0.19800942,0.23819488,0.77033347,-0.08287461,-0.028406302,-0.05821781,-0.14771049,-0.0862445,-0.2575934,-0.07602237,0.04333668,-0.5147659,0.11626462,-0.2622347,0.7658812,0.04502745,-0.8742846,0.31491116,-0.55377674,0.06870469,-0.13744614,0.71501356,0.85898966,0.3054727,0.10673485,0.7151481,-0.49766046,0.07611248,-0.11032586,-0.39927092,0.018364366,-0.09346934,0.15816246,-0.47076994,-0.05825435,0.015767861,0.028918136,-0.22259732,0.17513438,-0.3926097,-0.16522236,0.04084378,0.5615256,-0.41922665,0.005677076,0.7426283,0.89717776,0.95109934,0.17499945,1.3631443,0.35381094,0.007837304,0.024793236,-0.27064294,-0.5445505,0.086006634,0.30260774,0.23688792,0.16841622,0.07497723,0.15437654,0.58597565,-0.30386174,0.07180907,-0.06713063,0.2894865,-0.059268963,-0.114638805,-0.24835481,-0.14672539,0.34108385,0.091942295,-0.0944716,0.38451284,-0.13863716,0.3426472,0.28570208,1.2385406,-0.03867278,0.0866679,0.09930624,0.27781916,0.12962858,-0.31207985,-0.092601046,0.33378547,0.45151833,-0.12459662,-0.539864,-0.026621092,-0.22722344,-0.32300287,-0.21734768,-0.33514988,-0.1409127,-0.16766702,-0.4603242,-0.14592272,0.009320175,-0.25673702,0.49855837,-2.6803937,-0.16127406,-0.116202496,0.22463153,-0.22706273,-0.2976301,-0.33538043,-0.47528553,0.3264701,0.30524987,0.34593168,-0.6221701,0.6002011,0.38497737,-0.2730389,-0.17443953,-0.74076235,-0.12372797,-0.027772052,0.42647,-0.052658953,-0.13876642,-0.24530564,0.18365638,0.64205575,-0.048691437,0.1484153,0.15136878,0.57838815,0.07086606,0.7033161,0.2412108,0.5571063,-0.25580895,-0.115103595,0.32977343,-0.30899844,0.41301683,0.07101323,0.18164212,0.36914328,-0.42502794,-0.68006855,-0.6213518,-0.4432951,1.2329772,-0.48599538,-0.35217422,0.27608618,-0.10814789,-0.27044323,0.13022453,0.47187233,-0.026007365,0.042371426,-0.70753545,0.011715635,-0.09138338,0.32213518,-0.16298757,0.1944469,-0.345864,0.6967152,-0.1307335,0.55269307,0.42681,0.1883829,-0.048614264,-0.34081814,0.043687582,0.9798616,0.4237226,0.096959956,-0.17219235,-0.2549332,-0.22252528,-0.117662676,0.116424054,0.5850916,0.5049745,-0.02334974,0.27389982,0.35729876,-0.27241242,-0.029979836,-0.25849682,-0.3414784,-0.031916093,0.20878454,0.40535837,0.5182329,-0.16404766,0.45468143,-0.16370554,-0.055561606,-0.18797049,-0.56169546,0.46609047,0.52902716,-0.24478269,-0.099182114,0.51626337,0.45489326,-0.26000458,0.36910564,-0.4460624,-0.3335067,0.62808496,-0.06589348,-0.40283865,0.2352562,-0.312113,-0.0067774337,-0.8981773,0.27580884,-0.29842246,-0.6840631,-0.6073467,-0.19512925,-3.5629687,0.13347314,-0.04222304,-0.016676713,-0.16032162,-0.2440505,0.41376358,-0.45115831,-0.54360956,0.05541509,0.0077474616,0.40790537,-0.09502018,0.19608015,-0.39514834,-0.27568468,-0.27999896,0.2997509,0.14260027,0.24804758,-0.06578065,-0.40698782,-0.021268262,-0.17175461,-0.35179582,-0.04879084,-0.5452899,-0.46166018,-0.070140496,-0.33135378,-0.18539077,0.72128415,-0.36259288,-0.01936612,-0.32187563,-0.1041173,-0.2285299,0.43359053,0.2946287,0.2053197,0.014455278,0.01978915,-0.28781626,-0.3845103,0.02793723,0.053752553,0.22730058,0.40487856,-0.017714404,0.11946774,0.38102975,0.48617393,0.025194407,0.7278254,0.20994386,-0.15488516,0.4665345,-0.30500704,-0.3158473,-0.70447034,-0.3412094,-0.3617207,-0.444096,-0.479031,-0.13568586,-0.23961735,-0.78996634,0.40624025,0.14008994,0.06526665,-0.26717025,0.27019483,0.4024107,-0.040314034,0.030472837,-0.11919613,-0.27236593,-0.49212188,-0.58212173,-0.7211332,-0.51569366,0.17339522,1.0852114,-0.22496475,-0.16778582,-0.037157293,-0.2689392,0.037166674,0.10206654,0.15101784,0.21553849,0.4702845,-0.08972012,-0.7286608,0.39089635,-0.1192526,-0.075145,-0.585874,-0.031114427,0.8971062,-0.7309656,0.5787468,0.17650573,0.16490243,0.10469149,-0.68143934,-0.24794243,0.07061409,-0.28801638,0.66822433,0.15757132,-0.6665975,0.5169859,0.22416018,0.16068366,-0.6237503,0.5127439,0.06925983,-0.035714213,0.14069079,0.3631991,0.026523607,-0.02849264,-0.06692353,0.25838587,-0.38231087,0.3839706,0.3794154,-0.15277322,0.2630684,-0.067080356,-0.26014766,-0.47052592,-0.16603208,-0.5256061,-0.23494077,-0.020125242,0.030133603,0.1267203,0.11608707,-0.0643459,0.39511806,-0.24677357,0.21009485,-0.009150382,-0.15126596,0.32674465,0.5060927,0.26217684,-0.4669406,0.57245654,0.18096629,-0.06439016,-0.059821185,0.14042705,0.4237993,0.26720753,0.40694058,-0.19403562,-0.1221652,0.22839823,0.7718093,0.2216153,0.5044104,0.07799064,-0.09444402,0.21970682,0.18657748,0.13172239,-0.1274938,-0.3108692,-0.058141377,0.05811154,0.26447293,0.4433282,0.19016916,0.37967265,-0.059408147,0.043068595,0.20741338,0.115572624,-0.11723181,-1.192817,0.39120582,0.23779099,0.6380126,0.5420091,-0.00535237,0.14265281,0.38767853,-0.41918564,0.068656534,0.31928667,0.114356056,-0.40550023,0.5624226,-0.53873163,0.42840147,-0.18128523,0.06652691,0.07341895,0.07123765,0.3251556,0.95956486,-0.11330571,0.14183985,-0.009267681,-0.20225026,0.16597085,-0.22567043,0.040514637,-0.47848836,-0.33494103,0.621949,0.50840396,0.25693858,-0.48997843,-0.10495486,0.021398136,-0.16884102,-0.034680095,-0.09044244,-0.0250472,-0.041526258,-0.4736602,-0.27477887,0.65786564,-0.10678108,-0.08601298,0.1242656,-0.42708784,0.39081162,-0.027914755,0.12085328,-0.03299934,-0.5573375,-0.061951797,-0.36193618,-0.4526181,0.27919734,-0.3561111,0.32004228,0.19339152,-0.041098427,-0.24734996,0.28048027,0.06529272,0.694488,-0.008546948,-0.005823815,-0.15305836,-0.01301932,0.33504456,-0.2560396,-0.24791694,-0.43964192,0.113516964,-0.557836,0.21957661,-0.16207296,-0.31748745,-0.08570672,-0.103960626,0.04936601,0.44592407,-0.113518916,-0.11185603,0.18667619,0.022657549,-0.34198064,-0.110417694,-0.3012872,0.2802612,-0.0058322507,0.1665424,0.020076983,-0.10134433,-0.052640155,0.22964798,0.10329192,0.1740181,0.30499655,-0.009320561,-0.34308872,0.04875172,-0.02367781,0.29121864,0.18068711,-0.16696633,-0.17996763,-0.32259098,-0.25217277,0.41232428,-0.17228647,0.16825533,0.005019593,-0.4211788,0.8270014,0.18838876,1.0747948,0.13839908,-0.40298328,0.11901602,0.47521192,0.09262927,0.19861427,-0.20101728,0.725662,0.56358224,-0.10090234,-0.050162863,-0.37486744,-0.28733787,0.20811826,-0.28906327,-0.309953,-0.08362282,-0.6606472,0.024310084,0.07119907,0.2145705,0.073858365,-0.08892129,-0.13186292,0.14005966,0.12620457,0.5459231,-0.6123091,-0.08467414,0.30626944,0.1675542,-0.0020335119,0.16510716,-0.33512318,0.47246546,-0.7551639,0.17424825,-0.43287563,0.12792546,-0.12580553,-0.23397176,0.09669127,0.015966212,0.28076893,-0.2523824,-0.3452019,-0.28428742,0.64891624,0.23467524,0.34040126,0.82760406,-0.21253271,-0.033090122,0.110265814,0.44822198,1.129997,-0.07540289,-0.19587891,0.268262,-0.28149548,-0.6558182,0.117896,-0.48345944,0.1622316,0.007694801,-0.50545573,-0.12880345,0.2822836,0.045217037,0.07446216,-0.103905566,-0.57868195,-0.05623637,0.44733208,-0.06317298,-0.19320989,-0.16995606,0.1838262,0.8207055,-0.39749396,-0.29436162,-0.10573004,0.217073,-0.32906947,-0.51168597,0.038720217,-0.31275573,0.36664453,0.24053457,-0.32472762,0.10085012,0.29451123,-0.4658117,-0.018503796,0.38163865,-0.3166495,0.07431031,-0.23397213,-0.07319231,1.0651536,0.02268556,0.087398715,-0.42912945,-0.50278324,-0.685559,-0.20910087,0.20566256,0.2679666,-0.056068107,-0.45789957,-0.021263702,-0.17129542,-0.03979141,0.1723031,-0.5781847,0.46364367,0.19091773,0.40762377,-0.0042109014,-0.87440324,0.07426281,0.15031637,-0.007358742,-0.47500473,0.6472823,-0.17938073,0.7030401,0.040423695,0.051119283,-0.038817402,-0.58162993,0.22655058,-0.33153498,-0.083903044,-0.8124988,0.06356659,504 +227,0.20839795,-0.23320669,-0.27750412,-0.04980665,-0.18748668,0.055032555,-0.06227998,0.29266256,0.1639896,-0.21177272,-0.22720115,-0.13077432,0.122595504,0.51428556,-0.1438552,-0.6003743,-0.1773817,0.053184763,-0.7050668,0.39590275,-0.6086069,0.22855447,0.052104782,0.38749468,0.089229725,0.3958674,0.33624285,-0.33034974,-0.038188815,-0.00874265,-0.23820741,0.06611471,-0.46945572,0.15981182,-0.073936544,-0.2302358,0.18852122,-0.5036356,-0.3205728,-0.6207835,0.2419629,-0.79980177,0.41477972,-0.08368016,0.022315998,0.1517894,0.22836414,0.30916864,-0.54370755,0.0060100695,0.1673507,-0.13305551,-0.06994187,-0.2710195,0.10055666,-0.37678066,-0.3653343,-0.013991123,-0.5194181,-0.3997281,-0.1611868,0.08979817,-0.35782018,0.07012733,-0.0904293,0.2678831,-0.37236091,-0.050727885,0.2674165,-0.25884256,-0.010002887,-0.46436444,0.036662403,0.046198267,0.48913842,0.038891055,-0.057374246,0.41782808,0.24387763,0.36066395,0.1364927,-0.18038104,-0.16360071,-0.2470551,0.11827299,0.4955911,-0.07534606,-0.5710203,-0.03743149,0.26970273,0.03373424,0.32503065,-0.031631026,-0.20782048,0.010159182,-0.07733572,-0.2173833,0.36621937,0.5810435,-0.31397438,-0.30379498,0.39764553,0.5666706,0.2321152,-0.11119384,-0.11216596,0.02879507,-0.4752715,-0.10426514,0.044573452,-0.14516118,0.5159735,-0.04959281,0.25480476,0.8805731,-0.14999028,0.06975384,-0.029953847,-0.070353515,-0.2051437,-0.1547232,-0.13674076,0.06360181,-0.41977125,0.03948715,-0.31875798,0.7702372,0.23827794,-0.66416717,0.45041835,-0.5116927,0.16042216,-0.0275418,0.58020717,0.46578053,0.39802685,0.3841069,0.6971602,-0.44998223,0.2127112,-0.14229806,-0.5316585,0.010969766,-0.20471616,0.06775243,-0.42824575,0.16859215,-0.122657865,0.10875727,0.053225335,0.15869766,-0.48015058,-0.042655006,0.17679039,0.89434296,-0.35091242,0.049605347,0.7387804,1.052665,0.95692027,-0.06810602,1.096569,0.35503095,-0.2759077,0.18909487,-0.35015264,-0.7133649,0.20246018,0.4262921,0.10074175,0.18186472,-0.05648321,-0.047233775,0.2458559,-0.4369094,0.03354633,-0.088084176,0.40625817,0.23921426,0.0069398223,-0.44216108,-0.16312605,0.011547157,-0.10910844,0.15703987,0.26126608,-0.26586926,0.38057986,-0.029813834,1.5497915,0.07182158,0.19633128,0.08472312,0.6411896,0.18148498,0.060799997,-0.2095695,0.44616386,0.45691592,-0.08926323,-0.61614645,0.21047634,-0.382286,-0.4640936,-0.10250981,-0.40365422,-0.11133407,0.05314288,-0.30793524,-0.10434841,-0.04011968,-0.16628547,0.36191216,-3.0749674,-0.2583524,-0.04691015,0.2740029,-0.4123543,-0.041827958,-0.035196066,-0.56119734,0.24517842,0.23645741,0.47178724,-0.6819917,0.5082113,0.35597423,-0.41326487,-0.2399642,-0.57066065,-0.091552615,-0.022821682,0.5277411,-0.02290957,-0.08598062,-0.23876637,0.088137306,0.6431096,0.008476222,0.12092975,0.36383066,0.44280016,0.26654023,0.5831228,-0.01291406,0.5544596,-0.4441959,0.022135073,0.26708892,-0.21151753,0.29444394,-0.19012037,0.07324306,0.4004845,-0.4730144,-0.7996073,-0.53986275,-0.22314148,1.0690863,-0.45345482,-0.31310543,0.17817098,-0.09113694,0.055129964,-0.074682444,0.52140063,-0.18120816,0.00072346925,-0.64170057,0.19855699,-0.037251554,0.16203955,0.02145792,0.07729039,-0.26647803,0.612851,-0.06269524,0.6137769,0.25697377,0.26548257,-0.14306569,-0.12861617,0.105325244,0.7395187,0.18780541,0.015139715,0.039813768,-0.23960909,-0.007055072,-0.2518522,-0.053980887,0.5303297,0.7304611,0.06820318,0.09529962,0.22569595,-0.089351445,-0.02165415,-0.15829936,-0.124389075,-0.01912738,0.0051570544,0.41668993,0.70881444,-0.2420039,0.47696218,-0.22367702,0.25765598,-0.01352064,-0.47084185,0.56833816,0.29707372,-0.20589164,0.034228943,0.3490315,0.53448826,-0.36384937,0.35548952,-0.55056036,-0.24288599,0.80232847,-0.24763156,-0.44734085,0.20435794,-0.12481297,0.11353137,-0.7913501,0.27229118,-0.18913594,-0.40545088,-0.5004558,-0.06992841,-3.4078085,0.049801525,-0.14979678,-0.16734466,-0.23197703,0.023737805,0.13882573,-0.63004786,-0.4997985,0.14695533,0.20479712,0.46078414,0.029173354,0.19426364,-0.3316216,-0.07571193,-0.2821493,0.07650148,-0.020092558,0.16488044,0.0037822365,-0.4331816,-0.065908246,-0.070711754,-0.46980843,0.3106557,-0.48416424,-0.33258632,-0.07550541,-0.45034778,-0.3005513,0.6201936,-0.34847316,-0.02811767,-0.19596092,0.013378571,-0.23241732,0.12555437,0.2390733,0.12045538,0.04843549,-0.110753424,0.17247722,-0.39617643,0.5144502,-0.057102904,0.3602637,0.17197797,0.17037304,-0.028372265,0.3579535,0.6469074,0.0012759328,0.85182387,0.28165582,-0.11215033,0.28517768,-0.42840183,-0.29204655,-0.39734328,-0.38868216,0.07822945,-0.33372396,-0.52150315,-0.0737362,-0.33275935,-0.6164905,0.4778062,0.056864142,0.29943052,-0.09426728,0.24004501,0.48201567,-0.18861346,0.05746245,0.034541164,-0.035441402,-0.6338628,-0.25615594,-0.68101275,-0.48094234,0.0912857,0.80958164,-0.2509604,-0.13571982,-0.2574697,-0.30659547,0.011363983,-0.09425783,0.057255816,0.4353219,0.38961878,-0.11752563,-0.75688773,0.6063356,-0.1646851,-0.14404087,-0.50294393,-0.03364609,0.5429381,-0.7923281,0.4646396,0.26130265,0.06894981,0.085501246,-0.42884588,-0.21538846,0.0148402015,-0.04262594,0.19443093,0.003464663,-0.7475923,0.50215834,0.3155751,-0.50843626,-0.6796672,0.14713958,-0.024417615,-0.389388,0.042213973,0.24534872,0.29833105,-0.086186394,-0.23765449,0.08675163,-0.5208524,0.36465406,0.120590284,-0.035075285,0.39880288,-0.15015851,-0.3509518,-0.61410147,-0.13649149,-0.37729114,-0.121116035,0.34097666,0.11279712,0.042892918,0.07226248,-0.046709027,0.37337816,-0.32652834,0.050248936,0.06262281,-0.25056642,0.1961977,0.35190842,0.32426804,-0.47776878,0.54540455,0.105317675,-0.11327278,0.20266373,-0.015762066,0.3106225,0.1296676,0.29394072,-0.11297576,-0.22048712,0.47677276,0.7471686,0.14858226,0.29153264,0.02340018,-0.17456481,0.5044922,0.04349832,-0.04062321,0.20919634,-0.39088258,0.060083885,0.021342056,0.110790364,0.4506606,0.34082305,0.37306765,0.12187294,-0.21260755,-0.0077311792,0.25242084,-0.10807726,-0.99494344,0.3898706,0.18738794,0.85920936,0.34764448,0.10305931,-0.04751265,0.6591494,-0.20833853,0.07726297,0.32604933,-0.027611073,-0.53769857,0.76106566,-0.54628557,0.5096291,-0.14135045,-0.09010019,0.08005655,0.14824532,0.22023821,0.79537845,-0.21662147,0.010202727,0.025147093,-0.14722899,-0.036445554,-0.3421126,-0.04020146,-0.4163221,-0.30746603,0.41317406,0.3452093,0.1940438,-0.13853852,-0.07013928,-0.04059168,-0.1731722,0.17404468,-0.047544356,0.02659425,0.07827243,-0.66422355,-0.3382024,0.54838365,-0.03807079,0.22371654,-0.21210937,-0.23217858,0.17735665,-0.32955158,-0.14616974,-0.0005591651,-0.49233797,0.1673562,-0.1367045,-0.46099937,0.29351494,-0.18337385,0.27548367,0.1403826,-0.04404513,-0.23636302,0.23062481,0.07609712,0.8932096,-0.107576095,-0.3001852,-0.48724887,-0.07873292,0.21253572,-0.1446023,0.10306371,-0.38947037,-0.050744805,-0.44966692,0.6175711,-0.1723141,-0.2696219,0.14666374,-0.35738984,-0.018506024,0.6130837,-0.08078194,-0.08468275,-0.18496396,-0.15866007,-0.4553086,-0.051194,-0.3607294,0.17377545,0.30147108,0.06749033,0.03134951,-0.2381488,-0.23098345,0.64429206,0.052484546,0.48885968,0.16680704,0.032432318,-0.07077717,-0.082979426,0.07639112,0.38752773,0.21132298,-0.03225182,-0.40512225,-0.32806763,-0.30944923,0.21456775,-0.20168668,0.18709926,0.020672692,-0.31849864,0.7369372,-0.010077574,1.1888893,0.1415722,-0.24943513,0.13204564,0.5863121,-0.06802692,0.06485756,-0.4306335,0.81594646,0.5474809,0.021629453,-0.0027074656,-0.37101367,-0.089971304,0.37857386,-0.34131902,-0.18305579,-0.02299652,-0.30568233,-0.43412405,0.19655643,0.2177692,0.24572173,0.032668784,-0.2167448,-0.065462664,0.16652988,0.49474207,-0.5181627,-0.2517432,0.26983958,0.1365966,-0.03679619,0.09916702,-0.39485553,0.5084354,-0.48146492,0.18993454,-0.4001261,0.06785533,-0.14014135,-0.2210931,0.13707668,0.0020803988,0.41797325,-0.32763547,-0.53455395,-0.0196409,0.362101,0.07432036,0.20666704,0.56917155,-0.1668588,-0.0457383,0.11482366,0.5756724,0.93623084,-0.4000294,0.11484321,0.37344503,-0.37916392,-0.55875415,0.4432464,-0.2523752,-0.08712778,-0.07450824,-0.24464537,-0.4987177,0.3309341,0.23246117,0.015201994,-0.05468239,-0.45960584,-0.24078865,0.48327824,-0.2995408,-0.32160708,-0.2878685,0.28138766,0.75479543,-0.35262054,-0.16076487,0.09951404,0.26154423,-0.24667886,-0.51935166,-0.14093632,-0.30760816,0.33769673,0.16104965,-0.106294125,-0.14407301,0.19411786,-0.4365902,0.13406903,0.08673752,-0.37980232,0.09441535,-0.078465395,-0.032174803,0.8800115,-0.27224478,0.03377303,-0.87254006,-0.31522706,-0.8543139,-0.44105855,0.49436945,0.08839854,-0.028785255,-0.38387024,-0.046300914,0.10581711,-0.1387763,0.0038062194,-0.5287147,0.31793335,0.020916771,0.49384117,-0.21031275,-0.74347967,0.07708573,0.035511136,-0.1761414,-0.564087,0.68760693,0.044524226,0.7202451,-0.05151031,-0.09010072,0.107418604,-0.34851846,-0.032090366,-0.45176107,-0.17366965,-0.7371662,0.22641271,508 +228,0.26272914,-0.22772,-0.2882349,-0.18136737,-0.08938908,0.1180809,-0.117764875,0.22091235,0.21253271,-0.38571966,-0.11939384,-0.337305,-0.0011851862,0.42762125,-0.09626112,-0.7196283,-0.076490365,0.091663666,-0.66235346,0.54872555,-0.32902604,0.22925673,0.023229357,0.2337921,0.08864347,0.1367702,0.2714266,-0.19314842,-0.15497287,-0.113766156,-0.14321056,0.17152436,-0.7658842,0.19136581,-0.032089923,-0.34764752,0.0046402137,-0.39441463,-0.35132405,-0.7142977,0.3762662,-0.71282065,0.40152732,0.07000971,-0.14995964,0.55017763,-0.054090023,0.2557897,-0.27093303,0.047016144,0.13097808,-0.13116166,-0.012028182,-0.03552265,-0.07167603,-0.272339,-0.64984494,0.11347102,-0.28447706,-0.3427164,-0.29687998,0.120672636,-0.312708,0.0065006656,-0.11615406,0.46382242,-0.3948094,-0.09167648,0.20548235,-0.04405747,0.28424263,-0.4589403,-0.093868814,-0.06865978,0.30458668,-0.20978801,-0.081710644,0.30186087,0.28168952,0.5369276,0.031864144,-0.204218,-0.28152573,-0.074324444,0.15806171,0.4383387,-0.06813073,-0.65194887,0.10504044,-0.020877134,0.028677246,0.07662519,0.14101614,-0.30057475,-0.23392671,0.11218336,-0.23146074,0.32905665,0.46733978,-0.22544833,-0.44344914,0.31022835,0.4427262,0.106851354,0.069589265,-0.022969551,0.060504936,-0.5323748,-0.20963697,0.229115,-0.39103386,0.49533924,-0.16211747,0.21496339,0.61603475,-0.21436258,0.05379103,-0.059510984,-0.16307707,-0.007656606,-0.011927973,-0.21081534,0.19835587,-0.36303812,0.24924086,-0.2646294,0.8649432,0.162245,-0.89449674,0.38050455,-0.5232171,0.24066798,-0.105506524,0.49822286,0.65308756,0.25285822,0.25862497,0.5836324,-0.5308531,0.0629567,-0.069975615,-0.29822385,-0.121720634,-0.18939777,-0.1644682,-0.4549017,-0.09969446,-0.012921901,-0.05085804,0.06572349,0.19211751,-0.57700235,0.18534318,-0.0054733157,0.8073563,-0.30679855,-0.05346987,0.7006249,0.94292957,1.0887277,0.108090386,1.1634543,0.36098003,-0.32139906,0.3392576,-0.44263572,-0.7386344,0.24885885,0.3902038,-0.1385574,0.2047191,-0.061083894,0.07248007,0.25868964,-0.48272312,0.14958216,-0.19290206,0.2722599,0.14010467,-0.18587698,-0.23837239,-0.25160363,-0.12621944,-0.030781623,0.08441942,0.24780017,-0.06936366,0.35322964,0.101213306,1.4887097,0.020894436,0.006390067,-0.059412036,0.43372378,0.09904029,-0.12413964,-0.103471026,0.21746582,0.3396921,-0.028025659,-0.6982956,0.13495913,-0.11533766,-0.4182248,-0.22199167,-0.23857592,0.09598257,0.09602179,-0.28377303,-0.1688214,-0.13693123,-0.27469215,0.5622471,-2.576571,-0.17165892,-0.08564626,0.21916114,-0.29266223,-0.25108743,-0.015995828,-0.64459056,0.44355857,0.30030766,0.35338017,-0.69153404,0.24955139,0.31805187,-0.4881281,-0.12288265,-0.6132826,-0.19568771,0.05132554,0.3502865,0.038194895,0.012275894,0.05704986,0.22743526,0.41302612,0.055626296,0.027003247,0.20132042,0.34167856,0.23298305,0.39650324,0.066622294,0.53066397,-0.16761066,-0.059077222,0.35267073,-0.30868948,0.23768239,-0.1388858,0.11996408,0.35183373,-0.44724062,-0.7829474,-0.6400465,-0.37521067,1.2226056,-0.09353139,-0.42193028,0.3009426,0.08001487,-0.0024428288,-0.12997141,0.37340164,-0.1952499,-0.09766063,-0.7134703,0.028019872,-0.0077770553,0.15567869,0.06677984,-0.037070647,-0.4499844,0.5085554,-0.08032047,0.30347204,0.42972305,0.2583783,-0.22081408,-0.5977986,0.109716006,0.8856382,0.35757312,0.09480477,-0.11803708,-0.19845985,-0.340968,-0.15606576,-0.016955966,0.2912427,0.8143424,-0.03285544,0.03376417,0.21733321,-0.012667712,0.18091859,-0.17152539,-0.2906529,-0.0334222,-0.026013525,0.46797886,0.4847224,-0.18899265,0.36680204,-0.0147957895,0.15212923,-0.042386137,-0.3309167,0.7006709,1.3575647,-0.017212989,-0.17121647,0.4324191,0.39182574,-0.16164121,0.3781279,-0.53186935,-0.17965606,0.6221391,-0.280218,-0.3997142,0.17265339,-0.2769605,0.12418392,-1.007046,0.3132887,-0.2829351,-0.33772194,-0.65126693,-0.001200223,-3.0645423,0.04380722,-0.30655634,-0.21301118,-0.02367088,-0.09458869,0.08973112,-0.45734197,-0.5407464,0.27906764,0.09651407,0.56182694,-0.012659138,0.35498697,-0.09509715,0.031973567,-0.44231603,0.1981473,0.124345556,0.20708415,-0.032713007,-0.43339488,0.022765178,-0.2215793,-0.48638743,0.22244257,-0.40087324,-0.41803405,-0.23522167,-0.47663593,-0.36833936,0.59611624,-0.33059838,-0.01021936,-0.24066891,-0.05995293,-0.15854478,0.387584,0.12931268,0.09344888,0.024804382,-0.101024665,-0.09204681,-0.27926216,0.28872287,0.12128422,0.23047495,0.38978302,-0.10995151,0.102583535,0.4011485,0.6098389,0.08671908,0.5474687,0.5908371,-0.043690324,0.27697966,-0.37254006,-0.24498574,-0.45885712,-0.4157354,-0.0011982997,-0.295866,-0.5665907,-0.12919278,-0.3086084,-0.62121975,0.28898916,0.036809493,0.07656355,-0.0070573133,0.08290111,0.3265619,-0.12716934,0.04659176,-0.11674614,-0.07184649,-0.456147,-0.22945307,-0.6175939,-0.44147837,0.18568398,0.8867477,-0.03209604,-0.17577177,-0.01836118,-0.12626705,0.033013273,0.046896324,-0.20812137,0.25854266,0.19033581,0.020348763,-0.76214516,0.6457659,0.07979665,-0.13794184,-0.558737,0.09331919,0.4049556,-0.43902656,0.38583076,0.23315702,-0.085117795,0.051193174,-0.36695406,-0.14285374,-0.10936601,-0.25590506,0.20197791,0.07818357,-0.5480642,0.45733076,0.28725776,-0.27291048,-0.79722524,0.32626218,0.16018803,-0.26132205,0.09747161,0.2587148,0.026752282,0.04991246,-0.3267152,0.23086244,-0.48172697,0.32004008,0.21201201,0.024275146,0.23774086,-0.13180296,-0.19293927,-0.7525907,0.045402322,-0.46492118,-0.20714083,0.07984998,0.21246459,0.05433546,0.20977508,0.07825799,0.38336438,-0.20099173,0.1288967,0.041512366,-0.28745395,0.15834092,0.399498,0.3900248,-0.39860395,0.552031,0.0017957409,-0.09128548,-0.09488596,0.0016855558,0.44564942,0.1671148,0.14013998,0.16420645,-0.26614273,0.3677538,0.7564139,0.12940189,0.33536866,0.008056871,-0.23411082,0.43406755,0.10461093,0.19296604,0.116316035,-0.42422396,0.0008361022,-0.119509,0.13213173,0.41809246,0.037199296,0.31624985,-0.093885705,-0.37174782,-0.076425195,0.23789713,-0.1614096,-1.016524,0.30638137,0.17908505,0.94460857,0.8238256,-0.08782514,0.23204234,0.52083385,-0.21517912,0.11755691,0.32421646,-0.08713479,-0.64063376,0.5913946,-0.6301206,0.313612,-0.06034905,0.0034137985,0.0088522965,-0.0076362095,0.17827211,0.6338132,-0.22377568,0.04718038,-0.16425091,-0.2525712,0.23124212,-0.43352994,0.2140688,-0.4166778,-0.2426332,0.5612537,0.35721365,0.21545695,-0.05729365,0.051584173,0.23985939,-0.1489441,0.26179653,0.1142228,0.03909627,0.06483532,-0.6634812,-0.25209945,0.52723885,-0.08420698,0.08155822,-0.08737927,-0.28472334,0.09968879,-0.42227095,-0.19037716,-0.12894902,-0.68332297,9.498596e-05,-0.21895865,-0.1486847,0.44417006,-0.17398281,0.23930341,0.16419882,0.18591736,-0.27569738,0.052870393,0.21475355,0.5819769,0.10250326,-0.14494728,-0.33569032,0.034988206,0.14846367,-0.17111482,0.01948135,0.1504675,-0.1528835,-0.6229642,0.50438,-0.06584834,-0.12464678,0.14994453,-0.20758574,0.013166964,0.50012016,-0.21436192,-0.0060241045,0.14620931,-0.14924075,-0.11655847,-0.03332882,-0.08645291,0.332601,0.29287827,-0.017214911,-0.048599277,-0.0366614,-0.18571551,0.44615474,0.052891497,0.30917376,0.16183032,-0.072371416,-0.37708017,-0.25679672,0.026221566,0.24623537,0.06467515,-0.018111292,-0.25193715,-0.3547802,-0.32600358,-0.030068127,-0.14878526,0.3051328,-0.093837894,-0.44031996,0.52645105,0.12605573,1.0852422,0.10216353,-0.2916269,0.15040687,0.36433417,0.038842823,-0.004660055,-0.45567068,0.822652,0.47202045,0.026310543,-0.110913925,-0.22489296,-0.0043310644,0.18842998,-0.06354765,-0.08591063,0.063114755,-0.5938486,-0.45208848,0.25393337,0.22208157,0.069097914,-0.120456584,-0.088596344,0.18548624,-0.040275138,0.31125742,-0.45408437,-0.12398497,0.3052936,0.10438809,0.1928017,0.090650894,-0.3919554,0.3504078,-0.52111864,0.13222086,-0.12525758,0.17089316,-0.16013715,-0.0846031,0.28729126,0.25267273,0.2210057,-0.2037785,-0.4437577,-0.22634731,0.5125012,0.070867464,0.22211751,0.60527116,-0.28190258,0.045457896,0.02053577,0.4764558,1.0072715,-0.14421968,0.060379528,0.35957465,-0.33412874,-0.3978451,0.61505926,-0.083790526,0.039798904,-0.0880369,-0.21131748,-0.6069762,0.15451466,0.21859767,0.08710385,0.16869506,-0.64940166,-0.42917055,0.3063716,-0.40160066,-0.2786021,-0.32520702,0.15225662,0.643203,-0.43403354,-0.1626127,0.2537452,0.17524013,-0.29071432,-0.5314435,-0.081955805,-0.32939416,0.20484404,0.09512374,-0.39983746,-0.17790177,0.2877397,-0.30925676,0.09598958,0.07062583,-0.39021462,-0.04513091,-0.22967942,-0.04676125,0.89194554,-0.3201835,0.14420582,-0.6394674,-0.4332433,-0.9492042,-0.3584102,0.67319924,0.12594979,-0.01068548,-0.6278858,-0.008193183,0.0036655266,-0.021850187,0.05628791,-0.40073958,0.436264,0.18061113,0.35720718,-0.049773466,-0.5318665,-0.0065409304,0.09311843,-0.12950203,-0.47046325,0.4969228,0.05737768,0.7089646,-0.011083547,0.008345628,0.34942624,-0.49267128,-0.036855314,-0.17115323,-0.21269657,-0.5187098,0.10314908,511 +229,0.39425248,-0.27943,-0.38352886,-0.09607843,-0.44737053,-0.19187959,-0.27445135,0.26668027,0.25711608,-0.17982292,-0.17666334,-0.18041697,0.04206842,0.3558868,-0.107024334,-0.6331807,-0.17019469,0.27525896,-0.69889504,0.46406925,-0.61390215,0.25239742,0.1168876,0.4776715,0.18482862,0.28370997,0.13229635,-0.05084498,0.124335684,-0.086127594,-0.16056857,0.27174857,-0.59606564,-0.07169138,-0.07407079,-0.36844397,0.0063325227,-0.5155333,-0.27099383,-0.8616423,0.3166615,-0.97003555,0.51267207,0.0073908814,-0.1360838,0.02898761,0.25344315,0.48356286,-0.32856452,-0.034765862,0.27119815,-0.2302112,-0.09990709,-0.19508545,0.044650827,-0.3159238,-0.5857594,-0.035406444,-0.49548826,-0.28236568,-0.287948,0.18573989,-0.35233793,-0.01185532,-0.23180467,0.39277184,-0.34774825,-0.0065742093,0.29843855,-0.15853548,0.3740297,-0.53095526,0.045960825,-0.05174681,0.38953227,-0.12450516,-0.29762274,0.38717115,0.25888613,0.35502508,0.2577149,-0.32396993,-0.24255733,-0.12111986,-0.052272234,0.45078033,-0.20006628,-0.33362392,-0.17311688,0.28174958,0.4400085,0.4614755,-0.115555204,-0.28185034,-0.076972276,-0.0069587547,-0.13641547,0.596915,0.5872042,-0.124745734,-0.2993246,0.2417874,0.5183824,0.24573107,-0.1878232,0.025510598,0.01934358,-0.64249015,-0.08463354,0.08935259,-0.039246965,0.44609097,-0.16222474,0.12925224,0.72964346,-0.15715204,-0.068879366,0.02739763,-0.07539643,-0.041196954,-0.31629503,-0.28939238,0.27889648,-0.5529308,0.22854522,-0.18911871,0.69313556,0.11464217,-0.8274912,0.44628233,-0.6512623,0.26352343,-0.08769759,0.6480729,0.70578307,0.47227922,0.554936,0.8153793,-0.22917941,0.38711005,-0.12007497,-0.54654026,0.15033947,-0.19253989,-0.10945201,-0.55421895,-0.0037634731,-0.3499098,-0.11210441,0.15601276,0.2739062,-0.6402837,-0.03611044,0.22486895,0.80695724,-0.33258888,-0.08499904,0.6417342,0.99844956,1.0936404,0.025664996,1.024837,0.2363756,-0.19054644,0.3344604,-0.3851976,-0.7403592,0.19478863,0.19719206,-0.1629586,0.32965755,-0.13605139,-0.11980493,0.40966207,-0.2516808,-0.14144418,-0.054500673,0.16362165,0.16831616,-0.026499128,-0.56190807,-0.14985567,-0.027123865,-0.113935016,0.11353779,0.16330314,-0.2637261,0.2896947,-0.080792114,1.5230082,-0.021756949,0.00041204592,0.12026083,0.6394543,0.23425764,-0.23695119,-0.09104692,0.46396178,0.46889514,0.05551688,-0.6614171,0.33024204,-0.20627907,-0.43069133,-0.034106452,-0.34782833,0.005320144,0.10125827,-0.4573421,-0.20110345,-0.25073162,-0.24602102,0.48590326,-2.7997935,-0.16068786,0.061953876,0.35531884,-0.3303852,-0.23091078,0.020018332,-0.5354753,0.27211544,0.19686121,0.5673133,-0.7382107,0.52548873,0.46717384,-0.6252556,-0.10292755,-0.84496224,-0.13979739,-0.01882077,0.47952306,-0.010684212,-0.08510297,-0.05681509,0.1518769,0.6476096,0.039772447,0.09278619,0.3580974,0.48887846,0.3075186,0.6178802,-0.12999049,0.5683026,-0.20964536,-0.18046458,0.31240207,-0.28629822,0.17225844,-0.024168214,0.014205563,0.49200794,-0.4929064,-1.0476972,-0.5195132,-0.085963845,1.0043538,-0.40719688,-0.46464807,0.2092286,-0.1838623,-0.054906268,0.024131322,0.5414,-0.11795199,-0.08916895,-0.67866236,0.046419326,-0.045572057,0.17876813,0.15644178,-0.03807719,-0.29982477,0.59548825,-0.070882685,0.37286848,0.31674317,0.28670698,-0.28102097,-0.51387495,0.06942495,0.6330758,0.1687788,-0.021429634,-0.14313854,-0.3602406,-0.09612155,-0.14904073,0.07289528,0.6180406,0.78663915,-0.033544905,0.13690136,0.36192238,-0.089968406,0.07585524,-0.14352337,-0.21886571,-0.09220155,0.013603886,0.5206219,0.71632135,-0.14861843,0.58472514,-0.110718,0.21305908,0.06955732,-0.5212205,0.6100155,0.89795506,-0.18433352,-0.0700809,0.40688947,0.42712873,-0.3237,0.4036145,-0.5845422,-0.05268787,0.63303494,-0.19650245,-0.45307997,0.22729507,-0.16498251,0.15660448,-0.91847324,0.31274906,-0.3240844,-0.43099013,-0.5449096,-0.037921224,-3.3201709,0.25478002,-0.28309804,-0.18824038,-0.30989558,-0.095819905,0.26313114,-0.6283938,-0.53329164,0.1047244,0.24193197,0.6431878,-0.075832285,0.09405122,-0.33973604,-0.13607319,-0.25743675,0.15934464,0.21657303,0.40078792,-0.09754014,-0.46231553,-0.006373045,-0.036307946,-0.66470563,0.1839198,-0.56218135,-0.40253586,-0.03585791,-0.59191185,-0.26860157,0.54673505,-0.1900775,-0.0049006464,-0.30025098,0.15079568,-0.11054646,0.29729167,0.17625245,0.15728538,0.14146711,-0.014219081,0.12340326,-0.26880226,0.3987742,-0.02625528,0.31011182,-0.0050750654,0.055025026,0.1226837,0.4663458,0.7596209,-0.12791568,1.0220008,0.46544078,-0.082923315,0.23265703,-0.43038622,-0.21761635,-0.5011789,-0.36211297,-0.13619779,-0.37604234,-0.45570073,-0.009007406,-0.35562038,-0.75497615,0.65616804,-0.15178797,0.34887904,-0.06589797,0.33134988,0.5892731,-0.15064378,0.0809,-0.1449062,-0.23948641,-0.58015263,-0.15809545,-0.47517186,-0.49893874,-0.07782105,0.86399096,-0.3931545,0.12722407,-0.123050645,-0.26470006,-0.020696245,0.086950764,-0.055823293,0.5092772,0.37643963,-0.10611746,-0.681502,0.3860528,-0.035555795,-0.15204898,-0.60601336,0.27867705,0.6112429,-0.6346226,0.6186135,0.25136754,0.07847901,-0.11090063,-0.65543044,-0.2387092,0.2103696,-0.20485207,0.5085061,0.19133997,-0.783501,0.59209126,0.43820542,-0.4020433,-0.64448965,0.31074855,-0.0066532535,-0.42702103,-0.10887669,0.25472027,0.125956,-0.016388515,-0.2283197,0.29009697,-0.46167767,0.19354844,0.13803138,-0.113350056,0.28554687,-0.07589895,-0.20223165,-0.6966664,0.10321706,-0.5015205,-0.23210093,0.36426327,0.086859226,0.0070874733,0.13898157,0.053819664,0.4888981,-0.18689609,0.08185795,-0.13928773,-0.274174,0.06230533,0.60320276,0.2799866,-0.5594224,0.4609294,0.14374089,-0.4169774,0.11906708,-0.033139847,0.38902676,-0.07536792,0.32140845,-0.18732995,-0.22743489,0.27069905,0.613176,0.105798535,0.523062,-0.09609128,0.08766178,0.40912306,0.015807267,0.14521977,0.029210063,-0.5261582,0.030238628,-0.06077874,0.21401009,0.58906347,0.27276745,0.31832436,0.10100543,-0.26380432,0.02350189,0.16089109,-0.11215386,-1.278216,0.45013097,0.37577337,0.837688,0.4374314,0.14519085,-0.12014118,0.7240542,-0.38437536,0.06657267,0.4586747,0.14960645,-0.5346369,0.71578497,-0.74875504,0.41631052,-0.17464621,0.0076550017,0.2180817,0.20861807,0.38707766,0.8045995,-0.23724985,0.048845522,0.048035275,-0.13413051,0.0802928,-0.32131797,0.0036497752,-0.46915832,-0.3062687,0.63624364,0.3847966,0.32944977,-0.16030383,-0.053786017,0.20048866,-0.14303586,0.21011229,-0.010519874,-0.0668918,0.14910553,-0.5226456,-0.16175808,0.5596455,-0.024107965,0.15383552,-0.28142297,-0.17615916,0.09483667,-0.27062437,-0.1106424,-0.07260578,-0.736985,0.08135627,-0.17190836,-0.42282364,0.4896909,-0.25144556,0.18530267,0.2467943,0.08956682,-0.24836417,0.21674234,0.08519812,0.8154827,-0.020613719,-0.15946075,-0.458496,0.0059734504,0.27034596,-0.2097784,-0.07088627,-0.27620974,-0.012735617,-0.40163666,0.54242,-0.05131664,-0.4696728,0.10912969,-0.1148663,-0.0016056955,0.65697724,-0.19682044,-0.12836792,0.10556396,-0.26373658,-0.47444934,-0.14656787,-0.1379829,0.24417894,0.37605187,-0.15811189,-0.12406637,-0.18559602,-0.1566062,0.6982773,0.020637074,0.55401766,0.17627941,0.09175287,-0.17806835,-0.052524447,0.19064805,0.5284837,0.120976426,-0.036863282,-0.46541438,-0.24945217,-0.29878145,0.06189642,-0.03778087,0.3146885,0.015218946,-0.28710252,0.9606058,0.10255634,1.2306828,-0.09393989,-0.37121338,0.12721759,0.5158751,-0.0633123,-0.002784427,-0.4549825,0.83001,0.6103017,-0.04727642,-0.093755476,-0.3659332,-0.14847043,0.3455719,-0.34916884,-0.03215027,-0.005395317,-0.4383582,-0.30632845,0.30701303,0.19887818,0.087316945,-0.093950406,-0.08969578,0.0030283094,0.019830205,0.3136141,-0.46717706,-0.092353545,0.0762571,0.33411366,-0.035201486,0.1582346,-0.5631902,0.36035052,-0.46379706,0.21045771,-0.5016899,0.18127844,-0.10568517,-0.32818794,0.14526659,-0.099661335,0.22755848,-0.24066485,-0.33776492,-0.075023256,0.41139805,0.11198393,0.22215533,0.69748706,-0.32533875,0.16517782,0.13069758,0.5072856,1.1970555,-0.4308309,-0.120995365,0.23161678,-0.40188587,-0.6495561,0.4318821,-0.3676644,-0.22162676,-0.1214726,-0.23814635,-0.56149393,0.18861505,0.15965652,0.17446679,-0.004602305,-0.57100016,-0.15336673,0.39140835,-0.31114933,-0.22052911,-0.25100726,0.4212127,0.7487372,-0.22291903,-0.3788242,-0.013641062,0.21032873,-0.08342394,-0.42863828,-0.00803113,-0.24539852,0.38575575,0.035332028,-0.32598412,-0.11239885,0.1891232,-0.48903838,0.03143607,0.060275912,-0.30630052,0.20413749,-0.18297866,-0.031582892,0.90987813,-0.38859683,-0.12704968,-0.6833017,-0.4690488,-0.92000836,-0.38521203,0.24550171,0.120307714,0.10143101,-0.5594992,0.11842752,-0.10493803,-0.48873252,0.033478413,-0.50358623,0.40043926,0.12582757,0.4122029,-0.3315261,-0.7757549,0.08248493,0.10288853,-0.23520802,-0.6713839,0.7177364,-0.007792393,0.8148325,0.0466549,0.10843302,0.06694411,-0.298591,0.14666967,-0.25982454,-0.2572915,-0.8552096,-0.12186468,529 +230,0.5707178,-0.22915268,-0.32688242,-0.16969909,-0.10958416,0.14510226,-0.085622676,0.6179935,0.30128056,-0.4015501,-0.030157885,-0.11614748,-0.025386512,0.23091312,-0.14179191,-0.34386343,-0.18930407,-0.0033661823,-0.32094488,0.41928136,-0.48330557,0.37185755,0.04447672,0.3319605,0.10848842,0.35190347,0.114974484,-0.08978895,-0.31066892,-0.06865385,-0.029613016,0.36245593,-0.4402831,0.11104924,-0.076711155,-0.2736133,-0.09284257,-0.4556368,-0.25022015,-0.6385911,0.34541863,-0.76406294,0.36364162,0.04793903,-0.26354995,0.51054335,-0.21962428,0.2304453,-0.3258892,-0.012602258,0.13238995,0.020368882,0.1076292,-0.30949312,-0.12310596,-0.10736658,-0.54240835,0.06825514,-0.34231907,-0.20631857,-0.22807267,0.031145705,-0.28273928,-0.12076382,-0.061801057,0.424043,-0.55109847,-0.015984686,0.0929405,-0.12279649,0.35534278,-0.4728735,-0.17223594,-0.13416764,0.17312641,-0.32651553,-0.1910461,0.26749372,0.2891282,0.4890186,-0.18076637,-0.075268276,-0.42362192,0.03603119,0.10864694,0.44806066,-0.14184949,-0.5496952,0.008433302,-0.119901165,0.2117529,0.105342075,0.22078072,-0.19726877,-0.12136277,0.10461128,-0.23307796,0.32930967,0.44025618,-0.37106958,-0.3502039,0.39069477,0.6016716,0.10853281,-0.05819233,-0.12614778,-0.0019349098,-0.4786247,-0.15421107,0.13470554,-0.22356321,0.4366851,-0.048849624,0.14086252,0.68320984,-0.29604965,0.1563502,0.027212283,-0.050698176,-0.050993647,-0.22578636,-0.36251214,0.14544824,-0.33589974,0.065204695,-0.1832161,0.7138172,0.14724733,-0.8198378,0.46879488,-0.4440986,0.1249767,-0.073789276,0.5416035,0.6212524,0.48710364,0.2951107,0.52571255,-0.52907366,0.06452446,-0.10788288,-0.33512545,0.16181925,-0.1947449,-0.008943256,-0.48847097,-0.021962786,0.19723123,-0.27144778,0.21262808,0.26985252,-0.55114746,-0.034477178,0.05838022,0.7066914,-0.31954917,-0.04004299,0.66080266,0.9858348,0.80964255,0.02136246,0.9933701,0.29769897,-0.30462012,0.35576832,-0.5580161,-0.698203,0.24706252,0.3904193,-0.26935062,0.43841752,0.076874286,0.010457941,0.24860236,-0.22937585,0.08254752,-0.14400263,0.086887866,0.046514224,-0.133624,-0.33516148,-0.31429157,-0.09308198,0.025322856,0.102646686,0.2948164,-0.2654885,0.29528993,0.07593642,1.8958958,-0.06904671,0.10139693,0.026158722,0.5268253,0.13384432,-0.18134978,-0.0865307,0.40415943,0.3231854,-0.010674343,-0.6228542,0.21934459,-0.07288299,-0.556397,-0.043346517,-0.38523585,0.019675542,-0.027056165,-0.41233927,-0.032556485,-0.08574215,-0.34345138,0.43928662,-2.8515074,-0.12323789,-0.0416488,0.31227702,-0.36972153,-0.38756612,-0.12817578,-0.41586643,0.22304726,0.37859645,0.4526693,-0.76413804,0.1770911,0.41950214,-0.43952566,-0.10412369,-0.51305807,-0.18949969,-0.030587418,0.20911212,0.047697432,-0.0694903,0.08604036,0.07768781,0.47292697,-0.018267225,0.040081467,0.15063897,0.39656964,0.057039283,0.42102614,-0.0456809,0.35478225,-0.18005866,-0.12886314,0.3785879,-0.46068648,0.1912765,-0.011549822,0.110718586,0.2949603,-0.37153092,-0.8887024,-0.68053406,-0.23378658,1.2096263,-0.22687913,-0.43649295,0.2281425,-0.2401919,-0.32768828,-0.15670091,0.46191165,-0.038370993,-0.17155242,-0.86915547,0.086669795,-0.12872487,0.2091406,0.09268635,0.087758206,-0.32843882,0.59178865,-0.0064039226,0.55023277,0.30981934,0.12551233,-0.2541566,-0.32094273,0.062150232,0.8494743,0.2411541,0.18245491,-0.2353941,-0.16443253,-0.23996633,-0.013250749,0.1107543,0.36907223,0.59659934,0.053862497,0.107991055,0.23920579,-0.09740862,0.013748421,-0.21041423,-0.25294894,-0.053573046,0.035827875,0.59602445,0.5933854,-0.3012532,0.38963354,-0.032155316,0.13472182,-0.17153317,-0.44816077,0.5391309,0.8053616,-0.08506659,-0.1963992,0.55528206,0.44084072,-0.39432374,0.42507216,-0.65163887,-0.15227176,0.5065031,-0.26818287,-0.3483668,0.17429687,-0.3020786,0.20581713,-0.85906225,0.20632957,-0.22026332,-0.19233035,-0.47896814,-0.04962462,-2.965305,0.05129439,-0.07322886,-0.32431927,-0.014939936,-0.0457824,0.15137815,-0.68463117,-0.46489826,0.13480756,0.07220246,0.55156296,0.012217129,0.092368215,-0.29555458,-0.2915633,-0.27511975,0.104854375,0.016350504,0.39299732,0.07951956,-0.42081764,-0.14246188,-0.108864926,-0.31891492,0.06751914,-0.41592675,-0.5899133,-0.09564883,-0.50621736,-0.255864,0.59413797,-0.28655714,0.009639531,-0.072628975,-0.022543278,-0.19964594,0.30569503,0.13805081,0.10827314,0.0320297,-0.045498528,0.08143756,-0.33154428,0.4031804,0.06924748,0.23276795,0.37519833,-0.20527712,0.17261535,0.52013934,0.71375257,0.021798754,0.7164875,0.48248863,-0.10608717,0.24552749,-0.4388315,-0.15046555,-0.54838455,-0.31679666,-0.121491216,-0.33414438,-0.4837471,-0.124422185,-0.3776301,-0.726588,0.4088782,-0.13094571,0.20405401,-0.024301311,0.30326098,0.5595557,-0.11283469,0.010339325,-0.03657768,-0.13136502,-0.5749846,-0.27084216,-0.6403155,-0.45148343,0.34983927,0.89844704,-0.10943446,-0.03422386,0.048128698,-0.11439856,-0.0011019906,-0.05137334,0.023596514,0.14585263,0.34451395,-0.096857786,-0.50850165,0.44908032,0.12059531,-0.25907248,-0.5734663,0.1285597,0.55150425,-0.5317703,0.5158151,0.20015389,0.03150216,0.089614086,-0.44086948,-0.2714061,-0.0040705204,-0.13388847,0.3916257,0.2095671,-0.677525,0.3703944,0.44112974,-0.23860508,-0.5648707,0.48113325,-0.02293874,-0.2774019,-0.1619166,0.32382807,0.12834075,-0.0023869157,-0.023925578,0.2041594,-0.54179597,0.17244036,0.2787438,-0.03196903,0.3491226,-0.09051822,-0.05593811,-0.71163666,0.0996035,-0.40220478,-0.2484058,0.26816496,0.12416907,0.27319184,0.15000436,0.15516454,0.41006953,-0.28535542,0.010998539,0.09272087,-0.1385835,0.34066164,0.3875204,0.420029,-0.3761884,0.44330847,-0.034874253,-0.0111031495,-0.01842045,-0.016221635,0.48170382,0.14484215,0.19667652,0.105635785,-0.42231804,0.33641207,0.6547386,0.28344172,0.33345142,-0.001035738,-0.18430886,0.27906454,0.13341744,0.1496511,-0.0051676035,-0.43642232,-0.022709308,0.07051318,0.09876918,0.32199726,0.067667454,0.2649804,-0.17863421,-0.29242542,0.12327651,0.31808227,-0.10045255,-0.93599254,0.23425776,0.1562151,0.7555878,0.49484053,-0.03266505,0.035049286,0.5972716,-0.24334869,0.16219005,0.35407597,-0.043177128,-0.7165413,0.5067681,-0.54792005,0.5169957,-0.0065203826,0.0074227136,-0.06776716,-0.18704662,0.3580536,0.5959286,-0.1504757,0.02472644,0.006539178,-0.27095243,0.103219636,-0.3929966,0.12283961,-0.5437423,-0.08406026,0.6536373,0.34421575,0.36520654,-0.09422276,0.006038326,0.12332212,-0.062225834,0.10689971,0.044822566,0.20134917,0.077294014,-0.6021036,-0.15229605,0.47273,-0.009209394,0.10788686,-0.0569961,-0.2670164,0.25569206,-0.15071446,-0.2818903,-0.09768221,-0.56059974,-0.023100447,-0.26617864,-0.32331836,0.44421807,0.100439675,0.22323425,0.1706738,0.04912295,-0.26497024,0.33274317,0.28326443,0.79783064,-0.083492175,-0.21239497,-0.4713663,0.2650766,0.20714131,-0.15323777,-0.21676664,-0.12170402,-0.10031442,-0.43519402,0.36867175,0.031295374,-0.28016788,-0.044076275,-0.10434297,0.1442537,0.53345853,-0.18839951,-0.2605895,-0.25447407,-0.17215373,-0.27854052,-0.1791634,-0.12011981,0.31184137,0.21592419,-0.049311146,-0.14167532,-0.035982568,-0.0008346081,0.33349985,0.047715798,0.37798107,0.3763321,0.066698484,-0.32023576,-0.14285943,0.19795264,0.34616655,-0.033790655,-0.11227246,-0.40990308,-0.44001496,-0.33699366,0.25497884,-0.1252696,0.31565,0.064853534,-0.3775427,0.72050244,-0.053696092,0.9948027,-0.053009074,-0.28090152,0.121537425,0.4756259,0.068905085,-0.044904593,-0.34651458,0.92783296,0.51368433,-0.0366678,-0.1529705,-0.25817767,-0.110162355,0.075323865,-0.2356347,-0.05516041,-0.034571268,-0.78669876,-0.15999158,0.28282663,0.2980397,0.17384318,-0.04506452,0.12180747,0.15639986,0.10746429,0.33753502,-0.3282423,-0.21614113,0.31817982,0.24238695,0.13277534,0.086729005,-0.4183219,0.29783782,-0.5180337,0.06259544,-0.28141063,0.0790802,-0.12648931,-0.36072528,0.2306808,0.037944753,0.25941747,-0.28866777,-0.4467501,-0.30332428,0.46037,0.008887267,0.22014008,0.45645636,-0.25223827,0.13175668,0.069509335,0.4720781,0.9956886,-0.117507316,0.030500496,0.3938716,-0.31295094,-0.6513949,0.3646858,-0.22425693,0.31771106,-0.08651468,-0.07520021,-0.5512536,0.21877731,0.2193312,-0.019239118,0.04533035,-0.5307178,-0.32937375,0.24804278,-0.46261463,-0.19790073,-0.3373027,0.048713025,0.701821,-0.36205283,-0.21694906,0.0666547,0.26562884,-0.23956896,-0.43559054,-0.08179858,-0.30307397,0.269322,0.14234802,-0.30875942,-0.038898468,0.095926724,-0.24818635,0.1873394,0.15291952,-0.4443043,0.04734587,-0.3886613,0.050016984,0.8912079,-0.09153037,0.11909221,-0.51233697,-0.45615712,-0.9934617,-0.3432814,0.5646578,-0.0379322,-0.03880613,-0.5737598,0.054364145,-0.076579615,-0.11517052,-0.07355148,-0.39419183,0.49051887,0.10474825,0.28039372,-0.048863087,-0.66173774,0.026420971,0.13896376,-0.12531088,-0.6393932,0.45866823,0.0053327004,0.8580247,0.06922313,0.1480309,0.31805116,-0.54064,-0.13214971,-0.27012682,-0.30176607,-0.5454509,0.12671691,530 +231,0.38451442,-0.22912131,-0.4120676,0.0051033497,-0.2723107,0.13728738,-0.19350107,0.40037158,0.04868893,-0.3271786,-0.34832254,-0.23117682,-0.09249425,0.24982065,-0.1796277,-0.24556652,-0.14195497,0.1116268,-0.6133363,0.7772437,-0.24150953,0.1846226,0.07845459,0.349026,0.56231105,0.34712696,0.0128827095,0.059888594,-0.07190984,-0.18036194,-0.09029868,-0.01263423,-0.44660476,0.23007794,-0.33327484,-0.30468968,-0.14790025,-0.5534443,-0.40368646,-0.7879623,0.48768583,-0.92217076,0.5127223,-0.10249814,-0.18971278,0.32237193,0.3239916,0.4580649,-0.083050504,-0.23808973,0.23107643,0.027887743,0.0027758598,-0.11063998,-0.23291388,-0.29357606,-0.65329,-0.015784467,-0.3513617,-0.1585705,-0.3213494,0.15791318,-0.2371966,0.09429715,-0.08900988,0.49959967,-0.48798472,0.1884696,0.16794991,-0.05903607,0.19499345,-0.640777,-0.10629061,-0.1002954,0.26984656,-0.051415052,-0.050530538,0.3901178,0.18022975,0.27815625,0.036095854,-0.07292471,-0.22216678,-0.08569781,0.20174739,0.42404234,-0.032930065,-0.20695862,-0.09234211,0.077451356,0.3120233,0.2554724,0.2464438,-0.172723,-0.16765413,-0.10271914,-0.09351371,0.3872866,0.40154165,-0.31774828,-0.2304986,0.45623732,0.72181094,0.39027327,-0.16579264,-0.10262781,-0.06291194,-0.45813975,-0.05991841,0.07526692,-0.23052505,0.47358528,-0.08395777,0.30078313,0.59150547,-0.08884787,0.023949917,0.055674236,0.07297225,-0.28517953,-0.18394588,-0.2988308,0.16285841,-0.32093576,0.23305477,-0.11778324,0.61356276,0.0822988,-0.6274124,0.30112842,-0.6376893,0.17141543,0.0750531,0.39646137,0.65647,0.41235942,0.31366622,0.6864847,-0.21286711,-0.04079107,-0.1812328,-0.27811202,0.027899317,-0.16279088,-0.078411244,-0.50289226,0.06568034,-0.027447548,-0.17758434,-0.060001127,0.46927872,-0.47269762,0.027250059,-0.033060454,0.83157176,-0.19608808,-0.05357278,0.8610446,0.9617091,1.0754783,0.01436369,0.95875156,0.0469486,-0.18247803,0.24227217,-0.3113976,-0.61949635,0.29477307,0.48204416,-0.2649053,0.4323608,0.03799783,0.04403523,0.19794528,-0.37173712,0.04947981,-0.16647092,0.028147634,0.17591238,0.021013642,-0.40264797,-0.3262515,-0.033806585,0.045617413,0.15317042,0.15543877,-0.18876056,0.3559432,0.11196886,1.6745857,-0.03979645,0.11393415,0.22075526,0.43005645,0.105262965,-0.186132,-0.19604556,0.31178606,0.2801737,0.13101022,-0.5844612,0.12249541,-0.31034496,-0.3619117,-0.07157412,-0.41892287,-0.18456681,0.005860158,-0.28783026,-0.124327324,-0.29698378,-0.40665302,0.37768242,-2.9048107,-0.075870804,-0.20348834,0.31973222,-0.31551287,-0.31430808,-0.032212805,-0.46881694,0.44148862,0.28853193,0.4446188,-0.44643804,0.33669567,0.4594274,-0.7862787,-0.010174662,-0.603855,-0.027886685,0.059227057,0.4355834,-0.15318875,0.066711895,0.05476357,0.13083455,0.39279196,0.16304497,0.15319188,0.44971055,0.3585196,-0.0040305974,0.59054416,-0.05489309,0.35447592,-0.21688086,-0.06942418,0.35026494,-0.29762954,0.45189843,-0.18581297,0.08939649,0.5156509,-0.6395427,-0.67733186,-0.52971715,-0.34373215,1.2153848,-0.3202256,-0.42416012,0.21689695,-0.38366997,-0.23293614,-0.14829381,0.49061933,-0.14367057,-0.15152134,-0.6724691,-0.06322834,-0.08915739,0.08473872,-0.06740678,-0.04401844,-0.44527277,0.7851099,-0.02760812,0.5066779,0.2341895,0.1766328,-0.24354927,-0.44941577,0.102180496,0.6145531,0.52308816,-0.07819516,-0.2202219,-0.2025365,-0.46440184,-0.1383834,0.1481191,0.53451,0.44442898,-0.10079051,0.12089523,0.23293978,-0.016107695,0.09864157,-0.27301127,-0.17270856,-0.18966807,-0.12246934,0.5278772,0.55546534,-0.043973286,0.3915366,-0.0076789046,0.19903399,-0.05155929,-0.43649408,0.38285998,1.0291483,-0.20663717,-0.28937122,0.4997246,0.49922836,-0.095501885,0.39583486,-0.4485025,-0.1297204,0.49762994,-0.18491836,-0.52593637,0.14369126,-0.2733965,0.092975505,-0.6816719,0.07090418,-0.32890046,-0.4489938,-0.49198705,-0.03244262,-2.6909902,0.1997114,-0.22223641,-0.31593996,-0.20429493,-0.26784247,0.13346083,-0.5205931,-0.74022734,0.10459896,-0.024469035,0.7476031,-0.16572623,0.09893784,-0.111353904,-0.3171551,-0.5040371,0.10292607,0.17270851,0.48149505,-0.22569636,-0.35260668,-0.0066010356,-0.12445373,-0.431714,-0.05453132,-0.4908375,-0.27331343,-0.2070567,-0.45266002,-0.27862123,0.5405051,-0.22694273,0.12836237,-0.20043509,-0.05750947,-0.002043438,0.2409798,0.1117202,0.15200955,0.16745421,-0.07785211,0.033529177,-0.23591141,0.4084547,0.06536665,0.2705221,0.29206753,-0.14563054,0.48662817,0.22913072,0.5650631,-0.13740991,0.8830263,0.37351578,-0.10385704,0.24951622,-0.12688692,-0.25191846,-0.5284082,-0.040019803,0.011422913,-0.3194125,-0.60701066,-0.21646158,-0.32319462,-0.7339354,0.46559212,0.04856634,0.42129382,-0.081453085,0.14398544,0.60104537,-0.14321724,-0.028732311,0.027421588,-0.10309114,-0.5271026,-0.26925468,-0.5593267,-0.47169542,0.090848155,0.9813882,-0.21768995,-0.026257379,0.016415948,-0.42336166,0.05209573,0.16524537,-0.13155,0.15371273,0.3635093,-0.12223085,-0.6444117,0.5266067,0.11497761,-0.11250194,-0.4972655,0.27900696,0.5274279,-0.45685798,0.41580746,0.17517394,-0.06449894,-0.40586936,-0.36833766,0.04687099,-0.14631823,-0.38576502,0.3478075,0.27996063,-0.6333738,0.23965698,0.13048328,-0.11530604,-0.8057335,0.62500274,0.009913338,-0.1747816,-0.06194573,0.33888534,0.17114067,0.07321683,-0.29240692,0.24184094,-0.39979076,0.2253155,0.14373954,-0.07702633,0.09824824,-0.22005422,-0.06316783,-0.6976134,0.20292956,-0.45248362,-0.20674899,0.39956748,0.17946559,0.07429843,0.1312234,0.26357633,0.3531495,-0.18251851,0.12516245,-0.10049868,-0.14223416,0.2752106,0.4562359,0.52110124,-0.51189405,0.5667346,0.10875599,-0.12073615,0.15855257,-0.022304932,0.31598994,-0.040910535,0.36689964,0.1587916,-0.26399043,0.19379759,0.44476023,0.25127524,0.40785334,0.12711893,-0.22519556,0.2424851,-0.020004774,0.29757357,-0.1726962,-0.7760048,0.050790954,-0.17576332,-0.006689489,0.42528522,0.11089594,0.17642742,-0.12565418,-0.27486506,-0.017784135,0.08790623,-0.181703,-1.0172242,0.32748762,0.2226622,0.8344374,0.48944822,-0.101404294,-0.040087834,0.80652505,-0.2187006,0.020347845,0.38919735,0.08359609,-0.58448434,0.53354865,-0.65446216,0.54141337,0.039652992,-0.16201933,0.015926171,0.06324487,0.38182485,0.74555135,-0.25340423,-0.07361223,-0.079375155,-0.3132626,0.23029505,-0.26296356,0.07688745,-0.6536752,-0.3476806,0.5483973,0.48380837,0.39077646,-0.061434396,0.04457328,-0.022792079,-0.1858681,0.31598055,0.22343366,0.024894655,-0.11084868,-0.6988575,-0.14787151,0.35394594,-0.20464954,0.18131712,0.10738205,-0.21078472,0.16569851,-0.10784519,0.103019305,-0.06464643,-0.81658643,0.016178926,-0.18445517,-0.34890592,0.25828475,-0.081935935,0.39278945,0.21244766,-0.018164687,-0.2400628,0.25497472,0.025861586,0.7073709,-0.04221126,-0.13598819,-0.26175842,0.24756299,0.10224519,-0.15095115,0.03117278,-0.0689624,-0.0007068356,-0.6774488,0.55143625,0.008313179,-0.37234586,0.009211158,-0.12858982,4.972418e-05,0.59941155,-0.036438607,-0.11054944,-0.20705572,-0.2339974,-0.34996003,-0.31474656,-0.067489006,0.175283,0.19735752,-0.049004447,-0.16428988,0.029407978,-0.08460761,0.46499607,-0.023872351,0.49352965,0.3061215,-0.036170542,-0.3475081,-0.17768279,0.098134756,0.4048987,0.059972513,-0.055605765,-0.23762989,-0.43664104,-0.3536788,0.3588949,0.004201887,0.4808551,0.12513512,-0.11964246,0.58591205,-0.1444568,1.1316231,0.10280406,-0.35380822,0.10504864,0.5876607,-0.013239384,-0.28377548,-0.25179768,0.80796224,0.40503556,-0.00087288616,-0.117676,-0.40212968,0.01493994,0.12426688,-0.2035357,-0.07804171,-0.036323536,-0.48826426,-0.23250729,0.04283445,0.22397305,0.24732514,-0.14636874,0.004423173,0.30178696,-0.103850685,0.43613917,-0.18742631,-0.41840804,0.4386085,0.035810925,-0.0692958,0.09319995,-0.51575166,0.48729312,-0.47365946,0.115238756,-0.106589414,0.22913964,-0.23238482,-0.30520502,0.24321993,-0.04464469,0.42439142,-0.31290588,-0.48680156,-0.34980997,0.44748682,0.16248083,0.14563455,0.53684276,-0.29701152,0.031181427,0.019898552,0.50678796,0.8139259,-0.051488716,0.08310942,0.2954849,-0.45821625,-0.6089315,0.4165226,-0.38458893,0.2633879,0.12832968,-0.06863859,-0.39638153,0.203774,0.21044649,0.075928465,-0.04332743,-0.7302349,-0.30885828,0.19578432,-0.1608621,-0.06998941,-0.3616597,0.009835561,0.5704781,-0.23210195,-0.38824043,0.036449306,-0.022930019,-0.06552999,-0.53935397,-0.07670857,-0.317154,0.29138896,-0.19466496,-0.27331442,-0.2229313,0.18580271,-0.41869804,0.136691,-0.13269398,-0.35596895,0.027184209,-0.36177298,-0.02116838,0.8405291,-0.3194846,0.032440808,-0.27421156,-0.46384528,-0.7114867,-0.32290745,0.13345142,0.13243014,0.11171617,-0.4940538,0.038499847,-0.293056,-0.057788435,-0.026607621,-0.4219708,0.37301022,0.1628065,0.32832012,-0.030159187,-0.6851539,0.32519934,0.011662317,-0.07488518,-0.5273293,0.48555508,-0.029389897,0.5605408,0.11073222,0.1386485,0.110132344,-0.50503916,-0.10811723,-0.07964236,-0.04905549,-0.5525917,0.12518866,531 +232,0.3820969,-0.088073574,-0.5793608,-0.061827358,-0.07225851,-0.0077517508,-0.22685553,0.55981505,0.2183953,-0.42226565,-0.053866245,-0.18005185,-0.18630987,0.4918951,-0.18309686,-0.6819814,-0.046354655,0.000118923184,-0.47278067,0.6597842,-0.2700864,0.23608041,-0.11788319,0.34120214,0.33288518,0.44748646,0.09532474,-0.07130203,-0.15068556,0.0029317776,-0.021108676,-0.02608375,-0.6153705,0.09977843,-0.2295256,-0.22400256,-0.050035994,-0.4024643,-0.4424393,-0.8104376,0.52382624,-0.70431507,0.4950709,-0.15628478,-0.1504769,0.12414264,0.3255392,0.49455833,-0.2737632,-0.11674843,0.18192032,-0.031295024,0.0146857025,-0.11750098,-0.27755865,-0.3047283,-0.5072533,-0.0009602785,-0.5466208,-0.17661135,-0.28514707,0.06883911,-0.39540675,0.114421606,-0.21815681,0.44285005,-0.42073393,-0.095839135,0.25549558,-0.20718518,0.16723807,-0.6482728,-0.07781479,-0.06180749,0.23090926,-0.06203403,0.083808206,0.58721095,0.012009605,0.35661882,0.11605073,-0.11943548,-0.34603855,-0.13197869,0.08850599,0.39985734,-0.07481059,-0.4996216,-0.021753248,0.13548718,0.22002415,0.24361105,0.07467014,-0.18781596,-0.050393123,0.03232095,-0.16029003,0.35801136,0.563551,-0.17030008,-0.17071046,0.23872334,0.6787743,0.43174362,-0.104217194,0.025018184,-0.047067594,-0.38032562,-0.20982672,0.14769341,-0.09427571,0.42851058,0.00016978482,0.21944323,0.71355814,-0.23413788,0.14414598,-0.20520504,-0.059119105,-0.038411703,-0.3585287,-0.15289226,0.14613758,-0.45715123,0.3526107,-0.16634175,0.6950501,0.23994507,-0.53510827,0.40430278,-0.5594606,0.10749598,0.17022328,0.47987634,0.54426986,0.44859582,0.2782686,0.7751447,-0.41850427,0.15921988,-0.24349871,-0.3879226,-0.011316367,-0.12286695,0.111426815,-0.3382489,0.11908548,-0.008582557,-0.1503625,-0.0071307025,0.25147727,-0.37522376,0.02502543,-0.12974282,1.0481355,-0.23483826,0.020733627,0.78575253,0.92751163,1.0326531,-0.054846484,1.0307711,0.19428025,-0.31395277,0.30006334,-0.29519948,-0.7715538,0.26649016,0.30754262,-0.13241759,0.38712266,0.10561561,-0.07168508,0.28576082,-0.39084443,0.11797669,-0.17114058,0.3278052,0.22556342,-0.054772984,-0.27769443,-0.26203385,-0.07248165,-0.098583184,0.17468247,0.15893528,-0.06114203,0.36190504,-0.04117233,1.9271721,-0.007333215,0.1013124,0.23950627,0.7627947,0.20731324,0.09763401,-0.20125493,0.21726602,0.32251665,0.0977752,-0.56655705,0.10397147,-0.4253206,-0.5007806,0.006588155,-0.3507413,-0.11417234,-0.18944542,-0.37426907,-0.113614894,-0.16675453,-0.21670271,0.3806774,-2.613446,-0.097498335,-0.042102143,0.28172618,-0.46553692,-0.33406267,-0.13802367,-0.49364248,0.51440394,0.27026272,0.45515078,-0.5351471,0.36551753,0.45648187,-0.5096778,-0.13438174,-0.47891137,-0.002643445,0.049485724,0.41791207,-0.18385817,-0.05464101,-0.022782546,0.18188652,0.47651485,0.046780646,-0.06535123,0.3511774,0.32622442,-0.03752717,0.5079734,-0.07828857,0.36292145,-0.47280538,0.027952898,0.3427032,-0.44402263,0.360635,-0.14414527,0.105669476,0.35953072,-0.54527056,-0.78206384,-0.46743843,-0.21676953,1.1784885,-0.22487354,-0.30451897,0.21800779,-0.36192197,-0.046034332,-0.21124716,0.51495147,-0.13596712,-0.08614957,-0.5979719,-0.04183153,-0.17316829,0.20204605,0.057443567,0.13780187,-0.29921913,0.68660843,-0.09003343,0.4302542,0.31010565,0.14729923,-0.20162958,-0.50862163,0.18648429,0.6715842,0.33636686,0.06196626,-0.14622228,-0.1874018,-0.33580476,-0.3218861,0.09482949,0.56253356,0.79877734,-0.0043620467,-0.062318258,0.28457502,-0.11226422,0.07622392,-0.109895155,-0.3512202,-0.19582948,-0.07375871,0.51641905,0.52362806,-0.2535986,0.42565066,-0.11973627,0.27377662,-0.15914348,-0.25122064,0.44206536,0.7170327,-0.26482168,-0.21526346,0.21818672,0.378814,-0.24867047,0.45722216,-0.622829,-0.25389516,0.6418078,-0.15459843,-0.5006903,0.20698348,-0.21701524,-0.03631486,-0.7693129,0.08759741,-0.46674055,-0.1977021,-0.56180024,-0.22519669,-3.0392113,-0.040971972,-0.297244,-0.2731575,-0.27030477,-0.014659218,0.098073706,-0.62313306,-0.7338054,0.058029197,0.030712523,0.63632333,-0.06509123,0.13224591,-0.23815273,-0.14945598,-0.49708667,0.05319996,0.18101232,0.4135119,-0.01582137,-0.35032994,-0.17168526,-0.21654005,-0.53750294,0.14006029,-0.4298349,-0.26629573,-0.31108874,-0.63414055,-0.2502905,0.7016183,-0.30720875,0.07201998,-0.08891097,-0.040722728,-0.04396362,0.3550963,0.27765483,0.102863386,0.1411747,-0.13969061,0.1192691,-0.27154133,0.29723972,0.13968916,0.51709825,0.2761596,-0.16963361,0.18372224,0.42964408,0.8804442,0.036601044,0.64014524,0.23475161,-0.07592262,0.5130797,-0.50005466,-0.33799165,-0.45593512,-0.26932546,0.12306671,-0.15099595,-0.5585602,-0.23700124,-0.48176,-0.7462581,0.46115252,-0.0043763616,0.2716374,0.058381774,0.0690809,0.49016997,-0.079750456,0.06465104,0.13119473,-0.0035997361,-0.5577,-0.22890504,-0.59340125,-0.6508402,0.153274,0.90268695,-0.18648118,-0.25484648,0.04441581,-0.37903562,0.11838824,0.011986201,-0.05062574,0.08374482,0.33430877,0.00957065,-0.64219356,0.5637011,-0.041872792,-0.25807568,-0.5285435,0.18775466,0.5760157,-0.7129056,0.3940607,0.14004748,0.078977264,-0.15778205,-0.4184922,0.019470425,-0.078218736,-0.09684394,0.20080137,0.024698235,-0.5522025,0.30556193,0.28827986,-0.35755688,-0.713233,0.421725,0.012685581,-0.20837933,-0.06698772,0.36359635,0.21068461,-0.022601627,-0.3008121,0.14557037,-0.46998948,0.12084135,0.2915612,-0.050676566,0.36922127,-0.092262894,-0.21689278,-0.6737157,0.2585283,-0.4484783,-0.27880973,0.40904495,0.1616672,-0.0073615075,-0.10671607,0.12608194,0.28587568,-0.24610987,0.09708818,-0.05743162,-0.19064493,0.44186744,0.35789368,0.5322842,-0.5377003,0.6228058,-0.06907807,0.031368382,0.4014665,0.04474932,0.3475141,0.04098988,0.2603094,0.18062595,-0.28351593,0.11008488,0.6662636,0.2548567,0.35202286,0.08443562,-0.25186926,0.297135,0.16477509,0.056221765,0.19482626,-0.561824,0.08793828,0.126157,0.052371185,0.5437838,0.2052543,0.26731464,0.016517902,-0.30709985,0.012947952,0.30655816,-0.40731537,-1.2751864,0.43072632,0.11093124,0.83036524,0.4258531,0.03373867,0.1573413,0.67917067,-0.0065622567,0.13793232,0.42718518,-0.0048842034,-0.57419115,0.5725982,-0.5209876,0.6065622,0.17998269,0.031422924,0.06525864,0.22921608,0.46780547,0.6805441,-0.19295806,-0.1697097,-0.120248675,-0.1861339,0.012291924,-0.4342782,0.064116694,-0.3632597,-0.3653317,0.35991818,0.4000184,0.23075594,-0.098808765,0.01794465,-0.00609897,-0.1463447,0.32876962,-0.1712978,0.041318152,-0.0070347786,-0.5538344,-0.4868167,0.445443,-0.18788053,0.20153375,-0.07968361,-0.11169513,0.33745876,-0.046024267,0.09320072,-0.113003224,-0.6936963,0.2614745,-0.3218431,-0.32302862,0.19921528,-0.033113636,0.4500661,0.21437404,-0.014674308,-0.46797925,0.51511383,-0.012887995,0.7504503,-0.37626633,-0.4037213,-0.5068785,0.12855585,0.27132717,-0.28908154,0.07717698,-0.17067914,-0.12955269,-0.4628006,0.38633072,-0.16821732,-0.18118912,0.06711295,-0.3358088,-0.13518216,0.63206214,-0.28103822,-0.08110391,-0.20826991,-0.19390734,-0.13198216,-0.39454982,-0.12383927,0.17311804,0.22282681,-0.10514658,-0.124366425,-0.11611791,0.06523564,0.56015,-0.04311881,0.32845223,0.26432112,0.11791755,-0.4128771,-0.19005278,0.23507851,0.4219301,0.28608173,0.01644746,-0.3757218,-0.42240956,-0.3344118,0.37025866,-0.21193379,0.3051134,0.2151231,-0.38955978,0.6589552,0.12878689,1.1655457,0.108304895,-0.30248848,0.21932861,0.5868586,0.049500704,-0.022223437,-0.45700207,0.93555486,0.4629549,-0.16279794,-0.12695633,-0.25552592,-0.08329641,0.14215094,-0.3086677,-0.029412726,-0.09530118,-0.4916124,-0.26942444,0.21116047,0.21083727,0.103882395,-0.13219768,-0.2322052,0.037856262,0.044379298,0.53589493,-0.32608262,-0.31605992,0.3830363,-0.044404354,0.02039365,0.05739343,-0.5534676,0.52220565,-0.48405486,0.18834049,-0.31982085,0.17598289,-0.13486268,-0.26979822,0.22872803,-0.046627782,0.43483263,-0.37327424,-0.42812642,-0.32306376,0.38762406,0.18447848,0.22726528,0.620107,-0.24429867,-0.0076429048,0.011424422,0.58880603,0.8177354,-0.063547954,-0.019198166,0.31170732,-0.3435845,-0.548966,0.2871248,-0.2630906,0.17524329,-0.13267362,-0.106529795,-0.56463695,0.25890106,0.1520353,-0.15789977,-0.08487972,-0.7837884,-0.3781883,0.10068281,-0.27274936,-0.314779,-0.5165736,0.03857998,0.7668648,-0.29353616,-0.3221098,0.27986076,0.10168077,-0.05915629,-0.56283927,-0.131665,-0.2383309,0.33403715,0.10050027,-0.27659643,-0.13550477,0.27968735,-0.48661545,0.1551917,-0.024632962,-0.43903705,-0.115376435,-0.114144914,-0.0904587,0.81964505,-0.13357607,0.051888693,-0.5166939,-0.3922862,-0.90544796,-0.36296654,0.45018014,0.074843384,0.057582345,-0.66141814,-0.058127474,-0.14651212,0.11077838,-0.0067781,-0.4801492,0.32140383,0.19365433,0.36860266,-0.30881748,-0.6791235,0.21328619,0.19444942,-0.1990111,-0.57437515,0.47803268,-0.067816906,0.7500679,0.05433382,-0.048538376,0.27566776,-0.4439266,0.0071169455,-0.23932555,-0.16818307,-0.47740585,0.27210522,532 +233,0.40442163,-0.08123167,-0.6056547,-0.16819912,-0.11548204,0.12582904,-0.16457354,0.3861938,0.24139209,-0.57544583,0.019221505,-0.1380443,0.15153152,0.35569292,-0.1725809,-0.5044201,0.032734226,0.12909347,-0.49027568,0.3221062,-0.41953653,0.12741166,-0.0722337,0.31730187,-0.025165025,0.29910722,0.1485233,-0.1865643,-0.22512512,0.0025541463,-0.038138323,0.21283272,-0.42616904,0.0195658,-0.21043468,-0.21442154,0.047116317,-0.50392365,-0.55756444,-0.4750412,0.2697921,-0.7512556,0.5374317,0.20556338,-0.2236019,0.29409888,0.12256398,0.1643001,-0.1419254,0.007970095,0.25140652,-0.19135343,-0.050286707,-0.30701068,-0.50710374,-0.4173355,-0.63686424,0.016453655,-0.46704683,-0.084633775,-0.28034678,0.050777555,-0.20386457,-0.13815099,-0.061498247,0.41751137,-0.31999677,-0.12563531,0.2391749,-0.10615802,0.38456213,-0.41537544,-0.15988533,0.03483314,0.2089818,-0.31056228,-0.14790876,0.29693907,0.24335714,0.5252275,-0.13660456,-0.16799815,-0.49529022,0.021595526,0.12631041,0.5223433,-0.36398697,-0.23947555,-0.12432846,-0.06540878,0.012418326,0.20017369,0.083569564,-0.38193217,-0.050902344,0.12088564,-0.16640557,0.35349256,0.5921717,-0.33706185,-0.27352592,0.32733336,0.4129138,0.09023586,-0.2085221,0.04619504,0.047906827,-0.6035566,-0.22602458,0.23460184,-0.08471303,0.55065984,-0.04001383,0.24688905,0.6699047,-0.06407554,0.042376336,0.04506607,0.12215665,0.080776915,-0.27913803,-0.051217444,0.16142768,-0.5390567,0.091703154,-0.11036103,0.60023665,0.13714263,-1.0163794,0.4236026,-0.45667565,0.11891305,0.034049317,0.39704028,0.66087306,0.32645336,0.17437236,0.6410806,-0.5883756,0.10671806,0.01634549,-0.43908235,0.21797352,-0.023597471,0.04411515,-0.63107437,-0.21807712,0.18461987,-0.016700847,0.20308219,0.37512964,-0.4023948,-0.0581223,0.3933917,0.9511436,-0.25813672,-0.13609505,0.53107285,1.0509137,0.8122865,0.06987946,1.2067205,0.032219205,-0.21678302,0.4146429,-0.45112324,-0.827004,0.20578642,0.27369243,-0.08732664,0.31386292,0.20336756,0.122685194,0.36846834,-0.40719974,0.12969166,-0.11589073,0.09763624,0.041723046,-0.08073279,-0.33485857,-0.2897376,-0.06616119,-0.15018041,0.036390748,0.2623325,-0.15099292,0.23953393,0.06812994,1.5751191,-0.044978146,0.16620535,0.14277591,0.52211124,0.15894076,-0.066616274,-0.2391009,0.34549272,0.3071578,0.124911405,-0.3346106,0.037237413,-0.23078607,-0.42013216,-0.13482854,-0.40814734,-0.09584619,-0.012111904,-0.6387438,-0.03787052,-0.0138065135,-0.5877527,0.5923494,-3.0001588,-0.055710666,-0.028506227,0.39885297,-0.20607813,-0.36721045,-0.1978909,-0.45700464,0.50227153,0.3463092,0.35671017,-0.6097113,0.44118786,0.43691355,-0.37586215,-0.034354124,-0.677391,-0.113170385,-0.16064616,0.21741988,0.035387453,-0.078068495,0.08108146,0.32282346,0.4208648,-0.08580421,0.035527576,0.15323423,0.24251394,0.13158907,0.40061933,-0.079218976,0.48492584,-0.31268248,-0.22301564,0.28247052,-0.43069908,0.04721039,0.048336107,0.15924694,0.38467172,-0.40704778,-0.8663333,-0.54176676,-0.19924137,0.9437541,-0.194537,-0.19839248,0.4505013,-0.35510364,-0.5248245,-0.12968987,0.46366245,-0.0020316492,0.06141912,-0.769205,-0.04386504,-0.061893288,0.06710594,-0.043087896,0.087775186,-0.3732501,0.51766104,-0.0759377,0.5568269,0.3699414,0.15465643,-0.34759566,-0.31850478,0.051756285,0.8571453,0.14962134,0.22531568,-0.07673324,-0.18938926,-0.220764,-0.14189383,0.09203492,0.42089608,0.65293825,-0.08021048,0.040816884,0.29334864,0.0035381773,-0.0006641666,-0.09007309,-0.30919763,-0.061366737,-0.013069626,0.49385267,0.5815024,-0.17614664,0.33075988,-0.1071584,0.20826514,-0.29130477,-0.34214363,0.5047706,0.7822544,-0.11923668,-0.24404725,0.52258575,0.48718387,-0.36659,0.42352235,-0.54432815,-0.21703626,0.3677247,-0.17232116,-0.5281635,0.1376244,-0.27621493,0.10931907,-0.70345145,0.36138353,-0.08928741,-0.5565757,-0.3606208,-0.21342705,-3.7484941,0.1135875,-0.31698242,-0.24421015,0.09917816,-0.03562154,0.24850792,-0.59363014,-0.33293897,0.17227268,0.0637794,0.68085986,-0.02270337,-0.0008588314,-0.32792467,-0.22862455,-0.42714664,0.2260301,0.12128305,0.33607987,0.03148444,-0.38862106,-0.006755646,-0.30501387,-0.438517,0.07882186,-0.66919124,-0.32066664,-0.20059116,-0.547961,-0.49754703,0.65296835,-0.38147697,0.028314868,-0.32191196,-0.026321758,-0.20739625,0.50367796,0.1882268,0.22023672,-0.08353199,0.022636019,-0.09661916,-0.32451364,0.3380394,0.058313694,0.27293503,0.48422757,-0.014656887,0.15795197,0.5427446,0.69297576,-0.030803012,0.853639,0.5277909,-0.033244465,0.36326542,-0.322524,-0.15621088,-0.5241208,-0.43398544,-0.04119315,-0.42947558,-0.495792,-0.14891683,-0.3748618,-0.6685139,0.51758903,0.028504014,0.13673791,0.04017908,0.059303537,0.37930673,-0.38779387,-0.07347205,-0.07014886,-0.17408492,-0.43505695,-0.22757745,-0.6495183,-0.6232826,0.17880979,0.86824787,0.015522566,0.00090084475,0.13434651,-0.24151418,0.070069045,0.26332188,0.09174445,0.27602798,0.41884714,-0.08565818,-0.5779466,0.4876122,-0.17686033,-0.25464457,-0.6716124,0.12808451,0.46908206,-0.60537255,0.8255456,0.31517,0.15126783,-0.22277735,-0.53462297,-0.3979751,-0.09821275,-0.19146729,0.48231933,0.16739537,-0.9301793,0.3937098,0.3373383,-0.34159335,-0.5795872,0.558829,-0.014851188,-0.109344214,0.06788782,0.30000108,-0.08848643,-0.081091516,0.08003749,0.23117085,-0.42254582,0.32893947,0.41800186,0.11903105,0.4891686,-0.20488565,-0.066349275,-0.6359942,-0.13484058,-0.56312734,-0.22317266,0.27112296,0.05607494,0.14985372,0.13754426,-0.06564642,0.30620968,-0.38096467,0.19468366,0.019565642,-0.31898203,0.3046161,0.36035487,0.4621755,-0.29839134,0.5416137,-0.15273425,-0.098465726,-0.06086874,0.09621586,0.4874147,0.20681718,0.3490301,-0.12259617,-0.26881352,0.19579177,0.79427874,0.14219648,0.3755613,0.14067243,-0.120031714,0.21268173,0.093881935,0.0012795528,0.047250643,-0.42937025,0.012777378,-0.17561558,0.3116453,0.31051067,-0.0079833465,0.30803692,-0.20127797,-0.22180298,0.043738764,0.23398356,-0.030399524,-1.3152848,0.2956077,0.23801205,0.7509679,0.4224254,0.07035017,-0.13400714,0.5786928,-0.10242233,0.19551611,0.26652965,-0.19185114,-0.56209296,0.510366,-0.5671568,0.54265076,-0.02613899,-0.10114645,0.06784757,-0.0018281654,0.3587522,0.796125,-0.08298149,0.15065564,0.08630352,-0.27999762,0.26481918,-0.38603157,0.23687258,-0.48718184,-0.24056077,0.64144015,0.5472791,0.4944003,-0.11693453,-0.034229632,0.04051752,-0.16217558,0.09168022,0.047263548,0.12365634,-0.020405002,-0.71955925,-0.3245416,0.45217654,0.04864826,0.1321517,0.13598041,-0.17268063,0.25681317,-0.20383257,-0.01584537,-0.09850068,-0.5945017,0.027962986,-0.1898621,-0.45659977,0.5162639,-0.2811966,0.32828522,0.2232822,0.15022616,-0.34753767,0.5945737,0.1983313,0.8142888,-0.045667242,-0.11127166,-0.49163967,0.047867797,0.22743173,-0.1737002,-0.013891022,-0.5312694,-0.022971185,-0.5422159,0.3342931,-0.018096784,-0.19324191,0.028737184,-0.071358405,0.20080802,0.6096227,-0.13091625,-0.25469705,-0.0903944,0.11084136,-0.29966697,-0.09073779,-0.10668739,0.28700578,0.06199495,-0.046238128,-0.025146667,-0.15466881,-0.007247631,0.21321079,0.1324916,0.3790287,0.40678692,0.11657388,-0.3118717,-0.032521542,0.19699615,0.47502175,0.05605821,-0.024291592,-0.27082887,-0.35342452,-0.25867656,0.102861516,-0.12632567,0.2869629,0.136403,-0.117317446,0.69344574,-0.15268378,1.0766796,0.18151958,-0.22733116,0.031913195,0.38966998,0.023252197,0.040859576,-0.41025078,0.8226144,0.59307647,0.008558678,-0.20109305,-0.26692465,0.0042661824,0.2006708,-0.19508366,-0.14069447,-0.032011967,-0.75411165,-0.08047335,0.10235042,0.16435657,0.3971958,-0.11050156,0.036255524,0.20979944,0.04455695,0.22672892,-0.4517458,-0.0069828867,0.2908512,0.42140776,0.0395617,0.21158628,-0.3776851,0.41965505,-0.38485998,-0.093783125,-0.19425559,0.0975925,-0.16897024,-0.33387688,0.16578704,-0.008538397,0.44770786,-0.100067444,-0.22681968,-0.16833471,0.51851207,0.20240897,0.2940588,0.68809336,-0.15999451,0.013917879,0.049218122,0.42281106,0.99714625,-0.19708459,-0.093996815,0.46524334,-0.2780272,-0.74622154,0.09917723,-0.373542,0.31131217,-0.13772412,-0.22201914,-0.33909687,0.22100642,0.10379359,-0.13873006,0.19520734,-0.44082865,-0.21902353,0.19778076,-0.3126455,-0.32414767,-0.36091194,0.14009267,0.60273683,-0.31638357,-0.13549486,0.13123444,0.17295106,-0.07792045,-0.46240193,0.08883119,-0.33221582,0.13732024,0.11511079,-0.45836112,0.05942426,-0.081147425,-0.26828042,0.24951321,0.23565947,-0.34520617,0.059329167,-0.22124977,-0.23362795,0.9004616,-0.1340279,0.10930226,-0.5446579,-0.5124388,-1.0169582,-0.42726192,0.39859846,0.028733628,0.015436019,-0.49476385,-0.053150535,0.034338497,0.019477606,-0.06376112,-0.37611148,0.3985359,0.085941225,0.3751416,-0.10830288,-0.6069002,-0.03569002,0.17906937,-0.22445525,-0.58518684,0.57297903,-0.116414025,0.89877665,0.12657101,0.094147034,0.34858236,-0.41948527,0.060816135,-0.38234884,-0.12912926,-0.61778045,0.059449792,542 +234,0.38085282,-0.06742072,-0.6622934,-0.003776749,-0.13768879,0.022629745,-0.33199197,0.17981215,0.06288911,-0.3519815,0.007963999,-0.046364315,-0.122743614,0.16838057,-0.2904321,-0.52923626,-0.09409551,0.13104846,-0.52770865,0.47922948,-0.32938612,0.3362265,-0.06240447,0.23100458,0.07442028,0.18141259,0.29000875,0.0005567044,-0.107144274,-0.18461789,0.23481931,0.09131852,-0.77262574,0.14758497,-0.23612516,-0.47944212,0.04406679,-0.26523092,-0.4384953,-0.66859794,0.2482704,-0.8046566,0.57475203,0.12262327,-0.23926172,0.28903654,0.10351919,0.28008977,-0.21973675,0.15315269,0.23735365,-0.32709485,-0.08287631,-0.34200275,-0.13263087,-0.3304279,-0.54807186,-0.11756631,-0.6931213,0.08809606,-0.3053312,0.17567548,-0.2607134,0.093248576,-0.2706481,0.30454636,-0.46712402,-0.07673081,0.12575296,-0.026095828,0.3759283,-0.53968453,-0.13346152,-0.06470242,-0.1367651,-0.10751936,-0.1048664,0.35849756,-0.020451205,0.4049601,0.048439067,-0.17126186,-0.24719235,-0.13213101,0.23657556,0.34888414,-0.20615426,-0.14390947,-0.20595078,-0.16496179,0.25407898,0.1813497,-0.060438737,-0.098493144,0.10035305,0.047753986,-0.20361385,0.40361753,0.65204227,-0.3246089,0.0045952797,0.18809018,0.44110346,0.06175473,-0.12322358,0.06060213,-0.11791734,-0.43611953,-0.27758518,0.06644075,-0.2720316,0.49949735,-0.091269,0.2027557,0.43912405,-0.33951387,-0.011350846,0.1372371,0.09207355,0.1370598,-0.15849236,-0.49874866,0.57459235,-0.57801217,0.032246955,-0.29287606,0.5049907,-0.031085866,-0.5587758,0.23209305,-0.5042239,0.08130336,-0.057360753,0.69872475,0.5054218,0.58191323,0.27781633,0.8283847,-0.55166835,0.02096682,-0.075489394,-0.2660562,0.1360973,-0.14036743,0.025471712,-0.33178654,-0.093660325,0.05753582,0.020738553,0.120336026,0.29772326,-0.44747767,-0.07154789,0.18494767,0.68669194,-0.31122106,0.19347157,0.6289354,1.4027661,1.0020355,0.0035467674,0.95931077,0.15043738,-0.30657575,-0.23318271,0.022521181,-0.62820154,0.25460228,0.31969458,-0.2831789,0.42821723,0.054086674,-0.096415974,0.25201675,-0.64979976,-0.21743444,-0.08780745,0.25889763,-0.095466964,-0.09167417,-0.44471312,-0.08136437,-0.004915043,-0.031072017,0.06929579,0.3875248,-0.30202702,0.26729432,0.19583626,0.9870445,-0.07629483,0.08110363,0.27080372,0.3699103,0.23301719,-0.039864812,0.025248932,0.15696262,0.29938897,0.31262824,-0.5251324,0.0068505467,-0.2716777,-0.5687384,-0.16641887,-0.2203429,0.080154024,-0.1820921,-0.37706232,-0.22637695,-0.07737621,-0.41057274,0.31142634,-2.6098611,-0.102013074,-0.088024266,0.38352603,-0.083543025,-0.23268987,-0.063654594,-0.42132905,0.4982763,0.40045193,0.32200253,-0.47078377,0.45437717,0.40280122,-0.45244822,0.052549638,-0.49933738,-0.14588745,-0.14282684,0.37425143,0.113080226,-0.23908481,-0.060131736,0.3169605,0.45137584,-0.13194618,0.19683306,0.24054457,0.2992185,-0.30353013,0.43890905,0.15731785,0.31443512,-0.57841337,-0.23095515,0.4088674,-0.3919253,0.14916301,-0.17386168,0.18973789,0.3617139,-0.46805292,-0.862383,-0.47963476,-0.0881536,1.3286211,-0.27212816,-0.64651895,0.22325936,-0.03733109,-0.3546123,-0.050072454,0.38838488,-0.17776951,0.1249919,-0.7589956,0.09227796,-0.30697075,0.31830266,0.035648186,0.12979192,-0.5226502,0.59936583,-0.14276142,0.5617913,0.45482367,0.25011736,-0.25528148,-0.48167408,0.24445662,0.9828824,0.5997791,0.07706203,-0.28886947,-0.0331567,0.036678042,-0.007856385,0.12122477,0.49367222,0.83524907,-0.12669522,0.21700595,0.28170907,-0.0010722796,0.014364633,-0.10132802,-0.3351351,-0.045301307,0.091669835,0.6195389,0.6805573,-0.024725394,0.14967784,-0.025698483,0.46403047,-0.16895537,-0.3481918,0.36689675,0.9599725,-0.02211872,-0.23062156,0.7803937,0.604684,-0.14610146,0.70008713,-0.7239791,-0.70066553,0.32022515,-0.030507123,-0.37787977,0.27241156,-0.4499317,0.18548091,-0.7467474,0.34706864,-0.38207757,-0.39079836,-0.6099111,-0.39910582,-2.8782275,0.17958327,-0.33713597,-0.058017183,-0.19590253,-0.11645138,0.32501113,-0.48029292,-0.5411405,0.101280466,0.1494408,0.5354773,-0.14201389,0.09926745,-0.12895775,-0.35209405,-0.24984874,0.24297498,0.35692108,0.12503272,0.01613551,-0.49234095,-0.09780507,-0.2018138,-0.37347463,-0.011788062,-0.4502084,-0.32763594,-0.18962656,-0.3826763,-0.35445538,0.6008343,-0.15079173,0.052409936,-0.29244575,-0.074298516,0.07773861,0.25269774,0.17463306,0.29031688,-0.08269518,-0.09684177,0.13717273,-0.15560946,0.2515342,0.12982906,0.4081664,0.4446005,-0.31143722,-0.08567799,0.39706662,0.48445675,-0.1183207,0.8111588,0.38278225,-0.15358521,0.36463684,-0.089845344,-0.40342888,-0.7822042,-0.3908352,-0.035743006,-0.33310872,-0.29986477,-0.041810084,-0.35919935,-0.83798367,0.73922706,-0.16821143,0.23783194,-0.07365048,0.42046693,0.37343618,-0.20268092,-0.24247552,0.019263554,-0.18031724,-0.28273484,-0.3169267,-0.83112663,-0.33892834,-0.25107828,1.0463289,-0.06357371,-0.09897058,0.34239703,0.055915967,0.13006428,0.2764975,0.023793833,0.123577155,0.65724087,0.26194373,-0.66680235,0.48892814,-0.18517107,-0.17532755,-0.6329596,0.103517085,0.5756907,-0.64483553,0.36323005,0.55555147,0.22181155,-0.082196824,-0.64098656,-0.033305444,-0.008945823,-0.15150131,0.6122438,0.32096916,-0.76052296,0.5064967,0.19586569,-0.37090188,-0.5962995,0.63024837,-0.052563332,-0.3279423,0.00473272,0.35796925,-0.13628553,0.05394325,-0.08550278,0.31787097,-0.30622584,0.3434721,0.28139746,-0.09353294,0.39416325,-0.25512996,-0.22606961,-0.6980599,0.074782595,-0.5763193,-0.19775729,0.14603554,-0.11291588,-0.22238792,0.26399252,0.008804563,0.4561617,-0.25326154,0.0631837,-0.22074887,-0.42813867,0.6348725,0.59308344,0.3749585,-0.35427365,0.6805219,0.10789795,-0.1655676,-0.39929682,0.047552798,0.49795854,-0.16218852,0.420251,-0.02733791,0.17962806,0.31960356,0.5054219,0.30528548,0.4281852,0.1995259,-0.04018317,0.19078507,0.10910257,0.06189302,0.03316226,-0.3711131,0.034517385,-0.24366716,0.12790868,0.44329178,0.105023764,0.5355392,-0.22202425,-0.124828674,0.021900574,0.22251698,-0.14991666,-1.3082211,0.45245978,0.026171435,0.5840672,0.55428386,0.10031603,0.09745834,0.5128736,-0.2728076,-0.08293841,0.23679747,0.24401169,-0.25757587,0.64180017,-0.6100843,0.4293394,-0.104146,0.031119756,-0.060810376,0.0535744,0.5254248,0.7684837,-0.09931672,0.139361,-0.023588214,-0.21447489,0.24311881,-0.26233086,0.27276048,-0.37760115,-0.34656507,0.7707445,0.29229945,0.35035527,-0.24543397,-0.012219445,0.06398235,-0.25582752,0.363079,-0.027225064,0.016646456,-0.16028315,-0.4807031,-0.12353815,0.46423975,-0.018679181,-0.015328783,0.048331086,-0.18206218,0.06107629,0.088633224,-0.07900517,-0.02057057,-0.5473176,0.13008352,-0.37351754,-0.2840495,0.44616783,-0.27458265,0.2210633,0.18711877,0.0112432195,-0.45125884,-0.030655837,0.11038222,0.5069636,0.06355749,-0.2868786,-0.18669862,0.10594635,0.22249483,-0.26345226,-0.020551106,-0.33459902,0.28303945,-0.673499,0.5144113,-0.22747014,-0.20967585,0.16958629,-0.1993397,-0.12573777,0.51247954,-0.17112255,-0.11948948,0.059301242,-0.08954889,-0.25865477,-0.4513925,-0.2441248,0.11118793,0.08510963,-0.021042172,-0.029714258,0.065019704,-0.040016912,0.43441695,0.11763813,0.24301949,0.26511353,0.03526608,-0.5560729,0.022890644,-0.11795983,0.55806464,-0.08627278,0.0044699153,-0.36429018,-0.666914,-0.1865752,0.29858023,-0.17118959,0.21158719,0.13188712,-0.13042517,0.99426675,0.10241256,1.124645,0.00016543269,-0.3042805,-0.052823428,0.66059506,-0.29284108,-0.16934289,-0.29251912,0.9553387,0.64598536,-0.21458639,-0.20996472,-0.2615507,0.09732737,-0.084271,-0.23015015,-0.37144747,-0.11765353,-0.67371136,-0.25097418,0.14633636,0.42349702,-0.07067951,-0.15167457,0.11168614,0.4194153,0.12723742,0.20251945,-0.48325342,-0.15840606,0.51012284,0.0481289,-0.058917332,0.060952947,-0.36317107,0.33948454,-0.49654335,-0.13892053,-0.31559098,-0.009617325,-0.038629737,-0.4533949,0.31140384,-0.07545767,0.20653722,-0.39664462,-0.099163555,0.005616051,0.2236309,0.25625405,0.14785086,0.6567015,-0.2036461,0.11356856,-0.041363187,0.40345758,1.1276792,-0.32447538,0.041131597,0.2187164,-0.4176595,-0.6982502,0.11639709,-0.45607063,0.02179912,-0.14323992,-0.46005338,-0.5079647,0.31309286,-0.033646364,-0.06493278,0.18642655,-0.6745778,-0.21971565,0.22848286,-0.27326262,-0.2526653,-0.32372823,0.013526329,0.6238477,-0.20959559,-0.32390803,0.039225213,0.3949589,-0.26610553,-0.55498695,0.14935793,-0.3265373,0.3338007,-0.04117986,-0.1929101,0.080613956,0.11652549,-0.46032482,0.07573087,0.4086596,-0.29285005,-0.04254302,-0.34720847,0.019710895,0.5440957,-0.13144879,0.12020759,-0.45180404,-0.5036585,-1.0523045,-0.16497359,0.28229797,0.10331485,0.07719709,-0.5027674,-0.041934133,-0.18126637,-0.06855796,-0.11763299,-0.34467852,0.3160899,0.13775437,0.48270544,-0.20216209,-0.7537028,0.08309902,0.17428796,-0.27273458,-0.19223714,0.5382902,-0.10736386,0.62550056,0.0489605,0.1005478,0.10990753,-0.7065081,0.2677641,-0.086807065,-0.23371443,-0.58776206,0.00092234614,549 +235,0.56727403,-0.12481538,-0.43146855,-0.20822519,-0.50135154,0.40555078,-0.29213637,0.2421826,0.2464297,-0.28281966,-0.13450126,-0.095183305,0.015861064,0.26749057,-0.21287332,-0.6822195,0.048578434,0.22013858,-0.56974274,0.33567613,-0.65639114,0.44318697,0.05640333,0.47950593,0.08746459,0.29339233,0.14108501,0.025046114,-0.38796335,-0.00036678315,-0.10822281,0.22450924,-0.5917366,0.17296098,-0.30070984,-0.4033574,-0.10553963,-0.32545072,-0.22086586,-0.6501015,0.23973446,-0.81548345,0.6128777,-0.18482867,-0.33887926,0.08934984,0.10223846,0.1520443,-0.2399882,0.13439171,0.08549156,-0.1672654,-0.043954246,-0.32802135,-0.45433372,-0.53159344,-0.5342778,0.15312289,-0.6218744,0.027624415,-0.19414823,0.2694983,-0.1990131,0.082173735,-0.13291289,0.2890135,-0.27536616,0.20844455,0.257805,-0.32760695,-0.2693151,-0.48304942,-0.16257595,-0.13679132,0.2871653,0.056739345,-0.32037848,0.010900433,0.39470783,0.60354435,0.047036003,-0.27520955,-0.3616527,-0.11101837,0.102894165,0.5240526,-0.09580162,-0.17245798,-0.32435018,-0.1359165,0.4806487,0.18569802,0.15370008,-0.29007742,0.09688307,-0.12145162,-0.22379327,0.20339727,0.52044547,-0.4521801,-0.23895298,0.35701334,0.4281578,0.04625477,-0.17635117,0.24647234,-0.006215787,-0.546353,-0.1833722,0.10473275,0.110263556,0.618239,-0.26905116,0.23589562,0.69393057,-0.1487575,0.021891275,-0.044619314,0.052203346,-0.08864071,-0.31960583,-0.025896946,0.06436207,-0.49589494,-0.1600399,-0.25789824,0.58371407,0.09575831,-0.70080525,0.40813535,-0.5246556,0.04266713,-0.03755563,0.40206805,0.864165,0.348852,0.032459434,0.7361423,-0.3373222,0.047689836,-0.16706075,-0.27137044,0.07522988,-0.19173536,0.13684374,-0.39325052,0.18170029,0.10509084,-0.10090377,0.043959476,0.7141277,-0.41668376,-0.15838803,-0.05016174,0.51681656,-0.4792013,-0.15632248,1.0176435,0.8724085,0.9390427,0.09736322,1.5357877,0.5096198,0.08540311,-0.015741842,-0.22229414,-0.5119764,0.16475365,0.14943895,-0.1826182,0.42344257,0.19161278,0.014607605,0.52362186,-0.17312293,-0.08192758,-0.038530577,0.24569298,0.049370475,0.0622188,-0.25500524,-0.3980158,0.25301117,-0.0012744387,0.121528655,0.39860016,-0.14436322,0.4409514,0.12407123,1.5283009,0.061158106,0.033625,0.07232623,0.23937152,0.30350497,-0.24982338,-0.079799175,0.292605,0.1925602,-0.19058962,-0.4857159,-0.16061245,-0.30561975,-0.4010881,-0.20024997,-0.3280564,-0.25094935,-0.15862392,-0.50968474,-0.23215698,-0.01312817,-0.3310658,0.536103,-2.3184354,-0.403927,-0.14943291,0.35978475,-0.20755723,-0.54225093,-0.44727585,-0.5074083,0.16323242,0.21047395,0.25124398,-0.5389917,0.27833304,0.35955334,-0.40707532,-0.34142062,-0.6905005,0.07377585,-0.08370028,0.22758977,-0.2698059,-0.1476719,-0.19672656,0.07876566,0.75477415,-0.04606665,0.10551087,0.4051337,0.64346117,0.10241225,0.45756587,0.23504385,0.6768011,-0.35903102,-0.2858071,0.43115357,-0.48945245,0.44848397,0.05711017,0.19983073,0.5639633,-0.4773473,-0.7480174,-0.65294427,-0.24157873,1.1765608,-0.3108965,-0.29068616,0.027263952,-0.31399265,-0.3728834,0.05064655,0.43054417,-0.08882164,-0.07493441,-0.65166456,-0.040620573,-0.03195894,0.112881966,-0.19421917,0.25877127,-0.27765718,0.6010891,-0.115802355,0.35771438,0.264385,0.2453617,-0.028111223,-0.32333967,0.0755358,0.8655415,0.35556135,0.124871686,-0.26550442,-0.22875471,-0.23839352,-0.11882378,0.060418606,0.5465897,0.53914666,0.024548301,0.22602259,0.34971103,0.0035081585,0.05147322,-0.17027596,-0.1988895,-0.14439838,0.17822386,0.5745005,0.71836495,-0.1867494,0.45388713,-0.21771608,0.16988198,-0.27690214,-0.6471827,0.42240143,0.69723946,-0.23171256,-0.20286518,0.57344383,0.32897452,-0.43825683,0.38972962,-0.49664548,-0.3931764,0.51601005,-0.10833274,-0.45778498,0.19136031,-0.34049806,0.005897848,-0.82025784,0.33802155,0.043286443,-0.47070345,-0.4780835,-0.27628785,-2.9935496,0.22262995,-0.03209548,0.0060936767,-0.041236177,-0.35852635,0.23836157,-0.5559828,-0.5343907,0.16117303,-0.040715978,0.4873455,-0.12623009,0.26724443,-0.30192414,-0.28779763,-0.28287876,0.2315011,0.13717842,0.35182497,-0.13498668,-0.3230597,0.08267941,-0.31713742,-0.3240924,0.053908005,-0.73252815,-0.5347895,-0.055471875,-0.3474442,-0.20534325,0.7452291,-0.5407766,-0.11176041,-0.33756238,0.0115068,-0.2168711,0.4061838,0.13923311,0.11831167,0.21586803,0.07148765,-0.1315278,-0.4225482,0.2613912,0.047653675,0.2310854,0.59429157,-0.14687027,0.22801049,0.4064904,0.65990853,-0.08061635,0.73586977,0.11061563,-0.012068317,0.4109951,-0.19405165,-0.24799137,-0.62845254,-0.2891408,-0.27777404,-0.5521938,-0.4527993,-0.06289946,-0.42425162,-0.77817714,0.52026635,0.074081905,0.12612817,-0.16009255,0.36418253,0.5752248,-0.22200276,0.018060315,-0.107268535,-0.26575077,-0.4192305,-0.5800033,-0.50686496,-0.67181337,0.41523272,1.3229403,-0.09553901,-0.0147778215,0.0676144,-0.2514172,0.058892895,0.14438525,0.1804469,0.0017173251,0.5385254,-0.12148021,-0.65616506,0.28934756,-0.22519697,-0.19116801,-0.5987785,0.031254236,0.788602,-0.6801443,0.5892449,0.48678023,0.2953555,0.21852341,-0.63530284,-0.19464913,-0.005095767,-0.21716617,0.569232,0.3780209,-0.59640694,0.49929056,0.17451094,-0.14692971,-0.6881111,0.43455064,0.050119884,-0.10027452,-0.087004855,0.45915973,0.18565963,-0.08919444,-0.028182156,0.11595039,-0.5717894,0.22127104,0.37718853,-0.04604406,0.44921103,-0.06535982,-0.3159003,-0.7255037,-0.13533194,-0.32620484,-0.3879042,0.049295582,0.08711221,0.21003075,0.20424767,0.112680584,0.32978344,-0.5421477,0.08298545,-0.06930241,-0.15695214,0.28235683,0.33235958,0.43877605,-0.49168795,0.569102,0.015319387,0.04261225,0.12214902,0.018638404,0.42270857,0.15780085,0.3270225,-0.020047562,-0.06824487,0.126022,0.70662075,0.1354088,0.34160557,0.19115622,-0.4235726,0.2732752,0.20542759,0.15845184,-0.15178935,-0.2846747,-0.087898664,-0.10436814,0.31674522,0.37458208,0.15640524,0.36563593,-0.092206575,-0.15455057,0.22297017,0.031209907,-0.066507444,-1.2201155,0.05786802,0.25178203,0.69730973,0.3163953,-0.012878434,0.0046813986,0.3146243,-0.35505995,0.12420644,0.4025282,-0.13588074,-0.26704788,0.44235426,-0.48557532,0.46577016,-0.24127795,-0.00034626125,0.0811659,0.18899943,0.39624876,1.0071167,0.0055744736,0.019326758,0.09908161,-0.31981897,-0.0040541687,-0.30193803,0.019343495,-0.6087712,-0.19971623,0.9017436,0.41389903,0.36142403,-0.4728137,-0.13709646,0.009063214,-0.17991628,0.034334492,0.042054903,0.062404417,-0.20909758,-0.5612968,-0.2509382,0.5838764,0.060267814,0.06679074,0.15272127,-0.43990287,0.30163166,-0.21009302,0.0562974,-0.010078947,-0.6536223,-0.17947952,-0.40555525,-0.69550437,0.25047365,-0.15839347,0.06675645,0.19098625,0.03462953,-0.33844927,0.28183562,0.10595486,0.95299995,-0.048466526,-0.06092206,-0.23118776,0.20321494,0.43851286,-0.26185554,0.002549267,-0.25457516,0.2751522,-0.504059,0.42476672,-0.20203556,-0.23050229,-0.13480766,0.017385293,0.07282066,0.43344697,-0.19716215,-0.09284285,0.124129586,0.03189729,-0.40739474,0.049492143,-0.33671626,0.2784592,0.065059915,-0.19705442,0.017383516,-0.1666243,0.017401194,0.2512616,0.106949694,0.14511853,0.4267255,-0.055035256,-0.27203313,0.0712651,0.04707354,0.5066331,0.0036918442,-0.16465409,-0.3425127,-0.30660385,-0.39668533,0.6303471,-0.14758253,0.065913506,0.106203645,-0.28404462,0.83958435,0.14529055,1.143694,0.14059053,-0.3739188,0.06383536,0.5500459,0.05653548,0.054383874,-0.29652923,0.90937793,0.5863754,-0.1525034,-0.16186357,-0.25401223,-0.2355916,0.20424777,-0.38778496,-0.20249948,-0.14680801,-0.7158914,-0.09589977,-0.017340787,0.10698258,0.07362993,-0.19510178,0.1629569,0.16305518,0.0909694,0.5646487,-0.5423963,-0.17045334,0.27383092,0.3983542,-0.08279003,0.31409442,-0.30962792,0.38726285,-0.72994643,0.09629773,-0.4991097,0.19745909,0.0020874818,-0.37263072,0.13684319,0.18456106,0.3200221,-0.3685347,-0.3872393,-0.42537835,0.5371334,0.08696316,0.29713824,0.6153201,-0.24770811,-0.29406464,0.08369085,0.5509334,1.3157476,0.100147806,-0.019859107,0.4567221,-0.2437081,-0.68844205,0.2614221,-0.50183207,0.15235479,-0.08463655,-0.33311552,-0.3923903,0.39393845,0.2663725,0.11299028,0.05108243,-0.51728016,-0.028441422,0.38974422,-0.20753309,-0.21433306,-0.19269043,0.17741175,0.76378757,-0.32525048,-0.36634833,-0.03698719,0.33490238,-0.3665529,-0.51091427,-0.017443193,-0.44794658,0.4321817,0.24695061,-0.25038633,-0.055706702,0.1519514,-0.45672318,0.035845652,0.23903266,-0.26713672,0.06781195,-0.3384449,0.0017240762,1.0637202,0.053908728,0.2749742,-0.5306082,-0.5554558,-0.96386313,-0.28265908,-0.008623147,0.11067511,-0.023619385,-0.53208464,-0.0543794,-0.11689366,-0.21574463,0.08331716,-0.4113993,0.47148132,0.24519315,0.47153717,-0.014758078,-0.9569566,-0.089314505,0.1113029,-0.43659985,-0.4659949,0.5318812,-0.18082409,0.72448623,0.19170062,0.0020286718,0.13078572,-0.61543834,0.36115253,-0.35310224,0.03533729,-0.69640833,0.0006256302,550 +236,0.5231232,-0.12859257,-0.64393955,-0.13116202,-0.36419985,0.07118392,-0.23158875,0.291925,0.22980876,-0.25192967,0.02600876,-0.03667025,0.02464954,0.49523336,-0.14858887,-0.66793483,0.13657375,0.18753041,-0.6244656,0.63483995,-0.3700618,0.47672012,0.022559313,0.14657965,0.13887516,0.2081555,0.16525884,0.091315046,0.038594473,-0.02346781,-0.18675537,0.28334576,-0.35622045,0.13524845,0.0076338965,-0.35560176,0.027687455,-0.34613147,-0.37948143,-0.6998665,0.33709848,-0.61959547,0.5746588,0.045071658,-0.43605843,0.22024806,0.2168052,0.31749025,-0.29450846,0.125299,0.0830722,-0.10627078,-0.10572662,-0.14896022,-0.29239064,-0.42289844,-0.50270474,-0.025481287,-0.68230987,-0.1556967,-0.37097472,0.13699916,-0.39446798,-0.007681374,-0.07480159,0.28574145,-0.3176388,-0.10818894,0.27038255,-0.17099148,0.10118716,-0.44504398,-0.0358599,-0.060530424,0.30560604,-0.09501466,-0.1278849,0.3022971,0.18126135,0.56001174,0.07711325,-0.37260762,-0.23726879,-0.09890812,-0.06544405,0.45626932,-0.118359946,-0.3492109,-0.24741589,0.1774843,0.26510993,0.107509516,-0.017494153,-0.13582477,-0.14488885,-0.0539562,-0.21077985,0.47198993,0.5188158,-0.4002781,-0.18112227,0.5493483,0.4518078,0.19077645,-0.13356066,0.19027558,0.0007732401,-0.5353672,-0.1372807,-0.028171273,-0.17781456,0.36492836,-0.09188501,0.30156633,0.58175963,-0.12254991,-0.104952306,0.057370868,-0.019172285,-0.045856792,-0.1274414,-0.12733258,0.028701417,-0.37298357,0.1492856,-0.05417065,0.8361653,0.116759695,-0.62685513,0.3856958,-0.43921047,0.26550233,-0.11190287,0.51168233,0.8375316,0.43844718,0.123561874,0.84323883,-0.3704788,0.10561382,-0.23315448,-0.3737577,0.014138941,-0.14708243,0.13169977,-0.53234124,0.071464285,-0.067645654,-0.1368293,0.15394051,0.58120275,-0.43486422,-0.25230452,0.109146126,0.75182766,-0.3064631,-0.07993293,0.66615766,0.92156464,1.0027006,-0.0018806055,0.76088744,0.30610988,-0.0654056,-0.05043803,-0.4070348,-0.7201308,0.19594769,0.37487411,0.45177123,0.29900745,0.055351317,-0.050269112,0.428436,-0.30663487,-0.16039939,-0.19491081,0.41589954,-0.056784756,-0.062898465,-0.55662125,-0.13553809,0.012970909,0.20381455,0.19684026,0.23087373,-0.19460759,0.29819667,-0.035472084,1.6784686,-0.048207883,0.09536989,0.07233653,0.4912983,0.448484,-0.05810443,-0.25524554,0.24103852,0.33832118,-0.03583692,-0.5157947,0.101495914,-0.26306075,-0.29231185,-0.14639802,-0.28537807,-0.0104904175,-0.14727086,-0.4484768,-0.04432101,0.091654256,-0.46414793,0.41310832,-2.700026,-0.30518296,-0.12763551,0.28246024,-0.15937856,-0.4006553,-0.19250916,-0.36511704,0.4566427,0.32202095,0.42647305,-0.6146914,0.43604413,0.4213787,-0.44435042,0.0005974571,-0.5038999,-0.07082532,-0.10142656,0.4065529,0.064034134,-0.26872227,-0.07717453,0.37826833,0.52797973,-0.07475567,-0.026038243,0.31772283,0.35642356,-0.008034702,0.44354972,-0.034285896,0.47739035,-0.24813436,-0.23092394,0.32861704,-0.29650882,0.15045999,-0.1986882,0.204904,0.43334395,-0.43806374,-1.0249839,-0.5590572,-0.008193628,1.207764,-0.30278575,-0.34219706,0.36457685,-0.38127887,-0.19948098,0.06069537,0.4436424,-0.104773805,-0.11028341,-0.6387839,0.18061538,-0.086252026,0.13367759,0.004606986,-0.047526613,-0.34194073,0.6001358,-0.09769623,0.4688384,0.110392906,0.2750215,-0.16976161,-0.34877726,0.07950388,1.0302824,0.40122074,0.049852673,-0.23210277,-0.17489572,-0.17514539,-0.1279516,0.11885583,0.45742184,0.7030415,-0.035607394,-0.042281713,0.21765958,-0.05331141,0.10799181,-0.13102956,-0.21415631,0.011359187,0.007841102,0.4970463,0.60420895,-0.12031083,0.59022826,-0.060522676,0.07604453,-0.22140035,-0.5618675,0.54354423,0.7229703,-0.24851461,-0.29617283,0.6312847,0.39167327,-0.18705197,0.33790478,-0.6538058,-0.40212414,0.2997832,-0.25698513,-0.23934577,0.30553952,-0.39113188,0.20487493,-0.8801196,0.18790086,-0.050722852,-0.5240816,-0.35056457,-0.06926332,-3.9511385,0.19958846,-0.15363489,-0.09070078,-0.026072232,-0.103528515,0.30025136,-0.55353826,-0.48436996,0.1683362,0.062249493,0.81924033,0.014074045,0.11639272,-0.12184366,-0.36110285,-0.25727195,0.17361537,-0.09892505,0.4417332,0.09203396,-0.36407518,-0.11259945,-0.18921496,-0.44123894,0.033941984,-0.6223396,-0.39951804,-0.19107153,-0.5678105,-0.036442574,0.6027919,-0.08391881,0.13871908,-0.28569892,0.083389044,-0.08389093,0.22517961,0.20392114,0.08022277,0.12972993,-0.17600441,0.077983506,-0.34613413,0.20606461,-0.038910184,0.25612313,0.2951016,-0.015795963,0.16629696,0.65011185,0.5863866,-0.15033658,0.86274517,0.5083535,-0.20507322,0.17866516,-0.20907608,-0.18080963,-0.5002485,-0.296872,-0.11397173,-0.42843544,-0.20817086,-0.15770626,-0.35278186,-0.71966046,0.49299917,0.05962891,0.16921046,-0.0764284,0.20753461,0.5192737,-0.31144476,-0.119667806,0.07908109,-0.30507764,-0.40413687,-0.21547228,-0.5614064,-0.41179127,0.15464257,0.9774601,-0.30963215,0.040988002,-0.04349215,-0.14617775,-0.11217635,-0.1444967,0.29827192,0.2332203,0.25356615,-0.15031618,-0.60667443,0.34298575,-0.3292828,-0.03928556,-0.64903533,0.09214832,0.5168863,-0.3644543,0.37546647,0.30452558,0.17085974,0.01020441,-0.55870885,-0.101462506,0.19736522,-0.21477845,0.3319084,0.2258945,-0.87289244,0.5686916,0.26867348,-0.28070578,-0.65874773,0.39816177,0.045662288,-0.49687767,-0.07613926,0.29834175,0.19930081,0.008240665,-0.28610376,0.1682411,-0.3669163,0.3316868,0.19470552,-0.16165046,0.31625107,-0.21452469,-0.25323817,-0.4455144,-0.2465037,-0.53628254,-0.24469146,0.14104484,0.077091806,0.19287175,-0.11797794,-0.07393029,0.4338583,-0.46999824,0.05398655,-0.17700471,-0.3279416,0.47033855,0.54622597,0.5334091,-0.31750235,0.6576119,0.010115937,-0.066328116,0.01259985,0.07081353,0.50490624,0.03982846,0.36103624,0.0078092893,-0.20620997,0.3271875,0.8363047,0.1154202,0.3460929,0.14121626,-0.23264049,0.12884328,0.16238065,-0.058353074,-0.05774383,-0.3031614,-0.15640083,-0.15953301,0.21336919,0.4385461,0.18769567,0.28254217,-0.075213976,-0.2308344,0.07337927,0.14497979,-0.0150806345,-1.3648635,0.3142329,0.17892711,0.6614063,0.27005088,0.09549462,-0.1568193,0.6783528,-0.07604752,0.12056758,0.15698496,-0.17819971,-0.26773602,0.4319611,-0.6481364,0.48019654,-0.03480258,-0.056412484,0.107211575,0.13697058,0.35806847,0.7800763,-0.17054524,0.040777795,-0.004252843,-0.357707,0.004098622,-0.25241476,-0.012511905,-0.5912846,-0.4015083,0.4846919,0.35754645,0.27780324,-0.15103026,-0.04547311,-0.031933706,-0.076823905,0.01297737,-0.09074841,-0.043191552,-0.16180977,-0.6341726,-0.227665,0.45226675,0.29315484,0.11440294,-0.124010086,-0.04253633,0.3111491,-0.106883936,-0.030997988,-0.06316717,-0.47247913,0.004508386,-0.31421995,-0.47838935,0.5148578,-0.28394014,0.3329549,0.16119899,0.008154458,-0.14966656,0.39553973,0.05672457,0.7704004,-0.003603669,-0.22726487,-0.35172838,0.080219135,0.14093575,-0.24436656,-0.15540941,-0.20497891,0.18140364,-0.69607157,0.43742695,-0.18265633,-0.3976164,0.25013894,-0.22833596,0.12448178,0.42989242,-0.19318034,-0.19489272,-0.14613435,-0.112393826,-0.3067486,-0.26653707,-0.24377877,0.22189131,0.017476344,-0.21648918,-0.09643997,-0.14357014,0.055982057,0.42794818,0.029332126,0.30038968,0.32054773,0.25411466,-0.24848346,-0.014458688,0.32899207,0.5845104,-0.029146316,-0.053717352,-0.34901798,-0.36199564,-0.4286743,0.032853793,-0.16211359,0.150396,0.102615766,-0.23934005,0.717348,0.14807771,1.0445675,0.050293807,-0.18808122,0.18722682,0.4269345,0.07881052,0.053885635,-0.25469792,0.7571197,0.54923654,-0.020255422,-0.106080174,-0.4625599,-0.13846299,0.2841875,-0.2876152,-0.08905725,0.024383456,-0.67777526,-0.2880047,0.27445835,0.17635952,0.25285876,-0.15938003,0.0398279,0.17037576,0.17587443,0.2500834,-0.58359617,-0.043326266,0.31681487,0.19206555,0.024152882,0.15637036,-0.531399,0.30654252,-0.57102245,0.0023103633,-0.2909202,0.22794327,-0.058340088,-0.20042671,0.31559902,0.069112726,0.37509066,-0.32265148,-0.2934243,-0.20351115,0.48437583,0.07730486,-0.04439706,0.47993818,-0.23704052,-0.060928702,0.11765577,0.46775967,0.9501611,-0.25155357,0.15357432,0.4091164,-0.21670562,-0.7289324,0.1999404,-0.26494005,0.1682218,0.016824782,-0.27160046,-0.49641177,0.36357826,0.075799,0.17210573,0.08479066,-0.3816815,-0.10450387,0.21069282,-0.12700732,-0.1835892,-0.24532379,0.18797515,0.5804034,-0.19526537,-0.19284493,0.15437026,0.37483528,-0.09625348,-0.7331923,-0.07370634,-0.24755621,0.22957294,0.17282228,-0.37481314,-0.16486053,0.012523921,-0.5281898,-0.020178216,0.27696648,-0.3518396,0.05009177,-0.22368288,0.005479932,0.9924231,-0.31076622,0.23512448,-0.6588127,-0.55603313,-0.8444702,-0.3508932,0.49004108,0.14745755,0.081712656,-0.6536259,0.0136347795,-0.17839164,-0.015769117,-0.0069754003,-0.43048885,0.4039981,0.10462917,0.25299364,-0.07542806,-0.8570001,0.101442575,-0.043939274,-0.39074278,-0.5736855,0.57694435,-0.056939546,0.7498642,0.0519833,0.08660765,0.20253663,-0.5748933,0.15915559,-0.27349404,-0.16557099,-0.68365747,0.06471855,554 +237,0.45958945,-0.19606574,-0.5577052,-0.05877566,-0.24110681,0.12363316,-0.3175939,0.53653437,0.10907821,-0.32848728,0.0156101845,0.066459656,-0.0032308102,0.34562454,-0.18205564,-0.5936393,0.018985678,0.17682639,-0.528781,0.80895025,-0.2771897,0.28711665,-0.12466164,0.40976366,0.090167075,0.254827,0.013152564,0.094349906,-0.114746295,-0.20972206,-0.11806537,0.43070236,-0.46498662,0.23546444,-0.24869372,-0.3075401,-0.21297082,-0.31533092,-0.24546142,-0.7219662,0.16495477,-0.61816823,0.7586414,-0.024492817,-0.341825,0.3114971,0.1942608,0.2706769,-0.18460362,-0.12435038,-0.10002234,0.036067255,-0.07719423,-0.36706492,-0.1741036,-0.6039542,-0.48041782,0.12024286,-0.48897424,-0.027353797,-0.14486672,0.18179981,-0.2507781,0.045641523,-0.059882537,0.6282299,-0.4193812,0.22481449,0.10222268,-0.06669179,0.1278224,-0.5914308,-0.23793742,-0.1272239,0.33368716,-0.075672396,-0.2011428,0.2396669,0.28681746,0.43723568,-0.11230316,-0.1907425,-0.3720679,-0.06239485,-0.07516796,0.57828486,-0.21376872,-0.70755947,-0.07835512,-0.00013400316,0.33929715,-0.006162079,0.11576936,-0.21768573,-0.1492703,-0.16739267,-0.31118578,0.4341532,0.44156024,-0.33226737,-0.19842982,0.36013195,0.45798105,0.20478414,-0.3119054,0.045265384,-0.114926144,-0.51098764,-0.044494875,-0.06680488,0.043604884,0.5437257,-0.024336267,0.22065468,0.39512312,-0.026141029,-0.17807111,0.2638131,0.13527387,0.076842695,-0.15135323,-0.45113465,0.13998564,-0.35772145,-0.059300892,-0.15942238,0.5673264,0.18101545,-0.8341564,0.362659,-0.51387304,-0.032857917,0.06320009,0.3090766,0.5989262,0.6391497,0.10017134,0.51591736,-0.1604152,0.11602541,0.010851971,-0.181817,-0.057635617,-0.17106208,-0.06686461,-0.54630417,0.20462781,0.043874893,-0.20198376,0.12273507,0.523347,-0.4573776,-0.15822071,0.21541044,0.8778921,-0.21002407,-0.20819543,0.87978786,1.062631,0.9780338,0.0013433754,0.92726153,0.15379958,-0.010077273,0.07851042,-0.23239683,-0.53057814,0.25551698,0.31027368,-0.01422046,0.49299017,-0.024225838,-0.11329705,0.508004,-0.20631447,-0.14611647,-0.16956648,0.2599679,0.2193628,-0.22807594,-0.42013988,-0.31532848,0.06976802,-0.028351005,0.13443097,0.31567708,-0.28115055,0.4007993,0.14837942,1.5535325,0.06637454,-0.021877158,0.13749853,0.59727025,0.31544885,-0.096915655,-0.042069033,0.29758245,0.3313542,0.19448109,-0.44687924,0.1360945,-0.12931539,-0.67448425,-0.15760438,-0.26957098,-0.28519633,-0.14679922,-0.5355455,-0.23105296,-0.02781954,-0.15338892,0.4200467,-2.8771424,-0.2411206,-0.14178897,0.34357175,-0.2333983,-0.43788326,-0.1950545,-0.3974508,0.3386203,0.3602347,0.39630705,-0.5800818,0.52838016,0.2038741,-0.4227099,-0.25204164,-0.5264961,-0.14200625,0.066215605,0.4882252,-0.094802395,0.022189057,0.24807006,0.27282438,0.5056428,-0.3073964,0.14813955,0.18618308,0.38595912,-0.054169003,0.19566625,-0.10614399,0.5209496,-0.33202046,-0.2515208,0.299593,-0.41714236,0.19998123,0.012354664,0.2736065,0.39237574,-0.47762814,-1.0006566,-0.6631976,0.19543648,1.0805668,-0.13782552,-0.4377604,0.18523748,-0.4598035,-0.31380215,-0.16508356,0.26344392,-0.034567177,0.06522953,-0.74623674,-0.022955071,-0.106921785,0.23915397,0.01552701,-0.05248255,-0.40354404,0.63995206,0.058628395,0.48136446,0.31482455,0.15137571,-0.36868545,-0.3643123,0.03499805,0.80107635,0.44012558,0.10955084,-0.17558643,-0.10890021,-0.34464186,0.06111722,0.13678819,0.6250569,0.38420096,0.004549648,0.066499546,0.13194658,-0.06512021,0.23056565,-0.19603613,-0.2352512,-0.16702603,0.19451226,0.58410925,0.5340755,-0.21842387,0.5476144,-0.19616267,0.3750954,-0.23737653,-0.48728544,0.47953522,1.0045561,-0.2461768,-0.40895334,0.51609474,0.6413906,-0.19869159,0.3528079,-0.60139114,-0.48203737,0.3149727,-0.13712282,-0.2255495,0.43780953,-0.24113229,0.12263738,-0.7759498,0.23360246,-0.3280436,-0.5745705,-0.52794164,-0.17486337,-3.0769136,0.14272575,0.011482364,-0.2986069,-0.16937011,-0.23434238,0.19941305,-0.5619802,-0.55074996,0.18604541,0.14265461,0.6137105,-0.0751094,0.064050056,-0.11042783,-0.44150034,-0.102006435,0.30142874,0.14659233,0.3524548,0.008438964,-0.43846866,-0.2020792,-0.05568659,-0.36800626,0.13146216,-0.69031805,-0.4055056,-0.09805245,-0.49434063,-0.109294765,0.592436,-0.3704017,0.09671524,-0.32176763,-0.009939786,-0.087002255,0.19530989,-0.010386833,0.15620655,0.017081618,-0.086020015,0.36537415,-0.29734153,0.095315315,0.044798527,0.23878089,0.2574827,-0.016071307,0.250168,0.5469818,0.6968432,-0.041365854,0.83272934,0.4521155,-0.098848276,0.5142229,-0.19802389,-0.37162945,-0.46994123,-0.21308164,0.1232722,-0.35658902,-0.26006517,-0.09755953,-0.39675942,-0.76783055,0.5108147,-0.1367925,-0.04871136,-0.07601299,0.50504583,0.48190948,-0.29341877,-0.042743396,-0.103368185,-0.15735689,-0.43122074,-0.3747157,-0.47915748,-0.33843276,-0.16400142,1.1490228,-0.1438245,0.109375335,0.11887971,-0.13534243,0.0105538685,0.10886776,0.22139329,0.21638498,0.3916865,-0.31217453,-0.7538079,0.29848567,-0.47869352,-0.34171745,-0.40491208,0.34673753,0.5132654,-0.53279257,0.51219565,0.39551678,0.18859448,-0.24402888,-0.58494735,0.008847507,0.095198125,-0.10997211,0.32754225,0.38159555,-0.76214325,0.43444118,0.20436755,-0.23419547,-0.6164407,0.5844959,-0.045080144,-0.35419628,-0.14847226,0.3705476,0.11779742,-0.016560066,-0.39933178,0.10985046,-0.3624605,0.2143376,0.21560645,-0.032375872,0.21323465,-0.2803149,-0.05890554,-0.8264164,-0.09939567,-0.43036085,-0.3662584,0.24319439,0.13553505,0.2531024,-0.039365865,-0.19245876,0.31624526,-0.4893368,0.07816424,-0.16837433,-0.30764377,0.3785467,0.42103234,0.49855912,-0.40791193,0.59612626,0.05320258,-0.11101643,0.018232886,0.06375011,0.50389045,-0.0016509652,0.43003038,0.07294654,-0.055589374,0.30368042,0.7626123,0.32235858,0.4696914,0.03199095,-0.19671048,0.15050605,-0.06126475,0.06686627,0.04046996,-0.4025249,-0.08085908,-0.16114902,0.16391598,0.5534805,0.030089557,0.2549048,-0.18088475,-0.30149874,0.017564217,0.2686836,0.20573823,-1.4088341,0.35394853,0.26525262,0.853532,0.28751287,0.17855325,-0.084476165,0.67985976,-0.20341443,0.08834286,0.34707165,0.043085624,-0.34734488,0.5230878,-0.7229337,0.49840593,-0.029065423,0.042157125,0.1128382,-0.120438114,0.41550192,0.8593216,-0.16091475,0.075081386,0.19242607,-0.44341898,-0.066845894,-0.4074874,-0.0065947217,-0.46631202,-0.33495277,0.71370953,0.5003739,0.32797593,-0.31473213,0.09098938,0.23177221,-0.20870405,0.081562504,-0.06146614,0.22422384,-0.23036174,-0.6237098,-0.032790173,0.54484534,-0.100907214,0.11681144,0.15695053,-0.26607138,0.35947335,-0.07480167,-0.1078685,-0.036953326,-0.60368574,0.1221201,-0.3907032,-0.35753575,0.5321472,-0.118205,0.17694591,0.2683539,0.073630445,-0.27894074,0.31887773,0.12096044,0.71554095,0.112051584,-0.1069614,-0.34756497,0.063015535,0.21300672,-0.2413304,-0.14270109,-0.3559559,0.23150559,-0.55923146,0.32127494,0.0061988872,-0.20479284,-0.03410878,0.050650276,0.20486934,0.46603358,-0.11160033,-0.15025039,0.0601253,-0.01974115,-0.2771879,-0.2566584,0.0030336916,0.33862174,0.3582411,-0.027466757,-0.085726574,-0.10048518,-0.07751923,0.48329931,-0.045610707,0.47172812,0.42709932,0.30373916,-0.1401796,0.021024322,0.11393426,0.5586754,-0.097791605,-0.045924846,-0.44432184,-0.4485224,-0.34260324,0.25818646,-0.07805329,0.21815774,0.012243467,-0.23432723,0.92816955,-0.11588133,1.2254771,0.04793947,-0.31998122,0.25264892,0.35689962,-0.02334731,0.023429113,-0.3331745,0.992923,0.5412272,0.044701416,-0.10962621,-0.29183018,-0.034160554,-0.008851469,-0.3025333,-0.199177,-0.0035203537,-0.5255617,-0.24602506,0.1390751,0.12239507,0.21831764,-0.1393986,0.20137429,0.22956604,0.11270256,0.09424799,-0.53712016,0.024073545,0.24582288,0.25323156,-0.14255933,0.016174944,-0.5116388,0.3165125,-0.44852582,0.051979072,-0.43655378,0.0978017,-0.08689462,-0.28322777,0.21118087,-0.018087456,0.21684061,-0.4805237,-0.26891893,-0.253342,0.44780204,0.15107483,-0.10341184,0.42251545,-0.21119471,0.033602238,0.14106274,0.51286715,0.7585771,-0.3718356,-0.083925836,0.19180273,-0.42226657,-0.64643204,0.12042059,-0.31137726,0.30238736,0.028142087,-0.07105914,-0.5592748,0.4052323,0.25467494,0.03777332,-0.13754044,-0.6177708,-0.2128243,0.33300534,-0.3943418,-0.15503149,-0.25854766,0.05527232,0.5715926,-0.1967496,-0.34105858,0.037506722,0.29325977,-0.18617767,-0.6352075,0.070996374,-0.46264973,0.29187316,0.13031644,-0.2801833,-0.29191875,-0.016541522,-0.4925579,0.15315291,0.35616115,-0.32759652,-0.004547191,-0.42189312,-0.16294406,0.9301117,-0.276521,0.20996337,-0.45862094,-0.47397438,-0.7783136,-0.2987391,0.21075013,0.27477086,-0.019663302,-0.7744001,-0.047428664,-0.16955954,-0.38766772,-0.06825711,-0.2689365,0.39595497,0.056644235,0.3795716,-0.10057692,-0.8918037,0.1980513,0.06339217,-0.19782512,-0.49892077,0.4322452,0.079017624,0.8769404,0.05309499,0.16864702,0.3443044,-0.51382583,-0.12349081,-0.1534524,-0.11472774,-0.5959007,0.046753414,560 +238,0.35435542,-0.1462607,-0.45163387,-0.24254361,-0.5028902,0.1704154,-0.23484713,0.05119779,0.31342506,-0.34420618,0.13936171,-0.15484504,-0.24674334,0.2515337,-0.23536427,-0.70520216,0.07085291,-0.124779984,-0.5068377,0.4510277,-0.48763162,0.43153873,0.068298,0.25690812,-0.030120404,0.33287093,0.33048448,0.14773805,-0.0647446,-0.062088497,-0.06850605,0.34470317,-0.72574335,0.34789357,-0.0064169886,-0.30244386,-0.09493359,-0.22951081,-0.0688245,-0.7100759,0.31349525,-0.7881526,0.5208934,-0.16395801,-0.49100736,0.0632316,0.15120967,0.123247415,-0.271555,0.13205777,0.22820117,-0.29315045,-0.07179305,-0.11904163,-0.30414996,-0.761979,-0.5985184,0.012200324,-0.82044214,-0.31732187,-0.39114323,0.38246298,-0.2661902,-0.10432815,-0.12505351,0.4280772,-0.4124463,-0.28480536,0.17450692,-0.30905762,0.15333249,-0.6395538,-0.28354925,-0.06489451,-0.0021592935,0.14583606,-0.20785104,0.30370578,0.38363138,0.47833213,0.25191584,-0.32532686,-0.19085118,-0.081466086,0.020116825,0.39058086,-0.14649002,-0.07639435,-0.30768272,-0.14798781,0.4455324,0.2564912,0.3074102,-0.34008962,-0.01830007,0.17294559,-0.29387322,0.39053348,0.43531215,-0.50862145,-0.00021384557,0.5031102,0.3576829,-0.10315771,-0.2873769,0.3510642,-0.1336216,-0.51838356,-0.049006727,0.21390297,0.10577204,0.5110592,-0.2612847,0.14922021,0.9501125,-0.13907222,0.042871952,0.030096408,-0.08819164,0.001647532,-0.22955424,0.03947406,0.04964378,-0.41264036,0.009911886,-0.23248713,0.70570433,-0.124049865,-0.8227518,0.26532713,-0.25151762,0.09224413,-0.11445982,0.7770021,0.8657124,0.48407573,0.14172636,1.0142857,-0.4507136,0.011004941,-0.02147088,-0.27193478,0.18936706,-0.31189153,0.15562251,-0.53637683,0.15915601,0.033807453,-0.08704905,-0.087087184,0.52377164,-0.44807854,-0.06660952,0.09560533,0.69385445,-0.36985224,-0.081272475,0.8869465,1.0467454,0.92434627,0.18070559,0.98814785,0.33985174,-0.081563,-0.029045796,-0.23565468,-0.36061546,0.13024937,0.41872284,0.6799294,0.32299826,0.00398312,0.10682622,0.52270484,-0.15324678,-0.097182594,-0.07527276,0.49267244,0.105380274,-0.19805814,-0.3721572,-0.13526647,0.34896797,0.081834085,-0.011946333,0.20965144,-0.12497715,0.58032995,0.046444193,1.0396222,-0.08563482,0.028965004,-0.029633407,0.41775644,0.22547366,-0.20861006,0.18359917,0.30960616,0.14848259,-0.020685066,-0.31482193,-0.043042026,-0.17384084,-0.57952225,-0.21748003,-0.43135512,-0.14506228,-0.23065631,-0.5145521,-0.30803725,0.06980114,-0.33253917,0.34835613,-2.6163538,-0.14616285,-0.31917545,0.2551576,-0.16023134,-0.30073547,-0.0547181,-0.32324252,0.265212,0.53221005,0.19879174,-0.5358828,0.42254302,0.42249578,-0.3536251,-0.11627956,-0.6249531,0.036737658,-0.19057992,0.5823335,0.020898392,-0.26643416,-0.28505573,0.2545582,0.7784961,0.082823925,0.13836078,0.1999341,0.42158312,-0.17884605,0.43068016,0.3062678,0.5310557,-0.07610122,-0.19932428,0.25990337,-0.54770285,0.2036417,0.15903144,0.23740667,0.5434534,-0.25886124,-0.80597293,-0.6379057,-0.24025042,1.2399695,-0.33397147,-0.60526574,0.41199186,0.0033650736,-0.22597663,0.15489633,0.45520878,-0.0559214,0.26189873,-0.6433791,0.0625219,-0.101327136,0.14884223,-0.16093054,0.03771458,-0.35075542,0.8266652,-0.17189468,0.5283663,0.21552172,0.25524816,-0.3973266,-0.39117908,-0.03570768,0.9960617,0.4923585,-0.038607527,0.010000661,-0.36430404,-0.06742151,-0.377831,0.24092102,0.5311903,0.63210195,0.10349788,0.117117316,0.43094525,-0.34976822,0.053193223,-0.09550622,-0.23179549,-0.06440564,0.24772255,0.49318582,0.46384463,0.0057844897,0.4491561,-0.07744698,0.28561988,-0.13671932,-0.61308473,0.34093413,0.7187309,-0.12554666,-0.33441156,0.5326583,0.42877325,-0.39164612,0.38297474,-0.53544223,-0.2805161,0.59465104,-0.024169782,-0.50326955,-0.05231948,-0.54621035,0.1501054,-0.9065393,0.3576623,0.008505607,-0.7318884,-0.60827154,-0.26447934,-3.6557648,0.0042307614,-0.203335,-0.061694372,-0.20265464,-0.33637774,0.42783433,-0.5717858,-0.53427875,-0.024519157,0.015307239,0.44785497,-0.008672926,0.055893794,-0.29866266,-0.16914211,-0.18138024,0.42065084,-0.09288413,0.28311664,-0.035729457,-0.23835881,0.23443724,-0.39188388,-0.60479325,-0.13298078,-0.7087609,-0.6987389,-0.22645052,-0.4280306,-0.26400116,0.8114517,-0.2810863,-0.06429257,-0.3663797,0.03685314,-0.10443991,0.18794788,0.26635718,0.25617695,0.13888513,-0.04041406,-0.16001266,-0.4111746,0.123888575,-0.11158633,0.33239728,0.46791974,-0.2537554,0.27769554,0.6221929,0.57060444,-0.1114785,0.72368395,0.043246053,-0.24006936,0.31810838,-0.17614494,-0.2549251,-0.9378487,-0.5304355,-0.044132028,-0.4133364,-0.26884282,-0.019708999,-0.3252761,-0.7243467,0.53925127,0.12742145,0.2604564,-0.2836989,0.2984767,0.35437763,-0.08291393,-0.085580096,-0.07549377,-0.2988538,-0.56168216,-0.4125387,-0.7697381,-0.7058314,0.13358083,1.1993835,-0.11297125,-0.2542866,0.14168753,-0.22849773,0.0609811,0.09030754,0.20803656,-0.07055274,0.20222838,-0.020573227,-0.80884856,0.4285675,-0.1869952,0.15112057,-0.5324621,0.10937419,0.5174893,-0.5726724,0.52521724,0.39091483,0.37677708,-0.010665706,-0.6452283,-0.2779685,0.08255081,-0.2542702,0.7046677,0.22154528,-0.6561582,0.548758,0.24628364,-0.15655854,-0.4721011,0.38050044,-0.16699073,0.010790697,0.08768614,0.4488898,0.09893182,-0.16375871,-0.2602853,0.23077658,-0.6874902,0.29297146,0.40607494,0.07155673,0.58824176,-0.04075802,-0.428844,-0.4827741,-0.22451633,-0.4936901,-0.22202441,-0.12755989,-0.21936753,0.011237814,0.26822436,-0.10378289,0.5062012,-0.22861893,0.15184374,-0.14023033,-0.22248815,0.4508561,0.6476728,0.38706318,-0.4536084,0.6171927,0.2045383,0.069433816,-0.33479887,0.05933113,0.47794956,0.3029272,0.3728652,-0.04437103,-0.012385893,0.14469393,0.6993711,0.1718801,0.50607324,0.092135735,-0.30546817,0.280742,0.029445698,0.21709763,-0.075369,-0.40346375,0.04320952,-0.07122061,0.15175001,0.32805336,0.12375314,0.4529499,0.04455786,-0.049058355,0.19897255,0.07923562,-0.08167546,-1.0960622,0.23632114,0.42243257,0.6328765,0.4536108,0.011854249,-0.095229074,0.6458395,-0.3213357,-0.012727507,0.2951911,0.04279786,-0.23525839,0.5671622,-0.67018324,0.3141064,-0.21484843,0.008664075,-0.01882404,0.21404448,0.34488487,0.82464314,-0.1136591,0.025876194,-0.069897525,-0.39960945,0.23627977,-0.22518164,0.15348862,-0.27662787,-0.4106323,0.4071914,0.3115521,0.37684673,-0.23540117,-0.12783183,0.20375344,-0.17926897,0.17841448,-0.1733902,-0.16131729,-0.14685781,-0.3721415,-0.38497165,0.53441197,0.033020787,0.109948955,0.10115156,-0.38432404,0.2936734,0.012923128,-0.17166023,0.025710799,-0.38292426,0.14747518,-0.27133605,-0.61219275,0.37577575,-0.40039566,0.1164531,0.22592543,-0.018486502,-0.29978856,-0.08643694,0.22464786,0.69500506,0.021354247,-0.25798884,-0.25219283,-0.18285333,0.21038131,-0.41062313,0.015493075,-0.218188,0.3033206,-0.5664767,0.39699242,-0.39528382,-0.44800264,-0.0072102766,-0.26108572,-0.029799158,0.24839993,-0.36296698,-0.1253315,0.2451051,0.2245222,-0.18828864,-0.087755635,-0.38087958,0.38935086,-0.21620117,0.011342022,0.074053034,-0.14061484,0.031565916,0.47923133,0.023518134,0.09928955,0.20943291,-0.21128944,-0.50517017,0.0032942852,-0.07888683,0.42998883,0.044564597,-0.01494506,-0.12707566,-0.32154274,-0.4008213,0.22281784,-0.08164136,0.24586128,0.14698394,-0.5783966,0.9462674,0.09828379,1.2838274,-0.017935833,-0.49567014,0.0346806,0.56045943,0.096081115,0.26283208,-0.13359462,0.9379114,0.6808201,-0.27916196,-0.020026127,-0.64912224,-0.17179747,0.34065145,-0.34974608,-0.22306643,-0.1817498,-0.7797735,-0.23464803,0.11458915,0.22234073,0.021148456,-0.056920603,0.0055683134,0.09153171,0.1576931,0.39803684,-0.56940514,0.058823235,0.33088204,0.16635567,-0.038078804,0.11037924,-0.397844,0.40941617,-0.7764844,0.30946797,-0.3024572,0.16291536,-0.08399442,-0.21881549,0.30127624,-0.024011532,0.3378027,-0.22232369,-0.4434493,-0.2130064,0.6582862,0.20058504,0.30660802,0.7161846,-0.3478241,0.014593633,0.058280326,0.5474024,1.504583,0.08388853,0.09936838,0.13709322,-0.36106578,-0.6655074,0.2124055,-0.3733775,0.034640465,-0.098616436,-0.54820645,-0.25920194,0.3337444,0.29842046,-0.045849785,0.13907671,-0.37084305,-0.22060725,0.32392475,-0.37267387,-0.13422565,-0.22944044,0.2886752,0.56608796,-0.39307663,-0.2261684,-0.09877264,0.4890838,-0.3637196,-0.6646551,0.066764735,-0.106784925,0.5630525,0.053142134,-0.49939862,-0.07075324,0.23094505,-0.35744056,0.21609946,0.4291816,-0.28641197,0.1549553,-0.33589298,0.081567176,0.83239996,0.2024588,0.26156673,-0.7969281,-0.55648816,-0.9588612,-0.41025537,0.044505335,0.22099079,-0.13874534,-0.58663946,-0.17743091,-0.29949224,0.14043556,0.25126943,-0.6423988,0.42381725,0.030921,0.5478589,-0.12010103,-0.8214352,0.063290246,0.23797123,0.026705258,-0.363597,0.5920423,-0.19166085,0.7702138,0.1942907,0.10935552,-0.06761069,-0.5962745,0.50509155,-0.26001012,-0.14831024,-0.63575476,0.010188254,566 +239,0.3641321,-0.3285671,-0.35682657,-0.21263316,-0.5039266,0.05022504,-0.21996902,0.18514076,0.26444852,-0.36629567,-0.13569121,-0.09672479,-0.008604686,0.21889101,-0.12611692,-0.5200489,-0.04627991,0.1461642,-0.7488537,0.7993514,-0.3393734,0.37211215,0.11768467,0.2611485,0.14068036,0.41942436,0.37991142,-0.10097677,-0.16394208,-0.21952356,-0.27672774,0.0012908935,-0.6496217,0.20861267,-0.3169335,-0.2122912,0.07512303,-0.47120172,-0.28861713,-0.8804579,0.21166022,-1.0203367,0.48197386,-0.1934226,-0.13656689,-0.21963324,0.35533407,0.34371504,-0.322828,0.058267854,0.30499068,-0.34520617,-0.122949675,-0.3445749,-0.02572898,-0.42291513,-0.45129016,-0.22761402,-0.626691,-0.3434494,-0.19386178,0.27435032,-0.30410698,-0.042659897,-0.17313436,0.5237314,-0.37489325,0.11976406,0.24313325,-0.34343496,0.12532593,-0.62180007,-0.04355411,-0.15605496,0.40569314,0.1269729,-0.09002589,0.6041773,0.31160393,0.33645666,0.3107978,-0.4197004,-0.22129837,-0.36225006,0.21389112,0.42544323,0.034250334,-0.3982314,-0.15853831,-0.045161773,0.40464917,0.30201992,0.12425981,-0.30565968,0.0062713763,-0.10413166,-0.15885516,0.7144512,0.5122957,-0.107031696,-0.12537524,0.30673105,0.49659303,0.13953774,-0.44811118,-0.064401165,-0.027559854,-0.48751697,-0.15469994,0.1762635,-0.13208738,0.60697234,-0.19877511,-0.009872913,0.8507101,-0.14994155,0.036003835,-0.004506453,0.090918384,-0.07631996,-0.291083,-0.20668949,0.31135547,-0.60938513,-0.03079561,-0.41854763,0.6501118,0.21346189,-0.6494017,0.3872102,-0.47537115,0.18890275,0.013193854,0.577453,0.62254936,0.47652712,0.30449554,0.9363898,-0.24153806,0.18250212,0.1566568,-0.38840657,-0.03957881,-0.4954738,0.26809624,-0.48336825,0.23397227,-0.16260144,0.14380446,-0.13474597,0.22964549,-0.48244056,-0.21609767,0.22295992,0.9772962,-0.1919055,0.0041131377,0.64507604,1.0511853,1.0466714,-0.038626824,1.2999233,0.17570136,-0.3440141,-0.089428745,-0.16935296,-0.7080832,0.13977721,0.32438743,0.25779477,0.22792374,-0.036752183,0.02129347,0.20566836,-0.61507,0.062568694,0.042220403,0.3746187,0.26505348,-0.03684734,-0.36996228,-0.08680533,-0.10754511,-0.035973463,0.23144293,0.18715003,-0.21846946,0.36841002,0.04363124,1.2290133,-0.014793754,0.041388948,0.08726541,0.6471624,0.29543063,0.08855548,0.1532031,0.48011068,0.26714382,-0.031894207,-0.5222762,0.22694871,-0.53883725,-0.30670747,-0.19927764,-0.4251871,-0.12112724,0.2075066,-0.29730108,-0.36888617,-0.002911369,-0.22615772,0.32663617,-2.6676803,-0.14813347,-0.26315132,0.36988193,-0.29601014,-0.04066263,-0.03505075,-0.6621048,0.2418177,0.19527674,0.52976125,-0.7751942,0.3319262,0.66953063,-0.5854046,-0.18231644,-0.64647686,-0.11365585,-0.05224856,0.69378203,0.08941492,-0.048905145,-0.042408943,0.10947279,0.7128298,0.26133016,0.20471615,0.5783303,0.38802597,0.03166808,0.5696246,0.07106163,0.52944064,-0.28222275,-0.04509231,0.36696878,-0.39727613,0.25862065,-0.18762103,-0.025692936,0.7306542,-0.38045043,-0.5335823,-0.6413263,-0.17223097,0.9341436,-0.35637024,-0.7125582,0.19681492,-0.1074732,-0.045744386,0.04648535,0.5575601,-0.11538657,0.21427733,-0.5537389,0.012985389,-0.11662857,0.23415309,0.07248449,-0.11941208,-0.27558726,0.90596163,0.09632568,0.5719964,0.17239004,0.23731305,-0.28984383,-0.36236274,0.091282286,0.80400026,0.532253,0.053832103,-0.1314494,-0.060227867,-0.1603299,-0.6037113,-0.07855738,0.7606438,0.6574279,-0.19284527,0.19938287,0.46425906,-0.11425508,0.10297977,-0.0802101,-0.3493698,-0.13990904,0.078597315,0.44776458,0.7679093,-0.14643103,0.37535134,-0.12077667,0.26754874,-0.0011869312,-0.6499405,0.6591117,0.7614895,-0.24260622,0.052153196,0.41364032,0.47709498,-0.63690734,0.5333834,-0.68900084,-0.30243582,0.75456804,-0.14237432,-0.59990335,-0.0022268295,-0.23628874,0.20958205,-0.58349407,0.341005,-0.2811488,-0.3756922,-0.38416356,-0.3397959,-1.9740218,0.03674039,-0.20477623,-0.04734815,-0.4396884,-0.020685546,0.11182441,-0.52566606,-0.51191825,0.18888174,0.13240515,0.50352967,-0.115604326,0.272895,-0.34336546,-0.09339151,-0.22667769,0.37346885,-0.04863662,0.31177744,-0.2820482,-0.40082836,0.0029091756,0.006413386,-0.52855927,0.17256495,-0.5658705,-0.3824298,-0.19083725,-0.5747724,-0.3083354,0.7040043,-0.26144922,0.02001127,-0.16400975,0.09503756,-0.19429448,0.053570922,0.19160758,0.31777972,0.15601581,-0.0641595,0.19743271,-0.303302,0.6114956,0.0044459878,0.48656806,0.15508038,0.034557827,0.1500268,0.35429573,0.62498194,-0.20000006,1.0000417,0.2172888,-0.14128007,0.38200328,-0.18481693,-0.38311478,-0.6517994,-0.30580223,0.04467637,-0.37471676,-0.4332328,0.21283515,-0.33226985,-0.8099347,0.54243886,0.09684706,0.46002865,0.05551302,0.12002659,0.3742269,-0.25325832,0.04144834,-0.014346933,-0.09018274,-0.70005155,-0.31235087,-0.7861122,-0.44724306,0.07536242,0.65593916,-0.34037545,-0.27736828,0.011013743,-0.39981797,0.025877276,0.20241846,0.09239651,0.0946454,0.5318432,0.1325818,-0.74803466,0.42044842,0.02710503,-0.020003073,-0.44123694,0.30898598,0.5802061,-0.7776014,0.5783506,0.33160874,-0.038559604,-0.38255522,-0.46196187,-0.31160408,-0.18176833,-0.16323169,0.4674209,0.04368053,-0.7625694,0.41098925,0.0017051081,-0.61776066,-0.6806218,0.33433536,-0.13004467,-0.22074638,-0.09519466,0.38357636,0.172194,-0.2009775,-0.17208077,0.13924882,-0.5781222,0.29805005,0.18725868,-0.06119453,0.47908038,0.034669578,-0.43830553,-0.771079,0.1520669,-0.5614123,-0.29389983,0.3786644,-0.12740763,-0.2676845,0.27597985,0.21984059,0.3381454,-0.1243494,0.21209428,0.044690423,-0.37517598,0.46842286,0.37180784,0.35760215,-0.49435076,0.70479834,0.13314925,-0.20314242,0.13508174,0.07974544,0.27709243,0.16146736,0.5181093,0.040147346,0.02894694,0.2653887,0.72946984,0.28287944,0.51233375,0.15317671,-0.13257648,0.500842,-0.102383375,0.24087909,-0.060525376,-0.6623304,-0.028768318,-0.07094992,0.051225565,0.46735352,0.25855598,0.4986534,0.16856454,-0.059423678,-0.0004626145,0.19051288,-0.23637499,-1.3739879,0.2284677,0.32069397,0.9973787,0.33196065,-0.049310006,-0.17287436,0.8621825,-0.22764848,0.16295208,0.6041407,0.004271587,-0.4403295,0.69718134,-0.49203044,0.43093884,-0.15384261,-0.016192315,0.14942776,0.31786874,0.28858602,0.6303491,-0.32771423,-0.019255666,-0.04481964,-0.3412935,0.050742574,-0.27499375,0.09402681,-0.2731863,-0.49049565,0.47584993,0.40274462,0.33976144,-0.27611035,-0.008416953,0.07019319,-0.18236771,0.33157927,-0.06355398,-0.078546844,0.068328135,-0.3706499,-0.1039175,0.56332743,-0.33152974,0.024584595,-0.1677683,-0.11457889,0.039635357,-0.16983004,-0.031425767,-0.029094284,-0.81819916,0.18888727,0.027628891,-0.608297,0.5614644,-0.10793498,0.017259272,0.17907038,-0.07306447,-0.12158,0.27252772,0.17530109,0.6321194,-0.12959339,-0.27945554,-0.4240147,-0.0094324825,0.13065542,-0.23581006,0.47810397,-0.24746062,0.0055268924,-0.52827483,0.74424005,-0.28806433,-0.34656104,0.068133384,-0.3933448,-0.1415426,0.56365114,-0.0218809,-0.15521407,0.10802335,-0.030878386,-0.26023924,-0.087768316,-0.2672923,0.22262529,0.25226477,0.004317244,-0.26674047,-0.21488495,-0.07943072,0.4231449,-0.16733544,0.28155598,0.0683637,-0.14984967,-0.42000538,0.070972696,0.22804554,0.54492706,0.12941407,0.13875593,-0.14168479,-0.302069,-0.414793,0.31620863,-0.12763375,0.21572362,0.12940264,-0.37185585,0.94383174,0.0021973252,1.3164895,0.020028802,-0.46469143,0.10251974,0.6622167,-0.050942913,0.09733684,-0.39706612,0.9020149,0.51260227,-0.030256204,0.028058134,-0.63954365,0.1721451,0.3558018,-0.2669862,-0.050660912,0.041408118,-0.52038336,-0.42948034,0.18728583,0.1556042,0.031761114,-0.09213452,-0.1371996,0.1786526,0.23627666,0.39874384,-0.66385466,-0.24208961,0.2065316,-0.0010568897,-0.01742882,0.2126641,-0.34200695,0.37667438,-0.68686223,0.19005574,-0.3452926,0.090514965,-0.3473204,-0.3167935,0.10449055,-0.038559176,0.41843495,-0.45838922,-0.5493399,-0.17848697,0.49592808,0.020135792,0.23118702,0.61227334,-0.25584498,0.094325766,0.12445645,0.5194317,1.2596889,-0.35903865,-0.0075487616,0.21676204,-0.6154334,-0.73728526,0.43793997,-0.26675007,-0.030551014,-0.034832932,-0.46771476,-0.5590524,0.13472089,0.035796497,0.0061530173,0.08754317,-0.7119642,-0.29482454,0.2331019,-0.40177876,-0.20604853,-0.28260693,0.3319538,0.6489395,-0.14532205,-0.40472013,0.007869756,0.2993811,-0.29238066,-0.59241366,-0.10279522,-0.2282471,0.3379036,0.09504031,-0.17836891,-0.07436594,0.23019193,-0.5920989,0.19385347,0.18102527,-0.5105027,0.059882306,-0.10584095,0.006713335,0.7910615,-0.108235255,-0.08666917,-0.589751,-0.52667385,-0.80214906,-0.42225644,0.14461002,0.10310993,0.05074548,-0.5001203,-0.17029883,-0.24376345,-0.071851835,-0.017451946,-0.70412236,0.35420173,0.12141626,0.4917303,-0.34697464,-1.017238,-0.0041816873,0.12867244,0.06958206,-0.63441736,0.4692049,-0.090555295,0.85463446,0.1541002,-0.23027416,0.0011676193,-0.42285055,0.115395114,-0.32610196,-0.35037878,-0.51081157,0.19651002,567 +240,0.5006606,-0.25961414,-0.5240752,-0.056626327,-0.23433152,0.15749949,-0.107389465,0.6796223,0.2761033,-0.32230985,0.077705465,0.024711637,0.09817162,0.31645557,-0.0028074423,-0.44939473,-0.06979203,0.22158486,-0.6071957,0.6022241,-0.40353385,0.18486646,-0.35847643,0.4884574,0.12831527,0.21206091,-0.25012463,0.062248126,-0.27246696,0.03200829,0.006370461,0.44860554,-0.4659213,0.057360865,-0.16926602,-0.22064021,-0.17838502,-0.5247781,-0.4442753,-0.6595623,0.32888243,-0.67794174,0.7379744,0.010212461,-0.28369018,0.34059417,0.024101803,0.37370238,-0.30116877,0.014605761,0.048122283,0.07170975,0.001727581,-0.33934155,-0.37301296,-0.41046843,-0.5867977,0.025302999,-0.48452613,-0.03152045,-0.09183402,0.07221315,-0.25324437,-0.0731518,-0.020882536,0.36442864,-0.3853302,0.275889,0.18899213,0.009985507,0.05062515,-0.41426745,-0.18899727,-0.06760672,0.33191568,-0.14953996,-0.27136087,0.24829264,0.17459822,0.46135673,-0.18061294,-0.08807078,-0.43210283,0.026734918,0.020104464,0.5183916,-0.21904193,-0.57348055,-0.16134477,0.1788752,0.14990336,0.12609433,0.30491808,-0.13267614,-0.15537545,-0.1037017,-0.05747788,0.559192,0.45023003,-0.21258894,-0.40366426,0.34960416,0.5362339,0.21432127,-0.19379999,0.0048309355,-0.02588975,-0.5001625,-0.14212903,0.08007899,-0.045754734,0.3716877,-0.041058324,0.12714086,0.51770806,-0.23018363,-0.11648313,0.09850369,0.016128344,0.082224704,-0.26848486,-0.3185573,0.13317086,-0.32326335,0.11373464,-0.08561468,0.38108188,0.28641257,-0.7807414,0.39748433,-0.605478,0.13223317,-0.07848992,0.2751975,0.71447194,0.54763734,0.08714008,0.47226098,-0.17171358,0.16581678,-0.105687335,-0.2175849,0.11738633,-0.22497813,-0.02960213,-0.5881624,0.13135825,-0.0082943,-0.34094125,0.23864196,0.38407034,-0.47265425,-0.15765801,0.2699614,0.8988931,-0.18254974,-0.18552177,0.83494085,0.9405527,0.7618702,-0.0223927,1.13966,0.11838944,-0.15699619,0.32784075,-0.50359327,-0.759417,0.21817048,0.25201884,-0.36197954,0.43442598,0.08993748,-0.08692812,0.27303174,-0.16524991,0.0029353618,-0.03447945,0.15249167,0.11322458,-0.28985348,-0.30574715,-0.2711893,-0.22658665,-0.031031013,0.21883895,0.3406152,-0.3171756,0.36174324,-0.044257026,1.6852793,0.13892668,0.033017,-0.0025770883,0.5918613,0.26960513,-0.20462093,-0.10021695,0.43492883,0.27669558,0.06229322,-0.47039464,0.16745311,-0.1885887,-0.3535352,-0.18149312,-0.3326316,-0.14778668,-0.045990277,-0.47009456,-0.1369348,-0.19183418,-0.124876045,0.48488668,-2.9932106,-0.21770564,0.11415353,0.4576374,-0.2664091,-0.34840363,-0.29201716,-0.27986696,0.3339721,0.21414056,0.52632403,-0.64827514,0.54784936,0.26283824,-0.6501302,-0.09023798,-0.52433604,-0.20719984,0.048019424,0.29959196,-0.23414065,0.071697995,0.24386056,0.14745475,0.42466772,-0.10601049,0.003981911,0.13409534,0.46044606,-0.026745152,0.32090428,-0.2025437,0.5570109,-0.22982503,-0.25449207,0.23189951,-0.38788784,0.3506969,0.0890974,0.014797565,0.45823115,-0.53358525,-0.9977098,-0.5573134,0.17783774,0.8854498,-0.05269508,-0.19004603,0.15673354,-0.6958836,-0.3959988,-0.13521235,0.39615032,0.04306459,-0.14995058,-0.7254612,-0.10892328,-0.027114134,0.16807798,-0.03330284,0.005041945,-0.40127698,0.5003588,0.06640768,0.53576595,0.17615816,0.20143972,-0.33101988,-0.40625748,0.041447315,0.6758836,0.30348113,0.24097122,-0.17613868,-0.3224393,-0.42562836,0.06644392,0.041639652,0.5472773,0.34725094,-0.12228368,0.121573366,0.23037656,-0.11299963,0.18714698,-0.21469888,-0.13464335,-0.16178958,0.13369684,0.41943353,0.6123227,-0.32495376,0.6197213,0.08275963,0.1879388,-0.106572844,-0.47725347,0.46277714,0.94941366,-0.21262957,-0.36041343,0.46901718,0.3456403,-0.38110998,0.3757365,-0.3953397,-0.12101404,0.3613158,-0.25539103,-0.19125421,0.37225267,-0.26089296,0.12946406,-0.93927777,0.11267917,-0.36253643,-0.40589502,-0.45467994,-0.021824146,-2.881691,0.11747139,-0.13827486,-0.25139967,-0.041377697,-0.17657147,-0.00942719,-0.5855881,-0.6216715,0.20597032,0.1097881,0.63895303,-0.23816517,0.09324622,-0.21373224,-0.47588578,-0.3162769,0.18179348,0.12944838,0.45536867,-0.09721026,-0.40233144,-0.21065302,-0.04917985,-0.32074106,0.11341592,-0.6699475,-0.29016453,-0.00784614,-0.6000897,-0.10036565,0.6691532,-0.105919704,-0.09703148,-0.2743403,0.07802331,0.0013272663,0.36150363,0.034150913,0.083680466,0.17147468,-0.17183848,0.26619974,-0.21967635,0.31599486,0.007199474,0.40324834,0.27102646,-0.115931034,0.2697263,0.5047473,0.6958299,-0.21672513,0.7171003,0.476488,-0.16286659,0.39438412,-0.36606655,-0.18167333,-0.28905922,-0.2225805,-0.04459794,-0.37128833,-0.48038217,-0.16780567,-0.5076272,-0.75458807,0.33025983,-0.09366167,0.023705535,0.027919639,0.3997172,0.56078184,-0.16036221,0.120933644,-0.15975904,-0.096089505,-0.4496151,-0.1973864,-0.3625758,-0.39527225,0.28773022,1.0650331,-0.24241509,0.059833124,0.011020255,-0.24941495,-0.012974804,0.22405796,0.0013275543,0.21671699,0.4558635,-0.22600624,-0.46066505,0.28452492,-0.23359694,-0.27408168,-0.57632995,0.2247288,0.4377044,-0.5344559,0.7446907,0.14432955,-0.01586655,-0.15396217,-0.50087935,-0.07000611,0.10275326,-0.048697527,0.38434836,0.2903757,-0.8325312,0.3441344,0.3700574,-0.3613144,-0.53553325,0.5191575,-0.038724996,-0.29703405,-0.23701124,0.24213105,0.19149654,0.006472103,-0.28358445,0.31035408,-0.44200188,0.20281066,0.14503196,-0.0352662,0.11064932,-0.07934506,-0.0836021,-0.698403,0.11373178,-0.42137825,-0.29710862,0.38723361,0.16011125,0.3905789,0.022041567,0.17584206,0.3335109,-0.3821382,0.09777422,-0.14345774,-0.28504127,0.24308306,0.29839668,0.4841814,-0.41993657,0.45284763,-0.030481331,-0.21672124,0.19312605,0.11402374,0.56348723,0.06502745,0.3065399,0.1933266,-0.21847717,0.19532868,0.74456954,0.11755524,0.2502471,0.04999138,-0.13125639,0.14247578,0.051033672,0.06766767,-0.03178037,-0.40338343,-0.014801939,-0.053909462,0.21975794,0.48925215,0.20586497,0.08564221,-0.11156736,-0.33113077,-0.099793464,0.29460236,0.11602401,-1.2505143,0.15403825,0.27745456,0.9055178,0.28729236,0.2304533,0.028198648,0.60363764,-0.15105598,0.111420855,0.40327775,-0.10117383,-0.5309659,0.42336363,-0.6001348,0.5946718,0.018664801,-0.019376997,0.08499145,-0.06255037,0.5766258,0.78902835,-0.21294431,0.06484076,0.21463113,-0.31612253,-0.034135077,-0.31252104,-0.050138894,-0.61532396,-0.09340311,0.6873812,0.5097269,0.33836433,-0.27588713,0.011802284,0.17632367,-0.05536023,0.044506624,0.028396158,0.22568849,-0.09133125,-0.6307638,-0.0609621,0.48000768,-0.21489027,0.13400745,0.085080214,-0.2015963,0.30259565,-0.13450035,-0.0023644646,-0.09672858,-0.62706757,-0.044764794,-0.27712855,-0.4460399,0.5988179,0.100126125,0.20892903,0.27484226,0.14594612,-0.23770376,0.6165127,-0.08469663,0.88898945,-0.07180524,-0.11570468,-0.3977752,0.33062333,0.116472326,-0.17170094,-0.008474678,-0.1926515,0.07927586,-0.5268002,0.4020127,-0.010655775,-0.33474118,-0.2166804,0.13355793,0.24224092,0.49837196,-0.19657736,-0.08606003,-0.14189714,-0.09766543,-0.4450623,-0.23571996,-0.12645449,0.23915638,0.38606843,-0.08776864,-0.12913801,-0.08735583,0.035305507,0.48553407,0.01000617,0.41024116,0.33162048,0.308051,-0.12800014,-0.18848723,0.2651948,0.48533854,-0.19617991,-0.040594485,-0.39145535,-0.29511163,-0.37435958,0.19790834,-0.14506763,0.20601068,0.08964939,-0.21925129,0.66884106,0.039346743,1.1467788,0.014751214,-0.32731897,0.32768723,0.5085181,0.0054034987,-0.08064154,-0.40227714,0.9443909,0.47154018,0.08359763,-0.08730695,-0.31955096,-0.08188731,0.044021018,-0.3027215,-0.15966898,-0.0016890158,-0.48766613,-0.2368173,0.22589056,0.108159386,0.383557,-0.14610118,0.22707288,0.26102468,0.029199414,-0.03703354,-0.3831485,-0.2384106,0.31446177,0.3457858,0.05467875,0.073525116,-0.5371855,0.23204233,-0.32044092,0.0348113,-0.08135283,0.18131629,-0.074691296,-0.40056127,0.1660385,0.06821055,0.16205388,-0.33554265,-0.31867948,-0.2449232,0.46390757,0.04272323,0.16960287,0.48622614,-0.23362605,0.035530843,0.016385874,0.43245298,0.7750298,-0.072004944,-0.19903533,0.35299334,-0.36198565,-0.71535516,0.37633342,-0.29422575,0.38167953,-0.0073692403,-0.024767602,-0.6930942,0.3670459,0.1249996,0.15696642,-0.14456578,-0.51286757,-0.2172031,0.21933335,-0.3036217,-0.19803722,-0.34388515,0.06950227,0.7523178,-0.1282812,-0.36704937,0.23534168,0.1769794,-0.16810846,-0.41745955,0.013675002,-0.3205599,0.17698327,-0.048205253,-0.25704828,-0.18578409,0.0645942,-0.38622802,0.21242332,0.17765428,-0.3371642,0.18202646,-0.4497424,-0.17664744,0.9224277,-0.41920644,0.25366965,-0.42290586,-0.60232747,-0.77972263,-0.32997528,0.26155016,0.10651714,-0.004260143,-0.8536705,-0.026763098,0.027003828,-0.42732003,-0.065493815,-0.26454836,0.4166674,-0.013134926,0.12547265,-0.27394718,-0.74309707,0.12667139,0.16410327,-0.28424683,-0.70739245,0.45013174,0.029465223,1.0548929,0.124105774,0.20655139,0.4354268,-0.37501425,-0.2899537,-0.20021291,0.012329833,-0.46477515,0.02028904,570 +241,0.5224451,-0.047031958,-0.44421396,-0.1864995,-0.16978732,0.40513012,-0.25297838,0.26531568,0.028388454,-0.6132866,0.021265788,-0.17909281,0.011620011,0.3868324,-0.23113884,-0.36343488,0.17093176,0.08931694,-0.65100676,0.26999074,-0.5355743,0.32417393,0.15473114,0.3691081,0.0030104062,0.28307056,0.27861586,-0.25274804,-0.309902,-0.1929904,-0.06337869,0.17094643,-0.44290516,0.17167993,-0.08517329,-0.18684532,0.07068012,-0.49767333,-0.4405645,-0.58144164,0.17237854,-0.72366977,0.57776314,0.0011381785,-0.26175755,0.20831044,0.1623822,0.14700694,-0.2599726,0.20010398,0.2922535,-0.2915611,-0.14931077,-0.17291185,-0.25172666,-0.48389062,-0.5866512,-0.009603286,-0.47420415,-0.08415368,-0.30429772,0.21266463,-0.17532791,-0.10599982,0.015752135,0.38904244,-0.34066898,-0.013660725,0.12078652,-0.22658561,0.29765594,-0.40327626,-0.15440693,-0.07937584,0.33685315,-0.21985474,-0.09354218,0.2703946,0.33173898,0.6038457,-0.08439991,-0.15778227,-0.37691438,-0.027528524,0.09325544,0.6284865,-0.19854759,-0.33034265,-0.16150597,-0.18023223,0.25103733,0.1812467,0.043353695,-0.38340035,-0.14805248,-0.07644019,-0.21633889,0.262238,0.53808117,-0.34771279,-0.10380961,0.43853617,0.41887036,0.1029789,-0.034542013,0.054737933,-0.04003373,-0.63325447,-0.07932186,0.15609632,-0.16606222,0.5071785,-0.079555385,0.3083932,0.6646206,0.020251626,0.0641969,0.10865645,-0.038906164,0.060581706,0.050611265,-0.20160584,0.08768323,-0.38266832,0.020544343,-0.19688514,0.7070785,0.20960419,-0.836113,0.4247324,-0.3824136,0.0058583557,0.09118397,0.44062436,0.61594945,0.48082075,0.058703978,0.6740806,-0.62403065,0.047782738,-0.09702415,-0.19157773,0.1856001,-0.07522358,-0.05535758,-0.4339756,-0.06904725,0.12349219,-0.042152245,0.015815457,0.5499211,-0.48589858,-0.05833499,0.14502707,0.785004,-0.3897782,-0.102513045,0.5424384,0.9574438,0.87822837,0.18097457,1.2170523,0.19561863,-0.2469045,-0.0579171,-0.30198467,-0.7117303,0.37289292,0.34289125,-0.071920395,0.2140546,0.08383064,0.15390159,0.31916556,-0.40017202,0.030311614,-0.14804891,0.23391019,0.03296589,-0.10307236,-0.25475287,-0.36587796,0.11168361,-0.11418295,0.2383143,0.17375062,-0.28156045,0.39364627,0.061501287,1.6480045,-0.15638395,0.14553435,0.09268238,0.31750625,0.09758907,-0.061665963,-0.29900995,0.31870854,0.4176019,0.024966013,-0.38163444,0.057814598,-0.05390147,-0.44176954,-0.15007724,-0.28557584,-0.065802984,-0.13835853,-0.35940698,-0.2035223,0.062052887,-0.55754006,0.5370311,-2.7160466,0.003979687,-0.1687679,0.35352185,-0.2366176,-0.3337931,-0.26419055,-0.33217642,0.48763937,0.32474425,0.40330994,-0.52806515,0.24712548,0.5028074,-0.29459903,-0.2074798,-0.6639337,-0.09833144,-0.09973565,0.16436972,0.085565016,-0.22073063,-0.08909533,0.28355885,0.43180412,-0.0923529,0.05092508,0.24839242,0.34672794,0.18785079,0.553189,-0.031971682,0.5758975,-0.35658818,-0.19675128,0.41445905,-0.51204294,0.09471902,-0.0811731,0.18821338,0.30116174,-0.42541257,-0.87991357,-0.6123194,-0.21654627,1.1922917,-0.28781632,-0.3102872,0.26946113,-0.0848192,-0.32745373,0.0856652,0.47516373,-0.20205852,0.035482265,-0.8388599,-0.2289849,0.060812343,0.23787326,-0.05159596,0.14727163,-0.5578096,0.52156025,-0.09943889,0.52909094,0.26105767,0.19477554,-0.29448217,-0.4434986,0.032166917,1.0662419,0.25925806,0.17697135,-0.042115886,-0.20413612,-0.21178809,-0.11900077,0.09465538,0.47165993,0.6867829,0.07044759,0.13137487,0.2051389,-0.09639111,0.1340845,-0.10335101,-0.28746685,-0.07007933,-0.042818505,0.63216007,0.5238801,0.0614851,0.29503757,-0.18528071,0.41366416,-0.2857824,-0.41057727,0.54348207,0.6544597,-0.16819136,-0.22521444,0.55777895,0.40926445,-0.14366011,0.42181173,-0.6580868,-0.52189875,0.44410887,-0.15992025,-0.49776122,0.18964604,-0.3175656,0.22456887,-0.8838994,0.40704647,-0.19227982,-0.49588776,-0.37495145,-0.16125849,-3.2722707,-0.036334895,-0.11598958,-0.25774205,0.03006797,-0.10487337,0.25673607,-0.49146774,-0.53066516,0.010023328,-0.046419796,0.6222628,0.05933215,0.10701488,-0.25900927,-0.22922663,-0.37251198,0.16362496,0.09740921,0.37384102,0.112950474,-0.4253654,0.09406948,-0.37484044,-0.36860752,0.035145402,-0.5853288,-0.3839733,-0.17467766,-0.5087718,-0.38929388,0.67185825,-0.5627609,0.036861587,-0.28453013,-0.0046939086,-0.18148802,0.4743388,0.16107579,0.22101511,0.06394946,-0.1377921,-0.012342525,-0.2993536,0.39625087,0.15634796,0.0742983,0.4735195,-0.12748876,0.034327615,0.46572012,0.65863717,-0.17422631,0.7979795,0.3622036,-0.0005505463,0.2459167,-0.44230923,-0.24474801,-0.33952445,-0.35071835,0.14877467,-0.46182406,-0.33908427,-0.18050562,-0.38796934,-0.7882345,0.41945267,-0.017580334,-0.028620923,-0.094314665,0.06879738,0.25917363,-0.33860463,-0.12391424,-0.07358755,-0.17955235,-0.39328024,-0.23663655,-0.68226403,-0.4910415,0.03727142,1.0441136,-0.027919794,0.07958845,0.14618723,-0.21490759,0.15157877,0.01906387,0.027745305,0.120474555,0.41744772,-0.0040395022,-0.720064,0.44403797,-0.3156032,-0.15939471,-0.5421064,0.11107337,0.6605601,-0.6480845,0.5747563,0.4246529,0.19018348,-0.11767374,-0.57921976,-0.26572883,-0.04276758,-0.16648947,0.42921,0.03138961,-0.75989693,0.45208836,0.38857812,-0.32211092,-0.67728955,0.45445532,0.032440722,-0.18968712,0.19179344,0.42480087,-0.07945347,-0.042904545,-0.12985834,0.1275539,-0.545646,0.5073857,0.38082156,0.14237247,0.5255622,-0.29513696,-0.17724878,-0.6030971,-0.2498091,-0.35199413,-0.30634278,0.21285366,0.04219293,0.086547464,0.05698005,-0.012657539,0.4470596,-0.4281204,0.0846506,-0.06539377,-0.049985472,0.29366982,0.41605076,0.5465117,-0.38607958,0.51361483,0.013523049,0.014592187,-0.19985265,-0.004727801,0.45663765,0.16603893,0.23912263,-0.14974493,-0.23097645,0.35712808,0.76028264,0.19622664,0.27383164,0.13980666,-0.23620072,0.18074672,0.12670039,0.03501611,0.023573522,-0.41986927,-0.04988803,-0.20975567,0.2183244,0.386685,0.063050225,0.35297072,-0.096608,-0.22913978,0.06383018,0.1412859,-0.22556669,-1.2847666,0.38335133,0.097033866,0.73778504,0.35835323,0.115452655,0.0547543,0.68284744,-0.19790499,0.11704424,0.174903,-0.11855011,-0.4618103,0.52170527,-0.591325,0.45808688,-0.05553918,-0.04064334,0.052945904,-0.032376822,0.44124064,0.9416718,0.0045679966,0.19414479,0.030540466,-0.2137554,0.16339915,-0.41942933,0.12587492,-0.49740806,-0.21063732,0.6169039,0.33561373,0.47318015,-0.20665579,-0.013695671,0.043869212,-0.09706295,0.124671966,0.09940703,0.093587995,-0.06882987,-0.7309643,-0.2892603,0.49270904,0.25531587,0.055507954,0.28466704,-0.24917978,0.28637192,-0.30380905,0.02218558,-0.12097571,-0.5557481,-0.119919926,-0.35053444,-0.38292435,0.12589398,-0.16444975,0.20480485,0.23623861,0.0506639,-0.25028193,0.46678856,0.19996771,0.805632,0.09515565,-0.21533434,-0.30722836,0.1504527,0.23761554,-0.31048048,-0.036413774,-0.32528704,0.031163542,-0.5583528,0.32559842,-0.12380998,-0.25098905,0.22555071,-0.15430956,0.07092441,0.5856655,-0.1575366,-0.14127731,0.107841626,-0.048460793,-0.32708842,-0.015072337,-0.25862628,0.14941053,0.17110465,-0.05545714,-0.031271797,-0.030505124,-0.118965864,0.30146188,0.10038648,0.38776174,0.43447775,0.11243789,-0.37985098,-0.026614534,0.025919229,0.5777784,0.10058122,-0.07992576,-0.39853585,-0.44701046,-0.29683545,0.19213282,-0.23115657,0.19118781,0.13479419,-0.24744138,0.6927752,-0.09913506,0.9451109,0.14376312,-0.16706578,0.014996481,0.53268886,0.062238872,0.06580356,-0.4026175,0.92988235,0.48197392,-0.089588165,-0.015826812,-0.31009927,-0.126008,0.16182733,-0.3095075,-0.23278685,-0.1691873,-0.7166492,-0.25973746,0.25475928,0.14822143,0.15180111,-0.07681397,0.009576384,0.23309317,0.21551155,0.3269625,-0.50571305,0.054045167,0.37468037,0.27900952,0.031089,0.15073945,-0.4061847,0.33891147,-0.47134268,-0.10597244,-0.20573916,0.056514557,-0.13360725,-0.37211317,0.23999093,0.1231886,0.2947468,-0.32320487,-0.33022922,-0.09506545,0.51314056,0.24896431,0.31044436,0.6895101,-0.14125128,0.0075441045,0.11222887,0.48535258,0.98572904,-0.31221122,0.15886612,0.47857606,-0.2285202,-0.6043856,0.15767035,-0.40756765,0.17189075,-0.09216664,-0.3531311,-0.320107,0.2745458,0.13678065,0.049650054,0.065334894,-0.49611512,-0.18846492,0.41849905,-0.24836697,-0.35549667,-0.40737343,0.10331139,0.47841305,-0.29646155,-0.17352007,0.044528715,0.40157095,-0.28304335,-0.59928674,-0.054527353,-0.37392583,0.19241224,0.14824514,-0.38100052,-0.124549694,-0.07806506,-0.3777774,0.2377237,0.06993671,-0.39574626,-0.016292643,-0.31519505,-0.018305413,0.7961962,-0.08642362,0.08280401,-0.62380725,-0.4332067,-0.9953911,-0.16473958,0.42617878,0.07268967,-0.18072367,-0.46644458,-0.122220606,-0.06717821,0.06570373,0.04321674,-0.38549504,0.34508565,0.07358564,0.43591484,-0.07079722,-0.6632857,0.01995836,0.052818228,-0.26807708,-0.5253557,0.5958974,0.03175115,0.7309402,0.13431937,0.040322885,0.2548259,-0.6026603,0.13937096,-0.23028262,-0.05817449,-0.7062992,0.22257467,571 +242,0.30875695,-0.23732068,-0.5509156,0.020380475,-0.07775757,0.21573271,-0.16042471,0.2370437,0.33943087,-0.3140556,-0.2869775,-0.24967133,0.03108962,0.14938688,-0.12839308,-0.6080162,-0.039513987,0.3841324,-0.69723874,0.6247476,-0.20017453,0.38167328,0.16987307,0.28259277,-0.19308577,0.10899686,0.17674303,-0.19754337,-0.011069997,-0.1752719,0.033462103,0.16042128,-0.72617173,0.29803532,-0.55062807,-0.41371223,0.02395503,-0.41389358,-0.35791743,-0.8616202,0.31479168,-0.6057746,0.78389,0.2430554,-0.22076088,0.091235444,-0.059791572,0.35040754,-0.14591067,-0.021778408,0.19737607,-0.084534526,-0.19315046,-0.29950133,-0.10122065,-0.24640599,-0.5931551,0.17386627,-0.42783633,0.10735299,0.047664046,0.25248474,-0.09782236,0.15672965,-0.23033835,0.41490257,-0.4346089,0.12325244,0.31824362,-0.089824006,0.1259662,-0.55042994,-0.04118338,-0.07855174,0.341714,-0.2064736,-0.17626145,0.17746201,0.007232261,0.727817,-0.012938603,-0.2820123,-0.0062082605,0.10427625,-0.18095607,0.60239285,-0.16800708,-0.22115935,0.05349541,0.016097583,0.3254129,-0.004092155,0.029667366,-0.3274515,-0.083820485,-0.45719415,0.02122105,0.13025256,0.6856677,-0.37393227,-0.16089816,0.19962679,0.5914565,0.115316786,0.13804054,0.016613288,-0.022812216,-0.5253016,-0.21190023,-0.19139606,-0.3077919,0.6490657,-0.11219948,0.17853087,0.3760678,0.071468815,-0.106693715,0.18272549,0.048611864,0.046948437,-0.093550205,-0.5131338,0.47397944,-0.38039038,0.055988837,-0.29459298,0.48457634,0.11313565,-0.65314454,0.4204368,-0.50095284,0.13493507,0.24736223,0.6549016,0.6768552,0.57801753,0.14272204,0.5982813,-0.5261807,0.11637611,0.04330199,-0.10527272,-0.009147707,-0.09028278,0.015975833,-0.43576905,-0.04664735,-0.18043266,-0.18382664,0.07660591,0.2611586,-0.7334806,-0.18833233,0.044510677,0.73411644,-0.22130762,0.042583276,0.8984998,1.0798584,0.8608481,0.02389109,1.2696856,0.35108408,-0.30779395,-0.09423815,-0.21001281,-0.77169216,0.05849112,0.22792415,-0.15362176,0.50610274,0.13599914,-0.19531833,0.50256336,-0.78869647,-0.07847865,-0.08912552,0.15883023,-0.16515715,-0.059592508,-0.41019338,-0.13379188,-0.05173064,0.007262202,0.22321743,0.2765981,-0.29152817,0.2918953,0.23864177,1.278384,0.006237356,0.07697312,0.19608341,0.08385578,0.2279497,0.02895184,-0.14303507,0.28020057,0.26842928,-0.1354166,-0.37022933,-8.608699e-05,-0.31450573,-0.22217448,-0.3069296,0.099292345,-0.09240966,0.093743704,-0.3874832,-0.3612576,-0.15477608,-0.18208441,0.267108,-2.3976054,-0.27875438,-0.092753544,0.5635427,-0.356765,-0.30749854,-0.10918541,-0.5103745,0.42617834,0.29942995,0.18837102,-0.62550175,0.31059062,0.34749037,-0.6133396,-0.22478034,-0.49930948,-0.05378728,0.118503965,0.19512777,0.05648091,-0.14491293,-0.03789967,0.01841266,0.21220715,-0.18633607,0.0014980823,0.40300083,0.39017183,-0.016731199,-0.019689139,0.11694424,0.49014297,-0.4409235,-0.110989414,0.41778454,-0.36657575,0.30880007,-0.30414227,0.09712258,0.35038173,-0.40890482,-0.48978838,-0.54311466,-0.19212088,1.0349672,0.0325796,-0.4342481,-0.058551725,-0.19449463,-0.27344942,-0.061776917,0.6247255,-0.1961574,0.08984327,-0.8809312,-0.2067225,-0.07276475,0.5115566,0.123275846,0.06224127,-0.69402605,0.5784663,-0.15292431,0.41871956,0.5958113,0.32212335,-0.23970181,-0.5746766,0.15561633,0.96350783,0.53127116,0.12405588,-0.19219358,-0.00824819,-0.19522366,-0.02106743,-0.1908659,0.7129907,0.60977674,-0.17959747,-0.0647892,0.244464,0.21213225,0.120977394,-0.26786283,-0.37305415,-0.14142475,0.03266246,0.61546886,0.84394735,-0.34202766,0.045256678,-0.094921626,0.56654644,-0.14931239,-0.48324922,0.5028548,1.0408088,-0.21037538,-0.042978983,0.6573549,0.23960139,-0.2664522,0.44006214,-0.82553935,-0.5124615,0.4101244,-0.06327049,-0.48992112,0.22749239,-0.2622321,0.22017483,-0.8569752,0.6063887,-0.1553784,-0.1040317,-0.80795187,-0.11754202,-1.7949547,0.18372704,-0.41390812,0.1504069,-0.06970821,-0.06851111,-0.0030867895,-0.48137733,-0.6394722,0.23777552,0.08460213,0.3375456,-0.13112755,0.25302154,-0.09203663,-0.49118474,-0.1403241,0.31054,0.34065354,0.16872296,-0.09279574,-0.3018907,-0.06052347,-0.0913714,-0.13878576,-0.020103374,-0.6487025,-0.37958303,-0.24560426,-0.668917,-0.083635256,0.5057735,-0.35868347,-0.005371928,-0.2941141,-0.02213604,-0.038024902,0.17478947,0.15418641,0.2821516,0.040797565,-0.10983152,0.026413647,-0.29576862,0.29928428,0.14535053,0.069769576,0.3680803,-0.19705552,0.113422886,0.12998027,0.90153337,-0.14946267,0.66935617,0.46311855,-0.10061861,0.2982648,-0.17156452,-0.45906308,-0.51935947,-0.24597107,0.031469658,-0.33074743,-0.3378603,-0.103685535,-0.5065046,-0.74955446,0.4218085,-0.121585384,-0.16824761,0.16536249,0.27098784,0.5265313,-0.36835453,-0.062271748,-0.05080213,-0.027995484,-0.3616832,-0.2864399,-0.41252604,-0.42568982,0.053158727,1.10739,-0.022471985,0.23603389,0.2801949,0.01955978,0.014550511,0.12491504,0.09873848,0.08163194,0.62078315,-0.08539912,-0.64751357,0.35280043,0.011757779,-0.4533725,-0.6553782,0.3733365,0.5216087,-0.6952555,0.5120479,0.5170691,0.0073513826,-0.08218776,-0.4939698,-0.19926356,0.11182262,-0.27727333,0.36368644,0.14704797,-0.28926516,0.2632314,0.2562749,-0.3290424,-0.91848904,0.44327745,-0.0027703205,-0.605399,0.10542736,0.46940354,-0.21654813,0.038193814,-0.09217066,0.08316677,-0.1413496,0.20373707,0.0956423,-0.22902384,0.2545434,-0.4542141,-0.115322046,-0.96887964,0.23813233,-0.6237573,-0.37991816,0.22129545,0.1206876,-0.10253919,0.15845622,0.2943081,0.5194014,-0.36697206,0.14784545,-0.16895501,-0.3008422,0.38052547,0.38049126,0.39451092,-0.29214084,0.58353215,-0.094728105,-0.011761779,-0.38824856,0.08526671,0.4528677,-0.114576206,0.27624387,0.12290964,0.10837509,0.19101359,0.61310446,0.14635988,0.35444894,0.24401043,-0.100552,0.21011576,0.05251195,0.024707533,-0.077834256,-0.4529288,0.06840513,-0.12758408,0.010935041,0.42934623,0.23878829,0.4577758,-0.19628035,-0.48049024,-0.0065149567,0.2901959,0.24794634,-0.9537984,0.12679379,0.07089831,0.70068604,0.5220641,0.27551812,0.036733177,0.4603505,-0.13396484,0.038553525,0.3857851,-0.06865587,-0.21791573,0.4684265,-0.45935196,0.41354102,-0.020807164,-0.01751829,0.056545556,-0.17880109,0.18695037,0.8107521,-0.13789962,-0.056508437,-0.17901729,-0.06897602,-0.03999362,-0.44022855,0.2707835,-0.43183377,-0.46157494,0.7736176,0.36928004,0.33497033,-0.3155926,0.13001898,0.081611685,-0.17881319,0.22933514,-0.023690943,0.20620058,0.08597153,-0.502122,0.036384534,0.50316554,-0.07522722,-0.09394882,-0.049317397,-0.22909828,0.11315915,-0.27450985,0.0014397621,-0.04451101,-0.9394423,0.027865108,-0.40045387,-0.16432495,0.58292603,0.05311271,0.18829659,0.07964978,0.10609916,-0.46332327,0.36529955,-0.1273016,0.8426796,0.40358713,-0.07492551,-0.16536264,0.46132082,0.27768594,-0.2598599,0.30697045,-0.2377331,0.25238138,-0.5684318,0.41875497,0.17453334,-0.10912761,0.073705226,-0.19498275,-0.025232488,0.51378137,-0.17941692,-0.22885376,0.28252602,-0.1233543,-0.21183176,-0.28609765,-0.23318526,0.15376534,0.4254139,0.08984542,-0.077321865,-0.122767575,-0.44337854,0.5232205,0.1873321,0.29044473,0.46696955,-0.026965046,-0.47554347,0.10007569,0.0028649806,0.37434858,-0.10908322,-0.23592915,-0.22526945,-0.66028976,-0.3063315,0.2589693,-0.15772691,-0.008799124,-0.019013064,0.0843839,0.8461443,0.3204705,1.1517533,-0.018695457,-0.16455005,0.0952424,0.51884925,-0.018593272,-0.10142032,-0.5231334,1.2538445,0.5636701,-0.013622617,-0.07398537,-0.06948369,0.047553502,0.07240848,-0.08541016,0.008189702,-0.025112264,-0.58271855,-0.29062957,0.11233744,0.42498967,-0.17274027,-0.08711884,0.11478182,0.10815137,-0.056793258,0.27125868,-0.5304956,-0.14045702,0.40189824,0.12559931,0.013859517,0.21315853,-0.36363462,0.5007908,-0.44936934,-0.10480785,-0.4702214,-0.11083461,-0.17330518,-0.31109968,0.22652458,0.1301097,0.2486796,-0.69730747,-0.31212664,-0.38920414,0.21399908,0.25107196,0.043890648,0.58270395,-0.14461906,-0.09121613,0.053301208,0.5714465,0.9181402,-0.48418587,0.13768409,0.35253653,-0.44745195,-0.49675757,0.22122195,-0.17225622,-0.09647258,-0.22898223,-0.21614389,-0.5533932,0.15586954,-0.04637867,-0.07601942,0.07173834,-0.82869405,-0.03693197,0.3402783,-0.35844052,-0.090085946,-0.27146503,0.23696774,0.7532984,-0.119608484,-0.44930997,0.04372888,0.19328038,-0.3652681,-0.8128728,0.0046399315,-0.44282493,0.21353486,0.19771074,-0.22662917,-0.27527043,0.24351908,-0.5549062,-0.004639558,0.31504872,-0.4154654,-0.062618025,-0.35130814,-0.06409898,0.7001963,-0.09384561,0.13737965,-0.5197547,-0.39380997,-1.2113746,-0.2642487,0.46410522,0.28296965,0.10271514,-0.8266974,-0.087110676,-0.27232197,-0.108240195,0.041815814,-0.0629107,0.37401542,0.35214588,0.64689696,-0.34437168,-0.88213295,0.08856284,0.036660507,-0.38638318,-0.34303126,0.2020476,0.3800115,0.8403492,-0.055757858,-0.023849169,0.40861008,-0.825923,0.13935511,-0.16004257,-0.115079165,-0.663573,0.0068027335,577 +243,0.23074225,-0.16917458,-0.44086844,-0.17449304,-0.4133629,0.097096995,-0.18025057,0.33731174,0.08206504,-0.36256757,-0.38152507,-0.11038833,0.0986633,0.44965115,-0.18175073,-0.35140306,-0.19739777,0.18346332,-0.741018,0.43209362,-0.6612651,0.2680188,0.1564812,0.41351536,0.20365888,0.30821383,0.16692454,-0.1791237,-0.16839796,-0.00040225982,-0.06134678,0.20606674,-0.49287593,0.0499261,-0.15722783,-0.29058412,0.013378477,-0.4469358,-0.1243748,-0.7764898,0.2819663,-1.0093015,0.43317455,-0.16132168,-0.11600022,-0.0048076073,0.31988776,0.30836505,-0.3738095,-0.046674944,0.27374706,-0.20920762,-0.27546167,-0.25182092,0.059088252,-0.33517954,-0.51921886,-0.035729602,-0.42364654,-0.27164757,-0.22263767,0.27935326,-0.39305368,0.10248285,-0.13613774,0.38555345,-0.36838678,-0.064383455,0.22779803,-0.15717982,0.10457348,-0.5756063,-0.018047087,-0.08053408,0.53931767,-0.16027841,-0.1427925,0.36798328,0.29847747,0.36694938,0.15216129,-0.30369392,-0.21102455,-0.06040474,0.15485582,0.51292413,-0.17189728,-0.4233757,-0.04206724,0.1287557,0.26374528,0.33952764,-0.016916787,-0.2025004,-0.028111044,0.0031658174,-0.26461986,0.33659703,0.5052601,-0.20359488,-0.34779993,0.37015226,0.61309177,0.20998819,-0.14062041,-0.10239234,-0.05827687,-0.613658,-0.12802796,0.21346456,-0.19431664,0.44537324,-0.1912067,0.15719248,0.9476353,-0.11372997,0.047382012,-0.12129662,0.039686084,-0.25407004,-0.24680918,-0.31215745,0.17922713,-0.5278517,0.20854566,-0.31067926,0.7496801,0.15406232,-0.6541331,0.44278854,-0.6231754,0.14320016,-0.059974615,0.4765772,0.62804615,0.3789411,0.4207622,0.77742326,-0.31339934,0.09639835,-0.09288405,-0.46454015,0.08056275,-0.27324137,0.16887306,-0.3987565,0.12465104,-0.050496563,0.045582645,-0.07494116,0.49589223,-0.5546652,-0.0145327095,0.1561912,0.6667818,-0.43198618,0.018205702,0.7247301,0.9199523,0.98019487,0.06131159,1.3077227,0.3472561,-0.29684466,0.28628653,-0.34907717,-0.7723357,0.246864,0.41997853,0.0329784,0.16612665,-0.08175947,-0.07517039,0.35421115,-0.5295598,0.1548596,-0.2180904,0.25492442,0.21647103,0.02936128,-0.30525,-0.30754608,-0.033202957,-0.028387718,0.18049479,0.21380149,-0.13602096,0.30888262,-0.058914192,1.5308797,-0.07293069,0.13342156,0.13137907,0.5612568,0.15297715,-0.033297766,-0.0890987,0.4056177,0.4619827,0.00058075984,-0.6312781,0.14584714,-0.3173476,-0.5199144,-0.12549384,-0.3281903,-0.1236489,0.064072944,-0.39716852,-0.15444653,-0.06743403,-0.23234291,0.38144717,-2.4568353,-0.26295874,-0.2440771,0.20297144,-0.37693086,-0.25960347,-0.15724376,-0.60397404,0.3520679,0.2560097,0.48900068,-0.67197865,0.3783924,0.46537766,-0.5325653,-0.17536621,-0.6971541,-0.1663473,-0.034981888,0.36525622,0.049978342,-0.1234238,-0.09052333,-0.024526788,0.55853355,-0.02058833,0.08925946,0.542369,0.37413892,0.32291374,0.64435416,-0.032791223,0.5558621,-0.41978988,-0.1290116,0.34632245,-0.40782923,0.23924835,-0.23229091,0.12302836,0.61835897,-0.49460623,-0.8753127,-0.7329632,-0.5158769,1.170493,-0.39607614,-0.24702635,0.15924215,-0.17102149,-0.093852095,-0.08235944,0.59243333,-0.2967537,-0.010507242,-0.7702005,0.0814054,-0.06334107,0.20190634,0.026151182,0.020984828,-0.3224537,0.7741004,-0.0044942102,0.5270795,0.13370875,0.24206422,-0.31415188,-0.28376085,0.025631579,0.712321,0.33115408,0.032765638,-0.1325201,-0.2523459,-0.13801241,-0.28669646,0.09548267,0.41369545,0.7161519,0.058553528,0.149827,0.32234284,-0.14292243,0.08053441,-0.23508266,-0.18322514,-0.13847715,0.08036724,0.4906502,0.5281603,-0.19392985,0.45808926,-0.2896418,0.31130803,-0.049135853,-0.4762565,0.64018536,0.69126624,-0.114219256,0.0049569765,0.42051303,0.44779846,-0.34435323,0.36586615,-0.61393505,-0.24120691,0.6352136,-0.2273993,-0.52675235,-0.037517525,-0.1842666,0.15013562,-0.72287387,0.33964863,-0.30515766,-0.3063639,-0.5541534,-0.064909466,-2.7569745,0.07189151,-0.12177071,-0.19373897,-0.24321966,-0.1712829,0.21539026,-0.61803764,-0.5896324,0.12686366,0.15107985,0.7190353,0.08673039,0.11243283,-0.18701926,-0.09564762,-0.25424197,0.05043493,0.08148603,0.4333679,-0.114308745,-0.43949,0.061174907,-0.07715417,-0.5082985,0.20427187,-0.595356,-0.44544217,-0.11392412,-0.48404172,-0.313643,0.7001475,-0.40940478,0.051496264,-0.14085127,-0.0019255658,-0.14576587,0.18931536,0.122096285,0.15750843,0.1533487,-0.16367538,0.16926341,-0.37995148,0.49217907,-0.03184072,0.21067733,0.1768759,0.009687743,0.18746682,0.41512483,0.6912514,-0.2486172,1.0563133,0.38854265,-0.06325543,0.19438003,-0.31128272,-0.16515972,-0.5412516,-0.32575914,0.0043308614,-0.3957087,-0.49597982,0.050534718,-0.31285396,-0.78068477,0.59496117,-0.049519148,0.14369647,0.04455708,0.08438774,0.36630192,-0.101868644,-0.003205966,-0.066622436,-0.020004986,-0.5514048,-0.3193739,-0.5872931,-0.49239418,-0.14014368,1.0411092,-0.24935918,-0.07547612,-0.20279479,-0.33738396,0.17168532,-0.04876779,-0.011379191,0.23904733,0.3822837,-0.12691687,-0.71355635,0.46624434,0.025372537,-0.09272274,-0.50006115,0.16251177,0.7067243,-0.685278,0.52382714,0.41033867,0.008672972,-0.09439308,-0.5736253,-0.32413942,-0.023055848,-0.24988429,0.3039934,0.030355828,-0.73698837,0.4689402,0.26852846,-0.40715352,-0.85444605,0.25536418,-0.057300154,-0.1660481,-0.0070773046,0.33038175,0.13136344,-0.059618935,-0.28587675,0.104809366,-0.51498514,0.22161235,0.1478755,0.02935756,0.32501474,-0.19691685,-0.2876248,-0.7196888,-0.036995992,-0.48179528,-0.26411837,0.29421136,0.036112152,-0.07232593,0.22230892,0.13591798,0.3508266,-0.3510626,0.061955556,0.028412338,-0.35970086,0.06550005,0.2978192,0.3671223,-0.47708252,0.57778126,0.1166848,-0.11653956,0.07019434,0.017744351,0.36927617,0.124149404,0.29919985,-0.04831738,-0.21809816,0.49726525,0.8791581,0.13733517,0.420821,0.09920211,-0.23975468,0.39384323,-0.025962751,0.12028502,-0.0133930445,-0.4739935,0.025260432,0.057370193,0.17792101,0.48578098,0.18394853,0.3531839,0.11035563,-0.16216323,-0.0836902,0.29627857,-0.120130755,-1.0174198,0.36151236,0.13971077,0.97461253,0.36649796,-0.14373416,-0.03087471,0.71880215,-0.32758993,0.09753864,0.35301107,-0.022470491,-0.5500666,0.72405684,-0.6547417,0.4579105,-0.13690901,-0.040544935,-0.07080852,0.2483415,0.2302261,0.7177996,-0.28267136,0.06674145,-0.022516282,-0.18738289,0.16829354,-0.2913182,-0.006496815,-0.4641322,-0.31976193,0.63447446,0.32527256,0.42296782,-0.13490602,-0.037860632,0.045904133,-0.19703825,0.1696097,0.021029977,0.10466609,0.12539405,-0.6678532,-0.26959276,0.5899235,0.122213386,0.31255305,-0.124863274,-0.35173956,0.084805496,-0.44128796,-0.01899929,-0.0657998,-0.71914697,0.021417666,-0.10756472,-0.4645366,0.34866327,-0.31567702,0.17478284,0.30021116,-0.028541524,-0.14823008,0.11154868,0.22369242,0.87017477,-0.045958687,-0.352896,-0.39332378,0.070946015,0.21813542,-0.3214244,0.13958563,-0.29250866,-0.07340749,-0.49121848,0.5944146,-0.1226029,-0.47641808,0.27259687,-0.24265797,-0.16481964,0.74163324,-0.064415045,-0.13513966,-0.058992926,-0.22750066,-0.28118554,0.11585344,-0.3225012,0.22630817,0.38072428,0.12037758,-0.14312674,-0.23335908,-0.15623567,0.73978657,0.009956232,0.43908748,0.25436193,0.01532778,-0.23253275,0.002711336,0.18841147,0.56513053,0.13782969,-0.07837649,-0.38696793,-0.2809978,-0.24219412,0.29883066,-0.1463576,0.22673538,0.079209924,-0.44487062,0.7409276,-0.14877698,0.9771273,0.21632756,-0.29176486,0.021691317,0.5014581,-0.020386267,0.041481458,-0.30832818,0.8257956,0.53963566,0.0256594,-0.04554824,-0.466418,0.0033420145,0.4445914,-0.26912117,-0.05354605,-0.06394349,-0.6382196,-0.447209,0.31097764,0.24637146,0.04169651,-0.12990227,-0.10908831,0.027646963,0.20929588,0.6369187,-0.6466772,-0.18001561,0.2589862,0.20562313,-0.0077835363,0.18312168,-0.38744342,0.43107027,-0.59515166,0.14868559,-0.40712088,0.13144945,-0.23946108,-0.2185469,0.12260587,0.07703014,0.37013918,-0.18254386,-0.46977323,-0.058122966,0.57548255,0.1273698,0.19992656,0.64808905,-0.28483146,0.034969825,0.11318039,0.49980485,1.1442245,-0.3457269,0.15857707,0.24815035,-0.44225204,-0.5612089,0.459639,-0.16470619,-0.056288537,-0.0049832244,-0.3733925,-0.4569252,0.28167468,0.29567686,0.03971409,0.011538267,-0.46686167,-0.10425741,0.5176386,-0.24915497,-0.23961495,-0.2303522,0.40804693,0.684702,-0.26534173,-0.18226251,0.063865475,0.37199512,-0.34381956,-0.4809093,-0.1377462,-0.35485947,0.34575972,0.018282449,-0.34655163,0.011670351,0.11397826,-0.4262626,0.061771646,0.08030771,-0.39414728,0.07599974,-0.19944797,-0.0076553533,0.98785746,-0.21635865,-0.026211198,-0.7070024,-0.36576137,-0.95227367,-0.28688166,0.3826334,0.17117338,0.07067547,-0.5079538,-0.027605545,-0.044684105,-0.2827545,0.12473631,-0.47871667,0.29347903,0.20877382,0.42007938,-0.21788594,-0.647153,0.1264178,-0.06334232,-0.052511968,-0.44933903,0.5764424,-0.053854965,0.76393443,0.05722519,-0.043155216,-0.07326435,-0.31069365,0.06519773,-0.2897983,-0.1718185,-0.86862206,0.10234918,581 +244,0.47202674,-0.23228772,-0.39951912,-0.16698663,-0.30991045,0.2960037,-0.06965855,0.3517452,0.05222285,-0.5525894,-0.19045869,-0.14385366,-0.025770307,0.15513521,-0.29101974,-0.6253093,0.007368342,0.120987035,-0.6009108,0.4231989,-0.35054073,0.37235555,0.19859122,0.16837367,0.10311723,0.2558642,0.23907879,-0.16933168,-0.14374427,-0.06694104,-0.31272003,0.27883157,-0.30274335,0.026368601,-0.102330774,-0.2774104,0.04857983,-0.27204964,-0.23719718,-0.7972656,0.44164425,-0.937021,0.4780162,-0.029631257,-0.18695101,0.35430977,0.25557762,0.23646943,-0.14257841,-0.0308838,0.20827709,-0.18465304,0.013082111,-0.19983703,-0.2249889,-0.41308796,-0.64697,-0.043306954,-0.49782264,-0.35478768,-0.30058452,0.21509491,-0.4511054,-0.028942198,-0.042324014,0.5887791,-0.49415225,-0.043874763,0.23999475,-0.24802235,0.4300744,-0.57399046,-0.11699225,-0.14173698,0.263813,-0.085456975,-0.13875957,0.18265969,0.6661656,0.32267815,0.16078833,-0.25462273,-0.31058887,-0.20526679,0.17514333,0.46336725,-0.1342768,-0.4465388,-0.0009892096,-0.0011203368,0.022494277,0.12297375,0.18769696,-0.1957539,-0.11843569,0.13721342,-0.32349172,0.44211873,0.34302202,-0.5050382,-0.31827068,0.30349067,0.7197066,0.05088819,-0.24900037,-0.018062355,0.0060859364,-0.5095652,-0.15741847,0.31523433,-0.45084304,0.4866179,-0.2809659,0.35291588,0.8536202,-0.30188343,0.07248685,0.06246282,0.14819407,-0.14577344,-0.02026999,-0.27028242,0.21664156,-0.54915774,0.012616428,-0.15856081,0.87504876,0.101189695,-0.52393264,0.25364527,-0.54540855,0.13092214,-0.17917477,0.49436253,0.5443306,0.39133433,0.25326675,0.59543735,-0.38527432,-0.029301144,0.0011762499,-0.51007915,-0.020644013,-0.15492342,-0.014974267,-0.44777113,0.048774384,0.002891604,-0.11051116,-0.0865757,0.3926911,-0.57764554,-0.016175512,-0.07375984,0.94395983,-0.34765294,-0.19042349,0.6060383,0.7916749,0.9143606,0.02682749,1.0326321,0.21799564,-0.30806714,0.23198624,-0.31802076,-0.6145544,0.3666951,0.54607636,0.04975563,0.3447299,-0.00016637643,0.0343724,0.32765844,-0.27206257,-0.026738537,-0.2324461,0.02253639,0.19499683,-0.108347625,-0.37714154,-0.19593053,-0.12346136,0.016196135,0.24551232,0.16349666,0.03064368,0.5506319,0.16592652,1.5040698,-0.080822594,0.06356669,0.111400574,0.39302158,0.13353696,0.19326021,0.016903529,0.33006427,0.31137162,0.27919742,-0.610572,0.19270635,-0.26139945,-0.48586807,-0.18044402,-0.3560912,-0.03089773,0.04725154,-0.4137074,-0.11957288,-0.13091938,-0.30633277,0.34894297,-2.55455,-0.23292154,-0.18012358,0.3057866,-0.2654637,-0.3211278,0.015379838,-0.60999274,0.24186295,0.37934926,0.4798922,-0.7431002,0.33443508,0.5478598,-0.56719553,-0.060940918,-0.5054442,-0.25125358,-0.005575676,0.37109944,0.075216256,0.10938821,0.061413784,0.20070513,0.38864127,-0.06771668,0.078073256,0.34088045,0.34665692,0.09362257,0.52725136,0.1544993,0.5440573,-0.16773905,-0.22215833,0.24979731,-0.2467358,0.20989195,-0.07966051,0.14470002,0.5728932,-0.37821475,-0.8510227,-0.7113367,-0.34943286,1.2171074,-0.2507926,-0.28513435,0.29335383,-0.12841728,-0.2669926,-0.22592995,0.38330114,-0.15143612,0.036394645,-0.8167892,0.16635129,0.02175126,0.1708204,0.0737084,-0.11916375,-0.25201258,0.65171474,-0.15277758,0.40767345,0.18495132,0.14090061,-0.26312864,-0.49712875,-0.0068490584,0.97253263,0.4197621,0.075529404,-0.18855028,-0.21704215,-0.33253595,-0.05246083,-0.05553661,0.46289164,0.8330261,0.12785572,0.110140465,0.2287285,0.048640266,0.16795747,-0.1842668,-0.38211295,-0.027680075,-0.16038185,0.44968066,0.35460874,-0.26012477,0.49823382,-0.03384932,0.4702205,-0.030926703,-0.33762997,0.4432266,1.2704374,-0.13324806,-0.21692052,0.63298666,0.38199174,-0.44328746,0.35573304,-0.619077,-0.12397669,0.6488792,-0.26575002,-0.4710166,0.22257735,-0.20148008,0.1092114,-0.92721546,0.34587038,-0.27725354,-0.34954602,-0.4350443,-0.085091144,-3.6230948,0.16148822,-0.33493772,-0.19034514,-0.1818091,-0.121968955,0.13465811,-0.6488909,-0.51600546,0.14491065,-0.012898978,0.68812335,-0.1507948,0.071867734,-0.18263075,-0.31997186,-0.093004584,0.18919444,0.1561452,0.24391551,-0.13962255,-0.50613946,0.18612562,-0.19288881,-0.526818,0.15793973,-0.65157306,-0.6466232,-0.15258238,-0.48954043,-0.36377114,0.73028946,-0.2777424,0.17824885,-0.16224675,0.11691415,-0.024187375,0.40968233,0.20697631,0.16651613,-0.039711017,-0.0037981232,0.0582698,-0.26864916,0.40783167,0.042080924,0.27018455,0.4267903,-0.113044314,0.24178746,0.53258055,0.5602745,0.0411706,0.7812627,0.38863292,-0.13805182,0.28012505,-0.26447666,-0.41177404,-0.65990716,-0.26085815,0.13920921,-0.27450278,-0.55476725,-0.09471791,-0.36066246,-0.7985525,0.66041183,-0.14258647,0.31352842,-0.06626071,0.49934095,0.49315903,-0.18453947,0.05994429,-0.07231752,-0.23875459,-0.54380745,-0.15007058,-0.61342007,-0.48462868,0.041442562,0.8893077,-0.30468744,0.025722418,-0.10174997,-0.13393988,-0.0052583655,0.20046954,0.10152226,0.27260956,0.41812247,-0.28023782,-0.75766957,0.71566355,-0.18342964,-0.21493766,-0.46867016,0.08924584,0.55296695,-0.6216265,0.40736184,0.47366273,-0.07934133,-0.15668172,-0.34736538,-0.20345174,0.047140457,-0.27094308,0.37402567,0.17203626,-0.57792795,0.40135828,0.26531485,-0.227747,-0.64723486,0.5325337,-0.016690802,-0.31338996,0.033000655,0.4622461,0.10629297,0.042903543,-0.23010804,0.07358484,-0.48147246,0.10617245,0.16584438,-0.11718659,0.31804118,-0.13626595,-0.18435484,-0.7916469,0.22835726,-0.51724875,-0.164695,0.27353942,0.14948575,0.10014132,0.37551606,0.0066941422,0.4626112,-0.30910435,0.04482736,0.11247684,-0.2814662,0.30698967,0.42642802,0.32249013,-0.36329252,0.56976825,-0.0766885,-0.056348898,-0.077644266,-0.022279564,0.47162673,0.176648,0.39506996,0.17355463,-0.22849351,0.46410483,0.864132,0.25181872,0.5398257,0.07707798,-0.1360099,0.2909228,0.11638379,0.31089357,-0.052122217,-0.55323523,-0.10514763,-0.08979716,-0.0008128246,0.5934808,0.025642468,0.3205442,-0.13693346,-0.2795471,0.021760348,0.20454231,0.06904079,-1.1156152,0.26540026,0.27416155,0.7896225,0.29558083,-0.035129946,-0.011587981,0.69470495,-0.33842617,0.13937016,0.4574596,-0.05930271,-0.57320213,0.578989,-0.5888754,0.3480608,-0.19187155,-0.109561995,-0.17314106,-0.13975565,0.25696552,0.8775881,-0.16861738,-0.13682012,-0.05873863,-0.44322842,0.43145573,-0.5376517,0.17723534,-0.47547004,-0.2503924,0.44592345,0.48230088,0.20945077,-0.19193476,0.07598429,0.14153977,-0.094631225,0.3857117,-0.012120808,0.31061178,-0.22795948,-0.62680143,-0.24751134,0.503455,0.14026332,0.20089598,0.010419607,-0.13235149,0.24557708,0.012475936,-0.024340017,-0.12212079,-0.67014325,0.029438037,-0.19779049,-0.5355248,0.5056563,-0.23731253,0.21813364,0.28372064,-0.07837834,-0.42549154,0.2390705,0.286205,0.553955,0.067603454,-0.13894388,-0.44727528,0.13870248,0.01899803,-0.19310299,0.013305368,-0.16092807,0.24295466,-0.5524036,0.5313538,-0.17218262,-0.30476096,-0.12693852,-0.31112248,-0.19598223,0.44965628,-0.17576481,-0.023504445,-0.22726847,-0.24462959,-0.15379024,-0.16464478,-0.12087048,0.30876577,0.07165483,-0.03982625,-0.28168944,-0.13718969,-0.18180059,0.5266619,0.026662353,0.3903291,0.39649242,-0.17526245,-0.43250746,-0.3128358,0.19477396,0.26255566,-0.03494245,-0.09349657,-0.3004661,-0.4444744,-0.30014834,0.2263159,-0.09582674,0.40748814,0.12180066,-0.33854902,0.9119918,-0.19208571,1.1346234,0.02643961,-0.45613912,0.049306694,0.5568924,0.020387711,-0.03930801,-0.3271314,0.8649788,0.51127666,-0.094897375,-0.1808671,-0.32995227,0.10221443,0.11096909,-0.1862039,-0.07763586,-0.10993551,-0.59162647,-0.36662847,0.18941936,0.28164816,0.16301021,-0.0051347017,0.117969066,0.26904958,-0.04863688,0.47893903,-0.46862203,-0.2602806,0.31572774,0.14415012,-0.0020481804,0.14327663,-0.30760145,0.52099025,-0.5524349,0.07025719,-0.2932255,0.21836407,-0.17948692,-0.24568525,0.23548716,0.06879491,0.38865787,-0.07701254,-0.40555236,-0.30363783,0.4618659,0.18517222,0.09569177,0.502448,-0.32395998,0.08305397,0.10820269,0.5899438,1.0598322,-0.09650794,0.05784304,0.25657812,-0.44385013,-0.5662398,0.402413,-0.2516511,0.23826465,0.015784483,-0.13744931,-0.5271092,0.2381663,0.34193116,-0.0025023976,0.027370019,-0.44487488,-0.3376071,0.275659,-0.51384884,-0.18129928,-0.2519486,0.29859892,0.5119432,-0.49280325,-0.26728252,-0.054519016,0.2598635,-0.20008598,-0.48451698,-0.116539076,-0.32142004,0.38305032,0.14981395,-0.25360447,0.07397763,0.020374505,-0.38952792,0.21735425,0.34758216,-0.4080958,0.040648345,-0.30202147,-0.03055753,0.8041172,-0.10527817,-0.14241266,-0.57714343,-0.42837283,-0.8425741,-0.44212157,0.5168429,-0.014672681,-0.014004037,-0.5589718,-0.02862059,-0.12471655,-0.13022172,0.023819815,-0.335581,0.44071358,0.1571602,0.36496148,0.060386017,-0.72789484,0.08311394,-0.0531931,-0.05489241,-0.66817486,0.41325867,-0.16460484,0.6567106,0.07060887,0.00039658943,0.3739587,-0.3213285,-0.115211025,-0.23639698,-0.2879031,-0.7200161,0.010268376,588 +245,0.5819588,-0.35381025,-0.58260304,-0.17441562,-0.37265432,0.15305416,-0.28181523,0.5732736,0.24795471,-0.44701704,-0.15212949,0.023882378,-0.20158793,0.29497993,-0.16176668,-0.6918157,-0.20351785,0.20950331,-0.34223363,0.55105466,-0.19786784,0.35724884,0.02213928,0.3373343,0.26328713,0.1410398,0.097925216,0.14604497,-0.0030670166,-0.2389702,-0.063574456,0.24668407,-0.56207526,0.28551483,-0.13021241,-0.42123452,-0.18766664,-0.4677392,-0.2836549,-0.6629578,0.33563504,-0.6442095,0.5557955,0.069054924,-0.29751346,0.078368455,0.099709615,0.14803928,-0.1547222,0.10875796,0.13985477,-0.24677612,-0.10156237,-0.08554586,-0.23372942,-0.41150185,-0.69619006,-0.04048349,-0.47763354,0.19314446,-0.22576073,0.17497005,-0.24090108,-0.17593254,-0.089537635,0.31988242,-0.3450699,-0.028658938,0.17618227,-0.12828286,0.053798072,-0.634722,-0.10530976,-0.07304662,0.32593364,-0.10469899,-0.08566042,0.099793874,0.12644514,0.6475936,0.15409769,-0.29682067,-0.53541696,-0.037194252,0.09788162,0.49037647,-0.16060123,-0.40446457,-0.29064575,0.025348442,0.6323414,0.30681705,0.24846472,-0.15857859,-0.26043257,-0.15794465,-0.044351105,0.4310949,0.52958375,-0.3638396,-0.24910542,0.42665908,0.4785561,0.23206235,-0.15507193,0.13981433,-0.12715119,-0.33601603,-0.14662847,0.03148022,-0.11521641,0.38311455,0.0010329088,0.17480369,0.4498131,-0.05477283,-0.09389117,0.07184769,-9.867946e-05,-0.014588186,-0.23211238,-0.32111126,0.30929556,-0.38674462,0.18029672,-0.15384337,0.60218817,0.12026398,-0.84677035,0.2963958,-0.4324439,0.13074428,0.1486953,0.5712308,0.9357942,0.5201828,0.11863515,0.89824986,-0.2753146,0.05415953,-0.0794868,-0.09528592,0.023272276,-0.18746136,-0.092850715,-0.5903521,0.3274409,-0.091488376,0.06896769,0.34852213,0.77635205,-0.49277174,-0.17680477,0.3418569,0.7856542,-0.21681556,-0.030681849,0.8987375,1.0129852,1.2177459,-0.17101495,1.1045331,0.026188342,-0.2373433,-0.14015077,-0.2907539,-0.5829379,0.2802462,0.5180072,0.42969054,0.42059258,0.14649025,0.023997474,0.50925964,-0.46537897,-0.079680204,-0.018571412,0.2069582,0.05194282,-0.19377075,-0.64704335,-0.062285103,0.19311555,0.16162284,0.13211612,0.3868857,-0.3006074,0.31385675,0.0070169866,1.4337852,-0.16189222,0.14934267,0.19415101,0.40125751,0.18772517,-0.20953242,0.09267058,0.20897703,0.37115964,-0.1463871,-0.48478064,0.032525476,-0.30390644,-0.64343345,-0.2436003,-0.380054,-0.50583285,-0.036891945,-0.49839216,-0.09228386,-0.094358556,-0.52899843,0.39611098,-2.6095622,-0.14483494,-0.18639691,0.22294623,-0.30485725,-0.47377643,-0.07536614,-0.41800305,0.513967,0.30900452,0.5021305,-0.56116027,0.45012555,0.42962533,-0.47099534,-0.0032586337,-0.56949705,-0.07861858,-0.05852269,0.37696254,-0.008935706,-0.2517302,0.16815996,0.2888293,0.6124885,0.12869464,-0.01756538,0.3432713,0.51369846,-0.23835386,0.34110153,-0.09893894,0.5659022,-0.20876889,-0.24845283,0.61695135,-0.38646445,0.3032092,-0.3180793,0.076073475,0.48416653,-0.45565,-0.8507244,-0.5435221,-0.1626166,1.1195073,-0.25356632,-0.5413179,0.14675279,-0.44725487,-0.28917122,-0.11924884,0.54749167,-0.16740614,-0.053510223,-0.81473917,-0.11075671,-0.21845365,0.21856947,-0.07682768,-0.08638108,-0.71503943,0.9379065,-0.16728139,0.75025004,0.41406932,0.28881237,-0.17341365,-0.4995758,0.15640862,1.0444953,0.6411213,0.14635131,-0.25256258,-0.082353,-0.3462502,-0.118789196,0.13962321,0.6739689,0.38270518,-0.013842376,0.14633235,0.17755455,0.056083832,0.07413897,-0.16818462,-0.25078806,-0.3696437,0.11190621,0.684653,0.6189486,-0.25349322,0.49760073,-0.11975662,0.24230203,-0.24847764,-0.43886283,0.43078595,0.86124706,-0.14419535,-0.39776105,0.7608926,0.53634745,-0.076645404,0.505434,-0.79884326,-0.49197164,0.2733059,-0.30234435,-0.302462,0.25676787,-0.41566902,0.044716112,-0.7990728,0.08556015,-0.29187632,-0.49849537,-0.7082194,-0.34662265,-2.1166735,0.09944725,-0.16381855,-0.16072473,-0.199761,-0.2978187,0.18143915,-0.71462,-0.7515438,0.074413665,0.088859506,0.61726266,-0.12131779,0.10245753,-0.20280312,-0.4922292,-0.20547362,0.28184325,0.021076966,0.4019537,-0.0054551642,-0.29953533,-0.118902855,0.01701619,-0.31803194,-0.11370726,-0.56675446,-0.3455185,-0.038213536,-0.31005794,0.02499679,0.47658208,-0.5272639,0.21715263,-0.18165363,-0.010808176,-0.08602517,0.14722954,0.015452814,0.15118681,0.14134607,-0.131059,0.32865006,-0.25848904,0.3819482,0.11461168,0.32701138,0.50619113,-0.43999752,0.1436921,0.39999014,0.7267916,-0.22501704,0.8621981,0.49725264,-0.04728015,0.3157124,-0.13642383,-0.29818228,-0.79933614,-0.25630733,0.16129671,-0.52753365,-0.5662702,-0.09711158,-0.45096052,-1.0055256,0.37578884,-0.044876255,0.4444204,-0.05380209,0.3030457,0.49615872,-0.3398486,-0.019065937,-0.03617018,-0.19079943,-0.22101746,-0.44280666,-0.64049774,-0.3870379,0.010982219,1.0983238,-0.12731622,-0.045316387,0.29688233,-0.24444307,-0.013485988,0.1522567,0.19134818,-0.043541923,0.42731062,0.10839893,-0.58508366,0.45913538,-0.0734582,-0.09018994,-0.62297934,0.029396327,0.39512235,-0.5875878,0.39828664,0.32172108,0.127983,-0.18106899,-0.76859623,0.111923255,0.0386273,-0.25083822,0.5579762,0.46791738,-0.60554004,0.50492305,0.16574755,-0.05637783,-0.7695001,0.5039973,-0.07734014,-0.26093197,-0.17813176,0.34948376,0.24702993,-0.028259583,-0.08445047,0.32038075,-0.3852471,0.55453014,0.19745575,-0.076235294,0.1792007,-0.33333254,-0.1356558,-0.7665676,0.039858986,-0.60438997,-0.35391483,0.19436213,0.14948015,0.15408495,0.070677646,0.1239622,0.4852667,-0.41093433,0.12098909,-0.22253557,-0.3779764,0.3850773,0.45891002,0.54641277,-0.3066178,0.58919024,0.094253816,-0.06007428,0.015766017,0.09098479,0.60283005,-0.07634382,0.3971695,-0.20120987,-0.24763708,0.21077092,0.6082746,0.29192176,0.1710198,0.12269419,-0.2952254,0.16663803,0.031455275,0.23118706,-0.42461586,-0.7088445,-0.040351965,-0.13096832,0.124814786,0.55457497,0.20264298,0.28741214,-0.17329496,-0.10131775,0.22236386,0.10997324,-0.14312346,-1.3898506,0.09754586,0.10804375,1.0849317,0.49671328,0.08990409,0.1238555,0.35770264,-0.2356752,-0.027057577,0.51124513,-0.018164175,-0.3200899,0.57804054,-0.7145961,0.6074193,-0.041054785,-0.0850678,0.13342564,-0.032798897,0.49799955,0.6632455,-0.18532333,0.053739317,-0.014964944,-0.3450978,-0.01428685,-0.19624081,0.22308968,-0.5706581,-0.19123703,0.6735745,0.5004891,0.4294836,-0.31629857,0.033545688,0.0375764,-0.079972185,0.044917576,0.0489722,0.09277475,-0.16417177,-0.42610395,-0.09854712,0.5518702,0.1320433,3.889998e-05,0.06742611,-0.37366548,0.09531019,-0.03768833,-0.09582813,-0.033178553,-0.75838596,-0.08161707,-0.32212478,-0.4252132,0.4962888,0.0626491,0.18699218,0.24083069,0.061696876,-0.046604104,0.2122467,0.17604803,0.7677167,0.16988777,-0.021269469,-0.37198195,0.22106434,0.12874563,-0.13578868,-0.18780628,-0.19192001,0.23579757,-0.5669207,0.30361614,-0.19586897,-0.26789,0.3791995,-0.07688079,-0.033922117,0.4799333,0.02468791,-0.17627482,0.16854505,-0.026364386,-0.29762587,-0.21936424,-0.24926455,0.2452773,-0.012674888,0.041956846,-0.19266169,-0.049857315,-0.09410146,0.24959017,0.20450796,0.16702554,0.5132788,0.039882217,-0.3939075,0.13020958,0.25976974,0.46911559,0.015745541,-0.05263155,-0.2829691,-0.62221986,-0.5362018,0.43594798,-0.2431763,0.17427632,-0.019640334,-0.12558196,0.76224315,0.07715804,1.1025914,0.14202172,-0.4872647,0.18154259,0.5847503,-0.14264776,-0.021353725,-0.33085296,0.9173613,0.57706463,-0.029806597,-0.1939853,-0.24908637,0.07600013,0.17161724,-0.31192556,-0.14732313,-0.02821639,-0.6375679,-0.22532384,0.23434004,0.11384286,0.1356379,-0.1363744,-0.122769736,0.42737192,0.18373619,0.22029302,-0.5710577,-0.2971705,0.31391653,0.23454566,-0.17991005,-0.029284775,-0.5238584,0.31816447,-0.6404119,-0.14557393,-0.3286968,0.11920099,-0.30283123,-0.29713663,0.38612115,-0.031120753,0.3201266,-0.3988385,-0.4190243,-0.14829166,0.37011668,-0.07897116,0.11559645,0.40934435,-0.23437992,0.03360438,0.16224292,0.32200998,1.1149751,-0.3179037,0.02910217,0.35859904,-0.48806313,-0.69234186,0.19455619,-0.5993653,0.2127122,0.067011766,-0.3545149,-0.49228212,0.28939596,0.116532356,0.00855192,0.12116429,-0.6041695,-0.09527213,0.21180902,-0.3631701,-0.1203888,-0.22539635,-0.11255752,0.74478275,-0.28632325,-0.36500016,0.13041104,0.5175491,-0.18523987,-0.71128774,0.22971661,-0.46687278,0.19039494,0.0044667004,-0.44638252,-0.23938422,0.014519558,-0.47901386,-0.024387725,0.46344578,-0.39337045,-0.066163786,-0.45414898,0.048260268,0.8934868,-0.048377797,0.27742,-0.56745946,-0.37658137,-0.92611945,-0.32911777,0.3225023,0.22151566,-0.081448466,-0.8102808,0.04106372,-0.50771344,-0.11467915,-0.13120854,-0.30950433,0.3638491,0.26213613,0.42863977,-0.17059812,-0.79442036,0.2516201,0.010773889,-0.25063282,-0.43324873,0.6101057,0.14750372,0.9271496,0.055072036,0.14559723,0.13883205,-0.81895036,0.15798095,-0.09174582,-0.077040024,-0.7288821,0.13590166,593 +246,0.29488343,-0.0839818,-0.37943363,-0.0503967,-0.31755733,0.13379732,-0.17399146,0.23044126,0.059045833,-0.15114151,-0.24072352,-0.08657117,0.034130774,0.4447789,-0.11829192,-0.64918154,-0.09033705,0.051401954,-0.7904042,0.36422715,-0.6491703,0.43107647,0.2066147,0.25611737,0.1830809,0.43251944,0.35326093,-0.1918229,-0.21735807,-0.13684694,-0.23272687,0.10744957,-0.48201382,0.013324722,-0.16611412,-0.27492344,0.14652859,-0.549133,-0.19038206,-0.5491845,0.21936385,-0.7112754,0.52227855,-0.045102775,-0.04242364,0.08394243,0.28712603,0.38909766,-0.3673788,0.053332545,0.23621836,-0.22940935,-0.19339012,-0.18207884,-0.11546338,-0.27715233,-0.5408062,-0.024474198,-0.65783244,-0.40854582,-0.17915486,0.096352115,-0.3165618,0.09299024,-0.03309761,0.22134545,-0.38061315,-0.09006845,0.30987003,-0.19929151,0.043349646,-0.5375431,0.061516885,-0.04252638,0.5305898,-0.13057083,-0.018116355,0.52533036,0.40545043,0.3809683,0.21462926,-0.2473451,-0.20841618,-0.20175555,0.14800106,0.6331329,-0.07460156,-0.2650581,-0.13885693,0.20969139,0.25970837,0.41939119,0.02158513,-0.10248574,-0.09796073,-0.046183977,-0.26007923,0.48630148,0.48257127,-0.37185898,-0.38505256,0.37111428,0.5359856,0.24788567,-0.12168854,-0.06038696,0.032755386,-0.584709,-0.1543571,0.19250251,-0.07995381,0.41265315,-0.117943965,0.2801634,0.89760745,-0.14843982,0.13847505,-0.17768496,-0.048774634,-0.1770367,-0.15968564,-0.12718067,0.060690038,-0.630038,-0.041457653,-0.2293515,0.8106357,0.13739389,-0.62388635,0.39784306,-0.60339355,0.16499226,-0.13254008,0.547004,0.6506879,0.34734294,0.2850993,0.8314856,-0.33837596,0.21265084,-0.12323252,-0.4766217,0.071552604,-0.25784692,0.1654924,-0.53935945,0.09886362,-0.043950733,0.09372368,0.116472,0.38160005,-0.56869614,0.0059956987,0.15824296,0.8441749,-0.37442163,-0.05339745,0.7378532,1.0545496,1.0295368,-0.032219633,1.129912,0.26944277,-0.29095644,0.119752556,-0.4138867,-0.52306217,0.13722774,0.47751603,0.01948676,0.2583407,-0.091425516,-0.10661518,0.2849137,-0.40579832,0.05636598,0.025644522,0.14910768,0.1681708,0.00643275,-0.41240093,-0.27209988,-0.12688926,-0.12920764,0.14537162,0.29144388,-0.24499099,0.42441592,-0.121830896,1.3247473,0.03550807,0.11426064,-0.042970065,0.5858477,0.23319595,-0.03468395,-0.1648058,0.31657973,0.3934965,-0.051925343,-0.60908395,0.097290434,-0.37843937,-0.3640073,-0.15183122,-0.4710817,-0.123243175,0.24038042,-0.30107602,-0.14872108,-0.05387088,-0.17934538,0.52113944,-2.9893079,-0.25491494,-0.14640836,0.3080548,-0.3017774,-0.1632038,-0.075310625,-0.59895664,0.33756363,0.22563334,0.53153014,-0.57441217,0.4083281,0.3386118,-0.54031295,-0.24478467,-0.61122406,-0.09412306,-0.025918337,0.33935544,-0.04477132,-0.12701221,-0.16015564,0.086890906,0.6437277,0.044480268,0.08797784,0.4631637,0.38845837,0.21292546,0.5634989,0.06498785,0.6271592,-0.34452474,-0.14636989,0.17508216,-0.1920649,0.23579264,-0.2527354,0.089667894,0.42948645,-0.50496423,-0.8071393,-0.53527325,-0.2487132,1.0079005,-0.33955115,-0.2761738,0.2046945,-0.024015069,-0.06757452,-0.0034634033,0.52913225,-0.07797205,-0.12506856,-0.5174111,0.072766274,0.009907433,0.022760129,0.040173132,-0.050010018,-0.3079299,0.66361046,-0.032952357,0.5110683,0.1363618,0.2999819,-0.043632977,-0.25139728,0.095389225,0.80411875,0.34680375,0.008866966,-0.05600367,-0.3001121,-0.19755459,-0.3813019,0.11083407,0.4281386,0.7873367,0.041988928,0.123625085,0.3486801,-0.1529009,0.12041439,-0.030783387,-0.16394752,-0.055803917,-0.12661497,0.45682037,0.566595,-0.07620622,0.55635315,-0.16386493,0.2787081,-0.082560584,-0.5551096,0.62364274,0.5068953,-0.10627951,-0.016264567,0.44743994,0.4352358,-0.3068752,0.389414,-0.5151509,-0.3127981,0.8188913,-0.19413309,-0.35402176,0.16730806,-0.21357228,0.02097311,-0.789428,0.24142446,-0.27129593,-0.4103136,-0.31571046,-0.10387595,-3.6597874,0.1675354,-0.25945616,-0.047650453,-0.1873767,-0.06365936,0.22786897,-0.5972183,-0.41286838,0.11694689,0.20702836,0.7171094,-0.060670424,0.17568977,-0.14676805,-0.18053599,-0.22767141,0.10534657,0.121640645,0.37171414,-0.119597845,-0.367005,0.11558143,-0.13289729,-0.5484579,0.23122635,-0.48442045,-0.49533704,-0.12936531,-0.43521208,-0.30653858,0.7058082,-0.3618434,0.07154314,-0.19713923,0.11378738,-0.17716761,0.14080639,0.22702734,0.13111417,0.15627508,-0.09455838,0.24711587,-0.41259366,0.59322476,0.0211905,0.49041727,0.16305646,0.10837873,0.16473071,0.45688835,0.46186352,-0.053005293,0.86646074,0.37496102,-0.059710924,0.18703605,-0.30585152,-0.15702848,-0.44373456,-0.4635249,-0.0657466,-0.37817448,-0.5463613,-0.04731202,-0.2787107,-0.7244977,0.4958891,0.020454288,0.29336298,-0.12129576,0.29004827,0.3756407,-0.24340127,-0.030127414,-0.07012064,-0.0949661,-0.46557257,-0.086102225,-0.65567327,-0.5384731,0.078770466,0.9138721,-0.33172086,-0.0032513738,-0.19309014,-0.2994355,0.05000124,-0.03701224,0.085212216,0.31574965,0.334125,-0.16464584,-0.7018989,0.5192978,-0.20124926,-0.12759487,-0.59496796,0.13060075,0.6528405,-0.66629183,0.39681756,0.40341467,0.13031253,0.043082602,-0.40458933,-0.10351409,-0.0025041462,-0.24837317,0.23602626,-0.03814588,-0.7794787,0.5479357,0.17808685,-0.5704862,-0.7721046,0.30398598,0.038690805,-0.15897103,0.11392535,0.13095716,0.320468,-0.1498514,-0.25449857,0.14956303,-0.49612704,0.40436876,0.12993297,0.02190001,0.48059738,-0.23017076,-0.46427324,-0.5327782,-0.022112114,-0.44197935,-0.1819335,0.32041207,0.06171785,0.13606542,0.22314903,0.1457787,0.36286172,-0.3038524,0.101931326,0.07105077,-0.3934039,0.21567944,0.35357,0.30734903,-0.4384478,0.573114,0.047362883,-0.100995556,0.15219595,0.04064354,0.3672029,0.12208394,0.27281368,-0.05496413,-0.2773216,0.37894562,0.66697973,0.11555941,0.26972967,0.19936053,-0.17913835,0.4127599,-0.053459708,-0.06093549,0.141968,-0.45653707,-0.07200775,-0.018715095,0.12371567,0.50717384,0.32044983,0.30655092,0.09984978,-0.23521715,-5.133152e-05,0.07652119,-0.13429819,-1.0460893,0.45135975,0.20324954,0.76834756,0.30366942,0.05199762,-0.15781261,0.6728846,-0.30456698,0.111179605,0.28774288,0.100790076,-0.45504013,0.69930434,-0.63265485,0.6004194,-0.09570292,-0.13364857,0.038923644,0.06894483,0.27221066,0.8628132,-0.21874084,0.079518594,0.020293497,-0.31489375,0.1019863,-0.33031178,-0.013712795,-0.570067,-0.23639944,0.6189438,0.20945987,0.3092513,0.00496736,-0.088145,0.068776324,-0.19090529,0.23278162,-0.08962553,0.081715256,0.059216063,-0.611544,-0.27191454,0.53731334,0.02172875,0.25076503,-0.15268023,-0.17567042,0.10223239,-0.28463498,-0.0027381857,-0.026147366,-0.60478663,0.09253664,-0.2129206,-0.539684,0.34291902,-0.25186506,0.31453678,0.16014925,-0.047148585,-0.091930404,0.34486714,0.20913826,0.78066176,-0.11326858,-0.36717728,-0.40575734,0.02605455,0.2837312,-0.28546494,0.20962617,-0.29472378,0.004669098,-0.62817967,0.6816519,-0.2624523,-0.3907875,0.13292967,-0.17420143,-0.022239225,0.48254043,-0.14338307,0.038285635,-0.03562665,-0.21731663,-0.37003607,-0.0015901128,-0.35872588,0.11227064,0.39097685,-0.025205966,-0.17047115,-0.2788156,-0.118072085,0.5308839,-0.058713153,0.38002524,0.1057508,0.12558047,-0.21506211,-0.067940675,0.08727001,0.3444685,0.10956735,-0.060384545,-0.53264886,-0.28401974,-0.2344261,0.25900936,-0.1226817,0.20559852,0.035930283,-0.3011579,0.8461488,-0.17611521,1.175496,0.22924945,-0.30909395,0.12551314,0.51129997,-0.05045111,0.10784253,-0.37675682,0.9117538,0.4994023,-0.014896512,-0.1158464,-0.46603182,-0.010002805,0.43176657,-0.40751088,-0.1767949,-0.04114,-0.4564594,-0.5349247,0.2684514,0.11983533,0.22273558,-0.035254605,0.020687493,0.094931886,0.14586487,0.44816166,-0.5788576,-0.27912152,0.24682035,0.21382026,-0.094268255,0.2783343,-0.45381922,0.5209512,-0.7081283,0.15712725,-0.338193,0.095625795,-0.16022852,-0.30514362,0.21272214,0.11788514,0.38668105,-0.13192275,-0.53895867,-0.055864,0.37945536,0.05180305,0.1964014,0.6619046,-0.3276393,-0.10657134,0.015760962,0.56294566,1.3320968,-0.32798836,0.018721374,0.33007586,-0.33871594,-0.587126,0.39842197,-0.3038393,-0.1516392,-0.09720114,-0.34604466,-0.3669419,0.22389951,0.19184358,-0.00013680458,0.09390853,-0.39261538,-0.26541576,0.2084581,-0.28340694,-0.314979,-0.31630066,0.41590947,0.70587784,-0.25991836,-0.23313943,0.11504397,0.45791194,-0.20595632,-0.4334393,0.035115823,-0.19095668,0.25734892,0.08374974,-0.18413812,-0.06153838,0.21762456,-0.3836598,0.04288676,0.08940036,-0.43690532,0.033496227,-0.19423264,-0.05370059,0.8049417,-0.23070015,0.023223173,-0.6893364,-0.43110326,-0.84725267,-0.5087226,0.26534125,0.13706213,0.015024042,-0.4058573,-0.018918466,-0.022970628,-0.16179578,0.10389112,-0.55480444,0.3460224,0.0978614,0.35145804,-0.25868368,-0.73769295,0.079297796,0.04488025,-0.1828567,-0.6274019,0.5134451,-0.030611511,0.8379816,0.09063903,-0.17283204,0.10065718,-0.25024214,0.22567914,-0.424101,-0.23021092,-0.7852128,0.11188378,602 +247,0.18314333,0.044883262,-0.55512786,0.039179694,-0.22525376,0.080632806,-0.46231157,0.16205476,0.2140639,-0.25465485,-0.008410319,-0.22902806,-0.04951597,0.15052581,-0.088487975,-0.45072982,0.12540506,0.20959102,-0.37347397,0.545221,-0.38809857,0.17292675,0.044813965,0.1845308,-0.086717494,0.154881,0.1611772,-0.27074367,-0.2675797,-0.2432926,0.06319669,-0.15089336,-0.57997626,0.24417087,-0.2775875,-0.27601892,0.23692968,-0.3434566,-0.2544607,-0.6953933,0.10104186,-0.7586677,0.59586596,-0.031933475,-0.2369798,0.3552906,0.026671505,0.26584926,-0.0066525927,0.042935863,0.26012608,-0.41114527,-0.37439856,-0.31060046,-0.21171857,-0.5973332,-0.3645474,-0.09496091,-0.5518297,0.05745393,-0.3730186,0.19158857,-0.1833355,-0.0010294318,-0.18441056,0.04541006,-0.46349043,-0.040721145,0.01888921,-0.13389052,0.29142687,-0.63258404,-0.00769184,-0.09001377,0.18914787,0.0656063,-0.043704152,0.31367674,0.037977256,0.50950307,0.012232034,-0.19570924,-0.3109969,-0.033155885,0.21503644,0.44730484,-0.16461423,-0.08710025,-0.08869307,0.0053275744,0.38597953,0.28541282,-0.026670128,-0.14507768,0.05460624,-0.06079584,-0.39471462,0.20941935,0.55915457,-0.38089937,0.09321865,0.37306896,0.37182453,0.21974693,-0.15950347,0.010108224,-0.18538705,-0.29653543,-0.16705497,0.06395175,-0.12575896,0.4455324,0.050576616,0.27442545,0.53626764,-0.085131265,0.026234364,-0.03375099,0.037305478,-0.018201383,-0.1231771,-0.3341907,0.42319766,-0.6017072,0.20913054,-0.33227822,0.7014212,-0.1417943,-0.7285113,0.40791157,-0.47004,0.06716944,-0.073472485,0.5698001,0.6131398,0.704387,0.06862321,0.82608986,-0.4465231,0.17398554,-0.24074225,-0.26220593,0.29819554,-0.052219152,0.2019773,-0.36599398,0.09028513,0.06075028,-0.19822682,-0.0032718678,0.49837527,-0.24858944,-0.031288482,0.15066034,0.79913074,-0.34634888,0.00536505,0.56493443,1.2405133,0.8079319,0.08730305,1.0747126,0.3980169,-0.20264393,-0.23357268,-0.025877886,-0.7620503,0.15081856,0.36102283,0.46790612,0.23214208,0.32269815,-0.10948517,0.4310449,-0.31176573,-0.18946761,-0.0953736,0.39290288,-0.04199747,-0.15478344,-0.3645057,-0.18858686,0.047726665,-0.039222315,0.17214839,0.3481627,-0.05592036,0.33874854,0.28478992,1.2123824,-0.055496287,0.05870615,0.120379426,0.40538916,0.26222274,0.088242546,-0.047132514,0.31175616,0.26530325,-0.09686344,-0.47541693,0.010812728,-0.28116313,-0.5005068,-0.15184641,-0.11143732,-0.09275588,0.070783176,-0.16485293,-0.21799609,-0.0012084802,-0.2699788,0.39935434,-2.609571,-0.09227784,-0.072454676,0.28814873,-0.13756727,-0.2136844,0.03989865,-0.41283175,0.56722766,0.3770844,0.44946367,-0.36642903,0.34377426,0.53601104,-0.46131018,-0.17494644,-0.61885846,-0.0339315,-0.10177703,0.42917404,0.0032896379,-0.4051884,-0.0073889634,-0.0013832311,0.43544072,-0.1524639,0.048391636,0.3589164,0.34613362,0.051002536,0.26636967,-0.05108142,0.4073372,-0.21618174,-0.16455938,0.15955833,-0.203306,0.3178674,-0.2946044,0.14214364,0.41727692,-0.3095601,-0.59935975,-0.37010622,-0.11885161,1.1775795,-0.37767002,-0.56998515,0.07998326,0.1131525,-0.21256343,0.017546553,0.27482292,-0.13013007,-0.0049732206,-0.60076237,-0.04981121,-0.12840691,0.30395225,0.029579228,0.29824537,-0.49369362,0.6049197,-0.13263175,0.5571349,0.579181,0.32542938,-0.023259068,-0.3499776,0.0812596,0.725858,0.41966,0.07541403,-0.42506483,-0.093569644,-0.06956761,-0.18149047,0.083455555,0.34567055,0.6879031,-0.13451102,-0.0492183,0.30164737,-0.30917743,-0.03538042,-0.1698008,-0.56698,-0.09971943,0.05482482,0.58741075,0.6571619,0.13448524,0.37784874,0.012846595,0.34961718,-0.18262869,-0.43745938,0.48026696,0.5315902,-0.31063065,-0.0025051276,0.4967814,0.38445812,-0.017039236,0.59704006,-0.68752944,-0.480672,0.38845786,-0.044439428,-0.4597701,0.24943966,-0.3049182,0.105972975,-0.8063487,0.28510398,-0.31686,-0.47633988,-0.6349041,-0.16309601,-2.7991018,0.071608044,-0.26041484,-0.08937048,-0.10730676,-0.21548763,0.2972792,-0.397348,-0.53095126,0.17641796,0.24440017,0.44667244,-0.14195254,0.06898997,-0.3123334,-0.34085995,-0.34831378,0.25557908,0.1435364,0.13829231,-0.07543548,-0.37872142,0.020514298,-0.2657542,-0.18928877,-0.012691419,-0.41440022,-0.10377731,-0.14218877,-0.29935703,-0.33107713,0.54639477,-0.57483464,0.029653357,-0.36873874,0.024598125,0.04044699,0.23632996,0.10668852,0.013193329,0.034226917,-0.06523093,0.010569283,-0.29244003,0.2253437,0.077587076,0.16670339,0.5286381,0.012689368,-0.14926411,0.5397699,0.53365403,-0.071996205,0.69322455,0.3208535,-0.20754458,0.3256096,-0.3464392,-0.2454498,-0.553408,-0.3046131,-0.09376653,-0.36749992,-0.4907456,0.02448951,-0.4049717,-0.6919417,0.4888955,-0.012500461,-0.003110981,0.09815897,0.37700567,0.34186268,-0.13444465,-0.16624774,-0.039548494,-0.102336876,-0.45052615,-0.28007218,-0.77049154,-0.46136227,0.05734026,0.93189144,-0.10430661,-0.15593475,0.20441805,-0.21448347,0.115846895,0.1393903,0.12211858,0.044912383,0.3442106,0.15820974,-0.7374559,0.48145455,-0.08119032,-0.08413775,-0.5362635,0.1117208,0.52475905,-0.75955856,0.17932549,0.65448844,0.14850432,-0.04686343,-0.68949217,-0.13945885,0.1702332,-0.28246728,0.3699665,0.13976401,-0.7303499,0.54787916,0.25684443,-0.23075749,-0.7831018,0.42183283,0.014597821,-0.2761084,0.16222978,0.33228588,0.01318973,0.043854818,-0.19567902,0.031991623,-0.46158618,0.37221786,0.114599325,-0.076819114,0.28320757,-0.06588822,-0.20405331,-0.70044214,-0.0014444907,-0.2983762,-0.22319722,0.28704894,0.05679748,0.1418853,0.105624884,0.31582505,0.48406157,-0.4455174,0.031870827,-0.29128316,-0.21328649,0.5346326,0.4560897,0.2954923,-0.38030484,0.52229595,-0.1876222,-0.25439698,-0.14690831,-0.037458822,0.41070825,0.056364644,0.19158818,0.14904837,-0.15821509,0.009452152,0.7123601,0.24213071,0.3454066,0.13636507,-0.17766532,0.4049874,0.04239284,0.098788835,0.01163974,-0.41054535,-0.08995741,-0.189785,0.12147128,0.48795688,0.19749445,0.4723614,-0.16101037,0.013902182,-0.026582178,0.09468152,0.03395693,-0.8052272,0.45303217,0.2794767,0.5146543,0.54448235,0.027689831,0.15044793,0.682715,-0.2772269,0.050666634,0.15387405,0.20558539,-0.33043873,0.46752718,-0.65452695,0.3080296,-0.11227489,-0.019032348,0.22740622,0.1391463,0.4472128,0.93359596,-0.22112392,0.19815466,-0.06325925,-0.20435208,-0.08701532,-0.03503773,-0.05307359,-0.2331583,-0.33288956,0.6961917,0.122120425,0.38929957,-0.2354133,-0.07008365,0.07308496,-0.14958045,0.4524397,0.12956508,0.06169072,-0.029831704,-0.39951175,-0.38776004,0.6210415,-0.08557557,-0.048361473,0.0070121605,-0.16371344,0.2868062,-0.22812204,-0.13466252,0.10734491,-0.51088333,0.14039607,-0.19023448,-0.3420254,0.44744185,-0.0042121173,0.25707728,0.08939854,0.028807975,-0.025013363,0.21908948,0.19533968,0.5641703,0.16511059,-0.28889674,-0.16993706,-0.13843025,0.19660597,-0.19958784,0.07115836,-0.104073524,0.14310627,-0.7581303,0.38658583,-0.35341066,-0.123943046,0.20411886,-0.24362227,-0.082458116,0.46884033,-0.13982953,-0.11808254,0.25122243,0.056263138,-0.31175864,-0.31364334,-0.43902493,-0.050145563,-0.1401713,-0.06745919,-0.20768498,-0.18765642,-0.040563866,0.4105271,-0.026782295,0.040372077,0.18267384,0.1311776,-0.41054222,-0.14009437,-0.024202159,0.4315168,0.08201752,-0.016815368,-0.33966205,-0.47433826,-0.26470527,0.11649735,-0.14561796,0.09058874,0.12063715,-0.37563345,0.7907696,-0.042789616,0.91931194,0.056733925,-0.3772585,0.061032124,0.53004426,-0.083846785,0.03083526,-0.42060414,0.90943235,0.7340375,-0.10916384,-0.04479919,-0.43347564,-0.15513308,0.24180062,-0.30426946,-0.080620065,-0.06308498,-0.6137665,-0.16260096,0.20725688,0.21616806,-0.17129402,-0.022620846,0.18816859,0.11645555,0.32632193,0.3049914,-0.373155,-0.18388812,0.4288794,0.12878606,-0.0008723736,0.170018,-0.29752177,0.33701834,-0.5583567,-0.029692058,-0.47760868,-0.024255145,0.13938524,-0.2093893,0.19798766,0.045066647,0.23277523,-0.34950963,-0.43788877,0.02728039,0.37244365,0.17840888,0.3294769,0.6110871,-0.10993667,-0.07963608,-0.17534284,0.4771953,1.0776832,-0.33389643,0.037931655,0.40116355,-0.32949543,-0.5440445,0.14007153,-0.40294975,-0.03460294,-0.082727164,-0.32612264,-0.40810287,0.16564229,-0.034593843,-0.26361868,0.003585148,-0.59601325,-0.06278421,0.17117378,-0.23771524,-0.23547353,-0.32052153,0.12326436,0.84195554,-0.25355747,-0.17071627,0.011737387,0.35206622,-0.32806018,-0.48238719,0.15768765,-0.32764307,0.24681202,0.3831281,-0.2979239,0.10586543,0.24243027,-0.6443303,-0.044818286,0.27215198,-0.26607144,0.0035837034,-0.3306468,0.3239562,0.601891,-0.07641398,-0.017992584,-0.52974606,-0.510564,-0.84860027,-0.32191274,0.099426076,0.31664628,0.09023097,-0.43604767,-0.0729212,-0.21660021,-0.028302781,-0.09064115,-0.5463733,0.40812626,0.06345753,0.39916092,-0.24581881,-0.9097115,0.15181132,0.106942646,-0.31601527,-0.41873607,0.323032,-0.26180828,0.94704187,0.085523605,-0.02051572,0.10000362,-0.7003442,0.356855,-0.3186423,-0.2501949,-0.6525107,-0.0091790315,616 +248,0.37536266,-0.1973221,-0.46019194,-0.101468526,-0.1992835,0.07548509,-0.25159281,0.43898794,0.22907019,-0.5314903,-0.18401413,-0.074924804,-0.039862435,0.056838408,-0.065069415,-0.42160904,-0.113642804,0.25519365,-0.67532504,0.5327428,-0.32046467,0.3400945,0.020863349,0.31456396,0.116312064,0.2889209,0.03605129,-0.09982594,-0.11480681,-0.21798143,-0.11265612,0.39930186,-0.47056803,0.27941555,-0.25459307,-0.34343165,-0.12390378,-0.48130384,-0.27015096,-0.72123826,0.29667395,-0.87176174,0.48311242,-0.021076052,-0.39076385,0.360548,-0.1339077,0.2634115,-0.2443268,0.156096,0.11222176,-0.048225477,-0.06482691,-0.23032314,-0.24512862,-0.12098387,-0.53054696,0.05192936,-0.3806534,-0.09841079,-0.17734991,0.14243765,-0.26548818,-0.064402066,-0.12951678,0.49010435,-0.39352837,0.010425838,0.15579513,-0.1136383,0.29475135,-0.473416,-0.08240621,-0.087076694,0.4349178,-0.21127532,-0.16676407,0.09780543,0.18770742,0.63594854,-0.054597154,-0.11392684,-0.251675,-0.07968509,0.070427194,0.5124067,-0.020027854,-0.34980354,-0.17188683,-0.18729587,0.20907034,0.20191129,0.15224794,-0.2443444,-0.1662209,-0.09554425,-0.20952167,0.30461863,0.47760457,-0.24237731,-0.22591752,0.34914356,0.6291068,0.091689676,-0.120691866,0.15331273,-0.016900443,-0.4632298,-0.15057604,0.22684582,-0.12966503,0.3933058,-0.18910335,0.2477861,0.4899002,-0.11202196,0.04958266,0.122027546,-0.037021946,-0.055730265,-0.27349907,-0.23673025,0.26417503,-0.41125074,0.09930981,-0.19830285,0.6476692,0.01743696,-0.7393198,0.36556512,-0.47182855,0.13205172,0.0046433806,0.5535185,0.79342777,0.38219157,0.30150318,0.74728733,-0.37194532,0.011956883,-0.26009688,-0.21673264,-0.12742686,-0.060921546,0.028323699,-0.4965053,-0.012171479,-0.044811495,-0.06504005,0.027427305,0.42822984,-0.54491025,-0.11763633,0.16643515,0.607621,-0.34130058,-0.056795683,0.99245626,0.8405916,0.970793,0.07531802,1.0940167,0.2586159,-0.2292672,0.12572584,-0.38435853,-0.6772637,0.22402716,0.30014598,0.2952071,0.1905122,-0.023899388,0.080115035,0.4547296,-0.32682973,0.016240673,-0.34107396,0.06706677,-0.102732226,0.020107124,-0.47143957,-0.29307207,-0.068432875,0.06488789,0.23233542,0.20461161,-0.24096562,0.38497385,0.12009176,1.5516843,-0.19612621,0.0120963855,0.1594699,0.28583065,0.20672144,-0.16365299,-0.12058925,0.3307378,0.38527644,-0.12425954,-0.6752443,0.02601823,-0.08100876,-0.40029004,-0.114993595,-0.27832133,0.042328477,-0.08274021,-0.46507788,-0.19003741,-0.0990049,-0.550757,0.45512372,-2.6973042,-0.24108331,-0.07147029,0.33554,-0.22222322,-0.3312052,-0.25832394,-0.49551436,0.466162,0.28894073,0.39525393,-0.5654566,0.3843009,0.35396805,-0.49624655,-0.098036304,-0.66830313,0.053473905,-0.06835021,0.21338752,0.040640034,-0.14219491,-0.14843622,-0.070367835,0.4519205,-0.0403401,0.14458431,0.3049382,0.3057913,0.076962106,0.40163344,0.04287853,0.4741566,-0.27542928,-0.24951348,0.4247338,-0.44070756,0.14029689,-0.17986314,0.14708821,0.39731488,-0.6474264,-0.6589283,-0.84141695,-0.33823156,1.234319,-0.16999337,-0.40892062,0.24446699,-0.41605288,-0.31242654,-0.032629583,0.6585056,-0.049397763,-0.21853147,-0.8823784,-0.05682111,-0.09364642,0.24938303,-0.029875942,-0.052006938,-0.43277058,0.57952046,-0.14074616,0.5224628,0.33998507,0.14538316,-0.2587512,-0.32836634,0.11945719,1.0045781,0.36714092,0.112444736,-0.2726105,-0.33029854,-0.3821726,-0.077954665,0.04819746,0.5915304,0.68173766,-0.060772788,0.11300321,0.32374227,-0.06494267,0.17046985,-0.2144041,-0.115789846,-0.2192316,0.15299352,0.6080906,0.44011512,0.08470273,0.34662062,-0.08395929,0.2732558,-0.33100653,-0.41177544,0.43687412,0.6236028,-0.1371067,-0.28709218,0.60041165,0.48353326,-0.21896304,0.45242015,-0.5302019,-0.38195893,0.28308257,-0.21589006,-0.43367508,0.32604012,-0.32754198,0.35679913,-0.81243,0.15945038,-0.23221473,-0.5693188,-0.51240754,-0.081842996,-2.5446181,0.17020513,-0.05178182,-0.22853677,-0.065506674,-0.31519264,0.20496972,-0.4207951,-0.54463536,0.2806085,0.065937005,0.7366932,0.038926557,0.024331857,-0.2790203,-0.36569336,-0.25314456,0.13006988,0.051603515,0.42606163,-0.04408147,-0.43416303,-0.024014238,-0.22502436,-0.24751942,-0.06419475,-0.55904937,-0.3744171,-0.13574147,-0.57949334,-0.25985807,0.580207,-0.19321957,0.16216765,-0.23382814,-0.11990328,-0.08895361,0.341921,0.10648702,0.19381009,0.084994264,-0.064884745,0.008741438,-0.23659854,0.2561562,-0.049335826,0.06459939,0.31113145,-0.21331953,0.3076575,0.26211554,0.5960658,-0.22825132,0.93246335,0.51309246,-0.039276306,0.2824097,-0.2083246,-0.3054231,-0.49363798,-0.1406447,-0.06627622,-0.5072547,-0.40718612,-0.1598161,-0.31518108,-0.8287634,0.5423152,0.0818062,0.104676686,0.090471536,0.27928156,0.48624125,-0.14333434,-0.05955317,-0.10057276,-0.20127775,-0.3347135,-0.29763442,-0.69366723,-0.40287766,0.10883059,0.9033987,-0.078147314,0.08111335,0.13773756,-0.1746727,-0.044300873,0.18868664,0.13801913,0.11418344,0.42555457,-0.017188024,-0.4315552,0.38694632,-0.013590292,-0.23721132,-0.5039378,0.21453829,0.6518614,-0.62757736,0.50512564,0.28727046,0.08480382,-0.26071897,-0.43485162,-0.115336545,-0.0656834,-0.26771316,0.41859168,0.29529998,-0.7272542,0.48204497,0.28204864,0.0765173,-0.8166883,0.40801865,-0.10281323,-0.25674143,-0.082727864,0.34910524,0.03999935,0.089698344,-0.14874265,0.13671471,-0.38966134,0.25951424,0.19459601,-0.08555288,0.30520508,-0.34937745,-0.107768856,-0.6566134,-0.09174911,-0.65718323,-0.27065217,0.19083446,0.014533409,0.090027615,0.2562266,0.03126589,0.41601464,-0.23411258,0.16966924,-0.19270486,-0.14025125,0.20715848,0.4007888,0.40010923,-0.3024601,0.5443955,0.013900566,-0.0049984497,-0.3042521,0.1161058,0.47031122,-0.015225601,0.36220646,-0.23938313,-0.28441018,0.30269846,0.73494756,0.18349454,0.39104107,-0.05288375,-0.09933507,0.13408467,0.11435863,0.21232122,-0.11096382,-0.4000648,-0.076506525,-0.11740685,0.1629614,0.3606612,0.13807923,0.31173995,-0.0660026,-0.24302131,-0.0013064008,0.20373826,-0.073931485,-1.1029805,0.3357286,0.16819604,0.8289646,0.5062657,0.046648867,0.013504203,0.5905031,-0.2664738,0.15617935,0.11010682,-0.24328159,-0.48353058,0.49661523,-0.6388442,0.4862621,0.0018866042,-0.1052374,0.085747465,-0.11743234,0.42347464,0.6412566,0.001815094,0.19969511,-0.01149627,-0.20568632,0.20858835,-0.23376665,0.024876198,-0.57225853,-0.17905858,0.7085101,0.44574395,0.5011183,-0.14017268,0.012435959,0.11335037,-0.06932737,-0.067754336,0.1221522,0.14900045,-0.010422317,-0.57309544,-0.13098152,0.42291203,0.073538564,0.15633461,0.1092931,-0.35763088,0.25930747,-0.010423259,-0.008924794,-0.20420672,-0.6305505,-0.04029832,-0.39622876,-0.25094542,0.34110022,-0.084720835,0.19781929,0.2104848,0.049827315,-0.26135683,0.27485606,0.20561586,0.77084476,0.11638485,-0.09163891,-0.3145247,0.29874986,0.18346772,-0.2960687,-0.20485137,-0.2679482,0.11822103,-0.830982,0.36853272,0.0010757287,-0.37953588,0.301017,-0.10878766,-0.005998097,0.57532316,-0.049701564,-0.079069644,0.116388604,-0.24776857,-0.46025866,-0.22193673,-0.19871496,0.28664348,0.2919943,0.06341725,-0.045498516,-0.018981857,-0.078886524,0.5304911,0.19132586,0.35926044,0.27864066,0.08914766,-0.38465407,0.06820424,0.20623995,0.4567626,-0.009910003,-0.038707145,-0.19868775,-0.36949998,-0.4144725,0.31272516,-0.0044918936,0.3523964,0.084822804,-0.17650019,0.684582,0.12574233,0.930143,0.07065005,-0.21187381,0.12442339,0.4274053,-0.043891024,-0.066200204,-0.2564216,0.886896,0.45612806,-0.09425742,-0.034193534,-0.22099677,-0.12503797,0.090522006,-0.2381882,-0.024017723,-0.035031445,-0.6581466,-0.3407716,0.24747628,0.2552943,0.20056944,-0.119706884,0.13856557,0.12663232,-0.103183046,0.22843644,-0.34539005,-0.077095814,0.3396818,0.18631741,-0.06248762,0.10599964,-0.4081769,0.3609658,-0.55703837,0.041955885,-0.19698669,0.12284196,-0.15287669,-0.2652048,0.26563513,0.020386934,0.2076666,-0.31018433,-0.4222756,-0.30506238,0.45029142,0.049656637,0.1383621,0.45477298,-0.2712597,0.11493647,0.13135,0.54985803,0.97114605,-0.08628836,0.09325884,0.35479742,-0.22984396,-0.6429249,0.20653628,-0.2703523,0.20934287,0.0042999107,-0.21711129,-0.30608165,0.2973272,0.21375299,0.13336226,0.074442126,-0.5881755,-0.10966412,0.22974978,-0.22601365,-0.15409942,-0.24235554,0.05171334,0.50844616,-0.19883344,-0.41233584,0.043806024,0.17056678,-0.36811438,-0.5413893,0.026814302,-0.31635472,0.21370731,0.072509654,-0.40512934,0.039651383,0.07314472,-0.39865354,0.0068496587,0.121455215,-0.33178583,-0.0037174146,-0.46030605,0.01565855,0.9085693,-0.15968555,0.22318605,-0.3611756,-0.5723245,-0.88121927,-0.25481686,0.4436052,0.10762175,0.06314586,-0.6064824,0.12176439,-0.23547548,-0.094518505,0.14430732,-0.29665157,0.529287,0.19736856,0.43145102,-0.093771234,-0.7880681,0.193917,0.07587214,-0.336922,-0.5010169,0.51892483,0.11675592,0.8245411,0.086861916,0.12243393,0.23839357,-0.6256374,0.0039269426,-0.22200139,-0.10294779,-0.7329848,-0.07516609,623 +249,0.2904502,-0.3165589,-0.53093475,-0.0662539,-0.14361387,0.078852415,-0.19175711,0.6095651,0.02630756,-0.5570209,-0.19405699,-0.14220962,-0.15474294,0.48818693,-0.19571276,-0.4171916,-0.029428221,0.13199177,-0.5871408,0.38159263,-0.3764495,0.18607266,0.14786305,0.37539965,0.22776279,0.24186891,0.02505224,-0.13256739,-0.20627238,-0.15358576,-0.005339511,0.010919412,-0.4026509,0.2021622,-0.2922783,-0.4665387,0.027742933,-0.51034456,-0.31853598,-0.6434328,0.29659483,-0.7895091,0.3509817,-0.09845608,-0.2881897,0.09828053,0.038715005,0.52216953,-0.2359912,-0.054881383,0.25073466,0.0013668507,-0.066839695,-0.037674554,-0.12914346,-0.15088981,-0.565383,0.12040582,-0.36845416,-0.0883179,-0.019408436,0.17690843,-0.21284072,0.24919571,-0.15013565,0.34403104,-0.41602358,-0.11797997,0.28644258,-0.17456831,0.2243398,-0.5548193,-0.12333485,-0.11953448,0.13585609,-0.1199862,-0.15080906,0.24836329,0.16153145,0.48813117,0.017642727,-0.10021494,-0.22087125,-0.03835624,0.16288432,0.4581882,-0.12601754,-0.260039,-0.18399122,0.022612007,0.20013857,0.04089727,0.088947564,-0.2529494,-0.07520342,0.050907824,-0.30969143,0.10841491,0.45263752,-0.23268099,-0.11673382,0.26452625,0.65763986,0.2084692,-0.013886535,-0.04859586,0.07178781,-0.50935,-0.19772668,0.11122796,-0.04420028,0.48132858,-0.053692717,0.4172313,0.580097,-0.12042307,0.18342969,0.033779487,0.004070576,-0.1813972,-0.23313233,-0.43687773,0.15048046,-0.43998832,0.11080349,-0.23294432,0.8127509,0.16157468,-0.6723269,0.29387745,-0.52799433,0.15230848,-0.0745358,0.43107638,0.5715104,0.40846846,0.115938805,0.6649238,-0.37541458,0.18404177,-0.25290626,-0.22679947,-0.014677223,-0.120386496,-0.12557557,-0.41981477,0.028967874,-0.035485104,-0.0040624538,-0.049225435,0.22333759,-0.51424825,-0.021694621,-0.051866394,0.94829625,-0.25075978,-0.008168308,0.7871548,0.88625234,1.0365129,0.048887838,1.0488236,0.17187856,-0.2880902,0.21582586,-0.12582594,-0.6559582,0.33616766,0.42757738,0.18267232,0.23204105,-0.00060644647,-0.11148253,0.5899616,-0.41202527,0.16382237,-0.18842728,0.039214745,0.018147258,0.02953566,-0.41575778,-0.21468046,-0.031514574,-0.12576425,-0.10169789,0.2101916,-0.12347669,0.5242504,-0.06652361,1.6952689,-0.12956183,0.11893128,0.104798965,0.39318937,-0.05667072,-0.19137505,-0.1577807,0.02766941,0.39578775,0.033066537,-0.5895589,0.023897585,-0.1967939,-0.5065024,-0.11254191,-0.20728382,-0.12570444,-0.23725262,-0.5754019,-0.15594912,-0.08014397,-0.1708902,0.22245234,-2.6998632,-0.17388473,-0.1349918,0.24339609,-0.4329268,-0.38049158,-0.056383174,-0.4382871,0.4679794,0.301926,0.44261697,-0.47470963,0.41145024,0.24601483,-0.39253718,0.08274464,-0.57030666,-0.13341741,0.12399001,0.20343977,-0.0078206975,0.010615524,-0.09297594,-0.023665512,0.34171835,-0.17980215,0.050843105,0.31740913,0.19301824,0.16090514,0.42148903,0.013756807,0.5182525,-0.5995629,-0.070859484,0.25436527,-0.37391743,0.3394193,0.010181123,0.207886,0.35102004,-0.6206807,-0.6160085,-0.6777142,-0.35182163,1.3564552,-0.14781195,-0.23314008,0.23424673,-0.3212797,-0.14222375,-0.16551773,0.34819156,-0.04951315,-0.09560454,-0.81891507,-0.1290964,-0.10960458,0.22174712,-0.08035286,-0.027858075,-0.3622195,0.44393793,-0.0961753,0.4309519,0.4710181,0.09367504,-0.0136858625,-0.2644405,0.07039289,0.8155136,0.37944025,0.18537627,-0.16430311,-0.14532262,-0.4321007,-0.072766624,0.11497499,0.35835648,0.8217861,0.024714308,0.06643116,0.20612982,0.08239158,0.08459512,-0.037560407,-0.34575072,-0.20470276,0.0145737585,0.5243334,0.49383557,0.011011684,0.28390285,-0.1690485,0.42285264,-0.17018977,-0.4314607,0.3884374,0.551349,-0.19305754,-0.22350378,0.46620873,0.5382251,-0.20973179,0.3600189,-0.5224124,-0.32437167,0.3714328,-0.04878163,-0.4533264,0.14330824,-0.32112834,0.24268907,-1.0032122,0.2581662,-0.353295,-0.5142638,-0.67134017,-0.22560316,-2.7017577,0.17392002,-0.14891906,-0.25520656,-0.037227567,-0.16315596,0.26749247,-0.48258194,-0.63886577,0.07078549,-0.027948497,0.63170177,0.06823274,0.057040673,-0.17308593,-0.15558039,-0.3078114,-0.00983843,0.22764811,0.2543742,-0.04928356,-0.45948464,-0.20493793,-0.30711606,-0.33217338,0.16888686,-0.738483,-0.5175155,-0.19616805,-0.4240431,-0.2863801,0.607102,-0.20829383,-0.022598736,-0.018131668,-0.041173052,-0.12648644,0.35813078,0.17457335,0.14940673,0.080876574,-0.12698464,0.0054169972,-0.3493868,0.09071604,0.25822812,0.37327096,0.34820464,-0.13351995,0.41452745,0.5072764,0.85859716,-0.13742433,0.59151554,0.4815573,-0.09754009,0.34006223,-0.3023846,-0.35861352,-0.38721988,-0.07395278,0.007951061,-0.28767028,-0.45644352,0.19771534,-0.3057393,-0.8468474,0.43264267,0.03617354,-0.12479803,0.11292134,-0.008237457,0.45639974,-0.13296872,-0.11980049,-0.07663584,0.040876262,-0.4894843,-0.42328456,-0.7489327,-0.5223872,-0.04223576,1.3630874,0.011065443,0.046934437,0.09019751,-0.3468529,0.13975643,0.0700297,-0.08339591,0.081896394,0.29246762,-0.21541208,-0.67442113,0.5298322,-0.014408008,-0.19598252,-0.41290137,0.14823659,0.7288467,-0.584539,0.33591557,0.31048012,0.06840896,-0.14821224,-0.29901227,-0.07961833,-0.105933495,-0.21014659,0.2855983,0.12094722,-0.47902745,0.30724603,0.45364726,-0.083613046,-0.78868777,0.28190458,-0.015093449,-0.06228801,0.08638625,0.26478508,0.0036401947,0.03366723,-0.12727384,0.14714356,-0.34017503,0.2498825,0.3669831,-0.011317895,0.2519835,-0.2822887,-0.102309495,-0.514241,0.12123908,-0.6034391,-0.15672669,0.3616641,0.08118736,0.1256086,0.049831867,0.22241111,0.30769023,-0.21546176,0.06016217,-0.077807315,-0.29779068,0.3050131,0.42520416,0.4075717,-0.45802963,0.54815686,0.12548807,0.009961366,-0.11391498,0.030040229,0.4477302,0.08744578,0.3383867,-0.13075437,-0.16929068,0.22459364,0.76004666,0.23973863,0.4519453,-0.031111335,-0.15325664,0.10559617,0.09967926,0.067673445,0.11089823,-0.5673944,0.10783421,-0.030556956,0.15996546,0.41731542,0.11078338,0.36187106,-0.028943997,-0.21515647,-0.013945715,-0.008984173,-0.10432002,-1.2100587,0.5238769,0.17473133,0.75234574,0.4259262,0.021481814,0.010864735,0.5984242,-0.16085257,0.20386294,0.29957166,-0.0767278,-0.56845593,0.58750147,-0.64462346,0.56125104,-0.008600926,0.051209185,0.079345554,-0.11046269,0.59575397,0.65675825,-0.046909347,0.044771235,0.0010009249,-0.25612536,0.035769723,-0.43995243,0.09257517,-0.5408847,-0.22545858,0.62485284,0.44297943,0.2692827,-0.09309553,0.007730353,0.21650933,-0.044934914,0.32907507,-0.14046855,0.14819917,-0.057350747,-0.62728626,-0.25536975,0.47697675,-0.07218053,0.2682265,0.07271004,-0.3226163,0.20527752,-0.025023896,0.120805055,-0.1267413,-0.66097337,0.118719436,-0.4569455,-0.32071027,0.17687778,-0.048639577,0.35168302,0.15274803,0.05668562,-0.37378624,0.48833448,-0.24342528,0.8212997,-0.17795406,-0.2609625,-0.24672018,0.21066742,0.24975446,-0.21892901,0.0026916584,-0.29295272,-0.07162481,-0.54617494,0.40281782,0.004835347,-0.28194442,0.20853141,-0.116383865,0.0075300178,0.40653923,-0.06847247,0.05467209,0.05548208,-0.066977166,-0.28508118,-0.19296335,-0.14925165,0.28030816,0.2462209,0.19924851,-0.054545403,-0.05979585,0.029700283,0.52835685,0.011841858,0.3891446,0.41250318,-0.008477831,-0.44683692,-0.21852306,0.08343257,0.4246684,0.119433776,-0.15192227,-0.3826458,-0.25025457,-0.2369073,0.3165458,-0.22748613,0.45886612,0.14581458,-0.28270525,0.6998319,0.06472142,1.1637421,0.053162042,-0.32838318,0.08991159,0.39641604,0.0069181044,-0.07637381,-0.4927443,0.738817,0.38134795,-0.22488925,-0.14950113,-0.41471666,-0.06043589,0.07433537,-0.12729599,-0.20989677,-0.17748652,-0.6469271,-0.31937382,0.13311547,0.28858554,0.20228948,-0.09750752,0.02060715,0.1462157,-0.08108582,0.3613196,-0.40812337,-0.22024888,0.2811835,0.14133495,-0.10152958,0.09731229,-0.6155832,0.41450033,-0.54484177,0.09223843,-0.07564565,0.036604602,-0.119437374,-0.3480517,0.24145566,-0.04662756,0.32957318,-0.394295,-0.37488744,-0.25653937,0.53202397,0.165883,0.2153608,0.6249525,-0.24065581,-0.09204557,0.084198155,0.40909684,0.8258144,-0.3449782,0.1375468,0.32973498,-0.15027046,-0.43143126,0.2633707,-0.21816893,0.2519742,0.04488183,-0.22536527,-0.59175324,0.33269483,0.25265703,-0.22482738,0.10367792,-0.5418016,-0.12844516,0.25324383,-0.26189274,-0.32674038,-0.45376617,0.059504524,0.4709376,-0.28127763,-0.32279924,0.15127233,0.28014565,-0.16188951,-0.2917057,-0.033872955,-0.3496643,0.10820497,0.07317102,-0.3119885,-0.14862277,0.06464036,-0.35120112,0.07561759,0.04472708,-0.4075232,-0.0891216,-0.27371058,-0.1003414,0.80743504,-0.010554981,0.16724046,-0.523872,-0.33806744,-0.73790437,-0.45569414,0.5408433,0.20443045,0.041670203,-0.56518805,-0.053949654,-0.0695444,-0.09422334,-0.0052305977,-0.30050468,0.46012205,0.15831563,0.31582877,-0.08337115,-0.5544863,0.22657888,0.06474561,-0.1712493,-0.36034578,0.43291584,0.06760752,0.75680864,0.020529483,0.14858921,0.23612452,-0.45980608,-0.006360998,-0.20784335,-0.20840953,-0.5145379,0.0034323453,628 +250,0.39726117,-0.16520433,-0.47310308,-0.1309802,-0.3053003,0.067909434,-0.07420781,0.67216164,0.31355268,-0.2966989,-0.21808667,0.0011788766,-0.053188723,0.33006632,-0.18066102,-0.5912941,-0.01493779,0.17534848,-0.47195008,0.639658,-0.40834844,0.32219175,-0.11401783,0.5249088,0.23620541,0.19843367,-0.065896295,0.12086687,0.08225297,-0.13464017,-0.03865131,0.41979367,-0.4230652,0.112414084,-0.23714057,-0.5075053,-0.07477486,-0.30441415,-0.46562907,-0.79786164,0.21032105,-0.702286,0.6696624,0.11442685,-0.34859154,0.0034318487,0.08598648,0.3311971,-0.21938697,0.10247866,0.013156891,0.00653464,0.008995243,-0.1657487,-0.3041757,-0.42132,-0.6364392,-0.13909858,-0.45911497,5.3115687e-05,-0.2071211,0.23904501,-0.20496108,-0.08389605,-0.13743526,0.43330383,-0.45260936,0.15776621,0.17132936,-0.12768047,0.17467573,-0.660396,-0.25053322,-0.021919187,0.18323661,-0.15336227,-0.39338362,0.31657556,0.28595093,0.33862844,-0.094522685,-0.16199562,-0.32085755,0.0025031886,-0.13212924,0.5477765,-0.3002498,-0.3936639,-0.22621666,-0.036565542,0.6082316,0.39317593,0.053233847,-0.27488562,-0.14938353,-0.14419055,-0.20120424,0.4561947,0.61475253,-0.2340162,-0.13411781,0.365998,0.4234652,0.3112182,-0.19493242,0.13620707,0.0076241693,-0.55879223,-0.07848236,-0.052568123,-0.1853742,0.4476761,-0.051234167,0.12979253,0.5694436,0.06066062,-0.108911596,0.0854489,0.1510546,-0.09384167,-0.2854931,-0.45652482,0.27972144,-0.42914313,0.24225393,-0.23582767,0.55828947,0.0038625677,-0.59908885,0.27978358,-0.63485724,0.15117577,0.010934212,0.47380894,0.72109073,0.53414243,0.19824249,0.6012452,-0.26177981,-0.014566281,-0.014359653,-0.09890429,0.09449165,-0.105110124,-0.14205363,-0.48988917,0.108824536,0.008333746,-0.14836644,0.4688109,0.47005495,-0.6793636,-0.14388223,0.08997836,0.758949,-0.26639274,-0.025102245,1.0157987,1.071088,0.8214255,0.020634007,1.0913824,0.23438995,-0.13816354,0.00817159,-0.3110687,-0.55293053,0.22917806,0.36042213,-0.5276057,0.38886756,-0.018372476,-0.21734434,0.4406783,-0.34817427,-0.14886348,-0.025949454,0.14121029,0.022779686,-0.21896854,-0.5028854,-0.2405719,-0.0048982026,0.06912418,0.24619684,0.25514513,-0.32764232,0.445387,0.02643436,1.2137372,0.049462628,0.040634807,0.14907509,0.43252957,0.3819373,-0.17128102,0.10052731,0.32384792,0.41846457,0.042268105,-0.431971,0.15611926,-0.29788834,-0.38804358,-0.037531033,-0.23012085,-0.25327283,0.03088777,-0.53021806,-0.13994876,-0.08038766,-0.051711988,0.41791305,-2.682457,-0.14214583,-0.19104776,0.32249445,-0.092055336,-0.32681638,-0.18033455,-0.43689096,0.44370562,0.35851878,0.5429398,-0.6752401,0.30615157,0.5507483,-0.6639446,-0.08421873,-0.6409323,-0.1373652,0.08368524,0.286996,0.020250598,0.031182019,0.2305327,0.28398302,0.5611101,0.019275943,0.16080703,0.32347742,0.42700014,-0.16912119,0.2999045,-0.0067353803,0.4814464,-0.33244964,-0.23277475,0.23699465,-0.40216252,0.19912784,-0.111539155,0.0723867,0.61465085,-0.47556323,-0.946331,-0.5308522,-0.04013828,1.0820119,-0.09192223,-0.47252136,0.14165297,-0.5060995,-0.23945837,-0.025563657,0.70475703,-0.20848042,-0.05005936,-0.7977955,-0.17005304,-0.12566815,0.22454993,-0.059913475,-0.03325016,-0.31495684,0.6104049,0.0064688763,0.5159347,0.32822233,0.22610618,-0.47263825,-0.61914426,0.14278479,0.669953,0.4906783,0.18236575,-0.22690244,-0.15176338,-0.21375038,0.10679865,0.116523035,0.6981525,0.49825478,-0.18423288,0.09790707,0.38079152,0.1573518,-0.02285531,-0.2836137,-0.21924902,-0.12178678,0.13888314,0.47157162,0.7934592,-0.229776,0.23498288,0.039194677,0.49832222,-0.27924067,-0.6126227,0.52028656,0.9550449,-0.31068102,-0.34534746,0.66296834,0.44746882,-0.10368948,0.45630664,-0.6907886,-0.24523668,0.461924,-0.08288921,-0.3847769,0.31940186,-0.3136597,0.20670967,-0.8668682,0.32436725,-0.30625707,-0.4856733,-0.6915904,-0.064758375,-3.066731,0.13299546,-0.2957771,-0.093972854,-0.20579518,-0.2902922,0.13775311,-0.7041094,-0.65050215,0.27211842,0.13546576,0.5110199,-0.16652432,-0.06277123,-0.18192773,-0.45540985,-0.18640545,0.24281836,0.24921481,0.45844734,-0.002728053,-0.5013157,-0.14798322,0.029730698,-0.5546979,0.0046076537,-0.6811066,-0.33065587,-0.1308563,-0.7121946,-0.02007701,0.55348724,-0.29409784,0.06839609,-0.26166067,0.050372664,0.05172531,0.20379446,0.19606747,0.14741199,0.07640572,-0.035142995,0.14767697,-0.21424434,0.31092727,0.067969844,0.054644473,0.2753091,-0.1433701,0.10858714,0.46686193,0.7182707,-0.24328277,0.8674924,0.47617996,-0.023835966,0.3546173,-0.23907448,-0.34353825,-0.657628,-0.26487634,-0.12515888,-0.36976737,-0.34933627,-0.16286182,-0.4483041,-0.8226003,0.5328671,-0.021058798,0.15877174,-0.03961622,0.120696194,0.51663935,-0.20188825,0.00011705359,-0.08861299,-0.16504751,-0.42606142,-0.29575032,-0.6093385,-0.3820228,0.14218503,1.0770032,-0.23208697,0.123142466,0.12320239,-0.14487438,0.019165868,0.20918776,0.0385882,0.09174187,0.37487835,-0.19125026,-0.5314751,0.22685733,-0.13000947,-0.46690625,-0.73651904,0.3211713,0.6555946,-0.6109558,0.610908,0.30363002,-0.026942601,-0.41830853,-0.5500255,-0.099932656,0.1760857,-0.11742959,0.5798927,0.24926968,-0.6856402,0.39775607,0.29440364,-0.32072908,-0.59137255,0.7169183,-0.14422578,-0.4217214,-0.099706315,0.42510286,0.18887584,-0.028778942,-0.10599975,0.1449944,-0.21475694,0.28592205,0.1138362,-0.24251503,0.4076093,-0.24543364,0.03181033,-0.973694,0.07669076,-0.49550676,-0.3169255,0.17909907,-0.14348151,0.05491804,0.04327261,-0.06486222,0.33142328,-0.26405576,0.14498994,-0.18962282,-0.2934722,0.3445774,0.45624098,0.50322723,-0.18971176,0.61046356,0.09347414,-0.06489953,0.07531055,0.24749976,0.42155218,0.029259972,0.47315773,-0.07458775,-0.09609414,0.29659215,0.68099827,0.21340998,0.20505565,0.17005157,-0.08797164,0.041298963,0.10510759,0.18131796,-0.21914127,-0.38406125,-0.02781384,-0.37880757,0.13503557,0.5185644,0.16704628,0.21742053,-0.041883405,-0.43144545,0.1290858,0.25042465,0.22235806,-1.5677516,0.23126908,0.22631389,0.79640985,0.38277638,0.2692026,-0.089314856,0.53049165,-0.2827644,0.04443095,0.4945995,0.19902293,-0.2738652,0.4838075,-0.6815518,0.54385465,0.06570435,0.046291836,-0.00926607,-0.0075271446,0.38601276,0.8453864,-0.067692,0.009899169,0.0355961,-0.2973457,-0.029974291,-0.27114168,0.115935184,-0.4586225,-0.3741179,0.77302235,0.4738535,0.35689735,-0.38129446,0.015718063,0.19035082,-0.07518109,0.0010928154,0.039056357,0.08742965,-0.27621138,-0.448922,-0.09507959,0.50776094,-0.039936464,0.07132555,0.090563945,-0.2953915,0.23028952,-0.12634462,0.14872204,0.036569778,-0.79605335,-0.14473157,-0.42233965,-0.39889345,0.54424226,-0.23751375,0.2321596,0.14688455,-0.0016347875,-0.37489128,0.4235206,-0.005775825,0.84483504,-0.0042652288,-0.055680156,-0.14563586,0.30441916,0.2672684,-0.1436034,-0.068656646,-0.27384678,0.176554,-0.44883394,0.31537044,-0.006238719,-0.3112174,0.025129234,-0.083041996,0.10373106,0.40521508,-0.20486537,-0.31067994,0.060589958,-0.06585918,-0.38183555,-0.3290079,-0.07387926,0.23331733,0.27281436,0.122773886,-0.024277082,-0.103054814,-0.1387664,0.42804858,0.029496344,0.37058428,0.43015358,0.08617425,-0.33701578,-0.005719348,0.1404043,0.47186995,-0.11655851,-0.13040449,-0.2262318,-0.5034668,-0.42130062,-0.0048424243,-0.15582074,0.31922573,0.060652874,-0.18851444,0.7258452,-0.061866794,1.0756735,-0.05432574,-0.50188017,0.16791086,0.49727,-0.023430578,-0.052844565,-0.18090588,1.0853488,0.64845186,-0.16111515,-0.09384956,-0.24672303,0.00056595803,0.2579182,-0.29149714,-0.13161065,-0.033435706,-0.58333904,-0.12396488,0.2012652,0.24713477,0.1337303,-0.11195612,0.03427411,0.24423712,0.063467376,0.23323509,-0.55299383,-0.0947735,0.22307625,0.33104923,0.048489504,0.083781525,-0.53513646,0.38999605,-0.3677948,0.08613469,-0.43506292,0.18762502,-0.2894099,-0.2604848,0.17383493,-0.116949014,0.33792263,-0.4606443,-0.33035436,-0.35380083,0.50559366,0.053079892,0.023138108,0.56881607,-0.27075627,0.089458995,0.09184766,0.54682773,0.98276806,-0.36677748,-0.13473186,0.3924907,-0.56699646,-0.5100653,0.20415539,-0.40926012,0.2322885,0.03266646,-0.14034203,-0.42997158,0.2313268,0.012486505,0.19225614,0.017822884,-0.6596762,-0.11116299,0.29062775,-0.26121363,-0.16964197,-0.45023742,0.23539896,0.5248598,-0.15927607,-0.52190703,-0.0041175503,0.15565933,-0.15242335,-0.60826,0.0939789,-0.23699537,0.3376522,0.06995846,-0.39596665,-0.11012853,0.036698792,-0.44839725,0.08754091,0.14211613,-0.29865283,0.08215151,-0.3389359,-0.08837329,0.938244,-0.31656298,0.19374943,-0.59628326,-0.44516098,-0.8136533,-0.40586898,0.35821375,0.4505817,-0.07940022,-0.9404711,0.080317855,-0.17063905,-0.2446169,-0.047803592,-0.18311357,0.5602112,0.17979033,0.4474598,-0.127402,-0.8037171,0.19407915,0.00025314986,-0.22436129,-0.5669787,0.554042,0.09164186,0.8280819,0.10502681,0.14181353,0.21068859,-0.6427778,0.07224801,-0.25831494,-0.20234558,-0.676339,0.10719843,634 +251,0.3504816,-0.07303807,-0.40722477,-0.20314376,-0.2006864,0.15821233,-0.11497805,0.3669505,0.13731225,-0.24981457,0.012765076,-0.22190234,0.13488741,0.6721775,-0.012102008,-0.5904887,0.10195456,0.15158473,-0.8352787,0.5546844,-0.38923132,0.36233297,-0.11151869,0.26149094,0.32846877,0.3314904,0.19871648,-0.209513,0.048407905,0.14808871,-0.24031736,-0.04792816,-0.3099719,0.07849414,0.00087274314,-0.14371465,0.030643377,-0.27977654,-0.53557473,-0.5738238,0.39756647,-0.69115144,0.36936647,-0.098290585,-0.22428153,0.19453265,0.07826892,0.3405865,-0.50875103,-0.095887296,0.1951547,-0.017288122,-0.04114093,-0.056419495,-0.26481408,-0.43309647,-0.4532443,0.002185446,-0.58861274,-0.2798215,-0.4194803,-0.025536507,-0.20286302,0.11262372,-0.031235533,0.15671529,-0.5353186,0.101655915,0.23266383,-0.1466821,0.00039422512,-0.43392906,0.06709518,-0.18123564,0.25941885,-0.056847926,-0.22592312,0.4782178,0.2032974,0.42826444,-0.06354942,-0.08925438,-0.18294708,-0.14556,0.087666854,0.46947682,-0.07614349,-0.37937087,-0.21089397,0.030106226,0.058006503,0.06801758,0.13657634,-0.39375365,-0.16939044,0.04134915,-0.19363464,0.3235745,0.35877848,-0.44907156,-0.27020633,0.43000492,0.48718452,0.2639955,-0.21773002,0.017916627,-0.010465604,-0.44315085,-0.18061092,0.034225073,-0.24916273,0.41285288,-0.15565768,0.30170307,0.74336225,-0.16036408,0.04272052,-0.16953005,-0.010932378,-0.19395371,-0.08660641,-0.09845731,0.012858014,-0.51276815,0.13252485,-0.014459219,0.7315299,0.29135817,-0.5946755,0.3929757,-0.49234003,0.29652965,-0.17179486,0.42965105,0.74428374,0.3648972,0.14363939,0.744421,-0.43708992,0.25814825,-0.04622727,-0.34513098,0.19572182,-0.2581462,-0.20471288,-0.56126994,0.056038175,-0.010692918,-0.22969219,0.10061563,0.42670146,-0.481083,-0.03319818,0.016598014,0.86245453,-0.37260374,-0.090678446,0.45282844,0.9073418,0.89823127,-0.03269718,1.0351179,0.39090756,-0.32940954,0.33846596,-0.42082658,-0.78052014,0.19132608,0.39361137,0.088475086,0.4347126,0.09469342,-0.088427976,0.26916316,-0.37343916,0.18850523,-0.096569456,0.10852562,0.008746815,0.033349574,-0.3402232,-0.2905055,-0.18175086,0.008975772,0.03390765,0.3050537,-0.2824625,0.33881563,-0.0126137175,1.9636328,0.10487851,0.046681907,0.023769872,0.68969893,0.21436383,-0.20714998,-0.31539997,0.30924928,0.46878487,0.0103849415,-0.66237885,0.09887376,-0.38021082,-0.5296989,-0.13714634,-0.42475623,-0.14095683,-0.040102843,-0.442245,-0.14838435,0.08701747,-0.28708154,0.4339603,-2.607593,-0.1769917,-0.18499568,0.3090142,-0.31816784,-0.19343136,-0.08610009,-0.35429776,0.2531615,0.34863707,0.44370562,-0.56387514,0.25536963,0.36965322,-0.46500534,-0.08329718,-0.4786927,-0.10819169,0.04845406,0.43404868,-0.1932156,0.019977119,0.04338658,0.2593884,0.4009512,-0.06402106,0.090185665,0.393164,0.26022428,0.19562343,0.37179402,-0.036430456,0.592485,-0.20178613,-0.059427164,0.268713,-0.08805973,0.4151839,-0.12062499,0.14203005,0.4133759,-0.4102301,-0.76311195,-0.42634103,-0.08016873,1.1346785,-0.43878788,-0.3565087,0.44535998,-0.37240615,0.032035075,-0.06288031,0.46546465,0.034548007,-0.21249555,-0.6201969,0.22920778,0.034642596,0.23753554,0.032045767,-0.06450457,-0.1565322,0.5350141,-0.0031896431,0.45606592,0.13597552,0.1823913,-0.09491901,-0.4720768,0.18941155,0.6931214,0.3201433,0.12586714,-0.23588692,-0.24554482,-0.4615366,-0.2743029,0.11844444,0.15071808,0.70241916,0.02056128,0.14767118,0.24384148,-0.18245293,-0.055346973,-0.15495259,-0.19098409,0.0943089,-0.052927677,0.54195696,0.61441004,-0.22254059,0.5662758,-0.060761612,0.16432601,-0.17090276,-0.57499224,0.6062519,1.0240626,-0.21684675,-0.16193867,0.40217772,0.3549988,-0.23373458,0.3508534,-0.65620685,-0.24615857,0.6576944,-0.1577051,-0.20407018,0.18473975,-0.3017363,0.20474097,-0.87634605,0.21113226,0.030168597,-0.34613788,-0.35577255,0.04436193,-3.50692,0.105254956,-0.24113068,-0.23246846,-0.062109884,0.07328663,0.17606662,-0.5155255,-0.46973857,0.008565799,-0.023121532,0.7218099,0.008230422,0.117839895,-0.21954621,-0.1594076,-0.37597984,0.077377446,-0.03839225,0.5073489,-0.12418263,-0.5384016,-0.058955573,-0.28182566,-0.41856855,0.09911003,-0.58539546,-0.36311504,-0.25646397,-0.49574533,-0.14745493,0.6882393,-0.171077,0.021516452,-0.12570596,-0.031562585,-0.14006376,0.20597915,0.40873927,-0.101963416,0.16583748,-0.053347457,-0.058380134,-0.39947847,0.14467905,0.054143712,0.37171063,0.27451965,0.18150528,0.1459261,0.5898483,0.6112299,-0.2594101,0.6616263,0.5672789,-0.19492008,0.26620954,-0.2814003,-0.13342252,-0.45445913,-0.31150976,-0.1709564,-0.32157108,-0.49925557,-0.07681116,-0.3008167,-0.7323334,0.30006245,-0.036001332,0.21283038,0.1410167,0.005063474,0.5089319,-0.17633067,-0.051089365,-0.026081506,-0.1886525,-0.6340471,-0.32173556,-0.6020876,-0.4233838,0.46109614,0.9550887,-0.22878869,-0.18216291,-0.12958662,-0.42172012,-0.05480821,-0.05908515,0.10423645,0.35405913,0.18285497,-0.30613154,-0.6902761,0.5993997,-0.048428137,-0.019556988,-0.5260588,0.18897662,0.44734007,-0.5493679,0.29962903,0.15478247,0.08508914,0.00881677,-0.40446022,-0.19408928,0.020528976,-0.21626496,0.19058858,0.059109014,-0.77270925,0.382726,0.23665349,-0.33505884,-0.59005344,0.58462125,0.02337148,-0.2612418,-0.08945877,0.21712098,0.031017026,-0.013396515,-0.36879832,0.21618465,-0.49948126,0.16360101,0.42022085,-0.025187327,0.19913778,-0.2307251,-0.20522282,-0.5459173,0.0963713,-0.33466357,-0.1516163,0.30205745,0.13191058,0.26837888,-0.013831234,0.10513585,0.2909952,-0.2595399,0.067054294,-0.10769639,-0.26056832,0.40580067,0.3738032,0.43971106,-0.41871223,0.65580404,-0.035897203,-0.04512273,0.22156614,0.09901209,0.3559621,0.2136085,0.29312977,0.15314965,-0.32524616,0.20437975,0.81203765,0.24758036,0.2990547,0.14280897,-0.21731052,0.18984228,0.20581502,-0.012306277,0.13167606,-0.42217973,-0.03303796,-0.08120367,0.24826027,0.49667463,0.27875277,0.3051701,-0.08257052,-0.315118,0.13039808,-0.019488156,-0.0016610732,-1.1898152,0.35653332,0.33411005,0.68939376,0.404441,-0.076431125,-0.086213425,0.6791161,-0.20352246,0.19397837,0.29914796,-0.15630384,-0.67646575,0.46793044,-0.66679865,0.7353858,0.035512112,-0.06184123,0.21002646,0.16980919,0.34191182,0.86585313,-0.08601846,-0.022065278,0.17184807,-0.46320418,0.15064472,-0.32302198,-0.07627754,-0.64272666,-0.3015328,0.48725665,0.34161976,0.15377162,-0.060367584,0.022547007,-0.0749983,-0.12994348,0.19379744,0.053899918,0.086326376,-0.13259038,-0.67332804,-0.40197012,0.36204472,-0.17903699,0.19992112,0.089702256,-0.13206309,0.23408593,-0.34189814,0.07538306,-0.09664823,-0.7279827,-0.076212145,-0.1835832,-0.39518872,0.4324533,-0.1935427,0.34380162,0.2108841,-0.045821052,-0.42483404,0.60053164,-0.05197023,0.76862943,-0.05247918,-0.27252138,-0.34331653,0.05255765,0.19610319,-0.22008501,-0.009803942,-0.24179745,-0.12802707,-0.6093487,0.4587237,-0.06368529,-0.33738598,0.020029861,-0.25954875,0.038791608,0.47651222,0.01320533,-0.18877332,-0.28191125,-0.09493734,-0.34483892,-0.14925458,-0.2373853,0.16427174,0.21637438,-0.08770941,-0.1836884,-0.14359777,0.12037905,0.44426215,-0.1672397,0.31713885,0.29168376,0.023669569,-0.26621592,-0.07041741,0.3382306,0.40861845,0.12680452,0.072989546,-0.21355037,-0.24191615,-0.3770974,0.009767797,-0.30755132,0.4395213,0.20778519,-0.36130095,0.59366226,-0.036306974,0.9789753,0.024435032,-0.3097078,0.22447284,0.45720062,0.21883075,0.029752195,-0.25729647,0.63519096,0.5270795,-0.0008054495,-0.31856394,-0.27534875,-0.17807296,0.34031785,-0.19159652,-0.25817126,0.15830572,-0.5577787,-0.16996805,0.27908656,0.22355537,0.38694528,0.019609679,0.044040862,0.09604392,0.049658872,0.25130945,-0.49872807,-0.25747606,0.36347607,0.098454475,0.11096361,0.21441874,-0.5531344,0.49379966,-0.5707846,0.021291407,-0.1817749,0.19792716,-0.17532913,-0.29976714,0.17549922,0.25775954,0.40336174,-0.212183,-0.25714433,-0.37846687,0.62287134,0.11258901,0.31349373,0.5723888,-0.28990003,0.089805536,0.06928773,0.39977136,0.9001842,-0.18542665,-0.009936238,0.29776153,-0.4302866,-0.6805439,0.39969188,-0.20019652,0.27579114,0.1505616,-0.14566593,-0.53825754,0.29418147,0.06394841,0.01386133,0.13937512,-0.5389932,-0.31924668,0.14185153,-0.224127,-0.29130167,-0.44721496,0.2321701,0.5187827,-0.40744117,-0.1596804,0.28085992,0.20972449,-0.13181558,-0.5848323,0.0067233485,-0.31489882,0.26885027,0.026109286,-0.34323806,-0.0087239025,0.08139253,-0.3845258,0.20349453,0.14470722,-0.49231455,0.10500751,-0.2713147,-0.030396223,0.9508837,-0.21333481,-0.0882893,-0.6592599,-0.4975963,-0.83807766,-0.45841178,0.560607,0.12118738,-0.004578018,-0.6272779,-0.03988618,0.010488713,0.013942933,0.012511814,-0.5065364,0.4568043,0.12275749,0.10562064,0.13739906,-0.8494444,0.11100402,-0.016293326,-0.25500706,-0.638765,0.45339096,-0.20229015,0.94212466,0.097714946,0.035642624,0.30201092,-0.4169827,0.03996394,-0.28642413,-0.20313992,-0.47415054,0.18742326,635 +252,0.23373637,-0.11119105,-0.8064963,-0.1622205,-0.043835465,0.14870103,-0.29180533,0.4692216,0.066827096,-0.49479562,-0.004626743,0.054386433,-0.012531215,0.26963463,-0.18764271,-0.35529262,0.0329816,0.08927201,-0.38271993,0.19039913,-0.55970174,0.21741603,-0.17577103,0.18971786,0.095617756,0.23136188,0.13441375,-0.024236504,-0.0068829614,-0.111761846,0.037562147,0.27255386,-0.24924575,0.09243985,0.0057570967,-0.43033087,-0.036564317,-0.21793881,-0.31540143,-0.60683566,0.2818842,-0.778253,0.56022716,-0.0037289797,-0.32566306,0.3722894,0.16389063,0.26068237,-0.2638863,0.10843173,0.20005217,-0.16657871,-0.2151062,-0.22269824,-0.29097527,-0.38683885,-0.463016,-0.08601133,-0.63611615,-0.07264217,-0.21841356,0.11216947,-0.3777825,0.10812716,-0.23315959,0.30310857,-0.5713909,-0.23531123,0.101028904,-0.07134298,0.379964,-0.6440209,-0.09596327,-0.050697263,0.059636824,-0.22555657,-0.15621774,0.13579631,0.23061895,0.47820014,-0.2267396,0.008559628,-0.39879778,-0.23700094,0.13339303,0.4230107,-0.20062378,-0.14587861,-0.1097929,0.0063485145,0.30741057,0.20060396,-0.021276807,-0.25739264,-0.07701515,0.14224945,-0.3480746,0.36082098,0.4193961,-0.3599493,-0.0060899355,0.47333393,0.7663354,0.122641094,-0.15847518,0.18967065,-0.02247866,-0.41958475,-0.113592975,0.07644009,-0.121337146,0.4437444,-0.08481705,0.21196231,0.44832265,-0.19400644,0.0053655743,0.12676229,-0.016133659,0.008820017,-0.1871448,-0.33022594,0.23209222,-0.44784245,0.12918642,-0.17944679,0.5157948,-0.12152891,-0.6451245,0.382858,-0.38819188,0.006937305,-0.10725749,0.64853233,0.4883227,0.3959419,0.110820755,0.71813774,-0.5062193,-0.021321813,-0.19171034,-0.1770237,-0.012069776,0.05050745,-0.16387717,-0.53817886,0.14287186,0.086075395,-0.01884952,0.12999016,0.4376175,-0.36625734,-0.1309046,0.09474613,0.5805329,-0.38859144,0.0040871543,0.64596593,0.9970697,0.81683695,0.13305062,0.91043574,0.11036628,-0.082079805,-0.1697925,-0.2318769,-0.54203075,0.28128865,0.358109,0.18767296,0.29824975,0.020034425,-0.05407292,0.39118376,-0.25489426,-0.027086275,-0.12208672,0.22731556,0.10211792,-0.08588961,-0.36904728,-0.11302063,0.13591419,0.057074852,0.11446905,0.24330401,-0.3339558,0.27315038,0.16275647,1.3690184,-0.22009148,0.09182276,0.30401915,0.19698833,0.13268219,-0.14346318,-0.08368928,0.34688547,0.3613651,0.022398563,-0.5781333,0.16498083,-0.13792627,-0.5259388,-0.19604133,-0.22446674,-0.10776196,-0.1964936,-0.4093312,0.017850686,-0.008058772,-0.5276507,0.30663636,-2.68038,-0.124001615,-0.18531965,0.26498255,-0.1330474,-0.30344263,-0.2682267,-0.32942057,0.38376236,0.30710942,0.42225856,-0.4420571,0.50259936,0.38626784,-0.38642988,-0.041084584,-0.5860302,-0.09671186,-0.04639249,0.104262285,0.0883861,-0.12278464,0.0574208,0.24635765,0.4111152,-0.36546573,0.10016284,0.33799732,0.29430228,-0.052362658,0.40994212,-0.027783029,0.49977157,-0.3340513,-0.13525422,0.4265019,-0.48209566,0.1289427,0.0038139583,0.21362881,0.22489381,-0.4007072,-0.81527495,-0.5012244,-0.09312646,1.4837703,-0.27687544,-0.51748127,0.30817303,-0.2707587,-0.45873037,-0.12646596,0.24867281,-0.12620181,0.0017100573,-0.98226535,0.07151936,-0.14596996,0.21184571,-0.07818949,0.07391457,-0.32849953,0.5267761,-0.14921556,0.7000261,0.48056683,0.13097115,-0.22342435,-0.21546318,-0.005930436,0.9032206,0.490352,0.07647392,-0.17907412,-0.086527385,-0.24811006,0.058017243,0.21366218,0.42992508,0.6625802,0.15016674,0.12048667,0.184788,0.009490865,-0.12549166,-0.30898762,-0.16857061,0.0011813422,0.2359808,0.5217763,0.2591285,-0.021417115,0.26080456,0.028442772,0.2262914,-0.3647317,-0.44906166,0.2073762,0.54563904,-0.13389438,-0.46110523,0.46169117,0.5844288,-0.29073825,0.3617061,-0.6096029,-0.20100711,0.34713286,-0.21457838,-0.2908308,0.32714972,-0.39456895,0.21582481,-0.814506,0.13223968,-0.30098712,-0.64757603,-0.45008463,-0.27757996,-2.8108678,0.22531776,-0.05802496,-0.32572788,-0.09110592,-0.17580384,0.281147,-0.53604496,-0.6661802,0.04675772,0.18349715,0.60972965,-0.026441518,-0.1430948,-0.18507954,-0.25056532,-0.10805195,0.16559619,-0.030888954,0.2208913,0.036435183,-0.40550226,-0.049344547,-0.19338094,-0.42619643,-0.093071304,-0.31963605,-0.245933,-0.06956749,-0.35023242,-0.28201562,0.43230665,-0.35678664,0.03629562,-0.16981807,0.041172046,0.06718822,0.38629368,0.0913661,0.21554977,0.051435683,-0.10802333,0.112125136,-0.25530705,0.21819182,-0.06457241,0.059032638,0.48002142,-0.15655433,0.060130898,0.51085407,0.57991403,0.0040939967,0.8538983,0.37644798,-0.06598376,0.28304812,-0.27858546,-0.1780592,-0.53304404,-0.33712062,-0.05777284,-0.41265613,-0.34675902,-0.17601487,-0.24656935,-0.82748586,0.45514402,-0.07923798,-0.0052078883,-0.02611285,0.5094367,0.37920707,-0.09616761,0.032846164,-0.075956464,-0.08382143,-0.41213065,-0.4310332,-0.7936339,-0.370688,-0.05002795,1.1225841,-0.25027826,0.1526362,-0.03091797,-0.06990631,0.1475496,0.24089807,0.23887223,0.2983874,0.3061396,-0.17382394,-0.40255538,0.18224907,-0.26197392,-0.3187541,-0.54056853,-0.08802946,0.71022093,-0.50444925,0.3847571,0.37092534,0.13425204,-0.20779295,-0.71502185,-0.08402238,0.06994106,-0.34181297,0.52963006,0.23479046,-0.717638,0.50424606,0.48909563,-0.15979004,-0.5534821,0.54318464,-0.08043229,-0.16915156,0.009755262,0.41493618,-0.12513906,-0.03776231,-0.095839985,0.084015064,-0.27462018,0.32357973,0.31448123,-0.085771315,0.3987686,-0.28885612,-0.100657985,-0.5857813,-0.11933395,-0.5273272,-0.05986322,0.062154245,-0.06034371,0.2278414,0.12855399,-0.1858615,0.5031783,-0.39092138,0.105412215,-0.17764664,-0.28090575,0.3904579,0.39990625,0.23012023,-0.16463266,0.54892665,-0.0020360232,-0.09902855,-0.2582459,0.04492841,0.5722187,-0.10931762,0.3356353,-0.092776366,-0.10184079,0.36103046,0.78199756,0.20679717,0.36824608,0.10041297,-0.12519392,0.004908538,0.092119314,0.095364265,-0.14620413,-0.20851408,-0.031871542,-0.15575717,0.26247156,0.41522676,0.08764361,0.4966563,-0.23218828,-0.16788206,0.116283335,0.27306074,-0.074282095,-1.0254263,0.5180987,0.09773316,0.6291425,0.38395092,0.13383129,0.112568535,0.26813662,-0.28356877,0.15934786,0.2490237,0.07278033,-0.44638956,0.51077676,-0.7496049,0.43317512,-0.05345988,-0.0014849722,0.10003412,-0.09545564,0.51169235,0.738357,-0.02273594,0.089225724,0.09776099,-0.2580013,0.09824032,-0.27402508,0.0069564003,-0.48671228,-0.30918443,0.7624653,0.3708032,0.5209099,-0.18026362,-0.12106535,0.20807232,-0.03597646,0.16119164,0.011425578,0.2259595,-0.26417,-0.45453995,-0.20428361,0.37089244,0.28319937,0.058248147,0.009631491,-0.27921936,0.27205503,0.18771712,0.11274822,-0.027506063,-0.35734957,0.016998636,-0.30881086,-0.46239126,0.20089954,-0.36088118,0.31701508,0.17910023,0.0027333458,-0.36291105,0.16738652,0.15204997,0.673124,-0.060997445,-0.018143304,-0.24850026,0.33362377,0.25143233,-0.09265051,-0.071243055,-0.33257502,0.2331842,-0.814985,0.413849,-0.27557665,-0.20124461,0.32741445,-0.21307752,-0.02860415,0.5166111,-0.29862097,-0.20096417,-0.0036023974,-0.15365845,-0.2920895,-0.36437482,-0.22011565,0.19985205,-0.18495996,0.0139850695,-0.073483974,0.017305119,-0.0010223439,0.34153178,0.14523506,0.22926976,0.41818014,0.12923531,-0.49496096,-0.14713724,-0.033442743,0.5545874,0.05383458,-0.09196828,-0.36353073,-0.5273441,-0.061172,0.2768199,-0.22854978,0.33490688,0.21181759,-0.19112797,0.7473288,0.043490514,0.9404691,0.060806338,-0.2721893,-0.079573125,0.56230736,0.04701121,-0.1280323,-0.029175462,0.73475134,0.62014866,-0.12863325,-0.15372403,-0.27236858,-0.09566649,0.090098515,-0.2270293,-0.23510796,-0.042019766,-0.6756321,-0.25576648,0.24334823,0.2340719,0.087381996,-0.190049,0.15645863,0.22255538,0.051112656,0.23226894,-0.42146912,0.07105193,0.33414605,0.17777973,-0.063773505,-0.02209441,-0.40292627,0.27582887,-0.5965527,-0.0676235,-0.14808026,0.02820613,0.11429872,-0.2269412,0.22525182,0.098878354,0.13604932,-0.2572096,-0.16531162,-0.05545406,0.45729104,0.04662594,0.03998114,0.55912524,-0.23652233,0.23339967,0.06834064,0.42101562,0.95421976,-0.16303584,0.10431926,0.35098323,-0.30928773,-0.6654156,0.2176781,-0.4828481,0.25529632,-0.10505922,-0.3306545,-0.44552097,0.43915552,0.2339612,-0.1485203,0.062256765,-0.46577686,-0.19209363,0.1323963,-0.3610962,-0.20162414,-0.3463531,-0.05663785,0.5114938,-0.2125115,-0.2940258,0.022040566,0.44080874,-0.21260531,-0.5148324,0.15244718,-0.23595163,0.33428532,0.06513297,-0.1877669,0.057041008,0.13404134,-0.32106173,0.11733713,0.22390781,-0.21502675,0.12476646,-0.39973372,0.1347327,0.54438686,-0.17757468,0.007894198,-0.41740167,-0.46417326,-0.7862555,-0.20462802,0.4878958,0.050769772,0.044204537,-0.7163063,0.19243962,-0.11097527,-0.05980582,-0.10742843,-0.303989,0.5355595,0.06771715,0.21467218,-0.17886183,-0.54914564,0.09600291,0.05302957,-0.28855532,-0.2605597,0.5531893,-0.09442686,0.60334474,0.11261557,0.115090095,0.18363602,-0.5273864,0.25060445,-0.20680186,-0.24413384,-0.6372088,-0.13855381,649 +253,0.4289663,-0.13479218,-0.3926398,-0.27146724,-0.31060982,0.004435416,-0.3364519,0.2612747,0.15561636,-0.3834211,-0.1663123,-0.035442233,0.09034064,0.1360518,-0.2130798,-0.570129,-0.012069599,-0.023907185,-0.58685505,0.41251305,-0.7179983,0.3568812,0.22828321,0.33526185,-0.00014818709,0.4212244,0.33757746,-0.07415819,0.064935096,-0.28716776,-0.09486665,0.20342146,-0.7416406,0.19737439,-0.27264395,-0.39921048,0.24774376,-0.38510925,-0.13877495,-0.73369294,0.028515462,-0.79955137,0.5674021,-0.06385661,-0.16297604,0.027688185,0.24294244,0.20711282,-0.21973896,0.08837017,0.13777588,-0.33657047,-0.1848889,-0.33589315,-0.026558178,-0.43319663,-0.36692467,-0.10983956,-0.69905597,-0.4398724,-0.34309432,0.10952078,-0.3542505,-0.05151182,-0.051785264,0.4139318,-0.4234977,-0.040037934,0.11830079,-0.13855925,0.26838693,-0.64093107,-0.07306793,-0.039399873,0.40397316,-0.09518466,-0.21078244,0.47459957,0.19790195,0.4705246,0.24581064,-0.34648708,-0.12116071,-0.2895838,0.019302214,0.34733686,-0.1709246,-0.19159609,-0.20721382,0.006816423,0.47400424,0.32670355,0.04102846,-0.15910354,0.07110869,0.06290331,-0.24200307,0.41987938,0.5396487,-0.33787993,-0.24534187,0.13898939,0.388068,0.13215126,-0.27442732,0.047899302,-0.051077664,-0.45796445,-0.26702002,0.13572124,0.041425582,0.49099195,-0.12452723,0.20911366,0.72749037,-0.26672888,0.21688057,0.02787068,-0.042297598,0.06682379,-0.24865372,-0.18801574,0.27474517,-0.78178596,0.008587769,-0.37396985,0.805171,-0.06181448,-0.70551044,0.34387198,-0.5005092,-0.07292448,-0.11556519,0.54197377,0.52039915,0.5065881,0.29381102,0.6829675,-0.32883447,0.031685997,-0.1763804,-0.3461486,0.08575225,-0.13238102,0.09476324,-0.40092754,0.08591442,-0.07158612,0.34371865,0.04085656,0.28707033,-0.42582083,-0.10808675,0.3973953,0.7186757,-0.36094543,0.021688167,0.5243688,1.118931,0.9088667,0.16802081,1.1155219,0.23679323,-0.10043247,0.07021884,0.1016465,-0.57035285,0.11658896,0.47830683,0.1772139,0.21251346,-0.08617334,-0.104569025,0.32044992,-0.4015437,-0.08777119,0.067123204,0.469572,0.06239898,-0.07864547,-0.42646414,-0.2402251,0.14249246,-0.01273435,0.013460887,0.18135415,-0.08023181,0.22055937,-0.14345647,1.0569988,-0.05146645,0.026648585,0.1187489,0.7084466,0.30342185,-0.012920211,0.055827238,0.39600766,0.3153049,0.033365346,-0.572691,0.124574885,-0.23683856,-0.4176543,-0.13402185,-0.4699122,-0.052700736,0.1594802,-0.42647296,-0.2523424,-0.059274364,-0.22319777,0.38277492,-2.6928911,-0.22770517,-0.015403358,0.35441652,-0.29540202,-0.21701965,-0.04461074,-0.4819025,0.4262455,0.2969713,0.48559648,-0.5523015,0.5674747,0.5710299,-0.47736838,-0.2518657,-0.70013046,-0.17533283,-0.19500594,0.38372287,0.09893155,-0.2524403,-0.26912072,0.3494758,0.7761096,0.09691576,0.0639765,0.38558477,0.26851097,0.12733354,0.70613104,0.06251016,0.51770693,-0.28344142,-0.1738255,0.36720866,-0.22668491,0.05696117,-0.0779028,0.12910034,0.52916056,-0.52790046,-0.88666415,-0.5952689,-0.2736353,1.169394,-0.30420992,-0.4532118,0.2618808,-0.2074912,-0.0083280485,0.058416333,0.4036237,-0.20989409,0.2461234,-0.49859196,0.09201776,0.007365751,0.1288238,0.1307171,0.019712178,-0.40523052,0.5930134,-0.03454806,0.54785347,0.21190561,0.29041937,-0.15145212,-0.22921272,0.035487518,0.8073101,0.49782485,0.09172874,-0.18853426,-0.21345097,-0.12754373,-0.103697844,0.032445572,0.5331268,0.8058954,-0.030436138,0.21397765,0.30024692,-0.1376898,0.101803206,-0.01121343,-0.23144086,-0.070096746,0.15987997,0.47031304,0.51562554,-0.016751265,0.30949906,-0.14291033,0.47242975,-0.13551779,-0.5361858,0.43182054,0.6295039,-0.1697559,-0.00075741607,0.39724848,0.61178374,-0.24389662,0.5269254,-0.71979296,-0.40916577,0.8079712,-0.14958371,-0.4146146,0.11794346,-0.3370383,0.25179893,-0.791281,0.37782013,-0.4932782,-0.4519375,-0.3283167,-0.22425994,-3.417561,0.25469258,-0.28771874,-0.038037974,-0.40763468,-0.09234814,0.3619873,-0.70075357,-0.30113092,0.11824706,0.09764249,0.6374999,0.032216653,0.008211673,-0.2867877,-0.3961027,-0.18777823,0.27633724,0.053491354,0.21211107,-0.20413758,-0.40712646,-0.00691092,-0.19239695,-0.6217672,0.18653971,-0.28594112,-0.5385217,-0.08601802,-0.36442757,-0.33895254,0.5403557,-0.30012634,0.08579196,-0.2219639,0.064957276,-0.18440874,0.17305152,0.15968561,0.18135194,-0.027372304,-0.08587645,0.123871975,-0.42085811,0.4113084,0.119546175,0.3521909,0.17076536,0.025327237,-0.07741685,0.49922195,0.26085022,-0.2094689,0.96380156,0.15082149,-0.13599163,0.43197373,-0.30929983,-0.3923584,-0.6848981,-0.33168668,-0.10055793,-0.32008424,-0.31811434,0.23945265,-0.2102272,-0.65839523,0.65028274,0.04649379,0.29310316,-0.057595085,0.4208337,0.29659843,-0.12789539,-0.10797582,-0.06174554,-0.1753296,-0.5721083,-0.20133935,-0.8316465,-0.56074345,-0.12755585,0.7104967,-0.36955854,-0.019256568,-0.07397811,0.09711096,0.25977793,-0.018723078,0.21872775,0.29129657,0.5240019,0.05619747,-0.78877753,0.49289,-0.08826074,-0.119111694,-0.32833844,0.09053114,0.72736466,-0.8339827,0.4462206,0.48667076,0.2008381,0.08442586,-0.58655995,-0.1480262,0.024294829,-0.2972924,0.50577486,0.041652348,-1.0127928,0.6036783,0.20132616,-0.5262352,-0.6360338,0.47165537,0.049163282,-0.30515918,-0.04306143,0.46798187,0.2276413,-0.11733349,-0.10392257,0.15435892,-0.45149505,0.27156755,0.08479207,0.0287442,0.31235012,-0.12861007,-0.29275027,-0.6646198,-0.08244907,-0.42946255,-0.33617514,0.26794007,-0.242594,-0.20276718,0.33105502,0.0770723,0.43795586,-0.19452216,0.21689129,0.044453774,-0.31929928,0.47185734,0.5422817,0.4002078,-0.1795499,0.5654492,0.16450728,-0.17049283,-0.060582053,0.13593982,0.3846864,0.015555634,0.1890488,-0.18055184,-0.10385474,0.30901492,0.5963162,0.13591178,0.37455222,-0.03475406,-0.0018832723,0.4800328,0.1074222,-0.061443005,0.17180488,-0.3644756,-0.17965321,-0.037415132,0.097530685,0.41176698,0.3011006,0.3119381,0.09774792,-0.011841488,0.027585652,0.250436,-0.21339846,-0.86428076,0.27919406,0.20684604,0.69074214,0.36640316,0.1490754,-0.18424836,0.53505886,-0.17362562,0.057509635,0.2813225,0.13760458,-0.4156458,0.8879794,-0.45780727,0.39162847,-0.15920912,-0.01119436,0.07823197,-0.031010246,0.42996594,0.8134372,-0.21299307,0.037055712,0.02753403,-0.25167522,0.02313181,-0.32568607,0.026622891,-0.19855998,-0.25484836,0.74887764,0.2715674,0.30125967,-0.1450429,-0.12865254,0.11723863,-0.31171453,0.30957514,-0.12210365,0.05069582,0.013656406,-0.3731275,-0.19712375,0.51063615,0.10773452,0.15042774,-0.1675034,-0.106600456,0.11998519,-0.06327012,0.027945422,0.066452004,-0.52065,0.12703386,-0.34115702,-0.38346207,0.28577596,-0.36185497,0.02351586,0.17856796,-0.009642205,0.101601,0.16683748,0.19100924,0.4202077,-0.04967761,-0.3731964,-0.20810606,-0.07065846,0.18235935,-0.3542497,0.076773964,-0.35056365,0.11857421,-0.7002332,0.52025425,-0.2496477,-0.2862214,0.2561574,-0.2104085,-0.08818695,0.4349783,-0.06288062,-0.023201609,0.045743488,-0.07460741,-0.25038013,-0.22276981,-0.2071679,0.23197956,0.23661228,-0.08604535,-0.052907754,-0.3258684,-0.056464456,0.47150898,0.11393762,0.36869487,0.015187953,-0.0542053,-0.28433815,0.19975635,0.09321377,0.48340425,-0.040679898,0.16019286,-0.35043913,-0.2620869,-0.26853094,0.14972034,-0.049519897,0.10770108,0.042235073,-0.33017674,1.0777923,0.005887747,0.9429344,-0.0339838,-0.40780935,-0.047767714,0.4986534,-0.38272363,-0.014004374,-0.24679573,1.0025291,0.4947492,-0.08472453,-0.11944286,-0.41989794,-0.15068635,0.18279003,-0.35171992,-0.08821173,-0.2779242,-0.49850896,-0.41139355,0.24205051,0.4156323,-0.038639527,-0.0862521,-0.007904598,0.16271864,0.06561486,0.41748697,-0.7410937,-0.19301382,0.04373916,0.1650712,-0.120246775,0.11471084,-0.40614155,0.37081555,-0.7879234,0.15528466,-0.46345004,0.00874091,-0.23203772,-0.3087881,0.17344116,0.022700815,0.3880687,-0.30043668,-0.47784293,0.02833473,0.34128505,-0.08863554,0.28124088,0.5403069,-0.22150952,0.04722876,0.009698454,0.4733843,1.2504011,-0.19827083,0.002442825,0.2592229,-0.5306395,-0.5061664,0.121798225,-0.33850348,-0.10238907,-0.066055246,-0.50058585,-0.34649405,0.1835386,0.21556838,0.06989957,0.09953998,-0.6094152,-0.09960626,0.26899275,-0.29590896,-0.27208164,-0.13223961,0.40702954,0.7258729,-0.27368033,-0.09186549,-0.067293376,0.36649817,-0.27822083,-0.62117755,-0.038758796,-0.11827057,0.37166864,0.14757948,-0.2169986,-0.050358735,0.13842653,-0.47896495,0.024186246,0.37603623,-0.34502938,-0.037454773,-0.3054593,0.16927962,0.78802234,-0.085428044,-0.23393068,-0.5192022,-0.5326592,-0.71586263,-0.46088237,0.3220242,0.22766064,0.17057939,-0.2663447,0.061475817,-0.2480591,-0.255252,0.0214863,-0.39194113,0.1969915,0.20283106,0.46699038,-0.30858517,-0.87315446,0.17734988,0.1513662,-0.0630994,-0.53316224,0.6269455,-0.12224881,0.7361259,0.17315629,-0.1583819,0.010455473,-0.43296522,0.280259,-0.45208263,-0.024039317,-0.65666616,0.024549492,653 +254,0.35025918,-0.025794657,-0.60905975,-0.118137985,-0.29021356,-0.046083212,-0.09947359,0.7099356,0.23697548,-0.463528,-0.11800668,-0.19347422,-0.017660085,0.47491592,-0.20617162,-0.6460915,0.018881131,0.09503922,-0.5474217,0.48313364,-0.4306121,0.25366265,-0.03587164,0.49962685,0.23152259,0.33090273,0.0030964613,-0.114629425,-0.055729866,-0.05625413,0.055923607,0.2519682,-0.44079632,0.049720388,-0.14421526,-0.44286442,-0.038974244,-0.50611204,-0.49858177,-0.7429616,0.40037587,-0.7583683,0.53151333,-0.021016125,-0.26936358,0.17527257,0.07017351,0.4984766,-0.29567906,-0.1390099,0.17476524,-0.018784208,-0.000976928,-0.1395133,-0.24957542,-0.2594012,-0.5853999,0.10320205,-0.3815774,-0.10000847,-0.12189449,0.100085475,-0.3528481,0.07178419,-0.0015630882,0.4536342,-0.47267035,0.16604476,0.39594507,-0.089016914,0.20271058,-0.48716298,-0.085673206,-0.106947936,0.19492897,-0.21312316,-0.19547114,0.34404355,0.14190511,0.50454557,-0.05389149,-0.18044357,-0.3231278,-0.028801981,0.15577644,0.42446044,-0.08360776,-0.34613687,-0.08692767,0.090196736,0.07268155,0.23932165,0.13704656,-0.25285095,-0.12287234,0.09522298,-0.25375536,0.37233478,0.5183045,-0.15097462,-0.3543924,0.29939932,0.6790793,0.28043452,-0.16097,0.11748373,0.13433436,-0.6205221,-0.24368593,-0.09355715,-0.07162208,0.31318015,-0.14669509,0.2638334,0.79188716,-0.25771937,-0.0073088724,-0.009260092,0.07439019,-0.13163179,-0.41342905,-0.22878957,0.21863751,-0.37528038,0.20107001,-0.07718827,0.78537065,0.23793726,-0.77535135,0.33934078,-0.6355318,0.20203659,-0.20352824,0.49338195,0.6497243,0.28668144,0.29627952,0.6588841,-0.40690506,0.23627116,-0.11396948,-0.4418602,0.015140462,-0.08395405,-0.098301634,-0.42768928,-0.078901894,-0.012830808,-0.12393189,0.13785677,0.19382069,-0.53673714,-0.09943379,0.022740789,1.0598671,-0.26264608,-0.046188306,0.8034826,0.8467137,1.0176213,0.0396937,1.1335909,0.115320675,-0.14642748,0.38227844,-0.28926787,-0.94059193,0.26642233,0.25781724,-0.34450918,0.31688005,0.045531336,0.05065489,0.4740696,-0.37266314,0.23266178,-0.2500209,0.32691038,0.21887064,-0.15450983,-0.3041647,-0.16816331,-0.09019842,-0.07630623,0.091711566,0.28654233,-0.07643082,0.31524608,-0.057828825,1.8704605,0.069881774,0.1603933,0.16889769,0.50061303,0.21625787,-0.16427927,-0.21885148,0.14572264,0.32379553,0.09986956,-0.5827206,0.14965868,-0.19768676,-0.50359994,-0.13192289,-0.34385693,-0.08861857,-0.18392318,-0.5530043,-0.062090017,-0.23522896,-0.13025513,0.34130594,-2.8487062,-0.2767697,-0.051629502,0.28280258,-0.2504028,-0.34779307,-0.16525014,-0.51582515,0.4732519,0.33480853,0.41975778,-0.63154566,0.5791881,0.5163837,-0.49271443,0.0014716308,-0.5691574,-0.18814953,0.099399365,0.23390856,0.0038110039,0.10659243,0.05870251,0.21379992,0.3483923,-0.11292747,0.04424652,0.2339399,0.38289878,0.085303865,0.53437287,-0.10115388,0.47387567,-0.3879593,-0.15670992,0.26670063,-0.37837332,0.24291866,-0.043653116,0.09931047,0.4709978,-0.4304218,-0.9349083,-0.5762192,-0.048590314,0.9187107,-0.121423274,-0.18285833,0.34823462,-0.5552403,-0.17961082,-0.1745138,0.4178637,-0.007509933,-0.072500914,-0.80873114,-0.025743825,-0.1818884,0.08126872,0.0103435125,-0.014213289,-0.28936723,0.5308857,-0.10853446,0.47127402,0.47642478,0.113522895,-0.28323612,-0.43101725,0.12222782,0.74727416,0.2877844,0.17810258,-0.28516117,-0.16865434,-0.4479588,-0.15119903,0.06720612,0.43789265,0.7453877,-0.071974,0.18384501,0.2795015,-0.082543306,-0.039330173,-0.21478513,-0.32764664,-0.04570113,-0.10098771,0.46536568,0.7624629,-0.33063668,0.5126589,-0.017037315,0.34758037,-0.1759614,-0.45054314,0.4815017,0.7458907,-0.12350074,-0.32163525,0.5149053,0.38163516,-0.34137955,0.39740276,-0.4471507,-0.11292241,0.5030389,-0.19762713,-0.40088478,0.21468456,-0.20346285,0.14398007,-0.9009739,0.16195272,-0.22675003,-0.34088272,-0.6585997,-0.24264774,-3.031837,0.18074383,-0.30715173,-0.13258407,-0.18582487,-0.09467028,0.118732736,-0.4964038,-0.77583706,0.14377241,0.17068976,0.79623806,-0.14068381,0.3001595,-0.20407145,-0.15808369,-0.3768606,0.028436057,0.27892116,0.38739356,0.05595935,-0.51431304,-0.2745759,-0.089356475,-0.48488387,0.17637397,-0.6143435,-0.43106654,-0.0778343,-0.5385639,-0.33827505,0.7399138,-0.16523786,-0.045894813,-0.065228276,-0.039963085,-0.05450364,0.4359722,0.22205715,0.012285951,0.06933089,0.011124802,0.08198715,-0.29586428,0.22255754,-0.031095915,0.4605407,0.17202304,0.040554922,0.30573362,0.62124753,0.81984544,0.038014427,0.70116514,0.5224456,-0.04598577,0.24654368,-0.32656848,-0.32072407,-0.43978086,-0.23245601,-0.033100303,-0.35686997,-0.3920099,0.0235901,-0.49461898,-0.80414426,0.565082,0.024426349,-0.014085412,0.016801301,-0.0068074744,0.43958288,-0.16976303,-0.089719005,-0.009512258,-0.12275549,-0.5632297,-0.2835035,-0.6312144,-0.50441235,0.11704487,1.1623079,-0.24163426,-0.041638456,-0.0972468,-0.35434428,-0.0032358367,0.10485215,-0.072084285,0.20953134,0.39241955,-0.15359503,-0.49792495,0.41100731,-0.18078,-0.27325955,-0.73126036,0.0424757,0.5841124,-0.6023499,0.5535322,0.119511805,-0.049767334,-0.10593362,-0.47678703,-0.032824438,-0.02875787,-0.1713168,0.41494453,0.13992931,-0.71840006,0.34516576,0.47359148,-0.3055494,-0.73634434,0.48167622,-0.06927612,-0.28613317,-0.055801343,0.20583569,0.16257364,0.012789364,-0.12792236,0.18155083,-0.3086086,0.10451214,0.18672152,-0.11826967,0.42702055,-0.15891081,-0.0785241,-0.6794137,-0.060323995,-0.49720466,-0.21869682,0.2549919,0.082107894,0.1659175,0.013394797,0.14058058,0.25265232,-0.1834505,0.066784956,-0.17907128,-0.26334462,0.24698694,0.38542357,0.5313728,-0.5171064,0.5635472,-0.09156968,0.027313745,0.35013762,0.08815338,0.49701503,-0.039796926,0.3906979,0.13436459,-0.14986466,0.14334495,0.8092252,0.17281656,0.40364093,0.18543836,-0.17231707,0.22526464,0.06741891,0.08606164,0.009996072,-0.549441,0.15915179,-0.026684029,0.22035795,0.5052564,0.2148387,0.30655447,0.03876512,-0.44954398,-0.026433332,0.22266334,-0.03511103,-1.4182326,0.40837157,0.23667549,0.85847276,0.45456907,0.04248091,0.10164185,0.57094735,0.006484133,0.26705176,0.3597915,-0.17095527,-0.56549865,0.538081,-0.6381544,0.68822366,0.041431,-0.025352666,-0.0068092705,0.07198815,0.48801643,0.62897307,-0.14423303,-0.01017938,0.120144114,-0.28521413,0.14712693,-0.45076686,-0.06212034,-0.5277355,-0.1373673,0.57574844,0.6657075,0.25969994,-0.17563495,0.0343627,0.15101002,0.042489126,0.07741846,-0.123354144,0.067410454,0.01499783,-0.6450881,-0.31348875,0.5021438,-0.016019186,0.27414224,-0.15209651,-0.16466323,0.3004933,-0.19044682,-0.046287537,-0.15096465,-0.7929246,0.013436121,-0.24538682,-0.5039218,0.4012102,-0.06793973,0.28796205,0.2137975,0.041598383,-0.5058105,0.61189234,-0.24268775,0.8191404,-0.17165668,-0.1046458,-0.42920798,0.20867552,0.28592083,-0.25850117,-0.055936765,-0.4077681,0.0145962555,-0.39948168,0.3961352,-0.045284107,-0.3892195,-0.027931651,-0.123726696,0.07666488,0.5285828,-0.1472766,-0.03290461,-0.09173442,-0.24673183,-0.2605656,-0.20673747,-0.1278239,0.3062211,0.22680883,-0.12749878,-0.039325323,-0.15832242,0.005399712,0.5742933,-0.06624419,0.39754933,0.39291415,0.14774117,-0.3312203,-0.27826732,0.29550895,0.549267,-0.072721526,-0.17932507,-0.28069118,-0.27990946,-0.18813422,0.41737098,-0.20321348,0.43392783,0.19638552,-0.4063496,0.7229925,0.15086031,1.2092719,0.1989584,-0.2360136,0.25627056,0.2743213,0.24641551,-0.026429506,-0.44675484,0.7954523,0.4067581,-0.24886338,-0.25819042,-0.34836018,0.030479161,0.13649629,-0.2185188,-0.24840464,-0.05178638,-0.52500176,-0.2001814,0.26307952,0.1538166,0.27851948,-0.2000486,0.015718492,0.16796394,0.02361389,0.29185686,-0.4161321,-0.09258743,0.21122427,0.18751803,0.078215316,0.15335388,-0.57142997,0.47018448,-0.31010872,0.09716976,-0.23624277,0.24605195,-0.17943877,-0.29231656,0.17429967,-0.046982523,0.34129998,-0.30375704,-0.34994984,-0.3249858,0.45617262,0.30557293,0.1454459,0.649338,-0.22849755,0.006126078,-0.09038708,0.52270323,0.9010708,-0.21389268,-0.05706546,0.40596068,-0.17479163,-0.5655801,0.25149223,-0.31544086,0.24822807,-0.056886435,-0.1523903,-0.63875586,0.3200149,0.16533737,-0.08683718,0.0022122422,-0.5635695,-0.21832228,0.24407345,-0.2627616,-0.26607984,-0.4815336,-0.00528841,0.6990979,-0.20281038,-0.26885536,0.18933378,0.22448741,-0.0795538,-0.38507873,-0.048944857,-0.3655578,0.15156792,0.051156737,-0.31838128,-0.11591266,0.12976803,-0.4505852,0.12718958,0.05855481,-0.29299963,0.040726803,-0.14372721,-0.18733703,1.037566,-0.19676854,0.31516054,-0.48605162,-0.45226058,-0.9446981,-0.3036233,0.47155535,0.060820658,-0.025466101,-0.7209531,-0.10955323,0.09200151,-0.20469585,0.045660544,-0.38852566,0.45649922,0.09223577,0.27923024,-0.03818306,-0.7620295,0.0197045,0.057788026,-0.39087293,-0.6834913,0.55568177,-0.023995828,0.8003351,0.096847944,0.10285403,0.27891913,-0.27124774,-0.056807652,-0.26958057,-0.2253346,-0.6146301,0.023188595,656 +255,0.4290002,0.060879357,-0.6088136,-0.16219707,-0.4040094,0.28322127,-0.36580944,0.015973942,0.12170868,-0.12315795,0.00064495404,-0.15100119,-0.13934453,0.12523134,-0.1539381,-0.6434662,-0.089058526,0.09321513,-0.57860404,0.5173633,-0.28631648,0.5463685,0.026410162,0.31927636,0.14194275,0.2968868,0.08204297,0.049351517,-0.11989972,-0.21459804,-0.14221893,-0.0013642868,-0.8265588,0.27413094,-0.25474605,-0.5038436,0.0058113574,-0.4835238,-0.30340636,-0.804801,0.41723114,-0.820531,0.6747228,-0.1452541,-0.2157465,0.1518576,0.10516901,0.34102446,-0.029143138,0.10423193,0.25270697,-0.34804848,0.19056985,-0.19445881,-0.445385,-0.41791758,-0.5063577,-0.08771232,-0.571962,-0.0985391,-0.31132418,0.25311488,-0.2551619,-0.02865488,-0.30859944,0.28501564,-0.46331802,0.25688753,0.2011879,-0.17692865,0.13577652,-0.41315317,-0.05051275,-0.04901378,0.14091831,0.0042277058,-0.03738087,0.46946633,0.12871727,0.4580983,0.08627799,-0.35964116,-0.21071061,-0.01636635,0.080334894,0.5352919,-0.074902676,-0.0030941823,-0.3097819,-0.090486735,0.3650505,0.40819538,-0.033399787,-0.31547448,0.10167485,-0.10615573,-0.0898622,0.34879074,0.5142769,-0.25761816,-0.17789707,0.39513725,0.37374052,0.21590348,-0.19245939,0.20627116,-0.058112014,-0.20869154,-0.27782768,0.2758628,0.008505523,0.47454646,0.039908525,0.22376157,0.6470034,-0.05400704,0.09799678,-0.17404133,-0.1390042,0.12166706,-0.21033175,-0.19884886,0.29025447,-0.6136577,0.31707063,-0.32307616,0.6660992,0.0635602,-0.7868197,0.46747124,-0.6731068,0.073121324,0.05874029,0.533627,0.7237274,0.34203503,0.124601625,0.8447618,-0.40505555,0.05793066,0.006351109,-0.23395279,-0.0089456,-0.04452495,0.28579348,-0.39422527,0.029208086,0.026175125,0.07087483,0.0099593615,0.15804654,-0.3070197,-0.16175617,-0.068779744,0.9104201,-0.38076273,0.14194942,0.77950203,1.0878596,1.0401891,0.039532725,1.0927178,0.4413841,-0.13955246,-0.23793112,-0.12069317,-0.55105424,0.06665746,0.27378252,-0.24373645,0.4240008,0.080029406,0.0562697,0.2199789,-0.33615786,0.002308023,0.0038962364,0.07894535,-0.028733563,0.019003788,-0.33860746,-0.35385895,0.26453012,0.040252943,0.032444704,0.21411654,-0.119520105,0.5204549,0.23075072,1.3717512,0.14221628,0.07059316,0.14342766,0.40984538,0.30223656,-0.22632709,-0.03051323,0.21114479,0.34757137,-0.16853254,-0.40531227,-0.07198849,-0.37868032,-0.37734511,-0.12579593,-0.24788044,-0.22017367,0.049287975,-0.32243344,-0.13407867,-0.033778332,-0.21192572,0.5102731,-2.5466573,-0.020154722,-0.10432343,0.31910762,-0.3104334,-0.339506,-0.28638417,-0.5147241,0.45810255,0.32618108,0.28363004,-0.4945933,0.25650698,0.31472194,-0.3475284,-0.09440635,-0.51998085,-0.01589806,0.055568818,0.33297953,-0.073391676,-0.10789003,-0.13182531,0.38342422,0.68403804,0.20899253,-0.033291332,0.24987626,0.4894431,0.011034416,0.46585813,0.04850816,0.42242166,-0.23621029,-0.04307606,0.37598294,-0.47426337,0.39190826,0.03574477,0.09014044,0.44022152,-0.49304008,-0.485771,-0.4996323,-0.42750898,1.0849993,-0.40626174,-0.5233732,0.056603335,0.018792009,-0.31716168,0.022082604,0.46650124,-0.071401134,-0.05830338,-0.49274316,-0.2427478,-0.22969007,0.25890133,-0.11870938,0.33483002,-0.34232038,0.68969864,-0.22141911,0.44805133,0.28914785,0.32690084,0.020900298,-0.52402467,0.17615369,0.7311982,0.55130655,0.083963946,-0.29653293,-0.029221041,-0.24083287,-0.25927913,0.17688115,0.6685868,0.7758329,-0.19736196,0.050461452,0.39056,-0.24091305,0.045597322,-0.2342041,-0.3482259,-0.06286865,-0.12327909,0.5147348,0.5520379,0.06298113,0.36102232,-0.12210253,0.24563815,-0.22482434,-0.53275806,0.3528652,0.80467,-0.16897002,-0.06566851,0.35353333,0.26307485,-0.29554385,0.46968782,-0.6304367,-0.21426617,0.7553987,-0.06234089,-0.5774832,0.13847485,-0.34211627,-0.04620951,-0.6791715,0.2947444,-0.10834742,-0.52608716,-0.37958574,-0.17389797,-2.6288233,0.13732879,-0.068715654,-0.11971932,-0.22719833,-0.26852134,0.2583925,-0.33469594,-0.58000016,0.083876595,-0.07780012,0.49194175,-0.113290526,0.21276046,-0.31753796,-0.18412203,-0.46144035,0.39053088,0.23169534,0.36632946,-0.22243427,-0.14183265,0.05475437,-0.2616906,-0.4705339,-0.113973975,-0.5312083,-0.47338298,-0.11498154,-0.3586488,-0.33417657,0.6842222,-0.44406065,0.054125335,-0.2531295,-0.18288173,-0.117755495,0.2320487,0.4174877,0.2697282,0.09440497,-0.04538668,0.0419638,-0.38094643,0.2949784,0.21512231,0.18694726,0.31353277,-0.15329923,0.1538041,0.20900747,0.5818072,0.029314915,0.68049395,0.0037733992,-0.14730236,0.44477683,-0.3958586,-0.33341405,-0.7842567,-0.27355662,-0.20307621,-0.35181898,-0.5034193,-0.38796183,-0.35691944,-0.7692112,0.2896064,0.029436048,0.27674815,-0.061480183,0.26253736,0.30435887,-0.16077703,0.032784637,-0.036472637,-0.120099045,-0.3292038,-0.46237713,-0.56512755,-0.599007,0.26249164,0.8450737,-0.027048282,-0.14441384,0.07184069,-0.23591249,0.3303657,0.06908312,0.21590203,0.13128264,0.43128645,-0.056443017,-0.610566,0.43365923,0.13205631,-0.22027816,-0.59016484,0.14097564,0.77745444,-0.58910525,0.45098087,0.2853926,0.089703746,-0.040763173,-0.6796294,-0.16592999,0.011243319,-0.38446045,0.4917335,0.11225626,-0.5202516,0.37436688,0.122866,-0.14298806,-0.69244564,0.5227799,0.06747859,-0.19062679,0.10315207,0.3915941,-0.050395343,-0.11595405,0.017230893,0.19462793,-0.58295757,0.3119732,0.31276074,0.0005677541,0.25735277,0.016279252,-0.22325398,-0.6217382,0.2194349,-0.44631827,-0.3852529,0.15534046,-0.032238007,0.0075543346,0.16952369,0.11756395,0.43426016,-0.26036376,0.16477603,-0.1229896,-0.1772087,0.44605675,0.38857403,0.37085298,-0.5369865,0.65094167,0.020103944,-0.02334513,0.14370689,0.18800904,0.41154402,0.1672441,0.20711635,-0.028590774,-0.04870313,-0.10032224,0.39062577,0.33070093,0.38256747,0.06735563,-0.13018718,0.25730836,0.1613643,0.08164097,0.050793096,-0.3009096,-0.06023591,-0.1041504,0.09385994,0.44795576,0.044904225,0.2971668,-0.16472428,0.027077658,0.19400224,0.069721855,-0.4081361,-0.97685486,0.2982008,0.22405703,0.7828447,0.3432236,0.0086830575,0.06769172,0.3521474,-0.31844813,0.09062205,0.37779045,0.17178987,-0.29086012,0.5527389,-0.4931259,0.48985526,-0.21379955,0.047954775,0.12070298,0.2759101,0.4976944,0.94742876,-0.22827773,-0.014293408,-0.13952312,-0.1256829,0.036998652,-0.117608555,0.23226343,-0.47893664,-0.42027628,0.6573338,0.2932947,0.30732533,-0.3789506,-0.06395517,-0.13129231,-0.21027909,0.11350867,0.05977336,-0.12024285,-0.047579683,-0.45224053,-0.3070939,0.5737651,-0.44484097,-0.17034331,0.10555269,-0.18270953,0.1961926,-0.13915405,0.1948411,0.08622788,-0.7819621,0.11260581,-0.4161857,-0.28181273,0.28242722,-0.2922118,0.22979209,0.16759533,-0.04737858,-0.1495747,0.12581335,0.271206,0.645356,-0.02703857,-0.23111923,-0.37893218,0.17921387,0.22393031,-0.35449925,0.025495926,-0.11191776,0.1450612,-0.6087852,0.3301902,-0.27077204,-0.113372244,0.0039070905,-0.11524908,-0.106514215,0.5509976,-0.20761754,-0.047478326,0.07158641,-0.0072588366,-0.3580944,-0.11235328,-0.36543268,0.09244076,0.2280129,-0.14660366,0.053746726,-0.1216111,-0.16543035,0.31380108,0.05101729,0.26446888,0.3079552,-0.15432315,-0.5259535,0.012649401,-0.16701724,0.30698434,0.21014592,0.118602104,-0.20602375,-0.24903034,-0.19281963,0.7217707,-0.26569876,0.05675864,0.01889392,-0.36582634,0.72472745,-0.022977997,0.97930336,0.10225118,-0.2784334,0.12187788,0.4927998,-0.02873327,0.014036208,-0.3905827,0.9520337,0.57629937,-0.13268067,-0.21945456,-0.09852167,-0.09224562,0.10424901,-0.3220947,-0.23399848,-0.05740637,-0.6339172,-0.2154462,0.108562425,0.23279817,-0.0016857306,-0.07643879,-0.12591152,0.2054077,0.1351438,0.5185886,-0.3135464,-0.109907664,0.4029392,0.027490314,0.012722512,0.17894958,-0.31387794,0.41243947,-0.6270121,0.20891355,-0.6090053,0.0005726218,0.012483048,-0.24241696,0.18855742,-0.014582853,0.31621817,-0.43357334,-0.29250857,-0.19191244,0.31432533,0.33613074,0.33387583,0.589384,-0.18379623,-0.08637169,0.051101282,0.449746,1.3621446,-0.12977757,-0.013374341,0.36636862,-0.46426705,-0.6063476,0.105282955,-0.32862917,0.043461885,-0.078866325,-0.36627942,-0.1838203,0.15468684,-0.0017737945,-0.09767472,-0.004357771,-0.77387327,-0.21398903,0.42161793,-0.19419597,-0.19779472,-0.40590099,0.28456607,0.814088,-0.08059489,-0.34869757,-0.0083478885,0.2386747,-0.35252276,-0.6644338,0.2659471,-0.2658448,0.34609595,-0.0034364401,-0.43751508,0.106965356,0.5222667,-0.5016956,0.008521343,0.24803871,-0.37028447,-0.14986187,-0.07208641,-0.0070768753,0.9236008,-0.21856557,-0.29271457,-0.5762945,-0.50183254,-0.99040705,-0.38697436,-0.10494309,0.4381099,0.100805424,-0.4701043,-0.15965743,-0.3938015,0.031385515,0.04067666,-0.412036,0.2861132,0.32524493,0.53700405,-0.22971855,-0.858081,0.18347412,0.09023578,-0.36716875,-0.55160224,0.5010252,-0.19919124,0.622965,0.11965987,0.0070933145,0.08110832,-0.643363,0.4121474,-0.3216574,-0.09951219,-0.73909307,0.16878785,663 +256,0.47269052,-0.22824039,-0.5679608,0.01104153,-0.25473133,0.038296256,-0.06878693,0.43270496,0.26868522,-0.18918008,-0.036463935,-0.034076516,-0.0010792792,0.4073604,-0.0648742,-0.6097501,-0.0036741237,0.28542358,-0.47066918,0.60649335,-0.31712478,0.31456974,-0.1814704,0.3138318,0.11559696,0.3589783,0.01870458,0.05705792,-0.003258451,-0.16858354,-0.13225129,0.13309714,-0.6709279,0.18544081,0.05436492,-0.37599462,-0.020536648,-0.37683198,-0.29389158,-0.6591125,0.12650494,-0.63115853,0.507044,-0.07407863,-0.1870456,0.26647606,0.01361535,0.43629816,-0.33348742,-0.055581234,0.07400623,-0.09066449,-0.1870971,-0.2581993,-0.12220856,-0.35635427,-0.58832645,-0.108487435,-0.34193856,-0.07254211,-0.2818496,0.045381553,-0.31458786,0.092718534,-0.083311245,0.18177894,-0.3874424,0.21802491,0.17871097,-0.060246382,0.06015314,-0.47012964,-0.07092619,-0.18629417,0.17929484,-0.12027338,-0.36920163,0.39243242,0.26906237,0.49927595,0.029805478,-0.2521033,-0.39772588,-0.082244106,-0.0084773265,0.540683,-0.13953158,-0.46963245,-0.12089243,0.053208694,0.1677383,0.15550655,-0.012307016,-0.3087106,-0.15933016,0.012930874,-0.16822211,0.17190455,0.45636144,-0.41267362,-0.36825868,0.45724094,0.57960683,0.0881057,-0.092592806,-0.06548499,0.009154649,-0.49860427,-0.14325161,0.0024545987,-0.16083482,0.4205708,-0.069299415,0.093929626,0.5946573,-0.28780687,-0.23522146,0.09337139,0.09700453,-0.2565714,-0.35472524,-0.16915265,0.25643045,-0.50935024,0.24474011,-0.09094749,0.73190427,0.27509862,-0.70951056,0.31526738,-0.577029,0.15748002,-0.043832365,0.400681,0.83799875,0.47765478,0.27478126,0.74235535,-0.42626646,0.2439157,-0.19838342,-0.36102235,0.1465326,-0.20699936,-0.16091026,-0.5583725,0.15208575,0.032670386,-0.21133855,0.20407389,0.29876888,-0.6120946,-0.1663391,0.09785677,0.6009268,-0.2623895,-0.18993117,0.82130265,0.91363066,0.99249876,0.13843912,1.3011981,0.26972187,-0.17027394,0.27575725,-0.27664128,-0.80197704,0.08012246,0.24835603,-0.15923484,0.25288385,0.19817807,0.038274314,0.40233308,-0.29832298,-0.11055115,-0.12364704,0.46179307,0.13606621,-0.08061008,-0.30251133,-0.3254081,-0.04862457,0.11383863,0.029816087,0.3955895,-0.21465947,0.39492786,0.24324268,1.9157016,0.066184714,0.06888259,0.0404909,0.40271005,0.28497902,-0.17947906,-0.19221902,0.39777952,0.33065385,0.15780273,-0.56272984,0.044309914,-0.2873176,-0.4566854,-0.09254303,-0.20771742,-0.07595405,-0.05287889,-0.2868101,-0.27771506,-0.10857229,-0.12541704,0.68382484,-2.6268773,-0.059192088,-0.103896335,0.26848856,-0.20345125,-0.45597294,-0.1710054,-0.5150437,0.36479396,0.22120282,0.45244732,-0.7450556,0.15159419,0.17200771,-0.636403,-0.075060695,-0.55947345,0.067004286,0.007897596,0.37054473,-0.007835722,-0.07578955,-0.02274508,0.08579907,0.50672716,-0.046288777,-0.010219868,0.4059106,0.24988864,0.053392433,0.46445316,0.023301125,0.61822456,-0.2011807,-0.22320619,0.17549734,-0.26635063,0.34645066,-0.075402394,0.12019822,0.3796153,-0.40819576,-0.9893996,-0.6859252,-0.012459334,1.11318,-0.27928188,-0.27320537,0.16106988,-0.426461,-0.23246793,-0.10238234,0.27496508,-0.1620331,-0.23137777,-0.6460475,0.14393112,-0.011363459,0.16900772,0.021478632,-0.07176404,-0.31701103,0.6237241,-0.10079037,0.5018843,0.38903323,0.1540242,-0.24718456,-0.4093118,-0.0226846,0.9441766,0.36012107,0.113185085,-0.22641774,-0.18618873,-0.34390953,-0.16453688,0.16832104,0.49815932,0.6140714,-0.15984634,0.074234344,0.29007912,-0.038476784,-0.00585227,-0.053653732,-0.18692422,-0.12131341,-0.06553787,0.49123377,0.77430266,-0.20360085,0.5424491,-0.07208611,0.15113202,-0.014199084,-0.5632919,0.48414117,1.0233731,-0.27281886,-0.32503644,0.5366055,0.2666021,-0.13842262,0.39803436,-0.45394155,-0.20004924,0.4083328,-0.13222943,-0.15458076,0.25752622,-0.22600065,0.13165437,-0.7234783,0.28789806,-0.13872832,-0.52312833,-0.4249764,-0.043665536,-3.340913,0.24954563,-0.15767124,-0.1301674,-0.008833925,-0.1600543,0.11786986,-0.7079693,-0.516783,0.22470036,0.16449365,0.7008446,-0.10068997,0.10596313,-0.18218152,-0.38995135,-0.40743876,0.17434934,0.091585845,0.32517204,-0.038475353,-0.4289191,-0.12920696,-0.03935292,-0.4884714,0.08691471,-0.5993641,-0.35550973,-0.14784926,-0.6034388,-0.3479478,0.6760632,-0.36952278,0.04596261,-0.16260107,0.008185331,-0.13612798,0.2114922,0.040100645,-0.060541395,0.037225507,0.011818016,0.16221146,-0.3168258,0.23409702,0.008200661,0.30155268,0.24610633,-0.13893393,0.25163776,0.5542017,0.7661438,-0.06691597,0.8515121,0.59315914,-0.22575952,0.20180772,-0.2131777,-0.18933201,-0.51395154,-0.42883292,-0.27471927,-0.50671893,-0.26234713,-0.048231263,-0.3473095,-0.724903,0.5918144,0.0659373,0.094725356,-0.06116195,0.3170304,0.6563497,-0.28763884,0.057153285,-0.09352746,-0.21452062,-0.47854328,-0.30503985,-0.41981235,-0.37601635,0.29098588,1.1647003,-0.29081127,0.07624544,0.00805815,-0.19930668,0.039756205,0.15262744,-0.050063808,0.28572443,0.40579593,-0.11796183,-0.52940404,0.43840915,-0.21567973,-0.098867856,-0.70191205,0.31333888,0.43791047,-0.6026276,0.39711592,0.123086885,0.058216497,0.035977606,-0.47655323,-0.0701536,-0.031990457,-0.2534217,0.17752567,0.2782227,-0.8113916,0.47457275,0.33006394,-0.3041565,-0.6397961,0.34512085,0.019818107,-0.13695529,-0.16270615,0.30617124,0.25895256,-0.024675969,-0.25144187,0.12744027,-0.5209132,0.14356853,0.15253353,-0.1591306,0.0547245,-0.15199055,-0.09335966,-0.7562763,-0.020872978,-0.37214914,-0.25459972,0.18562569,0.033570867,0.12086606,0.054079466,0.12267784,0.28365618,-0.40929472,-0.009707288,-0.09463553,-0.28123915,0.39440262,0.39774838,0.42459282,-0.327045,0.5434278,0.040969722,-0.03433196,-0.0230212,-0.015791623,0.4343936,0.09392568,0.35870406,0.11010479,-0.32658064,0.103498474,0.60156083,0.115614876,0.2792118,-0.14041536,-0.20346247,0.06395561,0.21934494,0.20302372,0.22640347,-0.49180794,0.18661591,-0.052844547,0.17091316,0.57563585,0.30745375,0.27989423,-0.09938874,-0.3424838,-0.014613295,0.03568204,0.016904572,-1.4462178,0.4296816,0.11752389,0.62923753,0.4835148,0.07076706,-0.03496055,0.50370425,-0.18988873,0.14569794,0.25336698,-0.08589457,-0.28825948,0.40343916,-0.84733546,0.625379,0.048925325,0.107182674,0.18477133,0.059005324,0.34115276,0.96351105,-0.18480119,0.0030530235,-0.118484996,-0.16505343,-0.008981645,-0.21610473,-0.030078253,-0.58116686,-0.28987953,0.76120603,0.3699114,0.5150783,-0.13912776,0.042904284,0.03526454,-0.08027964,0.09504672,0.040179577,0.18094246,0.02392605,-0.48123428,-0.1578446,0.5241911,-0.21933344,0.2189046,-0.010307407,-0.25407878,0.25135177,-0.14622012,-0.09453098,-0.100545436,-0.60353535,0.082262844,-0.18355204,-0.31887168,0.5156355,-0.106493786,0.23996799,0.12187203,0.10836136,-0.23262383,0.53632516,0.13064648,0.8657166,-0.14696135,-0.15643898,-0.33301857,0.32402596,0.18196945,-0.10854898,0.061919946,-0.18328924,0.041625056,-0.7428884,0.29892334,-0.0080504,-0.33759987,0.026864307,-0.032140113,0.13038266,0.47434852,-0.15907107,-0.20728295,-0.07787654,-0.16414236,-0.22113441,-0.3395612,-0.1937071,0.19440009,0.15044785,-0.12223689,0.005583076,-0.16748434,-0.149098,0.2863625,-0.015134039,0.25991142,0.17121716,0.13887967,-0.24282546,-0.15136978,0.14606307,0.4244814,-0.20194696,-0.19084325,-0.35853344,-0.44554564,-0.4608773,-0.07218776,-0.060253564,0.4569277,0.0693895,-0.21742012,0.6486521,-0.14529648,1.2388898,0.06107042,-0.34597892,0.034527924,0.5917868,0.0031830608,-0.02097209,-0.22389501,0.9244394,0.5061362,-0.087017074,-0.16315457,-0.3435776,-0.18447113,0.31221274,-0.20729613,-0.051268164,0.12967077,-0.41510406,-0.35914257,0.23869543,0.16171685,0.26028454,-0.11290305,0.035410874,0.27998176,0.05850909,0.32289535,-0.36429104,-0.07964139,0.21982482,0.34745753,0.045958392,0.23614828,-0.5134162,0.35350686,-0.4552478,0.11985205,-0.187218,0.26261264,-0.15129648,-0.21868873,0.17736252,0.057369538,0.3151921,-0.3577382,-0.42422915,-0.3290058,0.5641951,0.06627091,0.09390498,0.714438,-0.27847973,-0.019069765,-0.04315224,0.36666882,0.8042182,-0.2887341,-0.08277931,0.44969302,-0.28437895,-0.45751816,0.32925892,-0.1455535,0.1842341,-0.014656766,-0.135163,-0.61072236,0.24018942,0.16659169,0.25142977,0.10895918,-0.6542269,-0.06552117,0.14460969,-0.29278955,-0.14229351,-0.29734373,0.31141287,0.8562523,-0.31586686,-0.4552309,0.24213082,0.109365895,-0.044150844,-0.46682194,-0.20373257,-0.36672604,0.28809866,0.14992762,-0.37531674,-0.2565233,0.17610492,-0.4555108,-0.07930057,0.00519768,-0.27747548,0.20956783,-0.33802578,0.07460002,0.8779185,-0.29340187,0.39376706,-0.6102035,-0.42261544,-0.76769865,-0.42770398,0.38884857,0.2317815,0.005668199,-0.6728313,-0.02954746,-0.03360861,-0.2576497,-0.1204459,-0.3387678,0.52024543,0.1344643,0.13586353,-0.044869944,-1.0381173,0.15123558,0.029630836,-0.05436116,-0.5216558,0.45278436,-0.06586985,0.77176934,0.10941192,0.04808288,0.39558786,-0.49197966,0.08033741,-0.2657732,-0.07446591,-0.734165,0.038720965,665 +257,0.4649627,-0.14424019,-0.25574306,-0.19279346,-0.065725416,0.18122222,-0.2668769,0.25321755,-0.036386646,-0.7151142,-0.041864205,-0.13781068,-0.14317635,0.26783144,-0.29609507,-0.59104276,0.10097025,-0.045217913,-0.42627743,0.3854821,-0.5281813,0.30421117,0.017417066,0.2263483,-0.04743313,0.24251582,0.32936102,-0.1825977,-0.09523523,-0.31704083,-0.013117338,-0.064669736,-0.69609743,0.29137945,-0.18529285,-0.095159486,0.15729895,-0.26685682,-0.39791265,-0.75667036,0.1283816,-0.8272438,0.57874554,-0.01122247,-0.24123478,0.27892196,0.18819669,0.22264093,-0.056279443,0.16841434,0.25577423,-0.20012568,-0.08716108,-0.14524387,-0.19208299,-0.569501,-0.4890656,0.043091904,-0.5463828,-0.18906316,-0.2847411,0.1601159,-0.19401836,-0.053481363,-0.15198961,0.23888204,-0.38681647,-0.2852856,0.06712677,-0.053878743,0.5697245,-0.5508265,-0.17230506,-0.035043094,0.23258524,-0.23147479,0.011514981,0.33309624,0.23219971,0.6119149,0.036883626,-0.21552975,-0.105095714,-0.03914128,0.29003412,0.5359907,-0.12960164,-0.41808748,-0.15321355,-0.06656252,0.31924435,0.24797407,0.054389365,-0.2812173,-0.033617888,0.10502488,-0.24764125,0.3095419,0.49642518,-0.33810297,-0.18280992,0.3032878,0.4653753,0.094425045,0.04855164,0.12525222,-0.11892463,-0.39191768,-0.20281631,0.33303195,-0.23685022,0.48693216,-0.16588996,0.08833159,0.6324159,-0.16493997,0.16426642,0.04957718,-0.14481966,-0.017471392,0.0051325005,-0.31373823,0.25553703,-0.6174141,-0.01962661,-0.36528063,0.6595953,0.15630269,-0.86024296,0.33078164,-0.31193706,0.019074548,-0.02306795,0.54726195,0.5141691,0.52475965,0.021868484,0.6418123,-0.628532,0.04759663,-0.039789166,-0.26314667,0.31888375,-0.114737555,-0.09376058,-0.42522082,-0.13117878,0.12749588,-0.053455185,-0.32267913,0.37547177,-0.432599,0.04460164,0.18754801,0.76823515,-0.29871145,0.11318286,0.49159113,1.145695,0.88468176,0.18025216,1.4033867,0.18506432,-0.04185612,-0.0758856,-0.09853532,-0.5343253,0.31922206,0.49182194,0.04052113,0.2665242,0.07815136,-0.016210798,0.29211435,-0.46350718,0.027551524,-0.17800286,0.47437117,-0.18974775,-0.19104144,-0.3538293,-0.1339715,0.066762276,-0.05782569,0.051012915,0.118738666,-0.12434735,0.26217613,0.34386343,1.112286,-0.13839151,0.08727031,0.044197142,0.45861593,0.17342472,0.03896831,-0.023718016,0.11334219,0.32041678,0.14912865,-0.47745374,-0.10578234,-0.13451792,-0.5176428,-0.2571871,-0.22279303,0.10260472,-0.19926304,-0.3752077,-0.19833408,0.097279355,-0.47959492,0.61203617,-2.5302238,-0.07966073,-0.2051842,0.3362706,-0.26703793,-0.3554366,-0.09930303,-0.29909566,0.7443642,0.35165003,0.29991224,-0.60192937,0.31397775,0.5149652,-0.3589669,-0.13483588,-0.62801427,-0.2240295,-0.12850122,0.2751405,0.20417304,-0.24040836,-0.027053293,0.3533239,0.45113793,-0.017818226,0.2372516,0.06301982,0.24994276,0.12959051,0.5375132,0.13211018,0.37882206,-0.12189903,-0.11078999,0.35835633,-0.33238176,0.17581314,-0.15009445,0.2461276,0.23125155,-0.34203035,-0.6914409,-0.7483648,-0.7464342,1.2454839,-0.11111555,-0.48091182,0.24435069,0.3582013,-0.36284712,0.014341005,0.16357447,-0.21818368,0.29234546,-0.83993685,-0.10911266,-0.0792461,0.29679716,0.017807515,0.18829006,-0.6982037,0.8250196,-0.19429229,0.30394623,0.35663348,0.2535269,-0.26331937,-0.49197495,-0.027745781,1.0877397,0.5694672,0.09058328,-0.074562915,-0.20386797,-0.2192783,-0.12367658,0.13435854,0.49600163,0.86319906,0.06817875,-0.009133068,0.15117815,-0.16881807,0.084400795,0.037370212,-0.49253097,-0.020751726,0.043136034,0.7195106,0.38005018,-0.026888061,0.24739692,-0.26918513,0.47175634,-0.34159136,-0.33212483,0.39845422,0.8922218,-0.055456802,-0.1255198,0.5642052,0.50862896,-0.07857503,0.4996667,-0.8211145,-0.47357798,0.46097654,-0.09260397,-0.53516835,0.10901858,-0.4478099,0.19071595,-1.0302285,0.6354714,-0.4693903,-0.48879787,-0.61669475,-0.2578694,-3.5280344,0.041628923,-0.13436057,-0.16258882,-0.1074427,-0.11161261,0.4451018,-0.5513131,-0.55820554,0.07868358,-0.124301985,0.566307,0.08696244,-0.027328348,-0.2690128,-0.24018316,-0.39629346,0.29968372,0.1345347,0.15950125,-0.017757716,-0.30028203,0.05154192,-0.24745026,-0.35810485,0.049952473,-0.47585753,-0.603678,-0.31004646,-0.3474323,-0.36919078,0.6668781,-0.51768744,-0.04662814,-0.2780428,-0.08026687,-0.1756913,0.44909582,0.20349385,0.22573577,0.02894926,-0.098829255,-0.11933194,-0.31248277,0.2809691,0.28165254,0.20850739,0.588355,-0.42345726,-0.011977946,0.52852136,0.56134677,-0.16374734,0.7549379,0.2675356,-0.21814175,0.35378945,-0.39895618,-0.33144596,-0.65848696,-0.44453964,0.000459522,-0.28330448,-0.38531414,-0.2071466,-0.35982195,-0.5592242,0.3878668,-0.077930085,0.1201288,-0.22804348,0.09420769,0.15283845,-0.1199627,-0.14873974,-0.22397813,-0.12625399,-0.40128735,-0.45902947,-0.6821793,-0.49838716,-0.07800952,0.94191974,0.030974708,-0.052430373,0.13344349,-0.054341864,0.27625197,-0.07094897,-0.008442541,-0.03856223,0.33740103,0.117588736,-0.80340856,0.5446081,0.098671265,-0.14436838,-0.6312452,0.072583295,0.7964079,-0.5766506,0.49556363,0.52537656,0.2797666,0.017320672,-0.62136936,-0.19795412,-0.05005571,-0.23115996,0.52178603,-0.0063985665,-0.66348964,0.584026,0.30359226,-0.24473748,-0.61872864,0.52920234,0.16664305,0.008313139,0.17201376,0.42574462,-0.15976349,0.15844259,-0.16456701,0.35421354,-0.55133057,0.30599728,0.5347469,0.17475878,0.48711535,-0.11329909,-0.101583034,-0.65352225,-0.14036521,-0.36003432,-0.2461637,0.033699498,-0.07461694,-0.14447239,0.24455729,0.13017064,0.5124061,-0.37881812,0.2238722,0.040235937,-0.18688576,0.33736488,0.5229272,0.43741494,-0.23840077,0.52071404,0.052155767,0.006414843,-0.40289542,-0.075134024,0.59207404,0.20900351,0.028895969,-0.016705235,-0.029505014,0.25933975,0.7981721,0.225595,0.49709672,0.20276783,-0.23368083,0.2800799,0.10967987,0.2262142,0.14045042,-0.4138924,-0.031249285,0.09529763,0.01910888,0.3559604,0.052962855,0.2517094,-0.15679057,-0.08320268,-0.037942667,0.25042737,-0.17437837,-1.2601397,0.27222475,0.090425104,0.58918995,0.5566126,0.020520309,0.25582737,0.5747213,-0.29946336,0.004523017,0.17158382,0.13928379,-0.47568384,0.5713944,-0.7047082,0.1463442,0.028545309,0.030355254,-0.073878236,-0.05490638,0.3951298,0.92698413,-0.12412433,0.20018095,-0.21966822,-0.13507317,0.2291728,-0.40987903,0.26038292,-0.08503728,-0.32562825,0.69479,0.34709322,0.37605414,-0.18816496,-0.052167878,-0.017555548,-0.24512811,0.4279761,-0.030059163,0.065652154,-0.10891635,-0.49953744,-0.2584443,0.55278534,0.2354215,0.048739847,0.17044087,-0.24426048,0.12459438,-0.07254051,0.04036902,0.0585796,-0.6552284,-0.09894629,-0.36815608,-0.11854222,0.30840072,-0.34163418,0.22474185,0.12156944,0.016431984,-0.048110053,-0.06606674,0.2757206,0.5537519,0.05685216,-0.29244167,-0.31593296,0.027407646,0.136651,-0.3001765,-0.0057157637,-0.11747643,0.07871817,-0.64040637,0.28942338,-0.17641382,-0.25196096,0.29285082,-0.22787406,-0.110826895,0.46496072,-0.25698367,-0.19526409,0.28212148,0.10329983,-0.099079214,-0.22383802,-0.13838777,0.14884433,0.04556621,0.053773895,-0.033058524,-0.097487584,-0.179906,0.28957322,0.3018751,0.32225507,0.43129045,0.017609786,-0.55282694,-0.018661553,-0.12983966,0.40287367,0.095439635,0.13148984,-0.18378903,-0.5651054,-0.22548793,0.08197553,-0.16697706,0.019595511,0.035937462,-0.2969361,0.7012299,-0.04569117,1.1324977,0.10155045,-0.351666,-0.033359934,0.5997686,-0.2097854,0.07564224,-0.43785447,0.9362001,0.5775959,-0.07485842,-0.07830074,-0.3978346,-0.17674579,0.18411891,-0.24648166,-0.12630521,-0.17321748,-0.73063976,-0.45356998,0.28073385,0.35368901,-0.18866633,-0.06551294,-0.13064757,0.29587686,0.18040167,0.57267416,-0.56775975,-0.05651772,0.44953212,0.14270899,0.08211745,0.13459876,-0.38232443,0.34173617,-0.602814,0.012782192,-0.3147791,0.020584222,-0.12694108,-0.37780446,0.270541,-0.013655281,0.36237112,-0.24771783,-0.4226481,0.04229511,0.5937184,0.017652897,0.19843467,0.67116207,-0.10766955,0.1388352,0.082432814,0.36787796,1.2630498,-0.25322905,0.058603603,0.37186086,-0.39033574,-0.54224366,0.15813152,-0.4912628,0.12645142,-0.18525761,-0.55991733,-0.36058342,0.24540864,0.120830104,0.004619167,0.0014853278,-0.5428472,-0.20835829,0.44125786,-0.31944245,-0.2789856,-0.20030124,0.16238222,0.58902514,-0.3873711,-0.2461618,-0.04520176,0.34533313,-0.49017048,-0.6415783,-0.05080839,-0.14923069,0.38297608,0.23923911,-0.29272652,0.07678752,0.1249466,-0.3450819,0.15355307,0.3073212,-0.40386805,-0.06854298,-0.2550248,0.13826014,0.5430645,-0.1145661,-0.1757277,-0.66326725,-0.4528399,-0.908785,-0.21949962,0.3391856,0.24192613,-0.041614167,-0.48899034,-0.0044507016,-0.31086364,0.18139632,0.07150894,-0.33254057,0.2770704,0.14843103,0.5663688,-0.16906661,-0.5924099,0.10957824,0.14186579,0.020769298,-0.5050946,0.5873665,-0.13553332,0.6723849,0.105190806,0.022994395,-0.032006975,-0.74646604,0.27931362,-0.12812008,-0.057583846,-0.7869147,0.17000024,667 +258,0.32282168,0.108474165,-0.54485226,-0.0934892,-0.33070508,0.2910417,-0.09881132,0.3979107,0.040471133,-0.36293423,-0.14521484,0.0013975183,-0.061587743,0.21683568,-0.29382852,-0.66457206,0.02754519,0.100612305,-0.38289502,0.6234613,-0.22867736,0.37806046,-0.15968649,0.32307,0.050633755,0.26718,0.041903015,-0.08254631,-0.23238163,-0.37896717,-0.030589644,0.4801157,-0.5404757,0.26388136,-0.27416342,-0.29190394,0.06780182,-0.16587988,-0.29538605,-0.6121867,0.14573464,-0.69727963,0.4657318,0.013593872,-0.32124764,0.39322928,0.24899785,0.25823665,-0.114219524,-0.18299443,0.09020432,-0.13552436,-0.1394349,-0.117497,-0.3081597,-0.6544,-0.49148378,0.013289111,-0.6953995,-0.12136351,-0.34546646,0.18660246,-0.2814791,-0.23444726,-0.05123951,0.31688443,-0.42655212,0.099300414,0.10041436,-0.06742149,0.014879113,-0.59435403,-0.25043735,-0.02033062,0.3072629,-0.14274889,0.0023160523,0.39527148,0.21167092,0.26753533,-0.097410046,-0.18394502,-0.3166128,-0.23100267,0.28919566,0.42011076,-0.25358135,-0.5452276,-0.11854239,0.003862071,0.3354009,0.08372211,0.1850281,0.071897425,-0.1069824,-0.12815683,-0.24198292,0.49512473,0.47821978,-0.27084717,-0.13980049,0.41402608,0.41432172,0.32886487,-0.3292559,-0.015215083,-0.12896243,-0.34618908,-0.086941704,0.08512562,-0.18269888,0.42248756,-0.14791963,0.11830533,0.58201027,-0.15413791,0.17388102,0.34059444,0.07113203,0.05935324,-0.10054054,-0.13341513,0.20179921,-0.45441234,0.089804046,-0.1581563,0.67146707,0.040902145,-0.6460806,0.37053508,-0.46280512,0.042348266,0.013196787,0.48530683,0.53890324,0.4201165,0.15921356,0.5167259,-0.1584617,0.07015799,0.07451042,-0.18733619,0.08498099,-0.24628887,-0.12295297,-0.59141374,0.10303561,0.06605264,0.005872764,0.08054771,0.29017815,-0.6017794,-0.18330842,0.33812103,0.87381285,-0.26904842,-0.22691904,0.6885716,1.2127756,0.81244785,-0.09706949,0.9457653,0.034769274,-0.15185013,-0.111396566,-0.24657494,-0.50878537,0.21781786,0.278284,-0.3093437,0.41777536,0.10013746,-0.050287113,0.26721665,-0.36996529,-0.050622594,-0.11474905,0.15838291,0.087468654,-0.13596572,-0.3811804,-0.12137135,0.067316815,-0.18859625,0.27464804,0.37371552,-0.12318801,0.46044046,0.111515015,1.0184022,0.02003903,0.015853997,0.031794123,0.5570357,0.23682234,0.035393763,0.09431769,0.43157122,0.2868419,0.0825973,-0.34878966,0.1991703,-0.32312626,-0.46255314,-0.097253315,-0.43072417,-0.31744924,0.0013684749,-0.28715807,-0.146116,-0.06773005,-0.11681732,0.48047486,-2.9712784,-0.054872133,-0.16177578,0.18117975,-0.17765903,-0.21481194,-0.107134014,-0.39350414,0.4169315,0.19933671,0.43110648,-0.45363697,0.4680945,0.51038384,-0.56474817,-0.12404572,-0.4828092,-0.21707802,0.032510586,0.5940843,0.05382734,0.04431146,0.15963934,0.14752193,0.35674942,0.0014484386,0.22848566,0.20572893,0.39204535,-0.12816413,0.3321663,0.1315084,0.55886775,-0.15340878,-0.12039966,0.196231,-0.4033988,0.571822,-0.27533028,0.14374845,0.43620464,-0.21973476,-0.87284905,-0.46730775,-0.18086027,1.2173538,-0.19500937,-0.47103876,0.012580617,-0.14873947,-0.22787127,-0.17409293,0.28031817,-0.035892416,0.0016931216,-0.71160924,0.057707336,-0.14900179,0.14977413,-0.06462434,0.03463949,-0.37686148,0.5889405,-0.033247408,0.34551278,0.11817579,0.22460026,-0.277564,-0.37689802,-0.098219365,0.82249886,0.52365667,0.055011995,-0.2378436,-0.2766574,-0.23727447,-0.078040965,0.05516185,0.6966893,0.41033,0.003248759,0.013541034,0.27904892,-0.060268793,0.14891905,-0.19698845,-0.30706748,-0.10832148,-0.013803627,0.515725,0.50920224,-0.23807886,0.5618993,-0.045438286,0.30352753,-0.17677085,-0.38037783,0.45985258,0.90552074,-0.12468453,-0.20926319,0.6270889,0.56605786,-0.27024323,0.3703066,-0.6121134,-0.4189094,0.69249207,-0.14916427,-0.36980656,0.2158342,-0.25553194,0.0476325,-0.8876886,0.41188267,-0.42609066,-0.53316426,-0.5799014,-0.0831803,-2.6425896,0.07372572,-0.24036461,0.0052558375,-0.32473907,-0.12191305,0.14585875,-0.5970501,-0.53458875,0.11505285,0.17193203,0.5678722,-0.216763,0.16102369,-0.18191151,-0.47459304,-0.19461554,0.3496873,0.14121976,0.30357963,-0.27661622,-0.40051118,-0.049540076,-0.17950727,-0.24175905,0.024557492,-0.49542814,-0.4538741,-0.0034240887,-0.37279186,0.07111192,0.70997316,-0.44834214,-0.08931887,-0.25866416,0.19161744,-0.0108864205,0.06708256,0.117790684,0.13700776,-0.04110245,-0.057204295,0.22052614,-0.29093304,0.41025174,0.09464538,0.5596024,0.41780165,-0.007268536,0.1589485,0.60758364,0.42368242,0.013794208,0.7891607,0.19932102,-0.21319045,0.44760615,-0.24814537,-0.33578598,-0.6610983,-0.27641466,0.0102031315,-0.30264938,-0.5072228,-0.114443555,-0.3851659,-0.7634642,0.51802707,-0.0013631076,0.12918977,-0.31110284,0.4066135,0.4786038,-0.086531825,-0.020784238,0.029813528,-0.10707534,-0.3771387,-0.28964993,-0.6285306,-0.25392944,-0.058747362,0.8001849,-0.32658926,-0.029616702,0.084519535,-0.21255408,-0.00016220212,0.1440591,0.23426558,-0.04501039,0.40625885,-0.00064970256,-0.64251876,0.545921,-0.25093284,-0.099367514,-0.48104948,0.0901025,0.5808199,-0.6580051,0.4291343,0.5810612,-0.0020472289,-0.07715461,-0.5073511,0.0367255,-0.11253546,-0.07118395,0.28234985,0.15982819,-0.69346035,0.4726492,0.17585628,-0.2919526,-0.5637458,0.6727837,-0.099208914,-0.14409202,-0.021830281,0.33463976,0.1644697,-0.06133263,-0.13182563,0.28103384,-0.3685016,0.2355542,0.20374122,-0.09444893,0.30930945,-0.106676914,-0.19733284,-0.74081063,0.09035245,-0.48942634,-0.4126339,0.28019303,0.044179853,0.022325043,0.18195404,0.08636184,0.3109275,-0.4366017,0.13211766,-0.015930805,-0.25053912,0.42194924,0.417359,0.58785313,-0.43564478,0.5337731,0.1639298,-0.03658596,0.22632653,0.236849,0.45455125,-0.014206942,0.4302135,0.22485924,-0.09839131,0.14501095,0.8294596,0.22833599,0.48111248,0.06974947,-0.17079201,0.21110773,-0.12595479,0.15323453,-0.025564544,-0.49920905,-0.1194218,-0.17449076,0.09598883,0.44060785,0.1229554,0.25917688,-0.015110815,-0.19040324,0.028831655,0.23374073,0.1679745,-1.1947474,0.40815285,0.2686342,0.7735558,0.23448,0.18950893,0.1447783,0.61610454,-0.25198388,-0.01234924,0.4106642,0.14821647,-0.40156573,0.55110127,-0.58957255,0.53200525,0.015962517,0.03989807,0.09081988,-0.16071059,0.33393624,0.953818,-0.306079,-0.015325018,0.092536,-0.39052826,0.06751089,-0.2754864,0.22524881,-0.32830694,-0.11438746,0.61718684,0.46453685,0.26681396,-0.1726266,0.06222099,0.145047,-0.10606457,0.27477992,0.026248941,0.16475934,-0.23620237,-0.4679259,-0.212864,0.58143216,-0.16156048,0.11652961,0.09592186,-0.23183292,0.3161355,-0.05637263,0.08127256,-0.0343043,-0.52433974,0.06929403,-0.23823072,-0.6332291,0.54345477,-0.19970451,0.2954989,0.17790708,0.012924107,-0.21104339,0.2746253,0.081383355,0.43812725,-0.033594802,-0.2270691,-0.3022499,-0.070321865,0.08913716,-0.21860217,-0.13212228,-0.18353195,0.31930718,-0.41734186,0.31464294,-0.35291258,-0.2898692,-0.33779982,-0.23981507,-0.006575678,0.35681438,0.061426003,-0.06642036,-0.05454973,-0.03122689,-0.20250443,-0.085590534,-0.1390503,0.21761574,0.21571915,-0.1669946,-0.24489127,-0.25385374,-0.10356067,0.20773314,-0.17400257,0.30057663,0.43185717,0.057600737,-0.42821473,-0.10966582,0.17144705,0.46225947,-0.14904281,0.057508014,-0.15639304,-0.32986137,-0.36555448,0.43075627,-0.17456418,0.19676328,0.24933057,-0.25645834,0.76569974,-0.16353913,1.07732,-0.038257916,-0.3678365,0.15385096,0.60073245,0.026435941,0.062710285,-0.26513553,1.0179361,0.45402405,-0.044664316,-0.1305106,-0.4866981,0.11203162,0.06855282,-0.21486136,-0.22963889,-0.0121485405,-0.50860643,-0.16559677,0.2625829,0.26111534,0.21627945,-0.11149402,0.013855829,0.076600745,0.18503074,0.31277493,-0.7184637,-0.30206698,0.36835,0.16769746,-0.14463663,0.048657212,-0.49529627,0.38449237,-0.5839213,0.059207097,-0.24614629,-0.023852384,-0.33696058,-0.32092437,0.17810918,-0.09496787,0.32388645,-0.39510432,-0.37320688,-0.18653244,0.24307282,0.15611893,0.13363428,0.44908416,-0.25086373,0.08760038,0.07393177,0.53232163,0.91569626,-0.16540848,-0.23888272,0.22265793,-0.40542543,-0.5405191,0.0030404688,-0.6555421,0.2949485,-0.13380317,-0.28581557,-0.56402355,0.24242176,0.13422857,0.031193098,0.06352346,-0.647523,-0.21201095,0.025108445,-0.373935,-0.24171498,-0.18950352,-0.05035226,0.695172,-0.28837928,-0.25392294,-0.10246798,0.28513038,-0.13405564,-0.6022963,0.097832195,-0.22399664,0.3692028,0.06780192,-0.3758252,-0.10995126,0.09653353,-0.34065017,0.33715293,0.5065319,-0.3018593,-0.02494781,-0.2622008,0.25767183,0.5895464,-0.21119958,0.16583541,-0.3934638,-0.48653373,-0.7953247,-0.42159298,0.1270837,0.2996783,-0.10828666,-0.65385145,0.037963066,-0.11621799,-0.16859147,-0.05659007,-0.479377,0.40293732,0.15049578,0.26183698,-0.1322694,-0.923482,0.14085229,-0.024466125,-0.08652816,-0.4927946,0.5360991,-0.27968127,0.98354214,0.07491244,0.046505746,0.089290716,-0.49266136,0.0753501,-0.19146945,-0.06670467,-0.541611,0.11642969,668 +259,0.56410116,-0.016412174,-0.5153356,-0.23932125,-0.46093136,0.018931214,-0.18543069,0.3739763,0.14326724,-0.42415148,-0.17499821,-0.08181775,0.10084657,0.20518659,-0.26644853,-0.8145761,0.20896451,0.29494604,-0.58781093,0.49940795,-0.4216362,0.37312093,0.10141768,0.24976285,0.122886024,0.16018006,0.039509527,-0.20534904,0.08032009,-0.21435684,-0.13508354,0.21020895,-0.5425693,0.25514036,-0.07495508,-0.39332718,0.08001146,-0.42528403,-0.34482422,-0.8015016,0.3095787,-0.6873095,0.38951188,-0.029156184,-0.31482288,0.06312888,0.13122818,0.3792303,-0.16188233,-0.05294822,0.16999766,0.037041284,-0.23044315,-0.1711133,-0.083564915,-0.383249,-0.5249041,-0.037825115,-0.41902816,-0.050127827,-0.25729454,0.3466062,-0.24484232,0.056017257,-0.08401559,0.5163246,-0.3144475,0.119963154,0.17281793,-0.015896678,0.23499765,-0.5401038,-0.1761947,-0.0909629,0.30619106,-0.13135591,-0.21359923,0.23400876,0.27063826,0.48472354,-0.049905304,-0.19656657,-0.1636525,-0.10634673,-0.07851609,0.5222801,-0.22255553,-0.53776866,-0.12728648,0.0056753317,0.17392007,0.18582286,-0.015208653,-0.37254232,-0.070270866,-0.048048712,-0.31314513,0.4177632,0.48819277,-0.33560726,-0.103859186,0.29111764,0.5257919,0.13959844,-0.16187534,-0.016441973,0.026407318,-0.592899,-0.1807149,0.059154965,-0.083345555,0.44238758,-0.05311706,0.1837851,0.6250114,0.07024705,-0.17321044,0.29268026,0.118365794,0.13517049,-0.33599263,-0.28261486,0.30594027,-0.608409,0.12108081,-0.2874916,0.96267253,0.13241068,-0.8201504,0.34705552,-0.6231373,0.096181616,-0.16103569,0.49751252,0.6947212,0.38567334,0.09873683,0.79736507,-0.3362644,0.091527544,-0.14897887,-0.20279908,-0.143669,0.13301697,0.04711968,-0.37235552,0.040167253,-0.027227696,-0.122186966,0.1431362,0.4696387,-0.5517824,-0.19449612,0.062684804,0.8177306,-0.3913697,-0.029147653,0.7313641,0.9547516,0.91614825,0.21381995,1.2143422,0.11103864,-0.21421334,0.22728196,-0.2525076,-0.6171556,0.31345174,0.15750773,0.32821372,-0.012248425,0.1093853,-0.11333475,0.49149245,-0.3947658,-0.121292375,-0.20021077,0.35732222,0.026689975,-0.058835927,-0.44895637,-0.44699973,-0.026639942,0.053383265,0.18212779,0.32674417,-0.18942569,0.19613811,0.095914036,1.2976533,-0.03880249,-0.071077846,0.08027847,0.35772142,0.23445408,-0.15696165,-0.14731473,0.14780721,0.31253627,-0.10656044,-0.5862668,0.061958887,-0.20239936,-0.42295256,-0.11074962,-0.233589,-0.08651934,-0.11136138,-0.5084617,-0.19221668,-0.16768523,-0.22995214,0.6361771,-2.5185304,-0.23396537,-0.120040774,0.3427065,-0.17245644,-0.3406594,-0.24386209,-0.5265173,0.3513884,0.2246285,0.5214799,-0.5370519,0.5028409,0.48737124,-0.5868114,-0.1218236,-0.7219624,-0.19341014,0.09040915,0.20003922,0.027467234,-0.08672641,-0.19639267,0.027116528,0.4956171,-0.0023272634,0.1689174,0.27414662,0.37521246,0.22893776,0.4798148,0.04893841,0.5298169,-0.19813338,-0.18339655,0.23730367,-0.4354512,0.14402646,-0.14598246,0.10552817,0.4341814,-0.46634188,-0.90230364,-0.7681914,-0.17159966,1.0233966,-0.23995055,-0.27562818,0.24407291,-0.20576945,-0.111599125,0.065154895,0.35838452,-0.064823754,-0.1259342,-0.78873724,-0.030096956,-0.016221832,0.12789598,-0.030816555,-0.0069310027,-0.44405666,0.5837822,-0.22123283,0.47631747,0.2047944,0.2529476,-0.24858353,-0.38270444,-0.06705808,0.87755203,0.31198862,0.13924655,-0.20767239,-0.24291068,-0.38911697,-0.0059574763,0.027617406,0.8183878,0.7823869,0.009733921,0.006619479,0.25445455,-0.11343682,0.22533941,-0.07614126,-0.4259824,-0.17850171,0.03361269,0.6706486,0.5502772,-0.025450388,0.41152197,-0.075054914,0.3734998,-0.209613,-0.3756628,0.30114478,1.1261616,-0.19753736,-0.32282227,0.6249119,0.46106184,-0.14897482,0.329972,-0.6134882,-0.2950111,0.39603454,-0.08027926,-0.39422643,0.11630742,-0.30481803,0.17510948,-0.8732847,0.46461257,-0.36602482,-0.6867831,-0.57128197,-0.033512753,-3.0318124,0.25394005,-0.19819692,0.010588443,-0.03255612,-0.24201465,0.11031411,-0.53785765,-0.5589693,0.17121486,0.11159542,0.71067333,0.03897635,0.18023954,-0.16237967,-0.23337488,-0.2032844,0.14845029,0.17936532,0.2977494,-0.008296593,-0.31973833,-0.0026163498,-0.15344475,-0.19063708,0.08560503,-0.7306349,-0.5152409,-0.054537296,-0.6894877,-0.3211288,0.6359962,-0.38764337,0.06489909,-0.16461112,0.029397372,-0.16658612,0.34291688,0.02809913,0.18104331,0.043623853,-0.03464006,0.008368178,-0.3145246,0.29182035,0.03451266,0.16753261,0.20259206,-0.057202753,0.1778447,0.5296787,0.61573344,0.06971003,0.91362846,0.4085,-0.06803922,0.21128663,-0.21892847,-0.35053188,-0.4248485,-0.251763,-0.17256811,-0.34323725,-0.17854537,-0.01270233,-0.44492656,-0.7545498,0.34566554,0.015831172,-0.095321335,-0.038386837,0.22327934,0.5188382,-0.16470951,-0.008977779,-0.095692106,-0.102706894,-0.50184584,-0.28942147,-0.6158339,-0.30938253,-0.08101165,1.2815837,-0.23136505,0.033046473,0.023111764,0.03372811,0.016842287,0.24723712,0.032965057,0.08578487,0.45921192,-0.23815084,-0.6130112,0.3596711,-0.34525186,-0.3053603,-0.42376506,0.22587523,0.5188638,-0.6994145,0.61889154,0.47762635,0.24466829,0.0046574315,-0.61174375,-0.14328766,0.20813212,-0.21616516,0.4253035,0.29708233,-0.6850331,0.45448926,0.4050141,-0.105863504,-0.79005605,0.67096776,-0.0032978335,-0.53092206,-0.018997543,0.4631835,0.12207584,-0.04664629,-0.16871732,0.15526418,-0.3501628,0.3433257,0.14669108,-0.11885726,0.17707604,-0.2907619,-0.09118579,-0.74201286,-0.12121112,-0.5414687,-0.18794495,0.1680689,0.032736354,0.1406636,0.20239028,0.06829012,0.44359824,-0.42116448,-0.02435375,-0.22512788,-0.34098524,0.2338619,0.40343374,0.3418516,-0.28351066,0.55228275,-0.040471938,-0.0930808,-0.03814327,0.20414644,0.4416647,-0.10855198,0.44018108,-0.18504126,-0.14041434,0.17490414,0.76323444,0.06554221,0.22368366,-0.011822252,-0.08483636,0.16384073,0.048979025,0.19363807,0.07520129,-0.39027175,-0.16574144,-0.010023657,0.16082273,0.4616457,0.081177324,0.19054222,-0.021552997,-0.39670286,-0.0808197,0.0852901,-0.033752322,-1.3386445,0.5013584,0.13761194,0.7429618,0.53584135,0.057410683,0.036014404,0.5358528,-0.13245764,0.23125419,0.25792873,0.030829886,-0.30347994,0.42902026,-0.55167377,0.48442954,-0.11382588,0.052367035,-0.0030180286,-0.06490412,0.39254302,0.8693623,-0.076610334,0.07649764,0.027171874,-0.35128078,0.11241969,-0.36273918,-0.027234187,-0.699032,-0.2392783,0.7328607,0.5230653,0.3081213,-0.23134069,0.011631336,0.2495661,-0.15444054,0.08561221,0.04722782,0.044218883,0.096720494,-0.6140996,-0.27046162,0.56990206,-0.046885926,0.005809466,0.11086297,-0.05856086,0.18666236,-0.055022765,0.0012528162,-0.11203382,-0.5724067,-0.079026245,-0.43845117,-0.25927657,0.28348938,-0.14329238,0.08943518,0.25781357,0.12665756,-0.34559387,0.32230908,0.22758304,0.694418,-0.030280987,-0.13850416,-0.46983972,0.017402602,0.14239782,-0.109178655,-0.2269493,-0.34625447,0.107766315,-0.7940777,0.4893215,-0.024131905,-0.101127245,0.24319759,-0.16122098,-0.012824509,0.4343022,-0.14796314,-0.030519357,0.039092746,0.0068763136,-0.2596602,-0.08508695,-0.17273325,0.18763135,0.12111876,-0.12353799,-0.055394206,-0.22610046,-0.02904675,0.5483477,0.083162345,0.43561748,0.41448778,0.16773619,-0.2678874,-0.05369157,0.1471393,0.47467226,-0.17824177,-0.11528173,-0.35843506,-0.2854032,-0.3256195,0.36343843,-0.1368403,0.32575414,0.039472796,-0.18526818,0.75242406,-0.12058592,1.0757172,-0.033445347,-0.2562485,9.925763e-05,0.47718036,-0.15688248,-0.04602954,-0.30152592,0.9248332,0.53228384,-0.067596205,-0.090683974,-0.3681492,0.124698356,0.12980635,-0.23202161,-0.063737586,-0.021508664,-0.51276916,-0.26633286,0.16093431,0.24592991,0.08970265,-0.13485575,-0.005534202,0.10946532,0.01565644,0.32983488,-0.56166255,0.03737143,0.15458912,0.33184776,0.14023225,0.2761915,-0.4570901,0.33926696,-0.5461713,0.08449745,-0.2738941,0.13893496,-0.120785676,-0.2936798,0.18850638,-0.0020066262,0.30217865,-0.21686636,-0.28505316,-0.29294735,0.4858436,0.20800544,0.054976486,0.6691763,-0.19667858,-0.05492665,0.08806925,0.60807526,1.0143505,-0.23380308,-0.16310625,0.3404798,-0.26821595,-0.5406672,0.07647655,-0.38777244,0.03124804,0.057947516,-0.006091555,-0.69344217,0.3894822,0.22663717,0.11026519,-0.03600351,-0.73745453,-0.11842706,0.36730835,-0.23474477,-0.2399771,-0.25058794,0.26235926,0.6231047,-0.1826715,-0.117852844,-0.03475635,0.30069238,-0.25591213,-0.6667146,0.099913664,-0.61574596,0.3093159,0.1557552,-0.30936927,-0.27289167,0.06756417,-0.3202099,0.04029002,0.22841467,-0.26428512,0.090521365,-0.33497038,0.05803812,0.85752463,-0.04047116,0.18454114,-0.48134628,-0.46110356,-0.73710746,-0.15345153,0.41448978,0.23780641,0.019752575,-0.70875424,-0.16357075,0.04604915,-0.20213757,-0.013545283,-0.27290127,0.4806849,0.13713373,0.38137287,-0.06594478,-0.8588267,-0.035033867,0.06302726,-0.42265072,-0.45236677,0.44750577,-0.0045578717,0.88539,0.12882249,0.032921154,0.2575391,-0.39406613,0.12920569,-0.26873052,-0.10344521,-0.7401232,0.06261982,671 +260,0.19442262,-0.04108442,-0.46688086,-0.23837854,-0.37609437,0.16089624,-0.40442947,0.17799619,0.31556076,-0.3273568,-0.0031775713,0.02117629,-0.13898396,0.41605887,-0.15197569,-0.72523504,0.01266247,0.063675635,-0.7174006,0.48305163,-0.6087035,0.25644264,0.06431642,0.3814479,-0.017456468,0.3111042,0.15002395,-0.039230395,-0.035772227,-0.14404014,0.03718304,0.286758,-0.6715116,0.39396682,-0.067792386,-0.17471406,-0.14250818,-0.41229534,-0.141736,-0.7204637,0.13045149,-0.49822107,0.4389864,-0.23357473,-0.388328,-0.061971966,0.07350621,0.26949698,-0.11672942,0.049958125,0.26369023,-0.20180123,-0.14906403,-0.10979537,-0.1945533,-0.5052434,-0.42205185,0.011472656,-0.57151115,-0.24244808,-0.15228271,0.26963457,-0.29383805,-0.009032655,-0.17499058,0.50990546,-0.31037953,0.035658,0.19595848,-0.21424897,0.06961419,-0.732293,-0.16809177,-0.0068101725,0.42918387,-0.035749946,-0.15254502,0.18927594,0.32184246,0.55464846,0.1511905,-0.26810265,-0.2549478,-0.15480609,0.24330981,0.38437885,0.040464036,-0.1743372,-0.2795873,-0.17685445,0.15917717,0.08596417,0.041361444,-0.41515055,0.022349544,-0.019746363,-0.21007039,0.34117106,0.39446145,-0.3292002,-0.10961743,0.39962843,0.44503802,0.2816692,-0.27424133,0.26372054,-0.08895067,-0.43130475,-0.28992364,0.13836965,0.057386145,0.33942622,-0.17478006,0.35789356,0.63233936,0.022993365,0.06911289,-0.09788821,-0.09531277,0.013741557,-0.30221787,-0.08928373,0.09599959,-0.40582693,0.00707377,-0.21957538,0.66149414,0.0061332346,-0.84119886,0.32859632,-0.53170496,0.0973049,-0.09427958,0.6137621,0.9921881,0.35570204,0.06464706,0.73567706,-0.39288533,0.09500327,-0.099144086,-0.31010216,0.08085516,-0.1206235,0.20779486,-0.549707,0.014584827,0.047683287,0.06694857,-0.045823462,0.23250893,-0.44829655,-0.11120386,0.10911974,0.6605381,-0.2821742,-0.051517718,0.84141815,1.0094937,0.9915642,0.18558213,1.3864677,0.3125214,-0.0471244,-0.032625604,-0.28822625,-0.49521083,0.249082,0.3408526,0.5955475,0.3270481,0.031800892,0.071644105,0.52150625,-0.21417984,-0.07169638,-0.11850597,0.30415666,0.04251059,-0.22608414,-0.33380127,-0.21283303,0.3032909,0.1119344,-0.041405465,0.16047126,-0.1391231,0.5018103,0.042931836,1.0262861,-0.031686652,0.036279995,0.010637876,0.21274894,0.19264367,-0.3499821,0.05231651,0.1816616,0.28931668,-0.1319879,-0.5668871,0.06539105,-0.170925,-0.39892083,-0.32415077,-0.32515088,-0.11681285,-0.08643951,-0.38664392,-0.10958092,-0.053466566,-0.37980887,0.3900744,-2.611053,-0.15725301,-0.2888025,0.35079804,-0.14570373,-0.25680637,-0.27314433,-0.40926898,0.43296465,0.43106073,0.39607456,-0.48352817,0.6320403,0.36687547,-0.40439615,-0.14221129,-0.49774224,0.109319046,-0.07198923,0.3584219,-0.016313655,-0.26133853,-0.2820649,0.18876152,0.64765006,-0.01861255,0.0012461026,0.31945255,0.41078243,-0.16414663,0.5004825,0.06023687,0.48393407,-0.16386844,-0.21334635,0.35991484,-0.49477306,0.28871024,-0.041593466,0.2146654,0.49505073,-0.46205485,-0.7742795,-0.71328014,-0.49680343,1.3742346,-0.20762579,-0.48558363,0.2470382,-0.05582513,-0.39942616,0.17792214,0.49156567,-0.13093014,-0.03171677,-0.74994403,-0.0028931135,-0.090720676,0.20652269,-0.1313661,0.070430376,-0.38629517,0.63497216,-0.14993377,0.5220463,0.35194096,0.24040382,-0.12911484,-0.3136192,-0.016670467,0.86058146,0.4678463,0.036806922,-0.15640475,-0.2545166,-0.23456077,-0.17038608,0.13085623,0.6584943,0.47387266,0.037975363,0.14162509,0.31466478,-0.31283653,0.08217872,-0.15506588,-0.23308976,-0.0971152,0.29649225,0.56111085,0.54623234,-0.029046146,0.40992215,-0.08797281,0.14784479,-0.18995453,-0.58226615,0.4394491,0.59094363,-0.21091717,-0.23117529,0.51061386,0.41341978,-0.30087027,0.38823164,-0.37558654,-0.34220937,0.43443707,-0.027927602,-0.4388604,0.04160107,-0.41917315,0.0469815,-0.88773763,0.253216,-0.30069986,-0.7328301,-0.5687991,-0.2492471,-3.16758,0.23605631,-0.09401487,-0.09046699,-0.22362843,-0.1542478,0.46120924,-0.47440994,-0.59947956,-0.012358767,0.017636554,0.6029295,-0.09654482,0.030882759,-0.3189765,-0.2724565,-0.1342335,0.19919129,0.083863385,0.28681836,0.06221634,-0.2573621,0.08786621,-0.26704133,-0.4382814,-0.07286242,-0.568847,-0.51335025,-0.26642838,-0.3935269,-0.13448647,0.68801945,-0.56553245,-0.035751645,-0.35510254,-0.028466217,-0.13998713,0.39644006,0.20097525,0.16182755,0.31228462,-0.0020753741,-0.28813094,-0.3105579,0.03096244,0.06434766,0.22906014,0.42025426,-0.06913407,0.25276995,0.56724,0.52137107,-0.0013805032,0.7990628,0.21234964,-0.05416997,0.4366802,-0.23330587,-0.22675459,-0.576998,-0.351773,-0.08494072,-0.45285702,-0.48599836,-0.08792755,-0.29353043,-0.73234266,0.31685665,0.16162226,-0.009617758,-0.13298628,0.25195992,0.36719003,0.06283293,0.011187434,-0.026111007,-0.2052522,-0.4563385,-0.48655817,-0.65707296,-0.6192235,0.029140584,1.2001472,-0.078450225,0.0036605755,0.08934315,-0.24557829,0.053967126,0.17210627,0.14509048,0.0292278,0.3058822,-0.0713124,-0.7427406,0.22769256,-0.25715265,-0.09017709,-0.6061766,0.009011551,0.827273,-0.50288117,0.5539125,0.3866023,0.33794945,0.049562264,-0.5914386,-0.14438556,0.15601633,-0.33643574,0.6389395,0.296944,-0.6958189,0.5617388,0.15262583,0.017302616,-0.7346879,0.49272823,-0.015981544,0.041712444,0.13883041,0.38978052,0.054367255,-0.06507353,-0.14030828,0.25958598,-0.37714908,0.28767577,0.27604085,0.023189982,0.4644044,-0.06340795,-0.2813821,-0.47371617,-0.26492897,-0.5418877,-0.18434265,-0.11588202,-0.08223956,0.018552292,0.12513493,0.0047667227,0.43752283,-0.15186734,0.19144711,-0.14249577,-0.22412007,0.28419378,0.5694676,0.33713046,-0.4031983,0.5580762,0.17195159,0.11732607,-0.32314828,0.1356692,0.4818168,0.29418704,0.46560037,-0.19105896,-0.08875907,0.09466247,0.81731975,0.19135128,0.46114406,0.02555612,-0.37134907,0.2973963,0.08039499,0.23946899,-0.19731806,-0.18336102,-0.021631204,-0.10820801,0.23771225,0.3796275,0.056005057,0.32358217,-0.050604302,-0.11955008,0.25708923,0.08658333,-0.07621109,-1.1144536,0.4426839,0.3221997,0.68302655,0.4378473,-0.052247558,0.13798815,0.4930486,-0.26268402,-0.027758574,0.19742277,0.091364734,-0.41057938,0.5529197,-0.6429599,0.36658195,-0.15230264,-0.0007906437,0.110255785,0.199303,0.41594297,0.808839,-0.18590838,0.1976046,-0.06279168,-0.26651365,0.030358862,-0.17890498,0.15091263,-0.4383014,-0.3107565,0.6124117,0.42863286,0.39733407,-0.42860517,-0.08423347,0.14245544,-0.17345542,0.11560392,-0.26568672,-0.15591334,-0.113550946,-0.5692046,-0.29407248,0.5320395,0.007960105,0.11756849,0.14364907,-0.4164602,0.2709719,0.13345914,-0.015503184,0.074542016,-0.46190757,-0.08042376,-0.24321601,-0.46756908,0.28069907,-0.45826727,0.2393898,0.16415204,0.016316913,-0.3166307,0.19994284,0.076759726,0.7273503,0.05713958,0.004163885,-0.036620412,0.0120734535,0.3186752,-0.32537684,-0.14316653,-0.44345924,0.13026337,-0.6334931,0.32913667,-0.27349862,-0.26181394,0.2614888,-0.0054546595,0.042525537,0.33259323,-0.16742381,-0.08104412,0.15613694,-0.03073702,-0.23167762,-0.12821609,-0.33179057,0.28700906,-0.064358376,0.12201746,0.03604184,-0.05514543,-0.14368679,0.32199094,0.11679853,0.24783559,0.35357887,-0.01773431,-0.4142803,0.028045952,0.039403837,0.34355494,0.2128494,-0.16769084,-0.20052037,-0.3973894,-0.3576558,0.44095916,-0.15737012,0.054346662,0.08949935,-0.47249776,0.6248224,0.17737307,1.1252111,-0.071658984,-0.37822726,0.15896502,0.33878967,0.05203151,0.077747256,-0.25416118,0.76878524,0.5884337,-0.17548493,-0.0008442163,-0.53130734,-0.25183693,0.16059461,-0.29272625,-0.15131272,-0.25935227,-0.7475013,-0.19123432,0.04937656,0.11367906,-0.1185296,-0.12922363,-0.067746304,0.033433247,0.10106587,0.35019347,-0.5405258,0.055154514,0.3540899,0.22617769,-0.05400304,0.12745555,-0.398445,0.40821832,-0.8804813,0.20272343,-0.4070526,0.056278214,-0.09114747,-0.1998852,0.14103311,-0.055174172,0.32085836,-0.13935891,-0.3545383,-0.36158523,0.61758435,0.2619985,0.17102163,0.72611755,-0.21974698,0.0042099315,0.13958699,0.5896371,1.2449639,-0.13772836,0.11562524,0.21212082,-0.3027694,-0.392778,-0.049891602,-0.4863469,0.014358664,-0.052164417,-0.32446238,-0.28859094,0.2649052,0.16088027,0.020578442,0.02365206,-0.44977185,-0.0907604,0.25284594,-0.26461053,-0.24837925,-0.27302852,0.14383973,0.58716506,-0.2743594,-0.30367073,-0.11893005,0.42620337,-0.3433244,-0.52124906,0.12009639,-0.19358549,0.4131743,-0.025068734,-0.39570016,-0.034438275,0.22539443,-0.47786272,0.07481345,0.27866998,-0.3331632,0.035683047,-0.32799193,-0.10119326,0.90014845,0.03859301,0.34603196,-0.5457269,-0.56206286,-0.7484022,-0.19828402,0.112092905,0.32940662,-0.13130035,-0.48189482,-0.11308085,-0.16187133,-0.047717396,0.17278813,-0.4959952,0.31433246,0.15279737,0.54991895,-0.17829841,-0.92563915,0.032157354,0.18977748,-0.06777822,-0.43384734,0.43816593,-0.07482397,0.70249003,0.13848025,0.04325699,-0.09858798,-0.5652513,0.35922113,-0.20509571,-0.1591414,-0.60563856,0.07815067,677 +261,0.36379716,-0.08677257,-0.44468206,-0.1932685,-0.21619706,0.1792096,-0.163879,0.29938576,0.0234431,-0.5987073,0.042967662,-0.17656788,-0.04687306,0.1895514,-0.16827662,-0.48167303,-0.01584303,0.08347375,-0.48323828,0.34448138,-0.5019508,0.311119,-0.041318145,0.2012542,0.019096248,0.28482527,0.13284601,-0.29576385,-0.10273626,-0.13619089,-0.064959675,0.11975453,-0.62391776,0.25033197,-0.14734016,-0.25530356,0.037663594,-0.5443243,-0.437045,-0.5593245,0.25076273,-0.8581537,0.48740134,0.06760715,-0.21008965,0.17058346,0.07803971,0.3151024,-0.15023075,0.16282736,0.37865013,-0.17097521,-0.0127453925,-0.057267014,-0.36965007,-0.42075044,-0.63678104,0.03857906,-0.46067274,-0.085587114,-0.23862472,0.13852234,-0.3216978,-0.0651094,-0.21312346,0.27389222,-0.34808117,-0.108066015,0.14608914,-0.07749307,0.44130078,-0.50553954,-0.16775852,-0.029825322,0.30922645,-0.33167478,-0.24397795,0.2732057,0.32835457,0.51092106,-0.07373224,-0.21824677,-0.22891754,0.04272921,0.13002197,0.59609497,-0.28504086,-0.18671922,-0.12146731,-0.09783768,0.19005616,0.26083645,-0.062617704,-0.40798855,-0.09747289,0.080458924,-0.22196104,0.25293323,0.5188579,-0.34843382,-0.20837663,0.49810168,0.41466597,0.023723206,-0.037650634,0.13526802,0.021698171,-0.50787425,-0.2621744,0.34503826,-0.20439835,0.2827078,-0.12355326,0.24878803,0.7059648,-0.18518223,0.12100177,0.044572964,-0.07415969,-0.08102625,-0.114004575,-0.2214579,0.15752879,-0.48145884,0.19900028,-0.17497867,0.784686,0.11461801,-0.83273786,0.31426674,-0.5767483,0.06972302,-0.05304202,0.5247141,0.6698429,0.49726212,0.066009074,0.6697733,-0.46515042,0.068737596,-0.10827256,-0.35482496,0.16356643,-0.056351732,0.06687792,-0.57020074,-0.20051469,0.16503842,-0.10473232,-0.18431233,0.24076572,-0.3704602,-0.019614339,0.22856191,0.664091,-0.29621062,0.021368371,0.5539357,0.98881537,0.83703834,0.22295976,1.2450886,0.20784816,-0.17686749,0.332219,-0.34465224,-0.7634431,0.30527732,0.4336374,-0.21947663,0.25312442,0.16181806,0.06323322,0.34106782,-0.36514485,0.141363,-0.2606544,0.18466221,-0.01312278,-0.19899304,-0.23058268,-0.2955233,-0.11700983,-0.10815497,0.07577446,0.12912722,-0.15937993,0.23353876,0.30878386,1.5756571,-0.10981611,0.16358271,0.09925144,0.44417796,0.07176827,-0.12542923,-0.063504286,0.19055225,0.35001788,0.00620472,-0.5144522,0.1852013,-0.0033797543,-0.5224363,-0.197082,-0.25017524,-0.08197026,-0.19127628,-0.51779544,-0.10886397,-0.03276558,-0.49350408,0.5391434,-2.8049664,-0.006987846,-0.13717522,0.32738367,-0.24710955,-0.44209772,-0.14355555,-0.5493632,0.5583861,0.3294684,0.28376108,-0.6501872,0.44846794,0.5203244,-0.41875654,-0.094095364,-0.7475975,-0.06537708,-0.093807705,0.19780311,0.078885116,-0.07917835,0.08269648,0.10214357,0.29308042,-0.1638382,0.08596646,0.119688444,0.3505888,0.15317969,0.5663673,0.026086338,0.49663603,-0.20337066,-0.17386736,0.3052268,-0.5086877,0.1035148,0.002579838,0.0984176,0.3295897,-0.42834365,-0.6629895,-0.69727224,-0.5948406,1.0534476,-0.17171167,-0.2140357,0.28551057,-0.1464355,-0.39163372,-0.14388663,0.44578227,-0.18448156,-0.028929355,-0.86258537,-0.10764567,-0.21724139,0.2012021,-0.094060056,0.17588663,-0.46288702,0.602545,-0.15002246,0.5562857,0.39853412,0.092583574,-0.25851974,-0.50542533,0.0053931098,0.91477406,0.2801097,0.1871613,-0.1624692,-0.17478633,-0.14412013,-0.16342786,0.1894452,0.44994193,0.70237225,0.009285119,0.06617616,0.32778522,-0.19774373,-0.01711626,-0.119116224,-0.27140188,-0.087532945,-0.02931402,0.6111702,0.45757088,-0.11750074,0.35662296,-0.20812711,0.2938913,-0.3514985,-0.28421706,0.45930764,0.97377515,-0.05224434,-0.11029984,0.56599975,0.52794313,-0.18653342,0.38490677,-0.62671,-0.25188953,0.36512548,-0.17011023,-0.39707133,0.18250021,-0.33413234,0.13998877,-0.9212078,0.40682715,-0.25066468,-0.4550907,-0.62246436,-0.19358705,-3.138829,0.09236178,-0.18358769,-0.27326533,0.047521677,-0.06301801,0.42901286,-0.49937612,-0.40262336,0.17431848,-0.026920859,0.6289332,0.01978137,0.08844026,-0.3793191,-0.119875096,-0.39763218,0.19627914,0.14677675,0.31642544,-0.0060502966,-0.34836575,0.053022638,-0.18739359,-0.33189481,0.0354444,-0.54756373,-0.40522465,-0.2597045,-0.45233494,-0.3979605,0.655511,-0.3710726,-0.023569465,-0.21460634,-0.10576909,-0.24687529,0.5416578,0.16889296,0.13939057,0.052391138,-0.03761929,-0.13705096,-0.3379146,0.3728971,0.12914316,0.30772784,0.48565325,-0.19036205,0.07935726,0.477033,0.57612735,-0.10162655,0.7874576,0.42950493,-0.090642974,0.26241723,-0.38470206,-0.14503488,-0.45340344,-0.266606,-0.1279359,-0.3444924,-0.486453,-0.06768341,-0.39075762,-0.7285911,0.4207179,0.014543188,0.009302386,0.03222414,0.043188144,0.26117384,-0.18869866,-0.03657901,-0.07105247,-0.087755404,-0.33698738,-0.3830392,-0.621505,-0.47589388,0.10417637,1.080403,0.07858775,-0.095689654,0.14330932,-0.20696217,-0.05558931,0.036573693,0.026627218,0.20467375,0.36338857,-0.038385995,-0.6593843,0.45769775,-0.062166754,-0.1689298,-0.5657376,0.08821117,0.7441336,-0.6107677,0.52110916,0.36791623,0.17294382,-0.13791402,-0.51824075,-0.25861254,-0.11808947,-0.2564963,0.3846539,0.07499354,-0.8191348,0.5519619,0.38553748,-0.2126246,-0.682738,0.5436394,-0.012861667,-0.11416065,0.1563387,0.29675615,-0.07825098,-0.09250566,0.0032073536,0.4324826,-0.39391148,0.34355015,0.36121878,0.04021803,0.37383214,-0.15181245,-0.035290543,-0.56512356,-0.00101704,-0.44122654,-0.28190118,0.19717066,-0.005267165,0.1559268,0.3515729,0.009176167,0.4440015,-0.31141138,0.100665174,0.025580715,-0.15135378,0.09642057,0.3185682,0.418769,-0.44922912,0.5413328,-0.019221537,0.030568767,-0.15937297,0.15067016,0.5196825,0.21131532,0.2757893,-0.1421772,-0.2731334,0.25323325,0.98404604,0.24782439,0.42983285,0.100574374,-0.098366,0.2599072,0.14367095,0.1445642,0.08851083,-0.5251012,0.051613934,0.030405056,0.20250513,0.28465432,-0.067016974,0.32121527,-0.2753066,-0.09355038,0.06791535,0.22779463,-0.09204414,-1.2502121,0.40374583,0.18460792,0.6915974,0.41763702,-0.009154518,0.15792504,0.57430196,-0.3618773,0.13245513,0.18119606,-0.10317755,-0.46413192,0.4168631,-0.65103745,0.34331423,-0.010377248,0.010611536,-0.11250503,-0.0066385665,0.2898248,0.8311755,-0.20965903,0.16325384,0.005817009,-0.3037696,0.24563058,-0.2617757,0.21116786,-0.39431342,-0.26620725,0.66890115,0.39793822,0.41072622,-0.095991634,0.0019662397,0.049308382,-0.07140774,0.08538568,0.06362916,0.0097376425,0.09438797,-0.5613684,-0.30775818,0.5358997,-0.04501478,0.123977356,0.1357504,-0.41402408,0.25401145,-0.13574213,0.010477757,-0.1519392,-0.7038922,0.048449364,-0.29434714,-0.33500946,0.24984637,-0.22564699,0.33416378,0.24195382,0.031568244,-0.19370916,0.3166484,0.38689837,0.72692627,-0.09100459,-0.22385262,-0.33166486,-0.035833556,0.19562912,-0.282235,-0.2307757,-0.27944195,0.04166285,-0.54895794,0.21997903,-0.0116781015,-0.3292586,0.26041698,-0.23804665,0.021857878,0.56834525,-0.12353991,-0.06610341,0.102719694,-0.009943156,-0.26237568,-0.047863647,-0.14171664,0.22749257,0.20308262,0.0386761,-0.00031790734,-0.13485213,-0.2239819,0.36278465,0.20859082,0.35440648,0.41592875,0.13329509,-0.38220575,-0.0924547,0.0445146,0.4147892,-0.011603173,-0.05232781,-0.12418681,-0.31172302,-0.20851429,0.21499196,-0.2062289,0.24283329,-0.01924533,-0.42785034,0.65465486,-0.11486411,0.99697596,0.030032456,-0.24120347,0.014690403,0.39175436,0.05183385,0.04524374,-0.43568465,0.8269752,0.55197835,0.0034285465,-0.12720145,-0.25553468,-0.124385625,0.15383963,-0.14397192,-0.18941052,0.05330663,-0.66446215,-0.23688975,0.23086458,0.08509455,0.11897564,-0.008672174,-0.06695504,0.18876056,0.13932103,0.32887426,-0.4926279,-0.04034505,0.28351694,0.20647584,0.079658754,0.19678405,-0.4126458,0.35709858,-0.47172755,0.05188322,-0.269123,0.08649233,-0.15432271,-0.13356952,0.14606395,-0.12385771,0.47188765,-0.025389822,-0.2854331,-0.043872286,0.49580896,0.06059846,0.3098311,0.680477,-0.13988549,0.17859802,-0.049369644,0.46769932,0.9937176,-0.18045285,0.07547428,0.47613737,-0.28474954,-0.5273321,0.24922398,-0.33410484,0.14149366,-0.044698503,-0.30585682,-0.13979241,0.25042707,0.21950005,0.18005037,0.014976239,-0.57823277,-0.2066247,0.4120606,-0.33421603,-0.30195916,-0.2502539,0.21680054,0.7906888,-0.35206407,-0.14646062,0.12645319,0.28668505,-0.2656458,-0.4642484,0.0752235,-0.339274,0.25213513,0.07914478,-0.31271705,0.09297844,0.04465274,-0.18305571,0.1580029,0.20032553,-0.44095916,-0.0064718085,-0.29869595,-0.03321769,0.7866212,-0.0303171,0.052625697,-0.6041908,-0.5203206,-0.89062524,-0.3459959,0.3447434,0.1550527,-0.09106341,-0.39968178,-0.09019574,0.04379654,-0.08762045,-0.056436736,-0.4346933,0.46649864,0.14876175,0.37671012,-0.103754476,-0.67183226,0.0576449,0.17831701,-0.025835713,-0.5816563,0.5791055,-0.08371501,0.8598302,0.105491675,0.045026883,0.067421846,-0.43704683,0.14362165,-0.20993277,-0.18215594,-0.86583763,0.09000324,687 +262,0.45903504,-0.07321759,-0.5413797,-0.29147804,-0.4354489,0.22130416,-0.2882725,0.30725977,0.20185456,-0.30065206,-0.10138456,-0.20324661,0.011190907,0.39231825,-0.26653826,-0.65538406,0.01938535,0.14405483,-0.5935719,0.43965924,-0.4862114,0.48661485,0.14692,0.3541403,0.09947974,0.17945746,0.2975553,-0.15450808,-0.025438095,-0.14583369,-0.20563167,0.19821472,-0.6395379,0.13149421,-0.17899609,-0.3708054,0.07636836,-0.31097433,-0.18983306,-0.78633875,0.3173785,-0.7595593,0.46509236,-0.09595048,-0.5801948,0.15012875,0.053961825,0.18899533,-0.42927104,0.06907357,0.14904372,-0.25700042,-0.07559462,-0.015270321,-0.2865815,-0.4830492,-0.57034796,-0.038850505,-0.6268869,-0.029660035,-0.34965965,0.1755949,-0.42511985,0.030136157,-0.11019125,0.22744168,-0.49872485,0.025085043,0.24518204,-0.10320676,0.1821122,-0.51777565,-0.10253262,-0.21331562,0.15227175,-0.008990095,-0.16624232,0.26939926,0.5526448,0.5733965,0.092395775,-0.21980919,-0.25586015,-0.09494076,-0.0004492442,0.39985934,-0.031314813,-0.24326243,-0.3069185,-0.14964248,0.4505158,0.33237487,0.112722255,-0.32799625,-0.11876193,-0.012381045,-0.22846527,0.24799408,0.44138354,-0.29972267,-0.11487899,0.32773525,0.43997887,0.14765514,-0.22484137,0.22233672,-0.10145433,-0.49910164,-0.30768794,0.18902546,-0.2719448,0.7261208,-0.24204716,0.10873718,0.85982144,-0.23593864,0.14484027,-0.025967928,-0.051777266,-0.18953197,-0.1574052,-0.19760732,0.19791451,-0.6692129,-0.007917182,-0.30191502,0.75018984,0.1238004,-0.7614021,0.24018876,-0.5644797,0.09010113,-0.120776534,0.63704836,0.66262275,0.4232909,0.34314442,0.79169154,-0.62258667,0.15141258,0.15360199,-0.4716903,0.17198895,-0.13726848,-0.12180453,-0.5284995,0.02133684,0.047898,0.02614353,-0.005154763,0.37286028,-0.37221634,-0.09149014,0.038713954,0.503461,-0.44869938,-0.056588944,0.8879143,0.9649327,1.0584427,0.1021489,1.3911033,0.41443205,-0.1083289,-0.058397315,-0.08710874,-0.6169671,0.13118842,0.38645014,0.027819792,0.39066166,0.08356602,0.13776293,0.33808503,-0.310307,0.017668447,-0.09205595,0.14749984,-0.111117005,-0.1299382,-0.5001107,-0.32392406,0.17179175,0.13217928,-0.13867426,0.33674908,-0.09064792,0.51504785,0.3058017,1.3706973,0.11018344,-0.04708289,0.023300027,0.39085108,0.2846817,-0.106484495,0.02039125,0.35926086,0.43129224,0.0024987618,-0.5640886,-0.03585357,-0.26261586,-0.49412715,-0.18091637,-0.40071237,-0.055259883,-0.17855327,-0.54699975,-0.055108167,0.028405737,-0.28789657,0.539689,-2.2409987,-0.082034096,-0.19704247,0.25652403,-0.15574749,-0.35168654,-0.07529009,-0.469973,0.33967066,0.4825528,0.33318704,-0.7941459,0.3969997,0.41604185,-0.36187753,0.024730781,-0.7083142,-0.28955117,-0.111850806,0.2536301,0.014910042,-0.19231687,-0.14816995,0.30200374,0.7307096,0.04974601,0.19928388,0.19856922,0.5176837,-0.19768976,0.53259635,0.3062481,0.4275487,-0.054887403,-0.09018393,0.49296045,-0.36814365,0.4077135,0.091680735,0.15524639,0.5467609,-0.5211451,-0.9017869,-0.71333325,-0.3771001,1.3083638,-0.46222645,-0.4260578,0.28937632,-0.028537147,-0.19462165,0.032940842,0.3336156,-0.06626412,0.004939771,-0.7447528,-0.03507758,-0.02748785,0.15294646,-0.05029377,0.14927863,-0.16065194,0.8238289,-0.15726264,0.42863712,0.44912502,0.2333393,-0.121082105,-0.55958694,0.053530708,0.86909384,0.568655,0.104122505,-0.32679966,-0.29028141,-0.3959816,-0.18739273,0.22586374,0.3991831,0.94912827,-0.11054172,0.2574463,0.36321577,-0.11921706,0.1042218,-0.19715622,-0.30083725,-0.020831335,0.033523116,0.44172376,0.6293421,-0.16599153,0.23858775,-0.11000356,0.21016976,-0.15526453,-0.62104344,0.58004683,0.94247454,-0.1535479,-0.21390034,0.47424403,0.43664438,-0.4104642,0.52297616,-0.6267761,-0.28367186,0.68614906,0.015388664,-0.41002935,0.15041856,-0.33096218,0.0936759,-1.0226521,0.29923692,-0.11268649,-0.36628452,-0.5171822,-0.17947651,-3.5538132,0.33167872,-0.23742689,-0.13680975,-0.24379158,-0.24817139,0.39734998,-0.6617831,-0.7190739,-0.018228084,0.11952789,0.470173,0.049873408,0.13260947,-0.3697325,-0.3351136,-0.30876014,0.061670642,0.1609492,0.16895586,-0.09454884,-0.49792907,-0.0009655078,-0.31230816,-0.53874505,-0.06804308,-0.42850742,-0.6332761,-0.27517623,-0.40009576,-0.22643998,0.66033,-0.2702982,-0.051301833,-0.17955288,-0.09383463,-0.30878857,0.24518636,0.2426313,0.0224847,-0.06361755,-0.08651878,-0.11721958,-0.36542508,0.21554384,0.081472844,0.18654849,0.3246488,-0.12905641,0.22863945,0.5750698,0.50791776,-0.22533447,0.72458947,0.25241342,-0.07818968,0.37719938,-0.2730582,-0.3496994,-0.8153913,-0.32562578,-0.2603716,-0.5038311,-0.34092304,-0.089682505,-0.30741614,-0.87972337,0.48672846,0.020974496,0.16726504,-0.17301752,0.24443568,0.3873225,-0.07134744,-0.04029846,-0.10576951,-0.31149325,-0.54311866,-0.39843643,-0.8791846,-0.5430262,0.21048333,1.1565824,-0.13139184,-0.1768033,0.045338314,-0.2553809,0.15928847,0.049934186,0.06580409,0.15702511,0.42241958,-0.17208408,-0.66481876,0.47656077,0.049764793,-0.242464,-0.6157444,-0.04720751,0.71102244,-0.62596875,0.46793193,0.48164693,0.21349491,0.2738898,-0.81484044,-0.2215232,0.04511008,-0.22526713,0.65623766,0.23532668,-0.64305234,0.493914,0.2416568,-0.11056862,-0.5832389,0.69185174,-0.056177225,-0.20635587,0.032402374,0.4106742,0.04961502,-0.0690199,-0.21286829,0.32120934,-0.54937536,0.296948,0.47795582,0.056261174,0.3148555,-0.025142085,-0.3048269,-0.75474775,-0.072686315,-0.49077323,-0.2680847,0.01384837,-0.12827216,-0.017070325,0.049850725,0.16575518,0.39564058,-0.42979103,0.2824054,-0.052151687,-0.18139216,0.49561068,0.48639104,0.37829372,-0.4840733,0.63943,0.16534287,-0.014273754,-0.1259294,0.16130391,0.5173777,0.26998535,0.30480283,-0.018128244,-0.12750103,0.25605196,0.57481945,0.22247478,0.38076714,0.12928417,-0.21470329,0.38883048,0.34320393,0.26169693,-0.07842166,-0.18807663,-0.017185736,-0.028954856,0.09347865,0.5517062,-0.0595502,0.33238086,-0.02285273,-0.07202547,0.25500515,-0.0057169916,-0.175936,-1.1278836,0.24796599,0.3327912,0.6604801,0.6447883,-0.07025306,0.122817606,0.39868063,-0.48352325,0.060333412,0.40699875,0.22478488,-0.5170001,0.67137593,-0.5727038,0.3997775,-0.19272873,-0.03150161,0.053777967,0.21586771,0.39982283,0.9574255,-0.027419781,0.10001683,0.025591435,-0.2744055,0.16469233,-0.41897476,-0.15966901,-0.4604877,-0.27654928,0.61151236,0.28201216,0.3019132,-0.35173032,-0.08326099,0.03776678,-0.2430647,0.121468656,-0.016905423,0.10457529,-0.16598746,-0.54030436,-0.4071285,0.5032996,0.002828765,0.21360709,0.053932294,-0.44379997,0.26904064,-0.15926792,0.0064333896,0.0132215945,-0.79953766,-0.27135488,-0.4141025,-0.43890578,0.4106566,-0.32504115,0.24730924,0.28188497,0.009372877,-0.3661984,-0.0043658414,0.13519904,0.6801895,-0.0017460823,-0.17119433,-0.32074744,0.13474652,0.37981033,-0.35883966,-0.13703914,-0.23176867,0.02255704,-0.46317366,0.37731287,-0.16534548,-0.15678683,0.042943876,-0.24934019,-0.06917875,0.41220525,-0.28390515,-0.23394288,0.04115226,0.10339138,-0.23067309,-0.15798695,-0.37178838,0.3195823,0.020907573,0.00657293,0.035265755,0.03582615,0.103834175,0.3903311,0.020252688,0.22674058,0.32428944,-0.25023922,-0.5454512,0.036599226,0.007694368,0.31210974,0.11357821,-0.15473737,-0.41645876,-0.37842384,-0.1432381,0.265895,-0.3065057,0.13884388,0.12322705,-0.3277003,1.0235279,0.17276707,1.182949,0.0011324048,-0.3852417,-0.022406483,0.6471523,0.1254868,0.01219778,-0.14419289,0.90711683,0.5730558,-0.25530943,-0.2915616,-0.38040334,-0.15767814,0.27838644,-0.3237153,-0.24980998,-0.1209177,-0.7018777,-0.20690428,0.1970353,0.29979178,0.07970301,-0.1021009,-0.01120676,0.1294671,0.08821329,0.5978629,-0.5856126,-0.16347331,0.1850073,0.068627246,-0.041296482,0.23479111,-0.36490837,0.45484325,-0.72770566,0.14242609,-0.4055386,0.1411849,-0.030208332,-0.37802884,0.26244205,-0.042402513,0.28956828,-0.26353326,-0.26540443,-0.25540286,0.6927195,0.29845408,0.37262148,0.67126304,-0.41287762,0.17114843,0.112087995,0.44253096,1.21502,0.00441657,-0.100571364,0.27993375,-0.4534968,-0.5284496,0.20974766,-0.45286602,0.22269095,-0.08408711,-0.44266698,-0.44932845,0.36412156,0.09671789,0.03514901,0.20514728,-0.5672176,-0.124966875,0.45214733,-0.32420164,-0.36032167,-0.3674873,0.3317633,0.5785081,-0.45190346,-0.34515715,-0.02627761,0.16838983,-0.23720306,-0.63123375,0.02594902,-0.33160317,0.5129252,0.12698215,-0.36873716,0.20123596,0.2188141,-0.3798568,0.13160114,0.43438688,-0.20658146,0.056714978,-0.30640805,0.017502926,1.1105212,0.016823407,-0.086732835,-0.62917495,-0.5040964,-0.9061526,-0.22762822,0.48207816,0.24226722,0.11074786,-0.71087265,0.027521402,-0.09024658,0.10176777,0.09574803,-0.35921022,0.4783165,0.2275467,0.42274627,0.08717049,-0.8141019,-0.00022959709,-0.01996191,-0.19651197,-0.5096669,0.6271301,-0.2024044,0.6592794,0.21898556,0.16574523,0.119566426,-0.61262447,0.4367736,-0.3319343,-0.21202205,-0.551399,0.07137896,689 +263,0.3993946,-0.03318861,-0.533976,-0.20810248,-0.044109892,0.18967621,-0.15915647,0.33633006,0.26797837,-0.34516805,0.17286414,-0.1434252,0.07688522,0.37243402,-0.052752327,-0.58965796,0.081708945,0.06402601,-0.58514583,0.41653526,-0.44129738,0.3255106,-0.07769367,0.3277493,0.10740528,0.39979565,0.062471587,-0.21670158,-0.17024548,-0.11709908,-0.036716573,0.31591874,-0.41953954,0.0497001,-0.10010301,-0.121836856,-0.025358839,-0.57262534,-0.4790742,-0.5661042,0.18042414,-0.6542842,0.5646738,0.03587774,-0.25301644,0.18314435,0.08045449,0.40460542,-0.21414098,0.018588196,0.21299015,-0.17816016,-0.16153736,-0.14164202,-0.42487925,-0.3932678,-0.6165173,-0.0846199,-0.45818582,-0.12442859,-0.16696571,0.037540156,-0.24845298,-0.118681066,-0.03641749,0.39634424,-0.38516682,0.08472295,0.25457713,-0.13777107,0.33742863,-0.35182074,-0.08957007,0.025551649,0.39070866,-0.348143,-0.30335286,0.34632212,0.4055549,0.49560156,-0.14754811,-0.13682295,-0.38508123,-0.047380414,0.18487379,0.572743,-0.1326677,-0.15542528,-0.11025537,-0.11877053,-0.07938997,0.241706,0.11624861,-0.4468092,-0.10782344,0.03182251,-0.14368787,0.31266335,0.46942958,-0.27865583,-0.27096847,0.4358198,0.5091787,0.15514913,-0.10340352,0.21699612,0.11423961,-0.538625,-0.24202694,0.18230668,-0.116507836,0.40682298,-0.115013674,0.1451809,0.6874083,-0.13041846,-0.12758611,0.0030481378,0.059250075,-0.035870228,-0.12685972,-0.22138597,0.14493865,-0.5074144,0.091253586,-0.15972696,0.6053865,0.27805075,-0.9060594,0.3758448,-0.57873064,0.05248473,-0.09539841,0.4644519,0.7618605,0.37236327,0.12860768,0.62767816,-0.5172555,0.1018269,0.06297764,-0.4011525,0.25302377,-0.19129744,0.053350445,-0.622408,-0.16441432,0.11820336,-0.21343921,0.18720134,0.26122984,-0.438338,-0.013565993,0.21639806,0.8108107,-0.30977085,-0.108802006,0.50242466,0.96564865,0.8496811,0.1007587,1.254437,0.25572616,-0.2323214,0.19931863,-0.48212644,-0.8131382,0.22484025,0.27278197,-0.49467376,0.39168024,0.07839811,0.20382245,0.39250737,-0.32081807,0.1875066,0.009037296,0.18593508,0.0105217,-0.24262816,-0.28162846,-0.32324547,-0.115673795,-0.18480207,0.16845852,0.18539098,-0.20092613,0.5171387,0.14081489,1.7400563,-0.004502646,0.08824187,-0.071276374,0.40084973,0.19448663,-0.2628525,-0.3141109,0.31064272,0.33194414,0.036736585,-0.45902115,0.121543,-0.07605421,-0.26246908,-0.16092473,-0.38066,-0.088929795,-0.09680059,-0.26277882,-0.1374869,-0.10793088,-0.39854226,0.5849276,-3.023872,-0.006978452,-0.030218316,0.33042985,-0.22117122,-0.29121217,-0.25682172,-0.46919647,0.3559032,0.24569453,0.32916167,-0.6350521,0.3124152,0.5334757,-0.43263033,-0.08110286,-0.5852574,-0.09100862,-0.07443695,0.10137863,-0.02993645,-0.025883686,0.045319963,0.3293757,0.30316618,-0.061916992,0.09416893,0.31058234,0.26746368,0.20607668,0.4323092,-0.08375134,0.55815595,-0.15312785,-0.22236364,0.2595252,-0.49124062,0.123958796,-0.07557213,0.048732467,0.45388234,-0.4003009,-0.7998811,-0.551223,-0.18290223,0.89479977,-0.2688839,-0.21483079,0.3062152,-0.33570883,-0.46404248,-0.08815421,0.41807774,-0.07095734,-0.05965056,-0.7623812,-0.106129244,0.0009154995,0.08238127,-0.064046234,0.09441519,-0.39060935,0.4379631,-0.04258154,0.5010896,0.31470367,0.122349225,-0.3323581,-0.4851081,0.027477067,0.8979608,0.21083583,0.18481013,-0.12909523,-0.20634982,-0.4234513,-0.2125544,0.1476368,0.43342957,0.6623061,-0.17856854,0.02136922,0.28024682,-0.12545052,0.11066095,-0.10283136,-0.28016427,0.011726006,0.016459115,0.42455038,0.49745157,-0.13923359,0.40589073,0.05683499,0.2732226,-0.2611255,-0.42059582,0.58670706,0.95282614,-0.06127627,-0.28040484,0.5977634,0.21338533,-0.32971337,0.39881402,-0.502509,-0.14514068,0.5270907,-0.23007044,-0.3247282,0.19190614,-0.29170498,0.19120911,-0.9078883,0.25546032,-0.10020499,-0.3755435,-0.45224217,-0.05374845,-3.3339279,-0.0013299624,-0.10068269,-0.26451647,0.05896906,0.08139958,0.26108307,-0.47768295,-0.59303534,0.19908904,0.007331117,0.7134334,-0.075847976,0.09727082,-0.22590555,-0.21288712,-0.40717506,0.260227,0.07179386,0.42738184,0.17062669,-0.42024192,-0.019673208,-0.17306627,-0.45603126,0.08802513,-0.48085544,-0.3765548,-0.1653111,-0.62197196,-0.37477607,0.74914175,-0.385505,-0.048922,-0.21530847,-0.0438473,-0.13147406,0.37846768,0.23878917,0.114293166,0.054247744,0.042997662,-0.118030414,-0.2623059,0.30930007,-0.017038472,0.30874956,0.35276496,0.045417126,0.15220632,0.47646147,0.70727473,-0.17276074,0.6895621,0.44483927,-0.055579003,0.2020699,-0.41334876,-0.065884136,-0.32517517,-0.3394933,-0.13246174,-0.3930697,-0.5506523,-0.22046204,-0.38671222,-0.6280758,0.3469204,0.03843008,0.09407358,-0.025799783,-0.05351062,0.33518293,-0.2208538,-0.002702681,-0.15294968,-0.16936915,-0.3619283,-0.18161072,-0.5459722,-0.5203162,0.41178754,0.95940053,-0.12096803,-0.009852576,0.18648693,-0.3201889,-0.07832704,0.1722472,0.03628923,0.30004132,0.36657375,-0.023477597,-0.55335784,0.37702703,-0.15873791,-0.09002021,-0.7268587,0.052327063,0.5407042,-0.5614455,0.8232787,0.1723752,0.07777373,-0.19492677,-0.4707025,-0.29160255,-0.023970384,-0.29768503,0.44257587,0.044634257,-0.7654068,0.33453095,0.39858082,-0.37138847,-0.5828015,0.5246372,-0.04768382,-0.074044734,0.028374728,0.36954013,0.0069699567,0.025831353,-0.054695543,0.33535567,-0.45722765,0.21390647,0.367114,0.081180006,0.43509606,-0.13772328,-0.09224569,-0.6773581,-0.11770348,-0.4115395,-0.26444346,0.20214391,0.013257573,0.2330562,0.15353912,0.12247309,0.30886668,-0.3104658,0.1439998,0.023624193,-0.22030991,0.24783126,0.34915766,0.5029081,-0.4142169,0.52972835,-0.039483063,-0.05339881,-0.16730331,0.039804544,0.47677955,0.23605004,0.31229508,0.12856098,-0.34633932,0.28573984,0.7778417,0.1592118,0.30099156,0.13926452,-0.16765109,0.110071614,0.06771063,0.02910668,0.10508717,-0.45881322,-0.10165655,-0.12803654,0.2806474,0.4070517,0.12249258,0.27653906,-0.15394224,-0.36485195,0.023435032,0.15839761,-0.06116547,-1.2047131,0.3052639,0.28444403,0.75752425,0.4003561,0.07318668,0.04821803,0.5743168,-0.21040897,0.18803905,0.30085087,-0.24221395,-0.5275904,0.52650946,-0.6521458,0.4897377,0.069866106,-0.0064320187,0.027818711,-0.048975814,0.3930705,0.8446218,-0.13220383,0.15443121,0.043951835,-0.25588292,0.20766178,-0.27439344,0.103530526,-0.48674712,-0.23942937,0.57823455,0.42370033,0.3874911,-0.14736871,0.013114605,0.15658386,-0.07392707,0.0910164,0.07503746,0.06998316,-0.08607888,-0.5981753,-0.32992265,0.47103107,-0.06656582,0.122084364,0.06973945,-0.16796511,0.2691482,-0.20053701,0.054556273,-0.13492146,-0.6953781,-0.08184074,-0.22322181,-0.4016234,0.5360554,-0.16706926,0.25158215,0.20746475,0.091986455,-0.31946546,0.65039134,0.19362968,0.77528894,-0.1243924,-0.14602517,-0.23796962,0.105769664,0.17630866,-0.19820169,-0.03665879,-0.29927412,0.010590827,-0.48464426,0.31227186,-0.050893273,-0.42309695,-0.06703425,-0.054554693,0.18067531,0.56753695,-0.21905161,-0.11156731,-0.060233597,-0.07730916,-0.3134833,-0.1517778,-0.15328452,0.23470852,0.19297092,-0.13115993,-0.12474189,-0.09785014,-0.15838553,0.20047957,0.043325625,0.39062682,0.4407296,0.10948763,-0.29221758,-0.109918036,0.1726498,0.42024264,0.02858281,-0.10092076,-0.28997624,-0.2666251,-0.3300813,0.30254993,-0.20748827,0.35719168,0.07729098,-0.37651044,0.6293052,-0.12356785,1.0877804,0.072882086,-0.22696489,0.10509089,0.34836337,0.09673349,-0.051178813,-0.37852955,0.82756305,0.5440096,-0.06763455,-0.115982704,-0.33760256,-0.14421944,0.20210825,-0.19302951,-0.19422702,0.03308755,-0.633185,-0.20855123,0.26887065,0.018208535,0.34733137,-0.033673447,0.045645952,0.24547288,0.06774931,0.2253418,-0.36665872,-0.030294705,0.3802773,0.2840189,0.18698683,0.24691455,-0.39240265,0.31293485,-0.41972554,0.07401595,-0.15675476,0.17108808,-0.19189288,-0.21113703,0.19760005,0.091822185,0.2554076,-0.112900004,-0.36108658,-0.20731045,0.61249536,0.07409106,0.18491766,0.80698115,-0.21804956,0.06826731,0.02222335,0.44202882,0.87475723,-0.20367436,0.019346794,0.51311344,-0.22537944,-0.6684999,0.3347762,-0.37386325,0.3063887,-0.05940973,-0.27934092,-0.41629994,0.16310717,0.14234123,0.14197668,0.13383324,-0.4078967,-0.17163534,0.28974143,-0.29203695,-0.25320566,-0.35219595,0.01982019,0.64670813,-0.31818232,-0.20883518,0.14754209,0.16594301,-0.27756786,-0.4939731,-0.0023320755,-0.20612577,0.2018236,0.09501384,-0.3687292,0.015029786,0.023379147,-0.30171347,0.31394774,0.29068297,-0.3664584,0.012197244,-0.29173055,-0.15033753,0.79990107,-0.26101208,0.11934159,-0.5753926,-0.5397526,-0.91998076,-0.2478912,0.31758296,0.030058486,-0.09255908,-0.54680413,-0.072670735,-0.00028102397,-0.008607197,0.05152111,-0.40403566,0.40545782,0.08284431,0.27260703,-0.02859406,-0.7358944,-0.0875542,0.14318146,-0.21452291,-0.69958526,0.6102236,-0.10504959,0.9258606,0.113832556,0.09261852,0.31592697,-0.37717193,0.08415702,-0.20994253,-0.15727344,-0.5909452,0.024294369,694 +264,0.36285278,-0.09693371,-0.51073456,-0.012629977,-0.386963,0.15105395,-0.16725782,0.6341955,0.28306878,-0.44039422,-0.08796734,-0.11507416,-0.06461161,0.33969548,-0.15946627,-0.64457715,0.1765104,0.09292653,-0.44351566,0.40185288,-0.37822953,0.19559015,0.059310652,0.31227922,0.24804972,0.27225092,0.06227974,-0.024764262,-0.14998557,-0.15165819,-0.068344384,0.29268262,-0.52017635,0.31124985,-0.17911027,-0.2864915,-0.047823828,-0.51531255,-0.18866806,-0.7485177,0.23642035,-0.60837644,0.41936907,-0.17221442,-0.22540624,0.120306626,0.38533905,0.31270593,-0.103076465,-0.2086902,0.031135518,-0.13796285,-0.15748583,0.0013158282,-0.2405556,-0.34743482,-0.54219836,0.18822162,-0.4417339,-0.11607153,-0.24702902,0.17477793,-0.3606868,0.055717263,-0.05288779,0.63253856,-0.35987937,0.025443252,0.38752514,-0.2558152,0.07900389,-0.62655574,0.007028538,-0.05156312,0.23258725,-0.106177896,-0.15841755,0.41473484,0.22240692,0.5449965,0.15191263,-0.22213466,-0.32589403,-0.08629232,0.05564968,0.4457231,-0.08355428,-0.22585687,-0.20385166,0.1614439,0.06358026,0.14268093,0.13409382,-0.20324959,-0.11374807,-0.002049919,-0.27822155,0.43131942,0.36470416,-0.38334864,-0.14701429,0.28139463,0.45035106,0.23801918,-0.052503824,0.012425963,0.10858056,-0.62198216,-0.22017066,-0.023443008,-0.12387622,0.34510577,-0.22907877,0.282,0.64210165,-0.14478339,-0.073390566,0.17823417,0.084029004,-0.04127337,-0.46172917,-0.17798789,0.17709698,-0.58995277,0.1063502,-0.11078929,0.8340016,0.1798537,-0.5301712,0.26511267,-0.522282,0.15309791,-0.051421765,0.46116096,0.71552557,0.50933874,0.27914152,0.8721307,-0.25338775,0.09914156,-0.2868504,-0.3708869,0.08446756,-0.27395254,0.107600465,-0.42762837,0.115220994,-0.08049516,0.119817905,0.18770319,0.25163284,-0.51102805,-0.07727801,0.03460384,0.8454095,-0.16601987,-0.26326582,0.7230732,0.7885348,0.9389232,-0.06654535,0.86606795,-0.015882012,-0.10491791,0.36148167,-0.053186905,-0.59440285,0.38170677,0.3084305,-0.088833176,0.13857335,0.014873552,-0.113137595,0.59366757,-0.25976914,-0.020413645,-0.16253829,0.21600777,0.23008998,-0.16346982,-0.31625497,-0.34264386,-0.0019270977,-0.09375438,0.25060236,0.28925303,0.015445092,0.40528235,-0.1404438,1.6350137,-0.0971214,0.11433489,0.17308213,0.56940407,0.23020093,-0.122740634,-0.10884139,0.120204836,0.18565139,0.16169286,-0.49338874,0.033699997,-0.23669483,-0.44595304,-0.08744513,-0.40074462,-0.2613768,-0.07559357,-0.46567857,-0.18671761,-0.13266358,-0.282288,0.37352264,-2.7920609,-0.24032523,-0.03879835,0.28300825,-0.38933504,-0.3746033,-0.19909383,-0.5395692,0.44031212,0.25611824,0.539416,-0.49856472,0.46826518,0.4021199,-0.5735001,-0.2952679,-0.56105465,-0.021475013,0.027908945,0.17888047,0.05481583,-0.27538958,-0.12876718,0.030104568,0.60442126,-0.19789392,0.04272805,0.21105677,0.30778947,-0.11497231,0.53041756,-0.14053904,0.67638123,-0.44621378,-0.17777282,0.3669802,-0.40339667,0.18536706,-0.17738108,0.0765588,0.5411809,-0.3688636,-0.93866533,-0.62070805,-0.10314365,1.2746369,-0.14570867,-0.2604576,0.2480871,-0.56554514,-0.21133308,0.056361835,0.50258577,-0.037009936,-0.027983883,-0.6010436,0.13971713,-0.07104299,0.11690092,-0.045802604,-0.07981045,-0.40118155,0.63442534,-0.046857443,0.47937432,0.25225142,0.09684492,-0.3108714,-0.3927413,0.008530843,0.8178273,0.36454332,0.12093418,-0.26979285,-0.13194914,-0.45927575,-0.081654556,0.065139465,0.63727486,0.59011334,0.03608695,0.09074233,0.32969135,0.02246209,0.0068795364,-0.093880795,-0.35307276,-0.15663436,0.1525441,0.6491131,0.57128984,-0.0042828103,0.38671616,-0.0062349993,0.25642353,-0.23685338,-0.5488604,0.5665236,0.77495855,-0.30704385,-0.33066645,0.5345,0.40115213,-0.07985683,0.4005424,-0.48286203,-0.54462504,0.41171065,-0.20332602,-0.41480806,0.06976178,-0.29081243,-0.012730245,-0.7766145,0.06833863,-0.38986915,-0.40494806,-0.41257355,-0.21290684,-3.3967414,0.118541084,-0.14182444,-0.033519913,-0.23600677,0.017685851,0.11008124,-0.49689618,-0.5539667,0.06234397,0.14051183,0.7881373,-0.106544204,0.12628888,-0.2596167,-0.31369457,-0.23962641,0.1078412,0.07377904,0.28204188,-0.0061670938,-0.42600614,-0.034112968,-0.2531638,-0.41353598,0.12365316,-0.7009758,-0.47486475,-0.2274499,-0.5063851,-0.3011029,0.71812844,-0.45370737,0.14785744,-0.12869594,0.020943923,0.028103836,0.26579648,-0.01948353,0.071217105,0.2202793,-0.21061316,0.072853185,-0.29744747,0.23811173,0.08662355,0.47471988,0.52507824,0.05273328,0.24598725,0.6692665,0.74531853,-0.11243617,0.956249,0.39252454,0.040341582,0.41242692,-0.1792777,-0.37308806,-0.39451975,-0.16222008,0.074309595,-0.42705896,-0.27432138,0.11858987,-0.3734541,-0.8320558,0.48741198,0.10947944,-0.011718655,0.0060715834,0.21631822,0.56600827,-0.32716158,-0.044789508,0.05349068,-0.027064772,-0.48341015,-0.33018735,-0.52679276,-0.6076283,0.0047070426,1.0489258,-0.23901659,0.114018604,-0.037064426,-0.07935374,-0.0032004078,0.016882312,0.08711205,0.14699936,0.38578776,-0.10904904,-0.6705491,0.37981662,-0.31515837,-0.11638527,-0.3179622,0.349691,0.6187985,-0.6134156,0.4346693,0.360267,0.10712172,-0.16374843,-0.41593367,-0.001464661,-0.12335965,-0.23434427,0.45313555,0.24758561,-0.837051,0.5002178,0.2372415,-0.31399447,-0.82017845,0.46215135,-0.10054906,-0.15142919,-0.14015462,0.2901244,0.26223895,0.032106917,-0.13564178,0.049431562,-0.48833808,0.10174502,0.124121666,-0.0317657,0.47790068,-0.33196127,-0.15742391,-0.67937905,-0.05669709,-0.5633209,-0.36572066,0.22355196,0.05663738,0.03368377,0.15063757,0.032953892,0.3091072,-0.1496048,0.07668516,-0.1302851,-0.1729639,0.36377886,0.43001726,0.43584165,-0.49568197,0.54484725,0.0045363386,0.075040855,0.17709474,0.021676807,0.4234298,0.0433904,0.4879267,-0.08128379,-0.037814897,0.18590587,0.91524607,0.061411362,0.32109383,-0.09298995,-0.112296455,0.046582546,-0.009208189,0.085435964,0.065333344,-0.6378221,-0.06625404,-0.2969275,0.095591314,0.6059704,0.2209877,0.34476137,0.10103511,-0.25747645,0.057492983,0.04011744,-0.19070311,-1.2648023,0.4553194,0.16237777,0.9282224,0.2916757,0.10725509,0.057898674,0.751963,-0.12567817,0.27501455,0.32353362,-0.09998963,-0.47894922,0.5697869,-0.7772318,0.6260464,-0.04603602,0.014503989,0.019370833,0.047789834,0.5367873,0.7152533,-0.20437908,0.0040591042,0.008510208,-0.34156358,0.139859,-0.36454195,-0.010706242,-0.5403087,-0.24915822,0.6089311,0.5039541,0.30874988,-0.23474984,-0.03620955,0.118760996,-0.008886886,0.01416018,-0.13732377,0.067226164,0.0035517374,-0.4963831,-0.15247229,0.55262923,0.11608431,0.41096073,0.07397099,-0.15545997,0.36871016,-0.09953592,0.0049091023,-0.27701095,-0.53568584,0.02222445,-0.41079333,-0.5360292,0.2980124,-0.14552283,0.20746756,0.20038871,0.068911046,-0.37980992,0.6389214,0.00057648815,0.679706,-0.2269496,-0.059975546,-0.27697214,0.2428606,0.12944874,-0.2556558,-0.14030688,-0.32616657,0.11900215,-0.4547357,0.28322202,-0.20257396,-0.3732729,0.07753337,-0.062797666,0.028974835,0.44071054,-0.07766732,0.11424231,-0.007754715,-0.28539544,-0.238737,-0.2040916,-0.10075007,0.26839694,0.1161977,-0.0207798,-0.14950211,-0.30536795,-0.044381544,0.34484118,-0.043964703,0.19801578,0.17174283,0.080691546,-0.3538356,-0.1090108,0.26029947,0.67127836,0.05361325,-0.17283545,-0.3104145,-0.14762364,-0.3515774,0.30809408,-0.057801537,0.31547537,0.08177049,-0.35942253,0.78445053,0.01678389,1.1199546,-0.004060324,-0.35265654,0.09242683,0.35016638,-0.021913346,-0.03933498,-0.3894561,0.8074233,0.31354657,-0.14314343,-0.13474582,-0.53755414,-0.052067775,0.117594905,-0.21817939,-0.18108366,-0.13846582,-0.50943524,-0.24094565,0.30520517,0.17355792,0.24835548,-0.27264178,-0.053664435,0.1639623,0.03589372,0.24452958,-0.40680832,-0.16748479,0.28791627,0.36907348,0.016865684,0.049001858,-0.6363304,0.36878023,-0.6283915,0.14477918,-0.14079767,0.19086663,-0.3368471,-0.13063966,0.31063554,-0.005456078,0.40391308,-0.28026277,-0.36188754,-0.25763908,0.4208957,0.19074361,0.18743989,0.6926294,-0.2400845,-0.080240086,0.121232525,0.57618076,0.8464034,-0.24885936,0.07130409,0.337921,-0.21512851,-0.6110773,0.24829584,-0.34636515,0.0763518,0.058925357,-0.20907284,-0.43057373,0.2920663,0.21887162,0.15671635,-0.046287518,-0.6676773,-0.13832338,0.24049743,-0.24123976,-0.30464205,-0.36759427,0.044198193,0.5979615,-0.0760517,-0.27342397,0.23769291,0.41235003,0.05543498,-0.53797317,-0.050470013,-0.19978271,0.19590214,0.07143852,-0.32435894,-0.14789881,-0.02624592,-0.58458865,0.16804013,0.11512882,-0.27056873,0.05466731,-0.14627819,-0.01756064,0.85017854,-0.082657345,0.25970775,-0.40748733,-0.40607157,-0.7956303,-0.2402199,0.31236416,0.040507186,-0.08743234,-0.64700425,-0.14953406,-0.20949885,-0.31302178,-0.07503862,-0.51381546,0.39105874,0.034198873,0.3195112,-0.08444551,-0.7182895,0.26600358,0.19686483,-0.122604705,-0.4804805,0.2587287,-0.11277563,0.80025375,0.158818,-9.9460285e-06,0.3249451,-0.35167176,0.032634266,-0.20304102,-0.1410965,-0.6457087,0.032176804,695 +265,0.3967573,-0.24948764,-0.32817185,-0.12868842,-0.14943627,0.11660636,-0.12029131,0.42600402,0.10276326,-0.59104,-0.23615113,-0.28160724,0.05814995,0.25055614,-0.22522208,-0.3866977,-0.1417504,0.11663183,-0.41991663,0.49485356,-0.4280363,0.2921622,0.13704477,0.32006633,0.12616755,0.22301522,0.17632142,-0.16844644,-0.20565067,-0.08586691,-0.0376954,0.3493151,-0.56616527,0.18898301,-0.09523416,-0.22268134,0.018675907,-0.5012041,-0.23175591,-0.6726695,0.30672783,-0.8965753,0.4303015,-0.0078685405,-0.27748024,0.3806982,0.14853859,0.3744508,-0.1976203,0.034693424,0.20141207,-0.020227907,0.013482632,-0.08062972,-0.1629695,-0.20199344,-0.45274842,-0.008820363,-0.29556262,-0.32236132,-0.24000715,0.15137263,-0.23576126,-0.09864752,-0.037374936,0.50832677,-0.5181424,0.03769857,0.17543554,-0.14853121,0.56771064,-0.48817793,-0.17209128,-0.1360877,0.31985578,-0.4006811,-0.12687099,0.2422239,0.33933517,0.36243457,-0.1243677,-0.025559548,-0.28672716,-0.113502346,0.25199208,0.46240738,-0.16648369,-0.33821017,-0.029193325,0.017873466,0.0935342,0.27998063,0.13133065,-0.45302302,-0.18100923,0.040786315,-0.22979791,0.24429254,0.34053108,-0.26394328,-0.20901148,0.34645227,0.57124,0.1529524,-0.109064676,-0.041210644,0.029434893,-0.46087918,-0.113480724,0.23082593,-0.2572711,0.45205238,-0.07367256,0.32086667,0.65832895,-0.20356542,0.11885821,-0.062052026,0.047215454,-0.17429088,-0.25251713,-0.2925221,0.17109999,-0.28625268,0.12941171,-0.09748415,0.801848,0.10104133,-0.8038744,0.2930836,-0.5165025,0.013277769,-0.26483208,0.44950676,0.51698124,0.33334592,0.25641873,0.6144482,-0.5357105,0.06746542,-0.12528023,-0.42169583,-0.06384375,-0.14503448,-0.19560155,-0.48293063,-0.02453399,0.046398737,-0.17324758,-0.017476348,0.34817538,-0.5678232,0.08061897,0.054975275,0.787881,-0.37132177,-0.024971664,0.64290833,0.8456126,0.76037765,0.15928072,1.1212736,0.24226311,-0.24244124,0.22058997,-0.3451561,-0.6880674,0.3595582,0.5051221,-0.21304312,0.23924749,0.13890605,0.051113572,0.27074528,-0.3534511,0.06810966,-0.28854913,0.08315535,0.0815029,-0.10390661,-0.36691532,-0.21623237,0.04146533,0.11999877,-0.033403777,0.03504371,-0.11658607,0.26372442,0.05509995,1.923001,-0.11605821,0.17945187,0.08158198,0.31231335,0.1660159,-0.082705036,-0.15532635,0.5363867,0.39160267,0.15612802,-0.59634274,0.13757,0.0138266,-0.52066857,-0.04967784,-0.3639138,-0.006521976,0.099558935,-0.4086853,-0.015143188,-0.0743889,-0.31354257,0.45335075,-2.8279433,-0.16442999,-0.20590499,0.33894637,-0.39120114,-0.35602838,-0.14788038,-0.33664542,0.47146118,0.43172055,0.49901152,-0.6227388,0.25681823,0.36409935,-0.39490938,-0.18236068,-0.56913936,-0.13096647,-0.044221256,0.23842672,-0.01422052,-0.004610913,0.11569198,0.12191688,0.30455983,-0.09705923,0.08065614,0.23983759,0.44104663,0.19322665,0.56739247,-0.050860923,0.39985052,-0.11221086,-0.23921145,0.32340842,-0.18397301,0.08014568,0.08776913,0.10535767,0.35201824,-0.5693432,-0.7621257,-0.8012151,-0.5938843,1.1982198,-0.31142017,-0.3863777,0.23448084,-0.06389972,-0.3273961,-0.12215878,0.34728405,-0.05205008,-0.035426904,-1.0129465,0.063257046,-0.06271106,0.2641844,0.006932826,-0.100227885,-0.46939275,0.5592426,-0.16560772,0.4997681,0.44489905,0.16857077,-0.27472255,-0.4116124,-3.1801064e-05,0.9963951,0.27835843,0.10730407,-0.113488086,-0.1946606,-0.31830925,0.032049824,0.15754332,0.45758376,0.62833124,0.09506085,0.051846437,0.31414208,-0.122523084,0.064901926,-0.17513646,-0.339591,-0.024145855,-0.07506548,0.5649487,0.33414173,-0.09784659,0.60956883,-0.10262474,0.28215653,-0.080860056,-0.33816224,0.33327857,0.93156785,-0.06635965,-0.30359662,0.5683735,0.5343305,-0.28713742,0.31995338,-0.58438784,-0.13380781,0.511436,-0.28802642,-0.50016195,0.22510916,-0.30266324,0.20068334,-0.90954906,0.30829096,-0.26183417,-0.36797392,-0.4898451,-0.10495052,-3.2128754,0.21751185,-0.15594779,-0.4016485,0.041695215,-0.19956261,0.14714582,-0.67270625,-0.5487938,0.2006525,-0.036219705,0.545977,-0.007907082,0.12929301,-0.21309032,-0.12451419,-0.12326231,0.0863046,0.13918318,0.29191488,-0.016045209,-0.4971692,-0.02357179,-0.1056897,-0.38069913,0.117982104,-0.5613221,-0.5723589,-0.104956545,-0.53107035,-0.32593015,0.52085155,-0.4136424,-0.039831296,-0.1001816,0.05273723,-0.13577032,0.42503375,0.17194845,0.24011554,0.07462954,0.04564909,-0.046981886,-0.34789905,0.40093726,0.10495916,0.022271864,0.2792505,-0.21224254,0.26395687,0.42269787,0.5611067,-0.027339268,0.6570816,0.5027103,-0.10412904,0.16100861,-0.39799517,-0.17401081,-0.56481296,-0.31943846,-0.01676262,-0.37328276,-0.54766923,-0.12602493,-0.36238515,-0.72908986,0.6224774,-0.07633391,0.09740227,0.042052887,0.27387002,0.43022645,-0.14414819,-0.04235702,-0.033641532,-0.15572974,-0.587847,-0.23349476,-0.60115373,-0.41232577,0.0650691,0.9867775,-0.12622514,0.06098427,-0.020689623,-0.16655995,0.007578186,-0.010016266,-0.04505893,0.25514597,0.35720667,-0.15344897,-0.63140875,0.4005795,0.036787868,-0.2375381,-0.5680575,0.23368892,0.6354734,-0.49299,0.55066764,0.2831666,0.024060579,-0.17047733,-0.4321771,-0.18347086,0.0027647733,-0.3473416,0.43390572,0.09705796,-0.58000076,0.38674164,0.45860627,-0.18392196,-0.7909352,0.67312837,-0.043219294,-0.35021153,0.10324125,0.25859845,-0.038712755,-0.036126796,-0.19015703,0.2561522,-0.40617433,0.25758216,0.26385072,-0.04816739,0.3830887,-0.20140807,-0.020890625,-0.7194626,0.10755878,-0.42126682,-0.2550672,0.26634178,0.088563785,0.0342846,0.28293812,-0.06020533,0.5451669,-0.3050253,0.045416195,-0.014040482,-0.10269907,0.19083683,0.40287802,0.3014396,-0.4402565,0.4745162,-0.03674323,-0.04816235,-0.20854715,0.15042645,0.45299104,0.1894486,0.23027721,-0.17415714,-0.27700698,0.454801,0.6297062,0.28898507,0.5297166,-0.063362375,-0.1460841,0.21764088,0.17036308,0.23003188,-0.07812152,-0.48681286,0.039326303,-0.06258187,0.08410979,0.3784459,0.11252644,0.28799313,-0.16505273,-0.40051848,0.087540515,0.23861167,0.078160286,-0.88664407,0.3211712,0.12631553,0.7250073,0.45181364,-0.060955223,0.13550459,0.57754093,-0.3117959,0.095957085,0.18783443,-0.04202226,-0.5884016,0.46203688,-0.6400986,0.3664159,-0.110973574,-0.053418454,-0.021696357,-0.06647357,0.31986412,0.72046703,-0.0968224,0.13690199,-0.023522858,-0.30881685,0.17565466,-0.4555783,0.03243999,-0.53738433,-0.29335573,0.44871882,0.47911826,0.35217416,-0.14908075,0.019089127,0.0532231,-0.088720456,0.24468714,0.20350641,0.26175067,0.107309625,-0.767679,-0.27265355,0.55234927,0.06727597,0.16091134,-0.04797023,-0.2225645,0.34304124,-0.12715572,-0.058838297,-0.024752226,-0.60793597,-0.07137024,-0.24860138,-0.28599957,0.25083384,-0.09120684,0.19529477,0.13789259,-0.037230253,-0.33551896,0.34416077,0.34322146,0.85689074,-0.0043634274,-0.17962632,-0.43710807,0.06799411,0.19168898,-0.074046746,-0.07699124,-0.25334823,-0.03237115,-0.6682479,0.44924575,0.13636576,-0.33922693,0.2094231,-0.12189693,-0.062304392,0.6201639,-0.041752305,-0.06232914,-0.11748377,-0.21929915,-0.23637746,-0.12880678,-0.15320864,0.21699168,0.19309138,0.087044835,-0.09569867,0.025792273,-0.17969933,0.52553266,0.029001491,0.48904946,0.3847538,0.12321555,-0.4071611,-0.10523241,0.022200465,0.36648285,-0.057970013,-0.10248712,-0.23329654,-0.46305677,-0.19998479,0.08655287,-0.15447603,0.339145,0.12251267,-0.36846307,0.7445261,-0.16733749,1.0509304,0.01702307,-0.33867794,0.015641121,0.39706105,-0.017719602,-0.038401406,-0.27741373,0.74226516,0.6651323,0.042394377,-0.0684005,-0.21716264,-0.15820861,-0.003473107,-0.1310681,-0.062273216,0.008860846,-0.5207698,-0.4233538,0.18005086,0.20735316,0.14174007,0.020590307,0.09989584,0.1594147,0.008517893,0.31124586,-0.35804263,-0.058449157,0.25380918,0.2922146,0.13109413,0.03372767,-0.5041564,0.46261552,-0.43882734,0.11929051,-0.3361852,0.12333949,-0.121588595,-0.20398359,0.1495296,-0.07303406,0.32762542,-0.19953838,-0.3104316,-0.15716007,0.5631305,0.075875886,0.11876752,0.54666257,-0.25302097,0.28508773,0.00429256,0.5182138,1.0398362,-0.22101326,-0.03479847,0.3660288,-0.3230391,-0.5021446,0.33092833,-0.2018892,0.19785486,-0.020762937,-0.10645464,-0.45091644,0.24143271,0.20454977,-0.052856095,-0.15064386,-0.48785704,-0.18596411,0.46873653,-0.31614298,-0.23118271,-0.35812977,0.2391352,0.55275595,-0.3056551,-0.24110843,0.0342657,0.17553638,-0.31251702,-0.35738784,-0.15910527,-0.32429683,0.26523945,0.119101234,-0.34824544,-0.09301956,0.11057476,-0.20112786,0.06742794,0.12818351,-0.3488596,0.023300687,-0.22478531,-0.16676967,0.94042754,-0.14296725,-0.110198975,-0.53458613,-0.32518873,-0.88653743,-0.2550169,0.6113777,0.01781019,0.0714374,-0.44673258,0.06095345,0.0086921295,-0.17235593,-0.12661436,-0.2906078,0.41934347,0.15887684,0.5113621,-0.14096175,-0.5626905,0.11919455,0.078513525,-0.07900419,-0.6534836,0.5175762,0.050625358,0.7367973,0.027466945,0.08045812,0.3413433,-0.48278138,-0.15884325,-0.17936927,-0.3259133,-0.7544917,0.003610313,696 +266,0.35902724,0.014307332,-0.552769,-0.24525578,-0.21466878,0.14539021,-0.00038337708,0.13369599,0.3418349,-0.23526439,0.012772886,-0.19282836,-0.06007326,0.320908,-0.027927483,-0.7999412,0.012331597,0.13751419,-0.6240381,0.29588583,-0.46371275,0.37628117,0.08048273,0.34064025,-0.07168169,0.3528362,0.1460479,-0.040972244,-0.015015451,0.24377565,-0.15523832,0.4008418,-0.47036102,-0.010036623,0.077701725,-0.19046974,-0.062313534,-0.1398816,-0.3943275,-0.6067628,0.40762872,-0.7329472,0.57605493,0.056518793,-0.34449294,0.093806,-0.031154899,0.1707962,-0.3614921,0.18160218,0.19835024,-0.42321938,0.0017944734,-0.20176545,-0.34174487,-0.48181972,-0.61719716,0.010291195,-0.5890778,-0.1291729,-0.3867577,0.21933489,-0.37821472,-0.05418959,-0.2481265,0.4718302,-0.41558537,-0.037796482,0.30390173,-0.27290183,0.08397531,-0.33380842,-0.12421873,-0.117820665,0.1655407,0.09288066,-0.15695445,0.18119174,0.22890984,0.6673114,0.1309148,-0.29627874,-0.31077754,0.06545638,0.17977487,0.4931348,-0.1727998,-0.023113318,-0.1634566,0.0199404,0.05409594,0.18647008,0.02867585,-0.44453558,-0.013075964,0.16083114,-0.16293383,0.30254802,0.50114197,-0.38886273,-0.35709414,0.39101753,0.60647935,-0.053862974,-0.22789812,0.20021804,-0.09532539,-0.51519394,-0.22579572,0.22555457,-0.13841525,0.4416855,-0.13750812,0.043369096,0.81956077,-0.04982497,-0.09078487,-0.15741786,-0.031230653,0.053106047,-0.24769284,0.1976817,0.051727258,-0.36909968,0.03055751,-0.15664954,0.6293369,0.120020896,-0.7665573,0.36463764,-0.43922198,0.2722643,-0.19971503,0.6743679,0.81138176,0.27765444,0.25959834,1.008182,-0.6722642,0.012895632,0.038557578,-0.5297272,0.16154371,-0.07586579,0.015783977,-0.5436708,0.0021486084,-0.05752654,-0.0950188,0.026295569,0.2820771,-0.48424876,-0.077359535,0.10526252,0.7898903,-0.39581493,-0.046590727,0.59603435,0.9345469,0.7928911,0.028106613,1.2203257,0.36410674,-0.2501927,0.266545,-0.6353189,-0.5979413,0.072955005,0.30088148,0.34113923,0.36951447,0.16585486,0.20752423,0.53940517,-0.19210714,0.1634584,-0.14872281,0.16252628,0.15720414,-0.11339356,-0.3610202,-0.056153603,0.08816745,0.052188482,-0.010654183,0.29926366,-0.20333236,0.3752176,0.03744111,1.4376653,0.071369745,0.013177981,-0.00932701,0.44278902,0.21402553,-0.09098606,-0.10801354,0.4613468,0.3270859,-0.12014947,-0.4840632,-0.022271313,-0.32880458,-0.39123005,-0.2506538,-0.35852292,0.09541778,-0.07635892,-0.45430824,-0.04874928,0.13809238,-0.4713786,0.4311766,-2.511801,-0.24115425,-0.06829734,0.32279506,-0.08073168,-0.285792,-0.27830508,-0.3540324,0.12614484,0.4435391,0.31036323,-0.6468786,0.4375316,0.29385525,-0.26568404,-0.057401035,-0.6239767,0.033818703,-0.14465924,0.3639335,0.030776305,-0.022768853,-0.20184407,0.214221,0.61673576,0.0109882,-0.18486357,0.23755908,0.49438593,-0.014738449,0.5527382,0.18204361,0.61730045,-0.10666873,-0.27001044,0.38587007,-0.35152644,0.19735463,0.08353929,0.1301743,0.26159313,-0.32764402,-0.9451285,-0.547572,-0.24802813,1.2516583,-0.43040007,-0.29706797,0.44404775,-0.18775311,-0.2505732,-0.0718569,0.42676684,-0.1821511,-0.01320647,-0.71866363,0.08632912,-0.014693125,0.114401355,-0.11806648,0.022904182,-0.2386408,0.669186,-0.24666776,0.42158425,0.2922067,0.20466174,-0.077569865,-0.3839059,0.119936,0.82282853,0.2377208,0.10630536,-0.015900172,-0.20927788,-0.028608743,-0.19288747,0.14820448,0.50135285,0.6870105,-0.023867518,0.11216261,0.43268624,-0.09469588,-0.09473293,-0.14875866,-0.3810136,0.064849086,0.031268213,0.420332,0.5388031,-0.21790634,0.3457785,-0.06950581,0.11194351,0.032491494,-0.540523,0.44553173,0.93421006,-0.20170236,-0.26136258,0.50598884,0.3360958,-0.519448,0.33150494,-0.5533965,-0.13353075,0.625949,-0.11934029,-0.32908306,0.17239238,-0.3221955,0.06525445,-0.80158585,0.17136,0.12945895,-0.5142671,-0.4007146,-0.20267805,-4.2683196,0.20555793,-0.30396944,-0.0058311066,-0.002412041,-0.06405371,0.22609052,-0.45134556,-0.40048265,0.054762147,0.087743774,0.35464317,-0.10472742,0.09078921,-0.3171922,-0.0473451,-0.22356786,0.29014072,0.04448817,0.33847058,0.107252926,-0.46422967,0.120752454,-0.3489877,-0.4937598,-0.05722107,-0.53030986,-0.47535673,-0.13182408,-0.54920477,-0.28399912,0.6736505,-0.25108063,-0.099740855,-0.4497381,0.094642,-0.1793848,0.35604864,0.16552998,0.20507075,0.029366931,-0.00012088418,-0.24435237,-0.37705368,0.29279456,0.0012047251,0.28060308,0.42982626,0.013498697,0.054872945,0.6217517,0.5908772,-0.08517089,0.6765999,0.41297576,-0.120860204,0.3149773,-0.33277386,-0.16087681,-0.8420849,-0.48492968,-0.16225226,-0.52184486,-0.54428077,-0.22484387,-0.43264997,-0.8160587,0.40974715,0.10167252,0.1684324,-0.07745215,0.33672157,0.4797637,-0.06132086,-0.07422844,-0.16691509,-0.3565094,-0.55231816,-0.4009387,-0.56911343,-0.5879336,0.24289536,1.0685622,-0.19366333,-0.15281974,-0.15438445,-0.2894195,-0.0014724369,0.19799653,0.24687523,0.32207137,0.43557295,-0.17171535,-0.59761745,0.33565372,-0.25620577,0.016211966,-0.8124621,-0.047544148,0.4145568,-0.66355693,0.7677518,0.062302094,0.22459303,0.32339293,-0.49996266,-0.40386364,0.045393027,-0.20024149,0.64997727,0.15254335,-0.63487947,0.49537715,0.18098399,-0.19256891,-0.53807425,0.27335554,-0.17092994,-0.13121904,0.17585403,0.3174175,-0.009460875,-0.079493016,-0.03767085,0.15320657,-0.4088075,0.381964,0.46132654,0.019681076,0.35425404,-0.021056572,-0.26944837,-0.66344845,-0.14673088,-0.44442147,-0.18167622,-0.029156374,0.12427548,0.1628591,0.032815654,-0.048088755,0.44278663,-0.22461002,0.13081613,-0.00051786104,-0.25898907,0.34012693,0.4573973,0.19909407,-0.5137421,0.56178206,0.03464389,-0.09535083,-0.0061616194,0.058349054,0.5371798,0.19692917,0.29165056,-0.07008072,-0.10297224,0.28295764,0.70284176,0.14769289,0.33671921,0.10001555,-0.22585087,0.4226575,0.21979414,0.008937913,-0.1646206,-0.27028647,-0.034260314,0.060884405,0.2803178,0.3581794,0.21728602,0.34976667,-0.08578385,-0.2087269,0.21835227,0.26598924,-0.048827816,-1.0786278,0.16784103,0.23905869,0.6658233,0.48011738,0.0036180813,-0.103075944,0.46361706,-0.38954356,0.034757845,0.4002471,-0.25924888,-0.5271394,0.45696086,-0.561035,0.47048348,-0.13726307,-0.022955526,0.23414157,0.32446787,0.313996,0.9417175,-0.113401085,-0.027597459,-0.07704127,-0.18181057,0.06350816,-0.23083301,0.07907859,-0.5268534,-0.33975327,0.535258,0.4778647,0.39803272,-0.32744515,-0.13872576,0.008555128,-0.16276246,0.028811578,-0.09569033,0.003681012,-0.10033953,-0.6216346,-0.3425464,0.4860054,-0.124693826,0.017083477,0.062763184,-0.29871172,0.27491018,-0.18902801,-0.20710939,-0.10414658,-0.5489651,-0.033984024,-0.12334275,-0.5773442,0.3802751,-0.34458977,0.36029133,0.12264525,0.020446133,-0.4704316,0.35428485,0.012188069,0.8342515,0.018395582,-0.092446946,-0.46306458,0.12556845,0.26408863,-0.25218993,-0.07959594,-0.47850525,0.007462009,-0.52530855,0.51959985,-0.19044434,-0.3263582,-0.068009146,-0.21885449,-0.040335704,0.49758187,-0.31006497,-0.2950839,0.10838976,-0.011494366,-0.28180033,-0.023418497,-0.3455293,0.3614724,-0.07285497,-0.12475454,0.0662915,-0.13140143,-0.06461633,0.46418506,0.13893366,0.18025117,0.16402096,-0.07489826,-0.36272565,0.0010309478,0.042908352,0.3433232,0.07079336,-0.026959987,-0.1848465,-0.3741836,-0.36946163,0.12280004,-0.16108519,0.2547422,0.14216511,-0.5472843,0.6920875,0.18809503,1.2737421,0.13326111,-0.24176201,0.059660707,0.58528596,0.1608078,0.22671695,-0.31578958,0.69387585,0.6820286,-0.068688475,-0.25024942,-0.37153327,-0.10659849,0.22667168,-0.24500042,-0.082037784,-0.15050046,-0.79854697,-0.28646132,0.11141828,0.19365409,0.3349435,0.047706485,-0.04040695,0.040169008,0.14289255,0.4012209,-0.3274669,-0.19834706,0.3052005,0.19464381,-0.04278985,0.17284101,-0.28644297,0.4823455,-0.48426196,0.1075151,-0.26371464,0.11173437,-0.13072453,-0.2105512,0.1918114,-0.08225208,0.36537263,-0.23669395,-0.17666548,-0.3078789,0.6994003,0.14293966,0.28785232,0.7847399,-0.22993803,-0.03752679,0.18687353,0.4693585,1.3794725,-0.072283044,0.09694384,0.34540835,-0.16840668,-0.5954414,0.18655245,-0.2761761,0.011306226,-0.19850641,-0.41592312,-0.31956986,0.29731655,0.000527668,-0.03169466,0.20121983,-0.427043,-0.26020196,0.31962076,-0.32372558,-0.15044855,-0.31905353,0.2585107,0.7125938,-0.46525273,-0.42450315,0.21909936,0.20108952,-0.2583909,-0.48965752,0.0076257386,-0.28709194,0.41362697,0.25335267,-0.3870969,0.07371522,0.3128942,-0.42190498,0.105052784,0.45105615,-0.3040544,0.15336211,-0.040922213,-0.29060745,1.0718662,0.031056453,0.17654042,-0.68960166,-0.48392355,-1.0584022,-0.29830724,0.47599214,0.11901689,-0.072902955,-0.46734902,-0.16319104,-0.06876647,-0.12364184,0.03290637,-0.55282795,0.3921805,0.011452913,0.4691199,-0.07008458,-0.88581604,-0.13287146,0.14090344,-0.20135571,-0.61511785,0.61718243,-0.13172048,0.7053767,0.09578631,0.078156255,0.26780567,-0.47189465,0.22092867,-0.38716882,-0.12999015,-0.71668017,-0.040503982,701 +267,0.23793477,-0.2978302,-0.3655396,-0.2060988,-0.30797598,-0.11384609,-0.14689589,0.47778973,0.18826987,-0.08994768,-0.15265249,-0.028209042,0.05026316,0.39591807,-0.19251312,-0.48020718,-0.17902015,0.04042634,-0.55150634,0.46197766,-0.54085666,0.22362041,0.07137367,0.40224773,0.05923197,0.45574766,0.21733013,-0.07931493,-0.04330205,-0.13583122,-0.15449204,0.14546442,-0.36655,0.16550438,-0.2573838,-0.26044595,0.12255852,-0.49820906,-0.22656193,-0.6437905,0.025909,-0.77393156,0.38823843,-0.09485766,-0.19589844,-0.0798724,0.15296635,0.26506796,-0.32682475,-0.02462686,0.22963199,-0.014898593,0.03749827,-0.230538,0.06044113,-0.37597707,-0.37270373,-0.050333582,-0.5073904,-0.33749813,0.07030428,0.16155224,-0.29427117,-0.013776746,-0.07248811,0.2988866,-0.5180055,-0.20075302,0.2963378,-0.31875262,0.413076,-0.44289705,0.039573677,-0.093494035,0.41192514,-0.044136986,-0.15689631,0.34498787,0.22913498,0.24422485,0.13373451,-0.16066235,-0.19939454,-0.16876332,0.009563979,0.5186345,-0.1425458,-0.34042376,-0.20822407,0.08281089,0.23547283,0.29914215,-0.003358364,-0.15973479,-0.07081521,-0.22081415,-0.25377294,0.24855289,0.40831712,-0.19416425,-0.1708271,0.28830895,0.44508445,0.24543849,-0.23913865,0.006968995,0.029299699,-0.43676335,-0.19783612,-0.06843474,4.3241183e-05,0.5727365,-0.0745803,0.23718157,0.82445335,0.004358999,0.07088869,-0.03829509,0.037777748,-0.2737251,-0.2290174,-0.18314981,0.12717214,-0.4280952,-0.0023462295,-0.15326767,0.620599,0.1385965,-0.7497031,0.38785404,-0.47466433,0.0570656,-0.14641415,0.48108524,0.41219845,0.45386398,0.28918427,0.6973169,-0.22353704,0.22193232,0.03642823,-0.4013344,0.16188702,-0.26692703,-0.07146694,-0.5231914,0.09770228,0.01828771,-0.0029339015,0.048993647,0.07476115,-0.5693115,0.017014734,0.26385203,0.69891185,-0.2523588,0.0006720185,0.6856804,1.1661084,0.932326,-0.08137739,0.9448731,0.21361008,-0.14205144,0.14459713,-0.2366205,-0.61723554,0.14574696,0.48551998,0.08388639,0.31219858,-0.10625922,-0.08163151,0.3331056,-0.37238416,0.15197872,-0.031427823,0.21464255,0.061274584,-0.08507123,-0.6256055,-0.2534028,-0.01568189,-0.03024354,-0.025231838,0.22124979,-0.14252421,0.4575841,-0.07721744,1.3683665,0.04441126,0.101260886,0.12429353,0.6678206,0.24239798,-0.11069355,-0.0911409,0.45749295,0.32669163,0.07356727,-0.46088448,0.27137095,-0.21519896,-0.48457572,-0.091399916,-0.35517344,-0.05215629,0.016221225,-0.5080875,-0.07620093,-0.019836264,-0.1694295,0.36255616,-3.1404216,-0.16976443,-0.14876355,0.2480655,-0.31256148,-0.067394845,0.07233342,-0.38766614,0.15537475,0.40634745,0.49935195,-0.6248957,0.43963477,0.47745928,-0.45413637,-0.15656003,-0.6483045,-0.11239942,0.0055248877,0.49055487,0.21145551,-0.012914258,-0.09545849,0.2292674,0.5500408,-0.0052716257,0.23104955,0.26023203,0.2771389,0.17437474,0.4129291,-0.025852561,0.5266641,-0.25795856,-0.059994545,0.25460684,-0.31984475,0.18534428,-0.042962693,0.13084717,0.42079926,-0.41611168,-0.81953883,-0.5231504,-0.23858973,1.1005569,-0.2621988,-0.3476296,0.26053545,-0.08221087,-0.1324737,0.045682847,0.42808226,-0.08663012,0.26943004,-0.6003067,0.047074936,-0.046940327,0.09727899,0.02936886,-0.088833876,-0.3680359,0.58382404,0.037558675,0.627534,0.3782392,0.22894846,-0.13704659,-0.44378802,0.0096980175,0.6068022,0.3679971,-0.016245993,-0.09139827,-0.08087607,-0.13353808,-0.1445988,0.074172825,0.44063243,0.7886329,-0.030330746,0.20931609,0.22805396,-0.06619803,-0.03766795,0.011963457,-0.15538791,0.0780693,0.15321033,0.41583106,0.7366775,-0.13966434,0.37156144,-0.25191107,0.5384905,-0.13412446,-0.5272364,0.49267787,0.34339148,-0.18698606,0.022707429,0.49307984,0.533502,-0.37529135,0.45357043,-0.5985474,-0.25046477,0.5658896,-0.08227156,-0.50131375,0.24069694,-0.1777183,0.2647502,-0.94067025,0.42860425,-0.19081637,-0.503857,-0.4207656,-0.16856335,-3.331393,0.10820345,-0.113601066,-0.31773463,-0.16630952,-0.100077525,0.2740826,-0.753852,-0.57544935,0.14415391,0.21359688,0.45276424,-0.0782467,0.09662101,-0.30996737,-0.037352163,-0.103683926,0.2567443,0.016061282,0.24799684,-0.20222244,-0.48289046,-0.22873798,-0.12943381,-0.56985855,0.23128933,-0.5684865,-0.4416134,-0.08335241,-0.5426847,-0.30311388,0.52663475,-0.21783844,-0.0015186071,-0.15436457,0.06720631,-0.23042059,0.18158156,0.15134212,0.16167404,0.050728373,0.0539516,0.19290093,-0.3321659,0.43067196,0.09925048,0.4520925,0.12702154,-0.013174681,0.17516966,0.6694689,0.5058075,-0.22132029,0.83425105,0.38901773,-0.16199675,0.31603327,-0.32883006,-0.24939059,-0.4707529,-0.4525741,0.020199755,-0.3129429,-0.5722443,0.030697938,-0.31637323,-0.70741767,0.5671177,0.010318637,0.24586469,0.011114661,-0.02115932,0.34373203,-0.25068215,0.03841049,-0.007576847,-0.06057871,-0.53085285,-0.22522071,-0.6644772,-0.5185447,-0.024846554,0.9288973,-0.24787532,0.07780741,-0.067658044,-0.318294,0.026176574,-0.06142307,0.116121426,0.3117648,0.20226319,-0.12194004,-0.6765203,0.449142,0.007867475,-0.07783943,-0.2761911,0.029753255,0.65250504,-0.7083649,0.40205663,0.4320304,0.0590822,-0.08447259,-0.4648837,-0.24620768,-0.14250214,-0.087862454,0.5644321,0.06565532,-0.68623126,0.51176465,0.20664324,-0.50633705,-0.588569,0.37934774,-0.17664273,-0.13549943,-0.06093847,0.2179109,-0.041865848,-0.15078357,-0.21571757,0.1751043,-0.4118578,0.2886864,0.25522268,0.06442637,0.47152632,-0.053666994,-0.12487765,-0.6503207,-0.1261934,-0.48534736,-0.18569228,0.33277708,-0.034555867,-0.043387644,0.07520156,-0.013738632,0.29717445,-0.3163851,0.041378837,0.17832834,-0.31900558,0.32582673,0.43426034,0.38999864,-0.39136145,0.49117577,0.13654606,-0.08674031,0.040579736,-0.110405,0.361389,0.029076863,0.31978887,-0.1922055,-0.0860887,0.39277795,0.6566204,0.2292323,0.3630254,0.02029155,-0.16834483,0.37442666,-0.020819085,0.19625483,0.12344352,-0.39213684,0.0794984,-0.17401733,0.17860132,0.38609028,0.2741877,0.29057586,0.06295325,-0.25077638,0.09326114,0.26750273,-0.11814501,-1.0923055,0.4195502,0.32042268,0.6943073,0.37281996,0.2361022,-0.17277762,0.8330742,-0.27462435,0.08642847,0.46259883,0.10863238,-0.58462864,0.72872823,-0.6352965,0.5123861,-0.09813051,-0.14706819,0.15127906,0.03826561,0.4234742,0.6414758,-0.085553214,0.036432333,-0.0770853,-0.23786946,-0.094312504,-0.3579262,-0.017106665,-0.40930966,-0.28096533,0.66216093,0.38831243,0.29163787,-0.07591912,-0.01208152,0.13675158,-0.032130435,0.32412472,-0.031890605,0.031100333,0.0250765,-0.51680225,-0.27219746,0.5775246,0.013039694,0.13724677,-0.21826704,-0.33014542,0.02258555,-0.22387631,-0.083906285,0.026589947,-0.5543786,0.17492512,-0.12503447,-0.34882373,0.47227702,-0.31718883,0.17314757,0.0116795935,-0.06887092,-0.11279834,0.08124984,0.010263809,0.75573903,-0.06869482,-0.24642546,-0.29535723,0.06545138,0.20409432,-0.21490236,-0.037215054,-0.4916774,0.0045722644,-0.44905415,0.5251303,-0.017236432,-0.42057997,0.16840288,-0.16168836,-0.01127015,0.46881562,0.023359282,-0.19230385,-0.12178023,0.058254745,-0.40425694,0.041349567,-0.36995474,0.2800477,0.4123902,-0.07899479,-0.005551553,-0.12679024,-0.0020229022,0.56006646,0.0021698454,0.52424365,0.1728956,-0.14442594,-0.30340013,0.03318247,0.03847972,0.37996933,0.15159398,0.12345989,-0.3858249,-0.32973588,-0.222013,0.033625007,-0.1663861,0.23832722,0.083905704,-0.082177326,0.8240543,-0.047305703,1.2667607,0.015614617,-0.37679163,0.11386483,0.46610492,0.033441897,0.09888799,-0.4289061,1.0029887,0.5996069,-0.18938036,-0.1276219,-0.42768273,-0.15648855,0.28921586,-0.27156743,-0.16222209,-0.033521056,-0.61114806,-0.28009272,0.2829885,0.10125878,0.18345697,0.037101578,0.0052063465,0.034986593,0.14752078,0.2801746,-0.52255493,-0.18604419,0.29562065,0.25956902,-0.06535555,-0.0076437513,-0.5528849,0.41892183,-0.5341741,0.21278086,-0.42340043,0.13978793,-0.28508556,-0.3976794,0.030481128,-0.11410994,0.40016273,-0.30937874,-0.47795781,-0.013568107,0.47627822,-0.024730342,0.118995205,0.53349584,-0.23821998,0.096938476,0.023488993,0.47053063,1.0410255,-0.48056936,0.008765173,0.4117119,-0.35334054,-0.6610399,0.27158397,-0.23329268,0.030910682,-0.17315902,-0.40057033,-0.57400876,0.3279995,0.25278002,-0.0046439585,-0.0034665545,-0.42578843,-0.08338138,0.2926783,-0.3531212,-0.3192983,-0.38823375,0.3084935,0.57581717,-0.32146925,-0.4956177,0.04737904,0.24951905,-0.24862902,-0.43365568,-0.038491275,-0.10829022,0.30432796,0.13745359,-0.34474528,-0.1017722,0.12897785,-0.32530835,0.17332926,0.24634714,-0.3188991,0.15173998,-0.26792696,-0.03710859,0.93661475,-0.17714325,-0.1886551,-0.6360249,-0.48023865,-0.87326556,-0.5804106,0.2893248,0.2572122,-0.07889876,-0.3687776,0.056411073,-0.09053046,-0.16284439,-0.12413833,-0.40312836,0.41151544,0.095059805,0.49370018,-0.27872363,-0.7398558,0.17724332,0.20026551,-0.058807336,-0.54892653,0.57225317,-0.056961436,0.7678428,0.0770229,-0.0099396445,0.08047212,-0.25765976,0.06181907,-0.33295745,-0.14376752,-0.6214222,0.086626105,710 +268,0.2897386,-0.0653636,-0.54967886,-0.25778183,-0.40396816,0.013098713,-0.19694011,0.34753057,0.22445768,-0.23619352,-0.11045224,0.07190839,0.06276489,0.38980496,-0.20935099,-0.8052607,0.082830645,0.072436616,-0.5653654,0.46320355,-0.47947294,0.3131791,-0.008450489,0.4304869,0.22326075,0.21500164,0.20691933,0.15393299,-0.08001904,-0.043919053,-0.15558296,0.48023728,-0.50485367,0.083000325,-0.007978062,-0.39869696,-0.1757149,-0.31929424,-0.34383425,-0.7046009,0.43602467,-0.81158423,0.52750033,-0.12079469,-0.3205334,-0.08883139,0.18447603,0.15800427,-0.32733217,0.07998301,0.13808122,-0.30682638,-0.09550492,-0.1220111,-0.21896298,-0.42686376,-0.63600945,-0.08343957,-0.5665807,-0.14742592,-0.2800012,0.21307555,-0.4037848,0.036817018,-0.17116645,0.63217056,-0.43435898,0.09824646,0.16066526,-0.27168533,-0.10228803,-0.59647995,-0.23696381,-0.12083681,0.16462107,0.089339875,-0.24038784,0.3121069,0.43826592,0.46203312,-0.025575329,-0.26638553,-0.42416576,-0.06918519,0.13892923,0.42538872,-0.08825013,-0.45577902,-0.15933374,-0.049228933,0.22969583,0.1861779,0.036584813,-0.3306406,-0.033592995,0.051463228,-0.17807145,0.4174821,0.50431746,-0.3584257,-0.06592277,0.31454846,0.14448422,0.22263649,-0.37763363,0.22139683,-0.07047705,-0.5846532,-0.21525456,-0.09027299,-0.12730871,0.65013015,-0.20268965,0.249736,0.691708,0.07996753,0.024007542,-0.18757467,-0.09022756,0.056446988,-0.28185967,-0.20377465,0.1374052,-0.2926493,0.26173845,-0.062294208,0.65568894,0.14628497,-0.7620009,0.46203777,-0.47636002,0.099197164,-0.14817214,0.513959,0.87386996,0.27470347,0.34516498,0.9056622,-0.38140506,-0.019765079,0.17898388,-0.44700432,0.09100677,-0.09119916,0.08360731,-0.4612787,0.10865496,0.014956625,0.015959,0.22417802,0.5867621,-0.30274722,-0.09844808,0.05208103,0.7666557,-0.33265242,-0.13233691,0.94314575,1.0323488,1.0641057,0.1283441,1.1751659,0.26391765,-0.07788725,-0.027911352,-0.16959292,-0.5882334,0.1416653,0.3490856,0.19202614,0.24881032,0.16420145,0.04554647,0.55806834,-0.2540409,-0.11623521,-0.096415475,0.20434093,0.16105442,-0.15012044,-0.47623655,-0.29578528,0.16019152,0.17852671,-0.04354047,0.21654695,-0.08296106,0.5669591,0.0012631745,1.2130847,0.13561843,-0.0112983985,0.11819215,0.35193202,0.31519106,-0.15598541,-0.087375514,0.16564165,0.4085204,-0.011057655,-0.58537745,0.059946127,-0.3552496,-0.5267847,-0.12523317,-0.380866,-0.17300081,-0.012506338,-0.6042769,-0.2129086,0.1700396,-0.28637755,0.51581854,-2.5979736,-0.1568395,-0.26460177,0.26630288,-0.048077844,-0.31186196,-0.26208606,-0.44967762,0.2903394,0.4210593,0.3709134,-0.6344248,0.3579745,0.30227214,-0.3269016,0.023463488,-0.64112014,-0.019081729,-0.086558685,0.38384208,0.014193598,-0.11224453,0.056811936,0.31255102,0.8066134,0.04194794,0.053609755,0.17666534,0.4011664,-0.25497988,0.60283214,-0.044156563,0.59208876,-0.16146396,-0.24397373,0.32599458,-0.44299355,0.1924931,-0.075417005,0.22502504,0.539895,-0.4460763,-1.0084684,-0.5068258,-0.25752822,1.1448784,-0.32481652,-0.4892594,0.3864303,-0.26110238,-0.35697454,-0.017581582,0.7015046,-0.24510354,-0.028250601,-0.71292096,0.02671923,-0.17733675,0.081181064,-0.13518336,0.06639557,-0.36410508,0.81564623,-0.11607455,0.46907482,0.32554963,0.1798907,-0.21002518,-0.40624803,0.11390838,0.61553943,0.48798034,0.035001025,-0.24947108,-0.10593479,-0.04106764,-0.27092502,0.118644826,0.78436667,0.5560085,-0.013544449,0.11142946,0.23234764,-0.059159495,-0.01689709,-0.17838846,-0.2609621,-0.055803392,0.12302125,0.5708927,0.6921869,-0.20234394,0.35288522,-0.06614355,0.37269047,-0.088185444,-0.62985843,0.39877102,1.0163645,-0.11232189,-0.35009727,0.534923,0.35659775,-0.37296686,0.30553743,-0.4941832,-0.2354365,0.5226953,-0.11762035,-0.45812744,0.15289481,-0.43925196,0.05066753,-0.82313824,0.33534202,-0.012561751,-0.59512407,-0.6007176,-0.4399862,-3.8608592,0.10150755,-0.2770025,-0.08555014,-0.19545715,-0.3569852,0.3399099,-0.6634296,-0.70006317,0.108250536,0.10642416,0.43550044,-0.15564696,0.07856002,-0.25322327,-0.22319008,-0.104737476,0.27357042,0.19240499,0.43784288,0.058784895,-0.30929363,0.047362726,-0.19387381,-0.6689642,-0.13223259,-0.47063676,-0.5672404,-0.080484085,-0.45575818,-0.29707673,0.7663378,-0.47164762,-0.009278384,-0.2740495,-0.028165009,-0.27667373,0.3328536,0.23026298,0.24238399,0.02250442,0.059647758,0.003700161,-0.29089886,0.16971566,-0.079089165,0.28754237,0.32209155,-0.05220167,0.18698241,0.58112276,0.6351767,-0.06458604,0.88619137,0.34586778,-0.08623656,0.23779544,-0.2718651,-0.33837318,-0.75666237,-0.39887196,-0.07036889,-0.50213104,-0.40570387,-0.21432592,-0.42715454,-0.78811365,0.42917755,-0.04480408,0.1280192,-0.099438936,0.22913337,0.34633687,-0.05643362,-0.020577295,0.06700679,-0.21402387,-0.534886,-0.43186495,-0.5836246,-0.6535275,-0.07725009,1.1526109,-0.10071612,-0.20244838,0.024514139,-0.4900299,0.054013718,0.12584296,0.24600464,0.20607004,0.32689103,-0.097403474,-0.7318233,0.4089815,-0.40415016,-0.052964304,-0.6754719,-0.0543164,0.5455472,-0.51145387,0.6864483,0.38275704,0.28357792,-0.020530695,-0.7548855,-0.35062358,0.17489369,-0.15922333,0.6003925,0.41082364,-0.6801397,0.58536667,0.11453178,-0.060508028,-0.5241709,0.48597828,-0.099839404,-0.10491757,0.11206242,0.36726868,0.019207733,-0.12756878,0.0032202562,0.25142297,-0.40561897,0.2724244,0.29983565,0.05426283,0.40812632,-0.05645915,-0.099351026,-0.61003524,-0.23857364,-0.5240139,-0.16435668,0.0066658426,-0.0135211265,0.307634,-0.050336376,-0.122304216,0.3587382,-0.29003558,0.16536382,-0.2782959,-0.2666486,0.22752933,0.59629184,0.35367012,-0.5303993,0.64873576,0.114875644,0.12978026,0.05244534,0.073032506,0.43398476,0.19070151,0.42345592,-0.10761595,-0.044424765,0.035144422,1.0112257,0.21876322,0.39576072,0.11008462,-0.24432391,0.25628197,0.11505675,0.16909051,-0.09480178,-0.30794188,-0.03763008,-0.19047277,0.25405172,0.44010168,0.13013035,0.31127134,-0.19847043,-0.15131623,0.24393772,0.24985774,0.059436195,-1.3092924,0.4715,0.17980017,0.8844213,0.45486307,0.11710019,-0.093825296,0.56711835,-0.23293659,0.04333271,0.34391662,0.11361725,-0.29195195,0.49779433,-0.59928954,0.49238098,-0.16617543,-0.018137034,-0.049502358,0.27252692,0.30234355,0.7299057,-0.10645377,0.06222037,0.17465569,-0.29629317,0.151496,-0.31181708,0.05407759,-0.45064184,-0.3032568,0.660389,0.63281983,0.2918604,-0.322198,-0.096317194,0.0066708815,-0.14124115,-0.02471133,-0.11619703,-0.0244807,-0.19970234,-0.71188384,-0.32800108,0.5323339,-0.14427319,0.116230965,0.14325333,-0.34794855,0.27845272,0.017912006,-0.13042563,-0.04690129,-0.5890653,-4.4938923e-05,-0.3416727,-0.6797621,0.3947479,-0.38258466,0.28582546,0.22073095,-0.022224482,-0.374548,0.13859306,0.06224273,0.8547576,-0.06941126,0.019635221,-0.27330506,-0.014842844,0.30653107,-0.27982613,-0.19099051,-0.3476316,0.2177495,-0.42447293,0.47001404,-0.33361468,-0.19050281,0.018603818,-0.089549445,0.07671353,0.4010768,-0.31596234,-0.16134503,0.14492317,0.093743995,-0.20832644,-0.1414601,-0.30994895,0.39077312,-0.084594496,0.021882867,0.042260442,-0.11567351,-0.18810008,0.37244514,-0.07658618,0.34171587,0.45711097,0.013676023,-0.2462823,-0.11136018,0.0392578,0.6664131,0.093442775,-0.15260759,-0.39004454,-0.50171626,-0.3596603,0.33508268,-0.094378114,0.17120765,0.15333547,-0.4834397,0.54512703,0.08171678,1.1194483,0.0027727922,-0.41128302,0.11880549,0.50860703,0.056456804,0.12893194,-0.092045434,0.80014557,0.48043364,-0.23996204,-0.18650159,-0.36710814,0.03431317,0.19002037,-0.21740466,-0.2346818,-0.08773976,-0.70606554,-0.015758378,0.010289001,0.14585224,0.1185557,-0.03778388,-0.017237466,0.036660895,0.15097809,0.38700932,-0.45378983,0.036296036,0.36365932,0.19310719,-0.026949601,0.18217334,-0.37111273,0.34081313,-0.48592153,0.09456203,-0.6380366,0.27865633,-0.023902185,-0.25263652,0.23001696,-0.052615087,0.36726734,-0.25848493,-0.18079129,-0.31238016,0.65302366,0.10752421,0.16578348,0.60923386,-0.19349292,-0.022797693,0.21218435,0.61533844,1.3386607,-0.13072087,0.13043483,0.2218323,-0.3374993,-0.40412286,0.17916107,-0.4327674,-0.016726399,-0.046843525,-0.2196986,-0.520138,0.21629225,0.1361194,0.019627212,0.14756654,-0.44306576,-0.34478325,0.3528391,-0.3665268,-0.21891592,-0.41249722,0.18332635,0.55845565,-0.406498,-0.25688335,0.020432424,0.34458444,-0.16223142,-0.54658926,0.23551607,-0.29999307,0.42014542,0.048590794,-0.4677696,-0.13935548,0.3177562,-0.49230105,0.19327576,0.32324824,-0.28428096,0.16281945,-0.19743136,-0.11188594,1.1492939,-0.09541233,0.2377834,-0.6511364,-0.57300854,-1.0542147,-0.145693,0.1471956,0.19217834,-0.023208933,-0.69174206,-0.09571821,-0.04189396,0.047092248,0.07195749,-0.4892763,0.4661784,0.08043828,0.49777123,-0.02969786,-0.81627476,-0.068846986,0.015154132,-0.16080777,-0.3169295,0.58343035,0.03823326,0.7192385,0.13802646,0.08868788,-0.0017478188,-0.47654328,0.33346215,-0.281307,-0.23741843,-0.6799423,0.08802663,713 +269,0.40683353,-0.21876904,-0.46031412,0.01887957,-0.24530634,-0.0802124,-0.06437411,0.56107616,0.18276642,-0.52993554,-0.16747269,-0.22498778,-0.067110315,-0.052514687,-0.11298546,-0.12918091,-0.2501574,0.1921174,-0.58499223,0.5322774,-0.18578896,0.20597742,-0.12201762,0.4689408,0.25934747,0.3134685,-0.2732447,0.023822824,-0.06937267,-0.07692011,0.0076141558,0.2772489,-0.4005303,0.08261912,-0.30106992,-0.19404976,-0.012867729,-0.43475306,-0.52217805,-0.7779156,0.48982716,-0.9399992,0.501103,-0.0852774,-0.2978703,0.23893915,0.030280761,0.4566965,-0.08830762,-0.2098556,0.3061191,0.12588435,0.046819642,-0.28240842,-0.14503789,-0.15694325,-0.32535738,-0.030460278,-0.25520137,-0.13477196,-0.30926892,0.17384627,-0.25687084,0.0067334813,-0.2232149,0.47435218,-0.45812595,0.21675797,0.13698117,0.09656208,0.32172123,-0.7122032,0.0005766471,-0.12523407,0.29524553,-0.12797515,-0.18633057,0.38534412,0.130551,0.33707312,-0.072525196,-0.14410262,-0.27077523,-0.094950266,0.04735701,0.3711836,-0.061435726,-0.3540952,-0.036131073,0.1939644,0.20888847,0.22954768,0.23946737,-0.28499234,-0.1325146,-0.035295416,-0.0909976,0.33166772,0.4917617,-0.04266643,-0.2646032,0.394056,0.75549775,0.24716376,-0.1218503,0.01858058,-0.045084,-0.33564594,-0.11950113,0.11964499,-0.29430234,0.41209108,-0.0950201,0.22493608,0.6378671,-0.06704928,-0.10470011,-0.030508567,0.20107795,-0.051263634,-0.43365324,-0.33883685,0.26073587,-0.39088967,0.27612683,-0.15262581,0.52903193,-0.13414222,-0.6407103,0.32276532,-0.48925045,0.11233031,-0.016447019,0.48929033,0.6509815,0.51059747,0.38782233,0.74646896,-0.41190988,0.077119984,-0.093359515,-0.28444746,0.0050126235,-0.15898865,0.06828157,-0.5170136,0.044992615,-0.12466971,-0.24465153,-0.022247698,0.2522844,-0.551203,-0.03845117,0.0994898,0.7855672,-0.2622159,0.01757377,0.8226786,0.95105845,0.8238395,0.015022679,1.0311301,0.19429211,-0.2634835,0.36156285,-0.3180127,-0.8241623,0.28334656,0.32341364,-0.0018006325,0.078924544,0.18974194,0.06843278,0.3385908,-0.47415236,0.07560286,-0.368323,0.24407788,0.16149427,-0.13492846,-0.33954278,-0.16359068,-0.13830867,0.01231703,0.100927226,0.04300935,-0.11791515,0.26288977,0.09606108,1.7806938,0.029613772,-0.009064915,0.18367685,0.51706845,0.16366476,-0.14135237,-0.014642565,0.48076043,0.2666644,0.11576626,-0.46992207,0.16330501,-0.30456728,-0.46376994,-0.018129226,-0.3032838,-0.09825562,-0.08940366,-0.3531723,-0.28682888,-0.28134224,-0.23806559,0.38756993,-2.8093731,-0.14170137,-0.10717404,0.4080951,-0.25977522,-0.41432795,0.05078224,-0.4082963,0.45838925,0.2843303,0.47594425,-0.6454944,0.36549366,0.39977896,-0.67230314,-0.013915825,-0.49519315,-0.009391392,0.04295245,0.2438546,-0.035673864,-0.035285246,0.030678485,-0.099320166,0.2776372,-0.012365224,0.060356133,0.54434496,0.44187894,-0.1425612,0.47916096,-0.008703496,0.30293626,-0.1822302,-0.14705056,0.2670932,-0.38056928,0.20703994,-0.0031997522,0.10522234,0.64765644,-0.5112648,-0.5890762,-0.6329062,-0.035573922,1.035497,-0.14976192,-0.4898313,0.17318605,-0.7444255,-0.34085232,-0.19600677,0.38864392,-0.05764105,-0.19818987,-0.82197994,-0.093277946,-0.2348515,0.1964044,0.0100915,-0.11706074,-0.31116915,0.8821962,-0.030349966,0.44189873,0.31458697,0.042496584,-0.4179959,-0.46694252,0.08792843,0.4839281,0.40772742,0.09364059,-0.12526232,-0.12867992,-0.32186285,-0.13279326,0.13447906,0.5799904,0.52201134,-0.019466126,0.10880509,0.26781884,-0.06491937,-0.19739696,-0.29102296,-0.15626948,-0.26997548,-0.018540334,0.47610456,0.6215461,-0.22799015,0.54095775,-0.08192643,0.18723239,-0.1244623,-0.45066687,0.2996535,1.1086327,-0.1447875,-0.37645453,0.51686776,0.40326974,-0.20619266,0.17848586,-0.46021718,-0.12904763,0.3353211,-0.1898992,-0.58405095,0.18574366,-0.25376466,0.14492589,-0.7850087,0.1403547,-0.23342124,-0.5395828,-0.7350386,-0.16957888,-1.482545,0.16873704,-0.28581184,-0.2869356,-0.1915265,-0.31284454,-0.06903374,-0.4427472,-0.6189736,0.254053,0.05596728,0.61836964,-0.025695043,0.010517282,-0.09495649,-0.29369724,-0.32472864,0.022174882,0.17812586,0.37524593,-0.13418564,-0.45228285,-0.25384453,0.051662307,-0.4377241,-0.007926324,-0.59087765,-0.35656685,-0.25105408,-0.65117735,-0.24776907,0.58735025,-0.15454385,0.15336958,-0.30888444,-0.11563141,-0.027640974,0.3299738,0.2202246,0.13118556,0.02183506,-0.13170034,0.1111418,-0.31356984,0.31772676,0.08842351,0.23669662,0.26875427,-0.18976903,0.21177301,0.25529268,0.76731414,-0.122732684,0.7551697,0.39710706,-0.27117908,0.28371415,-0.1936628,-0.23543753,-0.63907814,-0.24621993,0.059340835,-0.34159496,-0.44031155,-0.041691344,-0.68536955,-0.6475407,0.38887766,0.0448092,0.27558622,0.18121609,0.32260698,0.7661442,-0.10283776,-0.0037210325,-0.0035274108,-0.13887677,-0.57976663,-0.35036284,-0.42922026,-0.45806614,0.11636121,1.0361266,-0.11527252,0.06619308,0.12864618,-0.31130245,0.10903134,0.22518735,-0.21204045,0.13830519,0.57910836,-0.2737543,-0.42164835,0.36524904,0.09238558,-0.2847047,-0.5335481,0.39654955,0.5545319,-0.6071187,0.61509895,0.07201643,0.019730715,-0.4370171,-0.41365287,-0.14787927,-0.09817489,-0.31722233,0.43413195,0.25913632,-0.5773224,0.30480438,0.45541638,-0.014856775,-0.7853854,0.48856,-0.08115433,-0.4988923,-0.13691886,0.31370524,0.028409036,-0.008195448,-0.23529972,0.16607441,-0.23562703,0.16768536,0.13701601,-0.21146026,0.17669459,-0.27028614,-0.089727364,-0.7226635,0.18192074,-0.44031468,-0.34266013,0.42484748,0.079213865,0.08370866,0.18382019,0.23815903,0.45622545,-0.20285602,0.09950977,-0.11896763,-0.1608248,0.1450477,0.28417274,0.3463178,-0.53499234,0.5400413,0.0128301345,-0.060576905,-0.056651544,0.17261654,0.38844368,0.013330706,0.36601976,0.18898787,-0.13464877,0.19217806,0.7286929,0.18331404,0.48528078,0.0213338,-0.033080317,0.15704575,0.016829658,0.28365996,-0.114454225,-0.5498379,0.23342839,-0.17014737,0.10522232,0.24626549,0.08161866,0.16085725,-0.07673914,-0.32852963,-0.084079675,0.31290898,0.04586621,-1.1694521,0.30207545,0.272972,0.95390284,0.3133845,-0.0863565,-0.08040685,0.7079653,-0.077993155,0.12397087,0.32124513,-0.032838725,-0.45402193,0.45644963,-0.7020659,0.35254017,0.08986898,-0.06497223,-0.034937665,0.07794914,0.34849727,0.5052044,-0.27386627,-0.087921314,-0.12166026,-0.2904734,0.23807222,-0.19928344,0.11851339,-0.51205224,-0.34162328,0.55027884,0.5155775,0.41066387,-0.123663925,0.12974426,0.03896885,-0.21623173,0.15154773,0.21627182,0.18307592,0.012768948,-0.58242303,-0.25196514,0.37848446,-0.06900661,0.14515252,0.07806565,-0.104203366,0.24335076,0.035743974,0.0029687562,-0.03911257,-0.7134933,0.1528528,-0.17288622,-0.3356558,0.3416522,0.035694797,0.18828735,0.24312311,0.06477292,-0.22644693,0.3904695,-0.0065439385,0.88151234,-0.099970154,-0.06613713,-0.36540762,0.26605278,0.061707206,-0.1858794,0.043668643,-0.12502654,0.06657026,-0.4959955,0.49108014,0.17193763,-0.43175468,0.09922438,-0.17095374,0.019492196,0.45701212,-0.16489138,-0.16792485,-0.24433514,-0.2096455,-0.30503413,-0.34213087,-0.006874108,0.33013093,0.29659727,0.14185467,-0.13163915,-0.01268009,-0.2308435,0.69845015,0.10152168,0.34207198,0.26997578,0.02641371,-0.450906,-0.10335418,0.22653048,0.57985485,-0.12167219,-0.08976105,-0.20200808,-0.39385504,-0.38861874,0.39286044,0.0384381,0.47977033,0.0883057,-0.16172868,0.87619036,-0.0015497326,1.090993,0.036919508,-0.26208875,0.25629777,0.51664937,0.01478939,-0.094886295,-0.28938296,0.7804963,0.5946128,-0.01979425,-0.056077283,-0.23582178,0.04029831,0.20884076,-0.12210285,0.06577063,-0.032986302,-0.58260626,-0.28142515,0.18981145,0.24327537,0.11973829,-0.103546776,0.009929753,0.2665648,-0.2714939,0.27332237,-0.26122397,-0.3088738,0.22663115,0.010591591,0.04342859,-0.0010998845,-0.51449007,0.36850756,-0.43922055,0.1633452,-0.23892762,0.0954425,-0.25475705,-0.30946547,0.15883642,-0.15853062,0.31463572,-0.38142967,-0.2866424,-0.341719,0.4084627,0.18834448,0.16160752,0.43530267,-0.22380687,0.117025055,0.0952914,0.37846997,0.7320855,-0.046621453,0.033835538,0.13974711,-0.40725696,-0.526634,0.421279,-0.1680611,0.20632549,0.106253624,0.0101107955,-0.39705458,0.23051174,0.19490932,0.0081886845,-0.11677338,-0.68018913,-0.11881779,0.4548711,-0.2494809,-0.008802546,-0.24598742,0.08391085,0.54192287,-0.043554712,-0.38765594,0.06193952,0.005915753,-0.18578751,-0.4185039,-0.10177796,-0.5398484,0.26664704,-0.13291188,-0.3035027,-0.12994649,0.07450678,-0.3933553,0.15530099,0.037620448,-0.32248676,0.065469585,-0.3058589,-0.103162654,0.8778469,-0.16803287,0.05661963,-0.39926183,-0.3344803,-0.7426358,-0.14747307,0.19009273,0.12021902,0.0740575,-0.80021435,-0.043235183,-0.20409489,-0.18037136,-0.11815181,-0.32873815,0.42656654,0.2073954,0.4065243,-0.16332476,-0.8908859,0.16456856,0.11133846,-0.095191754,-0.561661,0.56057805,0.042485736,0.6056234,0.072599836,0.2535928,0.12327259,-0.53648263,-0.12828715,-0.19300492,-0.19289757,-0.6111241,-0.065272555,715 +270,0.4849853,-0.25346002,-0.35963935,-0.19191371,-0.17371015,-0.11548181,-0.17653094,0.46490845,0.2428511,-0.5564327,-0.058887053,-0.17447251,0.032535903,0.20658894,-0.09040096,-0.47768152,-0.13413645,0.05064199,-0.25611442,0.5077241,-0.52524394,0.2574869,0.118051164,0.3414893,0.108565524,0.20547454,0.01078138,-0.1882691,-0.17592843,-0.4309799,0.016727606,0.3317868,-0.74236876,0.11500933,-0.23325856,-0.411688,0.00698572,-0.6731871,-0.44401264,-0.6778781,0.1255236,-0.8793353,0.6222032,0.24536748,-0.273685,0.3518791,-0.08331337,0.23242909,-0.098077744,0.26056778,0.30151463,-0.24287432,-0.026667984,-0.22611602,-0.17437264,-0.25735146,-0.68781847,0.021633275,-0.40403742,-0.14137405,-0.21615823,0.17274718,-0.2758458,-0.12384868,-0.13191563,0.5110462,-0.5157913,-0.05294307,0.067368336,-0.104596384,0.54649895,-0.47691256,-0.20870362,-0.18844722,0.07458762,-0.3443524,-0.2890815,0.20642015,0.34157532,0.55571216,-0.103846215,-0.21817899,-0.2666392,0.010601035,0.063702315,0.5924067,-0.33177227,-0.5198823,-0.04860949,0.0066105765,0.13822389,0.30532712,-0.0022833527,-0.3615256,-0.109367274,0.047148418,-0.2762827,0.45086688,0.61504614,-0.297622,-0.2542683,0.33084953,0.3746573,0.1925575,-0.065042995,0.087656066,0.045384504,-0.53058815,-0.09094412,0.13037233,-0.23778364,0.4470135,-0.14307265,0.14352491,0.66955745,-0.2516831,0.123892024,0.048548352,0.04469355,0.11516073,-0.32352048,-0.42192233,0.38934305,-0.449999,0.29415414,-0.3368905,0.795374,0.05319444,-0.79235953,0.3596737,-0.6028265,0.13929805,-0.111042164,0.5232414,0.649778,0.44680455,0.40266857,0.52683836,-0.45893222,0.013663213,-0.09266402,-0.2990292,0.031455103,-0.124111705,0.021283384,-0.4369174,-0.22083572,-0.03268981,-0.19195679,0.056109484,0.44321314,-0.5553175,0.03557188,0.20953862,0.7386186,-0.28217372,-0.059659854,0.74532104,1.0804552,1.1899608,0.12674268,1.1169887,0.29224974,-0.22982709,0.087778546,-0.26538146,-0.60577506,0.27368692,0.43148127,-0.40033564,0.24817796,0.12792368,-0.0932077,0.34017155,-0.46770313,-0.02589001,-0.18749589,0.119388424,0.013102754,-0.17019258,-0.56238216,-0.23435529,-0.17990912,0.14811435,-0.13681498,0.18421237,-0.34682757,0.2214256,0.07827628,1.3942839,-0.14890122,0.03773178,0.11292145,0.35608858,0.14390446,-0.15880993,0.03829132,0.26543295,0.4143063,0.15004882,-0.58288383,-0.00092918077,-0.09212642,-0.47893858,-0.14288963,-0.21366678,0.06570628,-0.015562396,-0.47992638,-0.14068098,-0.073467456,-0.38763008,0.42559782,-2.5936656,-0.04933991,0.02521509,0.2953212,-0.24185963,-0.44525445,-0.058541544,-0.4465391,0.45211563,0.32089552,0.44609526,-0.78451836,0.3159369,0.5889285,-0.50310475,-0.046709932,-0.6861763,-0.17822622,-0.20149708,0.16919567,0.08801613,-0.082780026,0.025906188,0.036596093,0.60107076,-0.022225944,0.092975564,0.09671483,0.32895386,0.024577921,0.5125691,-0.069424786,0.33071375,-0.09587756,-0.21321939,0.44853547,-0.3276903,0.026568595,-0.21622747,0.08860925,0.36702028,-0.46013445,-0.8818991,-0.8347397,-0.4527399,1.0294667,-0.072769925,-0.46364465,0.24483916,-0.17214528,-0.40021783,-0.06375999,0.48856765,-0.2112031,0.0027968765,-0.8533704,-0.03719648,-0.13005562,0.1451176,0.04202688,0.15275975,-0.5096819,0.66662675,-0.066502,0.25384453,0.4416728,0.17440042,-0.18588361,-0.52444595,-0.01042498,1.1887963,0.3825979,0.2458383,-0.29980353,-0.1392011,-0.15225098,0.010360623,0.043211274,0.5279869,0.8289893,-0.16812934,0.08064338,0.26386064,0.0030529697,-0.029102925,-0.21008743,-0.27887732,-0.01921969,-0.007801843,0.6561508,0.5491206,-0.12715818,0.49627194,-0.08551042,0.32996368,-0.06766896,-0.37704608,0.3680071,1.244323,0.028068017,-0.17431921,0.74184906,0.43019715,-0.21118206,0.45530292,-0.5641889,-0.2798738,0.37958017,-0.22556283,-0.5057795,0.2874142,-0.36482173,0.1764501,-0.792709,0.39874125,-0.2198793,-0.49571148,-0.6074434,-0.17583132,-2.9688542,0.16262229,-0.24858409,-0.13684921,-0.024122901,-0.11645509,0.38964698,-0.537911,-0.4965595,0.1861368,0.10403991,0.6050933,-0.1257815,0.11637105,-0.21487838,-0.32674015,-0.34341347,0.28381565,0.25905767,0.25645056,0.07509109,-0.3557654,0.002196479,-0.087278135,-0.45881227,0.035749402,-0.5381641,-0.55172545,-0.11574774,-0.5858495,-0.39659366,0.6432941,-0.30632892,0.037777904,-0.06903954,-0.055000346,-0.09765038,0.31775042,0.18263982,0.23950952,-0.14333548,0.063051835,0.025933178,-0.19926138,0.406356,0.14167179,0.12517871,0.2660912,-0.20557146,0.15023294,0.40164343,0.5534563,-0.13251804,0.9279039,0.63442266,-0.20393406,0.22562477,-0.36293834,-0.20708741,-0.71538085,-0.39311722,-0.07506867,-0.44824114,-0.43766505,-0.046652492,-0.31686336,-0.7728332,0.5640703,-0.20098588,0.09382634,0.037209574,0.26578134,0.4610942,-0.17782217,-0.12532547,-0.06732093,-0.023897976,-0.47524735,-0.30348274,-0.59377706,-0.3866997,-0.09119206,1.0325276,0.027126933,-0.015732052,0.09727053,-0.038595088,-0.13448673,0.032132458,-0.051637404,0.053409252,0.527248,0.12259051,-0.7764614,0.33719265,0.12381611,-0.26601467,-0.62834513,0.20610823,0.76594865,-0.7436642,0.58440465,0.3499342,0.12804689,-0.098493546,-0.6073831,-0.26764926,0.0044595064,-0.3046164,0.47803238,0.1771427,-0.73670715,0.48675606,0.40664583,-0.30573368,-0.64710784,0.46287218,0.013390208,-0.287032,0.048477344,0.3270846,0.008334466,0.045513462,0.02102882,0.43805584,-0.398358,0.38097614,0.17372346,-0.07075863,0.19564451,-0.20644751,-0.0495915,-0.80580163,0.13083147,-0.4129747,-0.4614604,0.1928115,0.082942866,0.043528054,0.37697217,0.04258313,0.4686907,-0.16859435,0.18313853,-0.18402365,-0.25128296,0.35661107,0.44882903,0.35799858,-0.23523615,0.6388442,0.03196133,-0.21178512,-0.27342588,0.012144718,0.43562952,-0.07987773,0.24039663,-0.093157485,-0.35190046,0.30335313,0.7368052,0.20774263,0.51269084,0.028938023,0.016622094,0.32889426,0.124024816,0.1257977,-0.033257585,-0.55391693,-0.058056895,-0.21855173,0.08888449,0.43926907,0.03514215,0.25482285,-0.23293622,-0.24207889,0.06516462,0.31658542,0.08019268,-1.0949038,0.2513415,0.075330265,0.7562923,0.69606835,0.03717316,0.08836532,0.54743034,-0.21539411,0.0014911215,0.39109808,0.04908436,-0.48043993,0.54414976,-0.62039924,0.33762792,-0.123397924,0.057675235,-0.062501624,-0.18408702,0.49163282,0.7348454,-0.20484467,0.0834875,-0.10614346,-0.20140058,0.09721597,-0.38616282,0.16412023,-0.49781975,-0.29932186,0.86181986,0.47755915,0.4071525,-0.099485666,0.038981874,0.18902826,-0.17119846,0.12752678,0.13171582,-0.08861747,0.020820547,-0.6133592,-0.07063546,0.575605,-0.06206713,-0.03195803,0.022088906,-0.12597632,0.22544187,-0.16087487,-0.16217397,-0.051866803,-0.68501776,-0.15663789,-0.53313977,-0.30301097,0.41909426,-0.18814255,0.22106315,0.12319995,0.10982883,-0.13059987,0.2730662,0.45010024,0.73727816,0.09303641,-0.14564759,-0.2758445,0.29609698,0.16229476,-0.18826002,-0.29821724,-0.20307897,0.007256613,-0.77590746,0.4847642,-0.15954538,-0.34394008,0.07892931,-0.1262765,0.016296651,0.5546798,-0.11208933,-0.18867384,0.12076936,-0.19988003,-0.26473486,-0.1933664,-0.029476548,0.32138374,0.17371985,-0.14721805,-0.041245777,-0.16786472,-0.22122549,0.44248533,0.08379684,0.40661937,0.3734935,0.14050558,-0.29957336,-0.14437151,0.059516303,0.5440398,0.00781037,-0.11484166,-0.26441747,-0.45705798,-0.32079417,0.040691536,-0.09038119,0.43520927,0.043925628,-0.26442292,0.9326965,0.094724625,1.1821717,-0.009455553,-0.37608355,0.07118059,0.41594505,-0.038685106,-0.04403697,-0.4118695,1.0371146,0.4920475,-0.022829017,-0.17296009,-0.2966689,0.050497618,0.12814052,-0.12359267,-0.1689062,0.0037234703,-0.8195999,-0.24453881,0.26757306,0.35004833,0.06407262,-0.045060236,0.08097174,0.32491115,0.064303525,0.4274564,-0.30833352,-0.021797132,0.27927488,0.35688803,0.050212324,0.08235184,-0.33345643,0.30089724,-0.31563056,0.04890763,-0.29664353,0.031152206,-0.1847523,-0.20725875,0.28500387,0.04581774,0.3533706,-0.36047336,-0.31315696,-0.15136568,0.4782766,-0.13899316,0.15461239,0.53616995,-0.23039623,0.0982032,-0.07037655,0.48630422,1.3282875,-0.24656792,0.0757104,0.3922456,-0.4239226,-0.52288276,0.40679118,-0.19642277,0.060444474,0.12854654,-0.34785128,-0.37069127,0.12976772,0.066284545,-0.094712585,0.1686687,-0.5291265,-0.11428849,0.281634,-0.2866455,-0.17570609,-0.27174148,0.20668025,0.6561184,-0.31696087,-0.3900739,0.012735488,0.21419808,-0.31573963,-0.4476081,-0.0042028488,-0.348807,0.27796325,0.16342601,-0.31362662,0.03506795,0.054101583,-0.4428929,-0.013601263,0.2338596,-0.38124266,0.046898343,-0.3177529,-0.062069252,0.91130435,-0.1607268,0.090651825,-0.5363056,-0.531824,-0.95610875,-0.23604757,0.5039329,0.24688932,0.08788254,-0.4801311,0.018778384,-0.036356173,-0.09325927,-0.083189294,-0.3488086,0.44567534,0.265356,0.46472532,-0.21522021,-0.6534106,0.10712186,0.19426909,-0.1925966,-0.561259,0.5076681,0.1507526,0.83050215,0.09327011,0.077773355,0.25880387,-0.5080689,-0.012297982,-0.1289908,-0.25060144,-0.7761153,-0.024527617,722 +271,0.43240514,-0.30906746,-0.640646,-0.09567275,-0.30226168,-0.04289004,-0.25014547,0.53046507,0.18247941,-0.5226704,-0.14843203,-0.04297157,-0.20240913,0.32582194,-0.2114329,-0.80913854,0.06113704,0.2805866,-0.4213561,0.56178385,-0.30657375,0.4602032,0.14545886,0.3685705,0.19484869,0.29775086,0.16899967,-0.1185104,-0.25151005,-0.29512045,-0.091397114,0.17146799,-0.56713164,0.35001144,-0.20434865,-0.67551446,0.088483006,-0.47902718,-0.20501865,-0.7270306,0.23175809,-0.76167685,0.5502422,0.015472579,-0.2554016,0.008141572,0.054271538,0.43196157,-0.20067386,0.16642587,0.2267463,-0.14629586,-0.1880408,-0.2063407,-0.12044831,-0.2925385,-0.5993649,0.1594479,-0.37827128,-0.006695096,-0.143429,0.29618138,-0.29035485,0.14973873,-0.059663884,0.43667957,-0.43342015,-0.031089561,0.26557696,-0.22255264,0.09687687,-0.5720852,-0.111620925,-0.23002593,0.1701536,-0.18842815,-0.22925605,0.23265417,0.14033045,0.6692188,0.23107834,-0.24187095,-0.36281157,-0.102281846,-0.014983284,0.4430613,-0.31229898,-0.40720966,-0.36357805,0.094364956,0.45839584,-0.11045871,0.013307985,-0.3180169,0.048173357,-0.107596345,-0.117587596,0.30621433,0.56346947,-0.35464063,0.021467963,0.21625881,0.41326818,0.10888568,-0.032052927,0.065104336,0.02106705,-0.4192052,-0.18122582,-0.09278157,-0.23373348,0.5323953,-0.11224493,0.21940373,0.6530417,-0.118995205,-0.09014654,0.22332273,0.17670931,-0.050903298,-0.19146124,-0.3654796,0.37003025,-0.48447838,0.089520924,-0.21961696,0.8731879,0.29049042,-0.7721397,0.28924856,-0.5097311,0.12721433,-0.17465922,0.4803793,0.6140285,0.5928081,0.07109566,0.8545209,-0.42246768,0.15610486,-0.11645999,-0.2628226,-0.034865092,-0.10638247,-0.23927562,-0.4017363,0.16161035,-0.17834719,-0.07864542,0.1601771,0.4293467,-0.67700166,-0.04915809,0.10897023,0.87284845,-0.3360424,0.07258325,0.89238304,0.92049384,1.0001644,-0.07257504,1.2049007,0.26795736,-0.2555035,-0.031637833,-0.1979266,-0.70475197,0.36202246,0.46078774,-0.40501258,0.22666149,0.15884003,0.06647251,0.4821707,-0.61763877,-0.06053426,-0.35736427,0.16078186,-0.042476363,-0.14535874,-0.4923779,-0.12889244,0.13026185,0.027907355,0.07657048,0.29990783,-0.20087688,0.5366239,0.0054246862,1.4732891,-0.1532375,0.04898896,0.13510609,0.2599751,0.23866244,-0.012450549,-0.05394078,-0.058658697,0.23975572,-0.03966352,-0.50240535,-0.08762984,-0.34168097,-0.51779306,-0.30325028,-0.015439403,-0.06569704,-0.046971507,-0.48215103,-0.46447563,-0.053254806,-0.16496821,0.42487285,-2.1716635,-0.3833119,-0.18600222,0.38113114,-0.36083698,-0.31989688,-0.27206472,-0.4626512,0.5066278,0.27511245,0.60714656,-0.59976614,0.29409292,0.26736724,-0.5261499,-0.09007533,-0.4727397,0.008297976,-0.035819635,0.23723647,0.047599528,-0.4250916,-0.13719943,-0.15854543,0.57094324,-0.23254162,0.017651059,0.30206993,0.28915754,-0.023607709,0.3018783,-0.0023105005,0.6462804,-0.56568813,-0.2650635,0.4597591,-0.35593513,0.15842031,-0.036816288,0.14598781,0.42920294,-0.68286884,-0.8504115,-0.74556375,-0.14817868,1.0640937,0.051832195,-0.45632982,0.120224856,-0.049718626,-0.23772793,0.19383578,0.3308335,-0.22516109,-0.061272956,-0.9170476,0.024250774,-0.030192323,0.24411485,0.0042082765,0.012183747,-0.44976565,0.6960889,-0.110881135,0.38594133,0.5005758,0.30520794,-0.13696414,-0.5561991,0.13418517,1.1885295,0.6181078,0.2290143,-0.25860295,-0.11372416,-0.2993571,-0.18299729,0.060714837,0.45871624,0.8293603,-0.123396,0.030412946,0.40229332,0.064492434,0.0060444474,-0.069848746,-0.39021003,-0.16442534,0.17748347,0.620658,0.6298167,-0.024500433,0.29798788,-0.13320766,0.5331442,-0.0077081365,-0.540871,0.65999377,1.0270302,-0.20637982,-0.41921955,0.627856,0.34032622,-0.23023602,0.5175837,-0.6619064,-0.5372369,0.3661628,-0.12799221,-0.39761102,0.14398018,-0.29542777,0.34327903,-1.0843118,0.44180056,-0.34667656,-0.37790042,-0.71961623,-0.2951872,-2.5422018,0.09494304,-0.29456344,0.10534782,-0.09248285,-0.08700214,0.18392138,-0.6271826,-0.65834737,0.05449309,0.104517914,0.7102602,-0.008852345,0.3077011,0.019289367,-0.34298486,-0.2830825,0.3057238,0.36863706,0.12932499,0.028036261,-0.5287935,-0.20185119,-0.2969213,-0.44017366,0.033931408,-0.77679086,-0.42191285,-0.1631249,-0.7797129,-0.26249757,0.6976202,-0.45015696,0.10313532,-0.14415649,-2.1278859e-06,-0.19269317,0.22153114,-0.0036388675,0.042257715,0.24862213,-0.19811319,0.13850234,-0.30811718,0.2581615,0.14004634,0.31797284,0.35912514,-0.26550415,0.343297,0.5580307,0.7612855,-0.10150218,0.81971157,0.7315578,-0.12320913,0.31327853,-0.37310055,-0.4720265,-0.60254353,-0.34769502,-0.016866613,-0.53635603,-0.32886708,0.22534631,-0.47262347,-1.053355,0.68724304,0.027895192,-0.11412796,-0.070418954,0.32076958,0.56073016,-0.27068362,-0.14873353,-0.0012240649,-0.14924732,-0.2830132,-0.28988126,-0.64319736,-0.545189,-0.045225818,1.3592814,-0.061921302,0.23778318,0.21475458,-0.06107717,0.17842343,0.047875836,-0.060545206,0.094277844,0.55673134,0.042271353,-0.7347954,0.28316483,-0.14535864,-0.14081812,-0.44631153,0.19409579,0.57139,-0.7509356,0.2774839,0.40790874,0.11015748,0.15128212,-0.42476752,0.09389147,-0.06171054,-0.20681377,0.45277247,0.2200275,-0.4199456,0.57358795,0.41549957,-0.26215547,-0.9100397,0.20047401,0.06669596,-0.23973995,-0.005625717,0.33866748,0.11116378,-0.17144985,-0.22332166,0.22972725,-0.39159602,0.3263652,0.14253363,-0.23810202,0.38246924,-0.4358398,-0.3466902,-0.90852875,0.08170926,-0.6318611,-0.41951227,0.14499661,0.12686032,-0.025693337,0.11015132,0.18613917,0.5701862,-0.4379701,0.062241707,-0.29342413,-0.31716698,0.30331284,0.44072926,0.28149623,-0.4596052,0.5558339,0.052639615,-0.01874618,-0.19126673,-0.014419456,0.5421639,-0.0737971,0.31737646,0.21262246,-0.038883287,0.14456859,0.69452,0.05089799,0.30137077,0.07686964,-0.23128945,0.08901063,0.15517603,0.04767711,0.04550423,-0.4841331,0.063039206,-0.088769324,0.0089671295,0.56383055,0.34411776,0.50186926,-0.14373611,-0.44237605,0.11585913,0.015702484,-0.045123745,-1.4730792,0.37077042,0.056180183,0.7649351,0.4979789,0.16796707,0.11980198,0.54350644,-0.19254738,0.17011985,0.2922828,-0.2301163,-0.26355407,0.3372265,-0.5371088,0.37477753,0.009226129,0.1327921,0.10815053,-0.03990734,0.5495706,0.6839319,0.008670315,0.16431211,-0.047651015,-0.30595157,0.15312307,-0.31613302,0.13364492,-0.47598383,-0.23451896,0.78668994,0.3278775,0.24650103,-0.21004918,0.083107516,0.24446082,-0.05409598,0.2508708,-0.03883846,0.16668017,-0.08042336,-0.32719746,-0.23496395,0.59124094,0.19697447,0.1446865,0.0138786,-0.26396307,0.29853874,-0.021620654,-0.007932635,-0.17228287,-0.6059622,0.09218765,-0.604032,-0.22065058,0.32301658,0.026163416,0.17178164,0.13901626,0.14045355,-0.4521444,0.45698628,0.0916996,0.7647262,0.022334564,-0.32439592,-0.12409815,0.3563775,0.26926038,-0.32380468,-0.06558448,-0.25011146,0.16098426,-0.62724966,0.44107106,-0.1603408,-0.2390736,0.26488307,-0.05033427,-0.027468324,0.4200293,-0.24451528,-0.008128361,0.37561074,-0.013064167,-0.25823757,-0.3368313,-0.2879307,0.12430179,0.23632117,0.11161419,-0.23961653,-0.2575668,-0.24305132,0.59555364,-0.035816543,0.2576007,0.33304596,0.14321288,-0.53675723,-0.06968382,0.16684559,0.4736399,-0.05145121,-0.10889673,-0.3109554,-0.38604906,-0.38542423,0.119132906,-0.3128821,0.25485066,0.12081604,-0.30070046,0.9240407,0.25204745,1.4225043,-0.004262316,-0.3797614,0.04735491,0.545349,-0.16378213,0.004929924,-0.38636363,1.1427872,0.62915486,-0.23383333,-0.11720694,-0.4658706,-0.10404582,0.095931076,-0.30975035,-0.25921682,-0.14729008,-0.58225816,-0.5830485,0.29369444,0.36625624,0.009665994,-0.19802316,0.08360412,0.09898653,0.026541227,0.28314546,-0.5123508,-0.16388859,0.2903024,0.27761135,-0.008400933,0.20352969,-0.5469317,0.36794186,-0.60331786,-0.028362194,-0.26705396,0.21469969,-0.06484872,-0.37871805,0.22690175,-0.08292742,0.24143276,-0.50408137,-0.3710983,-0.23572485,0.49456814,0.105781935,0.18787293,0.8214043,-0.310295,0.030347431,-0.05235533,0.5129967,1.0071504,-0.2491017,0.13123904,0.39979133,-0.07041033,-0.5008868,0.323799,-0.40157306,-0.01774749,-0.083556384,-0.38516983,-0.69582856,0.2971452,0.14159232,-0.03660493,0.02806615,-0.71936214,-0.10607012,0.3635,-0.27021936,-0.21513265,-0.3122694,0.11269951,0.6415914,-0.24134466,-0.45920393,0.28137615,0.37384185,-0.1582367,-0.60931385,-0.2186545,-0.3428369,0.29513073,0.3687978,-0.34662044,-0.11699668,0.12807709,-0.4596537,-0.1216233,0.2915062,-0.28983152,-0.024711788,-0.29213095,0.032803316,0.8684495,-0.08887779,0.49729842,-0.5044582,-0.29472515,-0.9767895,-0.26473114,0.5730753,0.26867503,0.02398682,-0.8695137,-0.032590874,-0.20488782,-0.3330075,0.07171164,-0.41240826,0.4703542,0.1574224,0.6771546,-0.23989652,-0.7541341,0.23738617,0.06918396,-0.26065853,-0.35538933,0.4060025,0.16950485,0.9918764,0.10488712,-0.0915499,0.4655447,-0.7045081,-0.04958969,-0.2585672,-0.16627067,-0.5610052,0.03939351,730 +272,0.5197055,-0.048222788,-0.63859737,-0.2116534,-0.5356265,0.060522366,-0.4249972,0.0035241067,0.29352772,-0.05508206,-0.10322312,0.12535314,-0.036590338,0.29799047,-0.0029994666,-0.77107376,-0.19722739,0.028964804,-0.6886181,0.64439934,-0.5188924,0.4307975,0.099467635,0.34448674,0.2792594,0.6311134,0.3515856,-0.12154889,-0.11192934,-0.22271098,-0.019872995,0.072836444,-0.62244874,0.16043372,-0.1556,-0.29335383,0.09200131,-0.31231025,-0.2711323,-0.68904406,0.20814976,-0.84178984,0.4647564,-0.12046102,-0.0953054,-0.07381402,0.41901362,0.47592297,-0.22305125,0.20319465,0.39394343,-0.36625835,-0.06070818,-0.333526,-0.22030328,-0.5240821,-0.47527298,-0.18401319,-0.722265,-0.35442123,-0.18502258,0.36200097,-0.37447378,-0.15353672,-0.3818381,0.41530555,-0.53836197,0.086667866,0.31201527,-0.3555356,0.14420687,-0.5513845,0.04116733,-0.08484998,0.3555204,0.12209473,-0.048262615,0.40698496,0.23933354,0.23422639,0.44745746,-0.3033169,-0.31355584,-0.34911457,0.27073675,0.24076131,-0.1150069,-0.015620943,-0.3827351,-0.0020471097,0.44812715,0.505585,-0.028774943,-0.226128,0.18085681,-0.16670564,-0.13288471,0.6920818,0.4535113,-0.21787609,-0.34611192,0.28594026,0.6558274,0.39222622,-0.401353,0.120008774,-0.12921953,-0.3998575,-0.12943348,0.3255995,0.00032556852,0.31257057,-0.10993149,-0.13403533,0.92471445,-0.27617756,-0.08749445,-0.034985766,-0.061603125,-0.115937226,-0.3000864,-0.03351093,0.07307192,-0.5905624,0.01635615,-0.24342051,0.6383533,0.06263598,-0.61101073,0.22411436,-0.6016478,0.11731974,0.008813282,0.82084453,0.54256463,0.49586505,0.18831617,0.92308044,-0.16852917,0.30957517,-0.12289667,-0.49431515,0.042045757,-0.16865057,0.072232835,-0.42548788,0.052646384,-0.2475374,0.08033702,-0.033175975,0.44899923,-0.49296027,-0.06175488,0.21572909,0.79174006,-0.31639203,0.023092814,0.6286525,1.1471533,1.1542505,-0.04422262,1.1139598,0.25849405,-0.20119585,-0.18524928,-0.33457372,-0.36979848,0.2076176,0.28334746,-0.2807309,0.33726588,-0.09846368,0.059973013,0.13651837,-0.4072937,-0.1562309,0.0039052328,0.3029223,0.17066303,-0.09852286,-0.40955493,-0.037708394,0.13773571,-0.013770322,0.43566388,0.16858108,-0.35092562,0.4506751,0.1131849,1.1253276,-0.20049238,-0.06738283,0.12725013,0.638746,0.31575802,-0.019294595,0.18288618,0.5062369,0.3892214,-0.06656513,-0.63256866,0.14155029,-0.44184178,-0.5073049,-0.23014809,-0.41363898,-0.10621413,0.078542836,-0.19635348,-0.19811915,-0.026005093,-0.46377614,0.2643336,-2.6189835,-0.08657534,-0.14957665,0.20703273,-0.33580482,-0.10477509,-0.05175761,-0.5158518,0.17195651,0.2120734,0.45671967,-0.48505822,0.552983,0.64531773,-0.7521147,-0.09692513,-0.61402506,-0.011821127,-0.17465903,0.7217159,0.03862993,-0.12872326,-0.27397695,0.24005146,0.8639377,0.18065457,0.20666961,0.46303883,0.36479998,0.10334562,0.594504,0.21288897,0.5522962,-0.22677016,-0.27177918,0.61904925,-0.23403747,0.31689367,-0.328413,-0.017735517,0.56711954,-0.3027692,-0.9960547,-0.5957302,-0.41013852,1.055281,-0.3538875,-0.70056474,0.2410823,0.09044675,-0.11331234,0.2473228,0.48375815,-0.27900073,0.3276989,-0.62463874,0.061312053,-0.10019366,0.21459773,0.03513289,0.14923614,-0.41585165,0.76288474,0.012496587,0.52478707,0.045940813,0.36738962,-0.2308226,-0.4155835,0.24286468,0.84412855,0.33178502,-0.119637236,-0.18390583,-0.2866805,0.025005238,-0.2683616,0.020945247,0.60183376,0.7580307,-0.11307535,0.09704831,0.45333585,-0.21384366,-0.033028543,-0.2108221,-0.2591806,-0.052663542,0.15561226,0.4061436,0.6278728,0.04260601,0.3863144,-0.11916296,0.41991705,0.0021852255,-0.6515452,0.66279185,0.61580575,-0.14014481,-0.19042677,0.6123389,0.6065562,-0.5089439,0.6553604,-0.733357,-0.2832208,0.7267762,-0.14602557,-0.4602166,0.10172649,-0.33300024,0.12209036,-0.6143702,0.30004254,-0.37893286,-0.4974558,-0.27177793,-0.32289034,-2.8897283,0.08559479,-0.1980347,-0.09123495,-0.30045393,-0.052557696,0.2667955,-0.6313133,-0.616001,0.017272206,0.2993213,0.51719034,-0.10434196,0.16466689,-0.28038108,-0.26149917,-0.11076201,0.3235718,-0.007999166,0.32572752,-0.36578533,-0.4060982,-0.016889345,0.09813359,-0.53280085,-0.11901739,-0.5045383,-0.31293714,-0.080149375,-0.57956433,-0.11900857,0.59912956,-0.45999274,0.05219273,-0.19406714,0.19233288,-0.044648413,0.19326086,0.08472489,0.29889545,0.30041477,-0.05937099,0.14297791,-0.23633352,0.6019604,-0.067158416,0.4246186,0.100769825,0.0386495,0.13396902,0.32433647,0.4816204,-0.1441624,1.0647696,0.33826604,-0.13120484,0.16668911,-0.1885714,-0.29628438,-0.8514069,-0.3931887,-0.05473652,-0.455417,-0.59671366,-0.07550495,-0.25324312,-1.0296537,0.6841198,0.10288534,0.5551352,-0.19744284,0.18149446,0.39573872,-0.13496393,-0.05097469,-0.08144402,-0.29718688,-0.50324196,-0.34113282,-0.6856166,-0.45164663,-0.036997985,0.7504997,-0.41328368,-0.035341825,-0.050521135,-0.3625767,0.067474864,0.27914402,0.08371015,0.22739553,0.5088728,0.024158502,-0.57597286,0.3485479,-0.013299036,0.07349236,-0.4376512,0.14662844,0.76860434,-0.67029923,0.49968275,0.36939478,0.14859524,-0.057475507,-0.5692562,-0.07219445,-0.016915027,-0.110360734,0.64132816,0.12661682,-0.60294366,0.58114696,0.104695335,-0.46703592,-0.69914716,0.35046533,-0.15575078,-0.25788423,-0.023531241,0.458634,0.037863698,-0.19460097,-0.25566527,0.24082139,-0.3250247,0.2556957,0.21431394,-0.20513557,0.37407824,-0.058140516,-0.5968545,-0.7870682,0.10817765,-0.6127608,-0.44854486,0.3405476,-0.056578122,-0.1627572,0.26976788,0.036008656,0.49194005,-0.02551386,0.17014946,-0.10231642,-0.31985697,0.5353028,0.46733588,0.42216906,-0.41348046,0.63162196,0.24338083,-0.32613665,0.23979422,0.081663765,0.44640264,-0.16174367,0.46990782,-0.07431626,-0.025014384,0.31333226,0.53755,0.30534393,0.32600278,0.015377204,-0.30459067,0.40499738,-0.056404848,0.2267324,-0.2181152,-0.5605721,-0.06358621,-0.11061117,0.11172,0.5409747,0.32776088,0.46933395,0.18240485,-0.119780056,0.19432203,0.076758854,-0.22195244,-1.2252191,0.41312867,0.3389496,0.850548,0.45126137,0.15892978,-0.11323962,0.6875135,-0.3809442,0.0080279205,0.42432135,0.18924035,-0.37805635,0.61707395,-0.5491756,0.43363056,-0.1173257,-0.08059406,0.1982219,0.19193612,0.3805843,0.97124046,-0.18583088,0.036702927,-0.15544605,-0.17820935,0.054742895,-0.19281435,0.17655714,-0.31120437,-0.6224786,0.8425508,0.35023788,0.44437045,-0.17201549,-0.12987122,0.019160667,-0.19061197,0.33180568,-0.08578567,-0.039380398,0.014813975,-0.4504955,-0.23595819,0.44978312,-0.0040340167,0.1576562,-0.15477525,-0.16104126,0.057929516,-0.108437076,0.1759881,-0.049894776,-0.639093,-0.07322515,-0.020703603,-0.66265315,0.3874169,-0.2883395,0.15481445,0.19822434,-0.020919975,-0.27206448,0.26569402,0.14999726,0.71687794,0.07964425,-0.16760786,-0.29633716,-0.03444797,0.37680656,-0.26046714,0.04225093,-0.18878566,0.15739061,-0.6772057,0.5858518,-0.42315733,-0.5697022,0.14423576,-0.3757639,-0.23119283,0.58130336,-0.01934777,-0.3092818,0.2631625,-0.22051707,-0.49437344,-0.06696662,-0.30177394,0.14420289,0.15196122,-0.30720437,-0.2737567,-0.19491486,-0.022717113,0.41899535,-0.08552253,0.38504377,0.1945354,0.056569636,-0.37363803,0.07053157,0.25892818,0.4957239,0.09861391,0.21161006,-0.12210885,-0.44861645,-0.35474518,0.33217105,-0.22207883,0.17934665,0.1322987,-0.31945798,0.91126984,0.12069264,1.2695149,0.11994768,-0.40944576,0.12470393,0.55749923,-0.16798595,0.03229607,-0.4061068,0.93764764,0.73631924,-0.24372362,-0.06135348,-0.5938247,-0.1128675,0.25707242,-0.44878143,-0.06188701,-0.11605896,-0.58172023,-0.42527926,0.26253477,0.22162701,0.116364524,-0.10081741,-0.08307899,0.07734437,0.22893684,0.5770891,-0.5852082,-0.20202678,0.22038203,0.064828716,-0.18932088,0.20755579,-0.4149543,0.45800218,-0.6932067,0.12777556,-0.37414762,0.13301152,-0.3925998,-0.3522483,0.15930255,-0.13347429,0.26279113,-0.37507918,-0.401706,-0.14193088,0.3938444,0.19436897,0.12215748,0.7617327,-0.30413997,0.18853383,-0.022668425,0.48571664,1.3044194,-0.36687124,0.061382,0.26599315,-0.47973067,-0.64657044,0.23202787,-0.49442163,-0.10554349,-0.08413899,-0.72410756,-0.2765604,0.35715276,-0.03807675,-0.03616861,0.18628651,-0.5540792,-0.057827696,0.2992473,-0.14150284,-0.30469337,-0.13664788,0.5144417,0.7010062,-0.29619807,-0.5549993,0.048323113,0.36438486,-0.30775577,-0.58455485,-0.00719349,-0.06547228,0.5170483,0.019026216,-0.28069016,-0.013242599,0.22395156,-0.51209414,0.04706765,0.434241,-0.37195817,-0.019252324,-0.14857486,0.06624504,0.5884003,-0.24484149,-0.22383918,-0.6015269,-0.3794025,-0.97472584,-0.41156197,-0.13212581,0.15008458,-0.052467134,-0.43494567,-0.03561036,-0.39423046,0.01223585,0.10499375,-0.73431647,0.40437204,0.17195155,0.6323232,-0.4074563,-1.092459,0.1556792,0.19398665,-0.013494615,-0.8012236,0.71823174,-0.16452803,0.6244165,0.093893856,-0.141359,-0.018281957,-0.5477262,0.20390616,-0.34888917,-0.23117876,-0.9714276,0.12698461,731 +273,0.34918535,-0.25905916,-0.22553015,-0.1241322,-0.029021958,0.1305069,-0.007671662,0.47864878,0.16959375,-0.39835778,-0.036878694,-0.2716249,-0.06547102,0.26619333,-0.10870656,-0.3732659,-0.093544774,-0.023055386,-0.27200592,0.4647779,-0.37728244,0.27983665,-0.03995471,0.27365834,0.10366591,0.4272,0.17381558,-0.23454939,-0.15216973,-0.036530435,-0.18337406,0.028710842,-0.3298289,0.10324836,-0.055189822,-0.19463135,0.083942555,-0.38803083,-0.40248102,-0.6237198,0.3649584,-0.69929326,0.35121924,0.07687224,-0.11619018,0.38988227,0.15601072,0.20909338,-0.2618394,-0.025912741,0.20292208,-0.06661714,0.09255467,-0.10732662,-0.14483163,-0.3473087,-0.4382165,0.058623545,-0.34464198,-0.3739974,-0.17122047,0.08081238,-0.30709508,-0.05912656,-0.09444852,0.35660633,-0.4318981,-0.08473091,0.20654045,-0.18923526,0.2832519,-0.6005973,-0.21975492,-0.06205826,0.093741655,-0.079877816,0.031901788,0.2903683,0.13616012,0.55528843,-0.048767544,-0.08933,-0.35128358,-0.06561109,0.07900991,0.6174442,-0.19923367,-0.41583902,-0.010727893,-0.0091331545,-0.04845206,0.057260934,0.12411644,-0.2567778,-0.11099278,0.13439804,-0.3600828,0.25257623,0.502923,-0.32730916,-0.33699045,0.40160617,0.49164486,0.027187813,-0.057690136,-0.014505418,-0.0059698313,-0.31257722,-0.13641433,0.08243248,-0.2024226,0.46943796,-0.047656476,0.3486728,0.63565063,-0.11626152,0.19550024,-0.11955893,-0.055736914,-0.13499467,-0.23919158,-0.014725964,0.03556144,-0.34717792,0.14958015,-0.12888704,0.7586463,0.20716476,-0.6871988,0.40951696,-0.42728043,0.20244838,-0.031364985,0.53526217,0.6035501,0.2527404,0.44593716,0.72337353,-0.5744555,0.060578074,-0.11724987,-0.28041336,0.033211127,-0.14377625,0.123433,-0.52742785,0.059429787,0.28619274,-0.06574095,0.031694904,0.08493171,-0.44689506,0.038420938,0.18150823,0.9145345,-0.2511015,-0.013086494,0.56719947,1.0090109,0.8050468,-0.013760265,0.97943693,0.25915584,-0.31088,0.42917383,-0.5696251,-0.66448057,0.20865795,0.394847,0.28932565,0.21765977,0.1588358,-0.15304136,0.35816422,-0.31852058,0.1756561,-0.1694532,0.124942236,0.24673837,-0.07321129,-0.2716875,-0.21873516,-0.047427047,-0.07697896,0.12109441,0.076123744,-0.23097517,0.26609546,-0.071631305,1.823526,-0.032912232,0.11010553,0.108825095,0.597058,-0.017615676,-0.10992236,0.061932847,0.32442302,0.27524787,0.026650174,-0.56163913,0.15087697,-0.20640889,-0.6498244,0.0023158053,-0.28787506,-0.100401506,0.11685885,-0.35097754,-0.15955935,-0.11141023,-0.41052696,0.38964385,-3.0776362,-0.051559664,-0.14681396,0.25389114,-0.3497931,-0.24235025,0.048193377,-0.41840145,0.34342733,0.49487457,0.3532938,-0.6936053,0.30434987,0.34455904,-0.3606715,-0.13502264,-0.45870337,0.036115628,-0.04807867,0.3720393,0.07302208,-0.0010829886,0.050924517,0.1021965,0.47001383,0.08218517,0.06675752,0.23596579,0.34217975,-0.014515189,0.3403396,0.08748882,0.28570583,-0.22255547,-0.043210194,0.26623046,-0.48679954,0.20045458,-0.039284103,0.13433671,0.29995015,-0.3463685,-0.6768641,-0.6192961,-0.35403225,1.209684,-0.11222375,-0.3880294,0.362473,-0.24015704,-0.124068655,-0.20934094,0.53350025,-0.01845214,-0.09378008,-0.68035597,0.080728054,-0.19104192,0.12176467,0.018217294,-0.005656928,-0.30483666,0.7924898,-0.07754677,0.48889586,0.29131165,0.12382409,-0.23280239,-0.34212115,0.043916572,0.7580868,0.31293526,0.2049941,-0.117862575,-0.17066444,-0.21285,-0.36035067,0.19221371,0.41333738,0.6965912,0.062453374,0.022378743,0.29221362,-0.08928955,-0.06633155,-0.10588424,-0.17408413,-0.052761916,-0.020849245,0.5578578,0.4439977,-0.25701243,0.3635083,-0.15831761,0.18315004,-0.25724176,-0.27559415,0.48463795,0.5875752,-0.14705025,-0.14939585,0.44876188,0.5374863,-0.23626514,0.33317837,-0.70269024,-0.27735192,0.5292445,-0.23447494,-0.47311267,0.19009332,-0.27584416,0.028688025,-0.8596485,0.25507966,-0.14515291,-0.3547931,-0.49032933,-0.17026153,-3.6517186,0.059476018,-0.25407147,-0.355502,0.033765092,-0.010874846,0.085947014,-0.5701305,-0.32381096,0.11765852,0.08244047,0.4198282,0.06511524,0.21389176,-0.2902559,-0.020579377,-0.40083373,0.09209351,-0.16138652,0.34956676,0.016470302,-0.34928444,-0.027227584,-0.12542689,-0.43633264,0.08073106,-0.45080593,-0.4567754,-0.23891553,-0.494839,-0.2901138,0.48081133,-0.31575468,0.05487918,-0.30715656,-0.12903902,-0.3106969,0.5065776,0.27835146,0.034711536,-0.035889722,-0.03437408,-0.009578451,-0.27727768,0.31474912,0.09945595,0.34521917,0.50326914,-0.15452169,0.12125133,0.3932558,0.5025936,-0.07260398,0.6264198,0.49554533,-0.12302092,0.37507787,-0.3682255,-0.054034676,-0.43765274,-0.41770178,0.02168837,-0.24879055,-0.5417028,-0.13172589,-0.36762625,-0.6208511,0.26128837,-0.016517822,0.27083302,0.05544615,0.11169203,0.50866866,-0.17480157,0.009065,-0.06137659,-0.036147308,-0.53797495,-0.32072407,-0.6142972,-0.494492,0.37656707,0.699639,-0.023127705,-0.15584327,0.07727446,-0.20750594,-0.09763273,-0.028220566,0.065810435,0.11861483,0.25418863,-0.159985,-0.7060681,0.5632892,-0.021430492,-0.14020434,-0.5202548,0.11673265,0.3880361,-0.46636885,0.47382832,0.18280019,0.14265035,0.022930412,-0.37730238,-0.20852135,-0.22915027,-0.24693726,0.24948241,0.070159145,-0.734388,0.349243,0.4195878,-0.21642962,-0.6533716,0.29885438,-0.076430164,-0.23883708,0.03675265,0.18934996,0.2208271,-0.06189562,-0.09313171,0.13823217,-0.5795525,0.29031822,0.2206843,0.014950673,0.6201607,-0.13698368,-0.054666005,-0.523713,0.046509687,-0.43133876,-0.18809167,0.10778861,0.24324687,0.16468897,0.15413103,-0.029869238,0.27651492,-0.23203358,0.049288753,0.13585995,-0.13286562,0.26263994,0.3712179,0.3971399,-0.46679133,0.5552487,-0.053005952,0.021152882,0.016172664,0.027120909,0.3822998,0.30809107,0.16341534,-0.025165845,-0.2846541,0.25479838,0.7444217,0.256861,0.4463161,0.149628,-0.2105367,0.43464246,0.12031043,0.059464026,0.17921953,-0.4351827,-0.028465481,-0.024406286,0.18670817,0.31545818,0.14641532,0.39659408,-0.11334955,-0.1750656,0.080066115,0.27055794,-0.21019493,-1.0039773,0.3408137,0.19078375,0.8443958,0.39188558,-0.10898658,0.087367386,0.75719506,-0.1806189,0.13189413,0.2626799,-0.03817146,-0.68744725,0.56214154,-0.5691334,0.42789137,-0.08249162,0.010747842,-0.0040780944,0.027882295,0.25274172,0.64641196,-0.15170044,-0.032354712,-0.074231006,-0.30992526,0.034462113,-0.3656858,0.19937988,-0.43157336,-0.19292071,0.4101492,0.4492094,0.30328825,-0.063941166,0.048944093,-0.03405114,0.010760697,0.096222445,-0.0713493,0.09152575,-0.053014774,-0.6996004,-0.39374268,0.54913026,-0.16256335,0.18178539,0.0028837363,-0.2976382,0.1509433,-0.20767546,-0.23788227,0.016671048,-0.5158084,0.14431757,-0.06984733,-0.51295125,0.39471185,-0.04421852,0.323877,0.12896603,-0.031119687,-0.32890242,0.21156982,0.24146602,0.6472938,-0.094292216,-0.15254396,-0.5619518,-0.024361206,0.23931172,-0.18664898,-0.15082596,-0.14844766,-0.17697152,-0.46925774,0.49781972,-0.013008428,-0.2415021,0.20475006,-0.34324723,0.07149525,0.5845782,-0.14085157,-0.17706467,-0.0394907,-0.17576678,-0.24459155,-0.14671612,-0.112806894,0.34548673,0.019929329,-0.031928357,-0.023768846,-0.1530485,-0.060976434,0.37175843,0.035826366,0.21906981,0.27068186,0.027854117,-0.3421604,-0.10957773,0.054986462,0.32331327,0.1528631,-0.031156382,-0.12829177,-0.47811407,-0.37451172,0.04862581,-0.14310855,0.31988317,0.13713522,-0.44895688,0.58730114,-0.004160869,1.104069,0.10535052,-0.23558156,0.06913895,0.39610085,0.03493266,0.16098176,-0.40826562,0.74818,0.6076444,0.032134578,-0.111571975,-0.20392844,-0.060989298,0.30853614,-0.15286002,-0.053101156,-0.033987515,-0.735162,-0.30934498,0.26548505,0.18752974,0.115293466,0.02576712,-0.0049145618,0.09377555,0.015777986,0.5194736,-0.33879864,-0.23138633,0.32738164,0.08408761,0.040901612,-0.001977853,-0.41048592,0.42479667,-0.58152705,0.024028294,-0.19446,0.07206576,-0.2102044,-0.15039444,0.1839568,-0.021697856,0.5141984,-0.20441963,-0.4306011,-0.18403496,0.45902634,0.04318799,0.20959447,0.41809922,-0.12336413,0.0031945885,0.05853315,0.50510544,1.0475157,-0.25968674,0.099914946,0.3280683,-0.30829257,-0.6519499,0.37095305,-0.07305385,0.15266676,-0.045345705,-0.17247842,-0.38709623,0.25993544,0.26410773,0.013809673,0.03132235,-0.5310397,-0.4329758,0.18368691,-0.38243008,-0.24215785,-0.3218076,0.14195725,0.70969504,-0.3754296,-0.1582616,0.15233189,0.30008832,-0.23205057,-0.5207138,-0.023924852,-0.23008223,0.37117666,0.13912408,-0.28987184,-0.24649283,0.05959637,-0.24845701,0.1642169,0.0720313,-0.48325503,0.049739305,-0.29210493,-0.026551057,0.81238914,-0.020432035,0.13573691,-0.72777903,-0.38344756,-0.8767997,-0.5431651,0.44955906,0.09782311,-0.12493273,-0.33612877,-0.042740162,0.06597749,0.05080672,-0.14551285,-0.45853743,0.4697127,0.16682409,0.3198585,-0.07189352,-0.5393313,-0.014484787,0.19319959,0.007437865,-0.54939705,0.48049697,0.034008447,0.87146676,0.01885294,0.07699192,0.31536216,-0.42361882,0.007621312,-0.25769886,-0.3540627,-0.6059086,0.18219967,736 +274,0.4234263,-0.17035034,-0.663369,-0.107421964,-0.3407318,-0.035459004,-0.19977093,0.6911924,0.1427249,-0.49053803,-0.13083972,0.0018070459,-0.06692688,0.534785,-0.17514093,-0.70430756,0.015568308,0.09684982,-0.41707852,0.52326167,-0.36941054,0.32082814,0.030259622,0.3533986,0.16596791,0.33719692,0.09958399,-0.10241208,-0.120687164,-0.10042238,-0.06024409,0.3164621,-0.533779,0.28549525,-0.22783054,-0.4453513,-0.020442689,-0.39604598,-0.3102477,-0.63246995,0.2965415,-0.6871193,0.44698793,-0.20219073,-0.3424958,0.20083642,0.04265289,0.38852087,-0.28082457,-0.040422622,0.09519367,0.04878277,-0.12673847,-0.11385587,-0.13352858,-0.34854352,-0.49194005,0.19990383,-0.5050107,-0.030598955,-0.14412716,0.15807836,-0.44087467,0.1139905,-0.08627207,0.42404416,-0.46709055,-0.05851133,0.35006294,-0.20478716,0.08505047,-0.6380855,-0.02559789,-0.08325432,0.25974697,-0.09899386,-0.06701653,0.33338413,0.20790777,0.54826474,0.164258,-0.26526582,-0.3087096,0.002800552,0.078184225,0.53607994,-0.2187797,-0.43939593,-0.2350792,-0.034960277,0.3061398,0.15861756,0.0853,-0.17796895,-0.0664667,0.0910897,-0.2576461,0.28038776,0.4282896,-0.28480235,-0.14728622,0.21676491,0.6191661,0.24035987,-0.084480904,-0.0052210093,0.12830615,-0.5023797,-0.24510165,0.019489478,-0.17904289,0.39261714,-0.12607294,0.3183685,0.76887375,-0.21482484,0.15128572,0.11852051,0.016414348,-0.18423165,-0.38622743,-0.24785297,0.25610095,-0.53712064,0.06502739,-0.113258585,1.0069392,0.14059442,-0.6559252,0.28129327,-0.52232134,0.1737948,-0.21085861,0.56998825,0.7498774,0.40469846,0.13825302,0.82546157,-0.42841163,0.15998799,-0.08179452,-0.504258,-0.0129185,-0.10838081,-0.07913576,-0.47952995,-0.028693784,0.09026216,0.031341977,0.09800044,0.33743945,-0.6258103,-0.072036244,0.01651992,0.89683354,-0.30044428,-0.112501845,0.8149427,0.9180353,0.99766105,-0.12087878,1.1410258,0.29234868,-0.19406764,0.2385216,-0.29357386,-0.64170563,0.2921986,0.5314007,-0.18968649,0.2923941,0.03264092,-0.016321806,0.65271103,-0.3585885,0.15279561,-0.27427247,0.24194805,0.047408298,-0.25947773,-0.554568,-0.17061119,0.018274406,-0.053164966,0.006989805,0.335911,-0.11497311,0.5177106,0.032675937,1.6375324,-0.063642934,0.16494404,0.13007966,0.4957789,0.2071758,-0.21343452,-0.053146135,0.015371005,0.42172125,-0.061476786,-0.5628136,-0.0025064112,-0.30276024,-0.61700946,-0.2892926,-0.3250187,-0.05583527,-0.07520788,-0.5142643,-0.18080519,-0.11594292,-0.11257914,0.44810677,-2.5658312,-0.23953795,-0.20452248,0.13646139,-0.43764782,-0.4264518,-0.17456697,-0.559756,0.44969225,0.31825295,0.5921487,-0.4670638,0.53437483,0.4077746,-0.4900331,-0.09203994,-0.60425895,-0.099130236,0.018423678,0.30668512,0.090060234,-0.20932245,-0.11756988,0.038055968,0.54024255,-0.24110514,0.08980124,0.17645182,0.24152806,-0.028859966,0.47984487,0.094693884,0.5549554,-0.47423235,-0.3673447,0.4318616,-0.1766644,0.26690808,-0.19489251,0.15396528,0.35516948,-0.392726,-1.038999,-0.74350095,-0.22389202,1.1453184,-0.122718245,-0.39300582,0.34985936,-0.073802955,-0.1026352,0.029189177,0.2686426,-0.10110974,-0.09627311,-0.7484389,0.1324519,-0.12528819,0.057372916,0.051402688,-0.16337095,-0.39548352,0.558615,-0.11915506,0.35013387,0.4737023,0.22038746,-0.06496113,-0.35716012,0.03159689,1.0872122,0.48848936,0.1745992,-0.28169888,-0.21313958,-0.28110474,-0.13141476,0.06612139,0.44856745,0.7710387,0.057810165,0.19780447,0.1881276,0.076639935,0.0544273,-0.017446153,-0.45954037,-0.190933,0.08750465,0.59268445,0.52541536,-0.10340886,0.41806015,-0.1281853,0.33265713,-0.08792669,-0.5142323,0.6081918,0.64589715,-0.27536508,-0.32543322,0.69024074,0.44198498,-0.17232952,0.4476798,-0.5706117,-0.41734436,0.4711873,-0.1828513,-0.40745768,0.07447515,-0.18915187,0.08688988,-1.0329695,0.10686171,-0.40830666,-0.4204153,-0.53218406,-0.35870874,-3.3480568,0.16930181,-0.24468149,-0.0726459,-0.11384197,-0.078771256,0.2587144,-0.7029527,-0.6158249,0.19226743,0.11170414,0.6919539,0.037060335,0.21429211,-0.18832545,-0.22295591,-0.18665093,0.07299469,0.24248883,0.20783332,-0.011709136,-0.61979043,-0.1448434,-0.112907395,-0.43611935,0.12938806,-0.761845,-0.48235533,-0.32356185,-0.554968,-0.18005668,0.80095655,-0.36458716,-0.0019076546,-0.1771843,0.119077,-0.1208855,0.29542622,0.035976384,0.045402132,0.12273395,-0.14874893,0.16248983,-0.4386086,0.238606,0.19252697,0.5539265,0.34756377,-0.18987218,0.31180942,0.7659063,0.7999087,-0.15740258,0.7874139,0.54379845,-0.117825605,0.3511367,-0.16411562,-0.3167149,-0.61448187,-0.46343967,-0.09861887,-0.4227466,-0.41380423,0.09988515,-0.4233637,-0.9551865,0.6240692,0.043205883,0.2075008,0.008698591,0.27131045,0.44750702,-0.2657004,-0.15044312,-0.090193614,-0.04577681,-0.54785955,-0.36898836,-0.6417329,-0.5681948,0.01798133,1.3400985,-0.19301318,-0.012065713,0.047118597,-0.26560572,-0.031934105,-0.007227234,0.0066515086,0.124822125,0.43082136,-0.115449294,-0.6940385,0.46495238,-0.1707428,-0.21060807,-0.51793426,0.025195312,0.5496685,-0.62224096,0.3085047,0.33084354,0.108282804,0.16108796,-0.505427,-0.12051882,-0.07235732,-0.087881476,0.43896765,0.28785127,-0.7569851,0.5999808,0.40430126,-0.3087551,-0.8004978,0.30782902,0.0016516368,-0.09409786,-0.07214544,0.22512527,0.28524467,-0.079753764,-0.1667101,0.10502598,-0.3884678,0.32955977,0.2789348,-0.13560422,0.44356412,-0.2972077,-0.1973636,-0.79589516,-0.10900601,-0.53763264,-0.2432975,0.18630156,-0.030735135,0.030643739,0.014279672,0.15956756,0.32745117,-0.30082408,0.09433807,-0.06527322,-0.32419714,0.37383315,0.3988921,0.49418122,-0.48255265,0.5213651,0.117058985,0.020977871,0.0057053566,0.07872149,0.58112216,0.006271867,0.35099104,-0.1298334,-0.19028965,0.30244294,0.86420316,0.07018098,0.39861426,-0.00039885045,-0.21320601,0.06270576,0.091326475,0.025449192,0.11700957,-0.5336325,0.092848584,-0.009123294,0.1977196,0.67422545,0.16959913,0.41397256,-0.012879023,-0.24353638,0.15116136,0.055420827,0.036942873,-1.2780203,0.45667452,0.18607269,0.8451899,0.30291212,0.108505875,-0.11091081,0.657753,-0.22072172,0.16975716,0.42412922,-0.047024094,-0.5277655,0.58341104,-0.6938857,0.66874295,-0.023573844,0.03490139,0.09238207,-0.054745514,0.50856787,0.8155622,-0.1418101,0.01055046,-0.008153359,-0.38461182,0.032879394,-0.33733633,-0.023870716,-0.48840863,-0.19383913,0.73803616,0.5306311,0.2887253,-0.12317339,-0.10528404,0.16683461,0.018949818,0.21636425,-0.23693973,0.19467165,-0.09832606,-0.5401794,-0.20273873,0.5947745,0.27859566,0.27927315,0.006303795,-0.25780478,0.30690292,-0.15718648,-0.0073812,-0.114904605,-0.63909245,-0.0055360156,-0.41752586,-0.38834932,0.36778578,-0.061089277,0.23181792,0.07920984,0.1330416,-0.47333214,0.4712195,-0.2051195,0.84120595,-0.22529773,-0.2365654,-0.33206236,0.2696814,0.3750494,-0.28387988,-0.10491598,-0.41618,-0.03165548,-0.5905991,0.29891452,-0.18739475,-0.3643151,0.15213431,-0.1650805,0.020465728,0.4519834,-0.089149885,0.006423326,0.025825357,-0.046535805,-0.23409595,-0.26889998,-0.15967952,0.19316538,0.24597533,0.09658452,-0.12147759,-0.31632563,-0.08381152,0.37743747,0.010422114,0.18909976,0.32728177,0.06023473,-0.3954552,-0.20839219,0.2493649,0.5052676,-0.06155291,-0.13366638,-0.4838721,-0.36472327,-0.26132557,0.1783209,-0.16130209,0.3217798,0.101391144,-0.24446417,0.85627365,0.10872808,1.3196816,0.21582727,-0.36538965,0.10601142,0.45306188,0.022111956,0.044929262,-0.35845244,0.9552183,0.5226977,-0.11323481,-0.20537631,-0.5119877,-0.072502896,0.16892567,-0.27251822,-0.2291381,-0.14312126,-0.635805,-0.3925647,0.36459142,0.2034683,0.15187697,-0.13373956,-0.07788149,0.14757185,0.08689329,0.41125223,-0.51510227,-0.16222158,0.27476135,0.29373324,-0.1598679,0.24881724,-0.67880875,0.46447846,-0.61637217,0.11547522,-0.31512466,0.20288907,-0.19534184,-0.29357353,0.24372266,-0.09867811,0.41680384,-0.31394902,-0.39106825,-0.19390675,0.6052549,0.23824094,0.17718396,0.69336736,-0.36385617,-0.07368309,-0.04974809,0.5521037,1.0016117,-0.43430457,0.025314363,0.40963826,-0.13698411,-0.47639456,0.2123409,-0.25763187,0.1785842,-0.11367126,-0.31312707,-0.5393379,0.3144352,0.18253666,-0.036093004,0.050038613,-0.533499,-0.09309939,0.24442455,-0.24453542,-0.28037682,-0.33066407,0.17838229,0.64944166,-0.32850266,-0.41025606,0.25271636,0.3725173,-0.0315949,-0.3963063,-0.04493339,-0.20979027,0.2172695,0.20177814,-0.38057813,-0.09650838,0.046635844,-0.48796046,0.1401449,0.32591572,-0.3868977,-0.03764119,-0.16361447,-0.061501577,0.90969294,0.0032951555,0.38422468,-0.5725404,-0.3696372,-0.88570637,-0.45684427,0.5809008,0.2809827,-0.03070793,-0.6086978,-0.04705327,-0.18136701,-0.054311045,-0.07215386,-0.47810376,0.3905442,0.06649408,0.51368153,-0.11475237,-0.6798437,0.07643737,0.021467602,-0.17409934,-0.5339107,0.49118462,-0.1410899,0.9075671,0.08165436,0.0871028,0.35460302,-0.51034963,-0.06023197,-0.32478848,-0.266018,-0.75280035,0.042087328,742 +275,0.41101953,-0.1600624,-0.52038914,-0.24874665,-0.53520983,0.15085188,-0.33944836,0.16710173,0.38253075,-0.064133905,0.11281354,0.008674415,-0.14675786,0.31837988,-0.061118226,-0.9282154,0.04745873,0.14633137,-0.9151649,0.67787725,-0.551618,0.2925495,-0.032022804,0.3812074,0.071490906,0.23558542,0.14192085,0.10161045,0.119742244,-0.071674675,-0.12492997,0.3366876,-0.76622844,0.31519762,-0.07088871,-0.40395823,-0.18848558,-0.3155245,-0.22516437,-0.8635896,0.18034598,-0.6625396,0.55319977,-0.120951414,-0.41451892,0.052054867,0.21608277,0.18671365,-0.45417222,-0.01852026,0.24682803,-0.29051575,-0.05152947,-0.14067787,-0.27256432,-0.64539146,-0.70616204,-0.14685632,-0.6093203,-0.04555595,-0.271691,0.32186463,-0.32499272,-0.011690727,-0.2950891,0.53090364,-0.39859396,0.30623558,0.21566036,-0.09795844,-0.14179304,-0.50194126,-0.112579264,-0.22335774,0.17803794,0.20305915,-0.49394143,0.3910457,0.2895772,0.5225077,0.16574624,-0.3842095,-0.2403782,-0.18390802,0.031542048,0.2570149,-0.021300245,-0.2645914,-0.3035482,-0.12532578,0.2814385,0.18603471,-0.0007865747,-0.43387935,0.12997137,0.053923607,-0.21084017,0.5572487,0.4974816,-0.48225313,-0.24656908,0.34781793,0.33361584,0.19447078,-0.33206698,0.15888736,-0.20025365,-0.576541,-0.277196,0.17678826,-0.1584399,0.46459717,-0.26585487,0.18368196,0.65659803,-0.16489886,-0.25917035,-0.15533139,-0.15828043,-0.042747602,-0.3815622,-0.2431244,0.18995121,-0.45952746,0.07540203,-0.23551254,0.6791864,0.15418638,-0.7704011,0.37106678,-0.50023514,0.21613033,0.01868397,0.72629446,1.0252882,0.578161,0.2783313,0.8309527,-0.33637348,0.17708614,-0.07383587,-0.2390172,0.16822317,-0.18379103,0.21654588,-0.5104975,0.08884754,-0.19622914,-0.007446353,0.028486164,0.33563682,-0.4407721,-0.17848545,0.012581221,0.6702425,-0.3514058,-0.121673346,1.0038493,0.9637493,1.194854,0.12099807,1.3248672,0.4969622,-0.053262763,-0.0011924505,-0.24177901,-0.5720852,0.16192633,0.1817685,-0.05119562,0.40071395,-0.0028883626,0.097620435,0.52790314,-0.15272434,-0.1498437,-0.06735681,0.42176017,0.060366828,-0.075622946,-0.36522022,-0.18183464,0.32206494,0.010140959,0.047489356,0.292116,-0.1678745,0.56918997,0.24179849,0.9495757,0.15004085,-0.03642059,-0.03002658,0.33610705,0.3001011,-0.06524597,-0.06531138,0.42899427,0.29043186,-0.047097787,-0.66720515,0.15288535,-0.2902578,-0.269504,-0.095916554,-0.41622055,-0.14848252,-0.24673657,-0.41228184,-0.28917658,0.074980065,-0.15623339,0.37309378,-2.5021758,-0.28768378,-0.1571452,0.2356417,-0.054662053,-0.1866615,-0.28308985,-0.64338213,0.31652603,0.25981814,0.3354432,-0.63374454,0.4910724,0.38353235,-0.4659364,-0.041093167,-0.75693494,-0.07673734,0.020081019,0.5390323,-0.12845351,-0.113978736,-0.09824496,0.34682605,0.64915216,0.06337539,0.14832738,0.3150835,0.6018151,-0.23016077,0.5455264,-0.022543767,0.54069763,-0.40932685,-0.18496017,0.35404426,-0.4893824,0.29735145,0.08321726,0.053005304,0.630936,-0.4383363,-0.8226116,-0.40017426,-0.20450966,1.2281964,-0.43733814,-0.5085427,0.21128117,-0.3723017,-0.13870303,0.02593375,0.5080715,-0.073688515,0.07058823,-0.6398612,0.09607602,-0.07362064,0.25369284,-0.07078457,0.1882702,-0.313165,0.7822534,-0.1716869,0.45510018,0.23748595,0.13118847,-0.45920584,-0.42479017,0.19355272,0.6588505,0.4215709,0.06345127,-0.13956538,-0.18588321,-0.11441925,-0.1391634,0.11732049,0.8488996,0.5355142,-0.16748998,0.13070379,0.39418977,-0.24668601,0.012366221,-0.32441965,-0.18621513,-0.14171849,0.20987006,0.50451607,0.66708344,-0.09971626,0.38538778,0.0093891965,0.13441299,-0.09251644,-0.7278113,0.58666164,1.0378376,-0.2403418,-0.29429653,0.5205983,0.31070462,-0.2685658,0.5514303,-0.46674526,-0.33852905,0.6336221,-0.06000773,-0.32992417,0.021115335,-0.41774347,-0.035132047,-0.73574865,0.21713702,-0.1505082,-0.55832225,-0.62413234,-0.19243078,-3.7843668,0.0871264,-0.22165878,-0.029133867,-0.28607425,-0.215157,0.31137362,-0.45779344,-0.5760156,0.1533194,0.15060404,0.57431096,-0.18118931,0.022711407,-0.2406343,-0.3730702,-0.31117618,0.28446472,0.20913549,0.3900576,-0.10026292,-0.4291989,0.13298467,-0.08378224,-0.63959616,-0.13606426,-0.47770283,-0.37788755,-0.021241792,-0.557226,-0.1756952,0.7680714,-0.4155582,0.05186391,-0.4379173,-0.07924068,-0.08022236,0.37791625,0.22450556,0.3392902,0.11636581,-0.062021114,-0.10916842,-0.25116614,0.0688973,-0.028077023,0.24092415,0.40079027,-0.058181874,0.2371829,0.47654393,0.76817435,0.015635999,0.8442289,0.25932634,-0.07327114,0.4637872,-0.20600122,-0.45576763,-0.7554549,-0.305724,-0.2605097,-0.5807075,-0.2834254,-0.123539604,-0.33055213,-0.80316335,0.44733185,0.077096716,0.20195137,-0.18188111,0.37019876,0.32015628,-0.16203651,0.17946558,-0.10210812,-0.3585541,-0.49336052,-0.49064484,-0.7049658,-0.6072089,0.10918031,1.0808845,-0.21020131,-0.12330005,0.015798545,-0.29375997,-0.00049668155,0.2612233,0.1272235,0.36711347,0.34078106,-0.050782394,-0.603414,0.37550554,-0.29280987,-0.008240922,-0.56533104,0.20335105,0.7329501,-0.64573187,0.6906699,0.24361828,0.22400567,-0.068421155,-0.81924087,-0.23518986,0.055447046,-0.15772796,0.6932031,0.19562604,-0.7415455,0.5513524,0.13786507,-0.10127514,-0.6533171,0.5174986,-0.03622836,-0.20087123,0.03824865,0.4338641,0.055443525,0.06311831,-0.17613119,0.26514885,-0.41544047,0.18318966,0.24776244,-0.060688734,0.24520597,0.011023879,-0.33429262,-0.6345288,-0.18521163,-0.6137919,-0.3658719,0.011206158,0.019518418,0.08279295,0.03134494,-0.027750429,0.45410213,-0.06417717,0.20918976,-0.20636891,-0.23628892,0.37881562,0.5835609,0.26703233,-0.5026515,0.70187545,0.19044465,0.04140166,0.037045836,0.21104911,0.4270959,0.20582996,0.529382,-0.12049435,-0.040588345,0.10034522,0.72832936,0.30266038,0.4175846,0.070981026,-0.18847509,0.30896014,0.20112629,0.22488405,-0.13375439,-0.18323082,-0.06664188,0.01519897,0.24965988,0.5788767,0.1148108,0.23333387,0.029321011,-0.042779963,0.14834,0.20352182,-0.13199857,-1.3786318,0.40069145,0.3032769,0.875366,0.5535528,0.15440606,-0.10050483,0.54805726,-0.40175265,0.10006788,0.46821457,0.13186787,-0.19955117,0.5721111,-0.6000258,0.5144504,-0.225874,0.03689225,0.17979002,0.39956537,0.32182086,0.94184905,-0.22725701,0.04962299,0.088747114,-0.36028117,0.21796933,-0.2755635,0.14740744,-0.30330095,-0.4934454,0.5950347,0.32790998,0.2812336,-0.5074988,0.013189351,-0.04200251,-0.3194064,-0.09046472,-0.20521545,-0.11076014,-0.32341403,-0.53257555,-0.22414847,0.5552895,-0.23643999,0.031680856,0.13974412,-0.24954864,0.22535153,0.057477474,-0.030653726,-0.04571012,-0.7258929,0.003541108,-0.2705099,-0.4088237,0.52449685,-0.41950467,0.20018277,0.27123362,0.00528965,-0.42060566,0.0955685,-0.07581861,0.5939805,-0.05096764,0.117308885,-0.22772208,0.16692428,0.32526273,-0.30733642,-0.009174154,-0.30113658,0.1543171,-0.50811344,0.3911005,-0.17897707,-0.31954852,-0.13857724,-0.037218366,0.07563302,0.500001,-0.26328447,-0.12297556,0.06381521,-0.07612122,-0.28474203,-0.07761175,-0.2918516,0.37191495,-0.00808141,0.029146457,0.073299386,-0.0672212,-0.096332416,0.4354753,0.05814867,0.2766298,0.28658614,0.023254784,-0.37511957,0.09453573,-0.04653143,0.4900264,0.13546467,-0.18031497,-0.19958043,-0.27073908,-0.3706059,0.5651741,-0.187498,0.20767511,-0.008323681,-0.5923355,0.8148718,0.15322113,1.1979343,0.04403867,-0.478659,0.23094486,0.5942208,0.03860347,0.14091192,-0.19717155,0.74537987,0.45756322,-0.11247776,-0.037211016,-0.41461736,-0.19282022,0.22167896,-0.3306553,-0.30102208,-0.20561023,-0.59202015,-0.05459,0.11171333,0.117706805,0.038077705,-0.11598794,-0.22227465,0.06647255,0.17352262,0.45085132,-0.51076365,0.0039563975,0.2970594,0.20136267,0.008161215,0.23279457,-0.22879079,0.44330472,-0.7886063,0.2033345,-0.45237106,0.2295755,-0.22615026,-0.1904563,0.2668617,-0.020772243,0.18283671,-0.31998792,-0.37144792,-0.38828275,0.57571095,0.25787103,0.29088286,0.7695911,-0.22766834,-0.09405139,0.27834156,0.56721705,1.229881,-0.13878243,-0.19475037,0.12231682,-0.3571314,-0.69772506,0.18216091,-0.45482874,0.022618787,-0.05757971,-0.28964567,-0.2383323,0.27127263,0.13586593,0.20130914,0.16996115,-0.7911538,-0.1283543,0.37500146,-0.16198769,-0.1914155,-0.3323769,0.35772666,0.8574479,-0.4265309,-0.25491938,0.027545908,0.31005684,-0.23272142,-0.7195003,0.019171638,-0.4351615,0.46821868,0.2090881,-0.34617248,0.07180526,0.16313511,-0.53828174,0.13573973,0.37560308,-0.2383412,0.06185895,-0.22762628,-0.23491907,0.95790267,-0.016546436,0.2676696,-0.50424415,-0.69160306,-0.88751453,-0.26677272,0.113429755,0.28324345,-0.04946455,-0.6410191,-0.19470379,-0.12489117,-0.07949984,0.16213019,-0.5880282,0.3850541,0.15059431,0.33161318,-0.09516238,-1.0463408,0.008972434,0.2728203,-0.11294333,-0.4712965,0.5625127,-0.25121763,0.55842245,0.1782363,0.09407863,0.010870756,-0.6443769,0.2689031,-0.33338967,-0.18383965,-0.5742181,0.065526225,746 +276,0.50942934,0.019318359,-0.60782164,-0.13861862,-0.39507753,0.20063451,-0.15017928,0.28047293,0.3774451,-0.29606673,-0.011223269,-0.18480334,-0.061925102,0.38046682,-0.06193827,-0.74301684,0.023032099,0.20147607,-0.53884953,0.5022748,-0.4156852,0.4610948,0.096184686,0.29819742,0.13624234,0.2703656,0.11331388,-0.02824432,-0.2047539,-0.02856555,-0.15779667,0.108628005,-0.5525368,0.17129186,-0.076057695,-0.37587485,-0.13127846,-0.36209768,-0.37529576,-0.6886646,0.3259905,-0.74152005,0.5664107,-0.14068015,-0.41589567,0.12751041,0.00886499,0.43701044,-0.3369418,0.17715038,0.15189452,-0.2471495,0.022128884,-0.173563,-0.43847057,-0.57426834,-0.5409663,-0.011317642,-0.45319405,-0.16757292,-0.34620297,0.12561303,-0.26191157,0.04461926,-0.22873639,0.35586208,-0.29770973,0.065634295,0.31337327,-0.18392485,0.16144505,-0.34552872,-0.10319487,-0.23508541,0.13755654,0.101584956,-0.24510197,0.29349,0.27451736,0.63909507,0.053875733,-0.3339379,-0.2490503,-0.03666405,0.115020104,0.41758296,-0.111025356,-0.18111448,-0.28693485,-0.02702374,0.167095,0.1994658,0.02709759,-0.36964428,0.13992205,0.17827083,-0.29573923,0.32478532,0.48561656,-0.46791986,-0.1886848,0.40895417,0.5192498,-0.084919356,-0.1225826,0.3443618,-0.04176166,-0.37061974,-0.26968125,0.19168667,-0.14962712,0.4886829,-0.19498882,0.060623836,0.73306304,-0.0758628,-0.23935951,-0.17257224,0.059815347,-0.22024496,-0.3439429,-0.13902995,0.12950438,-0.502618,0.0321122,-0.25418496,0.7437756,0.24648456,-0.67114794,0.37458456,-0.51724344,0.26355907,-0.025572412,0.52229565,0.9026495,0.4627097,0.1776857,0.90527725,-0.64296776,0.1398048,-0.05485792,-0.42090517,0.1410344,-0.1797563,0.14689957,-0.5038253,0.13497636,0.016341472,-0.3088098,0.04425727,0.30842793,-0.42644033,-0.07609275,0.0019986948,0.789277,-0.370542,-0.122118436,0.8728853,0.9244639,1.0396502,0.05178315,1.248894,0.54638135,-0.21830413,0.1701656,-0.4270534,-0.56685674,0.10227684,0.30577025,-0.08458988,0.44572893,0.06799653,0.19682151,0.39403647,-0.3835163,0.10333236,-0.083610535,0.19985695,0.033996064,-0.09742338,-0.41187188,-0.25318676,0.042377345,0.115815714,0.09660866,0.39205292,-0.20739564,0.53605485,0.1271966,1.5749379,0.068869196,0.01969883,0.016012844,0.39435512,0.27743056,-0.24825653,-0.10733568,0.20932594,0.3166166,-0.013646251,-0.4725344,-0.054696035,-0.29870144,-0.34379753,-0.07186334,-0.288731,-0.06653572,-0.10882006,-0.37774274,-0.28705186,0.019620111,-0.24807829,0.50533384,-2.3210871,-0.17250396,-0.07742832,0.27644908,-0.21744142,-0.40466934,-0.18179628,-0.5790473,0.15419897,0.37384102,0.29547605,-0.70778155,0.47624967,0.34447682,-0.38507134,-0.049430236,-0.67665786,-0.026031367,-0.10012261,0.33867964,-0.028979294,-0.07178678,-0.19480225,0.26235357,0.61625606,0.112135366,-0.031229505,0.37132752,0.4275286,-0.06937406,0.5489283,0.21576554,0.62173617,-0.2809167,-0.10513889,0.45402202,-0.40391147,0.25838894,0.11973767,0.031284284,0.4114718,-0.52809936,-0.6748769,-0.7049819,-0.27792987,1.2268369,-0.3402192,-0.33228275,0.254288,-0.2908184,-0.29204115,-0.024129288,0.43506086,0.0409269,-0.11760219,-0.6912263,-0.07722089,0.058061805,0.12957893,-0.11867604,0.08036855,-0.20247647,0.6854688,-0.22742373,0.45242193,0.29764605,0.09780086,-0.028735256,-0.42684773,0.08125946,0.9698861,0.42206678,0.18659626,-0.23561566,-0.21751787,-0.31184295,-0.23546258,0.2089334,0.41297093,0.6651178,-0.12697114,0.01589846,0.44190896,-0.22522265,-0.015675366,-0.10370956,-0.2731993,0.010596251,0.023544231,0.5736525,0.63511026,-0.14671794,0.40305603,-0.19878162,0.16095063,-0.24452491,-0.57230383,0.5604127,0.94557154,-0.25769493,-0.2745009,0.448176,0.20477314,-0.36512554,0.4192295,-0.56875175,-0.21398497,0.5299843,0.01612429,-0.36978108,0.1956489,-0.32772896,0.03398065,-0.8941747,0.2787821,0.061586317,-0.6114111,-0.5001264,-0.15900135,-3.6136487,0.18815206,-0.042724952,-0.0019622266,0.010434775,-0.12321673,0.2355283,-0.38855103,-0.68300074,-0.018610211,0.007324028,0.56198335,-0.039849766,0.15568408,-0.2742,-0.24066572,-0.3993421,0.21394838,0.17230281,0.3288993,0.0070054135,-0.429383,0.00075695117,-0.38544872,-0.589776,-0.00032924017,-0.7077743,-0.5458822,-0.220865,-0.45132935,-0.3156839,0.7323963,-0.38404387,0.14805055,-0.27587265,-0.09963843,-0.2396272,0.22490744,0.16670308,0.064475276,0.14777066,-0.007311756,-0.17550482,-0.34356126,0.16593818,0.022775432,0.4875724,0.2777451,-0.13780193,0.19190677,0.59759617,0.75134903,0.058319356,0.69672054,0.35226756,-0.11296875,0.31207123,-0.28410447,-0.24588074,-0.62346214,-0.36052254,-0.31193054,-0.4903358,-0.4022296,-0.070881516,-0.39488515,-0.8189895,0.28107616,0.056202404,0.17999537,0.030915765,0.22921322,0.46015242,-0.2004056,0.0017198682,-0.102697365,-0.37194046,-0.5746613,-0.40928304,-0.49437886,-0.5408037,0.42540413,1.0863273,0.03085851,-0.038447015,-0.00048220655,-0.4785117,0.08851256,0.13639013,0.22725388,0.13675962,0.48397082,-0.27058476,-0.68674386,0.24013215,-0.14352593,0.019412171,-0.61528766,0.14208494,0.71316916,-0.58285546,0.6315175,0.19577383,0.17056863,-0.041946776,-0.42504272,-0.34861448,0.031896606,-0.25399834,0.522164,0.1721099,-0.6314701,0.39939174,0.23820281,-0.095834136,-0.55167335,0.36878997,-0.051155075,0.019691626,0.10123428,0.3060112,0.030402204,-0.113299295,-0.07291579,0.24316998,-0.57715726,0.20147318,0.4196719,0.044138543,0.16714954,-0.01655526,-0.25221345,-0.6481376,-0.14165415,-0.5163103,-0.27977544,0.015268834,0.15284637,0.0076061566,0.03848261,0.1341868,0.37414584,-0.09224656,0.11889498,-0.10748145,-0.2509351,0.5489315,0.44559005,0.3660694,-0.53718513,0.601342,0.059776854,0.066703714,-0.15017205,-0.021982232,0.45091045,0.26920682,0.32741058,0.18417826,-0.1910144,0.15428044,0.6201337,0.29927343,0.38193512,0.23560819,-0.21152133,0.34019825,0.23981364,0.1434451,-0.01965495,-0.328271,-0.059782267,-0.109286174,0.14380004,0.3726254,0.12178716,0.31821892,-0.1226263,-0.23958911,0.14950228,-0.041222513,-0.25025284,-1.4397664,0.24388427,0.3203129,0.65832484,0.46013227,-0.10494322,0.03492171,0.56000316,-0.3284746,0.08424017,0.4090571,-0.06477172,-0.4306895,0.49790102,-0.663015,0.44233054,-0.0661448,-0.007817407,0.07646527,0.3094922,0.32962385,0.8685526,-0.21755193,0.07792469,-0.1850263,-0.25875747,0.10039644,-0.30895722,0.056342993,-0.57621354,-0.38645205,0.58991724,0.3079418,0.33632526,-0.35554722,-0.0820992,0.036786664,-0.11285928,0.10147167,-0.021080494,-0.08945248,-0.14221528,-0.6164599,-0.44014516,0.5134559,-0.16760688,0.03246956,0.11616753,-0.372068,0.2898114,-0.20173383,-0.097599074,-0.0020671934,-0.70177674,-0.19659296,-0.27370042,-0.4044675,0.3818448,-0.25388873,0.27597693,0.13158785,0.035623133,-0.3935364,0.16386694,0.057413872,0.7221932,-0.021085612,-0.25058585,-0.31045097,0.15806088,0.20713122,-0.4052028,0.05624255,-0.15693349,0.07440771,-0.65775406,0.3539608,-0.0432816,-0.3120285,0.027002892,-0.052173078,0.045130346,0.45269424,-0.2960517,-0.15276274,0.09516153,0.042511966,-0.19397528,-0.13364868,-0.34077957,0.31370443,-0.09657957,-0.065964006,0.069692366,-0.10682387,0.010927987,0.34232166,-0.004165383,0.09913446,0.2945394,-0.010307642,-0.39206448,-0.024056189,0.061174612,0.2916036,0.2351958,-0.13241196,-0.1047801,-0.1949726,-0.3165359,0.24206585,-0.1628597,0.31224483,0.09535091,-0.45613036,0.8100924,0.11585858,1.3086625,0.017763274,-0.32138336,0.03231069,0.47643098,0.08389228,0.1331608,-0.19690171,0.7826628,0.657568,-0.23577406,-0.20209758,-0.39158276,-0.22184435,0.23239133,-0.16681805,-0.246995,0.0154219065,-0.8264958,-0.16199212,0.15846008,0.16290864,0.33297673,-0.012096719,0.061653692,0.09926822,0.02601579,0.46038514,-0.22027531,-0.19957542,0.40827465,0.20280984,0.0995818,0.15665501,-0.40859988,0.34877446,-0.6931865,0.1826952,-0.3159423,0.18348558,-0.054644544,-0.30835086,0.23087174,0.08693171,0.2753971,-0.36002007,-0.41200265,-0.259889,0.75666326,0.19292322,0.24955407,0.8088554,-0.269251,-0.23434213,0.18936986,0.38415784,1.1002922,0.08694601,0.06395148,0.44569412,-0.30660743,-0.6219019,0.3311072,-0.24078368,0.1747321,0.048283003,-0.35432383,-0.39144248,0.27303237,0.04968775,-0.061619498,0.20457621,-0.45026055,-0.1708781,0.34943163,-0.3323607,-0.17559499,-0.36454925,0.27425385,0.66368616,-0.35808957,-0.39594182,0.12319983,0.28155136,-0.36569986,-0.43607277,-0.03197382,-0.24558067,0.32511434,0.18722096,-0.36554986,0.054690283,0.27389267,-0.42333615,0.07387734,0.2245428,-0.46666875,0.14529726,-0.29721984,-0.18691012,1.0790098,0.051973905,0.23490156,-0.66126955,-0.5067619,-0.9616811,-0.41123953,0.2722245,0.08573437,-0.06979283,-0.55330443,-0.15576045,0.050463866,-0.081641294,0.11707776,-0.52131116,0.450232,0.22464861,0.30777687,-0.040752485,-0.96167904,-0.015019466,0.16692415,-0.100310616,-0.61635596,0.60632384,-0.10780772,0.8232952,0.09163979,0.15241699,0.17956857,-0.53750414,0.3005017,-0.24301721,-0.1432392,-0.6151408,-0.006869042,747 +277,0.3394726,-0.33307946,-0.38147762,-0.08203058,-0.11145649,0.083773874,-0.047972515,0.5471657,0.15304343,-0.5414025,-0.111060806,-0.14384441,0.027146053,0.21344016,-0.10705078,-0.24559736,-0.069989584,0.13652687,-0.33971253,0.5498269,-0.4417412,0.26726896,-0.042068172,0.37128595,0.30610272,0.2597369,0.07988434,-0.13169254,-0.12070988,-0.079531595,-0.17974363,0.3431227,-0.25702533,0.087076694,-0.15107499,-0.40695077,-0.1541419,-0.39121738,-0.37380567,-0.71712935,0.3333665,-0.8049386,0.4178985,0.025029715,-0.3473303,0.2049195,0.04264263,0.31498164,-0.19294204,-0.035554662,0.15870187,-0.0743955,0.068254925,-0.09304324,-0.032651007,-0.21817707,-0.51894206,-0.036147125,-0.33563626,-0.17549601,-0.25635183,0.093257904,-0.34137833,-0.17020066,-0.15257385,0.5221917,-0.4871145,-0.08217371,0.10455183,-0.10766014,0.4588713,-0.60089,-0.1756224,-0.21794683,0.22303048,-0.23721406,-0.24130405,0.18697494,0.22135574,0.53603214,-0.1266053,-0.03433369,-0.3854176,-0.049857076,0.15528835,0.44402975,-0.13283294,-0.6373336,-0.15383212,-0.072384626,0.120750055,0.18765903,0.10309938,-0.28886953,-0.15326498,0.13048308,-0.115081795,0.2823264,0.46813205,-0.2485062,-0.26857364,0.31209728,0.60234207,0.23413001,-0.1461632,-0.034942403,0.030535694,-0.45641536,-0.1625824,0.14844751,-0.2092883,0.61753297,-0.16811605,0.359565,0.5936043,-0.12384684,0.05924565,-0.03087441,0.09985154,-0.18287936,-0.18324305,-0.3559784,0.23423032,-0.4266552,0.21946517,-0.15309629,0.71633893,0.097341895,-0.689224,0.37443718,-0.44975337,0.15848252,-0.08443864,0.5715918,0.66307676,0.411692,0.32152328,0.6562418,-0.4191486,-0.028891644,-0.08975817,-0.3185135,-0.014095124,-0.21235783,-0.19627689,-0.53429955,-0.041209746,0.11665843,-0.11141316,-0.034731664,0.3741286,-0.48005214,-0.088200614,0.12842427,0.7020966,-0.31219482,0.015333863,0.73772264,0.9230911,0.9483661,0.028339257,0.9996204,0.15171455,-0.3162753,0.26584086,-0.25700644,-0.6515293,0.28862238,0.26202792,0.09654724,0.19992584,0.035906974,-0.031364586,0.51945806,-0.5153311,0.09104689,-0.20756157,0.008475749,0.08919103,0.010874561,-0.56047094,-0.3591957,-0.14178881,0.098502226,0.0061705154,0.23734312,-0.11146875,0.44482782,0.1025257,1.6674988,-0.17339776,0.037320413,0.10531519,0.5865695,0.11536848,-0.21372023,-0.106488965,0.26523307,0.42374668,0.119414225,-0.70048946,0.1503684,-0.08841349,-0.5787955,-0.03871565,-0.3571231,-0.104640014,-0.072834715,-0.55935645,-0.21901992,-0.18363973,-0.4011248,0.4684566,-2.7920532,-0.13977829,-0.035030298,0.28130645,-0.3252413,-0.3531944,-0.019005807,-0.4526227,0.3685798,0.3510868,0.46423307,-0.7581943,0.2600868,0.44668216,-0.45753497,-0.03383534,-0.6905472,-0.2505179,-0.032237314,0.37210143,0.07676303,-0.017152196,0.12739679,0.1616605,0.42580023,-0.08461715,0.15553118,0.17352238,0.27352402,0.06213341,0.43225864,0.031029869,0.481738,-0.34155792,-0.090109915,0.2917143,-0.29051894,0.27146962,-0.15413903,0.15545546,0.4555626,-0.47248438,-0.72320205,-0.6451272,-0.18460827,1.2229415,-0.16219787,-0.37634954,0.3252388,-0.5814182,-0.17978756,-0.21319538,0.49403378,-0.09074841,-0.1161007,-0.8810362,0.07465679,-0.046062436,0.19523789,0.02289433,-0.033514563,-0.4675142,0.5906988,0.03037755,0.58433706,0.39736286,0.16953732,-0.2379872,-0.43154857,-0.016366394,0.654894,0.3939486,0.19504446,-0.27752528,-0.14448912,-0.35005042,0.033976696,0.14084749,0.40164745,0.7481436,0.006648602,0.136084,0.3226118,-0.07615272,0.103331454,-0.13857602,-0.15559836,-0.12028196,0.10490321,0.5754287,0.4694711,-0.23073071,0.32396305,-0.09251117,0.08567743,-0.28456753,-0.38207582,0.47411355,1.0209334,-0.18106376,-0.19405746,0.5338783,0.622765,-0.21537997,0.38893336,-0.5655326,-0.23379454,0.4916706,-0.24145953,-0.48962206,0.1661715,-0.37886295,0.29151928,-0.9897953,0.11276639,-0.28652334,-0.49407384,-0.6502755,-0.01863947,-3.2652674,0.20446101,-0.21678586,-0.2550267,-0.10927185,-0.28132448,0.2544212,-0.57605404,-0.5697993,0.12370038,0.029502546,0.6313114,-0.0073859273,-0.0022999009,-0.25311747,-0.18362573,-0.25658575,0.12681325,0.011701573,0.380951,0.036924418,-0.5868582,-0.13062741,-0.1952687,-0.42214572,-0.012001623,-0.48170388,-0.42792574,-0.12997109,-0.47371438,-0.41777375,0.5896011,-0.20075181,0.121764265,-0.090614125,-0.088594146,-0.11168289,0.39375284,0.15774086,0.14565918,0.021658007,-0.08388689,0.010474082,-0.24848393,0.041017834,-0.0243675,0.13656618,0.35185432,-0.17886305,0.29134876,0.51918554,0.7241021,-0.18493955,0.87264186,0.63555616,-0.09253856,0.23504499,-0.26689497,-0.30994275,-0.590516,-0.27872112,-0.006981925,-0.39557347,-0.5717294,-0.037364826,-0.39214936,-0.83846486,0.48101088,0.04246425,0.25230408,0.040439587,0.121569365,0.52218276,-0.18059789,-0.007693978,-0.096683346,-0.11823122,-0.5896717,-0.29599926,-0.6686297,-0.453508,0.04980995,0.8664793,-0.14712913,0.030127525,0.08239596,-0.3606737,-0.04637979,0.17647572,0.060650762,0.1721565,0.26894516,-0.11210782,-0.57083064,0.5464391,0.19673397,-0.22340626,-0.44987094,0.20804842,0.6616288,-0.54593253,0.4894807,0.3569709,-0.043389093,-0.2664037,-0.5379448,-0.20371482,-0.076178946,-0.22177893,0.4616272,0.23774627,-0.60209113,0.37892908,0.38275275,0.019341938,-0.67763615,0.6480556,0.028306147,-0.27521533,-0.070499815,0.27538246,0.012296307,0.082381934,-0.19474147,0.23744363,-0.3922622,0.2306918,0.33701515,-0.044169817,0.31033248,-0.31262714,-0.005733947,-0.7733099,0.043749016,-0.61590505,-0.1088193,0.379315,0.11130129,0.18492483,0.13217518,-0.0053516603,0.3869845,-0.2712392,0.035140414,-0.011464177,-0.14926535,0.29214996,0.42990592,0.3496302,-0.35722435,0.5760914,0.08504953,-0.058943342,-0.22098345,0.17642733,0.39798504,0.19678293,0.47562045,-0.13139787,-0.3465024,0.29609478,0.7716927,0.32310575,0.4633208,-0.03509398,-0.08193713,0.18667544,0.15349767,0.28712568,-0.05568594,-0.4182059,0.04053526,-0.3187441,0.16794059,0.31284526,0.08213509,0.36964634,-0.11953879,-0.27151924,0.042626698,0.17492667,-0.06265618,-1.2309611,0.40659493,0.29171926,0.7922062,0.5912371,-0.0027169187,0.01929822,0.62460935,-0.31394258,0.23368448,0.3631438,0.096952505,-0.66010755,0.5654493,-0.70940155,0.4737913,0.0028323769,-0.011297343,-0.0170479,-0.15172829,0.39365262,0.5798363,-0.0760104,0.09659798,0.053485863,-0.3692392,0.19760492,-0.42371947,0.06010169,-0.60050905,-0.1740625,0.6909743,0.5025584,0.3189956,-0.108962454,-0.018281309,0.15365666,-0.04218942,0.13813943,0.14334269,0.25453535,-0.058357835,-0.6991648,-0.15856224,0.4593455,-0.14984252,0.11299092,-0.036582135,-0.35997763,0.1799706,-0.122879915,-0.087056905,0.010665317,-0.6207623,0.021195613,-0.36713403,-0.38653183,0.5560711,-0.18237415,0.38392118,0.18732451,0.07753684,-0.3088678,0.23266493,-0.03827254,0.7158343,0.045687616,-0.06985251,-0.3553747,0.06637398,0.28731441,-0.17349741,-0.24509244,-0.11676475,-0.03557644,-0.5129576,0.40389672,0.029648328,-0.19426791,0.14930053,-0.098203324,0.048290756,0.5792331,-0.12406028,-0.17829686,-0.1488792,-0.18247484,-0.26953995,-0.18337949,-0.09034846,0.3874565,0.16585916,0.16449963,-0.10128926,-0.030251812,-0.10897134,0.5064463,0.094107196,0.3161439,0.32749227,-0.0361305,-0.46448657,-0.15770514,0.11797992,0.41262665,0.016146215,-0.007951629,-0.26073295,-0.40797815,-0.39259896,0.027539037,-0.15555467,0.40613517,0.07979093,-0.18717547,0.76681083,0.03374,0.9943297,0.008467048,-0.51053333,0.09338024,0.39402038,0.021808961,-0.05357649,-0.22618197,0.8250708,0.4534645,-0.110442035,-0.15755913,-0.23603398,-0.008795198,0.21404587,-0.1716835,-0.1334984,0.03507607,-0.6593864,-0.16876109,0.334416,0.27237567,0.23733552,-0.08589229,0.036483373,0.26411054,-0.044778977,0.3149394,-0.37367153,-0.20440832,0.32679737,0.14918596,0.12832403,-0.009846922,-0.5028024,0.4518358,-0.459393,0.0615925,-0.3150024,0.21355338,-0.28900656,-0.3575765,0.23384236,0.07866649,0.24938585,-0.23427686,-0.36988685,-0.3311127,0.48509884,-0.0055318694,0.08665946,0.54302,-0.23032999,0.121531315,0.06166937,0.37602472,0.9065207,-0.20875266,-0.07419669,0.3973417,-0.3115118,-0.60799193,0.25364348,-0.2569277,0.31683448,0.043904506,-0.12093045,-0.55610615,0.27266896,0.31488124,0.048419658,0.0285403,-0.585943,-0.24596079,0.31299144,-0.2745004,-0.11806672,-0.34865734,0.03467786,0.48693556,-0.39492697,-0.3426226,0.011096318,0.26281136,-0.2242464,-0.48065987,0.11818876,-0.33598724,0.21691774,0.07660378,-0.44260547,-0.0628622,0.033557646,-0.38478014,0.050785862,0.19723047,-0.37368146,0.09834702,-0.47754675,-0.0462188,1.0585377,-0.17468613,0.15254433,-0.39915898,-0.36920798,-0.8317781,-0.3389865,0.5993336,0.10244039,0.046596054,-0.6763344,0.15576597,-0.02557292,-0.012320701,-0.112161286,-0.32703957,0.5619535,0.19026977,0.1830429,0.049125247,-0.49798658,0.20611082,0.07206223,-0.096905835,-0.36903864,0.57675827,0.084097706,0.8509246,0.1119433,0.22006546,0.2061351,-0.5504721,-0.043293573,-0.11098814,-0.26764545,-0.68844193,-0.11544419,753 +278,0.3778707,-0.15871754,-0.6709458,-0.07328148,-0.3772824,0.0460575,-0.33163396,0.053203724,0.17960325,-0.4664475,-0.14927734,0.027161406,-0.09564758,0.35277632,-0.113068946,-0.5379216,-0.07375953,0.2512415,-0.7635174,0.50361043,-0.5214734,0.5491418,0.2494294,0.02863052,0.033117108,0.3511492,0.21257785,-0.16254981,-0.14526705,-0.20587537,-0.030865274,0.03441251,-0.6577789,0.37140134,-0.14991131,-0.30903143,0.012998064,-0.37557632,-0.11299683,-0.61274993,0.07102485,-0.77796,0.64798605,-0.12384483,-0.17386886,-0.11217962,0.23691478,0.59259945,-0.15560126,0.13494733,0.30727294,-0.2905901,-0.36220092,-0.32105687,0.04121417,-0.4791095,-0.31675583,0.0075172065,-0.6095658,-0.30522987,-0.22452192,0.18504912,-0.27188128,0.16966392,-0.25129727,0.26923832,-0.35838038,-0.031329967,0.2159432,-0.18211715,0.17285423,-0.58525246,-0.028215801,-0.12634979,0.48014754,-0.21306644,-0.13941796,0.41002673,0.154849,0.4437806,0.29022038,-0.19618791,-0.100643605,-0.17911546,0.3562221,0.47584453,-0.06554054,-0.11736291,-0.29156455,0.16439782,0.3655189,0.219543,-0.02257237,-0.4232883,-0.00070827606,-0.1620031,-0.20168537,0.4398848,0.4458352,-0.2207703,-0.13685127,0.3272189,0.63239807,0.22678232,-0.16732128,-0.039250787,-0.08037493,-0.45582497,-0.13809477,0.14117017,0.006621011,0.4127958,-0.025705464,-0.082789116,0.7243303,-0.17377321,-0.24024442,-0.10864168,-0.12178983,-0.06333911,-0.07518915,-0.15322636,0.1709749,-0.5865659,0.0288349,-0.24465677,0.7030743,0.029155228,-0.8237584,0.45808133,-0.5654511,0.0763549,-0.014684669,0.59314823,0.6367477,0.6021425,0.097559914,0.8428872,-0.40318954,0.24502282,-0.14487743,-0.33590543,-0.03701845,-0.2587753,-0.057105422,-0.5038045,0.21932122,-0.29178315,-0.16331866,0.0020887058,0.34879047,-0.5987494,0.021437468,0.07494165,0.57019585,-0.39787596,-0.0019899209,0.8128604,1.1221429,1.1167086,0.12941304,1.218682,0.34326324,-0.23002486,-0.1029143,-0.24988894,-0.4943913,0.11582323,0.4229112,0.088410236,0.3141389,0.09019567,0.043743413,0.2732567,-0.3777325,-0.09621708,-0.06291676,0.51182663,-0.03590107,-0.16389206,-0.46807015,-0.12367686,0.06951387,-0.010538488,0.1022953,0.1883381,-0.24031843,0.4840067,0.18336535,1.1455623,-0.149741,0.041131187,0.04773272,0.29486626,0.25524244,-0.2190927,-0.09038889,0.33107388,0.34891096,-0.07123182,-0.5871437,0.0012761832,-0.21994954,-0.41679534,-0.19204634,-0.23102006,-0.06802171,0.08918942,-0.2206328,-0.2571444,0.1218092,-0.27824748,0.53659564,-2.5888393,-0.32984465,-0.13363175,0.29831356,-0.24741918,-0.346973,0.060061503,-0.49172133,0.303085,0.18324377,0.4380096,-0.41847217,0.51193625,0.339677,-0.5742117,-0.26138458,-0.6247008,-0.09575968,-0.041343953,0.5417947,0.014927904,-0.0793416,-0.18902527,0.048419356,0.5485944,-0.2341511,0.12849563,0.5177464,0.24729083,0.15743867,0.52726024,0.1819569,0.7135185,-0.32553482,-0.19430608,0.430368,-0.09068162,0.26220924,-0.11116816,0.08142976,0.34854168,-0.5053643,-0.7679344,-0.6875047,-0.39138755,1.2114996,-0.3090203,-0.4705576,0.09103588,0.025471417,-0.27555114,0.15540072,0.24709289,-0.015901994,0.19787937,-0.7515806,0.071457826,0.051259425,0.2849488,0.029328605,-0.0509042,-0.40838465,0.63406295,-0.12096879,0.4689506,0.37712708,0.36574465,-0.072622634,-0.28957456,0.05113099,1.1452998,0.3833354,-0.06810843,-0.17538263,-0.25851548,-0.08254308,-0.23690735,0.14406538,0.40232432,0.651435,0.029114582,-0.0369444,0.29039338,-0.19128896,0.14623706,-0.12092553,-0.2503695,-0.021604897,-0.034315016,0.4957568,0.56273013,0.027278988,0.5088924,-0.31749147,0.17858587,0.08906571,-0.5863811,0.64953345,0.7367642,-0.1589149,-0.17257811,0.4625166,0.5154815,-0.19426432,0.4928559,-0.5656761,-0.25530612,0.64930266,-0.14674991,-0.28916585,0.17044209,-0.35501158,0.31540635,-0.8870379,0.37912592,-0.42979506,-0.5151804,-0.43741027,-0.12546542,-3.1614876,0.23460366,-0.041683067,-0.075330764,-0.08398498,-0.02545995,0.2960098,-0.62800366,-0.58316994,0.16265137,0.1505797,0.5829724,-0.075007565,0.087440886,-0.11744837,-0.32869157,-0.031443875,0.29324505,0.103357986,0.22154911,-0.23198605,-0.29784578,-0.042152897,-0.20666467,-0.45648518,0.16662283,-0.55704653,-0.42187154,-0.11767108,-0.4455606,-0.22870782,0.6111071,-0.4735694,-0.003672413,-0.1973584,0.16511315,-0.072377086,0.045704387,0.033976782,0.30742946,0.32840785,-0.0908779,0.06916897,-0.32643622,0.3576061,0.0754871,0.24578173,0.15182234,-0.13021971,0.106836714,0.5127237,0.74758285,-0.13373022,0.944069,0.35654208,-0.18253602,0.10515575,-0.31910995,-0.34129232,-0.72752607,-0.37602216,-0.15000932,-0.4219941,-0.5902882,0.027722955,-0.24687259,-0.80977607,0.697837,0.0062143086,0.1735805,-0.06693546,0.40608898,0.2668232,-0.18538332,-0.12386646,-0.16204514,-0.18864837,-0.47289863,-0.38651377,-0.69085157,-0.46391764,-0.09114919,1.0686257,-0.25666317,0.23526828,-0.005038901,-0.3473963,0.17603867,-0.008398276,0.10427725,0.21058917,0.32263032,-0.09281765,-0.6869999,0.29721406,-0.084585115,-0.11477669,-0.49204782,0.36013952,0.7498857,-0.5328576,0.39585048,0.3966706,0.032628346,0.15824004,-0.442891,0.02424738,0.13873404,-0.31138358,0.45243445,0.122192636,-0.5625728,0.58837724,0.2920281,-0.50104487,-0.74641776,0.25447965,0.020993296,-0.06478606,0.109233595,0.2207763,0.08286096,-0.08917427,-0.29298943,0.21242078,-0.46683055,0.24531892,0.21190275,-0.014201411,0.071776256,-0.19161406,-0.40592727,-0.73467904,-0.03535746,-0.43355435,-0.17500047,0.15623775,0.032703713,0.0005681713,0.12609723,0.19126634,0.46743882,-0.26945516,0.05432333,-0.12254812,-0.35257822,0.2745088,0.46558437,0.36539367,-0.31127888,0.5407177,0.106185146,-0.11840451,-0.11023797,-0.031638715,0.4887744,0.13179626,0.20502742,-0.03343458,-0.07362366,0.25892088,0.6206649,0.22266702,0.39911932,0.06283593,-0.29475754,0.29536614,0.13468795,0.2222036,0.05535693,-0.29077065,0.07542704,0.0847189,0.07086169,0.47211885,0.30664024,0.38064176,-0.05692112,-0.20853806,-0.04714934,0.233558,-0.029165229,-1.1682382,0.5215,0.24359019,0.5995296,0.47743642,0.14824621,0.037221666,0.6773145,-0.56830055,0.06237403,0.2226598,-0.05558948,-0.41508818,0.48650685,-0.67997754,0.33881897,-0.11412017,-0.08284521,0.21571206,-0.004030359,0.29344738,1.0313565,-0.238848,0.04646069,-0.093775585,-0.17212638,-0.10524482,-0.2970802,-0.102411866,-0.37154076,-0.49883813,0.86219317,0.13916032,0.44440323,-0.20727839,-0.011621227,0.059331045,-0.26510468,0.30986273,-0.0689297,0.16537851,0.18115582,-0.37675148,-0.19257998,0.5321877,0.0061843633,0.21062975,-0.070519,-0.21498355,0.15073654,-0.18863538,-0.03993829,-0.0012145141,-0.5755898,0.033694983,-0.1845368,-0.34256735,0.25084648,-0.17987975,0.07993296,0.08914623,0.025521036,-0.13517304,0.2524441,0.13685423,0.7472418,0.20197228,-0.319168,-0.1811356,0.15721117,0.2936922,-0.2110171,0.31561154,-0.20533891,0.08963464,-0.7552317,0.46479315,-0.174593,-0.3651152,0.33132017,-0.14878224,-0.0128388945,0.49900946,-0.21694441,-0.1397231,0.21335761,0.015766962,-0.35198778,-0.2571109,-0.29919186,0.122163296,0.26380014,0.015822165,-0.10726168,-0.22102816,-0.13731517,0.48877925,0.055758562,0.460024,0.08632342,0.014429339,-0.3958421,0.030974556,0.10284608,0.2848104,0.11994408,0.023767225,-0.32284343,-0.39710867,-0.34605682,0.2034468,-0.10849745,0.12140497,0.034360904,-0.38840848,0.85601646,-0.10709658,1.2286073,0.024809768,-0.33382314,0.13417415,0.50496143,-0.10259797,0.15014566,-0.3965709,0.8664322,0.6331841,-0.02045794,0.056354802,-0.58886594,-0.20535745,0.20437972,-0.43269715,-0.11218414,-0.035262402,-0.47773615,-0.49504787,0.2137194,0.2298573,0.005849107,-0.0409482,0.11970353,0.12837979,0.18504384,0.2758903,-0.457395,-0.13563803,0.27390924,0.2940129,-0.07984293,0.057793543,-0.54721606,0.45844582,-0.7824752,0.25000668,-0.34594434,-0.019522572,-0.12492952,-0.24984951,0.16922374,0.06738681,0.1679164,-0.35971037,-0.47058123,-0.06619035,0.3930763,-0.09853938,0.0044672964,0.71172804,-0.30373028,0.12805924,0.14861518,0.36794376,1.0083503,-0.3518574,0.008714271,0.22758254,-0.35440403,-0.407639,0.33937094,-0.22145097,-0.08129082,-0.15173848,-0.35709578,-0.5474048,0.21146813,0.083381735,0.029210232,0.071988784,-0.70162374,-0.047928073,0.33652028,-0.3789705,-0.2305391,-0.074954264,0.3595181,0.681554,-0.38251907,-0.44138342,0.068505205,0.24463351,-0.35781604,-0.44541714,-0.17210414,-0.14137472,0.4096431,0.23090558,-0.21153723,-0.11461356,0.3926653,-0.45947707,-0.13247146,0.23463967,-0.39754587,-0.01496769,-0.2312901,0.053901818,0.66701716,-0.14233573,0.038475685,-0.62981665,-0.4690344,-0.9302027,-0.33938232,0.24945575,0.342378,0.033544675,-0.55887926,-0.0013309459,-0.13966538,-0.11217154,0.11740756,-0.6345919,0.37453502,0.18594739,0.35498267,-0.32594016,-0.95076144,0.13420364,0.16554716,-0.047349215,-0.5892812,0.49938953,0.0012121598,0.9450086,0.11392002,-0.15764411,0.03273218,-0.62107223,0.29267254,-0.21150139,-0.095760144,-0.78403175,0.04664435,758 +279,0.47987297,-0.19524996,-0.60297495,-0.03620205,-0.28220594,0.17882295,-0.15346892,0.33189815,0.2425011,-0.5094523,-0.018471133,-0.047603536,-0.022975245,0.2135574,-0.23638763,-0.42293072,0.008873892,0.26709816,-0.43628967,0.75463337,-0.32098567,0.30688444,0.076997206,0.33974394,0.21244475,0.13867597,-0.042477574,0.0011730035,-0.25825325,-0.2638766,-0.12207576,0.52761424,-0.511964,0.14755462,-0.1479324,-0.38920775,-0.21260346,-0.4109662,-0.36010388,-0.7431561,0.10147527,-0.81098926,0.76523125,-0.011424061,-0.2876291,0.113703914,0.31408152,0.2108943,0.019014176,0.027074507,0.15835322,-0.119163975,-0.22129335,-0.12603225,-0.28900927,-0.6861664,-0.58153176,0.09811003,-0.5213006,0.030321991,-0.1401572,0.23383507,-0.30067554,-0.12607284,-0.14296237,0.48847237,-0.34563172,0.06950908,0.15178952,-0.0100582875,0.32795423,-0.64283943,-0.33278638,-0.23737437,0.2343347,-0.26450914,-0.34128192,0.08547594,0.384895,0.5864278,-0.011988549,-0.21761456,-0.3675909,0.032506984,0.012441155,0.46774432,-0.3363896,-0.5835427,-0.29060143,0.07640763,0.38413492,0.1895488,0.17633496,-0.27904707,-0.046521854,0.07911162,-0.38518256,0.6012688,0.3812806,-0.3603045,-0.169513,0.3449808,0.4664891,0.25170457,-0.26162174,0.021779176,-0.027180629,-0.5673207,-0.06440846,0.1943361,-0.07119739,0.52168685,-0.11329453,0.1860487,0.551733,-0.18113764,-0.11033848,0.2468438,0.14995568,-0.072068825,-0.16431384,-0.3051611,0.21165337,-0.3468629,0.05873063,-0.13750297,0.5885667,0.03126143,-0.8621157,0.22341973,-0.59529024,0.038087867,0.001953121,0.44926172,0.857658,0.5235482,0.13868055,0.6296136,-0.05748148,0.0037983814,-0.13377878,-0.27987832,0.04890887,-0.1813983,-0.07517919,-0.64083636,0.027084565,-0.04529883,-0.098217405,0.007862822,0.6317833,-0.5876252,-0.27799118,0.14977652,0.78270465,-0.27521974,-0.2785507,0.8813344,1.0257397,0.9280604,0.063053206,1.1737069,0.11283802,-0.12455138,0.07735084,-0.21057227,-0.57586926,0.35843557,0.2677967,-0.6205236,0.49169573,0.12469843,-0.09414151,0.3267485,-0.2652729,-0.12907115,-0.27825218,0.06308099,0.067838974,-0.23302498,-0.4580178,-0.3177644,-0.051694617,0.07259272,0.27441457,0.21976,-0.315882,0.35184595,0.20818032,1.5683591,-0.17878573,0.031891096,0.032393683,0.30304602,0.26376548,-0.102820076,-0.016257819,0.26078907,0.42614236,0.21296878,-0.4490219,0.06320394,-0.039240297,-0.47497457,-0.14319451,-0.31055024,-0.21247672,-0.11700806,-0.51983064,-0.15974264,-0.143606,-0.433348,0.3995566,-2.6049116,-0.18616103,-0.12559639,0.24190561,-0.21281853,-0.49769384,-0.16524902,-0.42323634,0.3165636,0.22341092,0.41378647,-0.6448855,0.58659446,0.3569269,-0.50077474,-0.2542457,-0.73908406,-0.1652386,-0.09507763,0.37347898,-0.07154628,0.00090606016,0.25390288,0.118834905,0.5268779,-0.27570564,0.113647535,0.24025649,0.5070005,-0.02095533,0.5444527,-0.093081,0.62333554,-0.21326551,-0.29347888,0.33713996,-0.39016807,0.16230133,0.12389339,0.13040237,0.41884565,-0.44528115,-0.9849668,-0.6510957,-0.23979534,1.1643369,-0.23513412,-0.4234277,0.08777244,-0.40078926,-0.3211235,-0.022446474,0.36146036,-0.10650061,-0.054448724,-0.89646524,0.0035167236,-0.12781836,0.20729843,-0.06877585,0.05881296,-0.546507,0.61261976,-0.07685992,0.5042448,0.35723847,0.26975816,-0.4299009,-0.53060424,-0.016976114,1.1345893,0.25197086,0.07053579,-0.26593864,-0.1392683,-0.32768357,0.12918511,0.1184258,0.6657753,0.48306096,0.05540268,0.107932284,0.26517937,-0.069061086,0.2593754,-0.20435932,-0.30500183,-0.31365436,0.11040215,0.6330138,0.45250568,-0.19831726,0.7169195,-0.27551147,0.3490719,-0.14429024,-0.54138446,0.5047322,1.3432348,-0.23730066,-0.36926895,0.73106754,0.60054785,-0.15715382,0.40034863,-0.5576411,-0.39659417,0.34722343,-0.110467404,-0.29238886,0.36956283,-0.34974307,0.13342057,-1.0586199,0.19794068,-0.2673465,-0.4607426,-0.51068485,-0.013366175,-2.7346983,0.24454863,-0.22485806,-0.20837337,-0.15886627,-0.31381035,0.32485324,-0.5834599,-0.5023268,-0.05356931,0.10991665,0.5967855,-0.020694971,0.076783724,-0.18061088,-0.30413634,-0.054497175,0.29807746,0.21927474,0.3435932,-0.1666995,-0.5325587,-0.11146196,-0.15728466,-0.35632372,0.0764905,-0.92701846,-0.46299455,0.0424963,-0.6049392,-0.3154358,0.6714146,-0.4317412,0.016504461,-0.21825273,0.08238124,0.023646919,0.28049004,-0.17366035,0.1588147,0.0657286,-0.08657244,0.11977736,-0.17853278,0.15027437,0.045102764,0.1855815,0.37569815,-0.14025357,0.3817143,0.52142966,0.66954315,-0.06828354,1.0066656,0.69307,-0.1227932,0.30805442,-0.25152212,-0.29630694,-0.6765776,-0.2154028,0.008743343,-0.49862468,-0.40912566,-0.08312189,-0.3171508,-0.79589003,0.7277146,-0.13277107,0.08404722,-0.10666296,0.5029052,0.6062929,-0.2388685,0.08607981,-0.09326111,-0.31527895,-0.3508399,-0.41012943,-0.52347225,-0.40868804,-0.23566565,1.2153277,-0.14731644,0.30803537,0.06216348,-0.10879292,-0.020053057,0.18210858,0.15233196,0.18561544,0.5578755,-0.16571093,-0.56627023,0.31961504,-0.46865818,-0.1838617,-0.44295946,0.2889667,0.7067015,-0.66143495,0.5218373,0.51520145,0.11653531,-0.2618177,-0.5290044,-0.018263848,0.11341213,-0.18836921,0.5866948,0.42750224,-0.6949941,0.49088722,0.38958022,-0.18054308,-0.64191014,0.6913508,0.014593359,-0.2522023,-0.15274435,0.37870455,0.12528743,0.10444999,-0.1538927,0.16334298,-0.37276286,0.19409296,0.107211165,-0.11553028,0.25271386,-0.22038509,-0.09110903,-0.8525042,0.086391576,-0.48600838,-0.3830745,0.2574436,0.0943122,0.15425867,0.25170815,-0.11297996,0.3395622,-0.5265145,0.038021706,-0.21250175,-0.2486083,0.24080181,0.47559488,0.48415774,-0.44390953,0.53453594,0.018796988,-0.17171784,-0.11154649,0.16618699,0.5737249,0.0055325585,0.41027144,-0.003907001,-0.2376083,0.36823446,0.6749944,0.15071917,0.40302497,-0.045310702,-0.108493365,0.106292404,-0.0052607963,0.2734661,-0.08055006,-0.54738873,-0.21819392,-0.08500104,0.20849879,0.5911065,0.049079496,0.27355957,-0.17653571,-0.31660467,-0.01728758,0.23622866,0.19299284,-1.4379852,0.2754263,0.1815779,0.8198911,0.28848785,0.041419905,0.05314517,0.5719211,-0.40085548,0.08827103,0.34358922,0.014381547,-0.32012406,0.5016746,-0.7394964,0.45957863,-0.11332882,0.13681485,0.014937762,-0.105842926,0.45847988,1.0031916,-0.16193987,0.12138762,0.08664814,-0.32399607,-0.00055322226,-0.40292662,0.115269616,-0.5754814,-0.29947045,0.7367827,0.52213246,0.51293933,-0.3093107,0.047174808,0.16783933,-0.15139027,0.14516804,0.14417848,0.1674431,-0.26778615,-0.75529695,-0.10698898,0.6758029,0.22108306,0.14383604,0.15402037,-0.28847918,0.36058277,-0.04441903,-0.032515153,-0.07306182,-0.58600366,-0.1286314,-0.52201235,-0.41205204,0.44774595,-0.27789986,0.07994052,0.23783775,0.05255331,-0.24765202,0.32560647,0.23445095,0.6733462,0.10307732,-0.04554956,-0.3824956,0.10826389,0.15790328,-0.20760213,-0.3487224,-0.18401247,0.24698299,-0.59382474,0.25868335,-0.12919734,-0.28644818,0.051073942,0.0015762687,0.13808337,0.4939422,-0.038424633,-0.033892337,0.07788617,-0.12477328,-0.29930007,-0.10807807,0.03987032,0.2689786,0.26466724,-0.17090143,-0.10441758,-0.1879666,-0.21208252,0.34901682,0.056816358,0.48771033,0.61887383,0.309487,-0.2781607,-0.036902048,0.3353618,0.6075217,-0.19399418,-0.0542952,-0.31237447,-0.32393357,-0.22861685,0.17644635,-0.11325122,0.23991632,0.08458308,-0.38545695,0.9568274,-0.067372575,1.2773402,-0.023804452,-0.42951155,0.027930435,0.37183216,-0.12244091,0.014511967,-0.33105117,0.98434705,0.5063817,0.042331148,-0.10472382,-0.39883745,-0.04506452,0.03572259,-0.29114512,-0.16661929,-0.0750432,-0.513033,-0.23811641,0.1393902,0.17258306,0.08787656,-0.06664595,0.18151648,0.24960075,0.025400344,0.17618497,-0.54718024,0.007841524,0.13418885,0.49632505,-0.067813314,0.11318391,-0.49982542,0.40694767,-0.48856595,-0.0033245205,-0.2786744,0.2440645,-0.11778244,-0.1752638,0.2656808,-0.16863617,0.3138806,-0.4159251,-0.19746472,-0.26557893,0.4832675,-0.07942849,-0.15535119,0.5170497,-0.24541087,0.11900927,0.07926772,0.48967022,1.0704771,-0.32441208,0.00668298,0.22108212,-0.3406685,-0.6534247,0.24099733,-0.4218236,0.22603635,-0.002916641,-0.15713698,-0.4332369,0.39571106,0.17098404,0.23846075,-0.030878842,-0.50561434,-0.04633189,0.29431263,-0.32682896,-0.16032107,-0.19794963,0.2392995,0.4923296,-0.29426283,-0.39124677,-0.049452607,0.41742185,-0.10751017,-0.54185766,-0.018852798,-0.42865822,0.27710325,0.14145678,-0.36472923,-0.08299112,-0.10293861,-0.4552888,0.03154315,0.40306422,-0.27876323,0.03409876,-0.3221835,-0.32064036,0.9550243,-0.21897475,0.28012067,-0.48391145,-0.538034,-0.7825328,-0.33292875,0.1327269,0.24256249,-0.050371516,-0.5951418,-0.042940576,-0.09753812,-0.510817,-0.0024527828,-0.37629744,0.52118737,0.113751456,0.36723274,-0.18841067,-0.77401733,0.2393838,0.06625556,-0.11916794,-0.59431994,0.5048526,0.06647858,0.9353604,0.22311006,0.26231685,0.3027766,-0.51800394,-0.21000725,-0.0025713763,-0.07461105,-0.95414704,-0.176524,761 +280,0.29015228,-0.098057285,-0.55431783,0.0002502203,-0.12413079,0.04092424,-0.13742177,0.39552116,0.32730952,-0.23131265,0.028428646,-0.09097253,-0.036870304,0.17633584,-0.06375677,-0.4267107,0.099412076,-0.008301882,-0.46355093,0.5675625,-0.38046157,0.23592854,-0.17916924,0.46064356,0.117386274,0.19998361,0.048100058,0.13607444,0.030026145,-0.30000624,0.03629938,0.40716758,-0.5884124,0.31807432,-0.10036784,-0.16832985,-0.034030672,-0.41061264,-0.45513546,-0.78501713,0.18792123,-0.5403168,0.48151907,0.0006123225,-0.29714185,0.09895758,0.11796986,0.108710974,-0.11606029,-0.14185813,0.08188723,-0.18060312,-0.04690492,-0.3113571,-0.1688229,-0.33468053,-0.5257917,-0.03678316,-0.45950565,-0.033188716,-0.41398796,0.20501947,-0.41032627,-0.1416108,-0.19149698,0.5523471,-0.3770823,0.27504072,0.1379746,-0.15964495,0.15408853,-0.6965708,-0.243433,-0.09439442,0.13381548,-0.094474874,-0.38653752,0.35959733,0.31659207,0.30383044,-0.0035506983,-0.07977023,-0.32517463,-0.057658445,0.02017091,0.4207157,-0.18305896,-0.54875827,-0.14272645,-0.0014905533,0.11378999,0.29259196,0.019810796,-0.30796215,-0.100312196,0.10467809,-0.23009835,0.59036624,0.6050937,-0.21848351,-0.2715685,0.22867604,0.342972,0.38844126,-0.13013862,0.019282715,-0.01375914,-0.6155969,-0.2144884,0.048386525,-0.040108766,0.43118432,-0.042492915,0.28724143,0.69613254,-0.15824512,-0.31295034,0.20371078,0.0847472,0.097190656,-0.33739492,-0.07672512,0.13265502,-0.3686313,0.18683742,-0.045778133,0.7123635,0.14721319,-0.62126607,0.3553115,-0.48913682,0.10251915,0.018281123,0.58906764,0.8225356,0.4888167,0.40626782,0.73921984,-0.25065547,0.08560468,-0.13236217,-0.33128172,0.013016661,-0.15073362,-0.010790308,-0.41939458,-0.11094194,-0.07249306,-0.01241682,0.17552692,0.5518401,-0.56962144,-0.21473286,0.074920624,0.81910974,-0.13436626,-0.08037555,0.6723823,0.9949828,0.975515,0.025343288,1.0449262,0.013613205,-0.06885772,0.13713087,-0.13336986,-0.6973599,0.3410037,0.20461203,0.07355166,0.05828185,0.008720288,-0.18379946,0.386375,-0.23420066,-0.22873642,-0.08477557,0.5054743,0.20067517,-0.17749906,-0.14937371,-0.27485868,-0.0442195,0.108570956,-0.0076775867,0.24028839,-0.21999566,0.39180842,0.06339627,1.5273678,-0.013536179,0.10428653,0.09557042,0.62215006,0.35015932,-0.1974249,0.09158022,0.27611256,0.13787904,0.20840819,-0.4814939,0.14324889,-0.21251869,-0.43615964,-0.08063305,-0.34494808,-0.1985775,0.03545412,-0.36482006,-0.13478817,-0.1728933,-0.22965214,0.5170704,-2.8786025,-0.1657407,-0.0072148284,0.40528324,-0.11470444,-0.31646326,-0.13240817,-0.48916575,0.47276175,0.19789194,0.5696768,-0.624305,0.16969019,0.48987758,-0.50557655,-0.17660253,-0.4468184,0.03353445,0.11073799,0.36398092,-0.03742973,-0.06883524,-0.062057503,0.01329213,0.4933922,0.037810914,0.17748626,0.33144102,0.33399716,-0.18567546,0.38935286,-0.07555493,0.44932187,-0.1920241,-0.26123294,0.4001365,-0.3893989,0.3581058,-0.16941123,0.024454674,0.539288,-0.39740834,-0.9571127,-0.39893335,-0.12366519,1.188652,-0.06079391,-0.6242247,0.27395782,-0.5987143,-0.24065046,-0.21312192,0.52354884,-0.14750977,-0.13667418,-0.52861285,0.08535733,-0.104075685,0.24433313,-0.048656963,-0.13143508,-0.3592269,0.64008975,-0.051652785,0.3219995,0.30638275,0.09479694,-0.5580473,-0.5350145,0.05199313,0.70243365,0.5247703,0.09893857,-0.18601684,-0.1544453,-0.18658523,-0.13618492,0.095954165,0.9154707,0.44729412,-0.07927014,0.2268412,0.32571873,-0.008060757,-0.015347784,-0.33856937,-0.17660001,-0.27858916,0.1462185,0.690922,0.6555888,-0.06397737,0.52540296,0.1116313,0.04840299,-0.14347933,-0.6016535,0.44698474,1.1973112,-0.20992248,-0.2939249,0.4075309,0.22760276,-0.24541989,0.24723658,-0.3682963,-0.3452961,0.5051296,-0.18270487,-0.47915572,0.26928127,-0.26825047,-0.10129724,-0.4390727,0.25317734,-0.4377135,-0.75631684,-0.5435316,-0.14594698,-3.3582451,0.18400006,-0.35007972,-0.14471093,-0.2930661,-0.13055709,0.07821624,-0.4156738,-0.45813674,0.116638586,0.21604054,0.6564297,-0.24858488,-0.0347023,-0.28340298,-0.3777613,-0.32905433,0.2013902,0.30725285,0.39825335,-0.087318495,-0.31086853,-0.05426156,0.092282996,-0.51160145,0.04370486,-0.36974335,-0.530616,-0.15500452,-0.5378733,-0.35838884,0.7742111,-0.24548493,0.032609668,-0.253263,0.03378775,0.01767181,0.24088942,0.11358503,0.1839829,0.013427396,-0.15177883,0.026688462,-0.24219881,0.1561415,-0.07993818,0.41695264,0.3500748,-0.016895274,0.1891525,0.39980558,0.5858869,-0.022167752,0.95543313,0.3388464,0.0040438,0.36600035,-0.19735989,-0.3599538,-0.47680703,-0.2402456,0.14196303,-0.41381836,-0.33162132,-0.0579507,-0.27541772,-0.66340166,0.48706284,-0.0126345875,0.08329092,-0.016972471,0.32966477,0.6073074,-0.17689155,-0.07743318,-0.11248942,-0.08784902,-0.44976488,-0.32556495,-0.62948394,-0.6035737,0.09037523,0.75597095,-0.3860441,0.026623344,0.043591198,-0.247601,-0.085073106,0.12435754,0.03407344,0.09660545,0.3467944,-0.08564312,-0.5427338,0.40619868,-0.22345985,-0.16345866,-0.64557356,0.44910938,0.6870011,-0.6104729,0.68123394,0.24595243,0.114257984,-0.28594366,-0.62689346,-0.04162926,-0.09626205,-0.2690071,0.45168132,0.2244311,-0.96039677,0.48508367,0.30939806,-0.24940707,-0.62362653,0.49937162,-0.16671322,-0.33604228,-0.09997185,0.37505844,0.25413835,-0.04104079,-0.09201605,0.4553612,-0.29774055,0.31994683,0.080834195,-0.20137654,0.3347597,-0.1429046,-0.2314539,-0.65659744,0.005930543,-0.4553042,-0.4934026,0.20643844,0.12230252,-0.0580951,0.10671366,0.05138322,0.47001114,-0.21154627,0.18586062,-0.1227953,-0.29293868,0.27588025,0.54661757,0.6594443,-0.238525,0.61100316,0.026888167,0.008368538,0.2177942,0.24593481,0.35583168,0.012131312,0.5158058,-0.019552104,-0.114663266,0.15123263,0.9222438,0.09967308,0.4953776,-0.2662774,0.024198364,0.1819658,0.018366843,0.28370634,-0.12408399,-0.48662332,-0.006913664,-0.24681582,0.18109293,0.53093415,0.19465177,0.19249602,-0.1292359,-0.26820955,0.019929789,0.38347426,0.020680774,-1.1284859,0.33594677,0.22508997,0.9779171,0.32609117,0.17079467,-0.035302155,0.59229416,-0.040258374,0.019343829,0.2394791,0.20270975,-0.44267273,0.44571155,-0.81133705,0.5369737,0.015727313,-0.07445569,0.10835513,-0.0818081,0.40813664,0.83377445,-0.23996454,-0.18651262,-0.017766993,-0.3183069,0.18548292,-0.4600479,0.113496535,-0.47317684,-0.47238427,0.60999554,0.73338324,0.19443804,-0.32995,-0.04717796,0.016248971,-0.24557748,0.1008022,-0.15994032,0.10531134,-0.27099138,-0.5784684,-0.1479873,0.5077072,-0.02533744,0.21237157,0.044504162,0.07224546,0.28890312,-0.051637784,0.09996616,-0.14457822,-0.5903103,0.18384483,-0.3696615,-0.4158421,0.48227355,-0.32556075,0.21811524,0.27129757,0.12557247,-0.26367277,0.55115664,0.016074507,0.64394075,-0.22988968,0.016817868,-0.5093262,0.09440296,0.107599325,-0.2167075,-0.10314191,-0.15707825,-0.08195244,-0.58732694,0.28422752,-0.14768693,-0.18631461,-0.015675513,-0.06225698,-0.026597623,0.51004946,0.02160577,-0.15167433,0.04714985,-0.30150303,-0.27141014,-0.08408436,0.09603048,0.2567685,0.18125218,-0.111306354,-0.029027754,-0.21227033,-0.12946399,0.15670888,0.009334342,0.21920513,0.3384201,0.31405583,-0.27461687,-0.07326223,0.2162775,0.7629421,0.048932675,0.006470688,-0.24315509,-0.48007146,-0.39787763,0.08154648,-0.12185051,0.34451038,-0.06408707,-0.40118954,0.59963745,-0.11602078,0.97930205,-0.010652618,-0.25410885,0.09195529,0.4938093,-0.10577822,-0.048091736,-0.32481003,0.8433141,0.38592193,-0.11067135,-0.104930624,-0.17253295,0.057529174,0.29212043,-0.22546549,-0.17717332,-0.1038547,-0.6375032,-0.027831614,0.15155132,0.25258896,-0.04216801,-0.17207582,-0.17916109,0.3790593,0.06468817,0.19014685,-0.49933988,-0.08318333,0.23768291,0.23249243,-0.045972038,0.14758058,-0.3851091,0.31888255,-0.48117974,0.14978644,-0.13224837,0.26344237,-0.31892815,-0.24158093,0.3001939,-0.00538282,0.34603444,-0.2219155,-0.23566471,-0.28925756,0.19985715,0.2580609,0.13584958,0.5335985,-0.28656903,-0.06570644,0.15984544,0.4800962,1.0255929,-0.236378,-0.29232755,0.25131798,-0.44933563,-0.58143604,0.29824695,-0.42549384,-0.018772315,-0.021267109,0.026360543,-0.37387636,0.26485935,0.17181106,0.14258105,0.025824431,-0.8194277,-0.07337894,0.039404657,-0.2958154,-0.20366076,-0.36758476,0.11995812,0.7774258,-0.22506665,-0.2787698,0.14848597,0.31935802,-0.09961296,-0.5340411,0.10922933,-0.4294313,0.21049172,-0.13568671,-0.40832633,-0.11177407,-0.025100088,-0.54362935,0.09215507,0.053133387,-0.39278793,0.04498995,-0.020897234,-0.107347526,0.778061,-0.4114533,0.4584116,-0.29020363,-0.5314594,-0.554508,-0.17829838,0.36854538,0.07782138,-0.022330364,-0.6076481,-0.16579638,-0.10064163,-0.28790295,-0.1556744,-0.40802008,0.35298872,0.0025118133,0.20095305,-0.21146645,-0.84148777,0.28174174,0.12876157,-0.005317418,-0.557069,0.53678215,-0.17519374,0.58803004,0.14237906,-0.03815764,0.23536192,-0.39876634,0.047657855,-0.15829028,-0.19490398,-0.54403526,0.06711792,763 +281,0.46861845,-0.19180854,-0.63707364,-0.03736381,-0.4164275,0.21097773,-0.13354634,0.46692294,0.113481075,-0.5575023,-0.04788346,-0.1990131,-0.07880941,0.15944293,-0.15582167,-0.3218234,0.083845094,0.12753367,-0.45931855,0.50203705,-0.24768807,0.31507066,-0.07868001,0.32923162,0.13070604,0.19436601,0.046708267,0.09755404,0.011048715,-0.23250628,-0.3034231,0.2596021,-0.54389805,0.14276543,-0.17008492,-0.5228211,-0.06215555,-0.4199389,-0.39101407,-0.74432945,0.28975445,-0.87895674,0.5517558,0.059345298,-0.27673975,0.2372664,0.13559645,0.21462847,0.01733312,-0.015425629,0.18050656,-0.26158872,0.05205166,-0.27750537,-0.41405448,-0.52949315,-0.5835634,-0.14057738,-0.48769042,-0.38271746,-0.31719297,0.14677662,-0.3898316,0.010637855,-0.13293213,0.58231133,-0.3609695,0.049800713,0.11299267,-0.17954822,0.28905302,-0.71633923,-0.15171903,-0.11227087,0.21537799,-0.078417696,-0.16653152,0.2091989,0.35046715,0.4133393,-0.003240635,-0.17783003,-0.38332298,-0.21082239,0.14998509,0.5277661,-0.09794435,-0.37558678,-0.034052767,0.00921069,0.2258576,0.32790643,0.23288448,-0.2796417,-0.117007844,-0.034730066,-0.14964004,0.42959344,0.49819964,-0.35050818,-0.12300678,0.43149886,0.5631753,0.03440344,-0.24344839,0.017276963,0.04156093,-0.45813066,-0.17488691,0.1351328,-0.17565294,0.5143932,-0.13696042,0.29703477,0.6237153,-0.2163666,-0.118765034,0.035352517,0.03841918,-0.07914595,-0.21999225,-0.26274785,0.21893519,-0.41019338,0.25673226,-0.02460771,0.6214646,0.14217676,-0.6462023,0.3290505,-0.62323004,0.06736448,-0.06364905,0.40861714,0.4375568,0.5169326,0.13869973,0.7237184,-0.3750655,0.07918346,-0.21802144,-0.29892227,-0.19623835,-0.12765984,0.021988312,-0.48225516,0.24266356,-0.18809134,-0.039750617,0.06161543,0.5479576,-0.42856747,-0.23455532,0.26517335,1.0253799,-0.25728714,-0.07313718,0.7672961,1.0169045,1.0916212,-0.056446575,0.7814246,0.07799112,-0.15872212,-0.042701196,-0.024117386,-0.5919931,0.217081,0.41801584,0.33795187,0.24865736,0.035960678,-0.1398025,0.30172077,-0.24863504,-0.14015247,-0.07272539,0.034031846,0.288783,-0.19444303,-0.30764666,-0.06593748,-0.04283578,-0.020626338,0.0485651,0.16037205,-0.21406698,0.55667454,-0.03239932,1.7420503,-0.016822604,0.135503,0.25210688,0.554945,0.30152595,-0.07628185,0.18361908,0.45409462,0.17722073,0.26262105,-0.5424783,0.18687543,-0.31788638,-0.56028974,-0.113465264,-0.303898,-0.19871397,0.007849199,-0.5719099,-0.25198087,-0.23850533,-0.16803381,0.31231746,-2.786616,-0.16722725,-0.11595054,0.3102202,-0.30310932,-0.37566993,0.02505066,-0.45734218,0.39495414,0.31253177,0.42295626,-0.56021667,0.42551246,0.43551093,-0.4655103,-0.010745446,-0.47350138,-0.083953,-0.028029747,0.348112,-0.10398863,-0.09222839,0.14606844,0.25266168,0.5730832,-0.08333293,0.18233222,0.3607857,0.43068796,-0.11282524,0.53008866,-0.06929941,0.51813436,-0.35775205,-0.11933031,0.40820995,-0.2589595,0.09933772,0.0073841144,0.16541249,0.56669563,-0.33653557,-0.80719185,-0.6157946,-0.0888934,1.091173,-0.25726,-0.44008356,0.33889255,-0.37777779,-0.22788127,-0.16800313,0.33062682,-0.025064703,0.15778749,-0.6722248,0.07138335,-0.09956684,0.123478964,-0.044647653,-0.26133102,-0.4644409,0.7921456,-0.027898168,0.6925758,0.31748617,0.20973495,-0.25805092,-0.33666474,-0.056245126,0.70728076,0.51769376,0.075180374,-0.23901877,-0.13079363,-0.20299007,-0.15471052,0.16377679,0.5938442,0.56190205,-0.09500228,0.15468654,0.2787002,0.052658938,0.016712755,-0.26555902,-0.22179018,-0.12336399,-0.06587251,0.42036822,0.393223,-0.16680317,0.5230215,-0.04199226,0.36558902,-0.20998494,-0.5341057,0.28495285,1.094508,-0.23187794,-0.3540401,0.4429461,0.5198011,-0.39181805,0.36111802,-0.6512241,-0.22361074,0.59474057,-0.21501984,-0.6057425,0.18470879,-0.24902716,0.060056217,-0.71961325,0.07827785,-0.3496128,-0.6694774,-0.45307475,-0.26960984,-3.2397637,0.25599253,-0.30934048,-0.18561307,-0.22359781,-0.29315096,0.14238523,-0.59873605,-0.51072794,0.13972454,0.1533211,0.684774,-0.15120412,0.23408805,-0.31529143,-0.2743276,-0.32306105,0.25001866,-0.04112451,0.24449869,-0.005833022,-0.38086995,-0.074393384,0.04071772,-0.55506885,0.037146732,-0.60726625,-0.30306986,-0.18657385,-0.4077778,-0.2155671,0.588624,-0.17138188,0.11552106,-0.12178189,0.05535788,-0.081995696,0.13485543,0.13675101,0.19900729,-0.031355616,-0.13359302,0.14300162,-0.323889,0.31445324,0.01033895,0.31103155,0.28733668,-0.15230675,0.14663056,0.3371881,0.64259803,0.009278092,0.7805868,0.19644833,-0.04541147,0.39036652,-0.21409354,-0.3858867,-0.61351585,-0.24355394,0.0051344396,-0.2694039,-0.5599479,0.022771506,-0.38758227,-0.7983635,0.49050218,0.050057523,0.31254292,0.03871282,0.44531742,0.54541713,-0.37244764,-0.082495384,0.015718456,-0.17462976,-0.49923953,-0.27669188,-0.62343144,-0.51876384,-0.055122428,0.9974148,-0.2975415,-0.06681143,-0.019107573,-0.21123566,0.057778914,0.27788576,0.071060084,0.15789041,0.364539,-0.22631818,-0.6470411,0.5132467,-0.25729933,-0.21529914,-0.6026525,0.35742864,0.5973085,-0.50435644,0.4981397,0.15470725,-0.007920707,-0.30229074,-0.6068179,0.08165518,0.10929743,-0.27181414,0.38323316,0.20445964,-0.8433303,0.3678285,0.37070128,-0.30791336,-0.63341117,0.59793645,-0.014855694,-0.45785204,-0.04192482,0.29210672,0.25704247,-0.02238152,-0.26257154,0.16979179,-0.45515636,0.24924845,0.14948861,-0.06241912,0.22861543,-0.16406988,-0.18161471,-0.7278834,0.097614355,-0.5099951,-0.26590663,0.27436608,0.028469233,0.09846255,0.304537,-0.08797975,0.42743185,-0.2534888,0.13908549,-0.16518332,-0.31912476,0.45281202,0.32940808,0.46153527,-0.44661584,0.61339056,-0.06514561,-0.17465273,0.22257423,0.2237784,0.41514257,0.08263974,0.5974506,0.1197368,-0.080841355,0.235378,0.748535,0.29105324,0.503437,0.1699958,-0.14582056,0.21402483,0.08090976,0.1435431,-0.16300204,-0.72606605,0.07843062,-0.2022379,0.12521264,0.51620644,0.09878356,0.29600772,-0.08104446,-0.24599648,-0.037641518,0.22714137,-0.005429999,-1.1153615,0.20641838,0.2104184,0.97297287,0.33165416,0.08925786,-0.058133624,0.6463783,-0.1960717,0.10870702,0.3331138,0.061032064,-0.29377303,0.48837578,-0.7293488,0.3320478,0.031780478,-0.080572,0.03186832,0.024108248,0.4566706,0.7791637,-0.2035419,-0.06631483,-0.03568724,-0.39749628,0.21133408,-0.401153,-0.040903527,-0.4742429,-0.2990491,0.64099485,0.56073564,0.2782498,-0.12911488,-0.05312518,0.14762904,-0.11062886,0.15270193,0.1301695,0.1698603,-0.2213621,-0.45741087,-0.16118182,0.5844326,-0.019786898,0.20070337,-0.011326099,-0.2481969,0.35169747,0.12444289,-0.06033257,0.11511395,-0.7131873,0.2882227,-0.114662476,-0.5244457,0.5018109,0.0026793887,0.19467661,0.19276515,-0.03827102,-0.21281198,0.32514656,0.032621942,0.7693672,-0.0026893716,0.011149391,-0.44168904,0.16961169,0.061769024,-0.11340996,0.1319964,-0.13026284,0.059838276,-0.55317986,0.38178608,-0.03865772,-0.2642524,0.16868307,-0.11739189,-0.07513359,0.6046088,-0.03563996,-0.081191145,-0.07934804,-0.059900362,-0.4101315,-0.2807876,-0.08821608,0.35545728,-0.1834289,-0.01962932,-0.07456658,-0.023456259,-0.01917628,0.5025995,-0.011442971,0.39629236,0.2979768,0.029197915,-0.37207937,-0.23957682,0.14809056,0.49540344,-0.13719563,-0.1091235,-0.1027986,-0.6069459,-0.27895197,0.06910562,-0.09460758,0.3390093,0.13062952,-0.18175223,0.848136,-0.05769264,1.1936958,-0.087496504,-0.42530048,0.18094164,0.48991156,0.0940583,-0.044597846,-0.3203284,0.8897397,0.6161854,0.006345566,-0.04121948,-0.22634608,-0.0836952,0.15960123,-0.24293223,-0.15984099,-0.045868676,-0.49134806,-0.16330013,0.14385074,0.19392492,0.275133,-0.18261027,0.1347681,0.45881966,-0.02746576,0.33649895,-0.3900212,-0.2842045,0.15702678,0.22285496,-0.18684754,-0.033810508,-0.54147977,0.39960766,-0.5155343,0.10827838,-0.26199833,0.19568676,-0.20601176,-0.21935578,0.19685599,0.053675912,0.28909656,-0.30556843,-0.34702298,-0.15539663,0.33217546,0.17989995,0.16553767,0.48690754,-0.25673774,0.13115865,0.010531169,0.55267155,0.84568685,-0.11843551,-0.18774933,0.36749622,-0.5451107,-0.6642862,0.44292104,-0.29920986,0.20651226,0.0055518625,-0.12235713,-0.411605,0.38870457,0.19806989,-0.11790619,0.03924316,-0.66362244,-0.099750124,0.23039508,-0.41180867,-0.20496152,-0.30770734,0.24898574,0.644317,-0.17201729,-0.35947746,-0.052295547,0.28865847,-0.027104793,-0.62697303,0.027200263,-0.27861983,0.32797563,-0.0017457604,-0.27382317,-0.106195346,0.0780588,-0.50888574,0.103363246,0.08220858,-0.2712001,0.09550716,-0.3703285,-0.05966057,0.7887388,-0.15364479,-0.036015693,-0.46837023,-0.52841485,-0.6703525,-0.41313305,0.3129216,0.15618062,0.019780643,-0.63227683,-0.03526933,-0.18018545,-0.26176232,-0.17273669,-0.27821854,0.4664244,0.07917248,0.370635,-0.06085762,-0.6932274,0.32045904,0.055684883,-0.13857989,-0.56078744,0.50907916,-0.07290916,0.75130236,0.122888036,0.023398865,0.25924256,-0.4605503,0.12770692,-0.3190492,-0.2243743,-0.48481274,-0.14145519,766 +282,0.29001752,-0.08994159,-0.42257127,-0.0938155,-0.37609947,0.07443057,-0.21875161,0.21691914,0.37138784,-0.09694553,-0.225887,-0.11826951,0.108559705,0.35150555,0.03203111,-0.44129562,-0.20495878,0.2170224,-0.75279117,0.4911323,-0.34545746,0.17690822,0.14539592,0.38578436,0.14514843,0.45667693,0.15668078,-0.10276644,-0.2207381,-0.08808974,-0.1368583,0.2705111,-0.6221586,0.115608215,-0.31982237,-0.09654401,-0.004598508,-0.44866836,-0.30800486,-0.6894008,0.13339837,-0.9610344,0.5370365,-0.03845843,-0.06508641,-0.09711706,0.28806007,0.43899664,-0.34414577,-0.05841336,0.30183837,-0.32437718,-0.16776404,-0.26500964,-0.14143859,-0.27942482,-0.45517164,-0.024003554,-0.48996463,-0.2254143,-0.23885472,0.20404616,-0.22934793,0.05008568,-0.26992464,0.35934025,-0.4949586,0.26346907,0.32555643,-0.38213494,0.19670011,-0.54837626,0.04270537,-0.11367879,0.5028627,-0.03924279,-0.13426976,0.44927642,0.34175923,0.32242128,0.21369047,-0.28945082,-0.33099225,-0.15152234,0.17291863,0.4478576,-0.17612414,-0.08720985,-0.087378025,0.050518822,0.22864528,0.3725681,-0.037736516,-0.24414572,-0.0832134,-0.18138841,-0.041681994,0.3409591,0.51940334,-0.13837478,-0.28556103,0.22034883,0.56197894,0.35565978,-0.19495958,-0.13637947,0.16926551,-0.58947027,-0.18051845,0.1861421,-0.16384524,0.47584587,-0.081747875,0.07597459,0.85185,-0.10951522,-0.023769386,-0.004708717,0.07573899,-0.100864194,-0.28130564,-0.11447572,0.20383462,-0.48899958,0.095378995,-0.15377448,0.4815627,0.096617885,-0.57865494,0.36780408,-0.5173378,0.15581258,-0.021099854,0.5748959,0.6878617,0.45366144,0.41277283,0.7779373,-0.23556513,0.25048807,-0.047440443,-0.43634212,0.107178055,-0.26127577,0.14048417,-0.4533922,0.013440629,-0.2580084,-0.011722887,0.2114803,0.35155818,-0.5001203,0.03558793,0.2302576,0.8411077,-0.2938067,-0.13122633,0.59834564,0.8997795,0.95731443,-0.06710192,1.2259542,0.27612954,-0.19623643,0.08085724,-0.36486652,-0.61949503,0.16517247,0.27091795,-0.38116294,0.2381166,0.032388844,-0.10606343,0.33790737,-0.46380398,0.046329517,-0.044583656,0.2012457,0.16257457,0.050663617,-0.42283386,-0.22598137,-0.13327795,-0.05118101,0.18779792,0.15313229,-0.27457902,0.37742278,-0.013663655,1.5514927,-0.14159815,0.088182315,0.15184627,0.4748241,0.21524532,-0.06602881,-0.117270015,0.53455526,0.36854127,0.13273805,-0.5010834,0.26444504,-0.33564535,-0.2708324,-0.098195754,-0.3542773,-0.13241376,0.10386065,-0.41093495,-0.20514666,-0.08938649,-0.29904696,0.4558747,-2.7112174,-0.0520417,-0.089844055,0.30874762,-0.3024928,-0.19711949,-0.13976988,-0.5756864,0.15982622,0.14149778,0.42402542,-0.59535813,0.33290112,0.6073132,-0.5748433,-0.22341429,-0.600289,-0.14489365,0.0048195124,0.40296504,-0.020014977,-0.100539684,-0.17356713,0.07742079,0.64734966,-0.013251388,0.102466606,0.6249578,0.3747823,0.122702904,0.55847764,-0.1053695,0.53895813,-0.28650168,-0.3051171,0.43928593,-0.17612536,0.34208646,-0.24796233,-0.022083174,0.6136237,-0.31988323,-0.9258196,-0.55950755,-0.3907334,1.0927448,-0.45090058,-0.45653552,0.29739067,-0.22759806,-0.12831935,0.06496118,0.6580325,-0.053555593,0.21604805,-0.68331504,0.06643772,-0.09235663,0.33147132,0.07586838,-0.0055279294,-0.41412708,0.6627223,-0.016788708,0.49804202,0.29753235,0.2661821,-0.17428215,-0.3874449,0.0900929,0.84285873,0.25643617,0.019378673,-0.23774534,-0.24979332,-0.04757476,-0.27894595,-0.094774775,0.5688276,0.6360776,-0.14366356,0.26874766,0.36618167,-0.062267315,0.0037539005,-0.16312627,-0.24077216,0.02029117,0.0813467,0.40285823,0.84835523,-0.084187664,0.42446697,-0.15674025,0.42561978,0.0053239744,-0.6292671,0.55863005,0.5209612,-0.18939768,-0.03559204,0.59023225,0.4415864,-0.37914625,0.46462536,-0.6289591,-0.28719193,0.56774867,-0.13135788,-0.5376971,0.20926234,-0.275077,0.10720158,-0.6357259,0.20851423,-0.15302019,-0.43127203,-0.42981917,-0.13050194,-3.118583,0.06291041,-0.15454316,-0.14918827,-0.22757357,-0.049547207,0.13434511,-0.5463131,-0.5408183,0.11475933,0.20680033,0.5327357,-0.22172932,0.13823907,-0.21824023,-0.21615525,-0.006078772,0.27977672,0.2856459,0.266522,-0.29011753,-0.5306185,-0.04484507,0.04027501,-0.48317435,0.09788196,-0.7274255,-0.36230844,-0.135657,-0.47674066,-0.11260858,0.6074644,-0.5113294,0.010148968,-0.2768889,0.14487915,-0.15184338,0.10982046,0.20068304,0.20918804,0.11646875,-0.12072428,0.04382774,-0.25344408,0.6539992,-0.0011067609,0.3530858,0.19131048,0.09664181,0.22652826,0.32014382,0.62533087,-0.27386525,1.1235547,0.4707037,-0.14793505,0.18415976,-0.30281287,-0.26521453,-0.5495169,-0.3526608,0.0465068,-0.49410772,-0.5045076,-0.018367283,-0.34887248,-0.8546095,0.66780186,-0.047387674,0.29060432,0.013813529,0.12264036,0.49768314,-0.3517937,-0.071562834,-0.06358489,-0.16079743,-0.55512446,-0.4116343,-0.46880907,-0.53562087,0.037232287,0.8864166,-0.24179773,0.13334762,0.07463025,-0.4082181,-0.075848095,0.09988402,0.08141567,0.2767466,0.57351303,0.008868626,-0.68293244,0.42958656,-0.08515566,-0.07447275,-0.55901605,0.18118167,0.54032975,-0.7832579,0.6398079,0.34400374,-0.009969121,-0.09849312,-0.49778736,-0.37720948,-0.1937841,-0.2290694,0.4228931,0.18303326,-0.7325552,0.42057282,0.17994373,-0.56202066,-0.7010194,0.300289,-0.18146499,-0.2497115,0.028222298,0.33056095,0.02327261,0.025109768,-0.12698385,0.09062955,-0.31529644,0.25465956,0.18866095,-0.10125761,0.22153817,-0.13542205,-0.29211745,-0.7449449,0.0822338,-0.34123388,-0.35270587,0.4191725,-0.00088158844,-0.103025004,0.16672802,0.20061558,0.34100896,-0.20561793,0.019254185,-0.024804652,-0.41274256,0.26932594,0.422877,0.49737692,-0.42174694,0.5244064,0.12989505,-0.2916418,0.20564,-0.066141024,0.41724935,-0.07301838,0.3365802,-0.1467136,-0.21411456,0.32256317,0.6826353,0.0660112,0.4126559,-0.021407219,-0.04383322,0.41303098,-0.05589126,0.08564196,-0.045063607,-0.5798218,0.08867402,-0.24354738,0.20332263,0.42204106,0.33860663,0.32118237,0.048725504,-0.19904393,-0.0011965175,0.21574052,0.082656816,-1.103346,0.28722343,0.23238793,0.9089296,0.30813774,0.16547337,-0.16613144,0.79750454,-0.3164932,0.06413128,0.4828195,-0.018910503,-0.44670093,0.69650155,-0.70493436,0.4867597,-0.04315492,-0.13334854,0.19464025,0.106828734,0.28287336,0.85713905,-0.24022745,-0.057100292,-0.0068328218,-0.22007778,-0.040430486,-0.33739153,0.047818545,-0.487867,-0.53678834,0.71169215,0.48927307,0.4653186,-0.1954288,-0.028679034,0.012270133,-0.14742361,0.26886636,-0.01892987,0.023291077,0.120407104,-0.6008734,-0.057066273,0.53694737,-0.09019037,0.21763651,-0.17158595,-0.18646558,0.07424924,-0.32901686,-0.050975885,-0.12921818,-0.7477351,-0.016737998,-0.24597628,-0.579392,0.43353865,-0.21489881,0.12419625,0.09065009,-0.019158464,-0.3682594,0.54669166,0.11729352,1.0132476,0.11705206,-0.11987344,-0.2734458,0.26167494,0.31296137,-0.16477394,0.089715004,-0.3407516,0.063812114,-0.5010401,0.487312,-0.22957903,-0.5438206,0.15395437,-0.29448065,0.01580152,0.58541614,0.0382888,-0.22707005,0.096490115,-0.21470541,-0.48443472,-0.035679482,-0.35840708,0.17210193,0.35637924,-0.10330942,-0.19913386,-0.26616654,-0.22303744,0.42302927,-0.0062950533,0.5069277,0.18433596,-0.024471045,-0.12055306,0.07241281,0.19599985,0.5998106,0.12555367,0.029711533,-0.36182252,-0.34063625,-0.31742898,0.29489657,-0.046069875,0.33494335,0.10587387,-0.23579751,0.95374614,-0.07260491,1.1378331,0.20820478,-0.32905084,0.10403445,0.49622294,-0.110935815,0.044039138,-0.49124017,0.8359036,0.53425574,-0.088352345,-0.03271071,-0.39775068,0.021572892,0.30313075,-0.25884894,-0.05169229,-0.07359989,-0.6246642,-0.2927625,0.23483324,0.17531551,0.21116771,-0.067097254,-0.022511395,0.02718827,0.10308177,0.27397996,-0.5224161,-0.23557867,0.34848064,0.2264499,-0.1396902,0.216793,-0.404613,0.5080441,-0.46744785,0.05372499,-0.43282166,0.14401156,-0.27233198,-0.2411582,0.15559775,-0.13279998,0.42629325,-0.41572914,-0.31921807,-0.16347288,0.3939351,0.11781071,0.16427006,0.65311825,-0.29531226,-0.0136852665,0.050650127,0.52569556,1.0132042,-0.67069143,0.14459139,0.29957736,-0.33470136,-0.57158375,0.5036437,-0.3925132,-0.13311414,-0.03888039,-0.43888515,-0.3625334,0.21604629,0.014797342,0.023162642,0.04485617,-0.5303133,0.08861614,0.24607341,-0.19812424,-0.23200265,-0.22506168,0.34621087,0.65632427,-0.19634666,-0.45049986,0.14543562,0.28319514,-0.23667262,-0.3401717,-0.065766424,-0.20132956,0.22081253,0.05707341,-0.35574672,-0.15635015,0.2100081,-0.44879645,0.021849366,0.18882614,-0.33358517,0.07951818,-0.14041929,0.0022131046,0.87794036,-0.3162483,-0.07776901,-0.6325977,-0.47101584,-0.9347286,-0.26697075,0.10090902,0.13218251,-0.084954314,-0.3817827,-0.02939125,-0.22455493,-0.104382135,0.009120408,-0.65365815,0.3923741,0.1355349,0.48828635,-0.35965207,-0.8799227,0.19009878,0.1213162,-0.12517168,-0.63758785,0.49524397,-0.10713894,0.84237665,0.034718223,-0.07300186,0.14217782,-0.38715044,0.010438337,-0.22171663,-0.18455805,-0.80560917,0.00069941086,770 +283,0.5211235,-0.3992587,-0.46883443,-0.1558355,-0.35569632,0.12476073,-0.15536168,0.44289902,0.27220634,-0.31184122,-0.25648507,-0.12540689,0.039891783,0.14594318,-0.16190863,-0.36712602,-0.0915808,0.27028745,-0.48557422,0.5411143,-0.28050512,0.16520956,-0.042607155,0.54968303,0.50593907,0.2555206,-0.13264748,0.10593479,-0.37352848,-0.15977964,-0.10785434,0.47509155,-0.37477174,0.13070388,-0.32337344,-0.41995582,-0.10443342,-0.54058945,-0.3803218,-0.7715092,0.33536503,-1.017032,0.41684443,-0.1556236,-0.20436683,0.31727347,0.1312205,0.2590178,-0.15069482,-0.2675012,0.1434614,-0.06432067,0.0018341024,-0.22603868,-0.15130834,-0.33221248,-0.5046569,-0.04096215,-0.2771133,-0.15080658,-0.24023348,0.14129864,-0.3694442,0.111916415,-0.06111935,0.5768804,-0.34542125,0.27394643,0.118719086,-0.013919203,-0.0602513,-0.5598418,-0.2502767,-0.1421064,0.30129382,-0.11543568,-0.30289152,0.18116048,0.3511568,0.3033161,-0.075455524,-0.1436601,-0.2634159,-0.15711895,0.12115458,0.43753687,-0.0755351,-0.58000404,-0.111993484,-0.09702743,0.29511005,0.17684828,0.2092985,-0.18206114,-0.049908575,0.02531937,-0.15849042,0.4297619,0.33420599,-0.26485518,-0.14376669,0.34154806,0.63620096,0.18806419,-0.25382012,-0.12516889,0.11692132,-0.47933456,-0.08086433,0.060818672,-0.23535194,0.5555065,-0.20925765,0.31923977,0.6201069,-0.14992423,-0.059947174,0.15225035,0.25672966,-0.23969157,-0.36854273,-0.37222627,0.23109867,-0.40941355,0.17111367,-0.077187695,0.73482376,0.07566918,-0.61219734,0.29364434,-0.5801333,0.08585392,-0.13407081,0.3411008,0.6525354,0.38107646,0.38429406,0.4562441,-0.097414814,0.006289963,-0.11150702,-0.34250444,-0.07423084,-0.30114093,0.1557079,-0.52267677,0.19469897,-0.042954393,-0.08672234,0.04551616,0.56738335,-0.45061773,-0.24872415,0.09414453,0.8519555,-0.23589896,-0.20776151,0.90930927,0.8453512,0.9105578,0.014028264,1.0782878,0.24719481,-0.182648,0.19060197,-0.10515717,-0.7063933,0.3026083,0.28695902,-0.5761464,0.14566582,0.15637615,-0.022317994,0.36561298,-0.34879366,-0.011913562,-0.22411428,0.03480329,0.25850427,0.09295643,-0.49228904,-0.34732533,-0.08820998,0.07466542,0.24882135,0.33699974,-0.18151014,0.59005654,0.17370214,1.8506645,-0.032207627,-0.056475934,0.073018864,0.39375973,0.20835926,-0.09080072,-0.08875202,0.31293935,0.21437334,0.11322559,-0.519342,0.1540014,-0.20726813,-0.34473982,-0.10792492,-0.32392284,-0.26629916,-0.05438498,-0.4903077,-0.20576066,-0.22299442,-0.20859668,0.4416796,-2.6436338,-0.28696615,-0.072411746,0.35666853,-0.2158468,-0.50247794,-0.10479465,-0.5355648,0.21675079,0.13822083,0.4770535,-0.6358856,0.32459763,0.37080058,-0.55675864,-0.11234759,-0.6282555,-0.11377866,0.105772525,0.31474158,-0.103676654,0.10052738,0.06065723,0.06040412,0.4131499,0.040836263,0.1701388,0.42198727,0.5266508,0.02472388,0.5407112,0.017894976,0.5879718,-0.28133357,-0.25487456,0.23654053,-0.357851,0.37340096,0.04125317,0.16963056,0.73529613,-0.4198348,-0.81194305,-0.64651436,-0.038755417,1.0525668,-0.17305598,-0.2646176,0.18125153,-0.69028777,-0.42906228,-0.11644738,0.41246262,-0.16465025,-0.17057627,-0.73255855,-0.03904232,-0.07297086,0.07319272,-0.08284851,-0.15248771,-0.28005153,0.6393987,-0.05870308,0.39747897,0.2021735,0.09827236,-0.41466695,-0.38099813,0.072911896,0.7888494,0.37143502,0.16509822,-0.33662862,-0.20040491,-0.38104898,0.046066225,-0.0028926888,0.5151518,0.41122797,-0.018989762,0.23769657,0.25689855,0.015401523,0.049757708,-0.20997801,-0.21058968,-0.23857574,0.034274396,0.48800448,0.6881931,-0.27488473,0.51733553,-0.014990461,0.30401453,-0.18167748,-0.4448517,0.40270194,1.2742392,-0.21816775,-0.35564366,0.59805036,0.4163974,-0.37376294,0.32089013,-0.39231542,-0.123434804,0.44189784,-0.16868176,-0.3610094,0.19471769,-0.19918491,0.10987641,-0.7282004,0.14546537,-0.13102381,-0.509419,-0.6155034,-0.016066253,-2.1894083,0.16956359,-0.14170519,-0.2706462,-0.17954494,-0.3911713,0.044619583,-0.6033792,-0.6045255,0.25624302,0.018037356,0.7691175,-0.12261644,0.15920338,-0.14202219,-0.39822164,-0.14505209,0.0124605335,0.22598937,0.41488346,-0.1763743,-0.49143648,-0.05579621,-0.059343044,-0.293474,0.07354415,-0.7276757,-0.42451584,0.004914863,-0.48156986,-0.34231958,0.5779035,-0.24748753,0.06736117,-0.23894729,0.047205463,-0.18933088,0.28228536,0.121375,0.06979839,0.0144041935,-0.045863427,0.10116578,-0.2449259,0.28385288,-0.050665442,0.24998528,0.29735947,-0.091428325,0.34363365,0.3507835,0.63668144,0.098211765,0.9939721,0.365516,-0.09786458,0.22581233,-0.1678679,-0.4600811,-0.4875058,-0.13419059,0.010627154,-0.3899598,-0.36240134,0.0031357158,-0.40496433,-0.7148114,0.5984195,0.123966284,0.24778178,-0.073307626,0.29798093,0.7073828,-0.2375265,0.0130647635,0.034092322,-0.13603435,-0.60478467,-0.32807985,-0.4615811,-0.39678097,0.13259219,0.9387747,-0.19874886,0.15842442,0.14858514,-0.3448649,0.025403349,0.32043648,-0.16272901,0.24658802,0.6310979,-0.17716329,-0.5674495,0.45273933,-0.1663899,-0.16057298,-0.48916203,0.19789413,0.5838458,-0.59792686,0.59088033,0.33925048,-0.072550416,-0.35842165,-0.38530737,-0.19008937,-0.05100312,-0.20105238,0.46237728,0.5326576,-0.7317476,0.35585508,0.34525502,-0.04430666,-0.7231271,0.59684,0.036701627,-0.31003532,-0.20180504,0.39442495,0.11907441,0.04158145,-0.19382903,0.10461531,-0.3099025,0.13799092,0.19193181,-0.1701094,0.05177733,-0.25571552,-0.043026783,-0.8358863,0.08613288,-0.38426057,-0.34788603,0.30063665,0.076820396,0.22142741,0.20588979,0.030517336,0.26851442,-0.4763703,-0.058097973,-0.07492956,-0.30507824,0.17432019,0.32922184,0.55602574,-0.43071505,0.505201,0.039634928,-0.15025991,0.12008731,-0.011897703,0.31996688,0.034385834,0.38067594,0.16187567,-0.26821855,0.2633809,0.82980853,0.19241887,0.45824584,0.042729493,-0.08079119,0.1133802,0.068499975,0.31097344,-0.1323767,-0.6441886,0.010416778,-0.32779834,0.15458846,0.4346127,0.06095556,0.2689491,-0.18879344,-0.39527225,0.049952812,0.03537709,0.14342956,-1.3213449,0.15477377,0.22068745,0.8963934,0.26986802,-0.095872514,0.0027820945,0.7332633,-0.15672064,0.1630216,0.41402212,-0.047167525,-0.37209684,0.5422917,-0.59764206,0.3994699,-0.010001675,0.02486351,0.047907013,-0.10522416,0.36164063,0.6524361,-0.20519193,-0.09867979,0.0034217695,-0.43726358,0.24289683,-0.29912683,0.1033355,-0.6628955,-0.22180715,0.63883466,0.6775972,0.3859084,-0.20265332,0.09643699,0.08888157,-0.12768093,0.11383525,0.22171289,0.1914681,-0.054275937,-0.66998315,-0.10253094,0.5181892,-0.013125523,0.12146703,-0.08429206,-0.23432942,0.2743486,-0.14123438,-0.0381934,-0.13581507,-0.7954763,-0.0023510912,-0.35745135,-0.6203133,0.5487059,0.03355721,0.10390985,0.28029197,0.053366605,-0.31395656,0.44068107,0.15726124,0.8780201,-0.07893206,-0.039002478,-0.3264024,0.18422012,0.16333933,-0.08630572,-0.0939196,-0.29899204,0.16556734,-0.58671314,0.48329532,0.032707963,-0.30328065,-0.10953982,-0.020725794,0.15265585,0.5017868,-0.103073746,-0.07909818,-0.26366892,-0.0032355348,-0.3874816,-0.24042305,0.00037253698,0.2786312,0.31712404,-0.055157457,-0.23418209,-0.11530966,-0.23534513,0.39819214,-0.06475287,0.44204682,0.40939057,0.037514795,-0.12141455,-0.24372046,0.1736351,0.52277434,-0.13615409,-0.2773898,-0.45077404,-0.41646424,-0.28736782,0.40206012,-0.03257174,0.42851016,0.09648605,-0.1129458,0.7171053,-0.22107531,1.0185763,0.189599,-0.45694426,0.17429806,0.50417054,-0.016366469,-0.092771366,-0.27413982,0.7810157,0.27351773,-0.041930206,-0.07091103,-0.4624957,0.04957626,0.149298,-0.13120922,0.009743405,0.010084798,-0.39858976,-0.14986318,0.1017114,0.19461162,0.25206113,-0.168742,0.2597609,0.43248796,-0.09986495,0.28876102,-0.40495166,-0.30661213,0.22445086,0.16025297,-0.0758466,0.16787106,-0.4788813,0.3416621,-0.40922567,0.12205728,-0.46575245,0.39300337,-0.22136976,-0.23993383,0.17171934,0.06774591,0.3280266,-0.37333757,-0.29320037,-0.3745344,0.46467036,0.1549135,0.032402582,0.3436788,-0.2866744,0.060336407,0.042888608,0.48095754,0.78335726,-0.07346727,0.025293421,0.3768271,-0.31239697,-0.5076281,0.48556137,-0.3592077,0.26820654,0.16850781,-0.0043112594,-0.5795981,0.3178909,0.37067768,0.22805516,-0.12669925,-0.5793207,-0.056946468,0.36040682,-0.24102254,-0.026068926,-0.29285464,-0.064119786,0.37212533,-0.20579453,-0.43780568,-0.08407758,0.14194518,-0.010314123,-0.36534277,-0.0529413,-0.5874231,0.19220097,-0.022231314,-0.31040466,-0.23651405,-0.01430438,-0.37026516,0.15105219,0.11926952,-0.2924915,0.07598337,-0.3088891,-0.028618196,1.0875385,-0.13807186,0.2699415,-0.4290032,-0.4024666,-0.6422506,-0.39192924,0.13902508,0.0030201117,0.08251297,-0.5945688,0.002705423,-0.04083799,-0.33867547,-0.03508098,-0.42448512,0.50949216,0.2053046,0.4138027,-0.019158633,-0.81290424,0.07519207,-0.10608336,-0.27100855,-0.531898,0.4957291,-0.07109428,0.7201626,0.026393913,0.09197923,0.23146078,-0.32370135,-0.2293055,-0.21189149,-0.11276941,-0.6359995,-0.07482154,773 +284,0.45625195,-0.07115267,-0.35207596,-0.14023682,-0.10871456,0.09073532,-0.04681259,0.45364964,0.1055172,-0.60529864,-0.21454903,-0.3070744,0.01878377,0.33214733,-0.18908949,-0.5587503,0.0007857402,0.1291339,-0.5606633,0.52204883,-0.477363,0.4836534,0.25496122,0.21520051,0.093116775,0.12822086,0.3259414,-0.19170755,-0.23090328,-0.13669746,-0.19611254,0.1746119,-0.5775306,0.1507387,-0.15320517,-0.3310247,-0.016710559,-0.50448954,-0.27831295,-0.62773377,0.4198588,-0.76675594,0.47133118,0.029875906,-0.13452111,0.31282407,-0.01334339,0.20906585,-0.17366244,0.1127587,0.14911215,-0.0018757939,-0.0415584,-0.15088797,-0.2175943,-0.124595515,-0.578477,0.20377229,-0.32192034,-0.25438944,-0.26820964,0.13122241,-0.22413507,-0.0005539417,-0.11538197,0.39152774,-0.35827473,-0.058660425,0.07116727,-0.037506785,0.23422362,-0.43354633,-0.13582492,-0.013678058,0.34074992,-0.28611508,-0.11600716,0.19096234,0.2944607,0.52755195,0.006291314,-0.08501108,-0.18912026,-0.032985672,0.09050557,0.5871134,-0.11255162,-0.5451603,-0.033521745,0.032924976,0.10571272,0.16823012,0.17559035,-0.32280126,-0.1979787,-0.092434295,-0.23984157,0.26604247,0.48080203,-0.3977696,-0.28293693,0.369749,0.4553617,0.0927078,0.054511998,0.040344622,-0.07025649,-0.5921061,-0.1229562,0.05715014,-0.19123074,0.47548616,-0.107101046,0.32486668,0.50450915,-0.03949189,0.14451808,0.04712362,-0.09419438,-0.08772727,-0.1029668,-0.08798058,0.13614912,-0.37830475,0.04907583,-0.19000956,0.90637803,0.14163631,-0.81607693,0.38772804,-0.4961546,0.15613686,-0.14330529,0.45849898,0.55707496,0.28209648,0.16724087,0.72687596,-0.6292358,0.02810906,-0.12732689,-0.4023527,-0.11570158,-0.0060500302,-0.09190054,-0.40032443,-0.00349315,0.07811343,-0.1343803,0.06917094,0.38238347,-0.5070533,0.021594027,-0.00784467,0.7935098,-0.32215622,-0.1014587,0.8409469,0.9423465,1.0074657,0.067712046,1.2290086,0.2159684,-0.2637045,0.2125683,-0.38351637,-0.7365749,0.29852238,0.41232982,-0.010225971,0.124994844,0.08120096,0.0396556,0.24262129,-0.383333,0.062557474,-0.29865837,0.12841359,-0.0006413956,-0.053538468,-0.36787495,-0.389234,-0.007345168,0.13657,0.1856331,0.19455911,-0.14691299,0.35178912,-0.031179862,1.8385483,-0.11024887,0.10382655,0.076908395,0.36155406,0.106901914,-0.07195619,-0.17659405,0.095172875,0.39809936,-0.11913007,-0.6112039,-0.010654918,-0.15571886,-0.6013847,-0.12583733,-0.29785728,-0.016329484,-0.016153626,-0.39900824,-0.07840306,-0.12675633,-0.4142238,0.4970508,-2.7145376,-0.19165614,-0.015496365,0.3280764,-0.3132911,-0.4213111,-0.1798482,-0.4398418,0.5178842,0.3290201,0.44644248,-0.6653314,0.250516,0.31357715,-0.35927403,-0.21661074,-0.60809976,-0.005378341,0.010394326,0.24738453,-0.008661223,-0.029099278,-0.0197975,-0.0047328393,0.39046904,0.040863108,-0.05816124,0.21207471,0.3685633,0.2792502,0.41699657,-0.0012953976,0.5194567,-0.25461558,-0.0821118,0.32405895,-0.24509309,0.22985093,-0.17332552,0.18057474,0.25787267,-0.6962551,-0.66670525,-0.69444853,-0.42304382,1.1835265,-0.18987224,-0.29834118,0.33701193,-0.040504385,-0.12117648,-0.04789959,0.41245,-0.098211184,-0.21227296,-0.83212495,0.014731844,0.02419637,0.15852426,-0.052662056,-0.0031386793,-0.49328703,0.5884655,-0.15786597,0.46894237,0.417353,0.27651247,-0.21724835,-0.49325994,0.08851981,0.9850407,0.26243493,0.11474289,-0.14397702,-0.21461897,-0.4573679,-0.16248547,0.08554187,0.4234124,0.73386663,0.09880168,-0.023991307,0.27549312,0.09806584,0.1229338,-0.104669526,-0.23735377,-0.053309064,-0.24602705,0.6170415,0.4972526,-0.14606644,0.5271423,-0.15469606,0.22793786,-0.20196384,-0.34138379,0.6083829,0.94738305,-0.19215895,-0.18829724,0.48506913,0.3183853,-0.12984154,0.3321513,-0.5436571,-0.37072417,0.4283881,-0.21042281,-0.41178113,0.27653366,-0.22243191,0.16789177,-0.95202523,0.28580895,-0.17942308,-0.39593947,-0.52138513,-0.052195843,-3.4749231,0.20366052,-0.24922152,-0.14369376,-0.01439412,-0.19496292,0.07019744,-0.43082723,-0.5500726,0.15441471,-0.022639839,0.5887221,0.025404314,0.20868441,-0.11037493,-0.117139176,-0.379603,0.001929613,0.021060936,0.42981502,0.091564365,-0.29345807,0.047664404,-0.28661683,-0.30296284,0.11670721,-0.50058156,-0.4425092,-0.10444219,-0.45868096,-0.49905688,0.59972674,-0.3696962,0.08786701,-0.17527609,-0.08681636,-0.13688096,0.36981854,0.12092655,0.088954546,-0.0011808673,-0.07277172,-0.022203803,-0.26120707,0.31392393,0.086916454,0.24357633,0.38204834,-0.22055885,0.175732,0.32018635,0.63985926,-0.1137811,0.6253565,0.47599584,-0.0037767887,0.1673021,-0.38243428,-0.19044556,-0.4213145,-0.21104999,-0.039521456,-0.31132895,-0.5132561,-0.24026492,-0.36146247,-0.6864909,0.35905167,0.07501138,0.0822978,0.038041577,0.17720659,0.47336516,-0.060852703,-0.064285114,-0.06565661,-0.04298084,-0.5375189,-0.3219783,-0.6943808,-0.46462366,0.14369589,0.9552839,-0.06344042,-0.14843087,-0.047521845,-0.103088126,0.02909871,-0.09878878,0.05383567,0.19979014,0.23248751,-0.23688565,-0.68975234,0.58998966,-0.03207166,-0.18362284,-0.47867987,0.10754881,0.5610419,-0.50046194,0.39025486,0.2745552,0.06713845,-0.0028476894,-0.4099603,-0.15427037,-0.07511355,-0.30756214,0.2885308,0.1533903,-0.5937237,0.51367486,0.38551039,-0.1200345,-0.7932114,0.39266524,0.09139497,-0.3115968,0.09471523,0.24218938,0.098242775,0.016423864,-0.18900019,0.1499673,-0.5060796,0.3044404,0.283713,0.07182338,0.36256012,-0.3217258,-0.17310807,-0.6022036,-0.019577423,-0.4358548,-0.19405028,0.078581415,0.25980094,0.15575643,0.19106491,0.05305376,0.42757732,-0.37099272,0.11950788,0.007050693,-0.03450508,0.111523785,0.35783002,0.4272046,-0.44857633,0.5117683,-0.076949544,0.021523757,-0.035201702,0.091208555,0.41609016,0.22102898,0.15895501,-0.06325867,-0.2660147,0.3912159,0.63471997,0.25678065,0.2502769,0.045841683,-0.19573647,0.31171784,0.14085731,0.1960444,0.12291457,-0.46850863,-0.15028295,-0.05432995,0.14351149,0.42691076,0.15820552,0.2741407,-0.14587924,-0.34104583,-0.024857473,0.18083248,-0.18146402,-0.93064886,0.40639502,0.04036609,0.7720379,0.5524191,-0.08796813,0.15908527,0.51483655,-0.17764536,0.18390125,0.103604525,-0.1830844,-0.5787614,0.50699335,-0.50617343,0.38452902,-0.16011645,-0.031041794,-0.047181595,-0.031730648,0.22226861,0.7108489,-0.022432996,0.13368253,-0.07559015,-0.21273094,0.09656899,-0.3446863,0.049777787,-0.583662,-0.13770333,0.676514,0.3350142,0.23378153,-0.06909054,-0.009579371,0.06999323,-0.08442095,0.0112498365,0.09335824,0.15164062,0.032865968,-0.68919474,-0.21250455,0.54884243,-0.061176028,0.1740882,0.073198445,-0.26200452,0.17151445,-0.19516018,-0.08072346,-0.11484348,-0.6140906,0.046455503,-0.25210547,-0.17194834,0.14145261,-0.12322937,0.32054272,0.18791069,0.061231732,-0.3139709,0.20855837,0.22573985,0.6229843,0.05340781,-0.24145755,-0.4015973,0.21691671,0.16219424,-0.2709138,-0.15991111,-0.120181195,-0.12752707,-0.6232773,0.49864644,0.10666637,-0.17774205,0.27864772,-0.08415913,-0.034114633,0.57956976,-0.12704621,-0.0026294058,0.05893828,-0.18571101,-0.20527242,-0.057854272,-0.0920076,0.25149632,0.35950485,-0.1092674,0.0114335455,-0.0034982404,-0.18793505,0.42198625,0.005100472,0.4134164,0.22224979,0.058639433,-0.3147867,-0.15098874,0.15504369,0.38814867,0.060898382,-0.053253807,-0.25670663,-0.3510731,-0.30361897,0.13002147,-0.108431615,0.25986463,0.07378821,-0.36479542,0.52517194,0.16062321,1.0257016,0.08793918,-0.18072931,0.03257775,0.40258196,0.09853248,-0.06628684,-0.30301204,0.92703253,0.5165417,-0.03109204,-0.12364403,-0.20288877,0.013173556,0.12916881,-0.14953902,-0.12079342,0.032266337,-0.5935004,-0.3841047,0.17562827,0.22787756,0.117244035,0.022666087,-0.018839415,0.18458839,-0.018686257,0.3952731,-0.3847817,-0.22611329,0.30222955,0.2538996,0.0852963,0.12012248,-0.46449855,0.4484878,-0.5387325,0.044322725,-0.21618973,0.17213963,-0.109569594,-0.18788522,0.21577409,0.06130693,0.35219234,-0.25871602,-0.42051882,-0.3655242,0.46561915,-0.016412096,0.24600853,0.55572534,-0.2443028,0.06132504,0.069094785,0.4793838,1.1691836,-0.050616242,0.0729415,0.4511488,-0.2350824,-0.4922672,0.33431014,-0.07887065,0.095548496,-0.051752858,-0.21471985,-0.4425338,0.25692263,0.22279228,0.12364856,0.1236366,-0.5539558,-0.35436586,0.3868268,-0.2917345,-0.27837053,-0.36576784,0.110908076,0.65665525,-0.24719205,-0.25429478,0.12090502,0.17563917,-0.2654583,-0.68356925,-0.021326678,-0.34774104,0.26443812,0.13924605,-0.24023199,-0.16320759,0.11097854,-0.33261403,0.10256028,0.03548588,-0.36794898,0.0930892,-0.35244998,-0.08037112,0.9590791,-0.16824888,0.08531718,-0.53112835,-0.4847974,-0.94279397,-0.34511662,0.6699345,0.046276197,0.061666396,-0.55461484,-0.01221648,-0.006239272,-0.13464828,-0.005224368,-0.26058236,0.39591354,0.2394482,0.289107,-0.07658042,-0.6387269,0.059828598,0.033797882,-0.31471857,-0.497725,0.50791824,0.19172047,0.73469734,0.015702864,-0.027812727,0.33264098,-0.533815,-0.041611113,-0.21672058,-0.13758765,-0.62754923,0.084756546,775 +285,0.43594095,-0.074578166,-0.7128564,-0.11267841,-0.18953282,0.17307447,-0.099803455,0.47777957,0.12142553,-0.347134,-0.11997768,-0.10344785,-0.063890256,0.33706596,-0.19168001,-0.46167114,-0.0059306384,0.30920023,-0.6353115,0.43426946,-0.41555828,0.33404523,-0.10302393,0.3542601,0.14864054,0.22227234,0.09215511,0.068813354,-0.10081734,-0.203252,0.17613411,0.20458402,-0.6019873,0.14594378,-0.1311945,-0.49099085,-0.25403038,-0.1364142,-0.43644756,-0.76566666,0.37611353,-0.89572084,0.59088284,-0.15073042,-0.3304493,0.120796315,0.21183695,0.32492855,-0.26385608,0.02523377,0.19698851,-0.18502222,-0.26096952,-0.32862297,-0.16945969,-0.3619509,-0.6754773,-0.09751863,-0.56103766,0.03587069,-0.27927452,0.09486173,-0.2310812,0.13720801,-0.2855352,0.42086282,-0.5457325,0.1846556,0.0983894,-0.019163664,0.29116994,-0.49237147,-0.067951314,-0.11189985,0.017747637,-0.22866812,-0.22716722,0.42470178,0.15298922,0.35338166,-0.08643843,-0.12359618,-0.29456007,-0.15553513,0.16015312,0.37129697,-0.023037655,-0.2774287,-0.16336128,-0.21143016,0.17196526,0.17658624,0.22128788,-0.29800704,-0.12177055,-0.001590391,-0.19726308,0.3494607,0.49409908,-0.20856148,-0.08076952,0.3885208,0.6250471,0.00026405652,-0.19257717,0.13559012,-0.06282165,-0.5011442,-0.26153407,-0.042589054,-0.22741048,0.47637615,-0.19220941,0.11969712,0.6589951,-0.30801666,-0.14455816,0.14104462,0.21251544,-0.09488301,-0.24851425,-0.43106976,0.272631,-0.5138568,0.041967522,-0.14986442,0.6227085,-0.041241836,-0.693566,0.36326668,-0.5426596,0.101571396,-0.12909606,0.53122693,0.54898494,0.62754697,0.20228651,0.75121564,-0.51835865,0.059080455,-0.036107443,-0.43040282,0.24716881,-0.18982,-0.22017698,-0.49707413,-0.055648718,0.03359851,-0.23971625,0.13312414,0.73960495,-0.4458181,-0.08573521,-0.067196295,0.6485382,-0.43586478,-0.06126925,0.75663084,1.1394743,1.1000972,0.14973396,1.3459498,0.31177536,-0.24661776,-0.09115704,-0.1283672,-0.9367937,0.30186722,0.2932259,-0.6864525,0.48567474,0.04354002,0.041244738,0.41622135,-0.52035356,0.012421361,-0.008793608,0.3525585,-0.059564956,-0.23071283,-0.32368526,-0.3660569,0.17049707,0.13882037,0.080142856,0.4192878,-0.31466204,0.3896586,0.3007515,1.7580162,-0.023907132,0.072508864,0.15757324,0.37058437,0.21739964,-0.33146223,-0.12557703,0.19900027,0.32481986,0.10854072,-0.61724687,0.11376707,-0.19092107,-0.6535026,-0.25338426,-0.31501636,-0.054091293,-0.32486618,-0.46814635,-0.20796388,-0.11412002,-0.30779418,0.38325202,-2.339621,-0.06306133,0.025308365,0.42388502,-0.11431328,-0.349384,-0.14427452,-0.41512343,0.3971449,0.3073396,0.36962226,-0.61252284,0.49597386,0.51007885,-0.3932921,-0.0051562586,-0.58262044,-0.085613325,-0.073896594,0.17310353,-0.041006718,-0.04345804,0.0685809,0.20753193,0.39637476,-0.26437792,0.22317433,0.4264719,0.27965623,-0.06521077,0.37918118,0.07082077,0.54197097,-0.3411983,-0.22591229,0.39216024,-0.48831144,0.16336985,-0.07362223,0.08630168,0.43908426,-0.5989937,-0.90174395,-0.5750822,-0.080952935,1.1612602,-0.3503946,-0.49152204,0.2731569,-0.2701774,-0.43425778,-0.047949534,0.40609586,-0.32836914,-0.08096862,-0.92183304,0.073598176,-0.14583506,0.36590278,-0.13985437,0.0679672,-0.3927068,0.64001375,-0.14803703,0.7937568,0.35052955,0.07263541,-0.5140174,-0.4992812,0.28445628,1.0588565,0.46046555,0.16195379,-0.296063,-0.15184124,-0.35727978,-0.16825882,0.15677668,0.43711016,0.7590359,-0.049005207,0.27366388,0.2970886,-0.15335727,-0.05974476,-0.21760778,-0.23317903,-0.010079929,0.10516075,0.52440727,0.71272343,-0.10497648,0.31836447,-0.16467953,0.42335737,-0.28852528,-0.54611564,0.39503953,1.0176246,-0.18178461,-0.4570116,0.7237432,0.50634444,-0.3466818,0.5731744,-0.5729989,-0.42836073,0.37987816,-0.20589565,-0.23761334,0.23933381,-0.38109222,0.1966143,-0.895689,0.30233967,-0.21502842,-0.61853224,-0.54627585,-0.31116602,-2.7773485,0.15084067,-0.11519899,-0.08814984,-0.051920794,-0.15024342,0.26879942,-0.5697394,-0.7808083,-0.03642149,0.07289169,0.74117523,-0.052477922,0.061519198,-0.016938629,-0.28884166,-0.26476923,0.22107908,0.19831158,0.3033441,0.005187885,-0.56242555,-0.24309969,-0.2580513,-0.4923751,-0.08512191,-0.58590615,-0.41968098,-0.10391167,-0.542969,-0.42367133,0.6456216,-0.2986177,0.030367848,-0.14151461,-0.17227383,0.07839101,0.28446242,0.12155012,0.073559664,0.1739089,-0.050942548,0.046899386,-0.2590236,0.20189857,-0.07414281,0.4243864,0.4055415,-0.34035996,0.11408375,0.514363,0.6573252,-0.11973241,0.88312924,0.39818656,-0.19250272,0.23015572,-0.1394496,-0.19596688,-0.7233234,-0.26950833,-0.088758424,-0.49514496,-0.39001182,-0.053033907,-0.41327906,-0.86477745,0.5207984,0.018873373,0.1445884,-0.040476702,0.3012594,0.32854193,0.010894307,-0.16760752,-0.16703197,-0.26919758,-0.40729147,-0.38618863,-0.8055843,-0.3976298,0.0743232,1.4350226,-0.09892178,-0.069298886,0.12687829,-0.11898362,0.09363358,0.24530151,-0.02686197,0.18396382,0.38126945,-0.09242539,-0.5365462,0.3478674,-0.1764595,-0.18137462,-0.5439775,0.123711236,0.585186,-0.59767646,0.4886357,0.3354882,0.14997765,-0.12211398,-0.6096489,-0.024885314,-0.022132972,-0.23722474,0.6768739,0.47312418,-0.82691216,0.46438402,0.28292397,-0.2735913,-0.6894463,0.56901157,-0.10572492,-0.06589977,-0.1488629,0.4345049,-0.17357369,0.037677016,-0.29154772,0.2941485,-0.50170654,0.20486178,0.35391796,-0.06536631,0.21897008,-0.2291834,-0.080350645,-0.64291763,0.15147434,-0.45789063,-0.21778421,0.016470402,-0.16618,0.0032726128,0.3320783,-0.008397595,0.45611864,-0.2628503,0.08968136,-0.1623136,-0.35396358,0.45144087,0.47456428,0.50392824,-0.3754691,0.60469764,0.0013684878,-0.13092493,-0.30037746,0.0859964,0.607981,0.023740428,0.48377952,0.18832748,-0.022254093,0.36803788,0.68566793,0.3187384,0.37792367,0.19382875,-0.17150177,0.032866932,0.077372104,0.3392512,-0.009429199,-0.36616024,0.10261463,-0.2880429,0.23476245,0.5673755,0.12601152,0.5278094,-0.20594975,-0.24100742,0.07798068,0.20308056,-0.30321294,-1.4180112,0.5486593,0.23051117,0.71926945,0.61028,0.042129453,0.04721477,0.36106065,-0.37458864,0.13334753,0.3629621,0.09742072,-0.4675497,0.55994445,-0.80661494,0.49163166,-0.030978967,-0.0664779,0.020193629,-0.010644643,0.5122122,0.869019,0.11908867,0.1923984,0.058509894,-0.31466225,0.32205138,-0.28028068,-0.057986222,-0.57578045,-0.26959726,0.83338755,0.32529646,0.43321133,-0.21663101,-0.027319558,0.14287992,-0.13857628,0.24675478,0.088580765,0.17514524,-0.19197765,-0.44227117,-0.38342765,0.4705222,-0.04491019,0.08035377,0.1954309,-0.31608912,0.10788863,-0.06365387,0.049857866,-0.005248038,-0.687815,-0.032508858,-0.25428388,-0.26989564,0.38048384,-0.2869075,0.09188767,0.25963703,0.13152845,-0.64591175,0.12622313,0.08946004,0.59572697,0.031630352,-0.1554768,-0.03696317,0.39719403,0.24094184,-0.19052666,0.028903008,-0.30216026,0.08797498,-0.6932685,0.4455243,-0.096047334,-0.51946896,0.25195843,-0.08271268,-0.0042136996,0.46794993,-0.20483162,-0.31523076,-0.027232965,-0.056964457,-0.04772608,-0.43302536,-0.33044896,0.27715877,0.0023620685,-0.0068445546,-0.12661369,0.14356874,0.13378868,0.41328195,-0.10255461,0.29420367,0.39655975,0.039596718,-0.485982,-0.060717873,0.069186315,0.6235218,-0.09672778,0.03141965,-0.4456902,-0.4670331,-0.21373813,0.34848803,-0.2405356,0.37439355,0.26454094,-0.30190125,0.8661709,0.10654531,1.0860463,0.111969374,-0.37082538,0.10075889,0.61669225,0.12784229,-0.1246712,-0.24855633,1.0417217,0.6250092,-0.3342611,-0.24594508,-0.37072363,-0.049997743,0.12552539,-0.23844749,-0.4608106,-0.089765936,-0.8885592,-0.12570247,0.1663489,0.29286125,0.10184539,-0.09052838,0.16029769,0.3963505,0.028019989,0.10349843,-0.43998623,0.10448097,0.40487668,0.16632725,0.03151412,0.12206626,-0.5100687,0.3008094,-0.59943396,0.015594957,-0.08781183,0.17606702,-0.046698775,-0.4972703,0.22944765,0.12901682,0.16216472,-0.1719257,-0.211227,-0.13708034,0.54197574,0.037120376,0.21974562,0.81789243,-0.3394371,0.252486,0.039619677,0.40648735,1.0436316,-0.12185017,0.014193607,0.28255442,-0.45717412,-0.81528026,0.37398928,-0.30319685,0.27293307,-0.08111915,-0.39794558,-0.57972604,0.31151035,-0.023476323,-0.10083364,0.20746382,-0.5767359,-0.07926161,0.25879416,-0.28729963,-0.21509758,-0.4507588,-0.04837947,0.5270723,-0.25805557,-0.2456543,0.2346353,0.29956654,-0.3017252,-0.47655186,-0.023235938,-0.36028466,0.39875028,-0.06826743,-0.39846408,0.021640055,0.06953153,-0.35502657,0.35379097,0.3536874,-0.24910556,0.10894863,-0.5048784,0.067971565,0.73616815,-0.24180561,0.03230935,-0.44146723,-0.56335205,-1.0462126,-0.13986248,0.37601745,0.066791825,-0.0081153475,-0.742572,-0.029933952,-0.21365868,-0.059792962,-0.090205915,-0.32868367,0.5234348,0.13942601,0.18000084,0.024372686,-0.9511988,0.07156529,0.19289519,-0.27158442,-0.422886,0.69195247,-0.24775502,0.74988765,0.1829106,0.15945436,0.30240658,-0.75410634,0.2951031,-0.105513334,-0.028376158,-0.5418987,0.027230136,788 +286,0.44202513,-0.04855464,-0.3188884,-0.076084696,-0.29362062,-0.0040655453,-0.06195363,0.64058125,0.30707866,-0.42682016,-0.14270087,-0.28232372,0.0012177308,0.26553425,-0.18567017,-0.49279985,-0.064370975,0.20318063,-0.42669767,0.6211332,-0.38760787,0.21828797,-0.20875931,0.5798873,0.20273337,0.15310618,-0.22207779,-0.016814897,-0.0889786,-0.22095877,0.121303655,0.45597392,-0.6285252,0.3085928,-0.34992725,-0.31232056,-0.08631379,-0.5127965,-0.38887635,-0.73903406,0.13734558,-0.6326126,0.5052004,0.028237538,-0.2753135,0.28648463,0.12697484,0.22785707,-0.07459848,-0.09939145,0.08903249,-0.15521964,-0.0661299,-0.07173804,-0.24535331,-0.43538395,-0.6288598,0.09835617,-0.35027364,-0.16522358,-0.39047325,0.19046834,-0.25022224,-0.16574197,-0.017889122,0.74760175,-0.35567003,0.41170794,0.03503104,-0.06372378,0.16306202,-0.5551161,-0.30792338,-0.11141108,0.13416943,-0.11543688,-0.2307628,0.29181522,0.24793117,0.46333253,-0.10741079,-0.12599894,-0.287842,-0.08727605,0.028834868,0.4466662,-0.17808905,-0.49434885,-0.13638887,-0.19039334,-0.0074569704,0.21567902,0.10248581,-0.34462187,-0.12742826,-0.06963326,-0.15898919,0.4479171,0.46828747,-0.21507452,-0.33882475,0.2922019,0.4258124,0.26955092,-0.15820523,-0.06451262,0.05480361,-0.54265714,-0.18984991,-0.08646755,-0.1692477,0.39572996,-0.1777926,0.20795898,0.5414987,-0.119992934,-0.105506554,0.15125567,0.19669971,0.07486102,-0.5091255,-0.25549296,0.31077382,-0.45352542,0.189255,-0.1822594,0.7915831,-0.044046696,-0.6870392,0.26022184,-0.7276939,0.020778123,-0.02046468,0.4370804,0.8707737,0.3600358,0.35763592,0.5027586,-0.26689968,-0.041530084,-0.06646042,-0.18012191,0.0041115363,-0.24197994,0.039427646,-0.494425,-0.08368492,-0.017374119,-0.018062932,0.1669323,0.48455667,-0.57384276,-0.26350984,0.19107418,0.8784823,-0.1589529,-0.17840013,0.8340595,1.0492456,0.9183852,0.117132775,1.1566758,0.10037205,-0.06490619,0.32271093,-0.21348897,-0.70975524,0.3049963,0.19036739,-0.28425485,0.06647522,0.08788295,-0.07035182,0.44642723,-0.41818857,-0.0598252,-0.080588564,0.2822197,0.19552739,-0.12174176,-0.41950843,-0.39908263,-0.05918156,-0.0071133096,0.07470495,0.3276623,-0.24454096,0.22413112,0.05334955,1.390941,0.010754275,0.1745256,0.13460378,0.4128796,0.20029224,-0.34372386,-0.057063762,0.3791944,0.20373078,0.16095664,-0.5222776,0.22220586,-0.23400894,-0.49367848,-0.20032111,-0.34129837,-0.24378566,0.0116207795,-0.5491379,-0.10956588,-0.31031293,-0.32094547,0.49615824,-2.7640243,-0.0723349,-0.012728228,0.36972407,-0.17719091,-0.3804092,-0.14151724,-0.40206692,0.4806169,0.23356189,0.41196933,-0.4806235,0.36583862,0.5639379,-0.5593909,-0.17017554,-0.5360328,-0.10415799,0.06906317,0.20296524,-0.09083545,0.025033744,-0.1103394,0.05830074,0.51986146,0.007520139,0.1849473,0.30646417,0.31710783,-0.14697677,0.3378491,-0.14017242,0.3926836,-0.2704939,-0.324726,0.31905377,-0.47858995,0.22132091,-0.16946648,0.09490518,0.6162653,-0.35790983,-0.86375314,-0.59238106,-0.3299574,0.99721587,-0.12695384,-0.37097284,0.36376476,-0.54890645,-0.30015743,-0.036822062,0.64359653,-0.109108694,0.0018944263,-0.7965952,0.07782738,-0.13730718,0.10565543,-0.047973342,0.05823928,-0.3500014,0.64723945,-0.023763895,0.41798356,0.25907594,0.21281596,-0.4367906,-0.4804069,0.03735526,0.81127155,0.3623048,0.2633341,-0.3118156,-0.19930544,-0.43704027,0.036290266,0.092355296,0.5728695,0.45451102,-0.055544075,0.25178775,0.27522564,-0.08344574,0.025861528,-0.16159607,-0.17863843,-0.13586332,0.086525455,0.53782594,0.64647985,-0.198805,0.45480198,-0.03172593,0.17083389,-0.38932067,-0.3308873,0.35210186,1.0531908,-0.14690323,-0.23129031,0.74474263,0.54984754,-0.23221493,0.3850786,-0.43326944,-0.2829693,0.49200153,-0.1355318,-0.57955617,0.07327265,-0.245645,0.014243478,-0.7426954,0.25120357,-0.26579708,-0.6010431,-0.67847186,-0.11791901,-2.507951,0.22608614,-0.13831486,-0.15338445,-0.28593028,-0.16857529,0.21625979,-0.49262416,-0.5191727,0.09248825,0.07234683,0.77570236,-0.21046476,0.09980129,-0.196719,-0.46539605,-0.31751397,0.14861624,0.20097406,0.39734623,-0.07194018,-0.41010943,-0.08734528,-0.04468045,-0.3512033,0.09535766,-0.5767469,-0.35057056,-0.12331252,-0.55195045,-0.24823374,0.60651463,-0.5342262,0.04496838,-0.27365237,-0.08208837,-0.024312908,0.29286358,0.18646035,0.22969188,0.16885649,-0.08563845,-0.2251324,-0.3010228,0.226723,0.016419789,0.24466142,0.49249744,-0.13549991,0.1916489,0.42935085,0.6061841,-0.18281461,1.1346437,0.40628958,0.0136231305,0.33471653,-0.20546691,-0.24960412,-0.5547141,-0.16793089,-0.11745334,-0.35201302,-0.44772428,-0.009719708,-0.29667717,-0.72086066,0.48209172,0.021804065,0.17372312,-0.02971226,0.25098416,0.431434,-0.28732547,-0.18595098,-0.15195054,-0.08518279,-0.45034128,-0.42510337,-0.47865057,-0.44252452,0.05661068,1.0157057,-0.11951179,0.047344446,0.14958698,-0.12742257,-0.0782208,0.17707552,-0.08027231,0.048350323,0.47553954,0.091289885,-0.5527201,0.4629764,-0.06236232,-0.24445026,-0.6040491,0.21651255,0.60805017,-0.5646951,0.7289561,0.27233347,0.1129978,-0.32115203,-0.5817389,-0.18092728,-0.05313667,-0.25597948,0.41741735,0.38047135,-1.0154152,0.36500874,0.26234895,-0.120830975,-0.8346637,0.6495173,-0.12988333,-0.2661899,-0.14527646,0.39472592,0.30834863,0.1601916,0.025871418,0.3791787,-0.40290606,0.27119547,0.07836318,-0.0985395,0.2606913,-0.31305254,-0.020798227,-0.7403567,0.07859927,-0.39837134,-0.4631254,0.21973915,0.07886904,-0.0516322,0.4717851,0.047298886,0.2102311,-0.13416074,0.1540986,-0.15404136,-0.18656348,0.10624614,0.44026324,0.6682035,-0.3206426,0.5631675,0.011285246,0.05387789,0.08372586,0.23800702,0.3927532,-0.118320815,0.49328622,-0.089637116,-0.25359744,0.12314231,0.8269623,0.073264666,0.45732123,0.0117743965,-0.11239548,0.33826342,-0.027809108,0.2473204,-0.15046462,-0.58118397,-0.033007145,-0.3870828,0.17487277,0.4791558,0.019946678,0.2520611,-0.057956997,-0.27562922,0.121194586,0.32703057,0.042397335,-1.2816863,0.25916117,0.21248539,0.982376,0.6111743,0.028433912,0.029259134,0.65303224,-0.05357295,0.11367965,0.49345696,0.10969602,-0.34371248,0.6712398,-0.78082585,0.42424586,-0.18067789,-0.056263827,0.06342063,-0.07669677,0.5454621,0.6202213,-0.26219082,-0.042121604,0.09352977,-0.3578942,0.18250345,-0.30612653,0.36466232,-0.57812333,-0.1690068,0.64557064,0.63001406,0.20201987,-0.4280468,0.021214155,0.18468666,-0.19296926,-0.113873266,0.117005914,-0.040403042,0.031612374,-0.6152233,-0.070503905,0.55538994,-0.14704068,0.1642521,0.23306085,-0.16781443,0.22908308,-0.1851912,-0.012551299,0.016730586,-0.7425746,-0.004389854,-0.33675548,-0.477716,0.5915299,-0.27037928,0.16060719,0.17273808,0.16040583,-0.41154984,0.45073614,0.15661551,0.72173274,0.003735594,0.017075209,-0.18409231,0.2331036,0.15189774,-0.10873033,-0.32459018,-0.25714904,0.06186111,-0.5682285,0.3123327,-0.08596174,-0.23514186,0.06797441,0.0508846,0.15659949,0.5539894,0.14187111,-0.084933564,-0.097811304,-0.26375973,-0.2342911,-0.04969977,0.043090962,0.43098822,0.10322212,-0.08440176,-0.14869766,-0.16131619,-0.16703944,0.18665595,-0.03926945,0.35989225,0.32113543,0.098816715,-0.12984295,-0.11721573,0.2097697,0.45591784,-0.067537,-0.10765056,-0.035720687,-0.15994868,-0.38351542,0.24753386,-0.10314587,0.3359417,0.12987134,-0.31715336,0.78853834,0.02497797,0.9986258,0.02572167,-0.37265903,0.19356567,0.34429875,-0.070883065,-0.13432191,-0.40520397,0.8320811,0.4068363,-0.07567827,-0.11496242,-0.26663363,0.097649194,0.2374527,-0.19697888,-0.22012344,-0.100017056,-0.65839446,-0.050209817,0.15121086,0.3039047,0.1362811,-0.13748519,-0.15898173,0.3818336,0.02849091,0.33770636,-0.46149758,-0.008887663,0.23117638,0.46235448,0.012570222,0.2642706,-0.3427439,0.357389,-0.618552,0.12199791,-0.23944433,0.17404312,-0.4545439,-0.19530617,0.17911582,0.016926428,0.4512584,-0.16829965,-0.21601738,-0.45156962,0.41340753,0.13532218,0.050922584,0.4757473,-0.2724104,0.042090006,0.029497236,0.47273904,0.96219116,-0.27379686,-0.16376556,0.22471686,-0.28787142,-0.5804961,0.30706823,-0.528221,0.23916276,0.031075776,-0.12861536,-0.31175995,0.135348,0.13889398,0.11813274,-0.05020185,-0.6259645,-0.0123847285,0.3364102,-0.16156001,-0.13630834,-0.07451092,-0.027087089,0.60357857,-0.12699823,-0.26338303,-0.00015590191,0.2966427,-0.13752957,-0.5137193,0.059258748,-0.50425035,0.22817916,-0.102282636,-0.3950676,-0.22221106,0.03852091,-0.5306456,0.065993644,0.0891478,-0.28684238,-0.045765232,-0.25143582,0.03695599,0.982202,-0.1479768,0.28458825,-0.3144433,-0.5772661,-0.7320319,-0.2746011,0.24349502,0.22003323,0.022901217,-0.47343877,0.05988311,-0.17529611,-0.26902017,-0.050484877,-0.38059673,0.29572734,0.2987547,0.3597088,-0.04811332,-0.87763304,0.025413342,0.09974122,-0.19089967,-0.63144284,0.38341042,-0.050495766,0.85589474,-0.014622187,0.13575338,0.1153817,-0.45384198,0.021131793,-0.10122724,-0.10032703,-0.5697118,0.08109105,789 +287,0.35128206,-0.35259262,-0.30392164,-0.10132961,-0.21642487,0.028410358,-0.2935532,0.3140229,0.19212379,-0.4004237,-0.21420279,-0.24627332,-0.087442845,0.37384588,-0.19479132,-0.42819685,0.019444285,0.04539102,-0.59049004,0.7161303,-0.32949582,0.1800862,0.12182975,0.37550774,0.42336676,0.12854871,0.20845374,-0.07409059,-0.09774239,-0.2490818,-0.085743636,0.05543193,-0.4766248,0.14934745,-0.20882562,-0.35649788,-0.07960692,-0.4519491,-0.31113622,-0.90354645,0.37220833,-0.82502234,0.4156518,-0.07782791,-0.29786718,0.3642606,0.15767305,0.41413757,-0.10047618,-0.06892372,0.16744089,-0.1357006,-0.017992616,0.075297005,0.04079963,-0.25228608,-0.59407395,0.0765799,-0.4076509,-0.18002471,-0.25975654,0.17142442,-0.40047595,-0.00085221924,0.018406475,0.5833256,-0.39093438,-0.07948282,0.097434774,-0.028200952,0.434418,-0.6366449,-0.2726925,-0.098459825,0.28205392,-0.121297516,-0.16874322,0.18118066,0.34915817,0.3969073,-0.027606212,-0.12190895,-0.2557842,-0.09825303,0.25295454,0.49379054,0.032691393,-0.5165228,-0.08507983,-0.18257971,0.31467286,0.058409214,0.2017324,-0.33136162,-0.119621545,0.070589624,-0.2555342,0.3335477,0.46667525,-0.22450629,-0.18614179,0.37050077,0.52537155,0.33201954,-0.16390572,0.11326961,-0.010836997,-0.44143716,-0.055402327,0.20548905,-0.2552804,0.6180912,-0.27205437,0.31533167,0.5466881,-0.06188034,0.15720142,0.012663971,-0.05443012,-0.22553632,-0.16040818,-0.25189006,0.15081838,-0.4655084,0.17993411,-0.3029531,0.7765693,0.12502596,-0.6874561,0.30841503,-0.5034186,0.2107077,-0.055004086,0.5558016,0.73434806,0.24848244,0.36785635,0.66479623,-0.2810306,0.07285475,-0.07454537,-0.29604387,-0.028014509,-0.24026486,-0.019140037,-0.48947042,-0.04316378,0.06358167,-0.031551257,-0.060567677,0.37864476,-0.41282168,-0.03882749,0.15563494,0.7278492,-0.17264089,-0.0056637325,0.93424803,1.0142769,1.0324944,0.2327535,1.0870864,0.13920663,-0.17658718,0.15932664,-0.22136301,-0.70673794,0.32236564,0.28707185,0.3617015,0.15761106,0.06815561,-0.119864464,0.4674025,-0.5219481,0.1562252,-0.20016654,0.032362446,0.18059094,-0.08400955,-0.32746518,-0.20978314,0.021200204,-0.031064553,0.08886998,0.17937501,-0.19960798,0.41705927,0.09177467,1.3873342,-0.1080053,-0.08608093,0.07278811,0.489733,0.06892673,-0.25728923,0.015453053,0.16737908,0.48847646,-0.0077149393,-0.6225891,0.26609126,-0.106094345,-0.5140203,-0.14098135,-0.23129721,-0.057360515,-0.0042974055,-0.44047913,-0.08994781,-0.1603114,-0.40306523,0.38536522,-2.761569,-0.19944303,-0.19794306,0.2158875,-0.23293108,-0.14195783,-0.06374032,-0.44118387,0.46828553,0.37865883,0.4343668,-0.7678472,0.3182958,0.47966784,-0.55644125,-0.03868488,-0.7334551,-0.22608744,0.07136362,0.5107374,0.057550065,-0.027873604,0.06350438,0.28056005,0.50710183,0.061008446,0.14337297,0.28239077,0.26801127,-0.008684399,0.4109722,0.06749236,0.3970796,-0.1405294,-0.09478856,0.41490793,-0.34887388,0.29537338,-0.09859465,0.23671053,0.46405533,-0.38232243,-0.81440765,-0.70201045,-0.34602642,1.2641796,-0.17696385,-0.5808385,0.2843745,-0.24607745,-0.1548165,-0.09970277,0.55057085,-0.2152778,-0.041876968,-0.9137201,-0.08649881,-0.12562597,0.21585886,-0.030691423,-0.088435106,-0.3681379,0.7433549,-0.03933387,0.4628237,0.34382707,0.31642583,-0.34168562,-0.5365696,0.12072647,0.88951796,0.4583822,0.098592825,-0.33239153,-0.21179147,-0.3916996,-0.21097402,0.092817314,0.42619947,0.73531526,-0.008150447,0.24071772,0.25670427,-0.0053935605,-0.043720208,-0.121517144,-0.19312544,-0.15642487,0.0144699095,0.5867189,0.5949821,-0.117933035,0.40772387,-0.15677975,0.1687424,-0.13536571,-0.40472183,0.65373385,1.1065958,-0.210874,-0.2197049,0.5244526,0.36942944,-0.2641142,0.44210097,-0.5768743,-0.1911168,0.41170552,-0.073138684,-0.5253514,0.28838545,-0.36076683,0.25020573,-0.899771,0.31020433,-0.3386069,-0.34596673,-0.6371351,-0.043428563,-3.171425,0.0892776,-0.19664618,-0.4399777,-0.3019576,-0.29729068,0.28309524,-0.46559468,-0.57574636,0.14539878,0.13315052,0.6503266,-0.035504103,0.08090326,-0.2855385,-0.07750866,-0.34493002,0.08680454,-0.027320711,0.41217864,-0.15897699,-0.41322958,-0.076072134,-0.23985846,-0.43542254,-0.043204315,-0.38817674,-0.5087848,-0.14461944,-0.32647964,-0.3546363,0.5163266,-0.22092745,0.033790335,-0.34149742,-0.11697957,-0.1538923,0.55829865,0.22144733,0.07868929,-0.03305561,-0.0760012,-0.012364873,-0.23656088,0.08094723,0.06809939,0.08813857,0.42397258,-0.13641429,0.40114415,0.4085409,0.5625301,-0.20848827,0.8294089,0.5666079,-0.027724396,0.20263754,-0.21473083,-0.2644809,-0.46563762,-0.24950129,-0.0112530785,-0.35631177,-0.5268618,-0.034294147,-0.26394367,-0.7879563,0.41794366,-0.015944896,0.20724894,0.050195765,0.1029524,0.37958708,-0.075424574,0.0055395365,-0.0001818498,-0.057465434,-0.6318239,-0.3359967,-0.7406558,-0.55259055,0.0095628975,0.7577921,-0.16883428,-0.09382392,0.14355221,-0.32447782,0.07941284,0.17853202,0.01813991,0.042080607,0.30047673,0.015540898,-0.7661136,0.5561911,-0.015622632,-0.16579133,-0.4512763,0.1278711,0.4959067,-0.42663854,0.40984944,0.33966428,0.015089726,-0.28532636,-0.5051588,-0.19031283,-0.109950304,-0.22971973,0.42998123,0.20924084,-0.6311773,0.46944943,0.27825895,-0.10750394,-0.7476912,0.47000244,0.040809676,-0.16050074,0.0022384485,0.34324515,0.07506725,0.05776692,-0.2005673,0.25575623,-0.41259113,0.20854998,0.24517685,-0.019500662,0.24803303,-0.24193183,-0.19237547,-0.536093,0.055423684,-0.5192446,-0.19196859,0.13146576,0.08074595,0.13700292,0.16074055,0.06018373,0.36213627,-0.20316286,0.18442051,-0.009238513,-0.14100622,0.16692461,0.5418661,0.40591103,-0.38630307,0.62150264,0.061456773,-0.2264576,-0.009105782,-0.007910581,0.37410805,0.21971372,0.27385706,-0.016667146,-0.1668197,0.19908278,0.6879269,0.2537778,0.5053148,0.06419368,-0.16467346,0.4551619,0.106042765,0.415193,-0.16141647,-0.52091604,-0.103398435,-0.26653954,0.09190996,0.54302955,0.07005574,0.29630885,-0.027356565,-0.24614884,0.0054249484,0.022282563,-0.1275918,-1.3769149,0.3851004,0.28881648,0.8369662,0.6369241,-0.22408663,0.22792435,0.6401506,-0.21280275,0.12023282,0.2838785,0.15188381,-0.6282731,0.49327004,-0.8074048,0.32810986,-0.0448848,0.029753506,-0.005288494,0.03627532,0.36807507,0.5631169,-0.22610556,0.051134888,-0.06198067,-0.30780157,0.19225867,-0.39890158,0.08042465,-0.4645527,-0.26974156,0.5836881,0.5102366,0.26051968,-0.23877957,0.021702262,0.09859329,-0.07388503,0.13783345,-0.003694431,0.07476855,-0.14883514,-0.63664263,-0.19093516,0.49812835,-0.23909579,0.13460293,-0.021606838,-0.27483132,0.041608762,-0.13416515,-0.12767698,-0.05660402,-0.79504627,-0.059666764,-0.2361051,-0.3898938,0.3680607,-0.30848485,0.27107805,0.28305155,0.0031597754,-0.27343616,0.10905086,0.08517061,0.6090144,0.010251713,-0.08538588,-0.35167205,-0.0025664528,0.29683372,-0.15215617,-0.1886438,-0.13803454,-0.046325993,-0.5279494,0.5207021,-0.07965045,-0.2406324,0.24373375,-0.13983777,-0.030257886,0.57931775,-0.20135394,-0.15936807,0.022550609,-0.15196756,-0.1305552,-0.18000862,-0.12716044,0.36367854,0.2436327,-0.043211997,-0.08833534,-0.005210964,-0.0017219861,0.45925054,0.010643598,0.45706692,0.44056505,-0.04826211,-0.5562385,-0.065856665,0.21105734,0.37626177,0.10557257,-0.20870902,-0.25529203,-0.4565726,-0.3278932,0.25554457,-0.13739343,0.29652387,0.013082592,-0.28370982,0.6875423,0.16785179,1.011442,0.0371497,-0.49026278,0.16169351,0.4378437,-0.07681978,-0.06757429,-0.34154448,0.6627875,0.39910182,-0.08444183,-0.039325114,-0.33644047,0.010055805,0.2709888,-0.10847092,0.024650939,-0.037387643,-0.6482965,-0.24310054,0.15639868,0.23102781,-0.029921258,-0.17643413,0.0016691685,0.21410204,0.0077655236,0.42573765,-0.5248938,-0.0060706614,0.3514859,0.05979762,-0.03502233,0.050416075,-0.4231061,0.3448824,-0.5660192,-0.013447412,-0.18014218,0.1748691,-0.02306794,-0.20003088,0.2320834,0.0535167,0.39391166,-0.3578924,-0.35639107,-0.33293456,0.5298932,0.2001802,0.17154616,0.49737498,-0.25764066,0.27270824,0.039148543,0.5234944,1.08163,-0.29551503,0.02484407,0.16174269,-0.3708455,-0.5287719,0.36585337,-0.3042882,0.2955218,-0.026240153,-0.26848742,-0.67918515,0.24911973,0.3294263,0.16416268,0.009919643,-0.6003535,-0.39446634,0.31997263,-0.3376523,-0.268462,-0.39382136,-0.08568074,0.46830457,-0.22804162,-0.2998828,0.0034891048,0.2591986,-0.1636495,-0.4374656,-0.0013043284,-0.30769876,0.28955948,0.06471618,-0.32423046,-0.18708111,0.106349364,-0.48882666,0.112614915,0.06562255,-0.26869604,0.017894184,-0.27287674,-0.004286136,0.92685664,-0.28324836,0.122630954,-0.55230165,-0.5160314,-0.677756,-0.42629465,0.5037497,0.17276584,0.045712035,-0.595635,0.019309647,-0.16338307,0.08162999,0.022955727,-0.43911526,0.5007801,0.18952905,0.31946337,-0.048279054,-0.5880509,0.08577394,0.033776946,0.013879089,-0.4442365,0.47944835,0.18141378,0.7150395,0.1229305,0.16960558,0.064360335,-0.3820441,0.054882843,-0.106791504,-0.28236225,-0.61605376,0.17659582,797 +288,0.22927949,-0.052323453,-0.5379839,-0.031738855,-0.3023486,0.20630829,-0.16224848,0.527103,0.26516363,-0.39215487,-0.123413436,0.07847997,-0.001525708,0.30901212,-0.24846938,-0.5157761,0.00912948,0.107450314,-0.5006758,0.6201536,-0.19189243,0.35195458,-0.22503762,0.39061075,0.09676406,0.28410393,-0.20009808,-0.07340859,-0.108619206,-0.1450744,0.04739584,0.46850535,-0.3389391,0.2400344,-0.1980631,-0.23376203,-0.014565659,-0.26016223,-0.2676781,-0.6125861,0.17166437,-0.62560546,0.5777622,-0.11298561,-0.2139813,0.32846263,0.1623474,0.17304207,-0.005444638,-0.05267114,0.015725097,-0.07968,-0.16385593,-0.17965667,-0.33872762,-0.48209584,-0.39982942,0.0950785,-0.6633625,-0.101542465,-0.28168455,0.114409335,-0.2905541,-0.2690677,-0.15212436,0.5884939,-0.39628956,0.10300016,0.101527475,-0.09989519,0.17820075,-0.7112503,-0.15608858,0.1185696,0.20202011,-0.14602715,-0.14059561,0.15315655,0.18310843,0.26166305,-0.054515895,-0.085351184,-0.33291814,-0.15724207,0.23125719,0.45229504,-0.23992032,-0.40161234,-0.01518953,0.12260889,0.30115092,0.118350476,0.035129085,-0.17748071,-0.1252856,-0.090308025,-0.18556222,0.4193929,0.41745198,-0.15047589,-0.09635404,0.3870042,0.35230085,0.4108281,-0.30561626,-0.025622992,-0.066662855,-0.4136904,-0.09987744,-0.05981741,-0.065741554,0.3142105,-0.027492631,0.3777998,0.42422274,-0.09597489,0.09025577,0.18615296,0.16726826,0.13047498,-0.2865674,-0.17135672,0.049259353,-0.4186687,0.12078169,-0.12859713,0.57640064,-0.018074011,-0.61299706,0.2645726,-0.5017818,-0.06656027,-0.038846023,0.40791026,0.61593527,0.40317425,0.002231117,0.4537673,-0.18921824,0.0767448,-0.2506217,-0.31452313,-0.06040545,-0.07377962,-0.07410468,-0.5699598,-0.022357965,0.011805908,0.0072053513,0.028620731,0.25731713,-0.5305187,-0.24583955,0.12549436,0.8222555,-0.25753337,-0.20094888,0.69443774,1.0060023,0.82503223,0.02123388,0.9822429,-0.010055762,-0.09003895,0.026021147,-0.2179109,-0.3597652,0.28471968,0.3086913,-0.19952746,0.22967005,-0.032031965,-0.024486113,0.384987,-0.2024593,-0.18738371,-0.24919577,0.21947743,0.17028005,-0.12826699,-0.4234934,-0.35970452,-0.041471347,-0.06592396,0.17762761,0.2400514,-0.22267532,0.19978768,0.1357211,1.3447192,-0.056110643,0.08711682,0.13479927,0.35790065,0.20737974,-0.145926,0.015365283,0.2629683,0.33128807,0.11996942,-0.4988821,0.21273561,-0.26430067,-0.5608977,-0.14133151,-0.2951934,-0.20470734,0.11448323,-0.54955375,-0.14473106,-0.09519026,-0.31423888,0.4249641,-2.8555207,-0.07654881,-0.12418158,0.3284405,-0.16403745,-0.39206874,-0.15031537,-0.2385537,0.43152067,0.26668847,0.39173687,-0.3379118,0.37846002,0.40582624,-0.47656775,-0.12947045,-0.4756772,-0.018991232,0.06668411,0.33633736,0.048896957,0.026746767,0.1377947,0.124537125,0.49368522,-0.23473327,0.18338524,0.38180745,0.29643244,-0.14337239,0.29679972,-0.09214748,0.51090366,-0.23697615,-0.20535952,0.25219718,-0.35335127,0.33223617,-0.107075535,0.19656667,0.4163255,-0.2778336,-0.8830785,-0.5973783,-0.22089437,1.3480428,-0.12601295,-0.44553432,0.23905331,-0.47326833,-0.3675563,-0.061642207,0.58587074,-0.018047057,-0.0760986,-0.7136114,0.08072099,-0.22491659,0.13184713,-0.04269589,-0.032524426,-0.32372415,0.49820346,0.001889962,0.5269926,0.32560202,0.29239362,-0.14943932,-0.16809551,-0.03995894,0.81624836,0.4850693,0.14689782,-0.17261226,-0.18295673,-0.30058897,0.14542082,0.16550423,0.7443984,0.45533973,0.09528872,0.08982927,0.12676768,-0.016999686,0.1900945,-0.2257042,-0.21692394,-0.15186124,0.19653276,0.48540884,0.30525526,-0.052232992,0.49209425,-0.055867385,0.12166293,-0.29981574,-0.34902993,0.31631014,0.7406553,-0.3109857,-0.2717924,0.6772242,0.5756894,-0.0917765,0.27827558,-0.47742635,-0.3445668,0.47150522,-0.26302537,-0.42948905,0.2448483,-0.20734362,0.103558294,-0.8056787,0.2349111,-0.45366043,-0.75399595,-0.3107516,0.055416804,-2.7426538,0.26412192,-0.06247314,-0.22905125,-0.39244118,-0.3778251,0.26463792,-0.442982,-0.49950492,0.1729679,0.17254938,0.6541882,-0.0966649,0.037349768,-0.070859164,-0.5257246,0.008694676,0.18546207,0.0033007383,0.3026841,-0.14548606,-0.36436287,-0.16405007,-0.08175039,-0.28591824,0.24316864,-0.60306007,-0.3579391,-0.13380541,-0.3395014,-0.107943505,0.5393271,-0.40713108,0.074441925,-0.2394877,0.12349025,0.028486552,0.2335535,0.009502458,0.23358856,0.18045072,-0.12357764,0.10519341,-0.2691959,0.33880875,0.111918606,0.3380608,0.4177123,0.005668628,0.28553885,0.5682495,0.53875047,-0.14632295,0.89409834,0.44860688,-0.13134469,0.4526724,-0.27657527,-0.32100013,-0.51007015,-0.30282986,0.089292854,-0.30883026,-0.40407333,-0.15604872,-0.25408775,-0.80245715,0.38109627,0.025068697,0.16758803,-0.14345863,0.42891833,0.5179885,-0.2845786,-0.028850278,0.025321294,-0.11046573,-0.45262465,-0.4412205,-0.46921286,-0.29084927,-0.10617367,0.9856186,-0.3526378,0.18989068,0.029569022,-0.1676636,0.1079367,0.11177159,0.15757395,0.00883534,0.3429498,-0.21440312,-0.5390742,0.3642008,-0.25474364,-0.35097557,-0.36590227,0.28705558,0.60560775,-0.5284042,0.5594019,0.40107816,0.031542625,-0.35257304,-0.5441827,-0.0032302777,0.030879887,-0.20311946,0.34124753,0.33938265,-0.79993504,0.4298418,0.33390376,-0.15489912,-0.6596266,0.5564188,-0.036385886,-0.23033114,-0.06866026,0.37233618,0.22033496,-0.05609112,-0.15489677,0.112256326,-0.3285888,0.2936309,0.048675075,-0.05409197,0.107288845,-0.25404042,-0.076408125,-0.79638666,0.12062152,-0.5224857,-0.32501468,0.20063375,0.055723634,0.08386178,0.1753313,-0.06300618,0.4274325,-0.3948726,0.1252988,-0.20351811,-0.36201152,0.31970844,0.40638047,0.45408556,-0.25396368,0.45969293,0.024477687,0.010373417,0.14917387,0.32903484,0.5547861,-0.057169817,0.42130736,-0.11714174,-0.12371103,0.1685045,0.9027814,0.120730214,0.34026057,-0.1760833,-0.11685285,0.10520943,-0.03872281,0.19892082,-0.13240616,-0.4635562,-0.17764126,-0.15731691,0.10884153,0.5341556,0.11546697,0.2968511,0.037405197,-0.2523271,0.083399914,0.24148948,0.2212464,-1.0870527,0.4960483,0.1617903,0.92456234,0.26317608,0.17915885,-0.016661981,0.5242236,-0.09134241,0.15286914,0.32380515,0.13164547,-0.37066713,0.48058853,-0.73064435,0.37748975,-0.04870228,-0.0836118,0.20598593,-0.07569904,0.38891214,0.9732009,-0.11071637,-0.0065820417,0.17172761,-0.326056,-0.027627159,-0.280505,0.03333467,-0.5589743,-0.40566507,0.4934687,0.50063264,0.35416138,-0.29668367,0.03373726,0.22994992,-0.16778244,0.18020032,-0.020210888,0.16907889,-0.18691431,-0.5247773,-0.023920683,0.4402486,-0.07716034,0.16788305,0.019298172,-0.20832013,0.27946967,-0.028464073,0.08677264,0.098391995,-0.4425111,0.060825665,-0.32965988,-0.535846,0.3098286,-0.36784008,0.14950933,0.12694672,0.06375593,-0.23960342,0.48647115,0.08112018,0.6724204,-0.05995616,-0.08161715,-0.35059607,0.2359926,0.13119346,-0.17877959,-0.372649,-0.23517092,0.13409376,-0.60090005,0.20557325,-0.11953964,-0.20787768,0.004799811,-0.16024822,0.10996438,0.44870389,0.03479351,-0.07456608,-0.0899317,-0.18397634,-0.26250207,-0.28950235,-0.053294133,0.24460869,0.13331051,-0.11781699,-0.15578942,-0.20316489,-0.12171273,0.12416184,-0.07367863,0.40048558,0.37654468,0.11598428,-0.22922039,-0.13187684,0.23723711,0.3816222,0.09435888,0.040569685,-0.23876895,-0.29128966,-0.31880692,0.1678869,-0.059686456,0.26035723,0.1880217,-0.13972887,0.81317306,-0.03416736,0.8980115,0.023309557,-0.29062545,0.14479654,0.32379,-0.048826497,-0.11459513,-0.32059276,0.8810184,0.5097789,0.10207121,0.037436638,-0.26774997,-0.059866983,0.106449686,-0.30018738,-0.03856527,-0.083768226,-0.5564068,-0.24453305,0.14815153,0.2553409,0.08724635,-0.09380832,-0.08050476,0.19679056,0.105021186,0.27304247,-0.57912046,0.026092486,0.19534732,0.182665,-0.049472213,0.2077886,-0.53833604,0.29348904,-0.66280097,0.04933371,-0.14176394,0.13639113,-0.2207845,-0.21221043,0.22859049,-0.13284974,0.30469552,-0.19684741,-0.33448157,-0.27150005,0.27108255,0.0055060824,-0.012107027,0.43050736,-0.2537474,0.12520337,0.08406616,0.5659405,0.8550219,-0.31218046,-0.11051404,0.39212522,-0.3124245,-0.64674276,-0.029246824,-0.36563578,0.26309493,-0.07751229,-0.14190388,-0.30420738,0.2917247,0.21471491,0.08810704,-0.26593328,-0.544401,-0.076041065,0.18000863,-0.27355868,-0.15956697,-0.24770029,0.09138762,0.47993502,-0.26188576,-0.349315,-0.03728238,0.39044392,-0.11870227,-0.45844352,0.17335974,-0.3079351,0.22764692,0.0015388657,-0.3990378,-0.2516769,-0.06494177,-0.44427153,0.14157814,0.20285603,-0.25545517,-0.04641006,-0.19700988,0.1138157,0.7797075,-0.17439884,0.1386889,-0.33831054,-0.51852214,-0.6320784,-0.45010293,-0.020721562,0.22038002,-0.026829457,-0.6582146,0.18843985,-0.09936193,-0.23909266,-0.13345261,-0.31165215,0.39849824,0.11860555,0.327102,-0.27371678,-1.0297939,0.25049463,0.063447185,-0.12975246,-0.4718079,0.41375786,-0.06940265,0.747016,0.07147392,0.05031174,0.13323665,-0.41847852,0.0025104205,-0.11759078,-0.18563214,-0.60802346,0.11481762,802 +289,0.34318736,-0.27103525,-0.39401805,-0.2307658,-0.4946808,0.07314162,-0.26071227,0.27596658,0.20994486,-0.20808646,-0.08673687,-0.18276523,0.17012902,0.42854393,-0.1192443,-0.42957038,-0.18096027,0.15491554,-0.685414,0.41645834,-0.5722118,0.22465,0.011965976,0.41277176,0.32759184,0.312582,0.22933817,-0.14023446,-0.120562695,-0.074425586,-0.10555253,0.14388627,-0.48896644,-0.06737145,-0.33582053,-0.42921266,0.011368092,-0.51191586,-0.35743332,-0.7048228,0.22156271,-1.0211717,0.5309301,-0.023235826,-0.16788091,0.023037024,0.3524852,0.49945858,-0.25627363,-0.002573953,0.22460191,-0.26475787,0.0011193037,-0.30939192,-0.17713787,-0.4621812,-0.4957305,-0.11743757,-0.5494555,-0.32500032,-0.18944782,0.15631385,-0.34600773,0.097371705,-0.03778855,0.34516972,-0.4896355,-0.052696418,0.3289536,-0.103294276,0.39162007,-0.56111634,-0.045206666,-0.076324716,0.4402743,-0.14741446,-0.1735203,0.42919382,0.29023057,0.3239603,0.12278979,-0.27122116,-0.2434204,-0.24424836,0.03197024,0.45328683,-0.22540665,-0.30028275,-0.28244892,0.08493328,0.38388702,0.42016315,-0.054565366,-0.12067456,0.051236566,-0.026795868,-0.17385925,0.68977666,0.52139765,-0.25322008,-0.30727196,0.22067179,0.6368576,0.16882038,-0.36596283,-0.052398905,0.08465631,-0.5655596,-0.13269371,0.34361544,-0.13063379,0.4487791,-0.13948096,0.18289126,0.8200339,-0.2805241,0.0042171003,-0.033254094,0.060644064,-0.18830611,-0.29059485,-0.23413175,0.15887421,-0.6591099,0.078303955,-0.25930297,0.81645256,0.21283096,-0.5864466,0.31687418,-0.5944561,0.14515877,-0.12937601,0.6081366,0.6395451,0.44785872,0.41546974,0.7613698,-0.13254124,0.20908624,-0.07132299,-0.37253258,0.101577,-0.34171695,0.08015212,-0.5280749,0.029918721,-0.15241675,0.055948567,0.110452555,0.39993802,-0.47199187,-0.061868787,0.38656935,0.77916247,-0.35955924,0.06190403,0.6600164,1.042177,1.1129733,-0.054352257,0.95670354,0.31117585,-0.31930724,0.26725823,-0.3547087,-0.5350534,0.28751782,0.330326,-0.2857395,0.35117444,-0.17438796,0.035730798,0.23380123,-0.5034028,0.10738705,-0.010799583,0.12793891,0.2760661,0.050186913,-0.5531477,-0.27640477,-0.08677461,-0.011612987,0.12054016,0.22041841,-0.19583829,0.40757665,-0.07127164,1.3098485,-0.018725451,-0.062023066,0.08402087,0.79860604,0.10464776,-0.15277249,-0.047931314,0.2084232,0.35851136,0.13023497,-0.59611255,0.2626688,-0.29598764,-0.46976092,-0.15676075,-0.39326122,-0.104210965,0.053342912,-0.48759058,-0.17646986,-0.08318793,-0.301859,0.47161618,-2.8238194,-0.36309084,-0.16739413,0.287333,-0.29082564,-0.17543603,-0.0710727,-0.56422925,0.26705208,0.25644866,0.42784217,-0.74703103,0.46663585,0.5599249,-0.64668167,-0.07733314,-0.83792305,-0.18852457,-0.07503058,0.48182064,0.05491712,-0.100724116,-0.0027069966,0.3068138,0.6784205,-0.015807109,0.10115003,0.31681803,0.3157002,0.112864524,0.6840303,0.017557537,0.44581586,-0.45419624,-0.1590635,0.3572869,-0.25135818,0.11421759,-0.14305201,0.10671625,0.6933796,-0.50531375,-0.90763825,-0.6680334,-0.19914058,0.94338876,-0.21083497,-0.42924303,0.1241158,-0.4015566,-0.053094156,-0.09574518,0.5632964,-0.052634694,0.06582423,-0.72460943,0.08388826,0.051367037,0.09236577,0.030230427,0.08526314,-0.31169832,0.6608219,-0.06329804,0.4394795,0.20802674,0.20029452,-0.31362307,-0.43305486,0.08076707,0.6911747,0.30344453,0.075536124,-0.25922424,-0.2506208,-0.18876831,-0.12595436,0.012859727,0.3501379,0.83437866,-0.13173869,0.14983188,0.36485884,-0.23910908,-0.029197773,-0.07620626,-0.14476135,-0.070174426,0.110864334,0.52956694,0.64322084,-0.017577933,0.57578623,-0.25339535,0.26817667,-0.09250318,-0.48142242,0.5785803,0.73123056,-0.1581125,-0.087118484,0.40221688,0.61117804,-0.41125157,0.47705778,-0.73667806,-0.27117628,0.6389529,-0.2545469,-0.4231983,0.10904615,-0.27526447,0.25019333,-0.74934113,0.21160068,-0.31535068,-0.41309536,-0.5161328,-0.11463437,-3.0852325,0.23129629,-0.19618085,-0.13321787,-0.18464263,-0.13159606,0.22201808,-0.5548271,-0.49391803,0.10986953,0.20993513,0.76575905,0.0028727034,0.105013646,-0.33101216,-0.205367,-0.2533865,0.179792,0.2600765,0.36741763,-0.22698593,-0.55248034,0.12481771,-0.2024044,-0.58517176,0.11204211,-0.6155007,-0.46360067,-0.10941831,-0.46627495,-0.42051035,0.60530627,-0.21820995,0.13228218,-0.23577677,0.06511662,-0.052067433,0.2913807,0.20949061,0.036907706,0.18408576,0.024608443,0.20969859,-0.3806867,0.48344374,-0.050463226,0.35065565,0.13221806,0.13505861,0.19386335,0.59428346,0.5560535,-0.11762689,1.0683535,0.47205594,-0.07964557,0.115357645,-0.24022684,-0.2342946,-0.5492505,-0.25801596,-0.11148872,-0.38243192,-0.4423343,0.06955169,-0.2909716,-0.78112036,0.7489905,-0.093729086,0.37362102,-0.024086865,0.3093017,0.4668942,-0.22405557,-0.018314803,-0.082849815,-0.14282036,-0.560216,-0.3314196,-0.76904964,-0.5677839,-0.05114871,0.91126096,-0.21772483,-0.026279194,-0.088662274,-0.3882487,0.09764036,0.15745075,0.013716682,0.3352952,0.43691844,-0.13257284,-0.67357296,0.34040722,0.013981384,-0.047737937,-0.46191397,0.087530166,0.7557266,-0.71076113,0.38859692,0.4194013,0.027123729,-0.2550518,-0.39940056,-0.19313517,-0.086877,-0.27179196,0.4291473,0.037365373,-0.8201024,0.57647926,0.21984035,-0.3969421,-0.6251123,0.54108846,0.036106307,-0.36873704,-0.016451376,0.2527251,0.20233384,-0.10377059,-0.3188076,0.27203855,-0.38001233,0.12431939,0.15396854,0.04698939,0.41875026,-0.10589967,-0.32883018,-0.81428707,-0.06696986,-0.51089793,-0.27412257,0.4642512,-0.016323008,0.08638279,0.28530967,0.08955768,0.26534402,-0.14284854,-0.0019576787,-0.091958396,-0.3396958,0.22894292,0.39090812,0.38925993,-0.42345238,0.6321736,0.031951945,-0.156085,0.16670975,-0.12538883,0.32154432,-0.010870639,0.42164344,-0.048841946,-0.34904262,0.38806096,0.7040717,0.32720798,0.37596464,0.09168053,-0.05931994,0.4110457,0.034287624,0.055549916,-0.08346065,-0.3119632,0.0016815146,-0.18436308,0.08850875,0.38795602,0.16395648,0.38535246,0.026124204,-0.23181503,0.016959775,0.049849495,-0.20647888,-1.3445653,0.31365153,0.29424208,0.80757946,0.4680276,-0.04457366,-0.089758,0.79432106,-0.38537148,0.02065614,0.5325512,0.13326642,-0.38505515,0.7509677,-0.6787972,0.6209474,-0.07601248,-0.07660923,-0.02856534,0.2084888,0.43271643,0.72721726,-0.269311,0.08219035,0.043570068,-0.28993362,0.20449467,-0.35827368,0.05326031,-0.5342576,-0.19353785,0.7746521,0.31504318,0.4009673,-0.024672087,-0.084838025,0.035406776,-0.13217108,0.36373004,-0.030498499,-0.062114216,0.084848605,-0.67847,-0.09420528,0.3944723,0.053406548,0.18540137,-0.10269764,-0.24786541,0.04645878,-0.1874155,-0.019129975,-0.034296367,-0.6651861,-0.024879638,-0.2508955,-0.56881267,0.64225525,-0.35946184,0.25258464,0.20948371,-0.011100087,-0.12647639,0.28615758,0.18558206,0.72245824,0.008194466,-0.30692673,-0.21624465,-0.08671189,0.26430452,-0.24227375,0.04519825,-0.29944327,0.09367654,-0.59554344,0.7041931,-0.2033222,-0.47868174,0.22467525,-0.23173405,-0.009685371,0.64524424,0.023036735,-0.14787968,-0.00973742,-0.05398054,-0.39048386,-0.06924704,-0.2601974,0.22780535,0.30082405,-0.16063659,-0.18226375,-0.30475992,0.021102227,0.7713181,-0.1069187,0.5567034,0.24644595,0.06166797,-0.27397224,0.041085593,0.17212589,0.53868765,0.06425382,-0.14116327,-0.45554596,-0.22163065,-0.16292956,0.17998429,-0.008960876,0.22121437,0.073448926,-0.29529735,1.009282,-0.30674335,1.1513332,0.19747019,-0.43245456,0.105131425,0.45397434,-0.009177323,0.032973718,-0.34007156,0.70402324,0.5317229,-0.1648451,-0.20611885,-0.47117516,0.03457533,0.30040407,-0.26823112,-0.16336296,-0.11577416,-0.45656377,-0.47817463,0.34405422,0.17946145,0.3477294,-0.15089433,0.117993005,0.10830916,-0.002126319,0.49080485,-0.50844437,-0.10299315,0.22183532,0.24988016,-0.17000195,0.18471608,-0.44491875,0.40674585,-0.60084045,0.13426861,-0.47163385,0.17740634,-0.3189747,-0.39295524,0.17790715,0.07009606,0.32788607,-0.12700614,-0.3635081,-0.12636675,0.5018266,0.14325537,0.23892972,0.5996723,-0.23920444,0.03223199,0.009182858,0.42606455,1.3176156,-0.39528254,-0.07253957,0.27651054,-0.39514574,-0.5771896,0.4440071,-0.40109977,0.011153865,0.17597976,-0.29077855,-0.4125798,0.2370916,0.17880899,0.050822895,0.007537667,-0.4732666,-0.19853334,0.3175965,-0.2666511,-0.25174955,-0.27674678,0.36835966,0.5013701,-0.22101846,-0.2143773,-0.013102007,0.4691606,-0.22963336,-0.31690484,0.039902084,-0.2287757,0.34004173,0.036338918,-0.37334722,0.038492545,0.089647815,-0.48944128,0.029442945,0.25686526,-0.5360761,-0.00028773546,-0.18948016,-0.002678911,0.96529377,-0.20986165,-0.063639075,-0.45466486,-0.3613471,-0.9628987,-0.33238068,0.27638522,0.22392067,0.08147766,-0.33788723,0.060348526,0.00083349546,-0.39256898,0.102373786,-0.57839656,0.39869386,0.17574787,0.41138455,-0.15846096,-0.8020822,0.023206003,0.11254452,-0.19219635,-0.5292599,0.7318963,-0.07773391,0.87654465,0.10302995,0.02353651,0.055030167,-0.216553,0.18226989,-0.35794646,-0.23559086,-0.881901,0.00025084714,803 +290,0.6397513,-0.1925478,-0.6394624,-0.13253285,-0.18386579,-0.0506765,-0.07943866,0.5500529,0.29349405,-0.64426625,-0.24893217,-0.16929288,0.038024154,0.24330422,-0.21172324,-0.90777653,0.019678343,0.101854675,-0.41400516,0.48858172,-0.5238981,0.15914546,0.14918557,0.31621554,0.1145769,0.15679796,0.17339937,-0.15515523,-0.220431,0.15904906,-0.052893516,0.34435257,-0.4449689,0.008110234,-0.19610396,-0.39612186,-0.039683245,-0.41634274,-0.3377496,-0.8119191,0.39009055,-0.89988583,0.46319786,0.100383736,-0.259008,0.15577087,0.07559391,0.18482473,-0.28248534,-0.03201451,0.0048166136,-0.027990716,-0.13718908,-0.067832515,-0.2632564,-0.2833899,-0.6739281,0.23138694,-0.49296823,-0.01125524,-0.14440875,0.19310676,-0.5582263,0.0846487,-0.21059607,0.5744089,-0.41198462,-0.09565539,0.4815438,-0.11527365,0.28593984,-0.48169705,-0.13338086,-0.09826419,0.1269318,-0.11802564,-0.29981753,0.25474963,0.3637487,0.7158663,0.121351495,-0.3990277,-0.25296482,0.123257294,0.19369298,0.31089637,-0.24398878,-0.57979196,-0.24966772,0.06828785,0.23844305,0.18973643,0.17974791,-0.34477317,-0.017804436,0.2307203,-0.32932988,0.4011488,0.6056649,-0.26591682,-0.20503712,0.20439093,0.60028493,0.09597756,-0.08728657,0.1267934,0.09307252,-0.5882061,-0.14994603,0.1730149,-0.14148831,0.5289558,-0.29527685,0.28912786,0.7713898,-0.28147545,0.19416723,0.27224734,0.022414036,-0.13856617,-0.516409,-0.058504377,0.15601824,-0.58923477,0.1214632,-0.29268953,0.9933127,0.23579322,-0.6846933,0.40143055,-0.51925504,0.30357736,-0.2296832,0.6708489,0.77749044,0.15696052,0.31003705,0.7925084,-0.5228052,0.11451757,-0.024189869,-0.6304676,0.15596591,-0.14385504,0.11053729,-0.43802866,-0.11387808,-0.0036423604,-0.07765339,-0.038858574,0.5204655,-0.7086157,-0.14517456,-0.12600651,0.917509,-0.28804323,-0.18263814,0.8792539,0.9098247,0.93393415,0.10366658,1.4395896,0.30139002,-0.100318335,0.46489823,-0.27384982,-0.936887,0.43677795,0.25359443,-0.15933505,0.38675892,0.121554345,-0.16103724,0.484581,-0.4271548,0.17528556,-0.32440808,0.2570719,0.07150297,-0.17085983,-0.3049732,-0.19987416,-0.14103238,-0.047378436,0.15558584,0.21685733,-0.10526297,0.40142113,-0.08813461,1.5840077,-0.061498124,-0.015490618,-0.060403887,0.40456626,0.15377471,0.03431309,-0.14960118,0.12999828,0.38632402,0.094753094,-0.62642395,-0.017520476,-0.28814313,-0.33719632,-0.20006806,-0.4243396,0.07695239,-0.23176907,-0.4773407,-0.06288588,-0.2090154,-0.36418667,0.31130967,-2.4638865,-0.32267982,-0.09823253,0.34075263,-0.2528311,-0.35637662,-0.2644889,-0.49698406,0.494909,0.37192237,0.5985902,-0.81811714,0.43098736,0.38834682,-0.521788,-0.04562516,-0.79510754,-0.029057272,-0.06189454,0.27343848,0.11328895,-0.07059178,-0.027640764,-0.028317602,0.55942893,0.019881908,-0.031177778,0.15033999,0.5807911,-0.05696676,0.48754498,0.020345919,0.5919374,-0.35022208,-0.27034932,0.46065938,-0.39173585,0.08367144,0.031698152,0.1287324,0.30363178,-0.44280225,-0.94066966,-0.6853496,-0.2993785,1.0633646,-0.14643306,-0.3478923,0.24259405,-0.35823834,-0.13004483,0.010282384,0.4399947,0.035357706,-0.15026382,-0.8806847,0.10058071,-0.11423857,-0.07360129,-0.013190571,0.122769825,-0.23254591,0.73846996,-0.21047087,0.34056395,0.34251913,0.24864605,-0.05757366,-0.5568693,0.13490151,1.0150714,0.31480154,0.107924014,-0.2513894,-0.15905015,-0.3208281,-0.07309377,-0.0045375586,0.50085956,0.9286406,-0.0857354,0.07449481,0.3906927,0.030739052,0.057819378,-0.09518662,-0.536932,-0.27152735,-0.15208952,0.6272304,0.7582799,-0.3599399,0.4822094,-0.27075258,0.33416176,-0.1703277,-0.4967559,0.6743587,0.76315296,-0.27805585,-0.27326688,0.52967775,0.27682522,-0.5513007,0.5702163,-0.6090388,-0.33123386,0.42592993,-0.029092463,-0.4467614,0.17364772,-0.37335286,0.113068596,-1.1343311,0.4006581,-0.27444884,-0.33291104,-0.49632037,-0.23045512,-3.349815,0.32057962,-0.48977575,0.020680465,-0.29369366,-0.03214224,0.18798068,-0.52446634,-0.5166492,0.060426496,0.08259972,0.60627943,-0.0019184321,0.22096743,-0.19179052,-0.106140785,-0.32829028,-0.016548323,0.34486768,0.30977216,-0.04477602,-0.52533984,-0.007337948,-0.2660035,-0.44005165,0.20895083,-0.69137573,-0.6254644,-0.17602222,-0.56812626,-0.453843,0.7022629,-0.12018517,-0.052733652,-0.19754514,0.085725196,-0.06630463,0.56127906,0.013983178,-0.00669926,-0.024201171,-0.04139286,-0.018934738,-0.27688625,0.2890974,0.109054536,0.4156171,0.5585315,-0.12060104,0.34508833,0.73273695,0.7510788,0.13414793,0.8147239,0.526348,-0.048509363,0.43895632,-0.28509077,-0.27448854,-0.565396,-0.34593752,-0.0008872489,-0.48673046,-0.4475898,0.1605875,-0.41590834,-0.8649542,0.5746048,0.052362032,0.09547488,-0.0011463523,0.29377216,0.6486333,-0.082456045,0.015384648,0.014647541,-0.24081174,-0.55253595,-0.26596943,-0.76286274,-0.607517,0.13769862,1.1330692,-0.23252156,-0.03315097,-0.20681871,-0.10589786,-0.05629078,0.05583452,-0.057219096,0.18360089,0.47043553,-0.22938874,-0.5666882,0.36147353,-0.109890655,-0.29921043,-0.6560166,0.07605632,0.6959087,-0.8448416,0.5927278,0.25628364,0.1016675,0.10238459,-0.44516143,-0.071938604,-0.07053541,-0.20846625,0.5384961,0.18187632,-0.68548065,0.5575021,0.5784842,-0.18805647,-0.7757974,0.34536093,0.052801,-0.06023817,-0.03774259,0.31192583,0.07264931,0.0017555038,-0.11792168,0.12038253,-0.5793394,0.27073118,0.29819858,-0.13735496,0.5318641,-0.056926467,-0.31571776,-0.6936871,-0.09739974,-0.6685852,-0.19948034,0.19840255,0.03254175,0.15065698,0.0493747,0.13807242,0.3934364,-0.25993145,-0.028656261,0.07869927,-0.2598799,0.36986405,0.44203153,0.40852016,-0.49950662,0.5079211,0.114813454,-0.044834554,0.047690716,0.06835289,0.50530916,0.11727516,0.43726984,0.17306449,-0.10074709,0.26188505,0.9105829,-0.057937942,0.53163874,0.13397165,-0.24619694,0.26889133,0.12614565,0.110894434,-0.026159262,-0.48172256,0.008957374,0.04953738,0.18481493,0.4964128,0.15289809,0.35113162,-0.015017399,-0.27520078,-0.052794285,0.16484143,0.04179589,-1.4779187,0.35467437,0.14109588,0.7475351,0.32288456,-0.06398301,-0.031575195,0.5649534,-0.11534551,0.23173735,0.39583302,-0.2937729,-0.5746986,0.5963897,-0.5972912,0.43869412,-0.24510358,0.16632967,0.010623964,0.0374644,0.3867602,0.80259234,-0.11072319,-0.0028145392,-0.11369067,-0.3326398,0.22047745,-0.4514445,0.018145593,-0.49152353,-0.18849872,0.61133057,0.55026066,0.3070736,-0.1891649,-0.00446827,0.16466124,-0.09610653,0.13972296,-0.111629374,0.11324549,-0.04158203,-0.8082568,-0.37568125,0.60473543,0.20022544,0.23701732,-0.14974737,-0.15936747,0.36165798,-0.16516814,-0.09011082,-0.19917564,-0.6171734,-0.06839926,-0.36484486,-0.51114583,0.33092958,-0.014044237,0.26523983,0.31979865,0.044064768,-0.5840637,0.27373865,-0.14223453,0.7002626,-0.2510999,-0.2691686,-0.6158011,0.1576596,0.32316488,-0.39205724,-0.21265174,-0.30879444,0.023764484,-0.45665994,0.48269603,-0.046868358,-0.43881556,0.07662679,-0.17711164,-0.09794291,0.5952534,-0.3391884,-0.09408285,-0.08561024,-0.1719293,-0.26639375,-0.115010105,0.05595523,0.315924,0.25686178,-0.05332945,-0.066174015,-0.27987784,-0.099344686,0.580375,0.0936281,0.24509509,0.5340782,0.16626433,-0.56767565,-0.18361516,0.40963253,0.5813293,0.10588814,-0.30591506,-0.4535297,-0.2972992,-0.29517308,0.12904559,-0.17189646,0.30423912,0.14015375,-0.4126114,0.9451467,0.16491319,1.528936,0.21435098,-0.24743174,-0.019819466,0.40641928,0.10468447,0.005112308,-0.46086198,0.90905285,0.40274733,-0.2458127,-0.18287908,-0.6245627,-0.06347557,0.13991961,-0.25824684,-0.19234586,-0.13003808,-0.6558567,-0.32657653,0.30125004,0.28011405,0.2228303,-0.043428533,0.16977195,0.046033226,-0.06182216,0.38475215,-0.5683544,-0.20997098,0.18001667,0.2461054,-0.017213367,0.19495983,-0.4943091,0.44089845,-0.5072632,0.08827075,-0.1657103,0.23770276,-0.029887253,-0.27417392,0.31278354,-0.10246951,0.5594153,-0.26728705,-0.39027792,-0.2272015,0.5317591,0.23391443,0.1582461,0.76327044,-0.28226084,-0.103438534,0.22655442,0.7623436,1.3336688,-0.02353441,0.08453046,0.3845313,-0.19700813,-0.6873885,0.34377617,-0.32107118,0.21210091,-0.15156819,-0.23913367,-0.68476766,0.3950051,0.249047,-0.0016200702,0.15496652,-0.52716625,-0.41706187,0.25226775,-0.42629263,-0.15845607,-0.4169842,0.11572145,0.6304461,-0.2811957,-0.2096162,0.083842345,0.28317204,-0.054133423,-0.50211895,-0.16594864,-0.39851865,0.27456468,0.16570005,-0.2505087,0.1622308,0.113084316,-0.512803,0.18353319,0.29305613,-0.30743983,0.13271478,-0.06606481,-0.23987289,0.9164809,-0.038474116,0.29386955,-0.6250492,-0.39793062,-0.85572,-0.23907508,0.4964259,0.08628324,0.036531903,-0.62040406,-0.20340595,0.04022583,-0.17205901,0.022138739,-0.45441642,0.38798997,-0.014677079,0.4609417,-0.02379988,-0.78712183,0.017280681,0.1241933,-0.20484327,-0.6808331,0.54986674,-0.008210365,0.8296909,0.2093325,0.06927101,0.40228686,-0.48424643,-0.21644363,-0.27581698,-0.3451153,-0.70869076,-0.08003251,807 +291,0.5633462,-0.14589658,-0.42627433,-0.002549519,-0.26109558,0.12422337,-0.18385348,0.42414558,0.06277744,-0.3405882,0.024133377,-0.13242272,-0.11022984,0.4497238,-0.007756229,-0.36516127,-0.11832078,0.13431367,-0.62252253,0.62801385,-0.22320814,0.5527212,-0.09505429,0.10226734,0.21080977,0.3361672,0.18105647,0.0398662,0.08559671,0.025905354,-0.21910019,0.018095005,-0.53644025,0.13929802,-0.19654353,-0.3962593,0.057503182,-0.3725812,-0.3054624,-0.58428806,0.2619527,-0.7207353,0.44477373,-0.04024585,-0.3026179,0.331756,0.045047108,0.3672207,-0.15262525,-0.018303405,0.24972647,0.13143066,0.060798857,-0.16692732,-0.34203804,-0.44020087,-0.3602288,-0.045151073,-0.6317881,-0.30194187,-0.23419315,0.016647374,-0.21322824,0.037933238,-0.098661214,-0.010535425,-0.44612914,-0.01689121,0.19500382,-0.09665392,0.021884056,-0.53167146,0.054374825,-0.17113318,0.15379576,-0.15026417,-0.014238707,0.3700074,-2.4843215e-05,0.610766,-0.07446145,-0.14260782,-0.36940065,-0.00445415,0.027334848,0.58271354,-0.12274216,-0.23299383,-0.19954203,0.09243254,0.48139527,0.11490917,0.19405642,-0.33003613,-0.05613989,-0.20176245,-0.08143511,0.11416594,0.47559804,-0.36508274,-0.20586419,0.45210603,0.6726601,0.23741809,-0.0949132,0.12275803,-0.1333721,-0.13468044,-0.09925256,0.09458574,-0.035462856,0.36482114,0.14048983,0.112586364,0.46251628,-0.06502768,0.15682653,-0.24143444,-0.045238264,-0.03721235,-0.08777078,-0.15216285,0.21355715,-0.4463417,0.1161537,0.04165747,0.62777036,0.21483597,-0.6743536,0.4544352,-0.50235724,0.08512618,0.07430129,0.4822153,0.7088653,0.3166633,-0.015718961,0.7843859,-0.43787417,0.19336839,-0.29070634,-0.07042704,0.044260915,-0.063714266,-0.19208069,-0.55432665,0.21313591,0.011840105,-0.21497415,0.000500532,0.24628608,-0.5025499,-0.12207047,0.1434546,0.62230796,-0.3352539,0.08563873,0.60469204,0.9657204,0.85072136,0.009587924,0.9214344,0.42843023,-0.20731017,0.25325188,-0.38982236,-0.66597134,0.0713813,0.4811244,0.09510841,0.5349491,0.21014205,-0.035088904,0.10911956,-0.21372837,-0.037799757,-0.20243026,0.18219014,-0.11246114,-0.09442627,-0.41048807,-0.2856335,-0.012102409,-0.042514425,-0.15326966,0.26765868,-0.34404278,0.059417047,0.028325973,2.0978744,-0.15261811,0.058393158,0.22705463,0.4037688,0.264242,-0.26656076,-0.25804052,0.5009562,0.22960772,-0.09494962,-0.51979035,-0.056840427,-0.46850032,-0.5425117,-0.10228176,-0.22870809,0.034167346,0.08153725,-0.23031005,-0.027449878,0.004836319,-0.32710248,0.5757577,-2.5461571,-0.010459868,-0.250411,0.40208182,-0.46920258,-0.35037506,-0.13306051,-0.3719641,0.21881159,0.36684886,0.37584588,-0.38073736,0.13017918,0.26899526,-0.5119746,-0.05330508,-0.40158367,0.0468496,0.03895336,0.43750313,-0.18610492,-0.12586845,-0.025285117,0.3150816,0.3098463,0.073948935,0.013701713,0.46561924,0.37968695,0.20371994,0.37702954,-0.033946447,0.45286375,-0.34157932,-0.12537389,0.48062235,-0.15352558,0.41428968,0.11730103,0.16566296,0.24260214,-0.5371911,-0.7031719,-0.46084586,-0.27813417,1.2779251,-0.3423364,-0.5209143,0.23781976,-0.028955908,0.013596831,-0.109592184,0.2880534,0.007887337,-0.17118043,-0.6308596,0.13450594,-0.08923409,0.25203875,-0.019094871,0.07383514,-0.31386244,0.6002112,-0.18102942,0.4476324,0.22469288,0.2642895,0.13340588,-0.2753743,0.08102226,0.83438694,0.62385863,0.018978298,-0.13956009,-0.18533345,-0.30748716,-0.19962683,0.20896666,0.24778964,0.7769602,-0.10887918,0.06572777,0.15508555,0.10604184,0.009162426,-0.25976145,-0.1995891,-0.07600171,0.0040748836,0.39124793,0.27095285,-0.08876587,0.4011493,-0.06845948,0.14468066,-0.021493157,-0.46677113,0.20553504,0.80239564,-0.17736216,-0.116104,0.2831708,0.31866366,-0.23421909,0.4457621,-0.7372654,-0.17693287,0.5206473,-0.17590226,-0.3376102,0.29773048,-0.26547584,0.14436308,-0.7685871,0.15666695,-0.13218562,-0.30603415,-0.39955157,0.01299055,-2.3265254,0.23176734,-0.15120035,-0.24415062,0.061837126,-0.058069088,0.15777685,-0.60430527,-0.6005895,0.08061751,-0.05287246,0.48591107,-0.0023847828,0.12379262,-0.15702374,-0.42997634,-0.46295515,0.11910029,-0.08812305,0.45855123,-0.10854114,-0.42402825,-0.28590745,-0.14353116,-0.35884228,0.039202143,-0.5280311,-0.3226558,-0.36015052,-0.6115492,-0.001067102,0.35973808,-0.276804,0.04065285,-0.26824126,-0.17588392,-0.09502956,0.14665408,0.39015093,-0.02501487,0.19308288,-0.11293201,-0.1557478,-0.39712727,0.3056392,0.2624037,0.17243855,0.5384386,-0.2227319,0.10467092,0.4438153,0.57556236,-0.15589193,0.5789314,0.39773586,-0.20310688,0.4937563,-0.4001327,-0.07803763,-0.55677056,-0.36495504,-0.27993983,-0.34059513,-0.6154212,-0.23734947,-0.24918127,-0.81642026,0.36471558,-0.09728792,0.5221072,0.0023466826,0.21672662,0.48408064,-0.09040482,0.04376587,-0.14315987,-0.11128878,-0.35569322,-0.34669238,-0.5510166,-0.45770296,0.5465105,1.0023614,-0.30315405,-0.033519436,0.024616074,-0.11417176,0.13747658,-0.22962767,0.10117631,0.25858742,0.34189528,-0.028729033,-0.42698643,0.43080413,0.092419006,-0.18115555,-0.37791806,0.17924744,0.50391287,-0.55399865,0.19877638,-0.04421986,0.17582816,0.20181277,-0.5928562,0.019883724,0.15716317,-0.35416353,0.21440196,0.093701206,-0.66486585,0.31833714,0.32899973,-0.38786522,-0.71730983,0.337595,0.073222876,-0.18534455,-0.06684613,0.27786142,0.15831362,-0.0721424,-0.2951498,0.19977123,-0.48292738,0.24097236,0.42654052,-0.051840533,0.10091804,-0.22171383,-0.3909891,-0.6257366,0.31191313,-0.24576457,-0.33790687,0.27028608,0.06456994,-0.07872903,0.08035085,0.28085503,0.45101658,-0.42889813,0.06357897,0.0056440514,-0.07891973,0.564113,0.36149392,0.47693843,-0.34837008,0.4349887,-0.00582629,-0.1671162,-0.0029156366,-0.044010002,0.37872064,0.009300923,-0.08072063,0.12507953,-0.24228184,0.25456527,0.607921,0.14800873,0.16274653,-0.057977922,-0.38611406,0.23027177,0.18643743,0.013035988,-0.007958579,-0.44845423,0.19077483,0.22795588,0.20680887,0.45620158,0.2102453,0.35768726,-0.08542792,-0.14783145,0.14367437,0.0826562,-0.3478746,-0.81916314,0.06426132,-0.008910267,0.64165527,0.5773989,0.10366074,0.122049294,0.3088463,-0.2667418,0.06811237,0.2432685,-0.33791062,-0.55721766,0.37478644,-0.49812478,0.3827819,0.0051702023,0.021138089,0.28594476,0.23999147,0.46154097,0.7680584,-0.16878447,-0.035248462,-0.1303026,-0.1835605,-0.09560517,-0.19905433,0.10670516,-0.4651216,-0.4467777,0.5714181,0.21329184,0.3353902,-0.089464165,-0.045548096,-0.14283021,-0.27132574,0.3185377,-0.033439707,0.14311066,0.012153341,-0.47085768,-0.24237712,0.5324324,-0.06090192,-0.05277362,-0.10400133,-0.32448336,0.10885704,-0.041803457,0.1784033,0.11587652,-0.814804,0.12047363,-0.43824863,-0.07259158,0.15517794,0.13543472,0.30571386,0.1990164,-0.20028464,-0.32528448,0.45232913,0.12023911,0.85083324,-0.16515033,-0.24309541,-0.31509006,0.425731,0.22294578,-0.21144085,0.1860446,-0.08860292,0.007286574,-0.7748441,0.3607728,0.05190418,-0.22345492,0.2785966,-0.27357593,-0.016785054,0.50650644,-0.08378541,-0.11967273,-0.17760356,-0.07083536,-0.36409742,-0.4185905,-0.2651241,0.0005649368,0.106798925,-0.31554598,-0.015855122,0.045533966,0.14700799,0.39588374,0.16238832,0.2722542,0.27386725,-0.025191855,-0.6141999,0.11880736,0.22525415,0.22528572,0.09287388,0.21329024,-0.25709704,-0.34146404,-0.531113,0.0016071082,-0.36058474,0.27715254,0.21109296,-0.26728976,0.6967018,0.16810772,1.1861786,-0.082727164,-0.26008713,0.14878497,0.59172827,0.033860404,-0.19011976,-0.419504,0.9173077,0.74251187,0.2015556,-0.10501415,-0.13012038,-0.47469413,0.15833603,-0.34565124,-0.040295348,0.1533076,-0.52746207,-0.47335052,0.16808052,0.15106262,0.064759836,-0.092880204,-0.00833331,0.08284863,0.015842235,0.30418447,-0.33165583,-0.42185098,0.20001557,0.027801633,-0.03820645,0.14297956,-0.54685044,0.49194357,-0.71080005,0.11047885,-0.27966172,0.087064415,-0.0103368405,-0.23022029,0.061910346,0.14073977,0.39294577,-0.39198163,-0.48151478,-0.15570812,0.5614318,-0.067068815,0.29873726,0.50098723,-0.38770846,0.19281489,-0.108585685,0.37968063,0.88848555,-0.09513199,0.092485696,0.43325692,-0.33569416,-0.56923693,0.28318787,-0.116929606,0.27303445,-0.12299915,-0.16819222,-0.3734614,0.31910628,0.18841888,0.015502961,-0.045271013,-0.5601876,-0.17899421,0.22590624,-0.30800623,-0.1896254,-0.340176,0.124021605,0.8365309,-0.41788405,-0.5613615,0.29181793,0.1423967,-0.2298849,-0.7181727,-0.16052207,-0.11698761,0.27923992,0.16552702,-0.25407845,-0.096472934,0.22384262,-0.23860675,-0.11896665,0.12990186,-0.35805655,-0.094109535,-0.30200195,0.08081366,1.0025796,-0.103890814,-0.2536638,-0.5892376,-0.50322205,-0.84514034,-0.5550851,0.5107924,0.1874675,0.12755762,-0.48803368,0.110517025,-0.33361614,0.009396525,0.0047168075,-0.27369687,0.35364008,0.21134852,0.34742388,-0.33188882,-0.90055287,0.34375298,0.17966303,-0.11645247,-0.57107145,0.40908188,-0.037929248,0.75484157,0.13229598,-0.19879293,0.32624415,-0.6720568,0.108974196,-0.31141388,0.023859631,-0.5644963,0.11454337,813 +292,0.6182696,-0.3665927,-0.51652884,-0.122461036,-0.1968417,-0.05918902,-0.22244428,0.37156308,0.21103582,-0.26605386,-0.008100685,-0.13129126,0.12888947,0.26021755,0.014581194,-0.61311686,-0.1476811,0.076131634,-0.54655325,0.59912866,-0.4756178,0.2791456,0.009427372,0.32196656,0.1209741,0.3382235,0.1617026,-0.08899673,-0.21518707,0.058040045,0.017756168,0.36540464,-0.5921699,-0.06307198,-0.09008492,-0.15835658,0.008842823,-0.47018,-0.47749582,-0.6957385,0.30734158,-0.7917946,0.5220757,0.28753313,-0.3229145,0.34376106,-0.2931285,0.17405245,-0.48821336,0.056890227,0.18910465,0.1244346,0.05366284,-0.33812132,-0.24156179,-0.22297321,-0.5847846,0.08080121,-0.42983967,-0.14365965,-0.17522237,0.012637633,-0.39800444,-0.1475619,-0.19942841,0.42627466,-0.5569382,-0.059159823,0.22348258,-0.14683256,0.3103051,-0.4771045,-0.031230021,-0.20282075,0.10602673,-0.23003927,-0.31136042,0.3075562,0.2456693,0.5232769,-0.21657595,-0.24803765,-0.30686906,0.06928657,0.20882161,0.47808117,-0.21859162,-0.5539045,-0.090090655,-0.026399272,0.064666845,0.14125602,0.057846826,-0.35953322,-0.12681843,0.13858633,-0.10970118,0.3070853,0.6095656,-0.24031995,-0.31563875,0.2558712,0.5024452,0.27962843,0.014544756,-0.08178024,-0.05236369,-0.5961821,-0.2323697,0.22557351,-0.20774092,0.4917132,-0.10534296,0.12763582,0.7093615,-0.23526964,0.06489478,0.0012088879,0.014082662,0.050885815,-0.19111177,-0.28107184,0.28035346,-0.3920329,0.1880512,-0.17302874,0.6218299,0.33401114,-0.7417675,0.5032749,-0.5004713,0.24292201,-0.18005046,0.6497783,0.77163047,0.29393518,0.31554076,0.63978976,-0.4997632,0.1733015,0.022000305,-0.5088385,0.31078023,-0.25371745,0.0035447676,-0.47985357,-0.018277781,-0.035219207,-0.43570465,0.07531762,0.4234374,-0.6204662,-0.04388747,-0.022957655,0.6782123,-0.2901841,0.07487547,0.5142761,0.8151281,0.8684773,0.048260197,1.2836492,0.47880584,-0.30855605,0.4001103,-0.41340664,-0.88800937,0.27066162,0.46217102,-0.19540414,0.44262382,0.032653376,-0.06414137,0.2914743,-0.2598919,0.042997725,-0.25790885,0.19830507,-0.081645645,-0.17704153,-0.52942914,-0.29427752,-0.22580265,0.13248098,-0.10717068,0.3707808,-0.270639,0.24080355,-0.042068187,1.9142456,-0.069246165,0.07163542,0.02396973,0.45292738,0.37239596,-0.1919884,-0.117595576,0.47786775,0.41015306,0.20622028,-0.6096684,0.18385741,-0.25218225,-0.3738808,-0.1446375,-0.40647727,0.22923613,-0.009966125,-0.52624995,-0.019178264,0.09515169,-0.188663,0.40277413,-2.5630667,-0.1681255,-0.008055154,0.37531292,-0.34592864,-0.33905286,-0.20656642,-0.41047776,0.19987266,0.33147162,0.62857014,-0.8096808,0.1565989,0.31122848,-0.6172663,-0.005484295,-0.58889735,-0.21082617,-0.021908836,0.356624,0.037425954,-0.06826664,0.09003866,0.1173432,0.43104953,-0.038081456,-0.019634854,0.17890781,0.515123,-0.023703353,0.3764456,-0.023118136,0.4036557,-0.23936857,-0.25054818,0.4775371,-0.10629713,0.35029012,-0.044386968,0.08078587,0.35589775,-0.4660935,-1.0291765,-0.5511385,-0.31726977,1.0815136,-0.33543694,-0.4278583,0.2949094,-0.23235713,-0.24744138,-0.068827,0.40692914,-0.05845158,-0.04002923,-0.8680824,0.11977695,-0.09196858,0.24093764,0.13121195,0.07630251,-0.26913851,0.6599743,0.09815747,0.27516013,0.32049987,0.19400167,-0.020090075,-0.49380207,0.09890898,0.9379556,0.34415987,0.14463827,-0.23821948,-0.3434759,-0.14325117,-0.011860083,0.09924831,0.27567044,0.7566321,-0.11354802,0.17900614,0.3301591,-0.023107609,0.025224857,-0.18900448,-0.27773055,-0.022249846,0.12771796,0.60029995,0.7498853,-0.42353833,0.34378645,-0.025909903,0.18615426,0.06598408,-0.6239764,0.59235096,1.1139375,-0.06647535,-0.13071783,0.5256255,0.39200392,-0.55904084,0.50973254,-0.6993692,-0.20575878,0.45727602,-0.18477379,-0.33922353,0.37428632,-0.3397182,0.16571735,-0.84252363,0.47016934,-0.09734807,-0.0436098,-0.49342746,-0.08470132,-3.415916,0.18169333,-0.2605622,-0.11814178,0.030699369,-0.062164124,0.16846469,-0.66249686,-0.4762154,0.13459225,0.04004591,0.5926038,-0.12821661,0.060666375,-0.29999223,-0.2682761,-0.2484712,0.11113735,0.22544739,0.37458244,-0.081565164,-0.493552,-0.17984551,-0.17194717,-0.38194147,0.11282509,-0.5662706,-0.6116743,-0.25967824,-0.62613136,-0.10075163,0.64522016,0.00084811647,-0.0032565554,-0.082778245,0.012421368,-0.10417046,0.33878803,0.21432044,0.25863475,-0.006662623,0.029161096,-0.06835617,-0.30693686,0.16989683,0.106365606,0.21768065,0.3775341,-0.13249251,0.19113204,0.61880416,0.6994196,-0.25922528,0.6559574,0.617427,-0.17879295,0.31052732,-0.2568084,-0.23136066,-0.58570164,-0.49974886,-0.17642848,-0.45045456,-0.48058337,-0.0565533,-0.29665676,-0.7530136,0.5901673,-0.22086261,0.22975138,0.01726391,0.26093674,0.5534846,-0.17674188,-0.07267884,-0.12425916,-0.198136,-0.6342143,-0.18087047,-0.60405296,-0.4552925,0.3825489,0.9237559,-0.22277316,-0.08097113,-0.0020157655,-0.15432048,0.0006338179,-0.021271592,-0.010315853,0.25696197,0.35869077,0.08361296,-0.57957613,0.5275472,0.12704082,-0.28664225,-0.50093645,0.16932504,0.6559494,-0.6647561,0.6013275,0.18978061,0.0787981,0.06487443,-0.5972594,-0.3544525,0.23486169,-0.10740692,0.50117546,0.15701011,-0.6698214,0.37787607,0.42505318,-0.43589827,-0.58567977,0.5144814,0.028261418,-0.31362945,-0.10850315,0.28948396,-0.13370527,0.031789258,-0.27383602,0.37118015,-0.47972453,0.2257993,0.36893782,-0.1309989,0.27410474,-0.084037654,-0.085841425,-0.7401562,0.19939607,-0.44083515,-0.2999762,0.39122242,-0.007866998,0.11918186,-0.036659077,0.24233504,0.4643866,-0.37070057,0.041438125,0.050919738,-0.22572449,0.45973963,0.44820926,0.4630464,-0.49920267,0.5423051,0.07846675,-0.14025046,0.05947881,0.054161116,0.46267796,0.062475268,0.20886709,0.03252902,-0.123907246,0.23420592,0.7642067,0.13550569,0.45669946,0.11221372,-0.07115548,0.23506108,0.14582524,0.07937594,0.029821761,-0.33326846,0.10915132,0.12678514,0.16174024,0.48723957,0.12116725,0.15849158,-0.24237403,-0.2632467,0.09741091,0.35917372,0.26720414,-1.023034,0.26076782,0.16651265,0.55344826,0.4930377,0.00802224,-0.06698311,0.57050824,-0.20458624,0.058306124,0.31456107,-0.13605182,-0.7257395,0.48859727,-0.56945217,0.48844716,0.06123861,0.08374748,0.026962487,-0.11356958,0.403273,0.6540291,-0.18538637,0.015770188,-0.111828126,-0.25351763,0.12066535,-0.4116515,0.02213616,-0.5146402,-0.37671185,0.691156,0.43709114,0.23290281,-0.11653732,-0.012667591,0.09426191,-0.15835194,0.29184347,0.015825959,0.1581573,0.09914656,-0.6691311,-0.18867974,0.54736865,0.010459972,0.051396217,-0.17523116,-0.04731573,0.29827785,-0.21262655,-0.15767299,-0.093034856,-0.7106663,-0.034386445,-0.5248817,-0.35945946,0.47137263,0.02902795,0.29579732,0.14847764,0.059707996,-0.5150827,0.49176985,0.13167778,1.0325434,-0.071298085,-0.25150073,-0.47680053,0.37401864,0.2799569,-0.19896123,-0.04691654,-0.26166168,0.0022196213,-0.62687385,0.4903005,0.003820457,-0.41935265,-0.1339107,-0.15203695,0.035507433,0.5654054,-0.2150634,-0.40788022,-0.34289277,-0.22522335,-0.32941258,-0.2713588,-0.07483921,0.25464326,0.35528252,-0.09213281,-0.17819983,0.018644663,-0.024942096,0.5977033,0.064962685,0.29356816,0.34020513,0.19225238,-0.2988421,-0.07578136,0.3345712,0.4454418,0.059461955,-0.08224867,-0.37149525,-0.3783578,-0.5129729,-0.04309629,-0.18706419,0.36381283,0.113992974,-0.2314787,0.74084765,0.020748658,1.2127961,-0.03977151,-0.21657285,0.16123687,0.48629662,0.041149992,-0.13801403,-0.34709856,0.94745576,0.5987722,0.00036536256,-0.25569797,-0.42450187,-0.26896307,-0.028745301,-0.30275142,0.024334261,0.043458503,-0.65193754,-0.18356775,0.18779056,0.3130926,0.21570404,-0.17836304,0.16909479,0.09355699,0.10356105,0.15776096,-0.42830753,-0.24341209,0.31552032,0.11227616,-0.024501598,0.14256404,-0.42620012,0.39591077,-0.3426574,0.12478412,-0.29401895,0.2289883,-0.0930581,-0.41789868,0.18415497,-0.002651294,0.3925687,-0.491211,-0.30497476,-0.29601175,0.6005169,0.14551128,0.11552981,0.59788346,-0.32055697,0.26242492,0.08906155,0.4737247,0.98941207,-0.25414377,-0.005699766,0.38250732,-0.2672804,-0.78358275,0.31827253,-0.27799985,0.2855608,-0.23255688,-0.24873313,-0.6807691,0.1387324,0.07344159,-0.04198079,-0.10115154,-0.5761784,-0.2811404,0.20798859,-0.28566828,-0.1840816,-0.4258831,0.15346092,0.7229857,-0.30706918,-0.37235624,0.25991732,0.030915074,-0.26889107,-0.30795446,-0.11872114,-0.3362252,0.16000834,0.13624318,-0.35589445,0.068924576,0.20625658,-0.37583452,0.16535456,0.23487465,-0.3953179,0.11481981,-0.25400674,-0.061337344,1.1792663,-0.21808335,0.09321249,-0.5572049,-0.508693,-0.97105974,-0.3564073,0.707063,0.010192194,0.14251073,-0.74138725,0.10491263,0.0024689515,0.07496799,-0.18635021,-0.40799478,0.37057683,-0.011377936,0.27797276,-0.21931177,-0.71197295,0.14052992,0.20573893,-0.17647181,-0.64511275,0.5342875,-0.055129852,0.8281072,0.07481011,0.18725796,0.39446747,-0.5398314,-0.23782967,-0.3078615,-0.24135186,-0.6832775,0.048120696,815 +293,0.49729776,-0.062331736,-0.4469263,-0.049727537,-0.15550034,0.13513874,4.7616162e-05,0.30432948,0.23390989,-0.2458979,0.023195982,-0.28873578,0.093032375,0.33851725,-0.02907511,-0.3702184,0.14633733,0.07356426,-0.37060174,0.40365437,-0.5015128,0.39816162,-0.05378359,0.3662895,0.1355889,0.40390143,0.08635921,-0.14783755,-0.17023437,-0.22604637,-0.009514181,0.26079348,-0.2818209,0.12009207,-0.025793497,-0.24043995,0.226021,-0.27526054,-0.56456274,-0.6812651,0.20406437,-0.5384537,0.38604227,0.0780144,-0.29472393,0.07089089,0.11043025,0.34305993,-0.1902873,0.062396713,0.0908053,-0.08911111,0.10143582,-0.15049793,-0.19432598,-0.3496347,-0.5102071,-0.025025487,-0.4970205,-0.2820196,-0.29943708,0.13048722,-0.39728543,0.0211977,-0.1858356,0.30499604,-0.35137045,-0.0125659825,0.25546625,-0.32416984,0.3772462,-0.52123386,-0.36892018,-0.09203253,0.1245981,0.008137858,-0.15193571,0.30817503,0.342236,0.52489257,-0.079365715,-0.116662286,-0.40740266,-0.20650199,0.12173423,0.57165617,-0.19950962,-0.36284527,-0.08647739,-0.013906781,0.07503237,0.26782566,0.18308207,-0.15587501,-0.17433244,0.18013713,-0.35248998,0.3539659,0.4480158,-0.4314069,-0.2573753,0.25208434,0.5169552,0.17676727,-0.20020714,0.009518128,0.044064537,-0.42684162,-0.15860456,-0.020605547,-0.24798152,0.5254497,-0.022159314,0.3358293,0.642963,-0.3331198,-0.012120629,0.079626,7.4676675e-05,-0.0996735,-0.21162967,-0.055378743,0.022711,-0.47256836,0.1248851,-0.12538394,0.82816195,0.21396147,-0.49943054,0.40488073,-0.51682794,0.18462859,-0.09251823,0.6202043,0.52337635,0.20249541,0.4043141,0.7295098,-0.4605245,0.1464243,-0.10416565,-0.34572715,0.1435948,-0.18076818,0.030126158,-0.49077258,-0.13127501,0.16732751,-0.22527952,0.07729368,0.49917832,-0.58402723,0.0045604506,0.1535764,1.0197202,-0.25161952,-0.14842337,0.46093458,1.0843273,1.099361,-0.048695423,0.9174406,0.06997242,-0.2970667,0.06262656,-0.49883613,-0.47399327,0.26623642,0.3008302,-0.097047284,0.13086724,0.097563885,-0.12311847,0.30000076,-0.32072958,0.17758808,0.0013180136,0.4135022,0.14976718,-0.15227264,-0.35380515,-0.4073508,-0.14951095,-0.13357286,-0.07272052,0.24396664,-0.15765099,0.36870047,0.040690962,1.8699199,-0.0041229087,0.1618298,0.041449606,0.62958986,0.1231307,-0.079716764,-0.02324481,0.3030413,0.15291835,0.12992916,-0.5124975,0.12064644,-0.3396428,-0.45809796,-0.03889582,-0.30774593,0.035721183,-0.012601606,-0.2797998,-0.10335231,-0.13972153,-0.2682687,0.54926705,-2.9100504,-0.23081066,-0.0047534425,0.30590108,-0.31031978,-0.2681603,0.13648054,-0.5304814,0.28295767,0.33065018,0.4325376,-0.7674768,0.20945159,0.37581095,-0.40489545,-0.12561359,-0.5572347,-0.1058543,-0.01965017,0.281184,0.06460729,-0.077340394,-0.20584883,0.21281004,0.362683,-0.05400416,0.13590318,0.17042981,0.19862337,-0.041568454,0.61733216,0.13791241,0.38990483,-0.087654024,-0.17206019,0.37565988,-0.36915323,0.31197658,-0.09726106,0.07084966,0.32949066,-0.29363874,-0.7618713,-0.4760231,-0.22111975,1.0833782,-0.11424669,-0.45986685,0.37452558,-0.31388837,-0.23359604,-0.27768025,0.23272099,-0.06092314,-0.15390567,-0.703885,0.099617146,-0.21011998,0.11226021,-0.0023190817,-0.038101386,-0.25517792,0.50524825,-0.027526425,0.34714633,0.3345261,0.074533686,-0.16282399,-0.39076793,-0.072785005,0.93832153,0.36623535,0.062854014,-0.24168499,-0.1917849,-0.38175946,-0.119640574,0.16747037,0.31787452,0.884608,-0.105508804,0.08112347,0.31524482,-0.15108132,-0.048987497,-0.1632947,-0.3503744,0.055264726,-0.09683546,0.5829834,0.70520395,-0.17290716,0.52972776,0.063427955,0.27335045,-0.123424836,-0.5070113,0.4043066,0.7504462,-0.19998884,-0.15490489,0.4951648,0.305306,-0.29684785,0.40838468,-0.58930016,-0.26869395,0.64887446,-0.1581394,-0.36168307,0.19502865,-0.3468598,0.122080974,-0.8964247,0.2952771,-0.30644342,-0.37439504,-0.38044664,-0.15084396,-3.4585688,0.17809342,-0.2725296,-0.10315571,0.09628783,0.086485155,0.030459361,-0.6145376,-0.5597276,-0.0016762415,0.122608736,0.585884,-0.09842127,-0.03385737,-0.21142456,-0.39753762,-0.4353104,0.062119085,0.07237347,0.32804123,-0.066859536,-0.5839053,0.11745637,-0.2248083,-0.38111588,0.16917218,-0.42111814,-0.65168345,-0.23039979,-0.53831744,-0.55114645,0.6866493,0.02353251,0.0050646705,-0.23239109,0.032114454,-0.0051734843,0.24519138,0.35945338,-0.02808094,0.027601827,-0.07630305,0.0046156724,-0.2971279,0.1872992,0.10305121,0.41662022,0.48794279,0.049383536,0.110964365,0.55850166,0.5093715,-0.077572875,0.6505984,0.36161533,-0.21556942,0.24037817,-0.3118461,-0.21208654,-0.45476887,-0.4027458,0.15119581,-0.38484204,-0.5945447,-0.1834475,-0.33819208,-0.5407461,0.49144372,-0.1010485,0.22106323,-0.10171754,0.22891913,0.53355545,-0.1986243,-0.05755852,0.044373773,-0.12588924,-0.6000528,-0.29739565,-0.73382354,-0.44006878,0.38563955,0.95519274,-0.32896167,-0.029727273,0.09918716,-0.2332082,-0.096319236,0.12641697,0.10080168,0.1785031,0.42597437,-0.2089426,-0.6274002,0.3724791,-0.027321182,-0.0027121543,-0.5101422,0.16068362,0.6742347,-0.6636091,0.43813002,0.28320202,0.15984255,0.004028956,-0.5200781,-0.1332062,0.01539061,-0.24562794,0.2919757,0.056037184,-0.7200176,0.37523678,0.39589152,-0.29944047,-0.5432897,0.40036935,-0.09992402,-0.37081638,-0.103713766,0.33039078,0.19205222,0.039633904,-0.18016784,0.30408484,-0.6510794,0.22465783,0.36460575,-0.18293849,0.41151252,-0.16275209,-0.37798885,-0.7158646,0.11138416,-0.36124462,-0.3524621,0.18777452,0.18908615,-0.015401987,0.30140597,0.23404527,0.43003848,-0.2660973,0.027460726,0.035881504,-0.17710678,0.47314498,0.41423938,0.58547425,-0.41452187,0.5315801,0.01274844,-0.055970266,-0.13286464,-0.14033763,0.3809285,0.1636377,0.3148695,0.07940651,-0.3055082,0.3561456,0.8262055,0.11962257,0.33786294,-0.039868046,-0.09436902,0.18341926,0.0654247,0.03389454,0.09435343,-0.47365287,0.0009849886,-0.20496769,0.15391892,0.44624147,0.24757512,0.32974762,-0.023371927,-0.37427363,0.06492296,0.18830647,-0.2007095,-1.1155579,0.36360824,0.30249366,0.72390664,0.521015,0.09060478,-0.012019594,0.6117371,-0.27117833,0.0576276,0.3284856,-0.0062872567,-0.51303273,0.51780045,-0.7802691,0.6263257,-0.0051573594,0.030147342,-0.012876483,-0.17334563,0.44119796,0.87926847,-0.19578454,-0.12247222,0.023540573,-0.2702134,0.17693993,-0.36857447,0.009312018,-0.7820812,-0.35121137,0.5628423,0.43114832,0.27596018,-0.060471795,0.0047979974,0.051504184,-0.08997461,0.377934,-0.15135124,0.19335519,-0.1136542,-0.5891765,-0.23111755,0.46918467,0.021678584,0.09158481,0.005411709,-0.013004073,0.18359923,-0.15073833,0.082308546,-0.078213215,-0.46353644,0.045781307,-0.27126318,-0.31698084,0.4935597,-0.17022231,0.43121225,0.082586095,0.11252297,-0.19856735,0.42859346,0.098715656,0.58125657,-0.18827966,-0.18383828,-0.37703022,0.121020995,0.107334964,-0.15030135,-0.024156412,-0.08353995,-0.029348552,-0.53535527,0.6080047,-0.05913277,-0.18525237,-0.12521711,-0.31660333,-0.053895872,0.5329851,-0.12607735,-0.16276747,-0.23877287,-0.19127195,-0.2553035,0.0020876725,0.06912535,0.21285707,0.219039,-0.19916703,-0.07596661,-0.15217583,0.06477603,0.29518536,-0.09303102,0.1430301,0.3450404,0.023043258,-0.41629794,-0.18706504,0.023334129,0.37663373,0.054323316,0.031712424,-0.24548699,-0.47824746,-0.3750765,0.096485026,-0.20167086,0.41503504,0.10306986,-0.29105744,0.86830485,-0.006879298,1.2909596,0.06392775,-0.20575319,0.005447905,0.5988424,-0.065675825,0.05349519,-0.33150303,0.9551467,0.46229443,-0.22276191,-0.30790278,-0.28901175,-0.037972696,0.21760647,-0.19842958,-0.16702004,-0.014060676,-0.5738575,-0.25248167,0.30095768,0.3212854,0.27039638,-0.102362,0.036739636,0.26927528,0.14231864,0.4549978,-0.34917042,-0.39334965,0.27415878,0.25939935,0.050541975,0.19987275,-0.3736257,0.46163628,-0.53454876,0.18371709,-0.12867583,0.1284315,-0.11804444,-0.4013939,0.33701533,0.13350746,0.3406102,-0.26949614,-0.3603519,-0.254846,0.31963402,0.15865047,0.106979094,0.65057105,-0.23468596,-0.16011709,0.048282783,0.41235542,1.2456328,-0.17743969,-0.22116588,0.4326846,-0.26805693,-0.6976601,0.32499427,-0.31062278,0.045438394,-0.041849803,-0.28078476,-0.6157093,0.25815803,0.16545795,-0.11533426,0.100778796,-0.4727933,-0.15889594,0.09921374,-0.51681733,-0.21801755,-0.39300343,0.15357941,0.6524267,-0.2881561,-0.2288557,0.109932944,0.40489468,-0.37118423,-0.5013113,0.018024525,-0.21917433,0.3891234,0.019578703,-0.34066904,-0.03799689,0.1376839,-0.39738396,0.09636998,0.24561928,-0.40420622,0.17651701,-0.3771162,-0.13904543,0.7992793,-0.22667487,0.18950026,-0.40073395,-0.31658688,-0.6797436,-0.23482749,0.5457746,-0.085012645,-0.16499586,-0.42327386,-0.10046838,-0.005862373,-0.13260579,-0.09712776,-0.3667898,0.45524564,0.058709975,0.20587845,-0.073121436,-0.6189887,0.09134217,0.097942576,-0.032804377,-0.60098916,0.5773645,-0.2587648,0.67031723,0.19931473,-0.045019668,0.4189574,-0.3899818,0.17602184,-0.18763585,-0.2797573,-0.6572166,-0.067034416,820 +294,0.54643697,-0.12385285,-0.35530657,-0.1288866,-0.33544445,0.017316934,-0.13600722,0.4826475,0.26161188,-0.43300685,-0.23066317,-0.15849946,0.11002822,0.22149642,-0.18623258,-0.6901322,0.0063298387,0.25784424,-0.44898424,0.5388582,-0.4575489,0.38014907,0.04147782,0.4634411,0.26013845,0.133245,0.107679494,-0.15684667,-0.21645807,-0.3010183,-0.18693513,0.18832289,-0.5833115,-0.008415767,-0.24287233,-0.45570797,0.087360695,-0.37777594,-0.30696473,-0.88660836,0.314464,-0.81589997,0.4742804,0.014894839,-0.39247978,0.43708408,0.1503858,0.27252212,-0.16787641,-0.01666095,0.19438605,-0.29655233,-0.04582261,-0.1662618,-0.18344478,-0.32390505,-0.7453708,-0.05278258,-0.40323392,-0.14416462,-0.33649793,0.19395377,-0.35873756,0.040475406,0.036684927,0.43558976,-0.5192747,0.04385972,0.0838625,-0.056044366,0.4074292,-0.5326877,-0.23536743,-0.15095685,0.1332442,-0.22754717,-0.14354388,0.35263225,0.22119817,0.50261146,0.014685563,-0.17764759,-0.33998218,-0.06175112,0.028248783,0.47660726,-0.14316492,-0.36507553,-0.083679065,-0.26422456,0.22830983,0.27295342,0.14658332,-0.07045869,-0.14182884,0.08726244,-0.28909627,0.3227767,0.4219314,-0.32835135,-0.22772694,0.20609638,0.45293438,0.18082447,-0.17840746,0.007856132,-0.02342559,-0.41538367,-0.14892946,0.13554935,-0.41494668,0.61356264,-0.1742613,0.16811222,0.75254875,-0.2635943,0.06295149,-0.0068427236,0.2362354,-0.0824398,-0.18725412,-0.47588545,0.38042703,-0.6015923,0.2345448,-0.37689173,0.81216615,0.1299464,-0.5323142,0.27983126,-0.5749552,0.101952426,-0.06390608,0.6242888,0.6569721,0.44474158,0.6059986,0.5647041,-0.42343494,0.05765708,0.04888134,-0.25115603,0.06900694,-0.2595201,0.015646007,-0.4128546,-0.029373277,-0.0035128572,-0.12647733,0.13356143,0.49227557,-0.43582186,0.0009606083,0.17871422,0.83791643,-0.33694986,-0.029331561,0.74071467,1.0756986,1.2317961,0.0530216,1.0502932,0.3685158,-0.34654742,0.09789798,-0.1546064,-0.73689336,0.26138178,0.41465905,-0.17754309,0.28719658,0.1126026,-0.01762367,0.3467135,-0.54559124,-0.040252965,-0.091672756,0.19766179,0.034374185,-0.008478564,-0.4621622,-0.4051153,-0.08567135,0.06773742,0.02645183,0.4138902,-0.26522636,0.3998991,0.11394746,1.3880925,0.049002655,-0.05425523,0.11063144,0.5360288,0.1099926,-0.04760021,-0.08213285,0.30042705,0.2889106,0.13059977,-0.61287653,0.0563726,-0.2304153,-0.5215404,-0.15194324,-0.2780417,0.014156242,-0.018743277,-0.44964248,-0.20987205,-0.21583463,-0.24208142,0.29902261,-2.330948,-0.13704364,-0.014176186,0.29469487,-0.051597398,-0.3545804,-0.061174892,-0.6412676,0.45193297,0.3257754,0.41893488,-0.72718126,0.3297796,0.57015765,-0.4576546,-0.033894274,-0.71085995,-0.36991304,-0.08601999,0.23401734,0.01979233,0.0059294244,0.02188657,0.20586398,0.6024098,-0.03814483,0.20763893,0.2792811,0.38851917,-0.06596211,0.5012694,0.12442468,0.37219065,-0.083883986,-0.17733,0.3512908,-0.4351811,0.09632499,-0.07473009,0.08309816,0.5917647,-0.4003237,-0.9147071,-0.69132143,-0.2667497,1.1689402,-0.19969171,-0.4349531,0.30474675,-0.13049427,-0.17285083,-0.10162761,0.4941934,-0.2074772,-0.16749707,-0.76571107,0.08689152,-0.1427281,0.23980048,0.099418335,0.15492493,-0.31689772,0.71631265,-0.12615922,0.38659295,0.2166024,0.13966218,-0.27491787,-0.4630446,0.053604856,0.9059971,0.47320068,0.2121062,-0.41156763,-0.23590912,-0.34396917,-0.13270006,-0.030558832,0.37638855,0.82949865,-0.19245963,0.3109695,0.18571226,-0.0759399,0.0056619355,-0.27897456,-0.3399913,0.003373448,-0.00973327,0.45865005,0.6446257,-0.23929809,0.34985772,-0.07313039,0.35608444,-0.17855237,-0.45436636,0.5050513,0.9985936,-0.105777994,-0.14401963,0.71995354,0.55059236,-0.30510318,0.57466125,-0.71813774,-0.3897936,0.5216614,-0.21642421,-0.4066822,0.22046648,-0.39321646,0.19515231,-0.8054721,0.3088293,-0.30998728,-0.37712204,-0.5955666,-0.121357664,-2.921958,0.20756988,-0.2810849,-0.24440406,-0.18490794,-0.12712494,0.26835242,-0.57458556,-0.62845296,0.087089226,0.19590665,0.75035733,-0.019060267,0.055623434,-0.19284262,-0.4349359,-0.4131469,0.08460066,0.10934689,0.37655538,0.018247226,-0.50743204,0.040399607,-0.10405459,-0.5398143,-0.08249357,-0.5358026,-0.5531975,-0.14982322,-0.503138,-0.47489765,0.64518505,-0.23744322,0.18218456,-0.23088929,-0.19859606,-0.09827092,0.39578125,0.26849362,0.118635535,-0.17072107,0.050194826,0.08271285,-0.26263452,0.30224195,0.06696304,0.057862453,0.3567873,-0.09784564,0.13985313,0.42755535,0.64540505,-0.08029253,0.99675196,0.4279529,-0.07849083,0.37450036,-0.3039023,-0.3155471,-0.728469,-0.33375546,-0.12896572,-0.38479128,-0.31561956,-0.059614666,-0.4470759,-0.8817463,0.5686668,-0.10122129,0.2630104,0.005112167,0.24419406,0.40220705,-0.13014063,-0.14225462,-0.017154884,-0.109467775,-0.4796997,-0.19555204,-0.9120692,-0.46990332,0.10513899,0.912417,-0.1934479,-0.057614293,0.14168148,-0.1434391,0.0503698,0.18508309,-0.026108623,0.045324184,0.6233948,-0.04340531,-0.75642926,0.54691035,0.0959654,-0.1970082,-0.61916465,0.12954491,0.5569342,-0.8080969,0.52447164,0.45320836,0.033417635,0.006611681,-0.50581974,-0.19449173,-0.19069567,-0.23357563,0.41706246,0.23525228,-0.78645504,0.4140212,0.32099465,-0.2628539,-0.69479805,0.47283044,-0.032532953,-0.48419222,0.03503012,0.4017849,0.06105341,0.13560778,-0.16967468,0.21158499,-0.5649877,0.2716575,0.36469883,-0.10974614,0.27996936,-0.1172711,-0.07700697,-0.91420335,0.11978502,-0.4512511,-0.33439973,0.030416556,0.05525303,-0.06652919,0.44378337,0.21462873,0.42378566,-0.18286228,0.027394557,-0.15836348,-0.27208838,0.3302479,0.49469158,0.50597537,-0.2968167,0.7034286,0.04443674,-0.2965848,-0.23048131,0.015364041,0.47590813,0.033136822,0.44334075,0.094507985,-0.38210008,0.26787055,0.6428425,0.27168044,0.56438583,0.03486294,-0.052402664,0.31765303,0.18691197,0.25309426,-0.021681882,-0.4041581,0.07265676,-0.28173837,-0.00082768203,0.67209816,0.07096968,0.3327482,-0.099895,-0.1784837,0.06337019,0.106242865,-0.18175848,-1.3369062,0.25689137,0.191768,0.8470448,0.6484141,-0.036681794,0.053013172,0.6046168,-0.394496,0.00516787,0.3595732,0.13448158,-0.5036003,0.7141711,-0.7263513,0.3766915,-0.19825855,-0.029439835,-0.022877185,-0.09859301,0.4694551,0.81857,-0.15338324,-0.09558703,-0.021651864,-0.38423213,0.28445432,-0.4570244,0.032742493,-0.5592807,-0.21191566,0.71835047,0.46098194,0.27577457,-0.25142318,0.1258704,0.017538596,-0.19716834,0.2515882,0.079067275,0.08421299,-0.071054235,-0.5377699,-0.21989599,0.6280154,-0.18762307,0.105168454,0.0053507825,-0.17723867,0.11781541,-0.073994994,-0.060678102,0.019995935,-0.77913207,-0.16698869,-0.33279338,-0.31950104,0.56305146,-0.0027269283,0.2608537,0.26328692,0.087887056,-0.41040233,0.21122466,0.38604638,0.45317274,0.0499161,-0.15433301,-0.26145503,0.26930633,0.20842189,-0.1619168,-0.10331441,-0.089526795,-0.0049479483,-0.43913758,0.48498344,-0.14411242,-0.1352727,0.02329553,-0.18973422,0.013031805,0.521592,-0.18450099,-0.13225554,-0.14324659,-0.13971648,-0.18614931,-0.16610645,-0.14506121,0.20440865,0.052441232,-0.15596841,-0.14247985,-0.033063583,-0.07970905,0.4484616,-0.11925158,0.34367856,0.4292352,-0.07914814,-0.4423764,-0.12927128,0.083912134,0.51196784,-0.090727255,-0.108296596,-0.33147132,-0.5004543,-0.29468247,0.2619986,-0.20017196,0.35959095,0.07721696,-0.26227537,0.9623578,0.068032645,0.9587101,0.022869598,-0.44419545,0.12695572,0.5087237,-0.18515907,-0.031664014,-0.357099,0.96079624,0.35975924,-0.23448196,-0.17191921,-0.32917148,0.043494917,0.26517177,-0.1446279,-0.23084001,-0.043659315,-0.6831817,-0.30481973,0.25922173,0.3300148,0.047806263,-0.0958859,0.10638562,0.28266746,0.15925832,0.4426533,-0.5434632,-0.12134402,0.38372105,0.15114494,0.06904211,0.26116008,-0.30779496,0.40851307,-0.43131134,0.012225393,-0.31654125,0.12627035,-0.2479151,-0.45579034,0.30268288,0.27058172,0.33101243,-0.30160853,-0.39284325,-0.29818347,0.3906848,-0.0007582823,0.1542124,0.49851927,-0.3409072,0.12238469,0.006254093,0.484574,1.196656,-0.18469034,0.0014105876,0.3138142,-0.52092725,-0.6177797,0.42843083,-0.27936834,-0.023260422,0.044930812,-0.24967271,-0.67126286,0.14646748,0.17532654,-0.023639647,0.25600353,-0.47601998,-0.2446659,0.3335368,-0.33775792,-0.27532005,-0.23796898,0.16363375,0.54361904,-0.3308564,-0.23332097,0.05382123,0.20354429,-0.24301116,-0.50610834,-0.09423717,-0.43015465,0.53165656,0.15299001,-0.3676397,0.1101227,0.16852376,-0.4243511,-0.037679173,0.2740712,-0.35560125,0.095990315,-0.47276866,0.105706915,0.94231623,-0.10451182,0.05437055,-0.5260674,-0.47331774,-0.8530933,-0.41452536,0.6342898,0.226122,0.061384298,-0.55373794,-0.032924294,-0.12951052,-0.03688928,0.021673901,-0.46551672,0.446879,0.2966143,0.2501926,0.0015987594,-0.8089186,0.014331385,0.043485533,-0.28121156,-0.5012971,0.51960737,-0.1151674,0.7964476,0.15078205,0.068708055,0.21482521,-0.37386268,0.08624579,-0.15276909,-0.16822895,-0.60752404,0.0069794934,828 +295,0.42923623,-0.27426142,-0.4594677,-0.13930877,-0.09435058,0.08589523,-0.15908219,0.6050778,0.06937013,-0.25259382,-0.090601206,-0.058118675,-0.114530705,0.31149858,-0.082405165,-0.47502878,0.055510897,0.16002303,-0.5206989,0.69853187,-0.2612626,0.19147748,-0.19806251,0.40678012,0.03710349,0.35510913,-0.03211439,-0.097579926,-0.1870621,-0.029262984,0.029547326,0.10894832,-0.4056432,0.19305064,-0.29212534,-0.23253495,-0.027285617,-0.3516695,-0.48321623,-0.67128366,0.10691937,-0.7048761,0.5366459,0.037419114,-0.33492962,0.1685461,0.09269322,0.29316086,-0.3416026,0.026475005,0.02773666,0.09981179,0.006310725,-0.18158713,-0.1428237,-0.5610924,-0.4402869,0.07115669,-0.4962915,-0.007066866,-0.10029469,0.115644895,-0.25491858,-0.16349323,-0.09494761,0.42024007,-0.3525453,0.07559864,0.23713274,-0.03669137,0.16463844,-0.5649618,-0.194851,-0.16585799,0.31496096,0.033824015,-0.12547724,0.35851792,0.20945151,0.50003487,-0.15227339,-0.082206555,-0.27922657,-0.09412669,0.036556292,0.429986,-0.18452603,-0.5949304,-0.09851883,-0.0473298,0.21036711,-0.033493917,0.11894799,-0.1173089,-0.081864096,-0.07637002,-0.26657346,0.29067937,0.6015867,-0.31304333,-0.24958465,0.42934614,0.5833741,0.23720144,-0.28560933,0.005618453,0.053510185,-0.352174,-0.118667714,-0.0025845964,-0.12169734,0.53477836,-0.046009973,0.2697758,0.59686565,-0.074827924,0.0856346,0.101893775,-0.018838238,-0.12947337,-0.10117933,-0.27954668,0.045836236,-0.27965963,0.05007933,-0.21061204,0.4477113,0.15109086,-0.71768,0.35165918,-0.49524632,0.14849177,0.052205857,0.4677077,0.75264496,0.3960546,0.2322771,0.5226307,-0.19059747,0.12211009,0.039208665,-0.21512906,0.13357712,-0.21229763,-0.06605049,-0.5742931,0.07770593,0.16812979,-0.23916319,-0.015807223,0.2092247,-0.48149928,-0.12071821,0.28716904,0.89507073,-0.2130194,-0.103509516,0.63322383,1.0339812,0.9603551,0.06305425,1.0327448,0.30350295,-0.24701948,0.3578419,-0.38897222,-0.6490101,0.23258752,0.35249048,-0.111623146,0.51569855,0.034035444,-0.19246082,0.4573761,-0.4016923,0.06447964,-0.2626316,0.057214793,0.086246885,-0.12053121,-0.42304662,-0.27215344,-0.20338467,-0.055705156,0.17039165,0.3215536,-0.22192033,0.35917524,0.0017093023,1.7401701,0.059506185,-0.0061769485,0.06628115,0.65205,0.1417258,-0.17816792,-0.016107686,0.33631885,0.3627461,0.07214319,-0.523603,0.24186355,-0.2551038,-0.5465459,-0.15520388,-0.3053061,-0.07377145,-0.13940836,-0.48690504,-0.1388395,-0.022357576,-0.19961093,0.330242,-2.928391,-0.15528962,-0.18624324,0.34272906,-0.22671418,-0.2123436,-0.18694565,-0.3515905,0.28660247,0.4292799,0.43135312,-0.6225943,0.49526584,0.32458866,-0.52938724,-0.064443514,-0.5599538,-0.06251896,-0.090789795,0.4567551,0.0283004,0.048696622,0.25882852,0.26061717,0.41358414,-0.1056631,0.034157835,0.19483967,0.35260475,-0.01747034,0.30799478,-0.093405694,0.37332132,-0.24959993,-0.16580422,0.23619206,-0.43517786,0.26678935,-0.06302509,0.1406314,0.44941092,-0.47499287,-0.8922129,-0.6620258,-0.04866406,1.108721,-0.20884241,-0.35993546,0.117077984,-0.51545364,-0.20755298,-0.16505295,0.5924748,-0.1277503,-0.035177425,-0.7638493,-0.01364156,-0.21488781,0.1687429,-0.019874116,-0.0009692709,-0.3853096,0.6625644,-0.048886735,0.6129805,0.18282524,0.15323094,-0.17267182,-0.44453132,0.15230341,0.67217326,0.37556687,0.05665303,-0.18351912,-0.24989888,-0.3418701,0.11106823,0.15634972,0.5003624,0.4974778,-0.0643085,0.16538332,0.16609268,-0.11191262,0.047845285,-0.1621104,-0.2156784,-0.11912294,0.11029541,0.6059218,0.73083574,-0.35425663,0.52207434,-0.1658071,0.21459743,-0.25031477,-0.45057878,0.63452953,0.75577337,-0.27883017,-0.19042355,0.55558646,0.6089027,-0.3230737,0.39887658,-0.7086872,-0.2983019,0.39602214,-0.16359352,-0.21660924,0.30545643,-0.29397318,0.24585596,-0.9889027,0.37200114,-0.25440624,-0.3679415,-0.65812624,-0.04403523,-2.9730365,0.13560958,-0.09752546,-0.3124963,-0.06527646,-0.13265795,0.3660444,-0.6180059,-0.4052847,0.14283219,0.1169048,0.5855643,0.032514673,0.01090413,-0.2680151,-0.321064,-0.287416,0.13763301,0.17066093,0.37087262,-0.08188281,-0.47820526,-0.20310524,-0.105482735,-0.25877383,0.094128385,-0.6165931,-0.3289419,-0.23719199,-0.4935962,-0.14908774,0.6079952,-0.12948106,0.06559126,-0.27151647,-0.018717997,-0.24811038,0.355597,0.11319787,0.014152909,-0.047509782,-0.09024815,0.15504226,-0.25565705,0.27674758,0.112130016,0.36730927,0.29724884,-0.12618665,0.205559,0.63340354,0.5878958,-0.1469581,0.6378111,0.579438,-0.12837899,0.46309173,-0.27056494,-0.10962944,-0.39270625,-0.3062604,0.06271212,-0.29878932,-0.5186597,-0.08793643,-0.49550867,-0.7769403,0.40323672,-0.17338131,0.063529395,-0.009188638,0.2018815,0.61211264,-0.15785065,0.056519426,0.051696405,-0.13849674,-0.4255656,-0.3407493,-0.5162793,-0.35549542,0.11817146,1.0718484,-0.202622,0.0041472437,0.031811003,-0.2983782,0.018030886,0.049045697,0.06520005,0.11487662,0.32913885,-0.2508647,-0.6267044,0.39726242,-0.2515617,-0.22136383,-0.43831107,0.17872575,0.5784513,-0.60157776,0.5299016,0.3177687,0.05047638,-0.17995715,-0.5009394,-0.11334933,-0.010540309,-0.105722,0.25006017,0.14321586,-0.75688666,0.3233453,0.22082734,-0.2507436,-0.52612555,0.4661377,-0.007296749,-0.27342588,-0.013919136,0.27128708,-0.048891257,-0.03437174,-0.43572202,0.20875518,-0.30810255,0.1605435,0.24730653,-0.083521485,0.33233395,-0.112663776,0.03792775,-0.6930524,0.020963876,-0.4347064,-0.32263774,0.346683,0.18245094,0.29618508,-0.060399756,0.009329834,0.30161896,-0.31820887,0.08886186,-0.030545648,-0.26560524,0.35021025,0.4108743,0.4554231,-0.5022188,0.663011,0.07832204,-0.15009648,0.0010846456,0.11575878,0.40422815,0.10755715,0.37418506,0.04206003,-0.22929856,0.25206554,0.7549129,0.2544612,0.55075055,0.11199136,-0.216394,0.25220543,0.0029627234,0.09337525,-0.062005077,-0.3668854,-0.063084885,-0.13313611,0.2563291,0.3780424,0.08566983,0.27529636,-0.11484971,-0.22761948,0.10791291,0.22197492,0.099624306,-1.398056,0.39771894,0.36519712,0.86322796,0.30044603,0.026915153,-0.03415346,0.7190328,-0.13427046,0.084579594,0.33599758,-0.07114235,-0.5425006,0.57252187,-0.6499938,0.4951795,0.06887771,-0.06487568,-0.049853735,-0.040225983,0.3920171,0.7756139,-0.09578156,0.051809654,0.013258268,-0.39862388,0.0016704401,-0.192199,0.2032335,-0.5269853,-0.2476894,0.5447694,0.51451075,0.33963272,-0.17262818,0.051913165,0.06673282,-0.14388786,0.20248026,-0.053880833,0.05547433,-0.15647787,-0.7868622,-0.15975729,0.5071334,-0.3247246,0.10541272,0.11612868,-0.32318908,0.21289498,-0.06622876,0.0855314,-0.006562466,-0.51084554,0.07568259,-0.2144502,-0.3066499,0.6567116,-0.22188698,0.29586658,0.15436253,0.05211418,-0.24070397,0.33837086,-0.01742936,0.6656847,-0.07940354,-0.22537549,-0.47152394,0.09138673,0.16197734,-0.2914094,-0.1516687,-0.38282776,0.038534716,-0.37224418,0.3881748,0.038381875,-0.20993294,-0.03918559,-0.16070274,0.08559019,0.45141086,-0.12262215,-0.22268753,-0.13192298,-0.096114956,-0.39973357,-0.098251946,-0.053082235,0.40332317,0.31185248,0.0022021015,-0.07050255,0.038818408,0.007901589,0.46654433,0.06821724,0.33038273,0.53080595,0.20017181,-0.27784312,-0.087209396,0.18584386,0.47936672,0.14324825,-0.021338169,-0.4264074,-0.42026728,-0.35151199,0.10361527,-0.1933007,0.28136608,0.17592779,-0.21289629,0.6744888,-0.0075253886,1.219989,0.07327895,-0.3570534,0.22702004,0.4196025,0.04271159,0.10875646,-0.43048677,0.9017306,0.5274294,-0.04818901,-0.13523698,-0.30451828,-0.1675542,0.11364821,-0.2305473,-0.23338103,0.013900518,-0.67015964,-0.2548037,0.16976981,0.19132315,0.25528303,-0.054805472,0.06419982,0.11337788,0.05858608,0.23168853,-0.4628889,-0.20561878,0.23914689,0.18727295,-0.01529309,0.10934622,-0.4420389,0.40031892,-0.5396146,-0.03790439,-0.33562025,0.14593953,-0.07835782,-0.36131805,0.17800769,-0.065692864,0.3862235,-0.34977537,-0.31192285,-0.23144825,0.5680167,0.07548874,0.1386172,0.45441914,-0.21585956,-0.04420321,0.094195195,0.53069264,1.0003542,-0.36737728,0.04103655,0.45968926,-0.3311935,-0.70723534,0.22915097,-0.30366543,0.34701443,-0.04541498,-0.22481495,-0.5432361,0.3818217,0.17513323,0.078611486,-0.14314954,-0.5162886,-0.26056042,0.22789502,-0.32356614,-0.22193053,-0.36935493,-0.005982741,0.54824907,-0.21588193,-0.32878482,0.059134007,0.20217942,-0.19282463,-0.51930964,0.010950676,-0.39974988,0.2450171,0.11161731,-0.31219962,-0.16388282,-0.04278775,-0.42511025,0.33434853,0.11138891,-0.38078254,0.07926916,-0.4319994,-0.15688889,0.9854403,-0.23011294,0.10094659,-0.5257037,-0.4806474,-0.71870863,-0.5430361,0.35282496,0.19997902,-0.061972,-0.582812,0.09172379,0.061414722,-0.026845535,-0.15934692,-0.28936476,0.38854158,0.14731869,0.35025206,-0.10549291,-0.79020816,0.2030252,0.025552472,-0.15332174,-0.5620048,0.47563255,-0.0015444278,1.0056552,0.124306366,0.2266745,0.24743108,-0.43937486,-0.17378168,-0.18623243,-0.15736605,-0.6476566,0.045214638,836 +296,0.669592,-0.34641063,-0.7271357,-0.1275101,-0.26873365,0.025583168,-0.3524104,0.50998753,0.14044212,-0.65467244,-0.034407355,-0.119208016,-0.06731855,0.3430974,-0.21991827,-0.5795744,-0.16084446,0.03592288,-0.45662433,0.5407147,-0.3647407,0.44008607,0.16869444,0.23454955,0.3082456,0.19083765,0.11063661,0.09227052,-0.38770422,-0.038855445,0.10622738,0.34657466,-0.70853096,0.19300124,-0.22902104,-0.4799595,-0.12884897,-0.38539633,-0.21624742,-0.7735082,0.3287337,-0.8678305,0.6047758,-0.2100868,-0.4257701,0.09556146,0.06565127,0.4766958,-0.029803833,0.026392126,0.16270116,0.16508299,-0.1193153,-0.012209777,-0.36958936,-0.47571805,-0.69836354,0.15083465,-0.55792046,-0.20021087,-0.114914276,0.17788313,-0.29565457,0.15030266,-0.13891767,0.6443157,-0.3333193,-0.17991835,0.3303395,-0.03439878,0.44094238,-0.7352382,-0.115374394,-0.24697559,0.19322583,-0.33853278,-0.23332705,0.23244376,0.42980728,0.5834984,-0.010813673,-0.2158057,-0.5141912,0.049022183,0.12712562,0.29802322,-0.2132385,-0.49260846,-0.16081175,0.086265296,0.38352653,0.15196864,0.28856608,-0.2549095,0.0668036,0.29299483,-0.27659282,0.6670541,0.42766494,-0.381868,-0.14760898,0.25668967,0.85484916,0.31587225,-0.1271005,0.14759092,0.00616077,-0.6082571,-0.087756775,0.35156882,-0.03522028,0.53088343,-0.026088757,0.17758504,0.63518196,-0.2794715,0.018564982,0.10003617,-0.08508174,-0.04097583,-0.3100782,-0.33609766,0.26162413,-0.4880425,0.04970503,-0.2970923,0.71919096,0.07069834,-0.852019,0.39321703,-0.5194089,0.017892996,-0.05040942,0.4930268,0.73897195,0.5951816,0.11495917,0.7094233,-0.48510304,0.008742278,-0.17418247,-0.3526969,0.06274212,-0.3264844,0.07503714,-0.50752515,-0.15834387,-0.10119298,-0.15254799,-0.014230998,0.6097632,-0.5421148,-0.08075058,-0.10782124,0.8391276,-0.3160702,-0.3089114,0.82518643,0.88644004,1.0112196,0.011938763,1.1152512,0.2493221,-0.19990733,0.30987814,-0.31043437,-0.61354727,0.47587445,0.45324865,-0.24497007,0.52166647,-0.027882012,0.118833385,0.5021731,-0.18817554,0.189543,-0.114351384,0.10200084,0.12562804,-0.22657862,-0.50101537,-0.12041424,0.059747245,0.020585267,0.058763556,0.1491923,-0.053923734,0.5755784,0.1963098,1.8063494,-0.2918981,0.139125,0.20074296,0.30794588,0.06339044,-0.21513796,0.022003952,-0.13057879,0.35912275,0.18049018,-0.52291846,0.12863263,-0.1747348,-0.49696288,-0.23463097,-0.33070418,0.021238025,-0.25282514,-0.5451707,-0.007329782,-0.008539303,-0.35232344,0.38654354,-2.3151398,-0.29908782,-0.18882759,0.24108757,-0.42026168,-0.7298743,-0.115505666,-0.55417407,0.44144967,0.30462503,0.44707,-0.6344278,0.4362782,0.36778107,-0.4307493,-0.05451586,-0.70693517,-0.1543866,0.010975056,0.19179782,0.003932174,-0.35584685,0.12147843,0.30013874,0.52150935,-0.29432485,0.018241467,0.26650095,0.40910423,-0.018718235,0.8527225,-0.0077308617,0.45757625,-0.29418212,-0.24036105,0.59726703,-0.2616936,-0.008013376,0.17409338,0.16811457,0.30625808,-0.5191476,-1.024796,-0.82669437,-0.45165253,0.97115046,-0.14749558,-0.5122689,0.10481666,-0.25670582,-0.41116586,-0.18032952,0.33177403,-0.008516264,0.07192176,-0.9240663,-0.04641246,-0.23528567,0.17908607,-0.09109688,0.060143176,-0.5051476,0.65200603,-0.034384917,0.34532794,0.49592736,0.19342607,-0.3564834,-0.64025664,0.07802798,1.3295354,0.3663022,0.1548211,-0.41490397,-0.18594806,-0.5295524,0.20301326,0.085292846,0.390532,0.7867129,0.09918801,0.027545197,0.16106148,-0.06514553,0.07945175,-0.11985739,-0.39009696,-0.2880622,-0.001344798,0.6621448,0.5444676,-0.096150555,0.69151247,-0.2481537,0.21532099,-0.15317683,-0.52636814,0.60317135,0.8960082,-0.19401798,-0.44987634,0.5525122,0.3420237,-0.24665152,0.48609826,-0.5671257,-0.2820954,0.35032266,-0.13714142,-0.43125382,0.3570505,-0.3829931,0.13116117,-1.1665803,0.19773522,-0.48130867,-0.2709055,-0.60041153,-0.2966643,-2.588324,0.27371246,0.01144858,-0.18702799,-0.05839807,-0.3022623,0.31731427,-0.6937626,-0.7600307,0.05671514,0.134833,0.7270659,0.084884755,0.002418955,-0.2312936,-0.24042276,-0.11382365,0.22756772,0.38580576,0.23033364,0.14013423,-0.52806306,-0.18209018,-0.32058683,-0.4468881,0.06396424,-0.6938204,-0.8001957,-0.20669954,-0.5323594,-0.43883452,0.72854704,-0.47594208,0.042777415,-0.07536702,0.0063642543,0.14371566,0.42357937,-0.053053323,0.20345488,0.13419929,-0.14161198,-0.016288936,-0.26227686,0.09928382,0.22374524,0.3674759,0.35437545,-0.44863757,0.50242454,0.68916,0.9826847,0.107456304,0.7370672,0.6632916,-0.040777273,0.37439433,-0.23703726,-0.19812982,-0.6940721,-0.12551534,-0.07886618,-0.48414987,-0.39075103,6.447633e-05,-0.43750185,-0.8517071,0.79612947,-0.1668388,0.05658018,-0.06549735,0.38959986,0.460186,-0.2444838,-0.049680028,-0.13776724,-0.18308856,-0.49067897,-0.5288582,-0.5888729,-0.8197971,-0.06745457,1.3007965,0.0253738,0.03939011,0.06348678,-0.11347934,0.08198336,0.18148318,0.016197715,0.170379,0.48167303,-0.11375085,-0.63029975,0.32828522,-0.12802269,-0.18335861,-0.57909447,0.12179411,0.7524199,-0.54568875,0.24225283,0.28996927,0.06345891,-0.20581953,-0.57158965,-0.016090421,0.12921208,-0.3470702,0.52725416,0.19986653,-0.6365868,0.40720552,0.39546436,-0.23003021,-0.69372165,0.65297717,0.20257537,-0.10291322,-0.06507945,0.39068764,0.12189637,0.0442759,-0.29246932,0.22713037,-0.454907,0.09231586,0.37926522,-0.068095095,0.36253324,-0.23207916,-0.17261927,-0.72902656,0.1544447,-0.45994267,-0.41285577,0.24479093,0.08673759,0.23170736,0.2824778,0.10168428,0.46078864,-0.34664047,0.045814347,-0.12268143,-0.26397568,0.35719696,0.46088588,0.38549456,-0.4881587,0.40259698,0.011026112,0.030751593,-0.12421752,-0.021059068,0.53569347,0.039210018,0.2310904,0.110144466,-0.14561293,0.2580286,0.7930927,0.19414835,0.49938947,0.053561892,-0.2625757,0.05828586,0.050099365,0.22541708,0.020208208,-0.5700009,-0.005057462,0.08971299,0.11968325,0.57428837,-0.05527153,0.23022327,-0.3066101,-0.40531,0.048903372,0.17424367,-0.13576443,-1.4576592,0.39103082,0.20339395,0.79143035,0.38683465,0.017863575,0.16129923,0.49431324,-0.27488622,0.2174251,0.38250795,-0.053321667,-0.46070063,0.5686958,-0.70883334,0.4319376,0.031880658,0.13989298,-0.07984562,-0.102348454,0.540471,0.80861783,-0.11415787,0.14666146,-0.13069418,-0.11547623,0.0660304,-0.3916314,0.12424843,-0.4290657,-0.12744644,0.85381,0.4126487,0.4103885,-0.035884786,0.015131899,0.17733027,-0.24015665,0.18048249,-0.25097033,0.07333896,-0.035429064,-0.53326833,-0.23327151,0.5550378,0.37809297,0.042051084,-0.033948023,-0.27552015,0.17433567,0.078076705,0.017786857,-0.13533898,-0.7037134,-0.1072572,-0.6499317,-0.3488169,0.43184298,-0.10009925,0.116359755,0.19244266,0.07512197,-0.38164252,0.46523038,0.1464325,0.7106848,0.004074947,-0.19309276,-0.3687589,0.11026597,0.25589272,-0.3342956,-0.16678019,-0.24552996,0.2856811,-0.7058881,0.28344026,-0.00060403347,-0.4776924,0.037260536,0.05627064,0.034136925,0.44848588,-0.35390118,-0.039139587,0.104571424,-0.03147314,-0.025413794,-0.33050504,0.055394463,0.27664375,0.12411176,-0.039793238,-0.08309914,-0.11515465,0.010572505,0.39458168,0.14690647,0.31695664,0.59632176,0.2465442,-0.5121371,-0.008160353,0.37251064,0.60029846,-0.006435162,-0.16787173,-0.5094922,-0.317508,-0.32815933,0.43449694,-0.12084527,0.27645028,0.057936404,-0.481464,0.8960108,0.098167725,1.4258448,0.019264508,-0.5024432,0.17416124,0.42134923,-0.039173607,-0.07630291,-0.5442328,0.918186,0.49275112,-0.05945375,-0.12796474,-0.4286548,-0.05364519,-0.046803202,-0.24056624,-0.15453915,-0.24849387,-0.6606293,-0.30251357,0.2955344,0.30752736,0.08606086,-0.1789705,0.23656793,0.17479089,-0.12082607,0.38582236,-0.44083956,0.014677814,0.13062814,0.37327814,-0.1447301,-0.054141838,-0.49574706,0.32972315,-0.66976535,0.10292261,-0.41881835,0.21229228,0.048871074,-0.36523777,0.27990285,-0.095658936,0.30677974,-0.32998678,-0.45420888,-0.2996859,0.59668165,0.0337153,0.14633827,0.7053918,-0.19797726,0.22686593,0.013201336,0.4516633,1.2480983,-0.16438745,-0.035469815,0.27833888,-0.23474291,-0.4956574,0.2891599,-0.3788193,0.52452177,-0.16156875,-0.22091551,-0.47870985,0.19227448,0.18849452,-0.037074026,-0.04318484,-0.44151497,-0.20591617,0.2900856,-0.41523784,-0.24670427,-0.3088114,0.052089628,0.5350366,-0.37224838,-0.33035153,0.019142976,0.44616222,-0.14405702,-0.28988448,-0.11991276,-0.2791932,0.26091647,0.2156746,-0.318797,-0.07344155,0.06863586,-0.48927882,0.09289854,0.49227524,-0.40093157,0.025467504,-0.22734505,-0.13450575,0.9346519,0.07109773,0.118304715,-0.46210563,-0.46410143,-0.9811869,-0.27497196,0.27026546,0.14328569,-0.029633526,-0.7943733,-0.014514113,-0.29195347,-0.0053412276,0.062841214,-0.33873805,0.4229645,0.1355825,0.6225846,-0.24926907,-0.71403843,0.07293034,0.16893181,-0.10634224,-0.5485572,0.5626784,0.016595948,0.82827026,0.049568407,0.26085898,0.33470994,-0.6881837,-0.09980893,-0.23767088,-0.11094477,-0.7657524,0.004652397,837 +297,0.36219198,-0.21507937,-0.5592786,-0.2156264,-0.5001799,0.018489378,-0.33104813,0.3096626,0.1758578,-0.077002525,-0.17149182,0.0015302419,0.01935914,0.28297985,-0.16377096,-0.5166024,-0.26105198,0.09016748,-0.83997226,0.52258664,-0.5649702,0.38612023,0.1446734,0.38983983,0.16394173,0.3365627,0.2593523,-0.031505845,-0.040009014,-0.1244607,-0.30662537,0.48060516,-0.61198616,-0.06886565,-0.2160287,-0.47322312,0.078396685,-0.4725704,-0.12219,-0.7446917,0.2850557,-0.87509596,0.50488466,-0.1328724,-0.15164988,0.12893274,0.41781524,0.30058974,-0.25423557,0.040283673,0.2357281,-0.16234377,-0.19057284,-0.20383173,-0.007731144,-0.31963834,-0.49198106,0.024913156,-0.72422194,-0.29824826,-0.20355007,0.21503447,-0.3194018,-0.02733643,-0.2881316,0.41787246,-0.4370273,-0.13526684,0.18385293,-0.18377584,0.31267786,-0.53820825,0.02101024,-0.057088867,0.5522793,-0.11580256,-0.075736314,0.29589936,0.4367291,0.33554846,0.14875898,-0.37113714,-0.297036,-0.16142327,-0.072990194,0.41431364,-0.21179001,-0.433589,-0.14642794,0.03512024,0.4606213,0.4948543,0.026738051,-0.112396464,0.12740551,-0.005602678,-0.2531633,0.64361674,0.5322478,-0.37190965,-0.33051598,0.35261616,0.54212576,0.33802396,-0.27473876,-0.04262611,-0.121479064,-0.58940184,-0.06974074,0.15940121,-0.10479137,0.41979548,-0.088134885,0.16806443,0.8081053,-0.04401796,0.038709242,-0.062292982,-0.16174826,-0.20451434,-0.23930927,-0.23075622,0.18571374,-0.5731669,0.06851129,-0.2016876,0.6294171,-0.038858533,-0.8064407,0.36621732,-0.6151112,0.16660471,-0.05642585,0.6499867,0.7264702,0.46609437,0.44233656,0.7307452,-0.105146475,0.13889058,0.055547215,-0.5342349,-0.015209361,-0.25793532,0.18728907,-0.51373726,0.14006968,-0.1193423,0.10360878,0.072042175,0.49434727,-0.6371983,-0.22321157,0.18559885,0.6648079,-0.3512731,-0.036326077,0.8415693,1.0457247,1.0531617,0.051692333,1.0420139,0.32448578,-0.27595624,0.14427117,-0.3343474,-0.49080876,0.17669319,0.58745027,-0.31646302,0.41699016,-0.20733309,0.01663487,0.44555002,-0.32552192,-0.10343884,-0.11191751,0.113703564,0.12559332,-0.031616993,-0.45810884,-0.21836124,0.1204573,0.024300823,0.19319911,0.17711093,-0.19076777,0.36497495,0.017777124,1.2511953,-0.20637137,-0.00076272886,0.067437455,0.67216957,0.37845972,-0.11496773,-0.14349853,0.3546688,0.5339462,0.0013146003,-0.6295035,0.24385111,-0.34534168,-0.37946936,-0.13545926,-0.38689443,-0.10477028,0.089219816,-0.43279764,-0.1781778,-0.049107805,-0.26110354,0.31224298,-2.8273213,-0.18107647,-0.26905283,0.17123856,-0.25186422,-0.23035164,-0.007639444,-0.5985067,0.2882042,0.2898437,0.4469051,-0.58966315,0.4341393,0.53126824,-0.58735424,-0.23236948,-0.8094401,-0.15586121,-0.07082202,0.47370064,0.07339612,-0.2322425,-0.11128799,0.26044723,0.74352276,0.08010943,0.32919157,0.4219474,0.45362574,0.026325772,0.6689464,0.11360483,0.615145,-0.3051866,-0.2591677,0.41567802,-0.22813769,0.017547766,-0.14492597,0.14242499,0.57562536,-0.47156844,-1.0799564,-0.5755571,-0.14767198,1.1005807,-0.44288498,-0.51069415,0.20374899,-0.13193497,-0.018856283,0.11316417,0.62956655,-0.18701203,0.12187091,-0.7773225,0.2545291,-0.13638276,0.09129489,0.018464351,0.010989074,-0.44655022,0.6053103,0.033927638,0.5352924,0.21808773,0.29724458,-0.34280145,-0.35938877,0.13826412,0.77322096,0.33007115,-0.1709018,-0.17611767,-0.2146742,0.016448831,-0.10898379,0.013442864,0.4894944,0.72874695,0.028622894,0.16330053,0.28499117,-0.028648678,0.08544803,-0.1792085,-0.10595504,-0.08804102,-0.0020408442,0.5018595,0.5819508,-0.090443,0.5867579,-0.23954555,0.31699732,-0.05521712,-0.645181,0.7223526,0.6296858,-0.14520551,-0.049586426,0.6574374,0.54937446,-0.36872548,0.5294387,-0.6864159,-0.29651314,0.71572274,-0.1771606,-0.5179456,0.21023335,-0.2599797,0.09766881,-0.8246969,0.18049598,-0.3385395,-0.27565053,-0.33246562,-0.12278892,-3.5222838,0.15890451,-0.099631555,-0.016067911,-0.44566235,-0.31591886,0.3124953,-0.64415276,-0.6133997,0.18974614,0.30978405,0.48815188,-0.09793904,0.08953234,-0.21865977,-0.35314068,-0.11387246,0.27419516,0.17238222,0.30149782,-0.16870521,-0.42957047,-0.06684429,-0.048233192,-0.61859024,0.03164677,-0.55521363,-0.43349034,-0.09612013,-0.66675746,-0.2605857,0.6281651,-0.2623521,0.046780664,-0.30633262,0.060977172,-0.11401327,0.23209412,-0.008259235,0.3202428,0.12884519,-0.08532294,0.31422234,-0.35638434,0.5006484,-0.18370722,0.2976504,0.054667473,0.11302934,0.18231492,0.48423067,0.66562265,-0.26587403,1.0924901,0.48624033,-0.074350476,0.26639432,-0.27234942,-0.25829864,-0.7732032,-0.35460085,-0.07545492,-0.44560087,-0.40463334,0.073207565,-0.26179802,-0.76246643,0.7736103,-0.067321524,0.4618916,-0.1676876,0.4582052,0.476704,-0.20061421,-0.0452893,-0.06784412,-0.18372707,-0.5293362,-0.1542655,-0.7728236,-0.53919095,-0.1254756,0.80629563,-0.3095212,0.041707266,-0.004900551,-0.23091513,0.17065087,-0.04515934,0.26364282,0.36724204,0.55663097,-0.030512368,-0.72503054,0.3527984,-0.1429534,-0.09575259,-0.42155704,0.1366238,0.5692308,-0.74385446,0.53142154,0.43538272,0.0754873,-0.03960784,-0.6288923,-0.16255197,0.13175891,-0.06528727,0.62205833,0.2722061,-0.95084727,0.6437185,0.349123,-0.3382447,-0.7317918,0.42084143,-0.0878941,-0.26300237,-0.18206714,0.40075362,0.16442433,-0.03266265,-0.20641455,0.08753227,-0.45270061,0.33468243,0.12151361,-0.07110984,0.44765165,-0.20629518,-0.36228102,-0.7440566,-0.044885796,-0.52009785,-0.24984995,0.3516194,-0.11845536,0.04311035,0.08876876,-0.14314625,0.4061308,-0.26865852,0.104021624,0.035017796,-0.2217848,0.19458859,0.46956977,0.2672343,-0.47814587,0.53800815,0.18846127,-0.33415908,-0.011527745,-0.12465904,0.38232562,-0.052189376,0.33977816,-0.113742925,-0.23252697,0.5359992,0.7426568,0.07193645,0.31228212,0.0075208903,-0.06586416,0.22115707,-0.093715474,0.121485546,-0.0061853607,-0.52546585,-0.043102752,0.0032016437,0.08998382,0.5996972,0.19988911,0.23714705,0.03206235,-0.072559595,0.0071748258,0.22297798,-0.11456927,-1.1979042,0.4588241,0.26560208,0.87872046,0.40986255,0.14782906,-0.32734522,0.77514845,-0.3629772,0.02410254,0.42437682,0.083222546,-0.3256134,0.8373975,-0.5579818,0.46234623,-0.15932241,0.020364229,0.12056814,0.05739056,0.31853637,0.8493522,-0.2241558,0.13726804,-0.042425822,-0.15617847,0.06106062,-0.22155084,-0.010647939,-0.32079795,-0.3071868,0.72096264,0.31220993,0.37394655,-0.11131713,-0.12521982,0.08109037,-0.26162997,0.04411243,-0.03477392,0.056352485,0.04990814,-0.42198527,-0.17043658,0.52816755,0.2486425,0.13231887,-0.23432612,-0.44539034,0.1245007,-0.23156387,-0.052340522,0.018005379,-0.56670535,0.02363205,-0.18077567,-0.54595274,0.37348804,-0.19562048,0.049408857,0.16660999,-0.045160074,-0.14479247,0.04858832,0.12025118,0.712781,-0.14822595,-0.1520752,-0.36761722,0.053739604,0.22480913,-0.30417636,-0.07198153,-0.37116376,0.09186005,-0.43275923,0.4859641,-0.13081771,-0.55781865,0.120150395,-0.18350625,-0.052320264,0.56856346,-0.112509094,-0.16750367,0.0490304,-0.0834112,-0.29288083,-0.15516827,-0.22861342,0.22479148,0.2951029,0.009931811,-0.19008127,-0.23679426,-0.13525635,0.75847083,-0.082680896,0.42469272,0.23331842,0.08224315,-0.296835,0.10084224,0.22340806,0.49892253,0.024722386,-0.038695358,-0.46661967,-0.33165532,-0.31122863,0.25777185,-0.071198426,0.28373224,0.035482798,-0.23711914,0.93413097,-0.13117506,1.1433924,0.014755046,-0.33297342,0.04510756,0.5218541,-0.13377501,6.2354404e-05,-0.3100481,0.9654337,0.5720554,-0.06360341,-0.039993167,-0.44779682,-0.103216454,0.29535076,-0.40900624,-0.047667366,-0.1338113,-0.5132626,-0.4197335,0.23664598,0.16968209,0.10806577,-0.10553227,0.033901647,0.08388804,0.10000069,0.5899496,-0.63293076,-0.1643741,0.20068502,0.2396498,-0.23031302,0.092123136,-0.45224997,0.2684105,-0.5949923,0.046138227,-0.587043,0.16511232,-0.15696245,-0.34938082,0.12671433,-0.26182196,0.33486012,-0.21985118,-0.52076584,-0.018784622,0.36567682,0.051559765,0.08071248,0.593919,-0.34003633,0.1475482,0.1044047,0.64373267,1.1651782,-0.31628102,-0.060156632,0.2515486,-0.32105523,-0.49299297,0.29386625,-0.3020275,-0.01444507,0.044000383,-0.35403425,-0.27972305,0.31845385,0.2958081,0.045525137,0.023307411,-0.53628963,-0.09876774,0.3256316,-0.20201497,-0.14408681,-0.25214043,0.38160807,0.7982036,-0.32179922,-0.36857548,-0.020817813,0.39562008,-0.2150417,-0.5307579,0.088474736,-0.20849799,0.39313018,0.1394435,-0.353693,-0.063462704,0.21502116,-0.53664756,0.098283425,0.34758648,-0.25247306,0.11369118,-0.20944066,-0.042094756,1.0306194,-0.2459507,-0.046123397,-0.47375435,-0.49408016,-0.91627043,-0.29856485,0.15070018,0.14714128,-0.007167842,-0.48767197,0.13483343,-0.108606584,-0.21054827,0.14297272,-0.4235716,0.23221229,0.036467187,0.7746445,-0.29380527,-0.84334356,0.043414656,0.10016771,-0.027245605,-0.52056676,0.7436656,0.03719501,0.8438852,0.123765804,-0.002014033,-0.07362147,-0.35674435,0.0011690517,-0.38504776,-0.08432615,-1.0025814,0.12852944,841 +298,0.25112456,-0.1707499,-0.62795943,-0.21233673,-0.24133626,0.1898924,-0.2836021,0.3036408,0.34423408,-0.34987625,0.16686513,-0.16689657,-0.180966,0.205321,-0.13068087,-0.62588763,-0.03029509,0.08701162,-0.5487622,0.72492546,-0.39797032,0.13804647,0.19243807,0.22198275,-0.06566175,0.18584344,0.18613991,-0.016386917,-0.058415387,-0.07766104,0.08211314,0.09651189,-0.5746707,0.23487666,-0.086076684,-0.1700355,-0.065243445,-0.4078436,-0.38213286,-0.7691084,0.28764787,-0.86368614,0.378866,-0.16816537,-0.31315765,0.35592717,0.2789683,0.13986328,-0.17692235,-0.04698718,0.20971729,-0.2726873,-0.375696,-0.19871467,-0.22100456,-0.66177624,-0.63098973,-0.1899276,-0.4904371,-0.06103572,-0.34062186,0.3696242,-0.3574896,-0.05943867,-0.2712464,0.53459543,-0.4740872,-0.013406133,0.1280195,-0.3354123,0.26642796,-0.7295458,-0.06863455,-0.08036164,-0.041956846,0.320447,-0.124317214,0.31564778,0.3141913,0.5627835,0.066110656,-0.28275728,-0.37271678,-0.07455478,0.123394854,0.3593254,-0.057180054,-0.1302236,-0.24289863,-0.25796,0.3460352,0.30824807,0.13801059,-0.44025126,0.057943407,0.03163359,-0.4055114,0.3663914,0.65149444,-0.28196174,0.08448933,0.4816725,0.19109704,0.064521745,-0.2602119,-0.009342543,-0.13122211,-0.4027522,-0.050029222,0.24003719,-0.0797218,0.39328516,-0.097838365,0.14409056,0.6358423,0.015054222,-0.11774484,0.045844197,0.06768955,-0.004089308,-0.34746546,-0.1722161,0.33430418,-0.49651968,0.023617543,-0.42436168,0.50653833,-0.08962814,-0.7660334,0.38230038,-0.40481982,0.1431671,-0.05290258,0.6585884,0.846142,0.6893384,0.06753746,0.8728296,-0.46745273,0.055033915,-0.19973604,-0.26729128,0.39321312,-0.16662367,0.464455,-0.42387512,-0.014278392,0.14227095,-0.31157348,-0.24300125,0.5827431,-0.421508,-0.13537231,0.14617254,0.81881577,-0.25457734,0.047120187,0.6488249,1.2051165,0.83682466,0.18649544,1.1578023,0.38550836,-0.15679796,0.07731475,-0.18055372,-0.8549804,0.14278623,0.3054191,0.62917435,0.12994552,0.13337517,-0.12965769,0.4858062,-0.2538899,-0.17746022,-0.12702405,0.43508634,0.05201947,-0.21980454,-0.15681754,-0.04871219,0.18764348,0.08769127,0.17838378,0.27405325,-0.15536962,0.46682683,0.24841903,1.1858679,-0.16247909,0.0513763,0.17823175,0.2866472,0.2525493,-0.06856774,0.14804946,0.47866544,0.2775484,0.036060352,-0.6308197,0.095275275,-0.28428504,-0.6115768,-0.14693779,-0.3585058,-0.11886828,-0.10691533,-0.25958213,-0.29768315,-0.045086488,-0.45749778,0.28656438,-2.678666,-0.028938549,-0.28346878,0.35518318,-0.22499922,-0.20197217,0.0032586337,-0.43939108,0.6620289,0.4621605,0.35343012,-0.53474826,0.42448124,0.56343853,-0.41396275,-0.078035444,-0.58840525,-0.010842484,-0.16507973,0.40691847,0.033531442,-0.14070259,0.03324397,0.036906496,0.5540834,0.1389126,0.26306996,0.55365545,0.38147488,-0.21334024,0.33446446,-0.10724964,0.5107085,-0.20685539,-0.15539294,0.20993474,-0.40651688,0.18838891,-0.4282336,0.12264678,0.48022074,-0.26165372,-0.6487679,-0.48487148,-0.11714269,1.1509969,-0.44000453,-0.80535614,0.29657814,-0.06741772,-0.16723223,-0.010193551,0.64743984,-0.20364346,0.020241976,-0.7262361,0.033655588,-0.13602488,0.21731186,-0.03738566,0.107306905,-0.4952176,0.8454289,-0.07225568,0.67458606,0.35811737,0.26817805,-0.3387165,-0.41494617,0.2290419,0.6059683,0.44373524,-0.08149723,-0.1355949,-0.0646264,-0.0031958183,-0.50414205,0.041212924,0.604911,0.61762846,-0.06657463,0.15845488,0.3565974,-0.37601024,-0.03378435,-0.20400448,-0.4801222,-0.19766252,0.12697819,0.53779566,0.5576999,-0.007797746,0.2932104,0.0067973137,0.3180245,-0.097652,-0.62253416,0.5975693,0.76659477,-0.27379358,-0.1953256,0.608039,0.37550873,-0.17202319,0.583618,-0.5636997,-0.34803918,0.46886393,-0.08946406,-0.6668995,0.13395652,-0.3479294,-0.06917027,-0.69738644,0.23958942,-0.28399065,-0.54899776,-0.5817239,-0.15727066,-3.1034653,0.057252433,-0.35968405,-0.053492896,-0.25371516,-0.10448802,0.37842962,-0.44430053,-0.5554364,0.08419037,0.24373354,0.54653084,0.020949619,0.006641543,-0.33390102,-0.13017623,-0.25210366,0.26794147,0.033093326,0.16468498,-0.019685904,-0.3387739,0.04093449,-0.044529814,-0.47699445,-0.066807896,-0.37350997,-0.15062107,-0.24626707,-0.54296416,-0.28101256,0.6547944,-0.3129266,-0.0017700712,-0.219513,-0.018455155,-5.9843063e-05,0.26724353,-0.17001057,0.13519193,0.109287776,-0.13685659,0.12967332,-0.30574447,0.18097101,0.03205847,0.24661608,0.47794572,-0.09504012,0.056667347,0.52025247,0.49163,-0.06777514,0.906271,0.44186324,-0.11068177,0.30342,-0.19627689,-0.10488801,-0.63902193,-0.2595205,0.053928677,-0.46111834,-0.31454843,0.0015035153,-0.30141506,-0.7509797,0.5062727,0.20161597,0.19058791,-0.04043053,0.22555634,0.4559103,-0.050882086,-0.047092836,-0.18180151,-0.28231993,-0.40186733,-0.30620182,-0.8995864,-0.5025099,0.13776316,0.9862805,-0.012135583,-0.31692922,0.031799804,-0.31150958,-0.07403538,0.26727262,0.09286952,0.17837474,0.2895723,0.1825604,-0.6561368,0.5636423,-0.18599549,0.12920459,-0.68699646,0.33111253,0.60197663,-0.7601626,0.3846315,0.51802766,0.14407349,-0.3519953,-0.6935087,-0.22100598,0.14259575,-0.15384957,0.46089852,0.1860115,-0.96836597,0.61337703,0.24484344,-0.11806385,-0.770502,0.34788582,-0.11423306,-0.0481676,0.029098598,0.36599067,0.011683106,0.03788174,-0.43990737,0.32496426,-0.5126694,0.38658464,0.058851235,-0.077317625,0.62807184,-0.12456319,-0.118148245,-0.68474454,-0.0031556129,-0.60621387,-0.17923522,0.36058342,-0.066997655,0.11749959,0.26044324,0.039039295,0.4116435,-0.19887027,0.2073672,-0.29359293,-0.35968915,0.5223492,0.49674,0.30032367,-0.37543482,0.64901006,-0.09113177,-0.13562702,-0.07010567,0.02276504,0.41980976,0.4150233,0.49341288,-0.05089082,-0.11958528,0.25498688,0.78901976,0.22869028,0.35263953,0.1342232,-0.24777056,0.45112774,-0.094378375,0.17746669,-0.29995984,-0.67773724,-0.07715216,-0.089928724,0.19736649,0.47232774,0.23102154,0.5746551,-0.05238486,-0.074495584,-0.013935382,0.0467769,0.084462926,-0.98040223,0.5679583,0.13039376,0.8054648,0.63410175,0.0030193487,-0.05947963,0.7320078,-0.18228558,0.11006198,0.3327801,0.12618075,-0.32255438,0.5179168,-0.69993937,0.2577154,-0.21055181,0.014101684,0.21696557,0.27867785,0.38394088,0.82958335,-0.11774877,0.17382994,-0.17344795,-0.2935129,0.28028247,-0.12115153,0.033254992,-0.31263256,-0.5256209,0.51264584,0.2827914,0.4383742,-0.15997113,-0.11073812,0.28538427,-0.18109795,0.3371419,0.0046532433,-0.022897968,-0.15937187,-0.35306248,-0.31302804,0.5508191,-0.039943337,0.12261277,0.029116098,-0.19907881,0.17950805,-0.1330199,-0.26282737,-0.029372342,-0.5210947,-0.0023720027,-0.11979667,-0.6123174,0.5355658,-0.0409226,0.19191082,0.14113252,0.044719346,-0.22153883,0.002148219,0.1228813,0.7010837,-0.12476602,-0.14024666,-0.08427341,-0.38068774,0.2016717,-0.45372778,0.02077839,-0.07879347,0.03470475,-0.61822855,0.46055907,-0.40940332,-0.21677707,0.2966232,-0.29580316,-0.03668022,0.37015158,-0.2217553,-0.09750184,0.35001463,-0.09569185,-0.1791548,-0.32772624,-0.4353953,0.20959902,-0.3046814,0.14545316,-0.10972427,-0.06726625,0.063745104,0.45171496,-0.047616314,-0.041235533,0.4093949,0.19132312,-0.48414075,-0.056472264,0.28686368,0.5792298,0.16242535,-0.04178626,-0.27078387,-0.58109564,-0.49711582,0.05005326,-0.014726581,0.31373075,0.07759879,-0.54296124,0.8527008,0.073784575,0.91499484,-0.077658094,-0.47659153,0.14033508,0.5020365,0.07629255,0.073861316,-0.3665713,0.7471679,0.64824706,0.0109192645,-0.019130388,-0.5958618,-0.06475211,0.36624315,-0.3227758,-0.15640923,-0.11551697,-0.818998,-0.32015452,0.1598002,0.14203708,-0.005511,-0.217007,0.07966821,0.10720791,0.2723309,0.33237737,-0.61517614,-0.02659789,0.3897252,0.15213394,-0.020682871,0.2748789,-0.3955998,0.21349189,-0.6265372,0.1960956,-0.32856923,0.013585834,0.13307835,-0.1801462,0.1301417,-0.022768259,0.255286,-0.094055384,-0.45414677,-0.056730893,0.62007767,0.18512551,0.25481576,0.6981713,-0.23573099,-0.05020783,-0.056565132,0.6310418,1.3087566,-0.20080306,0.06743797,0.19692999,-0.5131712,-0.8054645,0.20208625,-0.19231455,0.15419598,0.059489932,-0.5012797,-0.33489713,0.30909768,0.012196159,-0.33321992,0.10670808,-0.4374043,-0.33055678,0.07936594,-0.31960624,-0.16988783,-0.2769815,0.18274498,0.7562711,-0.3707547,-0.16493227,0.09405037,0.446041,-0.2983394,-0.5344149,0.10237062,-0.4844294,0.27023354,0.107115,-0.45178622,-0.0050689974,0.041904733,-0.6320713,0.22667035,0.092489175,-0.25548658,0.03533767,-0.41949654,0.070003524,0.76103747,0.080374844,0.046302173,-0.5214204,-0.62414145,-0.72778356,-0.32143268,-0.022119995,0.14006333,-0.054033283,-0.53752416,-0.08907154,-0.17734505,0.14271532,-0.070188336,-0.5699741,0.38214198,0.07480528,0.4088171,-0.19354023,-0.9219256,0.1615494,0.12812836,0.058240637,-0.49411926,0.57631236,-0.2533808,0.91052467,0.14862923,0.029766629,0.011211141,-0.6979409,0.348641,-0.35806334,-0.4206774,-0.57152706,0.07641746,847 +299,0.49333584,0.028870607,-0.5150374,-0.26337707,-0.27123877,0.18153468,-0.16788621,0.2573046,0.30739257,-0.21370132,0.10601602,-0.15512963,0.004840851,0.27055538,-0.115638375,-0.7813519,0.115493745,0.11610683,-0.56781226,0.34033865,-0.608558,0.37710294,-0.07763532,0.485025,0.033004034,0.19986235,0.042999182,-0.044768404,0.14567824,0.011157012,-0.11781483,0.37866586,-0.5028354,-0.07639173,-0.07623233,-0.42326215,0.026249409,-0.43500358,-0.3457032,-0.66055554,0.4308636,-0.7866302,0.6999436,-0.003608934,-0.39705727,0.03730898,0.034208857,0.3290412,-0.2146819,0.15229225,0.20035034,-0.2309406,0.11651464,-0.057378683,-0.39961877,-0.5172641,-0.6318309,-0.050041497,-0.6106322,-0.077901125,-0.21644033,0.19377069,-0.31434727,0.1266242,-0.17455629,0.22167778,-0.39678904,0.028767021,0.33410245,-0.165288,0.22494555,-0.39410433,-0.19753298,-0.06598457,0.21429922,-0.03991908,-0.30506474,0.20405705,0.36168402,0.6281056,0.0029455603,-0.33971518,-0.18066573,-0.057000782,-0.18395182,0.6463482,-0.17941645,-0.21140727,-0.3776905,0.10470566,0.26096877,0.3170002,-0.05211516,-0.34120286,0.007910528,0.17967662,-0.25881326,0.5060908,0.49084672,-0.4630852,-0.16685957,0.36437258,0.37812474,0.18406907,-0.2446429,0.32406563,0.03636875,-0.57049817,-0.25531667,0.20212828,-0.056904204,0.61445224,-0.06870329,0.32774577,0.7434506,-0.13882929,-0.0021417935,-0.20983483,-0.014029053,-0.11674375,-0.37900335,-0.08929797,0.18521132,-0.5100949,0.09662126,-0.21909009,0.7813927,-0.0015133321,-0.86496025,0.3527152,-0.48992598,0.07963831,-0.1999125,0.5591593,0.7518724,0.19442965,0.23721617,0.91128147,-0.5380156,0.04071857,-0.032561246,-0.37863013,-0.008921814,-0.050625872,0.056133263,-0.52893007,0.1122891,0.10025048,0.10065003,0.14409153,0.3656235,-0.48141482,-0.11979631,0.050452568,0.7139184,-0.39766943,-0.09982227,0.7279829,1.0808221,0.94337004,0.01589156,1.2454158,0.39242607,-0.08830063,0.15306225,-0.26553747,-0.5747879,0.15379387,0.25007096,0.14516835,0.5263668,0.14583157,0.025218537,0.5104466,-0.20239598,-0.044535246,0.056891643,0.11709983,0.057531636,-0.031110378,-0.38407812,-0.14350456,0.10692103,0.048585616,0.07725751,0.21172749,-0.21930936,0.27534416,0.086682476,1.426702,0.054634545,0.055511378,0.019586546,0.41916215,0.24533471,-0.18839332,-0.04816353,0.4233051,0.4007484,-0.12530325,-0.5522481,0.020046715,-0.3247802,-0.2924694,-0.18439339,-0.33824062,-0.13394973,-0.116117746,-0.6483599,-0.054863382,0.028490478,-0.30944258,0.5515249,-2.791334,-0.4506105,-0.17343491,0.33290243,-0.18582827,-0.4315557,-0.27866685,-0.42043462,0.23012608,0.40578616,0.17900735,-0.67265546,0.5294333,0.29752254,-0.2477281,-0.02189248,-0.70325,-0.011095236,-0.017724684,0.3041472,-0.07882502,-0.13885787,-0.14080885,0.38692966,0.6412071,0.0926691,-0.079140075,0.18411806,0.61429876,0.00021076799,0.5571028,-0.024511762,0.6221928,-0.10926531,-0.12426147,0.2205023,-0.45364726,0.4088482,0.045714352,0.16391428,0.5260651,-0.4457367,-0.727455,-0.5430731,-0.27320722,1.0651666,-0.33044222,-0.328086,0.27413553,-0.1832451,-0.35236874,-0.033476595,0.5060855,-0.034972973,-0.1275609,-0.6607915,-0.005363091,-0.20206456,0.06629363,-0.105403915,0.07745286,-0.22217618,0.6150644,-0.14438578,0.45857292,0.2885458,0.085008666,-0.01818281,-0.39158547,-0.046057478,0.7360201,0.36515048,0.11074432,-0.2139851,-0.12775049,-0.2970256,-0.017818423,0.2461117,0.4879999,0.71178305,0.0008321126,0.18638381,0.38033766,-0.13524535,-0.0767454,-0.14146751,-0.26952592,0.039008226,0.026256824,0.62121284,0.6546975,-0.16016258,0.3796711,-0.0766907,0.05065524,-0.28815016,-0.4257309,0.38165185,0.7711961,-0.09150695,-0.29442474,0.49956074,0.3449559,-0.40402666,0.30714485,-0.5248388,-0.23514546,0.6103279,-0.06388781,-0.36579385,0.20461355,-0.39362222,0.042931534,-0.93487906,0.24940191,0.0827047,-0.5253474,-0.47593004,-0.23380008,-3.6384761,0.31341165,-0.14928511,-0.10221405,-0.07122567,-0.20930998,0.39549872,-0.41323072,-0.54034126,-0.014608222,0.013465294,0.5345014,-0.19470347,0.15503028,-0.27673626,-0.2114357,-0.25033662,0.14355749,0.11145519,0.35115308,0.020592371,-0.35125116,0.10582698,-0.43497568,-0.50429845,0.04040498,-0.51245636,-0.5396863,0.024650717,-0.49162117,-0.26966885,0.7300653,-0.34203765,-0.036888804,-0.34933674,0.017481979,-0.19804545,0.37407348,0.2161477,0.10039458,-0.031372413,0.06482811,-0.1626798,-0.4183382,0.26502576,0.037390504,0.26848406,0.3126564,-0.090585425,0.19866781,0.5066985,0.5375871,0.032006986,0.72209007,0.26082927,-0.09210316,0.30501765,-0.26220247,-0.17117333,-0.68571776,-0.4356488,-0.3134521,-0.53889835,-0.5811243,-0.186483,-0.4307726,-0.7603397,0.41463926,-0.035598412,0.23005264,-0.07280493,0.34852177,0.4657063,-0.12608644,0.06929956,0.09970665,-0.20514171,-0.41298914,-0.48309988,-0.57405865,-0.5845062,0.3337688,1.0354898,-0.14779407,-0.029616157,-0.025930671,-0.2444517,-0.03406318,0.086477965,0.25797924,0.17423268,0.3596743,-0.23990592,-0.65520644,0.33756587,-0.35038662,-0.13832477,-0.7084722,-0.06533756,0.7342318,-0.6501081,0.63646513,0.31345013,0.34029892,0.1247867,-0.58448315,-0.19353575,0.105187796,-0.255555,0.646699,0.11127653,-0.61912745,0.52886397,0.18250784,-0.021321988,-0.53441715,0.55920166,-0.008356363,-0.29630482,0.022461792,0.32759178,0.107630126,-0.048452612,0.020561423,0.1818518,-0.55316883,0.23451693,0.37816468,0.010065351,0.43275693,0.05193993,-0.063276984,-0.60512865,-0.13971591,-0.6245217,-0.18348269,0.12509184,-0.030202786,0.28214934,0.13565235,-0.049550287,0.4232658,-0.2878214,0.20365137,-0.13463216,-0.198935,0.26175848,0.5379617,0.31629544,-0.46218222,0.61759835,0.16251868,0.046979062,0.047125872,0.09217729,0.53983414,0.12148719,0.4072013,-0.20414396,-0.12891603,0.12380914,0.6732606,0.23382097,0.3132805,0.16533476,-0.113592535,0.32106704,0.18990682,0.120076574,0.0058503468,-0.27108762,-0.14794059,-0.027053483,0.2406388,0.4409432,0.10037366,0.26249173,-0.09080486,-0.30357036,0.21865048,0.1787272,-0.26852894,-1.1368717,0.25919616,0.33250982,0.67021114,0.3403339,0.01982805,0.018411461,0.30579287,-0.2958196,0.14926942,0.43400818,0.03881668,-0.30252334,0.5721692,-0.4459976,0.5692459,-0.23385814,-0.05531193,0.124166206,0.2683613,0.48024288,0.89676034,-0.22068046,0.093161605,0.10380769,-0.27028883,0.031188695,-0.3008849,0.035694115,-0.6239523,-0.19992714,0.659699,0.5121674,0.36002713,-0.36899593,-0.09172003,0.100994796,-0.10454562,-0.11494153,-0.08564864,-0.07528353,-0.15509464,-0.6029441,-0.26499757,0.5079215,-0.12277065,-0.007024753,0.06551313,-0.4068058,0.36168692,-0.05335852,0.08780269,-0.037325405,-0.70570374,-0.09981319,-0.33151785,-0.6695313,0.3749007,-0.26095426,0.28334427,0.24594419,0.047211494,-0.2540723,0.29791322,0.0073586465,0.9111205,-0.07418612,-0.1823313,-0.47655466,0.0799803,0.3921135,-0.25803712,-0.26498982,-0.37803468,0.18628503,-0.46664792,0.4408992,-0.13386866,-0.21331163,-0.1544107,-0.054078802,0.10109512,0.42835993,-0.35169253,-0.11427966,0.06528094,0.005701232,-0.342279,0.034002766,-0.37196657,0.3430656,0.058085244,-0.214212,0.014519564,-0.14585702,-0.0669839,0.2535463,0.16086738,0.32199678,0.3711519,0.043579895,-0.2599472,-0.047253434,-0.030369313,0.45295516,0.025546242,-0.16814902,-0.25252396,-0.36236593,-0.2771582,0.45279923,-0.08898373,0.23975162,0.08311772,-0.42440483,0.81833595,0.22123982,1.1014687,0.19484545,-0.2499241,-0.01749334,0.55785644,0.06026583,0.08491516,-0.3870813,0.81595427,0.51915324,-0.16059345,-0.28360155,-0.31510565,-0.14565912,0.21283184,-0.23660626,-0.21835701,-0.1352927,-0.663851,-0.1536141,0.055765565,0.18052933,0.2573861,-0.037575986,-0.029363541,0.12086827,0.04879453,0.39285952,-0.4673123,-0.19556087,0.19197513,0.22641467,0.00045597155,0.16176002,-0.36048114,0.4105315,-0.6220866,0.13534208,-0.52384925,0.07246469,-0.02008415,-0.2752355,0.19635774,-0.14547446,0.19944061,-0.2954732,-0.1776424,-0.17397125,0.61933875,0.25282294,0.23284689,0.69300187,-0.23898093,-0.19831626,0.082854815,0.43383014,1.4463822,-0.030557616,-0.052339975,0.36647862,-0.2001925,-0.59423804,0.07083787,-0.44713634,0.16364981,-0.061432347,-0.36431935,-0.31800312,0.3603085,0.08903287,-0.1286263,0.059060797,-0.5129558,-0.1713095,0.4414077,-0.20570993,-0.2877954,-0.29496226,0.19788964,0.71944934,-0.35225525,-0.3641327,0.057059485,0.29503644,-0.23563062,-0.7026982,0.20153627,-0.41410396,0.4582798,0.10275699,-0.32560167,0.028377049,0.26548776,-0.45525,0.16166799,0.44314042,-0.3713606,0.02949155,-0.3146024,-0.2620631,1.1756583,-0.116165414,0.06973644,-0.6911789,-0.45265907,-0.8742425,-0.37479874,0.12374028,0.23932716,0.0052527944,-0.496065,-0.065161444,-0.04150938,-0.191288,0.0786521,-0.28717244,0.48668778,0.10870515,0.5379101,-0.069159046,-0.90749544,-0.06948202,0.050427914,-0.51737773,-0.51389116,0.6253186,-0.13783501,0.6388051,0.08195619,0.18074553,0.12086115,-0.40026134,0.35012558,-0.45310405,-0.110787354,-0.8348592,0.057655487,849 +300,0.48677528,-0.06345556,-0.46041372,-0.17268537,-0.18817806,0.11407456,-0.20443615,0.33439273,0.15772413,-0.43991184,-0.23620605,-0.20309101,0.04979752,0.17217398,-0.21426651,-0.6285652,0.043422047,0.18886271,-0.55364203,0.60928446,-0.40951034,0.34093496,0.08798704,0.2743783,0.08460593,0.36048147,0.24426429,-0.083604015,-0.21548843,-0.2037305,-0.2597287,0.25840503,-0.34229025,0.23088703,-0.02385759,-0.25901464,0.032340683,-0.51392996,-0.34730807,-0.69667965,0.3542573,-0.8591255,0.42427924,0.074837215,-0.17435288,0.021394523,0.05083545,0.23777173,-0.27727172,0.091231905,0.19265383,-0.15516132,-0.031225158,-0.24383575,-0.22936964,-0.40437824,-0.52338505,0.07409045,-0.3642181,-0.32516995,-0.23637995,0.12837046,-0.35011387,-0.081161626,-0.07704765,0.48394045,-0.42668897,-0.010187407,0.25130185,-0.18326566,0.1630601,-0.53892773,-0.09084048,-0.08208933,0.42179316,-0.21406865,-0.2044508,0.21107957,0.22992517,0.43675557,0.105156064,-0.12091891,-0.18096685,-0.10735747,0.23739965,0.4076765,-0.20007183,-0.6037119,-0.10114026,0.017882291,0.046284746,0.27527887,0.20570177,-0.2934572,-0.014364868,0.0743465,-0.20927395,0.3053112,0.44066957,-0.3216977,-0.17696618,0.31977603,0.5425538,-0.03285209,-0.04129667,0.07122557,0.015465775,-0.47846,-0.29065514,0.07127042,-0.16653575,0.46135813,-0.23808956,0.33252227,0.7343843,-0.10872241,0.11910984,-0.015359493,-0.002237626,-0.2993125,-0.14158015,-0.2233958,0.16117379,-0.55417854,0.11689635,-0.16120355,0.88642937,0.2655001,-0.72525024,0.40021095,-0.5592058,0.19877847,-0.15900968,0.41806877,0.59952635,0.31197494,0.29994538,0.6535844,-0.53181344,0.09014389,-0.12218589,-0.61214334,-0.011355376,-0.19597879,-0.03650565,-0.5118445,0.1096439,-0.06825289,-0.018529622,0.09890556,0.3757216,-0.51936424,-0.065057114,0.081513554,0.8530865,-0.31923512,-0.026873805,0.7526728,0.87149835,0.87976545,0.029321222,1.2019441,0.21707875,-0.35958067,0.13436921,-0.22360341,-0.686658,0.38958085,0.5626154,-0.27217472,0.17888395,-0.053367782,0.07422112,0.37272802,-0.5322926,0.1395709,-0.3451076,-0.064234875,-0.015084698,-0.23072913,-0.46517482,-0.1404477,-0.019745596,0.09655924,0.26108843,0.2563501,-0.057930037,0.42110506,0.018370062,1.7374268,-0.006216545,0.13321778,0.15001543,0.45552328,0.3712064,-0.12739928,-0.037863288,0.35372135,0.4772032,0.17687607,-0.54248154,0.00018807252,-0.19613156,-0.4321395,-0.12343979,-0.35050088,0.07635641,0.049799208,-0.32422715,-0.18478878,-0.19052456,-0.17582992,0.35864666,-2.541066,-0.2119361,-0.106397845,0.23692746,-0.21019681,-0.3677086,-0.08390829,-0.4715161,0.47834638,0.26713875,0.46811607,-0.5657566,0.31667554,0.38586748,-0.57440865,-0.02752573,-0.60484827,-0.08266681,-0.14281315,0.38460293,0.12641917,-0.17738564,-0.06771027,0.10525974,0.45038968,0.050749913,-0.016867701,0.29739258,0.41132864,0.15005025,0.5336997,0.082604565,0.590943,-0.23140259,-0.27396536,0.31275186,-0.17092578,0.170741,-0.07660203,-0.0022950668,0.4474704,-0.561243,-0.84197897,-0.74429387,-0.10451517,1.1653118,-0.14399117,-0.28447857,0.2982261,-0.3237542,-0.38628095,0.01620401,0.42193386,-0.15256055,-0.13711266,-0.815108,0.12236679,0.07457815,0.09252816,0.121236295,-0.15664896,-0.5151128,0.66416895,-0.057762824,0.5255505,0.38837257,0.05887116,-0.19851622,-0.39139673,0.13025875,1.0374824,0.40605128,0.1832025,-0.21984178,-0.15651041,-0.40189654,-0.087145425,0.056649048,0.5534672,0.6746625,0.0020168582,0.009324161,0.3496118,0.013790691,0.16959527,-0.2491031,-0.26650238,-0.12186952,-0.13863608,0.56038827,0.355639,-0.1914306,0.40188172,-0.045656506,0.41432124,-0.16495852,-0.44765082,0.55033803,1.2522732,-0.14288126,-0.27647611,0.5411254,0.4011983,-0.27290627,0.43381646,-0.4963568,-0.21499868,0.35138556,-0.19929554,-0.43018773,0.2668831,-0.2706642,0.32668743,-0.87001735,0.20209453,-0.15813272,-0.42848557,-0.6140672,-0.14661217,-3.340074,0.3477062,-0.34499532,-0.13091925,-0.10758254,-0.05419886,0.1774892,-0.6264856,-0.5298384,0.19929792,0.00040343005,0.6441008,-0.13499545,0.20097932,-0.1264929,-0.2653725,-0.3918939,0.01470451,-0.042874236,0.35040963,-0.032927107,-0.41929725,0.030203843,-0.143264,-0.4093799,0.07578694,-0.61059475,-0.38685167,-0.03007602,-0.4766633,-0.3793557,0.5909496,-0.23517199,0.1266418,-0.16652164,0.05395903,-0.18863358,0.28185704,0.052432355,0.21083102,-0.028920677,-0.0448449,0.054960553,-0.18622568,0.36449844,-0.040513862,0.33536652,0.08822925,-0.1290674,0.18092896,0.47196355,0.60994136,-0.1129188,0.76413864,0.49245507,-0.06616213,0.20803764,-0.3641258,-0.35345787,-0.49322647,-0.25803944,0.042814493,-0.46430582,-0.5006761,-0.034564216,-0.40500987,-0.69057006,0.42646268,0.15384038,0.088829786,0.038897526,0.3349713,0.478486,-0.160847,-0.098180726,0.049006145,-0.23157805,-0.54895324,-0.09089025,-0.55715144,-0.24861653,0.05257704,0.7584512,-0.19978319,0.03170817,0.023636645,-0.304544,0.019280616,0.04876473,0.022433167,0.21167536,0.48027703,-0.20868793,-0.7557332,0.5181414,-0.09723541,-0.21832286,-0.44177416,0.14878578,0.5456794,-0.64268297,0.661454,0.29295427,0.037426364,-0.118485995,-0.47080278,-0.20606723,0.03833815,-0.23093963,0.4596772,0.24804874,-0.687573,0.4408164,0.47556007,-0.08771423,-0.66714853,0.49414787,0.00073926174,-0.3931865,0.032921486,0.26479378,0.102201924,-0.04729266,-0.18396142,0.16804227,-0.41368544,0.30630997,0.19279103,-0.028913014,0.13913618,-0.24351099,-0.20004317,-0.74536306,-0.08048447,-0.52052426,-0.29555115,0.27308702,0.180432,-0.009461054,0.15585098,-0.06615954,0.42235747,-0.23064457,0.13081391,-0.06535657,-0.18079026,0.15840666,0.32184324,0.46229115,-0.55670494,0.5972169,-0.06198889,-0.062384848,-0.07192055,0.1867809,0.53566706,0.11924383,0.42638868,-0.13608353,-0.1718412,0.44938385,0.7093192,0.14737524,0.39324218,0.055224366,-0.0525218,0.17220964,0.15456274,0.14919107,0.055683102,-0.57226294,-0.035662785,-0.08935722,0.1322821,0.41132602,0.095047936,0.255167,-0.12369546,-0.45159414,0.042314768,0.30827948,0.035485145,-1.1947764,0.42998892,0.31196985,0.8170602,0.3935613,-0.044416178,-0.09273453,0.67267644,-0.26843557,0.18793239,0.24282615,-0.13018897,-0.5582059,0.44580314,-0.5579408,0.26365945,0.041082732,-0.09030577,-0.056639757,-0.084296055,0.2669477,0.7363946,-0.14282465,0.08182834,-0.07565998,-0.2755162,0.2319972,-0.47324327,-0.0361626,-0.49451128,-0.23047218,0.5489991,0.48956713,0.22166958,-0.12997654,0.0017866492,0.098653905,-0.036735713,0.09409796,0.17773595,0.14210536,0.11455908,-0.80428517,-0.28983638,0.53928083,0.038719576,0.12537439,-0.049666572,-0.19775377,0.35803956,-0.1634642,0.047230568,-0.14884076,-0.6556117,0.06491744,-0.28060904,-0.40452066,0.4943093,-0.011101389,0.2430122,0.30650786,0.116046175,-0.14901492,0.32882363,-0.063376196,0.6698538,-0.015815897,-0.21077958,-0.4322175,0.21576735,0.08798441,-0.16150062,-0.110623345,-0.35212022,0.0808159,-0.5256355,0.5115307,0.07635639,-0.38597667,0.077948086,-0.0699388,-0.05149827,0.6114169,-0.2832747,-0.10221154,-0.1090728,-0.052162185,-0.25395954,-0.25964972,-0.13075139,0.1929098,0.21705653,0.10768581,-0.21553339,-0.099531375,-0.2864547,0.5286054,0.05911347,0.39794186,0.2419962,-0.06260959,-0.2531754,-0.24290253,0.24933563,0.37561283,-0.048259456,-0.09662446,-0.24408069,-0.3752066,-0.3910825,0.047284428,-0.0775274,0.3096492,0.069005825,-0.23115973,0.63740605,0.05347435,1.1069324,-0.017499505,-0.2711858,0.0097622555,0.55305314,0.016627865,-0.048727512,-0.3122985,0.9040947,0.52397037,-0.092258066,-0.11657736,-0.43504888,0.097815715,0.064298645,-0.20168298,-0.1234345,0.05089278,-0.6271598,-0.34851295,0.19580859,0.29554632,0.2620065,0.053875167,0.018524608,0.19358449,0.03234973,0.28145626,-0.3368265,-0.39534596,0.21033539,0.25860965,-0.035029802,0.011067399,-0.5861115,0.47803867,-0.45928496,0.09989568,-0.29824108,0.23263218,-0.19065814,-0.21040587,0.19577041,-0.15871416,0.39606997,-0.32481894,-0.43021616,-0.18128204,0.47274932,0.13962875,0.12938349,0.5622768,-0.2542508,0.18158682,0.109287344,0.5064414,1.0039546,-0.03532452,-0.057030328,0.39506516,-0.3159632,-0.5870637,0.26416096,-0.21955542,0.064033955,0.114210844,-0.18150386,-0.50693333,0.15869655,0.27208695,0.06953755,-0.019599888,-0.6088058,-0.3258047,0.407432,-0.21779206,-0.18043016,-0.34175408,0.18412605,0.63071847,-0.36489245,-0.24629949,0.056416217,0.1325455,-0.12518242,-0.63048685,-0.060071047,-0.3173279,0.3129992,0.15470928,-0.17782208,-0.11631829,0.040911,-0.35983017,0.24188247,0.14880733,-0.37098587,0.13103537,-0.33647072,-0.21959648,0.9286017,-0.24426644,0.036577232,-0.41799122,-0.35258102,-0.7844826,-0.3623013,0.5128575,-0.0006894047,0.11971168,-0.7166769,0.032882195,0.0030480544,0.012817621,0.008606155,-0.36956042,0.4340013,0.057943378,0.561935,-0.04336964,-0.78404003,0.17125791,0.009018882,-0.23618962,-0.60126436,0.5957416,0.0496524,0.7975441,-0.06843264,0.054135937,0.37327442,-0.5206583,-0.077891044,-0.26728466,-0.17792124,-0.71318775,-0.009322175,851 +301,0.50057536,-0.1779395,-0.3641876,-0.032079455,-0.0876007,0.2208223,-0.10320978,0.56549436,0.25918826,-0.45198205,-0.04198456,-0.16926222,0.05614864,0.16666514,-0.057855774,-0.30517304,-0.078686796,0.09808556,-0.34413105,0.42742664,-0.45013285,0.29274097,-0.1485823,0.39057893,0.2432439,0.22170548,-0.04497256,-0.028128266,-0.31957734,-0.08531357,-0.0173294,0.42734247,-0.41615242,0.06005339,-0.168405,-0.25668365,-0.15026368,-0.5058814,-0.35108012,-0.5808924,0.30442658,-0.80363506,0.442826,0.067493066,-0.19253445,0.28449494,-0.07203413,0.219726,-0.13583957,0.045179587,0.17518093,-0.09722463,0.11639048,-0.27887422,-0.22842613,-0.34881675,-0.5839643,0.02388477,-0.4316444,-0.24476574,-0.19852005,0.07087191,-0.22719269,-0.16931157,-0.0034920932,0.42136344,-0.4615041,0.11885877,0.0033458709,-0.1300785,0.26481727,-0.5509665,-0.25601944,-0.10382846,0.16908105,-0.35255146,-0.24783462,0.1877487,0.36495653,0.4255984,-0.19853243,-0.00838207,-0.44033566,0.044365097,0.1753582,0.5330016,-0.16968141,-0.46578243,-0.11211596,-0.11268813,0.1156637,0.19916874,0.2454908,-0.28220168,-0.09079606,0.13728848,-0.1775993,0.34573632,0.45495024,-0.23381361,-0.33393508,0.3686804,0.43790907,0.10897651,-0.20056461,-0.021828305,0.13257667,-0.42503306,-0.07343161,0.19535713,-0.14844047,0.43865883,-0.05418419,0.22235098,0.7212357,-0.24666366,0.18121262,0.069090284,0.08183015,-0.008556604,-0.32778344,-0.16103938,0.13705191,-0.30243346,0.040842507,-0.1286747,0.6349447,0.11402109,-0.7633524,0.3648309,-0.5652443,-0.011869232,-0.06100222,0.47532475,0.6771229,0.34357098,0.16943502,0.57662416,-0.49496073,0.041325286,-0.12470471,-0.31190726,0.10370897,-0.15742975,-0.039737273,-0.57445884,-0.12386885,0.07892404,-0.15533394,0.17503858,0.4692183,-0.517356,-0.08052293,0.14924075,0.7264658,-0.34372848,-0.09799065,0.6478193,1.0060073,0.7955092,0.0010948499,1.1147219,0.16732137,-0.24456267,0.2945102,-0.4756433,-0.63956106,0.26816404,0.21314116,-0.5396149,0.22784847,0.18071245,0.051956084,0.25016788,-0.31920236,0.19409145,0.00037088591,0.08438513,0.16536392,-0.123418316,-0.35478508,-0.2360032,-0.111653425,0.017545613,0.22064358,0.1844057,-0.38650227,0.28831813,0.036083363,1.8204712,-0.07019744,0.07769622,-0.011564398,0.53440773,0.22670634,-0.169772,-0.06945111,0.37804216,0.35913235,0.16631751,-0.48946258,0.23946206,-0.056099303,-0.55984837,-0.14599688,-0.30146867,-0.041195568,-0.10865311,-0.4773586,-0.023037039,-0.028939685,-0.43023592,0.5021763,-2.9525898,-0.12098031,0.044562623,0.43842617,-0.2482086,-0.45628685,-0.20279603,-0.32207882,0.30074167,0.24435012,0.32480913,-0.73864615,0.26031962,0.38663957,-0.38336402,-0.18583317,-0.5676103,-0.11594965,-0.04340237,0.30253828,0.036113914,0.1271884,0.14279753,0.052503094,0.40542045,-0.15989177,0.08117518,0.16792749,0.39726225,0.047057103,0.35790044,-0.011752844,0.41733652,-0.12768003,-0.3041935,0.43161544,-0.42420012,0.13688973,0.054289237,0.11686046,0.26660398,-0.3346298,-0.86378396,-0.57782364,-0.27857798,0.8869494,-0.06243239,-0.42684233,0.14265354,-0.33370543,-0.43867296,-0.15619056,0.6146762,-0.063020356,-0.04751269,-0.81476444,-0.019854447,-0.118756,0.2442119,-0.024227906,0.08402289,-0.4493208,0.49035132,0.052872743,0.54148805,0.2815549,0.27322847,-0.43318143,-0.40027168,0.09139096,1.0635521,0.20753692,0.21604483,-0.19746889,-0.19828129,-0.35030904,-0.025008619,0.13219851,0.46189806,0.6049297,-0.0075136027,0.17690264,0.21978259,-0.04281891,-0.010890861,-0.13700853,-0.15779518,-0.035590596,-0.015109499,0.4476197,0.63180155,-0.20464253,0.5733262,-0.03167433,0.26030725,-0.28010413,-0.3734475,0.47290435,0.90589267,-0.03601337,-0.14266011,0.5092173,0.44153678,-0.37692577,0.3064032,-0.54897404,-0.18330275,0.46471703,-0.3196038,-0.38283703,0.2866907,-0.27642593,0.0835754,-0.7517128,0.26179802,-0.12093765,-0.42704624,-0.5715283,-0.12452714,-2.996372,-0.0116881095,-0.083351456,-0.3040287,-0.047253035,-0.13909031,0.2403086,-0.561467,-0.4140981,0.11701026,0.08009013,0.6661524,-0.01681473,0.14088123,-0.35151207,-0.18486087,-0.12290866,0.2317751,0.13264796,0.42422917,-0.017564505,-0.44030088,-0.036496248,-0.21289721,-0.42041972,0.03868746,-0.5515349,-0.53914887,0.042327296,-0.4973642,-0.27774265,0.673053,-0.4724393,-0.09199823,-0.21733424,-0.006709075,-0.06601805,0.43339217,0.2393257,0.032741666,0.11039801,0.011644451,0.16247691,-0.28444937,0.32795128,0.13357893,0.2258949,0.53000945,-0.19189262,0.23676684,0.4936856,0.52769876,-0.15468355,0.8415652,0.5235395,-0.09523079,0.25650123,-0.33660218,-0.17847419,-0.40294603,-0.33731404,-0.04554574,-0.43695346,-0.5284431,-0.16105871,-0.3257586,-0.73035604,0.4944187,-0.08886981,0.17549331,0.00048740706,0.2982321,0.3960381,-0.23903689,-0.08782193,-0.08445378,-0.07766083,-0.37071314,-0.34563407,-0.47427088,-0.5523115,0.2116655,0.8951508,-0.05213665,-0.06512467,0.13871177,-0.25935373,-0.17399031,0.0944755,0.041865803,0.16509075,0.33286604,-0.043409534,-0.5337851,0.514475,-0.14510399,-0.2693238,-0.6300519,0.084908165,0.53549063,-0.55381984,0.4729296,0.2350626,0.029257825,-0.07625663,-0.41095275,-0.13392392,-0.036243223,-0.26720157,0.37657887,0.20859297,-0.79204756,0.33989456,0.40299207,-0.18246607,-0.5729734,0.613932,-0.0072410624,-0.23093277,-0.15190563,0.30346832,0.09364649,0.07259267,-0.1613533,0.3676166,-0.48317176,0.24919622,0.254229,-0.080578186,0.44628105,-0.19375253,-0.011666664,-0.61838907,0.09421039,-0.36714035,-0.3783561,0.22117114,0.19220413,0.3081295,0.3726368,0.037363324,0.2965274,-0.39875886,0.04186427,0.025864935,-0.14742258,0.1471764,0.32803452,0.58467585,-0.30280337,0.39962476,-0.045134235,-0.15665512,0.1708772,0.03778986,0.54632205,0.041165058,0.22948305,0.046107598,-0.30380994,0.28143308,0.78163135,0.2284001,0.41749892,-0.08138098,-0.30333537,0.22950938,0.0902662,0.15356036,0.024330476,-0.47425807,0.07670217,-0.093069,0.29166266,0.33870846,0.08940576,0.23419978,-0.1668505,-0.31507123,0.099993825,0.2757554,0.07565243,-1.1102054,0.2178949,0.20710783,0.86115295,0.3477146,0.057859052,0.1624785,0.5260789,-0.17678595,0.17765898,0.3839316,-0.09139981,-0.5489495,0.4097423,-0.6929955,0.5086927,-0.007240995,-0.038322337,0.103709236,-0.16800766,0.40648803,0.7346409,-0.111773744,0.13375045,0.17329894,-0.3236836,0.06485734,-0.4144055,0.21146229,-0.5051081,-0.11443688,0.7029181,0.5783503,0.26623568,-0.092958,0.09257483,0.09581016,-0.056583975,0.06157782,0.082230024,0.14950673,0.05503818,-0.72940356,-0.20495602,0.5354713,-0.08968623,0.0841011,0.05214229,-0.16383317,0.247381,-0.15343386,-0.10843559,-0.018965002,-0.55443156,-0.033095207,-0.40664163,-0.44389778,0.5033571,-0.13969837,0.19693515,0.097238526,0.054462623,-0.32803118,0.6038812,0.40703604,0.7757618,0.0066709123,-0.017818714,-0.49698824,0.24122629,0.26456597,-0.1551577,-0.2411547,-0.18187538,0.07577126,-0.6126497,0.39433855,-0.10809632,-0.32469743,-0.039135836,-0.07788856,0.13982671,0.5859756,-0.024920551,-0.19758897,0.08231985,-0.12764332,-0.27578297,-0.030237682,-0.12290124,0.35736355,0.21307291,-0.18668963,-0.1325725,-0.11234462,-0.18651359,0.21682747,0.07105329,0.4725933,0.40316644,0.056455,-0.22407694,-0.091519915,0.2024935,0.5084046,-0.025295012,-0.041214,-0.23750132,-0.4340923,-0.46244308,0.123567395,-0.17891368,0.32085854,0.17379402,-0.22371012,0.6510704,-0.06270027,1.1429011,0.12188562,-0.4182272,0.19037032,0.3387805,-0.039441034,-0.022987366,-0.4692156,0.9166105,0.47384897,-0.009624271,-0.12681353,-0.14233045,-0.09027414,0.1564234,-0.25496244,-0.12750107,-0.0510767,-0.888582,-0.24091016,0.29468742,0.13027994,0.12278352,-0.09684428,0.09070969,0.2772555,0.0011292577,0.08840792,-0.48192015,-0.020139417,0.31625602,0.46366635,-0.08667387,0.13929006,-0.43417302,0.46689084,-0.42275515,-0.046059486,-0.27975196,0.22050944,-0.16244635,-0.22845195,0.23053494,0.031962626,0.3831482,-0.20190239,-0.37692454,-0.34522107,0.45809457,-0.007284403,0.17111781,0.43372294,-0.16987896,0.032601044,-0.12288224,0.38159016,1.0997943,-0.27465945,-0.066357,0.45179325,-0.34734884,-0.6043311,0.31219637,-0.3223973,0.33756065,-0.03924911,-0.18850361,-0.3841527,0.2787709,0.11311435,0.120400876,-0.08964431,-0.36333308,-0.107308306,0.26678616,-0.30211815,-0.23351765,-0.31021774,0.044117555,0.5818278,-0.31091017,-0.3458513,0.06211877,0.45609188,-0.29543036,-0.45987457,0.021520229,-0.35963136,0.24590717,0.038809877,-0.31082937,-0.15996884,-0.036566958,-0.35542354,0.11310242,0.27163494,-0.40762976,0.06818436,-0.27904573,-0.022229493,0.96405756,-0.06262677,0.078210756,-0.6055715,-0.4979712,-0.9136812,-0.4012241,0.27475178,0.11886649,-0.096430376,-0.5026561,0.051729176,-0.10327758,-0.14216799,-0.09425936,-0.3985539,0.53582174,0.13231811,0.39681426,-0.24050976,-0.79077035,-0.054572053,0.21698986,-0.26631048,-0.72357863,0.5352436,-0.02037193,0.8885732,0.016248163,0.07084828,0.51331955,-0.49081117,-0.122034654,-0.2893356,-0.12430645,-0.7471775,0.09150651,852 +302,0.45254552,-0.18693565,-0.45254663,-0.029503938,-0.23849832,0.10684161,-0.15500559,0.23380238,0.19069824,-0.18120833,-0.027435783,-0.30051464,-0.123053804,0.425962,-0.15392627,-0.8316274,0.09696908,0.08634396,-0.6344783,0.5669347,-0.4997763,0.35580114,0.02702213,0.2632131,0.23411223,0.23011777,0.05046714,-0.10622153,-0.10138048,-0.10709575,-0.060555633,-0.03480893,-0.30491087,0.1335023,-0.061364617,-0.22289668,0.08961495,-0.3935522,-0.64121634,-0.6923039,0.4288096,-0.63394994,0.44532663,0.09679421,-0.35249397,0.22650413,0.0055679684,0.36886832,-0.19087152,0.025358481,0.2380269,-0.041193254,0.0061059236,-0.19456568,-0.35653725,-0.48643672,-0.51523525,0.011867809,-0.56517875,-0.24775495,-0.15643731,0.19133803,-0.3015122,-0.056665998,-0.04606223,0.4342446,-0.36500606,0.0121042095,0.13414034,-0.16255757,0.1725557,-0.7273553,-0.03169621,-0.035264887,0.03935057,-0.0391357,-0.05432999,0.32048672,0.07882503,0.5875539,-0.13828373,-0.17574237,-0.20011069,-0.07499714,0.034998186,0.60944444,-0.16039209,-0.3637194,-0.25556743,0.10383258,0.1626949,-0.047571875,0.03649598,-0.44197357,0.05746603,-0.0063744825,-0.19312094,0.52797765,0.57680714,-0.34582663,-0.12118732,0.4634015,0.4390721,0.2418721,-0.15409732,-0.050094463,0.02616017,-0.39158016,-0.08344888,0.021821562,-0.21569236,0.47882524,-0.051392507,0.20161505,0.62376726,-0.1339055,0.21603785,0.040556364,0.054475542,0.052691367,-0.1670844,-0.1899196,0.083338656,-0.6506034,-0.01674867,-0.11809838,0.81322885,0.14029646,-0.7031425,0.44749567,-0.4590611,0.15441275,-0.07835509,0.51939446,0.67891216,0.25333682,0.12683243,0.6130412,-0.46884155,0.13025379,-0.1278849,-0.30786416,0.06990299,-0.033749588,-0.013099208,-0.49816865,-0.14781901,-0.14918788,-0.20146377,-0.110349864,0.40404025,-0.49205172,-0.116775505,0.10741865,0.87247974,-0.28762084,0.07599206,0.5624302,1.1204349,1.000906,-0.15134208,1.2076898,0.41384232,-0.25264192,0.18644872,-0.4495188,-0.53697056,0.1963639,0.19064164,-0.10348531,0.33140355,0.008707987,-0.1977012,0.38619265,-0.25698572,0.07168942,-0.26436365,0.22958946,0.058307048,0.1699623,-0.45055544,-0.17065118,-0.08813106,0.06634081,0.15583625,0.23124482,-0.43259412,0.10901441,-0.052285466,1.3387617,-0.17151216,0.06358584,0.14129482,0.40739653,0.17473766,-0.08775855,-0.07856147,0.30988905,0.29507986,-0.018290233,-0.6588414,0.12666246,-0.3846889,-0.2699517,-0.2375068,-0.21127152,0.046073318,0.028185256,-0.54827887,-0.015038872,0.015243749,-0.29117623,0.3548582,-2.538549,-0.30502707,-0.14913172,0.33396232,-0.29024023,-0.29912046,-0.041912794,-0.41767704,0.22949126,0.23997803,0.4005038,-0.57511955,0.46069056,0.5443067,-0.50388026,-0.086311296,-0.5533711,-0.04689985,-0.04404622,0.4889157,-0.07978383,-0.05309051,0.036267605,0.17951289,0.4187683,-0.07889153,0.02507356,0.13512401,0.41375935,0.17061685,0.2887181,0.034865145,0.51063615,-0.17414893,-0.07761846,0.38461724,-0.22017686,0.23137014,-0.13970785,0.19448961,0.40649846,-0.28207913,-0.72959876,-0.45605972,-0.2751361,1.123407,-0.120757736,-0.315054,0.2711059,-0.07751121,-0.28584358,-0.051081996,0.34207964,-0.16081892,-0.15790643,-0.7250582,0.078150764,-0.105064504,0.11989885,0.06311809,0.03293346,-0.1407985,0.62815547,-0.061191894,0.26719385,0.25162306,0.30093822,-0.2103237,-0.5146957,0.032730047,0.9426105,0.458865,0.11294599,-0.13782705,-0.053066406,-0.23158933,-0.122309715,0.047863446,0.4713316,0.7658733,0.016527604,-0.040758602,0.25518674,-0.051161908,0.0010240813,-0.09545929,-0.47114745,0.025818646,0.060357157,0.6233955,0.51461416,-0.17573373,0.5026808,-0.059738897,0.18873902,-0.14803734,-0.44446963,0.44742167,1.1389848,-0.19435722,-0.21366324,0.423068,0.35646975,-0.3879704,0.3697633,-0.7081672,-0.3499346,0.42188033,-0.23440641,-0.41102168,0.2993864,-0.27783176,0.13769008,-0.76152194,0.48204482,-0.20226263,-0.38796246,-0.5972392,-0.19244671,-3.0895772,0.28630385,-0.40033013,-0.09848271,0.05147912,0.14707316,0.346535,-0.54734695,-0.32299617,0.07839187,0.074009486,0.5551411,-0.03730248,0.19078757,-0.2826079,-0.2509379,-0.2874656,0.16539474,0.06301758,0.25376338,-0.01888814,-0.38464838,0.12226049,-0.19743614,-0.2551325,0.06222249,-0.6014101,-0.39982802,-0.20044574,-0.57159317,-0.15925822,0.6420352,-0.11425196,0.036174655,-0.24709912,0.09738564,-0.07245882,0.3229366,0.1423124,0.11901127,0.0014089068,-0.10524474,-0.029040666,-0.4214309,0.19884841,0.19237147,0.20058684,0.36594123,0.044718243,0.08760479,0.491495,0.51359516,0.010456066,0.7270816,0.38206652,-0.22493592,0.16541965,-0.22711784,-0.05712471,-0.38918933,-0.37469503,-0.11902856,-0.2856103,-0.49210018,-0.027445536,-0.35653916,-0.6610185,0.36579373,-0.05964059,0.23004942,-0.049394675,0.20898345,0.552034,-0.088264026,-0.023061363,-0.0011659622,-0.070556745,-0.45821908,-0.33824152,-0.6814431,-0.41095278,0.2439506,1.0107775,-0.16497438,-0.122212715,-0.030112863,-0.16466519,-0.09894987,-0.07717737,0.05109055,0.10047796,0.26529625,-0.11875595,-0.7517328,0.25605145,-0.20435448,-0.01976343,-0.53204286,0.116557755,0.81243783,-0.46061376,0.45325273,0.30552903,0.1645192,-0.08445721,-0.4739362,-0.019724805,0.26817894,-0.17519578,0.40993232,0.05855579,-0.59466285,0.45134562,0.31118125,-0.3862548,-0.7235864,0.4535986,0.11967537,-0.39685443,-0.12387432,0.4599067,0.01703916,0.029669015,-0.19743657,0.24587458,-0.36759052,0.16909344,0.23701486,-0.08376589,0.29248756,-0.19916473,-0.23091806,-0.5789945,-0.02100556,-0.35521296,-0.31408826,0.1875503,-0.0022565683,0.27163425,0.22464132,0.09915401,0.4581719,-0.16547722,0.080990344,-0.038163647,-0.25982898,0.39184174,0.46765748,0.46811944,-0.36507437,0.52176344,-0.11186188,-0.10244525,0.15403691,0.116971515,0.48209828,0.13425355,0.33464807,0.062170934,-0.11248841,0.2996841,0.8526331,0.13604695,0.5067589,0.21101539,-0.20651771,0.14294161,0.08430954,-0.03127385,-0.030061336,-0.4182634,-0.23650716,0.1397688,0.31434786,0.4903979,0.06536952,0.28498065,-0.2365486,-0.44086236,0.06904822,0.18658939,0.033345807,-1.0491091,0.25539634,0.115044385,0.66249645,0.30225736,0.044221774,-0.0271046,0.63826007,-0.01305263,0.07170785,0.2755776,-0.06807125,-0.49011666,0.423118,-0.4917155,0.33948287,-0.06651558,0.051480327,0.01948673,0.042807285,0.31911424,0.69416994,-0.19221324,-0.09358528,-0.057331014,-0.49667606,0.01581167,-0.29316777,0.2295476,-0.45102605,-0.42211863,0.52157545,0.49442163,0.034973644,-0.13991079,-0.02003318,0.106681585,-0.1014864,0.2038043,0.053224605,-0.00015678405,-0.048398316,-0.7729158,-0.2673886,0.4726499,0.027773228,0.09092539,-0.07824952,0.12594546,0.1979067,-0.14902616,-0.040357348,0.074969515,-0.6768199,4.118681e-06,-0.21536238,-0.4495717,0.3605756,-0.20569785,0.10173566,0.13167943,0.04927033,-0.46161366,0.36003938,0.14575009,0.74224925,-0.099594705,-0.12065744,-0.43070713,0.046488382,0.13788481,-0.1637076,-0.16426715,-0.35235798,0.19878295,-0.7723629,0.538883,-0.24377231,-0.08226062,0.035260875,-0.22977604,0.04748256,0.6359216,-0.28337437,-0.20652333,-0.13276173,-0.12341698,-0.41135797,-0.13124737,-0.042665474,0.039183505,0.32205066,-0.14740205,-0.1667256,-0.20012274,-0.16758709,0.4532039,0.11275788,0.46238774,0.51042765,0.21178222,-0.3521866,-0.2004346,0.2875904,0.43669993,0.008336087,0.0006097585,-0.33037072,-0.35264224,-0.33131662,0.21837376,-0.13726787,0.21971032,0.15417913,-0.3793748,0.8194723,0.13329715,1.157995,0.016240379,-0.2040513,0.016778532,0.45197445,0.0008740425,-0.030595759,-0.30956897,0.91735816,0.66610426,0.04374096,-0.20242088,-0.4624113,-0.1483443,0.20442696,-0.27213457,-0.05171337,-0.00830282,-0.5293482,-0.31371766,0.28336823,0.36926398,-0.014260014,-0.11564215,0.096585065,0.10984368,0.13588126,0.38800022,-0.58822256,-0.09221865,0.26528332,0.3199084,0.023185443,0.32523346,-0.47904444,0.40761954,-0.54754865,0.14130303,-0.2854192,0.057888854,-0.032789227,-0.17172946,0.20253135,0.07163832,0.37819836,-0.45435074,-0.3400599,-0.34228393,0.4865295,0.17521136,0.08021502,0.63244545,-0.19189858,0.038050603,0.09217159,0.6610435,1.1153785,-0.20930977,0.0032360156,0.2592909,-0.2276747,-0.75669795,0.23177657,-0.35857764,-0.011947608,-0.15781473,-0.23738183,-0.51729244,0.3928235,0.12474416,-0.05112653,-0.06089425,-0.6019675,-0.123451166,0.29043534,-0.13106982,-0.2657868,-0.20808966,0.18046986,0.5672502,-0.21140145,-0.18951966,-0.029938417,0.39763063,-0.26404002,-0.6402055,-0.0044539175,-0.419543,0.33421478,0.17190494,-0.11071076,0.043172013,0.03833847,-0.42722124,0.11608265,0.24030909,-0.41749662,-0.01052442,-0.04546793,-0.054335993,0.62387156,-0.091110125,-0.076292366,-0.71033204,-0.52995056,-0.8572683,-0.5364411,0.35841694,0.19196798,0.057704028,-0.6139717,-0.12660514,-0.13329794,0.04277458,0.027101906,-0.45161435,0.28933567,0.11559992,0.49586546,-0.23531073,-0.7539308,-0.018179102,0.19720906,-0.33232555,-0.6688101,0.4542714,-0.053040553,0.86041933,0.009533477,0.07294698,0.18991981,-0.41395956,0.030226143,-0.3457351,-0.32491022,-0.7371412,0.15337652,854 +303,0.48856574,-0.12861958,-0.4809274,-0.29935357,-0.3469301,0.07614346,-0.024981173,0.37619033,0.30824515,-0.069881655,0.015600121,-0.016395878,-0.066761844,0.33930746,-0.103694946,-0.7685868,-0.013124879,0.19570097,-0.72581726,0.5016242,-0.48323682,0.22029641,0.020521877,0.45913228,-0.009295068,0.15393749,0.091037326,-0.0506379,0.24573769,0.050051816,-0.16645911,0.39143255,-0.56358474,0.23044325,-0.015101238,-0.2887376,-0.053804856,-0.45092723,-0.2553873,-0.7450154,0.22482869,-0.4736505,0.488339,-0.009413779,-0.44371846,0.07614906,-0.014777003,0.18490951,-0.50613135,-0.10394599,0.22551225,-0.15698113,-0.05920696,0.0075955074,-0.0863795,-0.5010034,-0.56321037,0.04106462,-0.5599031,0.065188244,-0.15252519,0.2587823,-0.3583455,-0.033025615,-0.24888496,0.5436161,-0.29159883,0.11237972,0.33574572,-0.16069207,0.057178833,-0.47461516,-0.031581126,-0.19702172,0.13042277,0.18983725,-0.4718753,0.28661606,0.29164273,0.56720346,0.16495389,-0.3847956,-0.10515107,-0.0879531,-0.1274448,0.43908864,-0.07047791,-0.25771588,-0.3405856,0.013892661,0.16438468,0.14313276,-0.020029431,-0.39425746,-0.027392868,0.036668744,-0.20826192,0.3830348,0.45198673,-0.3979465,-0.24621437,0.37801597,0.41604844,0.1995991,-0.14152808,0.08842978,-0.0054940786,-0.49717873,-0.2528706,0.18397169,-0.24741171,0.5202063,-0.23832074,0.1311616,0.79778576,0.03282458,-0.16918868,-0.04345095,-0.04403688,-0.15077254,-0.44364482,-0.22076963,0.21469606,-0.4412859,0.014441864,-0.2750418,0.8091522,0.11166259,-0.794301,0.33271018,-0.5152908,0.14726502,-0.17503242,0.62227046,0.94235015,0.38968435,0.27276766,0.795969,-0.42746708,0.11065611,-0.03607944,-0.3706319,0.08742653,0.023676623,-0.023156779,-0.58571905,0.055062428,-0.09160206,0.03089809,0.0011031429,0.24744318,-0.48517466,-0.19070068,0.02365485,0.49494407,-0.35007092,-0.24582681,0.6786121,0.9629153,0.98599803,0.106322415,1.3490093,0.3935275,-0.06420505,0.26629242,-0.22986409,-0.574401,0.1956579,0.2586079,0.019759575,0.37938213,0.059058554,0.020565737,0.61505973,-0.16673276,-0.085548475,-0.05434789,0.31581274,-0.08556159,-0.07055945,-0.4873523,-0.33918908,0.102561116,0.07213648,-0.016533708,0.24096869,-0.18464692,0.37464622,0.16785881,1.3284042,0.08554564,0.024022246,0.0058467686,0.2963883,0.28838202,-0.21769215,-0.11188093,0.49350175,0.48005256,-0.033707205,-0.57255274,0.06504335,-0.28432772,-0.3146421,-0.16849433,-0.44803995,0.009734503,-0.12864147,-0.5187843,-0.1456991,0.00046207904,-0.28379124,0.4686441,-2.548469,-0.2119184,-0.088987954,0.25368622,-0.207538,-0.25248796,-0.24076536,-0.43094763,0.17780632,0.39320734,0.36594343,-0.7628898,0.44158763,0.22584032,-0.47397742,0.047549296,-0.76128423,-0.13694954,0.028970854,0.2546664,-0.024770236,-0.07693974,-0.15681799,0.28165236,0.7190773,0.099938616,0.018302595,0.31146753,0.4859365,-0.06394485,0.4805799,-0.03166501,0.5940496,-0.19540481,-0.21268012,0.33864024,-0.37233588,0.39072856,0.04536024,0.13284941,0.43903312,-0.41826117,-0.7674728,-0.5626762,-0.2757246,1.2970554,-0.5006708,-0.28905037,0.24836151,-0.18513934,-0.18060614,0.022354417,0.3614026,-0.101444095,-0.100063205,-0.63957673,0.09592828,0.006695183,0.18982212,-0.113493934,0.024454182,-0.2629924,0.7781729,-0.107188635,0.60905826,0.34159282,0.20611419,-0.085036844,-0.44080302,0.037493195,0.73588204,0.39965862,0.15296513,-0.14310206,-0.17940484,-0.15763263,0.009872059,0.22221223,0.575385,0.679191,-0.06838436,0.1618981,0.44973794,-0.09295297,0.037329357,-0.07908769,-0.2743923,-0.099673636,0.18256739,0.5709964,0.60512775,-0.21940883,0.25226912,-0.045824982,0.15485974,-0.00916184,-0.65200335,0.517862,0.9375034,-0.23741984,-0.2927886,0.52981144,0.30880082,-0.30554426,0.35126755,-0.42614567,-0.13089617,0.65027547,-0.0647574,-0.30516738,-0.03649964,-0.33528703,0.033748396,-0.96685964,0.22422913,-0.10947275,-0.47982737,-0.49631956,-0.101931326,-3.8203897,0.25878927,-0.25423318,-0.02026283,-0.1183481,-0.16376534,0.35316867,-0.6555631,-0.48083752,0.004554741,0.15697022,0.50451434,-0.037342,0.08792314,-0.29328918,-0.25233498,-0.15411814,0.16639213,0.11121976,0.35933718,-0.05825365,-0.42832386,0.089710936,-0.15374802,-0.5486136,0.113232724,-0.5325226,-0.46866652,-0.11563269,-0.6449191,-0.14772733,0.68315876,-0.331638,-0.08988852,-0.21663547,0.020801445,-0.11384037,0.335487,-0.013768627,0.22691366,0.07959081,-0.05709939,-0.22051714,-0.3015751,0.21582647,0.06399007,0.21301462,0.33431903,-0.03276104,0.2701069,0.6189462,0.5609564,-0.17202981,0.7605051,0.44510868,-0.12789544,0.29698136,-0.16031434,-0.22308272,-0.66820073,-0.39952987,-0.21526875,-0.5838832,-0.31483182,-0.009158325,-0.28416288,-0.8103894,0.44497076,-0.011604418,0.10623741,-0.114673145,0.28602663,0.5234773,-0.13390276,0.08890283,-0.13670151,-0.35421005,-0.5560393,-0.42604163,-0.62000793,-0.46719617,0.20020567,1.2679474,-0.23745249,0.015127023,-0.064857654,-0.28965855,-0.010860655,0.07542556,0.15081148,0.33431348,0.2854231,-0.23368911,-0.57684267,0.3787126,-0.15765788,-0.100236535,-0.5419001,0.19916269,0.62525123,-0.58386433,0.7469799,0.18398285,0.18897668,0.047756776,-0.8132902,-0.34968203,0.051938254,-0.120176144,0.6325013,0.19308418,-0.6531678,0.5112914,0.20825782,-0.10543251,-0.67530227,0.41409302,-0.13267754,-0.20872371,0.07428311,0.32136965,0.028532168,-0.06525429,-0.10791675,0.20580257,-0.51354456,0.26902738,0.28370732,-0.024575753,0.2687416,0.052469514,-0.08631881,-0.5870745,-0.16919796,-0.694679,-0.30980694,0.043664772,0.05704792,0.11138471,0.014942042,-0.12832822,0.4984288,-0.19657382,0.21692772,0.011716732,-0.21324523,0.3438141,0.5374583,0.34019384,-0.43724844,0.54472214,0.21689838,0.13115749,-0.21547483,0.19597301,0.48069364,0.24166006,0.38349903,-0.28597164,-0.100521944,0.19728793,0.71050256,0.08342903,0.31239542,0.06052321,-0.13737132,0.33799526,0.10547615,0.18687122,-0.10661183,-0.26140407,-0.080208585,0.040721297,0.28416064,0.56033355,0.13173114,0.25786045,-0.0017693341,-0.1538554,0.1672,0.18425322,-0.080476455,-1.1836855,0.36223108,0.38429445,0.7037925,0.4468896,0.09304301,-0.19282117,0.46613827,-0.38087484,0.1644973,0.43729553,0.039061252,-0.35564324,0.60263044,-0.5661132,0.52436864,-0.2023348,-0.007871754,0.19071296,0.248677,0.3165406,0.7965918,-0.1938795,0.047278095,-0.004010822,-0.27794668,0.10787465,-0.41005686,0.01729778,-0.48322895,-0.3437114,0.564268,0.30654132,0.34825364,-0.47960702,-0.07204076,0.082072355,-0.25510815,-0.0074779154,-0.15382442,-0.17229234,-0.104471,-0.5445814,-0.26811612,0.59480727,-0.22244057,0.09441779,0.058672205,-0.26286253,0.19291146,-0.12577015,-0.037623484,-0.03691317,-0.605246,-0.14037332,-0.20912334,-0.4603985,0.4374201,-0.51822996,0.18479082,0.1747901,0.007721913,-0.3206044,0.15043277,-0.039621364,0.8380461,-0.01832386,0.03344651,-0.45333594,0.16199459,0.27390066,-0.24184676,-0.1468537,-0.40447664,0.0484051,-0.47055718,0.37415415,-0.06823001,-0.32614857,-0.068854995,-0.0921321,0.043519568,0.40011796,-0.31185117,-0.13566495,-0.020978697,-0.11203027,-0.2992133,-0.070498735,-0.30131045,0.37740105,0.02886879,0.035172407,0.04681743,-0.19180274,-0.109154195,0.29809535,0.21442427,0.14563881,0.23005977,-0.06120235,-0.30442494,0.06688091,-0.020032218,0.27314612,0.07730367,-0.15891483,-0.33377874,-0.24376386,-0.28415972,0.16928066,-0.13191415,0.25483036,0.07600225,-0.37375352,0.76946336,0.17132276,1.1617913,0.11178456,-0.33197483,0.002735893,0.48211232,0.053401813,0.14606138,-0.2563688,0.69967526,0.49959552,0.001698474,-0.2548168,-0.49545148,-0.17759539,0.26408392,-0.19709176,-0.22446842,-0.1468927,-0.6564959,-0.20399657,0.15987758,0.12106506,0.16388384,-0.045889888,-0.2991812,0.098530784,0.05867869,0.39461097,-0.4349219,-0.0076393425,0.1346553,0.15753649,0.080693744,0.34181204,-0.3383443,0.40617263,-0.7167075,0.19780059,-0.34252167,0.1725619,-0.1187089,-0.17534341,0.1812895,-0.13242714,0.31004137,-0.2328137,-0.30081898,-0.22475986,0.7663218,0.2098804,0.20585817,0.80170596,-0.32878664,-0.10081578,0.23151137,0.49013633,1.232009,-0.22062284,-0.10004182,0.21435122,-0.22345637,-0.61490285,0.14085473,-0.38130257,0.04054837,-0.1049857,-0.3714895,-0.2813086,0.2582699,0.1034349,-0.014770261,0.23468997,-0.64185333,0.005170661,0.3926934,-0.28853524,-0.12809198,-0.26887226,0.3507782,0.6945964,-0.3836724,-0.49871406,0.16352607,0.23901053,-0.1685227,-0.60754293,0.004916233,-0.41312295,0.32956362,0.17417055,-0.33737367,0.016548479,0.21805115,-0.4624929,0.10046008,0.35878855,-0.22601625,0.12970726,-0.18788424,-0.23709835,1.0771407,0.074337445,0.18864031,-0.7103439,-0.44347966,-0.85576034,-0.33142662,0.27116236,0.24468349,-0.0072084307,-0.6821896,-0.114948355,-0.10540657,-0.025244607,-0.03254385,-0.43145046,0.4940701,0.17259319,0.31271738,0.005410055,-0.88587326,0.09141397,0.08153005,-0.09780238,-0.4738713,0.5066583,-0.21430226,0.68434256,0.09995737,0.10170799,0.059174895,-0.55746704,0.16405681,-0.44716927,-0.2320893,-0.6464494,0.0716685,859 +304,0.37732226,-0.15449992,-0.3321305,-0.12448481,-0.1068647,0.103229545,-0.024104571,0.5734209,0.14895503,-0.504751,0.029562326,-0.22316223,0.06264444,0.2815103,-0.06630949,-0.49586895,-0.03624008,0.13485615,-0.48474944,0.509993,-0.488303,0.33381498,0.02828118,0.26575282,0.26397333,0.20860928,0.12561846,-0.13995737,-0.246934,-0.0615976,-0.31526738,0.32061195,-0.47995523,0.16564946,-0.057320442,-0.3106404,-0.06401326,-0.55463207,-0.20790361,-0.65660894,0.30789524,-0.6124359,0.43126264,0.036058195,-0.21689697,0.3374955,0.008631373,0.1590491,-0.3113985,-0.09712601,0.18547535,-0.019055089,0.007077658,-0.10737061,-0.17975232,-0.20403562,-0.5902064,0.12735534,-0.29641125,-0.25505072,-0.28225276,0.047529187,-0.2977031,-0.10760081,-0.15250021,0.50546914,-0.3698246,-0.017686915,0.046982713,-0.07665453,0.05970394,-0.49101022,-0.23035182,-0.07774822,0.20991282,-0.24899103,-0.2005843,0.26257768,0.367488,0.50136936,-0.10547017,-0.12153492,-0.3801693,-0.019443242,0.061498545,0.57669884,-0.12536792,-0.6716853,-0.042709947,-0.0024716535,-0.15508097,0.16465467,0.2743009,-0.23258692,-0.16387297,0.065997854,-0.3007611,0.38938776,0.3794625,-0.48236087,-0.3808761,0.38271073,0.43503234,0.12371781,-0.0591717,-0.14568385,-0.022130368,-0.59538114,-0.1420618,0.101151034,-0.18712394,0.45609373,-0.16002989,0.27097625,0.5962435,-0.14531264,0.05006246,0.027253648,-0.05671579,-0.039916683,-0.36872247,-0.15703563,0.18112141,-0.33457738,0.17761129,-0.12183056,0.7725229,0.19668274,-0.722856,0.51763624,-0.49570695,0.15177727,-0.04151574,0.38227132,0.6957261,0.2920016,0.3065429,0.5523375,-0.43865815,-0.037275426,-0.063161,-0.31507406,-0.051872294,-0.044121996,0.022272553,-0.49512693,0.11086254,0.0438121,-0.024640007,0.14999872,0.29750916,-0.40610445,-0.08405883,0.1724961,0.7604783,-0.27607772,-0.22087076,0.7238228,0.87696284,1.0552889,0.035396837,1.0358241,0.18220784,-0.280075,0.39712203,-0.35903245,-0.64577705,0.19746122,0.40541232,0.10746796,0.113906674,0.03787331,-0.007315016,0.34259796,-0.1995655,0.058934078,-0.08401272,0.14253949,0.1470339,-0.09652397,-0.43416703,-0.49942937,-0.18795976,-0.027748276,0.066569015,0.30244446,-0.24850784,0.3369802,-0.047321703,2.0108435,0.004782454,0.09658645,0.08804653,0.4886375,0.22004355,-0.2307642,-0.18079755,0.27923006,0.24733518,-0.0026493957,-0.5388474,0.11563837,-0.23422667,-0.6074949,0.059155066,-0.37960613,-0.13330847,-0.023784108,-0.47941926,-0.0990794,-0.13391142,-0.3672354,0.5209648,-3.0469725,-0.14285825,0.0254169,0.18832384,-0.2983506,-0.48194,-0.15092808,-0.46055374,0.36307934,0.3057798,0.50102425,-0.61356246,0.18381637,0.23107924,-0.46290758,-0.2145281,-0.6270303,-0.13832341,-0.0138402935,0.275464,-0.09969415,-0.04228876,0.028575102,0.048999313,0.5137946,-0.018847188,0.08528846,0.19954552,0.3277324,0.17655952,0.45740747,-0.13187356,0.56867826,-0.22454758,-0.14483605,0.2789821,-0.39407656,0.3249419,-0.007354625,0.15148465,0.37823913,-0.49299622,-0.82512933,-0.5381921,-0.24176502,1.0435655,-0.14694303,-0.15561105,0.34815323,-0.2818466,-0.1522225,-0.17855145,0.5018718,-0.020776387,-0.29724774,-0.691515,0.13644613,0.0039060514,0.13033745,-0.055430364,-0.018257419,-0.38906538,0.5696105,0.0408858,0.5586758,0.27145472,0.18890648,-0.27302417,-0.23972934,-0.022429649,0.89561284,0.29077587,0.16201001,-0.2240062,-0.19103931,-0.41800302,-0.122660674,0.11357477,0.34109706,0.6290143,0.03143013,0.10582427,0.29319677,0.08798542,0.109793626,-0.11482821,-0.059562135,-0.07281915,0.009488362,0.5792958,0.421143,-0.2327467,0.47094733,-0.08050545,0.14467312,-0.31043273,-0.3296139,0.46626326,0.9580134,-0.054501165,-0.18334967,0.45817477,0.36917952,-0.18692374,0.35201707,-0.37233528,-0.1630438,0.5898736,-0.30083752,-0.25182876,0.1809339,-0.28933793,-0.057614047,-0.87915325,0.16792342,-0.17413248,-0.34859288,-0.4630476,-0.09182421,-3.374348,0.0680168,-0.13958764,-0.20089422,0.012409095,-0.13236684,-0.00012604991,-0.6112135,-0.45213282,0.13864268,0.04016675,0.6849725,-0.09653075,0.15171617,-0.18622822,-0.29367062,-0.34277,0.07959486,-0.1319844,0.47657683,0.038202595,-0.28728145,0.012230714,-0.23907389,-0.45641506,0.13283819,-0.5897522,-0.43727365,-0.099334195,-0.48358935,-0.36101112,0.7086967,-0.31113398,0.10048011,-0.053070687,-0.10477562,-0.15360378,0.33666545,0.19927782,0.189509,-0.0070155244,-0.09914363,0.050860144,-0.27234378,0.23303024,0.107166134,0.3446263,0.44807443,-0.09934259,0.22795108,0.45160285,0.71777445,-0.08931392,0.7678224,0.4867874,-0.030379724,0.37558338,-0.37184814,-0.10335181,-0.43061748,-0.29787335,-0.011620279,-0.3389204,-0.5291501,-0.14136918,-0.25009623,-0.6577136,0.38583887,0.0118062375,0.20421417,0.020873448,0.2190079,0.43014425,-0.24270166,0.037847422,-0.052696787,0.056482118,-0.442426,-0.33683893,-0.62445694,-0.47335765,0.29621795,0.83744526,-0.077627465,-0.06908617,-0.044560794,-0.18016014,-0.08276778,-0.01369695,0.030243825,0.27784172,0.19956136,-0.1719771,-0.59465843,0.5936117,-0.026907882,-0.1689635,-0.3400817,0.1297323,0.4219897,-0.5082214,0.59161884,0.17396468,0.0755105,-0.05096256,-0.44431794,-0.28795394,0.038661227,-0.16553144,0.23844472,0.16859058,-0.7901437,0.4682471,0.3784352,-0.20529903,-0.718371,0.41178292,0.0944132,-0.2125519,-0.1153676,0.27081713,0.19753313,0.026249062,-0.20008124,0.23332341,-0.6832984,0.17849459,0.29525745,0.09650986,0.24046403,-0.19456895,-0.07652096,-0.6375628,0.06529151,-0.3783372,-0.30603835,0.17789094,0.1821412,0.28423527,0.19172274,0.035239324,0.29231352,-0.2806568,0.13943498,0.03979416,-0.096698694,0.19864586,0.351535,0.48424965,-0.42728817,0.4743385,-0.016687235,0.05729603,0.04212234,-0.00019108455,0.38966453,0.18199606,0.20605898,-0.14689513,-0.40854728,0.29260164,0.73108286,0.21127126,0.25402597,-0.012278446,-0.14279968,0.22579846,0.031662673,0.16049775,0.13654651,-0.48498264,-0.046191134,-0.12027777,0.19193846,0.50572544,0.08688512,0.13866095,-0.09099913,-0.25967363,0.036514767,0.24996522,-0.087379836,-0.8704876,0.4010163,0.16142997,0.91102046,0.57276285,0.0011014044,0.036067046,0.49157518,-0.29432717,0.29636902,0.29423878,-0.22948837,-0.65950596,0.61886954,-0.52221984,0.56273854,-0.05739812,-0.07101289,-0.049577367,-0.16747539,0.39340517,0.6344353,-0.12704642,0.072098844,0.13089237,-0.2661235,0.18952103,-0.45087665,0.056456827,-0.49048957,-0.124090545,0.61185324,0.38716874,0.21689698,-0.17883086,0.058578346,0.12773082,-0.13654235,-0.010144048,0.066813104,0.1398001,0.051290978,-0.6801096,-0.19303949,0.59215057,-0.1964058,0.20697512,0.039081734,-0.27025563,0.23843017,-0.17079595,-0.14133777,-0.07293726,-0.64001614,0.07139484,-0.25747365,-0.37236974,0.4126487,0.0018298845,0.2501608,0.17877603,0.13654871,-0.20698068,0.3682023,0.2855503,0.65783936,-0.12960312,-0.058919672,-0.47250333,0.23050953,0.058240555,-0.15541181,-0.22411104,-0.16881299,-0.07814606,-0.5343491,0.46850902,0.1333854,-0.20685154,0.020299705,0.020672591,0.10316456,0.58440423,-0.05597693,-0.012274522,-0.29386365,-0.14660718,-0.23254791,-0.03213717,0.0079404395,0.3836684,0.21779624,-0.03567543,-0.06064946,-0.08827477,-0.13391079,0.3427868,-0.018152798,0.294932,0.1911071,0.05963367,-0.30277395,-0.19738065,0.1525836,0.3795424,0.06582654,-0.11393515,-0.26871625,-0.15079759,-0.3645789,0.1354625,-0.16055562,0.42685625,0.08090841,-0.31671053,0.5576723,-0.058478158,1.059921,0.093358286,-0.31622875,0.11815127,0.37994167,-0.011331473,-0.05013098,-0.36134478,0.8946127,0.34294617,0.061760657,-0.17287332,-0.20418897,-0.03624557,0.21468982,-0.20541245,-0.18130998,0.062505,-0.61874694,-0.19332081,0.15183932,0.14729208,0.28867435,-0.11618611,0.007255578,0.26469213,0.061806742,0.31420344,-0.3166406,-0.17906652,0.2771078,0.38533637,0.012873038,0.098658696,-0.46657792,0.37537596,-0.5715866,0.14324252,-0.17813797,0.2110311,-0.24759445,-0.17140833,0.25407347,0.11844928,0.38201895,-0.14134435,-0.49028358,-0.24603394,0.44735253,-0.02167649,0.20455636,0.47806272,-0.23186168,0.027827501,0.08747374,0.46175542,0.95583737,-0.07759803,-0.11252569,0.38853613,-0.25962844,-0.6184899,0.42741734,-0.13275392,0.21809216,-0.03102016,-0.002035904,-0.50620174,0.12285399,0.31643003,0.12629543,0.06084319,-0.5273685,-0.34343317,0.23324195,-0.30988413,-0.2996798,-0.3593721,0.095792435,0.7402247,-0.32890823,-0.30546954,0.11768512,0.12150005,-0.19616313,-0.6774628,0.0914011,-0.43129092,0.33044365,0.057678156,-0.30296388,-0.121933214,0.011505851,-0.33363527,0.22969453,0.048464265,-0.3762643,0.026379049,-0.3352757,-0.11057509,1.0903447,-0.05863334,0.27844945,-0.41281828,-0.53117585,-0.81715703,-0.509176,0.5895261,-0.07499387,0.034758568,-0.5547825,-0.031320095,0.041366525,-0.20502757,-0.06106888,-0.39699116,0.49156523,0.10416451,0.14163052,-0.12756577,-0.65862066,0.05148317,0.1128246,-0.17524809,-0.46410248,0.38052395,0.02150519,0.84287965,0.018835751,-0.049142443,0.3866495,-0.32497707,-0.09600336,-0.30658305,-0.122237,-0.5179888,0.16789061,868 +305,0.3612019,-0.3794754,-0.49244398,-0.23780611,-0.38185838,0.2932698,-0.19617644,0.204926,0.21012588,-0.33365917,-0.11840384,-0.10143815,-0.097650595,0.2519011,-0.16669479,-0.6974842,-0.0073494315,0.13124256,-0.6519798,0.37783384,-0.62222517,0.31471935,0.08482721,0.30763358,0.02648755,0.39774007,0.108518705,-0.08809121,-0.25067723,0.09895039,-0.061648242,0.3630113,-0.7058405,0.2567466,-0.14254338,-0.25758678,-0.08990537,-0.4375884,-0.2790089,-0.7286488,0.25206983,-0.8763594,0.64157027,-0.19859764,-0.41154665,0.15753298,-0.042377293,0.13722639,-0.4053636,0.17311195,0.11617478,-0.28963515,-0.1140617,-0.16467169,-0.28019089,-0.44964993,-0.5614072,0.085313715,-0.69390565,-0.13969776,-0.28475598,0.27305165,-0.3116068,-0.033867225,-0.19447695,0.4303236,-0.49739826,0.13622363,0.1547307,-0.27199697,-0.072382405,-0.49885464,-0.112537794,-0.13525292,0.18072285,0.0067910594,-0.42941815,0.15307905,0.34533247,0.6520481,0.13963166,-0.2851534,-0.17198128,0.019405905,0.1794359,0.4411234,-0.06686536,-0.18503284,-0.40316167,-0.11510129,0.44870603,0.07930143,0.07377424,-0.44232872,0.033061292,0.1418026,-0.17057416,0.34689146,0.5904737,-0.46475682,-0.23741649,0.42176056,0.40661043,0.05948829,-0.1256896,0.15580983,-0.096821025,-0.5615421,-0.23330039,0.1836765,-0.09450171,0.6578804,-0.2393788,0.11908182,0.7993828,-0.26509267,0.04728296,-0.019525561,-0.09731437,-0.03388693,-0.25493482,0.06509214,0.05368433,-0.45526168,-0.16387396,-0.21322997,0.6396026,0.2042906,-0.6933425,0.4308252,-0.32980585,0.17691714,-0.07661389,0.7156531,0.8456679,0.5529001,0.22100379,0.7624762,-0.4258372,0.14975777,-0.11491369,-0.40012646,0.2709547,-0.26204062,-0.007115436,-0.43829352,0.09564037,0.040448487,-0.07383386,-0.09878132,0.41875374,-0.52801144,-0.03478328,-0.051063314,0.5882568,-0.46038678,-0.2289376,0.982537,0.8786898,0.89456266,0.13354515,1.5375848,0.55764693,0.047247674,0.05827781,-0.349865,-0.55047303,0.14046016,0.31767684,-0.010572227,0.4327907,0.18011954,0.06564278,0.5343723,-0.36861342,-0.06931522,-0.13650389,0.39212334,0.038111653,-0.01745144,-0.33488634,-0.16159157,0.27639225,0.11325482,0.02684116,0.22951078,-0.28722066,0.441479,0.10459292,1.3097876,0.0044035157,-0.042587463,-0.04952372,0.3806015,0.23057862,-0.09764312,-0.025762456,0.37936977,0.31983224,-0.13493237,-0.5844866,-0.052753367,-0.17870817,-0.37334946,-0.20783901,-0.4373928,-0.09728932,-0.30745548,-0.4750012,-0.19208437,0.09677842,-0.34463766,0.53369105,-2.3397174,-0.32174933,-0.11724392,0.4275456,-0.19251664,-0.40697297,-0.2492876,-0.4723306,0.12717363,0.40572277,0.3089634,-0.7095758,0.45521635,0.36433056,-0.28618437,-0.18485017,-0.7496712,0.09914236,-0.1112651,0.50232285,-0.023152268,-0.21021077,-0.14100905,0.025562637,0.71474046,0.026203323,0.043961048,0.25103524,0.5313181,-0.048213903,0.4298018,0.16014789,0.60622126,-0.14103927,-0.22730403,0.48952726,-0.35729307,0.34532508,-0.013321028,0.17534736,0.4311809,-0.48709646,-0.8068478,-0.6412132,-0.18593706,1.3144208,-0.44948426,-0.50803894,0.14168268,-0.2592277,-0.23535937,0.08331296,0.37034076,-0.112821564,0.036243808,-0.706369,-0.035384815,-0.008542311,0.22179273,-0.1284663,0.26822558,-0.27143613,0.6696491,-0.2580529,0.4371067,0.2720116,0.2497368,0.0006229401,-0.5219857,0.10965785,1.0041093,0.4669313,0.07484484,-0.113097,-0.27536574,-0.09217679,-0.20096307,0.047826912,0.5838397,0.6908315,0.05316413,0.08737807,0.48761642,-0.14393303,0.010325523,-0.23294483,-0.26106295,-0.12224846,0.23973401,0.5649859,0.59960705,-0.22187993,0.43887225,-0.19034186,0.23951057,-0.0038198412,-0.6430787,0.5246662,0.79024345,-0.2710274,-0.13902552,0.5042885,0.35093102,-0.47897014,0.45786476,-0.56966454,-0.27921954,0.6266413,-0.16405174,-0.40893167,0.14767967,-0.33727124,0.098919824,-0.91624427,0.4683601,0.13794515,-0.5467948,-0.47566277,-0.24052317,-3.7031791,0.050581302,-0.16316275,-0.017350078,-0.115461215,-0.23173693,0.33917183,-0.48870823,-0.5005133,0.029516084,-0.004944662,0.4684121,-0.177275,0.090345345,-0.34137586,-0.1930811,-0.24666883,0.19670771,0.13751379,0.2695932,-0.050009314,-0.36804062,0.14121482,-0.4257487,-0.46021497,0.018528657,-0.6286095,-0.57486165,-0.053235266,-0.43505254,-0.25199553,0.69308007,-0.3881754,-0.034897838,-0.40625226,0.082602195,-0.21348858,0.47783464,0.10413191,0.108411506,0.18982433,0.008031368,0.015317949,-0.28866196,0.26470527,0.06506743,0.309146,0.5381903,-0.19003925,0.17545849,0.6326247,0.49944422,-0.103972316,0.82774514,0.26107877,-0.17445685,0.36622837,-0.22290757,-0.31249905,-0.76408845,-0.43912098,-0.12819055,-0.5417202,-0.41355613,-0.03987938,-0.4163727,-0.99248415,0.52443117,0.026410531,0.23674959,-0.13874832,0.5334911,0.53361714,-0.06428554,0.1205971,-0.15360655,-0.33157313,-0.5317781,-0.5285009,-0.6788577,-0.60585856,0.26533833,1.1657618,-0.12044347,-0.122370295,0.05954395,-0.2679883,0.004872036,0.025608802,0.13224736,0.120013334,0.43847695,-0.15021636,-0.81165856,0.25055018,-0.19897659,-0.05155853,-0.65697396,0.097493514,0.8241308,-0.71425843,0.63989806,0.39581004,0.2883527,0.2174143,-0.4509646,-0.29872516,0.010716279,-0.20126596,0.622226,0.2271431,-0.73558587,0.5902535,0.16079617,-0.1390496,-0.7205916,0.4230592,-0.018653555,0.033235263,0.06969704,0.41639563,0.11937353,-0.13443114,-0.13193905,0.12015821,-0.60808676,0.35656324,0.41800037,0.00499415,0.49090534,-0.07788303,-0.37720743,-0.74240327,-0.24426524,-0.5335833,-0.29716232,-0.0044457037,0.0645661,0.17172074,0.0876288,0.07432509,0.5707162,-0.30226675,0.08056893,-0.009891268,-0.23793712,0.39362237,0.6679032,0.3081853,-0.44089714,0.5735357,0.13169344,0.118055,-0.049726546,-0.032046963,0.45339915,0.26075587,0.3251921,0.070683055,-0.060055036,0.15580289,0.75559956,0.26133192,0.5013904,0.12896381,-0.3758803,0.4255605,0.23419565,0.25677806,-0.18896598,-0.25206974,0.07615705,0.019973235,0.27423713,0.37087432,0.2707995,0.347091,-0.069243096,-0.10052952,0.13419007,-0.0021312158,0.03817359,-1.1495037,0.074465275,0.30830634,0.6244047,0.4045275,-0.07299106,0.060022224,0.43244895,-0.3661154,0.06643618,0.40530345,-0.0017443498,-0.38505313,0.44406313,-0.5947744,0.5139302,-0.2683608,0.094434425,0.13278441,0.38634837,0.32125956,1.0015963,-0.07442712,0.007107506,-0.0515107,-0.16735314,0.18282191,-0.41534302,0.08096797,-0.47143373,-0.29427388,0.72792435,0.40532506,0.37558678,-0.33446413,-0.09194859,0.0043834904,-0.24892071,0.25772035,-0.12499378,-0.021537812,-0.22287728,-0.56809837,-0.40154666,0.4466693,-0.06480965,-0.03440772,0.107112154,-0.39667082,0.29297304,-0.2649807,-0.13978292,-0.043818224,-0.63251466,-0.18224014,-0.24758355,-0.70788616,0.31583348,-0.17321688,0.13827366,0.23430684,-0.03476264,-0.42938992,0.1393011,0.024019908,0.793209,0.16823177,-0.23716916,-0.31567627,0.07475091,0.46451092,-0.39941806,-0.047859598,-0.29139945,0.23489143,-0.43825704,0.43593505,-0.2533181,-0.34061283,0.022176782,-0.07005746,-0.04217837,0.4178297,-0.21653035,-0.21463647,0.18119873,-0.0017633438,-0.3517452,-0.039223652,-0.40515786,0.23316672,0.0355335,-0.06294889,0.0054436405,-0.25104058,-0.079574265,0.4240199,0.1134919,0.12276159,0.37912673,-0.11064114,-0.44338125,-0.12212517,0.05022413,0.5373523,0.1077059,-0.11434433,-0.30970442,-0.4076619,-0.33532685,0.38919133,-0.13802633,0.16821764,0.1437458,-0.48823798,0.8667739,0.21797766,1.3215357,0.06366827,-0.37534952,0.12940067,0.57315814,0.094245195,0.12514938,-0.3986541,0.89608234,0.6204722,-0.1822811,-0.13389844,-0.52982014,-0.27583537,0.29168335,-0.30099133,-0.20876391,-0.2524828,-0.84453315,-0.2946308,0.184646,0.10141299,0.097190715,0.07122096,0.051491704,0.09308157,0.09821494,0.43430054,-0.53104717,-0.11737699,0.36571977,0.24826019,-0.042390432,0.23291384,-0.3174499,0.46460012,-0.6569523,0.15622562,-0.35955673,0.112845235,0.0027732134,-0.24982496,0.29578787,0.1292957,0.32471687,-0.37698373,-0.41765416,-0.36765185,0.7062417,0.023070227,0.25063145,0.7027285,-0.2798294,-0.16272245,0.054515436,0.5330996,1.4083598,0.0772551,0.23331784,0.38641292,-0.34679887,-0.62277377,0.22972336,-0.35562402,0.1322594,0.0030284086,-0.37087566,-0.4546273,0.34796107,0.15652488,0.014658654,0.13177072,-0.6428427,-0.2091836,0.34009182,-0.23612596,-0.15277033,-0.20297363,0.2741905,0.74601537,-0.541328,-0.19993828,0.0035762151,0.44612128,-0.3377482,-0.55491865,-0.08517415,-0.32722777,0.4398815,0.16905056,-0.40848133,-0.010690415,0.20262617,-0.43278953,0.012992438,0.43903923,-0.2707873,0.11567987,-0.091167815,-0.071531154,0.9175331,0.11891675,0.19446942,-0.6472777,-0.5340815,-1.0162246,-0.27057108,0.1368098,0.19301417,-0.0997413,-0.66266185,-0.08444094,-0.14555046,-0.17548452,0.14432281,-0.7942862,0.51188993,0.11446615,0.5608269,-0.022638949,-0.91020447,-0.059924714,0.19589217,-0.17246488,-0.54999185,0.67992646,-0.1623113,0.7235034,0.115970105,0.08563945,0.014147094,-0.6090732,0.20091139,-0.40080777,-0.1282662,-0.6879057,0.08289606,870 +306,0.5680411,-0.19688314,-0.41512102,-0.066310905,-0.49773362,0.16393623,-0.19031854,0.46010488,0.11544874,-0.4761122,0.039388377,-0.13505717,-0.15292683,0.34939173,-0.16376439,-0.48678476,-0.14998601,0.22589396,-0.5313652,0.6089529,-0.32581264,0.34912592,0.12103322,0.3140534,-0.06422081,0.102420315,0.15727152,0.0076728244,0.07606388,-0.2068576,0.059790563,0.28772718,-0.86129916,0.413524,-0.12449778,-0.48603502,0.052444085,-0.2834709,-0.30991086,-0.5870945,0.18849787,-0.7595752,0.5487263,0.07594151,-0.4240001,0.20280066,-0.06436578,0.22824964,-0.1317885,0.112694494,0.29199058,-0.0018737555,0.014403498,-0.3635168,-0.10394732,-0.3704037,-0.41993085,-0.08190677,-0.5580529,-0.10812133,-0.24288477,0.2718279,-0.17811184,0.06486772,-0.3363575,0.0065888762,-0.53647506,-0.12766708,0.11668787,-0.01355772,0.33900833,-0.52024025,-0.084430836,-0.20038176,0.02260511,-0.17389409,-0.17955644,0.40786943,0.16700153,0.6706957,-0.10777933,-0.08356847,-0.18435195,0.024966065,0.16215111,0.5338221,-0.37987173,-0.063485265,-0.21146835,-0.009627084,0.32856527,0.070068456,0.2145913,-0.3806778,0.011282965,-0.23898531,-0.13670436,0.24858217,0.41355646,-0.35724714,-0.21197675,0.3407089,0.43908718,0.20047079,0.021682035,0.13567641,-0.05735837,-0.4067019,-0.18545303,0.06493382,-0.27540204,0.18691579,-0.0030661125,0.040064834,0.5787484,-0.08427949,0.18668184,0.06518114,0.0039853095,-0.11622012,-0.19468516,-0.40003374,0.34211075,-0.6100576,0.030794632,-0.15886977,0.6369562,-0.011235169,-0.67441446,0.22129984,-0.63158786,0.14172226,-0.15171137,0.5410971,0.6725498,0.49099594,-0.06942879,0.7740886,-0.5458095,0.07720291,-0.21037786,-0.06761102,0.3358222,-0.19534524,-0.06627132,-0.53551686,0.019847551,-0.058505006,-0.087615155,-0.013416698,0.45543292,-0.5863407,-0.149054,0.12620397,0.67248195,-0.36385208,0.08267657,0.53638905,1.2605488,0.98190373,0.12314167,1.1415963,0.43662232,-0.27750918,0.07030772,-0.068501085,-0.7713857,0.17756104,0.6185226,0.23000176,0.34167126,0.18475416,0.13015474,0.28216502,-0.5069859,-0.032656822,-0.26738957,0.27568057,-0.23248409,-0.23708752,-0.31792322,-0.18246746,-0.023715062,0.10745175,-0.27338836,0.29739633,-0.3034172,0.16740383,0.24877796,1.5154127,-0.12181493,0.02959993,0.19542034,0.2516588,0.24217527,-0.10528013,0.03498514,0.22680052,0.24213137,0.040417958,-0.40316072,0.14749005,-0.18511565,-0.6005216,-0.1491622,-0.089359194,-0.065832935,-0.11151751,-0.39009234,-0.31783003,0.094222754,-0.20708999,0.43489882,-2.1600602,-0.031380393,-0.11890054,0.36367163,-0.22352889,-0.2680465,-0.15586837,-0.16111882,0.4278766,0.47037715,0.3388935,-0.50334793,0.25317305,0.4503238,-0.41775197,0.029523535,-0.4888608,-0.19619678,0.0073732287,0.37129375,0.13404298,-0.16413823,0.060296293,0.21999055,0.38898516,-0.10473878,0.14400618,0.2809887,0.33369058,-0.11100796,0.3868317,0.1582912,0.34179497,-0.23592286,-0.32202616,0.54077494,-0.2519459,0.2949703,0.19860874,0.1211554,0.37917534,-0.5439407,-0.79315454,-0.737481,-0.35997263,1.1702014,-0.2850946,-0.46680102,0.21888217,-0.029728157,-0.29223326,0.02995737,0.3063044,-0.09453591,0.023647865,-0.9284942,-0.060099375,-0.17211995,0.44564793,0.093358494,-0.11204632,-0.46024925,0.7847068,-0.12437517,0.47234187,0.4324613,0.23332907,-0.033796422,-0.39775386,0.044910487,0.96281177,0.5770891,0.1400313,-0.2518295,-0.096978165,-0.07331805,0.110622235,0.13852948,0.35453606,0.70594394,-0.16596557,0.102970004,0.24225296,-0.035085298,-0.09736948,-0.19213514,-0.39301142,0.08441803,0.20234753,0.53615874,0.7675634,0.029678106,0.2286095,-0.2696523,0.37306085,-0.029251782,-0.623351,0.28493086,0.9170113,-0.055987738,-0.20826659,0.7596409,0.50500786,-0.26195818,0.61774695,-0.7710296,-0.46322414,0.19412568,-0.122854635,-0.3593216,0.21283212,-0.3277235,0.14469312,-0.8800701,0.53350157,-0.30298325,-0.31358275,-0.5522832,-0.23395291,-1.8796829,0.17704575,-0.11987273,-0.0677527,-0.029084992,-0.12483342,0.4866915,-0.57386947,-0.6216012,-0.0323112,0.09512458,0.39281404,0.05829878,0.08030366,-0.09790948,-0.4290307,-0.15952845,0.3500837,0.20765132,0.21872291,-0.07937377,-0.43850031,-0.19537713,-0.13298532,-0.13824868,-0.0683533,-0.6770202,-0.5499952,-0.23690867,-0.31046903,-0.0100399135,0.5311629,-0.24881154,-0.08659135,-0.23577046,-0.13497172,-0.07129042,0.20666978,0.1849278,0.1899952,-0.018025469,-0.093825705,-0.30469158,-0.41783687,0.16549852,0.26387534,0.13862447,0.45078027,-0.36844304,0.03013765,0.5987881,0.5184024,-0.29242194,0.7362215,0.52875763,-0.35797495,0.25623938,-0.15059671,-0.31486833,-0.68310285,-0.37752718,-0.22793409,-0.37842697,-0.3133547,0.10307108,-0.3458637,-0.6884594,0.66102093,-0.13408206,0.10289162,0.13340326,0.168682,0.35281327,-0.15884785,-0.22952054,-0.24280144,-0.20211914,-0.49586505,-0.50712794,-0.65601027,-0.42160282,0.11649551,1.3881528,-0.1690165,0.18084703,0.3340175,-0.07726245,0.09312126,-0.017264394,-0.032554496,0.031126218,0.49702698,0.15308465,-0.65677124,0.38936803,0.129575,-0.038907092,-0.5166342,0.19638488,0.5405532,-0.6785067,0.2964768,0.2018465,0.22468756,0.14611222,-0.7170103,-0.096593544,0.053780403,-0.28980047,0.41931456,0.23185153,-0.7313459,0.40672508,0.43171388,-0.43356067,-0.6581811,0.37251434,-0.02002013,-0.16617484,-0.027449373,0.21010621,-0.014426947,0.05704047,-0.0072805206,0.41271183,-0.47231016,0.42869598,0.24423742,-0.1156242,-0.040903017,-0.3076309,-0.29654709,-0.70748174,0.36886698,-0.29912513,-0.48016423,0.19464898,-0.08021784,-0.2787995,0.3237933,0.4034167,0.4939747,-0.27493572,0.115865715,-0.13952175,-0.31556764,0.5655081,0.44909233,0.5591492,-0.27620333,0.4580372,0.024953267,-0.08913699,-0.3752623,-0.02731278,0.4998174,-0.07216326,0.0812559,-0.11203248,-0.027317159,0.34991413,0.9319933,0.09029231,0.13072957,-0.15387456,-0.1922863,0.19686618,0.16350287,0.07394292,-0.22364657,-0.530015,0.21183547,0.08574549,0.13051568,0.5042151,0.14588708,0.19177668,-0.21060398,-0.23619793,0.12795761,0.25025237,0.08393821,-1.3529953,0.13368313,0.034732666,0.56229395,0.68082964,-0.016545385,0.11261659,0.59341234,-0.2353305,-0.013777216,0.31166044,-0.17365967,-0.38673264,0.36402422,-0.65976244,0.14337324,-0.025627578,0.14426604,0.10485992,0.06753692,0.342666,0.8199456,-0.11816623,0.1418181,-0.096274935,-0.2783249,-0.094200835,-0.16422853,0.10007751,-0.2982351,-0.51580733,0.6639974,0.40695208,0.4469203,-0.31240806,0.058405634,0.07022057,-0.33212775,0.42303428,0.050320227,-0.030622933,-0.10667532,-0.28490517,-0.057650175,0.56845206,-0.077550456,-0.14609824,-0.026858052,-0.2660289,0.24286526,-0.05833737,-0.06654722,0.03550096,-0.67379695,-0.04067099,-0.58953726,-0.003925604,0.24586357,0.031031083,-0.066557534,0.109595194,-0.015204533,-0.17385677,0.29635122,0.06001755,0.7393478,0.1420234,-0.24519081,-0.13214894,0.30146477,0.06002393,-0.1776201,0.07237884,-0.084357776,0.15316424,-0.92026335,0.34943777,-0.09581215,-0.33128828,0.33000755,-0.14757603,0.051127788,0.275981,-0.072168924,-0.3280524,-0.022642668,0.07917192,-0.2642864,-0.27997574,-0.27211106,0.15060812,-0.015975079,-0.063390575,-0.111697085,-0.15849486,-0.08700765,0.37120253,0.09472397,0.3415217,0.3042606,0.036311913,-0.6340377,0.28228986,0.2188111,0.32604036,-0.09110559,0.19017534,-0.1546093,-0.49229005,-0.34183377,0.18349305,-0.3416972,0.3299128,0.0032244197,-0.33079422,1.0069797,0.18384887,1.0956672,-0.08214942,-0.17609318,-0.012480755,0.48837966,-0.16872144,-0.07479371,-0.3850858,0.90811324,0.85499996,0.02529356,-0.12604076,-0.20907094,-0.32429692,0.06879817,-0.23982498,0.017627554,-0.008147617,-0.91810477,-0.31326997,0.065455906,0.3796955,-0.027176203,-0.09944666,0.12123701,0.16264275,0.0573586,0.19867441,-0.4768886,-0.22714853,0.15229374,0.26705283,-0.092168175,0.029357016,-0.52218366,0.34497464,-0.6975244,0.12902507,-0.327445,-0.0054258504,-0.04311331,-0.2639261,0.003195871,-0.09260075,0.20798354,-0.36354002,-0.3767878,-0.005093187,0.59701216,-0.045297764,0.23239236,0.7351988,-0.31549045,0.29343128,-0.07832333,0.27332714,1.0831767,-0.27504748,-0.12362609,0.26639682,-0.3743571,-0.50583655,0.25766888,-0.18415897,-0.007139985,-0.12311951,-0.49167413,-0.33445802,0.28832075,0.07479049,-0.08989021,-0.07303046,-0.5526548,0.09875013,0.30114526,-0.2869778,-0.3146407,-0.20907858,0.23975655,0.6097273,-0.24423131,-0.5189925,0.3130263,0.28595543,-0.4384913,-0.57511765,-0.1130795,-0.4443508,0.19825183,0.15077731,-0.47004816,0.141745,0.17552185,-0.44596064,-0.10659612,0.4011687,-0.26053426,-0.064927794,-0.33602434,0.1826023,0.88452977,-0.12070358,-0.16523646,-0.6165832,-0.58025753,-0.9736678,-0.385236,0.4584602,0.3954583,0.06721805,-0.56485844,-0.056945514,-0.22518247,-0.0076714554,0.13217247,-0.28734502,0.41159683,0.23764655,0.45983836,-0.30521202,-0.7752045,0.15322612,0.10268914,0.021486538,-0.46812385,0.408604,-0.016251108,0.7913013,0.07356674,-0.16585997,0.12542258,-0.78055024,0.16129698,-0.15401635,-0.13322026,-0.7239151,0.13517125,872 +307,0.5057654,-0.3038157,-0.27332747,-0.09040812,-0.09202275,-0.04808254,-0.040411897,0.5698465,0.22431406,-0.41248834,-0.05611364,-0.17852037,-0.017323613,0.1489906,-0.1923771,-0.45462126,-0.094193906,0.08949855,-0.20010056,0.571689,-0.30026707,0.33174106,-0.061953723,0.324421,0.1473205,0.30810434,0.112970464,0.0034713666,-0.2559662,-0.12779325,-0.075393334,0.31466103,-0.38243192,0.18828283,-0.22187051,-0.34789288,0.08809838,-0.42855608,-0.35918573,-0.7075765,0.24779662,-0.7343878,0.41064036,0.091651164,-0.2936135,0.432126,-0.047632296,0.16011347,-0.22804521,-0.06894554,0.12305413,-0.12035029,0.056847285,-0.3163869,-0.04528815,-0.17946434,-0.41236734,-0.024175556,-0.24181433,-0.20150666,-0.27171147,0.07616757,-0.278004,-0.1781982,-0.04958178,0.51402485,-0.47063726,-0.059992496,0.12814869,-0.11425828,0.3651578,-0.60790664,-0.25321096,-0.12564152,0.113118865,-0.23731026,-0.1026757,0.43573084,0.15157671,0.4742223,-0.13586667,-0.15247406,-0.4488674,0.024365246,0.010575998,0.39888513,-0.2165796,-0.3798209,-0.0083494885,-0.06942605,0.012989683,0.12511857,0.23284216,-0.093274,-0.1430033,-0.0843937,-0.07228195,0.09259401,0.46723735,-0.2807863,-0.2685326,0.2863491,0.51149726,0.03838666,-0.094820775,-0.18618196,0.0029854467,-0.32450053,-0.2668077,-0.02275596,-0.26383877,0.5797681,-0.013043621,0.21381591,0.6118256,-0.09675423,0.084577575,-0.07457033,0.13884555,-0.069303595,-0.36589357,-0.25621027,0.3729077,-0.38366044,0.08992834,-0.11604377,0.62396467,0.073731415,-0.69005257,0.28428176,-0.3873143,0.080566175,-0.06669508,0.4109268,0.581718,0.44217154,0.33889467,0.5613009,-0.5670554,0.02069544,0.029546378,-0.28580576,0.058746424,-0.22220829,0.0008482615,-0.5033857,-0.04370873,0.12765485,-0.09168613,0.18572263,0.25255638,-0.41041374,-0.0033650121,0.33509833,0.7368434,-0.21022496,0.0017513196,0.58181113,1.0456487,0.95209086,0.011054758,0.958844,0.1476299,-0.24612331,0.38165146,-0.2550666,-0.6038867,0.16418651,0.4280357,0.00045019787,0.21691899,0.13248596,-0.024633206,0.46045983,-0.32928675,0.036574602,-0.1255553,0.11983571,0.05174936,-0.045867383,-0.5990145,-0.31461135,-0.19644454,0.117843,-0.12428498,0.26410112,-0.077965096,0.3177955,-0.0025933743,1.5547388,0.008703819,0.08448691,0.14206983,0.5014868,0.13004535,-0.08472336,-0.059677385,0.26253366,0.07138697,0.14877822,-0.45238906,0.089571044,-0.13858394,-0.5562297,-0.05930036,-0.3063065,-0.013190311,0.06524301,-0.514656,-0.23083314,-0.16425568,-0.19793501,0.35558942,-2.7979085,-0.033845283,-0.053829256,0.23985483,-0.2704565,-0.37315553,0.012427783,-0.40238392,0.39967576,0.4538647,0.48297614,-0.6288707,0.051571485,0.46789116,-0.43077672,-0.045540713,-0.48307458,-0.14408621,-0.080524065,0.39253324,0.09897906,-0.090846494,0.11465263,0.10519159,0.47084206,0.05278855,0.12962581,0.10193911,0.24203883,-0.14744285,0.32553452,-0.035605453,0.36210716,-0.2851427,-0.19330594,0.35449687,-0.32163355,0.16819698,-0.1818209,0.1777378,0.4381893,-0.3508288,-0.8429958,-0.52938104,-0.2361443,1.2096614,-0.063488565,-0.39096564,0.33710277,-0.23968147,-0.17998074,-0.1547919,0.40402266,-0.042408314,0.027729634,-0.73231214,0.057573866,-0.15304986,0.08249684,0.025679478,-0.093803026,-0.54319596,0.69796443,0.054850195,0.49943474,0.45596403,0.11764345,-0.2437714,-0.44011393,-0.031579774,0.73612744,0.46621454,0.23111637,-0.20781142,-0.10574827,-0.19608463,-0.058975816,0.13703528,0.38840705,0.65359306,-0.06848069,0.16116728,0.2263965,-0.003995295,0.008481589,-0.052445617,-0.2500406,-0.030549072,0.20478335,0.53539544,0.66542643,-0.17238021,0.28458756,-0.072839566,0.2854791,-0.2329662,-0.3793005,0.38709736,0.8750947,-0.09491159,-0.16913038,0.6546484,0.6054478,-0.21904305,0.5064773,-0.62882733,-0.38177413,0.38272712,-0.29851672,-0.42324173,0.13529132,-0.30358344,0.09235556,-0.9331811,0.21291906,-0.2355162,-0.34895363,-0.7664631,-0.10326044,-3.3603005,0.2528596,-0.28448874,-0.2288943,0.10669913,-0.04571619,0.15331322,-0.7781529,-0.38167733,0.20166369,0.061816026,0.5274164,0.038729955,0.033157777,-0.23345593,-0.36337286,-0.10953555,0.09905606,-0.00058907666,0.2964861,0.0069265882,-0.5813342,-0.029981613,-0.2012857,-0.43485656,-0.06583522,-0.45512435,-0.44303587,-0.19750914,-0.5979946,-0.3399671,0.5611474,-0.17599243,0.08572211,-0.16390464,-0.09392168,-0.17179285,0.30945206,0.14044362,0.28410295,-0.035490878,-0.054344997,0.062280156,-0.3593887,0.2008793,0.12165357,0.18446651,0.46738335,-0.28456995,0.10980951,0.5011756,0.5458237,-0.26305592,0.80259573,0.5379999,-0.13504806,0.29787332,-0.23945752,-0.19526939,-0.597277,-0.4663285,-0.027861131,-0.27015778,-0.48221725,-0.019872237,-0.47179964,-0.7845583,0.60460293,-0.12455965,0.27795142,0.07712283,0.044534422,0.435572,-0.3581743,-0.13696764,-0.16509032,-0.01964375,-0.42440593,-0.38098326,-0.6837891,-0.5222782,0.10174273,0.94836634,-0.0735697,0.045244697,0.17261118,-0.02649991,-0.05940281,0.06986799,-0.022813955,0.03505489,0.3273409,0.073816665,-0.5915638,0.5747809,0.14124323,-0.09608718,-0.36573508,0.13902976,0.43202418,-0.5385065,0.5067489,0.33602324,-0.023001682,-0.121815905,-0.62375295,-0.19152887,-0.15979896,-0.21826427,0.4897534,0.2612097,-0.6961155,0.39574495,0.40603238,-0.32604995,-0.68188494,0.46103013,-0.1106332,-0.40861186,-0.077169426,0.28492022,0.027394764,0.079403974,-0.038973983,0.25332218,-0.37987363,0.255329,0.29217115,-0.0115648,0.23124808,-0.11800638,0.11686855,-0.77536166,0.14856276,-0.3607457,-0.25165623,0.2230094,0.024601463,-0.012569949,0.27199915,0.086000904,0.43918782,-0.1633372,0.078780174,-0.045590267,-0.23510893,0.34724802,0.3286419,0.47375125,-0.36987135,0.49977887,-0.004132966,-0.13282199,-0.2839972,-0.021575456,0.45408365,0.17819424,0.21478367,-0.15849856,-0.278499,0.1606012,0.71095186,0.18883643,0.4198931,-0.029935332,-0.11385676,0.27956593,0.18442564,0.21494861,0.036128085,-0.4036016,0.113103025,-0.2155982,0.080177315,0.37575468,0.09661339,0.29855072,-0.17758451,-0.15408143,0.15404418,0.250029,0.1021132,-0.9468092,0.175822,0.10407445,0.8194772,0.57417005,0.17730041,-0.09695102,0.7162348,-0.17811607,0.075179696,0.4042513,-0.0974401,-0.6250392,0.6070283,-0.5999788,0.3958811,-0.029609716,-0.083813,-0.10527388,-0.13448715,0.40392467,0.5654198,-0.11002719,0.051476184,0.029527454,-0.3450939,0.047808178,-0.3247519,0.18511118,-0.4666006,-0.17957065,0.5603283,0.5474573,0.28920242,-0.13961239,0.020871429,0.11567863,-0.088842295,0.18139571,0.094178386,0.1314995,0.01760232,-0.60087395,-0.08959249,0.4590977,-0.004708918,0.09907386,-0.17400599,-0.25236097,0.10864403,-0.14396405,-0.22526485,0.08918246,-0.5932593,0.061834164,-0.33596885,-0.3501976,0.5294831,-0.04033872,0.30319235,0.054330714,0.20528159,-0.30499873,0.25887343,0.15453042,0.7256073,-0.03622191,-0.10032733,-0.2887026,0.18718325,0.1572745,-0.11701386,-0.15342909,-0.14863601,-0.014014379,-0.516898,0.40632036,0.05175327,-0.12964235,0.09264056,-0.2132861,0.06520204,0.48589644,-0.05084084,-0.27745205,-0.13601342,-0.091534585,-0.34812444,-0.25213906,-0.06707653,0.3930683,0.03600224,0.043291457,-0.12644884,-0.06344538,0.066613145,0.4931065,0.054979857,0.25333744,0.22376558,-0.10902412,-0.3820595,0.048911702,0.025376145,0.3400089,-0.09637952,0.066501126,-0.3139777,-0.40684927,-0.36781532,-0.08711567,-0.09385112,0.33414263,0.11113548,-0.17222244,0.7570363,-0.057997484,1.0466605,0.030326229,-0.4116738,0.0136237545,0.38751385,-0.17879263,-0.039278213,-0.33938658,0.97585493,0.5680923,-0.05157918,-0.11057455,-0.2441747,0.032852016,0.22742733,-0.14241362,-0.08461639,-0.053130787,-0.682544,-0.24241824,0.29826936,0.37980407,0.13390215,-0.05996644,0.10203626,0.24798249,0.14065424,0.33364442,-0.3882299,-0.17490754,0.40310812,0.23298746,0.09286005,0.15035671,-0.3869322,0.36305434,-0.55347353,0.07792829,-0.31325808,0.04389535,-0.37465802,-0.28466195,0.17176743,-0.0846323,0.3257355,-0.29906318,-0.35172728,-0.24000041,0.4982597,-0.08006497,0.10842634,0.4822779,-0.20806056,0.11758087,0.015876558,0.3973922,0.9509267,-0.31038803,-0.080339685,0.3566993,-0.26873606,-0.6438258,0.33487853,-0.092308216,0.085450396,-0.2197581,-0.2063126,-0.52403754,0.20269182,0.25030667,0.05643065,0.0038997093,-0.48779732,-0.046713956,0.21279217,-0.3456175,-0.2234588,-0.24761301,0.064407855,0.5321877,-0.21811499,-0.3297127,0.110611014,0.27179235,-0.24709328,-0.46387526,-0.024590492,-0.32397875,0.28251678,0.14856115,-0.41199917,-0.08232947,0.06661664,-0.3051468,0.05356912,0.2192578,-0.3038913,-0.014228014,-0.47806397,0.08772079,0.9162663,-0.050561003,0.19206749,-0.46526897,-0.51843613,-0.937617,-0.40680638,0.59924495,0.11059824,0.040317945,-0.5469716,0.19110054,-0.23390834,-0.0066408715,-0.1259518,-0.22192436,0.38395292,0.1861046,0.31167927,-0.16100611,-0.45259243,0.07152782,0.19467758,0.0012652775,-0.39342734,0.40209255,-0.043887593,0.8411717,-0.017259778,0.10885319,0.2949908,-0.4746605,-0.07450464,-0.1816758,-0.33685666,-0.44551653,-0.066282235,879 +308,0.2923384,-0.11301792,-0.49708357,-0.111555584,-0.21593182,0.11484976,-0.2605073,0.5026204,0.26645947,-0.36109835,-0.23131858,-0.23067532,0.25409544,0.33358055,-0.25236467,-0.8645584,0.12600984,0.2629562,-0.568722,0.6902016,-0.4496588,0.30026838,0.10021825,0.35896412,0.009058193,0.17506908,0.29683307,-0.057259664,0.03896667,-0.12309063,-0.1945689,0.46123543,-0.51391166,0.09826026,-0.32670546,-0.36553708,0.19246987,-0.5192653,-0.25383168,-0.8759127,0.25251144,-0.7300452,0.584236,0.24198528,-0.31146267,0.10573179,0.18182203,0.33459428,-0.1583299,0.0025852919,0.10035506,-0.21954934,-0.2414825,-0.1686509,-0.33020213,-0.4496962,-0.637809,0.08855634,-0.49987376,-0.27595934,-0.09809788,0.1533834,-0.25226218,0.09787674,-0.15025857,0.5013646,-0.3520744,0.009450054,0.36657265,-0.28585884,-0.0040866635,-0.54984784,-0.06933065,-0.05519541,0.36248758,-0.29308027,-0.24460696,0.14403114,0.33941975,0.66236854,0.019579776,-0.35179117,-0.08282008,-0.17249231,0.041270185,0.5671949,-0.09567412,-0.65670574,-0.20341277,-0.038161375,0.1599488,0.23250872,0.08653025,-0.39553443,-0.11720113,-0.19097929,-0.12791143,0.34944457,0.574323,-0.5058825,-0.19195332,0.16783875,0.5366385,0.13421527,-0.027689664,0.21443692,-0.013110464,-0.66636753,-0.14160372,-0.030688198,-0.18197322,0.6979614,-0.0887115,0.1494287,0.5197212,0.021023529,-0.050187778,-0.018349953,-0.01168586,0.020568753,-0.40726897,-0.3238137,0.35591614,-0.37923667,0.046111904,-0.40008172,0.7268762,0.31302077,-0.68707395,0.36900347,-0.5371896,0.20483539,0.05174261,0.62117463,0.62195325,0.16513464,0.23922561,0.5110237,-0.45910767,0.17679971,-0.099321805,-0.26766062,-0.116395496,-0.027115524,0.1785052,-0.46590754,0.17550255,-0.11126713,-0.108404875,0.21916993,0.4273416,-0.596648,-0.19958267,0.011780123,0.7751077,-0.27195075,-0.060455646,0.8581284,1.0439551,0.76870006,0.019660855,1.3551742,0.3107047,-0.1086053,-0.12715761,-0.06883349,-0.60231787,0.17894514,0.33813682,0.034088697,0.22904018,0.027498087,-0.10055837,0.4152184,-0.47300574,0.010254946,-0.119437546,0.045703888,-0.13421996,-0.06287113,-0.4916729,-0.21339503,0.05829538,0.099490404,0.2791507,0.29455438,-0.086636096,0.47657776,0.06692168,1.232953,-0.06417396,-0.018386213,0.1654609,0.15786281,0.35208175,0.039310392,-0.086913235,0.25089204,0.322014,-0.090178296,-0.54333806,0.026558459,-0.25256914,-0.30075693,-0.23054789,-0.24367593,-0.12715146,-0.049097486,-0.45848504,-0.018793143,-0.10085633,-0.25833246,0.3800889,-2.5769105,-0.15713316,-0.21608743,0.41538522,-0.021582939,-0.344946,-0.12976888,-0.5134672,0.44421288,0.28078917,0.38738194,-0.6224168,0.38540363,0.5171384,-0.5117256,-0.1907716,-0.74671495,-0.076882556,-0.04288521,0.38916484,0.05408722,-0.045228533,-0.026529752,0.2421748,0.53723675,0.117182106,0.08331548,0.12212377,0.43568262,0.04649352,0.2950283,0.14913139,0.5992065,-0.18899703,-0.18609837,0.36663297,-0.35419273,0.3232109,-0.13767897,0.09650158,0.32562292,-0.37945935,-0.5846975,-0.6190031,-0.33432662,0.8941136,-0.04638288,-0.49861392,0.21996339,-0.23072007,-0.28097692,-0.022937234,0.6301452,-0.15654565,-0.010274136,-0.70562965,-0.033564948,-0.045035712,0.16828986,-0.019154586,-0.041617975,-0.5753502,0.639889,-0.1644322,0.3194558,0.4397624,0.29009402,-0.08674895,-0.49828818,0.09264679,0.9159906,0.33061838,0.061572675,-0.21014255,-0.17766477,-0.31469855,-0.10716538,-0.10344132,0.7727676,0.6987831,-0.14932217,-0.029751837,0.2648365,0.20480813,0.19581455,-0.26243037,-0.32984537,-0.05213367,0.026327515,0.65189177,0.6789958,-0.347836,0.25358215,0.005031247,0.47284,-0.1970777,-0.3925036,0.432303,0.8877891,-0.12817009,-0.22522703,0.712382,0.41881225,-0.3084207,0.44408455,-0.6647174,-0.3116105,0.45513883,-0.1541109,-0.47428513,0.30315652,-0.25635812,0.17533779,-0.8749019,0.32808846,-0.21777773,-0.30843338,-0.58269554,-0.11259169,-3.1565118,0.19663455,-0.2641452,0.010112105,-0.22795358,-0.15713467,0.043127354,-0.48207322,-0.5798303,0.29628676,0.056753684,0.43992805,-0.1859445,0.13454607,-0.31018317,-0.29420382,-0.055480354,0.21699378,0.14169882,0.31375918,-0.18922012,-0.25474304,0.09755937,-0.21651922,-0.38741615,0.09285491,-0.7824835,-0.36670426,-0.076248236,-0.6583815,-0.2151599,0.6566154,-0.4545862,0.05460159,-0.27671164,0.09917007,-0.20820884,0.21524051,0.21676469,0.2500182,0.115619466,0.07113611,-0.0105191935,-0.34150383,0.10111448,0.028675178,0.21380393,0.2755013,0.0077302675,0.12950605,0.1904702,0.6439442,-0.004687828,0.7665415,0.34426668,0.037733767,0.2057728,-0.1829259,-0.43027624,-0.42228037,-0.2450656,-0.1160304,-0.40884224,-0.4482617,-0.16833092,-0.36305946,-0.7250993,0.5137355,0.077418834,-0.12438986,-0.01955506,0.3141152,0.47891173,-0.21571493,0.04051238,0.030692337,-0.03194441,-0.44683567,-0.28739932,-0.60425955,-0.4898936,0.10378386,0.7524651,-0.15262823,0.11361076,-0.03336418,-0.08153724,-0.08167512,0.38519993,0.19520721,0.13029875,0.6586305,-0.10760568,-0.6762698,0.49262798,-0.1004175,-0.51586145,-0.6547021,0.16290052,0.42764983,-0.7485876,0.6896999,0.45085213,0.09846275,-0.030356407,-0.5065178,-0.14798893,0.16241245,-0.23194847,0.46639988,0.18857667,-0.60119474,0.43398973,0.15288241,-0.09247183,-0.80811924,0.6313803,0.005775717,-0.4975406,0.12978873,0.4935107,-0.035417754,0.032042682,-0.203039,0.07793459,-0.341345,0.15899521,0.29351628,-0.1526558,0.36428306,-0.3431782,-0.12871735,-0.8131805,-0.065714575,-0.6290601,-0.10250134,0.10057592,-0.0136183975,0.038333558,0.063334376,-0.08513538,0.3638095,-0.504342,0.18767732,-0.1370552,-0.38651243,0.34662881,0.4342124,0.29146296,-0.2586932,0.6758363,-0.021331983,-0.09164902,-0.1938847,0.10480079,0.517874,-0.02519737,0.46116862,-0.17920011,-0.034629773,0.3147302,0.74881554,0.15023175,0.32549557,0.28338525,-0.00054153,0.34098542,0.05897916,0.08835128,-0.0898685,-0.40539196,-0.010130993,-0.21660581,0.043706916,0.42193168,0.083635755,0.51855004,-0.05091369,-0.45408118,0.10119703,0.14780317,0.17275171,-1.0557331,0.14642797,0.04558382,0.77593744,0.46167526,0.13737066,-0.029490102,0.4102932,-0.15098219,0.06610004,0.22395284,-0.041780163,-0.28576502,0.5569593,-0.4843827,0.44445375,-0.13555534,0.013355406,0.10161494,-0.15665706,0.29695866,0.77471226,-0.22752495,0.026250707,-0.13795604,-0.026489517,0.06277183,-0.38863915,0.099380866,-0.3516657,-0.3771891,0.6507766,0.5594736,0.29739907,-0.41153127,0.021583123,0.3269428,-0.1347566,0.023370566,0.035491552,0.099018894,0.08055758,-0.43919283,-0.1548014,0.5810758,-0.021770652,-0.05632758,0.019134903,-0.3825592,0.20711541,-0.021688279,0.048640687,-0.1843967,-0.73561317,0.111550696,-0.3511201,-0.45473334,0.5297409,-0.23003308,0.14363307,0.23833063,0.116896264,-0.41238025,0.40741378,0.00019777616,0.81761914,0.121842824,-0.058021978,-0.297834,0.13688318,0.2691557,-0.25289413,-0.089065835,-0.41910717,0.2581628,-0.59088016,0.32655352,-0.019793903,-0.2413173,0.0006680012,-0.061016615,-0.0036659082,0.42795867,-0.020733245,-0.17039837,0.22416793,-0.03478628,-0.1894411,-0.16229934,-0.12504223,0.3146209,0.18693566,-0.046548475,-0.11445756,-0.06562253,-0.28838742,0.37311095,0.090949945,0.30886352,0.38746324,0.08336905,-0.23440309,0.12485723,0.10065891,0.47064018,-0.13010393,-0.23185202,-0.12766744,-0.53482527,-0.36745414,0.1275555,-0.14793777,0.30612087,0.08364369,-0.09683082,0.72936696,0.18132421,1.1375222,0.01406045,-0.42542973,0.13582514,0.5474586,-0.016440192,-0.068022266,-0.28489387,1.1318582,0.5115249,0.04373208,-0.06663999,-0.30025962,0.12334199,0.10442993,-0.09760318,-0.07156099,0.0027228743,-0.5950801,-0.17390993,0.18554208,0.24644928,0.21055399,-0.11944902,0.21444543,0.1404533,-0.04338282,0.31667346,-0.6486177,-0.13336603,0.23573135,0.10175896,-0.020710047,0.10396166,-0.38847283,0.47182962,-0.43350145,0.0719119,-0.5592727,-0.0019601742,-0.2552363,-0.1663435,0.18064903,-0.17199683,0.3184058,-0.47553375,-0.27171603,-0.36705488,0.35055372,0.32920587,0.09365876,0.59773487,-0.14389415,-0.10084961,0.13538428,0.7550234,1.1417961,-0.27417532,0.062192682,0.3964689,-0.314805,-0.5099682,0.13758487,-0.40298575,0.038385555,0.021797316,-0.14078316,-0.52517307,0.120396785,0.09120711,0.009555042,0.095794536,-0.6235412,-0.21524054,0.35160968,-0.23437214,-0.27718323,-0.36006394,0.25013202,0.8326332,-0.10937481,-0.38650444,0.040924683,0.09425284,-0.2257963,-0.9155411,0.060519684,-0.3224922,0.2947201,0.1806369,-0.2894997,-0.17798987,0.1471425,-0.4086284,0.15410501,0.34804145,-0.31842643,0.09556586,-0.24117932,-0.11155169,1.0192429,-0.19989444,0.20249636,-0.5659936,-0.5461355,-0.8463057,-0.4004469,0.5272225,0.16198722,0.042741936,-0.544961,-0.12133904,-0.23945396,-0.031314038,0.11505556,-0.19657764,0.40951115,0.17424823,0.55824214,-0.15758051,-0.91329485,0.043949984,0.08377288,-0.4511124,-0.46124583,0.3505911,0.21819133,0.75618136,0.037886772,0.02631849,0.3325408,-0.44727203,0.05422617,-0.3284434,-0.02016342,-0.6943435,0.07316233,880 +309,0.48121977,-0.11508049,-0.42146847,-0.103425376,-0.4943889,0.23144172,-0.24792029,0.1681826,0.2737748,-0.3599821,0.13266174,-0.10281504,-0.11610104,0.3243913,-0.24425754,-0.80046815,0.07177873,0.019855082,-0.5324984,0.28519243,-0.5621892,0.47651097,-0.029537043,0.4142095,-0.029915733,0.24070354,0.25992742,0.11567319,-0.06992249,-0.19188207,-0.13530105,0.025955152,-0.6006712,0.14667135,-0.06715553,-0.36712578,-0.054841485,-0.36751637,-0.30351964,-0.7044461,0.40367746,-0.940135,0.57692266,-0.096731946,-0.41491273,-0.04992493,0.0957388,0.23614031,-0.19274357,0.15870538,0.22427347,-0.40989923,0.16910067,-0.15310988,-0.5090777,-0.6996142,-0.574763,-0.032313026,-0.66676813,-0.22425547,-0.3624607,0.2717339,-0.37726027,-0.066412136,-0.28033578,0.47527474,-0.39359862,-0.008569344,0.1669715,-0.23470823,0.18194199,-0.5711727,-0.11079832,-0.1126352,-0.0029996932,0.14010294,-0.1236534,0.29875213,0.37502548,0.42373943,0.14758778,-0.3028473,-0.30012003,-0.07495246,-0.010398475,0.5874294,-0.06251868,-0.23702659,-0.40223625,-0.1562406,0.3820008,0.2597822,0.11237492,-0.4321364,0.11101257,0.103561334,-0.16322559,0.54004645,0.47919428,-0.35394132,0.011207272,0.36897156,0.25944793,-0.10930265,-0.3538981,0.2058831,0.002478508,-0.4356208,-0.14302363,0.2252991,-0.004859956,0.6423425,-0.11295045,0.1845801,0.71480304,-0.2703906,0.014908884,-0.088560246,-0.082932755,0.017624822,-0.27232292,-0.18576808,0.15180779,-0.4123906,0.08968518,-0.32515943,0.82807356,0.096334,-0.7973579,0.42982262,-0.39165443,0.027251076,-0.11842755,0.57539344,0.5735802,0.5356728,0.039352212,0.99146754,-0.5275178,0.07185147,-0.02190977,-0.30746958,-0.011866986,-0.06483842,0.0917833,-0.4238564,0.21768942,0.039170988,-0.083368786,-0.089603744,0.48091713,-0.32961968,-0.06470237,-0.12661846,0.8008235,-0.35863858,-0.046871733,0.83504385,1.1865833,1.0127517,0.068530075,1.2036074,0.38567713,-0.011293888,-0.1266085,-0.17346048,-0.3397527,0.16584603,0.33959386,0.36328205,0.23815322,0.015310908,-0.17841785,0.38345394,-0.27297685,-0.15765862,0.04592947,0.25505146,0.10856644,-0.09725811,-0.41433045,-0.12871295,0.2365536,0.17535795,-0.037279837,0.2126253,-0.3380419,0.44591275,-0.007658739,1.1239927,0.028950674,0.10776677,0.02012817,0.59589595,0.23553285,-0.15201446,0.15863937,0.17957227,0.2645361,-0.068795465,-0.5515538,0.06492121,-0.41621742,-0.47538865,-0.1999584,-0.2984052,-0.07052694,-0.1015131,-0.49220237,-0.19079074,0.08654149,-0.3186194,0.39546907,-2.4226053,-0.08728354,-0.2723908,0.40054676,-0.14442901,-0.34999937,-0.080035694,-0.5059008,0.39495334,0.37703496,0.30008525,-0.52153957,0.49550763,0.3933616,-0.17657022,-0.12678835,-0.7803792,0.13137835,-0.16205102,0.44229972,-0.04392337,-0.045015845,-0.18174252,0.25439805,0.8767712,0.14748304,0.043867633,-0.000980091,0.34355316,-0.058554288,0.46603107,0.036905702,0.604427,-0.20123383,-0.106011204,0.37741014,-0.49927014,0.11918948,0.05485781,0.14673895,0.41219488,-0.50136876,-0.74850553,-0.71037036,-0.44835818,1.1762011,-0.28226516,-0.6796532,0.34502488,0.08969545,-0.28038022,0.112980984,0.54209954,-0.031131828,0.044618748,-0.5524233,0.0269847,-0.12816483,0.13943094,-0.12516023,0.11537569,-0.32054678,0.610377,-0.2671413,0.54179174,0.31332567,0.3700972,-0.07795703,-0.44913763,-0.041630115,0.7777967,0.45599794,0.06932425,-0.061176784,-0.18693008,-0.18865229,-0.35865778,0.13808052,0.606045,0.75489354,-0.09074764,0.07411003,0.28073025,-0.3211773,0.08855322,-0.09388146,-0.30280045,-0.034193587,0.11239186,0.47579974,0.5082037,-0.05288623,0.35147968,-0.13162552,0.32206523,-0.3011376,-0.47216472,0.35215673,0.81592155,-0.21283413,-0.25874218,0.5429339,0.42130682,-0.36172745,0.35665885,-0.6337516,-0.24378143,0.6956398,-0.03419874,-0.5538854,0.024886219,-0.3363062,0.0058642407,-0.8357342,0.49184448,-0.19238065,-0.8907705,-0.31445286,-0.36947525,-3.944397,0.14269431,-0.16875495,-0.11686203,-0.13322796,-0.22788659,0.37509042,-0.47252065,-0.40663752,-0.028279563,-0.042228572,0.5893208,-0.02503015,0.14516108,-0.35892043,0.0736904,-0.42025727,0.27231064,0.09513649,0.34904996,-0.022225471,-0.3118662,0.21273856,-0.31941244,-0.6664704,0.021514352,-0.5828743,-0.44716942,-0.034967635,-0.41059628,-0.35301098,0.75012225,-0.33722576,0.057310667,-0.3238613,-0.008418918,-0.18040864,0.3620272,0.2568,0.17400007,0.06421211,0.006668721,-0.010101765,-0.419707,0.26290044,0.11057527,0.17317854,0.3943754,-0.20027441,0.10564751,0.52432615,0.59053534,0.02466956,0.8426784,0.070056185,-0.13725875,0.42343426,-0.21610479,-0.36278698,-0.70686305,-0.39634302,-0.08231417,-0.34419802,-0.426705,-0.05409276,-0.3814506,-0.6988983,0.3778072,0.09274556,0.2728645,-0.25048432,0.27971184,0.2536043,-0.070712924,-0.027326887,-0.0453106,-0.18566313,-0.44176844,-0.44998777,-0.6943596,-0.66815025,0.08977448,1.204407,-0.02444277,-0.20683426,0.03369802,-0.23937458,0.03336014,0.08914301,0.18905191,0.081027985,0.15472552,-0.19363254,-0.63943493,0.32291454,-0.28494263,0.02319427,-0.64138705,0.16115545,0.8357372,-0.53125226,0.5064319,0.3116523,0.40313625,-0.123732015,-0.6467584,-0.20803247,0.11270311,-0.20819692,0.6431826,0.11195275,-0.8383981,0.49216643,0.071569435,-0.2369261,-0.47939762,0.50088185,0.040478174,-0.16638453,-0.022488762,0.41229212,0.107391916,-0.13567199,-0.21742694,0.2535265,-0.61857265,0.33578172,0.31227016,0.07577231,0.64902,-0.1559846,-0.25924143,-0.6254145,-0.23852828,-0.50673497,-0.2159235,-0.031366125,-0.050737858,0.032148484,0.25453126,-0.13186227,0.503673,-0.20816647,0.17618027,-0.14147083,-0.30076572,0.499746,0.51972514,0.39670992,-0.417116,0.62546796,0.1877868,0.021561272,-0.042126402,0.04943009,0.56824094,0.23157352,0.42762983,-0.093534395,0.0014007569,0.041181922,0.6197632,0.23375721,0.5233971,0.18912888,-0.3874863,0.40891916,0.19889268,0.18818855,-0.0806571,-0.40127423,-0.05382425,-0.09289937,0.12611136,0.38678408,0.16440298,0.37610167,0.024074525,-0.08977743,0.16310813,-0.11836215,-0.2594367,-1.2049505,0.3065403,0.075424165,0.6977587,0.3138354,0.01801874,-0.14075002,0.6161377,-0.21480182,0.025723653,0.43808368,0.21017425,-0.21987745,0.55708086,-0.55072284,0.41114154,-0.21318194,-0.0014267584,0.3004885,0.27583688,0.534004,0.8888238,-0.06123205,0.06526708,-0.0503801,-0.27107814,0.14888248,-0.26704362,0.1692157,-0.5687035,-0.33313382,0.57274014,0.32793966,0.27334315,-0.3140968,-0.16513415,0.22794005,-0.07612273,0.14060077,-0.108410336,-0.23068355,-0.15468079,-0.5982465,-0.38866603,0.46853366,-0.1298994,-0.031858746,0.033894364,-0.31587118,0.22651638,0.0077221077,-0.17549516,0.19571029,-0.70490354,0.014089218,-0.25465143,-0.48804146,0.25713456,-0.4468289,0.3239299,0.11331404,-0.052665677,-0.31089336,-0.037709173,0.34366998,0.73027617,0.08413971,-0.20895618,-0.36572233,-0.15662776,0.25896823,-0.36591414,0.00025792918,-0.20564528,0.16273932,-0.5973638,0.39380944,-0.3812264,-0.23288694,0.1933159,0.024090698,-0.005400477,0.4298469,-0.15468654,-0.111259274,0.34157822,0.058399566,-0.3817207,-0.08905554,-0.18912227,0.35847715,-0.12385731,-0.15998705,0.13392839,-0.14027892,0.07895445,0.45628846,0.05933067,0.28082338,0.1804839,-0.04923497,-0.43328384,-0.058054145,-0.12434907,0.45403624,0.015699107,0.09662322,-0.13790008,-0.36479136,-0.24107264,0.21374823,-0.16673121,0.15569665,0.09680922,-0.563587,0.7963266,0.0672227,1.2538645,0.05177756,-0.4278901,0.044894416,0.52806103,0.07864303,0.19570342,-0.4304218,1.0969234,0.64099586,-0.21080138,-0.1259624,-0.48153773,-0.19956547,0.17736273,-0.29926005,-0.36149815,-0.17378059,-0.71728694,-0.10144978,0.024579203,0.1800669,0.08582971,0.013067188,0.03546129,0.3328412,0.096130274,0.51403195,-0.5297774,0.0901169,0.39478716,0.3115764,0.040175352,0.2029448,-0.29685658,0.36102527,-0.6969189,0.33698788,-0.31632197,0.10596783,-0.025246393,-0.25170952,0.22926396,0.094972655,0.2742274,-0.1447112,-0.3455982,-0.22458553,0.7174608,0.09250859,0.23937885,0.7349577,-0.30144176,-0.05536653,-0.05297972,0.5773641,1.4427732,-0.03252901,0.19964409,0.3073079,-0.40239665,-0.5969454,0.17023157,-0.33738062,0.052366663,-0.09923526,-0.26350418,-0.36520997,0.30322775,0.06458644,-0.17439607,0.16624708,-0.36153716,-0.24280551,0.34811732,-0.3092292,-0.28751394,-0.32532462,0.39212477,0.6394806,-0.31160024,-0.3900256,-0.13118668,0.41932952,-0.26995933,-0.6703257,0.12964204,-0.08327751,0.3925553,-0.021478152,-0.39904305,0.07987178,0.29995677,-0.47870934,0.022576664,0.2885819,-0.3482996,0.04397663,-0.28861842,-0.0717728,0.9519195,0.13962673,0.100604534,-0.9073789,-0.5529059,-0.8850478,-0.47737873,0.06902874,0.25753254,0.004293116,-0.45650995,-0.28667578,-0.17354201,0.010413806,0.04404258,-0.6495303,0.27907082,0.00458618,0.6011074,-0.082705975,-0.79282963,-0.07105125,0.18188994,-0.267969,-0.53165585,0.6144562,-0.1272859,0.75058675,0.23445949,0.08145467,0.07798492,-0.6110079,0.42513084,-0.22244157,-0.3063611,-0.61401874,0.1512228,882 +310,0.3746295,-0.21929921,-0.38911,-0.11615025,-0.34140953,0.019816482,-0.27775592,0.16225168,0.111195534,-0.3146471,-0.23523998,-0.22413895,0.11071185,0.36736277,-0.15288094,-0.45417926,-0.1713407,0.12303754,-0.7064795,0.5669357,-0.46439523,0.2596282,0.27014425,0.34815156,0.20115662,0.29973373,0.28496125,-0.11962218,-0.06457934,-0.042106006,-0.23725745,0.26843432,-0.47479802,0.008473166,-0.2325844,-0.35789022,-0.0022846023,-0.51581055,-0.21953163,-0.7778922,0.12638964,-1.0365984,0.5225988,-0.18510373,-0.1148418,-0.006918212,0.46489257,0.39710993,-0.32290685,0.050702307,0.25002053,-0.24241194,-0.17808262,-0.14967483,-0.093894765,-0.46116728,-0.54619825,-0.14132604,-0.55343276,-0.22501612,-0.24064597,0.25357136,-0.36695632,0.20542185,-0.17203985,0.27897316,-0.417296,0.005563863,0.23747009,-0.18279251,0.3764178,-0.4110438,-0.09324602,-0.13368362,0.39400595,-0.13126615,-0.14441092,0.39772895,0.4736751,0.32597697,0.22463973,-0.27764598,-0.1905941,-0.08658841,0.020285996,0.45456424,-0.19189784,-0.35495093,-0.2783276,0.11987901,0.4030776,0.5114996,-0.16183211,-0.2767512,-0.01839203,-0.054442894,-0.31337947,0.42794037,0.4617768,-0.2512916,-0.4268403,0.28487322,0.49376792,0.27479705,-0.28967744,0.011499208,0.029087523,-0.53187525,-0.03429906,0.23325114,-0.09203838,0.47113392,-0.08965022,0.2362938,0.85007364,-0.18662685,-0.04632016,-0.14028384,-0.057592113,-0.35304296,-0.13200411,-0.13240921,0.10500419,-0.58452237,0.17322813,-0.21470429,0.8368566,0.06522241,-0.72754586,0.35311046,-0.5771259,0.14039093,-0.11291831,0.57958335,0.67800623,0.40716985,0.47809163,0.74862504,-0.27407694,0.13420828,-0.21779858,-0.5016672,0.056974426,-0.2032372,0.046556495,-0.4916638,0.09376454,-0.102685735,0.061212752,-0.0067098695,0.5283541,-0.5949572,-0.023097014,0.14457512,0.70513713,-0.36214346,-0.14404605,0.620945,0.8991192,0.943465,0.08275631,1.1108052,0.36060652,-0.11381319,0.20054294,-0.2320209,-0.55039495,0.29426584,0.38342467,-0.23219861,0.27681926,0.011134211,-0.08810774,0.24195524,-0.37501258,-0.13830566,-0.1309652,0.19694008,0.19753362,0.06835124,-0.40230128,-0.22615552,-0.0035256227,0.013187417,0.21183817,0.09633315,-0.24355036,0.3915041,0.039232884,1.5847396,-0.094433315,0.027588714,0.080737874,0.56812835,0.21707319,-0.075443864,-0.06628785,0.32861608,0.4239903,0.10992956,-0.61082006,0.23217662,-0.22336563,-0.3956774,-0.06116837,-0.33523542,-0.15159123,0.056301516,-0.447513,-0.08098116,-0.040081654,-0.33771196,0.51423544,-2.7970197,-0.18306813,-0.13830265,0.25375712,-0.32499796,-0.2189786,-0.16472048,-0.5645491,0.28646618,0.26542002,0.45653504,-0.6772099,0.41780555,0.45931107,-0.594403,-0.16638885,-0.7296316,-0.124234505,-0.07031821,0.572056,0.048312187,-0.08564035,-0.07504098,0.17285486,0.775096,-0.04732355,0.15445969,0.4891936,0.43607247,0.26147023,0.68099415,0.009046904,0.56798327,-0.16697177,-0.19239344,0.36335963,-0.1813161,0.20220512,-0.10481403,0.12458265,0.55718005,-0.4294466,-1.029463,-0.62505496,-0.41945547,1.0964977,-0.42387664,-0.42307916,0.15698287,0.05986441,-0.07133008,0.0032446801,0.5135108,-0.14717034,0.15192226,-0.79148126,0.12965769,0.014793268,0.20826861,0.061910223,-0.014658515,-0.20857035,0.5337462,-0.0512109,0.5655158,0.17727576,0.28540096,-0.24625991,-0.5218477,0.15798025,0.99078625,0.2630252,-0.09882782,-0.2030905,-0.35783488,-0.10783771,-0.18431212,0.089211814,0.4208967,0.7198939,-0.0024921,0.27523884,0.31499022,-0.053647574,0.012234942,-0.19468495,-0.1397252,-0.016665148,0.0740087,0.41348654,0.65903765,-0.07920552,0.5690449,-0.25343046,0.32722104,0.04686446,-0.5904463,0.5473663,0.74343,-0.1984549,-0.015199521,0.45825914,0.5467464,-0.30651176,0.40153462,-0.5938881,-0.26891625,0.73814666,-0.22180405,-0.5222572,0.19807047,-0.25134057,0.13939491,-0.681259,0.27720463,-0.18412977,-0.37754056,-0.4150718,-0.07207512,-3.5018952,0.09497962,-0.08637406,-0.3030981,-0.14528018,-0.21499012,0.3136699,-0.6042445,-0.5767974,0.14163874,0.1851066,0.5967444,-0.02937352,0.118865974,-0.3615322,-0.052084222,-0.15580828,0.2040475,0.24995764,0.2955075,-0.19049937,-0.5072521,-0.06653456,-0.088947885,-0.54587185,0.17413191,-0.5913335,-0.5428088,-0.13377602,-0.47647658,-0.3295053,0.6595859,-0.38970488,-0.03521538,-0.20201524,0.08826248,-0.14644758,0.27746737,0.25076446,0.16848032,0.068125516,-0.085244775,0.16123213,-0.325402,0.5563287,-0.0060127634,0.2433626,0.16853577,0.034899067,0.20521055,0.48504636,0.47986308,-0.09378583,1.0332302,0.4198254,-0.1396938,0.13963714,-0.16585748,-0.24097201,-0.7193672,-0.28633782,-0.17190515,-0.4442395,-0.39781716,-0.008551554,-0.10259921,-0.7903814,0.7528919,-0.080170244,0.36841312,-0.2139192,0.23307739,0.49996343,-0.24056247,0.044416595,-0.0983425,-0.15510593,-0.5767949,-0.35384735,-0.65485954,-0.5062534,-0.084437594,0.9505721,-0.20460816,0.048396565,-0.23427247,-0.27751482,-0.005345305,0.055410538,0.11656905,0.45454502,0.48487774,-0.12764834,-0.7470447,0.43365797,-0.06997214,-0.016111247,-0.4532682,0.1390134,0.63658375,-0.6676146,0.41640207,0.35279146,0.046869673,-0.0695345,-0.49814305,-0.22490664,-0.104434915,-0.2673134,0.38592988,0.13029866,-0.77194554,0.6023438,0.30767447,-0.39762852,-0.68023044,0.30945295,-0.086033806,-0.21222325,0.033840816,0.28503484,0.1053953,-0.029303452,-0.28316143,0.16681358,-0.48460928,0.36794314,0.071084835,-0.082446694,0.28770933,-0.0657925,-0.3225851,-0.68054414,-0.0077749095,-0.46279764,-0.30159226,0.3656186,0.007726272,-0.0718205,0.26564452,-0.14255017,0.39956087,-0.29556432,0.03363284,0.071889795,-0.27485308,0.17001489,0.5372136,0.36780244,-0.26595703,0.64354825,0.20533694,-0.2762184,0.12369339,-0.022772022,0.30636072,0.11856018,0.28332138,-0.211935,-0.30808315,0.4509608,0.70259374,0.21816212,0.38525823,-0.03017563,-0.12735607,0.39014068,0.05007743,0.13730189,0.024577688,-0.45484325,-0.07069402,-0.16685492,0.12126514,0.5505817,0.23000653,0.33189258,0.052293718,-0.17690511,-0.01379682,0.1059754,-0.08926835,-1.1837689,0.2673874,0.28411955,0.7858798,0.34933499,-0.05133791,-0.081106834,0.7138805,-0.34101868,0.07408897,0.417922,0.14767303,-0.50366366,0.79507935,-0.6420943,0.40060574,-0.14867307,0.062233943,0.12571405,0.17324701,0.25344476,0.94057304,-0.2291366,0.0890882,-0.030858431,-0.14212853,0.019535892,-0.29215857,0.013953598,-0.3872077,-0.428701,0.68556756,0.41426122,0.36073595,-0.089726135,-0.061504208,-0.048515517,-0.17904441,0.17796387,0.049394023,0.07613933,-0.007840745,-0.49995688,-0.16847862,0.62685907,0.051355407,0.19247082,-0.15105106,-0.23545766,0.039084468,-0.21826053,-0.0048856577,-0.03294946,-0.62736547,-0.09408851,-0.20637833,-0.5288003,0.3975506,-0.3583291,0.18234862,0.1912284,0.008325587,-0.22980891,0.14908828,0.34288165,0.7092443,-0.006904459,-0.22422782,-0.31135783,-0.01734158,0.26264173,-0.2280213,0.03136294,-0.2941274,-0.03495338,-0.5695949,0.57137996,-0.18601926,-0.523594,0.21075559,-0.22038978,-0.04610254,0.6185001,0.05178133,-0.08231844,0.0063257418,-0.15276863,-0.5056797,-0.05660294,-0.19106713,0.15771522,0.32352364,-0.1312264,-0.00788023,-0.25746307,-0.123657845,0.52709955,-0.007456557,0.46697518,0.19316782,0.1477457,-0.15739037,-0.0084404545,0.059738763,0.5810247,0.15747906,-0.030278882,-0.36268944,-0.35484168,-0.3332982,-0.02483364,-0.0795378,0.276507,0.03209006,-0.4132258,0.9703932,-0.16420099,1.082162,0.12141968,-0.33471614,-0.02019528,0.49575183,-0.09320875,0.028141024,-0.36382866,0.7821275,0.5668486,0.032811895,-0.06475744,-0.38833156,-0.12812681,0.36366075,-0.38482377,-0.1121833,-0.007950662,-0.47754386,-0.5147678,0.26317,0.16576557,0.17064747,-0.10356713,-0.04662907,0.19533709,0.07454429,0.55870247,-0.562368,-0.14457826,0.16661192,0.34479424,-0.2387963,0.23009995,-0.44443658,0.47954497,-0.5166576,0.0988662,-0.4433077,0.14963984,-0.24550724,-0.25436068,0.20400119,-0.11025881,0.40697625,-0.12361858,-0.35333693,-0.12589242,0.5590455,0.07267412,0.13327919,0.6866909,-0.25657907,0.0405872,0.10144235,0.45677373,1.2816342,-0.55119956,0.014045522,0.34918007,-0.3650962,-0.52607334,0.4449436,-0.32031953,-0.063139424,0.053250365,-0.42127043,-0.27708513,0.32188034,0.11429892,0.1311474,0.070132665,-0.4936083,-0.026014829,0.36238468,-0.21357098,-0.22260837,-0.24742442,0.43290636,0.6311772,-0.30180973,-0.34392816,0.034473643,0.32653823,-0.27894017,-0.45894966,-0.12864819,-0.21406314,0.31053796,0.1177382,-0.29770166,-0.0848163,0.14925343,-0.4511822,0.017759927,0.12230361,-0.3934325,0.08862854,-0.1164337,-0.09519137,0.9816253,-0.32515624,-0.15431643,-0.74064183,-0.42432785,-0.8332954,-0.31461728,0.24580905,0.20790474,0.017665435,-0.39376628,-0.038241826,-0.13386743,-0.32375655,-0.03955915,-0.5236104,0.3583861,0.13931337,0.48569164,-0.26302198,-0.82708615,0.07749192,0.057753857,-0.07228044,-0.66769546,0.61120516,-0.077499576,0.6963548,0.14969735,-0.024621995,0.19529413,-0.31059715,0.087704726,-0.40253365,-0.1879551,-0.88688856,0.073640995,895 +311,0.43566558,-0.2431108,-0.39669093,-0.22390749,-0.45980427,0.092998825,-0.35254145,0.118964836,0.21514018,-0.43564096,-0.34222063,-0.036465533,0.11345542,0.1838386,-0.05603278,-0.44699574,-0.14081314,0.19557603,-0.819011,0.6653328,-0.5586863,0.25393316,0.24340357,0.4327942,0.21919307,0.20508452,0.2703716,-0.046835575,-0.24091859,-0.095792055,-0.13637975,0.3590722,-0.6295545,0.13082467,-0.43167534,-0.4550708,-0.043471113,-0.47841582,-0.2605839,-0.7492135,0.1676921,-1.1596655,0.6422404,-0.050910536,-0.15292536,-0.02084407,0.4250751,0.37996146,-0.4111732,0.18395089,0.2649197,-0.37704363,-0.3347527,-0.3902034,-0.07465574,-0.45007583,-0.45315665,-0.16644545,-0.4724558,-0.17580418,-0.21398582,0.30373,-0.25331786,-0.0006669124,-0.17580375,0.21670693,-0.42726845,0.13664478,0.3237765,-0.14752005,0.13202222,-0.6198768,-0.10929668,-0.20173556,0.44466692,-0.25145537,-0.31038114,0.41247287,0.4316377,0.5877083,0.27183646,-0.37963027,-0.19842218,-0.13544334,0.097359896,0.3480693,-0.12323896,-0.24889706,-0.2708766,-0.05750541,0.7119198,0.509861,0.09361245,-0.19089988,-0.017306866,-0.10698928,-0.08434423,0.5151968,0.52975184,-0.27593726,-0.27704614,0.29263318,0.5887203,0.2810784,-0.25530714,0.084735356,0.031195465,-0.54981196,-0.13811143,0.32443807,-0.12818713,0.5659465,-0.14808486,0.10712366,0.92138034,-0.21928936,0.14434077,-0.04867076,0.059310492,-0.24437799,-0.2759096,-0.29842803,0.31356248,-0.63420856,0.10096862,-0.33163413,0.58496666,0.08392895,-0.4944671,0.28928986,-0.599304,0.22957537,-0.025543002,0.66020423,0.8466493,0.5000788,0.39265746,0.85886323,-0.18992944,0.10970647,-0.11643016,-0.23965602,0.057607923,-0.38394526,0.20957702,-0.53768337,0.23427357,-0.24778228,0.20604032,0.0026280223,0.53693104,-0.5347973,-0.2488018,0.27840036,0.6177046,-0.30611742,-0.033186376,0.75667167,0.924161,1.14076,0.15963207,1.4743347,0.40308937,-0.23410884,-0.1313304,-0.061979108,-0.7567922,0.14599438,0.33751306,-0.2940789,0.28922,0.023120228,0.005034588,0.26217172,-0.56783897,-0.1027944,-0.10783191,0.4205888,0.10655069,0.023827774,-0.45357513,-0.11763995,0.05774734,-0.10354454,0.27881375,0.15833633,-0.24217448,0.4531754,0.09860848,1.1861306,-0.21875216,-0.03149869,0.15132459,0.47987857,0.27511224,-0.11130068,0.11616118,0.34929508,0.36387062,-0.1677825,-0.58326244,0.15532354,-0.33405325,-0.4483419,-0.24152726,-0.3733063,-0.108818136,0.055276886,-0.25113994,-0.27142817,-0.04800636,-0.289452,0.39648777,-2.4514127,-0.36674196,-0.23703827,0.3082659,-0.31498134,-0.13656737,-0.22499725,-0.49445602,0.3871902,0.124228954,0.48201656,-0.7220487,0.41905484,0.5613347,-0.7204774,-0.23138943,-0.83048606,-0.19060951,-0.03623716,0.45104715,-0.0015577237,-0.3073183,-0.011565459,0.10986592,0.5927744,0.030016867,0.16956252,0.6248848,0.5645614,0.1736474,0.5806369,0.07099282,0.55881554,-0.45057216,-0.2886339,0.5276869,-0.30962875,0.42006597,-0.04990573,0.0009841959,0.8911823,-0.5059131,-0.8610723,-0.6370356,-0.34090438,1.0106465,-0.42336842,-0.59751534,-0.07100798,-0.25106937,-0.00010727246,0.10130043,0.6305617,-0.064987056,0.08463143,-0.81341225,-0.11590746,0.035212055,0.30189267,0.0062321844,0.104236,-0.3205916,0.74215597,-0.118029244,0.5463038,0.2347285,0.2499889,-0.3375871,-0.32868093,0.0909468,0.9413422,0.5391313,0.0038730581,-0.21824466,-0.4007825,-0.06659089,-0.37564963,0.14788987,0.5198729,0.6327056,-0.19379419,0.2795941,0.41677237,-0.081542745,-0.06330714,-0.26955014,-0.19862694,-0.22645426,0.1400946,0.5809882,0.7895761,-0.095396556,0.4328806,-0.19777231,0.22809115,-0.04274989,-0.6920397,0.6379351,0.7699097,-0.23344222,-0.017560558,0.6159913,0.42751697,-0.3949151,0.57684153,-0.90611637,-0.4273087,0.6296104,-0.0526117,-0.39808705,0.20903036,-0.36978674,0.33076075,-0.7736556,0.30640805,-0.3356851,-0.18756254,-0.7436393,-0.19597177,-2.1044037,0.19675829,-0.1538683,0.018494058,-0.2935084,-0.30935088,0.27354452,-0.5446607,-0.71310276,0.23723075,0.24395518,0.6017975,-0.11490227,0.20267348,-0.3054416,-0.26945078,-0.16875926,0.085951716,0.1803902,0.37581077,-0.34275827,-0.49404076,0.14119108,0.039371595,-0.42536557,0.024480926,-0.6642631,-0.5235519,-0.10860471,-0.457544,-0.12406889,0.5380712,-0.42026997,-0.08975906,-0.29541877,0.09600224,-0.17327504,0.22176416,0.23968604,0.25956756,0.16103347,-0.010827907,0.016837064,-0.3151695,0.43653807,0.07394389,0.07828307,0.19298248,-0.18241237,0.15919027,0.32900327,0.6502809,-0.22224118,1.0195796,0.36918923,-0.07854999,0.20427844,-0.19722632,-0.37770388,-0.6372031,-0.28919408,-0.11803947,-0.48655555,-0.4169362,0.11768116,-0.23853773,-0.9241276,0.80356234,0.03254377,0.35401735,-0.121213,0.36629993,0.40319303,-0.25901538,-0.04435229,-0.128684,-0.17004925,-0.6380542,-0.45667562,-0.6983277,-0.539675,-0.06941121,0.9359146,-0.28638372,-0.07715271,0.19557902,-0.25450075,0.051640145,0.19822183,-0.03721826,0.21104045,0.83168894,0.11921004,-0.68664944,0.32471904,0.10886813,-0.06002748,-0.45322078,0.28353357,0.7344115,-0.7166327,0.5198799,0.4703152,-0.0003204445,-0.19373296,-0.71521163,-0.29558876,-0.08801436,-0.30364063,0.42162478,0.17470023,-0.7682941,0.624856,0.24312331,-0.48740903,-0.79632694,0.43252233,0.015820106,-0.17125796,0.037252314,0.38088715,0.14109057,-0.10774895,-0.2190343,0.2146412,-0.4003062,0.44228745,0.13265485,-0.22447321,0.3735512,-0.2818072,-0.46072057,-0.7257097,0.14895684,-0.5476604,-0.41191956,0.3956498,-0.2103268,-0.14483525,0.25935715,0.23954654,0.3795393,-0.29285592,0.082652345,-0.13896374,-0.3378886,0.18706447,0.5015228,0.37325853,-0.41216984,0.65842783,0.2005733,-0.227952,0.049915593,0.017573027,0.26138923,0.063110195,0.33517262,-0.07842552,-0.10357942,0.34791216,0.7693451,0.1392772,0.34688404,0.08159067,-0.04620591,0.44818163,0.1417858,0.23877643,-0.2210308,-0.4957391,0.00086874166,-0.04305507,0.118978456,0.41551888,0.35404977,0.45482534,0.076332375,-0.015429346,0.01021534,-0.00275867,-0.11135582,-1.4716724,0.17823535,0.23194082,1.0134984,0.353704,-0.09788094,-0.017795514,0.7417725,-0.38000074,-0.07750996,0.47338971,-0.0179691,-0.39295822,0.7375731,-0.48209122,0.3318263,-0.22992416,0.016833926,-0.014744214,0.26171538,0.32636452,0.8459311,-0.326109,0.076360434,-0.13958177,-0.16987874,0.13303424,-0.3088073,0.026466783,-0.32905072,-0.46252352,0.84992474,0.2896606,0.5195598,-0.3278771,0.005958991,0.008739058,-0.4174601,0.35564035,0.077428095,0.057292573,0.019550657,-0.46154568,0.006172792,0.6104594,-0.0018140514,0.11000768,-0.10068093,-0.34290615,0.04875196,-0.14098077,0.09130122,-0.08843788,-0.8803481,-0.22206113,-0.32733917,-0.49780864,0.37359306,-0.21625061,0.050095674,0.3021495,-0.15502222,-0.012252049,0.21621838,0.13074799,0.8917405,0.009048632,-0.27992752,-0.213296,0.098782524,0.3498949,-0.2372755,0.27592108,-0.23659866,0.15095451,-0.6453093,0.725491,-0.211879,-0.36129892,0.25777498,-0.29394048,-0.13368812,0.47504744,-0.108819254,-0.105262056,0.20738854,-0.27755424,-0.48251858,-0.086605765,-0.32100648,0.19419065,0.23345663,-0.009864855,-0.2088107,-0.24798161,-0.180607,0.54181665,0.08533212,0.3416269,0.30901316,0.012108758,-0.35860077,0.20737258,0.2081919,0.5728742,0.002740526,-0.114573866,-0.37093106,-0.32954985,-0.39727554,0.49814066,-0.13902913,0.11756849,-0.040292837,-0.41885886,1.1223243,-0.12613389,1.0878847,0.14446236,-0.45454183,-0.008940725,0.61400473,-0.22751638,0.009695862,-0.31187984,0.81961197,0.5500986,0.111695684,0.054496113,-0.48296234,-0.016907986,0.3759867,-0.3232231,-0.07851331,0.011163687,-0.49699333,-0.483365,0.20091729,0.24092038,-0.00039726097,-0.23048376,0.13354205,0.2729936,0.19347195,0.5088606,-0.7327109,-0.38345852,0.19699098,0.22109279,-0.2331859,0.123076715,-0.34335652,0.39012605,-0.7076261,0.03455559,-0.47297812,0.13753779,-0.1293108,-0.3585243,0.13385324,-0.04107511,0.50326276,-0.3809101,-0.36297086,-0.04809644,0.40647826,-0.016782364,0.29461068,0.5832868,-0.29181883,0.106226996,0.15403867,0.5275935,1.390788,-0.45605093,0.07331131,0.20684896,-0.42579275,-0.5601738,0.5979361,-0.4623101,0.023693789,0.009077754,-0.5977846,-0.44911024,0.16214797,0.16081998,0.24405782,-0.011156738,-0.64980835,-0.1055286,0.338304,-0.16591737,-0.13825972,-0.19429536,0.17685065,0.667904,-0.124492936,-0.3023395,0.21232468,0.3495374,-0.29828224,-0.4725744,-0.02559828,-0.34773844,0.3109675,0.09603559,-0.21091647,-0.032225464,0.14332604,-0.5725234,-0.0040290356,0.22017032,-0.3834424,-0.062470004,-0.33702984,0.18227917,0.8966802,-0.18430549,-0.062089674,-0.68562496,-0.4723083,-0.7978726,-0.27090833,0.045325447,0.2001745,0.034689996,-0.43440205,0.07904007,-0.16265737,-0.22283827,0.07180546,-0.6110048,0.44026098,0.25809368,0.46654847,-0.33961102,-0.8222202,0.089468814,-0.04561961,-0.04962224,-0.44131476,0.6061138,-0.00044635136,0.8460493,0.12779206,-0.13857044,-0.029879777,-0.5027419,0.19212158,-0.35642478,-0.056956165,-0.9003493,0.05068251,902 +312,0.54192483,-0.030685091,-0.5764431,-0.2908648,-0.537059,0.30094382,-0.2031496,0.093077496,0.33821085,-0.54752797,-0.004661226,-0.24849838,0.017093142,0.32993582,-0.2399912,-0.781687,-0.076310806,0.20471643,-0.8187647,0.3736517,-0.5047611,0.2614647,0.34182236,0.20538919,0.008158405,0.095688865,0.36230263,-0.2841379,-0.046923064,-0.040767793,-0.084099725,-0.015824588,-0.6491453,0.24171062,-0.03030402,-0.2914565,0.118561104,-0.55762076,-0.27253017,-0.6250225,0.42513427,-0.8886685,0.5094984,0.12529033,-0.30420026,0.1694616,0.07948599,0.05895153,-0.22600213,0.187178,0.23653345,-0.35510123,-0.07886316,-0.2211056,-0.40024486,-0.50355536,-0.71995354,0.048967652,-0.5155455,-0.14283963,-0.24044393,0.34405002,-0.3579659,0.05117063,-0.17711058,0.50087917,-0.33683863,-0.20193067,0.30105674,-0.14087254,0.2420353,-0.29217184,-0.09189239,-0.13730222,0.3543183,-0.06928148,-0.19563408,0.2834434,0.20346895,0.6820504,0.121910855,-0.34181356,-0.16835466,-0.0034987747,0.15018898,0.45739862,-0.13314953,-0.30486247,-0.1800423,-0.046241723,0.19126533,0.3733794,-0.10484408,-0.51329035,0.19380666,-0.006174376,-0.28470185,0.5830946,0.47523198,-0.4020475,-0.2644289,0.34732327,0.3658642,-0.076163486,-0.15790823,0.2102731,-0.023391414,-0.74047977,-0.3837916,0.43725014,-0.16430695,0.43504816,-0.1366244,0.1256402,0.7077506,-0.24165162,-0.09421498,-0.22553441,-0.24808636,-0.03160281,-0.20367408,-0.063744076,0.2534989,-0.49148777,0.07539431,-0.24259607,0.772459,0.17067634,-0.86936975,0.33017606,-0.64533067,0.14095777,-0.13019958,0.7341791,0.72315484,0.44366685,0.23707017,0.88893014,-0.5050781,0.16778356,-0.11776102,-0.48199502,0.070733376,-0.13232549,0.050629403,-0.34616163,-0.012968847,-0.07756449,-0.054079853,-0.048635982,0.40301362,-0.29004547,-0.042772055,0.122832134,0.80159265,-0.43951365,0.039730072,0.7960863,1.0102227,0.9950787,0.24663289,1.3965787,0.31864282,-0.28359598,0.2640377,-0.29239246,-0.61036843,0.25828177,0.27849016,0.25699216,0.24537824,-0.022165664,0.23716854,0.22283569,-0.4541277,0.049199007,-0.16034608,0.2459115,-0.12614818,0.053133298,-0.35859364,-0.2005925,0.19354303,0.078739755,0.19275421,0.24253106,-0.13815102,0.32819065,0.1375398,1.2008529,0.0027552366,0.09143095,0.12954897,0.24854082,0.13302273,-0.020824132,-0.10869873,0.1680616,0.3979459,-0.12193462,-0.6047306,0.07906205,-0.18997209,-0.4012125,-0.2555819,-0.3366159,0.067636326,-0.22606859,-0.35758382,-0.10733227,-0.060915664,-0.49701983,0.40779305,-2.1433032,-0.23280214,-0.08941674,0.25321364,-0.099933036,-0.1755672,-0.24643424,-0.6617726,0.32305956,0.3824569,0.13563462,-0.6943208,0.4912281,0.5071791,-0.38600025,-0.14176852,-0.7358582,0.004134738,-0.18821809,0.32935795,-0.02354435,-0.08976357,-0.26356688,0.3296295,0.5459856,0.054495223,-0.029171837,0.275242,0.52645695,0.12847821,0.62961024,0.06548722,0.4875435,-0.27851027,-0.10023619,0.4126314,-0.28695658,0.1651856,-0.10381269,0.14241293,0.38245627,-0.6243836,-0.79014677,-0.8011058,-0.5618717,1.2000078,-0.39090315,-0.33599466,0.3573631,0.04326578,-0.23953384,-0.06558585,0.67378575,-0.20434299,-0.004692586,-0.832142,0.0788861,-0.012095753,0.32459348,-0.08922239,0.14713345,-0.32804725,0.70912004,-0.21573646,0.4537667,0.29477674,0.18605956,-0.25254568,-0.61395705,0.22411938,0.78092754,0.19007546,0.16723152,-0.16073303,-0.22915119,-0.11710063,-0.043819115,-0.04863809,0.6562088,0.899186,-0.06180663,-0.032456484,0.39857838,-0.23620863,0.08621585,-0.19347951,-0.1992639,-0.06767988,-0.19982842,0.5102319,0.43959954,-0.05822129,0.272227,-0.19620337,0.30869785,-0.09776052,-0.31171086,0.5399744,0.91103935,-0.13463287,-0.17280097,0.6217293,0.44807476,-0.41976082,0.4577448,-0.6589151,-0.26388618,0.51157254,-0.072128944,-0.5201309,0.034407828,-0.37277177,0.24480274,-0.9926548,0.24850713,-0.09403233,-0.27423766,-0.46557614,-0.11935776,-3.391061,0.27629754,-0.21464327,-0.12729293,-0.023015173,-0.11296378,0.425796,-0.43081257,-0.56442314,0.06424549,0.13382936,0.59397244,0.11943304,0.31496456,-0.34983078,-0.022765987,-0.40944293,0.26432416,0.20498927,0.33294785,-0.063559495,-0.32748693,0.1171952,-0.42125705,-0.36487728,0.05374695,-0.52014846,-0.4246684,-0.11279591,-0.4822286,-0.5263806,0.634577,-0.333974,-0.074453436,-0.26642707,-0.1056364,-0.103355266,0.33021268,0.1568638,0.18792282,0.101004094,0.0012269417,-0.41829368,-0.33650583,0.41695154,0.0056000757,0.03488435,0.31188312,-0.08118746,0.17514418,0.41827643,0.6420739,0.031362407,0.661659,0.2997409,0.03468151,0.18866174,-0.21478496,-0.25958434,-0.7144438,-0.3684644,-0.20229062,-0.4386219,-0.51261693,-0.16458052,-0.41092443,-0.6848441,0.45300472,0.017472532,-0.048473537,0.047608327,0.21117888,0.39811435,-0.22090231,0.09255557,-0.10287763,-0.293838,-0.4371771,-0.5028398,-0.73854226,-0.47859663,-0.0440296,1.1490887,0.08850228,-0.22467962,0.08221673,-0.2125581,0.0900316,0.15615489,0.18552552,0.31805903,0.47060373,-0.073700264,-0.7399834,0.48016852,-0.14085811,-0.05050334,-0.49421296,-0.061140757,0.65446866,-0.7803427,0.49922213,0.35448,0.25460014,0.024550326,-0.49334112,-0.3434357,0.057208017,-0.32991478,0.5488265,0.19581749,-0.8111228,0.54347825,0.12627394,-0.18265842,-0.85882765,0.41435987,-0.007966483,-0.26166606,0.14447246,0.3735419,0.10017802,0.018758286,-0.23706862,0.19656035,-0.4789386,0.33335668,0.29463524,0.15368779,0.20682101,-0.20012732,-0.23172377,-0.68793094,-0.15812463,-0.5473948,-0.30278128,0.011532871,-0.010902,0.053253498,0.30960777,0.019477399,0.5677903,-0.23495206,0.19477873,-0.063833624,-0.1436504,0.27293137,0.4378923,0.3250065,-0.43385988,0.6763373,-0.09183297,-0.0024716496,-0.29330504,0.07103374,0.4078329,0.29713246,0.27607667,0.077987336,-0.19425729,0.3267752,0.7449057,0.120092794,0.20927258,0.2922167,-0.21508071,0.62870395,0.13619655,0.052353814,-0.14991468,-0.3872062,-0.20215897,-0.10439415,0.08991165,0.34554484,0.08797489,0.37743157,-0.24515685,-0.14229414,0.038718197,0.14898005,-0.15309744,-1.2372214,0.19356513,0.10445123,0.5889758,0.71147096,-0.12664615,0.045809943,0.4955136,-0.39390162,0.06652651,0.33817157,0.04567136,-0.34758726,0.50977886,-0.44982103,0.40640754,-0.25507018,-0.019260915,0.11531691,0.23417664,0.17427383,0.9464256,-0.115322836,0.17189893,-0.02692854,-0.062121574,0.19371358,-0.20171168,0.00029409726,-0.5377277,-0.30434796,0.52157146,0.409144,0.43028456,-0.21805473,-0.0803469,0.021228075,-0.05816621,0.11850647,-0.060435858,-0.22788183,0.019682396,-0.69426537,-0.38626382,0.5137708,0.11670328,-0.10121267,0.091085106,-0.44824183,0.07283446,-0.2332894,-0.087699875,-0.075569026,-0.8360008,-0.2799674,-0.2836743,-0.3099601,0.304016,-0.49532095,0.21563047,0.2710702,0.12500577,-0.43968967,0.023393568,0.34728736,0.77047336,0.29414636,-0.18926443,-0.2534331,-0.10777907,0.2679946,-0.3744286,-0.07137001,-0.21020408,0.09859344,-0.63643986,0.55256176,-0.14591485,-0.23488545,0.12990305,-0.16692927,0.043388605,0.6065484,-0.20884885,-0.15686846,0.22018607,0.05935177,-0.28723857,0.012115654,-0.38846645,0.20611338,0.010262104,-0.08314959,0.17717728,-0.14519924,-0.07940347,0.5492588,0.17424814,0.26314676,0.274794,-0.021591851,-0.45964247,0.05943521,-0.03183419,0.36747676,0.048516948,-0.14939308,-0.17311811,-0.21390606,-0.044561885,0.384622,-0.056606147,0.035075076,-0.0038954178,-0.4660661,0.70817256,0.24720176,0.94376177,0.11245433,-0.24763387,0.09293128,0.3933563,0.0113349315,0.036265675,-0.45770514,0.78763074,0.55253655,-0.13075767,-0.2333323,-0.288329,-0.069796845,0.072728,-0.24735619,-0.11676058,-0.1341788,-0.73988414,-0.20459214,0.18319622,0.15435365,0.05882012,-0.035337042,0.064933814,-0.10023255,0.123881534,0.5427362,-0.5406968,0.13589005,0.33416566,0.22912768,0.18878593,0.3030739,-0.20572822,0.45204756,-0.5295596,0.09648431,-0.37336445,0.013266404,0.08477804,-0.25470403,0.15945901,0.1741756,0.29090044,-0.17748356,-0.40267697,-0.30011493,0.7342219,0.19519158,0.36521205,0.88798535,-0.25897226,-0.049050268,0.018046143,0.5402719,1.397414,-0.06899228,0.113930956,0.20083085,-0.40544194,-0.5105902,0.19444904,-0.40333694,-0.10137328,-0.028352363,-0.33841762,-0.2541288,0.27031484,0.19217342,0.0016911536,0.14687344,-0.47106597,-0.19019909,0.61390185,-0.21111366,-0.31602713,-0.23590907,0.41514242,0.66273254,-0.28843105,-0.09760632,0.009470335,0.34389526,-0.39807913,-0.5938805,-0.06190612,-0.4131996,0.35198295,0.15996481,-0.26047722,-0.01533702,0.23730367,-0.54675114,0.08691261,0.3523096,-0.37956494,0.040386725,-0.27393532,-0.23224252,1.0105815,0.048747897,-0.064612076,-0.63671434,-0.5404411,-1.1353438,-0.15854983,0.2358767,0.13196914,0.1537152,-0.33228907,-0.19420834,0.01697042,-0.01027772,0.14107679,-0.5311212,0.36336097,0.12201994,0.5692638,0.033425096,-0.8847056,-0.012794344,0.061752852,-0.2988679,-0.3790699,0.6115208,-0.021743003,0.7057543,0.044947673,0.029065708,0.0782754,-0.56143355,0.3619424,-0.34519157,-0.10577468,-0.75071925,0.056920953,907 +313,0.3914947,-0.0005084654,-0.5771539,-0.25257775,-0.40222237,0.20976757,-0.23338595,0.30205795,0.16567424,-0.31136286,-0.07726911,-0.19146772,0.035982337,0.43778342,-0.20043206,-0.5870478,0.09031113,0.20488396,-0.678222,0.39856955,-0.49979246,0.53886235,0.17655651,0.2663946,0.07895973,0.3007885,0.23395139,-0.10817913,-0.12445438,-0.052955467,-0.26836383,0.11312354,-0.52493614,0.11710676,-0.08562342,-0.43130067,0.035653543,-0.2724698,-0.16803366,-0.69406855,0.3366019,-0.6602418,0.57736355,-0.20015483,-0.49504757,0.10106458,0.15025075,0.25339988,-0.41757476,0.09672856,0.15762672,-0.15102205,-0.09748306,0.0011595567,-0.36259568,-0.5238685,-0.5924519,-0.0429519,-0.6477353,-0.017819338,-0.3173913,0.18894199,-0.3240956,0.04256721,-0.12329321,0.19372539,-0.42711818,0.19649439,0.23922096,-0.07875206,0.011579039,-0.50536215,-0.079753235,-0.2293634,0.2344731,-0.023466619,-0.20143175,0.28566712,0.47794074,0.5377721,0.19070567,-0.20572034,-0.24487482,-0.14325891,0.06060748,0.5272857,0.03303099,-0.24318141,-0.30759728,-0.102182284,0.3666162,0.30125856,0.20224431,-0.29866913,-0.1707106,-0.03888126,-0.2637977,0.15173657,0.37175027,-0.41271657,-0.16249938,0.3858249,0.42136872,0.22558804,-0.201057,0.20588785,-0.16605061,-0.58204556,-0.32007405,0.11256678,-0.24281667,0.69904745,-0.3057762,0.16766484,0.79542565,-0.24391419,0.035660505,-0.059381556,-0.0035063506,-0.16235487,-0.19013043,-0.09192327,0.10531025,-0.68874437,-0.0045845984,-0.19316708,0.6236135,0.14133316,-0.68315434,0.2548134,-0.6009051,0.09692596,-0.12718551,0.56691,0.6901178,0.3988478,0.17850733,0.813156,-0.49430105,0.048330713,0.028172426,-0.48107806,0.19059071,-0.0678476,-0.13255493,-0.5577259,0.119573995,0.12936693,0.065603524,0.018709425,0.592558,-0.34867638,-0.038234726,-0.027929159,0.55118966,-0.51123327,-0.20991325,1.0237583,0.8919235,1.0636526,0.07137633,1.5053042,0.3465435,-0.1564538,-0.11792543,-0.18366149,-0.5271233,0.14646251,0.3729502,-0.2292971,0.43636817,0.1377971,0.1176475,0.32734782,-0.18905894,-0.024245998,-0.059933696,0.14402577,-0.08434876,-0.15671875,-0.466138,-0.40220687,0.120071,0.15829442,-0.052964535,0.23200426,-0.17833099,0.5633557,0.28026947,1.4102815,0.06435248,-0.0015101354,-0.02156703,0.23753086,0.28252715,-0.13360843,-0.081116796,0.3710283,0.3524173,-0.113864705,-0.506956,-0.13760084,-0.2747798,-0.5398993,-0.19534983,-0.4398137,-0.13752998,-0.2060589,-0.5469043,-0.111237556,0.025772823,-0.28520334,0.5518405,-2.2506943,-0.2626609,-0.16608879,0.20950325,-0.06733464,-0.42345524,-0.15537481,-0.43555877,0.32524586,0.3490134,0.38276663,-0.72445834,0.46481228,0.33128902,-0.32092476,-0.14416596,-0.6701762,-0.11952656,0.014407042,0.1324378,-0.14468159,-0.1774232,-0.05959632,0.22436514,0.62241787,-0.110159345,0.13306388,0.22119543,0.53612465,-0.07641447,0.4524916,0.21806015,0.610062,-0.057985943,-0.12934473,0.3735949,-0.32214394,0.45883432,-0.021652972,0.19653693,0.49432328,-0.57266563,-0.70675474,-0.5866464,-0.3899601,1.1309572,-0.48108846,-0.28158972,0.25102738,-0.11101626,-0.23046072,0.020469775,0.33052608,-0.11947308,-0.052045025,-0.64146733,0.06302709,-0.080141544,0.08984573,-0.16965084,0.13426492,-0.2638115,0.76659995,-0.15345396,0.41812918,0.41274354,0.18409103,-0.16691443,-0.5335388,0.08489837,0.89661777,0.55916727,0.107933834,-0.26820412,-0.30264091,-0.40592167,-0.22643954,0.2577193,0.36483726,0.8732054,-0.013920593,0.27535996,0.24182446,-0.0654628,0.09260432,-0.10712433,-0.26272377,-0.072529025,0.11060189,0.48917267,0.5432833,-0.21254416,0.41268215,-0.19227234,0.17429802,-0.13299689,-0.6268148,0.5547472,0.9622872,-0.2783838,-0.27974126,0.5849702,0.36158445,-0.35121796,0.47003797,-0.5104875,-0.25682306,0.6423633,0.013464605,-0.28542712,0.18799806,-0.37076157,0.1444643,-1.042979,0.29092818,0.0019960701,-0.4210282,-0.42414722,-0.17376389,-3.4953115,0.24756628,-0.21287753,-0.047143485,-0.26318878,-0.27600744,0.28439635,-0.6298374,-0.7256669,-0.054641984,0.097766735,0.530039,0.03646294,0.102027215,-0.1635416,-0.3089032,-0.2100988,0.071814395,0.12233531,0.32337815,-0.16264063,-0.46046215,0.012448975,-0.32103178,-0.63364714,0.00599985,-0.54887015,-0.53420335,-0.24133264,-0.39395115,-0.24507283,0.7947763,-0.36319974,0.015969245,-0.21968254,-0.046564255,-0.13436551,0.3026098,0.22902784,0.025653223,0.038557988,0.019618355,-0.10748853,-0.31627545,0.1267538,0.09552339,0.22744936,0.42478055,-0.1355968,0.3411559,0.45096868,0.6466733,-0.23956251,0.67178756,0.20724156,-0.11352155,0.33856723,-0.19407521,-0.21296111,-0.7760885,-0.45893785,-0.2723916,-0.4404698,-0.525272,-0.16716225,-0.3483301,-0.7983147,0.4769527,0.07294553,0.12453575,-0.16868898,0.30079448,0.38707057,-0.12361956,-0.0027786712,-0.12314778,-0.39450794,-0.49942806,-0.44483417,-0.8126892,-0.632349,0.30663618,1.2319789,-0.19882815,-0.09497695,0.07090249,-0.31291616,0.13027547,0.12784937,0.09630593,0.124699466,0.29698557,-0.21861567,-0.6475231,0.45552734,0.00028734206,-0.23610254,-0.4894822,-0.040527113,0.6466446,-0.6355232,0.47600496,0.44904187,0.20477766,0.34141642,-0.75442064,-0.17631496,-0.01625703,-0.2368035,0.60802495,0.24973354,-0.632325,0.5640676,0.19753304,-0.1253841,-0.61456066,0.6359082,-0.046026517,-0.035318978,0.029826827,0.42737764,0.13734804,-0.12395992,-0.22888225,0.25535384,-0.66998374,0.34685573,0.46065152,0.025493646,0.32556188,0.021076437,-0.31886834,-0.75421077,-0.040623505,-0.46284917,-0.24550866,-0.029426038,-0.04488889,0.061184302,0.05003725,0.19638087,0.38020632,-0.56132334,0.25624987,-0.044940464,-0.2180263,0.27148667,0.43090808,0.39227265,-0.53976923,0.65019554,0.08736609,0.08439889,-0.19090563,0.14240414,0.5482747,0.2488624,0.4011032,0.0025384664,-0.108263984,0.17002591,0.5705995,0.2500932,0.28265032,0.20947185,-0.35475406,0.23991458,0.29219514,0.26974198,0.054012578,-0.24159305,-0.050353896,0.00064953166,0.12773888,0.5628928,0.11799177,0.293602,-0.009580167,-0.06399769,0.20652732,0.057209358,-0.09745343,-1.0936904,0.32976073,0.39194945,0.6262334,0.5887154,-0.10757581,0.014088909,0.2910071,-0.42949098,0.14650036,0.41266456,0.08269116,-0.4476381,0.55062604,-0.5790157,0.4783668,-0.23796794,-0.018962674,0.16091706,0.13948114,0.4077044,1.0844659,-0.035944246,0.07862579,0.09757759,-0.24926071,0.17955083,-0.36840656,-0.18036233,-0.5020702,-0.22494347,0.7252428,0.25890163,0.31333098,-0.35473812,-0.06448893,0.13923182,-0.26986268,0.08731222,-0.05342593,0.2037606,-0.26318958,-0.522158,-0.42868367,0.51816195,0.044885162,0.18910775,0.20576695,-0.4563374,0.2182203,-0.22592698,0.09524062,-0.014560719,-0.7380827,-0.20935301,-0.4283653,-0.49506015,0.30996996,-0.31612638,0.19349208,0.27181542,0.0016993016,-0.33605126,0.15360206,0.04270015,0.7682063,0.0059494297,-0.14030679,-0.17382526,0.22879656,0.42022997,-0.34935218,-0.010720015,-0.17303154,0.07512269,-0.5840014,0.43364382,-0.2025282,-0.23645042,-0.04036922,-0.19253176,-0.12560397,0.3149575,-0.2340969,-0.10300549,0.06057132,0.10293487,-0.11806286,-0.074131645,-0.32576188,0.2917624,0.09603622,-0.083129644,-0.0028027415,0.020339267,0.05330558,0.31393856,0.0043026805,0.2617151,0.26105767,-0.18886575,-0.5362143,-0.010572311,-0.0026665807,0.30331823,0.08996331,-0.08465083,-0.35953006,-0.30534345,-0.21343999,0.36389032,-0.27656403,0.1333766,0.13576256,-0.3092688,0.9664382,0.22143151,1.2618039,0.067103975,-0.45179042,0.1064637,0.62497455,0.06592298,0.077609636,-0.16655083,1.0095992,0.5194058,-0.24605481,-0.3134455,-0.43697298,-0.1825893,0.323227,-0.29977852,-0.30119297,-0.04607087,-0.627607,-0.2837278,0.140002,0.1412506,0.08599376,-0.05496688,0.018718084,0.24498925,0.008793314,0.51634765,-0.6590354,-0.22825877,0.33263773,0.13346274,-0.023418833,0.2779213,-0.40819073,0.46878484,-0.6749185,0.13255873,-0.31482744,0.22994347,-0.08932856,-0.404928,0.3249246,0.09194905,0.27823868,-0.24543566,-0.40621197,-0.30497476,0.65910244,0.16300695,0.35010856,0.7197922,-0.4550033,0.0001356562,0.05168114,0.38375384,1.2479386,0.002664264,-0.053532466,0.37109518,-0.497666,-0.5617785,0.24958754,-0.46833482,0.06290949,-0.045072135,-0.39382485,-0.42781302,0.38619334,0.13552262,0.04446052,0.17344971,-0.5027557,-0.046630684,0.44712356,-0.28912517,-0.29311022,-0.21757819,0.34437895,0.70695037,-0.4811825,-0.2498634,0.1295701,0.16246456,-0.34319904,-0.58362406,0.033909123,-0.21739888,0.47834143,0.1424224,-0.41253415,0.1382583,0.12159009,-0.34964007,0.13345197,0.4516911,-0.269893,0.1517574,-0.4719928,-0.11280953,1.0876796,0.0231992,0.030779809,-0.52651113,-0.55880445,-0.8929155,-0.3337998,0.36489508,0.1601107,0.006004508,-0.6778744,-0.03430762,-0.028103793,-0.014753413,0.16876765,-0.30885682,0.5091714,0.20451385,0.29498836,0.052587025,-0.829835,-0.021766532,0.09704599,-0.22242394,-0.5279173,0.61370826,-0.21227366,0.70954037,0.291453,0.06790323,0.13437101,-0.64122325,0.37231153,-0.3649422,-0.009998099,-0.588946,0.0040578763,911 +314,0.5461697,-0.15191945,-0.5140974,-0.18947887,-0.2358374,-0.051792305,-0.15176493,0.62085044,0.39061993,-0.38488752,-0.021052549,0.007456714,0.01906894,0.23744065,-0.081969246,-0.53257805,-0.043971382,0.052260593,-0.47088286,0.48586324,-0.4190933,0.12029708,-0.047257744,0.52299356,0.28220555,0.28149813,0.03661823,0.098413564,0.23432606,-0.15512332,-0.08625349,0.19021635,-0.50326204,0.17732236,-0.12661804,-0.28823474,-0.14155747,-0.44529203,-0.4649225,-0.7172491,0.29950804,-0.74528384,0.46637636,0.17135069,-0.34924918,0.10462556,0.041136026,0.32005203,-0.2605708,-0.043415498,0.12352231,0.09476403,0.11199827,-0.13489762,-0.10735448,-0.4117439,-0.6223746,-0.06527054,-0.39223406,0.05730902,-0.053328015,0.1352846,-0.26654708,0.0096192015,-0.24377137,0.53330874,-0.32182008,-0.13864955,0.30854586,-0.14902434,0.34337202,-0.48970816,-0.07448661,-0.12736157,0.062570095,-0.0042408826,-0.39814222,0.29409835,0.11692055,0.49464607,-0.11393342,-0.20465198,-0.12523694,-0.02784944,-0.09059321,0.36941057,-0.30369663,-0.41102278,-0.24077779,0.059989236,0.2898923,0.1468236,0.17611718,-0.2004283,-0.07834457,-0.103254505,-0.19257379,0.5082581,0.56430036,-0.32053417,-0.024617994,0.32508028,0.58432823,0.20293792,-0.18799977,0.19258973,0.06964709,-0.5868543,-0.19308145,0.048898693,-0.24369924,0.47107786,-0.2135817,0.18405746,0.6104965,-0.08703486,-0.116206504,0.15291448,0.108599626,-0.20389311,-0.37266174,-0.35514438,0.29539934,-0.5391223,0.17228974,-0.20086288,0.6664961,0.024930593,-0.6886072,0.27549997,-0.43896154,0.15972966,-0.0615365,0.5807535,0.8858525,0.4630215,0.27573863,0.7342965,-0.44870573,0.08481819,-0.18574017,-0.29605535,0.24048139,-0.037230413,0.02175167,-0.5188839,-0.101093024,0.09606234,-0.21215786,0.084993824,0.41114953,-0.51670164,-0.16963911,0.21914326,0.7206909,-0.27150154,-0.11983574,0.7176627,1.1126832,1.0950882,0.07732142,0.74940175,0.168423,-0.1694055,0.13320763,-0.138935,-0.716327,0.29659516,0.29802597,0.119331904,0.38679287,0.037798747,-0.05304002,0.43569374,-0.40348127,0.004632303,-0.10308352,0.28681216,-0.12298846,-0.1005425,-0.4159118,-0.28571433,-0.06810286,0.2008291,0.057286687,0.3042958,-0.19283281,0.46554857,0.124048166,1.3643512,-0.0582193,0.034956537,0.14798598,0.547535,0.23170558,-0.39248177,-0.075658955,0.18003792,0.56165135,0.19511957,-0.53911805,0.046996344,-0.16545086,-0.35951653,-0.008861291,-0.27001145,0.04056486,-0.20954087,-0.5084266,-0.19173342,-0.086771816,-0.2687902,0.32106268,-2.9839926,-0.0478919,-0.09119473,0.24813756,-0.12226309,-0.30229935,-0.0866749,-0.5602287,0.31873074,0.39056966,0.37648267,-0.75637335,0.41915867,0.41450822,-0.5179175,0.22498445,-0.7354376,-0.121119455,-0.06378093,0.33373216,0.22456817,0.1490543,0.047347236,0.41745123,0.49926618,0.06903503,0.15491441,0.15714592,0.29708233,-0.033470247,0.3947448,-0.0050365687,0.3713586,-0.22805697,-0.15421107,0.33745518,-0.40729484,0.03008001,-0.27151337,0.06531737,0.4897855,-0.406711,-0.82357603,-0.5520018,-0.018765355,1.188503,-0.2336962,-0.4481516,0.18782537,-0.5151275,-0.31980115,0.02327659,0.47853968,-0.28054518,-0.13172899,-0.7969318,-0.017465984,-0.27756616,0.1361346,-0.09607395,-0.16239962,-0.38076115,0.66708773,-0.04682361,0.52472097,0.2930422,0.11580326,-0.25528643,-0.5694904,0.08121841,0.77395535,0.416824,0.094218105,-0.2431405,-0.100486,-0.29613608,0.26101887,0.24503393,0.6847514,0.8198745,-0.1467784,0.23658866,0.4467802,-0.022035237,-0.04753947,-0.10021539,-0.29455474,-0.112656325,0.041141577,0.6760312,0.8082898,0.0047622123,0.27016357,-0.11464167,0.29416484,-0.19908592,-0.5589798,0.44827923,0.8135975,-0.09833015,-0.33809033,0.664107,0.5298982,-0.06171549,0.46668246,-0.57770103,-0.3644663,0.19692558,-0.046942737,-0.23618223,0.23768473,-0.37765697,0.2776355,-0.7544497,0.17998126,-0.24249245,-0.6455626,-0.6437895,-0.17574221,-2.9849477,0.27745253,-0.23149848,-0.20343456,-0.06591799,-0.19937316,0.37372166,-0.6027105,-0.5608822,0.12563911,0.12724322,0.71910274,-0.047306027,-0.029238295,-0.24044566,-0.27477008,-0.31792918,0.037640683,0.27531275,0.30965558,0.084317684,-0.47069508,-0.1396746,-0.22748362,-0.33697775,-0.01314273,-0.5784855,-0.47296908,-0.12134685,-0.5940802,-0.28482345,0.61677945,-0.11183548,0.11541703,-0.2616104,-0.051439404,0.034615453,0.28167227,0.01739512,0.041861605,-0.09422293,-0.0015963119,0.04761599,-0.22944307,0.17422818,0.009167449,0.27922556,0.20820658,-0.14403374,0.11654483,0.54586196,0.66590023,-0.14804384,0.8189526,0.56271374,-0.12646647,0.23310633,-0.06626304,-0.21385437,-0.4688235,-0.29078844,0.016380815,-0.42633644,-0.31368592,-0.054191317,-0.4048252,-0.8162417,0.45019862,0.01320254,0.32883435,0.019130968,0.12972671,0.5238944,-0.013098885,0.00054690044,-0.0076106032,-0.19680697,-0.4887823,-0.2553046,-0.7105988,-0.3007794,0.20136467,1.1025233,-0.2160622,0.0444301,0.09081017,-0.2756609,0.04799215,0.1714504,-0.117581464,0.1094624,0.4072205,-0.20865259,-0.5620556,0.29847756,-0.16345319,-0.1976557,-0.51067454,0.10021059,0.60345244,-0.6713569,0.5670597,0.21629328,0.109667875,-0.32925686,-0.68543684,-0.16641411,-0.018563956,-0.29792678,0.58666766,0.30320606,-0.7533375,0.500527,0.19753443,-0.20036982,-0.5813536,0.5942206,-0.06458602,-0.26917467,-0.23065908,0.27973473,-0.0889324,0.040839028,-0.15949298,0.20839046,-0.28597823,0.16410042,0.20290604,-0.11857471,0.16615249,-0.12815024,0.1286224,-0.59466624,-0.15720204,-0.71337545,-0.37864876,0.21087751,-0.054317586,0.21425529,0.03152496,-0.09485587,0.37083167,-0.24890079,0.1860947,-0.13594641,-0.3074545,0.41586855,0.48874733,0.45351237,-0.35563153,0.66399944,0.12998387,-0.030546643,-0.08118699,0.14691636,0.34810767,-0.04518243,0.41010875,-0.15275885,-0.17827506,0.31470266,0.8195478,0.17559026,0.3194481,-0.08895986,-0.041978635,0.105288,0.019656528,0.23331761,-0.088323444,-0.4765565,-0.08052858,-0.31991467,0.15113595,0.38556436,0.07864834,0.28456464,-0.03542041,-0.30878717,0.053488564,0.08398811,-0.011932389,-1.5895138,0.34762046,0.290022,0.72537774,0.5682392,0.0076915105,-0.18728223,0.6746553,-0.25555325,0.12111558,0.36303428,0.14695594,-0.39951465,0.490864,-0.68068326,0.56723,-0.0053238473,-0.006915214,-0.14494221,-0.06341433,0.4510717,0.7620413,-0.16377974,0.1591265,0.0067848503,-0.25190467,0.07640519,-0.33051687,0.037408534,-0.69855195,-0.30116028,0.6649892,0.473988,0.5032396,-0.09779151,-0.090350404,0.089822784,-0.09223119,-0.0043720445,-0.08035647,-0.05814799,-0.1825718,-0.6685166,-0.26852486,0.43279248,-0.03208723,0.061585806,0.06448696,-0.16305253,0.12949483,-0.021673806,-0.040089615,-0.12075604,-0.6777219,-0.09076259,-0.28690025,-0.23812298,0.60563487,-0.3782791,0.18780512,0.23074862,0.14171857,-0.18617351,0.054215178,-0.029550398,0.7588137,-0.07766433,-0.12729253,-0.42126766,0.17923437,0.1884158,-0.15410659,-0.27870834,-0.3356207,0.09975152,-0.57211655,0.30378526,0.027265104,-0.30319482,0.13100106,-0.13078122,0.0894626,0.4687537,-0.12406371,-0.22901174,-0.012921095,-0.06659362,-0.23648925,-0.20893249,-0.15459304,0.3626427,0.09691081,-0.0101031745,0.02955673,-0.078589104,-0.018674692,0.30131328,0.1925568,0.29101536,0.36985353,0.0135580385,-0.40229687,0.028004888,0.22917925,0.5623917,0.05845158,-0.2527799,-0.34953907,-0.46141407,-0.36201292,0.11713273,-0.0115176635,0.3934656,-0.013256271,0.015638147,0.8167068,0.03965881,1.1002787,-0.028019099,-0.44634208,-0.009166143,0.4521879,-0.053998265,0.007638291,-0.2998129,0.91360813,0.46300173,-0.20192862,-0.16062933,-0.3993337,0.105019145,0.16923085,-0.1257182,-0.2208269,-0.105788745,-0.63454694,0.02402544,0.32696092,0.26360562,0.31565654,-0.049990334,0.03533645,0.21795647,-0.0781645,0.32739064,-0.45792967,-0.008119106,0.19453113,0.19281273,0.08989143,0.08978045,-0.41191167,0.2632028,-0.528426,0.0805056,-0.25072697,0.16261435,-0.12162067,-0.42119226,0.23368265,-0.14648557,0.3930875,-0.45288196,-0.3255969,-0.17087327,0.59543324,0.12031088,0.20172651,0.5764755,-0.31446058,0.04293289,0.04649327,0.44334584,0.92600334,-0.22203176,-0.012721514,0.3541242,-0.27665812,-0.7340645,0.17781143,-0.26418775,0.27330187,0.018728307,-0.26817957,-0.41293296,0.32797006,0.12928452,0.041309293,0.10371711,-0.6240647,-0.1529554,0.27177116,-0.14196669,-0.31994587,-0.3877656,0.16468695,0.42312005,-0.24948142,-0.39454424,0.07301654,0.32169622,-0.0495797,-0.533247,-0.062057387,-0.3767533,0.2859914,0.17925933,-0.29454195,-0.07493493,-0.09938048,-0.40678832,0.18292229,0.22429164,-0.24451932,0.12538293,-0.294115,-0.09597182,0.8558966,-0.20725252,0.10897642,-0.52474946,-0.40564117,-0.6957699,-0.31047317,0.30402228,0.07826466,0.0020406723,-0.7552049,-0.07433078,-0.07947232,-0.032458283,-0.11634214,-0.21879418,0.599448,0.14488348,0.3131708,0.068676315,-0.7849358,0.23831207,0.09122174,-0.11496596,-0.4887461,0.53063214,0.03360359,0.73469555,0.1447256,0.22481711,0.1470408,-0.5023841,0.1290802,-0.22877616,-0.18585502,-0.6613239,0.09506822,913 +315,0.3677995,-0.20270914,-0.7358462,-0.11849105,-0.11465642,0.09756983,-0.26647398,0.26688033,0.060742054,-0.58052915,0.13968796,0.02723244,-0.09971419,0.19802967,-0.03567486,-0.47556677,-0.032692753,0.1833528,-0.5217727,0.5251777,-0.61626834,0.4207745,-0.10180949,0.19422837,0.051430877,0.31167284,0.010629456,0.19159164,-0.13865267,-0.09241365,0.17817558,0.303864,-0.43016022,0.20322101,0.08332356,-0.45760533,-0.2198122,-0.26284713,-0.33935675,-0.5212791,0.2178501,-0.74731326,0.55764514,0.015188352,-0.20271476,0.17187375,0.2577762,0.29084784,-0.3020987,0.13858399,0.14853004,-0.29034567,-0.20585082,-0.34352043,-0.16981909,-0.22055626,-0.585923,0.048620462,-0.5828988,0.04157429,-0.24202043,0.17382485,-0.3658611,0.0883971,-0.35582626,0.43865046,-0.49866873,-0.07994409,0.19355613,-0.07960708,0.2901947,-0.5427962,-0.13343999,-0.11420823,0.0059760334,-0.35107213,-0.34721556,0.22418477,0.22958733,0.48051327,-0.01488416,-0.15043242,-0.4033914,-0.23945467,0.31314194,0.43561035,-0.13961665,-0.190211,-0.32235643,-0.09604652,0.18776041,0.15645064,0.0082511185,-0.32399192,-0.08459498,0.055546466,-0.23164867,0.3428227,0.55411124,-0.26969114,-0.16707209,0.43692267,0.665614,-0.024958221,-0.22472961,0.23181272,-0.019025998,-0.4273424,-0.26111788,0.1644137,0.023404999,0.4435654,-0.21089596,0.2143274,0.503955,-0.31146362,-0.13689372,0.31326395,0.13295165,-0.008872652,-0.3465896,-0.2734405,0.1913347,-0.580578,-0.01046611,-0.20016076,0.56717485,-0.04906068,-0.73304206,0.38614905,-0.48073986,0.13751313,-0.11090568,0.610693,0.7289838,0.50096565,0.13797612,0.66670674,-0.37866768,0.06482918,-0.12084573,-0.32086167,0.06475191,-0.010323143,-0.056766566,-0.69151664,0.10421093,0.07301482,0.022587113,0.034705576,0.66782266,-0.37541825,-0.14627251,-0.01233238,0.6126472,-0.40187803,-0.00092287065,0.7128988,1.0341232,1.1168945,0.14840953,1.1465067,0.23521128,-0.13610823,-0.081484206,-0.23841757,-0.6994077,0.3199033,0.28822067,-0.16163383,0.3800996,0.010313044,-0.0035391252,0.5452509,-0.29834,0.15702938,-0.08892848,0.2891102,-0.11368539,-0.15744396,-0.3058788,-0.24301186,0.06290891,0.1140258,0.12636882,0.29941547,-0.35666314,0.43379492,0.23399691,1.5246087,-0.0885131,0.20885691,0.08476225,0.24662304,0.19713154,-0.3047963,-0.051215615,0.1616282,0.3682508,0.09286092,-0.5820065,0.03596312,-0.07366764,-0.6056729,-0.2765811,-0.33079913,0.030607883,-0.4006497,-0.50697744,-0.067114964,-0.031196969,-0.5235334,0.3359266,-2.588998,-0.19321045,-0.121130206,0.24127324,-0.13678977,-0.46844834,-0.2096139,-0.39750415,0.47530332,0.23731993,0.3916645,-0.58468944,0.467333,0.44286278,-0.33052203,-0.02781679,-0.60072714,-0.106267855,-0.1666206,0.14421968,0.06474505,-0.12248561,0.016587079,0.22723444,0.45994198,-0.47546548,0.12832077,0.28029364,0.28450242,-0.014399076,0.39128685,0.02338467,0.5396577,-0.38812727,-0.3343963,0.42264616,-0.4641779,0.07926867,-0.046029624,0.16319631,0.27040577,-0.5466496,-0.89424896,-0.5939969,-0.11977456,1.1825782,-0.293133,-0.37560555,0.16662788,-0.4568644,-0.566519,-0.021478863,0.25446558,-0.29657206,-0.011199995,-0.9147073,0.17148843,-0.21674706,0.19474907,-0.1034119,0.07431717,-0.41904965,0.48207793,-0.022371883,0.70309937,0.5384033,0.1529683,-0.46895558,-0.31172153,0.11762928,1.0911019,0.42427,0.12759286,-0.27915376,-0.12302272,-0.24533828,-0.005984763,0.27254397,0.36851442,0.5961661,0.0887657,0.2039538,0.28559726,-0.038665485,-0.07636959,-0.29937324,-0.26589176,-0.01478279,0.19837971,0.6152417,0.4751396,-0.11822455,0.3839708,-0.07727257,0.19474371,-0.29774156,-0.5621525,0.41487166,0.86902547,-0.09918329,-0.44483358,0.6865143,0.5789999,-0.35862365,0.5187564,-0.5230914,-0.31107318,0.20804943,-0.22366025,-0.22468857,0.24035184,-0.4461324,0.21536082,-0.89774555,0.19830431,-0.30640706,-0.6435193,-0.55006194,-0.27873343,-3.1193593,0.1695525,-0.122893825,-0.13781983,0.038169798,-0.2024157,0.33663946,-0.5861359,-0.61744434,0.06855782,0.14025424,0.74153084,-0.043813042,-0.09467627,-0.13685554,-0.18998976,-0.17116831,0.17283176,0.07948094,0.2205781,-0.043511476,-0.54433435,-0.13113423,-0.24052788,-0.48338223,-0.117778346,-0.53433865,-0.34118265,-0.07694904,-0.43057054,-0.4973999,0.5940207,-0.30809453,0.033461574,-0.22073932,-0.028104817,0.08824679,0.48030108,0.033892397,0.30662748,0.099458024,-0.083449624,0.13563754,-0.31376126,0.07022424,-0.035706267,0.08186164,0.5688824,-0.17067403,0.1723334,0.50842136,0.7141233,0.05818517,0.88823,0.5096426,-0.13879697,0.32303265,-0.35616022,-0.15176061,-0.5648878,-0.37362975,-0.12975805,-0.51596457,-0.42081082,-0.0030136586,-0.31051537,-0.9038721,0.53836465,0.08010103,-0.006410527,-0.086571105,0.3515833,0.29621252,-0.106187776,-0.084924854,-0.21838503,-0.19703637,-0.29797044,-0.41582984,-0.72194993,-0.53050876,-0.030285845,1.2522156,-0.15550508,0.061507735,0.04361816,-0.0829316,-0.029879402,0.38175932,0.17162517,0.32272342,0.29368085,-0.10678436,-0.48104572,0.24824886,-0.17777987,-0.32384953,-0.67486596,0.105514556,0.74707806,-0.5802856,0.53396946,0.3880588,0.16358696,-0.19435903,-0.6828172,-0.03721048,0.13133423,-0.2650431,0.6470636,0.35001394,-0.88406175,0.52650094,0.4172889,-0.21755616,-0.6954004,0.56704277,0.0022679965,-0.07173126,-0.15091158,0.37900004,-0.18296392,0.011069016,-0.21990551,0.16166203,-0.3530463,0.25716284,0.32806972,-0.028608467,0.3380237,-0.36273292,-0.15241887,-0.6186336,-0.10781917,-0.53735435,-0.13101342,0.15756266,-0.029613435,0.2254902,0.308579,-0.19329469,0.4548815,-0.3850802,0.030646503,-0.07781218,-0.36686122,0.27459425,0.4482271,0.23897089,-0.28853875,0.6604528,0.010281102,0.0025819181,-0.33628574,0.108146794,0.6023937,0.05470585,0.5027226,-0.0060555856,-0.12989661,0.40207958,0.8278439,0.2491712,0.37140286,0.24237886,-0.15564531,-0.0020888646,0.11580858,0.26960003,-0.062028266,-0.27603582,0.052601464,-0.053931538,0.32459226,0.52111495,0.0416319,0.6284491,-0.18349586,-0.18925115,0.057099115,0.22465767,-0.13467526,-1.4402139,0.5687138,0.15571252,0.63905805,0.62351793,0.10574996,0.13380685,0.35261768,-0.42756864,0.14902586,0.2603316,-0.14803705,-0.3845951,0.520416,-0.78499275,0.5126977,0.040426724,0.109570056,0.02749091,-0.107375145,0.62233794,0.87554806,0.020632155,0.23645642,0.11042306,-0.30957374,0.2075319,-0.26463482,0.05254955,-0.4950154,-0.26540294,0.9418915,0.27992868,0.5099422,-0.138256,-0.04510965,0.22588424,-0.09502697,0.15611601,0.044671185,0.23013668,-0.1465907,-0.5556785,-0.23421392,0.49545687,0.17501512,0.12168304,0.23902825,-0.26777062,0.27625504,0.08975924,5.741914e-05,-0.012667402,-0.48312765,0.037647106,-0.3628358,-0.53175366,0.2722967,-0.40844128,0.22997561,0.20905113,0.090477385,-0.4108728,0.29691112,0.18623374,0.6461595,-0.07863327,-0.08885152,-0.09128233,0.29980385,0.28561553,-0.0960028,-0.18829224,-0.2758141,0.24147753,-0.8086258,0.36816946,-0.1662912,-0.46644288,0.34467018,0.006483223,0.0074733696,0.49395484,-0.28679687,-0.32067972,0.1806293,-0.14105406,-0.30581027,-0.43304306,-0.16792887,0.32812914,0.018065779,0.0006468296,-0.08448648,-0.028622698,-0.08056946,0.28758752,0.19647928,0.2755538,0.42205957,0.14216277,-0.5252786,-0.061222915,0.20177121,0.4832873,-0.06414883,-0.01249302,-0.32806903,-0.42207292,-0.16096407,0.23489715,-0.14272591,0.22856261,0.055617783,-0.31595346,0.90111697,-0.1563371,1.0856537,0.120582424,-0.3887793,0.13137044,0.36585945,0.025171006,-0.1459918,-0.17684917,0.9317866,0.58842593,-0.12600479,-0.23600303,-0.44425452,-0.068977885,0.10622649,-0.23849821,-0.36399633,-0.019978713,-0.73570454,-0.23843284,0.2167642,0.18545713,0.097232595,-0.15135893,0.19633046,0.32042155,0.019132806,0.025952585,-0.5282822,0.1428327,0.34866175,0.2336021,-0.06620562,0.011261312,-0.46373138,0.3095969,-0.6294411,0.109144025,-0.033054825,0.09440837,0.04914736,-0.19770902,0.318665,0.09084125,0.054167334,-0.22453594,-0.21278232,-0.1814656,0.51559275,0.008776586,0.09221731,0.8150585,-0.27180442,0.24208139,0.07062044,0.400329,1.0885146,-0.19334705,0.02138151,0.324034,-0.26292342,-0.770274,0.25252792,-0.34136245,0.2201534,-0.02945995,-0.37305185,-0.49357042,0.285412,0.09224645,0.03246329,0.18303002,-0.37847763,-0.1178297,0.24303026,-0.29095522,-0.1888972,-0.3598776,-0.11462583,0.57219964,-0.20622468,-0.29108107,0.07828101,0.4164322,-0.2510456,-0.43003088,0.03638145,-0.34182325,0.25497857,0.12927598,-0.2453948,0.0811427,0.17103125,-0.3890503,0.1063554,0.43294924,-0.22157246,0.06768618,-0.34137923,-0.13604549,0.7573759,-0.34910393,0.10155233,-0.4441842,-0.60261357,-0.8178428,-0.19276682,0.41881326,0.052629273,-0.11108477,-0.70650953,-0.0020315489,-0.010873961,-0.13300519,0.005606691,-0.41090053,0.5146722,0.07835876,0.13818555,-0.0242686,-0.61997205,0.091017984,0.12937325,-0.1482181,-0.42328194,0.56219697,-0.10547383,0.6887853,0.1614324,0.107003726,0.34975183,-0.7420813,0.23481494,-0.14566745,-0.116588,-0.7366069,-0.15770312,917 +316,0.3205113,-0.026752114,-0.5194866,-0.24391694,-0.32181498,0.20523065,-0.17016196,0.21809898,0.19795407,-0.1586272,0.07600939,-0.29117325,-0.010020864,0.4307704,-0.13873056,-0.7234407,0.11541431,-0.01057239,-0.50525063,0.24011286,-0.5029926,0.4500457,0.18621962,0.2414662,-0.10139048,0.32884076,0.39275798,-0.10684649,0.02503117,-0.15297024,-0.17864746,0.10895432,-0.5500275,0.20513092,-0.13464758,-0.25568634,0.07842432,-0.38649377,-0.26600358,-0.5991876,0.39979604,-0.7170725,0.4228116,-0.050664887,-0.40113768,0.07149574,0.08541247,0.25624982,-0.3186218,0.10865656,0.22291976,-0.279552,0.01241103,0.038245663,-0.40145794,-0.75830185,-0.5136675,0.042891487,-0.6632336,-0.21710531,-0.20793091,0.2914639,-0.31606892,0.079973854,-0.038614783,0.21239503,-0.43011087,-0.18094851,0.24613155,-0.2800569,0.20382147,-0.39252272,-0.047885336,-0.09932385,0.16138433,0.019247206,-0.109983176,0.2300231,0.5261437,0.5005413,-0.0019517422,-0.28996086,-0.19099003,-0.2357159,-0.054231778,0.63270444,-0.0037103256,-0.35845163,-0.2501717,-0.10816596,0.2670436,0.17272943,0.14262572,-0.18554927,-0.18777646,-0.013241311,-0.32376412,0.23931023,0.37832114,-0.5366256,-0.18086673,0.42421785,0.43245134,0.10755723,-0.1571113,0.27846205,0.047114063,-0.4669112,-0.10351137,0.123092525,-0.25362694,0.6661854,-0.22348192,0.3025451,0.8826389,-0.18201883,0.054822557,-0.03149397,-0.1651617,-0.2829437,-0.09384306,0.064080484,0.10028173,-0.5944196,-0.0121258,-0.20667553,0.812462,0.20660584,-0.7041666,0.38665736,-0.39581135,0.14763226,-0.13956961,0.66859156,0.70855147,0.25061926,0.12830104,0.8153875,-0.48057,0.052049406,0.05578501,-0.38361648,0.1293252,-0.14035171,-0.13355139,-0.57035935,0.14327782,0.21244714,0.04813821,0.00053094624,0.2735822,-0.43337065,-0.03162145,0.101060264,0.6685689,-0.39555684,-0.18653803,0.72906786,1.0797212,0.86551434,0.04514184,1.266026,0.27282375,-0.22905485,-0.044914637,-0.25674686,-0.46876898,0.14288399,0.46632302,0.5092022,0.37663853,0.110752575,0.095939316,0.3297536,-0.12762053,0.0015674352,0.04142266,0.13838951,-0.00017338296,-0.14462872,-0.44935513,-0.25493944,0.2373833,0.08468636,0.008883119,0.253726,-0.084886596,0.6153673,0.18835531,1.1687022,0.049370274,0.14842777,-0.085329674,0.5313145,0.20894289,-0.02678315,-0.06217424,0.37993297,0.1511218,-0.021281008,-0.43200856,-0.028194094,-0.31905186,-0.5286129,-0.20089273,-0.3146499,-0.14002034,-0.1729276,-0.45952708,-0.11585279,0.08464783,-0.30971894,0.50917745,-2.6702266,-0.1989655,-0.2542022,0.21241789,-0.22580214,-0.21431176,-0.10000873,-0.4449068,0.2747535,0.57012594,0.37774727,-0.67744166,0.44495448,0.4071654,-0.3029501,-0.12371798,-0.57723045,-0.09199303,-0.1675039,0.38258514,0.10029045,-0.23668177,-0.14604948,0.42807382,0.7500206,0.08371095,0.03549832,0.05934493,0.46968612,-0.023426192,0.45079342,0.19016938,0.5739979,-0.07171165,-0.1382774,0.2940373,-0.43422958,0.4314786,0.07039812,0.1964896,0.2996189,-0.389944,-0.86168766,-0.6214834,-0.346188,1.1701847,-0.39876458,-0.3607751,0.39778525,0.10141737,-0.22993396,0.112525225,0.311512,-0.038043402,0.21048266,-0.5599372,0.11264919,-0.09812068,0.058906198,-0.03279034,0.07022217,-0.20759518,0.794444,-0.18897197,0.40799332,0.29540417,0.15668415,-0.037105083,-0.3773016,-0.060266323,0.8920453,0.497352,-0.032109458,-0.17246242,-0.1985109,-0.27402648,-0.26353118,0.11283756,0.41444713,0.8431406,0.08530211,0.13977996,0.26228523,-0.07563378,0.042191695,-0.035429176,-0.37871906,0.0531754,0.020144071,0.65238434,0.59541184,-0.27972087,0.34762466,-0.082001574,0.29560232,-0.15929084,-0.53749436,0.4204041,0.7690146,-0.13548893,-0.17740999,0.4755799,0.47117087,-0.44977856,0.40055072,-0.5702196,-0.2874547,0.79126203,0.022497552,-0.4009505,0.11541759,-0.3389464,0.052147318,-1.0391107,0.35415137,0.05779384,-0.5963938,-0.4325684,-0.25105676,-3.8212533,0.16915105,-0.14612597,-0.14858979,-0.15062039,-0.043794874,0.37410468,-0.56059664,-0.51902527,0.043743897,-0.0017651637,0.468879,-0.08946754,0.22017889,-0.30994102,-0.14178102,-0.2495318,0.34005347,-0.019098138,0.22266573,-0.14100687,-0.35870656,0.11624008,-0.47412872,-0.4934155,-0.05152433,-0.58694553,-0.6824415,-0.18358779,-0.4514441,-0.13059899,0.68657976,-0.27479416,-0.072584026,-0.30623195,0.06436941,-0.28114453,0.30706793,0.25907242,0.076958254,-0.067848094,0.0039566117,-0.044096116,-0.4048346,0.18367305,0.1666224,0.45475343,0.38686383,-0.15181224,0.15048231,0.6847989,0.52275145,-0.0038554072,0.7158403,0.08032681,-0.11566994,0.41894644,-0.26671284,-0.36817247,-0.7314751,-0.4284816,-0.13574524,-0.44059753,-0.52789503,-0.15693049,-0.23378025,-0.6813982,0.33455405,0.07335984,0.104361095,-0.2302486,0.30342662,0.34770048,-0.2237433,-0.013587522,-0.22214638,-0.2175868,-0.5632064,-0.3995881,-0.6821721,-0.5831651,0.19803964,1.0552088,-0.0047594863,-0.09108629,-0.09438817,-0.24142942,0.014835682,0.005146257,0.36858636,0.21391988,0.16442555,-0.25790575,-0.68753207,0.58812654,-0.15782382,-0.08897182,-0.62039363,-0.19270691,0.52142656,-0.5787892,0.43686435,0.47832006,0.31453797,0.32453588,-0.604709,-0.18265705,0.018688878,-0.1783217,0.5183457,0.11844384,-0.5057917,0.5656137,0.10865342,-0.15064004,-0.49491692,0.46196216,-0.010049725,-0.0756506,0.09332126,0.40169278,0.0687918,-0.19335862,-0.2230943,0.2207301,-0.6349918,0.27885777,0.47029406,0.054836046,0.7342228,-0.07916436,-0.26409912,-0.59149206,-0.22038676,-0.45504147,-0.08486835,-0.050301157,-0.023661708,0.055342697,0.08963833,-0.0008862654,0.42241913,-0.45921087,0.20985264,-0.011815751,-0.28002402,0.51707804,0.50052065,0.414591,-0.4657243,0.6905206,0.13257693,-0.017327992,-0.21089515,-0.07037613,0.55628186,0.22123197,0.32466802,0.016278887,-0.14402083,0.1623883,0.78009915,0.25571266,0.39546824,0.12176197,-0.18253137,0.32886323,0.1813207,0.09366183,0.026399724,-0.32642186,-0.04052667,0.05272003,0.089471355,0.44533527,0.07015261,0.4635538,0.021001657,-0.19281092,0.23066075,0.009445178,-0.11498109,-1.0244625,0.23880698,0.47427782,0.628409,0.3603583,-0.10373085,0.06784188,0.5895568,-0.38081345,0.05088779,0.3175163,0.10417778,-0.5405127,0.61565477,-0.5755156,0.5333794,-0.26514775,-0.016377326,0.23260188,0.06948315,0.3295143,0.8799018,-0.08447354,-0.024724016,0.01181827,-0.3896079,0.15855001,-0.40363467,0.10670081,-0.44970518,-0.22929968,0.6541987,0.31069186,0.16391736,-0.1896081,-0.11411929,0.14834571,-0.064632885,0.17394222,-0.16786991,0.06782161,-0.32381615,-0.59767246,-0.4408376,0.577928,0.19881423,0.09340563,0.07918482,-0.45967835,0.3379684,-0.119034655,-0.025520165,-0.023863683,-0.49299172,0.091970414,-0.24853906,-0.62043214,0.38166025,-0.32919744,0.4147391,0.15187578,-0.02762446,-0.23742637,0.015885433,0.15510072,0.6575038,0.045615498,-0.17187235,-0.36042964,-0.0954247,0.29471138,-0.35889047,-0.23684005,-0.40298596,0.12104106,-0.370289,0.45753974,-0.2800454,-0.34261158,-0.105029486,-0.3234866,-0.040129606,0.16250178,-0.23607506,-0.12338409,0.24235229,0.14257248,-0.22549443,-0.0024683713,-0.36759573,0.36765653,0.029907418,-0.22280788,0.008283397,-0.039039858,0.022268414,0.2769899,-0.031027054,0.11685183,0.1746886,-0.24511372,-0.4229994,-0.08262802,-0.060709614,0.28342324,0.0011181514,-0.033184282,-0.22435111,-0.3957607,-0.2069287,0.13906308,-0.16372363,0.18191756,0.1443591,-0.26307958,0.8841148,0.10090601,1.2557317,0.12069712,-0.4676738,0.0965806,0.6531067,0.1077478,0.12646145,-0.3017926,0.9471212,0.6065758,-0.2359222,-0.38957748,-0.4752899,-0.08932594,0.24290092,-0.2701977,-0.37235054,-0.1171256,-0.6624931,-0.17162038,0.2331199,0.2362302,0.25427327,-0.010155131,-0.031230783,0.12679672,0.10962487,0.5660753,-0.53269285,-0.21660344,0.38543478,0.06506636,-0.11602398,0.039596852,-0.289118,0.47441348,-0.69028693,0.018339077,-0.48070872,0.11720917,-0.17072369,-0.41386953,0.23625693,-0.08118732,0.43076655,-0.177661,-0.30274704,-0.17696747,0.6115049,0.34429625,0.38227966,0.63862354,-0.2490357,-0.12482932,0.057608422,0.436283,1.4034973,-0.13098381,-0.030753434,0.34674293,-0.38381493,-0.55403876,0.15930894,-0.5063389,0.14673106,-0.1337783,-0.4778657,-0.4462663,0.37108943,0.15863006,-0.023871029,0.18248068,-0.36565638,-0.20588198,0.32641163,-0.47558537,-0.37484682,-0.31289062,0.36035812,0.7484831,-0.3466709,-0.34654891,0.028267639,0.3116785,-0.3018773,-0.69115025,0.16054961,-0.16071758,0.44840446,0.04306786,-0.4084192,0.13711624,0.28120574,-0.2599652,0.35178146,0.35871306,-0.35048994,0.099072106,-0.29885188,-0.018967453,0.9407337,0.08475057,0.06895426,-0.9198694,-0.50622904,-0.959784,-0.42459583,0.44316503,0.11261358,-0.10474115,-0.38413396,-0.21899526,-0.13091293,0.061771832,0.16456315,-0.43755278,0.35933763,0.1221124,0.574401,-0.008505297,-0.8307111,-0.07833711,0.06386331,-0.17733309,-0.5502411,0.51702964,-0.24145669,0.66832584,0.18320395,0.0042817434,0.16130833,-0.52767074,0.3273648,-0.31944835,-0.18928975,-0.7477504,0.1282694,920 +317,0.26562786,-0.13274398,-0.5441418,-0.18539406,-0.3403359,0.1350943,-0.31093884,0.21328121,0.24431969,-0.14541778,-0.14053842,0.017885549,0.15125707,0.39441967,-0.03480705,-0.5492435,-0.17659406,0.24669951,-0.75791156,0.47920057,-0.5295413,0.17549807,-0.06945189,0.41328558,0.086157545,0.4280515,0.12645046,-0.116577946,0.08249054,0.092588395,0.12448208,0.37031254,-0.5048067,0.08370818,-0.3034775,-0.28989857,-0.029451102,-0.3540607,-0.24542148,-0.5552689,0.089106515,-0.86506504,0.51380044,0.016272092,-0.096244484,-0.09548143,0.3416446,0.43953452,-0.42987156,0.05157364,0.2611427,-0.1948731,-0.26212022,-0.27729052,0.059144113,-0.43889445,-0.37190762,-0.17051788,-0.60729146,-0.26638705,-0.13709575,0.20947978,-0.20142587,0.026968349,-0.03197955,0.15111846,-0.44324842,0.11901607,0.3737969,-0.25118938,0.30933297,-0.47490484,0.09574903,-0.023721447,0.5757153,-0.054627817,-0.29512313,0.2943986,0.37143892,0.43318108,0.14807853,-0.2366643,-0.21282856,-0.10862262,0.22985204,0.38463193,-0.24946503,-0.22749491,-0.3095823,0.042003527,0.23551822,0.36506203,-0.14216366,-0.3360934,-0.045650378,-0.08164633,-0.072892085,0.52284664,0.48501188,-0.27676162,-0.32704705,0.31260636,0.6205225,0.41934937,-0.2836773,0.13603884,0.04070456,-0.51334226,-0.20366168,0.14946489,-0.010516314,0.37623802,-0.050835248,0.1648047,0.89269364,-0.054700416,-0.020480545,-0.030559985,-0.09578513,-0.12066985,-0.35260984,-0.035002638,0.110316284,-0.62791985,0.03722047,-0.1663523,0.4443892,0.08157025,-0.6082465,0.34083685,-0.66040957,0.19366251,-0.15092486,0.5587051,0.7486219,0.35853094,0.10233439,0.8908678,-0.28750336,0.23203398,-0.17909555,-0.39836523,0.18092278,-0.1449628,0.018098664,-0.547,0.14976342,-0.056424387,0.19509767,0.117227726,0.18093039,-0.4744216,-0.08010847,0.25588593,0.7856756,-0.32322782,0.012613845,0.62244934,1.1266754,0.8053728,0.007451356,1.379546,0.2280166,-0.2758127,0.14675385,-0.33468124,-0.6165777,0.16234563,0.25925684,-0.081258155,0.3810465,-0.07834586,-0.0007926861,0.31883845,-0.47394568,0.10254093,0.05706764,0.29604885,0.23364069,-0.015893197,-0.2942913,-0.031856764,-0.068700075,0.015374522,0.20698503,0.104730085,-0.18124202,0.24296379,-0.08877761,1.2128168,-0.028250337,0.083823204,0.09974046,0.5422306,0.32719073,-0.15941516,-0.063957445,0.37205628,0.41689217,0.04813564,-0.51691383,0.36517614,-0.28313032,-0.49563885,-0.14501013,-0.39983064,-0.1311045,-0.019744894,-0.42999324,-0.0959089,-0.025038607,-0.26453876,0.50839746,-2.8963048,-0.3959001,-0.12836787,0.35182992,-0.25471097,-0.044471093,-0.30858505,-0.3177091,0.27218753,0.25960314,0.41509277,-0.6059444,0.6572764,0.55008894,-0.6090475,-0.14540532,-0.605812,-0.067384236,-0.027241392,0.35104376,0.049089488,-0.15866493,-0.017058562,0.2918039,0.5911621,-0.0405504,0.10008457,0.49026135,0.3397821,0.09828419,0.5377864,-0.09701063,0.4567966,-0.33145177,-0.22679025,0.30901414,-0.21552268,0.31275496,-0.08960194,0.085009925,0.51430345,-0.34055698,-1.0479771,-0.60116756,-0.23270592,0.9255086,-0.39944693,-0.42373574,0.1667738,-0.36239448,-0.09267297,0.05902395,0.60852146,0.1094579,0.19236201,-0.82627416,0.04986108,-0.074243836,0.15457913,0.08261168,-0.055743407,-0.36515948,0.70451504,-0.07277528,0.6046888,0.27721345,0.24132068,-0.13843086,-0.36282158,0.15990295,0.67957217,0.24114297,0.038474225,-0.09887548,-0.37354177,-0.0481979,-0.12044287,0.05497688,0.57319844,0.59239346,-0.026848102,0.2911783,0.31727275,-0.13526948,-0.05843303,-0.15639077,-0.21502915,0.08865254,0.02086896,0.44344074,0.8168077,-0.18829697,0.42255163,-0.07996351,0.31628257,-0.083099976,-0.56438506,0.67618,0.5067331,-0.24275804,-0.12521262,0.5453246,0.42048123,-0.41064292,0.43583584,-0.690131,-0.2999781,0.63880414,-0.19320276,-0.38385174,0.2146903,-0.24132703,0.12147362,-0.76389974,0.23625289,-0.24176067,-0.38243258,-0.38078243,-0.1283446,-3.595056,0.18533717,-0.25108334,-0.110985234,-0.20423062,0.0456153,0.36832038,-0.5230549,-0.5289663,0.15010996,0.2601387,0.70124775,-0.20969187,0.10562334,-0.3361743,-0.14132434,-0.031385597,0.24754563,0.035467483,0.25763372,-0.2186246,-0.43083516,-0.04487284,0.08006746,-0.5031571,0.16122827,-0.47344044,-0.3225511,-2.5167068e-05,-0.41806832,-0.12060252,0.49613872,-0.44210586,-0.05573703,-0.20549828,0.105850205,-0.18689035,0.35898802,0.23010717,0.06593166,0.24077418,0.09092019,0.038370274,-0.27899852,0.52473295,-0.055417538,0.24478902,0.091150954,0.08243534,0.17911103,0.53780645,0.4642802,-0.29213136,0.9741469,0.46286392,0.044108517,0.2628275,-0.21893282,-0.16710907,-0.44922325,-0.37350228,-0.20840994,-0.45048842,-0.48211095,-0.019344259,-0.3216757,-0.8965558,0.59071666,0.039500967,0.24179251,-0.054300148,0.14137986,0.4208596,-0.23738469,0.018539647,-0.095868744,-0.21935783,-0.4396787,-0.2146554,-0.60608786,-0.47703138,0.065291405,0.7320915,-0.4388574,0.08514541,-0.056883223,-0.16964166,-0.05980493,0.24008724,0.16146068,0.25743577,0.52022475,-0.046675943,-0.6032075,0.36079174,-0.19642605,-0.28953025,-0.5528095,0.08043289,0.6836465,-0.71545565,0.6782229,0.42653763,0.10531128,-0.11795204,-0.5058319,-0.24316192,-0.15426971,-0.33621007,0.48295376,0.0003029724,-0.9147962,0.47238472,0.34499237,-0.37832043,-0.64571327,0.6128751,-0.13115266,-0.17991526,-0.009657814,0.24783128,0.1205071,-0.10213779,-0.20194343,0.25011066,-0.38988507,0.25811937,0.09151384,-0.16975528,0.33784828,-0.091290794,-0.19060917,-0.699109,-0.10863107,-0.48116198,-0.23243402,0.32848218,-0.057569947,-0.035277963,0.12622084,0.12054639,0.37688828,-0.32308277,0.038145524,-0.023116564,-0.38548073,0.14688653,0.45195532,0.35498458,-0.37590617,0.51655865,0.03217819,-0.23347534,0.24481522,0.031172175,0.4118205,0.07932541,0.51383597,-0.16638009,-0.08833912,0.40846023,0.718397,0.079174265,0.3015341,0.037602566,-0.13713501,0.3526722,0.054600988,0.09814164,-0.10757174,-0.40228876,0.020654429,-0.089565545,0.32782033,0.4194253,0.4026708,0.3516229,0.061116442,-0.28830677,0.050997607,0.21573664,0.087942936,-1.2391528,0.53052837,0.38511318,0.84047073,0.45420042,0.056869064,-0.057100985,0.6006407,-0.08235722,0.06814628,0.37507424,0.006794813,-0.45577753,0.66174805,-0.72261304,0.4520976,-0.18366064,-0.05310034,0.19614728,0.16588174,0.33214703,0.8392719,-0.12709858,0.075293295,0.053643312,-0.21645913,-0.023066262,-0.21856192,-0.0044558444,-0.46676287,-0.35436946,0.749992,0.55645484,0.4365855,-0.31255886,-0.0012837887,0.052384786,-0.076928824,0.27496794,-0.065004416,-0.066863194,0.060655307,-0.63577896,-0.208113,0.52532446,-0.041124996,0.12800859,-0.12415015,-0.29756805,0.029145433,-0.30262563,0.06462714,-0.07772374,-0.59445924,-0.20084603,-0.26705456,-0.5922732,0.57421696,-0.33045813,0.13885458,0.24241191,-0.11749982,-0.15542914,0.5312442,-0.15245867,0.84342307,0.06769975,-0.22439721,-0.31660047,-0.0101181185,0.2176447,-0.26304382,-0.056199297,-0.5285324,0.10234591,-0.5523263,0.6053922,-0.14178784,-0.40511286,0.27392796,-0.2575224,0.03307705,0.51522595,-0.120307714,-0.20898002,0.22944178,-0.25399318,-0.44704342,-0.1328656,-0.39689848,0.24587448,0.24755883,0.036377627,-0.1640797,-0.29092872,-0.16276315,0.48255503,0.080455825,0.48740232,0.3520757,0.0045064925,-0.11511149,0.10458102,0.33303005,0.4396233,0.13070677,-0.029846955,-0.2969824,-0.44935745,-0.28863162,0.093084596,-0.059158955,0.099046014,-0.017301567,-0.13899827,0.8649834,-0.080561645,1.0672916,0.17132218,-0.28379026,0.27649483,0.4264049,-0.09638456,0.017025867,-0.5345589,0.64742166,0.5471163,-0.07125926,-0.04938456,-0.39837372,-0.1340157,0.25203934,-0.27186114,-0.008019733,-0.070318066,-0.7063172,-0.42918122,0.22856542,0.12732647,0.095747404,-0.09641695,0.0028609396,-9.4203155e-05,0.10721842,0.2440122,-0.797751,-0.2302168,0.21815631,0.40951595,-0.14501935,0.07950505,-0.34047934,0.55464995,-0.5549084,0.037441,-0.47269443,0.08498474,-0.3249568,-0.41686803,0.0322661,-0.0914348,0.29314074,-0.113803014,-0.31871936,-0.15377872,0.44615206,0.09248458,0.1468462,0.59442556,-0.2951088,-0.009694659,0.064681634,0.47183022,1.0628611,-0.5387293,-0.05378078,0.38144416,-0.39862823,-0.5397218,0.34375745,-0.55181247,0.05128118,0.068687424,-0.4604214,-0.3282846,0.33040276,-0.009534216,0.10817378,-0.006409148,-0.6319635,0.0035378614,0.24693625,-0.21945204,-0.28451934,-0.1123977,0.29474354,0.7953609,-0.2568668,-0.2536178,0.15145943,0.40300426,-0.28972495,-0.47394735,0.11464475,-0.39424637,0.31003076,-0.032231938,-0.22978726,-0.039678466,0.0614041,-0.5122024,0.091793306,0.2381447,-0.2919281,0.0649726,-0.17195085,-0.0150435055,0.90498793,-0.21670322,-0.066716895,-0.65565324,-0.49537036,-0.9260235,-0.33264914,-0.006851077,0.30312178,0.027747143,-0.33048505,0.19433993,0.004980727,-0.2138939,0.017658047,-0.59118706,0.38363966,0.1410489,0.4863268,-0.27393538,-0.8373142,0.056477413,0.12655385,-0.22530036,-0.6476961,0.6715348,-0.21942507,0.96159416,0.005015405,-0.08462314,0.03981743,-0.34897676,0.13870929,-0.37024722,-0.12942053,-0.9103289,-0.017505236,921 +318,0.3699265,-0.22251728,-0.5186301,-0.11755448,-0.37733832,0.032716695,-0.2267933,0.2991309,0.2858762,-0.06250026,-0.07261853,0.017734867,-0.02673192,0.34165993,-0.06265273,-0.7126887,-0.1853259,0.04986305,-0.69764215,0.6260531,-0.5118337,0.31968784,0.014786609,0.2824974,0.25158936,0.443207,0.13787816,-0.022966592,-0.0040599983,-0.12864277,0.017490761,0.055579428,-0.5308374,0.10571987,-0.123876065,-0.1877362,0.1238441,-0.5259392,-0.25513577,-0.711405,0.21556225,-0.7606494,0.46780917,-0.0142852785,-0.0804036,0.0143634,0.37019163,0.43925825,-0.39658266,0.060289722,0.26146019,-0.11921905,-0.030823343,-0.25804478,-0.099538915,-0.4067053,-0.5203336,-0.11959657,-0.57060224,-0.36331412,-0.16970721,0.21310264,-0.4450311,-0.12895906,-0.2450842,0.5010421,-0.4546782,0.022278527,0.3742793,-0.26977202,0.12320385,-0.627157,0.051198322,-0.053715143,0.35430786,0.18823287,-0.01467585,0.44228002,0.22730848,0.28366855,0.29353243,-0.27297968,-0.3194348,-0.30122226,0.23647998,0.3169063,-0.026917513,-0.20520717,-0.2871915,0.09153225,0.12299423,0.40654185,0.06758405,-0.23289065,-0.008017356,-0.120843634,-0.1365618,0.5478509,0.41343752,-0.3215795,-0.2773227,0.37655488,0.63296795,0.35951632,-0.26510027,-0.01318031,0.013573945,-0.5084627,-0.13942567,0.20582469,-0.11761041,0.335024,-0.10133292,-0.03398713,0.8191611,-0.09952119,-0.064241454,-0.09076178,0.07132488,-0.06218081,-0.41909477,-0.19575033,0.13879925,-0.5033678,0.099198006,-0.24108194,0.5965115,0.06067639,-0.5367031,0.39558524,-0.61779046,0.17947327,0.07031429,0.59983313,0.5918744,0.44006735,0.2870451,0.77925354,-0.17701264,0.22707237,-0.18641993,-0.38441658,0.0063316664,-0.23221086,0.2660196,-0.49334943,0.17557599,-0.27353013,-0.012718749,-0.00016378959,0.48670676,-0.33982506,-0.1833498,0.19542669,0.8519247,-0.23325354,0.02610873,0.57024276,1.1209447,1.200313,-0.061533794,1.090952,0.34709084,-0.27839378,0.013514793,-0.46202812,-0.5059319,0.16205902,0.30137333,-0.19962288,0.3085772,-0.12683062,-0.037271254,0.3310814,-0.29632598,0.14477305,-0.030724132,0.3946698,0.23142001,-0.1172618,-0.3683415,-0.21556288,0.09842985,-0.059468213,0.32366735,0.22762285,-0.25083432,0.24973746,-0.08412245,1.4753329,-0.13259819,0.16769552,0.23908043,0.51365507,0.29536715,-0.09029971,0.13534644,0.4455698,0.29572985,-0.106441185,-0.5988134,0.20890446,-0.4364303,-0.47968197,-0.14745459,-0.41197142,-0.12120966,0.0322428,-0.4037126,-0.03200116,-0.17724963,-0.2874384,0.35537368,-2.8116407,-0.24318132,-0.17427053,0.17567466,-0.4094663,-0.18296903,-0.09393532,-0.5195438,0.26986626,0.19173008,0.48577294,-0.54994625,0.623094,0.6073119,-0.62676454,-0.09506295,-0.53187996,-0.037508305,-0.06442366,0.54020566,-0.093292855,-0.03306057,-0.20624371,0.33697426,0.73040193,0.1069661,0.2310897,0.56230724,0.37439093,0.060923316,0.65575194,-0.061362464,0.5210761,-0.23097295,-0.10208122,0.41272166,-0.43026435,0.3450117,-0.16569014,0.08982936,0.570995,-0.4482943,-1.022909,-0.48752123,-0.24956328,1.0355618,-0.33001506,-0.31361687,0.21350752,-0.19998471,-0.045793854,0.14379859,0.6165758,-0.07372991,0.22898254,-0.6425673,0.12115073,-0.080323264,0.18372692,-0.013072848,0.13607332,-0.39723217,0.7929749,-0.05479383,0.64931446,0.18735223,0.18764432,-0.26686928,-0.29793707,0.09994831,0.7485482,0.34019387,-0.005798443,-0.13569328,-0.25755286,-0.1203094,-0.30926672,0.0013072013,0.64095634,0.5479603,-0.11081233,0.050009627,0.25816327,-0.24285384,-0.07644346,-0.18507555,-0.18624298,0.017242007,0.15819506,0.37602776,0.7055187,-0.13142785,0.42874792,-0.15741642,0.24242344,-0.18665963,-0.48326743,0.5514864,0.32472107,-0.22298256,-0.119680725,0.4956535,0.55168456,-0.39307016,0.50805193,-0.5527302,-0.21167488,0.7214047,-0.20353886,-0.3918366,0.13413684,-0.2819248,0.05370067,-0.650765,0.22951819,-0.45950946,-0.40496764,-0.37181345,-0.22669436,-3.111444,0.14999132,-0.09434835,-0.07502292,-0.27669147,0.15967141,0.24159019,-0.65510803,-0.6590291,0.051498644,0.26175317,0.56393445,-0.08434471,0.12578562,-0.31106982,-0.30277082,-0.1652746,0.37262172,-0.035161726,0.30790615,-0.11047939,-0.39226323,-0.08152019,0.04654561,-0.54848975,0.16593006,-0.5848275,-0.29470024,-0.057633925,-0.5669275,-0.27017584,0.5780599,-0.342696,0.053476207,-0.19428179,0.18566291,-0.16870634,0.13645266,0.12527274,0.33904442,0.24172857,-0.15662387,0.033816196,-0.2256928,0.4615488,-0.123217575,0.43475887,0.10266947,0.0060662627,0.09012949,0.42949754,0.6313442,-0.14749101,0.98644763,0.2384111,-0.093973376,0.2114101,-0.28607437,-0.10069768,-0.56478655,-0.35473964,-0.13232672,-0.35505596,-0.62403655,-0.056588396,-0.32672247,-0.8130631,0.48879424,0.08361907,0.40663978,-0.062131397,0.13616052,0.42236817,-0.2103413,0.076835275,-0.0025623043,-0.2049907,-0.39140838,-0.337241,-0.6326962,-0.4334779,0.22122052,0.85476,-0.3731355,-0.11224529,-0.07863082,-0.41347295,-0.090501174,0.13459225,0.09730757,0.1818637,0.42481005,0.046850406,-0.5674463,0.32605517,-0.07331495,-0.048999112,-0.5232815,0.054204885,0.67605907,-0.5968867,0.8021396,0.19908793,0.097344205,-0.12543415,-0.55778855,-0.07757539,0.16265754,-0.12008883,0.49145663,0.13638568,-0.68841326,0.50780445,0.27266437,-0.51976925,-0.7414108,0.27539623,-0.1196714,-0.3653205,-0.11024721,0.4390124,0.26068494,-0.10204231,-0.20922464,0.32456475,-0.44973728,0.16200621,0.18990655,-0.13102494,0.24798988,-0.05851132,-0.34498432,-0.66648215,-0.026229315,-0.4747664,-0.36500123,0.3182336,0.031286605,-0.030963112,0.05332939,0.15571485,0.36443135,-0.11018955,0.119669184,-0.03409465,-0.27746227,0.36568552,0.40469447,0.30939734,-0.36018175,0.49990645,0.049826406,-0.17407869,0.25587136,-0.0031101704,0.31672075,-0.10425242,0.46116525,-0.12149183,-0.07820247,0.30078545,0.56364,0.13306023,0.37660375,0.13394378,-0.25167748,0.41436154,-0.04875768,0.09739049,-0.039013322,-0.49133414,0.028188689,-0.055540666,0.102883704,0.4979741,0.31039074,0.3691243,0.16733232,-0.09924902,0.01699179,0.34734604,-0.22632709,-1.1155899,0.4008452,0.2208379,0.8633792,0.50560963,0.13748339,-0.09347364,0.6527768,-0.26225215,0.025546651,0.48712233,0.013371173,-0.44576672,0.7348583,-0.46622533,0.38409767,-0.13563937,-0.041510526,0.15804595,0.22854939,0.44534963,0.71796477,-0.20806089,-0.110299475,-0.12583429,-0.30169737,-0.0697389,-0.17808393,0.12800984,-0.39315757,-0.49516523,0.625301,0.46233204,0.36981493,-0.19989727,-0.07953484,0.003776137,-0.15078443,0.19054519,-0.10226035,-0.13614392,0.17207576,-0.51896393,-0.18933342,0.48944432,-0.23248434,0.08577843,-0.13074884,-0.22812273,0.07946544,-0.20182732,0.061761204,-0.0018022418,-0.64449626,-0.060188137,-0.121969305,-0.50230783,0.328088,-0.35671458,0.11774373,0.109901555,-0.10261329,-0.21476263,0.29462087,0.21822634,0.7265235,-0.08245202,-0.18376677,-0.19526339,0.059121784,0.090290986,-0.20890018,0.079663,-0.295819,0.18523155,-0.65155655,0.5951434,-0.24059817,-0.41134006,0.14736663,-0.3775093,-0.14467649,0.6199792,-0.25711837,-0.20666571,-0.23911457,-0.29561657,-0.3381514,-0.13297245,-0.24678881,0.29108688,0.12693056,-0.16182941,-0.21108386,-0.16033596,0.029197948,0.52827865,0.012161183,0.37021175,0.2733947,0.022065377,-0.20807794,0.055763755,0.2106015,0.42235547,0.26984933,0.08136201,-0.40638068,-0.31791005,-0.36015847,0.2903754,-0.16790959,0.13233124,0.08448288,-0.32170245,0.9668711,0.1672991,1.315436,0.077479795,-0.33207363,0.07761677,0.5920252,-0.022030327,0.1065885,-0.35991648,0.896097,0.6718025,-0.10172675,-0.0010349273,-0.58023554,-0.11520496,0.28357932,-0.43943414,-0.03898859,0.033677094,-0.5383216,-0.25472465,0.31355855,0.13620093,0.121791236,-0.11736969,-0.13915053,0.051626846,0.1891535,0.5092426,-0.5340763,-0.11757029,0.23256369,0.12853321,0.0413957,0.17406705,-0.40860102,0.40165988,-0.74515915,0.30556098,-0.26566938,0.14419153,-0.3511853,-0.26015913,0.1900402,-0.04738652,0.31558397,-0.3758396,-0.48135632,-0.020242717,0.48945385,0.12466601,0.08838512,0.66483194,-0.24052446,-0.037011225,0.079617135,0.6995389,1.1551279,-0.3954529,0.021248898,0.3384212,-0.42924973,-0.7478214,0.19890937,-0.48295787,-0.10336539,-0.14149158,-0.4758048,-0.4744944,0.30759734,0.044155844,0.113692306,0.03644073,-0.4850759,-0.14288808,0.38413402,-0.291714,-0.25129816,-0.15228263,0.26606524,0.75972724,-0.237257,-0.5406031,-0.009883819,0.25984457,-0.28912607,-0.5201627,-0.040089138,-0.19119915,0.4092762,0.07498181,-0.2405595,-0.11641216,0.17147046,-0.52342683,-0.048143197,0.17457695,-0.32440063,0.080049135,-0.27660954,0.020575635,0.8142541,-0.18553688,-0.0024813334,-0.6186408,-0.4490112,-0.89657676,-0.38231406,0.19600162,-0.031197349,-0.11399449,-0.3970506,0.0266289,-0.109858446,-0.092226334,0.11685894,-0.57037646,0.33482516,0.07265296,0.39286157,-0.36525434,-0.8727095,0.052516267,0.20122974,-0.14174183,-0.65487653,0.680666,-0.15255089,0.8292531,0.036987297,-0.1309577,-0.064234234,-0.49884665,0.14449635,-0.43514225,-0.14098868,-0.7449858,0.143699,934 +319,0.46273917,-0.29182288,-0.45028454,-0.08733147,-0.1841925,0.18616535,-0.2585213,0.19652018,0.13182455,-0.5493837,-0.2519035,-0.26715484,-0.1445841,0.19142374,-0.31154898,-0.3880592,-0.011637574,0.09041137,-0.5450066,0.66569495,-0.3070584,0.28147966,0.017733283,0.4014352,0.3801422,0.28172672,0.18087251,-0.020372782,-0.13131881,-0.21728568,0.029085254,0.13220419,-0.47295868,0.15890867,-0.15005726,-0.36915448,-0.07041331,-0.50511616,-0.4115733,-0.75892043,0.60524964,-0.9748847,0.4494077,-0.006930973,-0.086579494,0.4101705,0.26021037,0.32485065,-0.013779318,0.054229103,0.23235507,-0.006362951,-0.0646726,-0.07396479,-0.18801834,-0.42250755,-0.6087896,-0.02536863,-0.36792284,-0.26110387,-0.32624835,0.07984034,-0.2566855,0.052517235,0.028490828,0.53490955,-0.5184317,-0.02445283,0.29477394,-0.06764849,0.36493355,-0.6873163,-0.1799316,-0.05672555,0.3151514,-0.18001652,-0.042495854,0.17506084,0.4065933,0.43389755,0.0040531876,-0.06528283,-0.1631197,-0.14520258,0.29379576,0.44857693,0.055782694,-0.4212007,-0.13650776,-0.0062236628,0.03504176,0.22174147,0.289828,-0.37567902,-0.07095482,-0.014980395,-0.19480418,0.45006078,0.4520742,-0.2714489,-0.20130183,0.38955593,0.5321857,0.25722253,-0.16735746,0.106854245,-0.0011191656,-0.46446568,-0.2093894,0.19465494,-0.31616527,0.5151026,-0.15077774,0.31808186,0.62632245,-0.14634606,0.09078227,-0.093853526,-0.022357604,-0.27364957,-0.16122031,-0.2816981,0.17712678,-0.438226,0.2013344,-0.088924475,0.5887911,0.06932937,-0.59241384,0.28690663,-0.6167393,0.08498381,-0.034357212,0.40617597,0.60047597,0.28099722,0.29996583,0.6550202,-0.41267604,0.011849572,-0.056531016,-0.32873458,-0.15663792,-0.26569608,-0.19608977,-0.44243953,0.04932966,-0.15609707,-0.019084198,-0.21076061,0.4558856,-0.44684705,0.072755866,0.08380071,0.84901595,-0.29688987,0.09248652,0.82595736,0.9343371,1.1595598,0.070006825,1.1114589,0.21135053,-0.25999126,0.07056336,-0.1163411,-0.64432263,0.4007422,0.5060083,-0.045372963,0.2864373,0.0105017405,0.057811085,0.36932898,-0.38053676,0.15850426,-0.22790347,-0.03637246,0.26533267,-0.17992662,-0.3802995,-0.116450794,0.0022183578,0.11787126,0.17782547,0.051047906,-0.13135622,0.27738848,0.12982465,1.663981,-0.22296311,0.06403316,0.16085966,0.4128755,0.1956198,-0.090683684,-0.052823164,0.22802661,0.42965552,0.19703561,-0.70234716,-0.008813039,-0.22860269,-0.42620805,-0.24989833,-0.28074473,-0.11186516,0.016380707,-0.41800764,-0.1103449,-0.16157001,-0.32932752,0.2911293,-2.6327379,-0.19017714,-0.2971634,0.2789232,-0.24147873,-0.29367474,-0.09644384,-0.45167747,0.44158646,0.37135622,0.3162753,-0.56828713,0.45839468,0.52590495,-0.63720447,0.0988282,-0.5159236,-0.14361598,-0.16674218,0.3584706,0.00518647,-0.05369464,0.027167527,0.2544854,0.42697194,0.04054207,0.15983649,0.2792253,0.5289487,0.030127065,0.7153918,0.08624945,0.4130106,-0.15401167,-0.10793027,0.47295916,-0.23699099,0.23345819,-0.20742477,0.17946504,0.51920843,-0.56497353,-0.76484746,-0.7322272,-0.45914474,1.1551269,-0.10473302,-0.49991047,0.19716473,-0.27710336,-0.37088865,-0.11287144,0.48108146,-0.170274,0.07367614,-0.86647856,-0.058484543,-0.10511125,0.023191115,0.024236642,-0.06630785,-0.5908002,0.8742635,-0.00436654,0.44210348,0.38719627,0.18230239,-0.25845602,-0.55956477,0.01075691,0.9060107,0.41584688,0.0561742,-0.30638358,-0.063458495,-0.38727352,-0.06742199,0.06824408,0.4404034,0.521251,0.08704669,0.32415923,0.17357874,0.12886259,-0.00255211,-0.26476592,-0.27998617,-0.14836088,-0.200969,0.5688404,0.47345677,-0.15434612,0.39398214,-0.113413796,0.26035082,-0.19148661,-0.37639427,0.52013373,1.2456322,-0.11744625,-0.39331397,0.65191805,0.5007726,-0.24778026,0.3696214,-0.59216464,-0.1189444,0.47507858,-0.23807958,-0.63826203,0.20345595,-0.35269102,0.14221264,-0.7664815,0.26221102,-0.26529783,-0.22582892,-0.5780899,-0.23856299,-3.2590566,0.22576895,-0.2449104,-0.30168438,-0.21824677,-0.15074508,0.33052558,-0.53729784,-0.7617527,0.22588132,-0.05567893,0.7607185,-0.1347396,0.18762134,-0.24805762,-0.2196374,-0.34744692,0.09736263,0.037764803,0.2849042,-0.08879458,-0.44403014,0.044537067,-0.19600715,-0.39539808,-0.072735,-0.4230275,-0.32823163,-0.11138312,-0.34711888,-0.13551188,0.5284648,-0.13415508,0.06990639,-0.28844318,-0.10566036,-0.17040545,0.3991303,0.042120498,0.13715991,0.041621756,-0.042373728,0.048975762,-0.13805558,0.35921153,0.08890341,-0.015332184,0.24374828,-0.21823142,0.1903974,0.20842266,0.5232939,-0.20840149,0.9745003,0.44628382,-0.19200477,0.20965725,-0.25215536,-0.2606991,-0.6046961,-0.26667807,0.047899343,-0.37520954,-0.6788265,-0.094664305,-0.38749695,-0.7495716,0.49102765,-0.044461012,0.26377392,0.0441326,0.1457676,0.39946404,-0.1523612,0.0020399885,0.05141227,-0.12056171,-0.46437347,-0.34229487,-0.59733444,-0.44866365,-0.114906915,0.7892836,-0.07256161,-0.031747773,0.054130338,-0.39824674,0.028484814,0.100476734,-0.054461244,0.119438216,0.4788242,-0.039468586,-0.8047992,0.636137,-0.09917059,-0.12721808,-0.56994915,0.055826202,0.69629514,-0.48721224,0.50713444,0.37883335,0.048638288,-0.3268634,-0.5536299,-0.04792857,-0.043550868,-0.42624515,0.49347046,0.18817511,-0.69932395,0.42977035,0.2989129,-0.08327319,-0.7884682,0.7008012,0.041086633,-0.2603517,0.10449113,0.41895548,0.068967596,0.03425627,-0.33897686,0.37798825,-0.40510017,0.2288163,0.17935556,-0.031495906,0.12902966,-0.23275234,-0.18328704,-0.74077994,-0.037886743,-0.4183356,-0.18130098,0.16993073,0.0291284,0.124701895,0.33945405,0.07731342,0.4220193,-0.26865843,0.1528246,-0.050142195,-0.104004234,0.16268112,0.46355247,0.43395093,-0.47430936,0.60219926,-0.08284744,-0.099047825,0.049824316,0.099764094,0.38252643,0.08510737,0.4147974,0.08325343,-0.23778439,0.33237138,0.9250479,0.28364435,0.5067671,0.18528631,-0.27859232,0.33458558,0.16654024,0.26845512,-0.19005917,-0.6063555,-0.034940876,-0.17107895,0.11997322,0.4290895,-0.013405728,0.3314467,-0.1384888,-0.3456541,0.029439304,0.21508123,0.009362936,-0.9570981,0.26249334,0.14597687,0.8429854,0.6363734,-0.13261575,0.17361975,0.5211839,-0.22210178,-0.03149983,0.34726027,0.0062325993,-0.56049705,0.5584311,-0.5418285,0.27221885,-0.048804738,-0.12335,-0.014723198,0.01607566,0.34084627,0.68233526,-0.1825876,0.060738266,-0.101927675,-0.24654119,0.32608312,-0.4545606,0.035901286,-0.31511062,-0.33107814,0.6262014,0.709973,0.2574168,-0.17907931,0.052871864,-0.015889298,-0.12187259,0.15095349,0.23129518,0.03144711,-0.11001976,-0.8258289,-0.19550224,0.41236755,0.104311906,0.048727855,0.023652514,-0.32092616,0.21274458,-0.08713259,0.11856638,-0.00022383133,-0.86372113,-0.041444458,-0.22827253,-0.5231827,0.27455208,-0.11246125,0.23224078,0.18767291,-0.021772925,-0.23362732,0.122287504,-0.031196324,0.6914622,0.03918906,0.05597109,-0.39695632,0.100554705,0.21114448,-0.24635312,-0.028940868,-0.23287068,0.20723964,-0.67940956,0.59504914,0.0041499296,-0.38513005,0.27357107,-0.12658696,-0.03383764,0.62887114,-0.23641191,-0.09139465,0.017191362,-0.07852013,-0.23801522,-0.22451115,-0.19424623,0.1616734,0.0451291,0.076748535,-0.14446935,0.037429877,-0.16708751,0.5289911,0.08246682,0.57510126,0.5163524,-0.07137259,-0.42697594,-0.17861703,0.12292094,0.58220613,0.0026349684,-0.26828435,-0.19947377,-0.71790737,-0.25976807,0.37951893,-0.003995208,0.26770192,0.09563082,-0.25575116,0.64807165,0.073665924,1.108727,0.087502845,-0.4201003,0.13002777,0.5308783,-0.10621198,-0.122408204,-0.4064712,0.71564656,0.517648,-0.11571254,-0.10079129,-0.2661439,0.060555495,0.041688986,-0.23535372,-0.02546997,-0.117809944,-0.5976317,-0.3366061,0.1299239,0.29794952,0.08644954,-0.16547719,0.07400249,0.26362792,-0.012856803,0.4828482,-0.4924278,-0.3701529,0.3621787,0.22075881,-0.080510974,0.028823873,-0.4040593,0.4984828,-0.4913648,0.012215288,-0.3149472,0.20496269,-0.25191295,-0.16096298,0.24798916,-0.046552304,0.4183202,-0.31146634,-0.42368928,-0.25972927,0.37909344,0.17717877,0.17096029,0.3818106,-0.30093306,0.20769338,0.08554586,0.6707784,0.9804865,-0.08872902,0.21874695,0.33405632,-0.46004078,-0.48152003,0.37676254,-0.32247528,0.21855585,0.17631201,-0.21019433,-0.4016975,0.2818,0.23463562,-0.051770397,-0.09984178,-0.6131318,-0.34766954,0.4686185,-0.2146844,-0.21414907,-0.2475449,-0.017591167,0.5437738,-0.31985968,-0.24650837,-0.0914233,0.2525178,-0.21757771,-0.530073,-0.029990379,-0.41087925,0.49076447,-0.0017231822,-0.15367675,-0.11942472,-0.011199077,-0.51368356,0.12658842,0.113352746,-0.41986293,-0.024209926,-0.35103557,-0.10591132,0.8582573,-0.27818996,-0.072730295,-0.4972293,-0.41908118,-0.9554698,-0.3028756,0.35796434,0.1881965,0.07103432,-0.38639486,0.07016388,-0.21736985,0.111480094,-0.0043638507,-0.3309863,0.4141744,0.13411142,0.56769174,-0.09019251,-0.67126137,0.121274024,0.08421509,-0.35570708,-0.39595845,0.699506,0.05405364,0.65874636,0.022770038,0.11566793,0.121533036,-0.5437451,0.065712914,-0.107159846,-0.15478143,-0.8463147,0.07150658,941 +320,0.3803607,-0.06775567,-0.4678684,-0.22729257,-0.3536853,0.19868138,-0.29477695,0.31428346,0.20043173,-0.20180117,0.015397242,0.050102644,0.016486255,0.379182,-0.15573637,-0.8503293,-0.1334642,0.106992245,-0.6540567,0.48305723,-0.6672258,0.33934626,0.038276274,0.44637984,0.06157055,0.39888075,0.2802614,0.00026130278,-0.13131402,-0.01896456,-0.10961322,0.30718118,-0.6185592,0.25423178,0.06621412,-0.28728786,-0.047596563,-0.22104813,-0.15102135,-0.6977411,0.44861305,-0.7190283,0.6447594,-0.124882534,-0.37670955,0.131447,0.076853275,0.21255232,-0.42663953,0.077470824,0.20355348,-0.30870515,-0.07141587,-0.2217914,-0.19971307,-0.5137542,-0.5512554,0.0005599737,-0.6322852,-0.05434188,-0.36348602,0.32122725,-0.36438498,0.088831134,-0.24559215,0.2800635,-0.4499298,0.01816969,0.21542686,-0.30860347,-0.049415182,-0.4682457,-0.062718466,-0.06943393,0.289299,0.026165415,-0.25747705,0.36945647,0.45947704,0.5521546,0.18304497,-0.33554876,-0.28969344,-0.22127463,0.071614124,0.45805544,-0.03244008,-0.3814815,-0.29932526,-0.16042084,0.37336472,0.10304227,-0.030740635,-0.2968907,0.0070377835,0.15770492,-0.25338426,0.41261345,0.46477804,-0.44941244,-0.23244719,0.48352143,0.26827228,0.10303116,-0.23664197,0.16067877,-0.0788108,-0.57210904,-0.27930558,0.19118021,-0.030448226,0.57957196,-0.21001182,0.3022019,0.8807415,-0.12622765,-0.034755714,-0.23394164,-0.077470936,-0.11564218,-0.32391614,-0.1342298,0.09618759,-0.46982506,-0.04546656,-0.2866326,0.6517255,0.08461379,-0.67702186,0.4611532,-0.36795536,0.07725637,-0.1475307,0.5545528,0.7826558,0.3620168,0.124146715,0.890612,-0.48816428,0.018927645,-0.09522398,-0.41514772,0.07783176,-0.042099245,0.08873115,-0.4431612,0.17664576,0.1852532,0.13071959,0.059195265,0.5432269,-0.32520467,-0.00011690061,-0.106604554,0.60567576,-0.5300144,-0.062880285,0.8149707,1.0045959,0.9744616,0.09075148,1.54921,0.44473106,-0.16141963,-0.054282483,-0.3603964,-0.46743584,0.17987484,0.3120983,0.034369603,0.309935,0.13989218,0.09904202,0.4848566,-0.2872874,0.01936646,0.04343251,0.38866493,-0.057243254,-0.028529266,-0.41693214,-0.19801006,0.26836166,0.10772672,0.19363552,0.21770912,-0.14751019,0.5802948,0.11791651,1.3549324,0.091360085,0.1395767,-0.06913119,0.39791143,0.2503976,-0.11699248,-0.0018117984,0.31782627,0.4081332,-0.15800701,-0.552582,-0.09597266,-0.3308293,-0.4779524,-0.21973825,-0.4163911,-0.12017486,-0.17792784,-0.53255755,-0.19406566,0.21910222,-0.34441885,0.46041948,-2.4640365,-0.29725733,-0.18044062,0.27650893,-0.2374538,-0.42095497,-0.31452,-0.52915263,0.3978589,0.4028251,0.29765975,-0.6148841,0.40871716,0.1631061,-0.2656555,-0.120648585,-0.6382187,0.058037616,-0.08612707,0.3243184,-0.13794042,-0.2751116,-0.20079057,0.37171927,0.7546866,0.009464261,0.0062215566,0.19982728,0.39702475,0.05742709,0.41949692,0.09391734,0.6447815,-0.17922185,-0.21287568,0.36320487,-0.36904037,0.33820972,-0.12595144,0.22131395,0.4428894,-0.44978663,-0.8616781,-0.57714516,-0.26005825,1.241311,-0.52487946,-0.2905267,0.26324084,-0.012831344,-0.4280352,0.1062791,0.4288216,-0.121083654,0.010862191,-0.65373796,0.09501017,-0.12601997,0.058567785,-0.1430413,0.17767684,-0.3935271,0.72373885,-0.18604858,0.43807456,0.26870868,0.19210836,-0.19238958,-0.3760528,0.16894726,0.95756316,0.4668507,0.092120245,-0.20656279,-0.22974457,-0.19513588,-0.2990869,0.14641318,0.46608517,0.63557357,0.105411716,0.039468333,0.23980786,-0.24286224,0.01908356,-0.162717,-0.23303203,0.007013754,0.19740972,0.64596635,0.5082425,-0.15639298,0.345025,-0.13635965,0.27209574,-0.12714148,-0.62904,0.59058994,0.93193346,-0.18378338,-0.23305541,0.63281167,0.3666732,-0.30429426,0.46781215,-0.5203979,-0.3428118,0.5838621,-0.105442636,-0.3781013,0.0077281715,-0.41192892,0.022270624,-0.88090914,0.14979598,0.08745527,-0.54263645,-0.5281479,-0.35853082,-3.9633024,0.11219672,-0.13833341,-0.051108,-0.15360758,-0.14219707,0.39198455,-0.6046608,-0.5321624,0.041822754,0.009763764,0.5336074,0.007600214,0.057480074,-0.34431714,-0.121045165,-0.14970183,0.22237124,0.0812414,0.33279812,0.04870766,-0.433031,0.18872756,-0.28603795,-0.5526735,-0.01572204,-0.53904223,-0.529441,-0.1157217,-0.41107827,-0.2061886,0.78055465,-0.49369252,-0.018166257,-0.33934605,0.056376226,-0.15501124,0.34309393,0.15872523,0.15074328,0.14366253,-0.0054199696,0.013061108,-0.3713256,0.28511715,0.059609756,0.20778356,0.3994066,-0.115283966,0.094170205,0.5238617,0.58601594,-0.02408723,0.77789426,0.25398466,-0.16701674,0.3247061,-0.25657845,-0.19485016,-0.6929625,-0.5180593,-0.21164745,-0.5310995,-0.35118905,-0.25265375,-0.34603298,-0.8098676,0.43238556,0.035683665,0.139868,-0.14215918,0.3168763,0.23312302,-0.1353116,0.061097104,-0.20192581,-0.25278157,-0.51803154,-0.4739715,-0.57575357,-0.7863309,0.14627317,1.0487701,-0.07420857,-0.1286308,-0.02635364,-0.44198212,0.013468113,0.12301384,0.29753286,0.20516707,0.39352146,-0.16587119,-0.8004099,0.45640504,-0.23854281,0.00017623504,-0.66758895,-0.0009500027,0.6730248,-0.56803113,0.6050756,0.37863243,0.30056885,0.13805062,-0.56661326,-0.36109668,0.056235928,-0.20787846,0.6383284,0.23236337,-0.6815478,0.5742673,0.14967361,0.006053972,-0.6428029,0.37311676,-0.01838925,-0.0759083,0.040070694,0.47808504,-0.0035233179,-0.052407168,-0.20080084,0.17521645,-0.61279875,0.36351818,0.34982777,0.05898962,0.6046858,-0.16248034,-0.23749918,-0.599084,-0.28895518,-0.4533025,-0.27657261,-0.07601202,0.08098399,0.15923171,0.054457027,-0.04210764,0.42020315,-0.4552125,0.2518877,-0.014034939,-0.23086254,0.23352757,0.47928277,0.37747997,-0.42891693,0.63423866,0.1321959,0.1451032,-0.23365508,-0.077228814,0.64767724,0.304829,0.35114732,-0.10066263,-0.04219357,0.17234357,0.67481196,0.26339397,0.2955877,0.18095782,-0.4012991,0.21239741,0.19934775,0.087865904,0.16134745,-0.19636983,-0.0689764,0.049176533,0.21098456,0.4685864,0.14670192,0.33504957,-0.07868865,-0.07386656,0.21396714,0.000512747,-0.14297087,-1.2216036,0.36809602,0.40671635,0.65997595,0.45742923,-0.07198559,-0.077409625,0.40978095,-0.38150278,0.10011617,0.27369928,0.026596665,-0.3714084,0.47050014,-0.51581496,0.410584,-0.18368608,-0.006785055,0.16808577,0.26601946,0.2787209,0.9724542,-0.070480905,0.13724872,0.031681444,-0.24054727,0.10436224,-0.23806255,0.060484104,-0.47377166,-0.19933653,0.68562526,0.34251553,0.31899646,-0.3218831,-0.15228347,0.03213265,-0.20676543,-0.02038575,-0.23673369,0.036957387,-0.2208683,-0.62108415,-0.43897125,0.48242512,0.09992336,0.0807249,0.19921906,-0.31263825,0.21413249,-0.128802,-0.012187115,0.0049475688,-0.62521046,-0.13025092,-0.29138234,-0.50340825,0.3526397,-0.4945589,0.28870708,0.1351584,-0.0011393627,-0.27158412,0.10073192,0.01950678,0.8936855,0.16659291,-0.21917194,-0.33639365,0.022865137,0.41887248,-0.31748194,-0.014386904,-0.35358742,0.1561604,-0.66456187,0.39902732,-0.19058882,-0.21755303,-0.019826094,-0.12219436,0.035775073,0.31166205,-0.2582569,-0.123564705,0.24665712,0.045176443,-0.20891055,-0.009379443,-0.45304745,0.22691528,0.026239984,0.06550118,0.024639638,-0.13512158,-0.08871954,0.3863689,0.18013982,0.09393061,0.37580976,-0.13723405,-0.2583453,-0.022957662,0.0616418,0.4285178,0.041002322,-0.072814696,-0.29745665,-0.356029,-0.34030974,0.46121475,-0.19527817,0.08105808,0.045045655,-0.39059135,0.7755772,0.16012941,1.1548634,0.24281839,-0.48558745,0.17381598,0.56744736,0.05686346,0.22797562,-0.3347617,0.9173673,0.513683,-0.13005784,-0.20120601,-0.4882724,-0.14626162,0.4100551,-0.31437317,-0.26954034,-0.20902564,-0.86600566,-0.23660527,0.15049744,0.16558804,0.04615346,-0.0013060133,-0.05163819,0.07493714,0.2129693,0.5577625,-0.6574127,0.06976562,0.35400283,0.12335037,-0.00053155026,0.31071168,-0.31756166,0.42760772,-0.626646,0.07271811,-0.48842552,0.072086245,-0.10270427,-0.34612,0.33429784,0.10267151,0.31049454,-0.29822552,-0.43654925,-0.34302756,0.66165763,0.16062139,0.3173664,0.7094316,-0.2957895,-0.17425194,0.20143504,0.4600359,1.3567768,-0.093499415,0.16416082,0.32157117,-0.3036503,-0.55133885,0.14684726,-0.32735044,0.09315595,-0.076755114,-0.43506482,-0.33186924,0.3265707,-0.001168402,-0.09136102,0.24222428,-0.4051213,-0.17788129,0.39412734,-0.24372788,-0.28678867,-0.18337736,0.21059676,0.6917915,-0.48234636,-0.4376817,0.076058164,0.397323,-0.23039314,-0.6870635,-0.017364703,-0.21785754,0.40319186,0.21258545,-0.32400075,-0.01950218,0.23973995,-0.44377413,0.16419329,0.5194899,-0.3244979,0.046890274,-0.34459114,-0.069509044,1.0484296,0.013996554,0.23021029,-0.7174975,-0.4226209,-0.987264,-0.28742212,0.18881908,0.18296099,-0.065817,-0.63224643,-0.075026475,-0.15394042,0.058385808,0.18956086,-0.53315383,0.45084903,0.15619789,0.5090294,0.033341184,-0.85372716,-0.15165932,0.10654981,-0.18384987,-0.5024601,0.59337896,-0.22387908,0.61619836,0.1406702,0.13782834,0.1211135,-0.7345177,0.29024214,-0.36372524,-0.09462919,-0.82209116,0.10185639,951 +321,0.4513486,-0.14587778,-0.34646243,-0.12917866,-0.12393882,0.17846778,-0.06855411,0.5022686,0.1854937,-0.47845283,-0.16418943,-0.3480958,0.040712792,0.2322263,-0.12479301,-0.5446547,-0.014307813,0.13695581,-0.44697377,0.46826264,-0.49436158,0.39404824,0.05571755,0.26865676,0.16001359,0.15998454,0.11734805,-0.20030728,-0.14490236,-0.07532121,-0.21912864,0.38792256,-0.4147399,0.018246006,-0.16167411,-0.4023511,0.02433048,-0.5609378,-0.30585542,-0.6833466,0.3910557,-0.73278373,0.42657655,0.08119078,-0.08486922,0.50575674,-0.024199529,0.15444466,-0.20952867,-0.042257033,0.19738343,-0.045829106,-0.07913545,-0.057612345,-0.19430605,-0.19173983,-0.48010424,0.20611373,-0.36031994,-0.2661211,-0.26563385,0.107799076,-0.29641667,-0.092662744,-0.04520565,0.2839405,-0.35760885,-0.14115666,0.19656678,-0.07941944,0.19842307,-0.5168197,-0.11134396,-0.090663545,0.28667596,-0.27595314,-0.14014056,0.26868948,0.33747044,0.52956647,-0.080481224,-0.10457598,-0.33264384,0.018408157,0.05218569,0.53425413,-0.12989971,-0.665294,-0.12061204,0.035486143,0.035038486,0.23762086,0.10826824,-0.24769929,-0.2588062,0.09639135,-0.22757544,0.3010196,0.5148986,-0.41096961,-0.30227324,0.3197888,0.42682925,0.23219447,0.034897383,-0.07819333,0.018878993,-0.63819534,-0.17932197,0.0045907893,-0.30247375,0.57614154,-0.13543704,0.31132403,0.627637,-0.08666453,0.10652331,0.06026144,0.017874742,-0.18787406,-0.21391967,-0.058505867,0.24554276,-0.44305375,0.17124377,-0.098903984,0.8226109,0.16407855,-0.7445128,0.4146347,-0.57577497,0.16003847,-0.11077603,0.51072365,0.6634696,0.14784619,0.31450403,0.6909673,-0.46358097,0.017492931,-0.020652592,-0.32267338,-0.04974232,-0.08148768,-0.084416315,-0.49005452,0.058160704,0.062039662,0.071477786,0.23574845,0.28189617,-0.52497554,0.06790439,0.06985225,0.7522793,-0.32030603,-0.10504634,0.6969894,0.94612986,0.9229604,0.08081817,1.1379523,0.25125077,-0.33895218,0.39714953,-0.3797894,-0.8054994,0.27574918,0.3818473,-0.22909918,0.15131289,0.055105988,0.0025546232,0.32095855,-0.4266091,0.055949364,-0.16794518,0.019809615,0.16284527,-0.0775036,-0.33600965,-0.3960833,-0.12997541,0.055539463,0.117571,0.13984817,-0.092445344,0.29678687,0.026791608,1.645123,0.0025797328,0.044709153,-0.010035505,0.33598778,0.16783224,-0.14736368,-0.14516668,0.31176943,0.36454585,-0.12407615,-0.622629,-0.0076392093,-0.20579888,-0.5688488,-0.116192944,-0.302033,-0.07418494,0.11862721,-0.41765875,-0.1253785,-0.26404336,-0.34293205,0.5754792,-2.8485084,-0.1759902,-0.07081303,0.23855916,-0.29695842,-0.34427544,-0.20749852,-0.5058991,0.37140414,0.34450766,0.37377346,-0.70173454,0.2878667,0.26561514,-0.48370603,-0.20818433,-0.6480108,-0.1521097,-0.013702019,0.19259222,0.032525077,0.04467586,-0.0024019252,0.026709715,0.5278496,0.0169077,0.074774876,0.18338054,0.48719424,0.14743476,0.42908594,0.0007085085,0.5420999,-0.24758703,-0.16620475,0.28509772,-0.30876148,0.38329926,-0.11707163,0.17407854,0.4566405,-0.5036705,-0.78880346,-0.61241096,-0.25832912,1.1399375,-0.111956365,-0.37666512,0.33343562,-0.255982,-0.14731674,-0.08847865,0.5325224,-0.11794958,-0.29631293,-0.7237107,0.14701763,-0.04446669,0.030168863,-0.0066241594,-0.015269001,-0.32453647,0.69788337,0.00310449,0.3551601,0.34868157,0.20992373,-0.20608804,-0.35126406,0.06443709,0.79877543,0.3547439,0.11503809,-0.14141934,-0.13565664,-0.5290775,-0.16663344,0.10700934,0.3555021,0.65378445,0.028177548,0.15474854,0.23981346,0.15781651,0.13009971,-0.14355071,-0.13928016,-0.0030157885,-0.1474281,0.5329924,0.51167256,-0.3245793,0.4623591,-0.051665656,0.06624493,-0.22194415,-0.32192847,0.6124794,0.92284584,-0.11512195,-0.16835362,0.49887234,0.5564889,-0.2020933,0.3278623,-0.52172935,-0.3470273,0.5373554,-0.2523305,-0.36451134,0.15752842,-0.25096828,0.09519629,-0.98315793,0.12057528,-0.08755762,-0.3293982,-0.5462427,0.0044073584,-3.3518507,0.18543002,-0.2504019,-0.11598359,-0.15122975,-0.062972516,0.10883116,-0.54800916,-0.5483671,0.16647361,0.09241721,0.5501157,-0.0074679903,0.19678882,-0.12986192,-0.17384191,-0.33394703,0.0597643,-0.017237728,0.346134,-0.037575983,-0.34689358,-0.06206368,-0.1879529,-0.37994033,0.22302571,-0.4739956,-0.4593534,-0.11797522,-0.4101572,-0.40211174,0.58504707,-0.31133252,-0.025697764,-0.1684838,-0.05174052,-0.1822963,0.40798417,0.1697082,0.15774536,-0.051485315,-0.095688805,0.03875791,-0.25670013,0.3680863,0.042101145,0.22640571,0.43960112,-0.121717386,0.2060178,0.41299242,0.6715483,-0.10950293,0.79386926,0.49749422,-0.008979678,0.35773978,-0.3245906,-0.17747141,-0.45399222,-0.3436194,-0.05760845,-0.38418624,-0.5456342,-0.16405906,-0.32845148,-0.6661093,0.37122247,0.082496814,0.25429735,-0.016845124,0.18597753,0.52834725,-0.1878426,0.07714612,-0.13262938,-0.020001112,-0.45773208,-0.25636736,-0.63782203,-0.44163397,0.23138243,0.8561739,-0.14457774,-0.053131808,0.010836617,-0.18429524,-0.03035974,-0.037572972,-0.015873363,0.20734888,0.3249251,-0.1918196,-0.6226371,0.63081044,-0.05528359,-0.25314674,-0.5486333,-0.008043701,0.42343807,-0.55852824,0.49130693,0.28408474,0.073955804,0.07343605,-0.55032593,-0.12822773,-0.075437896,-0.2806497,0.24792649,0.21147776,-0.6961098,0.42563412,0.43356666,-0.19061552,-0.76599944,0.45455638,0.14141631,-0.2754987,-0.046218563,0.2832051,0.15150674,0.041541036,-0.167903,0.23686,-0.61764866,0.3180333,0.2582215,0.022285929,0.3404404,-0.22616397,-0.16535746,-0.6794527,-0.021185001,-0.4212014,-0.13829279,0.15071742,0.12658195,0.18948358,0.11989654,0.08568857,0.30455992,-0.3538691,0.117799215,0.042989198,-0.0820064,0.073729664,0.3379992,0.4399089,-0.41600463,0.54263693,0.020686632,-0.119285375,-0.008395191,0.049337283,0.41585156,0.14868109,0.24353771,0.001690197,-0.37943947,0.34731472,0.79163176,0.115362234,0.21715865,0.025980059,-0.11399908,0.30625898,0.084337376,0.1334857,0.01917297,-0.50009507,-0.054378923,-0.09195655,0.1883171,0.5121658,0.076141074,0.3819014,-0.09829165,-0.2769845,-0.007745569,0.1943533,-0.015087571,-1.0167664,0.37804016,0.122355856,0.9518851,0.53369987,-0.14223841,0.14669363,0.45246062,-0.23816343,0.20046441,0.32084313,-0.15204464,-0.6487877,0.57585335,-0.52746606,0.41841215,-0.105677366,-0.075498395,0.07452507,-0.054875817,0.37703127,0.6585882,-0.10793206,-0.0034784903,0.004440659,-0.32275856,0.21269733,-0.42717937,-0.0026856998,-0.6191351,-0.08221755,0.6059582,0.48903835,0.20337968,-0.1736017,0.010650474,0.09923419,-0.11563014,0.08783158,0.062384132,0.2037964,-0.066748016,-0.7102904,-0.15741493,0.49191672,0.03337485,0.13615254,-0.051978365,-0.38291046,0.23599206,-0.26719195,-0.060949944,-0.13797244,-0.58968,0.0011247,-0.33041015,-0.53136116,0.4440048,0.05458116,0.321547,0.2180304,0.103614494,-0.2057159,0.31218383,0.10057027,0.6531225,-0.10970233,-0.16572815,-0.4767782,0.20643067,0.25225246,-0.19538814,-0.23803116,-0.18859936,-0.1298901,-0.45569217,0.5142464,0.0111409025,-0.1831763,0.08762466,-0.12933786,0.05196435,0.56925964,-0.16882023,-0.0052238065,-0.038718063,-0.21111248,-0.2645685,-0.0679173,-0.10142081,0.28730106,0.2706475,0.016359873,-0.101681836,-0.05799316,-0.11137425,0.40395632,-0.07680444,0.28911012,0.28210852,0.01386549,-0.324467,-0.14774638,0.27649716,0.3298261,-0.03292316,-0.19889377,-0.33684048,-0.30920166,-0.32032305,0.041081455,-0.1085254,0.3884215,0.006672327,-0.250069,0.68041146,0.051716764,1.0475689,0.18664907,-0.19063607,0.10065181,0.4842401,-0.05207918,-0.11495206,-0.39994824,0.84417635,0.46676284,0.038884778,-0.12758149,-0.18581666,0.08124237,0.21398859,-0.18968935,-0.14981203,0.0028312574,-0.6016473,-0.3781896,0.13557822,0.21692044,0.16753353,-0.13664259,-0.047725335,0.21615417,0.025446767,0.3674841,-0.4824509,-0.37586302,0.2287139,0.27244234,0.07312796,0.17284323,-0.39080873,0.4434058,-0.5617497,0.068607144,-0.24737689,0.22322689,-0.2250467,-0.18742082,0.20514804,0.09944115,0.30701873,-0.15849243,-0.43741366,-0.29362872,0.40859857,0.05279918,0.24774815,0.42852613,-0.28284344,-0.011863158,0.08833623,0.5337241,1.0777322,-0.09099916,-0.082974955,0.4015147,-0.26694572,-0.5284962,0.44011602,-0.2630791,0.15582535,0.026299192,-0.059469428,-0.512933,0.2965374,0.21422324,0.10426867,0.013282704,-0.5235104,-0.326307,0.31355426,-0.23521836,-0.26216546,-0.2783805,0.13711463,0.6197403,-0.31238815,-0.2628683,0.18190016,0.1624282,-0.2886596,-0.637326,0.103872985,-0.3841359,0.3703573,0.07668751,-0.2660213,-0.06220858,0.095644616,-0.3697162,0.16825584,0.055872105,-0.3271405,0.014548878,-0.3555028,-0.0131109,1.1547652,-0.20845424,0.2552594,-0.5517179,-0.4727545,-0.8641575,-0.43375862,0.58041435,0.05882504,0.046312407,-0.4645931,0.032572877,0.053045567,-0.0976651,-0.03073579,-0.29541942,0.44769,0.09047054,0.28932858,-0.077980414,-0.49237207,0.008017207,0.06513787,-0.22420137,-0.42341378,0.42794907,0.064829655,0.82926005,0.09711293,0.03290835,0.3971787,-0.3739558,-0.028680343,-0.21159036,-0.06627618,-0.65148515,0.11625032,952 +322,0.40141532,-0.012814947,-0.5077764,-0.12137041,-0.5222083,-0.23824188,-0.34106776,0.2580197,0.2949437,0.13232315,-0.13330835,0.04549216,0.007666232,0.36572346,-0.07969342,-0.58781445,-0.06293165,0.16386293,-0.6722861,0.7207995,-0.402219,0.34739524,0.06912546,0.4436141,0.30304042,0.47116005,0.24084152,-0.028167235,-0.19843785,-0.26492605,-0.110859156,0.2671472,-0.6162988,0.15387411,-0.28977013,-0.19345988,0.16460611,-0.49376795,-0.3052458,-0.7819533,0.075924866,-0.8730672,0.59967905,-0.0414232,-0.16892794,-0.34843102,0.37274686,0.47652918,-0.14734752,-0.12197819,0.19893561,-0.2097339,-0.039481856,-0.29608047,-0.09410552,-0.5230671,-0.45519403,-0.1183203,-0.6944485,-0.32882854,-0.10553673,0.24815884,-0.32146582,-0.14862578,-0.110501416,0.34974825,-0.4427754,0.10592575,0.3085822,-0.32550982,0.13875446,-0.4802508,0.10105205,-0.15083943,0.45148817,0.14451195,-0.18437141,0.48039505,0.31221685,0.26243088,0.31856543,-0.31983465,-0.28224766,-0.28029212,0.088850565,0.45958474,-0.08488833,-0.29124436,-0.24930115,0.07413446,0.44655818,0.40356445,0.15023085,-0.23170276,-0.00044786633,-0.17973325,-0.124316595,0.5875694,0.5209821,-0.20810984,-0.22919096,0.38362643,0.5633902,0.47163406,-0.39067748,0.018612433,-0.0052631935,-0.41091117,-0.1081946,0.06939346,-0.09252004,0.46704474,0.053852383,0.051050637,0.92775714,-0.1093703,-0.06744887,-0.05648991,0.0700433,-0.27696648,-0.3462716,-0.27156177,0.1026816,-0.48860106,0.09037938,-0.09273883,0.7050486,0.016686382,-0.64707834,0.38984188,-0.61335003,0.05095723,0.07706401,0.5985509,0.5393103,0.55464214,0.37437811,0.76699054,-0.0800765,0.1869932,0.04115486,-0.46254203,0.06424984,-0.32275453,0.12773325,-0.43928587,0.16897339,-0.23514095,0.025979655,-0.04135853,0.30170584,-0.4886898,-0.098085046,0.24843232,0.9414831,-0.2533981,-0.12395013,0.69335157,1.1884694,1.0205187,-0.1281294,0.9252003,0.31444913,-0.07520612,0.037255716,-0.30413258,-0.6437443,0.15872963,0.39733556,-0.17155658,0.38863862,-0.09062889,-0.017564291,0.3158715,-0.32564554,-0.018929236,0.07886546,0.32243195,0.25280657,-0.11932931,-0.4768282,-0.13386355,-0.0017995059,-0.05177258,0.22423717,0.26785785,-0.33596742,0.35356203,-0.015579009,1.4197466,-0.12950587,0.019453986,0.107063726,0.7481805,0.31644645,-0.061176196,0.1265785,0.60576874,0.26335734,-0.0008766373,-0.47397357,0.30278152,-0.44531468,-0.44615567,-0.12611534,-0.42682716,-0.23012343,0.25136614,-0.42333668,-0.09019225,-0.07647743,-0.0601295,0.30786875,-2.869967,-0.18896116,-0.18077183,0.2181086,-0.28017,-0.079344206,0.11324307,-0.47120172,0.1274767,0.23735365,0.47181037,-0.5652725,0.5154606,0.661685,-0.583909,-0.12817906,-0.54830587,0.0015408879,-0.114735246,0.6548959,-0.08197626,-0.055170693,-0.040867794,0.18959482,0.7320618,0.16138935,0.1437048,0.549954,0.29265213,0.12850991,0.41852984,0.03743816,0.5942117,-0.25208184,-0.1980202,0.3675854,-0.27832267,0.37592855,-0.10785346,0.044629924,0.7003163,-0.38649604,-0.8255026,-0.56451225,-0.24622396,0.91055787,-0.37569454,-0.5351817,0.21926285,-0.06772767,-0.1566102,0.13484727,0.5895745,-0.17785527,0.22506733,-0.47351533,0.04029595,-0.12375625,0.1801199,-0.014603762,0.09609644,-0.23923212,0.6737144,0.030155638,0.5709091,0.15067562,0.36615983,-0.24308255,-0.44478995,0.15747426,0.65612435,0.38328376,-0.09657116,-0.17510095,-0.3352415,-0.091768965,-0.29798564,0.07909444,0.5347376,0.6974144,-0.21930529,0.18348779,0.35470232,-0.15730104,-0.04647367,-0.16398826,-0.24346001,0.021411275,0.24334595,0.3215838,0.9056591,-0.19881783,0.52245706,-0.14078905,0.28086922,-0.17904623,-0.5740605,0.6835144,0.4298605,-0.2822744,-0.14174148,0.4980188,0.5013183,-0.4965564,0.4689246,-0.71914315,-0.12925915,0.6310537,-0.029776571,-0.5796397,0.18310149,-0.16823894,0.11438214,-0.8115701,0.41389766,-0.32809633,-0.39620343,-0.4242368,-0.12571612,-3.000859,0.058832176,-0.16368762,-0.19081208,-0.28661266,0.012261708,0.310437,-0.74392813,-0.5374633,0.08529913,0.19276902,0.4436344,-0.14063278,0.16218771,-0.24676369,-0.2741134,-0.23322651,0.36895135,0.016408818,0.39330614,-0.31702718,-0.50533956,-0.067789696,0.043278582,-0.57966036,0.18764171,-0.5504522,-0.26739985,-0.054293178,-0.5791709,-0.18032025,0.591879,-0.42607778,0.0874873,-0.30515727,0.073672704,-0.25921458,0.113406196,0.18165855,0.1383431,0.18718295,-0.04109342,0.0359932,-0.37803954,0.45004413,-0.11663588,0.4782768,0.10771645,0.016515834,0.17901243,0.41804692,0.51900965,-0.26542795,0.9906814,0.42299905,-0.113419905,0.29985395,-0.30121383,-0.239805,-0.57845396,-0.3804573,-0.080871984,-0.3785944,-0.6058572,0.009917382,-0.31639975,-0.7978998,0.6307917,0.026420541,0.49472174,-0.05506646,0.09176664,0.36716846,-0.30289987,-0.06990995,0.014152744,-0.18447587,-0.5635558,-0.18287887,-0.59011406,-0.5467417,0.14093521,0.83300215,-0.25871423,-0.09885854,0.014218315,-0.4106097,-0.004402415,0.10218067,0.02499186,0.22695789,0.390944,-0.05559944,-0.62456065,0.35735467,-0.058556914,0.030733492,-0.42468703,0.053933375,0.6524128,-0.71735775,0.58392876,0.18453808,0.12799856,-0.32630718,-0.5221498,-0.23678038,0.040337894,-0.1483984,0.5439355,0.18561956,-0.7639044,0.4131208,0.09450214,-0.58519214,-0.62984747,0.2727127,-0.17708646,-0.2616803,-0.011553421,0.28021222,0.08379211,-0.1039481,-0.21327439,0.18802384,-0.33373126,0.18248424,0.25300664,-0.13360296,0.33650842,-0.087225564,-0.34759447,-0.73395294,0.08046477,-0.46540177,-0.39450333,0.4099455,0.01947598,-0.09096625,0.1294933,0.22843264,0.28491715,-0.16098467,0.19588928,0.027372463,-0.27997914,0.37663487,0.49285692,0.4636612,-0.43916368,0.58946365,0.190266,-0.2463286,0.1491999,0.0023770968,0.28756636,-0.101930246,0.40548703,0.02349492,-0.012792424,0.24542548,0.5908248,0.21766533,0.51588196,0.084314324,-0.19378565,0.45353362,0.007471303,0.25945583,-0.02715169,-0.57983655,-0.103673205,-0.14224765,0.09403561,0.5966498,0.39728495,0.30657133,0.2004293,-0.20275797,0.049351268,0.12877005,-0.21456629,-1.3102206,0.34587842,0.46306974,0.8885706,0.21512532,0.09527337,-0.22529055,0.88660043,-0.3001756,0.029488983,0.4805226,0.17419952,-0.48301098,0.76422274,-0.48320666,0.48739108,-0.08888361,-0.1311418,0.21253294,0.10351087,0.45502275,0.7913429,-0.20831053,0.003731745,-0.09605595,-0.28268987,-0.06962264,-0.24644178,0.084324405,-0.35512313,-0.50648886,0.69354814,0.3879492,0.38026258,-0.19209573,-0.04311318,0.08282873,-0.106614254,0.18894388,-0.10261683,-0.08961343,0.073198214,-0.44442362,-0.2590353,0.666612,-0.10869967,0.10951779,-0.19753994,-0.28299457,0.13074522,-0.19609417,0.019720905,0.006471747,-0.72069705,0.08484366,0.025047142,-0.57622916,0.54040974,-0.22437574,0.091250926,0.05797694,-0.06283893,-0.08829351,0.49142107,0.15697818,0.68927413,0.0024461427,-0.1826084,-0.21708962,0.16169003,0.19528215,-0.18808177,0.057132967,-0.35497406,0.008109748,-0.6133795,0.48297527,-0.28508556,-0.495565,-0.07795849,-0.21375646,-0.06831939,0.6035853,0.06305849,-0.24037625,0.065758,-0.32919723,-0.5047765,-0.07456876,-0.2859974,0.18277435,0.21148112,-0.21239875,-0.1253904,-0.1796995,0.019557988,0.42952365,-0.14407201,0.46487018,0.20837453,-0.04738502,-0.12525027,0.040071834,0.23426907,0.45833904,0.14852749,0.24421152,-0.19940208,-0.35381338,-0.41100147,0.17161182,-0.15844369,0.24341415,0.14233463,-0.33351427,0.96321684,0.058912117,1.4405264,0.14499193,-0.39522925,0.2599389,0.63346696,-0.072578765,0.15552145,-0.49187028,1.0385053,0.4851994,-0.10203872,-0.08463363,-0.49811667,-0.13243727,0.23666434,-0.44627762,-0.022992253,0.0059492867,-0.4980273,-0.19190216,0.07083922,0.1871377,0.09750896,-0.03528247,-0.12573327,0.1158086,0.17004225,0.43262067,-0.52953506,-0.25553763,0.3360385,0.24289718,-0.09267889,0.062861994,-0.46018606,0.47133234,-0.64646053,0.21461192,-0.5326523,0.23908158,-0.42771754,-0.47411174,0.08322595,-0.10104696,0.4362231,-0.39827445,-0.36841905,-0.09736852,0.48751342,0.123718545,0.098698,0.6655989,-0.24295211,0.015959991,-0.009055972,0.5620363,0.967701,-0.46610996,-0.086782865,0.2809029,-0.42957896,-0.6177054,0.34109876,-0.48345956,-0.10217737,-0.15841705,-0.57832927,-0.51892775,0.2144329,0.03969615,-0.039290976,0.0030179957,-0.5649429,-0.08504152,0.24244754,-0.20408373,-0.23228207,-0.15099214,0.30851337,0.86465925,-0.21804349,-0.5861193,0.031042771,0.20485362,-0.20458262,-0.5073563,-0.05969082,0.009299827,0.35492522,0.078998104,-0.37696713,-0.09865988,0.3356228,-0.54447967,0.015372385,0.23845543,-0.38700894,0.16870697,-0.23360504,-0.004049599,0.9232488,-0.28156143,-0.22556092,-0.6756163,-0.5777178,-0.92730844,-0.62892526,0.012157611,0.23256403,0.001338172,-0.43019444,0.07072794,-0.20102951,-0.100541785,0.03639013,-0.6898978,0.30325925,0.08379528,0.57003814,-0.32095775,-1.0723782,0.17321578,0.13110504,0.03933462,-0.7715848,0.53770036,-0.1887575,0.89245784,0.14031525,-0.0689608,-0.040815074,-0.42215523,0.09500973,-0.3841919,-0.21253824,-0.8252143,0.22505918,956 +323,0.29536846,-0.118660115,-0.53096265,-0.15542385,-0.1785058,-0.018501054,-0.20091654,0.39106885,0.2733552,-0.4492233,0.13282105,-0.26096082,-0.12578185,0.29284236,-0.12993294,-0.51583177,-0.084798194,0.1447448,-0.43319115,0.6398618,-0.27799764,0.37930638,0.18011627,0.15656339,-0.07968607,0.21327108,0.013627452,-0.31239644,-0.21391399,-0.13566808,0.065936856,-0.089230046,-0.45667067,0.27630848,-0.16128387,-0.11405204,0.32829237,-0.40872812,-0.3624719,-0.7132227,-0.001911517,-0.6173021,0.59885186,-0.087685436,-0.38915634,0.18259296,0.09525943,0.448293,-0.12817518,0.007298716,0.3064852,-0.19096948,-0.37240067,-0.18409759,-0.15710758,-0.74083537,-0.49334157,-0.17667982,-0.49491844,-0.088235594,-0.1374871,0.14352408,-0.2955712,-0.077496305,-0.19750796,0.51750475,-0.5051565,-0.050167456,0.18345903,0.001344047,0.36654717,-0.7175581,-0.06928373,-0.13486038,-0.016227182,0.16768508,-0.15617864,0.43398234,0.14867815,0.47666305,0.0133771105,-0.18503945,-0.16658582,-0.07579071,0.02589488,0.46029,-0.06698964,-0.19967943,-0.15983428,0.044632927,0.29940468,0.12948725,0.009401942,-0.30937952,-0.0010716438,-0.05863281,-0.24711452,0.076558575,0.42782438,-0.269934,0.034567934,0.32094613,0.445375,0.0144677125,-0.1743798,0.04789681,-0.10791347,-0.33777675,-0.12905726,0.09643005,-0.2483098,0.6830845,0.057895865,-0.02027055,0.52645326,-0.021715725,-0.19201827,-0.08247637,0.1592625,0.20843272,-0.101290576,-0.45779073,0.43385154,-0.64244235,-0.108782955,-0.37716597,0.63148534,-0.011452467,-0.8040733,0.3020266,-0.38596752,-0.049035,-0.043674525,0.58373535,0.7352213,0.7196739,0.21067469,0.7413521,-0.5694441,0.23125288,-0.0661804,-0.2303872,0.30156028,-0.21001436,0.16926704,-0.5147377,-0.060155496,-0.07736127,-0.36943468,-0.2088113,0.52627546,-0.53650963,-0.019178033,0.20632274,0.7666205,-0.3350701,0.0056339423,0.43104497,1.258846,0.94710934,0.06471099,1.121565,0.305411,-0.3642939,0.06929627,-0.2700814,-0.65166646,0.10643967,0.26446673,0.17937002,0.22354235,0.12015783,-0.028296877,0.3994374,-0.45658502,-0.033511054,-0.10182328,0.4567625,-0.087800905,-0.07203279,-0.5060412,-0.21203701,0.021799732,0.0043567717,-0.055262424,0.34498698,-0.1223295,0.18852669,0.21602353,1.6508541,-0.021283276,0.09361874,0.12465799,0.38324806,0.27150917,-0.0056189536,-0.0871153,0.44060346,0.18961395,-0.023876278,-0.52380955,0.05719315,-0.26248416,-0.4626756,-0.059509195,-0.21192689,0.10675998,-0.029672926,-0.35177523,-0.29912406,0.03238114,-0.38479635,0.40134534,-2.5422385,-0.088002,-0.03729737,0.24992853,-0.23770224,-0.20274608,0.1909315,-0.44272748,0.47908497,0.47251382,0.43352112,-0.41507998,0.35442206,0.52882975,-0.5111034,0.0036516427,-0.5587591,-0.19065943,-0.09990141,0.3709373,-0.005489552,-0.27328074,-0.024102287,0.11886705,0.4317756,-0.10003908,0.15013833,0.33535206,0.2124616,0.11012689,0.5505319,-0.041076496,0.45641795,-0.11061306,-0.10020471,0.19609255,-0.31102127,0.19465011,-0.13916782,0.14525083,0.4082573,-0.44685262,-0.5849925,-0.44780126,-0.15455645,1.0389372,-0.31868693,-0.28081942,0.24439855,-0.08888688,-0.17011113,-0.05984757,0.43180427,0.13027126,0.046527896,-0.7523726,-0.15549085,0.08627454,0.30889103,0.12028202,0.18998857,-0.5393806,0.50667936,-0.13941827,0.5211203,0.56873447,0.1923296,-0.11141488,-0.43860015,0.030347006,0.9174346,0.36178696,0.12662011,-0.3210804,-0.17692462,-0.2796368,-0.0421403,0.11886131,0.2788499,0.9728498,-0.037029553,0.01475668,0.16589783,-0.3376262,0.07305967,-0.16936317,-0.54988,-0.007862846,0.22607845,0.47924736,0.49268454,-0.0396265,0.44042876,0.0446976,0.3548651,-0.1770841,-0.44888848,0.40905267,0.75048554,-0.21320054,-0.15785433,0.5459006,0.5424932,-0.08485827,0.564483,-0.5538854,-0.28591305,0.56594557,-0.097022034,-0.5655225,0.3994833,-0.36937475,0.1890514,-0.98485595,0.40862548,-0.3272011,-0.59968823,-0.7603912,-0.055001445,-2.854246,0.11923776,-0.08000584,-0.062490877,0.16718842,0.08308521,0.35404682,-0.5456645,-0.4920279,0.17732042,0.1735848,0.5210296,-0.09566368,-0.16778873,-0.2708702,-0.4367553,-0.25296444,0.3439636,0.084428996,0.13407968,-0.028670693,-0.4535472,-0.10317491,-0.3458377,-0.28907546,0.07811725,-0.38598284,-0.32414615,-0.29959857,-0.5430442,-0.39830902,0.7278649,-0.2817045,0.012846342,-0.15595451,0.15497223,0.19022647,0.13930242,0.0751039,0.16281897,0.04492145,-0.23958655,-0.10922192,-0.35107702,0.062004957,0.22593822,0.34663072,0.4368716,-0.045488257,-0.007520147,0.76193744,0.6169062,-0.12962739,0.8633663,0.43632373,-0.18986616,0.30884135,-0.32555294,-0.08988441,-0.600352,-0.28674462,-0.24498034,-0.3297787,-0.53341997,0.13660628,-0.41228607,-0.71915424,0.54617345,-0.0026583513,0.057641767,0.08430295,0.35919735,0.36021185,-0.25403827,0.01650198,-0.19085269,-0.15950142,-0.42838523,-0.3585471,-0.8228342,-0.40429673,0.10632982,1.3851174,-0.11981848,-0.052220926,0.0778056,-0.19466709,0.1371386,0.08619301,0.09466713,0.22306539,0.27914906,0.07209525,-0.71040165,0.41457018,0.08223219,0.06280099,-0.6144098,0.28255934,0.6045402,-0.7337349,0.31895626,0.42522573,0.12309634,-0.108811475,-0.7934159,-0.2163716,0.23498778,-0.32573482,0.53170955,0.0870814,-0.8387588,0.4163699,0.18468894,-0.40489167,-0.76503485,0.33541495,-0.17787284,-0.3541149,0.13513324,0.28909054,-0.015515101,0.20957416,-0.3611801,0.3183157,-0.59089667,0.2019844,0.3325523,-0.14554492,0.28294075,-0.14973,-0.13993683,-0.94006413,0.054598577,-0.49517733,-0.3125345,0.33190632,0.16990407,0.1102574,0.255408,0.43793297,0.4882905,-0.1963234,0.029418338,-0.18004127,-0.3878171,0.6203251,0.53485674,0.26678663,-0.26074567,0.4629244,-0.18650156,-0.12295561,-0.4081081,-0.061442815,0.41601732,0.14956191,0.22236411,0.1063105,-0.2501237,0.21896692,0.8420875,0.24021381,0.42241102,0.13153519,-0.20129801,0.4116384,0.05497475,0.02169054,0.08691667,-0.41070995,-0.15102257,-0.09846322,0.20299965,0.4441333,0.073999576,0.35162476,-0.21485327,-0.15678073,0.13449337,0.27746832,0.07953194,-0.6886452,0.39201418,0.12731217,0.46626556,0.78356177,0.24708344,0.019447485,0.61313325,-0.38435906,0.09376994,0.3823728,0.051687438,-0.47246268,0.53027344,-0.6014704,0.20801535,-0.09416248,-0.07192173,0.10334095,-0.018922806,0.6151609,1.0098951,-0.11915894,-0.01072858,-0.15542327,-0.16583437,0.12904762,-0.21899655,-0.03924079,-0.4497428,-0.47253147,0.65074855,0.11389948,0.35023987,-0.17071442,-0.087517194,0.113047674,-0.20684865,0.6477864,-0.059731547,-0.06710566,-0.017520426,-0.4202018,-0.28368047,0.49771544,-0.16291808,-0.07305115,0.008274981,-0.055999495,0.111464776,-0.124098174,-0.10399015,0.065760344,-0.6313362,0.042522863,-0.27870825,-0.3935977,0.79257596,-0.2116566,0.26168177,-0.013413885,0.14841549,-0.24921367,0.17086174,0.32423654,0.47952235,0.024541872,-0.26919147,-0.100370996,-0.025062036,-0.05135084,-0.26016316,0.08282091,-0.1857172,0.10593966,-0.9255012,0.47706094,-0.18856254,-0.26937154,0.09312506,-0.29946962,-0.06432044,0.45676774,-0.31426987,-0.14591575,-0.06704315,-0.08293249,-0.09712229,-0.34110248,-0.32967553,0.122830436,-0.32646352,-0.11323927,-0.10545143,-0.10431321,0.11939258,0.5919026,0.035853114,0.12591968,0.32632405,0.12157784,-0.5893135,-0.08790441,-0.05928444,0.34182847,0.03476806,-0.06949141,-0.41426358,-0.21219444,-0.2833766,-0.04927995,-0.1653164,0.37028015,0.14362644,-0.42588785,1.0499082,0.07605871,1.1227727,-0.1122384,-0.41170442,0.029995164,0.6577949,-0.058930643,0.09878157,-0.5082035,0.96325517,0.8055116,-0.021297531,-0.13200079,-0.38400352,-0.18074577,0.32109845,-0.3093508,-0.20996994,-0.043717857,-0.7612623,-0.30015832,0.28299806,0.27999738,0.017028606,-0.028601121,0.11884419,0.16106328,0.26170295,0.36165053,-0.39922792,0.046049904,0.2970943,0.16549882,0.2340947,0.17441593,-0.40137917,0.26118276,-0.6824586,0.18235478,-0.19267167,-0.09700391,0.029022912,-0.34937844,0.2141443,0.20267907,0.17621501,-0.19363806,-0.3472889,-0.012470475,0.4771293,-0.015830679,0.28096953,0.76469773,-0.2884956,0.023260562,-0.017445628,0.5330051,1.233279,-0.33149508,-0.20070873,0.38051245,-0.44839278,-0.69243336,0.1983211,-0.4296959,0.12277635,-0.09808251,-0.42318276,-0.5751283,0.14106597,0.20654258,-0.36079803,-0.08993778,-0.5470332,-0.19271103,0.29770395,-0.3941002,-0.1728598,-0.20953685,0.14521068,0.7826661,-0.35971165,-0.31237394,-0.11193201,0.24345157,-0.31915388,-0.5453338,-0.023453835,-0.41498503,0.33951774,0.27303854,-0.43852898,0.18825859,0.13693672,-0.5594715,0.056761947,0.3527289,-0.3437442,-0.018740714,-0.4802688,0.13512519,0.78525543,0.15146758,-0.05254821,-0.46858475,-0.5549255,-0.9529359,-0.33052355,0.35625294,0.113721415,-0.041423857,-0.5111347,0.036568277,-0.19080795,0.09105278,-0.07165313,-0.4902879,0.32514918,0.14726393,0.29058826,-0.2323792,-0.99570197,0.031714074,0.08807537,-0.24082583,-0.40907958,0.5795946,-0.22483024,1.0933571,0.13922344,0.0017157674,0.15677196,-0.70487684,0.44780445,-0.3683664,-0.28911132,-0.45091873,-0.107090846,960 +324,0.55741185,-0.33680478,-0.64766234,0.10777437,-0.21382897,0.27318686,-0.25027615,0.41550013,0.21908598,-0.31870493,-0.03862896,0.07805692,-0.2058791,0.25918528,-0.19750248,-0.41656098,-0.19604947,0.19234271,-0.5530268,0.5944375,-0.26046842,0.3061919,-0.044562336,0.23658967,0.18827142,0.2585225,0.13362952,0.07601842,0.031776372,-0.22121356,0.15862055,-0.034858204,-0.5747207,0.40397742,-0.16233951,-0.34956497,-0.14339916,-0.398994,-0.5062777,-0.7008273,0.3744282,-0.7907089,0.7011768,0.027729876,-0.26218763,0.121904746,0.05620592,0.28920606,-0.14033756,-0.0078822635,0.14244534,-0.305325,-0.21517245,-0.29982966,0.10058684,-0.2878606,-0.58409715,-0.07489775,-0.4986983,0.12271985,-0.17426945,0.23064639,-0.34595406,0.16981028,-0.2707925,0.41963425,-0.3702518,0.089673445,0.19649929,-0.27350202,0.09746163,-0.6299448,-0.14175676,-0.05093863,0.021835614,0.089682005,-0.12911561,0.3779013,0.00053551694,0.49138933,0.0113096535,-0.19712634,-0.2833725,-0.049034,0.09678085,0.5573486,-0.13223614,-0.26786646,-0.19062267,-0.124306455,0.51224816,0.040798917,0.013392468,-0.19053274,-0.085149124,-0.04795498,-0.105669394,0.3946868,0.687411,-0.23188414,-0.00967687,0.5155752,0.51517755,0.05126454,-0.08519289,0.14176792,0.028678037,-0.42624655,-0.17095979,-0.0043145576,-0.10471826,0.45314842,-0.04963743,0.27994603,0.51591873,-0.20027263,-0.16070077,0.35815617,0.20035999,0.020765606,-0.18821615,-0.41614336,0.3314996,-0.53501374,0.0041411477,-0.28658372,0.7377978,0.0768808,-0.805026,0.35561892,-0.4962212,0.13315837,0.10188233,0.6080294,0.7040547,0.7555509,0.10451921,0.949131,-0.31556785,0.026182063,-0.18734483,-0.19411272,0.20595399,-0.19173782,-0.18678282,-0.42716706,0.06242293,0.21051426,-0.11986046,0.026184147,0.41472623,-0.5302934,-0.16094805,0.05778903,0.5851933,-0.18011338,-0.010644937,0.7319637,1.1382977,1.0428402,0.13831984,1.0720307,0.11821849,-0.23886682,-0.22975269,-0.059802365,-0.89271283,0.26849568,0.292849,-0.05702222,0.46724054,0.23136427,-0.19522545,0.2730843,-0.43738422,-0.2138193,-0.00078320305,0.26282752,-0.11695831,-0.097003095,-0.45905125,-0.27455655,0.17072757,0.00896964,0.20295961,0.35503516,-0.36931908,0.34077966,0.22020763,1.3402735,-0.17355026,0.24084933,0.24070698,0.21127678,0.2192553,-0.24843259,0.022898054,0.16237898,0.3519076,0.09717175,-0.527845,0.08548386,-0.2578381,-0.51924247,-0.1474155,-0.13998128,-0.061655626,-0.074980214,-0.32940352,-0.30669972,-0.21093361,-0.4339927,0.35288665,-2.7557485,-0.08702073,-0.0371576,0.45428506,-0.29995856,-0.28567156,-0.095467806,-0.43917826,0.22762717,0.38778582,0.4107055,-0.71709865,0.3585066,0.29651308,-0.62379223,-0.004064353,-0.5235198,0.047746256,-0.013599229,0.3922959,0.020523317,-0.2297011,-0.069185734,0.2039717,0.5041787,-0.10174009,0.054714017,0.5310576,0.21442667,-0.084701434,0.18943663,-0.10231174,0.36566767,-0.6078361,-0.14543651,0.5197674,-0.5357813,0.13084665,0.05650049,0.16262752,0.374289,-0.5309592,-0.7484547,-0.5110661,0.08740017,1.2671674,-0.36286935,-0.55193686,0.15489273,-0.24895146,-0.26073858,-0.0018570344,0.37843385,-0.19778535,-0.015845085,-0.75190735,-0.057808835,-0.23175262,0.52161235,-0.03353823,-0.036317382,-0.4675468,0.72836214,-0.06970822,0.79658955,0.36708146,0.2899813,-0.29457524,-0.3851886,0.13203308,1.0465015,0.66179657,0.13634679,-0.17325646,-0.114592396,-0.17637606,-0.22404672,0.20775266,0.50945055,0.6808618,-0.07446251,0.07275368,0.30792704,-0.020821193,0.076758124,-0.1178955,-0.31592572,-0.16617365,0.12673847,0.623865,0.6314242,-0.047828726,0.18298377,0.021626746,0.36944488,-0.11923501,-0.47023758,0.50909656,0.8313894,-0.08004829,-0.36414996,0.57010436,0.5362178,-0.13458855,0.5687149,-0.70511067,-0.5362429,0.37078175,-0.09745021,-0.4154618,0.21429329,-0.4240293,0.34735197,-0.7950452,0.32226288,-0.30553025,-0.6081347,-0.6192389,-0.08422346,-2.39254,0.13589214,-0.22254118,-0.13510625,-0.1170701,-0.022617765,0.30974367,-0.6451293,-0.61335,0.07073701,0.23678665,0.71627337,-0.08955499,0.052736863,-0.06528587,-0.3423171,-0.35932344,0.28147534,0.24061346,0.19230522,-0.009657886,-0.40405422,-0.325183,-0.08717598,-0.28492206,-0.007612284,-0.5764578,-0.38439363,-0.22398901,-0.548599,-0.36480534,0.5824747,-0.25503746,0.042545877,-0.18187237,0.046765573,-0.016493503,0.2320986,0.08471996,0.043297514,-0.0053239665,-0.27842033,0.21485463,-0.23814252,0.3349969,0.04468373,0.32109728,0.56413007,-0.41139203,0.03497996,0.57231134,0.5939675,-0.087049514,0.90048355,0.37029108,-0.13115351,0.3482271,-0.16670386,-0.39520136,-0.49258024,-0.17543812,0.13301133,-0.36565363,-0.15530199,0.0022892356,-0.35803196,-1.0517813,0.5254356,-0.012257229,0.31790236,-0.010192005,0.27933136,0.42561644,-0.12477218,-0.08910371,-0.12824765,-0.19752744,-0.37637505,-0.23726897,-0.777325,-0.38433582,-0.06780286,1.2452781,-0.2167341,0.043488692,0.20354916,-0.19227777,0.1556366,0.047696017,0.10995649,0.18247119,0.4747172,0.089376904,-0.6127705,0.39516535,-0.3281795,-0.12360768,-0.48396543,0.3057666,0.6136917,-0.61542284,0.1950025,0.42841306,0.1190938,-0.1963462,-0.5563147,0.041702125,-0.035130765,-0.044077992,0.42375356,0.31918827,-0.649743,0.4701956,0.23048477,-0.38619518,-0.6140908,0.3030285,0.020438232,-0.10861357,-0.22425842,0.39316073,-0.07365771,-0.06024054,-0.09949481,0.22565109,-0.34502402,0.2640777,0.022157626,-0.1340119,0.39578724,-0.21998173,-0.23616856,-0.73144466,0.16000906,-0.58217496,-0.031397093,0.20062661,0.09175407,-0.032962088,0.023347182,0.10543569,0.5553449,-0.36238137,0.10276006,-0.18434347,-0.43535078,0.7168143,0.54505235,0.40407073,-0.31673563,0.681035,0.10389069,-0.15093909,-0.30946502,-0.0358534,0.46030518,-0.100328766,0.23533122,0.09230308,0.025966985,0.18771015,0.5976266,0.31068316,0.33016744,0.04623843,-0.14564934,0.17070833,0.08904065,0.15610763,-0.061772473,-0.5960548,-0.0356123,-0.12997597,0.106281996,0.48031372,0.11184058,0.45570466,-0.23653625,-0.2794687,0.006932547,0.08882939,-0.22765633,-1.3182654,0.37222087,0.04845656,0.70805764,0.56845295,-0.006080453,0.08193707,0.60149246,-0.10428222,0.1223021,0.25911447,-0.07508305,-0.49189076,0.48917547,-0.65876216,0.47042802,-0.0010143698,0.05763537,0.21053143,-0.031892285,0.58513266,0.6975914,-0.103741266,0.085873984,-0.08239495,-0.24786739,-0.011606244,-0.29941204,0.29482153,-0.557295,-0.34651247,0.8506152,0.26652673,0.56936735,-0.1231683,-0.025313172,0.014715477,-0.056408104,0.44741535,-0.06905317,0.1982546,-0.31713867,-0.4437669,-0.15353881,0.6025835,-0.02651995,0.059384745,0.061985515,-0.049386393,0.18349367,0.048313525,0.03085317,-0.11815819,-0.75995904,0.2509847,-0.32945728,-0.31007177,0.407254,-0.14367771,0.26722303,0.22942352,-0.053703323,-0.46506754,0.14345707,0.24889842,0.7050867,-0.04444305,-0.20815805,-0.27447975,0.2357801,0.27193674,-0.13976015,-0.020988517,-0.24413,0.11071571,-0.6603591,0.40591577,-0.2923248,-0.1322443,0.27944717,-0.2046371,0.045701265,0.6336071,-0.13438453,-0.29109195,0.16344094,0.0666948,-0.42798913,-0.4371494,-0.17324859,0.12755015,0.30818376,-0.00571121,-0.00419329,-0.0804447,-0.10825967,0.1256677,0.22035189,0.29519284,0.42977244,-0.012486305,-0.48783648,0.02880807,0.05234183,0.4519303,0.10673719,-0.031774886,-0.57626635,-0.550997,-0.3957478,0.2874085,-0.08491267,0.25514457,-0.003436593,-0.25194627,0.8569947,-0.008006537,1.0045756,-0.07924595,-0.34362444,-0.024786567,0.62176126,-0.09108117,-0.255627,-0.2930772,1.085271,0.72181755,-0.15388092,-0.18198314,-0.4334378,-0.12251528,0.13291174,-0.26896477,-0.24981835,-0.009457541,-0.70574963,-0.15305571,0.12896657,0.31964558,-0.04389124,-0.2594096,-0.10793132,0.33741218,0.015246149,0.090945736,-0.3967091,-0.12031745,0.3988217,-0.05379802,0.06759788,0.060571976,-0.5731378,0.24141155,-0.65474445,-0.040699124,-0.120507255,0.05628412,-0.058464646,-0.42753965,0.25779358,0.084218055,0.2715929,-0.49171218,-0.30957678,-0.069025725,0.37213284,0.1122802,0.017281642,0.66041946,-0.27653632,0.06979144,0.11726384,0.40169346,0.91901386,-0.34844977,0.045077696,0.16393709,-0.40526995,-0.66342735,0.2262645,-0.21300684,0.10600813,-0.15732187,-0.31736958,-0.57413864,0.25118533,0.20379482,-0.03395583,0.07223602,-0.75456995,-0.20605206,-0.015575093,-0.4375618,-0.16029969,-0.36498165,-0.058313467,0.6625057,-0.27839717,-0.42751387,0.08638822,0.28888804,-0.039481737,-0.5466746,-0.03252347,-0.28351432,0.14526619,0.07720725,-0.2378296,-0.12421873,0.28184384,-0.43713725,0.008091664,0.13948928,-0.2866942,-0.05496026,-0.43992093,0.031593632,0.6086391,-0.16468102,0.10795841,-0.54423153,-0.41778043,-0.9666721,-0.41713634,0.20496076,0.21756043,0.093697906,-0.7430513,0.0115690585,-0.29586282,-0.06371928,-0.28328317,-0.33915812,0.50271493,0.19182311,0.30678627,-0.1707571,-0.803735,0.12199715,0.09547686,-0.12111128,-0.347869,0.4705432,0.08579052,0.8439579,0.1748629,0.13936397,0.25368342,-0.8518754,0.030839555,-0.15567915,-0.1959836,-0.5564766,0.13353835,965 +325,0.4087749,-0.22904398,-0.44175628,-0.13983645,-0.038673755,0.14900889,-0.17578131,0.27197078,0.21551809,-0.3298087,0.036498364,-0.2644142,0.097872205,0.6099893,-0.04113434,-0.72457445,0.04320344,0.088028856,-0.6362991,0.53754437,-0.5382833,0.45543632,-0.03432191,0.2521385,0.06794907,0.30964443,0.31681558,-0.041815527,0.07749915,0.13756618,-0.11783478,0.24167247,-0.4673065,0.04797089,0.054405928,-0.23809052,0.03960739,-0.2559386,-0.45038864,-0.5944964,0.4574247,-0.8289807,0.35206586,0.00807209,-0.30074602,0.2863072,-0.008788959,0.2819266,-0.47201544,0.1344154,0.14555407,0.08716265,0.123650424,-0.2509284,-0.28091842,-0.4429565,-0.4181711,0.053115495,-0.5520106,-0.32052284,-0.3527263,-0.0043530692,-0.2776529,0.11242846,0.07846756,0.12197009,-0.45283964,-0.15960671,0.318961,-0.14755912,0.24555609,-0.41610622,-0.017730366,-0.113383666,0.19145839,-0.18431863,-0.068165585,0.32766178,0.31370527,0.6165856,-0.1160253,-0.12531206,-0.23997055,-0.022902194,0.16649812,0.5109056,-0.13365313,-0.41968346,-0.21924217,-0.0002698342,-0.015119372,0.09997352,0.09552849,-0.40017214,-0.13080646,-0.004166009,-0.2560506,0.2077119,0.41818315,-0.539192,-0.34547082,0.44277066,0.53674287,0.14296831,-0.068668954,0.16736993,0.08621917,-0.38912874,-0.21949701,0.16251026,-0.13207386,0.45229033,-0.04679559,0.17844509,0.7311372,-0.10740985,0.25275466,-0.29298756,-0.07756364,-0.17360494,-0.19463377,-0.09895641,-0.0035913626,-0.39495018,0.07886494,-0.07293519,0.711264,0.3980743,-0.6977326,0.4991564,-0.4110047,0.19522569,-0.23160455,0.5112735,0.70379746,0.19998795,0.09007803,0.7362678,-0.6899211,0.22171097,-0.10604331,-0.33461717,0.21646541,-0.21689647,-0.12813509,-0.46280432,0.2256252,0.042799808,-0.091650866,0.08531426,0.36860764,-0.47850454,-0.09636062,0.09218972,0.85673946,-0.3927541,0.13312714,0.4291537,0.9328537,0.79041004,-0.039079923,1.1780131,0.52135116,-0.2867154,0.32867062,-0.31927332,-0.8919671,0.19507305,0.46688753,0.34303847,0.34849584,0.14301893,-0.071170345,0.33532298,-0.28589243,0.089712635,-0.22670938,0.23695531,-0.062942185,-0.09886886,-0.29954544,-0.098674245,-0.06845915,-0.082848474,0.061893653,0.23552631,-0.1755394,0.16357186,-0.025255863,2.1433313,-0.069530085,0.14296539,-0.032689225,0.522812,0.3871399,-0.19691725,-0.1433881,0.40162858,0.461903,-0.00016543866,-0.6409866,0.13990976,-0.2327914,-0.4494639,-0.19547231,-0.37690264,0.12944376,0.04432681,-0.43240547,-0.0337217,0.105981596,-0.16029647,0.4046292,-2.6968586,-0.24179225,-0.1553558,0.34802607,-0.4400913,-0.25029817,-0.26381722,-0.2975528,0.36360237,0.42874068,0.35136604,-0.5899354,0.26747885,0.3865063,-0.22288388,-0.08525203,-0.4624693,-0.08133759,-0.02421943,0.3889908,-0.14928149,-0.05656739,-0.107711144,0.43260768,0.24614035,-0.0025804916,0.08202468,0.19580337,0.38153654,0.23263402,0.3781971,-0.08699172,0.474853,-0.20725074,-0.08916044,0.38137683,-0.24432285,0.29629248,-0.026865752,0.18076853,0.308132,-0.52780414,-0.8637699,-0.5661508,-0.33607417,1.0394187,-0.48138365,-0.40362296,0.3561582,-0.0460766,-0.10707422,-0.03864516,0.37405765,-0.053149324,-0.15691002,-0.7767811,0.12587072,0.0057750545,0.22895975,0.104725614,-0.052703302,-0.20777453,0.589686,-0.0270528,0.4999141,0.17789786,0.12284245,-0.0062810103,-0.49081337,0.032131378,0.92936146,0.2752846,0.14932175,-0.2322416,-0.21742915,-0.37056336,-0.20350914,0.018449286,0.2800114,0.8086423,0.07216406,0.054948073,0.14571117,-0.097411595,-0.023599874,-0.13108633,-0.29174784,0.10196145,-0.05685656,0.5747969,0.47726172,-0.24651732,0.40657315,-0.0849439,0.1379727,-0.219415,-0.5325397,0.62236077,0.89682317,-0.097949974,-0.16890712,0.4748791,0.2923197,-0.49356046,0.45219025,-0.7691447,-0.27440515,0.5325862,-0.19752179,-0.20794494,0.2894078,-0.32097182,0.036553454,-0.88150024,0.23839286,-0.048574354,-0.09895756,-0.42102763,-0.20236264,-3.9476228,0.12724473,-0.112598605,-0.22914465,-0.01914099,0.10278257,0.44779283,-0.4777389,-0.54675865,0.19856307,0.023474602,0.6092905,0.07757078,0.15084948,-0.31707278,-0.04332478,-0.3996769,0.07693798,0.011815739,0.3504605,0.11143355,-0.4407673,-0.13551484,-0.20067532,-0.28988025,0.10821117,-0.56069815,-0.49338427,-0.28293973,-0.49408022,-0.07620538,0.6035427,-0.18571559,0.01940697,-0.19776887,-0.0658355,-0.26322645,0.24079694,0.33321652,0.12829922,0.0026431403,0.028552098,-0.19031286,-0.4151774,0.2576014,0.10810096,0.17168468,0.21646087,-0.092480294,-0.07226661,0.51229304,0.50833756,-0.08329894,0.5269031,0.4606734,-0.11650049,0.35884288,-0.33815295,-0.1497495,-0.4063149,-0.40612087,-0.37207383,-0.32094017,-0.5839612,-0.22235708,-0.36386314,-0.6853179,0.42924914,-0.018220885,0.21403077,0.05184611,0.012773291,0.37965205,-0.11072119,0.020946454,0.0026500304,-0.16634029,-0.583278,-0.3146291,-0.52859324,-0.4341087,0.5770019,0.74018425,-0.188226,-0.09927518,-0.102321126,-0.19764659,-0.08447062,-0.14456327,0.13994072,0.3434995,0.23501904,-0.0057039578,-0.6618559,0.57952416,-0.102359615,-0.16788967,-0.66331476,0.04240296,0.49551374,-0.6111914,0.49962905,0.19833134,0.13356961,0.108814865,-0.5131633,-0.2865483,0.121026285,-0.31684712,0.30516356,0.08621963,-0.7935003,0.42025247,0.36817744,-0.3363003,-0.6359913,0.4989057,0.062135782,-0.29579982,-0.005176838,0.20454058,0.07220398,0.067675866,-0.3611213,0.2752016,-0.5504468,0.16234857,0.38463885,-0.0032382766,0.48535767,-0.2091931,-0.18303034,-0.48888168,-0.08786637,-0.44389126,-0.19643511,0.15830915,0.03936646,0.10450796,0.08307055,0.03720242,0.48388252,-0.33521852,0.12347977,0.07353062,-0.24255511,0.38995764,0.31515417,0.39580122,-0.38644817,0.52701837,-0.121307276,-0.050901175,0.16425762,0.15171047,0.5006129,0.3347746,0.2535754,-0.01889108,-0.12625259,0.312523,0.97178334,0.16723728,0.33308294,0.078007124,-0.3161709,0.3068691,0.31516713,-0.086098716,0.11477332,-0.24182819,-0.04110626,0.069348216,0.24280366,0.46104705,0.23862979,0.40471998,-0.19049732,-0.36518365,0.23065752,0.12530084,-0.11889755,-0.90151304,0.15002725,0.16077217,0.6391335,0.4380024,-0.055915017,0.033225276,0.49800733,-0.14535974,0.12024256,0.23851411,-0.3615327,-0.62432206,0.4671251,-0.5079142,0.39153254,-0.023468876,-0.0009250204,0.17847608,0.24584867,0.4046981,0.75146025,-0.04389962,0.039827537,0.0040107574,-0.33971536,0.0862892,-0.36998957,-0.044281904,-0.39174265,-0.33844355,0.41398317,0.49829295,0.14195411,-0.17130886,0.017413475,-0.061720897,-0.06903253,-0.016567957,-0.0014236092,0.0141538065,-0.0003452162,-0.63300234,-0.5168182,0.5638112,0.07525524,0.044418987,-0.13062903,-0.19271101,0.3446124,-0.21716523,-0.04626796,-0.00072878995,-0.72793096,0.033237617,-0.3160811,-0.36007226,0.39518562,-0.063265614,0.30604535,0.1818902,-0.05683732,-0.41383797,0.50091517,0.07256092,0.7930256,-0.13918298,-0.26952678,-0.5729501,0.074995175,0.23256254,-0.2504614,0.04505384,-0.4043844,0.024563653,-0.61480993,0.41236985,-0.03285829,-0.24132726,0.2599451,-0.18480536,0.11591778,0.5998395,-0.17364769,-0.09635391,-0.0979601,-0.10681146,-0.40819848,-0.13242024,-0.20373863,0.1575245,0.18927626,-0.052966464,-0.04569535,-0.02779053,0.016771387,0.5378242,0.07393408,0.28715655,0.35012484,0.17406763,-0.1908911,-0.047789223,0.3108804,0.38615724,0.044112835,-0.014947414,-0.15827225,-0.5123835,-0.33340946,0.14078365,-0.29930764,0.26420525,0.028665576,-0.49447364,0.5788107,0.19481274,0.9313743,-0.056941807,-0.2707048,0.13851628,0.43515775,0.083749995,-0.00083635055,-0.39619097,0.73559123,0.6998424,-0.018737268,-0.2111371,-0.14072233,-0.329133,0.17187183,-0.31468195,-0.05868918,0.04485691,-0.75577897,-0.3552694,0.22478408,0.23822525,0.1586017,0.0077036787,0.14632784,-0.045786526,0.13516359,0.1999065,-0.5506264,-0.20167576,0.2307918,0.26304936,0.06535337,0.123793945,-0.40518913,0.46636054,-0.5749727,-0.023280596,-0.3208209,0.08687093,-0.04868504,-0.33697805,0.14414898,-0.0031085291,0.40402335,-0.2812477,-0.42738324,-0.26057255,0.53542405,0.12997997,0.20843436,0.5193536,-0.27349344,0.21977672,0.02052327,0.51744664,1.0492976,-0.16035,0.05459078,0.37461615,-0.35591373,-0.73955536,0.2608952,-0.14966129,0.37075037,-0.100078546,-0.23078531,-0.48066732,0.37140945,0.1160719,-0.015637506,0.1568866,-0.48801824,-0.31973192,0.20576063,-0.22435686,-0.3702921,-0.36862957,0.13047522,0.69396025,-0.38491747,-0.074879475,0.32108566,0.32260847,-0.2891202,-0.64314884,-0.10136898,-0.35703278,0.27598447,0.20473905,-0.18828265,0.065336876,0.07443203,-0.3502352,0.20261791,0.18498723,-0.4283403,0.06353277,-0.27206215,-0.012932336,1.0562031,-0.1267526,-0.16073951,-0.8467057,-0.46472454,-0.98560447,-0.45811862,0.7640251,0.19804677,0.15043591,-0.37977973,0.08012681,-0.02395571,0.20572135,0.05638667,-0.4087917,0.47704232,0.0059770485,0.36928767,-0.055544693,-0.7859222,-0.05089558,0.06769652,-0.38845035,-0.6848595,0.61488223,-0.18151544,0.92424786,0.058512203,-0.020483602,0.3313375,-0.5199215,0.057707954,-0.45104286,-0.2715828,-0.7051353,0.24770196,975 +326,0.3982685,-0.144484,-0.40462664,-0.08448599,-0.4926092,0.028954139,-0.25145453,0.349569,0.11449406,-0.53198516,-0.22137976,-0.10910788,-0.18525033,0.22079895,-0.34982687,-0.6055648,-0.14069968,0.14688972,-0.3768922,0.6502996,-0.3142768,0.3253451,-0.04142259,0.3391022,0.32957616,0.25907287,0.06930339,0.063253514,-0.25182492,-0.2409337,-0.018674381,0.37465635,-0.5782726,0.4219125,-0.23826806,-0.4175184,-0.034039076,-0.19361769,-0.26756495,-0.7370645,0.27511603,-0.69879663,0.3705174,0.06011087,-0.29911548,0.28210405,0.22096042,0.21887058,-0.11359766,-0.06868376,0.29481634,-0.35639578,-0.16164355,-0.29879275,-0.10217042,-0.51596946,-0.6170228,-0.07689953,-0.6107328,-0.07542931,-0.37942708,0.3169982,-0.20414338,-0.23343998,0.022347527,0.47504872,-0.5826461,0.09995034,-0.029192882,-0.03219801,0.10608136,-0.7746698,-0.3156779,-0.083432205,0.06580573,-0.233758,-0.19729635,0.49827015,0.19450471,0.27055213,0.08637221,-0.22636978,-0.44448853,-0.1879639,0.31497034,0.30359983,-0.112167746,-0.30341938,-0.11447802,-0.17771132,0.2977962,0.14187036,0.2574656,-0.2548906,-0.049948607,-0.028585505,-0.04453116,0.51789916,0.5298959,-0.15736358,-0.12776023,0.3523182,0.541096,0.28451476,-0.25977728,-0.08943978,-0.077843584,-0.46280453,-0.20399816,0.061066907,-0.2307673,0.43738303,-0.22234458,0.09807921,0.62035865,-0.31610888,-0.07810835,0.3478131,0.13774358,0.08201202,-0.2086811,-0.39820766,0.37700266,-0.5547291,0.20913388,-0.22266912,0.62380713,-0.04628497,-0.6862524,0.22002862,-0.5167317,0.05099032,-0.04808576,0.5424305,0.65006727,0.5615116,0.19379391,0.65773416,-0.2499744,-0.03502263,-0.08613226,-0.08397394,-0.057153497,-0.29407114,-0.09206584,-0.49789917,0.02132097,-0.19020958,0.03336982,-0.017569019,0.7012221,-0.43695176,-0.1599413,0.26191205,0.7501133,-0.3736814,-0.059329048,0.8366663,1.1839906,1.1521696,0.03442837,0.93942237,0.04101607,-0.20564705,-0.21849814,-0.14096712,-0.5939377,0.28687006,0.3010715,-0.048168946,0.23067354,0.09839142,0.1792949,0.3274296,-0.440826,-0.06587182,-0.12352446,0.4471677,0.13867375,-0.07471366,-0.42077655,-0.17224686,0.0771805,-0.0011639356,0.039969124,0.34628236,-0.22127305,0.39122778,0.26131588,1.082678,-0.11643241,-0.0010418018,0.12322856,0.34768158,0.16845815,-0.1457211,0.15971063,0.18672197,0.16218285,0.04488502,-0.48611337,0.114686266,-0.19908835,-0.8321183,-0.2069958,-0.36025164,-0.33101985,-0.14366342,-0.45627585,-0.3038827,-0.014962955,-0.38050738,0.31219217,-2.4355774,-0.034388423,-0.016990393,0.22841379,-0.081804276,-0.30726153,-0.05980174,-0.37123024,0.45776692,0.20812796,0.33682021,-0.5630576,0.417394,0.6118056,-0.6735743,-0.016349716,-0.4925416,-0.3159666,-0.074832,0.44327152,0.15214425,0.0855951,0.12104319,0.17903796,0.54171675,-0.1819704,0.2348998,0.38634166,0.26000646,-0.36056262,0.36149248,0.11781763,0.39723846,-0.37379107,-0.19898921,0.3372255,-0.45722115,0.18437554,-0.2942462,0.18314695,0.5483211,-0.35772425,-0.84287226,-0.63796055,-0.29373905,1.1228722,-0.12917025,-0.54805535,0.21485749,-0.40369284,-0.1710029,-0.08992615,0.43750325,-0.10817536,0.1688511,-0.79182756,-0.041621335,-0.1515601,0.18574938,0.024249554,-0.003345426,-0.49899042,0.83099186,0.013341739,0.55429834,0.2931491,0.18149099,-0.57822776,-0.36352095,0.17091869,0.8365958,0.53917867,0.11040933,-0.32189465,-0.22868973,-0.15300639,-0.05237641,0.18001264,0.542566,0.4733838,-0.06085515,0.19718422,0.32741806,-0.054545633,-0.024749829,-0.2562283,-0.2763103,-0.038993932,0.15652093,0.52636635,0.6312033,-0.06833305,0.3545316,-0.012247867,0.383421,-0.15706758,-0.42763025,0.44920903,1.1590827,-0.08395329,-0.2866181,0.6827376,0.63984853,-0.14648703,0.525966,-0.63288665,-0.4899334,0.39550576,-0.18360798,-0.4201036,0.036269557,-0.49258813,0.14904006,-0.8206959,0.42098823,-0.41791627,-0.6055518,-0.8326304,-0.24549879,-2.1507115,0.12420993,-0.2655476,-0.13425492,-0.26598656,-0.33160347,0.20240158,-0.6814617,-0.5734455,0.1661167,0.117700115,0.684308,-0.13049883,0.08212512,-0.1383795,-0.51040524,-0.12623206,0.3569171,0.11697386,0.32167965,-0.09142505,-0.50736785,0.053235196,-0.1385254,-0.3974511,-0.11452479,-0.44309482,-0.48272476,0.0328095,-0.48822066,-0.17418739,0.53612006,-0.33469242,0.0053141834,-0.2165827,-0.040204022,0.09810493,0.13627084,0.19586952,0.28877696,0.16543382,-0.03373834,0.061361782,-0.23268642,0.2115169,0.08438316,0.16269328,0.43194097,-0.24194965,0.22339122,0.52819467,0.62420595,-0.21132779,1.0438339,0.32349423,-0.17427908,0.2684884,-0.14526865,-0.40916008,-0.795933,-0.25346097,0.040765595,-0.37469977,-0.36129978,0.0354263,-0.3009188,-0.916755,0.61086863,0.08122668,0.27812394,-0.20851234,0.110214934,0.30797827,-0.22128274,-0.25918403,-0.20753017,-0.18817312,-0.417822,-0.5466865,-0.81357676,-0.51792204,-0.23361182,1.155337,-0.15976185,-0.09709411,0.33445215,-0.21558772,0.17556445,0.26550725,-0.04347234,-0.019722959,0.3854394,0.2032699,-0.6820021,0.58335763,0.07127387,0.025283856,-0.43342903,0.2849449,0.6485157,-0.51905113,0.5154149,0.38991496,0.109902315,-0.23624645,-0.64094484,-0.111760065,-0.016140314,-0.18552676,0.61188215,0.3395621,-0.71907365,0.42328006,0.30335748,-0.25728896,-0.71957695,0.6227581,-0.1199652,-0.20241387,-0.15646034,0.4511988,0.20456934,0.03419715,-0.09596373,0.37255877,-0.3731932,0.36203226,0.09708872,-0.09160115,0.26113158,-0.23472793,-0.26983938,-0.83368134,0.1721439,-0.41887042,-0.41956788,0.15012684,-0.060747106,0.010484687,0.39327848,0.1699424,0.38677788,-0.20200314,0.053490084,-0.26375473,-0.37427798,0.28153363,0.5384397,0.64453715,-0.2576165,0.60536736,0.0660855,-0.04172098,-0.0448756,0.121630095,0.39280522,0.050348155,0.486853,0.13749021,-0.05030604,0.10050028,0.90247923,0.33816406,0.44310322,0.044802666,-0.25044337,0.21136396,0.06625026,0.3518532,-0.17504126,-0.5175737,0.1353484,-0.22220026,0.08918308,0.44238764,-0.0025598684,0.36848724,-0.06747982,-0.23871626,0.040537395,0.28126758,0.067111164,-1.4513913,0.36176726,0.28322002,0.871182,0.6814263,0.007239278,0.13349614,0.7079172,-0.2788425,0.012770853,0.40178803,-0.014381996,-0.23251206,0.51878047,-0.7182458,0.3810434,-0.11832716,-0.02516017,-0.03105462,-0.1907359,0.43902925,0.6112978,-0.14614174,-0.06150627,0.09032164,-0.4724956,0.06730988,-0.24714242,0.30096486,-0.4544726,-0.28642857,0.8964587,0.6648811,0.3636142,-0.21211687,0.08933219,0.20213537,-0.21524341,0.24798134,0.0472114,-0.04878814,-0.1647119,-0.4868636,-0.0954872,0.601773,-0.24726054,0.16165991,0.23780721,-0.27725112,0.22335264,0.056925345,-0.08506694,0.07959293,-0.6611661,0.103202924,-0.1924359,-0.42775318,0.44448084,-0.15231654,0.07914587,0.2483388,0.09191673,-0.34547758,0.15281467,0.22851284,0.470442,0.29069492,-0.117985286,-0.112765945,0.02778819,0.07724414,-0.17843238,-0.07110008,-0.09813628,0.2539217,-0.62422466,0.3963186,-0.33001164,-0.27492836,0.110002674,-0.1653166,-0.075482845,0.4753786,0.04265295,-0.15401891,0.0013992072,-0.03007806,-0.18965976,-0.12770624,-0.26176873,0.3561462,0.03494156,-0.13497326,-0.29126447,-0.11097753,0.046540365,0.35570326,-0.07972662,0.36482152,0.29041627,-0.12309071,-0.52613705,-0.10828851,0.16722314,0.423899,-0.13783607,-0.0100233015,-0.049778588,-0.34685168,-0.38822445,0.4166327,-0.22045879,0.24451296,0.24245648,-0.26585186,0.8855133,-0.042435106,1.0373465,0.021319767,-0.47904435,0.18199134,0.4254546,-0.20311347,0.053123962,-0.18609516,0.888753,0.5292862,-0.12998515,-0.17798242,-0.4361821,0.13255304,0.1992569,-0.22607592,-0.1931444,-0.093634844,-0.7089659,-0.16176656,0.2479868,0.2886595,-0.025017397,-0.1981557,-0.13072017,0.3561971,0.165874,0.25045964,-0.61246663,-0.066555835,0.3545681,0.20653267,-0.020739028,0.09544577,-0.45293978,0.3608324,-0.628821,0.10193411,-0.2599172,0.08651734,-0.45888212,-0.24225079,0.2613673,0.043678515,0.2892966,-0.30495986,-0.33320275,-0.34456074,0.33228976,-0.035185926,0.07561218,0.4464992,-0.21043396,0.25710958,0.03251189,0.40875643,0.9112647,-0.3172551,-0.14819835,0.21394612,-0.45695952,-0.5050746,0.21326399,-0.51436913,0.023772478,0.061417803,-0.33208066,-0.56602824,0.13866755,0.253882,0.16966647,0.21531206,-0.76588184,-0.036783043,0.09618094,-0.38301584,-0.15473007,-0.033954754,-0.017965471,0.5422764,-0.2717894,-0.23581526,-0.058477297,0.32381397,-0.21272853,-0.5117774,0.15108699,-0.46871364,0.62097585,-0.112865366,-0.2972116,-0.13062558,0.18779704,-0.36181527,0.076869056,0.34014118,-0.27670112,0.059892796,-0.4460969,0.3334182,0.74475497,-0.1661674,0.2620285,-0.3279751,-0.48690546,-0.9072327,-0.16328256,0.14430949,0.34972423,-0.042940136,-0.74199295,0.07060905,-0.27849618,-0.18647838,0.06351026,-0.5168852,0.36103883,0.23108418,0.2834741,0.031380005,-0.75563306,0.15622021,0.14168283,-0.08929645,-0.3645702,0.5872861,-0.09143041,0.8605821,0.06355955,0.06450602,-0.05005261,-0.59248054,0.23303343,-0.14299701,-0.21241659,-0.49788058,-0.02789078,977 +327,0.5434789,-0.30833596,-0.39678448,-0.19152498,-0.18237822,0.098339245,-0.029525291,0.45840007,0.20488285,-0.5556831,-0.11397794,-0.22334825,-0.029510802,0.24730472,-0.105967715,-0.5646544,-0.013873784,0.24064139,-0.314167,0.53278804,-0.37853724,0.26934797,0.045093257,0.10566685,0.20175165,0.31698933,0.07463585,-0.14204556,-0.16129433,-0.08589562,-0.2913622,0.392818,-0.38445434,0.24120273,-0.043952823,-0.1978305,0.13634293,-0.34893754,-0.3218383,-0.76257527,0.20916119,-0.8246887,0.43816236,0.116211854,-0.35364142,0.19082707,0.16316923,0.23916174,-0.32561862,0.058034584,0.20344955,-0.10855439,0.010366154,-0.28814155,-0.12507918,-0.5555621,-0.603566,-0.09265005,-0.36631104,-0.41574556,-0.23957577,0.17049116,-0.42017207,-0.08246336,-0.12890096,0.59646434,-0.43049082,-0.07682438,0.3222018,-0.26143292,0.30081853,-0.5734979,-0.13421725,-0.13930903,0.13359842,-0.070474006,-0.2521012,0.35733548,0.34433162,0.38849917,0.16126917,-0.23538595,-0.20195284,-0.19504313,0.23907413,0.35237274,-0.24699463,-0.42245868,-0.022856925,-0.05392546,0.07148412,0.07373972,0.205134,-0.32622916,-0.097778045,0.12851599,-0.24943566,0.11428965,0.45775414,-0.44583416,-0.24798872,0.19137748,0.6320457,-0.048304312,-0.15935825,0.054815516,-0.027845778,-0.44442713,-0.2214791,0.18294822,-0.42683658,0.6089235,-0.28772175,0.095425166,0.7467031,-0.24501085,0.06135742,-0.013611182,0.10819542,-0.19704345,-0.35402337,-0.30179062,0.2742573,-0.47054246,0.0937837,-0.2123366,0.82574534,0.20351307,-0.58520234,0.22949964,-0.5351335,0.1769647,-0.1380538,0.5502961,0.54926574,0.4363236,0.44581664,0.7041837,-0.5525852,0.10246987,-0.004028614,-0.40561453,0.035538595,-0.28007525,0.02607224,-0.48791054,0.06666388,0.000844427,-0.13265406,-0.044975556,0.44338658,-0.61784625,0.06293624,0.2716321,0.9421267,-0.35651195,-0.047851156,0.5023611,0.87871295,1.0010206,0.06544987,1.1440489,0.23931926,-0.45671195,0.23699832,-0.35201028,-0.65059096,0.35898563,0.4800316,0.09755268,0.26955858,0.19839546,0.053700127,0.44597968,-0.45614845,0.20890754,-0.31845137,0.07467139,0.03535467,-0.21574211,-0.52183,-0.20462637,-0.046704125,-0.014574176,-0.051756572,0.17227142,-0.07958024,0.42586222,0.16187352,1.637851,-0.087237194,0.11238697,0.21717528,0.28711906,0.1353599,0.027867882,0.07552585,0.49174002,0.40892887,0.2729844,-0.6027562,0.071462385,-0.28964424,-0.5942671,-0.12169317,-0.4106913,0.11683043,-0.014925893,-0.42066428,-0.24846512,-0.07700452,-0.28585437,0.37676218,-2.4726355,-0.1617567,-0.14825444,0.29362747,-0.29634386,-0.26732928,0.014684609,-0.43048158,0.2741256,0.39066452,0.5164162,-0.7251767,0.3282965,0.37190315,-0.5251351,-0.066283725,-0.69794285,-0.16030906,-0.2274675,0.42837772,0.09158792,-0.12852216,-0.0460253,0.1280502,0.54056585,-0.050550114,0.15511368,0.30878884,0.35193413,-0.025653696,0.5780894,0.20932195,0.48971808,-0.14843331,-0.22065766,0.34892574,-0.39842358,0.10540032,0.22450806,0.07327137,0.47404563,-0.41922563,-0.72401625,-0.7658053,-0.34217256,1.1847409,-0.29476312,-0.40515748,0.31875274,-0.24199146,-0.2204681,-0.2011625,0.3746074,-0.14619808,0.11633862,-0.81329167,0.14960961,-0.004811748,0.10240673,0.07099418,-0.11813721,-0.4004926,0.84008133,-0.12920779,0.48955613,0.3486044,0.010736863,-0.20450374,-0.4759121,-0.044861976,1.0712761,0.38249487,0.09188767,-0.1312887,-0.26072434,-0.34777313,-0.009191746,0.14719014,0.4014851,0.78584063,-0.05726842,0.09632788,0.3216399,-0.08334216,0.05033177,-0.18083952,-0.35329762,-0.02511903,0.042957187,0.52272534,0.42213643,-0.20353898,0.38041818,-0.16244666,0.38753414,-0.075257055,-0.40850896,0.3705768,1.2223495,-0.15415512,-0.3734764,0.68298995,0.50339985,-0.38740525,0.3774627,-0.6265991,-0.18850961,0.5169235,-0.2424817,-0.44924864,0.2521321,-0.32181606,0.33282602,-0.95628196,0.4330409,-0.17153034,-0.47820696,-0.6427046,-0.22314952,-3.4423232,0.3493934,-0.3992234,-0.16170785,-0.071093366,0.004342393,0.24901406,-0.6997591,-0.39089516,0.09090136,0.09202387,0.47707638,-0.057964835,-0.028914869,-0.2293854,-0.36009553,-0.22046481,0.12007931,-0.0024895906,0.34935844,-0.038145844,-0.60520864,0.122160785,-0.1560702,-0.40898257,0.09376183,-0.6178861,-0.63394386,-0.13294406,-0.61946833,-0.39187872,0.68134946,-0.29436308,0.04717374,-0.261432,0.10384975,-0.1352143,0.3089512,0.16045932,0.19225626,-0.106349535,-0.11009264,-0.12341583,-0.20338407,0.33870602,0.012730131,0.33821577,0.30731916,-0.24599458,0.11398795,0.6473287,0.49648622,-0.045861986,0.7936102,0.60852545,-0.21576566,0.40003031,-0.28165588,-0.2942212,-0.6885728,-0.5070503,0.15778498,-0.46666285,-0.4567619,0.015637927,-0.30892706,-0.76280516,0.62357277,-0.05949638,0.13822219,-0.005461854,0.36514166,0.58697766,-0.16965288,-0.13636084,-0.046274487,-0.29772064,-0.5435,-0.2695144,-0.7464217,-0.36537144,0.19181451,1.0744724,-0.32255584,-0.0057660798,0.0074064294,-0.23007129,-0.05725895,0.20664883,-0.021686776,0.21797676,0.4458429,-0.16464974,-0.70390075,0.48532823,0.029597282,-0.1787233,-0.39758065,0.2031504,0.6142118,-0.7290327,0.59740716,0.2982178,0.11739022,-0.12792176,-0.48670733,-0.2633315,-0.0050234753,-0.31036952,0.5634333,0.077141486,-0.5932003,0.3102537,0.41352862,-0.25736907,-0.6730708,0.44144773,-0.19066451,-0.19416396,0.051100858,0.38355932,0.024589412,-0.040452026,-0.117021784,0.1878059,-0.4810097,0.2321843,0.43455568,-0.033272725,0.13514711,-0.1109565,-0.18530622,-0.8780824,-0.0027882585,-0.6164195,-0.28326342,0.23756517,0.1619784,-0.091202945,0.25131467,0.020126553,0.5493822,-0.11965755,0.046938498,0.059371658,-0.2695465,0.3917512,0.40509492,0.38374117,-0.49997738,0.5280693,0.074363984,-0.0007801056,-0.35650268,0.014933451,0.48037246,0.19251792,0.4418243,-0.05779074,-0.10842577,0.50990134,0.78138524,0.25723064,0.66074395,0.091528304,-0.13760087,0.25540084,0.14132538,0.096716605,0.039916866,-0.5109171,0.012949119,-0.16939102,0.17545493,0.42758623,0.106883846,0.31186977,-0.09893061,-0.27548236,0.074305125,0.31618297,0.035967097,-1.2297794,0.35824987,0.2117521,0.7089106,0.4686494,0.035121474,-0.005478233,0.70792234,-0.3274511,-0.017173132,0.324777,-0.14912656,-0.5717499,0.6014248,-0.68967015,0.32433203,-0.18666817,0.08360254,-0.14169268,-0.05474234,0.39688402,0.7852902,-0.21398821,-0.09849296,-0.18725356,-0.24911347,0.30789602,-0.51339823,0.1293187,-0.47939193,-0.41536328,0.5727743,0.4192334,0.38984197,-0.12743543,0.015059826,0.08818459,-0.108737595,0.4491494,0.044815052,0.08155999,-0.025734095,-0.73771805,-0.30161625,0.543601,-0.083093755,0.18291791,-0.047871027,-0.28404993,0.26443043,-0.13128355,-0.037471436,-0.104593724,-0.4805932,0.0003145536,-0.21419887,-0.5366875,0.60476154,-0.06774863,0.22854719,0.28150794,0.0350556,-0.35039595,0.15623544,0.11720207,0.73742336,0.042932596,-0.27776718,-0.34015292,0.17234106,0.055479933,-0.1745441,0.09225427,-0.2688094,0.12830609,-0.60673624,0.52067286,-0.036906395,-0.45395538,0.13686396,-0.2976366,-0.18148454,0.6127836,-0.27388102,-0.194354,-0.188866,-0.15318309,-0.05220753,-0.22317483,-0.127232,0.38475153,0.020506088,0.12019841,-0.20901343,-0.09546079,-0.14876303,0.4684336,-0.050776657,0.31937793,0.3731617,-0.089732185,-0.35859627,-0.06969871,0.1282515,0.22041884,0.10248903,-0.13948537,-0.18836226,-0.46516693,-0.33460903,-0.02471644,-0.08458875,0.40760466,0.1507879,-0.33737323,0.96563286,-0.08864697,1.3629959,0.028803695,-0.4296785,-0.065155976,0.6577621,0.10015909,0.03770963,-0.26634857,0.8964277,0.6958425,-0.07764999,-0.086200476,-0.52491117,-0.056290884,0.12042342,-0.09389849,-0.029820379,-0.04744831,-0.63892597,-0.35902423,0.25498858,0.33054003,0.27492186,0.058286276,0.019721007,0.24523124,-0.05902167,0.39156094,-0.4449484,-0.2488355,0.23734376,0.094926275,0.11538312,0.017011559,-0.41989523,0.4979831,-0.58589727,0.21455981,-0.2082602,0.177325,-0.16268635,-0.26053685,0.25112048,-0.07113802,0.36647403,-0.39673942,-0.34840646,-0.07803106,0.62452924,-0.019770758,0.13791582,0.6688909,-0.31972593,0.05889593,0.14625059,0.4600941,1.0926694,-0.17695656,0.012634845,0.3434719,-0.39027968,-0.6418782,0.42070445,-0.2747266,0.17022477,0.10605325,-0.34083423,-0.45378348,0.23975843,0.33854178,-0.0870519,0.11998006,-0.48868093,-0.23508812,0.2884084,-0.4572152,-0.106145725,-0.15385227,0.34237513,0.5451716,-0.43565398,-0.41086245,0.05338178,0.12689029,-0.27907145,-0.5739291,-0.13260633,-0.4170416,0.48395392,0.14942688,-0.26469892,0.07818184,0.04289383,-0.3845468,0.16826157,0.28943756,-0.32950908,0.16533987,-0.34934884,-0.08881381,0.8241012,0.016177274,-0.0025496124,-0.61697143,-0.37571,-0.96989155,-0.3234429,0.6161973,-0.05554498,0.08105988,-0.5472186,0.010996705,-0.08120861,-0.008129756,-0.083404645,-0.3543705,0.4700813,0.23180503,0.46537763,-0.03277661,-0.71427256,0.13992712,0.09205605,0.08521628,-0.65881234,0.509666,-0.1884566,0.78073287,0.061366074,0.11520462,0.27884758,-0.47564828,-0.08510888,-0.18489191,-0.36891305,-0.62406313,-0.15649357,983 +328,0.22217377,-0.054297082,-0.50184155,-0.30723894,-0.17531389,0.2763573,-0.13675924,0.1927761,0.22222668,-0.31465608,0.06619386,-0.095406294,-0.01324029,0.31968564,-0.11640385,-0.79561865,0.033771586,-0.016143618,-0.4341714,0.32463768,-0.55788004,0.41086993,-0.067409605,0.22880487,0.028506236,0.3558789,0.16520938,-0.1223786,-0.29146507,0.1445335,-0.12307911,0.26390913,-0.47301576,0.08892681,0.05225932,-0.2395633,-0.07044692,-0.086360246,-0.33694452,-0.625535,0.4974144,-0.7444011,0.47254798,-0.14562875,-0.27485815,0.10952983,0.1539409,0.040418442,-0.46683818,0.20006701,0.28918114,-0.27815863,-0.03563172,-0.22432177,-0.49645883,-0.61012024,-0.49656644,-0.10946431,-0.6354639,-0.27174446,-0.3663107,0.1167601,-0.3460678,-0.18106954,-0.17081808,0.49520424,-0.4638283,0.07459632,0.13023838,-0.25483766,0.06809261,-0.57569325,-0.058909077,-0.01661098,0.21496095,-0.21787669,-0.15671812,0.3222151,0.42874053,0.4893524,0.061505575,-0.21870929,-0.37241307,-0.2965145,0.2915528,0.2650093,-0.14412111,-0.38414747,-0.23131943,-0.14036293,-0.02582785,0.1675911,-0.11239187,-0.4794297,-0.007502869,0.14435528,-0.28504485,0.4514597,0.5126612,-0.4454216,-0.34454426,0.48443985,0.25529033,0.051241588,-0.3687931,0.2509123,-0.07900032,-0.44658425,-0.2598516,0.23373525,-0.044287167,0.43110177,-0.2650329,0.17381832,0.90355873,-0.1425454,0.13304941,-0.3107639,-0.03718579,0.019965608,-0.2654493,-0.0030125936,-0.05939739,-0.49737844,0.0033100646,-0.15952666,0.7460124,0.19394991,-0.7717112,0.48415735,-0.4813804,0.12160521,-0.20081054,0.5961483,0.74058455,0.21107109,0.10419533,0.9224729,-0.5266356,0.026331697,0.13502799,-0.44764382,0.014907909,-0.05853423,-0.06787477,-0.555289,0.047138993,0.10532609,0.14728647,-0.005657041,0.45624593,-0.29132968,-0.11638017,-0.05469161,0.7898053,-0.47414085,-0.12940557,0.61333764,0.9575482,0.8928226,0.07514604,1.4472206,0.38399556,-0.36677548,0.085893355,-0.44023672,-0.51132315,0.22875477,0.25130823,0.16885045,0.17150281,0.15848118,0.26796767,0.37088457,-0.27801475,0.12804745,-0.14755744,0.09803685,0.15233392,-0.046737917,-0.23661254,-0.16510831,0.17058454,0.118109494,0.046322998,0.15963419,-0.10943284,0.4397597,0.15750425,1.379452,0.09460351,0.0963229,0.054535493,0.47561446,0.17364904,0.019650843,0.04851051,0.42251265,0.44261724,-0.15421836,-0.592149,-0.09327511,-0.41174456,-0.4791455,-0.18736966,-0.5033432,-0.1357359,-0.15581726,-0.482897,-0.15523705,0.26038346,-0.49378625,0.48952076,-2.553802,-0.1453469,-0.18511747,0.2676756,-0.12980504,-0.19675618,-0.34067744,-0.43020716,0.4138613,0.3790596,0.34627932,-0.5483328,0.31320807,0.4299193,-0.25774875,-0.1278611,-0.6351351,-0.025150243,-0.14428599,0.36208865,-0.14249673,-0.10720397,-0.114668496,0.30915007,0.6265725,0.077558346,0.011138932,0.20233001,0.3799216,-0.005365336,0.57204264,0.1245371,0.55128723,-0.16373512,-0.09227261,0.34234092,-0.5342341,0.1608269,0.012899884,0.10203668,0.4467425,-0.41221693,-0.8232795,-0.4925871,-0.5315985,1.1312754,-0.41207677,-0.37374514,0.49737352,-0.11344344,-0.24735934,-0.12819067,0.61339253,-0.0820905,0.11042507,-0.6338305,0.1583245,-0.011492522,0.122150525,-0.13752955,0.25931174,-0.17685999,0.675992,-0.21144888,0.44660392,0.34532917,0.099971615,-0.13670704,-0.48978272,0.19760075,0.83539236,0.31991976,0.14297122,-0.0065015606,-0.14930302,-0.09756332,-0.24415255,0.19229653,0.5050722,0.6491432,0.02820151,0.07439516,0.29716405,-0.23846711,-0.024434486,-0.15261461,-0.31618494,-0.067651555,0.13298145,0.55194646,0.34588432,-0.12644762,0.48242944,-0.15264153,0.11850431,-0.18042584,-0.47011223,0.48241174,0.76091474,-0.11423675,-0.30482104,0.37220207,0.35532582,-0.48412502,0.36929077,-0.53722155,-0.11240803,0.71779424,-0.20425901,-0.4977411,0.037433214,-0.29821044,8.531411e-06,-0.72538453,0.23670997,0.13824314,-0.5446437,-0.41726044,-0.34052023,-4.20832,0.029013237,-0.24126638,-0.079047285,-0.115357675,-0.038829673,0.30331144,-0.38104656,-0.5268286,0.07626246,0.02757124,0.39161283,0.019777842,0.04926484,-0.36075178,0.021756839,-0.19144906,0.33159584,0.05983276,0.2954675,-0.069392234,-0.4672018,0.17269151,-0.2550225,-0.49660772,-0.06833899,-0.36285633,-0.49945408,-0.02897838,-0.5248716,-0.2518346,0.8226831,-0.51483065,-0.053229917,-0.22498836,-0.10262544,-0.2522269,0.39125368,0.31291124,0.21545418,-0.026976151,0.061401024,-0.08584515,-0.31389394,0.27525064,0.026869576,0.21136598,0.40418923,0.08102239,0.06440058,0.63639855,0.52387255,0.16038512,0.80065626,0.20539059,-0.19435804,0.37688312,-0.40654835,-0.112979576,-0.733271,-0.46816826,-0.19066098,-0.49790817,-0.48556647,-0.19889155,-0.33664414,-0.7029924,0.26411512,0.040244307,0.21403961,-0.06485055,0.25244147,0.2844474,0.023827812,0.07838849,-0.054438855,-0.22751208,-0.5303173,-0.51548994,-0.6462923,-0.5990614,0.26760426,0.905947,-0.12920944,-0.26268727,-0.09315934,-0.47689554,0.023674471,0.31500185,0.33311638,0.3556746,0.34724128,-0.07897801,-0.72234327,0.39129364,-0.082642436,-0.07195088,-0.7383002,-0.14172691,0.7378833,-0.6489016,0.6934618,0.32733673,0.15725844,-0.025606966,-0.54184896,-0.37593156,-0.012205227,-0.2837667,0.5843588,0.1035871,-0.58150417,0.47656643,0.07082883,-0.008168107,-0.5409671,0.69090325,-0.014460687,-0.008214549,0.18250927,0.49488506,0.0090356525,-0.26524484,-0.022537133,0.26762536,-0.50357664,0.26771688,0.38848785,0.04023737,0.55286044,-0.059384298,-0.3596358,-0.5601422,-0.29897135,-0.50736195,-0.21724635,0.08947131,0.03778183,0.27208087,0.18909764,-0.121214606,0.3946122,-0.17972408,0.21302813,-0.04445343,-0.30050117,0.28843725,0.42225745,0.31847,-0.4252353,0.59978986,-0.041313816,0.14589567,0.074747466,0.12825315,0.53902787,0.35242766,0.43381044,0.016207544,-0.24234973,0.19133091,0.9352067,0.35605055,0.33067253,0.13461278,-0.34231105,0.31047305,0.16973586,0.0402341,0.016876992,-0.23805517,-0.10834845,-0.03856008,0.2979929,0.17816064,0.07154587,0.36657187,-0.1745247,-0.10321544,0.26181164,0.26517817,-0.03570824,-0.9592425,0.31490198,0.23092686,0.701582,0.47158486,0.022968376,-0.04062936,0.37499866,-0.32457215,0.13208932,0.3969632,-0.15326306,-0.3980035,0.59138834,-0.45882702,0.5632673,-0.085288286,0.075655125,0.031313557,0.36502287,0.1448779,0.98202693,-0.05092647,0.13468274,0.1689751,-0.3213039,0.20347074,-0.39202443,0.16764641,-0.37008584,-0.31981796,0.543956,0.3835882,0.25241497,-0.24191381,-0.103673026,-0.048271544,-0.22557124,0.005874149,-0.037633963,-0.031041432,-0.19922136,-0.74424493,-0.4489924,0.45352557,-0.07796623,0.061938237,0.22703509,-0.2194904,0.3603059,-0.04091778,0.1002546,0.012075436,-0.4042312,-0.10200969,-0.21555752,-0.6135198,0.38702807,-0.492833,0.44368297,0.22254448,-0.01932805,-0.5097118,0.24905883,0.2434798,0.6538098,-0.18086578,-0.18484624,-0.39411253,-0.1916741,0.3624667,-0.31562623,-0.12813248,-0.35551903,0.079262204,-0.67091054,0.46718928,-0.36100432,-0.23884602,0.0013253053,-0.29274434,-0.056849338,0.4132227,-0.15949339,-0.24041119,0.07690565,0.04086244,-0.20173727,-0.022122724,-0.32961982,0.32618925,-0.16912028,0.04965349,-0.12692277,-0.21599077,-0.1317531,0.31236184,0.029835744,0.18543202,0.3579999,-0.0786474,-0.3322832,-0.08832167,0.07256386,0.44309106,0.19603129,0.08107027,-0.10176599,-0.3429419,-0.21352682,0.28020704,-0.1539248,0.14772826,0.20217842,-0.62639344,0.52929443,-0.093893655,1.0744176,0.12506773,-0.32860318,0.019264491,0.5055214,0.11061556,0.22254562,-0.117316626,0.84874266,0.6766659,-0.029320668,-0.26064977,-0.423254,-0.09543955,0.27518278,-0.20637517,-0.19168854,-0.051734436,-0.853076,-0.16179107,0.18716805,0.088497356,0.24880725,0.04571871,-0.13436985,-0.027576517,0.26420382,0.49145934,-0.54844743,-0.0005403241,0.28247368,0.17512235,0.11206148,0.19138826,-0.27643767,0.4094006,-0.63584554,0.029285403,-0.22810052,0.053253293,-0.26815668,-0.1127347,0.2528823,0.044666924,0.37931496,-0.008210794,-0.3064967,-0.36656204,0.6601395,0.07365176,0.3050519,0.6877417,-0.14145163,0.10669522,0.22284572,0.5003994,1.3503679,0.08829692,-0.13218941,0.41775778,-0.37471825,-0.5635124,0.10612702,-0.54251456,0.09274821,-0.0007646799,-0.29940927,-0.21412212,0.22188608,0.029881235,-0.07215646,0.21547692,-0.46924388,-0.32807758,0.22518227,-0.22984968,-0.27978218,-0.2744538,0.20470414,0.69719696,-0.44353968,-0.015668424,0.040338263,0.39134732,-0.38955742,-0.70131,0.20993157,-0.34781083,0.5400156,0.12398153,-0.4001171,0.21956368,0.21218675,-0.37263057,0.23635897,0.53227305,-0.43769443,0.0056849956,-0.060591806,-0.228668,0.94428116,0.082935944,0.06053245,-0.59974194,-0.39402562,-0.93339765,-0.27363193,0.29991373,0.19381934,-0.11229394,-0.44499797,-0.11698964,0.05613052,0.13206841,0.1682797,-0.61421496,0.41946346,0.114028625,0.43573177,-0.042829983,-0.8371432,-0.079243295,0.09945599,-0.24784301,-0.49377784,0.64325297,-0.3176197,0.70638466,0.15161711,0.038391154,0.25437415,-0.53317285,0.30787188,-0.30336294,-0.30764675,-0.6314999,0.08982877,984 +329,0.3830308,-0.2402277,-0.39379904,-0.10161166,-0.11658681,0.28056946,-0.21423906,0.40391216,0.081086546,-0.537955,-0.105117135,-0.21911027,0.08475978,0.1884912,-0.14662036,-0.3183106,-0.06488561,0.01340969,-0.36538634,0.44457817,-0.50374407,0.35291252,0.007907931,0.29693902,0.03858277,0.26759642,0.11784415,-0.15542434,-0.10317465,-0.19269486,-0.09489056,0.24448475,-0.5279676,0.0743845,-0.03939437,-0.44333866,-0.027695093,-0.34692335,-0.24881443,-0.6397265,0.2388154,-0.83784527,0.4393197,-0.039189484,-0.3642797,0.38039646,0.05333836,0.2614914,-0.14740492,0.14047095,0.08291634,-0.04298396,0.10405208,-0.15618624,-0.2113892,-0.3447343,-0.46335372,0.06898805,-0.38165912,-0.28733814,-0.31066892,0.12375732,-0.20397814,-0.100991055,-0.20951214,0.31554773,-0.47909755,-0.15371329,0.15691207,-0.1393571,0.46872905,-0.5239621,-0.122350074,-0.11317326,0.23741181,-0.30026215,-0.11807129,0.12986735,0.35732555,0.62578464,-0.017501397,-0.089948885,-0.4009126,-0.17207566,0.25268656,0.5318076,-0.16676296,-0.4378995,-0.16381119,-0.18853919,0.14530881,0.22138509,0.19219233,-0.26915994,-0.20303702,0.015426965,-0.25561953,0.20725378,0.39842212,-0.53174734,-0.28837445,0.45021963,0.62285143,0.1324008,-0.11121461,0.08217167,0.013705698,-0.47513956,-0.09004931,0.2042822,-0.24579991,0.4661247,-0.17328721,0.4425245,0.62349147,-0.17600146,0.26218495,-0.08716298,-0.09030331,-0.22732137,-0.33586627,-0.07366989,0.12584946,-0.42272797,0.12933974,-0.12102806,0.7786063,0.063046336,-0.6762438,0.2847895,-0.44946298,0.08685227,0.009132042,0.5236649,0.50986063,0.26988497,0.06678878,0.6664324,-0.48108107,-0.05562187,-0.18118839,-0.2715043,-0.046907265,-0.14756137,-0.17785852,-0.5146356,0.043729782,0.14423366,0.057108086,-0.021870099,0.4276919,-0.49924868,0.07118588,0.25882703,0.7334184,-0.356887,0.028001927,0.7215551,0.94574195,0.8139768,0.09009228,1.1431915,0.107648656,-0.2509695,0.050122377,-0.28678587,-0.5999438,0.24331442,0.39362818,0.22244658,0.28619796,0.115124725,0.04787539,0.4961484,-0.34233564,0.119150236,-0.30542564,-0.033424582,0.08290566,0.0018125275,-0.3133836,-0.1730395,-0.024876047,0.07880596,0.035213236,0.09183478,-0.103536315,0.33509028,0.16970548,1.599958,-0.27554992,0.14800853,0.12945811,0.2938502,0.13222066,-0.16037968,-0.0152573865,0.3009969,0.37631425,-0.0022958438,-0.68476415,0.059487212,-0.014084742,-0.6684681,-0.070342146,-0.22087376,-0.14986263,0.034156818,-0.5700913,-0.1080213,-0.10691998,-0.3662446,0.42502105,-2.7392523,-0.11257233,-0.14454421,0.23808652,-0.4091978,-0.4228398,-0.0723687,-0.30439007,0.40098667,0.41799715,0.38283804,-0.67009485,0.32674226,0.41104117,-0.3664276,-0.056427427,-0.5953755,-0.14686552,-0.06857276,0.211509,0.11700862,-0.15700084,-0.027066758,0.116673864,0.5281678,-0.15698808,0.15953684,0.15848774,0.31065604,0.01794659,0.48839122,0.07527541,0.4790677,-0.13918611,-0.179311,0.43212783,-0.3205286,0.2858544,-0.17393889,0.2925797,0.2867286,-0.42519173,-0.70130134,-0.76575077,-0.5017779,1.2508546,-0.17506891,-0.49026912,0.2858394,-0.15534489,-0.30663,-0.14429967,0.49566588,-0.08173752,0.0019035756,-0.90095365,0.095632546,-0.15633088,0.23931226,0.04251555,-0.08060091,-0.47411555,0.7817963,-0.09795485,0.4220352,0.50281113,0.18904074,-0.11822391,-0.3129083,-0.04835119,0.96750987,0.41688505,0.16244248,-0.3449202,-0.19864792,-0.38858667,0.034080394,0.16068506,0.34185454,0.65772766,0.14099239,0.10775706,0.17079805,0.038155124,0.01237992,-0.2136888,-0.17906351,-0.051634975,-0.00080677035,0.60597724,0.3610539,-0.143317,0.40100545,-0.21489696,0.08349681,-0.34257957,-0.3527746,0.46620065,0.8058564,-0.111686975,-0.26092562,0.66351414,0.4961502,-0.14309914,0.28586853,-0.6676459,-0.2908021,0.46144903,-0.28614137,-0.42031854,0.2577599,-0.3438218,0.12801541,-0.99083745,0.18626341,-0.34404537,-0.3536916,-0.59169203,-0.099274635,-3.674952,0.29881617,-0.16001002,-0.25244483,-0.105558865,-0.16763267,0.32176036,-0.5121381,-0.47042185,0.093460076,0.015897488,0.57916296,0.030210635,0.13427138,-0.3052841,-0.10544917,-0.1722745,0.09732445,-0.019479247,0.25827515,-0.071107745,-0.36934468,-0.05917236,-0.2135604,-0.4316933,0.04195725,-0.55422246,-0.4962916,-0.122181654,-0.40346438,-0.35253394,0.5441415,-0.40712035,0.09281321,-0.20183489,-0.021946777,-0.14091945,0.53205746,0.097555384,0.09590387,0.07755682,-0.07527315,-0.0443661,-0.2840576,0.22820751,0.11308516,0.10677667,0.4699231,-0.2977738,0.14723797,0.36711776,0.58902985,-0.09264032,0.76491624,0.46622407,-0.09373151,0.33773813,-0.26805285,-0.09458018,-0.5825816,-0.36671507,-0.01710475,-0.43116486,-0.5464634,-0.17615543,-0.26649988,-0.7407611,0.51811296,-0.015144187,0.06072516,-0.005344367,0.34786388,0.4204678,-0.16394919,-0.020457966,-0.122223265,-0.11162026,-0.44113076,-0.4732973,-0.64083743,-0.414723,0.038537983,0.9593367,-0.11018076,0.026375743,0.021429906,-0.2244562,-0.08695468,0.10324585,0.059264883,0.027202837,0.33813968,-0.09642872,-0.5837561,0.5629359,0.15787435,-0.29966533,-0.39340064,0.05745846,0.63862044,-0.5174438,0.43074882,0.3656145,0.16129272,-0.057061806,-0.521563,-0.077713124,-0.019052673,-0.4429089,0.38704246,0.12741968,-0.64345235,0.45094478,0.32253087,-0.034876592,-0.7479626,0.5208099,0.07088302,-0.34212646,-0.017572252,0.33898935,0.0423412,0.054407243,-0.17043567,0.19211811,-0.48301208,0.31623918,0.31015167,-0.007945853,0.45496145,-0.26826993,-0.12745479,-0.64341813,-0.08843562,-0.5097816,-0.148381,0.23592523,0.037783884,0.12927896,0.22048807,-0.0056250324,0.48488358,-0.32625172,0.11745012,-0.040044893,-0.08632629,0.23570721,0.3717591,0.37239748,-0.3144054,0.54546094,0.045052335,-0.0491841,-0.33896098,0.09680527,0.5980395,0.15300076,0.3689884,-0.22660962,-0.28642073,0.34646204,0.7507678,0.29397967,0.48831138,0.0018862922,-0.2090606,0.29326516,0.1502845,0.19647093,-0.012214144,-0.434291,-0.054867107,-0.1695169,0.16519937,0.36748356,0.15039852,0.403712,-0.14912222,-0.24522339,0.117808774,0.23022223,-0.027664065,-0.8645437,0.28401005,0.1832474,0.8096597,0.52375096,-0.06079326,0.19676752,0.4801161,-0.30082414,0.17980808,0.26765165,-0.044240177,-0.63830936,0.5493024,-0.69449496,0.28225663,-0.11516263,0.025628047,0.05029563,-0.12864558,0.43173906,0.71400654,-0.07574723,0.063845515,-0.027566437,-0.26480195,0.089683756,-0.35220852,0.050615497,-0.47553858,-0.18239947,0.6688275,0.4547933,0.390894,-0.1707575,-0.024904259,0.13555439,0.044712212,0.15492629,0.09522917,0.24357158,-0.08199759,-0.65921104,-0.20906813,0.50937396,0.049820997,0.15650608,-0.020996286,-0.4626301,0.21918194,-0.15350844,-0.12859143,-0.0063172937,-0.4794127,0.050033484,-0.38989204,-0.45071557,0.24721415,-0.19166994,0.3330874,0.1739001,0.02719969,-0.15740258,0.19117762,0.14352886,0.81676203,0.2008555,-0.03539602,-0.34321925,0.16617815,0.2304197,-0.20008871,-0.16317685,-0.07281471,0.0033859808,-0.6230414,0.3098795,-0.095939875,-0.22600527,0.37417275,-0.2038427,-0.041316655,0.58142024,-0.09961832,-0.10575182,0.055705857,-0.240089,-0.28871354,-0.10349835,-0.10304864,0.35810977,0.12518689,0.0041294335,-0.0833309,-0.005106,-0.14182152,0.39480686,0.07867101,0.32993716,0.399305,0.007350842,-0.46562564,-0.10998719,0.07109246,0.44418532,-0.110627435,-0.023635881,-0.17979303,-0.55701005,-0.24725148,0.09516661,-0.111988276,0.26980278,0.0037976583,-0.2682163,0.93399674,0.06950095,0.99044764,0.15692319,-0.3680954,0.072575144,0.37233633,-0.050199825,0.06962701,-0.3912702,0.87903583,0.48415142,-0.055570085,-0.08404495,-0.10051642,-0.005028105,0.14236291,-0.1511225,0.018654617,-0.027161557,-0.6311216,-0.29900455,0.35977632,0.28555474,0.11822461,-0.02062681,0.041533988,0.14042921,0.004068293,0.41944045,-0.57282007,-0.2544224,0.298707,0.20730048,-0.008154541,0.045836058,-0.42815268,0.42281142,-0.64075094,0.04841632,-0.39524496,0.07898281,-0.16216221,-0.15380627,0.17871103,-0.01883442,0.30799204,-0.23703952,-0.39168045,-0.23657149,0.48467636,-0.015788866,0.18078308,0.49990463,-0.20685855,0.20540908,0.057106175,0.4506107,1.0720526,-0.22440399,0.097627446,0.39806053,-0.2844126,-0.495026,0.31255212,-0.32216474,0.16824177,-0.029114878,-0.25832993,-0.3324284,0.30142227,0.29517096,0.07960311,0.011722807,-0.5022685,-0.19719627,0.34485805,-0.3514125,-0.15753499,-0.1904501,0.084855095,0.6325415,-0.2998048,-0.34348062,0.03903424,0.37500435,-0.4152796,-0.5287396,0.1726408,-0.34330565,0.3091311,0.07426767,-0.31521785,-0.052937172,0.075998895,-0.39461422,0.060239248,0.15249448,-0.37453517,0.07084853,-0.4342108,0.11245051,0.8505976,-0.14506432,0.09397468,-0.57534283,-0.50325614,-0.9235022,-0.2896038,0.5951508,0.115379356,0.09739698,-0.396814,0.122974426,-0.17526652,-0.035659187,0.08559125,-0.31924495,0.50747484,0.23159665,0.43314227,-0.18724874,-0.4788147,0.1122943,0.13094127,-0.1220143,-0.41921768,0.48833954,0.04905438,0.8206844,0.005936263,0.043536477,0.26312765,-0.66668797,0.03486778,-0.14666584,-0.18313904,-0.8684446,-0.016606128,996 +330,0.39863238,-0.273572,-0.42505965,-0.11031544,-0.27156526,0.101832494,-0.20953748,0.25599176,0.0735204,-0.25725704,-0.38905454,0.034310006,0.14080906,0.38182884,-0.11651803,-0.6582459,-0.14412515,0.11437214,-0.7206662,0.41838297,-0.46793494,0.33624718,0.18360958,0.36085218,0.058530863,0.49295953,0.2939244,-0.13946961,-0.09398083,0.07988773,-0.14484712,0.07990845,-0.5958654,0.27426735,-0.25857994,-0.24809732,0.03778364,-0.34441242,-0.21278521,-0.5799447,0.10596241,-0.92089003,0.52403736,-0.12014156,-0.09864149,-0.009881432,0.09525741,0.25663617,-0.5241462,0.106645,0.14450379,-0.15791616,-0.13395524,-0.3170874,0.08455301,-0.34772086,-0.32250282,-0.050496202,-0.61618835,-0.18679254,-0.11205334,0.103072986,-0.2572232,0.0650766,0.0062198364,0.35349473,-0.4084323,-0.031195292,0.28595987,-0.30284542,0.10200938,-0.565977,0.05794124,-0.026037479,0.5874664,0.023080194,-0.10455578,0.33172697,0.2051337,0.41156387,0.26905197,-0.19210696,-0.20366849,-0.13563575,0.21251605,0.47049326,0.0148717975,-0.36838287,-0.26557276,-0.011147612,0.32647038,0.18432386,0.048443522,-0.11826121,-0.11634935,-0.19896473,-0.11999158,0.31393155,0.44855022,-0.29480156,-0.2669064,0.34810874,0.6103649,0.129971,-0.097051725,-0.094815016,0.07621501,-0.49358264,-0.14199486,0.12987591,0.046100616,0.48321372,-0.047904797,0.33472136,0.75186926,-0.18038456,0.11413305,0.0045523155,-0.021730449,-0.32089493,-0.14823672,-0.02444466,-0.0020016644,-0.37669072,-0.16173391,-0.2100315,0.7620962,0.07616083,-0.70379597,0.32236218,-0.46695226,0.083896734,-0.08417434,0.6051133,0.49964944,0.49440724,0.14528778,0.72121716,-0.34452063,0.14090618,-0.092549086,-0.48010784,0.039230082,-0.17453055,-0.06546699,-0.3987902,0.079596885,-0.07906985,0.08877273,0.013417418,0.3990512,-0.42906982,-0.051273953,0.09747814,0.75955975,-0.3758587,-0.12964238,0.689465,1.0566626,0.772982,-0.092140086,1.2017707,0.37730592,-0.16798313,-0.033106446,-0.36822933,-0.57471514,0.20465146,0.40810183,0.063385494,0.37460586,-0.076419316,-0.14665079,0.34552303,-0.33885768,0.07757723,-0.055272777,0.2934052,0.10272702,0.12080987,-0.5184246,-0.1900593,0.012227918,0.015246908,0.25436562,0.21886618,-0.21253444,0.49377728,-0.062074807,1.3679742,0.05158615,0.20647292,0.038395245,0.4963732,0.31431785,-0.052498724,-0.16143224,0.31632662,0.38964605,-0.16270778,-0.69629616,0.19307253,-0.33801252,-0.4474519,-0.22947769,-0.38627824,-0.15094557,0.11476708,-0.3934181,-0.2002336,-0.0009247192,-0.2830493,0.4120572,-2.7252414,-0.26094064,-0.093524896,0.45402694,-0.45901588,-0.17605159,-0.2457351,-0.5360395,0.20952356,0.2599654,0.50232565,-0.581574,0.5530147,0.4764922,-0.43541998,-0.3266969,-0.5540187,0.066010356,0.020786704,0.3591047,0.037934158,-0.22196914,-0.19977765,0.009962671,0.6160224,-0.10317315,0.12913968,0.5355776,0.30861267,0.26683316,0.38089746,0.012689642,0.5366942,-0.37470087,-0.10298324,0.3129706,-0.23323472,0.38050112,-0.1937075,0.098536395,0.4451365,-0.45682186,-0.82651436,-0.6941822,-0.32661125,1.1738796,-0.3294461,-0.38902798,0.10354824,0.018784964,-0.07075448,0.12900276,0.5237667,-0.12322923,0.11742433,-0.6832886,0.11019652,0.066030025,0.3343757,0.087332025,-0.08958254,-0.3190084,0.67188084,-0.12252311,0.66563046,0.18309177,0.47498518,-0.030713337,-0.37129858,0.1299567,0.93101263,0.28415674,0.005734759,-0.088219866,-0.28191283,-0.1842836,-0.09677468,-0.08488757,0.5051986,0.69774735,0.010340861,0.14355433,0.374723,-0.098613635,0.060089912,-0.07550158,-0.19249527,-0.15453193,0.07447947,0.3819777,0.7071749,-0.11309153,0.4432704,-0.33154193,0.36844066,-0.14843157,-0.55292994,0.85531723,0.42675072,-0.2550969,0.0073331213,0.5010447,0.4258632,-0.44336128,0.42692414,-0.67816025,-0.46588558,0.6039832,-0.22894728,-0.37513873,0.18527818,-0.21073452,0.22772013,-0.8728197,0.38515335,-0.23026255,-0.34457412,-0.41628566,-0.14606336,-3.2181013,0.14401378,-0.1251834,-0.1474211,-0.24243827,-0.08840787,0.24148941,-0.6891543,-0.4037507,0.16652568,0.20595993,0.63180786,0.056931585,0.2535019,-0.24696364,-0.115579024,-0.1083133,0.10623516,0.12892742,0.26600507,-0.096060276,-0.4594736,0.07318372,-0.07608005,-0.4560105,0.2634405,-0.43546417,-0.44803503,-0.12792107,-0.39133862,-0.23549329,0.5848063,-0.31934997,0.12124391,-0.25273934,0.1980678,-0.24381016,0.22877277,0.028401505,0.11243452,0.16886221,-0.13144265,0.15272914,-0.34563354,0.621865,-0.05069574,0.31341076,0.28720507,-0.092982925,0.030901859,0.54471385,0.4114196,-0.17622042,0.811729,0.29505768,-0.04371155,0.27994013,-0.20197354,-0.34126097,-0.5109938,-0.3343093,0.05492851,-0.34880516,-0.47205025,0.06377335,-0.33123994,-0.9645378,0.52603185,0.021226542,0.2195997,-0.056871917,0.30024657,0.48717877,-0.17014728,-0.041902985,-0.06818432,-0.14388704,-0.529167,-0.35292712,-0.66708046,-0.39871696,0.018313587,0.9396835,-0.36785072,-0.021541098,-0.18414159,-0.317799,0.011198674,-0.02548188,0.058711164,0.25200042,0.28447887,-0.06678581,-0.68493235,0.49177504,-0.11485696,-0.15217409,-0.46842614,0.085379325,0.6322929,-0.7945195,0.2873058,0.44131353,-0.038109463,0.06372365,-0.3770337,-0.123567946,-0.1750791,-0.07259835,0.3297348,0.15717523,-0.72945976,0.51500076,0.16313522,-0.380114,-0.7500424,0.20918791,0.059118625,-0.2296047,-0.022874832,0.21908714,0.08072265,-0.19067241,-0.35237426,0.009315951,-0.4730385,0.33187804,0.12184818,-0.10663712,0.5398627,-0.16918112,-0.24370594,-0.63230485,-0.1272938,-0.5146562,-0.08681435,0.309403,0.12752487,-0.021614019,0.03693318,0.0028613487,0.4712279,-0.3723752,-0.019839333,0.13703701,-0.22610752,0.24216366,0.34347448,0.46168542,-0.35919255,0.50823957,0.078575775,-0.14699332,0.1567595,0.09030235,0.3777633,0.22052003,0.29022846,-0.09441755,-0.07298078,0.34743777,0.604705,0.08778469,0.4534213,0.114877686,-0.28536394,0.421078,0.009987741,0.10364906,-0.017109636,-0.33769864,-0.0083570825,-0.027576884,0.08808332,0.4821219,0.42442703,0.37268564,-0.00870119,-0.21343589,0.047270656,0.12924226,-0.03613037,-0.93544525,0.3482452,0.2337579,0.8055239,0.3524537,0.046263523,-0.19568014,0.6633674,-0.2804518,0.19162318,0.23482691,-0.005626274,-0.48028,0.6468097,-0.5015535,0.46044272,-0.14480723,-0.17153557,0.11799973,0.054707963,0.14046787,0.8974284,0.033896882,0.07101183,-0.0029541627,-0.18515565,-0.07153869,-0.34202388,0.04920596,-0.55535764,-0.263445,0.73163444,0.24515724,0.3534101,-0.12585457,-0.14438382,0.028631046,-0.15315612,0.2999727,-0.08054719,0.15228336,0.09204694,-0.5688541,-0.36075693,0.49706745,-0.027756363,0.17443576,-0.16106476,-0.25330988,0.06694684,-0.2320318,-0.020995455,-0.04844915,-0.56774473,0.0152695095,-0.28339434,-0.37441233,0.32032737,-0.2049969,0.1694571,0.15424134,-0.0855899,-0.25397205,0.25446948,0.14490283,0.794293,0.19527404,-0.31977087,-0.45333418,0.03745153,0.41127983,-0.32542756,0.13229147,-0.39991835,-0.05741722,-0.50500786,0.63630533,-0.11891121,-0.23297584,0.20903768,-0.29012045,-0.038238984,0.5491907,-0.0022294351,-0.15821746,0.08565588,-0.041894894,-0.49846077,-0.02707845,-0.44117805,0.14354646,0.34196573,-0.034552317,-0.06413106,-0.22104444,-0.0331235,0.53215986,0.08276609,0.41740724,0.29825434,0.0067322636,-0.26845992,0.034786787,0.22243692,0.44717938,0.19558798,0.028362658,-0.5754324,-0.47277483,-0.30559975,0.0126961125,-0.14893699,0.030104158,0.074027516,-0.20547625,0.7962743,0.039269477,1.0507278,0.18043056,-0.21381375,0.1175412,0.5485863,0.042171873,0.12317855,-0.4240849,1.0732104,0.59503144,-0.11544638,-0.087404355,-0.39427176,-0.23584107,0.28041354,-0.3715736,-0.16411391,-0.14312407,-0.5909063,-0.48613772,0.19580677,0.1578883,0.035135113,0.009452651,-0.021253254,0.020187667,0.15484874,0.33478686,-0.7095265,-0.19996567,0.2865085,0.15706892,-0.03421034,0.29016808,-0.44716167,0.5292513,-0.6843303,0.06879928,-0.38548556,0.176074,-0.09269256,-0.4120596,0.14334224,0.1954236,0.42219567,-0.36425966,-0.52593803,-0.19510259,0.5417152,0.020358844,0.19843303,0.58386344,-0.24453963,0.033554655,0.0453755,0.592228,1.1737021,-0.29348373,0.087489046,0.4026915,-0.4205799,-0.6431249,0.31259054,-0.36196858,-0.012643673,-0.25700757,-0.45634767,-0.49202308,0.39114258,0.18833189,0.068895526,0.111725844,-0.5813592,-0.14203937,0.26197177,-0.2904956,-0.15354612,-0.11730518,0.29819116,0.62841976,-0.2942416,-0.16540751,0.12560149,0.31059012,-0.2222412,-0.4225962,-0.2299392,-0.30343676,0.20487905,0.17325208,-0.18054414,-0.20313573,0.088970505,-0.32933873,0.059311543,0.1391996,-0.37769574,0.03747895,-0.16315429,0.12021746,0.74775493,-0.07230694,-0.010242773,-0.6974209,-0.3749446,-0.91243464,-0.49316505,0.31000543,0.2095644,-0.053366426,-0.50644714,0.037978493,-0.09508221,-0.09680111,-0.013643826,-0.55864155,0.38252956,0.07884494,0.40918282,-0.25449824,-0.8724977,0.09124816,0.10228886,-0.30167308,-0.558204,0.5847507,-0.08737576,0.8607982,0.031209975,-0.14745148,0.12705623,-0.57622576,0.035543535,-0.41525427,-0.100697145,-0.6432126,0.008452156,1 +331,0.6058696,-0.009347899,-0.4321522,-0.2778716,-0.4641142,0.10259865,-0.26650864,0.041819137,0.3296782,-0.31691402,0.05357182,-0.12753187,0.04816172,0.47952223,-0.16366217,-0.89477795,0.15055166,0.20957755,-0.5828438,0.27973944,-0.6167325,0.44676757,0.1707107,0.25276133,-0.0026590307,0.18589664,0.2976239,-0.12498249,-0.04399254,-0.17766021,0.034133818,-0.015106456,-0.71695536,0.21853903,-0.07112758,-0.4644014,0.087096535,-0.51121473,-0.31716534,-0.55303365,0.2575709,-0.74899113,0.49272925,-0.038294595,-0.26377302,0.062666014,0.07556074,0.42242455,-0.22579943,0.14509614,0.12895793,-0.36270857,-0.14331634,-0.11443852,-0.29654366,-0.43314308,-0.5981704,0.020032806,-0.6367579,-0.13232312,-0.40689155,0.25573877,-0.33340475,-0.017483745,-0.043848872,0.30814758,-0.337405,0.046029065,0.35300255,-0.23724361,0.16714568,-0.23420255,-0.20025346,-0.12169246,0.36477962,-0.09264479,-0.26437017,0.30106753,0.42017168,0.48096004,0.18562365,-0.34954458,-0.18005213,-0.15728116,0.053531613,0.7063565,-0.13030766,-0.21553648,-0.35147232,-0.07631575,0.23772693,0.21784154,0.0045473897,-0.41856378,0.06711047,0.16207044,-0.31266308,0.49723414,0.5065364,-0.46855968,-0.14937124,0.34303817,0.35594827,0.04868049,-0.045856792,0.22214219,0.047861207,-0.554923,-0.2830707,0.24258433,0.09554179,0.58515835,-0.12129136,0.21967933,0.73157847,-0.32890722,-0.06365546,-0.069624424,-0.16916369,-0.0016648769,-0.25780421,-0.08029228,0.24360107,-0.6254301,-0.08911024,-0.27707335,0.9158169,0.2409736,-0.8644987,0.46708798,-0.58155745,0.15988946,-0.19371161,0.600539,0.77207977,0.35706946,0.19870755,0.70074147,-0.57827675,0.21828726,-0.08878745,-0.48045376,0.13940258,-0.13212009,0.18710746,-0.39658356,0.08043645,0.027782751,0.016771723,0.10801971,0.3502481,-0.4049662,-0.08374568,-0.08714269,0.6763302,-0.43132344,-0.09369848,0.9592141,1.0378834,1.04538,0.16817716,1.4176282,0.52499473,-0.15380771,0.07904478,-0.21547095,-0.48874903,0.12602101,0.30350593,0.101585336,0.1837945,0.20709093,0.0039469856,0.3384116,-0.22036695,-0.12051221,0.020325964,0.30790487,-0.15407589,-0.049719453,-0.597122,-0.30993956,0.10279751,0.026790997,-0.06291335,0.41003373,-0.18336432,0.4553278,0.09394076,1.2691069,0.095551565,0.06158424,-0.20191118,0.36540487,0.2601638,-0.22558202,-0.22420819,0.09122044,0.27537194,-0.09419246,-0.53876495,-0.08685016,-0.2822464,-0.25510678,-0.28144854,-0.39864334,0.035987176,-0.16779526,-0.3202398,-0.07636547,0.08532877,-0.33594507,0.64707464,-2.4839623,-0.39178148,-0.032300033,0.36402926,-0.14189097,-0.29678735,-0.14689626,-0.58607864,0.3145531,0.31673452,0.38609666,-0.61973864,0.40841824,0.33554527,-0.31859833,-0.29528496,-0.8650318,0.021730209,-0.15197983,0.25232446,-0.12951235,-0.09080408,-0.194465,0.23211493,0.731883,0.034944944,-0.004106351,0.07223939,0.40262723,0.07815493,0.6047388,0.10031142,0.62653786,-0.24593702,-0.18630205,0.25710306,-0.23847923,0.28358465,-0.1046604,0.15911542,0.3600463,-0.5246393,-0.8908878,-0.69227105,-0.4119127,1.1373062,-0.3740855,-0.37420934,0.26454934,0.081883736,-0.1345432,0.041574784,0.4053122,0.043766737,0.047517896,-0.54418224,0.11693765,0.04053119,-0.025614215,-0.05674381,0.18405195,-0.31982136,0.59746784,-0.3394391,0.29842123,0.32217264,0.30482492,0.014622961,-0.3827674,0.19591066,0.9613424,0.2435437,0.109278746,-0.23284487,-0.33919182,-0.2052856,-0.21969448,0.06801047,0.45814487,0.8955759,-0.05141469,0.11134652,0.40011173,-0.190479,0.22399881,0.0791984,-0.3495531,-0.022552509,-0.1304113,0.62365,0.5669912,0.024299424,0.43628582,-0.11325619,0.10559923,-0.15687779,-0.4774545,0.4798334,0.7309656,-0.23588453,-0.16666918,0.54366314,0.2761338,-0.30614814,0.46698257,-0.5120188,-0.23533256,0.5911297,-0.0012787239,-0.34650594,0.06605207,-0.32394943,-0.0049598366,-0.9403515,0.46841264,-0.09290565,-0.6516567,-0.22360162,-0.0993471,-4.110858,0.26071742,-0.12931035,-0.06484168,0.061586864,-0.2142789,0.35365412,-0.46051043,-0.4389952,0.12620626,-0.03548629,0.65761715,-0.15716438,0.21372442,-0.34363338,-0.16541053,-0.4109021,0.17566037,0.12234897,0.28187853,0.008517759,-0.2225789,0.2362539,-0.45510128,-0.51984435,0.099872656,-0.5881262,-0.5109607,-0.09412212,-0.44524235,-0.5308894,0.88494444,-0.3839329,0.025682671,-0.36654577,-0.03913958,-0.27849963,0.46770597,0.12509911,0.12701748,0.055699773,0.061546665,-0.30134597,-0.39134064,0.39010996,0.14463556,0.27672836,0.34561083,-0.20788436,0.1601458,0.60557836,0.5467708,0.09592239,0.6861225,0.19451205,-0.048899166,0.2340421,-0.3985992,-0.19469701,-0.591638,-0.44085482,-0.36284587,-0.47928572,-0.4905899,-0.20056894,-0.3319673,-0.7295739,0.4638939,0.06756426,0.06518081,-0.2331749,0.21885101,0.29864857,-0.19846983,0.0006002709,-0.09758147,-0.19667901,-0.5746228,-0.35803133,-0.6665255,-0.62891257,0.25816777,1.0454596,-0.1851646,-0.011277258,-0.095529266,-0.19058728,0.18298987,0.09110524,0.21605645,0.14802702,0.39930704,-0.1555917,-0.70597744,0.29330984,-0.32887602,-0.11481087,-0.6372591,0.12773229,0.7364628,-0.62526006,0.54788125,0.4234031,0.27957642,0.21688983,-0.46697998,-0.3004391,0.078637876,-0.218151,0.50983447,0.05874557,-0.8613127,0.5391927,0.23454131,-0.19919078,-0.6515202,0.5922617,0.077211894,-0.08083155,0.1447164,0.3516027,0.22006524,-0.07712083,-0.11485882,0.20544638,-0.65816116,0.35409886,0.33817106,0.10146532,0.41515952,-0.06556462,-0.24324942,-0.5801662,-0.264133,-0.4672512,-0.2743983,-0.034710407,0.06340194,0.14360197,0.1854309,0.20364197,0.43455526,-0.5005383,0.06838802,-0.06431467,-0.32159665,0.3613116,0.5561839,0.45724827,-0.43352905,0.57251376,0.053223945,0.059800923,-0.21649064,-0.0040938174,0.5013285,0.20538066,0.27074176,-0.033663657,-0.18256414,0.013988967,0.59631336,0.16037811,0.34362602,0.24005553,-0.13588418,0.33072644,0.24714826,0.13675308,0.2188627,-0.13847755,0.0058937436,-0.0675426,0.13450916,0.4314348,0.18787266,0.27840862,-0.09384819,-0.2087345,0.13851455,-0.0674175,-0.16856413,-1.2893698,0.29761034,0.20731282,0.49788707,0.4506409,-0.022370653,0.05018026,0.49845535,-0.25650954,0.06355916,0.34222487,0.057354588,-0.21813305,0.5495305,-0.69751227,0.5879601,-0.15414338,0.08104162,0.18799217,0.15719306,0.35929725,0.92797893,-0.090038255,0.1752443,-0.13789542,-0.2509735,0.057208598,-0.35362878,0.102136016,-0.55143464,-0.15700367,0.79454523,0.30858088,0.27251473,-0.20995538,-0.06861709,0.1282069,-0.13077743,0.11828072,-0.00083202124,-0.08210676,-0.039197564,-0.635747,-0.34237072,0.60045844,-0.19093339,0.04949125,0.11823023,-0.2024389,0.26984218,-0.21454038,-0.01033995,-0.013996713,-0.70227224,-0.1605133,-0.44294325,-0.35180554,0.2536095,-0.45764595,0.2652179,0.15812835,0.023884399,-0.25616974,0.2180551,0.2673659,0.847562,0.030383144,-0.34427366,-0.32117224,-0.002326199,0.38309446,-0.3184627,0.021069279,-0.24169922,0.10534392,-0.6655798,0.43869135,-0.21534903,-0.17470002,0.021002522,-0.031181829,-0.011149533,0.42826837,-0.3015971,0.040957756,0.13448516,0.022611966,-0.24556038,-0.016756508,-0.22872151,0.14171639,0.07276417,-0.1896606,0.15948413,-0.21605618,0.08625839,0.27401203,0.08982624,0.23331083,0.113304295,-0.014072333,-0.18611611,0.01366485,-0.14114435,0.27839497,0.008689796,-0.121088155,-0.47368807,-0.12563726,-0.11916561,0.3148063,-0.08006348,0.020851118,0.08265139,-0.31987593,0.7830105,0.032673534,1.1971253,0.1993912,-0.369333,0.17857711,0.4502643,-0.04887302,0.03124699,-0.35173398,1.0005686,0.52815735,-0.12775892,-0.2606216,-0.54387885,-0.37865475,0.24390122,-0.3256057,-0.35348126,-0.0074995374,-0.59051543,-0.21671762,0.08036523,0.09975498,0.117169745,-0.049094982,0.076998435,0.26603064,0.13297643,0.48065025,-0.60920376,-0.036063068,0.2981895,0.41926318,0.061356064,0.3238778,-0.27591652,0.38233835,-0.6869167,0.18450868,-0.44684213,0.09647701,0.00608535,-0.29146072,0.25221404,0.2359551,0.29717645,-0.092423156,-0.31642607,-0.12275352,0.60062164,0.16933462,0.19067006,0.81819314,-0.32799673,-0.25112882,-0.020434638,0.34801355,1.3149902,-0.09313183,0.060946804,0.45374757,-0.2763275,-0.50880444,0.26151183,-0.36193228,-0.028983181,-0.09146146,-0.23558652,-0.5026846,0.24524136,0.12818092,-0.054249592,0.19760896,-0.49179977,-0.20973442,0.2892101,-0.25421298,-0.4045295,-0.30977988,0.3858181,0.69094497,-0.43679208,-0.33809352,0.011986213,0.22278294,-0.21605322,-0.5595956,-0.01569954,-0.16383922,0.30756027,0.105479375,-0.37828058,-0.12688133,0.26330703,-0.30604914,0.02740957,0.36275476,-0.22953586,0.12961617,-0.17371735,-0.069198325,1.0799098,-0.045971334,0.22802809,-0.7377202,-0.60977757,-0.892965,-0.39836296,0.16624829,0.28300807,0.03250331,-0.35056072,-0.09748063,0.11821677,-0.029464126,0.13022436,-0.61687976,0.2824559,0.093301274,0.36517993,-0.02775045,-0.9698428,-0.054793037,0.16464235,-0.26231256,-0.6715189,0.55214655,-0.21007837,0.79930156,0.15312438,0.07471643,0.09206115,-0.47041157,0.2962641,-0.38619575,-0.14542988,-0.6445386,0.014669026,2 +332,0.443805,-0.34984604,-0.54177845,-0.06778514,-0.27440813,-0.11081444,-0.12182994,0.3305448,0.29875264,-0.11133403,-0.2566531,0.12255074,-0.09610592,0.39969245,-0.07567973,-0.8430162,-0.17277773,0.29881606,-0.86845046,0.71823037,-0.46147698,0.42229584,0.13321398,0.29390123,0.050285775,0.23266728,0.13634065,-0.006304992,-0.07020875,-0.15676372,0.06180271,0.04473565,-0.5691623,0.28014472,-0.14184144,-0.37519678,-0.1100512,-0.4237049,-0.22344258,-0.8374856,0.27180356,-0.8200102,0.64240706,-0.08338689,-0.24555305,-0.13026036,0.13184047,0.3712981,-0.371233,0.051845312,0.32611975,-0.16653886,-0.36976427,-0.23032644,0.20553434,-0.41138932,-0.5427596,-0.06969359,-0.51779,0.0010761534,-0.0859079,0.25807497,-0.29705933,0.098973885,-0.27871862,0.3830647,-0.41412732,0.019718958,0.28170872,-0.023502022,0.07402492,-0.602893,0.10621558,-0.15522698,0.45561734,0.03815582,-0.33355328,0.37159246,0.35511497,0.4286047,0.29019094,-0.31144714,-0.14404488,-0.0014536828,0.066486515,0.40297982,-0.2199349,-0.36242983,-0.119782925,0.21014749,0.5984382,0.25225335,0.14258696,-0.22795267,-0.076743565,-0.2326762,-0.03271074,0.55003947,0.58834964,-0.19605374,-0.2214805,0.4501691,0.46894404,0.29352826,-0.024978569,-0.058901787,-0.09023634,-0.5828511,-0.19319889,0.10826712,-0.104528345,0.54783297,-0.16866057,0.111732736,0.6484114,-0.107587084,-0.2695861,0.15797327,-0.06562201,-0.08454609,-0.20329584,-0.3471754,0.29218724,-0.5325661,0.025861373,-0.39933035,0.61998624,0.109855704,-0.85222197,0.3285591,-0.5743141,0.15787195,-0.072961636,0.7082239,0.88614464,0.6828915,0.22784315,0.7880622,-0.294738,0.24210857,0.02706028,-0.38045582,0.073178925,-0.18402256,-0.100740485,-0.5264953,-0.002819108,-0.34117118,-0.17481089,0.13269503,0.40256187,-0.63014877,-0.24085544,-0.032928802,0.56868106,-0.2862704,-0.12139385,0.9871036,1.0004605,1.1294343,0.16095679,1.2061098,0.3500951,-0.19267742,0.01369427,-0.3705395,-0.7738549,0.2442974,0.30876145,-0.2568684,0.4333658,-0.06481352,-0.08307685,0.341933,-0.34887984,-0.17424473,-0.11504738,0.39878908,-0.069177516,-0.3073032,-0.30677494,-0.12961076,-0.008476696,0.03852127,0.039171,0.29004636,-0.23086762,0.45745808,0.07498254,1.1061089,-0.14231822,0.029344933,-0.010160087,0.25021598,0.30151907,-0.30377755,-0.111590885,0.2726334,0.522056,-0.08630676,-0.6736482,0.16819918,-0.4594654,-0.46997574,-0.19832458,-0.108115815,-0.11633842,0.09549241,-0.35069826,-0.29796377,0.033423793,-0.09951433,0.4451916,-2.5015354,-0.33423635,-0.16556264,0.44993386,-0.26811495,-0.20010647,-0.010703291,-0.51596016,0.39288568,0.104738355,0.5087324,-0.7920107,0.65259606,0.2791245,-0.66975003,-0.15672931,-0.7654982,-0.03416651,0.094401546,0.40901068,-0.016987631,-0.026216421,-0.00168487,0.06272137,0.59416705,-0.061773565,0.13834395,0.6321763,0.5074381,0.035867453,0.3712024,-0.034863625,0.72371644,-0.42826286,-0.14785452,0.3098099,-0.34767637,0.42741606,-0.03742242,0.05644747,0.6133181,-0.6284753,-0.85346174,-0.5582698,-0.16236508,1.0060656,-0.26545617,-0.38456264,0.19026934,-0.30393776,-0.1596829,0.04579727,0.46827865,-0.22690476,-0.07079869,-0.7541572,-0.045364566,-0.018130269,0.2714828,-0.07034213,-0.11076845,-0.35748497,0.7467829,-0.099259056,0.5718921,0.33574295,0.3498251,-0.39020494,-0.4222642,0.079427205,0.7131228,0.503769,-0.076153465,-0.10404278,-0.16301452,-0.13341692,-0.05185161,0.088136606,0.6601719,0.55423695,-0.11295331,-0.008274888,0.28558564,-0.11690613,0.07004479,-0.14802177,-0.1513255,-0.20707515,0.032407966,0.42078575,0.88867337,-0.12300219,0.59330255,-0.17023274,0.27492923,0.07143646,-0.6929162,0.7156364,0.6184121,-0.26168764,-0.13093407,0.5164632,0.2107376,-0.10355925,0.5180438,-0.5234146,-0.22663581,0.49983093,-0.1386724,-0.3343521,0.16958252,-0.22518349,0.17792661,-0.77211887,0.50330174,-0.53876036,-0.55489415,-0.60097635,0.07017262,-2.6001112,0.25826505,-0.27349487,-0.083470725,-0.31553108,-0.0927739,0.26450196,-0.7636122,-0.738392,0.24156703,0.3583424,0.6129457,-0.08064033,0.13914669,0.025762673,-0.40394992,-0.13296916,0.29298028,0.1846977,0.232828,-0.07946717,-0.39290807,-0.19324888,0.07659681,-0.47717986,0.120551236,-0.56251436,-0.5254292,-0.05596701,-0.6376395,-0.19569243,0.68047297,-0.30164057,-0.00693469,-0.18094337,0.0601029,-0.09495652,0.118199505,-0.028866228,0.277654,0.14134802,-0.23565693,0.24395251,-0.12955837,0.30692333,0.011686106,0.40741116,0.1503642,-0.15094323,0.31403086,0.5154998,0.7808313,-0.2695805,0.80210066,0.6227214,-0.121198654,0.18430576,-0.11629016,-0.42369124,-0.64350086,-0.41531903,0.0926775,-0.45421267,-0.42362887,0.15356341,-0.3898379,-1.0410691,0.4479272,-0.04249386,0.21535842,-0.017238757,0.18531151,0.4412234,-0.15126263,0.087814845,-0.15176125,-0.2593333,-0.3587081,-0.27063277,-0.6450558,-0.4540944,-0.038212955,1.2795953,-0.25989124,0.20198894,-0.08859669,-0.27570575,0.13967228,-0.06255867,-0.08786757,0.22347607,0.24070178,-0.12576017,-0.60335416,0.31581494,-0.15586302,-0.09243335,-0.5075313,0.37047818,0.7016533,-0.57023394,0.52127236,0.2980523,-0.106865235,-0.15213081,-0.7405649,-0.084700994,0.17545196,-0.1592904,0.4465477,0.27910945,-0.73694927,0.49806675,0.32727972,-0.52650285,-0.78304845,0.280278,0.10417851,-0.26904464,-0.1287641,0.34633487,0.117014065,-0.15383725,-0.3330875,0.4601243,-0.30448455,0.35383043,-0.01307869,-0.24611366,0.060608607,-0.17497213,-0.3744204,-0.81201756,0.17642792,-0.6165136,-0.20291097,0.32465944,-0.0038312376,0.1547073,-0.052376866,0.25509536,0.54592806,-0.4706702,0.18157108,-0.0051161177,-0.47427914,0.23001477,0.5670287,0.37311822,-0.3005516,0.32727858,0.19161479,-0.19090499,0.026528835,0.10308372,0.54807556,0.071742766,0.29748058,-0.010844682,0.043303855,0.34004933,0.8853909,0.08302448,0.27866465,-0.06814565,-0.25239035,0.23265973,0.015655216,0.38076234,-0.15768838,-0.37046078,0.052901182,0.26907524,0.11668988,0.5823587,0.29479617,0.23699905,-0.051146444,-0.32045624,-0.07644721,0.11991747,0.101686105,-1.2979718,0.5842966,0.18131621,0.9551102,0.51301473,0.21114753,-0.1212132,0.67791575,-0.29966733,0.062195394,0.33296177,-0.119092636,-0.37875694,0.4451711,-0.71322757,0.32087448,-0.02380016,-0.019052727,0.2639361,-0.035284333,0.22063425,0.77948666,-0.15839954,0.03369807,-0.044766936,-0.052744243,-0.10960772,-0.33690712,0.016899185,-0.44392422,-0.4384663,0.92937285,0.28964043,0.30032095,-0.14418276,0.0332584,0.1675214,-0.19620578,0.18508814,-0.099334136,0.071898736,-0.0054119057,-0.341708,-0.10090289,0.52372986,-0.03810731,0.12292739,-0.2267796,-0.22137806,-0.06952502,-0.2535611,0.0075555616,-0.10726238,-0.8463529,0.17313814,-0.37218043,-0.2293082,0.31048536,-0.21321766,0.088132516,0.22345768,0.102892585,-0.23755537,0.3497928,0.0796419,0.7728265,0.07517525,-0.12176384,-0.22211795,0.34777644,0.20057906,-0.27152342,0.34279045,-0.3496355,0.009224913,-0.5664443,0.65254515,0.00016906964,-0.4334434,0.18990946,-0.16037385,0.04341719,0.40618414,-0.3782036,-0.24227452,0.17526361,-0.11647829,-0.36593026,-0.16227196,-0.2508697,0.18099825,0.5311183,0.21092646,-0.1063142,-0.19333093,-0.18278392,0.5473571,0.21859516,0.5151671,0.37459165,0.051107194,-0.3724193,0.08041128,0.2638936,0.46366912,0.30436698,-0.06633722,-0.685136,-0.34771913,-0.36413142,0.0902553,-0.140324,0.19567822,-0.17709926,-0.25689435,0.8081736,0.18239631,1.2307364,-0.030685663,-0.30388644,0.01817195,0.61100894,-0.09693252,-0.1062436,-0.30500767,1.0182246,0.68443435,-0.088824384,0.055744763,-0.463902,-0.20794581,0.35683814,-0.43451783,-0.08644681,0.050032623,-0.59088707,-0.3486466,0.25604126,0.06494629,-0.10756616,-0.10833331,-0.06897782,0.15748262,0.08190302,0.13850185,-0.67062104,-0.10537064,0.13181427,0.21070156,0.0022293436,0.14740226,-0.5462312,0.2675479,-0.7330137,0.225153,-0.32957488,0.19734608,-0.069005154,-0.38126424,0.13495263,0.07396597,0.17872773,-0.4089467,-0.42832035,-0.057321697,0.49323848,0.043619495,0.16359986,0.6182462,-0.303749,0.0684078,0.21678652,0.5194877,1.1007833,-0.3724619,-0.08675154,0.1829268,-0.46326947,-0.6570412,0.3918376,-0.20602994,-0.06398616,-0.28748205,-0.3253974,-0.5596893,0.3526829,0.17831981,0.24417876,0.0024694162,-0.7928308,0.04796159,0.34304303,-0.2992638,-0.1821288,-0.23594114,0.28462905,0.77682245,-0.32165766,-0.45245823,0.20555942,0.3094984,-0.21649145,-0.44526622,-0.12213495,-0.30806133,0.18840013,0.15620883,-0.3639696,-0.19573666,0.049523983,-0.40255922,0.10070071,0.1304345,-0.30025196,0.15617552,-0.21871595,-0.0115100015,0.78570575,-0.2904952,0.06460782,-0.5708436,-0.47880608,-0.9408618,-0.39549622,0.18807529,0.31303352,-0.10072415,-0.883708,0.08857863,0.011623106,-0.15469371,-0.004784039,-0.41578564,0.44603077,0.17173086,0.39325833,-0.33132964,-0.94656056,0.17708293,0.22396556,-0.12578312,-0.47332913,0.5937339,0.04902684,0.8797048,0.044125598,-0.027305828,-0.028502371,-0.5740775,0.09125571,-0.33544612,-0.13294557,-0.60683197,0.023256037,4 +333,0.31714576,-0.43155608,-0.46576712,0.086364046,-0.3016712,-0.038225446,-0.2300445,0.5779172,0.11410383,-0.42458767,-0.09172891,-0.074535064,-0.123573594,0.23337854,-0.17535369,-0.18052292,-0.05302074,0.104425244,-0.3948682,0.6745303,-0.23508765,0.20835455,0.012003465,0.25712565,0.37904248,0.3600784,-0.15778926,0.17149165,-0.12028874,-0.32010144,-0.089165516,0.22163367,-0.5790292,0.35300273,-0.23081267,-0.34219438,-0.19491413,-0.51651806,-0.31728145,-0.78533494,0.19134752,-0.8946587,0.3914852,-0.0037710879,-0.39218324,0.28013638,0.4218712,0.42427644,-0.09746992,-0.229954,0.2761093,-0.10576582,-0.060778163,-0.26726478,0.06378076,-0.31293622,-0.5887328,-0.09538489,-0.35549554,-0.18563756,-0.2695599,0.27426362,-0.24842772,0.04350457,-0.155954,0.6144373,-0.43839625,0.18691264,0.11326326,-0.28354684,0.184046,-0.78417504,-0.10511349,-0.12634064,0.24754153,0.033212516,-0.1838944,0.26545128,0.20682122,0.14706406,0.06840467,-0.097120956,-0.5018339,-0.0974857,0.0906526,0.37331167,-0.27033174,-0.23596695,-0.049742687,-0.022326436,0.28286394,0.17472135,0.14747462,-0.3758103,-0.09452839,-0.030682411,-0.2798365,0.27255177,0.30244967,-0.21531369,-0.084955685,0.44594368,0.63834465,0.27027804,-0.2894613,-0.13491742,0.004511595,-0.47772264,-0.056378838,0.15299176,-0.15650925,0.41475087,-0.08462608,0.15941298,0.61916673,-0.08445094,-0.10573781,0.10931814,0.18501379,-0.009171703,-0.38591626,-0.3340363,0.33514723,-0.33782315,0.19600675,-0.07007997,0.61939514,-0.016232815,-0.598979,0.27429575,-0.56485385,0.12958314,0.07180722,0.1855643,0.6513747,0.7290779,0.25537327,0.7530603,-0.22226684,0.042525,-0.2129632,-0.22808647,0.24982429,-0.23371305,-0.059101902,-0.5023325,0.16077553,-0.05449118,-0.09695416,0.10233839,0.50648606,-0.53655505,-0.0674669,0.14493199,0.66684014,-0.14582877,-0.057282828,0.74189717,0.97822464,1.1179867,0.15679826,0.8633527,0.12922202,-0.18633434,0.1472583,-0.0023355144,-0.6058286,0.2797106,0.45078823,0.23486741,0.19589719,0.1358085,0.06816288,0.50398815,-0.14281748,-0.015010067,-0.14630008,0.16447116,0.26492476,-0.13442434,-0.43665972,-0.3579722,0.025700977,0.16418777,-0.00517241,0.1620355,-0.15130118,0.3261387,0.20896891,1.7060678,-0.21921417,0.10721244,0.29102594,0.34179473,0.28533673,-0.354676,0.061427824,0.39913845,0.17776132,0.27944854,-0.483588,0.15850504,-0.19097662,-0.5704674,0.009800447,-0.29759732,-0.18346946,-0.07163615,-0.50779265,-0.2807525,-0.095101036,-0.23398484,0.5049038,-2.818238,0.053610187,-0.14408755,0.3362181,-0.23260233,-0.501998,-0.021184755,-0.36572486,0.4293268,0.30538195,0.51699936,-0.5630106,0.31044367,0.34641132,-0.79861695,-0.08985378,-0.51537424,-0.09476638,-0.07059489,0.46139663,0.0779562,0.035494383,0.10593749,0.032854836,0.49222305,-0.09794382,0.0941274,0.46075338,0.30356565,-0.26300594,0.62845993,-0.096094534,0.42083067,-0.29116985,-0.30140296,0.3356406,-0.5218905,0.16376117,0.09667999,0.21696244,0.5896469,-0.45567125,-0.9402154,-0.6906595,-0.04826176,1.1566248,-0.2145553,-0.51624644,0.2622581,-0.5469524,-0.35979488,0.0017924862,0.4869081,-0.03556416,0.062176134,-0.7402128,0.024619818,-0.17198081,0.21337965,0.06833445,-0.27005726,-0.5112459,0.9390984,-0.07012393,0.65742594,0.30412254,0.089258656,-0.4126313,-0.32037416,-0.10079213,0.7619628,0.6148675,0.10262394,-0.1431844,-0.1394407,-0.25721213,-0.17792848,0.2616168,0.58675396,0.23365399,-0.119622394,0.15215805,0.23027405,-0.14277048,0.08989101,-0.23469,-0.22935227,-0.11927999,0.11928214,0.5542039,0.67014503,0.04106965,0.28203297,-0.01635042,0.35666314,-0.0030744672,-0.56952286,0.3923466,1.0543458,-0.07694234,-0.38310838,0.52514666,0.5362763,0.043218546,0.28228483,-0.41144544,-0.30740026,0.33799788,-0.21886896,-0.4802024,0.1825992,-0.32938766,0.0049928767,-0.6532683,0.19146135,-0.46162024,-0.604132,-0.5900217,-0.11367637,-2.9442163,0.2663868,-0.17388384,-0.24472697,-0.20975325,-0.2704623,0.19222103,-0.70301855,-0.53905505,0.16114543,0.14453878,0.6092259,-0.21066524,-0.04236603,-0.24583735,-0.370578,-0.22268924,0.33835584,0.0067074415,0.42317486,-0.10052388,-0.3686044,-0.09510959,-0.010096763,-0.50841415,0.032315336,-0.7269035,-0.356212,-0.120965,-0.5691306,-0.41652146,0.6237801,-0.41774654,0.06530895,-0.12704088,0.07316768,-0.15516257,0.2320226,0.046750765,0.05306673,0.15288533,-0.07601828,0.075305395,-0.18424733,0.2217244,0.09640823,0.25197005,0.26344076,-0.20786092,0.20371415,0.59705245,0.73798895,-0.2952266,1.0460193,0.4154974,-0.16770904,0.35089377,-0.15006445,-0.33021697,-0.5530446,-0.24033895,0.03644851,-0.29912868,-0.25719625,0.031270705,-0.378519,-0.776815,0.5855737,0.06479722,0.07333504,0.015996844,0.32621628,0.53411645,-0.28527737,-0.13659067,-0.042663064,-0.15765938,-0.59123456,-0.31553817,-0.47263846,-0.5272227,-0.025179787,0.96959984,-0.33641738,0.05589944,0.15168153,-0.34894985,-0.034795184,0.22743322,-0.07600359,0.13285819,0.44742227,-0.05394117,-0.52401626,0.4808292,-0.18747523,-0.17874555,-0.3806119,0.56869495,0.5728749,-0.5579144,0.5742647,0.2924471,0.08238018,-0.29836974,-0.4864017,-0.013031299,-0.085946,-0.23965904,0.42546034,0.42978913,-0.79111284,0.3325453,0.33746275,-0.29634613,-0.7026597,0.49385062,-0.1402139,-0.19724157,-0.29065758,0.42064553,0.25955877,-0.026920905,-0.06292076,0.17877732,-0.45202824,0.25413743,0.17007165,-0.082904875,0.1380168,-0.18090487,0.032248583,-0.82124525,0.10926153,-0.4220101,-0.32683378,0.44492513,0.061568327,-0.022296263,0.08862978,0.041248415,0.33199096,-0.15754081,0.07883129,-0.2927813,-0.20551758,0.44029266,0.5163329,0.43858173,-0.40553957,0.5655693,0.12105986,-0.06997942,-0.014978937,-0.051927984,0.34409872,-0.015486794,0.4551676,-0.114085265,-0.100119,0.18233685,0.5086986,0.17032878,0.44464293,-0.10846214,-0.07415305,0.072143115,0.047884528,0.2717549,-0.12184841,-0.7725791,0.23596723,-0.3445925,0.073765345,0.5975974,0.0973679,0.25671038,-0.10438486,-0.28041193,-0.089454785,0.21550988,-0.026701884,-1.232432,0.38671142,0.1789439,0.8500829,0.49551013,0.048689958,0.075548686,0.89622396,-0.09416838,0.026805477,0.2942347,0.09880285,-0.51391345,0.51359516,-1.0669981,0.482665,-0.04403966,-0.049424924,0.07946213,0.02918108,0.5115513,0.5853072,-0.19916987,-0.0019261794,-0.007892771,-0.4160905,0.13688584,-0.34229988,0.14552154,-0.42337054,-0.4503966,0.67529184,0.52426875,0.63003075,-0.21048461,0.03534099,0.053844247,-0.17815824,0.33257082,-0.012850476,0.07433315,-0.071533374,-0.66425455,-0.022053609,0.5622686,-0.15161593,0.23842978,0.051726613,-0.26643416,0.4707233,-0.07102812,-0.0069483006,-0.021048317,-0.6372984,0.20363565,-0.26525837,-0.380078,0.39448363,-0.04555721,0.2297199,0.15185936,-0.035322066,-0.13418834,0.43115404,0.16327524,0.9411685,-0.054294676,-0.013089836,-0.28259543,0.22118865,-0.05235952,-0.082787886,-0.07036749,-0.27367276,0.036471065,-0.71898025,0.2707531,-0.085644566,-0.24641684,0.16150853,-0.091914766,0.0679482,0.5564949,-0.15267392,-0.25188044,-0.15910485,0.043492027,-0.16786766,-0.5003033,-0.16186722,0.2303284,0.027699133,0.09710554,-0.07957214,-0.18086179,-0.15027264,0.34099862,-0.048195276,0.47546488,0.31875148,-0.027654698,-0.31749764,-0.07380321,0.21130796,0.3857554,0.02197728,-0.0536622,-0.22401486,-0.5719101,-0.5402334,0.16643748,0.06385705,0.53155947,0.14454257,-0.114300095,0.79077095,-0.36371025,1.1854073,-0.03173283,-0.47036806,0.15737215,0.51042193,-0.10483465,-0.10212309,-0.29675633,0.76649135,0.59571457,0.0031271833,0.041451115,-0.5266045,-0.09702883,0.15291417,-0.18302895,0.0120517565,0.053175468,-0.6287617,-0.21211784,0.069155805,0.17368683,0.09751817,-0.16827162,-0.024066355,0.40214294,-0.000740096,0.20863383,-0.29669496,-0.2891709,0.31872076,0.26915088,-0.12194721,0.008462305,-0.60289,0.4574468,-0.5703443,0.20553185,-0.36583376,0.18670973,-0.31068134,-0.14291045,0.2310441,-0.15347192,0.37900993,-0.34464693,-0.3095952,-0.081888676,0.6157452,0.052040916,0.098539814,0.6108057,-0.31231576,0.07888239,0.021224977,0.45172125,0.63795036,-0.47920308,-0.05648934,0.30930543,-0.42346737,-0.48910233,0.3607923,-0.17166682,0.19301333,0.28377536,-0.09616625,-0.44373345,0.27151722,0.28298992,0.09402078,-0.1674609,-0.6861587,-0.019720068,0.21174791,-0.45369497,0.009531056,-0.25068027,0.17742583,0.39740378,-0.37306002,-0.6117384,0.057118744,0.066492096,0.049481962,-0.41456434,0.023326298,-0.3616343,0.29551333,0.022445632,-0.34605113,-0.2839084,0.22464588,-0.48144108,-0.085596904,-0.105852224,-0.24164116,0.10150809,-0.4051458,0.043394912,0.8134718,-0.21456274,0.1643608,-0.45271495,-0.506907,-0.7577738,-0.3211477,0.24695535,0.08820223,0.13623442,-0.75093967,-0.006675226,-0.2612001,-0.29947147,-0.193397,-0.4627238,0.49695584,0.14241247,0.37993884,-0.24225426,-0.7329482,0.31884226,0.15737705,0.14343692,-0.4556783,0.43715218,-0.09208427,0.7808298,0.10483885,0.116614185,0.1794674,-0.49684262,-0.082777955,-0.102780424,-0.21784137,-0.6429008,-0.08427716,14 +334,0.56892955,0.1350213,-0.46374968,-0.13639,-0.11054366,0.09072101,0.000116212024,0.32999703,-0.004201307,-0.5944929,-0.3824834,-0.29351565,0.016282989,0.2683215,-0.23223297,-0.6955685,0.16895346,0.14786026,-0.3820137,0.5305149,-0.4155392,0.37787884,-0.027857082,0.34019402,0.1137057,0.31412807,0.32123327,-0.19617535,-0.1424446,-0.19439149,-0.03491452,0.050203674,-0.39276102,0.2527608,0.112313576,-0.30127224,0.10914983,-0.23918223,-0.41130766,-0.59204197,0.21341157,-0.84476936,0.40248108,0.067666225,-0.23932043,0.14667754,0.07738708,0.15716253,-0.24844769,0.073203646,0.24182712,-0.13976294,-0.11442014,-0.34579253,-0.13045712,-0.6888705,-0.45507288,0.09429144,-0.17512076,-0.21899037,-0.46282735,0.09793736,-0.28414547,0.024069538,-0.10432471,0.15695181,-0.566454,-0.055820566,0.2088467,-0.28002435,0.10337145,-0.61292976,-0.2789621,-0.13878812,0.18601152,-0.1298024,-0.13689393,0.31008306,0.24156776,0.5248965,-0.003000268,-0.089651294,-0.26833695,-0.14865066,0.29730862,0.6414723,-0.3325386,-0.5100714,-0.08393768,-0.15031807,0.1394008,0.06010936,0.12454226,-0.3154852,-0.07647039,-0.13334383,-0.29054716,0.1492252,0.57371986,-0.5881528,0.0012585266,0.3333164,0.3481769,-0.052791696,-0.19979899,0.04759511,-0.09020006,-0.45217636,-0.15715715,-0.07215339,-0.100043125,0.6685848,-0.07127948,0.11387082,0.5925108,-0.22705813,0.2557784,-0.021003842,-0.27898672,-0.104421414,-0.055150826,-0.09373379,0.17168392,-0.2930347,0.13459715,-0.35276327,0.87154645,0.027340727,-0.58932686,0.48257288,-0.42661697,0.15303119,-0.06109818,0.50788885,0.42462203,0.38680807,0.23380078,0.6240493,-0.4893559,0.02067693,-0.03520986,-0.31584764,0.13820006,0.061313383,-0.20076588,-0.44368228,0.102300406,0.12792705,0.003863573,0.027927289,0.4785542,-0.3939776,0.045874152,0.28731364,0.74655837,-0.35594797,-0.055771105,0.5443873,1.1975515,0.8190598,-0.020052183,1.1866003,0.3941059,-0.13933805,0.06361329,-0.2838651,-0.5622828,0.17439799,0.49005148,0.5192898,0.10702284,0.27397078,-0.015780734,0.5096382,-0.53858316,0.17930757,-0.25033626,0.31437507,0.08815998,-0.19665071,-0.4636399,0.008065628,0.077991046,-0.061137665,0.053408258,0.39040524,-0.20062985,0.37218115,0.04468041,1.6091472,0.09526156,0.15015057,0.028468292,0.5510273,0.1313027,-0.06679227,0.12103746,0.25819546,0.17175332,-0.061263647,-0.3725792,0.1011801,-0.16489804,-0.76935357,-0.19845316,-0.30053124,-0.18365529,0.037488528,-0.44033045,-0.082590856,0.13135733,-0.19807352,0.38416934,-2.7049332,-0.057563275,-0.23647371,0.2015824,-0.165071,-0.34595403,0.057148844,-0.3514905,0.5846033,0.4913873,0.46540788,-0.56928587,0.44822937,0.5157832,-0.37026945,-0.058589865,-0.58184874,0.016425593,-0.11324561,0.49576405,0.16351168,0.020692255,0.03129523,0.02430345,0.47814777,-0.20226799,0.09117676,0.1543381,0.27570492,0.17004827,0.36313948,0.09917307,0.52561,-0.1517552,-0.14743532,0.24818501,-0.18861532,0.41708905,-0.10072448,0.14344963,0.15487285,-0.52825147,-0.67629826,-0.7914174,-0.43161985,1.0831891,-0.11294309,-0.49071804,0.36362672,-0.14199577,-0.25492284,-0.058455456,0.42524645,-0.21531653,-0.0017673586,-0.77256924,0.0661354,-0.25868288,0.13786876,-0.0061206827,-0.008654682,-0.48221564,0.80682147,-0.14920832,0.42811912,0.44328675,0.111050494,-0.19184354,-0.3273851,0.06039675,0.92059815,0.3276814,0.1970038,-0.3213231,-0.21922286,-0.24214864,-0.12982707,0.15557651,0.59688646,0.51739645,0.072515965,0.00978307,0.16720466,-0.14846244,-0.21838714,-0.22176707,-0.13140376,0.030020222,0.07138585,0.73236996,0.76965463,-0.15979011,0.2812369,-0.26117036,0.4021461,-0.35249344,-0.44691247,0.32985234,0.70921856,-0.053063303,-0.16514124,0.66341126,0.7098554,-0.2627643,0.29442978,-0.6197077,-0.33189312,0.44423106,-0.25599533,-0.3791513,0.12664032,-0.44256237,0.16482092,-0.88691217,0.4687485,-0.21813877,-0.5850411,-0.5534109,-0.19448635,-3.6989517,0.19026123,-0.27520308,-0.22466215,0.07622935,-0.15139921,0.35859627,-0.51727057,-0.3248248,0.0705858,0.067031436,0.51756185,0.06861819,0.07992101,-0.37444067,-0.19261374,-0.111627094,0.26397964,0.0611575,0.3440453,-0.14226736,-0.4177665,0.08133868,-0.15605508,-0.2597198,0.033078495,-0.6201512,-0.6197672,-0.22195257,-0.14310057,-0.20373188,0.55491364,-0.52908814,0.027870229,-0.24964054,-0.08310629,-0.27670264,0.2031022,0.25949588,0.24229898,-0.11952187,0.060680747,-0.13982163,-0.44593415,0.4022191,0.114977516,0.41319245,0.5387212,-0.15980099,-0.024253467,0.48010403,0.44390795,0.03292556,0.749515,0.42276272,-0.08159985,0.25540167,-0.1984583,-0.23532286,-0.54484946,-0.43316582,-0.116224535,-0.43992022,-0.49685213,-0.16145362,-0.3553398,-0.69746333,0.40453586,-0.046272993,-0.102915846,0.0017550843,0.06290086,0.28472838,-0.22275506,-0.1470807,-0.0025359818,-0.009042384,-0.59190696,-0.41366318,-0.57970476,-0.454181,0.083241716,0.99444485,0.032315936,-0.04971404,0.006272137,-0.26217276,-0.03664904,0.11083094,0.09513172,0.067319855,0.24669722,-0.056973524,-0.75322247,0.66616535,-0.045030493,-0.16369703,-0.64183027,0.26200372,0.5420367,-0.6384672,0.48965573,0.43205568,0.121326685,0.14089522,-0.52217597,-0.3432083,-0.175599,-0.36404905,0.30987564,0.16386828,-0.9771338,0.36786416,0.32297662,-0.11179062,-0.7149089,0.49087292,-0.13006267,-0.5402121,0.21154396,0.15675534,0.07623272,-0.17038655,-0.25067922,0.3241434,-0.50318664,0.28170317,0.3262324,0.038602542,0.35900375,-0.16615649,-0.0048682177,-0.67269695,-0.079649016,-0.47836477,-0.184973,0.07005952,0.111316696,-0.030908018,0.1777338,0.11169165,0.4048615,-0.23183282,0.15905164,-0.107250094,-0.22033134,0.32996845,0.46145126,0.49584875,-0.4377966,0.6990423,-0.048281822,0.18159561,-0.20843199,0.15814283,0.553238,0.004632843,0.41982475,-0.19080465,-0.051908594,0.2075051,0.95503384,0.297749,0.58717114,0.21782207,-0.27791792,0.39354473,0.05561175,0.13677435,0.10924651,-0.4624415,0.05299694,0.003567636,0.17958744,0.3587089,0.012504752,0.43557867,-0.20846261,-0.26401544,0.05356008,0.2771508,0.1841379,-0.9322285,0.30711904,0.23725376,0.71292645,0.52163666,-0.08540291,-0.040770292,0.7030236,-0.3074802,0.07011159,0.23377919,-0.06468409,-0.45933595,0.34288105,-0.5310339,0.3665704,-0.116650395,-0.07462597,0.081201084,-0.07384839,0.22731447,0.7257619,-0.2031634,0.107728735,0.19081722,-0.41666397,0.024460793,-0.28682128,0.06846343,-0.5973191,-0.28682604,0.6760874,0.60573775,0.24641491,-0.026614785,-0.06866842,0.035946164,-0.0818808,0.074746445,0.035960555,0.19786794,-0.06969569,-0.6159506,-0.39519256,0.5121541,-0.123448715,0.17406437,0.06273622,-0.35595927,0.16151057,-0.24026452,-0.11355793,0.045680404,-0.40652266,0.15554273,-0.3668995,-0.31444073,0.4406628,-0.27004224,0.42163792,0.12206297,0.05889403,-0.15881048,0.3611305,-0.043910086,0.6122225,0.13754496,-0.272535,-0.44903582,0.015529045,0.29013896,-0.24751791,-0.10962743,-0.283545,0.09776646,-0.6545001,0.23860715,-0.1323525,-0.26000857,0.09408192,-0.14083074,-0.0130909635,0.5696548,-0.017511921,-0.25449377,0.18690325,0.055254787,-0.23382087,0.19023636,-0.15736385,0.30162886,0.002061316,-0.029137237,0.011905764,0.022171235,0.100154586,0.23341165,0.08062359,0.2644819,0.39898777,-0.09452778,-0.2544872,-0.14158313,-0.004774528,0.63546455,-0.10740267,0.124778666,-0.00511258,-0.71660703,-0.3824328,-0.054096997,-0.26937205,0.2603465,0.23101674,-0.2277061,0.658584,0.030317709,1.1443865,0.13062759,-0.3731777,0.10171192,0.59753144,0.032263048,0.16553028,-0.39096698,1.0863196,0.6133667,-0.17553453,-0.19529592,-0.20681348,0.010039636,0.26179373,-0.14834605,-0.27195635,0.05199799,-0.7321731,-0.05025851,0.15080322,0.40757936,0.16669962,0.02996317,0.06949369,0.071446225,0.17919533,0.32772484,-0.43751764,-0.19585061,0.36886352,0.22071366,-0.15322421,0.07531287,-0.29754663,0.39518723,-0.61460286,-0.0344161,-0.36327904,-0.11356183,-0.23347063,-0.34713477,0.18543205,0.082765855,0.3813835,-0.31890178,-0.15429795,-0.115878046,0.5527052,0.15303512,0.25595573,0.501466,-0.069486454,-0.053773012,0.0066392412,0.37812668,1.1618674,-0.31244496,-0.00081574917,0.48909074,-0.44638607,-0.5606986,0.24473305,-0.31383422,0.07995169,-0.09497522,-0.4613605,-0.49614826,0.30334356,0.23243997,-0.25168493,0.081790075,-0.5693612,-0.20522316,0.24319763,-0.3484199,-0.3940745,-0.29378912,0.2439973,0.61205655,-0.3690087,-0.22341573,0.0021971804,0.34923843,-0.38239056,-0.6119588,0.05078081,-0.26477024,0.27811044,0.24884759,-0.45438364,-0.14974536,0.1095177,-0.27230987,0.09581368,0.19788125,-0.4482978,0.13220993,-0.5169011,0.09152417,0.76326686,-0.036948353,0.22958732,-0.66854125,-0.44319528,-0.9346401,-0.57295287,0.69231755,0.22015102,-0.10699259,-0.40963188,-0.21035211,-0.08299322,-0.008413153,-0.065077536,-0.28327134,0.57919216,0.10383898,0.3196617,-0.03622498,-0.82739,-0.00962994,0.14739858,-0.22776733,-0.59970313,0.48482826,-0.1608218,0.9677691,0.03766436,0.1513406,0.28500548,-0.44267854,0.23123002,-0.3378945,-0.2225432,-0.63142234,0.13474317,15 +335,0.48036602,-0.06444775,-0.40228122,-0.06683991,-0.42656282,0.40786928,-0.032705452,0.24565366,0.027458416,-0.7044058,-0.0037058082,-0.073839866,-0.32939267,0.035550233,-0.16433868,-0.063515514,-0.10851226,0.04035761,-0.52682096,0.6808529,-0.20817201,0.43725199,0.08647963,0.11219144,0.0032195193,0.14063881,0.20059694,-0.05130094,0.13989484,-0.40835407,-0.2219541,0.023147073,-0.70020837,0.43233484,-0.094505236,-0.4270733,-0.009917698,-0.3986516,-0.2515073,-0.67718846,0.3103471,-0.83070606,0.59476703,0.11124999,-0.25727743,0.24117999,0.1515613,0.056888323,0.23213185,-0.08965521,0.3511133,-0.12059974,-0.034521926,0.05253648,-0.16702214,-0.3963682,-0.47802034,-0.034927584,-0.39706865,-0.3079365,-0.25636786,0.18723217,-0.33063132,-0.15793364,-0.30669212,0.48031187,-0.34588665,0.0054860157,0.05834424,-0.2292168,0.21095255,-0.79128695,-0.03493582,-0.102749825,0.23041753,-0.16751823,-0.106789224,0.36934635,0.17735077,0.5331785,0.09335234,-0.18868038,-0.24581262,-0.24370703,0.069367595,0.470006,-0.12861547,-0.20090629,-0.15523812,0.009610886,0.24517448,0.16734518,0.1826628,-0.23949933,-0.024769796,-0.03682779,-0.060795337,0.49950835,0.42964298,-0.27322632,-0.093246974,0.4210265,0.62067735,0.050821297,-0.08707635,-0.08278109,-0.16705711,-0.335463,-0.20347843,0.25730827,0.02074637,0.371458,-0.09134163,0.3327932,0.38236737,-0.28761992,0.02525219,0.039284077,-0.027313564,0.083467014,-0.24788018,-0.09421761,0.3669301,-0.56874144,0.23934783,-0.29878882,0.6621459,-0.092020445,-0.6450018,0.30517343,-0.33232307,0.0041992166,0.07082748,0.584434,0.51100934,0.46956566,-0.15151678,0.85277325,-0.37261432,0.0018793835,-0.11368458,-0.08743326,-0.12423082,-0.16029692,-0.027148928,-0.48141828,0.15816288,-0.024070919,0.10405094,-0.21399236,0.14532366,-0.5643319,-0.23011588,0.30169934,0.7378339,-0.24592996,0.07696312,0.72382516,1.1007978,0.98428667,0.022459146,1.012087,-0.076391995,-0.2799634,-0.09743452,-0.05652135,-0.5509473,0.18139507,0.41073474,0.716526,0.20373347,0.11358235,-0.08812516,0.2756808,-0.5162805,-0.17496654,-0.35926682,0.24782059,0.07710572,0.026092228,-0.37146768,-0.0534966,0.047111697,0.09691287,0.15932007,0.14166866,-0.44349527,0.19336574,0.06434439,1.3289312,-0.31875578,0.12004024,0.1557939,0.3325824,0.021719748,-0.12898953,0.1215258,0.32402086,0.4126537,0.14391597,-0.4347305,0.122026205,-0.32044855,-0.44321457,-0.09409245,-0.29172674,-0.2460021,-0.03887636,-0.47946027,-0.3248429,-0.023941278,-0.40728372,0.37404567,-2.8302367,-0.109058216,-0.2841081,0.23561628,-0.27340135,-0.36352983,0.0032073047,-0.50604624,0.5482279,0.350144,0.32383636,-0.40155554,0.28084424,0.47805935,-0.47812486,-0.07420193,-0.50070715,-0.13832991,0.020860776,0.39291725,0.057618827,-0.13208227,-0.04554112,0.056792967,0.469492,0.028672848,0.18816675,0.33611584,0.3516226,-0.06738845,0.50218296,0.04996497,0.50472873,-0.3760702,-0.07158842,0.4273024,-0.19724382,0.25309947,-0.25118804,0.16700587,0.47497758,-0.3548569,-0.5984107,-0.7803994,-0.33703724,1.2875016,-0.24133375,-0.6531445,0.19532108,-0.3072738,-0.19694436,-0.17594686,0.40886375,0.03354038,0.00036352448,-0.6007331,0.1263344,-0.15453747,0.3821017,-0.15950008,-0.0016522834,-0.57744503,0.6961945,-0.028235441,0.7635689,0.3111603,0.29558393,-0.17985483,-0.27549985,-0.07291226,0.8965796,0.5390054,-0.016907582,-0.22932829,-0.004803302,-0.1953471,-0.06665097,0.19144788,0.70069313,0.6473629,0.03390533,0.029053988,0.31597376,0.11256818,0.12347344,-0.1776624,-0.23850237,-0.31367353,-0.14265019,0.49208114,0.17444743,0.07401057,0.3657871,-0.20075662,0.17670573,-0.2603019,-0.4372192,0.29826188,0.6218103,-0.21408783,-0.15540214,0.6216812,0.6203004,-0.22759965,0.32938427,-0.7047239,-0.37617916,0.5305287,-0.22729649,-0.5901109,-0.005133229,-0.3361187,0.040382095,-0.58617336,0.26160648,-0.35681304,-0.81576115,-0.44211105,-0.29264477,-1.8470947,0.16956179,-0.1898042,-0.093485795,-0.15822324,-0.3736647,0.20507608,-0.41642475,-0.44714123,0.10859471,0.055623926,0.6529166,-0.12597622,0.03142823,-0.2197862,-0.15269925,-0.27694795,0.24665406,-0.02906766,0.07038129,-0.22505224,-0.21361254,-0.028103765,0.0669062,-0.3198773,0.012469081,-0.5168854,-0.3243011,-0.20723674,-0.27507356,-0.20807956,0.68654215,-0.22576581,0.13723196,-0.10596831,0.05392744,0.120695814,0.15043034,0.06626544,0.34296033,-0.003456352,-0.19236127,-0.08359613,-0.37535587,0.53753155,0.12924449,0.3731784,0.3700932,-0.28203943,0.24035719,0.30481228,0.49922228,0.0040119207,0.9112266,0.2502387,-0.21566632,0.38193926,-0.13293378,-0.21024255,-0.65180075,-0.14552762,0.21216333,-0.42499426,-0.44750902,0.23366912,-0.2530803,-0.7898793,0.5016587,0.10000972,0.29912207,-0.09821986,0.3288626,0.34085098,-0.36489055,-0.00051122904,-0.07866453,0.011946963,-0.43690416,-0.50877464,-0.58655703,-0.4049559,-0.17940095,0.96372044,-0.3112441,-0.016039042,0.26307243,-0.121426806,0.2862853,0.08031506,0.14368305,0.025515398,0.37091964,0.0860707,-0.65759385,0.55907536,-0.11958325,0.043571718,-0.41067314,0.4684372,0.53654134,-0.56114364,0.1740284,0.21404004,0.10310999,-0.49815232,-0.6002378,-0.024000833,-0.13869835,-0.30661038,0.3630834,0.08467746,-0.68880135,0.28023976,0.18382256,0.05214978,-0.6972002,0.46022397,0.03830157,-0.15580858,0.12856843,0.31487268,0.19258933,-0.054050658,-0.031300236,0.18816186,-0.4866946,0.41182116,0.16372585,0.00022099273,0.5012332,-0.19848163,-0.39565444,-0.58235747,0.1446367,-0.5839639,-0.2766319,0.33172584,-0.023984393,-0.09955346,0.59802806,0.10171865,0.5071346,-0.17024468,0.20522235,-0.006624644,-0.2804161,0.49187544,0.31520918,0.41791898,-0.4546998,0.51012313,0.0142409885,-0.07940512,0.0051313853,0.1779463,0.48269272,0.10461482,0.42598447,-0.2380532,-0.012061334,0.17947778,0.9142457,0.16924135,0.23863442,-0.07392544,-0.12169148,0.23435004,-0.07459366,0.23904587,-0.0317235,-0.79746336,0.036797054,-0.07404983,-0.03997228,0.39103884,0.1421022,0.20067246,-0.09142069,-0.033595417,-0.041407205,0.0059600896,-0.06281936,-1.1526123,0.32061052,0.13147643,0.9557758,0.29518658,0.04549346,-0.053261578,0.56559396,-0.19127516,0.122216165,0.19527595,-0.022276146,-0.19320825,0.4659454,-0.5401966,0.32978612,0.061662424,-0.09290082,0.13107291,-0.10829973,0.35083437,0.7869572,-0.28255743,-0.084651746,-0.15564044,-0.3066798,0.17794192,-0.26783496,0.289864,-0.49754325,-0.38601765,0.5202028,0.41976005,0.3609459,-0.1326145,0.016011545,0.09966334,-0.19880772,0.27998605,-0.031104283,0.052771725,-0.11028481,-0.29533443,-0.045469724,0.43132845,-0.2321666,0.035170574,-0.08705177,-0.27987558,0.1187192,0.16558564,-0.023954209,0.048095576,-0.7334911,0.32587066,-0.19951597,-0.26443097,0.28153983,-0.2113191,0.09513936,0.07865308,-0.028670518,-0.11420329,0.22639577,0.21318659,0.5110319,0.0406175,-0.008406528,-0.60130703,0.0843019,-0.08691069,-0.2023875,0.21530756,-0.055693183,0.17479645,-0.64234257,0.3098844,-0.15673327,-0.2745376,0.23953056,-0.20145763,-0.016330734,0.42064252,0.07574218,0.031989705,0.062881395,-0.21123222,-0.2527555,-0.16530772,-0.1366533,0.14343716,-0.005978855,0.03292845,-0.13336007,-0.18283142,-0.17318203,0.27624053,0.26896128,0.2891747,0.1253651,-0.093717635,-0.5971255,0.1316684,0.05103162,0.44356918,-0.26017237,0.015699944,-0.012122785,-0.40867382,-0.39167842,0.44502625,-0.092688836,0.37310615,0.07827906,-0.14932404,0.8092105,0.099891864,1.1928848,-0.10039253,-0.42530414,-0.18134348,0.6470726,0.010940467,-0.036289267,-0.30161676,0.8750542,0.5236119,0.054198246,-0.08409185,-0.21478668,-0.0117164,0.18898189,-0.19754133,-0.028392341,-0.091535866,-0.63370603,-0.2985157,0.1151913,0.24460462,0.023610856,-0.09580984,-0.13312724,0.25419152,-0.023514763,0.30498633,-0.4287935,-0.09119392,0.2314599,0.09459227,-0.027411034,0.21797027,-0.42182437,0.27650607,-0.6576363,0.113894515,-0.026561435,0.05952559,-0.091965795,-0.09697242,0.17615478,-0.11908823,0.38610086,-0.21593383,-0.41447887,-0.062026374,0.28143817,0.1864051,0.17171207,0.6058281,-0.21330966,0.14614865,-0.101574115,0.38487062,0.99793303,-0.073712185,0.06609257,0.13579126,-0.47321182,-0.562116,0.12623715,-0.24011748,0.13395841,0.08466125,-0.20835122,-0.13287722,0.24425714,0.30636707,-0.09026696,0.08997451,-0.8477666,-0.1200287,0.037482075,-0.3513871,-0.19038437,-0.3624929,0.25062642,0.5459742,-0.12805362,-0.35606068,-0.014964961,0.4126298,-0.25125003,-0.718886,0.14004637,-0.4731155,0.18477334,-0.1118841,-0.41193908,-0.29067364,0.09710407,-0.47919878,0.06110862,0.121763825,-0.34190375,-0.124932356,-0.20990051,0.093296945,0.71842766,0.056218024,-0.016668703,-0.2771408,-0.47227806,-0.7546398,-0.4483294,-0.0036519233,0.2932088,-0.09017519,-0.4911093,-0.14548661,-0.4033362,0.056785088,-0.14923702,-0.25348768,0.37597114,0.20151663,0.36566767,-0.24463908,-1.0451344,0.18884012,0.13174547,-0.05910366,-0.29378623,0.32791477,0.11328191,0.6376712,0.15219712,-0.027116682,0.10694678,-0.5744621,0.2639939,-0.20515724,-0.01758129,-0.75566965,0.08970086,16 +336,0.49253038,-0.16972096,-0.5960495,-0.07489516,-0.1556792,-0.07462828,-0.19572523,0.11783446,0.31340268,-0.24126188,-0.2840167,-0.10911455,0.17723492,0.43294504,-0.07303596,-0.7499197,-0.14997058,0.08250829,-0.63047355,0.41397768,-0.5055087,0.27921948,0.17155372,0.3258745,-0.08039764,0.32995746,0.365078,-0.24561715,-0.1583617,-0.031623524,-0.09463649,0.2849043,-0.7631375,-0.06765951,-0.22272184,-0.24500637,0.003871773,-0.5493052,-0.25861087,-0.8206218,0.1709287,-0.94407475,0.55664444,0.09883787,-0.00047209646,0.06288817,0.2113364,0.18063717,-0.4351764,-0.014267357,0.15697126,-0.20999844,-0.25430393,-0.26716632,0.0067550326,-0.46309325,-0.49022698,0.04159059,-0.6184891,-0.21580303,-0.16603932,0.016920881,-0.33694598,-0.006286059,-0.21939568,0.27408618,-0.4004261,-0.13841905,0.543898,-0.18937972,0.36019215,-0.5815468,0.022790814,-0.07185344,0.515149,-0.11192808,-0.21610959,0.2745742,0.4440954,0.48009995,0.22666316,-0.29979283,-0.15549989,0.045762528,0.30454922,0.45487818,-0.07035019,-0.5224815,-0.11371891,0.25386614,0.248638,0.45169216,0.0056029386,-0.2505459,-0.028999703,0.0010443628,-0.113681994,0.42467895,0.6342862,-0.28797707,-0.40109068,0.20508845,0.61395884,0.36538687,-0.016247954,-0.11495148,-0.016039586,-0.5819634,-0.16882363,0.23455755,-0.11506621,0.53782004,-0.16094236,0.13821656,0.7365204,-0.24396196,0.02294517,-0.17069766,-0.18833026,-0.20243053,-0.18813358,-0.06330804,0.28660032,-0.527751,0.12000734,-0.27675933,0.5610699,0.28801987,-0.76829845,0.38233715,-0.5908136,0.27587566,-0.07425231,0.662131,0.733047,0.3030519,0.47263446,0.7713582,-0.38540787,0.22066459,-0.0074761934,-0.61216956,0.13584743,-0.2603481,0.09760381,-0.38545138,-0.03843521,-0.172774,0.033639822,0.10689462,0.14352128,-0.63550615,-0.04951519,0.101719655,0.71210295,-0.27448997,-0.09364348,0.6920027,1.0412453,0.8821532,0.14995153,1.3353785,0.36809096,-0.2603244,0.17516506,-0.21632075,-0.76791745,0.18081965,0.33569542,-0.4250795,0.45994785,-0.08284272,-0.09325925,0.28209606,-0.39336067,0.011272061,-0.033548538,0.28392068,0.056748264,-0.15299408,-0.49869353,-0.106572516,-0.28011853,-0.056259092,0.17389798,0.21018577,-0.09532908,0.23755524,-0.017415812,1.2578346,-0.14471309,0.06979154,0.042658336,0.36041853,0.37032205,-0.11095136,-0.059444718,0.43485817,0.43417758,0.029053982,-0.63261986,0.16912426,-0.300328,-0.34633946,-0.15750647,-0.33791938,0.018771097,0.15426017,-0.25037178,-0.06994524,-0.09070698,-0.223018,0.5111483,-2.6100218,-0.2113944,-0.088275656,0.361294,-0.3775434,-0.16389307,-0.08510469,-0.5501525,0.2447214,0.22409277,0.4857628,-0.7458307,0.40037957,0.36340243,-0.6099796,-0.2503743,-0.6863733,-0.014244122,-0.027543932,0.4159041,0.040758975,-0.19717304,0.039683666,0.17647734,0.6715961,0.11896274,0.021632893,0.44068697,0.60115,0.15987237,0.44125006,-0.08147137,0.58310986,-0.2709696,-0.11451352,0.4418592,-0.19875881,0.42643073,-0.23124962,0.12861963,0.41727582,-0.4215243,-0.9642162,-0.5043237,-0.40179357,1.1820599,-0.35319433,-0.45446354,0.02266683,-0.19221582,0.0027929246,0.018360475,0.627503,0.057873935,0.17020439,-0.7268318,0.09351083,-0.14100268,0.13294473,0.10460862,0.08081194,-0.35653517,0.6676408,-0.0723796,0.4402363,0.37396044,0.3686637,-0.058019944,-0.5397336,0.09825994,0.9134794,0.2724996,0.032981258,-0.08522467,-0.26705784,-0.06908318,-0.14350079,-0.026570728,0.5915136,0.82515866,-0.030642483,0.0026084238,0.26892346,0.10468609,0.11610822,-0.066787355,-0.22780745,-0.009869904,-0.12168191,0.47618967,0.886094,-0.38283497,0.46473816,-0.24058442,0.3183813,0.0260278,-0.4602151,0.81995755,0.8511185,-0.1896954,0.042323563,0.39428854,0.31519392,-0.49217933,0.50234044,-0.6969204,-0.2342376,0.70342463,-0.24668762,-0.3867696,0.30357623,-0.25917897,0.11265943,-0.98681253,0.39193973,-0.21384238,-0.007784975,-0.37000003,-0.01971428,-3.7167568,0.23370545,-0.24221835,0.00052416325,-0.3956788,-0.074096985,0.2717367,-0.6400073,-0.5845901,0.26524764,0.15105353,0.5691857,-0.094016075,0.2653926,-0.3173022,-0.23883487,-0.12517147,0.226204,0.27264145,0.30040446,-0.18166177,-0.28130624,-0.010838368,0.028832078,-0.3743321,0.16897996,-0.47203898,-0.49934652,-0.19349764,-0.52021325,-0.13073178,0.62541664,-0.36119694,-0.05357639,-0.11989103,0.16835307,-0.2699936,0.20499031,0.05470591,0.32466236,0.10144089,-0.04211023,0.15893354,-0.30860576,0.5243741,0.049835954,0.376046,0.115792416,-0.03830498,0.18890503,0.41778058,0.7262215,-0.17286769,0.9074725,0.4523031,0.044573706,0.23550925,-0.34654242,-0.2784225,-0.72326756,-0.4525263,-0.10683833,-0.37163192,-0.6158119,-0.08066195,-0.34036604,-0.8454677,0.5155571,-0.06054776,0.47260216,0.052308265,0.376381,0.58864623,-0.27980354,0.068127625,-0.06581952,-0.16286151,-0.662684,-0.14959428,-0.5761204,-0.45457023,0.12950823,0.6217928,-0.2762418,0.08513789,-0.026737468,-0.16853103,0.060313217,-0.14256564,0.08614421,0.24950658,0.4550216,0.0799555,-0.64977646,0.5143457,-0.0068871165,-0.33787712,-0.6392153,0.24603201,0.58033746,-0.76239395,0.6843318,0.5116435,-0.0315736,0.1967992,-0.57616013,-0.32619673,-0.0026862642,-0.17201121,0.34231362,0.13719152,-0.74852145,0.4623972,0.42219463,-0.43766448,-0.74473464,0.43199316,-0.015218316,-0.338376,-0.036373843,0.276677,0.19170544,-0.03897931,-0.29324105,0.0919741,-0.4714458,0.16226389,0.21575907,-0.07553581,0.33368686,0.017904034,-0.3014972,-0.8179632,0.17135003,-0.5666057,-0.13514948,0.45304376,-0.0031665307,0.066914394,-0.06331489,0.16925195,0.3753578,-0.35393882,0.13797672,0.06612826,-0.39306363,0.32928365,0.503118,0.34890392,-0.48048243,0.57887775,0.11883877,-0.30128697,0.22119316,0.103448555,0.39121294,0.09534804,0.16805784,0.065265074,-0.23618643,0.21412516,0.7001633,0.024151871,0.43569332,0.1500238,-0.010877303,0.58008,0.088602625,0.20961936,0.009579122,-0.5152114,-0.07385691,0.102655604,0.1461281,0.50568354,0.4495094,0.22198008,-0.046927657,-0.134534,-0.0025762224,0.38236123,0.11918924,-0.9228524,0.36735684,0.17425565,0.80356437,0.44316006,0.030919354,-0.11848868,0.49849734,-0.21152022,0.14262573,0.41575125,-0.0956494,-0.6654971,0.6765545,-0.5714329,0.25390476,-0.18170218,-0.031283595,0.040833056,0.18922925,0.18476997,0.89854324,-0.21484646,-0.057254408,-0.1494789,-0.03577515,0.088853054,-0.46797237,-0.12212087,-0.3161199,-0.41708627,0.72379273,0.3063723,0.42856744,-0.26649705,0.022585707,0.021185394,-0.16897866,0.20990397,-0.07868494,0.119891934,0.15127787,-0.6331377,-0.29799077,0.46209773,0.09629988,0.20639467,-0.35697514,-0.23988266,0.09632911,-0.46087292,-0.1265038,-0.093912646,-0.767018,-0.07343221,-0.29701993,-0.67327434,0.49031082,-0.10531547,0.21033196,0.27235636,-0.008747603,-0.16580893,0.319728,-0.079702154,0.9726805,0.09276468,-0.33750686,-0.5174434,0.16140267,0.30625278,-0.24165212,0.08139815,-0.32645717,0.08152239,-0.38332716,0.6804229,-0.13014857,-0.43440464,-0.0031725976,-0.28170517,-0.08589206,0.6724939,-0.28888366,-0.13480417,0.19081815,-0.29998374,-0.4093757,-0.16138391,-0.23263457,0.1620239,0.35413912,-0.02413204,-0.08663169,-0.22992513,-0.25936526,0.47427052,0.11440805,0.46798983,0.3293496,0.03269647,-0.15332055,-0.18251553,0.31204686,0.318664,0.22236733,-0.16658743,-0.52343154,-0.60851675,-0.38944206,0.024263365,-0.035981886,0.16305898,0.11014564,-0.20616539,0.7422949,0.070786364,1.1284145,0.09542946,-0.26731217,-0.013808795,0.45379168,-0.057128463,-0.09296537,-0.5032955,0.86186,0.56160516,-0.06597159,0.052053485,-0.36260816,-0.1676627,0.35370278,-0.3658994,0.0936022,0.0757403,-0.57149637,-0.465077,0.19085442,0.23502465,0.019956188,-0.080113694,0.07130364,-0.019573927,0.11917887,0.3902135,-0.66193587,-0.4350075,0.29862124,0.17106213,-0.13068779,0.06874844,-0.33721343,0.4828669,-0.48078585,-0.01562242,-0.49715975,0.10486446,-0.13589749,-0.30881357,0.1591943,0.047161132,0.39504054,-0.42999068,-0.39988178,-0.12591729,0.3292666,0.102830954,0.13305183,0.57815,-0.28345293,0.019395564,0.1843495,0.7438255,1.2713159,-0.43597388,0.055465367,0.33738247,-0.3791303,-0.5576811,0.4595633,-0.3698573,0.017501265,-0.32084867,-0.45302194,-0.62336147,0.22228377,0.1911445,0.058265563,0.1577367,-0.6437971,-0.25283742,0.2645703,-0.48607048,-0.20505682,-0.2801766,0.4409721,0.91938627,-0.41489717,-0.276299,0.08624612,0.12267412,-0.058274705,-0.47243088,-0.09358377,-0.19564463,0.2209497,0.22563004,-0.2611209,0.01689929,0.16380027,-0.50728756,0.20896003,0.12498748,-0.34274715,0.0615325,-0.09361004,-0.11588214,0.8688094,-0.30059996,-0.17381072,-0.64781684,-0.50954944,-0.9911994,-0.5442143,0.22400095,0.029849734,0.22029757,-0.41025558,0.16625288,-0.04611981,-0.10524634,-0.026339918,-0.55998,0.3215806,0.114374585,0.6124913,-0.24254291,-0.8205843,0.03438466,0.16732796,-0.16285524,-0.6541515,0.55350006,-0.07224131,0.85867697,0.03912809,-0.12494596,0.14871527,-0.48725557,-0.06562923,-0.3873143,-0.13135086,-0.8687913,0.07946745,21 +337,0.29131007,-0.21512082,-0.5725359,-0.15163204,-0.027232977,0.15923594,-0.21887194,0.20112197,0.033616878,-0.60983866,-0.024663601,-0.23103304,0.1326638,0.30406013,-0.06732305,-0.43337297,0.16992232,0.101699114,-0.586698,0.38791737,-0.42363247,0.26183435,0.12684889,0.18987608,-0.051132876,0.23791811,0.26366642,-0.19542177,-0.24006774,-0.16411869,-0.07989009,0.057877295,-0.5226545,0.0434767,-0.1963081,-0.25571436,0.043831524,-0.5224975,-0.41517848,-0.69537765,0.12522073,-0.7346826,0.46906948,0.19283088,-0.20588587,0.13559304,0.007388166,0.3892133,-0.123707935,0.25928122,0.28434035,-0.24320719,-0.05485732,-0.17104626,-0.45649752,-0.3869464,-0.5930281,-0.0032752412,-0.50448596,-0.18415453,-0.02548016,-0.006315925,-0.26774755,-0.051983375,-0.14428475,0.26018023,-0.36911228,-0.28778037,0.33040622,-0.08464081,0.57074565,-0.4770288,-0.19879344,-0.10549467,0.38744804,-0.38614607,-0.16114971,0.251896,0.4641593,0.57291275,-0.108175956,-0.09567867,-0.24801339,0.07609891,0.40664005,0.6133999,-0.20343985,-0.20737909,-0.06781238,-0.08276187,0.14721425,0.2360126,0.13131735,-0.44594568,-0.14046314,-0.031630587,-0.14047047,0.043063443,0.4342548,-0.20822416,-0.11533417,0.28531665,0.5242271,0.07105052,0.0032390314,0.07206285,0.001413473,-0.5231027,-0.20808871,0.4688172,-0.23576662,0.5255357,-0.05117471,0.16377462,0.5400394,-0.074151956,0.039954126,-0.02585512,-0.10466944,0.004050008,-0.06892211,-0.2557648,0.21887828,-0.49075207,0.10212143,-0.27914688,0.6469664,0.2837161,-0.9833268,0.3701052,-0.4099796,0.13082628,0.030148562,0.57128066,0.6165191,0.3840819,0.1007669,0.6619279,-0.70381695,0.2064519,-0.081009425,-0.3389834,0.09927455,-0.07075667,-0.036791276,-0.6047468,-0.23289105,0.028793769,-0.1645033,0.13541028,0.26306686,-0.38181928,0.050799314,0.19947553,0.733895,-0.30543151,0.09352072,0.5766307,1.0375214,0.83702594,0.24168447,1.3168577,0.22035062,-0.30522582,0.13969137,-0.28768352,-0.79232186,0.26344505,0.4491612,-0.31625715,0.38317207,0.049370952,0.10911749,0.27566957,-0.38714293,0.11824596,-0.09597127,0.07245497,-0.19254376,-0.34855253,-0.25776547,-0.26929477,-0.13055293,-0.036038365,-0.09755975,0.1171297,-0.13028052,0.44312456,0.17332672,1.5895269,-0.26434493,0.108810626,0.013409346,0.22676659,0.14548512,-0.18396132,-0.21001045,0.2674525,0.38212064,-0.049675547,-0.47147068,0.07284402,-0.09064127,-0.34660706,-0.23773777,-0.10012347,0.15531075,-0.064720534,-0.35165638,-0.071919486,0.017510245,-0.48038,0.5726829,-2.698784,-0.04868916,-0.17457989,0.3072627,-0.3005611,-0.4117295,-0.18092255,-0.36443976,0.56014615,0.35777277,0.313031,-0.6596206,0.23303832,0.30454877,-0.35278028,-0.117582254,-0.66983616,-0.08464199,-0.06217709,0.13753597,0.09050308,-0.16807568,0.03870857,0.2315894,0.27160698,-0.25728178,0.09219786,0.20733516,0.26629514,0.31640694,0.38133714,0.047054905,0.62588733,-0.21317005,-0.22620836,0.2934871,-0.3634696,0.26070395,0.08670628,0.15406778,0.3391838,-0.44730344,-0.6299409,-0.74746627,-0.643551,0.97713745,-0.18545581,-0.23903862,0.29329437,-0.038891222,-0.46235064,-0.10561466,0.45093852,-0.17301962,0.057348114,-0.90719384,-0.22856402,-0.011068001,0.23033024,-0.055228025,-0.007526372,-0.51698405,0.62063164,-0.12204639,0.4586568,0.39961383,0.117111936,-0.11745872,-0.43898082,0.041013148,1.1732818,0.31589285,0.1818004,-0.12725113,-0.20811962,-0.3625109,-0.16882779,0.0856633,0.31855273,0.86772025,-0.15215956,-0.0686685,0.19307634,0.05459941,0.06074477,-0.13869998,-0.35180134,0.020039946,0.0057805693,0.54266405,0.37919027,-0.11537952,0.31498814,-0.1407014,0.25601953,-0.1079881,-0.39223334,0.4722238,0.9406509,-0.06295136,-0.16595681,0.42281502,0.39385104,-0.29820147,0.42532563,-0.54682714,-0.3035273,0.36662412,-0.09770187,-0.39220074,0.2817363,-0.39183447,0.3449483,-1.0304967,0.4024822,-0.47282034,-0.28958994,-0.49335235,-0.07081627,-3.0776672,0.093202315,-0.15045728,-0.2811508,0.105678424,0.026669042,0.27393577,-0.55018,-0.59508944,0.12396811,-0.017162824,0.6467244,0.030962829,0.0427211,-0.25590393,-0.15015353,-0.43632588,0.18782316,0.20756963,0.18214022,0.044158988,-0.3156273,-0.06605579,-0.33835366,-0.3657227,0.026580598,-0.6677943,-0.43030962,-0.4064202,-0.41085306,-0.47801003,0.6060151,-0.45302233,-0.053298358,-0.1669608,-0.009334244,-0.17488196,0.43465716,0.2426631,0.31336397,-0.030196896,-0.08271207,-0.22778787,-0.26776394,0.15171352,0.1888688,0.08663607,0.4713659,-0.20292799,0.16557476,0.29755026,0.8019829,-0.19974642,0.49046227,0.5813594,-0.16394292,0.2719383,-0.36200616,-0.09620051,-0.49258777,-0.42144457,-0.11074356,-0.2917544,-0.65390664,-0.21884982,-0.38686696,-0.7383041,0.31099775,0.043695636,-0.02442059,0.09189786,0.19015901,0.24988492,-0.207032,0.025340637,-0.090046726,-0.09984876,-0.40344232,-0.2865863,-0.62247914,-0.5997343,0.1627338,0.96153057,0.026752995,-0.019392302,0.21603906,-0.17653587,0.12899812,0.12367393,-0.04253826,0.18239887,0.35266623,0.15890782,-0.5539065,0.46022484,0.09319278,-0.27780437,-0.60693234,0.14194238,0.600697,-0.6139446,0.6620881,0.36349177,0.033215918,0.01256881,-0.4901576,-0.21639405,-0.0004525355,-0.29757124,0.3216085,0.046222057,-0.5746419,0.38989535,0.38134,-0.24841152,-0.6305437,0.4058098,0.16425829,-0.17917821,0.19102395,0.38776568,-0.21966071,-0.037828974,-0.13808589,0.2679145,-0.48549768,0.22444497,0.60478413,0.04188289,0.13087355,-0.15602186,-0.16897629,-0.64873505,0.10783814,-0.4902269,-0.19863984,0.3284348,0.11072836,0.07134609,0.117121145,0.15578778,0.45401597,-0.31999347,0.22176398,-0.015115485,-0.24122646,0.2325988,0.33893475,0.23694675,-0.36287627,0.52071637,-0.12301683,-0.14259246,-0.3270549,0.012960915,0.6033087,0.33141088,0.12681624,-0.048928805,-0.28827974,0.28424782,0.74769306,0.17659566,0.305597,0.14378573,-0.035543256,0.15392895,0.12060239,0.09951569,0.10084695,-0.378756,-0.03703379,0.065186374,0.17269155,0.26717743,0.06077073,0.35060793,-0.17336228,-0.24987973,0.019367056,0.18962823,-0.020025095,-1.0115567,0.4613774,0.105486594,0.5722677,0.56671035,-0.00837312,0.11156445,0.39983112,-0.37438157,0.15198374,0.15910986,-0.25451842,-0.5327343,0.38564175,-0.61181885,0.29218993,0.08319887,0.03523946,-0.0012963371,-0.0950168,0.39499897,0.853502,-0.22386004,0.16177824,-0.17495047,-0.078277126,0.16425623,-0.42175156,0.021243999,-0.33368567,-0.41697735,0.7160301,0.2894983,0.43787208,-0.11284928,-0.029302862,0.16661759,-0.09885388,0.23169544,-0.039935265,0.17973658,0.05537021,-0.46314272,-0.2466103,0.5186096,-0.08309943,0.0020000297,0.17937489,-0.2944878,0.19880593,-0.13974033,0.109099016,-0.15663637,-0.6782557,0.094435,-0.48146445,-0.1605121,0.33985776,-0.1149841,0.30318007,0.20382066,0.152757,-0.20000675,0.59538025,0.21366735,0.7916374,0.040785793,-0.1572164,-0.21114771,0.31685108,0.26196438,-0.14868796,0.1310027,-0.21683703,0.038513083,-0.65877575,0.4857102,0.044908535,-0.21519719,0.1914467,-0.14979675,-0.035423644,0.58307976,-0.3709207,-0.11683494,0.10538059,-0.012295784,-0.17009263,-0.1597366,-0.2363878,0.2338203,0.19757119,0.06408841,-0.042485457,0.13922589,-0.07304727,0.3567801,0.20102295,0.38635287,0.3841063,0.09144179,-0.52184623,-0.048868384,0.086064056,0.3999412,0.15747866,-0.0685995,-0.25222358,-0.40064678,-0.29289976,0.047503505,-0.25047207,0.2865491,0.062715635,-0.21179911,0.64831954,0.13934702,1.1694745,0.018220663,-0.35801145,-0.11976539,0.41609496,-0.07476408,-0.083866276,-0.39320678,0.8718928,0.6338674,0.0059928596,0.06820194,-0.13811858,-0.21763363,0.13194628,-0.04317325,0.018189413,0.053933356,-0.6742162,-0.45117992,0.22790487,0.16182603,0.05958566,-0.09070511,0.07146601,0.1835544,0.0035609582,0.18150887,-0.46300474,-0.119038865,0.35817042,0.11854325,0.04780111,0.2325799,-0.40878457,0.35256514,-0.55499953,-7.257717e-05,-0.19571106,0.070803806,0.089412555,-0.29036322,0.17267916,-0.03514717,0.23389919,-0.29703587,-0.1745453,-0.05067681,0.66238296,0.16915934,0.35401177,0.7949602,-0.19952528,0.2402605,0.046755787,0.447882,1.0711596,-0.2669212,0.06186823,0.38060278,-0.21840413,-0.5593452,0.26245612,-0.30097562,0.197098,-0.20992719,-0.44203267,-0.41803822,0.26472768,0.17936563,-0.01683529,0.07837621,-0.44977078,-0.17369692,0.3428324,-0.4503205,-0.3588803,-0.33224416,0.25949886,0.6423017,-0.2937041,-0.30240855,0.2490131,0.11637233,-0.4429976,-0.3323094,-0.003495408,-0.14082232,0.17801584,0.22730747,-0.34547213,0.031646438,0.058805842,-0.2625894,0.12575646,0.17490593,-0.38730797,0.019492017,-0.20905267,-0.11023019,0.7914476,-0.26857314,-0.10820718,-0.56879574,-0.5198088,-0.71227294,-0.395605,0.5980937,0.03927883,-0.02626239,-0.4930999,-0.008063857,0.027268235,0.14654562,-0.062016908,-0.20507479,0.4444749,0.107795276,0.42619377,-0.24986376,-0.5824348,0.10977312,0.13559708,-0.14947526,-0.5626962,0.46461496,0.084954664,0.7701383,-0.01172332,0.020087805,0.37694058,-0.52697027,0.12506679,-0.2985008,-0.05235077,-0.699772,0.06524434,23 +338,0.6006928,-0.10688633,-0.49413982,-0.06441079,-0.2945624,0.23441546,-0.07499377,0.28999996,0.15501894,-0.43251368,-0.081774354,-0.45338133,0.07418711,0.36142144,-0.11166052,-0.7536372,0.07599913,0.0011825593,-0.444402,0.29084983,-0.63772386,0.5179695,0.16554287,0.3566663,0.025081413,0.32188708,0.4146717,-0.14041202,-0.32087135,-0.03074945,-0.24004248,-0.012706531,-0.6421525,0.16519149,-0.09945739,-0.34491467,0.19587454,-0.29967874,-0.32430577,-0.65329593,0.3294694,-0.90428257,0.54820544,-0.11558525,-0.3484826,0.14694177,-0.0052029747,0.20319669,-0.255848,0.221103,0.21439679,-0.19143997,0.17848735,-0.2498167,-0.38367516,-0.81618446,-0.52388316,0.089355685,-0.5869852,-0.3002959,-0.20958737,0.13558571,-0.29581514,0.07253994,-0.2571884,0.20091756,-0.39902538,-0.07161212,0.28828502,-0.20783755,0.27687374,-0.47189403,-0.2728022,-0.15162088,0.11615318,-0.031227171,-0.11398705,0.23153333,0.39818463,0.57821476,0.022366693,-0.1272694,-0.3307299,0.066077836,0.0904338,0.5266958,-0.090655975,-0.23578055,-0.27665013,-0.025320102,0.06713048,0.23206258,0.15965824,-0.27546674,0.061942883,0.13165227,-0.16853735,0.25188166,0.44468045,-0.4729219,-0.34927347,0.31871754,0.42123017,-0.004200446,-0.125487,0.1896862,-0.052557807,-0.39450374,-0.22506222,0.10213431,0.038832102,0.69498813,-0.23461042,0.28719667,0.8836273,-0.15312505,0.09019459,-0.26758868,-0.09658863,-0.18391813,-0.20024745,-0.024651978,0.16077396,-0.5030282,-0.12475014,-0.24545029,0.68647194,0.27441138,-0.73432785,0.53136504,-0.41952613,0.078395806,0.017163265,0.5310008,0.6038702,0.28276962,-0.03189529,0.82426065,-0.69061035,0.037281815,0.019663854,-0.5006337,0.16170362,-0.15836655,0.011091626,-0.4478652,0.016609043,0.35902682,-0.08262955,-0.102249615,0.5083223,-0.43159994,0.05451485,0.009801371,0.7443829,-0.45299658,-0.039199267,0.69291633,1.0230974,0.93979305,0.04366644,1.4686047,0.3801988,-0.2715945,0.2550426,-0.32173678,-0.4899893,0.13860722,0.35663518,0.06445738,0.5150198,0.20298174,0.063416526,0.3613663,-0.03294858,0.18117552,0.019543082,0.10386232,-0.09164281,-0.20596576,-0.5265542,-0.22363193,0.08608309,0.07203746,-0.025351439,0.21320646,-0.07692466,0.43142954,0.04702591,1.6320819,0.021734532,0.1364189,-0.025437614,0.43305963,0.24961351,-0.119973324,0.03914719,0.3060997,0.25772378,0.20343426,-0.44062838,0.040909015,-0.34271878,-0.670788,-0.19818117,-0.3717751,-0.07878236,-0.3037128,-0.44902828,-0.119261675,0.14976296,-0.26172093,0.35031253,-2.4059575,-0.24781418,-0.19305588,0.27042264,-0.25850406,-0.3598462,-0.15349343,-0.4226834,0.23829386,0.555472,0.30440548,-0.6397658,0.32650405,0.42332092,-0.25248918,-0.12596463,-0.5753387,0.10080033,-0.09730746,0.52283037,-0.10307374,-0.29117158,-0.16229096,0.19791731,0.5911671,-0.07074937,0.029045863,0.051700424,0.56853646,0.10534304,0.49198195,0.21443565,0.5830361,-0.13726558,-0.027040413,0.45099968,-0.43579182,0.3790421,0.19118237,0.31082115,0.39597702,-0.47671032,-0.7733465,-0.62054175,-0.44294786,0.98146206,-0.24391924,-0.2539113,0.24177636,0.1384701,-0.31729418,0.006091501,0.34863234,-0.016410617,0.16404614,-0.69865125,-0.044793207,-0.0091720475,0.10890127,-0.068491675,0.15432368,-0.32806876,0.84437543,-0.084585674,0.33667263,0.33621174,0.14872313,-0.1645688,-0.4373564,0.06477077,0.95180935,0.3659865,0.16422436,-0.09416355,-0.16981871,-0.27923837,-0.19994502,0.15802662,0.3996969,0.91016906,0.07704631,0.06120686,0.2177564,-0.047386955,-0.000105016996,-0.049376708,-0.25141332,0.12403696,0.047732983,0.5455161,0.5990757,-0.32711536,0.57530296,-0.2726638,0.38551715,-0.25924832,-0.48589203,0.5045668,0.826435,-0.13701849,-0.15479292,0.43820468,0.34961602,-0.5911363,0.408305,-0.67115974,-0.32669702,0.5824762,-0.0548835,-0.4048303,0.23474261,-0.3329951,0.08600301,-1.0271772,0.35276487,0.077532835,-0.4609875,-0.5610291,-0.40432927,-4.1246705,0.2703495,-0.14269552,-0.0680794,0.019121503,-0.091437526,0.4091352,-0.63010776,-0.48075143,0.021647532,0.013825849,0.46166798,0.028751865,0.304882,-0.32123303,-0.23593284,-0.30224958,0.28580198,0.085752174,0.19836392,-0.02115637,-0.4712453,0.08438688,-0.42580646,-0.46904278,-0.05010116,-0.63487667,-0.6722849,-0.23773922,-0.45917624,-0.33896974,0.78195524,-0.28552586,-0.0013313422,-0.20256522,-0.10260092,-0.33591548,0.45201278,0.20700522,0.010908501,0.013826191,0.07922374,-0.16530713,-0.42869553,0.08727193,0.133198,0.4529598,0.5254869,-0.2883322,0.11863935,0.5245459,0.63460255,0.07172942,0.6094863,0.02503115,-0.12136246,0.54059595,-0.26256764,-0.15094145,-0.8923129,-0.45611617,-0.2795362,-0.46454543,-0.67501587,-0.17228372,-0.44664547,-0.6639053,0.38937193,-0.011159931,0.21346429,-0.1225301,0.33621305,0.3638453,-0.25459695,0.027441934,-0.13799122,-0.20675816,-0.56917673,-0.6061548,-0.71527374,-0.7184211,0.27873355,1.045796,0.14293922,-0.24383494,-0.021313688,-0.21181181,0.03997113,0.03396118,0.21457945,0.054972004,0.21182741,-0.18006866,-0.80496204,0.56448233,-0.1533042,-0.08515438,-0.49469835,-0.16623004,0.73662347,-0.67119884,0.48063496,0.38970646,0.32166514,0.21992,-0.3936875,-0.256219,0.06829495,-0.3106053,0.60545814,0.110839896,-0.5749394,0.40883902,0.29162937,-0.18398547,-0.5372733,0.5374187,0.018655747,-0.14791791,-0.032980423,0.28607056,0.08738078,6.75789e-05,-0.21324894,0.21139245,-0.70897704,0.11317098,0.599266,0.20798732,0.47680953,0.064144276,-0.22059014,-0.7145678,-0.10327201,-0.30089423,-0.27577248,0.073959045,0.114038095,0.081774995,0.18465273,0.12675597,0.41558543,-0.31956932,0.1483845,-0.03135899,-0.2204094,0.30464193,0.43746594,0.24111702,-0.56324947,0.51355237,0.025010195,-0.00048179287,0.008112745,-0.070702784,0.40945253,0.4590457,0.26128218,0.1351373,-0.18648104,0.268766,0.8487711,0.23471001,0.5942424,0.36526388,-0.35763255,0.32085112,0.2613184,0.16742636,0.043285284,-0.33405206,-0.0578238,0.13464276,0.14404763,0.37106514,0.006159625,0.22204264,-0.14101999,-0.052662116,0.29728666,0.2531406,-0.05037439,-0.7785197,0.15709604,0.34784827,0.55381215,0.46545115,-0.0501476,0.016198397,0.30153367,-0.3640799,-0.0044020116,0.32592422,0.0047573745,-0.60852915,0.61241245,-0.5079355,0.28935385,-0.2595999,-0.085712746,0.075257145,0.13403033,0.381243,0.9763192,-0.092093,0.111764774,-0.029221764,-0.22070177,0.050676007,-0.36787072,0.19032525,-0.31926784,-0.15190646,0.71175236,0.4169676,0.19513796,-0.26824397,-0.0875288,-0.10228548,-0.19570288,0.21899302,-0.050325412,0.02776211,-0.079481244,-0.7414235,-0.41717646,0.51341057,0.09745181,0.08739101,0.120162725,-0.56235397,0.28337446,-0.11674092,-0.022633774,0.10247086,-0.69303674,-0.006231887,-0.29170135,-0.746191,0.46117878,-0.037358005,0.27225068,0.20569253,0.056840513,-0.31894502,0.07732073,0.15462759,0.7523497,0.118064865,-0.21500123,-0.3332835,0.08337886,0.37893677,-0.41075334,-0.13566348,-0.2841982,0.25491706,-0.5260012,0.5534271,-0.018343465,-0.19192187,-0.052622862,-0.09465032,-0.0039540743,0.38201657,-0.30945402,-0.20192309,0.07442601,0.22828959,-0.18192804,0.037938815,-0.40327936,0.2526668,-0.07681892,-0.21099462,0.113866374,-0.017918918,0.07582295,0.35976407,0.17752664,0.1283574,0.36080816,-0.09332293,-0.5738565,-0.02577568,-0.067412145,0.40150753,0.13718398,0.0182227,-0.19785751,-0.48970526,-0.31420583,0.29128674,-0.10812374,0.06794979,0.2097074,-0.49230507,0.8347894,0.1563326,1.3359861,-0.0043760412,-0.3595415,0.010013374,0.52335155,-0.023577392,0.04733525,-0.5014896,1.111799,0.73496526,-0.26971865,-0.28771666,-0.25297302,-0.3001716,0.29070514,-0.3739784,-0.21293034,-0.1474093,-0.87252873,-0.15369532,0.106773816,0.27148834,0.0821531,0.094385706,0.19515644,0.094957605,0.081167884,0.5274069,-0.5070572,-0.3660093,0.30957475,0.24706706,-0.05299244,0.07400077,-0.36553958,0.5613612,-0.67820674,0.23547387,-0.46326584,0.0008402414,-0.07905274,-0.34257698,0.17781855,0.089306906,0.28978327,-0.3388324,-0.44426018,-0.37962002,0.5623307,0.14693488,0.3655715,0.66714907,-0.22680569,-0.108647786,0.1264594,0.43993086,1.4901068,0.11463,0.01524743,0.43982127,-0.42348367,-0.7125142,0.21760818,-0.40923148,0.17579456,-0.23471282,-0.48534697,-0.44744393,0.3787591,0.19227907,-0.13117419,0.08477032,-0.40279183,-0.18935399,0.46396634,-0.39492205,-0.38923666,-0.26267532,0.34842375,0.7439321,-0.489652,-0.20433614,0.007574635,0.32951242,-0.520696,-0.5563797,0.0138520645,-0.2565636,0.6762414,0.14472191,-0.3162977,0.11682414,0.1773746,-0.36733222,0.183864,0.46850678,-0.50354934,0.10321976,-0.3790032,-0.28443798,0.94433147,0.18197997,-0.08689395,-0.77566147,-0.52479017,-1.0790188,-0.500684,0.24289453,0.14445837,0.044576194,-0.39137763,-0.08832477,-0.08532737,0.07760058,0.069234185,-0.47476482,0.38672796,0.09852003,0.6502868,0.0031604257,-0.9152109,-0.10120205,0.24372236,-0.26621392,-0.58806133,0.64473474,-0.24310233,0.63515484,0.11592587,0.15889981,0.24848118,-0.6396095,0.3294828,-0.34989622,-0.08213004,-0.7257305,0.05420339,30 +339,0.47101194,-0.12984045,-0.612298,0.049877048,-0.4224376,0.052932203,-0.14775448,0.24579516,0.33359152,-0.34713975,-0.20072137,-0.17349789,-0.23309115,0.13713342,-0.006745326,-0.2661282,-0.20437048,0.26154688,-0.565204,0.7981492,-0.12034104,0.22184119,0.017916467,0.46101812,0.48272514,0.2787254,-0.17921111,0.1030078,-0.30370268,-0.36911133,0.10940377,0.13236739,-0.4655632,0.28719926,-0.3395273,-0.27793244,-0.10835887,-0.6707857,-0.36546883,-0.7930302,0.28231376,-0.7952768,0.54575527,-0.015166367,-0.22670613,0.28733495,0.2725113,0.50017965,-0.07462959,-0.18942854,0.23362719,-0.1429155,-0.123178735,-0.08265029,-0.21505019,0.049727183,-0.55620444,-0.003770635,-0.101536274,-0.112040214,-0.24112606,0.26681736,-0.23226117,-0.021380117,-0.16362654,0.72949463,-0.47996825,0.38847956,0.1842694,-0.175267,0.11055051,-0.75585383,-0.20030467,-0.08003216,0.17945066,-0.08726978,-0.018517597,0.23582087,0.022956612,0.35658628,-0.057560198,-0.13519153,-0.4447001,-0.04527792,0.16629067,0.42666164,-0.15757108,0.089593895,-0.17950316,0.014536926,0.22467725,0.25468284,0.39724016,-0.31280828,0.014221023,-0.18372713,-0.02761442,0.26648527,0.33220538,-0.15371601,-0.1298329,0.2877731,0.6480841,0.34766364,-0.13734417,-0.15590183,-0.03618396,-0.362169,-0.05085198,0.13080284,-0.31388023,0.4625319,-0.0076829004,0.0085583795,0.36960414,-0.07713564,0.001446013,0.10055447,0.22289379,0.17027661,-0.35131058,-0.38360167,0.39708784,-0.3973774,0.23532237,-0.0346367,0.48541063,-0.044869576,-0.5202659,0.30730763,-0.5803274,0.19047582,0.05496897,0.384938,0.6087157,0.40285823,0.42399308,0.7458514,-0.29531723,0.1271393,-0.13708015,-0.12405174,-0.07860953,0.011447327,0.111721836,-0.532354,-0.06640391,-0.20102921,-0.27262586,-0.023185713,0.32601577,-0.57568437,-0.11858863,0.26586142,0.85427135,-0.16901648,-0.06773401,0.8302547,1.1448901,1.2502767,-0.011611492,1.012438,0.19585778,-0.26668182,-0.044872105,-0.3355225,-0.5509206,0.23942494,0.2503148,-0.33562157,0.22621843,0.20100005,0.025168985,0.5641356,-0.39371076,0.12351852,-0.22795847,0.05482644,0.23240876,0.0077504343,-0.46149492,-0.2602814,0.057804324,0.07850672,0.057009798,0.21907274,-0.30604506,0.115467854,0.04541381,1.7772037,-0.17969295,0.03646088,0.21531089,0.15598263,0.024309134,-0.2462778,-0.15575147,0.39160588,0.14370176,0.033010066,-0.43638155,0.05749952,-0.33454427,-0.31199536,-0.14141883,-0.20149328,-0.046480715,0.04249016,-0.3031557,-0.24404344,-0.22405782,-0.48722556,0.5205149,-2.5972083,0.01675084,-0.16451046,0.37433085,-0.39144257,-0.4758787,0.046782825,-0.3292944,0.22996128,0.24538934,0.4395143,-0.49829102,0.31550732,0.4234583,-0.8606809,-0.15215047,-0.503213,-0.15934911,0.05764442,0.1995398,-0.10407216,-0.048240032,0.048102967,0.11117671,0.34852242,0.07591987,0.11235924,0.5854678,0.38190514,-0.056232695,0.5275408,0.09558851,0.44991803,-0.21088015,-0.2968838,0.4855394,-0.37261456,0.349242,-0.05652654,0.041499022,0.48145366,-0.404521,-0.69419277,-0.5787558,-0.16160242,1.1550319,-0.19508424,-0.575777,0.12322911,-0.4028586,-0.34156278,-0.058074296,0.40591654,-0.026522292,-0.08247666,-0.91850656,-0.088386424,-0.11304806,0.2672073,0.024272455,-0.03256433,-0.57563084,0.82389927,-0.14046161,0.58099425,0.4821685,0.3074054,-0.1790211,-0.181723,0.06700646,0.8207676,0.45375314,0.020944582,-0.2749537,-0.07886578,-0.3913595,-0.15592349,0.14972866,0.419906,0.5013062,-0.16400051,0.041191068,0.20830038,-0.15449773,-0.010921882,-0.14880398,-0.3022662,-0.18355381,-0.045238633,0.5275982,0.68834877,-0.022956202,0.49617547,-0.001159106,0.3065248,0.0019838607,-0.43058687,0.21225548,0.94871587,-0.19744848,-0.43200538,0.55452365,0.54786557,-0.31722015,0.48808333,-0.45495012,-0.14130726,0.30996472,-0.10371423,-0.63090485,0.032750938,-0.38137534,0.17158297,-0.59285146,0.34627756,-0.36472774,-0.38198885,-0.55313694,-0.12140234,-1.1327454,0.35341576,-0.3288034,-0.1607995,-0.033800192,-0.08304857,-0.15428136,-0.6081019,-0.75457895,0.055050384,0.13855052,0.59590495,-0.19504848,0.063429154,-0.058964185,-0.4998307,-0.283309,0.14637382,-0.0025215617,0.42053747,-0.10871059,-0.39447597,-0.09238189,0.024769792,-0.21238327,-0.11170574,-0.75694275,-0.3484649,-0.17605188,-0.5248889,-0.19955744,0.51409686,-0.39501768,0.058004033,-0.31907782,0.022861669,0.092356004,0.1370897,0.06598562,0.29100385,0.2111678,-0.09401516,-0.03063098,-0.15787573,0.4055288,0.17461887,0.20010865,0.37025326,-0.08841901,0.24479768,0.344003,0.7817263,-0.18344262,0.80995667,0.45946127,-0.27338353,0.23893392,-0.24539039,-0.28903183,-0.6308467,-0.13919008,0.11044786,-0.39689246,-0.3876783,-0.06723706,-0.3253002,-0.82611984,0.58947754,-0.03866508,0.24045062,0.051114175,0.20116128,0.602615,-0.26397696,-0.08505731,0.031745218,-0.11852231,-0.46103683,-0.28230458,-0.5232606,-0.37932736,0.14983328,1.1229382,-0.3069022,0.13363637,0.35156327,-0.41752976,0.0081282435,0.14548601,-0.1373771,0.01494731,0.65598327,0.07782427,-0.45892826,0.21230245,0.17618808,0.0969921,-0.4844854,0.45076194,0.6741366,-0.37120277,0.70657814,0.2196766,0.14247933,-0.15259124,-0.658649,-0.18716863,0.06747981,-0.3555853,0.34998187,0.3727126,-0.50793463,0.15202749,0.22316715,-0.2174901,-0.8720131,0.47333136,-0.078208394,-0.2738809,-0.16818237,0.48196444,0.036739368,0.070294484,-0.055228945,0.24177107,-0.32329515,0.24340104,0.25906795,-0.18156125,-0.06817927,-0.3462627,-0.18086906,-0.864231,0.30627707,-0.30059186,-0.5152983,0.3818771,0.12264921,-0.15158984,0.25368887,0.44407114,0.38725454,-0.17000905,0.10016068,-0.2990966,-0.20245668,0.43916592,0.5019081,0.544967,-0.54627657,0.46916822,-0.08808445,-0.06732028,-0.1471512,-0.08522917,0.37838045,-0.12027305,0.20470843,-0.0130366,-0.15047039,0.035839222,0.3946421,0.13036661,0.35049847,-0.064458266,-0.11571678,0.10020246,-0.007847599,0.16151358,-0.3596812,-0.7000422,0.28998914,-0.16700909,0.0783213,0.34999678,0.04186042,0.19961308,-0.07729211,-0.43059593,-0.062048238,0.07966728,-0.16607061,-0.9657144,0.25778666,0.010833348,0.87151057,0.6046356,0.03600469,0.03719443,0.551627,-0.11510229,0.014481604,0.37718242,-0.065328054,-0.51451147,0.34158984,-0.63575965,0.44042438,-0.01504973,0.008830019,0.034897212,0.006944354,0.52800477,0.6313338,-0.32006767,-0.08065096,-0.22157438,-0.28974676,-0.007996516,-0.31175217,0.3468027,-0.60939616,-0.51014435,0.5732006,0.60360146,0.49895635,-0.26709694,0.06521984,0.076954536,-0.39767307,0.41260865,0.099884555,0.07780344,0.25138494,-0.600712,0.016452849,0.36479682,-0.32276806,-0.13332355,-0.01520685,-0.03863396,0.0665531,-0.16283394,0.009099648,0.030117946,-0.8369675,-0.007019094,-0.28712773,-0.31047532,0.06784348,0.07630567,0.08174503,0.05214841,0.027527815,-0.19938925,0.5720061,0.04648694,0.9622137,0.017625403,0.05706817,-0.16502981,0.35443968,-0.04670987,0.03671264,0.12569429,-0.13543303,0.19872892,-0.7091719,0.58570755,0.062085163,-0.37105784,-0.09636482,-0.1423601,-0.11823427,0.5889596,-0.20600541,-0.2121625,-0.20780401,-0.2127924,-0.13001418,-0.24349035,-0.038541835,0.12302961,0.10712288,-0.20582353,-0.20419025,-0.08336093,-0.215468,0.3821451,-0.03533861,0.44849578,0.34104252,-0.04156961,-0.6090603,-0.047043223,0.11505188,0.42072052,-0.15815076,-0.19411412,-0.21261056,-0.40165517,-0.40728608,0.5451525,-0.07218842,0.37102562,0.059361525,-0.08327688,0.90056515,0.16014782,1.3736877,-0.08240997,-0.29640964,0.06149528,0.5653969,-0.021920191,-0.10685668,-0.3702968,0.80658585,0.5205631,0.022298558,-0.0204945,-0.40503576,-0.18941103,0.17041814,-0.14779806,0.068631716,0.03471023,-0.40486726,-0.30766663,0.04891894,0.30824882,0.06650164,-0.19982664,0.09352247,0.37011766,0.016106347,0.25384417,-0.29281634,-0.37461478,0.27627143,0.2600749,-0.011816606,0.14834473,-0.4871431,0.41032162,-0.6479539,0.21863239,-0.16437767,0.16615292,-0.23933281,-0.24155259,0.21792495,-0.007650622,0.42125535,-0.55538535,-0.19261768,-0.26406017,0.39567438,0.27502897,0.03474876,0.6462735,-0.25755078,0.024274658,-0.0023527571,0.48922652,0.88530403,-0.15615681,0.029814979,0.19604433,-0.38682795,-0.52796793,0.23627909,-0.29773265,0.02762616,0.027257511,-0.2291347,-0.5869527,0.19715115,0.12763603,-0.199645,-0.17681481,-0.6692441,-0.18040118,0.33137995,-0.3464665,-0.044845056,-0.22540368,0.0066695595,0.5324019,-0.0034012794,-0.5990181,-0.060436692,0.023707883,-0.14250137,-0.38134116,0.056983147,-0.4758349,0.27440092,-0.0802238,-0.31590346,-0.34431186,0.12424577,-0.39439914,-0.1263131,0.04889064,-0.1912948,0.047335207,-0.32238072,0.03351766,0.8339033,-0.12395441,0.16707675,-0.3310769,-0.43693605,-0.8079649,-0.20476332,0.1077688,-0.11021091,-0.017548975,-0.6634332,0.0149855865,-0.45625868,-0.11651259,0.005298241,-0.28347835,0.3664779,0.24672952,0.34064072,-0.49486452,-0.8182419,0.23762633,0.11630335,-0.1414133,-0.43386826,0.3715732,0.12013261,0.7383543,0.0171572,0.036053803,0.1354463,-0.5748348,0.16425346,-0.11140002,-0.09764765,-0.53502417,-0.024128338,38 +340,0.5811227,-0.08411075,-0.5846306,-0.08817162,-0.48351565,0.2234381,-0.47091478,0.23104432,0.26361206,-0.5776421,0.18241633,-0.19601238,-0.025480857,0.23299721,-0.15667245,-0.39610004,-0.16065969,0.28628948,-0.45872444,0.5637519,-0.34104863,0.3766318,0.3682559,0.1976588,-0.13119704,0.09866396,0.11089875,-0.20091464,-0.2672312,-0.38431007,0.06622707,-0.0016729023,-0.7832717,0.37454754,-0.15088366,-0.47978354,0.18772367,-0.45849642,-0.17855693,-0.60192066,0.12387973,-0.7134856,0.7102269,0.058462795,-0.292761,0.13681646,0.035770535,0.31147408,0.0097378325,0.13237958,0.42456707,-0.4316372,-0.55983204,-0.2247615,-0.2465167,-0.52945715,-0.7815998,-0.1423479,-0.52658373,0.15959065,-0.2670045,0.38454315,-0.21348725,0.024314959,-0.074265204,0.34570557,-0.39675036,0.15094396,-0.03590225,-0.19973119,0.20834541,-0.54380643,-0.13894032,-0.14572784,0.14202721,-0.032129187,-0.20738773,0.11911235,0.15333362,0.61483425,-0.015053781,-0.2765027,-0.44834048,0.16414738,-0.19832124,0.67579347,-0.32582965,-0.19996105,-0.16870432,-0.123451635,0.46109053,-0.03686903,-0.11082784,-0.36757833,0.068296656,-0.2277235,-0.46795985,0.41254774,0.45797554,-0.57547,0.049381487,0.39698032,0.30842718,0.036241233,-0.16737427,0.027678678,-0.076978005,-0.3968512,-0.08999936,0.21447192,-0.1433564,0.3818131,0.015611148,0.34999147,0.39210632,-0.16356413,-0.24456279,0.15939876,0.020502005,0.1456827,-0.09521789,-0.318371,0.46625522,-0.6845669,-0.08620871,-0.3912876,0.82519203,-0.14133999,-0.89939827,0.4257064,-0.5340403,-0.097125545,-0.00077113084,0.5949542,0.66096836,0.8060413,0.0063787997,0.7318443,-0.36947876,0.01653853,-0.26153827,-0.16599713,0.30991346,-0.11623105,0.39275867,-0.5153019,-0.19866082,-0.024916185,-0.22812937,-0.12214763,0.8151662,-0.4386064,-0.09800279,0.261484,0.6374735,-0.2914517,-0.02850707,0.6681914,1.2497804,0.88791066,0.16310592,1.1648835,0.31511274,-0.16003653,-0.16337924,-0.16749355,-0.6919652,0.2216867,0.36341313,0.24347307,0.18539901,0.3179805,0.032686375,0.3907318,-0.1317211,-0.23718973,0.035791814,0.2071537,-0.15260006,-0.11755566,-0.34746012,-0.33424452,0.15703149,0.035804085,0.06902424,0.35281923,-0.23656127,0.28169006,0.31650236,1.5151561,-0.086988285,0.083752215,0.21794327,0.04370431,0.13021,0.06400629,-0.14692894,0.058476992,0.22914015,0.09886117,-0.35268298,0.10063387,-0.0756901,-0.50864166,-0.27249482,-0.08720426,-0.085089885,-0.25139382,-0.29699844,-0.25571457,0.08265841,-0.5899274,0.38524628,-2.4716713,-0.118087426,0.03753469,0.3801618,-0.06897292,-0.44791487,-0.12193557,-0.46909338,0.60413045,0.33994988,0.42545968,-0.44563502,0.5546735,0.37787572,-0.54825425,-0.2115535,-0.7774462,-0.12553188,-0.21568179,0.33731428,0.073064156,-0.4192166,-0.12640703,-0.12515043,0.494138,-0.17231815,0.1441534,0.3500858,0.47578675,-0.09804142,0.49484703,-0.051975224,0.44189262,-0.32370955,-0.26534012,0.35307533,-0.35361257,0.11122321,-0.18703006,0.20963791,0.36337477,-0.53471357,-0.801864,-0.5165913,-0.06325088,1.1640831,-0.19151543,-0.49870178,-0.01941264,-0.07430101,-0.2830514,0.08421921,0.42660615,-0.07280823,-0.07240329,-0.69637537,-0.101544276,-0.08650703,0.38525248,0.048004832,0.21279773,-0.52764714,0.6266222,-0.09103311,0.49905533,0.608084,0.2708703,-0.10052284,-0.2376983,0.19456284,1.0174363,0.24324778,0.14579637,-0.42757422,-0.046213515,-0.047151804,0.05487935,-0.09584594,0.42549962,0.65944165,-0.077801205,0.089203015,0.23309733,-0.26526585,0.06370037,-0.19753326,-0.5912929,-0.20679061,0.12974024,0.46173373,0.61842585,0.13565512,0.45211172,-0.008961767,0.26257452,-0.16499875,-0.36410132,0.31211188,0.7345832,-0.26517183,-0.18485777,0.6583316,0.42309684,-0.1075695,0.5398679,-0.51493436,-0.5532066,0.10723361,-0.09007762,-0.41271064,0.32878748,-0.38432756,0.05836469,-0.87429523,0.3324173,-0.30768946,-0.5887702,-0.57800865,-0.07268483,-2.816734,0.25889477,-0.12149508,0.06786771,0.21907432,-0.08775164,0.28916174,-0.47915488,-0.5127123,0.08470913,0.28200006,0.537095,-0.07805194,-0.0029995102,-0.23901343,-0.3549729,-0.2377309,0.44743136,0.29655537,0.12233966,-0.024319844,-0.42298296,0.07655619,-0.3549006,-0.011956667,-0.0450096,-0.62445897,-0.33954945,-0.08628031,-0.5593935,-0.5099233,0.7371046,-0.5395032,-0.027633611,-0.28814158,0.0641801,0.06842728,0.3029907,-0.081536576,0.089180455,-0.07010071,-0.12912746,-0.017182916,-0.25024372,0.22629526,0.10343188,0.23828371,0.6125668,0.0011947921,0.13309231,0.66602296,0.5364849,0.035453174,1.0288004,0.4263246,-0.17103328,0.19106688,-0.20391048,-0.12174188,-0.66550446,-0.105827585,-0.22550747,-0.45994133,-0.273735,0.21575542,-0.42851618,-0.721628,0.80359995,-0.01477428,-0.18833365,0.06255372,0.52326936,0.4091461,-0.13450499,-0.12411525,-0.19737312,-0.19906773,-0.33309722,-0.40639827,-0.732662,-0.42425272,-0.03851882,1.3574126,-0.09055682,0.08949132,0.2975892,0.09477185,0.021278087,0.1719186,0.08814509,0.13118707,0.45771456,0.1212813,-0.8259935,0.24707642,-0.37453824,0.0912105,-0.62869614,0.25200728,0.5804626,-0.85251236,0.22100653,0.5120749,0.28223148,0.07634057,-0.6398743,-0.18869507,0.2277231,-0.20784283,0.37942335,0.10255982,-0.75967664,0.5715334,0.19820921,-0.33054426,-0.8558693,0.29632086,0.051632743,-0.416892,-0.02613539,0.40793875,0.20698656,0.0151882935,-0.35621598,0.22168557,-0.4575964,0.39985976,-0.019326286,-0.19442545,0.20908165,-0.26155892,-0.13611706,-0.82061976,-0.093955286,-0.34651414,-0.45674995,0.29794982,0.035883926,0.120290935,0.30907127,0.30278116,0.41990978,-0.47642162,-0.058917176,-0.32205683,-0.37100902,0.4634928,0.47371227,0.43750742,-0.30777022,0.542008,-0.05087201,-0.09583996,-0.3738862,-0.07934179,0.39389873,0.010873233,0.19841845,0.015600922,-0.23466134,0.23936327,0.87414706,0.20311442,0.39242363,0.059051733,-0.17611396,0.36593717,0.03332947,0.1033992,-0.107572965,-0.51986015,-0.036609925,-0.16193059,0.12368883,0.5073019,0.07291559,0.45647022,-0.3616628,-0.038440865,0.07331922,0.034267433,0.20841901,-0.84027106,0.2919561,0.02846708,0.45683196,0.58929473,-0.042317364,0.16859093,0.62936634,-0.30627272,-0.051841445,0.27604952,-0.039487924,-0.11950655,0.5579761,-0.66833067,0.2448838,-0.089286104,0.08946766,0.20628868,-0.17632754,0.42911905,0.8702988,-0.1350505,0.14395788,-0.057546325,-0.17377517,-0.16526319,-0.2031988,0.12411375,-0.44738445,-0.21941973,1.0009338,0.25082916,0.51309305,-0.06290748,0.0062818727,0.1780578,-0.110689774,0.49816546,0.09787024,-0.07108712,-0.062249362,-0.44842842,0.030999307,0.7390581,0.1572664,-0.025100576,0.09632693,-0.20520756,0.2986016,-0.051047828,-0.14769995,-0.09349823,-0.6156501,-0.034495987,-0.5943138,-0.34953716,0.5581897,0.2233021,0.15666449,0.022821337,0.20685951,-0.13330282,0.31917286,0.3830453,0.63935727,0.22858457,-0.27527592,-0.0059384448,-0.07178978,0.11230801,-0.25196293,-0.23940587,-0.1847264,0.26253107,-0.9122119,0.29472575,-0.41548815,-0.31991595,0.21958672,-0.05447477,0.07623429,0.4726049,-0.013017123,-0.015864128,0.25340983,0.15181829,-0.2337574,-0.361696,-0.3005568,0.055883314,-0.17543332,-0.20395045,-0.17873856,-0.23490612,-0.19475737,0.2871108,0.14197436,0.21290484,0.2576645,0.258626,-0.4437658,0.05380669,0.102873825,0.6044097,-0.19072923,-0.14651854,-0.48604462,-0.3106138,-0.2439141,0.21238957,-0.027237777,0.12609053,0.031059269,-0.47979718,1.0569326,-0.06915361,1.008042,0.0452871,-0.3138698,0.07766708,0.45406774,-0.19945757,0.04591121,-0.39783546,1.0860401,0.7041481,0.06569444,-0.17623556,-0.49460474,-0.18090336,0.17356446,-0.28580338,-0.100998364,-0.012170716,-0.73876953,-0.1659724,0.16808738,0.20964508,-0.0032457155,-0.21064912,0.27029374,0.21005403,0.13802265,0.13167405,-0.4904882,0.0025895494,0.36028177,0.3304887,-0.06820123,0.27284056,-0.4104487,0.27711424,-0.66828763,0.18838933,-0.49200985,-0.08283799,0.024037179,-0.0987697,0.21375425,0.105039455,0.16186787,-0.16666238,-0.40582314,-0.025231192,0.40789747,0.18761823,0.32668668,0.757081,-0.21791315,-0.07703585,-0.15376301,0.51811093,1.1183078,-0.3677828,0.027029216,0.41728163,-0.16908273,-0.5046237,0.1534041,-0.3675585,-0.13134931,0.09780234,-0.3835557,-0.36999655,0.21751358,0.14987634,-0.18515117,0.0048238295,-0.35840103,0.05781189,0.13621213,-0.3278099,-0.21154247,0.021177325,0.2826796,0.8687011,-0.2659403,-0.31151262,-0.10701893,0.39178294,-0.3017464,-0.46180412,0.07922787,-0.47089845,0.15273319,0.39691707,-0.3453082,0.09051623,0.15534796,-0.57195586,-0.1564463,0.45761052,-0.29539818,-0.14448728,-0.48767415,0.1136113,0.8910765,0.11161227,0.21803036,-0.37472555,-0.5901775,-0.86089367,-0.21935405,0.13511232,0.17824806,0.0030181408,-0.46843788,-0.053202663,-0.22345173,-0.3588811,-0.07690204,-0.7034527,0.364811,0.11382886,0.56527257,-0.33364275,-0.9662183,0.0017671521,0.103141464,-0.31147,-0.3869706,0.3109146,-0.12444075,0.9793528,0.12057314,-0.05123239,0.21630774,-0.7147767,0.24369718,-0.4385752,-0.15410955,-0.6999898,-0.08496384,41 +341,0.40876773,-0.15474746,-0.37351674,-0.04067662,-0.21825457,0.019393597,-0.20223927,0.41422248,0.3567364,-0.35744986,-0.28213048,-0.09792084,-0.03952216,0.22951135,-0.13665847,-0.64486057,-0.0075790966,0.21896696,-0.36801916,0.5666695,-0.4645361,0.1361765,0.012995177,0.5200774,0.12891817,0.2264336,0.034795668,-0.13777846,-0.16207351,-0.27950737,-0.14983709,0.47622496,-0.62028223,0.14376345,-0.27003947,-0.29357988,0.036315616,-0.50643605,-0.39458352,-0.78336966,0.19787383,-0.91922253,0.39358664,0.05575963,-0.25073835,0.50989586,-0.067325674,0.13433035,-0.24855934,-0.18475242,0.08774092,-0.42194223,-0.20135441,-0.27579713,-0.10813464,-0.054429762,-0.66727006,0.10398177,-0.31846252,-0.015279151,-0.36655086,0.11432094,-0.41292688,-0.041932743,-0.1197692,0.41797805,-0.44158432,0.18070766,0.12993753,-0.09306786,-0.0136780655,-0.51056325,-0.2237463,-0.08207194,0.27472076,-0.097187504,-0.2779141,0.27351972,0.20889378,0.48633242,-0.05815186,-0.28880507,-0.3097631,-0.017183075,0.17633082,0.6001538,-0.19259359,-0.37605557,-0.048612546,0.04959459,0.15164737,0.07610061,0.03791928,-0.20979641,-0.2022434,0.0024896434,-0.14269538,0.35530645,0.5124232,-0.34343863,-0.22957532,0.29281193,0.5126802,0.19358835,-0.15917967,-0.04349586,-0.011471155,-0.5410176,-0.089652725,-0.004313805,-0.2984974,0.5224884,-0.19552128,0.22534278,0.54073316,-0.22513464,-0.085640095,0.112922035,0.08468865,-0.028610706,-0.22846206,-0.19480477,0.40154666,-0.41754657,0.25177732,-0.16499789,0.72563046,0.18060683,-0.7004389,0.38775396,-0.42415974,0.14937718,-0.10425961,0.7196117,0.7360405,0.50009567,0.6102487,0.6972936,-0.5139583,-0.010543262,-0.044124145,-0.42029113,-0.003910303,-0.25275162,0.007583834,-0.42163882,0.058709867,-0.025173187,-0.0882364,0.2159364,0.3418264,-0.46148446,-0.014269204,0.2425029,0.68984556,-0.20052384,-0.18663181,0.88944584,1.024355,1.0159643,0.09702889,1.0699114,0.30687883,-0.12998246,0.15308782,-0.06752894,-0.8009639,0.23133084,0.27772918,-0.14813817,0.18681076,0.24274996,-0.00884495,0.38002834,-0.5291361,-0.09948603,-0.18939571,0.079358004,0.15186858,-0.009802469,-0.4838591,-0.32197857,-0.0947713,0.017161252,0.11404206,0.39628962,-0.14093584,0.3736373,0.13003068,1.4457047,0.051483486,-0.065155685,0.10319667,0.50001645,0.12775585,-0.054089915,-0.032364327,0.28328997,0.31001925,0.019076195,-0.50773543,0.026511282,-0.12919433,-0.34334892,-0.14318612,-0.28068855,0.0065162564,0.066570595,-0.23101377,-0.23655592,-0.18331018,-0.4242042,0.5440701,-2.741384,-0.105914645,0.07380389,0.3099363,-0.16911738,-0.44808203,-0.23137988,-0.62030643,0.30782655,0.22710183,0.5025098,-0.7229719,0.26297322,0.44383088,-0.73999256,-0.19909541,-0.7031404,-0.05050497,-0.0145570785,0.3973308,0.15249261,-0.0065407073,-0.021367213,-0.0105282795,0.57379776,0.04511026,0.018030658,0.33064204,0.45584494,-0.032120787,0.44812435,0.0060191792,0.52745265,-0.21146242,-0.23233439,0.39299697,-0.36460677,0.43855405,-0.32663092,0.06923589,0.44785994,-0.34919074,-0.8282003,-0.5781058,-0.18182243,1.4305432,-0.24300684,-0.47123393,0.20563279,-0.30983162,-0.25913998,-0.05302846,0.38400692,-0.20139933,-0.22385934,-0.7256535,-0.04578959,-0.090488926,0.1752055,0.013783854,-0.024806052,-0.36846596,0.69426674,-0.060977716,0.3876516,0.26236978,0.114157595,-0.14622037,-0.3488267,0.026034802,0.7956315,0.271904,0.20638366,-0.40535858,-0.3321059,-0.13611574,-0.12631926,-0.059022266,0.7305665,0.47896576,-0.116658784,0.051250767,0.38105884,0.11140076,-0.05507288,-0.23401383,-0.22201948,-0.1880689,0.07549579,0.62883556,0.9728359,-0.18048628,0.30078393,0.012335024,0.21900313,0.08930527,-0.4366396,0.43859297,1.1729578,-0.09725591,-0.15326282,0.58161366,0.40070343,-0.3157124,0.4762403,-0.41173336,-0.40320778,0.37671375,-0.16013262,-0.41495863,0.14611901,-0.29022747,0.1301389,-0.5666877,0.31580582,-0.20049635,-0.43743998,-0.5491223,0.08480867,-3.0454822,0.1609155,-0.33209187,-0.08522243,-0.20383964,-0.18341394,0.12728342,-0.56219554,-0.49943298,0.1991472,0.19005454,0.66706115,-0.13367128,0.12065782,-0.28049684,-0.35095838,-0.33536536,0.028500037,0.18199942,0.41285592,0.037380956,-0.38081354,-0.09318153,-0.18624273,-0.13655509,-0.011938883,-0.5781447,-0.4580495,-0.015544499,-0.52560765,-0.3152074,0.5558379,-0.4688253,-0.02114783,-0.2824137,-0.0262063,-0.18881719,0.25912428,0.04210003,0.13552484,-0.06817257,-0.019558737,0.06133174,-0.23150457,0.48945075,0.06268067,0.26464114,0.38983235,-0.057255507,0.120234005,0.4386455,0.6917778,-0.19267988,1.0284272,0.49772614,-0.17269762,0.16378157,-0.16996238,-0.42547506,-0.6429463,-0.20308504,-0.037977014,-0.530944,-0.32731667,0.0793478,-0.43337584,-0.90789765,0.6635279,0.025335586,0.13400985,0.036313612,0.23012365,0.68922937,-0.2126189,0.008773642,-0.053471662,-0.044612404,-0.55338985,-0.31069437,-0.5661872,-0.4029479,0.010695279,0.8996356,-0.26277137,0.10188425,0.14506845,-0.21716818,-0.091744065,0.21093634,0.026974099,0.040441036,0.5937172,0.17804043,-0.728433,0.50056523,-0.06820915,-0.11731429,-0.5638043,0.24940637,0.5566205,-0.72973925,0.6634223,0.39511782,-0.057705276,0.068134256,-0.45862398,-0.42363325,-0.27015552,-0.21392246,0.4212167,0.34954795,-0.8670112,0.48456433,0.39432073,-0.31457973,-0.7712175,0.30679032,-0.17299278,-0.25847098,-0.02834438,0.3371091,0.017668469,0.0985611,-0.040851586,0.075571254,-0.35686594,0.20551236,0.09089871,-0.1041006,0.016678343,-0.25347432,-0.11560978,-0.8692961,0.080870725,-0.41412428,-0.3653181,0.12713052,0.13957481,-0.054101102,0.1318681,0.17036441,0.39121804,-0.29426852,0.09029142,-0.03183822,-0.20517874,0.16696301,0.4664471,0.6259223,-0.34806377,0.6080703,0.083914496,-0.06604619,-0.15941657,-0.053780045,0.31158134,-0.061201237,0.3832521,0.049258787,-0.2488112,0.14080502,0.9016991,0.15874724,0.500881,-0.05301706,-0.07194127,0.43037114,0.028651342,0.3947253,-0.09730276,-0.6399617,0.13468507,-0.34832004,0.087105446,0.48635468,0.2580579,0.2527955,-0.116311625,-0.28081065,-0.012800894,0.10538465,0.1411211,-1.1367159,0.25186604,0.121058926,0.8269784,0.43844858,0.014907269,0.1546898,0.7098242,-0.18291001,0.1687232,0.37125757,-0.14184047,-0.481781,0.48289272,-0.7043003,0.4681881,-0.0426034,0.048428647,0.049739473,-0.0033991507,0.35342786,0.6258215,-0.31004634,0.010967029,-0.0810201,-0.2531874,0.040397882,-0.43715075,0.05891183,-0.5493403,-0.2295924,0.6834818,0.7000022,0.48434862,-0.21203841,0.13647583,0.07547068,-0.08021032,0.035101425,0.07203873,0.0521077,-0.011780714,-0.5441863,0.08506613,0.5919581,0.005727989,0.08224196,-0.1352179,-0.12114631,0.3076923,-0.21577121,-0.25932807,-0.17209773,-0.7306722,0.03915835,-0.28269953,-0.5953177,0.4283281,0.081928566,0.20319168,0.36731687,0.010382156,-0.25440145,0.30068678,0.17004956,0.7186462,-0.015355719,-0.19556196,-0.38597637,0.17135085,0.20281048,-0.13704874,-0.14266686,-0.27991152,0.071272895,-0.41976812,0.47746322,-0.19737534,-0.2723044,-0.078307636,-0.07968306,0.09540241,0.66138935,-0.076984115,-0.22771184,-0.09906835,-0.12089062,-0.3635938,-0.21328175,-0.15901113,0.21611965,0.2765383,-0.27828446,-0.17908181,-0.3245438,-0.24752109,0.312044,-0.056043033,0.2889232,0.19213687,-0.03464162,-0.24596593,-0.12981613,0.19378379,0.5393241,-0.08487612,-0.26955387,-0.26968023,-0.30236676,-0.3676432,0.38138607,0.013449048,0.40177855,0.042848136,-0.15842684,0.62068886,-0.014476129,0.9178581,0.08718199,-0.2811246,0.042596698,0.44460455,-0.043194328,-0.072326526,-0.27943665,0.87170607,0.35941002,-0.02158245,-0.12574282,-0.5391051,0.11055011,0.1685121,-0.15097746,-0.023170033,0.073299184,-0.55297995,-0.05906262,0.21496248,0.29503748,0.2771881,-0.14838001,0.027935952,0.1877517,0.17453411,0.34042332,-0.3327667,-0.2380379,0.3244462,0.20710528,0.013043498,0.049335323,-0.2755695,0.3983407,-0.37625504,0.063446954,-0.37126866,0.10302435,-0.32744431,-0.17117624,0.30686402,0.10694794,0.39623925,-0.37789312,-0.33650732,-0.34145644,0.30527645,0.15345906,0.07967953,0.36516446,-0.2610789,0.02556062,0.0317025,0.56672174,0.86234504,-0.20177746,0.099232875,0.30065775,-0.2732896,-0.42922974,0.39923865,-0.25174,0.071245566,-0.04008097,-0.17092946,-0.65113926,0.13679744,0.2658731,0.2093045,0.103133105,-0.661933,-0.22184451,0.2016327,-0.34696832,-0.18060456,-0.21373424,-0.063149065,0.74255097,-0.2286768,-0.43934488,0.06669426,0.1144338,-0.113892786,-0.4952586,-0.06744876,-0.37949666,0.22516415,0.10583047,-0.31690672,-0.12621437,0.23888579,-0.48492977,0.056162704,0.24049532,-0.3680144,0.12025933,-0.2951574,0.21936533,0.91147375,-0.32218996,0.5172648,-0.36742005,-0.501994,-0.7859825,-0.2734771,0.5020823,0.17087947,0.060431268,-0.50603807,0.012490885,-0.15702125,-0.43767014,-0.10315352,-0.49407867,0.43937418,0.13447021,0.32837147,-0.067847975,-0.7504503,0.1324531,0.040065356,-0.16962394,-0.473733,0.3302355,-0.033383507,0.86435086,0.037216026,0.03215869,0.10620529,-0.35852623,0.0092374,-0.2154695,-0.14505328,-0.5707903,-0.033443492,42 +342,0.45722008,0.057105433,-0.7758052,-0.106416546,-0.3589942,0.022297919,-0.49524587,0.281331,0.45172438,-0.49474788,0.15228714,-0.0030619672,-0.12306913,0.26151985,-0.12247325,-0.5970048,0.010370761,0.26877505,-0.5169884,0.7994527,-0.2905565,0.2807779,0.24252568,0.25443512,-0.004207083,0.11644427,0.24883758,-0.16648427,-0.066621885,-0.23179783,0.08995993,0.09531438,-0.6157362,0.4603779,-0.14565238,-0.34387115,0.0058413083,-0.3165062,-0.15900822,-0.78289944,0.2116264,-0.6505551,0.6588384,-0.053299926,-0.35021162,0.049475305,0.25306773,0.21023552,-0.040417314,-0.13375314,0.3860886,-0.37646058,-0.76513344,-0.3194128,-0.28561217,-0.7415795,-0.5231939,-0.009480889,-0.5161208,0.26304552,-0.43359417,0.39201736,-0.2424909,-0.06918531,-0.37194762,0.54773706,-0.30293855,-0.016220149,0.05262935,-0.20539641,0.32472062,-0.7419283,-0.20643504,-0.113661766,0.2587838,0.16628562,-0.26349625,0.24267755,0.34973145,0.6765714,0.23556364,-0.38525957,-0.38723823,-0.0072355526,0.10515768,0.3448172,-0.30210352,-0.19670916,-0.21387164,-0.13759138,0.45860833,0.17582235,0.0024219474,-0.44102913,0.15391333,-0.23266019,-0.47242466,0.52791196,0.57732356,-0.3890701,0.25324586,0.42692524,0.39416417,0.20634003,-0.1816165,0.069765635,-0.4378922,-0.5788827,-0.09115992,0.1296297,-0.10390326,0.21113084,-0.04408566,0.096527226,0.52463573,0.0029193333,-0.39557052,0.48872253,0.13551262,0.24729262,-0.29721123,-0.13132925,0.37807965,-0.60775024,-0.029272005,-0.49706835,0.5423628,-0.29257885,-0.8807883,0.36639276,-0.58563775,0.06538495,-0.069969624,0.71947,0.9895678,0.7574901,0.009161545,1.0638767,-0.4315538,0.12556244,-0.20176111,-0.23800609,0.3073892,-0.05978718,0.3761353,-0.5056265,0.058171514,-0.13875909,-0.11923113,-0.10124801,0.63679165,-0.37658367,-0.2902741,0.11578815,0.64079285,-0.17960158,-0.15237167,0.7878176,1.1118096,1.0477475,0.29255214,1.2656072,0.13280718,-0.16766767,-0.24588092,-0.13930182,-0.788258,0.2912922,0.26426575,0.28536147,0.047254287,0.2523046,0.018357944,0.4541056,-0.12205632,-0.36621687,-0.03796625,0.45929834,-0.22160092,-0.28718922,-0.28181213,-0.28708807,0.26838064,0.012666523,0.19209419,0.32217574,-0.20120956,0.3344213,0.24176642,0.96535647,-0.24161063,0.015490515,0.05434808,0.043119192,0.2680741,-0.124657206,-0.10530726,0.23927143,0.16843002,-0.08814691,-0.6107747,0.0683943,-0.22841081,-0.5126637,-0.1842176,-0.24828969,-0.20939367,-0.08046273,-0.010820811,-0.20923178,-0.019168045,-0.5363042,0.23601225,-2.36911,-0.08423158,-0.105782345,0.24617474,-0.07813729,-0.32876593,-0.11851575,-0.4723286,0.61496,0.2603971,0.5878069,-0.4858825,0.5516087,0.53937614,-0.82740754,-0.20725544,-0.72946423,-0.1557844,-0.09345094,0.4823249,0.0634433,-0.52966386,-0.14852966,-0.029555062,0.5993204,-0.040316027,0.28607878,0.6166462,0.4711431,-0.198429,0.3717164,-0.061344083,0.63497025,-0.3623269,-0.27014312,0.4181631,-0.34134886,0.29795995,-0.35183695,-0.009711868,0.5122518,-0.4478657,-0.9077764,-0.59094965,-0.017316494,1.1434869,-0.27316722,-0.61103284,0.13115668,0.010984318,-0.17321105,0.3916363,0.4984786,-0.011535917,0.011068813,-0.75436753,-0.011590617,-0.13541563,0.26217717,-0.055654448,0.1079249,-0.51021093,0.7877795,-0.047941677,0.5534589,0.61428976,0.38613898,-0.37122893,-0.27050826,0.0734362,1.0381602,0.26478133,0.030973032,-0.21854137,-0.1611813,-0.22055964,-0.23036762,0.022118535,0.66771114,0.51946837,0.004319969,-0.00088466064,0.30323213,-0.41814026,0.04396022,-0.21096955,-0.67598695,-0.34673077,0.090792574,0.56820285,0.6237136,0.29643658,0.3654952,0.12298121,0.31246704,-0.16669199,-0.5940862,0.5877822,0.88492763,-0.34039405,-0.14340259,0.72528607,0.35016856,0.057282973,0.7713245,-0.51702654,-0.59966576,0.1896814,0.04482826,-0.3330253,0.07474574,-0.4018658,0.061226454,-0.853707,0.16327307,-0.5487097,-0.5773495,-0.53421724,-0.014058075,-2.4375358,0.35906085,-0.30918732,0.15637228,-0.21167292,-0.027725508,0.34262827,-0.344014,-0.7009944,0.11678727,0.29004782,0.53476447,-0.15304722,-0.008711793,-0.28388855,-0.48678344,-0.06064449,0.34186682,0.032295536,0.22223224,-0.04617399,-0.4468327,0.13355742,-0.20660421,-0.03179231,-0.12796311,-0.6378415,-0.17839131,-0.19136424,-0.5682312,-0.3578054,0.60282326,-0.7443466,0.024248125,-0.26937422,0.16089375,0.25985083,0.309038,-0.14277911,0.15796463,0.14942002,-0.13297132,-0.18892254,-0.22567005,0.16579325,0.0343936,0.23763372,0.55513257,-0.065926634,0.05585238,0.5723813,0.75727,-0.045850344,1.0168688,0.35007286,-0.05432019,0.2511075,-0.08004868,-0.20839788,-0.7095982,-0.2406216,-0.14239182,-0.49020714,-0.321863,0.13498281,-0.40643543,-0.88382626,0.6888171,0.21766813,0.040421374,0.04643861,0.4672026,0.332105,-0.1837995,-0.040419452,-0.282101,-0.35552692,-0.42961377,-0.41394916,-0.7923029,-0.47211573,-0.056399923,1.251531,-0.29923043,0.05245793,0.1923853,-0.020966675,0.06927454,0.36364213,0.08166189,0.26128894,0.50299835,0.29875025,-0.69828,0.4335578,-0.12804149,0.21906824,-0.420067,0.33045778,0.5367163,-0.6673485,0.2700669,0.55755144,0.09299814,-0.08086024,-0.9083222,-0.15443458,0.33117467,-0.2647436,0.43323824,0.22575422,-0.749794,0.75536436,0.2910224,-0.09486654,-0.9146975,0.30766916,-0.09700351,-0.17390242,-0.08255275,0.56172943,0.090043746,0.11643185,-0.50853616,0.1345636,-0.38493818,0.37332132,-0.1317282,-0.23724954,0.2539702,-0.23063834,-0.22160591,-0.8701935,-0.116707034,-0.61406213,-0.32043698,0.31704316,-0.013633383,0.009228306,0.20138367,0.24874017,0.515007,-0.50745094,0.15403797,-0.47686332,-0.2742973,0.63815814,0.60022795,0.35996976,-0.43788716,0.5283775,-0.060034446,-0.29255506,-0.43770456,-0.03309346,0.4494721,0.08071404,0.38990453,0.04390498,0.005114662,0.08008875,0.63313866,0.19553505,0.17019582,-0.12386109,-0.20295909,0.25502095,-0.14995769,0.31049684,-0.11239628,-0.49773577,-0.098827615,-0.1956791,0.059360065,0.5449318,0.115480796,0.5907194,-0.18167949,-0.11996176,-0.0048086387,0.0611822,0.20560566,-0.91081494,0.68394214,0.18688183,0.49656877,0.69692284,-0.022019032,-0.017546896,0.8267911,-0.16424918,0.019484181,0.3595992,-0.107680984,-0.13097753,0.49394724,-0.93689835,0.14794348,-0.30495438,0.116500005,0.26909178,0.030418694,0.4326971,1.0815636,-0.14109685,0.22778866,-0.08195209,-0.2878301,0.026854783,-0.12693234,0.04187239,-0.26164114,-0.5176884,0.7898334,0.19922526,0.5017759,-0.36564916,-0.069984995,0.12682919,-0.33416218,0.38421297,0.008211182,-0.014045843,-0.11107389,-0.33659866,-0.10032383,0.6043563,0.12052607,0.11848908,0.05205549,-0.11858869,0.27929282,-0.034226324,-0.08260427,-0.07435612,-0.4634436,-0.036003742,-0.41436037,-0.25634128,0.4096858,-0.092788935,0.18798567,0.12077787,0.2543437,-0.2100792,0.21387611,0.28033867,0.59960335,0.09187589,-0.13438234,0.041822433,-0.037035115,0.08675189,-0.34925523,-0.1453804,-0.17220959,0.24783505,-0.9572487,0.37305728,-0.45120713,-0.54641306,0.17663293,-0.19685994,-0.09213463,0.36933237,-0.16380708,-0.13173278,0.24758802,0.014795618,-0.059830155,-0.35796043,-0.27705568,0.06480147,-0.32507893,-0.056155358,-0.33934942,-0.26876023,-0.21729633,0.32358027,-0.017282983,-0.07935582,0.29569674,0.27761227,-0.3770661,0.27361637,0.41005197,0.5786475,-0.05105309,-0.037120722,-0.28987232,-0.10631696,-0.30260485,0.24289478,-0.012022285,0.19820571,0.15750231,-0.37046176,0.92432016,0.020387216,1.1018735,0.022629559,-0.44210118,0.04973369,0.49345812,-0.08299417,0.04227573,-0.37320682,0.92649543,0.59561235,-0.2310244,0.052424673,-0.59623474,-0.14151405,0.23966189,-0.3371717,0.0110232,-0.068530865,-0.7346929,-0.18473777,0.27069804,0.26744008,-0.12169243,-0.1621309,0.15844819,0.22630231,0.2921696,0.16392593,-0.55712366,-0.002901273,0.33656034,0.30335096,-0.15020704,0.29307482,-0.36999542,0.26550445,-0.8310849,0.22583832,-0.35591692,-0.027388189,-0.10847305,-0.10512308,0.28789595,-0.010757706,0.26219597,-0.17513976,-0.39784476,-0.007000732,0.38902664,0.30279765,0.23658721,0.8851201,-0.27068648,-0.021670574,0.0030522856,0.48484284,1.1503905,-0.26888555,-0.025080578,0.2921559,-0.33218506,-0.68266857,0.14221282,-0.51947874,-0.23614345,-0.040184326,-0.59828186,-0.3992861,0.2147647,0.080435514,0.07517498,0.08275087,-0.65380186,0.020453999,0.17295708,-0.2102921,-0.15310022,-0.013346379,-0.025212819,0.8941477,-0.3462936,-0.59654796,-0.022942407,0.3666698,-0.2790601,-0.7249447,0.18937756,-0.48264113,0.44407383,0.37808985,-0.29437426,0.006839418,0.02697019,-0.7195674,0.110081896,0.36944804,-0.24316014,-0.048208747,-0.4419082,0.23796742,0.66685426,0.07172171,0.34824124,-0.11469318,-0.69816226,-0.6983675,-0.13351479,-0.042197686,0.1445956,0.018923143,-0.58186245,-0.0875997,-0.51194465,-0.11791103,-0.012419075,-0.6166418,0.42811483,0.05296121,0.5144409,-0.28128448,-1.1042534,0.2155861,0.29193148,0.0072790342,-0.41878515,0.29169062,-0.1261072,0.94817203,0.06151712,-0.049283247,0.15238455,-0.88264555,0.34017047,-0.41966048,-0.22671293,-0.6259983,-0.09920753,43 +343,0.419673,-0.011303084,-0.60370296,-0.101131044,0.056552358,0.052166644,-0.19503434,0.27757004,0.07941158,-0.51655936,0.09638738,-0.1763151,-0.044055317,0.3001701,-0.19017127,-0.5149817,0.100486636,0.22524951,-0.54302734,0.48872572,-0.5323378,0.41309372,0.015980428,0.12898698,-0.029550927,0.28079653,0.40310717,-0.102925405,-0.04996111,-0.14925946,0.20423439,-0.022421118,-0.63502586,0.3049043,-0.0022723165,-0.36527154,-0.005364056,-0.2279149,-0.3691663,-0.6205147,0.29765755,-0.71750844,0.5237509,0.022982458,-0.23655103,0.29932877,0.10800428,0.3087153,-0.33476788,0.21744904,0.094527796,-0.113862105,-0.13772598,-0.3419883,-0.16525224,-0.23614563,-0.46520418,0.00047397614,-0.6044288,-0.12205966,-0.28163224,0.0027095675,-0.28466716,0.18464956,-0.1008503,0.3940679,-0.324495,-0.110516526,0.19624688,-0.116960295,0.39621043,-0.42101255,-0.15595104,-0.11235873,0.012459929,-0.33426258,-0.14437155,0.32991758,0.1583722,0.48058572,-0.04813407,-0.107873626,-0.12693158,-0.19698772,0.16796352,0.520943,-0.13621084,-0.47899118,-0.12360639,-0.20375636,0.09178513,0.04229257,0.117971815,-0.36402056,-0.039665885,0.0018693209,-0.32940993,0.2213802,0.538679,-0.37613773,-0.14095517,0.35142145,0.5871597,-0.14709106,-0.01808553,0.13450597,-0.08129203,-0.52317137,-0.24423493,0.052015636,-0.11341614,0.42617127,-0.0313311,0.22609864,0.5208079,-0.3070559,-0.023189928,0.19079311,-0.0069799935,-0.0010234012,-0.2708334,-0.3568731,0.25102404,-0.5078823,-0.14156033,-0.28663507,0.739278,0.039339315,-0.8520066,0.39728492,-0.4238817,-0.0010563837,-0.09174007,0.5881775,0.46502516,0.5244126,0.014518052,0.7001554,-0.72880155,0.00025038313,-0.08929039,-0.33319658,0.05086273,-0.06607829,-0.12251703,-0.4835713,-0.007647574,0.27055007,-0.15134223,0.12079763,0.37181237,-0.34743935,-0.08773608,0.041122917,0.78174436,-0.38377264,0.039649256,0.44036755,1.2543466,0.9110503,0.1506215,1.2554501,0.32838514,-0.23570512,0.03501696,-0.12981045,-0.89988095,0.26007015,0.4121728,-0.16308013,0.4681075,0.051571865,-0.107124485,0.13839313,-0.39502558,0.027592663,-0.0126047535,0.40086803,-0.18194903,-0.24420097,-0.22253403,-0.25492606,0.055328686,-0.01906779,0.03532257,0.29413563,-0.21466956,0.2570532,0.18009503,1.5589895,-0.1178,0.14701729,0.14503254,0.42871904,0.2566684,-0.12827696,-0.23398386,0.24421261,0.34644872,0.03839814,-0.6064146,0.07106881,-0.09508036,-0.6084848,-0.21673307,-0.26609388,0.11638047,-0.3056903,-0.29202458,-0.013968636,-0.014004315,-0.43381572,0.37801117,-2.6673477,-0.15280856,-0.04271532,0.31375423,-0.22265418,-0.1671906,-0.20666085,-0.33311558,0.50227576,0.41308612,0.49146438,-0.54378074,0.38048205,0.38803142,-0.20589134,-0.13617416,-0.5396113,0.01764438,-0.16774437,0.22413038,-0.034891043,-0.1759834,-0.08028998,0.29045123,0.3487186,-0.21381828,-0.050192717,0.33684188,0.30086067,0.16572824,0.38986626,0.043962087,0.47457665,-0.49682322,-0.18393207,0.34376568,-0.35854286,0.025522871,0.08914592,0.1544262,0.22720985,-0.5054557,-0.86468023,-0.5708905,-0.1888011,1.2266959,-0.35824257,-0.36061224,0.21223564,0.057396274,-0.3360106,6.132041e-05,0.2886297,-0.2637014,0.008332183,-0.8776494,0.12007785,-0.04379105,0.33191794,0.06746657,0.10009909,-0.47584635,0.4241228,-0.11210618,0.6852303,0.46667123,0.051602185,-0.3839431,-0.5201053,0.12753786,1.2309383,0.2536367,0.23222141,0.0012668201,-0.044471234,-0.2882134,-0.097889386,0.24017942,0.29083005,0.8041406,0.030982971,0.12582092,0.2561894,-0.017952468,0.05651995,-0.03136026,-0.41077518,-0.08848703,0.12631537,0.61585224,0.47776347,-0.12686864,0.33955312,-0.12069949,0.25708753,-0.3440032,-0.4315679,0.5960707,0.7174578,-0.12507196,-0.2865124,0.4764475,0.55402404,-0.27638584,0.54129326,-0.5522931,-0.5005845,0.43944553,-0.1877249,-0.13073482,0.31604916,-0.35285348,0.26163536,-0.9759355,0.37268454,-0.33780763,-0.385871,-0.48447672,-0.26179856,-3.5470352,0.17046271,-0.11686908,-0.1579605,0.015730174,0.0707942,0.36169058,-0.45857236,-0.6006298,0.09225016,0.0131175,0.595813,0.07212232,0.088011876,-0.17199945,-0.12310772,-0.19940817,0.24118567,0.15519173,0.1775094,0.24189626,-0.4825282,-0.20105307,-0.3006484,-0.42506048,0.008637377,-0.52427226,-0.38588867,-0.19704165,-0.6134747,-0.54611415,0.62581956,-0.3460483,0.067565255,-0.11033569,-0.056602485,-0.061508898,0.3693084,0.09897763,0.08928054,-0.03287345,-0.06005025,0.016523698,-0.3006759,0.119191356,0.031117752,0.19451974,0.37283802,-0.302407,-0.10521489,0.45691904,0.6187454,0.118792705,0.6794663,0.27713946,-0.13776767,0.3067923,-0.4058985,-0.12502417,-0.6532549,-0.38271865,-0.14795102,-0.29742822,-0.4324072,-0.1279466,-0.44159487,-0.61275446,0.46074104,-0.07471119,-0.041231673,0.057087746,0.38650665,0.235661,-0.0665812,-0.07148552,-0.13155387,-0.13652591,-0.3365462,-0.27626666,-0.8523565,-0.33056358,0.15399028,1.1385887,-0.057556275,-0.028299306,0.04005174,0.024717584,0.22059214,0.14855024,0.039798502,0.34975323,0.39825875,0.012709945,-0.6523727,0.36358136,-0.28484493,-0.1601816,-0.57122785,-0.026115159,0.52289975,-0.66791075,0.33832583,0.45997033,0.24656665,-0.021144392,-0.3553082,-0.121915065,0.21123873,-0.18209653,0.4517839,0.21995495,-0.8132664,0.5616116,0.3782969,-0.34275705,-0.68216413,0.5050069,0.018157313,-0.2150015,-0.026002398,0.38932827,-0.07916824,-0.013825091,-0.3574979,0.16475174,-0.48357052,0.21552809,0.31634453,-0.089097604,0.53860945,-0.204783,-0.12271432,-0.56303173,-0.029092146,-0.49807462,-0.15131132,0.046685226,-0.035138417,-0.028037813,0.25499812,-0.21706092,0.4890413,-0.28281388,0.036943734,-0.07497261,-0.31736103,0.6356974,0.43383583,0.26009473,-0.29547498,0.66138715,-0.116748914,-0.001879773,-0.44523785,-0.034233626,0.4989018,0.13233104,0.21400599,0.11853911,-0.05381883,0.4676288,0.5565527,0.329946,0.31307167,0.18520424,-0.11138047,0.24362652,0.23145948,0.15225473,0.1768626,-0.110668,-0.10756045,-0.03959767,0.21656159,0.43019214,0.08349572,0.527908,-0.24529374,-0.3772312,0.012867672,0.24278362,-0.25763527,-1.0395596,0.5750614,0.03445901,0.3966786,0.67461354,-0.042446055,0.16737218,0.3464176,-0.21992747,0.21422434,0.15528019,-0.029543022,-0.47931153,0.5618094,-0.5058865,0.46451217,-0.08554321,0.042137295,0.07190442,-0.12889466,0.4491,0.802699,0.086437024,0.20363139,0.0072918152,-0.27580458,0.11604778,-0.38300732,0.096960366,-0.33930522,-0.26954538,0.62718076,0.1719198,0.36004677,-0.16792604,-0.081412025,0.12868878,-0.13704434,0.16607358,0.013709881,0.1210057,-0.045147363,-0.59833616,-0.24829766,0.5202376,0.25134584,0.12946841,0.20882551,-0.22307293,0.28140298,-0.09937863,0.021943273,-0.033256575,-0.52229685,0.06897861,-0.27449495,-0.16675426,0.31659865,-0.4103029,0.2689028,0.1619002,0.10327072,-0.4210685,0.13494457,0.33635965,0.51584834,-0.07656995,-0.2901179,-0.12645814,0.085167244,0.18534844,-0.13117255,-0.040054016,-0.34008977,0.018755527,-0.7848158,0.4579375,-0.05970524,-0.17569573,0.33236116,-0.14995445,-0.007873589,0.48463088,-0.21547198,-0.17437577,-0.047166966,-0.1201098,-0.09930646,-0.36859062,-0.28438005,0.16649409,0.0763961,0.08058732,-0.0061039245,0.11722028,0.020997806,0.3122916,-0.026551124,0.30355498,0.2653604,0.31711575,-0.29338223,0.054495417,0.0075532794,0.4380729,0.093490064,-0.016719682,-0.43208292,-0.44157082,-0.071525574,0.030522449,-0.2377003,0.08017584,0.09174544,-0.42077708,0.825059,0.117519975,0.89852035,-0.04779833,-0.2932174,-0.027784633,0.5555333,-0.033497892,-0.1595207,-0.19855043,1.0936048,0.6297625,-0.19961646,-0.1405399,-0.26792312,-0.1974083,0.0064714295,-0.23224208,-0.37191746,-0.092078604,-0.5728497,-0.44698194,0.18597284,0.39735094,0.028444836,-0.09321009,0.15524055,0.25277683,0.06194419,0.06951295,-0.53042114,0.12407213,0.35120204,0.17911641,0.048989374,0.07719566,-0.4847674,0.38220432,-0.7508338,0.11521212,-0.14396945,-0.015041603,0.07938109,-0.26652473,0.16500545,0.11802412,0.20680663,-0.30005005,-0.16782716,-0.09053634,0.49179524,0.09145472,0.15591769,0.8455592,-0.13186033,0.13851564,0.14686285,0.4844053,1.0653796,-0.076416664,-0.0828914,0.28182945,-0.39917645,-0.6869664,0.19849227,-0.26795238,0.2290181,-0.23769446,-0.35500985,-0.5847512,0.23072931,0.097037844,-0.035517965,0.17656872,-0.53740793,-0.26938093,0.24316978,-0.31691986,-0.36143357,-0.41366008,-0.06715017,0.5833805,-0.20078564,-0.15466176,0.14786802,0.25939354,-0.28066593,-0.6823262,-0.12291049,-0.33021617,0.32922983,0.3744836,-0.13907674,-0.039460275,0.22828372,-0.35323486,0.24072795,0.17881016,-0.41224164,-0.072006114,-0.4269557,-0.03772011,0.59163815,-0.17807296,-0.009697172,-0.5950131,-0.55790424,-0.9605533,-0.3117814,0.808644,-0.06412094,0.09642857,-0.472824,-0.104590096,-0.12887731,-0.026396831,-0.07772911,-0.23123749,0.42432627,0.05466071,0.30729717,-0.06729909,-0.768487,0.04641992,0.14525732,-0.20325808,-0.42268482,0.55413085,0.004682045,0.6904145,0.07588663,0.012249708,0.51726717,-0.6908428,0.18903911,-0.24424966,-0.113546364,-0.48863003,0.071000494,50 +344,0.33711752,-0.26254943,-0.4200888,-0.061201137,-0.120332666,0.17048594,-0.112752385,0.7778844,0.3203017,-0.46593976,-0.22525522,-0.07946457,-0.08006882,0.31641826,-0.08774388,-0.32384688,0.029479606,0.14549407,-0.34658214,0.5163155,-0.33407745,0.27324134,-0.18796362,0.45099995,0.22235227,0.116888456,0.09552141,0.045552205,-0.07489555,-0.084243305,-0.011494009,0.43942267,-0.36710238,0.32905096,-0.29198307,-0.34576607,-0.09488462,-0.60079086,-0.2683031,-0.75000346,0.10459801,-0.6771239,0.4591326,-0.100555114,-0.3632107,0.41951337,0.05655209,0.10498031,-0.17082156,-0.10942252,0.03468936,-0.007542419,-0.2320994,-0.062329847,-0.10813421,-0.30930725,-0.55817443,0.16505356,-0.29767886,-0.025634633,-0.23190495,0.13179912,-0.28536493,0.027676139,0.074913636,0.5045771,-0.4539546,0.0050260467,0.23142818,-0.18235986,-0.024484992,-0.6670391,-0.14270715,-0.07069202,0.225304,-0.06445546,-0.13016075,0.20934422,0.25422668,0.5600793,-0.006457857,-0.1593944,-0.3814318,0.043142848,0.010398269,0.43798873,-0.1500878,-0.32358497,-0.0188919,-0.062822096,0.34981403,0.14714603,0.20732076,0.036948446,-0.2338089,-0.117752396,-0.2466223,0.1984414,0.46482235,-0.40706232,-0.258586,0.466184,0.5269802,0.26270238,0.019612297,0.0017864023,0.008566632,-0.4773819,-0.16393757,-0.098819196,-0.24150096,0.46685654,-0.13141187,0.36857533,0.38719568,-0.00942988,0.035278153,0.08129559,0.054602724,-0.10728376,-0.27918154,-0.23329823,0.21916959,-0.31894466,0.17171967,-0.050865788,0.697299,0.19083798,-0.61265814,0.30566737,-0.3500503,0.11240927,-0.019891901,0.43105835,0.8747937,0.4437172,0.30995634,0.73357445,-0.35953084,-0.09703292,-0.17845508,-0.060048003,-0.031035593,-0.24879786,-0.005610615,-0.518351,0.16459092,0.11941392,0.095442794,0.28906727,0.23808119,-0.537783,-0.21793628,0.30955085,0.67161113,-0.20197515,-0.23071814,0.8918146,0.99649316,0.9979082,0.028018815,0.9620077,0.124232106,-0.05725165,0.1878052,-0.16650857,-0.6064924,0.25391743,0.30366564,0.057951313,0.26053253,0.16605678,-0.114152,0.54334927,-0.29595968,-0.079251155,-0.15231732,0.1484002,0.15230618,-0.13212432,-0.41391367,-0.33742455,-0.009175656,0.01563836,0.044791102,0.278256,-0.13715684,0.359131,-0.09791801,1.4296935,-0.04307879,0.005606634,0.17120218,0.31505844,0.1638951,-0.28111523,-0.04278561,0.32790694,0.26402214,0.012790744,-0.54081887,0.15980352,-0.16951439,-0.4891025,-0.06834506,-0.31958008,-0.22315471,0.05932406,-0.37508014,-0.1887079,-0.22497618,-0.43302673,0.47483474,-3.032015,-0.16599011,-0.12554859,0.32077292,-0.24249102,-0.36701974,-0.14430763,-0.47635955,0.39137676,0.32300025,0.4469699,-0.3968249,0.26263928,0.2740843,-0.64646333,-0.19850172,-0.49683744,0.07080292,0.049175896,0.25867695,0.073777676,-0.15353952,-0.045540128,0.0857958,0.644734,0.056297224,0.12200876,0.3803301,0.39205953,-0.2090962,0.3460121,-0.23027873,0.49698806,-0.44416466,-0.2497327,0.37389132,-0.5289999,0.42432475,-0.17087507,0.14133023,0.4656106,-0.3852138,-0.88637334,-0.59354436,-0.17025293,1.366176,-0.0854426,-0.44820473,0.09987207,-0.5527739,-0.116655454,-0.16436164,0.5148131,-0.018666152,-0.2047378,-0.6762878,0.0037626412,-0.078059435,0.086339675,-0.057567913,-0.0730202,-0.49755216,0.6427263,-0.060740445,0.4935678,0.2622722,0.16342887,-0.09090154,-0.25497046,-0.065492295,0.7599093,0.5450438,0.13953432,-0.22085367,-0.090141945,-0.41498968,-0.042553928,0.16307737,0.5616894,0.46778303,-0.10599106,0.15656802,0.19460583,0.22289778,0.083833374,-0.16130832,-0.0861216,-0.19277671,0.20654015,0.59300464,0.6367034,-0.122750714,0.27577266,-0.009705564,0.10916499,-0.26530698,-0.42501897,0.4617321,0.7395791,-0.17799345,-0.30792218,0.70577306,0.48770386,-0.007331499,0.4182962,-0.4895356,-0.38306317,0.35548726,-0.25095594,-0.36522028,0.022987375,-0.28967816,0.09204681,-0.72158444,0.06013578,-0.23992753,-0.51083344,-0.5377442,-0.021539222,-2.948621,0.19998346,-0.1033647,-0.1689115,-0.17385867,-0.24606435,0.19576697,-0.51786107,-0.5530559,0.22646405,0.15162376,0.6575144,-0.12572446,0.038093746,-0.21355654,-0.41551873,-0.3634166,0.046256,-0.03557555,0.4619423,0.1024638,-0.39823815,0.023955246,-0.120249696,-0.33805862,-0.02414473,-0.42856547,-0.31346413,-0.19684286,-0.4619947,-0.18917973,0.5736741,-0.4118565,0.0701026,-0.28556642,0.041498568,-0.03137877,0.22744925,-0.083238855,0.06441992,0.043132875,-0.19263884,0.004015782,-0.24320345,0.3647761,0.061435156,0.250566,0.503808,-0.18010625,0.2358506,0.5247558,0.6380053,-0.26806256,0.93733865,0.48546204,0.0102264285,0.35664776,-0.10688423,-0.21486321,-0.36585188,-0.22593416,0.035277296,-0.44794804,-0.35432556,0.055172723,-0.23695694,-0.8775161,0.4492615,-0.0354945,0.27273032,-0.011716549,0.22881475,0.62578887,-0.3240371,0.05558923,-0.0129706655,-0.030139754,-0.3929677,-0.44712248,-0.57233906,-0.47616026,0.1769817,1.0635455,-0.25937155,0.17096846,0.15012811,-0.107771054,-0.06855164,0.067126706,0.087202564,0.019791748,0.29984933,-0.009311261,-0.6030241,0.40267038,-0.08143637,-0.11970752,-0.43171623,0.19973318,0.4457118,-0.5099538,0.45817533,0.38798618,-0.02279624,-0.09758784,-0.68184793,-0.114663005,-0.18760398,-0.1970253,0.2758861,0.33202308,-0.9191739,0.49459735,0.32755968,-0.2330517,-0.8224459,0.38781804,-0.10716629,-0.05517103,-0.06607232,0.28629375,0.3272124,-0.020146709,-0.048112683,0.08422882,-0.38773775,0.3443508,0.072824575,-0.06390112,0.4476631,-0.2783043,-0.03276735,-0.6891236,-0.18734215,-0.5017739,-0.23145887,0.2344803,0.071396776,0.028447475,0.06090894,0.16784464,0.35383138,-0.32415563,0.11873865,-0.07447279,-0.33383116,0.36300763,0.45217174,0.5932469,-0.2991528,0.55896044,0.095403664,0.06714721,-0.15458202,-0.035682034,0.3639049,0.040985517,0.41482836,-0.12056478,-0.27380165,0.083602324,0.7920659,0.09347544,0.2361736,-0.12452285,-0.21614666,0.24130858,0.0015949468,0.19031997,-0.14816049,-0.56745386,0.010781507,-0.46810898,0.157796,0.41271186,0.1162334,0.26555517,-0.08869149,-0.1775676,0.049116135,0.14982855,-0.029803442,-0.9983937,0.32936072,-0.015784774,1.0134795,0.41004354,0.04648264,-0.04627251,0.7288381,-0.031816334,0.12174215,0.384723,-0.1304109,-0.45979834,0.5631867,-0.73408926,0.5147319,-0.057648204,-0.088923514,0.096565075,0.033759736,0.41598216,0.6401778,-0.19483832,-0.056647334,0.06974477,-0.3649209,0.06426448,-0.46778843,0.113566525,-0.53756166,-0.21852253,0.6651658,0.6057712,0.41027927,-0.36758623,0.009934953,0.054602344,-0.15948336,0.06566221,-0.049817186,0.09618868,-0.13229181,-0.60397035,-0.012032403,0.39516202,0.13594814,0.2181916,-0.060888704,-0.33187488,0.20887554,-0.16623423,-0.03621241,-0.018246695,-0.59795415,-0.033159807,-0.3068065,-0.5451471,0.47905603,0.031089988,0.21006833,0.2271094,0.09547423,-0.12865068,0.3110653,0.023879051,0.82223696,-0.05792164,-0.021361498,-0.3444028,0.24470684,0.18689765,-0.1871339,-0.042329352,-0.23741515,0.035036083,-0.54159343,0.4251407,-0.07470475,-0.19975258,0.22784893,-0.04823276,0.12903288,0.4438147,-0.026456634,0.013117595,-0.073175944,-0.23940672,-0.3950806,-0.26953954,-0.1343547,0.26962245,0.086036704,-0.10042095,-0.17308064,-0.14075463,-0.059072156,0.22742839,0.04233726,0.09905635,0.30266428,-0.057530254,-0.3432769,0.039574,0.15517066,0.56617945,0.05385556,-0.22180676,-0.35948452,-0.3889938,-0.33670828,0.16002618,-0.026021583,0.34679803,-0.005711845,-0.17084548,0.55052716,-0.010633252,0.9699437,-1.0761832e-05,-0.34044975,0.024068782,0.42967457,-0.041775174,-0.11831327,-0.33417082,0.79252434,0.3929026,-0.048412256,0.04563672,-0.28856662,0.048241727,0.24857847,-0.21461761,-0.11972202,-0.004482414,-0.6898298,-0.26221874,0.21155156,0.17654754,0.26617193,-0.14190306,0.01192877,0.23883797,0.092538945,0.30180198,-0.37535217,-0.25770316,0.27461213,0.32369328,-0.04589514,0.060219355,-0.415173,0.31244183,-0.7586766,0.031413168,-0.19536723,0.12956013,-0.37691242,-0.25275347,0.3165667,0.19916129,0.39236853,-0.22741508,-0.46766552,-0.18108414,0.38913855,0.04368204,0.06363299,0.24416995,-0.24058867,-0.09747311,0.01213061,0.39978868,0.83725464,-0.18336515,0.080490746,0.39758644,-0.21228656,-0.59423935,0.34516525,-0.37548918,0.29784945,-0.059921093,-0.11722512,-0.52591145,0.23729955,0.36431247,0.19269957,-0.021165026,-0.5516182,-0.11715065,0.093615256,-0.29427448,-0.19001083,-0.28257307,-0.044581745,0.5338606,-0.2914486,-0.3597115,0.04214495,0.40629363,-0.05233625,-0.5823855,0.11421263,-0.4113638,0.13376608,0.0018920989,-0.3942671,-0.22562614,-0.08130572,-0.46506143,0.028140953,0.037338562,-0.24961615,-0.037817024,-0.42073202,0.123602375,0.8580972,-0.1304452,0.4747231,-0.29785803,-0.43978497,-0.82441574,-0.35598034,0.37485728,0.12980261,-0.019366086,-0.5196173,0.113394186,-0.23570131,-0.17611265,-0.13418071,-0.34904712,0.4461332,0.18379316,0.1774529,-0.092186265,-0.6424596,0.24411607,0.10898728,-0.10728351,-0.24004023,0.30108953,-0.047236588,0.93729466,0.04189522,-0.03890991,0.107316926,-0.480769,0.07363061,-0.22344136,-0.14295618,-0.46089897,0.036364406,55 +345,0.53826106,-0.16229486,-0.44299486,-0.13380139,-0.039360046,0.09170842,-0.021720542,0.6687795,0.1994401,-0.42686436,0.0372059,-0.1457772,0.15574683,0.4151172,-0.13791075,-0.57575226,-0.028591802,0.2976312,-0.3124828,0.5876909,-0.32022455,0.22031571,-0.11996497,0.4142445,0.062182277,0.31686953,0.18598737,-0.10413228,-0.26242024,-0.03619904,-0.15311292,0.41011253,-0.51594055,0.11288343,-0.028763238,-0.30299208,0.040028967,-0.42735597,-0.38894764,-0.60099983,0.24290681,-0.69619876,0.50614506,0.14691155,-0.25751367,0.27898708,0.116603956,0.22782029,-0.3324391,-0.10212563,0.097637124,0.049257364,0.066749096,-0.30647653,-0.18590789,-0.59124863,-0.4934926,0.12154712,-0.4727398,-0.2143242,-0.13196091,0.16648695,-0.24247949,-0.15763591,-0.17054534,0.5367888,-0.44154212,0.115488805,0.1671395,-0.07325522,0.20981537,-0.46862406,-0.2611527,-0.05498078,0.107237354,-0.13422501,-0.12822208,0.2265977,0.34177002,0.48203906,-0.092112675,-0.115184546,-0.43674642,0.021037051,-0.06546558,0.57549155,-0.37670293,-0.86939234,-0.11042543,0.063400015,-0.11080898,-0.007960805,0.22822316,-0.25857583,0.03714632,0.033214353,-0.34465483,0.39507356,0.3742812,-0.5641333,-0.23558703,0.35566306,0.34349522,0.003255857,-0.1895957,-0.21158536,0.008586193,-0.43260378,-0.15886416,0.11895062,-0.1959103,0.6431337,-0.11276303,0.17234333,0.6196566,-0.047279116,-0.037474196,0.025532112,0.07730805,-0.03474966,-0.38199133,-0.1352786,0.09504773,-0.30002698,-0.010822756,-0.16047062,0.89929676,0.20728502,-0.721346,0.46527547,-0.5294064,0.06419458,-0.08463181,0.3552474,0.423337,0.3977945,0.2863793,0.58698756,-0.4425459,0.051335126,-0.07377023,-0.44802,0.007969486,-0.024716794,-0.10725101,-0.5455423,0.179258,0.08773584,-0.031324305,0.084626846,0.348975,-0.61101234,-0.13178772,0.32793546,1.1005471,-0.28806612,-0.3028012,0.5626935,1.1147071,0.8239664,-0.1420153,1.1846448,0.28389573,-0.3128017,0.36536473,-0.45826387,-0.57407045,0.23424092,0.3556061,-0.31263226,0.36616522,0.0786206,-0.16311683,0.34960318,-0.082942486,0.07497491,-0.25622234,0.14903913,0.14680359,-0.08729565,-0.4550206,-0.2898695,-0.09026841,-0.24651626,0.25048926,0.24746297,-0.22747906,0.26798487,-0.14397182,1.7710094,-0.064613454,0.13554583,0.044340663,0.63520396,0.2561097,0.059696633,-0.0408448,0.49106088,0.2632694,0.18479429,-0.38165566,0.26289195,-0.27878425,-0.6694212,-0.11133088,-0.3617142,-0.028276533,-0.012290478,-0.5761543,-0.014040304,0.012752525,-0.08059852,0.35276222,-2.8665488,-0.23864639,-0.07294535,0.19619036,-0.40379348,-0.3094695,-0.082214706,-0.3456919,0.36904874,0.3771827,0.4972904,-0.64642185,0.438386,0.16664043,-0.31071982,-0.1415188,-0.5054221,-0.050691694,-0.11610899,0.4610019,-0.16335699,-0.041614704,0.19561411,0.19427085,0.543164,-0.09993554,0.105817795,0.095952354,0.33084133,0.15122904,0.25541246,-0.032753352,0.6769351,-0.2987104,-0.1604707,0.23412015,-0.3979779,0.27404323,0.12564369,0.14487411,0.2843482,-0.45877895,-0.95238894,-0.57819134,0.028430479,0.9413501,-0.21638942,-0.32868162,0.14384829,-0.24306364,-0.22188422,-0.01357543,0.3376623,0.052139856,-0.031330258,-0.655327,0.2784099,-0.019063102,0.14865646,0.08177705,0.08913995,-0.2941111,0.6594677,0.0039409995,0.5115772,0.28269592,0.19150282,-0.39482477,-0.44298223,0.00022207627,0.84858906,0.16615786,0.1514715,-0.10049057,-0.20001337,-0.28127146,0.0006471361,0.060132932,0.53547174,0.5926114,0.032740317,0.04679845,0.28599674,-0.045336958,0.04709288,-0.08580637,-0.34133384,-0.064065464,0.039679,0.5490316,0.42717883,-0.35992345,0.66788304,-0.2498083,0.3071858,-0.22920908,-0.33552286,0.5779355,1.0458187,-0.30819744,-0.27258652,0.62997305,0.5494962,-0.53278255,0.36305788,-0.5504285,-0.24291226,0.43408543,-0.21028712,-0.26832062,0.30706263,-0.23443627,0.12072061,-0.99438477,0.3153196,-0.20856984,-0.30512708,-0.41879773,-0.155686,-4.1626472,0.28147462,-0.27964664,-0.1656224,-0.06050133,0.014318789,0.16122337,-0.6765494,-0.38573098,0.1463512,0.12783338,0.48512372,-0.05533899,0.22085162,-0.20568216,-0.13637188,-0.17781189,0.23209003,0.048371248,0.30470213,-0.07631808,-0.5316348,-0.023513641,-0.22345352,-0.46651602,0.16081902,-0.8402348,-0.47361544,-0.086877,-0.75334793,-0.31984234,0.6647144,-0.4041408,-0.009857767,-0.28432631,0.08374966,-0.24005437,0.34223557,-0.032791425,0.15564132,-0.011058484,-0.14013104,0.071289934,-0.3506158,0.14990981,0.05917474,0.4492274,0.3372531,-0.08738656,0.16077633,0.6653968,0.6031253,0.0769143,0.7131643,0.50863445,-0.1804765,0.4267118,-0.40062004,-0.09692466,-0.64131916,-0.54401577,-0.13463022,-0.39289427,-0.5636088,-0.0133857895,-0.36122745,-0.5912879,0.57140625,-0.12631242,0.1010737,0.04955691,0.43235847,0.60058916,-0.31635627,0.061648954,-0.0651559,-0.17336147,-0.5116312,-0.29091278,-0.5091595,-0.32635072,0.2072055,0.6898447,-0.2137448,-0.045784675,-0.07075592,-0.16348349,-0.19343266,0.03207463,0.12633766,0.24551591,0.34271187,-0.26480985,-0.6459689,0.47234413,-0.26376668,-0.1556393,-0.35032108,0.2291372,0.42414734,-0.7459196,0.7693793,0.37062043,0.26458177,0.011867732,-0.5187251,-0.34630558,0.114029884,0.0050160247,0.33668074,0.16349398,-0.87468284,0.44685885,0.39884633,-0.29989132,-0.7173173,0.49132654,-0.03637158,-0.42830333,-0.24981365,0.32686037,0.13529202,-0.009554123,-0.27071598,0.10189778,-0.58279455,0.116989054,0.2315198,0.0029488946,0.38294873,-0.17456202,-0.0166412,-0.7269906,0.010477328,-0.50950557,-0.31958678,0.32306924,0.1013862,0.14242612,0.13388352,-0.046675555,0.2270156,-0.34192207,0.08206712,0.12951547,-0.19226384,0.3496161,0.3470698,0.41057143,-0.5221925,0.46508688,-0.08896489,-0.025570223,-0.023356212,0.11708241,0.54040605,0.2117215,0.43324247,-0.040202804,-0.23243895,0.40435317,0.7210656,0.1381743,0.5969947,0.07182713,-0.18706878,0.29098913,0.018931093,-0.010181665,0.19408603,-0.4315669,-0.024257952,-0.07855882,0.23750813,0.41026095,0.071924664,0.32513094,-0.081077404,-0.25338393,0.053733937,0.281706,0.101646826,-1.0611284,0.45074135,0.2307402,0.72012967,0.4043765,0.065344036,-0.18139629,0.66822094,-0.18934114,0.12788093,0.2884443,-0.088743314,-0.5892033,0.6307197,-0.59393215,0.43752974,-0.22063637,-0.057885904,0.08240259,-0.02295058,0.3162085,0.9115366,-0.1518967,0.03129315,0.10284663,-0.3713306,0.019908974,-0.28857514,0.22554104,-0.52341956,-0.19149768,0.5955872,0.4729742,0.20055851,-0.23856115,-0.017307717,0.16405477,-0.08560356,0.048372626,0.07682574,0.21954224,0.048192296,-0.8216836,-0.27214542,0.5998803,-0.058964986,0.18075085,0.032018244,-0.31155485,0.3788496,-0.2494674,-0.17590325,0.008608692,-0.56477034,0.06865912,-0.19489464,-0.4850297,0.62014675,-0.14810184,0.15106547,0.10207977,0.12451547,-0.43703055,0.4541304,0.07265266,0.6103058,-0.17397359,-0.17454407,-0.5569069,0.030337675,0.1381379,-0.14672148,-0.12121594,-0.43441075,0.020744452,-0.4595594,0.3463555,0.15035494,-0.28681654,-0.14232334,-0.026791304,0.07816708,0.46101794,-0.08982678,-0.15846704,-0.16447286,-0.07601833,-0.25169006,-0.054523267,0.008493125,0.35933942,0.18768771,-0.1109668,-0.095566206,-0.09810121,-0.049513042,0.45511302,0.017243955,0.3512899,0.4248752,0.26657787,-0.128662,-0.09939428,0.2384126,0.4712483,-0.16023387,0.007409739,-0.18355073,-0.27639443,-0.33759,-0.047554296,-0.15347996,0.24593799,0.17991182,-0.3359371,0.8723911,-0.03329412,1.3634478,0.09385097,-0.35861287,0.023400128,0.5260725,0.00910856,0.13003628,-0.48175964,1.062054,0.68337107,0.084755346,-0.19657345,-0.3335341,-0.061956055,0.14636347,-0.2154728,-0.295058,0.012222588,-0.6299382,-0.2848944,0.1929722,0.28185,0.36769983,0.07107169,0.15375854,0.20619342,0.116223395,0.25946602,-0.5109638,-0.12042075,0.24653581,0.50715363,0.0031921715,0.171983,-0.43128893,0.40759325,-0.5557187,0.21932866,-0.39753363,0.14376473,-0.26816365,-0.38254404,0.17287871,-0.109169595,0.41946086,-0.25266644,-0.26905653,-0.13907441,0.46018273,0.12830962,0.12929179,0.67953455,-0.15484548,0.0456081,0.06447489,0.52026004,1.0579526,-0.23700018,-0.20814411,0.3815299,-0.21082595,-0.91863805,0.28253725,-0.13711974,0.24043886,-0.056428727,-0.15737577,-0.62372386,0.37663108,0.25330514,-0.113720424,-0.045557052,-0.48002747,-0.14242008,0.30223423,-0.29943088,-0.28349826,-0.23337685,0.27551928,0.74509156,-0.32510883,-0.40164304,0.19048353,0.24100181,-0.19760053,-0.6375025,-0.061584532,-0.47520348,0.36791387,0.22565822,-0.3785159,-0.13997674,-0.034081466,-0.31062275,0.27672163,0.2501141,-0.33247837,0.12516959,-0.3178306,-0.20653202,0.93716687,-0.04873637,0.14267787,-0.61846226,-0.47606158,-0.9360204,-0.55813414,0.48562402,-0.062360857,0.0067726746,-0.6062005,0.014106964,-0.010818364,-0.3641465,-0.17395915,-0.38286418,0.35819682,0.044417698,0.450134,0.046637483,-0.7793315,0.05666796,0.29855147,-0.13263912,-0.6434011,0.42831066,-0.1597819,1.0571244,-0.043774094,0.11855266,0.49581167,-0.35470057,-0.2960365,-0.44102082,-0.081583224,-0.6447554,0.034503765,57 +346,0.32703987,-0.13823153,-0.34958664,-0.033258352,-0.27933785,-0.0978233,-0.2450442,0.347019,0.3895091,-0.025768552,-0.10586138,-0.04692378,0.2064689,0.40211985,-0.09651001,-0.60063666,-0.15679109,0.025492078,-0.5402417,0.49235892,-0.50444025,0.09363401,-0.058636654,0.4491155,-0.0051582414,0.44744858,0.21589844,-0.08735704,0.010111332,-0.11634263,-0.02268267,0.27005672,-0.5962911,0.067243315,-0.21543495,-0.15938357,0.09262456,-0.5817067,-0.30191723,-0.67876565,0.06629375,-0.78726476,0.472802,0.04758572,-0.14365332,0.0959535,0.17118327,0.30180353,-0.32932568,-0.17001818,0.09999107,-0.078180574,-0.11284282,-0.401246,0.0012414881,-0.15812217,-0.4440512,-0.002953606,-0.44408682,-0.29489136,-0.23442249,0.106648445,-0.34470657,0.046162717,-0.06338643,0.4631699,-0.40467733,0.07739759,0.31692007,-0.2803857,0.31447938,-0.46427208,0.016447868,-0.015163532,0.47136286,0.034687746,-0.25659624,0.4253636,0.24342449,0.3397104,0.08726815,-0.21717532,-0.29354566,-0.17507443,0.26470467,0.5747279,-0.16214974,-0.3059772,-0.23773949,0.08105767,0.0020562324,0.28315732,-0.034371424,-0.1712247,-0.10074967,-0.108690895,-0.12729868,0.478301,0.536121,-0.19165279,-0.34863275,0.17233646,0.57012075,0.32715002,-0.20518291,-0.08799215,0.087576754,-0.6471714,-0.15400924,-0.18173279,-0.08057956,0.5589887,-0.15031429,0.15847513,0.7755761,-0.09451008,-0.12604031,0.024172226,-0.05261383,-0.052484255,-0.4479588,-0.05992427,0.15551719,-0.48786265,0.12425876,-0.16068229,0.5807481,0.1513706,-0.70416737,0.3823962,-0.5905015,0.14518353,-0.061346207,0.51852876,0.5981479,0.3112252,0.5843568,0.700465,-0.25755382,0.2709796,0.10578374,-0.5120578,0.1714985,-0.33117405,0.18333694,-0.45468256,0.1191146,-0.009675183,0.07596477,0.2511991,0.007647957,-0.4511641,-0.041854303,0.3224909,0.84981185,-0.1918498,-0.036194332,0.6688062,1.1214718,0.9115283,0.028103428,1.0155473,0.24514236,-0.16507138,0.2448344,-0.25931224,-0.7984872,0.20172906,0.3246948,-0.06353338,0.24545692,-0.1735225,-0.08758478,0.38039795,-0.44299278,-0.101334624,0.14135967,0.3699819,0.33927634,-0.13666867,-0.54976404,-0.1685276,-0.010047742,-0.10105383,0.12130425,0.12924656,-0.14831547,0.43760794,-0.15589197,1.2059759,0.06696138,0.09628003,0.11459088,0.6257884,0.34513417,-0.15157421,-0.1711574,0.49795,0.25450784,0.11186392,-0.56583256,0.33055726,-0.23255062,-0.31144243,-0.053890236,-0.43426332,-0.09761777,0.23055522,-0.2757454,-0.07215906,-0.13301823,0.011641349,0.4306132,-3.2090027,-0.2015429,-0.06037109,0.26761913,-0.19890293,-0.08206091,-0.062322356,-0.530506,0.25677735,0.28613952,0.6073887,-0.6656351,0.39118797,0.48680645,-0.61429894,-0.16843045,-0.68371445,-0.14567196,0.07060326,0.47131297,0.21753971,-0.003276594,-0.15381347,0.2521364,0.6865978,0.1332875,0.18890119,0.3981853,0.32308894,0.091638684,0.41548818,-0.061391957,0.49599177,-0.30076388,-0.15119757,0.27849302,-0.21403159,0.24483947,-0.116674915,0.041457515,0.5120233,-0.30610424,-0.98942626,-0.49112743,-0.11373062,1.0884402,-0.34523243,-0.54233384,0.28765774,-0.38440344,-0.12500107,0.07691206,0.5162597,-0.08748757,0.1779281,-0.7279338,0.18196766,-0.02906033,0.124518104,0.044547264,-0.11860087,-0.2756172,0.65108865,0.0028461006,0.44580656,0.3422214,0.20752491,-0.07874429,-0.3601551,0.06988876,0.52246433,0.25119466,0.029444588,-0.23400338,-0.2331483,0.05310286,-0.17265154,-0.021936476,0.6620703,0.5669571,-0.18188013,0.11140602,0.23455732,-0.018475065,0.067612454,-0.08281607,-0.120635256,0.022238731,0.0017591204,0.4364504,1.0219488,-0.27024406,0.2175344,-0.13571237,0.35999554,0.089981906,-0.4420831,0.6999234,0.343565,-0.18401454,-0.10675876,0.45570883,0.47010565,-0.4687535,0.44287303,-0.47957626,-0.12718399,0.5310668,-0.11353262,-0.35812095,0.16126165,-0.18490362,0.1476101,-0.7595647,0.32762343,-0.26533076,-0.4174659,-0.3915922,-0.049603067,-3.8515694,0.1398956,-0.17285861,-0.1842437,-0.29612857,0.006195843,0.24509202,-0.5791846,-0.6144725,0.21703562,0.1652498,0.46699792,-0.14851962,0.11045922,-0.25870693,-0.22179317,-0.22244112,0.2585536,0.21038903,0.2945057,-0.08726896,-0.41895765,-0.23428302,0.008225868,-0.5906166,0.27449352,-0.46410337,-0.3513947,-0.15242215,-0.3931536,-0.23410438,0.5703675,-0.3225301,-0.085994676,-0.2921111,0.10494093,-0.3447477,0.22254035,0.11416741,0.18488897,0.14967947,0.06839613,0.14784575,-0.22802208,0.5324587,-0.058637206,0.41213956,0.1409113,0.1410801,0.10253906,0.5304392,0.6974203,-0.098290905,0.966415,0.4381959,-0.036299918,0.21405987,-0.32155555,-0.26617393,-0.45107874,-0.294271,-0.06256776,-0.2717556,-0.47019365,-0.054917593,-0.40711254,-0.7090195,0.5557042,0.060840312,0.22483137,0.06889476,0.027203517,0.45551577,-0.1564664,0.021498501,0.0135631515,-0.17096357,-0.7077281,-0.075702175,-0.53402185,-0.53223354,0.046958838,0.65312994,-0.29720926,0.11372997,-0.14408459,-0.3856756,-0.05823654,0.22404914,0.077258185,0.25149578,0.4546101,0.12540898,-0.6036667,0.38075474,0.013028656,-0.2879107,-0.6296193,0.1848393,0.49033752,-0.737735,0.7626904,0.30381036,0.084352694,0.04966907,-0.5106502,-0.38707146,-0.10385688,-0.12447036,0.46541935,0.24059698,-0.93238646,0.41060778,0.24842668,-0.6105074,-0.6459769,0.3831711,-0.13664278,-0.19125652,-0.07213325,0.1543521,0.062569894,-0.06070137,-0.0898878,0.21066983,-0.33348745,0.21894158,0.042711955,-0.035518605,0.44253558,0.0039940476,-0.07527377,-0.65921193,-0.13518031,-0.60663253,-0.22406438,0.35375684,0.07037953,-0.067773595,-0.10530542,0.112886176,0.31732062,-0.1600896,0.10234673,0.029266758,-0.45231253,0.29243025,0.46113595,0.38393244,-0.4394779,0.51891744,0.0962935,-0.15022185,0.21707967,0.02351092,0.25803,-0.14573966,0.40570968,-0.16792855,-0.08849383,0.08951525,0.6423446,0.09126089,0.397585,3.0492034e-05,-0.0046177763,0.6191665,-0.111351915,0.06581028,-0.0267874,-0.48786005,0.12804806,-0.29884857,0.20740066,0.44954816,0.3764348,0.24942231,0.086048804,-0.30037516,0.010100378,0.40515545,0.08998845,-1.1282654,0.33843735,0.2812364,0.84179395,0.48489663,0.04242022,-0.16850328,0.79618424,-0.14673339,0.12794556,0.4426949,0.16031058,-0.59864235,0.6770856,-0.69830954,0.4295772,-0.089474715,-0.12079968,0.1963171,0.15535425,0.32257694,0.63148034,-0.273081,0.057531316,0.029623006,-0.2068248,-0.08314062,-0.3885859,0.009711964,-0.3387868,-0.22611248,0.6343755,0.51124734,0.32460502,-0.23663296,-0.030607352,0.09214566,-0.07312061,0.21425842,-0.10911473,-0.07190585,0.08560814,-0.5910838,-0.19097283,0.5167311,0.01496596,0.2600165,-0.26662022,-0.18973197,0.051127102,-0.31122538,-0.24762665,-0.06334441,-0.5934247,0.12753232,-0.0643085,-0.55831033,0.6023858,-0.19467118,0.13814159,0.14762965,0.06690857,-0.23654938,0.39714554,-0.12962146,0.870732,0.07348932,-0.16073449,-0.2419399,0.09146898,0.20695119,-0.110918395,0.040964477,-0.5238112,0.012852656,-0.28921565,0.553765,-0.13422312,-0.41211802,-0.012927549,-0.16951792,0.10520844,0.5767528,-0.12690993,-0.24534997,-0.11838848,-0.10193931,-0.42852765,-0.119766876,-0.17773566,0.26837882,0.30798417,-0.16094601,-0.02972272,-0.2785121,-0.17139909,0.56973255,-0.084776916,0.46399927,0.11336132,0.12135076,-0.12944646,-0.13813847,0.23547442,0.3987039,0.13596527,-0.085611,-0.34650797,-0.4121514,-0.2915782,0.0738552,-0.029721353,0.20224789,0.034159075,-0.20362285,0.7676566,-0.021178428,1.0885457,-0.026309604,-0.22740738,0.17347535,0.47758994,7.2717667e-06,0.010313119,-0.47423047,0.7879783,0.5237336,-0.18345866,-0.065024845,-0.5460774,0.014989836,0.16787294,-0.25097534,0.01232865,-0.09933412,-0.47835192,-0.23960577,0.14417885,0.15568545,0.31120053,-0.06868167,0.029151542,-0.021839648,0.0636378,0.31440333,-0.4432465,-0.27550676,0.24480319,0.2829602,0.029104132,0.088168845,-0.42008764,0.3351472,-0.3800207,0.16426395,-0.5104471,0.10007739,-0.30516115,-0.35495844,0.050853375,-0.091654085,0.40330508,-0.28391626,-0.38602123,-0.12865052,0.3269711,0.15233551,0.0579148,0.5827464,-0.21975438,-0.013486317,0.14006487,0.6179889,0.9231614,-0.5168711,-0.012440354,0.17509674,-0.31329235,-0.5546674,0.31041288,-0.24740903,0.063235596,-0.18548392,-0.28559095,-0.6228241,0.10742492,0.0075177634,0.04308966,-0.04964993,-0.50709265,-0.25028083,0.16979147,-0.3097129,-0.15378603,-0.2844918,0.2006885,0.7441582,-0.22973074,-0.2750619,0.1410249,0.12208887,-0.06778938,-0.36952108,-0.105839856,-0.09060122,0.21852544,0.06258638,-0.36672607,-0.14454456,0.2570566,-0.41741678,0.13313879,0.05841012,-0.3394909,0.11457939,-0.17143965,-0.078126565,0.9881595,-0.36649475,0.13241848,-0.5876394,-0.56045836,-0.932288,-0.36129162,0.347323,0.059598498,0.000962896,-0.3470723,0.011414788,0.02715925,-0.28055334,-0.16374008,-0.56785303,0.32447833,0.036397684,0.45899874,-0.27988955,-0.8013342,0.08552396,0.16735397,0.00833341,-0.6938682,0.54030627,-0.016234357,0.7609769,0.07086764,-0.0027398595,0.07000019,-0.23346269,-0.04806233,-0.29281515,-0.1771548,-0.6463708,0.13145694,62 +347,0.5644383,-0.36296162,-0.47653785,-0.017854078,-0.28796354,-0.022297187,-0.24422026,0.5193223,0.29902294,-0.44972038,-0.40672773,-0.23652376,-0.029117549,0.43581867,-0.26209155,-0.5348212,-0.111098245,0.2473049,-0.4432021,0.6282471,-0.3585835,0.18907206,0.06498896,0.5320499,0.31382793,0.049077492,0.15136151,-0.016355408,-0.15224878,-0.18295792,0.038274374,0.27658084,-0.5627942,0.22543654,-0.35283235,-0.5599796,-0.16515507,-0.53816664,-0.39862603,-0.7446725,0.30698463,-1.0180753,0.5185071,0.14708042,-0.30396912,0.32591608,0.05009846,0.2811267,-0.17252536,0.094811454,0.079998836,-0.32105446,-0.12232262,-0.23132391,-0.1591066,-0.1896015,-0.5521006,0.009689165,-0.3272943,0.070551105,-0.27972525,0.09474959,-0.20392346,0.1403623,0.1588752,0.32204628,-0.4566662,0.06126055,0.23357782,-0.11934436,0.42302996,-0.6007217,-0.2959315,-0.15545249,0.20746146,-0.25140586,-0.34825903,0.43746042,0.17363729,0.64640415,-0.029537493,-0.110689476,-0.32870927,0.00023027403,0.14664538,0.47784048,-0.2890424,-0.50002724,-0.23905157,-0.069239214,0.46797898,0.20750602,0.05665152,-0.25184685,-0.05515602,-0.13183199,-0.06657891,0.30455452,0.537919,-0.17197405,-0.2172786,0.2699661,0.5600324,0.29243734,0.052612323,-0.016008642,0.16972551,-0.6043116,-0.18627732,0.0114588905,-0.31230825,0.66557646,-0.13038619,0.19331542,0.514813,-0.18255022,-0.04292365,0.09843296,0.04525838,-0.14826916,-0.27109402,-0.4493142,0.45172122,-0.42878968,0.18237345,-0.12815307,0.6830939,0.13154586,-0.59509903,0.2968499,-0.5525121,0.16422777,-0.115219414,0.5172266,0.63295853,0.60069287,0.45147473,0.7891723,-0.55843866,0.030138774,-0.13532302,-0.23626933,0.069244824,-0.34008655,-0.12024905,-0.5195171,0.049136423,0.014487927,-0.11561608,0.32317644,0.55681974,-0.5006313,-0.0678399,0.1707939,0.71335757,-0.32020923,0.13524607,0.9675588,1.1533146,1.1950035,0.046272866,1.2094948,0.31617308,-0.33172426,0.04832166,-0.014345033,-0.86706483,0.32816362,0.4275989,-0.23611034,0.42164224,0.118486606,0.030477157,0.39931384,-0.6205883,-0.10748943,-0.21784952,-0.04742955,0.05573515,-0.03707375,-0.55707175,-0.25049925,-0.23308407,0.15598185,-0.1371741,0.3491079,-0.16750272,0.5856826,0.07656141,1.5221657,-0.1384553,0.0019707594,0.088734165,0.3798962,0.14827524,-0.11243807,-0.015256703,0.124648385,0.3286326,0.04616801,-0.5766792,0.047401275,-0.21083626,-0.55672646,-0.1574887,-0.19273324,0.012708387,-0.0041754437,-0.40705928,-0.2953114,-0.17661312,-0.24524167,0.4769633,-2.2918932,-0.19880536,-0.12487399,0.36559814,-0.26626843,-0.33213118,-0.16794644,-0.40599892,0.4193887,0.35704914,0.5110846,-0.77761537,0.28421086,0.54217106,-0.6764021,-0.13462652,-0.55074435,-0.14881153,-0.011777005,0.24420333,0.0061366386,-0.15111482,0.17514975,0.19986977,0.52508795,-0.019130405,0.15402253,0.29967737,0.35412338,-0.012988135,0.3224315,-0.097312875,0.4163851,-0.49410436,-0.25968868,0.44110784,-0.2486407,0.24304993,-0.21221526,0.14153694,0.5298875,-0.530117,-0.981468,-0.7606279,-0.16026412,1.1059904,-0.2576303,-0.5567068,0.19011375,-0.39517123,-0.32135245,-0.04465281,0.35992116,-0.18348339,0.037019912,-0.9568055,-0.087097876,0.11550112,0.15218651,0.12612565,-0.06283922,-0.46428862,0.7434677,-0.06384922,0.3712298,0.5611696,0.24255863,-0.10798367,-0.5905253,0.08552723,0.81230515,0.50805354,0.36063305,-0.3420216,-0.13670053,-0.14428283,0.011942471,0.09138838,0.41759843,0.66475856,-0.20432714,0.098893516,0.21849401,0.07384352,0.0404082,-0.13324276,-0.19754878,-0.2207115,0.0098432945,0.64785576,0.9320542,-0.1769732,0.15666829,-0.0035408267,0.24050872,0.060566287,-0.49623114,0.6010035,1.2707068,-0.1501094,-0.18822387,0.721732,0.55120623,-0.26226014,0.55585384,-0.74025065,-0.39668474,0.277359,-0.14657582,-0.55085117,0.16684422,-0.3996052,0.22682045,-0.91698754,0.26954767,-0.2039957,-0.21084599,-0.7237849,-0.0387745,-2.5301235,0.26058078,-0.33549944,-0.20658194,-0.20000295,-0.22105287,0.26141682,-0.7204033,-0.73102874,0.18845583,0.15889408,0.67301077,-0.01606582,0.2150421,-0.120947696,-0.2716518,-0.2887946,0.0012667179,0.25236315,0.28779283,0.15407321,-0.54765064,0.008478549,-0.11646088,-0.35819095,0.011873028,-0.63513726,-0.46599796,-0.20049141,-0.3956687,-0.31093055,0.3759184,-0.33167616,0.1390008,-0.15013263,-0.047273513,-0.14309919,0.16190612,-0.004776303,0.19605912,0.085664615,-0.0010907097,0.07176073,-0.124896325,0.2951806,0.06898757,-0.0062420964,0.38740045,-0.36767173,0.102589354,0.54628134,0.750692,-0.2478826,0.9114647,0.7172074,0.013948219,0.15311754,-0.22333561,-0.32794052,-0.68822765,-0.3322053,-0.124194615,-0.45374322,-0.46578,0.013801707,-0.33860132,-0.9920396,0.6279994,-0.02941574,0.26121646,0.0024094325,0.12640014,0.5853204,-0.31728497,-0.082426354,-0.032766562,-0.13121943,-0.5861622,-0.3449485,-0.7257276,-0.50943786,0.12124883,1.0708951,-0.11751579,0.11873715,0.3185561,-0.26268217,0.108782224,0.24085715,-0.17021786,0.055065606,0.62030095,0.2027323,-0.6457153,0.47496074,0.2690793,-0.23877956,-0.6749878,0.32434013,0.5999247,-0.60423505,0.5160849,0.55256164,-0.07889251,0.011782174,-0.5551694,-0.24408828,-0.25998262,-0.25719187,0.43945822,0.4496434,-0.7097308,0.45320076,0.44075856,-0.41252735,-0.8258273,0.61813635,0.019400101,-0.31977066,0.058588833,0.2979412,0.21678042,-0.05322137,0.08566083,0.29398748,-0.3960747,0.32625452,0.11186159,-0.06824453,-0.014441214,-0.20258006,-0.08898973,-0.9832897,0.11093204,-0.5639729,-0.2505117,0.25297725,0.1466683,-0.049175996,0.09247895,0.21659067,0.31833082,-0.27698478,0.121251866,-0.20557916,-0.35146046,0.4440207,0.522814,0.4821919,-0.3161504,0.61128885,-0.08115787,-0.09703774,-0.0884334,-0.020318462,0.42984417,0.10963261,0.32689452,0.07067694,-0.2848985,0.1083089,0.5615393,0.1620269,0.24221346,0.053583194,-0.08463396,0.47916013,0.27604538,0.2950128,-0.28320166,-0.45370102,0.0035869288,-0.34450993,0.078876905,0.3912994,0.17553568,0.37477508,-0.119027786,-0.33435866,0.08965208,0.063497536,0.08450316,-1.3959051,0.2218132,0.12477834,0.71219766,0.7338629,-0.12639226,0.22556143,0.7105395,-0.2872079,0.0145923365,0.43329033,0.04557277,-0.538042,0.4555954,-0.69399834,0.39699546,-0.0743774,0.004118547,-0.013897197,0.17946169,0.41833302,0.62880814,-0.14082499,0.122386634,-0.08824212,-0.3335913,-0.017067844,-0.488026,-0.015826123,-0.6493434,-0.26983896,0.8328465,0.5395322,0.52380544,-0.18645872,-0.0121797025,0.04870608,-0.16310842,0.2322948,0.1204374,0.012052255,-0.17724381,-0.7116766,0.0011566089,0.5652794,-0.054173835,0.106246114,-0.12062214,-0.3938693,0.20495358,-0.22101375,-0.25095996,-0.073300526,-0.8317217,-0.043965995,-0.45682207,-0.34992787,0.46622178,-0.13711666,0.17251457,0.23931351,0.055891525,-0.35968867,0.10832178,-0.0027952364,0.8707965,0.19034608,-0.36690468,-0.17906554,0.22855102,0.28823003,-0.14920892,-0.043491345,-0.029528797,-0.03717679,-0.4122055,0.6543508,-0.057145063,-0.16464183,0.30530906,-0.124099635,0.12931572,0.5863183,-0.22578302,-0.3486938,0.059136264,-0.1077325,-0.3763897,-0.44966632,-0.24586856,0.20587459,0.23573706,0.025827365,-0.030643625,-0.17620876,0.07482424,0.5638322,0.0030662033,0.41606882,0.36573654,0.058698494,-0.49694106,-0.095621124,0.25254458,0.4682185,-0.030632725,-0.27504718,-0.33595258,-0.6830235,-0.3037985,-0.023685813,-0.17967473,0.38903278,0.0048007295,-0.22193249,0.833777,0.041547913,0.9951762,-0.009012991,-0.42906687,0.097534575,0.4889048,-0.07132791,-0.17829935,-0.24323665,0.8500662,0.61679596,-0.20859882,-0.19306083,-0.35414553,-0.02822583,0.12224256,-0.17788665,-0.0540615,-0.13638362,-0.61099494,-0.33669424,0.2613969,0.3359559,0.13929768,-0.1697686,0.18791778,0.2136976,0.01829358,0.36695954,-0.30258825,-0.27328363,0.35423997,0.27911666,-0.035508495,0.06540897,-0.33545905,0.32414538,-0.4156219,-0.1326055,-0.37434763,0.09738069,-0.21982656,-0.26642507,0.21052286,-0.064049914,0.26644167,-0.3782267,-0.22985804,-0.30034462,0.58642375,0.028037557,0.0591593,0.5262194,-0.32900456,0.05877467,0.031313412,0.35721296,1.1335245,-0.37669638,0.02296399,0.34026474,-0.49458757,-0.39820218,0.43788454,-0.3157224,0.14492856,-0.005584019,-0.32196093,-0.8034783,0.14178328,0.14630677,0.09580142,0.13501331,-0.7034093,-0.0073366635,0.33481193,-0.32502103,-0.27423677,-0.3688174,-0.018443767,0.43831247,-0.22053044,-0.31229058,0.19608535,0.17975049,-0.117096014,-0.39994472,0.013711386,-0.48291436,0.29936394,0.12855627,-0.38745373,-0.15193379,0.070796914,-0.4993927,-0.12901714,0.16787441,-0.37742668,0.091029115,-0.5715399,0.102027275,1.0239893,-0.23534577,0.25407258,-0.55894935,-0.4386902,-1.0630082,-0.45725083,0.6106438,0.35430264,0.123013176,-0.6288868,0.13996015,-0.013839649,-0.25105473,-0.15502355,-0.30515787,0.627717,0.23861834,0.44198236,-0.10884041,-0.6568293,0.16876854,0.111418284,-0.24315922,-0.4279403,0.45245358,0.15410607,1.0056716,0.07220713,0.12746035,0.19504984,-0.7282976,0.12918241,-0.0659541,-0.26900885,-0.59006035,-0.042633813,63 +348,0.38160464,-0.17680833,-0.4669501,-0.07400855,-0.41797766,0.20374146,-0.13033651,0.3832321,0.18444358,-0.44536886,-0.13606875,-0.022995207,-0.10547247,0.1831743,-0.19259723,-0.5173783,-0.014088874,-0.0029351371,-0.47086993,0.53429335,-0.22532617,0.2552512,-0.087381564,0.35158485,0.29457358,0.28904533,0.08940876,0.024846504,-0.14226262,-0.21310557,-0.087890856,0.25880897,-0.55798733,0.31827113,-0.124583915,-0.36120734,-0.051926997,-0.2776973,-0.128594,-0.82421124,0.33512047,-0.8559372,0.4213509,0.04222644,-0.36233917,0.35489264,0.24075796,0.27842975,-0.062377494,-0.20698169,0.23110117,-0.22741209,-0.033517566,-0.3622799,-0.040468577,-0.4636702,-0.5317508,-0.17405245,-0.5457722,-0.31167603,-0.312708,0.18240039,-0.3519233,-0.11462028,-0.079870105,0.49249536,-0.47532207,0.14423315,0.10432927,-0.23136123,0.2021559,-0.81652343,-0.31773448,-0.0053687883,0.29008225,-0.08496041,-0.19058172,0.47913638,0.19253363,0.22247615,-0.09420598,-0.16576493,-0.2638385,-0.11941655,0.052636385,0.40200296,-0.30097577,-0.23589553,-0.022536682,-0.09673919,0.3747132,0.24631333,0.268681,-0.08714388,-0.075877786,0.10058639,-0.082999006,0.39777088,0.36097792,-0.2231027,-0.077841565,0.38892564,0.54488826,0.22477162,-0.2377537,-0.1615194,-0.011766268,-0.48360178,-0.11823332,-0.0038693207,-0.18343142,0.3662834,-0.07869482,0.24706754,0.71065986,-0.20165825,0.08332586,0.1902461,0.178278,-0.02837049,-0.31643957,-0.3384567,0.34500948,-0.47898546,0.16805574,-0.22577849,0.5794544,-0.07394348,-0.43441582,0.27545607,-0.5266026,-0.0189639,-0.0029780865,0.38230664,0.5697106,0.47089905,0.15691148,0.6808299,-0.30716038,-0.14947273,-0.05907165,-0.14050226,0.15766189,-0.2405574,0.15214333,-0.5665888,-0.01883465,-0.11411309,0.0077394927,0.13280758,0.3167831,-0.66854805,-0.22953281,0.10827469,0.76414925,-0.28063565,-0.000206198,0.78073704,1.1113924,0.88987064,-0.024271939,0.76285493,0.048141126,-0.22643842,-0.014578028,-0.014195825,-0.49290627,0.21109207,0.45740408,-0.18389677,0.26674962,0.074111685,-0.04185875,0.38558483,-0.13931784,-0.19340587,-0.12595633,0.22261856,0.23323083,-0.18662511,-0.2651737,-0.22225983,0.012182206,-0.0317361,0.09054734,0.28604358,-0.31338882,0.40482143,0.14756557,1.4855852,-0.023299823,-0.050534897,0.14900245,0.3745702,0.20603101,-0.12272978,0.1823933,0.4232227,0.1254837,0.2343627,-0.4528079,0.39090225,-0.2295283,-0.592109,0.018596629,-0.36420536,-0.17256978,-0.027904673,-0.43785805,-0.16842754,-0.16762392,-0.16078599,0.33522922,-2.7981188,-0.115911685,-0.17260602,0.35585472,-0.15713869,-0.2341214,0.08488432,-0.27744588,0.36230975,0.26867226,0.4034814,-0.5341222,0.20283021,0.66966105,-0.71400267,-0.0846739,-0.43595833,-0.13279083,0.08488759,0.3639329,0.10043655,-0.055755693,0.13393989,0.17006823,0.3236697,0.0034257707,0.13446851,0.36760992,0.4289119,-0.28742066,0.37669423,0.075664826,0.46970072,-0.30027634,-0.26540878,0.33019155,-0.47874266,0.2831592,-0.07493428,0.1493481,0.52662003,-0.17115995,-0.83058655,-0.6189012,-0.10343353,1.1495574,-0.16764033,-0.62882984,0.19233479,-0.28841883,-0.27749425,-0.11680407,0.45408815,-0.06371124,0.008205205,-0.78744,0.08896582,-0.20074478,0.1557782,-0.011129775,-0.07223185,-0.42898256,0.77725595,0.11681402,0.65733945,0.24220936,0.17996153,-0.5049339,-0.26590946,0.05942335,0.62075627,0.54455835,0.009034923,-0.10066797,-0.15754926,-0.0834411,-0.16491388,0.21952502,0.77291566,0.40228578,0.032858424,0.12067042,0.31293628,-0.124115,0.009418688,-0.1853499,-0.26178038,-0.13692336,0.035809975,0.4858942,0.6656033,0.015859773,0.39669976,0.12523074,0.39314148,-0.07983897,-0.58094317,0.36346468,1.085098,-0.17035572,-0.33881918,0.5248531,0.40849975,-0.39014092,0.36453632,-0.63706297,-0.20326127,0.6179229,-0.17888048,-0.55596876,0.08766196,-0.30760002,0.13137844,-0.63944286,0.32668933,-0.5525738,-0.39705226,-0.6192071,-0.19828212,-2.7759697,0.17113264,-0.30625886,-0.17912817,-0.3855737,-0.19041236,0.18470483,-0.83415395,-0.4810546,0.1794704,0.075228654,0.6975528,-0.13789175,-0.016828852,-0.27096587,-0.4842289,0.08096524,0.2979872,-0.018398464,0.17530116,-0.09794963,-0.3201808,-0.041425772,0.12829867,-0.43149439,-0.009148433,-0.51971364,-0.6112584,-0.09515711,-0.44317845,-0.27469835,0.7158248,-0.332287,0.019801984,-0.11879553,0.10768858,-0.07033368,0.07542561,0.11516007,0.18717703,0.073019646,-0.011513174,0.08391612,-0.38510093,0.35781866,0.06311829,0.48897317,0.40022755,-0.10299592,0.2947928,0.5026573,0.54284626,0.042786717,0.82916725,0.18054451,-0.15959825,0.29330727,-0.33011442,-0.35395566,-0.62183255,-0.20605032,0.20831439,-0.26063007,-0.325174,0.023432553,-0.3312221,-0.7136846,0.5911326,-0.038043555,0.3261233,-0.13664182,0.32504925,0.49171707,-0.16573587,-0.15154035,0.0114360945,-0.14400871,-0.559089,-0.20472308,-0.6361429,-0.4763928,0.13388409,0.71847695,-0.37479678,-0.007517624,0.2280186,-0.107079305,0.20963307,0.0825956,-0.019046525,-0.08332144,0.4104974,-0.024763703,-0.6539437,0.58453643,-0.121223025,-0.17894936,-0.5018113,0.33538723,0.48817492,-0.47719505,0.5026413,0.3879349,-0.07264254,-0.37275615,-0.43515995,0.042681098,0.19497474,-0.14772525,0.3934675,0.32126278,-0.77301776,0.32515064,0.36212516,-0.34496003,-0.5487033,0.5333641,-0.05084955,-0.29007965,-0.14394607,0.43423748,0.2750431,-0.04819702,-0.022455275,0.22783081,-0.48177984,0.21618573,0.04961437,-0.07421887,0.17646909,0.014841947,-0.16630423,-0.68379873,0.3552836,-0.38015202,-0.33523297,0.39300188,-0.14016709,0.022078604,0.40921,0.21678849,0.39799547,-0.2835641,0.042890932,-0.068752386,-0.3298317,0.37400937,0.4941988,0.6484709,-0.3764727,0.46282858,0.011100375,-0.038874593,0.26312807,0.042012777,0.37354064,0.14683358,0.51280284,0.07732684,-0.102189794,0.21386957,0.65445596,0.18285353,0.4330476,-0.109758474,-0.2027377,0.093970075,-0.07067944,0.29753783,-0.10589279,-0.6105903,0.14408675,-0.084434286,0.020394947,0.46840268,0.10168349,0.24199821,0.091801696,-0.37546587,0.06043914,0.28860447,-0.030617664,-1.0958577,0.41449076,0.2791874,0.93067724,0.39681226,0.0761301,0.023965355,0.75483006,-0.2529711,-0.006484351,0.32635644,0.032384507,-0.41527563,0.51931465,-0.71457344,0.4188807,0.050000574,-0.082897834,-0.15507782,-0.12634411,0.14112994,0.6593504,-0.21234097,-0.08480408,-0.02917862,-0.5163969,0.24588577,-0.28231487,0.08490556,-0.35540265,-0.23339626,0.50111586,0.55120856,0.3692646,-0.1963909,0.15223739,0.1012371,-0.18738164,0.31681266,0.022916062,0.10155802,-0.08800423,-0.41311345,-0.09942402,0.3797788,-0.20464495,0.2871689,-0.098461986,-0.17747392,0.22824061,0.041290324,0.016159382,0.0041143787,-0.5946892,0.25367898,-0.2606959,-0.4819756,0.5152744,-0.059334975,0.037181217,0.2291694,0.029438917,-0.2202812,0.3670656,0.17846371,0.68434465,0.057044275,-0.12291243,-0.34554508,0.14696994,-0.08566813,-0.117310576,0.091449656,-0.1505724,0.2889777,-0.4805912,0.43860143,-0.15996265,-0.31929484,-0.1545542,-0.23015179,0.047153283,0.4846694,-0.13545753,-0.14449365,-0.27692637,-0.07438086,-0.17842208,-0.2826757,-0.21416497,0.20242132,-0.04993003,0.11534989,-0.27138925,-0.05014004,-0.33645204,0.3347369,-0.14229381,0.45572278,0.39275065,-0.11845042,-0.41364804,-0.062957816,0.20218611,0.40360567,-0.14062546,-0.033762824,-0.34224516,-0.5287969,-0.46187487,0.34606647,-0.11166864,0.29884338,0.076162525,-0.26407692,0.8727301,-0.24584723,1.0545495,-0.21891774,-0.3510089,0.07406759,0.6101352,-0.12818669,-0.03738721,-0.14263794,0.97510785,0.61966133,-0.0616417,0.0037412602,-0.31864664,-0.018393,0.30334774,-0.27689567,0.06330032,-0.06814396,-0.60965455,-0.30437288,0.109023646,0.34103647,0.10223409,-0.14261326,-0.041026324,0.33390623,0.1587653,0.17771038,-0.51469666,-0.2934564,0.2620422,0.17456003,-0.12230022,0.1805421,-0.5371658,0.38260883,-0.5508247,0.20610061,-0.45357293,0.12125029,-0.21272253,-0.18240735,0.19828115,-0.057903327,0.20914373,-0.2830948,-0.33321506,-0.106029876,0.22666477,0.20813057,0.21501483,0.4844872,-0.25796396,0.10034985,0.11354052,0.46879944,0.78066826,-0.14862086,-0.16234167,0.20014109,-0.52863085,-0.6651307,0.24979995,-0.32379016,0.12930445,-0.062107246,-0.10259201,-0.5429725,0.22780071,0.2527807,0.08198427,-0.04244614,-0.7385436,-0.070084296,0.09155947,-0.5129131,-0.17691824,-0.31977472,0.051951025,0.4783071,-0.24539338,-0.12665977,-0.012413574,0.32976526,-0.11057858,-0.45416045,-0.0008249368,-0.38933796,0.43374982,-0.016945615,-0.34026164,-0.1703536,0.06544989,-0.38329673,0.34904432,0.17982075,-0.3247456,0.107513316,-0.18499874,0.27860975,0.6183552,-0.11910579,-0.005897301,-0.47521964,-0.42661673,-0.74841183,-0.41550735,0.053006124,0.13602665,0.00433115,-0.6904217,0.056371998,-0.15201186,-0.14060293,-0.22125919,-0.43756613,0.3840138,0.16823806,0.4603627,-0.14108968,-0.9141216,0.25263172,0.1204854,0.026337441,-0.52699506,0.46856216,-0.26779723,0.7648363,0.053846527,-0.020325635,0.0928532,-0.3651159,0.12594526,-0.26715404,-0.3340301,-0.45123926,0.004960724,69 +349,0.29954842,0.012403837,-0.6212691,-0.11255072,-0.1228308,-0.18957488,-0.13697307,0.4789302,0.060508728,-0.54482406,-0.1987112,-0.34823248,-0.061140902,0.4772512,-0.31698337,-0.59018713,-0.1011048,0.01052854,-0.41415095,0.48414728,-0.4409292,0.20426807,0.141185,0.45724717,0.14213923,0.27809462,0.37593627,-0.21034706,-0.2300121,-0.15509956,0.0066736424,0.18449795,-0.45509228,0.0066688233,-0.16374035,-0.5887477,0.07517202,-0.48997203,-0.37699223,-0.6748254,0.44832972,-0.8545979,0.38420963,0.16474345,-0.07900955,0.31302145,0.18019144,0.29110608,-0.19583999,-0.14360122,0.22186849,0.06970802,0.063380264,-0.106627,-0.42054018,-0.44602117,-0.5696174,0.1990198,-0.41102645,-0.29220232,-0.22629002,0.1405176,-0.3593453,-0.07141974,0.037502892,0.37020722,-0.40826225,-0.3057425,0.26928326,-0.1300166,0.41225567,-0.5897256,-0.19349787,-0.13459997,0.19217369,-0.3564989,-0.025337199,0.39734188,0.20952119,0.5211285,-0.058320947,-0.19233635,-0.46774906,0.03080816,0.14327905,0.39154992,-0.23363674,-0.5650963,-0.07286347,0.039799888,0.113460675,0.21622062,0.20738234,-0.27379662,0.036683023,0.22408465,-0.24784593,0.42888206,0.53995603,-0.3662589,-0.23743185,0.15540467,0.5276246,0.19415377,-0.25650012,-0.14717554,-0.0018774526,-0.5370632,-0.17512797,-0.021652648,-0.25779396,0.5602589,-0.05160014,0.34648165,0.7293278,-0.14044727,0.15957542,-0.043174893,-0.14062081,-0.24485527,-0.33311176,-0.16704467,0.18711618,-0.3892784,0.20868932,-0.17203875,0.74100435,0.20431376,-0.7249562,0.43290314,-0.578959,0.13182043,-0.09975547,0.42307255,0.61993754,0.20449409,0.34811702,0.61669177,-0.54755485,-0.01836821,-0.07072712,-0.4354301,0.1711897,-0.08718764,-0.075930186,-0.40713885,-0.1715763,-0.06978271,0.007399954,0.036579303,0.2229538,-0.56145376,0.0837215,0.18704364,1.0422007,-0.29506788,-0.07853549,0.7011099,0.9792227,0.9247078,-0.016393498,1.0531688,0.083111726,-0.23149972,0.52379096,-0.35350063,-0.7583398,0.34606555,0.4482329,-0.33051753,0.21358423,-0.017303405,0.20712946,0.40392905,-0.432745,0.12966134,-0.36783645,-0.027555278,0.25237912,-0.09756502,-0.2948516,-0.0755296,-0.037727058,-0.0995907,0.076842956,0.24367812,-0.09077127,0.15619956,-0.1310877,1.7430006,-0.041985016,0.15011282,0.1254353,0.54994017,0.1322079,-0.014435291,-0.04106601,0.12536152,0.23009463,0.0680425,-0.5579409,0.08642028,-0.32373926,-0.5797745,-0.10302836,-0.32618394,0.013401313,0.09599326,-0.6294673,0.021975758,-0.043476913,-0.28911266,0.2939039,-2.6823978,-0.2515174,-0.15590702,0.2051676,-0.3530151,-0.30258608,-0.17314522,-0.5507068,0.6249757,0.36934692,0.47449937,-0.5373718,0.40706554,0.50593346,-0.37365267,-0.09046887,-0.6005613,-0.09648158,-0.07769238,0.29504943,0.028891489,-0.122518145,0.0991549,0.10199482,0.37174177,0.005918622,-0.04225691,0.037028704,0.3495839,0.14200158,0.5633289,-0.09988924,0.51648444,-0.3606029,-0.19418344,0.37918156,-0.3618946,0.20256077,-0.13230744,0.25316688,0.275768,-0.49725464,-0.92462283,-0.73226464,-0.49228,1.0952576,0.039015103,-0.31780753,0.35879442,-0.21214531,-0.18473008,-0.17005278,0.4933627,-0.07978934,-0.016249593,-0.8564654,0.16828866,-0.20880143,0.10890698,0.06398115,0.09890078,-0.32488585,0.5940665,-0.01529534,0.37262195,0.50573474,0.16848733,-0.24503501,-0.4552693,0.10829646,0.8172975,0.2915618,0.07580805,-0.18703975,-0.17650393,-0.35996857,-0.14586735,0.09990896,0.38027498,0.8083304,0.0141733205,0.004722509,0.21227323,0.11962968,-0.020961719,-0.10410159,-0.3500187,-0.07812999,0.010066764,0.5234915,0.5874651,-0.31134123,0.39651865,-0.119084574,0.40073052,-0.24254827,-0.36438006,0.5360511,0.9642989,-0.16844381,-0.16254799,0.46747085,0.3929649,-0.3453284,0.45560506,-0.5785442,-0.29008627,0.47205117,-0.20166883,-0.43334273,0.08784791,-0.26973206,0.12018657,-0.94258016,0.21569517,-0.31532288,-0.20643108,-0.6271335,-0.285413,-3.7859743,0.16870888,-0.32230255,-0.13219716,-0.046133537,-0.011225449,0.26876995,-0.68713766,-0.7129711,0.0439273,0.023444531,0.75229007,-0.019349173,0.12808022,-0.20471801,-0.10289085,-0.18041556,0.05454975,0.2726263,0.2979448,0.037264436,-0.5006775,-0.14057095,-0.35460022,-0.52002877,0.11034583,-0.58430034,-0.44934493,-0.26883644,-0.5738991,-0.29352453,0.6672465,-0.35975924,0.06394554,-0.012642262,-0.03893354,-0.13867314,0.49433368,0.19805372,0.16057868,0.12223118,0.0523875,0.045989092,-0.3271323,0.24264108,0.09451103,0.37077498,0.44579458,-0.00415613,0.33022594,0.5186562,0.77121824,0.05047422,0.76095295,0.5103518,-0.026150065,0.28419712,-0.402811,-0.25712422,-0.63944155,-0.37720808,-0.045863207,-0.31743693,-0.62666065,0.01676224,-0.3136203,-0.85224956,0.6325569,-0.05006596,0.090548396,-0.012144466,0.12738936,0.34411883,-0.23115148,-0.054838378,-0.01696476,0.04596168,-0.5995272,-0.35510758,-0.5772022,-0.6028846,-0.04106053,0.89728004,0.04860276,-0.13911393,-0.057306644,-0.18258609,0.06256969,-0.03422037,0.060131606,0.18955436,0.32016352,-0.018531233,-0.678413,0.5730885,-0.08721803,-0.103310145,-0.6023001,0.028203955,0.54283917,-0.64377016,0.45043597,0.2970349,0.05142222,-0.009802878,-0.48845768,-0.20815934,0.009450491,-0.1721357,0.2797685,0.071331285,-0.7063221,0.3995864,0.4218592,-0.23986103,-0.720276,0.45711878,0.05508817,-0.21460299,-0.13910143,0.25267857,0.14147367,0.100068346,-0.233442,0.26949778,-0.31398436,0.13815284,0.38348743,0.059865214,0.5886405,-0.30637315,-0.12008308,-0.6907372,0.09402853,-0.47993454,-0.17926085,0.29294038,0.13431826,0.00899045,0.18727754,0.023642983,0.30848092,-0.14295705,0.17417397,-0.035653777,-0.11497707,0.23114856,0.39735493,0.46725067,-0.56940335,0.59814817,-0.13702062,-0.12030792,0.238108,-0.019199083,0.4884536,-0.031442374,0.2630637,-0.033259768,-0.24481228,0.32701963,0.8961005,0.20888877,0.42326832,0.123958826,-0.19592173,0.26796633,0.08013679,-0.013109411,0.051982205,-0.58677197,0.058942027,0.0546029,0.18087338,0.522004,0.07724865,0.32402158,0.0037498858,-0.36647588,0.041560195,0.11402792,-0.011115453,-1.176857,0.5239661,0.18207023,0.8080234,0.59419125,0.032852273,0.08750297,0.56064814,-0.11908561,0.20847835,0.4006222,-0.14233994,-0.68768156,0.55090934,-0.4164558,0.4791921,0.03449694,-0.11485609,-0.10217668,0.058260594,0.45924643,0.64824754,-0.19785242,0.15397921,0.08358621,-0.14367172,0.2934866,-0.33873972,0.07207372,-0.4329106,-0.08043671,0.6370498,0.5988619,0.14582558,-0.15971813,-0.1510998,0.14104491,-0.01623496,0.13480529,-0.120952725,0.20086196,-0.043851964,-0.64341784,-0.31071663,0.5187609,0.12391268,0.2791725,-0.024800362,-0.33201176,0.25727814,-0.0807912,-0.032594316,-0.10620505,-0.6547435,0.01475894,-0.2684395,-0.38651007,0.37517232,-0.13472438,0.3517336,0.112329416,0.0935692,-0.34809288,0.44755435,-0.027509037,0.5353363,-0.20978417,-0.07041933,-0.41622052,0.14355232,0.16260299,-0.2002096,-0.1180206,-0.38899764,-0.013957338,-0.45066947,0.4584046,0.0192659,-0.19757406,0.009324689,-0.13589056,-0.014017074,0.6152778,-0.070289776,-0.03303819,-0.015739428,-0.13102235,-0.23978665,-0.117065534,-0.0800894,0.2665058,0.03806013,-0.008551227,-0.11049839,-0.17536625,-0.04089566,0.5394737,-0.027182741,0.36638162,0.35335663,0.12488482,-0.3879352,-0.26947394,0.2030387,0.50196576,-0.015057939,-0.13296717,-0.27876946,-0.27148366,-0.31004712,0.25248343,-0.15099195,0.26977798,0.2567713,-0.41037235,0.5588788,0.1934727,1.3683943,0.12330314,-0.24971247,0.026038812,0.43864408,0.04000532,-0.14186168,-0.40917152,0.8728157,0.5378267,-0.09140488,-0.3190408,-0.26424375,0.017937755,0.157442,-0.22599618,-0.2746595,-0.05520498,-0.60538334,-0.33863178,0.21274246,0.38589716,0.17281982,-0.14323412,0.05845514,0.032590788,0.048635237,0.45230108,-0.39100185,-0.30871248,0.32270366,0.31579468,-0.15681903,0.20953576,-0.40493658,0.50102526,-0.40188494,0.030399641,-0.3727869,0.16692267,-0.20626213,-0.33203864,0.12746565,-0.06021694,0.39638,-0.04601827,-0.3416328,-0.21442045,0.43925637,0.18872355,0.29187718,0.60904837,-0.17761834,0.1129997,-0.09838058,0.66448265,1.1023492,-0.21808593,-0.019721087,0.28337544,-0.18348898,-0.43932185,0.18534163,-0.32816723,0.14096926,-0.13683748,-0.11594921,-0.5143271,0.18545416,0.23049338,-0.21390173,0.032876562,-0.46063334,-0.39987668,0.1636496,-0.28263178,-0.3151087,-0.47435164,0.05557235,0.69745356,-0.28029147,-0.08310346,0.1384236,0.24540122,-0.10158161,-0.41869077,-0.124011524,-0.20355597,0.29422352,0.20335642,-0.36896995,0.026703209,0.08532511,-0.43736914,0.29064688,0.028722227,-0.39720115,0.071619384,-0.17568137,-0.08334998,1.0479649,-0.101734005,0.24907997,-0.3793271,-0.51962435,-0.9964281,-0.4444139,0.7059855,0.09063029,0.03172681,-0.5400879,0.028311083,-0.018891683,-0.11943591,-0.013671249,-0.2684933,0.24985263,0.059431303,0.6249642,-0.091382824,-0.6227625,0.016352683,0.07509612,-0.13112281,-0.5181126,0.58964866,0.061388724,0.85747916,0.06984625,0.0060952646,0.33662584,-0.284083,-0.10845647,-0.30888632,-0.21223345,-0.7360249,0.09770673,70 +350,0.44362333,-0.11140263,-0.3762322,-0.15862761,-0.2549419,-0.12652276,-0.21024789,0.27639645,0.20640591,-0.13975082,-0.08857493,-0.20257911,0.06540651,0.4475276,0.023001866,-0.6995154,-0.17485857,0.011372806,-0.5877277,0.34487128,-0.7027949,0.20211089,0.1252142,0.34947863,0.019893985,0.46524575,0.43402514,-0.22973032,-0.12634058,-0.04558786,-0.03733586,0.14341387,-0.55476695,-0.014051376,-0.010712151,-0.3035027,0.08846994,-0.50099975,-0.15635571,-0.6084003,0.11925793,-0.77441937,0.37920585,0.33243942,-0.09664257,-0.02849047,0.0075514275,0.4960951,-0.44207922,0.24831238,0.22801486,-0.08186625,0.124896385,-0.4422268,-0.035488505,-0.3270389,-0.46364465,-0.0190255,-0.41161186,-0.48379442,-0.083351456,0.09482984,-0.24910249,0.0021694899,-0.24281308,0.32466468,-0.4539908,-0.19394822,0.4702913,-0.27175936,0.42824763,-0.3589537,-0.05890613,-0.08351411,0.27654782,-0.051529624,-0.20865263,0.43341318,0.26595956,0.4873715,0.11970227,-0.2851619,-0.26208875,-0.15668099,0.16673176,0.49886295,-0.28685096,-0.27677146,-0.10412295,-0.028782384,0.10793853,0.43996748,-0.12053824,-0.27854818,0.061009288,0.07970704,-0.11689287,0.17999686,0.495743,-0.43571022,-0.3729287,0.22309005,0.61708486,0.018509533,-0.14402363,-0.11069907,0.027993819,-0.6501164,-0.2415755,0.19990896,-0.0640548,0.3848377,0.048306625,0.014724127,0.8878547,-0.20377378,0.04978672,-0.13236754,-0.22374308,0.049260776,-0.38702378,-0.30898577,0.2474596,-0.44419715,-0.002488443,-0.3173892,0.66377574,0.25790143,-0.77332944,0.46705538,-0.6546263,0.16614076,-0.1053946,0.6859952,0.49526504,0.29986235,0.40525642,0.72354186,-0.4688849,0.2889412,-0.058048844,-0.38353106,0.19914845,-0.14811707,0.24708699,-0.5186854,0.0027796456,-0.101299345,0.05083528,0.16675226,0.25915155,-0.6132949,0.11533018,0.31189027,0.91068065,-0.36252922,0.06774091,0.3553761,1.1416867,0.92034096,0.036869287,1.0332279,0.43457723,-0.367264,0.37091032,-0.6424762,-0.5483106,0.16837457,0.37451163,-0.027519856,0.3572058,-0.17715335,-0.05471274,0.24431084,-0.31603485,0.18400201,-0.117975794,0.14090802,0.100813374,-0.026141929,-0.5705922,-0.16573368,-0.13012291,-0.14071031,-0.034500495,0.20251401,-0.2530726,0.12476875,-0.25584966,1.705634,0.04565056,0.19590138,0.15152988,0.61314213,0.17185126,-0.22907655,-0.026321292,0.43124732,0.26616064,0.0504329,-0.59882385,0.5220348,-0.2506929,-0.47555342,-0.011519296,-0.37614325,0.13187243,0.11702969,-0.4648786,-0.0085191745,0.040543977,-0.2520867,0.4748341,-2.8121846,-0.17373344,-0.07417364,0.30868927,-0.37209696,-0.1756115,-0.19998395,-0.40827227,0.19308901,0.36764738,0.4927895,-0.6567718,0.44709212,0.4337816,-0.4172246,-0.17721115,-0.73542184,-0.04310582,-0.12141367,0.2099792,0.055717263,-0.16497286,-0.107051015,0.2521104,0.72210026,0.0015209743,0.0844534,0.272297,0.31058088,0.17785203,0.65906066,0.010552096,0.42538705,-0.36557707,-0.25336352,0.31546935,-0.29189438,0.18178247,0.0013754964,0.007511769,0.3330896,-0.44509643,-1.0823482,-0.6483488,-0.52093655,0.8494984,-0.36736244,-0.44130185,0.2751965,0.0728805,-0.009925349,-0.007287576,0.49906746,0.071866326,0.27382937,-0.72674817,0.19414201,-0.11108421,0.27127782,0.18167713,0.0010598089,-0.34441543,0.60519713,-0.06564313,0.5016075,0.34836882,0.13734512,0.06749194,-0.262994,0.13989897,0.7878395,0.11270119,-0.045338035,-0.024640236,-0.31178445,-0.019498298,-0.13430923,0.022159917,0.40239254,0.85512483,-0.15513262,0.07716139,0.28911778,0.009626435,-0.07205843,-0.07685077,-0.35194537,0.09012864,0.13133824,0.44399518,0.6913982,-0.19918895,0.43142053,-0.15894802,0.48295003,-0.013049705,-0.3866407,0.5434697,0.4034727,-0.06692291,0.10314345,0.469165,0.50144786,-0.51791364,0.50115544,-0.7227283,-0.15203308,0.6877726,-0.14922287,-0.43421674,0.20586522,-0.28984335,0.13028994,-0.8456221,0.4538482,-0.274692,-0.061960142,-0.35310766,-0.31302074,-3.5162508,0.27307537,-0.17961387,-0.0842507,0.023336694,0.19549267,0.3619015,-0.7064904,-0.47320792,0.023848768,0.21003297,0.43691415,-0.025289426,0.024872933,-0.36228076,-0.13044252,-0.20864697,0.24863347,0.06589888,0.28405717,0.05210415,-0.39620516,-0.011619951,-0.1173567,-0.51955634,0.28964877,-0.5580648,-0.43669754,-0.20186567,-0.5740641,-0.3675908,0.61074924,-0.24674559,0.02105719,-0.13116108,0.19428231,-0.24552284,0.3221767,0.2479614,0.26453868,0.05382424,-0.045356546,-0.024652991,-0.2679948,0.40331215,0.023420205,0.39822325,0.041591473,0.09034133,0.14182971,0.43193325,0.63252896,-0.035488967,0.7042154,0.44572562,-0.16219044,0.18944873,-0.49483648,0.013029269,-0.56193787,-0.5501692,-0.13123314,-0.26803854,-0.63682896,-0.0024165085,-0.2862598,-0.6682962,0.55859035,-0.23332909,0.21585107,0.012216737,0.19673955,0.3914504,-0.27552468,-0.0070801377,-0.043464996,-0.056461375,-0.6429605,-0.17807862,-0.59110737,-0.44224244,0.3270455,0.83503884,-0.3253014,0.06607835,-0.0019187842,-0.2516692,-0.035956662,0.12721159,0.091210365,0.36265984,0.45150423,-0.092209406,-0.5812785,0.36140653,0.04737085,-0.21090868,-0.5631422,0.15379597,0.66462845,-0.8251039,0.74808407,0.22324266,0.26417607,0.08813543,-0.45745888,-0.42865896,0.20735863,-0.14700043,0.4183507,-0.19138496,-0.7231373,0.32226723,0.47819504,-0.5255251,-0.5326032,0.22927086,-0.12276188,-0.45484358,-0.038956486,0.2466283,0.024571726,-0.10692622,-0.16917118,0.2039589,-0.5146797,0.12512344,0.29494557,-0.047498304,0.38910946,0.022378232,-0.27326375,-0.7323691,0.16845801,-0.41123977,-0.332766,0.4375534,-0.00859225,-0.08103128,0.18334821,0.10871097,0.3546367,-0.08309175,0.057746347,0.054792147,-0.27197206,0.3032658,0.41028532,0.31471857,-0.42143854,0.49056047,0.05953343,-0.21300589,-0.11065517,-0.12613675,0.35335234,-0.028581321,0.34159318,-0.34318638,-0.2828943,0.5025598,0.50408834,0.15007725,0.3122261,0.0068143522,-0.03899843,0.48698384,-0.037721984,-0.22097151,0.02699479,-0.33509544,0.05436796,0.13216878,0.20735379,0.37318596,0.31044754,0.23660849,0.0570517,-0.14897755,0.06764179,0.42334884,-0.17054021,-0.64105093,0.4459086,0.24128519,0.58358985,0.590642,0.12815121,-0.2597697,0.6650843,-0.28879595,0.08037873,0.42076904,-0.061015278,-0.52673584,0.7689686,-0.49180606,0.38954428,-0.15242729,-0.029179862,0.032101598,-0.00032117963,0.4077299,0.6406926,-0.21679108,-0.018890325,-0.100844204,-0.05583913,-0.042061474,-0.28448424,0.1569803,-0.52053326,-0.4046609,0.781004,0.29357678,0.33594847,-0.12074191,-0.100157626,0.10633886,-0.13002245,0.4399065,-0.1540653,-0.06907471,0.3918038,-0.56653553,-0.13910331,0.5404657,-0.24865733,0.0149829155,-0.15187526,-0.32502842,0.011378025,-0.28241286,-0.041719727,-0.011105989,-0.597106,0.14450932,-0.31173548,-0.37085587,0.45753127,-0.21806489,0.29367107,-0.010767276,-0.0029320589,-0.18078348,0.36453947,0.023220036,0.9057477,-0.02360073,-0.21717712,-0.2889275,0.115797095,0.16095582,-0.16586702,0.035409845,-0.37251145,-0.06296877,-0.5653347,0.6177939,-0.013724102,-0.42893752,-0.008763618,-0.17190407,-0.09246737,0.65416116,-0.22288588,-0.28094697,-0.19284019,-0.2585897,-0.336311,0.06351761,-0.21434997,0.2820985,0.101599045,-0.066461235,-0.09587854,-0.14802383,0.0077027893,0.67750615,-7.599592e-06,0.36247468,0.12021177,0.14885418,-0.15819427,0.0676735,0.06864255,0.33491126,0.2486812,0.045805123,-0.36354828,-0.31275305,-0.22801399,0.11554883,-0.19808742,0.26369607,-0.022598024,-0.28964138,0.9037324,0.015768697,1.3572845,-0.033122815,-0.21610034,-0.01092164,0.46864027,-0.10253199,0.18359764,-0.45106864,0.85960704,0.68636125,-0.113516144,-0.19382308,-0.2747965,-0.2231542,0.25479883,-0.29371026,-0.015014576,-0.052519374,-0.67550373,-0.43080023,0.14613257,0.23345204,0.28935137,0.040548008,0.09623618,-0.114297345,0.12962012,0.3162776,-0.38038418,-0.30835268,0.20585395,0.3267329,0.034116983,0.18680704,-0.37599263,0.39880106,-0.5345482,0.34309644,-0.4788839,0.02368156,-0.090567484,-0.4115083,0.1070927,-0.039333224,0.2925568,-0.2012461,-0.31724292,0.049221013,0.53421134,0.18265793,0.22235426,0.83724326,-0.2740291,0.05423412,0.05006957,0.5224175,1.3464211,-0.48870543,-0.10804061,0.41526356,-0.2650402,-0.6577839,0.41486773,-0.3870211,-0.25221008,-0.20625417,-0.5230173,-0.5488926,0.21223608,0.12243683,-0.19642605,0.03322279,-0.45245305,-0.18260396,0.2690088,-0.279257,-0.25976235,-0.31119865,0.5259591,0.8869051,-0.19561012,-0.29862994,0.10657967,0.19380602,-0.35191825,-0.337039,0.007978218,-0.21364538,0.279964,0.18635651,-0.2313082,-0.020517755,0.2407907,-0.38018936,0.008026545,0.1754415,-0.41251352,0.17674555,-0.19001628,-0.24453466,0.90082747,-0.0731399,-0.220938,-0.5574312,-0.47459182,-1.0766752,-0.4973891,0.54956883,-0.0335302,-0.062386747,-0.18106723,0.10563701,0.057655293,-0.21725486,-0.054026537,-0.5244869,0.2597176,-0.04164321,0.5494136,-0.30931917,-0.68454486,0.15300176,0.21225087,0.017635534,-0.6823807,0.5228495,-0.120366156,0.83447236,-0.06418399,-0.13310628,0.09028188,-0.34777325,0.04240036,-0.40190887,-0.21613058,-0.85242116,-0.056022532,71 +351,0.5998787,-0.09736959,-0.46489605,-0.18447693,-0.4184846,-0.14774792,-0.3916715,0.2283288,0.16007414,-0.35571274,-0.2678434,-0.16257082,0.07800256,0.36133385,-0.14131571,-0.78029907,-0.13528456,0.09411752,-0.66936976,0.74659663,-0.45496812,0.42541957,0.13614237,0.30235332,0.19604978,0.47606033,0.40535232,-0.06390251,-0.11094107,-0.10192065,-0.03228428,0.08205073,-0.78836685,0.13364498,-0.33185658,-0.23999503,0.26865277,-0.49358127,-0.24817295,-0.8410892,0.16697113,-1.0029948,0.3698573,0.069113575,-0.07444636,-0.08525995,0.35888466,0.25703743,-0.33103797,0.039715372,0.18407093,-0.24864827,-0.064607784,-0.29321554,-0.22937012,-0.43524843,-0.51546466,-0.15698422,-0.61351734,-0.37066507,-0.22625992,0.24809565,-0.41946724,-0.07278409,-0.15103066,0.47645664,-0.48784283,0.070755124,0.4542272,-0.22996582,0.12803301,-0.5491354,-0.07461778,-0.15681635,0.39843684,0.07773226,-0.08526976,0.50403506,0.292679,0.36369577,0.31392947,-0.4098709,-0.28432932,-0.2706304,0.44087175,0.366116,-0.021259068,-0.23487937,-0.26965243,-0.014730628,0.24895875,0.5247632,0.16807339,-0.36132875,0.0285276,-0.13522403,-0.11400425,0.52354205,0.56921226,-0.25671348,-0.38196436,0.14996009,0.71692556,0.3375973,-0.35490134,-0.03416307,-0.13377246,-0.4653795,-0.0878449,0.3453927,-0.17606726,0.6455415,-0.09017919,-0.15468849,0.8625951,-0.1405843,-0.008286374,-0.26810178,-0.051639788,-0.1543354,-0.43826458,-0.16914189,0.3245348,-0.5201146,0.20870425,-0.3012453,0.72148865,0.23856774,-0.76081175,0.31839532,-0.64328784,0.1696795,-0.05593037,0.64921343,0.51281816,0.37987947,0.48043424,0.84632397,-0.3344243,0.3053765,0.028742423,-0.36289328,-0.083766334,-0.33703524,0.15866935,-0.3521793,0.2361277,-0.44697142,0.113949165,-0.04552216,0.3972921,-0.37610194,-0.17415906,0.37535587,0.89515704,-0.32733887,-0.06188327,0.5653453,1.1144778,1.2083472,-0.032841574,1.1370447,0.38560015,-0.23183978,0.026485596,-0.17475198,-0.61864287,0.20724058,0.39614147,-0.040716715,0.27783605,-0.13450828,0.05674197,0.28146514,-0.36600855,-0.011624055,-0.08275775,0.17382291,0.19894901,-0.05633726,-0.43543467,-0.124686785,0.07294471,-0.11064483,0.16139106,0.26709777,-0.13798466,0.31336913,-0.033990737,1.3366617,-0.0100946175,-0.017405272,0.3382794,0.59053487,0.4167676,-0.07068866,0.07390285,0.60521567,0.31669173,-0.036741853,-0.60727215,0.17442942,-0.49956125,-0.58134615,-0.082128845,-0.43754748,-0.099903755,0.18418896,-0.39182332,-0.06040333,-0.021109203,-0.14362244,0.382926,-2.4385324,-0.23284422,-0.23456566,0.2243226,-0.4633523,-0.13913836,-0.18444397,-0.5625115,0.24818063,0.22369182,0.54481256,-0.49176946,0.4838652,0.6038448,-0.5630658,-0.105436616,-0.6319317,-0.03295643,-0.14688206,0.60997784,-0.16001315,-0.111091636,-0.06079791,0.18669067,0.84948605,0.33370408,0.21848917,0.46639445,0.392972,0.06825849,0.61580884,0.020776497,0.46503472,-0.34469372,-0.12737335,0.4781668,-0.28263125,0.5188304,-0.19852276,0.17947343,0.63550144,-0.47158757,-0.9349197,-0.6055624,-0.6211395,1.023655,-0.4831968,-0.6028903,0.13473785,0.11932965,0.031904902,0.02890082,0.51023644,-0.17165828,0.2844688,-0.6073996,0.037080806,0.010797292,0.2855542,0.14435354,0.19681029,-0.22147454,0.8329348,-0.042563338,0.5275749,0.24680114,0.24016371,-0.103762925,-0.48673034,0.09672811,0.5811898,0.18781415,-0.044461768,-0.37200317,-0.29866776,-0.07039392,-0.2727138,0.036605176,0.5935241,0.7580438,-0.20640251,0.043138117,0.3241306,0.0061478848,-0.019023938,-0.2435276,-0.33137992,-0.08593019,0.11078768,0.37819856,0.8109446,-0.13967504,0.31431013,-0.1128719,0.35414913,-0.05004704,-0.4923685,0.64691395,0.76110584,-0.12599394,-0.06860957,0.4842357,0.4865799,-0.5709983,0.63202685,-0.7804928,-0.13852666,0.7845572,-0.24591589,-0.42816538,0.11724174,-0.29936367,-0.00859522,-0.7682065,0.19510531,-0.38779333,-0.036176316,-0.26306197,-0.2065067,-2.981611,0.23165719,-0.07404055,-0.098294385,-0.27630207,0.020066116,0.18748029,-0.6241356,-0.7270122,0.19159664,0.15252443,0.4457586,-0.109944165,0.12543651,-0.32546154,-0.28592423,-0.20467456,0.24328451,0.023163542,0.29617137,-0.22589014,-0.3761726,-0.029181395,0.002339695,-0.5726082,0.13190031,-0.4136561,-0.4175761,-0.23202859,-0.49459198,-0.1704433,0.45976257,-0.45019498,0.071718104,-0.06572186,0.04469853,-0.20967208,0.05947301,0.23132558,0.5513285,0.19586943,-0.053785782,0.012582625,-0.28193003,0.5883115,-0.029335981,0.2970474,0.14464249,0.02211569,0.051186237,0.28883794,0.641575,-0.20832923,0.9442131,0.25668374,-0.038254727,0.26771712,-0.26373568,-0.27214417,-0.88737917,-0.2707704,-0.2234769,-0.3508092,-0.6898237,0.024865756,-0.33803496,-0.8717928,0.5593492,-0.053835124,0.53401697,0.024544254,0.27201712,0.4947844,-0.3625486,0.05557757,0.05760296,-0.15057048,-0.622376,-0.47537234,-0.6962987,-0.44603348,0.19738577,0.79825515,-0.31281042,-0.34036347,-0.140264,-0.38565275,0.03996403,0.23094332,-0.002211081,0.14655903,0.5568465,0.34771964,-0.5991999,0.43194738,0.09981424,-0.17266633,-0.3746221,0.15872063,0.52454996,-0.75322974,0.7547916,0.35934106,0.14988457,-0.05683032,-0.81905204,-0.26208207,0.05162997,-0.11771919,0.48716497,0.1833153,-0.8283717,0.3882886,0.16967587,-0.6064922,-0.8116284,0.40793,-0.07082871,-0.388508,-0.09021231,0.45363468,0.10899446,-0.1478295,-0.2426985,0.2890408,-0.45630032,-0.010808809,0.43530008,-0.08310542,0.10910436,-0.20697974,-0.35252967,-0.7881337,0.055129886,-0.4848462,-0.27425304,0.43378687,-0.20888236,-0.17356344,0.08757387,0.26224083,0.38342413,0.013693767,0.18394804,-0.104980126,-0.28495607,0.45776346,0.45792374,0.44922313,-0.43663603,0.6202827,0.13177316,-0.274671,0.17448425,0.16708632,0.22874475,0.0888732,0.2916803,-0.04901323,-0.02779159,0.1806237,0.62135804,0.33391228,0.39806494,0.18901297,-0.28480878,0.644421,0.014150947,0.15404813,-0.21291542,-0.47737703,-0.062630825,-0.09012873,0.08828764,0.54562956,0.13364659,0.40486008,0.058637913,-0.056524403,0.14763403,0.40197325,-0.10926819,-0.8389586,0.21255076,0.13070346,0.93524796,0.54595435,0.1452718,-0.16914213,0.539797,-0.18769087,0.1558788,0.5288848,-0.038934145,-0.5244528,0.7461648,-0.33504364,0.28455716,-0.26853403,-0.042907674,0.18501297,0.35902762,0.49956605,0.8078479,-0.29008695,-0.08871965,-0.12800977,-0.11841797,0.026717177,-0.30832556,0.037983473,-0.2244683,-0.5184197,0.71931094,0.45912188,0.38333222,-0.31363198,-0.16752653,-0.06679136,-0.21048678,0.32370886,-0.035575025,0.011234055,0.13114369,-0.49160177,-0.2279195,0.57818276,-0.30742782,0.12370861,-0.21585901,-0.33716363,0.07205462,-0.19463842,0.04784458,0.040501717,-0.92383397,-0.043131012,-0.122704275,-0.72210926,0.31583962,-0.22472873,0.045529168,0.24126542,-0.107510634,-0.25675908,0.32770878,0.113315925,0.82045335,-0.07071169,-0.26339132,-0.30793962,0.08023553,0.22759198,-0.23641108,0.24498889,-0.2956592,0.19258682,-0.52791804,0.665605,-0.12894927,-0.4089845,-0.00038832214,-0.24302337,-0.23462395,0.8493849,-0.1673495,-0.23162071,-0.13660526,-0.29616508,-0.47581965,-0.09511566,-0.2660291,0.10748414,0.0921473,-0.16935284,-0.17227241,-0.1338774,0.13401008,0.5233529,-0.05948639,0.3673219,0.20820162,-0.03978232,-0.2898633,0.054660533,0.18636505,0.46431094,0.17543313,-0.022927072,-0.2759148,-0.45438042,-0.3306704,0.16893058,-0.17332508,0.21851945,0.122277535,-0.2593391,0.8913234,0.13523033,1.2096384,0.10392288,-0.3431889,0.112853326,0.5870082,-0.14753686,-0.032039713,-0.3653638,0.9076508,0.61066544,-0.19544086,-0.045583904,-0.33442768,-0.102309585,0.05689883,-0.44230816,0.017807378,-0.008298549,-0.5058131,-0.28051308,0.116833314,0.30601785,0.09800548,-0.20474456,-0.12653336,0.016672662,0.23730345,0.5474401,-0.60068434,-0.38643262,0.17112671,0.08935185,0.008952694,0.108520575,-0.24153244,0.419795,-0.75221545,0.39025325,-0.61158454,0.07975477,-0.30307263,-0.37454182,0.14666381,-0.033371504,0.47167334,-0.4035416,-0.3538788,-0.1756804,0.41527694,0.10452942,0.25438252,0.6422429,-0.28487423,0.24495329,0.12655516,0.66830355,1.2927595,-0.42184767,0.0014575379,0.2717519,-0.517569,-0.7076942,0.38110238,-0.5267372,-0.009575988,-0.22804509,-0.525506,-0.5337189,0.1452781,0.11914192,-0.053872805,0.1359379,-0.72526824,-0.109480105,0.33622614,-0.26139104,-0.16297935,-0.13322121,0.36962053,0.88962156,-0.16363516,-0.3451817,0.035820268,-0.01380653,-0.30269024,-0.5932396,-0.0034577337,-0.19416274,0.367528,0.08980163,-0.19802345,0.036481448,0.3556688,-0.5839632,0.0773458,0.14362113,-0.30914822,0.027920995,-0.1934651,0.038784277,0.8875629,-0.19656943,-0.2780146,-0.5629034,-0.542852,-1.0140582,-0.4409991,0.4079087,-0.02167956,0.2150192,-0.22981152,0.13895808,-0.2282532,-0.088882886,0.06656702,-0.5753435,0.32528868,0.21028201,0.5907453,-0.32627112,-0.9361834,0.07759022,0.17660926,-0.09668004,-0.6170835,0.5213523,-0.1776662,0.8389928,0.0513419,-0.2537896,-0.11820854,-0.43844137,0.20259705,-0.43606454,-0.12658907,-0.6895476,0.13786143,72 +352,0.58010393,0.00408348,-0.56930774,-0.1618536,-0.3112228,0.08462592,-0.18894556,0.44173464,0.2155381,-0.46051884,-0.20397663,-0.009068585,-0.007315033,0.25519398,-0.15323165,-0.6403588,0.1788418,0.29972535,-0.58511126,0.587689,-0.45706376,0.45736465,0.02014594,0.28477088,0.25729987,0.26391345,-0.072495155,0.016102612,-0.14938198,-0.16354741,-0.16235073,0.31879514,-0.50547904,0.3592791,-0.1718806,-0.3544372,-0.014291406,-0.28495386,-0.34048876,-0.69099694,0.11884473,-0.7082984,0.44078746,-0.20058165,-0.40382338,0.06972565,0.15232976,0.4572721,-0.21169999,-0.06707551,0.14721668,0.07651518,-0.3516527,-0.14576313,-0.10088025,-0.42285296,-0.51677555,-0.05028438,-0.36910793,-0.04399566,-0.36343092,0.22545402,-0.17371915,0.123089425,-0.14576261,0.37695643,-0.2954657,0.29194435,0.18595076,0.033796757,-0.032403797,-0.49685058,-0.07082267,-0.16296002,0.42209885,-0.08617913,-0.30259913,0.259059,0.26265103,0.34735087,-0.035188776,-0.14562085,-0.32401457,-0.07416224,0.06768059,0.5612404,-0.11504634,-0.32276797,-0.118039094,-0.012241478,0.13985018,0.1528132,0.15959667,-0.24592026,-0.14202072,-0.17172875,-0.397861,0.41565782,0.38912842,-0.2945836,-0.085568056,0.44902733,0.55391896,0.11102544,-0.27220336,0.025679532,-0.023934856,-0.55328757,-0.122297965,0.0028455597,-0.17184949,0.47904247,-0.059875306,0.1927711,0.5859667,0.08721683,-0.21808483,0.17899884,0.16495135,0.019715104,-0.28955323,-0.23684338,0.1605632,-0.53505945,0.037416816,-0.17279074,0.7715866,0.07420198,-0.7353715,0.28131077,-0.44444337,0.05671226,-0.16323957,0.40522024,0.6673521,0.48137066,0.061897848,0.68414927,-0.3972494,0.13066377,-0.027694812,-0.22802475,-0.019319104,-0.04765064,0.013767004,-0.45549455,0.14069153,-0.030112538,-0.1595708,0.22947598,0.38021752,-0.41582653,-0.22643535,0.04249363,0.7608598,-0.39401117,-0.25331813,0.78686523,0.92326397,0.87085974,0.07997311,1.0568858,0.27421945,-0.1154377,0.109833375,-0.3481843,-0.5964287,0.24780674,0.2225825,-0.043301694,0.19475044,0.14596762,0.03614194,0.38616735,-0.24278285,-0.066901855,-0.10776738,0.3227492,0.020965127,-0.10139002,-0.42995,-0.39733973,-0.06442487,-0.046331517,0.19875135,0.20653431,-0.14732318,0.37871557,0.19311465,1.4773496,0.10014611,-0.06478581,-0.020246293,0.38800004,0.20984502,-0.27633452,-0.26730064,0.18719888,0.37306803,-0.05956894,-0.5135041,0.056776643,-0.1851877,-0.40070316,-0.12270711,-0.29103294,-0.22218673,-0.12364753,-0.38026264,-0.12812638,-0.088486455,-0.21500246,0.535536,-2.7270737,-0.21636876,-0.11582184,0.38259667,-0.088471,-0.48653197,-0.17595837,-0.5642733,0.3374744,0.20645194,0.49064383,-0.51983076,0.51182806,0.30852988,-0.451906,-0.0958987,-0.591515,-0.046408623,0.10913889,0.23822257,-0.027304301,0.09055669,-0.1977285,0.027926514,0.45439503,-0.15413554,0.19657905,0.41113934,0.23820281,0.10325593,0.46077314,0.091429286,0.65334415,-0.18302055,-0.06173018,0.23780084,-0.42398834,0.3403584,-0.052968774,0.15212356,0.53127825,-0.48808402,-0.7311637,-0.56246376,-0.10131561,0.98529804,-0.24394245,-0.14786534,0.27234927,-0.4076864,-0.24433632,0.14399263,0.27988186,-0.110946365,-0.19123472,-0.69653404,-0.14394829,0.04309505,0.27607295,-0.16082872,-0.16886698,-0.3383648,0.54752344,-0.04790008,0.44987583,0.14066197,0.13339886,-0.23284896,-0.33447036,-0.0062747872,0.93219984,0.30264956,0.14823915,-0.3152743,-0.23006718,-0.60601526,0.017013205,0.009837533,0.6433118,0.49611142,-0.09454922,0.044480186,0.1649626,-0.022440417,0.024212787,-0.11133317,-0.27891114,-0.091180734,0.0036399749,0.49295744,0.6477281,-0.025416633,0.54374063,-0.18028966,0.29082632,-0.24683902,-0.53470856,0.44257498,0.8835368,-0.2504132,-0.31979582,0.6348203,0.4152394,-0.015636487,0.37034193,-0.49317536,-0.41443223,0.396189,0.013281592,-0.1596863,0.05994955,-0.28719458,0.2452716,-0.89183086,0.2753871,-0.31544018,-0.75026447,-0.4400282,0.027440276,-2.7532315,0.13449445,-0.027045803,-0.15990528,0.003894789,-0.1253645,0.08518721,-0.43841982,-0.662005,0.22846918,0.06812054,0.76422256,-0.085923895,0.122922264,-0.053346686,-0.32929257,-0.13106689,0.19986747,0.078997,0.35777912,-0.07125397,-0.4418362,-0.097404845,-0.18489334,-0.23227929,0.086162604,-0.80238146,-0.391259,-0.09799127,-0.5162219,-0.22121511,0.5794238,-0.590637,-0.00051058724,-0.1235309,-0.026899377,-0.12999737,0.16671453,0.0055370247,0.10912116,0.09665651,-0.13587464,-0.044885036,-0.35033175,0.20106222,0.14295565,0.3623991,0.2095108,0.097779974,0.2000774,0.49869347,0.5944861,-0.015770316,0.82932866,0.3278337,-0.10438895,0.17262486,-0.121077076,-0.28908348,-0.42133117,-0.14511903,-0.26626903,-0.39433974,-0.23630682,-0.04284818,-0.40259844,-0.7941833,0.40164685,0.0435854,-0.14998507,0.06715626,0.25941038,0.42316934,-0.120801345,0.016003473,-0.1690687,-0.07540833,-0.5483423,-0.49643067,-0.5643081,-0.39942783,0.13928832,1.224086,-0.22411309,0.22515617,-0.073113374,-0.31160814,-0.06445756,0.26656157,-0.029672325,0.14058897,0.5099054,-0.23066309,-0.60557187,0.45358008,-0.3940124,-0.08858691,-0.5358664,0.22515713,0.5440965,-0.64888877,0.47225383,0.29140812,0.06909207,-0.06446435,-0.4098401,-0.22289827,-0.055602986,-0.30389673,0.3414884,0.23578437,-0.66925985,0.33578843,0.3026586,-0.25696343,-0.7893758,0.6349438,0.0014308052,-0.24415864,-0.10629065,0.31935778,0.09907248,0.11046282,-0.15860553,0.13521983,-0.28817156,0.1142451,0.21636765,0.042348035,-0.09305284,-0.34393588,-0.04795303,-0.72523797,-0.10791308,-0.306138,-0.25561854,0.14595577,0.017485734,0.16546793,0.17568739,0.28906924,0.23622581,-0.42446855,0.05185147,-0.27296478,-0.26185533,0.32416922,0.44596595,0.57080275,-0.3738646,0.46187133,0.07874714,-0.037224658,-0.06121846,0.031124106,0.4162415,-0.055254046,0.4798345,0.08915795,-0.122238114,0.19937822,0.85051334,0.2199951,0.30899668,0.070218675,-0.14206669,0.050924275,0.016070936,0.27432618,0.19209613,-0.45769477,-0.052797172,-0.21974863,0.1891392,0.42974472,0.04039463,0.21508847,0.01592733,-0.31177124,-0.009634818,0.04095465,0.13977441,-1.3090736,0.46794802,0.17295517,0.7506811,0.3699836,-0.004992119,-0.03347085,0.61199516,-0.12816277,0.2777163,0.21835354,-0.25775367,-0.23204228,0.45301172,-0.557124,0.5244425,-0.007603756,-0.010342726,0.20918877,-0.100395165,0.41726664,0.94549364,-0.16812356,0.07471488,0.17388114,-0.40583226,0.108231984,-0.26343408,-0.0052239853,-0.6485253,-0.18735692,0.8337415,0.58128774,0.31887707,-0.15337683,0.040002424,0.0997997,-0.113806725,0.07215149,0.0470348,0.10753449,0.039941523,-0.47993153,-0.12248106,0.564731,-0.19986965,0.16641164,0.2030582,-0.117616765,0.3191772,-0.10242677,0.07137313,-0.20276013,-0.6918532,-0.007466101,-0.3348561,-0.34715527,0.2373908,-0.059150714,0.23080513,0.25620383,0.12707102,-0.24040683,0.48455092,0.066172905,0.56264764,0.020659218,-0.18490723,-0.15928619,0.19286506,0.19766213,-0.25091666,0.11641856,-0.385576,0.124732204,-0.79233265,0.36345118,0.03771664,-0.3731492,-0.048721883,-0.010330988,0.12954636,0.34787178,-0.02631496,-0.0970037,0.07225936,0.053394496,-0.19091327,-0.13444988,-0.2750895,0.16159378,0.3453416,-0.15702784,-0.05712241,-0.09662783,-0.02706727,0.37605622,-0.025502516,0.46842724,0.28333345,0.13582656,-0.21728352,-0.13258244,0.31483126,0.6088973,-0.048200186,-0.08384158,-0.29290894,-0.20349881,-0.3942676,0.42750835,-0.06833629,0.48099282,0.121326365,-0.18844056,0.63482475,-0.05648167,1.0854384,0.099803604,-0.2847683,0.17246988,0.48818842,0.0015624166,-0.107983276,-0.30426475,0.85649866,0.31971344,-0.14077258,-0.047149234,-0.3374677,0.06012885,0.0933053,-0.06469323,-0.1359915,-0.035657085,-0.45233032,-0.17944817,0.12864561,0.15664077,0.21213773,-0.06833707,0.18319702,0.2686374,-0.054159667,0.21913354,-0.49592075,-0.010796036,0.20527211,0.23412621,0.027014554,0.15388466,-0.5955221,0.37948522,-0.6278173,0.037145793,-0.23112524,0.14049526,-0.19617751,-0.30328828,0.2057893,0.168931,0.23189759,-0.48837858,-0.3025377,-0.45627847,0.58629787,0.22540684,0.11315971,0.55279875,-0.1811777,0.0022768038,0.16337602,0.483483,0.7689619,-0.25040877,0.07633013,0.39568278,-0.31925187,-0.4251604,0.18013597,-0.24393317,0.17398962,0.107297316,-0.23970625,-0.6570143,0.32318094,0.20801724,0.1168234,0.17148556,-0.5967497,-0.04468576,0.19334531,-0.27680126,-0.2953443,-0.20275988,0.14688168,0.58720034,-0.22701226,-0.35010314,0.05684157,0.12699082,-0.22361347,-0.48509496,-0.082355715,-0.46813798,0.32584038,0.006936927,-0.24717109,-0.30514982,0.054741986,-0.38701487,0.12154511,0.21978989,-0.29413074,0.06004896,-0.35973278,-0.07957184,0.8173715,-0.10226077,0.22191072,-0.53905785,-0.444423,-0.60263664,-0.37831798,0.33901307,0.2949942,-0.14391848,-0.54775083,-0.12497061,-0.09641479,-0.17409687,-0.021330515,-0.3797839,0.45482653,0.18364468,0.13895808,0.041699167,-1.1747528,-0.046106312,0.08445908,-0.38581523,-0.48171908,0.39835075,-0.1823126,0.89984035,0.075879045,0.10840123,0.2155992,-0.41235298,0.11273598,-0.2330992,0.07792197,-0.64375687,0.16511814,91 +353,0.33573636,-0.36332157,-0.50519204,-0.006817562,-0.3465965,-0.1787466,-0.23086952,0.42821687,0.19664551,-0.2553723,-0.036219638,-0.1230595,0.026605759,0.49008903,-0.03861252,-0.49202332,-0.14615212,0.29056528,-0.7009966,0.67043287,-0.34141907,0.1877681,-0.118726894,0.59545213,0.25749707,0.22742607,-0.025269572,-0.010561203,0.1693553,-0.09965867,-0.008195718,0.120439306,-0.5065405,0.14169037,-0.03577764,-0.35097244,-0.0924891,-0.45317534,-0.4201179,-0.7864107,0.37082475,-0.7259843,0.5158531,0.05490346,-0.35952565,0.21828939,-0.07863991,0.44971842,-0.29423752,-0.13476047,0.21587722,0.14465903,0.08938636,-0.26961187,-0.053032093,-0.32942107,-0.43836832,-0.064471774,-0.34188196,-0.10772959,-0.25583223,0.12567928,-0.21949063,0.09701269,-0.08346604,0.3530524,-0.4594514,0.20585157,0.21197708,0.029358694,0.3318238,-0.4704227,-0.11134941,-0.24166846,0.06873477,-0.08033379,-0.3476046,0.31768307,0.030226741,0.3489824,-0.19434078,-0.05993809,-0.12215997,0.05099473,0.119798504,0.5260953,-0.17919631,-0.3507557,-0.24760477,0.05993714,0.062752284,0.04563572,0.12994453,-0.5320102,-0.12928443,0.027136637,-0.16788308,0.40839943,0.4422598,-0.061673116,-0.09926926,0.31101295,0.48557132,0.41564545,-0.18146351,-0.048409883,0.034981024,-0.44413665,-0.13494302,0.054585304,-0.0654972,0.37898615,-0.09681442,0.2198441,0.60378414,-0.021537466,-0.27039775,-0.010532975,0.13828927,-0.08381714,-0.282175,-0.27204272,0.25137302,-0.41939113,0.22305004,-0.07567755,0.7152759,0.13860391,-0.80293846,0.3650873,-0.6100193,0.17873971,-0.16486247,0.4109749,0.74556303,0.42749676,0.08156937,0.67022896,-0.257056,0.13215618,-0.09865754,-0.29288033,0.095429696,-0.18317625,-0.2548251,-0.5353008,0.023935838,-0.08578622,-0.20321296,0.14189786,0.30309454,-0.48731115,-0.09893861,0.10156737,0.7403258,-0.3289897,0.21255244,0.68185943,1.0005487,0.92893136,0.21178494,1.0376346,0.27309835,-0.2707135,0.3087488,-0.12720248,-1.0188082,0.32425097,0.36431012,-0.09709423,0.33088169,-0.022281187,0.044701397,0.4387981,-0.35933742,-0.004753145,-0.3032915,0.1947967,-0.0019603074,-0.12695818,-0.42595598,-0.3049567,-0.118183196,0.11384435,-0.15490566,0.21042867,-0.3180659,0.33175758,0.12451119,1.6661813,-0.026649177,-0.0064633572,0.049259882,0.52687854,0.31778032,-0.36883172,-0.24669696,0.43022037,0.42827755,0.02439657,-0.6846071,0.16260253,-0.10052245,-0.45893627,-0.18089792,-0.28134447,-0.080339186,0.004785691,-0.52231985,-0.2474862,0.016165342,-0.106859244,0.36972114,-2.5126493,-0.06901001,-0.1167865,0.29707378,-0.23346137,-0.32354432,-0.036230475,-0.35174206,0.38705343,0.3108203,0.5192734,-0.58476657,0.31876284,0.4245344,-0.61621875,0.02418983,-0.5010478,-0.24012193,0.032261565,0.3324154,-0.061610866,0.18757561,0.07483613,0.29213366,0.37804276,-0.17063129,0.15936692,0.33254313,0.36522552,0.051442113,0.3671202,-0.023470726,0.43975988,-0.33434257,-0.16244781,0.24232452,-0.1859214,0.24894774,0.09714909,0.111117944,0.5510925,-0.63253963,-0.8010248,-0.47617906,0.026148716,1.0978013,-0.43732372,-0.43007132,0.29549077,-0.4774718,-0.23626217,-0.0590441,0.19537303,-0.15971582,-0.1695981,-0.86942154,0.10176473,-0.017436972,0.3227665,0.013023065,-0.09718746,-0.20397861,0.79968965,0.056968305,0.41323566,0.3070703,0.16314848,-0.19138026,-0.52293974,0.116453394,0.5319858,0.36239484,0.2350205,-0.26479325,-0.13900308,-0.3337668,0.008441337,0.14424,0.40852764,0.5958031,-0.09870535,0.17613734,0.2766411,-0.21391916,0.019041542,-0.19655064,-0.15758951,-0.1259518,-0.006943158,0.57331073,0.6960635,-0.15539487,0.38109016,-0.051545493,0.2590738,-0.033723865,-0.5718098,0.5798088,1.1323694,-0.11966749,-0.3885312,0.39708477,0.54077435,-0.21907358,0.35380667,-0.45931885,-0.12837756,0.5000402,-0.13846448,-0.3376275,0.21888244,-0.27015296,0.17207618,-0.8465804,0.20979223,-0.1734586,-0.47582445,-0.66894156,-0.03086446,-2.8110182,0.19575165,-0.26344585,-0.34370565,-0.24112909,-0.091815665,0.16898264,-0.42606825,-0.6897928,0.09796593,0.018844962,0.6419095,0.01862189,0.16618685,-0.105575785,-0.1406096,-0.2995852,0.14793934,0.18822522,0.37829176,-0.07281331,-0.5015604,-0.2866783,-0.15345035,-0.43435296,0.087924205,-0.6270226,-0.421447,-0.17372353,-0.5722779,-0.21119344,0.4600513,-0.09550296,-0.01739713,-0.14635758,-0.085472904,0.0030863371,0.3265455,0.2116455,0.12353594,0.16883574,-0.012451796,-0.07970529,-0.30906805,-0.052596767,0.10029553,0.13009717,0.07799925,-0.070249185,0.263989,0.50594336,0.76915973,-0.07992554,0.70338726,0.734309,-0.12529619,0.25079903,-0.26076382,-0.31778583,-0.53449816,-0.18545035,-0.2390893,-0.41596773,-0.4456606,-0.06410133,-0.2714892,-0.73067945,0.5741431,0.0869683,0.014676673,0.19758017,0.0036584395,0.4207017,-0.048615295,-0.096852936,-0.08318536,-0.1637503,-0.60485506,-0.19916436,-0.59508276,-0.37524158,0.20004262,1.077124,-0.16766512,0.07280796,0.11658324,-0.40290686,0.15252258,0.11370398,-0.03552661,0.30255094,0.3721431,-0.04628161,-0.5868579,0.50928164,0.15076484,-0.2105812,-0.568962,0.28283435,0.6171915,-0.63322437,0.51931566,0.109190024,0.12058502,-0.1366329,-0.38012722,-0.11629441,0.1612962,-0.27459314,0.39909008,0.27483487,-0.6458868,0.39801413,0.44802365,-0.14567353,-0.7174724,0.50784236,0.020576494,-0.33548537,-0.17889713,0.20981257,-0.026799116,0.066643246,-0.056714706,0.309941,-0.311871,0.15697224,0.19444212,-0.1249889,0.1072546,-0.25109878,0.07022185,-0.672513,0.21858986,-0.4426512,-0.36764902,0.31847414,0.16518636,0.1252682,0.093008354,0.057555687,0.34015402,-0.20611453,0.07265635,-0.26293877,-0.2633288,0.3768408,0.5167478,0.45458502,-0.25495777,0.6098388,0.040725667,-0.103141375,0.041969378,0.1788505,0.4326281,0.09148012,0.39624548,0.046299133,-0.12383628,0.068496294,0.6934552,0.1474344,0.437109,-0.009054788,-0.048524093,0.2287241,0.12548654,0.20924671,-0.018271612,-0.39201146,0.09350964,-0.032714356,0.1888131,0.48733374,0.08385498,0.14604266,-0.21328059,-0.48593453,0.11753588,0.13099015,0.16351165,-1.4229901,0.2666907,0.2749584,0.7078444,0.62567604,-0.08049439,-0.007999463,0.69132,-0.21049346,0.13978006,0.24587767,-0.053582046,-0.6023881,0.45586076,-0.72185427,0.46352234,-0.07735277,-0.070336014,0.20082648,0.11703449,0.42515567,0.68257946,-0.15218015,0.039682157,0.09826213,-0.44703692,-0.029485809,-0.38451263,-0.048025366,-0.47873974,-0.38521188,0.58760375,0.4939027,0.26140898,-0.3342914,0.0755528,0.0782199,-0.22124818,0.13292482,0.18444161,-0.048887994,-0.042151503,-0.6854716,-0.27128226,0.50889,-0.21599059,0.1258965,0.025897397,-0.20416713,0.3359681,-0.16472487,-0.049905002,-0.050737917,-0.83868164,0.09061922,-0.45196813,-0.3300106,0.32689074,-0.08386962,0.19429891,0.22514085,0.040009927,-0.39482406,0.41855073,-0.0924137,0.9534982,0.016327774,-0.18290386,-0.23715608,0.16727544,0.13140316,-0.039147384,-0.03800216,-0.287528,-0.0716931,-0.4651477,0.4824515,0.11382152,-0.3423606,0.09386102,-0.029385047,0.115012646,0.44854084,-0.16246244,-0.24434341,-0.18897915,-0.13370822,-0.33999974,-0.35938844,-0.10371053,0.19466694,0.44422182,-0.002339327,-0.02789121,-0.1040539,-0.023550851,0.54613936,-0.032384776,0.57483035,0.38271925,0.2519729,-0.50148636,-0.08429454,0.26858535,0.49039695,-0.017860422,0.008976196,-0.09720697,-0.32458296,-0.41330665,0.15367289,-0.26442286,0.50407255,0.0492615,-0.29901856,0.64379257,0.026048807,1.0347143,-0.116161,-0.33324572,0.27206317,0.44352075,0.07759719,-0.03690236,-0.29507965,0.61330616,0.5576503,-0.043788556,-0.26243988,-0.28910658,-0.17804883,0.23690602,-0.24773581,-0.11661699,0.054734994,-0.5589744,-0.21661854,0.08351667,0.3095323,0.1829585,-0.08004928,0.053699456,0.14130725,-0.060056534,0.08455698,-0.34864095,-0.0681708,0.2034404,0.13597892,0.039238613,0.01581892,-0.58858526,0.37705597,-0.37426597,0.23964529,-0.36997232,0.19980891,-0.06465931,-0.2365543,0.055502504,-0.007975893,0.23669504,-0.5066546,-0.25326803,-0.3567204,0.67583424,0.13967884,0.18980257,0.6135381,-0.22579335,0.180181,0.116235495,0.37555954,0.6773089,-0.14295979,-0.27820903,0.23795119,-0.438998,-0.6012322,0.3187787,-0.13523939,0.19212417,0.034686796,-0.09296245,-0.7595507,0.22110157,0.13045366,0.033457868,-0.09614725,-0.6600633,-0.20231803,0.386689,-0.2779986,-0.19390264,-0.31205603,-0.0070220274,0.45347354,-0.25383574,-0.3505234,0.112437196,-0.023414632,-0.21354465,-0.31278414,-0.06565822,-0.4929952,0.27628857,-0.00085132464,-0.45366365,-0.120860614,0.1036287,-0.43775374,-0.046151545,0.066084675,-0.36276317,-0.019842256,-0.29154125,-0.123315044,1.0311246,-0.38631892,-0.019101452,-0.6065289,-0.57504237,-0.7320632,-0.33434725,0.60012203,0.1015194,0.10164864,-0.8372184,0.08670342,0.08820923,-0.18348427,-0.09607079,-0.41873986,0.4095858,0.15228048,0.26732036,0.0324061,-0.7972641,0.29793152,0.10380701,-0.24264751,-0.6410603,0.4563472,-0.069927864,0.7397126,0.032662146,0.1623306,0.17197539,-0.537947,0.025568327,-0.16541673,-0.21508779,-0.5490802,0.12144772,98 +354,0.6032693,-0.17314151,-0.49999836,-0.21702866,-0.26495638,0.18318796,-0.09862966,0.6121627,0.10225674,-0.5075381,-0.08144866,-0.055461828,0.19221784,0.34851,-0.14090002,-0.6720792,0.04488843,0.13605686,-0.40510055,0.48680478,-0.50840986,0.32819575,-0.0030929106,0.2526296,-0.002674518,0.3206563,0.23291318,-0.20579696,-0.059382405,-0.110728554,-0.138885,0.2790348,-0.3930623,0.2111266,-0.042025745,-0.31824234,0.20028734,-0.3845763,-0.44921717,-0.63807064,0.34481692,-0.6940738,0.46620888,0.10137282,-0.24681303,0.26181033,0.045800276,0.18123321,-0.42708415,-0.008131251,0.08586893,-0.055995636,-0.14876719,-0.20333692,-0.037835162,-0.44934988,-0.42548674,0.02004534,-0.43760172,-0.0927697,-0.35919023,0.22553156,-0.3009074,-0.07263521,-0.05222353,0.54768044,-0.4829161,-0.07804681,0.15572514,-0.30355173,0.26277918,-0.59260136,-0.122623615,-0.054220088,0.2562901,-0.1945779,-0.16930218,0.27222937,0.24388473,0.40920052,0.06997516,-0.25410458,-0.3222013,-0.210448,-0.046493497,0.5480529,-0.24076761,-0.7692813,-0.03506413,-0.023870623,-0.07532976,0.11547769,0.026739296,-0.104772285,-0.09120458,0.061261766,-0.4598263,0.4134202,0.5247862,-0.3950705,-0.25482184,0.41142243,0.5746459,-0.03723068,-0.1655261,-0.08252592,-0.050473146,-0.5227622,-0.25060993,0.01016395,-0.23779596,0.5156535,-0.2123315,0.32546523,0.76352227,-0.14423697,-0.052772492,0.23114488,0.052591152,-0.052920718,-0.31317058,-0.20407605,0.21942244,-0.4755435,0.13956738,-0.24609831,0.93784523,0.14789489,-0.55959934,0.39928356,-0.43446597,-0.009013414,-0.20942774,0.47784907,0.5750848,0.32421574,0.16353893,0.74119616,-0.47766668,0.10649924,-0.039867826,-0.36847615,-0.065373965,0.11896544,-0.047341082,-0.48714972,0.16809689,0.02948961,-0.03331759,0.031440977,0.39838073,-0.50878704,-0.124903105,0.2849448,0.8996855,-0.4096426,-0.2042067,0.58444834,0.9928063,0.93394417,0.19361302,1.077317,0.2435545,-0.307288,0.34738508,-0.38250422,-0.6741323,0.29954198,0.47486204,0.62248766,0.12201357,0.14753638,0.080438204,0.49612957,-0.38102037,-0.06861998,-0.29437512,0.3779366,0.16960718,-0.14950708,-0.53791916,-0.20799088,-0.0721847,0.054782134,0.13469009,0.20228244,-0.16616477,0.3397214,-0.08030274,1.485299,-0.005083118,0.042120874,-0.07794662,0.59800404,0.33541742,0.017961245,-0.09852012,0.3507513,0.41281727,0.010332248,-0.6295636,0.30049917,-0.23987146,-0.64712197,-0.1515162,-0.4011918,0.15596986,-0.09300903,-0.5070419,0.030886855,0.036876816,-0.25106162,0.41790012,-2.7444534,-0.21004312,-0.17760576,0.2368175,-0.20450647,-0.35950035,0.08414179,-0.4891974,0.4550257,0.47532246,0.5940138,-0.63969606,0.45776606,0.38520387,-0.49057737,-0.06532512,-0.65575546,-0.15000074,-0.09710892,0.47231928,0.18124397,-0.12980701,-0.22022025,0.14246872,0.60240453,-0.12898377,0.019343283,0.14312933,0.26826707,-0.0035008788,0.51884353,0.0025341127,0.59527606,-0.3090293,-0.24504733,0.24950252,-0.37625855,0.13997735,-0.18917267,0.15953244,0.3754434,-0.3769524,-1.2135619,-0.7124295,-0.25191507,0.96143043,-0.21682204,-0.21440499,0.3072956,-0.29978845,-0.18918784,0.104706295,0.32165864,-0.05173806,-0.115870126,-0.63237584,0.13272838,-0.11288184,0.052491985,0.07086394,0.07304041,-0.3451628,0.7252498,-0.057776093,0.5154287,0.22728637,0.21264768,-0.21962214,-0.29526424,-0.041385498,0.96434575,0.38443393,0.22893289,-0.2843844,-0.2928991,-0.38441285,-0.10150291,0.018984461,0.6188693,0.7027845,0.12577054,0.020076722,0.10638932,-0.1167677,0.04074653,-0.061475676,-0.2769179,-0.07768643,0.08036595,0.6224529,0.40084496,-0.07645997,0.5518799,-0.15835023,0.3318677,-0.22918364,-0.3550592,0.59669393,1.0338008,-0.14430033,-0.26403636,0.64117473,0.39843962,-0.24735594,0.36130497,-0.7614279,-0.2234322,0.45527416,-0.22519942,-0.22857036,0.08087083,-0.21835916,0.102390096,-1.067207,0.24184836,-0.215088,-0.7123235,-0.48676577,-0.27805263,-3.7431362,0.21472895,-0.21593595,-0.077238396,-0.047483217,-0.14451072,0.23557499,-0.6301012,-0.41109976,0.27185112,0.054389954,0.67242306,0.13172193,0.08263861,-0.23505303,-0.06372941,-0.15659001,0.3259173,0.0998747,0.32608795,0.017486522,-0.5348778,0.008947481,-0.10701275,-0.57699925,0.12756737,-0.68088996,-0.48074764,-0.16140379,-0.6221151,-0.25893936,0.69199115,-0.26804706,0.033166375,-0.14095286,0.1777061,-0.15006958,0.35006174,0.059962176,0.10889355,-0.03858223,-0.08219923,0.13938214,-0.37767008,0.3133665,0.092535004,0.39372414,0.13264759,-0.04209901,0.06512026,0.75260895,0.6012393,-0.032644186,0.7688993,0.52145034,-0.13584247,0.4037988,-0.2516164,-0.20205167,-0.5347465,-0.56323594,-0.08235812,-0.34546545,-0.36943468,-0.086464934,-0.3612656,-0.6621904,0.437222,0.07150235,-0.067628324,0.00555881,0.41680235,0.47125605,-0.32299766,-0.03956919,-0.021614747,-0.16245715,-0.65357584,-0.32557163,-0.4981532,-0.36744452,-0.09718694,0.9621163,-0.19670327,-0.18576777,-0.22464076,-0.22152193,-0.048080646,0.1275978,0.13789055,0.2549035,0.3625937,-0.24398434,-0.60593796,0.5493878,-0.3343208,-0.27605864,-0.5027333,0.042762768,0.38349274,-0.5434831,0.621665,0.46633196,0.21732083,0.018931994,-0.49759242,-0.30768028,0.14078088,-0.07083382,0.37731013,0.19670418,-0.95849115,0.54418194,0.36758068,-0.23873755,-0.7380419,0.5120551,-0.072459534,-0.3030232,-0.060441073,0.2936592,0.20389713,-0.11756285,-0.27395207,0.08774329,-0.33384535,0.16828604,0.16470818,-0.008708524,0.41263184,-0.384605,-0.1427293,-0.7655045,-0.28573486,-0.47226733,-0.13991666,0.12546849,-0.024305265,0.11752597,0.13701305,0.089385524,0.38876763,-0.3458534,0.09798182,-0.18982682,-0.46999338,0.40788963,0.4421381,0.38429597,-0.35949782,0.56525046,-0.03119539,0.013052101,-0.18343374,0.024921784,0.5756078,0.040573783,0.4687758,-0.11146392,-0.119990274,0.35404268,0.8643952,0.21524152,0.45388418,0.0012653725,-0.17850026,0.2092462,0.077573694,0.14086242,0.14054927,-0.40587062,0.09327621,-0.09819392,0.083606735,0.41026625,0.11693038,0.22200468,0.01790963,-0.27968818,0.06722102,0.13822216,0.09956088,-1.2048632,0.56046546,0.2796618,0.9439744,0.40421638,-0.08786158,-0.05555427,0.6326173,-0.04464538,0.11914144,0.30523774,-0.19579823,-0.3590448,0.43669277,-0.6151492,0.53888535,-0.14764014,-0.044765968,-0.057013076,-0.121334024,0.38281563,1.0137645,-0.1769601,-0.005652662,0.12067976,-0.41259125,0.22725484,-0.4223836,-0.088374615,-0.5796755,-0.24172023,0.7296601,0.44261613,0.33092144,0.0018613084,-0.060063977,0.15507509,-0.0744362,0.1689593,-0.040963333,0.07364721,0.038590133,-0.8538666,-0.36176804,0.5091179,0.2985026,0.29724488,-0.124521255,-0.093855396,0.38264078,-0.18401864,-0.11493582,0.0001517183,-0.52280456,0.06339596,-0.2765461,-0.468724,0.5621646,-0.23616278,0.2627756,0.123064086,0.103576705,-0.28565946,0.42032102,0.07236529,0.795864,0.06847344,-0.25118306,-0.57165104,-0.066019736,0.19829021,-0.24704394,-0.12016772,-0.45489842,-0.0519507,-0.71666104,0.42259425,-0.118494794,-0.30358583,0.0647255,-0.2965534,0.02127496,0.4229383,-0.10579087,-0.17769675,-0.08533815,-0.1043529,-0.09644431,-0.07237172,-0.16188645,0.32622644,0.06999243,0.031120589,-0.029588196,-0.13061546,0.017690947,0.4831621,0.0821323,0.22063126,0.28530848,0.10816014,-0.20752148,-0.18422832,0.33115676,0.5998063,-0.18627925,-0.022987843,-0.23246823,-0.37855503,-0.24659717,-0.024160793,-0.090037584,0.3197387,0.17361723,-0.27482006,0.6481578,-0.15199284,1.131534,0.2110931,-0.43208724,-0.010828674,0.55537003,0.12926622,0.08086182,-0.3207919,0.84873813,0.44501382,-0.09851944,-0.27959377,-0.48777798,0.13077481,0.25816834,-0.114633545,-0.17863224,-0.10340901,-0.6841878,-0.25841466,0.29952878,0.26726002,0.21309553,0.0127463695,-0.098735146,0.12799041,0.010116019,0.35355625,-0.59009695,0.14977114,0.32144615,0.25240937,-0.010417827,0.15157816,-0.46397597,0.40296412,-0.55819225,0.08893756,-0.26158682,0.19193013,-0.31515446,-0.26958117,0.2766532,-0.03908295,0.39644513,-0.21372654,-0.35184175,-0.29691938,0.5195628,0.30981475,0.12195532,0.5652296,-0.18539917,0.017040918,0.10776675,0.45405307,0.9198085,-0.37330776,0.038416836,0.44256774,-0.32626668,-0.53065246,0.0976694,-0.30833,0.2117894,0.07459142,-0.2137442,-0.6365687,0.3828667,0.18755667,-0.033429928,0.13323426,-0.51491463,-0.22576652,0.23502159,-0.32786536,-0.26358882,-0.10262591,0.24896953,0.70151716,-0.35785866,-0.19441094,0.2407845,0.30600637,-0.22360294,-0.64095867,0.060172517,-0.43289688,0.39886093,0.079968944,-0.41577652,-0.15471052,-0.057863466,-0.44195488,0.23085342,0.28737158,-0.35489598,0.009838616,-0.3549976,-0.09203894,0.905074,0.015419926,0.34901834,-0.63656473,-0.33742434,-0.8267438,-0.2887102,0.6154499,0.06987854,-0.041957717,-0.5801333,-0.056410287,0.10721956,-0.10609271,-0.09548837,-0.46023867,0.48259658,0.07516664,0.49492308,0.116739266,-0.85233754,0.01558332,0.05700477,-0.27035096,-0.5322091,0.48490587,-0.19447291,0.7798276,0.05786831,0.17913426,0.2938695,-0.41634506,-0.010281333,-0.3313705,-0.16151372,-0.6886252,0.15979409,101 +355,0.48125777,0.0073195347,-0.4162363,-0.08831044,-0.17591761,0.18482819,-0.04480177,0.34553477,0.20826145,-0.26108646,-0.2675181,-0.16998467,-0.07739484,0.27061063,-0.16769896,-0.6830594,0.108691275,0.1949602,-0.4210258,0.5316667,-0.39763623,0.27087888,-0.048435755,0.32318974,-0.049413424,0.071638465,0.1405959,-0.105501726,-0.035348304,-0.19024272,-0.11010997,0.098701306,-0.5174338,0.2344063,-0.119909815,-0.1317077,0.19612066,-0.29407266,-0.34480354,-0.63282055,0.20259385,-0.57431495,0.55992264,0.15474054,-0.20055582,0.20550476,0.1368338,0.2636609,-0.11322068,-0.037004184,0.0046072686,-0.043098085,-0.19261704,-0.100921966,-0.2128119,-0.43775776,-0.55842936,0.17008981,-0.37416476,-0.0071975165,-0.1339349,0.09743995,-0.24880323,-0.038410936,0.009859843,0.34016126,-0.22676294,0.029928325,0.2990381,0.009940199,0.13697806,-0.5686328,0.014267315,-0.11266097,0.22783457,-0.10751233,-0.270072,0.17880787,0.50359374,0.47645244,0.011715106,-0.25354013,-0.07242959,-0.19696508,0.15829447,0.47215304,-0.1310495,-0.56682587,-0.18779357,0.103334285,0.08624215,0.20838584,0.048123013,-0.3110411,-0.056326125,-0.1007803,-0.17515834,0.2775289,0.4561256,-0.38671228,-0.3353623,0.34606892,0.56468856,0.044538848,0.045473628,0.023418197,0.14151302,-0.5267662,-0.21414243,0.115641154,-0.29999548,0.4822491,-0.26190752,0.01341808,0.5369261,-0.10593225,0.06342326,0.18971793,0.09875616,0.033149533,-0.4044978,-0.1630312,0.15174165,-0.58719695,0.091350146,-0.16234626,0.8440727,0.2766532,-0.66076404,0.31918773,-0.5954054,0.15240753,-0.104048245,0.46562904,0.6724018,0.28104967,0.28988615,0.69692403,-0.4746241,0.08917993,-0.122027636,-0.2622881,0.0699623,-0.10850309,-0.0610814,-0.43121347,0.18745337,0.062267754,-0.09608432,0.014597961,0.15950836,-0.5137587,-0.095938995,0.11655756,0.7566897,-0.2401297,-0.18575546,0.60365975,0.943834,0.8694053,0.13050553,1.3724747,0.24702074,-0.21409877,0.26666877,-0.27610162,-0.78064966,0.20743789,0.25019312,-0.35452265,0.19233724,0.040273447,-0.06835173,0.32307753,-0.5456386,0.040903497,-0.15704493,0.4948318,0.019270131,-0.012044532,-0.3046403,-0.27188757,0.014139518,-0.06565333,0.2280751,0.32201758,-0.053835373,0.14228486,0.10204474,1.256549,-0.1470364,0.07676237,0.03079388,0.36119038,0.2664205,-0.08373671,-0.2228191,0.37625027,0.27861694,-0.004778411,-0.5359274,0.017535115,-0.2666823,-0.30359086,-0.25306344,-0.13479099,-0.12127707,0.17865443,-0.23603019,-0.15183382,-0.15868844,-0.17652069,0.7112939,-2.7365384,-0.20882702,-0.09426781,0.29073694,-0.37843415,-0.364373,-0.24141799,-0.48553395,0.52693045,0.18438466,0.39789656,-0.78280133,0.17563121,0.26455155,-0.4631864,-0.18650272,-0.6623731,-0.047018208,0.06391177,0.1654582,0.03695583,-0.108054124,-0.17185824,0.058040056,0.3273557,0.09724008,0.124745116,0.21538027,0.23344885,0.31260243,0.2692663,0.0060483688,0.59750473,-0.0963661,-0.13048746,0.20518778,-0.30737248,0.5528231,-0.20056595,0.06533454,0.36715892,-0.5539754,-0.63856554,-0.7169928,-0.5078901,1.0741762,-0.19735302,-0.18678172,0.0784752,-0.3431979,-0.20671327,0.034737144,0.3379969,-0.2286229,-0.16230032,-0.720192,0.058181603,0.08033036,0.23285685,-0.004294636,-0.04505586,-0.34186673,0.66637766,-0.18697716,0.27878922,0.3951992,0.13689935,-0.19435334,-0.5904211,-0.10483068,0.86171,0.45900354,0.14132227,-0.14601453,-0.27853838,-0.53130984,-0.21493094,-0.0019184862,0.5337692,0.74050146,-0.12794234,-0.16004303,0.2889183,0.04999249,0.13741641,-0.01588516,-0.4201284,-0.08034743,-0.16510573,0.5533639,0.46841723,-0.27212632,0.3004871,-0.03335992,0.23278318,-0.22351502,-0.32997844,0.5731627,0.98497444,-0.24055721,-0.17392604,0.5531432,0.29849073,-0.20256114,0.36129355,-0.5913761,-0.21128263,0.45100728,-0.031181647,-0.29752058,-0.019683126,-0.2991421,0.13449709,-0.9001335,0.4414886,-0.3553748,-0.40451744,-0.5480148,0.011015526,-2.7865436,0.261161,-0.23481473,0.06831994,-0.19919147,0.034641482,0.23071636,-0.37863395,-0.6056618,0.33091778,0.021897426,0.49578133,-0.092217125,0.20362043,-0.13210371,-0.23843257,-0.3974093,0.110426605,0.18383506,0.20195691,-0.12525705,-0.2262644,0.1592923,-0.17484328,-0.29561296,0.22195654,-0.61463344,-0.43210068,-0.18795674,-0.5469271,-0.30838206,0.6718574,-0.5069863,-0.021631347,-0.28749374,0.016660977,-0.18673857,0.20056848,0.06267819,0.07149679,0.016872773,-0.0033097502,-0.18925838,-0.34273654,0.2430471,0.04468303,0.21881476,0.3593491,0.02521704,0.105784334,0.36577898,0.63534135,0.024289113,0.75519276,0.36444524,-0.116969176,0.1981651,-0.22854151,-0.16552515,-0.17185046,-0.28272843,-0.197866,-0.37992105,-0.3671196,-0.016136732,-0.426433,-0.6811141,0.28580672,0.14254008,-0.019434744,-0.02957541,0.2692108,0.4441967,-0.22212349,0.17961057,-0.029347496,-0.15973891,-0.62727654,-0.36156133,-0.3676098,-0.3239457,0.4049966,1.0375235,-0.36547908,-0.08957465,-0.090598024,-0.21526423,-0.024238957,0.055609737,-0.11373533,0.06935729,0.45965725,-0.11816418,-0.53729284,0.37963992,-0.066011734,-0.22900847,-0.5357183,0.23097193,0.57874405,-0.66486824,0.70703316,0.45613003,0.12371792,-0.026046047,-0.48483077,-0.15424694,0.11151712,-0.39401108,0.2869253,0.34958768,-0.6519851,0.40392855,0.33449787,-0.19579418,-0.8258844,0.5054893,0.051519055,-0.17988035,0.022858748,0.48210594,0.20082124,0.08649012,-0.1838628,0.25484234,-0.45896468,0.05466791,0.20745751,-0.06327187,0.27098304,-0.2186964,-0.25654322,-0.73827505,-0.10280871,-0.63010514,-0.2864501,0.28327134,0.09037309,0.10104941,0.08301902,0.29573274,0.3523264,-0.3920569,0.17630169,-0.033205714,-0.23021258,0.21786407,0.35957035,0.35136154,-0.31112248,0.47451124,0.002015416,0.057717912,-0.19311757,0.16582601,0.41469255,-0.024019973,0.3160858,0.19793947,-0.117660046,0.16332829,0.8479298,0.027873963,0.17995445,0.12782894,-0.0010649615,0.29897675,-0.030505827,0.1917049,0.20000495,-0.49750724,-0.19433662,-0.15949473,0.16060694,0.3767228,0.21028623,0.25250906,-0.015428313,-0.27757484,-0.07522527,0.11815264,0.04866877,-1.0086745,0.39910525,0.123038396,0.6081193,0.58226585,-0.0069825095,0.17755304,0.4003453,-0.16970626,0.26348853,0.35526156,-0.11933408,-0.37244362,0.38590962,-0.66269743,0.3298996,-0.19195065,-0.0005924659,-0.010871415,-0.029470708,0.332058,0.92694813,-0.12069897,-0.015392555,-0.13237889,-0.24389662,0.15163778,-0.26180252,0.027640715,-0.6198085,-0.27804267,0.5878724,0.44709963,0.35898426,-0.23870376,-0.071889006,0.21277942,-0.0646186,0.084371254,-0.0073208255,0.13578342,0.17895328,-0.57314074,-0.23471297,0.60355836,-0.07309645,0.19039264,0.013085799,-0.11733455,0.17341426,-0.30495477,-0.0048505217,-0.123434685,-0.6883376,-0.043353114,-0.11833144,-0.36256313,0.3835819,-0.41040665,0.056686994,0.14148216,0.11130829,-0.28755632,0.37965065,0.04245943,0.57272595,0.01435756,-0.16775575,-0.4162195,0.22864291,0.07573097,-0.13551055,-0.012283764,-0.20088546,0.14347692,-0.61099297,0.5792879,0.01170605,-0.20736662,-0.011039694,-0.19820929,-0.049899805,0.5421437,-0.30001336,-0.16841586,0.16734055,-0.3557656,-0.28165224,-0.029831162,-0.037256528,0.23246075,0.35822418,0.036790423,-0.015069668,-0.22492155,-0.34155717,0.19706675,0.20489156,0.24115182,0.27073747,0.03181352,-0.30155352,-0.16746213,0.11529266,0.3812995,-0.046641856,-0.17303367,-0.1758091,-0.24970327,-0.32200193,0.20801885,-0.07710155,0.29389602,0.0148278605,-0.18028252,0.65945786,0.11033283,1.0661899,0.06567449,-0.263712,-0.14751954,0.53550225,0.031036654,-0.11374973,-0.38396007,0.9108287,0.46143606,-0.14131118,-0.1232112,-0.2962558,0.028615734,0.20731089,-0.05181121,0.07146644,0.07366104,-0.5066719,-0.31980297,0.27244693,0.2574282,0.08544992,-0.049511947,0.0077992934,0.063094325,-0.08406115,0.32791448,-0.44146279,0.04144379,0.27090803,0.32209238,0.20607376,0.26173753,-0.2522048,0.32992408,-0.59681904,0.09137545,-0.18769553,0.10383188,-0.18314233,-0.2919364,0.15590657,0.083741136,0.33456713,-0.30250105,-0.34979835,-0.20706405,0.43587118,0.2643118,0.1848205,0.6831643,-0.20394172,-0.07401126,0.12152814,0.6246562,0.96547925,-0.062909774,-0.039277103,0.24198604,-0.2488624,-0.5908887,0.35749945,-0.32676506,0.0415535,-0.07379812,-0.19327219,-0.6038968,0.23995745,0.24058633,0.2304897,0.10102068,-0.75298935,-0.10165452,0.14185707,-0.33224702,-0.17121252,-0.18464088,0.2102628,0.9012949,-0.17110297,-0.20572019,0.058718782,0.19092345,-0.23381183,-0.6319839,-0.08470596,-0.35119957,0.21529987,0.16354695,-0.24781549,-0.1266726,0.213313,-0.43288225,0.068297885,0.0152286505,-0.28582126,0.15189578,-0.26711807,0.086893074,0.7211255,-0.1455076,0.08468277,-0.49988228,-0.3778091,-0.660983,-0.2543314,0.4015101,0.10385573,0.11528533,-0.3955668,-0.16024254,-0.0573666,0.006775009,0.012642324,-0.33022806,0.48344684,0.133575,0.2548497,0.04648673,-0.83555347,-0.011956059,0.0608148,-0.1688369,-0.51393104,0.3086746,-0.056300074,0.9080601,0.027504222,-0.08564289,0.27318624,-0.48113555,0.08699525,-0.28643018,0.06298492,-0.78345066,0.12221248,103 +356,0.36905268,-0.05946387,-0.5680412,-0.32582617,-0.2330217,0.10398354,-0.05471226,0.30841658,0.29654837,-0.26685548,-0.04092077,0.06538613,-0.027443822,0.39426324,-0.0059011364,-0.7553383,-0.07753771,0.18835016,-0.58204526,0.34486657,-0.5691421,0.41249993,-0.051965807,0.39752933,0.08529745,0.4132151,0.07625001,-0.07522976,-0.07121963,0.2532934,0.10961076,0.2550391,-0.48344785,0.18138738,0.07647581,-0.35494038,-0.06098022,-0.3501572,-0.36223236,-0.53927994,0.36694282,-0.53042173,0.6285306,0.04180482,-0.34150496,0.13109478,-0.08940964,0.32639667,-0.48861906,0.18321082,0.15350421,-0.16503215,-0.00018879345,-0.19261596,-0.38234955,-0.43425903,-0.58913547,0.0350454,-0.4405672,-0.14433038,-0.16881545,0.09177412,-0.3237695,-0.11794997,-0.15451424,0.39080614,-0.5303288,-0.05889017,0.33658046,-0.2018902,0.051426798,-0.31296942,-0.12356662,-0.106205635,0.21004729,-0.09100175,-0.28116643,0.27370036,0.21634476,0.5836981,0.16201243,-0.2851788,-0.2758103,-0.076128185,0.21607706,0.543756,-0.16950612,-0.18023376,-0.3299844,-0.11843745,0.14568958,0.07093663,-0.011101706,-0.4167404,0.039270382,0.14164917,-0.12083439,0.38141558,0.53349125,-0.30297366,-0.33264655,0.35746923,0.50254077,0.029985806,-0.17828162,0.2734622,-0.08185865,-0.44257426,-0.3043949,0.03559176,-0.016223771,0.46237436,-0.07311227,0.17770585,0.7702822,-0.14485796,-0.06556032,-0.14235003,-0.0134391105,0.15255901,-0.41102815,-0.18374112,0.24430867,-0.50414413,-0.045011222,-0.13744678,0.6089617,0.15009925,-0.7554614,0.3390971,-0.45135674,0.1619264,-0.16205989,0.67158014,0.9009019,0.42470768,0.18906315,0.8105059,-0.6534196,0.16404796,0.18719576,-0.40951127,0.11939939,-0.12384671,0.053244766,-0.64617294,0.110069625,0.19949387,-0.05363732,0.10967127,0.23213987,-0.4212539,-0.1595193,0.09933133,0.7251849,-0.39673552,-0.07239801,0.77667385,1.0556623,1.0524279,-7.90315e-05,1.3330438,0.4560041,-0.31965044,0.24665366,-0.5196028,-0.5413917,0.21374784,0.32750347,-0.18466775,0.50219876,-0.025313804,0.17542233,0.52488095,-0.34665087,0.17818354,-0.02110858,0.14138483,-0.14421916,-0.11733178,-0.5404917,-0.22585547,0.08414946,0.061354697,-0.15198621,0.30798832,-0.2764547,0.49995056,-0.007967898,1.4510733,0.17284189,0.061644267,-0.0041410285,0.4390102,0.2649161,-0.3198309,-0.077850185,0.25135994,0.42646328,-0.15155771,-0.5862002,0.020435708,-0.33265057,-0.5384445,-0.2486474,-0.3674806,0.040552173,-0.14282347,-0.4826672,-0.06089216,0.070087336,-0.39653772,0.4159279,-2.5346272,-0.29099575,-0.12409548,0.26551637,-0.13061425,-0.3386648,-0.32549372,-0.46914142,0.20249917,0.27798608,0.39379284,-0.6340432,0.4463379,0.43937078,-0.41723534,-0.08095288,-0.5744692,-0.10861411,-0.09567509,0.17769875,-0.056552052,0.009632913,0.0070168045,0.3778489,0.61007786,-0.044210978,-0.07415156,0.12747417,0.39016888,0.04038133,0.5096686,0.19192937,0.6113955,-0.24142237,-0.13270696,0.3378809,-0.36543414,0.1868403,0.04889923,0.19318792,0.3791466,-0.50587296,-0.91763115,-0.55184174,-0.27321994,1.113464,-0.38702753,-0.31744576,0.3997944,-0.40537685,-0.43314865,0.02355818,0.36834437,-0.07197732,-0.0027824193,-0.71425503,0.08985053,-0.004395834,-0.00037929416,-0.05758769,0.150288,-0.24831688,0.6487584,-0.18001962,0.46166563,0.39510438,0.17411557,-0.18617389,-0.42447954,0.10402435,0.7898225,0.30750683,0.12664284,-0.05883584,-0.14625672,-0.16834475,-0.12956344,0.23894444,0.4596577,0.7906087,0.0061290157,0.15420976,0.25557736,-0.078796215,0.05146479,-0.06734489,-0.35196057,-0.10612958,0.07804935,0.5523264,0.6306724,-0.3128466,0.35698658,-0.1293204,0.13216719,-0.1512653,-0.5991841,0.53097373,0.76091653,-0.13238117,-0.25279337,0.6076278,0.34036097,-0.44321275,0.41013977,-0.62009335,-0.071375124,0.62794393,-0.15654577,-0.40350288,-0.0018026318,-0.30659622,0.038487177,-1.022072,0.23915216,0.03609424,-0.65652466,-0.3527362,-0.1883925,-3.7811298,0.11953562,-0.23538277,-0.1696126,0.0319455,-0.01782794,0.23346128,-0.6082255,-0.6054278,0.1165599,0.08887141,0.51978457,-0.042200472,-0.0011393683,-0.33993337,-0.18839471,-0.30819255,0.18154733,0.059261013,0.26653537,0.03834973,-0.5013278,-0.069555,-0.2138522,-0.5913413,0.06680252,-0.53064024,-0.53379315,-0.17229082,-0.55110526,-0.34597677,0.74547905,-0.27445933,0.008235001,-0.22508056,-0.026178796,-0.2425711,0.4240764,0.08777833,0.295626,0.15694587,0.03845402,-0.08238479,-0.28734276,0.1120847,0.08051622,0.42266068,0.26060146,-0.24503542,0.25913033,0.61869633,0.8617899,0.023789834,0.6385249,0.47332922,-0.1608169,0.33015186,-0.30016342,-0.107256316,-0.70143825,-0.5273551,-0.4246929,-0.465875,-0.6075757,-0.06290507,-0.4675366,-0.9292541,0.39969474,0.04915489,0.20335445,-0.13185456,0.12970212,0.36393458,-0.10861229,0.011648844,-0.28313985,-0.2611057,-0.5057091,-0.3242759,-0.7199961,-0.6516067,0.43120602,1.1258029,-0.214404,0.041614454,0.011769573,-0.4113563,0.111550435,0.31089756,0.1759751,0.21793953,0.24157695,-0.2609166,-0.63870966,0.34650794,-0.010798867,-0.12610961,-0.74650985,-0.0058267456,0.7126433,-0.50328904,0.80353206,0.17054093,0.1392778,0.041092794,-0.5261386,-0.35605142,-0.024512377,-0.20565185,0.6776115,0.15612097,-0.70879775,0.35161087,0.22076964,-0.18350782,-0.5638118,0.5173193,-0.040223267,0.005036838,0.024541596,0.41540733,-0.028200379,-0.23233445,-0.048692457,0.34239325,-0.36176056,0.31186396,0.36336905,-0.03347344,0.46299165,-0.05771276,-0.20444049,-0.8206342,-0.18048629,-0.6381011,-0.20446798,0.07083206,0.12231321,0.22169839,0.12750043,-0.005314908,0.36793914,-0.29020357,0.10391965,0.103474006,-0.37846962,0.27274626,0.49245235,0.24092536,-0.41363123,0.488929,0.10859758,0.07446939,-0.15692835,0.18364178,0.50531834,0.27439088,0.41237083,-0.09976093,-0.17290553,0.100838915,0.65789896,0.27117503,0.30615616,0.2171201,-0.21083197,0.2735408,0.17893519,0.1023044,-0.10040104,-0.22667618,0.07595407,0.05792495,0.2788627,0.37249523,0.13417219,0.40105605,-0.21346307,-0.16689661,0.31166178,-0.022638354,-0.046143413,-1.2048464,0.3627147,0.31114197,0.7394987,0.57052326,0.0017330945,-0.08082856,0.47306594,-0.30014852,0.11965049,0.4653868,-0.08829826,-0.38997263,0.56836355,-0.54633194,0.56922245,-0.04394003,-0.023618864,0.13847063,0.20895155,0.3850295,0.7776225,-0.03373551,0.037743628,0.06275862,-0.19246884,0.076979004,-0.2929528,0.06653705,-0.5705108,-0.21765624,0.7648438,0.48205763,0.23900561,-0.20466425,-0.105602525,0.09206324,-0.14673994,0.0934075,-0.022685427,0.033356942,-0.053565234,-0.6376956,-0.3691546,0.4438848,-0.04824261,-0.052592296,0.16565159,-0.25800353,0.20185065,-0.18344077,-0.03380388,0.009109105,-0.6533691,-0.021852417,-0.20057131,-0.4489272,0.53220636,-0.34981677,0.26952437,0.09564626,0.079957716,-0.35722968,0.288531,-0.056034803,0.75608927,-0.030585472,-0.24289405,-0.2634893,0.08189563,0.33446518,-0.27172628,0.07102649,-0.4042449,0.06229506,-0.60633355,0.4966183,-0.020480508,-0.21836136,-0.034153167,-0.023089895,0.10898749,0.3034168,-0.3257311,-0.28816685,0.048134234,-0.009344356,-0.3025376,-0.22718313,-0.29722622,0.33279538,0.021128224,-0.010453292,0.0563835,-0.1167117,-0.016125577,0.29617754,0.09207344,0.20677996,0.30731192,-0.18189916,-0.40792313,0.054896094,0.19522552,0.20509063,0.15262404,-0.0850013,-0.18988666,-0.24899125,-0.2162483,0.20942256,-0.22744863,0.2778041,-0.042836897,-0.24965374,0.752494,0.113792494,1.3630698,0.027996982,-0.25705582,0.10203589,0.4660011,0.13004385,0.11243171,-0.23105018,0.883756,0.65430075,-0.09895071,-0.41954806,-0.49894142,-0.19910853,0.17451246,-0.247798,-0.3360319,-0.0095307855,-0.8440084,-0.24344008,0.17913465,0.07896496,0.3186062,0.017249892,0.04680603,0.04791048,0.080234446,0.31931338,-0.5381643,-0.0871356,0.18286106,0.35018516,0.07271552,0.19866845,-0.2643171,0.37786254,-0.65338266,0.29954076,-0.27086878,0.08552784,-0.21321963,-0.35516262,0.15793903,0.1850081,0.2406731,-0.22843811,-0.2594118,-0.30073974,0.7646495,0.1034557,0.26800677,0.6868804,-0.32221797,-0.089595675,0.2023095,0.33103684,1.2848145,-0.025374407,-0.044995356,0.46933815,-0.2788574,-0.6733106,0.15639833,-0.37532046,0.27222678,-0.09604178,-0.38739708,-0.45647255,0.19986346,0.078371525,-0.14122818,0.22471479,-0.47855443,-0.23259282,0.33080107,-0.30094284,-0.23569718,-0.2818063,0.2047662,0.64272964,-0.43791717,-0.29258204,0.12930365,0.20033345,-0.35184526,-0.49805704,0.10359385,-0.3934265,0.35772747,0.081224255,-0.5331527,-0.003388226,0.18186624,-0.3359682,0.14484224,0.5911918,-0.41203886,0.060434777,-0.26226038,-0.35016817,1.120888,-0.0029927704,0.31899193,-0.60717857,-0.40212324,-0.99476975,-0.50541127,0.3366396,0.1301654,-0.1725376,-0.6201709,0.08214407,0.07824906,0.03960812,0.087932505,-0.48612633,0.40904394,0.16540833,0.3302903,-0.036407556,-0.97198296,-0.10157789,0.25599238,-0.20569839,-0.5928052,0.6339942,-0.14509365,0.8437454,0.116139196,0.22579537,0.19854379,-0.6022374,0.22179005,-0.48882487,-0.09792396,-0.52616847,-0.035878457,106 +357,0.34543997,-0.2941275,-0.25848177,-0.37493414,-0.45511213,0.15300587,-0.20121346,0.25331953,0.10796021,-0.5966443,0.055922713,-0.19674502,-0.10312899,0.45823255,-0.37374958,-0.7514399,-0.18572783,-0.09288828,-0.4030128,0.40749818,-0.5569787,0.2953641,0.24540867,0.16920325,0.05021274,0.32484478,0.45051762,-0.23056194,-0.23747373,-0.23713753,-0.2865359,0.11145125,-0.63370377,0.33052868,-0.14070453,-0.41350633,0.28017107,-0.60837704,-0.11023974,-0.57009995,0.24250393,-0.8360686,0.3692293,-0.04484735,-0.26391152,0.017653711,0.28981873,0.25959817,-0.2974563,0.15431929,0.23039778,-0.25416753,0.07929381,-0.11376773,-0.29978594,-0.9158119,-0.71668226,0.11375228,-0.66356224,-0.2569166,-0.21644951,0.2441801,-0.38859978,-0.017174238,-0.17941096,0.34022695,-0.5351232,-0.29712367,0.07782112,-0.19770059,0.17325084,-0.33031946,-0.24348235,-0.21404208,0.04456144,-0.1738299,-0.16182074,0.4056658,0.39915594,0.500166,0.034771085,-0.21712694,-0.20637016,-0.11516278,0.16759805,0.5293291,-0.10319621,-0.5826129,-0.22883725,-0.029533103,0.18743503,0.28205305,0.021575125,-0.32059494,0.12770626,0.21634872,-0.3556688,0.20257603,0.3502082,-0.54923826,-0.23066576,0.32202414,0.36818144,-0.105189286,-0.18008934,0.13898964,0.0890116,-0.47055933,-0.32115263,0.37978205,-0.07849182,0.57330644,-0.18602172,0.15342411,0.86038154,-0.2990632,0.20135093,-0.19244958,-0.23935744,-0.22251663,-0.17084742,-0.13706157,0.16007711,-0.52239066,0.0036578837,-0.2971818,0.94994557,0.14917043,-0.97743255,0.29680118,-0.5764321,0.088240124,-0.31477335,0.6040271,0.5451173,0.4045054,0.31339929,0.8437194,-0.471422,0.090664096,0.08089996,-0.34917846,0.14640453,-0.3123693,-0.0010982975,-0.34044963,0.10063464,0.036100466,0.06531444,-0.1005231,0.60877603,-0.40995184,0.06485842,0.11557268,0.7070804,-0.38656855,0.016369885,0.8203325,1.0234402,1.0232126,0.15696608,1.4446043,0.37885264,-0.15358554,0.10782609,-0.21125872,-0.56869906,0.10179851,0.55112445,-0.012080818,0.23512796,0.062621735,0.12782748,0.43135652,-0.33483478,0.22374895,-0.13068415,0.29700437,-0.008530157,-0.065400295,-0.60724926,-0.4160791,0.20365003,-0.012575077,-0.11948828,0.27529427,-0.064299904,0.5706296,0.21611081,1.4684016,0.11930377,0.15892248,0.066753976,0.48334196,0.18736438,-0.046936333,0.1121716,0.12041581,0.20142734,-0.009455739,-0.6461848,-0.021800747,-0.32146364,-0.6090074,-0.30393553,-0.46876106,-0.08455928,-0.2571108,-0.4000907,-0.20756207,0.061276425,-0.339912,0.4932612,-2.2485008,-0.20769207,-0.25514776,0.22060008,-0.25054172,-0.32546955,-0.03446899,-0.4448928,0.3223862,0.5063038,0.4340539,-0.7487434,0.38213685,0.4490445,-0.2521062,-0.15552054,-0.81150776,-0.033886544,-0.25072688,0.3219366,0.044340633,-0.22566657,-0.29152653,0.17404608,0.7101537,-0.0037546668,0.101235844,0.010774978,0.40986982,0.11070586,0.65362984,0.116946034,0.47797444,-0.19997868,-0.065879546,0.30257225,-0.48902294,0.362356,0.35448423,0.14908503,0.375097,-0.6864886,-0.96104676,-0.8355649,-0.6914719,1.0406358,-0.32868353,-0.31835395,0.1760921,0.16986227,-0.25503975,-0.0806269,0.4771319,-0.27005965,0.15486406,-0.6649662,0.15297735,-0.0062577897,0.19343655,-0.06149379,0.12610462,-0.37196702,0.7274738,-0.17509119,0.53380394,0.35081226,0.13519147,-0.3428027,-0.369277,0.0047467607,1.0352484,0.4285836,0.14101776,-0.13252121,-0.30515203,-0.17531429,-0.24643724,0.21076496,0.39996216,0.83615154,0.107341036,0.007879819,0.4026754,-0.27088273,0.08076998,0.044790983,-0.33657676,0.06846193,0.17270096,0.6652972,0.40737793,-0.17794167,0.34813467,-0.24044804,0.4600821,-0.19062726,-0.35508147,0.300181,0.7924648,-0.016849106,-0.012665162,0.7409019,0.7589536,-0.37376305,0.49533466,-0.6851018,-0.4010213,0.6208821,-0.049195327,-0.4910602,-0.057531793,-0.37797174,0.23873904,-1.0260621,0.45453095,-0.0680322,-0.37797526,-0.6932101,-0.31977084,-3.4824798,0.10403198,-0.11463327,-0.1040935,0.021223119,-0.17064865,0.41983652,-0.7174902,-0.5941815,0.104879305,0.05607895,0.39478344,0.11620777,0.24517237,-0.43813413,-0.065544985,-0.4098758,0.26410517,0.048285358,0.2627879,-0.057403345,-0.39381617,0.14126392,-0.58731,-0.5204836,0.12148295,-0.525095,-0.65357304,-0.13273655,-0.4780819,-0.61816305,0.7926477,-0.38680023,-0.026715968,-0.117794394,-0.022441845,-0.31040388,0.40470168,0.35498327,0.2105488,0.08656724,0.109666534,-0.37277895,-0.41628435,0.34025833,0.0806411,0.44190148,0.3512937,-0.04407962,0.224298,0.7632229,0.57221127,0.19896589,0.75110465,0.16944747,-0.035965055,0.32616505,-0.33556932,-0.24334629,-0.71788853,-0.45135212,-0.09553491,-0.35005808,-0.51402694,-0.03928629,-0.40133205,-0.6710024,0.55034554,0.11572913,0.046000548,-0.2682452,0.24652307,0.2226478,-0.15248533,0.0073733414,-0.10967742,-0.15418012,-0.66988236,-0.5202763,-0.89916974,-0.58933073,0.091387674,1.2608442,0.07577324,-0.38483104,-0.017110338,-0.294212,0.10596454,-0.019603098,0.063340664,0.26497382,0.33922657,-0.10242014,-0.8992285,0.5258484,-0.0067628664,0.08965606,-0.28105035,-0.1731336,0.7508817,-0.74743885,0.4104565,0.47738615,0.33725792,0.21994601,-0.4835321,-0.34252363,0.026309123,-0.22200944,0.56293565,0.08402334,-0.6414453,0.5838739,0.14059035,-0.20628653,-0.70260286,0.5312201,-0.032414537,-0.007762415,0.1448354,0.3284471,0.24241187,-0.15125848,-0.17521615,0.29651946,-0.7013566,0.26377827,0.46595016,0.17897995,0.5280835,-0.15750296,-0.3136954,-0.6658002,-0.1730969,-0.44311914,-0.2853743,-0.038686804,-0.041954342,-0.0042874897,0.21315782,-0.17495535,0.35404196,-0.26053283,0.08712734,-0.10452598,-0.21975878,0.2352047,0.42825195,0.23423961,-0.45416757,0.6899241,0.13433133,0.11025429,-0.34669065,-0.04258124,0.3284897,0.46150595,0.14418952,-0.05148496,-0.2281532,0.2638028,0.76982623,0.290603,0.35911116,0.18453741,-0.18448928,0.4938405,0.19100608,0.15818466,0.1587756,-0.3084856,-0.061103422,0.14131704,-0.046373434,0.31318697,-0.036312968,0.3398695,-0.16586468,-0.07658188,0.2804655,0.35949513,-0.32903546,-0.94662774,0.24023044,0.19693176,0.5540339,0.7669362,-0.08011532,0.049080458,0.6450763,-0.510272,0.029122708,0.3353333,0.10175047,-0.54175335,0.7148785,-0.50239736,0.48606688,-0.30513462,0.037712537,-0.21844026,0.039268795,0.40022382,0.8656896,-0.016865727,0.16212405,-0.0754649,-0.21666625,0.25172928,-0.27974552,0.121278085,-0.448347,-0.19152904,0.64763564,0.16794603,0.29835728,-0.057272024,-0.011940773,0.07801217,-0.125318,0.4299675,-0.09589603,-0.1003936,0.106502675,-0.66155106,-0.39766693,0.6926893,-0.11688336,0.0372001,0.21022545,-0.5566004,0.3406816,-0.119574055,-0.11522194,0.091402575,-0.5374833,-0.007079267,-0.27789503,-0.56130874,0.2288462,-0.44301707,0.2489622,0.14480402,0.080221236,-0.2485434,-0.20623684,0.42920446,0.69817406,-0.012279087,-0.26622564,-0.23785369,-0.2309369,0.25557098,-0.37534395,-0.09050473,-0.32375616,0.2591011,-0.69281584,0.58273983,-0.15706323,-0.37454984,0.12741321,-0.1860409,-0.040375948,0.40754992,-0.2913756,-0.1467627,-0.063287474,0.219228,-0.06803916,-0.042351928,-0.42681578,0.36029574,-0.021233499,-0.068427436,-0.005282302,-0.2425421,0.028340826,0.54644424,-0.012301134,0.24483144,0.12465739,-0.054032188,-0.4683244,0.048409343,-0.2330061,0.23276637,0.052684106,0.016258478,-0.18696071,-0.10056551,-0.09259302,0.34200504,-0.20846495,0.18377066,0.0894679,-0.60181296,0.7207281,-0.09714778,1.2455083,0.09939004,-0.4914291,-0.16892883,0.5477559,-0.044086795,0.18043092,-0.3497457,0.9848665,0.60274875,-0.21842898,-0.29007497,-0.5903358,-0.24514458,0.3016581,-0.21727483,-0.26566145,-0.054632764,-0.7765202,-0.3223394,0.22477324,0.15739577,0.16779692,0.095164366,0.14178959,0.05932658,0.27158743,0.59887415,-0.47489682,0.028310461,0.3027666,0.24929537,0.15091947,0.19632737,-0.36197755,0.30545622,-0.71093756,0.4467816,-0.5165759,0.14220256,0.013888708,-0.31808963,0.1453969,0.15468648,0.36599442,-0.08960966,-0.47599643,-0.1609153,0.8880185,0.111891806,0.27188915,0.8363763,-0.28370672,0.1129206,0.0055354154,0.45487896,1.6683166,-0.16495797,-0.056036804,0.16921405,-0.21995592,-0.6277885,0.40520525,-0.5479329,-0.14494307,-0.06449362,-0.48529625,-0.47571823,0.32503095,0.34525457,-0.103369355,0.077270456,-0.35842445,-0.2524012,0.6124784,-0.36299917,-0.40326312,-0.36685476,0.444064,0.82331085,-0.44485644,-0.14050923,0.0440248,0.4134454,-0.33485028,-0.5528493,-0.04902621,-0.35524908,0.52108157,0.15344968,-0.30284008,0.112906516,0.1974047,-0.27744135,0.26290208,0.43481943,-0.3235475,0.05451652,-0.24282798,-0.0022708008,1.1413195,0.26756272,0.044098616,-0.80583286,-0.48544088,-0.87738425,-0.3920064,0.4116439,0.0985515,0.011293756,-0.28586382,-0.05286751,0.082066454,-0.035048056,0.13172172,-0.77219075,0.3676001,0.124101594,0.6042863,0.07485022,-0.7783009,-0.04080562,0.107283406,-0.043798823,-0.39601007,0.53726417,-0.17109215,0.79976493,0.12509131,0.05287671,-0.01354218,-0.4466785,0.38173717,-0.40565968,-0.3010684,-0.67516434,0.11870781,111 +358,0.35577178,-0.35061198,-0.581857,-0.07680813,-0.40700674,0.105794534,-0.2807362,0.36458564,0.28748584,-0.16005276,-0.3669886,-0.07792827,0.17025055,0.27466142,-0.091633484,-0.51578176,-0.05801334,0.19412264,-0.66464084,0.6119205,-0.51760375,0.28864792,-0.032157846,0.52283686,0.31385258,0.33195263,-0.0005795487,0.01059785,-0.30411083,-0.054056056,-0.121130824,0.33926505,-0.47953525,0.247857,-0.30918077,-0.19511001,-0.15264164,-0.55220693,-0.34535977,-0.7800183,0.1056683,-1.0203083,0.5469471,-0.23203966,-0.110184684,-0.072032996,0.28751722,0.31244177,-0.47377798,-0.03415819,0.27657083,-0.23854586,-0.31215587,-0.2278541,-0.14139059,-0.4162586,-0.44886097,-0.11891955,-0.5741228,-0.165665,-0.24767461,0.18029816,-0.2520832,-0.09256671,-0.08115382,0.37067983,-0.5498138,0.105974056,0.24582164,-0.20050637,0.111419514,-0.6288683,-0.1465692,-0.18845126,0.46874133,-0.03678366,-0.3969426,0.36516705,0.44220537,0.09595055,0.13030323,-0.19707844,-0.34632468,0.069115736,0.24109142,0.46057764,-0.01630342,-0.32967076,-0.21076706,0.084407814,0.43414918,0.29937962,0.13038184,-0.26510423,-0.18898165,-0.054421443,-0.122580275,0.6153841,0.50384337,-0.067679435,-0.17410254,0.3266684,0.5027332,0.5054059,-0.4334517,-0.14075884,0.002129443,-0.52108276,-0.085266076,0.16031705,0.0010778968,0.48789766,-0.13838065,0.04673525,0.89167225,-0.16323969,-0.13302569,0.31508276,0.24073805,-0.23644258,-0.19311938,-0.27011973,0.18390574,-0.5407604,-0.014135761,-0.13326767,0.52372587,0.20169513,-0.7533865,0.40467525,-0.49307278,0.050926436,-0.16038474,0.51790977,0.7955012,0.5310036,0.40123013,0.6221892,-0.078690685,0.21050881,0.013476849,-0.41827446,0.08451079,-0.2761389,-0.1483129,-0.5832488,-0.043200154,-0.27264622,-0.019877817,0.20225428,0.42026803,-0.361166,-0.109553084,0.08779424,0.7623271,-0.3124357,-0.23589721,0.8069394,1.0553629,0.87197745,0.06095278,1.0650114,0.24649374,-0.107160755,0.015458907,-0.30973977,-0.72946304,0.28898415,0.2407521,-0.4387968,0.33160755,0.040040705,-0.024271403,0.23492466,-0.38669652,0.0056737,0.119450055,0.18086131,0.24071766,-0.07520239,-0.44172314,-0.38197973,-0.13893203,0.119329736,0.077861354,0.23533347,-0.31972924,0.35936204,0.043195415,1.4356833,0.056910872,-0.20091733,-0.06188757,0.7054688,0.3460916,-0.12873419,-0.1089338,0.46144262,0.48305145,-0.017040376,-0.5694977,0.22414878,-0.26697475,-0.36336905,-0.076412424,-0.4904801,-0.24911211,-0.00651661,-0.5189867,-0.100152016,0.08178363,-0.18822648,0.4403912,-2.7517948,-0.17646578,-0.015355934,0.42275307,-0.111884825,-0.19479738,-0.24865416,-0.59189,0.21514288,0.08713324,0.60653704,-0.62766963,0.57885754,0.50076526,-0.5418505,-0.2110076,-0.7218704,-0.052167892,-0.003503676,0.49181595,-0.04377108,0.092614785,0.05321005,0.089221135,0.7378578,-0.017869966,0.19997944,0.61666757,0.40799403,0.062273,0.5997034,-0.049945056,0.5854985,-0.15963905,-0.17081718,0.16367438,-0.35582122,0.55889803,-0.027120935,0.07768544,0.75619036,-0.39702907,-0.93798226,-0.5477864,-0.17468296,1.0276498,-0.4948494,-0.41676864,0.11133034,-0.4677024,-0.30217668,0.0310218,0.66990423,-0.077135645,0.097203664,-0.6545579,-0.060820937,0.113793306,0.20469984,-0.00040395133,-0.028528992,-0.19263661,0.7716379,-0.0048383987,0.62109566,0.053518116,0.21278776,-0.28897673,-0.43839025,0.21739508,0.7442135,0.19961442,-0.028861357,-0.16202866,-0.32328078,-0.35712034,-0.11196573,0.024850415,0.69556344,0.45342308,-0.027130017,0.19381173,0.29302508,-0.0663626,-0.0438496,-0.33095986,-0.20824838,-0.046111327,0.2095671,0.5100926,0.95622885,-0.06058016,0.70804787,-0.20866744,0.27430505,0.040101774,-0.6312936,0.7055421,0.6998989,-0.14794485,-0.116146326,0.34964752,0.5562033,-0.3998291,0.37536457,-0.5274776,-0.21807727,0.5137508,-0.18592714,-0.37069935,0.28476295,-0.07530417,0.18134816,-0.73318034,0.37701267,-0.19313815,-0.4466211,-0.31109828,-0.0002962138,-2.7098699,0.08959295,-0.0035362542,-0.32145837,-0.4041904,-0.19819437,0.30166197,-0.629171,-0.5745178,0.071540356,0.17280409,0.85261565,-0.1873037,-0.018764164,-0.24901152,-0.35716504,-0.06377243,0.2087222,0.19052494,0.42634037,-0.2018687,-0.52468085,-0.1234498,-0.06435427,-0.57475036,0.101271436,-0.5898243,-0.46105337,-0.014090083,-0.5079103,-0.1517568,0.53751767,-0.46251655,-0.020026812,-0.13117643,0.13965093,-0.23254554,0.25855154,0.17807886,0.1775571,0.0019583765,0.033291373,0.37327638,-0.20282462,0.46740603,-0.036532678,0.25688756,0.0663575,0.20308854,0.3398381,0.61630857,0.58867466,-0.2871236,1.1383101,0.4249577,-0.1460568,0.17333505,-0.23714426,-0.5133599,-0.5319215,-0.15533666,0.013106014,-0.46972018,-0.30327946,0.077547945,-0.30843082,-1.0046445,0.6031534,0.07020173,0.20817815,-0.054892603,0.2133399,0.61056954,-0.21963169,0.08559183,-0.015659105,-0.18555102,-0.52780646,-0.29322723,-0.6170911,-0.46544474,-0.082923755,0.82450694,-0.35456234,0.045345556,-0.05688414,-0.5235845,0.14278148,0.1455097,-0.04248446,0.2744052,0.33358374,-0.081939146,-0.57146823,0.3680704,-0.23239182,-0.0738082,-0.5527762,0.21432939,0.6745171,-0.84667844,0.50963557,0.28764603,0.015404047,-0.34416565,-0.41490966,-0.15461086,-0.13802172,-0.13469858,0.4977872,0.23479995,-0.86771816,0.48885754,0.31202793,-0.4812873,-0.6289293,0.4675241,-0.14082623,-0.20243838,-0.16830103,0.2696642,0.06038064,-0.01281829,-0.28882852,0.23661341,-0.2893797,0.04780117,0.22048643,-0.1388325,0.32463005,-0.15700038,-0.1668506,-0.7604933,0.05218658,-0.2587944,-0.3185222,0.36522222,-0.038921572,0.1343293,0.02517828,0.25911316,0.2671733,-0.39236537,0.04560746,-0.10774145,-0.39988774,0.28110752,0.52323854,0.51863754,-0.29659277,0.4880083,0.14269409,-0.18971395,0.45934469,0.062473755,0.23627281,0.088691466,0.40987763,0.04542598,-0.19711657,0.3235245,0.843177,0.14385736,0.5075063,-0.010222278,-0.13720487,0.12532257,-0.017169122,0.3906119,-0.062207002,-0.5333193,0.018274311,-0.13683784,0.2562886,0.45650014,0.28938338,0.21987809,0.08273224,-0.33890978,0.07224871,0.15441859,0.22688426,-1.4309198,0.55075204,0.3151619,0.95118153,0.17399548,-0.0039783907,-0.095119916,0.8370625,-0.25394467,0.12144361,0.33144483,-0.07325802,-0.49482986,0.57611424,-0.68116057,0.57477206,-0.13989368,-0.027036889,0.27789092,0.047939513,0.47381255,0.9177565,-0.17487104,0.06385176,0.18603142,-0.2248982,0.016679686,-0.45856693,0.079684235,-0.57513326,-0.5059079,0.7387732,0.49446797,0.4637021,-0.18923748,0.07040797,0.004742124,-0.24634643,0.1948916,0.075217314,-0.05878345,0.02116595,-0.6869611,-0.044317313,0.59144133,-0.19786371,0.08327601,-0.17464268,-0.12906416,0.2341044,-0.25208193,0.091248974,-0.11881333,-0.7014392,-0.061124295,-0.32901716,-0.70924026,0.4793991,-0.09471917,0.06418559,0.29199645,-0.13097946,-0.2208221,0.6483436,0.23182227,0.82875025,0.00031867198,-0.18602057,-0.29898432,0.10015939,0.3097023,-0.1999568,-0.056502547,-0.46081087,0.0935659,-0.4499157,0.5713757,-0.22953796,-0.48500952,-0.09221946,-0.050716307,0.044443928,0.5911897,0.018966228,-0.2235903,0.0015317372,-0.21796726,-0.5902881,-0.1055641,-0.27146855,0.16956475,0.34047168,-0.1814766,-0.16140486,-0.281167,-0.068132505,0.5252529,-0.13633168,0.5806551,0.4460597,0.11531572,-0.08928683,-0.12141673,0.2578385,0.6547509,0.115053676,-0.10590152,-0.53319514,-0.17352745,-0.3466974,0.17465079,-0.08592167,0.2821655,0.08472158,-0.31871304,0.84772,-0.18948956,1.1613852,0.15017666,-0.31034565,0.23518346,0.45153576,-0.18577863,-0.0295219,-0.3209003,0.7521283,0.42436242,-0.20329706,-0.020420717,-0.5129396,-0.11776771,0.35096768,-0.39514393,-0.061719786,-0.016296135,-0.58123666,-0.27871925,0.18956788,0.1467292,0.17568144,-0.13366006,0.103333764,0.16911732,0.122221366,0.14667885,-0.6371502,-0.07242118,0.19121209,0.27330163,-0.22927162,0.16539618,-0.43660048,0.47832337,-0.53231674,0.24832916,-0.4269406,0.2449292,-0.21970923,-0.38099653,0.16866788,0.06456947,0.29900008,-0.42466927,-0.3378467,-0.46657786,0.6044801,0.0008809737,0.14328139,0.299679,-0.2660267,0.17047274,0.14302771,0.56685215,0.99666566,-0.3933188,-0.044514634,0.3991485,-0.50545865,-0.5220049,0.37413797,-0.54772705,0.1623893,-0.0023259562,-0.29606596,-0.6004472,0.29666784,0.17496188,0.33419353,0.06527939,-0.5877358,0.0319069,0.25428054,-0.14869586,-0.2574043,-0.24432337,0.20277934,0.49283674,-0.2891924,-0.32918,-0.009832059,0.10064142,-0.17218177,-0.29603335,0.05019949,-0.3503591,0.32223296,-0.17471187,-0.32878894,-0.08357777,0.089697786,-0.40892148,0.1270152,0.115061834,-0.39511117,0.14074811,-0.044878416,0.07471105,0.89973414,-0.29528365,-0.015274286,-0.6230807,-0.60057074,-0.76370096,-0.35159928,0.006907842,0.22213854,-0.16321369,-0.57416165,0.06872858,-0.086967595,-0.37701026,-0.04919086,-0.5926887,0.42988634,0.068559766,0.40913883,-0.13128532,-1.0393499,0.17409857,0.05633854,-0.28869724,-0.6954927,0.5302636,-0.22225554,0.83939135,0.101956025,0.03916645,0.018647585,-0.20031475,0.103176355,-0.3628662,-0.0023442549,-0.6404343,0.109055325,122 +359,0.37036964,-0.17160763,-0.37259245,-0.24221978,-0.40333787,0.17394914,-0.21055283,0.08995223,0.11133484,-0.5169774,0.04066423,-0.17116968,-0.15934436,0.35634518,-0.24791943,-0.75795,-0.12060162,0.16397874,-0.5429029,0.474272,-0.5612664,0.15080617,0.042655263,0.36170223,-0.06014525,0.25581917,0.2496913,-0.05923299,-0.20347871,-0.00026091933,-0.12508729,0.33396453,-0.79570335,0.48033443,-0.021588424,-0.23705043,0.015144229,-0.51827353,-0.21448596,-0.6020147,0.24678493,-0.7879159,0.54268384,-0.029734403,-0.2052897,0.015639832,0.2688796,0.22352359,-0.27225986,0.057785362,0.34999254,-0.22879712,-0.08040004,-0.11071289,-0.23845567,-0.64167243,-0.66278553,0.049659044,-0.71798503,-0.012729849,-0.092218645,0.3518024,-0.29612598,0.06289549,-0.2365683,0.52634704,-0.42033654,-0.098028556,0.21916378,-0.08094264,0.05540881,-0.3733077,-0.14059032,-0.17499714,0.25057942,-0.2536206,-0.27714786,0.19472902,0.41888466,0.55251724,0.016768707,-0.30520216,-0.155751,0.0007555229,0.11999582,0.488728,-0.10307411,-0.3250141,-0.37232146,0.031926032,0.14525568,0.24224053,0.037025128,-0.44188878,0.17662823,0.04953748,-0.32679063,0.4172187,0.3518587,-0.46724463,-0.3812669,0.3621252,0.39293745,-0.08191795,-0.14734285,0.16019203,0.11049109,-0.50565815,-0.1492729,0.38405797,-0.15605748,0.49231103,-0.17298014,0.079743065,0.7200141,-0.18478163,-0.023568843,-0.1223138,-0.25564826,-0.095003046,-0.3860838,-0.082752585,0.1408678,-0.5800423,-0.010185199,-0.23332584,0.7975205,0.031153986,-1.0382187,0.37108082,-0.4298986,0.025763439,-0.19305725,0.59662193,0.80306804,0.4272073,0.26488072,0.8106397,-0.52107704,0.08031887,-0.1372393,-0.31616,0.1478261,-0.16567858,0.22633801,-0.42503458,0.046202004,-0.17905952,-0.011782989,-0.25557575,0.35501966,-0.40605474,0.0023545602,0.10644779,0.6825095,-0.42328808,-0.18005295,0.8199162,1.1458429,0.9332495,0.28830943,1.471306,0.34160346,-0.069369346,0.1272018,-0.22268997,-0.6243554,0.25890592,0.36698756,0.065219104,0.21195926,0.10806227,0.19910209,0.4336989,-0.14223665,0.052968923,-0.105663426,0.3538196,0.035739403,-0.006770513,-0.44931236,-0.26705545,0.21411833,-0.15335989,0.049204256,0.2550545,-0.14505005,0.33636793,0.33349425,1.4383677,0.033801895,0.16927446,0.0065874457,0.3180313,0.14206521,-0.12085121,-0.05457737,0.23940979,0.21327175,-0.12248763,-0.648995,0.06578549,-0.21599229,-0.4447949,-0.3160255,-0.36028942,-0.035718523,-0.29888555,-0.480925,-0.13267511,0.08828872,-0.31283805,0.6349362,-2.5140364,-0.3894556,-0.11501946,0.26270083,-0.29516578,-0.356473,-0.12916474,-0.46697658,0.35975,0.33166102,0.28284425,-0.6796561,0.56774026,0.3054575,-0.32362482,-0.26448908,-0.74894035,-0.069978796,-0.23215948,0.29614213,-0.04705743,-0.33549756,-0.25242442,0.15593298,0.5291503,-0.06729339,0.020274801,0.107019626,0.5208971,0.21877395,0.6642147,0.09031411,0.521824,-0.27227384,-0.05870494,0.3653875,-0.42038247,0.2928609,0.2685069,0.16448188,0.408284,-0.5886777,-0.8070192,-0.82836217,-0.7382995,0.9446303,-0.4047753,-0.2105076,0.06616657,0.059033114,-0.2893338,0.046005685,0.41516426,-0.12232231,0.047710624,-0.76165116,0.080968775,-0.06328986,0.29855528,-0.07148067,0.12475647,-0.43170428,0.59522706,-0.18848102,0.5382635,0.40092158,0.26307732,-0.2743389,-0.4506429,0.017015452,1.0737995,0.2687338,0.09304675,-0.15760252,-0.2755706,-0.021163967,-0.021576775,0.10627265,0.5061831,0.49736443,0.013277029,0.035542462,0.5237764,-0.37520292,0.09808628,-0.004577543,-0.29023576,-0.07688914,0.17742251,0.49406034,0.513809,-0.25032088,0.4198276,-0.26752383,0.15674576,-0.15015398,-0.34228626,0.4998196,1.0024012,-0.10242052,-0.20999734,0.60290474,0.5649766,-0.32798734,0.35717773,-0.552157,-0.29603097,0.55219626,-0.10565627,-0.3984943,-0.12568133,-0.4027783,0.039932113,-1.0318393,0.31610557,-0.27839276,-0.45705488,-0.59816414,-0.21744862,-3.5775592,0.06678542,-0.07483896,-0.01560062,0.013882034,-0.17880118,0.45911306,-0.5909406,-0.6524396,0.14910081,-0.002299973,0.4953358,0.050221708,0.30591044,-0.4133019,-0.06433491,-0.23515932,0.29710886,0.22381917,0.21817096,0.03344788,-0.375769,0.20835792,-0.40850982,-0.42812327,0.087287866,-0.5967193,-0.51236236,-0.05247737,-0.68363476,-0.5380683,0.71846724,-0.51925737,-0.17517796,-0.20948961,0.04151261,-0.2037796,0.5263497,0.17739365,0.2683592,0.105033144,-0.06072435,-0.31283513,-0.30481246,0.27056843,0.06957082,0.24832547,0.49421996,-0.03055504,0.15934154,0.53907144,0.57263166,0.0872274,0.6545938,0.2607642,-0.1557221,0.2889878,-0.36957297,-0.23828979,-0.6969948,-0.32537797,-0.27922973,-0.48968616,-0.5329483,-0.060177617,-0.4121348,-0.70278484,0.49089614,0.041458406,0.034297347,-0.2063318,0.25112048,0.28572303,-0.22784317,0.12251113,-0.20475873,-0.15332231,-0.5233728,-0.6734108,-0.69258106,-0.61210567,0.14937837,1.406056,0.017321957,-0.2159517,-0.016308324,-0.23425405,0.059850607,0.09592778,0.12524305,0.33443165,0.5108324,-0.034196522,-0.6921993,0.31132886,-0.07398392,-0.052555587,-0.3386684,0.02202705,0.8610832,-0.75919193,0.7300442,0.3646051,0.24996276,0.22380635,-0.5731479,-0.2903697,0.107208885,-0.28850597,0.5542418,0.27198473,-0.6665068,0.48109767,0.22106102,-0.14275905,-0.7823299,0.47217852,0.14029703,-0.048299346,0.024726281,0.48600084,0.32331678,-0.021616718,-0.19400477,0.23106231,-0.6515614,0.16216706,0.30558178,0.051864676,0.46476406,-0.18070774,-0.20016415,-0.5673451,-0.2408396,-0.5607895,-0.3625761,0.04443643,-0.068813294,0.09832776,0.31066513,0.07793975,0.412018,-0.43774155,0.16038911,0.022141675,-0.20009017,0.10004992,0.5174616,0.26129696,-0.46156174,0.57634705,-0.046024956,0.100993566,-0.10351218,0.035707287,0.3256256,0.45841056,0.1641474,-0.10099939,-0.040150423,0.18681595,0.8449946,0.1709326,0.28696945,0.1801882,-0.13622776,0.43434116,0.07335242,0.17998348,-0.01463856,-0.2996776,-0.12771042,0.086336836,0.18417212,0.3724262,0.022947375,0.28056327,-0.15348163,-0.052735317,0.13634111,0.3320346,-0.21764798,-1.011928,0.28365153,0.19693406,0.6282025,0.6779663,-0.006923284,0.18204176,0.441188,-0.44386163,0.13467932,0.34487075,-0.017718827,-0.2732574,0.5996199,-0.449539,0.42233723,-0.2665424,0.009402424,-0.04319879,0.091668285,0.29049882,0.89671487,-0.09212238,0.0583376,0.0066038114,-0.08387186,0.09246056,-0.23072846,0.15143922,-0.43339327,-0.23181637,0.6824334,0.4060192,0.35950035,-0.36975667,-0.06508596,0.049691927,-0.14263071,0.103339925,-0.06914693,-0.27190265,0.22108759,-0.6469153,-0.35919556,0.6917009,-0.068176225,0.055730786,0.24640761,-0.41940567,0.27315357,-0.105366535,-0.09134083,0.031282995,-0.61666757,-0.14587416,-0.32929403,-0.34056565,0.20456788,-0.4795627,0.06714689,0.09379881,0.022761093,-0.27538973,0.11571287,0.4748077,0.6574978,0.10365408,-0.12815024,-0.35651916,-0.1425157,0.1982192,-0.27974886,-0.107701,-0.4126748,0.22593299,-0.59352547,0.58773804,-0.12320825,-0.313922,0.08843048,-0.02584212,0.09821315,0.52940184,-0.1763337,-0.06621075,0.03268836,0.06272734,-0.27484104,-0.0790667,-0.42009702,0.2669641,0.063043125,-0.04457221,0.05995253,-0.20928502,-0.19331875,0.46810606,0.19457534,0.19296603,0.20857069,0.04659656,-0.30342966,0.030340655,-0.009212502,0.37177214,0.067390755,-0.14636758,-0.16276467,-0.10813342,-0.13575359,0.40826246,-0.15412928,0.066539876,0.0017520998,-0.61308366,0.7532118,-0.030972734,1.1594833,0.12310754,-0.3857283,-0.061817877,0.40148106,-0.070855424,0.12645702,-0.38225704,0.866414,0.6033076,0.05788831,-0.24639344,-0.46298233,-0.32205826,0.16119362,-0.30909675,-0.190214,-0.07763011,-0.72013706,-0.2538425,0.2529827,0.19552489,-0.018440058,-0.02178185,-0.023496823,0.09817613,0.094439216,0.5019415,-0.5854592,0.14911485,0.28458866,0.38915125,0.15176924,0.28424406,-0.28488988,0.41284367,-0.71337783,0.22374582,-0.5359673,0.00547514,-0.06813667,-0.095089555,0.21096739,0.0481134,0.35527268,-0.023967573,-0.31609753,-0.2764725,0.81410515,0.07176508,0.2696455,0.97676384,-0.12903579,0.02010856,0.06227727,0.56214416,1.4596748,-0.19584885,0.026261922,0.14889479,-0.19890079,-0.60788167,0.24481201,-0.43976906,-0.010540647,0.13188218,-0.39860106,-0.38190326,0.31458443,0.10737107,0.16129495,0.07518067,-0.5267642,-0.06984393,0.5195416,-0.27444488,-0.22927403,-0.073272504,0.4342595,0.95586354,-0.3474129,-0.14813307,-0.032070395,0.44491476,-0.29934973,-0.51909214,0.048537593,-0.4118583,0.41375658,0.14370704,-0.2740641,0.010312687,0.22112557,-0.3603056,0.079874754,0.4171076,-0.2642481,0.10680102,-0.16445443,-0.16774371,1.1027324,0.20062761,0.071648166,-0.7251772,-0.5415131,-0.81493133,-0.2670739,0.21562563,0.1818508,-0.045006115,-0.34693027,-0.109893225,-0.13889186,-0.18616676,0.13407947,-0.6992988,0.32352972,0.14505324,0.58611786,0.013940222,-0.8736321,-0.046456628,0.20112726,-0.08911971,-0.46005297,0.54341453,-0.16795237,0.8976168,0.04229564,0.002875788,-0.10698138,-0.5025392,0.37538528,-0.5688752,-0.17388085,-0.82254225,-0.01794059,123 +360,0.39317602,-0.13057616,-0.54670084,-0.06681598,-0.30559683,-0.06771151,-0.14893177,0.41014037,0.23686765,-0.14797904,-0.12630293,-0.08530145,-0.08330811,0.39143676,-0.19384442,-0.7473468,-0.13396071,0.033133,-0.5021452,0.9238755,-0.39454183,0.3333227,-0.098996006,0.32079574,0.48002672,0.3720596,0.2375648,-0.017899973,-0.0028482378,-0.1410815,-0.16760571,0.25682062,-0.49234864,0.067070685,-0.12688588,-0.29080397,0.07282746,-0.2990215,-0.5822837,-0.6599851,0.47310987,-0.8963203,0.44731158,0.1625928,-0.33459803,0.24333945,-0.010511607,0.13390943,-0.41150412,-0.0684004,0.0673831,0.038645864,0.145401,-0.15077175,-0.38558394,-0.54127735,-0.48624358,-0.057574753,-0.56803083,-0.16275811,-0.4402046,-0.008177702,-0.3761932,-0.096949115,-0.21780077,0.25093168,-0.52545106,-0.1552378,0.28360143,-0.15876031,0.14943258,-0.6575843,-0.15758829,-0.14632437,0.062546015,-0.029313207,-0.061922997,0.510686,-0.07301078,0.3834503,-0.030171707,-0.14247029,-0.3415176,-0.17810264,0.17866161,0.3555212,-0.077226795,-0.46490332,-0.22863634,0.09059215,0.192188,0.2892482,0.0836268,-0.19149077,-0.12148688,0.024899611,-0.14780644,0.362895,0.46901768,-0.3126723,-0.3123863,0.3292594,0.3666441,0.38813767,-0.23895994,-0.072759315,-0.046993066,-0.46582842,-0.15068375,0.10352392,-0.31452018,0.7423168,-0.093779065,0.03842336,0.7074752,-0.08245761,0.28053516,-0.12825522,0.09488233,-0.297502,-0.21368183,-0.20801353,0.13725023,-0.416826,0.3685264,-0.14700815,0.8353137,0.2321173,-0.51776284,0.38612884,-0.52514035,0.22198704,-0.15262136,0.5034657,0.6431767,0.22709577,0.30631012,0.76966995,-0.36931083,0.14078914,-0.051084496,-0.37550852,0.17359778,-0.10884269,-0.096721336,-0.47265646,-0.021592293,0.0029587063,-0.11991065,-0.0041556614,0.49535814,-0.35922006,-0.07986593,0.07683505,0.76482373,-0.26658994,0.13771367,0.57513565,1.1375774,1.0869257,-0.032698784,1.1519125,0.20762447,-0.30745855,0.26186213,-0.24602602,-0.94711846,0.20089579,0.49104354,-0.080803975,0.42588228,0.004785759,-0.03891095,0.33172822,-0.41898298,0.070206665,-0.3008802,0.18534073,-0.029032618,-0.02907701,-0.41047066,-0.20960975,-0.11640567,0.19715178,0.024897764,0.4060051,-0.21318504,0.32051882,0.0055398643,1.6421107,-0.07010997,0.043207116,0.1321924,0.77540845,0.32259756,-0.028151205,0.06789174,0.4177842,0.4732292,0.061300363,-0.6949683,0.1081862,-0.4234814,-0.3659409,-0.11093404,-0.42430797,0.10831117,0.17879799,-0.42982846,-0.21616189,-0.055306714,-0.15042745,0.40545338,-2.6466222,-0.10578303,-0.13270295,0.17361178,-0.35654,-0.18570249,-0.052123252,-0.39478675,0.5209714,0.3216985,0.5686163,-0.52863044,0.18773666,0.5763791,-0.59152114,0.08833856,-0.49779803,-0.015154193,-0.1636492,0.6915008,-0.15873602,0.052689295,0.08962621,0.24407932,0.5218837,0.28687206,0.15537167,0.23162587,0.39589295,-0.06305932,0.39196703,-0.01823418,0.48386025,-0.23300219,-0.14125285,0.38876042,-0.20837048,0.5224889,-0.27883485,0.12738775,0.5477494,-0.5134774,-0.87176996,-0.36359334,-0.25282523,1.1716349,-0.49621797,-0.590978,0.3982766,-0.2815653,-0.071926676,-0.047343407,0.41817734,-0.2233009,-0.15384711,-0.7363363,0.1558381,-0.17220256,0.17495987,0.046572167,0.05055936,-0.20527425,0.7368156,0.17059827,0.40260276,0.19530924,0.14065664,-0.088792644,-0.46611783,0.1804458,0.60857296,0.45797938,0.07545068,-0.30957794,-0.31819013,-0.1448175,-0.21094432,0.22412987,0.48391867,0.6424464,-0.15345538,0.10145705,0.3231539,-0.098204486,-0.07894341,-0.13790163,-0.24978866,-0.11278653,0.07189865,0.57734054,0.82298964,-0.16863804,0.2632851,0.0073104883,0.3311805,-0.1284134,-0.48091057,0.6003036,1.0932513,-0.107375756,-0.21061976,0.65394837,0.6728109,-0.37565655,0.5624073,-0.67309606,-0.22853234,0.54796076,-0.13884875,-0.3605682,0.07438693,-0.50438446,0.0752658,-0.80770177,0.20065935,-0.15511136,-0.2602044,-0.6443349,-0.19239794,-3.3155677,0.072626844,-0.45941564,-0.22773156,-0.18532798,-0.085000336,0.26520362,-0.71135616,-0.6057915,0.17065348,0.06793789,0.71109265,-0.11748556,0.0968327,-0.23201077,-0.3146959,-0.44829777,0.11200038,0.15353653,0.4936269,-0.19308789,-0.4386649,-0.11964671,-0.22280666,-0.3268559,0.049553487,-0.527513,-0.34540135,-0.23983239,-0.49769133,0.0003635415,0.65819454,-0.124773756,-0.050673164,-0.065705694,-0.03570312,-0.2572682,0.0616818,0.30162138,0.17932566,0.034784604,0.124444954,-0.015591974,-0.3982887,0.38216615,-0.0008510607,0.43992653,0.2535679,-0.050619334,-0.0049673063,0.54254967,0.38710052,-0.2457687,0.8546905,0.5652474,-0.2142285,0.28857747,-0.23901916,-0.29008132,-0.7110959,-0.3294664,-0.13222077,-0.3280568,-0.6230651,-0.23281932,-0.4079213,-0.82751137,0.43369213,-0.017842004,0.44990668,-0.07503023,-0.062234852,0.4452307,-0.1141954,-0.11403327,-0.021459749,-0.13978654,-0.5868831,-0.24227937,-0.6420168,-0.37140974,0.24986298,0.74841696,-0.24773176,-0.44024208,0.16504571,-0.5007082,0.044134934,0.056869514,0.1342927,0.18508093,0.485702,0.2416739,-0.7267154,0.70881194,0.06838801,-0.014520534,-0.53203875,0.09348871,0.33884445,-0.64484745,0.55463064,0.30642447,0.08886751,-0.035612684,-0.5771089,-0.3223416,-0.022829818,-0.0916379,0.31671807,0.2850887,-0.7096534,0.4677966,0.17002185,-0.32278517,-0.66952366,0.5567982,-0.15563278,-0.29829794,-0.08533873,0.25645226,-0.00965987,0.033926554,0.02199637,0.35190606,-0.3365013,0.103043295,0.37091374,-0.10783397,0.21125211,-0.11793554,-0.210237,-0.6149518,0.20147668,-0.3498853,-0.23057161,0.36764044,0.014908769,-0.04673336,-0.02697553,0.21369673,0.40243536,-0.1780118,0.22345228,-0.045621514,-0.19292529,0.618581,0.47663245,0.6998218,-0.5564875,0.6801649,0.011268769,-0.01287583,0.30119547,0.1483548,0.27959797,0.02395575,0.43976858,0.07967961,-0.156511,0.19243036,0.8553823,0.25260773,0.37512782,0.081650004,-0.08949949,0.37575513,0.15321983,0.09544505,0.05048849,-0.5708256,-0.1450526,-0.11540127,0.19710946,0.4594291,0.04254564,0.32516065,-0.1354574,-0.13376267,0.104663745,0.19902216,0.0002395766,-1.2310208,0.24930508,0.21570961,0.60774153,0.5909261,-0.05127061,-0.020988466,0.6896225,-0.23050311,-0.043197837,0.29772776,0.106399894,-0.6560009,0.50289303,-0.45552498,0.6061873,0.07918567,0.048918936,0.043567657,0.18072,0.36784694,0.74859625,-0.32836443,-0.082361005,0.012686001,-0.60962063,0.16113456,-0.2896261,-0.046256524,-0.439613,-0.36050144,0.50936776,0.5938563,0.21535428,-0.15485367,-0.051919002,-0.10403456,-0.15035698,0.19577043,0.06930696,0.054006778,-0.07026295,-0.64986175,-0.26584062,0.4246869,-0.16231035,0.13600148,-0.18068516,-0.18776147,0.34748203,-0.180865,0.015395398,0.008179648,-0.7787053,0.19416854,-0.2833453,-0.5215116,0.34130844,-0.20508496,0.4043847,0.21526217,-0.09304105,-0.37467018,0.26365873,-0.09158581,0.77103746,-0.15215635,-0.2293603,-0.3231578,-0.12975867,0.25309017,-0.22480024,0.0032654405,-0.24163716,0.035531826,-0.5709788,0.4355003,-0.11520735,-0.1975957,-0.23558089,-0.29647756,-0.073781855,0.5661239,-0.024252517,-0.23087923,-0.305417,-0.04991638,-0.45816204,-0.31141186,-0.18865916,0.1473762,0.21572757,-0.048677824,-0.16935529,-0.16842577,0.15553816,0.4295123,-0.16849594,0.33106083,0.31820568,0.08821342,-0.32295972,-0.2057284,0.28379208,0.5811257,-0.0069331187,0.12992097,-0.12850298,-0.444247,-0.4951873,0.2635416,-0.15366258,0.34695974,0.20976886,-0.38516623,0.52820647,0.0807643,0.97453344,-0.07695048,-0.2959724,0.12144884,0.7281107,-0.01759269,-0.1208872,-0.14814404,0.9024015,0.6463683,-0.17119853,-0.23582448,-0.3849866,0.079324916,0.083005376,-0.24655244,-0.019533059,0.012564637,-0.46344918,-0.049094327,0.1458547,0.33099103,0.30566767,-0.0844867,-0.11550591,0.023955302,0.267734,0.3993407,-0.3654762,-0.44265914,0.39591005,-0.14565828,0.18422438,0.27376732,-0.43619466,0.37714022,-0.5339162,0.07253613,-0.2797865,0.23622322,-0.2641296,-0.27558056,0.17855443,-0.06678308,0.44015127,-0.4134531,-0.25623608,-0.34315887,0.513083,0.12423241,0.263592,0.58228624,-0.28619537,0.16408803,-0.026838358,0.5601225,0.9572436,-0.04845274,-0.15130045,0.18116443,-0.459148,-0.7560137,0.21292965,-0.4645987,0.19819064,-0.0051862285,-0.21420811,-0.61212236,0.26837078,-0.011170839,0.028441366,0.029156795,-0.6360782,-0.37332454,0.053792294,-0.19946194,-0.2803832,-0.44294938,-0.11212725,0.6014815,-0.2703174,-0.24155031,0.2020459,0.04545317,-0.19997837,-0.59005696,0.070301905,-0.2627776,0.23684347,0.15156566,-0.39617404,0.0071672434,0.21099307,-0.44595054,0.25728258,0.11508208,-0.41401786,-0.058255333,-0.25955698,0.08634738,1.1711076,-0.3342606,0.012418151,-0.59940296,-0.5486292,-0.8895871,-0.48691255,0.621808,-0.053191874,0.12893741,-0.62511253,0.0587508,-0.06800161,0.20294416,-0.12643123,-0.4269045,0.518091,0.07185248,0.33314815,-0.02687396,-0.73971,0.1626796,0.011560296,-0.10355314,-0.61717653,0.6192073,-0.22075415,0.7722875,0.1025464,0.14095595,0.10878764,-0.5284248,0.12258778,-0.23629348,-0.22775531,-0.56245124,0.15886416,124 +361,0.40163043,-0.28675345,-0.32700825,-0.107490554,-0.0931281,-0.012596705,-0.16002919,0.38209435,0.13044454,-0.405431,0.036208067,-0.2926441,-0.007911801,0.18238291,-0.15412793,-0.43654636,0.022950556,0.042963922,-0.529412,0.61685795,-0.2965123,0.10613023,0.04430202,0.30353504,0.016042974,0.36718947,0.042296458,-0.22745192,0.015370105,-0.24252796,-0.09990815,0.089722455,-0.58491546,0.32306337,-0.040943537,-0.09678543,-0.029997375,-0.57486427,-0.50551736,-0.723834,0.2165076,-0.82940227,0.41710377,0.02049866,-0.23554364,0.1938035,0.2998186,0.37845197,-0.20847437,-0.043958485,0.33486512,-0.05450297,-0.008390631,-0.13113408,-0.011280255,-0.4220709,-0.51902217,-0.051258225,-0.33256993,-0.29525632,-0.31167722,0.1793717,-0.28582555,-0.075707614,-0.0071428865,0.5044804,-0.40752044,0.07191469,0.30416316,-0.16442367,0.54178816,-0.59213084,-0.11254698,-0.09372369,0.38052836,-0.19669755,-0.21144895,0.2680285,0.30521205,0.2700769,-0.04700532,-0.09892001,-0.18983667,-0.09261037,0.25021893,0.57909966,-0.21784045,-0.3776135,-0.03633299,-0.068296954,0.0035068542,0.14808336,0.062290244,-0.5131453,-0.11784574,0.03014077,-0.23747303,0.29315117,0.490684,-0.15399234,-0.18012115,0.35263103,0.47815475,0.18673679,-0.13781136,-0.0107803,0.0997073,-0.41851503,-0.12184538,0.12220959,-0.09710496,0.36473995,-0.07048882,0.32940885,0.7600317,-0.062722854,0.07015517,-0.056529462,-0.05464532,-0.13721938,-0.18516397,-0.10180295,0.15520637,-0.46060044,0.14982831,-0.037089195,0.63835526,0.22668162,-0.72797734,0.33926743,-0.5713281,0.13608234,-0.10957216,0.44092384,0.6587195,0.38382322,0.31486696,0.6463563,-0.47697416,0.059314985,-0.064705454,-0.51329577,0.17328325,-0.23624751,0.025427077,-0.51761216,-0.17024067,0.12848258,-0.014966437,-0.06414972,0.3177448,-0.6192412,0.0233544,0.089433506,0.9218038,-0.2074159,0.016524447,0.64412075,0.9456824,0.77112544,0.17720537,1.0265709,0.1634935,-0.22647789,0.3512058,-0.24234676,-0.5967583,0.247242,0.45436546,0.08476368,0.10519971,0.11882599,0.04043036,0.3812256,-0.39286473,0.1273251,-0.17232774,0.09184338,0.14916936,-0.28324178,-0.29115763,-0.28032836,-0.16498923,0.033852253,-0.018438471,0.116476454,-0.23326275,0.2564023,0.08847218,1.7339834,-0.081463456,0.117109194,0.085432515,0.38341156,0.15055707,-0.2594804,-0.1266611,0.30407318,0.4002259,0.35469246,-0.48799834,0.2515471,-0.099697195,-0.42138737,-0.1042441,-0.3259293,-0.17287333,-0.016017279,-0.45705852,-0.11558704,-0.054665696,-0.37917152,0.4774651,-3.064685,-0.072138116,-0.112224154,0.34919873,-0.24640666,-0.26535553,-0.04403607,-0.44352198,0.4219664,0.3608801,0.40188956,-0.64325875,0.33407983,0.3516148,-0.54079586,-0.14331159,-0.55512273,-0.11184315,-0.038623624,0.366613,0.0901471,0.09186065,0.09355692,0.18247686,0.4113012,-0.036786098,0.0955082,0.2812799,0.39894167,0.052387696,0.63863647,-0.04171323,0.3339898,-0.0956279,-0.1359326,0.30040178,-0.24467818,0.16824889,-0.06294043,0.15777586,0.460009,-0.3973589,-0.8265012,-0.8160594,-0.40729308,0.99109715,-0.15902558,-0.33479568,0.36257368,-0.22439824,-0.27708232,-0.05312821,0.6232353,0.0038933414,0.14151545,-0.80978715,0.01684154,-0.18344508,0.18982793,0.018127581,-0.2641282,-0.6043247,0.7139038,-0.01287932,0.5578553,0.24722287,0.021289451,-0.26552203,-0.39729053,0.07177031,0.8380422,0.36777332,0.0824015,-0.079256244,-0.1306871,-0.39190373,-0.25890478,0.09323878,0.5603198,0.61318153,-0.048093837,0.19661748,0.2622657,-0.046504267,0.10177673,-0.06451594,-0.22366844,-0.068893954,-0.095513366,0.5635368,0.44810534,-0.054027356,0.45863873,-0.06669044,0.26765677,-0.10556994,-0.36807892,0.44757563,1.047561,-0.08816471,-0.20175815,0.36795846,0.55508983,-0.088556066,0.2834272,-0.49843946,-0.21906707,0.42270353,-0.16024034,-0.523226,0.34050703,-0.33758482,0.10880114,-0.76211464,0.30068088,-0.3276902,-0.6489849,-0.5104368,-0.17214622,-3.6218054,0.21446005,-0.2689076,-0.29990688,-0.113421865,-0.07943375,0.3086655,-0.5809511,-0.3770301,0.16299318,0.020577775,0.5993889,-0.09141945,0.011424397,-0.25053743,-0.10111987,-0.2656401,0.18204309,0.09190949,0.27226672,-0.107714675,-0.29641256,-0.13045995,-0.09038858,-0.3806784,0.022001395,-0.62893486,-0.5521101,-0.21308152,-0.43392086,-0.25702447,0.6747175,-0.35253972,0.041235346,-0.15280536,-0.033244316,-0.25890118,0.4493297,0.1644841,0.114769265,-0.07438177,-0.04793615,-0.09880751,-0.31761426,0.36245772,0.179701,0.3320492,0.2693605,-0.08595936,0.30633503,0.46383002,0.5093259,-0.17454697,0.80883497,0.34070235,-0.09863161,0.26511872,-0.31527543,-0.23475692,-0.45787293,-0.2848692,0.11242478,-0.35760212,-0.5696545,-0.10682865,-0.33651084,-0.63395786,0.42840084,0.0036370498,-0.02485413,0.01942712,0.1296328,0.4389834,-0.21194541,-0.023857465,-0.003922552,-0.13236918,-0.5982191,-0.13803901,-0.46740392,-0.56422293,0.17604508,0.89427185,-0.1943798,0.03704593,0.09665267,-0.2866417,-0.050739236,0.04081844,-0.06317274,0.2289869,0.25515482,-0.15234397,-0.6737583,0.5361648,-0.28015366,-0.25127634,-0.6101907,0.3961997,0.5938387,-0.57234305,0.5632094,0.1805084,0.11644971,-0.15491308,-0.3772796,-0.11484831,-0.14664671,-0.32288042,0.26502043,0.047527917,-0.7325534,0.33555907,0.35238847,-0.24383442,-0.562437,0.5500224,-0.0156102395,-0.2004498,0.09275496,0.2191831,0.1141882,-0.019002499,-0.26833063,0.3586981,-0.44833127,0.29475847,0.24043664,-0.035007644,0.2652306,-0.07399305,-0.07708834,-0.5871571,0.013418181,-0.3877525,-0.308077,0.3042949,0.12401388,0.12692387,0.26532617,0.032064218,0.3020288,-0.20565997,0.0746467,-0.049349565,-0.22975121,0.16712753,0.40218097,0.4372823,-0.45182467,0.5937029,0.08255307,-0.04349162,-0.017528176,0.16557445,0.3799943,0.2437042,0.46916205,-0.29745236,-0.19503531,0.34478292,0.90616375,0.14280179,0.556476,-0.01208359,-0.05381575,0.17722972,0.08998372,0.15657473,0.08817853,-0.68921196,0.18523486,-0.2694864,0.21489565,0.48920852,0.1028948,0.20364778,-0.08708368,-0.45877647,-0.040693242,0.32966003,0.08421629,-1.1548699,0.50695276,0.3006943,0.77628094,0.44873044,-0.08034559,0.04331385,0.7173959,-0.086935826,0.12260568,0.21772207,-0.004409888,-0.56303173,0.49374682,-0.8834214,0.38011998,0.01705931,-0.10952539,0.0847375,-0.15316379,0.30587295,0.675021,-0.10158687,0.13609563,-0.025102705,-0.24278805,0.23068775,-0.37018648,0.1249918,-0.4678696,-0.3757947,0.5942129,0.6211799,0.300803,-0.073109865,0.123921074,0.032684922,-0.11148421,0.15586598,0.08425005,0.023832964,0.022523237,-0.76000977,-0.17629647,0.5376771,-0.21416983,0.29257995,0.040167447,-0.18995534,0.29002506,-0.14968379,0.040665235,-0.0684817,-0.6320612,0.102622375,-0.21397957,-0.30049866,0.4790004,-0.14681694,0.2869765,0.2353494,0.04785661,-0.07006272,0.53522074,0.11875309,0.8306548,0.0081187105,-0.14282452,-0.51036143,0.06492966,0.088596664,-0.21862653,-0.18854935,-0.35160235,0.021680875,-0.6378549,0.3505719,0.052367706,-0.36898306,0.1550809,-0.09403692,0.045653548,0.5967733,-0.17396395,-0.14468786,0.03174641,-0.15378669,-0.13762137,-0.12146255,-0.09165333,0.32213968,0.27380657,0.10060293,-0.0083109755,-0.040966522,-0.31475347,0.30623367,0.14064528,0.56123745,0.335153,0.04105666,-0.19001982,-0.13989653,0.17352448,0.43826744,0.06616225,0.033913914,-0.20293696,-0.5450781,-0.4250551,0.03754763,-0.024278412,0.46546477,0.1699409,-0.16218781,0.6014352,-0.19848402,1.0619986,0.011965996,-0.31458005,0.1267444,0.37635717,-0.031130973,-0.09895512,-0.39748353,0.7862783,0.5880857,-0.041469056,-0.12802535,-0.21402285,-0.15597272,0.24310498,-0.2575456,-0.09727507,0.07422267,-0.7298528,-0.29433718,0.10411725,0.2586928,0.19271326,-0.10189198,-0.101759516,0.19966817,-0.14295629,0.13544728,-0.5142275,-0.17236778,0.27011842,0.2886764,-0.08388012,0.009467674,-0.44349337,0.5026532,-0.43424645,0.11009853,-0.3333922,0.17473507,-0.19968805,-0.25696278,0.18573262,-0.08149905,0.4215235,-0.0956445,-0.25926638,-0.17142533,0.52562314,0.26145545,0.18483172,0.5442653,-0.2601301,0.09347771,0.07969298,0.5754388,0.85334635,-0.4607621,0.08604427,0.3852241,-0.41577765,-0.43791634,0.29682928,-0.23607959,0.21590365,0.054458845,-0.16320495,-0.27574825,0.26443738,0.2998349,0.033700798,-0.0871075,-0.66309345,-0.20342483,0.18226875,-0.35713145,-0.25993022,-0.4430322,0.3437378,0.61414295,-0.30101278,-0.22772594,0.12618646,0.17253406,-0.15302351,-0.5515903,-0.08338662,-0.31104895,0.25368258,-0.034877304,-0.32636335,-0.16435935,-0.024540389,-0.37789965,0.3001991,-0.09238219,-0.35402533,0.11664617,-0.22213091,-0.22494657,0.88043493,-0.21037224,-0.09155432,-0.6923687,-0.36404246,-0.6075212,-0.3663128,0.330044,0.14591372,0.020408574,-0.3590253,-0.0841097,0.0073694075,0.028542118,-0.15675971,-0.37329417,0.37938595,0.018359492,0.46016088,-0.16389999,-0.8278085,0.27629846,0.15910587,-0.083628945,-0.73213434,0.5214941,-0.122147694,0.65686715,0.05292728,0.111009635,0.30406672,-0.27360776,-0.1307486,-0.26602212,-0.2637251,-0.83238155,0.13995062,125 +362,0.40297148,-0.12230662,-0.5163159,-0.23084548,-0.26727897,0.21856275,-0.32812446,0.17593704,0.2423186,-0.43805364,0.0507733,-0.16650067,-0.13659951,0.31917205,-0.25376397,-0.6996592,-0.07623414,0.016197337,-0.5153574,0.28869072,-0.53820175,0.27842075,-0.0596851,0.3915924,-0.003308968,0.3156853,0.15966494,-0.04367538,-0.07180701,-0.13729236,-0.070566244,0.041180287,-0.64537627,0.18381026,-0.101606436,-0.38954487,-0.036023296,-0.54263675,-0.23465191,-0.6703927,0.49437305,-0.9712042,0.57795036,-0.089387074,-0.30762824,-0.06093711,0.19911702,0.24719413,-0.28640366,0.24665284,0.31271896,-0.12555458,0.035580676,-0.060190734,-0.55718243,-0.7330319,-0.6657668,0.0628486,-0.580727,-0.09834479,-0.054986306,0.3520289,-0.18284504,0.13582279,-0.17561662,0.16169116,-0.43304586,-0.123223856,0.2407239,-0.16857395,0.19949171,-0.44201192,-0.1910213,-0.17086625,0.21259464,-0.11430432,-0.21457508,0.17997505,0.38612548,0.6870665,-0.024280295,-0.14737153,-0.2845342,-0.10755413,0.034753017,0.60616606,-0.050390694,-0.2971739,-0.47197506,-0.20610635,0.33586344,0.32074437,0.13495812,-0.33111286,0.13545316,0.02403835,-0.2810495,0.40409532,0.5148155,-0.493191,-0.318819,0.48938015,0.53289354,0.022268908,-0.21186654,0.25015107,0.15563165,-0.49449232,-0.3469899,0.2517882,-0.025924345,0.42659834,-0.096126266,0.2714185,0.7737547,-0.10185198,0.06318965,-0.17656626,-0.16790724,-0.30629477,-0.35048863,-0.19949718,0.042408697,-0.32220936,0.034453,-0.12471723,0.671037,0.10888366,-0.8724097,0.4361382,-0.63513076,0.08640867,-0.11473518,0.63210064,0.7590102,0.3747101,0.25753435,0.94364643,-0.46909168,0.08257049,0.10728971,-0.22818477,0.10135621,-0.21177892,0.113989435,-0.37555528,0.16111001,0.15776637,-0.11638612,-0.025381258,0.6488972,-0.29662278,0.028133735,0.06899137,0.7119345,-0.361391,-0.06342526,0.8461834,1.0986797,0.97611773,0.14339915,1.5262415,0.39948234,-0.11138095,0.057638872,-0.42637157,-0.65998375,0.13581243,0.4012647,0.017648509,0.42743307,0.15696672,0.1079153,0.4923851,-0.34545177,0.10234291,0.06638496,0.052449353,0.11262315,-0.099361,-0.39805055,-0.08475773,0.08652936,-0.0044993586,0.23097095,0.2416177,-0.17642231,0.49549994,0.21434312,1.463101,-0.03208252,0.17987569,0.08731715,0.45213708,0.16433176,-0.20483755,0.03912241,0.21449865,0.2780774,-0.15704593,-0.6024205,0.050166905,-0.1948301,-0.52966344,-0.3189897,-0.25313112,-0.2579777,-0.29629132,-0.3817357,-0.20473619,-0.061843276,-0.29664707,0.46762082,-2.3987525,-0.3288722,-0.21495493,0.33562082,-0.12114835,-0.38194466,-0.2775435,-0.5021271,0.3603842,0.4671697,0.2212797,-0.6197276,0.6140088,0.48344103,-0.27911928,-0.09057832,-0.74581516,0.113409825,-0.20448811,0.25695592,-0.05656186,-0.30229396,-0.2986254,0.30581552,0.47202945,0.14405409,0.0032125541,0.13372687,0.63218355,0.012571613,0.5899665,0.0044443947,0.6095063,-0.2730903,-0.10124046,0.45305318,-0.56694674,0.38290888,0.04332944,0.21897317,0.5181474,-0.58266705,-0.87345535,-0.79650444,-0.61373097,0.9429204,-0.23009536,-0.40125734,0.22988603,-0.17934619,-0.5885223,-0.026315084,0.68992954,-0.28868276,-0.022436095,-0.8211074,-0.06976681,-0.21022598,0.32171673,-0.049917493,0.08776996,-0.44997516,0.67885906,-0.14833413,0.6019169,0.3711259,0.12636685,-0.22559035,-0.4815266,0.06541543,0.8680034,0.52342516,0.14738421,-0.11210876,-0.20045148,-0.17825042,-0.20826425,0.12635641,0.4797906,0.5699148,0.031325035,0.07155012,0.42334256,-0.24015813,-0.05716807,-0.047189955,-0.19514777,-0.03570626,0.06600822,0.62094694,0.6732294,-0.29700533,0.21710314,-0.33632493,0.28576323,-0.33147973,-0.4073346,0.45467454,0.49512488,-0.10727652,-0.20168872,0.67088014,0.56642,-0.43817067,0.42573085,-0.7555505,-0.33425775,0.397484,0.1038099,-0.41365147,0.11804483,-0.40598866,0.1523795,-1.1177284,0.20339449,-0.029494056,-0.42771047,-0.7209185,-0.43438867,-3.5742953,0.18455745,-0.046225183,-0.12333817,-0.09779607,-0.17619117,0.47263083,-0.5139769,-0.8136439,0.12865749,0.005314482,0.5698657,0.03401798,0.31186906,-0.34419915,0.017174738,-0.36319566,0.21810235,0.15726061,0.3984584,0.0035936919,-0.39257932,0.05224822,-0.41430897,-0.45621613,-0.13535999,-0.57157725,-0.5299911,-0.11811038,-0.56011766,-0.28354135,0.8002164,-0.39163116,-0.063026614,-0.31148526,-0.14198457,-0.31124845,0.5294729,0.17444468,0.12021493,0.05906817,0.0017315088,-0.23304088,-0.28047147,0.23668984,0.011745455,0.21458973,0.4143166,-0.20588835,0.24730948,0.4874224,0.62137955,0.01821976,0.7877846,0.26622266,-0.010186391,0.42798144,-0.24190034,-0.1842356,-0.622837,-0.39376953,-0.10634308,-0.48079962,-0.6050523,-0.23312415,-0.41829988,-0.78990203,0.41528687,0.06174457,-0.033523116,-0.08939024,0.16957624,0.26911083,-0.12636997,0.037196405,0.058107357,-0.20548092,-0.47164196,-0.6350676,-0.62853765,-0.61727804,0.25002423,1.3239918,0.09439557,-0.24930058,0.1475824,-0.39860195,-0.028509865,0.17002784,0.23147535,0.07458048,0.44251403,-0.17022459,-0.64630514,0.38846773,-0.21590984,-0.10712315,-0.53729457,-0.19171773,0.8715854,-0.70153874,0.51135033,0.40862635,0.2579616,-0.015545641,-0.5748568,-0.1952254,0.060676597,-0.30676574,0.54325634,0.29222655,-0.63378865,0.5842802,0.04779697,-0.035965227,-0.7075065,0.5594869,-0.025854824,0.013532451,0.10442911,0.27517223,0.09276436,-0.050993435,-0.34116295,0.36683634,-0.4777973,0.21686646,0.37983638,0.15185782,0.6482572,-0.21132867,-0.14574231,-0.62567616,-0.23098943,-0.47083196,-0.24224336,0.06272592,-0.14649422,0.22820212,0.14977233,0.09551644,0.40918347,-0.32986948,0.16233878,-0.053482927,-0.21916847,0.106086686,0.40867153,0.4284943,-0.57970226,0.669858,0.13171881,0.014403151,-0.18539627,0.07032852,0.4641676,0.33162647,0.37176278,0.043855228,-0.16827385,0.048006706,0.77808905,0.35554352,0.2849442,0.35487053,-0.25746575,0.42688257,0.15469839,0.093077935,-0.14796326,-0.47748938,-0.0041571343,0.013173052,0.1913333,0.29445818,0.08355533,0.40040046,-0.21577391,-0.17861912,0.2145929,0.22917576,-0.33782312,-1.1554407,0.25201744,0.22579978,0.7750033,0.5145637,-0.011756022,0.20599887,0.52751344,-0.4545911,0.14890735,0.312907,0.19259508,-0.40825886,0.49845234,-0.3991961,0.5617401,-0.19227758,-0.055649646,-0.01726028,0.1881175,0.46318564,0.8486015,-0.052013822,0.20665477,0.07983226,-0.11081676,0.14653921,-0.21868907,0.06684907,-0.45027676,-0.19385968,0.78063864,0.41815656,0.3553711,-0.17411672,-0.13460395,0.023366353,-0.03360874,0.017575128,-0.112384066,-0.1693623,-0.12126046,-0.73945934,-0.3603329,0.59552777,0.039705433,0.045661706,0.16612458,-0.6906974,0.2526665,-0.08082749,0.013885464,0.07082596,-0.64115894,-0.19800997,-0.34905955,-0.63632095,0.2521953,-0.26999685,0.23331518,0.19914094,0.026284436,-0.2826917,0.056181498,0.2172642,0.83375806,0.121145464,-0.109597266,-0.26180157,-0.060175233,0.47448593,-0.5668453,-0.21322317,-0.38077873,0.32957527,-0.6444537,0.52399415,-0.08909815,-0.37191492,0.18518583,-0.084733725,0.12640834,0.51220876,-0.25821692,-0.21237628,0.27217075,-0.010300704,-0.26470262,-0.05236848,-0.510914,0.30842343,0.040685117,-0.021850163,0.07820278,-0.1098746,-0.09957932,0.532959,0.17625149,0.25404304,0.4801391,0.060661223,-0.41600466,0.044992574,-0.1797161,0.53810173,-0.016341407,-0.13066919,-0.1270881,-0.39613968,-0.15596259,0.5699831,-0.07940797,0.1575993,-0.0051948642,-0.5277185,0.6622524,0.12155168,1.0633719,0.1177878,-0.535705,0.0182056,0.4939378,-0.057131924,0.06709001,-0.46177584,0.99254936,0.5925241,-0.30028087,-0.24419086,-0.44302723,-0.12619545,0.17226496,-0.29485697,-0.24457084,-0.22490004,-0.8693122,-0.15146148,0.083276376,0.17940535,0.14816658,-0.031604983,0.29595512,0.025895271,0.058491826,0.45418075,-0.5584322,-0.077353284,0.47896045,0.31325513,0.03256073,0.049760025,-0.31719908,0.3781701,-0.6673046,0.061758023,-0.7199162,0.13087334,-0.113320895,-0.3092227,0.08689092,0.009645624,0.4033276,-0.16771449,-0.41067868,-0.26259014,0.7047368,0.18689103,0.36787543,0.83726585,-0.20002091,-0.08914607,0.04687145,0.5956027,1.5037962,-0.14372662,0.16221943,0.27588457,-0.2114953,-0.4888146,0.2713921,-0.67055523,0.0640247,0.045798678,-0.34152198,-0.36195782,0.33026347,0.19406258,0.0010480242,-0.0036006074,-0.3903422,-0.27174535,0.46810654,-0.23620428,-0.26146707,-0.25324652,0.12442041,0.8963537,-0.2651952,-0.18466167,0.11100446,0.478399,-0.41033134,-0.62367475,0.070462205,-0.35946676,0.5442124,0.09444022,-0.29902014,0.046787944,0.07005932,-0.37801218,0.25246868,0.30156574,-0.4194332,0.12133439,-0.5137339,-0.17139785,1.1290814,0.10750164,0.14407168,-0.7901328,-0.5027339,-1.0390661,-0.3222972,0.08534304,0.26939505,-0.052180033,-0.31238815,-0.096508466,-0.12395068,0.09725494,0.22054113,-0.6246523,0.4884438,0.14669429,0.7147913,-0.057082128,-0.809855,-0.04537339,0.14993449,-0.31142157,-0.45095015,0.69966,0.032088984,0.8261476,0.14989892,0.13013531,-0.025785625,-0.6527069,0.47984904,-0.34232935,-0.087130055,-0.9743623,0.16454878,134 +363,0.16463195,-0.20680587,-0.49603817,-0.21842037,-0.24528006,0.008187286,-0.12044521,0.54348475,0.027339952,-0.47761416,-0.07366286,-0.18494627,-0.15272598,0.28639874,-0.23583217,-0.46476004,-0.03494834,-0.044735927,-0.37290382,0.45779535,-0.42084143,0.17330591,-0.07014447,0.40776882,0.23101106,0.1577173,0.1596906,0.12032092,0.07021181,-0.26300907,-0.17137618,0.11608378,-0.5577155,0.21984962,-0.12932695,-0.4170723,-0.005614019,-0.44034505,-0.44521835,-0.60240114,0.40700468,-0.7031818,0.42836165,0.18679504,-0.2475851,0.35424328,0.42288262,0.24554518,-0.095407434,-0.09380555,0.32754412,-0.1062801,0.1802136,-0.038598686,-0.28211418,-0.5596253,-0.67980766,-0.046778303,-0.57269704,-0.18135525,-0.104283825,0.15017907,-0.31199333,-0.07256867,-0.122024044,0.4867413,-0.33993906,-0.2696875,0.20527951,-0.11019282,0.2780579,-0.68199486,-0.25367984,-0.104554854,0.001779352,-0.26451167,-0.13371567,0.3066606,-0.01198761,0.45312724,-0.19703813,-0.050482668,-0.28605035,-0.1466941,-0.051481154,0.44724017,-0.20996396,-0.504498,-0.07701135,0.047051985,0.18763377,0.19903043,0.1338514,-0.0993613,-0.060084336,0.0411404,-0.2764053,0.55281883,0.48305267,-0.45814577,-0.11069258,0.34982628,0.45584303,0.17239808,-0.236878,0.010205927,0.022950783,-0.4769078,-0.2398437,-0.024258869,-0.20489433,0.37172705,-0.078041546,0.3679131,0.4623271,-0.24023877,0.077256896,0.08943762,-0.013517039,-0.02990904,-0.21298261,-0.33280474,0.22698715,-0.35103345,0.14262544,-0.09216877,0.70799655,0.055149592,-0.6789993,0.24969414,-0.43923452,0.09151033,0.024701377,0.48054197,0.7512916,0.33786154,0.3028325,0.7201869,-0.35268858,0.057069786,-0.09860701,-0.07652102,0.10576447,-0.040558763,0.07005466,-0.530935,-0.031936172,-0.041581284,-0.022348166,0.0018441251,0.37930664,-0.60437685,0.022304755,0.24724679,0.7950502,-0.12045771,-0.03317527,0.6600138,1.0902656,1.0789245,0.116858475,0.82259166,0.09208319,-0.13905743,0.117231056,-0.14591005,-0.68282795,0.26953238,0.45572647,0.24850024,0.27417436,0.11573667,-0.0077521885,0.47350577,-0.45555753,0.06093319,-0.2093669,0.2603013,0.16098213,-0.061807733,-0.10491325,-0.13580744,-0.012410232,0.031259354,-0.012703483,0.21264617,-0.23133329,0.30302003,0.11801591,1.4672631,-0.08541649,0.081301816,0.16962062,0.54916656,0.19561699,-0.2661312,0.11899694,0.2796486,0.3946233,0.031112045,-0.58319616,0.07809619,-0.2773884,-0.5024598,-0.20287703,-0.332115,-0.25786835,-0.13048011,-0.5348369,-0.2065607,-0.1622326,-0.23550074,0.29895997,-3.1481574,0.016637785,-0.18770063,0.12974207,-0.2402681,-0.35971063,-0.036302198,-0.45863864,0.5568537,0.42566067,0.35862747,-0.5337218,0.46343014,0.39867422,-0.28292388,0.03187271,-0.6057683,-0.05502843,-0.10907785,0.33841515,0.04529383,-0.10589713,0.2517182,0.27652425,0.39209917,-0.04330618,0.091929995,0.23737875,0.5306266,-0.04506858,0.5541784,-0.038353864,0.26319546,-0.3335245,-0.13312294,0.31667763,-0.5777055,0.16990027,-0.14498742,0.17272261,0.52998054,-0.33437735,-0.7933383,-0.53900933,-0.17534772,0.98214996,-0.044618957,-0.37511247,0.18120489,-0.44917485,-0.20931473,-0.22463004,0.47591522,-0.15429862,-0.12880656,-0.76430976,-0.031071842,-0.41020003,0.19148241,-0.036854185,-0.112337045,-0.4886356,0.8027503,-0.07294314,0.47520924,0.353229,0.056971308,-0.6273723,-0.37922892,-0.010341389,0.85169363,0.46787134,0.1442766,-0.13123529,-0.061908584,-0.21060373,0.009222358,0.22009407,0.62403965,0.44690037,-0.015740667,0.17002712,0.40681764,-0.10142606,-0.115859404,-0.20486209,-0.22810231,-0.14912984,0.17449543,0.60725754,0.5093905,-0.08902639,0.47975776,-0.05201128,0.16154985,-0.50637543,-0.32571706,0.26194593,0.7600624,0.009169489,-0.24243581,0.5570818,0.66669744,0.0028509924,0.36666998,-0.6329885,-0.5076777,0.5130674,-0.22370777,-0.30964807,0.19167571,-0.39197642,-0.036371298,-0.64445466,0.1913527,-0.30756897,-0.49509794,-0.9147693,-0.35873875,-2.6250298,0.15075943,-0.28756842,-0.18058695,-0.08153585,-0.17364226,0.35291836,-0.51494926,-0.4738976,0.1664248,0.13603963,0.5894577,0.06867246,0.038453836,-0.26458016,-0.251876,-0.18532512,0.1276637,0.07464001,0.2783346,0.07913468,-0.35214546,-0.026980266,-0.14011951,-0.3490871,-0.06611771,-0.31892326,-0.3574247,-0.1849415,-0.41842937,-0.1931287,0.6592576,-0.38946754,-0.008993864,-0.18801391,0.00021758676,-0.022514313,0.33188966,0.17787816,0.14366417,-0.2066116,-0.09620152,0.030733466,-0.3997205,0.071942635,0.10488533,0.39237738,0.4714248,-0.12644444,0.10707418,0.45404702,0.5493616,0.059781153,0.725645,0.42996472,-0.13252638,0.43490973,-0.1038028,-0.088050306,-0.50344527,-0.1929563,0.13103816,-0.33999524,-0.57394487,-0.045181703,-0.36034754,-0.7371246,0.4163124,-0.08700086,0.060457554,-0.08847945,0.40026423,0.35769674,-0.11184739,0.044174157,-0.0005836018,-0.07957338,-0.39388743,-0.4998484,-0.52114767,-0.25733098,0.1138193,1.14452,-0.09251877,-0.1440882,0.11253549,-0.18215232,-0.004658911,0.16407976,-0.050521314,0.23185158,0.21641842,-0.08922165,-0.6126727,0.36074808,-0.19532582,-0.15407494,-0.509727,0.012459857,0.62752885,-0.50384146,0.5241852,0.27690768,0.1785964,-0.2869999,-0.6063757,0.061427448,0.034191225,-0.32196623,0.35035664,0.1849638,-0.75899154,0.4511264,0.14211649,-0.16434787,-0.74001753,0.4854756,0.09072007,-0.30130982,-0.08303269,0.115796186,0.15235756,0.027662663,-0.08694733,0.35595098,-0.22616766,0.18023857,0.14783406,-0.046597045,0.24488637,-0.09773968,-0.071311906,-0.43944508,0.107608974,-0.4237075,-0.36567524,0.2988643,0.042299237,0.19667527,0.3408417,-0.23231003,0.31977186,-0.1928236,0.21754062,-0.06492945,-0.23178525,0.25345334,0.3785878,0.259667,-0.47724158,0.67724895,0.05123007,-0.032061487,-3.807885e-05,0.15888664,0.41950196,0.12831736,0.37429437,-0.14927205,-0.2077019,0.31205487,0.9570587,0.23917429,0.40150717,0.030347738,-0.008116799,0.13230324,0.07004947,0.021533439,-0.043431915,-0.49546978,-0.0469571,-0.09677357,0.16292521,0.25123984,-0.020439455,0.34784883,-0.07518804,-0.15070978,0.07382568,0.22717217,-0.13152237,-1.2047137,0.24627553,0.08608903,0.9017169,0.557319,0.078545704,0.084235795,0.63206166,-0.2504204,0.00038113337,0.34645647,0.14429955,-0.22796719,0.4381842,-0.50103015,0.520496,-0.071539216,-0.062391873,-0.23375936,-0.013367959,0.43203697,0.66530704,-0.2674803,0.011660365,0.08249247,-0.2846581,0.19540748,-0.2649974,0.23007284,-0.49948153,-0.27737418,0.59057754,0.38979557,0.29934713,-0.09684586,-0.02820408,-0.018559502,-0.1934109,-0.04619452,0.025774876,0.007669232,-0.13817146,-0.64225143,-0.17422464,0.44943908,-0.095959246,0.14963268,0.122332886,-0.38130826,0.17204468,0.02065314,-0.0067086346,-0.013483733,-0.65521306,0.009467428,-0.21539947,-0.43497896,0.70610946,-0.33648905,0.23064964,0.24459516,0.017111719,-0.13144837,0.2920394,0.14388783,0.5961972,-0.24723431,0.05974149,-0.34989578,0.11016675,0.072756626,-0.1477519,-0.20513462,-0.24491732,0.19302137,-0.69539595,0.33977363,-0.112512946,-0.18241301,0.09393933,-0.16472504,0.030937245,0.5464286,-0.058112163,-0.105149046,0.04573783,-0.2867551,-0.07242402,-0.15300027,-0.08497502,0.30776337,-0.13206863,0.095902316,-0.1082936,-0.12088935,-0.13661936,0.28478858,0.12615642,0.21486033,0.32222542,0.2362052,-0.35379866,-0.022734787,-0.056016386,0.5160133,0.056091737,-0.111539535,-0.2088195,-0.51860696,-0.34803492,0.46471643,-0.17195988,0.2271092,0.09681348,-0.33117414,0.7532085,-0.06454476,1.0324062,-0.08552381,-0.46482128,-0.037906468,0.55633837,0.06214272,0.19013514,-0.30262432,0.72971743,0.46409947,0.055396102,-0.10426778,-0.17762192,0.032472037,0.34197584,-0.08413243,-0.28709477,-0.014285197,-0.6007165,-0.1869124,0.30547252,0.25967145,0.18727593,-0.21212728,-0.021353036,0.24340089,0.013258414,0.3514168,-0.52124745,-0.07872028,0.2527087,0.3100135,-0.04828492,0.0470218,-0.42318755,0.29534912,-0.48588553,0.14031859,-0.2747759,0.10957975,-0.11609987,-0.21271549,0.24975276,0.012168516,0.38320687,-0.2991519,-0.19664562,-0.019756446,0.5386391,0.12309845,0.27681237,0.422517,-0.16861479,0.10394471,-0.17619897,0.5446893,1.0416574,-0.29697147,-0.13947436,0.34627137,-0.37228176,-0.6332811,0.24709392,-0.5042073,0.00041997008,0.025978582,-0.29155594,-0.17653115,0.32066053,0.22854462,0.099156804,0.07303161,-0.70313644,-0.16252682,0.35322663,-0.21906792,-0.22571073,-0.3671294,0.033011187,0.60670567,-0.14231685,-0.1419544,0.03776374,0.5638378,-0.16364767,-0.5841928,0.18890084,-0.41267514,0.3591695,0.08171047,-0.15989156,-0.10749545,0.042191565,-0.33137578,0.098297715,0.22290953,-0.3379891,-0.21740974,-0.25519115,0.017090287,0.7878753,-0.080874205,0.070667304,-0.39203817,-0.36973542,-0.77908456,-0.3184791,0.32609132,0.109007046,0.014323703,-0.70467854,-0.05068684,-0.13706473,-0.13175792,-0.077064335,-0.2885068,0.51107305,0.16829455,0.33040756,-0.08027943,-0.6568154,0.07412251,-0.007894061,-0.10469632,-0.46029064,0.5144457,-0.00034146648,0.72141105,0.04503717,0.051960476,0.21183226,-0.45800215,0.38556686,-0.29871553,-0.14506401,-0.6372886,0.08144182,136 +364,0.40187934,-0.18307863,-0.4956439,-0.080496185,-0.23262222,0.0051025325,-0.21985033,0.61438215,0.20685151,-0.21558264,0.04967097,-0.089924954,0.028345129,0.5503941,-0.07783176,-0.5264827,0.025314305,0.1773607,-0.57875973,0.76102537,-0.33885616,0.15992053,-0.20870127,0.52039206,0.19158018,0.29510143,-0.058567822,0.018320078,-0.1804534,-0.20035444,-0.055508547,0.34300205,-0.52901065,0.11813694,-0.19575277,-0.34319645,-0.10916654,-0.41520688,-0.3771312,-0.76757103,0.19729283,-0.8005292,0.6132776,0.01371304,-0.36597633,0.32671213,0.2605233,0.3754802,-0.17196761,-0.11424619,0.08149614,0.040546875,0.13508302,-0.29935905,-0.24827416,-0.5848235,-0.52745306,0.048282605,-0.52235174,-0.09826847,-0.10610799,0.17079698,-0.2796957,0.0040484197,-0.11805112,0.42553166,-0.377479,0.26204935,0.22181927,-0.03928296,0.17193285,-0.42055866,-0.3609856,-0.08852001,0.27718377,-0.06887935,-0.16437303,0.30020484,0.13797633,0.3806172,-0.29155293,-0.0128145665,-0.39542872,-0.008938159,-0.10862819,0.5635158,-0.24012573,-0.62944984,-0.17526641,0.04143264,0.17679112,0.1313583,0.21030791,-0.14827636,-0.030189842,-0.03992471,-0.25952166,0.3113539,0.4218674,-0.34070507,-0.37120986,0.31688395,0.40014344,0.16596964,-0.40352282,-0.10888996,0.048867054,-0.52627325,-0.05497821,-0.101718076,0.027293993,0.57267565,-0.03525006,0.19980101,0.47056702,-0.051776495,-0.16071184,0.12688011,0.06959583,-0.045262914,-0.16024433,-0.3420308,0.2049384,-0.2746195,0.07981139,-0.18369712,0.47140414,0.14544967,-0.7507868,0.4096989,-0.6136742,0.093812175,-0.044805117,0.29011366,0.6719348,0.55082387,0.19232914,0.5020971,-0.23225988,0.07631089,-0.0706149,-0.23255886,0.16835268,-0.36866125,0.0075796884,-0.5780042,0.12964621,0.11829967,-0.22850926,0.2875576,0.39426777,-0.54641616,-0.15383206,0.24784608,0.92427206,-0.17840378,-0.12251188,0.7742613,1.1043298,0.9142205,-0.006841581,0.88446254,0.26328528,-0.15208654,0.33920178,-0.2656917,-0.726881,0.24989082,0.2431785,-0.37298805,0.5068661,-0.050576415,-0.05851667,0.48100725,-0.20505333,-0.011496561,-0.09343846,0.1442616,0.22110632,-0.21097812,-0.3661683,-0.29447475,-0.07285642,-0.1761764,0.26419592,0.28967252,-0.25627628,0.5668889,0.04369959,1.7484705,0.097792216,0.0474801,0.078638636,0.70545584,0.2708064,-0.1989828,0.0057344777,0.47314644,0.23940112,0.12568875,-0.45049837,0.23796555,-0.21316116,-0.5132113,-0.1337537,-0.37529534,-0.26662645,-0.1052837,-0.4942095,-0.263748,-0.19011627,0.037568748,0.43931696,-3.0062382,-0.12150148,-0.09893574,0.28821954,-0.22273979,-0.31515247,-0.06021104,-0.43120173,0.28551072,0.33400223,0.40104422,-0.59141153,0.57031554,0.22404988,-0.46713883,-0.12949036,-0.53973526,-0.1234584,-0.038550723,0.5422401,-0.06964352,0.08193527,0.24976185,0.2722015,0.40808615,-0.08732474,0.12756507,0.2819616,0.4924086,0.048396856,0.36202955,-0.10999964,0.42867312,-0.3341146,-0.20799208,0.26432937,-0.48988128,0.27970082,0.09956529,0.14921641,0.45611387,-0.38718358,-0.8811029,-0.6292983,0.24854037,0.99586153,-0.1316085,-0.44598168,0.11894839,-0.5112307,-0.33531907,-0.12881456,0.43056816,-0.024479976,0.017140493,-0.7789506,-0.11536755,-0.15912412,0.23033473,-0.0067151827,-0.040383916,-0.34621438,0.6230516,0.109986484,0.4636209,0.16883479,0.10130943,-0.42011493,-0.4269157,0.095245436,0.63348675,0.27918646,0.14131515,-0.06267402,-0.23575878,-0.41967407,-0.033476744,0.16921191,0.6171593,0.3049887,-0.07836794,0.16937163,0.24436654,-0.16522405,0.11737505,-0.16450922,-0.21043113,-0.08327744,0.10204796,0.47247162,0.79680246,-0.30891594,0.5479814,-0.010660738,0.33043566,-0.24484432,-0.45267186,0.5778004,0.8860297,-0.19627318,-0.33764964,0.54964006,0.60559577,-0.27744135,0.37282842,-0.6063737,-0.34731,0.38801056,-0.13392022,-0.25488,0.33708474,-0.2094902,0.1760404,-0.88782734,0.20288198,-0.2771307,-0.3699579,-0.625462,-0.0066098147,-3.166443,0.16108724,-0.01336386,-0.32173106,-0.15270638,-0.16915712,0.25828832,-0.654677,-0.54859024,0.10419689,0.14222233,0.5902181,-0.1401793,0.11123346,-0.24154523,-0.38632122,-0.26893806,0.32735807,0.13854781,0.3787165,0.007032982,-0.46235138,-0.2535707,-0.012403109,-0.47181,0.14154822,-0.6993441,-0.4291117,-0.09320694,-0.5823632,-0.16561113,0.6025186,-0.26140586,0.02942751,-0.30541924,-0.018803272,-0.19541751,0.24152899,0.040282674,0.100114465,0.039512645,-0.119980805,0.23357823,-0.31569389,0.22825922,-0.09163376,0.4226356,0.2152021,-0.1386604,0.24656066,0.5749365,0.65243024,-0.023669157,0.6910235,0.5017871,-0.03587377,0.447574,-0.3326978,-0.17294447,-0.34544554,-0.1477154,0.025399502,-0.27125135,-0.45409587,-0.14401838,-0.43105832,-0.72740203,0.45379657,-0.065351546,0.09731804,-0.04027397,0.2926948,0.58802754,-0.17341027,0.07011123,-0.0441549,-0.169873,-0.45642295,-0.32806155,-0.45119312,-0.3478348,0.13787164,0.91373223,-0.12125884,-0.047099207,0.12065901,-0.30397716,-0.07886811,0.20882702,0.018492429,0.14013886,0.34582952,-0.29903343,-0.70959324,0.32990956,-0.22969899,-0.23530926,-0.54433703,0.2501553,0.49888915,-0.5553333,0.6486853,0.29047266,0.10742007,-0.24315785,-0.42666048,-0.092700586,0.024368372,-0.07786477,0.33044678,0.302762,-0.75814754,0.27346292,0.352981,-0.36965615,-0.5098964,0.54930127,-0.0981423,-0.39320812,-0.18244103,0.2049317,0.18555002,0.07097425,-0.27183372,0.14152515,-0.4498324,0.16682832,0.2148491,-0.052007377,0.26788044,-0.17130505,0.08052576,-0.67877525,0.025641212,-0.40290913,-0.45680204,0.39673752,0.18052138,0.17473412,0.0728567,-0.067216724,0.17594954,-0.2994916,-0.017030368,-0.2025286,-0.20230272,0.37059593,0.36726615,0.5282093,-0.55452645,0.58478314,0.059775837,-0.07047233,0.22696193,0.08102429,0.3703701,0.08903027,0.46692866,0.21005014,-0.25519678,0.29372475,0.68094313,0.26100737,0.4455895,0.074632004,-0.11222495,0.15658154,-0.09835511,0.03327092,-0.041988093,-0.46538016,-0.1277422,-0.26188454,0.22755836,0.48117328,0.06488284,0.15475622,-0.10046768,-0.42618105,0.09679097,0.23421218,0.03973091,-1.5592412,0.24742761,0.29496357,0.79563755,0.2727234,0.07208012,-0.0129188765,0.87863857,-0.16598389,0.07200628,0.4794925,0.08578426,-0.45021078,0.66238785,-0.7101101,0.51914924,0.014430157,-0.023257613,0.061529938,-0.11818683,0.36003563,0.7342239,-0.10778683,0.027005116,0.23020516,-0.48600695,-0.041092426,-0.270895,0.14968786,-0.57690763,-0.12965208,0.50084436,0.5795151,0.40826663,-0.31771994,0.08355639,0.1207065,-0.14188531,0.046544723,0.12277244,0.17603625,-0.16557758,-0.687213,-0.015121238,0.66918856,-0.23543371,0.13247915,0.08005142,-0.36128125,0.39376742,-0.21857418,-0.056399327,-0.068638034,-0.58108795,0.17700294,-0.29161072,-0.48518297,0.75020367,0.0075225234,0.18082483,0.25320226,0.12857231,-0.25610903,0.36292413,-0.13104759,0.803197,-0.0997872,-0.096516944,-0.31777143,0.061360266,0.15159026,-0.1216225,-0.046429846,-0.32876825,0.06136888,-0.3003912,0.32567528,0.06159765,-0.2613402,-0.32913333,0.10783846,0.2415873,0.50064373,-0.18800369,-0.23805006,-0.08950999,0.02626015,-0.40904683,-0.14175278,-0.070013605,0.35686466,0.2815164,0.012431915,-0.060559094,-0.07418161,-0.06415399,0.4725106,-0.09244343,0.5006671,0.49978685,0.37961194,-0.13667372,-0.086625695,0.20627682,0.50062144,-0.024005065,-0.04455059,-0.37626022,-0.50977993,-0.4601204,0.30820274,-0.16095607,0.3693476,0.1081013,-0.28555533,0.7812028,-0.06267563,1.1699963,-0.0046480712,-0.3606689,0.3189203,0.47167447,0.12001198,0.0050018346,-0.37998146,0.90029675,0.5401758,-0.080650054,-0.099392556,-0.26755807,-0.086136885,0.06379864,-0.3015634,-0.24362932,0.062006775,-0.585895,-0.14355652,0.10912842,0.2339628,0.38646033,-0.1819471,0.19732258,0.20742448,0.056020487,0.09595169,-0.35857767,-0.22865728,0.3022863,0.3216856,-0.0038210514,0.056266163,-0.5975698,0.2819019,-0.3544164,0.083067894,-0.4108595,0.24420463,-0.14127912,-0.36634445,0.100481376,-0.025722282,0.23436669,-0.51891226,-0.26701757,-0.24488637,0.46858397,0.1544014,0.029355465,0.45797488,-0.15161763,-0.026807556,0.033999305,0.523236,0.90311015,-0.31060988,-0.15364246,0.34583706,-0.37550277,-0.8034109,0.23382533,-0.22458191,0.40876463,0.010390674,-0.08341749,-0.6878237,0.38685226,0.14062066,0.061478052,-0.2397785,-0.52450293,-0.2318352,0.3248648,-0.2727329,-0.21739519,-0.35108134,0.06695373,0.48208174,-0.14587621,-0.26397687,0.12256249,0.2986199,-0.1121118,-0.504494,0.0039454526,-0.45388085,0.29168877,0.12685513,-0.31236437,-0.30645448,0.05222165,-0.4104211,0.31743893,0.17182183,-0.31686184,0.12961856,-0.47289842,-0.092746176,0.9607118,-0.2683706,0.15820085,-0.58040535,-0.5377614,-0.8342963,-0.59222174,0.32564571,0.22430758,-0.039831072,-0.66649693,0.01621237,-0.023505973,-0.4168896,-0.18038033,-0.3245871,0.38502976,0.012444807,0.23712976,-0.057871062,-0.7526422,0.16804056,0.09376804,-0.14057885,-0.6458122,0.5238447,-0.06998099,0.9613033,0.05714936,0.27236483,0.4054382,-0.35687357,-0.24592683,-0.11720554,-0.1398398,-0.5442951,0.010146891,138 +365,0.4380184,-0.5244708,-0.3714337,-0.14551939,-0.104496635,0.06278337,-0.23785271,0.2630169,0.121519946,-0.37537834,-0.026589304,-0.19831927,0.17863555,0.5944767,-0.11280395,-0.810619,-0.031063898,0.04176442,-0.5703939,0.5612684,-0.49063063,0.19891082,0.08107344,0.38599873,0.015799042,0.2671892,0.3559983,-0.13867894,-0.14803047,0.10114123,-0.16701403,0.103152715,-0.5247096,-0.010728613,0.060155857,-0.21787523,0.12845571,-0.3024156,-0.45963764,-0.7040898,0.24476862,-0.881947,0.4183381,0.0599359,-0.32755202,0.30770415,-0.0551485,0.37784103,-0.5102579,-0.062310286,0.08616821,-0.21003477,-0.042259116,-0.30894113,-0.109331734,-0.47533208,-0.45357633,0.007556302,-0.60236424,-0.16422963,-0.25279152,0.010508138,-0.38696095,-0.010469382,-0.054719295,0.30086684,-0.5680842,-0.18983494,0.3028645,-0.15122962,0.3484388,-0.36919257,-0.070233,-0.120384865,0.14756225,-0.020554798,-0.1604938,0.25798526,0.29800954,0.49680743,0.04371277,-0.24788578,-0.21615109,-0.05788539,0.31437987,0.52031595,-0.017623289,-0.6569281,-0.21339737,0.025985228,0.030449528,0.01384828,-0.02013582,-0.32981637,0.037064064,0.22438066,-0.2733505,0.34759307,0.5137231,-0.35378274,-0.26081055,0.32739812,0.54307735,0.16508473,0.02896572,-0.05498623,0.0909706,-0.36837965,-0.14005062,0.3785283,-0.261349,0.50480884,-0.17103387,0.28296968,0.6130292,-0.22282852,0.26576963,-0.114581704,-0.03692762,-0.24149516,-0.029339824,-0.1265801,0.10924644,-0.55176073,0.058849838,-0.26728845,0.8440568,0.35116312,-0.52181923,0.5425784,-0.5082804,0.303672,-0.17375715,0.5859366,0.70852166,0.25095734,0.29571754,0.6384983,-0.4439619,0.11048066,-0.1289493,-0.45996985,0.14092734,-0.27438036,0.03214298,-0.45800257,-0.0024111953,-0.03697272,-0.06339203,-0.06524737,0.3073895,-0.5928001,0.05990022,-0.033213258,0.8130001,-0.33905864,0.110863045,0.6136113,0.89056766,0.7938014,0.11866488,1.2532417,0.59019893,-0.29464212,0.19043215,-0.33447078,-0.76328915,0.27461204,0.5119892,-0.09292307,0.47290665,0.00036347765,-0.13380055,0.42789087,-0.39553624,0.11248279,-0.31824383,0.34729332,-0.09813203,-0.0063659996,-0.55045205,-0.11286049,-0.17568247,-0.023293087,0.053003646,0.33688346,-0.14662501,0.33370194,-0.06605012,1.7109767,-0.12136384,0.091458164,-0.062141526,0.4996092,0.3131888,-0.0048978264,-0.12263703,0.41625762,0.40243718,0.09416352,-0.7503409,0.12154923,-0.3457029,-0.38081387,-0.20877804,-0.26535472,0.2743487,-0.077918686,-0.29825267,0.038694523,0.1388879,-0.25482756,0.3666315,-2.4057517,-0.3286814,-0.29873776,0.35323575,-0.46287006,-0.27372473,-0.08958669,-0.3716707,0.42410666,0.39216232,0.49008125,-0.74133396,0.29850706,0.38448176,-0.37101296,0.018286517,-0.54558486,-0.15770468,-0.0974281,0.45282486,-0.028519059,-0.14852473,0.022239689,0.21680959,0.39212814,-0.1759984,0.027840497,0.12657443,0.36816806,0.1462719,0.34103638,0.026351914,0.50406545,-0.36377996,-0.09906672,0.36037114,-0.16973932,0.36865467,-0.101007454,0.2430838,0.35827142,-0.49666867,-0.8431958,-0.5869628,-0.4051338,1.1848663,-0.41259548,-0.44539407,0.18875694,0.00685943,-0.07877129,-0.030432966,0.3466262,-0.09323771,-0.102343865,-0.86165345,0.23956224,0.05880242,0.2167195,0.15377334,0.13959993,-0.16687045,0.6858174,-0.16258503,0.3019934,0.26414725,0.3419221,-0.0006434449,-0.49389243,0.11116948,0.8078003,0.39077178,0.10432356,-0.21009775,-0.27918148,-0.14969864,-0.10111045,-0.028466675,0.40108055,0.9055165,-0.025281211,-0.053851027,0.27536336,-0.11417886,0.024572577,-0.15938345,-0.3412559,0.031053292,0.033193372,0.6336385,0.53735465,-0.19427927,0.5616417,-0.113157235,0.2773024,-0.06053278,-0.43550164,0.6293822,1.0147415,-0.18415746,-0.083119765,0.48436937,0.50598705,-0.5033888,0.407806,-0.7830035,-0.2831863,0.54471564,-0.24894372,-0.4262815,0.30549362,-0.31723174,0.17125455,-0.981295,0.3384768,-0.19766082,-0.2366936,-0.57056946,0.07664233,-3.9049318,0.15784554,-0.318924,-0.23200038,-0.12818465,-0.047600776,0.2882399,-0.6899964,-0.45223883,0.3228154,0.029313603,0.612604,0.019929452,0.187936,-0.30048725,-0.065993294,-0.19827972,0.05194444,0.103852525,0.20842192,-0.08663925,-0.5228101,0.060608387,-0.20954718,-0.41864628,0.23838495,-0.6248616,-0.5821582,-0.3134714,-0.6223625,-0.19298758,0.62511843,-0.10165374,-0.029470881,-0.23661457,0.04374916,-0.22844873,0.4419237,0.22124214,0.16359034,0.043205287,-0.013067769,-0.094064966,-0.41026586,0.19833599,0.19087707,0.17123197,0.2957128,-0.124641165,0.17015728,0.5920147,0.56955034,0.015325581,0.6049342,0.50394684,-0.17541888,0.41166312,-0.34901005,-0.29149726,-0.4608048,-0.48952,-0.120147385,-0.284522,-0.4864308,-0.26302174,-0.23414595,-0.6726306,0.5550174,0.044807516,0.22164086,-0.086756825,0.22851385,0.57332283,-0.14568993,-0.04124574,-0.015747799,-0.17904417,-0.6304618,-0.16784208,-0.6480223,-0.4429538,0.34191838,0.70589596,-0.2038552,-0.17556262,-0.16236416,-0.30415767,-0.021243135,-0.086297736,0.09843693,0.27276897,0.23375747,-0.11640417,-0.68741643,0.54273504,0.015878482,-0.2615977,-0.6153241,0.123991325,0.76005113,-0.7192193,0.39843968,0.27239865,0.07404669,0.035976578,-0.37806344,-0.22760513,0.18748225,-0.12202884,0.3056168,0.12073497,-0.61896867,0.44086537,0.39069977,-0.24671376,-0.72144943,0.4229409,0.13066946,-0.25977415,0.00465994,0.32311106,-0.014496916,0.15992527,-0.42655018,0.14177847,-0.48427922,0.16523202,0.41069752,-0.0404071,0.37150997,-0.075194724,-0.18135782,-0.6532608,-0.041484177,-0.5140129,-0.20479257,0.2838812,0.11891061,0.09904442,-0.061994545,0.031854536,0.40240297,-0.41900215,0.012259864,0.15697543,-0.28152058,0.3637066,0.52513885,0.287193,-0.3265092,0.6873578,0.07111678,-0.1215533,-0.1338745,-0.006544675,0.4616796,0.29524675,0.2910564,0.09496367,-0.097219266,0.3816778,0.9637272,0.071675524,0.53174245,0.23228426,-0.1389232,0.30311498,0.23126408,0.09867994,0.07990355,-0.17330904,0.05269465,0.21565716,0.18566203,0.46412042,0.21989433,0.35513252,-0.048476867,-0.3504538,0.04828859,0.16285452,0.07964746,-1.1669195,0.30756038,0.25855395,0.6093146,0.36525753,-0.08226415,0.04417793,0.5818324,-0.2667912,0.08820636,0.1694629,-0.16180836,-0.674398,0.6201835,-0.62160504,0.29391223,-0.1587485,0.021832677,-0.024455981,0.12815751,0.37039062,0.76242447,-0.15052478,-0.0064308983,-0.22378714,-0.29800266,0.1288217,-0.38314694,0.061170693,-0.49142593,-0.4807652,0.43183804,0.3992483,0.29077414,-0.15717031,0.001110675,0.061442953,-0.096691884,0.3426017,-0.015553711,0.058089368,0.04526892,-0.78353053,-0.44588736,0.476213,0.07650048,0.18245889,-0.15674722,-0.063970946,0.2257168,-0.18567073,-0.17606594,-0.03505257,-0.7470565,-0.013862943,-0.3761467,-0.4589672,0.4108447,-0.25050956,0.31804505,0.20366146,-0.035604022,-0.40351078,0.23991756,0.08849684,0.90712184,0.029932993,-0.30462295,-0.5425326,0.11415917,0.19067176,-0.15598433,0.007984349,-0.28424826,-0.0904149,-0.5854382,0.60660946,-0.15182273,-0.2903008,0.10077155,-0.28651634,-0.025153194,0.5431351,-0.31584743,-0.26950002,-0.17125042,-0.20054033,-0.3381061,-0.33413145,-0.15587865,0.20253262,0.27591237,0.030621668,-0.009926758,0.021460574,-0.06947129,0.6657912,0.19364718,0.257353,0.33350548,0.15181689,-0.2707922,-0.18467234,0.29754615,0.40367252,0.109293595,-0.1470137,-0.29617167,-0.43366104,-0.35628405,-0.13323312,-0.28082603,0.21208814,-0.007196341,-0.44767728,0.77688134,0.09528633,1.1923639,-0.0031028304,-0.2995455,0.13490215,0.4210622,0.046562653,-0.045427006,-0.4125525,0.8009104,0.57463884,0.060805682,-0.20140566,-0.46300226,-0.3484729,0.31881067,-0.24754235,0.032675173,0.03608056,-0.69752795,-0.3626766,0.2725298,0.23479673,0.006139521,-0.018271234,0.14533423,0.06776482,0.053843,0.38676852,-0.6114268,-0.17534575,0.32582387,0.12540717,0.079172544,0.09314353,-0.3443444,0.44130236,-0.5089932,0.09755026,-0.3136503,0.07694372,0.02617876,-0.2949219,0.272695,0.020169659,0.40752158,-0.41892114,-0.32939744,-0.22294644,0.63960415,0.14384751,0.08757179,0.5745845,-0.30147856,0.1619235,0.2160809,0.53740925,1.091611,-0.27549958,0.1812781,0.28102022,-0.36440334,-0.7544214,0.44088355,-0.07125755,0.3190703,-0.113014646,-0.33565143,-0.68400764,0.3350182,0.20456733,0.013299899,0.038443953,-0.48135743,-0.24841739,0.3980091,-0.37377977,-0.23091434,-0.34971958,0.19801562,0.5716319,-0.3739751,-0.2617832,0.17613114,0.26969522,-0.26999372,-0.4040766,-0.2743442,-0.24995668,0.22151121,0.17547831,-0.23809078,0.09091455,0.21540353,-0.4284777,0.09629988,0.07329851,-0.40283376,0.11266617,-0.09695713,-0.116242446,0.9397566,-0.31680447,-0.067593396,-0.9449107,-0.50948066,-0.8683702,-0.38415647,0.8255555,0.08234132,0.17962506,-0.638238,0.17137136,0.14001141,0.17005767,-0.024793562,-0.5634487,0.40514776,0.07432278,0.3829244,0.057527278,-0.7135052,0.13258764,0.13465215,-0.29340643,-0.6745706,0.49631336,-0.22378843,0.7495342,0.015182662,0.086378254,0.27312186,-0.39863682,-0.14753601,-0.3290651,-0.3468201,-0.735727,0.15168557,144 +366,0.1840183,-0.39416927,-0.49052933,-0.044325087,-0.25141016,0.17978188,-0.28771827,0.38997397,0.050840843,-0.52524483,-0.1288461,-0.1753649,0.07700456,0.4967026,-0.20369332,-0.45993033,-0.012983637,0.15778732,-0.5954465,0.49206266,-0.37376162,0.33541775,0.17157629,0.38378045,0.061808117,0.16096766,0.12491131,-0.16700563,0.009798176,-0.37016743,-0.16536485,-0.03812686,-0.6262451,0.22945206,-0.20293912,-0.5453025,0.096185245,-0.50256836,-0.30513138,-0.7185628,0.21332785,-0.76787627,0.568934,0.07718931,-0.1624606,0.18731771,0.17964666,0.5152922,-0.30021176,0.066067584,0.31635174,-0.20677136,-0.15243609,-0.11401594,-0.15197305,-0.4992542,-0.54080504,0.018616254,-0.44136646,-0.18703476,-0.10633623,0.26373655,-0.13419597,0.21727861,-0.16891114,0.27221885,-0.48249367,0.17159745,0.18650767,-0.16743453,0.12021172,-0.5827368,-0.22445668,-0.25861254,0.3458113,-0.32406428,-0.19787209,0.10919428,0.107155584,0.42091274,0.034792032,-0.15890196,-0.28003123,-0.13420752,0.14910476,0.64374256,-0.071737446,-0.3529375,-0.1934243,-0.12062844,0.23151027,0.042766605,0.0917246,-0.3626749,-0.13002658,-0.17768906,-0.38047653,0.2676365,0.41951945,-0.37417874,-0.23870073,0.33491114,0.53107363,0.14291146,-0.10959483,0.08272193,0.06422268,-0.58723515,-0.18037093,0.146207,-0.0794809,0.48163506,-0.09051641,0.2711869,0.70609313,-0.22838543,-0.051005363,-0.014561713,-0.060822718,-0.113712616,-0.11873816,-0.33436495,0.26397654,-0.44066045,0.12556331,-0.33271247,0.69522107,0.17155935,-0.65830547,0.31718522,-0.57616055,0.10637057,0.04729752,0.5029052,0.5171441,0.4634799,0.15201771,0.5237997,-0.38130364,0.089929186,-0.21962193,-0.117289916,0.050107595,-0.2104682,-0.09447558,-0.37970957,0.028792841,0.032750417,-0.0028894714,0.13425806,0.5038446,-0.55769473,-0.033269595,0.048317317,0.7196807,-0.26474696,-0.056906264,0.99506503,0.95454866,0.94286686,0.13975973,1.205286,0.2779447,-0.23529097,-0.045209747,-0.05588237,-0.6089861,0.16387407,0.40597448,0.15255411,0.17222698,0.19305149,-0.08757188,0.5555578,-0.43601254,0.039275832,-0.0704406,-0.01927503,0.04173357,-0.12567553,-0.35973316,-0.19831419,0.052387714,-0.061300952,0.036880814,0.3010917,-0.26072094,0.5426711,0.08384148,1.2503603,-0.0010115717,0.14519264,0.026436673,0.39837232,0.12651818,-0.130899,0.0036096573,0.3432979,0.4194503,0.06808143,-0.6574785,0.14136633,-0.13171935,-0.43097302,-0.17109285,-0.24093066,-0.46425432,-0.03744075,-0.52719086,-0.14069337,-0.03639539,-0.0924397,0.33071035,-2.6077526,-0.08912742,-0.20315692,0.30236,-0.15564397,-0.29022533,0.010529382,-0.4615478,0.49132204,0.3681322,0.429253,-0.5704056,0.4317185,0.3907239,-0.52894866,-0.10207585,-0.7875058,-0.22392575,-0.065335445,0.353586,0.011973338,0.0058185756,0.09587937,-0.08176596,0.4510921,-0.2527294,0.15260755,0.21573612,0.38777897,0.10892632,0.49608567,0.1399303,0.5424074,-0.4737629,-0.18805523,0.22561009,-0.53736037,0.4120824,-0.09524008,0.091698535,0.37829205,-0.44767147,-0.89944637,-0.6484389,-0.30463767,1.022986,-0.030535545,-0.35067272,0.25828695,-0.31431913,-0.28694704,-0.0968099,0.60814816,-0.13764913,0.11706461,-0.758141,-0.11577689,-0.0785442,0.34983703,-0.087765,-0.01912232,-0.49145466,0.61839473,-0.07728312,0.39810824,0.4066338,0.21424153,-0.29419398,-0.3342674,0.042082913,0.9274634,0.32552257,0.17094265,-0.09735886,-0.23050794,-0.24936879,-0.094040975,-0.015505182,0.5604129,0.5211566,-0.012790458,0.1927665,0.2229952,0.067536175,0.14919852,-0.23211029,-0.22311251,-0.09471745,0.1244896,0.49768782,0.5248865,-0.068054356,0.3410384,-0.12773414,0.4532831,-0.21009982,-0.54721314,0.4154376,0.75362194,-0.16606021,-0.10317741,0.5393912,0.61257404,-0.09610055,0.37072992,-0.6106771,-0.44116163,0.46134418,-0.16591273,-0.48223922,0.2344093,-0.24791911,0.18096247,-0.87325543,0.3711295,-0.32103753,-0.5660159,-0.7117661,-0.09471832,-3.3985515,0.1368229,-0.13050775,-0.15006399,-0.0969461,-0.16220793,0.18521874,-0.47525555,-0.420132,0.18418775,0.08280476,0.58038527,-0.09495367,0.15654159,-0.3089191,-0.23437054,-0.30077878,0.2404032,0.112042114,0.24227893,-0.24061069,-0.40000322,0.0049469257,-0.21870221,-0.4165677,0.02033359,-0.64452493,-0.2854406,-0.1428149,-0.36568022,-0.21970214,0.6487864,-0.349638,0.12495983,-0.14235035,-0.0056787697,-0.2559887,0.4761834,0.32032555,0.15928066,-0.02856962,-0.12419629,-0.1598021,-0.44926628,0.20334704,0.22630583,0.14169873,0.34788817,-0.13125257,0.14828618,0.4359391,0.6762444,-0.091427214,0.8194846,0.33558849,-0.11122657,0.41300374,-0.17939426,-0.34209844,-0.44587776,-0.16242301,-0.13989769,-0.37665886,-0.60426456,0.012123389,-0.29475912,-0.7398849,0.5386302,0.12646304,-0.3213584,-0.008953,0.29303068,0.2683081,-0.3485264,-0.0884318,-0.10669751,0.024360763,-0.3890291,-0.31045145,-0.567027,-0.5461327,-0.06459455,1.0177596,-0.054670483,0.1721919,0.09702698,-0.23955598,-0.030133452,0.3102887,0.06786572,0.16769336,0.34605142,-0.14904015,-0.7464305,0.77666885,-0.14968646,-0.38427252,-0.6273238,0.22648051,0.6910432,-0.69490063,0.48819858,0.45448086,0.03383397,-0.104702115,-0.25852516,-0.17412806,-0.049374994,-0.23675106,0.24860458,0.027238114,-0.6787867,0.41215715,0.3985641,-0.2971092,-0.6849322,0.52747166,-0.017358989,-0.22764559,0.23586154,0.31418344,0.21253611,0.053398438,-0.1176589,0.10557718,-0.41948104,0.28935862,0.2674732,-0.05912957,0.33474606,-0.26889628,-0.14173147,-0.77975607,0.11857533,-0.5058145,-0.20183893,0.20684603,0.07966561,-0.004369342,0.30105385,0.08252782,0.35111403,-0.25462976,0.09915018,-0.30417082,-0.2995887,0.25362328,0.49918303,0.39006737,-0.3029605,0.7288348,0.07219957,-0.07467152,-0.12124467,0.042763136,0.52093464,0.08986693,0.56003326,-0.16913857,-0.21984792,0.23161945,0.78289837,0.19575964,0.4485233,0.17270763,-0.046442915,0.26462722,0.1605149,0.087963454,0.19784059,-0.46213004,0.12460705,-0.18419906,0.13742034,0.42347997,0.05383808,0.32567376,-0.10219156,-0.2238466,0.04641645,0.16849817,0.19274528,-1.0231901,0.26320758,0.21974595,0.6586216,0.4936688,0.08340196,0.079485215,0.6974439,-0.40395617,0.0116446065,0.27060953,0.023914397,-0.47496185,0.64997244,-0.772796,0.60699356,-0.13582267,0.007000949,0.14027742,-0.24585497,0.46675786,0.83913743,-0.13608715,0.029803041,0.1364318,-0.31916958,0.044433773,-0.538301,0.1395289,-0.36513796,-0.22874126,0.7559018,0.3464159,0.4325666,-0.10535208,0.023241734,0.16289672,-0.16847558,0.21891761,0.121217504,0.20755978,-0.062034544,-0.51777244,-0.12843956,0.7358179,-0.28822497,0.13736318,0.15578313,-0.50414294,0.31764287,-0.07488709,0.08925121,-0.07981419,-0.7278554,0.06756799,-0.47080207,-0.4598969,0.40367705,-0.048688646,0.3512335,0.2551257,0.059895117,-0.2220575,0.5692525,-0.09023019,0.84876144,0.08022666,-0.14155385,-0.13345353,0.18150277,0.261886,-0.23041442,0.046328705,-0.21732603,0.06934001,-0.566985,0.31827268,-0.12649323,-0.31085953,0.15314303,-0.07258978,0.1058774,0.4693442,-0.13101813,-0.275889,0.33702973,-0.016940799,-0.1142823,-0.17444213,-0.19782822,0.21706483,0.24042514,0.21354981,-0.070486955,-0.24934277,-0.16588545,0.37444046,-0.019664437,0.4951484,0.32521722,0.00033846073,-0.45167497,-0.06607911,-0.027487146,0.36950782,-0.17137179,0.06994962,-0.14356568,-0.5948222,-0.39685303,0.1476575,-0.12695716,0.34735537,0.061478145,-0.23568277,0.82663685,-0.17108835,1.0343426,-0.015078799,-0.56993586,0.23589174,0.6090061,-0.049654666,0.007229145,-0.41427013,0.9583796,0.42438054,-0.1227748,-0.11627705,-0.37680057,-0.14438793,0.32134214,-0.25598308,-0.24524513,0.013692315,-0.5224881,0.030905416,0.10812692,0.35791677,0.20900486,-0.09229897,0.14011447,0.28151304,0.10230541,0.25805715,-0.7279201,-0.17697139,0.4073463,0.29579234,-0.17508207,-0.01610945,-0.42367873,0.4718645,-0.46559498,0.16434005,-0.26721945,0.05034713,-0.28964898,-0.2692025,0.21624017,0.16922964,0.26292536,-0.40325785,-0.35196194,-0.24458954,0.5101643,0.23559989,0.25034824,0.6994129,-0.13945083,-0.13530475,-0.0644923,0.46069422,0.83941233,-0.5503255,-0.1496266,0.4223452,-0.4421629,-0.47670847,0.33847508,-0.43196106,0.06946062,0.08923403,-0.21830304,-0.4412341,0.23611675,0.25452933,0.010349989,0.064204656,-0.7265481,-0.043826003,0.34710488,-0.38353327,-0.38209972,-0.35770342,0.36291698,0.70392716,-0.23790489,-0.34506392,0.1048483,0.26271856,-0.32911512,-0.57045805,-0.0444493,-0.30633026,0.3771599,0.11494545,-0.28210735,-0.17900427,0.046945516,-0.4138743,-0.057365723,0.083323784,-0.3578403,0.04697482,-0.40004808,-0.07491168,0.7222641,-0.087194405,0.20861088,-0.67179024,-0.49094948,-0.7930197,-0.38619536,0.5770051,0.35861763,-0.0031419354,-0.5499659,0.015544648,-0.07418215,-0.22777963,-0.006650712,-0.47501448,0.5312781,0.16047515,0.3003921,-0.08446848,-0.7794338,0.14879094,0.0739531,-0.28394294,-0.46266454,0.38597107,0.028027972,0.8459534,0.06146878,0.06985922,0.34983143,-0.4512888,0.12090818,-0.20511237,-0.17312583,-0.6783329,0.03440199,149 +367,0.34709856,-0.26896384,-0.545933,-0.10266144,-0.1755773,0.2176197,-0.22619686,0.22748159,0.08471731,-0.48541874,0.028589675,-0.18245621,-0.07203768,0.27365983,-0.14396834,-0.27022848,-0.13296767,0.24432099,-0.6682487,0.29283723,-0.4414602,0.32340893,0.0094639575,0.2565342,0.15591049,0.17250729,0.19572374,-0.08760174,-0.1619982,-0.33913416,0.009641818,-0.03365503,-0.61724776,0.16828813,-0.26370615,-0.46386448,-0.03673699,-0.4464738,-0.5068311,-0.70130485,0.4070718,-0.90020186,0.65041286,0.04983527,-0.18915042,0.4459416,0.1642371,0.28092724,-0.20691077,-0.0059401733,0.30695224,-0.2064228,-0.11135722,-0.21894288,-0.251077,-0.29524827,-0.5615296,0.0515889,-0.35643214,-0.040315118,-0.38383386,0.18707684,-0.29183605,0.26572436,-0.24555792,0.37125516,-0.28031427,0.17410763,0.14402665,-0.14296794,0.18734312,-0.4506741,-0.10232695,-0.11281564,0.052843396,-0.1345658,-0.08402194,0.33667317,0.013761401,0.4741936,-0.13498165,-0.14290711,-0.3329437,-0.069284014,0.08443231,0.54322344,0.0070701963,-0.23867321,-0.13553493,-0.16892597,0.15827903,9.860737e-05,0.077217385,-0.16629627,-0.004500625,-0.08712768,-0.31402835,0.4217782,0.56353295,-0.1808617,-0.21681519,0.46104893,0.50169,0.016280407,-0.1667179,0.0139755905,0.003479302,-0.47737336,-0.22312827,0.16064286,-0.2204911,0.34681728,-0.04912162,0.2881232,0.4795793,-0.2987573,-0.03440204,0.06611095,0.1317095,-0.10350181,-0.045577493,-0.36800155,0.3017168,-0.43940946,0.029140566,-0.2922028,0.6787571,-0.037331384,-0.68047625,0.30295557,-0.5531927,0.08335148,-0.02062214,0.5644033,0.51670283,0.57330525,0.3591815,0.7197299,-0.46411276,0.044977646,-0.08813494,-0.29351252,0.11664633,-0.16371441,0.06912339,-0.3361828,-0.066409655,0.02340732,-0.1091813,-0.0756333,0.37178987,-0.3962924,-0.05466744,0.15690482,0.6714243,-0.29098105,0.05837602,0.6963696,1.0585365,1.0699915,0.056660384,1.0811926,0.2600818,-0.22462435,-0.019381955,-0.17997889,-0.90256786,0.25055537,0.17329311,-0.08793765,0.33482614,0.18142942,-0.008016301,0.2639517,-0.49818638,-0.037079684,-0.14255168,0.21114774,0.027648082,-0.06365559,-0.2816303,-0.24555014,0.109719686,-0.005838769,0.31038114,0.20302033,-0.42240122,0.30881244,0.1603525,1.5883806,-0.1272641,0.14530815,0.08012537,0.39262655,0.061581366,-0.21478295,-0.10492308,0.13462189,0.37559345,0.08685943,-0.6050563,0.08963515,-0.14653373,-0.45073298,-0.12000247,-0.2550058,-0.13937174,-0.17499802,-0.23927896,-0.1559827,-0.038252894,-0.47906798,0.28585768,-2.755661,-0.0034536633,-0.03112468,0.31281945,-0.090739466,-0.25465843,-0.10776811,-0.5058336,0.33535814,0.3712594,0.32740113,-0.6426013,0.47933695,0.4483228,-0.512949,-0.011121495,-0.50381124,-0.0045013386,-0.13805176,0.31665322,0.2058198,-0.049137082,-0.046864193,0.10133983,0.3932105,-0.08043657,0.11683413,0.3868874,0.43275002,0.02314513,0.54652876,0.11945171,0.51687753,-0.49462774,-0.15307088,0.40746883,-0.57631505,0.16863552,-0.12714039,0.2390572,0.44584754,-0.46290973,-0.8658969,-0.5485079,-0.07869165,1.2799321,-0.22879873,-0.4004256,0.18644166,-0.24702154,-0.38270357,-0.056254447,0.4370548,-0.24442948,-0.034903567,-0.79530627,-0.17868426,-0.20731552,0.46036983,-0.11697497,0.015377278,-0.47540477,0.6134847,-0.064715065,0.6143807,0.22456636,0.06296427,-0.48961893,-0.3878314,0.17021196,0.9971234,0.29684752,0.1128975,-0.3039129,-0.12266811,-0.29565793,-0.08576167,0.023481233,0.4027987,0.59844303,-0.05680705,0.18150724,0.22205268,-0.088725425,-0.037891053,-0.10669736,-0.15228918,-0.15167762,0.0039177537,0.57242644,0.5600799,0.02214557,0.26620844,-0.10117956,0.48614618,-0.2813689,-0.41959432,0.44056746,0.7174798,-0.053103685,-0.27482563,0.6721059,0.6329218,-0.2804486,0.52289706,-0.5108966,-0.52146536,0.3307789,-0.13115272,-0.35854444,0.25039557,-0.30866107,0.22073977,-0.7679597,0.27820203,-0.16428375,-0.5355011,-0.6435609,-0.21685852,-3.20441,0.07642678,-0.05933074,-0.24316955,0.020446202,-0.11711221,0.28163534,-0.31995425,-0.6328762,0.040776573,0.21670544,0.7849871,0.030793812,0.12842423,-0.18983713,-0.23152308,-0.35274893,0.19518049,0.17664048,0.21612194,0.003166863,-0.44196948,-0.106760375,-0.33402535,-0.2689082,-0.08233774,-0.6169612,-0.22136042,-0.17137739,-0.47300005,-0.39470258,0.60841703,-0.16506138,0.03179586,-0.21467781,-0.06771092,0.053681884,0.36950907,-0.014351545,0.060424592,-0.037986655,-0.16969666,0.103590176,-0.19243021,0.27945074,0.101772286,0.30142185,0.48484525,-0.23430751,0.009735942,0.33358663,0.62773687,-0.08150426,0.9158855,0.24319108,-0.14146666,0.21824837,-0.072721966,-0.29506308,-0.46853647,-0.10103637,0.039899588,-0.46203288,-0.34283277,-0.011157049,-0.31678146,-0.83794254,0.6480561,-0.013158645,-0.010870786,-0.04022324,0.30081266,0.28287786,-0.09215052,-0.03110582,-0.10314603,-0.098165266,-0.2346793,-0.4494795,-0.73119277,-0.36607555,-0.18907963,1.1971375,-0.063801214,0.022768881,0.20282312,-0.18990351,0.14600947,0.17574419,0.04432508,0.3349047,0.54839265,-0.008287149,-0.6081105,0.50654835,-0.36791167,0.026057128,-0.49479803,0.11125294,0.6439534,-0.5717251,0.30778715,0.38694313,0.15082853,-0.2887985,-0.45413324,-0.11525186,-0.06742388,-0.14765842,0.39405435,0.28534263,-0.83400905,0.43197605,0.21387495,-0.34014273,-0.7404777,0.37257704,-0.05147857,-0.13822632,0.005487174,0.24324901,-0.13220786,0.035223383,-0.25954565,0.2350289,-0.43333083,0.24639942,0.08494971,0.07301552,0.24350372,-0.26377922,-0.13144001,-0.5517639,0.02433631,-0.40870592,-0.184827,0.19198532,-0.07637029,0.06280664,0.4849933,-0.11868799,0.26944152,-0.22360682,0.042151,-0.07410832,-0.22769701,0.5021896,0.43569502,0.44384256,-0.49950457,0.7134371,-0.04044201,-0.17938504,-0.10269562,-0.13653709,0.42789847,-0.043533947,0.3997895,0.16219191,-0.05184012,0.3978234,0.84578055,0.27595228,0.40842488,0.12343449,-0.14946845,0.24751833,0.102243796,0.22890635,0.04765273,-0.5522905,-0.018717166,-0.17966437,0.15394072,0.3519264,-0.04289317,0.4558072,-0.18556203,-0.17250678,-0.025321977,0.098688684,-0.18454777,-1.2092268,0.36629698,0.09697627,0.73092884,0.4642934,-0.022982972,0.13246942,0.74389553,-0.20218603,0.051218707,0.16146533,0.07235665,-0.43242884,0.5024887,-0.47930908,0.52952254,-0.03183837,-0.075502045,0.030753851,-0.068084314,0.4512878,0.7286059,-0.14661859,0.09026183,0.039726846,-0.32231745,0.27755043,-0.2754051,0.32485336,-0.45397827,-0.22151329,0.84215134,0.42521116,0.41875786,-0.13242336,-0.008464226,0.045750234,-0.1902847,0.051808774,0.06459255,0.053764574,-0.13130732,-0.6434842,-0.030287743,0.535907,0.12984745,0.15185072,0.12489387,-0.29730394,0.15227522,-0.082203254,0.025492594,-0.14126173,-0.66157883,0.109108165,-0.19712658,-0.46465582,0.20525734,-0.25526962,0.26174816,0.24810909,0.0111240465,-0.39541158,0.20865329,0.34542665,0.6648199,0.048975978,-0.07145642,-0.18581973,0.24041025,0.20455508,-0.2961959,-0.06230923,-0.30772194,0.15948561,-0.65092033,0.49241415,-0.23236535,-0.444007,0.18287148,-0.17441435,0.086472996,0.6388159,-0.07972001,0.0046517765,0.121725,-0.03144049,-0.22663058,-0.19701259,-0.31739888,0.221277,0.19294678,-0.08580588,-0.0016688237,0.07680889,-0.10591873,0.44374543,0.15298517,0.3668546,0.39274612,0.10071135,-0.44158676,0.051701665,-0.19626196,0.8103323,0.04886015,-0.19866474,-0.3647789,-0.36021605,-0.2863696,0.47499964,-0.10313932,0.1999844,0.004500602,-0.35407728,0.68486166,-0.027644863,0.9570179,0.006824919,-0.26742798,0.12342776,0.6920723,0.08010251,-0.12498234,-0.43536767,0.9231657,0.49811682,-0.21232398,-0.1662769,-0.3159109,0.060311444,0.09930553,-0.28578582,-0.30893418,-0.14114161,-0.6892667,-0.1306678,0.23108837,0.3194058,0.092307374,-0.22734436,0.34102392,0.35952023,0.0068848007,0.2469341,-0.4460728,-0.07312828,0.39601216,0.08536607,-0.032356102,0.108722515,-0.47420225,0.30316025,-0.5380458,-0.037610773,-0.09106149,0.104948856,-0.09701105,-0.2924867,0.28542343,0.15166566,0.20876054,-0.43714553,-0.26945272,-0.14474164,0.38369873,0.18927884,0.33324313,0.6610401,-0.15842776,0.13455686,0.06512285,0.43281025,0.88407654,-0.19861817,0.14622235,0.2739053,-0.31964675,-0.62262547,0.3339143,-0.2551735,0.12160812,-0.028608058,-0.3051427,-0.42576385,0.38152885,0.15319525,0.02045243,0.09055488,-0.7008222,-0.14928968,0.2980681,-0.25176868,-0.2221163,-0.33530787,-0.16288887,0.46307102,-0.09856635,-0.31809667,0.09465376,0.39573961,-0.27437907,-0.51884854,-0.13277258,-0.42390174,0.24831216,-0.15058865,-0.15255561,-0.19684646,-0.05206695,-0.48646396,0.21133403,0.122876815,-0.35912177,-0.007417468,-0.3380558,0.06118244,0.7458125,-0.1479421,0.062294986,-0.47952327,-0.5254641,-1.0679134,-0.15898411,0.4178738,0.10706461,-0.12009557,-0.5977154,-0.14977501,-0.08258116,-0.18666275,-0.14581703,-0.4402223,0.33423337,0.09771071,0.33930993,-0.04662633,-0.9000672,0.06136053,0.09261497,-0.30713382,-0.41450542,0.58331627,0.013456737,0.6770624,0.08648141,0.12358594,0.2606618,-0.5799404,0.19576895,-0.17649624,-0.103381656,-0.52162516,0.17498708,156 +368,0.259644,-0.28361687,-0.32724425,-0.22603106,-0.32050818,-0.043737043,-0.15851292,0.4650742,0.22762774,-0.114385866,-0.09377235,-0.0630887,0.06003971,0.37884817,-0.14702071,-0.40596512,-0.13523017,0.07717792,-0.67457944,0.52139115,-0.46543676,0.14557444,-0.024577925,0.39388663,0.1963395,0.3552571,0.27524576,-0.0031942895,-0.04379045,0.015248888,-0.26142433,0.17905818,-0.23883371,0.24460836,-0.26166153,-0.22860742,0.06875398,-0.5835921,-0.049507294,-0.6289006,0.15413494,-0.81864303,0.36103576,-0.13250783,-0.123604715,0.046854753,0.36320367,0.18706499,-0.41855186,-0.22728209,0.17569228,-0.061382156,-0.12889601,-0.18185587,-0.10036316,-0.29416463,-0.4519226,0.0017141572,-0.523984,-0.36817694,-0.08503348,0.17364396,-0.2845997,0.07169683,0.00925654,0.52499425,-0.27492285,-0.05398897,0.19525059,-0.30718258,0.02285311,-0.55680466,0.020687955,-0.038379617,0.5166862,-0.0334897,-0.1892956,0.36767957,0.24971981,0.34657702,0.005328221,-0.26569957,-0.3061302,-0.3376229,-0.14260751,0.41138664,-0.10788213,-0.47502634,-0.122653976,0.12653296,0.2612574,0.28890234,-0.018731922,-0.16181563,-0.05563947,-0.21457568,-0.21208842,0.5030786,0.40229777,-0.3345646,-0.18199457,0.35539824,0.5030437,0.19434543,-0.32349423,-0.19972853,0.021456065,-0.45779952,-0.037636988,-0.036358826,-0.08143406,0.5095479,-0.18792745,0.19509046,0.6404038,-0.010568564,0.039354343,0.12352252,0.037884023,-0.10727429,-0.3354984,-0.298817,0.093155965,-0.49323803,-0.0044705444,-0.1809895,0.69900656,0.15093718,-0.72440356,0.48662043,-0.4413083,0.12087558,0.0014193909,0.47556877,0.61353797,0.38069144,0.4267339,0.5330091,-0.13964258,0.16655661,-0.053384222,-0.19651066,-0.004743759,-0.21008113,0.27892172,-0.5333896,0.29001254,-0.050652165,0.12981398,0.15001932,0.2291723,-0.37991047,-0.20862296,0.32597762,0.7821687,-0.23141988,-0.13964045,0.7110649,1.0666718,0.8824574,-0.0031655112,0.9985711,0.10370939,-0.20982419,0.25946206,-0.1700504,-0.6814116,0.2110556,0.3804519,0.1287566,0.3004971,-0.15510297,0.040271554,0.30320606,-0.25656632,0.014437629,0.01435491,0.30620617,0.30305025,0.15644631,-0.48838446,-0.38776472,0.088072285,-0.08115622,0.22112177,0.2716579,-0.21340752,0.34382758,-0.0024382912,1.3726301,0.16244313,0.06272341,0.14375658,0.59864056,0.24390559,-0.08100439,-0.22506198,0.46199855,0.20707461,-0.013815676,-0.5694414,0.34873036,-0.3110416,-0.35633415,-0.11524116,-0.5341719,-0.20061854,0.09780174,-0.43200126,-0.17512724,-0.10123776,-0.36030585,0.31780624,-3.1834128,-0.23213132,-0.2070658,0.2951897,-0.19193847,-0.11432112,-0.11108679,-0.51459444,0.2516487,0.30373958,0.5439325,-0.65869886,0.35101542,0.4821816,-0.59013945,-0.2441033,-0.6792391,-0.09184112,0.035353094,0.4191814,0.09619596,-0.09858014,-0.09578143,0.33169127,0.6293022,0.24650156,0.11065673,0.39891073,0.4120819,0.1685276,0.5691508,-0.1642361,0.5323717,-0.40819153,-0.08647905,0.19904956,-0.42261198,0.11676451,-0.024577217,0.17836687,0.61162376,-0.43796116,-0.8209468,-0.5681023,-0.09279333,1.0011122,-0.27937296,-0.31534848,0.25316116,-0.51937956,-0.02008398,-0.009822331,0.6504529,-0.15318553,0.014503645,-0.6040157,0.16776218,-0.085095,0.20988862,0.05547818,-0.050707586,-0.3009446,0.6694189,0.00095509633,0.7093324,0.1827646,0.07450471,-0.3484667,-0.17310336,0.08262352,0.4506101,0.28333798,0.0425339,-0.13361399,-0.028939188,-0.1459041,-0.22603662,0.0493624,0.5702023,0.5981739,-0.0061280853,0.13916592,0.28049943,-0.1219046,0.019379305,-0.032662265,-0.13967557,-0.1235376,0.14498094,0.40757447,0.66495526,-0.18983081,0.33386856,-0.18363507,0.25382432,-0.14303373,-0.37632918,0.5527455,0.40389067,-0.20743315,-0.015382886,0.3563537,0.6340106,-0.37254557,0.39597517,-0.5810489,-0.13633706,0.60756934,-0.20539369,-0.3306643,0.13066573,-0.2152494,0.13452911,-0.7393775,0.103930116,-0.25357965,-0.40483683,-0.3563278,-0.12242661,-2.781161,0.13329211,-0.05029908,-0.1496426,-0.35578424,-0.14407173,0.1895989,-0.59890014,-0.617586,0.1881312,0.22391541,0.5525965,0.008211947,0.012572224,-0.27607858,-0.24068192,-0.1300301,0.21739472,-0.09607147,0.39864832,-0.16618177,-0.32972303,-0.07282384,-0.07391524,-0.39802524,0.20229085,-0.59424365,-0.34181422,-0.005018597,-0.5871512,-0.365554,0.58936596,-0.36463532,-0.071083374,-0.17926352,0.024483675,-0.21027975,0.190668,0.14578459,0.07868058,0.08755106,0.0170567,0.17006506,-0.32552096,0.4409437,-0.10675954,0.35659003,0.13224451,0.18055367,0.23509003,0.45262554,0.63020086,-0.1050045,1.1162478,0.28329772,0.035012696,0.3257056,-0.29753074,-0.277489,-0.4234354,-0.17453624,0.054266963,-0.31479207,-0.40853855,0.07697427,-0.28356847,-0.6736933,0.5048661,-0.015079649,0.19349463,0.025816867,0.21030481,0.37575525,-0.2568258,0.11461939,0.034920108,-0.07721069,-0.58012825,-0.28816968,-0.6730159,-0.40405586,-0.027245846,0.70548135,-0.27131134,-0.017366324,-0.07364005,-0.33676454,-0.052980926,0.076374784,0.25142828,0.5318549,0.37436622,-0.120873824,-0.5561799,0.34006855,-0.15546012,-0.2360743,-0.26041752,0.043891884,0.48453146,-0.6572998,0.5466906,0.30912134,0.03883149,-0.23984157,-0.4553268,-0.17248018,-0.053156532,-0.1116989,0.36155066,0.27605578,-0.83234733,0.48488045,0.13506249,-0.28947544,-0.7663712,0.32656437,-0.05123288,-0.2356189,-0.2827368,0.32773826,0.24855736,-0.12855932,-0.13982932,0.023770984,-0.4492447,0.12160409,0.13771126,0.05961892,0.34577736,-0.097198,-0.14668486,-0.6153137,-0.065242,-0.53078574,-0.2092136,0.3698022,-0.0032385257,0.052544467,0.073003136,-0.20104574,0.25423566,-0.2757819,0.08657069,-0.03341437,-0.26845208,0.20273975,0.3483536,0.39033172,-0.39838272,0.50538003,-0.07021483,-0.038976345,0.11090138,-0.07942335,0.24237911,0.10339272,0.33233118,-0.15248747,-0.20445445,0.35951567,0.74691546,0.1727203,0.20586458,0.00642676,0.0018296157,0.4189512,-0.09304415,0.08565541,0.00837384,-0.4396305,0.011345829,-0.18647195,0.05733301,0.45697615,0.09494995,0.27118054,0.037944287,-0.20894805,0.019652545,0.13672575,-0.14582907,-1.104643,0.3608701,0.17040335,0.8277073,0.36350343,0.0832823,-0.23075853,0.85254973,-0.18990621,0.11230256,0.540541,0.03804813,-0.35900444,0.76887983,-0.54693866,0.6176015,-0.1127488,-0.18933542,0.090761624,0.11015455,0.3223557,0.6108503,-0.2537617,-0.08578014,0.13327824,-0.30609432,-0.014438978,-0.3034213,-0.058580782,-0.27074724,-0.2927445,0.61217743,0.26035136,0.29611903,-0.22662543,-0.08456213,-0.012378729,-0.18619892,0.15875684,-0.07925938,-0.030048082,0.0859782,-0.5939054,-0.09530194,0.5111795,0.14830554,0.2259804,-0.22038756,-0.3196357,0.101305984,-0.09336085,-0.047560513,-0.06532908,-0.6034693,0.17949149,-0.08809216,-0.5891232,0.6683293,-0.31041256,0.097497664,0.1801783,-0.012896786,-0.10392622,0.3748934,0.19342352,0.63072395,-0.18601899,-0.03598873,-0.27978894,-0.07861161,0.15056743,-0.12385874,-0.11384571,-0.59015787,0.08040134,-0.5073469,0.5743356,-0.07939295,-0.3680931,0.06238232,-0.23764937,0.11886519,0.5944141,-0.08743771,-0.05534171,-0.24509935,0.042186685,-0.28625378,-0.20651178,-0.25688517,0.3883791,0.22332677,0.021235421,-0.25152695,-0.19088197,-0.13781509,0.50678337,-0.09907466,0.44524637,0.127714,0.13811672,0.016156044,0.16885301,0.104589276,0.41780588,0.1837034,-0.102706976,-0.48277506,-0.10449159,-0.21112905,0.218876,-0.017141074,0.19684707,0.22849762,-0.2282341,0.7127562,-0.26200646,1.0479903,0.059878316,-0.38000408,0.09479634,0.54396343,-0.014824471,0.052159984,-0.28299975,0.75150746,0.4066871,0.00092802726,-0.09205706,-0.49054703,0.1445519,0.25477168,-0.20797357,-0.108273916,-0.02497398,-0.34234124,-0.34819874,0.22501312,0.06048631,0.2883241,-0.094787955,0.03527196,-0.0043829978,0.097357966,0.41424316,-0.48449492,0.067153625,0.17570639,0.13857175,0.060280394,0.18579504,-0.44531295,0.42167085,-0.79299057,0.16762178,-0.55199987,0.15732078,-0.27887827,-0.26728785,0.039704595,0.018004784,0.39926836,-0.1672372,-0.38665575,-0.11130522,0.39598665,0.055783637,0.19045234,0.3824404,-0.14271034,0.0068188733,0.18685792,0.6406029,0.9303905,-0.33071455,0.007136666,0.096616544,-0.31739804,-0.5972997,0.28663453,-0.32097343,0.034274034,0.13653763,-0.06771143,-0.47763994,0.16634925,0.43380684,0.18831716,-0.1395957,-0.48797533,-0.26784185,0.20592692,-0.27090457,-0.15042911,-0.21217524,0.18512893,0.62278694,-0.1578429,-0.24616815,-0.022247758,0.33188888,-0.11757923,-0.55201495,0.07716741,-0.34383664,0.3865791,0.11047195,-0.28873867,-0.112744294,0.013803823,-0.4316661,0.20650804,0.2086113,-0.41303703,0.051523093,-0.31568274,-0.025219208,0.96987677,-0.04661374,0.055767827,-0.47268963,-0.5074379,-0.7594796,-0.4104844,0.22490685,0.03383885,-0.10283134,-0.34274986,-0.031742077,-0.10270572,-0.34154627,0.082537435,-0.42874983,0.3076407,0.052837413,0.47756514,-0.2211846,-0.7445871,-0.062435094,-0.0140061295,-0.09182279,-0.44768095,0.5125008,0.07397656,0.75101143,0.010250734,-0.092172526,0.041250903,-0.24103464,-0.033438485,-0.39676523,-0.173838,-0.47823277,0.13720272,157 +369,0.56470436,-0.10230791,-0.43650874,-0.20450218,-0.30269518,0.13454127,-0.09751864,0.6886797,0.21183312,-0.400059,-0.22941409,-0.26065636,0.09091498,0.11647499,-0.23153679,-0.5397581,-0.017383235,0.18922485,-0.5130467,0.46707445,-0.49611112,0.27702045,0.023606922,0.3880168,0.16994455,0.14430894,-0.17651229,-0.09868921,0.02576038,-0.073046006,-0.07788855,0.52193606,-0.48274752,0.15331051,-0.1771245,-0.20823945,-0.072416134,-0.45789972,-0.37670544,-0.7880802,0.48818994,-0.907712,0.4352719,0.038684342,-0.3727953,0.2919093,0.22205862,0.308607,-0.1913248,-0.12905589,0.17095986,-0.03849841,-0.11042287,-0.16131398,0.034141354,-0.1639103,-0.5686668,-0.056099858,-0.29935718,-0.2652854,-0.22025275,0.21323745,-0.3719592,0.034182344,0.035533387,0.5397352,-0.40281558,0.24916579,0.33667436,-0.1904372,0.33111018,-0.63256973,-0.103972726,-0.066765,0.40509874,-0.17717037,-0.31304985,0.22258453,0.47779307,0.29502895,-0.16150191,-0.15880577,-0.117071874,-0.18712418,0.10355326,0.41909748,-0.1798426,-0.4081474,-0.051672306,0.017237255,0.045609746,0.24882023,0.14293763,-0.3224577,-0.18597889,0.020138958,-0.19239175,0.34587505,0.41586322,-0.22425559,-0.17636426,0.26923874,0.6281463,0.23369028,-0.03120543,0.064434595,0.07863891,-0.6225119,-0.07927499,-0.04241677,-0.33723933,0.49062848,-0.19021018,0.1256338,0.88629085,0.031487912,0.050088733,0.11840105,0.21185505,-0.0075243074,-0.5360133,-0.40791374,0.30906162,-0.50612533,0.24594526,-0.104721084,0.80862087,0.08655804,-0.5388302,0.329156,-0.6546182,0.06623209,-0.21659507,0.4026669,0.6088705,0.36632687,0.3136125,0.62453455,-0.41611862,0.007932736,-0.029455915,-0.26197994,0.13379487,-0.21766426,0.112716794,-0.44837528,0.12944582,-0.041449036,-0.035499074,0.11547637,0.2992976,-0.51701087,-0.112766266,0.08784572,0.80434245,-0.29406017,-0.045558173,0.6256928,0.90194476,0.8172659,0.124581136,1.1388315,0.12662731,-0.19326197,0.2619987,-0.092062,-0.83145934,0.27391663,0.39963788,-0.07946294,0.026542677,0.12247695,-0.00960442,0.41197035,-0.38464847,0.027399106,-0.20284592,0.3930911,0.18336327,-0.07309641,-0.4456808,-0.25217432,-0.0015866586,0.007860665,0.096517764,0.2661275,-0.017025596,0.36450776,0.048692826,1.4985505,-0.076127276,0.08755125,0.17326045,0.32031175,0.2279314,-0.05281114,-0.17222813,0.44738653,0.32535443,0.12807782,-0.5578278,0.2623197,-0.12991698,-0.32444978,-0.106015325,-0.40153116,-0.06742274,0.04703578,-0.54030895,-0.14228593,-0.22777669,-0.07542972,0.4824898,-2.7422698,-0.27405596,-0.138742,0.5106711,-0.13062872,-0.31717777,-0.122453704,-0.46277407,0.44812125,0.24451189,0.53405774,-0.7149029,0.36411792,0.43347573,-0.60814714,-0.1461611,-0.624041,-0.19379576,0.009180584,0.11384183,-0.013619845,0.028329602,0.0064797485,0.10084257,0.3948224,0.0017699322,0.19178881,0.3570022,0.39172116,0.11390613,0.47626463,-0.123762265,0.4613553,-0.13319549,-0.18885343,0.35098556,-0.2736035,0.21712835,-0.12223242,0.04108144,0.6082324,-0.40080908,-0.8238657,-0.81726867,-0.19887514,1.0572397,-0.35303536,-0.3259199,0.26173276,-0.49641278,-0.28125104,0.020614607,0.47516897,-0.053756863,-0.15739505,-0.8337626,0.024315357,0.026022771,0.15271917,0.07263003,-0.22874689,-0.36775398,0.7171189,-0.061753996,0.49579427,0.3201336,0.068801194,-0.28261024,-0.4202877,-0.03465035,0.644152,0.420409,0.18898186,-0.24456868,-0.15775825,-0.44385692,-0.056421723,0.040010445,0.6136491,0.6414447,0.026768114,0.13881914,0.16749188,-0.04442898,0.107765116,-0.20700908,-0.3196531,-0.08850013,-0.076693416,0.4954597,0.52013654,-0.29998192,0.31252903,0.007414571,0.23592618,-0.18888818,-0.49740487,0.45763278,1.0974075,-0.15280865,-0.33126554,0.61619264,0.43489498,-0.36625692,0.25817373,-0.49967963,-0.11090083,0.52308327,-0.19674729,-0.46069846,0.15502839,-0.40602794,0.19868548,-0.8508075,0.27704376,-0.43234178,-0.50877553,-0.5454182,-0.0741449,-2.665417,0.2729616,-0.31320056,-0.0910626,-0.23541306,-0.09116038,0.24081244,-0.6691123,-0.66020715,0.2741837,0.06292032,0.6793793,-0.13161477,0.072462164,-0.28381118,-0.17404163,-0.16155584,0.08699487,0.13632819,0.34204945,-0.024151292,-0.35833424,-0.01819803,0.08811273,-0.36530527,0.10597546,-0.6384826,-0.5343884,-0.07534132,-0.5357145,-0.30589625,0.57247025,-0.42785043,0.0432005,-0.06651783,0.020176237,-0.21754369,0.24826394,0.093344435,0.2177207,-0.06368422,0.019621944,-0.06098083,-0.35519406,0.3987785,-0.009869771,0.070455745,0.15808812,-0.12132304,0.025362406,0.47546124,0.56012243,-0.042215936,0.88969773,0.33013293,0.05594814,0.2685326,-0.26089722,-0.24416913,-0.42149714,-0.19352008,-0.118665576,-0.3907679,-0.36599904,0.00026419334,-0.50749904,-0.77099353,0.46010494,0.023237688,0.11475517,0.078104325,0.31992552,0.5655133,-0.20401023,0.02912658,-0.008641796,-0.068658255,-0.73668534,-0.090996996,-0.5787922,-0.47036844,0.1901138,0.9373884,-0.46317333,-0.033120178,-0.011723467,-0.25121352,0.029965412,0.23538479,-0.08626912,0.17474209,0.7273753,-0.21458493,-0.60130256,0.4334321,-0.115887865,-0.44185314,-0.6667977,0.21470831,0.482871,-0.71215045,0.72829735,0.4098909,-0.026397357,-0.24695788,-0.54819936,-0.2434349,-0.060633864,-0.35288757,0.48392007,0.20192853,-0.6417304,0.32756096,0.52262205,-0.15279981,-0.8382955,0.6755208,-0.15594997,-0.44497028,-0.0045290166,0.41586393,0.12917997,0.073298626,-0.0026914987,0.18567821,-0.4513852,0.1581519,0.14796121,-0.14905034,0.33337718,-0.20780103,-0.045170598,-0.7777713,0.022270283,-0.49424762,-0.18837403,0.2940357,-0.013556078,0.09815836,0.18929388,0.23425981,0.40502384,-0.265299,0.096851066,-0.19620048,-0.23525012,0.2553646,0.43889925,0.37055758,-0.35746732,0.6469053,-0.109545186,-0.07948696,-0.05528326,0.23349622,0.4271728,0.140198,0.48975188,-0.10201873,-0.123004794,0.27653974,0.8305372,0.055123586,0.44610986,0.02812004,0.009576653,0.120931745,0.09297216,0.26022127,-0.04330373,-0.5754829,-0.012341874,-0.2985143,0.15237032,0.58298194,0.16480896,0.22176567,-0.05131682,-0.47721025,-0.07329669,0.20340843,0.09408734,-1.152314,0.45717192,0.17680426,0.9018502,0.3924602,-0.019379368,0.04718674,0.6403925,-0.053764265,0.1638144,0.2409678,-0.11875738,-0.48112127,0.49734685,-0.88286227,0.33406943,-0.19161701,-0.038513858,-0.025310036,-0.029095283,0.42057815,0.5570742,-0.07773582,-0.07509671,0.055336017,-0.38499346,0.30669436,-0.5107492,-0.11656903,-0.57264143,-0.123491935,0.54284126,0.6904416,0.3530025,-0.3409789,0.05730327,0.11340206,-0.07653912,0.2018368,0.031676497,0.12680689,0.0727349,-0.59631383,-0.2280573,0.5297937,0.089557886,0.19805492,-0.12397038,-0.18196736,0.41244814,-0.16576095,0.06879007,-0.20249571,-0.79074275,0.045528002,-0.39364657,-0.5258283,0.41578487,-0.007438349,0.10708295,0.26208416,0.07366361,-0.22644354,0.5135699,-0.06134683,0.8328425,-0.077856064,-0.1938506,-0.56344855,0.18466058,0.09497663,-0.15061636,-0.059135463,-0.33032894,0.06970892,-0.38005129,0.55798745,-0.013190304,-0.16190067,0.033423632,-0.22579013,0.059107106,0.5725065,-0.318382,-0.13571331,-0.10500673,-0.31573063,-0.32465172,-0.262661,-0.13519885,0.19864567,0.25923616,0.100991376,-0.18267235,-0.12245655,-0.3152959,0.42059895,0.08284596,0.5206953,0.46687603,-0.029836807,-0.14759077,-0.18306199,0.3471085,0.45568052,-0.2012047,-0.36258444,-0.33978266,-0.46706003,-0.2447371,0.31110176,-0.0704266,0.47880584,0.089388795,-0.08056191,0.8824784,-0.13865165,0.81631476,0.040765297,-0.32364255,0.05952796,0.48282257,-0.044119976,-0.22723566,-0.22270383,0.63581324,0.4515857,-0.061381347,0.016984234,-0.2776902,0.09586496,0.20827615,-0.0959007,0.03885723,-0.03118824,-0.5850197,-0.28075522,0.11046115,0.26619858,0.10531207,-0.11739851,0.05573247,0.17534415,-0.101108156,0.2528366,-0.50322825,-0.13425054,0.124887586,0.27413276,0.1614177,0.15920438,-0.43047413,0.47672155,-0.43605974,0.015544525,-0.3807854,0.11460631,-0.267587,-0.3022323,0.05622852,-0.052428514,0.34763628,-0.27334052,-0.26253954,-0.32183507,0.3657748,0.2464682,0.019197537,0.6037504,-0.23252238,0.049074285,0.22630885,0.64710236,0.8806222,-0.11106939,-0.1259689,0.33819062,-0.45546558,-0.54384613,0.3426816,-0.30399635,0.20748858,0.114213146,-0.0090872925,-0.57320565,0.21277039,0.28291997,0.06026807,-0.06141085,-0.6844157,-0.17136593,0.39640602,-0.3171166,-0.19226667,-0.28583506,0.15544142,0.5400335,-0.18948875,-0.24635455,-0.024400055,0.19868053,-0.117981195,-0.55520934,-0.02453242,-0.47923756,0.31600067,-0.023601582,-0.21597417,-0.075591125,0.14177606,-0.45367602,0.2955559,0.0045655966,-0.27290013,0.097289525,-0.32626438,0.048659682,0.9415125,-0.12767169,-0.031879455,-0.52526677,-0.43647653,-0.7180176,-0.23724492,0.5060329,0.15304263,0.13979553,-0.51646644,-0.012306367,-0.028822038,0.003328698,-0.11806989,-0.29945084,0.57357776,0.15936327,0.38594308,0.0054717874,-0.8099414,0.007334358,0.0203473,-0.23482764,-0.60738915,0.414313,-0.0073097176,0.75294966,0.036010046,0.15961719,0.08521525,-0.30624777,0.045765407,-0.2959154,-0.13221331,-0.7155954,-0.027078971,158 +370,0.41588327,-0.0948121,-0.24838077,-0.34191632,-0.33070448,0.3706344,0.035099287,0.4080328,0.21488364,-0.38794687,-0.07565992,-0.22646293,-0.13054131,0.36364254,-0.12268007,-0.766652,-0.045244224,0.1848865,-0.7428145,0.46576223,-0.62254447,0.33802825,0.21925464,0.28850827,0.0667628,0.33887735,0.17241308,-0.23531188,-0.11099564,0.05135887,-0.35434562,0.0012020959,-0.5724779,0.2919719,-0.10001775,-0.18516932,0.06516802,-0.34604523,-0.29919735,-0.7075261,0.32883957,-0.77782524,0.39682886,-0.07699953,-0.30222479,0.24046429,-0.15419948,0.27625462,-0.53241044,0.071470134,0.13836244,-0.19517322,0.02057679,-0.17952935,-0.3482857,-0.47808716,-0.62813705,0.2660943,-0.34123746,-0.21959233,-0.26077718,0.22335932,-0.22037648,-0.046037655,-0.20269455,0.42663407,-0.4075833,0.029593358,0.2106644,-0.20556033,-0.11598456,-0.33249044,-0.13569923,-0.11809981,0.12877516,0.08487063,-0.2737019,0.31993666,0.40967992,0.62158614,0.13405249,-0.39186284,-0.028892407,-0.02055736,0.16273618,0.41420192,-0.10542349,-0.22245142,-0.2810997,-0.07155947,0.065010294,0.089176215,0.047540724,-0.51595175,0.07929572,0.18116216,-0.24745558,0.13181263,0.4594448,-0.49944285,-0.3137471,0.38620922,0.4454133,-0.07532481,-0.045438994,0.04028558,-0.08452863,-0.5338203,-0.2510781,0.33446196,-0.24818613,0.6567725,-0.2875302,0.013359575,0.7684707,-0.14943801,0.15092553,-0.15479358,-0.05053421,-0.07311877,-0.33169967,-0.16574326,0.18304737,-0.43275142,-0.0015388684,-0.34291863,0.81665975,0.2979612,-0.68518037,0.39522478,-0.51630545,0.29310253,-0.22086641,0.628897,0.70293415,0.4176693,0.1642913,0.8885962,-0.6446204,0.077559434,-0.08727664,-0.30281714,0.14438236,-0.2627898,0.16121683,-0.4117894,0.15016922,-0.029448202,-0.044228055,-0.13705339,0.23281881,-0.50175107,-0.048451122,0.032697793,0.8113116,-0.44628668,-0.10222169,0.7711611,0.8468042,0.95881176,0.03971861,1.6167641,0.7025963,-0.2873716,0.21751972,-0.29303393,-0.6903367,0.1306879,0.28554222,0.22919667,0.24258675,0.08390869,0.06388772,0.47534752,-0.4994681,0.22347197,-0.4025447,0.275189,0.015793357,0.071150385,-0.37407556,-0.38034487,0.11220132,0.0025502103,0.002211426,0.35208493,-0.15137076,0.3084168,0.13014095,1.639183,0.21592487,0.009089296,0.084002934,0.37553403,0.14717595,-0.11718651,-0.06495168,0.29895657,0.35430595,-0.14904793,-0.61476475,0.042630605,-0.2570007,-0.55794615,-0.107998215,-0.39012915,0.086998,-0.20182864,-0.49299508,-0.28778675,0.09200271,-0.41898155,0.4654886,-2.195684,-0.23934929,-0.13378465,0.29835325,-0.33089924,-0.3444481,-0.23466964,-0.5442347,0.2911457,0.43422192,0.3987229,-0.7968518,0.4103083,0.29339138,-0.25682086,-0.14389895,-0.7711617,0.06192978,-0.105476424,0.23685157,0.041714013,0.043075465,-0.33569643,-0.082029715,0.6501962,0.09571511,-0.0034970236,0.20503987,0.40865746,0.1266966,0.522446,0.17259666,0.5944942,-0.2792433,-0.13455406,0.40793753,-0.4869155,0.37350872,0.11088221,0.12217973,0.41622764,-0.5339172,-0.65477085,-0.77262026,-0.5756821,1.3245599,-0.48241332,-0.28566226,0.2040218,-0.11202087,-0.032750778,-0.06356959,0.33828282,-0.19968772,-0.12751304,-0.61000407,0.07562182,0.18440633,0.23100345,-0.10161914,0.20827125,-0.072384104,0.70661986,-0.23484504,0.54814595,0.35089558,0.14301172,-0.013553091,-0.39793792,-0.005560409,0.80702305,0.40665922,0.098598056,-0.04583363,-0.23631246,-0.22256054,-0.32926682,0.14140324,0.3934175,0.86909956,0.06455055,0.011103828,0.4951982,-0.15857773,-0.110576235,-0.038177755,-0.45466137,-0.06480188,0.072907075,0.6037598,0.56995595,-0.17669985,0.26306814,-0.27271968,0.3088436,-0.13388816,-0.5060999,0.62071174,0.91829693,-0.15309632,-0.08612696,0.4548766,0.46431404,-0.5218438,0.3705299,-0.595303,-0.29662806,0.73704576,-0.052803595,-0.34729484,-0.071831904,-0.2685441,0.097244345,-0.84370995,0.37588573,0.13417505,-0.54285586,-0.5566598,-0.1753659,-3.5965075,0.073279575,-0.26837087,0.082032405,-0.02628027,-0.057720132,0.21827944,-0.36465687,-0.54791564,0.0799935,0.045982268,0.4668116,0.03616182,0.21518342,-0.27826837,-0.0744312,-0.49255344,0.09059576,0.0465038,0.30638048,-0.002711773,-0.27560395,0.012708308,-0.38332915,-0.40670657,0.1640754,-0.7242957,-0.5679241,-0.14963152,-0.5071103,-0.41641292,0.6802149,-0.4224184,0.029515585,-0.21469143,-0.03846138,-0.35403174,0.37870362,0.22842298,0.22286876,0.021316128,-0.10608868,-0.25280955,-0.44591427,0.2608418,0.20337509,0.306211,0.35903051,0.004635151,0.13029845,0.51368695,0.6246173,0.04568804,0.5659866,0.24443193,-0.08776535,0.39394155,-0.40365213,-0.12721226,-0.6779036,-0.34024474,-0.17619388,-0.32944188,-0.4828698,0.09702701,-0.3813901,-0.8868441,0.1484295,0.047972757,0.005746258,-0.03847801,0.16578017,0.56266487,-0.053468134,0.0694958,-0.13494709,-0.13998827,-0.7031205,-0.53882354,-0.78792506,-0.48259595,0.31646466,1.1916922,-0.0818112,-0.34546104,-0.1457653,-0.35339618,0.07489251,0.07458792,0.047705326,0.11639751,0.487216,-0.15274525,-0.9000813,0.4447122,-0.021273136,-0.14161527,-0.54655117,0.2273686,0.8286374,-0.80135924,0.5545205,0.2571499,0.28114524,0.21278344,-0.39598912,-0.5064942,0.013919779,-0.15665889,0.57370317,0.042822056,-0.4815507,0.46223143,0.24126588,-0.04226286,-0.7617988,0.332504,-0.07913886,-0.11005689,0.1439463,0.37988934,0.074309506,-0.1674846,0.0016832097,0.20036401,-0.6189385,0.16838405,0.5174197,0.1049999,0.30502298,-0.10322236,-0.37645006,-0.6472761,-0.18471844,-0.64290196,-0.24656418,0.032696463,0.13469759,0.091376565,0.10874182,0.09299852,0.36854005,-0.09188897,0.17441249,0.014067884,-0.2414511,0.37026078,0.36307615,0.27210256,-0.6138293,0.58772534,0.051062744,0.19193403,-0.16837958,0.032254968,0.32818684,0.5580617,0.28898028,-0.12055869,-0.18962869,0.23401022,0.7065991,0.19574241,0.33506447,0.22975723,-0.22099617,0.567798,0.20491399,0.10118651,-0.018268755,-0.3431709,0.012245183,0.11121465,0.1736984,0.26719567,0.14308806,0.28589723,-0.057516437,-0.17239234,0.14952837,-0.105035834,-0.12592156,-0.96633244,0.2321734,0.22168009,0.65557545,0.49268132,-0.17567587,-0.08029703,0.5990222,-0.3611676,0.16456263,0.34786156,-0.21621974,-0.5799202,0.5942798,-0.60067624,0.5324581,-0.29937726,0.0384846,-0.03908602,0.44266525,0.35612196,0.7925504,-0.14941646,0.017481651,-0.12669256,-0.2934498,0.2594244,-0.4438893,0.2237564,-0.5831247,-0.3777823,0.5589689,0.33187985,0.2503039,-0.36763206,-0.0704835,0.08135707,-0.26566193,0.23513849,-0.09670971,-0.06273596,0.03012985,-0.6793278,-0.37887526,0.5702025,-0.139739,0.18619315,0.26140442,-0.39785868,0.23881468,-0.31616345,-0.103020735,-0.07569631,-0.7257832,-0.029397717,-0.10303811,-0.44491264,0.2401596,-0.29004836,0.24331631,0.29485783,0.05405267,-0.4116349,0.16940583,0.08069553,0.83753747,-0.051535375,-0.3083364,-0.45627955,0.08054324,0.24369486,-0.3575346,0.040483467,-0.34624085,-0.095137894,-0.5468631,0.52191645,-0.12744701,-0.2089479,0.17097382,-0.3298996,-0.14683338,0.45922583,-0.34993172,-0.13821413,-0.0741594,0.0002743772,-0.20395635,0.120890126,-0.3533678,0.31791696,-0.0536623,0.067922235,0.06379177,-0.20769456,-0.09284948,0.33519584,0.030232599,0.14871791,0.17141758,-0.19594659,-0.34675875,-0.030833462,-0.07136113,0.22472844,0.23658137,-0.2613771,-0.12498684,-0.13053587,-0.16236314,0.39391807,-0.16371116,0.30463725,0.06729723,-0.57666,0.6754561,0.086598106,1.2532305,0.083136,-0.30405086,-0.011827354,0.64916116,0.21513608,0.1401635,-0.30295762,0.6996144,0.6100432,-0.06631563,-0.21479617,-0.44046268,-0.14728843,0.33154148,-0.14744224,-0.15760449,-0.025048703,-0.73106396,-0.31817594,0.108535126,0.085591376,0.32410425,0.2057191,-0.13241683,0.063234635,0.061269227,0.62290716,-0.3112292,-0.08535918,0.31765842,0.17815502,0.17335589,0.28454518,-0.27969548,0.41375145,-0.7391435,0.2872134,-0.3168805,0.07438586,-0.08709826,-0.18024479,0.22204757,0.07286616,0.30505463,-0.36599785,-0.3964689,-0.26984242,0.8189582,0.22148784,0.4171899,0.8096756,-0.2477424,-0.26433858,0.2899299,0.5679838,1.2706548,-0.048458498,0.11295668,0.23209153,-0.44507715,-0.5973271,0.42150313,-0.29256895,-0.015745917,-0.009801714,-0.27888626,-0.44954962,0.31909984,0.23492475,-0.19659702,0.179665,-0.571732,-0.23569645,0.40646103,-0.2846337,-0.36581206,-0.31911057,0.34378514,0.723199,-0.38788083,-0.22564761,0.13351658,0.182779,-0.3037633,-0.5793727,0.0032650402,-0.6405593,0.39513135,0.14554192,-0.35311028,0.077297725,0.16613623,-0.3974778,0.15622628,0.24770102,-0.39940193,0.16871691,-0.11037282,-0.1356976,0.93293923,0.22728859,0.17885455,-0.7506267,-0.47277525,-0.8810634,-0.42766762,0.56463397,0.13256977,-0.023849752,-0.29387283,-0.19880523,0.10589348,-0.1525602,0.10993755,-0.5709661,0.4051014,0.25429347,0.32473317,0.07848507,-0.76149756,-0.01696888,0.019966569,-0.09397848,-0.35397336,0.4608574,-0.18770607,0.7827798,0.022140231,-0.016369447,0.023838218,-0.49848816,0.222592,-0.39037916,-0.2642713,-0.45436716,0.09653083,159 +371,0.6087888,-0.15858945,-0.6099957,-0.029980628,-0.33182952,0.24237673,-0.22818817,0.37888074,0.44460505,-0.53821015,-0.11265415,-0.18549761,-0.05737589,0.2653741,-0.15177163,-0.7027238,0.22145279,0.043116994,-0.46570608,0.6815462,-0.35212797,0.5320049,-0.04438321,0.2268562,-0.025009671,0.18406503,0.13369773,0.34215733,-0.22223864,-0.059776362,-0.045037057,0.24445851,-0.48041844,0.22213541,-0.13831513,-0.33474058,-0.086294614,-0.4631514,-0.1621213,-0.9131028,0.3148623,-0.63250864,0.58944905,0.09788515,-0.23210867,0.15129979,0.23331451,0.078529514,0.015841322,-0.06265126,0.14407232,-0.29001325,-0.2062143,-0.011186889,-0.42730767,-0.50307214,-0.59734327,-0.051656596,-0.66866165,-0.17917895,-0.23819682,0.2008575,-0.32199854,-0.22663888,-0.07633155,0.6852568,-0.25758433,-0.22237982,0.24618243,-0.3091069,-0.06240776,-0.9021654,-0.22891389,0.08299871,0.2619123,-0.0052503007,-0.22353564,0.32515928,0.3247344,0.4254392,0.14590825,-0.4375897,-0.32120213,-0.14018719,0.111882105,0.49835938,-0.26458073,-0.33658847,-0.29831415,0.066681504,0.5506059,0.24976589,0.5306701,-0.1367726,-0.022787264,-0.08315546,-0.18133442,0.6774368,0.58118683,-0.33789608,-0.19186573,0.37048006,0.6926264,0.09438666,-0.21688974,-0.15952751,-0.17087851,-0.4400637,-0.06747301,0.30100352,-0.086699985,0.14202021,-0.079673246,0.055858303,0.5062746,-0.22578563,0.06953224,0.2659015,0.15800788,0.13097109,-0.336603,-0.09845649,0.25986707,-0.34279224,0.06762794,-0.43150297,0.53733426,0.15686344,-0.4987683,0.42522398,-0.51863545,0.21087177,0.22592619,0.64151466,0.9659502,0.32923064,0.14465818,0.8531526,-0.18647313,0.1636931,-0.07456454,-0.045927938,-0.032293506,-0.19367221,0.39248064,-0.5174428,0.0079069985,-0.11617883,-0.16544071,0.21670175,0.50133693,-0.7238463,-0.31642273,0.2040604,0.79908806,-0.17457655,-0.21538067,0.9078441,1.2102667,0.83185035,-0.09169544,1.0248871,0.16996427,-0.124262914,-0.24109201,-0.31862068,-0.47901314,0.19332634,0.33931902,0.2493547,0.52612114,-0.016784936,-0.30494657,0.4333624,-0.21912952,-0.29454228,0.015685368,0.35846096,0.22582848,-0.24825631,-0.44827676,0.019652495,0.116388455,-0.1761872,0.484289,0.36035833,-0.3100088,0.2766296,-0.2171973,1.0532671,-0.1765573,0.033475332,-0.015096209,0.3761851,0.39462417,-0.22176208,0.24425165,0.45293385,0.11194829,-0.01831228,-0.4198902,0.16204873,-0.3876011,-0.42007247,-0.054201357,-0.3535018,-0.3456807,0.12758513,-0.34447497,-0.16134858,-0.08494521,-0.2986684,0.40027326,-2.730789,-0.18670528,-0.07951059,0.32866138,-0.2679731,-0.43942857,-0.12219233,-0.46308216,0.4680101,0.35661075,0.29006857,-0.5417268,0.22673409,0.42757505,-0.6098302,-0.07323146,-0.66216666,0.026721248,0.0048946226,0.4044105,-0.007860308,-0.37471336,0.19739941,0.41307992,0.55830187,0.35914358,0.11592396,0.28653842,0.4398814,-0.2633844,0.26581877,0.028063009,0.5557295,-0.19867873,-0.117513575,0.367671,-0.75974804,0.36339095,-0.16635561,0.098306976,0.5189627,-0.046534993,-0.7453578,-0.5169007,-0.2083964,0.9641642,-0.07911624,-0.74259555,-0.011904152,-0.072138,-0.19633587,-0.11385597,0.6381568,-0.013463995,0.027132051,-0.6780427,-0.00058903015,-0.16154039,0.13251509,-0.23285334,0.10081886,-0.5556622,0.778772,-0.13077097,0.4341041,0.19298188,0.36142525,-0.5337803,-0.4643894,0.018128736,1.0828211,0.5412429,0.042554285,-0.083773494,-0.18002948,-0.28383532,-0.30351183,0.13463204,0.8058972,0.47510362,0.022374852,-0.0076202187,0.31826854,-0.05683917,0.23256753,-0.13500127,-0.3698875,-0.20616584,0.1109436,0.61426145,0.42922682,-0.28746915,0.5050612,-0.17093374,0.08177541,-0.29247275,-0.5079663,0.59175307,0.8103208,-0.3152255,-0.25524017,0.47134757,0.14426169,-0.48769718,0.48436657,-0.71940774,-0.29553175,0.47118455,-0.2234396,-0.5050528,0.055455085,-0.18444712,0.02448265,-0.6955802,0.25463295,-0.3268198,-0.2844386,-0.57399064,-0.19862749,-2.7201397,0.037137475,-0.24067985,0.026990073,-0.28103372,-0.17480491,-0.0154742,-0.62135124,-0.52743894,0.17778465,-0.06678344,0.6139931,-0.12472688,0.055799603,-0.30097708,-0.58785015,-0.16411965,0.38174778,-0.12632307,0.29960093,-0.12736447,-0.12904683,0.16010915,0.033658236,-0.49344137,-0.094914906,-0.66518265,-0.42137423,-0.3141348,-0.46667725,-0.019984739,0.7438396,-0.43411204,0.123077095,-0.26641315,0.1693794,0.02160103,0.2900727,0.14196722,0.24649988,0.24373867,-0.31649542,0.08079839,-0.35605335,0.37043422,0.18110551,0.4047291,0.6676418,-0.051262837,0.25781292,0.44339946,0.732635,0.17267041,0.91127855,0.033193104,-0.13366234,0.40926737,-0.2765308,-0.16475856,-0.6296736,-0.25045738,0.28853348,-0.40571693,-0.50424993,-0.25953445,-0.43037906,-0.8089695,0.32215816,0.041782014,0.3253222,-0.30296776,0.6550895,0.48521557,-0.32552457,0.015858425,0.050144274,-0.11846941,-0.420365,-0.32941213,-0.6144853,-0.53447217,0.37848955,0.61465377,-0.34128794,-0.11202637,0.0857532,0.024489403,0.0732251,0.06351753,0.23544502,-0.31187755,0.22480306,0.060360067,-0.46581414,0.3847001,-0.22585805,-0.16326533,-0.6592687,0.50566787,0.5217658,-0.41297653,0.69254494,0.34348348,0.077608466,-0.4448168,-0.6061934,0.05304346,0.41688338,-0.19434197,0.41467062,0.29429173,-0.6024304,0.39674932,0.40321022,-0.21715477,-0.5931868,0.5215748,0.07274504,-0.22470117,-0.039356947,0.51529056,0.373714,0.027644353,-0.2387325,0.20113407,-0.5538763,0.19646947,0.06841216,-0.00952032,0.68770236,-0.048563786,-0.56404066,-0.6792342,0.16692212,-0.7455764,-0.2569632,0.17675649,0.0075617647,0.035462,0.29365543,0.23105045,0.55974185,-0.35346028,0.18003675,-0.26862863,-0.31498384,0.4720595,0.50266415,0.48742706,-0.43944502,0.58250195,0.025816234,-0.18150488,0.26959246,-0.0006996734,0.5333909,0.22598253,0.48038524,0.15474828,-0.04781405,0.12684195,0.5920783,0.025982661,0.25541243,0.16667445,-0.33043894,0.11367571,-0.066196956,0.20416784,-0.17073287,-0.5382581,-0.090134144,0.001096734,0.07372356,0.44843644,0.093772285,0.20872177,0.11517983,-0.39001927,0.04151965,0.19069706,0.0055911713,-1.4304773,0.2778799,0.102124706,0.93402344,0.28140548,0.12357292,-0.033777535,0.2915813,-0.040750504,0.08671824,0.31127113,-0.09823025,-0.29246885,0.430053,-0.47482425,0.44612783,-0.23906994,0.018349605,-0.10320432,-0.01803135,0.45112514,0.8433296,-0.30968437,-0.0712019,-0.13589066,-0.17545573,0.23620519,-0.31321177,0.33058295,-0.34960914,-0.40489906,0.48057476,0.3272376,0.41076908,-0.2517095,0.035874598,0.16893406,-0.3258372,0.16085991,-0.02043772,0.12240343,-0.13793282,-0.35508278,-0.205544,0.47015306,-0.110157736,0.053768337,-0.078135565,-0.10080077,0.18900426,0.07053392,0.12650524,0.07745947,-0.71115404,-0.042988893,-0.1302664,-0.6398902,0.42718205,-0.09063302,0.08047347,0.24234617,0.053414885,-0.20860974,0.5705915,0.30292082,0.6432123,0.010862725,-0.17701231,-0.47561458,0.12642287,0.08343603,-0.25760078,0.17713167,0.093528025,0.4334776,-0.45053583,0.6014107,-0.16991864,-0.35546714,-0.007171963,-0.23403528,-0.10332465,0.58332604,-0.2330818,-0.18342257,0.011239365,-0.2908576,-0.13133648,-0.08600557,-0.061451744,0.22758998,-0.09100257,-0.06363299,-0.18317696,-0.24734758,-0.15605494,0.19991687,0.13255864,0.08457804,0.70246804,0.16048524,-0.50371933,0.23380676,0.27700245,0.4182668,-0.01529098,-0.10957741,-0.24605148,-0.5981908,-0.65812606,0.45245403,-0.08661338,0.18332982,0.090198226,-0.37984663,0.78561556,0.11899751,1.2999471,-0.095811665,-0.5120524,-0.054424644,0.68960476,-0.0331058,-0.00017798586,-0.3847571,1.081764,0.5534612,-0.08537416,0.06763989,-0.553269,-0.076880984,0.43315682,-0.3882832,0.027939072,-0.16456422,-0.71916354,-0.22407643,0.24658887,0.3041133,0.052418027,-0.20556518,0.07332195,0.38110167,0.18537514,0.3332811,-0.80004203,-0.036270503,0.3314595,0.3330083,-0.10422029,0.04374365,-0.3972017,0.37395167,-0.76748765,0.32014653,-0.25255707,0.15332791,-0.21531656,-0.36877313,0.3046233,0.17499344,0.30521855,-0.37258896,-0.4797148,-0.05489566,0.18535392,0.24205896,0.10689541,0.6015611,-0.14907625,-0.025679963,0.1494691,0.6418725,1.3310543,-0.0111397635,-0.12026566,0.13031773,-0.40068778,-0.90716326,0.22198693,-0.46396208,0.092941925,-0.21206269,-0.3456204,-0.56439734,0.18469131,0.10155349,0.018193271,-0.0050563216,-0.65221864,-0.249014,0.00033968262,-0.47791073,-0.113976546,-0.22816317,0.06894786,0.8319803,-0.22628649,-0.25982317,-0.09120173,0.4927117,-0.2889382,-0.9258465,0.08458875,-0.2554275,0.47156814,-0.06488769,-0.31333822,-0.164732,0.029784603,-0.49192303,0.032765802,0.14179058,-0.25228068,0.13830447,-0.21172953,0.1074282,0.5469822,0.190174,0.18283512,-0.50811225,-0.54199296,-0.81176996,-0.43303248,-0.18805037,0.12962615,-0.114469014,-0.8565193,-0.075320564,-0.50304806,0.038776048,0.054621033,-0.33555672,0.19464254,0.17978983,0.3430595,-0.26722834,-0.8502596,0.15645896,0.14401616,-0.08475113,-0.4450772,0.40616468,0.014225806,0.85908973,0.17313056,-0.12337788,0.21213174,-0.5809392,0.34319195,-0.35275456,-0.15229261,-0.6338664,0.31511408,160 +372,0.39369264,-0.08314272,-0.526419,-0.10113599,-0.28313416,0.04484219,-0.3553973,0.16933636,0.28351724,-0.39976308,0.02198157,-0.25418502,0.057408016,0.17993023,-0.07357582,-0.6549996,0.018059453,0.16336857,-0.5441927,0.6094166,-0.30529234,0.27228615,0.12673862,0.09758693,-0.13680308,0.23478438,0.27572352,-0.21595182,-0.0042387927,-0.20183706,0.0533724,-0.22576134,-0.7971126,0.36114082,-0.3204901,-0.23905851,0.23982742,-0.38957277,-0.42254356,-0.6936843,0.032588977,-0.8479276,0.5864139,0.009944677,-0.22093031,0.35778525,-0.08306389,0.2611491,-0.12233633,0.06976171,0.2801601,-0.30666617,-0.42573422,-0.31393793,-0.18591632,-0.5219331,-0.52750623,-0.09250818,-0.59867805,0.111649625,-0.44290558,0.13214093,-0.2922511,-0.025081566,-0.12162485,0.39569846,-0.3735167,0.18137206,0.1342346,-0.1916239,0.35735896,-0.44466332,0.0071914964,-0.18839535,0.1127581,0.09722175,-0.14937408,0.33452517,0.11009847,0.39134064,0.03182509,-0.25716844,-0.27901378,-0.097195365,0.28506038,0.40328285,0.15875949,-0.16383521,-0.06923882,-0.123804055,0.00465906,0.1079235,-0.0432749,-0.38320524,-0.053346355,-0.076370455,-0.48331672,0.51147157,0.47653618,-0.33459142,0.111684695,0.36449096,0.4481587,0.03582508,-0.165961,0.111335576,-0.16979994,-0.4333866,-0.29427686,0.19841377,-0.18220465,0.4855399,-0.18812847,0.13898872,0.691206,-0.1874754,-0.40695825,-0.02732707,0.09047957,0.08434434,-0.07165575,-0.17246342,0.47278184,-0.692344,-0.032795902,-0.43250102,0.8497227,0.07076029,-0.8983634,0.40687442,-0.509837,0.07012677,-0.15918495,0.68069094,0.7000027,0.71923035,0.094017975,0.792456,-0.5428864,0.2261536,-0.10389893,-0.6046496,0.33897614,-0.19396129,0.21119848,-0.4375743,-0.11315305,-0.054767005,-0.16286948,-0.08340715,0.5166102,-0.17990054,-0.15379761,0.10532228,0.7204115,-0.37834534,-0.069256544,0.67821723,1.0463269,0.8680253,0.2441632,1.1419262,0.3551138,-0.17783216,-0.14626023,-0.05023271,-0.8772636,0.14393319,0.29991278,0.42521635,0.13085032,0.1842351,0.013316044,0.23652335,-0.29866388,-0.18710054,-0.1935244,0.4969038,-0.119159706,-0.1436588,-0.3158381,-0.24791251,0.16280365,0.08367886,0.1594117,0.34421915,0.09351456,0.46720073,0.25737792,1.2995918,0.06692127,0.051418014,0.07156328,0.47062302,0.40452403,-0.022309154,-0.21658644,0.33711722,0.29553375,0.033816416,-0.5752471,-0.014979912,-0.15465753,-0.46109655,-0.21572943,-0.3029558,0.09547717,-0.10821229,-0.10351952,-0.19231747,0.1327962,-0.40345907,0.52898484,-2.500071,-0.06506001,0.01841999,0.33977443,-0.044302814,-0.24026032,-0.072642915,-0.5988321,0.5167643,0.4578136,0.60700715,-0.5182015,0.38828918,0.61891043,-0.61120975,-0.011200173,-0.6129155,-0.04136507,-0.2926409,0.3761937,0.06817822,-0.17191133,-0.14678761,-0.029256007,0.5702694,-0.041072093,0.19816984,0.3952271,0.3124556,0.082799636,0.48152804,0.027527574,0.36053416,-0.3604146,-0.16145173,0.2331179,-0.20997111,0.19519098,-0.33014637,0.06803983,0.39764056,-0.5224339,-0.8023424,-0.43143648,-0.08503842,1.1811781,-0.45587876,-0.47248775,0.2949534,0.0068284743,-0.15373364,0.10246378,0.45597595,-0.15662637,0.099138215,-0.61600924,-0.008809353,0.11775363,0.24169931,0.027507106,0.09190511,-0.42748564,0.6955721,-0.053420592,0.4584141,0.5114047,0.08906471,0.042493243,-0.3811492,0.27776557,0.7589593,0.1201904,0.24976437,-0.44189787,-0.2068543,-0.14054972,-0.20163189,-0.015670663,0.47555223,0.6458469,-0.14997146,0.057040017,0.30398956,-0.26428702,0.030312976,-0.17689729,-0.47434995,-0.12866299,-0.079740755,0.48011607,0.9056409,0.08148716,0.25669885,0.072242856,0.37895605,0.03915419,-0.5154262,0.6027454,0.6602084,-0.10710603,-0.19844326,0.45456192,0.5021514,-0.16654839,0.5318485,-0.4478061,-0.5205914,0.35752943,-0.020111902,-0.53100187,0.28661865,-0.34389392,0.15793668,-0.7427945,0.27544218,-0.30841064,-0.5946833,-0.46311146,-0.07207174,-3.3548093,0.15030332,-0.12582287,-0.027225902,-0.05373907,0.0072783134,0.2711881,-0.21129522,-0.5117292,0.28402424,0.27919072,0.4568081,-0.19834249,0.07111096,-0.26713032,-0.21975717,-0.4298016,0.35225466,0.17478916,0.10259835,-0.13233072,-0.4668732,-0.11775661,-0.3884192,-0.2938166,0.040184624,-0.48202464,-0.1875293,-0.24250293,-0.40217972,-0.5500576,0.6992679,-0.3346326,0.011923502,-0.19387709,0.03426135,0.025505945,0.2758835,-0.11555389,0.054387566,0.0127289975,-0.0575254,-0.16584301,-0.26503038,0.26650524,0.018663555,0.25438252,0.2998541,-0.041280907,-0.12763833,0.6675733,0.54009336,-0.028807959,0.8553912,0.30205494,-0.049882475,0.41320434,-0.14616993,-0.38944918,-0.71554565,-0.11837769,-0.3528177,-0.4217284,-0.32445017,0.1867787,-0.4103997,-0.7664698,0.57936954,0.18230799,-0.15003134,0.090427205,0.2702191,0.34407786,-0.08937175,-0.1101619,-0.1411476,-0.24687044,-0.56099266,-0.29908305,-0.8088347,-0.4056293,-0.0022699663,0.94034636,-0.09771399,-0.19391586,0.02736279,-0.19025643,0.1978044,0.22438528,-0.07479275,0.31026062,0.5755977,0.28684536,-0.7282321,0.5594832,-0.14071573,-0.10853153,-0.6527065,0.21751407,0.53613234,-0.88957185,0.28578123,0.5886564,0.026612435,0.04462732,-0.64269733,-0.29364094,0.076848865,-0.21230112,0.4285593,0.08745966,-1.0550631,0.59694535,0.14983256,-0.3127975,-0.7485887,0.3808671,-0.029661315,-0.27506799,0.1235144,0.28877825,-0.079323545,0.045937426,-0.41231894,0.050191432,-0.42377594,0.32807952,0.005858496,-0.14230622,0.39792866,0.04351592,-0.1297755,-0.82660925,-0.21927224,-0.39906004,-0.22611347,0.22399496,-0.08187179,0.1325929,-0.03477336,0.2316972,0.41926268,-0.168425,0.106250234,-0.3038965,-0.34369326,0.505969,0.45909277,0.27947357,-0.4500557,0.6611101,-0.13547157,-0.09955168,-0.12749067,0.12790738,0.3734629,0.0945657,0.38747188,0.23978604,-0.089303136,0.034886446,0.7980791,0.25581363,0.43024182,0.22491762,-0.16923456,0.49160823,0.018120037,0.23874307,-0.04802044,-0.43929705,0.012810268,-0.19051729,0.1100872,0.4084329,0.105270244,0.5367226,-0.25313735,-0.14343251,0.008703564,0.22818191,0.27271226,-0.8430442,0.40013474,0.22618687,0.5253304,0.7441969,-0.02366851,0.10757654,0.79829216,-0.21855442,0.12423967,0.15802982,-0.11258144,-0.38697046,0.4416195,-0.6080939,0.27632627,-0.091580115,-0.09408386,0.31401268,0.06223441,0.46857738,0.92990357,-0.098665394,0.18876453,-0.083046876,-0.28570998,0.12814413,-0.2571502,-0.017340302,-0.33024678,-0.44251785,0.6217634,0.27138656,0.45378226,-0.22379597,0.0022342673,0.07466864,-0.26100716,0.3052078,0.007839685,-0.31897712,0.03235495,-0.5714035,-0.26273373,0.60781187,0.15320192,-0.03332034,0.19233383,-0.018288722,0.30406472,-0.07562507,-0.13899752,-0.09229641,-0.59667414,0.04693492,-0.26502863,-0.3468699,0.71727866,-0.075761,0.30067712,0.06526876,0.020981712,-0.30017623,0.13707022,0.26282918,0.64310175,0.14719306,-0.24695201,-0.22335222,-0.13906178,0.20513694,-0.3993608,0.018428138,-0.28211424,0.022559008,-0.7995084,0.33924457,-0.35873723,-0.28986564,0.052604567,-0.2584141,-0.046312902,0.5585541,-0.2185313,-0.19562136,0.13431601,0.05205047,-0.20581412,-0.28649083,-0.4040205,0.023132866,-0.05460905,-0.08913828,-0.007852162,0.015765121,0.022926718,0.51798487,0.07734668,0.13117395,-0.074401625,0.11849751,-0.46560302,-0.10442662,0.088605165,0.5086559,0.047584828,-0.11049902,-0.18354861,-0.20981176,-0.24764216,-0.00043825168,-0.033736296,0.24443579,0.09357741,-0.3206171,0.7534438,-0.07142163,0.80248296,0.042428695,-0.30029815,0.2091373,0.6007642,0.13670874,0.04279675,-0.33764377,0.7863188,0.55877596,-0.2460959,-0.12689427,-0.627626,-0.06861388,0.0537746,-0.24493702,-0.16585243,-0.047645364,-0.6331542,-0.1840277,0.11938916,0.17961256,0.009424448,-0.10762954,0.14667809,0.14545536,0.3277423,0.23198676,-0.45005557,-0.016148666,0.36671373,0.20042464,0.015369415,0.16009493,-0.37742832,0.37092748,-0.51251394,0.113467135,-0.3158771,-0.07153437,-0.06064495,-0.16934215,0.16656382,0.03635079,0.31294912,-0.27281293,-0.5689512,-0.19616978,0.40260532,0.31727237,0.4211223,0.7349023,-0.24469687,-0.029443193,-0.03556567,0.5894326,0.906154,-0.35359907,-0.03832295,0.4852763,-0.2964048,-0.49534157,0.26711437,-0.24798019,0.2620721,-0.007671088,-0.3116278,-0.38820463,0.14044778,0.0073840404,-0.2011045,0.22223225,-0.6493593,-0.041036576,0.25178418,-0.21684782,-0.19643469,-0.2894723,-0.037403725,0.7853578,-0.2393073,-0.3795299,0.038059745,0.0071997386,-0.33821958,-0.37717924,0.039353907,-0.31987095,0.28132102,0.2425057,-0.20805109,0.046201535,0.28500846,-0.653365,0.14459786,0.1952749,-0.3250473,-0.010059531,-0.4048695,0.083281144,0.86742544,-0.2385401,0.14242509,-0.32833678,-0.65916675,-0.8601102,-0.24094994,0.34592023,0.13775924,-0.03682649,-0.29688993,-0.04305436,-0.10176088,-0.088193126,-0.04090378,-0.5568703,0.3987407,0.026072178,0.51981944,0.037888944,-1.0965236,0.25971967,0.13694558,-0.46824512,-0.5181202,0.35562667,-0.2427017,0.79642487,0.08452242,0.11685824,0.1491141,-0.7728706,0.25583562,-0.2924571,-0.105737574,-0.4115596,0.023894956,166 +373,0.37081882,-0.2416713,-0.35484973,-0.2191482,-0.0584359,0.06265217,-0.15755792,0.5414692,0.25250813,-0.5061602,-0.1730112,-0.12712422,0.052513875,0.2984798,-0.25894016,-0.6187159,0.032257568,-0.05806051,-0.36000416,0.5508677,-0.24370387,0.15958807,-0.044250816,0.30317995,0.15711845,0.20164408,0.3302577,0.100386664,0.033704612,-0.09683424,-0.12112577,0.0009485419,-0.70650685,0.25468987,-0.019179804,-0.18894969,-0.011293923,-0.2955832,-0.36295155,-0.82975143,0.50519234,-0.9263228,0.33925056,0.05701983,-0.2771316,0.25440377,0.2930152,0.21077047,-0.31648234,-0.11522753,0.047369443,-0.019650986,-0.005831442,-0.049880784,0.044624235,-0.4909311,-0.5717969,-0.10323051,-0.52548724,-0.18431707,-0.102787696,0.14397846,-0.3176873,-0.053866755,-0.046275824,0.7585535,-0.43958548,-0.19248271,0.4690384,-0.1692121,0.35259348,-0.71811736,-0.20403929,-0.016770478,0.047744386,0.061404604,-0.21891549,0.44381347,0.15350083,0.28740454,-0.095852375,-0.2416629,-0.13706788,-0.06859977,0.19327848,0.25208935,-0.16412485,-0.6068788,-0.0748275,-0.038886514,0.2969044,0.07068695,0.4196419,-0.23129265,-0.048255283,0.21848145,-0.2665813,0.37146464,0.73053586,-0.28402063,-0.1406097,0.29462606,0.45505288,-0.0053275055,-0.23229507,0.123713955,0.02767308,-0.4427199,-0.090751275,0.15717864,-0.32432494,0.58437383,-0.20311931,0.29598185,0.6465288,-0.24757001,0.18767396,0.011669687,0.04591623,-0.23151216,-0.3282452,-0.26768374,0.17127328,-0.46960464,-0.039062556,-0.3030284,0.83438885,0.27208248,-0.6860241,0.28956285,-0.35411122,0.24529065,-0.21965422,0.49762896,0.8326928,0.38457888,0.32665926,0.9314006,-0.4626824,-0.037736688,-0.07882819,-0.14368998,0.108560406,-0.21508662,0.11293929,-0.3351547,-0.06472662,0.147377,-0.14448869,-0.15991412,0.21601096,-0.52905625,-0.0344512,0.23881015,0.82522523,-0.22363798,-0.034656387,0.5902154,1.1111711,0.9263976,0.18611768,0.88896424,0.2596755,-0.16376278,0.19351755,-0.05910312,-0.7738886,0.2640403,0.44030285,0.7880908,0.2077904,0.060537823,-0.14299881,0.41160402,-0.5553031,0.1940111,-0.20307162,0.51004356,0.2545077,-0.098858155,-0.12351399,-0.0834645,-0.0148787545,0.0834412,-0.12905936,0.1997424,-0.12903354,0.1888974,-0.0069913054,1.4078857,-0.031460326,-0.075354524,0.097105466,0.58888024,0.20306465,-0.2687928,0.16335776,0.30262926,0.47057196,0.035660215,-0.69893944,0.09039601,-0.23162504,-0.56914365,-0.1493613,-0.39440608,-0.0067759496,-0.055494707,-0.5049407,-0.27694848,-0.10748865,-0.15083489,0.35346407,-2.9497492,-0.053509627,-0.17538705,0.31416008,-0.3136015,0.03173839,-0.017834114,-0.5684481,0.3991124,0.55122787,0.30467758,-0.7482368,0.25401208,0.3992493,-0.36644787,0.049961776,-0.6138304,0.05003004,-0.2466649,0.3987019,0.14558288,-0.004889648,0.24345803,0.26997516,0.44473726,0.3324496,0.21764433,0.18455637,0.33547238,-0.148451,0.33776638,-0.019616961,0.29686752,-0.12451148,-0.009338664,0.26118913,-0.5803984,0.06517552,-0.21217127,0.11604394,0.4694381,-0.3549371,-0.778066,-0.69662076,-0.10301131,1.173,-0.26617965,-0.8095733,0.2784533,-0.25250033,0.018280791,-0.21363041,0.6065641,-0.1542351,-0.020555321,-0.7300771,0.12304705,-0.24762143,0.15226687,0.013742424,-0.13906409,-0.37404123,0.89575386,-0.15385428,0.53015727,0.22522838,0.12772897,-0.38421482,-0.4003482,0.05200359,0.6883249,0.4965399,0.109331675,-0.11662994,-0.14870474,-0.32720676,-0.2563733,0.13738945,0.7433223,0.8227186,-0.08925853,0.23252709,0.37213498,-0.07986736,-0.06859826,-0.04018854,-0.38050863,-0.103466354,0.14589982,0.57277954,0.7002291,-0.23221086,0.3232985,-0.10194218,0.07766998,-0.17629065,-0.4696156,0.59589547,0.738554,-0.122509316,-0.2834636,0.57238525,0.41419512,-0.3108128,0.4159945,-0.6868844,-0.38577983,0.5996622,-0.21674393,-0.38419417,0.1646949,-0.39218807,0.122011594,-0.5589514,0.4890519,-0.30181065,-0.4650671,-0.55107987,-0.21564315,-3.4514081,0.09523574,-0.3075809,-0.20239814,-0.23362483,-0.26965714,0.32401153,-0.5203419,-0.46843603,0.2989211,0.13332418,0.6485764,0.12090715,0.10540502,-0.29561362,-0.05159669,-0.31666377,0.085416555,-0.08240301,0.22491892,0.043514635,-0.34788322,0.019879198,-0.028020045,-0.52071637,0.028597295,-0.28218928,-0.48490256,-0.23088227,-0.4745609,-0.3589148,0.5906277,-0.18664186,0.03813576,-0.22627302,-0.08902045,-0.29637071,0.3936991,0.09612655,0.17521264,-0.08963928,0.028559893,-0.05685445,-0.35842538,0.22623722,0.01629566,0.34515238,0.28709096,-0.10595727,0.11653549,0.52136505,0.43598768,-0.038982,0.6668005,0.528138,-0.08834129,0.3925619,-0.10439206,-0.12219355,-0.3956879,-0.29085508,0.18331246,-0.3438085,-0.35194317,-0.014992492,-0.42731944,-0.7360886,0.19119383,-0.063762985,0.3205635,0.004597085,0.12543541,0.45188278,-0.06503005,0.018731432,0.032834224,-0.08542888,-0.6637979,-0.18213756,-0.71948385,-0.30154034,0.310759,0.86632675,-0.22824433,-0.33423185,0.0087676495,-0.30817738,0.08678209,0.07984083,-0.19479708,-0.021921586,0.3486598,-0.04840463,-0.7508485,0.3944741,-0.12540576,-0.012134544,-0.6086974,0.10537829,0.27648503,-0.5889851,0.664245,0.30910015,0.10158216,-0.36820048,-0.5234708,-0.22362712,-0.16715169,-0.2589746,0.41450337,0.25649408,-0.7915605,0.40482596,0.19869652,-0.39139065,-0.590715,0.44842413,0.02515459,-0.21529722,-0.067978255,0.17129518,0.07179349,-0.036136042,-0.013870537,0.1929747,-0.46003166,0.12854603,0.23111215,-0.0040123886,0.4076123,0.00094764575,-0.075690866,-0.5263963,-0.118610814,-0.59962636,-0.07925582,0.09967176,-0.04346087,-0.041010145,0.1396663,0.07467199,0.42495182,-0.10526298,0.21831068,-0.005374619,-0.27378362,0.43981686,0.47716078,0.43510106,-0.419236,0.6651772,0.055645503,-0.13683793,-0.05002686,0.17144327,0.33912787,0.32007334,0.33690947,0.050735235,-0.16468832,0.33829874,0.85960835,0.10842063,0.54266655,0.1468011,-0.021399733,0.32432777,0.10549404,0.21307543,-0.027574737,-0.45159578,-0.10476344,-0.22606249,0.08515126,0.35193926,0.11133297,0.43727905,0.056264658,-0.3276632,-0.0052380604,0.03826799,-0.17476544,-1.2213131,0.29965228,0.085188106,0.859108,0.64187545,-0.14100412,-0.03569677,0.66035646,-0.12856193,0.10329205,0.3155856,0.057798214,-0.54507136,0.57774,-0.5617076,0.46458343,-0.0359536,-0.028512847,-0.1886138,0.21600798,0.2003604,0.5305892,-0.1914825,-0.012479986,-0.017501535,-0.26383477,0.2347983,-0.49077734,0.051160693,-0.5069292,-0.40695858,0.3856475,0.4619852,0.33059958,-0.12809882,-0.06723637,0.01898156,-0.08062249,0.14036009,-0.08623767,-0.13216993,-0.0046015424,-0.5872623,-0.41118294,0.43924254,-0.17580281,0.18834177,-0.0762905,-0.19170891,0.03703479,-0.18631724,-0.16092394,-0.027024228,-0.65684634,0.023206297,-0.12641083,-0.40826964,0.6282564,-0.3756867,0.1529517,0.26071522,-0.031440586,-0.27936524,-0.036938913,0.12116351,0.5294661,-0.3854652,-0.100282766,-0.64436615,-0.07497887,0.14368379,-0.23398171,0.12659125,-0.12131433,-0.04421065,-0.55527294,0.56200475,-0.0961091,-0.11980658,0.21993855,-0.34280962,-0.042321,0.6572299,-0.18977621,-0.07175163,0.12221204,-0.31686586,-0.2337983,-0.22519095,-0.26363567,0.2583229,0.05778679,0.07447118,-0.018885318,-0.27243134,0.047305975,0.26134083,0.03767654,0.14885156,0.3769243,0.06331792,-0.5220846,0.0013650188,0.14843509,0.52919096,0.23561546,-0.1780309,-0.33061847,-0.70435107,-0.3790954,0.07077335,-0.029079784,0.29955107,0.09874551,-0.3169126,0.7092823,-0.008583819,0.9744338,-0.013663839,-0.39819333,-0.10734582,0.56406873,-0.055409934,0.017947717,-0.18782718,0.5234536,0.52043796,0.0191289,-0.0024792936,-0.3706317,0.13398969,0.49106047,-0.035376187,-0.1521633,-0.09390212,-0.64217633,-0.23391281,0.24383488,0.2909171,0.13686393,-0.04527588,-0.051720295,0.15367219,0.007063557,0.3692593,-0.56781995,0.07314618,0.2587039,0.03519953,0.26571593,-0.042202268,-0.3685486,0.32305306,-0.5921733,0.104019985,-0.11642963,0.13220225,-0.11821837,-0.32821682,0.19530378,0.14361851,0.4789531,-0.3121048,-0.36136743,-0.17767255,0.6931223,0.10376774,0.32965747,0.48413748,-0.20746727,0.016913116,-0.007998846,0.7244652,1.1159238,-0.19049442,0.07235195,0.3020731,-0.50113374,-0.94683945,0.49073672,-0.30420548,0.17007487,0.020850578,-0.19597842,-0.60064095,0.22297724,0.37819904,-0.025388198,0.24789841,-0.6779042,-0.62454283,0.19358298,-0.260995,-0.28266695,-0.3784702,0.086762786,0.54055554,-0.32303166,0.0097177625,0.08809531,0.45321354,-0.11942095,-0.47981122,-0.055619784,-0.38723662,0.3557927,0.07338659,-0.29677898,-0.20417416,0.24198513,-0.33122402,0.23393893,-0.024519397,-0.320097,0.01694089,-0.10038503,0.04374179,0.83250535,-0.08861862,0.10109192,-0.65672123,-0.3822355,-0.73930496,-0.3269833,0.33549026,0.06267301,0.03303262,-0.6226315,-0.06581281,0.06772346,0.29328132,-0.17431195,-0.43472037,0.6230825,0.07500856,0.34065428,0.09891766,-0.58132297,0.0020745185,0.039135095,0.014628904,-0.39962605,0.51004905,-0.09445173,0.8545533,0.030148378,-0.010035396,0.023245003,-0.4170542,0.31260204,-0.21430115,-0.4650953,-0.43120858,0.23255385,172 +374,0.11616778,-0.06440176,-0.64161825,-0.11797232,-0.28026637,0.33912683,-0.37821,0.27302483,0.30081096,-0.43279597,0.026481075,-0.0986613,-0.2383233,0.292109,-0.073533915,-0.51941526,-0.04811636,0.27385628,-0.47926834,0.5708383,-0.33965918,0.31619126,0.09916126,0.35345683,-0.044265877,0.14962576,0.07985384,-0.121683665,-0.062432315,-0.070234954,-0.03969511,0.07342498,-0.39409986,0.33687374,-0.17655136,-0.32319853,0.008718201,-0.34968784,-0.3057414,-0.70825154,0.11350332,-0.7356431,0.6074134,-0.049174514,-0.2034633,0.28568524,0.36927217,0.21958734,-0.12860309,-0.011073415,0.19049893,-0.47844484,-0.5984933,-0.2689059,-0.61912405,-0.46097785,-0.7481347,-0.06288574,-0.5551875,-0.007645079,-0.24530588,0.27720475,-0.26397654,-0.066830106,-0.060669627,0.34431452,-0.39699072,0.106552266,0.17868294,-0.18803391,0.054099057,-0.78599733,-0.16307323,-0.047190774,0.20449774,0.14986534,-0.23806109,0.2991628,0.22148778,0.5474197,0.06922317,-0.30650637,-0.5389457,-0.17622158,0.095099345,0.50511557,-0.15805574,0.14590709,-0.15142791,-0.0019151525,0.4959251,0.21668999,0.05321714,-0.18022643,-0.070711605,-0.19290388,-0.31108356,0.299222,0.46716598,-0.45393944,-0.19680996,0.5120763,0.5989351,0.108645774,-0.33082506,0.0857165,-0.13034084,-0.45381263,-0.0792722,0.20518057,-0.21293092,0.42805284,-0.14849104,0.18791911,0.4969881,-0.12461145,-0.2813193,-0.019204766,0.098772235,0.10820176,-0.06747706,-0.19397298,0.3167476,-0.4470094,0.009409113,-0.25360632,0.5179711,-0.050013185,-0.6906828,0.41811106,-0.35915524,0.059051592,-0.03783359,0.66455775,0.92881095,0.8456175,0.2360669,0.9134745,-0.3041635,0.121818565,-0.18620427,-0.04059558,0.13607515,-0.1655064,0.22830813,-0.5811226,0.27571216,-0.023596104,-0.19753437,0.15193263,0.8480708,-0.40153483,-0.1697127,0.267723,0.65940714,-0.24537197,-0.23131032,0.609002,0.9414778,0.9360441,0.115666725,1.1323956,0.28144053,-0.22192052,-0.15690073,-0.3090396,-0.886463,0.18706849,0.2005448,0.1301594,0.37226677,0.18515491,0.0032699981,0.5013412,-0.19888727,-0.120672606,-0.106659256,0.22952679,0.08330999,-0.017218484,-0.24706647,-0.23867953,0.22263582,-0.0973023,0.25707674,0.35523823,-0.14777012,0.48147658,0.13890299,1.5353057,0.008789258,0.032387454,0.19297126,0.30178282,0.20651427,0.07232054,-0.13798049,0.4138624,0.15721011,-0.07203894,-0.4403918,0.067168914,-0.23169577,-0.5417535,-0.19091733,-0.28483626,-0.15782939,-0.20853376,-0.19439909,-0.39584216,-0.022225903,-0.65042555,0.40324762,-2.5735526,-0.16683218,-0.059316147,0.27263898,-0.19707121,-0.32030964,-0.34399325,-0.4742683,0.5291329,0.3277746,0.4427181,-0.4997521,0.50157356,0.58288234,-0.75225335,-0.27307636,-0.6342472,-0.08900321,-0.08464459,0.35038087,0.05427862,-0.40929148,-0.020680087,-0.007566222,0.3682163,-0.21616523,0.107418485,0.5417169,0.5024666,-0.13082863,0.43185446,-0.12174159,0.67800426,-0.39234,-0.27123836,0.4174688,-0.49519873,0.36904103,-0.25842637,0.16926447,0.42174223,-0.3820608,-0.78652364,-0.38685974,0.14847891,1.3462232,-0.27212048,-0.533624,0.017274955,-0.5709136,-0.18482454,-0.0028586942,0.5577995,-0.08740965,-0.18633296,-0.68509865,-0.09351765,0.0746306,0.40610737,-0.05097733,0.12183679,-0.42688605,0.5735682,-0.003619045,0.57761765,0.3985787,0.14801912,-0.39601168,-0.20613782,0.07039466,0.6582456,0.26679096,0.1879598,-0.3174258,-0.30473083,-0.118026495,-0.19468127,0.0064176535,0.4332955,0.43713698,-0.04099872,0.05453172,0.29190928,-0.2687687,-0.06457351,-0.33169514,-0.33315426,-0.1625768,0.25948876,0.4157036,0.6663641,0.10710246,0.4497873,0.019596547,0.28055492,-0.16579714,-0.5025174,0.4085929,0.85377306,-0.27364555,-0.23528218,0.5049117,0.3379868,-0.26900885,0.54838187,-0.60938406,-0.45219138,0.37551573,-0.15291739,-0.4136915,0.09399557,-0.444655,0.09209598,-0.78141254,0.11559907,-0.27248088,-0.37527934,-0.78848875,0.05974441,-2.8515365,0.088694975,-0.27077624,0.04541741,-0.1580756,-0.061450254,0.10275136,-0.34848404,-0.60639083,0.20530508,0.40531832,0.5676878,-0.08014868,-0.058021843,-0.34976822,-0.399172,-0.21670537,0.24026166,0.034538954,0.28739688,-0.17673005,-0.57228214,0.06913288,-0.3346165,-0.14614289,-0.20589772,-0.43326837,-0.14839077,-0.10779315,-0.47947794,-0.19054125,0.66864234,-0.7123407,-0.09022006,-0.4687138,0.032852728,0.20018141,0.27961117,-0.071394384,0.14990321,0.22694036,-0.18821414,0.0070082503,-0.30911806,0.27511835,-0.083960615,0.13721494,0.5929061,0.026021566,0.064692356,0.59304005,0.7855791,-0.13860874,1.0386394,0.48072365,-0.19648235,0.33197403,-0.19712362,-0.11172886,-0.6127315,-0.074613094,-0.04628327,-0.49185658,-0.4036209,0.044714663,-0.3808536,-0.9870173,0.60719365,0.19035745,0.03351287,-0.088178314,0.5037419,0.47076622,-0.2809773,0.11248773,-0.19974197,-0.23786573,-0.3355544,-0.4945035,-0.76649624,-0.567725,0.14557932,1.3480648,-0.22436635,-0.047849767,0.23326717,-0.26902384,0.010270553,0.3920944,0.28499725,0.23439516,0.43145594,0.19663699,-0.5778449,0.27846023,-0.12448426,0.020361636,-0.6060913,0.18603542,0.6214224,-0.66059226,0.39851183,0.44203624,-0.028505865,-0.054782987,-0.78321797,-0.14739223,0.04923457,-0.20175402,0.24475977,0.21167064,-0.7191226,0.59540176,0.1975796,-0.31415242,-0.8644227,0.2935062,-0.1583784,-0.16960444,-0.05755788,0.5027897,0.2409514,0.08605447,-0.29901028,0.08025285,-0.3548909,0.26926664,0.055327427,-0.13928778,0.31707764,-0.1728775,-0.18082653,-0.8635096,-0.06649121,-0.45318604,-0.35022917,0.434475,0.124191955,0.18417673,0.046858046,0.13143383,0.395346,-0.29820704,0.0699023,-0.3284835,-0.22902225,0.33777568,0.38092598,0.380349,-0.34501144,0.5501167,-0.13138798,-0.122497976,-0.15060735,-0.07926726,0.3917933,0.15877008,0.3887945,0.07810298,-0.24920307,0.07465637,0.9065508,0.17999163,0.24185577,0.035229802,-0.26374206,0.38363123,-0.0037747982,0.054654505,-0.23386979,-0.45363876,0.043289125,-0.35523087,0.23803727,0.51293147,0.1750573,0.64329064,-0.09955964,-0.009621032,0.0011399707,0.14686367,0.12894504,-0.6937214,0.2670408,0.12685224,0.66172683,0.5493862,0.17615394,0.14381196,0.7620215,-0.29794455,0.018268254,0.49857697,-0.14244045,-0.280508,0.47220582,-0.72918403,0.4376312,-0.08231485,-0.015054015,0.25734717,0.17784037,0.5056455,0.88219386,-0.18170215,0.044089723,0.13057624,-0.28496268,0.024185674,-0.28517765,-0.049301524,-0.3725249,-0.33818868,0.80393964,0.24824147,0.54437965,-0.27258715,0.0012140827,0.07359666,-0.31572682,0.32864004,-0.065675475,0.07370819,-0.14815484,-0.39858547,-0.030988285,0.5432153,0.24326842,0.12771727,0.22375228,-0.23683034,0.3191676,-0.15277384,-0.072333016,-0.03703147,-0.45241216,-0.0124360705,-0.22117145,-0.674765,0.66384506,-0.046987526,0.16219889,0.21122822,0.04855132,-0.26676932,0.3911536,0.108643614,0.71855104,0.058923695,-0.13637389,-0.10383619,-0.12904462,0.05133074,-0.3258071,0.073598996,-0.17945647,0.23909487,-0.8056282,0.5154888,-0.4054626,-0.41424948,0.16417912,-0.35460284,-0.04811734,0.49266523,-0.18923786,-0.08690482,0.07814606,-0.07984074,-0.25520042,-0.34882265,-0.4675716,0.14774969,-0.28006482,-0.17870787,-0.31365666,-0.23961838,-0.1438879,0.4104914,-0.042763453,-0.10205124,0.28237966,0.13624929,-0.42499593,0.14739323,0.24677218,0.51667863,-0.18619435,-0.087219715,-0.3062153,-0.2363455,-0.3283929,0.4798682,0.01512702,0.24064705,0.17298165,-0.5649971,0.81624573,-0.19398226,0.93226784,-0.030003969,-0.4065059,0.08268739,0.527578,0.009741707,0.1212516,-0.20049725,0.6755987,0.6359553,0.028626798,-0.12811793,-0.6084565,-0.0646613,0.3687633,-0.3233921,-0.08763484,-0.020924347,-0.7262214,-0.25931585,0.3536013,0.09342738,0.21230961,-0.1992772,0.2557114,0.0022685155,0.228883,0.23355396,-0.42429498,-0.04762539,0.43349475,0.22619972,-0.07851974,0.06053334,-0.28313008,0.26337793,-0.6400261,0.004498086,-0.2919213,0.00852641,-0.12907639,-0.0313827,0.35074195,0.19861484,0.22626127,-0.14719845,-0.30698887,-0.09454427,0.3694505,0.13914093,0.3908914,0.5924767,-0.33498308,-0.02586287,-0.022840206,0.48928216,1.1812763,-0.3216205,-0.04792828,0.34705886,-0.3372326,-0.57573545,0.31928036,-0.62710154,0.13093375,0.11728023,-0.37104416,-0.2291162,0.19538617,0.2271359,0.06043481,0.039407015,-0.4327886,-0.18170956,0.005963647,-0.41278172,-0.12579301,-0.1885967,-0.02994554,0.8023396,-0.2543085,-0.25132433,0.040191058,0.3799784,-0.18089554,-0.5367848,0.2838475,-0.44568178,0.30306008,0.21211973,-0.3318367,-0.00035619736,0.0031330246,-0.58802545,-0.028661106,0.46656248,-0.41049552,-0.03768814,-0.5172192,0.28231168,0.80111176,-0.022326767,0.3235406,-0.20698169,-0.46477297,-0.8476353,0.027634177,0.1365802,0.09089,-0.17479207,-0.56883585,0.0025412696,-0.28420123,-0.4728144,0.10004298,-0.6330885,0.5197304,0.21487941,0.23528707,-0.29642138,-0.8168139,0.0169554,-0.008007778,-0.25048235,-0.30840778,0.43127897,-0.18153973,1.0887219,0.17629974,-0.09192065,0.2121904,-0.852583,0.48148945,-0.35142142,-0.23295024,-0.5623713,-0.24221943,184 +375,0.4901624,-0.15408638,-0.36009842,-0.17197277,-0.22959264,0.06841845,0.040944446,0.6324415,0.2729105,-0.5267503,-0.21818483,-0.11840921,0.052618515,0.35957554,-0.1391281,-0.3871046,-0.10620469,0.21956849,-0.24886532,0.5469378,-0.33438805,0.14603145,-0.03883424,0.37437683,0.30013484,0.22997399,0.11193355,-0.10072769,-0.09788493,-0.026735736,-0.17954509,0.19568512,-0.24188852,0.22595334,-0.13893713,-0.20852332,-0.1634591,-0.4032095,-0.54215336,-0.6024162,0.29260358,-0.8114267,0.4415613,0.05440358,-0.30620885,0.22708273,0.12678306,0.13518612,-0.26505685,-0.13124852,0.111912645,-0.090593934,-0.11437803,-0.020150738,-0.255162,-0.39345565,-0.67472553,0.04180903,-0.34462887,-0.04972999,-0.2518272,0.112224944,-0.25357205,0.03445879,-0.033556927,0.640746,-0.46664667,0.005784946,0.21296777,-0.06417515,0.21295373,-0.5651616,-0.29475325,-0.11507309,0.06688338,0.0005538038,-0.15339363,0.21504009,0.18812343,0.53560865,0.038221035,-0.1662864,-0.42841062,0.0911634,0.18276688,0.3960307,-0.13381882,-0.4914675,-0.095492296,0.03390014,0.106141694,0.15691397,0.20549321,-0.17492998,-0.07860743,-0.001563615,-0.23150167,0.23593964,0.5409516,-0.3267137,-0.31675526,0.2789778,0.5268847,0.09012937,-0.09031495,0.12585507,0.063823715,-0.45257896,-0.127612,0.13220957,-0.3065037,0.4237546,-0.20942652,0.18602024,0.63359743,-0.064147435,0.023442533,0.123581044,0.12006029,-0.1686076,-0.3423273,-0.27870402,0.20841815,-0.36778498,0.10548238,-0.19009556,0.84757644,0.09175815,-0.6523534,0.35553154,-0.42718214,0.10939933,-0.1747709,0.58840907,0.75913346,0.39831728,0.31501994,0.7918028,-0.5381459,0.05104759,-0.06355082,-0.26068333,0.022631368,-0.33149812,0.057865627,-0.4948559,0.06750367,0.17942719,-0.13294338,0.08354299,0.4381786,-0.52165633,-0.12797494,0.22530816,0.83939266,-0.24127932,-0.18562688,0.7409074,1.0990674,1.1306822,-0.016168715,1.1306683,0.22604367,-0.251947,0.31844258,-0.41721103,-0.6102807,0.26780573,0.33047524,0.1649182,0.23862895,0.2079118,-0.06613269,0.43250656,-0.50288856,0.23065689,-0.21417579,0.17988972,0.22145705,0.003821837,-0.6239766,-0.271357,-0.070068516,-0.010177836,0.090542056,0.27078578,-0.23653051,0.43982217,-0.0448533,1.4967527,-0.08478771,0.073327705,0.14630143,0.57719034,0.11998731,-0.12380849,-0.01760319,0.19869767,0.38778922,0.008445693,-0.5220021,0.07983035,-0.25386587,-0.5226273,-0.16168118,-0.38233638,-0.014144421,0.012163149,-0.3461308,-0.26033238,-0.09662681,-0.464818,0.49168745,-2.861738,-0.08626156,-0.16997358,0.22170623,-0.32450086,-0.19726953,-0.11481058,-0.5025105,0.38589495,0.4113277,0.4544745,-0.6019088,0.30994597,0.37301686,-0.57565576,0.016227547,-0.62563807,-0.1392755,-0.0058573857,0.27902856,0.07882075,-0.042054687,0.008008054,0.0056685847,0.5433451,0.13929807,0.088743985,0.34514898,0.19642615,-0.06739468,0.40063688,0.010767804,0.42155287,-0.40409917,-0.15220536,0.33251157,-0.41579083,0.3402141,-0.122870855,0.09561723,0.43199316,-0.47377634,-0.8164524,-0.6658906,-0.27469888,1.1604671,-0.15181002,-0.41622752,0.27725604,-0.4905631,-0.14089386,-0.21299376,0.4138965,-0.039019644,-0.079206966,-0.7323019,0.034038033,-0.023382109,0.13392247,-0.06660309,-0.10497146,-0.36410183,0.80917877,-0.14460757,0.44511017,0.29906994,0.24801077,-0.21270457,-0.46110025,-0.09910832,0.86254823,0.34562683,0.22292754,-0.34918588,-0.14014748,-0.26371303,-0.016409626,0.13183047,0.40230063,0.68107444,-0.04792715,0.14645095,0.32643035,-0.1522971,0.022913763,-0.10716241,-0.2654869,-0.23803915,0.027347814,0.51236063,0.56219697,-0.18664908,0.45471165,-0.103040814,0.17512035,-0.20372984,-0.4498089,0.52513236,0.7816051,-0.20588997,-0.28493157,0.7070006,0.45535257,-0.239264,0.38395265,-0.59474134,-0.21576142,0.36421484,-0.20768784,-0.45170647,0.09439434,-0.3052986,0.14159729,-0.84442186,0.2024722,-0.12817322,-0.6258135,-0.67808914,-0.23001392,-3.1279018,0.1572849,-0.29487085,-0.1539763,-0.01733877,-0.15549162,0.13206184,-0.48296303,-0.5139778,0.11723036,0.12607644,0.5773039,-0.0059407055,0.11941451,-0.25853658,-0.17823134,-0.40558833,0.10292149,0.1302586,0.41992992,0.008613442,-0.4977487,0.18706551,-0.15616255,-0.330762,0.05049435,-0.5054253,-0.42895707,-0.16675122,-0.43073195,-0.2562436,0.6322052,-0.17933048,0.07508982,-0.25257155,0.09799502,-0.0467331,0.3507342,0.04041825,0.060080696,0.027434302,-0.16171576,-0.061622698,-0.21915627,0.31776902,0.022198277,0.28719422,0.53163016,-0.23752262,0.21308824,0.6482153,0.60138696,-0.1699277,0.9022705,0.5160402,-0.14510758,0.29986525,-0.08710242,-0.19754918,-0.6323532,-0.24671866,0.058527704,-0.4313822,-0.5613564,0.0045567728,-0.443427,-0.85624474,0.43297943,-0.091495454,0.25467104,0.025936173,0.16117702,0.534129,-0.21966311,-0.042731855,-0.09110014,-0.016511496,-0.51256853,-0.45773202,-0.57742226,-0.41609356,0.10931207,1.1832651,-0.119289406,-0.03678439,0.042082172,-0.33920184,-0.12062865,0.15957732,0.013248699,0.061246864,0.30220848,-0.060855594,-0.6303426,0.4937226,-0.02415136,-0.07458626,-0.48684484,0.15436853,0.4732018,-0.544654,0.63336354,0.2688866,0.009201725,-0.26660845,-0.5381391,-0.31762895,-0.20698296,-0.1611634,0.4423013,0.31052682,-0.7913098,0.41126126,0.27228004,-0.17995723,-0.68187344,0.29720405,-0.20845161,-0.12988926,-0.06897645,0.20295106,0.18290953,0.07157964,-0.040699024,0.17949335,-0.5009132,0.31596407,0.20695509,-0.07241493,0.47469348,-0.32879406,-0.029041896,-0.7110086,-0.10949645,-0.55834335,-0.18016061,0.19817649,0.2362751,0.04511704,0.17821583,0.1208729,0.30745682,-0.16892365,0.060890593,-0.03575284,-0.19963823,0.35879937,0.38819164,0.4382317,-0.40217176,0.5666925,-0.019611444,-0.0535466,-0.14622001,0.053737137,0.36818728,0.18763314,0.5054391,-0.024270449,-0.27779204,0.33113092,0.7603885,0.13016108,0.37980422,0.08066652,-0.21054378,0.32958835,0.03590416,0.12287096,-0.086141475,-0.4730343,0.06621856,-0.40699467,0.21038045,0.3276895,0.03354075,0.29827383,-0.10843585,-0.19408357,0.022268338,0.0629846,-0.073021926,-1.1555965,0.34706184,0.12981136,0.7842316,0.44704625,-0.14328308,0.024527239,0.8012987,-0.14588512,0.13883924,0.36680847,0.010829815,-0.49870104,0.5300259,-0.78699905,0.5657913,-0.1760305,-0.02386961,-0.059502963,0.08434786,0.42796776,0.7066363,-0.16857982,-0.051558454,-0.009762117,-0.3381284,0.21371116,-0.36347532,0.15345682,-0.65464103,-0.2559475,0.62726074,0.4865659,0.3892088,-0.16397677,-0.13876083,-0.011489208,-0.0491353,0.20882292,0.020755777,0.014091419,-0.10262631,-0.7448665,-0.20021142,0.39641237,-0.027155945,0.1256477,0.11075957,-0.2962316,0.10674051,-0.16338839,-0.0971811,-0.011127566,-0.6208415,-0.16231187,-0.032135185,-0.52604616,0.5287576,-0.2382917,0.23080473,0.16992855,0.03877973,-0.30733898,0.12207612,0.13619994,0.7382179,0.103829265,-0.006928146,-0.4212803,0.10095105,0.16521141,-0.16176929,-0.04569786,-0.12969811,-0.031900745,-0.53785,0.48916644,-0.11368593,-0.35154122,0.17216758,-0.17889588,0.106857695,0.6027976,-0.045444604,-0.17746632,-0.16282938,-0.12943214,-0.16390514,-0.117940806,-0.11167423,0.35811,0.013182678,-0.113330826,-0.08689667,-0.2065516,-0.0039057645,0.33285522,-0.0058413935,0.12316205,0.30120543,-0.012324593,-0.37638143,-0.020326529,0.024966117,0.48730135,0.1114353,-0.2199484,-0.22278509,-0.4243376,-0.38098165,0.037013438,-0.052004304,0.3643051,0.09367271,-0.2208227,0.7463408,-0.009044362,1.1286548,0.16025412,-0.26405627,0.05115175,0.55124,0.13955572,0.024842722,-0.28059798,0.7148548,0.5637342,-0.077413134,-0.1692132,-0.44504303,0.02994422,0.33439466,-0.16545229,-0.24470364,0.010583489,-0.74521226,-0.08683065,0.319109,0.19038823,0.2603285,0.001125506,0.07230624,0.27049378,0.049583912,0.33680254,-0.39700913,0.035016876,0.32880202,0.2873638,0.09061653,0.1732903,-0.4591309,0.29921764,-0.5923328,0.10107745,-0.0821533,0.14397492,-0.32574818,-0.29739183,0.23499136,0.120592274,0.39066792,-0.22876532,-0.3656569,-0.25648025,0.64819556,0.12668599,0.13363603,0.5340117,-0.24979319,-0.030824449,0.113447435,0.33828807,1.1407877,-0.23206301,-0.04976097,0.28436682,-0.30681768,-0.7733223,0.48169836,-0.33502308,0.22346577,0.020648832,-0.17976543,-0.5307463,0.24769759,0.31696066,-0.06358336,0.2127619,-0.46611255,-0.25561953,0.2318631,-0.23755255,-0.12597312,-0.22450288,0.06353139,0.3178773,-0.2528431,-0.35614982,0.12957491,0.40567896,-0.17490695,-0.4909628,0.034317903,-0.3519661,0.22225295,-0.014339762,-0.31921116,-0.18804535,-0.049538057,-0.3649709,0.06600394,0.13185073,-0.32889947,0.113428764,-0.4453195,0.008072809,0.79281455,-0.024984797,0.27223763,-0.5536226,-0.37406272,-0.99273056,-0.29820684,0.5714571,0.093151286,0.006826737,-0.63134444,-0.092040464,-0.015761668,-0.0034469196,-0.08337224,-0.45537874,0.52594304,0.20262916,0.1426083,0.027876165,-0.5922271,0.009905956,0.021345254,-0.15394258,-0.45168135,0.4384443,0.0095331585,0.8958092,0.03552956,0.122377574,0.16603382,-0.47277775,0.10097255,-0.17559426,-0.34677932,-0.5039584,-0.05156415,188 +376,0.44067076,-0.2867354,-0.42108968,-0.032553952,-0.27071783,0.2719391,-0.21279255,0.37211078,0.15197624,-0.46489683,-0.395,-0.22161663,-0.038664825,0.14889832,-0.28391603,-0.34154853,-0.10393156,0.1899713,-0.41658378,0.45047814,-0.29036567,0.20787366,-0.02878297,0.48403946,0.27676138,0.1442269,0.034516666,0.04199003,-0.31398386,-0.38551593,-0.11090804,0.31070468,-0.3828845,0.21071802,-0.2696798,-0.40052244,-0.009224777,-0.6500999,-0.3949528,-0.73063976,0.30696145,-1.051615,0.5890831,-0.011248665,-0.1920127,0.31864032,0.1453441,0.34653002,0.03848999,-0.07631711,0.14277768,-0.15098353,-0.101760976,-0.223024,-0.33940226,-0.4873102,-0.5675515,0.09489532,-0.26268187,-0.09468404,-0.16589041,0.11167097,-0.15985487,0.10048073,-0.044358026,0.41420126,-0.37119943,0.21908721,0.2856052,-0.15890822,0.12531504,-0.5768154,-0.18720032,-0.06734083,0.31150594,-0.15253818,-0.1734033,0.07082219,0.3477214,0.37021086,-0.057115834,-0.11171661,-0.22592369,-0.060574345,0.1465606,0.56363666,-0.06130003,-0.42393893,-0.18476275,0.0072069806,0.31773254,0.31746116,0.22864997,-0.09331112,-0.09062785,-0.14743821,-0.26679423,0.45890182,0.37067986,-0.23791802,-0.17902073,0.40938115,0.619462,0.1783797,-0.11612264,0.038270798,0.13391681,-0.49365523,-0.12312371,0.084861994,-0.24408509,0.49831796,-0.24122205,0.38572556,0.5471134,-0.13424301,0.13707525,0.10750355,0.091247395,-0.23650673,-0.27002618,-0.2869441,0.21894224,-0.45450002,0.18332942,-0.04218948,0.7222854,0.06417744,-0.61920124,0.26306438,-0.58399475,0.068064384,-0.05304503,0.34306335,0.5354102,0.37625772,0.28143615,0.5255137,-0.23047741,-0.04588722,-0.17638445,-0.31763604,-0.09619236,-0.18147297,-0.11674029,-0.5052809,0.08308269,0.022051182,-0.03941032,0.009825,0.60691583,-0.53020257,-0.15083352,0.061779764,0.86868256,-0.24946104,-0.1958841,0.95485973,0.93979686,0.863439,0.04374906,1.2129288,0.3170549,-0.13366474,-0.0027093377,-0.13311975,-0.58967596,0.31272417,0.42681408,-0.6709303,0.4813001,0.09662402,-0.05697625,0.2909035,-0.38177624,-0.037712988,-0.20386441,-0.068287544,0.15191105,-0.10839665,-0.4304783,-0.20973374,0.020965364,0.031132517,0.32398844,0.23202276,-0.10842036,0.4943282,0.06563638,1.5856807,-0.13013206,0.11265774,0.036736693,0.3766048,0.1898499,-0.1035391,-0.012478267,0.21228422,0.23899707,0.21321972,-0.4814717,0.051594127,-0.17796572,-0.3539669,-0.1799021,-0.18612845,-0.32989803,0.048257183,-0.33452383,-0.14817214,-0.23164536,-0.25842816,0.40394855,-2.5753329,-0.17295496,-0.19592847,0.35430267,-0.25510448,-0.51356953,-0.08893078,-0.4024842,0.32629162,0.24015503,0.3759529,-0.54847664,0.3207815,0.4428751,-0.62132317,-0.123082,-0.62944734,-0.05955003,-0.00438439,0.28166434,-0.074507356,-0.10504513,0.062459685,0.04369827,0.46244127,0.1394321,0.16701846,0.40923563,0.5217348,0.08331279,0.49136242,0.017982533,0.5147095,-0.23631202,-0.18846501,0.31188187,-0.30988318,0.5091139,-0.07131323,0.11073365,0.5850721,-0.46431947,-0.65724474,-0.6790916,-0.35880122,1.2440077,-0.08846785,-0.40805554,0.039843652,-0.271674,-0.5277348,-0.024462998,0.48041382,-0.22827807,-0.12807074,-0.81672484,-0.12454891,-0.16456416,0.09453797,-0.06386896,-0.032148786,-0.4474501,0.7179125,-0.042921636,0.38368696,0.2803002,0.12266726,-0.25361595,-0.45664096,-0.101988725,0.943729,0.53613526,0.18901458,-0.28979817,-0.1829543,-0.45443705,-0.019731658,0.07488843,0.59644586,0.50199217,-0.0069209463,0.13889064,0.28157747,0.05196809,0.08201601,-0.29823762,-0.2257422,-0.23706682,-0.09993507,0.6428742,0.55555755,-0.17030822,0.45566532,-0.11443073,0.30376413,-0.29222706,-0.44081298,0.432458,1.0864147,-0.1788521,-0.4140771,0.80549866,0.49276066,-0.3495315,0.26254985,-0.5189619,-0.15664406,0.35194868,-0.057589907,-0.5865358,0.14883839,-0.23721048,0.13391447,-0.9012313,0.25301367,-0.19569457,-0.43431142,-0.6709398,-0.03966115,-2.3132284,0.23861457,-0.17747097,-0.27460843,-0.20860867,-0.28384924,0.20133492,-0.5372126,-0.6372935,0.1446832,-0.09895897,0.7450005,-0.12037391,0.24337332,-0.15036047,-0.33011836,-0.2758823,0.14853108,0.16919793,0.38792345,-0.21563856,-0.36398402,0.07853565,-0.108479924,-0.3442996,0.05078902,-0.79039586,-0.52883047,-0.11510389,-0.39362925,-0.09754128,0.5000536,-0.41908413,0.021125296,-0.32993013,0.056207597,-0.15265967,0.23543571,0.061872907,0.044102937,0.16601494,-0.08029572,0.0033448935,-0.30980268,0.5309084,0.11728953,0.18062064,0.35144117,-0.16099747,0.3159898,0.21792562,0.62701553,-0.14752652,0.92920405,0.3098019,-0.15229198,0.22702566,-0.110194586,-0.3280631,-0.40609914,-0.114646144,0.027854562,-0.4205158,-0.49141145,-0.044475693,-0.34862214,-0.828847,0.5881155,0.041101534,0.17667499,-0.05997648,0.46030873,0.611251,-0.24826394,0.04297296,0.011691153,-0.16613398,-0.5567928,-0.39145735,-0.47925147,-0.44002303,0.121185265,0.88252014,-0.15278633,0.21658134,0.087868996,-0.3803649,-0.034093015,0.09515383,-0.08562805,0.019803772,0.5921745,-0.06897533,-0.6089495,0.42282656,-0.07041701,-0.21633135,-0.58498657,0.22624786,0.797723,-0.5857337,0.5094594,0.49023396,-0.035701018,-0.36500397,-0.41254684,-0.07980088,-0.06562626,-0.32975847,0.41645908,0.418557,-0.7310584,0.34852704,0.32035777,-0.09655393,-0.79460377,0.6819372,-0.024772745,-0.112867855,0.008751901,0.34114406,0.19194081,0.006860948,-0.22343244,0.19698095,-0.37178922,0.20180456,0.041579783,-0.15475324,0.09410877,-0.17594466,-0.1906641,-0.7544357,0.18974806,-0.47161976,-0.37734956,0.329459,0.039338607,0.11343921,0.28728566,0.21704042,0.35322025,-0.42914206,0.05551996,-0.09630233,-0.13264881,0.20678923,0.40791827,0.56300056,-0.49205413,0.5478744,0.009906505,-0.046322983,0.13354768,0.044524543,0.35965738,0.029697273,0.41398007,0.115504526,-0.20698349,0.19394949,0.7612896,0.13529056,0.44035226,0.250087,-0.122921444,0.17441705,0.012049331,0.27602425,-0.15960066,-0.64401656,0.006578765,-0.28438866,0.0676942,0.36572346,0.038860444,0.28922686,-0.15653434,-0.2854398,-0.004493394,0.10286869,0.07151641,-1.1378337,0.15479554,0.17263098,0.74871147,0.20770364,-0.10716409,0.05277707,0.7583335,-0.27031106,0.08203101,0.4625525,0.075199604,-0.4079079,0.44141123,-0.6080376,0.34358412,-0.11268048,-0.0041983095,-0.003946147,-0.1560674,0.43538326,0.7897574,-0.13899691,-0.017153561,-0.113534965,-0.36913964,0.19343375,-0.3263792,0.20823215,-0.557192,-0.18934672,0.65762675,0.61023223,0.4957525,-0.18999758,0.06539293,0.16737993,-0.11588267,0.12401182,0.3249142,0.16508682,-0.038405333,-0.6236041,-0.050866492,0.49686256,0.14333251,0.105923906,-0.00037607126,-0.30193737,0.2173637,-0.18533106,0.06699038,-0.013262819,-0.85099596,-0.1218034,-0.34850827,-0.68073225,0.19012532,0.0010056368,0.027151903,0.26963383,-0.073999226,-0.23444028,0.26492667,0.058021817,0.85564405,0.08276157,-0.04624151,-0.26520228,0.30475348,0.11264778,-0.26924226,-0.04221034,-0.15575147,0.20149219,-0.69829494,0.48670694,-0.06969463,-0.5061283,-0.0023853928,-0.014205851,0.10539607,0.5050749,-0.10088118,-0.0961444,0.092217304,-0.19103205,-0.30135706,-0.17343669,-0.15176606,0.17409118,0.30971447,-0.03945338,-0.14959994,-0.044513147,-0.33994183,0.40763682,0.07282655,0.47847095,0.5507241,-0.04608408,-0.31201077,-0.13233754,0.06171868,0.5602198,-0.11583935,-0.24638091,-0.26108077,-0.5439207,-0.20000133,0.47539642,-0.040492613,0.34233823,0.15423593,-0.14749773,0.73338145,-0.07756364,1.0971016,0.028102292,-0.37618718,0.07729288,0.48320618,-0.016705304,-0.15608673,-0.38897762,0.95195514,0.3971262,-0.10390724,-0.020311607,-0.43529144,0.06134745,0.097352795,-0.19793262,-0.042612348,-0.01172295,-0.5963497,-0.24089734,0.12617873,0.2703322,0.062066384,-0.13229072,0.22112727,0.37335616,-0.11970144,0.38715273,-0.46418062,-0.32080048,0.3495272,0.3214657,-0.063713156,0.08584922,-0.42689943,0.3254042,-0.5509264,0.02470529,-0.46124128,0.22275841,-0.21641532,-0.21782494,0.20950589,0.014523489,0.4483311,-0.42496577,-0.42372116,-0.24043001,0.3732476,0.20497169,0.13163938,0.3491905,-0.33406022,-0.07546306,0.09960572,0.5911043,1.0867653,-0.10645198,0.19768763,0.36472198,-0.28864077,-0.5023055,0.45084026,-0.45255312,0.27097526,0.115809694,-0.18633796,-0.47576287,0.27415898,0.3545445,0.14284328,-0.12651335,-0.6028367,-0.09647612,0.3120375,-0.2942862,-0.13117543,-0.24493997,-0.0056025004,0.43795466,-0.11095668,-0.39794272,-0.13533176,0.25153568,-0.24553509,-0.3331994,-0.06807045,-0.35208413,0.22872616,0.0007056296,-0.30296203,-0.18917899,-0.13541554,-0.45082444,0.08845222,0.13801776,-0.34424922,0.0038621575,-0.32783243,-0.0054678917,0.8345366,-0.30698824,0.12068065,-0.48076206,-0.41733137,-0.6882087,-0.36192805,0.103912555,0.07374246,0.13695562,-0.50677747,0.021503234,-0.28143463,-0.20635565,0.0283126,-0.44670072,0.4861786,0.26328656,0.44579792,-0.12217345,-0.74729794,0.24247469,-0.03020938,-0.33682895,-0.58621013,0.5783724,0.02523298,0.8269949,0.016438644,0.114312015,0.22384915,-0.5966443,-0.08207522,-0.10657432,-0.030792654,-0.89837587,0.10250045,191 +377,0.5011193,-0.09551532,-0.53383857,-0.1507596,-0.29079077,0.071847185,-0.09311599,0.38221225,0.115210995,-0.43045774,-0.11683901,-0.107908264,0.039215215,0.20515609,-0.18157579,-0.5570736,0.0201599,0.0072064954,-0.6027724,0.6795554,-0.3135379,0.2814125,0.020462159,0.21356884,0.3285656,0.34503332,0.20570514,-0.1949218,0.092153706,-0.11824681,-0.27249098,0.08578031,-0.6296807,0.13880718,-0.12089218,-0.32503203,0.0078061563,-0.24991243,-0.40427902,-0.7928952,0.3422448,-0.88583744,0.3671538,-0.059220247,-0.23056458,0.15841821,0.25846156,0.43195358,-0.24191669,-0.07689837,0.18488367,-0.15038015,-0.075601056,-0.032511424,-0.16307391,-0.67309695,-0.46844214,-0.110367835,-0.56699646,-0.1845058,-0.39715323,0.13103023,-0.3559051,-0.04725998,-0.30839333,0.40445367,-0.518489,0.019893693,0.14029671,-0.14810947,0.26165512,-0.68838173,-0.12328452,-0.08336854,0.21017973,0.06333923,-0.14669296,0.38397238,0.11775456,0.30337355,0.21651223,-0.044758897,-0.26522022,-0.24886556,0.165119,0.3885,-0.01010902,-0.29075435,-0.12656711,-0.117489636,0.12799422,0.31028047,-0.0065314663,-0.025213053,-0.027550042,0.010020561,-0.294322,0.4754401,0.6375152,-0.33165768,-0.2626622,0.31915063,0.6295037,0.20570004,-0.26251048,0.20932455,-0.041652977,-0.48481584,-0.24061005,0.29768437,-0.2142796,0.3825581,-0.13221548,0.27976125,0.61354864,-0.11008269,0.051022332,0.02229696,-0.039852757,-0.13951416,-0.21704651,-0.0748329,0.23619017,-0.53917253,0.3251726,-0.34455052,0.7138797,0.20432924,-0.4610576,0.31827313,-0.5632824,0.15708315,0.027662506,0.6778644,0.6267374,0.38172126,0.06382743,0.9424835,-0.36380976,0.06521077,-0.1620169,-0.2518658,-0.08073255,-0.024656432,0.22777387,-0.35752603,0.07856765,0.02591321,0.09442333,-0.13155164,0.32228732,-0.5513369,-0.15453245,0.0074588233,0.7338434,-0.23943917,0.022250405,0.8929649,0.9744669,0.9391365,0.09546188,0.8326211,0.12241733,-0.36476693,0.106218986,-0.2586632,-0.6115178,0.25092116,0.316701,0.45240608,0.18691835,0.06873468,-0.2923038,0.32381222,-0.39462495,0.014308759,-0.3204338,0.20820062,0.09626137,0.0041351146,-0.31347698,-0.21231349,-0.09536089,-0.0858316,0.10891525,0.18459845,-0.3693413,0.47236452,0.04769498,1.2462028,-0.102331564,0.027976189,0.18123499,0.5878801,0.18875064,-0.051165532,0.15319796,0.33838564,0.37516505,0.0378053,-0.6164358,0.14605117,-0.40772295,-0.45476314,-0.036048982,-0.45519474,-0.095837034,-0.08871355,-0.37516284,-0.1364847,-0.052209496,-0.40064985,0.4764095,-2.8497822,-0.069890514,-0.23089896,0.31684098,-0.29141554,-0.18930542,-0.10826902,-0.57269126,0.432568,0.3950757,0.53315324,-0.5009141,0.5644868,0.48646575,-0.5973334,0.19721672,-0.5464125,-0.10999409,0.027731359,0.45532158,-0.0035383275,0.023871748,-0.07174034,-0.109594055,0.61259425,0.070776395,0.13195534,0.31515387,0.29466605,-0.105483845,0.5333549,-0.016424308,0.4916422,-0.5260772,-0.02481384,0.3409337,-0.40858653,0.3440849,-0.16444476,0.16123901,0.6201884,-0.38805196,-0.8435813,-0.5626203,-0.31489605,1.1480266,-0.30383608,-0.44700477,0.3105302,-0.3435037,-0.07553095,-0.08396881,0.65241337,0.09513206,-0.0042777765,-0.5997311,0.0234108,-0.27981657,0.22823788,-0.05743611,0.11956114,-0.37983832,0.9089588,-0.14425683,0.53473467,-0.033666182,0.26100776,-0.18005134,-0.37932745,0.037704192,0.66421705,0.38259372,0.041226555,-0.223462,-0.31444338,-0.38427496,-0.18305214,0.072238125,0.8510623,0.6148162,-0.044435523,0.07264484,0.32113442,-0.13653268,0.045729198,-0.25313738,-0.23285496,-0.18612187,0.047195323,0.42165375,0.34701,0.100058325,0.42754146,0.03130866,0.39638105,-0.17287408,-0.49641055,0.3008979,0.6579791,-0.23907962,-0.22354738,0.42723507,0.61759746,-0.104907416,0.42762852,-0.72349685,-0.3715399,0.51387066,-0.098426275,-0.47774297,0.17247522,-0.31730026,0.08455836,-0.7661025,0.07789811,-0.497787,-0.88153166,-0.41646913,-0.1174136,-3.5991445,0.12879607,-0.2624093,-0.02518321,-0.1161719,-0.1797484,0.12501629,-0.5434879,-0.503019,0.09685638,0.13288546,0.72693837,-0.17168453,0.06995828,-0.30227038,-0.07975272,-0.42761257,0.3542729,0.17906792,0.2248089,-0.2933182,-0.2894592,-0.044326562,-0.026696125,-0.3325827,0.01123678,-0.55712163,-0.3855052,-0.13545704,-0.4290994,-0.2085867,0.56932104,-0.23987874,0.12356299,-0.115398206,0.10228747,-0.12889518,0.23505218,0.26769462,0.0885043,-0.012052758,-0.14234082,-0.065493904,-0.32487655,0.38537475,0.029514117,0.43885407,0.35967177,-0.16245201,0.2277955,0.538245,0.46615276,0.0827276,0.9270601,0.15480919,-0.17134908,0.3890961,-0.16885318,-0.2725387,-0.6734376,-0.13476267,-0.053514473,-0.36783418,-0.46307403,-0.15665162,-0.36750084,-0.89338857,0.42753935,0.10917406,0.31139907,0.034563158,0.31753,0.5259204,-0.09389088,-0.021804746,0.004391984,-0.074013695,-0.4900145,-0.29263654,-0.6158491,-0.45477778,-0.05000649,0.83386225,-0.2755897,-0.19040485,-0.035286922,-0.31275558,0.033121333,0.28200698,0.17253086,0.15017417,0.49506745,-0.2168289,-0.5805171,0.69008785,-0.21114312,-0.14605376,-0.5361784,0.27222344,0.468702,-0.6568937,0.3422436,0.20981929,0.033501,-0.33580777,-0.40819755,-0.12160729,-0.09775824,-0.22020952,0.28720134,0.023655133,-0.7699989,0.31188554,0.14946507,-0.027514389,-0.63282174,0.52717763,-0.13082056,-0.29614392,-0.006675337,0.3596707,0.15194641,0.002995375,-0.17580469,0.10612685,-0.3011412,0.29571444,0.22593464,-0.12288064,0.36767483,-0.20704754,-0.17527954,-0.64904106,0.11973088,-0.54605955,-0.03873522,0.40199128,0.060062427,-0.027117636,0.20119055,0.09281838,0.41424337,-0.07776187,0.11634822,-0.20466387,-0.2902484,0.5320724,0.44542816,0.29412013,-0.51258534,0.78866607,0.1326023,-0.1903959,0.15023525,0.1733391,0.3523791,-0.057691067,0.6623232,-0.11379854,-0.23181543,0.23284207,0.79571086,0.32351518,0.54294103,0.036130164,-0.052498493,0.2702844,-0.02868872,0.1314519,0.024724388,-0.6205005,0.06469953,-0.18830644,0.1237275,0.32165292,0.07988155,0.35539633,0.12507863,-0.056892842,-0.07238405,0.08544479,-0.15001789,-1.2259865,0.45312807,0.29405138,0.9434323,0.43804437,-0.0669001,-0.015439527,0.66738904,-0.1143384,0.14657035,0.3096427,0.16312441,-0.44756928,0.43122765,-0.7078686,0.59568346,-0.09462123,-0.029687628,0.043497622,-0.09463467,0.4591274,0.95210284,-0.34208918,-0.13058738,-0.04629632,-0.27902082,0.3475066,-0.21650255,-0.023599317,-0.5660578,-0.3503882,0.5265953,0.50907886,0.33267453,-0.02831325,-0.047772683,-0.16426834,0.048919022,0.3439982,-0.050368708,0.0631999,-0.23540388,-0.5275732,-0.33995214,0.4486766,-0.40433097,0.16928266,0.21008645,-0.3050974,0.30380353,0.1412383,0.06625135,-0.1813011,-0.65802926,0.058901787,-0.17990805,-0.4360493,0.44042692,-0.24312066,0.517924,0.30157796,-0.12252063,-0.2859802,0.17166607,0.16770013,0.6255803,-0.15237105,-0.17257118,-0.5380638,0.018090788,0.2355357,-0.33082598,0.0033238572,-0.18971917,0.012858803,-0.64986026,0.33908525,-0.22786248,-0.36132026,0.09553521,-0.20575976,-0.02930569,0.61918294,0.017773049,-0.17736952,-0.01680142,-0.028273629,-0.23617513,-0.19977058,-0.1940643,0.20530483,-0.0071292096,0.042583797,-0.12484909,-0.097410485,0.18724373,0.29716402,0.08737246,0.2727318,0.26771852,0.032148592,-0.37687254,-0.04280181,0.23523775,0.5922614,0.052292947,0.050358057,-0.017400865,-0.46112648,-0.42554542,0.09493132,-0.010681574,0.42228475,0.21950717,-0.2848568,0.6558963,-0.04049647,1.0866927,0.020596653,-0.33354875,0.08242826,0.6663448,0.07571676,-0.09932632,-0.26151562,0.89857113,0.5337493,-0.1332563,-0.04598638,-0.39270523,0.0648443,0.27569994,-0.09347705,-0.16506384,-0.012309198,-0.5063119,-0.11295346,0.13060321,0.26303476,0.22054185,-0.05863687,-0.16958995,0.28971452,0.027372675,0.3338347,-0.49732044,-0.25783333,0.29982796,0.009965797,-0.110181734,0.15190022,-0.3586678,0.35468057,-0.5723713,0.11846077,-0.22073242,0.093399204,-0.23874529,-0.23054682,0.2360398,-0.15796335,0.4738369,-0.19324203,-0.390377,-0.17195103,0.46136042,0.41782573,0.30432394,0.62587935,-0.14817664,0.04462225,0.062445097,0.5396115,0.83168477,-0.26736733,-0.051857892,0.29372123,-0.47679988,-0.6414606,0.2836677,-0.3703236,0.0648006,0.08723353,-0.23876552,-0.25824267,0.33656046,0.1663724,-0.10113295,0.1287437,-0.7682443,-0.21654,0.070586756,-0.3209372,-0.19040762,-0.42460862,0.32180884,0.57941216,-0.36480936,-0.19209199,0.11124388,0.1113712,-0.23375122,-0.6592317,0.09232431,-0.24668384,0.32471254,-0.012066296,-0.25695923,-0.08099318,0.17599566,-0.5496653,0.16942903,-0.039123837,-0.36662418,0.13566102,-0.28165528,0.037361868,0.76379794,-0.17443629,0.0031932315,-0.38984603,-0.49755603,-0.6998204,-0.5399362,0.3100349,0.30856532,-0.016345335,-0.47464767,-0.03898717,0.010596906,0.031427443,-0.1449322,-0.4758778,0.5176749,0.06347259,0.32795268,-0.011035157,-0.94414055,0.2858747,0.097998336,-0.08735102,-0.49030092,0.43741575,-0.15932663,0.6869263,0.19843309,0.1831679,0.14951055,-0.45729968,0.024999116,-0.23710105,-0.07199777,-0.6547507,0.117144294,192 +378,0.64284384,-0.31002122,-0.5544117,-0.029881245,-0.1371707,-0.057636257,-0.13617554,0.5821729,0.36746186,-0.3236275,-0.30321875,-0.034864906,0.06088838,0.043150574,-0.17966233,-0.47328216,-0.02569701,0.25732988,-0.58298457,0.6931666,-0.26773128,0.23489843,-0.014977957,0.49289793,0.22356583,0.13379464,-0.07401259,0.023314476,-0.030456258,-0.0038197595,0.030604009,0.39781666,-0.5703591,0.06466867,-0.3873364,-0.45629925,-0.3151935,-0.562797,-0.36894712,-0.92905045,0.30538368,-0.81883144,0.5051335,0.1403736,-0.41576734,0.12339834,-0.05866513,0.18005545,-0.3007297,-0.08019761,0.12068604,0.02298018,-0.07264735,-0.05320635,0.0046532876,-0.14529805,-0.63095444,0.06118593,-0.48258847,0.15405263,-0.19613358,0.09371253,-0.339873,-0.08397488,-0.031673737,0.7184784,-0.31343335,-0.08267216,0.16475494,0.0035652858,0.32465753,-0.5871355,-0.22792812,-0.11084355,0.3920299,-0.18080655,-0.40603837,0.12908173,0.22650771,0.59455854,0.021929907,-0.26052758,-0.28914103,0.24079014,-0.04738472,0.4418374,-0.020031989,-0.576873,-0.1807158,-0.008267845,0.36438352,0.14055434,0.24260895,-0.12397898,-0.18128507,0.0073979413,0.019378934,0.43700913,0.5792602,-0.21731398,-0.24417482,0.359476,0.62577313,0.17037375,-0.02920961,0.08223865,0.045488495,-0.58629817,-0.18504085,0.07814896,-0.29927447,0.49796304,-0.23658077,0.34840816,0.5205219,-0.09230246,-0.16886842,0.33494517,0.06822563,-0.16418801,-0.07821947,-0.31715742,0.18701823,-0.47891822,0.118273206,-0.31653807,0.59215677,0.18295558,-0.7805168,0.2659929,-0.5746976,0.28567824,-0.0049207364,0.61228734,1.0792954,0.40838486,0.4549136,0.6945406,-0.28844577,-0.014593393,0.07610166,-0.24038479,0.1485288,-0.29764146,0.021870375,-0.5835196,-0.23824517,-0.05849317,-0.1937481,0.091226764,0.4489269,-0.6788234,-0.27125522,0.07853091,0.6026074,-0.19304223,-0.13281152,1.0830712,1.0090868,0.9964551,0.10668813,1.1433417,0.19877775,-0.2875493,0.26247698,-0.2649653,-0.74087995,0.38122773,0.1838805,-0.20956203,0.39730832,-0.04760949,-0.11383198,0.4098987,-0.5669138,0.025931848,-0.11426945,0.017923037,-0.06622107,-0.060958248,-0.42414775,-0.4066408,-0.2232881,0.19714525,0.20700553,0.26500207,-0.284597,0.42422003,-0.038731392,1.3301029,-0.07642005,-0.05849869,-0.03739222,0.43076023,0.23216756,-0.22741096,-0.32029918,0.16818665,0.3354118,0.11833397,-0.6026243,0.14273332,-0.109776735,-0.2182483,-0.11914333,-0.34047678,-0.022709796,-0.09915809,-0.38663676,-0.2448835,-0.32197443,-0.5491422,0.3201593,-2.607596,-0.2887657,0.041487355,0.42791325,-0.18881114,-0.30032846,-0.28518134,-0.5854937,0.37873858,0.3067758,0.48169222,-0.8278305,0.3245304,0.30263194,-0.65786994,-0.052990615,-0.7321641,-0.15397552,0.06440109,0.24689409,0.052535288,-0.13390683,0.10344188,0.23267838,0.378505,0.15038708,0.12592827,0.3924219,0.46393278,-0.07608463,0.29565546,0.062231857,0.49168256,-0.32145828,-0.15491973,0.4226908,-0.44563255,0.1648867,-0.19686754,0.09331413,0.5067927,-0.6123436,-0.94074976,-0.6548113,0.110627785,1.2454349,-0.055333458,-0.42775854,0.078561924,-0.61218494,-0.12954403,-0.116421685,0.7370474,-0.14643672,-0.18716624,-0.8970936,-0.1587832,0.029799035,0.114833795,-0.034043003,0.01609146,-0.5092314,0.5553519,-0.011698701,0.5058703,0.2733279,0.21501163,-0.3675366,-0.63263625,0.24847934,1.0200925,0.41487598,0.15777385,-0.2513359,-0.11660136,-0.41529694,0.09970717,0.043448143,0.55392927,0.7304117,-0.19243346,0.24460427,0.37097147,0.048186872,0.13794754,-0.17099537,-0.24294293,-0.3465571,0.047698047,0.6089447,0.8766066,-0.2541108,0.40281853,-0.014475652,0.10605979,-0.13980943,-0.40781572,0.7135206,1.2138633,-0.21932021,-0.24406992,0.5331082,0.41771927,-0.28092098,0.5668027,-0.568484,-0.40202454,0.31515637,-0.16686676,-0.34786487,0.24691619,-0.3843839,0.3466368,-0.97315323,0.32607752,-0.22491945,-0.34005123,-0.622004,0.1148877,-2.3666065,0.15319808,-0.17161004,-0.10042262,-0.27152762,-0.33457312,0.10370178,-0.5505527,-0.7189618,0.18333904,0.06363641,0.82892895,-0.08018977,0.092206374,-0.15509507,-0.49764803,-0.40464023,0.049448628,0.26970926,0.5291843,0.12085791,-0.43003017,-0.019565748,-0.16186066,-0.2899063,-0.0696476,-0.59742814,-0.6531598,-0.09677996,-0.6525523,-0.31490874,0.5892276,-0.13178487,0.06310474,-0.20648344,-0.069688715,0.08136548,0.40582266,-0.0039273626,0.036233332,0.004635499,-0.11730765,0.20899126,-0.11359068,0.25020605,-0.03854068,0.21339305,0.42074013,-0.250533,0.45691457,0.5933503,0.75629586,-0.23028927,0.9007905,0.6496642,-0.026806584,0.22332154,-0.16919753,-0.39392498,-0.52425534,-0.10761862,-0.07784957,-0.4360078,-0.25648996,0.019016977,-0.44488683,-0.97671175,0.4018252,-0.05169463,0.32808343,0.1096613,0.18452881,0.70983505,-0.14320767,0.06637545,-0.21279417,-0.21776721,-0.44378588,-0.10494178,-0.6276034,-0.45491934,0.116086625,0.99739903,-0.235827,0.111760564,0.28446448,-0.1439167,0.05439694,0.18532327,-0.025534542,0.08805221,0.49845362,0.008964954,-0.5674096,0.34185812,0.045119636,-0.18824148,-0.5319578,0.26616198,0.46447113,-0.6385932,0.39375526,0.37653837,-0.08389961,-0.18048373,-0.48937845,-0.05783073,-0.10416156,-0.05368639,0.4816208,0.39152366,-0.68391323,0.44606075,0.28994745,-0.09983552,-0.8372397,0.50070924,-0.008852045,-0.2723527,-0.1912122,0.322193,0.027236512,0.08128236,-0.29955626,0.21957955,-0.32104418,0.29359373,0.11316749,-0.2829588,0.25208044,-0.19631456,-0.09794403,-0.63510424,0.085591555,-0.7566257,-0.25133458,0.2764179,0.24781673,0.06716221,0.029917931,0.13554537,0.36581522,-0.25809637,0.037461698,-0.070905074,-0.2717573,0.32669693,0.426673,0.55897474,-0.33743474,0.5821923,0.051212844,-0.16155215,-0.0068697757,0.01632489,0.35748276,0.025073767,0.3416144,0.17521122,-0.18879439,0.25292078,0.65405905,0.12773475,0.41804674,-0.02620967,-0.05932956,0.10225745,0.13392678,0.3847901,-0.23729464,-0.4400108,0.013428637,-0.38181168,0.13129136,0.47254896,0.2248424,0.1329007,-0.06583994,-0.36786518,-0.06502176,0.19802412,0.031664226,-1.4968796,0.34542328,0.31630605,0.88844454,0.47792265,-0.14807269,0.05661336,0.66320133,-0.17530979,0.16637349,0.32009035,0.060527027,-0.5822874,0.51037097,-0.6851748,0.52579486,-0.04776028,0.040805165,-0.03860895,-0.080407016,0.37120575,0.6923121,-0.18966642,0.11888271,-0.08215802,-0.2461609,0.1521984,-0.40104744,0.07955409,-0.6905555,-0.13604568,0.82236946,0.4373164,0.33058304,-0.29991674,0.13002738,0.011921031,-0.16510169,0.21557109,0.06781795,0.06267937,-0.101219244,-0.74962044,-0.10453914,0.38383484,-0.12596536,0.11731713,-0.023289025,-0.2440881,0.04295116,-0.15309219,-0.038217824,-0.19230983,-0.7746505,-0.21414694,-0.4238841,-0.26496667,0.678815,-0.066749886,0.23769473,0.33117512,0.17725272,-0.35804322,0.16910617,0.021155996,0.6623584,0.022355411,-0.14566132,-0.37700143,0.32836086,0.24213901,-0.23802915,-0.27502522,-0.20064318,0.17559123,-0.3264935,0.53907454,0.11869997,-0.38176575,0.07058801,-0.06571938,0.051861662,0.5475376,-0.19820942,-0.17163788,0.0112299835,-0.22051294,-0.3337811,-0.28321,-0.12491895,0.29967138,0.34698704,-0.12198399,-0.16274402,-0.013380106,-0.08903499,0.5174797,0.12481165,0.3898048,0.47503906,0.1258761,-0.40555805,-0.018817263,0.2868077,0.5282044,0.062428497,-0.1897356,-0.56309,-0.43571642,-0.44361168,0.029863775,-0.120343074,0.24612017,0.10866041,-0.04029184,0.6691275,0.18486086,1.1564378,-0.000751621,-0.3216726,0.10043276,0.48206738,-0.08822514,-0.237008,-0.35719398,0.8970044,0.42520973,-0.19363417,0.013977866,-0.2862641,-0.08446993,0.27710536,-0.12944847,-0.14873764,-0.082195826,-0.6807232,-0.29363364,0.23560289,0.3815009,0.14046016,-0.17194441,0.05759766,0.24472143,-0.10508567,0.09489048,-0.49925286,-0.15354553,0.32972455,0.23566552,-0.02482714,0.03075753,-0.55895585,0.2957912,-0.47954348,-0.01961368,-0.14925154,0.25323984,-0.13435192,-0.47250083,0.2756774,0.1645781,0.32329568,-0.3766549,-0.42844105,-0.40379456,0.5046176,0.13932993,0.06008062,0.4650429,-0.37634262,-0.011626227,0.15549226,0.5153533,1.0810956,-0.051069677,-0.05779508,0.2682065,-0.29084417,-0.6549805,0.26790234,-0.33137655,0.3570374,-0.11948771,-0.20997126,-0.65578884,0.23157136,0.12634543,0.22535859,0.03361353,-0.64663124,-0.32908157,0.2723517,-0.24479191,-0.04443678,-0.45545313,-0.07838363,0.5299615,-0.19186306,-0.30031604,0.124381356,0.13728948,-0.08935552,-0.55765855,-0.066160776,-0.40253633,0.11174076,-0.00324483,-0.38295978,-0.16857198,0.011181082,-0.5135624,0.24778093,0.1576686,-0.37991673,0.09902501,-0.42976263,-0.014808704,1.0814664,-0.25291857,0.4030462,-0.29128405,-0.51238656,-0.81730664,-0.24201335,0.3999785,0.08115093,-0.0358474,-0.8913545,0.035344116,-0.09465783,-0.122219376,-0.09457238,-0.37489128,0.51250875,0.15952085,0.29545805,-0.08253115,-0.7911628,0.122819886,0.06406554,-0.30195194,-0.56125516,0.51620424,0.25031576,0.8761407,0.18785326,0.24222064,0.34322444,-0.5989937,-0.14952108,-0.11885316,-0.08420675,-0.5151519,-0.0049023586,197 +379,0.46491584,-0.26387227,-0.5943875,-0.1324882,-0.009291193,0.26885563,-0.19582209,0.6754731,0.19532333,-0.4154107,-0.16083105,-0.02774237,-0.02621301,0.42329553,-0.074600495,-0.44269738,0.07428326,0.21202967,-0.42337567,0.5410641,-0.34866124,0.28953594,-0.24439968,0.45176336,0.08490147,0.23783164,-0.007229815,-0.067302145,-0.35359457,-0.018848602,0.08754309,0.346781,-0.34815952,0.15853642,-0.24181667,-0.29170713,-0.037863415,-0.36393553,-0.4816885,-0.69715816,0.23496887,-0.77293617,0.54450804,-0.068589166,-0.2599357,0.28067306,0.0010358521,0.2312911,-0.35091776,0.057896823,0.16543306,-0.14669214,-0.05651616,-0.26758903,-0.21412008,-0.5631587,-0.51199704,-0.04565962,-0.38340807,-0.018857727,-0.14649351,0.02134817,-0.23639716,-0.07209699,0.008003141,0.28538018,-0.5376884,-0.014542499,0.18414687,-0.10167067,0.047827933,-0.6358078,-0.26608944,-0.19508867,0.47955894,-0.14513266,-0.14293459,0.31946972,0.20760158,0.52814627,-0.23792887,-0.0826332,-0.4376189,0.008623004,0.10565543,0.5432071,-0.20525517,-0.6155882,-0.029749239,-0.07475984,0.34907538,-0.03907768,0.13073634,-0.028090715,-0.10492623,-0.024873082,-0.13910086,0.2672186,0.46991253,-0.22483368,-0.2106043,0.42351967,0.54828054,0.27638873,-0.2325566,-0.07708477,0.036797386,-0.49123505,-0.12397295,0.0046821237,-0.21950212,0.48420194,-0.13410859,0.20344687,0.58958375,-0.09069722,0.042824812,0.080249615,0.21039067,0.02897951,0.0048030443,-0.43703756,0.20825884,-0.26386783,0.03309395,-0.09428506,0.42150787,0.2931622,-0.5847369,0.35136825,-0.43365064,0.023790106,-0.063449465,0.4285898,0.68425554,0.4690611,0.24378999,0.5856897,-0.24760342,0.081857644,0.11521666,-0.12929474,0.12976143,-0.3492956,-0.11612252,-0.55213493,0.23750904,0.026639441,-0.13133316,0.25915083,0.49783066,-0.4622015,-0.17916194,0.1850165,0.8134985,-0.23597951,-0.0025753889,0.66257423,0.91400397,0.85290784,-0.05147744,1.1171032,0.30410329,-0.44734675,0.18732524,-0.26249197,-0.84763306,0.24068686,0.3055305,-0.44745424,0.46495348,0.13026802,0.023629993,0.38845733,-0.4741277,0.11058475,-0.11629324,-0.025115345,0.16628316,-0.18459046,-0.43794551,-0.25787783,-0.14394067,-0.04816827,0.18378465,0.37362668,-0.19951646,0.4371455,-0.05697107,1.6296198,0.027163556,-0.0064496747,-0.029044759,0.61248934,0.2186456,-0.040766664,-0.09215163,0.49562666,0.39375976,-0.014630641,-0.5274291,0.14762399,-0.28056246,-0.43653926,-0.2345482,-0.30158225,-0.12510881,0.031478617,-0.42502993,-0.11276227,0.01000739,-0.09827906,0.31951275,-2.5883586,-0.1663163,-0.06668461,0.49028298,-0.2505565,-0.26671687,-0.41356444,-0.37216622,0.37621522,0.26166287,0.5077091,-0.6086043,0.33259943,0.30255857,-0.52704275,-0.0773594,-0.45579964,-0.120025806,-0.028987663,0.28586024,-0.04513421,-0.04596289,0.28777042,0.2562264,0.38554,-0.05607484,0.12542579,0.33071646,0.42650145,0.11771564,0.31062528,-0.13392825,0.6449965,-0.3984315,-0.15555862,0.26191905,-0.5713468,0.3240829,-0.10328513,0.1296154,0.4713869,-0.34503683,-0.88996345,-0.5302912,0.11895909,1.1909479,-0.19885087,-0.44051626,0.13613942,-0.6433183,-0.35001746,-0.14166358,0.4268538,-0.22638574,-0.12904878,-0.8747974,-0.11905048,0.021959549,0.16772954,-0.0050140065,0.10458553,-0.3943608,0.63493097,0.035131812,0.5469869,0.27448395,0.097346716,-0.20551959,-0.3869714,0.0066252947,0.72522694,0.33543512,0.19893281,-0.19299293,-0.10161585,-0.4044604,0.08613702,0.0588784,0.5333197,0.44905934,-0.10897745,0.06524153,0.11281692,-1.7738768e-05,0.1466625,-0.23374823,-0.2528918,-0.16989031,0.2591359,0.49994633,0.61284363,-0.29651445,0.36943313,-0.07965156,0.16080485,-0.16982944,-0.46854264,0.5642022,0.9496235,-0.25069514,-0.21719302,0.47857258,0.52802044,-0.393845,0.39061055,-0.63559216,-0.3829264,0.4027892,-0.13921222,-0.3223862,0.24078205,-0.2964594,0.3497743,-0.9218315,0.25768453,-0.2044553,-0.28165323,-0.7506889,-0.036969747,-2.727497,-0.018878493,-0.0188378,-0.22060879,-0.18849584,-0.05048575,0.21094558,-0.6955843,-0.6540341,0.23073049,0.026147025,0.6768132,-0.011560676,0.090604134,-0.32048368,-0.42427894,-0.2549384,0.13969354,0.14529872,0.45228037,0.08895772,-0.6602174,-0.13218214,-0.18311681,-0.20345218,-0.009054084,-0.6137822,-0.35836378,-0.14007692,-0.545108,-0.10799122,0.58532655,-0.34071556,-0.009314626,-0.15837385,0.08283321,-0.2654074,0.2128112,0.007490603,0.12945722,0.05649985,-0.21976995,0.22643828,-0.23812404,0.25823554,0.058368046,0.19978602,0.37119165,-0.037922043,0.051812414,0.5665821,0.75424325,-0.106438234,0.8374669,0.6066104,-0.16057634,0.30158493,-0.3625256,-0.23879221,-0.4239032,-0.35312313,0.075409435,-0.4499288,-0.57422626,-0.040546205,-0.54440904,-0.8433854,0.45001987,-0.1332618,0.04133847,0.12191306,0.28245038,0.54818565,-0.26862794,0.1271592,-0.017632319,-0.19396482,-0.47232026,-0.270135,-0.5175223,-0.38161707,0.15069933,1.0927011,-0.2180274,0.13399467,0.08718952,-0.3978042,0.06074788,0.25801796,-0.03381902,0.045514245,0.46098915,-0.042791512,-0.54158866,0.39248544,-0.14071216,-0.15505879,-0.5529033,-0.013985889,0.48956046,-0.6843578,0.6298734,0.41030452,-0.21947196,-0.18375613,-0.45180973,-0.27640226,-0.03819593,-0.14495595,0.26291475,0.22381942,-0.62089187,0.36717063,0.31951553,-0.4876752,-0.60470253,0.5488407,-0.104019694,-0.20685025,-0.04287937,0.27855903,0.09875362,0.027988832,-0.39874297,0.25251547,-0.43322897,0.25482622,0.1953499,-0.12532695,0.31599972,-0.21794124,-0.041389603,-0.87360615,0.03120814,-0.42443737,-0.23915784,0.46487015,0.11890153,0.2964439,-0.009534265,0.18324487,0.32492462,-0.5611528,0.08781604,-0.11224194,-0.29967305,0.35560015,0.25723884,0.5218215,-0.40230703,0.53298736,-0.018430991,-0.12634145,0.02939145,0.05873084,0.35480767,0.1716814,0.49057722,0.13769491,-0.27590814,0.13859177,0.99093294,0.301256,0.31369233,0.12069322,-0.31109452,0.21471667,0.11633048,0.04129162,-0.10875385,-0.36986503,-0.059222274,-0.18536527,0.19210719,0.32941467,0.13595863,0.29263785,-0.16657117,-0.29512623,0.035561185,0.2384918,0.15655454,-1.173424,0.35213643,0.23210709,0.8509796,0.2473499,0.12409478,0.119406715,0.61182433,-0.14999774,0.10377876,0.4226036,-0.24697253,-0.57781976,0.47946948,-0.57490236,0.46863458,0.018880803,0.034841266,0.13480033,-0.07200081,0.50195426,0.7242924,-0.097187154,0.08066661,0.23496795,-0.4082702,0.14975119,-0.3128149,0.012805308,-0.6186075,-0.15272783,0.593468,0.4953876,0.39017388,-0.1991676,0.07573136,0.048785966,-0.13692448,0.09362228,0.21233353,0.24911138,-0.07676879,-0.73143244,-0.02154897,0.4336789,0.089172676,0.08979108,0.06852107,-0.29799607,0.42601183,-0.18679908,0.16620779,-0.113221996,-0.65909576,-0.035882678,-0.42739138,-0.4220498,0.59587413,0.1058223,0.31671312,0.3096512,0.04683721,-0.29287115,0.5394308,-0.07900826,0.79805326,-0.082779594,-0.23514886,-0.39575619,0.16729619,0.25922728,-0.18423994,0.0509293,-0.2761405,0.11824023,-0.2862821,0.49597073,-0.027932491,-0.07272524,-0.084531255,-0.19427915,0.1251141,0.47558424,-0.20956247,-0.14902769,-0.105922535,-0.031325746,-0.39578262,-0.25660688,-0.22076099,0.19415657,0.27941033,0.0031303423,-0.2518978,-0.09330112,-0.021986725,0.505554,-0.0150604835,0.3128717,0.5669641,0.12655197,-0.18407238,-0.08592953,0.229527,0.47712436,-0.029328793,-0.12183307,-0.51812786,-0.54816383,-0.41098848,0.25890106,-0.19562718,0.36002955,0.14407666,-0.25055107,0.5490484,-0.16412298,1.0118576,0.008994303,-0.30648497,0.08911628,0.61605495,-0.04856362,-0.036709916,-0.33381197,0.8257455,0.49873605,-0.044193126,-0.057952147,-0.32905215,-0.015869392,0.084318556,-0.31139836,-0.17789862,-0.01053094,-0.64721256,-0.2933147,0.24868998,0.28692552,0.34846362,-0.16625486,0.24496253,0.11350836,0.16700263,0.10793022,-0.47637388,-0.33270547,0.3228526,0.21715851,-0.015263162,0.010568644,-0.34826496,0.29754183,-0.36547777,-0.055568986,-0.2630345,0.11285133,-0.20859398,-0.46232897,0.19491151,0.231596,0.23043452,-0.45435596,-0.26152816,-0.23330066,0.4326949,0.12561947,0.17054805,0.29151502,-0.20731105,0.05318997,0.12987503,0.54651994,0.7880225,-0.29510683,0.018265655,0.462236,-0.39698124,-0.6786703,0.36952275,-0.4422247,0.39141324,-0.18169191,-0.25926343,-0.8466255,0.37394568,0.24673684,-0.01718338,-0.117894635,-0.51852053,-0.19706705,0.2483465,-0.33758405,-0.20296003,-0.38640496,-0.075968444,0.545252,-0.28747112,-0.31006712,0.1239293,0.30634513,-0.2834815,-0.46124277,-0.05565656,-0.4740942,0.28781128,0.16634242,-0.39349514,-0.18628049,-0.012572874,-0.44538096,0.32826814,0.26849315,-0.4322752,-0.0008475355,-0.48119733,-0.01189171,0.8693952,-0.27316535,0.22592047,-0.36726674,-0.30690327,-0.98427063,-0.30073896,0.5612298,0.19570832,-0.100168966,-0.7238235,0.14792879,-0.124268614,-0.24358042,-0.15155533,-0.2987865,0.42429218,0.0844928,0.25099865,-0.04515499,-0.7280547,0.09397851,0.09062575,-0.330543,-0.48147553,0.43285164,-0.10933652,1.1178528,0.013911052,0.17896639,0.35029736,-0.4304438,-0.19420566,-0.16928266,0.008798874,-0.53970796,0.057305403,199 +380,0.3845907,-0.15002479,-0.5846273,-0.099755354,-0.08405132,-0.0061599994,-0.19318818,0.43087515,0.31662184,-0.29973117,0.020559506,-0.13748139,0.1206242,0.20612635,-0.10407031,-0.35916385,-0.067698814,0.09041005,-0.3741984,0.37314007,-0.48781365,0.30407065,-0.27499124,0.44195923,-0.087867185,0.21848123,0.090277605,-0.009668619,-0.092737384,-0.2021198,-0.0036572367,0.55489266,-0.3388647,0.19671729,-0.0979255,-0.16058579,0.09768093,-0.31791252,-0.41854757,-0.73973477,0.2610613,-0.58996046,0.4271008,0.16314729,-0.39713907,0.32465193,-0.0065420866,0.0556711,-0.17359705,-0.14920011,0.109036796,-0.11787821,0.11790129,-0.33186772,-0.09352778,-0.21798158,-0.46910995,0.17666878,-0.44397402,-0.17834234,-0.22648795,0.25816408,-0.3014666,-0.1189862,-0.13811839,0.55796546,-0.40857553,0.16517843,0.032200914,-0.33520788,0.41471973,-0.59624904,-0.18703847,0.024191972,0.26202652,-0.12875462,-0.18322924,0.22531763,0.28710955,0.38318235,-0.1298425,-0.02941465,-0.48855993,-0.12564753,0.005824051,0.40446758,-0.16752765,-0.5756566,-0.07492224,-0.12007671,0.010473094,0.24238046,0.12330622,-0.28932348,-0.1531349,-0.08271102,-0.2267917,0.49730134,0.6684309,-0.3233037,-0.09141065,0.27141222,0.48718876,0.1514614,-0.08483434,-0.072327375,-0.081413664,-0.5145718,-0.14830853,-0.069107726,-0.033295013,0.51532024,-0.07511045,0.29637054,0.48764992,-0.16058327,-0.20029773,0.20365886,0.12315292,-0.0064489585,-0.2961944,-0.02191022,0.17103307,-0.3376048,-0.020281913,-0.106254734,0.76400566,0.10420894,-0.69319004,0.34972543,-0.39796835,0.053213276,-0.12306738,0.46296936,0.49682203,0.4316275,0.26446947,0.70617455,-0.47632688,0.040541884,-0.048439674,-0.36607963,0.18764591,-0.06657137,-0.06567466,-0.508043,-0.0004740272,-0.009971312,-0.044689536,0.14204866,0.26396042,-0.50722283,-0.09565858,0.14768398,0.7780948,-0.22130594,-0.043691523,0.6316823,1.0115092,0.8656082,0.0014734694,1.0136758,0.00533846,-0.093624644,0.1564481,-0.27328408,-0.70576465,0.378767,0.3026493,0.14958474,0.0010806577,-0.050970476,0.020798206,0.32672533,-0.2822811,-0.1458328,-0.23343717,0.5253579,0.17698726,-0.041103642,-0.31187847,-0.35741204,0.017983096,0.0062498366,0.08818994,0.2015529,-0.20842583,0.32210323,-0.004601347,1.3815424,-0.06589871,0.16383775,0.054604094,0.5753377,0.2453048,-0.10084821,-0.14153744,0.42973548,0.13821502,0.21254627,-0.4757273,0.15530518,-0.14600268,-0.5073873,-0.1259969,-0.2898293,0.09545041,0.05891887,-0.29595327,-0.16144119,-0.102517836,-0.22994652,0.5023562,-3.0427282,-0.16228516,-0.026808511,0.38710397,-0.17678332,-0.277911,-0.034553982,-0.44272646,0.4318849,0.35911328,0.49036306,-0.6082088,0.029593196,0.42599207,-0.46824458,-0.24461627,-0.42943484,0.035066824,-0.068182945,0.28960207,0.12755956,-0.03120892,-0.17264117,0.0011802657,0.42240334,-0.09777252,0.21422367,0.17576636,0.33975896,-0.1342679,0.36021686,-0.109444074,0.43866962,-0.29901975,-0.25263965,0.4349609,-0.36066133,0.094737865,-0.12873913,0.17002593,0.35939088,-0.53731257,-0.8049174,-0.57770497,-0.05594222,1.2159239,-0.00068260945,-0.62849224,0.32825264,-0.25777355,-0.22481905,-0.023097038,0.39069864,-0.04611667,-0.0795402,-0.6513239,0.080077566,-0.16220005,0.25901017,0.021488013,-0.13652565,-0.40299997,0.46544656,0.045242287,0.2859467,0.46572426,0.14765988,-0.41912636,-0.4550411,-0.03755153,0.6872519,0.46662214,0.12268489,-0.20415129,-0.17723583,-0.15567401,-0.1576594,0.1614538,0.5931727,0.5412177,-0.10725336,0.21671125,0.30346844,-0.06967149,0.058404956,-0.17861117,-0.20945907,-0.06633373,0.003692427,0.62284416,0.7013292,-0.081865855,0.37991238,0.025157783,0.41492304,-0.21596745,-0.5341553,0.5467081,0.8648862,-0.21178281,-0.33394352,0.5788776,0.34652737,-0.2593413,0.33317167,-0.49634793,-0.43375835,0.43139848,-0.32819453,-0.52641994,0.12742154,-0.26556793,0.00445781,-0.75069803,0.21065445,-0.39373937,-0.5875047,-0.4798806,-0.1696202,-3.4488046,0.20864047,-0.31561753,-0.12450551,-0.08917735,-0.048590787,0.06397451,-0.3708361,-0.45527297,0.13548765,0.2058631,0.55261093,-0.1307471,-0.0070516295,-0.23961695,-0.25650987,-0.2874209,0.12897363,0.14860909,0.3364245,0.014210181,-0.44606775,0.043381326,0.006248657,-0.5043644,0.13081492,-0.44340998,-0.45333877,-0.13220334,-0.59532815,-0.40922812,0.65680057,-0.13839242,-0.09794827,-0.1427624,0.044782422,0.0480046,0.27552322,0.030371632,0.14851639,0.02080764,-0.15826212,0.059433132,-0.3560736,0.38556284,-0.030825486,0.1781865,0.42925173,-0.055354066,0.08970533,0.49375677,0.6192915,-0.21215351,0.74088377,0.33343008,0.02540866,0.41944784,-0.27321145,-0.27829307,-0.3159139,-0.21408908,0.13376668,-0.47626057,-0.288645,-0.14292218,-0.33773178,-0.6001415,0.7352619,0.035838373,0.020398054,0.059919238,0.3327624,0.39979336,-0.15803787,-0.041455217,-0.05366792,-0.14157419,-0.49052963,-0.19464529,-0.5992792,-0.46786937,0.0740027,0.8760877,-0.31506,0.026789354,0.0153277,-0.05854972,-0.057842407,0.0029282826,0.04177422,0.29304966,0.38866726,-0.14429219,-0.51199996,0.44554433,-0.06796037,-0.14079012,-0.4208667,0.2852726,0.58523893,-0.5807397,0.5710699,0.28749222,0.15375538,-0.24953355,-0.63015944,-0.20410621,0.04266259,-0.23711714,0.5555425,0.11600949,-0.9196854,0.47412282,0.3672087,-0.25380993,-0.79221237,0.3522783,-0.06703142,-0.42697763,-0.017215172,0.39397892,0.12781973,0.019006643,-0.17778705,0.2411408,-0.43551204,0.30091348,0.18113697,-0.11130263,0.5305758,-0.26816115,-0.24576487,-0.6343762,-0.20988628,-0.54406214,-0.33398637,0.27168402,0.061378796,-0.05879001,0.18251777,0.07089035,0.47811183,-0.2700499,0.13054651,-0.037885662,-0.1330821,0.26872292,0.3495839,0.54311144,-0.32469988,0.45917058,0.001889001,-0.0018912852,-0.08751535,0.048455086,0.44612792,0.11532593,0.4290607,-0.045071594,-0.06659785,0.30039337,0.7300282,0.0878026,0.38726377,-0.11943372,-0.104499325,0.09561714,0.050693307,0.28259557,-0.061975744,-0.51598364,0.045607608,-0.3709577,0.20188192,0.47073647,0.1687818,0.29986027,-0.09335713,-0.367405,0.048063688,0.20502399,0.09244913,-0.9645926,0.37451833,0.1504391,0.87747514,0.3450899,0.15107349,-0.011843944,0.72292674,-0.046979573,0.07930235,0.24996741,0.036835402,-0.49385732,0.44653544,-0.83897644,0.4597961,-0.057129733,-0.13197967,0.12988389,-0.06749917,0.38252926,0.7269522,-0.024426889,0.013729677,0.05886516,-0.2738626,0.19971164,-0.40789923,0.0511092,-0.5491644,-0.3429618,0.5077709,0.5592137,0.20539086,-0.20417894,-0.07444122,0.1614201,-0.06957823,0.12648323,-0.06967686,0.0909092,-0.09901092,-0.69396657,-0.08447289,0.47327688,0.48941487,0.08323557,-0.20984362,0.005501815,0.25063428,-0.3077187,-0.033735715,-0.11275178,-0.44792104,0.038497042,-0.20276092,-0.31574112,0.4890873,-0.23436879,0.32015508,0.15556929,0.18115726,-0.2824096,0.4534588,0.004717048,0.76404935,0.000254035,0.011805892,-0.49762246,0.16393141,0.15813874,-0.18736048,-0.15936187,-0.28867036,-0.10927866,-0.469408,0.30389506,-0.037796225,-0.20836475,0.058496714,-0.01894773,0.07442465,0.5628053,-0.068292,-0.12281062,0.04798844,-0.22082962,-0.35073185,-0.15697464,-0.019990223,0.20949568,0.30663633,-0.09704297,-0.10298284,-0.09273422,-0.15511966,0.38700566,-0.03779175,0.27553132,0.20247068,0.055415522,-0.28885013,-0.09294689,0.11725294,0.6565294,-0.065797426,-0.008414464,-0.14602086,-0.40238062,-0.34361595,-0.066750094,-0.10717641,0.2520953,0.04155432,-0.14178225,0.5956833,-0.04719332,1.0914924,0.12530187,-0.18280683,0.11027487,0.41788843,0.021218464,0.010058373,-0.44903898,0.98684543,0.40970364,-0.23463039,-0.0719833,-0.24473628,0.04425484,0.045556128,-0.17240438,-0.109228425,-0.014457111,-0.7239256,-0.2491066,0.22151543,0.3122609,0.07155853,-0.07707853,-0.037756313,0.19500133,0.12332167,0.28692627,-0.39848885,-0.11024755,0.30492657,0.38875863,0.039692998,0.19593894,-0.38564166,0.38588452,-0.40912578,0.22402787,-0.3011647,0.1693485,-0.22620596,-0.3655654,0.22027633,-0.13387223,0.29795092,-0.20831458,-0.35117826,-0.22912426,0.3436933,0.29068187,0.14020412,0.48508272,-0.19822346,0.005852195,0.08957328,0.48033306,0.96378267,-0.26731044,-0.19803731,0.43558258,-0.29553097,-0.67582804,0.27679443,-0.28704023,0.06687305,-0.102084875,-0.13892105,-0.45017284,0.28446412,0.17799972,0.05668464,-0.103928074,-0.61992806,-0.020053456,0.2628371,-0.36888584,-0.145337,-0.27276936,0.15985075,0.57780707,-0.11310528,-0.3858873,0.14743993,0.25911054,-0.2094964,-0.511296,0.17875743,-0.41993666,0.24833918,0.08945118,-0.2860143,-0.13242665,0.13629879,-0.47746474,0.21580645,0.055169705,-0.29889426,0.084932946,-0.27044675,-0.07336654,0.77194756,-0.35993227,0.3818951,-0.42567557,-0.42277765,-0.77144474,0.044644654,0.4955556,-0.13132218,0.013636286,-0.77510136,-0.10464009,-0.14333956,-0.25712255,-0.116818026,-0.33862764,0.36474538,0.0057411618,0.3888432,-0.3027446,-0.72409624,0.18387063,0.30973417,-0.18404551,-0.59677535,0.5313273,-0.07493605,0.6410389,0.05401414,0.05661118,0.42580146,-0.42221433,0.09761805,-0.28163317,-0.31415373,-0.6102328,0.051301923,202 +381,0.7041089,-0.33425742,-0.3934942,-0.105390854,-0.3119885,0.15002586,-0.2739263,0.4310186,0.038480334,-0.58142453,-0.28714857,-0.2365738,-0.04328273,0.15281858,-0.23258576,-0.4044912,-0.049303975,0.22569491,-0.2853805,0.69851106,-0.41800755,0.4075707,-0.029546771,0.40062913,0.3036613,0.1546569,0.14514017,0.06454559,-0.33018643,-0.35789806,0.0612413,0.08855365,-0.65605146,0.25848752,-0.18267055,-0.49093875,0.0151417935,-0.26554668,-0.37944433,-0.84142697,0.2343026,-0.87560385,0.65845233,-0.07243127,-0.5566115,0.112650804,0.16146602,0.15067329,0.1602091,0.0708154,0.13366075,-0.034841187,0.01578715,-0.29190964,-0.2955344,-0.5683062,-0.72758675,0.005324583,-0.35472703,-0.04768588,-0.27370325,0.32121584,-0.28907284,-0.01202628,-0.14663638,0.3834389,-0.46371046,0.15388195,-0.0011252165,-0.014068531,0.4852197,-0.6107581,-0.23186064,-0.24828891,0.015480748,-0.10885342,-0.17366882,0.28905648,0.34033045,0.5055581,-0.13494849,-0.13960823,-0.39247957,0.061186343,0.12837529,0.60580856,-0.2617415,-0.4222408,-0.2057508,-0.30055672,0.51033884,0.26610062,0.43349212,-0.21564357,-0.02152366,-0.059525363,-0.20540057,0.38791066,0.5496002,-0.30311254,-0.15988557,0.07207363,0.539882,0.045184765,-0.23542213,-0.048417,0.006181836,-0.50033206,-0.24842694,0.10583763,-0.2587991,0.51755154,-0.13234457,0.14865732,0.57267153,-0.38144335,0.03753198,0.22623493,0.017641587,-0.08876508,-0.1897479,-0.30915663,0.24033149,-0.40482977,-0.09994107,-0.3937587,0.80809003,-0.11199681,-0.7605172,0.3378062,-0.45139843,-0.059832614,0.05500045,0.49751788,0.6410157,0.6663642,0.3532161,0.6096333,-0.4339044,-0.06288372,0.011896557,-0.21778499,0.11864303,-0.12403969,-0.13148162,-0.40264705,-0.06147575,0.009371842,-0.12545101,-0.023794098,0.9243969,-0.5838571,-0.060668863,0.124953575,0.800536,-0.3442662,-0.07178826,0.8429776,1.0955695,0.8915277,0.034478102,1.2122055,0.19903766,-0.08964371,0.05364298,-0.22449157,-0.6628857,0.3508377,0.37635684,-0.5511847,0.39988518,0.18458202,0.044664495,0.3059738,-0.3608947,-0.03167569,-0.14425786,0.14478295,0.06349282,-0.37698004,-0.44947788,-0.17835745,0.035924133,0.00802158,0.1622567,0.21038315,-0.45239088,0.37361684,0.13748494,1.6809629,-0.14312556,0.027666543,0.052843314,0.5350855,0.18448175,-0.18784364,0.17330825,0.3426115,0.21765426,0.19929092,-0.39200884,0.08638531,-0.11709857,-0.61793643,-0.31112528,-0.22865613,-0.083228715,-0.23012163,-0.36042473,-0.3139557,0.0077642226,-0.33307156,0.33706072,-2.2828095,-0.036375828,-0.19561657,0.29680094,-0.16295196,-0.4853551,0.090040244,-0.44359273,0.58963996,0.42140135,0.375954,-0.7180008,0.3544402,0.67638344,-0.44060454,0.053961534,-0.59712356,-0.24225841,-0.092652455,0.47824904,0.16150928,-0.054527912,0.051925723,0.19011767,0.62113816,-0.17686,0.2550761,0.31274146,0.4376037,-0.21845092,0.4528746,0.06548774,0.42856243,-0.1681133,-0.268667,0.47174048,-0.3059661,0.061089944,0.1207112,0.22759739,0.47303072,-0.4977669,-0.6894722,-0.8975218,-0.47745654,0.9510495,-0.06651411,-0.7675532,0.16998874,-0.3253004,-0.6533364,0.014544232,0.50379974,-0.19679943,0.1152362,-0.75705045,-0.12415749,-0.1388736,0.47725978,-0.1434133,-0.060746055,-0.5305824,0.84201056,-0.09956796,0.4188047,0.35699168,0.27947146,-0.5829209,-0.6543895,0.06710399,1.2277538,0.45500073,0.1496799,-0.40197498,-0.19408038,-0.36107907,0.09895557,-0.0076262183,0.6402885,0.682469,-0.10564101,0.1356745,0.16239189,-0.18268059,-0.04575323,-0.115462594,-0.30673322,-0.14515604,-0.023613278,0.539991,0.66067845,-0.13378738,0.53451043,-0.26054102,0.50182396,-0.26414612,-0.6214835,0.34972993,0.9303326,-0.15880218,-0.3329258,0.7226839,0.57955307,-0.42764664,0.43878606,-0.74912727,-0.31782576,0.37301427,-0.11103707,-0.4519362,0.29719687,-0.44228894,0.2874382,-0.86403763,0.48743084,-0.46514437,-0.47648576,-0.5653321,-0.16669926,-2.950607,0.29677716,0.033168763,-0.35357043,-0.026830938,-0.2091131,0.44028622,-0.51455003,-0.4670624,0.01231551,0.11699719,0.65914786,0.038001295,-0.07045891,-0.31346178,-0.38549018,-0.25155097,0.32581228,0.22815122,0.26159126,-0.18264319,-0.69118184,0.0057127667,-0.22393754,-0.4625215,-0.08754065,-0.69110805,-0.8457894,-0.22158217,-0.408128,-0.3145363,0.6639933,-0.35740873,0.077468716,-0.24480978,-0.034576423,-0.07684595,0.28550518,-0.0014593431,0.08591514,0.06226025,-0.25419608,0.03949461,-0.3974827,0.47984385,0.17017317,0.34427267,0.6391261,-0.29435632,0.13206957,0.42316264,0.55062515,-0.025338948,0.9781376,0.30789074,-0.14914279,0.39130434,-0.082942314,-0.30939803,-0.5621941,-0.18731639,0.05045385,-0.5677345,-0.38695005,-0.06736807,-0.4262598,-0.8649927,0.6064683,-0.14550379,0.15987264,-0.048552494,0.5317973,0.3382415,-0.21513318,-0.18097226,-0.066339806,-0.257369,-0.5029308,-0.5098607,-0.6846639,-0.5332932,0.027951105,1.249,0.15865433,0.02453185,0.17534588,-0.17234743,0.11622699,0.04607422,-0.01639593,0.081077315,0.28814355,-0.16187856,-0.75836664,0.60664326,0.1820521,-0.13108063,-0.47823387,0.2343706,0.6866352,-0.53307194,0.3065755,0.24784745,0.041928153,-0.056909654,-0.5989128,0.011113784,-0.013282716,-0.40133598,0.58527523,0.4980522,-0.83608925,0.40823045,0.3270248,-0.15832315,-0.7101726,0.5310222,-0.036357563,-0.24369343,-0.16749239,0.48896116,-0.0049491352,0.13911107,-0.33428416,0.37065312,-0.51917744,0.3169446,0.30397,-0.03045867,0.29649082,-0.24076526,-0.16582742,-0.8818561,0.21462485,-0.42230892,-0.50398767,0.26194838,0.09027738,0.07968029,0.6038141,0.36672026,0.4961407,-0.35158566,0.10111451,-0.013865625,-0.31485716,0.42177173,0.47027633,0.5358578,-0.31968156,0.49763218,0.029584808,-0.14750732,-0.09771413,0.06807657,0.5493439,0.0002898744,0.33739924,0.027189877,-0.030098276,0.3846983,0.99087846,0.25956753,0.58994263,0.11532532,-0.30698648,0.13273475,-0.037848085,0.2854592,-0.037101347,-0.6040582,-0.0135400295,-0.121394865,0.12186209,0.5685424,0.020707535,0.18439715,-0.23723991,-0.3022854,0.077459976,0.24338457,0.07121544,-1.2622681,0.09721507,0.08147844,0.93274224,0.54065716,-0.03341353,-0.003494465,0.6183267,-0.3555947,0.014216271,0.31409785,0.151885,-0.29046234,0.4888614,-0.66808325,0.39294943,-0.11143948,-0.039267454,0.123860136,-0.40535906,0.42014116,0.976678,-0.07409085,0.12004528,0.1300569,-0.27651617,0.15784666,-0.3695157,0.10069542,-0.51540256,-0.23005438,0.75118285,0.4583528,0.35503843,-0.10577246,0.101978965,0.09857719,-0.1863819,0.20993103,0.061556388,0.15268132,-0.23370631,-0.55358124,-0.20044912,0.42060116,-0.02466016,0.09382267,0.13155416,-0.24339606,0.046959035,-0.23072815,-0.026292844,0.029542288,-0.729359,-0.1273121,-0.3903274,-0.30548257,0.398251,-0.091858454,0.015072288,0.13115226,0.07781486,-0.35983926,0.2288759,0.4113191,0.6200691,0.3259743,-0.030668488,-0.27274165,0.13200645,0.16069002,-0.32165268,-0.009407316,-0.06351985,0.07907323,-0.80674535,0.4068379,-0.09709041,-0.37839133,0.11452227,-0.032987893,-0.00024732522,0.5021094,0.018530037,-0.34923437,0.025737455,0.09692425,-0.08427828,-0.09079493,-0.1295756,0.29030013,0.059324205,-0.19935563,0.051253267,0.054134913,-0.013642899,0.32993355,0.03118011,0.4359626,0.5145961,-0.0032769782,-0.42275938,0.07197016,0.16967313,0.7217639,-0.23507826,0.13863781,-0.18923569,-0.6173125,-0.4041755,0.0049427575,-0.15411815,0.29529437,0.11848801,-0.4310464,0.9240729,0.02460676,1.2543379,0.0151926195,-0.44593725,-0.07140012,0.5593834,-0.16879097,0.009908353,-0.5897977,1.1520537,0.46093696,-0.37528118,-0.16902654,-0.16675289,-0.05846711,0.15897158,-0.24917556,-0.13641341,-0.07556842,-0.87866104,-0.21767053,0.19174957,0.47508213,-0.054974165,-0.0024234594,0.19144765,0.36923414,0.041665178,0.32189038,-0.4526915,0.08415462,0.32043642,0.35163045,-0.13111366,0.21830322,-0.3924265,0.18655083,-0.54718006,0.010209041,-0.4210277,0.101113245,-0.115394354,-0.45096943,0.3039971,0.15627275,0.31549627,-0.33931223,-0.21686025,-0.13743582,0.4861056,0.11176316,0.24279158,0.5471853,-0.11224057,0.18121155,0.07389282,0.4052396,1.3181263,-0.18390168,-0.18225731,0.253689,-0.50335395,-0.7173633,0.40693074,-0.38023892,0.21258053,-0.039642967,-0.5176172,-0.34573197,0.29694748,0.15514715,0.016312262,-0.06609754,-0.5180736,-0.17878368,0.30920127,-0.4433331,-0.29950115,-0.18064596,0.16308881,0.51629,-0.30154294,-0.33904263,0.0044268197,0.55901784,-0.38273543,-0.4236495,-0.1674212,-0.38597447,0.49029544,-0.025450064,-0.40859467,-0.14796993,-0.15364714,-0.45586538,0.044968974,0.25390634,-0.39262983,0.1459919,-0.3493328,-0.028109428,0.749279,-0.15669121,-0.10381531,-0.44352058,-0.5575538,-0.9254073,-0.42021337,0.23982427,0.3404668,-0.08597464,-0.50717556,-0.09610726,-0.30152413,-0.08310151,-0.030776756,-0.26956537,0.44356117,0.18615474,0.5803099,-0.04851249,-0.84777534,0.18541762,0.2660536,-0.06474571,-0.78798306,0.65344346,-0.18170686,0.9021762,0.14688687,0.19747642,0.35471132,-0.555927,0.20440412,-0.20617385,-0.2868089,-0.72585136,0.04643497,203 +382,0.26655146,0.018259322,-0.5871483,-0.3393979,-0.3627557,0.26528904,-0.38814363,0.1459788,0.17460646,-0.28190646,0.0676811,-0.0710742,-0.1370827,0.33385855,-0.25720736,-0.91570276,0.08490743,-0.10630874,-0.4566266,0.53183633,-0.47754517,0.25189176,0.056641977,0.31082746,0.07619424,0.37091473,0.42354295,0.047900386,-0.09901909,-0.045814753,0.06105695,0.3022797,-0.6781102,0.40858224,0.096573986,-0.306006,-0.01756359,-0.28185514,-0.12941884,-0.6952909,0.35235146,-0.75207764,0.36402813,-0.02963579,-0.39267954,-0.014852933,0.24162674,0.08575882,-0.18976559,0.06536002,0.30017546,-0.37816253,-0.093862906,-0.0063293152,-0.20588727,-0.7536672,-0.54691106,-0.007977173,-0.873004,-0.17338584,-0.36672726,0.30462033,-0.43447632,-0.17907357,-0.12934646,0.47466373,-0.5948404,-0.19284709,0.15889958,-0.36379784,0.024459204,-0.6943781,-0.28778696,0.015314966,0.17728315,0.0071801627,-0.16279243,0.57306385,0.36271808,0.27812454,0.11912286,-0.40809807,-0.41152054,-0.2870774,0.1595527,0.35254893,-0.103053525,-0.34633824,-0.24366677,-0.1582776,0.32211107,0.14961569,0.086641364,-0.25054812,0.08013164,0.026191559,-0.17248312,0.2627278,0.60641617,-0.5237002,-0.20116031,0.48931953,0.35944602,-0.10104899,-0.35687876,0.20049094,-0.08776065,-0.4223368,-0.16549094,0.1540468,0.04809906,0.41316327,-0.12374605,0.2184267,0.9089225,-0.13219678,0.19277157,0.00025463957,-0.01376362,-0.10530002,-0.22070476,-0.03294466,0.15594132,-0.41487455,0.09224123,-0.24116577,0.8743572,-0.040495217,-0.80250734,0.4320111,-0.41101497,-0.08612997,-0.15542777,0.622015,0.74214494,0.33633885,0.07828547,0.94548905,-0.33400577,-0.08570601,0.11233897,-0.33415562,0.12627526,-0.24442564,0.28719476,-0.50037134,0.17270072,0.12373363,0.20491579,-0.024617331,0.6132551,-0.34459963,-0.07818712,0.12835784,0.55007404,-0.3355687,-0.11984377,0.71542466,1.1275244,1.0868464,0.16645288,1.102003,0.41669992,-0.1782122,-0.07004788,-0.17540343,-0.4570748,0.20197546,0.47611257,0.52177143,0.2526379,0.09326626,0.08228167,0.5801029,-0.23793127,-0.0021908071,0.03136135,0.3064231,0.17338581,-0.20124969,-0.31781366,-0.19500698,0.33645147,0.17532647,-0.13121633,0.337081,-0.0207163,0.58248025,0.07043826,0.9054564,0.07539173,0.08185358,-0.08662971,0.62712634,0.12771381,-0.11583368,0.17631106,0.17927977,0.14111637,-0.10368829,-0.5103911,0.10166298,-0.48262718,-0.7191743,-0.21189903,-0.46515736,-0.145295,-0.027204828,-0.39402255,-0.3293364,0.16130687,-0.24794233,0.37075755,-2.676292,-0.024943683,-0.32109526,0.21194889,-0.113417946,-0.22842124,-0.33558622,-0.582796,0.4665482,0.47345462,0.3360342,-0.4965543,0.38102075,0.39270404,-0.43416485,-0.058354113,-0.66077346,0.18028696,-0.24323419,0.5053345,-0.0846849,-0.18236415,-0.07030804,0.24912097,0.7769818,0.10429985,-0.010569033,0.14355174,0.21663949,-0.08693711,0.36516258,0.06371482,0.5685827,-0.28840956,-0.11504044,0.36819288,-0.7002243,0.39132375,-0.11005854,0.15568972,0.4639315,-0.29700416,-0.9376115,-0.68820244,-0.3970142,1.1476412,-0.32522538,-0.54613715,0.258189,0.22083728,-0.10211646,0.20030273,0.40506572,-0.16726732,0.18711278,-0.49156004,0.20228298,-0.22807585,0.13451985,-0.12556998,0.2626061,-0.45062095,0.7953111,-0.09737607,0.55803406,0.25549045,0.19917586,-0.28197762,-0.48845047,0.022799999,0.7691294,0.47548702,0.121882424,-0.07166344,-0.25434,-0.05390344,-0.531222,0.2649531,0.6102286,0.48021203,0.042557903,0.28207183,0.27845722,-0.31468377,0.10962316,-0.04155912,-0.3680372,-0.06497647,0.414159,0.588846,0.46486712,-0.18123734,0.34003922,-0.053448837,0.25520253,-0.24568848,-0.5239295,0.49929732,0.69479316,-0.095682964,-0.2616836,0.43503517,0.46388027,-0.4783604,0.52566844,-0.5510611,-0.49384043,0.62693775,-0.04382084,-0.4925917,-0.21516609,-0.42177716,0.01086414,-0.7728093,0.43386993,-0.14839019,-0.6829137,-0.46174908,-0.45382124,-3.7155774,0.02226012,-0.234841,0.08465445,-0.19005983,-0.14263546,0.3140393,-0.70338875,-0.5200354,-0.03481423,-0.017646367,0.4301241,-0.044456005,0.07766126,-0.3503981,-0.2309866,-0.20681462,0.49310663,-0.042799216,0.26565942,-0.07623517,-0.2819167,0.42066056,-0.36942387,-0.5343699,-0.122580774,-0.48505303,-0.53757703,-0.0150376605,-0.53504217,-0.19301255,0.742621,-0.4803223,-0.0040797177,-0.14626314,0.086884364,-0.17674057,0.3509325,0.3965819,0.24137947,0.073747054,-0.077781364,-0.18866293,-0.550358,0.38892642,-0.107794575,0.38041067,0.57472366,-0.06953139,0.2620713,0.7614101,0.38505742,0.08722056,0.80529404,-0.038371217,-0.070624925,0.45612484,-0.35828876,-0.18922329,-0.8353206,-0.39092308,-0.06586149,-0.41389945,-0.5081335,-0.014887844,-0.42594174,-0.70184076,0.5142711,0.1353427,0.22187445,-0.282566,0.22868606,0.118989095,-0.10481111,-0.03492581,-0.0059917937,-0.10974827,-0.5680733,-0.5411862,-0.6967189,-0.8120141,0.13453393,0.9879566,-0.21484862,-0.40106508,-0.05395331,-0.24429126,0.113684826,0.17610632,0.31660938,-0.013518201,0.30707565,0.1325687,-0.96797055,0.50753284,-0.25828907,0.16336663,-0.5000268,-0.11503793,0.54510254,-0.7379484,0.5001193,0.47351408,0.35545963,0.17714253,-0.64385647,-0.17975037,0.026353033,-0.21005908,0.5346952,0.14592767,-0.6775119,0.5374052,0.09412922,-0.28593057,-0.47755256,0.47721484,-0.0030761308,0.21118294,0.10330162,0.44218484,0.1620557,-0.28772512,0.008939794,0.20858261,-0.5793373,0.3125982,0.21800487,0.14187369,0.7049037,-0.08827652,-0.38865617,-0.5001308,-0.22040962,-0.5413067,-0.15344252,0.06573365,-0.17157388,-0.0903653,0.22421925,0.066820495,0.41920835,-0.17230427,0.13140425,-0.19125775,-0.26304415,0.43728083,0.4685032,0.47948557,-0.5654374,0.71001637,0.14885579,0.116620935,-0.04220138,-0.17944281,0.62374336,0.3052303,0.5232425,-0.06345863,-0.0033652186,0.04021401,0.7426112,0.34507552,0.44370985,-0.019377312,-0.38080582,0.27112538,0.101658806,0.076662354,-0.037536554,-0.41434056,-0.065701514,-0.17967117,0.057786968,0.38833848,0.061387602,0.33515984,0.016715327,0.0065070014,0.28813195,0.1418228,-0.042186074,-0.9349306,0.43447378,0.363056,0.5929346,0.45784524,-0.1648225,0.05183403,0.5455331,-0.3612021,0.024783595,0.5049027,0.049797468,-0.46008068,0.69705576,-0.58655494,0.62281257,-0.3160711,0.05441537,0.07282591,0.2849589,0.32975715,0.6444256,-0.12678337,0.02636448,-0.015896888,-0.40078467,0.2833613,-0.2398355,0.23676442,-0.43872204,-0.10163695,0.55358034,0.392487,0.21942762,-0.17679249,-0.16904762,0.074844636,-0.20698282,0.24301144,-0.14474574,-0.08812586,-0.26323634,-0.5618164,-0.41883937,0.58136815,-0.0728653,0.039713707,0.19588487,-0.4069583,0.36448345,-0.012232508,0.033673882,0.023097787,-0.45279446,0.1945246,-0.12386137,-0.7115458,0.48268467,-0.467994,0.32619363,0.31192616,0.016821658,-0.19412836,0.10783668,0.1472166,0.50203055,-0.050758805,-0.23372398,-0.3469526,-0.19269249,0.31558684,-0.33917397,-0.07975391,-0.37891382,0.2399589,-0.40961716,0.39961153,-0.56322867,-0.1665992,-0.11876945,-0.18722568,-0.09847989,0.46800327,-0.122396514,-0.02612258,0.1889743,0.18436551,-0.048783787,-0.006031943,-0.47938433,0.39385343,-0.17895138,0.036060434,-0.13354495,-0.28587675,-0.018644989,0.2493438,-0.06794083,0.0077524176,0.29266697,-0.12807152,-0.44080546,0.11369849,-0.006531415,0.5433942,0.19636379,0.018374672,-0.17325445,-0.26600593,-0.32954565,0.39722756,-0.11889521,0.120116316,0.32286364,-0.49289697,0.66439974,-0.119498864,1.1545131,0.21217456,-0.43072063,0.077225916,0.550474,0.14860821,0.110842094,-0.1870872,0.9634255,0.6840291,-0.26674467,-0.23032644,-0.52137285,-0.09900975,0.23098011,-0.23150577,-0.20935157,-0.14354475,-0.79341084,-0.15927921,0.10964685,0.15982577,0.11115007,-0.04216308,-0.18550195,0.078356005,0.38610718,0.3385035,-0.54034436,-0.08833914,0.35074964,0.2747746,-0.13354138,0.09537013,-0.30640343,0.31503293,-0.84283435,0.3521463,-0.47929078,0.15754874,-0.31432548,-0.27136916,0.20442192,0.06362506,0.37042975,0.09408586,-0.4502485,-0.07967759,0.64450985,0.3322815,0.44473282,0.770826,-0.16479574,-0.053942442,0.07137338,0.46832806,1.3197678,0.012702712,-0.09314787,0.3453841,-0.39951155,-0.7811081,0.14276777,-0.66754967,-0.1298063,-0.12594579,-0.4162347,-0.35055235,0.20597337,0.15440133,-0.15145577,0.06683799,-0.48076656,-0.23572256,0.011053158,-0.43156186,-0.2847502,-0.41290078,0.1840508,0.777034,-0.47815084,-0.18743137,-0.023251394,0.42483258,-0.31326514,-0.67638713,0.3365507,-0.13106278,0.5062885,0.09815755,-0.36159012,0.08296983,0.5507906,-0.3965375,0.32603452,0.3830622,-0.36538652,0.06330653,-0.2689527,0.30474234,0.90103763,0.20410585,0.32561436,-0.7108183,-0.47002888,-0.9393533,-0.41501585,0.13718423,0.10779885,-0.07791685,-0.4788229,-0.20922995,-0.11325835,0.03597645,0.05194163,-0.6067937,0.25606316,0.06677537,0.50656164,-0.005488832,-0.853199,-0.011998509,0.104663,0.011226254,-0.42844772,0.5328868,-0.3994058,0.8453633,0.11444567,0.051839463,-0.035121415,-0.5872593,0.48335543,-0.3288644,-0.16732605,-0.48152623,0.12802546,205 +383,0.5166831,-0.197674,-0.45583352,-0.2714886,-0.15386327,0.1564386,-0.19201078,0.6088814,0.08774691,-0.49703678,-0.1974895,-0.083018675,0.010965894,0.1619749,-0.16216318,-0.410047,-0.030816708,0.14929064,-0.4425927,0.5257484,-0.5408148,0.24777715,0.022337874,0.42543745,0.21790278,0.13498141,-0.070985965,0.06292809,0.02206598,-0.12837999,0.00353969,0.3074193,-0.64660084,0.069323935,-0.2634762,-0.48013762,-0.21981438,-0.34015378,-0.39921302,-0.77372044,0.37288824,-0.9750245,0.45140433,0.08851508,-0.38606265,0.50543797,0.050675076,0.06476377,-0.2744526,-0.067180805,0.18426538,0.02142099,-0.036781516,-0.090062134,-0.0848412,-0.38436726,-0.55906045,0.05841765,-0.31626695,0.08811305,-0.351194,0.06001955,-0.33227155,-0.016003622,-0.022186544,0.30735472,-0.47259936,0.12738289,0.08013679,-0.0016425401,0.32520434,-0.6012966,-0.22512843,-0.17237656,0.26003784,-0.3230693,-0.3595803,0.2350864,0.47923392,0.48466226,-0.20929305,-0.06899541,-0.27411306,0.055406477,0.09391109,0.4453135,-0.22560754,-0.42423862,-0.23401639,-0.19920704,0.203971,0.2059162,0.19612142,-0.16802083,-0.15480173,0.045139723,-0.30692324,0.40298194,0.47318077,-0.31371385,-0.30899626,0.2829674,0.47415286,0.28071183,-0.1534694,0.058093064,0.015299943,-0.5430306,-0.080437385,0.056392066,-0.21454433,0.59988153,-0.27452415,0.1894492,0.5861845,-0.11973464,-0.014478858,0.1937797,0.0365447,-0.15828136,-0.41504547,-0.24629661,0.30572513,-0.56425995,0.29698446,-0.25528154,0.6220526,0.109110214,-0.7053555,0.32250407,-0.55631787,0.16430584,-0.16075245,0.45236015,0.8683786,0.37350193,0.31397614,0.6443781,-0.4083707,-0.17170143,-0.032153986,-0.1316924,0.14359483,-0.19260442,-0.071507335,-0.52264607,0.06555573,-0.0014931826,0.011942565,0.10274904,0.74012935,-0.40602937,-0.13409996,0.2186232,0.6924478,-0.32543817,-0.043687906,0.9276909,1.042758,1.1220547,0.22272635,1.1541958,0.20100018,-0.22600053,0.29511538,-0.08605312,-0.82182056,0.26299495,0.29007548,0.35856006,0.11092679,0.071175136,-0.057332166,0.3976931,-0.41178432,0.056703985,-0.186426,0.1259109,0.17466919,-0.078356765,-0.27635634,-0.40294117,-0.046854835,0.21372247,0.08808299,0.20815697,-0.15682487,0.3897961,0.14360367,1.4345146,-0.009172448,-0.046430357,0.021710223,0.41760498,0.24073829,-0.2477713,-0.091094315,0.27791238,0.43609434,-0.0240833,-0.6700025,0.14137135,-0.10450121,-0.5087784,-0.13666351,-0.41558293,-0.25796202,0.009950412,-0.5610992,-0.22179832,-0.11374976,-0.3137692,0.4308657,-2.7722325,-0.27898553,-0.016468413,0.35710615,-0.10141075,-0.36198428,-0.206026,-0.48581514,0.5533982,0.33693415,0.44235054,-0.68447334,0.2602274,0.3977857,-0.5292264,-0.091759086,-0.63811195,-0.28250533,-0.049464643,0.15078287,0.07856243,-0.03739358,0.18060623,0.1873511,0.535665,0.03574378,0.21554421,0.26456448,0.44888455,-0.077153586,0.48203734,-0.023927795,0.50068444,-0.23777425,-0.24491212,0.3971185,-0.37736556,0.25765982,-0.34102294,0.12002629,0.57247275,-0.5371688,-0.93736106,-0.7643795,-0.22118463,1.0917922,-0.18921673,-0.39693403,0.17447151,-0.594745,-0.18653785,-0.11166946,0.55886334,-0.18898296,-0.11172695,-0.9122701,-0.05611309,-0.0423289,0.0112728905,-0.07965133,-0.041090924,-0.42383024,0.81462914,-0.041790985,0.5569677,0.335347,0.08702988,-0.27554813,-0.46168095,0.100211635,0.60875195,0.38815048,0.15494789,-0.42585388,-0.16819882,-0.4352971,-0.008747523,0.18265931,0.43267563,0.50273323,-0.07736171,0.24456522,0.22754875,0.033647884,0.0082366215,-0.21009561,-0.107762575,-0.21616848,0.10117589,0.7030557,0.6612659,-0.1516319,0.18734398,-0.11996955,0.11078715,-0.17171533,-0.524484,0.4944691,1.1356484,-0.08176337,-0.26754743,0.51405984,0.6192169,-0.18530692,0.4111724,-0.54226196,-0.29196268,0.25549728,-0.18968882,-0.30190417,0.1499207,-0.45395353,0.1332982,-0.85776,0.1355628,-0.30149814,-0.37824973,-0.597817,-0.12518853,-3.1715894,0.15251192,-0.1779964,-0.16759038,-0.24539863,-0.4275167,0.36274794,-0.48525524,-0.6978821,0.09714295,-0.014490762,0.7218136,-0.032301396,0.08414853,-0.23174092,-0.25298256,-0.3274409,0.045633394,0.163999,0.43842125,-0.067709394,-0.3323771,-0.06022862,-0.21212682,-0.3730612,-0.07577356,-0.4383934,-0.461304,-0.027078155,-0.39180905,-0.37692896,0.4745974,-0.31635052,0.1023088,-0.1326691,-0.13904569,-0.12241965,0.3775498,0.149616,0.20562495,-0.037056204,-0.050343685,0.08644293,-0.2651728,0.216609,0.025405064,0.012994351,0.43524984,-0.16620626,0.19697817,0.51220423,0.6404918,-0.14342412,1.0506028,0.50174063,0.11680973,0.30057663,-0.25561592,-0.22685197,-0.63011396,-0.12679923,-0.09846075,-0.53872854,-0.44359583,0.06642272,-0.43757495,-0.7914023,0.4007062,-0.0083988095,0.11623667,0.13595508,0.18120895,0.46260494,-0.1363516,0.058578152,-0.13706595,-0.068530396,-0.6097668,-0.3661725,-0.7176165,-0.5157261,-0.03575725,0.9128054,-0.10088291,-0.095077865,0.102855965,-0.2396485,0.12945084,0.24947669,-0.026867354,0.04350436,0.4019003,0.018619657,-0.5351768,0.43315288,0.06218179,-0.29194897,-0.6057325,0.19045623,0.4913158,-0.6176831,0.6281236,0.4117875,0.043187957,-0.16683818,-0.68227535,-0.17906524,-0.1551785,-0.30261287,0.5048354,0.3119327,-0.9185051,0.47062013,0.4167039,-0.09925691,-0.7475968,0.6598233,-0.08524169,-0.19826838,-0.080098346,0.27291438,0.12672387,0.032959152,-0.063837685,0.34521493,-0.50522894,0.27946788,0.18685447,-0.03568272,0.39963955,-0.24979655,0.10569478,-0.59339684,-0.10608267,-0.4961246,-0.27012548,0.13748546,0.036430605,0.13658795,0.2840304,0.18191887,0.35886732,-0.23410831,0.09404834,-0.1784434,-0.23866679,0.11759067,0.3707252,0.6083764,-0.39013085,0.6771328,0.013203687,-0.06208714,0.12378864,0.22249807,0.37376216,0.11001627,0.43096378,-0.017721236,-0.19986565,0.14372976,0.9096452,0.26154473,0.4409118,0.038102593,-0.17770688,0.234107,0.14552483,0.3652287,-0.1478457,-0.5055173,0.063399754,-0.34916258,0.17605035,0.4400801,0.09658366,0.22012755,-0.12231069,-0.25332496,-0.045762923,0.17481096,0.019381497,-1.4147089,0.3895304,0.23313698,0.9704078,0.6186,-0.16749428,0.10677492,0.553288,-0.31147024,0.16220692,0.36410686,0.061904483,-0.44220868,0.44997725,-0.8401466,0.4420646,-0.117435984,0.010261512,0.017626464,-0.11805455,0.4967982,0.6790838,-0.12597084,0.15117475,0.16092913,-0.4206285,0.31996197,-0.47776613,0.029755037,-0.46444267,-0.04104003,0.83276683,0.56920165,0.35207444,-0.2969475,-0.0004952167,0.014507145,-0.13550498,0.01279839,0.09479062,0.10893845,-0.18092921,-0.7101218,-0.13970447,0.4844877,0.06931196,0.2741335,0.07963883,-0.36083913,0.2756412,-0.13338406,-0.0010657395,-0.088206224,-0.77488613,-0.12406138,-0.38351914,-0.39507368,0.5367932,-0.1058945,0.22926642,0.3557027,0.055920072,-0.23501883,0.2132874,-0.07069627,0.70730793,-0.020633025,-0.10430844,-0.50402194,0.13250072,0.27251008,-0.17933282,-0.19106998,-0.21135817,0.100969926,-0.35093012,0.5678895,-0.05875845,-0.22457601,0.17577672,-0.017604634,0.08595795,0.6417486,-0.19918048,-0.19224904,0.016667988,-0.097218044,-0.35828286,-0.12159586,-0.124348916,0.28243628,0.1566094,0.00815977,-0.11420192,-0.095897265,-0.044833098,0.43169394,0.0716206,0.46964136,0.35230634,0.12748556,-0.38318732,-0.10637413,0.31010917,0.5866403,-0.15488067,-0.22938831,-0.31392995,-0.48907274,-0.27899975,0.3593693,-0.077019945,0.41742688,0.093087435,-0.11116964,0.6459624,-0.062157642,0.7989122,0.14386462,-0.42976686,0.22670822,0.49514195,-0.055223916,-0.20651881,-0.22519806,0.6282421,0.43080625,-0.16060375,-0.23910482,-0.18859304,0.119992316,0.0736308,-0.19015343,-0.08666147,-0.10068749,-0.784085,-0.16351727,0.12486539,0.29656538,0.19828211,-0.13984807,0.05746889,0.19862786,-0.044184346,0.30164936,-0.47050974,-0.19178568,0.3564624,0.28596595,-0.14305992,0.07047294,-0.277849,0.30743244,-0.34981266,-0.102239266,-0.33355215,0.18224396,-0.27967793,-0.28616908,0.18148422,0.119756386,0.20682034,-0.15427348,-0.30722398,-0.35829452,0.45720387,0.12780945,0.17706625,0.44141027,-0.21806832,0.11481727,0.1859756,0.42339712,0.9707624,-0.16026123,-0.057613578,0.22219324,-0.39971823,-0.5471607,0.42602563,-0.42047808,0.34475046,0.115002505,-0.06898565,-0.5381945,0.2153066,0.21054517,0.100664906,0.1618449,-0.7660045,-0.19330049,0.29587156,-0.26001367,-0.059945304,-0.36299723,-0.06283042,0.5538613,-0.16080835,-0.14208426,0.117730394,0.32837096,-0.2324836,-0.6157785,0.14420497,-0.5234307,0.37558052,0.026360145,-0.3586579,0.0620658,0.16573414,-0.43179664,0.23228595,0.095481925,-0.31309244,0.07301719,-0.51828355,0.16786547,1.0146847,-0.2500007,0.24683043,-0.3428247,-0.5385999,-0.83520514,-0.29342058,0.46899748,0.21934067,0.049631294,-0.63807344,-0.052770235,0.03004642,-0.13844682,-0.0968654,-0.36383343,0.5708831,0.14857507,0.33393297,0.033326294,-0.64485806,0.083291784,0.031928334,-0.237482,-0.42445108,0.6012672,-0.0242561,0.79982656,0.14344785,0.113484204,0.1643076,-0.5202685,0.021640416,-0.17935468,-0.0713818,-0.6009155,-0.041665077,209 +384,0.38973406,-0.0604737,-0.42929268,-0.18461321,-0.3153701,0.080991276,-0.05440733,0.42913416,0.087869205,-0.5678235,-0.18530218,-0.17973496,0.044840608,0.4123194,-0.07733996,-0.74204457,0.19520864,0.24448936,-0.5616765,0.5339146,-0.4539008,0.41929922,0.20175804,0.10654359,0.15603817,0.26042223,0.3366051,-0.31729954,-0.030742748,0.018182065,-0.39739043,-0.032159757,-0.44329286,0.31851795,-0.073389046,-0.35517663,0.10453377,-0.28260043,-0.4187853,-0.64868397,0.28574798,-0.70386964,0.39968273,-0.04905939,-0.11892628,0.12450024,0.16148742,0.4189084,-0.20094912,0.061284292,0.21891865,-0.044981055,-0.28280157,-0.13729988,-0.16780008,-0.5676197,-0.55474657,-0.02431406,-0.37858412,-0.22314365,-0.42916754,0.1353428,-0.2872621,0.011467202,-0.12668972,0.32430866,-0.34177542,0.0615479,0.21693143,-0.12429981,0.09900563,-0.48143578,-0.041603517,-0.09147032,0.31272045,-0.16322437,-0.20112813,0.3995423,0.29506984,0.499902,0.12957944,-0.14377855,-0.22396031,-0.15033783,0.24093078,0.62777287,-0.027923618,-0.55156887,-0.16976252,0.007281908,-0.10749133,0.040126078,0.050828606,-0.38668332,-0.05699438,0.018612996,-0.42562607,0.43953234,0.3666812,-0.34094962,-0.37561002,0.41984367,0.45639017,-0.020160943,-0.12927507,-0.00954482,-0.09523297,-0.5829491,-0.19129963,0.07486032,-0.16162403,0.46332672,-0.21276546,0.306428,0.60873646,-0.16888067,-0.03748291,-0.0030378103,-0.10073437,-0.008832766,-0.13803707,-0.054165363,0.06493872,-0.6079146,0.05954197,-0.21052255,0.8505898,0.26431736,-0.5907749,0.3916584,-0.48694345,0.26234522,-0.16349602,0.4293074,0.6109885,0.33742914,0.078215316,0.8214038,-0.47379258,0.22762395,-0.085908756,-0.53429335,-0.06140233,-0.12918669,0.02164352,-0.43970856,0.13562551,0.017552542,-0.0068921605,-0.049270462,0.41199937,-0.49428013,-0.13453884,0.03555603,0.9782247,-0.33162227,-0.1041716,0.6101895,0.89847094,1.0498028,-0.018289099,1.1976175,0.2311071,-0.38975453,0.34491593,-0.48431942,-0.6479085,0.28563404,0.44606808,0.40326267,0.12786524,0.13273655,0.026229104,0.29888806,-0.43222895,0.07960496,-0.25564954,0.16279764,0.094393454,-0.18719019,-0.41248196,-0.26102188,-0.08893285,-0.015155026,0.13724712,0.20792116,-0.2245659,0.38863617,-0.08019536,1.6323861,0.060449593,0.08126695,-0.005411234,0.5129681,0.14865533,-0.06380921,-0.0822951,0.18300512,0.34352466,0.00045641564,-0.54833955,0.023055146,-0.29470968,-0.5789594,-0.08943331,-0.35041162,-0.07328304,-0.13126229,-0.36733368,-0.12179351,-0.0008647197,-0.29294035,0.5386439,-2.6250768,-0.23705436,-0.14249349,0.36116105,-0.20565401,-0.2968516,-0.06767456,-0.5137958,0.38206035,0.32383275,0.59374183,-0.59385747,0.5648631,0.3408403,-0.5446457,-0.08795854,-0.6188097,-0.09181956,0.06056419,0.4025629,0.042203963,-0.0465031,-0.095398545,0.032755252,0.45898262,-0.18572031,0.04229526,0.17634137,0.36322573,0.26878676,0.543223,0.13554512,0.5703312,-0.2772545,-0.019148579,0.32876128,-0.2484325,0.3453209,-0.087748885,0.089097925,0.33345458,-0.4204785,-0.8446136,-0.68745434,-0.28657755,1.0082533,-0.18974447,-0.14462705,0.25703755,-0.31171486,-0.10152552,-0.08997793,0.32455748,0.029142026,-0.18240823,-0.697178,0.05346007,0.00232324,0.15131196,-0.09608445,-0.036592424,-0.37339634,0.7575467,-0.027544653,0.4836288,0.20924045,0.20857036,-0.16283707,-0.30714366,0.0496952,0.9406398,0.20070735,0.16518784,-0.14056437,-0.2903791,-0.60182345,-0.2229334,0.03473492,0.5413815,0.8010303,-0.0051295543,-0.034510314,0.25706822,0.02686788,-0.011164137,-0.15311599,-0.22328672,-0.07312095,-0.04187217,0.5559916,0.3707462,-0.098248206,0.6130038,-0.112983145,0.2694084,-0.27546936,-0.46955284,0.46460083,1.069319,-0.23016752,-0.2553677,0.4280557,0.44666988,-0.18706618,0.37646034,-0.712543,-0.3914618,0.54030097,-0.054317262,-0.2643007,0.10442071,-0.2978739,0.21464966,-0.94585216,0.29258546,-0.24719417,-0.740328,-0.43825778,-0.11651553,-3.5917766,0.16656439,-0.15501721,-0.09900924,0.05903176,0.16173795,0.061855704,-0.364727,-0.456553,0.17029206,0.07178859,0.7584842,-0.019742263,0.23252988,-0.24313875,-0.0657965,-0.39040378,0.19550554,-0.102207184,0.2493536,0.007190875,-0.42051116,0.03163262,-0.19318032,-0.35984498,0.21067241,-0.7642108,-0.54781824,-0.13456905,-0.31744814,-0.3767894,0.6483426,-0.4381583,0.14225043,-0.1290178,-0.0130873965,-0.22900613,0.26523718,0.11094625,-0.005288769,0.01606425,-0.08116986,-0.045555312,-0.25989896,0.3389956,0.11610383,0.58272207,0.3415043,0.013137,0.11018909,0.6116724,0.6217452,0.06019095,0.71205646,0.32472423,-0.119790874,0.31644025,-0.19889198,-0.09178763,-0.45005533,-0.3702212,-0.13220714,-0.31938356,-0.52738,-0.057572246,-0.34409484,-0.705854,0.27951,0.16060056,0.018384645,0.046619333,0.30747724,0.45016408,-0.17420118,0.06854959,-0.028437618,-0.08070786,-0.64072675,-0.4261305,-0.63710266,-0.47268948,0.16343041,1.0583843,-0.19773997,-0.13889137,-0.12914371,-0.28726846,-0.08612188,0.22560365,0.018130656,0.19640912,0.34103426,-0.30140015,-0.80391484,0.57374555,-0.21566913,-0.05175216,-0.49059612,0.0874486,0.4545409,-0.70184743,0.2986506,0.3110991,0.09103326,0.16437873,-0.32376167,-0.26678327,-0.07709223,-0.26688507,0.22185786,-0.023875728,-0.7292891,0.40870067,0.3095363,-0.20976844,-0.71466523,0.5276121,0.13177727,-0.20465958,0.0697126,0.21086751,0.16767628,-0.0885641,-0.2025954,0.14513016,-0.47519857,0.39087453,0.32588392,0.12794212,0.08272714,-0.27055642,-0.20459768,-0.67355984,-0.20337558,-0.2917333,-0.05104404,0.21828733,0.09126334,0.22992297,0.17220013,0.14240703,0.26436943,-0.2275569,0.059751175,-0.075257406,-0.29750198,0.29736826,0.34064752,0.3119579,-0.50917375,0.5817534,-0.041264314,-0.003646144,-0.046759784,0.06155359,0.39732566,0.1597134,0.4688,0.086519755,-0.30639777,0.2739494,0.91781706,0.3789946,0.24703096,0.13342337,-0.17892054,0.30940625,0.09306189,0.058361106,0.22559237,-0.5021229,-0.053520646,-0.17190002,0.15087168,0.39659324,0.07837837,0.21580578,-0.07230176,-0.2164581,-0.029244807,0.043216202,0.044369582,-1.2399777,0.48756647,0.3438926,0.75472766,0.52044696,-0.1737128,0.075447366,0.58775276,-0.16578582,0.2634404,0.27672273,-0.28892294,-0.53258264,0.4031646,-0.559507,0.61353976,-0.06949032,0.029643008,0.06632038,-0.08538739,0.31611776,1.0362886,-0.23357406,0.07792287,0.10866026,-0.4114302,0.22828004,-0.38982153,-0.0027812123,-0.70040935,-0.16414197,0.6113343,0.41901925,0.11996733,0.052105155,-0.0023631975,0.007119396,-0.13589457,0.16728266,-0.0041775447,0.13980062,-0.030139128,-0.7003783,-0.20577069,0.54039997,-0.15723002,0.2415435,0.25121647,-0.17443337,0.36967987,-0.082638755,0.012531452,-0.20956731,-0.5101409,0.008337106,-0.18236116,-0.20999178,0.41256377,-0.028928343,0.37363657,0.23824444,0.081092134,-0.31795308,0.37694576,0.047500484,0.5274994,-0.007817413,-0.32172948,-0.47456455,0.088696636,0.18316555,-0.25518316,0.082669504,-0.28612635,-0.1302842,-0.7908155,0.4666755,-0.00020213638,-0.25796127,0.15879002,-0.12655236,0.02350544,0.48327044,-0.056458175,-0.13039574,-0.08095123,0.091896005,-0.086072154,0.0713629,-0.10074549,0.22265856,0.046682008,-0.06924115,-0.117704906,-0.13791595,0.03308413,0.3729278,-0.023736274,0.37530518,0.23690894,0.12689593,-0.3428749,-0.08976887,0.27613607,0.4916556,0.07701112,-0.035756387,-0.052915145,-0.19730647,-0.3678393,0.064622924,-0.21229468,0.33136916,0.17502871,-0.38382545,0.5275865,-0.12597148,1.3792799,0.06945937,-0.31267843,0.086786985,0.6105134,0.08275799,0.052472044,-0.28147,0.84165984,0.48664507,-0.12727574,-0.19626155,-0.35479927,0.09212633,0.22101244,-0.1654173,-0.24228738,0.13700412,-0.6381172,-0.28056738,0.10907408,0.16428259,0.30428043,-0.029138407,-0.08848059,0.2022324,-0.043001838,0.36494783,-0.5698825,-0.24841377,0.23233427,0.27542487,0.06054262,0.105835356,-0.5245411,0.46689343,-0.5119722,0.071948014,-0.11618084,0.13039063,-0.22589697,-0.270516,0.28574854,0.23432074,0.40287563,-0.2437989,-0.38433293,-0.35028315,0.5578755,0.16952841,0.26087362,0.59251106,-0.17646606,-0.16914184,0.14360155,0.41708803,0.9500321,-0.24049915,0.01700442,0.41261634,-0.4425413,-0.45261267,0.23841187,-0.31104258,0.08952244,0.16724338,-0.22443832,-0.60672647,0.35526276,0.19113347,-0.05849431,0.16443653,-0.6437277,-0.32030982,0.14343795,-0.32826573,-0.42497465,-0.45680207,0.2383606,0.60619676,-0.42889684,-0.08991202,0.20820156,0.12229563,-0.3020541,-0.63520986,-0.010084225,-0.43169895,0.399831,0.13584308,-0.26627824,-0.16508792,-0.039588623,-0.39481667,0.27964535,0.23522142,-0.44098458,0.0778627,-0.37022546,-0.28265816,0.8298831,-0.09162295,0.17705737,-0.5449863,-0.23628037,-0.76602453,-0.4636869,0.6593016,0.20833349,-0.11635566,-0.4164599,-0.24073628,0.14246896,-0.13184814,-0.075088754,-0.48802114,0.5025162,0.07634127,0.21211858,0.020949427,-1.0529773,-0.005373712,0.20512421,-0.282319,-0.51445544,0.40423244,-0.0902464,0.94221085,0.1443434,0.091494076,0.43469253,-0.43825206,0.026743433,-0.28759104,0.029625697,-0.58727163,0.14386389,217 +385,0.39639762,-0.36132666,-0.14507058,-0.20578752,-0.327534,0.19052842,-0.18345799,0.415987,0.4007311,-0.4735767,-0.30340555,-0.27439973,0.16504776,0.58916235,-0.2196802,-0.67744213,-0.060748164,0.053471226,-0.39526558,0.55091304,-0.4140912,0.32657248,0.07876753,0.2782262,0.15405782,0.2674074,0.45272985,-0.12641649,0.010849382,-0.17338622,0.021427244,0.11951872,-0.620685,0.23238781,-0.25010183,-0.48798922,0.19541514,-0.648202,-0.3838894,-0.72063607,0.33656392,-0.8687723,0.49582863,0.14184377,-0.048756484,0.42717487,0.21103534,0.32510373,-0.17023376,-0.049086843,0.047789566,-0.045748364,-0.083998926,-0.074604824,-0.23176305,-0.45665047,-0.64616406,0.05472803,-0.30155846,-0.2335547,-0.18704264,0.0014802387,-0.2642799,0.19567259,0.063988514,0.39095002,-0.45730332,-0.020104425,0.3343728,-0.19772317,0.09661221,-0.51763374,-0.25062767,-0.14078529,0.22012486,-0.2463418,-0.11450632,0.36005265,0.36844525,0.40578637,0.051557545,-0.24975245,-0.34763297,-0.16277981,0.16059491,0.5742666,-0.10347892,-0.55192786,-0.22666936,0.03670737,0.21606116,0.16792892,0.22904758,-0.16955063,-0.035842035,-0.06639256,-0.35368648,0.46956205,0.40120903,-0.39400774,-0.48579785,0.18298419,0.56657565,-0.045216,-0.023022711,-0.028799454,0.11009359,-0.47870132,-0.20002596,0.12527081,-0.28533798,0.49835473,-0.21528761,0.1591607,0.6485282,-0.38567662,0.050055657,0.022025883,-0.00680929,-0.38683578,-0.20686351,-0.30329585,0.3096928,-0.58747596,0.15116116,-0.35851988,0.8769373,0.27437827,-0.58750045,0.30884674,-0.53938717,0.111452855,-0.10024105,0.46824497,0.51642126,0.3387724,0.3161413,0.6616941,-0.50788873,0.10334885,-0.16442935,-0.32886034,-0.0915417,-0.2208991,0.017475596,-0.43366438,0.08367617,0.00629695,-0.09301643,0.22482894,0.21645777,-0.4957068,-0.072234906,0.26329836,0.87779754,-0.3025671,-0.07270182,0.9057065,1.119361,1.0187899,0.029611964,1.2353047,0.48648888,-0.2366952,0.13950236,-0.26795754,-0.72541696,0.14297272,0.4585406,-0.15885971,0.3138397,-0.018765092,-0.005515699,0.15820499,-0.5336409,0.034891937,-0.03182477,0.18938944,0.21447489,-0.004676414,-0.47423837,-0.2356685,0.024261829,-0.13711444,0.26925465,0.27679294,-0.0934164,0.5094448,0.16996871,1.1175768,0.06761473,0.08481906,-0.004479986,0.58896095,0.2743931,-0.0399721,0.043308727,0.13812174,0.30552274,-0.0032534727,-0.699704,0.15152897,-0.2543198,-0.3691828,-0.20928586,-0.30442283,-0.049540345,0.19790074,-0.17846693,-0.18820868,-0.13629584,-0.04226319,0.5102349,-2.6602442,-0.25646228,-0.15450643,0.20556481,-0.27019063,-0.26763067,0.04980613,-0.6417451,0.33608177,0.35621196,0.42381102,-0.68782634,0.18300949,0.5648723,-0.80042523,-0.13397652,-0.650813,-0.17166185,-0.09870811,0.40937915,0.14272974,0.07206786,-0.069877,0.27949423,0.49670428,0.078063354,0.15108876,0.11135527,0.36089638,0.10396366,0.4265963,0.046156954,0.5319939,-0.35036448,-0.17191026,0.32547545,-0.35052377,0.2679207,-0.25593427,0.07743524,0.45858505,-0.31496027,-0.83579457,-0.7235473,-0.4735722,1.0964661,-0.12671971,-0.35883608,0.04310003,-0.051731136,-0.11264598,-0.10943944,0.45734453,-0.2557443,-0.069591865,-0.7571353,0.07910565,0.16850154,0.09335887,-0.0009208992,0.030265842,-0.44005838,0.58462185,-0.047332074,0.22777711,0.24220705,0.27745205,-0.26663327,-0.5041268,0.031458966,0.80827075,0.3764093,0.18479596,-0.25657693,-0.26557094,-0.22613573,-0.18281113,-0.04886778,0.38005516,0.6293512,-0.12603296,0.050417136,0.300391,0.027610967,0.26531082,-0.13222125,-0.31774607,-0.05461225,-0.06378128,0.5689438,0.5639432,-0.25614694,0.29859638,-0.10378521,0.4255573,-0.079252414,-0.39850086,0.6653636,0.927352,-0.10549008,-0.18414834,0.63968533,0.41404626,-0.30389196,0.44601038,-0.6433523,-0.23172082,0.44124505,-0.19643223,-0.3957655,0.014947721,-0.25099903,0.07256509,-0.8938239,0.27404395,-0.21392703,-0.09583443,-0.51593554,-0.06478186,-3.8832943,0.058366008,-0.21186529,-0.10859907,-0.01294695,-0.10556128,0.12806995,-0.48162484,-0.5596818,0.37853408,0.055440903,0.56321895,-0.07322893,0.24884804,-0.31033948,-0.26623872,-0.5789884,0.13617674,0.043590687,0.27774686,-0.035918925,-0.4516678,0.2172347,-0.23746607,-0.4569803,0.1800751,-0.467309,-0.29273912,-0.30763596,-0.43293476,-0.3782476,0.56563836,-0.24529423,0.12683131,-0.19457631,0.103342995,-0.2528866,0.3205095,0.106888495,0.0849867,0.12600055,-0.04148381,0.021217847,-0.34356388,0.6200276,0.09740918,0.25400385,0.27328205,-0.11445312,0.029400263,0.4607961,0.5999331,0.048891716,0.8874535,0.2828323,-0.045280665,0.32555413,-0.2084967,-0.3767912,-0.4179619,-0.23109452,-0.16314574,-0.28651044,-0.5668611,-0.042014282,-0.37610775,-0.6707408,0.5912793,0.040294744,0.12597097,-0.13098589,0.13324235,0.36977836,-0.22840574,0.11857773,0.022586474,-0.08101444,-0.5270489,-0.3209987,-0.683256,-0.43013173,0.19302239,0.6507516,-0.12373902,-0.03754923,-0.17767629,-0.14431836,0.08961376,0.12495161,0.0115406215,0.017871669,0.41962105,0.018229485,-0.7211133,0.56441444,0.07912479,-0.22705166,-0.7216396,0.25847706,0.5665113,-0.6849483,0.51595217,0.43943277,-0.037193768,-0.03362042,-0.28734198,-0.3173837,-0.011337987,-0.2105895,0.22197984,0.20579584,-0.7654525,0.4346223,0.35434252,-0.34266558,-0.75853,0.5943743,0.09009983,-0.12784517,0.09266734,0.2463881,0.36734357,0.03157996,-0.18407147,0.10818215,-0.45949036,0.0867715,0.027403653,0.014172039,0.53332114,-0.10685078,-0.10301285,-0.88605917,-0.061122544,-0.41342688,-0.23823634,0.10804599,0.15867867,-0.035400536,0.23563519,0.15168093,0.3345173,-0.18010113,0.05692243,-0.024631625,-0.2647431,0.27777654,0.32657138,0.39582327,-0.28934857,0.6897985,-0.024004603,-0.08051318,0.21867535,-0.12004113,0.3217575,0.18533804,0.35675448,0.34604535,-0.24043223,0.19691756,0.72246283,0.113413095,0.2817383,0.19022267,-0.07017965,0.4706082,0.046649445,0.030249715,0.24553044,-0.45866632,-0.1276885,-0.18929939,-0.09105252,0.5747758,0.12535761,0.4527235,-0.065451615,-0.38855362,-0.011773901,0.083074585,0.1338916,-1.2337257,0.030317992,-0.02295144,0.71211714,0.6686055,-0.12742,0.034424596,0.7092164,-0.27348927,0.019359674,0.4360433,0.08746446,-0.4081592,0.6481303,-0.56772995,0.5342276,-0.046300106,-0.056884527,-0.033191014,0.051585443,0.2436578,0.80092084,-0.22269347,0.034814768,-0.008222149,-0.37427357,0.20871027,-0.497897,0.15704067,-0.4077979,-0.12397679,0.6190986,0.33671013,0.36985186,-0.104818515,-0.011607151,0.082334094,-0.15178487,0.18237524,0.029929949,0.03141436,-0.10413348,-0.53548735,-0.23933819,0.64053744,0.035827238,0.24679157,-0.026028702,-0.26840526,0.23485994,-0.21422938,-0.10939194,0.0067707705,-0.81959355,-0.13429882,-0.10107737,-0.51363134,0.5284082,0.0071383035,0.2167125,0.24317701,0.026063045,-0.30788615,0.2281374,0.167616,0.79721504,0.12002814,-0.24081966,-0.2487456,-0.020440336,0.22613502,-0.18340646,0.29086712,-0.16970325,0.0053145885,-0.47814637,0.6168495,-0.121717334,-0.30618554,-0.0030980152,-0.16128214,0.049955394,0.50985163,-0.22251788,-0.15101525,0.01938057,-0.14692746,-0.20426819,-0.2730568,-0.23181327,0.21624026,0.22436269,-0.022248833,-0.11995973,-0.3390117,-0.15509899,0.53935945,0.011813911,0.2667952,0.24646732,0.12004113,-0.42880604,-0.055160593,-0.0043816566,0.32620472,-0.18710068,-0.27574483,-0.22252133,-0.52275884,-0.26819205,0.10617377,0.006155561,0.16755769,-0.08474815,-0.44388595,0.61006624,-0.045914996,1.0735035,0.031735756,-0.471925,0.10826898,0.494106,0.040963344,-0.043689273,-0.37204653,0.93858445,0.4854997,-0.084508374,-0.2527166,-0.50416785,0.10853873,0.1405081,-0.19425459,-0.076998785,-0.01642235,-0.52328116,-0.33472833,0.23039332,0.34511632,0.17126206,0.0241375,0.21361582,0.14631914,0.15480308,0.711938,-0.47245058,-0.20041992,0.3387699,0.36772636,0.04173994,0.08820189,-0.3539566,0.3735795,-0.5053433,0.19257304,-0.31748697,0.09092506,-0.34037024,-0.25019032,0.16429688,0.20623517,0.37767023,-0.30916375,-0.6500664,-0.21316783,0.4830154,0.113306776,0.14719644,0.5297842,-0.23510662,0.012033439,-0.014975041,0.66396993,1.1540511,-0.2076327,0.014939772,0.22932385,-0.48169687,-0.5270767,0.45308766,-0.273172,0.13021626,-0.033529527,-0.047874775,-0.62651557,0.22499765,0.18218757,0.090117395,0.1437781,-0.46619692,-0.38345167,0.39875895,-0.4928382,-0.2958753,-0.31177476,0.22287099,0.7726616,-0.2510887,-0.123956464,0.08129423,0.29416975,-0.25011557,-0.6136258,-0.30326024,-0.22845446,0.37455186,0.16420583,-0.07792229,-0.30565324,0.085370354,-0.45386943,-0.024864163,0.06049072,-0.384167,0.008153213,-0.24684289,0.022960898,0.74755484,-0.18233207,0.27794957,-0.8055339,-0.44462344,-0.91494304,-0.43986538,0.7371841,0.21951959,-0.0033984482,-0.53805393,-0.013910383,0.02200355,-0.082226045,0.08861327,-0.44294193,0.34697297,0.18239641,0.47108147,0.09334976,-0.72711754,0.003914695,0.007838423,-0.08733554,-0.54208356,0.31513008,0.05327013,0.97054386,0.13402234,-0.06791125,0.19590378,-0.36156872,0.12486364,-0.2868261,-0.31546327,-0.6085604,0.2611268,220 +386,0.7214715,-0.21937595,-0.5698045,0.09478138,-0.47278976,-0.006990471,-0.31622294,0.14819129,0.16639468,-0.49786478,-0.111076966,0.032706656,-0.17841123,0.20810832,0.006385318,-0.5552921,0.18086733,0.22980587,-0.7093719,0.93948036,-0.2959866,0.4576347,0.09542414,0.20491529,0.23144862,0.12827887,0.13561475,0.17908394,0.066176616,-0.20200515,-0.088734545,-0.06259838,-0.86761963,0.18938872,-0.24556912,-0.4658729,-0.16426921,-0.37594858,-0.4585929,-0.87929994,0.34084827,-0.96444184,0.63454837,0.06360046,-0.43306836,0.041049488,0.008802031,0.34460846,-0.16148472,0.16641656,0.33183217,-0.13754545,-0.20127772,-0.3001557,-0.19024336,-0.4390902,-0.55325353,0.028526668,-0.45704642,-0.078018986,-0.43494615,0.22714768,-0.38780084,-0.0013578066,-0.3261817,0.35040167,-0.46431756,-0.05585607,0.18970719,0.0032064659,0.29214916,-0.82398003,-0.18772887,-0.21978343,0.08529235,0.10505315,-0.20091888,0.34583205,0.23146386,0.68834025,0.15283248,-0.50259703,-0.087183006,-0.01595882,0.21467267,0.427398,-0.29680008,-0.094773434,-0.42672944,0.14082853,0.5541077,0.1642735,0.14629899,-0.41279522,0.006519437,0.014814079,-0.022804366,0.45384333,0.4694532,-0.39276847,-0.14128318,0.15707366,0.557938,0.15275314,-0.19462577,0.094342604,-0.1608684,-0.4334372,-0.15475695,0.26589483,-0.30906147,0.5821457,-0.05956155,0.016974373,0.56582963,-0.31480476,-0.09051542,0.1794395,0.032279212,0.19930372,-0.3584885,-0.3539726,0.42421347,-0.7811521,0.13268828,-0.36765346,0.5461985,0.047126703,-0.68386286,0.21657284,-0.53062475,0.23000322,0.0073706633,0.6107416,0.9080865,0.47738045,0.13294192,0.9537229,-0.4247148,0.072789244,-0.069118574,-0.18634082,-0.15721597,-0.22323923,0.088303916,-0.40325028,0.06019651,-0.31688815,-0.079905905,-0.06448234,0.5862326,-0.44313616,-0.2409475,0.20103942,0.71386,-0.28980038,0.21035473,0.8328353,1.1719465,1.2189208,0.044313405,1.1991247,0.3546073,-0.11955234,-0.07508937,-0.025569575,-0.61799437,0.05942026,0.36039454,0.16437547,0.39154452,0.099297784,-0.14664795,0.34386566,-0.5821433,-0.05264466,-0.26780304,0.2910853,-0.028780477,-0.21280043,-0.5949809,-0.05743025,-0.09035409,0.21076,-0.06933111,0.26810712,-0.33221012,0.2763388,0.02176497,0.9768478,-0.38811037,-0.049716838,0.11787723,0.4642034,0.3956596,-0.2367164,0.016078379,0.09827431,0.40716925,0.027146239,-0.5725885,-0.0064547337,-0.4506031,-0.3117776,-0.23694631,-0.103373565,0.1932886,0.15112007,-0.2788107,-0.4852161,0.077930234,-0.31810147,0.34685352,-2.132174,-0.22225282,-0.35112783,0.24195406,-0.24863403,-0.35896015,0.028180514,-0.64741695,0.5203367,0.1733407,0.46315902,-0.60804826,0.39437014,0.46431717,-0.73240346,0.107003175,-0.6839689,-0.27520892,0.0066055614,0.6403833,-0.027835667,-0.3650141,-0.089029886,0.10984746,0.8078332,0.106957026,0.06522316,0.41500404,0.30013576,-0.16464849,0.3994306,0.14378117,0.5690413,-0.31405973,-0.2511325,0.6373576,-0.061612185,0.21817075,-0.2707173,0.03131088,0.58443433,-0.5025315,-0.7948769,-0.66591835,-0.25792792,1.363344,-0.3183659,-0.7806917,0.2673083,-0.29911,-0.055020154,-0.045569934,0.3105076,0.038954694,0.1049779,-0.69496554,0.082675114,-0.006117412,0.11935293,-0.038531598,-0.082262225,-0.4740301,0.8228292,-0.05228079,0.3785112,0.4360254,0.4103209,0.004996913,-0.44668362,-0.030131996,1.0517612,0.6672173,-0.005578854,-0.48888764,0.0015444244,-0.22588572,-0.30406204,0.1403751,0.5585338,0.86584455,-0.18888451,-0.057141893,0.20200072,-0.039599974,0.13333541,-0.13015085,-0.3584106,-0.27307007,0.09705584,0.58803165,0.6039329,0.009741596,0.42119274,-0.20303328,0.19389462,0.15499671,-0.63532346,0.5459553,1.3487366,-0.17283769,-0.17782174,0.6737932,0.42359164,-0.36785388,0.6472608,-0.6599112,-0.31914464,0.4397656,-0.069090426,-0.4054186,0.18608306,-0.5816588,0.29507494,-0.7576786,0.35402623,-0.5777317,-0.52469265,-0.4398927,-0.23344953,-2.6218116,0.39007634,-0.4196308,0.078077085,-0.19425811,-0.39385468,0.24731112,-0.4616373,-0.52357215,0.12209866,0.048520274,0.6573195,-0.08118551,-0.010079748,-0.19282666,-0.30713218,-0.31084937,0.22987828,0.25741693,0.25982466,-0.22404914,-0.36477706,-0.05490991,-0.09128772,-0.35952955,-0.1503488,-0.7466188,-0.3848757,-0.30917946,-0.58558273,-0.28130162,0.5059946,-0.047384746,0.17886065,-0.36764047,0.06184458,0.05336552,0.23975447,0.06410342,0.45120245,0.15197904,-0.12909614,-0.059480112,-0.3292282,0.24089582,0.2469347,0.3253183,0.16517952,-0.23943686,0.13476305,0.3869957,0.73034775,-0.2886866,0.9085613,0.5748517,-0.30150342,0.33559602,-0.07890623,-0.6048396,-1.0081142,-0.32521835,-0.06804518,-0.3561677,-0.4607462,0.057289835,-0.43515715,-0.9224927,0.5136742,-0.06821348,0.47429463,0.101481184,0.29257965,0.4074983,-0.26252788,-0.17647259,-0.1414768,-0.14992067,-0.4654362,-0.32013306,-0.7416649,-0.58615303,-0.15169564,1.1402605,-0.21040471,0.03868451,0.2950762,-0.27819338,0.27523306,0.15817307,-0.010781942,-0.04099811,0.4783698,0.26185438,-0.6701904,0.30647165,0.28417864,-0.070378296,-0.47953507,0.5106757,0.6104154,-0.63262683,0.5999045,0.22824481,0.030296335,-0.05553525,-0.8410788,-0.153206,0.20677184,-0.3857773,0.56976914,0.3073097,-0.691717,0.34513298,0.4664857,-0.29252377,-0.6932403,0.5936418,-0.10707656,-0.3931155,-0.11353277,0.37214783,-0.07356005,-0.028552592,-0.15387177,0.28694025,-0.46703833,0.22443019,0.17804047,-0.23708494,-0.0082773315,-0.1852727,-0.46618673,-0.7371116,0.27638525,-0.6579097,-0.3699526,0.37528345,-0.012428931,-0.17376415,0.10890029,0.43479064,0.4590773,-0.06276906,0.26772955,-0.348784,-0.45930597,0.64136094,0.5693921,0.44617894,-0.49115393,0.6169545,0.09881734,-0.35323444,-0.12762795,0.21752277,0.5359949,0.028090682,0.30595595,-0.073852405,0.018188212,0.10519674,0.6255075,0.09715994,0.46867993,0.17701387,-0.011521825,0.18246111,0.09586789,0.1196224,-0.17323007,-0.51734847,-0.049162947,0.11582532,0.080277644,0.46825495,0.2073359,0.1648031,-0.18856311,-0.11286097,-0.06094004,0.0698511,0.0714669,-1.4520522,0.2806169,0.168344,0.66133934,0.49738407,0.025927847,-0.18504825,0.6276745,-0.17933811,-0.13801868,0.36703697,-0.044333708,-0.34884098,0.56504565,-0.6805424,0.27535707,-0.039999068,0.079434864,0.21028535,0.10544894,0.5229164,0.86330575,-0.19782104,0.055609316,-0.2639931,-0.17110516,0.09012379,-0.24342766,0.10965706,-0.31373832,-0.54355067,0.8025621,0.3458729,0.36512616,-0.31615195,0.04525582,0.057279877,-0.31097093,0.49444818,-0.047698677,0.031601958,-0.058392186,-0.34754378,0.0016588952,0.33412313,0.020321446,0.008964513,-0.05762499,0.030673908,0.20956506,-0.052679628,-0.06988796,0.076359786,-1.0076168,0.12924479,-0.6218046,-0.32675526,0.4328375,-0.06538256,-0.0028791171,0.17217056,0.14503638,-0.20460466,0.23941362,0.011447213,0.7779841,0.071108855,-0.22739759,-0.18984035,0.28882208,0.03825918,-0.19623004,0.24091797,-0.04995626,0.086193345,-0.835983,0.6751174,-0.24976876,-0.2718679,0.27553788,-0.2054552,-0.22356105,0.36517242,-0.23637281,-0.19463877,0.12560049,-0.1482666,-0.38025665,-0.4380754,0.041340616,0.11283381,0.070287004,-0.035025496,-0.11717836,-0.11479474,0.073057435,0.6430784,0.15737928,0.22506441,0.18605135,0.16418825,-0.60321826,0.056001987,0.40865567,0.497674,-0.19501449,0.065300204,-0.20378213,-0.470598,-0.41403666,-0.035590224,0.010775216,0.3962713,0.013509448,-0.1607467,0.98290664,0.39972258,1.3556093,-0.12949392,-0.38724503,-0.056291077,0.6553469,-0.28517473,-0.16747649,-0.29195803,0.88594943,0.63556683,0.04215323,-0.06266035,-0.6121753,-0.14835943,0.1656177,-0.37248844,-0.011062041,-0.15759575,-0.5357137,-0.34641027,0.18338397,0.43735686,0.004955036,-0.08427591,0.09773655,0.33934477,0.0052245897,0.2420282,-0.44888538,-0.19153617,0.2941487,0.15706618,-0.1254648,0.21921621,-0.40164185,0.18776187,-0.71823865,0.082916856,-0.09079932,0.07478344,0.037338357,-0.2983337,0.2876466,0.034997292,0.25152493,-0.53889173,-0.25796244,-0.055224035,0.39308208,0.09237281,0.17321576,0.7006127,-0.248781,0.08639254,-0.005440693,0.34118706,1.1589066,-0.16847293,0.114193395,0.022759,-0.49683258,-0.7006821,0.40134224,-0.2697644,0.08460375,-0.030975077,-0.3851525,-0.6099748,0.21723835,0.08810671,-0.12206919,-0.015415455,-0.69555634,-0.26132172,0.10573424,-0.2231092,-0.1528795,-0.31051975,0.40449277,0.63464415,-0.109164976,-0.48732233,0.03850469,0.13120942,-0.19448893,-0.5981623,0.0700372,-0.25592703,0.16765952,0.13798417,-0.3963615,0.08083481,0.14689268,-0.60094583,-0.113873124,0.28590328,-0.28558442,0.018408274,-0.31621107,0.04445094,0.8868989,-0.14812736,0.048194654,-0.33680344,-0.6795683,-0.8035684,-0.47350407,0.25890785,0.3472123,0.13611528,-0.5516883,-0.140226,-0.3755757,0.19801815,-0.0014781313,-0.38985783,0.39571133,0.18211494,0.50673527,-0.19220045,-0.68631035,0.3082896,0.14887346,0.036452897,-0.4022699,0.44386858,0.10022398,0.6682573,0.1453681,0.052474294,0.03136584,-0.70587987,0.1370171,-0.16068818,-0.21102378,-0.7554268,-0.1316687,221 +387,0.38256925,-0.035365827,-0.44740888,-0.1986098,-0.37818384,-0.0038397142,-0.33357957,0.021507557,0.11733995,-0.5026789,0.03251683,-0.1435969,-0.17424642,0.2769042,-0.25868383,-0.6610733,-0.20643698,0.059024572,-0.44630906,0.4030685,-0.5164184,0.45387092,-0.01518075,0.40624812,-0.19128516,0.384322,0.35174164,-0.17437756,-0.096627526,-0.17022859,-0.06256784,-0.09547526,-0.66140956,0.3254201,-0.12275659,-0.4523299,0.15743805,-0.40361473,-0.17272906,-0.6036641,0.32220006,-0.6390308,0.4643423,0.024254007,-0.13026837,0.020441135,0.086486235,0.0405839,-0.21525969,0.12248732,0.37015483,-0.19545135,0.053710725,-0.3561547,-0.35145876,-0.6534749,-0.49545243,0.021288788,-0.6414443,-0.062135573,-0.049329214,0.30787376,-0.24652705,-0.07468178,-0.1609998,0.3866162,-0.33654574,-0.09041997,0.023160884,-0.2350907,0.07643225,-0.36380443,-0.1494797,-0.18524994,0.30449644,-0.29984897,-0.066812046,0.22043599,-0.07373957,0.62183744,0.039496627,-0.10464171,-0.31516567,-0.016953776,0.13240966,0.54257697,-0.17060423,-0.3777472,-0.069040425,-0.1307719,0.18806712,0.20829819,-0.010835392,-0.33230305,0.15745409,-0.15076731,-0.25646433,0.3925846,0.48051924,-0.25240088,-0.19351129,0.39088717,0.4411904,-0.17031983,-0.2131137,0.09493375,0.036245674,-0.35863417,-0.30962542,0.21449436,-0.055854313,0.32072517,-0.045808494,0.34091002,0.70605236,-0.09190329,-0.05359655,-0.2298926,-0.20248304,-0.04841251,-0.18425514,-0.22956268,0.09405027,-0.3041432,-0.11373592,-0.26646316,0.83266795,0.107163064,-1.0095017,0.41044968,-0.5157334,-0.058171444,-0.037877176,0.66931194,0.5006604,0.48065397,0.14136516,0.7309211,-0.5631158,0.22508952,0.14282463,-0.33367962,-0.041427355,-0.095568255,0.122293994,-0.34374198,0.057636198,-0.07512181,-0.038219504,-0.0061259354,0.46149716,-0.31789988,0.032094195,0.11724849,0.8075822,-0.3907981,0.117273085,0.8154472,1.0851195,0.98343277,0.18138956,1.4532492,0.32591933,-0.1821744,-0.037765462,-0.35969052,-0.63216877,0.118835665,0.3727323,0.1858736,0.30384475,0.128553,0.14675753,0.35036477,-0.50149816,-0.01320682,-0.072441034,0.34667078,0.020662399,0.01780734,-0.353296,-0.16666634,0.13435803,-0.028346429,0.004492781,0.31160513,-0.24384151,0.3971119,0.20403512,1.4532801,0.027301995,0.15926406,0.10609184,0.3901706,0.15108123,-0.12114437,0.013588471,0.17479087,0.20949887,-0.19392617,-0.58480275,-0.15986843,-0.24270728,-0.5278332,-0.40380785,-0.16800764,-0.1485138,-0.26508793,-0.2878255,-0.19167331,-0.008597136,-0.3798117,0.35274628,-2.2236354,-0.1670665,-0.23370874,0.42712477,-0.19085646,-0.3579545,-0.15009928,-0.39599195,0.43893406,0.40271297,0.41947344,-0.4561255,0.5363587,0.4230284,-0.33123803,-0.24131873,-0.65255076,0.019656124,-0.23893721,0.20543997,-0.13044743,-0.16869341,-0.38131097,0.0701802,0.42747498,-0.07466994,-0.15653814,0.22597277,0.6222515,0.21652487,0.50470763,0.1427501,0.5131245,-0.49529824,-0.09926223,0.38069466,-0.5420632,0.21986438,0.13397713,0.17462958,0.4326543,-0.67391205,-0.8370985,-0.8437079,-0.4937385,1.0335976,-0.117942385,-0.30201435,0.25264382,0.051436134,-0.4918905,0.019769805,0.49795014,-0.33388013,-0.0912221,-0.6885619,-0.0071666795,-0.18086727,0.51321346,0.034951966,0.25643143,-0.3580517,0.5557706,-0.21673968,0.4799672,0.42775103,0.195286,-0.2764487,-0.2658703,0.25787938,1.0227296,0.30062976,0.13664009,-0.045742687,-0.23589359,-0.044828575,-0.13323957,0.020271318,0.37960956,0.61185277,0.032018118,0.008349402,0.44195268,-0.25491172,0.088773645,-0.15220095,-0.2549389,-0.19742282,0.06540275,0.48610002,0.5751796,-0.19752026,0.35847664,-0.13647713,0.30285844,-0.25002834,-0.2818972,0.36471292,0.41838428,-0.02780045,-0.13516584,0.37324578,0.4741846,-0.36898068,0.42114967,-0.60224736,-0.3372221,0.35753146,-0.034380246,-0.34892732,-0.054441597,-0.30803803,0.21457838,-0.86904,0.25745505,-0.14776476,-0.4941371,-0.8129922,-0.33836445,-2.5850415,0.115272984,-0.2100902,-0.10913497,-0.005081194,-0.040673856,0.17957054,-0.46428505,-0.5706829,0.17601326,0.020077381,0.431493,0.13736351,0.41654477,-0.21995641,-0.13643849,-0.43077248,0.34336558,0.21194255,0.25791785,0.14969315,-0.28441948,0.0009266074,-0.3868932,-0.39117366,-0.022953719,-0.54633904,-0.3910994,-0.08930819,-0.4683312,-0.2465959,0.7378572,-0.4585015,0.00080648914,-0.33143443,-0.18020149,-0.1831164,0.3590369,0.3254839,0.050315347,0.0677367,-0.03564257,-0.38805565,-0.29761428,0.22341058,-0.0031088314,0.10230793,0.37522596,-0.026393745,0.09686058,0.27257016,0.72760135,0.25936815,0.6926828,0.21201515,-0.13639499,0.45648393,-0.39125603,-0.2727946,-0.67766285,-0.38711983,0.06775146,-0.37862834,-0.40429708,-0.112628676,-0.41361102,-0.6193118,0.4429636,0.029351098,-0.17666121,0.087893195,0.42070994,0.19901554,-0.086942784,0.014775106,0.042583358,-0.09366058,-0.43790594,-0.58517975,-0.6874752,-0.49416402,-0.05161925,1.3759843,0.12365341,-0.2425327,0.17642196,-0.29229823,0.1160265,0.12593816,0.12968135,0.26062047,0.4202452,-0.027484234,-0.6447399,0.45161384,-0.13820608,-0.114306875,-0.4550149,-0.18911253,0.7972841,-0.7119664,0.3753306,0.34091812,0.2761095,0.14616786,-0.45421335,-0.20964094,0.1913602,-0.19839188,0.29056555,0.19100986,-0.48732972,0.5428553,0.053145144,-0.14644839,-0.7995919,0.25870556,0.2281517,-0.27723047,0.12914549,0.2810172,0.11236819,-0.1957415,-0.38646507,0.27663478,-0.2949491,0.22131968,0.17229356,-0.1566292,0.4666658,-0.3519409,-0.38382387,-0.5822647,-0.123334356,-0.33059445,-0.40624523,-0.07037665,0.04392332,0.09511363,0.22709231,-0.024501484,0.46215552,-0.42657903,0.08513397,-0.14878283,-0.16130432,0.14002515,0.2982433,0.2830333,-0.4692637,0.7580191,-0.0048734182,-0.055706415,-0.34877253,0.09745931,0.35329914,0.19911204,0.11485655,0.14184105,-0.20491923,0.20648037,0.6647086,0.27987465,0.33460018,0.16318305,-0.3048778,0.49450755,0.10671107,0.011682727,-0.11461934,-0.18532655,0.046112042,0.07281787,0.1200342,0.2560387,0.11675053,0.56989604,-0.24840762,-0.15975425,0.23115757,0.29358795,-0.23151274,-0.9613205,0.23112035,0.07960391,0.716591,0.5447365,-0.005881586,0.21615185,0.57229716,-0.46113303,0.056664165,0.11951143,0.029595375,-0.2170702,0.5605013,-0.25189307,0.4567804,-0.19637036,-0.09010546,-0.008844597,-0.004827644,0.26860175,0.89537746,-0.020787464,0.100958996,-0.016312549,-0.057312306,0.063676804,-0.13697231,0.09485107,-0.36637217,-0.26342806,0.7457498,0.19462569,0.4244917,-0.18166222,0.005465552,0.05070573,-0.11019778,0.21512564,-0.15163282,-0.17536111,0.104531646,-0.53366,-0.27162853,0.78356737,0.0050047124,0.02721594,0.20240422,-0.4712858,0.28128532,0.0426715,-0.035730608,0.028657198,-0.5455305,0.047193833,-0.35571998,-0.22866924,0.2083552,-0.21374585,0.32556984,0.14512111,0.038535003,-0.34173653,0.097259514,0.5773547,0.66278356,0.2366545,-0.07530339,-0.18317822,-0.04543834,0.30500913,-0.30375168,0.011360005,-0.30620915,0.17506325,-0.7217745,0.45536655,-0.0734728,-0.19536546,0.12511054,-0.19524027,0.1200039,0.4876388,-0.100577,-0.11856193,0.19928396,0.09397451,-0.22955962,-0.10947961,-0.4863128,0.25786218,0.13232729,-0.082314536,0.020624837,-0.1304158,-0.2527467,0.56308144,0.06504218,0.24958524,0.28122568,0.15295804,-0.52865165,-0.010532503,-0.29383308,0.36054352,0.02834834,-0.03971402,-0.12026145,-0.25312206,-0.046589177,0.4889349,-0.2681129,0.058671825,0.07772163,-0.59214514,0.73280746,0.17021224,1.1092378,0.12968302,-0.30800167,0.07879429,0.46459463,-0.02438235,0.2982772,-0.4564152,1.0787555,0.49450397,-0.14608482,-0.14607945,-0.329007,-0.27472192,0.14833944,-0.28069845,-0.27929494,-0.19566426,-0.6761087,-0.3217387,0.06897188,0.12167271,-0.10610286,-0.027183592,0.14326937,0.006338175,0.09907956,0.43060756,-0.60497326,0.07204709,0.3723473,0.15084656,0.10693116,0.22377174,-0.370312,0.4491791,-0.59246624,0.24955232,-0.64533913,0.15577595,0.03356836,-0.2440608,0.07506682,0.2335252,0.383255,-0.2383857,-0.4270119,-0.21066548,0.6328784,0.27936417,0.3805018,0.76816666,-0.27375707,0.0885734,-0.026577456,0.5268463,1.252191,-0.113140754,0.072468415,0.22643529,-0.4095833,-0.43141237,0.17695774,-0.5123032,-0.25569174,-0.095111765,-0.2473291,-0.43430117,0.2961493,0.13865732,-0.070412405,-0.031638406,-0.41825017,-0.27293625,0.58751583,-0.2274892,-0.27925536,-0.26601174,0.19273499,0.8477653,-0.1919227,-0.2171321,0.05845544,0.3108783,-0.36230007,-0.6675569,-0.043232303,-0.40059805,0.543881,0.20541511,-0.13659723,-0.09114502,0.15126383,-0.45940223,0.08335926,0.31581613,-0.4383945,-0.12432037,-0.25767413,-0.055608742,0.8664803,0.11574783,0.15957324,-0.6436008,-0.44010672,-0.8653117,-0.25533488,0.34701225,0.24899396,0.008462802,-0.5244698,-0.043391358,-0.16197526,-0.10876894,0.16000566,-0.71212,0.21395156,0.26333427,0.59586793,-0.18012981,-0.9838669,-0.039576996,0.064829364,-0.3498822,-0.4125763,0.30437544,0.18475701,0.7795896,0.06695329,-0.03448879,0.12742113,-0.58840376,0.43406382,-0.32857066,-0.19204186,-0.5655297,0.17610712,222 +388,0.46819553,-0.23432639,-0.4982405,-0.15851773,-0.23801748,0.03845964,-0.17643435,0.34395522,0.29914206,-0.51332366,-0.13633005,-0.2848968,-0.02606486,0.18423022,-0.12730289,-0.5764701,-0.048734777,0.078343384,-0.4655056,0.49130383,-0.36396292,0.23546752,-0.00032781702,0.3085356,0.10411072,0.3397029,0.008640981,-0.24222156,-0.067944475,-0.3105406,-0.024651399,0.1238456,-0.5690147,0.29159927,0.013436879,-0.18151543,-0.008496855,-0.41919613,-0.44917727,-0.79257256,0.15498385,-0.8796793,0.43623045,0.09781361,-0.31143156,0.19277875,0.1987318,0.38741687,-0.12283766,0.06409318,0.38073984,-0.10350637,-0.05518083,-0.09299125,-0.112109,-0.56029147,-0.5635162,-0.14551659,-0.28198424,-0.22075741,-0.3979502,0.10242139,-0.330821,-0.16659178,-0.13195434,0.57878214,-0.48597234,0.21623707,0.23804785,-0.15740465,0.6729292,-0.4637178,-0.16972198,-0.16565564,0.25881055,-0.23339452,-0.25207365,0.20546107,0.37789822,0.19873276,0.018595705,-0.107012115,-0.25028595,-0.0146334935,0.346869,0.5296219,-0.08261984,-0.3349891,-0.06379304,-0.00088950567,0.042438287,0.23798871,0.14884447,-0.4787689,-0.14405362,0.09863878,-0.22059932,0.45413813,0.44977817,-0.10264613,-0.16320145,0.30692267,0.44422722,0.17409499,-0.20781355,0.05424822,0.06560521,-0.47730085,-0.16039796,0.07970171,-0.2565418,0.43240842,-0.25806642,0.17694858,0.79418117,-0.25258985,-0.066192865,0.11300218,0.0016385956,-0.0954288,-0.23514673,-0.2427787,0.22494258,-0.48611543,0.21544483,-0.06319632,0.6481255,0.08698566,-0.67549604,0.28593847,-0.60336125,0.014519347,-0.26826423,0.42879158,0.5617199,0.4106076,0.31386283,0.61775535,-0.44382903,0.036265314,-0.11565137,-0.48474863,0.095701836,-0.16892746,-0.036193285,-0.54573566,-0.20006125,0.0011378527,-0.16965704,0.005888943,0.28522775,-0.4992164,0.02471757,0.14537366,0.8678412,-0.28163686,-0.023030391,0.59433454,0.9413331,0.8882713,0.24210525,1.0635949,0.19415805,-0.17889918,0.13236201,-0.27225032,-0.6663535,0.38167104,0.4203516,-0.47904816,0.21635981,0.17600812,0.08164026,0.36075693,-0.30772844,0.18726549,-0.25807545,0.24193771,0.09692663,-0.27856213,-0.34870166,-0.25304326,-0.044660024,0.085738555,-0.011698459,0.13708247,-0.09292233,0.20259799,0.1778778,1.4287864,-0.08348059,0.02094091,0.0281885,0.40568808,0.17708357,-0.17725532,-0.038682323,0.4063873,0.30795723,0.26727593,-0.5882508,0.23302694,-0.05717705,-0.36956766,-0.18082762,-0.29493546,-0.008519639,-0.04094771,-0.39067173,-0.053923257,-0.07267936,-0.2884064,0.4916918,-2.6708882,-0.115876794,-0.17698063,0.3228326,-0.2549129,-0.24953143,-0.05012711,-0.429841,0.43803126,0.26612654,0.4900953,-0.6525877,0.38759735,0.601874,-0.5785771,-0.13577195,-0.5806187,-0.15547787,-0.1505816,0.33431837,0.1360902,0.13581035,-9.289384e-05,0.25611824,0.412623,-0.07396387,0.13688397,0.20318969,0.39606974,0.02327153,0.6439633,0.07593813,0.5362188,-0.023421125,-0.19932756,0.2558927,-0.24022685,0.119170405,-0.06503609,-0.0006051617,0.41637775,-0.28297472,-0.7766285,-0.6959075,-0.5455885,1.130821,-0.16094379,-0.38400102,0.3208835,-0.23855059,-0.41043147,0.040873844,0.37631968,-0.07920524,0.11901874,-0.9440759,0.03251766,-0.13461661,0.21559832,0.07583151,-0.15610948,-0.54559004,0.8029431,0.015204336,0.40640965,0.39364833,0.13778618,-0.28882033,-0.36311024,0.059837904,0.9284616,0.35359997,0.1605099,-0.27725628,-0.16459374,-0.2987767,-0.043456372,0.10888044,0.6401195,0.63545436,-0.15177648,0.14220679,0.17655405,-0.102327295,0.034382146,-0.16383256,-0.28447986,0.011537707,-0.013953532,0.496578,0.5932242,-0.09581301,0.58886445,-0.021792872,0.34361646,-0.100617416,-0.45388848,0.4470763,1.2997888,-0.12747759,-0.33016035,0.57487404,0.49226433,-0.19115397,0.35093215,-0.49671856,-0.15319039,0.41646576,-0.11051881,-0.55868024,0.23949364,-0.408623,0.20883977,-0.794254,0.4013192,-0.41452307,-0.6322616,-0.4562563,-0.114345215,-3.556639,0.2832687,-0.30586967,-0.25808448,-0.058414068,-0.058521155,0.3430798,-0.6181216,-0.6132194,0.23342057,-0.020591814,0.657176,-0.16571438,0.077859156,-0.17523582,-0.0881635,-0.11628522,0.2693185,0.099942006,0.23421578,-0.018161135,-0.5168146,-0.120993204,0.018835735,-0.469613,0.0045587677,-0.57935554,-0.59276456,-0.1032948,-0.516589,-0.25939128,0.5956837,-0.27914882,-0.026238693,-0.11678153,0.022433119,-0.11440546,0.3322997,0.07158553,0.09319173,0.051692903,0.07047156,-0.1274326,-0.22081113,0.32021597,0.12434207,0.25123873,0.26760286,-0.12735906,0.18283455,0.49375233,0.5964312,-0.094396584,0.82965887,0.38657364,-0.20596111,0.24027827,-0.32546785,-0.25795937,-0.5659382,-0.33990055,-0.023446733,-0.35715994,-0.58341736,-0.087160006,-0.36221415,-0.69252545,0.5641063,0.06869026,-0.045956858,-0.08517753,0.06283411,0.3402322,-0.07330652,-0.061190136,-0.034782495,-0.15470357,-0.61039066,-0.19045356,-0.4810264,-0.36481673,0.010341917,0.9265138,-0.224147,0.08779146,-0.050442774,-0.3100069,-0.018091304,0.17417237,-0.10835803,0.11037034,0.43440074,-0.016407505,-0.6495365,0.45568997,-0.082732774,-0.14115125,-0.6878562,0.2929921,0.8820982,-0.5917694,0.6657662,0.30534878,-0.028626125,-0.24420418,-0.43268707,-0.25719923,0.017756948,-0.34882355,0.5135717,0.094802335,-0.6875998,0.3465539,0.434717,-0.23598203,-0.61435384,0.6988843,-0.14953025,-0.25120267,-0.043141734,0.31695843,0.025115864,0.11431607,-0.12866256,0.40279537,-0.2339985,0.23250858,0.3002796,-0.056033585,0.12966983,-0.07221157,0.074292734,-0.8327809,-0.07290394,-0.34794062,-0.31832156,0.2234127,0.04414395,0.02889216,0.3836858,0.013387867,0.3338221,-0.23570575,0.08970316,-0.15212579,-0.27824092,0.24710621,0.4173879,0.3921793,-0.3853361,0.5849659,0.08494788,-0.064973466,-0.12330585,0.058555756,0.50591505,0.09258066,0.5158414,-0.13201514,-0.14422236,0.41667634,0.84558296,0.12944277,0.6392292,0.08044902,-0.08121427,0.112155505,0.075849704,0.3600607,-0.09539253,-0.64923626,0.07770772,-0.3391864,0.18469821,0.35890156,0.16547404,0.18810534,-0.041090112,-0.42347616,0.0026958287,0.21962357,0.21050282,-1.2542344,0.53388596,0.3611886,0.7167539,0.45646566,-0.022204487,0.10576703,0.69006383,-0.22909978,0.079418175,0.3072453,0.059372433,-0.49524823,0.3764794,-0.8951066,0.28559357,-0.020370629,-0.13089488,0.010710475,-0.0757785,0.38167238,0.822528,-0.17778675,0.05990495,-0.028092671,-0.33996576,0.25212297,-0.432882,0.10883957,-0.55304015,-0.43463722,0.59374374,0.66097695,0.39326254,-0.111978345,0.12843072,0.08820623,-0.081258416,0.12792377,0.22317769,-0.018813714,0.08504838,-0.7956194,-0.124741614,0.4672866,-0.07621292,0.17804496,-0.087205715,-0.17103942,0.25023586,-0.21312821,0.11625482,-0.074545845,-0.7431428,-0.11238809,-0.29681155,-0.40031686,0.36068243,-0.09844393,0.23359366,0.10218757,0.027618289,-0.057015877,0.35461193,0.18262336,0.6665083,0.13259266,-0.012597288,-0.3660365,0.14926669,0.11617152,-0.11298212,-0.1406493,-0.33870634,0.039325632,-0.5886845,0.34292886,-0.03837459,-0.46470788,0.16272333,-0.16383243,0.0034146372,0.56690675,-0.15682782,-0.28544194,0.08507885,-0.25569376,-0.07806657,-0.11785651,-0.06553338,0.34964642,0.24739303,0.05403306,-0.11153988,-0.045584355,-0.2981582,0.35993034,0.11319191,0.5716443,0.41886696,0.017860148,-0.26060745,-0.20568107,0.061454695,0.5437133,-0.06476797,-0.048120983,-0.13449405,-0.49462166,-0.27331987,0.13846005,-0.04567793,0.32590935,0.11771437,-0.17912172,0.6572362,-0.11885928,1.0950196,-0.0016370484,-0.38598093,0.08505237,0.3469155,0.016768511,-0.09245255,-0.3873086,0.8239737,0.5706436,-0.12128995,-0.11667763,-0.42636395,-0.07750968,0.095820524,-0.10692873,-0.021426065,0.055620916,-0.6989015,-0.2614395,0.20109543,0.20004319,0.023095505,-0.04040763,0.039310984,0.26481804,-0.04544127,0.24348958,-0.5544523,-0.09903814,0.2643283,0.29080248,0.03470854,0.0359028,-0.4572359,0.40650907,-0.3700808,0.1891063,-0.20510732,0.1518068,-0.3070727,-0.11446155,0.18901196,-0.061805874,0.36513472,-0.29654196,-0.2955263,-0.15230587,0.5355627,0.026139885,0.0742423,0.5664476,-0.24910317,0.20879105,0.17783655,0.54031247,0.8386187,-0.35766008,0.09687376,0.46094283,-0.465672,-0.51828754,0.2936232,-0.23580456,0.08793068,0.117794864,-0.3356131,-0.49058598,0.30660656,0.09455912,0.01143051,0.067021936,-0.5369587,-0.092066355,0.32126394,-0.35061333,-0.2762847,-0.27285573,0.19332215,0.5502429,-0.33479697,-0.34936434,0.056960285,0.13773371,-0.28621414,-0.373084,-0.0877172,-0.21791811,0.37559938,0.08769353,-0.3313653,-0.11041661,0.069957815,-0.3641253,0.13369302,0.06531825,-0.28657484,0.0880503,-0.3137079,-0.13438694,0.7391998,-0.3275776,-0.04300597,-0.60831994,-0.39853844,-0.6521292,-0.30259082,0.45917797,0.03725604,-0.011135889,-0.38228217,-0.050293658,-0.028663443,0.003309582,-0.17221086,-0.3166917,0.46833572,0.07686961,0.5043077,-0.08261744,-0.96220857,0.20588358,0.17843989,-0.14906202,-0.79367775,0.61013824,-0.1580684,0.6300333,0.024619158,0.19948377,0.17193387,-0.3891913,-0.03581074,-0.1285831,-0.20030954,-0.7871131,-0.021923143,230 +389,0.35110182,-0.011837019,-0.42711157,-0.15438485,-0.2728315,0.057032235,-0.18370485,0.34303832,0.24312714,-0.48804197,-0.04217497,0.0043106205,-0.029060928,0.21309566,-0.097234674,-0.50029767,0.15667023,0.17088433,-0.46146673,0.46374914,-0.39157054,0.14094786,-0.05375162,0.3636213,0.12721664,0.27997,0.043229945,0.05788972,-0.20555265,-0.14921431,-0.116575345,0.23990944,-0.62917364,0.30454534,-0.19360031,-0.2248408,-0.033932235,-0.43167967,-0.4489638,-0.68382174,0.21292695,-0.7039443,0.46371222,-0.005560279,-0.29899696,0.3138702,0.2603199,0.28095707,-0.12728605,-0.1396699,0.223253,-0.26519197,-0.042983163,-0.3451455,-0.13714704,-0.3247244,-0.6014986,-0.07647603,-0.4672578,-0.1411267,-0.012592708,0.18554333,-0.22968438,0.044465244,-0.054758217,0.65052575,-0.4365325,0.26216277,0.30854008,-0.23631923,0.1440275,-0.57960665,-0.14405094,-0.017681006,0.009899518,0.023961876,-0.32864478,0.23320355,0.120728254,0.4022381,-0.08886729,-0.23451708,-0.25430468,0.012663292,0.15603791,0.4310717,-0.20516391,-0.12588434,-0.07700082,-0.017796755,0.1662123,0.03842304,0.15628217,-0.18621847,-0.07184597,-0.016444147,-0.18725505,0.44636232,0.56690294,-0.22011045,-0.13681868,0.30323866,0.60320187,0.07315893,-0.26434687,-0.003936861,0.12522316,-0.43753862,-0.13903823,0.04429273,-0.21632631,0.34569174,-0.23629354,0.14888634,0.7174838,-0.2792522,-0.10679763,0.28054434,0.26255155,0.22849713,-0.4054461,-0.22568265,0.3306189,-0.47803313,-0.042993437,-0.19802353,0.7269902,0.16580865,-0.5730658,0.2711451,-0.43899032,0.004998573,-0.018937783,0.4175152,0.8244749,0.59279346,0.28011698,0.7307909,-0.44479033,0.16533484,-0.10047917,-0.18937649,0.17572857,-0.21422291,0.16310632,-0.43139532,0.02060234,-0.13110694,-0.15953696,0.1262788,0.40219837,-0.53922284,-0.10860685,0.24288453,0.9551373,-0.27344897,-0.25544742,0.71328,0.9252601,0.946958,0.07024963,0.886175,0.21205536,-0.088550486,0.05483928,-0.34805053,-0.7541137,0.13432012,0.1433226,0.23276493,0.20603204,0.29070082,0.09740038,0.36767575,-0.37394413,-0.0057019764,-0.14730246,0.5680297,0.15843354,-0.110549346,-0.29083198,-0.21187617,0.037247267,-0.14099756,0.102882944,0.3465405,-0.14692304,0.495968,-0.032631177,1.4669329,-0.024972856,0.11015361,0.050993364,0.45633104,0.2730894,-0.3888614,-0.03925665,0.43550974,0.2716845,0.048146766,-0.40765563,0.13294171,-0.10531999,-0.42874065,-0.21566205,-0.3461237,-0.12328037,-0.1191229,-0.46647945,-0.29955846,-0.0498301,-0.21152087,0.33670425,-2.905026,0.06503707,0.01006034,0.37888503,-0.22927563,-0.24230759,-0.1294768,-0.5070392,0.24488075,0.2451539,0.40326375,-0.6401638,0.53725356,0.45579553,-0.46937674,0.03308008,-0.6119359,-0.14755559,-0.122292824,0.2723563,0.047725376,0.14479986,0.04697543,0.16933663,0.43428662,-0.118191384,0.14960672,0.3264926,0.42538577,0.10456954,0.31341377,0.10452504,0.46271223,-0.25811592,-0.22400428,0.34569788,-0.6286398,0.09557929,-0.1335181,-0.011411265,0.57054955,-0.21304886,-0.85436386,-0.5456454,0.044900537,0.9525088,-0.23900798,-0.4221857,0.18444204,-0.5170347,-0.32864198,-0.04066273,0.23597728,-0.036359552,-0.13574837,-0.71127063,-0.009284266,-0.0838114,0.18434341,0.00013858399,-0.083980836,-0.3145927,0.630014,-0.15659025,0.33674827,0.2925494,0.25374597,-0.40760472,-0.32667843,0.019219214,0.6861887,0.2944985,0.20115551,-0.32448497,-0.25827608,-0.16193359,-0.11532407,0.069673896,0.6007457,0.59231466,-0.1363132,0.15676464,0.34228903,-0.14647989,-0.117736995,-0.2016267,-0.3931973,-0.053540263,0.009386301,0.5207635,0.6971382,-0.15752013,0.4498269,-0.023852007,0.18659125,-0.24941047,-0.6440635,0.4537688,0.6478392,-0.062565796,-0.38892302,0.4817195,0.3673932,-0.3006141,0.3613007,-0.5166969,-0.3142007,0.3025587,-0.17699544,-0.4209682,0.06085532,-0.32004303,0.16712105,-0.5374035,0.40573677,-0.21683714,-0.72213465,-0.65691584,-0.21140857,-2.7223532,0.04886803,-0.17586446,-0.18197212,-0.018090231,-0.112059996,0.11670776,-0.42748457,-0.4452179,0.3296992,0.08093894,0.68980396,-0.026323361,0.14078589,-0.2436062,-0.24009922,-0.26340804,0.21137054,0.14178397,0.14127643,0.021949146,-0.5081504,0.06469698,-0.18630132,-0.3761945,0.051054128,-0.55008096,-0.49709532,-0.14679646,-0.53450406,-0.1499926,0.64095294,-0.30486837,0.016092334,-0.3975596,0.026622197,-0.065203734,0.31412593,0.15429032,0.12042511,-0.0037821191,-0.020196727,-0.07088627,-0.38798258,0.18446657,0.06732241,0.3427851,0.5490612,0.11608841,0.10808389,0.47346026,0.65739304,0.05520361,0.8233176,0.31690487,-0.14549866,0.25086066,-0.14507338,-0.27611935,-0.5104879,-0.24918365,0.05153071,-0.41149637,-0.27955654,0.114046335,-0.48575643,-0.7643705,0.3916208,-0.012934421,0.030058239,-0.031786073,0.25100562,0.45251036,-0.21867041,-0.009712792,-0.04348267,-0.12895434,-0.4694793,-0.3554277,-0.59435236,-0.41840282,0.2824121,1.1825752,-0.24317773,-0.08798573,0.0814323,-0.29795668,-0.03319342,0.27984402,-0.24701382,0.09006761,0.592348,0.0055679297,-0.566109,0.26966998,-0.19279115,-0.14070787,-0.64867646,0.11109984,0.5190128,-0.65176827,0.6883002,0.1748649,0.045957346,-0.20423481,-0.49291372,-0.24475494,-0.035910588,-0.36991328,0.4042646,0.34608665,-0.7839814,0.42400226,0.2336696,-0.48849455,-0.6448174,0.30655622,-0.11405457,-0.2442641,-0.19412242,0.23971531,0.047409873,0.09490675,-0.070626415,0.16508596,-0.47538072,0.115922116,0.14972374,-0.063863195,0.25946456,-0.24292634,-0.25183502,-0.6314762,-0.25235787,-0.4013906,-0.36995983,0.21575768,-0.013581238,0.27686635,0.30901104,0.24858478,0.34616494,-0.14764626,0.112785675,-0.16528694,-0.26935044,0.43437955,0.39577866,0.52084166,-0.39404836,0.5838544,0.09320467,-0.09497661,0.07186967,0.10237876,0.378468,0.11292716,0.40033635,0.13624091,-0.1483229,0.14983793,1.088863,0.10071,0.6184841,0.0140353525,-0.07713846,0.231743,-0.038125243,0.14572828,0.02018909,-0.43271875,0.039461784,-0.212625,0.23279102,0.32964873,0.10164775,0.46110293,0.019920353,-0.400104,-0.05208389,0.10986584,0.054503866,-1.3555633,0.14233966,0.24166271,0.8956009,0.44020352,0.08358063,0.006899029,0.80965036,-0.15140118,0.09954995,0.27181622,-0.15903161,-0.38074747,0.4699364,-0.7607192,0.48977828,-0.1065768,-0.102567986,-0.04535877,-0.08745616,0.4109961,0.7653602,-0.22935179,-0.03408293,0.08924447,-0.375245,0.20779867,-0.40526453,0.19188523,-0.51600957,-0.33433074,0.6684571,0.5553172,0.46245125,-0.16656373,-0.07466928,0.12635168,-0.09661317,-0.06957719,0.06445496,-0.08944927,0.08142858,-0.4941317,-0.28517362,0.5168475,-0.12316416,0.16400085,0.18692799,-0.07245203,0.28953695,-0.08886234,-0.19837794,-0.05752558,-0.67945594,0.03808754,-0.11459809,-0.53585935,0.646722,-0.055901337,0.060602553,0.25944844,0.02381364,-0.34881932,0.43957645,0.1661249,0.6402763,-0.06945413,-0.050546367,-0.33499864,0.2915883,0.14065109,-0.17527132,0.18344977,-0.22808851,0.20820653,-0.548885,0.506128,-0.18967767,-0.17734292,-0.047964115,-0.14053433,0.13593504,0.61772484,-0.075226255,-0.13352357,-0.07494099,-0.26153347,-0.3617343,-0.059864573,-0.19214915,0.15671323,-0.014565569,-0.24517858,-0.09147833,-0.22636683,-0.20437123,0.24280278,0.05152723,0.21275647,0.3834497,-0.03889378,-0.38437694,-0.109086476,0.124288835,0.52050316,-0.10102205,-0.23316121,-0.17868793,-0.40069333,-0.42979285,0.5322426,-0.009131568,0.3425127,-0.029279198,-0.25261825,0.93771404,-0.082771935,1.0606743,0.09689097,-0.28191173,0.048801363,0.41234466,-0.025004659,0.07088997,-0.34543937,0.662787,0.46924093,0.00028315187,-0.0096931625,-0.4044424,0.042718988,0.31215557,-0.17556909,-0.24455823,-0.04280961,-0.6888209,-0.04021006,0.24606612,0.16947167,0.24907576,-0.15589686,0.18567681,0.3662665,-0.02380838,0.16863933,-0.5348748,0.06467463,0.2684405,0.3121807,0.098232165,0.11570292,-0.43640354,0.26257688,-0.35117745,0.09419044,-0.029320598,0.14177403,-0.1019479,-0.30980793,0.19702376,0.13899925,0.34177676,-0.4440009,-0.24984105,-0.30893967,0.5518504,0.2735776,0.23589255,0.5313344,-0.08897005,-0.014401691,0.040132586,0.47456455,0.7620999,-0.15456775,-0.050996512,0.4286871,-0.3644729,-0.7432103,0.39242712,-0.27247706,0.2259494,-0.026955035,-0.28503403,-0.5482987,0.18637227,0.32091925,0.020703586,0.18627922,-0.4846315,-0.089739546,0.27870277,-0.3155443,-0.20247634,-0.21713789,0.077605926,0.5531046,-0.13239273,-0.0052585984,0.046340723,0.32110834,-0.21233113,-0.30057213,-0.19548114,-0.39529613,0.33939832,-0.02547124,-0.276791,-0.1773723,0.056656342,-0.44075865,0.123419695,0.18674874,-0.22983514,0.024555266,-0.15568998,0.09786188,0.67785615,-0.16559693,0.15591024,-0.502439,-0.4221796,-0.7603652,-0.213454,0.3423429,0.100219086,-0.1032819,-0.74465173,-0.117025495,-0.12243058,-0.14940678,-0.05391604,-0.5793744,0.4875075,0.07821659,0.0432314,0.09822183,-0.7878369,0.119687356,0.22600596,-0.21061902,-0.5097968,0.46106032,-0.26588634,0.90088433,0.0448882,0.07672101,0.14143707,-0.35609648,0.26022193,-0.34697834,-0.24301597,-0.6209666,-0.01755313,236 +390,0.43638,-0.13999018,-0.41481283,0.00067459315,-0.22628573,0.23859379,-0.10752074,0.26619557,0.23456396,-0.48267213,-0.12208838,-0.16097513,-0.01599891,0.15108141,-0.11544009,-0.49988243,-0.010816395,0.17792954,-0.41314703,0.44888186,-0.36345798,0.5112325,0.13756384,0.19449356,-0.015470548,0.27988535,0.14482868,-0.08608677,-0.26553774,-0.24948277,-0.28046206,0.17228992,-0.46162495,0.2969361,-0.19022226,-0.37396023,-0.034425378,-0.31411654,-0.29590362,-0.5065065,0.26576322,-0.7217269,0.4017013,0.061983977,-0.17431895,0.2507979,0.026506769,0.19013461,-0.07683318,0.038230296,0.06904342,-0.18598461,-0.09488899,-0.28544107,-0.20364091,-0.3118783,-0.6054931,0.08172325,-0.48175558,-0.07568474,-0.3628385,0.13686608,-0.3048713,-0.11271063,0.040908337,0.27474523,-0.3225855,0.114239015,0.024384592,-0.2612258,0.01868898,-0.3714787,-0.12544855,-0.015614892,0.31046477,-0.26727274,-0.08490967,0.22101416,0.20609467,0.525416,0.038309958,-0.096061654,-0.4247158,-0.038195383,0.18817271,0.54232043,-0.048147976,-0.28426617,-0.06955062,-0.17924313,0.07925222,-0.025691288,0.16278,-0.11320257,-0.15806638,0.020209944,-0.258233,0.3250496,0.45584145,-0.46980223,-0.33774784,0.3431397,0.58536655,-0.06592051,-0.18006301,-0.025821792,0.045219302,-0.39490685,-0.10595035,0.09254245,-0.09091205,0.48634365,-0.064158276,0.3913769,0.5736159,-0.2356925,0.101992846,0.18562137,-0.010634646,-0.17161094,-0.031340234,-0.057127785,0.09236098,-0.42376342,-0.047994275,-0.15948485,0.9013547,0.08218352,-0.77471167,0.42435673,-0.46843365,0.0924347,0.024144167,0.47441202,0.62651724,0.36363062,0.24181525,0.6333208,-0.42483097,0.0012827112,-0.13211969,-0.32886252,-0.050059047,-0.21676722,0.07595108,-0.5208879,-0.025816875,0.17269431,0.038796272,0.09036807,0.5962087,-0.41612265,-0.116831936,0.15002765,0.8451766,-0.26964802,-0.22295497,0.74280614,1.0418189,0.8697714,-0.06769402,1.0590153,0.21793206,-0.21169662,0.014445654,-0.47629255,-0.5486134,0.24633925,0.24399115,0.10449261,0.19690251,0.15124235,0.08225517,0.3357385,-0.31977445,0.14472114,-0.13087991,-0.030502,0.122983,0.054051634,-0.3376638,-0.2905993,0.10565443,-0.03944508,0.26776385,0.30261418,-0.23727076,0.47515196,0.097552285,1.5491103,0.0068150247,0.16365083,-0.016979376,0.39430055,0.14088261,-0.04512038,-0.13921702,0.14452489,0.2550123,-0.02450956,-0.44650063,0.036983218,-0.1517144,-0.50978655,-0.19636194,-0.2786687,-0.26156142,0.059304815,-0.39335623,-0.18234941,0.007621863,-0.5291993,0.44439772,-2.8207793,-0.16114746,0.0046486715,0.32377344,-0.29482365,-0.4197395,-0.15932025,-0.46297947,0.3436353,0.30702624,0.40430504,-0.54268664,0.43413258,0.3789265,-0.4336823,-0.26702687,-0.4396012,-0.019560274,-0.09600491,0.32490328,0.098459825,-0.17546546,-0.033045854,-0.055362258,0.42330083,-0.20424625,0.006717133,0.3327836,0.37880436,-0.04439407,0.32822004,0.12402432,0.48401204,-0.3209396,-0.22265889,0.43653408,-0.3918524,0.25204295,-0.16656879,0.1708373,0.23207948,-0.39974114,-0.865028,-0.6561136,-0.2576631,1.263595,-0.03796653,-0.36313137,0.18751357,-0.21256375,-0.35706067,-0.094077155,0.44520822,-0.021691512,-0.009374251,-0.7566219,0.053720884,-0.11013162,0.24287224,0.033581637,-0.08495731,-0.38797125,0.7534137,-0.097029634,0.41946888,0.23825347,0.32537916,-0.28827652,-0.2720124,0.18581073,1.0912226,0.23711495,0.12265158,-0.2807972,-0.28086078,-0.25505885,-0.17498474,0.054916237,0.42594975,0.5295797,0.05246889,0.052099835,0.2956845,-0.021735007,0.05275954,-0.16229261,-0.18960777,-0.16455682,-0.061800115,0.6237017,0.6304894,-0.0914656,0.48375574,-0.09754533,0.21320473,-0.25556752,-0.36587647,0.5978604,0.7780417,-0.09210837,-0.19904771,0.5151769,0.43623313,-0.20256475,0.34637123,-0.63794476,-0.51855296,0.3488366,-0.26357976,-0.3526524,0.15699165,-0.35716507,0.12548111,-0.7836215,0.19160937,-0.18433394,-0.46615192,-0.55643463,-0.13337724,-3.725108,0.0979087,-0.086682186,-0.13839011,0.077215634,-0.058342535,0.08898343,-0.55200315,-0.2598829,0.020120064,0.042197667,0.73901594,0.024216177,0.21005961,-0.34719372,-0.26770565,-0.38394484,0.1418788,0.028507296,0.3307419,-0.05399395,-0.34387496,0.08889455,-0.24833645,-0.23966263,-0.020131094,-0.5540624,-0.5065735,-0.1293628,-0.3038893,-0.34360543,0.6548873,-0.49996573,0.07333328,-0.25924915,-0.030610846,-0.11926945,0.34482735,0.1335102,0.039651744,0.13731349,-0.17543027,0.103042655,-0.36962894,0.47843155,0.108624406,0.36209366,0.6562966,-0.17297404,0.110145964,0.50908124,0.5799037,-0.02539103,0.8975596,0.31718817,-0.11254149,0.25245038,-0.18285741,-0.25920728,-0.5103608,-0.19126013,-0.043787237,-0.45317847,-0.4783549,-0.13818344,-0.32403633,-0.7905317,0.45341438,0.074017145,0.12655383,0.017460395,0.42788312,0.41838145,-0.13092309,-0.15191674,-0.11244125,-0.062501796,-0.37400904,-0.41700986,-0.61292315,-0.51754636,0.12474156,0.8326145,-0.16900086,-0.001323172,0.0928054,-0.15156971,-0.0008376581,0.09907929,0.26394925,0.11454026,0.3516226,-0.062338296,-0.61978394,0.57505375,-0.23895206,-0.09140999,-0.61245584,0.08283542,0.49172217,-0.6107926,0.32281655,0.31304947,0.06582812,0.2354425,-0.2707639,-0.14786525,-0.19810374,-0.24716496,0.19708085,0.18727128,-0.669272,0.3682766,0.17575036,-0.1941673,-0.71667725,0.4405737,-0.008506275,-0.3089912,-0.076821625,0.22176807,0.20051636,-0.008518358,-0.05552849,0.097018346,-0.49908128,0.3479715,0.16357836,-0.038149234,0.5316537,-0.26006737,-0.21571398,-0.5333464,0.02278986,-0.44566363,-0.30514804,0.06884362,0.2611098,0.15828148,0.34800646,-0.04416291,0.31349605,-0.36260456,-0.013548854,0.011850621,-0.09200709,0.28878635,0.25991753,0.48302937,-0.36198044,0.520758,-0.0470743,0.038368646,0.02019213,0.070895016,0.47783908,0.10943138,0.37702852,0.06256393,-0.28356427,0.29103225,0.757211,0.22226553,0.34134555,0.07185777,-0.23836644,0.23184907,0.10071973,0.08954717,-0.029461252,-0.48331696,0.06752331,-0.14439051,0.11849845,0.39833084,0.02944228,0.39642173,-0.21517716,-0.18971276,0.13527273,0.20356536,-0.11345129,-1.0373728,0.21641573,0.10015384,0.80035245,0.34204036,-0.012947276,0.14972101,0.64854324,-0.25520685,0.11712054,0.11245419,-0.15227894,-0.47176307,0.46098775,-0.6768907,0.5794935,-0.08466156,-0.025414703,-0.010443538,-0.22313963,0.22890289,0.7259076,-0.09914307,0.014630163,0.080050714,-0.3466925,-0.037016843,-0.3238311,0.29384956,-0.5621053,0.013061878,0.73911434,0.46978608,0.40718192,-0.06527306,-0.0009146812,-0.06570667,-0.012332167,0.065254435,0.010301128,0.1787304,-0.12511566,-0.64777744,-0.14279453,0.59871536,0.11305463,0.23853958,0.11648774,-0.21632612,0.27714056,-0.109464355,-0.12929139,-0.18416713,-0.52065146,0.08625029,-0.283123,-0.39292118,0.46092027,-0.01299497,0.36369935,0.2015698,-0.018504279,-0.22581993,0.4294782,0.33052805,0.5949893,0.18755439,-0.124678545,-0.4149486,0.15660696,0.16712297,-0.22669761,-0.13128744,-0.18417566,0.15849964,-0.580229,0.258332,-0.15872802,-0.23565663,0.12932119,-0.2127272,0.086907424,0.538142,0.043471847,-0.04440224,0.1178258,-0.005841621,-0.26976985,-0.018562531,-0.1110772,0.3315635,0.15776572,-0.29147413,0.014285852,-0.24773487,-0.14433686,0.16268714,0.07291473,0.3421495,0.36348745,-0.00687434,-0.29439265,-0.032148894,0.14003067,0.50162935,-0.10032749,-0.029888174,-0.33061886,-0.39238006,-0.42411277,0.25926754,-0.11102772,0.09708009,0.12515897,-0.31090546,0.70295566,-0.12621881,0.9425603,0.1688495,-0.23787351,0.20110883,0.45966095,0.0852798,0.09018624,-0.3919351,0.8944801,0.5161325,-0.029441701,-0.21088336,-0.2694808,-0.036611516,0.09226946,-0.2698634,-0.26506332,-0.0072855502,-0.7510253,-0.22625835,0.20910873,0.27193722,0.15273523,-0.027852235,0.11044635,0.17699607,0.11827338,0.23103765,-0.5613738,-0.2681767,0.4541767,0.31775624,-0.118167095,0.15471978,-0.37824297,0.39887497,-0.58184105,-0.015539825,-0.2489398,0.12922154,-0.2635558,-0.25810724,0.32735556,0.24682339,0.41955218,-0.19517139,-0.32851282,-0.3706648,0.3522759,0.06523808,0.19028838,0.3995404,-0.16703613,-0.10166957,0.06011685,0.41395804,1.1349895,-0.29724666,-0.054329198,0.4725361,-0.23541775,-0.41407278,0.23248897,-0.31234768,0.20149885,-0.0047611096,-0.22671266,-0.39873776,0.31331328,0.17745993,0.13691387,0.13783811,-0.51397485,-0.2291181,0.17610474,-0.48510286,-0.2182658,-0.136988,0.1185342,0.63040817,-0.22152467,-0.16765714,0.039007246,0.49007398,-0.2522964,-0.47403008,0.020938788,-0.31221104,0.17866392,0.15979388,-0.22565769,-0.13216452,0.096098505,-0.3660982,0.013034539,0.27555585,-0.45367178,-0.011139842,-0.32983568,0.09662274,0.819456,-0.15470622,0.3087214,-0.55758536,-0.38992795,-0.87861836,-0.39855894,0.47595698,0.15891838,-0.12497292,-0.40650406,-0.12728682,-0.10620352,-0.22407396,-0.02871791,-0.54710144,0.43723482,0.2264713,0.25703952,-0.044351645,-0.7693779,-0.057904363,-0.020966738,-0.32990313,-0.62267405,0.43016073,-0.0263778,0.86771315,0.029174816,-0.021879299,0.42847472,-0.49878556,0.03128038,-0.21946125,-0.1350424,-0.75346375,-0.024991065,237 +391,0.4771988,0.057409976,-0.513218,-0.17004666,-0.5466808,0.31844968,-0.24977626,0.0002293246,0.27228484,-0.48180085,-0.11616104,-0.024909627,-0.20784198,0.17227052,-0.28102052,-0.8110243,0.22898588,0.19032991,-0.59906673,0.53426975,-0.42078882,0.45894504,0.10760451,0.21098468,-0.058738027,0.1308029,0.36148936,-0.013627553,-0.070508376,-0.23626985,-0.21582563,0.12550603,-0.8612162,0.3533912,-0.23935102,-0.32716325,-0.01456417,-0.35963827,-0.3790018,-0.77943414,0.45868367,-0.9383774,0.49935317,0.052453082,-0.29188153,-0.020030996,0.15070985,0.08055399,-0.22641645,0.12318782,0.42204976,-0.391969,-0.05543929,-0.16012219,-0.46036837,-0.503687,-0.6423974,-0.06765218,-0.6487564,-0.08371433,-0.5030718,0.34248587,-0.20792906,-0.16306002,-0.33110598,0.37769803,-0.39063898,0.18187131,0.19694214,-0.24817307,-0.0025652477,-0.5488958,-0.16081722,-0.11105605,0.16505973,0.058289234,-0.12256468,0.40321556,0.21048658,0.6262301,0.26298755,-0.4729628,-0.23704304,-0.18379907,0.35763183,0.4069008,-0.031300224,-0.06734158,-0.2855733,-0.09907324,0.4043577,0.3307738,0.019896507,-0.39464003,0.11981773,-0.014994187,0.048792865,0.6098436,0.58129406,-0.46021292,-0.10059845,0.37630028,0.30987096,0.085130766,-0.25636858,0.03949574,-0.19693495,-0.61770886,-0.3316544,0.36115828,-0.105771124,0.6462498,-0.16662577,-0.0038157362,0.79294425,-0.15771921,-0.007323299,-0.07130139,-0.1367176,0.2407573,-0.20353463,-0.012031828,0.379836,-0.5692903,0.13766837,-0.34354278,0.61008316,0.17368834,-0.8561471,0.43115765,-0.42244953,0.18928035,0.033197887,0.7311114,0.6632042,0.62123626,-0.015586249,1.0082521,-0.66895086,0.071610615,-0.02707285,-0.29416206,-0.07230097,-0.08214157,0.106403604,-0.27283046,0.22196706,-0.20937423,0.12350377,-0.10244333,0.38163903,-0.38002974,-0.21497688,0.06490583,0.62030417,-0.34531942,0.024907658,0.7781046,1.1115555,1.0661924,-0.034502797,1.4532576,0.19419052,-0.03836912,-0.307461,0.10340253,-0.6510749,0.06893228,0.3080613,0.3432643,0.27805287,0.2084522,-0.1410513,0.20881794,-0.2960684,-0.21284369,-0.002913836,0.2580466,-0.04367435,-0.03552438,-0.29030308,0.0053961235,0.2219411,0.23786433,-0.058500998,0.26895648,-0.1993337,0.38126987,0.14182998,0.8943058,-0.006970857,0.25669163,0.105900764,0.37966797,0.25231403,-0.055805642,0.13287067,0.3541675,0.214951,0.07216913,-0.53366953,-0.10601183,-0.56518424,-0.331553,-0.15739529,-0.4549417,-0.21251951,0.021405885,-0.36378232,-0.10608823,0.07183199,-0.3221219,0.46581915,-2.3839421,-0.068466865,-0.2162822,0.43531016,-0.27425593,-0.23779674,-0.30924663,-0.60566175,0.44487414,0.19915275,0.41938004,-0.52048266,0.5081858,0.48244092,-0.45310387,0.013578511,-0.7050523,0.077751085,-0.020051822,0.59661186,-0.021756878,-0.17818229,-0.20372905,0.14734681,0.7697269,0.3703238,0.11777574,0.2901702,0.48191914,-0.11902915,0.5031986,-0.03301167,0.5967015,-0.4317138,-0.056115184,0.5701261,-0.36074144,0.5157784,-0.2400438,0.008726268,0.49898747,-0.52369916,-0.6676383,-0.59577554,-0.4063769,1.2971984,-0.3998095,-0.71605796,0.23422335,-0.024641166,-0.22780003,-0.011426194,0.40913492,0.11618563,0.2875852,-0.57275486,-0.051028576,-0.21980643,0.21484546,-0.106010094,0.28698757,-0.42383584,0.8595332,-0.13214777,0.4673064,0.32628027,0.23614573,-0.10465659,-0.33103207,0.12907043,0.7646493,0.48196068,0.1295758,-0.18631743,-0.12094965,-0.17366898,-0.33500257,-0.051652968,0.8703895,0.5342162,-0.14003761,0.049923994,0.37532124,0.10499253,0.08539523,-0.20575006,-0.41716725,-0.19925103,0.06924434,0.45724586,0.66225994,-0.27827057,0.11081378,-0.004349617,0.16750054,-0.1690074,-0.67507327,0.42220777,0.77132094,-0.09424352,-0.086631246,0.6403017,0.53960174,-0.46793467,0.49588028,-0.56447774,-0.43943834,0.7136182,-0.008566597,-0.63413817,-0.08125075,-0.3131903,0.018065836,-0.5233845,0.40787813,-0.383029,-0.72332275,-0.30656824,-0.24744733,-3.27054,0.18912451,-0.26465192,0.18204378,-0.25872535,-0.14492545,0.33645263,-0.42155474,-0.5093041,0.05972325,0.023780346,0.3634544,-0.23380767,0.2365278,-0.40169206,-0.24780175,-0.204216,0.46889117,0.17645486,0.09932707,-0.19653296,-0.20720267,0.06559594,-0.110347904,-0.36214307,-0.15904991,-0.47818503,-0.3883121,-0.12167937,-0.38122702,-0.07793792,0.6666544,-0.38986084,-0.0029940945,-0.20362023,0.07985466,-0.21212256,0.07328451,0.030878078,0.3834997,-0.022095246,-0.11098759,-0.16520774,-0.2897086,0.53541046,0.2013141,0.2786154,0.51881987,-0.22849618,-0.009557494,0.2783357,0.5484354,-0.0550546,1.0451874,-0.008722501,-0.09965547,0.5189722,-0.034749538,-0.6208887,-1.0229636,-0.18237843,-0.06942695,-0.49330202,-0.34182605,0.008551769,-0.41551003,-0.924746,0.48019883,0.12504175,0.45757008,-0.3018799,0.19400562,0.391572,-0.3698105,0.033513103,-0.10770268,-0.25685725,-0.5249205,-0.49487782,-0.781045,-0.59877735,-0.079857655,0.92745453,-0.16714264,-0.19504678,0.17445648,-0.24003282,0.16195181,0.14573832,0.15207942,0.011949986,0.4385274,0.203196,-0.7033439,0.51817626,-0.031244865,-0.03796918,-0.5610348,0.31326264,0.797595,-0.5497089,0.54328835,0.45650727,0.09633635,0.067122445,-0.8303658,-0.25734365,-0.066792265,-0.19429061,0.6412181,0.2817339,-0.7664444,0.34072012,0.14197877,-0.3011724,-0.6179816,0.61614764,-0.06370602,-0.1220699,0.04857025,0.43733844,0.018957058,-0.053694624,0.14488657,0.3275055,-0.53581,0.46747527,0.27792972,0.0013630049,0.35223442,-0.09989228,-0.54311156,-0.80507183,-0.03293717,-0.6320739,-0.31471178,0.22537287,-0.19409569,-0.1619626,0.24544814,0.15065685,0.62548393,-0.107729815,0.34201744,-0.0702327,-0.37271732,0.5730514,0.5385123,0.51380694,-0.67450583,0.7176698,0.12064042,-0.079740725,0.19834973,0.28841615,0.45570898,0.09557944,0.4970054,-0.21135947,0.13754568,-0.072261795,0.5878593,0.24073415,0.3534047,0.187608,-0.13428964,0.55818427,0.13590169,0.092157654,-0.26271594,-0.6257466,-0.04930591,-0.027817076,0.044415466,0.33067614,0.08696524,0.35894093,-0.054191343,0.06244751,-0.032199595,0.07968388,0.04012179,-1.1590881,0.27561942,0.14212592,0.77520037,0.49165192,0.13351579,-0.10293991,0.42825374,-0.27611065,0.02231637,0.55829,-0.042488594,-0.35926118,0.47942734,-0.45189294,0.3535997,-0.16276638,0.07402895,0.2744585,0.26692817,0.491632,0.89269394,-0.17236371,-0.0040815896,-0.10942463,-0.2318087,0.2317063,-0.23304081,0.17797266,-0.40884024,-0.4442224,0.6074656,0.5309048,0.4102895,-0.40667185,-0.10918387,-0.0027712542,-0.29030094,0.096011095,-0.13944961,-0.12983519,-0.15632914,-0.37791532,-0.08479268,0.59254014,-0.1804115,-0.021664288,0.009074762,-0.19103995,0.30727416,0.053224362,0.057764,-0.07262255,-0.92436224,-0.010131938,-0.299422,-0.55274755,0.3631586,-0.23304775,0.2044331,0.22560059,-0.035084628,-0.18460667,0.15734586,0.038151402,0.6170177,0.07568358,-0.05219839,-0.40189594,0.15466918,0.18345891,-0.31441107,0.25942963,-0.20086323,0.12987062,-0.63035107,0.4086493,-0.42601654,-0.182402,-0.029898789,-0.101761356,-0.15740803,0.50448054,-0.019992527,-0.05373105,0.28699794,-0.013031743,-0.33790097,-0.092453055,-0.27108273,0.105242886,-0.13561274,0.07334102,-0.042126488,-0.119306765,-0.10298227,0.18583734,0.20635895,0.0011607079,0.11904423,-0.20626627,-0.49540207,0.122515365,-0.04866637,0.5768299,0.06787628,-0.012030118,-0.022960778,-0.4360375,-0.38563973,0.54952604,-0.15909645,0.1507849,0.13633355,-0.3419614,0.8361686,0.2544199,1.1621116,-0.05299226,-0.46486935,0.00016220871,0.7497603,0.010116888,0.02364253,-0.5127886,1.0183977,0.56398016,-0.11856733,0.033028103,-0.47322825,0.0059196097,0.10760429,-0.41508886,-0.20302422,-0.14979266,-0.5182098,0.013491397,-0.0136087835,0.31144336,0.049038988,-0.10786266,-0.22180223,0.24976644,0.37628174,0.43694258,-0.6052407,-0.41303104,0.28312764,0.1586993,-0.08209423,0.19113758,-0.21554255,0.3616871,-0.68308914,0.04717343,-0.32163188,0.0152969705,-0.2944173,-0.2994461,0.21992268,-0.07283943,0.35748848,-0.41987947,-0.3338017,-0.2308891,0.2838972,0.33425647,0.33832052,0.86598,-0.15971048,-0.121548675,0.09245709,0.50698704,1.1938607,-0.055195432,0.017475052,0.29076672,-0.534112,-0.66150874,-0.0015659715,-0.6838935,0.07430845,-0.077739574,-0.4418942,-0.1756537,0.14550614,-0.0019584554,-0.20375372,0.19554766,-0.8955552,-0.16087179,0.15775323,-0.22047794,-0.32720068,-0.16949244,0.45336244,0.73252106,-0.29302984,-0.3480382,0.03574707,0.2245157,-0.2341797,-0.84395367,0.18221149,-0.26513085,0.28113386,-0.011945673,-0.32767716,0.10748954,0.2228761,-0.5473112,0.04791295,0.27733913,-0.37235007,-0.040025912,-0.26616672,0.0012234321,0.8310942,0.04105616,0.050453775,-0.432697,-0.5714796,-0.87693185,-0.364734,-0.06688982,0.2552916,0.049883217,-0.3244396,-0.2019918,-0.28771737,0.12189441,-0.0746462,-0.4450372,0.40708664,0.16994448,0.532511,-0.18597879,-0.90277004,0.09018815,0.22379425,-0.02851565,-0.37959513,0.4843572,-0.24392734,0.67013705,0.09503389,-0.058160853,-0.05490303,-0.89951193,0.24316107,-0.34841177,-0.041214734,-0.56173855,0.16271567,240 +392,0.34012136,-0.24788068,-0.5807623,-0.15011083,-0.20274098,0.02163153,-0.113279864,0.60572845,0.2882323,-0.24506597,-0.17581923,-0.2179843,0.110098004,0.35290113,-0.07012465,-0.35857543,-0.049844943,0.17637551,-0.5389082,0.4518211,-0.3011809,0.07122416,-0.29824343,0.5406646,0.47172683,0.4254089,-0.11627312,-0.035607625,-0.11924226,-0.011647516,-0.054430038,0.42675242,-0.28446537,0.07492246,-0.18685825,-0.19124565,-0.11667906,-0.6041325,-0.39181426,-0.63982815,0.300585,-0.79976785,0.53958595,-0.027903596,-0.20901065,0.31682253,0.19152042,0.42093936,-0.33080822,-0.27759576,0.20867835,0.063448705,-0.046466358,-0.1350691,-0.17095837,-0.23212467,-0.41851196,-0.054967914,-0.33446297,-0.14707455,-0.31087545,0.100236535,-0.26918676,-0.118378885,-0.031228364,0.47673914,-0.46586603,0.19788066,0.18886884,-0.09267944,0.24318811,-0.48785958,-0.19482109,-0.022035265,0.40287635,-0.22900367,-0.25809094,0.1768966,0.28247496,0.17722073,-0.16545656,0.067818634,-0.3194591,-0.0003985848,0.29057625,0.53308874,0.04682644,-0.48949426,-0.0965228,0.095313564,0.045551386,0.29791507,0.38439035,-0.32121637,-0.20603159,0.04891636,-0.1222653,0.42460498,0.34165055,-0.1516706,-0.12562563,0.38104683,0.54015094,0.39619866,-0.22214855,-0.0037629518,-0.039411426,-0.46873686,-0.07290653,-0.18065336,-0.22097516,0.5206779,-0.09205818,0.24620886,0.6020754,-0.10495627,-0.10384285,0.14627388,0.08203517,-0.2891911,-0.27900094,-0.20560081,0.08096974,-0.33219337,0.23367272,0.05795526,0.5273047,0.16356874,-0.71849304,0.28660932,-0.5024889,0.16733989,-0.21826437,0.27429724,0.70213455,0.31732535,0.44509622,0.6641516,-0.38713166,0.10807699,0.055264957,-0.5950245,0.12820688,-0.18965176,-0.12201027,-0.6399105,-0.0074837506,-0.06416044,-0.2124583,0.122252926,0.2250975,-0.4887795,-0.023806939,0.18253168,0.7604969,-0.29216403,-0.1372863,0.7653325,1.0077229,0.8686368,0.00992386,0.8683316,0.07010601,-0.14542028,0.3554631,-0.3146045,-0.7201718,0.33588377,0.38652593,-0.3759214,0.19729602,-0.0126792705,0.11230375,0.448706,-0.2687742,0.14426513,-0.043643337,0.07554014,0.21489368,-0.1949068,-0.43998235,-0.18024953,-0.14192852,0.007947455,0.09929645,0.062357213,-0.22741196,0.39369062,-0.06758902,1.8280611,0.12127478,-0.04239797,-0.008194291,0.57903475,0.25996026,-0.23251788,-0.24383582,0.5308499,0.29431692,0.10065571,-0.5952138,0.18751185,-0.12360894,-0.33768377,-0.11881166,-0.5377441,-0.16547167,0.02958494,-0.39394793,-0.03707799,-0.2502787,-0.18816127,0.5297497,-3.1382573,-0.16278636,-0.06742758,0.3504263,-0.121297814,-0.3523204,-0.0013708727,-0.36275056,0.27722064,0.29787365,0.54318196,-0.57366836,0.3014996,0.38359505,-0.6264553,-0.19224909,-0.50714844,-0.096864514,0.06698392,0.32633194,-0.0579996,0.034401182,0.19192539,0.18672328,0.32265553,0.0065121567,0.15248777,0.27529466,0.42603287,0.06692913,0.62152445,-0.13368337,0.5723451,0.029189494,-0.20711078,0.14283893,-0.15073168,0.39529935,-0.01707782,0.10733472,0.5058636,-0.34917566,-0.9768955,-0.5336518,0.03155407,1.217275,-0.25346115,-0.2176139,0.27460855,-0.57597405,-0.24928999,-0.01487823,0.47482434,-0.004232645,-0.1865441,-0.8121401,0.015833136,-0.006411643,-0.09590692,-0.03036818,-0.18809524,-0.39430144,0.60900164,0.02346802,0.47660303,0.29181856,0.09829893,-0.31705135,-0.36567715,0.075534925,0.6447175,0.27327126,0.07116423,-0.12478387,-0.21276008,-0.44246393,-0.032572635,0.14151004,0.5252759,0.41746706,-0.068156436,0.28368825,0.14272676,0.00068776525,0.07341989,-0.22961368,-0.21369968,-0.10569726,0.057264138,0.41793898,0.664131,-0.19725645,0.64231455,0.0062807268,0.20256877,-0.060251202,-0.46844286,0.43136317,1.101836,-0.18196972,-0.42703348,0.57305497,0.4278688,-0.25510284,0.299754,-0.38102317,-0.013413838,0.52142155,-0.25980404,-0.33719444,0.29105848,-0.19991449,0.121773496,-0.94617355,0.008086113,-0.17122732,-0.45746097,-0.33433944,-0.05400181,-3.229176,0.12981652,-0.20766568,-0.30919668,-0.11925639,-0.2624621,0.05823209,-0.5907842,-0.661396,0.22169693,-0.024164204,0.72697985,-0.21079303,0.018064419,-0.17227213,-0.28406015,-0.31303683,0.09104432,-0.03383554,0.5871582,-0.052282695,-0.4671186,-0.1955379,-0.069988325,-0.40772465,0.03112164,-0.46565285,-0.3031549,-0.07061783,-0.5019454,-0.2046882,0.5744219,-0.29346514,-0.025437668,-0.10804715,0.04023901,-0.06161517,0.31524616,0.10889696,0.05366193,0.107108615,0.03173082,0.16594055,-0.24376003,0.26378557,-0.029165579,0.32271287,0.16996126,0.09946326,0.31545162,0.4444065,0.6538249,-0.19169988,0.7677126,0.5358611,-0.11284311,0.22056873,-0.37754244,-0.2712863,-0.396995,-0.20133962,-0.061846707,-0.41115445,-0.5170972,-0.17452683,-0.4130488,-0.6878467,0.4709997,0.0950794,0.2913279,0.019404858,0.08942624,0.615878,-0.056133755,0.029864801,-0.03626058,-0.18828546,-0.6767588,-0.14791934,-0.50151974,-0.3942046,0.21643445,0.8228626,-0.35926566,0.023547124,-0.032726724,-0.4226363,0.079030566,0.21507014,-0.08480541,0.25683454,0.349719,-0.16487324,-0.5779833,0.28834534,-0.09877161,-0.15679899,-0.5945479,0.1476394,0.36460042,-0.447509,0.7001074,0.16496055,-0.021693144,-0.20434104,-0.3838003,-0.19840182,-0.0434477,-0.17000282,0.4917465,0.3525655,-0.7667991,0.2728046,0.3679873,-0.18798468,-0.7077934,0.630578,-0.17163883,-0.11128533,-0.15293802,0.15930036,0.20054163,0.043186463,-0.30595535,0.21922107,-0.28291515,0.19388452,0.24198906,-0.12032141,0.18605891,-0.11958146,0.072529964,-0.67484254,0.031043371,-0.46168038,-0.25776514,0.3399906,0.15876998,0.22734849,-0.014035745,0.18212621,0.24062207,-0.3621908,0.014224352,-0.062015202,-0.22399668,0.19225256,0.46051905,0.4561147,-0.562875,0.43948105,0.007977094,-0.14415511,0.2188013,0.05783101,0.32198662,0.11807851,0.38575497,0.2083917,-0.26906678,0.22472098,0.6666259,0.15884869,0.44781065,0.030374119,-0.046607226,-0.033527654,0.02725151,0.3000996,-0.014480655,-0.646134,0.13491777,-0.27651104,0.23104985,0.5101475,0.23948438,0.12926647,-0.024316134,-0.5235151,0.069735356,0.2282751,0.11910323,-1.1553541,0.36570325,0.24294814,0.88402075,0.40013131,-0.027953668,-0.050515104,0.64652854,-0.12143544,0.11313528,0.36589774,-0.01876228,-0.6462018,0.44875103,-0.81342596,0.5004899,-0.0017771934,-0.13282396,0.104658954,-0.00026064258,0.3985842,0.6701325,-0.23972288,0.059107516,0.18876825,-0.327384,0.0848139,-0.41905943,-0.14569065,-0.6750924,-0.15311925,0.48819107,0.64374316,0.26158836,-0.15104954,0.045176268,0.049875677,-0.16280535,0.054106764,0.18124747,0.21152811,-0.03553697,-0.7452056,-0.1909789,0.39171743,-0.09926277,0.23295961,-0.14509888,-0.18601653,0.24831179,-0.1873678,0.008236312,-0.0038118276,-0.6833743,-0.00944254,-0.21380655,-0.59800833,0.4771783,0.12975347,0.23472282,0.26271605,0.04078088,-0.11586899,0.5982515,-0.054861076,0.93172705,-0.14028218,-0.029371561,-0.46650887,0.219564,0.2449771,-0.098873325,-0.19012323,-0.45544645,-0.007103409,-0.49805933,0.49554005,0.18185885,-0.44266754,-0.18136522,-0.012794209,0.103179336,0.6219379,-0.16783014,-0.11938759,-0.22616564,-0.1925412,-0.29575577,-0.20308091,-0.11985513,0.22592787,0.16054425,-0.0719374,-0.21328269,-0.06733875,-0.025092691,0.4410601,-0.14558318,0.59082454,0.36848417,0.05656141,-0.24822254,-0.3676307,0.35172155,0.48517624,-0.04126944,-0.089210905,-0.3200768,-0.44453487,-0.42736492,0.077874474,-0.12704921,0.4110064,0.16080867,-0.10577794,0.5178593,-0.06686036,1.1545147,-0.014608179,-0.34825888,0.36108536,0.5414807,0.08920509,-0.14171773,-0.3013639,0.7405506,0.37341648,-0.020804556,-0.039253063,-0.4395652,-0.06364318,0.15650742,-0.13565327,-0.05005438,0.014181143,-0.49230447,-0.24258253,0.16355266,0.12231525,0.47318083,-0.13965662,0.17215006,0.23869082,-0.08175266,0.1847275,-0.25194043,-0.47015718,0.18172558,0.32147995,-0.004190462,-0.013969561,-0.6132129,0.46282983,-0.28117582,-0.012680439,-0.2306448,0.33024067,-0.266967,-0.29827574,0.17220435,-0.0150074875,0.2638465,-0.25980988,-0.35161194,-0.36331585,0.5695493,0.1107846,0.1016976,0.3739886,-0.26468882,0.10910922,0.026429256,0.45028016,0.7629114,-0.086507656,-0.061974756,0.4589095,-0.32039595,-0.62305194,0.38032183,-0.36377963,0.38859582,0.13146403,-0.05951127,-0.66617835,0.25239462,0.1063151,0.03549879,-0.15653583,-0.48061314,-0.2589623,0.3676127,-0.22212568,-0.07859165,-0.30382282,-0.13377053,0.46916264,-0.26218352,-0.37458256,0.12505879,0.01882672,-0.045137357,-0.36997774,0.011812491,-0.3046077,0.32616162,-0.09598919,-0.44567588,-0.26327303,0.0012343952,-0.31111592,0.34758696,0.038345367,-0.27563885,0.21386692,-0.29812333,-0.10698081,1.0548147,-0.32673857,0.17065795,-0.407887,-0.45123625,-0.71889085,-0.2744706,0.38762093,-0.09589753,0.009453739,-0.6941067,0.08670758,-0.18098845,-0.19469324,-0.21804474,-0.36797696,0.4178176,0.031094356,0.40372738,-0.020794561,-0.83492535,0.27255994,0.06526792,-0.26306266,-0.7419581,0.58509386,-0.1120646,0.7531087,0.044563286,0.21209107,0.28373763,-0.29821077,-0.15743275,-0.2166167,-0.13886514,-0.5168198,0.034883894,242 +393,0.44929823,0.15226878,-0.6092744,-0.23463944,-0.24626052,0.11130492,-0.33874625,-0.0013192573,0.26659283,-0.16861548,-0.0019197783,-0.083448865,0.036023784,0.36583108,-0.15328784,-0.91969997,0.09507297,0.00578713,-0.631512,0.41908625,-0.57172924,0.38893047,0.14018477,0.5090371,-0.07040372,0.36414284,0.5163992,-0.13463709,0.00857059,0.036536045,-0.056024797,0.3567216,-0.8254493,0.18552111,-0.06432338,-0.33663613,0.06386841,-0.1351683,-0.16845492,-0.6364358,0.31221,-0.68610185,0.6527054,0.19853337,-0.3139508,0.05634004,0.1361847,0.044016127,-0.3251057,0.25332406,0.16646346,-0.35330275,0.004739344,-0.2201741,-0.28160915,-0.53371227,-0.6659849,0.05254644,-0.819326,-0.19354716,-0.42718744,0.22099791,-0.3204703,-0.10005962,-0.109681405,0.50173604,-0.44772696,-0.04149887,0.30946356,-0.30815873,0.17851327,-0.32397008,-0.21780892,-0.05185181,0.35788065,-0.10457189,-0.1095405,0.14898719,0.29432368,0.6714507,0.24910153,-0.3547437,-0.36898288,-0.1974542,0.08577143,0.3576688,-0.1062463,-0.31088203,-0.17877875,-0.12758043,-0.08000743,0.27965793,-0.032434523,-0.29330632,0.07825883,0.13903551,-0.072494626,0.4833097,0.41521546,-0.6170527,-0.43382737,0.38156694,0.3461102,0.0013994405,-0.12540235,0.27028677,0.029727867,-0.56258446,-0.3471861,0.17686746,-0.017068012,0.3941224,-0.07576784,0.27339825,0.80818737,-0.13066623,-0.11187233,-0.23148572,-0.19074823,-0.010913581,-0.1408724,0.059113614,0.117274985,-0.4075982,0.05629759,-0.24049255,0.6774303,0.034321286,-0.7638182,0.3704061,-0.5523791,0.08618056,-0.0973187,0.7133892,0.8582579,0.14144439,0.20313899,0.85107374,-0.6500498,0.07883273,0.041493453,-0.5537465,0.2711095,-0.09061832,0.08144965,-0.540155,-0.061989743,0.0881662,0.13911417,-0.016378565,0.37107942,-0.39798144,-0.07189401,0.10498231,0.7376407,-0.4474505,-0.045535725,0.6725322,1.2220763,0.8899299,0.027249923,1.2978185,0.4070591,-0.07732866,0.05180938,-0.32447734,-0.49510616,0.18377241,0.38967758,0.12832592,0.40743902,-0.05574814,0.20371448,0.3957402,-0.21397819,-0.02516993,0.00033267055,0.32300264,-0.036738537,-0.22450103,-0.34302112,-0.087467276,0.19550203,0.04515654,0.13237436,0.36029458,-0.030534282,0.32838818,-0.09909749,1.4829006,0.079976395,0.16358984,-0.028241022,0.4127337,0.33024535,-0.14134082,-0.16320576,0.31500146,0.24225369,0.042358637,-0.5476282,0.068679415,-0.33935425,-0.38215923,-0.26352787,-0.47492805,0.030505437,-0.035080504,-0.40819773,0.050017454,0.0477529,-0.32376978,0.28398237,-2.6839504,-0.14902468,-0.06966904,0.26030287,-0.0625846,-0.14578898,-0.31873888,-0.41132325,0.34550238,0.53716034,0.28614965,-0.48871532,0.41469002,0.3127394,-0.21368305,-0.25570422,-0.53752476,0.053595968,-0.188781,0.48182866,-0.16670561,-0.23985054,-0.26933935,0.62553734,0.6745891,0.10668065,0.0038144547,0.13276868,0.5265194,0.06592591,0.54029167,0.16801198,0.49796054,-0.2139745,-0.24476291,0.40466002,-0.35398155,0.29068777,-0.028745225,0.048235092,0.3610951,-0.55041665,-1.1101781,-0.59398013,-0.2879811,1.0832397,-0.30582553,-0.3166258,0.33194393,-0.11982674,-0.1863713,0.19696757,0.58298177,-0.18126802,0.2309072,-0.6656465,0.21316339,-0.08735033,0.06270016,-0.10105332,0.2287868,-0.3703056,0.6700657,-0.18660869,0.37992454,0.29638883,0.2145625,-0.010755981,-0.5213774,0.23540011,0.8092295,0.15057448,0.12879808,-0.16552065,-0.16923727,-0.148474,-0.012659669,0.018809142,0.5633554,0.6946083,-0.078976914,0.27762964,0.20353504,-0.14741312,-0.051783178,-0.14792612,-0.17339645,0.112800956,0.050244927,0.5012504,0.6040395,-0.30184177,0.1811663,0.044764515,0.22186624,-0.123555236,-0.48660952,0.6899768,0.6796734,-0.14816399,-0.19440505,0.6459064,0.38792852,-0.33964163,0.50701076,-0.5907229,-0.33000275,0.5486995,-0.12249769,-0.25383255,0.045334242,-0.39534357,0.013183168,-1.04645,0.110877596,0.0041846717,-0.4044784,-0.3334108,-0.30364987,-4.608096,0.21086647,-0.24917164,0.094566904,-0.12735079,-0.041755684,0.5146249,-0.5277856,-0.540044,-0.034003902,0.0064798025,0.45637614,-0.16326173,0.24839714,-0.22085063,-0.22271241,-0.2618148,0.42482376,0.17660622,0.18877193,0.20910004,-0.40357035,0.12679745,-0.2908757,-0.44469616,-0.034545176,-0.3684965,-0.4448556,-0.29700845,-0.4498602,-0.27131465,0.74572134,-0.41990894,-0.061375253,-0.30951485,0.048463114,-0.10799725,0.411901,0.24901561,0.1997038,0.117328025,0.054652877,-0.329073,-0.3505554,0.21387537,0.08523049,0.31183153,0.42085767,-0.031858154,0.14906883,0.45243284,0.42575482,-0.02828446,0.5518939,0.33169046,0.1260264,0.2864508,-0.3937271,-0.3552402,-0.8630582,-0.47898623,-0.43561295,-0.49942327,-0.54009706,-0.114503875,-0.47402143,-0.7749838,0.5145007,0.015474588,0.20222946,-0.19771075,0.30983925,0.29587144,-0.18090013,-0.015851531,-0.03614837,-0.2483726,-0.6036752,-0.17503284,-0.59662056,-0.70935196,0.12281777,0.8180912,-0.35933563,-0.07996477,0.098227754,-0.15561387,0.06535885,0.09618725,0.3132639,0.2348455,0.5519134,-0.016927829,-0.80821544,0.4974114,-0.2520902,-0.09500254,-0.7257374,-0.13042837,0.55162704,-0.5955431,0.7401468,0.3012793,0.26490575,0.36306673,-0.5809461,-0.34623465,0.13881148,-0.14417507,0.6451822,0.10230213,-0.8403582,0.51972544,0.024934156,-0.18670838,-0.6072611,0.41726544,0.065260634,-0.47500652,0.2444414,0.32997447,-0.0058372617,-0.08092735,-0.21448787,0.30859876,-0.49688897,0.28585705,0.27247736,-0.07964171,0.5499934,-0.1326446,-0.3447277,-0.64014596,-0.27470067,-0.5267045,-0.31984276,-0.057758626,0.073727146,-0.010111575,0.08218775,-0.13612422,0.5434992,-0.16120175,0.26469117,-0.08314767,-0.32079917,0.40967813,0.5718128,0.28187758,-0.57549506,0.58143795,0.061930895,-0.062730476,-0.10472944,0.04166066,0.5213374,0.1473464,0.37163833,-0.16832812,-0.065674506,0.13893095,0.6188361,0.019211175,0.3126182,0.21286297,-0.1955441,0.597929,0.09019862,-0.03158078,-0.18881014,-0.22343493,0.019640744,-0.08934088,0.16234112,0.47124004,0.19036147,0.34656888,-0.08315633,-0.027765453,0.421016,0.22302477,-0.06496542,-0.8296515,0.3458708,0.40459043,0.51679486,0.6701585,-0.14846434,-0.0031923226,0.3889769,-0.2885804,0.0848127,0.381063,0.09736774,-0.514332,0.69157875,-0.4608729,0.47028497,-0.26239175,-0.15410623,-0.0010916889,0.21712515,0.25456157,1.0194834,-0.10651224,0.13294856,-0.00501209,-0.06566316,0.0040302053,-0.23475412,0.11535058,-0.41312906,-0.22566226,0.5652665,0.43086162,0.2766683,-0.32574376,-0.16664922,0.10876411,-0.1451094,0.051660873,-0.28536898,-0.100337625,-0.12878464,-0.56249946,-0.4091484,0.58012474,0.10006585,-0.044932436,-0.004547713,-0.36991403,0.19652447,-0.14393303,-0.023135824,-0.054544806,-0.59290445,-0.023364183,-0.25770602,-0.4585896,0.57859033,-0.6070146,0.4673462,0.124745265,0.15368648,-0.281756,0.14521037,-0.016836947,0.63092965,0.19446482,-0.09268479,-0.30490008,0.094621934,0.38517863,-0.32347518,-0.32880226,-0.5181414,0.16724615,-0.47215882,0.37955275,-0.18143871,-0.30463955,-0.2581406,-0.059271097,0.14029603,0.37631002,-0.17432931,-0.23150036,0.27851692,-0.062724516,-0.23248914,-0.116108045,-0.38543049,0.3755197,-0.21804066,-0.1152823,0.054838955,-0.010902143,-0.16886269,0.2971137,0.17569593,0.11185889,0.119157776,-0.09036369,-0.24324979,0.013493257,0.085030064,0.36672834,0.2584001,0.03207926,-0.25801712,-0.43996564,-0.27262452,0.16465522,-0.1524122,-0.07343062,0.12724887,-0.3653229,0.79612416,0.40602618,1.1857126,0.21414408,-0.24779122,0.16848862,0.5085958,0.1214024,0.10740716,-0.44270334,1.0000342,0.61465925,-0.18986042,-0.2256097,-0.21967745,-0.24684656,0.19404276,-0.2438917,-0.221102,-0.2746352,-0.6678151,-0.1546595,0.08062941,0.26973823,0.12509559,-0.06155015,-0.11810893,-0.069701284,0.19005878,0.45325065,-0.5274993,-0.14946099,0.24786536,0.24622747,-0.02726832,0.3259091,-0.20464318,0.5208564,-0.71241134,0.08523994,-0.54109293,0.13597174,-0.037571337,-0.39134675,0.25947005,-0.017576694,0.31184217,-0.14590092,-0.25681552,-0.2955326,0.48228365,0.30698135,0.24004222,0.90543693,-0.2982925,0.0217496,0.044281416,0.4443372,1.4596522,-0.10474463,-0.03552883,0.31544897,-0.13284317,-0.61024284,0.0038602352,-0.53564614,0.07890359,-0.35028014,-0.5691513,-0.3282265,0.071597755,-0.0050764787,-0.01140772,0.04735658,-0.51191163,-0.20654644,0.34406748,-0.1278418,-0.21779254,-0.26208895,0.18324468,0.7806116,-0.35309696,-0.29763597,0.087109976,0.24996522,-0.12919952,-0.60955137,0.029112441,-0.20010276,0.34365997,0.29477707,-0.25283942,0.0082991505,0.38987756,-0.42877957,0.24367365,0.46421573,-0.23522131,0.04583209,-0.3375623,-0.20735039,1.0711678,0.07307907,0.15033154,-0.5304089,-0.41968894,-1.0247271,-0.33312038,0.3521828,0.16059735,0.018799739,-0.35834318,0.022506015,-0.037776332,0.065553494,0.053089935,-0.6504839,0.28995678,0.0044269795,0.7099158,0.015506034,-0.9667669,-0.061160307,0.17669477,-0.28747562,-0.5543984,0.5700116,-0.20823598,0.63018304,0.075027406,0.047184467,0.3177711,-0.68252945,0.3009581,-0.44665828,-0.049296122,-0.71859324,0.0060167485,245 +394,0.3823752,-0.28906205,-0.38273105,-0.21697955,-0.18428369,0.02097891,-0.082485996,0.5004456,0.17090525,-0.3391578,-0.28663746,-0.20970301,-0.005201906,0.26188672,-0.16692266,-0.5872744,-0.1498789,0.06336079,-0.53632104,0.48737663,-0.26966462,0.042921726,0.016985932,0.3393161,0.2107714,0.28054744,0.10084204,-0.16721602,0.059182536,-0.1493087,-0.18878521,0.18730521,-0.53891236,0.16504881,-0.18278904,-0.19226639,-0.07784976,-0.56303394,-0.49299422,-0.7193508,0.28020185,-1.044752,0.3591967,0.11077996,-0.22540298,0.39363316,0.0899182,0.08289104,-0.3475017,-0.17371528,0.10467006,-0.08865718,-0.08123515,-0.07432393,-0.15348133,-0.36884648,-0.50712657,-0.09344809,-0.26998353,-0.3393676,-0.4127842,0.03697291,-0.36579865,-0.012743496,-0.060361203,0.6672458,-0.4285417,0.26944372,0.34093237,-0.2258474,0.45434815,-0.5454618,-0.1916337,-0.11298137,0.20371078,-0.07463973,-0.26974347,0.32767597,0.3783261,0.22925653,-0.07657202,-0.075665064,-0.081871286,-0.14996217,0.20733023,0.32427686,-0.23565507,-0.50805056,-0.02625875,0.03584316,-0.011483103,0.33285618,0.10223051,-0.44760534,-0.109031074,0.16754878,-0.20656754,0.35927838,0.47720876,-0.14036603,-0.14719999,0.30869743,0.42727566,0.24039996,-0.1724286,-0.13138701,0.028694957,-0.5888072,-0.14804555,-0.010949535,-0.29578686,0.6945267,-0.18783535,0.1999538,0.69992584,-0.1259159,0.015509395,0.018383944,-0.0137311565,-0.08364003,-0.37766987,-0.19491185,0.2761897,-0.3266723,0.28367284,-0.14591686,0.7218874,0.1518306,-0.6223008,0.25481725,-0.6110306,0.19809742,-0.24104269,0.4717269,0.5835575,0.3746726,0.38336053,0.6102229,-0.45940158,-0.025481572,-0.044221316,-0.4083071,0.122419834,-0.12999377,-0.13482065,-0.3969343,-0.09342681,0.023182977,-0.07737541,0.077038504,0.25935242,-0.52260405,-0.09514356,0.058354262,0.89515585,-0.2355417,-0.014358806,0.6787785,0.96181446,0.7751683,0.10052749,1.0945668,0.20991543,-0.22593461,0.33774573,-0.0098464405,-0.79340285,0.3528784,0.43866137,-0.41686434,0.13128623,0.01165664,-0.16705881,0.35452023,-0.40703678,0.065165706,-0.25727913,0.16890384,0.14508723,-0.18123342,-0.3200114,-0.10300021,-0.09446224,0.081288524,-0.07014989,0.17688437,-0.090579435,0.34711477,0.1041498,1.4094579,0.034182392,0.12050433,0.13236785,0.35661635,0.14688492,-0.010599797,-0.09214705,0.41956377,0.45149747,0.29348516,-0.6512037,0.23516104,-0.1985556,-0.3754788,-0.1309074,-0.4385829,0.03591158,0.109711595,-0.41389403,-0.116918705,-0.21457818,-0.17060277,0.4383006,-2.752446,-0.18439968,-0.23208888,0.35780558,-0.3100811,-0.16544472,-0.014192545,-0.46070793,0.47164813,0.27942434,0.49938646,-0.5678426,0.19674203,0.5151497,-0.52601117,-0.2026582,-0.6435032,-0.11406927,0.022255447,0.4241014,0.024087003,0.05570027,0.1132579,0.04425054,0.46351233,0.25525108,0.18715858,0.3780399,0.41578075,-0.065031506,0.5316468,-0.084253855,0.50281084,-0.21048202,-0.1243056,0.20753588,-0.11601695,0.26143774,-0.10310757,0.12559734,0.4814073,-0.3903888,-0.834064,-0.74231726,-0.44240305,1.3138993,-0.40379348,-0.51737946,0.41202405,-0.37406236,-0.115997456,-0.079542585,0.5355078,-0.055740833,0.08582616,-0.7920231,0.21992247,-0.07100514,0.107142285,-0.026238369,-0.2190183,-0.33164304,0.7160505,-0.058285534,0.5148547,0.38302907,0.07440637,-0.13045172,-0.48988625,0.057588894,0.789392,0.35176983,0.083156385,-0.096237615,-0.19283448,-0.31214204,-0.050626844,0.083820425,0.68501186,0.64585954,-0.0546509,0.16470459,0.2421417,0.056759674,0.07043143,-0.15430246,-0.24206784,-0.1720924,-0.09084775,0.470417,0.6025572,-0.22079194,0.3370983,-0.04123239,0.39394334,0.07370038,-0.38679838,0.50747913,1.2417486,-0.16610436,-0.23160832,0.63076407,0.43259293,-0.30745372,0.365693,-0.42246395,-0.12998834,0.6222008,-0.1853274,-0.62704813,0.2265289,-0.25080273,0.04313138,-0.7360201,0.19813219,-0.25265914,-0.522015,-0.3274071,-0.1194775,-3.302566,0.25672325,-0.39300054,-0.24795938,-0.28516302,-0.21278763,0.28651693,-0.59128624,-0.5571887,0.2524484,0.0939881,0.6752857,-0.07313198,0.09371281,-0.29057187,-0.105481945,-0.18312761,0.032046188,0.1505512,0.27078423,-0.1458257,-0.4627277,-0.14814295,-0.036195405,-0.50074214,0.09323173,-0.48104984,-0.37089396,-0.11292515,-0.44342688,-0.280915,0.67192715,-0.26570597,0.07089958,-0.14949797,0.048167624,-0.18763338,0.15486977,0.08332855,0.38652703,-0.0730592,0.04162691,-0.014730181,-0.1775494,0.34597328,0.059472658,0.23436876,0.16927174,-0.19624674,0.23197949,0.3365941,0.5876481,-0.07110681,0.8123869,0.5210575,0.014962156,0.27083555,-0.250672,-0.3343869,-0.63329834,-0.2774953,0.012414089,-0.2910362,-0.45254773,-0.0590501,-0.28459758,-0.78437245,0.50049216,0.018791327,0.21005233,0.007650954,0.09627773,0.59192413,-0.23592053,-0.031356085,-0.018282788,-0.17194462,-0.7408833,-0.08493564,-0.6005029,-0.2999943,0.07390697,0.7452983,-0.2605428,-0.08129287,-0.11084386,-0.31163162,0.04119864,0.15178713,-0.13198818,0.2643382,0.4793419,-0.11681318,-0.7438475,0.60546625,-0.08603991,-0.31219155,-0.648932,0.33034304,0.5840586,-0.6400328,0.67873544,0.26537725,-0.11821975,-0.32430387,-0.47380498,-0.3036368,-0.18753645,-0.21336429,0.40742606,0.23435865,-0.7871099,0.32488337,0.31308362,-0.0766045,-0.623807,0.70119494,-0.11280143,-0.39008322,0.07713085,0.33525434,0.06201583,-0.010353691,0.033908688,0.2453128,-0.27834806,0.17657842,0.1766857,-0.046657745,0.17839123,-0.048155423,0.16570345,-0.8112563,0.15874584,-0.57225704,-0.19214042,0.29795432,0.111892216,0.025293797,0.13341144,-0.10289548,0.36929482,-0.12091863,0.21476136,-0.17573118,-0.2933889,0.32141495,0.4477896,0.4092998,-0.47125143,0.6534468,0.01551181,-0.09458374,0.1225276,0.22176202,0.3922051,0.070442036,0.39093348,-0.16818592,-0.21867938,0.24704064,0.7050334,0.16342959,0.51920974,0.07170508,0.10192283,0.33078447,0.040449347,0.23441233,-0.08988334,-0.6800624,0.022626886,-0.26413172,0.0765911,0.45293716,0.19723955,0.23453283,-0.11369131,-0.325716,-0.027297199,0.18137467,0.26719853,-1.0397272,0.4291613,0.27541628,0.84404534,0.46672413,-0.06759079,-0.16443549,0.6854406,-0.044341557,0.112428315,0.46622673,0.073561676,-0.51331353,0.5081395,-0.74220866,0.35939902,-8.888756e-05,-0.096140675,0.031266827,-0.0065345657,0.23535217,0.7735015,-0.13190411,-0.11193232,-0.050611787,-0.39040807,0.37086365,-0.5156818,0.045337077,-0.47330618,-0.3631901,0.47862038,0.6844197,0.27901378,-0.25658906,-0.039337713,0.08880808,-0.1175727,0.13783659,0.08560284,0.089371994,-0.11662869,-0.7720695,-0.21476506,0.4277956,-0.18416157,0.116691336,-0.070047356,-0.13470258,0.25819787,-0.124861,0.008080168,-0.16118348,-0.72913486,0.07072271,-0.29702616,-0.47386837,0.39248303,-0.23731945,0.20136474,0.14979519,0.04174685,-0.2498217,0.17704175,-0.09066913,0.8798377,-0.063946374,-0.08766043,-0.47436735,0.08743664,0.17939378,-0.13386868,-0.060166776,-0.4071493,-0.13474329,-0.4985344,0.47688606,0.052731644,-0.21592188,0.07237298,-0.17716667,-0.02693077,0.5975461,-0.14945357,-0.08374417,-0.24685402,-0.14376378,-0.287845,-0.19819987,-0.03122653,0.29122522,0.22519569,0.24924575,-0.12898768,0.007788505,-0.24303368,0.34698597,0.0075207436,0.47939247,0.29192305,0.04172117,-0.15117252,-0.34849903,0.27486113,0.42554694,0.13148566,-0.092716895,-0.15062432,-0.506121,-0.24800101,-0.038440917,-0.040637862,0.58846796,0.098335214,-0.017255804,0.5721668,-0.10836933,0.9377286,-0.02331734,-0.3309256,0.0027899232,0.5201286,0.053377263,-0.17768645,-0.20244299,0.7854972,0.48437467,0.020586282,-0.028390113,-0.36239353,0.06828296,0.20606299,-0.08443654,-0.16363433,-0.090503216,-0.60245097,-0.15559019,0.0031403708,0.31166193,0.31206012,0.09540777,-0.045074258,0.11009844,-0.107341774,0.3583402,-0.41675726,-0.21279278,0.16820805,0.0819701,0.006050076,0.16869545,-0.3708113,0.40915576,-0.35414618,0.0868004,-0.31182,0.15716566,-0.27547818,-0.14796643,0.1488503,-0.16897546,0.43897825,-0.2876801,-0.31333518,-0.2915074,0.47969443,0.21809962,0.090689726,0.64786136,-0.24486212,0.09451617,0.081679,0.6002328,0.8248445,-0.18128946,0.00032197792,0.28305742,-0.55034333,-0.6019003,0.37113175,-0.26989987,0.2286595,0.09013392,-0.0076185376,-0.42603663,0.28621966,0.18475787,-0.091994695,0.050916173,-0.7201943,-0.30396634,0.25820372,-0.30063528,-0.15481187,-0.3996509,0.21886158,0.5323606,-0.27333426,-0.15398839,0.014805334,-0.05896647,-0.038804065,-0.420545,-0.06570746,-0.36528212,0.22998948,0.013190614,-0.34492284,-0.05585963,-0.038990207,-0.37587902,0.3502814,-0.17006819,-0.29837528,0.06943337,-0.21388964,-0.21966197,0.9486912,-0.19758452,0.03342561,-0.49405685,-0.50281185,-0.5993243,-0.43209654,0.46952972,0.01237878,0.14734724,-0.426436,0.062334906,0.014618261,0.026629567,-0.2153888,-0.23247066,0.46839455,0.09012298,0.5054969,-0.086037636,-0.6992799,0.22551334,-0.031453002,-0.04412279,-0.66144115,0.48927078,-0.091961876,0.5354184,0.08154876,0.15889482,0.21218736,-0.38805512,-0.2833059,-0.18363571,-0.22842695,-0.5429123,0.021940073,246 +395,0.14600371,0.021789942,-0.63257056,-0.31400484,-0.49538094,0.2510211,-0.20787439,-0.04192969,0.22258337,-0.27837697,0.018337378,0.03562036,-0.2506934,0.51634187,-0.19678022,-0.8298531,0.09296721,0.048267536,-0.6484498,0.50395966,-0.3583124,0.42873117,0.13932952,0.28046337,-0.12446309,0.40084273,0.20885284,0.123462304,0.001582035,-0.23788486,-0.33306623,0.3270897,-0.49734205,0.45367125,0.11254204,-0.42302957,-0.099089675,-0.2980985,-0.015172805,-0.5936639,0.27349496,-0.6796691,0.6081912,-0.28883782,-0.38910517,-0.060040653,0.27579346,0.19151905,-0.12906744,0.064905435,0.20859228,-0.3742047,-0.1472278,-0.073626585,-0.4340051,-0.6206997,-0.54879856,-0.03322372,-0.89345706,-0.0677893,-0.2560566,0.37437886,-0.2629438,0.012867813,-0.19361624,0.3568182,-0.37898564,-0.041984554,0.18571724,-0.41844162,-0.046908744,-0.42574698,-0.12833856,0.05975759,0.2889233,-0.012363672,-0.18000595,0.26093858,0.43507504,0.50234187,0.118026786,-0.30216938,-0.22144958,-0.3235567,0.048454735,0.545045,-0.0055289334,-0.17203546,-0.28558332,-0.1528485,0.42915225,0.1955746,0.18911107,-0.3065794,-0.09703199,-0.21960625,-0.24065672,0.29681578,0.34491232,-0.5131009,-0.1047053,0.47644112,0.2827313,0.043612864,-0.40452403,0.21296047,-0.10907306,-0.32583836,-0.064660154,0.02901732,-0.06858846,0.48534584,-0.14497341,0.38066193,0.76085436,-0.03324001,-0.0050385636,0.047145553,-0.123965345,-0.2195504,-0.15175237,-0.02002794,0.10307103,-0.40301734,-0.113632046,-0.15956368,0.7068861,-0.081252985,-0.7316579,0.3608005,-0.30033085,0.0678682,-0.09538656,0.70170933,0.7585982,0.45270893,0.10624599,0.8570104,-0.4232953,0.011629869,0.0694121,-0.29924998,-0.05144628,-0.11124754,0.23127082,-0.5620562,0.2104003,0.14113916,0.06367178,0.08238739,0.4183398,-0.47280887,-0.13128118,0.027095782,0.56925714,-0.37860724,-0.25105223,0.95691377,1.0635153,1.0886272,0.10042386,1.078351,0.3232026,-0.115830384,-0.37581015,-0.18144462,-0.24202575,0.114328794,0.42308208,0.3490429,0.48162922,0.021626143,0.06886854,0.576163,-0.06457481,-0.1527002,0.1958622,0.23363689,0.016838152,-0.18356884,-0.49373594,-0.1434088,0.348828,0.07277024,0.1283676,0.31777325,-0.13691677,0.8568295,0.32301632,0.98325914,0.057900928,0.1073544,-0.08384712,0.20248011,0.1448933,-0.19973327,-0.07658293,0.2396939,0.12453674,-0.23549107,-0.36499745,-0.0342687,-0.35865912,-0.3462765,-0.21957125,-0.4349225,-0.38551205,-0.3253107,-0.3686664,-0.27226147,0.13145398,-0.4002835,0.2692904,-2.6194673,-0.24458691,-0.28271067,0.22938958,-0.20724835,-0.25579625,-0.13716754,-0.4761271,0.32073632,0.38049144,0.23110078,-0.5715887,0.5103594,0.46586952,-0.29217607,-0.23016493,-0.64152473,0.076270804,-0.11670959,0.4796131,0.0038946527,-0.3230322,-0.15382047,0.33728743,0.5875346,-0.00033361572,-0.032690514,0.28318742,0.3891658,-0.13637994,0.43979436,0.17822526,0.75971806,-0.14304452,-0.16107927,0.25659645,-0.5032788,0.3953164,-0.08002414,0.20641196,0.54039663,-0.3599949,-0.78757274,-0.610765,-0.22181307,1.2955953,-0.31204256,-0.5084547,0.2602156,-0.083901264,-0.30717543,0.23596145,0.47350186,-0.06253086,0.1266874,-0.47987774,0.10633794,-0.19478874,0.15946619,-0.20200725,0.04919117,-0.4402105,0.5834467,-0.14499702,0.5168366,0.2127942,0.23449714,-0.27662173,-0.27929333,0.12031541,0.96369785,0.5002355,0.00911487,-0.09691095,-0.14480498,-0.20114681,-0.29510635,0.19864218,0.48615727,0.5383639,0.16887243,0.10394064,0.285646,-0.15865524,0.106197916,-0.14368966,-0.28461644,0.0038479588,0.17777537,0.5805209,0.6331838,-0.06400221,0.5548951,-0.07733764,0.2879188,-0.22423837,-0.6284836,0.39786515,0.4656381,-0.22282131,-0.38512084,0.7611838,0.30860922,-0.37326744,0.3769753,-0.49898177,-0.5481044,0.4598802,-0.028869614,-0.34191114,0.15393993,-0.36865872,0.20460738,-0.8155189,0.2540676,0.035690494,-0.7741412,-0.5191759,-0.15160453,-3.201608,0.1396469,-0.10398125,0.020962758,-0.17154558,-0.24771313,0.29078427,-0.4910807,-0.6192861,0.053060394,0.071104124,0.5038723,-0.11914723,0.0493083,-0.19241498,-0.40795514,-0.10947449,0.39046893,-0.054650523,0.30175298,-0.09857186,-0.24542725,0.101461254,-0.37317386,-0.4809727,-0.12566125,-0.59847033,-0.6366846,-0.06418953,-0.4101303,-0.19979279,0.7248948,-0.46340337,0.035752513,-0.3528479,0.02420345,-0.099272914,0.17539968,0.23380291,0.18517949,0.1149586,-0.0029050687,-0.031977646,-0.41089258,0.14314106,-0.03171618,0.30606475,0.5125022,-0.07487974,0.3014279,0.42664954,0.63945544,0.062483516,0.9103618,0.12612174,-0.19418862,0.32345343,-0.30931956,-0.40610725,-0.7241979,-0.36746636,0.079187475,-0.53750867,-0.3786513,-0.030302882,-0.26143625,-0.7813028,0.5793706,0.30502108,0.19203034,-0.36490154,0.27953073,0.3689669,-0.12935503,0.061421122,-0.07089755,-0.23188102,-0.57311785,-0.4262189,-0.788905,-0.5902662,0.047766548,1.0585611,-0.2001679,0.011422639,0.09904827,-0.2688795,-0.0023567507,0.25792614,0.42076996,-0.0058431327,0.10908751,-0.24745655,-0.75050116,0.3390753,-0.4325838,0.030987795,-0.40566853,0.038956903,0.64808905,-0.51759946,0.45528433,0.37104115,0.31924823,0.039620418,-0.5853182,-0.06350409,-0.09010733,-0.22525704,0.54373854,0.25079083,-0.5215284,0.52900356,0.032880824,0.0339779,-0.5517107,0.35429874,-0.15540414,-0.03707611,0.08422259,0.48021677,0.02395727,-0.0538022,-0.14289968,0.013225747,-0.5567288,0.22256999,0.3778627,0.016286539,0.44043222,-0.111882314,-0.5145029,-0.53219974,-0.1593708,-0.54415715,-0.18065558,-0.077527866,-0.0085976375,0.09506837,0.14441428,-0.122633286,0.4542851,-0.3529603,0.13284582,-0.26775503,-0.35425743,0.39306542,0.54334325,0.37179017,-0.44043484,0.6515334,0.22459282,0.109910525,-0.31179714,-0.032201786,0.6104501,0.11408063,0.4158823,-0.10025328,-0.065011896,0.18506457,0.7725387,0.19635202,0.28435078,-0.044711005,-0.20447788,0.116068974,0.041511122,0.25133258,-0.031881202,-0.30585843,0.02911478,-0.19595805,0.16110232,0.44189516,0.12923765,0.4587255,0.010842987,-0.09017156,0.30409288,0.06521855,-0.2755387,-1.162585,0.40746897,0.35893813,0.7409047,0.41232714,0.10860717,-0.20896606,0.5720301,-0.46704176,0.012483886,0.4416823,0.011872845,-0.15749474,0.68478525,-0.583197,0.42625156,-0.19712183,0.026887903,0.121126965,0.046533566,0.32602316,0.97590363,-0.17958759,0.065851614,-0.07444812,-0.34033728,0.054079887,-0.25048584,0.05577739,-0.33164102,-0.3471995,0.5876556,0.23492731,0.44314495,-0.28813052,0.029941244,0.13420412,-0.15548314,0.124489866,-0.17375931,0.06780345,-0.32242176,-0.32615307,-0.35420838,0.5513404,-0.015738716,0.04898843,0.22179472,-0.36190346,0.2874458,0.23377965,0.021620853,-0.045190185,-0.39723587,0.090554394,-0.30765796,-0.64666194,0.27124324,-0.40676203,0.32498452,0.19875202,-0.025667382,-0.11746641,0.22515683,0.11775751,0.5971586,0.14992464,-0.19873057,-0.12860343,0.008744555,0.26547456,-0.36668348,-0.11615,-0.32591304,0.3559932,-0.6042399,0.49664813,-0.28537074,-0.39105907,-0.080431044,-0.17279372,0.10322632,0.10902514,-0.06683929,-0.019408235,0.17643121,0.04366342,-0.19083007,-0.04742843,-0.46804097,0.2455688,-0.08597757,-0.07884293,-0.06521274,-0.06619298,-0.10740372,0.20340252,-0.14796226,0.2365657,0.22490358,-0.205663,-0.43634653,0.14061208,0.04785094,0.3756458,0.033205908,0.043982036,-0.18534425,-0.32192865,-0.3926918,0.6074306,-0.092733495,0.18713653,0.11413924,-0.31214315,0.8687421,0.08761911,1.0867333,0.07637893,-0.5314645,0.081353255,0.44864967,0.14846937,0.22267781,-0.15972732,1.0679835,0.57309043,-0.1444223,-0.1070344,-0.55066615,-0.16514573,0.3377312,-0.23126648,-0.30803356,-0.030310784,-0.7079322,-0.099484526,0.122498564,0.07049716,0.15474088,-0.04756558,0.013584887,0.107293926,0.24564895,0.41239908,-0.634519,-0.06817608,0.3417463,0.067741424,-0.015526648,0.2022612,-0.37832707,0.37860298,-0.8767203,0.2182715,-0.48234674,0.1004997,-0.1606041,-0.29751724,0.3316786,0.06468,0.29471526,-0.16418724,-0.39987642,-0.2529529,0.5375813,0.15063174,0.17402098,0.77797765,-0.267153,-0.11227101,0.18973242,0.5281814,1.2448262,-0.03664208,0.16575466,0.22605214,-0.2649483,-0.5917204,0.15481567,-0.40830544,0.08826125,0.017128306,-0.4464728,-0.23052227,0.29034156,0.16900972,0.014593961,0.29343876,-0.2977968,-0.19383252,0.12678766,-0.48694962,-0.17599568,-0.3173149,0.0736304,0.577781,-0.36744413,-0.27837604,0.03735637,0.43223816,-0.31218907,-0.817738,0.1324128,-0.084366545,0.5145919,0.1605952,-0.49013063,-0.0131798815,0.2478251,-0.41819695,0.25145048,0.61406845,-0.28487536,0.04365825,-0.47313148,0.019329028,0.95596445,0.062489484,0.15503936,-0.7340069,-0.54326564,-0.8272987,-0.3116376,-0.120918,0.10722752,-0.0777271,-0.492127,-0.2637169,-0.20565765,0.016930249,0.20181002,-0.4822676,0.3673625,0.14322074,0.43020657,-0.041246396,-1.1618799,0.023769477,0.10407734,-0.012198175,-0.4954808,0.4675854,-0.19904883,0.6610712,0.24097838,-0.0047933375,0.09194744,-0.61590844,0.33626747,-0.24680017,0.009079993,-0.66969484,0.061005395,249 +396,0.5377277,-0.22152969,-0.56640804,-0.18224421,-0.16568391,0.08124601,-0.22936177,0.6146669,0.13209058,-0.5759605,-0.06600191,0.006462455,0.11496328,0.458501,-0.1047144,-0.5745807,0.034177568,0.11836719,-0.507023,0.69854397,-0.43400052,0.1299069,-0.1527503,0.6378273,0.30992702,0.3202204,0.054993007,0.110306814,-0.080904566,-0.1875345,-0.09012952,0.4199553,-0.5503047,0.08295584,-0.025906196,-0.49530667,-0.2557679,-0.3737571,-0.24748072,-0.67854184,0.23204923,-1.0794741,0.6407356,-0.03980309,-0.39302307,0.23216711,0.2724272,0.2650621,-0.20330384,-0.08516828,0.07781916,0.015823718,0.0861109,-0.30068353,-0.10939431,-0.54927224,-0.62051636,-0.053410523,-0.3983286,-0.066547416,-0.12182082,0.16306546,-0.2875536,0.054576296,-0.27011484,0.32023492,-0.5071395,0.069352195,0.1823593,-0.10407265,0.33766943,-0.49455643,-0.29337475,-0.11998994,0.124676704,-0.11331188,-0.32279125,0.20447445,0.2782592,0.49142092,-0.12113308,0.021705035,-0.34010935,-0.041960735,0.060721222,0.4825326,-0.24787302,-0.5410771,-0.31205988,1.552701e-05,0.23423035,0.1531996,0.2488478,-0.25737813,-0.04348502,-0.021289766,-0.22217822,0.27948493,0.4194893,-0.31285468,-0.45388037,0.27345482,0.41353717,0.17684095,-0.36210546,0.108910665,0.04222422,-0.536823,-0.07707466,0.0862175,-0.021495346,0.50262356,-0.12750271,0.12990664,0.56036866,-0.13408966,0.095325865,0.13228954,0.02391472,-0.17854545,-0.32469216,-0.30785874,0.19794618,-0.3496084,0.1584016,-0.34913057,0.6633073,-0.009254022,-0.7406806,0.32073012,-0.6041139,-0.03751074,-0.2065736,0.39701357,0.68995064,0.40454057,0.036942217,0.5447559,-0.24679063,0.018149793,-0.09818309,-0.24329282,0.15377016,-0.1604391,0.0021240967,-0.68128145,0.18280879,0.18196954,-0.08016864,0.08101102,0.63263786,-0.5907955,-0.2157743,0.19933309,0.82493263,-0.3483215,-0.067194395,0.85554284,1.0709534,0.9221508,0.12981145,1.1794695,0.25302535,-0.15394373,0.20308678,-0.20300902,-0.6539445,0.19368076,0.23301278,-0.14733516,0.35434097,-0.00547577,-0.15198143,0.46547514,-0.13857667,0.055222306,-0.15909772,0.2376603,0.039244287,-0.15591559,-0.38030177,-0.23305576,-0.027271403,-0.12068302,0.303658,0.19437326,-0.37711948,0.47318262,0.08161998,1.7136301,-0.16133176,0.09062847,0.025395988,0.4743721,0.22188602,-0.21512198,0.05644534,0.27998465,0.4305706,0.05471546,-0.5133978,0.25760967,-0.123537466,-0.5693987,-0.16337255,-0.40789914,-0.15671071,-0.08531477,-0.60412747,-0.14462925,-0.07379962,-0.09513688,0.3148376,-2.6939948,-0.19425043,-0.041243605,0.3169687,-0.24271218,-0.40820733,-0.25015786,-0.32044485,0.39301512,0.30407032,0.3891329,-0.6314613,0.52940357,0.26206288,-0.35634544,-0.047930546,-0.62664443,-0.22069776,-0.0129643995,0.40013498,-0.14688894,-0.0027160475,0.25879952,0.276864,0.44994143,-0.08641655,0.08661977,0.19657023,0.35381582,0.07569247,0.36523363,0.00013666494,0.6455621,-0.17677037,-0.20686433,0.28489724,-0.3504653,0.2816184,0.065308444,0.21570003,0.40831184,-0.40529826,-0.9367854,-0.78821987,0.0011792183,1.0769302,-0.27050528,-0.32922664,0.14274094,-0.36509234,-0.39232472,0.0124651,0.4620871,-0.15333274,-0.02634791,-0.9260668,0.009073443,-0.15195796,0.15396354,-0.103232734,0.050549824,-0.44412062,0.5913619,0.027171893,0.65100086,0.32144752,0.18632591,-0.36096543,-0.5326804,0.08100021,0.8202356,0.3125665,0.17242913,-0.10395842,-0.20994452,-0.44463608,0.023140877,0.22795062,0.63171047,0.5631894,0.111676864,0.20554085,0.2324663,-0.17812647,0.102812365,-0.16394551,-0.26811704,-0.12360133,0.14009713,0.47567916,0.48266813,-0.30417952,0.46988896,-0.21982037,0.505836,-0.2555351,-0.534061,0.41775793,1.0667953,-0.27306697,-0.48258966,0.69342613,0.5904204,-0.33725604,0.40381008,-0.654791,-0.27241442,0.23550877,-0.22994693,-0.19786583,0.29056674,-0.31842437,0.30539054,-1.1755145,0.1997439,-0.41759846,-0.39336014,-0.6084401,-0.14455946,-3.506905,0.28244707,-0.10491657,-0.3084707,-0.20877469,-0.322314,0.4392031,-0.70473224,-0.59215134,0.106517516,0.016880253,0.73633397,-0.07154519,0.0894257,-0.3326369,-0.25539896,-0.15470822,0.28487992,0.06563632,0.34286624,-0.0830239,-0.3936768,-0.08427395,-0.0046705604,-0.35313505,0.09752606,-0.6973787,-0.590586,-0.00626593,-0.48588738,-0.2171094,0.53138757,-0.27012587,-0.049361516,-0.19023679,-0.028465157,-0.1682874,0.36853656,0.07670183,0.17538905,0.1623659,-0.011034404,0.070881076,-0.3708237,0.13185713,0.042613465,0.14569993,0.4472642,-0.17720325,0.31711927,0.4955103,0.5553314,0.05222146,0.74776894,0.58478725,-0.0045526274,0.34553462,-0.4016445,-0.23742354,-0.5542703,-0.28752047,-0.16613708,-0.4046051,-0.42660925,-0.1778464,-0.28860497,-0.7556674,0.57131255,-0.0013803287,0.18562962,-0.080946214,0.34523836,0.52827084,-0.099333405,0.0054487246,-0.17090014,-0.16108263,-0.52218455,-0.41773567,-0.5437872,-0.44771358,-0.0104182875,1.0114604,-0.16894317,0.06771415,0.046314925,-0.2516589,-0.022868615,0.26143956,0.06476001,0.14054155,0.47057906,-0.16760233,-0.6432748,0.38716584,-0.20078178,-0.21375777,-0.5629401,0.28554174,0.43473843,-0.71814376,0.5592559,0.29634425,0.1453146,-0.35362735,-0.5213737,-0.15520681,0.063725196,-0.17395008,0.49262398,0.33989206,-0.7755197,0.40732902,0.37975153,-0.10703744,-0.6097175,0.5478011,-0.034267925,-0.3619078,-0.24077633,0.31264094,0.027146365,0.09330981,-0.18487044,0.13046561,-0.49713737,0.212518,0.09233616,-0.046979517,0.2338588,-0.21127857,0.0098739015,-0.7070759,0.10110397,-0.60026973,-0.38372403,0.3158292,0.034582637,0.31468007,0.24062033,-0.11666263,0.3323667,-0.372817,0.08930288,-0.12851486,-0.22060819,0.25725448,0.46131536,0.3615044,-0.36377293,0.5768983,0.05839596,-0.10887177,0.17754875,0.08432998,0.5763523,0.1333162,0.46491292,-0.052267067,-0.23454356,0.22016168,0.69702333,0.16598344,0.4315659,0.012424673,-0.12169152,0.17895119,0.03543375,0.1361965,0.031260762,-0.4156004,-0.22027636,-0.18151376,0.26050165,0.61761093,0.1322665,0.3186304,-0.10710088,-0.26306948,0.09462143,0.12585194,0.07527868,-1.4283649,0.39737484,0.28487003,0.66955984,0.4916187,-0.074405916,0.0137801105,0.4143267,-0.30488732,0.20053114,0.43067613,-0.008822654,-0.59631836,0.5794987,-0.7610894,0.34996453,-0.084525764,0.048478764,-0.03439676,-0.068198256,0.43268892,0.81539756,-0.08408521,0.21687706,0.23083435,-0.4388211,0.12329579,-0.32035837,-0.048995223,-0.5969599,-0.14882796,0.6814037,0.5205969,0.4733817,-0.26380387,-0.003581096,0.18063672,-0.0139927,-0.046865635,0.11689382,0.3258417,-0.04409104,-0.6050414,-0.2617415,0.54960805,-0.13763176,0.19358197,0.16395055,-0.49362665,0.29241663,-0.011668682,-0.06638905,-0.018208865,-0.6367718,0.035028078,-0.37882456,-0.45865828,0.55629694,-0.28398842,0.08111096,0.25514925,0.11642535,-0.12603222,0.14843397,0.0468618,0.8773791,-0.05854452,-0.12240179,-0.4485531,0.23043816,0.2996092,-0.15268907,-0.25150833,-0.3754444,0.13174966,-0.46924666,0.35391167,0.03961134,-0.36706665,-0.0075689596,0.07639067,0.20417312,0.4023168,-0.14700899,-0.18347014,-0.041307103,-0.023832848,-0.4611331,-0.20919129,-0.06294419,0.30741474,0.25291693,-0.0012499435,-0.1303502,0.00221073,-0.010660201,0.42994067,0.08284879,0.55963147,0.646903,0.14859426,-0.20961405,-0.07835836,0.46293524,0.36722025,-0.14075562,-0.04481938,-0.3705171,-0.4892592,-0.3478343,0.29332948,-0.1879119,0.39101,0.08440859,-0.2607489,0.8677718,0.017521653,1.0471613,0.06743372,-0.38567677,0.19316646,0.4313766,0.047743924,-0.07531655,-0.4031086,1.0187114,0.57498986,-0.04736158,-0.11039137,-0.33839232,-0.14322717,0.2792569,-0.30137,-0.16354856,-0.0913442,-0.67793906,-0.2783251,0.08093678,0.25883958,0.28533456,-0.04572962,0.21328616,0.19147158,0.002893911,0.20226763,-0.48122764,-0.06301598,0.22705154,0.35703963,-0.038699966,0.27264303,-0.54300225,0.27638385,-0.51994526,0.045351725,-0.3495021,0.124417976,-0.012859089,-0.3198321,0.13597028,0.00020017794,0.19643858,-0.36571082,-0.23522918,-0.21463099,0.5366188,0.100169815,0.1081185,0.68894523,-0.23265389,0.19488382,0.18776672,0.47361395,1.1296873,-0.11617989,-0.0076501453,0.24868019,-0.34861636,-0.8511774,0.2844211,-0.18091328,0.5017188,0.028851127,-0.21081711,-0.57993084,0.4233532,0.17290023,-0.0054434366,-0.109094724,-0.37227324,-0.21216334,0.35466033,-0.20334533,-0.19873415,-0.3301463,0.0069562537,0.50564253,-0.20104423,-0.2638728,0.04311028,0.24518487,-0.15982226,-0.57070976,-0.03414889,-0.38311362,0.3084907,0.15299357,-0.29557487,-0.110188074,0.005277265,-0.4119406,0.33038765,0.3667182,-0.23690604,0.118272744,-0.5149786,-0.01984489,0.98871607,-0.20456629,-0.015055529,-0.7227245,-0.5224811,-0.7176412,-0.4922033,0.2911172,0.09160381,0.022212151,-0.73547965,0.14783835,-0.045631774,-0.299755,-0.060946617,-0.31952143,0.5124084,0.045498706,0.353318,0.041461248,-0.6294257,0.26133844,0.05243544,-0.026110124,-0.5919465,0.5510544,-0.1322203,0.96193516,0.09439421,0.1605898,0.312465,-0.5813092,-0.12579001,-0.27005473,-0.06028073,-0.8481798,-0.007455451,251 +397,0.48533392,-0.3152397,-0.39702561,-0.20647535,-0.10407134,0.09691511,-0.26115182,0.35204178,0.100342646,-0.42366344,-0.12352194,-0.15712555,0.06950267,0.40010875,-0.1795877,-0.5839318,0.015689058,0.1542137,-0.4225873,0.4629473,-0.4779288,0.21072838,-0.079196,0.5125975,0.17414734,0.34086213,0.17201622,0.0020573225,-0.21353552,-0.342095,-0.046678867,0.14763185,-0.6078197,0.10183751,-0.0060113627,-0.3296408,-0.020663708,-0.5363735,-0.3938146,-0.7222734,0.35453343,-1.0316814,0.7010887,0.02092333,-0.30648082,0.2802651,0.19015288,0.46071747,-0.337461,0.077841595,0.32007787,-0.14795354,-0.014256222,-0.2564129,-0.09921867,-0.49415722,-0.5256009,-0.085576005,-0.38397598,-0.3042533,-0.31676483,0.11396126,-0.2539893,0.06835738,-0.008700149,0.43192407,-0.56960994,-0.00957489,0.119510785,-0.22138867,0.4554724,-0.5021564,-0.21262681,-0.030481616,0.37020883,-0.13610923,-0.13639964,0.39836407,0.22842751,0.41374472,-0.03441692,-0.10169924,-0.22045572,-0.08044652,0.21428585,0.5307401,-0.21237527,-0.53936476,-0.19689575,-0.10505847,0.21814655,0.1989222,0.13161059,-0.22515701,-0.009093189,0.25856942,-0.21232997,0.36954716,0.46630684,-0.3913906,-0.11654378,0.26132727,0.543066,0.071802095,-0.15712722,-0.05975017,0.12050117,-0.49120983,-0.27617136,0.040930755,-0.29051498,0.5698063,-0.067246914,0.32397795,0.76468974,-0.19295354,0.106459394,-0.09486885,0.024641871,-0.17356072,-0.2193211,-0.3936968,0.27416003,-0.41204724,0.18030705,-0.25931033,0.7419402,0.15360582,-0.66545266,0.40578386,-0.5294769,0.012773441,-0.20711628,0.39466712,0.5499425,0.37834436,0.426063,0.769239,-0.5554841,0.010056214,0.0113150645,-0.32028097,0.13750152,-0.27867055,0.05711043,-0.5953418,0.05350381,0.047961526,-0.14203951,0.14186658,0.48806018,-0.56445843,0.06668649,0.1367671,0.9293172,-0.3297071,0.1136652,0.73379725,1.1615506,0.9082853,0.016310768,1.1122543,0.40425238,-0.34820014,0.18783858,-0.19799049,-0.60008997,0.28630528,0.48244426,-0.131183,0.25811893,0.097651854,-0.033356603,0.53621316,-0.61944115,0.18004696,-0.1035731,0.12847318,0.071034424,-0.22527646,-0.50849676,-0.07245864,-0.021672918,-0.11548244,0.20899148,0.2589279,-0.26119128,0.49490428,-0.049483422,1.8124746,-0.07272587,0.08161432,-0.025244597,0.59585947,0.2206078,-0.07830707,-0.060357828,0.35623732,0.47891766,0.12962048,-0.62127364,0.1883492,-0.19973645,-0.37784114,-0.19785938,-0.3759515,-0.0044885534,0.0026478043,-0.34460062,-0.1396713,-0.016142802,-0.1724811,0.38513774,-2.704485,-0.28298596,-0.16092953,0.41062808,-0.30909246,-0.32878283,-0.069541045,-0.40795025,0.62971574,0.31469133,0.44761357,-0.56451315,0.48373535,0.5206321,-0.43152156,-0.16686235,-0.5572585,-0.1859564,-0.059797317,0.38696316,0.0130323935,-0.23265119,-0.10041373,0.3164962,0.4432993,0.10871492,0.2142602,0.15587743,0.39495203,-0.033648513,0.6577378,0.06130327,0.643787,-0.053004093,-0.24295007,0.3347587,-0.28380612,0.119060464,-0.15588893,0.16337515,0.44229725,-0.37975183,-0.9189648,-0.8403378,-0.17421402,0.96385753,-0.23877989,-0.5888039,0.14601086,-0.14644451,-0.3851414,0.08292818,0.3404573,-0.1497501,0.009053956,-0.8805309,0.104953416,-0.11721814,0.07076205,0.057820946,-0.006014713,-0.6174016,0.6719594,-0.117332235,0.50050205,0.29102087,0.19318767,-0.2121254,-0.40046573,0.10023689,0.97450954,0.4255428,0.11139844,-0.16624245,-0.16639212,-0.30455917,-0.20320895,0.009630646,0.6585403,0.7088284,0.004696465,0.10723888,0.20921178,-0.20461978,-0.012829519,-0.12670092,-0.4249546,-0.018467924,0.04032282,0.6801533,0.53727084,-0.13910042,0.5386651,-0.15688658,0.39807191,-0.09790707,-0.43141767,0.48347074,1.112021,-0.13722368,-0.28067306,0.64917177,0.44452238,-0.30973434,0.3930948,-0.73960066,-0.2754123,0.45889074,-0.2260053,-0.48245642,0.19480637,-0.22486556,0.2330838,-0.9777584,0.29382804,-0.22279455,-0.44422475,-0.6025969,-0.30797893,-3.7129061,0.13785283,-0.30039325,-0.20915113,-0.10747067,-0.26214057,0.3640236,-0.74768215,-0.50212204,0.15488064,-0.07798997,0.8537013,-0.043915052,0.14345859,-0.31119037,-0.09122206,-0.13595624,0.1432477,0.1729686,0.3714791,0.07137675,-0.46980765,0.047355566,-0.026832027,-0.537574,0.004553497,-0.577129,-0.5415481,-0.14941461,-0.5736976,-0.21914117,0.7177014,-0.2880151,0.111040235,-0.2836263,0.10160826,-0.25875527,0.36899105,0.1338403,0.14910297,0.10651149,-0.05854204,0.1507016,-0.41229326,0.25476578,0.056375653,0.26196852,0.2652325,-0.13395832,0.09976256,0.43367842,0.54714453,-0.004424442,0.682536,0.5036458,-0.16567257,0.12287675,-0.469069,-0.3693827,-0.45897427,-0.55962133,0.0041512526,-0.40504903,-0.53145224,-0.22306086,-0.488475,-0.79794925,0.6264917,0.11070399,0.11807965,-0.08670203,0.27389777,0.4278802,-0.19570804,-0.22648157,-0.009084365,-0.134287,-0.6508959,-0.14655766,-0.6022183,-0.52636373,0.10058653,0.834569,-0.14828059,-0.06980692,0.15815414,-0.32575962,0.07267355,0.09297855,-0.0118475305,0.012570381,0.4678557,-0.024027884,-0.7132344,0.55444485,-0.18883443,-0.20215209,-0.8185113,0.21552299,0.6346875,-0.5062386,0.62181246,0.4333896,0.09676768,-0.14719748,-0.3614281,-0.11010433,0.019738605,-0.1930827,0.43225044,0.12474311,-0.71525514,0.4693618,0.3912809,-0.28616068,-0.70346075,0.60302556,-0.04844135,-0.34227696,0.05380002,0.29087836,0.11788695,-0.054426823,-0.18372269,0.4037362,-0.4444196,0.33941838,0.28328815,-0.010232717,0.5228032,-0.14058845,-0.15239814,-0.79362327,-0.09540639,-0.5562112,-0.33440542,0.15935037,0.0778093,0.102214575,0.3348957,0.0450742,0.44468123,-0.4569393,0.07198057,-0.046927612,-0.27789822,0.31750497,0.4285655,0.385111,-0.49778238,0.62853134,0.040330708,-0.07283195,-0.01880739,0.0010378702,0.49811387,0.12090137,0.4232765,-0.10200774,-0.19103725,0.29587653,0.70171726,0.22982578,0.53914505,0.2353375,-0.21112797,0.13835149,0.1826648,0.14715698,0.074747756,-0.5616306,0.11250595,-0.090390615,0.15137374,0.44566318,0.27467695,0.3139109,0.018594315,-0.3355143,0.10417168,0.13359985,-0.14460431,-1.2468144,0.44339395,0.20612851,0.78910446,0.32699853,-0.06264687,0.11796174,0.7517203,-0.22081992,-0.0073435777,0.2100778,0.023072269,-0.45382616,0.56228,-0.6732518,0.3540733,0.07373401,-0.07054092,-0.10676629,-0.0027779,0.41550428,0.679351,-0.14348982,0.17891358,-0.020111999,-0.32569098,0.23941872,-0.35315236,0.07433411,-0.4865994,-0.30692318,0.61979574,0.54168576,0.40641567,-0.14929399,-0.070868775,0.123606406,-0.113720655,0.16229203,0.22982712,0.14491208,0.08355592,-0.8010823,-0.37608972,0.46331745,-0.10323829,0.21935551,-0.09426843,-0.21534689,0.27444795,-0.19505861,-0.011520548,0.06994443,-0.68798494,0.039331112,-0.3563189,-0.41416305,0.6158206,-0.0057896078,0.12200721,0.15025662,0.029406,0.00016817024,0.31413195,0.10196904,0.82372105,0.08430882,-0.23617007,-0.4525686,-0.029494891,0.14636949,-0.23754866,-0.02848357,-0.3953154,0.12170421,-0.58233446,0.4825239,-0.006830871,-0.3035967,0.26910558,-0.1686105,0.0020453185,0.5536147,-0.29048088,-0.07998933,0.048718452,-0.22124374,-0.25499743,-0.31620508,-0.2235954,0.18974172,0.08499809,0.12528892,-0.06797198,-0.07103269,-0.3360394,0.60559714,0.04605606,0.46707305,0.5792758,-0.045078363,-0.31353244,-0.33114928,0.08643602,0.4789343,-0.19708337,-0.14987949,-0.37663966,-0.69430983,-0.4131322,0.30368757,-0.12830779,0.36630815,0.114140764,-0.2714757,0.6374654,-0.088746496,1.1578454,0.043295227,-0.49895218,0.10591813,0.654463,-0.05446013,-0.0125454,-0.3532841,0.94849676,0.5943828,-0.08080639,-0.03185563,-0.46169916,-0.08563285,0.31174418,-0.25931245,-0.14418952,-0.13941897,-0.6992674,-0.3740973,0.24613206,0.32508722,0.27164048,-0.008472272,0.2015437,0.23319581,0.024818351,0.3482968,-0.535441,-0.30818638,0.46811137,0.24530064,-0.094001316,0.122477494,-0.43153557,0.42538086,-0.40218258,0.003582069,-0.4734625,0.12987365,-0.032863777,-0.25748035,0.25497445,0.045794435,0.20894213,-0.3123419,-0.3264238,-0.07106347,0.50776404,0.23621681,0.0885051,0.6128027,-0.24807708,0.08283209,0.063491836,0.5212975,1.1586984,-0.24937336,0.18660071,0.45971516,-0.39547157,-0.6247563,0.3271759,-0.21628264,0.20388277,0.014966266,-0.31313428,-0.61093664,0.34176257,0.1503956,-0.17675869,-0.029504564,-0.5493442,-0.31523377,0.3560892,-0.26977184,-0.18107046,-0.2935302,0.03911992,0.56996626,-0.2938958,-0.1755995,0.10636628,0.34834975,-0.16542184,-0.47153807,-0.11828249,-0.43365917,0.38548508,0.11552056,-0.39349982,-0.07578923,-0.0040045423,-0.36316708,0.17790715,0.14468919,-0.4528317,0.067244336,-0.33488682,-0.123302005,0.9152657,-0.11211767,0.048723094,-0.71914244,-0.32872397,-0.8567814,-0.330051,0.5002517,0.045427036,-0.013112575,-0.5554563,0.018660758,-0.12684412,-0.074999645,-0.16997449,-0.49540028,0.3613808,0.13233952,0.5977305,-0.075703554,-0.68956596,0.07370668,0.08994125,-0.3014893,-0.6352066,0.667511,-0.07962036,0.89189726,-0.01437472,0.08835072,0.24204323,-0.4815201,-0.06933276,-0.24390697,-0.31511095,-0.8408853,0.05958763,259 +398,0.5173759,-0.20671967,-0.75783825,-0.034395557,-0.35395953,0.024954217,-0.26104972,0.32771704,0.1303419,-0.59701794,-0.09066869,-0.01393873,-0.147503,0.19981635,-0.2002757,-0.308196,0.010672177,0.44651562,-0.42601022,0.41385618,-0.43654442,0.3556357,0.038501374,0.19443676,0.16312051,-0.006483159,-0.065092646,0.13526173,-0.07483715,-0.43537134,0.19042587,0.2829257,-0.82426614,0.3408728,-0.20235062,-0.5311449,-0.12716673,-0.4953845,-0.28152892,-0.8290634,0.19600196,-1.0234909,0.58881325,0.012121839,-0.3481388,0.21447682,0.10149431,0.35499606,-0.10560685,0.032023504,0.26442227,-0.26736566,-0.5479484,-0.09144359,-0.009429327,-0.28588882,-0.6247967,-0.047671225,-0.42311648,0.165201,-0.36813256,0.25930166,-0.40901738,0.1699373,-0.3796289,0.3949636,-0.23664834,0.014869341,0.11533142,-0.009282248,0.15271118,-0.5669852,-0.18025972,-0.20705938,0.13288315,-0.23111837,-0.43932202,0.33724704,0.22990271,0.4761386,-0.045775477,-0.24815716,-0.20606294,-0.005150318,0.27106282,0.42403856,-0.20150682,-0.24595931,-0.17817958,-0.05060519,0.40636784,0.033311754,0.109660454,-0.2724603,-0.092189506,0.12272764,-0.32226947,0.57122433,0.55097026,-0.2485826,-0.0659835,0.3602,0.63236815,0.12167813,-0.15842488,0.277668,-0.008986224,-0.5335291,-0.1454599,0.17216572,-0.15859425,0.25189492,-0.23234287,0.14676486,0.5349701,-0.42471775,-0.374085,0.4690837,0.165611,-0.09240045,-0.19717444,-0.4731575,0.45329905,-0.60788053,0.107384145,-0.23959446,0.7992931,-0.045919936,-0.6859488,0.29541355,-0.71538985,0.16059409,-0.10487239,0.66373503,0.66093403,0.68842405,0.33088428,0.75852734,-0.33281666,0.01470255,-0.13117418,-0.399961,0.14341934,-0.44611454,0.023903767,-0.43661484,-0.04728782,-0.09909473,-0.37208048,-0.016820395,0.66733456,-0.43167105,-0.25125375,0.03316616,0.36984888,-0.3652769,-0.06837898,0.9498596,1.0377381,1.1562798,0.4072535,1.2007567,0.25548413,-0.058166243,-0.2525148,0.0607282,-1.0396374,0.33593482,0.2813564,-0.2337515,0.27971712,0.37291312,-0.0061598164,0.41665745,-0.47668138,-0.14728832,-0.1105481,0.3496609,-0.0628016,-0.30447578,-0.5095673,-0.26399735,0.15135516,0.124253355,0.009799434,0.26153657,-0.25122213,0.44205847,0.30983108,1.1679513,-0.25658032,0.03489905,0.098999925,0.204558,0.1397052,-0.25834754,-0.111525536,0.1343309,0.42515475,0.11581449,-0.5041415,0.10661476,0.0738319,-0.5013007,-0.2384106,-0.19803905,-0.047685392,-0.33731514,-0.33766547,-0.25398684,-0.06347891,-0.4071935,0.39602205,-2.3386264,-0.15193157,0.009848131,0.24970844,-0.051873345,-0.4598803,-0.11343086,-0.4633834,0.36379257,0.24735309,0.4379468,-0.63660765,0.5004323,0.47659454,-0.7199102,-0.032834925,-0.79706615,-0.2024231,-0.19859828,0.35191005,0.12688182,-0.14118345,-0.06503699,0.0755886,0.4445072,-0.31905937,0.12538436,0.52914155,0.33859396,-0.1323203,0.51418847,0.14492114,0.46060285,-0.35357976,-0.32388872,0.37720338,-0.3541665,0.07075767,0.10453302,0.062576935,0.5210901,-0.55186015,-0.9708505,-0.7274591,-0.1570873,1.28976,-0.2236062,-0.49252945,0.13629995,-0.51638633,-0.47609565,-0.036127355,0.30730942,-0.22330841,-0.04248053,-0.9423704,-0.094202794,-0.14977907,0.37222582,-0.20513733,0.031707864,-0.5412922,0.7107864,-0.17051731,0.5919666,0.48182574,0.11272202,-0.4011703,-0.413032,0.105425544,1.2537359,0.39954406,0.16805157,-0.46941286,-0.26056415,-0.24198504,0.062929355,0.11859039,0.49208394,0.5313258,-0.08906632,0.24578102,0.20818941,-0.11834519,0.021266248,-0.27454227,-0.2558494,-0.18517244,-0.076244764,0.65954316,0.5224915,0.10920918,0.52495307,-0.07620221,0.2775022,-0.1186288,-0.48589054,0.40259436,0.98216355,-0.062439807,-0.49042267,0.7440391,0.65705013,-0.19682871,0.5748912,-0.41117856,-0.28756955,0.104956985,-0.060600005,-0.2330524,0.2908794,-0.4751955,0.3402167,-0.90814173,0.36404392,-0.30015692,-0.8472336,-0.5960407,-0.026887447,-3.0458739,0.34580064,-0.08077313,-0.088668786,-0.12850843,-0.27671114,0.46499103,-0.43270248,-0.81157005,0.10138794,0.17501846,0.86998546,-0.1874491,-0.15331258,-0.18894829,-0.3096631,-0.25930855,0.11551621,0.19523808,0.2555814,0.033359263,-0.45378143,-0.024433825,-0.32061842,-0.3083323,-0.1906264,-0.8456921,-0.4352312,-0.008610623,-0.4677485,-0.5214494,0.68693435,-0.32631615,0.00064783223,-0.26252562,0.028886143,0.15894587,0.5077109,-0.13232273,0.049652927,0.03376304,-0.037208173,-0.059466656,-0.060147233,0.18622495,-0.10761627,0.12295415,0.504161,-0.39263064,0.20128536,0.5759239,0.85659283,-0.12146865,1.1023186,0.41657755,-0.283975,0.29485777,-0.10651518,-0.30801362,-0.6951314,-0.056279164,-0.051491637,-0.56668144,-0.21870944,0.1422291,-0.23564376,-0.86956036,0.7418577,0.066150926,-0.08392061,-0.013508433,0.39194712,0.38920385,0.021967279,-0.1300082,-0.19055803,-0.27345,-0.37427053,-0.40059862,-0.71737206,-0.38086456,-0.41490707,1.4702549,-0.17652075,0.18598714,0.12960292,-0.09872059,0.21811166,0.14284992,0.02892352,0.23615268,0.6282491,0.07739425,-0.55901605,0.28596404,-0.2420131,-0.04956859,-0.58402264,0.27962583,0.7216806,-0.6701466,0.36434856,0.45498943,0.16287708,-0.123618804,-0.6240138,-0.060681757,0.15425311,-0.27011415,0.63962096,0.38561302,-0.9873869,0.5835198,0.48319688,-0.2890606,-0.6810341,0.5089892,-0.04000674,-0.032249417,-0.10476167,0.43712887,-0.15767384,0.17764834,-0.08380441,0.34897113,-0.28645352,0.30530116,0.16447006,-0.11043334,-0.031415448,-0.18795879,-0.06893522,-0.67381376,-0.035212018,-0.36832026,-0.28168815,0.041606374,0.03333259,0.10330479,0.37904435,0.08619659,0.44548026,-0.39459667,0.020690829,-0.2888388,-0.45388672,0.41507468,0.65164214,0.39933914,-0.3893321,0.7409606,0.08963632,-0.15623225,-0.412399,-0.082621746,0.48925206,-0.041617293,0.46350494,0.06313272,-0.07847619,0.20307732,0.8138777,0.16546239,0.56452745,-0.000625687,-0.055120658,0.053183798,0.19575344,0.47327366,-0.115028374,-0.55951464,0.06606257,-0.17673667,0.20432499,0.47098374,0.0170407,0.2860206,-0.17225535,-0.20933516,-0.05331295,0.060763817,-0.0009723859,-1.5906767,0.5880295,0.24795873,0.63055545,0.49948913,-0.030928824,0.3238768,0.59855187,-0.27632508,0.037014723,0.21757713,0.11810671,-0.27165887,0.46561816,-0.75790876,0.4114678,-0.09031326,0.03557532,0.14842579,-0.11272425,0.50971496,0.8594866,-0.14401436,0.2421961,-0.09444898,-0.28599283,0.1604686,-0.28673938,0.061973657,-0.42463306,-0.353789,0.9358387,0.46389732,0.57038414,-0.28627357,-0.028481666,0.10401348,-0.15512861,0.1658584,0.059679396,-0.017918902,-0.17720427,-0.6113257,0.08464378,0.6980441,0.08906318,0.07857781,-0.0014991207,-0.33153588,0.30877063,0.031307016,-0.027838191,-0.19003473,-0.8171095,-0.116174445,-0.4837169,-0.37894318,0.15361063,-0.14874151,0.16519271,0.31956023,0.043337945,-0.36214405,0.17530395,0.3450285,0.67650205,0.0477116,-0.11901443,0.09851669,0.2793588,0.17555192,-0.19099928,-0.14685826,-0.252682,0.28724405,-0.6205511,0.33884278,-0.28183666,-0.5907852,0.3070998,0.061557148,0.008941685,0.40398762,-0.2699504,-0.090239726,0.093496874,-0.015368507,-0.010194585,-0.36364916,-0.19264853,0.24515055,0.15485011,-0.1602786,-0.09464055,-0.04139192,-0.119544245,0.4166403,0.06962364,0.30097347,0.44234982,0.19953094,-0.49097148,0.036148112,-0.0065974593,0.7991567,-0.14029714,-0.2686672,-0.46300945,-0.15782759,-0.25570172,0.34542474,-0.043384455,0.23876241,0.100328885,-0.40986028,0.9734666,0.03753699,1.0251368,-0.072669216,-0.53032625,0.08306708,0.56760794,-0.047825716,-0.106539465,-0.27061257,0.85375947,0.4961383,-0.22589943,-0.061326537,-0.53923905,-0.024950292,0.16608095,-0.22462256,-0.27121085,-0.080481075,-0.56892365,-0.050214946,0.18495762,0.45603678,-0.10476124,-0.17003724,0.33939907,0.5133089,-0.022924488,0.078355536,-0.4587555,0.07445288,0.3779554,0.26949912,-0.050799403,-0.10786456,-0.47521713,0.19612841,-0.7068845,0.105858244,-0.17958513,0.12713031,0.022883058,-0.13993411,0.22729817,0.11977466,0.22873528,-0.33394447,-0.2184008,-0.09770851,0.43419114,-0.014267479,0.12930694,0.7454084,-0.31312147,0.13867201,0.10963821,0.33252186,0.8223224,-0.23947491,0.042547278,0.28813106,-0.3181315,-0.45644718,0.33102512,-0.29655376,0.11299341,0.04217335,-0.45058677,-0.5724906,0.22194615,0.32480344,0.14995582,0.0702408,-0.6049951,0.012123706,0.45693678,-0.28037772,-0.2130858,-0.35989386,-0.11302827,0.59207046,-0.20758192,-0.45093864,-0.031448465,0.2717537,-0.2607315,-0.38994431,-0.07343777,-0.55431396,0.30907637,-0.10591655,-0.2496684,-0.008742903,0.06197547,-0.54061586,-0.014122264,0.29453605,-0.26436496,0.17212765,-0.47400692,0.01758696,0.8006751,-0.30525213,0.32933554,-0.4744119,-0.7561754,-0.80348223,-0.10076981,0.38483652,0.21245632,-0.041328464,-0.65672356,-0.041359823,-0.043386105,-0.35029173,-0.06368672,-0.4549675,0.563026,0.23778902,0.3496308,-0.04754911,-0.9090604,0.19159266,0.07711441,-0.10029702,-0.2807382,0.61354196,0.09099395,0.761205,0.095356666,0.29579258,0.021989176,-0.75507516,0.31328353,-0.011694289,-0.054484036,-0.7624618,-0.18767957,265 +399,0.4774552,0.07755811,-0.6409768,-0.08471197,-0.14882444,-0.0069275605,-0.16382706,0.36030155,0.30162218,-0.41011995,0.06571677,-0.027892385,-0.0032710151,-0.07631644,-0.14639725,-0.57964426,0.08835163,0.28290686,-0.4171194,0.37748012,-0.44732377,0.2497996,-0.17463692,0.23793419,-0.14856872,0.13285182,-0.035241853,0.0053720474,-0.17493396,-0.23303899,0.31514844,0.19966364,-0.69404346,0.20323278,-0.18447517,-0.18903682,-0.047862973,-0.4020924,-0.47479054,-0.70169276,0.2456292,-0.79657733,0.5462067,0.18221386,-0.33553186,0.36331457,-0.1625042,0.26859814,-0.17595302,-0.025105609,0.17857075,-0.2571109,-0.29881066,-0.28681093,-0.12735678,-0.2042739,-0.6230296,0.13328645,-0.45807776,0.05228166,-0.30808464,0.17112446,-0.39863157,0.11621189,-0.2628211,0.49833032,-0.28858885,0.035341233,0.25950247,-0.023242008,0.10943995,-0.3691513,0.05043614,-0.136745,0.12980449,-0.1444725,-0.22266494,0.17700934,0.20913239,0.5542031,-0.084308706,-0.27389067,-0.12859373,-0.0035053492,0.12894726,0.42138958,-0.2424123,-0.33558586,-0.15418704,-0.033628423,0.056019165,0.114021406,0.0906666,-0.1618716,-0.012213647,0.23123612,-0.31841168,0.6460691,0.6686477,-0.17691398,-0.09957998,0.33223322,0.6681647,-0.058937646,-0.057881232,0.1420569,0.033970404,-0.43303794,-0.3236802,0.06888105,-0.19446893,0.3054095,-0.25349328,0.10465859,0.6732736,-0.3937896,-0.20089102,0.31742337,0.07751016,0.18399653,-0.36066642,-0.23049094,0.44975457,-0.5649956,0.021014009,-0.25922176,0.9009536,0.017805148,-0.7841523,0.43492392,-0.49532843,0.19305624,-0.15929069,0.772124,0.76137555,0.45868847,0.20716058,0.6842609,-0.49025673,0.08790077,0.018055629,-0.44677565,0.2306402,-0.080321185,0.20600879,-0.3869583,-0.22541095,0.05739078,-0.246796,-0.017956521,0.33739367,-0.5149154,-0.3607718,0.073422156,0.6900982,-0.2879664,-0.16221368,0.7202913,1.1434897,0.8678344,0.17445973,1.1393753,0.3276231,-0.10409855,0.057257622,-0.25794214,-1.0012966,0.34854105,0.12482087,-0.35873052,0.16146223,0.2509644,-0.17503473,0.34359685,-0.46209636,-0.12684183,-0.1241587,0.4388509,-0.18541193,-0.21376951,-0.33259693,-0.101206064,0.10908972,-0.021256438,0.17936747,0.3401075,-0.25889674,0.082734875,0.095834926,1.0463662,-0.024464233,0.08082148,0.10825915,0.33379886,0.15222839,-0.22741517,-0.12931497,0.30843145,0.24817829,0.17321041,-0.5817264,0.13717355,-0.09789176,-0.448848,-0.23687944,-0.21756269,0.11215121,-0.23934321,-0.39813143,-0.05312299,-0.20066373,-0.3985896,0.4660994,-2.5860946,-0.2567018,-0.016485175,0.40378803,-0.07443186,-0.29166394,-0.06238297,-0.4932079,0.33544487,0.26278472,0.43989828,-0.6720257,0.52878225,0.36011335,-0.4184897,0.0071129375,-0.6861109,-0.03583703,-0.09070661,0.24857643,0.07562796,0.012801545,-0.0675305,0.10111337,0.3053036,-0.05240467,0.12109649,0.32683563,0.47741154,-0.052362256,0.26269394,0.07932186,0.5496846,-0.3012568,-0.28427595,0.25708845,-0.51448435,0.21961871,-0.05084799,0.08674332,0.2912204,-0.38447475,-0.83624107,-0.49499568,-0.23477206,1.1876236,-0.17996553,-0.37936231,0.19382715,-0.3203899,-0.46231326,0.025769625,0.38325614,-0.23815031,-0.07886083,-0.88794965,0.03441008,-0.1299315,0.2489269,-0.13814038,0.077819064,-0.46031395,0.5851225,-0.2820927,0.43897268,0.29737014,0.17605248,-0.44016084,-0.4488244,0.07080657,1.0735883,0.32139516,0.124014296,-0.36550966,-0.15608506,-0.17645785,-0.016465532,0.05315841,0.52371424,0.77953976,-0.043250393,0.09444778,0.36635968,-0.15870723,0.022146974,-0.08248358,-0.3802177,-0.16927148,-0.16468684,0.6816312,0.6611908,-0.32496944,0.46622658,-0.15985455,0.2970623,-0.2765874,-0.38838133,0.46499515,0.6455111,-0.051162843,-0.28631026,0.7091417,0.34510812,-0.50240546,0.5153501,-0.5182214,-0.30987778,0.26799363,-0.067748815,-0.42450666,0.22233663,-0.3262128,0.21620753,-0.87499875,0.5065985,-0.3423422,-0.7595533,-0.5777146,-0.11306653,-3.4834695,0.31191343,-0.23666473,-0.012383255,-0.11144189,-0.03962683,0.27631873,-0.33701417,-0.5164818,0.1527209,0.17589433,0.7379927,-0.12539978,0.12796094,-0.19925272,-0.18971299,-0.31322366,0.18145467,0.4513765,0.240818,-0.051311407,-0.35046965,-0.10902548,-0.21715342,-0.19378243,0.06738527,-0.6067664,-0.38734978,-0.09060303,-0.5707021,-0.35219264,0.6303166,-0.21993504,-0.12936111,-0.3917644,-0.06850612,-0.03870707,0.5415905,0.038476206,0.08978031,0.0052654403,-0.14551766,-0.18498254,-0.28626844,0.24339107,-0.06108864,0.47668156,0.46785477,-0.3248263,0.036203247,0.48786074,0.6551077,0.117308006,0.80644757,0.35638216,-0.15824886,0.39194182,-0.15638511,-0.22678158,-0.56369126,-0.22207583,-0.072417185,-0.46305576,-0.31969357,0.00054402865,-0.4073918,-0.6869454,0.49736923,-0.1255252,-0.082772665,-0.040146213,0.53670806,0.42518324,-0.07818217,-0.14792986,-0.13743037,-0.21482828,-0.3074337,-0.25759882,-0.6902357,-0.3704147,0.08820678,1.0004812,-0.12839718,0.21694836,-0.0017886332,0.0027640548,0.029816492,0.17398931,0.08843524,0.2576343,0.5761012,-0.19010136,-0.46056303,0.3697696,-0.38193485,-0.09265328,-0.8519877,0.061404355,0.62817115,-0.6892387,0.6578003,0.4625432,0.1172378,-0.064970195,-0.53619546,-0.15365075,0.11439293,-0.2642338,0.51297456,0.33905378,-1.0891808,0.62872696,0.39373335,-0.21323583,-0.6722621,0.48360634,0.08192873,-0.11980902,-0.08110193,0.40473637,-0.20346835,0.10500228,-0.09476393,0.27161065,-0.32231167,0.22674908,0.14358751,-0.18992434,0.48071668,-0.1900827,-0.14343785,-0.49136892,-0.15747021,-0.6759757,-0.19491817,-0.05007546,-0.047439992,0.085226655,0.3517969,0.035673786,0.41398406,-0.3412688,0.017685285,-0.054181844,-0.4919092,0.42506316,0.47869775,0.5052942,-0.36856705,0.62580776,0.059313204,-0.088058956,-0.20625985,0.14946078,0.63497007,-0.10823947,0.38643435,0.37819603,0.05341118,0.22037813,0.79435635,0.11606567,0.6375704,0.19035502,-0.03944504,0.19734213,0.08466915,0.2657081,-0.13874058,-0.4770573,0.054182548,-0.118394375,0.28225833,0.38242975,0.14008075,0.41455474,-0.20485334,-0.29087624,-0.05105704,0.27517146,-0.02837723,-1.2428877,0.4016443,0.22617148,0.6650297,0.34476417,0.008818214,0.16622236,0.45356628,0.007415414,0.20389774,0.13108349,0.015592135,-0.41985497,0.49947637,-0.7671003,0.3901649,-0.14962777,-0.011590077,0.059490938,-0.1598282,0.38714728,0.8022321,-0.11732753,0.13305795,-0.13424237,-0.22752774,0.2689195,-0.25813562,0.33918986,-0.4345119,-0.107273936,0.8720358,0.4951263,0.31742492,-0.31456742,0.012361372,0.09658524,-0.06328457,0.059892263,-0.054838866,0.11270646,0.0032728675,-0.6466462,-0.26938698,0.58636016,0.25183985,-0.00741237,-0.011776294,-0.09028506,0.22815609,-0.19641936,-0.07565173,-0.0011091126,-0.62643665,0.019776294,-0.23706545,-0.45193177,0.37272665,-0.20802915,0.21500762,0.17774984,0.19250774,-0.44668713,0.2424643,0.18532057,0.57402974,0.054781977,-0.18575892,-0.2902775,0.27310136,0.24783213,-0.2602877,-0.10698198,-0.38888913,0.14698114,-0.6160354,0.5254043,-0.25352415,-0.47038585,0.13903268,-0.06009921,0.029022349,0.47128415,-0.16915968,-0.14230774,0.13852985,-0.17321476,-0.15449905,-0.18310682,-0.009857497,0.223823,0.3209085,-0.32073572,-0.04481352,-0.057987932,-0.12110967,0.28307623,0.123147376,0.1869631,0.48903033,0.353158,-0.36690024,-0.08885224,0.20596735,0.6461967,-0.089070104,-0.1852711,-0.40716282,-0.30847192,-0.15064944,0.26464608,-0.031766564,0.119613275,0.007993983,-0.2878774,0.7334324,0.16090728,1.0541309,0.14465344,-0.24376357,-0.07818254,0.48715138,-0.024152312,-0.10375898,-0.47094265,0.98095024,0.45410293,-0.25416318,-0.14222133,-0.45519215,-0.09817807,0.08449961,-0.15565589,-0.3955578,0.032233357,-0.7366522,-0.04481851,0.16559322,0.33294052,0.065974556,-0.020022942,0.22569458,0.4219799,-0.018278599,0.03657977,-0.64852583,0.049865264,0.15854342,0.28097633,-0.02280706,0.20994805,-0.28626734,0.31287718,-0.66818804,0.021401158,-0.114168055,0.06447435,0.007451368,-0.4596277,0.072777845,0.2375959,0.38675076,-0.25687483,-0.17090246,-0.13495038,0.30251947,0.27830535,0.11194522,0.7218544,-0.10716933,-0.039896447,0.06915929,0.4488534,0.86928815,0.018286854,-0.06421403,0.2770483,-0.23685272,-0.87083536,0.35905114,-0.29596573,0.21909055,-0.23486526,-0.37413734,-0.52615684,0.36774498,0.22472191,-0.118638135,0.10377914,-0.55247265,-0.047534414,0.15551385,-0.2821283,-0.13313755,-0.17772034,0.047303535,0.837223,-0.1946992,-0.25545004,-0.02696642,0.39108086,-0.2341117,-0.48284158,-0.12784751,-0.48717123,0.15833108,-0.11336883,-0.22485216,0.035837047,0.14133039,-0.3952606,0.3068646,0.2701176,-0.25273088,0.09992166,-0.1968753,-0.08087617,0.5496918,-0.1770105,0.24656664,-0.5388214,-0.54082394,-0.7923922,-0.27032754,0.22561084,0.056430954,0.013668776,-0.6458252,-0.12007254,-0.0067693167,-0.025680194,-0.0036821833,-0.45854467,0.3984282,0.18174376,0.24479805,0.03593406,-0.91761035,-0.038845003,0.108456366,-0.41478306,-0.57601374,0.5069336,-0.09814727,0.7343932,0.029844189,0.24790859,0.21918213,-0.52097803,0.1435399,-0.20705292,-0.10829617,-0.68843204,-0.009917663,266 +400,0.45384988,-0.09524033,-0.40732893,-0.21025448,-0.3141072,0.18412444,-0.050376322,0.20807791,0.23221757,-0.14279862,0.16040035,0.0783851,-0.07177692,0.50051534,-0.21385384,-0.9783025,-0.07474349,-0.063900456,-0.6333643,0.5651518,-0.44270688,0.4032641,-0.050284717,0.2968523,-0.0015423639,0.24083956,0.23884413,0.10812045,-0.10240158,0.12722501,-0.120169275,0.45587644,-0.36408028,0.38608843,0.15799597,-0.21159384,-0.057094313,-0.31657067,-0.10976909,-0.59639835,0.35248095,-0.45983166,0.41684547,-0.14459203,-0.35732526,0.11290743,0.19340947,0.13126275,-0.39975378,0.0009589876,0.14368545,-0.04622346,-0.054822154,0.19484065,-0.20603706,-0.5287585,-0.5974244,-0.093326375,-0.8084968,-0.13637035,-0.106141165,0.18713069,-0.39653024,-0.09343224,-0.13514192,0.6985274,-0.35030344,-0.15002167,0.45487195,-0.19792579,-0.053296693,-0.54693,-0.11423685,0.019707704,0.3222768,0.13660261,-0.14029115,0.4463431,0.30138597,0.41540787,0.071334824,-0.42031017,-0.2209892,-0.17644528,0.046204835,0.45922112,-0.072826214,-0.2471553,-0.22935595,-0.043466214,0.16543616,0.147662,0.07740207,-0.15523736,-0.07552428,-0.017179051,-0.0016736047,0.26368335,0.3247342,-0.3874409,-0.33619326,0.6157457,0.33833668,0.07557799,-0.22322676,0.20025918,-0.11835663,-0.47417757,-0.15718831,0.08145722,-0.007902359,0.23652472,-0.11430577,0.3004275,0.70621043,-0.0800179,0.0957446,-0.1374064,-0.1588621,-0.053742476,-0.33842587,-0.02913847,0.06978865,-0.34366402,-0.045720737,-0.10291972,0.73871857,0.24267352,-0.7365925,0.33562732,-0.3663352,0.10976154,-0.090667605,0.56201226,0.8268512,0.25527954,0.11480234,1.0146823,-0.42557058,-0.024495427,0.10107032,-0.18244742,-0.037381154,-0.035591614,0.38659468,-0.6668652,0.106468186,0.18341026,0.052267723,0.11307082,0.30935138,-0.3748463,-0.33359507,0.020072877,0.5140515,-0.30013213,-0.23245999,0.6642481,1.1587225,1.0096279,-0.025920404,1.013384,0.3481972,-0.14867525,0.052624844,-0.40672487,-0.47506598,0.13013095,0.44086242,0.2538574,0.5226478,0.039343722,-0.06536027,0.57047075,-0.15968452,-0.062009756,0.16279475,0.43797508,0.06142824,-0.2564674,-0.4436925,-0.15716743,0.25234428,-0.099941574,-0.00010420169,0.37821272,-0.21480457,0.4731334,-0.007931194,1.3552004,0.06886153,0.120911755,0.022827348,0.3398795,0.31383696,-0.28639373,0.026786039,0.29749313,0.35541162,-0.15411659,-0.48649994,0.12400267,-0.48841748,-0.47391796,-0.18659557,-0.44166782,-0.16670778,-0.10601066,-0.32305828,-0.099069096,0.0844565,-0.3430731,0.33776632,-3.0528543,-0.15294676,-0.16431154,0.26113138,-0.2651865,-0.18195312,-0.31975406,-0.42180008,0.28126153,0.45666274,0.25447246,-0.46191263,0.2817918,0.3162849,-0.39310017,0.049495168,-0.56703,0.032857664,0.02332282,0.26477566,-0.15663385,-0.050194036,-0.06704243,0.41769236,0.5312585,0.26220387,-0.080114074,0.18211225,0.32019517,-0.07572172,0.37700084,-0.0582995,0.57426184,-0.33342934,-0.014660982,0.43646336,-0.622971,0.42939976,-0.11627383,0.11964867,0.51060224,-0.30331174,-0.9076108,-0.38018623,-0.3507257,1.1581553,-0.5038509,-0.31775257,0.2982478,0.009777402,-0.032328617,0.16479869,0.37960148,-0.024993857,-0.04248945,-0.55774814,0.17724808,-0.094121076,0.024236139,-0.22476503,0.11763295,-0.45527357,0.49039274,-0.07948039,0.75931776,0.24380262,0.1893679,-0.1383919,-0.40334982,0.020925717,0.6766391,0.46105188,-0.024758318,-0.06109696,-0.049315657,-0.14214537,-0.2659121,0.13515913,0.5987855,0.6191048,0.008692869,0.15597306,0.22538118,-0.12997985,0.16017246,-0.008594645,-0.25976652,-0.08730652,0.16702816,0.457126,0.45796332,-0.2714389,0.40236238,-0.026299877,0.060413957,-0.115748756,-0.54172486,0.55871385,0.5975198,-0.23077215,-0.22624995,0.5111379,0.34358692,-0.24956392,0.3976784,-0.49788687,-0.30221015,0.6283165,-0.17703809,-0.3018407,-0.06421724,-0.26600662,-0.047225337,-0.80097336,0.07938332,-0.14039771,-0.5646426,-0.48687235,-0.24510968,-3.121357,-0.049203437,-0.11667514,0.007247075,-0.033992775,-0.03972096,0.1838998,-0.60043275,-0.583346,0.09640265,0.016274137,0.4811661,-0.09478011,0.07231665,-0.21927723,-0.2454926,-0.25829285,0.39115748,-0.04973331,0.33756706,0.16040711,-0.32467422,0.13105968,-0.03562955,-0.55099404,0.020641038,-0.44461316,-0.38802928,-0.048493464,-0.55445236,-0.008713946,0.71349496,-0.26840204,-0.11460099,-0.19513153,0.026655162,-0.14469719,0.24042836,0.17412548,0.27606696,0.07052217,-0.087174736,-0.15231584,-0.37820646,0.3015607,0.12430916,0.4538321,0.5539041,-0.020125683,0.25081435,0.72511375,0.4977155,0.10913236,0.67852086,0.061002553,-0.07570924,0.33854774,-0.35227537,0.018204616,-0.59049845,-0.43066338,-0.15313594,-0.45349145,-0.49255317,-0.261882,-0.42316088,-0.76870805,0.2950196,0.08067303,0.4676194,-0.3790558,0.28460434,0.30923966,-0.21886875,0.07674428,0.010871353,-0.23452584,-0.47454193,-0.38645408,-0.56543565,-0.5540651,0.35337752,1.0189527,-0.4204297,-0.17414631,-0.1718287,-0.31921658,-0.010004108,-0.014531353,0.38954735,0.13697326,0.16513704,0.06782337,-0.7446865,0.42030635,-0.42390585,0.1471453,-0.47900102,0.097790755,0.43879256,-0.43756294,0.56945574,0.17475282,0.22712764,0.12256818,-0.7588315,-0.13147385,0.19371466,-0.018415943,0.47894096,0.27757725,-0.5919338,0.486204,-0.011885123,-0.27427387,-0.5754201,0.38054007,0.060792368,-0.11902827,0.08825853,0.3620037,0.24183919,-0.1443067,-0.034198675,0.26823366,-0.61524713,0.39386144,0.16522308,0.065835975,0.5064687,0.009195398,-0.36379388,-0.46011993,-0.22950779,-0.5346445,-0.17142607,-0.016074581,0.035436977,0.17618386,0.10703725,0.0072663897,0.40704253,-0.30509424,0.22055614,-0.007347954,-0.33774614,0.4819103,0.5055743,0.37311012,-0.5489672,0.47002846,0.1601454,0.08052798,-0.01608239,-0.009620867,0.49586496,0.24696371,0.28952032,-0.17131232,-0.09432394,0.16491,0.64497524,0.080554925,0.14382505,-0.075052485,-0.37406555,0.1669266,0.0704739,0.044603836,-0.03289927,-0.31838742,-0.17849329,0.0071497518,0.14937592,0.41533026,0.19701445,0.25365806,0.06408072,-0.0783517,0.254838,0.08664439,-0.13752861,-0.92799705,0.44301254,0.19263114,0.7419315,0.48725647,0.0006380166,-0.089822486,0.39110282,-0.23895948,0.06725926,0.57469016,-0.32502335,-0.37759215,0.6472431,-0.36975506,0.6463731,-0.16666497,0.05803191,0.13862629,0.2959144,0.3268686,0.8861903,-0.094362155,-0.046670295,-0.018831534,-0.29871488,0.08058386,-0.22998418,0.04862109,-0.52938694,-0.2612485,0.528802,0.37975615,0.2593473,-0.20711033,-0.071941994,0.05308191,-0.27819052,-0.009158313,-0.19605131,-0.10896749,-0.25706786,-0.47779825,-0.45269352,0.49216798,-0.11380552,0.012347422,0.02472507,-0.27637535,0.21265456,-0.034916546,-0.0011343871,0.03304064,-0.68972826,-0.010023334,-0.27562305,-0.5304548,0.41647345,-0.47635296,0.222532,0.19566886,0.008613052,-0.3149208,0.22037268,0.025501218,0.72965676,-0.16158569,-0.2817021,-0.34219572,-0.074515276,0.16621868,-0.3433601,-0.049643468,-0.26082715,0.21194315,-0.46271196,0.5712308,-0.16769716,-0.19689102,-0.13523029,-0.27826047,0.02743409,0.3926303,-0.333508,0.0647496,-0.11664192,-0.06321566,-0.39285082,0.02326909,-0.39702627,0.3117668,-0.019209398,0.024471572,-0.016456153,-0.14975594,0.0016194582,0.16259968,0.07717316,0.04975454,0.24688137,-0.1475563,-0.36882442,0.120040104,0.19018818,0.39243054,0.19270542,0.059810523,-0.3768027,-0.2176578,-0.41617733,0.4259772,-0.25446907,0.20398414,-0.072225094,-0.45073608,0.6362575,0.124637075,1.1477611,-0.005553407,-0.26136163,-0.08468808,0.53459424,0.11416155,0.05499115,-0.20949437,0.95041275,0.62751716,-0.013506219,-0.1178626,-0.4677003,-0.120491095,0.3739079,-0.25592557,-0.20615828,-0.10156398,-0.6493563,-0.17348978,0.104201555,-0.058129538,0.19217263,-0.15354478,-0.24331091,0.020433733,0.34214646,0.36973193,-0.66792554,-0.0902965,0.27500662,0.15011522,0.04822536,0.2812464,-0.4168845,0.3356708,-0.90571386,0.35314772,-0.21836582,0.15662302,-0.24722998,-0.19639175,0.23738466,0.09119594,0.29400992,-0.05965709,-0.3780295,-0.027016087,0.5943031,0.33380884,0.15003355,0.7895232,-0.17591393,-0.088591084,0.1954813,0.6101197,1.259014,0.065414205,-0.07245908,0.15014389,-0.26587024,-0.905564,-0.0012103915,-0.42543712,0.0076610106,-0.20445634,-0.28254622,-0.4406808,0.123706244,0.13434806,0.01964331,0.18186514,-0.44167492,-0.23690076,0.1181832,-0.38049632,-0.2718307,-0.37883678,-0.09994737,0.76254547,-0.4199663,-0.19058558,0.09588815,0.28001183,-0.15005982,-0.69421864,0.19557926,-0.22320363,0.38977104,0.22119477,-0.31541237,-0.18482132,0.20032085,-0.45188966,0.27675417,0.38225105,-0.32760304,-0.0039116316,-0.1920022,-0.19103572,0.9368109,0.08517303,0.2218179,-0.6535165,-0.31244588,-0.79541034,-0.36412832,0.10194767,-0.06349365,-0.14478822,-0.4904177,-0.11282977,-0.12181492,0.10558864,-0.022505283,-0.3937084,0.26123902,0.08612023,0.3051655,-0.00011727427,-0.86005414,-0.055761497,0.028440455,-0.05650461,-0.34175095,0.5013782,-0.2133816,0.7480096,0.052652802,-0.085524954,0.1455786,-0.5187269,0.37122473,-0.32090217,-0.056770317,-0.4081131,0.20097198,270 +401,0.24579717,-0.14658682,-0.46320915,-0.095869824,-0.19628394,0.28422418,-0.031334113,0.55604786,0.20471337,-0.27470914,-0.1219757,0.09348547,-0.005707774,0.30103305,-0.17132306,-0.45468208,-0.052514877,0.14175943,-0.35773233,0.51481277,-0.2860472,0.37658224,-0.28460333,0.36884913,0.08243155,0.35068774,-0.0122299045,-0.040080722,-0.2781281,-0.24511719,-0.048821963,0.46402764,-0.4459595,0.29355332,-0.15607123,-0.2706973,0.05517083,-0.41586837,-0.40574735,-0.55521816,0.17792149,-0.61595637,0.4863588,-0.117133565,-0.18953378,0.5627405,0.102636226,0.13654377,-0.06094211,-0.18506654,0.045834262,-0.1171455,-0.13854882,-0.2956188,-0.25372288,-0.45559496,-0.5010063,0.0633967,-0.33820596,-0.21672685,-0.26193187,0.10708259,-0.32113343,-0.071110494,0.01688941,0.39636064,-0.42274645,0.16188443,0.058205187,-0.18744394,-0.137188,-0.5087637,-0.11030424,-0.05345383,0.24034132,-0.22456264,-0.016160654,0.2762412,0.14268295,0.34905553,-0.114629254,-0.17481408,-0.41638115,-0.18097599,0.109355845,0.55565685,-0.18576707,-0.44979137,-0.026171466,0.06278635,0.1424396,-0.02694577,0.13522479,0.060705964,-0.13666402,-0.030961914,-0.2585296,0.41712552,0.3668533,-0.4322422,-0.4169538,0.37846997,0.46857008,0.1722987,-0.22107589,-0.23591474,-0.044277605,-0.36859372,-0.18401709,-0.13819724,-0.16782995,0.33234784,-0.1447758,0.21275184,0.5229411,-0.21017572,0.0031261656,0.19384238,0.10966523,0.052959908,-0.087496184,-0.26288727,0.124181986,-0.29266733,0.12284434,-0.09979606,0.7591276,0.09722564,-0.54775345,0.4070244,-0.5064131,-0.030261619,-0.10410516,0.39762634,0.44949132,0.51832396,0.2788191,0.43802518,-0.17803974,0.10754539,-0.01848546,-0.31068897,-0.0059344852,-0.25551125,-0.08098738,-0.53565174,0.22288518,0.14976086,-0.017242905,0.14808138,0.26937565,-0.46124104,-0.1502124,0.2723415,0.8870734,-0.2710986,-0.27809185,0.60856014,0.98285323,0.7662825,-0.066434726,1.0025299,0.20812218,-0.22934376,0.114959314,-0.36434636,-0.6295307,0.23436359,0.32031527,-0.49750784,0.36526474,0.17705749,0.103461996,0.21244773,-0.20944871,-0.08066644,-0.19957212,0.17581709,0.26668796,-0.030300502,-0.44215414,-0.3355174,0.07557922,-0.052565802,0.3546771,0.3081307,-0.21495579,0.4115884,-0.0001235434,1.537015,0.08198945,0.049806774,-0.058203876,0.53914815,0.20885542,-0.024420831,-0.064606175,0.36057577,0.22147356,0.0002562276,-0.43973675,0.2645371,-0.16003425,-0.5441952,-0.17019452,-0.40239355,-0.17656788,0.1720084,-0.3079838,-0.12851831,-0.13207066,-0.12289996,0.37047714,-2.8027496,-0.09653532,-0.026376162,0.24673355,-0.2303691,-0.38261768,-0.09528696,-0.3790225,0.2557184,0.29933795,0.48156747,-0.49326906,0.3975615,0.3542773,-0.5312627,-0.22909772,-0.4166904,-0.05683083,-0.04680422,0.43060806,-0.021211224,0.019717712,0.055398952,0.122186996,0.44203326,-0.05890003,0.13416657,0.31460875,0.391654,0.012364136,0.30576953,-0.043960176,0.66162825,-0.22269814,-0.21873166,0.3485845,-0.26374298,0.410857,-0.07076987,0.13329308,0.28478193,-0.26343295,-0.8693676,-0.55737954,-0.026903927,1.3877697,-0.09695341,-0.34418747,0.090235345,-0.45395142,-0.3899776,-0.042861056,0.25983384,-0.19748743,-0.23298843,-0.6486152,0.1627628,-0.069219254,0.13670886,-0.008322247,0.07726274,-0.3555889,0.6015534,-0.035191108,0.45910946,0.12006621,0.18920313,-0.23267166,-0.32805333,-0.021863341,0.7382879,0.34149885,0.103470884,-0.2334194,-0.28210834,-0.20723204,-0.033768144,0.05412901,0.5068597,0.4161058,0.03834201,0.019121375,0.110568285,-0.06437623,0.11222686,-0.22220562,-0.13004728,-0.11424066,0.08664663,0.5521002,0.3943545,-0.22948778,0.49332318,-0.04355996,0.2616761,-0.094743095,-0.36698034,0.3865945,1.0250765,-0.28187162,-0.27608365,0.6585912,0.47950724,-0.29621342,0.27937478,-0.5624481,-0.25968742,0.34323815,-0.2809913,-0.35045582,0.0995925,-0.18747246,0.115661755,-0.9109708,0.22095035,-0.18291971,-0.5264912,-0.52046204,-0.027510703,-3.487447,0.0641934,-0.07157832,-0.18864462,-0.1506588,-0.121852465,0.14258786,-0.60019165,-0.49461618,0.116862066,0.10733471,0.6162811,0.012386901,0.06785528,-0.18170404,-0.39857313,-0.31071255,0.16625921,0.006735146,0.3681291,-0.1075755,-0.48089296,0.012978946,-0.11862743,-0.34932277,0.07381531,-0.5967805,-0.35231924,-0.109263115,-0.5098304,-0.13885686,0.6277482,-0.4311503,-0.020700762,-0.29612812,0.09372682,-0.13610572,0.25366277,-0.017020078,0.078081794,0.21672145,-0.10185406,0.21690424,-0.36012834,0.449059,0.01034918,0.48214895,0.37770694,0.013149304,0.08339034,0.57073647,0.5735253,-0.0006517257,0.7132844,0.38530254,-0.15216693,0.3424572,-0.2449801,-0.28309315,-0.40638906,-0.2928389,0.067317374,-0.276501,-0.41217354,-0.12550585,-0.27165475,-0.8127719,0.53089964,0.00082350627,0.00710898,-0.055061765,0.37146038,0.58104557,-0.11893481,0.119037114,0.0067544603,-0.15519355,-0.52116835,-0.3310761,-0.49619594,-0.31591293,0.102835886,0.95900124,-0.27931514,0.09912995,-0.11288273,-0.19547936,-0.03481598,0.0986549,0.1471566,0.18184707,0.45712143,-0.16422768,-0.5366158,0.37921348,-0.2024831,-0.118541256,-0.4479975,0.10014941,0.48917097,-0.6122666,0.48836845,0.38079858,0.0012607767,0.056075595,-0.3637388,-0.15946753,-0.06471344,-0.1724812,0.22814922,0.28365758,-0.8441334,0.422972,0.23959598,-0.36625177,-0.65010786,0.4538257,-0.09617933,-0.21882303,-0.15377326,0.2679288,0.31005198,0.012659497,-0.14219753,0.15957175,-0.31064728,0.21512787,-0.04073899,-0.009518428,0.29361334,-0.2022675,-0.06743635,-0.687784,0.05422934,-0.38388592,-0.4120688,0.18425317,0.11487909,0.12111634,0.2298709,-0.010700247,0.3044336,-0.48061687,0.058933564,0.03850493,-0.3535253,0.32897156,0.26467726,0.52510685,-0.39161506,0.42802456,-0.017369937,0.057210702,0.17094283,-0.0033393076,0.51697934,0.06903335,0.2922973,0.20811228,-0.22107546,0.14135759,0.8233029,0.20213996,0.40880147,-0.0014775736,-0.18572651,0.26917377,-0.027125362,0.0427442,0.02333327,-0.47656354,-0.053136587,-0.23233652,0.06943976,0.54086405,0.19615872,0.2996536,-0.13130738,-0.28969055,0.14401896,0.06637522,0.12871048,-0.9229373,0.3668565,0.11493269,0.80349874,0.21469013,0.12928748,0.12645216,0.6747362,-0.17052257,0.13489847,0.35718462,-0.026596291,-0.5741334,0.44585842,-0.5682912,0.47147846,-0.014554105,-0.11627442,0.09855523,-0.14647785,0.38616768,0.7765598,-0.24357268,0.023722364,0.2132919,-0.3660105,-0.0028851798,-0.29023027,0.074465975,-0.57191604,-0.10242955,0.57387716,0.46529818,0.3700088,-0.22303107,0.11102333,0.03021649,-0.024675308,-0.018745555,0.052700125,0.12666616,0.04563401,-0.5593737,-0.092334926,0.53922486,0.14808369,0.1557937,-0.03329299,-0.22898553,0.27576062,-0.17113303,-0.15735976,-0.062191702,-0.5225665,0.14149395,-0.0963722,-0.58325356,0.4883177,-0.021452565,0.17585795,0.1168062,0.058078256,-0.28027773,0.36355087,0.15779673,0.63589233,-0.022984222,-0.112879105,-0.3951528,0.079233214,0.044577207,-0.15630631,-0.030135155,-0.29016978,0.065524824,-0.3474719,0.25078517,-0.20724384,-0.33139747,-0.081077136,-0.15158269,0.12783477,0.3839094,0.022058044,0.032920934,-0.12738745,-0.12058357,-0.27277046,-0.2153383,-0.10530512,0.30298042,0.17949489,-0.2953723,-0.232625,-0.24993229,-0.1580257,0.37951928,-0.08695657,0.34749055,0.3834121,0.1370782,-0.19924174,-0.17253372,0.13588543,0.39620194,-0.23088877,-0.04903147,-0.353637,-0.22929862,-0.17392111,0.31922075,-0.18619598,0.14592783,0.16307159,-0.36588544,0.6349682,-0.12721159,0.97131115,0.019159148,-0.29367188,0.1844462,0.4498817,0.09479026,0.06076691,-0.38710663,0.8819863,0.3784526,0.07879947,-0.18614085,-0.43128482,0.02545762,0.1044303,-0.17143796,-0.16110186,-0.071790285,-0.55717075,-0.24436042,0.30152726,0.22734472,0.17814258,0.0023725785,0.20052862,0.12313751,0.104991876,0.3930857,-0.3817862,-0.22103834,0.29511175,0.25327414,-0.083580635,0.2490829,-0.44422117,0.2813469,-0.511612,0.07986663,-0.22797914,0.08812172,-0.25828207,-0.1990029,0.12906666,0.1051021,0.3348128,-0.19633843,-0.37279233,-0.24973209,0.30206487,0.022964586,0.061304577,0.304701,-0.20876524,0.12207001,0.042703208,0.4700172,0.7422163,-0.104615055,0.0653829,0.27314308,-0.23483784,-0.4768483,0.20890555,-0.2691246,0.25996447,-0.011342345,-0.10054456,-0.486456,0.3140974,0.2815628,0.0898362,0.0003995065,-0.39222386,-0.13470836,0.14577372,-0.33668548,-0.1437823,-0.19509114,0.058077477,0.70629585,-0.23646148,-0.17156975,0.034491163,0.35723358,-0.07644645,-0.40265962,-0.01110581,-0.35532552,0.31089434,-0.03979724,-0.33166978,-0.24926415,-0.032557864,-0.38488477,0.24540417,0.39607117,-0.3679144,-0.05684621,-0.26115406,0.12297462,0.81261337,-0.1379319,0.22947869,-0.45625407,-0.45050806,-0.84149116,-0.44502264,0.33448496,0.15585314,-0.14611678,-0.48308197,0.107813634,-0.031394154,-0.4613754,-0.1113679,-0.4436831,0.3428307,0.0602862,0.22947672,-0.105436936,-0.8932409,0.06638295,-0.032198958,-0.22358002,-0.4989309,0.37096277,-0.16574033,0.956117,0.081065096,0.05331933,0.14816426,-0.29201943,-0.03807681,-0.23482838,-0.11607174,-0.55415195,0.17140903,271 +402,0.23145445,-0.009363557,-0.5582789,-0.16954371,-0.22821675,0.13257079,-0.12859263,0.0925191,0.27187538,-0.16909552,-0.032713674,-0.2871717,0.018246353,0.42203125,-0.003671776,-0.79432875,0.05206568,0.06343984,-0.6241165,0.27444932,-0.50046855,0.3354211,0.087092176,0.45370868,-0.17403343,0.4008548,0.30902964,-0.11846461,0.0029663572,0.046667542,-0.19737138,0.14370015,-0.538283,-0.06936648,-0.043421127,-0.27403122,-0.0537891,-0.3704145,-0.41839963,-0.5531065,0.46391037,-0.76514274,0.37076932,-0.04260769,-0.2810386,0.015971167,0.07469871,0.17071728,-0.39346585,0.19100164,0.24383874,-0.24362648,0.020994714,-0.0089995265,-0.39907074,-0.63010937,-0.5965679,0.018460054,-0.52120346,-0.1936406,-0.22901069,0.17400467,-0.38422212,-0.006982646,-0.06019069,0.35252014,-0.39290524,-0.10578104,0.37948796,-0.4113397,0.15191732,-0.3328584,-0.10003046,-0.09135725,0.2950746,0.043204896,-0.13298579,0.09038316,0.4309731,0.6044818,0.092334494,-0.19492066,-0.32486895,-0.18746968,0.15646367,0.6282977,-0.035118695,-0.27888307,-0.17879613,-0.07286803,-0.07466348,0.24056439,0.109405585,-0.41712853,-0.04294942,0.093739934,-0.20026599,0.17701033,0.44768327,-0.470269,-0.3982389,0.35439935,0.29898039,0.12019281,-0.0914394,0.22518887,0.0719325,-0.54857594,-0.27815908,-0.025223702,-0.10405771,0.64698374,-0.17242433,0.34745649,0.7996913,0.02792698,0.07564153,-0.31209686,-0.19617596,-0.12416097,-0.17158036,0.13788517,-0.012328037,-0.41621166,0.17814705,-0.034053486,0.5394943,0.19906278,-0.76447064,0.5340017,-0.556023,0.22500817,-0.086239524,0.63827175,0.7227512,0.17663704,0.23765804,0.87190163,-0.5253693,-0.005262328,0.0064788377,-0.4597947,0.17816223,-0.08153339,0.12432452,-0.4576958,0.1062407,0.23838423,0.07333853,0.1373302,0.36342806,-0.37514946,-0.0041216356,0.026413266,0.8106751,-0.35560375,-0.13859022,0.6121072,0.9618759,0.8597541,0.07377785,1.4753801,0.36296773,-0.17786898,0.14772391,-0.33187765,-0.6001938,0.11625909,0.29389432,0.35878462,0.374019,0.09779961,0.034188617,0.49238124,-0.12504043,0.12491894,-0.08266645,0.041504826,0.19143721,-0.13772239,-0.20934296,-0.1977237,0.14586131,0.095944665,0.029219177,0.19923356,-0.06508358,0.40474457,0.03991801,1.5733042,0.048093643,0.21243067,0.026830545,0.42499354,0.17792644,-0.07458927,-0.08896788,0.44268394,0.21980432,0.06049029,-0.5278666,-0.0116682565,-0.27249768,-0.5254522,-0.18417202,-0.3525742,-0.19308588,-0.04316438,-0.52850825,-0.05999338,0.06518905,-0.35448188,0.46312752,-2.6417944,-0.24222098,-0.19060688,0.34058395,-0.2640289,-0.18008812,-0.28770676,-0.36292055,0.22001727,0.55875224,0.28283387,-0.694956,0.42418766,0.27432123,-0.2685252,-0.21314801,-0.4953084,0.041504435,-0.02078505,0.34669158,-0.045330606,-0.23756354,-0.13936569,0.34016052,0.6377777,0.11515672,-0.08579738,0.17461678,0.5873403,0.08159139,0.46180847,0.024549235,0.56055915,-0.09420212,-0.08255688,0.4064464,-0.41464075,0.39164236,0.0076846564,0.17403606,0.27378866,-0.34013766,-0.83267486,-0.65842295,-0.46857437,1.2061712,-0.41483146,-0.32735398,0.4268702,-0.1342059,-0.25143448,-0.021561358,0.596686,-0.16641276,0.11914352,-0.6985851,0.08324779,-0.1660455,0.17336296,-0.00785133,0.043085583,-0.24992874,0.80226403,-0.07931734,0.4839487,0.36340538,0.15262029,0.07949746,-0.3438166,0.09801947,0.7488329,0.3590071,0.13016237,-0.110056005,-0.07268435,-0.11632722,-0.25402504,0.07961813,0.55165356,0.60345274,-0.0076762266,0.15698598,0.24261053,-0.012201503,-0.021787878,-0.123840876,-0.25019753,0.090719566,0.05918566,0.47622636,0.7069054,-0.3741,0.2757969,-0.09939416,0.12124036,-0.16514038,-0.45752907,0.5261883,0.79528457,-0.16461898,-0.09328121,0.37364727,0.34163094,-0.45888567,0.357362,-0.5916973,-0.23659693,0.6843496,-0.11281093,-0.39087847,0.21402399,-0.2801552,0.00027410686,-0.86811036,0.26294914,0.1750716,-0.40320715,-0.51403326,-0.27967614,-4.4950185,0.10225999,-0.18526812,-0.13812509,-0.13760053,-0.012997559,0.4065496,-0.6050057,-0.6207759,0.0625685,0.01745971,0.41665202,-0.07688614,0.2678681,-0.32680917,0.024705933,-0.24673054,0.27654293,-0.021730285,0.35006994,0.09280316,-0.36108106,-0.049855884,-0.2840156,-0.5269205,0.0009378344,-0.6327223,-0.49194476,-0.1630537,-0.40668264,-0.21566382,0.645712,-0.42108536,0.0008144932,-0.38294727,-0.083821096,-0.40859452,0.39913654,0.26564452,0.08887308,-0.0111034,0.056599755,-0.18582766,-0.21274294,0.2315088,0.09225663,0.29233688,0.46096426,-0.026391953,0.11695484,0.47379836,0.58633476,-0.07350344,0.53068525,0.26499113,-0.016660614,0.41784337,-0.35280338,-0.1543541,-0.6781312,-0.47282353,-0.13813134,-0.47766295,-0.6419017,-0.2785096,-0.3197164,-0.77968884,0.29228207,0.090681635,0.09562083,0.0015735626,0.12996532,0.41385564,-0.17895497,0.08315345,-0.048160758,-0.16572626,-0.60099953,-0.40488562,-0.5267149,-0.59246504,0.2971845,0.99169606,-0.037502546,-0.18614075,-0.014008184,-0.33184072,-0.06279528,0.09328877,0.35553908,0.16236205,0.2711089,-0.121104226,-0.7554353,0.480642,-0.28229204,-0.13182405,-0.7199136,-0.14553468,0.5885606,-0.6625319,0.7391706,0.3132132,0.29622173,0.33746368,-0.51042837,-0.4276042,0.057616323,-0.1442359,0.41375613,0.1986264,-0.6109344,0.46337953,0.058078755,-0.12426666,-0.5467473,0.44034767,-0.095588036,-0.23097238,0.20299038,0.27646226,-0.021566238,-0.15956889,-0.08657404,0.17845353,-0.5409075,0.23083405,0.43624464,0.1373289,0.69748455,0.008753151,-0.17580707,-0.4871199,-0.1321838,-0.3888485,-0.19218354,0.01758334,0.13227496,0.18057561,0.0036745903,-0.16520275,0.34927887,-0.34575075,0.20460579,0.013212289,-0.2320607,0.28847197,0.48172122,0.26833802,-0.55879176,0.63279194,0.02382456,-0.013631408,-0.010585657,0.075239524,0.48127413,0.339052,0.27306303,-0.108052686,-0.19832861,0.07050019,0.8260956,0.2609891,0.28119504,0.14101006,-0.30029565,0.4767959,0.18412113,-0.038354933,-0.12902388,-0.40929016,0.020572288,-0.12518881,0.18973939,0.32859698,0.15979555,0.3318824,-0.04624647,-0.19073853,0.20040295,0.20092826,-0.06407888,-0.8848257,0.24505053,0.30743343,0.73695433,0.5397125,-0.054699536,0.07785439,0.39660814,-0.31073388,0.13261083,0.3516267,0.0025060389,-0.6581925,0.48608676,-0.46558738,0.42157394,-0.16022475,-0.05495014,0.18692581,0.28912768,0.23845135,0.7940397,0.02065594,0.046301913,0.07926922,-0.26689094,-0.04687813,-0.27199724,0.055036772,-0.59368736,-0.25240955,0.5881119,0.4657195,0.26870707,-0.40410948,-0.078658685,0.004940018,-0.11489851,0.026614103,-0.13469787,0.054167587,-0.14018808,-0.7068148,-0.40508646,0.583715,-0.063531466,0.0342194,0.09625184,-0.49710566,0.23337345,-0.2401552,-0.07185093,-0.0021677783,-0.5764381,0.018306818,-0.22410734,-0.64606464,0.3266059,-0.3031401,0.33779842,0.1472805,-0.0056156344,-0.33839735,0.30667183,0.037287258,0.9468637,-0.019571027,-0.021709297,-0.38148436,0.00359737,0.37299934,-0.28551146,-0.2700067,-0.44281915,0.02962571,-0.26452306,0.50878817,-0.18101814,-0.17751952,0.08047997,-0.23548743,-0.03704503,0.4625899,-0.26385167,-0.20532751,0.19710515,-0.025164505,-0.32121223,0.08426776,-0.5218106,0.38554904,-0.078272685,-0.033833876,0.097524405,-0.06113896,-0.10854716,0.32471174,0.085793674,0.12125405,0.36162123,-0.048605297,-0.28388914,-0.11374096,-0.03982205,0.42452118,0.1886103,0.0057397485,-0.23757364,-0.5054969,-0.3518459,0.21630737,-0.11768006,0.1309624,0.2029494,-0.45840195,0.63285726,0.3259376,1.1145824,0.15327676,-0.32892755,0.09749186,0.51999557,0.1312848,0.12182864,-0.38056055,0.86094946,0.64743054,-0.20365776,-0.29488248,-0.26430854,-0.21728945,0.22625473,-0.22228721,-0.24474518,-0.10239165,-0.7756596,-0.23372187,0.07395707,0.1636201,0.1780242,-0.005387408,-0.06695388,-0.019158361,0.13112389,0.3930978,-0.43266425,-0.33225998,0.4231877,0.17442906,0.009009003,0.13466808,-0.24569504,0.529727,-0.5834416,-0.008617686,-0.53135115,0.15980276,-0.12503621,-0.26909098,0.16928016,0.10171033,0.45530823,-0.15439722,-0.24556944,-0.22557256,0.61978656,0.23180728,0.33058444,0.75008476,-0.18378387,-0.085930444,0.0509907,0.56429297,1.4765676,-0.17594932,0.09726155,0.3965622,-0.31849846,-0.5497356,0.05493007,-0.45284218,0.0179833,-0.120588906,-0.37539244,-0.43619114,0.30078173,0.013149278,-0.13049963,0.14204773,-0.40877387,-0.33469492,0.37398693,-0.3075946,-0.3169732,-0.44741938,0.2161769,0.85772806,-0.37935358,-0.24367662,0.18629286,0.21467316,-0.25096673,-0.55969,0.13373365,-0.21434225,0.3764245,0.18045545,-0.4050133,0.037484027,0.27276683,-0.3970843,0.2638262,0.29667354,-0.35167366,0.11412395,-0.3676397,-0.2706081,1.1700188,0.04040704,0.04857164,-0.7550408,-0.41964203,-1.0180337,-0.39300236,0.3911038,0.10896073,-0.16831705,-0.32722783,-0.14685345,-0.042952288,0.098271124,0.0034671447,-0.4536619,0.43698883,0.12567674,0.5963388,-0.058816902,-0.8189311,-0.033756495,0.036828723,-0.33976254,-0.4690457,0.6008158,-0.13092259,0.6335104,0.116472736,-0.03804618,0.29409957,-0.604931,0.28929296,-0.3729282,-0.24152379,-0.79174,0.07594408,278 +403,0.23506545,-0.04745271,-0.5727497,-0.07582389,-0.19750595,0.20315756,-0.33212045,-0.053400125,0.20192198,-0.60655296,0.14427061,-0.15734722,-0.13434647,0.08817638,-0.023916574,-0.65983665,0.14087038,0.20868151,-0.38441107,0.68131894,-0.33795214,0.20459105,0.22740528,0.06716792,-0.3155616,0.06684058,0.12014448,-0.23017468,0.0020063946,-0.2345116,0.24186179,-0.21694052,-0.67305475,0.32572696,-0.16414347,-0.29222178,0.15971753,-0.2197411,-0.36539742,-0.66154444,-0.015355246,-0.6574688,0.42430228,0.057672907,-0.22502716,0.23743887,0.18010256,0.40019575,0.04838633,0.037103213,0.40252572,-0.3971857,-0.44743943,-0.3364059,-0.26329067,-0.527318,-0.61719435,-0.14239536,-0.58644044,-0.063568756,-0.37084177,0.27770692,-0.3108826,-0.12702273,-0.23265198,0.4224287,-0.33094046,-0.09066766,0.20439477,-0.15170206,0.3115857,-0.6825549,-0.085974105,-0.12350445,0.022962779,0.23382504,-0.0056008226,0.19072269,0.090730555,0.64246315,0.11427462,-0.28940943,-0.20679018,-0.09303512,0.313866,0.4786003,-0.1533698,-0.0074018836,-0.13114777,-0.100123934,0.23211776,0.17560038,0.07151873,-0.40858525,0.096470796,0.028265102,-0.2864116,0.24927644,0.57153946,-0.28301406,0.03614617,0.30373335,0.40365642,0.0057160174,-0.22611117,0.004922245,-0.04715121,-0.26485643,-0.09411745,0.19469681,0.057877224,0.3407772,-0.046391,0.28966698,0.4960881,0.057595883,0.035710864,0.04289352,-0.0002531835,0.23175107,-0.21414296,-0.0761037,0.25402918,-0.7588231,0.023281422,-0.56290495,0.6657599,-0.14525904,-0.9907653,0.33044153,-0.38196892,0.056695692,-0.020100351,0.6783906,0.7420593,0.42438123,-0.16499774,0.66460526,-0.5206779,-0.030737562,-0.17519887,-0.17023587,0.08936262,0.039201222,0.5385553,-0.4718495,-0.23803592,0.013537867,-0.10936506,-0.28776667,0.37929398,-0.3939542,-0.27721497,0.25239316,0.937374,-0.20250957,0.011366389,0.4086208,1.3005129,0.82735676,0.13446344,1.1866072,0.20578954,-0.18717949,-0.21709575,-0.24185319,-0.5824296,0.097295836,0.19568647,0.90137875,-0.016944792,0.08178592,-0.20212804,0.45764956,-0.34715304,0.060734797,-0.1511825,0.4183907,-0.09952235,-0.19453189,-0.15729989,-0.061240885,0.10496116,-0.00039066907,0.0071313,0.351954,-0.13738525,0.14736815,0.008602917,1.1915523,-0.2924983,0.23148881,0.058692914,0.132611,0.08887629,-7.955943e-05,0.10997697,0.2205019,0.13071768,-0.087294884,-0.488732,0.01618618,-0.24226893,-0.40457144,-0.24840225,-0.15224467,-0.15645555,-0.046377324,-0.24050985,-0.17134468,-0.06499473,-0.58784264,0.28409258,-2.7056324,-0.220776,-0.18226974,0.29746982,-0.298357,-0.19768713,-0.013742104,-0.41349012,0.7028378,0.2825901,0.29323557,-0.48170656,0.6184581,0.5156712,-0.33841702,-0.0060891933,-0.6707149,-0.07604798,-0.11223644,0.4195211,0.028574884,-0.26730528,-0.056735467,0.09488493,0.37551588,0.034919895,0.13709153,0.568086,0.33353516,0.008246945,0.3351014,0.0066131693,0.4568946,-0.24496563,-0.1098255,0.2496492,-0.30429393,0.3076534,-0.35099524,0.07167822,0.4036906,-0.23195033,-0.42708546,-0.5238752,-0.3661709,1.0956393,-0.12542342,-0.62135726,0.2226601,0.0013945954,-0.24393201,0.10872276,0.5327067,0.019966813,0.10755366,-0.71670204,0.0802294,-0.2424032,0.26144022,-0.020951275,0.03811417,-0.5845661,0.72397655,-0.0705226,0.5315822,0.5591728,0.28697506,-0.09248878,-0.14508401,0.09197513,0.90536106,0.34153137,0.04958568,-0.19902185,0.00389074,-0.13102616,-0.32949987,-0.025296833,0.5462889,0.7137652,-0.15447421,0.11116694,0.32418033,-0.32918054,0.029303143,-0.1799209,-0.58487904,-0.11712968,0.18153858,0.49415675,0.4312647,0.040252086,0.47082895,-0.0062943613,0.17371117,-0.36748573,-0.44276842,0.29046223,0.32893127,-0.25427717,-0.07648124,0.49867827,0.46321386,-0.10761369,0.5319947,-0.51826036,-0.32704774,0.41437265,-0.025185024,-0.5032999,0.066552065,-0.5031818,0.09162898,-0.8189874,0.31454605,-0.6627296,-0.7465683,-0.59417015,-0.15859315,-2.3330917,0.27484977,-0.48657227,0.06508889,-0.15107001,0.096161045,0.30081868,-0.36365375,-0.34936222,0.050955493,0.07502304,0.5049979,-0.0141285,0.003640473,-0.36659044,-0.14378937,-0.24183634,0.36410877,0.107550345,-0.104000024,-0.09445951,-0.16359667,0.073624186,-0.28917474,-0.07834829,-0.04563338,-0.5376492,-0.15025823,-0.22073105,-0.4210479,-0.37983224,0.6185767,-0.37733927,-0.017986286,-0.24423313,-0.067253776,-0.04885975,0.36018854,0.13173485,0.23770057,0.050096292,-0.11927358,-0.27239332,-0.38792592,0.18983123,0.17920391,0.23336144,0.63476783,-0.15545438,-0.023464339,0.45289484,0.4799097,0.17415884,0.8061999,0.3287807,-0.2647585,0.44024563,-0.34573084,7.688999e-06,-0.61260617,-0.155857,-0.15536715,-0.28655344,-0.6161167,0.13307297,-0.29649463,-0.6571917,0.37329096,0.22640796,0.02702873,0.05561375,0.3306551,0.36904716,0.024801042,-0.15959981,-0.13449384,-0.105847254,-0.4062979,-0.36158234,-0.8493252,-0.49576974,0.14072269,0.98784816,-0.10484189,-0.14525047,0.16839586,-0.11401469,0.05065612,0.36193636,0.18486154,0.056389403,0.32367396,0.2815089,-0.720716,0.38311774,0.030139003,0.18779862,-0.7169879,0.2111984,0.7286986,-0.7294275,0.45486125,0.43006548,0.08791359,-0.195534,-0.64197415,-0.111309886,0.25518104,-0.2890467,0.34267145,0.07358463,-0.863933,0.40855506,0.28164268,-0.13944043,-0.81207305,0.30185625,0.086203896,-0.11987233,0.082381725,0.4006054,-0.056530237,0.034323066,-0.14042078,0.30855462,-0.4376456,0.48453298,0.03619268,-0.17021547,0.37191364,-0.14366044,-0.16038443,-0.50006485,0.062946305,-0.476439,-0.2842365,0.3850069,-0.029445311,-0.036743797,0.5757035,0.15949547,0.4256106,-0.28911304,0.14295998,-0.24330516,-0.4703284,0.38000196,0.42741734,0.2619745,-0.35989565,0.64761823,-0.058916368,-0.2506696,-0.17544042,0.12699248,0.4455318,0.13854448,0.52263826,-0.07302995,0.003070844,0.0030032396,0.91548216,0.10832094,0.4887046,0.22423382,-0.05039725,0.3366821,-0.09912108,-0.0513571,-0.27621743,-0.46303436,-0.04404556,0.05101004,0.1857499,0.3757339,0.17904137,0.5864072,-0.057004355,-0.1391627,-0.09444736,0.20552173,0.07299701,-0.7875144,0.45894137,0.16535309,0.61608344,0.63577026,0.023100076,0.052445322,0.56682503,-0.31260914,0.15808606,0.3852496,-0.07059901,-0.2234327,0.60515153,-0.67257386,0.16670573,-0.209367,0.027887711,0.19126691,-0.03162835,0.40858507,0.7787079,-0.28604296,0.032812078,-0.21179898,-0.2279066,0.090337686,-0.08140225,0.27736259,-0.34703264,-0.5170411,0.61050576,0.33062977,0.34866044,-0.24473892,-0.11925285,0.35163635,-0.116137676,0.4872222,0.060040127,-0.043820392,0.14011778,-0.3457038,-0.22694041,0.57175046,-0.29952163,0.060952816,0.17425217,-0.044475906,0.21262716,-0.0762596,-0.13340154,-0.023930298,-0.55602545,0.26515266,-0.31520143,-0.33476236,0.48099694,-0.11075546,0.19033337,0.053733986,0.13605565,-0.028432418,0.27419183,-0.0017484172,0.327131,0.0029890996,-0.19432446,-0.16817696,-0.26692265,-0.03030405,-0.31126657,0.09290415,-0.041929487,0.14693949,-0.75304663,0.47673586,-0.3608628,-0.15361723,0.27294487,-0.2603488,-0.18293297,0.47379106,-0.09410928,0.00017056295,0.3106144,-0.14891891,-0.157694,-0.21539031,-0.16252837,0.21405323,-0.24938774,0.09315101,-0.17489955,-0.13110378,-0.03522433,0.26471177,0.24659726,0.021960417,0.34822708,0.24109542,-0.5371448,-0.040215816,0.19655871,0.32670835,0.14580093,0.059628308,-0.11599856,-0.29070932,-0.35009876,0.3219826,-0.094523944,0.15246384,0.02500445,-0.41996428,0.86508167,0.17430641,0.9100463,0.04083916,-0.20636511,0.011824169,0.43236595,-0.11515414,-0.012937627,-0.413527,0.8157994,0.6964965,0.07684755,-0.030262012,-0.5588953,-0.084573634,0.44830212,-0.16390362,-0.0033503047,-0.008214108,-0.713595,-0.32733992,0.16841435,0.2778484,-0.18291362,-0.21924257,0.011077966,0.15770783,0.15011744,0.18365957,-0.6343337,-0.15339388,0.2643686,0.15730922,-0.039911028,0.35315844,-0.3327794,0.2475429,-0.8166804,0.29832944,-0.1540023,-0.18807295,0.02845114,-0.119735636,0.2272815,0.20285675,0.19834383,-0.10719267,-0.33438084,0.048991244,0.38984802,0.26918322,0.3791545,0.9459616,-0.15316316,-0.098707914,-0.13698637,0.5092591,1.3019911,-0.122719355,0.01706596,0.21103127,-0.29140046,-0.8215129,0.054879718,-0.30997208,0.07057137,-0.032041818,-0.60121745,-0.39415404,0.1507478,0.060088594,-0.3017512,0.08580818,-0.5358166,-0.301181,0.012330526,-0.29904267,-0.20750739,-0.1799897,0.122817576,0.9257932,-0.20607005,-0.035502914,-0.073945284,0.39053124,-0.43875262,-0.5372509,0.18368642,-0.4261401,0.19207726,0.056486093,-0.22499545,-0.016389132,0.15977274,-0.6550183,0.028092384,0.13857412,-0.23485933,-0.14382407,-0.293104,0.15503113,0.61619484,0.05198952,-0.09378926,-0.22628419,-0.6425266,-0.43155617,-0.50960726,0.09056504,0.09554238,-0.09092096,-0.29772687,-0.17145647,-0.118963495,0.09079645,-0.05891643,-0.5441975,0.1443708,0.0668241,0.34269616,-0.32387695,-0.86564875,0.17946123,0.33108893,-0.0958482,-0.4172215,0.3428715,-0.30780396,0.84945387,0.13459818,-0.12512065,0.104683995,-0.68398154,0.46733826,-0.34894416,-0.21871315,-0.6632267,-0.08512299,282 +404,0.41422287,-0.2943224,-0.5383467,-0.1463871,-0.3592012,0.23525749,-0.2188691,0.06890636,0.44218236,-0.19153818,-0.34862575,0.03830496,0.012982556,0.44811985,-0.020386415,-0.78928155,0.004876026,0.2920682,-0.9720071,0.62216866,-0.43668276,0.40779993,0.1496673,0.3812356,0.11573477,0.3009679,0.20500013,0.013116168,-0.18857066,-0.0014657378,-0.1404372,0.12377565,-0.58990043,0.16775814,-0.20175095,-0.31415775,-0.11540948,-0.25407335,-0.2695393,-0.83675593,0.17633244,-1.0048089,0.6097906,-0.2721592,-0.094464116,-0.036238756,0.28021753,0.44597986,-0.34731206,0.024432225,0.23288126,-0.34301156,-0.39043453,-0.35066366,-0.14104474,-0.53587276,-0.614975,-0.08319836,-0.6097851,-0.21828052,-0.2523156,0.33162132,-0.29204613,-0.013833516,-0.19869804,0.419468,-0.31062248,0.024123728,0.36000174,-0.2164123,0.10618763,-0.52757543,0.052196383,-0.055422444,0.40365365,0.11543005,-0.284943,0.32022285,0.49369034,0.44099328,0.40127012,-0.35700026,-0.3380851,0.028593203,0.37232453,0.32996348,0.087210946,-0.13921618,-0.3052377,0.05754485,0.5771445,0.21345903,0.358671,-0.20637143,-0.10225104,-0.07385588,-0.023253156,0.7364507,0.4330445,-0.3535904,-0.47627428,0.4145119,0.8218102,0.3870571,-0.23263738,0.12416345,-0.005758292,-0.4891076,-0.04025991,0.19740912,-0.13120024,0.5619531,-0.29287142,0.08292891,0.77594864,-0.34635752,-0.122746326,0.1957783,-0.07461064,-0.36236483,-0.0057201213,-0.13438651,0.08247779,-0.51088005,-0.1749604,-0.35757297,0.5944252,0.08061727,-0.5516636,0.36099213,-0.47464803,0.2819126,-0.03764221,0.6845449,0.82340133,0.59375095,0.3516725,0.88500845,-0.07901222,0.17376302,0.064212374,-0.4428988,0.17613831,-0.5369817,0.14832652,-0.5612176,0.12568595,-0.26694927,-0.20990553,0.053259052,0.5509231,-0.6935129,-0.043638874,0.14644662,0.7585071,-0.28736967,-0.24030903,0.8174612,1.0321901,1.1074201,-0.0025984156,1.4536582,0.5462135,-0.23360205,-0.07894361,-0.47699183,-0.6619869,0.19214995,0.22345884,-0.34508988,0.5178565,-0.042455725,0.03957981,0.3525298,-0.58502495,0.059682317,0.060182896,0.31242862,0.1362501,-0.17211376,-0.3913498,-0.035761748,-0.039884765,0.043836676,0.46512946,0.16046906,-0.32487872,0.5574533,0.15489766,1.1870193,-0.08292329,-0.096348986,-0.14011407,0.39700368,0.2845921,-0.0009193591,-0.0151500655,0.30058178,0.4514276,-0.29305512,-0.53840584,0.19219849,-0.33929893,-0.2438755,-0.30874047,-0.3405049,-0.10093421,0.071919285,-0.20535794,-0.35754436,0.06415995,-0.45053476,0.42621517,-2.3920176,-0.3578898,-0.0910377,0.45408645,-0.21816145,-0.15700594,-0.16598919,-0.74055,0.12002319,0.18432863,0.3890486,-0.7077447,0.52499473,0.47040147,-0.7022278,-0.27535254,-0.7818342,-0.15393779,-0.008660631,0.5453033,0.15673184,-0.12410198,-0.19252001,0.21429572,0.5167184,0.0031356642,0.034937672,0.7020806,0.41521105,-0.029645149,0.4720006,0.25516433,0.79835546,-0.032638993,-0.28132123,0.5574753,-0.28260934,0.36883974,-0.20677374,0.052508503,0.64966995,-0.19394922,-0.91197693,-0.7231423,-0.21898797,1.1460103,-0.3968074,-0.5561401,-0.030862851,-0.2099096,-0.24364087,0.15282877,0.61005634,-0.12454431,-0.06537421,-0.81854045,-0.07118465,0.082376495,0.3299136,0.032521475,-0.08902215,-0.3283201,0.72991997,-0.15521368,0.51720566,0.018709186,0.46022987,-0.27836245,-0.55915755,0.24126129,1.0293075,0.41344315,-0.11478516,-0.23283848,-0.368786,-0.17535408,-0.1794137,-0.0027485234,0.540548,0.6709609,-0.14197038,0.055116024,0.41388783,-0.12831919,0.08410905,-0.29626375,-0.19613752,-0.026347263,0.060413886,0.41060185,0.89899397,-0.1438873,0.59185225,-0.37273794,0.39519352,0.11684024,-0.88276833,0.84567505,0.77452093,-0.22282699,-0.19747661,0.49995762,0.14907077,-0.59639996,0.6114254,-0.70973593,-0.3542958,0.70465535,-0.13613544,-0.3513708,0.24340929,-0.25061098,0.3737028,-0.86231846,0.4099452,-0.2570779,-0.362379,-0.5437896,-0.04353645,-3.1556756,0.09974488,-0.11966451,0.0046620327,-0.31758186,-0.0644881,0.23811135,-0.47855377,-0.70960635,0.0922742,0.2891528,0.7203246,-0.09629305,0.15877107,-0.11257966,-0.37105268,-0.17896883,0.1823679,0.086954035,0.43877348,-0.26381397,-0.47987846,0.069714285,-0.09417973,-0.46166497,0.06799422,-0.7073221,-0.54748446,-0.17001812,-0.424089,-0.20821716,0.6657731,-0.4706619,0.039242394,-0.5000986,0.20991956,-0.09078692,0.16643417,-0.055038225,0.104280114,0.27515396,-0.021481927,0.1694589,-0.16548122,0.48308566,-0.08520192,0.27945405,0.34701523,0.061094794,0.32467794,0.55536723,0.78275216,-0.22445242,1.0295669,0.4180096,-0.10943239,0.19037355,-0.09350947,-0.41806737,-0.6221811,-0.32055417,0.011535555,-0.52909243,-0.36273023,-0.03109302,-0.33695868,-1.0420599,0.5958633,0.066900276,0.40340668,-0.055586945,0.3663545,0.6038156,-0.016777862,0.07398624,-0.15633266,-0.37135682,-0.46838713,-0.3200283,-0.67951256,-0.60264736,0.13460931,1.0554838,-0.47898215,0.08197888,0.05983197,-0.45141673,0.05339806,0.29448563,-0.09587283,0.28844267,0.5928677,-0.052955117,-0.6463247,0.28734133,-0.10455235,0.07147876,-0.6244008,0.22023334,0.7724792,-0.8229731,0.4070407,0.40411615,-0.09806715,-0.14276823,-0.38910553,-0.074139886,-0.0793337,-0.11394034,0.50743955,0.17150936,-0.56471634,0.4697594,0.13175622,-0.4309257,-0.83915937,0.23526695,-0.13234656,-0.023862375,-0.039068777,0.3615252,-0.005150432,-0.0781809,-0.36609942,0.05218676,-0.35577652,0.28593388,0.27765876,-0.0532269,0.04640222,-0.123485744,-0.46968898,-0.88127106,0.0468843,-0.55876476,-0.23759244,0.16539453,0.16762713,0.1330622,0.08947947,0.24204819,0.48148617,-0.34317008,0.07638886,0.023295853,-0.44814116,0.2501488,0.48890516,0.3233653,-0.4435091,0.49995467,0.11559454,-0.33718663,0.13997217,-0.10512867,0.59831154,0.11050038,0.3610304,0.24353442,-0.0010650924,0.23947704,0.6606902,0.0019293173,0.50483435,0.04647716,-0.25403664,0.30442467,-0.056714006,0.39941838,-0.17001006,-0.49199697,0.07324767,-0.048436157,0.17898151,0.549083,0.38842985,0.39234433,0.16512394,-0.26936808,0.016516423,0.02491859,-0.067226194,-1.5885847,0.2996669,0.3587154,0.93823516,0.35347515,0.015170069,-0.073128626,0.7363321,-0.3684686,0.17983733,0.4688953,0.046107568,-0.43441626,0.5526419,-0.805416,0.41939792,-0.057587285,-0.019349469,0.109958,0.26355308,0.23278114,1.0229714,-0.38565,0.049574427,-0.106408514,-0.11130159,0.07560759,-0.32534647,0.15317467,-0.44043747,-0.60508806,0.86248434,0.3094229,0.45612168,-0.27695435,-0.01696174,0.042610835,-0.30105528,0.41352683,-0.061365597,0.09718013,-0.026130872,-0.51507455,-0.033299875,0.4697511,-0.15056607,0.13851462,-0.08536003,-0.20769031,-0.086862735,-0.1591537,0.04579411,-0.13781554,-0.6594072,-0.31265035,-0.08919033,-0.4962099,0.6063317,-0.06449095,0.15070307,0.28942418,-0.060383867,-0.20628786,0.25216216,0.13648777,0.70053,0.28103423,-0.12457738,-0.35511777,0.3015752,0.32905814,-0.30998713,0.28489324,-0.2132624,0.2416874,-0.5190252,0.72230643,-0.31652954,-0.55289805,0.09184395,-0.31549692,-0.025663001,0.44989404,-0.25686142,-0.24469344,0.21657448,-0.22480714,-0.27695936,0.021741936,-0.27153185,0.08552464,0.36268568,-0.22234908,-0.31996462,-0.3129162,-0.118679285,0.5014943,0.02186881,0.4231808,0.45308608,-0.08719741,-0.38297918,0.11444599,0.35651973,0.49280256,0.19832094,-0.2147392,-0.5753241,-0.40830612,-0.4466551,0.27586183,-0.06226572,0.046192296,0.06019978,-0.3726557,0.8354787,0.105109826,1.4252121,0.09880788,-0.36296198,0.20619938,0.6813239,-0.03376951,-0.027829597,-0.5050135,0.81745625,0.48595557,-0.15018591,-0.036095995,-0.7375699,-0.11171552,0.43515295,-0.41703674,0.027107997,-0.08765215,-0.7123496,-0.5494036,0.22714141,0.18306446,0.09863419,-0.13930377,0.23585667,0.13849768,0.05259948,0.3886444,-0.6436812,-0.19494681,0.31261355,0.13937935,-0.22821738,0.21064162,-0.442903,0.45194992,-0.75718886,-0.03929344,-0.33200523,0.053104836,-0.1281224,-0.33448544,0.23679294,0.19472957,0.14936766,-0.5006662,-0.5303235,-0.2546975,0.61261123,0.055685215,0.09285259,0.5782808,-0.4042699,-0.08201929,0.17738162,0.56082875,1.4631792,-0.33944175,0.15010728,0.22350018,-0.4549275,-0.59386057,0.45469385,-0.44884565,0.091014646,-0.17174338,-0.5180299,-0.61763006,0.30130357,0.10023614,0.19248255,0.24706276,-0.5026784,-0.17456438,0.23446487,-0.4679406,-0.13672975,-0.16467895,0.17887463,0.52063966,-0.38838643,-0.45356116,0.12674902,0.37106076,-0.35941964,-0.36836213,-0.15225145,-0.16670656,0.38496956,0.13620973,-0.4247559,-0.0909325,0.11106556,-0.5728621,0.09468741,0.34618288,-0.37615186,0.11356642,-0.2618569,0.07627376,0.7942744,-0.31549573,0.07322932,-0.6167807,-0.48906103,-0.87332165,-0.2645503,0.029899612,0.11995559,-0.23823701,-0.6642407,-0.076146185,-0.235131,-0.06515025,0.23792514,-0.65094054,0.42021975,0.2365175,0.38319737,-0.36147484,-1.1125528,0.14395793,0.03488756,-0.21224472,-0.69260705,0.63561535,-0.1354967,0.792954,0.18025868,-0.015222154,0.020042721,-0.4667401,0.21152286,-0.34093556,-0.1678462,-0.73658186,0.11051685,287 +405,0.49559793,-0.11373223,-0.43251136,-0.14632963,-0.19897531,0.1493433,-0.16161463,0.49467295,0.21335606,-0.3100244,-0.035734028,-0.0012670329,0.055348404,0.22561404,-0.2659019,-0.63015425,0.019281594,0.0051161083,-0.31034514,0.35541645,-0.4889539,0.4937868,0.120557986,0.2594861,0.014615297,0.2531416,0.37696117,-0.1823827,0.19283812,-0.3468216,-0.18476507,0.27771953,-0.6760337,0.052805755,-0.08297432,-0.33380178,0.15654291,-0.196849,-0.24890949,-0.70695287,0.19987358,-0.7200495,0.63136375,0.13626851,-0.28433168,0.29820538,0.20393656,0.22798201,-0.20247124,-0.03076649,0.04062127,-0.19817127,-0.06957984,-0.21238755,-0.10605942,-0.45861274,-0.5532597,-0.051805634,-0.44425684,-0.12924418,-0.29716936,0.086123586,-0.33037302,0.05077682,-0.033772733,0.31115595,-0.42724174,0.061473858,0.2707785,-0.13760833,0.37149334,-0.5713853,-0.09123856,-0.15476856,0.21524541,-0.13390042,-0.21517403,0.22128525,0.39055124,0.56107074,-0.08021581,-0.19441639,-0.32442123,-0.31274682,-0.03828237,0.5767865,-0.24563535,-0.4302156,-0.15427032,-0.056905396,0.2552692,0.23315422,0.06837045,-0.09321286,-0.15945767,0.08608242,-0.37275797,0.47475287,0.493046,-0.5315599,-0.36268464,0.2633449,0.5374996,0.0070267576,-0.122400224,0.031517345,0.024978843,-0.52395946,-0.123741336,0.021772478,-0.18348482,0.4670991,-0.19471033,0.14469203,0.71549785,-0.29447335,-0.043770473,0.24669476,0.07231972,-0.03955832,-0.19741575,-0.26448476,0.21899624,-0.7420969,0.0325995,-0.355331,0.96096814,0.15581012,-0.6456142,0.32126206,-0.5443036,0.123727955,-0.16397044,0.57789105,0.64949507,0.4483924,0.25643232,0.76499516,-0.5145624,-0.0297458,-0.033858683,-0.34106568,0.3060736,-0.16569725,-0.12356111,-0.4569246,0.05571843,0.17092085,0.12655547,0.20171228,0.2941441,-0.6489216,-0.1290385,0.18374364,0.7485425,-0.32819057,0.025752353,0.6554703,0.999788,0.9271771,0.034458604,1.1994021,0.10633632,-0.27713546,0.13803421,-0.1134945,-0.78849024,0.18093033,0.29402837,-0.0053070104,0.1353151,0.12762192,-0.0099110175,0.2870932,-0.4132059,-0.16854444,-0.19052537,0.42511886,-0.0011820793,-0.02961742,-0.40785095,-0.33238402,0.033334296,0.017514799,0.15028702,0.3633521,-0.1991059,0.4534605,0.08089125,1.184954,-0.048204456,0.14738706,0.14780799,0.45956588,0.31159446,0.011529527,-0.07427903,0.26392698,0.43793032,0.28059813,-0.63937026,-0.0054347515,-0.15766008,-0.3604595,-0.14120078,-0.45003906,-0.05236817,0.07005864,-0.3279679,-0.21893823,-0.16126074,-0.22924638,0.5217735,-2.7134535,-0.05340432,-0.12782297,0.25414175,-0.16573699,-0.29088378,-0.19235066,-0.53722006,0.50292104,0.30555424,0.46586803,-0.6760492,0.24054913,0.46289274,-0.40108013,-0.17830695,-0.70742077,-0.18725054,-0.124459304,0.27575555,0.13207015,-0.15064205,-0.21220478,0.34838858,0.5934897,0.0870567,0.04210645,0.16233842,0.28705075,-0.028459022,0.5672194,0.071788825,0.62280416,-0.20214607,-0.23542754,0.35428736,-0.25265628,0.25253576,-0.19317491,0.08760232,0.3394003,-0.42750576,-0.99726963,-0.7708782,-0.07893306,1.2655901,-0.3192043,-0.33954844,0.22314608,-0.37049556,-0.1877811,-0.13034609,0.30113605,-0.12573169,0.0063122935,-0.67301184,0.14948596,-0.029858215,0.17508109,0.014185028,0.046517346,-0.40059167,0.6772412,-0.15613471,0.42476994,0.27316928,0.18544759,-0.23997341,-0.5780652,-0.07400101,0.96696204,0.4822375,0.04115349,-0.10708048,-0.28444225,-0.2819923,-0.023886519,0.08000682,0.5622774,0.82529056,-0.08609391,0.11228982,0.2543818,-0.12422037,0.091734886,-0.041907568,-0.3813314,-0.03668482,-0.16626248,0.67413586,0.5712504,-0.10466761,0.3266481,-0.012042574,0.4735229,-0.10736205,-0.5195378,0.51404935,0.87177914,-0.19922283,-0.22600631,0.73418945,0.4611109,-0.23605064,0.50375634,-0.68873066,-0.37401035,0.5238337,-0.14439689,-0.39307433,0.18632606,-0.36508408,0.09811846,-0.89398426,0.34611246,-0.37091365,-0.34721714,-0.3409373,-0.08670441,-3.940368,0.16687752,-0.35935575,-0.009286122,-0.1841316,-0.0641621,0.35183525,-0.5677574,-0.4654949,0.21680741,0.14679888,0.7035624,-0.04340321,0.0024035317,-0.26063493,-0.364669,-0.32624382,0.1935652,0.16040935,0.12904757,0.0047823107,-0.36602068,0.114143915,-0.17081808,-0.38873076,0.08726305,-0.33293846,-0.6357069,-0.07085544,-0.38170835,-0.49529272,0.7239719,-0.39081234,0.12608312,-0.108387336,-0.03946308,-0.08708911,0.18551458,0.080497146,-0.050483577,-0.056719482,-0.06402897,0.03356753,-0.42926288,0.40101403,0.05595416,0.29468337,0.23052692,-0.12873766,0.064186715,0.65792435,0.4035121,0.032985147,0.89427215,0.44678932,-0.101967104,0.24703288,-0.22984947,-0.30541328,-0.48579663,-0.3075293,-0.09529705,-0.4090558,-0.26045904,-0.014006759,-0.3781653,-0.7647627,0.5894252,0.010227263,0.12857254,-0.19146974,0.4710957,0.41553995,-0.12307893,0.028032554,0.06762308,-0.2480375,-0.5818353,-0.123690665,-0.73036057,-0.36583576,0.13080779,0.9977604,-0.4565454,0.037647437,-0.08627759,0.04401403,0.17246202,0.17388631,0.13631111,0.2678475,0.52089596,-0.051225927,-0.73280567,0.4838886,-0.25378242,-0.16902302,-0.80810845,0.16862348,0.5089501,-0.86611575,0.3332495,0.5090997,0.02905025,0.050080784,-0.5674138,-0.14508176,-0.095364995,-0.30533788,0.43593344,0.20178351,-0.7864422,0.4676523,0.29279825,-0.13468574,-0.627346,0.5907201,-0.04699189,-0.35415015,-0.048149038,0.38248554,0.31306913,0.101308405,0.020242456,0.18546377,-0.44973344,0.27846318,0.116864935,-0.10130644,0.50110257,-0.19377318,-0.10030768,-0.7212429,-0.028205799,-0.6380494,-0.2791851,0.100414865,0.053263962,-0.019127253,0.29641765,0.09172546,0.51800066,-0.33210462,0.088900685,-0.008550972,-0.34199807,0.62782663,0.48711523,0.4178056,-0.26347128,0.59374154,0.06703191,-0.0947328,-0.0550575,0.07076784,0.57627434,-0.039179724,0.45336014,0.013785276,-0.17490701,0.29675832,0.6732544,0.11506377,0.24708359,-0.039851554,0.0015737755,0.2756982,0.11487353,0.0052245515,0.28697178,-0.41382402,-0.21505383,-0.12306295,0.08021646,0.5653412,0.27264687,0.32983845,-0.10400404,-0.23886026,0.07743056,0.0054281824,-0.11269287,-1.1116968,0.37416738,0.0636378,0.6023516,0.46024424,0.0017942765,-0.022276713,0.5546842,-0.22784102,0.06954878,0.27539405,0.14331968,-0.24121179,0.5955606,-0.8091701,0.5982314,-0.09666278,0.0018714517,0.036739793,-0.12573513,0.3366759,1.0765182,-0.083498135,0.025806189,-0.005654884,-0.34972993,0.2776688,-0.40438884,0.043469615,-0.5514402,-0.14042959,0.6887311,0.3643449,0.36079717,-0.099883236,0.026071284,0.107262634,-0.12053519,0.22568364,-0.057168074,0.084020965,-0.1337264,-0.46222273,-0.18008794,0.5694718,-0.05825654,0.16200992,-0.11608183,-0.1438658,0.36051208,-0.10331617,0.038586617,-0.13465212,-0.53250694,-0.038775157,-0.29473755,-0.3539393,0.61096746,-0.35715553,0.26983255,0.30209413,0.111229606,-0.27401915,0.22210124,0.18515134,0.54665965,-0.16134048,-0.22649248,-0.4269441,0.0770527,0.08951255,-0.15783063,-0.06939819,-0.39662462,0.2511279,-0.64427316,0.31911302,-0.20703506,-0.28802705,-0.052243233,-0.17298543,0.01631249,0.52668566,-0.1958755,-0.09264374,-0.06608613,-0.28784016,-0.18444017,-0.28217086,-0.13548689,0.12296073,0.15495324,-0.097873494,-0.05212333,-0.4451458,-0.18079512,0.263612,0.04537761,0.34195575,0.23333934,0.07312072,-0.257888,-0.073168345,0.10673002,0.3543063,-0.24788664,-0.07308253,-0.35270172,-0.58922404,-0.22145617,0.27012274,-0.16884777,0.29238325,0.0077830814,-0.23176575,0.7252537,-0.061948456,0.98234284,-0.0049935924,-0.33697006,-0.06697873,0.7159947,-0.14585164,-0.067672916,-0.21299423,1.0038955,0.5832491,-0.24431539,-0.17563811,-0.35849133,-0.07624823,0.15586875,-0.21197882,-0.06810522,-0.020141179,-0.58172405,-0.20887966,0.23239926,0.3206373,0.21396813,-0.0028802922,-0.02994141,0.1642343,0.076360054,0.31038398,-0.46967396,-0.10292588,0.2554158,0.29040736,-0.00208503,0.12332169,-0.44662005,0.36532912,-0.41633496,-0.03784791,-0.32926163,0.11221717,-0.21432444,-0.2819798,0.28735036,-0.0423257,0.32543054,-0.28439352,-0.41646835,-0.14249495,0.37123448,0.19110966,0.1548468,0.59463114,-0.2531231,0.032375075,-0.071269855,0.53681135,1.21333,-0.19227734,-0.19524609,0.32789034,-0.32766122,-0.49686003,0.14225137,-0.38151416,0.10971129,0.053965945,-0.29098812,-0.4258608,0.25882098,0.22954284,0.15358911,0.19397675,-0.6161637,-0.28499898,0.1439279,-0.34807822,-0.26937792,-0.31507906,0.1480156,0.67362297,-0.27785853,-0.057794858,-0.018146308,0.31891632,-0.16522683,-0.6962818,-0.08986782,-0.3493239,0.3514214,0.2506736,-0.3485396,-0.018961983,0.0987244,-0.46628904,0.15995231,0.36719704,-0.2875555,0.049794454,-0.33210054,0.11592233,0.75685483,-0.16861632,-0.008444203,-0.45143026,-0.38255662,-0.7935335,-0.23466666,0.6262702,0.22172062,0.07367506,-0.50293285,-0.10099159,-0.1129602,-0.0059638917,-0.08813892,-0.43153545,0.5447985,0.10112857,0.346539,0.018558612,-0.96264726,0.1228373,-0.053889584,-0.18516555,-0.6271497,0.5927741,-0.16614139,0.7955293,0.29593596,0.0008276999,0.3807612,-0.42047504,-0.013684788,-0.23857678,-0.20151846,-0.8035348,0.0180778,289 +406,0.28159493,-0.09008052,-0.35851988,-0.21859573,-0.10078015,0.23898748,-0.18357746,0.3516666,0.09668987,-0.56820714,-0.019168606,-0.1278969,0.1164482,0.3507708,-0.24197449,-0.5357297,0.120787084,0.047414757,-0.37454623,0.15120907,-0.5220246,0.22927365,0.003119605,0.20816305,-0.0006581332,0.1628466,0.27488083,-0.25984448,-0.15970114,-0.30271927,-0.19240855,0.18072847,-0.5028818,0.06531618,-0.04432589,-0.17477274,0.14285776,-0.48105127,-0.5013755,-0.5970926,0.27828833,-0.91347283,0.62874633,0.00090426207,-0.10880363,0.38980743,0.093047164,0.0608647,-0.15490015,0.07567094,0.18637218,-0.2744761,-0.106384926,-0.028374646,-0.4067927,-0.56203526,-0.6306978,0.045597296,-0.52056354,-0.12944305,-0.40047255,0.14671738,-0.33881783,-0.05925181,-0.19373994,0.31669328,-0.2995933,-0.18483952,0.13360766,-0.16188143,0.35010123,-0.5831303,-0.21922424,0.1259298,0.26989725,-0.14875256,-0.049837563,0.2915499,0.28474465,0.5406626,-0.0038598967,-0.2557019,-0.309359,0.018738836,0.12141699,0.66684437,-0.19519925,-0.458381,-0.13882552,-0.008974472,0.166322,0.3088984,0.08747179,-0.28275964,-0.18722706,0.28707513,-0.3818756,0.427995,0.58662933,-0.405123,-0.16522779,0.45351568,0.20728591,0.13441911,-0.013877236,0.008022721,-0.014260556,-0.6051206,-0.16549538,0.22904478,-0.08895826,0.5286153,-0.12083026,0.44143218,0.6807102,-0.10177684,0.1600986,0.1261937,0.0046893912,-0.058544833,-0.143206,-0.07099415,0.12402581,-0.52669615,0.16951783,-0.26434568,0.8973502,0.1302907,-0.78422123,0.45248127,-0.4042398,0.107982114,-0.115800224,0.47726837,0.48542595,0.4724919,0.1539775,0.7567247,-0.63907725,-0.04376089,0.060177367,-0.4872165,0.13517565,0.025250385,0.10182587,-0.39450955,-0.07508711,0.17736228,0.14818919,-0.09019042,0.4200762,-0.4413816,-0.07643998,0.19283223,0.83031553,-0.31757173,-0.076601684,0.5540642,1.0984724,0.8946497,0.049140964,1.254482,0.20022568,-0.104009405,0.11268098,-0.11980418,-0.68723506,0.31014326,0.40477154,0.22942089,0.16366927,0.08687939,-0.050343554,0.3734261,-0.29195827,-0.11448509,-0.24029104,0.26575536,0.13110422,-0.21113935,-0.41911158,-0.26900706,0.0051169395,-0.08042187,0.26862928,0.10690861,-0.12177974,0.24082412,0.088424526,1.4361693,-0.15254669,0.1810743,0.0775616,0.55343276,0.17528065,0.09232623,0.041913185,0.16697733,0.4881063,-0.015613275,-0.57971424,-0.13033918,-0.23868275,-0.5025602,-0.124535285,-0.3012991,-0.1366492,-0.04695389,-0.46447513,-0.17720489,0.034138154,-0.43791193,0.73673683,-2.8819296,-0.10894305,-0.19264719,0.46314567,-0.22694276,-0.36805624,-0.054473843,-0.47802782,0.68227875,0.35112837,0.41383025,-0.6185179,0.43797466,0.4703009,-0.23008525,-0.1661167,-0.7749143,-0.04395271,-0.05057172,0.23813546,0.12573239,-0.33309975,-0.14853965,0.040322166,0.5594502,0.050457064,0.047506742,0.1467336,0.3885239,0.0024534464,0.52157307,-0.07397159,0.57425886,-0.2131667,-0.031336162,0.20886435,-0.3826352,0.30008307,-0.16429043,0.22180167,0.35037965,-0.29533592,-0.81300557,-0.5851313,-0.35586438,1.182286,-0.1305394,-0.3572171,0.3558516,0.017574744,-0.28870004,0.036054287,0.46811506,-0.1655879,0.011654821,-0.61834323,0.029440213,-0.093197025,0.075667806,-0.12590034,0.11825864,-0.5521257,0.72774726,-0.18843417,0.48767924,0.27689156,0.28918192,-0.21117125,-0.3819138,-0.1336442,0.77149,0.29592016,0.07653821,-0.172819,-0.27016824,-0.19288097,-0.27662948,0.025862062,0.50153816,0.7552768,0.0735405,-0.014104477,0.22639771,0.016623374,0.017674077,-0.07445582,-0.34109685,-0.12797607,-0.14758042,0.62788314,0.3794501,-0.08001893,0.34908107,-0.2253935,0.20848104,-0.32028988,-0.3933101,0.5169257,0.56216973,-0.21678734,-0.1866807,0.5380441,0.35748428,-0.17215298,0.33532792,-0.704012,-0.38423726,0.57617587,-0.24118617,-0.5670281,0.08663372,-0.23493831,-0.059201177,-0.81580955,0.44260755,-0.21581472,-0.6529433,-0.27505523,-0.26076037,-3.9576268,-0.001063878,-0.28487897,-0.16662642,-0.15573423,-0.19911538,0.3131079,-0.5132001,-0.3652002,0.11435998,-0.049233735,0.55269516,0.09612893,0.094597384,-0.32861423,-0.016824761,-0.46845165,0.20649482,-0.08630215,0.2452676,0.06188928,-0.20308979,0.1953109,-0.3187576,-0.5418849,0.15770392,-0.6512435,-0.40493384,-0.13433294,-0.40685442,-0.4300765,0.69944984,-0.41348234,0.10264344,-0.3318487,0.15425776,-0.33946735,0.47306064,0.08280705,0.15274382,-0.115098976,-0.14520833,0.07112529,-0.3128939,0.4343597,0.037403848,0.38637713,0.44481784,-0.1657233,-0.04231255,0.42131805,0.54437196,-0.008756825,0.8042405,0.28345123,0.012635767,0.3697048,-0.24429901,-0.23280147,-0.5063557,-0.47941834,0.18935147,-0.3851095,-0.37764832,-0.2144657,-0.28090936,-0.62469834,0.39832634,0.029927135,0.20054182,-0.063236274,0.069307394,0.39663714,-0.15228476,-0.06045092,0.080770895,-0.008482941,-0.33507124,-0.25994736,-0.6723104,-0.4723104,-0.0018891181,0.7402555,0.019478107,-0.16919883,0.072154514,-0.19969606,0.09432536,-0.047817267,0.102845386,0.050721783,0.29593238,-0.014854844,-0.81742054,0.44311878,-0.27732217,-0.1352503,-0.647072,0.12403465,0.5496348,-0.5702459,0.59054035,0.443473,0.25978082,-0.10738169,-0.52528965,-0.3117974,-0.12370287,-0.19437993,0.404428,-0.026710808,-1.0040817,0.595565,0.3858962,-0.3406918,-0.4979692,0.45907837,0.0780082,-0.04471161,0.08898073,0.3164452,0.08863737,-0.012602457,0.011625767,0.23439194,-0.6638881,0.48521775,0.32187372,0.14753316,0.57010627,-0.107427895,-0.11324309,-0.45670447,-0.24451229,-0.40877393,-0.12432181,-0.0060533327,-0.04466185,0.12497131,0.15492404,-0.09849975,0.42115492,-0.40830997,0.12672964,0.00946968,-0.19341592,0.34050146,0.4842151,0.3582224,-0.3008688,0.5817066,-0.0019252513,0.020290038,0.035262804,0.05190434,0.53376156,0.22101323,0.29383233,-0.13406713,-0.21779068,0.23111169,0.8832313,0.12255459,0.49921027,0.21257319,-0.1400472,0.23456414,0.10648275,0.052815277,0.17411225,-0.44803324,-0.09862779,-0.117552586,0.07305263,0.4904871,0.09160062,0.27864915,-0.09359776,-0.08777741,-0.034111984,0.11027121,-0.15395604,-1.0430405,0.3748143,0.12796481,0.70518607,0.20298554,-0.063527055,-0.06140862,0.61267394,-0.08260205,0.0865683,0.17917177,0.09500033,-0.566915,0.63236696,-0.57716423,0.34144622,-0.12660518,-0.07025321,0.022887895,0.06728102,0.33442068,0.8617431,-0.13432018,0.07911412,-0.08034929,-0.30619553,0.3347652,-0.3002247,0.18405107,-0.3145619,-0.15302838,0.606638,0.46027136,0.38173747,-0.17100349,-0.116270594,0.06834028,-0.09395611,-0.005945844,0.009307138,0.07530505,-0.14232664,-0.6948666,-0.3677426,0.41769674,0.19628641,0.19745357,0.10172141,-0.30410868,0.2645521,-0.33821052,-0.007836009,-0.03744602,-0.66390115,-0.033902735,-0.255725,-0.4884103,0.06407445,-0.22347435,0.30104575,0.2445388,0.03918148,-0.11303656,0.22581883,0.26757917,0.8502823,-0.065813035,-0.2340513,-0.5651774,-0.18371223,0.19380221,-0.2459211,-0.1685284,-0.31863362,-0.11587211,-0.59024537,0.1809326,-0.124523364,-0.11046847,0.37354198,-0.18331674,-0.049408674,0.5823804,-0.2403181,0.009062929,0.017719997,0.0053043193,-0.17012219,-0.13549812,-0.07277884,0.13978282,0.14212601,-0.0649911,-0.03183334,-0.18295597,-0.123145275,0.25505295,0.18427214,0.28308755,0.46825314,0.16393313,-0.32718673,-0.24234952,0.056115743,0.6532022,0.118226536,-0.05754108,-0.32717386,-0.51398444,-0.21747205,0.14578208,-0.10151972,0.26511246,-0.007017312,-0.30785307,0.59882355,-0.09615673,0.98359096,0.15641172,-0.32116106,-0.058487836,0.63857454,0.03472957,0.031402882,-0.3772624,0.82751364,0.4320615,0.025377512,-0.0844715,-0.3642068,-0.056342877,0.34224898,-0.29740575,-0.19224122,-0.1782392,-0.7390518,-0.2573679,0.2500554,0.11592059,0.093617186,0.032981582,-0.06013627,0.30659795,0.15659787,0.5810541,-0.57502204,-0.0569784,0.2816394,0.28021207,0.028255804,0.21593009,-0.38150004,0.31791434,-0.52768487,0.12078724,-0.23236938,0.1083781,-0.08306318,-0.10263574,0.31005576,0.004593747,0.4437932,-0.1572891,-0.36286116,0.09740623,0.42327628,0.22792499,0.31828958,0.69301844,-0.12224346,-0.067615405,0.04438894,0.61223215,1.1193997,-0.16454005,0.1971518,0.57772404,-0.28916326,-0.69031906,0.30040187,-0.3368182,0.12303931,-0.08645504,-0.23538947,-0.2150272,0.29614273,0.29217187,-0.0049091107,0.16713245,-0.526344,-0.40374848,0.49994668,-0.21093185,-0.23787113,-0.3483306,0.16056572,0.6515413,-0.29694393,-0.049743406,0.03226674,0.36464277,-0.15899189,-0.5570212,0.11822719,-0.33183494,0.3177788,0.06884616,-0.33749261,-0.04174963,-0.13865288,-0.3731542,0.24424338,0.055614945,-0.39405584,0.070377536,-0.19133507,-0.04234932,0.6644951,-0.13782038,0.10584477,-0.83728284,-0.4341419,-0.8475522,-0.401465,0.24365583,0.15210922,-0.13151179,-0.36371145,-0.18200795,0.06965122,-0.00011745521,-0.05445722,-0.40836263,0.35044903,0.040066738,0.44681388,-0.021000383,-0.5412161,-0.015513952,0.026568536,-0.25040138,-0.38917205,0.65636665,-0.21858136,0.7423674,0.09723462,0.0909271,0.10189156,-0.41505864,0.16337214,-0.25621024,-0.18487266,-0.71364087,0.12533066,293 +407,0.2574934,-0.40114927,-0.77438706,-0.03504726,-0.33789095,0.092737235,-0.34906378,0.23692551,0.21962139,-0.27409583,-0.3648786,-0.014192308,0.12662297,0.3882135,0.0045804554,-0.48382878,-0.060538914,0.2931175,-0.75319475,0.5086504,-0.53058285,0.27307153,0.15130024,0.44241977,0.22822942,0.29712185,0.24937762,0.053641077,-0.042126685,-0.07424921,-0.032009523,0.23643814,-0.5334531,0.08907193,-0.35862565,-0.32458353,-0.14958099,-0.47805473,-0.2697077,-0.7488908,0.07022079,-1.1014557,0.5463216,-0.11748702,-0.29842052,-0.14080156,0.39690405,0.37437645,-0.29840806,0.1389512,0.16076262,-0.34012797,-0.43123683,-0.34093815,-0.18306005,-0.3481762,-0.4192806,-0.014831379,-0.5124149,-0.07694914,-0.1822489,0.23271534,-0.25045964,0.07515186,-0.19593203,0.23649254,-0.54117423,-0.058536027,0.37012318,-0.28428286,0.27058896,-0.5792419,-0.06867781,-0.16877249,0.5400511,0.07465552,-0.49354213,0.29403993,0.36440834,0.46758467,0.2324978,-0.24986982,-0.27855515,-0.09425471,0.36036614,0.52988786,-0.025905404,0.02015287,-0.3654154,0.0656187,0.4386813,0.4555928,0.08034242,-0.28776976,-0.18160424,-0.22993703,-0.015977442,0.27237156,0.5191483,-0.1223471,-0.38885233,0.25747535,0.72541136,0.4033931,-0.35788226,0.068118855,-0.050912607,-0.5309242,-0.12410446,0.12461164,0.050240915,0.45443574,-0.19717948,0.13290395,0.7333979,-0.042614136,-0.1163406,0.0429401,-0.008304582,-0.22036944,-0.35969862,-0.18237598,0.23529471,-0.5692482,0.13837908,-0.34705427,0.43749857,0.15743734,-0.5308755,0.36060518,-0.5812898,0.24514484,-0.034506846,0.612405,0.78340876,0.47949415,0.33564398,0.83048725,-0.2077731,0.14030379,-0.20487364,-0.28735456,0.06982272,-0.37741783,0.027869496,-0.44935623,0.21074308,-0.26415995,-0.0024713385,0.14270958,0.5640931,-0.4377261,-0.14161669,0.2171431,0.6230294,-0.3301318,-0.074474216,0.91625416,0.85208213,1.1702635,0.10129457,1.2879229,0.24593528,-0.20251353,-0.14016365,-0.11022017,-0.61874133,0.24570091,0.35993713,0.33312592,0.32510272,-0.09250051,-0.067958824,0.55760956,-0.48119885,-0.010531821,-0.04441179,0.03130447,0.15587957,-0.21395577,-0.49024534,-0.18688706,0.009827948,0.16849415,0.10631419,0.21295854,-0.20873679,0.55311984,-0.10215696,1.2973393,-0.17970999,-0.048562653,0.17609254,0.24714105,0.20791762,-0.3205492,-0.05582883,0.3067616,0.46290943,-0.056136716,-0.6205133,0.13132705,-0.28461918,-0.4513669,-0.14378966,-0.42162424,-0.2185173,-0.07050633,-0.5434925,-0.18063812,-0.037738297,-0.30111265,0.36237684,-2.4485078,-0.24162133,-0.2703567,0.31408828,-0.21522318,-0.18397579,-0.31997448,-0.48836428,0.26742467,0.19975321,0.4250413,-0.5103517,0.6073242,0.47597286,-0.66578,-0.1302098,-0.74234474,-0.0959236,-0.12126713,0.43006024,0.09983766,-0.1378133,-0.14731121,0.015561023,0.80015934,-0.06985849,0.12583895,0.6485321,0.3695183,-0.08020652,0.55481106,0.058424048,0.682062,-0.51449865,-0.25678638,0.6156525,-0.27726874,0.52454895,-0.1243232,0.035467483,0.60978717,-0.47768328,-1.0278707,-0.6565207,-0.32083926,1.290843,-0.38605985,-0.5433045,0.13584544,-0.53974885,-0.24866602,0.061657343,0.7188172,-0.03536972,0.20512946,-0.80771977,-0.075458124,0.014183735,0.18962774,-0.07148535,-0.09431766,-0.4189756,0.893396,-0.058150087,0.7300393,0.26148826,0.2482809,0.056492202,-0.31473532,0.13216704,0.68390757,0.42645612,-0.077948704,-0.29055294,-0.30207983,-0.13930026,-0.07653308,0.08144585,0.7112337,0.58505976,-0.0894176,0.23265718,0.2887923,0.06049121,0.008998805,-0.33456606,-0.07235477,-0.19332297,0.23396175,0.57728416,0.93526304,0.038904674,0.31106836,-0.3171467,0.48798323,0.08797031,-0.73952436,0.5527817,0.76083046,-0.21366188,-0.12655799,0.615048,0.49690226,-0.34527066,0.5571303,-0.7252892,-0.38363823,0.3222573,-0.2143931,-0.30976906,0.2588778,-0.34218258,0.2728316,-0.806725,0.26366302,-0.35240296,-0.3779169,-0.51816714,-0.15326096,-2.836033,0.2728941,-0.062043965,-0.09299808,-0.3514356,-0.33313295,0.34463856,-0.5265837,-0.6856193,0.13369967,0.16289894,0.7562779,-0.12714483,-0.00957495,-0.27135798,-0.42940864,-0.05116278,0.2069436,0.19877045,0.30077824,-0.35490865,-0.45808345,-0.11767956,-0.17252974,-0.48795423,-0.057695556,-0.6177057,-0.46282068,-0.109795816,-0.27090478,-0.106535956,0.40238214,-0.32557625,0.108314596,-0.20600656,0.13408773,-0.11634755,0.21891038,0.061518285,0.30658373,0.24888577,-0.04554724,0.19697225,-0.13141246,0.36122975,0.0020740617,0.18004027,0.085214876,-0.0873322,0.3410838,0.422991,0.7500806,-0.48607507,1.0948254,0.49896416,0.0037487377,0.20936301,-0.19697778,-0.5132271,-0.6151103,-0.22214015,0.035898115,-0.53425634,-0.48666954,0.12913178,-0.14003573,-1.0077415,0.71197826,0.12528257,0.2993031,-0.032108277,0.23535347,0.5698732,-0.24616316,-0.02203734,-0.016279805,-0.15761553,-0.50194687,-0.45095962,-0.64985895,-0.65407866,-0.20682468,1.0640577,-0.25432104,0.23606814,-0.00051796436,-0.38317034,0.109786525,0.42807177,0.07682405,0.23474249,0.5788045,0.029265797,-0.53843147,0.29917583,-0.087419726,-0.20721881,-0.5022864,0.3054864,0.69534874,-0.7392064,0.63201815,0.42179933,-0.02469239,-0.072138704,-0.6371999,-0.25996608,-0.19703595,-0.25176385,0.69304734,0.28285557,-0.8556137,0.5616544,0.31325048,-0.3914359,-0.7256865,0.37831512,-0.22957219,-0.15454125,-0.09832602,0.3225369,-0.03885574,-0.08075366,-0.19457412,0.13000216,-0.34480554,0.10334621,0.210025,-0.09845669,0.064156845,-0.3427394,-0.22312617,-0.76380587,-0.005107965,-0.5750857,-0.21346201,0.3363541,-0.15042697,-0.06443543,0.074497834,0.1461967,0.38374904,-0.25867823,0.10114422,-0.28858092,-0.53723544,0.26573494,0.48595756,0.34681994,-0.40072426,0.63795936,0.113188215,-0.2835928,0.1584799,0.091559514,0.4124269,-0.038847327,0.4924375,-0.39283156,-0.16799116,0.19162369,0.7809061,0.13948934,0.43771654,-0.04086403,-0.16304709,0.32047248,0.10276377,0.34811562,-0.37355807,-0.3937197,0.05135366,-0.2237805,0.18890692,0.44028282,0.36238006,0.3980034,0.095078655,-0.090891704,0.04867465,0.22886331,0.111608915,-1.2698157,0.48196188,0.2850093,0.94228977,0.48211473,0.03351432,-0.15974028,0.66069657,-0.37107587,-0.08204283,0.40184978,-0.024750974,-0.5105435,0.5167014,-0.801907,0.51514703,-0.16770923,-0.0722267,0.18467672,0.179504,0.5228799,0.86814326,-0.24998224,0.20254381,0.039384935,-0.070897855,-0.0036438128,-0.4047737,-0.14257939,-0.51281345,-0.52343017,0.9973585,0.49372885,0.72592765,-0.30345473,0.027005255,0.05446944,-0.19408022,0.34509674,-0.054428186,0.100004084,-0.03162179,-0.49599904,0.09009819,0.41914526,0.086419456,0.23294571,-0.049836986,-0.50448185,0.12894312,-0.16010126,-0.017213723,-0.18602657,-0.64068305,-0.087572254,-0.37372705,-0.6951278,0.3483474,-0.07043115,0.14217432,0.3600974,-0.033825148,-0.14138037,0.3801458,-0.35895663,1.0718479,0.081044674,-0.15793668,-0.16939114,0.2760717,0.32839605,-0.30630675,0.07359262,-0.39219382,0.24280922,-0.5246528,0.6746708,-0.13171229,-0.66307986,0.3572987,-0.15533777,-0.13185382,0.606308,-0.08143915,-0.22759728,0.17306122,-0.104667716,-0.5145486,-0.1446725,-0.2991574,0.18276943,0.11839918,-0.049387235,-0.23725566,-0.15895943,0.051688332,0.63758713,-0.096976474,0.44334453,0.34568092,-0.06360694,-0.3916235,0.23029968,0.3164995,0.6017216,0.14298327,-0.1289129,-0.40752992,-0.59602255,-0.34833685,0.33165306,-0.08549216,0.24838114,0.05390174,-0.06868007,1.0323819,0.13558623,1.0578755,0.06452019,-0.3597323,0.25539207,0.491484,-0.08437423,-0.12360733,-0.3638642,0.6871579,0.5010651,-0.19469298,-0.049278047,-0.5507328,-0.08551623,0.17382407,-0.42743307,0.07429787,-0.14048325,-0.651245,-0.440095,0.10794226,0.18913524,0.3452757,-0.23924457,0.15117586,0.1460375,-0.06986536,0.2346829,-0.62913334,-0.3387831,0.30351093,0.23233049,-0.44902557,0.076261185,-0.43294358,0.41856557,-0.6064752,0.0052665705,-0.42237917,0.13228868,-0.28253847,-0.4055483,0.17495346,-0.034594245,0.25013158,-0.47321758,-0.20859589,-0.14733705,0.53044647,0.090216435,0.15151401,0.5411631,-0.31811184,0.1383043,0.24904351,0.44411543,1.1432312,-0.5068604,0.029453387,0.30463436,-0.3756102,-0.48504132,0.3516558,-0.49405113,0.098250456,0.052207332,-0.5398807,-0.5837593,0.30928844,0.25413045,0.1705254,0.01600303,-0.59538513,-0.06444395,0.21647267,-0.20876972,-0.14549105,-0.3639059,0.21176393,0.48202488,-0.1430641,-0.3466477,0.0770524,0.21014556,-0.3060255,-0.34191218,0.04658342,-0.23042585,0.30934593,-0.024699867,-0.35615322,-0.056477673,0.06226616,-0.5580017,0.05190865,0.20459047,-0.22812745,0.07978503,-0.328208,0.11100377,1.0072999,-0.34619185,0.06572926,-0.4000366,-0.5550141,-0.96381366,-0.3581104,0.23120198,0.17576577,0.0047146934,-0.5100617,0.13752624,-0.1743082,-0.2740767,0.03388181,-0.38967755,0.37227377,0.10067088,0.5177223,-0.2630598,-0.82982886,0.2693449,0.032383554,-0.17976096,-0.3790421,0.6094846,-0.08614038,0.88142353,0.13763914,-0.0023723927,-0.020015823,-0.4730057,0.19767427,-0.2147173,0.037984896,-0.7775021,-0.17384411,296 +408,0.3355894,-0.2326184,-0.4924815,-0.059564747,-0.37213618,0.1698201,-0.3643512,0.17335132,0.06685799,-0.5151215,-0.20903869,-0.04764578,0.110120125,0.23092507,-0.22731426,-0.4814295,-0.03994267,0.2757024,-0.6655426,0.44379187,-0.58499604,0.37011522,0.18205984,0.26764274,0.09647564,0.27431172,0.19845164,-0.2377238,-0.15738785,-0.23251913,-0.14074714,0.21169834,-0.571058,0.31105322,-0.20869817,-0.27168247,0.018495515,-0.30404034,-0.3297894,-0.686006,-0.0035751483,-1.1061631,0.61179507,-0.15052831,-0.21712087,-0.08103956,0.22005899,0.43699312,-0.3830789,0.034354057,0.34430298,-0.28105074,-0.36755946,-0.38679054,0.027592888,-0.55662286,-0.4393719,-0.014817299,-0.53399765,-0.1652361,-0.246045,0.30626222,-0.28753868,0.015068265,-0.19360164,0.2654892,-0.4904125,0.24726209,0.1698228,-0.087855056,0.059846606,-0.5590325,0.021440575,-0.113307,0.5674556,-0.050069213,-0.2061341,0.3070774,0.3040495,0.34297538,0.319297,-0.2603514,-0.18040206,-0.20635836,0.43636194,0.3364977,0.030830739,-0.12237894,-0.28483286,0.0022065383,0.42549834,0.2869517,0.09125851,-0.28970107,-0.14435539,-0.10341419,-0.13568887,0.45551792,0.51373,-0.09350164,-0.2016717,0.37936512,0.6899978,0.30589983,-0.2703037,0.07651075,-0.00788817,-0.5810848,-0.11211211,0.22426118,-0.034976546,0.4666436,-0.24534525,0.05470107,0.84480447,-0.13771822,-0.010761644,0.08851,-0.008874012,-0.24119666,-0.17660083,-0.24718359,0.12707016,-0.63158923,0.0016943812,-0.3084809,0.70723754,0.19383954,-0.67525476,0.3799902,-0.5708887,0.15210316,-0.044262905,0.7075644,0.6353287,0.48724985,0.20021056,0.78115416,-0.29704767,0.15804747,-0.03773764,-0.41987535,0.11878484,-0.37730727,-0.027701003,-0.43620858,0.04577278,-0.24737413,0.055788748,-0.20380755,0.36697134,-0.46886286,-0.16512199,0.078234695,0.60536563,-0.35371003,-0.031175345,0.7908279,0.9803403,0.95760334,0.19715013,1.3265073,0.37440374,-0.24233203,-0.06910165,-0.20607889,-0.6831727,0.2165149,0.2930029,0.0433796,0.28869286,0.039738264,0.034394655,0.29850695,-0.4530701,0.063655846,-0.12315607,0.30684146,-0.05733483,-0.019952377,-0.35037693,-0.15848505,0.026579244,-0.07771201,0.14122012,0.27981356,-0.17733577,0.40425307,0.18666919,1.155338,-0.23521616,-0.035261318,0.07789817,0.3614597,0.12479039,-0.15372777,0.03903174,0.30063263,0.5166081,-0.0742283,-0.6864892,0.09450424,-0.26928142,-0.43589145,-0.18202348,-0.3004087,-0.2204285,0.019198665,-0.26522762,-0.2123576,0.0039586923,-0.24002817,0.4061303,-2.5867755,-0.20021972,-0.22125337,0.33981332,-0.27097854,-0.20042637,-0.19504389,-0.5468918,0.32046917,0.11895776,0.49554425,-0.61831224,0.46782058,0.56033397,-0.52701634,-0.26544848,-0.7777068,-0.01622725,-0.08694105,0.4355122,0.0010218194,-0.12872575,-0.1295759,-0.15909743,0.6114253,-0.013538863,0.28931442,0.51251894,0.30970407,0.21041285,0.5580883,0.17368463,0.562512,-0.33540383,-0.07420145,0.3926638,-0.33999512,0.5212132,-0.103791,-0.014715989,0.5785926,-0.47407064,-0.6880388,-0.6418677,-0.46382627,1.1790401,-0.47970986,-0.4458005,0.049599458,-0.18045087,-0.02089958,0.12281399,0.5412511,-0.07401274,0.22363342,-0.6428771,-0.014468885,0.0061373883,0.2934601,-0.030035933,0.048350163,-0.32586747,0.8249709,-0.12552999,0.5980993,0.33314785,0.19608475,-0.054508995,-0.39695612,0.14229499,0.83473283,0.35281324,-0.02359583,-0.33974832,-0.36751667,-0.24542464,-0.19637379,-0.0050299005,0.59022486,0.5231942,-0.11263721,0.115675576,0.2351402,-0.18452801,0.09042909,-0.20725559,-0.1986681,-0.09496345,0.11805756,0.49563766,0.74178505,0.010494505,0.58477163,-0.24757667,0.3298315,-0.1466972,-0.55017537,0.6790336,0.568411,-0.19593038,-0.19263199,0.50911236,0.4911274,-0.329909,0.40779,-0.5503997,-0.24659352,0.5129728,-0.094731756,-0.37415388,0.17167197,-0.22164343,0.28915378,-0.8124539,0.34612593,-0.4451738,-0.57084554,-0.6497952,-0.03921432,-2.4687917,0.16958424,-0.16818316,-0.11919304,-0.35893133,-0.17359011,0.41751003,-0.46230003,-0.5975115,0.08693445,0.13318661,0.59186274,0.011373692,0.09468838,-0.21411411,-0.31864598,-0.004365291,0.26614597,0.20909707,0.28201112,-0.3284293,-0.36564532,0.016487226,-0.0150052225,-0.24420953,0.08269478,-0.7345862,-0.4601014,-0.047715545,-0.32461637,-0.26542455,0.6287238,-0.50094384,-0.032028418,-0.12067817,0.18862419,-0.2499963,0.16301778,0.14025305,0.2860627,0.080778755,-0.085058756,-0.11692568,-0.32284942,0.41038474,0.00094960205,0.2553819,0.19559205,-0.0073914686,0.20366554,0.38416848,0.6286689,-0.23509823,1.0471181,0.26684126,-0.08468159,0.12437929,-0.16225179,-0.39601186,-0.58639413,-0.21118459,-0.11571049,-0.42780942,-0.44847247,0.041820187,-0.3064786,-0.923327,0.66975313,0.034521524,0.14613417,-0.043483675,0.28089514,0.46507186,0.013902051,-0.03172842,-0.08671748,-0.1929185,-0.5354034,-0.48275846,-0.788741,-0.45088893,-0.066816464,0.99658644,-0.37150082,0.09035727,-0.0044030165,-0.44528976,0.04412508,0.21520878,-0.090951756,0.11786677,0.5710722,0.061629806,-0.5892224,0.46538037,0.0094826175,-0.08951136,-0.455401,0.18715115,0.80056274,-0.80079097,0.53512233,0.44741172,-0.07017724,-0.098762915,-0.4433293,-0.19932885,-0.04741958,-0.22975914,0.5143844,0.18342128,-0.75151026,0.4028898,0.3269575,-0.30089834,-0.69488937,0.34164256,-0.08049018,-0.16193642,0.078968726,0.3280902,-0.01119713,-0.020251548,-0.23920856,0.15676865,-0.37138408,0.17699698,0.13309285,-0.13799112,0.13037378,-0.1710593,-0.29506832,-0.67197317,-0.041884024,-0.529914,-0.2050101,0.23797262,-0.050408293,-0.0067254007,0.21732616,0.350223,0.40739483,-0.27399823,0.122100614,-0.16582419,-0.37047175,0.30247173,0.52700186,0.28439215,-0.37423548,0.53547066,0.21519646,-0.102797285,0.036065876,0.05706176,0.38171095,0.06977896,0.45478153,-0.16494213,-0.051098492,0.15152396,0.9740786,0.1843016,0.6843775,0.076681614,-0.15776737,0.38739783,-0.013905861,0.4113584,-0.04491925,-0.51760954,0.028351353,-0.038111784,0.22998488,0.30065915,0.17385578,0.45224223,0.058215182,-0.04556399,-0.0110203875,0.16833012,0.13394393,-1.1783918,0.50062466,0.25189954,0.7135804,0.42470798,-0.05013868,-0.09017907,0.7919434,-0.3802041,0.032949988,0.31113175,-0.12201711,-0.45721075,0.6542101,-0.6110802,0.34752673,-0.2524151,0.050223686,0.11331204,0.10431011,0.29012558,0.90086466,-0.1864022,0.05647009,-0.014686857,-0.2282118,0.0590685,-0.27532205,0.07257503,-0.37708268,-0.4405534,0.9107485,0.4225872,0.5872697,-0.26807332,0.07693527,0.12730508,-0.15383494,0.28624663,0.12092667,-0.05628876,0.020465706,-0.48113483,-0.07570501,0.56973684,-0.079804085,0.21462385,-0.1072695,-0.30888787,0.10785627,-0.23655312,0.05232511,-0.14035009,-0.7132266,-0.058230378,-0.38875026,-0.64509696,0.25630507,-0.21817097,0.19999883,0.2744847,-0.11081309,-0.044286046,0.39402086,0.044986766,0.7478658,0.019107888,-0.24020697,-0.22560939,0.15784581,0.34391922,-0.3179129,0.05683881,-0.24377462,0.112084225,-0.5904555,0.458399,-0.28943107,-0.54042935,0.115481116,-0.26231986,-0.07978968,0.5781323,-0.01589721,-0.13783152,0.3461671,-0.1718049,-0.46543822,-0.18620549,-0.25733933,0.19845699,0.3233308,-0.09903454,-0.14416079,-0.28361022,-0.20634425,0.36225381,0.063970014,0.5474159,0.36977932,-0.1497409,-0.24747959,-0.0056345635,0.16994476,0.5389562,0.18303347,-0.07261594,-0.2603746,-0.31922194,-0.302759,0.4003975,-0.048532635,0.18225434,0.08021162,-0.3324118,0.9597495,-0.07540753,0.99931294,0.10008841,-0.28602204,0.099402785,0.5383976,0.026377229,0.046993546,-0.37122226,0.94038063,0.5901819,-0.08767075,0.0965534,-0.65962124,-0.181969,0.34548277,-0.35825655,-0.060173564,0.004464599,-0.56040424,-0.25371736,0.2320234,0.27084696,0.0017095123,-0.08433599,-0.02195275,0.050776813,0.046237532,0.45295197,-0.7514946,-0.18712518,0.27380246,0.12411368,-0.1497371,0.23368104,-0.30421633,0.4103117,-0.69386864,0.19303907,-0.4154911,0.029609805,-0.16462305,-0.28094044,0.14699629,0.007860755,0.24594085,-0.45573017,-0.45490122,-0.262042,0.54887146,0.053651482,0.18416932,0.6175193,-0.2756352,0.024279768,0.23554434,0.5748406,1.097514,-0.37445992,0.008583763,0.3073769,-0.48091513,-0.4837257,0.42773652,-0.4519194,0.015860448,-0.10271426,-0.48929888,-0.47030482,0.28804493,0.2435113,0.19936465,0.12839891,-0.674519,-0.004120352,0.30316684,-0.222865,-0.21398091,-0.0994746,0.21757366,0.56882876,-0.2298403,-0.42548123,-0.11751507,0.23910053,-0.40435055,-0.32310352,-0.0693626,-0.29823455,0.195166,0.0037454118,-0.28025395,-0.021919161,0.24212097,-0.49154612,0.019524649,0.13252269,-0.4092165,0.096644826,-0.2034532,0.11732805,0.7181582,-0.29250792,-0.10123904,-0.5942331,-0.45403233,-0.74456966,-0.38428047,0.07762216,0.2652029,0.12577344,-0.43370232,0.05641997,-0.07301169,-0.18043442,0.1885599,-0.7199716,0.48218897,0.21641873,0.35178298,-0.17589927,-0.9292626,0.17545941,0.03947528,-0.14516154,-0.59136003,0.5509517,-0.18902615,0.9382678,0.12796254,-0.038583,-0.15587129,-0.48684326,0.24856949,-0.28697708,-0.08628016,-0.9011146,0.0447106,301 +409,0.33371475,0.11158384,-0.53515214,-0.1431583,-0.24885668,0.15911151,-0.2230521,0.4590478,0.03518242,-0.3477736,-0.016414702,-0.16157445,-0.09240887,0.28703073,-0.276961,-0.4673312,0.13589321,0.06290592,-0.41021493,0.26993212,-0.372364,0.4501934,-0.09427656,0.28907233,0.07375,0.23105863,0.019775586,0.01685011,-0.05051737,-0.30115727,-0.22629295,0.21739434,-0.5953857,-0.023863077,-0.2421745,-0.36089116,0.05151894,-0.45082864,-0.3320354,-0.6338858,0.16273186,-0.78298265,0.69223243,0.03498051,-0.23771814,0.36347955,0.20573643,0.29908586,0.09287257,-0.0066627073,0.14659235,-0.27815965,0.04101376,-0.15900697,-0.46363956,-0.4970005,-0.58836544,-0.096149795,-0.622941,-0.20647232,-0.26425117,0.1060019,-0.26590484,-0.068681195,-0.08599714,0.26362014,-0.361597,-0.018263394,0.04860028,-0.0838109,0.26591754,-0.6708721,-0.2171809,0.072707586,0.26400787,-0.30762625,-0.08055886,0.3436105,0.28461638,0.45547765,-0.15474252,-0.15105523,-0.34525925,-0.08013809,-0.017177891,0.6519942,-0.23194166,-0.0021563831,-0.06977234,0.118584685,0.38934988,0.4148378,0.17452654,-0.027003406,-0.15818289,-0.012411258,-0.17962895,0.22179745,0.43853834,-0.32139423,-0.2192341,0.5096659,0.46225137,0.22091722,-0.022899896,0.2605277,-0.13567623,-0.45571342,-0.12526101,-0.009191019,-0.20422281,0.42833424,-0.09055793,0.25212005,0.54119575,-0.11679753,0.09630853,0.09836701,0.019483238,0.15205468,-0.13665865,-0.32220533,0.33632904,-0.65693337,0.23003037,-0.12840216,0.4738529,0.16167977,-0.8121945,0.312666,-0.4658665,-0.031425785,0.04261457,0.4260551,0.617454,0.56917226,0.18509862,0.57391006,-0.52736497,0.08413102,-0.012637751,-0.16502984,0.13810709,-0.043013006,0.05339052,-0.5249282,-0.08737522,0.08177199,-0.117554285,0.288033,0.18214193,-0.4519861,-0.08593068,0.29297042,0.64518374,-0.31083468,-0.04933432,0.6420519,1.13583,0.99344146,0.085832015,0.8297904,0.10833415,-0.06465678,-0.046762984,-0.15326981,-0.63130724,0.16993129,0.36162403,-0.35277742,0.4005864,0.13894211,-0.012543614,0.1788788,-0.22058178,-0.24991842,-0.09141064,0.23652805,0.0595279,-0.2657549,-0.39571956,-0.18448721,-0.034917127,-0.12231706,0.13201283,0.30638984,-0.17753956,0.4471548,0.19043145,1.2595685,0.031270254,0.116309576,0.1385599,0.47707638,0.1926231,-0.12004153,-0.10532495,0.2998157,0.1832827,0.21845235,-0.39102316,0.0053152037,-0.2781551,-0.58022785,-0.2039142,-0.3295175,-0.030090123,-0.13644895,-0.25756413,-0.23943932,-0.056909077,-0.34079567,0.575147,-3.0195904,-0.019618485,-0.09825909,0.3385938,-0.19570102,-0.39209336,-0.08148073,-0.428205,0.5300029,0.36125502,0.2729172,-0.4345444,0.2739929,0.46551016,-0.39933437,-0.17197187,-0.5168829,-0.13289328,0.08757203,0.17937039,-0.0002454434,-0.18805812,0.03313465,0.18613802,0.33442444,-0.08778568,0.1546746,0.12428124,0.26762363,0.060565185,0.40552887,-0.021698087,0.45946524,-0.12657072,-0.193168,0.29785377,-0.39485094,0.20109232,-0.056444645,0.20552401,0.3227162,-0.3850278,-0.71817917,-0.3953683,-0.22419007,1.1770288,-0.13641308,-0.38046613,0.2653994,-0.049407143,-0.3712552,-0.100209154,0.28252226,-0.25253204,-0.019555632,-0.698113,-0.07442724,-0.20011587,0.25950083,-0.04454401,0.140057,-0.51327145,0.4390573,-0.07703047,0.4413465,0.31492653,0.24444135,-0.3637185,-0.44252723,-0.14312562,0.851222,0.5940493,0.06209197,-0.15321536,-0.108522125,-0.2322723,-0.16831386,0.29108542,0.42361742,0.72746724,-0.12245191,0.08700323,0.16866527,0.042261474,0.20212267,-0.16737595,-0.1801307,-0.06853937,0.07560652,0.44546914,0.4264889,-0.06268855,0.5129328,-0.057723675,0.19705343,-0.32337007,-0.46275,0.29259858,0.7702688,-0.16755164,-0.26072088,0.6679697,0.30180869,-0.15114126,0.3659415,-0.6464747,-0.4138063,0.604631,-0.15663059,-0.5422247,0.12213992,-0.21720354,0.07573021,-0.7630543,0.24221097,-0.35106155,-0.54191667,-0.48045403,-0.16132975,-2.514414,0.081910275,-0.21530285,-0.16759281,-0.09560299,-0.3087924,0.18274911,-0.5863036,-0.6907305,0.20418583,0.070121914,0.7562548,-0.08213006,0.057513922,-0.17194545,-0.53775764,-0.46975735,0.25803736,0.14667559,0.27063885,0.071819015,-0.2576236,-0.06512089,-0.073992245,-0.4761946,0.068442024,-0.5236276,-0.43550706,-0.25592044,-0.4724905,-0.17472291,0.58944905,-0.3320494,-0.04858281,-0.30335164,-0.045208063,0.045471728,0.14765692,0.17279734,0.21394439,0.091924906,-0.058864716,0.13939619,-0.29145914,0.22239457,0.15875323,0.3653548,0.49080542,-0.13472061,0.030159926,0.47590184,0.70287895,-0.17007816,0.7267291,0.20918725,-0.16773936,0.3891242,-0.35047913,-0.23911296,-0.5284874,-0.29513216,0.012462914,-0.35512066,-0.42241248,-0.15078224,-0.31372145,-0.69831026,0.6118185,-0.08783182,0.2926928,-0.216478,0.53169143,0.3214795,-0.2992155,-0.06586356,-0.08777793,-0.026875125,-0.28213987,-0.32778645,-0.5882329,-0.5005606,0.04639984,1.0001848,-0.26540273,0.08188985,0.19261134,-0.08680528,0.113712475,0.01722874,0.09286536,0.10236318,0.2766216,-0.060996242,-0.5923513,0.47379535,-0.12943108,-0.13952656,-0.60345757,0.038384464,0.6517928,-0.42503136,0.3518016,0.38642433,0.096681006,-0.17683141,-0.83941746,-0.0725911,0.013145952,-0.37110752,0.31338733,0.21867791,-0.7639379,0.45907408,0.39937893,-0.2825378,-0.52306587,0.49984068,0.04587425,-0.22717465,0.13100013,0.3882623,0.17747347,0.044011924,-0.014801239,0.22973098,-0.36475116,0.3302671,0.4312897,0.012514838,0.44098207,-0.27534243,-0.1812013,-0.6696375,0.10978072,-0.3890756,-0.32268763,0.15075435,-0.088448405,0.0028064805,0.34956017,0.15372232,0.3418693,-0.46775368,0.1317881,-0.120236434,-0.19906375,0.2892898,0.3816337,0.4936585,-0.37770906,0.5510802,0.06873248,-0.1419793,0.0063326783,-0.12339784,0.56120837,-0.031043043,0.21047327,0.2242953,-0.30333015,0.09540006,0.6436364,0.10930569,0.17275847,0.12654561,-0.05611991,0.036185544,0.01977353,0.08720497,0.167769,-0.47613588,0.017721491,-0.18690434,0.09169441,0.46326095,0.065665625,0.29501405,-0.19718711,-0.058613557,0.02007243,0.1996021,-0.14736061,-0.99554586,0.3170431,0.13012259,0.76516014,0.2636588,0.26035222,0.04947849,0.44557327,-0.23003791,0.02397049,0.24254544,0.13137801,-0.39425626,0.4817818,-0.6820537,0.4127274,0.12586974,0.0678404,-0.033721846,0.095586024,0.43637195,0.97327614,-0.20068853,0.09607091,0.023779929,-0.2302134,0.18849257,-0.18234818,0.10121626,-0.2770701,-0.13181046,0.7054545,0.2825997,0.24369483,-0.16389892,-0.041227635,0.028177353,-0.28398022,0.17316428,-0.009829074,0.15768786,-0.33167028,-0.25428766,-0.24326923,0.36933956,0.24641286,0.14684714,-0.0060733855,-0.22804669,0.28362873,-0.028087672,0.053409345,0.12723593,-0.63592905,0.12473064,-0.28935674,-0.27126706,0.2049724,-0.21539463,0.2455682,0.19555287,0.057025354,-0.061659236,0.33758375,0.2642865,0.59114677,-0.122294016,-0.19458118,-0.18661675,0.23294559,0.12884341,-0.19169043,0.10928035,-0.109959535,0.24759577,-0.487431,0.37019587,-0.1617831,-0.24211955,-0.08647845,-0.0974594,0.051424306,0.40701398,-0.21005909,-0.053727966,0.027249334,-0.18668294,-0.29290056,-0.2271307,-0.21192463,0.13358408,0.07661589,-0.29981872,-0.14561264,-0.005179155,-0.17977776,0.36286047,0.03619439,0.31736454,0.36607653,0.024797352,-0.5094213,-0.027577337,-0.108564876,0.46141428,-0.10996158,0.02308571,-0.22583462,-0.4252587,-0.30100438,0.29628274,-0.2333637,0.24906418,0.12445002,-0.08361641,0.8550445,-0.034404155,1.1576546,-0.07776807,-0.30487218,-0.08499523,0.44003823,-0.14505367,-0.1733315,-0.27079996,0.9993539,0.56646985,0.024850616,-0.04504357,-0.17935112,-0.10338781,0.16830435,-0.2539166,-0.20085637,-0.07279314,-0.48423713,-0.30083957,0.24199381,0.13455415,0.094204865,-0.11314535,0.04770928,0.43474886,0.14097932,0.32542655,-0.44882706,-0.15135287,0.37949398,0.2699807,-0.09349291,0.12803903,-0.38854128,0.35739297,-0.53508055,0.006267901,-0.31218663,0.058084745,-0.09001444,-0.30950752,0.16404858,0.09432916,0.34205195,-0.18102553,-0.4007339,0.007926805,0.34497333,0.089644715,0.22105919,0.4761858,-0.20732887,0.056523245,-0.081936546,0.37035647,0.93859786,-0.21497743,-0.0073667937,0.46574673,-0.35482386,-0.62957823,0.19813736,-0.42120412,0.14784518,-0.07824312,-0.19580896,-0.211136,0.17878558,0.24816206,0.15036617,-0.007948195,-0.46154937,-0.14098684,0.2145613,-0.396457,-0.19616021,-0.35686758,0.0570341,0.64191204,-0.14351256,-0.33480924,-0.05525592,0.34200004,-0.27150354,-0.5834679,0.26196757,-0.072729036,0.332423,0.047513563,-0.35171667,-0.01551609,-0.011845504,-0.36685824,0.15322065,0.25608918,-0.2750906,0.03945377,-0.3629203,0.21005154,0.65541446,-0.28357622,0.051435623,-0.540995,-0.52790785,-0.88686734,-0.20423384,0.11533836,0.13366626,0.07416511,-0.5644208,0.056364458,-0.35349545,-0.04289022,-0.01675916,-0.20303294,0.33907658,0.22762159,0.2862117,-0.25506786,-0.72559106,0.12314173,0.14809802,-0.14973433,-0.44046447,0.5714461,0.011885865,0.65355873,0.19987346,0.015277349,0.21002693,-0.48634705,0.317331,-0.20640302,-0.0719835,-0.6104679,-0.03029934,306 +410,0.4368973,-0.09963603,-0.49077997,-0.17946585,-0.19050731,0.021335943,-0.11588429,0.43738922,0.06337033,-0.71963406,-0.22665451,-0.3633191,-0.23405242,0.4478237,-0.380347,-0.49225178,-0.13495682,-0.05045843,-0.505575,0.6072063,-0.33593234,0.40074304,0.28259572,0.24448553,0.33608633,0.31844693,0.3318086,-0.1078343,-0.11547787,-0.35634813,0.07579452,-0.31863928,-0.8004931,0.24252701,-0.14835386,-0.4225346,0.040959936,-0.5546766,-0.3932422,-0.78708774,0.32818845,-0.9437435,0.30700234,-0.07267126,-0.12765124,0.21679713,0.20971622,0.41915438,0.009586071,-0.111483596,0.24453862,0.12954424,0.05393783,0.055741314,-0.29249188,-0.468783,-0.593646,0.0849471,-0.30968872,-0.3915053,-0.17658629,0.11104731,-0.4232456,0.26110727,-0.11430649,0.40413433,-0.5512875,-0.3137233,0.23718931,-0.21144506,0.25205204,-0.6342047,-0.09824153,-0.14491837,0.14632139,-0.21578717,0.091037996,0.40395662,0.16555932,0.53600585,0.0014558776,-0.1493015,-0.2273597,0.021234842,0.18352138,0.45619777,-0.074054554,-0.24439773,-0.17963322,-0.12053036,0.33972746,0.09555689,0.22990432,-0.43591926,-0.017089358,-0.00469195,-0.44882542,0.29545555,0.48060867,-0.22187571,-0.069386,0.37172607,0.5316209,0.2062072,-0.13658687,0.013588445,-0.079753816,-0.3594597,-0.05234955,0.16319346,-0.2368804,0.5871933,0.028460728,0.119243786,0.532998,-0.25661144,0.203545,-0.14249101,-0.17219539,-0.18589282,-0.16609356,-0.2828631,0.23743813,-0.294607,0.29068574,-0.38102862,0.78226376,0.1290629,-0.86899316,0.34891364,-0.49313858,0.08549072,-0.054910194,0.47566557,0.40157938,0.43333724,0.16461144,0.73070806,-0.51672846,0.14971219,-0.19873424,-0.16004471,-0.083423555,-0.15226217,-0.035007622,-0.21027456,0.03262984,-0.12786399,-0.30050436,-0.2101417,0.23076698,-0.44489512,0.012432918,-0.03061754,0.8531332,-0.27877468,0.06577152,0.77631587,1.0691155,1.1663159,0.14387043,1.0265933,0.27573517,-0.23109163,0.10461158,-0.07190882,-0.68740225,0.27995747,0.5361134,0.37180728,0.28356877,-0.021068415,0.04011797,0.33892533,-0.45478123,0.22804897,-0.33002648,0.16933274,0.15225755,-0.1238639,-0.28936678,-0.2229754,0.101259746,0.20126678,-0.061832316,0.14675327,-0.15358941,0.28275004,0.10900832,1.6861753,-0.11348613,0.11538635,0.26345485,0.51907724,-0.08081126,-0.22003141,0.03374203,-0.027964758,0.25800067,-0.03698836,-0.61340487,0.005343131,-0.1848998,-0.57114595,-0.15802813,-0.26482758,-0.0446871,-0.17936592,-0.4954364,-0.13505885,-0.002071355,-0.37862745,0.26789686,-2.3659112,-0.13982952,-0.39712688,0.2638041,-0.4241092,-0.3380658,0.046898123,-0.5151835,0.49630904,0.46838754,0.3713409,-0.5154057,0.4409671,0.43735453,-0.35949543,-0.01964887,-0.5617559,0.06724636,-0.10652467,0.30025008,-0.0052013397,-0.04064134,0.12911676,0.28080887,0.42499235,0.1436712,0.095439054,0.29596397,0.31996492,0.14202213,0.60739416,0.09489497,0.46717098,-0.2325952,-0.010110955,0.49420267,-0.3772728,0.16922699,-0.093209796,0.27540213,0.20752864,-0.71763164,-0.68465483,-0.7928168,-0.5947364,1.2961771,-0.11965756,-0.5874737,0.26327184,0.216258,-0.03352966,-0.09035611,0.37858215,-0.21192291,0.06320441,-0.765349,-0.113228306,-0.20198984,0.20300767,-0.029437108,0.1805538,-0.4584853,0.6289016,-0.27533132,0.43834648,0.42913866,0.25506595,-0.22241528,-0.548914,0.116974175,0.8736439,0.37885132,0.002607139,-0.20998518,-0.05747773,-0.52597964,-0.30567604,0.15902482,0.34540883,0.8214597,-0.010246242,-0.0512036,0.19114308,-0.08163119,-0.050668847,-0.15237907,-0.37296504,-0.20362255,-0.08819539,0.6400983,0.47824958,-0.03833993,0.25527784,-0.2288305,0.41761252,-0.175658,-0.35783213,0.41599312,0.5979837,-0.081662536,-0.19046037,0.39773753,0.63206035,-0.27619964,0.4417315,-0.6046304,-0.355253,0.5263909,-0.09432711,-0.59175986,0.19073078,-0.38509107,0.17230701,-0.886052,0.35321596,-0.32279596,-0.2554427,-0.504026,-0.2946715,-2.43485,0.14378391,0.046134252,-0.37855372,0.010934306,-0.106781244,0.27240536,-0.6171321,-0.89058197,0.016758187,-0.09594119,0.5741648,0.06818888,0.20207559,-0.13228734,-0.058138933,-0.44352403,0.108826235,0.071723804,0.35390383,0.052486718,-0.31411272,-0.26591393,-0.26974204,-0.65578556,0.09455337,-0.5169638,-0.6698774,-0.33013684,-0.52383333,-0.34833926,0.510809,-0.36413887,0.03587554,0.008709515,-0.10246674,-0.17093012,0.34813112,0.32695618,0.21946147,0.1548253,-0.13091204,0.017602136,-0.21125112,0.24900177,0.27047813,0.45774698,0.39498234,-0.23622718,0.2688567,0.5317172,0.68633395,0.100812234,0.72588205,0.2971274,-0.06982346,0.17871282,-0.33757225,-0.16998155,-0.4347025,-0.12878838,0.13443848,-0.22753285,-0.5465156,0.103848256,-0.25276902,-0.71812516,0.42444062,0.000871752,0.018811222,0.057987172,-0.097534165,0.32859382,0.018935855,-0.017470224,0.010115147,-0.007497385,-0.5419841,-0.5149778,-0.82032925,-0.52432907,-0.030765275,0.9978861,0.17486891,-0.22471116,0.07146449,-0.3342608,0.26674542,-0.2703721,0.003376601,-0.0071441256,0.28748468,0.035265684,-0.72761333,0.50849074,0.0013879666,0.036008816,-0.51969355,0.23732087,0.70960796,-0.39217123,0.1667329,0.27877915,0.27658114,-0.026698139,-0.45922354,0.052124638,-0.11763085,-0.35659996,0.13396446,0.010281709,-0.5750293,0.33675358,0.27317542,-0.23765235,-0.8533829,0.44304794,0.12211033,-0.060891904,0.032844476,0.3065203,0.12108505,-0.07935428,-0.12613118,0.24376056,-0.49665025,0.100040324,0.48753262,0.11941191,0.3785582,-0.18732397,-0.2369064,-0.59304744,0.0485887,-0.32932472,-0.17604478,0.10474669,0.042530496,-0.08162161,0.20083825,0.18083699,0.3350894,-0.11488475,0.08018128,-0.12289609,-0.22512436,0.46538663,0.46069828,0.58086455,-0.5215822,0.638041,-0.071405634,0.11589929,0.20313585,-0.11683232,0.4164701,0.23446478,0.02402435,0.17131591,-0.07927521,0.104781665,0.6528986,0.327531,0.48160487,0.15013206,-0.41604525,0.4407136,0.15768385,0.11286749,-0.035410967,-0.6687547,0.12194852,0.18174198,-0.03747848,0.39474863,-0.015619551,0.41199812,-0.14398427,-0.21608554,-0.041400798,-0.021265576,-0.42489854,-1.2878191,0.3819293,-0.008855338,0.76236457,0.6587504,-0.15833494,0.29359534,0.5046067,-0.17442526,0.09403279,0.26620093,-0.012484865,-0.6259386,0.4681866,-0.4579967,0.42315105,0.09216698,0.03752405,0.015036808,0.27301884,0.4354104,0.75154907,-0.18707599,0.03038226,-0.2240572,-0.23549272,0.14041884,-0.47560164,0.24481736,-0.20623466,-0.36281314,0.63879806,0.4119995,0.20040186,-0.057840202,-0.020122698,-0.010813551,-0.0962553,0.3581327,-0.14682572,-0.02092266,0.0637363,-0.67791796,-0.460962,0.49544242,-0.131389,0.14768784,-0.0452554,-0.3561514,0.14766921,-0.044737447,-0.06988994,0.040275697,-0.83644444,0.17207526,-0.41643706,-0.24527617,-0.0848137,-0.07628401,0.3209832,0.1517527,-0.16642393,-0.41301513,0.18009807,0.121384375,0.632439,-0.2690263,-0.3154126,-0.33437577,-0.06574012,0.27096984,-0.29403743,0.15490396,-0.03961203,-0.054555178,-0.61575925,0.39763203,-0.13909085,-0.3397192,0.30573374,-0.26977512,-0.15589367,0.54036695,-0.22285108,0.16244176,0.11592449,-0.032501858,-0.05437805,-0.11432151,-0.2564799,0.16038355,0.11928076,-0.0979088,0.054239597,-0.048079994,0.08755999,0.57301563,0.019029336,0.5760947,0.62674797,-0.0023428288,-0.8112089,-0.16191684,-0.028282711,0.5280053,0.20398529,-0.11118495,-0.230082,-0.44418722,-0.1945272,0.47969463,-0.26964894,0.31996387,0.15184669,-0.5056909,0.6930016,0.23824105,1.296051,-0.051229924,-0.3870706,0.16447185,0.42555788,0.039554063,-0.09858189,-0.48175764,0.85711545,0.61923724,-0.1805403,-0.20531435,-0.26250908,-0.09789176,0.07431146,-0.1567136,-0.13488828,-0.041129146,-0.6466794,-0.43270215,0.06407038,0.24467514,-0.052920647,-0.10801755,0.08702243,0.08766504,-0.028977696,0.69115263,-0.3807008,-0.20358162,0.32293802,-0.07259921,0.10645112,0.06085106,-0.42702594,0.33051482,-0.5327875,0.10877495,-0.2664285,0.11736829,0.012585325,-0.19554664,0.14128736,0.036550414,0.5183602,-0.34953174,-0.47989526,-0.21743432,0.6360552,0.15489545,0.22639158,0.67475325,-0.16003619,0.22414139,-0.011229954,0.70203453,1.0885901,-0.0446813,0.43157506,0.22088124,-0.3691757,-0.34779644,0.15959445,-0.12508938,0.2532707,-0.14186196,-0.16575502,-0.54932636,0.23606455,0.23479474,-0.3672625,0.095994934,-0.5505912,-0.5184507,0.38806346,-0.4214191,-0.35049385,-0.47756007,0.16612294,0.5119439,-0.3075164,-0.117801316,0.057609845,0.17684238,-0.21592255,-0.4854414,-0.02509884,-0.22279823,0.27554756,0.071751975,-0.42765442,-0.17267345,0.09552163,-0.32433063,0.04510058,-0.01858053,-0.46169847,-0.12117449,-0.08028428,-0.004755352,0.82180846,0.11235764,0.06450912,-0.75054497,-0.5033918,-0.9312112,-0.56900215,0.50875264,0.12597612,-0.09786392,-0.34922546,-0.20705344,-0.13749523,0.040484525,0.039624486,-0.35537058,0.31867293,0.21358843,0.7182706,-0.19516304,-0.7453958,0.0953549,0.14701663,-0.054142993,-0.41924614,0.5467128,0.18368505,0.6860819,0.09632652,0.02381737,-0.036333907,-0.53629744,0.20544703,-0.1137251,-0.2254907,-0.59775656,0.35846296,307 +411,0.536198,-0.20701437,-0.4827424,-0.07080386,-0.31035,0.26972836,-0.18953207,0.4416464,0.13922678,-0.5127216,-0.25114194,-0.1736978,0.11251759,0.06412201,-0.24613309,-0.34992546,0.045546133,0.1771221,-0.5658943,0.38766804,-0.23738417,0.2938529,0.1148939,0.4335906,0.090223424,0.32829973,-0.08611194,-0.061413724,-0.1892325,-0.30265585,-0.07188535,0.2749032,-0.376159,0.22940192,-0.21522284,-0.12596236,-0.020584049,-0.5462603,-0.24474546,-0.6861416,0.19454421,-0.8760188,0.40266582,0.04821173,-0.2223624,0.18657814,0.28150925,0.13011968,-0.054714985,0.006078567,0.17343156,-0.30971405,-0.21444944,-0.25325292,-0.22794986,-0.5049931,-0.5552474,0.010108322,-0.41901302,-0.14592467,-0.31818604,0.22932303,-0.31980947,-0.054942816,-0.04756478,0.6205148,-0.31408855,0.3000364,0.2387725,-0.2870639,0.13410261,-0.58998734,-0.17130816,-0.03981733,0.38228002,-0.23718692,-0.25566962,0.15891764,0.37798738,0.36317423,0.06584556,-0.11777804,-0.30030838,-0.09659337,0.10287523,0.4559439,-0.06800658,-0.29872736,-0.0039038488,0.02244541,0.13486804,0.32232094,0.1647466,-0.20661688,-0.18826298,-0.21106073,-0.28246847,0.2679921,0.35190555,-0.23538034,-0.102096334,0.33907458,0.49189478,0.110015854,-0.08991557,-0.05581423,0.11740763,-0.52841026,-0.1744151,-0.006416491,-0.20302054,0.39671478,-0.2101341,0.43424526,0.6552578,-0.17375143,-0.03431784,0.26075104,0.32887754,-0.060161293,-0.3711357,-0.09926748,0.24666765,-0.45328838,0.037821796,-0.17968495,0.88017315,0.0023894703,-0.5131517,0.08473087,-0.6420213,-0.086654946,-0.0799067,0.3984551,0.58273745,0.52831066,0.2184271,0.62214386,-0.32505935,0.021320513,-0.14983979,-0.42216164,0.03197754,-0.17851551,0.046741366,-0.44020316,-0.08751331,-0.02349331,-0.019213501,0.041517098,0.5577143,-0.47126502,-0.18313678,0.021601854,0.8037811,-0.27061957,-0.24429817,0.8022577,0.8560572,0.74024117,0.11095406,1.0559442,0.0899289,-0.11137812,-0.05215302,-0.066395186,-0.57144564,0.42720112,0.3317888,-0.36694628,0.09910025,0.05557123,-0.067412384,0.39281628,-0.28696817,-0.15188329,-0.16721575,0.19017051,0.1048725,-0.11843411,-0.41467336,-0.3313791,-0.021253217,-0.007830982,0.30347136,0.29148278,-0.07866938,0.48687252,0.012378012,1.4849815,-0.008321873,0.24062191,0.09273654,0.21037541,0.23501386,-0.089618675,-0.047176056,0.3532576,0.1936327,0.21020998,-0.517938,0.17885283,-0.18019794,-0.43193164,-0.18809186,-0.309274,-0.2238431,-0.06752749,-0.4718822,-0.17941464,-0.20582907,-0.39725998,0.46563953,-2.6510315,-0.043027036,-0.076240264,0.40304884,-0.26228568,-0.45336336,-0.06864289,-0.37279317,0.32883772,0.16148268,0.43560204,-0.49704054,0.33391476,0.4995092,-0.49150234,-0.33669832,-0.5487269,-0.004752355,-0.06819458,0.13083048,0.04834861,-0.0035086232,-0.076987915,-0.21826264,0.44521695,-0.14947489,0.1586553,0.44674492,0.48303062,-0.072517596,0.46464744,0.019722562,0.5630664,-0.28704038,-0.32898074,0.26220113,-0.35031065,0.23060977,-0.048002232,0.059002522,0.591,-0.3039206,-0.77808636,-0.7047328,-0.2291974,1.2154125,-0.22356339,-0.3462744,0.1175437,-0.374093,-0.45857129,0.051005535,0.5800914,-0.1289958,0.06754968,-0.7251689,0.05435248,-0.13100404,0.13260104,-0.060476933,-0.114113554,-0.43874213,0.59153837,0.021633549,0.4194549,0.21479201,0.29948395,-0.33054453,-0.2982927,0.012778963,0.91596717,0.38439852,0.2472321,-0.24995613,-0.1158103,-0.30336854,-0.017382758,0.13253061,0.7326284,0.34145838,0.037534695,0.25128514,0.26177266,-0.05383059,0.13768195,-0.09469392,-0.22062886,-0.20077947,-0.04724621,0.509342,0.6205581,-0.004775209,0.501299,-0.039891157,0.37377626,-0.2485324,-0.48913208,0.41577625,0.90603775,-0.19924058,-0.33920097,0.7865333,0.4428318,-0.20574263,0.33182982,-0.5130461,-0.43655893,0.38941067,-0.17030899,-0.59518325,0.15411532,-0.140095,0.12743562,-0.89126873,0.20567366,-0.27964535,-0.6411975,-0.5242724,-0.058088798,-2.6448786,0.29042906,-0.20735906,-0.15307294,-0.17043753,-0.287514,0.11621004,-0.5746493,-0.43102694,0.11487682,0.052581243,0.72373646,-0.10238378,0.16326849,-0.14924765,-0.31589705,-0.09076892,0.1318031,0.14079046,0.31951338,-0.11252741,-0.4467298,0.019383477,0.052836604,-0.2909868,0.18550017,-0.7408978,-0.4897344,-0.12776914,-0.4549055,-0.35905674,0.62386554,-0.33395416,-0.0072284015,-0.201999,0.18866754,0.0061344844,0.2301475,0.07014295,0.24113497,0.11373836,-0.12311107,-0.03054065,-0.2854786,0.46865258,0.03978659,0.22825992,0.48552892,-0.12594701,0.275682,0.3677873,0.47986275,-0.15534422,0.86459243,0.2752221,0.034296583,0.26407376,-0.15576415,-0.47551277,-0.4264979,-0.18199222,0.11360761,-0.4456901,-0.19993147,0.0063593644,-0.34916934,-0.88130534,0.6065478,0.09671236,0.001495455,-0.11620685,0.42743465,0.5433182,-0.3242161,-0.22297247,-0.026476204,-0.1478125,-0.5262385,-0.3046182,-0.46136707,-0.41913533,-0.093345895,0.9951836,-0.23666625,0.20906594,0.055877533,-0.05097833,-0.10410918,0.14708403,-0.060963333,0.02272451,0.6044646,-0.1469766,-0.58012664,0.5543934,-0.3213012,-0.29576612,-0.58516586,0.3390719,0.63230896,-0.63809395,0.54346234,0.45817143,0.08126391,-0.35858425,-0.46834823,-0.043736912,-0.08619934,-0.18875508,0.40357763,0.37588114,-0.8173423,0.32571533,0.18395723,-0.13548748,-0.67990303,0.5460412,-0.06816878,-0.33592632,-0.13250339,0.43036896,0.18333915,-0.046955567,-0.1877196,0.1195593,-0.34050632,0.32422757,-0.012076356,-0.16735399,0.32639402,-0.24214251,-0.10314537,-0.67551136,0.06020292,-0.4950467,-0.41840178,0.25716844,0.10500761,0.0037998727,0.4282303,0.07557649,0.30041504,-0.46031338,-0.035217334,-0.17088161,-0.21822284,0.18657593,0.32436606,0.58698404,-0.48152012,0.5751341,0.035944615,0.07368126,0.11201765,0.23850381,0.4674666,0.044315364,0.5768453,-0.15216948,-0.16369952,0.37420627,0.6908507,-0.0068470496,0.40194178,0.046406116,-0.07683135,0.08465432,-0.037809107,0.2671174,-0.1607484,-0.6887952,-0.014291772,-0.47330508,0.08211064,0.38677683,0.043202035,0.36512542,-0.041110165,-0.35227647,0.086672604,0.23562148,0.15933165,-1.1252214,0.37497064,0.29346657,0.90987223,0.15792488,0.09675501,-0.05887931,0.8216675,-0.21531485,0.11273762,0.28981704,0.12753046,-0.29462793,0.54578274,-0.753911,0.39432353,-0.0639784,-0.10013924,-0.027768984,-0.22563635,0.34945363,0.92102987,-0.18004899,-0.012226609,0.05921229,-0.4936219,0.08826142,-0.4073382,0.08553863,-0.6114295,-0.26626605,0.6206899,0.5386935,0.37030777,-0.23826288,0.04571357,0.16293697,-0.10166336,0.149823,0.1997077,0.15589713,0.03311512,-0.6748919,-0.11250239,0.5375153,0.20154963,0.2611677,0.0041875583,-0.03422783,0.34914765,-0.1982087,0.042841915,-0.12676778,-0.60171694,-0.0033019271,-0.4134283,-0.57104915,0.2778829,-0.3028541,0.16810301,0.17246775,0.11219569,-0.21846724,0.60928065,0.19400942,0.93949795,0.11048392,-0.09801922,-0.40681452,0.2596079,0.1642629,-0.16501728,-0.14078857,-0.26085228,0.14762719,-0.583531,0.3295055,-0.16289279,-0.35968098,0.035381284,-0.053878162,0.031657986,0.47478586,0.04673142,-0.010210226,-0.008971776,-0.101309605,-0.22020523,-0.1592497,-0.12815158,0.3057728,0.21465161,-0.054182965,-0.2269716,-0.12929861,-0.19406064,0.20008208,-0.011926153,0.41087952,0.31603256,-0.04676382,-0.13497558,-0.13717936,0.2399032,0.52474344,-0.07954083,-0.13358891,-0.31079087,-0.47247204,-0.32086423,0.17965065,-0.00971105,0.28875256,0.12653579,-0.029126635,0.92916995,-0.22692323,0.94490844,0.047062505,-0.28113312,0.17050448,0.4010205,0.020609643,-0.06405942,-0.368138,1.0572554,0.42919588,0.09021764,0.0047987825,-0.4468308,0.071372405,0.14406015,-0.21572016,-0.11259306,-0.10569771,-0.6283662,-0.28754824,0.18383572,0.2778816,0.14195327,-0.07818294,-0.0072522038,0.42353654,0.03849371,0.2260975,-0.6358643,-0.18667129,0.16202538,0.45094582,-0.09958496,0.27141163,-0.5511693,0.40066186,-0.5919338,0.09265089,-0.305219,0.21115711,-0.32069045,-0.22901177,0.25190192,0.00881826,0.47601014,-0.3437086,-0.2509081,-0.27726552,0.39059606,0.26965794,0.062965445,0.5124599,-0.28177053,-0.060146153,0.12484525,0.53006285,0.8581,-0.29739803,0.06173465,0.4125043,-0.29115647,-0.5545212,0.3597259,-0.37083766,0.25644353,-0.015573146,-0.20966266,-0.29473415,0.30166864,0.1973954,0.21579249,-0.17064552,-0.48082465,0.08240219,0.35999373,-0.28540748,-0.13305558,-0.1645275,0.20185263,0.3431526,-0.089818425,-0.27888426,0.09929252,0.37006965,-0.10419297,-0.3503355,-0.062394846,-0.404011,0.17352538,0.030312171,-0.34328896,-0.22990482,-0.13726337,-0.44762468,0.16200478,0.0921073,-0.25172442,0.041040648,-0.18743165,0.015006759,0.7111829,-0.18849066,0.15075167,-0.58757895,-0.4056994,-0.6733452,-0.29097858,0.12952366,0.0056011933,-0.0013861805,-0.56225306,-0.030861301,-0.16454771,-0.28069046,-0.17938386,-0.4128461,0.49505597,0.16502193,0.31681195,-0.14409359,-0.9182011,0.2927716,0.006498409,-0.3289277,-0.65700865,0.37621567,-0.07526118,0.6391138,0.033262603,0.05858756,0.40262836,-0.454135,-0.012805939,-0.19503705,-0.11141438,-0.7903126,-0.11552143,308 +412,0.38479254,0.19589856,-0.43219572,-0.03823799,-0.09245123,0.036281783,-0.3232078,0.13253044,0.0783573,-0.38424438,-0.11883875,-0.09031707,-0.0071807024,0.14085999,-0.15039809,-0.6625779,0.074144594,0.10063219,-0.46505547,0.75913745,-0.38821608,0.39463732,-0.02045621,0.39256877,0.15773343,0.3586566,0.28704613,-0.15568161,-0.14525735,-0.3825273,-0.24558489,-0.09487892,-0.74597347,0.1007092,-0.4139366,-0.3202868,0.18652876,-0.29057032,-0.4810483,-0.75256413,0.33486253,-0.7568789,0.48386234,0.03173255,-0.21057346,0.38344756,0.121468864,0.43531677,-0.24984786,0.030641198,0.017689545,-0.08769965,0.12286586,-0.3471541,-0.18303466,-0.40470824,-0.4279711,-0.019256907,-0.6291305,-0.16272219,-0.37928575,0.17417479,-0.29411486,-0.07516386,-0.16349699,0.300868,-0.46365812,-0.10074745,0.094176784,-0.044104286,0.1777295,-0.6546265,-0.1641629,-0.084642984,0.29902,-0.15022942,-9.2327595e-05,0.39837137,-0.052707206,0.2579667,-0.047148716,-0.26010233,-0.20923838,-0.21062596,-0.03361221,0.4970238,-0.1879628,-0.31108502,-0.02988811,0.013506608,0.213271,0.3816606,0.05175001,0.08650773,0.05556214,-0.08927806,-0.22247133,0.5138859,0.5113469,-0.38879296,-0.17245948,0.19295785,0.4859995,0.19473961,-0.27392888,-0.02566872,-0.08690619,-0.39339343,-0.25547662,0.15540592,-0.2049606,0.67632776,-0.016207865,0.15125492,0.45677954,-0.22062026,0.21548001,-0.03846108,-0.0408657,0.22611459,-0.19362144,-0.30999678,0.41776133,-0.56406194,0.22454715,-0.39326784,0.54581755,0.17125021,-0.5080493,0.24202155,-0.46986347,0.0043779314,0.0003761649,0.5841444,0.45117015,0.4025919,0.25149757,0.785688,-0.4718043,0.057847578,0.031636894,-0.14777705,-0.056361496,-0.1290266,0.09288246,-0.39065537,0.073688336,0.0075935,0.11257171,0.043538578,0.12648982,-0.31911454,-0.031199643,0.24741085,0.9922849,-0.24853095,0.23630174,0.79509157,1.2585325,1.015049,-0.044254504,0.87044007,0.3316533,-0.34420007,-0.030173227,-0.17751704,-0.5777917,0.121134855,0.36527035,0.10886047,0.33580938,0.084098,-0.12602746,0.1260986,-0.5955691,-0.024114069,-0.15967844,0.12256384,0.03997605,0.12696412,-0.48968357,-0.22778848,-0.07450707,-0.0823675,0.19148119,0.20784502,-0.28675693,0.20770156,-0.063388065,1.1124446,0.1350034,-0.01599043,0.18274704,0.8890676,0.35349226,0.10319867,-0.051943246,0.3499653,0.34672782,0.09677537,-0.44946423,0.009359136,-0.5135081,-0.2882472,-0.06476213,-0.3270889,0.21380794,0.117533006,-0.18480383,-0.07528372,0.061429024,-0.23453884,0.40090224,-2.9068532,-0.066824965,-0.20238091,0.400561,-0.20061941,-0.13373138,-0.10849446,-0.44452348,0.70466197,0.37345907,0.43244654,-0.4044924,0.26421553,0.4451774,-0.44821027,-0.07395164,-0.5208054,-0.11394634,-0.12190478,0.4841937,-0.04216275,-0.08139922,-0.13350847,0.1070223,0.5090902,0.21089725,0.05122631,0.07563245,0.21789877,0.009958991,0.4753947,0.15380467,0.32453945,-0.18411621,-0.095421486,0.31459188,-0.41306823,0.23043884,-0.2515522,0.12745498,0.5003685,-0.53326005,-0.7628478,-0.53665453,-0.2498552,1.1693599,-0.09083451,-0.6428248,0.14660789,-0.21578197,-0.21189316,-0.089072995,0.33019787,-0.19732888,-0.033196215,-0.4026859,-0.090003,-0.14513339,0.26579165,0.10256301,0.16645606,-0.44259128,0.5006401,-0.01893429,0.40091255,0.22936869,0.35389164,-0.23090193,-0.43361863,-0.01719829,0.8628475,0.4092314,0.039407305,-0.32058376,-0.26673532,-0.24257994,-0.04503431,0.14768681,0.716239,0.82893366,-0.16578542,-0.07739145,0.3115314,-0.005536952,0.03630658,-0.0582318,-0.44686848,-0.15423825,-0.034000438,0.59209293,0.57383144,0.10335622,0.29042816,0.040420942,0.47581545,-0.20790684,-0.2756684,0.34744602,1.1242253,-0.0945837,-0.15567937,0.45240238,0.6888257,-0.37535802,0.5484685,-0.76655525,-0.36314854,0.4916919,0.005659831,-0.4047094,0.12808634,-0.36539465,0.13181512,-0.7015878,0.27892134,-0.31477505,-0.32456264,-0.66506535,-0.19482763,-3.1195035,0.0347664,-0.28504404,-0.068943694,-0.15117958,-0.19679596,0.22826488,-0.4369066,-0.5361248,0.15740454,0.08859878,0.73219556,-0.10016549,0.09406563,-0.3853443,-0.27856344,-0.3949344,0.28446886,0.31351444,0.27020025,-0.20453084,-0.26407272,-0.017586121,-0.20187892,-0.24922441,-0.16400845,-0.4551172,-0.25546947,-0.26835796,-0.6394867,-0.11160215,0.6108033,-0.29940173,0.1172469,-0.20666216,0.008606536,-0.06562343,0.16294234,0.25899264,0.3686893,0.07703404,-0.052468974,0.07551666,-0.436719,0.29808238,0.34227508,0.24319194,0.22523475,-0.0039585107,-0.059411045,0.255004,0.43955746,0.012970322,0.79909897,0.28607005,-0.2134925,0.40826055,-0.4347042,-0.45429304,-0.71017516,-0.34313488,-0.06540434,-0.18871415,-0.5108746,-0.19399747,-0.51017135,-0.66622084,0.48989436,-0.041326694,0.26205915,-0.022296915,0.4085231,0.45574483,-0.24365483,-0.033513457,0.08633418,0.009921908,-0.37903976,-0.09630162,-0.64874786,-0.51328,-0.041503496,0.6136967,-0.17825265,-0.13853082,0.20387462,-0.14188327,0.1551232,0.1395771,0.16489069,0.03860993,0.5901436,0.13245721,-0.7877302,0.5574516,-0.12076487,-0.18822753,-0.59383875,0.2649999,0.64167774,-0.70428807,0.36210135,0.50464004,0.08248267,-0.28359053,-0.5091902,-0.14000659,0.037287124,-0.14489163,0.27524668,0.08066459,-0.8107074,0.23917682,0.064418994,-0.26545292,-0.70588887,0.73310614,0.028704586,-0.5720297,0.06957143,0.3730569,0.06624,-0.009339935,-0.12543151,0.21394433,-0.2306744,0.05903977,0.30567232,-0.042676654,0.3653057,-0.17180957,-0.19117273,-0.763406,0.20160888,-0.4977633,-0.26225662,0.4824571,0.0684583,-0.10543784,0.2938075,0.13976096,0.32829162,-0.20920713,0.26224783,-0.21788149,-0.2569305,0.5861331,0.3826719,0.40726772,-0.52129215,0.70456344,-0.0019576591,-0.11369912,-0.03684782,0.01805222,0.32130808,-0.17911313,0.2999623,0.08485455,-0.14448641,0.160321,0.50564605,0.35910514,0.38753325,0.15440607,-0.0419221,0.43803746,0.093133725,0.11111637,0.19363369,-0.47880262,-0.047771987,-0.13460049,-0.015665924,0.22341044,0.074667566,0.23599532,-0.061392073,-0.10593904,-0.04685379,0.04366388,-0.11137343,-0.88933223,0.3689787,0.16911456,0.73146963,0.46127027,0.10339846,0.06014749,0.64606124,-0.24685144,-0.101410456,0.33669785,0.18587068,-0.34849256,0.5366356,-0.46073714,0.59137565,0.17633626,0.0059611714,0.02002355,-0.08844851,0.42545095,0.862125,-0.2545064,0.042684913,-0.094086766,-0.20823976,0.07082177,-0.18493733,0.19923462,-0.40730673,-0.29635167,0.5948876,0.41264623,0.35645503,-0.040386625,-0.026175002,0.01786616,-0.3096591,0.23141588,-0.030437315,-0.086707056,-0.027910968,-0.5821357,-0.23805799,0.40673795,-0.15863271,-0.015805347,0.0031664541,0.16547121,0.21257146,-0.06552466,0.17089489,0.012484914,-0.7089395,0.21444178,-0.28048706,-0.06794631,0.5145311,-0.2111264,0.31909364,0.079813875,-0.033307776,-0.1739907,0.24652708,0.17506826,0.5065302,-0.074928455,-0.33727393,-0.39339972,-0.008269561,0.12471689,-0.320908,0.068784095,-0.30225796,0.13666622,-0.7710581,0.40381575,-0.2830157,-0.13376358,-0.115560435,-0.17661853,-0.1654634,0.48728272,-0.058169775,-0.16458814,0.056961834,0.059294265,-0.26796848,-0.18103325,-0.13860409,0.015509265,0.15362416,-0.080251,-0.1692063,-0.079471506,-0.24032304,0.5644366,0.043047648,0.38305125,0.0867571,0.083625756,-0.46646425,-0.09885884,-0.093710706,0.4856831,-0.08312704,0.018510511,-0.13609861,-0.42176566,-0.3355381,0.4798887,-0.03297365,0.20513602,0.15044318,-0.06038161,0.6648157,-0.026465824,1.1961733,-0.04467184,-0.43298477,0.04169879,0.7136988,-0.28631106,-0.12018335,-0.29454198,1.1243067,0.5413078,-0.02743273,-0.23638399,-0.200053,0.13230999,0.10023586,-0.15792537,-0.12472361,-0.12102543,-0.324476,-0.20937277,0.15767416,0.3660734,0.15064386,0.013475512,-0.022581449,0.07687207,0.16188718,0.31651244,-0.25315997,-0.2239833,0.58889765,0.029518118,-0.1491087,0.16669445,-0.22762418,0.33252695,-0.4302161,-0.04414851,-0.469388,0.008687685,-0.0063795024,-0.43051058,0.3110227,-0.111257136,0.36188215,-0.4840908,-0.43458727,-0.21254209,0.21268323,0.35726443,0.21024834,0.42751008,-0.15805563,0.0030218214,-0.062819935,0.56869894,1.0702498,-0.23405191,0.012589446,0.10847855,-0.4887264,-0.49191788,0.03633795,-0.5333181,0.107575454,-0.17125408,-0.2530391,-0.43628162,0.2298754,0.06982935,-0.067119725,-0.0043561202,-0.7537508,-0.2784529,-0.015984539,-0.08829873,-0.26416007,-0.35519975,0.21461456,0.7270613,-0.08342231,-0.30424047,-0.029277897,0.15320478,-0.18055913,-0.68968093,0.04899637,-0.37075323,0.20446455,0.14908552,-0.23479143,0.00019688053,0.25435638,-0.54638076,0.19220015,0.26318222,-0.46384567,-0.10711026,-0.13696952,0.065937996,0.6524733,-0.17424262,0.046257395,-0.3015531,-0.48899576,-0.71776205,-0.34984085,0.38998005,0.26757145,0.15164652,-0.4313307,0.032748833,-0.26604065,-0.0068917614,-0.10122008,-0.42568296,0.24279603,0.2220246,0.6200885,-0.24649803,-0.9905858,0.08056717,0.05726065,-0.29025486,-0.53804356,0.30208597,-0.056133933,0.68075037,0.08058391,0.005030121,0.33468392,-0.5819493,0.08383245,-0.18508856,-0.13441435,-0.710269,0.18138373,310 +413,0.3413685,-0.34847164,-0.50588316,-0.1132708,-0.33429,0.05745491,-0.2998006,0.14567547,0.14381623,-0.44857675,-0.047738247,-0.09363298,0.14198646,0.37799352,-0.09594727,-0.5551313,-0.0015381405,0.11815327,-0.6994541,0.50608975,-0.59873426,0.39356014,0.187391,0.3794183,-0.046197116,0.3703365,0.27869055,0.04268105,0.018878784,-0.11502641,-0.30363077,0.17227122,-0.5323204,0.17566617,-0.22803487,-0.45710674,0.19627622,-0.28887463,-0.11892561,-0.7771389,0.03098767,-0.9768024,0.5405691,-0.16053505,-0.20044568,-0.027385626,0.19885515,0.40703186,-0.3388086,0.17454918,0.06939609,-0.29484925,-0.06454957,-0.3879626,-0.081832506,-0.49984142,-0.4167173,-0.049688075,-0.7887731,-0.4300067,-0.09404046,0.13391533,-0.34289208,0.07297599,-0.17364076,0.15348913,-0.4117226,-0.096502356,0.29036143,-0.33627516,0.36889938,-0.4709981,0.012732251,-0.040141765,0.3627688,-0.11409068,-0.21011356,0.2881512,0.32703486,0.5549231,0.23975895,-0.37700078,-0.048059948,-0.20700362,0.1513386,0.4087588,-0.05539169,-0.31738684,-0.33811226,-0.0017443427,0.29202223,0.43931028,0.08021414,-0.17353341,0.083874166,-0.11152865,-0.24410519,0.25958976,0.53149456,-0.38260725,-0.33939424,0.18035075,0.6808344,0.00961563,-0.24305712,0.2170748,-0.020406669,-0.39946026,-0.21730936,0.13893107,0.056196306,0.53754985,-0.036977734,0.19688585,0.71750504,-0.13717273,0.059846144,-0.07037068,-0.11889909,-0.26056802,-0.24279752,-0.07000048,0.22387567,-0.74968,-0.0039890492,-0.2631924,0.66159546,0.18820815,-0.7329728,0.44959527,-0.48581156,0.0791403,-0.11065917,0.61502755,0.520369,0.36252183,0.25318483,0.8375235,-0.42767796,0.25973925,-0.08046215,-0.38327006,-0.05621304,-0.3444504,0.08987652,-0.533023,0.37819663,-0.08767843,0.26723242,0.051708855,0.41214833,-0.5397831,-0.10826145,0.27906355,0.87071526,-0.34361118,0.0095202755,0.6971712,1.1199192,0.93100685,-0.120526776,1.3139865,0.36425424,-0.19202837,-0.0065008574,-0.025127213,-0.5113229,0.10875099,0.42189333,0.25632626,0.4029805,-0.035501186,0.018977566,0.33801562,-0.29297575,0.09483989,-0.044153415,0.14416017,-0.059311707,-0.08854319,-0.5447245,-0.036735952,0.1254671,-0.25583845,0.022446709,0.28487402,-0.09574264,0.5968801,0.024444252,1.5016495,-0.18303771,0.07173236,0.11945764,0.53587824,0.37362844,-0.0725201,-0.013104728,0.45249483,0.38828135,0.0038029552,-0.45790836,0.22030266,-0.3293365,-0.54547685,-0.13153997,-0.36497575,-0.086412035,-0.010894426,-0.44954208,-0.16040398,-0.0109188985,-0.33389348,0.34596154,-2.7294085,-0.28728512,-0.1459565,0.3111225,-0.39162564,-0.18879496,-0.12298907,-0.3690672,0.31919998,0.3481038,0.34047166,-0.6539345,0.56330687,0.5877328,-0.2552635,-0.20161493,-0.6141032,-0.127122,-0.04595946,0.5514626,0.027296275,-0.28623253,-0.25894192,0.282695,0.7111715,-0.07603153,0.19228114,0.43748623,0.37278724,0.089197315,0.6151245,0.035053916,0.5672943,-0.38405737,-0.10686115,0.39670494,-0.1839509,0.24449399,0.03936967,0.17171267,0.43274498,-0.41152218,-0.79757273,-0.6827259,-0.448646,1.034089,-0.36838728,-0.48197207,0.1430236,0.025700228,-0.14166902,0.026887996,0.38307992,-0.019202087,0.30689344,-0.6056456,0.11082548,-0.095069565,0.20389497,0.02911513,-0.04155189,-0.35485205,0.674763,-0.066128895,0.6691063,0.27918157,0.21783611,-0.01610962,-0.33122277,0.01224208,1.0396773,0.2889843,0.08265467,-0.20295154,-0.24072422,-0.27959752,-0.18937135,0.0050322884,0.4628251,0.98617303,-0.12397225,0.122655876,0.30689248,0.040897984,0.0025770802,-0.04142041,-0.2019014,0.05253791,0.17797658,0.39059612,0.44800502,-0.11799506,0.42262825,-0.28598526,0.42114636,-0.17705777,-0.63221544,0.47134972,0.549466,-0.20024215,-0.0704921,0.5274846,0.48708487,-0.6413608,0.5171696,-0.798634,-0.3201442,0.7178529,-0.10512304,-0.474138,0.28995234,-0.25206017,0.28250363,-0.970668,0.24861859,-0.30139646,-0.36190742,-0.2756233,-0.27279416,-3.782872,0.27419105,0.040589787,-0.09953223,-0.2971972,-0.09674927,0.3022301,-0.5227732,-0.5800397,0.0028843454,0.20119755,0.5817111,-0.12933435,0.05062994,-0.51082987,-0.16622521,-0.042652737,0.35044572,-0.020113068,0.12851359,-0.2817263,-0.32747886,-0.24137414,-0.12401606,-0.54055727,0.22953251,-0.6443453,-0.43945575,-0.17564337,-0.42160764,-0.23268506,0.51240915,-0.26853347,0.008701482,-0.22312011,0.010047832,-0.23481742,0.11733564,0.16082372,0.21733348,0.07822589,-0.083037324,0.004298764,-0.3863173,0.23758231,-0.010193421,0.38249296,0.10012799,-0.14422278,0.05417972,0.38654834,0.59504765,-0.20630734,0.8816699,0.060109768,-0.06035,0.4594508,-0.3532397,-0.31321293,-0.7037059,-0.42837754,-0.19316682,-0.42004487,-0.6133731,0.1339298,-0.26225767,-0.7696652,0.75831264,0.11868082,0.3980697,0.0019762425,0.5632188,0.3699271,-0.15841614,-0.115436845,-0.04365133,-0.18816482,-0.5209335,-0.3199558,-0.6887173,-0.5263442,0.12140907,0.80801076,-0.4236329,0.051720973,-0.010024999,-0.14224488,0.06508715,0.21670322,0.3467074,0.34478974,0.4739239,-0.031524807,-0.74175435,0.46617046,0.078076676,-0.20973,-0.41345373,0.016331013,0.6299247,-0.81751496,0.53015935,0.3340064,0.10851394,-0.009541603,-0.49908093,-0.0684498,0.009809802,-0.31533688,0.53413373,0.059647474,-0.84414214,0.5018898,0.4423186,-0.30679798,-0.6326052,0.21183386,-0.10026206,-0.21773997,-0.1488653,0.37728882,0.0027958325,-0.037225995,-0.14524218,0.082591906,-0.66341656,0.1771324,0.39625248,0.0011035204,0.311824,-0.07639007,-0.45898676,-0.60216445,-0.023202134,-0.60513455,-0.1520001,0.30066368,-0.12222139,-0.17538984,0.35131106,-0.054073017,0.43754557,-0.3409669,0.1402545,0.106274135,-0.37353644,0.34490234,0.49237347,0.17735751,-0.38265276,0.49730363,0.14149919,-0.30327225,-0.1248366,-0.053990774,0.42192087,0.13164487,0.29222605,-0.15963085,-0.062035646,0.4317854,0.7971502,0.24201016,0.54665923,0.11649247,-0.06680634,0.42761317,0.14979695,0.070049815,0.14215888,-0.42006463,0.07436478,0.016453627,0.141077,0.4959011,0.30513898,0.3155244,0.101070605,-0.05855679,0.018860383,0.16590694,-0.1876343,-0.9537115,0.33477202,0.29541317,0.7092351,0.4424588,0.21381949,-0.10413963,0.47782776,-0.3553557,0.12647857,0.32047603,-0.048733596,-0.4157772,0.8736337,-0.624236,0.2869416,-0.1694741,0.0016933616,0.115160026,-0.021681266,0.5055233,1.0253782,-0.11298341,0.062322207,-0.07390324,-0.007259258,0.05396209,-0.3343974,-0.11052046,-0.17275403,-0.28668424,0.64164144,0.32858038,0.37515777,-0.26952794,-0.12556358,0.037664797,-0.10141083,0.28843427,-0.08142711,0.12454784,0.09506755,-0.24361052,-0.22967115,0.7016637,0.12827303,0.09889066,-0.19783385,-0.49875566,0.14628948,-0.09198512,0.0938291,0.016645487,-0.67583,0.21551763,-0.23895833,-0.5637211,0.6087044,-0.2409353,0.01275021,0.18151297,-0.044303775,-0.08990825,0.06284881,0.03299457,0.64719707,0.15687421,-0.29988042,-0.3569402,-0.036028672,0.17321014,-0.38780212,0.09880643,-0.37121627,0.13158576,-0.6093846,0.57818,-0.01348645,-0.54919106,0.32295945,-0.16392449,-0.13658085,0.5190349,-0.076839924,-0.18179809,-0.0074710823,0.0007313277,-0.43476486,-0.15906748,-0.26890263,0.26396495,0.009882705,-0.10291598,0.08788286,-0.09731964,0.027837455,0.47345623,0.056201924,0.37299317,0.11084629,-0.13744578,-0.31870922,0.26988727,0.15919529,0.27744848,0.019641936,0.121776536,-0.14501722,-0.34080854,-0.2678171,0.113336824,-0.17428745,0.23821568,0.11533741,-0.26842132,1.0720326,0.10951834,1.2355394,0.05769113,-0.41025785,-0.03563157,0.49707156,-0.03857728,0.055064537,-0.43722865,0.9965619,0.6688398,-0.11626337,-0.06246803,-0.26648286,-0.21337166,0.3290977,-0.39678416,-0.05112425,-0.08078371,-0.68577605,-0.42108265,0.31771317,0.28077212,0.23901394,-0.06634255,0.1251909,0.026167925,0.075976096,0.19781582,-0.72043496,-0.19201064,0.22714822,0.22720662,-0.31631687,0.044806607,-0.36087593,0.39832544,-0.759088,0.17398548,-0.54564613,-0.05493256,-0.061523598,-0.42139435,0.15001805,-0.12946382,0.23230852,-0.25286725,-0.398947,-0.010662858,0.3502173,0.11941885,0.21670552,0.6668495,-0.2605113,0.2613848,0.19549395,0.41687775,1.3122321,-0.32964876,-0.17860796,0.29994208,-0.3759747,-0.6627437,0.20837796,-0.3946984,0.0008844393,-0.10544358,-0.5279279,-0.40125498,0.24410772,0.3173366,-0.07022209,0.105507314,-0.68523735,-0.019500494,0.27247366,-0.3203396,-0.24784441,-0.20529246,0.28754538,0.7760014,-0.30662584,-0.25759563,0.07252257,0.34687564,-0.36977476,-0.7184253,-0.06455616,-0.11663122,0.39685816,0.16698305,-0.2567555,0.11495621,0.22679329,-0.5250549,0.10066128,0.5327891,-0.28818864,0.14844243,-0.27833322,0.0707232,0.93748105,-0.15996528,-0.35843238,-0.60659635,-0.52292347,-0.87397563,-0.57317144,0.2860518,0.20282969,0.13992074,-0.2632853,0.026705146,-0.26177973,-0.20382714,0.1348577,-0.41282204,0.27460846,0.04077145,0.635588,-0.2737996,-1.005823,0.19579895,0.21098618,-0.11110008,-0.62722635,0.6671189,-0.19848903,0.7795045,0.008611978,-0.19724552,0.19481643,-0.6057162,0.24491559,-0.4987674,-0.020390805,-0.8050543,-0.04726663,315 +414,0.54063404,-0.102253236,-0.6052493,-0.12693699,-0.3117202,-0.24589707,-0.4119399,0.16163029,0.41252595,-0.19989201,-0.20703192,-0.11057372,0.12781331,0.5540054,-0.003562561,-0.74444324,-0.13397342,0.31759462,-0.902627,0.51911324,-0.5119008,0.3927934,0.08648949,0.29092067,-0.015842557,0.3162491,0.2437503,-0.11013581,-0.08784159,0.1404783,-0.103730224,0.4726956,-0.90985054,0.028594498,-0.080936745,-0.24756067,-0.04701863,-0.36041668,-0.20073785,-0.8689289,0.07477329,-0.7828173,0.5155017,0.0342505,-0.26872987,-0.19155338,0.044635158,0.5631176,-0.26965553,0.034552198,0.31025702,-0.19910471,-0.24655461,-0.32685024,-0.018953482,-0.3998422,-0.6180678,0.016997125,-0.54646355,-0.32792705,-0.28023186,0.14211793,-0.22652674,-0.0038260669,-0.26099265,0.5093968,-0.49285513,0.079429425,0.4194774,-0.24100721,0.46245155,-0.47300562,0.15614478,-0.20232224,0.58100253,-0.0956533,-0.2638978,0.4134354,0.49719283,0.4536777,0.2101017,-0.35192892,-0.23539697,-0.09428294,0.294128,0.31217504,-0.17397204,-0.31249973,-0.02014431,-0.047616582,0.15599084,0.28520602,0.12962393,-0.49720597,-0.03457929,0.0015834527,-0.022669679,0.5371281,0.5520118,-0.26101774,-0.39229706,0.350941,0.8747371,0.4063831,-0.21179543,0.03214877,-0.05239197,-0.725546,-0.20232359,0.19248745,-0.22379863,0.40242085,-0.02990581,-0.023085805,0.91927904,-0.21098253,-0.27680907,-0.06797259,-0.20193043,0.03134414,-0.25908655,-0.18116103,0.34493488,-0.53137887,0.08267333,-0.105435885,0.4570147,0.23527965,-0.8551532,0.43293577,-0.65600604,0.21220405,-0.0660581,0.74742424,0.80806553,0.5342885,0.4505345,0.8048776,-0.37585607,0.23370944,0.068826415,-0.6248194,0.16936299,-0.36664742,0.16754845,-0.5542719,-0.015583209,-0.3152521,-0.07044519,0.18881099,0.22940421,-0.6609565,-0.022015104,0.16275199,0.68205446,-0.3060526,-0.23430708,0.621267,0.96582943,1.1449515,0.1015734,1.2033012,0.4494907,-0.29846573,0.32529154,-0.459762,-0.8319134,0.16323702,0.30865103,-0.44345978,0.46763405,-0.1577836,0.13503557,0.43516037,-0.2501026,-0.008389422,-0.039054755,0.3483893,-0.029192021,-0.31239864,-0.5917406,-0.13092558,-0.14286482,-0.037479375,-0.0021323988,0.30981627,-0.12650569,0.35291725,0.028153734,1.3836317,-0.1710807,-0.013567321,0.027631048,0.45218918,0.2544986,-0.27893025,-0.16820095,0.46718964,0.3800557,0.10062977,-0.51048446,0.42922583,-0.22633503,-0.43529367,-0.06351844,-0.38199314,0.21830857,0.10152478,-0.33619976,-0.10744556,0.07702553,-0.30516538,0.57272357,-2.5402377,-0.20214394,-0.061678503,0.32167158,-0.2437712,-0.23965092,-0.06922028,-0.5829686,0.1404957,0.18424316,0.5552923,-0.6256823,0.48169118,0.54027927,-0.68782365,-0.042798292,-0.83351076,-0.1946534,0.034863647,0.45387056,0.1437101,-0.04029465,0.12505995,0.2634662,0.59482425,-0.037096746,0.14899333,0.5615603,0.33170462,0.09951138,0.63046396,-0.01178595,0.60361344,-0.22141615,-0.259803,0.5333614,-0.08566101,0.15748286,-0.06871543,0.02892476,0.6157003,-0.42052856,-1.1583726,-0.6914422,-0.4591493,0.82923,-0.37628695,-0.6074724,0.3231903,-0.12609808,-0.12682487,0.1481173,0.5670039,-0.0440965,0.2590678,-0.8340216,0.089168124,-0.039008614,0.2781301,0.1884081,-0.070569545,-0.3692755,0.6387512,0.035325013,0.47287577,0.34700647,0.26264626,-0.18918502,-0.4800094,0.08795066,1.0044838,0.18226497,-0.05277747,-0.2531071,-0.41189298,-0.18441735,-0.10219066,-0.18343091,0.54992443,0.7203211,-0.24267602,0.15347593,0.22132467,0.03357633,0.11803112,-0.1775327,-0.28383246,0.09761397,0.1029735,0.42894882,0.97901905,-0.29296726,0.51594394,-0.2773793,0.34182733,0.097232565,-0.7508936,0.70875317,0.78055537,-0.09060268,-0.051372197,0.5621095,0.3496806,-0.4102076,0.69828266,-0.6205288,-0.22748895,0.652701,-0.14691925,-0.48256066,0.2290148,-0.2700197,0.21718587,-0.84147936,0.40713018,-0.36782306,-0.25879428,-0.2446215,0.028090332,-3.5963027,0.28998545,-0.1113816,0.10455572,-0.16993691,0.030252615,0.2258776,-0.6791484,-0.60061455,0.055490177,0.19342764,0.5526169,-0.28351867,0.031137366,-0.34383184,-0.3898795,-0.08512606,0.23840399,0.19809686,0.47112414,-0.12680352,-0.5123605,-0.0040665013,-0.10272867,-0.50617445,0.076882824,-0.716093,-0.5707463,-0.17849053,-0.7511736,-0.3081304,0.66454875,-0.5546131,0.031302325,-0.28322178,0.1331289,-0.08955385,0.34305567,0.065257326,0.30121073,0.1339659,0.0048478693,-0.093486294,-0.13942182,0.34799144,0.021929512,0.2580196,0.1495192,-0.0733399,0.1941628,0.57205254,0.90309554,-0.22917657,1.0844141,0.56839544,-0.0941275,0.18703942,-0.26136902,-0.096736535,-0.75126374,-0.4276281,-0.20760521,-0.5051606,-0.5201116,0.014540649,-0.35759178,-0.80156213,0.85052305,-0.25669804,0.5641832,0.07221448,0.13587928,0.37132475,-0.33570322,0.019121276,-0.378175,-0.28805718,-0.6891932,-0.2462728,-0.6153449,-0.7572174,0.18587855,0.9070884,-0.4207191,-0.0048356163,-0.06628337,-0.21592681,0.02882735,0.24906752,0.07389666,0.43876174,0.58191055,-0.010189078,-0.6651799,0.40280026,-0.028026488,-0.08227861,-0.55916554,0.20920536,0.6030828,-0.6733431,0.820814,0.1125397,0.019116253,0.027925277,-0.59929264,-0.3901383,0.14659522,-0.275231,0.5660521,0.081955865,-0.8061985,0.3837827,0.31597596,-0.70329046,-0.75660473,0.39622298,-0.10345098,-0.2527191,-0.07602284,0.45339128,-0.0061263614,-0.07423084,-0.41673204,0.18609068,-0.44216117,0.16767791,0.31155983,-0.106094934,0.16965686,-0.081669755,-0.25493068,-0.94538325,0.110234894,-0.41034287,-0.2378989,0.3968816,-0.16973867,-0.07956917,0.07921697,0.4453105,0.27752432,-0.19297075,0.041568033,-0.033168335,-0.28872973,0.27230856,0.46766886,0.439851,-0.5019837,0.4918907,0.09736109,-0.3897686,-0.117636,-0.09028002,0.43151283,-0.08295625,0.38204083,-0.093419,-0.23761858,0.17389974,0.62243754,0.152109,0.44012758,-0.06923161,-0.10622082,0.41608983,0.08887042,0.21586323,0.002896345,-0.48198482,0.17246325,-0.06910002,0.2268986,0.65475255,0.31058073,0.16401508,0.023765922,-0.28845713,0.013943212,0.29873443,-0.024296688,-1.2315214,0.5191698,0.38159662,0.8034574,0.5407075,0.21684754,-0.20614684,0.69256103,-0.3265757,0.17453742,0.4343173,-0.15528354,-0.5512938,0.7042344,-0.7390477,0.3899799,-0.08238256,-0.044725437,0.21633044,0.12976383,0.34390026,0.85469997,-0.39478293,0.036199573,-0.07876235,0.005993657,0.17772762,-0.3015944,-0.051408987,-0.40018293,-0.418916,0.9435624,0.4871967,0.39769062,-0.16613145,-0.038958013,0.12908377,-0.30228376,0.2880606,-0.22988507,0.065710194,0.32471988,-0.5001295,-0.010015539,0.57662904,-0.081465736,0.005548439,-0.13175528,-0.25450987,0.118134856,-0.32587528,-0.13417049,-0.16259651,-0.8267131,-0.15315475,-0.17335561,-0.31733528,0.5894146,-0.13788421,0.16219105,0.12799238,0.029437708,-0.32241794,0.5382739,-0.039992165,0.8488091,0.36081147,-0.15690374,-0.226789,0.3124378,0.3151556,-0.23207597,0.09938624,-0.3075227,0.016518947,-0.55251634,0.5544768,-0.076416,-0.55909073,0.09098514,-0.08639539,-0.0297952,0.6381701,-0.22191092,-0.37060675,0.005250492,-0.12542485,-0.26248643,-0.13499191,-0.22196345,0.18150909,0.205219,-0.15861921,-0.21796529,-0.082956664,-0.12997465,0.60847056,0.06350797,0.50096065,0.20774695,-0.01682525,-0.19159195,0.17487957,0.37253624,0.388144,0.12303482,-0.05360726,-0.3641267,-0.27376047,-0.4359981,0.090353794,-0.052282188,0.22555482,0.04693201,-0.16304244,0.8423926,0.077954285,1.5160463,-0.07189349,-0.2536002,0.21212935,0.4021751,-0.074735545,0.06105117,-0.55345255,0.8824658,0.5456859,-0.09931254,-0.036341507,-0.46590042,-0.19181983,0.07050871,-0.35114196,0.14770015,-0.08799406,-0.66956365,-0.36437678,0.17548601,0.25170282,0.13582847,-0.055392265,0.08944503,-0.011538401,0.06116697,0.25602326,-0.5964688,-0.24496278,0.16667119,0.4358291,-0.116987094,0.11765419,-0.3323245,0.46361944,-0.6639167,0.19366303,-0.5217193,0.12378387,-0.3210118,-0.42308384,0.17478968,-0.016135802,0.30267113,-0.27081206,-0.30448887,-0.14947622,0.5364639,0.060762204,0.14789139,0.8601058,-0.33343768,0.07988671,0.13007702,0.5550452,1.1094105,-0.6171438,-0.088464804,0.41957855,-0.31588563,-0.6074737,0.38174182,-0.35949108,-0.0350059,-0.27884167,-0.55864394,-0.51221126,-0.00518206,0.03962249,-0.08217569,0.023842815,-0.6560802,0.022846427,0.21615829,-0.41153622,-0.13650689,-0.14633505,0.52022403,0.8760378,-0.45048407,-0.577417,0.056030374,0.0556367,-0.24393494,-0.3848772,-0.09392845,-0.0009537978,0.37771538,0.19940902,-0.44217667,-0.0032394188,0.39741638,-0.5138225,0.10933856,0.33716062,-0.37473768,0.24320817,-0.23435807,-0.1727355,1.036192,-0.37345406,-0.048646025,-0.37098795,-0.61073494,-1.1294944,-0.33685756,0.34334582,0.15900238,0.0165617,-0.424344,0.094692364,-0.23729093,-0.13322373,0.16617295,-0.5666043,0.3028621,0.08243863,0.59218353,-0.39047846,-0.90021676,0.1409393,0.34948722,0.047917347,-0.79538214,0.6025876,-0.06763016,0.89052165,-0.020928916,0.0448528,0.10607137,-0.466521,0.083445124,-0.3143096,-0.035720076,-0.7991854,-0.039501633,327 +415,0.55697024,-0.18593165,-0.5039282,-0.019295394,-0.22326647,0.075483195,-0.1534885,0.5369783,0.38177222,-0.4452929,-0.24820915,-0.23810796,0.1251162,0.23560087,-0.16382718,-0.5480205,0.016394794,0.2754784,-0.60459524,0.64160603,-0.45543677,0.3501196,0.06622028,0.2869432,0.3508834,0.21405719,-0.023004744,-0.13708849,-0.3945915,-0.109718084,-0.17938659,0.28068596,-0.40993366,0.12316624,-0.3108563,-0.4366441,-0.21588616,-0.6625903,-0.28378835,-0.8211619,0.40590924,-0.8522111,0.5035219,0.111288674,-0.20811357,0.22056031,-0.008001151,0.20315936,-0.2020311,-0.053275824,0.17298259,-0.20558597,-0.067892544,-0.26929003,-0.20714346,-0.18066093,-0.6497941,0.09509746,-0.518058,-0.14990303,-0.22515838,0.17328432,-0.34664303,-0.12937029,0.050427888,0.60003215,-0.40975854,0.07536824,0.10510373,-0.028178392,0.18409677,-0.47116822,-0.30304018,-0.10573571,0.53784007,-0.3373192,-0.3210096,0.29254124,0.28474933,0.5726418,-0.09053204,-0.14171569,-0.3640612,0.13013971,0.08218639,0.474404,-0.08407247,-0.75496656,-0.02176264,-0.05339691,0.26517776,0.21501909,0.19717054,-0.25870436,-0.13201593,0.037050012,-0.18276569,0.59079295,0.48852545,-0.31626612,-0.14127986,0.37192732,0.5126856,0.15504082,-0.05832383,-0.12235316,0.044239577,-0.58193356,-0.19703226,0.17518635,-0.21446697,0.5502781,-0.25447935,0.30459908,0.5433014,-0.19204763,-0.08743585,0.2930201,0.05075837,-0.17318273,-0.116882004,-0.22583617,0.22056226,-0.3924922,0.12675908,-0.18033688,0.85724926,0.229561,-0.75756234,0.42374086,-0.61452836,0.24951343,-0.024361173,0.53903073,0.7823688,0.4021015,0.46518523,0.6864443,-0.3519802,-0.022362012,-0.00046342186,-0.50454235,-0.08622565,-0.21225426,-0.12300769,-0.5626454,-0.043166187,0.019482728,-0.20439386,0.25783387,0.51267445,-0.6226255,-0.18618062,0.14805044,0.72943777,-0.23769364,-0.14402506,1.080097,0.95040697,1.0383278,0.023050351,1.1923119,0.26915386,-0.42075735,0.2656445,-0.40537125,-0.7425638,0.35108218,0.20518629,-0.570306,0.38427654,-0.016648471,0.11289766,0.22999111,-0.36592916,0.003340606,-0.15578605,0.051445466,-0.0035525945,-0.1748333,-0.43692842,-0.382368,-0.22795257,0.08547851,0.31190854,0.39458257,-0.23511504,0.4182594,-0.068598375,1.5203645,-0.09153166,-0.13837956,-0.011174068,0.48919177,0.2730004,-0.11631974,-0.2795411,0.38301256,0.30194372,0.033800818,-0.67172444,0.078263216,-0.16317317,-0.43273288,-0.17648889,-0.4079187,-0.065582134,-0.13252923,-0.32656607,-0.18158995,-0.3114312,-0.49764544,0.5038814,-2.5742154,-0.27873677,-0.04443882,0.3907192,-0.1817118,-0.36717197,-0.3107085,-0.6523361,0.3323206,0.17370269,0.4673131,-0.8304261,0.32178774,0.4597532,-0.6088423,-0.21120603,-0.68132687,-0.017884,-0.04281981,0.30558997,-0.015763674,0.00045482177,0.24616863,0.07532263,0.49082628,-0.039313767,0.14389388,0.26298058,0.5862881,0.03586034,0.42242068,-0.018302683,0.60938984,-0.272392,-0.18754135,0.35946774,-0.42153907,0.26535422,-0.11838611,0.094246574,0.5060559,-0.5948467,-0.83673424,-0.697936,0.03967275,1.0496505,-0.07720382,-0.4431572,0.20175853,-0.42991668,-0.2786643,-0.12794837,0.67957467,-0.16726674,-0.29260913,-0.8129564,0.05174287,0.0029002258,0.09787739,-0.056110773,0.13575025,-0.30557993,0.6752614,-0.0012273107,0.4289568,0.18265486,0.20026878,-0.51139337,-0.5321436,0.12301052,0.85214984,0.3963237,0.17448531,-0.2085201,-0.21602993,-0.45349917,-0.16287991,-0.05559328,0.6936042,0.7000642,-0.11194193,0.11073453,0.3760707,0.088404186,0.18644616,-0.25191027,-0.23673749,-0.22260617,-0.030015286,0.6108224,0.67634434,-0.18720742,0.5509079,0.14792418,0.14362623,-0.25137815,-0.4361856,0.6953473,1.1732641,-0.15974307,-0.28486362,0.4721373,0.4177135,-0.36143568,0.45716387,-0.52572817,-0.34853813,0.45189217,-0.23516639,-0.3930826,0.30510283,-0.31103125,0.2617057,-0.94587994,0.2797076,-0.12812746,-0.41355562,-0.45875898,0.0032238045,-2.6593075,0.20466717,-0.22059569,-0.11831002,-0.1829224,-0.1365221,-0.07640997,-0.5298944,-0.6502852,0.13167419,0.07516021,0.8640303,-0.10212338,0.20866777,-0.16757227,-0.3652598,-0.34142599,0.067264244,0.029385881,0.6174087,0.035335,-0.4294524,-0.022032721,-0.15942886,-0.377681,-0.0061515016,-0.54301965,-0.47151157,-0.028856626,-0.59145844,-0.43026748,0.70400774,-0.33440295,0.110645376,-0.2250295,-0.08147781,-0.0013902975,0.2738531,0.029743213,0.086818375,0.08560658,-0.051778655,0.19538797,-0.18278639,0.3145246,-0.09645862,0.27219397,0.42971134,-0.12495626,0.38131282,0.49391678,0.8308553,-0.03819104,1.0093307,0.49039987,-0.0058371425,0.22949086,-0.26925358,-0.27223414,-0.4919332,-0.28200144,-0.08983401,-0.5029181,-0.46217233,-0.12680814,-0.40015382,-0.8390304,0.43905824,0.024943879,0.25954786,0.0076145446,0.34371153,0.70411783,-0.14574768,-0.0018439889,-0.044968914,-0.19327787,-0.53566515,-0.122635536,-0.6606798,-0.4345291,0.26011673,0.7856217,-0.24163881,-0.03542804,0.1662003,-0.22752213,-0.033027865,0.2075794,-0.018797908,0.1853933,0.36903563,-0.105961196,-0.6574367,0.5157075,-0.027093997,-0.12239333,-0.54317236,0.282199,0.5088249,-0.6375475,0.434784,0.370177,-0.0355486,-0.028144224,-0.29626963,-0.119401455,-0.095810674,-0.09609567,0.3470603,0.2806452,-0.6897787,0.42959172,0.38174972,-0.1217852,-0.75899684,0.55520296,0.14075819,-0.30624968,-0.13982151,0.3911348,0.26539353,0.0010058923,-0.3482897,0.12959848,-0.43612978,0.19990925,0.2132415,-0.088574655,0.03750574,-0.2476115,-0.22059515,-0.8526777,0.11645285,-0.5179342,-0.2714388,0.21103512,0.21947327,0.23306839,0.14905035,0.024920782,0.30868334,-0.34347758,0.032705307,-0.1382307,-0.15375075,0.19172296,0.36276883,0.52327603,-0.541402,0.5744433,0.02658488,-0.108581565,0.001707886,0.04874634,0.459792,0.04835666,0.3795535,0.25406146,-0.4191114,0.3839533,0.7419481,0.27399513,0.30896392,0.14036857,-0.12631197,0.121784225,0.13998684,0.37121218,-0.13327596,-0.39654657,-0.0073994547,-0.19579048,0.08932972,0.49025235,0.14106277,0.21553409,-0.10819212,-0.34589168,-0.00175875,0.23115608,-0.045129895,-1.2976902,0.39418554,0.25641856,0.8807331,0.5127942,-0.11791106,0.09203543,0.5428781,-0.2939093,0.20515056,0.32551816,-0.102498956,-0.51007044,0.47515222,-0.6373621,0.5991271,-0.09410144,-0.030648692,-0.0037950852,-0.08582,0.33240047,0.7388097,-0.2793819,0.08991615,0.045845505,-0.2564564,0.22014412,-0.4123404,0.0631729,-0.67860323,-0.084522225,0.8085639,0.47783574,0.32632992,-0.046437614,0.08495159,0.10854054,-0.16880396,0.061136186,0.15951075,0.23860486,-0.027181502,-0.66102135,-0.036038797,0.58788025,0.0024369445,0.15322301,-0.034345273,-0.19147527,0.23986837,-0.35207734,-0.1461478,-0.20602766,-0.890319,-0.14895448,-0.35368863,-0.40955654,0.63352853,0.066524886,0.26654047,0.33595392,0.13399705,-0.38256183,0.45201907,0.21385086,0.6218699,-0.070945896,-0.18909724,-0.40693602,0.3064482,0.3210702,-0.18793336,-0.19923456,-0.08072082,0.03752402,-0.43408117,0.55699193,0.03952965,-0.22612047,-0.059410688,-0.012826762,0.14447357,0.657144,-0.24995513,-0.14958858,-0.066080384,-0.20317991,-0.30648574,-0.13262169,-0.100720085,0.2991689,0.4702346,-0.17082198,-0.1980567,-0.09867125,-0.17039652,0.31160358,-0.070679925,0.45057684,0.3749868,0.16910265,-0.3130037,-0.18259077,0.28161484,0.5800377,0.028862188,-0.20210464,-0.34953484,-0.29488897,-0.46844572,0.13079092,-0.09827656,0.24275301,0.15367222,-0.22495201,0.5836233,0.06614102,1.1510957,0.08154059,-0.40605316,0.15158257,0.4548368,0.036499757,-0.2798706,-0.3198673,1.0247247,0.43583098,-0.14770074,-0.121856384,-0.48774222,0.05250607,0.19140817,-0.18631239,-0.19042744,0.12512359,-0.5682424,-0.2538678,0.28129986,0.1615523,0.18018079,-0.20221664,0.08093035,0.19251837,0.017495189,0.18431018,-0.46078014,-0.19421983,0.29051742,0.3244682,0.03617965,0.10966318,-0.46352905,0.3906844,-0.46752936,0.070443705,-0.23144522,0.29797173,-0.2562425,-0.41820297,0.3189591,0.21810913,0.2801848,-0.3276282,-0.40429014,-0.5004433,0.52191573,0.11014361,0.11591799,0.4666169,-0.3197877,0.072249,0.058077242,0.52556694,1.0949749,-0.06809918,-0.06613337,0.34283066,-0.3597128,-0.65497875,0.45253468,-0.41847378,0.19166604,-0.014435644,-0.10950198,-0.7045147,0.19173047,0.20667635,0.24864015,-0.0037032792,-0.6756587,-0.27098113,0.3215386,-0.34974962,-0.18903764,-0.35776022,0.07646502,0.6125534,-0.2423598,-0.22732387,0.1526819,0.17967983,-0.20711221,-0.5804194,-0.018205348,-0.4104247,0.31099224,0.08090145,-0.3341592,-0.13814603,0.0892974,-0.4849586,0.16763623,0.08970368,-0.48104984,0.18128459,-0.32516286,-0.09280883,1.0595976,-0.29422307,0.37331077,-0.34952646,-0.5284388,-0.8959766,-0.34120616,0.41524622,0.026593575,0.0506118,-0.74969923,0.07360733,-0.045967076,-0.34900528,-0.02021257,-0.4915604,0.52618617,0.14618339,0.24061091,-0.05859562,-0.9043788,0.049218982,0.097829945,-0.39989927,-0.68584627,0.45964092,0.0657079,0.8556474,0.07199126,0.11282141,0.48143214,-0.45610908,-0.14652114,-0.17488733,0.013408669,-0.61532754,-0.032167505,328 +416,0.31788117,-0.25696698,-0.39834023,-0.04159101,-0.20051713,0.09269315,-0.13349858,0.3365082,0.024051325,-0.44688776,-0.23077671,-0.29311275,0.009740626,0.28559023,-0.23427913,-0.3173093,-0.06745498,0.14560743,-0.34101826,0.47608763,-0.42801365,0.19272831,0.16002224,0.31752452,0.24081092,0.179639,0.14980449,-0.13939385,-0.23421441,-0.30131277,-0.21401946,0.2762048,-0.3667274,-0.008193163,-0.11250501,-0.48374,0.11329346,-0.5261802,-0.29629883,-0.720549,0.31691688,-0.99474245,0.4307073,0.100516595,-0.17473745,0.50010943,0.28370485,0.38427812,-0.12614128,-0.116701946,0.29016188,-0.16512826,-0.055253983,-0.20273156,-0.18108305,-0.22122182,-0.5842064,-0.020083671,-0.2556407,-0.3256716,-0.3234208,0.08907706,-0.33245897,0.048026945,0.00745632,0.43904775,-0.48220018,0.089417204,0.17041923,-0.16174786,0.38368884,-0.5906314,-0.17053865,-0.12556422,0.25541368,-0.24374063,-0.086494036,0.27215442,0.3742784,0.36412773,-0.063196875,-0.12714155,-0.32318422,-0.061849944,0.07312248,0.5898567,-0.18863395,-0.33177838,0.0004896096,0.11209063,0.1246578,0.23679058,0.04129265,-0.17654404,-0.15287575,0.17569508,-0.30593368,0.25321296,0.36720848,-0.48900032,-0.15426838,0.35823035,0.5264335,0.12104661,-0.11204841,-0.2604911,0.03303701,-0.5267054,-0.13160944,0.070000485,-0.3284498,0.45942357,-0.096766256,0.3673771,0.59905404,-0.13894634,0.08704729,-0.11236121,0.16100608,-0.14481483,-0.2513086,-0.32150283,0.3001649,-0.30240098,0.18585584,-0.053705532,0.83053166,-0.0013653168,-0.60244226,0.32996628,-0.574677,0.12403692,-0.17515157,0.43133336,0.37736076,0.3047206,0.5191474,0.58427465,-0.4177241,-0.03790591,-0.10548778,-0.38571182,-0.0052072364,-0.084384404,-0.03875845,-0.5198439,0.009893128,-0.008614166,0.0058047175,0.103164725,0.3609681,-0.51444,0.11101009,0.15970469,0.91620266,-0.28634113,-0.011851008,0.57107985,0.91215724,0.89852303,0.007736883,0.8723634,0.14893831,-0.2681997,0.21806674,-0.23961933,-0.5971714,0.32557565,0.6275797,-0.27529377,0.14643614,0.17924602,0.00018144932,0.3989813,-0.36597708,-0.09071102,-0.27799523,-0.13433568,0.26139164,0.008886849,-0.504626,-0.2977769,-0.11109273,0.041928057,-0.04555559,0.21702108,-0.21577528,0.36687723,-0.02310439,1.9497671,-0.052179486,0.10581989,0.19350693,0.34069103,0.07962417,0.056803685,-0.079020016,0.36076212,0.30730125,0.2308516,-0.521084,0.181219,-0.17240132,-0.45505187,-0.064534165,-0.21468782,-0.02480243,0.17260706,-0.427815,-0.086175494,-0.15553907,-0.24854924,0.38205436,-2.7253387,-0.07473975,-0.143719,0.3699976,-0.2991538,-0.448196,0.031447895,-0.44779468,0.4125158,0.2878693,0.4980767,-0.57256216,0.35495326,0.29823086,-0.5537432,-0.1954674,-0.6099485,-0.2464927,-0.051848046,0.3042764,0.031938814,-0.053728875,0.0722211,0.1459885,0.42897964,-0.03684943,0.13923803,0.29638958,0.44194368,0.05686703,0.6846274,-0.049339917,0.45543367,-0.116935,-0.25654572,0.28215533,-0.1690631,0.23834698,-0.021282537,0.10970538,0.45832762,-0.4131946,-0.85965335,-0.7746706,-0.3381064,1.306241,-0.24059503,-0.41979638,0.18816634,-0.12555932,-0.32583028,-0.19376847,0.3915244,-0.097949795,-0.117155366,-0.82348263,0.13793328,-0.10488969,0.18213977,0.09989854,-0.1550647,-0.45468405,0.6184273,-0.15722404,0.45835853,0.4043851,0.1164346,-0.19470458,-0.29065523,-0.10210305,0.9065117,0.37173226,0.058271833,-0.15478122,-0.20595838,-0.22653691,-0.032713577,0.15185939,0.34581348,0.5715223,0.016694423,0.1130545,0.2859896,-0.014205575,-0.04110188,-0.23913649,-0.27188966,-0.008998854,-0.06556658,0.52926004,0.5097422,-0.10022616,0.37746125,-0.029684642,0.39935264,-0.040031824,-0.43083042,0.2335104,1.1652946,-0.118790805,-0.16883829,0.657843,0.6056364,-0.1413599,0.25612345,-0.5158906,-0.2230631,0.43334508,-0.26479533,-0.5581652,0.13221438,-0.21345627,0.009226248,-0.7408106,0.1828568,-0.22851649,-0.43164465,-0.51328677,-0.040483933,-3.5530553,0.2706695,-0.35382,-0.2167808,0.057908397,-0.2036608,0.28105924,-0.6454671,-0.4730923,0.11005423,0.116993226,0.6783435,-0.07066143,0.16726097,-0.23480418,-0.16687904,-0.2052873,-0.007454421,0.14960136,0.32776874,0.04636125,-0.563253,0.03919416,-0.08175661,-0.3973773,0.108424716,-0.6269925,-0.4690425,-0.09677801,-0.4582093,-0.41718537,0.57999027,-0.36182722,0.07371228,-0.1827521,0.00014245936,-0.19762552,0.30458832,0.22331047,0.20145966,-0.13091187,0.046265397,0.09344382,-0.2917764,0.43475574,0.1285937,0.16784754,0.22788732,-0.048889138,0.20160815,0.47423103,0.50326544,-0.025225034,0.88378197,0.5485254,-0.1466384,0.15761726,-0.19253565,-0.27634445,-0.562055,-0.3265241,0.05023747,-0.358329,-0.40103418,-0.09918172,-0.32906976,-0.75592995,0.717662,-0.072179995,0.10170666,-0.031623982,0.29422,0.5558799,-0.23706017,-0.057981644,0.15126503,-0.07131347,-0.6747359,-0.19475259,-0.6008776,-0.44294715,0.0467934,0.90156454,-0.26035348,0.11399799,-0.04283152,-0.22044884,-0.05976287,0.03547669,-0.068436034,0.3233895,0.54049647,-0.16486724,-0.7351027,0.46168444,-0.1394454,-0.094900966,-0.5574213,0.26035744,0.507733,-0.52997506,0.49220088,0.4097953,0.06748936,-0.086829074,-0.47732764,-0.2968971,-0.12288748,-0.35165784,0.36847326,0.14085402,-0.64608985,0.27658215,0.41246796,-0.2369567,-0.7273903,0.5078093,-0.04037726,-0.38539702,0.08884819,0.24473496,0.15500535,0.011032681,-0.13176987,0.22170874,-0.3930912,0.32113335,0.21744467,-0.07632446,0.19646437,-0.24702361,-0.036228828,-0.7768122,0.11009093,-0.32845518,-0.29568562,0.31603876,0.20803082,0.0042122304,0.27176633,0.019657936,0.3846933,-0.26944408,0.062229633,-0.039731357,-0.15099095,0.33723164,0.4747048,0.37721935,-0.49646726,0.57927287,-0.01211178,-0.21108313,-0.15213689,-0.05224686,0.38593534,0.07500221,0.30053473,-0.16310634,-0.30737668,0.34757867,0.5932748,0.24332394,0.43477467,0.011581315,-0.031462174,0.2461652,0.058794916,0.063898645,0.027997034,-0.6801723,0.08183678,-0.2382667,0.11432737,0.5506938,0.12516144,0.32655865,-0.1772003,-0.33614427,0.051954325,0.05501247,0.03090533,-0.8851016,0.34798485,0.061695453,0.6794652,0.4350845,0.028252881,0.010494419,0.7379795,-0.22497106,-0.017049853,0.2984541,0.020369468,-0.49847248,0.5642728,-0.7786029,0.32773477,0.015412958,-0.07476802,-0.13459738,-0.033617742,0.32097748,0.67822677,-0.23857978,-0.010410221,-0.054720726,-0.33671346,0.17866965,-0.41148812,0.037307773,-0.5905743,-0.33586946,0.46029526,0.57504815,0.4202424,-0.11125994,0.030407945,0.10335721,-0.1652187,0.22601749,0.12924694,0.17123184,-0.04755401,-0.8185934,-0.07028946,0.5092371,-0.037205186,0.16177188,-0.06742628,-0.24965717,0.26629847,-0.111021474,-0.11545913,-0.024512503,-0.5777868,0.010454425,-0.29428533,-0.4464232,0.29451367,-0.04453596,0.31052467,0.090570726,-0.014224461,-0.17430039,0.36282662,0.13778406,0.9185562,0.040507097,-0.13004881,-0.4326296,0.15414561,0.00013666866,-0.05843439,0.10575841,-0.3047386,0.096924424,-0.6595453,0.48782578,-0.030423032,-0.19168687,0.035645265,-0.14070375,0.008510709,0.56556356,-0.113189854,-0.064698674,-0.18283644,-0.10545532,-0.26637045,-0.2739293,-0.10421373,0.14591049,0.10868858,0.05490383,-0.1281946,-0.07118952,-0.3407154,0.59606797,-0.04411841,0.4715101,0.32310614,0.049370952,-0.23649596,-0.29084772,-0.055937774,0.48978,-0.114405155,-0.26435092,-0.36037332,-0.5524844,-0.17322834,0.11327778,-0.11996829,0.5104194,0.0710197,-0.12157942,0.81546813,-0.20178764,1.1140352,-0.03203037,-0.38616732,-0.059793882,0.4683993,-0.026650382,-0.054214638,-0.23693798,0.753724,0.5253212,-0.00508722,-0.10301386,-0.39734086,-0.098006144,0.11592363,-0.09334811,-0.02703971,0.00080071174,-0.5211835,-0.3604288,0.13224635,0.24523054,0.25785,-0.044322055,0.2677929,0.31793523,0.033152614,0.43555984,-0.31719705,-0.26860896,0.28648812,0.2621079,-0.08560053,0.16482742,-0.46984503,0.505014,-0.31353846,0.10409565,-0.3871575,0.116124146,-0.15099336,-0.14125288,0.19161272,-0.123405345,0.35966656,-0.26035973,-0.29205492,-0.105907455,0.5114596,0.20879123,0.09499734,0.5528155,-0.26971307,0.05688755,-0.12239669,0.5181209,1.0161339,-0.32863426,0.14022748,0.42226738,-0.24527976,-0.44258904,0.3676605,-0.1356803,-0.07093533,0.16066805,-0.11324266,-0.3930027,0.2992592,0.2437867,-0.07308663,-0.0040870863,-0.4167798,-0.19732639,0.30731472,-0.39087006,-0.21357903,-0.34336025,0.21669352,0.42643785,-0.2824082,-0.3451462,0.008815416,0.2893433,-0.11876488,-0.28638035,-0.09144386,-0.4177359,0.24962965,0.109806515,-0.35467046,-0.2152158,0.06382626,-0.3430688,0.0031005952,0.063600145,-0.3179107,0.04516656,-0.31511083,-0.15384686,1.0513728,-0.23088858,0.0050668395,-0.53808266,-0.3449134,-0.74232197,-0.3746681,0.55973023,-0.05539015,0.09443677,-0.43891606,0.0068511474,0.0059486204,-0.25874093,-0.22717212,-0.3772685,0.4004077,0.15112378,0.47386184,-0.17972147,-0.4781971,0.25029773,0.05895369,-0.102288194,-0.46680313,0.5335923,0.028285073,0.78824294,0.03493943,0.102551565,0.30865726,-0.30989417,-0.14807355,-0.23483443,-0.3264329,-0.74511975,-0.10653523,332 +417,0.39148328,-0.31420752,-0.5052677,-0.15840761,-0.4776012,0.17626747,-0.2429112,-0.01179151,0.09667798,-0.4530015,-0.2006402,-0.43075064,-0.036471684,0.39964804,-0.14380732,-0.48593634,-0.07817312,0.27787873,-0.68214184,0.45430157,-0.40766868,0.23375645,0.10268634,0.42323568,0.10045,0.2194471,0.17979726,-0.058066197,-0.36100462,-0.11054872,-0.06115749,0.16433048,-0.8789382,0.38964313,-0.38307175,-0.30812326,-0.06147313,-0.5988073,-0.23024975,-0.8218509,0.37389788,-1.0210187,0.5674827,-0.05439644,-0.27309936,0.05913077,0.21174489,0.31486443,-0.19422273,0.05561256,0.34901568,-0.49003056,-0.31343108,-0.19456863,-0.36358124,-0.31293556,-0.67655694,0.11161502,-0.5015117,-0.0049299425,-0.116359316,0.3048552,-0.21015622,0.2519798,-0.44553393,0.4232525,-0.4295921,0.027822444,0.24578209,-0.14701758,-0.007753517,-0.46706557,-0.22281003,-0.1143102,0.36271906,-0.072833486,-0.12662302,0.29822645,0.16326377,0.6730167,0.099213004,-0.30596307,-0.23887137,0.0009871231,0.095317885,0.49829465,0.10457908,-0.05811229,-0.30607992,-0.2485576,0.2873648,0.42369467,0.0010261195,-0.40008014,0.08066206,-0.18449466,-0.1580543,0.13522044,0.4414485,-0.17569157,-0.41577336,0.26533312,0.5889934,-0.099177085,-0.09757932,0.028635655,0.10378337,-0.5522562,-0.25134498,0.42045814,-0.20239195,0.5541396,-0.11702146,0.15758447,0.7127547,-0.26098964,0.010029797,-0.21501096,-0.018838763,-0.056363888,-0.37729174,-0.1466484,0.3198247,-0.5251829,0.13182244,-0.27045622,0.6906099,0.09474083,-0.728643,0.35608348,-0.61645174,0.072090805,0.08547907,0.70068544,0.7715451,0.42574194,0.37210733,0.76425946,-0.32922792,0.20840268,-0.10389686,-0.27942947,-0.10324563,-0.26566216,0.31066513,-0.42300877,-0.0011803551,-0.2214518,-0.2195343,-0.20211922,0.5103259,-0.37030867,-0.040447433,0.05450988,0.6591366,-0.39889404,0.0805822,1.0887129,1.008796,1.020413,0.16551253,1.5002261,0.49386913,-0.2882208,0.078534104,-0.27500317,-0.5815798,0.11059631,0.22797358,0.14277825,0.22892046,0.11418391,0.052680515,0.56045187,-0.5109151,0.1705809,-0.08477717,0.22278865,-0.1498731,0.2782102,-0.56459385,-0.41877753,0.10083377,-0.0096003935,0.12184442,0.41394684,-0.16683786,0.6869492,0.14573781,1.2777399,-0.16159578,0.17144284,0.070459604,0.21496716,-0.046067093,-0.18759547,-0.22489317,0.18368807,0.23400007,-0.09575587,-0.57557356,-0.12475269,-0.2763855,-0.29827914,-0.38198617,-0.2340418,-0.01304741,-0.3498462,-0.38679072,-0.29766187,-0.096403204,-0.33686393,0.4530147,-2.0949018,-0.19941041,-0.2992867,0.24401675,-0.2952104,-0.48083884,-0.1589174,-0.5653567,0.3326201,0.24772082,0.22670674,-0.5683869,0.5339194,0.34444088,-0.48385218,-0.19744428,-0.7751029,-0.06765782,-0.09276124,0.2378854,-0.11559864,-0.29142213,-0.44664198,-0.06427218,0.47948432,-0.12149988,0.11298133,0.40118614,0.4713739,0.22685324,0.56859237,0.29408857,0.55994874,-0.4687126,-0.16829689,0.50365436,-0.3675692,0.49072558,0.072699174,0.15743266,0.5826054,-0.7586242,-0.70449716,-0.777939,-0.8150049,0.95682305,-0.39602613,-0.31391412,0.18485539,-0.12218319,-0.22918715,0.1183901,0.5730456,-0.20458078,0.13328885,-0.7465426,-0.05853427,0.0064024054,0.41785067,-0.02429025,0.17358235,-0.60498923,0.6805696,-0.25849104,0.34635085,0.54256725,0.23728958,-0.21688366,-0.36301523,0.18480526,0.9769146,0.34049723,0.14730628,-0.22340132,-0.5283805,-0.14870216,-0.3565204,0.042162802,0.3884997,0.60177183,-0.0074863583,0.023364065,0.32344773,-0.31181622,0.17664722,-0.217567,-0.29096812,-0.15793923,0.13676973,0.6618179,0.56926084,-0.050928585,0.43013272,-0.2428725,0.3805608,-0.09448404,-0.46352005,0.4317977,0.90875477,-0.026270786,-0.07050882,0.88828665,0.5410963,-0.54842085,0.4677278,-0.6407727,-0.38857478,0.49284253,-0.041705202,-0.5750727,-0.052942853,-0.27691147,0.23580208,-1.0478624,0.23521541,-0.22266737,-0.47847462,-0.76971847,-0.14610918,-2.4941628,0.19993709,-0.23788777,-0.025544295,0.0208218,-0.3453827,0.3521636,-0.4533495,-0.7253036,0.23115186,-0.07021698,0.47601438,-0.03619564,0.16032934,-0.296022,-0.19228448,-0.339861,0.21200882,0.35400924,0.22678988,-0.22480781,-0.4236474,0.14856169,-0.35816407,-0.39901596,-0.11672802,-0.8333139,-0.6643891,-0.26434132,-0.6143001,-0.3906577,0.6557756,-0.28452227,-0.07863797,-0.30992338,0.025908474,-0.17723158,0.32887432,0.16693917,0.49261013,0.23408367,-0.07981194,-0.30761623,-0.3826372,0.28742582,0.093448974,0.049916882,0.41954464,-0.025350442,0.32161364,0.27064505,0.7299185,-0.09607482,0.77784634,0.23493876,0.010187856,0.26480448,-0.32624754,-0.2842349,-0.6788754,-0.24302052,-0.17884788,-0.40423152,-0.5318242,-0.14874074,-0.35522342,-0.83406764,0.6553218,0.13212846,-0.06049351,-0.12305606,0.25370625,0.33582646,-0.28401655,-0.00093334913,-0.25944528,-0.026616825,-0.5386768,-0.6665128,-0.7391538,-0.64831275,-0.10635773,1.3435843,0.07080175,-0.18306021,0.21145038,-0.5208372,0.16742049,0.29633158,0.048148043,0.22809713,0.66508293,-0.019348988,-0.6705119,0.45889023,0.14506349,-0.104075186,-0.48467326,0.14123093,0.84800816,-0.7109459,0.73764336,0.50362915,0.14265239,0.04698086,-0.46969572,-0.3201637,0.011220076,-0.26779345,0.4702681,0.33218163,-0.63632107,0.4596314,0.21413887,-0.04036614,-0.97442627,0.2879775,0.044479933,-0.102288544,0.21395476,0.48285595,-0.044276316,0.034300923,-0.22934791,0.102969036,-0.36960265,0.23064484,0.4831583,-0.0074835634,0.26977032,-0.3706138,-0.19222763,-0.6702325,0.09452776,-0.38063285,-0.37923655,0.1236536,-0.04119549,-0.062573954,0.40638217,0.22381186,0.30165553,-0.28783396,0.096343435,-0.16250262,-0.33012876,0.1189922,0.41641945,0.23820616,-0.7009009,0.7632123,0.06026425,-0.133011,-0.2573105,0.048685916,0.36000416,0.19468832,0.2601952,-0.18748805,-0.1979101,0.090225115,0.7073102,0.07102697,0.55875766,0.24602027,-0.0061972737,0.35036537,0.051052768,0.20878565,-0.17069218,-0.36470675,-0.045039184,0.06482405,0.120501176,0.38814512,-0.0417099,0.5695155,-0.052143864,-0.05636855,0.20264135,0.17044719,-0.21848986,-1.1811503,0.24281634,0.08898933,0.7514802,0.6273963,0.06669525,0.011901034,0.6746916,-0.59524524,-0.08678059,0.29311532,-0.008251705,-0.3863184,0.6470683,-0.52354014,0.4970927,-0.30417424,-0.11810614,-0.096728764,0.057470918,0.40388685,0.9616614,-0.16253991,0.048689783,-0.09918839,-0.027095625,0.19942181,-0.23203002,0.074498065,-0.5323039,-0.43423027,0.82095426,0.26284122,0.5751696,-0.29706812,-0.06621692,0.12800613,-0.1467901,0.15114813,-0.024668818,-0.07755597,0.20974134,-0.59450465,-0.050901067,0.65878445,-0.16264357,0.099270605,0.2371454,-0.48846027,0.20680788,-0.1211774,-0.10467972,-0.05513602,-0.919112,-0.10125544,-0.49760464,-0.49341255,0.056290153,-0.3540623,0.10755419,0.14416353,0.15129408,-0.44167623,0.16629656,0.2314547,0.98743427,0.2452925,-0.051994745,-0.09257173,0.17392446,0.39824325,-0.36682442,0.08788057,-0.29529557,0.13689736,-0.69538796,0.6312221,-0.14644305,-0.36630806,-0.040395644,-0.03262576,0.025526868,0.60407966,-0.09225888,-0.06476877,0.20072989,-0.008949871,-0.302201,-0.13744143,-0.29618487,0.17798814,0.044729028,0.08398446,0.0048874957,-0.05008936,-0.1831045,0.781293,0.0983796,0.1782918,0.44920188,-0.12382078,-0.33563298,0.14711185,-0.06626924,0.49166277,-0.024165511,-0.33682474,-0.21819302,-0.06054296,-0.0413607,0.67158467,-0.078034624,0.16910248,0.06927196,-0.34942415,0.86206394,0.11947288,1.0565357,0.11382695,-0.27394974,0.012679781,0.38468742,0.045083832,0.027189795,-0.5172937,0.9753536,0.3994247,-0.10329938,-0.17094907,-0.51361954,-0.17783545,0.24271451,-0.17438366,-0.04412112,-0.16123359,-0.7701168,-0.31431445,0.19126,0.47197896,0.004884579,-0.16905114,0.19380276,0.1931214,0.06504411,0.6011194,-0.61916524,-0.14330073,0.47899765,0.2445685,-0.05137476,0.41605616,-0.24470136,0.43985695,-0.7685421,0.20483875,-0.5229618,-0.025239391,0.06102317,-0.17597389,0.15833183,0.08252849,0.48873633,-0.37001392,-0.19905648,-0.40234756,0.79292494,0.23360452,0.24151771,0.827727,-0.26494858,0.0035093683,0.21128154,0.5154136,1.409126,-0.28357157,0.24728754,0.07746764,-0.13108931,-0.48408392,0.39694375,-0.3488362,0.025062528,0.048176143,-0.44859228,-0.38160425,0.105863355,0.23902893,-0.10965212,0.07286371,-0.45878175,-0.054096818,0.4494608,-0.20000541,-0.24559034,-0.29112652,0.32665682,0.68184704,-0.113258235,-0.21874173,0.03845346,0.2867395,-0.35926583,-0.40924302,-0.046681795,-0.44671887,0.3674731,-0.055263,-0.37479308,-0.07559507,0.22857676,-0.4453943,-0.066190556,0.24763286,-0.29090026,0.03740291,-0.26305676,-0.01132751,1.038313,0.09317352,0.15866843,-0.51521486,-0.6563541,-0.9404147,-0.26359266,0.2755835,0.17618111,0.021560503,-0.4340479,0.1022455,-0.16819875,-0.035948463,0.31396648,-0.50368273,0.31997466,0.29451638,0.5679473,-0.04220484,-0.78001505,0.14337866,0.122144595,-0.174506,-0.3332869,0.39575568,-0.06977365,0.7692439,0.04704992,0.10778966,-0.05365012,-0.55815727,0.48540053,-0.2709639,-0.036567178,-0.8575007,-0.08299335,342 +418,0.28038058,-0.058492415,-0.35166937,-0.16610023,-0.26665673,0.2545003,-0.136235,0.38708666,0.082905285,-0.41255632,-0.13199362,-0.16728891,0.002101581,0.25000766,-0.24715698,-0.32044622,-0.032410305,0.06925832,-0.5162366,0.42515436,-0.3306241,0.25940517,-0.0014066355,0.36031905,0.07784248,0.21268474,0.21626894,-0.24763907,0.025067803,-0.3478977,-0.0670227,0.09430007,-0.5946831,0.34386966,-0.2065184,-0.4100628,0.21890458,-0.33125925,-0.29717755,-0.5764755,0.22308408,-0.8959327,0.59448045,0.19909358,-0.2007751,0.3092058,0.18349501,0.314114,-0.09070194,0.083867624,0.15050514,-0.12622549,-0.079632804,-0.09048818,-0.19773175,-0.46088293,-0.50460476,0.111237966,-0.5274668,-0.10917543,-0.34331754,0.12491765,-0.23745908,-0.062044468,-0.028771725,0.21227573,-0.326106,0.10493721,0.13143703,-0.23030397,0.2334455,-0.46913496,-0.06707778,-0.04568148,0.3821609,-0.35382515,-0.23009814,0.19543207,0.19748509,0.49048725,-0.023543762,-0.121482596,-0.24932694,-0.15456808,0.112905204,0.45323342,-0.02625915,-0.40570492,-0.105429895,0.05778793,0.2013099,0.3347105,-0.048454665,-0.1658847,-0.11209602,-0.00031803336,-0.2569433,0.41716343,0.47803825,-0.5244732,-0.29606763,0.5018755,0.4736486,0.06253411,-0.0550035,-0.06021153,0.014314099,-0.4667086,-0.22584918,0.008974816,-0.20268393,0.38741067,-0.068117335,0.38088813,0.54810447,-0.28406522,0.058893092,0.11315359,0.036638804,-0.2075725,-0.04963622,-0.19491819,0.20480706,-0.5520369,0.040012956,-0.23729222,0.7509841,0.0027282494,-0.6466919,0.18987213,-0.52678436,0.049333673,-0.093453966,0.49687293,0.63775826,0.49043447,0.17425932,0.666763,-0.4437645,0.06193527,-0.2576681,-0.31815705,0.17168763,-0.25910586,-0.15218599,-0.49540922,0.038904946,0.21384346,0.045378458,-0.0031639847,0.2328136,-0.5792228,0.01740034,0.22035515,0.694621,-0.25300583,-0.08616124,0.67827284,0.9953094,0.82695687,0.00829543,1.2114784,0.04602343,-0.20659797,0.13818559,-0.17351605,-0.672898,0.24796939,0.45812348,0.109825,0.20040539,0.21576153,0.10471393,0.2943058,-0.56374985,-0.052096844,-0.15050173,0.3568565,0.012302816,-0.021724263,-0.3207779,-0.16097067,0.025829362,-0.018900607,0.1808451,0.26003483,-0.268055,0.2746901,0.093472704,1.4354388,-0.0010660291,0.23161377,-0.03954542,0.5184024,0.08572125,-0.024003517,-0.081544146,0.2908122,0.23774573,0.25606632,-0.4916382,0.014524349,-0.22635476,-0.5019,-0.13613829,-0.35828695,-0.19337733,-0.024293797,-0.30885658,-0.12087361,-0.12519903,-0.27389067,0.47799355,-2.9883215,-0.09276631,-0.119450174,0.33574155,-0.23653449,-0.3319537,-0.18095048,-0.53676313,0.500959,0.4354456,0.4926388,-0.54970455,0.25465113,0.41472197,-0.50270176,-0.20595935,-0.60474735,0.032201923,-0.07926995,0.37315074,0.020247193,-0.12206549,-0.1889224,0.11219903,0.36356777,0.09697223,0.06896337,0.20438422,0.31909427,0.20041974,0.48916796,0.054606985,0.47457185,-0.32812378,-0.1997584,0.18111053,-0.28221995,0.37926593,-0.18428089,0.060490813,0.36465245,-0.5041906,-0.9033085,-0.7867773,-0.26918846,1.2479832,-0.17630579,-0.33777332,0.17130601,-0.3254468,-0.26473418,-0.14373514,0.4580881,-0.18891795,-0.019549701,-0.6579222,0.1328505,-0.12721986,0.31760624,-0.02654976,0.054254126,-0.58032113,0.43402,-0.07352716,0.34377018,0.23516564,0.100764275,-0.22505212,-0.35637283,0.07420226,0.9012871,0.35140806,0.1741731,-0.09452883,-0.2920738,-0.39199093,0.013440869,0.20924994,0.44984013,0.59218985,0.016215654,0.13847825,0.20957543,-0.03244877,-0.0017152365,-0.15810478,-0.21919338,-0.08596777,-0.010865705,0.71440023,0.51123226,-0.018520202,0.36187196,0.030265199,0.25394133,-0.2946863,-0.42739883,0.47360748,0.72837,-0.17958887,-0.22027488,0.78967625,0.6326794,-0.14158681,0.44922122,-0.6859721,-0.45883957,0.31736714,-0.14213641,-0.40078932,0.040518906,-0.34260163,0.0934178,-0.90629184,0.32123068,-0.014541005,-0.48747107,-0.57617325,-0.119210295,-3.3258939,0.108145066,-0.07297211,-0.05287993,-0.082952656,-0.17674498,0.36335856,-0.42121235,-0.49365446,0.14468446,0.06329013,0.6921672,-0.101381846,0.1162904,-0.19645442,-0.3066177,-0.3362067,0.14617136,0.10653198,0.24328454,-0.029800713,-0.39384896,0.11665989,-0.13761364,-0.25989708,0.085690975,-0.46655107,-0.3307562,-0.17467526,-0.32310253,-0.18689391,0.642404,-0.40843558,0.03782314,-0.2650226,0.022161616,0.0146682495,0.26568967,0.19455531,-0.045955576,0.12089079,0.017213454,-0.103535056,-0.40080976,0.47216752,0.010773101,0.21799377,0.3612344,-0.064810224,0.17402749,0.43849435,0.47163528,-0.100261256,0.880709,0.32429084,-0.15268347,0.23204152,-0.2183418,-0.26847202,-0.39423636,-0.25829563,-0.15966187,-0.43841413,-0.28891948,0.06461115,-0.3094783,-0.74332875,0.58367044,0.027738502,0.07568896,-0.13088156,0.32098752,0.43493932,-0.27467054,-0.0435923,0.04005978,-0.11372704,-0.51292384,-0.40919083,-0.4128917,-0.3211939,0.0085278405,1.0215893,-0.22762725,0.06767476,0.07674747,-0.12711169,0.091790535,0.107837394,0.014909779,0.13011941,0.4807536,-0.017748924,-0.7357952,0.5569932,-0.19243596,-0.08377649,-0.60993063,0.16726531,0.47250882,-0.7193918,0.21549475,0.43728352,0.20804672,-0.1431754,-0.41476932,-0.18561554,-0.14316538,-0.24629101,0.19303045,0.15371825,-0.93077326,0.4024139,0.10270037,-0.10064961,-0.7106548,0.56300396,-0.06957727,-0.20456605,-0.024229795,0.30721527,0.41774163,0.048877984,-0.15988216,0.2253062,-0.36680394,0.30173138,0.21403222,-0.04319584,0.58681935,-0.23679774,-0.22540322,-0.68337446,-0.16359973,-0.49258026,-0.32167384,0.33126426,0.118183576,-0.028887639,0.37627116,0.023807576,0.3862636,-0.26422054,0.034481112,-0.00069948816,-0.16996488,0.37989673,0.36646268,0.55405647,-0.48042205,0.6343977,-0.016684845,-0.04966404,-0.13733175,-0.03709284,0.40884355,-0.05835077,0.3585767,-0.02817752,-0.29022613,0.35012332,0.7846378,0.19346571,0.18670334,0.012061032,-0.018459206,0.22657755,0.06740646,0.0142940115,0.13938737,-0.61142427,0.013287772,-0.22787966,0.11742204,0.36165634,0.108646326,0.23378216,-0.024833824,-0.1174796,0.08957092,0.037343554,-0.027735254,-1.130119,0.30636486,0.15889467,0.68325466,0.3859152,-0.048706613,0.06569622,0.68570995,-0.27365798,0.045624204,0.36155647,0.16046199,-0.2973338,0.5415584,-0.65363586,0.6355057,0.025152903,-0.09458583,-0.00024858754,-0.061077558,0.35681626,0.9761719,-0.16043496,0.17734696,0.01391465,-0.29935724,0.08978094,-0.19229157,0.12230379,-0.6375442,-0.21613982,0.62383515,0.404268,0.373339,-0.0802443,-0.07026039,0.04575317,-0.19799729,0.08715075,-0.05067208,0.064701505,0.016618686,-0.5838828,-0.107595645,0.5598696,0.18119062,0.16234004,0.050985422,-0.32771233,0.17711662,-0.1451525,0.08290993,-0.05300424,-0.5337179,-0.08470551,-0.2048732,-0.3783982,0.53105706,-0.3998057,0.29809743,0.17897841,0.03510789,-0.14027481,0.36164308,0.12469317,0.6452176,0.055401344,-0.18716063,-0.38604012,0.16287102,0.17101829,-0.17606077,-0.09902061,-0.24809884,0.15282223,-0.6793255,0.267527,-0.16624944,-0.36972243,-0.009288839,-0.22103919,0.037325077,0.48670107,0.08256916,-0.008961269,0.12784183,-0.19441254,-0.2339059,-0.051946707,-0.25312203,0.16737364,0.12753102,-0.021207942,-0.17307849,-0.18491633,-0.17713349,0.21837933,0.026417244,0.2803637,0.19561234,-0.026145276,-0.20924893,-0.18074621,-0.049763583,0.4627668,-0.18170555,-0.024861509,-0.1455524,-0.44278234,-0.34246352,0.12593625,-0.10341282,0.2122354,0.16752005,-0.23572707,0.57817966,-0.0650338,1.1049801,0.109022,-0.35986784,0.094534434,0.58340967,-0.0150980605,-0.020615932,-0.3858378,1.034394,0.5445029,-0.057985578,-0.20054178,-0.27465123,0.039579995,0.18187027,-0.13219702,-0.24896172,-0.096734785,-0.5999103,-0.24361695,0.2005733,0.2900085,0.1711549,0.049951386,-0.025714364,0.16378585,0.037804406,0.4115544,-0.39191538,-0.19170132,0.41657957,0.34512046,-0.021175057,0.18636099,-0.43588158,0.4190724,-0.54638344,-0.09876859,-0.24225068,0.1770519,-0.21097471,-0.28056976,0.2134815,0.07135145,0.3777926,-0.19785623,-0.51295465,-0.15553482,0.43284434,0.14055453,0.24363396,0.56520045,-0.16020809,-0.16039202,-0.20800588,0.37004763,1.0787386,-0.17772143,0.036720913,0.41890118,-0.26420993,-0.4578753,0.25358805,-0.5165363,0.25818095,0.0915699,-0.26521906,-0.21571438,0.24966621,0.17015417,0.11455178,0.03621008,-0.61668223,-0.15296434,0.06819634,-0.16484873,-0.2272767,-0.16885641,0.12672202,0.6446536,-0.21657364,-0.14329393,0.09159287,0.3903474,-0.18333144,-0.52584034,-0.104385674,-0.26684895,0.19784233,0.08753977,-0.3249653,-0.15344098,0.0648856,-0.40281504,0.035212543,0.13269888,-0.37477705,0.018515566,-0.3557208,0.11607581,0.8114112,-0.12733573,0.20979373,-0.45554808,-0.28103128,-0.83719456,-0.17166604,0.30516776,0.24470164,0.017898094,-0.36569825,-0.00022133334,-0.077727936,-0.11566608,-0.036128096,-0.38027018,0.42706767,0.06407094,0.39360523,-0.036327116,-0.9334441,0.14229587,-0.05349054,-0.2570104,-0.52114546,0.5830671,-0.111437716,0.7933963,0.06155791,0.033560812,0.33680955,-0.5780305,0.082031325,-0.17923954,-0.09085463,-0.7681051,0.12807743,345 +419,0.2799495,-0.22101761,-0.5632244,-0.090169854,-0.28618804,-0.18961337,-0.2204801,0.38622993,0.12951103,-0.04724788,-0.20660962,-0.11066878,0.13826096,0.332903,-0.12636794,-0.4615941,-0.262901,0.1104493,-0.6596681,0.6132912,-0.5156348,0.1062896,0.01929852,0.4792257,0.25334686,0.43722084,0.14895001,-0.026791487,-0.07030252,-0.042538624,-0.14911686,0.29804403,-0.49076816,-0.14746693,-0.26235068,-0.394176,0.06482848,-0.52297735,-0.2795492,-0.70615333,0.3522227,-0.97381645,0.5025805,-0.020339876,-0.12154686,0.12485636,0.36120978,0.26432988,-0.40297765,-0.10032814,0.12333039,-0.027699862,-0.023994574,-0.23605146,-0.010565494,-0.24096155,-0.47145972,-0.05026507,-0.50778854,-0.27080482,-0.2474976,0.1341324,-0.34694523,0.097314365,-0.20904247,0.44213468,-0.41063753,-0.06892107,0.16963594,-0.2244788,0.32806158,-0.5972255,-0.021807143,-0.0662443,0.4960317,-0.16753305,-0.10669653,0.37049484,0.34631154,0.2952557,0.12894566,-0.23954234,-0.35023493,-0.1485311,-0.016779976,0.40195546,-0.21636678,-0.5294167,-0.16874684,0.10440813,0.13374522,0.41498134,-0.022248974,-0.03361569,0.02813716,-0.08766969,-0.14892046,0.4292457,0.43406913,-0.27049178,-0.40460292,0.22136497,0.5017726,0.33183286,-0.2868559,-0.1896449,0.0007221252,-0.5152403,-0.11951876,-0.020808471,-0.08175522,0.6090638,-0.07964543,0.24037018,0.7644253,-0.07363839,0.029834509,-0.11140644,-0.04428306,-0.27194992,-0.3780149,-0.18495162,0.14218703,-0.46964496,0.22187044,-0.16818318,0.5464146,0.028249476,-0.6208982,0.48480755,-0.60224974,0.12221086,0.015876105,0.47540018,0.5818594,0.22726324,0.5019875,0.55280656,-0.16727448,0.14571175,-0.08150844,-0.46336713,0.06405033,-0.12067044,0.17535487,-0.54059994,0.07157456,-0.017144416,0.0697767,0.14217773,0.3865695,-0.44436735,-0.027030254,0.36206594,0.7362334,-0.3347458,-0.033164356,0.6712502,1.0896496,0.947197,-0.035392437,1.0941546,0.11735999,-0.23409748,0.25335044,-0.2794105,-0.7576538,0.19322965,0.43440375,-0.19113244,0.33687702,-0.053485252,0.0010198696,0.37620422,-0.3356969,-0.0124646975,0.016131673,0.18916328,0.20563848,-0.008920239,-0.5630252,-0.21631159,-0.042320807,0.03395078,0.18470834,0.18478803,-0.15794775,0.26156497,-0.071373485,1.5536368,-0.09808683,0.11278153,0.19142997,0.6705891,0.28692725,-0.0295156,-0.16308282,0.40849558,0.3643478,0.111125596,-0.6102115,0.3083989,-0.36791855,-0.39224127,-0.03785393,-0.44161654,-0.16192618,0.14869213,-0.49460587,-0.06089555,-0.07353012,-0.2757454,0.24700773,-3.085756,-0.17903028,-0.15817031,0.29022428,-0.2561539,-0.20516798,-0.015393534,-0.50498706,0.24498908,0.3117669,0.5712789,-0.6416523,0.42856675,0.42280254,-0.49715632,-0.063603766,-0.6693858,-0.16735551,-0.020699484,0.5279208,-0.0028190443,-0.10502974,-0.06517802,0.34626052,0.6946059,0.17696452,0.1413741,0.41875857,0.34296554,0.12925184,0.6699147,-0.11543542,0.56759614,-0.29174858,-0.15939215,0.18666966,-0.17562042,0.19489472,-0.14061695,0.15265961,0.5617873,-0.5654809,-1.025813,-0.5235351,-0.24996032,0.9899737,-0.36479086,-0.31586075,0.2930842,-0.41114405,-0.16547091,-0.03538125,0.5666913,-0.22193244,0.09468552,-0.7170808,0.14675386,-0.22013395,0.18188599,0.078942455,-0.022078259,-0.43111163,0.6521336,0.022701478,0.6537624,0.29625273,0.13070132,-0.23363034,-0.36849195,0.12791212,0.69726837,0.23202784,-0.08261431,-0.17024218,-0.23998079,0.025686452,-0.10962306,0.044036668,0.48240587,0.63076836,0.006130866,0.2604691,0.23630312,-0.05804453,0.0425317,-0.08259074,-0.06153634,-0.06079781,0.11139796,0.4315894,0.7044017,-0.21106423,0.40564185,-0.24410285,0.44283018,-0.07943093,-0.46949816,0.59970385,0.61006916,-0.14317057,-0.03466715,0.62675625,0.56861573,-0.41591686,0.46486384,-0.5551251,-0.14236902,0.64405686,-0.20945333,-0.35381645,0.27890018,-0.27299136,0.12372417,-0.7656975,0.08094524,-0.19995157,-0.3160004,-0.38518152,-0.20442548,-3.589677,0.16764006,-0.17233774,-0.21242966,-0.3077951,-0.26188633,0.30700347,-0.7373549,-0.6963504,0.16780289,0.17422147,0.61606425,-0.11620875,0.09572685,-0.25463343,-0.27988246,-0.064238906,0.24591634,0.2730803,0.36675677,-0.110149756,-0.45514473,-0.08931506,-0.02179685,-0.5780389,0.10999192,-0.6263767,-0.3139806,-0.025370521,-0.6647693,-0.2010735,0.6021853,-0.2450966,-0.006232125,-0.23751402,0.025353815,-0.21461865,0.22255863,0.15361723,0.24170838,0.155206,0.15186831,0.27254924,-0.36541754,0.4717948,-0.025566015,0.33438468,0.08460718,0.07091992,0.14786133,0.43119717,0.6005753,-0.21811111,1.0934632,0.5441454,-0.1047193,0.20536889,-0.33729884,-0.24825236,-0.74177796,-0.3964302,-0.053760678,-0.38406724,-0.55909413,-0.063868314,-0.25255683,-0.7131413,0.7329544,-0.08749991,0.39288494,-0.008474575,0.30005607,0.39877334,-0.20745413,0.010224031,-0.0142499665,-0.15794598,-0.5816987,-0.18919554,-0.5934804,-0.53820825,-0.15053819,0.67180216,-0.25133103,0.0017372774,-0.06505454,-0.37807807,0.05610638,0.10920281,0.20827067,0.49420705,0.57201916,-0.0013526423,-0.57217973,0.4318466,-0.058596995,-0.23479298,-0.39332995,-0.03168098,0.48642674,-0.76271826,0.68188816,0.345216,0.08407533,-0.09639237,-0.49439627,-0.32698426,0.04668538,-0.10276383,0.51067615,0.27348694,-0.9294142,0.5693463,0.25305483,-0.3205728,-0.7030757,0.43054706,-0.12355473,-0.35323763,-0.25078565,0.30605975,0.037290633,-0.024825973,-0.09598706,0.19882457,-0.31157497,0.19095527,0.16307713,-0.045650218,0.29953837,-0.1582553,-0.08951122,-0.7024611,0.10404987,-0.43524432,-0.17531082,0.43097052,-0.018234462,-0.018696764,0.093941554,-0.061303575,0.2227784,-0.3379414,0.15671237,0.10758751,-0.26064733,0.15206024,0.4001289,0.34813064,-0.45792508,0.48343626,-0.0032303163,-0.23992153,0.21968272,-0.14523962,0.3545676,-0.20852473,0.3577941,-0.17174862,-0.26994243,0.415909,0.69011676,0.20303848,0.35749313,-0.015948722,0.05527773,0.39770794,-0.026455551,0.033648577,0.08267731,-0.53832144,0.06886741,-0.15571491,0.09186085,0.48502275,0.26541096,0.17869738,-0.014504467,-0.19843149,-0.018032888,0.24699365,-0.01672422,-1.0262333,0.3691821,0.13906579,0.8021057,0.508225,0.15347083,-0.273965,0.6684573,-0.39221933,0.04383201,0.50469035,0.1950341,-0.49955526,0.7754594,-0.49729726,0.55843115,-0.08403605,-0.13387762,0.07214207,0.026426481,0.29593083,0.7618758,-0.26373592,0.06302615,0.05361599,-0.13661753,-0.009460279,-0.26654598,-0.12232035,-0.3506926,-0.25089094,0.7327463,0.46059364,0.36374384,-0.16084753,-0.14270474,-0.05805134,-0.1785403,0.09925077,-0.039565686,0.039375424,0.13465817,-0.62124527,-0.13481216,0.5200495,0.19838156,0.2832511,-0.25739327,-0.41464907,0.19637212,-0.18903668,-0.08471494,0.02696672,-0.67265874,0.1340154,-0.2427498,-0.61916035,0.47505453,-0.30657294,0.17616318,0.14304794,-0.025990931,-0.22284304,0.3095445,0.10933064,0.77051556,-0.07874964,-0.08626352,-0.33369663,0.030034548,0.18291728,-0.16608839,-0.13994026,-0.5040816,0.11281668,-0.42072996,0.59582853,-0.0044471705,-0.4497574,0.023711175,-0.13622436,-0.019207165,0.6103553,0.012096056,-0.12218244,-0.1409467,-0.1034193,-0.31429988,-0.1569158,-0.25867826,0.25327972,0.26743,0.06746641,-0.12517011,-0.123959385,-0.14596272,0.7499055,-0.047357697,0.6268792,0.28278056,0.15464678,-0.04430912,-0.05992835,0.24059132,0.5689503,-0.031416096,-0.028249076,-0.47222218,-0.38872674,-0.20662867,0.10575043,-0.053862114,0.21571279,0.17706597,-0.18296294,0.8077939,-0.060056586,1.0468524,0.12867986,-0.41858527,0.085194774,0.4861861,-0.19082543,-0.029887626,-0.31454477,0.95615864,0.5219046,-0.15461151,-0.15580805,-0.2708509,0.049251895,0.19478825,-0.34721926,-0.03124025,-0.21113563,-0.44437966,-0.3062401,0.2019717,0.1841131,0.23171118,-0.08328766,0.099003434,0.06333395,0.094460726,0.4388762,-0.5468217,-0.27249646,0.32567477,0.120205335,-0.067790955,0.23669136,-0.47287676,0.46570283,-0.4992577,0.12053461,-0.6387252,0.21023308,-0.18420386,-0.3968027,0.034657028,-0.13359454,0.48418358,-0.23667665,-0.27884078,-0.14697734,0.36550888,0.0266571,0.10384822,0.6134887,-0.16319276,0.09782999,0.025469085,0.61588466,1.0409716,-0.32219052,-0.021804312,0.18720534,-0.2924902,-0.52819294,0.27490753,-0.35289028,-0.047681298,-0.030574856,-0.2771302,-0.5076715,0.10494547,0.12527001,-0.022883907,-0.10972514,-0.4967093,-0.1979274,0.2837712,-0.2728005,-0.17184344,-0.22568855,0.23136976,0.75324917,-0.24301922,-0.27632278,0.054750483,0.1856159,-0.09087928,-0.45001355,-0.014597939,-0.27448258,0.41573018,0.1639245,-0.35286373,-0.09915595,0.196282,-0.40660164,0.18920837,0.23950633,-0.3102451,0.057528336,-0.3433877,-0.122619696,1.195278,-0.21620813,-0.0022366047,-0.51761335,-0.5378149,-0.9199398,-0.38949618,0.34030333,0.010301812,0.1464959,-0.38683796,0.09803771,-0.095313735,-0.2950382,-0.02056302,-0.37907144,0.35215065,0.0795596,0.63703763,-0.23646137,-0.7444898,0.07212988,0.11529744,-0.033533864,-0.5570709,0.7093114,-0.03408989,0.73554426,0.055035226,-0.037417788,0.08280493,-0.26624745,-0.07089477,-0.36291203,-0.034860827,-0.8033716,-0.04121675,349 +420,0.39751598,-0.1600375,-0.6400139,-0.04177462,-0.2530757,0.053641293,-0.17072906,0.36214575,0.33338922,-0.22676589,-0.060686965,-0.1827576,0.040513378,0.35857224,-0.03200791,-0.48862144,-0.010878171,0.23909427,-0.628382,0.56782496,-0.32652742,0.2840472,-0.14502707,0.48763004,0.07592062,0.19107877,-0.18056385,-0.003413226,0.014644482,-0.024331136,-0.07143942,0.48625913,-0.5362133,-0.025489245,-0.22855508,-0.17845652,0.0004368041,-0.44119206,-0.5125025,-0.8350502,0.39237228,-0.91849846,0.65307415,0.23169294,-0.43046004,0.11547833,0.051171023,0.3492318,-0.3129273,0.054693986,0.18739091,-0.026078293,-0.026823657,-0.18392824,-0.40098077,-0.22097836,-0.5212184,0.012841708,-0.47408465,-0.069791675,-0.24298766,0.21934463,-0.2535975,-0.11739242,-0.15355322,0.14041004,-0.41184136,0.2871542,0.36268267,-0.15991649,0.28928095,-0.46367663,-0.08126465,-0.14896424,0.26210222,-0.14384802,-0.3507438,0.2044693,0.2771728,0.55094445,-0.19821604,-0.17022543,-0.22045423,0.081631,-0.034645844,0.55801046,-0.28977615,-0.19872217,-0.22563374,-0.024853025,0.31507733,0.312793,0.01717638,-0.40383294,-0.102288984,-0.1795368,0.04254621,0.24137671,0.5264455,-0.22539772,-0.32995683,0.41070175,0.47531933,0.36866325,-0.015577625,0.118809454,0.15897064,-0.59946936,-0.17471822,0.027258087,-0.05655893,0.59834594,-0.01767858,0.15652888,0.59799576,-0.0068413443,-0.07197748,-0.049249373,0.16054949,0.01436363,-0.43432283,-0.16069439,0.14784154,-0.38150868,0.1802081,-0.02528274,0.52531236,0.104235575,-0.6290489,0.39423022,-0.62171525,0.2030162,-0.07070099,0.574875,0.843706,0.42030635,0.26918402,0.81794316,-0.38107467,0.13958342,-0.08111609,-0.2524126,0.23934652,-0.15434395,-0.020527413,-0.50140315,-0.0046642805,0.0053682327,-0.2432704,0.23961322,0.48273137,-0.5551835,-0.17038263,0.121626295,0.789526,-0.23943423,-0.03281147,0.5611395,0.9148588,0.71797216,0.04520338,1.2244397,0.3828688,-0.11646778,0.29676118,-0.24549642,-0.9714513,0.20208989,0.20933323,-0.34596187,0.3343316,0.27311093,-0.18859246,0.4731668,-0.4121273,-0.028894093,-0.20117,0.10757399,-0.07109659,-0.239493,-0.45167834,-0.18237938,-0.10835371,0.11759359,-0.021787567,0.25258753,-0.33106375,0.14922956,0.021561285,1.8364033,-0.09265167,0.110990785,0.08540412,0.37086567,0.3724367,-0.24135944,-0.2506126,0.5164931,0.3167561,0.01801153,-0.5068527,0.17104223,-0.18589592,-0.28193036,-0.14461477,-0.21550938,-0.032511555,-0.016359976,-0.54664904,-0.16047081,-0.08862511,-0.1900738,0.52815515,-2.6693037,-0.2306178,0.03558034,0.4812507,-0.29508922,-0.37982115,-0.33736846,-0.2908586,0.3579481,0.20459142,0.4196196,-0.65333575,0.21309425,0.41481653,-0.5879361,-0.1048635,-0.5666139,-0.107864454,0.034692638,0.28676122,-0.076427326,-0.14303191,-0.055103917,0.26135314,0.34381407,0.04555176,0.05550931,0.37722185,0.51719683,-0.030378733,0.29207686,-0.15771897,0.54184324,-0.27209002,-0.3672574,0.34858972,-0.16655353,0.44677585,-0.07852447,0.09152556,0.42627048,-0.45312157,-0.769916,-0.5817588,-0.15827772,0.9845422,-0.3876973,-0.43402693,0.32912943,-0.67062336,-0.22354415,0.040738594,0.6001233,-0.016573396,-0.07965224,-0.86541885,-0.10810753,-0.048321757,0.41740936,0.04256287,-0.045841813,-0.2006811,0.52871984,-0.074160695,0.31521717,0.3041227,0.19420527,-0.20827569,-0.56769603,0.039676983,0.78926915,0.3776687,0.15082748,-0.25565836,-0.29211277,-0.3476756,-0.07020133,-0.0014886548,0.56886864,0.69951344,-0.17566638,0.13071124,0.22825268,0.042644806,-0.073123716,-0.15229057,-0.27382314,-0.06267798,0.05781453,0.4575192,0.84022856,-0.2781684,0.3377718,-0.026131796,0.18877146,-0.10564846,-0.5577316,0.49409813,0.9362391,-0.1934267,-0.22995064,0.82827157,0.33278927,-0.40063772,0.4475911,-0.6884421,-0.28622684,0.44232175,-0.067176946,-0.40052056,0.38990498,-0.3085094,0.12760472,-0.8443102,0.29540986,-0.036536593,-0.39895126,-0.44627836,0.057064194,-2.9283922,0.22820783,-0.23185669,-0.029036496,-0.111036785,-0.08611948,0.3098362,-0.45985508,-0.64342266,0.17589046,0.04229337,0.6125882,-0.16780986,0.08201055,-0.1664159,-0.3432889,-0.18035546,0.15499462,0.28923044,0.4196231,-0.11277835,-0.48138514,-0.2937127,-0.02437513,-0.2857724,0.034568142,-0.8108748,-0.4710216,-0.19728486,-0.70085686,0.054741126,0.6277823,-0.34136373,-0.10295969,-0.27108186,0.073801994,-0.09230667,0.19813594,0.28840497,0.22149444,0.050515838,-0.09736727,-0.19534738,-0.23348461,0.25123295,0.08031767,0.13128544,0.3887406,-0.053873863,0.21287577,0.45651874,0.6285305,-0.44317648,0.74469954,0.6509136,-0.13432114,0.23176892,-0.18153633,-0.19629061,-0.4123519,-0.20666982,-0.16993225,-0.46344826,-0.41559377,-0.09063268,-0.4207521,-0.82367134,0.46626166,-0.12447219,0.26255623,0.07110641,0.09613179,0.56574106,-0.18821546,-0.047423277,-0.0906465,-0.16214824,-0.553038,-0.39051962,-0.4023145,-0.43654588,0.44439176,1.0813105,-0.31736168,0.121189184,0.20802096,-0.2652478,-0.16567591,0.020107267,0.003758984,0.16492335,0.61757594,0.11209696,-0.5091634,0.36515445,-0.025603235,-0.27187723,-0.67179614,0.25671402,0.56005013,-0.7046818,0.68094665,0.2017822,0.11604411,-0.08775103,-0.598575,-0.33124432,0.12616552,-0.21804926,0.386514,0.27618152,-0.78255,0.30398688,0.36874765,-0.36069474,-0.66858095,0.59863746,-0.11424001,-0.38334665,-0.08411165,0.3717049,-0.037981246,0.14561008,-0.12123503,0.3476422,-0.30108237,0.22918664,0.32227185,-0.22045732,0.17969958,-0.34728152,-0.084188096,-0.73329735,0.19832115,-0.3925286,-0.40262643,0.42952892,-0.023526916,0.026181826,0.04387332,0.24219052,0.45348892,-0.4151763,0.109924994,-0.13169043,-0.2702014,0.29164585,0.47132364,0.6539548,-0.41135213,0.5372255,-0.09299653,-0.22900875,0.08672059,0.1438092,0.44924846,-0.09852069,0.3785362,-0.20891131,-0.086271115,0.17017272,0.8110839,-0.025659472,0.29400212,0.078128375,0.04065356,0.2191782,0.08748375,-0.014527374,-0.07091809,-0.5619452,0.011853869,-0.2586093,0.25637332,0.4155698,0.22803457,0.19281837,-0.15864016,-0.33618885,0.09270941,0.1800383,0.17911008,-1.1461092,0.229764,0.19692448,0.6803392,0.3987523,0.13584764,-0.036052566,0.5490543,-0.16772287,0.17922702,0.4208943,-0.211877,-0.52885354,0.40228203,-0.61974055,0.5316466,0.023066742,0.025922025,0.303052,0.18197468,0.49045292,0.83002514,-0.10455004,-0.035252813,0.160452,-0.25742933,0.0041094595,-0.23842917,0.038273096,-0.73210543,-0.4129384,0.59207207,0.6150649,0.2621752,-0.3090165,-0.024467712,0.05343039,-0.18839452,0.12663794,-0.00044802364,0.1424632,-0.057553478,-0.6554031,-0.05105578,0.4838574,0.07312251,0.014714007,-0.0696715,-0.1231129,0.22060432,-0.3741259,0.093572445,-0.14900969,-0.91010714,-0.09301804,-0.66770357,-0.51637524,0.3965713,0.0050203605,0.18207444,0.20856152,0.0597185,-0.40014586,0.8091188,-0.16205457,0.99006903,0.022980882,-0.22635028,-0.32580763,0.4517366,0.19224116,-0.1342641,-0.060385134,-0.30009255,0.10091122,-0.6291217,0.5814619,-0.021944676,-0.30281687,0.007652868,-0.13369325,0.11520473,0.5938784,-0.072281525,-0.27313206,-0.0822569,-0.29218867,-0.5779866,-0.23732397,-0.12962803,0.23576859,0.31534353,-0.051613748,-0.11161324,-0.12539104,-0.13006714,0.33105418,0.05786091,0.3847887,0.52162915,0.1955348,-0.14593248,0.08776188,0.3347406,0.6540928,-0.028844109,0.0062525272,-0.16369537,-0.32270542,-0.50451285,0.21628109,-0.118392654,0.4032528,0.1487405,-0.21331121,0.8475546,0.20532739,1.0207733,0.0037299267,-0.26992306,0.17090991,0.58047587,-0.060471892,-0.18443155,-0.4207751,0.90714633,0.6680628,0.03006496,-0.08929966,-0.21261434,-0.121478006,0.16871384,-0.23564382,0.03914376,-0.019076701,-0.73819005,-0.12582298,0.16663513,0.27245894,0.21449389,-0.12637839,0.212902,0.07691832,-0.05597961,0.06951722,-0.46241924,-0.18883857,0.31368712,0.33273628,-0.011658958,0.20817111,-0.5157007,0.42425916,-0.43455312,-0.00010515536,-0.40554836,0.15691577,-0.12567401,-0.3077266,0.076305404,-0.15203094,0.3094583,-0.5263237,-0.090792336,-0.29927492,0.429558,0.16388896,0.10690957,0.59253514,-0.24553905,-0.043428637,-0.032006506,0.51593673,0.88633305,-0.36954626,-0.05550188,0.4001169,-0.2654779,-0.7464486,0.40490004,-0.45901605,0.25219616,-0.05587239,-0.2591939,-0.628331,0.22605798,0.035121877,0.019356413,-0.14224166,-0.62583625,-0.02239785,0.1364299,-0.03168542,-0.15510271,-0.30345675,0.0925812,0.6658557,-0.05020498,-0.343119,0.27540258,0.12147043,-0.26959226,-0.48931232,0.098960534,-0.3616634,0.144284,0.052158184,-0.4844868,-0.062284846,0.050720084,-0.53628397,0.1211882,0.17016886,-0.3014426,0.11831469,-0.37044844,-0.09359503,1.2590293,-0.31299996,0.09001949,-0.5746975,-0.569358,-0.9193188,-0.24614532,0.3662257,0.27543566,0.14513254,-0.60034645,0.06513816,-0.13985787,-0.08833135,-0.059319813,-0.28234115,0.50715476,0.063749604,0.38601416,-0.2619742,-0.8059048,0.05944476,0.033251464,-0.4535864,-0.59247696,0.63229877,0.016862707,0.92864597,-0.025158746,0.106558666,0.40239158,-0.5735479,-0.020989956,-0.25191644,-0.062442463,-0.763919,-0.0629684,354 +421,0.4613714,-0.13106865,-0.5328524,-0.39678258,-0.38789192,0.17201337,-0.23783986,0.2767117,0.14825001,-0.5455645,0.047110874,-0.019386651,-0.18367128,0.12538506,-0.12960616,-0.7575871,-0.14421667,0.0319849,-0.6157442,0.21302938,-0.52369785,0.38695827,0.2247114,0.17617036,0.062784515,0.16638121,0.09611066,-0.18164924,-0.09770845,-0.4033441,-0.17116442,0.20627752,-0.68949854,0.29162392,0.060433097,-0.43395868,-0.016104816,-0.3911863,-0.21221521,-0.5742704,0.20605275,-0.8091792,0.58454335,-0.01599191,-0.22823803,-0.008715285,-0.08041464,0.23367369,-0.05714848,0.4346709,0.39435524,-0.29006454,0.014390618,-0.19863327,-0.29324692,-0.36776713,-0.573995,0.020579776,-0.60473835,-0.03785812,-0.10695722,0.22456458,-0.18522409,0.055924833,-0.327799,0.5020786,-0.46102643,-0.19491461,0.10777674,-0.2547899,0.47095475,-0.598725,-0.19007555,-0.012951711,0.18171728,-0.32962033,-0.18043362,0.06870369,0.21158732,0.5916926,0.022808393,-0.1741363,-0.2535188,-0.049695384,0.14650096,0.47335482,-0.15793459,-0.21074183,-0.26824662,-0.052960847,0.37670884,0.235103,-0.021173483,-0.52371895,0.1074123,0.03248457,-0.27852255,0.5200277,0.44381553,-0.36537173,-0.10724635,0.3679997,0.43866214,0.14937909,-0.10522755,0.20148663,-0.051387608,-0.41748723,-0.15276177,0.4598008,-0.04345445,0.3054995,-0.085028894,0.17188565,0.6344561,-0.22659251,0.0019738248,0.0066186124,-0.16204712,0.06236985,-0.05904026,-0.26692232,0.19026613,-0.5350341,-0.0046622413,-0.32965395,0.7927996,-0.07958143,-0.8859485,0.23511529,-0.5553406,0.074456386,-0.15731467,0.6434533,0.65583616,0.35610864,-0.048783462,0.8778057,-0.4862376,0.018914664,-0.14704004,-0.2280563,-0.011851435,-0.009250156,0.08069791,-0.50678295,-0.09871689,-0.17246675,-0.02920301,0.0027553807,0.34398833,-0.42698956,-0.13552855,0.07291705,0.49390307,-0.42619038,0.08026651,0.79096097,1.0376272,1.0445815,0.1966947,1.229112,0.2760893,-0.21016566,-0.11770461,-0.3112049,-0.40285474,0.19550292,0.40889025,0.44096637,0.26979935,0.03191394,0.2547942,0.44206256,-0.3025527,0.030509692,-0.14900663,0.25746855,-0.18620001,-0.08610523,-0.41040543,-0.19706987,0.1404266,0.1892611,-0.07578814,-0.008557673,-0.28000203,0.40139428,0.22328046,1.0851077,-0.15438022,-0.030065535,-0.025720207,0.12317113,0.13213205,-0.17097083,-0.021542093,0.21081318,0.39168572,-0.15405814,-0.56320304,0.020440102,-0.111030295,-0.2187556,-0.33693674,-0.27179384,0.012783374,-0.1468071,-0.4485975,-0.08415847,0.2721715,-0.59781986,0.45767492,-2.2691426,-0.13852754,-0.20862661,0.30815506,-0.06569678,-0.4054504,-0.28593773,-0.36854425,0.37384132,0.36789355,0.34475356,-0.55472887,0.5356394,0.36347565,-0.20558967,-0.07669871,-0.81479853,-0.12661389,-0.10301925,0.16768481,0.105156824,-0.07951016,-0.27605295,0.22691692,0.6140937,-0.08256902,-0.030635683,0.17228423,0.44173983,0.019553747,0.7976127,0.24649465,0.52780193,-0.15160693,-0.09647785,0.42059997,-0.41010138,0.08414098,0.16473712,0.2017848,0.2786292,-0.66357046,-0.8374926,-0.8061291,-0.519312,1.3271188,-0.20016564,-0.51308656,0.22664483,0.103251144,-0.4526975,0.13529243,0.437316,-0.1819717,-0.062799126,-0.80388755,-0.13081856,-0.16646467,0.33660862,-0.1160668,0.15078165,-0.48100287,0.6895575,-0.216481,0.6038178,0.4451465,0.22323373,-0.010770134,-0.27606812,-0.06687148,1.1728001,0.3741654,0.12260028,-0.20549135,0.023436503,-0.14480329,0.07270602,0.18431692,0.595224,0.821694,0.05513804,0.064465694,0.37362623,-0.1813869,0.039086483,-0.09817847,-0.49979806,-0.041621268,0.08255044,0.6697994,0.24783674,0.23557556,0.54837054,-0.12975559,0.17921582,-0.17836499,-0.51536876,0.28121695,0.84510624,0.051607437,-0.3524263,0.49475452,0.4718861,-0.16675197,0.3889982,-0.5028665,-0.30466223,0.3860787,-0.11534332,-0.4556058,0.23602594,-0.46444964,0.28960064,-0.9421005,0.37696692,-0.24972187,-0.76860046,-0.5364281,-0.35538524,-2.586161,0.18548994,-0.030845689,-0.062699445,0.050214797,-0.32817098,0.3880753,-0.3779493,-0.60474193,-0.060248878,0.009554556,0.43086833,-0.020671934,-0.011652525,-0.107745625,-0.17047878,-0.21312363,0.37941477,0.121672235,0.13902922,-0.007453727,-0.33852172,0.14424051,-0.36072782,-0.43430966,-0.124653935,-0.57565653,-0.5490468,0.010388238,-0.5587038,-0.30345374,0.6947264,-0.32945886,-0.07462986,-0.14084634,0.0080375625,-0.0060089016,0.3767008,0.04392612,0.21035555,0.0012678036,0.00607511,-0.2881751,-0.30028382,0.12103777,0.17329752,0.07530161,0.26111877,-0.22543512,0.18525194,0.52287835,0.6173949,0.021102633,0.73642975,0.3178692,-0.14138891,0.12492067,-0.3988597,-0.29882008,-0.68876106,-0.40373558,-0.110047564,-0.50835824,-0.44218823,-0.16087021,-0.39121923,-0.7820958,0.4643612,0.0055738473,-0.07241932,-0.028575778,0.41513616,0.31869143,0.14372028,0.13256402,-0.07164766,-0.17244972,-0.4145063,-0.4232111,-0.64518803,-0.43868157,-0.050727163,1.3334028,-0.091445364,0.061625663,0.08905559,-0.17781428,0.2115608,0.07285629,0.10755486,0.27437606,0.4414127,0.049489,-0.66446465,0.06857254,-0.20198822,-0.094371095,-0.59263355,0.0014557338,1.0161718,-0.6785089,0.52402127,0.3679927,0.2873655,0.019045915,-0.37667012,-0.11565576,0.11699908,-0.30821344,0.7459578,0.08186676,-0.32937154,0.6452361,0.24449621,-0.040976252,-0.67292535,0.4051271,0.12254349,-0.25814977,0.20751712,0.38973984,-0.072905816,-0.09790414,-0.19046178,0.17827486,-0.33620772,0.383552,0.34226447,0.0159305,0.23242633,-0.19664189,-0.33990863,-0.6084198,-0.010714693,-0.53748685,-0.2795675,0.003487885,-0.09679165,0.17799892,0.24343322,-0.13308729,0.52487427,-0.25905767,0.16036613,-0.26945224,-0.18999414,0.41277903,0.44687095,0.17695235,-0.41776448,0.5231341,0.043921847,-0.058119614,-0.35786948,-0.046180643,0.5588344,0.0481471,0.15480046,-0.24411641,-0.19679908,0.4138012,0.6227437,0.19878078,0.28737107,0.050590318,-0.14639452,0.15178049,0.22374442,0.23048666,-0.21100381,-0.21279924,-0.031123275,0.120691076,0.082322106,0.2614002,0.016173856,0.34591874,-0.29348162,-0.07627914,0.18990088,0.24191798,-0.2219416,-1.0069147,0.376785,0.10317611,0.5919828,0.5404407,0.056972105,0.19494614,0.42676854,-0.47255063,0.06489471,0.124590404,-0.0106489975,-0.2384227,0.4445564,-0.5151586,0.40484133,-0.16279817,0.10623976,-0.0024070058,0.061286505,0.4476543,0.91674334,-0.10977091,0.08211633,-0.111504234,-0.11897743,0.066706814,-0.26133177,0.059726477,-0.559373,-0.40532213,0.7831091,0.25632882,0.44045094,-0.21752074,-0.052113693,0.1159611,-0.17653145,0.1344249,-0.03800279,-0.08762334,0.07333811,-0.54828507,-0.19399811,0.5399832,-0.0034968343,-0.13376495,0.18607573,-0.37065244,0.2849043,0.20830517,0.093816295,-0.07209254,-0.44107124,-0.14964227,-0.51841354,-0.2373428,-0.08547232,-0.40497962,0.21887438,0.12294804,-0.017096518,-0.076876484,0.24275385,0.47248918,0.81069905,-0.018574314,-0.13300523,-0.28999466,0.18336762,0.31183743,-0.21433473,-0.28509247,-0.29791743,0.2419733,-0.7701622,0.38678727,-0.17651093,-0.34910282,0.24830873,-0.15503648,0.048318952,0.4038075,-0.45872498,-0.071484014,0.3213299,0.035506543,-0.11375102,-0.081978746,-0.37901226,0.17322354,-0.07960236,-0.089213066,-0.07335414,-0.15389907,-0.16311789,0.31132653,0.26165575,0.42019,0.2720836,0.08558728,-0.5506851,-0.033468988,-0.063626565,0.30354756,0.12155003,0.054866504,-0.18239483,-0.35214347,-0.1581452,0.40682703,-0.12931581,0.1715016,0.0044469875,-0.5123235,0.7735816,0.1575396,1.145613,-0.016719606,-0.33363298,-0.16474022,0.4250682,-0.0038425007,0.05987996,-0.23886512,0.87394947,0.5803603,-0.039508108,-0.11337678,-0.5262976,-0.26371768,0.008211502,-0.1942852,-0.1909952,-0.17182887,-0.68124527,-0.39062813,0.1416183,0.1016387,0.013919693,0.08612508,0.16558114,0.11485953,0.0045644683,0.34190464,-0.4190447,0.10848228,0.092284426,0.074963145,0.03326113,0.075476356,-0.4758045,0.25139883,-0.65852225,0.1153124,-0.2175647,0.10802544,0.110583186,-0.13421257,0.13978817,-0.037865598,0.19165646,-0.33256793,-0.4653349,-0.22139776,0.7267296,0.020131102,0.22919051,0.79196197,-0.18394475,0.17275335,0.16443588,0.46844012,1.5096337,-0.097665116,0.0676695,0.38806957,-0.17578237,-0.42391726,0.11387439,-0.3024683,-0.094483376,-0.030649176,-0.42474237,-0.18328401,0.33322933,0.123213105,-0.06165282,0.017987404,-0.48303396,-0.15241475,0.53401995,-0.28549552,-0.3090283,-0.27144694,0.2654562,0.5378768,-0.37922543,-0.40097564,0.012760012,0.34261498,-0.33765978,-0.5176877,0.0846665,-0.18480454,0.48944142,0.24993905,-0.24288262,0.038647253,0.265261,-0.39164057,-0.04181196,0.302264,-0.3005348,-0.06743302,-0.17084697,-0.19729851,0.890866,0.06544782,0.05003815,-0.634312,-0.58581,-0.85008705,-0.26098362,0.2534069,0.2339653,-0.08439134,-0.5507478,-0.037292983,-0.1627231,-0.07504266,0.17855628,-0.448098,0.49979714,0.13609028,0.62764466,-0.33687013,-0.8571935,0.20697948,0.06072877,-0.34937313,-0.5426212,0.5276534,0.11082878,0.5437581,0.13626032,0.032457944,0.11512053,-0.5935134,0.25385752,-0.15107404,-0.15203135,-0.79982346,0.054632213,355 +422,0.592731,0.05543471,-0.3375172,-0.06505,-0.1841648,0.19834708,-0.084174134,0.13797355,0.03494438,-0.5528215,-0.20723407,-0.28709862,-0.114092946,0.20877397,-0.122639775,-0.5248171,0.06248807,0.27150002,-0.17446361,0.388885,-0.4790018,0.6536528,0.1079641,0.31087294,-0.03688928,0.23444296,0.44948715,-0.21529126,-0.3642128,-0.4051234,-0.3461619,0.0008682268,-0.47990036,0.24074794,-0.19787717,-0.5649007,0.106671,-0.44205046,-0.1426821,-0.55258995,0.27229276,-0.8471421,0.5118026,0.12955312,-0.030148242,0.27011794,0.076396994,0.22383745,-0.024035176,0.19588622,0.20804371,-0.30785936,0.05066984,-0.38398173,-0.3330824,-0.37709028,-0.35808796,-0.01099592,-0.4221194,-0.21140207,-0.2826482,0.104978785,-0.16718443,-0.12656567,-0.030485475,0.06956539,-0.43086764,-0.053354625,0.21782579,-0.28595707,0.1497076,-0.54444724,-0.22927073,-0.1249383,0.30512843,-0.36025342,-0.055922262,0.22224696,0.2005211,0.7301025,0.03212294,-0.11991216,-0.37546566,-0.21259582,0.11722166,0.6907219,-0.13819726,-0.40671787,0.00071744405,-0.13839628,0.22665094,0.22835529,0.20995869,-0.050815422,-0.07276515,-0.08836873,-0.15989849,0.20993932,0.5078103,-0.41598907,-0.15190813,0.46161652,0.4773086,-0.052929234,0.047668133,0.060551815,-0.040284276,-0.29256085,-0.22166392,-0.059289653,-0.08568864,0.5928839,-0.07246596,0.3406976,0.69478375,-0.17955254,0.2818048,-0.025085239,-0.025204957,-0.13755505,-0.061024446,-0.28221074,0.29222706,-0.46626586,0.00083901203,-0.132854,1.0037869,0.065690935,-0.49734873,0.3543686,-0.43054938,0.021353062,-0.053902548,0.5422868,0.39195442,0.370297,0.12542404,0.8352528,-0.6073211,-0.0015215363,-0.06899167,-0.2652358,-0.076048136,-0.08779482,0.021792918,-0.3943523,0.12597403,0.12735608,0.0200598,0.07749859,0.35054275,-0.5005075,0.012286289,0.21205756,0.81403285,-0.39840505,0.046176936,0.7377172,0.99576914,0.9852937,-0.033318948,1.2038705,0.38088158,-0.34526125,-0.17980349,-0.23962614,-0.5143713,0.1737354,0.33194426,-0.24008611,0.15904866,0.2227108,0.11524185,0.28301042,-0.4251614,-0.10657453,-0.37879398,0.12564178,0.022676935,-0.03208409,-0.47646168,-0.23312758,-0.12435452,-0.03661749,0.23859671,0.28019506,-0.27457118,0.354307,-0.0029187116,1.940833,-0.17680487,0.1659771,-0.03213331,0.41368634,0.28475124,-0.078644,0.0760184,0.25331888,0.14397225,-0.17924415,-0.51309913,-0.1318951,-0.17826942,-0.66989106,-0.24172528,-0.17568599,-0.10650623,0.11344324,-0.36179778,-0.12412996,-0.07015581,-0.45070818,0.36254916,-2.3818202,-0.048370022,-0.052590933,0.41770926,-0.2857156,-0.35283202,-0.09655796,-0.37421662,0.48549455,0.31700978,0.37578836,-0.5092783,0.20510209,0.49038792,-0.31308696,-0.39063978,-0.5468142,0.21148929,-0.20680825,0.17382814,0.0030524784,-0.2576148,-0.08756534,0.032623496,0.45258692,-0.100599244,0.12946649,0.12454593,0.43895158,0.21703921,0.31357768,0.21751574,0.5970181,-0.3206953,-0.23676597,0.50410306,-0.38328308,0.16896474,-0.2734344,0.11705304,0.22951104,-0.48758918,-0.68558687,-0.77126557,-0.39727163,1.0390265,-0.032842625,-0.5545193,0.17290565,0.056735683,-0.32693365,-0.13112886,0.3957294,-0.08866983,-0.17003246,-0.67488515,0.08929474,-0.14176042,0.15435405,0.06305699,0.07895018,-0.5789903,0.74976623,-0.19432701,0.3906073,0.3827886,0.2948065,-0.08641259,-0.32189035,0.03866262,1.0249244,0.5083863,0.14532934,-0.27678606,-0.14607044,-0.17921183,-0.1442565,0.16367137,0.36318234,0.7782001,-0.034821104,-0.03499136,0.2275871,0.14897718,0.011480453,-0.09988451,-0.36980262,-0.09117043,-0.12125663,0.67308295,0.48487502,-0.047561992,0.3670796,-0.1669444,0.31322506,-0.45152143,-0.36577538,0.6033859,0.74537927,-0.149444,-0.10236745,0.49527326,0.4587055,-0.19650884,0.3588573,-0.8156132,-0.47590193,0.25258717,-0.11388641,-0.46960124,0.00163017,-0.32088658,0.11470372,-0.8222737,0.29158783,-0.08618844,-0.41261795,-0.5622684,-0.32010883,-2.9369137,0.105518565,-0.19997314,-0.05402993,0.025263892,-0.16817202,0.11776316,-0.5516189,-0.38124612,0.08552958,-0.055816118,0.6803531,0.14211346,0.41813466,-0.12649286,-0.328933,-0.28474423,0.12121022,-0.1890235,0.2891764,0.10558311,-0.31770834,0.12701532,-0.24523488,-0.31210405,-0.08090663,-0.45268694,-0.3982966,-0.20478322,-0.2689424,-0.2633657,0.67184734,-0.5803561,0.15793936,-0.2739363,-0.11614169,-0.28121194,0.26622567,0.21041994,0.107707225,0.081540704,-0.06363101,-0.06363305,-0.40798637,0.29413396,0.13548966,0.15026595,0.48956385,-0.25909683,0.030997226,0.2592871,0.565936,-0.042985227,0.74522454,0.31457093,-0.13744819,0.2833921,-0.35994628,-0.18256046,-0.567248,-0.5279792,-0.105882,-0.45733288,-0.5645677,-0.16347902,-0.43541098,-0.7486869,0.5416563,0.031035524,0.062304616,0.013377577,0.32721615,0.37597862,-0.1848624,-0.13642655,0.049824975,0.10847199,-0.45720044,-0.34778705,-0.5955282,-0.33192962,0.2101868,0.9777234,-0.05858204,-0.1005696,0.2705126,-0.0071146786,0.028844884,-0.06508316,0.17751837,-0.15586986,0.51141316,0.020723006,-0.6632977,0.5581617,-0.049516056,-0.118372954,-0.63638914,0.026075492,0.55872625,-0.61946434,0.32047436,0.574522,0.19004358,0.2550169,-0.3901317,-0.2136044,-0.089547835,-0.3852773,0.12394946,0.14724705,-0.60540205,0.4478716,0.30568048,-0.2386699,-0.7808846,0.33961678,0.15986834,-0.49534503,0.055856925,0.08649453,0.28733233,-0.00926312,-0.11234665,0.12375213,-0.5099812,0.3624687,0.32998037,-0.017862927,0.5340206,-0.41310206,-0.30156687,-0.65638435,-0.030912926,-0.32486743,-0.3891795,-0.033408266,0.24023303,0.07176628,0.3552491,0.1812817,0.35868016,-0.5806528,0.049585395,-0.10111286,-0.09114873,0.3630087,0.23743503,0.3931019,-0.45912987,0.583642,-0.10886894,-0.019562943,-0.2760308,0.1110233,0.42557272,0.1790189,0.18092012,0.038604956,-0.2679444,0.32310668,0.7845511,0.18617892,0.2802802,0.08714784,-0.20210867,0.27773932,0.16835964,0.052228305,0.10959106,-0.4609826,-0.11590148,-0.17108522,0.062637344,0.41683617,0.24791737,0.47361293,-0.16758797,-0.2080197,0.11811825,0.10847013,-0.2863877,-0.8874442,0.22603181,0.02461786,0.70266163,0.4852233,-0.08466338,0.1891692,0.65997726,-0.28934738,0.11374002,0.14135279,-0.18641849,-0.2854562,0.48893446,-0.5075941,0.24064718,-0.11079986,-0.061890673,-0.0066962456,-0.121842384,0.2805076,0.66193146,-0.08813091,0.16944186,-0.013069583,-0.3342852,-0.08709918,-0.24666597,0.12110807,-0.6034004,-0.13816981,0.77992773,0.33955812,0.37605026,-0.13127483,0.034578715,-0.028955055,-0.16891313,-0.02668726,0.14501916,0.15435168,0.083375745,-0.51049405,-0.22216238,0.64544,0.16239507,0.08049776,0.0009727478,-0.42400995,0.26418176,-0.14678645,-0.07186711,0.026356105,-0.5179399,0.20959656,-0.427354,-0.3182063,0.30695263,0.15504806,0.287717,0.17343585,-0.019720022,-0.056555837,0.33240986,0.41182908,0.7226286,0.068499826,-0.16892599,-0.38696626,0.34618765,0.18411449,-0.21787651,-0.08925002,-0.035377085,0.11178783,-0.654945,0.37341323,-0.06573608,-0.05144957,0.2565963,-0.18958065,-0.015270091,0.51297987,-0.16994773,0.008288029,0.2996059,-0.19465725,-0.32548323,0.07093075,-0.37949067,0.0773576,0.07163956,-0.19593294,-0.17772005,-0.12075334,-0.20404114,0.25886935,0.10642882,0.27282897,0.3398855,-0.0010626231,-0.5291224,-0.11554794,-0.06355218,0.46494937,-0.09145673,0.03776274,-0.23267038,-0.51454175,-0.23872216,0.2881883,-0.1555386,0.038611267,0.21261093,-0.22663224,0.82696897,0.12130336,1.0786092,0.15979764,-0.2560804,0.005065177,0.53204024,-0.17085247,0.115985036,-0.3745673,1.0491081,0.5327659,-0.021439003,-0.06258277,-0.09048986,-0.032290217,0.21824126,-0.32117897,-0.24316895,-0.007659729,-0.7300201,-0.4589088,0.27589852,0.24891534,0.037309516,0.020326108,0.16542353,0.19316487,0.11371124,0.39739043,-0.4398143,-0.34935004,0.28196123,0.23547015,0.042856205,0.028500216,-0.3547915,0.47343358,-0.5619954,-0.09010482,-0.35527998,0.10086161,-0.24208842,-0.23912382,0.21362655,0.111724496,0.35409817,-0.3291312,-0.38320538,-0.19370379,0.32843715,0.11744861,0.32381183,0.4297109,-0.19186834,0.1442441,-0.13866538,0.4592407,1.2826601,-0.14848375,0.16815947,0.64393157,-0.37544844,-0.5612273,0.29860568,-0.37742025,-0.14127025,-0.15606865,-0.39787006,-0.4484315,0.31241196,0.29278952,0.008797796,0.21347985,-0.48404688,-0.16188839,0.36662194,-0.3130732,-0.26601312,-0.2696521,0.06246921,0.6245913,-0.19746554,-0.3007019,0.22306585,0.52756387,-0.2613098,-0.58614916,-0.066177,-0.31280702,0.46313915,0.20570771,-0.22651471,-0.15388475,0.015292968,-0.38988492,0.053226907,0.28059402,-0.43671724,0.00969874,-0.5919098,0.15945117,0.70870507,0.032359447,0.05228389,-0.5740749,-0.25863943,-0.98528534,-0.3731343,0.58187854,0.2241811,0.04071957,-0.35921484,-0.025349587,-0.21149196,-0.04996272,-0.17123748,-0.43764332,0.27719852,0.27336767,0.46163413,-0.15613903,-0.77607286,-0.012371557,0.16800925,-0.43686432,-0.49987346,0.44600987,0.0018009299,1.0388337,0.099889256,-0.22062945,0.33437204,-0.6166056,0.26268968,-0.20208265,-0.1690541,-0.80799454,0.13927451,356 +423,0.35841963,0.033524085,-0.6125652,-0.3067084,-0.35337538,0.18302837,-0.46861264,0.17292787,0.26603904,-0.25933456,0.07083733,-0.012168332,-0.27318743,0.25406834,-0.22731331,-0.94253653,0.20428823,0.079669,-0.6238651,0.64478433,-0.39663863,0.40011564,0.11037234,0.1799827,-0.18639043,0.12024594,0.47405857,0.1095567,0.031559877,-0.39459303,0.15852652,0.20751223,-0.8775045,0.34978142,-0.015862575,-0.20516777,-0.09827935,-0.47539932,-0.10607122,-0.90845937,0.2621588,-0.7855527,0.55885404,-0.09644634,-0.43044335,-0.02755284,0.16636476,0.20559515,-0.07058547,0.08094977,0.28578207,-0.3344917,-0.19674815,0.116402104,-0.06690605,-0.5320745,-0.54980105,0.008603153,-0.66223794,-0.0012884566,-0.34466797,0.38186482,-0.33324292,-0.10398744,-0.37054187,0.22455035,-0.35980317,-0.123966634,0.2621509,-0.40300274,0.055040065,-0.49589628,-0.058193725,-0.14071532,0.49913028,0.00045166697,-0.15965368,0.380786,0.52488154,0.641002,0.100671545,-0.37351185,-0.054923225,-0.2170279,0.25817457,0.5947011,0.03641257,-0.5285211,-0.31851986,-0.052698195,0.6435156,0.053318296,0.16432206,-0.32981592,0.00847838,-0.17948224,-0.029418945,0.7024912,0.5950295,-0.5234377,-0.05704693,0.5409561,0.26536772,0.37696353,-0.28562006,0.3621882,-0.16259839,-0.4108471,-0.25313875,0.29779792,0.027369468,0.4887741,-0.2250798,0.11011721,0.85267526,-0.037500966,-0.02734435,0.20548965,-0.15657587,0.03575221,-0.13481237,-0.066905364,0.26021078,-0.5562446,0.014412169,-0.43884903,0.5988485,0.08509286,-0.8996751,0.31721744,-0.3548687,0.13750459,0.08857016,0.8333596,0.9414553,0.46645245,0.12480574,1.1018133,-0.5358247,0.014535508,0.37540987,-0.37254265,0.04596361,0.0022200432,0.067784235,-0.37132493,0.27046615,-0.09366355,0.09524261,-0.06783343,0.4429202,-0.5116623,-0.10805039,-0.013745828,0.54002655,-0.28642845,-0.14744309,1.0042828,1.0209777,1.0694338,0.015057253,1.2631617,0.22512162,0.029705862,-0.40143389,0.06552024,-0.5421497,0.31589556,0.49909708,0.7315784,0.33711267,0.047606595,0.0099283075,0.29002067,-0.46964136,-0.25698397,0.1308401,0.3918218,-0.052650232,-0.33840445,-0.43686375,0.028406573,0.4416431,0.15282205,0.08839653,0.21573985,-0.081788726,0.5647184,0.17090575,0.58580494,-0.109188676,0.08647684,-0.031702194,0.35339665,0.21766233,-0.2578212,0.1987063,0.13625507,0.26075214,-0.10449036,-0.4952092,-0.08381634,-0.40714666,-0.4358911,-0.26326314,-0.41585895,-0.4212112,-0.20620091,-0.32422638,-0.20739272,0.10604175,-0.22654554,0.49994227,-2.416045,-0.23004277,-0.36334845,0.3550728,-0.1538368,-0.21324213,-0.17412946,-0.5564394,0.46032968,0.341935,0.49120182,-0.64113075,0.38936567,0.33303812,-0.2979098,-0.13831954,-0.74343795,0.09675656,-0.017675575,0.52184427,0.051371165,-0.40599993,-0.032447316,0.39302513,0.7599692,0.31054574,0.05671944,0.28904969,0.72564715,-0.21156533,0.42871326,-0.028985007,0.68254036,-0.12887834,-0.19706538,0.37561896,-0.50770205,0.63691676,-0.3528896,0.09868318,0.5224825,-0.27487892,-0.8343421,-0.5526854,-0.38309553,1.4632858,-0.43509668,-0.7821067,0.057645205,0.42258328,-0.16304791,0.14773428,0.539522,-0.08072112,0.15280768,-0.54773504,-0.12115367,-0.30664435,0.27732515,-0.26626632,0.08681847,-0.55865246,0.8580941,-0.24462748,0.47799176,0.18269464,0.123926364,-0.28909776,-0.5210745,0.033523023,1.0427173,0.6362249,0.052338462,-0.19962652,-0.20156077,-0.50436634,-0.40124565,-0.112545066,0.84973,0.4273978,-0.0533387,0.068910375,0.36944303,-0.0893039,0.21640804,-0.21984935,-0.58047974,-0.23533382,0.1145404,0.83368737,0.6667411,-0.33521715,0.29970816,-0.038523596,0.033252448,-0.2001035,-0.50421274,0.45657036,0.5323615,-0.21897057,-0.20392779,0.44934255,0.35129732,-0.27499706,0.500637,-0.60994476,-0.65113205,0.53193235,0.12835693,-0.47815853,0.18519334,-0.41013023,0.14503722,-0.6796516,0.57946354,-0.47733933,-0.7236189,-0.3910703,-0.232357,-2.8623672,0.07029886,-0.12518395,0.17914852,-0.457584,-0.11171063,0.4613417,-0.41602772,-0.79513973,-0.00575568,-0.016499365,0.5690408,-0.24615976,0.070184745,-0.33497497,-0.28272817,-0.11490335,0.4710793,0.17330442,0.38314137,-0.01898798,-0.061907146,0.04385628,-0.35551235,-0.36946398,-0.25727886,-0.61615354,-0.67850065,0.013802481,-0.32799646,0.0954417,0.6907819,-0.70107377,0.03422185,-0.26225457,-0.019082764,-0.17717846,0.13547377,0.112162426,0.19461183,-0.0847997,-0.14392304,-0.050889414,-0.14903928,0.44517216,0.07588218,0.30758947,0.47605923,-0.2546868,0.17650345,0.520364,0.58948797,0.14636944,0.9421779,0.04239065,-0.06804083,0.44292277,-0.10201855,-0.40264267,-0.7651897,-0.31750455,-0.012582108,-0.5061561,-0.37479073,0.011060203,-0.35343245,-0.8982797,0.3623964,0.14372154,0.385766,-0.31539258,0.31010112,0.24281693,-0.17953089,0.10983674,-0.0846147,-0.23833187,-0.46356645,-0.36498114,-0.7609116,-0.5520598,0.040112156,0.8162084,-0.1734567,-0.21373202,0.18431412,-0.117937885,0.08880718,-0.016608402,0.272414,-0.026606092,0.3417354,0.1004701,-0.8740568,0.38416693,-0.28838554,0.10534818,-0.5557887,0.11600215,0.6888575,-0.5832452,0.27158314,0.60732305,0.28985476,-0.096256666,-0.77934223,-0.11762651,0.1510237,-0.2899497,0.56291157,0.13776846,-0.5464157,0.6518493,-0.015187242,-0.12314129,-0.6118094,0.64130646,0.120407164,0.08021845,0.25746244,0.4812932,-0.075629435,-0.11462755,-0.1807632,0.3272945,-0.5381521,0.44230264,0.39275554,-0.08507971,0.4845979,-0.047979005,-0.63462263,-0.52827615,-0.15833111,-0.7055621,-0.32524952,-0.026285563,-0.17777629,-0.040613372,0.046381168,0.13690732,0.5331721,-0.3079017,0.12795216,-0.17606023,-0.29929128,0.68112665,0.63323206,0.49863988,-0.4600604,0.6949709,0.29193807,-0.021262405,-0.019528363,0.09072958,0.63954324,0.27569905,0.3860825,-0.023992207,0.18023065,-0.06619502,0.5449311,0.28234118,0.3948854,0.20103979,-0.29240718,0.35078296,0.06107494,0.49703616,-0.38526216,-0.5498525,-0.09086067,-0.040122706,0.0016371746,0.45509848,0.14770164,0.24769542,0.051095646,-0.19656365,0.11747413,-0.112457834,-0.24648798,-1.535178,0.42088023,0.23182829,0.78936344,0.2559896,-0.03395394,0.08614968,0.5570526,-0.26854637,-0.15143363,0.39755073,0.088085614,-0.3746267,0.5513729,-0.49728012,0.25159213,-0.18856955,0.18009599,0.2057956,0.23421256,0.49580693,0.86042327,-0.14293444,0.040572487,-0.27263075,-0.27424064,0.13444774,-0.28143254,0.33945307,-0.3100407,-0.36618656,0.6703099,0.30780414,0.26432377,-0.34460157,0.051234502,-0.02824889,-0.315223,0.05235184,-0.17167042,-0.086740054,-0.35245916,-0.48508188,-0.1232247,0.6680501,0.0051615834,-0.1321664,0.107544556,-0.24785928,0.23370838,-0.07836231,0.19946377,-0.16125591,-0.7463947,-0.1803313,-0.58922815,-0.50588137,0.22763543,-0.26579455,0.3338627,0.2907844,-0.08042015,-0.12070365,0.090649076,0.11854366,0.41624528,0.031164348,-0.27891135,-0.32675007,-0.14481023,0.34994334,-0.43451935,-0.053350564,-0.20021772,0.3073564,-0.43758106,0.35947245,-0.39965394,-0.3116264,0.18552384,-0.03184455,-0.2445079,0.35728452,-0.25645772,-0.16180792,0.29551083,-0.302376,-0.07323702,-0.047051884,-0.25679538,0.26990715,0.08751982,-0.020799914,-0.08476504,-0.044342704,-0.17518868,0.15140118,0.07249719,0.1084401,0.6743631,-0.0015750059,-0.7138397,0.28828996,0.0915146,0.6844068,0.21879342,0.054137833,-0.20976639,-0.46539885,-0.46893117,0.7890285,-0.21633424,0.18544881,0.07005691,-0.3129504,0.7847617,0.17082377,1.1541506,0.13609883,-0.6277522,0.048309058,0.7237204,0.02780373,0.07294605,-0.36147442,0.9547545,0.53299254,-0.11391248,0.083729506,-0.5520796,-0.025616746,0.25782365,-0.17819127,-0.1480058,-0.15649335,-0.6541476,-0.15563338,0.021427555,0.20122483,0.016567692,-0.11889503,-0.24141285,0.16432749,0.17819087,0.39298293,-0.87686837,-0.34017804,0.24814437,0.124360576,-0.19889866,-0.0415419,-0.34216875,0.29262123,-0.8294169,0.12126456,-0.58808714,0.17250605,-0.065200515,-0.43837658,0.38547182,-0.22871438,0.3811029,-0.3532105,-0.4139169,-0.08122091,0.4647534,0.36106962,0.24707386,0.73684055,-0.18935974,-0.208051,0.2278982,0.61245006,1.3060305,-0.051082294,0.14894919,0.20680937,-0.400651,-0.6272258,0.018595848,-0.6358043,0.20480503,-0.1021673,-0.5262547,-0.30731106,0.15427849,-0.057535954,0.1091602,0.14734364,-0.83055866,-0.22596705,0.29305276,-0.28639808,-0.23035358,-0.39244965,0.07808571,0.74148476,-0.40395632,-0.35813135,0.0043574315,0.26891214,-0.38330224,-1.0312511,0.2154136,-0.3089432,0.37397188,0.09745752,-0.5129152,-0.011661432,0.2809715,-0.45219082,0.40165728,0.5151702,-0.31760582,-0.05324651,-0.19165525,0.07427122,0.8136725,0.0028780145,0.16233923,-0.5447603,-0.48905095,-0.81110954,-0.24711822,0.07277185,0.36522952,-0.102725744,-0.519641,-0.35829213,-0.5044379,0.118324175,0.07666715,-0.53477955,0.32322145,0.109947436,0.63854754,-0.20569287,-1.14002,0.053722654,0.015668487,-0.0023783338,-0.44409537,0.4053066,-0.09121646,0.70037574,0.13402446,0.08081637,-0.019216478,-0.93859273,0.36119658,-0.19161974,-0.0077478206,-0.63835675,0.4632717,367 +424,0.45018086,-0.2364872,-0.42682832,-0.24639902,-0.26220647,0.012085685,-0.09272171,0.53468305,0.20419887,-0.37097174,-0.28472072,-0.31801316,0.029789329,0.5740972,-0.17262064,-0.6296615,-0.05788323,0.0944882,-0.62491095,0.7080721,-0.30261335,0.179184,0.28362235,0.3474159,0.52712315,0.24002257,0.28423563,-0.14886306,-0.0827909,-0.16697346,-0.20850913,0.1971543,-0.46710736,0.12540719,0.0057888883,-0.34037516,0.0055320784,-0.37256983,-0.35726696,-0.8477734,0.42414325,-0.96877843,0.46268535,-0.033257794,-0.19353639,0.3913899,0.1347493,0.50050336,-0.35359982,-0.18039992,0.11364224,-0.069331184,-0.12509693,-0.07547665,-0.0039981776,-0.42887667,-0.7069145,-0.07097815,-0.26001856,-0.38633674,-0.4015539,0.08301815,-0.37187845,0.048939977,-0.00025035653,0.61480385,-0.45130232,-0.02877487,0.3759479,-0.17413895,0.26360252,-0.6251001,-0.223765,-0.094205804,0.26385006,-0.010601188,-0.058782734,0.38140345,0.44789174,0.19284718,0.08042483,-0.21695413,-0.20158419,-0.017233917,0.10363114,0.36382556,-0.111503355,-0.69591206,0.079497404,0.16727415,0.1964055,0.30158487,0.33668354,-0.29067013,-0.20308377,0.092455946,-0.28262743,0.29160234,0.3738316,-0.3095053,-0.28046387,0.44488934,0.46022135,0.13262634,-0.05513105,-0.07171651,-0.03406511,-0.59141874,-0.046294354,0.019791672,-0.38111606,0.6739877,-0.23418872,0.27122137,0.7524094,-0.13761583,0.022355633,-0.07025757,0.114162244,-0.31430793,-0.2618287,-0.28408793,0.21753727,-0.4222533,0.30175433,-0.24681011,0.83755404,0.18650429,-0.6250816,0.23035678,-0.58755875,0.248053,-0.21773006,0.46492293,0.6444173,0.2856094,0.4479048,0.59610456,-0.500884,0.0055904803,-0.06249958,-0.47770095,0.052965377,-0.23932374,-0.0366653,-0.5631982,0.015180715,-0.024858305,-0.09889972,0.12169496,0.22757597,-0.55056196,-0.027412305,0.060563378,0.78862095,-0.25240093,-0.03190504,0.7909933,1.0178796,0.9798521,0.020836404,1.0922669,0.3027366,-0.31171924,0.3172337,-0.30174664,-0.6662189,0.3371965,0.6688519,-0.50160074,0.30809647,-0.024485067,-0.021605058,0.29695,-0.33417526,-0.009997108,-0.31151935,0.16618972,0.24990673,-0.33506542,-0.38814372,-0.25952515,-0.07092677,0.020896604,0.12688635,0.25999624,-0.074658975,0.38730118,-0.014737887,1.6370901,0.029879782,0.021811215,0.04152785,0.39164788,0.20673566,-0.13458201,-0.10415898,0.3680875,0.46070185,0.12595968,-0.5606735,0.18940951,-0.3164017,-0.48145458,-0.11997745,-0.3708191,0.07982893,0.14548866,-0.3330497,-0.0766083,-0.23896995,-0.14149812,0.40117565,-2.8896368,-0.27917233,-0.22704509,0.22501767,-0.3180838,-0.23494376,0.14758505,-0.51030236,0.4250036,0.4399073,0.4854091,-0.6712359,0.22424321,0.3314421,-0.71428174,-0.13180251,-0.5831949,-0.08172804,-0.038034566,0.44806114,-0.082594,-0.16074432,0.07006355,0.058730662,0.39507908,0.07233425,0.14113732,0.39373067,0.33327463,0.05951715,0.49961886,-0.028858075,0.533668,-0.13194779,-0.14146936,0.23152855,-0.14008239,0.45134875,-0.10725074,0.091582336,0.56700414,-0.361324,-0.8489135,-0.6974581,-0.2567658,1.2355039,-0.29177305,-0.30970213,0.24776676,-0.10872082,-0.08262753,-0.056094382,0.35626975,-0.17981638,-0.141171,-0.78813106,0.094796024,-0.012444994,-0.02913537,0.0049185907,-0.1625456,-0.4069745,0.79172695,0.016029615,0.38297603,0.27716756,0.19854258,-0.39791423,-0.4506082,0.06275292,0.86356366,0.39754248,-0.038315184,-0.11740164,-0.24018177,-0.50237143,-0.18790796,0.23358266,0.42903143,0.7013589,-0.008120378,0.1064197,0.22305979,-0.06518167,0.06297445,-0.2502881,-0.23130812,-0.060356077,-0.006504408,0.43411463,0.58381623,-0.13247783,0.5108448,-0.099899575,0.31144163,0.034540087,-0.51623255,0.71534437,1.3124367,-0.18120375,-0.3211324,0.5743857,0.41743067,-0.1581995,0.47485584,-0.4402752,-0.13963506,0.59880495,-0.21872623,-0.38580042,0.16806832,-0.23843524,0.124151655,-0.93358666,0.238549,-0.30384043,-0.37406352,-0.49959913,0.02795544,-3.3704379,0.23377919,-0.33323193,-0.18908015,-0.24663281,-0.21543467,0.17018318,-0.69772184,-0.4651323,0.27264827,0.15399791,0.8555349,-0.10221087,0.21066198,-0.16135387,-0.1695761,-0.29454586,0.042551212,-0.030607702,0.29448527,-0.034098413,-0.41535488,0.14560829,-0.04287953,-0.57693857,0.13243246,-0.5299132,-0.4302862,-0.31075612,-0.44401744,-0.34190044,0.5952024,-0.20953642,0.06729386,-0.12837508,0.014778083,-0.08516636,0.18315196,0.08093578,0.10095896,0.10896306,0.0036522597,0.06985135,-0.39666587,0.41508836,0.015200155,0.3866386,0.35064745,-0.18926832,0.28811032,0.3513581,0.5719738,-0.15160473,0.6910902,0.4317614,-0.06427523,0.2576334,-0.23019895,-0.30851275,-0.5637202,-0.33755854,-0.03919622,-0.32079872,-0.40306106,-0.122133374,-0.33921337,-0.67278165,0.47967148,0.027979845,0.31175843,-0.09072698,0.29660162,0.61637074,-0.31067005,0.04269874,-0.021522235,-0.20295897,-0.65771645,-0.03905773,-0.6369948,-0.46583298,0.2645572,0.8661558,-0.28662133,-0.11652065,-0.15211225,-0.3682335,0.15073411,0.0066365427,-0.20016472,0.099026084,0.31272727,-0.14132579,-0.8002483,0.6637036,-0.026001113,-0.12024488,-0.5223693,0.26704088,0.42062762,-0.43895411,0.45117757,0.21789753,-0.044568814,-0.10976207,-0.33635995,-0.17917001,-0.09600454,-0.26763493,0.30994752,0.22785613,-0.65368754,0.38200098,0.41337943,-0.29778418,-0.76776886,0.46501392,0.016106913,-0.19495715,0.005373729,0.20719203,0.2842254,0.044989485,-0.28098944,0.19562355,-0.5094289,0.18889233,0.12876435,-0.031333003,0.251671,-0.05511275,-0.07387591,-0.7951861,0.12906884,-0.32106882,-0.21058403,0.2507641,0.22351561,-0.0046564424,0.068968445,0.105311535,0.37525532,-0.11564578,0.1628437,-0.050332267,-0.24617918,0.376841,0.4798324,0.32204118,-0.5376012,0.6425248,-0.053825855,-0.085916884,0.024189722,-0.021022445,0.49111792,0.35197586,0.35142514,0.121673174,-0.23781858,0.35746452,0.5896894,0.07868651,0.44131595,0.1458682,-0.1068364,0.23122971,0.051381554,0.22682966,0.1031866,-0.62072414,-0.04161952,-0.28455305,-0.018456439,0.6106839,0.056080867,0.12777664,-0.027316472,-0.47597966,-0.05983148,0.002438907,0.016232967,-1.0671928,0.42226917,0.31503597,0.83903486,0.49557644,-0.24149558,-0.10480498,0.78348416,-0.16794932,0.1564844,0.3604752,0.002599729,-0.6250238,0.5965725,-0.857273,0.35868615,0.04661083,-0.08284824,-0.048282016,0.08580857,0.16139562,0.7205078,-0.2515649,-0.0056303483,-0.10398074,-0.4161612,0.33235398,-0.37540904,-0.014625243,-0.5780967,-0.3329474,0.36682183,0.49345875,0.2783184,-0.08324722,-0.009551162,0.16053547,-0.16554105,0.28931546,0.16645236,0.1368672,0.052524034,-0.56324893,-0.28971466,0.40179938,-0.0251155,0.36863974,-0.087068364,-0.19574581,0.22580817,-0.32240704,-0.10566332,-0.16061376,-0.7485107,-0.005428642,-0.09760017,-0.3457648,0.50535214,-0.16338755,0.25518647,0.22567551,0.101382814,-0.14385669,0.13087158,0.038065225,0.88657486,-0.050872866,-0.28810245,-0.3029308,0.19876416,0.033512298,-0.13181296,0.16563666,-0.15080397,-0.16362773,-0.62212986,0.63726246,0.032278467,-0.2886093,-0.07156115,-0.19941998,0.07182544,0.596063,-0.23020756,-0.023789244,-0.22456113,-0.2314916,-0.15784028,-0.25769696,-0.10923431,0.3252283,0.29217127,0.2196552,-0.2200365,-0.008207634,-0.07927536,0.4966062,-0.14210467,0.3035221,0.21632311,-0.11514684,-0.22837187,-0.37795955,0.2653982,0.36760256,0.17921512,-0.22238682,-0.39218494,-0.48154068,-0.41805503,-0.0021533924,-0.039623715,0.4678237,0.03080371,-0.25437427,0.7813419,-0.10206963,1.3364226,-0.03888506,-0.4392064,0.11388435,0.65600485,0.024112549,-0.1659183,-0.11558678,0.9385404,0.52163815,-0.07014798,-0.039584137,-0.42179343,-0.029108593,0.31740412,-0.23492469,-0.07256466,0.07979113,-0.483078,-0.4755044,0.14134884,0.32114983,0.1925338,-0.086439386,0.033054896,0.27568272,-0.051608305,0.5206288,-0.2395698,-0.30700874,0.19963405,0.17467165,0.028941298,0.11058948,-0.5139052,0.48594713,-0.6361946,0.21010001,-0.21111958,0.2087475,-0.23555276,-0.32998198,0.28056854,0.051710945,0.32804176,-0.31766585,-0.51239485,-0.16497569,0.54391867,0.2812404,0.12296168,0.6671772,-0.3736345,0.016315278,0.05391728,0.43860856,0.90953696,-0.16897038,0.036656175,0.3729264,-0.45447573,-0.65065515,0.5413874,-0.22213279,0.31819883,-0.041145064,-0.1369144,-0.62890923,0.26238376,0.36432013,-0.0036253482,-0.034054484,-0.6053949,-0.2963763,0.34513617,-0.39035413,-0.16953342,-0.406173,0.18082802,0.4035838,-0.2950909,-0.3502398,0.07450138,0.09319825,-0.08200623,-0.43934625,-0.2315246,-0.32359052,0.32012185,0.04906676,-0.33267593,-0.14741233,0.089099765,-0.3963876,0.2086778,-0.23601472,-0.38777637,0.07898784,-0.35616398,-0.0077688354,0.87050164,-0.22477841,0.099174105,-0.6576519,-0.36827025,-0.7007438,-0.40481105,0.5995244,-0.1318027,0.09707133,-0.6499491,0.062337425,-0.04442897,0.07522,-0.15143652,-0.29383484,0.38383445,0.13333496,0.39302382,0.02679973,-0.7176686,0.12274605,-0.004462653,-0.033300005,-0.63700813,0.50515926,-0.07741648,0.7170065,0.06527988,0.22509514,0.2736491,-0.37002745,-0.020610092,-0.27284682,-0.33323577,-0.53018624,0.046934027,368 +425,0.484175,-0.25802,-0.54303086,-0.1426332,-0.39823565,0.0011411948,-0.15601642,0.20226325,0.31330386,-0.5193478,-0.06991916,-0.13500224,-0.07173364,0.03666347,-0.123782344,-0.38420925,-0.14437328,0.2014669,-0.7198634,0.9246759,-0.27316958,0.25255254,0.1410245,0.36128494,-0.040648956,0.2258705,0.08328087,-0.0817889,-0.08176935,-0.27064434,-0.025477078,-0.023140226,-0.88865995,0.3846166,-0.1667534,-0.3109992,-0.14712766,-0.28726798,-0.25928405,-0.850235,0.32356873,-0.9103154,0.6293095,0.026719894,-0.36098072,0.1386012,0.17600273,0.1917318,-0.1918621,-0.023579895,0.254901,-0.13136858,-0.32080764,-0.27521807,0.007064547,-0.36869168,-0.5494779,0.026071966,-0.32881704,0.10008835,-0.24548905,0.27650222,-0.21737976,-0.084719755,-0.28185806,0.6303102,-0.34648708,0.24383654,0.15853143,-0.17715494,0.243189,-0.6976784,-0.08005613,-0.22854242,0.13196845,-0.15470697,-0.29841056,0.20342655,0.15596437,0.6447425,0.04908436,-0.23146746,-0.20301327,0.14914884,0.041085254,0.21413878,-0.23073065,-0.36890438,-0.20982039,-0.1487424,0.21977374,0.208496,0.15191129,-0.37614974,0.18454275,-0.19288349,-0.11122338,0.38708162,0.5481162,-0.3724377,-0.22478925,0.32383028,0.6016892,0.15544698,-0.077932715,-0.085028365,-0.13264118,-0.5636429,-0.22685516,0.21073547,-0.2388719,0.51568574,-0.16933599,-0.042680003,0.2637646,-0.16885877,-0.201273,0.37313846,0.071031354,0.060163092,-0.38193908,-0.33961126,0.3758095,-0.5530982,-0.04811556,-0.40468398,0.40820327,-0.01412942,-0.68021697,0.2873227,-0.5388838,0.19158776,0.060492076,0.52728593,0.8788024,0.7231421,0.15862527,0.9250728,-0.55234534,0.0019386688,-0.0596809,-0.18131073,0.18449725,-0.28559768,0.13693997,-0.42926425,0.012110518,-0.1995139,-0.20793544,-0.21279022,0.34222513,-0.6435247,-0.3138928,0.23691122,0.6556714,-0.15069151,-0.03173423,0.89353997,1.1029478,1.1457062,0.1791183,1.401556,0.25553098,-0.15002389,0.07448893,-0.16591205,-0.8706466,0.1669178,0.25515184,0.3179787,0.11484272,0.21519129,0.0039534057,0.57001215,-0.5408513,-0.05790478,-0.15450358,0.5703291,-0.035884228,-0.011829087,-0.19800104,-0.15199922,0.12747951,0.14138515,0.15264502,0.10421128,-0.41807103,0.05672843,0.25505847,1.2188696,-0.35638338,0.12351223,0.22019693,0.24503648,0.27592978,-0.12847014,0.036537316,0.24302857,0.17387404,0.0770237,-0.4645863,-0.0645598,-0.27541474,-0.45323303,-0.15603785,-0.101027966,-0.21262553,-0.16497706,-0.38777635,-0.37511498,-0.0186371,-0.35866648,0.48364726,-2.4470916,0.0060069305,-0.2735205,0.3316314,-0.34477064,-0.34061676,-0.07427334,-0.46071666,0.45021942,0.33170286,0.47050935,-0.67376155,0.32303756,0.36690086,-0.5640953,0.007974305,-0.65926117,-0.19353011,-0.06673993,0.40728283,0.22630608,-0.33180425,-0.10556132,0.049213566,0.38847998,0.122550555,0.13336499,0.42714685,0.37330753,-0.07493918,0.4632364,0.2009995,0.61088794,-0.4363067,-0.29957512,0.35240462,-0.48961663,0.2504545,-0.090235256,0.083131954,0.5135659,-0.520652,-0.7506456,-0.93943864,-0.23826209,1.2091463,-0.053782243,-0.625663,0.024819639,-0.42439845,-0.27382162,0.048617102,0.5663999,-0.07103238,0.117698215,-0.8521351,-0.05356484,-0.1484041,0.4889718,0.018045949,0.13469587,-0.6282163,0.93305844,-0.075388364,0.51576024,0.50503355,0.2568415,-0.40523106,-0.39819345,0.0871596,1.0261403,0.44572824,0.059194975,-0.123146884,-0.22142029,-0.36681613,-0.12401498,0.10637567,0.6588462,0.4258561,-0.1675427,0.03765976,0.3484006,-0.10846811,0.0030385256,-0.1657779,-0.34799606,-0.31993183,-0.05511206,0.6224187,0.7411563,-0.04048052,0.27227524,-0.06909605,0.24638668,-0.16183329,-0.68046916,0.61877793,0.8819017,-0.21364081,-0.33238325,0.7148362,0.38617298,-0.34326547,0.55141795,-0.58605,-0.51603925,0.09042396,0.037678514,-0.47330925,0.07362775,-0.43032023,0.19237961,-0.65111953,0.46613187,-0.43238586,-0.43037748,-0.65200377,-0.28729132,-2.7053905,0.3419141,-0.1610961,0.15627456,-0.16694786,-0.098753974,0.2665992,-0.41065758,-0.7770953,0.20789954,0.0513305,0.55134374,-0.12947348,0.038098138,-0.1726128,-0.3828214,-0.29672167,0.3136904,0.07144543,0.2065963,0.00515581,-0.30322388,-0.06735667,0.118233725,-0.20905626,-0.1100796,-0.6659512,-0.55296975,-0.12900753,-0.5848443,-0.31320977,0.68027353,-0.29789498,0.0022236246,-0.3979921,0.0006583035,0.074441925,0.2407086,-0.02132726,0.31529555,0.10097617,-0.11378608,-0.20072703,-0.28864786,0.13948062,0.070714846,0.023412893,0.35757175,-0.29781437,0.22317609,0.24903545,0.81831235,-0.124623396,0.9984857,0.5180536,-0.17273673,0.36389896,-0.10236149,-0.252012,-0.56937426,-0.15330826,-0.0011152221,-0.49812266,-0.24817026,0.21727583,-0.29147002,-0.8236772,0.5845632,-0.08376957,0.04564156,0.12661757,0.19000861,0.5025632,-0.2367632,-0.057889488,-0.20869216,-0.23944949,-0.3827823,-0.41865116,-0.49538592,-0.28850874,-0.08010453,1.3096688,-0.1698725,0.05353244,0.36463323,-0.07936301,0.04662568,0.19333962,-0.11875304,0.041969005,0.57952976,0.14354849,-0.60297775,0.26163292,0.11937797,-0.04711512,-0.53407997,0.5218077,0.72962207,-0.58600754,0.7324275,0.33662292,0.16097721,-0.3016109,-0.64585173,-0.18674847,0.08525412,-0.3460137,0.36357546,0.2813457,-0.8208478,0.3420863,0.30641714,-0.061356127,-0.9150662,0.4244229,-0.089864604,-0.29163155,-0.2144343,0.5539908,-0.09240927,0.17222592,-0.22649133,0.26039305,-0.49432787,0.27209178,0.14411378,-0.11963358,0.14389372,-0.26429206,-0.2775698,-0.7623335,-0.05838127,-0.6296402,-0.377462,0.3269669,-0.09310372,-0.09256896,0.51322234,0.37086672,0.45981672,-0.045116026,0.10921175,-0.19281052,-0.30955014,0.4577933,0.4991699,0.41645887,-0.5104893,0.6127423,0.03302953,-0.1452495,-0.3063685,0.017197618,0.36763185,-0.05239892,0.4052773,0.053891234,-0.009868396,0.2103549,0.77293235,0.08506274,0.32744756,-0.0028657967,-0.09957613,0.18578295,0.008235639,0.27530354,-0.19583546,-0.6978971,0.07852707,-0.12678525,0.24964544,0.28839263,0.05562825,0.2798859,-0.0021404538,-0.25882062,-0.16829102,0.09769909,-0.12548839,-1.3667657,0.27297103,0.06091092,0.86545384,0.79258364,-0.046907116,-0.053773455,0.6622805,-0.16741051,0.04917856,0.35277894,-0.13908936,-0.13666907,0.4797427,-0.6976364,0.39321136,-0.06033177,0.08972835,-0.1398109,0.11707436,0.2232791,0.9853249,-0.19804104,0.039364655,-0.31904426,-0.12707621,0.19548596,-0.30644995,0.18935998,-0.3967875,-0.4855378,0.7736811,0.4097367,0.6332798,-0.2723218,0.0038921577,-0.030865133,-0.20737076,0.27946797,-0.043650843,0.00073203444,0.11519628,-0.480599,0.11374504,0.5148331,-0.07899733,0.09505505,0.1310263,-0.2775605,0.1547921,-0.106556654,-0.060929086,-0.103183195,-0.78713405,-0.14008398,-0.2872332,-0.061157208,0.44324556,-0.28916717,0.08365012,0.1400259,0.09863331,-0.2617975,0.24605879,0.09225713,0.5611873,0.16752562,0.0065537817,-0.2682779,0.29034588,0.01826428,-0.21504827,0.15847445,-0.15815724,0.2592096,-0.81440365,0.3521246,0.05691546,-0.5201172,0.21369468,-0.04758527,0.06250282,0.5923974,-0.24941644,-0.32698044,0.17211542,-0.15498288,-0.09519189,-0.113331296,-0.048922118,0.2266346,0.036565997,0.11928101,-0.0860814,-0.0829036,-0.23651543,0.33249065,0.20562895,0.34626967,0.43826166,0.13156562,-0.5765656,0.21911204,0.17540477,0.6705771,-0.14348319,-0.09200498,-0.04515359,-0.5204259,-0.48153216,0.38660124,0.069182016,0.26114938,4.780718e-05,-0.18671687,0.8152914,0.20651875,1.1808488,-0.010527859,-0.14365561,-0.06742164,0.53123605,-0.014682548,-0.07615525,-0.44766346,0.9978164,0.62818575,-0.065664746,0.012328567,-0.23583767,0.00383475,0.20606533,-0.17154181,0.15191317,0.0047458643,-0.8009109,-0.24348558,0.038657743,0.38785082,-0.05252245,-0.109043814,0.027549535,0.26944622,0.026428375,0.2608121,-0.5548353,-0.04308009,0.4192007,0.37275606,-0.0151941795,0.21903324,-0.33339268,0.19739236,-0.72259384,0.19466667,-0.22310236,-0.03482182,-0.15965056,-0.18150248,0.14465669,-0.019394722,0.28484297,-0.48773432,-0.41540188,-0.25888047,0.5087901,0.2407411,0.09805415,0.7867956,-0.18780129,0.039754722,0.20627277,0.5334235,0.9907322,-0.10957432,0.09530316,0.14294545,-0.373933,-0.5825477,0.34871587,-0.2644639,0.010664889,0.0679624,-0.26732108,-0.32441136,0.21702719,0.11006122,-0.031477835,0.16291536,-0.88769025,-0.07874996,0.2857873,-0.18195139,-0.029459102,-0.062436618,0.22152767,0.64317566,-0.08504139,-0.27147728,0.008082156,0.15367231,-0.37018976,-0.7506615,-0.044564385,-0.671069,0.3821972,0.12914579,-0.4428704,-0.15927413,0.027674155,-0.7765187,-0.014089035,0.03773733,-0.30368942,0.021649582,-0.33544332,0.02438957,0.7417855,0.03125076,0.26009187,-0.27641186,-0.559606,-0.8659479,-0.09309477,0.11567499,0.15385008,-0.024970492,-0.55430764,-0.18379939,-0.3440869,0.061141938,0.15949944,-0.33436617,0.46456507,0.16662331,0.5217727,-0.1434997,-0.9630392,0.18943965,0.053875785,0.06399751,-0.35580257,0.35442993,0.04694416,0.62457025,0.047359638,-0.045318313,0.22598353,-0.86188775,0.19372202,-0.14732072,-0.103760004,-0.64959675,0.034931343,378 +426,0.50782305,-0.026919255,-0.86487496,-0.09133184,-0.18963869,0.1949787,-0.4193539,0.2820279,0.36991054,-0.42836618,-0.10277653,0.00055760995,-0.13860354,0.09575633,-0.13921218,-0.4859634,-0.06814637,0.22646545,-0.5007494,0.49481848,-0.32876113,0.44398436,-0.13262963,0.2738611,0.10997901,0.15854628,-0.0634794,0.024084965,-0.1838253,-0.22164014,0.409003,0.2686728,-0.808205,0.24150479,-0.24859156,-0.45939058,-0.22856848,-0.38707623,-0.37662676,-0.78563136,0.27347323,-0.7986174,0.7203619,-0.08290107,-0.1785119,0.24810122,0.15331256,0.18658125,0.03453679,-0.015371391,0.26362208,-0.30244637,-0.3135981,-0.22124493,-0.15522228,-0.42319033,-0.5889134,0.041784156,-0.58705074,0.15933785,-0.27062395,0.22248344,-0.41689306,0.032266345,-0.28794196,0.565114,-0.36791867,0.17773406,0.18277727,-0.07243485,0.09620799,-0.7921758,-0.23729178,0.0112485485,0.16629304,-0.20650885,-0.24709116,0.16968273,0.28595918,0.49651575,-0.12308591,-0.1074348,-0.46362224,0.08634225,0.40516695,0.43360308,-0.21888162,-0.15188639,-0.22073138,0.019569788,0.3679592,0.014657522,0.21919744,-0.2404267,0.025536835,0.028002646,-0.106501594,0.6220253,0.5298247,-0.1814811,-0.08011471,0.5317579,0.6339408,0.3265482,-0.11362704,0.1311386,-0.11517884,-0.5199423,-0.17416222,0.069361284,-0.13956538,0.2559254,-0.16237082,0.19834408,0.42898887,-0.22510739,-0.23633364,0.3405476,0.06948615,0.11677142,-0.28112957,-0.1427267,0.40451404,-0.3934203,0.023293434,-0.30652553,0.5148274,-0.14432044,-0.7624363,0.30636454,-0.5652978,0.19163729,0.05231113,0.66708106,0.85705376,0.5377857,0.09062751,0.88923186,-0.36294478,0.049269974,0.009359811,-0.43943945,0.22043487,-0.24904636,-0.047819175,-0.5059078,0.051849876,-0.043147597,-0.14558671,0.13882653,0.5872973,-0.63200563,-0.15666959,0.025902467,0.55375475,-0.2236743,-0.18000977,0.79593223,1.0331122,1.0810813,0.1645892,1.2858257,0.13372907,-0.14416625,-0.14225018,-0.17944776,-0.9770662,0.3820798,0.18923454,-0.5262867,0.4922929,0.15753387,-0.0506689,0.48783198,-0.33323076,-0.27225307,0.016209142,0.28009596,0.040232044,-0.36923423,-0.30977395,-0.1017857,0.0549513,0.053991344,0.32787338,0.2868158,-0.33262998,0.1707124,0.23425022,1.2115448,-0.33241656,0.07852975,0.13105668,0.027805071,0.29347426,-0.31965527,0.03135222,0.10635342,0.29812655,0.06987108,-0.51965475,0.10283785,-0.20332101,-0.44983634,-0.25251532,-0.16583316,-0.3551736,-0.09294166,-0.27990714,-0.114560366,-0.26278612,-0.4271637,0.29934576,-2.3539917,-0.12223029,-0.06326533,0.42569312,-0.12693636,-0.5014356,-0.2912341,-0.35885864,0.2446352,0.25650337,0.43440935,-0.40223986,0.4409275,0.5321153,-0.71543354,-0.02936109,-0.5483586,-0.026681978,0.053984087,0.2896538,0.09285291,-0.23362522,0.06629977,0.19597457,0.45887575,-0.2031143,0.043264944,0.5407132,0.55538255,-0.20659424,0.28047436,0.001365983,0.5415703,-0.32811734,-0.3362317,0.6092159,-0.5060419,0.25261924,-0.12053047,0.14409114,0.5133377,-0.37696293,-0.9670049,-0.44060293,-0.03270168,1.3243601,-0.10497636,-0.5581964,0.066816404,-0.42973566,-0.5656499,0.045017667,0.48035255,-0.20107564,-0.08703004,-1.0447515,-0.083887115,-0.26464185,0.25254712,-0.13467091,0.11807054,-0.46521944,0.68769306,-0.09907874,0.6377412,0.38201734,0.34171343,-0.404423,-0.46964908,0.10542,1.1290932,0.5668112,0.15025273,-0.3816903,-0.04609636,-0.42416954,0.013367168,0.05397741,0.61151993,0.47978458,-0.015327836,0.11654645,0.26998454,0.052438956,0.07830663,-0.34244302,-0.2786137,-0.22360703,-0.028810391,0.5887762,0.67992216,-0.15600397,0.37922436,0.07984709,0.15912414,-0.29258284,-0.5227809,0.5750226,0.95427716,-0.1277671,-0.3923672,0.6750869,0.2202535,-0.36742708,0.55464447,-0.5657932,-0.39002138,0.16421448,-0.17048404,-0.3390489,0.26014438,-0.44842345,0.08969428,-0.8671937,0.3566182,-0.32904142,-0.51858765,-0.65891486,-0.22571734,-2.3533916,0.22476718,-0.21062073,-0.038932826,-0.43048754,-0.03953116,0.29508743,-0.41149908,-0.8931926,0.13004363,0.052217487,0.75299853,-0.30239743,0.12126899,0.008492691,-0.35714182,-0.1486758,0.19788323,0.27910587,0.21468028,0.10270601,-0.30027536,-0.10055146,-0.1446841,-0.3302245,-0.12404863,-0.375038,-0.3918166,0.030018657,-0.35076407,-0.20838521,0.67800015,-0.50628364,-0.054229736,-0.35845974,0.07976756,0.1870173,0.3781373,-0.07746242,0.22299598,0.17445697,-0.22395912,0.015357022,-0.13248348,0.37305158,-0.012814288,0.39451674,0.6602454,-0.45443028,0.12714961,0.53355366,0.8532172,-0.061886072,1.1371149,0.32273147,-0.081247725,0.3388128,-0.1610428,-0.24911346,-0.6372786,-0.17959292,0.09442743,-0.56530637,-0.38407835,0.056013364,-0.39284927,-0.9433418,0.5410717,-0.092093386,0.25582328,-0.07687146,0.46696594,0.46251553,-0.013859843,-0.08781611,-0.119633354,-0.17773072,-0.26759237,-0.3889955,-0.52521825,-0.45508152,-0.056767605,1.2185434,-0.20339003,0.23394266,0.28419954,-0.11611093,0.1510591,0.1618096,0.04780974,0.102638826,0.4689846,0.19416185,-0.5747351,0.24965146,-0.26336086,-0.121266425,-0.72769547,0.1851219,0.5979314,-0.5634581,0.5221766,0.48824543,0.1446459,-0.118272446,-0.6550127,0.06114166,0.1913226,-0.26241073,0.5232188,0.40315008,-0.74481016,0.54601794,0.36964354,-0.30104,-0.67382854,0.5889527,0.108877964,-0.019384291,-0.17427948,0.48869172,-0.04760773,0.05940089,-0.053607017,0.34233952,-0.21158192,0.27761018,0.14676253,-0.15367392,0.1500103,-0.17980312,-0.24015959,-0.7319118,0.09345947,-0.48535055,-0.19228068,0.14128485,-0.013689105,0.20670216,0.22313507,0.16963516,0.514456,-0.29598433,0.040779117,-0.2579634,-0.37593347,0.46590304,0.53839654,0.43660545,-0.40026346,0.5767722,0.055314567,-0.24655236,-0.038438015,0.07720908,0.5295798,-0.15165012,0.34128585,0.3612824,0.049142394,0.056329813,0.8138995,0.13369204,0.38428852,0.034784187,-0.21232936,0.14075865,-0.048230194,0.38228962,-0.30976132,-0.5950927,-0.11496173,-0.08327906,0.19608591,0.5361846,0.039680112,0.3095724,-0.27231923,-0.2908195,0.04704106,0.29404396,-0.051847033,-1.3522674,0.36451986,0.14179602,0.94780254,0.48639435,-0.043952722,0.23888956,0.41250756,-0.053197365,0.08706943,0.33493063,-0.10568931,-0.37815306,0.38293704,-0.7813417,0.35677555,-0.11871685,0.0043584937,0.03173614,-0.035653204,0.52094716,0.89049566,-0.16232303,0.052567057,-0.084400974,-0.21384,0.12405389,-0.31089598,0.2905113,-0.45692858,-0.24859904,1.0161496,0.581186,0.43614942,-0.43013695,0.0699609,0.10857421,-0.188786,0.19228064,0.033495225,0.07275228,-0.20554748,-0.49844685,-0.06433093,0.42723465,0.1806259,0.039268192,0.010451229,-0.23745687,0.27915362,-0.03285726,-0.0015162954,-0.09564352,-0.7098418,-0.052924834,-0.34092337,-0.53889793,0.23114048,-0.0741395,0.095740385,0.34100798,0.11082005,-0.48834023,0.3163244,0.097278185,0.72378623,-0.041254025,-0.07091818,-0.27302772,0.4181362,0.21447489,-0.17407164,-0.1054836,-0.20609458,0.3612358,-0.49163744,0.40070948,-0.21584551,-0.45114344,0.18162386,0.0146688605,0.02927483,0.5572134,-0.27126986,-0.21875787,0.16042168,-0.1324511,-0.1977396,-0.21596332,-0.21291657,0.10826058,0.055992994,-0.2729279,-0.26004297,-0.059507247,-0.24402888,0.12203958,0.07299639,0.22721447,0.59662473,0.21714938,-0.62955487,-0.062977016,0.3545002,0.77856624,-0.0029971856,-0.118626066,-0.48698995,-0.53306764,-0.3516298,0.6688828,-0.030955834,0.1862522,0.081808686,-0.39080316,0.7276269,0.159149,1.0338647,-0.03333699,-0.3391642,0.0136301685,0.64068323,-0.018745702,-0.3591094,-0.4904826,0.94969434,0.5756995,-0.24656595,-0.04844805,-0.4191943,-0.030304665,0.07795157,-0.27221617,-0.09988628,-0.07589308,-0.72468454,-0.13302122,0.07894441,0.36831182,-0.17171097,-0.2704363,0.15746641,0.37152356,-0.026099,0.07359545,-0.6181037,-0.20602775,0.22620642,0.2082628,-0.12814423,0.09266468,-0.46526143,0.14237408,-0.7687476,-0.103789225,-0.20895062,0.10860966,-0.051665027,-0.26591998,0.30950195,0.03294681,0.2284026,-0.43912014,-0.23001455,-0.21024169,0.23861238,0.059098125,0.108204745,0.745048,-0.3118647,0.18386438,0.24956532,0.4163518,1.0261009,-0.08125426,0.07383723,0.25763017,-0.35618162,-0.6922025,0.2992868,-0.533848,0.24985959,-0.2315768,-0.39186624,-0.6083603,0.19912206,0.1862716,0.18109153,-0.046604175,-0.72456485,-0.1281722,0.24811952,-0.32898828,-0.13790497,-0.23812468,-0.31320807,0.7526809,-0.19639349,-0.35121122,-0.059069566,0.4325866,-0.10962001,-0.574166,0.043250468,-0.42679778,0.34902224,-0.018944826,-0.20133911,-0.11946101,-0.038847845,-0.5880887,0.213502,0.2959779,-0.30072355,-0.054205406,-0.30627736,0.08840691,0.61025614,-0.23583926,0.31136903,-0.30371216,-0.57021856,-0.97208023,-0.0937022,-0.0059206313,0.083566286,0.033209175,-0.79031324,0.027400775,-0.240503,-0.16389155,-0.06857792,-0.45301756,0.4074157,0.19987658,0.46452427,-0.2987619,-0.9953421,0.0019682434,0.1956776,-0.26837006,-0.41101104,0.4779447,0.0740021,0.7150899,0.15994108,0.0997378,0.1317256,-0.8039426,0.18989691,-0.04732195,-0.098176174,-0.69691694,-0.044530537,380 +427,0.24972583,0.009260978,-0.46927705,-0.17386529,-0.1880504,0.25551525,-0.1622887,0.32666883,0.043789625,-0.53634244,-0.25139612,-0.10563852,0.042494573,0.2366461,-0.2671716,-0.37469706,-0.006079729,0.15460813,-0.21173719,0.1388418,-0.602171,0.26843378,0.062133227,0.16372587,-0.13662192,0.09914475,0.36661434,-0.18695624,-0.13850798,-0.24189329,0.043829735,0.11089178,-0.5284137,0.14983916,-0.088741064,-0.34511822,0.09218432,-0.424679,-0.41384977,-0.7162193,0.44950482,-1.0144477,0.5915294,0.0531074,-0.17753117,0.3955664,0.12879886,0.12466921,-0.22660403,0.045745216,0.1667709,-0.250892,-0.230376,-0.023672745,-0.14857998,-0.2278004,-0.6599302,0.05814147,-0.427373,-0.11076685,-0.39952633,0.19693093,-0.5078042,0.13462915,-0.25260854,0.39767233,-0.43034583,-0.10922599,0.1710175,-0.14203237,0.09903019,-0.5534991,-0.07518792,-0.0113468915,0.1375357,-0.26397353,-0.044086788,0.25115168,0.20108159,0.49780226,-0.07466247,-0.23933725,-0.23132144,-0.034774583,0.21021377,0.43602404,-0.20203972,-0.5325912,0.012106165,0.016090747,0.1395611,0.2282052,-0.0001823519,-0.18356107,-0.009295021,0.28355178,-0.28537658,0.28991336,0.71096575,-0.25302514,-0.20505273,0.45572728,0.6282919,-0.12346704,0.05883029,0.07626389,-0.021162977,-0.47765896,-0.21981624,0.10883479,-0.27041915,0.4304569,-0.17062528,0.32223272,0.6010174,-0.39974502,0.1697732,-0.035378456,0.041900326,-0.1431115,-0.23762687,-0.35605988,0.32681134,-0.4513769,0.20236461,-0.1960289,0.9913308,-0.007971071,-0.7393488,0.43699953,-0.31296164,0.14692661,-0.15498972,0.75074154,0.47645062,0.40207312,0.29978707,0.79173106,-0.6428369,-0.06785239,-0.120693386,-0.4243681,-0.013902477,-0.08512349,-0.07362021,-0.27212957,-0.00019637177,0.19456713,-0.07538716,-0.06958356,0.32808998,-0.37949437,-0.046295796,0.11365009,0.6815089,-0.38500962,-0.07528491,0.67961264,1.0795543,0.78635967,0.1088557,1.257453,0.28102836,-0.14728229,-0.02072319,-0.11450783,-0.92636096,0.32328865,0.4232758,-0.015534137,0.19877066,0.1925553,-0.059255455,0.36864495,-0.6010356,-0.08485869,-0.2960514,0.38372585,0.03320734,-0.1303484,-0.41518405,-0.08236909,0.15460719,-0.0053166235,0.25368172,0.3772771,-0.25447327,0.13380113,0.14986417,1.3674074,-0.10051419,0.14102785,0.20406125,0.38850433,0.17158154,0.057858247,-0.12099862,0.17782459,0.4367996,0.08013768,-0.588524,0.0009388583,-0.16254091,-0.60687625,-0.20543303,-0.27469984,0.05877183,-0.20289032,-0.26446465,-0.091562934,-0.11326216,-0.4947719,0.4608881,-2.6429691,-0.13708152,-0.051040474,0.29060268,-0.2365541,-0.3587238,-0.093895376,-0.53903544,0.5242032,0.3936319,0.39637044,-0.64129215,0.39297202,0.4188733,-0.355321,-0.10006989,-0.7977122,-0.037309147,-0.18339911,0.23943445,0.25874284,-0.2603374,-0.050041646,0.01060866,0.42707655,-0.04497239,0.086919464,0.30189565,0.39932773,0.1642951,0.38186383,-0.013847649,0.5281585,-0.41558614,-0.1875625,0.350386,-0.42113143,0.20300113,-0.26225427,0.19116847,0.28404397,-0.5083083,-0.7678973,-0.68661296,-0.38489166,1.3703252,-0.22691151,-0.4113121,0.3560283,-0.12055551,-0.21893491,-0.06803995,0.33698598,-0.40289047,-0.060366232,-0.7741273,0.13428286,-0.18183279,0.26426694,-0.12473241,0.20060763,-0.5139306,0.6031857,-0.36382374,0.4988703,0.40798324,0.22331078,-0.34526005,-0.31467444,0.0070165866,1.0321833,0.47098234,0.07083223,-0.27757698,-0.121110566,-0.08338334,-0.1786668,0.039295934,0.49318913,0.79130226,0.07098652,0.03685399,0.28322887,-0.042379763,0.016777474,-0.16604002,-0.38157532,-0.09151476,-0.037798412,0.5825413,0.3299151,-0.34691736,0.3435475,-0.15410313,0.25346512,-0.31752926,-0.26923043,0.43400598,0.68394405,-0.19055541,-0.20338297,0.6075736,0.40973678,-0.40530068,0.40871662,-0.683912,-0.28949562,0.33723265,-0.18178198,-0.44992965,0.0034742611,-0.1409651,0.14539467,-0.77014446,0.43605596,-0.22148024,-0.6528605,-0.5480183,-0.19730197,-3.2305715,0.12384749,-0.30253306,-0.050937057,-0.1552364,-0.13684285,0.19286063,-0.39749345,-0.54388946,0.11894226,0.08675862,0.60226864,0.09568183,0.18322597,-0.12290001,0.0174005,-0.38263625,0.031004881,0.13144681,0.23169242,0.024713393,-0.37985986,0.110409655,-0.22879136,-0.48303202,0.10680834,-0.46447867,-0.3326524,-0.17097072,-0.38776582,-0.38688797,0.63889754,-0.32554156,-0.030242186,-0.29882997,0.06030373,-0.147077,0.49417305,0.014257188,0.15146779,-0.082580395,-0.21977328,0.0460079,-0.26381612,0.5342944,-0.08606971,0.31485656,0.59778106,-0.21760552,-0.059980284,0.47799364,0.5773544,0.14480567,0.8904427,0.24993351,-0.11276617,0.23801105,-0.21140747,-0.21287163,-0.4740102,-0.33607274,0.17284894,-0.50039643,-0.34265503,-0.06366537,-0.42649135,-0.8278977,0.52510977,-0.064542346,0.07770443,-0.03770419,0.3741584,0.39572588,-0.05194477,-0.092962466,-0.10691129,-0.0937054,-0.52836096,-0.35048527,-0.70477647,-0.33789763,-0.23587091,1.0396538,-0.105388455,-0.017344456,-0.14681487,-0.040077608,0.04781481,-0.1212619,0.035312433,0.19799738,0.37999138,-0.14829288,-0.6675292,0.45826247,-0.17686315,-0.21530953,-0.6606337,0.051378634,0.58238584,-0.6213869,0.43987712,0.46767694,0.21134017,-0.12658371,-0.67522246,-0.21974976,-0.036191158,-0.14730671,0.44571576,0.12591802,-0.92045206,0.65812224,0.48379755,-0.26647833,-0.7007155,0.3860948,0.111058235,-0.08813642,0.14998014,0.34469908,-0.024219492,-0.015514136,-0.116486855,0.17377302,-0.42946172,0.37193355,0.09710191,-0.022811545,0.74372333,-0.32993904,-0.27980494,-0.6082264,-0.2124286,-0.5923719,-0.055802107,-0.048959557,-0.011473281,0.039775398,0.20754956,-0.045382563,0.5252519,-0.4468761,0.03835088,0.04572221,-0.29803663,0.37531805,0.35356978,0.3471186,-0.41748816,0.6706608,-0.01857852,-0.08092958,-0.21441242,0.0153961945,0.53311026,0.13875407,0.32110003,-0.01339263,-0.054475274,0.41490522,0.9918557,0.2162088,0.43407467,0.20095253,-0.1735505,0.3615895,0.12809072,0.17091383,0.035873923,-0.44490868,0.0002369242,-0.15860398,0.09472239,0.4975625,0.14881425,0.49187174,-0.17950006,-0.1731555,-0.01960143,0.1643617,-0.14340138,-0.99881214,0.35676524,0.0045212507,0.71675843,0.2807106,-0.12757386,0.097715676,0.5379416,-0.16199212,0.22969241,0.25968918,0.024446966,-0.46620324,0.57266814,-0.63460267,0.35417816,-0.111553654,0.02924,-0.014318168,0.084274255,0.38621017,0.69093513,-0.071338095,0.056114364,-0.07027115,-0.25851274,0.35836634,-0.36358184,0.23727322,-0.40090078,-0.1967143,0.6936321,0.40520695,0.33731762,-0.070552506,-0.16732778,0.17356706,-0.0635246,0.15252228,0.10260345,0.10717927,-0.08770699,-0.65124947,-0.40074188,0.5199564,0.48044667,0.11997967,-0.07494099,-0.2287534,0.25857976,-0.2809357,-0.12132495,0.011702897,-0.60316485,0.073321305,-0.07553144,-0.38804308,0.17926848,-0.27383122,0.31425613,0.23567687,0.008023717,-0.4480984,-0.049307752,0.32408124,0.66295415,-0.01030457,-0.22136316,-0.41282913,0.084856056,0.22673652,-0.27613658,-0.05256633,-0.24681275,-0.033090625,-0.5890643,0.36654973,-0.21199839,-0.23758377,0.3834907,-0.21644023,-0.12081587,0.67036563,-0.19275835,-0.071830645,-0.022061387,-0.20956774,-0.1745577,-0.15747023,-0.24407096,0.18339656,0.17745864,-0.023155246,-0.10416232,-0.17649506,-0.2961976,0.43952295,0.08763043,0.07763725,0.30837122,0.113445945,-0.38358614,-0.22616203,-0.0884741,0.6522341,-0.03231758,-0.122997455,-0.3364084,-0.36858624,-0.034167625,0.17807904,-0.16877365,0.17078936,0.10692399,-0.42446575,0.64304954,0.009037571,0.9386496,0.13872398,-0.27476665,-0.19679113,0.5973557,0.09507489,0.015851405,-0.24434659,0.92448467,0.50490296,-0.09660512,-0.23345968,-0.45901707,0.14197801,0.25569525,-0.14229849,-0.33567017,-0.059985988,-0.6189229,-0.2091989,0.3175306,0.3110806,-0.006129334,0.016942654,0.107387766,0.22916345,0.11036033,0.53851116,-0.4908097,0.0061922497,0.41479522,0.1338305,0.10306623,0.092057206,-0.41928148,0.30169544,-0.62602806,0.07385801,-0.16191085,0.075396456,-0.1557237,-0.1751214,0.23630778,0.1034497,0.44048765,-0.22581737,-0.35420698,0.050703663,0.39138004,0.23649357,0.1275695,0.65395135,-0.12569477,0.091379754,0.1415756,0.46532282,1.0447301,-0.070214316,0.166765,0.2798328,-0.27388975,-0.75360626,0.4922955,-0.16429773,0.08510762,-0.045047212,-0.22755544,-0.37311158,0.29333398,0.31963953,-0.2042394,0.19958791,-0.4197309,-0.22550228,0.3571531,-0.32037774,-0.19082847,-0.24730404,0.115871385,0.7091943,-0.21037804,-0.10043383,0.03605668,0.44838986,-0.28896877,-0.56596476,-0.19225201,-0.31091523,0.26350722,-0.01003121,-0.28787738,0.029408647,0.004549269,-0.37535685,0.1481214,0.13533548,-0.31029576,0.06800079,-0.20256093,0.049937453,0.5616519,-0.12372679,0.062360145,-0.72391975,-0.35575828,-0.9806493,-0.015199627,0.46657944,0.12968174,0.049715232,-0.5308417,-0.06209124,0.041940708,-0.08896939,-0.062172156,-0.56119215,0.32684332,0.14959009,0.29360119,-0.013950015,-0.50941133,-0.13310155,-0.06999878,-0.18385532,-0.2918671,0.6760487,0.037233222,0.7757661,0.056862105,0.06291078,0.16684613,-0.48802,0.16022095,-0.18429239,-0.32675603,-0.651347,0.11531223,389 +428,0.4775764,-0.16867478,-0.3551897,-0.26988202,-0.27182147,-0.017425196,-0.21346082,0.3392262,0.35612956,-0.19455945,-0.11291851,-0.18743582,0.061638348,0.30378655,0.0038680178,-0.91947544,-0.153036,0.17292492,-0.7877356,0.32521176,-0.6704989,0.2401738,0.108116664,0.45170873,0.13588285,0.24066181,0.27159476,-0.19003963,0.032977078,-0.14641215,0.07588174,0.29118183,-0.569708,0.17784925,-0.08373826,-0.3051664,0.03395291,-0.44942114,-0.26097313,-0.7867344,0.10500735,-0.89132214,0.58777416,0.099336185,-0.15087172,-0.16890989,0.1973054,0.39686045,-0.22387195,0.18900283,0.37458324,-0.29514006,-0.08140789,-0.353586,-0.08711193,-0.45619693,-0.5144119,-0.020982686,-0.39313263,-0.4620208,-0.2527533,0.29575783,-0.3099017,-0.036749654,-0.19920263,0.43593094,-0.31903434,-0.03774062,0.49538666,-0.31098297,0.38100782,-0.46857905,-0.044732638,-0.09396633,0.36860496,-0.037499852,-0.36352178,0.3570182,0.26240596,0.43977612,0.19680248,-0.2989612,-0.117956854,-0.17529885,0.107920006,0.476583,-0.362123,-0.22978865,-0.27811417,-0.010553087,0.21305905,0.44220072,-0.04235639,-0.37387824,0.1419622,-0.008404182,-0.13710748,0.5664788,0.5774776,-0.21095014,-0.38186222,0.16716695,0.486604,0.17190656,-0.14758961,0.086488195,0.18369368,-0.6333898,-0.13338102,0.2602566,0.07190214,0.41891608,-0.030894816,0.028505312,0.90922016,-0.24123593,0.0036171165,-0.050289564,-0.084140435,0.095246024,-0.52816284,-0.40064812,0.2812087,-0.61030006,-0.03436227,-0.38361236,0.8902475,0.12165748,-0.69502074,0.41401199,-0.61006546,0.13328008,-0.089188375,0.7054256,0.7156321,0.22284034,0.4040062,0.7992183,-0.2713444,0.2348027,-0.076172166,-0.21445577,0.18347792,-0.24404533,0.119455695,-0.4064568,0.07759955,-0.27162623,0.07544619,0.17714272,0.32674196,-0.6522447,-0.099578306,0.24209516,0.7458531,-0.3914385,-0.00877593,0.4972539,1.1215545,0.9683184,0.16637407,1.2866402,0.56379855,-0.299928,0.25239238,-0.34959045,-0.69081223,0.26681098,0.22954848,-0.08854822,0.14485338,-0.14270823,-0.120070525,0.28533578,-0.4995478,0.02781601,-0.12229497,0.30987898,0.08024935,0.021543162,-0.5043037,-0.19031642,0.0094431145,-0.17554428,0.1924948,0.12337949,-0.29699382,0.1459349,-0.17504899,1.1982747,-0.13165697,0.044996817,0.055146728,0.47065926,0.24491759,-0.27876428,-0.031118581,0.41144547,0.43810034,-0.022005187,-0.60700405,0.4180203,-0.24749987,-0.2413126,-0.18861698,-0.37743568,0.14885923,0.12337403,-0.38992968,-0.24899237,-0.0020264685,-0.2759779,0.41013288,-2.60079,-0.23344533,-0.043032072,0.2925234,-0.2307915,-0.1694946,-0.25576377,-0.4645376,0.3532796,0.15969333,0.38121885,-0.53166187,0.50774133,0.4980081,-0.41230506,-0.19557187,-0.9050821,-0.027538285,-0.16339673,0.37187523,0.050887596,-0.07827972,-0.2150736,0.18236473,0.7664784,0.014064423,0.14054526,0.40982586,0.348887,0.32408485,0.52928305,0.041350543,0.5214328,-0.26039723,-0.3642212,0.39952525,-0.31911713,0.1536943,-0.060587887,0.092060976,0.5327739,-0.39637655,-0.9516198,-0.70718616,-0.57070243,0.85722244,-0.343601,-0.56163436,0.20972559,0.024763469,-0.089064,0.1463602,0.7279065,-0.076160036,0.01788245,-0.79716116,-0.037792083,0.030498879,0.32561323,0.127029,0.04316664,-0.38031095,0.67374086,-0.09562029,0.46196848,0.09685694,0.30397382,-0.3091457,-0.3817655,0.13152666,1.045882,0.08976187,-0.10885771,-0.061022364,-0.33442703,-0.030848145,-0.18704014,0.014082147,0.61920786,0.99409544,-0.04342612,0.10588868,0.41833335,-0.20981479,0.044338066,-0.115481496,-0.29588857,0.038020585,0.012209995,0.6104391,0.6035327,-0.00290787,0.50399554,-0.20491222,0.48193392,-0.1567627,-0.47581407,0.58479124,0.5832923,-0.067965366,-0.12473466,0.5270043,0.4665282,-0.48301458,0.5010224,-0.69493306,-0.13779561,0.7063441,-0.18881579,-0.59908885,0.23730037,-0.26473892,0.14736843,-0.85211563,0.49861595,-0.33724242,-0.5129994,-0.4814468,-0.22045393,-3.2252033,0.2703063,-0.1333497,-0.094016634,-0.19917895,0.02279386,0.42994317,-0.48123312,-0.40863603,0.08265327,0.26371938,0.6601492,-0.048774846,0.041542847,-0.30248263,-0.13842592,-0.07849306,0.1860574,0.20997913,0.26932713,-0.09871677,-0.16891742,0.09220479,-0.019965777,-0.5352348,0.14170758,-0.56355196,-0.5555813,-0.13709147,-0.57502156,-0.3141346,0.6705605,-0.55527985,0.060984906,-0.2504572,0.12156362,-0.1412217,0.28251666,0.1941127,0.40311024,0.16983688,-0.042546775,-0.16450882,-0.34765768,0.38833687,0.0020917526,0.24000342,0.068630725,-0.06081023,0.19740187,0.40108702,0.5821868,-0.021504657,0.96318054,0.43496484,0.020493427,0.10381468,-0.36493948,-0.18166326,-0.51896244,-0.2883784,-0.07501692,-0.46939102,-0.51697326,-0.08429285,-0.2287595,-0.7552825,0.6567318,-0.07960411,0.161564,-0.12228019,0.3538975,0.26268402,-0.14226995,0.0042360616,-0.11957546,-0.15396808,-0.41715384,-0.1513904,-0.60714966,-0.57921827,0.2350526,0.8994718,-0.42845693,0.13580316,-0.109252386,-0.23745812,0.033259057,0.16664746,-0.025541931,0.42747793,0.5527774,-0.046431992,-0.6248541,0.33311573,-0.024056163,-0.22481258,-0.68705237,0.23725142,0.9213111,-0.9370151,0.8368004,0.28113842,0.086158745,-0.10684689,-0.46886167,-0.3100461,0.106358,-0.31517285,0.45717832,-0.075372204,-0.72002614,0.5047137,0.47103474,-0.3774939,-0.68637973,0.26576027,-0.044485655,-0.2608661,0.03745189,0.36106166,0.013940877,0.0261761,-0.15578285,0.3206111,-0.4607562,0.12254696,0.10593377,-0.049555182,0.34080467,-0.10803715,-0.19122621,-0.6387939,0.18202604,-0.72855467,-0.3678229,0.31519005,-0.101534806,0.012106182,0.48719996,0.10085724,0.5349063,-0.058897913,0.19137374,-0.095515795,-0.32710248,0.24074002,0.4473568,0.2861843,-0.34798524,0.46258712,0.12112881,-0.29012236,0.036816232,0.06905256,0.5523357,0.043778066,0.45648694,-0.44710848,-0.17825453,0.4294393,0.7075429,0.009139478,0.49375203,-0.009823097,0.017284978,0.42025375,-0.040683854,-0.035377264,-0.05340794,-0.34725904,-0.030349761,0.023345321,0.25718927,0.44053826,0.33083862,0.34421605,0.07607752,-0.31009308,0.02857596,0.22084257,-0.14479303,-1.0837492,0.45530114,0.18854928,0.78026855,0.41266972,0.108188175,-0.20790689,0.641697,-0.1996424,0.17172922,0.27507433,-0.08445908,-0.38056132,0.68860483,-0.66891587,0.27805954,-0.21864907,-0.06489205,0.05099217,0.13730396,0.46367273,0.8435875,-0.2512689,0.13210632,-0.011406153,-0.05433805,0.18215565,-0.39111927,0.19804955,-0.4599659,-0.49391454,0.6178728,0.40861958,0.2835363,-0.21155752,-0.0067496086,0.17734413,-0.15336196,0.26044053,-0.07339924,-0.18465975,0.32331252,-0.5699449,-0.23041086,0.5947875,-0.13684873,0.040400088,-0.1647148,-0.14378218,0.058855575,-0.22179808,0.11075697,-0.0940017,-0.64935833,-0.027684197,-0.37421897,-0.49375173,0.4297488,-0.3205223,0.085703455,0.18058507,0.15062033,-0.20601818,0.30482584,0.18211551,0.8164838,0.039736263,-0.27295652,-0.31723103,0.16286547,0.1811875,-0.30894572,0.031802602,-0.45007697,0.04459733,-0.709246,0.63452303,-0.19403411,-0.51218015,0.26744688,-0.12401665,0.014861451,0.62770844,-0.23263986,-0.1291507,0.19197942,-0.32244787,-0.37658533,0.11608847,-0.26949486,0.13273813,0.26969537,-0.11376179,-0.11985821,-0.3924222,-0.269154,0.57238823,0.06691874,0.49456236,0.3862467,0.17580934,-0.07333385,0.11245983,0.17453422,0.4783407,0.20638075,0.016851231,-0.28922158,-0.28121337,-0.24524865,0.26758265,-0.12993333,0.30804926,-0.052213676,-0.46551323,0.93558174,0.009973628,1.1264355,0.015746806,-0.33596402,0.051125776,0.5279838,-0.12983586,0.05086846,-0.6062929,0.7420221,0.5945295,-0.09361894,0.04868881,-0.32295647,-0.26110896,0.38471857,-0.3329282,-0.078262605,-0.15490878,-0.75339514,-0.52365017,0.2165654,0.23396388,0.13488464,-0.03964767,0.07035762,-0.045802508,0.005106447,0.3296656,-0.6186567,0.110017,0.02923583,0.44320637,-0.06111055,0.248329,-0.29797664,0.40618357,-0.6954389,0.24027647,-0.43201184,-0.025046801,-0.10081673,-0.36265358,0.03508853,0.042689554,0.27124208,-0.18283136,-0.2990808,-0.001835508,0.45540243,0.09000807,0.14693022,0.74164516,-0.24308804,0.05442259,0.23889768,0.6913194,1.5212862,-0.33633,-0.05428212,0.21936782,-0.38609287,-0.69031554,0.37445912,-0.3325315,-0.24142231,-0.14464422,-0.5593506,-0.38834208,0.28487843,0.16635136,-0.075364806,-0.06916887,-0.46952528,-0.080850616,0.33835357,-0.28024095,-0.29398936,-0.24192752,0.45025888,0.6737823,-0.23598845,-0.2997723,0.01737827,0.3198389,-0.44111797,-0.44544458,-0.023193631,-0.39221355,0.3883353,0.00936631,-0.32896852,-0.00092926197,0.017361926,-0.5432752,0.06217115,0.16516688,-0.37595803,0.049614467,-0.029464845,-0.047919806,0.8551195,-0.10033615,-0.2128568,-0.7929517,-0.4724164,-0.9359379,-0.57865685,0.26775137,0.23812358,0.077893674,-0.30062222,0.037366908,-0.12622516,-0.1557494,0.06739856,-0.56664747,0.28613183,0.06476032,0.6252656,-0.38251114,-1.0366086,0.12006731,0.17055316,-0.27683657,-0.81726724,0.58632714,-0.045236606,0.74623626,-0.04687819,-0.0542193,0.045644186,-0.31573296,0.22786865,-0.47004417,-0.20541202,-0.98807734,0.117833816,395 +429,0.3161616,0.01815457,-0.47410515,-0.027874198,-0.3575265,0.07835531,0.0070016044,0.25642976,0.16909404,-0.13353923,0.059417207,-0.30689654,0.0021190303,0.3878785,-0.08550087,-0.7547421,-0.03974591,0.039063327,-0.51286405,0.27800423,-0.40354332,0.42843923,0.07091472,0.4617227,-0.16537833,0.35437965,0.2619727,-0.1438061,-0.05381068,-0.015033909,-0.24982539,0.19594257,-0.6559028,0.09282819,0.031083176,-0.33116537,0.21050762,-0.23349926,-0.37043986,-0.6166934,0.26906008,-0.6581888,0.49033785,0.051084448,-0.1825864,0.08793599,0.09245806,0.2581662,-0.46841198,0.16064155,0.19659789,-0.39461538,0.24140178,-0.27814975,-0.42038321,-0.51010233,-0.5344297,-0.053744502,-0.5437383,-0.36623117,-0.29199737,0.17719178,-0.29118133,-0.13931167,-0.13192429,0.28140768,-0.5089601,0.14549954,0.32074752,-0.27024215,0.30751085,-0.23431884,-0.13379237,-0.10971558,0.14135613,-0.14057565,-0.13991918,0.406109,0.1913993,0.36830744,0.042068683,-0.26860854,-0.31157297,-0.16579035,0.08245771,0.54526466,-0.2307106,-0.18512993,-0.0484682,-0.019842079,-0.228374,0.31966886,-0.0062177842,-0.2918541,-0.041349918,-0.079582036,-0.00082081556,0.1413349,0.4423584,-0.34068346,-0.47896147,0.21287797,0.32219872,0.0695658,-0.18528436,0.11062306,0.010806603,-0.4912198,-0.3030167,0.11393233,-0.0379443,0.4772089,-0.02424759,0.26434842,0.9029418,-0.24304943,-0.046998907,-0.38731033,-0.074424945,0.030307308,-0.11531067,0.04107212,0.15673964,-0.43509182,0.07837435,-0.044885345,0.7850308,0.24988009,-0.7150083,0.3688098,-0.5653798,0.07763563,-0.11229139,0.56950945,0.48318785,0.34748298,0.25733608,0.83951026,-0.6731852,0.17700246,0.079587355,-0.5755213,0.13458358,-0.043938752,-0.14660658,-0.5078303,-0.15290941,0.097366095,0.0049080127,0.07906977,0.064880356,-0.49277496,0.10469629,0.04748718,0.960831,-0.4483092,-0.13927616,0.5544345,0.94213694,0.8431634,-0.10064324,1.288148,0.31593943,-0.25767943,0.167451,-0.38108453,-0.4867072,0.12147774,0.26698917,-0.03216586,0.36306968,0.173852,0.11093502,0.21709983,-0.19759832,0.11062654,-0.06404284,0.1108669,-0.025408119,-0.082360186,-0.42296916,-0.23425247,-0.045602717,-0.015239969,-0.05935049,0.26921532,-0.00068198994,0.4500603,-0.032649916,1.7665937,0.18939848,0.28130436,0.05555951,0.54908437,0.301615,0.17198469,-0.18240035,0.36529997,0.2413796,0.34384242,-0.39947578,0.009511533,-0.26343557,-0.55590314,-0.15677588,-0.41457152,0.09918225,-0.19854534,-0.5351391,-0.06293715,0.16459705,-0.23413096,0.5166355,-2.6196969,-0.013104318,0.0019470368,0.15953149,-0.2355173,-0.22860578,-0.1110994,-0.30944157,0.29810348,0.4755918,0.38527945,-0.6214291,0.3293114,0.42820245,-0.2415436,-0.21413364,-0.48050812,-0.08376082,-0.030622393,0.32749918,-0.104821905,0.09145812,-0.17118691,0.27183673,0.52047,-0.15632156,-0.079571165,0.052924458,0.41041845,0.07703604,0.44433594,0.088678256,0.49521023,-0.24698296,-0.17476514,0.3023813,-0.27526817,0.33094338,0.05265912,0.16109125,0.24272665,-0.36544403,-0.8967398,-0.49248666,-0.4198874,1.0318792,-0.3187003,-0.2288376,0.40673643,-0.10629136,-0.11358387,-0.13856612,0.4768888,-0.09595193,0.23601532,-0.52613485,0.15302439,-0.12273652,0.2836841,0.06477557,0.15504357,-0.23204432,0.5517031,-0.15421773,0.29829055,0.4398252,0.11514536,-0.1161098,-0.5268834,0.16664289,0.744258,0.22742681,0.17282407,-0.047363408,-0.10726619,-0.015721457,-0.14829023,0.068091616,0.41885462,0.81923705,-0.016385127,0.07034512,0.27036956,-0.055919044,-0.049791303,-0.03206087,-0.27891526,0.19220184,0.028111594,0.5341658,0.7091018,-0.3465927,0.5174074,-0.07637827,0.46144032,-0.06677497,-0.45979324,0.39901495,0.9214153,-0.074725375,-0.052669667,0.5255261,0.38911787,-0.5404802,0.3527403,-0.62863296,-0.14626996,0.7894303,-0.16534135,-0.5124985,0.13285504,-0.17431638,-0.05255178,-0.9273147,0.35398167,0.084072724,-0.49553004,-0.3606561,-0.14885783,-4.5367208,0.12399893,-0.43411967,-0.16223967,0.022252126,0.009424044,0.2291391,-0.64556545,-0.36261374,0.029108373,0.08908419,0.3963223,-0.078113236,0.17095849,-0.33018237,-0.1365299,-0.16826025,0.30633423,0.22066787,0.18537508,-0.11448007,-0.5145688,0.016969323,-0.35921955,-0.6778521,0.065222524,-0.47282892,-0.54982084,-0.08942852,-0.58301336,-0.3587613,0.8495249,-0.45648235,-0.096368365,-0.26922202,-0.09724251,-0.21352999,0.37947372,0.36632538,0.19329023,0.0345358,0.09024603,-0.28241354,-0.30518508,0.17216182,0.1489907,0.42286757,0.36676255,-0.053791165,0.08449026,0.49247876,0.573348,-0.08951236,0.5758621,0.20493309,-0.19302668,0.37367997,-0.49711987,-0.20243393,-0.833745,-0.5853214,-0.14448915,-0.33738428,-0.62633884,-0.19402388,-0.33815208,-0.6921304,0.57015854,-0.11038674,0.21771117,-0.12578759,0.19966781,0.331052,-0.31733203,-0.060766958,-0.13576756,-0.20886707,-0.5814985,-0.3906176,-0.5336304,-0.6918348,0.13597038,1.104488,-0.23653622,-0.13509764,-0.0580662,-0.18554242,-0.014458205,0.011650673,0.21860813,0.37009645,0.16614683,-0.1289719,-0.7109966,0.70390046,-0.1238145,-0.13750409,-0.6965822,-0.04014527,0.6152979,-0.756441,0.6235363,0.26327384,0.12903157,0.30077097,-0.5145921,-0.38639444,0.012963514,-0.057512097,0.41371703,0.015900834,-0.56425375,0.31765014,0.1992741,-0.2417113,-0.547853,0.44648266,-0.15249643,-0.47448975,0.2590421,0.27159163,-0.08318015,-0.091153584,-0.047444563,0.30596682,-0.50900346,0.18473288,0.39533213,0.0776552,0.32890075,0.012605404,-0.22519389,-0.6647043,0.15718302,-0.30741122,-0.32185125,0.16875318,0.12083296,-0.111018695,0.21066427,-0.028784439,0.41436407,-0.23037355,0.16215746,0.012105652,-0.27724174,0.33989748,0.45529523,0.360967,-0.55529165,0.58817893,-0.06236153,0.022954047,-0.020091763,0.14226924,0.6174061,0.16782871,0.25161317,-0.07401418,-0.17728855,0.2024268,0.7646697,0.24135251,0.52369225,0.09609477,-0.082601294,0.4301787,0.26582,0.021210935,0.13104363,-0.17613056,0.074843995,0.040612858,0.18398483,0.40681642,0.16173506,0.37170568,-0.078097045,-0.19311284,0.26957038,0.34644157,0.033878367,-0.7513197,0.33346102,0.2675719,0.62007713,0.44638512,0.13077168,0.03191061,0.54926157,-0.32833457,0.016566852,0.38710862,-0.032479446,-0.5323002,0.66634095,-0.5513495,0.5995328,-0.07551924,-0.13768221,0.13165103,0.11970614,0.30886474,0.9658235,-0.04314627,-0.066490814,0.028943846,-0.20635094,-0.05181716,-0.4417328,0.11879842,-0.49565983,-0.3460973,0.49117404,0.40276226,0.119104676,-0.24420659,-0.05227852,0.026919544,-0.079714194,0.23764226,-0.13810112,0.056776028,0.014339499,-0.54081684,-0.39629364,0.6724304,-0.24816059,0.009940935,-0.06381052,-0.22256646,0.3111539,-0.14397685,-0.14341524,0.04191347,-0.64429617,0.25198787,-0.28983465,-0.5359182,0.51072127,-0.43825045,0.42188543,0.14173386,0.045387227,-0.3760304,0.3905293,0.07311485,0.8277125,0.08231759,-0.21862428,-0.274023,0.19197956,0.25738767,-0.28425997,-0.06463773,-0.3211755,-0.0025290507,-0.45756182,0.3417008,-0.11769436,-0.28073522,-0.17751034,-0.1667758,-0.09902697,0.35560355,-0.07087476,-0.18873134,-0.10513612,-0.07052116,-0.21546938,0.057558775,-0.3746911,0.20707856,-0.0105107855,-0.2216275,0.06683159,-0.040202253,-0.00543929,0.36557838,-0.0142564345,0.29630965,0.12301799,-0.13261221,-0.34190777,-0.051365174,-0.1062822,0.2814059,-0.005068924,0.1654892,-0.115840316,-0.29955214,-0.14446817,0.13915204,-0.26514784,0.17425261,0.21137142,-0.46331507,0.8804439,0.16366899,1.2094144,0.09395377,-0.36856103,0.14969692,0.41590554,0.1000942,0.15439878,-0.42355937,1.0706557,0.70970535,-0.120710574,-0.43282256,-0.12484108,-0.18084148,0.32435063,-0.3094437,-0.2687634,-0.04041016,-0.6429148,-0.11476149,0.23537299,0.22828378,0.24948713,0.057121865,-0.24297084,0.074733205,0.2075647,0.39705816,-0.4045051,-0.2044321,0.36836082,0.20849358,0.049126502,0.19930093,-0.23135035,0.5901941,-0.42418078,0.23629197,-0.5727537,0.06309839,-0.32464394,-0.32183775,0.20857045,-0.062714465,0.35785952,-0.12530336,-0.17045249,-0.2973378,0.53082365,0.32069135,0.24087277,0.7868398,-0.294941,0.09223694,0.007200935,0.23833017,1.1873591,-0.28981856,-0.22521904,0.42286724,-0.33204502,-0.49645618,0.1328285,-0.32548475,-0.099684834,-0.31957155,-0.346675,-0.31664708,0.20576009,0.14904974,-0.12360823,0.0019982415,-0.38779435,-0.05646968,0.44360113,-0.31555972,-0.456497,-0.40133026,0.48597044,0.8290532,-0.35976425,-0.27841118,0.21936992,0.080954365,-0.31617504,-0.4878437,0.06761273,-0.24677432,0.3363778,0.091572404,-0.42364433,0.12759556,0.22859754,-0.3404959,0.15648499,0.5309215,-0.3793485,0.012315358,-0.10044331,-0.14936556,1.0052674,-0.08900911,-0.16415074,-0.70701253,-0.47715268,-1.0507594,-0.4040238,0.61126614,0.20193566,-0.008434245,-0.40598693,-0.10448701,0.008443577,-0.09064867,-0.032783058,-0.51260656,0.27324095,0.05455423,0.44996566,-0.062271647,-0.9400672,0.043273382,0.18805565,-0.21619448,-0.6711988,0.49141556,-0.40860862,0.6635541,0.03214823,-0.026480095,0.43794253,-0.39274105,0.22001444,-0.35000387,-0.30273277,-0.62704086,0.10796035,397 +430,0.40571758,-0.22509621,-0.6935705,-0.102544785,-0.18542893,0.011636496,-0.079123594,0.46763262,0.15378746,-0.53779095,-0.17877199,-0.21668836,-0.217563,0.5634212,-0.15873,-0.5601633,-0.06769219,0.18107572,-0.5327047,0.4465301,-0.19770725,0.33570847,0.2072761,0.25652778,0.12778725,0.100710325,0.029010568,-0.20212092,-0.09720759,-0.23572104,-0.18359457,0.011220778,-0.74240595,0.29885238,-0.18681209,-0.26594916,0.020267384,-0.5291286,-0.3404692,-0.7683148,0.16962683,-0.71234196,0.6109218,-0.08179278,-0.17011344,-0.02611867,-0.043520357,0.44999668,-0.18099172,0.06858893,0.1862621,-0.16680503,-0.2401247,-0.03274923,-0.12735082,-0.39675447,-0.5318018,0.19599101,-0.41328254,-0.098280355,-0.073180676,0.13297139,-0.2587628,0.15100057,-0.039662454,0.48999944,-0.3634723,-0.07493279,0.33118466,-0.2839693,0.20047195,-0.628837,-0.019148916,-0.2215664,0.2460057,-0.3084995,-0.16854696,0.47377682,0.13796957,0.519025,0.11728512,-0.21538389,-0.087518826,-0.017578874,-0.024278065,0.5463618,-0.090983175,-0.5130765,-0.039285414,0.15488997,0.20933783,-0.016435953,0.028718233,-0.4454578,-0.11116997,-0.046945546,-0.043280583,0.2422851,0.56328267,-0.14789991,-0.08010403,0.26463184,0.49238846,0.2429612,0.115600206,0.05386715,0.021228923,-0.5982842,-0.21481575,-0.03113403,-0.12087073,0.4730009,0.0021680498,0.12105727,0.7155131,-0.2478365,-0.0588825,0.07107444,-0.09596219,0.079086915,-0.06738297,-0.53640646,0.40132317,-0.32827377,0.23484576,-0.13516651,0.80007297,0.29366532,-0.80968654,0.28218535,-0.5130574,0.091310635,-0.02236964,0.57923114,0.6049325,0.6746831,0.18911876,0.7067232,-0.49115017,0.29565987,-0.06805783,-0.4137539,-0.057160676,-0.23478203,-0.2119009,-0.38757318,-0.08793516,-0.21962436,-0.26593533,-0.022790253,0.11441855,-0.71098363,0.06975693,-0.18321334,0.9758547,-0.33363777,-0.037238505,0.6624997,0.78731376,1.0669335,0.053203084,1.0685612,0.28984287,-0.29829624,0.17132793,-0.042021804,-0.739349,0.29490614,0.39451483,-0.43153572,0.37727356,0.094320126,0.018311938,0.4110206,-0.56876594,0.06401528,-0.1705424,0.24388142,-0.060505062,-0.19473039,-0.50778455,-0.17660138,-0.09640469,-0.0354414,-0.037048254,0.21415249,-0.15634987,0.36624697,0.04688647,1.6360699,-0.12240951,0.10787887,0.10330333,0.41631594,0.049352713,-0.118090905,-0.27118573,0.11346943,0.41155997,0.055222113,-0.47068796,0.0064401454,-0.18011987,-0.34479785,-0.23305634,-0.16091384,0.055179596,-0.098128855,-0.19760248,-0.41485593,0.014928277,-0.23926438,0.4888033,-2.2504976,-0.012263362,-0.060135867,0.33897918,-0.44888803,-0.30358917,0.022072783,-0.43317065,0.2920074,0.27116886,0.3975275,-0.58688074,0.2637581,0.34371918,-0.40372705,-0.35520336,-0.5144168,-0.05441503,0.07922252,0.20064794,0.027122272,-0.08031983,0.003916681,-0.057315707,0.4183991,-0.19720615,-0.09358157,0.38491288,0.33569553,0.32221675,0.347117,-0.055352055,0.5667074,-0.57297546,-0.053856395,0.38939553,-0.2788405,0.13664035,-0.06084386,0.09116547,0.1903452,-0.6289273,-0.71094376,-0.7257889,-0.37687328,1.3065983,-0.2446278,-0.386549,0.17532992,-0.058902767,-0.02817492,-0.07378469,0.42782626,-0.10420438,0.13267523,-0.74440485,-0.20043206,-0.04908544,0.44312605,0.051815342,0.04746042,-0.5257563,0.39723855,-0.17838891,0.4025697,0.53976965,0.19186997,-0.12763633,-0.71148527,0.09079836,1.2587289,0.38710886,0.16517337,-0.15154697,-0.07553917,-0.3210755,-0.13413247,0.047461953,0.42220137,0.99501216,0.016385345,-0.07327194,0.1960983,0.08434039,0.10690357,-0.038616538,-0.44580057,-0.12543777,-0.03132943,0.6321574,0.43049797,-0.08259996,0.5077219,-0.150601,0.43299803,-0.10721593,-0.3207048,0.5192996,0.9445673,-0.21670885,-0.23771305,0.4142986,0.3774489,-0.13661353,0.4141536,-0.6609179,-0.37406904,0.57313,-0.18475853,-0.60377556,0.20035489,-0.19485308,0.30116898,-1.0596651,0.4401634,-0.2649159,-0.5656071,-0.5663374,-0.20045482,-2.6035488,0.08609086,-0.229404,-0.10488714,-0.012616639,-0.030497223,0.25787634,-0.3883495,-0.64567864,0.10897423,0.07251048,0.6048241,-0.016713295,0.18199624,-0.14293478,-0.28093648,-0.33729073,0.19626996,0.3196796,0.18702914,0.12041635,-0.43033966,-0.21280535,-0.1971203,-0.42463818,0.15511057,-0.71154565,-0.45605606,-0.33046344,-0.68891424,-0.1582148,0.740251,-0.46169308,0.022684751,0.030966822,0.053065,-0.048288256,0.10282015,0.07854797,0.15560757,0.028193329,-0.1392503,0.015285543,-0.27852887,0.17701514,0.2923412,0.3640353,0.120401934,-0.30089402,0.23907746,0.5763025,0.9774603,-0.030643817,0.70821875,0.581186,-0.09843048,0.30652985,-0.35466743,-0.44869956,-0.57015336,-0.38243622,0.1664172,-0.31393978,-0.47217226,0.14066216,-0.3462037,-0.8408421,0.5921845,-0.0804973,-0.09713663,0.091838054,0.105026804,0.4338558,-0.2980392,-0.09304881,-0.07814532,-0.019896852,-0.47829387,-0.3103285,-0.52217686,-0.5660877,-0.1078632,1.3799423,-0.030135078,0.024683995,0.07771454,-0.26581344,0.2514152,-0.23476125,-0.13518511,0.29205042,0.39208618,-0.146662,-0.83097994,0.4236882,-0.17251322,-0.2286862,-0.5598914,0.3365439,0.74546874,-0.8503761,0.21855997,0.27193215,-0.00029526014,-0.050640136,-0.42018837,-0.093149506,-0.033347886,-0.22157185,0.2750443,0.051516704,-0.50790304,0.34098405,0.3999135,-0.39938816,-0.8355754,0.21472628,0.075272344,-0.16752194,0.2533993,0.31513166,-0.11739182,-0.09108962,-0.28865275,0.08607332,-0.35454768,0.22614299,0.33082458,-0.093884386,0.22392991,-0.33274606,-0.13144387,-0.7880224,0.29206187,-0.5282045,-0.29444912,0.38801712,0.17295514,0.09647452,0.017613355,0.21640618,0.4020475,-0.20502011,-0.0020900518,-0.22146475,-0.34920523,0.42261416,0.5252019,0.3892882,-0.4627862,0.55605775,-0.049378034,0.058224943,-0.06835191,-0.059594482,0.5413126,0.078860104,0.087015964,0.06637315,-0.20976312,0.15413775,0.7753042,0.17343485,0.46949115,0.071787074,-0.1576537,0.17894724,0.2613192,0.06699999,0.25059882,-0.5992764,0.038621087,-0.027606914,0.045427773,0.5268366,0.28153363,0.38469782,-0.16080177,-0.27291033,-0.011137475,0.09560507,0.0245383,-1.115106,0.54132426,0.074723616,0.6555819,0.34154898,0.21775971,0.11754868,0.61408323,-0.06991075,0.18365584,0.28648114,-0.0751095,-0.54739463,0.40754598,-0.56205994,0.56108284,0.10329763,0.018867608,0.17219791,-0.057953577,0.5445805,0.9534575,-0.052381102,-0.002988694,-0.17231242,-0.14831647,0.030615646,-0.5721355,0.05428913,-0.48029855,-0.43494874,0.61612254,0.33338028,0.23078568,-0.080585554,0.025249656,0.14584284,-0.13802603,0.34700578,-0.124066964,0.045834523,0.034381025,-0.5846513,-0.16691075,0.56776035,0.057249036,0.013525069,0.06728067,-0.18760633,0.30101672,-0.21342273,0.011368181,-0.17802045,-0.72843593,0.024419146,-0.41604328,-0.23508532,0.20367776,-0.016956074,0.3403764,0.077464,0.11779999,-0.4355785,0.5250953,0.13573568,0.9569806,0.057239287,-0.3422177,-0.38156897,0.2906378,0.2775497,-0.27908108,0.071522966,-0.22669958,-0.12053812,-0.58549064,0.32035774,-0.08359831,-0.30300516,0.23782131,-0.10120129,-0.09340962,0.52936864,-0.1481748,0.13073339,0.22502725,-0.113334134,-0.13197581,-0.21442239,-0.23247457,0.15686817,0.2981004,0.06654299,-0.07260815,-0.11165738,-0.18927094,0.4520864,0.0056220717,0.34839553,0.31983802,0.113363825,-0.32048315,-0.1544193,-0.0676413,0.45941186,0.18405616,-0.087509654,-0.2755415,-0.2925349,-0.26308197,0.086262144,-0.24268754,0.35136157,0.122538455,-0.42292818,0.74993867,0.15498044,1.3455343,-0.10127328,-0.29205003,0.09379776,0.46115395,0.08554795,0.051659014,-0.5984607,1.071344,0.45237827,-0.10701636,-0.04264868,-0.24336232,-0.23366082,0.17887093,-0.29836673,-0.24018732,-0.12379936,-0.5202569,-0.34753904,0.21080358,0.3005055,-0.059447985,-0.12107396,0.020577295,0.19307955,-0.017623493,0.16492932,-0.38325113,0.13481952,0.3005752,0.19822943,0.05091945,0.061143797,-0.5026709,0.39504856,-0.55415756,0.07423418,-0.2519366,-0.0044783824,-0.057496227,-0.2918797,0.24375118,0.104340024,0.4010245,-0.5339375,-0.3142598,-0.20827827,0.4831212,0.06798038,0.19286244,0.7677141,-0.30346802,-0.049399015,-0.0076237237,0.5497243,0.83508635,-0.33369747,0.10121442,0.41294542,-0.2659022,-0.3240094,0.3987077,-0.20014276,-0.03608535,-0.16466679,-0.17207691,-0.4820202,0.20110822,0.21999522,-0.26322937,0.0685746,-0.8085597,-0.16525146,0.31898147,-0.33423448,-0.3387113,-0.5307153,0.24206792,0.59777486,-0.32412556,-0.48792505,0.12624148,0.1292223,-0.13559775,-0.4372292,-0.1445553,-0.2065465,0.29902405,0.19799452,-0.3885452,-0.24595825,0.13027672,-0.41364044,0.069472305,0.011547004,-0.4092149,-0.14851442,-0.10388331,-0.042010646,0.7343133,-0.018597607,0.09294964,-0.61810225,-0.35394284,-1.0680618,-0.35432154,0.56465316,0.3271387,0.03996402,-0.70063674,-0.12456514,-0.14778371,-0.08621676,-0.0014861013,-0.24918441,0.26740894,0.1291233,0.5369725,-0.2197925,-0.8048348,0.41696146,0.12632531,-0.25360724,-0.5384186,0.36061922,0.15242195,0.913134,-0.023186317,0.048701517,0.42198506,-0.6640344,-0.017513556,-0.21031378,-0.08717605,-0.5309937,0.14434126,398 +431,0.5471104,-0.102342494,-0.5094384,0.016130729,-0.5048779,-0.039230637,-0.21061502,0.23475564,0.4734177,-0.1444976,-0.26843143,0.08028341,-0.053414676,0.08875232,0.05849337,-0.5760516,-0.09231607,0.32695732,-0.9860198,0.68741995,-0.44029364,0.30505365,0.033325978,0.46014315,0.01491269,0.3232201,0.003851699,0.07034318,-0.19986425,-0.011806245,0.11418476,0.20149381,-0.69465303,0.17230128,-0.2983327,-0.23810515,-0.24458666,-0.48620468,-0.22193787,-0.6861726,0.11951669,-0.7512831,0.57181555,-0.06266485,-0.35968882,-0.19204605,0.213051,0.10746444,-0.18646193,-0.035203867,0.25202852,-0.035469446,-0.37507337,-0.32677817,-0.07005272,-0.22649762,-0.54254645,0.044448137,-0.39546224,-0.029643271,-0.044414412,0.22647555,-0.18057871,-0.06598115,-0.28300235,0.5987815,-0.2755776,0.0930331,0.39858755,-0.067125164,0.06630587,-0.6284567,0.092762046,-0.012296866,0.4313602,0.10730536,-0.4719092,0.26549482,0.28976223,0.5596028,0.2627209,-0.3360422,-0.24587466,0.11042906,0.18200555,0.36362362,-0.26571852,-0.114081845,-0.15758778,0.013527312,0.27418295,0.24770644,0.1818472,-0.3418631,0.08786968,-0.43972534,0.14630838,0.3585618,0.41361183,-0.23848507,-0.32367104,0.18385589,0.6807931,0.37066168,-0.15631975,-0.027279105,-0.0117664775,-0.5666984,-0.13889854,0.030372305,-0.055059593,0.32947683,-0.16505252,0.17656955,0.556917,0.028409908,0.04928143,0.33613318,0.10837877,0.1886932,-0.5481575,-0.17996743,0.25283334,-0.5233453,-0.083166495,-0.26644513,0.39591795,0.09320237,-0.54646903,0.40888852,-0.68507385,0.2148895,0.13863297,0.5233658,0.9863414,0.6811657,0.17412826,0.715823,-0.20061418,0.19708546,-0.072913185,-0.13227941,0.25720066,-0.22774342,0.25344136,-0.5947502,0.077829614,-0.2911319,-0.1340348,0.09433324,0.5662519,-0.67200387,-0.31671825,0.033605866,0.719338,-0.2226769,-0.16693719,0.8753323,1.0970637,1.05893,0.15925315,1.3742207,0.37287885,-0.2983868,0.034582574,-0.29791382,-0.7284071,0.14380567,0.30925828,-0.40640688,0.47529772,-0.19726923,-0.09112542,0.47126558,-0.49678588,-0.046112914,-0.0129099125,0.47625503,0.0636626,-0.11293733,-0.45486137,-0.29985145,-0.035076495,0.038814545,0.21739043,0.37617776,-0.2799354,0.2130408,-0.05407295,1.0884627,-0.2079577,0.11292275,0.14806227,0.13438746,0.31721213,-0.29641375,-0.21577524,0.33762607,0.20742324,-0.09450601,-0.4169496,0.24037986,-0.37528515,-0.3437541,-0.11980975,-0.19533217,-0.16828267,-0.04600999,-0.45037287,-0.40530705,-0.10660391,-0.39708552,0.3693492,-2.4147885,-0.27191764,-0.06813977,0.4889833,-0.23531768,-0.3492454,-0.273854,-0.41203764,0.16575532,0.05832698,0.40704945,-0.53675216,0.45855826,0.52587324,-0.8136155,-0.20280859,-0.7352143,0.03758359,0.17464487,0.24876098,-0.0283932,-0.14737211,-0.044083495,0.049444515,0.508922,-0.078932725,0.13574672,0.62374294,0.32736614,-0.05415374,0.18850546,-0.095757425,0.63987285,-0.42888308,-0.34133577,0.4303626,-0.40071133,0.352304,-0.09893345,0.04162624,0.755435,-0.4523131,-0.83652604,-0.50711215,-0.16378649,0.9525797,-0.16947412,-0.30964956,0.039987717,-0.6478281,-0.13389893,0.23509641,0.79772854,-0.037618034,-0.014575094,-0.7729978,0.007199977,0.021724632,0.16015632,-0.013627721,-0.045620847,-0.43420824,0.76638776,-0.046506736,0.52396613,0.3036849,0.25887266,-0.2426871,-0.4336435,0.19417588,0.76604426,0.453819,0.0658204,-0.19364385,-0.11990649,-0.16400246,-0.036937945,0.0019122107,0.7423585,0.58726776,-0.24722163,0.17942545,0.23383021,0.020681515,0.10070085,-0.22240391,-0.21471505,-0.21298364,0.11692853,0.44811177,0.8722922,-0.11087891,0.32335708,-0.21882798,0.23004495,-0.18334782,-0.7050312,0.6287537,0.785308,-0.36477706,-0.037537318,0.63965607,0.30938032,-0.4499926,0.51444036,-0.5355936,-0.37586954,0.39578167,-0.17049514,-0.32519552,0.20430814,-0.3515363,0.29351786,-0.63583523,0.5087346,-0.47511503,-0.5130847,-0.5117984,0.018489957,-1.8063935,0.34410697,-0.16160667,0.076387085,-0.27575245,-0.21867761,0.1955783,-0.5430064,-0.77299935,0.14949845,0.18045858,0.6114222,-0.25166735,0.09015368,-0.03918266,-0.57586604,-0.10455398,0.24176393,0.28855795,0.37204367,-0.28346878,-0.29596773,-0.15381943,0.07977159,-0.34670225,0.09976474,-0.8175683,-0.5430973,-0.10771928,-0.6380182,0.027288776,0.565735,-0.44766143,0.033648483,-0.3606863,0.13129722,-0.04540888,0.36751,0.027151743,0.37362668,0.23963077,-0.09116233,-0.05578783,-0.12575151,0.33618638,0.045083165,0.26078948,0.37603572,-0.063580856,0.35216638,0.38623363,0.98912185,-0.18879817,1.0789243,0.3602542,-0.15188758,0.3024292,-0.33886668,-0.2781312,-0.5718292,-0.28747267,0.019958155,-0.47505683,-0.39313933,0.17008086,-0.4107203,-0.8422719,0.40466008,-0.06467708,0.20661101,0.10353891,0.2186233,0.5049241,-0.3770719,0.032898746,-0.18752027,-0.19589867,-0.49826095,-0.28942934,-0.53634936,-0.5912963,0.24180542,1.2218674,-0.3494901,0.3196583,0.13603322,-0.30559346,0.052145246,0.09227705,-0.105713435,0.09002964,0.5271002,0.12614669,-0.4347317,0.112653,0.019619746,-0.30326796,-0.36935148,0.49737436,0.7405891,-0.79917425,0.7812977,0.3158991,-0.033575356,-0.12137882,-0.6022099,-0.18742903,0.14682068,-0.20376039,0.45305315,0.4241402,-0.74999344,0.3628456,0.33562663,-0.36321998,-0.8941251,0.32558408,-0.035906058,-0.17803624,-0.22980908,0.526017,-0.012344905,-0.043510947,-0.17225185,0.33575407,-0.39376995,0.25269642,0.056912232,-0.1411951,0.0040178215,-0.20916112,-0.39236972,-0.81720304,0.0613328,-0.60365933,-0.4401218,0.44062132,0.02819267,-0.06492387,0.18494828,0.43984097,0.37607923,-0.32722667,0.08652729,-0.17338912,-0.39721438,0.17177339,0.44288573,0.4545381,-0.3588087,0.43971178,0.08656736,-0.083066046,0.124970235,0.113458075,0.33963466,-0.106604934,0.4317727,-0.07218913,-0.03915401,0.11007363,0.76983494,-0.034360353,0.28732395,0.045715757,-0.10233327,0.27479437,-0.057340737,0.2608827,-0.3006869,-0.3851802,0.09362275,-0.03323579,0.17927457,0.42481932,0.32890248,0.18186699,0.012985195,-0.2446707,-0.04707695,0.33710048,0.11792948,-1.4081715,0.4581771,0.17274663,0.9539235,0.59380925,0.15803686,-0.31517002,0.61806935,-0.15047288,0.12267748,0.5207463,-0.20586602,-0.37814403,0.5225779,-0.67774487,0.42493483,-0.18823764,0.014994609,0.14262539,-0.014249444,0.27261925,0.82456017,-0.14741442,-0.009808438,-0.174945,-0.12398779,-0.033172403,-0.22716321,0.09973145,-0.48163837,-0.502286,0.9879891,0.3681464,0.48560214,-0.3458167,0.033928454,0.073087975,-0.36989954,0.3994035,-0.069928996,0.09991383,0.04922619,-0.55291593,-0.09933109,0.43031642,-0.09997799,0.010296891,0.022918237,-0.16453834,0.000681817,-0.32999977,-0.045118418,-0.12653364,-0.83755547,-0.020142687,-0.45895338,-0.39502588,0.337454,-0.16907641,-0.19401659,0.2635096,0.12817265,-0.28897983,0.56859803,-0.051612716,0.7247977,0.1426132,-0.10582357,-0.04872137,0.5063122,0.1437706,-0.3164289,0.14407781,-0.19609664,0.36484236,-0.5515148,0.7059582,0.074293986,-0.47738218,0.07886108,-0.13163117,0.02131416,0.4473841,-0.21526875,-0.29108956,0.0005649499,-0.14459752,-0.42984197,-0.010250045,-0.15923794,0.15957835,0.34404776,-0.15554562,-0.22068821,-0.28101617,-0.20155656,0.5755078,0.08171618,0.33104032,0.4114706,0.03189262,-0.35142913,0.21021561,0.5025967,0.5544709,0.18451378,-0.0665852,-0.6281694,-0.24928565,-0.4248433,0.42788187,-0.10072928,0.23243164,-0.06722398,-0.16886835,0.990775,0.1517068,1.1039948,-0.050995376,-0.29530266,0.015917907,0.4688902,-0.18268749,-0.20373945,-0.52336293,0.9860501,0.5153324,-0.15083776,0.028964734,-0.371185,-0.2292877,0.2970485,-0.3351333,0.038073856,-0.055251133,-0.7181021,-0.3362632,0.06290009,0.10745569,-0.0007126161,-0.21831869,0.056263737,0.12831672,-0.06625111,0.17127001,-0.70622575,-0.13432573,0.16043079,0.41200203,-0.084573284,0.41137198,-0.2667213,0.2557935,-0.91875935,0.14382792,-0.30542946,0.007946178,-0.1842442,-0.59797174,0.2103575,0.20144667,0.3437039,-0.38506943,-0.30326128,-0.21539102,0.3038362,-0.021061037,0.12171741,0.6923857,-0.27486092,-0.097257175,0.29373288,0.60527515,1.097955,-0.21281007,-0.028898831,0.11500982,-0.40558583,-0.7295055,0.40266103,-0.3499152,-0.058669765,-0.17438526,-0.32520035,-0.48648357,0.1523195,0.21292962,0.204513,-0.08599132,-0.68855,0.10842698,0.18826342,-0.26915914,-0.036054228,-0.24223717,0.3502833,0.8200942,-0.14495707,-0.2539925,0.04806876,0.1754719,-0.3176448,-0.44471768,-0.030136015,-0.52690804,0.16281836,0.17155676,-0.38879538,-0.08323383,0.0012123095,-0.5934361,0.059643608,0.14656594,-0.28669205,0.10834457,-0.2681594,-0.012938602,0.9060332,-0.07738395,0.13469163,-0.23342316,-0.7061457,-0.89850533,-0.30990744,-0.15231626,0.2141769,-0.028175231,-0.6874219,0.011620053,-0.2661219,-0.20561567,0.12717378,-0.3598349,0.35516214,0.24905765,0.38356972,-0.36458546,-1.0594131,0.08156144,0.30487442,-0.095785804,-0.53303766,0.36347312,0.074205756,0.8818899,0.09667535,-0.114657044,-0.061289035,-0.5699417,0.1486177,-0.2783995,0.12052058,-0.71676856,0.026848128,401 +432,0.47254524,-0.23516163,-0.48331732,-0.14500734,-0.2794086,0.17383964,-0.37998754,0.061408218,0.19073431,-0.41365644,-0.033781376,-0.0959167,-0.025977135,0.35331085,-0.107342206,-0.85370255,-0.11940973,0.1574378,-0.75487643,0.87078303,-0.38512745,0.31444958,0.15686813,0.12833083,0.18877077,0.16024709,0.35923323,-0.02836317,0.06620067,-0.18071604,0.019022848,0.046090297,-0.6939301,0.20814396,-0.21505539,-0.3104313,0.060912017,-0.3032258,-0.53983533,-0.70851266,0.29653898,-0.8759494,0.5326789,0.124421,-0.2806403,0.266391,0.18291959,0.18783078,-0.22489902,0.06829127,0.24779542,-0.21847169,-0.066166185,-0.2133271,-0.31509236,-0.30860087,-0.60162824,0.043069866,-0.7221159,-0.28952697,-0.18537475,0.25143704,-0.36436057,-0.15632828,-0.25128075,0.61394125,-0.45573753,-0.0061505693,0.25531563,-0.13699888,0.123328194,-0.6368993,-0.10772363,-0.087621994,0.06613626,-0.024717344,-0.11405391,0.265402,0.01433077,0.57080644,0.1838479,-0.5229303,-0.21042886,-0.15230073,0.4093059,0.34097582,-0.03551554,-0.133063,-0.2901976,-0.08526047,0.22664104,0.16943955,0.036948137,-0.35674903,-0.01811854,-0.16352391,0.00033473969,0.51785815,0.63985825,-0.42169762,-0.4546086,0.30029368,0.5298184,0.25376245,-0.157933,0.087689914,-0.03366926,-0.40834814,-0.12527223,0.3613348,-0.1758697,0.46674314,-0.20949428,0.10999511,0.59128726,-0.085861854,0.05208053,-0.063110866,-0.013809183,0.10528999,-0.27609032,-0.060054723,0.42406994,-0.6576303,0.07112213,-0.30211046,0.7272869,0.12563461,-0.5384023,0.31169686,-0.5340612,0.23058833,0.099412285,0.72699594,0.7018617,0.2901136,0.06303116,0.85628796,-0.43695396,0.20351042,-0.2180717,-0.2519194,-0.02233897,-0.27847275,0.11510539,-0.49717662,-0.030940847,-0.24605118,-0.0739307,-0.19408412,0.49756914,-0.40252873,-0.22672789,0.26668033,0.9212827,-0.22484906,0.06649286,0.69896644,1.216848,1.1476619,-0.1353126,1.1911259,0.22680536,-0.28850007,-0.13280305,-0.2921045,-0.7395331,0.20597853,0.4245959,0.85274404,0.38140106,0.034755386,-0.067434266,0.3495066,-0.47476608,0.08709309,-0.26066002,0.29515067,0.07334279,0.14953066,-0.45904055,0.00411149,-0.0050540566,0.0072371033,0.06720461,0.28962526,-0.24798921,0.3496129,-0.04245403,1.2845724,-0.3303066,0.093791984,0.26360136,0.53871393,0.2917622,-0.07978515,0.21647502,0.28520232,0.39124417,0.26142254,-0.6612602,0.020775659,-0.51360995,-0.32911697,-0.3611688,-0.4049602,0.030200584,-0.025373863,-0.43106884,-0.14904551,0.08831232,-0.38019252,0.2653788,-2.53284,-0.14559962,-0.1806247,0.2061491,-0.37727162,-0.23619907,-0.03990507,-0.5224639,0.47579116,0.33698764,0.368624,-0.46831813,0.28505665,0.46033144,-0.5444834,0.091616206,-0.5778554,-0.13055219,-0.17363223,0.76775974,-0.075617865,-0.08865646,-0.21935494,0.2051617,0.62624484,0.079198666,0.07789658,0.3632577,0.2229139,-0.04228136,0.36384916,0.077897415,0.3481638,-0.4068389,-0.19804034,0.5688581,-0.09200442,0.37499508,-0.31382173,0.14477493,0.4628127,-0.54112256,-0.7660932,-0.5811437,-0.47177172,1.3546344,-0.42873165,-0.75403774,0.42035514,-0.069977775,-0.03957917,-0.05994016,0.5177408,-0.014791638,0.18917152,-0.65258825,0.18151376,-0.0030884955,0.25419256,-0.009392893,-0.033849634,-0.41434476,0.723666,-0.12377254,0.3982682,0.32561573,0.3443194,-0.08215368,-0.5523489,0.14759648,0.9908193,0.3853364,0.008725994,-0.36369923,-0.19002523,-0.0538654,-0.07393523,0.00030538332,0.56400603,0.79907054,-0.19321191,0.049413007,0.4553552,0.01360694,0.08804513,-0.09813045,-0.3607214,-0.16819426,0.022168918,0.4844303,0.6091469,0.029853672,0.3331162,-0.0014321485,0.2752705,-0.087202616,-0.5249761,0.42435077,1.0089475,-0.25285217,-0.25153905,0.6335934,0.49910614,-0.51495934,0.51185566,-0.6598256,-0.3478327,0.53310925,-0.13581082,-0.5375816,0.14682953,-0.3196251,0.07079182,-0.64186364,0.27159423,-0.3310247,-0.5765877,-0.4800233,-0.28860617,-3.2538676,0.12790918,-0.45466644,0.076127455,-0.07936462,-0.16625507,0.28935978,-0.41429207,-0.44403172,0.12274318,0.124079265,0.57624495,-0.22172312,0.13986638,-0.23270825,-0.1720836,-0.41092852,0.37299684,0.22826178,0.21570802,-0.25140828,-0.3677327,-0.07543968,-0.13028106,-0.25002342,0.0028673199,-0.6265519,-0.38801405,-0.31306073,-0.519821,-0.0811309,0.5797063,-0.14867248,0.09033624,-0.2556015,0.115571395,0.01582307,0.051885325,0.2761086,0.43645817,0.0801561,-0.17404485,-0.26298848,-0.33607167,0.33656996,0.15003736,0.39970455,0.30826712,-0.047112882,0.19435258,0.39237183,0.4117592,-0.16301426,0.9364945,0.4240446,-0.16313018,0.2815115,-0.11271029,-0.33906168,-0.755993,-0.1920633,-0.017134229,-0.4795484,-0.5883598,-0.074320115,-0.23766156,-0.7579837,0.5765186,0.14249665,0.49674973,-0.098301284,0.13075782,0.5169001,-0.23546961,-0.17612115,-0.0401303,-0.19964395,-0.47113487,-0.341287,-0.76081467,-0.5148449,0.06579961,0.81890994,-0.18503377,-0.10641866,0.005658441,-0.33486223,-0.0093130665,0.20629944,0.13947473,0.053028487,0.6055102,0.32278314,-0.75357616,0.5524108,0.13711983,0.054670732,-0.45081022,0.27097288,0.5709631,-0.5674806,0.53732383,0.23879957,0.09505736,-0.33959246,-0.6044907,-0.20569248,0.044095118,-0.30496362,0.51042867,0.1399606,-0.7725186,0.44104466,0.09215584,-0.37906367,-0.807485,0.40508085,-0.124042936,-0.28341308,0.14554787,0.4215075,-0.09294616,0.069111295,-0.12944041,0.32360846,-0.30955106,0.30444488,0.2990346,-0.13233909,0.18368205,-0.2605885,-0.5790726,-0.66872513,0.012078209,-0.552522,-0.44230607,0.3656781,-0.043810852,-0.055890534,0.3306196,0.0934357,0.571729,0.06290458,0.22307931,-0.025273409,-0.45622435,0.67676556,0.44147015,0.50721484,-0.50291634,0.66833985,-0.011914109,-0.25671968,-0.06555087,0.17110135,0.4038264,0.14829643,0.53804606,-0.08598157,0.14447796,0.24150407,0.7657532,0.26041675,0.54352915,0.29136786,-0.19800986,0.46289536,0.07300886,0.03282202,-0.2819306,-0.6377193,-0.10241654,-0.0626164,0.2015923,0.46081918,0.027818756,0.4371365,-0.14618692,-0.22845581,0.056395892,-0.013323362,0.036565047,-1.18577,0.12479733,0.21636507,0.7150138,0.53361136,0.049181443,-0.029697511,0.60347766,-0.10190161,0.01479951,0.33402696,-0.08098019,-0.40572342,0.48716053,-0.6337847,0.45313898,0.04614083,0.08944794,0.10289558,0.15901458,0.41095877,0.78021944,-0.2142524,0.004027307,-0.14023668,-0.2885285,0.14207436,-0.26577827,0.28321305,-0.26167268,-0.54843706,0.5587771,0.44994083,0.32694498,-0.16142464,0.0040519633,0.06131942,-0.19700181,0.27696365,-0.017837528,-0.12952293,-0.12015524,-0.47117501,-0.2293844,0.51885855,0.017027974,0.0526712,-0.07309175,-0.05407083,0.20238213,-0.12652943,-0.09135311,-0.0050591337,-0.7886855,0.0784735,-0.2284715,-0.5406818,0.45488063,-0.3668552,0.19029193,0.06587423,-0.07554215,-0.4281501,0.34054285,-0.05106622,0.65982765,0.20150009,-0.23410788,-0.2978484,-0.027004166,0.0483194,-0.30133417,0.16542175,-0.26527232,0.21106242,-0.7801204,0.542223,-0.2537382,-0.41919544,0.10904662,-0.21501744,-0.16748978,0.63717234,0.12407957,-0.21465686,0.09366554,-0.20947514,-0.34933165,-0.30893946,-0.021064295,0.20549226,0.1493216,-0.24329717,-0.1797802,-0.10746108,0.10371997,0.3290631,0.018977266,0.20566507,0.18167289,-0.06804494,-0.3811622,0.065850414,0.4724531,0.3954267,0.11030848,0.028962126,0.078355245,-0.48617616,-0.500592,0.29114634,-0.122746214,0.2244699,-0.02003409,-0.21572591,0.90382034,0.2746223,1.2551239,0.0767296,-0.32740232,0.10571976,0.5815529,-0.0065537053,-0.1456939,-0.3278951,1.0690694,0.67100763,0.057609122,-0.103761,-0.52304363,0.030632865,0.09578525,-0.26853994,0.06721135,-0.036025286,-0.6523976,-0.069409154,0.1354014,0.39763635,0.116785236,-0.17385638,-0.156182,0.11128347,0.21569426,0.3645341,-0.64563316,-0.15582755,0.43921232,0.06371977,-0.1786971,0.3413466,-0.3893893,0.4055488,-0.6371693,0.20063205,-0.19931749,0.069939435,-0.01421561,-0.31120783,0.31056908,-0.0432719,0.37350893,-0.45278856,-0.39729834,-0.357151,0.50169486,0.2691864,0.111324705,0.6697851,-0.15477784,0.21056536,0.08319722,0.52727044,1.1376598,-0.25473842,-0.025252968,0.14721613,-0.41725156,-0.84998953,0.20233142,-0.48638996,0.2835806,-0.1091782,-0.4730749,-0.45386818,0.16526487,0.05189043,-0.18395673,0.12452129,-0.68916243,-0.17567801,0.008820832,-0.22062981,-0.23153774,-0.27719375,0.10511228,0.60813487,-0.16542974,-0.37251344,0.064280875,0.24993649,-0.38363594,-0.69069874,-0.09269107,-0.3642137,0.056513663,-0.022979338,-0.29901218,0.06832314,0.1746532,-0.62817633,-0.06077587,0.29195523,-0.3496881,-0.086181775,-0.053238213,-0.020293942,0.7802184,-0.140656,0.035657827,-0.61171055,-0.6373205,-0.8965336,-0.4170474,0.4179135,0.121994235,0.21575506,-0.4574256,-0.074032985,-0.3353896,0.18789063,0.08574497,-0.5843363,0.3561173,0.1261699,0.45330596,-0.24967349,-0.92686653,0.27703738,0.082740866,-0.069497004,-0.4818217,0.37086532,-0.16984282,0.6159709,-0.0640042,0.015813854,0.120377526,-0.6576177,0.103611596,-0.2479049,-0.23218516,-0.71152383,0.13358982,403 +433,0.12351086,0.036737423,-0.65934503,-0.20137458,-0.26614955,0.06052604,-0.2385367,0.3006265,0.42949268,-0.23833747,0.093401894,-0.17785887,0.022318646,0.19143412,-0.10273246,-0.7305013,-0.070260264,0.17452994,-0.4158327,0.377187,-0.62296695,0.27256683,0.030894104,0.2759095,-0.04876808,0.25683212,-0.006197768,-0.37936598,-0.0056206607,-0.25622833,-0.11437785,0.21118878,-0.37098327,0.10185252,-0.06343695,-0.25338447,0.30102268,-0.40756032,-0.42890143,-0.66277516,0.17245711,-0.705874,0.5028023,0.13811071,-0.2734093,0.35151473,0.056189597,0.21590416,-0.14876638,0.038399577,0.3241735,-0.30728784,-0.32829756,-0.1413769,-0.40010455,-0.43403766,-0.60017765,-0.13829152,-0.48904228,-0.11657059,-0.23910911,0.14487822,-0.4327151,-0.05902515,-0.1477158,0.3801624,-0.42604813,0.060638078,0.13825865,-0.23568901,0.19382633,-0.5667451,-0.045785937,-0.009707929,0.13561194,0.011463659,-0.08521693,0.14790191,0.03503375,0.46633333,-0.026296139,-0.17078151,-0.3948555,-0.022489114,0.09608756,0.5642542,-0.21693747,-0.20988293,-0.035659935,0.13747345,0.20771718,0.4393879,-0.1673893,-0.12489448,-0.11573959,0.054627955,-0.39148638,0.41635886,0.53186196,-0.18537731,-0.061039057,0.4099919,0.2762034,0.2530312,-0.21538207,0.14107832,-0.0700819,-0.4401979,-0.20204869,0.065761045,-0.13738945,0.37768427,-0.12493414,0.26349556,0.61029196,-0.20474227,-0.035086103,-0.0038862228,-0.024601946,0.17925005,-0.1916617,-0.15603106,0.32386377,-0.49448732,0.099552974,-0.20698662,0.7378839,-0.07877243,-0.8366333,0.39386153,-0.5292838,0.18803287,-0.25494972,0.71090996,0.5865099,0.61190015,0.35075384,0.72063965,-0.41995025,0.2231509,-0.08020858,-0.4477037,0.29783282,0.13472779,0.14927895,-0.53911346,-0.09598142,0.04055569,-0.20407462,0.14165936,0.36323142,-0.49206457,0.02496274,0.21722195,0.82391137,-0.28503567,-0.08307298,0.57271767,1.1295166,0.8906693,0.08636044,1.0146782,0.30031508,-0.17580725,0.007440384,-0.3315896,-0.83783025,0.13104217,0.21691704,-0.110531315,0.23245737,0.046961136,-0.06646589,0.3261111,-0.32909387,-0.13693073,-0.14809522,0.29357812,0.025699649,-0.05507644,-0.32228413,-0.31886292,-0.034195464,-0.007274573,0.20776984,0.27175856,-0.1353722,0.3833708,0.046963204,1.4062366,0.052894752,0.110685095,0.099015035,0.4681892,0.19863454,0.038754296,-0.0053163213,0.566827,0.20532903,0.021458153,-0.6549992,0.12445732,-0.12102244,-0.33702794,-0.1341903,-0.25770977,0.00021371672,-0.05665533,-0.17820038,-0.28235516,-0.14040676,-0.36559802,0.48754957,-2.874235,-0.02410183,0.024529502,0.31320563,-0.06519335,-0.2401651,-0.03798338,-0.5036606,0.4484399,0.29367477,0.4944766,-0.57211626,0.45359465,0.5219354,-0.50779325,-0.21236922,-0.70716506,-0.16999473,-0.032705877,0.38360813,0.08871371,-0.1124681,-0.075550534,0.01448346,0.3107455,0.0023238808,0.14049523,0.24314417,0.59681696,0.067823246,0.4693375,-0.06010211,0.56917804,-0.08687697,-0.10866646,0.17704964,-0.33559173,0.27480084,-0.22670472,0.035121158,0.35432133,-0.327346,-0.70524114,-0.24080086,-0.02285018,1.2485622,-0.15566672,-0.4068109,0.19009627,-0.1301755,-0.16200177,-0.031073082,0.44412598,-0.16056453,-0.26257214,-0.71034443,-0.020369647,-0.16322783,0.2735377,0.056631945,0.062092338,-0.4195496,0.5014383,0.0144430315,0.53837746,0.32745662,0.09876716,-0.18057169,-0.4027338,-0.026525598,0.68713135,0.3219533,0.087373264,-0.23816817,-0.2198091,0.01087944,-0.108579874,-0.054880533,0.5463901,0.7604211,-0.11042493,0.11166376,0.37925705,-0.37089425,0.006991063,-0.23639956,-0.40260014,-0.07920461,0.021069458,0.46486542,0.5319168,-0.15301703,0.44799057,0.1783602,0.31213382,-0.12634383,-0.37942272,0.29970485,0.7761531,-0.119847186,-0.14870293,0.4654891,0.48625207,-0.16102548,0.45785162,-0.5102516,-0.2127959,0.4657116,-0.16032712,-0.5654068,0.31154436,-0.19828394,0.045708317,-0.87231094,0.28484765,-0.25281364,-0.5263426,-0.7261316,0.037399653,-3.166468,0.038541056,-0.39311212,-0.098587416,-0.13498984,0.059738856,0.14610846,-0.37652153,-0.5216904,0.13089816,0.377769,0.42458507,-0.16272889,0.09340505,-0.33655456,-0.065738834,-0.31880242,0.24518673,0.0407631,0.23266718,0.005920261,-0.5353493,0.01274193,-0.19655047,-0.27426606,0.04837619,-0.39089766,-0.18134955,-0.015318049,-0.5481058,-0.19350128,0.7152135,-0.37147316,-0.10508013,-0.30113506,0.061791744,0.1076153,0.30063978,0.016982645,0.14094216,-0.07555385,-0.0065092957,-0.023844024,-0.29966882,0.3433985,0.014423685,0.30262658,0.25121808,0.08178137,-0.03959585,0.61942434,0.49912515,0.025727486,0.8027515,0.48429415,-0.19634484,0.30556482,-0.30271107,-0.03825151,-0.43007877,-0.35758576,-0.16371581,-0.4114972,-0.4975212,-0.091602124,-0.3840962,-0.8414206,0.51162374,0.10407251,-0.03402024,0.052492652,0.32258686,0.4910903,0.0324549,0.16334851,-0.067581035,-0.18501766,-0.34348387,-0.09965148,-0.76297325,-0.2803857,0.21102282,0.9646602,-0.29717693,-0.06856503,0.119843744,-0.32559282,-0.1410059,0.18926157,0.1010376,0.37177625,0.35442767,0.123299845,-0.6531034,0.4471872,-0.10742529,0.059036944,-0.7542928,0.06921844,0.646619,-0.81997067,0.39232212,0.5276356,-0.02511701,-0.016158478,-0.61506397,-0.28087622,0.058298197,-0.14957549,0.32826096,0.031709153,-0.7977314,0.63868797,0.27172372,-0.25046623,-0.7391796,0.32203063,-0.086400524,-0.3725792,0.18850558,0.30035022,0.12034444,0.060954865,-0.21634053,0.16730879,-0.33850604,0.3441494,0.051592994,-0.15029518,0.22264597,-0.044656273,-0.07942803,-0.8174313,-0.11903507,-0.5073223,-0.30429077,0.3958756,0.036896594,0.26785567,0.04130314,0.09624035,0.4424937,-0.20193873,0.078236006,-0.1618428,-0.25162378,0.44926164,0.48280174,0.23344989,-0.46771988,0.55522364,0.05331077,-0.156788,0.06285393,0.008259871,0.40299314,-0.0018833982,0.31253046,0.05969588,-0.29808834,0.15583995,0.87151915,0.15703861,0.36892158,0.11198033,0.028933665,0.46563342,-0.051708996,-0.0017848952,-0.07486127,-0.4878428,-0.06454766,-0.27280927,0.22849067,0.37568134,0.17212251,0.460322,-0.14043395,-0.16836107,-0.019228382,0.24116635,0.21303265,-0.7198998,0.38073167,0.16236408,0.58893985,0.54283947,0.1623807,0.13446002,0.670119,-0.26101425,0.031271588,0.43078908,0.14993559,-0.470804,0.5017575,-0.6646541,0.36092734,-0.10099148,-0.023422748,0.22764595,0.08057524,0.39130673,0.84366196,-0.1901052,0.00085852825,-0.05270955,-0.23127587,0.03388591,-0.1747417,-0.012996427,-0.3372577,-0.28697917,0.56225145,0.31058547,0.32761285,-0.13613813,-0.023907542,0.29704595,-0.048949268,0.30389175,0.06364531,-0.05377862,-0.15211587,-0.5780312,-0.1673261,0.62002534,-0.008017495,-0.008483206,-0.06428738,-0.1660751,0.32859588,-0.30273682,-0.11323094,-0.03810316,-0.45635337,0.0064117396,-0.20938404,-0.66945326,0.5390524,-0.017538872,0.27457294,0.104027815,0.12464774,-0.17012906,0.1603463,0.15508518,0.7257196,-0.12719508,-0.21029556,-0.33634117,-0.18253164,0.16827835,-0.25204447,-0.3104872,-0.23685408,0.064835526,-0.54958475,0.40453848,-0.4726148,-0.32593796,-0.034668088,-0.24198975,-0.038708877,0.45203224,-0.2843924,-0.10353987,0.03802922,-0.24558903,-0.288555,-0.2495249,-0.27628937,0.15747033,0.026024427,-0.19660068,-0.2422246,-0.22291167,-0.1335254,0.3888208,-0.0006409841,0.15799613,0.26393154,0.14394554,-0.28771666,-0.25966164,0.13944848,0.56643075,-0.14626636,0.017734213,-0.26857144,-0.25549954,-0.30002612,0.14911675,-0.093910694,0.368633,0.068872005,-0.45059237,0.81305134,-0.030563751,0.9485888,-0.010457243,-0.33856964,0.15030381,0.548855,0.14553261,0.14902128,-0.2547523,0.95667636,0.6505944,-0.0691318,-0.16392647,-0.5541765,-0.11596105,0.34185982,-0.18433419,-0.1774433,0.006307487,-0.5411933,-0.20821932,0.3667483,0.082651615,0.12523939,-0.15551749,0.0819739,0.04063142,0.24846962,0.23080441,-0.40263417,-0.16300781,0.24486981,0.14801721,0.14737667,0.17901662,-0.4058485,0.25062272,-0.332659,0.18726993,-0.37948632,0.08691553,-0.11500012,0.02393855,0.19610044,-0.060245693,0.25742355,-0.2466491,-0.4575143,-0.019851675,0.43898663,0.19055273,0.3184202,0.6438021,-0.22349752,-0.04451722,-0.09693108,0.6605805,1.2066647,-0.20561756,-0.09321177,0.506288,-0.26956242,-0.6474144,0.18499517,-0.4225922,-0.16323607,0.03827181,-0.36180285,-0.41264132,0.24758582,0.13021311,-0.10605584,0.09527375,-0.37212276,-0.19622609,0.19269408,-0.35155082,-0.26606572,-0.33177313,0.124186814,0.8791432,-0.2983052,-0.23534767,0.036888976,0.16208646,-0.23008992,-0.5777916,0.16162685,-0.30950165,0.24333332,0.2873283,-0.40044388,0.055966623,0.08622528,-0.44524607,0.15778086,0.3968459,-0.29907745,-0.020610021,-0.2655422,-0.0077018524,0.8408227,-0.16394846,0.13364796,-0.5038465,-0.45893887,-0.71423185,-0.32198197,0.36723518,0.03635713,-0.037550908,-0.57399684,0.040664595,-0.06369226,-0.2591844,-0.103391014,-0.58366907,0.5138661,0.051941685,0.27694577,-0.35137722,-0.9091463,0.08275662,0.110405214,-0.4839905,-0.57101876,0.6324647,-0.23556812,0.8680186,0.116534874,0.04599231,0.23267868,-0.47757,0.35747197,-0.4456146,-0.3850265,-0.65215683,-0.018939788,410 +434,0.2608963,-0.19791207,-0.4556026,-0.1276548,-0.38019255,0.16607325,-0.3415489,0.18822905,0.15344569,-0.27149865,-0.31076917,-0.03603986,0.05908561,0.27160645,-0.08925081,-0.39283493,-0.11493141,0.13038583,-0.8012556,0.37406513,-0.49826413,0.30203944,0.3035788,0.4334465,0.29290244,0.22686434,0.27166718,-0.031688124,-0.07829219,-0.33271137,-0.24915512,0.1726968,-0.61425495,-0.008926928,-0.4159502,-0.45480648,-0.029399378,-0.53271675,-0.2950522,-0.8044396,0.17484055,-1.1437263,0.6019812,-0.23664556,-0.13613799,0.12382449,0.480526,0.3181701,-0.25779715,0.07135833,0.26701647,-0.3345507,-0.20434497,-0.23058586,-0.13783653,-0.41386822,-0.6291503,-0.005875311,-0.5588364,-0.19006893,-0.26766533,0.3083014,-0.41807276,0.21241906,-0.14805886,0.33075953,-0.4422815,0.018614369,0.12739976,-0.17763427,0.3116906,-0.6902835,-0.054960992,-0.14486142,0.53928083,-0.1322451,-0.14956924,0.37369162,0.43344972,0.34189606,0.20293193,-0.29918188,-0.29235062,-0.13748595,-0.07179684,0.5495721,-0.2690631,-0.26217192,-0.21117933,0.12751417,0.66432095,0.5777306,-0.088746965,-0.011428833,0.0344831,-0.10006712,-0.276177,0.6037587,0.5375115,-0.27763537,-0.44102737,0.27300003,0.48584646,0.27050117,-0.2490635,-0.04781846,0.037892647,-0.56469613,-0.11129417,0.19315767,-0.1149287,0.44246218,-0.08419274,0.2173632,0.7969359,-0.21510157,0.1528757,0.05683049,0.016312305,-0.18482693,-0.12456925,-0.30590272,0.24435057,-0.65463024,0.10769068,-0.2598665,0.7411274,-0.035965,-0.7125934,0.38755414,-0.50535095,0.18540628,-0.0024888557,0.6188999,0.75293285,0.42283112,0.46246925,0.85676795,-0.18712728,0.115084566,-0.072924785,-0.29412475,-0.037098657,-0.23468934,0.18477571,-0.45735887,-0.0045240694,-0.18382803,0.11583089,0.17323065,0.52344996,-0.5457775,-0.18398046,0.24735714,0.75915635,-0.26373008,0.0088688815,0.8108658,0.9962886,1.1158708,-0.03543121,1.1620985,0.30308303,-0.16600993,-0.061437402,-0.19512129,-0.64861596,0.2170602,0.3902777,-0.08027581,0.23723236,-0.07872523,-0.12574045,0.17701064,-0.6091073,-0.023297897,-0.060733464,-0.015951613,0.18467619,0.08263038,-0.41383767,-0.33432585,0.012273969,0.042070083,0.19989853,0.17512178,-0.31335458,0.53158224,0.048058152,1.2917484,-0.10741147,-0.036384407,0.12365488,0.5898203,0.2562614,-0.0265041,-0.13274828,0.29032773,0.5605028,-0.06630875,-0.6028036,0.18289651,-0.38803953,-0.1559558,-0.1807904,-0.3709922,-0.20915444,0.17087008,-0.2598231,-0.261982,-0.08529217,-0.41939712,0.37695518,-2.760166,-0.2513817,-0.16403088,0.28328282,-0.23677166,-0.13140155,-0.29248303,-0.7037765,0.341938,0.18344995,0.5494691,-0.54522485,0.45191264,0.5775451,-0.60848445,-0.20506392,-0.7394929,-0.30510396,-0.034655403,0.3949793,0.18333384,-0.19527128,-0.11387044,0.15736233,0.8098798,0.18744572,0.093309775,0.5625595,0.4798686,-0.011985724,0.6615805,-0.012638365,0.6318747,-0.37059578,-0.22329232,0.41875404,-0.27284223,0.19418256,-0.31396392,0.11362469,0.7321933,-0.4907784,-0.97190064,-0.62798446,-0.218205,1.1723777,-0.3243348,-0.4785232,0.10957755,-0.06344131,-0.067269154,0.044296686,0.68146497,-0.138977,0.042871624,-0.64765847,-0.16092728,-0.04804581,0.17687471,0.02297713,-0.035137665,-0.41464397,0.66044843,-0.12385775,0.56570905,0.13357764,0.33452216,-0.3475679,-0.27746907,0.14118703,0.98479843,0.4379361,-0.050480846,-0.28374764,-0.21635492,-0.15611836,-0.31404656,0.016014894,0.5976431,0.6607023,-0.08517671,0.32225636,0.39035383,-0.10166705,-0.011326836,-0.14989267,-0.23165417,-0.10733301,0.053110685,0.47881168,0.62593853,0.032630146,0.6363178,-0.12122929,0.30759162,0.022851706,-0.5936436,0.52134806,0.48355708,-0.25929815,-0.024999088,0.6052712,0.39247203,-0.43524244,0.53372806,-0.6718459,-0.4595646,0.66496474,-0.19379804,-0.54742426,0.24256802,-0.26023835,0.06854217,-0.5024027,0.23196027,-0.23537543,-0.42744973,-0.46838167,-0.063183956,-2.797512,0.114687406,-0.10868207,-0.07575985,-0.3339823,-0.39847568,0.29956725,-0.4501261,-0.6323705,0.16371782,0.30700678,0.6926654,-0.15777051,0.088646784,-0.2446955,-0.29613203,-0.2440356,0.13358179,0.28727862,0.28639945,-0.25373232,-0.38888672,0.13890955,-0.0817876,-0.46746454,-0.008220774,-0.58925426,-0.46469665,-0.07075507,-0.45212078,-0.26995423,0.61939293,-0.38032347,0.04941849,-0.33332154,0.1530473,-0.085223936,0.14955446,0.13858022,0.13778675,-0.022989238,-0.17579223,0.25469932,-0.3267672,0.7356985,-0.011653787,0.28792992,0.158025,0.14640346,0.21502994,0.48419943,0.4994951,-0.18738112,1.2257385,0.33846673,-0.10711365,0.06420321,-0.16444638,-0.48612946,-0.61925185,-0.26067978,0.09499172,-0.4884694,-0.3507173,0.020880163,-0.23846798,-0.8893509,0.72045124,-0.03782398,0.38065425,-0.11152918,0.38692278,0.3895626,-0.19273032,0.07787478,-0.078797765,-0.1365954,-0.4095091,-0.3049648,-0.75748444,-0.5316542,-0.21422526,1.010704,-0.31254718,0.08629947,-0.023082623,-0.28367874,0.13806216,0.10660056,0.085300006,0.2789424,0.5437594,0.029555395,-0.6700854,0.407387,-0.18071638,-0.07130408,-0.5894936,0.17355272,0.7286001,-0.7865323,0.38533565,0.4631439,-0.059890207,-0.22307007,-0.49516746,-0.14135599,-0.090797424,-0.20567301,0.42428732,0.1372725,-0.80762005,0.6144935,0.22713956,-0.41700524,-0.70558804,0.33797923,-0.045674015,-0.21076809,0.040276464,0.28540263,0.1778815,-0.09793752,-0.10333402,0.088215984,-0.33140817,0.485727,-0.102615416,-0.015576558,0.38105878,-0.24969898,-0.35812983,-0.68915,0.054432195,-0.4967744,-0.3616956,0.38521558,0.018441211,0.012563962,0.41136715,0.0010719256,0.3839392,-0.21700907,0.07442311,-0.07885039,-0.38059574,0.27088833,0.43879214,0.37357023,-0.39350373,0.6071639,0.14060245,-0.38303182,0.36416027,0.032320883,0.33959088,-0.028118243,0.42490265,-0.20626035,-0.25050634,0.47689396,0.7263049,0.11530006,0.3668141,0.028541889,-0.11300607,0.37975916,0.00069107965,0.07330277,0.0066299182,-0.61214393,-0.0030865776,-0.20172319,0.073723234,0.55107254,0.1781513,0.29832214,0.037347045,-0.085379735,-0.059653427,0.008143323,-0.16825345,-1.2074239,0.25394818,0.09871025,0.90124285,0.27066514,0.07520529,-0.12041949,0.7746612,-0.3226873,-0.06648446,0.44393554,0.24045531,-0.37682933,0.74264854,-0.6345922,0.5925306,-0.07838056,-0.060526464,0.039677925,0.11881317,0.29919845,0.96525466,-0.38061306,0.10432718,-0.00045104537,-0.19210641,0.10125561,-0.2875219,0.111025274,-0.4172635,-0.47396946,0.8681653,0.32088703,0.312803,-0.093338184,-0.07058827,-0.13388877,-0.24039257,0.23929271,0.11129558,-0.035660572,-0.109445095,-0.5893734,0.11180077,0.45403147,-0.012491705,0.15355146,-0.0671851,-0.1640265,-0.0033345628,-0.19319177,0.07060262,-0.076770484,-0.72342974,-0.13183364,-0.2519181,-0.5671225,0.3348233,-0.33476833,0.16514206,0.29111043,-0.0789568,-0.11480454,0.30755037,0.25698093,0.7165442,-0.12184609,-0.16979837,-0.28651127,0.12998281,0.28856617,-0.2736894,0.16669586,-0.3796497,0.08000101,-0.63776845,0.63463944,-0.3315196,-0.5681847,0.28522852,-0.21774448,-0.092739515,0.61100465,0.041028738,0.04274691,0.014249989,-0.15483162,-0.40388387,-0.14146875,-0.28210527,0.10213132,0.35041657,-0.0905983,-0.17982104,-0.2947299,-0.17445461,0.5099697,-0.08896933,0.5817073,0.27701157,0.22627698,-0.2085472,0.06644354,0.089719035,0.713225,0.08767193,-0.041710887,-0.6361081,-0.38564208,-0.17993112,0.38889155,-0.1060223,0.20187752,0.005340802,-0.33972007,0.9233622,-0.15145275,0.9815132,0.11182415,-0.31249005,-0.016855385,0.59049904,-0.15021849,-0.08737944,-0.4075168,0.9201228,0.55583346,0.0038605076,-0.009336216,-0.5225388,0.043115955,0.40751106,-0.37957758,-0.1708524,-0.08182528,-0.5354553,-0.44128084,0.19591966,0.17517349,0.15945272,-0.18749537,0.105965756,0.31191248,0.17887416,0.5299275,-0.59170055,-0.15587641,0.30557826,0.25755182,-0.44354525,0.21496296,-0.45634085,0.40023056,-0.5560451,0.039001953,-0.48744062,0.09068892,-0.12217416,-0.2731888,0.2264743,0.014810975,0.48978308,-0.2717527,-0.39275938,0.07446419,0.42021602,0.16244696,0.23496091,0.5514229,-0.25287586,-0.06552289,0.027878301,0.61573166,1.402362,-0.4599609,0.026630988,0.23597498,-0.387993,-0.52211535,0.46702924,-0.39883247,-0.11351176,0.020038579,-0.4139025,-0.2394558,0.30367973,0.099022545,0.099095754,0.017516447,-0.47217172,-0.051841624,0.20306432,-0.22915332,-0.22424044,-0.36698446,0.306784,0.56788176,-0.19684969,-0.27065048,0.016290251,0.45602056,-0.21781516,-0.5036075,0.013882982,-0.3185024,0.25468516,0.034304854,-0.34640315,-0.075300984,0.08423545,-0.5700307,0.02934419,0.09371416,-0.42459294,-0.07162418,-0.112067334,0.040681034,0.89120185,-0.28548428,-0.09406536,-0.4622623,-0.5020266,-0.7708954,-0.2716947,0.19646123,0.3313639,0.002528742,-0.41561127,-0.050605927,-0.19478133,-0.28425378,0.051421966,-0.48455307,0.31485456,0.0965644,0.51966304,-0.44939107,-0.7477729,0.23290597,-0.07036998,-0.17749739,-0.4827017,0.67169094,0.12296837,0.7345069,0.16898844,-0.0142961955,0.05886813,-0.30793437,0.081270315,-0.3843471,-0.14210846,-0.8910156,0.09613495,412 +435,0.40067476,-0.24763907,-0.4825695,-0.12675264,-0.17145033,0.08948279,-0.33976677,0.28742546,0.11292575,-0.35295397,-0.120646104,-0.035399437,0.04942404,0.3595112,-0.06013912,-0.5126442,-0.14466122,0.025194513,-0.55908495,0.4305252,-0.6797813,0.40248474,0.14631376,0.3960094,0.26176673,0.37302646,0.10475485,-0.12640207,-0.058397196,-0.284813,-0.14787497,0.4189231,-0.556514,0.05284794,-0.006425917,-0.2840137,0.039692543,-0.416287,-0.21382464,-0.6856758,0.052905314,-0.96154153,0.5411667,-0.01891908,-0.22326319,-0.111735106,0.32519674,0.5001315,-0.22584508,0.25594425,0.28633097,-0.10585298,-0.097514614,-0.28863147,-0.11447805,-0.44714254,-0.4998793,-0.06336337,-0.5756298,-0.31043634,-0.15681352,0.32335874,-0.33276886,0.06406707,-0.41387525,0.3249351,-0.4581669,0.04835976,0.3153533,-0.18365166,0.6468194,-0.5440324,0.00047799837,-0.07883211,0.28855547,-0.11031341,-0.24782309,0.18645497,0.42690268,0.40898186,0.13204728,-0.12736164,-0.26523086,-0.25201803,0.19414723,0.5155108,-0.28912854,-0.30989522,-0.25652042,0.10109766,0.4963577,0.52287805,-0.098192945,-0.43380126,-0.007965894,0.093754016,-0.24473608,0.4217045,0.47765622,-0.2723388,-0.44660917,0.2611441,0.45933676,0.17571457,-0.25228268,0.0901952,0.070926435,-0.5813789,-0.03753594,0.2744971,0.11463293,0.48273996,-0.019726064,0.13447976,0.7879148,-0.12945183,0.017553095,-0.04146438,-0.19645922,-0.02847051,-0.32945338,-0.32115826,0.08188492,-0.5924323,0.14472297,-0.39391023,0.71741134,0.022812711,-0.6726965,0.38994965,-0.57729024,0.11456791,-0.073216036,0.6960341,0.5524066,0.437805,0.25885564,0.7101863,-0.36285734,0.07163739,-0.15151384,-0.33393964,0.088693395,-0.10784934,0.17969596,-0.46522164,0.089441344,-0.12791313,0.1254059,0.017887881,0.6244531,-0.557319,-0.09589512,0.06853037,0.80114204,-0.42302802,0.007510426,0.5940374,1.0171658,1.0046675,0.072983675,1.1739401,0.31541926,-0.17506881,0.015379255,-0.3362095,-0.4332088,0.3199268,0.37373325,-0.20858352,0.275667,-0.101615705,-0.10878658,0.32837456,-0.22293319,0.042591877,-0.1355264,0.13965856,0.09635381,-0.111029044,-0.5738072,-0.16738364,-0.00023629835,-0.079451695,0.10796155,0.02037154,-0.3275579,0.30784765,0.024312636,1.5343667,-0.37384096,0.07164653,0.13565162,0.34348527,0.20368683,-0.2991722,0.039744873,0.31913665,0.57463133,-0.00087342516,-0.6018144,0.3700948,-0.24146469,-0.43062672,-0.16168235,-0.36658007,0.032679413,-0.014302224,-0.4975083,-0.070260786,0.039507177,-0.28766873,0.40900165,-2.7549732,-0.26985464,-0.16638435,0.2516598,-0.30708143,-0.2770644,-0.08995237,-0.46398783,0.3366092,0.14369473,0.4574962,-0.5761505,0.55487734,0.45016223,-0.29184645,-0.24003564,-0.8649524,-0.13741906,-0.041391365,0.39059553,-0.009124451,-0.1651561,-0.17657125,0.2437693,0.75860065,-0.15599218,0.13465367,0.35303846,0.4466903,0.13451949,0.72013867,-0.018807197,0.62590784,-0.16638756,-0.17771776,0.4233096,-0.32746544,0.1452339,-0.005337681,0.09322052,0.38706803,-0.3766293,-0.96327096,-0.71477306,-0.39995548,0.9490308,-0.40088964,-0.5985212,0.13426915,-0.0815053,-0.18333934,0.05408141,0.5196219,-0.076428674,0.12080346,-0.84116745,0.08611953,-0.16293319,0.28831762,0.034468103,0.028420065,-0.33118185,0.50376886,-0.062548,0.60206044,0.33504882,0.28399017,-0.1173977,-0.4074693,0.008166526,1.0735584,0.3085452,-0.07009513,-0.23097573,-0.34755522,-0.03955927,0.0046015806,0.04564034,0.5721129,0.8309904,0.026750853,0.20473385,0.3109353,-0.12662266,0.006768661,-0.13233538,-0.3116722,0.0004392181,0.12696472,0.487233,0.4345687,-0.0039165276,0.6078321,-0.266145,0.3940153,-0.018623037,-0.55436724,0.40180996,0.7221679,-0.23019816,-0.114768334,0.6654223,0.49130657,-0.27419108,0.37604794,-0.682733,-0.13962868,0.65115684,-0.23816173,-0.35838142,0.40466383,-0.34323516,0.19242035,-0.89750785,0.41682014,-0.36485,-0.58685195,-0.3543434,-0.122527614,-3.3190994,0.10009501,-0.05933932,-0.2577064,-0.17837746,-0.18595965,0.5357784,-0.5616469,-0.5436455,0.044573266,0.27156284,0.5497455,-0.089237355,-0.0048028827,-0.3611019,-0.12633108,-0.0316348,0.2953855,0.19891103,0.24298131,-0.09761156,-0.35485378,-0.06630974,-0.016539956,-0.55063117,0.21806815,-0.65742105,-0.6630045,0.10995269,-0.46158195,-0.3554458,0.6969058,-0.35497603,-0.02391092,-0.11074285,0.12767293,-0.12756449,0.3610899,0.1821865,0.28744766,0.16714002,-0.057455964,0.13268368,-0.33810344,0.3857608,0.0654576,0.26338392,0.015421697,-0.06806021,0.23284133,0.42998257,0.45184612,-0.04970748,0.92490727,0.43109173,-0.0558374,0.13297571,-0.41594955,-0.25778988,-0.59683937,-0.36921486,-0.13045521,-0.5167397,-0.5018231,-0.018890264,-0.15218617,-0.7605174,0.6454379,-0.11300678,0.30720815,-0.20835434,0.43100294,0.38299686,-0.018684974,0.04749281,-0.092498355,-0.12127384,-0.45227104,-0.30051252,-0.6980645,-0.62435657,0.024288502,0.8966412,-0.31112686,0.1035016,-0.13833949,-0.18991415,-0.07169501,0.14357196,0.13682869,0.3966351,0.53498495,-0.07549673,-0.625385,0.30701247,-0.06041221,-0.14919004,-0.5724211,0.13687536,0.87050927,-0.73202235,0.44419298,0.32421955,0.10736925,-0.15201077,-0.6827739,-0.21866962,0.14665702,-0.38360453,0.62075406,0.0711453,-0.6787167,0.4495117,0.41857198,-0.33482006,-0.50034064,0.37281066,0.014998709,-0.32436445,0.035864633,0.40388846,0.029160371,-0.065655135,-0.14772418,0.20209225,-0.41190082,0.22248946,0.26536494,-0.15273984,0.26525804,-0.12980911,-0.2627359,-0.7297827,0.03369643,-0.64530885,-0.33259135,0.37655607,-0.060557313,0.05053795,0.29235348,-0.13608304,0.4342751,-0.28706184,0.037734687,-0.12670876,-0.3084218,0.24865206,0.5830518,0.19388258,-0.29275373,0.4050533,0.13691247,-0.26470414,0.046768103,0.031063642,0.43304858,-0.11343595,0.3785527,-0.46877295,-0.2082545,0.5148181,0.6206774,0.22191682,0.502035,0.030286644,-0.06833081,0.28764588,0.030046115,0.05319894,0.05065495,-0.28900757,-0.16756137,0.022763653,0.21807781,0.60415643,0.29907662,0.2828623,0.010048977,-0.12945545,0.14307404,0.1406565,-0.10778255,-1.020848,0.60940784,0.25559947,0.6189884,0.38923502,0.1530435,-0.09346785,0.57317245,-0.4283648,0.07514287,0.42539334,0.1897875,-0.50738436,0.8355544,-0.72978956,0.3966492,-0.1680025,0.09677714,0.118694425,0.060542516,0.49879768,1.0597274,-0.17854837,0.105144314,-0.0032000926,-0.06811552,0.04119673,-0.28558406,0.029009882,-0.36464566,-0.42216334,0.8153983,0.4344468,0.37347198,-0.16766138,-0.018871699,0.15360324,-0.22217028,0.28716272,-0.023940995,0.051289413,0.08173934,-0.511912,-0.24259678,0.54397017,-0.01845421,0.07980677,-0.048795186,-0.24361347,0.06526808,-0.07715116,0.03829405,0.046418216,-0.47943214,-0.1124668,-0.46428564,-0.53646916,0.25207847,-0.4562067,0.055645872,0.08494748,-0.055512194,-0.11709361,0.22543919,0.1795437,0.7855526,0.04682111,-0.29328915,-0.38362813,-0.033883955,0.20930798,-0.27373645,-0.12900257,-0.3167434,0.04835248,-0.7627203,0.45653984,-0.12880194,-0.5572124,0.27510387,-0.18259047,-0.07284207,0.54512423,-0.12535672,-0.098471396,0.17488894,-0.15684868,-0.36676416,-0.13834454,-0.13679962,0.16407487,0.23751982,-0.016655479,0.017260972,-0.27829227,-0.15110986,0.42630836,0.15770398,0.5451439,0.3557975,0.18216573,-0.15718332,0.029443962,0.18333437,0.4869786,0.1796821,0.13160925,-0.38303423,-0.4610502,-0.2597062,0.21164958,-0.11970315,0.34631944,-0.029020848,-0.4089341,1.1367255,-0.076571174,1.1289918,-0.050423894,-0.35800576,-0.039422866,0.43650573,-0.12549141,-0.06803949,-0.39863458,0.8795174,0.4950905,-0.07084466,-0.05160751,-0.46970218,-0.29379392,0.2139121,-0.30710435,-0.057399597,-0.16090563,-0.6060613,-0.3745083,0.19480984,0.1594726,0.10412911,0.0295614,0.044337843,0.15343942,-0.00049486116,0.38614416,-0.5496907,-0.01416422,0.041956007,0.31677118,-0.17624311,0.13767968,-0.51738083,0.36799923,-0.57023066,0.19689748,-0.43230423,0.11501299,-0.0050104004,-0.2886582,0.16284433,-0.2987902,0.1667349,-0.24411058,-0.25440755,-0.027151287,0.5329207,0.07182978,0.1525656,0.8398266,-0.1980999,0.17550626,0.15255037,0.577199,1.4985182,-0.47550353,0.069135204,0.29079586,-0.40988997,-0.6267465,0.3517316,-0.3172956,-0.075416386,0.15862629,-0.5871583,-0.2992681,0.22252993,0.078166686,0.097086586,-0.06204686,-0.3746605,-0.13725884,0.32366678,-0.30832013,-0.28188446,-0.28946072,0.46509784,0.66467243,-0.322948,-0.42129496,-0.05297963,0.36186934,-0.4475154,-0.3981216,0.024660388,-0.10973121,0.38760298,0.14869633,-0.26925704,0.010892391,0.08231931,-0.3997225,-0.02620847,0.2790888,-0.3751295,0.10838636,-0.11535998,-0.14480567,0.82885486,-0.2527258,-0.45757246,-0.7278164,-0.4271378,-0.8950273,-0.5173907,0.2377034,0.2529591,0.059563525,-0.33493486,0.0697245,-0.11062238,-0.082648255,0.009654446,-0.52497476,0.40886313,0.09242842,0.58924323,-0.34829378,-0.80548227,0.20946144,0.19658235,-0.14488818,-0.64640385,0.79585457,-0.11488483,0.6974786,0.10905355,0.053163,0.05131026,-0.4677827,0.048674114,-0.26714423,-0.1999005,-1.1060573,-0.054313485,415 +436,0.48803526,-0.275356,-0.35190195,-0.038852457,-0.09993102,0.29836157,-0.19579948,0.4667609,0.09770955,-0.28728446,0.10543706,-0.050861895,0.05291864,0.46653196,-0.10957967,-0.38149998,-0.22567381,0.036705766,-0.57179147,0.8089697,-0.25273472,0.19979021,-0.19533612,0.4918108,0.21124892,0.32688975,-0.033866253,0.0669197,-0.09961874,-0.016594289,0.08650063,0.10198606,-0.76109356,0.016977033,-0.2590484,-0.1925423,-0.12647322,-0.36250582,-0.42950276,-0.8204897,0.48367548,-0.84026676,0.80213886,-0.008007535,-0.18254396,0.48851374,0.29153794,0.26354071,-0.2536495,-0.13596341,0.09095667,-0.09356097,0.07312933,-0.23824976,-0.27343908,-0.41781813,-0.6287252,0.009831854,-0.50420946,-0.102654085,-0.2543618,0.14933889,-0.25717214,-0.0805143,-0.13767181,0.37432715,-0.5866736,0.1289976,0.16382237,-0.030452013,0.18286209,-0.6453303,-0.20538683,-0.16509488,0.38737893,-0.134869,0.020235592,0.35624272,0.06111776,0.3357965,-0.056842368,-0.08628961,-0.45160356,-0.19546525,0.004245526,0.43634892,-0.18752834,-0.56078804,-0.09355213,-0.03611308,0.18520345,0.10631316,0.16163956,0.06408094,0.0065287477,-0.11943662,-0.14237085,0.6540347,0.5038363,-0.2560149,-0.5518887,0.34962568,0.6225554,0.33006337,-0.17845607,-0.0763496,-0.012474194,-0.47252512,-0.16379483,0.26794133,-0.11427467,0.4811732,0.025034394,0.191762,0.58229816,-0.30976272,0.07245384,-0.1218433,-0.032084584,-0.010741294,-0.13322154,-0.29492992,0.16901521,-0.3340278,0.34040293,-0.318759,0.5713952,0.18081668,-0.6655176,0.43799525,-0.5963666,0.103154644,0.2151586,0.42717162,0.65668136,0.6165007,0.19700027,0.5969877,-0.12876897,0.06290444,-0.15249808,-0.04057732,-0.018410001,-0.30741692,0.038974915,-0.38494954,0.20985666,0.009632627,-0.23268504,-0.093211465,0.53265244,-0.5345656,-0.08904052,0.05885021,0.9514249,-0.21507004,-0.050507586,0.88237846,0.98568827,1.0807588,0.010154643,1.0076479,0.24855237,-0.26885888,0.1969689,-0.46829328,-0.745423,0.22151871,0.24906988,-0.07370348,0.6579185,0.023141623,-0.03744324,0.223936,-0.43222818,-0.0041908408,-0.18681593,0.13056388,0.2625601,-0.0012788262,-0.2957297,-0.35276583,-0.06279864,-0.06049794,0.32538062,0.2668387,-0.27532652,0.42785883,0.08985416,1.7341765,-0.03222939,0.18230216,0.14331453,0.7692326,0.15951394,0.013569428,-0.09386654,0.4871022,0.3958287,0.22955108,-0.5704878,0.2753366,-0.33624655,-0.51710385,-0.034823824,-0.5075082,-0.16405039,-0.10639221,-0.3134897,-0.24033312,-0.15396579,-0.1659523,0.26697716,-2.780316,-0.048808984,0.05094275,0.4074173,-0.40181535,-0.25308552,-0.22509328,-0.48468757,0.37170935,0.2544094,0.35032937,-0.576572,0.4745646,0.36487192,-0.57281625,-0.063632265,-0.48051253,-0.16905595,-0.05358594,0.5294935,-0.13558885,0.049189754,0.2252318,0.32068482,0.48945612,0.06628381,0.053337425,0.29882982,0.49127752,-0.088330634,0.46358243,-0.16395679,0.3130156,-0.37515283,-0.12845673,0.36303598,-0.4634392,0.27548954,-0.2402494,0.11640591,0.40396675,-0.530807,-0.9955905,-0.62118053,0.08531396,1.0719388,-0.22873987,-0.49885002,0.104120255,-0.5185841,-0.09865444,-0.23637106,0.6548773,-0.22992387,-0.032610383,-0.6848207,-0.12648141,-0.17638287,0.30680385,0.102542825,0.31752592,-0.5151321,0.7233017,-0.05149347,0.4913176,0.06534237,0.19365014,-0.34159857,-0.4947715,0.1263547,0.6509126,0.2792906,0.026880225,-0.2133384,-0.34949446,-0.21537177,-0.04279509,-0.0036984682,0.6824275,0.3975388,0.03892991,0.054221444,0.2792186,-0.26843172,0.2626236,-0.3075994,-0.25164056,-0.23515598,-0.05682716,0.53688055,0.5279399,-0.20112456,0.40237978,-0.06079853,0.34520307,-0.2137054,-0.32867804,0.39450374,1.0275589,-0.17532344,-0.13697301,0.60546035,0.64225256,-0.30234247,0.4286799,-0.69433075,-0.26911953,0.5464705,-0.2973841,-0.4216331,0.2156693,-0.16873321,-0.029452965,-0.8353272,0.11881452,-0.40894917,-0.22078142,-0.56709856,-0.04672418,-3.1814027,0.043794017,-0.08208908,-0.2608527,-0.21950047,-0.1909864,0.12727578,-0.66705424,-0.6656617,0.12792324,0.11101854,0.7154317,-0.17662077,0.12008651,-0.26355058,-0.41788298,-0.4530378,0.23690851,0.22381108,0.47442034,-0.22917387,-0.35346267,-0.027569976,-0.12667163,-0.45595428,-0.0438264,-0.34809965,-0.20284685,-0.18029845,-0.56022155,-0.23725145,0.64006644,-0.19119331,0.009835799,-0.3185815,-0.07239436,0.005425036,0.39614472,0.103700034,0.2570105,0.26490957,-0.28389427,0.15451156,-0.2672927,0.39769608,0.013880354,0.24659704,0.32781643,-0.28527254,0.2090887,0.46646598,0.68313694,-0.019562343,0.8800832,0.4133763,-0.2036442,0.44211754,-0.37116805,-0.19913468,-0.6256402,-0.26334682,0.15499173,-0.26894787,-0.56476396,-0.26707926,-0.390896,-0.7785883,0.4997322,-0.22927181,0.30939704,-0.07079079,0.410641,0.5411151,-0.28628168,0.14554095,-0.002684887,-0.07905109,-0.4579065,-0.15228784,-0.45320204,-0.50703233,-0.038115773,0.8372982,-0.15649104,-0.0815475,0.048439562,-0.35753566,0.078118965,0.13778612,0.04707078,0.15459251,0.44854045,-0.13725218,-0.53137267,0.5062472,-0.14750113,-0.20123275,-0.4618177,0.27423304,0.46949443,-0.6530263,0.5177943,0.30904302,0.063616715,-0.39870936,-0.55168986,-0.056189425,0.0786242,-0.02839927,0.17468552,0.1832566,-0.75890297,0.31186494,0.15782166,-0.3271223,-0.74901885,0.6382128,0.01548455,-0.4082283,-0.054800034,0.4057683,0.13069002,0.0050554615,-0.33713886,0.2734945,-0.5117283,0.13940278,0.028297368,0.0008667537,0.29838613,-0.12974034,-0.1795794,-0.756178,0.2891956,-0.4910232,-0.39698607,0.524845,0.19781365,0.010715208,0.1636437,0.09653983,0.46794388,-0.21501009,0.12714069,-0.11188483,-0.25796962,0.38853928,0.36705837,0.48956823,-0.5695868,0.61383694,-0.0701718,-0.1073113,0.18590626,0.066907115,0.41633382,-0.08151679,0.4705317,0.22197826,-0.246896,0.1966565,0.6336876,0.26738885,0.40756986,0.049194477,-0.26752704,0.28187412,0.054029506,0.09143048,0.005382214,-0.45582086,0.023737554,-0.0024971557,0.04478589,0.49005747,0.115686946,0.20058759,-0.15427086,-0.25666302,-0.01776385,0.3138607,-0.2413671,-1.1708087,0.1960263,0.07094621,0.928292,0.5157298,-0.022437086,0.15710711,0.6550441,-0.16900866,0.0417799,0.45170793,0.23457643,-0.608389,0.61086494,-0.5799716,0.51529473,0.005578088,-0.09500701,0.09182258,0.043517265,0.46289402,0.7759555,-0.17589186,-0.07579684,0.015157102,-0.22822773,0.20884669,-0.36708575,0.19763856,-0.4929857,-0.20074601,0.5792802,0.46132162,0.45833638,-0.09253546,0.008708437,-0.021437477,-0.15962103,0.35293594,0.06710435,0.14878769,-0.107592575,-0.7301674,-0.16067235,0.5856128,-0.19591309,0.0840566,-0.0023438972,-0.3289215,0.28531665,-0.2060405,0.015241095,-0.046595413,-0.82475036,0.14858712,-0.24396488,-0.34172317,0.47461972,-0.109338276,0.28301445,0.28009948,0.004910086,-0.41281524,0.1865276,0.10432314,0.62770563,-0.04016419,-0.2004932,-0.5208643,0.0615863,0.20895854,-0.33338594,0.10827153,-0.034614928,0.08133624,-0.43173236,0.4173197,-0.06970885,-0.36305103,-0.20225546,-0.1434696,0.12335084,0.7094494,-0.09395925,-0.07107345,-0.23564592,-0.19172096,-0.2898768,-0.21376733,-0.14042373,0.14222762,0.2708524,-0.12678018,-0.1616937,-0.031105667,-0.115892984,0.6213398,0.11149181,0.4235289,0.47975513,0.23708834,-0.27927262,-0.0007741622,0.20613411,0.5119666,0.0023726565,-0.1135131,-0.48613718,-0.41332576,-0.34027752,0.5614506,-0.14068247,0.21766078,0.12959789,-0.34883627,0.8160714,-0.051936906,1.0106288,0.06982335,-0.381327,0.26770094,0.6826928,-0.062456913,-0.14917724,-0.6275717,1.0412077,0.48023817,-0.09319741,-0.07399974,-0.1303223,-0.09242435,0.10408329,-0.3403791,-0.13251686,-0.10699083,-0.58040756,-0.1543971,0.20483677,0.26678714,0.1489532,-0.17381987,-0.022544865,0.16237238,0.07440383,0.3572742,-0.4151704,-0.19848537,0.5045767,0.032154977,0.14849196,0.09954219,-0.34046537,0.27224487,-0.43112653,0.14639293,-0.36369988,0.18115386,-0.19556251,-0.37070227,0.30340335,0.06431528,0.3953523,-0.33143035,-0.4862779,-0.2436816,0.33442876,0.19848405,0.1808431,0.4783679,-0.2717629,0.15566148,0.031074833,0.5322277,0.84745824,-0.13123752,-0.045726426,0.1487982,-0.43282494,-0.79460174,0.32511896,-0.36910948,0.290227,-0.07845278,-0.0017323217,-0.4907042,0.24978428,0.1862584,-0.12554142,-0.094841205,-0.7560924,-0.42322785,0.14124645,-0.27481326,-0.17789292,-0.38515943,0.03351814,0.80156404,-0.27419737,-0.3443749,0.076322995,0.20918392,-0.12574497,-0.65469295,-0.073769234,-0.40126732,0.25817078,-0.022725407,-0.2516697,-0.1987551,0.120135084,-0.5185973,0.19996145,0.08826111,-0.38355398,-0.11349627,-0.3788331,0.015067009,0.9469643,-0.2881828,-0.10703581,-0.36828607,-0.49102113,-1.0139692,-0.3408982,0.18248634,0.1478348,0.042630352,-0.68354654,0.08210137,-0.16535392,-0.19723992,0.028632984,-0.4721512,0.26155514,0.09576897,0.39033198,-0.22514309,-0.6627054,0.32188097,0.08465792,-0.11347612,-0.5930975,0.521262,-0.09352287,0.8455184,0.01675388,0.10198307,0.21928863,-0.5345654,-0.15681846,-0.0819158,0.0036873263,-0.67283183,0.26782647,422 +437,0.17450686,-0.3215367,-0.23146237,-0.1093061,-0.26150414,0.26480034,-0.3029692,0.36652955,0.13357067,-0.5760895,-0.25155082,-0.27431324,0.13692135,0.63099337,-0.13202439,-0.6163279,0.06959368,0.10688821,-0.492023,0.44421047,-0.5217449,0.45039812,0.20660591,0.28736213,-0.059265703,0.17875536,0.37440988,-0.1331115,0.07365471,-0.30491823,-0.15333983,0.24343614,-0.5422788,0.31108046,-0.11757109,-0.51060784,0.23636536,-0.5824417,-0.27113977,-0.6858142,0.22607468,-0.8694658,0.6317944,-0.038102753,-0.040527552,0.20519061,0.20277123,0.38079765,-0.07243767,0.12604472,0.11072507,-0.15127836,-0.2631093,-0.066593125,-0.22181252,-0.4969624,-0.58832854,0.07946729,-0.4922426,-0.28351766,-0.13676035,0.15358898,-0.21327087,0.2196655,-0.14418535,0.27232677,-0.36939612,-0.103866674,0.36548916,-0.26523915,0.14583215,-0.5756606,-0.12458937,-0.053820055,0.39461032,-0.2999998,0.017925696,0.13987368,0.3605245,0.6201275,0.1117092,-0.21682313,-0.30472523,-0.17106536,0.031174025,0.7182098,-0.06465888,-0.5097851,-0.23251216,-0.048545156,0.19676927,0.1905925,0.17205824,-0.22649513,-0.103144825,-0.025400281,-0.3235469,0.32692358,0.333901,-0.50993246,-0.5048403,0.25618,0.6762633,0.09746911,0.043194972,0.029585311,0.10287325,-0.5541935,-0.10386997,0.13768753,-0.11610566,0.46469876,-0.14833894,0.41661957,0.64101034,-0.07177256,0.058774106,-0.12532409,-0.20487969,-0.3324189,-0.16416833,-0.18997996,0.22357742,-0.38133842,0.044468444,-0.32236502,0.9429664,0.13663307,-0.5779472,0.38591933,-0.5645444,0.037952032,0.06336967,0.5924922,0.649376,0.28627226,0.1611376,0.49209502,-0.3915686,0.0060060746,-0.3603735,-0.32267937,-0.15274069,0.0009897436,0.103117265,-0.37007594,0.16677652,0.00941429,0.10910934,0.07996808,0.46273014,-0.59502256,-0.015267645,0.12840493,0.88498324,-0.3213567,-0.18887106,0.87957084,0.94258803,0.8296442,0.03384297,1.4037564,0.32208186,-0.14669213,-0.027309602,-0.33157334,-0.51740295,0.19702442,0.52023274,0.13024853,0.32093,0.11049873,-0.04123809,0.6259493,-0.3561242,-0.02768018,-0.14647171,0.06579482,0.100817814,-0.10833268,-0.54677373,-0.15522416,0.0922444,-0.04984365,0.50547594,0.25196424,-0.15849778,0.4568694,0.03523395,1.6113132,-0.14097434,0.236976,0.0135750575,0.2922983,0.22214384,-0.030239698,0.021092827,0.1291293,0.40514305,-0.080983795,-0.66789776,0.12854739,-0.13632941,-0.5031573,-0.32117683,-0.16185501,-0.20705445,0.017460538,-0.41392916,-0.011008016,-0.08646778,-0.1738619,0.42418644,-2.64875,-0.31667137,-0.24736242,0.27032727,-0.33276513,-0.45658556,0.008092955,-0.5189938,0.6201319,0.3739802,0.42978913,-0.5450265,0.55896705,0.50018233,-0.49287412,-0.26734415,-0.67040443,0.021477597,-0.08765496,0.30189925,0.11455909,-0.2831519,-0.05948656,0.14881788,0.576094,-0.084611736,0.07766138,0.17700407,0.46364778,0.15380494,0.5464991,0.018188324,0.6475112,-0.31555787,-0.25302845,0.4051268,-0.2792676,0.34445506,-0.29862112,0.14069577,0.35829896,-0.24554984,-0.8120912,-0.78167075,-0.6683046,0.9347786,-0.08490475,-0.3873101,0.15736888,0.051930554,-0.22100125,-0.06347729,0.48920673,-0.29646578,-0.05573821,-0.75157374,0.08166443,-0.11106078,0.2956678,-0.04832266,-0.059604533,-0.69434303,0.63496196,-0.13354206,0.4046684,0.35694915,0.293505,-0.28847334,-0.30816394,0.018567953,0.96562153,0.38584214,0.124653734,-0.14495994,-0.35406017,-0.25722274,-0.15586363,-0.11091669,0.61572725,0.6110595,0.12607212,0.02878545,0.29755583,0.003954717,0.12280936,-0.14027603,-0.1908083,-0.022011185,0.08363377,0.6453921,0.4323639,-0.18322925,0.43494654,-0.27199706,0.46464723,-0.2520052,-0.46804348,0.5883406,0.6851962,-0.21851103,-0.11735307,0.70064014,0.46439764,-0.17839466,0.28911307,-0.794969,-0.3206084,0.4075219,-0.18665262,-0.46675247,0.13519272,-0.09648828,0.06974346,-0.99014616,0.15689568,-0.32197165,-0.366523,-0.6411319,-0.19133177,-3.9692307,0.14561664,-0.11587562,-0.11979196,-0.08856209,-0.2641801,0.12287271,-0.57938385,-0.4825146,0.27953306,0.025413213,0.513558,-0.0013436835,0.19486694,-0.36404043,-0.18503262,-0.076772414,0.20768584,0.042928156,0.24011335,-0.04800402,-0.3998582,0.27348152,-0.22198136,-0.5895559,0.13234709,-0.7536889,-0.3420598,-0.28625575,-0.5497028,-0.21450898,0.69223934,-0.4241991,0.13433237,-0.27322772,0.13989545,-0.2508285,0.45311883,-0.0023013353,0.1145869,0.16410144,-0.11123622,-0.010159408,-0.34498987,0.43497974,0.11338342,0.14951739,0.3964804,-0.13862668,0.17737392,0.3295452,0.56826895,0.045912843,0.73044294,0.41691118,-0.11041236,0.38430968,-0.24818571,-0.28043488,-0.4073533,-0.36078352,0.07494485,-0.38053554,-0.65638924,-0.25754127,-0.27840582,-0.781931,0.5781104,0.1882409,-0.17267905,-0.15137707,0.25057805,0.39550108,-0.39183745,-0.022345887,0.019015511,-0.04292488,-0.5038108,-0.4709713,-0.5385206,-0.5122346,-0.08538556,0.90791035,-0.06786333,0.040824283,-0.008073858,-0.10828079,-0.023117809,0.2537177,0.26696655,0.11826155,0.41973883,-0.23321724,-0.6359846,0.63507235,-0.23086299,-0.52464724,-0.58670574,0.15896378,0.6364145,-0.6654271,0.5897784,0.44707564,0.07624163,-0.15662548,-0.3632087,-0.14171429,0.1880859,-0.27232844,0.30436006,0.16390316,-0.7221082,0.57993,0.38155314,-0.16516478,-0.7667154,0.47880435,-0.017170131,-0.2900353,0.031047668,0.34857896,0.27192792,0.15887877,-0.25059995,0.013417006,-0.49153313,0.16395353,0.08207368,0.011785588,0.7452058,-0.4087263,-0.0857914,-0.81236523,-0.063515976,-0.4609786,-0.15843986,0.041591186,0.0021164545,0.094152756,0.32746193,-0.0820359,0.46367216,-0.41659683,0.15667917,0.003820679,-0.18635042,0.056373987,0.4079681,0.24916694,-0.35635558,0.56119156,0.03439465,-0.093738794,-0.08918439,0.019297361,0.505665,0.1401669,0.41840822,-0.33651093,-0.16719493,0.32929987,1.0116872,0.06524175,0.35736564,0.123816766,-0.15660265,0.28020713,-0.037036676,0.024980443,-0.003602228,-0.5392687,-0.032324374,-0.10082921,0.04203844,0.56491166,0.22657715,0.48521465,-0.05956555,-0.41817483,0.05376563,0.12055659,0.077733524,-1.0768858,0.110863246,0.17203477,0.8780119,0.2902221,0.029509654,0.12391822,0.5593647,-0.35702276,0.07492687,0.15409632,-0.037673082,-0.36481762,0.6682654,-0.59859246,0.41469225,-0.0947836,-0.052757483,0.0051511205,-0.22157037,0.33767456,0.8724564,-0.15227413,0.088228464,-0.0714064,-0.109226905,0.038117208,-0.3215027,0.16523328,-0.38512024,-0.23310542,0.74227524,0.56027925,0.51024634,-0.19466053,-0.06205738,0.2879345,-0.06978581,-0.0034796128,-0.019233465,0.19850731,0.01115541,-0.5230819,-0.21144918,0.6416216,0.12743755,0.24035752,-0.0273004,-0.46479088,0.33533984,-0.029429352,-0.054209154,-0.062603034,-0.76276875,-0.007595586,-0.3738239,-0.50360173,0.3303886,-0.07721293,0.08148186,0.11309111,-0.0043114848,-0.26121324,0.4323837,0.14364685,0.8604945,0.31717187,-0.05249834,-0.37840584,-0.026006013,0.22141278,-0.34612226,-0.033119135,-0.26269153,0.1579567,-0.7479083,0.391843,-0.013604641,-0.26989213,0.21149406,-0.16362545,0.033225738,0.48278075,-0.052416228,-0.08748401,0.27156106,-0.34476417,-0.19750714,-0.1983585,-0.16187096,0.29977673,0.14006975,0.17619897,-0.017867966,-0.21080852,-0.4266982,0.5471727,0.16856553,0.16444115,0.3818748,0.134218,-0.24132085,0.011260362,-0.04464885,0.4730899,-0.23415148,-0.1515424,-0.22622347,-0.53088665,-0.3259289,0.27087834,-0.039291166,0.2438642,0.009822324,-0.28097695,0.65937096,0.0047761714,1.0027747,0.15218432,-0.49760434,0.122090645,0.4498008,0.027927687,0.032395426,-0.42061177,1.0304672,0.41202635,0.054189008,-0.13354717,-0.3854055,0.043237936,0.20367728,-0.24438055,-0.14784253,-0.21488857,-0.7631267,-0.28183585,0.19997308,0.31887075,0.10352332,-0.05071176,0.14415905,0.2570021,0.09267426,0.52832264,-0.71744496,-0.08856384,0.42508665,0.3542646,-0.05313899,0.03456038,-0.42949706,0.50360614,-0.55399126,0.1260715,-0.5482796,0.1347014,-0.32200438,-0.051934667,0.2100269,0.059792865,0.3034699,-0.30706105,-0.45071214,-0.093070924,0.4173587,0.18907571,0.05381904,0.7594968,-0.13886294,-0.08086334,-0.06592203,0.6927709,1.2125558,-0.5119753,0.051608827,0.45171443,-0.3416086,-0.44437608,0.2627904,-0.2854376,0.03727588,0.082834825,-0.23484854,-0.37902212,0.27195656,0.11495775,0.023380103,0.09293378,-0.352803,-0.09045548,0.34630826,-0.4062038,-0.22433321,-0.25531742,0.35596296,0.82777214,-0.15378727,-0.2768391,0.08138519,0.44192547,-0.37356868,-0.63044745,-0.11060302,-0.22869632,0.41523427,0.14915879,-0.27224967,-0.26709023,0.05256788,-0.3885041,-0.076521985,0.27394503,-0.36499643,0.115002,-0.42165485,-0.015683489,0.8726725,-0.0716542,0.21985865,-0.8523143,-0.34418252,-0.88355356,-0.43014625,0.5655098,0.2379932,-0.11682507,-0.39016205,0.015400307,-0.11759029,-0.16658977,0.039312597,-0.34463933,0.30102667,0.20489776,0.4953905,-0.1484975,-0.6589981,-0.016832232,0.040842097,-0.2164872,-0.39178547,0.47347063,0.06602046,0.8683906,0.04235202,-0.029261377,0.28321356,-0.47815588,0.115951546,-0.3166781,-0.09104635,-1.0542707,0.0860079,423 +438,0.63436127,-0.1755228,-0.61630726,-0.13695338,-0.31202766,-0.110784926,-0.15061116,0.66157466,0.3209379,-0.36279625,-0.2822427,0.056740057,-0.10099316,0.28743002,-0.2286062,-0.47472933,-0.06444293,0.20787796,-0.44348237,0.6259974,-0.3619863,0.18560563,-0.03456207,0.5696914,0.3296148,0.24152054,-0.11523726,0.013747581,0.022528056,-0.30749288,-0.06541533,0.20785879,-0.5247859,0.26004437,-0.29063788,-0.36228338,-0.12877552,-0.54814273,-0.5614254,-0.7735795,0.16553552,-0.7259819,0.5872865,0.056000404,-0.36412674,-0.032665737,-0.049240913,0.30754372,-0.31501445,-0.029066173,0.0063680154,0.092453666,-0.08455753,-0.16481256,-0.061632693,-0.21508637,-0.55139506,-0.11252514,-0.27784505,0.15839458,-0.2021469,0.20993216,-0.14066336,-0.032294605,-0.1157239,0.72281665,-0.45807192,0.18120928,0.0530485,0.028821,0.26578456,-0.5935115,-0.23500511,-0.19252996,0.15966387,-0.17670575,-0.416087,0.21940483,0.102706656,0.3308459,-0.10075863,-0.085386135,-0.27044436,-0.019872086,-0.00087690353,0.41337866,-0.26481313,-0.61145085,-0.2511931,-0.035985835,0.33358595,0.2745807,0.09419004,-0.35749206,-0.03872076,-0.22100623,-0.2279457,0.44454917,0.5743796,-0.23665275,0.03143953,0.28104925,0.42799434,0.3686151,-0.17577298,-0.021455662,0.016854847,-0.655021,-0.16835071,-0.063169524,-0.16146655,0.442015,-0.020913819,0.1576301,0.46447882,0.022874882,-0.2182579,0.27459806,0.15666585,-0.01833473,-0.34592596,-0.47295782,0.35138136,-0.49974412,0.2482539,-0.08227015,0.6535115,0.12898639,-0.8523919,0.14132546,-0.49199036,0.07007295,-0.11742789,0.40647432,0.7215504,0.56935453,0.18733826,0.6017745,-0.33655867,0.1056134,-0.017607663,-0.31972772,-0.029515719,-0.043854367,-0.28857806,-0.49518687,-0.04271675,-0.121556155,-0.18259227,0.15383497,0.40943772,-0.5163776,-0.2648416,0.10385474,0.7110124,-0.31557122,-0.029567106,0.7978953,1.1983621,1.082084,0.076934196,1.1038462,0.08074614,-0.24415085,0.15649326,-0.14443932,-0.73931086,0.38192096,0.3361455,-0.40233845,0.39512986,-0.011280651,-0.0337875,0.31258565,-0.37766668,-0.18588468,-0.072400086,0.19913563,0.04185152,0.028196242,-0.58850735,-0.3279216,-0.07925109,0.118930325,-0.031259477,0.24452206,-0.23048033,0.4527429,0.172555,1.3007624,-0.035175834,0.0008074785,0.17648885,0.48574534,0.29302746,-0.18352115,-0.19931439,0.29937434,0.39476633,0.056722987,-0.5287546,0.04283396,-0.21810542,-0.3613736,-0.033754766,-0.27873677,-0.13952886,-0.106193915,-0.47791976,-0.20441844,-0.032931842,-0.20754528,0.46084756,-2.7126968,-0.049163792,-0.13218336,0.18407226,-0.20724156,-0.39083338,-0.124125816,-0.3892457,0.40092844,0.2271644,0.61618537,-0.6107799,0.34997422,0.55870515,-0.5864725,0.056553874,-0.57563305,-0.19647874,0.13940477,0.35882112,0.00053956464,0.09702446,0.046380486,0.2506862,0.525581,0.07543576,0.19760169,0.3740897,0.29029018,0.06003912,0.5662776,-0.054706216,0.4529794,-0.36895055,-0.1801268,0.23235513,-0.38118345,0.18078259,-0.119050786,0.094334744,0.63489324,-0.68884426,-0.8741881,-0.61478424,-0.036570378,1.2182579,-0.26930478,-0.25693187,0.22302654,-0.5380831,-0.26591572,0.049504016,0.4107198,-0.20757388,-0.039369863,-0.80127144,-0.20967259,-0.025966397,0.28302065,-0.051016536,-0.050735623,-0.3762212,0.6179264,0.04205048,0.55786747,0.38197055,0.062542446,-0.291984,-0.5761835,0.07140344,0.75732505,0.40617082,0.2648421,-0.30451888,-0.052055273,-0.39719483,0.20452182,0.10460179,0.72859234,0.65592927,-0.15648553,0.057121404,0.25433022,0.1767486,0.10651392,-0.19931455,-0.24049668,-0.28828558,0.08052977,0.6433231,0.7021541,-0.082343556,0.25721404,0.009844899,0.4208828,-0.14152355,-0.42713237,0.41605425,1.0726004,-0.12775534,-0.4650806,0.6774177,0.6066043,-0.15412576,0.4334535,-0.4852216,-0.24707203,0.27177387,-0.06223883,-0.38562134,0.27978355,-0.29251167,0.22415796,-0.8327598,0.19327047,-0.47771695,-0.63000154,-0.6331008,0.004480596,-2.7177727,0.32194063,-0.100119285,-0.23440015,-0.120582126,-0.2016449,0.22732806,-0.5165502,-0.7410296,0.20498304,0.056424435,0.66456497,-0.15186153,0.04980923,-0.05833157,-0.3504855,-0.30270982,0.21367595,0.3889645,0.32833046,0.07241466,-0.5211568,-0.29872963,-0.113840096,-0.39991996,-0.00025872674,-0.7210652,-0.33951154,0.01485981,-0.69187653,-0.17639923,0.5015412,-0.24100903,0.03769624,-0.04013914,0.07962065,-0.06280477,0.18233855,-0.116498984,0.2164621,-0.0434807,-0.11208952,0.10338408,-0.1163725,0.183894,0.100217715,0.24360272,-0.053383876,-0.23642926,0.17668514,0.51952803,0.8633243,-0.117238395,0.93654007,0.47509387,-0.114097916,0.2590469,-0.21039137,-0.3947629,-0.5237261,-0.15318504,-0.0361228,-0.40830275,-0.21532081,0.03221074,-0.42205328,-0.82800376,0.6015983,-0.04944551,0.070246294,0.030915039,0.080601655,0.6264333,-0.13417788,0.03029327,-0.06965578,-0.11579711,-0.5255558,-0.28698045,-0.63493824,-0.28410107,-0.12142681,1.250857,-0.26933554,0.10197952,0.083103836,-0.32839075,0.10075688,0.30067566,-0.12938455,0.119429015,0.3615783,-0.07394147,-0.6165782,0.27199104,-0.09524324,-0.2521247,-0.50286543,0.29928213,0.6815314,-0.6123695,0.63502795,0.28056353,-0.047875278,-0.34308004,-0.59208155,-0.2446319,0.08848763,-0.18080674,0.60041434,0.40083867,-0.6909718,0.34220117,0.37471056,-0.25792366,-0.7364909,0.68399274,0.035487644,-0.29390875,-0.1047488,0.45500994,0.013516622,-0.07547135,-0.034347627,0.24364607,-0.1205814,0.30897194,-0.0061986274,-0.17288415,-0.119330205,-0.27890903,0.036484446,-0.82607746,0.04028062,-0.48833588,-0.35075393,0.44632095,-0.013452434,0.119615674,-0.04082489,0.11675453,0.3973896,-0.2442921,0.020637367,-0.31080046,-0.3381803,0.5207762,0.5353474,0.54908544,-0.20496342,0.51562476,0.06679062,-0.006016714,-0.04719798,0.19562839,0.35235718,-0.18995993,0.4386606,-0.008116952,-0.20507877,0.25629407,0.53738904,0.30896482,0.2833642,0.011987345,0.115085684,0.1997569,0.0889522,0.3305977,-0.021777919,-0.5941447,0.016723577,-0.30260405,0.11282454,0.47605518,0.07105429,0.09206401,-0.15332188,-0.36041954,0.0043454575,0.12019849,0.18994963,-1.5496639,0.39218372,0.06346161,0.78901994,0.5998797,0.07930546,-0.059739444,0.67366487,-0.081045814,0.09964997,0.48067173,0.17221625,-0.3902233,0.35478958,-0.4644373,0.5413805,0.068156585,0.047925774,0.09621467,-0.17644283,0.5124199,0.8414699,-0.07342571,0.06747253,0.12935919,-0.32839957,-0.010149568,-0.36121854,0.018446812,-0.5542001,-0.29856706,0.73125154,0.5621714,0.33402762,-0.21557076,-0.048037004,0.15529595,-0.14780955,0.14294098,0.091297254,-0.14900632,-0.11700606,-0.6130184,-0.0044025397,0.52215254,-0.1239833,-0.01417418,0.058588736,0.016417775,0.20303817,-0.009833,0.012796538,-0.1199648,-0.72294384,-0.12845123,-0.42574042,-0.25939566,0.34375006,-0.21278928,0.09223969,0.17806177,0.074927926,-0.28586164,0.40383333,0.014933271,0.7679849,0.028393855,-0.10622658,-0.121797785,0.21018216,0.15753198,-0.090315886,-0.18433753,-0.45245442,-0.016463665,-0.6483608,0.3200233,0.112038136,-0.31786898,0.027631888,-0.011748819,0.118401416,0.39888865,-0.16343173,-0.29496628,-0.16261151,0.05992908,-0.23241642,-0.26871797,-0.22447598,0.17483532,0.23825786,0.05447381,-0.02527828,-0.07012128,-0.0490581,0.49119917,0.0030835846,0.5865713,0.36672983,0.21195997,-0.3417488,-0.083572224,0.22341289,0.6340267,-0.0032074836,-0.1309181,-0.29000887,-0.34859723,-0.38588953,0.16546132,-0.12470198,0.455925,0.12630497,-0.13923158,0.6824943,-0.04474252,0.99133146,-0.20034842,-0.4427603,0.013187612,0.56663287,-0.034764986,-0.11675096,-0.28144246,1.0470915,0.48680282,-0.23199794,-0.15517308,-0.41633326,0.11686436,-0.121494934,-0.26409474,-0.21280222,-0.07531034,-0.4872704,-0.06695612,0.14513159,0.26362076,0.37847498,-0.05518164,0.051176786,0.31736472,0.008960651,0.26145306,-0.38170737,0.031561118,0.2039415,0.26673967,0.06749726,0.108465485,-0.54469097,0.22831175,-0.4758629,0.12973489,-0.3459433,0.19588806,-0.29588,-0.4726484,0.18706474,-0.07584627,0.33276314,-0.4215496,-0.25922257,-0.3669437,0.62948895,0.10522051,0.08446802,0.5543441,-0.16052951,0.12132098,0.049150746,0.45545465,0.78094643,-0.26716554,-0.17918672,0.28918117,-0.34230515,-0.37400454,0.057109497,-0.43992114,0.3541408,0.13044259,-0.0911988,-0.6482123,0.27085716,0.031389546,0.13346761,0.03735608,-0.87511647,-0.057624307,0.31340376,-0.15931962,-0.10485532,-0.38151282,0.081250615,0.4470389,-0.21306147,-0.42599055,0.02875503,-0.0058625424,-0.06654795,-0.56705064,0.059241295,-0.55439216,0.23888218,0.120214224,-0.35968113,-0.2916382,-0.091204986,-0.41482466,0.14262705,0.106195256,-0.2859438,0.13114585,-0.3785573,-0.06624163,0.9404564,-0.2773979,0.22023287,-0.36059457,-0.48290876,-0.7676535,-0.25687316,0.4857646,0.13445185,-0.007162075,-0.8844143,-0.004467883,-0.12256008,-0.23708224,-0.07176117,-0.24080944,0.47349724,0.13230495,0.50639784,-0.020158023,-0.8813469,0.45900744,0.02465352,-0.2630545,-0.51735103,0.49345464,0.067326136,0.8631467,0.059736557,0.17244835,0.2587282,-0.6283795,-0.1388463,-0.17092372,-0.048206985,-0.6065706,0.15696101,425 +439,0.51366365,-0.34278736,-0.2526229,-0.110519156,-0.12799208,0.15645483,-0.020287257,0.45809975,0.18976621,-0.5122078,-0.1987977,-0.092914365,0.08531503,0.16584037,-0.2689094,-0.56345886,-0.089719094,0.05284924,-0.2677122,0.6203071,-0.48295972,0.25631312,0.025560172,0.3023181,0.12103493,0.20365277,0.19177864,-0.112294175,-0.29653797,-0.12439269,-0.1819615,0.44313684,-0.44917122,0.1260597,-0.15278356,-0.35324517,-0.03717763,-0.5475311,-0.42909673,-0.6446252,0.3455798,-0.872808,0.43184668,0.08808172,-0.21182823,0.31136182,0.02745332,0.09802798,-0.17989671,-0.035636242,0.09025916,-0.0742992,0.047301583,-0.21808818,-0.12800366,-0.29300356,-0.6615239,0.21588878,-0.41469154,-0.23899187,-0.12566002,0.18408616,-0.23362698,-0.15266256,-0.15749338,0.67451096,-0.39097002,-0.089982286,0.14071995,-0.08110307,0.20331396,-0.6096167,-0.24347152,-0.03342402,0.07832109,-0.12279577,-0.2157494,0.16835043,0.3888496,0.5743028,0.0035493714,-0.20548984,-0.4645976,0.07905858,0.13308951,0.47373837,-0.21134843,-0.6846186,-0.1489114,0.051315915,0.026976313,0.14725873,0.17249636,-0.26407745,-0.017533425,0.1279818,-0.35375023,0.33233014,0.6159907,-0.50006056,-0.3908177,0.32003906,0.50685674,-0.024630632,-0.085585065,-0.07889397,0.041468024,-0.50612295,-0.11152721,0.26687112,-0.34084964,0.6309697,-0.1743487,0.21371739,0.55665696,-0.14106613,0.14696975,0.097446375,0.05186177,-0.0854429,-0.3739201,-0.14660656,0.16121556,-0.37295356,0.002829654,-0.30847153,0.9243908,0.14247808,-0.83149606,0.41339806,-0.43676642,0.176182,-0.09206134,0.46704397,0.6105265,0.30185032,0.36585554,0.71255463,-0.5914475,-0.027210891,-0.033440035,-0.26280984,-0.08584539,-0.1875305,0.028176626,-0.44275147,-0.057222784,0.10135579,0.08260291,-0.008589902,0.41550726,-0.63394654,-0.11687446,0.13598858,0.8539376,-0.24987794,-0.12754059,0.81896657,1.0301888,1.01517,0.08115011,1.2140082,0.28957638,-0.27414733,0.36500448,-0.5251852,-0.58444065,0.240145,0.38352495,-0.014208623,0.20272446,-0.050245803,-0.059216913,0.3984757,-0.42207235,0.1512483,-0.30501047,0.13464117,0.24248055,0.037863042,-0.44545883,-0.30603164,-0.029876342,0.029634979,0.14600317,0.23448586,-0.29609564,0.21168362,-0.006403297,1.5437254,-0.08924435,0.097873375,0.020392636,0.44479233,0.23897502,0.023539374,0.010919852,0.2478917,0.38500157,0.11507776,-0.60662323,0.07692267,-0.29396006,-0.55971324,-0.07470103,-0.24243638,-0.01566923,0.039272524,-0.4769078,-0.13679121,-0.13432355,-0.39577106,0.4658072,-2.8351707,-0.22481643,-0.06648358,0.34084153,-0.34815782,-0.35683864,-0.09120687,-0.5170471,0.46926895,0.4439222,0.3969976,-0.72276586,0.32086772,0.38383222,-0.4047831,-0.054716174,-0.73872524,-0.042239822,-0.14763677,0.40623084,0.20192322,-0.14644429,0.05292332,-0.09299635,0.61428106,0.021788942,0.10909099,0.21539696,0.3648441,-0.019420488,0.38240665,0.0034042087,0.38949612,-0.2742503,-0.15226956,0.42925352,-0.5005532,0.2001672,-0.023492511,0.095274806,0.4168586,-0.55749446,-0.7676878,-0.6837124,-0.36528158,1.1291236,-0.09592999,-0.483187,0.21284994,-0.20782045,-0.21485297,-0.14276025,0.5330824,-0.041712668,-0.11260373,-0.7863582,0.13353391,-0.0501186,0.06407924,-0.039419223,0.08291594,-0.40411657,0.7120476,-0.07428861,0.43200037,0.34466144,0.30156612,-0.40492877,-0.5073586,-0.04897689,1.1579325,0.2997114,0.1904255,-0.15422414,-0.131484,-0.27982637,-0.090995386,0.053954422,0.60668504,0.7769357,0.0624473,0.027517065,0.40076905,0.020349452,0.07589626,-0.19437753,-0.30933002,-0.16746283,0.0052762455,0.60009474,0.58404195,-0.24929254,0.45075664,-0.14821155,0.21455275,-0.29604387,-0.38808012,0.5656696,0.9042373,-0.13363412,-0.2593284,0.6364407,0.53353775,-0.37898856,0.36613682,-0.5604878,-0.34923676,0.39795583,-0.32020378,-0.48123953,0.20235303,-0.2863932,0.064644374,-0.74794143,0.3970892,-0.1011933,-0.39208105,-0.6801714,-0.16300039,-3.8097458,0.19553478,-0.26557574,-0.09870559,-0.017683323,-0.14269756,0.12211809,-0.58712375,-0.42305812,0.17404087,0.0922596,0.48748192,-0.08958299,0.24258125,-0.31226653,-0.19897996,-0.21183035,0.15799603,0.013194678,0.29134065,0.0001839442,-0.31778383,0.1881802,-0.15255284,-0.38226956,0.12219964,-0.5710495,-0.6183491,-0.12566267,-0.53662974,-0.4649847,0.64808,-0.41941592,0.06481037,-0.2392919,0.039127864,-0.106843926,0.49725088,0.11523632,0.12273019,0.01917175,-0.1365487,0.013294271,-0.32583585,0.38175708,0.03281013,0.17683113,0.5521,-0.1501743,0.20367506,0.5057883,0.55431193,-0.013738968,0.92890614,0.55517143,-0.09350366,0.32005218,-0.27461046,-0.12957011,-0.64005023,-0.28643754,0.04113962,-0.46067485,-0.48736662,-0.03221649,-0.40480706,-0.7994491,0.44731817,-0.06341529,0.26011625,0.019770814,0.3881753,0.60348505,-0.133494,0.088392474,-0.04459027,-0.11659279,-0.45901734,-0.30779156,-0.6635273,-0.4323501,0.15120329,0.74421823,-0.047414005,-0.14058976,0.0700054,-0.11753696,-0.2171575,0.054449294,0.020907333,0.16686545,0.33717924,-0.094296746,-0.6568188,0.4348519,-0.045824084,-0.21388586,-0.4556488,0.15209453,0.63088,-0.6482797,0.66412,0.38306236,0.16673458,-0.085722804,-0.44210666,-0.18992543,-0.0141561795,-0.24696036,0.45075276,0.21545961,-0.84534645,0.48607874,0.4345546,-0.11782583,-0.8104087,0.47551972,-0.048169114,-0.20774145,-0.120655365,0.42548147,0.272645,0.09231542,0.0021311832,0.16841769,-0.63370705,0.16931374,0.18237914,0.0073261773,0.504053,-0.19865441,-0.20916311,-0.714119,-0.09934343,-0.6110584,-0.26591617,0.24402383,0.14359857,0.10478575,0.28810802,-0.006135055,0.45707288,-0.22351758,0.076969914,0.1428623,-0.08481825,0.23288883,0.38410214,0.42626414,-0.36672786,0.45805565,-0.030090949,0.020876423,-0.0428757,0.010727601,0.37678313,0.22239807,0.47044042,0.0053303284,-0.26067096,0.4480678,0.81106776,0.18830717,0.4905203,0.15135813,-0.21644142,0.35317725,0.05373799,0.15864551,-0.103296876,-0.48655206,-0.0083118845,-0.11567237,0.19508316,0.31891146,0.07724837,0.34088883,-0.14453351,-0.20583235,0.046196546,0.2897916,-0.06547816,-1.010207,0.17776458,0.086192675,0.8847467,0.49666172,-0.09369966,-0.046714455,0.57894117,-0.263238,0.17042239,0.38875988,-0.08878323,-0.5690858,0.5871439,-0.6403182,0.48717612,-0.25659028,0.079306565,-0.14271957,0.01387919,0.28038287,0.64139706,-0.14617357,0.03782358,-0.12217043,-0.31909758,0.2075402,-0.5071484,0.33916304,-0.4691225,-0.21634956,0.7173742,0.5500659,0.3355421,-0.16120042,-0.039952457,0.07001377,-0.07757097,0.19202545,0.053769328,0.070527576,-0.05852071,-0.8500909,-0.2868762,0.50626093,-0.015239452,0.19533762,-0.07422041,-0.16640179,0.2292802,-0.30361986,-0.22544847,-0.029771173,-0.5956873,-0.044003338,-0.12847964,-0.61049515,0.41571158,-0.063595906,0.20505439,0.17660587,0.058972068,-0.44652,0.099481404,0.22590597,0.65933424,-0.0476768,-0.05877779,-0.5189723,0.051836375,0.18191688,-0.2351722,-0.06432404,-0.24476917,0.16803011,-0.6221774,0.46916315,-0.0038175497,-0.40749738,-0.0035430107,-0.08490718,0.046504386,0.6595899,-0.16836119,-0.1548126,-0.11243933,-0.21506444,-0.313617,-0.037535507,-0.050663147,0.32140714,0.14212729,-0.011747931,-0.018801374,-0.3012379,-0.18321885,0.47212616,0.16700228,0.2934184,0.39351606,0.14952575,-0.30921248,-0.09818753,0.16874568,0.5249191,0.0022406876,-0.184617,-0.23551463,-0.47462717,-0.38003296,0.08460719,-0.030939434,0.34958002,0.018040879,-0.3730965,0.6989598,-0.057491083,1.3583337,0.21438251,-0.2781177,-0.08567464,0.49325964,0.02945217,0.0627723,-0.44730368,0.98495436,0.51756126,-0.054951105,-0.07197944,-0.35705322,0.04312549,0.25611955,-0.106980965,-0.10891839,-0.03405843,-0.7782712,-0.28634453,0.18457265,0.23457615,0.11250603,0.020727083,0.024890738,0.1812649,-0.0030148583,0.34249067,-0.46362028,-0.1313426,0.28262442,0.40880257,-0.019403415,0.14516446,-0.33472252,0.3091755,-0.48352018,0.12208253,-0.2816357,0.09105679,-0.19083138,-0.17816785,0.30856448,0.06631242,0.4604828,-0.23436478,-0.5722515,-0.23147273,0.5184434,0.090342335,0.098155834,0.49512672,-0.22475357,0.004687735,0.14038768,0.6112474,1.4091034,-0.09800776,-0.058605663,0.23809217,-0.32433876,-0.8367391,0.44331786,-0.22863555,0.20034036,0.051122587,-0.20920454,-0.46342307,0.2969819,0.3005361,0.03455949,0.16826083,-0.5008758,-0.29220995,0.2466698,-0.30828813,-0.12819245,-0.24380681,0.16977215,0.7044589,-0.38415337,-0.24442632,-0.03748711,0.39673838,-0.27590173,-0.5772295,-0.046415504,-0.4991994,0.29505596,0.15200599,-0.33710593,-0.041229844,-0.008652432,-0.44234136,0.04139169,0.23644029,-0.37118545,0.06536516,-0.15682082,-0.13812374,0.9066893,-0.0536162,0.2679722,-0.66551155,-0.48915675,-0.95514864,-0.32573754,0.39269066,-0.01581292,0.051010076,-0.5910567,-0.007945738,0.0013848458,-0.11070793,-0.094374895,-0.5625068,0.5476073,0.11955606,0.47514147,-0.10723179,-0.5683576,-0.031424053,0.20349933,-0.05953788,-0.5288746,0.51505,0.023987344,0.7858524,-0.00067864306,0.09231899,0.37576288,-0.54425555,-0.11519419,-0.27467713,-0.2931628,-0.6841596,0.09551083,427 +440,0.554978,-0.2876211,-0.6992448,-0.30416185,-0.30579787,-0.14310232,-0.051252764,0.57669437,0.21269357,-0.57459915,-0.21035492,-0.30995908,-0.026344487,0.4523813,-0.23443238,-0.7675276,-0.026280528,0.13235453,-0.52363044,0.5370087,-0.19157502,0.45390216,0.07483334,0.46724805,0.2751817,0.23399459,0.20563987,-0.0004849157,0.03508641,-0.2296096,-0.021609485,0.18023355,-0.72455263,0.22741233,-0.18825828,-0.47732875,0.05946344,-0.39893582,-0.17513934,-0.84560126,0.2280015,-0.9299125,0.5332263,0.019223157,-0.3547056,-0.03603203,0.1871297,0.35517687,-0.19788016,0.048503764,0.13596086,-0.004130602,-0.03715289,-0.009731932,-0.1321555,-0.4055592,-0.6336368,-0.0009800483,-0.3909072,-0.15160052,-0.22629046,0.1806655,-0.4506183,0.09563075,-0.03545704,0.5423879,-0.41389707,-0.18296258,0.34572443,-0.33397555,0.43712166,-0.5233111,-0.13723803,-0.20327474,0.13190225,-0.28687695,-0.18686928,0.47883466,0.25646925,0.5782803,0.06678315,-0.3387491,-0.3300763,0.032249454,0.12923373,0.36489272,-0.105277434,-0.38178807,-0.0796113,-0.11130444,0.27398533,0.25364912,0.3628311,-0.32783017,-0.11103965,-0.030572537,-0.17692293,0.15087639,0.5640964,-0.26168463,-0.15571538,0.20978378,0.52443814,0.14509806,0.002805812,0.24297889,0.04078201,-0.4558356,-0.26654878,-0.00039402928,-0.20562431,0.59823877,-0.05937932,0.29390964,0.68830293,-0.17093626,0.061962068,0.017069574,0.036896355,-0.21088552,-0.31364962,-0.44075066,0.5016075,-0.5113627,0.1504778,-0.3511066,0.8508703,0.15345071,-0.8012309,0.2529651,-0.5098964,0.08698373,-0.24181738,0.47872597,0.64274585,0.59228843,0.16671406,0.76687855,-0.5353905,-0.008000876,-0.0483256,-0.38380337,0.13316391,-0.20840335,-0.10020293,-0.39091828,-0.056763273,-0.0017551908,-0.12619671,0.0812286,0.30127534,-0.52413833,-0.13333881,0.058276992,0.84465724,-0.28558728,-0.016840747,0.7171079,0.9150711,1.056878,0.0004796737,1.1171349,0.16857578,-0.2503667,0.2332698,0.04147276,-0.81677675,0.33851737,0.42889038,-0.12107414,0.3484246,-0.08406405,0.030179905,0.55956763,-0.4578835,0.11524254,-0.17011191,0.22430389,-0.13768415,-0.22894947,-0.5706602,-0.2962513,0.06262701,0.0131383585,-0.1496021,0.33966866,-0.10289966,0.5430094,0.13364847,1.7241004,-0.03307811,0.089334235,0.06714385,0.46740177,0.25294465,-0.18245813,-0.10590859,-0.0359898,0.3025561,0.17531319,-0.5380698,0.10102116,-0.25027663,-0.60905266,-0.13929759,-0.4083925,0.039464083,-0.29539487,-0.56072515,-0.11419628,-0.09958006,-0.2760911,0.27748576,-2.3165023,-0.08590074,-0.20927441,0.4023705,-0.32706413,-0.28557086,0.00479057,-0.6088214,0.4473238,0.39808813,0.5453509,-0.68365467,0.4282832,0.5349702,-0.4742289,-0.048186813,-0.6301834,-0.124075934,0.0018465945,0.14875767,0.14463331,-0.18387116,0.052697264,0.25096747,0.47121528,-0.09944887,0.029924218,0.3005131,0.2860622,0.0368695,0.5896225,-0.11339973,0.5615647,-0.39906338,-0.15755312,0.42165932,-0.42981106,-0.0057389056,0.030618817,0.11621483,0.3658029,-0.5540606,-0.93762577,-0.75796455,-0.37179485,1.1527689,-0.2024122,-0.46919647,0.38144973,-0.025190694,-0.07016046,-0.06417266,0.5010657,-0.19837852,0.12337331,-0.8427374,0.0070581394,-0.22655511,0.26195383,-0.013687889,-0.05000371,-0.5172435,0.5011677,-0.047598932,0.57857805,0.5132402,0.25366133,-0.40714058,-0.6628813,0.1525042,0.9984948,0.39230442,0.12770998,-0.2073966,-0.11439557,-0.61699057,-0.0053625107,0.14156055,0.39947703,1.0985858,-0.10988621,0.1403745,0.25781414,0.08900191,0.059109736,-0.0874152,-0.44589403,-0.15839098,0.16869657,0.6041528,0.7034256,-0.05461661,0.27698946,-0.13606976,0.59340906,-0.20165937,-0.5831191,0.58526576,0.98923475,-0.17685437,-0.24528459,0.6699294,0.36731324,-0.2687349,0.62535614,-0.78564394,-0.4515598,0.48818588,-0.13992251,-0.51008576,0.18069792,-0.36769125,0.29828128,-1.0435086,0.38088745,-0.42883188,-0.21783893,-0.62407845,-0.13491312,-3.1879308,0.23944418,-0.14409105,-0.17129956,-0.07650423,-0.16088045,0.32560307,-0.7810317,-0.7700593,0.1332667,0.15267207,0.78635234,-0.0058022058,0.062283732,-0.30931643,-0.2908551,-0.20844293,0.099453375,0.2651946,0.2190782,0.24178384,-0.643935,-0.22417913,-0.18852463,-0.5683134,0.118659206,-0.52564585,-0.6733286,-0.22539333,-0.68264925,-0.3506414,0.6976738,-0.09555693,0.038516648,-0.021444967,-0.12949081,-0.119747065,0.23087265,0.0059496677,0.16464202,-0.010701115,-0.019559784,-0.06364714,-0.28866133,0.114186086,0.11922221,0.2304001,0.11554611,-0.3201346,0.2415341,0.758215,0.6956531,-0.21734868,0.6923433,0.5145031,0.006752372,0.43672252,-0.29213545,-0.39268127,-0.66876996,-0.18878281,-0.06893408,-0.45066068,-0.26427922,0.14472485,-0.35534698,-0.8569089,0.79406357,0.0017373307,0.15104966,-0.002064575,-0.038449235,0.32465097,-0.15477514,-0.2623639,-0.04517717,-0.07337255,-0.5237189,-0.30450282,-0.91247004,-0.61004436,-0.016651912,1.2759372,-0.12777512,0.028077511,0.15528563,0.024164122,0.27035502,0.107914194,-0.032146696,0.13051699,0.37788296,0.0110302055,-0.70411146,0.59787375,-0.0018198745,-0.06922644,-0.43902764,0.20551352,0.51344854,-0.65751475,0.24291642,0.31904012,-0.058403574,-0.06279372,-0.5937995,-0.14026105,-0.0541536,-0.15402956,0.51452035,0.21718237,-0.72177607,0.33971164,0.38318238,-0.24816836,-0.7655012,0.4492481,-0.05782487,-0.2814494,-0.07652478,0.2870929,0.030775595,0.054286234,-0.22418694,0.18689695,-0.35297483,0.20165393,0.41410422,-0.09663046,0.5522839,-0.21162947,0.064119406,-0.8338168,0.11968309,-0.55578554,-0.31415892,0.21552123,-0.105762616,-0.13144594,0.2753511,0.14992951,0.38295487,-0.20596603,0.052951314,-0.074456796,-0.279197,0.4767255,0.49012676,0.54252994,-0.51757616,0.58977944,0.03237227,-0.083056286,-0.07375594,0.049477916,0.5255662,0.08419679,0.29666874,0.02332156,-0.1386402,0.3470549,0.6602789,0.15396738,0.45755535,0.0068124705,-0.10391651,0.07315525,0.24362536,0.16842754,0.12198845,-0.5308201,0.05682366,-0.14729674,0.044838924,0.6369466,0.15091369,0.37884673,-0.07394797,-0.25512728,0.054276995,0.14012972,-0.31733721,-1.4837695,0.45118597,0.18415701,0.860237,0.6392355,0.14380002,0.05595668,0.52240896,-0.1565188,0.18627928,0.22855751,-0.14174715,-0.53479826,0.7980841,-0.6110421,0.42789808,0.17416371,0.07110773,-0.01056792,-0.02367711,0.49855575,0.7008199,-0.0021380612,0.2770848,-0.042226326,-0.16304262,0.20723298,-0.45302382,-0.124933235,-0.39119262,-0.240411,0.71959496,0.4420605,0.30091554,-0.16046606,-0.02762559,0.107335515,-0.22023785,0.24639463,-0.13650557,0.11622204,0.02501091,-0.4861775,-0.24218094,0.6248564,0.015459814,0.17239495,-0.11704842,-0.28821912,0.20873106,-0.054963384,0.09670215,-0.0053127473,-0.8537465,-0.02183706,-0.638363,-0.08722212,0.34537268,-0.22429173,0.12070114,0.20202589,0.081060715,-0.3368695,0.3601728,0.17334248,0.68467283,-0.051591218,-0.28669235,-0.32575372,0.11441798,0.1850435,-0.34498554,-0.082224905,-0.2498569,-0.02269732,-0.47535166,0.30503258,0.082329,-0.22462396,0.20912118,-0.15140884,-0.023684442,0.43248802,-0.19468403,-0.071946755,0.096982025,0.04221197,-0.21840255,-0.277721,-0.22467057,0.22862364,0.053383414,0.07961892,-0.0023846093,-0.029759841,0.14221181,0.5454701,-0.060315188,0.34322938,0.4606347,-0.08810481,-0.642163,0.0425568,0.24382018,0.4680594,-0.07190818,-0.057635177,-0.4632502,-0.33311257,-0.24689615,0.083279036,-0.2541311,0.39321235,0.042960458,-0.33510646,0.8182478,0.256198,1.25313,-0.11800779,-0.50186867,0.06287778,0.40010306,-0.019512352,-0.19079758,-0.35833025,1.0661128,0.5798572,-0.3422231,-0.3218561,-0.4029869,-0.18620834,0.08309824,-0.28093067,-0.25492945,-0.17824122,-0.74932575,-0.3816697,0.2615684,0.35002324,0.17390393,-0.15138374,0.101602614,0.22040297,0.06065783,0.33543035,-0.50776917,-0.075732045,0.12414087,0.21540008,0.057482485,0.13067997,-0.5098517,0.4153533,-0.6101491,0.14310098,-0.26434824,0.20569392,-0.061518915,-0.42573997,0.22491257,0.022673564,0.27626893,-0.37012705,-0.3839372,-0.22440471,0.5547997,0.08168525,0.25564185,0.7715491,-0.3723479,0.1682341,0.0075344318,0.5786673,1.0506752,-0.1512043,-0.02306199,0.40523916,-0.4211629,-0.6348556,0.2273331,-0.23835008,0.13711728,-0.15907721,-0.4054185,-0.63424605,0.1534792,0.24195062,-0.12991521,0.24971573,-0.6124965,-0.20213284,0.3359297,-0.35751915,-0.36630282,-0.48110482,0.03387509,0.42765373,-0.24368058,-0.30935344,0.231446,0.17296967,-0.053970624,-0.5320739,-0.23909776,-0.2564467,0.2812254,0.162097,-0.5768861,-0.038003888,0.09142796,-0.3856566,0.18953209,0.3228093,-0.25060046,0.11296922,-0.35175657,-0.029988868,1.0418651,-0.0039693033,0.0020953822,-0.5709253,-0.46460894,-0.9688896,-0.40068898,0.5709581,0.23559071,-0.026846869,-0.71991485,-0.067585096,-0.30190244,-0.03201591,-0.06367482,-0.09328932,0.3534624,0.16508438,0.6372079,-0.05355387,-0.77089036,0.3051956,0.28220218,-0.14418118,-0.47093382,0.5512167,-0.026698688,0.81995124,0.14275233,0.09955255,0.41106907,-0.5917943,0.022206562,-0.22732256,-0.2257575,-0.47862187,-0.020139256,429 +441,0.43284628,-0.6280102,-0.4661105,-0.17515256,-0.36287543,-0.047564384,-0.41436952,0.14968814,-0.015466826,-0.42452893,-0.12271454,-0.034624245,-0.045457177,0.522468,-0.2844855,-0.6080216,0.10847872,0.21019675,-0.66100013,0.8495828,-0.40106556,0.2282434,0.17502668,0.33181217,0.27738017,0.0019800875,0.34651944,0.07396941,0.15078886,-0.29332992,-0.05016038,0.16299722,-0.77424395,0.23434761,-0.27744195,-0.617248,0.050838705,-0.3871269,-0.44221255,-0.96880203,0.28042835,-0.9915381,0.6418777,0.04225725,-0.51226026,0.11305916,0.36912152,0.3523159,-0.055443235,0.016743716,0.03721768,-0.20508528,-0.20688686,-0.1343139,0.053699356,-0.63119644,-0.6916668,0.047918376,-0.8362056,-0.18714762,-0.1725627,0.2547733,-0.4390029,0.075566955,-0.16596739,0.2754008,-0.5806214,-0.16796279,0.117463745,-0.005639815,0.43537256,-0.64475614,-0.061407242,-0.2125379,0.13563868,-0.040142585,-0.24656078,0.38961357,0.22880994,0.6838364,0.10613227,-0.37897423,-0.061990213,-0.2428297,0.18268108,0.45152217,-0.022304995,-0.31874546,-0.2694433,0.015508004,0.59892005,0.27575448,0.015440558,-0.2977817,-0.07071746,-0.0055633783,-0.25183246,0.46100587,0.43980727,-0.35556954,-0.29052094,0.26722378,0.59090364,0.13076892,-0.24060354,0.23072144,0.10368768,-0.5511721,-0.17587182,0.35951713,-0.1837736,0.43074137,-0.1966739,0.2963889,0.6276846,-0.23991217,0.061244477,0.1753601,-0.015634337,-0.25408587,-0.033628944,-0.4077273,0.2861097,-0.6998132,0.14496711,-0.36470705,0.8051357,0.04579676,-0.73229885,0.25501293,-0.665572,0.22327577,-0.11727078,0.82291085,0.9285111,0.44968963,0.33037332,0.67849725,-0.21060348,0.041082088,-0.04964653,-0.31556305,0.18493976,-0.49446386,-0.009948194,-0.5967956,0.016525086,-0.1458542,-0.020909885,-0.20207189,0.8140796,-0.40292707,-0.12474822,0.011782007,0.71670425,-0.24391782,0.15972665,0.83655727,0.9401504,1.1499726,0.28485844,1.2888767,0.28286752,-0.08048008,0.01778948,0.029063335,-0.8564099,0.35464576,0.65189296,0.6039843,0.4445622,0.01791511,0.043236874,0.51037353,-0.6891023,0.10123829,-0.22885904,0.27980494,-0.19494824,-0.065793164,-0.7114814,-0.2374037,-0.0039005023,0.11683541,-0.0565643,0.3685148,-0.18831706,0.5560249,0.11081842,1.3897092,-0.26877183,-0.092605524,0.06093227,0.52857167,0.28399786,-0.17740776,-0.05793615,0.1471492,0.5424413,0.079899274,-0.73677635,0.15210582,-0.29752347,-0.44465867,-0.33167243,-0.38548407,0.07313661,-0.3262031,-0.3769731,-0.2630903,-0.017629582,-0.32838398,0.24700777,-2.3635924,-0.35556835,-0.17002524,0.30407065,-0.38382673,-0.19488072,-0.03888497,-0.4871716,0.5761389,0.5383353,0.60491604,-0.80380887,0.4787943,0.53750515,-0.5891398,0.02904376,-0.7886189,-0.20184056,-0.1617453,0.7007991,0.015142388,-0.258221,-0.151033,0.38864738,0.5689396,-0.19671483,0.21312417,0.4091625,0.34866786,-0.1162609,0.45648935,0.03964698,0.36303115,-0.3758312,-0.14417017,0.5331936,-0.16194668,0.23106954,-0.14753962,0.16043188,0.49558607,-0.69186443,-0.89775324,-0.66174215,-0.3877571,1.0815637,-0.38686222,-0.66812044,0.21289727,-0.32484207,-0.051809926,-0.019710246,0.37182027,-0.26474136,0.09772807,-0.863719,-0.08953314,0.055383272,0.3581141,-0.0007618964,0.058027744,-0.36462218,0.7199942,-0.06761594,0.33313414,0.25362816,0.30677778,-0.31195784,-0.5061592,0.19012567,0.772298,0.65416557,0.11439968,-0.39700085,-0.33024392,-0.2428576,-0.21595709,-0.101591244,0.45571023,0.89096034,-0.17988463,0.10981203,0.30079055,-0.32415706,-0.018625693,-0.18784492,-0.2303251,-0.14225397,0.24581735,0.6282207,0.60823566,0.018755564,0.36375025,-0.10985807,0.37918594,-0.018925011,-0.6577368,0.5690815,0.95279646,-0.10640652,-0.033397626,0.65449685,0.69687796,-0.3084716,0.66740936,-0.90724134,-0.4656895,0.39582726,0.053339582,-0.4378402,0.18278591,-0.56315154,0.34480497,-1.1029736,0.43187937,-0.44730407,-0.35242304,-0.67487746,-0.17029183,-2.8504775,0.22267506,-0.18117142,-0.13096984,-0.30229023,-0.3546969,0.48520088,-0.5963088,-0.6671506,0.08465368,0.07685784,0.7525886,-0.053735103,0.053532492,-0.4022284,-0.28791434,-0.47493818,0.13444361,0.23161857,0.24126102,-0.2165893,-0.45949632,0.026971022,-0.29536012,-0.3797616,-0.0700827,-0.70917946,-0.78927153,-0.28928784,-0.5006194,-0.3081238,0.5159846,0.06438826,-0.07962749,-0.26482138,-0.058494605,-0.031334765,0.46151236,0.25919273,0.10375234,0.21379888,-0.021837156,-0.0661676,-0.33078906,0.14631303,-0.05084129,0.14000079,0.34447783,-0.2295144,0.39345708,0.7738191,0.37613168,-0.14420818,0.7751959,0.7302652,-0.13912174,0.32338086,-0.11355574,-0.55336946,-0.58482236,-0.24838646,0.028670311,-0.36017323,-0.42687824,-0.045702547,-0.19907722,-0.80707806,0.72337264,0.115657054,0.20405017,-0.15785272,0.31726333,0.30469745,-0.09206699,-0.22928466,0.020988086,-0.36773568,-0.6114674,-0.337596,-0.9788459,-0.68931824,-0.15149556,1.1642425,-0.14287733,-0.14026447,0.11799294,-0.20447226,0.13438429,0.19496436,-0.054627564,0.28056163,0.45910972,0.14109269,-0.7509535,0.6417025,0.13888277,-0.024071634,-0.423618,0.06717243,0.5567539,-0.6575451,0.15626645,0.47533625,0.16814053,-0.09399652,-0.53103065,0.014243892,0.11804389,-0.20817055,0.6461285,0.21999599,-0.71109736,0.7130191,0.30669692,-0.29378477,-0.7537411,0.6300587,-0.04213817,-0.20466676,-0.123919025,0.46447268,-0.03305487,0.22373912,-0.29335552,0.375292,-0.44725677,0.32518747,0.3126886,-0.07178164,0.40214136,-0.21497306,-0.27166674,-0.7782359,0.08237908,-0.68938625,-0.17179625,0.1796474,-0.21134695,-0.061766054,0.17198288,0.046942454,0.37539098,-0.23654905,0.09633054,-0.03524087,-0.4417987,0.5157965,0.6119021,0.54016393,-0.32967618,0.7145244,0.23507895,-0.22882462,-0.29690823,-0.0016917458,0.37833586,0.13610028,0.45017013,-0.029741015,0.04419589,0.36716524,1.0163033,0.13614388,0.39013246,0.11290655,-0.12199625,0.31173164,0.13506953,0.26966643,-0.09612436,-0.2997923,-0.046690065,-0.14963265,0.0362282,0.6303763,0.22596304,0.2549651,-0.038156807,-0.13123128,0.0940511,0.11644881,-0.026294043,-1.4811461,0.31540936,0.4328626,0.5393562,0.6826049,0.085493155,0.20180757,0.7791873,-0.36582354,-0.12940684,0.22311296,0.19152176,-0.5725919,0.7815134,-0.7769988,0.4661141,-0.21329843,0.08818569,-0.10172093,0.076548204,0.5480691,0.78574646,-0.051889982,0.22023942,-0.14535286,-0.33862638,0.22726735,-0.38440326,0.025570462,-0.30819145,-0.35849422,0.77723736,0.47382402,0.37760043,-0.0600793,0.023495363,0.08164559,-0.11404286,0.40762123,-0.0845462,-0.056741007,-0.21939461,-0.6050982,-0.14257936,0.5745026,0.16976003,0.27365607,-0.018804763,-0.2642059,0.25883967,-0.10292685,-0.15480182,-0.043712784,-0.8147294,0.009574541,-0.41647837,-0.27965206,0.5304306,-0.46754757,0.17952682,0.24243604,0.016142543,-0.44713202,-0.12223633,0.017101428,0.65828276,0.09651936,-0.30303356,-0.18335535,-0.19254817,0.20992324,-0.44815418,-0.027170649,-0.1306441,0.08441305,-0.77024,0.6455245,-0.15459335,-0.35121387,0.30857036,-0.24332294,-0.0784558,0.39697045,-0.11932246,-0.32643923,0.11960236,-0.10424775,-0.24402414,-0.45028335,-0.07118537,0.44424227,0.07030349,0.07087066,-0.07617317,0.0031537712,0.051151,0.75148815,-0.18449919,0.39665794,0.31481332,-0.05106966,-0.47457328,0.09710058,0.20908499,0.49138302,0.008078933,0.20304516,-0.14560877,-0.33337852,-0.272422,0.16289112,-0.24278083,0.2927628,0.06937444,-0.38847896,0.8984231,0.099612236,1.1162775,0.068735845,-0.40552852,0.17442966,0.42699718,-0.08888136,-0.20333643,-0.2481402,0.68570846,0.54823345,-0.13554819,-0.19775662,-0.7255317,-0.209469,0.21251412,-0.22640356,-0.009704198,-0.14682539,-0.5734896,-0.29723832,0.18754165,0.2578272,-0.09768542,-0.08972834,0.13073413,0.023056405,-0.17713769,0.35069165,-0.48101735,-0.029196143,0.44940624,0.10040771,-0.11128503,-0.13767256,-0.5087362,0.38933364,-0.6194506,0.10861652,-0.43967724,0.2368106,0.043781154,-0.25685284,0.25749156,-0.056629658,0.24113502,-0.44594073,-0.25878796,-0.14324676,0.64013195,0.2917498,0.22582929,0.75815135,-0.47091904,0.38455158,0.082484,0.43323746,1.256397,-0.38404703,-0.028409805,-0.0102094365,-0.48891777,-0.62799984,0.4660901,-0.4004531,0.17834575,0.09739057,-0.5559583,-0.70012194,0.21018316,0.29357225,0.11666991,-0.029324966,-0.5424128,-0.24559622,0.22452198,-0.23888373,-0.20236918,-0.5357553,0.09219315,0.5766305,-0.2216471,-0.35742974,0.07458712,0.25483888,-0.27869278,-0.4447997,0.08935673,-0.26594704,0.25092295,-0.014581586,-0.2638496,0.03922052,0.23266566,-0.5703384,0.08031212,0.30819204,-0.3271887,0.045065053,-0.35043564,0.039567865,1.0675398,-0.33109137,-0.24482436,-0.6143287,-0.58503145,-0.81887007,-0.37538818,0.6685132,0.48346952,0.16624287,-0.4953386,0.07877501,0.012031336,0.031349596,0.0752769,-0.60504276,0.4981062,0.06659727,0.54622996,0.0074401754,-0.67024887,0.22646558,0.07074107,-0.016531656,-0.45665708,0.4673486,-0.18361211,0.7505433,0.1591235,0.14052862,0.028512508,-0.5457641,0.19432212,-0.09313322,-0.1692648,-0.7331191,-0.040297966,430 +442,0.5095377,-0.08348252,-0.53348917,-0.06252741,-0.3197182,0.14301583,-0.14777113,0.4862275,0.14269504,-0.6903191,-0.18163456,-0.25278082,-0.10903601,0.23551926,-0.27008912,-0.39146617,-0.0043227756,0.13956417,-0.36638102,0.5404882,-0.40576997,0.38602242,0.13788591,0.41320825,0.10086453,0.14546172,0.20736876,0.21386385,-0.017800774,-0.44569275,-0.0018081239,0.051329434,-0.91701883,0.31035823,-0.20374468,-0.6288099,-0.08619547,-0.3560849,-0.21490733,-0.74648917,0.42317447,-1.0525227,0.57026863,-0.012420088,-0.3166313,0.09562928,0.24485265,0.28238946,0.07386762,0.028641436,0.17826419,-0.03691123,0.070531145,-0.1686959,-0.12398002,-0.52663386,-0.54535,-0.10744305,-0.4597029,-0.16051422,-0.27432165,0.24124745,-0.28309345,0.07706879,-0.14860308,0.3933266,-0.51557094,0.0114947725,0.094772436,-0.09201052,0.38891178,-0.573861,-0.28394908,-0.16837718,-0.023552848,-0.21932687,-0.18757747,0.32501644,0.1559525,0.5677332,-0.099752784,-0.13168906,-0.18264076,-0.036606822,0.058995247,0.5426174,-0.31282115,-0.2610683,-0.20494941,-0.19426958,0.54852927,0.13463938,0.41009447,-0.14914767,-0.02553692,-0.105996266,-0.22132862,0.3782483,0.52851385,-0.35993478,-0.11211673,0.2504457,0.5746542,0.14383613,-0.20816016,0.08189333,0.018730866,-0.3396999,-0.26892906,-0.022287173,-0.24913141,0.54795194,-0.114235945,0.28389364,0.49020797,-0.33134046,0.109932005,0.22391571,0.037548814,-0.07592348,-0.13964073,-0.5134384,0.42754668,-0.57108516,0.13244678,-0.23703685,0.5077658,0.08366083,-0.7303112,0.2297206,-0.5503721,0.050214548,-0.12038999,0.59793466,0.6557003,0.6095696,0.22689417,0.7864666,-0.5344619,-0.13733801,-0.24968253,-0.019245865,0.26286557,-0.19500561,0.00066938996,-0.37140545,-0.038804647,0.0959193,-0.17477468,-0.21361181,0.44024158,-0.65663326,-0.18657722,0.2240015,0.5915928,-0.3539289,-0.0285131,0.6684126,1.2321264,0.99857754,0.16753271,1.0146178,0.13020973,-0.1995691,-0.1659269,0.12425143,-0.7243535,0.20798019,0.39366204,0.12937632,0.50802404,0.1958626,0.07886078,0.2932572,-0.46286887,-0.0958421,-0.14180422,0.35627362,0.05807956,-0.22122402,-0.32507214,-0.091798045,0.15779701,0.04268635,-0.1100061,0.2433687,-0.30593953,0.33661222,0.30014262,1.4633372,-0.12723525,0.07883149,0.06940137,0.42206034,0.16710128,-0.32429948,0.084910154,0.17568436,0.25602886,0.066696934,-0.5217611,0.1279771,-0.12486816,-0.59521013,-0.05510857,-0.3393621,-0.16784689,-0.19340065,-0.50605416,-0.28438607,-0.06319487,-0.14231248,0.28582588,-2.6520114,-0.009680344,-0.13285783,0.35235658,-0.2621681,-0.3177273,-0.124303736,-0.34274483,0.3447174,0.36276388,0.30840948,-0.66961586,0.3706039,0.57474214,-0.39499524,-0.016328821,-0.57084954,0.036053102,-0.03967106,0.36728492,-0.01161477,-0.16340998,0.14381705,0.33765632,0.46526495,0.072957635,0.33126265,0.17085029,0.4534785,-0.046792906,0.43358824,0.024599578,0.3375464,-0.31691977,-0.19957992,0.39727598,-0.45015565,0.083562545,-0.13930978,0.16237614,0.48217636,-0.35550013,-0.7826534,-0.72372085,-0.28991273,1.141597,-0.3221065,-0.8234005,0.13689096,-0.12889203,-0.29154596,-0.1592176,0.40502486,-0.17829713,0.12045795,-0.816648,-0.085845135,-0.18550725,0.34933323,-0.012382058,-0.067110404,-0.47125414,0.81768364,-0.14892693,0.46782616,0.38367265,0.21702273,-0.36138174,-0.50819236,0.07480739,0.8879994,0.567896,0.15446527,-0.28128713,-0.1555675,-0.16792668,0.09178603,0.19881596,0.6481427,0.86220807,-0.12257711,0.17208864,0.27036387,0.105758764,-0.02738102,-0.122180834,-0.39092764,-0.11003168,-0.03576774,0.61268055,0.6387981,-0.0103311455,0.3857076,-0.080802836,0.16817372,-0.24411853,-0.5871315,0.3572453,0.79156315,-0.0836299,-0.20279035,0.7724213,0.5616629,-0.23621945,0.5412174,-0.8671734,-0.4578499,0.42317364,-0.003104261,-0.37764925,0.10399098,-0.3666841,0.27288294,-0.70671505,0.39316764,-0.37144926,-0.49786693,-0.624591,-0.3245876,-2.2269874,0.25075626,-0.032372084,-0.2151916,-0.22970107,-0.45795456,0.4714396,-0.70816153,-0.71660286,0.2160234,-0.006349453,0.6253518,0.07644809,-0.005464462,-0.22814591,-0.36513162,-0.23608148,0.27534634,0.22993326,0.18250749,0.049605105,-0.47215912,-0.15030491,-0.010867813,-0.38052934,-0.12691408,-0.40831187,-0.60973126,-0.2430453,-0.31022838,-0.25617915,0.6479785,-0.33093125,0.07420929,-0.1705861,-0.04888031,-0.07457195,0.24955237,0.08643828,0.17253903,-0.083678305,-0.019774403,0.009027196,-0.21650219,0.15276404,0.11786473,0.23351768,0.37155274,-0.42275968,0.008256435,0.401856,0.61153024,-0.031711966,0.94724643,0.35657853,-0.18182682,0.43152565,-0.08374459,-0.37773147,-0.7606355,-0.19409132,-0.033358272,-0.4333828,-0.40835786,0.032501843,-0.32484457,-0.81829566,0.6417242,0.03210214,0.41304094,-0.07496631,0.33899,0.3371912,-0.17974658,-0.1853122,-0.21011388,-0.17859961,-0.6042233,-0.5486686,-0.7897404,-0.37383685,0.09577298,1.0961752,-0.09013756,-0.10623927,0.28645366,-0.017318564,0.1811612,0.14567474,-0.11897581,-0.17897354,0.4264309,0.08772198,-0.63036126,0.4047688,0.028973188,-0.015496878,-0.6486518,0.18466774,0.5710289,-0.5392132,0.35686377,0.34508112,0.11903907,-0.2578554,-0.67701846,-0.09749983,0.023936335,-0.33427566,0.44880065,0.31623182,-0.91306335,0.41230744,0.2597102,-0.33381885,-0.5775376,0.73676264,-0.10181292,-0.08791786,-0.2854326,0.2974959,0.2023423,0.06506184,-0.15478067,0.2702564,-0.46721724,0.22169098,0.28967017,-0.014440417,0.31562498,-0.08425832,-0.19451605,-0.7183406,0.21225527,-0.43797746,-0.2866576,0.15652418,-0.21797189,-0.1540647,0.5911637,0.25256127,0.48810023,-0.4357981,0.13182968,-0.20740844,-0.31284878,0.48939678,0.46295288,0.53545886,-0.35032767,0.5922681,0.10805245,-0.13042964,-0.10767382,0.11272115,0.42586702,0.1433864,0.23268273,-0.0031534943,-0.22526152,0.19574758,0.93439347,0.28044683,0.3494308,0.08153115,-0.12361369,0.21985625,0.1624246,0.24419291,-0.03212943,-0.579999,-0.0739143,-0.098370634,0.0031925205,0.443745,0.06314922,0.27025852,-0.0052017504,-0.1965976,0.14221953,0.20715025,-0.16522388,-1.3002635,0.20014241,0.011394688,0.8746254,0.65984905,-0.031817075,0.14706214,0.47989374,-0.37540627,0.044724148,0.2703529,0.16458802,-0.32766202,0.51453793,-0.6286769,0.20440389,-0.07460828,0.03957348,-0.10819795,-0.010337318,0.51950276,0.83131063,-0.18156931,0.102406465,0.037208315,-0.093723215,0.121346295,-0.26019785,0.03913496,-0.40793434,-0.21867688,0.8118966,0.35387668,0.48396465,-0.15450723,-0.0070821154,0.06547956,-0.23569389,0.07942016,-0.040906984,0.10883308,-0.22278449,-0.32198524,-0.15136327,0.62722784,-0.05902582,0.06306057,0.06447006,-0.36280057,0.18004613,0.097012915,-0.12590963,0.11090755,-0.91331327,0.0012194173,-0.49960145,-0.21667491,0.54394025,-0.08374778,-0.013356273,0.19522083,-0.005439986,-0.089732304,0.15205929,0.31103557,0.4227941,0.021557242,-0.25554493,-0.20877708,0.21157101,0.06638188,-0.21303841,0.040905893,-0.08652103,0.21389034,-0.556662,0.35951018,-0.07403588,-0.26893386,0.33508244,-0.22275075,-0.037888985,0.57818854,-0.049686484,-0.15865932,0.15658604,-0.18284942,-0.16769919,-0.3454527,-0.23208702,0.32326803,-0.22191088,-0.059115466,-0.04110021,-0.03016339,-0.107176654,0.18922003,0.1874952,0.27848083,0.43543336,-0.10038531,-0.7010264,0.093761556,-0.07224572,0.43817744,-0.17008111,-0.022365306,-0.21270314,-0.67498827,-0.42973477,0.3796234,-0.061994214,0.25005552,0.0025007182,-0.27423915,1.08272,0.14111239,0.9798333,-0.17457731,-0.52527064,-0.07141841,0.62512815,-0.1839434,-0.029492898,-0.31673616,0.86320335,0.5661364,-0.08579343,-0.058733318,-0.14578316,-0.06763081,0.22496553,-0.26101372,-0.24921928,-0.08909773,-0.60670024,-0.114692606,0.20749815,0.43357927,0.015043297,-0.0036241156,0.18445642,0.4055788,-0.006393152,0.49147433,-0.63984984,-0.23020685,0.20018496,0.25221846,-0.0075313216,-0.0006060217,-0.27170646,0.2423528,-0.59886277,-0.039981153,-0.37115237,0.050003447,-0.050262503,-0.44618252,0.13434319,0.047270235,0.36585304,-0.36503845,-0.35855198,-0.18694581,0.47493187,-0.04780907,0.3319047,0.4797913,-0.16409092,0.18836084,-0.17733407,0.49028498,1.0620644,-0.17868379,0.024652889,0.41370508,-0.56959444,-0.68252057,0.305149,-0.4128394,0.28815752,-0.020798849,-0.40747318,-0.39546424,0.2891395,0.24781418,-0.12763736,0.16860656,-0.6935876,-0.22321153,0.28988007,-0.2620476,-0.22614564,-0.20881006,0.14892483,0.58593273,-0.24414514,-0.17237575,0.00746916,0.46296856,-0.29459044,-0.5187239,-0.11926278,-0.3301176,0.4022204,0.02185033,-0.37795258,-0.04824575,0.17542386,-0.4198125,-0.054274227,0.27251396,-0.16753758,0.045421325,-0.41524765,0.21807075,0.720419,0.03576348,-0.12920482,-0.39611128,-0.50834817,-0.87924,-0.30931324,0.28024706,0.29378554,0.020044714,-0.55507606,-0.014562892,-0.25857073,0.031684857,-0.118146606,-0.2656716,0.47906858,0.15596743,0.44921848,0.023483634,-0.7542799,0.14726555,0.038696755,-0.016393749,-0.4081619,0.59241116,-0.038886644,0.8369489,0.19332448,-0.05695207,0.01144634,-0.7582831,0.3950893,-0.17002146,-0.070401974,-0.6401471,0.118171446,436 +443,0.35862616,-0.14920567,-0.6817047,0.044039745,-0.010379012,0.2515693,-0.22621812,0.31453058,0.25837755,-0.5070181,-0.103799544,-0.008951513,-0.043619476,0.2576967,-0.21006939,-0.3651351,-0.14994411,0.22462101,-0.43020695,0.34910917,-0.2447984,0.29860315,-0.0230339,0.20640156,-0.0121826185,0.12770948,-0.07668228,-0.06410439,-0.22879292,-0.29292837,0.13978179,0.17491822,-0.5279158,0.090781234,-0.02476834,-0.45317125,-0.04925153,-0.55389285,-0.3885522,-0.7105585,0.37641725,-0.86896807,0.5625218,0.04598069,-0.112588845,0.3284929,0.028264046,0.10218173,-0.115255155,-0.09018818,0.28971618,-0.2131468,-0.25727686,-0.17300247,-0.20751469,-0.21407744,-0.5187848,0.055109743,-0.44884467,0.07480485,-0.17127183,0.16323595,-0.31654316,0.1900116,-0.32280523,0.43108168,-0.32340723,-0.016503586,0.24416296,-0.17743942,0.28380424,-0.7056964,-0.124009386,-0.087960176,-0.0041132653,-0.23937647,-0.20265403,0.1739913,0.4025376,0.53381586,-0.21273589,-0.094973005,-0.48085648,0.11800706,0.31191492,0.5462609,-0.27520415,-0.35514018,-0.120444335,0.07501276,0.32631493,-0.14451419,0.108442284,-0.37139216,-0.060618848,-0.0132913245,-0.23622625,0.3824133,0.5694179,-0.19706167,0.024145875,0.3886045,0.5606957,0.18002473,0.08305548,0.009160272,0.054153804,-0.3558907,-0.06689624,0.109824546,-0.27434352,0.44248867,-0.08533258,0.1520131,0.4157146,-0.24272552,-0.14175077,0.25040507,0.10651418,0.07985475,-0.15647663,-0.28914642,0.25652704,-0.32055163,0.03170757,-0.22886086,0.57091147,0.017844988,-0.82073337,0.3243076,-0.5354544,0.12728123,0.011828874,0.54930615,0.6055352,0.5439218,0.12767921,0.8836403,-0.58294475,-0.03252266,-0.1536652,-0.31283242,0.10122681,-0.051412173,-0.10893085,-0.44528422,0.06128341,-0.13521554,-0.25781196,0.08856208,0.43451554,-0.4962297,0.07885981,-0.081235364,0.6495221,-0.2787686,-0.04424233,0.5940915,1.1357008,1.0642384,0.093594395,1.0844405,0.13236335,-0.29423568,-0.16068979,-0.17396896,-0.9494411,0.3415162,0.34415552,-0.36702496,0.46199203,0.19395865,-0.093640916,0.3579946,-0.46012625,-0.09782217,-0.07020812,0.16092345,0.076748684,-0.21059455,-0.37939343,-0.19211721,0.051398486,0.042283,0.108693704,0.19100103,-0.3229676,0.15662464,0.31220677,1.3441972,-0.24467526,0.07566546,0.13224675,0.011620028,0.15498777,-0.0991587,-0.10761397,0.240798,0.2700819,0.082617395,-0.56273234,0.08905601,-0.058450036,-0.41774014,-0.23942316,0.09373515,-0.10771626,-0.06161322,-0.19689226,-0.18573916,-0.052381728,-0.44495058,0.33222634,-2.3372433,-0.1016925,0.016631657,0.38530353,-0.11280662,-0.37015867,-0.14574154,-0.44288453,0.33137035,0.31980172,0.41391686,-0.6806877,0.32732853,0.47367558,-0.53333753,-0.13221905,-0.494499,-0.08694895,0.009708852,0.19720729,0.17150669,-0.19250874,0.0882592,0.17994003,0.34438398,-0.2062724,0.010696004,0.527285,0.46302631,0.027375665,0.27913645,-0.039187193,0.5553327,-0.25264728,-0.23199868,0.4779392,-0.4554133,0.25536117,0.027883539,0.11735606,0.30072612,-0.3093986,-0.8695167,-0.51515585,-0.06758778,1.4437035,-0.20709737,-0.55645865,0.14697051,-0.17625019,-0.42857462,-0.026775854,0.3504384,-0.18782985,-0.14371176,-1.0445782,-0.07054995,-0.13642105,0.28597215,-0.07047375,0.0770021,-0.47291157,0.75564796,-0.09111809,0.6260737,0.64145195,0.12966561,-0.24956837,-0.4905738,0.087415695,1.2517358,0.50064725,0.16804925,-0.23482111,-0.021867683,-0.2614146,0.014483051,0.060709354,0.46664485,0.66318846,0.002117506,0.09700147,0.11262957,0.14836146,-0.019626277,-0.24227217,-0.3259118,-0.116312064,-0.056715794,0.53870696,0.56799036,-0.25140834,0.30192345,-0.09252139,0.18742573,-0.1039662,-0.48373535,0.3917624,0.96622574,-0.14255436,-0.39285278,0.69652855,0.32723337,-0.39908618,0.46727252,-0.47455046,-0.26390043,0.24665044,-0.2771701,-0.30981416,0.42630452,-0.29928118,0.1321851,-0.77477986,0.39886925,-0.21426384,-0.3552322,-0.6049987,-0.09298881,-2.5590477,0.1545919,-0.24779771,-0.17904167,-0.20300327,0.010467768,0.3506519,-0.47863507,-0.8593445,0.10183261,0.12914495,0.5184361,-0.19665672,0.027140483,0.107624985,-0.14271805,-0.07662726,0.24324656,0.21087937,0.15347789,0.107730426,-0.46607473,-0.10948604,-0.18138511,-0.33291468,-0.013917376,-0.53246677,-0.4472558,-0.03529076,-0.39287153,-0.27053684,0.49918684,-0.44441643,-0.050690167,-0.20855351,0.035252344,0.023444954,0.3337951,-0.15193537,0.13316147,-0.04505033,-0.14428899,0.10177236,-0.020308206,0.3887468,0.08597313,0.16827333,0.57542557,-0.27166036,0.10974027,0.42407343,0.94254625,-0.04606964,0.9712907,0.4845517,-0.15208252,0.19766642,-0.16178845,-0.25316158,-0.52612936,-0.21947663,0.14557645,-0.5265864,-0.40955186,-0.030088216,-0.38304192,-0.9483367,0.49989435,-0.07831664,-0.0052465284,0.11039344,0.4047092,0.43232843,-0.15503995,0.19936265,-0.14936547,-0.17596538,-0.26410347,-0.3778798,-0.6106396,-0.30577818,-0.16547735,1.1583096,-0.12889698,0.05344063,0.16543719,-0.13004246,0.12967624,0.037198715,0.058394797,0.26639456,0.4808981,0.099642955,-0.5422765,0.27038953,-0.18296231,-0.1977849,-0.5207008,0.14113985,0.5008171,-0.58203983,0.48266488,0.39423952,0.029652039,-0.024157524,-0.5709669,-0.031085294,0.06825129,-0.29075623,0.5449696,0.40019363,-0.595822,0.44790283,0.49495173,-0.44367892,-0.7246079,0.33521387,0.090366386,-0.03998425,-0.07610935,0.42612043,-0.15090585,0.11203102,-0.1835989,0.19364044,-0.27884722,0.34639445,0.10346361,-0.16825701,-0.009766971,-0.22346091,-0.16210473,-0.7201804,0.26629716,-0.35177824,-0.17523237,0.10225582,0.14877465,0.07043753,0.10389706,0.10981451,0.5770968,-0.35666615,0.0044851177,-0.082712755,-0.30116668,0.36488852,0.48215374,0.40089723,-0.27131805,0.4962983,-0.12191946,-0.2441427,-0.20387578,-0.08854663,0.5444681,0.03237465,0.15404211,0.2366568,-0.058265217,0.337716,0.75122416,0.10110392,0.40203318,0.025698543,-0.17733045,0.15690783,0.07445603,0.22124624,-0.09047676,-0.55755174,-0.02321268,-0.06487194,0.21062903,0.53100556,0.115179606,0.33486605,-0.34544048,-0.2943217,0.012654846,0.23967569,0.048379127,-1.1659728,0.3411425,-0.05142008,0.7491497,0.6274296,0.0131689655,0.3429242,0.31347138,-0.21588376,0.062441822,0.43157926,-0.016560614,-0.5806641,0.38583544,-0.70247334,0.24810886,-0.15243256,0.13007079,0.14053123,-0.07258712,0.4683055,0.8784181,-0.157512,-0.028182914,-0.09600027,-0.20490953,-0.010160876,-0.2972928,0.19268297,-0.48975375,-0.4537684,0.7756434,0.45303705,0.43900228,-0.29687792,0.10743941,0.18958433,-0.14005154,0.33787876,0.034431387,0.116159745,-0.21071182,-0.65506303,-0.05258011,0.5622381,0.2499117,-0.06315942,-0.1797073,-0.25623506,0.16678654,-0.047629446,-0.09167951,-0.14727828,-0.67077214,-0.25747824,-0.4358246,-0.4301979,0.114832796,-0.0562376,0.059702314,0.19449432,0.02220336,-0.4933274,0.2247324,0.32447442,0.7101037,-0.06072728,0.0131797,-0.23532031,0.451509,0.15151428,-0.0034610373,-0.011097832,-0.15151438,0.20714426,-0.6231288,0.6032339,-0.20311311,-0.36058143,0.19500051,-0.18645273,-0.020168742,0.54750466,-0.35196966,-0.24043849,0.1441399,0.032653105,-0.2775651,-0.37581626,-0.23056516,0.030882506,0.18074346,-0.17922893,-0.11378447,-0.07243372,-0.3008185,0.2615985,0.19408797,0.25621882,0.49998856,0.2021414,-0.70988417,-0.06453898,0.023380855,0.55857366,0.15001443,-0.22560342,-0.6094979,-0.5616826,-0.21030743,0.25524643,-0.17840552,0.2292362,-0.017671293,-0.3492883,0.7673755,0.13343297,1.1752918,-0.06388052,-0.33785635,-0.037963424,0.69634706,-0.08575194,-0.14512096,-0.4700344,0.880902,0.5496489,-0.17556688,-0.0908319,-0.41610426,-0.068075016,0.11106555,-0.21942818,-0.15779069,-0.038990743,-0.73499775,-0.3280477,0.18460962,0.36496702,-0.1543866,-0.12715113,0.2183167,0.34138268,-0.006376321,0.20248969,-0.4687396,-0.16150415,0.26912388,0.120056204,-0.005736251,0.023494722,-0.48254195,0.35109228,-0.53607017,-0.06610314,-0.1753342,-0.031228688,-0.06154812,-0.12193389,0.2231235,0.031414412,0.15427755,-0.35342735,-0.2974681,-0.118742384,0.44577268,-0.04902837,0.20776053,0.6992391,-0.205565,0.15257896,0.15792002,0.5660199,0.99370384,-0.20426954,0.11415933,0.33979347,-0.3158303,-0.6442236,0.41099548,-0.2370604,0.006969405,-0.117975816,-0.2899973,-0.6113553,0.3782864,0.15459171,0.026916513,0.011859564,-0.564597,-0.21008638,0.458389,-0.41373748,-0.08998541,-0.24307151,-0.15540232,0.62771046,-0.29939127,-0.45093113,0.04290654,0.36545846,-0.30162284,-0.52165866,-0.055483367,-0.3723864,0.26746362,0.1674712,-0.22919764,-0.08065427,0.15127672,-0.4477633,0.07206279,0.18307877,-0.32638782,-0.01766387,-0.32230118,0.08684067,0.63787585,-0.2565764,0.13385464,-0.5329408,-0.5965554,-1.0291415,-0.15810017,0.25025147,0.06557678,-0.021526417,-0.80637115,-0.029244509,-0.08340863,-0.14712052,-0.18260875,-0.42339906,0.55157614,0.17157386,0.41950795,-0.26978308,-0.6274029,0.05607578,0.15045322,-0.18096621,-0.35422453,0.4989542,0.2004755,0.73707527,0.058457058,0.07334201,0.26940474,-0.680924,0.1969379,-0.13521066,-0.20068319,-0.6536039,0.02141474,438 +444,0.6686596,-0.36048025,-0.5320132,-0.12252111,-0.4435543,0.09479825,-0.23706429,0.49247402,0.22193874,-0.55836993,-0.18995099,-0.15183301,-0.04397974,0.2790548,-0.08131684,-0.55513465,0.15926066,0.3631043,-0.7159712,0.6361432,-0.48848635,0.36964312,0.28011602,0.37977546,0.17570148,0.1740518,0.20330827,0.001983917,-0.077780046,-0.0876848,-0.133674,0.31965503,-0.5086177,0.1971116,-0.16902785,-0.30723405,-0.06337323,-0.43021634,-0.37055227,-0.8775111,0.30520815,-1.007474,0.4868407,0.08886889,-0.47310677,0.113349214,-0.017519388,0.17847188,-0.24231423,-0.033191465,0.1682575,-0.16041856,-0.2769019,-0.25804815,-0.19064464,-0.28090328,-0.61543334,0.15150443,-0.56353337,-0.12898889,-0.1754291,0.33045414,-0.32356933,-0.044488728,-0.20664942,0.4717234,-0.3680888,-0.0122721195,0.15839794,-0.2507674,0.12904164,-0.63161933,-0.05145958,-0.12640576,0.08572935,-0.09429218,-0.40729836,0.35318893,0.24734484,0.6532458,0.09730638,-0.38504115,-0.3285973,0.12994711,-0.010395595,0.49140614,-0.06988212,-0.34672323,-0.23322807,0.07288713,0.3664501,0.11273604,0.20718816,-0.440881,-0.069701634,-0.21505441,-0.071865395,0.3813772,0.6220422,-0.2817101,-0.33959126,0.28174335,0.48950627,0.018966973,-0.11330037,0.102936566,0.024663206,-0.54111403,-0.07270647,0.13324149,-0.11846922,0.4728232,-0.27261665,0.1321808,0.59463626,-0.09529372,-0.08806694,0.2656461,0.21972778,0.018741919,-0.34337804,-0.20489326,0.4057006,-0.57153827,-0.12803,-0.3011784,0.7709875,0.1001922,-0.57094324,0.4644027,-0.46624878,0.16311756,-0.16740046,0.5577526,0.8972701,0.4679276,0.20822217,0.8673659,-0.4395292,0.1668232,-0.1317894,-0.32173458,0.18473889,-0.23303106,0.1704536,-0.47776222,0.0067299646,-0.17259869,-0.23218636,-0.10314189,0.8115733,-0.6638149,-0.23227927,0.14699984,0.75834656,-0.3573415,-0.23959541,0.9048625,0.8344571,0.94460595,0.0059486586,1.3083595,0.47443554,-0.09620834,0.21850559,-0.30652285,-0.84657806,0.37364691,0.35001636,0.34548363,0.2722251,0.1311175,-0.14300503,0.42769474,-0.47161037,-0.0895919,-0.3329916,0.26098105,-0.035165805,0.01513602,-0.63003427,-0.24942514,-0.056090105,0.1686245,0.158446,0.30080885,-0.33636746,0.24639286,-0.15909275,1.765977,-0.09964875,0.06640264,0.12088028,0.47122833,0.3394709,-0.1960235,-0.1242134,0.37153324,0.28525168,0.063086614,-0.54420793,-0.05843216,-0.30444378,-0.47544456,-0.22259243,-0.29401073,0.05984052,-0.22110888,-0.58625144,-0.31720716,-0.02469643,-0.45510575,0.4200809,-2.198644,-0.32122475,-0.10121583,0.5036808,-0.3616003,-0.43891048,-0.29075375,-0.50551283,0.298613,0.32975888,0.5323919,-0.6542329,0.34357467,0.4546679,-0.59811926,-0.070721544,-0.6554963,-0.008051144,-0.19205448,0.43793863,0.018210616,-0.26742476,-0.03437404,-0.16320278,0.58668226,-0.11831101,0.07611002,0.416052,0.4872509,0.07002954,0.36592048,0.14957799,0.50976914,-0.37750274,-0.35843617,0.45566756,-0.31195453,0.17873088,-0.07555745,0.10153751,0.6172456,-0.578863,-0.8262765,-0.7593004,-0.038009845,1.1453636,-0.21086428,-0.45236716,0.20426229,-0.34915575,-0.28456357,0.1211344,0.49301568,-0.18677898,-0.09700949,-0.87705135,-0.019545188,0.017214714,0.24610741,-0.09529341,0.01994938,-0.37114438,0.7066645,-0.25458977,0.39595693,0.21097486,0.30127952,-0.354465,-0.6130991,0.07202438,0.96103066,0.3185632,0.1129999,-0.2746543,-0.20662509,-0.2528861,-0.19352253,0.040136103,0.5425302,0.8250289,-0.034353685,0.11345833,0.3653803,-0.054266386,-0.039425228,-0.13276389,-0.37432772,-0.18806683,0.10732552,0.6405679,0.7910314,-0.099997506,0.5701325,-0.1859281,0.37514958,-0.07180379,-0.6532893,0.5170513,1.1673367,-0.14973655,-0.34010223,0.6316233,0.24631016,-0.4870775,0.55403155,-0.67296535,-0.44472244,0.1528923,-0.21482055,-0.44880867,0.27346936,-0.32131618,0.2515138,-0.91219366,0.4264769,-0.02525318,-0.48873916,-0.579119,-0.20854142,-3.0028775,0.24404609,-0.26307243,0.10940784,0.040508218,-0.19011469,0.1585755,-0.57881135,-0.36631468,0.10423229,0.009508188,0.74373055,-0.026209537,0.2087269,-0.2706414,-0.38885778,-0.20680702,0.2191952,0.19762094,0.35021564,-0.008440665,-0.49409994,0.09300677,-0.076203145,-0.24365316,-0.0027030376,-0.9107604,-0.63629055,-0.26116213,-0.6834916,-0.17455606,0.6675892,-0.12815826,0.0455491,-0.23790279,0.0128148245,0.037689447,0.30655068,0.095674835,0.12165998,0.21751077,-0.100273,-0.11169831,-0.2977441,0.26865622,0.043638777,0.15202396,0.5121708,-0.21269463,0.24798486,0.5714847,0.6629873,-0.34918264,0.89649117,0.53949624,-0.13064049,0.26127028,-0.07892122,-0.35826525,-0.5784742,-0.17993028,-0.117143944,-0.5633715,-0.24083403,0.14564289,-0.46482685,-0.90532935,0.6722303,-0.078821406,0.13399537,0.13039394,0.43515852,0.7080044,-0.19279234,-0.123283245,-0.14666389,-0.16716619,-0.486344,-0.43818545,-0.6094779,-0.58660764,0.16599502,1.2422073,-0.22095878,-0.0040959525,0.08742845,-0.06075359,-0.065124825,0.031461954,-0.013885924,0.20345663,0.52230257,-0.020543303,-0.671183,0.41165516,-0.0990089,-0.11436854,-0.4194807,0.34881148,0.6015133,-0.8200242,0.49713114,0.32304606,0.14120428,-0.11975572,-0.5855513,-0.29689035,0.16864787,-0.20351872,0.5748425,0.24934933,-0.82855034,0.5054201,0.41323397,-0.2930801,-0.9109615,0.28895146,-0.032176714,-0.39594746,-0.18548393,0.45997348,-0.03859612,0.09265734,-0.29286882,0.19333206,-0.4419256,0.099532895,0.25436786,-0.14460394,0.40037516,-0.3832625,-0.3603313,-0.70188683,-0.0006829415,-0.54446644,-0.34714416,0.25035352,0.006795662,0.068978034,0.34159067,0.17017612,0.5407166,-0.2847202,-0.004513455,-0.08813296,-0.18453725,0.32870674,0.3796489,0.499026,-0.6015374,0.5299329,-0.041792836,-0.17152514,-0.06771104,-0.023479206,0.4765306,0.16649196,0.3684884,0.04671083,-0.094407395,0.3200957,1.0082595,0.0591713,0.50251216,0.1733071,-0.26082942,0.20263453,0.09053285,0.24708636,-0.27226385,-0.49783203,-0.027423242,-0.09531837,0.30677453,0.4557615,0.13904011,0.3852811,-0.1303561,-0.27197772,0.08156405,0.010557814,0.031277042,-1.3295166,0.06514568,0.2341439,0.8413636,0.31712088,-0.002527535,-0.13540138,0.6779899,-0.21519685,0.1715938,0.22979109,-0.2963979,-0.4587229,0.49856824,-0.663817,0.43897718,-0.16314304,0.06459965,-0.06634897,0.032749865,0.456811,0.7996991,-0.13109383,0.056379385,-0.08795023,-0.3425488,0.20621906,-0.42670915,0.116760306,-0.46722883,-0.32249385,0.71833706,0.42681208,0.3959438,-0.16683002,-0.012761305,0.1518425,-0.111107066,0.2100034,-0.009863491,0.12704,0.08537221,-0.60938925,-0.18662484,0.6075753,0.42025122,0.13643529,0.02790388,-0.06717869,0.2979398,-0.17099331,-0.1891552,-0.13177499,-0.81220716,-0.11549927,-0.33210963,-0.46229458,0.42929643,-0.056509733,0.025743794,0.2904572,0.04320022,-0.46750718,0.3875663,0.19719587,0.9535684,0.06560954,-0.19444373,-0.43717465,0.3204798,0.1440061,-0.29762736,0.032858413,-0.23169962,0.2013613,-0.70136374,0.5549343,-0.033154275,-0.5252303,0.20271835,-0.06518744,0.00043376003,0.5070589,-0.16871254,-0.22148885,0.07176448,-0.10749788,-0.4605386,-0.15358233,-0.06311987,0.21529378,0.20147684,-0.24256168,-0.15578556,-0.120735705,-0.03351351,0.6013878,0.088573985,0.3003487,0.38682798,0.16917256,-0.40618253,0.13277826,0.5916088,0.56756014,-0.045942962,-0.18823318,-0.25161478,-0.368205,-0.4157645,0.15663119,-0.05294035,0.36981267,0.13755463,-0.21999113,0.9129095,0.122708015,1.2416831,-0.024840828,-0.3559356,0.08630047,0.5319274,0.096791506,-0.10127338,-0.33271855,1.0184892,0.63800615,-0.13366385,-0.08940283,-0.54827416,-0.22244772,0.26695225,-0.33500388,-0.1314876,-0.123237416,-0.82034665,-0.31995973,0.2635107,0.2962152,0.02148901,-0.14894907,0.301761,0.21931298,-0.0110457605,0.16787995,-0.6446702,-0.048139844,0.25211045,0.46764532,-0.017557234,0.22180034,-0.48938587,0.3169044,-0.6932803,0.1895463,-0.22535641,0.18930514,-0.0112460805,-0.34473753,0.2491208,0.20374165,0.39618382,-0.53449965,-0.36411348,-0.42775226,0.54706633,0.16823514,0.14949723,0.67916876,-0.32265607,-0.010640179,0.18684961,0.49144483,1.1441948,-0.09695796,0.002796037,0.3342177,-0.27609876,-0.84338677,0.45080683,-0.28825787,0.26967606,-0.06346009,-0.352597,-0.5984878,0.27453914,0.21796116,0.031224787,0.0034838447,-0.50828314,-0.016714351,0.42949995,-0.1346179,-0.19936457,-0.28355846,0.14073423,0.54504055,-0.13493355,-0.31248587,0.09738559,0.3383519,-0.3097056,-0.5675688,-0.15800521,-0.62549335,0.16285758,0.090249725,-0.325687,0.065514326,-0.01801149,-0.5943006,0.1891135,0.317229,-0.33501714,0.17997496,-0.21773137,-0.050972197,0.91851556,-0.08122521,0.14358458,-0.6157369,-0.54687434,-1.0182117,-0.2528514,0.4425717,0.14275165,0.060157605,-0.8976757,-0.10792171,-0.28607103,-0.20690049,0.13617194,-0.52244174,0.512867,0.2538999,0.31744495,-0.120288566,-0.9902563,0.1876178,0.17161416,-0.4055087,-0.52768266,0.4076569,-0.058068115,0.9377678,0.09721865,0.10049647,0.3764227,-0.6324442,0.14748916,-0.29761535,-0.07131035,-0.7125297,-0.19541717,440 +445,0.42971015,-0.43067425,-0.5138517,-0.0448897,-0.20661746,-0.10231465,-0.321248,0.23325446,0.059784148,-0.3034473,-0.0654273,-0.09585978,0.023303317,0.30501992,-0.10672394,-0.7272549,-0.07528802,0.031179238,-0.8527511,0.8407998,-0.36680415,0.24044964,-0.1226189,0.2933078,0.19149849,0.21648408,0.099848926,0.07169102,0.0631173,0.09061726,-0.02973226,0.20439948,-0.6532865,-0.043347936,-0.08918351,-0.3020509,-0.05014589,-0.2863932,-0.50110596,-0.9408372,0.4049171,-0.9246527,0.5197017,0.008210449,-0.3838748,0.29975775,0.051171184,0.36085263,-0.4843139,-0.0040431344,0.10044553,0.003950668,-0.054261293,-0.1833519,-0.042705078,-0.36271352,-0.5560474,-0.0060714823,-0.66993773,-0.12886886,-0.27111122,0.18280652,-0.39466622,0.044416495,-0.22954342,0.3600792,-0.5170767,0.045111503,0.24424984,0.09770865,0.20650947,-0.67526287,-0.0043460256,-0.18030559,0.2524486,0.0056536454,-0.31754652,0.4112992,0.12978324,0.46888566,0.05448452,-0.20072368,-0.13779916,0.033665553,0.18857601,0.3953612,-0.1512271,-0.39614984,-0.28833678,0.012077059,0.30738562,0.09388618,0.11332905,-0.30906707,-0.17651007,-0.019697087,0.030134814,0.34502384,0.5295794,-0.36924353,-0.30687183,0.35397294,0.56589067,0.26143268,-0.14603257,0.116281234,0.016675627,-0.617256,-0.11255489,0.21011806,-0.20506705,0.6649584,-0.20358315,0.22229981,0.4772741,-0.14127913,-0.14896,0.023945251,-0.024450513,0.031926613,-0.20525034,-0.19771756,0.2560739,-0.51098496,0.20393482,-0.24737212,0.61774623,0.2901409,-0.6645659,0.36758566,-0.50980306,0.254982,0.049220663,0.7281432,0.8638553,0.37720302,0.35611036,0.7983538,-0.36764738,0.12310781,0.037819438,-0.32402697,0.11148343,-0.2244992,-0.10320855,-0.51429653,-0.017925825,-0.24203862,-0.12854825,-0.02554624,0.49865893,-0.45349854,-0.08415533,0.09378631,0.6494859,-0.30901942,0.13864437,0.76159126,0.88817686,0.94083077,0.13342826,1.0796617,0.27848572,-0.18337683,0.19993135,-0.28861004,-0.84658396,0.20800741,0.29478732,0.49627876,0.34354857,0.041238002,-0.12826987,0.5070234,-0.49511296,0.18717219,-0.2189665,0.17154162,-0.008375453,-0.10438169,-0.43734494,-0.04983953,-0.055664174,0.10542451,-0.105434775,0.26058406,-0.17361467,0.48508355,0.050201576,1.3960943,-0.17596748,-0.0081857275,0.10192102,0.41632605,0.35117346,-0.1828723,-0.1870517,0.2719086,0.6112901,0.15619552,-0.71936387,0.17982565,-0.23440422,-0.36587116,-0.2301131,-0.28430197,0.0791562,-0.006010677,-0.4756885,-0.1888103,0.107591935,-0.26109442,0.35306352,-2.5260623,-0.28011864,-0.1454923,0.30946943,-0.26563063,-0.21819887,-0.17292377,-0.5037879,0.46418017,0.31137636,0.4490573,-0.6532596,0.28967288,0.4278087,-0.54578155,0.108919606,-0.68477833,-0.24694109,0.06472771,0.48144808,-0.038212143,-0.1763922,-0.005932457,0.22044137,0.42077166,-0.0356242,0.1192832,0.4296281,0.3587045,-0.12240616,0.444323,0.056126926,0.5122508,-0.3526332,-0.2262754,0.39446312,-0.13920268,0.4001139,-0.035732355,0.21344523,0.51928395,-0.6480648,-0.8988322,-0.4791287,-0.13386418,1.2832835,-0.37211296,-0.64360684,0.34777564,-0.4399348,-0.07527586,-0.08011909,0.47466102,-0.03725032,0.013865926,-0.8606362,0.09568066,-0.07225195,0.41498813,0.028532092,-0.10248553,-0.29765087,0.72020006,0.002328628,0.28180936,0.37299767,0.11794372,-0.20795162,-0.65450734,0.16250144,0.72841704,0.44060662,0.04023557,-0.2911157,-0.21320005,-0.27343044,-0.082856655,-0.0033184162,0.4932005,0.7686081,-0.09548753,0.15487751,0.19403125,0.031076908,-0.0046856934,-0.24876477,-0.15919252,-0.18702327,0.041144915,0.52730745,0.72779197,-0.10792269,0.46103215,-0.05276474,0.24108613,0.09466488,-0.50631624,0.6405822,1.1864911,-0.16364226,-0.30584997,0.55796736,0.3596534,-0.27385834,0.4416326,-0.49617776,-0.35307726,0.46850497,-0.117686205,-0.4719043,0.38170055,-0.4631857,0.26944104,-0.80566436,0.29615864,-0.37801692,-0.38949254,-0.6114231,0.030225227,-3.4831638,0.22652021,-0.4131433,-0.17551781,-0.29533324,-0.3296435,0.21768829,-0.5460934,-0.6571703,0.18905321,0.111577325,0.7060273,-0.22897413,-0.07013861,-0.16270807,-0.22416493,-0.3136041,0.17102285,0.3095058,0.3441787,-0.09812689,-0.48567563,-0.2587338,-0.13332525,-0.40213874,-0.12845206,-0.5692013,-0.44958147,-0.18524979,-0.56407845,-0.11983784,0.696227,0.010034119,0.011096135,-0.33393842,-0.044046946,0.05489495,0.32424682,0.25591114,0.4015944,0.05147747,-0.13978863,-0.10717641,-0.18607445,-0.074121274,0.051808503,0.075817056,0.29346758,-0.100787126,0.22748525,0.49735898,0.68030924,-0.256797,0.75848716,0.6571765,-0.17912377,0.33598262,-0.22091344,-0.40323427,-0.6416563,-0.3009965,-0.10399248,-0.42931786,-0.49690613,-0.13444814,-0.35380667,-0.81562644,0.51307166,-0.18643166,0.2794983,0.0939093,0.26919565,0.47278777,-0.028971529,-0.052340005,-0.121537805,-0.24217676,-0.50028974,-0.2759605,-0.696548,-0.5604874,0.07528882,0.89318955,-0.3472032,-0.009133518,0.17685474,-0.3476649,-0.006731987,0.01645894,0.026982335,0.33054423,0.38643447,0.15897019,-0.6497267,0.59669435,-0.007926175,-0.2192936,-0.6034774,0.20980267,0.5319222,-0.68204814,0.5441855,0.23441961,-0.05741823,-0.25635192,-0.70023817,-0.18439364,0.12876949,-0.254559,0.48718715,0.27439013,-0.7844477,0.50011986,0.31239653,-0.3005546,-0.737799,0.53424114,-0.020206204,-0.55091417,-0.010630237,0.384489,-0.24737202,0.15686704,-0.30000883,0.33800554,-0.34126702,0.19356868,0.32005635,-0.14129692,0.08023338,-0.117558286,-0.30495626,-0.63356304,0.08644838,-0.5030554,-0.14510341,0.43710497,0.022735974,0.048127957,-0.05611326,0.09571082,0.560909,-0.3245638,0.20107315,-0.15432762,-0.3678688,0.41313487,0.6337374,0.41148165,-0.41710472,0.62781733,0.023676872,-0.1555836,-0.033845272,0.21703954,0.41092587,-0.04887951,0.3854394,0.020659983,-0.024454415,0.0949435,0.8418743,0.1601444,0.68065697,0.14826643,-0.0029342559,0.38259405,0.17493396,0.24187799,-0.1028033,-0.32447228,0.020071212,-0.028884223,0.21843506,0.5193052,0.15139093,0.18218125,-0.12915854,-0.19323099,-0.008528592,0.19649656,0.20937695,-1.2872313,0.37476534,0.2752954,0.631463,0.6269383,0.061916213,-0.073263645,0.6540188,-0.3067512,-0.03514352,0.28626558,0.029645992,-0.5597286,0.5643035,-0.68939537,0.48844594,0.029548809,0.033899445,0.1999037,0.18865538,0.41354913,0.7741431,-0.15240659,-0.07484049,0.06968018,-0.23555498,0.24667755,-0.3486906,-0.073181145,-0.2872737,-0.44178072,0.6501294,0.5082906,0.20493482,-0.18256323,0.00018431034,-0.016929755,-0.20040977,0.27340502,-0.07533682,0.08108242,-0.13670693,-0.63572437,-0.23529005,0.4434735,0.022916649,0.11909541,-0.06208127,-0.046231877,0.18170099,-0.13352738,-0.17654851,-0.19245842,-0.92277753,0.16374898,-0.5617199,-0.43515852,0.51519215,-0.299414,0.24548051,0.32982087,0.05981746,-0.5279246,0.2665884,-0.24045834,0.73466504,-0.0037831664,-0.15711546,-0.35113317,0.17982514,0.2978773,-0.31357956,0.12151205,-0.25332773,0.07118296,-0.50501794,0.6181897,-0.09313939,-0.3720765,0.0515352,-0.18940385,-0.082133666,0.5591262,-0.2684502,-0.24878572,-0.01686682,-0.23008823,-0.38273048,-0.4181724,-0.07016242,0.26952747,0.29820988,0.1176701,-0.08592575,-0.012374418,0.05184824,0.7121352,0.062418826,0.43683332,0.41461685,0.02204832,-0.404155,0.048641022,0.45278528,0.6245286,0.06368973,0.019388186,-0.29167917,-0.5025547,-0.3986458,0.13213114,-0.11218126,0.43286902,-0.020305736,-0.24788108,0.83569634,0.13937293,1.0368043,-0.05619226,-0.32030267,0.23335107,0.61664397,-0.05231062,-0.22201405,-0.20939814,0.8281078,0.6265822,0.0010651669,-0.06557132,-0.25346866,-0.01873965,0.18149793,-0.22297321,-0.004813854,-0.040280856,-0.46598104,-0.12590334,0.18417035,0.37755463,0.05311626,-0.16327485,0.07773372,0.010048787,-0.06087571,0.08386072,-0.55292785,-0.1077352,0.4090019,-0.06333287,0.0058860267,0.20635703,-0.39453223,0.40703696,-0.5809207,0.06493417,-0.37181538,0.19681872,0.15572476,-0.28580856,0.21549144,-0.0065805316,0.3704872,-0.51273245,-0.17858028,-0.39558104,0.47546488,0.27468258,0.14951505,0.6094604,-0.23226449,0.274705,0.18934436,0.44398338,0.80080426,-0.32209778,-0.03790101,-0.017443892,-0.36928114,-0.6622843,0.41885456,-0.3855788,0.3338636,-0.1501522,-0.21730113,-0.7370196,0.09780989,0.16049287,0.10921048,-0.030433616,-0.820527,-0.36885688,0.18623559,-0.15176785,-0.15836105,-0.45826334,0.064951435,0.63827336,-0.31807062,-0.15059116,0.1214739,0.06585198,-0.26754066,-0.5106597,0.00739752,-0.38421303,0.2331823,0.08124978,-0.34565988,0.0795088,0.15990482,-0.58723825,0.14981297,0.20167516,-0.3883831,0.09907403,-0.18180202,-0.050893094,1.1415464,-0.47910792,0.097290866,-0.49280292,-0.6236867,-0.97482353,-0.29414603,0.65169156,0.18781556,0.19050685,-0.78880596,0.071729265,-0.10791052,0.14789979,0.033304445,-0.47507286,0.529377,0.03403179,0.3246958,-0.12843938,-0.80984145,0.2515514,0.019287225,-0.21144114,-0.4681642,0.5423986,-0.030325158,0.7263759,0.088340424,0.11635254,0.09825229,-0.6719288,-0.040113542,-0.21631983,-0.18763816,-0.654595,0.0032099315,445 +446,0.5245703,-0.08201839,-0.6586304,-0.064208075,-0.41573185,0.0031055936,-0.37414208,0.18976943,0.3559825,-0.45080236,0.09876416,-0.17694642,0.10406109,0.09551136,-0.28538755,-0.5844292,0.108167276,0.2697509,-0.5416554,0.74780095,-0.43465084,0.21342097,0.30526957,0.21476582,-0.046224136,0.038059317,0.17018959,-0.2412751,0.03239902,-0.22765231,0.09340207,0.2490287,-0.79227096,0.3261327,-0.1562273,-0.22478461,0.14952265,-0.42039427,-0.26670346,-0.8132161,0.19812763,-0.8105845,0.5497269,0.12799379,-0.29868275,0.26817355,0.15030916,0.07069136,-0.18148647,-0.076305576,0.23980178,-0.46332213,-0.62241644,0.028445354,-0.17024197,-0.43090567,-0.63111323,-0.05502964,-0.69305265,0.12007912,-0.32159182,0.2891937,-0.35556436,-0.13400319,-0.2327074,0.42060784,-0.39045557,0.018185964,0.09238948,-0.18951699,0.3324555,-0.5485824,0.042309515,-0.100409985,0.23251823,-0.06610907,-0.22390711,0.09590115,0.21754701,0.6034562,0.10968476,-0.36051878,-0.34134573,0.023510316,0.10302345,0.34929132,-0.14899264,-0.22164658,-0.23011647,-0.05286434,0.27433845,0.21695216,0.031130398,-0.39533657,-0.02693975,-0.22826962,-0.30992705,0.5144136,0.539697,-0.31651512,-0.0686797,0.45793417,0.39071772,0.2173075,-0.18130048,0.2495891,-0.063645825,-0.5966083,-0.22338429,0.1759374,-0.06336113,0.5054342,-0.25276658,0.2896826,0.47781375,-0.07920087,-0.19669567,0.18038414,-0.06736143,0.11330678,-0.2606869,-0.12396624,0.26844743,-0.6363679,0.034749832,-0.37147546,0.7344714,-0.09133709,-0.8195401,0.4372444,-0.48618677,0.31699553,-0.14768243,0.8726258,0.9277044,0.63879687,0.2447132,0.9019914,-0.44600025,0.13372208,-0.0973467,-0.57641995,0.41677812,-0.06144604,0.3152184,-0.48684925,-0.051687777,-0.008999133,-0.0745967,-0.15726277,0.65883267,-0.34161186,-0.23585628,0.08714414,0.7128792,-0.20918925,-0.13359977,0.7081703,1.1649574,0.948965,0.26867926,1.2677182,0.29595134,-0.03566765,-0.11014276,0.0627112,-0.91261524,0.25087565,0.2673506,0.32849434,0.15481146,0.1886371,-0.001336515,0.35297123,-0.3280042,-0.23616263,-0.1256274,0.33863026,-0.25574186,-0.21480799,-0.28805804,-0.17582151,0.1683778,0.14655772,0.094391,0.25621548,-0.042238366,0.31575766,0.21661331,1.2493807,-0.22101031,-0.07648251,-0.034113046,0.33113128,0.28984305,0.13686225,-0.14112161,0.3602385,0.3163666,0.07292477,-0.5435076,0.15214317,-0.026418442,-0.45818743,-0.14583094,-0.36089686,0.020018442,-0.32211527,-0.23335396,-0.17025098,0.04860351,-0.53587496,0.3697779,-2.641309,-0.13518855,-0.028202176,0.23857869,0.057253987,-0.12132935,-0.09555433,-0.45735452,0.646739,0.3467452,0.47653526,-0.6928358,0.46024656,0.62687236,-0.5211157,-0.14675984,-0.85775155,-0.18055084,-0.24117234,0.46890873,0.17411283,-0.30373782,-0.013252854,0.19366482,0.520021,0.03960667,0.114347495,0.37641826,0.5568339,-0.061342154,0.5880571,-0.03187883,0.40389842,-0.17744796,-0.23738702,0.3341386,-0.11338846,0.28428504,-0.36304286,0.08341093,0.38711032,-0.29841033,-0.85008734,-0.48158485,-0.030030916,1.1872222,-0.40353838,-0.5928527,0.26435387,-0.11029462,-0.02638994,0.19445232,0.5084007,-0.19174977,0.00075827754,-0.85785896,-0.09978233,-0.008968894,0.27069613,0.017863095,0.07390641,-0.54919434,0.8074406,-0.088863306,0.5515696,0.4409763,0.23552716,-0.17170651,-0.54665387,0.16075289,0.93708867,0.33796427,0.052125197,-0.29892197,-0.21842201,-0.13014151,-0.103964105,-0.12656944,0.62120104,0.7139822,-0.19246408,0.109511234,0.40901747,-0.32453138,-0.027214106,-0.19290236,-0.4794354,-0.17967303,-0.09347641,0.43625125,0.73473036,-0.11454546,0.2815576,0.009120324,0.3180497,-0.11570237,-0.55246943,0.56411934,0.7679905,-0.15697111,-0.06564711,0.58687913,0.3335112,-0.11411699,0.66111606,-0.49566334,-0.37615567,0.45691362,0.030869177,-0.43741298,0.31263262,-0.43519711,0.044380814,-0.9804179,0.27782378,-0.30904618,-0.38875514,-0.5380601,-0.05222952,-3.3579717,0.13832606,-0.20495763,-0.00549025,-0.20924327,-0.11578868,0.2843185,-0.39753813,-0.62430036,0.0972433,0.27602723,0.40078434,-0.18820013,0.020752046,-0.35427108,-0.23857376,-0.2843421,0.2726706,0.071518905,0.20451555,-0.099082395,-0.50697535,-0.039801907,-0.23649143,-0.11039174,-0.09922833,-0.55076796,-0.27219453,-0.010931505,-0.4301267,-0.41187605,0.66257715,-0.3493376,-0.06025475,-0.35060695,-0.03294832,0.012084403,0.32868668,-0.16787517,0.0876589,-0.13344671,0.06575279,-0.12373192,-0.16214971,0.22042938,-0.06433644,0.046085153,0.4587337,-0.14891268,0.038266174,0.57537425,0.45763466,-0.17852198,1.0387008,0.43703502,-0.08410144,0.33081603,-0.05961436,-0.20184804,-0.72636455,-0.1781892,-0.35274604,-0.6130303,-0.30394703,0.05287259,-0.34922048,-0.8252174,0.6140782,0.08410493,0.06525555,0.036076725,0.39256412,0.48340723,-0.046628926,0.09332122,-0.15439974,-0.34854868,-0.583831,-0.26219767,-0.87977844,-0.36607352,0.07708102,0.75255024,-0.29223222,-0.12512794,0.18183093,-0.09615783,0.029708069,0.14471333,0.038492706,0.21804142,0.5157746,0.1979738,-0.7564755,0.5789042,-0.10694955,0.10565523,-0.55426955,0.16889071,0.61769474,-0.78098726,0.3600058,0.5974045,0.1156702,-0.005277949,-0.6920809,-0.26515993,-0.009446161,-0.19249359,0.59245217,0.079442434,-1.0116287,0.77747506,0.1561545,-0.22727093,-0.85977024,0.5233248,-0.014551888,-0.23111956,0.08330897,0.35615572,0.06368957,0.18030642,-0.28135473,0.12870625,-0.43334407,0.368542,0.027507136,-0.23221795,0.37834427,-0.0332377,-0.15524109,-0.8038572,-0.20055307,-0.5668208,-0.31561118,0.25623316,-0.01831678,-0.023359181,0.009404323,0.21909904,0.5090384,-0.30899793,0.1000473,-0.12647615,-0.3387421,0.482346,0.689653,0.34730884,-0.4889095,0.6519289,-0.12452966,-0.09950174,-0.16788769,-0.019346574,0.3138244,0.09835351,0.32829872,0.05357996,-0.008175281,0.17419434,0.8562374,0.13307022,0.3562434,0.1076733,0.0066555953,0.5652116,0.030460963,0.23162436,-0.3029504,-0.55358034,-0.1371275,-0.30490947,0.19749673,0.47497186,0.18612495,0.41913202,-0.06851656,-0.023586724,-0.016266672,0.16542217,0.17934133,-0.9903554,0.39611068,0.30302644,0.49011278,0.8041171,-0.07036225,0.3391957,0.6560153,-0.27451125,0.12617977,0.4126591,0.11520219,-0.21987002,0.46818447,-0.77501136,0.19916888,-0.20228294,0.1533366,0.24353728,0.08553479,0.3920901,0.8802145,-0.12049552,0.16667996,-0.14990373,-0.23991439,0.12206478,-0.2037003,0.0894968,-0.22659619,-0.41742778,0.64880717,0.47883514,0.41737917,-0.23166847,-0.0078494,0.18976314,-0.20468964,0.31493577,0.113046885,-0.10694562,-0.061610024,-0.58246034,-0.079287395,0.8198349,0.07270396,-0.13791336,0.0030924848,-0.17026709,0.2515879,-0.17940901,-0.1621217,-0.20712207,-0.7113249,-0.113209434,-0.24135697,-0.4192645,0.6580065,-0.13727951,0.19967103,0.10838751,-0.0043133325,-0.16855909,0.05761042,0.1102746,0.4293804,0.09002344,-0.18010446,-0.2472765,-0.15901318,0.17447993,-0.33737865,-0.37495413,-0.123261884,0.23558177,-0.4269125,0.33630803,-0.40573272,-0.47094208,0.19047774,-0.20096496,-0.017487247,0.508875,-0.11423655,-0.13688563,0.14497186,0.0021245736,-0.15917632,-0.32527322,-0.250211,0.1937885,-0.06106421,-0.06298326,-0.11389266,-0.047627144,-0.11549253,0.2985544,0.18696281,0.16081071,0.240517,0.22419594,-0.49965072,0.041987862,0.26244864,0.5513518,-0.048062053,-0.06803646,-0.23549286,-0.23362921,-0.2887365,0.010838747,-0.07275186,0.18489338,0.1360722,-0.36665994,0.9183095,0.19448999,0.94904655,0.03563225,-0.3953715,0.19050145,0.5023037,0.0015505062,0.0044816094,-0.28105226,0.86309004,0.5546113,-0.19169863,-0.13861682,-0.6320944,-0.16958673,0.28731355,-0.1723394,-0.0072641796,-0.02430345,-0.72117436,-0.2182009,0.276954,0.31402102,0.022592962,-0.24803235,0.042152856,0.09862275,0.16234958,0.19117914,-0.54802024,-0.04585278,0.2981186,0.26112267,-0.03466127,0.054514714,-0.4021816,0.2901205,-0.57157195,0.07517824,-0.5291835,-0.030928025,-0.043219864,-0.019461062,0.15203866,-0.17253973,0.328353,-0.27099505,-0.3520876,-0.11065634,0.5020209,0.31585482,0.26541078,0.81877136,-0.3098605,0.030677391,0.13077737,0.60680825,1.1269511,-0.24086325,-0.0823408,0.34597096,-0.25939927,-0.62768143,0.08469852,-0.4892051,0.07762111,0.04924274,-0.44217846,-0.43092498,0.012915747,0.016112361,-0.027566712,0.083067454,-0.59940594,-0.12458635,0.32397628,-0.23836528,-0.16753806,-0.22885633,0.064832635,0.9021222,-0.39738178,-0.30454394,-0.09788479,0.124496035,-0.3231067,-0.78246117,0.11469752,-0.42016152,0.29663992,0.32598257,-0.3689029,0.0922913,0.19277914,-0.66634953,0.13049577,0.38593677,-0.27225545,0.08150984,-0.39275715,0.06304329,0.90151817,-0.11364007,0.08605274,-0.46456665,-0.6692293,-0.76134235,-0.18515442,0.18661985,0.060216513,0.058578465,-0.49034002,-0.08036914,-0.28585917,-0.046365302,0.06392871,-0.6994749,0.55249894,0.07893182,0.417999,-0.15741444,-1.0486609,0.05447053,0.08828611,-0.24689402,-0.58960164,0.6138659,-0.038154453,0.7890813,0.12967882,0.052344,0.1918702,-0.6554993,0.21219574,-0.32085484,-0.11315693,-0.64228487,0.060067765,453 +447,0.31618056,-0.116326354,-0.43790933,0.026592294,-0.16852938,0.2903851,-0.06488991,0.3361296,0.17899303,-0.38194773,-0.195137,-0.24551177,0.11745342,0.37090656,-0.17969082,-0.3147449,-0.1084953,0.30008966,-0.429351,0.5164589,-0.13215967,0.29060358,0.06193483,0.4586723,0.09367503,0.14267541,0.057735316,-0.095672645,-0.4136822,-0.2704216,-0.107002534,0.3689852,-0.5665066,0.18464515,-0.30608973,-0.4551904,-0.06556716,-0.5276702,-0.39089197,-0.66152316,0.1938001,-0.94808465,0.6369033,0.055060677,-0.0869205,0.23328148,0.21762082,0.19607614,0.016671443,-0.022463625,0.15367484,-0.22731006,-0.08917488,-0.26464584,-0.3217711,-0.4972878,-0.51816684,-0.030972281,-0.33606955,-0.045475993,-0.21369468,0.16431443,-0.24853897,-0.0758004,-0.069339715,0.24588527,-0.38372126,0.2944179,0.21826747,-0.20206143,0.20753574,-0.49360356,-0.21479042,-0.15251873,0.28007415,-0.35132763,-0.09000896,0.2625876,0.22272332,0.44555384,-0.20564081,-0.07539102,-0.3870078,0.068240546,0.09833851,0.61720645,-0.28936478,-0.5166749,-0.070410036,0.11155999,0.24866097,0.17954822,0.10981791,-0.0780048,-0.026320558,-0.26059872,-0.080427766,0.169024,0.41434756,-0.27063158,-0.38000798,0.3658214,0.4118275,0.10207195,-0.11968238,-0.15733418,0.08424862,-0.36992428,-0.19053893,0.09261148,-0.22552936,0.5888948,-0.005003546,0.22241719,0.5276957,-0.19011827,0.1001979,-0.06936703,0.13527547,-0.018312028,-0.22624059,-0.26054016,0.29715374,-0.21648799,0.19082832,-0.10722875,0.683982,0.21027432,-0.71423435,0.34295842,-0.6360822,0.042864706,-0.022613633,0.42624733,0.5268745,0.44927496,0.2549214,0.55131346,-0.24923193,0.095884554,-0.02841021,-0.24749017,-0.004576304,-0.2221772,0.035653606,-0.49014035,0.049118597,0.10075049,-0.22031738,0.1290582,0.35478336,-0.4897781,-0.13415064,0.19810799,0.9053842,-0.2852417,-0.12774453,0.6674558,0.98919,0.73457515,-0.011596201,1.2812608,0.2751018,-0.25829512,0.05988019,-0.33834597,-0.6567523,0.15129744,0.31121135,-0.83729374,0.4684868,0.21335039,-0.092568636,0.17958508,-0.4790186,-0.058183733,-0.1505913,-0.04241815,0.09325119,-0.054430343,-0.38918695,-0.2488373,-0.13926625,-0.23001216,0.2778564,0.29206055,-0.19312511,0.3857097,0.14409539,1.7993056,-0.049558103,0.13206714,0.10939957,0.42173338,0.11371643,-0.0098933,-0.05427279,0.3901394,0.16295193,0.12893942,-0.19777201,0.06675862,-0.24727185,-0.55657274,-0.19605319,-0.13946614,-0.17304961,0.14675646,-0.3318232,-0.17085505,-0.09227367,-0.17513518,0.44890267,-2.545927,-0.083942406,-0.025004629,0.38061768,-0.3832222,-0.35333315,-0.30756122,-0.41548157,0.32188544,0.18200128,0.37564135,-0.6383391,0.21912828,0.2900447,-0.44205683,-0.25784138,-0.56491023,-0.12760928,-0.00056857296,0.18187717,-0.04180256,-0.09300632,0.1443989,0.013139104,0.32655457,-0.03971398,0.044651512,0.33680555,0.4568932,0.07868584,0.2611157,-0.10945157,0.50395113,-0.3808622,-0.25659966,0.33386973,-0.36705294,0.42276335,-0.030035572,0.08935744,0.3902431,-0.28126594,-0.75948054,-0.63471884,-0.29564166,1.1133882,-0.20299633,-0.3548536,-0.05746139,-0.105704956,-0.24679868,-0.14359619,0.5296346,-0.15433009,0.011719248,-0.8248947,0.016382392,-0.16879018,0.34541076,0.058290165,0.15535513,-0.44282365,0.56142753,-0.1578661,0.4262411,0.28097436,0.20707619,-0.24677877,-0.4679171,-0.01422743,1.0561911,0.29769093,0.21617977,-0.16957322,-0.3568282,-0.28955093,-0.07607285,0.00051372394,0.48291197,0.40915465,-0.058799833,0.046644177,0.32129553,0.07960702,0.114158385,-0.18293251,-0.27160993,-0.0662905,0.008744137,0.51818186,0.6372174,-0.29513508,0.5256497,-0.23336227,0.38141748,-0.17272829,-0.3524911,0.3687454,1.0265478,-0.18738055,-0.10291053,0.7450876,0.40575483,-0.38553157,0.35390326,-0.66569585,-0.41744247,0.28765568,-0.1291499,-0.40353116,0.18779857,-0.12918003,0.11723832,-0.9113316,0.45026478,-0.14421593,-0.19551764,-0.6658975,-0.05347339,-2.4432647,0.08889108,-0.13047719,-0.16604027,0.020579457,-0.11541498,0.1411985,-0.57114875,-0.5322057,0.15543309,0.112610884,0.49558973,-0.1369377,0.31304002,-0.16655578,-0.3851893,-0.17268144,0.26379994,0.30795035,0.35856822,-0.2421514,-0.47688326,-0.09184636,-0.031307634,-0.22671056,0.06608558,-0.7972559,-0.34399632,-0.12408701,-0.4924877,-0.15810248,0.6315827,-0.5970635,0.008107139,-0.22418468,-0.0575178,-0.16967642,0.13785253,0.0844735,0.21048376,-0.0011657849,-0.043344624,0.008943558,-0.21838193,0.4609943,0.11901299,0.2304455,0.4736473,-0.18671568,0.18356933,0.28326124,0.53666526,-0.048105605,0.75141007,0.5706664,-0.124965705,0.19918548,-0.27873427,-0.16701405,-0.55948025,-0.4112325,0.022281902,-0.41701588,-0.4413716,-0.08834733,-0.39414415,-0.8305102,0.66897666,-0.1704971,0.09821926,-0.048736814,0.36984086,0.52050745,-0.39052588,-0.059239753,0.010127522,-0.085219786,-0.48675847,-0.4710331,-0.35235733,-0.33169454,0.06653179,0.99956405,-0.16266926,0.119042285,0.13809453,-0.14668977,-0.07535104,0.12624355,0.10017408,-0.030093106,0.6662879,-0.079036355,-0.57085216,0.43233132,-0.14044479,-0.18067022,-0.61488646,0.2701798,0.5634181,-0.7527877,0.5526246,0.4644782,0.031325523,-0.18859695,-0.52187425,-0.31564596,-0.1339675,-0.1246724,0.141844,0.16446856,-0.510365,0.24382676,0.3539441,-0.3480465,-0.7363807,0.50137514,0.0167371,-0.3756929,-0.0055554197,0.29404226,0.03125069,-0.028474996,-0.19178925,0.2448199,-0.36017624,0.3000808,0.09397477,-0.15597223,0.20863827,-0.24592744,-0.09975474,-0.8301312,0.38079724,-0.35334593,-0.45353493,0.41731152,0.11098527,-0.047071,0.27880168,0.12554505,0.32367215,-0.4110822,0.0029777843,-0.015921244,-0.21484216,0.28570157,0.2170675,0.55521786,-0.5253519,0.5566521,-0.11133184,-0.26985392,0.022650795,0.016724126,0.51205176,0.012390405,0.20428261,0.1003482,-0.32179937,0.16801058,0.7010934,0.19567879,0.38750595,0.10955145,-0.06099022,0.27743393,0.06417818,0.050914086,0.02202796,-0.5972823,-0.064147666,-0.22046116,0.11620821,0.37758908,0.105744086,0.36287507,-0.2558323,-0.27652428,0.058380913,0.14082143,0.16155526,-1.0333936,0.14998674,0.01334316,0.74782956,0.32791528,0.049934857,0.12801269,0.6438045,-0.22522299,0.07583641,0.38309908,-0.1400247,-0.39074925,0.58140945,-0.58431065,0.2779295,0.004517398,0.011674159,-0.020846201,-0.047099177,0.22850081,0.81487185,-0.22221348,0.09740906,-0.01563497,-0.27044842,-0.018504636,-0.260459,0.32570282,-0.580869,-0.20549496,0.6438459,0.4430392,0.43793112,-0.21300279,0.08310955,0.06178238,-0.18944037,0.20162654,0.22537829,0.31608003,0.11935259,-0.5644312,0.0008824212,0.7268964,-0.0448745,0.0049760765,0.039014578,-0.30686074,0.26041284,-0.26477963,-0.010470403,-0.08592522,-0.6643155,-0.025716636,-0.57011193,-0.42819193,0.4364331,0.08513416,0.15215273,0.122805014,0.03491838,-0.22972319,0.48650816,0.23345329,0.83103794,0.066767626,-0.24214318,-0.25010866,0.30551872,0.23331411,-0.14789112,0.095742844,-0.110728465,0.17573152,-0.51846546,0.307152,-0.08942883,-0.22585031,-0.08614846,-0.1531249,0.1054845,0.4898696,0.11205391,-0.03765751,-0.027226636,-0.056819685,-0.48715836,-0.019161072,-0.18929422,0.09020444,0.3412682,-0.098851785,-0.1650507,-0.16328396,-0.3097546,0.32060698,-0.00958424,0.40004662,0.5994557,0.18120918,-0.21658978,-0.022302065,0.07607259,0.5314993,-0.14182876,-0.19160354,-0.3075866,-0.32737923,-0.24435234,0.30222756,-0.19653805,0.14769255,0.2000618,-0.30288342,0.88417065,-0.045472775,0.99267,0.07567153,-0.24952282,-0.06267677,0.44708714,-0.016052887,-0.039069302,-0.42172375,1.0902647,0.6223067,0.18044195,-0.0076290583,-0.089617826,-0.048242204,0.083561614,-0.22897728,-0.20316401,0.0069287247,-0.5346065,-0.2742438,0.19882563,0.30282336,0.14941724,-0.106590234,0.29320398,0.19795202,0.13088147,0.24815392,-0.4952774,-0.24995486,0.3793966,0.40943268,-0.019134032,0.25085765,-0.3406556,0.39625028,-0.39492688,-0.00040388107,-0.4479682,0.07772682,-0.14386173,-0.23159565,0.13976164,0.00047939163,0.4273145,-0.44991305,-0.28181985,-0.15842007,0.33221117,0.1732893,0.0879262,0.44940853,-0.22395824,-0.01908746,-0.013283761,0.5034514,1.1283073,-0.38298774,0.1019912,0.4199989,-0.20208745,-0.5629258,0.3835027,-0.32030708,0.17892821,-0.17321107,-0.17520557,-0.5080156,0.2568464,0.1248749,-0.10075416,-0.1333926,-0.42779508,-0.045607537,0.23743495,-0.30251804,-0.23786448,-0.23572288,0.09460856,0.52746665,-0.15074696,-0.3405002,0.17334117,0.22794403,-0.21450724,-0.38017735,-0.11019908,-0.38004285,0.07684892,0.18212487,-0.34070224,-0.20340729,-0.024889281,-0.38877004,0.0675989,0.20533194,-0.37141708,-0.043819923,-0.26596838,0.07840241,0.8794039,-0.17934923,-0.015446224,-0.49088404,-0.38505316,-0.90032345,-0.39519963,0.30505088,0.14906137,0.027363848,-0.5690642,0.032723103,-0.10124094,-0.30199438,-0.15914421,-0.33524898,0.3074856,0.23154533,0.4322137,-0.26968294,-0.68586415,0.16260715,0.011394133,-0.1468147,-0.5941094,0.35959777,0.08027729,1.0882565,-0.073947154,0.016839594,0.45006588,-0.5727411,-0.19246863,-0.10438924,-0.069787726,-0.6604322,0.08852208,454 +448,0.20462254,0.03321197,-0.5317203,-0.23621331,-0.08419818,0.23038629,-0.14453268,0.38850254,0.15417223,-0.61709684,0.07592409,-0.108394735,0.07956212,0.40530446,-0.13396832,-0.4908368,0.20548926,0.011341544,-0.5356576,0.3072409,-0.46656507,0.15661423,-0.12574634,0.22547671,-0.007538374,0.28641966,0.19033787,-0.3546259,-0.28909636,0.016875539,-0.1143124,0.17436512,-0.44138846,0.22036743,-0.11785289,-0.15832019,0.19704802,-0.23093328,-0.51016235,-0.5775796,0.14859827,-0.7391213,0.5059338,0.108061805,-0.11400863,0.21856005,0.1657822,0.14466214,-0.24631135,-0.06896581,0.33065414,-0.36259422,-0.2169586,-0.23173453,-0.36112276,-0.6105991,-0.55680764,-0.0497712,-0.5123871,-0.20270446,-0.3559876,0.09900213,-0.35199967,-0.18470852,-0.045826316,0.43440676,-0.37065792,-0.053863347,0.11334671,-0.30285195,0.22069001,-0.63805723,-0.102426186,0.03328534,0.37876892,-0.2949564,-0.08548416,0.40874985,0.30403677,0.49081972,0.020392152,-0.2121257,-0.360853,-0.1493307,0.122396156,0.49674144,-0.23310423,-0.46593386,-0.009094162,-0.0808252,0.08614584,0.101129904,0.016004797,-0.31800586,-0.14185928,0.2192022,-0.24444234,0.51507246,0.59303534,-0.36675748,-0.15956272,0.45380238,0.47931892,0.065539375,-0.24750963,0.043139525,-0.07821612,-0.44788218,-0.1346448,0.2715065,-0.21393606,0.40763107,-0.19334888,0.32706395,0.80573004,-0.15352729,0.043730352,0.1172201,0.115204915,-0.0084726,-0.12614438,-0.027100038,0.06116522,-0.5416563,0.12689231,-0.2707052,0.82309246,0.17722164,-0.80203545,0.41697237,-0.431546,0.076929554,0.0283725,0.5513957,0.5662924,0.39170223,0.14955114,0.7359342,-0.5762825,0.024256127,0.10878665,-0.42153722,0.13787067,-0.06801487,0.06386582,-0.5149871,-0.11778386,0.10225002,0.078992255,0.059080865,0.22115466,-0.42561898,-0.09286749,0.37897918,0.8678668,-0.34438905,-0.18896,0.29650545,1.0682299,0.7614188,0.03888011,1.1713077,0.12005932,-0.29926077,0.109364115,-0.25547424,-0.7518957,0.28648704,0.33081284,0.23686323,0.1460271,0.19487491,0.19801223,0.30036047,-0.4844949,0.104666255,-0.18218902,0.24857916,0.15308608,-0.09690582,-0.24803284,-0.24357916,0.0380853,-0.11612763,0.20106263,0.18663676,-0.17509656,0.25036412,0.20526086,1.355651,-0.05843476,0.111377835,0.049646597,0.71653754,0.11010532,0.10620683,-0.087615676,0.40676418,0.32512143,0.015391505,-0.48317465,0.029699573,-0.35020456,-0.47494096,-0.21284582,-0.4071918,-0.1590767,0.037937608,-0.45607647,-0.10274004,0.10744758,-0.530239,0.6021012,-2.852514,-0.068862855,-0.15031849,0.32604602,-0.19996616,-0.16536322,-0.08735527,-0.413322,0.45424923,0.31316376,0.41982746,-0.61445385,0.38478252,0.6102396,-0.4029772,-0.14012696,-0.67432624,-0.13832001,-0.24894652,0.23103204,0.19186516,-0.17821513,-0.06396003,0.20849654,0.4236431,-0.09541652,0.058550425,0.23195755,0.1997973,0.03766797,0.512973,-0.09409972,0.6066182,-0.2964156,-0.14536344,0.26829955,-0.49368435,0.09730513,-0.0240648,0.13737448,0.52923244,-0.09232137,-0.79526037,-0.6063923,-0.28462243,1.0733258,-0.2770674,-0.28608492,0.40906587,-0.17628439,-0.26145032,-0.12579152,0.56421787,-0.04410303,0.12428714,-0.68367606,-0.034952383,-0.09637386,0.16614243,-0.12774768,0.10761206,-0.39829472,0.77409756,-0.043865394,0.52401096,0.236659,0.18396525,-0.4127813,-0.29832342,0.020856513,0.7541253,0.19869478,0.1560353,-0.12099888,-0.25894454,-0.22458243,-0.22434609,0.13749182,0.49403995,0.5905085,-0.09616334,0.014922278,0.30239272,-0.10660629,-0.07317817,-0.16298512,-0.3614683,-0.042840745,0.1872515,0.57739055,0.45972404,-0.1827086,0.41026944,-0.14532845,0.18429706,-0.31026417,-0.39414543,0.5284667,0.599309,-0.19180237,-0.25879207,0.4069603,0.45833877,-0.28721604,0.32245514,-0.72897893,-0.38753682,0.6164113,-0.14901343,-0.5144215,-0.06930054,-0.2710375,0.18435419,-0.75937873,0.38818482,-0.19363107,-0.6827876,-0.4175304,-0.16733791,-3.5615008,-0.07266346,-0.34251684,-0.113456026,-0.05324184,0.10717155,0.23110892,-0.56806195,-0.26991352,0.12043587,0.096133016,0.6060257,0.086772576,0.021591434,-0.4031114,-0.13424285,-0.24146244,0.22746415,-0.0068872147,0.27298814,-0.06334532,-0.4346015,0.25698477,-0.22026123,-0.34621546,0.09525993,-0.52590686,-0.37817234,-0.19076847,-0.5825421,-0.40796638,0.7606606,-0.605642,0.037875872,-0.29377255,0.039510462,-0.24348356,0.386077,0.21615908,-0.0032367196,-0.041314453,-0.020740347,-0.0777269,-0.49581695,0.3650792,-0.022289345,0.36957887,0.46989962,0.04705013,-0.102271564,0.647638,0.57719916,-0.035380572,0.95500964,0.3545852,-0.033889253,0.43808392,-0.2755471,-0.20807214,-0.50108564,-0.44877085,0.11284467,-0.3736946,-0.2754564,-0.049330354,-0.34848437,-0.6794356,0.41320756,0.107283406,0.100651465,-0.0026050976,0.1372285,0.3093794,-0.23574856,-0.096487276,0.024683671,-0.17895474,-0.48119488,-0.33427528,-0.7024718,-0.52460533,0.087852105,0.886007,-0.07523038,-0.14148116,0.09092803,-0.33551598,0.16141064,0.2894042,0.16986445,0.23567311,0.50558364,-0.13719732,-0.68220145,0.5100059,-0.24097982,-0.004180342,-0.5830709,-0.0015719533,0.705516,-0.6981939,0.58462226,0.36892393,0.05357015,-0.23802952,-0.4672344,-0.2595677,-0.2097356,-0.21539171,0.2163085,-0.15063033,-0.9821431,0.44293836,0.20209742,-0.37366793,-0.49312314,0.49066895,-0.04481062,0.026454816,0.17353562,0.38594374,0.047062654,-0.1110659,-0.111548916,0.113579996,-0.50482875,0.36200455,0.33030686,0.10294598,0.43937343,-0.14775912,-0.14741485,-0.6376999,-0.3018472,-0.4483934,-0.2896116,0.25426933,0.027416382,0.17781186,0.14619151,-0.07692694,0.29908055,-0.33790976,0.12050308,-0.104310825,-0.2952424,0.3029201,0.35952976,0.35489702,-0.34222007,0.6679916,-0.024532648,0.009123698,0.020792374,0.017828953,0.5192357,0.32089314,0.43287757,0.030111184,-0.17247322,0.2634261,1.137824,0.29527515,0.4248662,0.1471967,-0.1338553,0.24279754,0.06109767,0.022255434,0.08876974,-0.49379987,-0.08345991,-0.18888076,0.17837422,0.35893154,0.10908791,0.34605545,0.007057999,-0.226248,0.030137384,0.17025311,-0.086308636,-1.328293,0.34015724,0.34972593,0.81064624,0.17656729,0.06505007,-0.018007457,0.821349,-0.17689559,0.1669743,0.14050199,-0.21662895,-0.48894623,0.6038065,-0.7515473,0.50416607,0.008305396,-0.08163362,0.040286977,0.004669509,0.2783624,0.90890396,-0.202505,0.12573524,0.07154008,-0.3234423,0.29890266,-0.40124485,0.20980957,-0.31605196,-0.27421495,0.48959488,0.48806515,0.42292634,-0.14124103,-0.027096357,-0.05073472,-0.18707392,0.17847721,-0.14909838,0.025052914,-0.1204836,-0.6245772,-0.23515725,0.4203606,0.09322602,0.29227147,0.237875,-0.0985564,0.5112985,-0.12859014,0.14943083,-0.11665017,-0.4671075,0.0873229,-0.006844797,-0.4567501,0.4990644,-0.36241907,0.43760014,0.27268124,0.0027972634,-0.10138909,0.52878326,0.3290069,0.77573395,-0.10175736,-0.20694253,-0.4637766,-0.12888396,0.10134578,-0.26759043,-0.10253294,-0.4474029,-0.07817139,-0.49155268,0.20842838,-0.23583505,-0.2204973,0.033080287,-0.2958171,0.06364461,0.6407549,-0.06452401,-0.15358461,-0.025203113,0.032861274,-0.11831548,-0.030572874,-0.2654498,0.21667962,0.094278954,0.0478274,-0.23969911,-0.3195634,-0.17609684,0.12544468,0.04230594,0.18431698,0.40654883,0.07554851,-0.23832531,0.03490217,0.19420172,0.57640225,0.14562032,-0.034113668,-0.17715561,-0.25613695,-0.2665234,0.08281155,-0.100422785,0.22581625,0.19578576,-0.38792562,0.60698825,-0.3530536,1.1264176,0.19446513,-0.26330742,-0.010087328,0.5776178,0.025333779,0.17744756,-0.3708015,0.7202214,0.41589567,-0.022760093,-0.18000586,-0.41817507,0.013819271,0.36811957,-0.08721212,-0.20042913,0.012268598,-0.78543967,-0.20956203,0.3677114,0.19164518,0.325239,-0.06068139,-0.17927395,0.18610118,0.16893479,0.54960835,-0.6359878,0.0069857496,0.29395872,0.1780088,0.07914775,0.13088927,-0.36459112,0.3918102,-0.5344804,-0.040714372,-0.17176557,0.045125734,-0.39933532,-0.20191817,0.20292547,0.035554502,0.4807911,-0.097361766,-0.23830414,-0.077619076,0.5888534,0.22249894,0.2922924,0.67962205,-0.060159948,-0.08212356,0.11226861,0.31190827,0.87261873,-0.2927482,-0.005614255,0.42406207,-0.37972468,-0.6051623,0.28598592,-0.48326555,0.22408538,-0.053402882,-0.38837764,-0.2197143,0.23941055,0.27037725,0.021197487,0.17139904,-0.54014766,-0.22218823,0.30169296,-0.4119095,-0.2929682,-0.21648143,0.13321377,0.5390128,-0.40747693,-0.09991813,0.17728603,0.27782083,-0.16739824,-0.5515629,0.0803191,-0.34185463,0.431308,0.10946699,-0.46294695,0.014413608,0.08252458,-0.3333288,0.33023474,0.23136675,-0.41470575,0.019279571,-0.095989905,-0.061842434,0.69093996,-0.07580023,0.14232771,-0.54427946,-0.325634,-0.91907275,-0.27205014,0.3067911,0.12764464,-0.121782534,-0.44579035,-0.1739386,0.0837222,-0.045511026,0.043130044,-0.50573915,0.43880266,0.061026342,0.41602057,-0.03959114,-0.86249775,0.02721847,0.15081705,-0.040635288,-0.5076919,0.52782094,-0.29128,0.827375,0.058971163,0.1287945,0.12203749,-0.35394642,0.1700858,-0.39483786,-0.27216247,-0.55045944,0.038068723,455 +449,0.5330191,-0.1667318,-0.5979684,-0.21661724,-0.31873578,0.1847531,-0.35157543,0.24135756,0.29157168,-0.16154051,-0.118956044,0.022826228,0.18211898,0.45495528,-0.12701829,-0.9416556,0.05478539,0.32023033,-0.5873104,0.57069606,-0.5189806,0.3081165,0.042499278,0.43890736,0.25148222,0.084100805,0.12671581,0.1676334,-0.083465986,0.062386017,-0.052630518,0.23900546,-0.56440693,0.13852407,-0.25714606,-0.4925379,-0.2707037,-0.4802126,-0.3406231,-0.89660424,0.3659552,-0.81505287,0.64076334,-0.18869124,-0.46702358,0.075103804,0.08309867,0.12680931,-0.22646295,-0.094251394,0.18992485,-0.23522094,-0.17030177,-0.17503121,-0.290785,-0.4058681,-0.5958201,0.025679203,-0.6895266,0.119196855,-0.13713269,0.13987735,-0.3385661,-0.013327869,-0.10916033,0.48509052,-0.32110897,0.08962561,0.28383118,-0.0950739,0.08112711,-0.41722077,-0.10262445,-0.10617894,0.36495638,0.08079965,-0.49980664,0.29923338,0.39927548,0.50163305,0.06778607,-0.44364443,-0.3715029,0.069530465,0.096547626,0.49398112,0.05101761,-0.38893107,-0.4836538,-0.011009506,0.3332341,0.08898958,0.045824032,-0.28104416,-0.08224607,0.050877668,-0.09012128,0.61609566,0.5140289,-0.24315913,-0.09807386,0.32651773,0.53889364,0.19663158,-0.31465262,0.095394,0.029827228,-0.6278275,-0.16264808,0.10563507,-0.07440402,0.63085526,-0.37564352,0.1530642,0.5700884,-0.1420683,-0.37685442,0.09291696,-0.005156449,-0.07915517,-0.23557453,-0.20555861,0.26810485,-0.5505105,-0.023003897,-0.20916994,0.6543546,0.2734217,-0.9180976,0.39887252,-0.49257892,0.3053176,0.04522913,0.63025033,1.1193212,0.44462886,0.34975663,0.9043481,-0.32072097,0.114062384,0.26825044,-0.44048056,0.050498135,-0.19412567,0.14496008,-0.5831021,0.04252961,-0.07051417,-0.23405112,0.15674771,0.7475868,-0.49850026,-0.123800874,-0.1026078,0.5922588,-0.37285396,-0.24854349,1.155596,1.0522152,1.1924458,0.09310765,1.3050703,0.44460732,-0.056056015,-0.09163545,-0.18914123,-0.69370365,0.24584839,0.10351692,-0.34525728,0.7776331,0.02032673,0.058569986,0.48850566,-0.3200376,-0.11050554,0.054222196,0.17947683,-0.077548705,-0.07096248,-0.51022214,-0.34365073,0.16162512,0.11502273,0.19209644,0.3374465,-0.22208823,0.7720833,0.103966355,1.2387229,0.13902943,-0.18703093,-0.16870871,0.37853232,0.41318497,-0.23474209,-0.26285234,0.33675876,0.42831537,-0.114244774,-0.56569254,-0.15096048,-0.35532758,-0.16538687,-0.1893989,-0.33982614,-0.09651508,-0.29884106,-0.3796887,-0.2262713,0.101205066,-0.41988117,0.4655302,-2.3690765,-0.5515973,-0.025084661,0.29448012,-0.04705145,-0.473073,-0.42834383,-0.6292137,0.3577493,0.2425939,0.4287708,-0.78517085,0.45136425,0.3500723,-0.6655427,-0.07627903,-0.7227332,-0.05354442,0.026352942,0.38610226,-0.032472108,-0.24658029,0.13580814,0.31289315,0.7065887,0.060676064,-0.012802647,0.45765516,0.6167108,-0.17701821,0.49257842,0.09911042,0.66507083,-0.18410088,-0.12393902,0.4396135,-0.35046366,0.3321612,-0.2645026,0.12258851,0.623478,-0.51108754,-0.84686595,-0.55176216,-0.016006645,1.2800217,-0.36925894,-0.48422793,0.020060828,-0.391355,-0.29050046,0.18295991,0.46826896,-0.048698187,0.03188449,-0.7405637,-0.21788533,0.1855615,0.06023676,-0.17839918,0.22696564,-0.32355312,0.6922129,-0.17950591,0.39593193,0.35403326,0.14745788,-0.21186724,-0.65531284,0.23293538,0.758701,0.26954132,0.07630899,-0.427749,-0.25052845,-0.35214335,-0.20463812,0.056917462,0.6315225,0.5910166,-0.11527895,0.05618828,0.42980137,0.0307614,0.14642325,-0.19221221,-0.30266908,-0.23444855,0.04947256,0.6615532,0.9798058,-0.2510038,0.5656871,-0.10848717,0.20513186,-0.0794975,-0.68924683,0.759028,1.0664815,-0.27242455,-0.35717988,0.3592486,0.14927197,-0.43355793,0.46017966,-0.39804888,-0.20650163,0.58868724,0.034187123,-0.2585444,0.29134035,-0.38001236,0.1264576,-0.8696385,0.24103239,-0.09447446,-0.582701,-0.6391342,-0.19633736,-3.8801448,0.14357014,0.022768319,0.031859428,-0.23497216,-0.29553345,0.2042661,-0.50808316,-0.7671798,0.048669994,-0.00653424,0.7056952,-0.3117195,0.0943627,-0.31060606,-0.45420012,-0.35507086,0.25134033,0.2712632,0.5105565,-0.0074871522,-0.37540603,0.080536745,-0.45896897,-0.59008604,-0.16322266,-0.75989485,-0.4909644,-0.12733427,-0.66200536,-0.28495792,0.7882622,-0.34639543,0.048239343,-0.32531086,0.04779189,0.05537392,0.34343284,-0.021041395,0.101729564,0.19006209,0.017877916,0.10529393,-0.08193477,0.22082332,0.007715766,0.21664225,0.4054515,-0.0944634,0.43367764,0.6389619,0.8726286,-0.15004556,1.0424182,0.35250887,-0.077623256,0.26869297,-0.20384811,-0.34467217,-0.6675028,-0.14499633,-0.23725213,-0.6755763,-0.43084636,-0.19248597,-0.45007125,-0.9804129,0.4485759,-0.0031151006,0.19879031,-0.10055732,0.4452822,0.511835,-0.17552508,0.17732306,-0.21976106,-0.38580346,-0.5527529,-0.39557832,-0.69031364,-0.6121529,0.08453585,0.84333813,-0.14281853,0.026894907,-0.053002425,-0.49867788,0.22118306,0.27583647,0.2226878,0.20848384,0.2958364,-0.15365975,-0.7124157,0.14585085,-0.253722,-0.1268501,-0.6206721,0.22762145,0.71896166,-0.47069654,0.5792284,0.41299608,0.17947435,-0.045531187,-0.58848953,-0.042626016,0.17019643,-0.14231773,0.72698075,0.35790667,-0.60233194,0.58027077,0.2204748,-0.13581927,-0.6171277,0.5704659,-0.00806966,0.007966944,-0.083045505,0.5022331,-0.036080923,-0.035101365,-0.18200563,0.1290781,-0.5600055,0.21921457,0.22408852,-0.029977152,0.2804773,0.057324264,-0.26405483,-0.7558343,-0.14574681,-0.6109322,-0.29110596,-0.040184226,0.12420894,0.27269605,-0.18710062,0.28254262,0.43300357,-0.31751826,0.05339023,-0.23290761,-0.2559578,0.31862,0.56127816,0.3198585,-0.47991082,0.687839,0.030767053,0.07700542,0.034779344,-0.08881031,0.39519194,0.26162767,0.43373445,0.27189702,0.026131127,-0.051584255,0.6444705,0.23589425,0.41749796,0.23139203,-0.27273256,0.10618604,0.08642864,0.43720534,-0.21380305,-0.20344631,0.047951933,-0.30753464,0.22346838,0.5427629,0.2099085,0.08816164,-0.123097196,-0.30663034,0.13235576,0.119602926,-0.062898815,-1.7911146,0.46382698,0.38976097,0.75287706,0.35957885,-0.046060685,0.0010597706,0.43549326,-0.39297867,0.10312695,0.54671717,0.048710447,-0.2944837,0.49158064,-0.7454896,0.49775696,-0.18913303,0.16221325,0.2171541,0.099503435,0.37986448,0.9279334,-0.15158577,0.09074599,-0.08242234,-0.120383516,0.15196338,-0.33405086,0.027688235,-0.4786769,-0.3191785,0.8149253,0.41157055,0.39042202,-0.43032566,0.04920571,0.04564147,-0.17439492,0.1333688,-0.0006919993,-0.011026795,-0.3229761,-0.65500915,-0.17547129,0.49503753,0.027817488,0.11415822,0.14848697,-0.21728878,0.2404627,-0.06509222,-0.011213005,-0.19140713,-0.9028273,-0.19765688,-0.31633767,-0.5627081,0.56782764,-0.38702223,0.25355902,0.27232778,0.022865878,-0.3455537,0.19468312,0.041420996,0.7091693,0.20754561,-0.09592422,-0.22344184,0.19278334,0.43546385,-0.35846907,-0.060100455,-0.30916032,0.26498583,-0.43827057,0.5251824,-0.1816306,-0.37167114,-0.13502665,-0.018787,0.008310063,0.41329965,-0.34044117,-0.10459956,0.028686536,0.06182479,-0.23982465,-0.160293,-0.30986282,0.26674542,0.14774469,-0.26389328,-0.018074155,0.031345267,-0.1336559,0.4357381,0.0040164376,0.27534673,0.461164,0.0040677446,-0.32616535,0.03682675,0.17411272,0.5409387,0.33095354,-0.33613792,-0.45187297,-0.20800985,-0.418576,0.35941258,-0.15816939,0.052963313,0.08676902,-0.25230595,0.68751776,0.1497835,1.353577,0.04190443,-0.3650991,0.13804662,0.5968947,0.12225338,-0.10777758,-0.23915373,0.9385548,0.46846333,-0.26851568,-0.05559483,-0.5011332,-0.09660586,0.30155304,-0.25347278,-0.21199211,-0.1516095,-0.69089764,-0.18697342,0.204772,0.10054896,0.16591416,-0.14875767,0.100975044,0.10012921,0.04064581,0.33367515,-0.5596051,-0.12300159,0.4332552,0.2500196,0.013446687,0.11812067,-0.33414772,0.39182827,-0.562736,0.08875382,-0.50397825,0.23190962,-0.12239998,-0.38404015,0.31091315,0.17680784,0.20563708,-0.30087137,-0.3147722,-0.4315836,0.5561442,0.15652843,0.08483742,0.50858647,-0.19046034,-0.20882286,0.45430037,0.47277185,1.2341012,-0.092440896,0.12396972,0.2916114,-0.2847471,-0.62933403,0.22398856,-0.5226856,0.34525946,-0.09369801,-0.26205948,-0.65338475,0.13202292,-0.013208575,0.19206135,0.12937471,-0.58249086,-0.28788158,0.33593076,-0.26222256,-0.05584254,-0.37733343,-0.005944844,0.57770854,-0.34350422,-0.47728953,-0.009096571,0.23910463,-0.26747552,-0.63146335,0.13581456,-0.3869265,0.43859452,0.04351254,-0.38524956,-0.033966567,0.21911065,-0.524518,0.2552654,0.43461823,-0.43204588,0.17553835,-0.19446182,-0.11715715,1.0965954,-0.38026524,0.42662236,-0.49315313,-0.593456,-0.96869105,-0.24104404,-0.010782204,0.12508836,-0.107077,-0.81482476,-0.089553766,-0.18560669,-0.14987575,0.14156635,-0.5591289,0.46610168,0.17239107,0.3607963,0.04907493,-1.030659,-0.013105606,0.13659994,-0.2752121,-0.54997593,0.60628045,-0.045944426,0.7191931,0.14083888,0.2778742,0.15999115,-0.5802719,0.31150988,-0.27138105,0.0047249966,-0.5742178,-0.06595205,467 +450,0.47834542,-0.14273867,-0.29396996,-0.07148707,-0.10321995,0.29629704,-0.13581808,0.30490538,0.048996765,-0.5285431,-0.26527706,-0.22844408,0.07804785,0.35737976,-0.25225264,-0.40626097,-0.022298638,0.18054093,-0.42861217,0.47528532,-0.4040227,0.4135201,0.18762067,0.40130132,0.19780533,0.28647348,0.30674738,-0.23660158,-0.37085757,-0.22642335,-0.20719096,0.17380211,-0.53191835,0.096261226,-0.117081285,-0.44121125,0.0151199205,-0.46471828,-0.2350401,-0.70348686,0.42364755,-0.9670745,0.53387064,0.04722766,-0.21249728,0.39730725,0.11125275,0.1429217,-0.2209284,0.06716423,0.20941556,-0.26445538,-0.00022329178,-0.2327832,-0.09205141,-0.3242218,-0.6198438,0.17572837,-0.45218903,-0.20575173,-0.31681678,0.15203223,-0.19429366,0.06489094,0.0039503616,0.4172361,-0.4120946,-0.1262351,0.105002105,-0.23599707,0.2587073,-0.5415287,-0.25997385,-0.10543947,0.31753424,-0.28707042,-0.08554826,0.1833569,0.301425,0.5426118,0.027715117,-0.055105235,-0.39167854,0.014865892,0.041886587,0.5375585,-0.14165404,-0.56566757,-0.19106553,-0.18491246,0.20122756,-0.014087021,0.15767698,-0.1346183,-0.09189733,0.027668906,-0.25206265,0.3334939,0.47403198,-0.44608182,-0.30771664,0.4029728,0.5066122,-0.07105916,0.014976497,-0.08739761,0.006150995,-0.4796583,-0.11637713,0.16961214,-0.2697091,0.5873187,-0.18102908,0.35393476,0.6685295,-0.2506042,0.07073304,-0.014760624,0.039826963,-0.20489308,-0.031375222,-0.19306247,0.18047203,-0.3282624,-0.010342581,-0.31250316,0.9941836,0.17792289,-0.67012817,0.3206697,-0.4378552,0.15759684,0.009119206,0.5681391,0.4646509,0.43517366,0.33092484,0.6528572,-0.5261423,-0.036819525,-0.0554034,-0.35204133,-0.07871906,-0.24062102,-0.0633462,-0.33775237,0.10746177,0.20798783,-0.10537411,0.032233406,0.60738295,-0.5664944,0.11184013,0.13819213,0.77027434,-0.3321503,-0.13390757,0.8850283,0.9684697,0.88508904,0.028071016,1.1544313,0.30947632,-0.361401,-0.061746716,-0.4036133,-0.5511868,0.2741974,0.41246256,-0.35990843,0.38138396,0.09498457,-0.08059193,0.3398289,-0.46642825,-0.0076928735,-0.2226292,0.08522027,-0.011280141,0.086814515,-0.45054606,-0.27627507,-0.02022894,-0.01787528,0.33966848,0.23866208,-0.29789656,0.54302174,0.083687015,1.4842957,-0.13509949,0.120852254,0.0067044008,0.47973388,0.09071381,0.104137145,-0.084988214,0.34260824,0.32221323,0.08875646,-0.6628242,0.027477475,-0.16212818,-0.5601004,-0.23479693,-0.26837987,-0.17239383,0.07552232,-0.37929183,-0.22553132,-0.0706687,-0.37191895,0.40022114,-2.53021,-0.14075881,-0.0059220493,0.2584999,-0.2438203,-0.41069454,-0.08630369,-0.5841952,0.33918157,0.35793945,0.43193692,-0.68013877,0.19325624,0.38031787,-0.3932825,-0.26710746,-0.58458996,-0.051080763,-0.080982484,0.32722563,0.018969268,-0.1983618,-0.089057155,-0.037435073,0.5131995,-0.04111827,0.064887695,0.27377498,0.3669548,0.12414432,0.40885878,0.2147224,0.6025972,-0.19425377,-0.13677125,0.4637147,-0.3714103,0.2876635,-0.2482251,0.13624169,0.3339395,-0.5006591,-0.82777923,-0.71667445,-0.19117442,1.3112704,-0.14159362,-0.49120674,0.14423452,-0.038095795,-0.19699891,0.015087182,0.42287722,-0.23576058,-0.013387923,-0.79356843,0.031094562,-8.752303e-05,0.30506244,0.074099004,0.12745441,-0.49695587,0.6360439,-0.065863825,0.26943046,0.24544685,0.2229161,-0.3178065,-0.57876045,0.10973228,1.1577307,0.32045317,0.19523844,-0.30666497,-0.27053052,-0.29169875,-0.13054667,-0.025758576,0.47461677,0.78242856,0.11383244,0.10551683,0.29963073,-0.011297425,0.19299795,-0.10346796,-0.26170525,-0.11906821,0.0028480205,0.5796453,0.5650291,-0.1700059,0.39991316,-0.23907603,0.38327318,-0.16548602,-0.3736441,0.6550188,0.95657635,-0.1802921,-0.1982332,0.6610366,0.5654248,-0.30399707,0.43530703,-0.6621068,-0.5542451,0.45476896,-0.23253189,-0.42049533,0.27675885,-0.2983306,0.21789679,-1.0321711,0.3250154,-0.049117785,-0.28829965,-0.5461354,-0.09546673,-3.5224717,0.1210578,-0.24117978,-0.10598196,-0.059979822,-0.29842982,0.19106375,-0.6130075,-0.4405396,0.15613382,0.09770105,0.5898047,-0.012364619,0.31603995,-0.19201884,-0.15035531,-0.24371807,0.14983566,0.14494033,0.3464353,0.01738579,-0.42458826,0.18521254,-0.21755256,-0.32482022,0.009004703,-0.5053716,-0.5899496,-0.17798677,-0.5025193,-0.40624288,0.6367754,-0.42190072,0.111820474,-0.17143007,-0.037885703,-0.113824494,0.38734266,0.09257709,0.10335362,0.08742523,-0.084867276,0.06385702,-0.25210315,0.35799244,0.056541093,0.18609087,0.5141508,-0.19476035,0.14632739,0.40106845,0.5521548,-0.08811133,0.7540046,0.47539926,-0.083811246,0.24167268,-0.36564043,-0.30596787,-0.65356344,-0.3274782,-0.057332516,-0.42820403,-0.48377195,-0.15168135,-0.407338,-0.7926753,0.5332542,-0.008894001,0.09947449,-0.13330297,0.43643835,0.5276832,-0.23853885,-0.13384669,-0.089277886,-0.10609286,-0.58307296,-0.30630055,-0.70745766,-0.41171455,0.004326471,0.7480218,-0.11121053,-0.027715072,0.12864996,-0.1845105,-0.07956008,0.041007586,0.07617341,0.0507359,0.403765,0.018040424,-0.8339385,0.60174185,-0.02750416,-0.14240015,-0.39867765,0.23723176,0.5359272,-0.7377078,0.31670547,0.5691313,0.117694,0.06542619,-0.34230354,-0.2155324,-0.13194442,-0.13957441,0.36795434,0.14987996,-0.5395425,0.48262814,0.3363521,-0.17732294,-0.7225872,0.39455935,0.023065014,-0.29998326,-0.020497799,0.34806442,0.14329095,0.12159048,-0.23598132,0.006841949,-0.55812114,0.34973192,0.21048912,0.024477025,0.5358507,-0.24611057,-0.24960367,-0.7194459,0.078753665,-0.5620007,-0.30186465,0.1667614,0.18224338,0.031208206,0.28462452,-0.011563046,0.4165442,-0.34417912,0.06256272,-0.03046048,-0.06323458,0.16445932,0.40199164,0.48228803,-0.47184324,0.6105046,0.038341917,-0.05123357,-0.10137047,-0.080731936,0.47339037,0.10900394,0.2762616,0.08257325,-0.26065943,0.33520907,0.5585338,0.3090765,0.5159389,0.071949355,-0.17561163,0.25345707,0.090983994,0.23317711,0.021867799,-0.5446184,-0.07597648,-0.2701026,0.037664212,0.41876116,0.13599828,0.3852521,-0.2319968,-0.20101412,0.15903974,0.118313245,-0.112893775,-0.8716914,0.30408925,0.17415714,0.70912826,0.5131167,-0.17659497,0.19550355,0.71825033,-0.41525242,0.14387551,0.28071523,0.087724485,-0.60468096,0.56006646,-0.6320154,0.37976217,-0.13706997,-0.041266866,-0.024611253,-0.14765191,0.2595878,0.7448616,-0.12951444,0.103886805,-0.09278076,-0.26267895,0.14608097,-0.46025127,0.23598811,-0.6618681,-0.062461384,0.7686892,0.28381088,0.27799687,-0.040711105,-0.0784321,0.08320427,-0.111297354,0.13647392,0.1678853,0.1532984,0.032804172,-0.59472454,-0.28070706,0.6088398,0.12213447,0.19129659,0.09366029,-0.30020759,0.21381816,-0.2992139,-0.11632972,-0.108323626,-0.59898597,-0.051988143,-0.34381977,-0.4909316,0.4499664,-0.09810189,0.2344397,0.17039743,0.07745866,-0.38498583,0.09540395,0.30170658,0.711991,0.16729693,-0.20579302,-0.35783157,0.21320668,0.34380072,-0.24461316,-0.2053521,-0.1531268,0.08583229,-0.6395771,0.50514233,-0.17792462,-0.23486833,-0.050843988,-0.1684056,-0.0373016,0.56537914,-0.12114572,-0.013596735,0.19174089,-0.09642895,-0.24094085,0.008061192,-0.26481357,0.2211236,0.3564153,-0.14149372,-0.12889113,-0.115619384,-0.25841242,0.42161343,0.00073150866,0.25997907,0.3234501,-0.05489647,-0.39262143,-0.14971839,0.098041914,0.49803233,0.011333619,-0.09439596,-0.28882432,-0.46839955,-0.35173002,0.19195381,-0.12861116,0.10824144,0.17499205,-0.27419502,0.82581675,0.076291844,1.0173525,0.05273598,-0.40852362,0.018266609,0.57618797,0.0062448094,0.01507522,-0.46546954,1.1882131,0.49010712,-0.14823115,-0.13295095,-0.41186148,0.031236961,0.24047025,-0.20370445,-0.20741437,-0.13229953,-0.70105827,-0.4268525,0.25295392,0.41972753,0.12680651,0.012571649,0.14520216,0.17608872,0.029684484,0.5105627,-0.4971525,-0.3395217,0.3974443,0.19660068,-0.03750858,0.16654894,-0.40732625,0.48599434,-0.57520264,0.010806552,-0.2559836,0.11518476,-0.2131282,-0.3659223,0.27648923,0.19498166,0.37301296,-0.39158177,-0.5647087,-0.31126902,0.5127131,-0.009354413,0.18427125,0.51452553,-0.29419675,-0.07448358,0.008407449,0.44809827,1.2273704,-0.17500615,0.182286,0.39361694,-0.1771497,-0.58504105,0.39358807,-0.30401167,0.15616526,-0.02145212,-0.24331443,-0.5335873,0.27114144,0.23722686,-0.051294863,0.14357135,-0.58211166,-0.18663232,0.29245797,-0.32292014,-0.15953408,-0.18760225,0.17055367,0.47737616,-0.36391163,-0.2199604,0.09326797,0.3665192,-0.2737425,-0.52071583,-0.1715989,-0.38578436,0.3115855,0.20267394,-0.27269053,-0.19222876,0.16795646,-0.3925005,0.13603535,0.24143039,-0.4357883,-0.009750153,-0.38888735,0.18481538,0.84388953,-0.052360766,0.20082834,-0.5767425,-0.33736476,-1.0888405,-0.316205,0.50517404,-0.04345619,0.043374192,-0.6352596,0.024537696,-0.19477741,-0.14159267,-0.0052439948,-0.59244937,0.48096782,0.17431612,0.37915948,0.04275645,-0.6650351,0.04448546,0.109432,-0.24115281,-0.60683316,0.49104425,0.027474489,0.80769587,0.13358144,0.08541971,0.45547774,-0.67976385,0.011475989,-0.26062748,-0.1542573,-0.8181335,0.089647196,472 +451,0.5396634,-0.31399593,-0.46249247,0.017070945,-0.19791177,0.105316825,-0.2538402,0.20443419,0.28465316,-0.33042827,-0.05719804,-0.25166887,-0.05434982,0.389205,-0.22078513,-0.70166796,0.007332983,0.036397014,-0.5424922,0.6244523,-0.35287935,0.37023988,0.2085559,0.19063865,0.14944077,0.17963667,0.43677917,-0.09815756,-0.022476068,0.0032896486,-0.07767612,-0.060404222,-0.53130955,0.1535478,-0.10406256,-0.24079047,0.07366645,-0.3422571,-0.5243782,-0.79908645,0.37095356,-0.7108527,0.4745392,0.19174434,-0.2890828,0.2512397,0.114043154,0.15256259,-0.4302616,0.16920964,0.10528301,-0.004400089,-0.14095697,-0.15823261,-0.18908131,-0.5340425,-0.50335485,0.08588594,-0.4703806,-0.14678124,-0.11961746,0.16248877,-0.30847546,0.033740293,-0.07912927,0.3932779,-0.40653077,-0.141048,0.31509352,-0.19697224,0.12328304,-0.6109017,-0.11119946,-0.06618659,0.10057939,-0.0011894575,-0.09716238,0.16659045,0.21171466,0.5859098,0.089831874,-0.27781954,-0.09281441,-0.13636151,0.10244235,0.5800997,-0.11993706,-0.6720788,-0.22950518,0.019701406,0.17252302,-4.432031e-06,0.26347765,-0.6123265,-0.11746968,-0.13726644,-0.25076324,0.41406587,0.6168162,-0.43606848,-0.025104033,0.3917481,0.36574134,0.14300115,-0.03646185,0.11436505,0.009817166,-0.53549886,-0.12648684,0.09790119,-0.1957127,0.47163978,-0.21403232,0.35185447,0.5147995,-0.1252698,0.1477188,0.1484594,-0.011762423,-0.2500074,-0.10294869,-0.13220783,0.02126419,-0.53163874,-0.011202357,-0.20956881,0.9536065,0.18163922,-0.7216956,0.46352914,-0.47163367,0.3391408,-0.12370978,0.5606577,0.6692509,0.210457,0.13911566,0.8670963,-0.54362446,0.0010549149,-0.035569303,-0.33097023,0.017286122,-0.11986494,-0.14791308,-0.42557862,0.14479855,-0.14052199,0.0041251546,-0.11431401,0.38257876,-0.43131533,-0.12038821,0.10964436,0.8825551,-0.30769068,0.08107583,0.51259965,0.9565508,0.97412163,0.036836714,1.3956966,0.4196043,-0.14033784,0.020380428,-0.1665772,-0.8407025,0.25391957,0.5453308,0.39816317,0.34528804,0.057986103,-0.057529602,0.3608689,-0.31974903,0.037663747,-0.29295477,0.2498269,0.0841655,-0.03806903,-0.23557864,-0.18637326,-0.035262477,0.14488284,0.04556193,0.23025343,-0.2079498,0.04065162,0.10300023,1.4017977,-0.23275454,0.031073261,0.053511087,0.44391727,0.37666702,-0.06502775,-0.009980313,0.14086536,0.4203585,-0.11370055,-0.7110864,-0.049711432,-0.21110871,-0.6013214,-0.23244362,-0.15665743,-0.10002206,0.010764049,-0.47786847,-0.190991,0.02933796,-0.2112254,0.5109759,-2.5846746,-0.30690187,-0.19825625,0.18236789,-0.31323975,-0.22382474,-0.1437616,-0.3440431,0.330211,0.41936332,0.4073541,-0.80397975,0.23697077,0.45044497,-0.42487118,-0.047191612,-0.5844585,-0.112229824,-0.1649724,0.51929945,0.16582943,-0.24811503,-0.023863282,0.18588623,0.4047074,0.02230628,-0.000532989,0.23021759,0.4215024,-0.058846373,0.29838997,0.09402964,0.4531223,-0.30668506,-0.004896631,0.42742702,-0.2586678,0.34690756,-0.11117823,0.1300173,0.34452638,-0.5712518,-0.68109274,-0.6237173,-0.1760359,1.2190361,-0.16175653,-0.49210072,0.3604048,-0.06968348,-0.010855677,0.029872417,0.32889464,-0.15880361,-0.012419377,-0.8040394,0.15822251,0.028884713,0.14461875,-0.0067041037,-0.13505162,-0.24065053,0.9396798,-0.036284667,0.43200812,0.33258668,0.21866168,-0.05917201,-0.5202837,0.12625541,0.9282964,0.5705313,0.059839573,-0.16580391,-0.22412835,-0.29018325,-0.29543957,0.051501483,0.45894644,0.8516312,-0.05186992,0.012892683,0.17697403,0.057865627,0.07908558,-0.10129563,-0.41051707,-0.12665638,0.043896075,0.50790125,0.5624905,-0.25843897,0.3148912,-0.18292375,0.2235812,-0.031346034,-0.42630607,0.6183612,1.0759866,-0.17713983,-0.31028983,0.47759873,0.4625885,-0.33527872,0.3480081,-0.7306885,-0.3828071,0.5167595,-0.05958146,-0.30984232,0.3222427,-0.35679564,0.14743233,-0.9904518,0.5156226,-0.21384767,-0.13500263,-0.45789504,-0.28958482,-3.3545833,0.30969673,-0.38983074,0.070639476,-0.19812475,-0.05521032,0.2441157,-0.45840052,-0.5714348,0.13843335,-0.039263852,0.4466169,0.053041387,0.40953085,-0.137292,-0.06487385,-0.3255253,0.099454924,-0.17420135,0.2998615,0.033919718,-0.3352706,-0.099762745,-0.22572753,-0.13753308,0.18936238,-0.6269825,-0.50104934,-0.17473376,-0.36400706,-0.23063429,0.57079375,-0.11962557,-0.043651104,-0.28235072,-0.064779945,-0.2992802,0.3076864,0.14869222,0.048317883,-0.09579594,-0.054875273,-0.17657158,-0.34135813,0.10190426,0.059578955,0.17324932,0.37860364,-0.17071964,0.09825848,0.32776,0.5737329,-0.16081929,0.70804864,0.37271643,-0.25963226,0.369175,-0.07224507,-0.22561835,-0.6031323,-0.44826132,-0.0038019929,-0.29107842,-0.39169475,0.013881372,-0.21568203,-0.54010147,0.3547976,0.030172566,0.24091335,0.114920124,0.038597416,0.50223035,-0.026370207,-0.00931456,0.052065305,-0.22610529,-0.5509344,-0.30892515,-0.6628942,-0.43234894,0.2442443,0.9077875,-0.23172572,-0.19069226,0.086179,-0.3025653,0.018142525,-0.090542,0.07923741,0.19940348,0.27601722,-0.018142594,-0.81432545,0.54748785,-0.08803046,-0.07544417,-0.33675125,0.06567091,0.5253135,-0.63127095,0.37548873,0.32461435,0.26749977,0.1560094,-0.42495432,-0.25045958,0.17099588,-0.19057767,0.35596874,0.08627951,-0.63705444,0.50592357,0.41239813,-0.3868323,-0.7002622,0.36620805,0.14194393,-0.24162416,0.022719,0.4323153,0.024625616,0.0229372,-0.09275227,0.3213787,-0.46611744,0.36709884,0.20889838,0.0075213155,0.32102713,-0.03597302,-0.3960773,-0.47165608,-0.04957358,-0.563424,-0.29183146,0.112123795,0.069540545,-0.05077925,-0.06744247,0.03339174,0.48383072,-0.40836763,0.23992789,-0.012883748,-0.16752163,0.49886027,0.50299925,0.44810933,-0.3294458,0.7309986,0.038595412,0.004849415,-0.08493485,0.04078693,0.33221224,0.33809948,0.20370004,0.10670073,0.1696758,0.30818313,0.7677041,0.15130493,0.32658103,0.15874591,-0.2323231,0.3474114,0.19438942,0.11460585,-0.17716815,-0.38027757,-0.17675686,-0.0088421535,0.14713049,0.47863135,0.16057943,0.33183807,-0.053956065,-0.37906316,-0.0024701399,0.14913477,0.06047334,-0.9533178,0.19734374,0.09885175,0.65934974,0.5261752,-0.29872292,0.18021987,0.5742325,-0.023599382,0.03815196,0.3706564,-0.01683159,-0.6296508,0.56189364,-0.41843694,0.2555106,-0.23573725,0.06811024,0.036277413,0.25855896,0.14799416,0.6515004,-0.053424794,-0.025484834,-0.12271087,-0.34269962,-0.09739251,-0.38306412,0.08835875,-0.3120377,-0.4679342,0.53197205,0.4266057,0.111723125,-0.10483612,-0.0056715873,0.008121592,-0.091951184,0.3536419,-0.11067919,-0.021201747,-0.17274778,-0.76559454,-0.28464925,0.6411811,0.22657318,0.12548025,-0.09896823,-0.1807398,0.23720251,-0.35692835,-0.026581135,-0.05502247,-0.67987645,0.058886033,-0.25941572,-0.4561494,0.27192697,-0.18623354,0.21277867,0.34865,-0.056536905,-0.38124654,0.019052532,0.042151254,0.70740986,-0.224514,-0.12212366,-0.39280048,0.076823615,0.15164945,-0.29673108,-0.032652743,-0.18878242,0.0014119148,-0.6645383,0.61221164,-0.09330249,-0.18761043,0.23464558,-0.3249393,0.0008337008,0.5519726,-0.31274647,-0.20948176,0.06595833,-0.1145877,-0.13820745,-0.24850729,-0.20429376,0.2855385,0.29718897,-0.12836742,-0.05496319,-0.29147986,-0.023166602,0.36047015,-0.069302075,0.26827312,0.34558472,0.2125162,-0.47680405,0.011486175,0.3677664,0.48176688,0.123642504,-0.01915833,-0.21683457,-0.44149342,-0.35536623,-0.032935046,-0.2358344,0.114039205,0.19078901,-0.52655447,0.7673176,0.37195262,1.2136955,0.06627154,-0.21799581,0.042425327,0.5874902,-0.031909276,-0.084510185,-0.26157,0.8135508,0.61048955,-0.0323906,-0.14860474,-0.45423833,-0.11491657,0.22481349,-0.22713542,0.11009042,0.03620639,-0.55129784,-0.45078692,0.2593903,0.25742856,-0.06602163,-0.05318639,-0.066994414,-0.015432426,-0.044997673,0.4201041,-0.59236187,-0.19972368,0.15518394,0.15398335,0.09890117,0.019382102,-0.5341007,0.41506624,-0.78670347,0.08212757,-0.30380705,0.090330146,-0.14504926,-0.18568611,0.13146362,0.02283293,0.4871359,-0.4285205,-0.44198123,-0.21600161,0.56132567,0.08725827,0.22798422,0.7061295,-0.30609962,0.07547762,0.18325637,0.57264787,1.1108373,-0.22160976,0.1292739,0.30404565,-0.34591633,-0.68735105,0.34990257,-0.30252153,0.1984609,-0.038416263,-0.3067247,-0.73162156,0.18390162,0.3056238,0.10701859,-0.050892152,-0.6729762,-0.35505182,0.42548415,-0.21661088,-0.27866918,-0.3856236,0.04312053,0.67150074,-0.3424744,-0.2228164,0.14345683,0.115917526,-0.32763818,-0.71558446,0.01915629,-0.38215336,0.40484047,0.36256027,-0.052240193,-0.15539919,0.1215161,-0.5163617,0.13737942,0.0628377,-0.42103437,-0.004834805,-0.1952214,-0.016864385,0.9679488,-0.20935598,0.057781164,-0.7774364,-0.54415697,-0.8467488,-0.42672208,0.64609474,0.19535731,0.23362707,-0.57989675,-0.08090522,-0.008021106,0.09898678,0.03508275,-0.4944648,0.43569687,0.04964013,0.47773814,-0.13075402,-0.70338064,-0.027370343,0.027970959,-0.15720975,-0.42635137,0.46157768,0.07230195,0.9080463,0.04677427,-0.099040456,0.27510354,-0.55190897,0.15868902,-0.25764412,-0.27573997,-0.5866504,0.23185599,473 +452,0.37181288,-0.21333095,-0.33367524,-0.22168739,-0.2510693,-0.016126756,-0.08960874,0.22437029,0.33605364,0.044008248,-0.075987436,-0.2675028,0.20073251,0.3383484,-0.06907474,-0.921218,-0.07142811,0.1955915,-0.6991018,0.3769854,-0.5969512,0.21821916,0.05055613,0.40002674,-0.0044082874,0.3646048,0.30506405,-0.17169435,-0.017808642,-0.21406238,-0.13883771,0.16590516,-0.54584754,0.09907503,-0.12294708,-0.17309128,0.23174052,-0.50262725,-0.21491814,-0.72339123,0.2154148,-0.8140504,0.348763,-0.021201735,-0.035069037,0.16071594,0.14768001,0.26064986,-0.46844453,-0.066571645,0.20785879,-0.15512776,-0.08714954,-0.21862705,0.0039825267,-0.22588398,-0.47146273,0.002696205,-0.33978036,-0.3810349,-0.26589122,0.06852253,-0.36994085,-0.08555342,-0.068146765,0.4875162,-0.34070444,-0.04673856,0.44598657,-0.3048244,0.2334603,-0.42147604,0.09436655,-0.0054620174,0.38013533,-0.012185301,-0.07033981,0.36732435,0.30810374,0.3566374,0.19497588,-0.32863528,-0.19523928,-0.16994987,0.0988304,0.48461744,-0.1272511,-0.5441102,-0.16876017,-0.05224622,-0.04451099,0.322295,0.018044634,-0.20233293,-0.014828918,-0.07536846,-0.25772604,0.5155071,0.5102716,-0.30738372,-0.37843132,0.14375623,0.42264417,0.2183548,-0.066641614,-0.1531529,0.1334788,-0.5872269,-0.2553528,0.103061385,-0.117725134,0.5031179,-0.15286693,0.1092127,0.8323057,-0.21366824,0.13951205,-0.04756003,-0.040115397,-0.031940784,-0.43344888,-0.22378264,0.18003912,-0.5446847,-0.026739206,-0.2945425,0.96203625,0.22818467,-0.74764144,0.4825504,-0.5714355,0.221261,-0.21471913,0.59494126,0.5912038,0.1544199,0.41967997,0.69490254,-0.28299505,0.2205206,-0.018805798,-0.56916684,0.098794945,-0.1659645,0.25299266,-0.358926,0.10167586,-0.2049947,0.18057005,0.15246332,0.048901957,-0.5688508,-0.12642224,0.17486344,0.77505726,-0.3044211,-0.024260942,0.49803782,1.0760187,0.9109182,0.04367476,1.2829998,0.42828718,-0.3317061,0.25414363,-0.31893826,-0.6736904,0.18531029,0.2903122,0.058366843,0.04788989,-0.18170512,-0.11757953,0.3110489,-0.2782823,-0.020943651,-0.040128417,0.43259814,0.104442425,-0.025626838,-0.46906194,-0.37164015,-0.013902971,-0.18995054,0.21661799,0.21364617,-0.13643835,0.22130395,-0.03343285,1.3085943,0.10248013,0.044309024,0.015488273,0.53369516,0.3799371,-0.14857301,-0.1783062,0.45454052,0.33972308,-0.20560725,-0.6494093,0.3453868,-0.2867485,-0.23947088,-0.10996973,-0.35754362,0.016690228,0.18062197,-0.33412513,-0.15133122,-0.065621786,-0.14074989,0.5499321,-2.909515,-0.20690699,-0.035257123,0.3034969,-0.3386434,-0.13329677,-0.0686354,-0.5601739,0.17534228,0.19766672,0.47350317,-0.5988861,0.45719978,0.49662122,-0.49610543,-0.26139474,-0.7098216,-0.1577611,-0.08348004,0.3458519,0.111871995,-0.12081417,-0.26749307,0.19391418,0.682865,0.21269287,0.1435493,0.3719949,0.3855853,0.15098238,0.5857361,-0.007308564,0.5566106,-0.19567406,-0.12781146,0.25524992,-0.2717668,0.26819652,-0.16322947,0.10496514,0.55680764,-0.31246203,-0.91540325,-0.5839227,-0.30909082,1.0163525,-0.29883915,-0.41883412,0.27426204,0.04015961,0.082806654,0.18342574,0.5035051,-0.07765211,-0.09110948,-0.58370787,0.23234256,-0.004429005,0.16081978,0.11935247,-0.118972756,-0.28170744,0.6871428,-0.10647978,0.44573084,0.18681507,0.31004506,-0.20960252,-0.35976237,0.03518817,0.7042465,0.11631697,-0.04723447,-0.054056812,-0.32615286,-0.14837871,-0.2366996,-0.103491135,0.5469021,0.8960725,-0.026508909,0.09486049,0.3473723,-0.15537049,0.070746526,-0.04977266,-0.3415611,0.03766782,-0.13014777,0.49327877,0.60561603,-0.1361306,0.45106453,-0.083858505,0.32312408,-0.08997051,-0.47739628,0.6412754,0.4045372,-0.14412144,0.05491974,0.41590056,0.40299892,-0.5243655,0.4385964,-0.5668972,-0.13324332,0.69117004,-0.18965642,-0.40824476,0.12897018,-0.18793483,-0.054578934,-0.84266204,0.39114454,-0.32616186,-0.3157701,-0.29701257,-0.18596826,-3.8472435,0.20449676,-0.17399761,0.047981262,-0.3152202,0.07975662,0.24652901,-0.511547,-0.47450134,0.19445927,0.23560679,0.5707169,-0.031051407,0.20862484,-0.32820204,-0.04940578,-0.18080328,0.17900898,0.066496804,0.3112774,-0.090745464,-0.30086476,0.10482552,-0.08086186,-0.5458969,0.29764956,-0.6247057,-0.4574538,-0.0812021,-0.62691915,-0.37989402,0.67355996,-0.3337067,0.038957503,-0.24606164,0.16659227,-0.37625107,0.24519132,0.056739993,0.1482025,0.00617608,-0.0081811035,-0.0044546383,-0.32634577,0.4538321,-0.06594364,0.41694552,-0.03088059,0.16548088,-0.0053590154,0.45242682,0.52393717,-0.018375358,0.8177867,0.30092523,-0.02728512,0.22997113,-0.33146933,-0.16971993,-0.44337362,-0.3900886,-0.11160367,-0.3802635,-0.4895012,-0.13047187,-0.26264217,-0.5969754,0.42763737,0.06911225,0.2261057,-0.045491397,0.14994693,0.4524432,-0.055189546,0.11664729,0.008225098,-0.07770084,-0.5593487,-0.063835606,-0.7130119,-0.33013153,0.28150135,0.59675354,-0.3037875,-0.028691968,-0.18776624,-0.27889398,-0.0032274222,-0.009477409,0.0722316,0.43921456,0.39362517,-0.03567613,-0.4765405,0.4264233,-0.14228553,-0.18546431,-0.5378469,0.10475601,0.6989427,-0.72620547,0.79617023,0.3795672,0.068952605,0.01398095,-0.40878645,-0.3247764,0.13599786,-0.05585063,0.44017062,-0.012434147,-0.7930266,0.5314025,0.32850048,-0.34725672,-0.7135796,0.28552952,-0.0038423985,-0.33007273,-0.12380376,0.21601944,0.21348803,-0.10422294,-0.26010108,0.21022895,-0.5666493,0.253984,0.069510184,-0.005698749,0.364537,-0.03499111,-0.22044523,-0.66094935,-0.15774715,-0.54960436,-0.26947877,0.28430563,0.009043434,-0.00041836075,0.2157185,0.12074758,0.39719057,-0.21552147,0.08722095,0.1077522,-0.2885428,0.25948706,0.39221743,0.24400434,-0.37024778,0.45222765,0.08297696,-0.101191156,0.16980512,0.041477036,0.40542752,0.107189775,0.31205288,-0.2670146,-0.13655406,0.36794338,0.73897886,-0.06759857,0.43923476,0.022044985,0.0049577695,0.5044541,-0.090241514,0.056561984,0.18831436,-0.38634083,-0.0005192182,0.028174324,0.19237329,0.5711821,0.31353584,0.19015037,0.22783132,-0.36805153,-0.036004033,0.26657632,-0.22418642,-0.8112668,0.48410895,0.20676576,0.81375027,0.54709584,0.026563047,-0.19671461,0.6681601,-0.13549589,0.26122352,0.35790467,0.028426642,-0.5502654,0.8240779,-0.4810517,0.32349315,-0.24159832,-0.10949765,0.08827436,0.16745016,0.3250433,0.6510564,-0.24263729,0.049244545,-0.047229312,-0.09668206,0.12027625,-0.38949013,0.13736463,-0.37922344,-0.33609533,0.5488861,0.41322502,0.22299597,-0.17180155,-0.033840474,0.09710874,-0.08076988,0.11357926,-0.043787006,-0.14773412,0.40486977,-0.64422745,-0.21231304,0.652876,-0.09009192,0.14349365,-0.3164621,-0.22470354,0.06652896,-0.246953,-0.060103416,-0.109198175,-0.5923504,0.1025927,-0.15468302,-0.48397443,0.53263867,-0.29996392,0.047069542,0.121449426,0.06010032,-0.14645858,0.20329727,0.2351556,0.78035724,-0.09985415,-0.15396737,-0.49132323,0.030259123,0.17171183,-0.13824931,0.0013319403,-0.50621945,-0.09017162,-0.4028133,0.54887533,-0.16937026,-0.39911842,0.1133761,-0.20487438,-0.04808449,0.5677315,-0.210615,-0.002399996,-0.13560236,-0.23144628,-0.29781055,0.056233916,-0.21104158,0.24769463,0.30026746,-0.035536345,-0.12439958,-0.3181491,-0.19637172,0.43698445,0.04124838,0.40455136,0.17299776,0.13694717,-0.10764237,-0.01831449,0.11495984,0.39992833,0.09191256,-0.02667124,-0.40375134,-0.18043308,-0.19676106,0.11346163,-0.09705693,0.18106723,-0.0438464,-0.37814385,0.8318089,-0.022097,1.170502,0.06313501,-0.29340583,0.11432878,0.52851665,0.026577126,0.100743994,-0.4497142,0.86940545,0.44375062,-0.086464815,-0.13955274,-0.39991635,-0.16165264,0.39509693,-0.2408478,-0.064168625,-0.033428144,-0.52392757,-0.45043325,0.2612609,0.18229087,0.097766705,-0.010995223,-0.038235676,0.04279237,0.11198696,0.48127678,-0.6320924,-0.1422611,0.08956231,0.34462452,0.024340803,0.342292,-0.35033903,0.4357861,-0.6479,0.26061246,-0.47236896,0.057489764,-0.22762366,-0.23849452,0.056969117,-0.024064763,0.30138633,-0.23852055,-0.48351583,-0.044497646,0.414008,0.24255247,0.20416965,0.70736355,-0.21331096,-0.048304122,0.23507215,0.7654069,1.1706308,-0.40117723,-0.03217777,0.29430452,-0.2644277,-0.67222995,0.3343213,-0.14583673,-0.21841058,-0.16686454,-0.29749563,-0.49456885,0.23001745,0.20352319,-0.07994496,0.07710729,-0.4910482,-0.19007213,0.38770416,-0.29840502,-0.2962708,-0.31135818,0.39790183,0.76814777,-0.30140513,-0.25770932,0.076758325,0.20306407,-0.28162345,-0.55544937,-0.05332733,-0.36099738,0.38196787,-0.009613902,-0.21402155,-0.09176389,0.1088391,-0.38282797,0.1177938,0.030831883,-0.3380069,0.167553,0.010593504,0.05783658,0.8582414,-0.16357324,-0.11427291,-0.73542815,-0.52096474,-0.80841285,-0.4462777,0.44347164,0.09771502,-0.05415795,-0.3237231,0.07309692,0.039836876,-0.12929228,0.0037521315,-0.5130424,0.22753723,0.01699404,0.48139605,-0.29904944,-0.94878143,0.015812175,0.18241088,-0.2718944,-0.6463084,0.6186535,-0.09410877,0.8098346,-0.03465987,-0.08353015,0.02989566,-0.21201102,0.10237908,-0.512924,-0.23333962,-0.6689312,0.16095778,475 +453,0.466701,0.063577764,-0.52145016,-0.14826263,-0.2577547,0.26817626,-0.18518524,0.43287912,0.1445649,-0.46556458,-0.06212636,-0.15743457,0.03898955,0.229805,-0.23335226,-0.68718714,0.15536563,0.061059084,-0.56738967,0.28567863,-0.5096383,0.30882448,-0.18711063,0.38318136,-0.084978685,0.25591713,0.02826688,-0.23734137,-0.014263784,-0.19482274,-0.06825484,0.24440213,-0.68683994,0.13027741,-0.12650353,-0.13150716,0.20697178,-0.5688533,-0.44909462,-0.58406013,0.265348,-0.80525094,0.59916407,0.10507011,-0.22074953,0.25599298,0.015047384,0.05923329,-0.15264562,0.19099961,0.05340105,-0.18608366,-0.104828335,-0.16370165,-0.3831797,-0.36594534,-0.5981981,0.04360998,-0.40987426,-0.08350413,-0.2848942,0.058261693,-0.27509645,-0.1106183,0.039622836,0.26469928,-0.36562496,0.18834427,0.17109069,-0.13359466,0.13267621,-0.5169949,-0.13457182,0.08303816,0.42971912,-0.38434657,-0.19026197,0.22647998,0.33575106,0.46212795,-0.09267305,-0.14095727,-0.22419763,-0.10060125,0.07931619,0.7073311,-0.10745708,-0.361981,-0.14029162,-0.10727135,0.07890655,0.4065526,0.13431966,-0.3610303,-0.2783043,-0.13437936,-0.24785657,0.3604262,0.54593176,-0.32636458,-0.24663024,0.48540375,0.42854384,0.29203245,0.01319004,0.18064448,0.048891734,-0.63609296,-0.2791104,0.07099193,-0.0989484,0.4595025,-0.2386484,0.29555783,0.68325347,-0.22092569,0.015606582,0.020052237,-0.013544382,0.005496583,-0.26005882,-0.20651332,0.18576072,-0.46002728,0.13227174,-0.17434047,0.88485724,0.26405635,-0.8576475,0.34129667,-0.6493049,-0.05406143,-0.027811876,0.52268034,0.46288612,0.41797924,0.16006182,0.49804425,-0.5724631,0.100990705,0.031340033,-0.4557808,0.08402158,0.0024786505,-0.1021976,-0.4092029,-0.02573881,0.070117824,0.08555799,0.06636701,0.26333833,-0.3441141,0.044242553,0.13370526,0.76402515,-0.39015582,-0.124970295,0.6539456,0.97887594,0.82303935,0.1948833,1.4172984,0.2606225,-0.07145027,0.07608058,-0.11536717,-1.012989,0.32416603,0.33226332,-0.31605586,0.3459641,0.16814877,0.052033428,0.19744995,-0.25267163,-0.11856433,-0.15877317,0.3950841,0.065638825,-0.17891923,-0.36843127,-0.29035383,-0.019782593,-0.13708211,0.20786247,0.21020485,-0.074342474,0.31883606,0.23965468,1.4327984,0.012923769,0.22452058,0.09119288,0.3495135,0.2813955,-0.040317304,-0.22542624,0.4330275,0.35066327,0.03454111,-0.5460412,0.07366222,-0.07732902,-0.48214558,-0.25465286,-0.3204674,-0.1427235,-0.09176403,-0.38815784,-0.1680506,-0.15330113,-0.14230178,0.68950814,-2.7654834,-0.07417271,-0.101534076,0.5027987,-0.23799336,-0.42287308,-0.12167722,-0.39981732,0.5642904,0.2966173,0.31891236,-0.5654944,0.308827,0.55808014,-0.21474981,-0.2236878,-0.6197206,-0.01021914,-0.012696047,0.09543346,-0.103479646,-0.088614896,-0.07199762,0.06128071,0.37231496,-0.08579273,0.13579506,0.1968659,0.3771946,0.25393826,0.33303016,-0.04309424,0.56460553,-0.21006986,-0.1443658,0.20033444,-0.3526471,0.36660698,-0.14626494,0.15924396,0.42807823,-0.3901406,-0.57143444,-0.6142302,-0.4417243,1.0732244,-0.1875648,-0.36294073,0.25631064,-0.20259003,-0.41482827,-0.07647681,0.27335164,-0.30726424,-0.13861367,-0.7032798,-0.05936247,-0.06129327,0.29876164,-0.06746237,0.009496548,-0.40933576,0.6299427,-0.10351247,0.47435635,0.29428616,0.1631227,-0.19942223,-0.58136255,-0.043884106,0.80263007,0.35884684,0.24384281,-0.29813936,-0.27553174,-0.15268819,-0.16354541,0.08856231,0.46063063,0.7439887,-0.010649144,-0.02778734,0.28526792,0.060695767,0.13954891,-0.043958418,-0.20368035,-0.16079943,-0.11505138,0.6029722,0.44198585,-0.2690676,0.31885046,-0.1717762,0.28406817,-0.25227532,-0.31843826,0.51329726,0.8322664,-0.1668222,-0.31577566,0.6282014,0.31961676,-0.35492092,0.3460873,-0.55276126,-0.20127296,0.46547285,-0.18036537,-0.48488447,0.19507074,-0.19722925,0.09139245,-0.960195,0.36185002,-0.23786506,-0.3935419,-0.3553404,-0.12914434,-3.3018222,0.114918195,-0.30458382,-0.10910446,-0.27325764,-0.14612804,0.2996516,-0.5265701,-0.63881445,0.22480758,-0.033199422,0.57531327,-0.040874295,0.18416773,-0.17599164,-0.14017951,-0.42697647,0.109589815,0.16000092,0.3571732,0.04654608,-0.24200343,0.05237024,-0.1478061,-0.45077106,0.18543613,-0.57239103,-0.3532338,-0.12289314,-0.5008252,-0.32810187,0.6586403,-0.5306062,0.007364984,-0.33401746,-0.047781263,-0.29409394,0.37479088,0.1302047,0.25411308,0.037182886,-0.0044334745,-0.17522028,-0.3415944,0.36817703,-0.017873645,0.22474118,0.3767075,-0.1293454,0.017531583,0.2932416,0.61763614,-0.05962955,0.6660691,0.25980222,0.01464578,0.37121916,-0.3582801,-0.28065267,-0.45935464,-0.33594006,0.07429417,-0.4091406,-0.45779082,-0.24941407,-0.31648996,-0.66101325,0.3583632,0.060205292,-0.103007786,-0.040099956,0.17519537,0.4278913,-0.14653297,-0.08445358,0.017637078,-0.116930015,-0.42319646,-0.28774858,-0.52302396,-0.39253864,0.19852564,0.82706606,-0.1245906,0.001579059,0.10500852,-0.27154356,0.010604552,0.063272506,-0.044541974,0.18139699,0.38723627,0.058578033,-0.58070517,0.44975963,-0.07676356,-0.42187086,-0.6502544,0.043991905,0.64579976,-0.753851,0.66521156,0.39120278,0.122686945,-0.034469545,-0.6778265,-0.26029077,-0.055648427,-0.2746801,0.39233992,0.18476449,-0.8213664,0.52663475,0.3504713,-0.24137296,-0.71272224,0.56035525,0.025657784,-0.22479142,0.18913957,0.32925767,0.07128988,-0.08584551,0.022242596,0.1655751,-0.43042222,0.3102778,0.22530167,0.1205123,0.4888136,-0.16030252,-0.07625139,-0.65573466,-0.13502742,-0.4721957,-0.26960698,0.14137198,-0.019343589,0.04792469,0.06697499,0.12205422,0.41304973,-0.51238286,0.21321656,0.022145381,-0.17041706,0.10942067,0.3226781,0.47258392,-0.29968593,0.5343314,-0.076701574,0.21422677,0.10243105,0.28589854,0.5509651,0.15351157,0.2459897,0.0022564617,-0.096292995,0.083334304,0.9673395,0.11707902,0.45164284,0.18435942,-0.013835409,0.32171923,0.09422188,0.13292548,0.1269252,-0.4346871,-0.0449575,-0.110672824,0.14834835,0.43419906,0.1969773,0.31439406,-0.2010828,-0.27967682,-0.016572878,0.2884399,-0.022360427,-1.1606305,0.30799314,0.20681879,0.72290057,0.36891922,0.06697996,0.08259814,0.4561885,-0.15412776,0.18086015,0.24488685,0.12959771,-0.4827238,0.4619332,-0.5620467,0.3202219,-0.13412105,-0.11067158,0.063983396,0.06825273,0.37595245,0.7764087,-0.07783602,0.11179025,0.054722376,-0.2510215,0.17894666,-0.46507066,-0.03917528,-0.29461557,-0.09642226,0.5946774,0.48355785,0.34515166,-0.3038182,-0.058464266,0.12234696,-0.07102336,-0.053364657,0.049983066,0.009248146,-0.0009978244,-0.48715696,-0.45342168,0.57682574,0.17948072,0.09764942,0.02412199,-0.30057892,0.23260124,-0.31007403,0.04533746,-0.07090672,-0.8341857,0.07033906,-0.21287884,-0.4756792,0.20775102,-0.123131596,0.054582994,0.28812355,0.120199546,-0.2647319,0.42789063,0.12910149,0.8676943,0.03283601,-0.21044262,-0.49046573,0.039435916,0.3707025,-0.21214284,-0.05720804,-0.3683736,-0.016955333,-0.36021286,0.22416975,-0.092478454,-0.17996083,0.11721604,-0.017442951,-0.001048301,0.55420107,-0.16931598,-0.0764217,0.10887296,-0.12860681,-0.26934835,-0.11593153,-0.21432386,0.13259806,0.37029487,-0.120051794,-0.057006627,-0.11066883,-0.24689393,0.30083126,0.17620654,0.39733812,0.35400137,0.15531142,-0.31285077,-0.25136355,0.11454104,0.52448493,-0.12886985,-0.10155564,-0.24664749,-0.48731092,-0.050408714,0.38116437,-0.12492945,0.11487621,0.103442565,-0.313167,0.6639742,0.06545146,0.8610789,0.122057155,-0.2960522,0.03205396,0.3944113,0.016502466,-0.047675434,-0.42174813,0.98920244,0.47099012,-0.101998195,-0.15787123,-0.16347368,-0.020510124,0.102361046,-0.25295073,-0.10640925,-0.13025491,-0.61514145,-0.21624687,0.21445836,0.053843968,0.036255006,0.03751983,-0.04285596,0.26612148,0.13574865,0.35861796,-0.57615125,0.06106243,0.26293442,0.21978606,0.2070411,0.3541095,-0.3494627,0.3510151,-0.44677845,0.035852347,-0.35812035,0.10719202,-0.10758043,-0.193879,0.029673113,-0.07559567,0.36219662,-0.19018261,-0.34158987,-0.16404316,0.40705734,0.18360035,0.24969395,0.6382937,-0.14831273,0.13571075,0.034009855,0.53058136,0.914899,-0.1480421,0.12703311,0.42827997,-0.28752726,-0.5753279,0.20266683,-0.37865216,0.14340873,-0.17810516,-0.14227872,-0.2123266,0.18523815,0.25613222,0.15298651,0.13054866,-0.55325747,-0.1983613,0.46067205,-0.2095186,-0.29824862,-0.21367928,0.16614945,0.94582224,-0.19214654,-0.020193292,0.16298823,0.1769658,-0.2257148,-0.47859487,0.018581271,-0.25323996,0.19734953,0.063831076,-0.25800484,-0.089913525,-0.001920253,-0.28800598,0.20936258,0.26316532,-0.33398136,-0.061276946,-0.2561413,-0.010838611,0.68935204,-0.27951807,0.06464971,-0.682312,-0.5317368,-0.9671317,-0.30438456,0.36220798,0.13067476,0.051939316,-0.4922612,0.010337174,-0.025800357,-0.06123566,0.0065417713,-0.36345553,0.46601343,0.17498492,0.39786604,-0.104756035,-0.86362755,0.07654511,0.09742106,-0.38064417,-0.61981636,0.62640876,-0.16305313,0.75771505,0.048997436,0.03404967,0.05508778,-0.5393652,0.2753441,-0.3166401,-0.04940458,-0.73237187,0.22605732,476 +454,0.3446981,-0.44895157,-0.53131795,-0.28600302,-0.3401588,0.036297195,-0.30300373,0.22405945,0.160829,-0.456469,0.0036115348,-0.10315341,0.015480216,0.36093363,0.0285424,-0.7186662,0.08517812,0.23627737,-0.9391098,0.78271115,-0.36955288,0.2217963,0.034920607,0.13595484,0.058731396,0.09379522,0.17939027,-0.041408997,0.073401555,0.06199302,-0.07455923,0.13421357,-0.7445584,0.28141105,-0.20095423,-0.33517963,-0.13337891,-0.31245366,-0.5188165,-0.950206,0.24335076,-0.9110027,0.50644624,0.039341625,-0.51388675,0.049606062,0.18611836,0.2650939,-0.2717563,0.017839551,0.17463943,-0.18237665,-0.18936817,-0.25466672,-0.10277689,-0.6350408,-0.6190461,-0.039528172,-0.7300132,-0.1872833,-0.24788703,0.16080384,-0.4046075,-0.08587929,-0.3306314,0.61956173,-0.41508606,-0.008369259,0.32258892,-0.07125074,0.36944762,-0.62250036,-0.023002336,-0.1981043,0.17519979,0.12670384,-0.40943593,0.29794577,0.16331956,0.63759816,0.15036337,-0.4046936,-0.051092785,0.0109653305,0.2660345,0.31626627,-0.09123443,-0.3509334,-0.30947286,0.005896021,0.25037402,0.031069806,0.06642436,-0.5162772,0.07187538,-0.012485419,-0.22352849,0.4982935,0.5556559,-0.31020445,-0.29634953,0.28944764,0.5796889,0.16979769,-0.07966401,0.103787936,0.015965786,-0.49549118,-0.19434987,0.37545165,-0.2175075,0.45082203,-0.2678699,0.059414454,0.48658317,0.0037657928,-0.12699112,0.09333408,0.04808536,0.02224498,-0.25748068,-0.29558092,0.27003944,-0.6314634,0.18850546,-0.34594443,0.7615763,0.15848604,-0.5761566,0.3895026,-0.5593753,0.31427914,0.013534094,0.6570907,0.9746126,0.5527911,0.16617881,0.8750424,-0.25807407,0.1862736,-0.09001192,-0.21804866,0.22819516,-0.42207056,0.20527972,-0.5365431,0.032096915,-0.3545961,-0.16382241,-0.19022521,0.5040234,-0.63877237,-0.17117366,0.10111792,0.7949027,-0.29082975,0.13986737,0.8165994,0.95571774,1.1601247,0.24320388,1.2477351,0.4640977,-0.17121112,0.137036,-0.09354247,-0.8260344,0.30504563,0.30733278,0.37130037,0.34520164,0.0026144162,0.09345382,0.61273605,-0.5277161,0.09902471,-0.33532366,0.38427618,-0.07502501,-0.08004982,-0.4070718,-0.1386293,0.12426896,0.18438493,-0.040158067,0.23648202,-0.22295353,0.36663008,0.20673643,1.0580344,-0.26938254,-0.08884532,0.009385331,0.3524361,0.37831184,-0.24191894,0.023143645,0.28925195,0.35558385,-0.033783454,-0.79406154,0.14315674,-0.31712213,-0.24020742,-0.28221944,-0.32763788,0.22481622,-0.23294957,-0.431758,-0.29828763,0.054554876,-0.25025484,0.3954709,-2.3132937,-0.39016366,-0.13204758,0.2083218,-0.2779142,-0.20296358,-0.02638838,-0.48257142,0.45955205,0.35014105,0.36370888,-0.61281097,0.47405097,0.4480531,-0.5628478,0.013833689,-0.6525315,-0.114714704,-0.08018499,0.5946168,-0.0066779256,-0.23804423,-0.17822869,0.24611673,0.45881408,-0.13430789,0.118027054,0.3619514,0.23682788,-0.13338907,0.2569114,0.04901245,0.46788666,-0.4213934,-0.19691847,0.41718966,-0.20837021,0.17170055,-0.116739385,0.11898391,0.56358135,-0.63153166,-0.79474896,-0.7002859,-0.32297948,1.2073725,-0.27529714,-0.62552696,0.18794203,-0.4468477,0.034488156,-0.028994232,0.41926554,0.036781397,0.09314256,-0.8882141,0.08254867,0.0086760735,0.42214495,-0.004392994,-0.10795855,-0.37483045,0.8276431,-0.029094057,0.3684821,0.31150725,0.23249182,-0.37547573,-0.5532921,0.22170803,0.9406944,0.5557275,0.1007442,-0.3011255,-0.24136247,-0.2985219,-0.086977184,-0.049281757,0.54291683,0.8109626,-0.20000724,0.01209448,0.35702363,-0.19569634,0.16462313,-0.30073524,-0.4714241,-0.13762853,0.16948102,0.4977108,0.4520151,-0.027210103,0.35495177,-0.048761863,0.20385087,-0.010256158,-0.61549133,0.5965192,1.2913922,-0.19476148,-0.1989266,0.6071829,0.40991262,-0.42021242,0.55877227,-0.6836597,-0.42937043,0.47851223,-0.11835712,-0.41921633,0.17916194,-0.4946306,0.30473432,-0.83768827,0.4315755,-0.39990163,-0.43733335,-0.63325816,-0.11398571,-3.253381,0.3036407,-0.2803442,0.0710411,-0.33472922,-0.09997046,0.3824268,-0.24666573,-0.5949564,0.18102732,0.12530799,0.7483324,-0.114572264,0.05206603,-0.26432696,-0.25162292,-0.35198328,0.20799412,0.0584948,0.25185174,-0.13025129,-0.3728643,-0.021846652,-0.24040566,-0.45419958,0.035828386,-0.73920745,-0.4706059,-0.30657127,-0.74601406,-0.17693543,0.60772896,-0.096330605,0.030734697,-0.43310028,-0.0040172297,0.067361765,0.37035236,0.2165047,0.23860228,0.17636187,-0.027228998,-0.25064304,-0.33158416,0.024306433,0.062073197,0.10654241,0.35511035,-0.021082338,0.2199429,0.56371146,0.63575107,-0.0332176,0.827007,0.5785913,-0.20276248,0.58576244,-0.15063807,-0.3839807,-0.5564206,-0.24253988,-0.14812963,-0.44857496,-0.37659758,0.0960396,-0.33331856,-0.80137354,0.54700553,0.087239124,0.2703602,0.20868738,0.2560515,0.4594238,-0.06833914,-0.023812333,-0.16541897,-0.3005306,-0.5694122,-0.39608738,-0.6338049,-0.48586056,0.11632083,1.1495736,-0.2274802,-0.16503975,0.081672944,-0.25027758,0.03928293,0.2812274,-3.022807e-05,0.2858149,0.4215847,0.105300106,-0.59960705,0.29299498,0.0903017,-0.08451391,-0.45328754,0.40020236,0.6666755,-0.7209038,0.57542473,0.3370042,0.13611527,-0.31106117,-0.6425049,-0.05878133,0.13289821,-0.26115808,0.46443796,0.13502368,-0.80219287,0.49807438,0.34479758,-0.16899464,-0.8916413,0.4032764,-0.123030506,-0.24576625,-0.107962444,0.4579865,-0.052145384,0.16378136,-0.32477376,0.30145612,-0.4723224,0.2924786,0.29785267,-0.09744661,0.28177136,-0.16717906,-0.35961398,-0.63651377,-0.14331175,-0.7018643,-0.27880505,0.40082034,-0.017179267,-0.01816873,0.10889349,0.06382406,0.5628017,-0.01676592,0.14416294,-0.1233222,-0.41358042,0.5208892,0.63726467,0.3685739,-0.34542805,0.7672245,0.08465236,-0.13712831,-0.2728043,0.21390018,0.44746274,0.29141337,0.54758126,-0.036837477,0.093219735,0.30114624,1.004418,0.09164839,0.49753904,0.139169,-0.05807044,0.24656649,0.058347754,0.15503871,-0.18110932,-0.27774262,-0.040491965,-0.10498619,0.21551068,0.43747273,0.07029659,0.25099745,-0.025549177,-0.2761487,-0.10708822,0.16598178,-0.029048989,-1.4760295,0.4216263,0.36572525,0.71032715,0.6233597,0.060009796,-0.12306412,0.659377,-0.2300411,0.07849259,0.30409268,-0.20172314,-0.41167974,0.5335789,-0.8334393,0.29376957,-0.098123655,0.05289316,0.07460264,0.29767373,0.5026459,0.8809232,-0.27575547,0.027093444,-0.14800835,-0.22050692,0.31127867,-0.2806977,0.16225983,-0.25612456,-0.61611134,0.603638,0.3532825,0.3548103,-0.41453415,0.027744489,0.002525385,-0.2815999,0.3194154,-0.06939762,-0.1810629,-0.051865228,-0.5963478,-0.19312513,0.49020672,-0.014619546,0.12350474,0.044522427,-0.21039455,0.172246,-0.20379052,0.018166568,-0.1394292,-0.86263263,0.057494458,-0.28509843,-0.30622318,0.64622515,-0.2793717,0.027674558,0.14356425,0.0009827401,-0.4291846,0.3813491,-0.10855518,0.55784494,0.23079333,-0.125542,-0.24308501,0.16948901,0.115061365,-0.30899972,0.1318811,-0.3088037,-0.0007382887,-0.7091292,0.60305595,-0.07058236,-0.3306806,0.3538305,-0.14973833,-0.10040041,0.5855913,-0.30753675,-0.19099239,-0.039292198,-0.20103848,-0.16584696,-0.28274596,0.011865114,0.41493845,0.11940997,0.06125245,-0.2029678,-0.055056214,-0.020756837,0.62593764,0.12777461,0.26513335,0.49173784,0.113789186,-0.53538895,0.05885556,0.27131665,0.6156203,0.27704784,-0.14141823,-0.008318944,-0.30869347,-0.42671338,0.02710058,-0.18111612,0.2613876,0.0366774,-0.4045739,0.81488526,0.16179757,1.288468,-0.053524118,-0.32443067,0.16435088,0.51865035,0.04019245,-0.08727678,-0.46207744,0.7073207,0.6525154,0.0659947,-0.0013403083,-0.5149099,-0.10821118,0.24705853,-0.215009,-0.019211207,-0.05594259,-0.84382313,-0.22009227,0.22800843,0.29682872,-0.072564304,-0.14104661,0.032985296,0.1266232,0.013661628,0.20524856,-0.5879334,0.092829965,0.37852404,0.18197353,0.00014162276,0.10840397,-0.37827772,0.313699,-0.74499226,0.13234398,-0.29465818,-0.021507947,-0.091185294,-0.2815914,0.29958007,0.09873747,0.23377822,-0.4307025,-0.32582277,-0.21070337,0.7003452,0.2119062,0.041645806,0.7520593,-0.32461643,0.217276,0.27087972,0.42050728,0.9822566,-0.2887566,-0.002582005,0.084696345,-0.50304806,-0.7517198,0.3969216,-0.2326304,0.2230886,0.069109164,-0.33217782,-0.46613583,0.13542648,0.15016055,-0.04583892,0.018731007,-0.81891817,-0.1509881,0.22004938,-0.20738307,-0.06985763,-0.34514925,0.16719405,0.52554816,-0.34140936,-0.21248582,0.19371383,0.29839143,-0.3890055,-0.6722707,-0.044255793,-0.43471226,0.33229417,0.13940834,-0.3868007,0.054467957,0.14617382,-0.7322666,-0.012103117,0.23382302,-0.32873815,0.039469905,-0.19420226,-0.0025587422,0.82877046,-0.1501993,-0.036237843,-0.51485795,-0.6644575,-0.97766685,0.017928004,0.6561464,0.24747238,0.21327095,-0.8198747,-0.07563334,-0.09750442,0.17982088,0.15113533,-0.60780233,0.41690734,0.13126907,0.53133184,-0.05363765,-0.9889039,0.20856924,0.14920865,-0.056085493,-0.47483233,0.3767992,-0.16384973,0.79292476,-0.011915388,0.07458056,0.056340553,-0.68785137,0.014652938,-0.3198536,-0.22292875,-0.6256132,-0.047882777,481 +455,0.36918116,-0.12376928,-0.46930483,-0.07703581,-0.19395348,0.18459842,-0.22597407,0.55067533,0.22955169,-0.46510595,-0.14746772,-0.17466094,0.0593395,0.2769387,-0.06226444,-0.3381257,0.10825781,0.20287843,-0.37160447,0.3508251,-0.41906562,0.25641164,0.10773391,0.3919311,0.29138693,0.31472537,0.0062254667,0.12999788,-0.2097381,-0.20794842,-0.090347424,0.20006402,-0.4187228,0.09051294,-0.22893003,-0.2174584,-0.19791009,-0.6451367,-0.44812396,-0.7005209,0.23697965,-0.87545824,0.5806478,-0.001510122,-0.25940678,0.15564089,0.2980392,0.33410224,-0.054335017,-0.043057587,0.14496829,-0.08837391,0.039817356,-0.041830745,-0.28982228,-0.40191165,-0.59570324,-0.020642992,-0.43324047,-0.04087192,-0.15342604,0.13976507,-0.20234835,0.10658358,-0.09259153,0.28023556,-0.3795021,0.17024705,0.38054466,-0.18512209,0.18855783,-0.50041777,-0.16523325,-0.0714312,0.18161467,-0.1315357,-0.31198516,0.1937749,0.36607343,0.41899508,-0.16718586,-0.12461083,-0.3480157,0.054964755,0.123506345,0.6136123,-0.18062183,-0.2597765,-0.22334707,0.057005588,0.33802363,0.23244484,0.22961123,-0.11551223,-0.18917963,-0.15121873,-0.26051012,0.30449295,0.5423416,-0.3163592,-0.20206022,0.41690138,0.602485,0.29076776,-0.1738336,0.1628289,0.11964804,-0.6251605,-0.06663338,-0.0047467947,-0.22695172,0.56737953,-0.08994063,0.16568504,0.52107334,-0.1551442,0.019189147,0.23170315,0.104091965,-0.085067384,-0.26156175,-0.20383517,0.16137084,-0.5133223,0.05737659,-0.11962811,0.5638185,0.2083355,-0.6207875,0.3547449,-0.41042852,0.09347285,-0.064253196,0.3674436,0.8786945,0.3523119,0.18169917,0.76318634,-0.32991424,0.067923665,-0.21032305,-0.24317774,0.2657499,-0.19514664,0.025074553,-0.5484258,-0.05048784,0.102725066,-0.18653925,0.27828258,0.6357112,-0.51743037,-0.13167731,0.17192881,0.85309345,-0.23436524,-0.2720596,0.82924527,0.9048427,0.91327274,0.091707334,1.0412929,0.19762121,-0.10953792,0.0178441,-0.18680182,-0.72603065,0.30041662,0.27631885,-0.37465957,0.3326741,0.21521606,0.02530135,0.27170318,-0.24475773,0.002188606,-0.10551425,0.10148174,0.094567,-0.14583695,-0.22592159,-0.27291688,-0.06827385,0.073468804,0.075675465,0.18724056,-0.1882914,0.5531789,0.027893903,1.6030598,-0.058949925,0.025526192,-0.02265698,0.3297805,0.26699337,-0.48784086,-0.18649022,0.33446583,0.47559044,0.104570866,-0.43466383,-0.011343254,-0.11117266,-0.27028576,-0.17981836,-0.295943,-0.22935806,-0.10469465,-0.39255333,-0.14020036,-0.12074558,-0.30174333,0.40017393,-3.076598,-0.11670299,-0.05787915,0.2722972,-0.26140156,-0.4168689,-0.31020245,-0.5110487,0.31426218,0.29437986,0.42059755,-0.6271516,0.25745288,0.21409342,-0.5386486,-0.057297893,-0.706962,-0.04856097,-0.027128713,0.24579236,-0.0025189668,0.011451781,0.1429847,0.371368,0.50119126,0.061768018,0.16109884,0.3183496,0.4751093,0.17090607,0.35270697,-0.14613228,0.60931695,-0.13167801,-0.22038145,0.34924704,-0.4223922,0.29591402,-0.20766017,0.14905997,0.4953501,-0.3792695,-0.89261085,-0.5922273,-0.08354538,1.0527318,-0.20893583,-0.34435305,0.16243908,-0.47471032,-0.3627959,-0.038939927,0.4688109,-0.09897138,-0.15389864,-0.77764183,-0.19967021,-0.097773604,0.060167454,-0.18646394,-0.1317621,-0.3491409,0.536078,-0.098912,0.30813876,0.30585784,0.17552896,-0.24920967,-0.5095488,0.034563083,0.9966367,0.4141571,0.13623108,-0.30210486,-0.20940141,-0.5313026,0.03546454,0.16126664,0.5284532,0.6948975,-0.11651276,0.2267582,0.27018994,0.117125764,0.051958892,-0.087911926,-0.27867582,-0.115356624,0.0019841024,0.5474631,0.62499607,0.0070869857,0.6295083,-0.078117564,0.1355033,-0.23667121,-0.6685155,0.33932325,0.73261845,-0.18607321,-0.39424846,0.6102791,0.28994566,-0.07685772,0.43891138,-0.4590679,-0.33917826,0.28868523,-0.103485,-0.2529741,0.33721253,-0.33586994,0.17914906,-0.8366548,0.22720702,-0.04604578,-0.65425557,-0.49172285,-0.1268816,-3.2902963,0.2107015,-0.068809785,-0.25460002,0.03299603,-0.27502462,0.25444317,-0.46677405,-0.6264983,0.20541202,0.04287466,0.8152104,-0.12543797,0.049959812,-0.11535786,-0.35010242,-0.4341028,0.105487876,0.17370787,0.36181825,-0.001777734,-0.4196965,-0.08191117,-0.2981759,-0.45090294,-0.018914979,-0.57116014,-0.4958814,-0.21769752,-0.37538925,-0.12070187,0.6154044,-0.41157827,-0.0031959626,-0.20295747,0.081853725,0.01780599,0.30315706,0.15487167,0.026861522,0.015459577,-0.023703447,0.095806904,-0.22527803,0.3262665,0.2382283,0.24732235,0.5349394,0.052126233,0.23738249,0.4628634,0.62522143,-0.21098234,0.9241265,0.4302945,-0.13703261,0.1976928,-0.15889283,-0.15886736,-0.34998116,-0.15500543,0.020929093,-0.5925647,-0.44924274,-0.13966413,-0.33692354,-0.81862366,0.38425532,0.075024344,0.24396369,-0.03361254,0.28145412,0.4992699,-0.2283829,0.015827557,-0.16231051,-0.19008,-0.5511165,-0.39206886,-0.5800877,-0.45433268,0.32418796,1.1466277,-0.26380777,0.17459403,-0.03319757,-0.24640675,0.0021353576,0.12839553,-0.10322668,0.058229625,0.3834381,-0.14459483,-0.59560716,0.3055697,-0.20783089,-0.18192177,-0.70571136,0.12795582,0.5604935,-0.576459,0.5868598,0.32249063,0.043817084,-0.3354031,-0.52887475,-0.12981406,-0.093036704,-0.33092052,0.45796487,0.28139082,-0.7276449,0.41588134,0.2876335,-0.41669032,-0.6335104,0.56626123,-0.015450587,-0.077408634,-0.19055526,0.23172651,0.09463567,0.11134834,-0.22582507,0.12483721,-0.45629027,0.17011239,0.20665576,-0.008621393,0.21461177,-0.2929649,-0.19482647,-0.5836738,-0.06578624,-0.4058771,-0.29913813,0.19568726,-0.0140659725,0.28848934,0.18191852,0.2513081,0.36161885,-0.42309552,0.139853,-0.14337263,-0.2466688,0.3330953,0.41639462,0.6092824,-0.39586475,0.5529612,0.0359775,-0.18526353,0.15488508,0.06327586,0.46228045,0.1264709,0.24863566,0.041393936,-0.2515519,0.13941933,0.84455544,0.123740904,0.34168777,-0.060349006,-0.039870173,0.044239026,0.06418372,0.20249344,0.07639601,-0.61580247,-0.17513232,-0.46792722,0.22987683,0.44636998,0.1471231,0.3079349,-0.04560992,-0.3070846,0.0157606,0.09205581,0.1920968,-1.262082,0.3108543,0.18462732,0.8104434,0.34652933,-0.027371513,0.0467655,0.58570015,-0.19802403,0.24048771,0.3519757,-0.09877543,-0.48734468,0.39210322,-0.8414416,0.5515191,0.01194562,-0.001501905,0.063254125,-0.081174575,0.54466236,0.9720624,-0.20647527,0.093331195,0.16908382,-0.18687008,0.10062361,-0.38247898,0.024721907,-0.8183793,-0.24078356,0.86308664,0.4404209,0.40290254,-0.10136127,-0.11936562,0.06780085,-0.02314662,-0.0234746,0.054527283,0.21453407,-0.19330451,-0.6269578,-0.15680476,0.49911907,0.06324262,0.22349472,0.06679288,-0.11583454,0.21018216,-0.220862,0.04935683,-0.1292802,-0.7578959,-0.1809129,-0.3811813,-0.59323794,0.49803644,-0.14907242,0.20920195,0.2733969,0.07471984,-0.14386933,0.50817937,0.12084804,0.80090183,-0.076627605,-0.08706988,-0.39955968,0.38302046,0.26346186,-0.15986598,-0.07012163,-0.28335747,0.14826189,-0.5104391,0.49170634,-0.13460143,-0.27807355,0.08103696,-0.05383871,0.14613663,0.57976186,-0.08446998,0.002876782,0.09243227,-0.28910765,-0.3975153,-0.06084072,-0.1674945,0.22087602,0.22523072,-0.26202437,-0.07077751,-0.10810805,-0.12845378,0.15552938,-0.00928766,0.34227303,0.31987476,0.016717723,-0.30955595,-0.11093012,0.1336768,0.56901705,0.0439741,-0.2212532,-0.41171366,-0.4698282,-0.4110961,0.38441822,-0.09461049,0.35688308,0.084600076,-0.048914585,0.8264497,-0.072348885,1.0096207,0.078982964,-0.45141095,0.06440391,0.477897,-0.040236473,-0.12795302,-0.43364257,0.9005085,0.4316137,0.057627518,0.011223636,-0.38695422,0.10066223,0.28248027,-0.1709644,-0.29289076,-0.052817326,-0.60576427,-0.10877304,0.30044016,0.25659975,0.28152832,-0.11040217,0.25152746,0.350521,0.0054239524,0.11658756,-0.45094466,-0.19612369,0.34574747,0.35575145,0.09715692,0.11397147,-0.44640183,0.298898,-0.4385151,-0.109301485,-0.12411549,0.19206718,-0.16191813,-0.5007127,0.22217146,0.13428898,0.4092694,-0.31008658,-0.37515035,-0.37814167,0.49688774,0.1644912,0.20138517,0.4463484,-0.20247896,0.025581151,0.008358674,0.45496324,0.8958201,-0.2974356,0.060318656,0.64988,-0.27334887,-0.7225567,0.3900561,-0.5100945,0.38472024,0.027973441,-0.21613303,-0.5421509,0.26698816,0.17466176,0.18683897,0.063233115,-0.40411255,-0.035122197,0.1365324,-0.13051149,-0.26887634,-0.41744962,0.10402475,0.49941716,-0.20986399,-0.2543813,0.110813186,0.38911125,-0.14093404,-0.38489813,-0.047972288,-0.17721748,0.23416497,-0.037411004,-0.27094236,-0.15986612,-0.060033318,-0.41515923,0.26462942,0.03918012,-0.2616303,0.120825045,-0.32717827,0.019259809,0.72237504,-0.24966972,0.07886908,-0.58457565,-0.43620366,-0.63426167,-0.28095084,0.22700688,0.116003715,-0.0784973,-0.6954121,-0.05900988,-0.1686429,-0.17864592,-0.09106009,-0.38298365,0.56184846,0.1324372,0.14507745,-0.026878506,-0.68105274,0.11024565,0.084049754,-0.24346818,-0.6004745,0.5665983,-0.08004756,0.87726814,0.19389184,0.09432892,0.32206106,-0.48143312,0.13242052,-0.2676211,-0.07121243,-0.6912423,0.058586296,486 +456,0.47552627,-0.049618296,-0.53528297,-0.3627831,-0.3705599,0.25790825,-0.22503291,0.1357572,0.190998,-0.6340478,-0.13584255,-0.191563,-0.023357842,0.27616042,-0.089262195,-0.7640916,0.11690206,0.23234406,-0.8002558,0.4738219,-0.5208193,0.47461537,0.39865956,0.2871291,-0.0049603325,0.19732334,0.1677996,-0.22836593,0.015019,-0.3009657,-0.27409703,0.17114356,-0.7354598,0.39861658,0.022655046,-0.3235972,-0.09063427,-0.29644293,-0.25149933,-0.781325,0.16348322,-0.87127864,0.4979424,-0.12708794,-0.34649044,0.09593747,-0.120679624,0.21263467,-0.3657453,0.24209774,0.16930489,-0.41965765,-0.22221024,-0.30265966,-0.26447687,-0.47460514,-0.687786,0.04873717,-0.48950472,-0.027855141,-0.37497,0.26927283,-0.30570653,0.16310672,-0.24170658,0.37132934,-0.39242128,0.12151776,0.21471755,-0.15917492,0.0531396,-0.30881286,-0.15047598,-0.21384239,0.363151,-0.13332106,-0.3217036,0.09871854,0.31012446,0.6502934,0.33293024,-0.38187757,-0.08834823,-0.2237541,0.22198145,0.4314136,0.09189476,-0.25900793,-0.30897412,-0.18983206,0.41243282,0.11122879,0.023699598,-0.3750408,0.043053742,-0.21344955,-0.35557604,0.3352058,0.5478794,-0.37842542,-0.18018498,0.3612307,0.43490744,-0.0929841,-0.24255231,0.17523275,-0.09232252,-0.51832765,-0.26167387,0.4377292,-0.07467967,0.54469544,-0.3168029,0.13871875,0.72195655,-0.23249009,-0.04264036,0.015386106,-0.07791401,-0.07130713,-0.18384756,-0.19742009,0.25363812,-0.55028176,-0.055041235,-0.52323955,0.91382176,0.18880264,-0.81814575,0.29421827,-0.46845263,0.21681885,-0.06655864,0.89513785,0.80245143,0.5054904,0.26129022,0.858126,-0.59490025,0.13698062,-0.007937188,-0.35192367,-0.02768089,-0.24724542,0.18557541,-0.33625653,0.06942613,-0.19888829,-0.008008084,-0.02781052,0.4203648,-0.3788815,-0.25907794,0.038088042,0.45980963,-0.5327565,-0.03579855,0.9768796,0.81598514,1.0673163,0.18679965,1.4493355,0.65559834,-0.31562576,-0.22930689,-0.042413823,-0.6637573,0.20526794,0.2647849,0.67141765,0.22239836,0.017527806,0.22457696,0.36703295,-0.5120503,-0.0070108133,-0.26323977,0.14238255,-0.20674013,0.08527725,-0.5023974,-0.3248088,0.21640396,0.05652355,0.0399263,0.3381656,-0.0869445,0.64799106,0.28477722,0.9552737,0.041525073,-0.01042293,0.026104173,0.28109804,0.08656763,-0.1350191,-0.03708716,0.20624678,0.50657594,-0.18076041,-0.779753,-0.20729458,-0.1972679,-0.24271965,-0.32825089,-0.35351875,0.05421457,-0.19452007,-0.36652133,-0.18369459,0.14554882,-0.44282645,0.4517756,-1.9298805,-0.2836086,-0.22704124,0.22895353,-0.101700015,-0.3068266,-0.29537842,-0.5596975,0.4235718,0.32114676,0.40688667,-0.7771473,0.5309826,0.31753942,-0.26703686,-0.056271818,-0.8686609,0.0066033774,-0.20936666,0.20942108,0.026520206,-0.21831687,-0.39296356,0.069291525,0.62931055,-0.079985484,-0.014138922,0.3514125,0.412986,0.0671676,0.579189,0.30958152,0.62481946,-0.2764024,-0.08201579,0.40879473,-0.45367464,0.30646738,-0.029748008,0.1334139,0.48760098,-0.65648043,-0.59672654,-0.7258422,-0.5825337,1.3598607,-0.61974424,-0.46495792,0.13879265,-0.0035351047,-0.24777998,0.08339264,0.39848855,-0.19188444,-0.012609013,-0.5717039,-0.14089617,0.13715379,0.41455576,-0.17775321,0.1138492,-0.32839122,0.77243435,-0.3203428,0.45853266,0.385712,0.10281751,-0.17879905,-0.46052054,0.12330204,1.1033342,0.38010105,0.113791645,-0.29193598,-0.5032205,-0.22514048,-0.2634005,0.09096517,0.5614199,0.7786732,-0.12673306,0.049853954,0.5244598,-0.151003,0.1388531,-0.17694494,-0.31482333,-0.17587273,0.004343716,0.73982936,0.52032745,0.08462299,0.3151706,-0.16569486,0.22632335,-0.045498915,-0.5363408,0.6428332,0.95658666,-0.0684914,-0.30378065,0.54400474,0.2576519,-0.43309504,0.42056307,-0.49310535,-0.45911855,0.48044276,0.04544925,-0.32258442,0.12164911,-0.30564335,0.32391962,-0.9910699,0.2968027,-0.10550935,-0.6517624,-0.5202494,-0.11698628,-3.2121506,0.23268549,-0.12679191,0.096116476,-0.2195196,-0.2317975,0.39265904,-0.30302206,-0.5979467,0.045009393,0.036472674,0.58334297,0.009889014,0.1246109,-0.3158962,-0.24728929,-0.35689703,0.04390978,0.15169014,0.2291276,-0.008044043,-0.2612735,0.2040209,-0.31777525,-0.34864822,-0.05043404,-0.75588906,-0.6548495,-0.15511712,-0.4017556,-0.29388162,0.7082859,-0.4067344,0.08775653,-0.22270177,0.0103279725,-0.18364742,0.23376454,0.23804767,0.2813883,-0.05974155,-0.0061316234,-0.23075901,-0.32621735,0.119715855,0.035784714,0.121985264,0.16021016,-0.26482698,0.19142565,0.37257907,0.68662864,-0.05440342,0.7296592,0.30462748,-0.091844305,0.25758287,-0.123939,-0.4689033,-0.70861477,-0.26891395,-0.14492072,-0.5088817,-0.3439081,-0.07396306,-0.24049024,-0.95618314,0.41045538,0.14719906,-0.14621337,0.0069732154,0.45652184,0.47506526,0.058699794,0.019586692,-0.10299375,-0.3227522,-0.47640234,-0.51486725,-0.8688482,-0.55980045,0.17531641,1.237541,-0.108657524,-0.11777594,-0.04977939,-0.38094157,0.26700068,0.33569518,0.22078393,0.23654678,0.54846734,-0.13232043,-0.6887782,0.51913863,-0.056490805,-0.123474665,-0.5429563,0.13947766,0.9822248,-0.796348,0.48987255,0.38877693,0.12814654,-0.037608426,-0.44866443,-0.30392462,-0.044069324,-0.32040712,0.5365157,0.15842421,-0.59294283,0.6300964,0.17535912,0.08202796,-0.70414436,0.3978339,-0.04467148,-0.112086244,0.23755987,0.50338924,-0.069548026,0.032301355,-0.13126372,0.04283009,-0.45596543,0.16009195,0.51323,-0.036059577,0.118526615,-0.18395032,-0.33365256,-0.6061712,-0.19973211,-0.7955922,-0.24451283,-0.016385375,-0.06970816,0.0148300035,0.15562764,0.078412004,0.48416963,-0.116018586,0.1616381,-0.26199308,-0.22960036,0.4572056,0.46934572,0.27503592,-0.5497832,0.7897201,0.21074353,0.17358887,-0.3184933,0.08012565,0.5155858,0.25912246,0.42258886,-0.15721965,-0.08176577,0.10549233,0.7132164,0.36225396,0.413951,0.27365252,-0.081730664,0.45672098,0.30331168,0.28031835,-0.1354052,-0.1983757,-0.12376434,-0.031108277,0.16167477,0.34016728,0.019686922,0.50609046,-0.07438527,-0.05218202,0.12758991,-0.0323064,-0.16646543,-1.2199333,0.3098201,0.2840747,0.5934347,0.37171555,-0.026229382,0.0033071872,0.6401698,-0.61679965,0.019126778,0.123690546,-0.14438908,-0.32175848,0.5846583,-0.604128,0.42492062,-0.15845574,0.040611763,0.10467994,0.28810278,0.4282067,0.92782295,-0.15963955,0.067620434,-0.14751032,-0.15039523,0.2802032,-0.5158349,0.013172047,-0.46784216,-0.37822595,0.68692726,0.1292102,0.44248182,-0.39165846,-0.030991161,0.057343926,-0.15399596,0.11243453,0.020592107,-0.11359525,-0.13166814,-0.61103487,-0.26659337,0.5896522,-0.098538026,0.2194921,0.28952187,-0.29498053,0.34578982,-0.07092856,0.009573979,-0.25965184,-0.65915245,-0.13449004,-0.41123804,-0.40227073,0.17935495,-0.5162844,0.25582865,0.3062499,-0.03801651,-0.27609205,0.16583502,0.14776002,0.6445055,0.12778163,-0.36552027,-0.17589308,0.113786526,0.31858665,-0.4354352,-0.057439215,-0.23119248,0.11912899,-0.68900985,0.38957787,-0.2312522,-0.29927343,0.14161423,-0.115709044,-0.02944226,0.47800663,-0.27302057,0.018695993,0.21139719,-0.06468714,-0.22219276,-0.14281635,-0.30848163,0.22514923,0.062400084,0.038363438,0.094152704,-0.09032676,-0.036879547,0.4108704,0.11157979,0.220302,0.33162668,-0.09997697,-0.35959122,0.105753556,0.0045127785,0.31166926,0.25725833,-0.19555925,-0.13731472,-0.24602939,-0.21085814,0.49405834,-0.1302068,0.22599576,0.0023385542,-0.52142197,0.99559087,0.12343591,1.0207226,-0.016389813,-0.4007906,-0.012027702,0.6030968,0.081976466,0.12930496,-0.022948068,0.95125145,0.52222085,-0.1595447,-0.11480212,-0.48773673,-0.18990898,0.19305773,-0.19497243,-0.254619,-0.023158569,-0.63336146,-0.27692422,0.13448767,0.33614245,0.108983755,0.03864414,0.07296302,0.0647318,-0.024458472,0.5263785,-0.63156223,0.055265743,0.32098386,-0.0015873994,-0.0908581,0.2253696,-0.21663009,0.3840065,-0.8610352,0.19225146,-0.36665156,0.06776952,0.15656063,-0.24086435,0.2949927,0.07932188,0.20641886,-0.4159067,-0.31962433,-0.38830563,0.7143027,0.305147,0.36641726,0.8656761,-0.32013518,-0.06059318,0.33209515,0.567106,1.3324662,0.014236455,0.21557967,0.23788579,-0.47115287,-0.5151002,0.27889967,-0.19573542,0.08470575,-0.020349517,-0.4755078,-0.32107323,0.25931618,0.11621871,0.054510858,0.31214735,-0.5681959,-0.19867133,0.36486942,-0.25645915,-0.34868482,-0.3045604,0.29261133,0.4817135,-0.28636807,-0.24119529,0.018504713,0.14056514,-0.48395988,-0.602469,-0.01963514,-0.4720711,0.3518751,0.112714775,-0.28849903,0.11087727,0.3265493,-0.52059263,-0.070827946,0.2475414,-0.4031736,0.09590657,-0.24294119,-0.037564296,0.942092,0.09202175,0.20237994,-0.7620286,-0.63056594,-0.78004616,-0.36891195,0.6104716,0.24995048,0.04099479,-0.5146437,-0.1677909,-0.1807839,-0.053369064,0.25189543,-0.49218354,0.3695366,0.356939,0.38098726,-0.010640867,-1.0293877,0.20811176,-0.09003256,-0.27451214,-0.4936726,0.4213222,-0.12978305,0.5899199,0.12869155,0.124934964,0.09350366,-0.5764919,0.4243081,-0.1796078,-0.19899143,-0.6533968,-0.05192439,487 +457,0.24049966,-0.25650468,-0.35081318,-0.15486254,-0.43201378,0.19977714,-0.1477667,0.2767664,0.19764386,-0.43069348,-0.37798762,-0.06538121,0.14273253,0.27482396,-0.13981353,-0.5460409,-0.10728748,0.20747402,-0.61586946,0.38590056,-0.61422014,0.4227015,0.21010001,0.29989582,0.08795591,0.33450365,0.31367126,-0.06290937,-0.18199857,-0.016130766,-0.23801391,0.22766519,-0.47460708,0.062440302,-0.2663318,-0.294549,0.11309331,-0.54005724,-0.3084114,-0.68727547,0.32481366,-1.1061409,0.5095324,-0.08924583,-0.07773471,0.13881186,0.23639631,0.21814713,-0.30465502,0.102339335,0.1845167,-0.20898366,-0.113840766,-0.17316072,-0.23545928,-0.37148646,-0.5389961,0.11170624,-0.43004194,-0.30294746,-0.19877698,0.20172803,-0.3832216,0.21284424,-0.1051054,0.21522224,-0.39597628,0.005538436,0.31719413,-0.2097667,0.112185225,-0.5185978,-0.024987202,-0.09792093,0.43629304,-0.103742935,-0.04803598,0.40494743,0.40414408,0.5914603,0.22149475,-0.30786142,-0.24588068,-0.11918129,0.1634904,0.6615373,-0.14518595,-0.2547179,-0.26584843,0.070927225,0.24300899,0.36647967,0.056816135,-0.005589749,-0.100280404,-0.07472236,-0.35654083,0.32771155,0.5381891,-0.3901971,-0.44937128,0.3223255,0.6798707,0.035518203,-0.17454728,0.041549627,0.054826148,-0.49146575,-0.09604473,0.14068106,-0.111484475,0.5337062,-0.22541912,0.1314343,0.8221125,-0.081436194,0.19506754,-0.088639416,0.054544803,-0.32908052,-0.23533659,-0.13595568,0.09485108,-0.5343618,0.1044483,-0.2753038,0.8092946,0.15623654,-0.6405343,0.511319,-0.44651845,0.22515866,-0.08287496,0.55536443,0.5644436,0.27323848,0.44281715,0.7968812,-0.3594253,0.16605963,-0.11821497,-0.413579,-0.04871491,-0.33374646,0.17202497,-0.3850631,0.27665702,-0.09101761,0.02205508,-0.057876505,0.5965052,-0.5077107,-0.14587271,0.20236471,0.87502,-0.41358763,-0.078966975,0.725758,0.9060388,1.0287869,-0.012302036,1.466627,0.41627914,-0.25700906,0.040289182,-0.3156326,-0.804728,0.20624433,0.4121268,0.27241448,0.26203835,0.08838998,-0.11450576,0.3168089,-0.49585503,0.004920491,-0.29611486,0.17910595,0.13232867,0.08058932,-0.5300722,-0.20783648,0.080422565,-0.13000453,0.2768353,0.19208468,-0.17472894,0.44306558,-0.13640691,1.4733334,-0.08034211,0.08085072,0.15453216,0.48754546,0.26823792,-0.046763547,-0.09105503,0.4350633,0.42298684,-0.10602269,-0.67380106,0.12389201,-0.31826422,-0.4154997,-0.20427693,-0.2885882,-0.21571632,0.18087408,-0.28404826,-0.29074886,-0.13466732,-0.3203303,0.35601753,-2.5626054,-0.35376593,-0.20012115,0.3546547,-0.33442837,-0.23183951,-0.12931518,-0.60754937,0.28037095,0.22312157,0.43933445,-0.6638493,0.39519802,0.5122952,-0.48109192,-0.10607187,-0.7351743,-0.13075699,-0.024608906,0.4086538,0.035446096,-0.17725696,-0.3106169,0.032262024,0.61593664,0.17568922,0.15958211,0.5475098,0.53174764,0.275964,0.53856725,0.0885408,0.6162292,-0.40910688,-0.1080181,0.4506381,-0.31541744,0.41208276,-0.20825349,0.11079256,0.5109929,-0.5200481,-0.8167587,-0.6801787,-0.52835506,1.1095207,-0.38326547,-0.35103115,0.20963576,-0.09402021,-0.14740051,-0.06354953,0.5087591,-0.19040813,0.00019700613,-0.78881747,0.034407355,0.09635035,0.15168382,0.071097836,0.022998348,-0.24746041,0.7624922,-0.1570469,0.5550908,0.16787876,0.20394818,-0.08572284,-0.29920247,-0.0003667942,0.89904225,0.3558384,0.069069214,-0.22790502,-0.36833778,-0.12832537,-0.36795992,-0.022180377,0.4184281,0.7078802,-0.0025173745,0.08097653,0.3576396,-0.07038939,0.036240183,-0.18318343,-0.17029135,-0.10653346,-0.031675704,0.4210295,0.56222636,-0.24781227,0.42234325,-0.35484833,0.31479773,-0.12695341,-0.60702235,0.4988849,0.60067034,-0.16035624,-0.0528103,0.6646458,0.48825735,-0.48121718,0.44435582,-0.74385357,-0.22544673,0.64820784,-0.17316996,-0.49759415,0.05599352,-0.25946897,0.16006884,-0.7843433,0.26820204,-0.13740091,-0.3268542,-0.49138913,-0.13506404,-3.1376898,0.13621387,-0.1559253,-0.14180402,-0.22454797,-0.26244855,0.17242989,-0.47129375,-0.63881916,0.2407074,0.09744728,0.5387248,0.009609767,0.30426827,-0.30412918,-0.014744282,-0.3220704,0.1257601,0.16067502,0.3770955,-0.23541567,-0.46236324,0.09211063,-0.1591716,-0.4708733,0.20273037,-0.69097954,-0.5296236,-0.15625797,-0.42948723,-0.26033407,0.5814754,-0.40240175,0.05849433,-0.31948707,0.013574489,-0.32453632,0.14763677,0.16678728,0.22189035,0.11208214,-0.18452753,0.06487828,-0.31902406,0.7479038,-0.038089115,0.27666014,0.21928212,-0.08761239,-0.024765449,0.3092138,0.5931781,-0.1718813,1.034897,0.3109731,-0.12868576,0.231788,-0.29721993,-0.16202618,-0.5909713,-0.24336112,0.023425927,-0.47332856,-0.6011899,0.041985925,-0.35454848,-0.85075873,0.56016797,0.0133578135,0.30726844,-0.06080394,0.3211135,0.41902143,-0.15341285,0.0034302622,-0.060696237,-0.16623776,-0.6247167,-0.37520885,-0.65204686,-0.44418493,0.091399364,0.9784308,-0.19595559,-0.067911886,-0.20541285,-0.35310864,0.0032667858,0.08546572,0.09298807,0.2621731,0.56676036,-0.027684463,-0.7658719,0.48584446,0.11372022,-0.07633956,-0.45818433,0.01414824,0.59020865,-0.8008461,0.5866347,0.46149462,-0.027776761,0.05344332,-0.4602847,-0.36368564,-0.18196462,-0.2610374,0.39363232,0.18488696,-0.78311974,0.5357692,0.34809685,-0.4836966,-0.9061679,0.16995142,-0.041989915,-0.052498903,0.058848985,0.300245,0.1860214,-0.098636165,-0.107964754,0.019652953,-0.4482054,0.3582767,0.22324446,0.056754094,0.42296726,-0.28898,-0.40699124,-0.75623196,-0.070392266,-0.49742618,-0.12603198,0.30556387,-0.03440812,-0.10464525,0.17269857,0.06986349,0.46615845,-0.30318406,0.076848924,0.12991564,-0.2643686,0.1495523,0.32345596,0.37905365,-0.40746525,0.5594481,0.07473806,-0.18154904,0.13777538,-0.028327227,0.32387856,0.15809543,0.26147553,0.06450045,-0.20622848,0.41452068,0.91338265,0.13269158,0.4411873,0.2614374,-0.1821406,0.52567387,-0.012781224,0.055977397,-0.02346846,-0.44840124,-0.03940257,0.000494693,0.10506599,0.39140844,0.2999632,0.34501797,-0.076751806,-0.067636274,-0.05278519,0.11583813,-0.055959642,-1.0166038,0.029227462,0.12569581,0.8728918,0.35079426,-0.015393466,-0.055236083,0.6326057,-0.33106866,0.14261167,0.4680124,-0.045290954,-0.50824344,0.73145527,-0.4385407,0.40895873,-0.27024737,0.004637137,0.031189825,0.19667777,0.2470245,0.86403495,-0.18380283,-0.00996095,-0.10466308,-0.19363086,0.101552926,-0.30756727,0.02654752,-0.3786249,-0.26984617,0.67045826,0.31924817,0.3771551,-0.05254137,-0.08315575,-0.0877995,-0.11419921,0.20395228,0.13524589,0.11333089,0.08829391,-0.63777494,-0.2396911,0.6212556,0.2462039,0.27758262,-0.15963146,-0.43831182,0.19649199,-0.33649006,-0.056602936,0.028576186,-0.7434961,-0.025093505,-0.09836234,-0.6731024,0.20964544,-0.008966736,0.125217,0.25914183,-0.056307603,-0.25978437,0.07973023,0.13479689,0.88057965,0.0014810839,-0.2813923,-0.37142643,0.09021664,0.369314,-0.36581627,0.27037463,-0.29463348,0.0476729,-0.51806575,0.85209095,-0.20572202,-0.46943498,0.26269013,-0.32060322,-0.03859728,0.6160592,-0.09097718,-0.08856673,0.02552453,-0.15582047,-0.51106745,-0.010115491,-0.19569792,0.17990068,0.35163397,-0.12245524,-0.13312794,-0.29021087,-0.076667294,0.647457,-0.0043669906,0.42226702,0.2485706,0.026489917,-0.23228455,0.05743951,0.14424588,0.5617785,0.03257354,-0.033987906,-0.34224796,-0.46543485,-0.110826,0.22119235,-0.12924854,0.21967593,-0.024768349,-0.4545451,0.87734693,-0.03113241,1.0942985,0.25728545,-0.3145669,-0.06913582,0.56542253,-0.04725821,0.011067905,-0.2780939,0.82006294,0.48684222,-0.06088891,-0.0466506,-0.55456465,-0.040983073,0.31217146,-0.28900725,-0.12483189,-0.05816463,-0.55871457,-0.3614203,0.24297215,0.1852074,0.16935508,-0.054281324,0.16819116,-0.013995273,0.07951559,0.6004039,-0.587409,-0.32908455,0.2399843,0.0864948,-0.019100705,0.17615688,-0.40097308,0.39563814,-0.5855812,0.15585874,-0.41246095,0.0036230257,-0.24689354,-0.3655618,0.086315,0.060868464,0.45178843,-0.29124743,-0.47105378,-0.07474317,0.46805468,0.086907096,0.20511863,0.5763214,-0.26477298,-0.0080574835,0.12288236,0.60919464,1.3523681,-0.27977487,0.18777944,0.2662827,-0.34053904,-0.7141678,0.51940435,-0.3442092,-0.021166964,0.015155767,-0.36530557,-0.4621285,0.26711634,0.31644276,0.0066254246,0.18409058,-0.47874138,-0.21503296,0.35291085,-0.2293924,-0.14943527,-0.1805984,0.29415736,0.74694264,-0.26531652,-0.19709133,0.03666767,0.31154448,-0.39468876,-0.52017367,-0.18567984,-0.2736902,0.3085635,0.1552821,-0.23129228,-0.073614106,0.13333401,-0.42639682,0.10838835,0.13791497,-0.41617584,0.0412565,-0.2883721,0.0334217,0.86791563,-0.17496344,-0.07519891,-0.7573551,-0.3849383,-0.9090906,-0.3532929,0.37311077,0.1800841,0.021201761,-0.3681224,-0.013363277,-0.056459077,-0.23226474,0.17409587,-0.586082,0.45195103,0.18127675,0.46537906,-0.2388355,-0.7730765,0.014573693,0.042989526,-0.1642467,-0.5539171,0.6301418,-0.04067092,0.8724877,0.11080713,-0.12999311,0.047357257,-0.38099998,0.16045892,-0.41615534,-0.094602756,-0.8604995,0.0259652,491 +458,0.40957752,0.11999353,-0.49313012,-0.08773901,-0.1660156,0.14940752,-0.22911574,0.2187241,0.016397187,-0.69589335,-0.11370385,-0.17495383,0.016849527,0.062205825,-0.19457848,-0.41425326,0.039078392,0.23286664,-0.6533104,0.5912842,-0.3265009,0.5976964,0.12796818,0.26238817,-0.14214122,0.255438,-0.026710358,-0.3586472,-0.1841687,-0.2086397,0.0019886494,0.03788557,-0.6373493,0.27938315,-0.15312119,-0.3253734,-0.028432326,-0.14915381,-0.34640327,-0.600811,0.013078188,-0.6644224,0.48389593,-0.119478345,-0.22977994,0.09962108,0.17074703,0.3239492,0.07614691,0.13462779,0.19933787,-0.104040794,-0.29151177,-0.33463043,-0.04483784,-0.7683415,-0.2808219,0.00028755408,-0.5312181,-0.15263358,-0.24836108,0.14341034,-0.2601735,-0.16437423,-0.16462053,0.44300368,-0.2262405,0.26468012,0.11462758,-0.00981637,0.25317544,-0.61284447,-0.0974704,-0.18278255,0.5289124,-0.28087106,-0.0213356,0.09088574,0.14404671,0.42540652,-0.06202782,0.047892597,-0.1875608,-0.1479154,0.36259347,0.47590885,-0.1340721,-0.43158183,0.06912942,-0.0022550907,0.15612169,0.006839288,0.053656302,-0.4099102,-0.045484312,-0.27216402,-0.12646171,0.24355534,0.38608938,-0.19955406,-0.098125644,0.4316652,0.548171,0.098296985,-0.16826873,-0.03554227,-0.008116399,-0.30366236,-0.11074125,0.19976155,0.021789687,0.48953348,0.04313067,0.21781012,0.5890776,-0.050903626,-0.079566516,-0.04565683,0.031743355,0.12685408,0.037872333,-0.13873081,0.034041185,-0.4575961,-0.1982709,-0.29115772,0.90496856,-0.052941877,-0.75291765,0.3193373,-0.46172443,-0.06378902,0.14004196,0.520972,0.5155723,0.59178346,-0.21492144,0.46915463,-0.3875735,0.030371334,-0.08748363,-0.31238633,-0.023894574,-0.09052177,-0.06509574,-0.30465874,-0.07490616,-0.03350439,-0.18198295,-0.08792215,0.45586538,-0.4176796,-0.14520612,0.100571476,0.78610146,-0.25578028,-0.028711604,0.6298484,0.94569725,0.5963103,0.22096321,1.3387206,0.21131994,-0.2264546,-0.10388042,-0.33031988,-0.4871142,0.22939841,0.13852061,-0.45389608,0.24669157,0.19730636,-0.044691775,0.35234,-0.4390345,-0.048372895,-0.33258182,0.39638895,-0.019987125,-0.0066766357,-0.22627221,-0.08574755,0.062152464,-0.030812768,0.25861782,0.1558648,-0.17601204,0.25870356,0.27441868,1.439314,-0.2606625,0.12677042,0.06257414,0.078750476,0.13284835,-0.118072405,-0.05356333,0.31448677,0.27308956,0.082048856,-0.439434,-0.0299823,-0.13302372,-0.5263086,-0.28509837,-0.07057647,-0.16627577,0.16979663,-0.5219182,-0.10968452,0.010548661,-0.3238518,0.2902655,-2.268442,-0.1506385,-0.18366721,0.4547577,-0.23120263,-0.34181184,-0.21160515,-0.27013534,0.4989118,0.2025013,0.44511694,-0.49863428,0.33381313,0.3016582,-0.23073734,-0.32500443,-0.46968696,0.085409455,0.05281176,0.092073336,-0.12713863,-0.105287276,-0.018091397,-0.11193427,0.24622543,-0.4124625,0.067857325,0.4795544,0.3106406,0.105141915,0.29208073,0.13528086,0.5762864,-0.19991668,-0.13603339,0.27687877,-0.29267806,0.16173863,0.009887912,0.2008769,0.25877914,-0.43768993,-0.59411716,-0.71129173,-0.51993877,1.1573576,-0.2110173,-0.40649912,0.062492903,0.033247363,-0.46679983,-0.107487746,0.5065573,-0.019510482,0.11948715,-0.90883887,-0.086227365,-0.11847741,0.5996647,-0.017031142,0.026136998,-0.50876176,0.6310698,-0.20653684,0.36299664,0.3647832,0.23770912,-0.24452119,-0.35105085,0.14252521,1.2969247,0.32742238,0.16253278,-0.13677499,-0.18466996,-0.43636194,0.08012222,0.0043390947,0.5534811,0.54167426,0.06703831,-0.09758448,0.16619399,-0.03362948,0.14736386,-0.16849576,-0.36757448,-0.15486588,-0.092182174,0.47871074,0.3316166,0.008846326,0.6621641,-0.22461207,0.2891728,-0.30124086,-0.39503106,0.5418387,0.82403433,-0.29095525,-0.24935041,0.43055186,0.33493638,-0.20489617,0.25190696,-0.4956496,-0.49898833,0.2544159,-0.113531485,-0.29980895,0.3898964,-0.23270825,0.33533213,-0.9609255,0.4259179,-0.4533015,-0.62894577,-0.58867127,0.015733182,-2.291132,0.17050026,-0.07745962,-0.17222096,-0.102336235,-0.04290631,0.2469976,-0.41330048,-0.3917862,0.20059372,0.026990457,0.42765215,0.059651084,0.27581272,-0.02991036,-0.36319256,0.025655495,0.32545638,0.1666316,0.08025478,-0.12347505,-0.33745012,-0.089693114,-0.1362686,-0.14684807,0.0025477686,-0.6468759,-0.3728858,-0.08087111,-0.44138837,-0.2932806,0.6352161,-0.7611085,0.14843376,-0.26682708,-0.058532655,-0.017396914,0.24286495,0.15221092,0.13380599,0.08860384,-0.12928274,-0.23506583,-0.39740777,0.3238755,0.16697834,0.08817304,0.36263254,-0.21543296,0.1880063,0.2758036,0.507845,0.045509692,0.69559276,0.48340598,-0.15898809,0.18791568,-0.292101,-0.15591455,-0.53587055,-0.29736456,0.008996538,-0.4390448,-0.39907947,-0.2303088,-0.37105316,-0.7108653,0.46163246,-0.029097144,-0.2464381,-0.037768316,0.41391554,0.35982534,-0.0750611,-0.08799702,-0.1079133,-0.09980756,-0.38351223,-0.4675021,-0.5468569,-0.25626564,-0.11509216,1.106819,-0.0734082,0.12338811,0.09171382,-0.123221226,0.09516704,0.1094218,0.021777224,0.02781251,0.59113634,-0.13116057,-0.5469657,0.41182545,-0.26574644,-0.21975306,-0.48237637,0.26554924,0.69354403,-0.72165984,0.5301344,0.44505718,0.008087103,-0.24236782,-0.38746077,-0.14800511,0.08460774,-0.3834171,0.11534856,0.021282554,-0.5903816,0.27515408,0.2303257,-0.1088957,-0.7586469,0.5043569,0.08967268,-0.45380083,0.10898081,0.36243448,-0.13321361,-0.08839529,-0.39206403,0.027470836,-0.33982736,0.29615778,0.14151205,-0.18173543,0.18132128,-0.27716222,-0.15191567,-0.8400777,0.028307596,-0.24984476,-0.5026743,0.21557891,0.22841308,0.02822942,0.29751995,0.050765276,0.4269352,-0.33539537,0.031464554,-0.28213686,-0.19209497,0.32295623,0.24987066,0.2814909,-0.41836128,0.578762,-0.086830415,-0.17739883,-0.30491278,0.37385184,0.54668295,0.11775773,0.2739927,0.066980325,-0.09870706,0.235322,0.7200841,0.14240238,0.59355056,0.100829355,-0.1973373,0.115800515,-0.046813082,-0.017971788,-0.054226775,-0.4437438,-0.16694845,-0.11453598,0.15641782,0.38291264,0.052624997,0.38750392,-0.23262176,-0.4496438,0.05992181,0.31570715,0.15993772,-1.1349107,0.43548864,0.11151294,0.6950946,0.47197503,0.09095604,0.094951294,0.5092766,-0.31609562,0.2330222,0.032284375,-0.24736731,-0.1312262,0.41250664,-0.6289595,0.12995283,-0.09525219,-0.09593914,0.17667441,-0.21118914,0.14648175,0.93737113,0.0072542257,0.09745385,-0.0056567276,-0.20672889,-0.0884498,-0.26107213,0.27026865,-0.4791929,-0.3793933,0.51778436,0.38847706,0.34643242,-0.37193745,0.069802605,0.046257257,-0.26040486,0.13352789,0.109210625,0.16199313,0.14842346,-0.5720435,-0.1496804,0.62444484,-0.19373807,0.026198464,0.25152496,-0.21701853,0.3389376,-0.0043151462,0.1455971,-0.011103911,-0.5638166,-0.0022169563,-0.63300985,-0.19878879,0.2774575,-0.20296879,0.22370307,0.17043246,0.06874932,-0.25994274,0.57638836,0.33816057,0.5763914,0.26000306,-0.1833564,-0.22096054,0.27675882,0.21237054,-0.17027818,-0.007573511,-0.13823418,0.24681881,-0.6937651,0.22111544,-0.01020733,-0.055535905,0.13914415,-0.14324816,0.02633184,0.43324742,-0.06975906,0.0067073107,0.4011948,0.10608958,-0.10607404,0.041811705,-0.1593122,0.02502018,0.36632252,0.027794357,-0.031233212,-0.045871537,-0.2936835,0.23575775,0.12685128,0.4694076,0.55286694,0.21932428,-0.3724579,0.04058264,0.16624393,0.44612646,0.031737573,0.04267056,-0.1366461,-0.4457148,-0.3138546,0.26840416,-0.12821104,0.043136287,0.3245361,-0.28114226,0.81307095,0.12356249,0.9173684,0.0676653,-0.1550635,0.078044124,0.37283617,0.010724626,0.08863907,-0.4530097,1.0955489,0.63781846,0.08425275,0.15893129,-0.11544687,-0.17704798,0.09683372,-0.18702756,-0.19328655,0.0075439704,-0.6225219,-0.6263286,0.08448601,0.36351246,-0.15897797,0.045558177,-0.004666818,0.15109052,0.08268625,0.2675198,-0.7323845,-0.03579545,0.205961,0.23000588,0.061386254,0.28169844,-0.4055255,0.52104527,-0.6713843,0.010144889,-0.26484132,0.09270166,0.0411448,-0.23176332,0.06724241,0.12846586,0.33140805,-0.47436237,-0.20645568,-0.25007114,0.44688532,0.0041702176,0.09093958,0.6852023,-0.10164292,0.3093283,0.036131937,0.51415783,0.95370305,-0.23984215,-0.007126727,0.43273848,-0.4109383,-0.40789843,0.10472744,-0.38105163,0.2053765,-0.19998685,-0.28972858,-0.38867265,0.35127494,0.11332048,-0.14216657,-0.11750934,-0.64490193,0.0069175875,0.40340844,-0.26910594,-0.1616981,0.013055878,0.18679364,0.44868046,-0.1491396,-0.31419322,0.03699497,0.30119702,-0.3452697,-0.52542835,-0.15645969,-0.46720925,0.3221007,0.24855348,-0.30247977,-0.3073859,0.13683169,-0.38339496,-0.013086421,0.25626707,-0.25331825,-0.11349618,-0.24937005,-0.14910464,0.63229626,-0.016712418,-0.0748743,-0.40190262,-0.3467553,-0.6353832,-0.34084892,0.35708088,0.33373094,0.017665947,-0.65521014,-0.1096593,-0.2522871,-0.012593431,-0.13435967,-0.3657577,0.2999141,0.30575958,0.46496367,-0.1637856,-0.9967105,0.0997573,0.14797081,-0.24922517,-0.62488264,0.43071842,0.046997003,0.8286425,0.008023896,-0.006981741,0.47023895,-0.77033824,-0.0227438,-0.10196392,0.01808829,-0.7547907,0.08569453,495 +459,0.3776622,-0.19073853,-0.23871598,-0.32204252,-0.16539063,-0.027343664,-0.054398227,0.3979992,0.15788527,-0.5177097,-0.2093895,-0.22812216,0.019995868,0.36409548,-0.18213786,-0.7690657,0.048724853,0.12390971,-0.43656057,0.5757774,-0.52017814,0.48680454,0.1885718,0.08320509,0.033491034,0.312478,0.27238637,-0.28215042,-0.13495855,-0.19383676,-0.14629053,0.2509891,-0.6242667,0.1434271,-0.037966616,-0.2599751,0.08351033,-0.36365113,-0.31622916,-0.9517889,0.4249122,-0.9296743,0.39698854,0.067640536,-0.29569906,0.4702575,-0.09746294,0.14374152,-0.35288957,0.18858545,0.15504017,-0.224515,-0.060322158,-0.21733566,0.01936322,-0.3830411,-0.63347703,0.020303141,-0.33303303,-0.3262488,-0.3699372,0.13873309,-0.46832296,-0.10951625,-0.12518704,0.34841985,-0.5566494,-0.1794437,0.15867434,-0.14402188,0.42658654,-0.5813232,-0.057056602,-0.23115203,0.25319648,-0.20067856,-0.11894108,0.5882451,0.37916437,0.5565706,0.093417905,-0.2464228,-0.26836848,-0.18895552,0.33902302,0.45814997,-0.07765529,-0.64466566,0.119447455,-0.07001786,0.15210493,0.21330312,0.17979462,-0.26829484,-0.26864594,0.07132088,-0.3291876,0.3791885,0.55694944,-0.28987122,-0.207486,0.36051902,0.5992742,0.054575566,0.039914377,-0.07260083,-0.16145019,-0.71638834,-0.18474351,0.18758236,-0.5557099,0.7813269,-0.41350538,0.02546061,0.68588597,-0.34773463,0.08768691,0.022468854,-0.05726288,-0.02347417,0.046977036,-0.36465052,0.3158713,-0.36842448,0.1496226,-0.39314857,0.7658621,0.35534006,-0.9086899,0.33332095,-0.46551418,0.40887457,-0.24895467,0.6912378,0.6420112,0.40727305,0.4046242,0.7462015,-0.52820754,0.009886578,0.0821315,-0.34898487,0.10885195,-0.24393643,-0.19668683,-0.36902738,-0.077861264,-0.112007834,-0.25078154,0.072283685,0.50076693,-0.61641663,0.24424736,0.025921097,0.6951219,-0.36573917,0.084323645,0.86733943,0.8537272,1.2119743,0.234617,1.1763481,0.27934057,-0.3930599,0.15417449,-0.35022038,-0.77808267,0.24922505,0.55687654,0.051307652,0.2478752,-0.0045726425,0.08724795,0.22726043,-0.58252996,-0.07123559,-0.38911363,0.3589391,-0.051204734,-0.22924447,-0.6051356,-0.21182013,-0.15662296,0.18730018,-0.048405863,0.23513797,-0.095165886,0.44563198,0.09189533,1.146101,-0.01823644,-0.041586194,-0.0049595153,0.3434525,0.22198334,0.056500282,-0.09101389,0.3709384,0.42003074,0.036123026,-0.73773205,0.009314452,-0.18679582,-0.580136,-0.11185621,-0.39850768,0.20582195,-0.054674324,-0.25638565,-0.2399691,-0.02471592,-0.3690736,0.5831003,-2.2949822,-0.24633233,-0.044817924,0.28770047,-0.14960508,-0.18889797,0.06434474,-0.50592667,0.5914294,0.4122831,0.6633234,-0.8784452,0.17055485,0.44591135,-0.4458466,-0.044827964,-0.8115594,-0.23765466,-0.07676884,0.26495036,0.25017983,-0.051754117,0.16637741,0.07028188,0.49093837,0.11184429,0.09311847,0.22054294,0.3628985,0.024150005,0.45426533,-0.08800514,0.4971573,-0.056553196,-0.22453682,0.27509436,-0.4074778,0.22946917,-0.24572547,0.1050879,0.30357185,-0.51919407,-0.81879175,-0.71733034,-0.57432574,1.2265636,-0.110966764,-0.54059154,0.49626356,0.019181821,0.024553189,-0.12958436,0.46160224,-0.33855775,-0.06068043,-0.83350426,-0.06085884,-0.08669377,0.1037185,0.060901176,0.109903894,-0.47986767,0.7827137,-0.13737275,0.16481768,0.37795806,0.14363666,-0.3421731,-0.56780773,-0.020770805,0.9770436,0.5562417,0.17378542,-0.1763296,-0.29757962,-0.2350642,-0.1590188,0.13006428,0.44196466,0.9639663,-0.16581598,-0.013195003,0.2707779,-0.048571806,0.061610818,-0.21000555,-0.3408359,0.07981328,-0.09942139,0.6708001,0.50854665,-0.1717565,0.45486832,-0.15824471,0.25401872,0.005884092,-0.44915038,0.57423794,1.2891377,-0.029511433,-0.19346417,0.6367288,0.48088127,-0.2886067,0.5658994,-0.65586704,-0.3581593,0.63397354,-0.12669845,-0.36582866,0.13686205,-0.32096085,0.2723896,-1.0731643,0.56930363,-0.20956981,-0.38851485,-0.7032881,-0.14955695,-3.1579587,0.06700551,-0.26190022,-0.17043492,-0.12990938,-0.13343501,0.1341849,-0.59960175,-0.64611137,0.17957088,0.034095243,0.6510474,-0.15223686,0.05484257,-0.11920406,-0.16857612,-0.26668116,0.09682142,0.04985721,0.37213796,0.04456365,-0.39462146,0.08512693,-0.28163034,-0.54073256,0.06121976,-0.47066054,-0.6290683,-0.28449494,-0.604672,-0.32145882,0.65621614,-0.26370257,0.010676826,-0.18880095,0.022238735,-0.110339925,0.23885243,0.20106827,0.18273826,0.030812472,0.0016327186,0.052024193,-0.16654944,0.2944625,0.012731456,0.18375142,0.4594845,-0.399357,0.23567936,0.6246579,0.718948,-0.10402964,0.7991084,0.63207716,-0.08649915,0.2605513,-0.46951482,-0.32461897,-0.7556798,-0.5961203,0.1831087,-0.3888447,-0.5931329,-0.116168104,-0.36162776,-0.80229664,0.46044722,-0.18877305,0.06203235,0.0018301478,0.3549935,0.4266279,-0.13233212,-0.014749868,-0.083573595,-0.20546784,-0.55800307,-0.19413963,-0.83215123,-0.30240673,-0.09343876,1.0189754,-0.14054121,-0.11911224,-0.07274071,-0.08254702,0.0024566597,-0.06717985,-0.11015654,0.14552777,0.07574097,0.10837562,-0.6964427,0.63570553,0.12054981,-0.12890954,-0.54538614,0.10863929,0.5802708,-0.65999955,0.31542715,0.5125038,-0.13520029,0.052612,-0.5053682,-0.16871464,0.057995852,-0.2064663,0.4398237,-0.030771,-0.54675853,0.635791,0.43605447,-0.33660126,-0.8251292,0.4859064,-0.11430342,-0.36568955,0.20809756,0.25128132,0.06220003,0.09136436,-0.41902986,0.36885738,-0.55979866,0.32594427,0.44618505,0.13843496,0.19957183,-0.022341486,-0.15999381,-1.0052902,0.026159981,-0.5480793,-0.061001576,0.006244523,0.015297068,-0.005296477,0.06778036,0.27590445,0.6201549,-0.27932796,0.1737101,-0.062897526,-0.29850218,0.23520799,0.54659015,0.4661226,-0.47829285,0.6480842,0.08242159,-0.08577398,-0.35928917,-0.087721124,0.5566074,0.080599435,0.17518584,0.14994009,-0.17778303,0.3461516,0.75340474,0.3128495,0.43993658,0.16915084,-0.1832727,0.32132763,0.2810559,0.39937097,0.020028105,-0.30431986,0.07768302,-0.0004307713,-0.045776468,0.6065112,0.1234845,0.33719802,-0.12436432,-0.2551021,-0.084507175,0.4053972,-0.008723186,-1.2565581,0.45467377,0.24748568,0.625967,0.74911255,0.0074140835,0.109278,0.61432785,-0.37555838,0.102008305,0.28981456,-0.068855904,-0.6862579,0.37639675,-0.79939973,0.28517672,-0.1146696,0.118357114,-0.102863565,-0.013341425,0.36851075,0.76176995,-0.14554204,-0.011351377,-0.30769315,-0.2611567,0.29261297,-0.59240735,0.030134294,-0.3068015,-0.2737405,0.5486036,0.20595762,0.20504144,-0.048595157,0.048396517,0.17330109,-0.047307365,0.46355757,0.066287324,0.14409135,-0.12754838,-0.63370407,-0.17766427,0.55238736,0.024584243,0.20656122,-0.06944228,-0.1850402,0.13330294,-0.3278115,-0.28809503,-0.1737282,-0.76498044,0.021983203,-0.22552983,-0.14955355,0.43548802,-0.15342149,0.37308493,0.2999466,0.040647216,-0.33776146,-0.14628257,0.20738505,0.63497275,0.023779264,-0.26716474,-0.24414758,0.27747348,0.28212988,-0.27127925,0.12275759,0.14243369,-0.15991269,-0.54621226,0.5460853,-0.13109799,-0.25943002,0.033573948,-0.3025918,-0.19448566,0.5990418,-0.3933417,-0.105658405,-0.039933033,-0.34950063,0.03010256,0.022035966,-0.20478086,0.31586966,0.27085945,-0.07362535,-0.20204237,-0.001351746,-0.14786772,0.6302661,-0.05264015,0.31627947,0.20230351,-0.016525416,-0.51653385,-0.23318912,-0.012691728,0.37309834,0.11489659,-0.047195487,-0.35165665,-0.38884598,-0.23566459,-0.06929792,-0.27207965,0.42303753,0.039220214,-0.44823456,0.67782634,0.27309874,1.346255,0.00056073227,-0.39831695,0.055036515,0.58908516,-0.06328044,-0.010029604,-0.16111813,0.9717658,0.5386214,-0.22486337,-0.05786229,-0.45043063,0.07594795,0.22350383,0.008552472,-0.10973159,0.069299534,-0.60499793,-0.42425582,0.36807543,0.3339807,0.026801584,0.0011262809,-0.07697029,0.056710757,0.109512724,0.4744703,-0.43983626,-0.12182515,0.42008162,-0.035663955,0.29956177,-0.08881245,-0.30627504,0.40379858,-0.4661799,0.071073376,-0.32735443,0.21221375,-0.18866086,-0.2832913,0.35601005,0.13923018,0.26993313,-0.22940397,-0.6670755,-0.17135978,0.442279,-0.037831936,0.20532705,0.5373944,-0.46002927,0.20981956,0.11885678,0.541616,1.1426439,-0.17849667,0.07381336,0.30185315,-0.42215395,-0.5630511,0.5812513,-0.2349269,-0.08902122,-0.16765802,-0.22008531,-0.75338393,0.11614585,0.25295907,-0.077020586,0.21019188,-0.5923797,-0.36828664,0.31643203,-0.3684766,-0.19210364,-0.36390617,0.30577537,0.75760883,-0.5563052,-0.37002033,0.13803658,0.06588309,-0.44969982,-0.5158602,0.021081243,-0.22359623,0.47174576,0.12917721,-0.36962134,0.0464632,0.20129633,-0.32670003,0.20732056,0.18120255,-0.31371,0.18449762,-0.25653985,0.12019903,0.80872077,-0.31957576,0.13023528,-0.6413918,-0.553357,-1.068574,-0.15295954,0.9667389,0.153649,-0.01044264,-0.7748019,-0.026529504,-0.002765451,-0.05117031,0.0033882984,-0.33212522,0.5075608,0.20707546,0.31240305,-0.040369947,-0.55796546,0.055511385,0.010815082,-0.040092174,-0.51864547,0.4802167,0.10610471,0.7101803,0.14961866,0.11431418,0.13137303,-0.53040326,-0.065282516,0.076980665,-0.26327327,-0.45804876,0.045973103,505 +460,0.61291754,-0.1743935,-0.60405684,-0.16173771,-0.42314413,0.13305414,-0.22976385,0.40418768,-0.030602379,-0.4939389,-0.3733731,0.090130396,-0.11051422,0.17416954,-0.3408303,-0.48287064,0.13033165,0.33607802,-0.45178056,0.5255784,-0.35519344,0.37692523,0.03499505,0.19721402,0.11064913,0.1742979,0.17977658,0.007509994,-0.103576675,-0.3452931,-0.18611957,0.39361635,-0.6203288,0.32166526,-0.2767451,-0.518355,0.024427755,-0.25764894,-0.30656263,-0.7849123,0.08394306,-0.938542,0.5287951,-0.09660999,-0.39690208,0.033834048,0.13690002,0.17648466,-0.19665393,0.003177366,0.16604432,-0.116865456,-0.39634758,-0.24537063,-0.16206674,-0.51028115,-0.6172957,-0.0029911995,-0.5954603,0.024780473,-0.25699422,0.2090652,-0.21578155,0.026139243,-0.102135226,0.5693269,-0.5088487,0.030257208,-0.013153894,-0.0046165967,0.17197539,-0.71704453,-0.13214879,-0.2160323,0.32305288,-0.27164337,-0.2877815,0.087895036,0.24773005,0.50190884,-0.002235653,-0.20459954,-0.34544283,-0.16610506,0.000725082,0.42664808,-0.20168747,-0.5840207,-0.13809007,-0.12611307,0.43380496,0.1710478,0.06892044,-0.1467139,-0.024224052,-0.017259547,-0.32003406,0.45064566,0.54901445,-0.41754952,-0.08360052,0.30628076,0.7711447,0.018888298,-0.28452757,0.023023708,-0.0869477,-0.5895379,-0.21397673,0.07155541,-0.1898315,0.5916691,-0.22695234,0.25850192,0.5804053,-0.22302392,0.010593414,0.5069662,0.058690164,0.015032336,-0.04452598,-0.48263428,0.28948444,-0.57156426,-0.00076808676,-0.20599614,0.69914085,0.1488985,-0.9221164,0.24986432,-0.41857734,-0.08581338,-0.15868106,0.5728979,0.5347301,0.6258749,0.13169873,0.6634921,-0.3736362,0.047566377,0.043911483,-0.20080069,-0.08228583,-0.09490853,-0.09696041,-0.3486115,0.026317282,-0.18103907,-0.12067306,-0.079612836,0.6540557,-0.6773161,-0.29038236,0.00820102,0.6804039,-0.42961338,-0.2621313,0.8438315,0.9021054,0.97921723,0.086110584,1.273344,0.19023266,-0.09653612,-0.09486592,-0.19760929,-0.5443093,0.32495573,0.3638718,-0.15562315,0.2944917,0.04661516,0.11925124,0.2800315,-0.31333214,-0.06858079,-0.23318622,0.2758088,0.05741263,-0.004338552,-0.40185097,-0.2898263,0.12015995,0.14941335,0.16545057,0.34553698,-0.2168113,0.4102168,0.35940948,1.5186504,-0.07247265,-0.077145375,0.10317602,0.38048798,0.24350344,-0.066664524,-0.06673306,0.14040144,0.1860437,0.025306532,-0.54457676,0.070529915,-0.22197822,-0.5206334,-0.34245273,-0.332241,-0.028218577,-0.2632986,-0.42667338,-0.19500338,-0.0846089,-0.33850846,0.5538781,-2.2106266,-0.16367877,-0.06303832,0.4567612,-0.1639627,-0.46036482,-0.20368187,-0.5458818,0.3863244,0.1732616,0.5943969,-0.6705805,0.6348642,0.64195216,-0.5680695,-0.13671717,-0.75192356,-0.1540668,-0.045192074,0.2761069,0.19464506,-0.123363614,0.080301404,-0.020002646,0.5352621,-0.07008683,0.13465759,0.31180364,0.38871378,0.11288678,0.56564057,0.1656997,0.5302177,-0.40992185,-0.2537571,0.55024976,-0.40624303,0.20336355,-0.2479262,0.1116993,0.46580023,-0.5744385,-1.044994,-0.82292575,-0.27864328,1.1741949,-0.22493543,-0.5589569,0.1279597,-0.25283542,-0.23788159,0.013345114,0.3425682,-0.2467433,0.039394345,-0.81762666,-0.100494385,-0.011171971,0.3303647,0.027634498,0.05647099,-0.5402733,0.56691784,-0.106135726,0.49769384,0.30213282,0.27900973,-0.3786797,-0.4343756,-0.054908894,1.160743,0.486747,0.08627667,-0.305526,-0.28272176,-0.32789835,0.14644723,-0.013553883,0.6863987,0.63251984,0.0017583178,0.057867937,0.25206277,4.715153e-05,0.08520079,-0.28470963,-0.36319605,-0.22200845,0.21472253,0.57942927,0.5993857,-0.12700854,0.58547074,-0.09880565,0.44245413,-0.07582772,-0.57926136,0.37596402,1.1497585,-0.21912594,-0.3827253,0.67404366,0.44620946,-0.36410537,0.47275427,-0.84757966,-0.47759086,0.35597435,-0.08072996,-0.34518725,0.2532936,-0.33242288,0.30769423,-0.8758071,0.48911864,-0.4589456,-0.5748619,-0.56303495,-0.2132227,-2.8146808,0.30550224,-0.08105976,0.02779861,-0.0025793484,-0.48459557,0.13829839,-0.64873666,-0.6723239,0.114758015,0.07173819,0.6520204,0.030732628,0.09970135,-0.15369861,-0.467851,-0.0613064,0.39537653,0.2336824,0.3081348,-0.15357237,-0.5580712,-0.024628673,-0.19657342,-0.36649057,-0.117419206,-0.6251931,-0.54572785,-0.04940513,-0.62394947,-0.24818094,0.63048416,-0.37036243,0.02979814,-0.14898536,0.029472578,-0.09482376,0.3164346,0.019544752,0.051955145,0.04667334,-0.117092736,0.040031973,-0.24494873,0.25141364,0.014512032,0.2235163,0.4030783,-0.18157971,0.27480826,0.63967794,0.67050844,0.0070349746,0.97552997,0.40479738,-0.16330361,0.3183809,-0.1256587,-0.57070667,-0.75885004,-0.21215561,-0.04409207,-0.43700388,-0.2859377,0.11777533,-0.43195254,-0.87708706,0.7547706,-0.07837959,-0.092785425,-0.043085046,0.52179897,0.49738804,-0.15807867,-0.14426324,-0.17407598,-0.29206735,-0.5402227,-0.48489562,-0.64499325,-0.34467492,-0.15670545,1.3866061,-0.2685298,0.047249325,0.03626975,0.12775984,0.09643229,0.34840775,0.013143202,0.19670527,0.4676502,-0.14841302,-0.62913185,0.3854765,-0.114134505,-0.18173984,-0.30648157,0.13139711,0.7278232,-0.7690965,0.37414792,0.5263116,-0.025305884,-0.1052118,-0.7448648,-0.17947422,0.11804652,-0.17801574,0.49437883,0.3708706,-0.75158066,0.5030981,0.24964583,-0.1790199,-0.68911177,0.66398114,-0.06364953,-0.21535107,-0.12999548,0.49429178,0.10783128,-0.036014337,-0.36312225,0.056695104,-0.2813106,0.20534785,0.11974406,-0.06666069,0.24530001,-0.39439037,-0.19629121,-0.96668285,0.022833666,-0.5089227,-0.29511333,0.18957336,-0.124597296,-0.008068391,0.4052,0.25973675,0.4872571,-0.47717842,-0.022538813,-0.16663341,-0.3417999,0.3749954,0.42389226,0.6250715,-0.4330447,0.46622214,0.04444066,-0.06100104,-0.23928706,0.03006805,0.4953284,-0.048820037,0.41666082,0.15004608,-0.1023289,0.24131565,0.8904285,0.28687721,0.40201634,0.068516575,-0.21680303,0.033601053,-0.034933332,0.37385172,-0.11702054,-0.5667213,0.12855636,-0.11728766,-0.0075449455,0.5240912,0.08043708,0.34811,-0.20810196,-0.23131824,-0.032257415,0.27899426,0.05800849,-1.3133522,0.42814094,0.19144467,0.8426914,0.56162643,0.12847196,0.04759874,0.6171497,-0.38772205,0.19126053,0.33991084,0.169364,-0.33197388,0.42029324,-0.59347343,0.52014583,0.00566414,0.06721917,-0.095189296,-0.32044214,0.3486214,1.0984744,-0.024728434,0.124039635,0.013223103,-0.25848714,0.31832942,-0.47482994,-0.073808685,-0.50862503,-0.11967309,0.9427367,0.44967103,0.4305849,-0.03150616,-0.05962146,0.122101665,-0.10715289,0.36575896,0.00050196477,0.26454666,-0.1336417,-0.43448713,-0.06592412,0.5237514,0.15613307,0.08716404,0.14683056,-0.2796556,0.37802213,0.009770905,0.13327734,-0.10000765,-0.6710826,-0.056632962,-0.39309806,-0.30826113,0.49525532,-0.19964156,0.099357486,0.28787392,0.040040605,-0.41682407,0.12847802,0.26544163,0.46975836,0.23276523,-0.0322666,-0.21355602,0.2025163,0.26340154,-0.2979818,-0.045622732,-0.29763627,0.34565213,-0.86204445,0.33246794,-0.23620622,-0.49146292,0.16166271,-0.0037549522,-0.021800442,0.5702455,-0.022532126,-0.2836308,0.03708234,0.059124894,-0.14245515,-0.1297233,-0.2571903,0.208967,0.19360168,-0.13655356,-0.21870331,-0.11913336,-0.07878531,0.47261164,-0.047800038,0.4248342,0.35337016,0.17897627,-0.50535077,0.02511606,0.09262203,0.6228438,-0.2531528,-0.018838236,-0.27158114,-0.3876405,-0.2563881,0.2259904,-0.078105055,0.25026882,0.20934023,-0.19859298,0.6626855,-0.15299633,1.1214526,0.018013034,-0.31272227,-0.0001765745,0.54442227,-0.04562504,-0.07327569,-0.30081782,1.1418607,0.49382016,-0.15650065,-0.17507641,-0.46027848,-0.08335883,0.005897624,-0.15984178,-0.26795965,-0.09737213,-0.58734846,-0.21525216,0.16399722,0.35212097,0.053332526,-0.041445564,0.09786839,0.38727397,0.14970635,0.2418495,-0.6298361,-0.04728503,0.4479727,0.30458122,-0.17710291,0.05192085,-0.48240545,0.30799457,-0.49904945,-0.013042869,-0.40439504,0.19384088,-0.27237418,-0.31183353,0.213101,0.26095963,0.31768373,-0.18824475,-0.38642427,-0.3096199,0.4331443,0.10172911,0.07648832,0.5157792,-0.26507398,0.14030328,-0.07440597,0.50048107,0.93351567,-0.31754836,-0.04695469,0.38710532,-0.2568533,-0.49647596,0.27009884,-0.6073813,0.07589245,0.048839383,-0.19149558,-0.6261514,0.3103662,0.3251221,0.026031375,0.1432866,-0.652362,0.019387024,0.23764549,-0.31652758,-0.05868073,-0.266287,0.13235702,0.74091846,-0.42323425,-0.22149386,-0.0055227196,0.32854956,-0.21251014,-0.51715153,-0.022621645,-0.3400996,0.36440706,0.1614826,-0.387881,-0.056432962,0.019768408,-0.4077356,0.18736006,0.5180903,-0.31055602,0.12900944,-0.39164025,0.2169429,0.7833253,-0.09360523,0.26324707,-0.16244231,-0.45642784,-0.7905174,-0.098566905,0.2890366,0.29012677,-0.06633099,-0.7344963,-0.010158663,-0.26839757,-0.2543927,-0.021457851,-0.30755973,0.5195106,0.17591882,0.39036307,0.033405118,-0.9576683,0.18699421,0.08609979,-0.18342482,-0.40166825,0.5650664,-0.16533026,0.89307976,0.13033597,0.027356679,0.21848191,-0.65858024,-0.053048976,-0.23565276,0.078851044,-0.7189782,-0.07035757,507 +461,0.48197073,-0.061342563,-0.45668152,-0.011954708,-0.27047703,0.16332696,-0.15466452,0.41166702,0.33326578,-0.45663118,-0.28306413,-0.18849131,-0.02223739,0.3092856,-0.16948073,-0.45185804,0.05562898,0.30123243,-0.54344255,0.5388325,-0.33164755,0.3706492,0.1750067,0.44973454,0.22612607,0.07988347,0.27614293,0.046701077,-0.32495198,-0.24781707,-0.17170425,0.24931227,-0.6731955,0.27631146,-0.3490515,-0.5199603,-0.099082574,-0.664885,-0.318804,-0.6384924,0.25604314,-0.79156464,0.63724834,-0.052079625,-0.09595452,0.42929322,0.07452599,0.17583264,-0.1359459,0.0032138804,0.057920627,-0.25093603,-0.16566303,-0.20546614,-0.30525237,-0.16722178,-0.6393629,0.14203788,-0.402797,-0.02202194,-0.3196862,0.15397176,-0.1392433,0.045760337,0.07287069,0.43152437,-0.40414777,0.23591089,0.09010327,-0.26046208,-0.06348385,-0.5477546,-0.23734729,0.009179096,0.38101873,-0.30524173,-0.2048545,0.1551945,0.28803024,0.6082279,0.087987185,-0.097749285,-0.33575693,-0.070490904,0.10445998,0.65012974,-0.05188236,-0.37954548,-0.25660548,-0.055395387,0.26850334,0.024265762,0.2554818,-0.14648663,-0.15154922,-0.2555127,-0.18976632,0.38095492,0.36763063,-0.46962157,-0.2523508,0.37988016,0.50274265,0.2888897,-0.089328006,0.12942624,0.048902307,-0.5734991,-0.1414085,-0.118572675,-0.30316168,0.58378685,-0.17735514,0.36908174,0.40282488,-0.08600831,0.07610305,0.2513934,0.091098905,-0.08819591,-0.23774567,-0.16942559,0.31475085,-0.374108,0.060888257,-0.014551693,0.7827085,0.1921104,-0.6438712,0.34347057,-0.51205015,0.18469355,0.04393112,0.42703938,0.6932568,0.35087922,0.29303408,0.7173406,-0.39730924,0.09064971,-0.050332963,-0.24176535,-0.1565721,-0.3064952,-0.089758106,-0.5060802,0.09768762,0.07757513,0.048570838,0.3356485,0.6076594,-0.4846476,-0.19798665,0.090030834,0.78781253,-0.28143176,-0.22696483,1.0394915,1.0440272,1.1884528,-0.05963816,1.33527,0.25977725,-0.19547412,-0.102550015,-0.09014682,-0.7415423,0.2336858,0.29003724,-0.30118254,0.36546925,0.15836896,0.012938985,0.18723074,-0.40280375,-0.051302414,-0.103241704,0.04995988,0.023341464,-0.08722866,-0.43739817,-0.32942614,0.016187048,-0.009957954,0.2804931,0.22869857,-0.16719699,0.60356534,0.0752791,1.527516,-0.09680014,0.060055044,0.06718566,0.4134173,0.30433723,-0.09212196,-0.20545562,0.14142616,0.26839444,-0.1055416,-0.49682182,-0.045243736,-0.18778421,-0.46841478,-0.23671408,-0.24416848,-0.29892465,-0.081632785,-0.2139862,-0.2104081,-0.097332604,-0.48418215,0.46125698,-2.5712144,-0.37145934,-0.04391895,0.33210403,-0.21561678,-0.3797168,-0.23680802,-0.43473572,0.38521174,0.27739272,0.4447723,-0.53759754,0.28150782,0.48209766,-0.58446455,-0.34902623,-0.5390419,-0.05484909,0.08908422,0.2773306,0.008518615,-0.23198535,-0.11361421,0.10977055,0.4417434,-0.108751945,0.05642912,0.43497586,0.41550294,0.07942484,0.42144087,-0.08646689,0.5341489,-0.30742362,-0.20445307,0.52585185,-0.35006645,0.3798918,-0.32511982,0.1789658,0.51699764,-0.45030528,-0.9141561,-0.6682324,-0.23232964,1.2322241,-0.104681745,-0.41169545,0.15916313,-0.3068111,-0.30245176,0.069676735,0.51083577,-0.14764461,-0.06409879,-0.75331336,-0.041977722,0.103810586,0.0681777,-0.0047856653,0.051478095,-0.5298614,0.6847064,-0.055840276,0.41975814,0.37279612,0.30283123,-0.1774135,-0.39526916,0.08302379,1.0417384,0.4088089,0.14596902,-0.3296307,-0.08833301,-0.41528532,-0.08599152,-0.0036327168,0.38748935,0.58192223,-0.059907254,0.16031465,0.3164659,0.28533527,0.17988017,-0.25646996,-0.19642743,-0.2052838,-0.004833426,0.65223414,0.7069742,-0.13723728,0.41589913,-0.10451355,0.16331029,-0.18160698,-0.49550208,0.67247003,0.89690983,-0.25757232,-0.307983,0.6280777,0.28028724,-0.21759656,0.47133717,-0.5714602,-0.44906905,0.35223866,-0.13744566,-0.35586166,0.1347886,-0.23930891,0.10792948,-0.89060056,0.17242484,-0.07326252,-0.37042728,-0.5076579,-0.21793799,-2.6897995,0.16254638,-0.057730373,-0.0810305,-0.18805793,-0.31640643,-0.038644295,-0.40918854,-0.6871605,0.12619011,0.07950759,0.73107237,-0.22047487,0.27059203,-0.033469584,-0.4325626,-0.48097998,0.035613023,0.0031985599,0.4118888,-0.047595065,-0.32633618,0.054505873,-0.30392936,-0.3960977,-0.031680252,-0.66701895,-0.3388098,-0.06834135,-0.41227937,-0.26623413,0.5744041,-0.5571161,0.068721734,-0.38322368,0.0006418377,-0.11267976,0.2796223,-0.03809147,0.061931092,0.1415118,-0.12806162,0.014090802,-0.11463589,0.33467028,0.18059766,0.12555125,0.4971113,-0.29760554,0.2447416,0.30070263,0.6848917,-0.1624693,0.96325845,0.38881892,-0.10597398,0.30734292,-0.318373,-0.3430765,-0.46821976,-0.19742109,-0.06959063,-0.47874665,-0.4981673,-0.09082169,-0.33263615,-0.9718415,0.54394627,0.12237848,0.20664643,-0.0160078,0.3591761,0.5171694,-0.25434044,-0.052956235,0.008691364,-0.160135,-0.4894402,-0.44427726,-0.6432393,-0.48145145,0.04837052,1.0664426,-0.19288592,0.15682958,0.31882706,-0.28250137,0.02213644,0.22322538,0.022059662,0.014445926,0.48690417,0.029992793,-0.7343717,0.37987366,-0.14712,-0.22391383,-0.5600048,0.20896554,0.6287195,-0.5953616,0.4626865,0.5064057,0.054582495,0.03600158,-0.41252443,-0.16306044,-0.30180082,-0.2244565,0.30378813,0.32856926,-0.7478631,0.5323864,0.28040403,-0.2462431,-0.91677725,0.46125776,0.04863194,-0.15272294,-0.00037347418,0.38098758,0.3380631,-0.0570153,-0.15134035,0.055212803,-0.48080403,0.47159344,0.03983908,-0.06530111,0.23130682,-0.3210056,-0.32798216,-0.69353926,-0.08697856,-0.4038516,-0.3355019,0.06439992,0.1253318,0.073889025,0.114670716,0.21441428,0.3552293,-0.45402312,0.054142572,-0.10221573,-0.2047508,0.21514638,0.42591694,0.5809721,-0.37797803,0.56099015,-0.011031353,0.009363924,-0.0005376935,0.005885797,0.35367376,-0.05210528,0.27881598,0.24963416,-0.23696797,0.15699145,0.6086916,0.18176067,0.22177164,0.123025246,-0.17158148,0.24629888,0.10435124,0.35035488,-0.077136196,-0.4634729,0.03891664,-0.35376135,0.088120066,0.41488966,0.26048777,0.4071483,-0.095944166,-0.24479449,0.02580188,0.10501503,-0.13656503,-1.2302291,0.10770529,0.078644134,0.8356027,0.5205106,-0.0639307,0.17404659,0.6664468,-0.165978,0.11151902,0.36351618,-0.124976814,-0.4247301,0.5148438,-0.599,0.5062441,-0.11445648,-0.067786284,0.15838826,0.005742026,0.44644314,0.7589081,-0.15173802,0.016111165,0.008738165,-0.23210306,-0.016171467,-0.41529346,0.1087235,-0.56881696,-0.08100842,0.9186384,0.51858777,0.3295543,-0.20185111,0.04265982,0.00096121005,-0.15891409,0.03926726,0.14374109,0.14651088,-0.12250918,-0.6803785,0.04698736,0.5124446,0.15822713,0.16729133,0.1783167,-0.37623772,0.26958936,-0.20121494,-0.04812215,-0.13476199,-0.7555834,-0.08030361,-0.30423257,-0.45176274,0.25574547,-0.025475154,0.1781036,0.21905306,-0.009262919,-0.21899168,0.43603468,0.10472657,0.71449697,0.111766085,-0.22487108,-0.14738823,0.41312948,0.24122335,-0.22839996,-0.039644923,-0.20321354,0.04752975,-0.4792238,0.529211,-0.053353515,-0.20725545,0.2265607,-0.029929727,0.15831664,0.5465531,-0.057634775,-0.012592867,0.111148104,-0.19241191,-0.42244843,-0.053439695,-0.28129247,0.21976373,0.34149918,-0.29494184,-0.12273021,-0.10596291,-0.11709727,0.34195164,-0.043279205,0.47047982,0.2923648,0.013521319,-0.43393072,-0.07903051,0.19602005,0.546125,-0.07338721,-0.18848218,-0.23710953,-0.38177687,-0.28319404,0.3705387,-0.14239483,0.10776687,0.12986574,-0.13261887,0.7308531,0.17530043,1.0750307,0.12765129,-0.2932077,0.13014717,0.47666985,-0.15094827,-0.20950206,-0.4131891,1.0670345,0.44124696,-0.083605304,-0.11688995,-0.33333415,0.027218755,0.01294033,-0.25377217,-0.24542761,-0.0584959,-0.5538857,-0.20768218,0.18634148,0.17456268,0.15361612,-0.2137474,0.18354538,0.32648274,-0.04993229,0.31357422,-0.4708592,-0.40863803,0.40821913,0.30465826,-0.08538548,0.06253214,-0.36820894,0.35934687,-0.683438,-0.08684117,-0.19738163,0.10762106,-0.33738202,-0.2355591,0.31717777,0.2180189,0.32953167,-0.3574418,-0.35518423,-0.38776797,0.26436347,0.09637491,0.12620118,0.4503948,-0.29485112,-0.015412659,0.013613863,0.37167838,1.0630339,-0.2401048,0.15123065,0.34261927,-0.22465035,-0.37589172,0.3077193,-0.437515,0.30907395,0.10004433,-0.12376343,-0.7224196,0.13063031,0.17707062,0.23490962,0.14299668,-0.6041283,-0.100542545,0.2250325,-0.18625805,-0.18560424,-0.34009284,-0.1847955,0.55251527,-0.17058055,-0.2486724,0.21929066,0.29250106,-0.22685972,-0.6422077,0.00026128974,-0.36783692,0.26280484,0.11681234,-0.29436573,-0.2923848,0.011313447,-0.5053023,0.018994076,0.1966474,-0.37786105,0.049556576,-0.48233637,0.07388045,0.88761914,-0.27489325,0.43548456,-0.46160984,-0.5398181,-0.9685891,-0.26653633,0.3275884,0.16025813,-0.043820154,-0.5474768,-0.04240766,-0.28007892,-0.3369891,0.10605831,-0.4583837,0.4983669,0.18402554,0.3880326,-0.11725033,-0.8360345,0.13597305,0.009715042,-0.29382768,-0.4829895,0.35990858,0.14712791,0.8405577,0.08919967,-0.12700406,0.27784726,-0.62635463,-0.029586043,-0.19147627,-0.010333159,-0.5974594,0.089426704,514 +462,0.38833612,-0.22331135,-0.52271444,-0.12273347,-0.12431395,0.16939034,-0.09247494,0.6382496,0.27548364,-0.3102471,-0.17320326,-0.027663182,-0.058637083,0.116113916,-0.071918644,-0.35571423,-0.06136479,0.1586879,-0.34655595,0.3064436,-0.44671223,0.2414625,-0.23587857,0.48288026,-0.008385726,0.32277557,-0.07698591,-0.11211856,-0.0941967,-0.06990364,0.05249656,0.20009701,-0.5034653,0.18468535,-0.21073274,-0.22205885,0.06657764,-0.45091024,-0.4037541,-0.6351467,0.20208056,-0.6702794,0.55680877,0.13670053,-0.25671017,0.11518077,-0.11038587,0.31982288,-0.31118867,0.15661652,0.2090733,0.027147233,0.030620605,-0.1681282,-0.22373803,-0.31891897,-0.41708788,-0.02758566,-0.32593456,0.11481057,-0.046057265,0.09571905,-0.20403457,-0.09606123,0.054483037,0.19025488,-0.39812157,0.07492752,0.2316018,-0.07115957,0.31761572,-0.50349575,-0.057465546,-0.18771955,0.25031942,-0.22806609,-0.35054383,0.17225806,0.2420878,0.38626626,-0.1512172,-0.08956813,-0.21874169,0.06613641,0.057965923,0.51313066,-0.19409218,-0.3461878,-0.15828688,-0.011607059,0.16461551,0.3179911,-0.026774362,-0.3284735,-0.08825741,-0.034104887,-0.16962685,0.18697026,0.45311317,-0.17066193,-0.21684077,0.44100827,0.65835094,0.24251921,-0.13190435,0.0752204,0.102691785,-0.48528567,-0.26936752,0.01613711,-0.066913486,0.42126852,-0.060636204,0.16561364,0.6005497,-0.22534576,0.044430885,0.120794944,0.14491403,-0.065843925,-0.36835107,-0.2605808,0.11833144,-0.43479106,0.11647391,0.043301325,0.48612022,0.16654356,-0.773811,0.30379072,-0.48768565,-0.039471574,-0.14506564,0.46018973,0.72339904,0.36310267,0.07732113,0.7533568,-0.45862404,0.10227449,-0.110116705,-0.28834465,0.24392779,-0.13726631,-0.27819216,-0.5619251,-0.032947216,0.14481668,-0.21748923,0.15719615,0.20727518,-0.523127,-0.094047174,0.2356285,0.6971577,-0.28402767,-0.012766817,0.5297279,1.0229372,0.7881781,0.07888118,1.2174414,0.18318437,-0.20288096,0.29827246,-0.2973515,-0.8583035,0.25729942,0.28398997,-0.40823895,0.2862857,0.25567427,-0.012447382,0.3170905,-0.42167473,0.08163545,-0.17569928,0.23242274,0.061080612,-0.09977215,-0.37198335,-0.16264954,-0.11002148,0.07559826,-0.0015894409,0.11625483,-0.29918084,0.045533735,0.022542706,1.6936404,-0.07523538,0.07114402,0.075862214,0.42995828,0.29672602,-0.23903057,-0.24739002,0.4621695,0.32670325,0.041548435,-0.49088898,0.16538931,-0.0797954,-0.4529497,-0.12314649,-0.21235672,-0.053712767,-0.030795734,-0.41835418,-0.11368662,-0.07464092,-0.24491286,0.56734085,-3.059758,-0.10532091,0.003775867,0.35041922,-0.23188867,-0.37307963,-0.31519964,-0.2910796,0.40052363,0.32258347,0.41370985,-0.61624783,0.22014007,0.363107,-0.4923654,-0.114020094,-0.5607327,-0.023496827,-0.06608774,0.15475067,0.0771901,0.1309532,-0.030567693,0.07930277,0.3489821,0.018736694,0.13106754,0.26429686,0.35062,0.17577538,0.30789492,-0.023885157,0.5513549,-0.2675776,-0.22770227,0.20964594,-0.40178388,0.37846312,-0.06684296,0.1389732,0.36363724,-0.39439696,-0.7744605,-0.7433511,-0.31585464,1.1352737,-0.09913169,-0.2153703,0.24405824,-0.5355391,-0.43868738,-0.06903053,0.48335218,-0.09939657,-0.0769936,-0.78720874,-0.05873576,-0.038698558,0.27711424,-0.04215037,-0.03711682,-0.37498218,0.50465405,-0.057129834,0.45776924,0.39279482,0.12618186,-0.012689216,-0.3630752,-0.023393128,0.785497,0.32899597,0.20225,-0.07186721,-0.13021104,-0.405376,0.0692464,0.19601624,0.47516492,0.6628803,-0.102444,0.08269201,0.23164591,0.06555754,-0.025081446,-0.02912559,-0.20446995,-0.10370314,0.024416719,0.45920214,0.59561026,-0.24884753,0.32938102,-0.09980643,0.19121528,-0.23458685,-0.35581827,0.4562308,0.5041022,-0.16201106,-0.1963712,0.50435513,0.46318203,-0.28969607,0.38621807,-0.64365673,-0.11743344,0.28480133,-0.08074578,-0.3521429,0.150037,-0.28981858,0.13107076,-0.79782486,0.23039038,-0.22508118,-0.4897918,-0.4676891,-0.16299696,-2.8842413,0.17161553,-0.04767397,-0.2199321,-0.03647903,-0.016548077,0.32486483,-0.5375487,-0.5473927,0.21780573,-0.04375713,0.56129247,-0.003473912,0.009881073,-0.24555066,-0.24787806,-0.40026268,0.12710682,0.15591598,0.2842167,-0.06013745,-0.45987344,-0.28798217,-0.085960254,-0.29672313,0.07611145,-0.5548916,-0.3613945,-0.15378754,-0.49677753,-0.14918923,0.6432471,-0.35095105,-0.057669677,-0.12719306,0.08900799,-0.15803662,0.31349915,0.110995464,0.094371065,0.08574986,-0.07379801,-0.11800366,-0.28091666,0.35467649,0.09679745,0.18052319,0.35030276,-0.18648815,0.15694794,0.46464893,0.6000938,-0.306918,0.72578526,0.52251136,-0.15294524,0.24063852,-0.23957387,-0.14215067,-0.22439204,-0.31809774,-0.12336874,-0.40557358,-0.539231,0.006299351,-0.4309814,-0.7978844,0.435462,0.014740025,0.081438676,0.1100124,0.080727376,0.4315572,-0.27138776,0.122676685,-0.07700186,-0.097629316,-0.47163102,-0.39857492,-0.3978262,-0.3688722,0.30588004,1.1482184,-0.31783336,0.111741535,0.10866649,-0.27924946,0.056049425,0.08459227,-0.16037706,0.090525344,0.37600285,-0.021039503,-0.4892521,0.35818842,-0.057451643,-0.29454756,-0.6373922,0.13496672,0.580719,-0.682951,0.6825738,0.28685755,0.053204834,-0.108203545,-0.54174274,-0.21337937,-0.10752963,-0.19485526,0.3608994,0.21234797,-0.82354206,0.3405473,0.3306524,-0.24025595,-0.6275448,0.5392286,-0.048282135,-0.19040336,-0.11758081,0.3242289,0.04252881,0.016574526,-0.21178806,0.33499452,-0.32685512,0.18553202,0.24644177,-0.16500379,0.2565045,-0.13946515,0.053721078,-0.651409,-0.0107235825,-0.48967028,-0.23522295,0.31902176,0.017734239,0.10538375,0.12381495,0.3133313,0.3854634,-0.42783532,0.12252243,-0.038534544,-0.29124936,0.2801945,0.3393428,0.56087905,-0.3006709,0.41770062,-0.057990793,-0.11904045,-0.0030625719,0.1921287,0.4377543,-0.015368079,0.33037472,-0.075745344,-0.1595839,0.22038443,0.7580947,0.10138223,0.2752753,-0.0872621,-0.15076981,0.11103281,0.09289605,0.20930317,0.07032858,-0.54036325,0.02331886,-0.15755013,0.23237015,0.29873863,0.18970571,0.21243954,-0.0559495,-0.189694,-0.012608631,0.24153194,0.20415767,-1.0268854,0.39578167,0.17760292,0.77834475,0.42622256,0.08212763,0.08329691,0.40949455,-0.059366845,0.28372476,0.33710548,-0.08628937,-0.44249153,0.30271143,-0.67503136,0.51849496,-0.018409982,-0.07165513,0.14513305,-0.16667823,0.5154821,0.8824849,-0.018630203,0.06440751,0.095688686,-0.23508975,0.07822567,-0.32318863,0.02838583,-0.7235297,-0.27100685,0.5965193,0.6087044,0.38756707,-0.14220642,-0.09228063,0.1200924,-0.02517576,0.10349225,-0.032620136,0.19798912,0.12773319,-0.65192395,-0.15634228,0.39740413,-0.036646504,0.12046402,-0.016483588,-0.23910722,0.24229966,-0.111569546,0.12344681,-0.041060958,-0.62715924,-0.037428796,-0.32049394,-0.31357384,0.39542732,-0.171041,0.22838278,0.09627167,0.10945397,-0.20470282,0.6211692,-0.029025625,0.8853103,-0.019933837,-0.10746665,-0.5064913,0.38052484,0.2602938,-0.14660631,-0.1354453,-0.31137872,-0.023626294,-0.5569784,0.37750122,0.07631942,-0.28032735,0.14412387,-0.15677586,0.09409598,0.59469193,-0.027029783,-0.2643743,-0.006740303,-0.31215635,-0.32933596,-0.08587032,-0.17764787,0.29176834,0.27838564,-0.023414543,-0.045399833,-0.05734392,-0.10742295,0.2633249,0.15554766,0.36365095,0.3519566,0.054677896,-0.22603965,-0.13619456,0.101514764,0.47555453,-0.10387429,-0.05155593,-0.20075993,-0.4374599,-0.33564574,0.094728775,-0.14956252,0.41792765,0.12843904,-0.01950568,0.58704346,0.10175575,1.0230757,0.00044902734,-0.20295751,0.085918866,0.5136093,0.036655564,-0.106070876,-0.48443553,0.8632657,0.5609482,-0.12572148,-0.05539332,-0.15916406,-0.20072302,0.12997498,-0.15604237,-0.0060414374,-0.05049076,-0.802777,-0.23569909,0.20526157,0.216581,0.18862118,-0.0282926,0.045478284,0.14863284,-0.015162939,0.08676096,-0.41315168,-0.103475,0.33504367,0.43372563,0.053130936,0.21073537,-0.44872794,0.35919023,-0.44350109,-0.038127013,-0.14805089,0.22195847,-0.32858464,-0.39106295,0.07755886,-0.025020916,0.34471464,-0.2918748,-0.36977807,-0.28468725,0.45821968,0.15993173,0.28593203,0.50085837,-0.27479056,0.0029102224,-0.1112896,0.47432423,0.8080816,-0.29033586,-0.10473098,0.65009767,-0.23298731,-0.53662026,0.24487206,-0.4323873,0.24325152,0.004288465,-0.23300405,-0.4819757,0.37656382,0.16236892,0.04206158,-0.015672365,-0.65486866,0.034143515,0.12655939,-0.08472326,-0.1970004,-0.20172271,0.15831752,0.80228585,-0.20139053,-0.43808657,0.14902271,0.27639422,-0.2716797,-0.36635795,0.011995784,-0.34800863,0.18315998,0.021726653,-0.3397448,-0.2607095,-0.047696956,-0.43470588,0.13297163,0.029529164,-0.29815742,0.08648811,-0.38835558,-0.062221687,0.9051545,-0.17566507,0.16766466,-0.40332016,-0.3963302,-0.72719127,-0.28132984,0.40798035,0.17752822,-0.026491674,-0.4702769,0.1110251,-0.07457851,-0.08913636,-0.10886905,-0.21515281,0.5078572,0.041224293,0.28782955,-0.19349328,-0.89094603,0.119098485,0.13676505,-0.3079392,-0.59664965,0.5205686,-0.05867044,0.789832,0.06408534,0.031049516,0.30337867,-0.44049922,-0.0005747463,-0.27063534,0.038371198,-0.72152084,0.045927692,516 +463,0.33949152,-0.20070569,-0.3661718,-0.25766653,-0.37147003,-0.06265949,-0.22641332,0.39752445,0.36346084,-0.021167597,-0.116263725,-0.023844277,0.029534552,0.37301397,-0.16863884,-0.64720047,-0.12016706,0.089146666,-0.69567645,0.61729413,-0.5375858,0.18476631,-0.12404548,0.35801294,0.11571063,0.32390437,0.27228266,0.005044005,-0.0040098685,-0.18534507,-0.022531044,0.15861061,-0.56282115,0.24063604,-0.32350186,-0.037807524,0.124340914,-0.5360676,-0.18581088,-0.72776526,0.09515054,-0.6874679,0.46683955,-0.02383943,-0.27957252,-0.0833083,0.3909436,0.26441282,-0.33253166,-0.15712701,0.12972276,-0.1674533,-0.13134804,-0.27624756,-0.042887695,-0.4149039,-0.49686316,-0.07574123,-0.59960204,-0.29105255,-0.19169684,0.28824827,-0.3477016,-0.108755484,-0.07414108,0.6010569,-0.360931,-0.014700617,0.43940252,-0.26088265,0.20430791,-0.59572786,-0.05637086,-0.07227381,0.4967608,0.2314489,-0.28829622,0.3910317,0.39056233,0.23166673,0.30001926,-0.4445486,-0.18255602,-0.3403688,0.13489059,0.3992059,-0.056445558,-0.31357303,-0.17656676,0.00081918604,0.17922238,0.3975183,0.07886408,-0.17238823,0.006945263,-0.20911275,-0.207427,0.75127316,0.51957786,-0.15244927,-0.22767782,0.32152963,0.5785348,0.4466157,-0.38715464,-0.046930183,-0.01622633,-0.535277,-0.008269697,0.1795002,-0.096442156,0.4096267,-0.1680118,-0.067171015,0.8796133,-0.12060789,-0.0992809,-0.029498054,0.082355216,-0.091423154,-0.48478022,-0.0908234,0.18309096,-0.46302864,0.008795355,-0.32366195,0.6725833,0.18658392,-0.5941537,0.3425255,-0.5645772,0.19795227,0.103757985,0.5932007,0.6799821,0.48648423,0.40656796,0.74242103,-0.027751466,0.27681166,0.12040358,-0.3559436,0.17667103,-0.5308135,0.10913899,-0.331173,0.083653025,-0.20209798,0.064247645,-0.054295022,0.31048554,-0.5349658,-0.17774987,0.37710115,0.85476655,-0.20432271,-0.090273924,0.8198703,1.1652324,1.0710176,-0.025045034,1.1872075,0.28742024,-0.20646413,0.1547462,-0.30346107,-0.6536328,0.18912141,0.40820494,0.30146512,0.25219655,-0.15918902,-0.05158231,0.37880865,-0.4623862,-0.042484485,0.06207048,0.3892656,0.25290695,-0.12116999,-0.4240438,-0.22208425,-0.013571969,0.038322117,0.1765564,0.22692506,-0.29850525,0.33163553,-0.12422116,1.1116062,-0.03540106,0.07542974,0.13775304,0.6847376,0.35401648,-0.11396014,0.046361186,0.5649513,0.29622558,-0.04059126,-0.5849214,0.31628567,-0.44145808,-0.29760224,-0.12050109,-0.45554584,-0.16002215,-0.031741805,-0.35825038,-0.01507027,-0.0015139729,-0.21089162,0.39718658,-2.9375892,-0.2850377,-0.25079384,0.28967264,-0.23757844,0.002164909,0.0051420764,-0.5348647,0.2719648,0.34505334,0.52413327,-0.5676058,0.44794697,0.53873956,-0.58741695,-0.16050935,-0.7504301,-0.107261255,-0.1689028,0.57303774,0.06272994,-0.008776789,-0.14324729,0.22324161,0.86179113,0.301037,0.123164475,0.43868825,0.33898577,-0.1665778,0.61541194,-0.05191976,0.45878622,-0.2450907,-0.14884038,0.2495244,-0.48932287,0.3564107,-0.27862927,0.10847836,0.6873024,-0.40015522,-1.0393573,-0.6020239,-0.36551064,1.0717199,-0.30708784,-0.5148239,0.1828358,-0.34156674,-0.094219685,-0.016182525,0.75304544,0.0012509525,0.29130363,-0.5800832,0.088306464,-0.07512146,0.11124885,-0.006912407,0.009249449,-0.37780094,0.7758461,0.023352828,0.5301181,0.09016233,0.2847861,-0.28746843,-0.40639523,0.024790483,0.5349082,0.3473506,-0.14758515,-0.19496632,-0.26830512,-0.052820094,-0.20411314,0.02255323,0.6692376,0.5510106,-0.18012966,0.07254432,0.349935,-0.15900032,0.052762408,-0.17165907,-0.19223033,-0.13730422,0.06248315,0.46478945,0.81206566,-0.09930769,0.33994243,-0.10474931,0.27081156,-0.09895999,-0.49407625,0.73636,0.5480734,-0.20434867,-0.1127793,0.38996,0.5520915,-0.5069791,0.52191967,-0.54074585,-0.0797854,0.7088179,-0.10327946,-0.50373805,0.12548365,-0.2080772,-0.045786362,-0.6957407,0.351242,-0.41451117,-0.46045998,-0.46791092,-0.11367808,-3.3669028,0.13199821,-0.14244471,-0.21550952,-0.4342012,-0.03449956,0.21400462,-0.5479299,-0.53610605,0.19209363,0.28913537,0.6305569,-0.1398451,0.087943606,-0.37232646,-0.22629209,-0.23366629,0.27425426,-0.07296874,0.35995224,-0.3146865,-0.30339304,0.0077622705,-0.15548947,-0.5952776,0.16158509,-0.5372005,-0.43212146,-0.080859415,-0.57563597,-0.10812926,0.66147363,-0.34311932,0.06335683,-0.18709336,0.18232597,-0.10635511,0.23645541,-0.047658127,0.32307878,0.18418038,-0.1637768,0.16117045,-0.31350708,0.48576263,-0.027235596,0.4227688,0.06011542,0.11512655,0.20881854,0.63083947,0.62474674,-0.16712868,1.1182814,0.36084148,-0.097982824,0.28227726,-0.2790447,-0.25279865,-0.5101895,-0.26686192,0.089692846,-0.42671207,-0.47581577,-0.03324584,-0.2983916,-0.7334337,0.5155846,0.084039465,0.31528863,-0.010122932,0.17395563,0.37558573,-0.26022688,0.045293696,0.0583965,-0.11377406,-0.58279794,-0.192561,-0.61516434,-0.4196798,0.07792831,0.7142571,-0.36282596,0.018629897,-0.20431328,-0.48237616,0.002079044,0.16648297,0.08033202,0.16033961,0.36896887,0.059422206,-0.5893253,0.3564301,-0.030046506,-0.04251074,-0.49313977,0.2529236,0.6624368,-0.72577983,0.77104837,0.369411,0.108242,-0.3055554,-0.63192147,-0.2258923,-0.014671796,-0.10869271,0.45150185,0.05627925,-0.8667702,0.49957734,0.02784665,-0.44075772,-0.6947287,0.29736045,-0.24868275,-0.13404815,-0.023045972,0.33364484,0.24249499,-0.18510392,-0.35582533,0.2805248,-0.41463703,0.12197246,0.114646114,-0.007808217,0.44117424,-0.11703551,-0.31361192,-0.8005079,-0.08827671,-0.56683517,-0.33361688,0.3826608,-0.055935476,0.019058645,0.07535078,0.18224931,0.21644713,-0.15548666,0.16859491,0.003997726,-0.4327583,0.43786258,0.53771496,0.48995224,-0.50181234,0.5096802,0.21069722,-0.11353461,0.101858035,0.14871696,0.20353325,-0.013750808,0.54738003,-0.102774434,0.013716067,0.22960792,0.69664925,0.17447911,0.46085587,0.1838633,-0.20890068,0.5073528,-0.154382,0.27331594,-0.06949333,-0.45640564,0.06909912,-0.29525656,0.12717174,0.48778385,0.2550766,0.3466241,0.23242353,-0.34245226,0.05261422,0.2827404,-0.17327465,-1.3304205,0.42857003,0.4366507,0.990396,0.390164,0.13987996,-0.13701652,0.93126494,-0.10515259,0.0009897479,0.5254093,0.1262027,-0.3773009,0.70384496,-0.7342596,0.6542513,-0.08831779,-0.15930246,0.16340172,0.24163808,0.5244047,0.7377287,-0.22946028,-0.028894896,-0.077958785,-0.2615372,0.12278998,-0.43388563,0.09773923,-0.24693811,-0.4118125,0.5986914,0.37117788,0.42354134,-0.21730836,0.04461465,0.07352718,-0.2284969,0.2522934,-0.20339087,-0.38460732,0.027473314,-0.6005041,-0.18533404,0.54496753,-0.08826851,0.18067011,-0.13153982,-0.11051762,0.019451307,-0.24963458,-0.06567695,-0.029983094,-0.69883543,-0.008472143,0.0556611,-0.5875796,0.5119576,-0.4115087,0.16150965,0.22823927,-0.015712619,-0.16294768,0.46766493,0.06618328,0.87326324,-0.051734217,-0.33043915,-0.40646964,0.014879746,0.13863486,-0.34227392,0.060438126,-0.43264857,0.0627189,-0.47879925,0.6559077,-0.27612025,-0.4463329,-0.01416191,-0.17165093,-0.0576892,0.6075812,-0.12950768,-0.23369339,-0.15767513,-0.23112185,-0.20394969,-0.008873982,-0.18980739,0.24516416,0.28966147,-0.22193614,-0.17107923,-0.14386265,0.07930287,0.55486155,-0.038144324,0.4140814,0.14447449,-0.11780294,-0.12608092,0.054339997,0.27004206,0.52443606,0.22102149,-0.057210326,-0.28548998,-0.3309346,-0.33903316,0.24450125,-0.026404846,0.15942955,0.0073761493,-0.21668456,0.74335384,0.021051237,1.2473463,0.058607962,-0.3869975,0.19728735,0.58683544,-0.10375144,0.058996383,-0.48889425,0.852097,0.442645,-0.15452072,-0.044596683,-0.6609602,-0.0076586604,0.38390133,-0.350852,-0.011492344,-0.045855463,-0.5948416,-0.18379724,0.13838162,0.10901173,0.23826525,-0.16189913,-0.18512893,0.05404681,0.17540121,0.41915822,-0.59141976,0.03747328,0.3095822,0.21159098,-0.08912647,0.021992058,-0.32274392,0.42944124,-0.65717477,0.25852826,-0.3569037,0.18164046,-0.51286155,-0.36490706,0.17170827,-0.060125034,0.35814667,-0.30539924,-0.38648096,-0.059861097,0.55702764,0.12070383,0.081315234,0.51700836,-0.30452496,-0.04683638,0.16297688,0.67116946,1.0302159,-0.45002407,0.045879632,0.10720159,-0.53879535,-0.5351858,0.31014776,-0.4585783,0.120293796,-0.08679892,-0.42309448,-0.51387393,0.21604571,0.15036038,0.16404247,0.12294048,-0.6393046,-0.26838377,0.27430266,-0.3662474,-0.27902514,-0.29113847,0.21275207,0.76446456,-0.2308295,-0.5559972,0.073203966,0.20767297,-0.15564434,-0.53018963,-0.05991116,-0.23635612,0.34308308,-0.066764854,-0.36685798,-0.08738107,0.015051656,-0.57273394,0.14312468,0.16755798,-0.3406535,0.074231744,-0.062952206,-0.05742562,0.8850764,-0.27587715,0.029869225,-0.55934054,-0.5385291,-0.8898288,-0.5081867,0.22854187,0.11521884,-0.022107124,-0.35047546,0.05087418,-0.15571903,-0.061591525,0.09802619,-0.67995805,0.2460023,0.113257594,0.5274517,-0.36351702,-1.0325301,0.1601031,0.16909401,-0.020510452,-0.73227566,0.52326804,-0.20608732,0.67304903,0.05537481,-0.030717824,-0.10629785,-0.32251474,0.111405864,-0.36169273,-0.1740632,-0.731676,0.31502342,517 +464,0.5444685,-0.26923248,-0.5171682,-0.11406352,-0.22871889,0.08830041,-0.15120816,0.5004249,0.20164907,-0.37079677,-0.24754131,-0.16667248,0.0063584405,0.106739216,-0.19081299,-0.50848913,-0.028106462,0.20920028,-0.5490055,0.5429812,-0.3117643,0.28440946,-0.033421487,0.3585636,0.22844757,0.24998637,-0.16117649,-0.0119080115,-0.20612405,-0.24398364,-0.01973643,0.15134564,-0.3326995,0.09896245,-0.17044297,-0.36720043,-0.01606724,-0.57679385,-0.32055685,-0.7829844,0.35365012,-0.78844357,0.51207495,0.13623714,-0.40550715,0.2264155,0.1288547,0.49160028,-0.19442652,-0.02432957,0.24252304,0.024019914,-0.09389806,-0.1741869,-0.106620856,-0.29543775,-0.62763584,0.023108972,-0.23439372,-0.12636988,0.013059588,0.1210956,-0.26316825,0.10822676,-0.00067121006,0.6333934,-0.3539775,0.124961935,0.34793755,-0.1204573,0.34931442,-0.6126613,-0.17628582,-0.09704177,0.26015696,-0.16698167,-0.21887903,0.0699109,0.26761478,0.41083437,-0.0947174,-0.18576486,-0.14826906,-0.071932115,0.07436579,0.4974605,-0.2585598,-0.35833946,-0.07319069,0.018174853,0.20376869,0.20856558,0.2367918,-0.20109245,-0.04839954,0.0087228585,-0.28496534,0.27797857,0.40796205,-0.33579317,-0.06956398,0.33067378,0.68473834,0.07044094,-0.079063006,-0.15306576,0.1349285,-0.46631542,-0.14556547,0.114348315,-0.30480966,0.49334583,-0.0570325,0.22794998,0.4740836,-0.14068979,0.040486194,0.09545808,0.14693509,-0.11963398,-0.27677798,-0.40265203,0.2329882,-0.3969691,0.059898607,-0.23828936,0.8401147,0.16774063,-0.6659552,0.25401723,-0.6062568,0.113073215,-0.12438255,0.3890083,0.62923825,0.38287964,0.2839822,0.5760953,-0.24101345,-0.030601945,-0.051433094,-0.17983472,0.00564866,-0.09989716,0.1759645,-0.56019145,-0.07609552,-0.018107167,-0.100168034,0.062055536,0.32502517,-0.6167044,-0.11481125,0.04326868,0.85815084,-0.20557824,-0.095451996,0.76034635,1.0749606,0.8486592,0.024171766,0.98829085,0.27455088,-0.23947895,0.19090907,-0.4013501,-0.5535781,0.31503564,0.344145,-0.4548457,0.22933903,0.0066316235,-0.12759782,0.5180373,-0.38124913,0.14016205,-0.24108876,0.117847405,0.098777756,-0.081355326,-0.39372855,-0.36904603,-0.08433016,-0.042393416,0.122357525,0.338772,-0.2109933,0.2573511,0.017099764,1.5270119,-0.036187153,0.11605795,0.12324598,0.1634526,0.12092668,-0.13237199,-0.17898533,0.38184658,0.20047851,0.063769974,-0.5453073,0.21415019,-0.23957255,-0.3512581,-0.059739348,-0.13890274,-0.122023776,0.074916296,-0.43780988,-0.14722167,-0.30807877,-0.32005876,0.40079448,-2.735909,-0.24133444,-0.18648541,0.44041434,-0.3251175,-0.47496685,-0.026219854,-0.47661275,0.40612406,0.2963865,0.4291429,-0.6123451,0.47326368,0.20476885,-0.532607,-0.15945256,-0.5865502,-0.08077465,0.08242049,0.0944988,-0.16486566,-0.12871632,0.011145779,0.17503557,0.3735349,0.02152094,0.1439691,0.40857357,0.43270758,0.0071570063,0.40549448,-0.027233137,0.47172302,-0.27289245,-0.19744286,0.2596244,-0.53199875,0.18722776,0.0768106,0.07722323,0.45300967,-0.48401165,-0.73962146,-0.7259621,-0.24670915,1.1367357,-0.12202596,-0.3444929,0.07896956,-0.47390768,-0.3712539,-0.07569647,0.50769657,-0.026257515,-0.1628776,-0.8633893,-0.02831162,-0.095869504,0.1938964,0.07370608,-0.090323076,-0.44205108,0.62487406,-0.107906945,0.467124,0.31950215,0.15678032,-0.258504,-0.3152893,0.011627818,0.98717505,0.47960737,0.19296907,-0.14710948,-0.0926127,-0.4224508,-0.09400444,0.105292656,0.5363502,0.7035986,-0.016716788,0.098692246,0.25193673,-0.19080488,0.09736194,-0.16921902,-0.34140706,-0.076371856,-0.006796445,0.5436337,0.5310419,-0.15521447,0.463974,-0.017886935,0.3840097,-0.2753853,-0.34154463,0.43433857,1.065564,-0.17945302,-0.28622463,0.56592053,0.4207377,-0.27646786,0.37954426,-0.422852,-0.27260712,0.3394902,-0.20768431,-0.5032957,0.20274237,-0.23715438,0.25165817,-0.7421269,0.38511297,-0.34357005,-0.39749637,-0.5503772,-0.011600745,-2.5508654,0.36512586,-0.20824705,-0.20345654,-0.11270356,-0.09805191,0.16521527,-0.5729088,-0.5946099,0.20804635,0.0870961,0.7205623,-0.08251894,0.17756028,-0.012665885,-0.3648305,-0.2922613,0.06781763,0.09314896,0.3570359,0.0011155562,-0.41630608,0.00691492,0.008456601,-0.3009846,0.11580617,-0.6975927,-0.47804186,-0.152216,-0.6065035,-0.26478723,0.5945884,-0.2603709,0.09870006,-0.2547776,0.020297846,-0.08593003,0.3802937,0.1376594,0.18617797,-0.03601735,-0.10464966,0.025902187,-0.32786292,0.28592715,0.121214606,0.27120206,0.24654357,-0.04161477,0.4372644,0.38747448,0.61188716,0.09113622,0.68309546,0.44727358,-0.06731173,0.23399314,-0.24605939,-0.30485,-0.36360437,-0.21995625,-0.038462706,-0.3233396,-0.33692142,-0.13383375,-0.3913465,-0.7369107,0.33744946,-0.08162021,-0.004143432,0.10394055,0.41784358,0.58245754,-0.20521869,0.020662675,0.00041237473,-0.06547385,-0.50249916,-0.14665782,-0.51276064,-0.2659423,0.34729555,0.9093596,-0.13233076,0.21067445,0.07086803,-0.1408435,-0.022731423,0.09512318,-0.085210375,0.061555546,0.43670887,-0.21933351,-0.57972866,0.25888795,-0.06510197,-0.18476723,-0.6264725,0.30709997,0.57567394,-0.61467826,0.6386304,0.359703,0.030497218,-0.14787386,-0.38530746,-0.043143563,0.1083886,-0.28335378,0.29857412,0.24747176,-0.59899235,0.22720012,0.37775165,-0.12839888,-0.78820884,0.5757459,0.0360353,-0.41547993,-0.16374885,0.37853226,0.13839172,-0.07476497,-0.10556908,0.17047499,-0.37044147,0.16129212,0.14549434,-0.13696799,0.31165674,-0.19226818,-0.08599682,-0.7124685,0.18181626,-0.62569463,-0.31533903,0.35269174,0.19635805,0.15104869,0.22051491,0.24829452,0.3536149,-0.31717533,-0.0071229837,-0.09716178,-0.2731275,0.30839515,0.4575627,0.47808757,-0.39011383,0.5161732,-0.03213758,0.05617118,-0.116018586,0.020198124,0.41423145,0.025018675,0.36707976,0.06953789,-0.27182359,0.28478107,0.5786663,0.13604103,0.48290607,0.1888217,-0.036687735,0.031225245,-0.011951945,0.038304534,-0.068002515,-0.58364445,-0.0942639,-0.1816916,0.089839,0.46565697,0.07089685,0.20380652,-0.09703133,-0.48376098,-0.03658533,0.21886806,-0.15242657,-1.0907135,0.35419255,0.07893695,0.7925881,0.41858673,-0.047060974,-0.027745545,0.60002023,-0.10036936,0.14220771,0.42902642,-0.05495102,-0.44482404,0.58800274,-0.64166003,0.36136395,-0.075016595,-0.095560595,-0.08470564,-0.12813349,0.32472703,0.65529937,-0.17178878,-0.053054087,-0.03565738,-0.44264203,0.07411885,-0.35409832,0.05862059,-0.7349291,-0.2879727,0.61104065,0.37406036,0.34500784,-0.2700212,0.14616182,0.18516997,-0.16962764,0.27089196,0.15838851,0.11344472,0.09617839,-0.8107049,-0.21507049,0.44346768,-0.20828114,0.07327994,0.009583524,-0.10998452,0.092413746,-0.19116643,0.03559899,-0.012131019,-0.7005133,-0.0025024798,-0.40481773,-0.4061658,0.4980575,-0.003947652,0.13427988,0.16170415,0.14792112,-0.26474872,0.46975031,0.11414158,0.7853312,0.038382743,-0.0911082,-0.39247355,0.24792473,0.049994104,-0.061373584,-0.054547876,-0.29539108,0.16541906,-0.70610017,0.61290467,0.13055924,-0.25613084,0.019526856,-0.084021345,0.060491852,0.49755856,-0.33577552,-0.08772534,-0.12090932,-0.17728266,-0.22599517,-0.24879424,-0.030164609,0.15329537,0.3110501,0.02701916,-0.20324019,-0.09622906,-0.18389848,0.4154672,0.01120816,0.39368486,0.57715255,0.11582478,-0.27511838,-0.23390767,0.15759984,0.40664318,0.0030379551,-0.21570632,-0.5040253,-0.527064,-0.22437708,0.35199362,-0.10336582,0.42337003,0.08297376,-0.04985244,0.77107984,-0.0559238,1.1371796,-0.006415561,-0.24535394,-0.09051407,0.46226782,-0.10325559,-0.16828242,-0.30785832,0.8592068,0.4878704,-0.08254646,0.02926599,-0.3511813,-0.13374828,0.27088538,-0.10826401,0.010308598,0.024896959,-0.5969154,-0.3799993,0.07116727,0.34945914,0.093279116,-0.056981314,0.19443159,0.3337915,-0.06862486,0.21631935,-0.3490564,-0.13590017,0.22867326,0.25967833,0.082204334,0.17866051,-0.50271714,0.34440327,-0.5801262,0.13696203,-0.28848213,0.07955655,0.017879823,-0.34606576,0.20639603,0.12695542,0.2635983,-0.38177863,-0.32051474,-0.1417806,0.4841461,0.21295655,0.09219655,0.580161,-0.21277103,-0.019913286,0.041810982,0.61870724,1.0343295,-0.011776676,-0.04130277,0.2586916,-0.29015929,-0.71868545,0.4400771,-0.24587771,0.14000158,0.058950417,-0.15331374,-0.58845294,0.34393862,0.31662717,-0.052876096,-0.023873275,-0.5687891,-0.17701468,0.26236114,-0.38821626,-0.18733253,-0.31571573,0.15924859,0.6184212,-0.1972398,-0.24098857,-0.12900971,0.25741774,-0.11185622,-0.3685204,-0.06316566,-0.55010104,0.14708158,0.069455706,-0.32739297,-0.20162772,0.046343926,-0.3367884,0.122719154,0.09126198,-0.31268725,-0.020988831,-0.29139522,-0.21791495,0.802399,-0.07754439,0.06655956,-0.36070156,-0.33812448,-0.6331113,-0.46390668,0.306078,0.019323025,0.009850489,-0.67140526,0.0073436648,-0.078738175,-0.10073928,-0.034408417,-0.3457519,0.40184426,0.27232832,0.37805313,-0.07845465,-0.5823106,0.113206856,0.06001512,-0.36509332,-0.5629125,0.4034373,-0.054038525,0.84001714,0.020208964,0.07885271,0.291637,-0.47143754,-0.058087617,-0.17724034,-0.277513,-0.642933,-0.06724663,518 +465,0.6587957,-0.13766381,-0.31318069,-0.17675631,-0.23469721,0.010239944,-0.11576856,0.44209656,0.05683001,-0.29746968,-0.25343412,-0.0548942,-0.090636194,0.21635021,-0.2058048,-0.7384821,0.2034158,0.17000851,-0.3157579,0.71952397,-0.46677855,0.3789429,-0.37068063,0.4143053,0.18189219,0.34883335,0.1448166,0.1190803,0.031481266,-0.27180123,0.05709872,0.051083785,-0.31873795,0.28686446,0.049250934,-0.28629112,0.066655494,-0.29788694,-0.47388777,-0.7324397,0.10041996,-0.7195489,0.50927055,-0.10395245,-0.4976199,0.11253329,0.13231578,0.045869052,-0.19847775,-0.018048307,0.07941477,0.040339317,0.029330041,-0.08592762,-0.051077466,-0.6162158,-0.5193759,-0.06316158,-0.27665883,-0.11802621,-0.2170082,0.14955719,-0.40049425,0.002462668,0.0012633672,0.37568188,-0.3878494,-0.1332459,0.18798149,-0.22501144,0.2398478,-0.65961516,-0.17739932,-0.21977878,0.13529544,0.13828231,-0.16279124,0.27468282,0.15663333,0.34335676,-0.006823097,-0.11882118,-0.21063672,-0.078083254,0.09375123,0.66937286,-0.22335473,-0.26526278,-0.24114962,-0.2057469,0.23200624,0.089456744,0.16245835,-0.023655836,-0.075009815,-0.22545537,-0.31513026,0.16322754,0.5580336,-0.35454327,0.046579618,0.19749999,0.3985493,0.07309202,-0.2759948,0.23503749,0.02443183,-0.37061396,-0.17155185,-0.2691411,-0.009892668,0.568806,-0.22407295,0.30144793,0.546567,-0.08115142,0.18120234,0.13176174,-0.1009062,-0.1354436,-0.22881682,-0.2122009,0.22319166,-0.38768396,0.20083015,-0.21024407,0.7340339,0.11486108,-0.5912402,0.36387005,-0.29867366,0.17531577,-0.03478753,0.4974131,0.6264576,0.3738752,0.2985997,0.5928379,-0.30842534,-0.039940603,0.12849353,-0.25058582,0.2254978,-0.0143224,-0.08833648,-0.4453034,0.15646325,0.22966179,-0.12990859,-0.008610581,0.42398745,-0.44256717,-0.08438211,0.22534159,0.78409326,-0.28587055,0.0751357,0.7125525,1.1518152,0.9314273,0.012732923,1.0155487,0.33539554,-0.020464735,-0.10256274,-0.13230011,-0.5940876,0.18738714,0.43907672,0.4506325,0.24318917,0.17025603,-0.15620807,0.5329351,-0.44117957,0.037201654,-0.08672003,0.3540718,0.07652228,-0.2132316,-0.57361037,-0.13101068,0.12525524,-0.0010054836,0.04432229,0.28283614,-0.17671023,0.50362206,0.0431554,1.4457743,0.09633159,0.03855907,0.120333456,0.65441996,0.25090545,-0.23418263,0.18409511,0.10075356,0.32265016,0.017396446,-0.39936286,0.18060112,-0.1534147,-0.50725025,-0.1829422,-0.2737251,-0.06807969,-0.12810984,-0.36431012,-0.23274414,0.010079088,-0.20646341,0.27855355,-2.8886206,-0.100750804,-0.21565059,0.22337295,-0.111753,-0.17542498,0.07945154,-0.35661426,0.4198669,0.61073685,0.40721768,-0.6231095,0.47650674,0.57358605,-0.55548996,0.141139,-0.5352693,-0.11798079,-0.11391764,0.61641985,0.24817179,0.059567023,-0.07701181,0.42131725,0.48203853,-0.012819707,0.13702567,0.21714926,0.22421451,-0.13414662,0.2903839,-0.052514885,0.3653517,-0.07655388,-0.105131365,0.30232415,-0.42392445,0.058077075,-0.15378563,0.18452719,0.34410724,-0.4484718,-0.6468257,-0.69495517,-0.3074975,1.171665,-0.051414672,-0.4998445,0.34957093,-0.41334108,-0.24760978,0.012047193,0.3896294,-0.31673148,-0.113054,-0.7166689,0.002693815,-0.16610262,0.13155884,-0.071357384,-0.20381853,-0.5107383,0.80290943,-0.09623214,0.50507957,0.22939084,0.2695144,-0.15207171,-0.51315975,-0.05146151,0.6958647,0.57151425,0.19127691,-0.297782,-0.03331673,-0.23908891,0.06809656,0.0998084,0.62448967,0.6326715,-0.12974985,0.1273099,0.19175036,-0.21652095,-0.062983826,-0.14569452,-0.114517465,-0.05134407,0.0529922,0.682924,0.7583016,-0.14400575,0.20305249,-0.12635937,0.39274785,-0.3004293,-0.49079624,0.3829093,0.60734314,-0.17039643,-0.19772074,0.6460619,0.53589123,-0.24792366,0.35419554,-0.6935793,-0.22840047,0.3179404,-0.1402683,-0.30291286,0.24131629,-0.47833443,0.260294,-0.75249493,0.44354233,-0.1802657,-0.65208626,-0.6374726,-0.23571716,-3.6355777,0.19242701,-0.08161656,-0.34535167,-0.0012074624,-0.3070319,0.4843397,-0.59090245,-0.496367,0.16394024,0.03998103,0.6031008,0.010327361,-0.040890064,-0.3598432,-0.25242037,-0.37116623,0.15348387,0.10802613,0.37580338,-0.008651167,-0.43736163,-0.032713592,-0.12170501,-0.4708257,0.029748809,-0.5039537,-0.6426191,-0.18229267,-0.32982093,-0.13005061,0.5663863,-0.08205861,0.17538333,-0.3627115,-0.19087765,-0.29816762,0.15846084,0.1276693,0.08387679,-0.16375038,-0.07995763,0.043844905,-0.29254866,0.30945322,0.15539674,0.34234613,0.4508479,-0.24166103,-0.04429731,0.61639434,0.37579027,-0.06970694,0.83062065,0.38686106,-0.15833592,0.43363625,-0.15066974,-0.38222727,-0.40950748,-0.3085482,0.020858943,-0.424532,-0.36781237,-0.22963257,-0.40277147,-0.661045,0.50156254,-0.008038606,0.07612418,-0.018987432,0.015243269,0.36747342,-0.07535299,-0.09058995,0.19691657,-0.14752848,-0.5244233,-0.24556987,-0.64594203,-0.3537996,0.09693124,1.03912,-0.012788425,0.11464784,-0.025054445,-0.29463318,0.053127985,0.03939461,0.090034604,0.025566492,-0.0011964568,-0.0220392,-0.6938353,0.5012318,-0.05489164,-0.13229097,-0.4254945,0.16816461,0.6059776,-0.64320266,0.31962404,0.29023853,0.08842556,-0.15521131,-0.62003547,-0.19793734,-0.14926486,-0.3056036,0.47002056,0.29204726,-0.87910736,0.43942636,0.22770736,0.017063703,-0.5670983,0.52254,-0.12527487,-0.39128903,0.06648846,0.18294474,-0.0029849666,0.03121362,-0.3069722,0.35755607,-0.4507324,0.1536728,0.19123231,0.022419985,0.46680218,-0.056525372,-0.029145787,-0.60462,-0.22670087,-0.6031799,-0.2698046,-0.011452769,0.08526741,0.00829471,0.21846654,0.10219032,0.4446973,-0.18834041,0.13387302,-0.10289859,-0.35491425,0.4616778,0.4897905,0.4473308,-0.33456162,0.74543184,0.19666465,0.14410213,-0.16036725,0.16170199,0.37749553,-0.015122367,0.4898732,-0.0180403,0.042462904,0.16704223,0.9084324,0.11757974,0.52569485,0.12063426,-0.32444876,0.2942029,-0.037349872,0.23638144,-0.026254904,-0.4476564,0.051423762,-0.16280238,0.2075322,0.36869144,0.13118292,0.26413244,-0.046026286,-0.4535605,0.06083194,0.18781216,0.034383945,-1.259246,0.26696858,0.19740845,0.7983093,0.5464738,-0.023400223,-0.10978887,0.69501895,-0.14607988,0.09951516,0.23171796,0.046624295,-0.3313265,0.39459345,-0.56595093,0.3811787,-0.014606276,-0.054990944,-0.046588004,-0.09522164,0.38542393,0.65840656,-0.099231474,0.16095705,-0.003481667,-0.33700266,-0.008499588,-0.25377238,0.012015425,-0.5046443,-0.2187415,0.55370367,0.4791646,0.35407346,-0.15347219,0.025501583,-0.0070768567,-0.06548876,0.16283004,-0.032347612,-0.03232702,-0.40675634,-0.5563746,-0.37776068,0.41004023,-0.12923793,0.08036472,0.012089129,-0.26458433,0.035698954,-0.06827426,-0.032944858,0.14360373,-0.5485277,0.101898775,-0.16658004,-0.30645037,0.5351099,-0.24491167,0.23674165,0.18475573,-0.01729242,-0.15877475,0.10743014,-0.008755432,0.5089775,0.14391987,-0.17399241,-0.32958388,-0.032994457,0.20789716,-0.33184034,-0.23844539,-0.37355906,0.10457446,-0.3923049,0.3524383,-0.07175725,-0.32193497,0.09627807,-0.13534662,0.02383698,0.3815913,-0.09406157,-0.2739603,0.13116482,0.0887718,-0.23455903,0.007524324,-0.09889477,0.34668946,0.13066004,-0.2103497,0.077054635,0.01602542,0.20034178,0.33255714,0.12298017,0.25850576,0.48233318,-0.116315626,-0.35281864,-0.04291207,0.058165126,0.58579785,-0.06389194,0.1432289,-0.15628688,-0.7425161,-0.3810401,0.034781497,-0.18163657,0.33048287,0.08941518,-0.20461813,0.67415196,0.1583998,1.0118779,-0.048417576,-0.39538223,0.019197745,0.5324941,0.013743903,0.077199884,-0.27243882,1.004817,0.48438063,-0.4217214,-0.31219482,-0.29667643,-0.04929363,0.23688915,-0.13029331,-0.21647009,-0.113445304,-0.7624015,-0.1008143,0.2369286,0.27798986,0.04669208,0.009368676,0.0659708,0.20468317,0.024118645,0.3441372,-0.39655045,0.01031191,0.40167236,0.08819259,-0.11536479,0.07738646,-0.37122288,0.24557948,-0.59073746,0.09153683,-0.28047195,0.117039025,-0.17056324,-0.40052834,0.21710598,0.068807274,0.3714687,-0.41507366,-0.29953048,-0.16855605,0.47501656,0.09783767,0.11763412,0.37980404,-0.15879479,0.084984735,0.09184133,0.44799975,1.1070482,-0.10509571,0.04902047,0.26436958,-0.47149712,-0.69784135,0.071745835,-0.1016945,0.1677717,-0.114444956,-0.4051067,-0.5318335,0.33728194,0.40123802,-0.038378578,0.21851563,-0.38383317,-0.34996146,0.16876519,-0.42218584,-0.22653215,-0.4287819,0.018532855,0.4601708,-0.3478729,-0.25533888,-0.10283186,0.27953854,-0.35956457,-0.67909575,-0.08479677,-0.29642513,0.41684595,0.121629424,-0.48065296,-0.15753052,-0.09073765,-0.4188992,0.09327187,0.22506817,-0.39440152,0.21397689,-0.39038482,0.023935573,0.86889297,-0.16274872,0.18138303,-0.66659164,-0.5322946,-0.8586332,-0.58012444,0.4160428,0.35167697,-0.15790065,-0.47914585,-0.11644302,-0.2646239,0.13715358,0.010130955,-0.17656581,0.47829375,0.20215066,0.4139605,0.065506,-0.8655936,0.040462673,0.09849991,-0.17462817,-0.47597593,0.57198995,-0.0574084,0.7611719,0.18951012,0.15983252,0.088225365,-0.32345653,0.24368349,-0.20483017,-0.36955765,-0.49301043,0.17482866,520 +466,0.4805629,-0.401172,-0.5102972,-0.16485667,-0.24178126,0.24353388,-0.28043553,0.20308682,0.08176412,-0.53996193,-0.087102234,-0.37563568,-0.023235831,0.51304156,-0.28559342,-0.75344616,-0.005648315,0.19017114,-0.707202,0.6512906,-0.42700514,0.3494954,0.19431588,0.0065245456,0.2254966,0.19863705,0.49413636,-0.18096747,0.06729265,-0.07791939,-0.18586542,-0.03646102,-0.77602714,0.018054297,-0.21831584,-0.30139425,0.13121074,-0.34113497,-0.4412067,-0.87981164,0.5381213,-0.9748783,0.29442674,0.0154152345,-0.3287548,0.3496534,0.15350077,0.19511771,-0.21469785,0.077939734,0.19512774,-0.03205961,-0.078642,0.023381472,-0.28175774,-0.6399555,-0.71100414,0.07953048,-0.77283305,-0.43676716,-0.1926643,0.28990045,-0.38199,0.09918397,-0.19394474,0.25647333,-0.48818615,-0.4149219,0.19270065,-0.06764854,0.26499417,-0.71123326,0.05366216,-0.17473526,0.051479112,-0.106894724,-0.011006756,0.36390445,0.29243177,0.56229836,0.10234494,-0.28681347,-0.1997632,-0.18465081,0.3520582,0.58547866,0.105349064,-0.5099883,-0.30626887,0.08210863,0.33029824,0.1712866,0.07549632,-0.4299161,-0.08075641,-0.06643027,-0.25950092,0.53875023,0.48774672,-0.5127215,-0.3895561,0.42601892,0.6628989,0.20648716,-0.19982277,0.096871495,0.009105909,-0.6078641,-0.087983,0.3965218,-0.3373018,0.60767555,-0.22721966,0.12735668,0.7309635,-0.20241408,0.16981599,-0.3640181,-0.057066094,-0.19345617,-0.010281444,-0.23597577,0.22544363,-0.5614723,0.12644923,-0.29071063,0.8332381,0.185937,-0.70011604,0.43142205,-0.58843696,0.31244397,-0.1756632,0.8073569,0.60624987,0.27327222,0.16305752,0.8252115,-0.44108626,0.2022885,-0.04989593,-0.38065535,0.089889355,-0.35370654,-0.22843643,-0.25774518,0.098702446,-0.27931774,-0.10688763,-0.30759457,0.76348543,-0.38211623,-0.08527275,0.0045034206,0.769813,-0.33070067,-0.005089249,0.5910691,0.9577503,1.2816465,0.04671687,1.4093354,0.4755115,-0.25816467,-0.023687933,-0.18359184,-0.8158215,0.27576822,0.5374752,0.464844,0.3046259,-0.060704228,-0.05952885,0.29733127,-0.4961451,0.12856178,-0.28008613,0.19711651,0.012830623,0.034779247,-0.38972944,-0.08969637,0.083166294,0.17433546,0.18715964,0.29017815,-0.26344654,0.3586473,0.053966798,1.5807146,-0.32188565,0.046632368,0.15753104,0.59199417,0.2218077,-0.08766645,0.13714437,0.17815872,0.502955,0.012720363,-0.9151735,-0.00012831177,-0.47566932,-0.5213008,-0.3202625,-0.31119418,0.11571524,-0.010102762,-0.41481033,-0.36891857,0.16621163,-0.29776812,0.39701673,-2.137866,-0.2120719,-0.43228698,0.16975823,-0.36767584,-0.1953825,-0.07990437,-0.63731545,0.34262648,0.4487327,0.32316038,-0.7509567,0.35200998,0.5248913,-0.44788024,0.04242431,-0.77455175,-0.10186816,-0.25127655,0.64123785,-0.0056350543,-0.03233393,-0.054855056,0.21051039,0.48034254,0.21063831,0.09376056,0.19685616,0.4877544,0.19300124,0.524924,0.18884648,0.35579374,-0.24694169,0.03807766,0.6462273,-0.29957047,0.51788217,-0.40536323,0.15370591,0.4184796,-0.5785518,-0.81597155,-0.7135919,-0.44369918,1.1617978,-0.30921957,-0.7522522,0.44405863,0.14896749,0.0024050304,-0.13126884,0.465587,-0.29542464,0.00065304124,-0.69257206,-0.045736175,0.06738965,0.22518526,0.03663202,0.057736117,-0.37533018,0.8624825,-0.007043268,0.36960378,0.1946139,0.23087811,-0.2243005,-0.72478145,0.08480639,0.9266051,0.49803346,-0.025153533,-0.27647382,-0.24070771,-0.3368452,-0.31229013,-0.09573257,0.31765786,0.9381666,-0.013546995,0.08726398,0.26538816,-0.12178528,0.06702127,-0.114954196,-0.38889974,-0.04786208,-0.121234655,0.52681357,0.45521185,-0.12401653,0.31366706,-0.16216199,0.29377636,-0.0063700355,-0.47657886,0.53899246,1.1542803,-0.09247851,-0.067002244,0.47309664,0.6559579,-0.42443958,0.6517442,-0.8479914,-0.2774828,0.5933186,-0.21950798,-0.43208987,0.15536399,-0.39803043,0.000199476,-0.8879537,0.45259875,-0.3115588,-0.07371169,-0.51857054,-0.30023378,-2.7423131,0.17999187,-0.21977665,-0.0612212,-0.16256367,-0.054716878,0.3775673,-0.37273392,-0.6354249,0.11958305,0.03470511,0.5332727,0.12774654,0.2035502,-0.2856928,-0.0015195012,-0.6421523,0.19826181,-0.03887302,0.32461062,-0.11884109,-0.42323452,0.09464158,-0.41073015,-0.395042,0.015973227,-0.45006016,-0.45805788,-0.29219383,-0.35019264,-0.23346625,0.5638397,-0.06669981,0.010497366,-0.12037935,-0.090399995,-0.036258645,0.2791942,0.13062055,0.2619957,0.052921932,0.0050627505,-0.06836392,-0.29496905,0.3799193,0.0015622868,0.20980392,0.26891443,-0.16044573,0.038943715,0.44103643,0.5109443,-0.20550646,0.8270799,0.5083593,-0.12580712,0.11565901,0.13021632,-0.22757672,-0.5912501,-0.25949544,0.022757104,-0.27996582,-0.66612285,-0.16134538,-0.31963438,-0.76362115,0.357661,-0.012796981,0.34266424,0.058340006,0.055858213,0.3496568,-0.13185465,0.07924993,-0.11261362,-0.13939336,-0.5442739,-0.40540245,-0.8712968,-0.55811673,0.2015177,0.9465584,-0.16954236,-0.44309196,-0.051465034,-0.27834752,0.04207951,-0.1096738,-0.039148718,0.24395084,0.34183273,-0.015232084,-0.8993756,0.75329393,-0.023845183,0.16041772,-0.35268018,0.058978762,0.55338424,-0.5183841,0.24953775,0.5442211,0.14432767,-0.016774297,-0.6739612,-0.20639507,0.06536215,-0.26586035,0.43694773,0.053045534,-0.68414956,0.51479846,0.015776025,-0.5532006,-0.84598213,0.5505603,0.061060328,-0.17068611,0.024650266,0.3129469,0.0344778,0.03879559,-0.5584622,0.35635805,-0.57082766,0.2661375,0.34751394,0.027435804,0.41494253,-0.24060687,-0.41776162,-0.62178373,0.072572686,-0.40787935,-0.12311975,0.18409596,-0.01605105,-0.015914185,0.19592007,0.07635792,0.550198,-0.25040206,0.120504804,-0.00026902132,-0.2580899,0.61234635,0.4770479,0.5067448,-0.5185143,0.6995302,0.11167705,-0.2065595,-0.089003205,0.030621039,0.21321987,0.2299211,0.28050622,0.11959604,-0.07137892,0.2573047,1.0228517,0.26542303,0.42943606,0.24760243,-0.4897682,0.4679844,0.19092976,0.07968719,-0.09694285,-0.5343086,-0.24944337,-0.07011719,0.016364312,0.55813795,-0.028948456,0.55587137,-0.10810661,-0.18718402,0.048869606,-0.038781676,-0.19644573,-1.0373569,0.100199565,0.110627696,0.644231,0.7199109,-0.15938345,0.1717373,0.5911718,-0.24662733,0.037620563,0.40615535,0.17575301,-0.6915354,0.5162057,-0.5049167,0.29957882,-0.14813061,0.030944845,0.18365182,0.28253266,0.43159977,0.7272007,-0.0043857074,0.06513057,-0.17672122,-0.30280992,0.31364632,-0.37573224,0.26176962,-0.29662457,-0.37707832,0.57506216,0.4862557,0.18701081,0.060082283,-0.049655076,-0.013565055,-0.14788201,0.29425567,-0.039031107,-0.06468693,-0.072542086,-0.6467127,-0.24608503,0.60582143,0.10976248,-0.008601568,-0.033001624,-0.35626617,0.16246238,-0.39703798,-0.017303998,-0.06022642,-0.8859814,-0.045884736,-0.09952767,-0.43472952,0.35117808,-0.19542591,0.27236515,0.27329516,-0.18204376,-0.367747,0.03791505,0.148296,0.7600447,-0.048308734,-0.08510937,-0.49198776,-0.15290785,0.2986186,-0.31943402,0.09951317,-0.05339821,0.018909859,-0.73113,0.67743367,-0.27767316,-0.28317225,0.23091117,-0.26231572,-0.20014845,0.6110484,-0.15750761,-0.07496427,0.1264895,0.0274092,-0.1837246,0.011433197,-0.205361,0.10951956,0.15004559,-0.19915833,-0.21056522,-0.09561163,0.119962804,0.5331293,-0.10602302,0.2806835,0.32931963,0.059065945,-0.58214444,-0.08139573,0.14469202,0.45298788,0.19046403,0.084620796,-0.1508085,-0.37417862,-0.30593994,0.27080554,-0.13959198,0.2817164,0.19661883,-0.46615776,0.63938135,0.3883355,1.251107,0.04855142,-0.35706544,0.16495533,0.69312775,0.076937065,-0.06836974,-0.503528,0.76144785,0.6518088,-0.20874767,-0.16328296,-0.40343314,-0.15399988,0.26056957,-0.2756645,0.073252626,0.02579956,-0.68453443,-0.26306197,0.20230415,0.36443773,0.027480448,-0.1521544,-0.0031994197,0.045794465,0.13648415,0.6227154,-0.6356084,-0.25879344,0.34030324,0.03327111,0.118972614,0.06538494,-0.300198,0.42323923,-0.6802071,0.09706782,-0.27340153,0.18939964,-0.2072228,-0.35618547,0.20931663,0.2531114,0.3625972,-0.35157043,-0.53849924,-0.23772885,0.770148,0.25956076,0.41399002,0.72377664,-0.4198709,0.29128236,-0.09850002,0.6312561,1.2988656,-0.25605378,0.06817025,0.18760154,-0.4749277,-0.8168098,0.3737104,-0.4865597,0.23445916,-0.055146463,-0.28835994,-0.54488105,0.32866198,0.1571921,-0.146947,0.14078033,-0.59070724,-0.44858894,0.310186,-0.12967572,-0.37091064,-0.47616556,0.23575817,0.74927384,-0.4361506,-0.26184845,0.15273967,0.3570377,-0.37164953,-0.79824334,-0.022811592,-0.35796338,0.40321985,0.04575319,-0.10666021,0.054524362,0.09922743,-0.56206787,0.17430487,0.22334819,-0.39462128,0.04188297,-0.30552012,0.25723317,0.9327876,-0.21025173,-0.31291676,-0.7713121,-0.6235854,-0.95715624,-0.5540763,0.5950858,0.22212096,0.18476741,-0.45720533,-0.06479044,-0.2206253,0.36505443,0.16647615,-0.62152725,0.37274107,0.013075856,0.50307876,-0.12786703,-0.7734398,0.0420706,0.091535985,-0.23394208,-0.32651475,0.622489,-0.15445654,0.8544506,0.16597857,0.12453629,0.12971413,-0.6177627,0.3508451,-0.30154327,-0.31608567,-0.634788,0.30920097,522 +467,0.21488595,-0.006994162,-0.5379756,-0.26192886,-0.34797043,0.33477402,-0.32463378,0.20393796,0.23935628,0.041577708,0.15281399,-0.16882102,-0.23181942,0.35261136,-0.13711601,-0.83219105,-0.010814727,-0.05439614,-0.63581264,0.47934565,-0.468309,0.4209028,-0.18170205,0.2756286,-0.06875079,0.47634655,0.31502816,-0.07471355,0.07640751,-0.112480335,-0.11548715,-0.06623511,-0.66363984,0.15266027,-0.14816794,-0.15918711,-0.06865139,-0.51769257,-0.3117105,-0.7185868,0.33953652,-0.6999339,0.38332626,-0.17091744,-0.372006,0.074086435,0.14270253,0.25040796,-0.3622543,0.048061676,0.24307539,-0.29835537,0.037330475,0.014448411,-0.33649355,-0.75342256,-0.46961573,-0.124739096,-0.61160904,-0.22842745,-0.25002646,0.21070036,-0.37196255,-0.08783458,-0.13721669,0.1614867,-0.3993821,-0.05408751,0.27501866,-0.43276724,0.07917715,-0.51249737,0.10109272,-0.13243648,0.27709994,0.18037142,-0.100685164,0.4512995,0.31829503,0.43867925,0.19069116,-0.24477267,-0.18570079,-0.2290297,0.107686296,0.5300781,0.06369701,-0.33918503,-0.22179988,-0.14054361,0.31186703,0.19419445,-0.024364263,-0.1676791,0.0067832046,-0.009549303,-0.25634125,0.46704218,0.5371026,-0.33688623,-0.037867554,0.5000622,0.4640862,0.2814272,-0.17257135,0.23281625,-0.078688845,-0.34886137,-0.30051583,0.21059915,-0.11465882,0.46492848,-0.20519228,0.17770298,0.7817993,-0.103769325,0.08903803,-0.19624129,-0.21679817,-0.11825164,-0.17916492,-0.025577888,0.13629742,-0.42634028,0.19209974,-0.24080372,0.59048927,0.23002806,-0.60889477,0.44221607,-0.4105416,0.2027391,0.02881128,0.6882989,0.82157755,0.55905545,0.069630034,0.95067036,-0.36369893,0.05792942,0.035432033,-0.24459545,0.27919286,-0.07859901,0.13333853,-0.5026776,0.17866695,0.162564,0.056275126,0.04179465,0.229924,-0.3791599,0.023644624,-0.017808845,0.6640636,-0.30256003,-0.06598572,0.7853146,1.1642562,0.8421425,-0.0065050083,1.3253384,0.27516425,-0.27308565,-0.027892262,-0.1983464,-0.60757107,0.1992292,0.4153281,0.4167154,0.46505406,0.14115301,-0.08415301,0.30853027,-0.33802193,-0.043192264,-0.019270267,0.21664958,0.119120136,-0.042694844,-0.33190307,-0.12551455,0.28456026,0.08367627,0.068731524,0.2368528,-0.262354,0.4377597,0.09194863,1.2394177,0.08688251,0.09464768,0.008802925,0.5580221,0.33546352,-0.0546692,-0.005549748,0.48971257,0.14783154,-0.027805133,-0.5530562,0.082786515,-0.39790747,-0.5168486,-0.14213024,-0.40022555,-0.18537949,-0.075776294,-0.3672658,-0.04373633,-0.021129148,-0.40085143,0.47293523,-2.584526,-0.16183257,-0.3420256,0.32525158,-0.29491097,-0.14066264,-0.2262111,-0.4163909,0.30708006,0.42723435,0.40134478,-0.650929,0.44488305,0.4388191,-0.4320781,-0.047172885,-0.4697378,0.10646598,-0.08224575,0.4340164,-0.069754295,-0.25104183,-0.109086156,0.47309342,0.7064601,0.38554594,0.03549222,0.24492113,0.59534734,-0.1810941,0.4332575,-0.08101218,0.5351581,-0.22163339,-0.0001538066,0.2956377,-0.62217087,0.5142592,-0.1497393,0.20024356,0.3713291,-0.3017334,-0.8624135,-0.62381077,-0.3996243,1.3280708,-0.47660616,-0.6360958,0.36202368,-0.116361804,-0.21461026,0.090588376,0.7595355,-0.07784516,-0.03969252,-0.5444379,0.105679035,-0.20405634,0.24896309,0.004284317,0.25468674,-0.36262473,0.84220856,-0.233623,0.5096028,0.15780583,0.14303496,-0.031665303,-0.39073104,0.03420688,0.5766778,0.59741265,0.038731694,-0.045255106,-0.10185533,-0.1989088,-0.38795885,0.057106238,0.7724166,0.5529238,-0.050082948,-7.124032e-05,0.29413676,-0.14657864,-0.0052998653,-0.18474758,-0.23957276,-0.066846855,0.052040108,0.52081674,0.5843905,-0.19103663,0.13042943,-0.064783275,0.17453721,-0.19028142,-0.6022175,0.44294482,0.66899985,-0.21370146,-0.042781573,0.20497279,0.403831,-0.36335224,0.47134995,-0.711154,-0.36515537,0.66751605,0.07000143,-0.5064644,0.121298835,-0.23701465,-0.05383087,-0.74386567,0.22850962,-0.10465259,-0.68746835,-0.3928888,-0.2005776,-3.7038271,0.048718035,-0.04442594,-0.15713601,-0.33821827,-0.03210341,0.42688808,-0.52260625,-0.604857,0.04910555,-0.028472926,0.59371185,-0.1636893,0.18889272,-0.32970795,-0.094665356,-0.38909656,0.2474264,-0.06466244,0.37300286,-0.07656657,-0.24857788,-0.072444454,-0.25091696,-0.6232577,-0.08409166,-0.5451937,-0.38994327,-0.16536972,-0.36399904,0.021734076,0.61046284,-0.39068168,-0.010529169,-0.21718307,-0.028417895,-0.27256727,0.25802833,0.2917569,0.05746457,0.013105699,-0.09767907,-0.060187165,-0.30504397,0.39581412,0.07435722,0.37326193,0.36402115,-0.19411048,0.040964548,0.6041001,0.63883644,-0.029023958,0.7016217,0.044451892,-0.0671978,0.5480334,-0.22487459,-0.1939427,-0.6603758,-0.39220187,-0.041147243,-0.41686204,-0.45308822,-0.3151361,-0.31298786,-0.8580799,0.07547845,0.22652142,0.30297494,-0.09219641,0.116999306,0.4156783,-0.13091718,0.11986222,0.088465706,-0.25014487,-0.57768583,-0.3034169,-0.5302928,-0.5178894,0.37627697,0.8318249,-0.060613196,-0.14103307,-0.065634444,-0.3895611,0.10447345,-0.11342076,0.3033487,0.13567066,0.2368858,-0.087358356,-0.5715207,0.47791067,-0.22284935,-0.11798381,-0.7396266,-0.020945577,0.62618244,-0.5067776,0.4054861,0.40802497,0.23887992,0.021635754,-0.6070389,-0.14718984,-0.018548131,-0.18980037,0.4042259,0.1197587,-0.6282544,0.43490624,-0.20337443,-0.07922935,-0.48982033,0.4731662,0.037380867,0.02045766,0.046058256,0.39932433,0.12870874,-0.19209039,-0.19311726,0.21623231,-0.5326422,0.2885404,0.3799583,0.07404918,0.67404807,0.06149509,-0.2923243,-0.6382274,-0.19453931,-0.49034172,-0.1538532,0.11844514,0.021341026,0.07218086,-0.08546233,0.014937631,0.3356178,-0.31628507,0.25531095,-0.039148502,-0.3412619,0.5896615,0.5646642,0.41482475,-0.5453387,0.6926672,0.122196145,-0.012196928,0.10966066,0.020232186,0.4934404,0.27077952,0.40873665,0.08820844,-0.016842322,0.057605643,0.55215484,0.2849522,0.2629039,0.07356262,-0.3737931,0.4913697,0.11220671,0.16308339,-0.14557488,-0.4886859,0.0063584275,-0.032751746,0.15313159,0.3993507,0.255007,0.39761263,0.08363026,-0.25849512,0.1745611,0.05558782,-0.35751185,-1.0600605,0.33151785,0.3761955,0.8371142,0.45006004,-0.11138137,0.1679082,0.49331623,-0.1763197,0.050760366,0.34565443,0.11025201,-0.5272783,0.5132108,-0.5656847,0.3942306,-0.03492635,-0.09661041,0.34007192,0.37263364,0.51081234,0.75895244,-0.1943403,-0.04137551,-0.022844464,-0.28655547,0.08328704,-0.17642684,0.09010514,-0.46510705,-0.3408925,0.42625588,0.3264545,0.33429092,-0.28849083,-0.15952794,-0.13958009,-0.17326416,0.1663429,-0.16638486,-0.15943933,-0.31194973,-0.72935694,-0.44837388,0.4178832,-0.13588418,0.05263317,0.075101696,-0.52177966,0.15476848,-0.09589387,0.05353754,0.06702868,-0.6733814,0.08360604,-0.15577619,-0.44456795,0.46447924,-0.3566362,0.44161573,0.1874532,-0.16959794,-0.31485072,0.10712503,0.12603779,0.90790254,-0.014307984,-0.19542088,-0.47584078,-0.051326238,0.30083698,-0.37824202,-0.11675215,-0.3317224,-0.0634376,-0.3560136,0.39093825,-0.38356623,-0.20399089,0.21875587,-0.25421497,-0.078118615,0.3985751,-0.32907873,-0.2638887,0.07681555,0.0002923927,-0.21266769,-0.0016175935,-0.4460236,0.2726564,0.13525064,-0.025988536,-0.033180326,0.023266288,0.031189706,0.24571483,0.06405317,0.08085517,0.28968862,-0.092780046,-0.34054795,-0.12103723,0.049109805,0.44810015,0.20567404,0.033245087,-0.17796671,-0.52290803,-0.33657667,0.26286224,-0.20335959,0.10288726,0.16529499,-0.28422603,0.57067746,0.15066074,1.1712369,0.0685007,-0.39490393,0.22136381,0.6555114,0.07058764,-0.020683339,-0.366297,0.83703434,0.5302487,-0.24638237,-0.18545625,-0.37581292,-0.15869066,0.3931827,-0.20765473,-0.19293885,-0.11315719,-0.79856193,-0.17577113,0.13739653,0.19117667,0.030918185,-0.10117334,-0.25616035,0.03082249,0.1698885,0.47288388,-0.4617829,-0.22069347,0.4886301,-0.11207999,-0.055654056,0.05980727,-0.24104299,0.4427673,-0.60888755,0.034578387,-0.5397715,0.042225067,-0.16223018,-0.25457817,0.18863153,-0.14838386,0.3592078,-0.19416308,-0.40918532,-0.07133349,0.57785183,0.38196418,0.39748022,0.6124615,-0.15740974,-0.10403474,0.046202403,0.63489395,1.2045892,-0.1612344,0.2415292,0.31609038,-0.58569896,-0.54210144,0.026515901,-0.47128457,0.033730157,-0.10511994,-0.41066408,-0.27477375,0.29519218,0.041446745,-0.00073862926,0.18454583,-0.63376087,-0.30468607,0.17503093,-0.3100532,-0.28485572,-0.4835202,0.18022303,0.84862083,-0.3498809,-0.4284665,0.13174072,0.24185872,-0.24439815,-0.6541972,0.1459919,-0.16964924,0.38082388,0.07230145,-0.41584596,0.06595864,0.32252353,-0.44682032,0.3366631,0.080113895,-0.35986808,0.017181393,-0.2018564,-0.049078,0.8235939,0.1233687,0.11258314,-0.79032546,-0.36151674,-0.86615974,-0.47357342,0.12749171,0.22434127,-0.10986989,-0.38903108,-0.11628728,-0.23316206,0.17335913,0.010286055,-0.4991341,0.37255356,0.17996731,0.6790153,-0.18147771,-0.87363243,0.111390844,0.2127579,-0.22322972,-0.49211115,0.5511008,-0.19818768,0.64576876,0.16143815,-0.0014438586,0.06755887,-0.59697247,0.34935883,-0.29382712,-0.13790132,-0.57304686,0.41210365,523 +468,0.5190452,-0.25818977,-0.28044242,-0.20523398,-0.13307624,0.11555139,-0.06850347,0.51554525,0.21901357,-0.5699329,-0.130034,-0.22012968,-0.01562348,0.28067356,-0.13213348,-0.5370329,0.026533753,0.1867207,-0.38791627,0.52192694,-0.52196664,0.23497605,0.046862464,0.39263248,0.06326459,0.22047058,0.14908396,-0.1613125,-0.23519541,-0.19437878,0.011303084,0.20265998,-0.6060033,0.33045343,-0.17448187,-0.332617,-0.07834854,-0.49719042,-0.44616684,-0.78653985,0.34330246,-0.9652888,0.5044622,0.09031124,-0.18140896,0.34748587,-0.05101112,0.25810042,-0.29864207,-0.0025145356,0.28233936,-0.17213129,-0.050712552,-0.14927784,-0.10575312,-0.18425371,-0.58968246,0.11856927,-0.37608114,-0.12686159,-0.35917607,0.16363427,-0.21980672,0.030147675,-0.08553807,0.37198952,-0.46047583,-0.01793112,0.13734423,-0.14809132,0.34720638,-0.49021286,-0.16997471,-0.11699506,0.17819794,-0.1819958,-0.2040995,0.35579696,0.22788729,0.5223647,0.008900396,-0.21892986,-0.32921368,0.03502339,0.20510796,0.5640992,-0.17672013,-0.632946,-0.16968463,-0.17081822,0.12262235,0.09039237,0.051976006,-0.2418963,-0.057168026,0.02499327,-0.20959057,0.33892804,0.5973605,-0.22246747,-0.32557264,0.32594976,0.59325683,0.102125965,0.04724117,-0.09732266,-0.06539857,-0.45290312,-0.18485881,0.1069413,-0.29602915,0.51981914,-0.044959046,0.13268682,0.7237474,-0.22499646,0.12947305,0.04771923,-0.05779885,0.023554554,-0.3489775,-0.31756037,0.2544386,-0.402824,0.17063081,-0.2784107,0.8763777,0.121444285,-0.7410267,0.5130726,-0.3828779,0.06748947,-0.033223443,0.5921817,0.66728646,0.4518253,0.40580007,0.7446479,-0.62758446,0.024015177,-0.13770841,-0.24353471,-0.016769607,-0.1783965,0.17949389,-0.33476844,-0.0021550101,0.078175224,-0.19235133,-0.09732572,0.5121001,-0.5435704,0.0020862904,0.17764173,0.8396984,-0.3136315,-0.017414523,0.8714805,1.0979576,0.9557892,0.07258296,1.2940766,0.39493516,-0.31776863,0.25957367,-0.2693382,-0.775878,0.26483724,0.32723546,0.24935646,0.009392832,0.23350227,-0.048519082,0.43443868,-0.6178834,0.03956139,-0.1632736,0.36067644,0.018202756,0.0064690784,-0.49521774,-0.2910862,-0.14478625,0.00040531158,0.06499706,0.18869486,-0.35760722,0.27328518,0.06411279,1.7802916,-0.16423178,0.07616373,-0.068799466,0.5456,0.069624744,-0.09913601,-0.09714628,0.23419568,0.31917995,-0.078369774,-0.5711488,0.053760957,-0.15480033,-0.48996305,-0.1384423,-0.24665998,-9.563991e-05,-0.08356537,-0.42155796,-0.19042066,-0.064721845,-0.40396172,0.5000889,-2.5664613,-0.18477903,-0.009285235,0.3261816,-0.21516664,-0.3529298,-0.06883429,-0.47984287,0.46805954,0.38344914,0.39910308,-0.6949088,0.39224574,0.38450652,-0.46682456,-0.14491017,-0.663524,-0.041549463,-0.047229063,0.38112357,0.20554349,-0.08080488,-0.076282926,0.012532075,0.51709235,0.06578245,0.15997496,0.31449717,0.3849353,0.07943255,0.4313183,-0.013663226,0.5582616,-0.2749305,-0.14189373,0.37641844,-0.47322822,0.22538264,-0.3179674,0.2092136,0.34472346,-0.45882514,-0.8484916,-0.89041215,-0.49756685,1.1210641,-0.11290494,-0.46617433,0.30402747,-0.24282338,-0.22695121,0.00050867134,0.55038154,-0.12617566,-0.068655476,-0.7746018,-0.068830006,-0.06884332,0.1914604,-0.031750724,0.071925156,-0.46328872,0.79585886,-0.09857433,0.40775782,0.2797916,0.21659414,-0.15471013,-0.39831686,0.10683364,1.0450066,0.35550103,0.18438552,-0.106724,-0.21203835,-0.20833097,-0.15817595,-0.013047963,0.5176667,0.77397346,-0.002955642,0.03227054,0.2715203,-0.07129613,0.016322926,-0.091436975,-0.3621294,-0.22653624,0.0421029,0.7045041,0.62957144,-0.18114944,0.3873338,-0.341338,0.20546399,-0.13075967,-0.35835978,0.5289607,0.78522,-0.13420808,-0.08935772,0.54716,0.424349,-0.2939637,0.46167496,-0.7614437,-0.3713213,0.44391838,-0.14301327,-0.46935493,0.14709413,-0.32261905,0.14459682,-0.89002705,0.46991786,-0.24044533,-0.70675385,-0.495179,-0.16693582,-3.360561,0.076304436,-0.13871299,-0.12081178,-0.055422373,-0.19522886,0.20754762,-0.49216405,-0.5610424,0.19150934,0.013609686,0.62745446,0.11844268,0.13071005,-0.27923894,-0.07461543,-0.4614274,0.026062336,0.10475143,0.33021027,0.020775547,-0.3911967,-0.023110254,-0.1870433,-0.24502386,0.04761646,-0.5794687,-0.5411281,-0.2189388,-0.4494469,-0.26927635,0.6608597,-0.36729473,0.07172791,-0.20613118,-0.08025585,-0.3685441,0.4197044,0.07761478,0.18782978,0.04603896,-0.2038143,-0.07145584,-0.33383328,0.4147424,0.1618341,0.14827867,0.46419606,-0.23372957,0.127746,0.46467143,0.5796199,-0.0920309,0.9645747,0.4446014,-0.090897314,0.34816557,-0.35752568,-0.1499499,-0.64680946,-0.3319079,-0.04414245,-0.4068884,-0.48075524,-0.053989053,-0.4719284,-0.9071669,0.4492932,0.009811367,0.15130424,0.027297305,0.09690697,0.45926183,-0.17309478,-0.12456922,-0.11004914,-0.05161329,-0.648529,-0.3364951,-0.716165,-0.52109325,0.12918332,0.96377057,-0.007812858,-0.066834435,0.16324724,-0.12255488,0.13562202,0.11250804,-0.19764055,-0.08352012,0.41487542,0.009574183,-0.73176724,0.5801949,0.03872504,-0.17756002,-0.6086284,0.31765977,0.65229034,-0.6623906,0.5792634,0.38630813,0.10527086,-0.0043562567,-0.42237744,-0.28508398,-0.2618207,-0.13888629,0.3170615,0.063191876,-0.84195787,0.46805218,0.45722088,-0.25163943,-0.9638356,0.30943805,-0.068692185,-0.17733094,0.05588132,0.2755303,0.16063856,0.012689168,-0.25052175,0.21196079,-0.64190066,0.36284348,0.28651777,-0.0006484368,0.27865893,-0.1516392,-0.11893896,-0.67846686,-0.17011525,-0.5953684,-0.30372864,0.1268289,0.088456355,0.046718437,0.28889203,0.23406407,0.46660694,-0.19844206,0.10226748,-0.019767238,-0.31165746,0.1882608,0.42637524,0.46423602,-0.42199415,0.58504057,0.0066534854,-0.030745456,-0.1680227,0.12553765,0.38795704,0.1429694,0.37204796,0.012865058,-0.20720336,0.2847729,0.9481339,0.29215154,0.46418524,0.063523166,-0.240448,0.39903164,0.18782659,0.3209804,0.023348536,-0.54298955,0.13495697,-0.18563178,0.11313653,0.34956476,0.23013541,0.37325493,0.005464409,-0.2437607,-0.021927472,0.20695874,-0.22056378,-1.176644,0.41875353,0.028167682,0.87981266,0.5781765,-0.12587228,0.17350934,0.70431626,-0.112841144,0.08531757,0.23980297,-0.19578911,-0.5097927,0.5434341,-0.8034231,0.33950052,-0.09473239,0.07182197,0.013683374,0.00809661,0.4471839,0.6455478,-0.1305049,0.06585181,-0.11551307,-0.18553376,0.2148247,-0.4924154,0.24515586,-0.58083165,-0.26567715,0.7719043,0.54385436,0.36758548,-0.067770176,-0.006543662,-0.008047434,-0.092439756,0.112722084,0.059414305,-0.036877666,0.060401924,-0.6519886,-0.18816338,0.5614196,-0.06711644,0.18591945,0.052594792,-0.37764493,0.2444994,-0.25805736,-0.23398979,-0.0044099456,-0.7033367,0.053329997,-0.3000376,-0.27879956,0.44864908,0.048335142,0.28695995,0.19489965,0.07184259,-0.1870056,0.22047962,0.18224187,0.74056536,0.14438042,-0.25985566,-0.4950826,0.17654082,0.25614807,-0.3610335,-0.0009256474,-0.17668726,-0.10398691,-0.66856575,0.42811838,-0.104357064,-0.28466564,0.28549367,-0.17505002,0.04029704,0.68802696,-0.19753551,-0.12091797,0.05125314,-0.2572197,-0.2722351,-0.10088384,-0.071534984,0.29008928,0.20162311,-0.032405846,-0.009429149,-0.07847254,-0.1233034,0.441508,0.12315468,0.32947585,0.3371737,0.04374546,-0.32057914,-0.10109925,0.124723956,0.5257436,0.036258917,-0.14361665,-0.14670287,-0.4112884,-0.38606954,0.074663214,-0.12170297,0.31122366,0.045978326,-0.3887978,0.71213686,0.039310317,1.0822277,0.2082574,-0.25389996,0.13838977,0.5608953,-0.003499789,0.055717833,-0.5209642,0.9099525,0.48552886,-0.09064714,-0.038772207,-0.3435752,-0.090039596,0.37085888,-0.213678,-0.049910817,-0.078014016,-0.80773586,-0.29626665,0.22417453,0.32957605,0.08155363,-0.032947604,0.08181038,0.17004661,0.026138488,0.4123574,-0.60540295,-0.1326388,0.44346806,0.25353575,0.016669432,0.05306379,-0.28701356,0.38628736,-0.5592948,0.004975515,-0.1993902,-0.011028002,-0.33637482,-0.28130823,0.27263024,0.13157064,0.40443844,-0.29148695,-0.44697067,-0.2271827,0.49332008,0.18844049,0.19369711,0.52868515,-0.26260373,-0.039134163,0.12701397,0.5174037,1.1296697,-0.28039506,0.14875484,0.40952176,-0.39709014,-0.5171492,0.45398584,-0.19286117,0.1403465,-0.0041977507,-0.34455207,-0.5715831,0.29002288,0.24325036,-0.13826312,0.17563283,-0.69979125,-0.17241669,0.2070686,-0.25944382,-0.25474587,-0.26823077,0.11943468,0.74258167,-0.38577485,-0.31506062,0.23996043,0.30399033,-0.3613754,-0.60860014,-0.18858555,-0.50398654,0.41069052,0.040154338,-0.4389861,-0.09873917,-0.041906733,-0.41692182,-0.02913265,0.055860903,-0.435687,0.07937329,-0.3975907,0.045981746,0.86705583,-0.005041097,0.18524453,-0.6927243,-0.36554185,-0.9686455,-0.34557822,0.521479,0.24814503,-0.032124784,-0.40024135,-0.02849414,-0.092792764,-0.05450511,0.028014554,-0.5222566,0.42598563,0.14208268,0.4236713,-0.124077305,-0.7683272,0.03703916,0.16600393,-0.09858662,-0.5232851,0.44912523,-0.027323186,0.80155194,0.012373729,0.01693448,0.18851617,-0.64590484,0.012321419,-0.26337197,-0.22439767,-0.66417027,0.1901152,540 +469,0.46070936,-0.19075465,-0.44737095,-0.22102329,-0.18991594,0.0015873994,-0.27012843,0.33230135,0.14434595,-0.7463569,-0.11978583,-0.28784242,0.033184264,0.07789111,-0.26427338,-0.38419458,0.0021051702,0.17211446,-0.53770864,0.64787287,-0.3126753,0.30989757,0.14294727,0.3308633,0.18522072,0.26013198,0.1456444,-0.15375005,-0.09070264,-0.20408764,-0.08587804,0.36335394,-0.549972,0.22521842,-0.15873067,-0.29050106,0.040319365,-0.53125876,-0.34221438,-0.83282334,0.29593387,-1.028884,0.5504218,0.07812268,-0.22407582,0.127721,0.3632248,0.23408826,-0.005970027,0.058686316,0.2484924,-0.1196937,-0.023962319,-0.14499965,-0.21789792,-0.5397487,-0.5463773,-0.038980458,-0.39411947,-0.25093266,-0.47541544,0.12598836,-0.35753986,-0.02094558,-0.089322925,0.6651772,-0.44560024,0.11988122,0.17360224,-0.10276849,0.6296363,-0.5097002,-0.13185583,-0.23807715,0.37115532,-0.35246128,-0.22557423,0.18436949,0.37927008,0.3690446,-0.030010585,-0.124936104,-0.11485613,-0.21885109,0.21360905,0.4806467,-0.010342787,-0.50536495,-0.1238636,-0.0009467261,0.1897175,0.3124682,0.1581382,-0.38578114,-0.11204074,-0.05212199,-0.29674855,0.5937808,0.46666268,-0.26449198,-0.19662812,0.2823273,0.4917175,0.15214992,-0.19744785,0.087739035,0.027864996,-0.6073193,-0.15557657,0.11245848,-0.14479665,0.49604106,-0.20252459,0.33299485,0.68594646,-0.17619804,-0.08880835,-0.0093736565,0.032994848,-0.24534146,-0.20114551,-0.26099062,0.23637894,-0.4973693,0.16014624,-0.120479636,0.7733072,0.064822756,-0.6749433,0.2168806,-0.69757175,0.02950255,-0.14289232,0.48617974,0.6131758,0.4116594,0.41195112,0.65505993,-0.4102704,-0.04515322,-0.07796453,-0.46002966,-0.08725158,-0.24615279,-0.0048888326,-0.4896164,-0.033595104,-0.07437853,-0.039319776,-0.10894464,0.45025247,-0.53845483,-0.049883973,0.06712138,0.8421885,-0.3413071,-0.031344812,0.70331234,0.80885315,0.9551035,0.17095795,1.0570896,0.18874943,-0.25331283,0.12165881,-0.13882415,-0.71429247,0.48166603,0.48163393,-0.20279762,0.16102542,0.12713917,0.08562336,0.2823698,-0.48783943,-0.056219798,-0.25558394,0.103275195,0.08536389,-0.16563939,-0.38946792,-0.1830773,0.008649264,0.04586635,0.19290476,0.037681498,-0.17105304,0.39579266,0.15402003,1.4801512,-0.22009026,0.14981076,0.16714922,0.37490946,0.25946468,-0.1153657,-0.112266876,0.38525146,0.3684321,0.33745456,-0.5315021,0.10863508,-0.18471263,-0.36036688,-0.13739152,-0.3786123,-0.029613184,-0.05173077,-0.5152,-0.12678318,-0.193276,-0.38618717,0.33388934,-2.5909514,-0.22558078,-0.22466834,0.38326263,-0.23080046,-0.18550666,-0.12208356,-0.4429172,0.47326994,0.27961856,0.49335125,-0.60449374,0.30533132,0.50919586,-0.43608353,-0.16928218,-0.6028274,-0.1879036,-0.12595643,0.2656,0.019482514,-0.01656809,-0.0012611406,0.21405147,0.45292228,-0.068205245,0.12508318,0.2520345,0.5553151,0.0042225486,0.7276955,-0.07788719,0.41902187,-0.15155695,-0.24290243,0.3018952,-0.24169837,0.12847464,-0.07113643,0.119613506,0.6010265,-0.5178853,-0.7848158,-0.7785476,-0.48739418,1.1482166,-0.2500204,-0.4429132,0.15924338,-0.2920423,-0.4009774,-0.023941722,0.5565399,-0.14512838,0.105771266,-0.8993251,0.029347632,-0.14451313,0.30722946,0.053318582,-0.06975235,-0.51735973,0.68899286,0.027767641,0.55971247,0.31596655,0.11791329,-0.45909443,-0.5209578,0.034780294,1.046466,0.30813095,0.09339379,-0.30463403,-0.13909325,-0.29340306,0.15775199,0.05444341,0.5541713,0.5889679,-0.037268996,0.25652987,0.27391347,0.08989757,0.044307504,-0.17458291,-0.22218286,-0.16260271,-0.16776207,0.57247037,0.466978,-0.10966221,0.44751713,-0.14564261,0.3586259,-0.20291568,-0.42288256,0.5055782,1.2499007,-0.13301584,-0.34105065,0.7684523,0.50043195,-0.24360763,0.36104298,-0.5570567,-0.2734981,0.5126963,-0.26081342,-0.58967274,0.21822047,-0.34257942,0.17902468,-0.9283904,0.32699987,-0.26552996,-0.51311284,-0.5125806,-0.07960071,-3.4321027,0.23914878,-0.12986258,-0.2575005,-0.19010891,-0.20743951,0.24830219,-0.5392637,-0.6366302,0.19423877,-0.032425847,0.83358943,-0.14054379,0.048233297,-0.16697825,-0.32857245,-0.15649213,0.13278653,0.14537606,0.25255585,-0.036396574,-0.43987986,-0.029103573,-0.090749666,-0.49892673,0.017623423,-0.45461348,-0.51091546,-0.076075755,-0.51812255,-0.4448507,0.6432592,-0.23551203,0.087448426,-0.15949766,-0.033112515,-0.036848713,0.3756364,0.047209147,0.32449144,-0.04230138,0.020417849,-0.13356413,-0.24061169,0.32427257,0.0670976,0.015003903,0.21353279,-0.23352115,0.24960926,0.43499878,0.51785964,-0.06579567,1.0368136,0.47894213,0.011037922,0.23129804,-0.22907844,-0.4125362,-0.622796,-0.23474357,0.11774964,-0.42655092,-0.49279505,-0.06569909,-0.22398531,-0.67885256,0.66230166,-0.031651232,0.17035246,-0.08142527,0.31023124,0.3813313,-0.18471913,-0.07762623,0.039807446,-0.21916984,-0.48525223,-0.17777275,-0.5485196,-0.41137686,-0.07601182,0.9336225,-0.19453035,0.11318209,-0.02832058,-0.122351594,0.038227003,0.1325377,0.039903786,0.29213238,0.51638305,-0.07301862,-0.7763921,0.48883197,-0.1660401,-0.18546076,-0.5671962,0.1734333,0.8388263,-0.6847497,0.5102927,0.40660954,-0.0517107,-0.4456469,-0.49965903,-0.22046028,0.0019476755,-0.34959173,0.41901827,0.24845171,-0.81228954,0.40779802,0.32454687,-0.06295215,-0.75970954,0.6901831,0.018238416,-0.34775713,0.14377023,0.4325829,0.032325026,0.07796095,-0.25668186,0.29284135,-0.29974207,0.22098766,0.19563672,-0.0648913,0.21399538,-0.19010046,0.034706473,-0.7697268,-0.037591957,-0.5491894,-0.31475472,0.3490599,0.037778,0.05101455,0.46392304,-0.10232393,0.4018932,-0.22925816,0.06938108,-0.16865978,-0.14809974,0.24919094,0.3920626,0.40035793,-0.39507386,0.65785754,0.10974187,-0.11931438,-0.113751315,0.1717714,0.46299663,0.048796397,0.5087224,-0.09508143,-0.27350232,0.38943225,0.8624183,0.1423827,0.5347348,0.14194383,-0.0536997,0.23528273,0.16231439,0.32791567,-0.07951302,-0.6031208,-0.058053337,-0.3923474,0.07441368,0.47770327,0.048844926,0.23132399,-0.13059933,-0.41816407,0.030966401,0.23898955,0.09413675,-1.2559927,0.35984167,0.2595108,0.744174,0.46782997,-0.0075600552,0.049007952,0.7169825,-0.14282045,0.08070064,0.29073793,0.0925296,-0.40089175,0.52468437,-0.7008137,0.30241945,-0.067515425,-0.08413851,-0.051279243,-0.10106256,0.3594549,0.8611022,-0.16988352,0.13233604,0.015742056,-0.23080035,0.4026546,-0.51407105,-5.264793e-05,-0.45380408,-0.33536768,0.5733825,0.529895,0.3663888,-0.21156211,0.117030226,0.051326316,-0.16708292,0.08588327,0.19162926,0.037591882,-0.092968,-0.70663023,0.008580208,0.5461823,0.21663283,0.16583297,-0.03787783,-0.17531323,0.25538927,-0.07071145,0.11272343,-0.12031497,-0.7572866,-0.18720445,-0.3325358,-0.429499,0.40114993,-0.2503269,0.2566074,0.23443747,0.059800297,-0.1264852,0.3145152,0.23621416,0.60686386,0.16139923,-0.13439113,-0.38251457,0.18234482,0.11878472,-0.23737358,-0.123354636,-0.37256053,0.1547385,-0.6624637,0.36598486,0.027507534,-0.45193774,0.17730989,-0.049674876,-0.03186258,0.62980705,-0.06281131,-0.12860267,0.014846512,-0.19902705,-0.15507376,-0.19779982,-0.04519147,0.24927227,0.13636352,0.043141466,-0.18801682,-0.0145301325,-0.32639986,0.34152898,0.061907716,0.6037415,0.42025205,0.11670057,-0.1502659,-0.011956432,0.10683049,0.5400249,-0.013241397,-0.14530008,-0.1548544,-0.48154134,-0.2594365,0.088286914,0.04838689,0.31253046,0.16336298,-0.18669772,0.8005972,-0.07325376,0.92095226,0.021953242,-0.43839216,0.042591717,0.42367622,-0.043005444,-0.13353518,-0.31555352,0.8194839,0.46151283,-0.041968025,-0.13088836,-0.23536791,0.021256091,0.0048753535,-0.17959738,-0.14092557,-0.02579473,-0.6667247,-0.3353205,0.173241,0.2885186,0.13005841,-0.101235114,0.00016155413,0.30530658,-0.09969431,0.33664083,-0.51418364,-0.09137595,0.23382904,0.3377781,-0.05998562,0.06126448,-0.4232562,0.4944888,-0.4309192,0.11501817,-0.36818442,0.2563955,-0.29411554,-0.19211249,0.25782114,-0.059780873,0.40796188,-0.3078077,-0.28905058,-0.22172871,0.44885603,0.09244267,0.110765405,0.52898103,-0.22205839,0.15159278,0.1038411,0.5700578,1.020898,-0.19524479,0.095352374,0.42639518,-0.40582004,-0.56230813,0.30500504,-0.34849748,0.10249252,0.143185,-0.17693904,-0.26353168,0.18907015,0.18245338,0.1451822,-0.059424873,-0.628188,-0.20748027,0.44355896,-0.24674447,-0.15552095,-0.23067543,0.061669465,0.40281466,-0.21570112,-0.28005642,0.0012918072,0.17029865,-0.23799971,-0.6563713,-0.22415839,-0.34234914,0.36514035,0.108976856,-0.32298613,-0.10941016,-0.016548842,-0.5107885,0.19147067,0.08505658,-0.34292814,-0.024192136,-0.30471244,-0.19129749,0.98382384,-0.2922385,-0.16485927,-0.37348786,-0.46817106,-0.8013772,-0.22793637,0.4981139,0.0883111,0.15304056,-0.39010695,-0.037714157,-0.09818648,-0.06701531,-0.059879035,-0.30787128,0.3680577,0.17418239,0.6000972,-0.10076071,-0.8848596,0.1262537,0.020700326,-0.24095045,-0.62617916,0.6362471,0.008905726,0.64895695,0.034239825,0.12271856,0.33340353,-0.42981243,-0.122130975,-0.11079568,-0.13422522,-0.8026416,-0.023888567,541 +470,0.51568323,-0.2674424,-0.38963905,-0.101524904,-0.118014805,0.09241285,-0.0015864457,0.3375191,0.26705712,-0.2737455,-0.08297624,-0.16346404,0.025960108,0.27623987,-0.17072947,-0.8083639,-0.037483923,0.123640485,-0.3263637,0.42308024,-0.37784904,0.34544924,-0.07603365,0.23208325,-0.09907281,0.32714692,0.25112623,-0.29099995,-0.013130145,0.0019552857,-0.19526227,0.16383699,-0.60430086,0.021226197,-0.0020345193,-0.18841097,0.21000752,-0.35345054,-0.2332803,-0.63018167,0.3379211,-0.7633683,0.39286858,0.14706846,-0.09884382,0.30216202,-0.19223757,0.26311168,-0.31120515,0.05585184,0.047737896,-0.07144358,-0.019898316,-0.18275991,-0.13051543,-0.37274057,-0.48406228,0.028127978,-0.32176128,-0.18899354,-0.16111241,0.041528992,-0.297456,-0.10957297,0.06032764,0.24096592,-0.46627048,0.050600078,0.33421153,-0.17035381,0.25618455,-0.40059265,0.024879022,-0.097407155,0.34315267,-0.25641784,-0.16878045,0.22826442,0.44325835,0.3940112,-0.08145278,-0.1459633,-0.21784171,-0.08635575,0.19549678,0.5300181,-0.12922364,-0.5816822,-0.1234162,-0.021094492,-0.028785374,0.16751547,0.020076016,-0.36501098,-0.12431042,0.1068346,-0.27940556,0.27746886,0.44003874,-0.41382048,-0.31760964,0.3997321,0.6428029,0.13052307,-0.037689645,-0.029313995,0.1738118,-0.49746588,-0.18615505,0.23775665,-0.28774303,0.61603105,-0.18406709,0.2248695,0.6405425,-0.35973138,0.20151745,-0.06325697,0.019265512,-0.20486614,-0.14049332,-0.12867878,0.29231492,-0.47070804,0.14847526,-0.22325647,0.90250885,0.34255102,-0.6830158,0.47097495,-0.50742304,0.17281236,-0.20725104,0.56791145,0.63718647,0.24622223,0.17743602,0.73827946,-0.6321686,0.053674288,-0.107192025,-0.5172413,0.14630751,-0.06409539,-0.1962444,-0.42440027,0.07876384,0.15118659,-0.050079104,0.07618432,0.033282883,-0.5835019,-0.043731757,-0.021716604,0.7989453,-0.3093808,-0.03842282,0.4396043,0.8500537,0.7292576,0.08877695,1.2998568,0.32486406,-0.34841195,0.22457579,-0.3519916,-0.8763793,0.1795298,0.37426096,-0.39093986,0.2971129,0.13367887,-0.08557142,0.32335573,-0.3197483,0.019106904,-0.22156502,0.3497918,0.02358016,-0.035291784,-0.32084513,-0.17242952,-0.076307885,0.026922744,0.20706545,0.27999836,-0.18735263,0.24025975,0.22609894,1.6920542,-0.071257696,0.2063636,-0.010559755,0.4286614,0.23226693,0.04800723,-0.1899121,0.40474734,0.4008099,0.21555343,-0.63175136,0.1119685,-0.1926204,-0.50190645,-0.10098672,-0.1936507,0.014248759,0.13513419,-0.24638236,-0.08533596,-0.06094462,-0.08696639,0.6604367,-2.6592064,-0.16641323,-0.19326143,0.37690592,-0.39631358,-0.352025,-0.11299207,-0.51146954,0.25621584,0.33987805,0.3865704,-0.80152035,0.17609453,0.36738768,-0.4635234,-0.20163603,-0.59029925,-0.11080301,-0.032453798,0.30243784,0.06509818,-0.053298257,-0.016786452,0.11239966,0.30501264,0.063389756,0.012759618,0.18129984,0.41565377,0.27638173,0.32972902,0.018102573,0.49704382,-0.12030617,-0.104883365,0.20953846,-0.24739827,0.48891982,-0.11624866,0.1302023,0.2609017,-0.34398818,-0.81280524,-0.74153507,-0.42519385,1.194133,-0.24803059,-0.36525688,0.14178917,-0.037176576,-0.16534296,-0.2191684,0.4205308,-0.12684244,-0.1628094,-0.8014436,0.18176362,-0.083103135,0.26161534,0.13746315,-0.0445191,-0.28872514,0.6424042,-0.110802375,0.3666079,0.333951,0.1482207,-0.008987563,-0.521475,0.02005182,0.89384973,0.2576986,0.17516662,-0.14440596,-0.11220901,-0.34875712,-0.042619742,0.052152928,0.3734817,0.8119596,-0.03505372,-0.116010725,0.37763402,0.08409149,0.06701321,-0.09803694,-0.28451782,-0.060512338,-0.25343746,0.5021587,0.6002387,-0.39597878,0.31111187,-0.013894683,0.17654128,-0.14254029,-0.33667582,0.73203224,0.9799171,-0.18605646,-0.0727613,0.46163034,0.33769602,-0.46944332,0.3086372,-0.6998784,-0.1158335,0.51621383,-0.15858619,-0.36660808,0.14742303,-0.31714985,0.12855771,-0.8131651,0.3502226,-0.12932628,-0.07904802,-0.48664555,-0.034486473,-3.7010481,0.2715206,-0.24371007,-0.09232955,-0.15242028,0.05819788,0.221579,-0.61762667,-0.47184733,0.35467482,0.01612806,0.5346699,-0.0066451197,0.2489827,-0.31851768,-0.2141908,-0.40200514,0.0036273429,0.10491353,0.21934983,0.021905115,-0.3974072,0.050924875,-0.17835389,-0.2724535,0.23861173,-0.39717227,-0.467886,-0.14252672,-0.44430476,-0.30482382,0.7032653,-0.43998143,0.07164502,-0.23068886,0.016489347,-0.26080674,0.30255753,0.050719433,0.026786625,-0.118037425,0.07243546,-0.07991849,-0.3314788,0.4326641,0.056959014,0.20131257,0.24404632,-0.14411448,0.015735183,0.51915485,0.65104806,0.051762037,0.69516885,0.41931105,-0.11386383,0.29918113,-0.2901279,-0.10846947,-0.4321501,-0.38544145,-0.07728305,-0.38666183,-0.48847595,-0.16924174,-0.33379784,-0.6286513,0.42240328,0.003920172,0.14514913,-0.012142627,0.2686855,0.51996005,-0.24208105,0.12752098,0.0762856,-0.14990725,-0.6135988,-0.22372939,-0.5512685,-0.21391544,0.45054218,0.78341764,-0.3475761,-0.16298553,-0.023787903,-0.19290686,-0.025038991,0.041400485,-0.028866012,0.18202294,0.30495828,-0.19010016,-0.6151823,0.57872295,-0.08580029,-0.25188664,-0.71354496,0.038617726,0.53370416,-0.7708327,0.5005287,0.34782505,-0.027748445,0.20353971,-0.38525528,-0.3109341,0.060038473,-0.3127444,0.2088971,0.12849902,-0.60102886,0.29951388,0.3976782,-0.18725345,-0.61479825,0.5509848,0.016378125,-0.29953668,-0.004340949,0.35286894,0.24385493,0.048936166,-0.12447716,0.13810113,-0.46850938,0.10767969,0.35567078,-0.07285981,0.4382711,-0.078805745,-0.026943717,-0.7994413,0.018669413,-0.53986603,-0.1611854,0.21651459,0.1029992,0.093509056,0.04971854,0.23252876,0.42285585,-0.40428463,0.050992332,0.16221943,-0.13110706,0.30802208,0.33213946,0.34726575,-0.37157372,0.54092276,-0.024847584,-0.0073313927,0.041767474,0.1047293,0.47571626,0.25944316,0.25859728,0.15692422,-0.26077744,0.29837936,0.8006088,0.13420317,0.3916826,0.011306771,-0.07290652,0.33117953,0.24504313,0.077145256,0.26988357,-0.4665483,-0.12235492,0.08251437,0.13963965,0.5123952,0.25474268,0.34951606,-0.13411827,-0.28517863,0.002750069,0.16145894,0.006222908,-1.0207411,0.23619436,0.24176274,0.6579806,0.39658743,-0.07405118,0.076133505,0.34279054,-0.1796962,0.24294178,0.35092688,-0.112593494,-0.56090504,0.49031025,-0.62273943,0.34151396,-0.0851091,0.046266735,0.042259395,-0.074723735,0.17715219,0.84932816,-0.08842609,0.00010552151,-0.16965567,-0.27998644,0.10395197,-0.39735144,0.0630849,-0.59245354,-0.2560026,0.5573951,0.49281248,0.37788078,-0.17245825,0.037470575,0.009386854,-0.0892421,0.12056724,-0.102498576,0.1835911,0.10572393,-0.68002087,-0.2993164,0.59812194,-0.120242305,-0.013643137,-0.21440932,-0.17688973,0.27815557,-0.23814689,-0.10281285,-0.074621566,-0.68858296,0.031551667,-0.11405829,-0.47413325,0.46332914,0.04592875,0.20785515,0.18873072,0.071696766,-0.37055284,0.37825212,0.17287104,0.77964294,-0.08781387,-0.22510158,-0.69447106,0.23086669,0.24997686,-0.14267494,-0.041450433,-0.25856024,-0.005453604,-0.4693105,0.44591472,0.057123307,-0.11349409,-0.011207036,-0.2936439,-0.007698402,0.60271806,-0.2854319,-0.20757703,0.01658082,-0.22297192,-0.27598125,-0.1430695,-0.23373199,0.21235396,0.3475078,-0.03993268,-0.06558777,-0.22618021,-0.24935268,0.3288305,0.18366113,0.18198964,0.41333872,0.09575007,-0.24750592,-0.3630043,0.110984154,0.31750014,-0.18949951,-0.21194272,-0.3752547,-0.6614006,-0.3103731,0.030865695,-0.11034404,0.34770563,0.04483521,-0.24926038,0.5575182,0.028272403,1.0636145,0.12908855,-0.23559897,-0.045020778,0.5529898,0.04417502,-0.03417152,-0.42622146,0.93286073,0.5025278,-0.17228699,-0.2073694,-0.2536076,-0.17332435,0.14184023,-0.19783816,0.12674752,0.065393366,-0.73519856,-0.36195877,0.24483828,0.21561602,0.12208898,0.09055551,-0.022238161,0.084375344,0.14296699,0.41702494,-0.50471354,-0.2601127,0.23639403,0.21501262,0.18360053,0.27692667,-0.21517162,0.48314548,-0.39589623,0.016479015,-0.36160707,0.18575104,-0.19339553,-0.24250937,0.17590424,0.06764383,0.42579156,-0.34475204,-0.5468681,-0.25077948,0.4550435,0.20175031,0.15460436,0.5382799,-0.1932037,0.0038465688,0.017492592,0.55945134,0.99932915,-0.11580886,-0.011035462,0.5048159,-0.38570762,-0.59346473,0.19941917,-0.29468325,0.19841042,-0.071028754,-0.13144697,-0.62589127,0.30731383,0.20118788,0.078037724,0.11782757,-0.68679196,-0.31394482,0.24682817,-0.4455438,-0.22697568,-0.2879303,0.3381768,0.84521854,-0.39286375,-0.2783049,0.09340318,0.2070028,-0.15639997,-0.5169321,-0.21719684,-0.39916542,0.33674297,0.21219052,-0.2975793,-0.14427991,0.103346534,-0.37039572,0.21010546,0.14517106,-0.36284113,0.14304115,-0.22732762,0.05508756,0.8669445,-0.15553491,0.03718389,-0.6558679,-0.3662848,-0.823505,-0.4225656,0.5319678,0.14217289,0.08809978,-0.460499,0.09649592,0.009423473,0.039121162,-0.12505394,-0.38292128,0.49980202,0.14076522,0.34827238,0.025522564,-0.8249292,-0.11643256,0.03393365,-0.21643913,-0.6013864,0.51613563,-0.119953506,0.80022043,0.057217818,-0.011767368,0.37033367,-0.4341159,-0.107401155,-0.36626515,-0.21539056,-0.7660518,0.15987955,547 +471,0.30875817,-0.31982443,-0.50262606,-0.17107148,-0.17111687,0.10202718,-0.124803536,0.42721042,0.13809742,-0.4927179,-0.073740244,-0.18806301,0.022218456,0.1367421,-0.13128221,-0.4299131,-0.12094506,0.14543805,-0.5777926,0.50783765,-0.3187925,0.09323556,-0.10867474,0.310299,0.16631658,0.34396204,-0.11494126,-0.11403109,-0.1019107,-0.033471633,0.030735109,0.3512536,-0.6509897,0.22670303,-0.05535348,-0.18411948,0.051076118,-0.49780035,-0.50481135,-0.7258393,0.39580607,-0.9013811,0.5358705,0.13133694,-0.16118181,0.3215247,0.12038396,0.34842965,-0.27611533,-0.10547737,0.29409933,-0.18236296,-0.07000028,-0.25601903,0.11486639,-0.31474692,-0.49054766,-0.011470703,-0.39895663,-0.3827731,-0.3221427,0.14955345,-0.35412127,-0.1848785,-0.13127455,0.7992834,-0.460887,0.159571,0.20590737,-0.20858887,0.4144197,-0.64718246,-0.13120957,-0.052373935,0.40471736,-0.26403934,-0.2652451,0.31052324,0.30649948,0.27271408,-0.018448949,-0.18930969,-0.23964259,0.01576577,0.29828882,0.39731073,-0.16970359,-0.5059225,-0.010186568,0.06377875,-0.17109013,0.12483476,0.12303661,-0.42609975,-0.1217907,0.17669296,-0.14699593,0.42773703,0.5475913,-0.14682774,-0.21793151,0.35167545,0.581304,0.1854759,-0.010212285,0.022837268,0.062797114,-0.47010064,-0.23974656,0.0807277,-0.22214173,0.4796255,-0.2013717,0.17859736,0.71812165,-0.17283395,-0.09690865,0.11784321,0.07754888,0.038948417,-0.32842,-0.2776852,0.2737865,-0.44526443,0.177844,-0.11226697,0.59862053,0.20910628,-0.6817195,0.25257373,-0.4989302,0.19570984,-0.06064058,0.49109176,0.6905862,0.5766963,0.41413808,0.65862805,-0.5425482,0.12353051,-0.0123291975,-0.40107885,0.115219064,-0.28336987,-0.03785305,-0.5952496,-0.038752895,-0.14690728,-0.044051316,-0.05129098,0.12712203,-0.52802217,0.02921938,0.1159702,0.897282,-0.2659799,0.010161653,0.6864279,0.88925844,0.9010662,0.08997548,1.0132214,0.16463096,-0.34231743,0.39226553,-0.1619672,-0.7658666,0.32141414,0.36647388,0.2576507,0.10405155,0.14340773,0.064476855,0.5535034,-0.5633596,0.10897901,-0.21343371,0.26578426,0.23228168,-0.21660236,-0.34665203,-0.13128941,-0.1450247,-0.0268487,-0.15009773,0.14650556,-0.16345404,0.3502153,0.14303407,1.7337452,-0.022526069,0.084525295,0.027411535,0.4636797,0.1089476,-0.12052013,-0.070883475,0.5251408,0.30827922,0.307756,-0.6565892,0.14287034,-0.093242414,-0.47936395,-0.13047884,-0.3817045,-0.04653847,-0.071592584,-0.4706857,-0.25553444,-0.18941642,-0.2027893,0.41366524,-2.8154237,-0.06752796,-0.061074786,0.4484914,-0.24672388,-0.35248327,0.0820275,-0.43045053,0.3145654,0.3002201,0.46254316,-0.65518224,0.34791797,0.3692817,-0.6803737,-0.04837806,-0.5551178,-0.11405944,-0.11242322,0.37340617,0.019925723,0.027968619,0.10921068,0.03606754,0.46598586,-0.17471208,0.15845494,0.33176002,0.4208955,-0.009276067,0.6682091,-0.06290591,0.4640757,-0.2909508,-0.19878875,0.23894587,-0.363547,0.13467352,-0.04323066,0.03264668,0.44246894,-0.49009943,-0.8724774,-0.7880369,-0.17864569,1.0812868,-0.28812045,-0.43331861,0.34542444,-0.6303504,-0.16561112,-0.1581011,0.46681514,-0.0012639835,0.032659505,-0.80877155,0.10694974,-0.12197248,0.11944078,0.052141182,-0.13975775,-0.49696127,0.76735383,-0.031755794,0.5381169,0.33309892,0.04960799,-0.39781502,-0.50659955,0.0736627,0.7677153,0.32917714,0.18677017,-0.13407384,-0.19357629,-0.16306125,-0.12393583,0.07674115,0.66376895,0.6220914,-0.04319539,0.19072689,0.27624688,-0.118283086,0.07338763,-0.23523216,-0.35176426,-0.15046866,0.039805464,0.5455079,0.5667876,-0.19129166,0.39987674,-0.060315665,0.23560587,-0.029085146,-0.38710123,0.4794212,1.1287817,-0.106387995,-0.306014,0.4633972,0.461263,-0.32407537,0.32923433,-0.522147,-0.1725374,0.56308764,-0.31667447,-0.581205,0.14823686,-0.28410387,0.12414096,-0.78759444,0.29647207,-0.34731865,-0.5859322,-0.5579714,-0.053389568,-3.5300632,0.11258374,-0.348662,-0.15659143,-0.12836877,-0.09956469,0.112104245,-0.5315159,-0.45324877,0.26049253,0.03693018,0.6601804,-0.122835256,0.11533991,-0.21687038,-0.1879782,-0.17890398,0.16529377,0.15395106,0.2197221,-0.038766127,-0.44471693,-0.056580134,0.0028939843,-0.37684456,0.105158195,-0.5436153,-0.3666672,-0.16365735,-0.5714266,-0.38592204,0.58426434,-0.19527078,0.019183097,-0.0055399365,0.026711373,-0.19266526,0.2870099,0.12733756,0.30422166,-0.022236211,-0.036960874,-0.06844868,-0.25930825,0.2912329,0.023769064,0.2775992,0.20492856,-0.10956427,0.23734276,0.4817584,0.6972732,-0.11626311,0.9674097,0.5630831,-0.15436438,0.39878646,-0.30301914,-0.3596177,-0.55136067,-0.33664903,0.07169919,-0.3881862,-0.46108887,0.115326636,-0.44244787,-0.6656469,0.5343963,0.10273309,0.13225333,0.13797602,0.25307363,0.54089683,-0.2066226,-0.07784552,-0.071442835,-0.19318111,-0.6474268,-0.17942905,-0.5913452,-0.52459127,0.07529771,0.80212206,-0.1911455,-0.004086117,0.045822535,-0.2934049,0.015015007,0.29374558,-0.12656489,0.33731747,0.503986,-0.09475587,-0.6798615,0.536729,-0.07793922,-0.2537482,-0.6133485,0.39776424,0.51071817,-0.68529713,0.82661295,0.2764551,-0.012355427,-0.26406333,-0.3541581,-0.31732932,-0.08908571,-0.35036105,0.4443082,0.2055114,-0.8924207,0.3881398,0.4781282,-0.3199942,-0.81310517,0.6116831,-0.118541665,-0.21760656,0.1294611,0.31061798,0.1382185,0.0069505787,-0.17096595,0.22885774,-0.46488646,0.26008913,0.14392321,-0.09734026,0.17239991,-0.15905987,-0.12046533,-0.8005754,-0.058980707,-0.5243898,-0.27528265,0.3807213,0.05166643,0.15990745,0.2307113,0.13412751,0.44460696,-0.108118095,-0.0018767224,-0.05498302,-0.369564,0.24733648,0.43650237,0.37137318,-0.45767114,0.54551905,-0.017698612,-0.03959608,-0.080656305,0.17438519,0.39296103,0.18262546,0.54598796,-0.0046650767,-0.20504034,0.28373274,1.0322254,0.22520924,0.63812774,0.027961688,-0.017573697,0.28561908,0.097398415,0.23695843,0.020411888,-0.708809,0.30208698,-0.20489593,0.16997002,0.4762937,0.10377072,0.30952767,-0.18763556,-0.35365137,-0.03251515,0.42985812,0.1298609,-1.1744442,0.45474234,0.2373346,0.9701737,0.5387354,0.048491944,-0.032310586,0.74501044,-0.1554576,0.028270055,0.3183048,-0.15455164,-0.5528809,0.5067707,-0.8671566,0.39166594,0.029493583,-0.028431445,0.039650016,0.045507066,0.343088,0.6105023,-0.15314369,-0.05052952,-0.026339035,-0.37547782,0.3410129,-0.48208794,-0.0045297616,-0.43943042,-0.3060777,0.52923524,0.68156713,0.33313683,-0.13844767,0.024127241,0.053008746,-0.18632977,0.2831497,0.098324895,-0.03562986,0.06651957,-0.764349,-0.1594021,0.54421586,-0.07395883,0.19777285,-0.036932748,-0.19737853,0.39057806,-0.22753558,-0.08805324,-0.1012771,-0.662844,0.21808188,-0.39013702,-0.49272153,0.6174328,-0.019394372,0.23084164,0.30392203,0.05536103,-0.32143563,0.48292357,-0.11285017,0.81123346,0.012033678,-0.142527,-0.55641454,0.022897022,0.13402386,-0.14111789,0.04239967,-0.4099335,0.035110217,-0.5320586,0.51778823,0.04688664,-0.31422907,0.13085511,-0.18498622,0.03199542,0.6736613,-0.2351558,-0.12802288,-0.007850911,-0.23157826,-0.22394302,-0.36675328,-0.14983419,0.27569455,0.078061104,0.25259873,-0.18470736,-0.09741773,-0.13553298,0.57085127,0.036830287,0.518928,0.2883673,-0.018728767,-0.29200095,-0.2298274,0.24389179,0.47693262,-0.059201233,-0.11315244,-0.19886371,-0.45242754,-0.33554557,-0.0860163,0.031050546,0.4981421,-0.04714032,-0.1745491,0.7316157,-0.21714924,1.1851661,0.057695184,-0.4025865,0.20354983,0.45014757,0.0041064,-0.0063948375,-0.39834663,0.71514654,0.4856205,0.075232625,-0.0150696505,-0.35348624,-0.04292364,0.15169954,-0.15113628,-0.064939044,-0.0009967664,-0.6584118,-0.25222608,0.18215795,0.23774667,0.29725805,-0.067215964,0.010666992,0.14587508,-0.06685887,0.15416436,-0.4748513,-0.25027683,0.26238075,0.23398706,0.0017994003,-0.03057514,-0.48122096,0.51100415,-0.39953837,0.11126824,-0.22947593,0.17223103,-0.28905937,-0.2078058,0.21353947,-0.062809125,0.36635903,-0.21600378,-0.29012758,-0.12382008,0.5279769,0.18487048,0.13960455,0.56075555,-0.20080653,0.056047954,0.08618599,0.5584715,0.69037247,-0.31822035,-0.09563104,0.34311262,-0.52909696,-0.6115409,0.4806995,-0.25164863,0.13120583,0.14493802,-0.08286856,-0.4056389,0.14373194,0.26632398,-0.02613618,-0.08209114,-0.8047238,-0.27377447,0.3282223,-0.48243567,-0.19133233,-0.17702611,0.23987661,0.68307745,-0.33707312,-0.23045108,0.092034176,0.19178514,-0.19071224,-0.3427262,-0.02572762,-0.45403472,0.33038434,-0.13896063,-0.3961375,-0.17198041,0.11057686,-0.46025616,0.20733579,0.030352166,-0.35105258,-0.008709957,-0.23934126,-0.10270449,0.9222396,-0.20231405,0.14764452,-0.49186987,-0.41866454,-0.8745972,-0.16231643,0.4633163,0.027254691,0.13410607,-0.6244697,-0.019556986,0.0058480203,-0.15331466,-0.17620002,-0.5004891,0.4629589,-0.017745646,0.3985291,-0.092951454,-0.7546377,0.28901234,0.22900318,-0.14546137,-0.6430756,0.5599118,-0.14215484,0.8540684,-0.05051748,0.14258854,0.21462353,-0.4071266,-0.11241384,-0.22760336,-0.2808972,-0.6996389,-0.09388385,548 +472,0.373612,-0.15696748,-0.3170803,-0.0904883,-0.18496956,0.11349816,-0.15783235,0.2843292,0.18354747,-0.5697309,-0.15715663,-0.21571036,0.08382939,0.07455737,-0.21695317,-0.39157706,0.068053834,0.14912601,-0.5601665,0.5342973,-0.41007942,0.2929494,0.17837922,0.27829248,0.2681772,0.13966395,0.13149966,-0.18083988,-0.26543874,-0.19839826,-0.14436814,0.19725612,-0.6725235,0.23682284,-0.2553285,-0.47400883,-0.09367097,-0.2529672,-0.4087213,-0.73272836,0.25560635,-0.98990923,0.45676008,-0.0014438672,-0.16991211,0.30628103,0.022465173,0.18279971,-0.3384262,0.048345156,0.29704785,-0.28658465,-0.123946846,-0.13294782,-0.1909902,-0.43713814,-0.50221103,0.07501849,-0.38782692,-0.14039521,-0.53588057,0.17999408,-0.24728398,-0.11842406,-0.11850227,0.42961496,-0.5490819,0.119214095,-0.13916375,-0.055117916,0.24056947,-0.59320456,-0.25150973,-0.11643864,0.27717948,-0.32340476,-0.18655273,0.2654956,0.2883094,0.43423897,-0.0010341427,-0.106798396,-0.40015134,0.05166081,0.19303103,0.42410618,0.03822956,-0.53006566,-0.23173311,-0.17212038,0.15206112,0.016897324,0.22388425,-0.20701455,-0.1677446,0.10453491,-0.40497616,0.43235794,0.6036582,-0.40282068,-0.15896344,0.44530222,0.38633165,0.14806427,-0.14737962,-0.0019289723,-0.024597036,-0.43279308,-0.14480735,0.21098247,-0.31266123,0.7575265,-0.23003353,0.34812334,0.64174926,-0.25203326,0.023101857,0.21902661,0.12901907,-0.20124647,-0.051880676,-0.26490003,0.2547262,-0.55279607,0.09978207,-0.3163603,0.8082611,0.17434128,-0.5783189,0.3665092,-0.3753849,0.0814751,-0.13532422,0.5229668,0.56152165,0.4984868,0.38249436,0.7288146,-0.5668109,-0.11252538,-0.12961534,-0.37756422,-0.059115477,-0.2377212,0.00432212,-0.36333913,-0.07357514,0.0007525938,0.012515025,-0.058528494,0.4923134,-0.35851958,-0.11399924,0.14570141,0.76644486,-0.28971997,-0.15139662,0.8999683,1.1115106,0.99030447,0.12115395,1.0616821,0.27431244,-0.36019227,-0.015512343,-0.17297284,-0.70989865,0.2625859,0.30943248,0.34488073,-0.017632058,0.24479055,0.019692926,0.21332386,-0.55218786,0.058584716,-0.25217813,0.09128384,0.078138895,-0.0031336653,-0.31299302,-0.2954762,-0.04989153,0.014163665,0.08336009,0.19039711,-0.19226725,0.4839111,0.12252658,1.4513662,-0.002254801,-0.0044464385,-0.062164493,0.6818995,0.12900816,-0.023545295,-0.0018000092,0.25494406,0.3447041,0.0694732,-0.61914885,0.006526883,-0.23029445,-0.61592954,-0.12014258,-0.31995264,-0.16791104,-0.047557943,-0.48624343,-0.1790153,0.062318377,-0.46105045,0.41301367,-2.732553,-0.18511936,-0.050472137,0.46153095,-0.19581853,-0.17984973,-0.094511986,-0.6261372,0.5467256,0.27593315,0.54287964,-0.8007635,0.50744355,0.521713,-0.3989964,-0.2431878,-0.6534068,-0.14410914,-0.089862175,0.3668202,0.07567023,-0.06765306,-0.012747415,-0.07557608,0.546966,-0.074287675,0.22810163,0.2849525,0.372758,0.009346387,0.42228362,0.07436206,0.545982,-0.37809148,-0.043427013,0.25866884,-0.34458998,0.298721,-0.13592957,0.13491002,0.58566093,-0.5200429,-0.8048037,-0.71615946,-0.2285182,1.1509696,-0.17521127,-0.5220645,0.23213765,-0.2523559,-0.1524239,-0.102233686,0.56409866,-0.04817944,0.025723588,-0.7422199,-0.012371684,-0.08513856,0.22418484,-0.0026758898,0.05088187,-0.38657755,0.71169406,-0.103224926,0.49249235,0.28019515,0.23227689,-0.3834471,-0.42450452,0.14839526,0.9863777,0.32150474,0.14569625,-0.3860896,-0.17472482,-0.32789594,-0.07064224,0.07719517,0.48537084,0.43619004,-0.06324481,0.14854643,0.3370152,0.025101883,-0.10527567,-0.23264866,-0.24734856,-0.20490994,0.06015351,0.5464935,0.8085608,-0.0821897,0.4643596,-0.22702594,0.15251252,-0.1744548,-0.4281884,0.6764656,0.87157726,-0.12699974,-0.22458129,0.493431,0.46031985,-0.18938006,0.40708822,-0.49859935,-0.55700266,0.35249615,-0.078177966,-0.3371542,0.1386734,-0.3405724,0.112070814,-0.75954646,0.4281402,-0.0824244,-0.55143857,-0.608069,-0.088622935,-3.1533296,-0.01815113,-0.21871074,-0.1703775,-0.12691233,-0.37119743,0.15880813,-0.49800715,-0.39669088,0.1451718,0.062925115,0.7194649,-0.008815714,0.20957875,-0.24775639,-0.1228144,-0.26063222,0.14780758,0.16774797,0.30679837,-0.057570573,-0.56149954,0.010830079,-0.2151845,-0.2758573,-0.018345568,-0.6247214,-0.4287381,-0.093886696,-0.3975597,-0.40612063,0.5539629,-0.40844655,0.087515526,-0.21651646,-0.0710191,-0.1371996,0.36615035,0.16801631,0.0787768,-0.0890638,-0.111527316,0.012618328,-0.19964603,0.27088255,0.06776782,0.16941762,0.45329693,-0.09234699,0.118248776,0.4709156,0.5300003,-0.16900818,0.98240554,0.39970812,-0.15435591,0.285034,-0.14219852,-0.34460473,-0.7334982,-0.2627497,-0.08464517,-0.5263278,-0.40995908,0.20681964,-0.28147012,-0.93840504,0.50940293,0.08260317,0.23889562,0.09197492,0.20115693,0.48419133,-0.10411431,-0.076743975,-0.04241357,-0.04386402,-0.5428976,-0.49407142,-0.80859333,-0.45593277,-0.0638616,0.7609424,-0.054751523,-0.030915763,0.23768936,-0.22868745,0.020081053,0.1618212,0.044229306,0.050134268,0.4734619,-0.02296452,-0.6268893,0.67229927,-0.04189088,0.021175636,-0.47063917,0.27586663,0.6320664,-0.5884005,0.44388628,0.4163138,-0.041678745,-0.23400353,-0.32847616,-0.338188,-0.32600382,-0.13742912,0.4063305,0.10086276,-0.87155396,0.4198293,0.29382414,-0.15273425,-0.7266796,0.5608124,-0.04840573,-0.18303442,0.0064231455,0.30484205,0.16212232,0.06561445,-0.2938495,0.19098808,-0.48884815,0.2698251,0.19287507,-0.10287432,0.39532492,-0.29936978,-0.19022469,-0.6614691,-0.11380378,-0.42824095,-0.26655918,0.11442985,0.07829748,0.0074838675,0.37652677,0.17950146,0.27017388,-0.23866619,0.046746723,-0.0518211,-0.16691686,0.22865392,0.44116837,0.5867817,-0.50090265,0.5820032,0.016921353,-0.09757684,0.05106926,0.10488166,0.29155353,0.15637712,0.35808793,0.16424093,-0.25648886,0.34106705,0.95097774,0.3434692,0.5605046,0.20386209,-0.23894612,0.35079196,0.23791073,0.38538522,-0.12671399,-0.5814581,0.13668767,-0.31690794,0.13910504,0.21765241,0.104948215,0.3581548,-0.13214214,-0.08819564,-0.0871946,0.119138,-0.00031550654,-1.1694683,0.3605226,0.29591116,0.85066235,0.47645047,-0.21383753,0.08025748,0.82819515,-0.26704788,0.053028133,0.24430075,-0.027178848,-0.44149575,0.5870289,-0.694727,0.37924168,-0.064477906,0.027847806,0.03983238,0.05100585,0.30487496,0.6908798,-0.17197241,0.1098609,-0.008395295,-0.38878128,0.26407185,-0.41789284,0.26409587,-0.44023815,-0.21016707,0.88008416,0.46570295,0.3118975,-0.14711511,0.050013006,-0.09780569,-0.15369332,0.1941798,0.19906215,0.04849455,-0.112680726,-0.706277,-0.13362302,0.64022416,-0.14187463,0.2897747,0.11352159,-0.16985764,0.307919,-0.14296737,-0.1081457,-0.023088412,-0.6660181,-0.11381871,-0.30566654,-0.35911447,0.43008894,-0.010671428,0.33450732,0.25458905,-0.046231534,-0.26477933,0.40045664,0.18934962,0.51358926,0.14193867,-0.10067427,-0.38685116,0.019970225,0.24252415,-0.14694974,-0.04004645,-0.17851043,-0.0022930077,-0.56092393,0.4361327,-0.120782964,-0.18816961,0.08444296,-0.09994141,0.04815065,0.6154005,0.06886897,-0.102518626,0.1939143,-0.056423817,-0.32581654,-0.026864976,-0.18808149,0.33216485,0.26473904,-0.03770004,-0.051964052,-0.08741622,-0.04111328,0.34728995,0.016361307,0.3727109,0.20457721,-0.041103788,-0.37160328,-0.14122348,0.08522662,0.6109025,0.0029628107,-0.11263294,-0.15672477,-0.4096958,-0.37428504,0.07186214,-0.0556033,0.22014438,0.07394062,-0.2293351,0.742106,-0.08507783,1.1020051,0.1926897,-0.41845956,0.08455549,0.4313352,-0.10579884,0.0052770204,-0.302558,0.8921055,0.5574556,-0.04276315,-0.1375799,-0.4194635,-0.07415937,0.22497301,-0.13888262,-0.32226604,0.0101398,-0.7026028,-0.09281666,0.15668309,0.2720235,0.14345495,-0.021554861,0.06778825,0.3514946,0.08728435,0.24896465,-0.70265144,-0.21206822,0.44193038,0.16869542,-0.043848403,0.039153855,-0.3630934,0.41528144,-0.4557565,-0.07537242,-0.2149308,0.118150644,-0.30276838,-0.2584973,0.35282612,0.14220951,0.42762497,-0.2515029,-0.42640772,-0.42535517,0.4702044,0.12668814,0.30557364,0.4257737,-0.17230892,0.00027060084,0.042998914,0.38670912,0.963363,-0.30890867,-0.03005906,0.43301463,-0.38049722,-0.5361683,0.40715072,-0.3843721,0.216393,0.16028638,-0.24099183,-0.60331887,0.25401956,0.12881534,0.07626857,0.25024804,-0.7260095,-0.16615672,0.24430661,-0.23633362,-0.22373827,-0.2166054,0.03792223,0.4515271,-0.3679221,-0.22097911,0.12920745,0.3022154,-0.24204366,-0.48496243,-0.011191877,-0.44542146,0.30614302,0.06295176,-0.38021252,-0.032685626,0.10340949,-0.4093004,-0.0016975339,0.18337071,-0.41651514,0.10102989,-0.36089805,0.073983945,0.91309994,-0.14316988,0.3048326,-0.5719401,-0.4259042,-0.79084617,-0.3376744,0.45391634,0.22692636,-0.094684295,-0.5846842,-0.1344947,-0.060804844,-0.16408746,-0.06660021,-0.6396517,0.61283904,0.11958458,0.3059251,0.035304457,-0.7608523,0.044541616,0.11810743,-0.22898205,-0.50412244,0.49240702,-0.12017404,0.8396665,-0.0045772535,0.14631271,0.3113521,-0.51202095,-0.017707156,-0.20522703,-0.14963292,-0.5341045,0.007077462,552 +473,0.3899457,-0.21048424,-0.6091427,-0.15539016,-0.4561545,0.3109129,-0.11440333,0.27694717,0.34508634,-0.39242926,-0.036429934,-0.056504246,-0.068478845,0.6232346,-0.06629886,-0.57970804,-0.19245955,0.1541456,-0.73891383,0.36507508,-0.49247247,0.38687292,-0.07218344,0.3485361,0.079925016,0.36295295,0.123414524,0.11423409,-0.31401703,0.039478276,-0.17960595,0.16323192,-0.47002625,0.2748696,-0.061341736,-0.40637088,-0.12267285,-0.5014663,-0.07986273,-0.6216853,0.4222323,-0.7329559,0.63923156,-0.32900435,-0.18754964,0.18690751,0.08441241,0.19136998,-0.1687617,-0.044308756,0.18078461,-0.24788864,-0.19751784,-0.09479304,-0.46033153,-0.4821389,-0.6965439,0.040168535,-0.6373823,-0.025243798,-0.09248232,0.26428607,-0.27716595,0.11923026,-0.28073674,0.34507555,-0.42680666,0.0037160218,0.13500142,-0.1530726,-0.23112212,-0.423791,-0.15495683,-0.13027795,0.27369982,-0.19978918,-0.16743045,0.2867817,0.3087086,0.45740137,0.089741334,-0.28582612,-0.374999,0.04988103,0.015513254,0.6173108,0.036292683,-0.14020377,-0.22530653,0.03144015,0.3428248,0.22242782,0.03510184,-0.30017248,-0.013350929,-0.036322188,-0.26553184,0.37036484,0.3297666,-0.4270337,-0.4052553,0.4728959,0.461336,0.065031655,-0.13553278,-0.019050121,-0.0061993515,-0.534759,-0.2460278,0.22993481,-0.01721237,0.41863087,-0.18445136,0.35500357,0.7093791,-0.20024021,-0.094766006,-0.06489722,-0.022289816,-0.109717,-0.29501772,-0.038510475,0.09167868,-0.41316468,-0.006586262,-0.24789023,0.5640188,0.16637984,-0.755628,0.41056857,-0.5622849,-0.011875557,-0.137633,0.485991,0.8414103,0.47503424,0.19168445,0.77204144,-0.32602087,0.1546825,-0.042738695,-0.42714366,0.09716009,-0.055412523,0.16258648,-0.5924028,0.085611425,0.096881784,-0.20824751,0.107508436,0.56894505,-0.41005343,-0.06604463,-0.011219705,0.6004372,-0.39396754,-0.30654016,1.0542166,0.89463574,1.0560353,-0.016499931,1.3083967,0.37643304,-0.15372075,0.15859413,-0.44053173,-0.49043226,0.20428024,0.32992807,-0.1978142,0.57192165,0.15474014,0.084487,0.49112058,-0.0013336454,-0.05566007,0.13429976,0.18673138,0.044162326,0.009846619,-0.48618677,-0.434976,0.17304751,0.10468959,0.15044677,0.38079602,-0.400205,0.6084083,0.1734009,1.6599513,0.11888326,0.09920042,-0.028558541,0.4207917,0.19501437,-0.18499042,-0.17194705,0.18857983,0.30335236,-0.09068041,-0.5189944,-0.02535567,-0.34617335,-0.4358199,-0.1416797,-0.4024296,-0.15840384,-0.30557504,-0.431475,-0.16177127,0.095688656,-0.4431503,0.46755362,-2.4606793,-0.33569452,-0.123285115,0.2600244,-0.14132771,-0.58682007,-0.27771848,-0.58047926,0.054277964,0.22843206,0.29708675,-0.67382324,0.61016846,0.31793782,-0.5286078,-0.27479216,-0.7021337,0.0038506442,-0.0056122965,0.20756146,-0.109311596,0.033627205,-0.2652282,0.19708057,0.5196097,-0.12322215,-0.107935704,0.34516788,0.6271052,0.10436276,0.5090982,0.08909263,0.7595862,-0.25891915,-0.27288404,0.29928097,-0.2623379,0.42749125,0.05897687,0.22312368,0.52293104,-0.5185021,-0.92440605,-0.6494362,-0.30561453,1.028013,-0.24039073,-0.17058566,0.26416874,-0.36019257,-0.5012816,-0.0677441,0.45997477,-0.059981447,-0.269237,-0.6543728,0.07276868,-0.049748957,0.24882625,-0.16943322,0.17152117,-0.31233644,0.49586508,-0.0778682,0.49803632,0.20099105,0.25230756,-0.25805867,-0.2802805,0.13484491,0.8211316,0.3185103,0.069810495,-0.1383346,-0.26364857,-0.20584798,-0.096130036,0.12141878,0.39798015,0.56827205,0.1857651,0.04501763,0.27523014,-0.17698915,0.008311257,-0.18235636,-0.14764288,-0.09528359,0.12586556,0.49084568,0.5858365,-0.14478578,0.604325,-0.12469951,0.15976907,-0.16399583,-0.5730435,0.45107916,0.601179,-0.15942909,-0.25386903,0.6266363,0.30977362,-0.28418708,0.43353277,-0.545638,-0.26111576,0.46762004,-0.24232975,-0.28177205,0.06710804,-0.15328245,-0.05039425,-0.8522908,0.1159827,0.12434345,-0.4815263,-0.35903522,-0.1829363,-3.7193024,0.07009753,-0.042958163,-0.13398564,0.088053904,-0.15740518,0.23682077,-0.63425,-0.50896317,0.11925354,0.1048455,0.6996918,-0.13098523,0.117039904,-0.21305908,-0.36039153,-0.2201279,0.24372308,0.10930126,0.3651824,0.04703113,-0.47433758,0.14096673,-0.33230308,-0.5555238,0.031410746,-0.6218503,-0.5210992,-0.110161625,-0.46370748,-0.28929323,0.77973324,-0.32753187,-0.03763191,-0.25460967,0.07069456,-0.1045053,0.37642765,0.12098759,0.10749842,0.16304891,0.07283813,0.010416001,-0.31900746,0.26708952,0.044676416,0.31736845,0.4792737,-0.03964098,0.3490079,0.63720894,0.7552637,0.03576913,0.81300527,0.29437137,-0.18379773,0.3573645,-0.13247588,-0.14559329,-0.7122614,-0.33546272,-0.11009822,-0.4361938,-0.5270733,-0.11400108,-0.34494567,-0.819747,0.52379507,0.103404365,0.09735954,-0.2150347,0.34447902,0.47123975,-0.3510286,0.16702707,-0.17222254,-0.26142564,-0.41117623,-0.57591015,-0.54368013,-0.57887936,0.20973766,1.3643291,-0.071515806,-0.023149295,-0.04975819,-0.41331202,0.045178752,0.117860936,0.24993144,0.3966132,0.2975529,-0.360182,-0.65981716,0.3320196,-0.46508798,-0.0069833016,-0.4959927,0.025807139,0.7032083,-0.55248034,0.44767746,0.18991892,0.2469398,0.009067059,-0.45352718,-0.06484892,0.09462763,-0.20256354,0.44408223,0.36483952,-0.7557355,0.56103843,0.02761673,-0.16772492,-0.6848555,0.4193898,0.053770866,0.06558818,-0.08167456,0.4603355,0.29107,-0.014014636,-0.22996904,0.21593356,-0.41857833,0.16081037,0.3542231,-0.020288583,0.20196274,-0.17091489,-0.11916258,-0.64425975,-0.08073437,-0.15127198,-0.36307842,-0.060448606,0.05824134,0.3691329,0.13677421,0.0077523673,0.29458168,-0.5568016,0.08695958,0.004999116,-0.26999852,0.20787445,0.38159007,0.33675313,-0.43748358,0.44833857,0.08989055,0.045229588,0.11001911,-0.17645113,0.49261624,0.3017277,0.24269965,-0.008355467,-0.3241896,0.20335911,0.7808,0.20184493,0.15993454,0.08127137,-0.35636657,0.069747984,0.10296447,0.21242078,-0.055933475,-0.34912392,-0.0817734,0.093882255,0.16258423,0.48891935,0.03131054,0.32802844,-0.16369252,-0.1578703,0.22089966,-0.010451292,-0.113969244,-1.1414483,0.3046061,0.21949159,0.76691717,0.31157318,0.004827278,-0.054724436,0.51887745,-0.43822113,0.15515396,0.43971446,-0.14967217,-0.38510084,0.48090544,-0.535299,0.6451991,0.00918095,-0.029039199,0.24182574,-0.014206899,0.41733816,1.1800163,-0.13312641,0.056985058,0.0898981,-0.25551745,0.083432205,-0.1557879,0.030423565,-0.7015633,-0.2928037,0.79506075,0.43866137,0.4675409,-0.22418666,-0.026661327,-0.008752798,-0.14808805,-0.010811006,-0.106234364,0.06311847,-0.18652022,-0.59835863,-0.24444234,0.57772094,0.057604153,0.07227319,0.078705944,-0.50847036,0.23471002,-0.18130064,-0.066134766,-0.032847878,-0.7387138,-0.2023426,-0.35873222,-0.6002082,0.25921538,-0.2316382,0.21229376,0.06991879,0.03825396,-0.3304676,0.47358766,0.42895004,0.9920258,0.121357,-0.04336012,-0.20369814,0.22015418,0.38128212,-0.26991978,-0.03294929,-0.34907404,0.24786465,-0.675982,0.49066445,-0.11589056,-0.4913982,-0.18720403,0.07483507,0.20543024,0.38097766,-0.10114233,-0.07218859,-0.16392824,0.112365305,-0.32518297,-0.027244803,-0.34071913,0.217414,0.028891388,-0.27563033,-0.12298673,-0.09837309,-0.005145026,0.3433039,0.11407245,0.18013002,0.28749976,0.041299257,-0.37891483,-0.0057889563,0.0056850677,0.5180022,-0.006097451,-0.2493417,-0.44293642,-0.066161245,-0.22404933,0.6265865,-0.10925843,0.23433574,-0.005215881,-0.3994483,0.68597937,-0.07670129,1.3113554,0.12754205,-0.4024245,0.18209513,0.4817349,0.003715607,0.17348683,-0.41540107,0.96421087,0.46250024,-0.13460787,-0.38073447,-0.45953614,-0.19011565,0.4228417,-0.36206102,-0.17475574,-0.14899336,-0.78898656,-0.2548634,0.17313945,-0.08123296,0.29109162,-0.14496042,0.31006882,0.23143078,0.1620841,0.4461096,-0.5351804,-0.01662551,0.29682955,0.43554443,-0.028438535,0.31768602,-0.43339,0.38677076,-0.8444195,0.24909948,-0.430336,0.17917824,-0.038091753,-0.20283411,0.23783623,0.3609076,0.31705502,-0.13233684,-0.4354003,-0.38723364,0.6797051,0.12022046,0.23569825,0.6946264,-0.2980421,-0.1667316,0.07179396,0.37308455,1.2064302,-0.03986017,0.010042846,0.32656997,-0.21625529,-0.55968183,0.25143677,-0.39944008,0.13348135,0.024180114,-0.15488723,-0.35480142,0.38352552,0.2099812,0.13148391,0.069508016,-0.3153722,-0.046775453,0.40559003,-0.24013494,-0.21685998,-0.28256944,0.10447843,0.8881775,-0.4347441,-0.1680244,0.1513697,0.3828711,-0.22834687,-0.51221436,0.044326037,-0.4401989,0.40452698,0.05844658,-0.30752298,-0.029018758,-0.0051113493,-0.39997822,0.1349528,0.4709237,-0.35987705,0.0013839559,-0.28355387,-0.21105136,1.1193668,0.07634701,0.25597695,-0.6351448,-0.5939182,-0.8952524,-0.36729327,-0.010548336,0.035912078,-0.13245943,-0.5207299,-0.041167676,-0.002976392,-0.31868523,0.18420598,-0.61632985,0.3928037,0.063022636,0.31850132,-0.05002858,-1.1097671,-0.11734159,0.13190739,-0.26040402,-0.44980568,0.5663916,-0.18733434,0.7682672,0.10635574,0.003292799,0.13885918,-0.36602405,0.3725219,-0.5582401,-0.0038173646,-0.6882791,0.051228292,556 +474,0.17344344,-0.19760697,-0.42138943,-0.10569317,-0.01996396,0.13008931,-0.15764727,0.25127956,-0.012694695,-0.51226735,-0.1475238,-0.17357612,-0.041751273,0.1353132,-0.27502292,-0.4490881,-0.07152088,0.11967427,-0.3830016,0.39301667,-0.59589356,0.32301468,0.01403667,0.19102022,-0.05907219,0.16523767,0.2892205,-0.089065194,-0.11374863,-0.24457847,0.08972842,0.05829237,-0.57047725,0.261893,-0.19687687,-0.34649,0.08404939,-0.36269918,-0.50857276,-0.6303238,0.45248988,-0.94699293,0.44703218,-0.0037386587,-0.16302136,0.46107262,0.11044567,0.20461938,-0.15623678,0.032300863,0.1888179,0.011607095,-0.09158266,-0.1305208,-0.2572175,-0.31183457,-0.5668928,0.12814412,-0.41767243,-0.14751029,-0.25924125,0.17060931,-0.25351536,0.14283058,-0.24142446,0.4698824,-0.37347132,-0.061281618,0.025642773,-0.03718082,0.21332963,-0.46905765,-0.12718321,-0.07261862,-0.05327841,-0.28384277,0.007159936,0.18188766,0.08985595,0.54232335,-0.18050179,-0.10308472,-0.19725633,-0.08104137,0.18461363,0.4273621,-0.13557917,-0.3423608,-0.17250855,-0.16081153,0.17278144,0.1039684,-0.026842926,-0.1888672,0.03690062,0.11084221,-0.33678177,0.24489541,0.6277527,-0.1878225,-0.22004874,0.46878266,0.5775713,-0.122640096,-0.044665348,0.02686641,-0.07316114,-0.38815266,-0.1289719,0.046244442,-0.2639849,0.4374273,-0.15057324,0.22108173,0.45719382,-0.22960155,0.16229819,0.047652155,-0.019227022,-0.10938126,-0.23293486,-0.29006144,0.19160615,-0.4497655,0.046655778,-0.17709391,0.81612444,0.019145515,-0.7603372,0.40596178,-0.35413367,0.1656308,-0.09429604,0.6587158,0.4285856,0.347164,0.16134603,0.6221165,-0.6174746,-0.020555288,-0.11618971,-0.31661466,-0.008675703,-0.030297475,-0.14250877,-0.23757681,-0.031684812,0.14732026,-0.11513074,-0.241569,0.33956173,-0.35377282,-0.0122639835,0.12305006,0.7775454,-0.32754725,-0.01129508,0.70586663,1.1926193,0.84487754,0.13315995,1.2186116,0.35765198,-0.2026858,0.13744998,-0.23313716,-0.93799055,0.23638146,0.42316967,0.04523129,0.2323358,0.085560374,-0.097799756,0.25014395,-0.56707865,0.017150497,-0.33903435,0.3875192,0.027902897,0.09076958,-0.2771913,-0.19772394,0.24071409,-0.022993548,0.22790241,0.23524643,-0.32483622,0.12315594,0.20020796,1.1872635,-0.15271322,0.17170504,0.22907652,0.3302655,0.030067584,-0.13757123,-0.017402705,0.23700438,0.4418656,0.05444745,-0.69841653,0.0483618,-0.23406842,-0.49851936,-0.27329072,-0.1807148,0.020062849,-0.1276086,-0.3262176,-0.07839525,-0.20023534,-0.52765316,0.27724513,-2.6456354,-0.06599059,-0.2867887,0.2863617,-0.35096794,-0.34828216,-0.023837613,-0.47424597,0.43426886,0.44503504,0.3482466,-0.59365124,0.34586263,0.38250205,-0.24444829,0.005273938,-0.63503224,0.07793494,-0.16124184,0.35561356,0.13073274,-0.0626562,-0.15169919,-0.029314917,0.33161995,-0.033026736,0.19105193,0.28582993,0.44369152,0.14449188,0.41415793,0.09731735,0.43395567,-0.38392884,-0.047008246,0.4109324,-0.511769,0.15415919,-0.0778692,0.20692734,0.2933054,-0.6620345,-0.57659495,-0.58884686,-0.5762343,1.5265578,-0.25543973,-0.415552,0.2647079,0.06359545,-0.27218065,-0.1267325,0.36264807,-0.40870315,-0.060435183,-0.8685377,0.06805324,-0.17545016,0.36552912,-0.0891758,0.22155316,-0.43919995,0.6501776,-0.24263693,0.5614498,0.3115779,0.16237606,-0.44718108,-0.45105866,0.030653046,1.0814348,0.4317836,0.0923404,-0.14977911,-0.11894512,-0.24996507,-0.13938464,0.13510753,0.36815187,0.7110095,0.031245653,0.041362096,0.31566438,-0.088467896,-0.0025897026,-0.043014806,-0.2855424,-0.17701368,-0.013276594,0.64959896,0.33289573,-0.2091891,0.24093376,-0.22532865,0.28541884,-0.31740203,-0.30376515,0.32186127,0.73699373,-0.1507682,-0.32137898,0.6550766,0.6135589,-0.33604908,0.45507106,-0.60419166,-0.42779037,0.2626098,-0.14813508,-0.43927255,0.18613927,-0.29029512,0.13302854,-0.8242143,0.3736455,-0.27316588,-0.6183094,-0.6266251,-0.28324917,-3.1263385,0.13064668,-0.19486757,-0.14042738,-0.032936968,-0.15528941,0.33605003,-0.36298683,-0.60008496,0.15013336,-0.0155068915,0.46387672,0.1058117,0.15069939,-0.21104534,0.0112922955,-0.45355755,0.1695614,0.2937934,0.13887592,0.025295751,-0.38893393,-0.07085215,-0.3108295,-0.38473415,0.015452032,-0.4388897,-0.3693363,-0.17273355,-0.53279597,-0.439545,0.470056,-0.34649387,0.062007565,-0.18812929,-0.07621651,-0.1599995,0.44862324,0.1444615,0.22702314,-0.07382639,-0.22120658,-0.023934225,-0.3262786,0.4229293,0.059574265,0.18106796,0.34844568,-0.21634997,0.0069930553,0.30480364,0.5737499,0.05685387,0.79104847,0.33424595,-0.1487371,0.27786642,-0.21265338,-0.118443556,-0.5299821,-0.13583864,0.05131456,-0.3612244,-0.43322855,-0.04105797,-0.35228127,-0.73323363,0.4267106,-0.1163887,0.053517196,-0.0074722543,0.25523165,0.36051807,0.11010699,-0.01690487,-0.08349142,-0.06119987,-0.40064034,-0.50684756,-0.78347605,-0.2497374,-0.15423287,1.0627509,0.14971974,-0.10580097,-0.08979223,-0.0718187,0.054201145,-0.035567366,-0.003849866,0.1988816,0.47305605,0.003313339,-0.6274883,0.3566464,-0.14436749,-0.08074739,-0.55018896,0.044470515,0.65066403,-0.56706774,0.450466,0.4564657,0.16386326,-0.20172651,-0.49362212,-0.14547214,0.069711566,-0.20923793,0.42932752,0.26316562,-0.8982668,0.5079803,0.36852342,-0.04029165,-0.7170344,0.43902498,0.13493682,-0.021024061,0.050928533,0.41516066,-0.21912408,0.05352512,-0.15777552,0.14305045,-0.25979862,0.24044757,0.20792279,-0.093554474,0.52573735,-0.41096252,-0.11592398,-0.5260971,-0.062103987,-0.53702545,-0.1412687,0.037973676,-0.16942272,-0.08313221,0.23962818,-0.25080687,0.4488638,-0.081591144,0.078955874,-0.02792646,-0.17912062,0.32870603,0.41745812,0.3217214,-0.40720364,0.6411397,0.027097702,-0.15185194,-0.20762946,0.03710246,0.40318364,0.09105412,0.2546111,0.12917735,-0.043043915,0.45286158,0.7366262,0.3459084,0.6318869,0.20769115,-0.16158125,0.31409654,0.07261579,0.12607418,-0.04314765,-0.42751664,-0.13403992,-0.047362287,0.16828121,0.42253426,0.08456107,0.53604054,-0.32092628,-0.15931721,0.013325567,0.23442851,-0.19141018,-0.954593,0.34710026,-0.05004233,0.6491879,0.5492172,-0.13983954,0.15110159,0.50457865,-0.21532758,0.0768312,0.30425027,0.07902106,-0.4500671,0.49757877,-0.5073355,0.38303375,-0.18899548,0.09960519,-0.00286233,0.009070741,0.40332842,0.78788054,0.003985222,0.06328765,-0.100461416,-0.22000991,0.34412128,-0.32336825,0.25590706,-0.32228255,-0.216411,0.6192244,0.28008965,0.25710836,-0.115435265,-0.07757262,0.016981538,-0.11877769,0.12579145,-0.014634375,0.04049764,-0.105918385,-0.6675681,-0.30767846,0.46858478,0.32094198,0.12937282,0.15663484,-0.34634185,0.23905976,-0.13896142,-0.01389019,0.13141727,-0.53366995,-0.05636478,-0.051220458,-0.3106594,0.15938805,-0.38522774,0.21297611,0.15671103,-0.00833089,-0.5790936,-0.15863612,0.25015625,0.5797006,-0.09365536,-0.1764201,-0.3587227,0.07618822,0.21416013,-0.26734048,0.0144816805,-0.3743243,-0.016508972,-0.80647373,0.52199966,-0.16585183,-0.26898134,0.33454782,-0.23132019,-0.042147834,0.63020813,-0.15945575,-0.11278541,0.107484184,-0.076342806,-0.20224585,-0.20290153,-0.11680982,0.21073504,0.09890324,0.08582814,-0.0372067,-0.007892793,-0.19776423,0.43332997,0.06423935,0.24593136,0.33515522,0.26181576,-0.4042186,-0.021653567,-0.068205245,0.53671837,0.026728021,-0.052422978,-0.11384572,-0.41898867,-0.027890358,0.29200786,-0.100422345,0.2614701,0.10453678,-0.37130833,0.6454201,0.078477606,0.94456005,0.06593143,-0.17902014,-0.17822194,0.5829643,0.069392316,0.0017305559,-0.2656571,0.8785335,0.5322924,-0.116757356,-0.10706054,-0.33003896,0.023267064,0.023270786,-0.1350439,-0.30894044,-0.006188415,-0.62504405,-0.23391686,0.12741737,0.46258798,-0.121998854,0.022038039,0.14502756,0.16595738,-0.0312867,0.5345411,-0.3992203,0.0112066055,0.33428025,0.14600058,-0.05173623,0.1988268,-0.40695837,0.25022712,-0.62032896,0.10580759,-0.15663883,0.0073609757,0.026038935,-0.28453413,0.12738205,0.010757302,0.36921936,-0.3359587,-0.3316252,-0.16801932,0.5381342,0.16140446,0.18311903,0.6646771,-0.14340839,0.18306836,0.093929715,0.59900486,0.9683924,-0.086461894,0.11004906,0.09017193,-0.2637343,-0.7305255,0.3732008,-0.26702622,0.13449718,-0.008604935,-0.22870918,-0.30114514,0.3823306,0.16898875,-0.2373575,0.1674775,-0.5258343,-0.2256808,0.36153576,-0.1449363,-0.15359998,-0.32767397,-0.04313693,0.5943966,-0.25699145,-0.08580159,-0.056012936,0.30984762,-0.3411181,-0.5234427,-0.106412046,-0.46001083,0.3142317,0.017033597,-0.19503327,-0.013912345,0.11573162,-0.34358892,0.25687486,0.09005928,-0.27884534,-0.08938934,-0.14457902,-0.004843014,0.5659707,-0.080845885,0.040088587,-0.6568398,-0.4595922,-0.91803247,-0.28898144,0.5777572,0.083692364,0.08885624,-0.42023107,-0.06021757,-0.0665539,-0.014677508,0.086770594,-0.4083987,0.2721676,0.1280565,0.533788,-0.025793413,-0.57099295,-0.042913157,0.0373323,-0.17415415,-0.3646321,0.65114033,0.086291485,0.6490417,0.01729234,0.16470489,0.24485664,-0.65865767,0.14374658,-0.1780977,-0.24141833,-0.5627687,0.11953248,558 +475,0.8203944,0.11829589,-0.6102905,-0.054485537,-0.5523195,0.2301805,-0.2165027,0.3746491,0.31355366,-0.6119582,-0.0065056616,-0.119514726,-0.08118839,0.21005155,-0.06850548,-0.62138194,0.17748316,0.18216535,-0.69707006,0.8896598,-0.15543732,0.49441662,-0.070610024,0.24181616,0.10210804,0.1555773,0.18352403,0.11516516,-0.1234599,-0.2383527,0.036830842,0.19142388,-0.6493351,0.3554571,-0.12639843,-0.36923584,-0.121044196,-0.2539622,-0.16524899,-0.80195534,0.321184,-0.77381384,0.7288903,0.034216825,-0.26193,0.23884296,0.34363514,0.09239683,0.067219615,-0.11486031,0.13584317,-0.15277743,-0.062709495,-0.2826294,-0.33254507,-0.5371652,-0.6298031,-0.068872,-0.40408415,-0.17977752,-0.39208022,0.15971376,-0.27352598,-0.08498577,-0.27828386,0.86941844,-0.2951088,0.28307194,0.20218144,-0.2924181,-0.03095207,-0.7415872,-0.22149928,-0.13029955,0.11386267,0.0742938,-0.14539573,0.3984492,0.32965803,0.41439694,0.11081227,-0.42475826,-0.41316146,-0.13232267,0.1374166,0.39322326,-0.25265566,-0.19844863,-0.15771756,-0.09708559,0.40826866,0.033827342,0.29061702,-0.140685,0.13141045,-0.13986793,-0.13192068,0.5745104,0.40615454,-0.41517368,-0.22990446,0.27563134,0.3670915,0.0080544995,-0.30088308,-0.029704724,-0.19575164,-0.38004056,-0.0550557,0.25904992,-0.12384943,0.2643652,-0.20410681,0.1141141,0.47827402,-0.14656211,-0.1281904,0.22968677,0.12415462,0.27210417,-0.3074972,-0.1535985,0.34616703,-0.4682855,0.17193301,-0.368561,0.6793466,0.19209953,-0.5462469,0.35858864,-0.550294,0.1084122,0.11074203,0.4181299,0.77909714,0.58470917,-0.045259953,0.763352,-0.23365124,0.05097356,-0.0076807165,-0.026494225,-0.02040121,-0.23789285,0.31161538,-0.4403123,0.31523982,-0.031704873,-0.055890232,0.04965961,0.5080668,-0.5638483,-0.36234662,0.23449433,0.976498,-0.23463726,-0.3326351,0.7504112,1.0151182,1.0709629,-0.15558998,0.89942014,0.114400394,-0.18222438,-0.07618021,-0.19708334,-0.45035067,0.304492,0.19936688,0.11134328,0.36171967,-0.017794965,-0.20148294,0.26174092,-0.25659424,-0.2729995,-0.09432344,0.3864843,0.21756625,-0.14162461,-0.37620398,-0.19187763,0.101342306,-0.070835434,0.35214847,0.2889933,-0.30914024,0.4055014,-0.05967229,1.0137693,-0.13571943,0.12551482,0.1361282,0.41833046,0.33533022,-0.03062593,0.17732514,0.26936564,0.08057332,0.18740593,-0.4776337,0.3233001,-0.45538524,-0.44139412,-0.03856789,-0.41630283,-0.20869526,0.04484707,-0.43513718,-0.31854644,-0.11876667,-0.29376927,0.26652926,-2.5732825,-0.0075896042,-0.08810633,0.38512832,-0.2536161,-0.28718516,-0.22362784,-0.58078086,0.3481227,0.16173843,0.38519368,-0.41290832,0.39950517,0.3836749,-0.657462,-0.07410725,-0.5448033,-0.09641157,0.042760722,0.42496863,-0.15891562,-0.17539512,0.035916228,0.22652675,0.63993865,0.15366784,0.26032978,0.38479072,0.3083516,-0.20229067,0.23683389,-0.13235496,0.5575025,-0.51515144,-0.17759685,0.5261664,-0.44382003,0.07058694,-0.17967705,0.084566556,0.6155138,-0.3800862,-0.97689235,-0.62947905,-0.010987161,1.0412674,-0.23853289,-0.7334704,0.06047207,-0.17501831,-0.1430557,-0.008935304,0.57011384,0.11274648,0.18947445,-0.65052706,-0.02698359,-0.027888963,0.3338318,-0.07136831,-0.0061969734,-0.46745425,0.7161837,0.00957703,0.5917228,0.078353606,0.3176901,-0.39363942,-0.4319396,0.039497938,1.0347157,0.45122725,0.11193932,-0.17592993,-0.12920964,-0.34998927,-0.21288694,-0.0052277124,0.79322594,0.540352,-0.05606418,0.08082684,0.2718418,-0.15383656,0.33772025,-0.19108708,-0.4161797,-0.3309436,0.05983522,0.5075344,0.46386406,-0.17530362,0.45763612,-0.012584575,0.4153556,-0.30061096,-0.63789445,0.51477647,0.97555274,-0.33801487,-0.32661104,0.65581334,0.37087247,-0.39317146,0.58997506,-0.6333092,-0.56147987,0.4378038,-0.19529302,-0.51908296,-0.0014714301,-0.32427934,0.12789622,-0.51699317,0.2679433,-0.66832,-0.6325775,-0.28798088,-0.25598505,-2.5572083,0.20617995,-0.09713127,0.0010268603,-0.29631788,-0.04188161,0.15210967,-0.39796835,-0.5592877,0.038431328,0.16436648,0.83113676,-0.13284358,0.06004592,-0.22708078,-0.517228,-0.298597,0.37879673,0.15013969,0.25654832,-0.09363661,-0.34096128,0.14761303,0.0888126,-0.39494064,0.010848994,-0.68955904,-0.41069502,-0.22549231,-0.5621378,-0.2290294,0.650847,-0.4245861,0.08648541,-0.26566097,0.12085427,-0.057398044,0.15207665,-0.022016589,0.2817406,0.072393835,-0.24277341,0.2023968,-0.26748896,0.4976454,0.09024131,0.4810357,0.49467805,-0.16233255,0.095209725,0.46121627,0.5389355,0.37419605,0.99413955,0.05300813,-0.044970307,0.58280694,-0.1090809,-0.3707776,-0.5973617,-0.104975544,0.06656123,-0.42320323,-0.29443192,0.058033496,-0.407921,-0.93680316,0.5460258,-0.14524367,0.3730699,-0.19465192,0.4244087,0.5458914,-0.26082832,0.02832179,0.07916127,-0.12387641,-0.44965786,-0.3526411,-0.638441,-0.44511938,-0.061222613,0.7244662,-0.25922322,-0.0688508,0.054526653,-0.057956073,-0.025852306,0.27666798,0.16485007,-0.051578104,0.5997757,0.02210827,-0.6783026,0.4547895,-0.31155303,-0.019528517,-0.44144017,0.6811658,0.45607045,-0.63760483,0.5582046,0.25377828,0.110239014,-0.52479154,-0.6621906,-0.06881653,0.17116246,-0.19379695,0.32063642,0.33103672,-0.81595147,0.38316822,0.108021274,-0.20762451,-0.71711093,0.5428874,-0.037660833,-0.33501747,-0.2544988,0.5596004,0.28426203,0.002370464,-0.08624538,0.1799313,-0.6264482,0.32706922,0.031764127,-0.1492493,0.37188414,-0.102041535,-0.31199518,-0.76958454,0.14958198,-0.56986743,-0.47846174,0.31838888,0.07196803,-0.08906102,0.4908497,0.2105304,0.5105135,-0.18571822,0.1705115,-0.3021829,-0.30895707,0.616168,0.35120112,0.43174177,-0.42403835,0.6246155,-0.03276066,-0.25626367,0.29860285,0.19912155,0.47620997,0.11954035,0.7084028,0.1399004,-0.05066631,0.11403111,0.4971362,0.1798627,0.31671444,0.04731344,-0.14494547,0.14938603,-0.09890628,0.046086285,-0.08212427,-0.5749174,-0.27707776,-0.14539674,0.028984329,0.6588856,0.03897,0.33129317,-0.0036334523,-0.24712765,0.081411935,0.023774501,-0.2450022,-1.2991276,0.32672366,0.020533284,0.9296202,0.4083698,0.04157304,-0.17714651,0.6976735,-0.028484225,0.09395598,0.36634707,-0.060496844,-0.21712509,0.5989633,-0.5105885,0.3387917,-0.1381465,-0.033099882,0.037210133,0.10815774,0.44411317,0.96060044,-0.1565985,0.0032141295,0.10981203,-0.41166177,0.22630177,-0.24623473,0.2541384,-0.5468862,-0.33043846,0.7240561,0.33198354,0.33085164,-0.36229426,0.08686676,0.1327655,-0.26884535,0.17016712,0.07076673,0.10707242,-0.14668694,-0.3748731,-0.12024362,0.53171194,-0.25637004,0.04849771,0.24787012,-0.16245301,0.2610259,0.040428776,0.030855162,-0.058548003,-0.7813516,-0.039898593,-0.27918494,-0.39134255,0.48971772,-0.1243723,0.084627345,0.15407276,0.07184603,-0.36094195,0.39496782,0.27252457,0.255564,0.08401015,-0.1097958,-0.41045588,0.16074882,-0.19319566,-0.25614005,0.18841903,0.0012469122,0.2522078,-0.56121904,0.49335477,-0.11441517,-0.22812496,-0.12954788,-0.07154512,-0.027504751,0.5344656,-0.054612722,-0.108367525,0.052354276,-0.14112924,-0.41347393,-0.31108457,-0.058170464,0.10186333,-0.039731044,-0.18085288,-0.20315899,-0.14398345,-0.075803146,0.15155761,-0.0241593,0.13853177,0.41035798,0.14771724,-0.47125864,0.19197476,0.29952782,0.50237906,-0.020162685,-0.06370221,-0.26405543,-0.40784165,-0.5007126,0.50479937,-0.061658077,0.19505182,0.10493048,-0.3705897,0.87155694,0.092348464,1.1842258,-0.119528316,-0.37361678,-0.0074634976,0.5723614,-0.111986555,-0.0700498,-0.4933872,1.0411931,0.62541896,-0.014668347,0.05753839,-0.4128421,-0.007673309,0.13548867,-0.3263872,-0.11484684,-0.052714713,-0.6349398,-0.22382419,0.07085311,0.29975718,0.09163944,-0.19771041,0.17245828,0.31925339,0.16614212,0.21272253,-0.60378605,0.009571168,0.20027594,0.41176242,-0.021593736,0.27431226,-0.31798616,0.10370684,-0.87946045,0.13918379,-0.11128586,0.09963686,-0.27126223,-0.46864036,0.2742587,0.10181276,0.3073408,-0.42358488,-0.2810566,-0.23998983,0.43384022,0.20253168,0.14581254,0.81067973,-0.22160146,0.032403443,0.20968713,0.6279977,1.101463,0.09781183,-0.17269464,0.055369206,-0.45050684,-0.94791174,0.11537175,-0.31058645,0.327604,-0.16150713,-0.24432732,-0.5179426,0.3003077,0.08032449,0.014753408,0.14910635,-0.6341607,-0.15227643,0.10536308,-0.44589213,-0.2363936,-0.23294422,0.27124685,0.53291154,-0.086784504,-0.16132364,-0.024795678,0.33335894,-0.21029344,-0.7795057,-0.030859768,-0.3909637,0.22065173,-0.030098166,-0.28458008,-0.20355631,0.00031210162,-0.6056904,0.1642277,0.13209967,-0.28466767,0.034438483,-0.36073884,0.1335333,0.59841615,-0.0048952317,0.12946112,-0.35875374,-0.6749147,-0.8088955,-0.33419272,-0.0010390027,0.068992764,-0.0779951,-0.73602444,-0.27384087,-0.42133263,-0.053002764,-0.06590987,-0.41415957,0.27559572,0.16641939,0.3498819,-0.15303585,-1.0214632,0.105362244,0.15651152,0.057922,-0.44852862,0.21760856,-0.22829954,0.99909985,0.12664412,-0.045551088,0.29028693,-0.5469492,0.17448221,-0.20961976,-0.06353099,-0.49006262,0.1451021,561 +476,0.3350386,-0.15703943,-0.5875541,0.029690811,-0.22655497,-0.03501378,-0.39947483,0.3750526,0.27724317,-0.40948895,0.100460805,-0.2226713,-0.14934409,0.11841844,-0.1999608,-0.4866628,-0.03846294,0.200072,-0.4364524,0.5801692,-0.432101,0.20079327,0.095229305,0.23702273,-0.12218637,0.2589906,-0.0051339758,-0.28436893,0.025795903,0.046937324,0.20401356,0.09122162,-0.61449903,0.27792427,-0.18912613,-0.16146812,0.1431055,-0.56350744,-0.56499773,-0.58212197,0.17602767,-0.6214899,0.53956324,0.03564131,-0.3333278,0.28639403,-0.04277139,0.2851266,-0.08863734,0.07171065,0.28577837,-0.17837487,-0.5011706,-0.2445146,0.039688654,-0.48787403,-0.45230156,-0.050694253,-0.4703881,0.20035364,-0.22324331,0.24529903,-0.15383871,0.10581382,-0.11063645,0.13279246,-0.50567085,0.089127846,0.07504349,-0.087264605,0.37559742,-0.66995806,-0.1204614,-0.0016885698,0.19126084,0.19258912,-0.15782128,0.19092837,0.016009582,0.6697779,-0.09711821,-0.07337325,-0.26186663,0.005683754,0.060097802,0.57208,-0.2430084,-0.09048629,-0.16677022,-0.09047786,0.40532207,0.18941453,-0.061106198,-0.3913763,-0.06942902,-0.03706732,-0.3563071,0.15072306,0.6713883,-0.29246372,0.16049124,0.3624827,0.3330607,0.32403424,-0.06916066,0.075962715,-0.079805136,-0.38532543,-0.12271099,-0.024883678,-0.13323146,0.49493477,-0.020159248,0.2637278,0.4639595,0.049768627,-0.10002591,-0.038880367,0.0048025805,0.06642474,-0.08623072,-0.17831199,0.3123695,-0.5612938,-0.0046566087,-0.13120031,0.52223915,-0.16910431,-0.86137384,0.45762625,-0.47998673,0.06917486,0.06555341,0.596224,0.7032619,0.7404996,0.0870722,0.89453804,-0.5633551,0.15303013,-0.12878715,-0.229624,0.35527244,-0.14669539,0.23021157,-0.45153126,-0.04440651,0.14759819,-0.14062789,-0.15268609,0.6495957,-0.54685235,-0.001882468,0.21186201,0.72556156,-0.29861477,0.14228691,0.6092494,1.1353904,0.8330983,0.2782727,1.1971667,0.27543333,-0.19863252,-0.07824954,-0.059697144,-1.0604625,0.099962555,0.28564772,0.7165567,0.18496545,0.36039916,-0.03295574,0.6722166,-0.25080544,-0.16064216,-0.22130595,0.375392,-0.054795478,-0.21607362,-0.2200378,-0.18823375,0.06370303,0.13181305,-0.046574254,0.33827713,-0.060912065,0.2673764,0.18713239,1.5472937,-0.19366369,0.11431346,0.12620656,0.14618209,0.19032557,0.010505642,-0.12621741,0.36477163,0.35578346,-0.021803724,-0.55449355,0.0069865286,-0.12746613,-0.63336116,-0.1533675,0.056360643,-0.13575543,-0.10508282,-0.28444007,-0.2645571,-0.06347077,-0.3297232,0.57226026,-2.6871376,-0.11243469,-0.17818257,0.43832207,-0.17686081,-0.2664087,-0.11310103,-0.2804342,0.5431568,0.48976332,0.42599398,-0.56392664,0.4554209,0.38955018,-0.5847383,-0.10919584,-0.6451064,-0.029518614,0.029705787,0.27229974,0.07653398,-0.31412056,0.053689737,-0.16342251,0.2974729,-0.20107748,0.15250906,0.43788937,0.51228416,0.014118097,0.39879823,-0.19627477,0.36442152,-0.28763488,-0.11148806,0.26756144,-0.36211976,0.40914991,-0.20540306,0.20062813,0.3672063,-0.5464794,-0.62524205,-0.41516963,-0.055049304,0.9580328,-0.26389137,-0.5304104,0.22443001,-0.35304955,-0.32028052,-0.038923714,0.38694876,-0.15847073,0.027346853,-0.85387695,-0.07859804,-0.07945393,0.26875368,0.022588039,-0.003817918,-0.47207877,0.6964862,-0.035699993,0.5766055,0.6662506,0.2758915,-0.060607374,-0.27807578,0.11153237,0.67090166,0.48554975,0.171804,-0.1936544,-0.041951988,-0.04112702,-0.22544037,0.10298306,0.5103138,0.58756256,-0.16496928,0.10241078,0.2098311,-0.19652727,-0.123066776,-0.07391044,-0.43580213,-0.099805534,0.12034048,0.48272082,0.789688,-0.18535025,0.26288548,-0.014225778,0.15228446,-0.0010543125,-0.45993838,0.4029548,0.53158927,-0.10734483,-0.18071012,0.4724866,0.4878609,-0.09143002,0.46919766,-0.558262,-0.47160238,0.32963482,0.0049885428,-0.61443454,0.37574658,-0.45383072,0.14507529,-0.97361577,0.3777234,-0.349529,-0.5770553,-0.6950432,-0.08403759,-2.4698815,0.22477886,-0.27426764,-0.08655033,-0.1778857,0.011360322,0.2809131,-0.52514315,-0.6647791,0.19398654,0.19098876,0.35279983,-0.0014725582,0.043459687,-0.18836986,-0.1572125,-0.2888184,0.17325592,0.20376119,0.15050414,-0.032551296,-0.4444785,-0.23910478,-0.23080859,-0.097493626,0.082851104,-0.5858265,-0.29083967,-0.16521814,-0.46228853,-0.29188892,0.50009257,-0.38341406,-0.071830325,-0.33286378,0.016328672,-0.13566019,0.32918686,-0.1311252,0.11307402,-0.038784694,-0.12574033,-0.057431627,-0.23497938,0.11787776,0.09122646,0.12791814,0.5672902,-0.113099255,-0.075325884,0.5730285,0.6578768,-0.21031602,0.78992164,0.49433258,-0.29454237,0.3638092,-0.36857313,-0.13545643,-0.62273175,-0.27347443,-0.11414545,-0.39076582,-0.4859529,0.04702249,-0.421732,-0.7218777,0.5102633,-0.0101068,-0.044553824,0.19146106,0.13750665,0.3799183,-0.08483861,-0.122255705,-0.14381981,-0.20558996,-0.51782924,-0.3464281,-0.70256466,-0.49971423,0.16343047,1.1629188,-0.14234357,-0.14772399,0.28221095,-0.22471072,0.04135992,0.20590101,0.07904865,0.16350208,0.2731193,0.15813632,-0.75622314,0.4329849,-0.07403342,-0.19723788,-0.6647498,0.06473958,0.6055294,-0.8005174,0.43719092,0.3950677,0.15208931,0.2916655,-0.6257015,-0.22371697,0.038157318,-0.27842042,0.3571132,0.26710656,-0.81527704,0.5653678,0.49070904,-0.2960649,-0.8827692,0.23571874,-0.045205623,-0.13337587,0.10791675,0.30046603,0.08219319,0.033460796,-0.1076893,0.21197973,-0.51985055,0.44774002,0.07181007,-0.1723331,0.44170538,-0.20526095,-0.08813067,-0.9043861,-0.06764251,-0.4225025,0.019306336,0.39993724,0.050978076,-0.042244375,-0.2616694,0.38635454,0.44177863,-0.43690866,0.16798909,-0.2760244,-0.36581096,0.27999574,0.5496573,0.4286532,-0.31876987,0.48578972,-0.13174228,-0.11528802,-0.20596504,0.068888105,0.36147264,0.14081885,0.08277158,0.007917813,-0.10690167,0.1184669,1.0193561,0.13639888,0.35951108,0.08891287,-0.1242735,0.5164179,0.115405016,0.08755926,-0.14194699,-0.526622,0.035221703,-0.06093904,0.21686505,0.42745617,0.19204679,0.4951376,-0.3164448,-0.12553397,-0.09839075,0.35218468,0.35152128,-0.84145325,0.47656268,0.080317445,0.6029692,0.6756266,0.056652274,0.30968237,0.68599683,-0.17526576,0.06716626,0.32946375,0.042849522,-0.4437645,0.38062754,-0.7575056,0.28656402,-0.20296128,-0.033984922,0.38884845,0.23091057,0.5214688,0.7894373,-0.062880106,0.003508611,-0.09923909,-0.11840367,-0.10839907,-0.20223448,-0.1784621,-0.33975467,-0.41602662,0.6823087,0.41125104,0.45449883,-0.31322604,0.016594272,0.18026762,-0.0069140964,0.60962564,-0.02280079,-0.010445176,-0.1614858,-0.61015993,-0.22764526,0.67719424,0.042658843,0.039977588,0.0031139723,-0.08393727,0.3883269,-0.21225247,-0.20553215,0.014982073,-0.6580173,0.18362649,-0.28723887,-0.48101848,0.6107546,0.22792152,0.19888012,0.06667252,0.090024844,-0.2351376,0.33540282,-0.024529388,0.8421251,0.008993119,-0.27768356,-0.18757196,-0.1413278,0.20230351,-0.18794498,-0.15884164,-0.24564731,-0.029635224,-0.5823422,0.4561964,-0.20881979,-0.07884501,0.31294063,-0.29345924,0.04484563,0.48113397,-0.2846359,-0.30103603,0.20870717,0.11376516,-0.2713335,-0.45604038,-0.46621466,0.06508044,-0.07868481,0.10079881,-0.07457827,-0.1477952,-0.03872108,0.48026976,0.08379451,0.18509217,0.38132167,0.31703338,-0.5027236,-0.18410417,0.20256308,0.4621916,-0.004454215,-0.09604697,-0.2593218,-0.6509635,-0.3433502,-0.0863878,-0.10709442,0.34557396,0.1372829,-0.41822955,0.9127653,0.122466855,0.94358593,0.08356544,-0.17198613,0.08598524,0.54007834,-0.0998684,-0.026380513,-0.4274545,0.8397242,0.8095974,-0.0943539,-0.077638045,-0.5034057,-0.12903298,0.18405755,-0.3217352,-0.022343738,-0.093657054,-0.7188546,-0.23432776,0.10847359,0.23299193,-0.17373657,-0.14251746,-0.08205337,0.018279774,0.101134576,0.12776938,-0.36435556,-0.26156104,0.40617278,0.206568,0.10286361,0.13601786,-0.34693933,0.2828153,-0.456807,-0.043071758,-0.4610605,0.019617332,-0.016326537,-0.24421223,0.05843566,-0.12084507,0.29462144,-0.31234977,-0.31720564,-0.060908,0.4114395,0.22812359,0.33808684,0.64747447,-0.18254794,-0.07585131,-0.13084503,0.49411747,0.998539,-0.5109126,0.08473998,0.41171935,-0.39321473,-0.42705485,0.21834072,-0.37130553,0.009213784,-0.09327037,-0.4198821,-0.5462917,0.17723843,0.12118828,-0.19004896,-0.25503308,-0.62264025,-0.014612113,0.19781268,-0.30932823,-0.14031668,-0.19877349,0.06538944,0.9765376,-0.3626797,-0.30974963,0.17619045,0.10135238,-0.30755138,-0.31685933,0.21118583,-0.4036413,0.24472524,0.36635408,-0.3634962,-0.0058502215,0.21430556,-0.5950743,-0.04921731,0.12867549,-0.29002553,0.03170403,-0.47535753,0.19210377,0.82541263,-0.03605122,0.20425443,-0.45520094,-0.55716133,-0.9977077,-0.30995092,0.169434,0.27171195,-0.044684555,-0.4395297,0.08402264,-0.14861332,-0.088514045,-0.08310044,-0.51255345,0.59262955,0.09192155,0.40576747,-0.39061823,-0.9268905,0.09116932,0.1815963,-0.21159947,-0.29333702,0.4985183,-0.12091913,0.95954216,0.06611966,0.094684176,0.16498467,-0.7390995,0.23263991,-0.31160998,-0.3778378,-0.698125,-0.046795342,563 +477,0.6302332,-0.19617958,-0.5123554,-0.0061059156,-0.48593664,0.11925609,-0.3311963,0.14016317,0.41393915,-0.13774204,-0.3955885,-0.15352266,0.141906,0.0312931,0.023398595,-0.48482355,0.036041655,0.46806452,-0.94124585,0.5874742,-0.36700517,0.3459111,0.28290948,0.542,0.07159356,0.15863821,-0.013070651,0.0689997,-0.021671385,-0.28510123,-0.022054765,0.07343398,-0.769955,0.17667219,-0.42178398,-0.37011364,-0.22200546,-0.38874522,-0.32962963,-0.8243333,0.16736066,-1.1916534,0.67565006,-0.041503448,-0.31447873,-0.42363676,0.24065374,0.4294843,-0.22165944,0.12914462,0.2613275,-0.5668173,-0.38421518,-0.5006462,0.077719584,-0.37905183,-0.4867924,-0.059302203,-0.54064995,0.022206638,-0.14701316,0.20853718,-0.32182625,0.11122962,-0.23864402,0.35638472,-0.21294072,0.08550864,0.36894423,-0.2387668,0.101443924,-0.569245,-0.09276519,-0.10520037,0.62942606,0.1120113,-0.52582294,0.3900388,0.1106608,0.57913303,0.33626255,-0.4330146,-0.03414609,0.03006741,-0.027257653,0.4286702,-0.048794843,0.0339896,-0.21711977,0.052020933,0.644657,0.4308609,0.18558182,-0.15635839,-0.024296364,-0.2765829,-0.034110215,0.40720895,0.58546084,-0.09454522,-0.28195983,0.061481178,0.70629793,0.15764035,-0.2288048,0.17647232,0.09054906,-0.5428481,-0.12207586,0.12102199,-0.0014502747,0.59283465,-0.18528116,0.064669326,0.6891037,-0.16323021,-0.17659947,0.22755504,0.17294881,-0.032530546,-0.34080315,-0.22683968,0.39558023,-0.56268054,-0.15286115,-0.44659558,0.70303965,0.17957239,-0.49995035,0.36908704,-0.56943405,0.21850625,0.07975345,0.7233534,1.0558631,0.6930312,0.4296156,0.84204096,-0.030736744,0.19683419,-0.22084174,-0.13049805,0.17153303,-0.40910253,0.3258505,-0.44311038,-0.09858622,-0.38777146,-0.30734608,0.09060914,0.739388,-0.55715674,-0.2740777,0.23348248,0.6747574,-0.26428685,-0.13796885,1.0199538,1.034192,0.83494854,0.16154324,1.1764575,0.38327414,-0.25882396,-0.13417816,-0.026711391,-0.8267989,0.11566651,-0.02122939,0.008161579,0.42405272,0.1344563,-0.2069769,0.43599,-0.79411614,-0.01809791,-0.004697374,0.12324731,-0.11554773,0.046116095,-0.5303668,-0.1874688,-0.110294245,0.04809674,0.29448298,0.3725036,-0.22803746,0.38792354,-0.0754407,1.3429374,-0.11550497,-0.14390542,0.10497837,0.33490488,0.22945349,-0.16615745,-0.2132356,0.41802007,0.28405482,-0.108073235,-0.490761,0.16111578,-0.27258497,-0.20481381,-0.2608845,-0.19649994,-0.018354962,-0.1651841,-0.35319692,-0.53888637,-0.031548582,-0.44106045,0.27896243,-2.215398,-0.31131425,0.14503445,0.59705245,-0.3152699,-0.24944712,-0.2159638,-0.62776023,0.16550553,0.0810313,0.44393083,-0.8032115,0.54258806,0.56509674,-0.63945854,-0.24548616,-0.8970276,-0.001015859,-0.049079083,0.23963833,0.039751768,-0.35754874,-0.39449963,-0.052792966,0.5615017,0.047218714,0.090751946,0.7522765,0.47685644,-0.04073743,0.38599077,0.13266036,0.6297551,-0.305406,-0.37672716,0.42266035,-0.33693948,0.29121703,-0.11412697,-0.014665706,0.7840036,-0.4746697,-0.7032561,-0.5631291,0.033540983,1.0116316,-0.48618922,-0.49081802,-0.016930245,-0.5717006,-0.21264158,0.25159535,0.88211393,-0.18242119,0.10753155,-0.85288435,-0.1928583,0.0044549108,0.3640993,-0.047465634,-0.0049971365,-0.44858482,0.7490918,-0.31498042,0.62790245,0.109323315,0.36739,-0.2658008,-0.4540903,0.31357405,0.95851564,0.35634857,-0.06999504,-0.34606367,-0.25727764,-0.20879732,-0.22450005,-0.16023003,0.80733955,0.69213265,-0.20875272,0.25380754,0.42618206,-0.18127047,0.004544552,-0.09721061,-0.22659321,-0.22823535,-0.013830402,0.6647301,0.9914934,-0.07408701,0.5330208,-0.23125944,0.49262595,-0.12650004,-0.7301118,0.5833677,0.8650955,-0.35253882,-0.04189561,0.5513102,0.30358478,-0.50087553,0.5063053,-0.64113015,-0.44014195,0.3866237,-0.01738509,-0.4814065,0.43085042,-0.28421983,0.43857726,-0.78428304,0.42100453,-0.20438115,-0.44091034,-0.69656456,-0.021021273,-2.0109575,0.23715727,-0.25069922,0.028811475,-0.27104658,-0.37652227,0.21750845,-0.46363205,-0.5323721,-0.017038073,0.24365723,0.7615747,-0.16811109,0.164247,-0.17252903,-0.48277688,-0.09659256,0.21212564,0.3744757,0.31455848,-0.27293485,-0.30194643,0.041013893,-0.12851143,-0.28555948,0.021628967,-0.8634887,-0.6558032,-0.0037412005,-0.61545837,-0.29885104,0.5224572,-0.34539643,-0.03319799,-0.5419311,0.033415213,-0.0031156358,0.09189709,0.16749005,0.27605128,0.19132912,-0.076332584,0.0071913684,-0.27397797,0.36139423,0.000100904275,0.18397999,0.18306255,-0.049207296,0.283233,0.2964079,0.66138256,-0.32841152,1.1274698,0.4086995,-0.16588712,0.053753573,-0.23659304,-0.6032756,-0.59454095,-0.12997517,-0.093875006,-0.6327022,-0.26591352,0.082490705,-0.43030554,-0.9965544,0.61094517,0.02997647,0.05360634,0.098699674,0.6388325,0.6642639,-0.071398,-0.12189678,-0.057012618,-0.318858,-0.50818646,-0.36869547,-0.4648571,-0.48206612,-0.16021928,1.1958811,-0.21916294,0.3064575,0.25112948,-0.26567593,0.08940763,0.20329335,-0.021119306,0.061230797,0.9074774,0.08554066,-0.44825655,0.27807215,-0.22264226,-0.13577226,-0.6856203,0.44829136,0.67964166,-1.0228356,0.6196336,0.49438137,0.03368939,-0.1814986,-0.45979837,-0.13306214,0.041163035,-0.22712652,0.47844872,0.24047518,-0.68324214,0.42537233,0.27385718,-0.33906367,-0.7336553,0.22049253,-0.14279126,-0.5726963,-0.09453331,0.42465773,-0.19334105,0.0520202,-0.30097553,0.127924,-0.28690678,0.21020555,0.06955833,-0.25945073,-0.004513619,-0.30329233,-0.33843368,-0.72456443,0.13943465,-0.61064166,-0.4388237,0.26754937,0.20859022,0.008326663,0.3858885,0.47355717,0.4146501,-0.37217075,0.10784573,-0.28995255,-0.43405965,0.30000597,0.46133786,0.4346006,-0.4731098,0.5015705,0.08421524,-0.31273466,0.01806678,-0.052749276,0.4112277,-0.13931812,0.3507832,-0.12908046,-0.119820826,0.23357524,0.7256742,-0.05509228,0.63612187,0.22512433,0.028080652,0.3286216,-0.03075774,0.2198532,-0.27913806,-0.5577951,0.033797625,-0.16560431,0.18433094,0.35170332,0.41892782,0.32765946,0.031109154,-0.1867698,0.013450068,0.12060467,-0.05699311,-1.5961418,0.28768247,0.27130088,0.8327345,0.31482813,0.10207578,-0.21449633,0.55949116,-0.29350123,0.113080546,0.26759666,0.003124403,-0.0771011,0.6211296,-0.5080936,0.49417147,-0.12228518,-0.045941524,0.13379563,0.063127026,0.34636182,1.0361536,-0.29657266,0.16232422,-0.0845225,-0.069452,-0.10814099,-0.30504316,0.075250566,-0.63409805,-0.5089492,0.9197716,0.25607795,0.6863149,-0.33333847,0.045028258,0.010472126,-0.2345848,0.3891501,-0.024390923,0.009545388,0.23503964,-0.5722586,-0.06770302,0.5386738,-0.24117617,0.005991923,-0.033828855,-0.089366876,0.03751735,-0.09946327,0.02009021,-0.13509564,-0.86348915,-0.079254806,-0.5632283,-0.46207795,0.45997688,-0.11937423,-0.0033447084,0.3385871,0.038127203,-0.08912208,0.5279184,0.066314645,0.93836105,0.2779511,-0.23356156,-0.23241296,0.20844495,0.40535858,-0.33910322,0.23037995,-0.24117573,0.4277954,-0.565578,0.70756453,-0.16148217,-0.58401936,0.103212155,-0.18395136,-0.1364332,0.35973915,-0.19923364,-0.028391035,0.37802026,-0.06618905,-0.37951797,-0.041913442,-0.36105162,0.18720399,0.34845024,-0.24934591,-0.14999898,-0.15743585,-0.071035914,0.57669497,0.08629823,0.5104915,0.5192066,0.072582364,-0.21845365,0.15891878,0.2959191,0.591033,-0.08998033,-0.18770166,-0.6015058,-0.4026758,-0.29115075,0.46419254,-0.026453963,0.12265343,0.25579613,-0.07782209,1.1061304,0.11946707,1.1756661,0.0011588745,-0.37559894,0.075409584,0.56685185,-0.13381423,0.04539563,-0.5079961,1.0492982,0.45149878,-0.24173129,0.062281072,-0.552752,-0.18184015,0.4226193,-0.3174092,-0.010800472,-0.2273815,-0.6214981,-0.36321315,0.1118712,0.3303227,-0.020635894,-0.24591604,0.32797056,0.26488736,-0.1748615,0.025111869,-0.72004455,-0.23079069,0.46950242,0.19509436,-0.24874626,0.20733085,-0.29199696,0.45238122,-0.75751257,0.03593528,-0.5285121,0.04992784,0.18049313,-0.38976866,0.10650065,0.13700843,0.2299563,-0.6919524,-0.18973601,-0.21352126,0.49096152,0.24719824,0.20189479,0.6463066,-0.2623327,-0.11300428,0.1670507,0.6115666,1.3213208,-0.32807776,0.15845172,0.10813502,-0.3606221,-0.5483195,0.47783732,-0.29263014,-0.096243896,-0.14673932,-0.531954,-0.65565735,0.2700786,0.15403649,0.107074074,0.009629054,-0.52976733,0.010834694,0.31303543,-0.27946335,-0.064495996,-0.16685413,0.2092075,0.5566685,0.123198405,-0.3656645,-0.12053765,0.25587016,-0.35795784,-0.33194658,-0.14625154,-0.46330193,0.16412576,0.03834027,-0.35204628,-0.22434223,0.03764067,-0.62960726,0.06435752,0.37107685,-0.24896458,0.18241335,-0.2622714,0.03763449,0.9424411,-0.1741271,-0.013445326,-0.41823485,-0.6895363,-0.8399639,-0.27645212,0.0017958283,0.26358145,0.07123633,-0.55538243,-0.100915216,-0.11913304,-0.2928409,0.11881101,-0.49771532,0.37999606,0.34902257,0.39293304,-0.45183596,-1.0664896,0.21395461,-0.020098979,-0.5409499,-0.5532324,0.46740502,0.07809909,0.83295333,0.07266058,-0.06287686,-0.012847845,-0.5447584,0.21352601,-0.2216821,0.11119362,-0.8233226,-0.19290498,575 +478,0.32698306,-0.4153019,-0.4568508,-0.07372327,-0.56168926,-0.009706276,-0.121080205,0.23424257,-0.16074672,-0.54159087,-0.07101375,-0.08694384,-0.034488004,0.25641376,-0.20630424,-0.3017104,-0.32893568,0.23304787,-0.6220214,0.67267865,-0.36392975,0.4683203,0.18996796,0.17798738,0.16156694,0.32056358,0.18920697,-0.019475846,-0.09111788,-0.06988372,-0.2267668,0.26298138,-0.646089,0.3174995,-0.2235965,-0.5411739,0.16577122,-0.43345478,-0.09526224,-0.67116517,0.09254299,-0.89253575,0.6525496,-0.12632297,-0.21911772,-0.021798015,0.10305577,0.43556663,-0.19374704,0.20476069,0.29239312,-0.08828802,0.040828686,-0.42838764,-0.059033714,-0.33554655,-0.39929768,-0.034347564,-0.6077028,-0.26684338,-0.037734907,0.17691861,-0.18304026,0.08040893,-0.24124144,0.2868013,-0.5077738,-0.1255971,0.18243293,-0.032000028,0.39594027,-0.6024905,-0.09257846,-0.21739875,0.27506563,-0.181049,-0.011432792,0.43139213,0.016824331,0.5787672,0.09755111,-0.1904435,-0.17454518,-0.18937674,0.10691934,0.4291584,-0.2637929,-0.19714616,-0.1304469,0.05657546,0.4154772,0.26808962,-0.057466585,-0.3263987,0.023306863,-0.19359148,-0.13896014,0.18312278,0.433947,-0.18940838,-0.2917538,0.09218548,0.6357421,0.06890006,-0.16589968,0.008074875,-0.06362851,-0.40758926,-0.19459201,0.17229234,-0.00379166,0.41643196,0.0715249,0.07763733,0.73476833,-0.16514812,0.019646117,-0.21931358,-0.15077804,-0.12598507,-0.0024183989,-0.37026313,0.07526283,-0.4754517,0.08903448,-0.17355537,0.674435,0.09634805,-0.6863542,0.19373408,-0.6082201,0.026715236,0.011164508,0.6273161,0.42167744,0.61579406,0.0625454,0.78840923,-0.41249985,0.14831017,-0.18478642,-0.15415426,-0.14941426,-0.16816266,-0.17780767,-0.48688444,0.18869296,-0.19302268,0.048757453,-0.3300657,0.35066622,-0.60873145,3.9396542e-05,0.16715908,0.65099186,-0.4343205,0.2769437,0.7885967,0.99156296,1.1341646,0.14738202,1.2091467,0.2881306,-0.26619598,0.02591857,-0.21167357,-0.57188445,0.09986083,0.57851803,0.2452599,0.3164213,0.047650952,0.06852226,0.34283024,-0.43890694,0.10828425,-0.32323223,0.44082,-0.05360139,-0.12759756,-0.6339698,-0.19035599,-0.020864965,0.044027664,-0.2578656,0.16621885,-0.33598137,0.44487068,0.14043768,1.504613,-0.3727834,0.07798183,0.17542766,0.23174353,0.17635547,-0.08122238,-0.028373409,0.37469912,0.48843774,-0.045321785,-0.61655027,0.21652505,-0.27806097,-0.59361976,-0.18114176,-0.2418985,0.06203198,-0.09494831,-0.46456614,-0.40127322,0.112062335,-0.33041698,0.3390488,-2.3269272,-0.110495806,-0.24417453,0.26934347,-0.2859045,-0.20551722,0.053738806,-0.3243677,0.2861337,0.35364726,0.28636858,-0.5672003,0.49660197,0.4412096,-0.38266727,-0.12788187,-0.6984617,-0.08641473,0.016505476,0.46063423,0.066086695,-0.1277066,-0.08051986,-0.0038021845,0.62078464,-0.29702595,0.10892685,0.5334314,0.2628002,0.16296665,0.5404463,0.17507349,0.33229938,-0.42442662,-0.1314288,0.47478685,-0.14470677,-0.007731442,0.19156215,0.17490889,0.36737362,-0.6821719,-0.6448666,-0.73603964,-0.46557692,1.0950763,-0.2046447,-0.5273782,0.18243258,-0.025727382,-0.078943595,-0.044622567,0.23513548,-0.14435916,0.21654531,-0.6688613,-0.030394422,-0.0901695,0.35650665,0.0677064,-0.006043054,-0.46491888,0.66072196,-0.06890753,0.6011872,0.45305166,0.37845835,-0.023802383,-0.25537443,-0.03428681,1.0167992,0.5402701,0.0114348335,-0.1693873,-0.261091,0.19495907,-0.083590224,0.095363386,0.2680152,0.8862319,-0.042329736,0.19134007,0.2852586,-0.13635416,0.06613921,-0.08397155,-0.22618045,-0.0506096,0.2117363,0.34776992,0.32501093,0.049199708,0.4713254,-0.3020446,0.4581729,0.005626968,-0.59916246,0.3867968,0.7320389,-0.21565068,-0.0391333,0.5153867,0.6949745,-0.36532313,0.5414806,-0.703049,-0.15465455,0.6053983,-0.24051763,-0.44257042,0.3176864,-0.2674782,0.390821,-0.944682,0.4418831,-0.43104172,-0.49709633,-0.7742619,-0.20333146,-1.9539179,0.23098274,-0.16245958,-0.16706295,-0.056458883,-0.28816155,0.3606712,-0.6808979,-0.5316946,0.06582271,0.12297501,0.4375139,0.0719645,-0.054307584,-0.25042704,-0.3902712,-0.10332155,0.29744396,0.16436948,0.1250064,-0.19698493,-0.4890183,-0.16338311,-0.22069332,-0.63549674,0.18905976,-0.6423624,-0.45299858,-0.19928731,-0.46260595,-0.22687353,0.5501901,-0.082272254,-0.05223803,-0.13944772,-0.009909375,-0.22454132,0.18074356,0.19605933,0.35011038,0.1772275,-0.2717376,-0.021993961,-0.46647277,0.22590348,0.14138612,0.06536294,0.1799585,-0.29475227,0.17679061,0.4863235,0.6477645,-0.08904467,0.8814766,0.4834095,-0.2516677,0.33284917,-0.42267385,-0.37439808,-0.80229014,-0.425533,-0.042783994,-0.37048978,-0.61600405,0.07017249,-0.28467897,-0.7110814,0.7579961,-0.18758737,0.3268737,0.021916376,0.32982704,0.323857,-0.08210548,-0.07576526,-0.22519366,-0.1573924,-0.42906922,-0.39384,-0.8002433,-0.4683192,-0.2499719,1.3093847,-0.118010946,0.019900432,0.05270671,-0.30304033,0.34556842,0.03899041,0.108634576,0.36913842,0.33867306,0.1008269,-0.69678813,0.37674993,0.2719265,-0.1140344,-0.296916,0.06718888,0.72847646,-0.6358074,0.27752897,0.15744771,0.09516067,0.11229302,-0.5094509,-0.039225526,0.010665404,-0.37306204,0.39544603,0.12724781,-0.51659673,0.474195,0.3568124,-0.38748756,-0.6987985,0.13692226,-0.074631795,-0.15405545,0.092539735,0.3241797,-0.078952774,-0.17229891,-0.28001356,0.2548527,-0.41823024,0.26697198,0.3118612,-0.07028923,-0.009980346,-0.23613071,-0.3642258,-0.81585914,0.27389312,-0.38232654,-0.2568379,0.40321735,-0.016037975,-0.25553796,0.36233148,0.16800635,0.48385257,-0.29477423,0.09849744,-0.10503466,-0.30992624,0.3200999,0.45735258,0.21069585,-0.2731332,0.46781558,0.03753844,-0.10891642,-0.31635508,-0.020862805,0.30699447,0.07828973,0.097061686,-0.34566903,-0.21819162,0.5035506,0.74272907,0.24676748,0.5468172,0.0024778268,-0.23091304,0.3381458,0.20237528,0.09774738,0.08906656,-0.23926142,0.20269196,0.18358366,-0.005974103,0.38967124,0.17391801,0.29546627,-0.12051549,-0.10474624,-0.01209751,0.35587564,-0.19360103,-1.0796729,0.22909215,0.13049322,0.6272484,0.6865665,0.21628782,0.10877253,0.53542525,-0.48647544,-0.049574196,0.35453525,0.011457758,-0.39746907,0.6255951,-0.5969803,0.29791164,-0.07190175,-0.000268057,0.092472635,-0.11304832,0.3550994,0.85766345,-0.115440965,-0.03123339,-0.083180256,-0.010560983,0.010699489,-0.40299812,0.021024564,-0.23646823,-0.43283033,0.62752813,0.17846014,0.477276,-0.13673164,-0.05188089,0.1673131,-0.32402918,0.56639194,0.09093604,0.06584123,0.03177155,-0.19245787,-0.19386463,0.5121862,-0.0031160542,0.024449902,-0.06190757,-0.5866456,0.15444212,-0.04304866,-0.012394832,0.14336355,-0.65526295,0.31421384,-0.38487926,-0.301423,0.31192514,-0.047100868,0.035479564,0.06290589,-0.0568124,-0.25684574,0.055843476,0.14633079,0.76576084,0.056901593,-0.33634076,-0.09736871,0.076558776,0.17243645,-0.37859637,0.18792011,-0.11245748,0.122346796,-0.7861766,0.5252659,0.061320074,-0.37482414,0.3824319,-0.28555688,-0.1592025,0.50783724,0.03436764,-0.06747576,0.07985401,0.07155243,-0.24505083,-0.28800553,-0.2870519,0.06642108,0.0615494,0.065800734,0.03301314,-0.1113953,0.013361065,0.7266422,0.13159385,0.508493,0.16573702,-0.077191114,-0.53099835,0.08062967,-0.06118806,0.18702814,0.10135051,0.2857418,-0.15099466,-0.45105448,-0.2517225,0.009053563,-0.24136059,0.30163702,0.10659128,-0.4509265,1.0849847,0.048021138,1.1932623,-0.010859762,-0.30404267,0.065078035,0.55954975,-0.14479709,0.09677531,-0.3472019,0.92195374,0.68005645,-0.10712313,-0.04062166,-0.23759554,-0.27242798,0.23760554,-0.2913173,-0.01597367,-0.114992246,-0.5229719,-0.63766706,0.19880913,0.34229207,0.03183653,-0.0029226243,-0.04501713,0.20322953,-0.034070335,0.37657598,-0.32271904,-0.13954255,0.15328793,-0.035930555,-0.061046857,0.11984187,-0.55553836,0.31314704,-0.65230995,0.2842033,-0.36424154,0.1307652,-0.003149867,-0.29781228,0.010006699,-0.011975833,0.21970798,-0.33241183,-0.3290123,0.0516954,0.5570424,-0.15267135,0.23828271,0.782782,-0.25464806,0.29094929,-0.042539943,0.34986755,1.1285423,-0.36862373,-0.0008775592,0.17302577,-0.5314435,-0.48058322,0.33386388,-0.18447383,-0.19031276,-0.13257952,-0.5628789,-0.4066329,0.2282268,0.30126998,-0.14263509,-0.055771586,-0.48122665,-0.032610517,0.36665395,-0.48684406,-0.16617772,-0.23107457,0.47197446,0.74408966,-0.35391882,-0.4610967,0.059545867,0.26354656,-0.5350713,-0.34707513,-0.11104089,-0.22591887,0.51940984,0.05178914,-0.26792863,-0.050508764,0.17236368,-0.35648522,-0.3369592,0.22342502,-0.3727808,-0.08633475,-0.3322532,-0.016221954,0.8425025,-0.048767872,-0.32085818,-0.43937835,-0.43614265,-1.0036114,-0.5641801,0.5554804,0.29918072,0.112170205,-0.4754565,0.2705829,-0.23237583,-0.19984205,0.09770717,-0.3728227,0.33041117,0.31352663,0.44315848,-0.32829806,-0.72252935,0.31324974,0.1942804,0.11263404,-0.55783856,0.76053727,-0.040186286,0.6177658,0.046606116,-0.101672545,-0.044427585,-0.5716558,0.24893169,-0.23765509,-0.15503731,-0.7579282,-0.11159326,585 +479,0.2998212,-0.20368661,-0.4247642,-0.09670154,-0.19633774,-0.01818316,-0.23171844,0.18520153,0.17660537,-0.31722623,-0.018266082,-0.2320554,0.049667038,0.17401312,-0.117644615,-0.72319794,-0.13122256,0.02857081,-0.679072,0.57992846,-0.43206462,0.22068074,0.15305234,0.15476485,0.09549921,0.27416107,0.26118067,-0.23763637,0.07570897,-0.02404301,-0.00087280787,0.08261279,-0.77585447,0.15660183,-0.14856632,-0.032921545,0.12191224,-0.29227313,-0.61483943,-0.71483886,0.31875318,-0.7533511,0.48068503,0.17660162,-0.25204128,0.32515407,-0.0036176953,0.23428059,-0.4243235,0.13317193,0.19362506,-0.005045993,-0.05408412,-0.025676157,-0.15840735,-0.32588914,-0.60810757,0.098721825,-0.4941866,-0.3018089,-0.45931748,0.055276256,-0.35465094,-0.07846235,-0.12329104,0.32737175,-0.4318386,0.017961,0.2539886,-0.04553003,0.34781307,-0.5828739,0.048165653,-0.17815523,0.16313317,-0.14304976,-0.16487162,0.42347285,0.2255419,0.38973188,0.03996805,-0.21360943,-0.08215829,-0.07541631,0.16868581,0.40894505,-0.2342755,-0.31166703,-0.019483803,0.045525305,-0.014377473,0.14085978,-0.082332626,-0.46690673,-0.10736004,0.058648404,-0.046589263,0.26849014,0.6225672,-0.23240569,-0.38379017,0.33000636,0.35964727,0.3137512,0.0767243,-0.014287536,-0.0034500095,-0.59108293,-0.16704348,0.19924144,-0.22141302,0.5346859,-0.12355016,0.052072454,0.6388788,-0.16153696,0.07622909,-0.12057377,-0.03961476,0.12770241,-0.10773473,-0.17079438,0.29575175,-0.54609686,0.18567468,-0.18516822,0.68500817,0.19762142,-0.65649134,0.51279813,-0.5610241,0.23406434,-0.056824088,0.6326771,0.8457801,0.30639657,0.0720763,0.7463202,-0.5264932,0.15094325,-0.090754405,-0.4380808,0.33115783,-0.1898206,-0.057929743,-0.33612007,-0.2396314,-0.029632227,-0.21436603,0.0068975175,0.32436213,-0.53186524,0.033779986,0.0110321,0.7297227,-0.30236173,0.033453584,0.40996864,0.96785504,0.868801,0.1005558,1.2557856,0.36648232,-0.27308407,0.40268874,-0.29412356,-0.9075107,0.19286713,0.40889812,0.11518967,0.19878559,0.09971933,-0.18707402,0.23773184,-0.45248514,0.07279148,-0.29722527,0.3471364,-0.08649992,-0.1533352,-0.34136257,-0.19722867,-0.1074558,0.12791313,-0.09058435,0.29292107,-0.13837649,0.06277863,0.035667527,1.4503534,-0.20446433,0.2541741,0.0883821,0.5015919,0.229103,-0.1788197,-0.10040756,0.31624562,0.466806,0.30962968,-0.65396917,0.13798583,-0.18228228,-0.31584305,-0.16577384,-0.37405285,0.12480914,0.07082375,-0.37219235,-0.079312906,0.11424885,-0.3048634,0.4970787,-2.7174115,-0.11193369,-0.11926542,0.3245124,-0.31677675,-0.17890158,-0.20278727,-0.47237173,0.5033844,0.36203933,0.5382926,-0.5949462,0.13254859,0.46422502,-0.54272985,-0.003291905,-0.5419224,-0.07150592,-0.014335955,0.48034105,-0.0060175485,-0.023194566,-0.019023884,0.31121415,0.4119309,0.15744832,0.027421901,0.15990876,0.35029808,0.0676296,0.4157064,-0.09814894,0.32030553,-0.27413717,-0.18686096,0.43922064,-0.0813825,0.37819886,-0.112800635,0.13338992,0.22015204,-0.51154673,-0.93231666,-0.5932558,-0.45195183,1.1677636,-0.43331283,-0.4585082,0.3610175,-0.11427285,-0.09051515,-0.051394336,0.5912767,0.021738788,0.19072117,-0.7071643,0.051399656,0.026514815,0.3274646,0.16603367,0.032020085,-0.41911998,0.6005686,-0.05861113,0.13592042,0.32227045,0.18668255,0.12634805,-0.58506984,0.13917877,0.849052,0.3794081,0.085034244,-0.22063844,-0.2650352,-0.023096355,-0.1196819,-0.010545512,0.55467147,0.7833571,-0.038956583,0.060273502,0.10759834,-0.016670082,0.123433575,-0.12769522,-0.31925276,0.0042165774,-0.047654334,0.5173764,0.56206596,-0.09758348,0.2776345,0.07369367,0.15367362,0.012974701,-0.42468023,0.5274172,1.0686283,0.06910253,-0.076818295,0.5216071,0.5198514,-0.20252274,0.3933187,-0.54603547,-0.31152788,0.48723164,-0.1860009,-0.46640876,0.33044624,-0.34852022,0.03963875,-0.6802661,0.39682022,-0.31559685,-0.4303593,-0.5214337,-0.018218726,-3.85453,0.20598142,-0.3701151,-0.17159887,-0.15367256,0.03309554,0.46840897,-0.4471984,-0.4117916,0.22519521,0.05374641,0.50751203,-0.121085085,0.041822977,-0.21335186,-0.11850927,-0.32088667,0.19239187,0.30690703,0.17930092,-0.18068603,-0.3764649,-0.24670537,-0.18561946,-0.4291627,0.13439612,-0.47430465,-0.5075539,-0.26393634,-0.5538222,-0.024426047,0.8149997,-0.21641256,-0.025765078,-0.14012754,-0.015245655,-0.1345773,0.19348504,0.36110988,0.28688312,-0.024367508,-0.048136335,-0.28999677,-0.3183884,0.33874622,0.18039492,0.30893952,0.38611788,-0.19254704,0.023049304,0.5257485,0.4549026,-0.28569728,0.7971168,0.43921795,-0.12297162,0.33754608,-0.25544378,-0.24337217,-0.5955773,-0.39425823,-0.18647252,-0.2671154,-0.6037938,-0.09661948,-0.29827586,-0.6581941,0.42434835,-0.17559804,0.27073738,-0.0086430395,-0.05504281,0.37930062,-0.11095597,-0.075407855,-0.06736316,-0.12800929,-0.5362039,-0.22706138,-0.60320884,-0.5346354,0.22050892,0.8633738,-0.2778338,-0.16737649,-0.073357865,-0.19193129,-0.08288447,-0.18625145,0.01301081,0.2549778,0.35500082,0.16628885,-0.74187034,0.6937429,0.06136799,-0.17422691,-0.69127476,0.21619208,0.5577834,-0.6883425,0.5524116,0.26745114,0.057704594,-0.06851681,-0.51314706,-0.34487048,0.040420566,-0.2558279,0.33275932,0.06649439,-0.78716516,0.37217078,0.12507921,-0.4175312,-0.675976,0.5743365,-0.029855559,-0.31478074,0.10985255,0.31023726,-0.1582187,0.13098994,-0.13638154,0.45964575,-0.2774714,0.35326698,0.26122788,-0.06826972,0.3878823,-0.09089075,-0.15597937,-0.5610007,0.1279565,-0.42489752,-0.26152706,0.3376722,0.09540326,-0.041488107,0.037952505,0.08946431,0.46053424,-0.14910842,0.16027157,-0.008889573,-0.4240252,0.41627678,0.50836176,0.48816195,-0.39662382,0.6405934,-0.010048364,-0.24324729,0.06309112,0.2737054,0.35280243,-0.036093056,0.2393804,-0.06795376,-0.024843782,0.26290038,0.9304576,0.08188777,0.46215174,0.039994378,-0.021578338,0.4611413,0.12718216,-0.025153415,0.029243529,-0.5191384,-0.047205605,-0.0035087892,0.21301118,0.3960397,0.06815784,0.21530096,-0.18116894,-0.27247468,0.043701477,0.31516057,0.2103934,-0.9974028,0.2648075,0.15282695,0.5471373,0.62350804,-0.0021696878,0.055906318,0.65575874,-0.07830126,0.022765351,0.25119624,-0.06019656,-0.6711582,0.52173007,-0.593026,0.32566303,-0.014604209,-0.06043643,0.15054108,0.0813771,0.38514787,0.8395794,-0.17318912,-0.07421471,-0.07304357,-0.3064485,0.16848142,-0.3693952,0.14399531,-0.27893475,-0.4832911,0.546531,0.53453207,0.2080742,-0.07821892,-0.025735008,-0.0537112,-0.20364963,0.29172823,-0.0734389,-0.07229742,-0.004231078,-0.6978464,-0.2592208,0.5809065,-0.0904956,0.15855849,-0.11840587,0.023808075,0.26145956,-0.29542065,0.014241091,-0.19057314,-0.78683656,0.06987547,-0.49733225,-0.26881692,0.39354214,-0.3406877,0.33019647,0.14363779,0.014973627,-0.4151915,0.3725907,0.059241615,0.7033066,-0.1294205,-0.24394502,-0.5067528,0.055405475,0.15644339,-0.2185485,-0.1312252,-0.21784271,-0.04214459,-0.72162664,0.49104553,-0.1390749,-0.26048505,0.06136941,-0.19233611,-0.059267487,0.6456631,-0.1002062,-0.1554378,-0.11377026,-0.18903187,-0.24164869,-0.13382296,-0.05598822,0.21340862,0.32646576,0.05508872,-0.0104616415,-0.047763128,-0.09434421,0.35855204,0.19964997,0.33877197,0.1337611,0.113129675,-0.18944502,-0.035389,0.28976682,0.47338486,0.25359362,0.18866968,-0.18392897,-0.43792614,-0.42470056,0.056508534,-0.0990909,0.39723402,0.08137425,-0.40365896,0.60295856,0.10931873,1.0480721,-0.0061672097,-0.19527832,0.12367363,0.5293731,-0.05904596,-0.25236732,-0.3404615,0.8890156,0.725133,0.02727485,-0.19415809,-0.28755215,-0.1821781,0.12728201,-0.24998453,-0.016238566,0.04901456,-0.7044867,-0.09012761,0.1507121,0.41675234,-0.0018669942,-0.07994708,-0.20422052,-0.0063035255,0.032236297,0.23904805,-0.5504119,-0.15984729,0.31417316,0.06649683,0.04751721,0.17375861,-0.36298963,0.47935182,-0.48253712,0.031913865,-0.23682687,0.08351584,-0.13690317,-0.2670421,0.21656837,-0.046011303,0.4866387,-0.30332613,-0.27993006,-0.24458267,0.49480978,0.16131945,0.19343229,0.6999179,-0.19972281,0.074549325,-0.0006375291,0.47470936,0.95497745,-0.2558924,-0.03549253,0.26600742,-0.4679682,-0.5721747,0.30751878,-0.4000934,0.219209,-0.12678854,-0.2718032,-0.4243378,0.12986854,0.0916233,-0.00074732304,0.012863551,-0.78395474,-0.2613597,0.12475274,-0.1301425,-0.2955935,-0.4104847,0.2883063,0.7261152,-0.422813,-0.19417599,0.20268805,0.057792496,-0.27650514,-0.47489664,-0.030260669,-0.2384417,0.1251739,0.06486987,-0.24981976,0.047082085,0.19642842,-0.36382005,0.17890474,-0.024550255,-0.40242824,0.013729299,-0.045912284,0.008366479,1.0181668,-0.20480332,-0.07872092,-0.63926643,-0.5608946,-0.87837684,-0.40165514,0.6706471,0.24955034,0.13525836,-0.36046746,-0.04394281,-0.025553342,0.24006605,-0.06061036,-0.36661196,0.4417873,-0.051629584,0.46382824,-0.17281404,-0.78214055,0.09858084,0.1665614,-0.24090454,-0.5517184,0.46723673,-0.12994434,0.6979098,0.07813902,0.11731561,0.20052369,-0.43387604,-0.048508532,-0.2569992,-0.15106657,-0.67383045,0.15804799,587 +480,0.4603727,-0.27867603,-0.47110733,0.033541147,-0.35226664,0.023878297,-0.45335892,0.24898624,0.28144833,-0.11542962,-0.08310749,0.12885348,-0.13476384,0.3478045,-0.13423903,-0.7606854,-0.20701453,0.045928363,-0.59006447,0.8011022,-0.510345,0.33667874,-0.23667134,0.31298813,0.18897322,0.45295367,0.20281304,0.077731185,-0.078535564,-0.07528794,0.07874538,0.17870982,-0.55824834,0.26227385,-0.24626608,-0.32952467,0.1400033,-0.5101317,-0.23193555,-0.6655814,0.17228864,-0.667572,0.52748877,-0.07201522,-0.114595234,0.056774028,0.24408627,0.30753762,-0.30749828,0.09766967,0.076917425,-0.06862021,-0.08031734,-0.30369514,-0.10217776,-0.097847275,-0.42097315,-0.11678415,-0.65966177,-0.27191144,-0.114483476,0.19224766,-0.29130453,0.05776157,-0.02883929,0.21112405,-0.42022133,-0.018570619,0.27690876,-0.15954266,0.058231104,-0.78253233,-0.018276794,-0.0391344,0.45646566,-0.045764897,0.040155716,0.50472915,0.12057937,0.4130609,0.16343811,-0.2908569,-0.2983457,-0.27397656,0.24884152,0.44686022,-0.099399365,-0.20181021,-0.4191539,0.13856433,0.46724993,0.30180115,0.0009640179,-0.17553282,0.0074094906,-0.34700137,-0.095708355,0.56321156,0.55138904,-0.19860777,-0.27153614,0.29140097,0.68023884,0.50332475,-0.18042217,0.049146313,-0.027717004,-0.35070047,-0.13030449,0.14790085,-0.04554121,0.40681773,0.09418005,0.19723049,0.6043191,-0.069673665,0.021765003,-0.15046991,-0.011743145,0.055272453,-0.4235137,-0.18644704,0.14455687,-0.5029746,0.13584457,-0.09785725,0.46786326,0.08957725,-0.69128793,0.35903826,-0.5209779,0.1007057,0.16430406,0.5301053,0.58867943,0.3640471,0.22879314,0.89819527,-0.33557558,0.25909504,-0.08132337,-0.21163093,-0.17143787,-0.12467365,0.21104598,-0.455092,0.35018554,-0.27527577,0.07884394,0.07706342,0.38373843,-0.42894512,-0.10720042,0.068248115,0.8056003,-0.24616088,0.09229857,0.8357329,1.2100716,1.2029076,-0.1658425,1.1951592,0.2363055,-0.13133518,-0.09225311,-0.32639804,-0.62239736,0.17316069,0.38220435,0.03406518,0.6249901,-0.05641104,-0.03133745,0.1806297,-0.3973753,-0.008025916,-0.019549387,0.32959113,0.26557174,-0.06602859,-0.4556751,-0.15739611,-0.014159381,-0.13111384,0.18141447,0.21032618,-0.2527922,0.34180504,-0.05173862,1.3074769,-0.12634929,0.0822564,0.1986619,0.40941933,0.34851235,-0.030869212,-0.101775214,0.46270627,0.32237726,-0.14573132,-0.6669374,0.10222733,-0.44218636,-0.35698,-0.15038402,-0.3126903,-0.080562055,0.021769142,-0.20073195,-0.1133947,-0.13447022,-0.27231723,0.4166669,-2.7550073,-0.3616455,-0.20252737,0.271687,-0.3260696,-0.14557187,-0.12079992,-0.43646076,0.46612406,0.29652467,0.37703475,-0.30596766,0.40637913,0.4597168,-0.6097885,-0.16670159,-0.37414548,-0.006240219,-0.0012977315,0.6561139,-0.09555197,-0.096048005,-0.11056017,0.35890183,0.7300932,0.1822183,0.17011544,0.6449261,0.40687254,0.049051724,0.47168964,-0.07789079,0.4957692,-0.4475889,-0.045197766,0.42354417,-0.375536,0.45637164,-0.26154917,0.07447873,0.48452908,-0.5243043,-0.8176219,-0.4466191,-0.25476697,1.0951302,-0.29460636,-0.5635356,0.08074772,-0.16972251,-0.065364696,0.062206876,0.52967703,-0.14736855,0.024526546,-0.65986204,0.03858636,-0.09450968,0.13269699,0.03348751,0.033924203,-0.3783438,0.6962877,-0.08533143,0.62956965,0.3998221,0.37054825,-0.04333413,-0.3752761,0.14723013,0.6640444,0.465551,0.004857806,-0.10781113,-0.10240489,-0.019030979,-0.31967166,0.07860933,0.662649,0.5769062,-0.092618786,0.1517081,0.26705107,-0.09995749,0.082773924,-0.13999566,-0.15128966,-0.13559496,0.1052867,0.4438924,0.8247245,-0.14386071,0.23610364,-0.09196406,0.21310684,-0.052316926,-0.42240185,0.55784065,0.44439024,-0.30796078,-0.08993476,0.49178928,0.49354118,-0.41467014,0.5826245,-0.6673732,-0.2830547,0.7651476,-0.16000739,-0.32757488,0.16129749,-0.3295782,0.06008238,-0.6898826,0.22479418,-0.35297093,-0.3063772,-0.42734274,-0.20796444,-2.50992,0.23565248,-0.1647584,-0.17385745,-0.47634146,0.0061826366,0.1833419,-0.69975007,-0.75959486,0.22341476,0.16933592,0.4870966,-0.16167334,0.16765523,-0.19465698,-0.28408507,-0.22883114,0.21363382,0.03009052,0.26270908,-0.10207593,-0.25447705,-0.118584044,-0.0011262213,-0.44064537,0.1316231,-0.3676571,-0.2172793,-0.11203061,-0.52916133,0.035322104,0.5832519,-0.38393202,0.04566902,-0.23139095,0.034812693,-0.12508367,0.03310029,-0.018279893,0.35215256,0.30016065,-0.20898592,0.068809606,-0.24479564,0.5358502,0.028880265,0.29990456,0.024072042,-0.12719451,0.1571327,0.35571298,0.6569924,-0.10724444,0.94774663,0.23505796,-0.09939052,0.3475234,-0.32893184,-0.23391183,-0.5770187,-0.30340937,0.042154968,-0.33523864,-0.7293037,-0.07468283,-0.34326407,-0.8474429,0.4588821,-0.0132663315,0.6219581,-0.072323464,0.18889736,0.355658,-0.23424672,0.061552882,-0.043417867,-0.14167662,-0.4021856,-0.29370707,-0.5953437,-0.48003128,0.24662362,0.701048,-0.44178015,-0.09065298,-0.006201259,-0.47210386,0.10747266,0.05730951,0.08087056,0.3047455,0.33999544,0.3605108,-0.61259073,0.21931338,0.059934873,-0.1966337,-0.4178656,-0.009466559,0.6412597,-0.6400701,0.5463955,0.30135164,-0.025883798,0.11005884,-0.6867881,0.024615819,0.119654655,-0.17311423,0.41604766,0.19915023,-0.69113344,0.4986836,0.10792874,-0.5889479,-0.77371997,0.27643877,-0.11229932,-0.19044006,-0.07618793,0.4831889,0.27320716,-0.02049012,-0.16128953,0.24816035,-0.27992254,0.1727145,0.028506193,-0.1588779,0.27158633,-0.121939525,-0.5372341,-0.6769786,-0.006603543,-0.5250157,-0.22282144,0.4683447,-0.02796024,-0.21601607,-0.10275315,0.3174972,0.40794954,-0.36158293,0.26006302,-0.031403195,-0.39226678,0.29631138,0.45596105,0.4278461,-0.34861284,0.42576838,0.09686584,-0.06353985,0.32476297,0.017245378,0.2744765,-0.026432684,0.3356518,-0.03440523,0.046687674,0.1637107,0.5567749,0.13780892,0.27103874,0.16823383,-0.34477273,0.44534725,0.13192663,0.10633381,-0.19810836,-0.33966732,0.037169714,0.05864886,0.0437291,0.49547863,0.39858943,0.30579066,0.0919266,-0.21955141,-0.08132141,0.31752712,-0.20880935,-1.1060623,0.3274041,0.11943253,0.90401566,0.4459332,0.19831507,0.08249646,0.51211107,-0.08719951,-0.029899647,0.47568303,0.070617475,-0.48257694,0.5976558,-0.3934036,0.35570303,-0.13754871,-0.04165428,0.26930514,0.3057564,0.52579486,0.6748869,-0.21094058,-0.10027246,-0.16605604,-0.21771467,-0.10721302,-0.18290424,0.2516928,-0.23909567,-0.44451037,0.59222984,0.44948572,0.34847802,-0.21159902,-0.016643459,0.006730452,-0.2787663,0.24877921,-0.112839304,-0.07543285,0.05020726,-0.510835,-0.1344496,0.4089656,-0.025343375,-0.011216776,-0.32479593,-0.30314073,0.034473907,-0.19331042,0.06631408,0.05935865,-0.8251866,0.13382258,-0.07368356,-0.45859054,0.32051,-0.1259512,0.074247345,0.23875652,-0.025592577,-0.23661123,0.26944163,0.017028153,0.7940398,-0.046332564,-0.3907241,-0.3051969,0.039518613,0.23766232,-0.28141758,0.26874372,-0.26593068,0.2156841,-0.6190688,0.6514703,-0.21091442,-0.25735217,0.12668751,-0.26893663,-0.19634198,0.55688834,-0.17083351,-0.08871573,-0.12091359,-0.3247531,-0.4893119,-0.30375502,-0.3619573,0.109680906,0.26275513,-0.14613733,-0.1378225,-0.23562217,-0.010911486,0.5208566,0.08726072,0.37527177,0.17821786,0.06755014,-0.3859808,0.09802823,0.23553808,0.29687637,0.24323227,0.14417683,-0.34968874,-0.4786108,-0.34023866,0.51416725,-0.25682622,0.12762089,-0.070095435,-0.28702903,0.9264723,0.11562734,1.117239,0.05401206,-0.2787167,0.07410073,0.66646516,-0.31646666,-0.06964994,-0.36874527,0.9491778,0.59012127,-0.17480914,0.048857115,-0.3538343,-0.20216711,0.2849409,-0.4689477,0.063994214,-0.20843394,-0.33779377,-0.43807745,0.1486328,0.13803211,0.0080710305,-0.19840679,-0.11836188,-0.019699434,0.18131278,0.40384457,-0.5443326,-0.23064362,0.29283255,0.0667197,0.036608458,0.117472015,-0.35439137,0.4431908,-0.665307,0.25395173,-0.40323034,0.0672655,-0.2009916,-0.41992873,0.16193247,-0.08230747,0.2834535,-0.3528838,-0.46826395,-0.1472023,0.1891347,0.0065994305,0.13573658,0.50245196,-0.29019848,0.069728844,0.08091177,0.65097016,1.0646399,-0.27017447,0.06566915,0.17244013,-0.5239518,-0.5960828,0.14936662,-0.48719543,-0.055459976,-0.26049536,-0.49204245,-0.7156002,0.18244389,0.107923664,0.16828713,-0.08026072,-0.7776082,-0.20308897,0.22882614,-0.21573313,-0.20310311,-0.17950991,0.2524269,0.92022556,-0.17605105,-0.58145505,0.10130082,0.23215587,-0.20247194,-0.64388555,0.07567289,-0.15039556,0.34586427,0.12925552,-0.13581063,-0.21996114,0.21826528,-0.52505285,-0.06799954,0.21000825,-0.3201756,-0.14173034,-0.24902055,-0.010604705,0.70878464,-0.39206558,0.022681365,-0.6066329,-0.47176236,-1.0286871,-0.49799448,0.11455438,0.24157543,0.10477544,-0.5745989,0.20360616,-0.366102,-0.08957599,0.18302348,-0.45279,0.24995656,0.18398036,0.5166952,-0.4414064,-0.9406749,0.12279823,0.25673386,-0.22555919,-0.56177956,0.54537374,-0.008439318,0.66445047,0.13824211,-0.15447442,-0.13368282,-0.5599637,0.22356082,-0.3885417,-0.15376553,-0.67336446,0.25373003,598 +481,0.48931524,-0.0030343276,-0.5105416,-0.25668636,-0.3532347,0.16054556,-0.22562978,0.17315255,0.4137017,-0.22144954,0.016345961,-0.056916647,0.047544487,0.40893054,-0.051293265,-1.0003006,0.1186416,0.14677295,-0.4356725,0.2767928,-0.6263861,0.51039106,0.011562629,0.28535554,-0.03219322,0.14455439,0.30562493,-0.18718891,-0.073142536,-0.12941511,-0.1261055,0.1628593,-0.53649175,0.14320016,0.028635785,-0.23512258,0.024548037,-0.33442053,-0.25675103,-0.7283478,0.43607023,-0.6697467,0.4792247,-0.051597007,-0.36686936,0.12192867,0.01677989,0.25574782,-0.36039108,0.20701928,0.21597779,-0.45284313,-0.097791575,-0.17790832,-0.3654129,-0.48193577,-0.5849709,-0.07148874,-0.46152738,-0.25487694,-0.5083934,0.23773351,-0.4853217,-0.096023574,-0.07799981,0.35627064,-0.28886387,-0.04010972,0.31474185,-0.175697,0.13673815,-0.34046957,-0.10628726,-0.021813262,0.24357864,-0.026139854,-0.19476917,0.34160915,0.41418478,0.4429548,0.024594668,-0.34624267,-0.17828062,-0.09794106,0.14184545,0.6368971,-0.1691339,-0.35568315,-0.18377678,0.0055089956,0.10095386,0.13551427,-0.20328525,-0.24929312,-0.015811348,0.2743524,-0.17432417,0.5427161,0.43048105,-0.36099955,-0.19432071,0.34707823,0.3280377,-0.025770243,-0.24660742,0.1880623,0.07618087,-0.66913927,-0.22540331,0.3451284,-0.1160546,0.4228107,-0.13112703,0.08206582,0.87227863,-0.33370665,-0.07193103,-0.20952594,0.02715048,0.0786149,-0.14385006,-0.17151698,0.21939929,-0.55021244,0.0066351336,-0.29149523,1.0207511,0.24859487,-0.838264,0.45448294,-0.44286317,0.17501937,-0.22219123,0.63861334,0.7037696,0.34174034,0.35260513,0.88082296,-0.5225754,0.104486026,0.14914568,-0.37659854,-0.029187847,-0.16912143,0.06252739,-0.39517713,0.06347727,0.12387089,0.034051996,0.29690108,0.19373773,-0.38856998,-0.07466839,-0.15424927,0.74113303,-0.44869545,-0.03949819,0.79740375,0.9211138,0.8642995,0.117391944,1.3919256,0.5711409,-0.29466954,0.04880045,-0.39673546,-0.5087438,0.17745206,0.33130106,-0.2163746,0.22425468,0.017764058,0.0837487,0.32430425,-0.4352958,-0.099939264,0.05605414,0.19929683,0.017558059,-0.15439984,-0.47615832,-0.22454068,0.16075297,0.03311009,0.16246544,0.29043952,-0.28496835,0.42755815,0.035210133,1.0991334,0.14696312,-0.045692023,-0.1335193,0.3993104,0.30288652,-0.16853757,-0.15303023,0.27129707,0.47250244,-0.16732264,-0.60218185,0.016028984,-0.29901478,-0.23237479,-0.23622294,-0.36140782,0.05506428,-0.031280786,-0.32331887,-0.16372505,0.1306509,-0.2884929,0.51884395,-2.3177478,-0.2510972,-0.13213694,0.32881027,-0.04674388,-0.3602837,-0.40546593,-0.63293904,0.36423683,0.22576758,0.39431432,-0.64336294,0.24421738,0.21860936,-0.28345558,-0.2070122,-0.81070966,-0.18433619,-0.11110473,0.26030478,0.043536197,0.0043502874,-0.25458115,0.4428311,0.7607693,0.20555966,-0.013866166,0.1274496,0.43902364,0.043378007,0.5256129,0.14725251,0.5939292,-0.11131574,-0.1608945,0.24187718,-0.41987202,0.22843023,0.07800416,0.14624074,0.35745472,-0.42594305,-0.795852,-0.55251133,-0.4084468,1.2605237,-0.3861645,-0.4890089,0.35405248,0.060784467,-0.3015222,0.09907979,0.55351967,-0.17321941,-0.038668137,-0.5997025,0.0064531225,0.12048998,0.15943071,-0.12090373,0.13273224,-0.08539943,0.5253544,-0.4022983,0.2359736,0.21767725,0.2159461,-0.16975768,-0.5466389,-0.02139118,0.99876004,0.28751785,0.12858045,-0.16609046,-0.22364083,-0.18684718,-0.27267337,-0.0081169205,0.63815534,0.94922364,-0.08050628,-0.080828056,0.27624995,-0.3425798,0.040322147,-0.07269298,-0.39713553,0.14177021,-0.14821856,0.72254175,0.43701643,-0.11307924,0.39340934,-0.06865054,0.18194194,-0.117116146,-0.4823157,0.5335612,1.0360745,-0.1987193,-0.202742,0.4226211,0.35932562,-0.3527875,0.37252745,-0.55479735,-0.16361673,0.7519954,-0.09813591,-0.4205552,0.020265648,-0.29876083,0.054802425,-0.91326034,0.42595267,0.08153158,-0.7784863,-0.40422922,-0.07287357,-4.0561066,0.061106503,-0.16089466,-0.059530582,-0.048094507,0.017003434,0.35035267,-0.353278,-0.44410986,0.07190093,0.06546415,0.6006932,-0.05059155,0.085637346,-0.39106873,-0.13487852,-0.29932985,0.17270727,0.19359493,0.2964862,0.06758462,-0.31299445,0.35290354,-0.33970174,-0.4440737,0.053133838,-0.562841,-0.6526966,-0.2262359,-0.5225978,-0.31204247,0.8756564,-0.4974227,-0.022302547,-0.30915666,0.020780984,-0.19642124,0.5076631,0.33283445,0.11967842,0.078979544,-0.022877285,-0.11385776,-0.3594419,0.29355958,0.11979755,0.16951075,0.24627216,-0.00965505,0.06628932,0.64550865,0.6353599,0.25082865,0.85875314,0.22363672,-0.038130768,0.14807762,-0.42864507,-0.25296634,-0.59525883,-0.44274923,-0.26837817,-0.43564853,-0.3212559,-0.31545183,-0.3577381,-0.71063083,0.3810506,0.04347367,0.12572482,-0.20567085,0.34034756,0.31841594,-0.006737415,0.081878625,-0.07379158,-0.19042651,-0.4771792,-0.21390544,-0.59598684,-0.58551836,0.28812817,1.01638,-0.19342966,0.016882688,-0.09167074,-0.41533083,0.04854786,0.054716315,0.23236455,0.26545033,0.28433293,-0.16927317,-0.6911383,0.3462816,-0.25049788,-0.13446036,-0.90560067,-0.0075441683,0.8238843,-0.6056465,0.5379753,0.40230379,0.22680685,-0.014188652,-0.46593735,-0.3170071,0.2041106,-0.19080687,0.4909183,0.020269645,-0.494304,0.52729744,0.2333649,-0.13733289,-0.55490065,0.44433436,0.037581287,-0.22099316,0.1980336,0.36469284,-0.065344475,-0.043889344,-0.16644348,0.2931907,-0.60043544,0.32203105,0.3497242,0.06432273,0.5786672,-0.0431625,-0.22833511,-0.6812931,-0.29530376,-0.51683986,-0.23397636,-0.061149377,0.046292167,0.116593994,0.11565531,-0.11296078,0.39393583,-0.40534538,0.13281003,-0.15473843,-0.2531866,0.40818214,0.5225601,0.22944324,-0.30352148,0.7056762,0.11741141,-0.035864267,-0.13875403,0.015245638,0.5815838,0.16504356,0.35492787,-0.008035102,-0.13567448,0.055047218,0.75975317,0.17131476,0.42685953,0.16825975,-0.2135826,0.3946106,0.19134995,0.0787862,0.1362497,-0.12649964,-0.18399492,-0.12871681,0.1383518,0.41155404,0.1446947,0.38234395,-0.14127575,-0.37368888,0.28814244,-0.01484894,-0.012948526,-1.3572501,0.4560883,0.13286401,0.5418122,0.29110283,-0.044124153,0.037213154,0.48187944,-0.25826576,0.19140157,0.25777876,-0.010828844,-0.40584603,0.5838712,-0.5954749,0.43469477,-0.19704665,0.038191788,0.13688944,0.31086913,0.33406416,0.9344759,-0.12043098,0.12048284,-0.017037954,-0.26073533,0.14285322,-0.26237032,0.15106694,-0.55490965,-0.30033875,0.465357,0.2733593,0.29135367,-0.24959779,0.022561904,0.047368612,-0.09862872,0.044519994,-0.09671069,-0.0797222,-0.039897066,-0.6858183,-0.45689586,0.42874295,0.054748904,-0.015467094,0.051596098,-0.10634976,0.26583484,-0.12941822,-0.026585136,-0.08128505,-0.66592795,-0.18736579,-0.37156636,-0.50900644,0.3895139,-0.5105346,0.38925457,0.19088125,0.031104816,-0.3801348,0.11753825,0.435254,0.7711666,0.08547691,-0.36656937,-0.4614894,-0.08606727,0.3753341,-0.34399027,-0.08026244,-0.28564954,-0.011862738,-0.5637371,0.3432506,-0.36084768,-0.22925816,0.09582,-0.1775254,0.0030470002,0.4261572,-0.40657058,-0.05211621,0.1420736,-0.06940273,-0.2790193,-0.107081614,-0.2851371,0.2752035,0.031362586,-0.192576,0.01523981,-0.26723567,-0.17854622,0.34171796,0.020685783,0.25734103,0.30754462,0.014596439,-0.12761785,-0.15448332,-0.09578457,0.2679081,0.16111694,-0.22513388,-0.42474964,-0.19875138,-0.18868957,0.3729969,-0.18609525,0.10294398,0.00259558,-0.4856473,0.69812626,0.043036394,1.0782876,0.11709959,-0.20763111,0.08388503,0.5813023,0.050513633,0.16795091,-0.2693877,0.84525007,0.6056016,-0.20645256,-0.20561205,-0.4274281,-0.10587711,0.38314506,-0.21544191,-0.24031743,-0.09227877,-0.7563791,-0.31723386,0.19952027,0.12835874,0.19521621,-0.03149219,0.017385231,-0.018834272,0.13926522,0.52265346,-0.43532965,0.20257418,0.26714557,0.28948596,0.19331326,0.20164193,-0.13375244,0.39463094,-0.55828375,0.28777885,-0.5121878,0.07946875,-0.0082376255,-0.21297656,0.24387442,0.13969831,0.25199997,-0.18033215,-0.12949583,-0.18745351,0.6108593,0.28872988,0.19817187,0.70309335,-0.24753931,-0.1418644,0.24448554,0.56244504,1.3993556,0.00090134994,0.11186678,0.40697935,-0.32741997,-0.37270707,0.25450736,-0.18433759,0.06063888,-0.20556392,-0.32087398,-0.43407494,0.25996163,0.1496837,-0.12764597,0.20544434,-0.31462222,-0.41859478,0.36589387,-0.34639478,-0.35126114,-0.34206447,0.39385745,0.5184927,-0.3560755,-0.3699076,-0.0697373,0.32065803,-0.29465884,-0.5154871,0.0083243,-0.24003401,0.43340138,0.044519957,-0.43674436,0.09546129,0.31713843,-0.3884824,0.19187927,0.3900102,-0.41764742,-0.021227049,0.06130785,-0.1253282,0.95616966,-0.10531973,0.0704127,-0.9043718,-0.39055213,-0.9421827,-0.36747584,0.49325997,0.3400731,-0.039466582,-0.5289229,-0.19337375,0.011911469,0.031997453,0.06288905,-0.65335304,0.24624372,0.13895108,0.4757657,-0.05400032,-0.931447,-0.2350456,0.05934017,-0.4503308,-0.55253917,0.4712827,-0.22493498,0.7424229,0.093252234,0.15102614,0.2346032,-0.3425167,0.2694418,-0.25815046,-0.29752174,-0.64655906,0.22247703,605 +482,0.35110936,-0.27358985,-0.39172015,-0.0043940204,-0.3306114,0.1892551,-0.12994823,0.62491083,0.25615284,-0.357511,-0.19169159,-0.3043171,0.015628653,0.43725386,-0.15833613,-0.47000524,0.034773737,0.21013567,-0.56536335,0.4315144,-0.5659162,0.42317754,0.027677609,0.61477154,0.19686195,0.13367346,0.023150312,-0.032389697,-0.23176207,-0.2514985,-0.06533774,0.122692876,-0.4434174,0.13040164,-0.24607079,-0.5225172,0.13596317,-0.5947061,-0.43641517,-0.8189613,0.2875345,-0.72582763,0.59681505,0.12958807,-0.282127,0.19075625,0.1826738,0.5807122,-0.28405818,0.010363592,0.20881936,-0.11468272,-0.058229677,-0.24002683,-0.3566262,-0.34770006,-0.6748992,0.07462202,-0.27600798,-0.07776547,-0.17335467,0.32799584,-0.09068559,0.03659622,-0.13388725,0.3610025,-0.50593954,0.3093009,0.22321542,-0.14802766,-0.00936492,-0.64031947,-0.167407,-0.09225625,0.12538856,-0.19375546,-0.22768612,0.275472,0.26116142,0.50495684,-0.117766485,-0.14013682,-0.33320045,-0.07240271,-0.18446498,0.71497726,-0.16038291,-0.2904876,-0.24345341,-0.19010782,0.39743033,0.17807563,0.12248762,-0.19842382,-0.11584382,-0.2563133,-0.23162211,0.23010302,0.53401065,-0.46360686,-0.21300706,0.3310713,0.59189653,0.1044595,-0.07037894,-0.031608824,0.12523127,-0.67530733,-0.15589973,-0.029092023,-0.23826377,0.51391184,-0.13017522,0.15028773,0.6935892,-0.16182306,-0.04708516,0.18145956,0.14130487,0.037040416,-0.36344844,-0.5796433,0.31758213,-0.38357115,0.07916815,-0.40292284,0.698905,0.10267242,-0.5422372,0.29188246,-0.6107632,0.10407629,0.09936533,0.45693725,0.4573471,0.43795544,0.37572452,0.5160568,-0.35887542,0.08361007,-0.1003061,0.038961444,0.07605722,-0.11369171,0.18358107,-0.3827351,0.14238751,-0.15991478,-0.2396013,0.32767886,0.5804062,-0.6847108,-0.14295872,0.11325475,0.8673479,-0.28177407,-0.040283404,0.943491,1.0168712,1.009584,-0.047531407,1.3054817,0.48707494,-0.28955406,-0.06109119,-0.3525,-0.57824534,0.1734277,0.21854007,-0.43050522,0.18012393,0.13922225,-0.2100549,0.5404858,-0.46202987,-0.059231766,-0.16432485,-0.026123302,0.11469663,-0.07185509,-0.41382188,-0.45997357,-0.061248247,-0.11458012,0.28127116,0.34875134,-0.45543212,0.36747926,-0.0632038,1.4925454,0.028380122,0.11960006,0.07510761,0.39259148,0.19894011,-0.1391992,0.019198049,0.33202195,0.21914445,-0.08368152,-0.5273695,0.1242336,-0.25329462,-0.30173475,-0.16415334,-0.1273867,-0.26197562,0.0068506855,-0.5325428,-0.21580417,-0.14340158,-0.021672288,0.35852146,-2.5144064,-0.12921563,-0.038910095,0.4465757,-0.14404905,-0.4501737,-0.061023593,-0.39862767,0.49723846,0.21558043,0.43969086,-0.6548677,0.36264753,0.39555052,-0.5538365,-0.1726798,-0.677098,-0.17324592,0.05280104,0.110534884,-0.06744062,0.014265814,0.04251924,-0.020432949,0.51500654,-0.09708087,0.25164697,0.23964182,0.44577703,0.05474805,0.45334134,0.11908593,0.6962077,-0.4052167,-0.3349073,0.24779817,-0.7580467,0.282408,-0.015831053,0.0021625236,0.52074313,-0.460889,-0.9102753,-0.5956046,-0.1797613,0.8272204,0.035017006,-0.38716075,0.06734156,-0.32001558,-0.27910537,-0.02937695,0.6697981,-0.20608254,-0.12592658,-0.7277381,-0.20972729,-0.0606498,0.33413818,-0.017378366,0.03963992,-0.38737863,0.5786955,-0.21290575,0.23547423,0.41065583,0.28247136,-0.5059847,-0.46035495,0.058753602,0.7996325,0.36255857,0.21902534,-0.11806719,-0.32008192,-0.25025216,-0.16387908,0.034865525,0.5515646,0.57445943,-0.14510529,0.15435006,0.29274097,0.00426771,0.04560811,-0.18739271,-0.29164606,-0.11496853,0.2539335,0.6343896,0.7018195,-0.0622327,0.30721983,-0.12366473,0.55239284,-0.31074715,-0.5241998,0.50090235,0.89769334,-0.116471455,-0.104969226,0.6753778,0.38020244,-0.25198537,0.46589798,-0.736602,-0.40118334,0.33510855,-0.0781829,-0.41300625,0.16742383,-0.2227259,0.023524417,-0.7673773,0.5214187,-0.17298341,-0.48561567,-0.7221675,-0.1643642,-2.584234,0.21049501,-0.39902884,-0.005150876,-0.051181886,-0.1959043,0.01608766,-0.44422296,-0.5375655,0.22118987,0.19168709,0.5093835,-0.079174094,0.07636877,-0.226825,-0.30410185,-0.4553971,0.11232563,0.23361687,0.42417493,-0.06994506,-0.45836225,0.118134856,-0.11225267,-0.4532084,0.050191324,-0.8699935,-0.2915266,-0.21792126,-0.63757557,-0.20621577,0.7174942,-0.41218397,0.035842624,-0.18070051,0.08906869,-0.13763963,0.3419437,0.20924206,0.16799517,0.098104216,-0.19114545,-0.05725026,-0.32967433,0.20261134,0.20004329,0.089477524,0.3132434,-0.044105224,0.038536545,0.2376999,0.7214858,-0.09714801,0.74050945,0.27280524,-0.143146,0.25686568,-0.27858981,-0.27307636,-0.1967801,-0.18420683,-0.02909172,-0.43769544,-0.44264916,-0.035134435,-0.5048216,-0.7194377,0.4951368,0.014334585,-0.2980652,-0.030930536,0.27783397,0.44851488,-0.2526807,-0.042529456,-0.11443394,-0.004773664,-0.4168939,-0.3497015,-0.59985197,-0.4048484,0.29410982,1.2360313,-0.031260695,0.192502,0.18351424,-0.17598629,-0.15389347,0.3638077,-0.22006415,0.04358233,0.44319433,-0.20731731,-0.53838474,0.302994,-0.06787902,-0.43100432,-0.705109,0.37874144,0.7175736,-0.68125904,0.7503666,0.41695994,0.107400365,-0.12353831,-0.46835008,-0.29600057,0.1923311,-0.18903959,0.3993054,0.13156466,-0.58132255,0.32276517,0.38026407,-0.42209512,-0.833393,0.3761041,-0.12123447,-0.45579043,0.051121056,0.41120222,0.23470356,0.14857237,-0.22322585,0.19544637,-0.4402589,0.22035322,0.1890378,-0.11590988,0.32325378,-0.35194084,-0.15013497,-0.7660988,0.09298066,-0.45132798,-0.28482598,0.1508064,-0.0067987507,-0.059558034,0.28743106,0.19311833,0.36980364,-0.2845091,0.115688264,-0.3292196,-0.24670972,0.18431573,0.36938837,0.5010295,-0.38421577,0.5794715,-0.037293453,-0.13748321,0.02053684,0.054947983,0.45640275,0.033935122,0.46538496,-0.11439441,-0.15254603,0.35810027,0.66668904,0.1063698,0.31606308,0.21914174,-0.07919314,0.20852825,0.09789363,0.06188174,0.10903333,-0.41337967,0.15041247,-0.33022246,0.16505328,0.3783912,0.10084642,0.46755245,-0.028221829,-0.34320736,0.06654932,0.14652826,-0.012309447,-0.98189247,0.1151875,0.054327738,0.7797037,0.42409235,0.07945198,-0.023369422,0.72813493,-0.2000005,-0.102644004,0.32998508,0.07080216,-0.30809477,0.71111995,-0.7085988,0.6214589,-0.1679882,-0.019331766,0.0044352836,-0.046975534,0.61869913,0.7773691,-0.15148987,-0.019638387,0.114938796,-0.24216534,0.044058256,-0.312455,0.30160776,-0.5694545,-0.27352688,0.7344863,0.3960957,0.38025537,-0.19767556,0.024045533,0.23888694,-0.19913773,0.11373438,0.07266154,0.12967353,0.01922064,-0.5916361,-0.109008655,0.49910975,-0.34748265,0.23165117,0.21729548,-0.25918436,0.24976489,-0.23410389,-0.032667268,-0.054272808,-0.87056094,-0.16352613,-0.37978506,-0.39999744,0.4062248,-0.03678606,0.155771,0.27767202,0.084751405,-0.4388724,0.65319014,0.023699496,0.92510426,0.049009893,-0.07306192,-0.11620701,0.39990297,0.15186663,-0.1425275,0.12770014,-0.22949494,0.09911888,-0.64962643,0.44675636,-0.108105436,-0.29354197,0.032822188,-0.05591481,0.07364929,0.56367975,-0.20318289,-0.16725011,0.15883903,-0.09602435,-0.28294313,-0.11189062,-0.11040878,0.30104432,0.16779052,0.09223331,-0.10285593,-0.08888904,-0.19788058,0.6070402,-0.0084705455,0.45675972,0.37057444,0.16322555,-0.29602697,0.014914794,-0.28187472,0.61530626,-0.17506552,-0.14975527,-0.23483577,-0.55844843,-0.3696465,0.33451796,-0.17864315,0.32212892,0.055591322,-0.22643052,1.0195382,0.01032512,1.1847897,-0.12592877,-0.35942367,0.12933205,0.61397505,0.016191585,0.033084128,-0.35816437,1.2007409,0.53237903,-0.15984535,-0.05683147,-0.32492542,0.02043048,0.3482465,-0.21302776,-0.17327796,-0.09162732,-0.5937155,-0.15830378,0.19923295,0.35806832,0.17713353,-0.121551394,0.35702392,0.35287976,-0.02283463,0.32751796,-0.5935215,-0.11458776,0.32003146,0.45940834,-0.025122026,0.19175036,-0.40959057,0.38335714,-0.41064215,0.14842527,-0.27246287,0.07564287,-0.23322521,-0.33173758,0.21048777,0.015810728,0.2224664,-0.5572912,-0.19958238,-0.29622027,0.48026493,0.282667,0.23307446,0.6108521,-0.25881645,-0.116778485,-0.13687564,0.5554573,1.0084907,-0.4322553,-0.019004235,0.4140563,-0.37107652,-0.61138743,0.51595455,-0.36277956,-0.14291318,0.012096567,-0.21354055,-0.5301009,0.333075,0.15162702,-0.00646581,0.014846875,-0.58302486,0.0037430695,0.36036763,-0.30827668,-0.2715237,-0.40254077,0.3720192,0.68059254,-0.009385323,-0.46174878,0.11977888,0.32888705,-0.34607762,-0.42528227,0.09857416,-0.4629926,0.26699743,0.06020059,-0.22519398,-0.2471033,-0.008882322,-0.4274824,0.0011680509,0.04374927,-0.25201732,0.17622194,-0.42504564,-0.017679002,0.67509925,0.0013867787,0.30628088,-0.73419,-0.48184156,-0.9677492,-0.35035938,0.47963157,0.34126464,-0.07797583,-0.7484451,-0.12844002,-0.08208281,-0.40855238,-0.0049676173,-0.24961348,0.41562837,0.0998022,0.3277556,-0.21354571,-0.7888117,0.10305242,0.084262155,-0.5117325,-0.4300428,0.39474106,0.069406696,0.9407555,0.14524136,-0.018614894,0.24168172,-0.41844076,0.20176661,-0.3698404,-0.29930344,-0.63199705,0.035013918,607 +483,0.29323345,-0.075592674,-0.35328108,-0.11754967,-0.29475847,0.31878,-0.27381817,0.2858719,0.11421877,-0.6737004,0.051721845,-0.27305463,-0.11430549,0.3818577,-0.16078608,-0.7364989,0.35859933,0.021563265,-0.5305603,0.6035642,-0.27739885,0.54665655,0.19854951,0.18101753,-0.19911568,0.16642548,0.3587695,-0.004475332,0.27037314,-0.37498763,-0.14066447,0.0027524638,-0.54757595,0.5123564,-0.15749443,-0.4593687,0.07100326,-0.27523267,-0.2369192,-0.72848564,0.03586287,-0.7044177,0.5711247,-0.024630772,-0.18938288,-0.09522773,0.25070825,0.15524693,-0.027871218,0.017015252,0.15165506,-0.36058587,-0.15697005,-0.22212657,-0.37445015,-0.7321491,-0.47477117,-0.024318507,-0.7077405,-0.30858704,-0.22334626,0.25781348,-0.31944254,-0.038529474,0.015437058,0.499397,-0.25582507,-0.051262546,0.19912742,-0.54101336,0.18240269,-0.6548859,-0.1046868,-0.024922252,0.20564353,-0.1873428,-0.14151432,0.3271405,0.31459525,0.42784095,0.1383901,-0.24462283,-0.17815426,-0.337255,0.13405465,0.69620705,-0.050591018,-0.33731434,-0.18391348,-0.15209529,0.32490915,0.14127651,0.18037736,-0.34712008,-0.08620862,-0.13938446,-0.28948542,0.50522137,0.4552083,-0.4518769,-0.20462993,0.34386948,0.53833264,-0.13542552,-0.29875562,0.28573084,-0.10909598,-0.40142277,-0.0636499,0.25052273,-0.13506134,0.3802367,-0.091189146,0.16145825,0.69551575,-0.17502995,0.08376325,0.056233916,-0.05851508,-0.0696243,-0.14285626,0.029046748,0.41851753,-0.576331,-0.061064254,-0.48760822,0.8090428,0.09553676,-0.61166924,0.3909295,-0.5135955,0.05014214,0.06682391,0.56780225,0.556496,0.29503748,-0.039337754,0.5673968,-0.28759083,-0.046327095,-0.11323832,-0.14401731,-0.09856982,-0.16915716,0.0012626925,-0.3130544,0.045200475,0.06534518,0.094163775,0.019036243,0.31853646,-0.49301273,-0.17349994,0.2809762,0.9259015,-0.2172122,-0.030076776,0.6397815,1.2583363,0.66755116,-0.09062294,1.1717018,0.11754902,-0.15913178,-0.2564033,0.03863066,-0.22433697,0.105997495,0.4372054,1.1675838,0.17310683,9.7053395e-05,-0.15137485,0.36595392,-0.3790318,-0.15102224,-0.05667513,0.043119054,0.15945448,-0.092774,-0.2996568,0.07156842,0.06382503,-0.053629067,0.3008055,0.1853662,-0.26711324,0.5353376,-0.017913137,0.7736955,-0.06618954,0.21571621,0.20575489,0.45275894,0.2330842,-0.07976723,0.31417146,0.25679895,0.21249671,0.07032666,-0.5459238,0.09260218,-0.3996189,-0.343293,-0.22671941,-0.2035941,-0.37344527,0.071236394,-0.5349044,-0.04513957,0.03357416,-0.2982762,0.33691356,-2.6601584,-0.15727268,-0.40052265,0.26352766,-0.22086976,-0.2060612,-0.10120927,-0.509123,0.5106711,0.4259858,0.35004506,-0.5441176,0.39073643,0.5321537,-0.29845867,-0.19771819,-0.61518943,-0.030092334,-0.024406089,0.5180879,0.14830355,-0.13718967,0.03602438,0.04606237,0.5872861,0.080032565,0.044715863,0.35030064,0.2584496,-0.088431396,0.210381,0.106993295,0.44048405,-0.35282835,-0.15550725,0.34752288,-0.4344881,0.24028465,-0.23502061,0.1008942,0.4259446,-0.16194272,-0.6166794,-0.6636937,-0.66446686,1.1224312,-0.004858094,-0.6605641,0.15685199,0.30375972,-0.1655443,-0.14389853,0.6133079,-0.08029358,0.3968545,-0.43610114,-0.024390304,-0.16126837,0.252602,-0.085699454,-0.16632806,-0.4099646,0.7284298,-0.12035243,0.42629227,0.22879791,0.29655614,-0.33326095,-0.32951576,-0.08165081,0.9874612,0.5004601,0.16979556,-0.10099448,-0.0310816,-0.23528878,-0.43900463,0.007007781,0.824142,0.5349328,0.0066923904,0.09061114,0.35293266,-0.06221499,0.12004174,-0.13104956,-0.40621802,-0.1494944,0.13308622,0.61243963,0.29441842,-0.05330067,0.24518338,-0.08333506,0.33654246,-0.28573492,-0.40318674,0.3339438,0.71393627,-0.24597801,-0.24129058,0.37532958,0.42931437,-0.3898346,0.33714586,-0.74860096,-0.4629481,0.5284705,-0.16999362,-0.62130386,0.09758859,-0.2703623,0.08425285,-0.6718145,0.46459642,-0.44479683,-0.71367484,-0.52155644,-0.34044233,-3.3076947,0.18518531,-0.215418,-0.09271336,-0.20168938,-0.015634475,0.15447353,-0.41872382,-0.17615925,0.08035611,0.084069,0.57596827,-0.030580431,0.098229475,-0.42086548,-0.18153465,-0.10008704,0.42733827,-0.05396573,0.13952453,-0.192099,-0.07444574,0.17685196,-0.09765615,-0.48709726,0.069743276,-0.67409235,-0.31107065,-0.3169145,-0.4348235,0.012522014,0.7087452,-0.65231025,0.2296672,-0.1267985,0.11828115,-0.16521505,0.28914258,0.4014553,0.18258159,-0.0052754795,-0.14521667,-0.023981094,-0.50189036,0.54319173,0.22865714,0.2913022,0.49836206,-0.0011727916,0.06784016,0.35018834,0.3940089,0.055980273,0.8204805,-0.09349216,-0.00504845,0.44689423,-0.07133753,-0.3386469,-0.52706945,-0.14978926,0.07057405,-0.30590105,-0.4049376,0.11467187,-0.23095179,-0.7622345,0.42496857,0.16662346,-0.049184527,-0.12920308,0.4045089,0.2148339,-0.24289964,-0.10451155,-0.018192353,-0.03335152,-0.453145,-0.4191522,-0.6804687,-0.5334342,0.006818754,0.8982607,-0.17287013,-0.12209291,0.14952004,-0.048177335,0.0027156025,0.33320966,0.22771084,-0.18086758,0.33522612,-0.050148547,-0.6793173,0.52088654,-0.19476438,-0.28620276,-0.5281423,0.36036316,0.56121004,-0.6437866,0.37842163,0.36874145,0.056448996,-0.4800508,-0.4164464,-0.09394203,-0.027598348,-0.14420049,0.18490171,-0.0908648,-0.8190245,0.2750173,0.02679182,-0.25247225,-0.6195173,0.4868608,-0.1010406,-0.1348329,0.12763794,0.43642864,0.19921698,-0.06281118,-0.16253214,0.059571493,-0.5729278,0.11711647,0.14403747,0.056207117,0.6605806,-0.1430573,-0.30841723,-0.590121,-0.022378197,-0.61488616,-0.22196908,0.15577616,-0.17959788,-0.12413306,0.42754275,-0.14948475,0.40865812,-0.056616094,0.30434155,-0.09522454,-0.31859413,0.42611647,0.3727893,0.39559028,-0.25979772,0.8290323,0.09336852,0.019202795,-0.09038323,0.29657826,0.5334333,0.19841197,0.5490221,-0.25003046,0.08163113,0.11558982,0.8588645,0.28044525,0.38019603,0.22501609,-0.09421318,0.2447281,-0.11248016,-0.047420856,-0.014293308,-0.56130797,0.0105699105,0.017857943,0.036019754,0.4898655,0.041382875,0.6238104,0.035428405,-0.31673366,0.096321456,0.04793542,0.08127872,-1.1949561,0.22648014,0.13227156,0.8500579,0.15980431,0.09534816,-0.06541104,0.6650504,-0.22770788,0.073661186,0.21846727,-0.08067693,-0.093092225,0.58763504,-0.6526132,0.4451664,-0.057506654,0.002379011,0.119590506,-0.08086438,0.34100217,0.76742035,-0.2581999,0.037913885,-0.028913515,-0.2130945,0.031748567,-0.44219118,0.35966352,-0.075115964,-0.27911592,0.43481565,0.42746907,0.30065614,-0.24225152,0.00026058298,0.23523162,-0.028748006,0.26575556,-0.112463124,0.10917677,-0.28642294,-0.17922391,-0.15958226,0.6252933,-0.22525157,0.22358155,0.15666273,-0.113909885,0.23146793,0.2186339,0.04742134,0.010493478,-0.6475431,0.100179434,-0.23732972,-0.5453006,0.5394917,-0.34364194,0.20984162,0.18483195,-0.05862451,-0.14263198,0.5179878,0.25475377,0.64518696,0.13808744,-0.21077749,-0.41567093,-0.18526863,0.06218264,-0.4463188,0.18356773,-0.21156928,0.1260928,-0.6452613,0.26554915,-0.3396227,-0.19614543,0.27808633,-0.24609147,-0.09978269,0.4127345,0.19389065,-0.041214205,0.60963994,-0.19518448,-0.25403205,-0.016332593,-0.073763095,0.21839952,0.06798741,0.06371888,-0.12145685,-0.20884116,-0.14494093,0.12491239,0.12610286,0.21324308,0.30418062,-0.03279068,-0.42489937,0.15757506,0.20362003,0.24959531,-0.09293713,0.10321683,0.16332023,-0.58423394,-0.4312404,0.09097761,-0.08029231,0.267532,0.16596356,-0.3596894,0.7862321,-0.087496065,0.9830977,0.036437493,-0.43248472,0.15797679,0.54032797,0.12924942,-0.0036453712,-0.27402514,1.008823,0.5234376,0.05026675,-0.059138324,-0.26371577,-0.026141133,0.28847665,-0.23081125,-0.20338161,0.017785424,-0.598695,-0.13267492,0.116412,0.46065181,0.02927853,-0.16969517,-0.19421197,0.20694752,0.1216714,0.22812101,-0.76112777,-0.08338213,0.18723807,0.21602295,-0.22824714,0.1783329,-0.19461922,0.5041322,-0.71311957,0.26065183,-0.32919738,-0.16644038,-0.30285287,-0.19147597,0.23999791,-0.047993183,0.5048063,-0.19981171,-0.2731422,-0.14504376,0.3593752,0.27911967,0.19246228,0.7142113,-0.16205658,-0.06717182,-0.102221735,0.62236226,1.2516986,-0.35131904,-0.06746069,0.18887256,-0.5145733,-0.42425102,0.120689794,-0.5873166,0.22762778,-0.030672224,-0.39337566,-0.17301223,0.16374603,0.25941437,-0.04000615,0.24320044,-0.62475884,-0.1593512,-0.10477437,-0.6043115,-0.2907402,-0.32702342,0.45728728,0.52916014,-0.12551208,-0.25624868,0.029577902,0.36732954,-0.30753618,-0.92701894,-0.004242944,-0.14658572,0.2567586,0.13476194,-0.3570266,-0.0053728437,-0.059773836,-0.45706487,0.08564754,0.26463488,-0.3934939,0.04898255,-0.22366594,-0.013499507,0.529704,0.08724078,0.017532097,-0.74837583,-0.5555936,-0.7031875,-0.6387165,0.34401506,0.36181122,-0.07074655,-0.4449014,-0.29306445,-0.24591593,0.037291218,0.0048737866,-0.37538677,0.21541527,0.29751968,0.52601856,-0.25358576,-0.8943006,0.09671312,0.07230294,0.003184672,-0.48486564,0.12684797,-0.17013611,0.84661305,0.119189285,-0.3059342,0.2861015,-0.56602633,0.28196913,-0.41348648,-0.2653544,-0.7018477,0.12046893,609 +484,0.30581814,-0.18538971,-0.42500803,-0.0972604,-0.25226155,-0.035548266,-0.1152522,0.5328977,0.1983725,-0.18382896,-0.15740538,-0.087992616,0.060353715,0.60599023,-0.13278213,-0.61519706,-0.13240777,0.07793736,-0.59981567,0.54410636,-0.5801276,0.44310918,0.09892787,0.40694776,0.012097806,0.46818593,0.3001122,-0.1847888,-0.023508396,0.089453444,-0.06521887,-0.009701254,-0.31107044,0.104286954,-0.05889811,-0.2770048,0.18715668,-0.4109271,-0.19475083,-0.738978,0.22389671,-0.6373901,0.469933,-0.029120773,-0.3186238,-0.018718788,0.27601936,0.3782689,-0.40737644,0.031282492,0.14820863,0.008835473,0.00917694,-0.20373674,-0.029453704,-0.47855872,-0.44619003,-0.12124306,-0.5067662,-0.32927796,-0.032984756,0.16048063,-0.35512567,-0.0789366,-0.04790599,0.31726074,-0.41473898,-0.22298478,0.37232596,-0.16498102,0.3010283,-0.5049115,-0.030237615,-0.07040219,0.46226385,0.014912188,-0.062078793,0.42675075,0.30735454,0.37117758,0.14892547,-0.27226117,-0.20273015,-0.19768442,0.08304321,0.48382875,-0.1478291,-0.34039775,-0.19730496,0.12581746,0.11751081,0.35456586,0.12820235,-0.050134506,-0.08033004,-0.09462941,-0.16308342,0.43772963,0.37423357,-0.1611832,-0.33966702,0.46909043,0.6753065,0.26190108,-0.21358517,0.02671889,-0.029626893,-0.53943044,-0.17446278,-0.06432671,-0.13507584,0.5104492,-0.16115414,0.1321866,0.78372633,-0.1986986,-0.0019766134,-0.020608097,-0.05976786,-0.12028531,-0.21589196,-0.1755109,0.10532328,-0.5919107,-0.054614026,-0.18003152,0.5679353,0.24951196,-0.5636098,0.38375273,-0.42586184,0.107635595,-0.06257929,0.6053668,0.623314,0.3311684,0.24225743,0.78075665,-0.33356136,0.095338225,0.08207574,-0.402837,0.21128877,-0.28078863,0.12935594,-0.5831963,0.009536402,-0.017615335,0.019918863,0.06165323,0.2950962,-0.54876834,-0.042641263,0.24993332,0.77199537,-0.2688286,-0.014982598,0.7159594,1.1887671,1.1073629,-0.041995235,1.1279433,0.22246194,-0.35434726,0.26876554,-0.43615666,-0.6162602,0.16571765,0.42179957,-0.22123735,0.42916822,-0.14700891,-0.106171645,0.38634685,-0.42063436,0.0858999,0.018217515,0.37313125,0.068503276,-0.14807375,-0.56723493,-0.18610898,-0.12639658,-0.0037368834,0.20510633,0.3122239,-0.30831414,0.4337537,-0.19018146,1.2854033,0.021235595,0.11828656,0.004947213,0.50272113,0.24625584,-0.1167711,-0.15296127,0.3880224,0.40053925,0.09084677,-0.5006354,0.34423795,-0.4374575,-0.47076967,-0.09791814,-0.329547,0.019694196,-0.06776556,-0.40401262,0.031968318,-0.048455946,-0.2991232,0.31506544,-2.9130197,-0.35877392,-0.18465199,0.23329923,-0.27615938,-0.08587229,-0.0491372,-0.47221023,0.3225719,0.2515846,0.5176659,-0.6120243,0.4166028,0.45751032,-0.4953792,-0.16790928,-0.65119886,-0.168627,-0.066173844,0.55262524,0.08272277,0.075519525,-0.0929975,0.35088745,0.6293191,0.07265227,0.14963529,0.20781024,0.28221065,0.13311979,0.48863024,-0.06089843,0.6190596,-0.27987882,-0.08298967,0.28409633,-0.2659727,0.23225696,-0.2278901,0.21309687,0.47012612,-0.3912488,-0.93915445,-0.5053643,-0.38996425,1.018034,-0.22840963,-0.1788753,0.38265684,-0.26903492,-0.04809952,-0.033264957,0.5281085,-0.14899829,0.07663973,-0.6525436,0.026917154,-0.0673031,0.059207793,0.00096307695,-0.11010574,-0.39577174,0.6087466,0.06846297,0.6662399,0.21596766,0.21817912,-0.24248813,-0.50797254,0.036431883,0.74708885,0.5228342,-0.07653475,0.0043195956,-0.1979399,-0.16754213,-0.13238047,0.035885923,0.47370216,0.91969097,-0.07860648,0.11560812,0.19052105,-0.06563455,0.07027991,-0.033535488,-0.18165834,0.10636884,0.116531186,0.42849293,0.67389965,-0.15987937,0.40949392,-0.19629775,0.4804726,-0.14285181,-0.5242905,0.5545789,0.6093797,-0.25725266,-0.038730502,0.51743776,0.47589418,-0.309295,0.46577668,-0.6694077,-0.24997279,0.5994984,-0.17311397,-0.31599495,0.22195232,-0.1812959,0.20643692,-0.92291653,0.39335746,-0.35472903,-0.50852615,-0.46586064,-0.10706364,-3.5678196,0.14248967,-0.18682969,-0.22374837,-0.09329666,0.053940576,0.31485152,-0.8349704,-0.5889563,0.17671241,0.22235036,0.6856866,-0.067624815,0.056025583,-0.25459146,-0.26939207,-0.1672025,0.26194653,-0.034134846,0.22226283,-0.043528106,-0.52725947,-0.05300499,-0.10769081,-0.68519086,0.13109325,-0.5762554,-0.44297844,-0.1735914,-0.6304841,-0.2673536,0.71679896,-0.1514274,0.09048275,-0.17577717,0.10103103,-0.12518847,0.17501004,0.10474666,0.10818331,0.1031184,-0.03623737,0.1771648,-0.36199754,0.36132783,0.10269802,0.4813457,0.14329131,-0.07681726,0.26009017,0.61742055,0.65358603,-0.20235644,0.8782008,0.4088921,-0.12874037,0.23552613,-0.30774668,-0.16126396,-0.4968025,-0.56306136,-0.04887523,-0.35010186,-0.6525281,-0.035438947,-0.34035665,-0.73063266,0.5688266,-0.015011822,0.40161952,-0.1632524,0.07104779,0.3680466,-0.3655718,0.11202147,-0.07220618,-0.18976723,-0.5102882,-0.183285,-0.6964251,-0.56331986,0.032660194,0.851631,-0.42457074,0.1035725,-0.18159845,-0.3083479,0.09536208,0.021340264,-0.04277692,0.21290493,0.24557172,-0.09960544,-0.7322927,0.47994336,-0.16336386,-0.048803955,-0.44863015,-0.006585317,0.6711894,-0.6106744,0.50681055,0.34595484,-0.062904455,-0.10979607,-0.52759886,-0.15545857,0.06263027,-0.03274652,0.41430995,-0.024883565,-0.7347236,0.49428558,0.2897098,-0.61791795,-0.62883204,0.40895844,-0.078682765,-0.27779636,-0.06879854,0.29500952,0.1676584,-0.043391388,-0.445278,0.21363644,-0.38245365,0.24957773,0.21068028,-0.06260144,0.41830084,-0.035976615,-0.16508529,-0.7832181,-0.08441361,-0.5173942,-0.21967754,0.29697165,0.018963741,-0.011662317,0.064399526,0.2250512,0.3057364,-0.28221014,0.1568717,0.10870361,-0.43404007,0.27160415,0.43369833,0.40627363,-0.34321132,0.5128115,0.1580974,-0.21683232,-0.022066662,-0.11718941,0.43835422,0.04682546,0.38464254,-0.20163345,-0.13757747,0.52799684,0.67879784,0.09437994,0.3071862,0.14552006,-0.16281162,0.2487578,-0.07367621,0.18254833,0.14190066,-0.35140195,0.025354518,-0.06895642,0.1559786,0.594862,0.36855382,0.23245016,0.100418635,-0.27692157,0.08118538,0.2057642,-0.016632905,-1.2775002,0.5837813,0.30384827,0.7494659,0.40548056,0.13398553,-0.19052815,0.7120964,-0.19352989,0.046108983,0.48197195,0.022514751,-0.56977654,0.6815319,-0.79030323,0.48240253,0.019266266,-0.123102374,0.13434123,-0.06559489,0.39740863,0.77705497,-0.09316175,0.047217455,-0.045213647,-0.19777603,0.07690753,-0.28376478,-0.011424533,-0.49199912,-0.3520449,0.54369384,0.4369503,0.18814178,-0.017718708,-0.052606147,0.12806614,-0.15319379,0.29873595,-0.11774312,0.015775422,-0.0022309977,-0.56500757,-0.19265762,0.44156286,0.046944443,0.19197628,-0.1969382,-0.20400569,-0.07840268,-0.2788394,-0.008829244,0.043076497,-0.6544255,-0.08766328,-0.18789144,-0.32368135,0.5115391,-0.3967747,0.24423826,0.089648426,0.11052697,-0.19990288,0.21553817,0.092029884,0.6546202,-0.026643869,-0.34232855,-0.25911137,0.14803325,0.16876402,-0.27868396,0.16950719,-0.46219084,0.069944374,-0.57348686,0.6761707,-0.18650202,-0.2679202,0.04114657,-0.37179193,0.019657446,0.4886228,-0.16518746,-0.30675796,-0.1759899,-0.054048445,-0.33818313,-0.039703038,-0.28624058,0.24371949,0.26782766,0.04433332,-0.11356962,-0.07399945,-0.15410297,0.61166143,0.07915448,0.436749,0.25101894,-0.05984317,-0.16605027,0.025810016,0.23605861,0.3640065,0.27835113,-0.025034487,-0.45801014,-0.29654756,-0.23816599,-0.057819076,-0.16690227,0.19496918,0.002471779,-0.059376497,0.8268786,0.08600497,1.3723606,0.05305418,-0.3582758,-0.002629476,0.60415184,-0.14090152,0.026150975,-0.34544137,0.99476826,0.5552246,-0.28037566,-0.15671816,-0.45808968,-0.056453783,0.43949246,-0.39915228,-0.17579043,0.029928327,-0.5652247,-0.39536566,0.29562002,0.17507564,0.20512517,-0.05579704,-0.01846723,0.014119496,0.09060391,0.42705482,-0.5872382,-0.12216608,0.2890144,0.3112121,-0.14692318,0.15024625,-0.3594344,0.5365342,-0.67046016,0.25277358,-0.30888966,0.20575707,-0.30146104,-0.50553197,0.093691126,0.07349761,0.28378624,-0.22133754,-0.5178199,-0.051367547,0.473604,0.055371065,0.015744414,0.6172742,-0.32252893,0.029694377,0.07492854,0.523375,1.1555703,-0.37911898,-0.030229261,0.32805172,-0.43135506,-0.8023549,0.36226004,-0.33413118,-0.01868253,-0.28030637,-0.4502411,-0.59357595,0.29326764,0.107458964,0.048346575,0.051761318,-0.35880637,-0.09316904,0.2535542,-0.34371784,-0.32547835,-0.32306919,0.34768432,0.5601017,-0.2624698,-0.42489275,0.03687838,0.3413481,-0.344031,-0.4920916,-0.14681242,-0.2031525,0.3470963,0.12100719,-0.3502602,-0.07504882,0.083763525,-0.43097854,0.25852564,0.24877954,-0.40007114,0.13550906,-0.17512456,-0.11029369,0.8636491,-0.22368988,0.0069216746,-0.62822163,-0.44040933,-0.87362087,-0.46159643,0.39454433,0.11091038,-0.042376213,-0.4476986,0.044996776,-0.090048335,0.055912357,0.038403135,-0.3418943,0.1810147,0.054118905,0.49534956,-0.29604128,-0.85183483,-0.021049341,0.15090677,-0.13596888,-0.6558925,0.72074795,-0.047621686,0.8181376,0.07717812,0.049616035,0.14875741,-0.25435165,0.080504656,-0.32634187,-0.0755525,-0.61538786,0.03960339,612 +485,0.34902316,-0.022599135,-0.4241333,-0.13716398,-0.39867115,0.12409454,-0.15409397,0.20448014,0.1506501,-0.44093302,-0.09225731,0.06851144,-0.022645261,0.14220403,-0.103071585,-0.4447305,0.046179958,0.22274266,-0.6939052,0.6123305,-0.4190833,0.37786978,0.020785755,0.32670218,-0.05645855,0.35960028,0.26780483,-0.08460091,0.012473928,-0.18513617,-0.020152526,-0.07749698,-0.7779923,0.14065541,-0.34285662,-0.20496808,0.06716202,-0.30573413,-0.25682446,-0.7802445,0.26216686,-0.96856546,0.5094579,-0.11311497,-0.22872762,-0.09962665,0.29984504,0.1743292,-0.2769324,-0.09791231,0.38977936,-0.16893302,-0.13113894,-0.36961764,-0.07350128,-0.3858393,-0.40941292,-0.1161061,-0.67242163,-0.20990612,-0.5016536,0.21899422,-0.2867276,-0.27221063,-0.25998917,0.45963868,-0.33298638,0.14923403,0.079074584,-0.2971004,0.31169766,-0.5743204,0.11668728,-0.08295375,0.43649083,0.09301267,-0.10340375,0.6405748,0.3833578,0.31108305,0.24901256,-0.334034,-0.2717217,-0.21982037,0.2051806,0.48487267,-0.10793148,-0.39486167,-0.17542733,-0.008704649,0.25866327,0.20652,-0.005602994,-0.34372482,-0.0106124235,-0.13395678,-0.0522548,0.82621723,0.50549877,-0.15509126,-0.17045482,0.29998818,0.5939254,0.26744428,-0.38479212,-0.054130528,-0.1026762,-0.46466753,-0.13268869,0.2912888,-0.07158346,0.50869405,-0.18119287,0.06852465,0.8870419,-0.08732561,-0.059890706,0.06606709,-0.045129392,0.1261579,-0.32623702,-0.08126558,0.26710245,-0.630064,0.12931477,-0.46837878,0.59539753,0.077640735,-0.83980656,0.51218706,-0.47798675,0.078043334,0.111670844,0.64780694,0.5633548,0.6069816,0.17168991,0.88244426,-0.3233882,0.07559282,0.16094711,-0.36874983,-0.082074165,-0.27275336,0.11315193,-0.3253469,0.10172248,-0.25933546,0.15424006,-0.0531156,0.31322402,-0.4906648,-0.274972,0.28495616,0.92012596,-0.30953258,0.013978963,0.63759696,1.1769035,0.85985154,-0.06347422,1.2486085,0.0031378737,-0.18484364,-0.0277067,0.02307464,-0.67803824,0.1430037,0.27975753,0.5021685,0.08536013,-0.1336064,-0.109471254,0.17917264,-0.4908958,0.011267076,0.02554375,0.39975134,0.12902041,-0.0762061,-0.2922094,0.000242642,0.08256234,0.020863298,0.1948116,0.12072422,-0.22053511,0.3302605,0.050527964,1.1472591,-0.10062538,0.14351808,0.22014798,0.65144175,0.35073504,-0.061459713,0.046141684,0.51799524,0.44011185,0.023816973,-0.56002,0.15425685,-0.6368495,-0.3511061,-0.0045675635,-0.40504923,-0.26606563,0.04726109,-0.3798731,-0.17656586,0.10519509,-0.3252011,0.38555628,-2.6625042,-0.251507,-0.14420377,0.40909126,-0.36178324,-0.14951375,-0.16406608,-0.63470805,0.43439606,0.08335419,0.5697495,-0.56586313,0.43025652,0.6329054,-0.47306994,-0.14587083,-0.59037775,-0.1283362,0.046636492,0.49733534,0.050423365,-0.08386004,-0.20925164,0.20405163,0.83560103,0.28944874,0.15712225,0.5853613,0.30498892,-0.041987717,0.6985927,-0.17368889,0.45327562,-0.25629124,0.0009841621,0.36433885,-0.28588587,0.25916,-0.4545222,0.044576917,0.68901646,-0.4507616,-0.80929863,-0.6161932,-0.32834408,1.0967743,-0.36917302,-0.55455846,0.27411574,-0.24459492,-0.026303759,0.058712043,0.71442354,-0.06833076,0.39885786,-0.49646738,-0.014979626,-0.22424152,0.29135713,0.029835284,-0.05972907,-0.2826237,0.90164,-0.0013781701,0.59997934,0.173389,0.2223557,-0.28876045,-0.37224397,0.17508098,0.6802021,0.38550448,0.07666172,-0.12708674,-0.057156622,-0.28218082,-0.3106894,-0.23927447,0.7724472,0.6625327,-0.15557443,0.08475484,0.36338523,-0.04648594,-0.0033113617,-0.17010488,-0.30358955,-0.20992725,-0.044568557,0.4660428,0.7268918,-0.106717534,0.39054796,-0.20727389,0.1752475,-0.11005672,-0.57623154,0.6903823,0.5095435,-0.22142445,0.08500034,0.41036108,0.40989113,-0.43949074,0.48071697,-0.6058677,-0.33418682,0.839733,-0.223163,-0.48225808,0.14132532,-0.20050658,0.024790108,-0.5581277,0.27162996,-0.53782415,-0.54900116,-0.2560114,-0.17463274,-2.766643,0.14207028,-0.11522688,0.0070796683,-0.53029174,0.015590406,0.23535776,-0.41043583,-0.5395896,0.19371818,0.2328156,0.65147877,-0.11763702,0.13556746,-0.45328307,-0.10437066,-0.10356456,0.4145131,0.11644188,0.13844346,-0.28593716,-0.31898886,-0.18801308,0.03428581,-0.6410818,0.1093873,-0.46317384,-0.28264803,-0.07524808,-0.51893973,-0.21700199,0.6492421,-0.38980934,0.14617905,-0.0729124,0.048931334,-0.13271068,0.07099796,0.0718268,0.2666416,0.034708627,-0.110995635,0.2019258,-0.23165719,0.5892274,0.07803082,0.41803098,0.016080247,-0.07399428,-0.010531195,0.31984526,0.6255773,-0.2385111,1.1904589,0.18434103,-0.08466794,0.4269748,-0.21777785,-0.40953922,-0.83005005,-0.13633393,0.07524895,-0.29502645,-0.3900382,0.217204,-0.4333728,-0.77229166,0.6328421,0.12892202,0.4995429,-0.029748129,0.3060546,0.22620021,-0.38514253,0.046961498,-0.044069435,-0.07985769,-0.58646303,-0.34958816,-0.83495057,-0.53655803,-0.091715954,0.6209513,-0.34651312,-0.14717872,-0.01842017,-0.2465241,0.16189075,0.11652463,0.010378347,0.1646188,0.4475988,0.15208009,-0.6109406,0.46681872,-0.13513996,-0.084044404,-0.40161783,0.3613729,0.65244514,-0.69662666,0.52242553,0.22910298,-0.03929772,-0.48299482,-0.6977466,-0.11367803,-0.038990058,-0.15166807,0.48530906,-0.07138844,-0.96456397,0.42496863,0.10340686,-0.49018764,-0.6876704,0.39100823,-0.043423347,-0.3654557,-0.13083604,0.44531533,0.013512837,-0.13275659,-0.25437075,0.22528015,-0.46369028,0.2718421,0.08209207,-0.11315018,0.3439019,-0.19726619,-0.37657017,-0.72831476,0.0062708473,-0.5982746,-0.3020167,0.38381264,-0.17360285,-0.19529799,0.25006142,0.14225493,0.4959569,-0.06213476,0.21574084,-0.03655563,-0.29600185,0.37969926,0.37815166,0.4367141,-0.46474776,0.6964096,0.16830763,-0.2284113,0.19643392,0.2381324,0.38697323,0.030534668,0.5394148,-0.15871212,0.0541198,0.23961583,0.7597922,0.27290115,0.4599743,0.13050678,-0.13117172,0.4639345,-0.07517473,0.24803685,0.026063208,-0.6844616,0.10600627,-0.13330385,-0.07632352,0.5043038,0.2492388,0.24247201,0.18544659,-0.17807089,-0.11447108,0.1812898,-0.10863434,-1.2977229,0.44881317,0.27676192,0.91569555,0.29333606,0.17811094,-0.18888389,0.83282626,-0.17476293,0.11894708,0.4107844,-0.12679179,-0.4173191,0.745391,-0.6238608,0.25617236,0.008167518,-0.0068946118,0.36129704,0.1270085,0.40960264,0.8737172,-0.2129147,0.0014829508,-0.041265633,-0.10846053,0.10960653,-0.20733836,0.21182789,-0.21882597,-0.50757307,0.55749357,0.3692574,0.35790253,-0.16676225,0.0060818684,-0.047152635,-0.27198243,0.22091122,-0.072728164,-0.13384989,-0.033220235,-0.33627543,-0.07457356,0.5132459,-0.15283558,0.065450475,-0.100626014,-0.044664618,0.13649711,-0.0345709,0.0958238,-0.09637709,-0.83986026,0.16063395,-0.24832502,-0.3989074,0.44525272,-0.33984014,0.06701534,0.15469222,-0.030816738,-0.072376974,0.41672605,0.33022246,0.45838785,0.03149948,-0.22804503,-0.32154366,0.05125355,0.03719804,-0.349358,0.29066402,-0.31253958,-0.039764762,-0.57644403,0.48055476,-0.36427853,-0.23989563,0.24994908,-0.34819144,-0.239782,0.6076556,0.02955779,-0.11615624,0.05678281,-0.19304015,-0.40175554,-0.15650143,-0.15643442,0.19409673,0.20583116,-0.0015531778,-0.18790765,-0.08459394,-0.21627033,0.48519936,0.06762966,0.34285402,0.0537618,-0.0786762,-0.34488255,0.17550655,0.26676628,0.6852545,0.10404883,0.16203931,-0.16342996,-0.24011266,-0.43176046,0.20207584,-0.097698174,0.19029084,0.10187479,-0.24597915,0.97386014,0.03352497,1.0211623,0.033827227,-0.34538117,0.09912328,0.74268764,-0.106044725,0.07136292,-0.49705297,0.9490281,0.3933352,-0.13989273,0.021903863,-0.46197113,0.07479233,0.26933137,-0.3649508,-0.03065109,0.010180371,-0.5005861,-0.278754,0.16740994,0.27078143,0.13927306,-0.097188234,-0.33868617,0.090697,0.13497105,0.36744568,-0.7908373,-0.17889623,0.19457588,0.17575921,-0.14488958,0.09050315,-0.28488228,0.3676642,-0.6230789,0.20508416,-0.38014725,0.056552667,-0.3735728,-0.35065508,0.15432489,-0.028017435,0.33038324,-0.31171006,-0.42416975,-0.097607985,0.24656892,0.13346675,0.2760075,0.63938606,-0.21347506,0.059379138,0.17695189,0.4920918,0.9610202,-0.3280851,-0.01370201,0.23151362,-0.6355576,-0.5984959,0.26761958,-0.44685873,0.13601546,-0.039124127,-0.49995902,-0.26654583,0.14483905,-0.049953137,0.03268688,0.032942753,-0.885102,-0.17019463,0.3542606,-0.24902,-0.19811888,-0.18151458,0.37674946,0.73823583,-0.16246568,-0.3649952,0.094223365,0.13145813,-0.29754332,-0.8023046,-0.012452632,-0.31861523,0.22334686,-0.02541765,-0.2960646,-0.0035493805,0.2770083,-0.6910957,0.09684964,0.18092348,-0.43099493,0.08546876,-0.1389138,0.049378317,0.83528095,-0.20870604,-0.25289187,-0.4471922,-0.5310734,-0.7790391,-0.41583246,0.1417763,0.19741464,0.052603982,-0.41724393,-0.21996678,-0.27757344,-0.00037876196,-0.042952634,-0.43752745,0.28855205,0.14118828,0.50554746,-0.41483876,-1.1574812,0.16396536,0.13832213,-0.02961857,-0.5624665,0.46455598,-0.049970858,0.81322813,0.058851812,-0.1387423,0.041918725,-0.54826915,0.05925453,-0.4071529,0.020696554,-0.6489169,0.22109939,619 +486,0.36488238,-0.15929124,-0.6015546,-0.12409363,-0.27994722,-0.21969235,-0.098508015,0.589248,0.1877921,-0.540896,-0.19305097,-0.19879735,-0.105158925,0.35886255,-0.25943163,-0.5465279,0.01827695,0.15548682,-0.52575177,0.57406795,-0.3913812,0.3110326,-0.007294114,0.5269999,0.13458543,0.21993263,0.022674186,-0.15447018,-0.14309299,0.05736515,0.08452741,0.11967019,-0.5489404,0.19368188,-0.25434396,-0.43730474,0.027693095,-0.33456108,-0.5180339,-0.808515,0.28716898,-0.65400714,0.4862314,0.0075950623,-0.26406166,-0.022691326,0.08721622,0.32279631,-0.2689313,-0.06779963,0.058720205,-0.008026479,-0.05986052,-0.21152124,-0.28491408,-0.3027323,-0.537315,0.03291958,-0.50609154,-0.012313038,-0.038449932,0.1837416,-0.3292716,-0.05685511,-0.10180176,0.648876,-0.4080789,0.020299563,0.32852867,-0.123996295,0.26588577,-0.6632099,-0.19050209,-0.14089629,0.20290947,-0.10549074,-0.19506027,0.36653814,0.11968374,0.5783858,0.06290706,-0.2060204,-0.33650753,0.02717488,0.20988122,0.3342689,-0.19666089,-0.5462988,-0.110148944,0.07908225,0.16918537,0.17489202,0.19322443,-0.41715002,0.05596625,0.05003351,-0.22464374,0.393252,0.61851454,-0.14284936,-0.1757103,0.29103082,0.5763189,0.20665108,-0.16618516,0.13186301,0.12829593,-0.5554179,-0.22767952,0.029128075,-0.2286367,0.47090164,-0.13116086,0.2960373,0.62824744,-0.14597185,-0.037332494,0.20234118,0.17251872,0.057678282,-0.40216285,-0.35630158,0.3450468,-0.43522948,0.13284478,-0.1358154,0.7307391,0.24677053,-0.7798551,0.26836613,-0.63333553,0.13658175,-0.10224408,0.46579581,0.7143134,0.51698476,0.27397028,0.6555186,-0.54645574,0.17150085,-0.01906184,-0.37033287,-0.11139687,-0.15059035,-0.078696325,-0.3469065,-0.14074263,-0.19098306,-0.26481122,-0.05177751,0.20291784,-0.6036767,-0.12341218,0.05002929,0.95434344,-0.2225759,-0.06257806,0.8259036,1.0105237,1.0323114,-0.010547643,1.2375766,0.19074686,-0.24440463,0.32076985,-0.20717038,-0.88077736,0.31485325,0.28330126,-0.25294864,0.33472437,0.09486823,-0.054831743,0.5473475,-0.6363023,0.07408919,-0.26932338,0.41345993,0.15991409,-0.12934527,-0.38684177,0.016309598,-0.07049868,-0.17038508,0.015973981,0.27609473,-0.1592671,0.23087206,-0.07659519,1.4870415,-0.13980553,0.20961316,0.19524534,0.59236896,0.25389785,-0.09727502,-0.0827979,0.14541234,0.280566,0.11459685,-0.6662491,-0.013456928,-0.38190705,-0.56494874,-0.19349048,-0.19751906,-0.042231567,-0.24267991,-0.5399935,-0.16464864,-0.13653247,-0.22611438,0.24036665,-2.5080523,-0.3708025,-0.1195489,0.3182589,-0.32941288,-0.2545762,-0.124503076,-0.47849724,0.56795853,0.24578165,0.46342483,-0.64325815,0.50457144,0.5600903,-0.4566442,-0.03553749,-0.6180587,-0.07511575,0.05748364,0.1702155,0.016653309,-0.07232847,0.060539734,-0.09491939,0.32330686,-0.11653335,0.06569932,0.2622601,0.3687683,0.12521924,0.5222828,-0.011280196,0.5357503,-0.6060144,-0.13854496,0.21142676,-0.43790674,0.21961863,-0.073219284,0.14787292,0.4316245,-0.5813123,-0.73579943,-0.68441004,-0.24615555,1.0601056,0.02757883,-0.3344879,0.29665405,-0.4585976,-0.08377637,-0.044621803,0.47632176,-0.111784704,0.082278594,-0.8523306,-0.04908073,-0.20670354,0.22600731,0.039746873,0.03522081,-0.28816137,0.47435775,-0.097687766,0.44837338,0.5439407,0.18805109,-0.41869527,-0.51878625,0.05828595,0.7467804,0.35688767,0.19686839,-0.14208233,-0.089047894,-0.29991135,-0.079555474,0.04296612,0.46953425,0.77084965,-0.11771327,0.018150117,0.32457718,0.007541043,0.10718709,-0.15289918,-0.5394569,-0.15959896,0.09067269,0.46563792,0.7468761,-0.3014516,0.489856,-0.13302575,0.36649105,-0.25040907,-0.39886585,0.56601965,0.7614028,-0.32846946,-0.34204802,0.6155714,0.2907708,-0.4097178,0.4944165,-0.60416704,-0.22341831,0.48225957,-0.06684095,-0.48914906,0.050581105,-0.22138812,0.28155553,-1.0136184,0.4663822,-0.38884354,-0.588273,-0.7246102,-0.26847592,-2.6474833,0.2108988,-0.34398603,0.00083779223,-0.08783335,-0.0058336086,0.12873195,-0.5011439,-0.75351906,0.18211211,0.059952967,0.6223132,-0.13575396,0.18372759,-0.15137868,-0.15694813,-0.2592247,0.16624579,0.32956603,0.20162632,0.19009222,-0.5374283,-0.2301916,-0.08657171,-0.47220844,0.17091708,-0.74690044,-0.41292533,-0.22249036,-0.7044517,-0.36085656,0.74497384,-0.27971914,-0.08163132,-0.17498183,0.06021115,-0.086259104,0.38228443,0.03148649,0.16216119,0.13271542,-0.07870251,-0.021321168,-0.25171775,0.14026643,0.0037651253,0.36440635,0.23841402,-0.11867257,0.17456113,0.54265743,0.9439283,-0.025641084,0.69658333,0.6431646,-0.121292286,0.42036352,-0.35808104,-0.3605455,-0.48403808,-0.26174825,0.089158274,-0.3367394,-0.431736,0.31277642,-0.52391917,-0.8194439,0.63615364,-0.03094778,0.13244422,0.09887978,0.064073555,0.5056535,-0.21405192,-0.17556636,-0.048197825,-0.061719906,-0.5530652,-0.35725188,-0.6786838,-0.54065275,-0.0420377,1.2505283,-0.16244335,-0.0419322,0.12319275,-0.28591552,0.02428111,0.16381843,-0.119061574,0.08821411,0.30909038,-0.073895015,-0.6283336,0.31197992,-0.087166436,-0.17453542,-0.5470285,0.12922223,0.74107116,-0.65374357,0.600315,0.28220224,0.015627043,-0.22162381,-0.54526746,-0.17701812,0.09873665,-0.036181994,0.41906866,0.19709477,-0.8251739,0.39041117,0.5553386,-0.3123517,-0.8307189,0.33799025,-0.0075586224,-0.25574157,-0.050020773,0.5005776,0.030124221,0.033713445,-0.24767038,0.22286871,-0.36966392,0.22276227,0.23499775,-0.2921053,0.51248026,-0.33477184,-0.11470164,-0.7894951,-0.06101673,-0.62163603,-0.14449477,0.38828716,0.026371984,0.0037121943,0.122319065,0.20745263,0.37388995,-0.073063135,0.050418753,-0.16284725,-0.28142348,0.28801557,0.49042913,0.5064523,-0.52542084,0.6102452,-0.0585982,-0.117007315,0.05085402,0.1326308,0.4303979,-0.0050456696,0.46370718,0.09401006,-0.1075598,0.21441177,0.9707013,0.07693088,0.5087545,0.19962248,-0.18634592,0.21790777,0.09260224,0.13118133,-0.010519965,-0.46764842,0.14234509,-0.050824385,0.25764218,0.4815168,0.14138325,0.3308041,0.012373239,-0.4466648,-0.10539476,0.14689983,0.04630083,-1.4480113,0.5483347,0.107375756,0.8012123,0.49891424,0.17966425,0.016833033,0.59051615,0.046289172,0.1722552,0.45166785,-0.1080813,-0.41128138,0.5604876,-0.574876,0.50184643,-0.05008221,0.060512755,-0.07103871,0.16364382,0.45592663,0.7667052,0.001450198,0.036619958,0.08860863,-0.2463924,0.105764456,-0.46191803,0.1065703,-0.38062677,-0.2350898,0.55685383,0.5002685,0.2290833,-0.13528271,-0.03376613,0.19672565,0.004545348,0.30398685,-0.120173745,0.09918068,-0.005295526,-0.5331522,-0.25779957,0.5514801,0.06284976,0.19721428,-0.03917625,-0.08076564,0.32690224,-0.14905807,-0.07722611,-0.0144151915,-0.79133224,0.017923534,-0.29224738,-0.36757967,0.36953193,-0.13574514,0.17727259,0.06565185,0.095143445,-0.5333958,0.49147248,-0.16933313,0.6240535,-0.09432513,-0.14906192,-0.2580872,0.14229935,0.19029179,-0.19575039,0.030547904,-0.35885334,-0.092714734,-0.5642862,0.48001242,0.08460854,-0.23222362,0.03807794,-0.13643564,-0.04486694,0.5594769,-0.15994452,-0.13770048,-0.005089479,-0.22734407,-0.29103827,-0.27553862,-0.11280869,0.2960635,0.116994195,0.12839083,-0.06392535,-0.2576905,-0.056086097,0.59216696,-0.037326694,0.33458704,0.4514232,0.03432297,-0.34771279,-0.21940525,0.21739046,0.52681273,0.11512659,-0.119758405,-0.24198417,-0.32796845,-0.2551901,0.16160491,-0.2213567,0.36525458,0.090923026,-0.42147177,0.79821,0.19511162,1.3208071,0.061946463,-0.21949932,0.066564634,0.28734165,-0.015329497,0.0080706505,-0.42545924,1.0481708,0.68459,-0.15971789,-0.111937694,-0.32534736,0.04508921,0.19745514,-0.20412752,-0.24590267,0.024298022,-0.5685814,-0.20524038,0.19030036,0.2750923,0.08279217,-0.1945766,0.054664962,0.106130466,-0.01766717,0.3398542,-0.556606,-0.07076315,0.26086783,0.3783206,0.1538447,0.15390699,-0.50874674,0.4072542,-0.4996999,0.25116754,-0.32488775,0.2542228,-0.20143335,-0.4155874,0.12917744,0.06123525,0.45355433,-0.34375253,-0.30522552,-0.2966343,0.5404712,0.172725,0.031422723,0.7583441,-0.26572117,0.0005934047,0.07520791,0.60132825,0.82741153,-0.18188456,-0.20831533,0.28289244,-0.17683287,-0.6809951,0.35869762,-0.40051046,0.14573185,-0.15561745,-0.09092302,-0.6951937,0.22675972,0.22914192,-0.17588404,-0.03974334,-0.6619758,-0.23409131,0.24608926,-0.22812377,-0.19860448,-0.30814567,0.020628085,0.57766634,-0.19633047,-0.18534084,0.059077892,0.30426875,-0.21472725,-0.4070843,-0.08008373,-0.36418846,0.196471,0.24020925,-0.35088304,-0.16754921,0.05429026,-0.5145729,0.04940208,0.07476306,-0.35496756,0.09679593,-0.16325125,-0.13344467,0.7770564,-0.07271985,0.2543723,-0.43773618,-0.44315982,-1.0363805,-0.17841223,0.53992045,0.16173492,-0.0077522523,-0.8867565,-0.07003875,0.07413198,-0.079327404,0.04492436,-0.3256034,0.43861362,0.1659715,0.50633574,-0.041096773,-0.6393547,-0.025065929,0.19007294,-0.21358709,-0.55465543,0.46035084,0.0150663685,0.9800102,-0.014533688,0.06539994,0.1908162,-0.4455734,-0.006807289,-0.28987414,-0.34825566,-0.5740058,-0.06127986,622 +487,0.1791002,-0.20047688,-0.613609,-0.03922695,-0.24523023,0.080294155,-0.22682025,0.22865084,0.17611516,-0.20659895,0.045519162,-0.13474084,-0.067344055,0.50365204,0.019319708,-0.85924786,-0.028146502,0.18296348,-0.8642308,0.6823165,-0.37414196,0.39595038,-0.0409682,0.26357597,0.1702019,0.23488948,-0.06602633,-0.10689994,0.02757,0.056273643,-0.24900927,0.1803793,-0.3075426,0.17007704,0.05045103,-0.33789042,0.012262225,-0.17870034,-0.547914,-0.7013771,0.23632254,-0.61834323,0.5940839,-0.11097674,-0.29507008,0.1355292,0.05193425,0.43925884,-0.35633197,0.008274998,0.15168127,-0.039393667,-0.22578979,-0.25052935,-0.31912795,-0.37943244,-0.49707374,0.031459842,-0.7084498,-0.11486399,-0.2893208,0.13990085,-0.35660794,-0.11621928,-0.01233731,0.38073984,-0.35733366,0.16646825,0.15606706,0.035051115,0.1988102,-0.5732246,0.112136535,-0.03601733,0.324473,-0.1639183,-0.28345293,0.27192268,0.2759283,0.5718629,-0.0030650157,-0.2286594,-0.18922517,-0.069435105,0.08480607,0.5138172,-0.1427096,-0.30552536,-0.1778264,0.13287517,0.1396053,0.14263073,-0.039409477,-0.44195557,-0.09020027,-0.13384461,-0.13144682,0.3441725,0.43686786,-0.26026994,-0.33706993,0.45514372,0.6343714,0.2901079,-0.07026421,0.14976345,-0.02845152,-0.45865512,-0.17116307,0.17423503,-0.0053508366,0.34068638,-0.1466798,0.36554328,0.6612204,-0.018506125,-0.034251202,0.04985633,0.029358821,0.016186787,-0.16421969,-0.051094145,0.120143175,-0.58450794,0.15333748,-0.016912907,0.7492263,0.156688,-0.7709779,0.39893475,-0.5727381,0.2605122,-0.039397035,0.5296671,0.8261887,0.41904625,0.062551245,0.62693846,-0.37657642,0.13145718,-0.103068665,-0.31648618,-0.0077959127,-0.06492104,-0.026502311,-0.68159384,-0.018903473,-0.2123817,0.013915266,0.073946,0.44887277,-0.6950942,-0.14800528,0.04504202,0.8173366,-0.33708254,-0.12504627,0.64236534,0.8678454,0.8397797,-0.0066558262,1.2942407,0.3953125,-0.24223249,0.24121287,-0.4522393,-0.7141233,0.12196929,0.30364332,-0.004289525,0.31513563,0.09039648,-0.056583982,0.49940953,-0.24987467,0.04268655,-0.28575835,0.24002592,-0.05614569,0.04266728,-0.33653775,-0.25039452,-0.043795697,0.0887677,0.056003995,0.28848675,-0.2381899,0.4139739,0.027610494,1.692611,-0.05276943,0.102860495,0.07309096,0.29213423,0.30616984,-0.18284675,-0.28862852,0.32834783,0.4624736,-0.11565589,-0.56974787,0.05866924,-0.31968397,-0.24271442,-0.19662166,-0.21507971,0.09368805,-0.077912144,-0.5103031,-0.14022496,-0.010563225,-0.34209213,0.5317632,-2.5916731,-0.2570967,-0.09783006,0.2928014,-0.33413786,-0.2886131,-0.23165277,-0.36457962,0.49809185,0.18685105,0.4228641,-0.49535924,0.44734043,0.31138393,-0.4119718,-0.11144572,-0.5267552,-0.14342006,0.18335441,0.3406659,-0.20069298,-0.06893371,-0.1312907,0.07251499,0.34496865,-0.38327822,-0.0035392854,0.45928,0.24846591,0.18769349,0.32341364,-0.075033,0.54043365,-0.18629935,-0.22529016,0.3472507,-0.15546796,0.41557583,-0.09770719,0.19084011,0.43517855,-0.5825675,-0.85198796,-0.51178396,-0.24802402,1.0939854,-0.2430958,-0.27023777,0.23239431,-0.31323674,-0.12615451,0.012549196,0.32182005,-0.14766976,-0.20122303,-0.7149814,0.15778176,-0.008534504,0.43661287,0.03328201,-0.16997373,-0.2383286,0.39358696,-0.17177881,0.2890253,0.31761575,0.29222915,-0.24269211,-0.45142522,0.12899518,0.8674062,0.4103027,0.15305991,-0.17660674,-0.112302266,-0.3032228,-0.1377382,0.028472977,0.3330586,0.74239075,0.033093095,0.13744374,0.24200605,-0.05552253,0.09150565,-0.24892154,-0.28842744,-0.05170706,0.20632888,0.5247981,0.47104615,0.028052304,0.75352085,0.022652626,0.06888934,-0.05290507,-0.6801242,0.5592367,1.1605098,-0.2597546,-0.28757784,0.49757457,0.09372612,-0.27426928,0.36196443,-0.499225,-0.2842105,0.57260704,-0.286007,-0.46087804,0.29795069,-0.2348478,0.026405903,-0.8108681,0.31850573,-0.21184254,-0.6040487,-0.5075675,0.020749586,-3.1578882,0.23304312,-0.32469898,-0.010505983,-0.019098908,-0.014432856,0.20363316,-0.38870636,-0.46831375,0.12587442,0.12225441,0.6673961,0.029109161,0.14109108,-0.10719346,-0.19340344,-0.3012522,-0.023944587,0.109105244,0.21897003,-0.13955761,-0.44633135,-0.19609304,-0.15075704,-0.4317704,0.08571478,-0.63440406,-0.25113723,-0.244346,-0.6121577,-0.15046607,0.7184248,-0.24793223,0.009295268,-0.3466973,-0.11455507,0.008093774,0.30540386,0.24935555,0.20070674,0.11919776,-0.12075659,-0.16721132,-0.40710402,-0.002973335,0.13513303,0.107693724,0.22301295,0.12108898,0.32623383,0.5110419,0.6943785,-0.076335534,0.6498969,0.5322894,-0.22688971,0.342288,-0.24543762,-0.121277876,-0.39415127,-0.3747391,-0.12598598,-0.39648208,-0.40775782,-0.08600718,-0.32714286,-0.64933735,0.46647877,0.092199154,0.104229994,0.030790716,0.23830462,0.52085584,-0.10934417,-0.030474236,-0.14065693,-0.1669039,-0.52286476,-0.25565374,-0.56739694,-0.54843575,0.34488615,1.1567568,-0.3215775,0.034684896,-0.027037876,-0.29102352,-0.07969151,0.030346258,0.0576624,0.4415036,0.23989332,-0.14714868,-0.60711575,0.30760187,-0.25282064,-0.17388551,-0.5769421,0.14332815,0.672555,-0.5794756,0.47156236,0.12018983,0.116119735,-0.0110110855,-0.47966263,-0.24041738,0.14299467,-0.26948506,0.2506617,0.13326527,-0.63945115,0.45516413,0.33463004,-0.11599089,-0.7364253,0.3138552,0.122634366,-0.38977453,-0.018830333,0.3784918,-0.048202615,-0.0076189763,-0.2994104,0.22913022,-0.27256918,0.28682283,0.20840046,-0.25384074,0.09726937,-0.22175357,-0.3658705,-0.5091081,0.048291367,-0.50571144,-0.24865004,0.14701429,0.14227858,0.08891378,-0.06605383,-0.013581021,0.43458286,-0.23788442,0.07288066,-0.13687766,-0.3480027,0.20622002,0.40391937,0.29520395,-0.31633496,0.5944743,-0.021049142,-0.16669624,-0.07735089,0.24848758,0.5396584,0.15189245,0.39072543,-0.071746394,-0.20501289,0.3205476,0.9643006,0.035047922,0.4335261,0.019308826,-0.13912787,0.05882948,0.053151544,0.060896955,-0.023346474,-0.2823355,0.11103248,0.05537918,0.27504134,0.63752383,0.26189905,0.2398608,-0.13679335,-0.3970749,0.014539943,0.07975068,0.17845193,-1.0393046,0.41986808,0.29414025,0.73415834,0.4004933,0.105121635,-0.10335088,0.5420424,-0.14736247,0.20769323,0.237535,-0.42725685,-0.49498898,0.45341104,-0.76452255,0.46975246,0.09373387,0.023500418,0.2803058,0.12354251,0.26805678,0.8298565,-0.11164697,0.062499404,-0.0016425912,-0.2530343,-0.05854949,-0.28354362,0.008379577,-0.48509407,-0.58027107,0.54037875,0.37307876,0.26145625,-0.24251437,0.0009976412,0.12053412,-0.27375793,0.1476485,-0.02542718,0.10277731,-0.15283951,-0.46723753,-0.3682646,0.42951927,-0.058835287,0.07420806,0.06920198,0.07971334,0.14148255,-0.1840026,0.076370016,-0.037167463,-0.6573688,0.11120764,-0.3199288,-0.25511134,0.44831398,-0.20043983,0.19241746,0.24073294,0.07824789,-0.4329222,0.7416548,-0.10852582,0.8120952,0.028385019,-0.1148966,-0.29604673,0.334971,0.07688656,-0.17162205,-0.0038876194,-0.3396916,-0.04748586,-0.77139527,0.37810558,-0.10560848,-0.2977304,0.2032264,-0.22200134,0.028503027,0.4062474,-0.07547416,-0.12941793,-0.044291012,-0.17381613,-0.2693989,-0.17903076,-0.07052701,0.2113237,0.29613605,0.021177266,-0.12696704,-0.11967217,-0.23069239,0.45885727,-0.0037037362,0.2999081,0.37650654,0.16097902,-0.32624173,-0.053484865,0.29862216,0.46258053,-0.0016004092,0.009485756,-0.17375973,-0.2546922,-0.35056797,0.028268099,-0.20792088,0.3582936,0.04775359,-0.38320425,0.7429906,0.23987411,1.0824726,-0.047519922,-0.16791375,0.20766439,0.37354845,0.08083199,-0.02572287,-0.22419988,0.76855576,0.5843614,0.15342365,-0.065121315,-0.26933023,-0.29376164,0.32516485,-0.221668,-0.021663725,0.13131896,-0.58097935,-0.4073713,0.27693197,0.11590185,0.109062545,-0.094820224,-0.06646522,0.11908027,-0.021902319,0.10142952,-0.551004,0.10770761,0.24140845,0.27956396,-0.03157812,0.35511112,-0.516725,0.38201663,-0.566776,0.08672688,-0.18572302,0.18637955,0.010560042,-0.20750935,0.24926306,0.1931108,0.30377516,-0.3336533,-0.27058235,-0.39179987,0.6205169,0.2443097,0.121888794,0.6939716,-0.3156733,0.24438827,0.08707498,0.34470838,0.8509154,-0.32103267,-0.088782735,0.29526138,-0.3168976,-0.6163977,0.28108093,-0.19686723,0.09675868,-0.059602443,-0.25062555,-0.32841444,0.22536545,0.16582918,0.05165718,0.024198933,-0.53447866,0.032555405,0.13725069,-0.22838809,-0.16040692,-0.36927775,0.12977393,0.6478041,-0.22519456,-0.16883911,0.32538205,0.1765505,-0.24425673,-0.5106639,-0.00597749,-0.43084684,0.15507948,0.16259243,-0.23758566,-0.01753882,-0.019783063,-0.515456,-0.0884454,0.32414818,-0.3979331,0.08304964,-0.1268777,-0.09204726,0.8746047,-0.4062361,0.031409256,-0.7012005,-0.505871,-0.7225937,-0.35682324,0.7322145,0.24653576,0.115319096,-0.79091924,0.021846745,-0.08009361,-0.031660113,0.06582527,-0.35546216,0.347904,0.13289939,0.19794002,-0.3505679,-0.9898635,0.21505271,0.045383472,-0.3532892,-0.552483,0.4301328,-0.16020563,0.7831629,0.0010608776,-0.13442115,0.32219794,-0.42661613,-0.07012755,-0.25332674,-0.21748526,-0.6778416,-0.001482989,629 +488,0.51579267,-0.21877106,-0.43523836,-0.014622514,-0.35902697,0.091326766,-0.21144979,0.55112064,0.33604386,-0.19488478,-0.1970538,-0.03971949,-0.050501745,0.32483095,-0.2539907,-0.6388609,0.007922815,0.13757111,-0.41083884,0.7661405,-0.36078262,0.3261344,-0.045447104,0.3825658,0.24695788,0.26617765,0.1844894,0.03726899,-0.13795888,-0.41203263,-0.061367694,0.1841975,-0.6595315,0.2662141,-0.12491469,-0.3066868,-0.12876017,-0.65950114,-0.34876636,-0.8303895,0.44341406,-0.80501235,0.48472473,0.100130506,-0.2934983,0.32742214,0.11855279,0.14281034,-0.07637298,-0.10715604,0.15568988,-0.12210337,-0.07725469,-0.062372047,-0.17004745,-0.1538215,-0.65186137,-0.021814499,-0.38846317,-0.13924064,-0.33923373,0.1401952,-0.42146987,-0.01510793,0.014071307,0.6521911,-0.47824878,-0.024306485,0.1033137,-0.1795965,0.10172244,-0.6527639,-0.282749,-0.036203187,0.397079,-0.07085503,-0.11331997,0.26895022,0.23405774,0.43110442,0.0056118285,-0.19916917,-0.43081632,-0.17706135,0.1850812,0.61575305,-0.04221211,-0.62203443,-0.204533,-0.13902487,0.23695382,0.024047945,0.045277443,-0.14183404,-0.18919908,-0.13009933,-0.31285554,0.5699061,0.5065959,-0.20227246,-0.24350154,0.31476593,0.3692805,0.29646072,-0.17084543,0.085601315,0.0038609866,-0.5692657,-0.09726989,-0.043618273,-0.14480057,0.47937825,-0.16629371,0.40362638,0.6346747,-0.10423342,-0.0015846321,0.17040385,0.033434894,-0.099732816,-0.24765715,-0.18915007,0.20446494,-0.40859967,0.34861818,-0.19679458,0.8680402,0.14624505,-0.8191644,0.42565203,-0.42039675,0.17791839,0.118056856,0.53924495,0.7388524,0.32779264,0.4098381,0.7799738,-0.24782105,0.028694203,-0.045475103,-0.30661243,-0.0717118,-0.094902106,0.04470804,-0.46509975,0.0061266,0.13503145,-0.06305421,0.15047958,0.6300128,-0.466502,-0.1412569,0.14776684,0.7944702,-0.15774257,-0.07786669,1.0425617,1.082847,1.2084372,0.021943191,1.034211,0.03870138,-0.13449164,0.016191704,-0.29097128,-0.68565613,0.23411156,0.29566544,0.32898706,0.21126798,0.05445001,-0.15839687,0.35061985,-0.46158847,-0.12567413,0.0077543342,0.13948771,0.2616983,-0.11042326,-0.5373301,-0.3291606,0.0218461,0.16507718,0.21980776,0.26139012,-0.29766777,0.5219646,-0.062538795,1.5702641,-0.09959866,0.08907775,0.10551534,0.62488365,0.21617101,-0.091524415,-0.052611005,0.14625065,0.2955163,0.048043888,-0.7051,0.1819433,-0.28474623,-0.37788624,-0.06587857,-0.43281025,-0.276983,-0.11324979,-0.3789787,-0.12011554,-0.15065476,-0.48829085,0.40641063,-2.8916698,-0.14634131,-0.097187385,0.2052255,-0.16428678,-0.26957986,-0.12583666,-0.59806377,0.4099606,0.32277742,0.56455135,-0.61185104,0.31374803,0.48474047,-0.6468633,-0.06704577,-0.55903846,-0.083483934,0.008185676,0.4602589,0.07281845,-0.09900562,-0.10722575,0.29294857,0.6546735,0.21251829,0.121877536,0.2855606,0.3438192,-0.08421658,0.44205385,-0.11964873,0.44617552,-0.21828082,-0.12704389,0.44899958,-0.49008232,0.25936586,-0.46203277,0.12407003,0.48824677,-0.43358335,-1.0368919,-0.5789219,-0.1614262,1.1589901,-0.16938005,-0.57797134,0.34651804,-0.35525098,-0.27622965,0.054154925,0.620685,-0.21701476,-0.18562208,-0.7394329,0.032898363,-0.1653258,0.09786713,0.014360453,-0.023362169,-0.4754892,0.8293682,-0.017295321,0.58379996,0.16181585,0.17882572,-0.34267202,-0.38052267,0.097252354,0.8336047,0.467524,0.15507317,-0.25386012,-0.07250283,-0.30589634,-0.27148473,-0.057519756,0.7207804,0.5338024,-0.03203926,0.14226045,0.20026548,-0.0007320323,0.17261757,-0.15827693,-0.16589187,-0.25281456,-0.014312736,0.6712748,0.7436107,-0.2301654,0.32106882,-0.021458402,0.2232956,-0.14433193,-0.44430128,0.6299558,0.8658568,-0.16434844,-0.27212983,0.56122154,0.45103636,-0.18328048,0.4569994,-0.5364657,-0.29927087,0.3466654,-0.08852054,-0.46345183,0.1796517,-0.29930338,-0.006064781,-0.6614684,0.16268758,-0.2712905,-0.64972657,-0.46216792,-0.14474572,-3.3565087,0.038947683,-0.17934655,-0.32140356,-0.29154354,-0.21273288,0.110265605,-0.57506514,-0.62797624,0.11386176,0.055754356,0.81621057,-0.23987731,0.05306957,-0.16373488,-0.30964804,-0.39153686,0.11254027,-0.0048549003,0.5235166,0.04756605,-0.30085665,-0.11106551,-0.19888131,-0.5378777,-0.09705033,-0.41636088,-0.40731278,-0.016376853,-0.50409496,-0.21448985,0.62543374,-0.2515754,0.13470736,-0.34952492,-0.06668852,-0.27669638,0.3368353,0.042179108,0.1795956,-0.060578488,-0.122121505,0.17742012,-0.13697116,0.39945444,-0.0684006,0.29140136,0.3835977,-0.2264609,0.20954296,0.48405266,0.58438736,-0.08418627,1.1582114,0.3639123,-0.094314,0.22964333,-0.19915567,-0.22555247,-0.62255627,-0.16667397,0.12635863,-0.48346108,-0.40420622,-0.16067302,-0.42702523,-0.81326526,0.44342777,0.05602539,0.3225052,-0.008839177,0.08730918,0.38324207,-0.27065384,0.006233741,0.010035881,0.04712052,-0.46651378,-0.2070063,-0.5973267,-0.47609258,-0.046093743,0.8295985,-0.18592347,-0.040039275,0.11059659,-0.3363877,-0.0374309,0.08375508,0.12583609,0.05555653,0.372953,0.11877757,-0.75968355,0.6407303,-0.26515034,-0.02027854,-0.54213506,0.16595636,0.42425093,-0.4564678,0.53534347,0.32660177,0.15305391,-0.15752351,-0.51683503,-0.1518791,-0.15634327,-0.11197462,0.33759728,0.33653337,-0.76970917,0.5338026,0.115978874,-0.14706786,-0.75298584,0.44888765,-0.03536042,-0.29423004,-0.046438456,0.3364614,0.25344935,0.0076707006,-0.19690266,0.31997627,-0.4164332,0.30127293,0.06675643,-0.06385617,0.4601972,-0.17450564,-0.2557654,-0.59454286,-0.11038096,-0.48788992,-0.29529902,0.0678841,0.18999325,0.08026312,0.075388536,0.051325586,0.38971406,-0.27008313,0.099658154,-0.14393279,-0.2975764,0.36477265,0.5364459,0.64584273,-0.46609816,0.5999384,0.07336672,-0.0015280119,0.17041986,0.027722657,0.32232887,-0.012467246,0.434114,0.12184042,-0.17962381,0.11022464,0.68616885,0.25247523,0.42218372,-0.009790495,-0.21034595,0.43505025,0.06918866,0.32805187,-0.10450406,-0.6380607,0.0077739186,-0.31594822,0.049501956,0.51464975,0.18165,0.28078443,-0.05074891,-0.3253151,0.02073531,0.20498143,-0.21095255,-1.2786916,0.28137818,0.17513645,0.9617682,0.62003547,-0.09917836,0.18220581,0.7364502,-0.05024864,0.06320285,0.30664077,0.12324945,-0.49340725,0.5554593,-0.7096277,0.54897946,-0.015753891,-0.029799778,0.116385356,0.07148884,0.443881,0.6656111,-0.19270037,-0.08139135,0.01496111,-0.4039449,0.14792871,-0.3600637,0.15315528,-0.5009155,-0.1621345,0.70985323,0.56875676,0.28738016,-0.12228496,0.08956623,-0.043536443,-0.034118086,-0.05167354,-0.007697993,0.0047076982,-0.23174548,-0.8136334,-0.1076739,0.49410763,-0.07482816,0.07101897,-0.01571103,-0.17465846,0.20931792,-0.069072284,-0.14399035,-0.06675086,-0.81364006,0.066505,-0.15639254,-0.47500607,0.4021518,-0.17076333,0.3138308,0.24730809,0.04422762,-0.25277257,0.31126547,0.16617917,0.7230052,0.028715031,-0.088721626,-0.30093715,-0.0013033833,0.19398117,-0.23292434,-0.232223,-0.17596896,0.06123754,-0.45158753,0.44912228,-0.11356171,-0.27245742,0.16646682,-0.0032280642,0.057319973,0.5231845,-0.11939596,-0.088913426,-0.12782423,-0.12258037,-0.24160136,-0.09320913,-0.18971731,0.22951964,0.20525482,-0.24653609,-0.075432576,-0.037629843,-0.054510396,0.3684097,-0.005984482,0.41635948,0.36047697,0.13068895,-0.443928,-0.082556546,0.30142707,0.6635496,-0.060491603,-0.0328418,-0.30470023,-0.46651432,-0.45403773,0.4169955,-0.070505165,0.3476254,0.07821908,-0.2542006,0.6639349,0.19847162,1.0021622,0.042374007,-0.37773958,0.19310418,0.52547026,-0.08368831,-0.02553603,-0.28282115,0.9166209,0.2855888,-0.22640105,-0.14970826,-0.45579505,0.18780515,0.2577891,-0.20255303,-0.089570366,-0.12801448,-0.576938,-0.10133195,0.15321755,0.21119581,0.13797142,-0.19333777,-0.07464003,0.28037483,0.17327443,0.33777028,-0.5209471,-0.13159381,0.43721431,0.11921716,0.011314399,-0.029875968,-0.4904807,0.30597407,-0.54766047,0.053130995,-0.17100647,0.20462263,-0.5041322,-0.18822932,0.37259832,0.03383192,0.41771945,-0.30770868,-0.43516684,-0.3192447,0.3885169,0.1376373,0.10777609,0.44235295,-0.2718007,0.05658238,0.114349954,0.5677702,0.99016994,-0.12729727,0.08713753,0.30236858,-0.40867075,-0.5097052,0.10972985,-0.36217356,0.23121735,0.007453463,-0.12982076,-0.73947746,0.17338702,0.18374528,0.21719639,0.15796642,-0.62187177,-0.30286735,0.35197327,-0.27896586,-0.20482734,-0.36819616,-0.10736055,0.6783145,-0.3043843,-0.30060396,0.05781618,0.2719876,-0.018020421,-0.712038,0.018943634,-0.31898943,0.25569636,0.041155558,-0.3785463,-0.30409858,0.05939373,-0.5292754,0.1875875,0.17597792,-0.36305514,0.093865976,-0.39708918,-0.02739285,1.0126135,-0.3381749,0.45363003,-0.5611655,-0.4808244,-0.896245,-0.37209654,0.4538166,0.056441367,-0.018106086,-0.62647265,-0.13831334,-0.30439934,-0.12573722,-0.06354349,-0.44245428,0.35907942,0.102575906,0.3377141,-0.13935378,-0.8897618,0.1873493,0.08661972,-0.15533279,-0.48716164,0.47606513,0.15531485,0.7157174,0.16718915,0.039565172,0.08624867,-0.53787553,0.031502478,-0.12470387,-0.15085718,-0.5689854,0.32310882,630 +489,0.4339806,-0.03779029,-0.5084071,-0.0037011164,-0.37571362,0.33963665,-0.18155268,0.45872194,0.22134805,-0.43756145,-0.2484379,-0.07531924,-0.12734069,0.16120389,-0.21396387,-0.510028,-0.043768834,0.1346176,-0.31265423,0.49131605,-0.3117575,0.5307366,-0.09816977,0.28730828,0.21253754,0.12251754,0.13215855,0.0729406,-0.099563636,-0.36266342,-0.19592759,0.22199263,-0.32236645,0.32054186,-0.17342938,-0.3316355,-0.04411639,-0.49081498,-0.37397316,-0.67734295,0.36129496,-0.8420306,0.503576,-0.073811755,-0.23061927,0.15661827,0.1555669,0.11046375,0.21684287,-0.075359024,0.03949637,-0.24865092,-0.032338448,-0.30949515,-0.5818435,-0.653357,-0.60147613,0.08319235,-0.51400894,-0.1616594,-0.20797154,0.15895568,-0.17382005,-0.15444987,-0.043218024,0.3697657,-0.3704907,0.06423257,0.15450726,-0.15057409,0.07729966,-0.59170645,-0.19426142,0.0100514805,0.3601551,-0.14206733,-0.19150686,0.21580306,0.31534454,0.36721587,-0.1114605,-0.23354189,-0.5219919,-0.021904727,0.13865606,0.62183225,-0.19937544,-0.4777207,-0.052215375,-0.014926987,0.62966067,0.33868155,0.14940658,-0.041772034,-0.28690678,-0.026599765,-0.11727577,0.62751514,0.52186704,-0.3037584,-0.20987181,0.52800596,0.47139588,0.27537054,-0.22269584,0.109658726,-0.107439384,-0.54118425,-0.052939843,0.17376132,-0.12543586,0.43355137,-0.036132343,0.3448678,0.595324,-0.17982414,0.080401696,0.12695768,-0.037759412,-0.0994614,0.0011374737,0.07175364,0.09247242,-0.3935849,0.17502286,-0.026638588,0.78482354,0.19169416,-0.7288461,0.3984252,-0.5449695,0.17711642,0.13541286,0.5545253,0.69197816,0.51594675,0.1058545,0.7412469,-0.1344488,0.066893496,-0.036389332,-0.19910036,-0.08905484,-0.25935376,-0.18142638,-0.41933227,-0.03220698,0.1296403,-0.08868875,0.24123703,0.6871181,-0.5353768,-0.2135991,0.2312554,0.81907874,-0.14898963,-0.23395099,0.8115444,0.9725978,0.8357047,-0.039807357,0.94026935,-0.035126347,-0.20889613,0.012645743,-0.19226563,-0.3972656,0.22247693,0.38598707,-0.1184163,0.51587844,0.029351277,-0.11029245,0.23938735,-0.36603108,-0.21660538,-0.12723087,-0.008147942,0.17846425,-0.06954161,-0.37780374,-0.31429833,-0.03241216,0.0634465,0.29794478,0.24450275,-0.37151912,0.34613377,-0.054430205,1.4027814,-0.16246517,0.10340228,0.10817593,0.6005546,0.22012493,-0.15396936,0.16867612,0.31923416,0.18416883,0.13304308,-0.48995632,0.09616183,-0.2678034,-0.5717667,-0.0923818,-0.26445022,-0.45682177,0.14216475,-0.51498306,-0.046273656,-0.0876865,-0.5949361,0.5581199,-2.7381704,-0.07142062,-0.08965266,0.31265646,-0.19618113,-0.47894627,-0.12071464,-0.49447563,0.3387349,0.32892013,0.42459437,-0.65031546,0.16238403,0.4713142,-0.49414888,-0.15594845,-0.6352445,0.07820402,-0.023600638,0.37670568,0.018045707,-0.14258479,0.33374983,0.069050625,0.54355055,0.14231081,-0.036438644,0.33937648,0.5124826,-0.20176676,0.2923627,-0.12031335,0.5451136,-0.11146451,-0.29512691,0.45764568,-0.45839462,0.52882105,-0.244536,0.178867,0.43633047,-0.36709628,-0.91875774,-0.52349365,-0.29927424,1.2163506,-0.081167474,-0.55174845,0.16809872,-0.38588524,-0.24884416,-0.28212413,0.7700209,-0.07157481,-0.07313913,-0.6310767,-0.078051396,-0.25525457,0.13046424,-0.103851244,0.03581751,-0.3878334,0.66820306,-0.17402817,0.4709932,0.17487553,0.33661792,-0.32829353,-0.49133712,-0.032999914,0.8710753,0.604493,0.09174713,-0.3294318,-0.267026,-0.29045147,-0.16500893,0.12156902,0.6575271,0.5582345,0.040206663,-0.010172054,0.36212152,0.10351243,0.09218203,-0.28940052,-0.16976348,-0.19747351,-0.054486204,0.6948293,0.4668695,-0.06831553,0.44865733,0.052984636,0.10508567,-0.41052678,-0.42284754,0.39070457,0.9996314,-0.22206162,-0.31719252,0.4617656,0.46664363,-0.25945893,0.309611,-0.8115285,-0.37618464,0.46278957,-0.21027449,-0.63037586,0.17147954,-0.2826552,0.026504355,-0.6452638,0.5077113,-0.13214128,-0.813168,-0.5412639,0.0001551594,-3.07462,0.1644228,-0.10114227,-0.20598945,-0.13006729,-0.19553566,0.12354156,-0.4705479,-0.4635844,0.03756396,0.06057248,0.7628941,-0.19751446,0.2614124,-0.2435516,-0.3578697,-0.3062134,0.26213074,0.056474056,0.5007362,-0.29144105,-0.11830594,-0.071244076,-0.19451945,-0.40271616,-0.058813162,-0.42669162,-0.4735916,-0.13194959,-0.36590067,0.08857882,0.6322748,-0.58376545,0.12114722,-0.28989148,0.023936927,-0.10644727,0.2437422,0.18788452,0.004149735,0.15091954,-0.19395669,0.26817563,-0.36262026,0.5373756,-0.0042071617,0.37513724,0.5373293,-0.07904589,0.352233,0.5748685,0.6757239,-0.055186328,0.983305,0.21759531,0.012560283,0.23874941,-0.06445713,-0.1368801,-0.49251518,-0.19674085,0.19591506,-0.47899482,-0.41552734,-0.24061538,-0.3552454,-0.9238896,0.34881133,-0.07629574,0.49156052,-0.15273952,0.38447922,0.6947958,-0.37324238,-0.08801158,0.08118105,-0.13198808,-0.4729416,-0.38206527,-0.5064143,-0.5207893,0.1472574,0.9037506,-0.1986219,-0.0029346645,0.15412319,-0.3402303,-0.011078788,0.008990569,0.22345166,-0.13011037,0.3152404,-0.051179375,-0.5922244,0.45926142,-0.27379104,-0.16605835,-0.5762952,0.24037568,0.52456874,-0.39265132,0.25644803,0.4766732,0.06635459,-0.1696279,-0.62432045,0.08500564,-0.05072562,-0.3316237,0.17735325,0.3578809,-0.7006777,0.3760793,0.17195527,-0.08701564,-0.7235127,0.59670794,0.01784491,-0.08372557,-0.022117985,0.4117059,0.30248767,-0.21573012,-0.0959689,0.2976561,-0.49299553,0.31413403,0.13263077,0.047694054,0.20344356,-0.25025088,-0.25632933,-0.7224614,0.10569424,-0.5308127,-0.1930995,0.29526716,0.08274005,0.30228066,0.053385664,0.03879651,0.34737176,-0.4292333,0.12885448,-0.16634312,-0.2351127,0.503069,0.40224808,0.71100396,-0.38525876,0.6376544,-0.004260685,-0.03406895,0.32878447,0.22503975,0.4909437,0.08898743,0.38406894,0.1065733,-0.24438201,0.101520464,0.7511659,0.37307236,0.34927586,0.07621511,-0.28530508,0.20787095,0.09859664,0.19800673,-0.21744187,-0.61333865,-0.1272576,-0.251319,0.1519892,0.43130976,0.0447846,0.2996793,-0.18757375,-0.15111427,0.19640441,0.15589666,-0.09234897,-1.0354626,0.31936178,0.23141786,0.9026707,0.09526704,0.054727603,0.11708438,0.65647465,-0.07730664,0.055959105,0.419169,0.1893741,-0.46295983,0.3945951,-0.76986045,0.6685712,-0.042510025,-0.06332167,0.12092904,-0.14261213,0.3846994,0.7896166,-0.25341195,-0.067868516,-0.03725695,-0.40493613,0.027374784,-0.45857558,0.1833169,-0.572141,-0.20265137,0.6615134,0.5245567,0.3716043,-0.10858928,0.09088548,-0.0048397803,-0.09517306,0.17399934,-0.06015625,0.23737101,-0.293648,-0.53826755,-0.14759734,0.4267361,-0.10549406,0.17229761,0.042524196,-0.15768513,0.17768432,-0.12528573,-0.040881343,-0.037714906,-0.5879017,-0.09230624,-0.22285388,-0.71939754,0.36789012,-0.18621352,0.34944916,0.30144817,-0.040562633,-0.15137498,0.39124113,0.3482731,0.7957625,-0.031427015,-0.052462433,-0.49075645,0.18727216,0.20875494,-0.32767752,-0.18781064,-0.010623008,0.17509262,-0.5636366,0.20064792,-0.32633302,-0.26707986,0.11081201,-0.21997876,0.08684117,0.5739055,-0.051093467,-0.17419569,0.19253577,-0.16228838,-0.32911077,0.01699181,-0.108351305,0.19226635,0.086198784,-0.32900694,-0.10802049,-0.24283741,-0.11534829,-0.075862,-0.06367158,0.3787634,0.4917529,0.038243633,-0.23100066,-0.058661234,0.21730728,0.5812443,0.0989251,0.048260517,-0.19108412,-0.49665314,-0.4535802,0.27757177,-0.01700787,0.29508758,0.2844067,-0.33163843,0.5931426,-0.14805238,1.0092539,0.0076286155,-0.47063664,0.069626145,0.50199527,0.0020487309,-0.09430838,-0.38712135,1.0380834,0.4266176,-0.026201997,-0.032515295,-0.14149354,0.1824223,0.29306588,-0.2647093,-0.19202371,0.11345636,-0.6724326,0.004312098,0.23744187,0.23911107,0.06401263,-0.16864038,-0.06853627,0.3545489,0.07762802,0.19741793,-0.4814958,-0.27436414,0.36189818,0.2856215,-0.13055731,0.13410883,-0.35617644,0.32053822,-0.6421294,0.0020547765,-0.44887942,0.21937771,-0.28754896,-0.36290503,0.3217473,0.06045222,0.49714836,-0.18855517,-0.35669348,-0.34346884,0.29450044,0.15108122,0.13435735,0.17637973,-0.20837612,-0.10733586,-0.05268722,0.47983763,1.2293795,-0.21574366,-0.0040508998,0.39263338,-0.4759747,-0.51927084,0.36783323,-0.6378953,0.2727372,-0.06836301,-0.17843498,-0.34595484,0.29924157,0.2579493,0.13908848,0.04108407,-0.7464605,-0.10583951,-0.16493861,-0.46348116,-0.22550704,-0.3470175,0.03140178,0.5981932,-0.37231627,-0.28639403,0.005317888,0.52848107,-0.09706293,-0.5076405,0.31386334,-0.24958776,0.10868321,-0.06473434,-0.47311395,-0.1891334,-0.1038153,-0.3739765,0.14655243,0.13653708,-0.46916267,-0.009574264,-0.19377889,0.19771184,0.77338374,-0.23633425,0.18471763,-0.6174657,-0.55185807,-0.81396633,-0.5688871,0.10966432,0.20135958,0.042844355,-0.60674375,-0.08318954,-0.27025825,-0.19216745,-0.15572385,-0.39712855,0.3867802,0.29508835,0.40113315,-0.29930946,-0.80919474,0.26357558,0.038674586,-0.1835809,-0.62675846,0.4547002,-0.006576121,0.9041448,0.14425753,0.07011921,0.20181422,-0.616345,0.09843183,-0.035099473,-0.21622682,-0.81564707,0.26672867,631 +490,0.49152008,-0.05316088,-0.5916343,0.15166458,-0.436827,0.2502527,-0.21306112,0.18248582,0.059649307,-0.42396995,-0.08959711,0.004219926,-0.15115318,0.70436424,-0.3048714,-0.6193181,0.13597962,0.21545874,-0.5336252,0.7664744,-0.26163623,0.48923692,0.19516833,0.15554479,0.13181658,0.21927282,0.20402828,0.112153254,-0.05223345,-0.15939309,-0.22357114,-0.015677989,-0.4000108,0.50758266,-0.22241864,-0.43820634,-0.06990715,-0.20618936,-0.2896281,-0.55789983,0.11318885,-0.77318615,0.7162963,-0.0346937,-0.3956243,0.05399675,0.2351825,0.19232376,-0.038297083,-0.06509431,0.01703057,-0.009432673,-0.13971959,-0.22584033,-0.16679965,-0.50569326,-0.47122878,-0.0027476507,-0.84845054,-0.14954884,-0.0745347,0.19095005,-0.25776103,-0.0135518825,0.059998572,0.096069574,-0.3799004,-0.02410446,0.15791677,-0.14158022,0.09571954,-0.64613426,-0.19223131,0.036950555,0.18067949,0.030222561,-0.20353584,0.34425616,0.15722768,0.60225993,-0.029163582,-0.13522653,-0.18927503,-0.025496705,0.14875185,0.61525536,-0.18808672,-0.14449434,-0.29595724,0.28470215,0.6675605,0.09574119,0.30512556,-0.35075527,-0.0064114267,-0.1589087,-0.057779122,0.34059194,0.4746979,-0.27598223,-0.099312834,0.36200905,0.5258179,0.31399664,-0.20858696,0.03435484,-0.09621775,-0.3241212,-0.11216193,-0.09469647,0.019434344,0.52076614,0.04893067,0.4186975,0.43375635,-0.018897815,0.14515983,0.16696544,-0.018036501,-0.2068334,0.12965865,-0.1414857,0.082316495,-0.45827156,-0.13814946,-0.027579715,0.66232884,-0.09998381,-0.7857648,0.3665536,-0.43414608,0.003750107,-0.06831908,0.4446745,0.73514444,0.337462,-0.08564057,0.75617415,-0.41904345,0.10170062,-0.03963355,-0.20358233,0.16710337,-0.14904928,-0.08792533,-0.6581579,0.032901157,0.03540211,-0.06357987,0.13403155,0.56347775,-0.67084134,-0.20993255,0.07481043,0.8423406,-0.3173587,-0.064098194,0.5964688,1.2815306,0.9249546,-0.031540107,1.0276101,0.311913,-0.02456605,-0.15186374,-0.21189985,-0.53052527,0.15843572,0.55414957,0.20559642,0.7984899,0.075243615,-0.02961023,0.4157215,-0.14824544,-0.13609181,-0.039544217,0.32162222,-0.004703688,-0.21050301,-0.6561972,0.0013136396,-0.020766543,0.08633917,-0.020909233,0.3725653,-0.37703213,0.34117386,0.061213613,1.7558147,-0.19471177,0.08370485,-0.037463434,0.25479722,0.3208882,-0.3379889,-0.068760104,0.13274999,0.15405367,-0.018435793,-0.37094983,-0.043266244,-0.26745722,-0.6088859,-0.21558496,-0.21994965,-0.28743982,0.060039308,-0.40960068,-0.1737846,-0.0030534694,-0.26344973,0.45985016,-2.6722534,-0.32069305,-0.17247303,0.35639378,-0.2880551,-0.35523728,-0.121129684,-0.16707622,0.3815966,0.32716125,0.38718066,-0.44214672,0.32820395,0.418964,-0.42133477,-0.20021819,-0.36528233,-0.015185603,0.13143203,0.5859252,-0.053373862,-0.15654819,0.13597092,0.37465382,0.41184726,-0.25248575,-0.021517415,0.40518767,0.38047343,-0.08819082,0.10152114,0.10255892,0.47288534,-0.24790023,-0.1957848,0.37849385,-0.16468407,0.47083944,-0.0070991814,0.28862146,0.33851528,-0.340638,-0.7582836,-0.47653344,-0.10004787,1.0382155,-0.24253069,-0.6097841,0.20268907,-0.17625865,-0.3046318,-0.064076565,0.22116037,0.024631811,-0.0041714055,-0.7733117,0.09044202,-0.060012598,0.25146678,-0.0093245525,-0.11104865,-0.35933867,0.710857,-0.05339088,0.49881586,0.23986149,0.48618603,-0.15726349,-0.34768078,0.13947938,0.9780079,0.69581175,0.01663259,-0.19454412,-0.21875568,-0.26489285,-0.1302013,0.1799593,0.3731822,0.7031662,0.1323794,-0.030239705,0.2675067,-0.055440366,0.059705194,-0.00027265932,-0.37933087,0.096971795,-0.030120304,0.50485116,0.65089595,-0.12686028,0.62537205,-0.115775526,0.2799439,-0.21689253,-0.64549404,0.48384458,0.6676901,-0.15671597,-0.30808768,0.4956429,0.38723263,-0.17420615,0.46149984,-0.8123633,-0.46164614,0.3940862,-0.074402764,-0.3381667,0.20841311,-0.23230508,0.17307055,-1.0056307,0.39766455,-0.183464,-0.44312218,-0.5223726,-0.2108167,-2.313912,0.07143001,-0.16267036,-0.17296581,-0.13841283,-0.1120797,0.23980634,-0.70182717,-0.60015804,-0.040080447,-0.041561045,0.548296,-0.02892364,0.20387636,0.08233355,-0.57176095,-0.061395653,0.3211723,-0.035774656,0.26411542,-0.17434214,-0.3081687,-0.23230569,-0.2436218,-0.2718808,0.11468245,-0.65543544,-0.6351584,-0.35413557,-0.20277032,0.06537883,0.7916457,-0.3342454,-0.07333411,-0.34636825,-0.003778068,0.148237,0.19301485,0.29857752,0.04933093,0.20931053,0.04004165,0.029940614,-0.49352172,0.11507421,0.19755873,0.482977,0.6741194,-0.27716938,0.3883418,0.5929607,0.58026254,-0.15909621,0.66696805,0.36108842,-0.32393143,0.25398368,-0.21001749,-0.24057038,-0.5714798,-0.38675803,-0.0016770618,-0.36248296,-0.4692329,-0.09598557,-0.32060644,-0.7545738,0.45871702,0.009352841,0.361049,-0.087938406,0.34696862,0.4568989,-0.23664483,-0.22836696,-0.13944599,-0.2482271,-0.63728577,-0.37892613,-0.6705012,-0.52668524,0.19726296,1.1398233,-0.2461519,0.06084588,0.08763997,-0.21318147,0.06966635,-0.26399818,0.14956944,-0.05167388,-0.011664137,-0.066394396,-0.7283206,0.49774095,-0.14893031,-0.09484859,-0.53438485,0.1293032,0.54451174,-0.51803786,0.105820276,0.3398896,0.268016,0.009742388,-0.5468167,0.16129562,0.16229095,-0.34665442,0.34742647,0.25321543,-0.51680076,0.42663994,0.40009183,-0.25793257,-0.612527,0.35844693,0.053083427,-0.047654323,-0.18794258,0.27824476,0.1368614,-0.01505463,-0.09998245,0.15991804,-0.5471788,0.29442364,0.30393288,-0.0010760128,0.10663574,-0.24209796,-0.46332604,-0.59699094,0.23819205,-0.25116235,-0.28606203,0.25174573,0.16668214,0.11977255,0.09655757,0.27401,0.5622582,-0.3967556,0.10750254,-0.23918998,-0.26462016,0.5132163,0.66494334,0.661849,-0.29903108,0.47903302,-0.014814609,-0.043765735,-0.13827333,0.004481218,0.5528807,0.3024592,0.15188397,-0.021557245,-0.04384883,0.19127049,0.784886,0.00879513,0.19163999,0.059507173,-0.35406846,0.050788768,0.01787329,0.061903186,-0.09506244,-0.43977657,-0.07715939,-0.0025452205,0.13894044,0.54307884,0.16980603,0.072873436,-0.13483196,-0.31298622,0.17150934,0.17480102,0.027240217,-1.3327925,0.27528313,0.19706747,0.6961165,0.35892263,0.018112525,0.059015654,0.44435105,-0.2716156,0.18000673,0.32863656,-0.07216274,-0.37347776,0.58178186,-0.75205815,0.4574016,-0.054137528,0.015854787,0.07260574,-0.09273255,0.39949346,0.9707635,-0.10242113,0.113546506,-0.026928429,-0.26555464,-0.28306183,-0.24372871,0.121663556,-0.33300254,-0.47831056,0.65469396,0.26394886,0.29748037,-0.2099848,-0.025160346,0.11769529,-0.24923602,0.49439883,-0.047252093,0.27294984,-0.24008325,-0.39086494,-0.2827637,0.66496,-0.11213093,0.16807923,0.004948415,-0.23321564,0.18494119,-0.05342155,0.0145436805,0.09742792,-0.6171902,0.13266315,-0.3476608,-0.4404556,0.4718185,0.057120237,0.035488103,0.044221886,-0.017079541,-0.12038938,0.40045145,-0.002408266,0.7381457,0.2982938,-0.15674055,-0.1736343,0.23506513,0.0754736,-0.21105817,0.16013522,-0.08498049,0.34575775,-0.7596265,0.5302422,-0.120108165,-0.36486334,0.10058435,-0.09542123,0.068039134,0.31703192,-0.16429888,-0.16769016,-0.21109936,0.0801213,-0.3104609,-0.21624877,-0.16315879,0.014047341,0.14988308,-0.06545403,-0.054343067,-0.09734649,0.05292669,0.06908459,0.024195168,0.48520952,0.48308012,0.086356044,-0.584889,0.029343333,0.26484558,0.2899908,0.0610012,0.114596225,-0.22213843,-0.51803935,-0.54196936,0.1744674,-0.23519866,0.10466645,0.16989605,-0.29918522,0.77565783,0.16403557,1.3779503,0.06113266,-0.19026725,0.13201165,0.45675734,-0.043490905,-0.07815234,-0.30700752,1.0745353,0.81518525,0.029354155,-0.024215952,-0.38684025,-0.3263891,0.42331368,-0.3447755,-0.09014351,0.041334,-0.7107849,-0.4449361,0.11105204,0.2083194,-0.0797173,-0.105711274,-0.0039264983,0.21784763,0.094177626,0.099372625,-0.5879959,-0.15883295,0.3635082,0.27892473,-0.029580373,0.07592438,-0.6406604,0.41865745,-0.6451885,0.1312634,-0.5109071,0.02935536,0.15230274,-0.3637397,0.13180563,0.1898381,0.24548905,-0.43677145,-0.36301285,-0.13652204,0.5417697,0.089811556,0.1366496,0.52852803,-0.2782721,0.22546484,-0.04351587,0.3000365,1.1865445,-0.2852826,-0.106294595,0.20471916,-0.4167802,-0.7035799,0.011077725,-0.4858108,0.12776825,-0.29839823,-0.34825644,-0.6803444,0.33471245,0.20847437,-0.08192843,-0.16121064,-0.5255075,-0.15396199,0.06911918,-0.45544162,-0.1966466,-0.2742914,-0.021411743,0.46250102,-0.3119497,-0.35314628,0.053351197,0.33792195,-0.32689255,-0.55728537,0.00056448154,-0.25367406,0.24594514,0.07544528,-0.3828766,-0.09443997,0.0202943,-0.4572311,0.038684748,0.27968475,-0.36682,-0.07816677,-0.3289342,0.051636543,0.78117436,-0.061844796,-0.19947971,-0.7193122,-0.52056813,-0.8210801,-0.6417465,0.18814524,0.31734085,0.07751464,-0.8834397,0.05712113,-0.2202915,0.11935617,0.016614288,-0.42247227,0.26178727,0.1393128,0.24510847,-0.3118629,-0.91264516,0.22409916,0.14142667,-0.033059683,-0.5676955,0.46831983,-0.11359661,0.87103766,0.106252536,-0.11919908,0.26153946,-0.7778427,0.2571786,-0.18330076,-0.07374484,-0.7378065,0.14811526,636 +491,0.19323502,-0.123686545,-0.2286608,-0.27925926,-0.17837124,0.11646271,-0.22519514,0.32809886,0.06934201,-0.31667683,-0.23566723,-0.17962353,0.051911227,0.40987685,-0.16138795,-0.6859582,-0.12275929,0.009111574,-0.59148186,0.56145513,-0.6120454,0.26530334,0.25316286,0.32101005,-0.12864171,0.26707786,0.4321147,-0.2297242,0.060587514,-0.26888365,-0.14676175,0.31662807,-0.4993485,0.15474162,-0.08616928,-0.17363246,0.21309869,-0.24377067,-0.18556271,-0.7448522,0.17046191,-0.8978334,0.37252426,-0.07969362,-0.09666431,0.15665805,0.20938969,0.28707623,-0.16244774,-0.067890905,0.17482077,-0.1301219,-0.118909545,-0.29664162,0.096591674,-0.3844926,-0.4582529,-0.100652054,-0.51743925,-0.5041432,-0.124519415,0.19868548,-0.32882595,-0.08048173,-0.2360198,0.43258986,-0.4315125,-0.10287327,0.3133605,-0.2766095,0.56825405,-0.5427552,0.056266427,-0.01950129,0.40636688,-0.007984928,-0.07664146,0.3148835,0.4324228,0.34752983,0.14416148,-0.26069647,-0.124994114,-0.34869224,0.24851401,0.42160964,-0.10292781,-0.4221191,-0.08626696,0.03351164,0.021459648,0.3214805,0.041792784,-0.30666956,-0.10063819,0.013871344,-0.25533393,0.46483138,0.3986917,-0.18798815,-0.43354076,0.21060152,0.68437,0.26520684,-0.2582634,-0.028658288,0.018373387,-0.43730518,-0.12558457,0.26101497,-0.14537227,0.5875603,-0.24379878,0.16444787,0.8289819,-0.088160686,0.11359911,-0.11417898,-0.04156701,-0.16696048,-0.18745139,-0.20477043,0.14723895,-0.6473509,0.022376146,-0.41130647,0.7795764,0.02508224,-0.6970725,0.40664193,-0.6499957,0.13091604,-0.109749384,0.62649155,0.39577124,0.18632582,0.25011167,0.6202918,-0.38776484,0.04610048,-0.04583233,-0.46326256,0.11864465,-0.2904859,0.11569209,-0.46752003,0.06648542,-0.08146213,0.23820259,-0.17876224,0.15494551,-0.61986244,0.070191756,0.17039254,0.7139211,-0.3532433,-0.0016290204,0.48837158,1.0768213,0.9763454,0.010496163,1.4275277,0.26819882,-0.23241913,0.15276524,-0.28187063,-0.5569825,0.2116266,0.5455678,0.19924426,0.2074416,-0.24682042,-0.0097854985,0.2859058,-0.5087957,0.10593841,-0.075420536,0.30182055,0.14387985,-0.16997239,-0.5142729,-0.09396988,0.0981282,-0.08153697,0.13956258,0.047069293,-0.051096804,0.35694548,0.05149903,1.0312712,-0.15482831,0.18520682,0.08812834,0.40849087,0.18359163,0.08436204,0.060130317,0.3961385,0.3747015,0.10789547,-0.6778752,0.36278725,-0.28858116,-0.4229181,-0.043401856,-0.39801124,-0.07839769,0.017703585,-0.39433017,-0.08437103,0.05479472,-0.2118314,0.3665546,-2.8427846,-0.2586896,-0.14298713,0.21397908,-0.35852814,-0.09977029,-0.0023243895,-0.5003045,0.40862444,0.2918713,0.41676435,-0.5952973,0.42579293,0.44073194,-0.44269896,-0.058114547,-0.6681269,-0.14496568,-0.10291598,0.56512463,0.2587139,-0.006155058,-0.17917016,0.38375473,0.5706619,0.023696551,0.07246513,0.384492,0.14660151,0.20780306,0.46463236,0.038919635,0.485355,-0.116331026,-0.09785952,0.33691767,-0.15930244,0.1930369,-0.24348548,0.103840426,0.43190095,-0.2741421,-0.78265375,-0.7264348,-0.71368927,1.143664,-0.36740676,-0.3622132,0.30203137,0.11537913,-0.0907377,0.063350014,0.35741955,-0.20848133,0.18819277,-0.60545915,0.123721376,-0.0041533113,0.16446124,0.08697748,0.027738107,-0.4511042,0.6407,-0.0039058242,0.3557548,0.2502654,0.23329099,-0.22385897,-0.3912582,-0.013398296,0.7760215,0.34037322,-0.23085557,-0.20514794,-0.338793,-0.17370966,-0.090986975,0.013837313,0.52751094,0.89803857,-0.00043687224,0.02869695,0.16176932,-0.09799044,0.10100299,-0.19351673,-0.3930284,0.06904126,-0.024223695,0.54295766,0.4127972,-0.05736364,0.30991262,-0.21701162,0.44281083,-0.10589518,-0.46098828,0.5346909,0.8003121,-0.080171004,0.040757325,0.46764913,0.5242225,-0.44788232,0.44658586,-0.57135886,-0.13314734,0.7368898,-0.23280764,-0.5213245,0.17984764,-0.20640646,0.17874397,-0.95417774,0.36207843,-0.44719562,-0.43694106,-0.4780569,-0.0685585,-3.1186435,0.124615274,-0.07034808,-0.086814746,-0.29971555,-0.018416582,0.37766957,-0.56455606,-0.5710694,0.13351102,0.13820602,0.53949034,-0.074221514,0.05602128,-0.2513599,0.011741204,-0.047979772,0.31437916,0.031278424,0.1124451,-0.17329285,-0.41270018,0.0765465,-0.21453944,-0.5904339,0.25560686,-0.49272984,-0.60843945,-0.09215288,-0.3343038,-0.17820229,0.6479349,-0.40332556,0.047457043,-0.16101494,0.17888236,-0.24079697,0.22360468,0.12592039,0.26564115,0.14605148,-0.023714123,-0.049611624,-0.33036533,0.39992926,0.078418985,0.26982194,0.1503695,0.00629332,0.14912975,0.5350377,0.4560282,-0.07246011,0.8772148,0.34058616,0.0262955,0.2500922,-0.36011967,-0.31300002,-0.4965833,-0.31034797,-0.10870682,-0.30729127,-0.49612173,-0.008507048,-0.17975284,-0.50822395,0.5888958,-0.0035520536,0.27461478,-0.06451209,0.19318299,0.27585214,-0.20013376,0.12678528,-0.07615774,-0.19900349,-0.5139386,-0.2199049,-0.6316088,-0.44389492,-0.14224532,0.65069443,-0.31294283,-0.012962474,-0.15469337,-0.2664608,0.061928235,0.04853412,0.010107151,0.2297525,0.35945457,0.08797486,-0.76848495,0.42706066,0.09746518,-0.084255084,-0.43596894,0.06528225,0.72958744,-0.634952,0.42110926,0.27724054,-0.04140995,-0.19898823,-0.43187088,-0.20069835,0.07112371,-0.36254016,0.4784433,-0.041193668,-0.6668864,0.43319866,0.34125826,-0.34679273,-0.66205645,0.3291622,-0.0494711,-0.23734331,0.029079003,0.3335155,0.05830284,0.024893597,-0.19902919,0.23694147,-0.57062167,0.11528448,0.31996465,0.11724416,0.46344075,-0.11147077,-0.18208502,-0.6704735,-0.11512052,-0.50777537,-0.28375822,0.23075171,-0.041273497,-0.21752729,0.24567983,0.1347449,0.38460636,-0.11267344,0.15895341,0.09240457,-0.37245464,0.28629765,0.44192764,0.18803477,-0.25804383,0.51343447,0.1457126,-0.15401642,-0.18178797,0.012695296,0.43736354,0.09745364,0.33655486,-0.1352229,-0.15310839,0.57665044,0.67246014,0.14797807,0.56390476,-0.0028582898,-0.060779102,0.45132536,-0.10051139,0.14463606,0.096893415,-0.38258985,-0.03181231,-0.049543507,0.06512682,0.5382705,0.17191958,0.28969648,0.24873097,-0.24333845,0.0020044872,0.32453638,-0.017227096,-0.93908745,0.42171887,0.3594934,0.8366996,0.5135245,0.050011665,-0.054294936,0.6320144,-0.33419013,0.05375057,0.47928166,0.096731886,-0.5947431,0.7525304,-0.62404525,0.11185288,-0.15266559,-0.1188512,0.021531224,0.05691146,0.32491383,0.8030842,-0.18496957,0.038420927,-0.1865048,-0.15642455,0.18951361,-0.3043287,0.14325044,-0.150822,-0.33855024,0.4119408,0.38837078,0.3057526,-0.14845982,0.0450167,0.27773854,-0.05993373,0.41273448,-0.02960913,-0.08799703,-0.052106876,-0.4637147,-0.2758213,0.48996645,0.087108985,0.2104082,-0.20969306,-0.19218199,0.03606834,-0.21905264,0.012634978,-0.059902925,-0.63090694,0.042705644,-0.06646357,-0.43137375,0.52296925,-0.5181088,0.16262518,0.15028128,0.032477897,-0.11890894,-0.13834369,0.08276487,0.5821281,0.15378337,-0.2589307,-0.21929455,-0.066187166,0.085754864,-0.25728768,-0.045356028,-0.24394308,0.019229207,-0.49614754,0.52806777,-0.14327502,-0.40035865,0.10811478,-0.2983146,-0.16644144,0.4572367,-0.104924485,-0.11165745,-0.12892124,-0.21023051,-0.28051254,0.09069016,-0.2021947,0.18374474,0.29912433,-0.013759621,-0.20862247,-0.15779565,-0.22437762,0.5294855,0.15565953,0.39721218,0.23030742,-0.20927797,-0.2638382,-0.041964274,0.115860835,0.3034845,0.20562282,0.115068875,-0.20362213,-0.26995772,-0.22124465,0.21198736,-0.06505295,0.27587444,-0.06445487,-0.39209822,0.8249401,0.10448714,1.2091011,0.065372184,-0.22594514,0.06373983,0.44736332,-0.13274972,0.08473646,-0.5290612,0.7065856,0.49946374,-0.15788046,-0.10221451,-0.35051605,0.088682346,0.254232,-0.21955578,-0.029081108,-0.13322257,-0.6563758,-0.4064677,0.1859359,0.29180977,0.0052255476,0.09576794,-0.18589494,-0.006052392,0.003229452,0.71484643,-0.542147,-0.067938276,0.17603593,0.07005449,0.014200389,0.07062406,-0.27200338,0.5048995,-0.7317336,0.21393807,-0.41341305,0.0023603847,-0.20963381,-0.24391784,0.10517795,-0.19354393,0.1823188,-0.13400099,-0.55708796,0.077604294,0.38798183,0.104184985,0.1240463,0.62936336,-0.24267569,0.22752817,0.13861932,0.48450875,1.237012,-0.29763767,0.014396901,0.1634909,-0.4810458,-0.58020455,0.3488509,-0.2855997,0.04398546,-0.0484299,-0.45111126,-0.47820207,0.19287561,0.3225045,0.011273972,0.093767345,-0.34074703,-0.24706472,0.39892802,-0.3525608,-0.2738654,-0.22606172,0.27806517,0.5772602,-0.35386533,-0.2467767,-0.11095585,0.2462523,-0.51293296,-0.5368676,-0.10417043,-0.15468816,0.37337723,0.05713331,-0.4437177,0.102103524,0.22944799,-0.44734573,0.1629698,0.24838166,-0.30381265,0.02011085,-0.12932779,0.049514316,0.71768725,-0.2856756,-0.3249211,-0.7182471,-0.42467928,-0.82179374,-0.44164735,0.4610343,0.1080451,-0.015534461,-0.44798446,0.12248761,-0.11969695,-0.022827098,0.18399355,-0.32782164,0.30859396,0.14019188,0.57540816,-0.21446736,-0.75839275,0.20802593,0.08489396,0.082582235,-0.5870675,0.7350821,-0.11399514,0.5464552,-0.03694478,-0.04216543,-0.008051777,-0.34018895,0.21030354,-0.24498521,-0.18679786,-0.73932403,0.18231918,637 +492,0.46734723,-0.24138418,-0.43293738,-0.12080859,-0.3088322,0.22234058,-0.26137644,0.2673916,0.03155188,-0.47594133,-0.04251384,-0.03183416,-0.042883594,0.35219702,-0.022334341,-0.64757645,0.020349273,0.079825394,-0.7375434,0.5383107,-0.64581925,0.42315334,0.120594166,0.29919997,-0.0091812415,0.4149777,0.4052692,0.038662765,0.09053396,-0.077535875,-0.34294847,0.045491226,-0.5569633,-0.056391858,-0.15920047,-0.33663923,-0.06764484,-0.38682318,-0.20085777,-0.7750154,0.29896098,-1.04404,0.6343688,-0.2291629,-0.23614372,0.037079614,0.30936363,0.26695698,-0.33302307,0.07889979,0.25601223,-0.26762,-0.1422859,-0.30312696,-0.14849617,-0.39687064,-0.5009162,-0.14824589,-0.62489146,-0.3804338,-0.19251013,0.16352841,-0.42528144,0.05568872,-0.21930183,0.34173664,-0.4621077,-0.09067772,0.2973188,-0.34998587,0.27243003,-0.7244153,0.038596023,-0.13148507,0.5145601,0.056335133,-0.08153764,0.39000633,0.4906659,0.52977556,0.251876,-0.377573,-0.117673144,-0.34301695,0.23371276,0.51775545,-0.12199427,-0.2554725,-0.25768852,0.03712846,0.35694885,0.41152814,0.061788075,-0.19998327,0.04542515,0.011963027,-0.13954505,0.5444377,0.47492138,-0.2729551,-0.36726937,0.23878029,0.687065,0.21591237,-0.27485442,0.088905685,-0.06752111,-0.5284446,-0.07875721,0.30285424,-0.09138465,0.4974451,-0.17295489,0.17233883,0.7934085,-0.14894535,0.039188642,-0.24142954,-0.170494,-0.07524608,-0.3328386,-0.10711879,0.19500007,-0.6310673,0.13293369,-0.34431463,0.5967464,0.21973245,-0.6736991,0.5610789,-0.46610993,0.17057954,0.08895503,0.65517265,0.6611473,0.36920124,0.07469184,1.019281,-0.26219696,0.060413655,-0.06054135,-0.2952931,-0.20875044,-0.19158903,0.3322716,-0.42109326,0.46935254,-0.10502998,0.28957245,0.03112655,0.59845406,-0.528369,-0.15288952,0.25062045,0.9244694,-0.3546236,0.08957307,0.7083235,1.084064,1.0964044,-0.09620492,1.3565397,0.22161399,-0.293623,-0.018969623,-0.13387896,-0.53396845,0.08659046,0.46438202,0.59211063,0.3569,-0.06396567,-0.2987813,0.39184004,-0.24993917,0.033937026,-0.0002240198,0.19647476,0.2329643,-0.093482755,-0.462258,0.1061122,0.046661068,-0.09097422,0.27407026,0.13578849,-0.25865677,0.5672947,-0.038803034,1.3317286,-0.30707386,0.15785328,0.21998475,0.46517235,0.37076202,-0.09243075,0.1123984,0.4982541,0.5447865,-0.14517738,-0.69186455,0.20379066,-0.54534304,-0.4185366,-0.076648735,-0.4469641,-0.11702796,0.010084472,-0.38267308,-0.20324047,0.05650568,-0.25619113,0.24250785,-2.7591221,-0.4277983,-0.30389833,0.28881773,-0.5001293,-0.26007178,-0.18574132,-0.52576625,0.37909937,0.20946242,0.41486096,-0.5479105,0.55119544,0.50118786,-0.39014027,-0.08155717,-0.5627494,-0.23020463,0.027289135,0.48253712,-0.028350009,-0.22748987,-0.16486575,0.2688844,0.7789795,0.19163655,0.14800204,0.44961184,0.3636065,0.09785199,0.5333465,-0.14478938,0.6654649,-0.4311075,-0.024114426,0.49552944,-0.24343811,0.20229748,-0.27318853,0.11132051,0.626742,-0.40070835,-0.8456956,-0.62570965,-0.38702306,0.9741918,-0.44152483,-0.6015636,0.2761822,-0.112858646,-0.09792141,0.0059390836,0.60285187,0.0018548028,0.26424143,-0.64801353,0.14720461,-0.1790404,0.21700294,-0.011336448,-0.03327087,-0.3915742,0.8291802,0.018565485,0.6988181,0.24039836,0.29232964,-0.08721728,-0.16675234,0.06917654,0.75921106,0.46505094,-0.03324529,-0.18330513,-0.14803472,-0.13073388,-0.35704878,-0.09220738,0.6948768,0.81396574,-0.038756054,0.14937393,0.19845612,-0.030121673,0.08145674,-0.08415176,-0.20339687,-0.14776541,0.023395373,0.39189354,0.29990068,-0.18028069,0.46184954,-0.2380491,0.23987365,-0.13287596,-0.6662531,0.6615613,0.5696279,-0.20743613,-0.016611984,0.40953276,0.47372058,-0.6229231,0.5127863,-0.7862037,-0.24463116,0.9185479,-0.2520638,-0.44076136,0.33460823,-0.25121358,0.08805139,-0.6558419,0.041119814,-0.44179899,-0.48446637,-0.29190332,-0.26823807,-3.4860313,0.2132366,-0.08468645,-0.0861914,-0.44705293,-0.17968445,0.27409506,-0.43933088,-0.6031452,0.21172884,0.20936105,0.65119183,-0.1612934,0.0973795,-0.37535566,-0.19702911,-0.10087196,0.34806055,-0.04080016,0.22203198,-0.25227836,-0.24888079,-0.09298282,0.013019832,-0.68996894,0.089592226,-0.6265863,-0.38425848,-0.1644206,-0.48553285,-0.060503006,0.7339401,-0.23872519,0.12223005,-0.11074602,0.19827507,-0.26713443,0.09759883,0.07267571,0.3664775,0.12914114,-0.16927607,0.18047585,-0.3565511,0.52570647,0.06333594,0.35151675,0.0859003,-0.09923136,-0.024250554,0.28045923,0.60436636,-0.05499151,1.0819517,0.09766475,-0.15051906,0.44492334,-0.30220175,-0.37090316,-0.7658836,-0.3299444,-0.02972145,-0.46748382,-0.6469375,-0.07378515,-0.41040298,-0.7593773,0.5132762,0.016723623,0.6578656,-0.0022321183,0.4735739,0.34499124,-0.32027224,0.03152136,-0.1262322,-0.11550314,-0.516018,-0.31045252,-0.78980935,-0.5983077,-0.030609634,0.68760675,-0.36474138,-0.11746294,-0.20025817,-0.2975883,0.036178835,0.1348404,0.36867183,0.19470975,0.4594443,0.05877288,-0.6481872,0.45330802,-0.17775781,-0.26992926,-0.5564486,0.23747036,0.56246084,-0.64538676,0.64441234,0.2194351,-0.02380441,-0.18677285,-0.6373273,-0.08907808,0.022550728,-0.21716428,0.44473606,0.06705922,-0.75765103,0.54891527,0.33563748,-0.25766414,-0.6611986,0.35373244,-0.12602033,-0.27481332,-0.15958415,0.39563054,0.23437683,-0.05576042,-0.118052736,0.07655376,-0.689262,0.29428092,0.2735375,0.057173524,0.6120717,-0.0625836,-0.46851054,-0.68507296,-0.05386544,-0.5813739,-0.25176352,0.37412828,-0.11010047,0.016003123,0.17816801,0.05917883,0.531223,-0.15169765,0.2711479,-0.10501294,-0.34981623,0.33292332,0.46675625,0.20093314,-0.43708023,0.66633797,0.1320133,-0.2585409,0.23557173,0.17737079,0.3874653,-0.0067498363,0.43048647,-0.3116624,-0.08733791,0.29771468,0.8107618,0.24226859,0.48768076,0.25189742,-0.1310046,0.44688457,-0.09679009,0.103079624,0.08216792,-0.5596402,-0.053771667,0.013269714,0.06578879,0.61791265,0.3509174,0.3081389,0.17854163,-0.03365129,-0.08782095,0.19569221,-0.1707635,-1.1479056,0.3545964,0.24907044,1.0260812,0.29782963,0.13228813,-0.2652834,0.5201759,-0.21564086,0.10309488,0.4175217,-0.18392588,-0.46023288,0.86044616,-0.56738406,0.35602084,-0.051986046,-0.049766142,0.18023981,0.05579142,0.45568022,0.98680633,-0.15839955,-0.045511328,0.0071600378,-0.19985011,0.15110649,-0.30411536,-0.03555807,-0.14992432,-0.44261295,0.6090297,0.35135362,0.346497,-0.26492837,-0.104044594,0.048932415,-0.16772838,0.10170494,-0.13809158,0.11875468,-0.09816783,-0.3491804,-0.27955684,0.4608035,0.033195335,0.24809197,-0.09084751,-0.3625271,0.113853626,0.042591702,0.035725422,-0.027116712,-0.8504738,0.14529245,-0.31126902,-0.6784887,0.38287467,-0.1604416,0.012071644,0.15603025,-0.14652133,-0.081624456,0.2691475,0.022521688,0.7976276,0.0035907966,-0.20739527,-0.5136069,0.057718534,0.16533755,-0.30899987,0.27105722,-0.25018814,0.0472637,-0.5762211,0.6968952,-0.19962113,-0.2700141,0.34306532,-0.21990879,-0.22236596,0.54409146,-0.1071008,0.0056933886,0.07163695,-0.17585562,-0.43245512,-0.08037821,-0.25574398,0.15366258,0.12030453,0.0804882,-0.027843704,-0.09332966,0.028991604,0.6416264,0.20296775,0.2300309,0.14699355,0.0040281075,-0.3453305,0.11876241,0.22826421,0.6110492,0.09454975,0.06318792,-0.17627867,-0.6031249,-0.37290382,0.33888197,-0.12515905,0.26060414,-0.011742524,-0.32458553,1.0018659,0.17386451,1.0501658,0.043572843,-0.3926511,-0.023357885,0.6952434,-0.10662782,0.028878918,-0.45865774,0.8606473,0.57626575,-0.024989188,0.037634157,-0.39928362,0.03183513,0.49921873,-0.47261095,-0.012302564,-0.20765826,-0.5696062,-0.46120957,0.12723179,0.17455758,0.1720004,-0.11601086,-0.009878263,0.19957045,0.097170845,0.40761724,-0.66696537,-0.20252933,0.26578757,0.010474541,-0.18177669,0.12929378,-0.28749248,0.42488876,-0.8352289,0.0929793,-0.3870735,0.0068199933,-0.06058981,-0.30254313,0.19699107,-0.012204289,0.29491186,-0.29939595,-0.3999131,0.06549205,0.31075212,0.13785563,0.15136436,0.6968406,-0.25676772,0.07084027,0.2225554,0.5632711,1.2858344,-0.24034564,0.030904565,0.18089703,-0.6016866,-0.68023425,0.2568768,-0.38800573,0.12133634,-0.15972349,-0.48121217,-0.4052278,0.28176,0.096148014,-0.09521462,0.15703116,-0.63427514,-0.36888868,0.2710261,-0.31843516,-0.2699449,-0.36731002,0.33286616,0.8457548,-0.23339847,-0.3185394,0.053728122,0.3868701,-0.29709515,-0.78065443,0.07132502,-0.22412737,0.30854335,0.061233938,-0.15905078,0.011000254,0.1627421,-0.6879479,0.089676104,0.19662094,-0.45459318,0.004153874,-0.27926943,-0.11575153,0.8689283,-0.25018406,-0.23269527,-0.62959343,-0.5503332,-0.782463,-0.48058462,0.28031278,0.083616376,0.042056836,-0.5012087,0.00731951,-0.23464385,-0.00021128995,0.059678923,-0.4255384,0.27842563,0.030937513,0.5563137,-0.26252487,-0.8056522,0.1281176,0.12756138,-0.10518885,-0.5240167,0.5968665,-0.1342124,0.7627864,0.13253215,-0.16401999,-0.044474702,-0.46391317,0.14521012,-0.4831798,-0.057184704,-0.90658826,0.12563793,641 +493,0.472856,-0.015805772,-0.45740774,-0.18737166,-0.4316344,0.15197262,-0.22256847,0.26555738,0.24293743,-0.35469648,0.09055044,0.029687518,-0.13626356,0.42641714,-0.15987277,-0.7088189,0.18841854,0.05775691,-0.6190247,0.42670637,-0.64359844,0.41433614,0.14824833,0.27958208,0.11525178,0.21640389,0.29755566,-0.10006024,-0.07554736,-0.027511904,-0.16479976,0.17006,-0.6407962,0.29083365,-0.10170611,-0.32938257,-0.044440117,-0.24872674,-0.28152642,-0.7108288,0.26565942,-0.8050774,0.60326344,-0.06286589,-0.28610015,0.051746782,0.11295526,0.15164784,-0.41815677,0.07430893,0.39865586,-0.30476826,-0.14868836,-0.093894966,-0.17508003,-0.4432964,-0.5613489,-0.0060075223,-0.6636791,-0.13220413,-0.28906938,0.25744227,-0.26952937,0.010178308,-0.12309336,0.43081924,-0.3844567,0.15946744,0.1250067,-0.2184777,-0.038635977,-0.45348093,-0.10311779,-0.0812651,0.325806,0.011132598,-0.30550152,0.25030333,0.41600767,0.40807477,0.059775624,-0.30897516,-0.18613945,-0.06444156,0.097614355,0.41146824,-0.060541935,-0.39445302,-0.24079537,-0.048063178,0.23262838,0.11685126,0.0988875,-0.39902568,-0.025704253,0.1305859,-0.2735936,0.488632,0.5061754,-0.41099668,-0.01286229,0.5447291,0.22110094,0.21619298,-0.28242242,0.1381216,-0.17685306,-0.4676648,-0.15475857,0.18879159,-0.011164543,0.5050325,-0.1567252,0.34051818,0.7845273,-0.13114452,-0.06521713,-0.07203336,-0.120118566,-0.019634416,-0.17319952,-0.1726146,0.1447237,-0.49340153,0.09462015,-0.2779033,0.78161913,0.15571104,-0.7564637,0.46855325,-0.32704636,-0.05361649,-0.181121,0.53510207,0.7304861,0.5152626,0.08004941,0.8163828,-0.67674017,-0.088155724,0.018992824,-0.40975854,0.053204972,-0.101150036,0.1354395,-0.36534396,-0.048004847,0.049637042,0.16031893,-0.023025708,0.41013235,-0.18255946,-0.119587265,-0.061715227,0.62993187,-0.46888992,-0.16777848,0.83894926,0.95837563,1.0205001,0.17723426,1.2067859,0.33745766,-0.017284675,-0.16775084,-0.09664208,-0.55301464,0.18711607,0.26002917,0.38703388,0.16057315,0.18146385,0.067156844,0.29267326,-0.20725688,-0.1474919,0.054812405,0.31862673,-0.054452237,-0.14560726,-0.4045725,-0.27827987,0.19737123,0.10999068,-0.0028589752,0.21440685,-0.15951331,0.51368296,0.111393966,1.4672525,0.12631138,0.0809272,-0.015933465,0.3804555,0.2436967,-0.18269055,-0.21938737,0.14756456,0.4776577,-0.09417515,-0.5560526,-0.07495662,-0.219708,-0.5139579,-0.08247953,-0.37907267,-0.19801112,-0.23645318,-0.41314366,-0.11814453,0.27776617,-0.36380512,0.5384296,-2.6090083,-0.24239846,-0.0979997,0.35003144,-0.15218954,-0.3217854,-0.37429938,-0.53404963,0.37060764,0.30515862,0.43810937,-0.7192803,0.67311174,0.25087664,-0.18426228,-0.25514904,-0.7093391,0.015541949,-0.10811348,0.31238985,-0.008192179,-0.13227485,-0.19800845,0.2730264,0.7269839,-0.026136884,0.01665294,0.23983853,0.45928717,-0.035447706,0.6379324,0.0030221045,0.62362766,-0.2536921,0.023706065,0.3875599,-0.3661303,0.34178534,0.04817673,0.23738496,0.50241715,-0.46018484,-0.8432244,-0.64036196,-0.27339172,1.1187755,-0.41834995,-0.18619433,0.3447538,-0.16213313,-0.27600348,0.13715418,0.51574403,-0.056437988,-0.03191697,-0.685646,-0.08800685,-0.043061633,0.23582126,-0.16948445,0.12086443,-0.3218213,0.6321457,-0.11239933,0.63030344,0.308281,0.13438728,-0.121709175,-0.34329605,0.074547745,0.90124637,0.35457632,0.04957511,-0.17744003,-0.2121221,-0.34821174,-0.101250514,0.06905569,0.5583171,0.65270346,0.026093794,0.021777255,0.2662051,-0.24619913,-0.08512624,-0.16133308,-0.25584257,0.002971809,0.14069507,0.53706616,0.72879416,-0.17616859,0.4314455,-0.14140628,0.25789636,-0.27871615,-0.48024365,0.6086802,0.57204866,-0.17234084,-0.15319027,0.4983668,0.31990284,-0.15364991,0.37567988,-0.45911434,-0.49443525,0.5499886,-0.017163744,-0.2874369,0.15764628,-0.36223993,0.085707925,-0.8898614,0.3753849,-0.1682758,-0.6956021,-0.43309262,-0.16964062,-3.7781823,-0.046194077,-0.08655423,-0.07353512,-0.2005398,-0.16955742,0.4666873,-0.5487558,-0.4691032,0.101293385,0.045133717,0.65503126,-0.02681254,0.1445352,-0.26615432,-0.19807205,-0.1518738,0.2704337,0.061687347,0.3303409,0.08708328,-0.33457586,0.13888843,-0.3490723,-0.43443537,-0.012744163,-0.53026944,-0.5286085,0.06959739,-0.2886715,-0.2713749,0.8338459,-0.58887875,0.017882267,-0.12828183,-0.13433959,-0.33300325,0.36098304,0.20371132,0.13758115,-0.045612566,-0.05365587,-0.15093586,-0.3249758,0.13793285,0.0922985,0.28488922,0.31031847,-0.11203977,0.07769264,0.557417,0.515679,-0.037384838,0.77480036,0.11920892,-0.15747336,0.33880076,-0.2711307,-0.4050868,-0.7265129,-0.32917294,-0.21358636,-0.4799436,-0.28455994,0.03511693,-0.29254287,-0.8759433,0.41647443,0.10430772,-0.0438686,-0.17785302,0.17773816,0.25300208,-0.09191574,0.11825796,-0.032220528,-0.18820718,-0.62901074,-0.5167391,-0.6985222,-0.5786352,0.045216016,1.0549587,-0.11401879,-0.1952313,-0.09746113,-0.24907725,0.14670609,-0.020485643,0.11000274,0.1737849,0.29638842,-0.093472995,-0.8931989,0.41987225,-0.47095457,0.06538765,-0.6224041,0.0075044823,0.8211355,-0.60073155,0.4542933,0.39018965,0.24857475,0.010521208,-0.5292774,-0.32139227,-0.06568719,-0.14304869,0.600823,0.12020551,-0.7000106,0.49916226,0.20143414,-0.14556026,-0.5582319,0.50508124,0.11161334,-0.11532075,0.07977191,0.28519222,0.04855976,-0.100666046,-0.14560592,0.23524512,-0.60015017,0.26903448,0.29744586,0.0958985,0.44303244,-0.10926945,-0.31602117,-0.5394118,-0.34808996,-0.32488665,-0.29510707,-0.09417881,0.09461718,0.15225251,-0.0014204468,0.12042476,0.34139276,-0.412539,0.24250662,-0.20512293,-0.12253889,0.35079214,0.5740877,0.3418409,-0.52457076,0.6426563,0.11250415,0.102624126,0.037774056,0.039341133,0.36381692,0.2548853,0.21280786,-0.0861773,-0.11878199,0.18799594,0.84874153,0.24386944,0.25901094,0.15078758,-0.24570557,0.2635381,0.16606747,0.30793706,0.039431103,-0.41618568,-0.12384302,-0.07881498,0.13554017,0.36705872,0.14638948,0.11357598,0.0038407233,-0.06467002,0.16364643,-0.012950876,-0.029840572,-1.1097695,0.46307564,0.20776738,0.6493473,0.42530754,-0.08684873,0.17218255,0.5942073,-0.2625001,0.15791528,0.119473636,-0.018186806,-0.29783297,0.49042675,-0.5056695,0.37207755,-0.13180394,-0.06585157,0.029691288,0.10676242,0.38408685,0.89579993,-0.12245011,0.15548433,0.16208671,-0.36377516,0.11810815,-0.36403757,0.020066325,-0.44926047,-0.2661439,0.68013483,0.4904596,0.35838,-0.41235018,-0.015392729,-0.024907291,-0.1886263,-0.057688117,-0.15237959,-0.21090014,-0.043872166,-0.69086134,-0.27313328,0.5768565,-0.018598199,0.055347003,0.19687568,-0.3199943,0.3837747,-0.11226629,0.04191492,-0.061249573,-0.54182714,-0.17410977,-0.43136308,-0.45889595,0.2681115,-0.3036518,0.33972698,0.16125445,-0.09790567,-0.13281058,0.287587,0.2506996,0.67933387,0.10625712,-0.13071331,-0.40688053,0.0031089294,0.30699342,-0.3119833,-0.17570254,-0.40188125,0.07835726,-0.6230751,0.3885753,-0.24667872,-0.07536324,0.02487613,-0.10288628,0.12564574,0.47192016,-0.23904505,-0.13144723,0.105480924,0.076084636,-0.26743844,-0.015755763,-0.35954693,0.21223474,0.041506264,0.014394947,0.10244507,-0.013489945,-0.029688725,0.1909791,0.23873101,0.3347889,0.27414143,-0.04600231,-0.24180914,0.04072501,0.07884579,0.4522312,0.26578695,-0.13761382,-0.33400935,-0.24539945,-0.19560453,0.5129592,-0.17112187,0.04968386,0.084870555,-0.39846757,0.69212765,0.1065665,1.0561489,0.17647783,-0.39211616,0.10482639,0.50748163,0.09190522,0.12796018,-0.19165395,0.8449305,0.44798157,-0.13268985,-0.13041405,-0.44047144,-0.34714216,0.29213026,-0.33279562,-0.26391363,-0.17505625,-0.5997954,-0.07810298,0.021839838,0.07929081,0.05970315,-0.08737753,-0.1509287,0.15284811,0.2520458,0.4423854,-0.6362793,0.028479671,0.32375112,0.13166115,0.045414805,0.088932075,-0.43020323,0.4735232,-0.6352329,0.20438123,-0.45553303,0.10627215,-0.1303641,-0.21931055,0.27357188,0.16894627,0.32363722,-0.30730477,-0.27200907,-0.27578625,0.54903823,0.20845483,0.30696195,0.67691374,-0.13933884,-0.09132864,0.1623903,0.47476393,1.045543,-0.16905831,0.110678636,0.39536265,-0.32195926,-0.48205826,0.15408921,-0.33936116,0.18727753,0.054909058,-0.2978137,-0.3422258,0.338623,0.15005438,0.16081643,0.11944031,-0.6368212,-0.11722513,0.5365331,-0.19449762,-0.33474213,-0.23981775,0.1374216,0.5999132,-0.54518276,-0.2436308,0.033132058,0.2326683,-0.21221583,-0.57173425,0.008896112,-0.3108787,0.33866766,0.17857155,-0.29923862,-0.06103563,0.18660195,-0.45720953,0.23187287,0.27786437,-0.38209358,-0.035731494,-0.2925516,-0.0544937,0.9935134,0.03383332,0.09099943,-0.6608495,-0.47642687,-0.78961384,-0.3215116,0.22797461,0.24049424,-0.096075706,-0.49144635,-0.20163879,-0.07448775,0.14103213,0.041782744,-0.58998436,0.50850046,0.07540246,0.30511776,0.0010046789,-0.93329734,-0.06603316,0.11927908,-0.30164856,-0.42631823,0.58796734,-0.07313151,0.82593185,-0.039681785,-0.008164765,0.0876782,-0.60228235,0.3349324,-0.4481587,-0.033377435,-0.6184345,0.18456702,646 +494,0.6549698,-0.1085608,-0.590624,-0.16729246,-0.42648864,0.09603627,-0.17026027,0.5703339,0.34329394,-0.31654358,-0.08509236,-0.081212096,0.172587,0.3655737,-0.1914421,-0.75465566,0.008946044,0.20675741,-0.42795333,0.51259327,-0.42969054,0.25288978,-0.1062165,0.4564991,0.10078358,0.25060472,0.09725953,0.02414764,0.076930895,-0.109946504,-0.14854217,0.3875874,-0.4718032,0.21290796,-0.12697068,-0.3651835,-0.011295349,-0.43456218,-0.23660207,-0.7382544,0.19353986,-0.5723104,0.43281677,0.019983536,-0.33227485,0.19618516,0.24859919,0.24996722,-0.2309773,-0.11235937,-0.053859506,0.04992572,-0.11976842,-0.13937587,-0.28295553,-0.41966364,-0.53152287,0.048337527,-0.40937948,-0.036489923,-0.23476414,0.17586136,-0.17260459,0.09389133,-0.02222268,0.5174213,-0.29350945,0.07347911,0.26866928,-0.16435774,0.18610239,-0.5399243,-0.18355285,-0.04139911,0.22575296,-0.18633568,-0.32311648,0.20673144,0.28544244,0.4715418,-0.13798836,-0.15044633,-0.40801463,-0.18455614,-0.062640004,0.53610384,-0.30895337,-0.5153416,-0.25995386,0.01127041,0.021747176,0.2914599,-0.026259528,-0.15149863,-0.070441015,-0.12782075,-0.29964092,0.34999564,0.4406104,-0.48585504,-0.22820206,0.32949385,0.5167072,0.15662411,-0.13023429,-0.008186383,0.076234676,-0.66698503,-0.16355456,-0.022251982,-0.08454395,0.39084116,-0.14948682,0.18515842,0.41038868,0.037158195,-0.1832514,0.31552675,0.08202345,-0.05055489,-0.5293066,-0.19633068,0.30121756,-0.4368711,0.20198406,-0.21427754,0.7042738,0.18852635,-0.7479339,0.26162475,-0.5651798,0.08188222,-0.10357795,0.4064861,0.73664564,0.3530996,0.14158699,0.76142234,-0.28413787,0.10510971,-0.18889461,-0.1528564,-0.01883029,-0.028730618,-0.09219502,-0.5539622,0.3511556,0.07786213,0.037533317,0.46393535,0.37129754,-0.60022056,-0.24902776,0.21852134,0.8638602,-0.24299,-0.23018034,0.75217336,0.90865666,0.9400645,0.050563462,1.0633434,0.10500783,-0.1879363,0.25591162,-0.15802003,-0.7288912,0.2920147,0.31408787,0.098797224,0.23753479,-0.058474902,-0.12902011,0.46259406,-0.10164734,-0.13787256,0.042675283,0.20044391,0.21638395,-0.0386344,-0.4070726,-0.3750035,0.031979084,-0.07348917,0.19387853,0.22789943,-0.21419899,0.4483675,0.045951895,1.5352963,0.027224438,0.02581715,0.1398017,0.36630827,0.40679404,-0.1425552,-0.20633395,0.32421497,0.2290974,0.08445321,-0.51378727,0.2760356,-0.18305644,-0.41327408,-0.076617554,-0.39732775,-0.1399421,-0.06481187,-0.41655323,-0.14349496,-0.22861542,-0.10476773,0.5706353,-2.8983014,-0.16561835,-0.04188909,0.22532634,-0.22544979,-0.4068943,-0.2342428,-0.4453586,0.4287946,0.34315115,0.5324615,-0.4939092,0.27717748,0.3790408,-0.6344762,-0.09475497,-0.59558976,-0.08700641,0.035124205,0.24919839,0.009526519,-0.13734545,-0.022173319,0.24156968,0.5302078,0.05095076,0.15545121,0.40222713,0.41774887,0.04088836,0.46446642,-0.14039569,0.52546966,-0.40561125,-0.22103684,0.36490604,-0.5183711,0.2685147,0.026093427,0.09528408,0.52998644,-0.5370227,-1.1836764,-0.64519626,0.0059138113,1.035796,-0.30340368,-0.31875426,0.19995458,-0.41956076,-0.2217545,0.11062043,0.4345247,0.032370765,-0.11198253,-0.7895256,0.027252316,-0.03144545,0.20816708,-0.04173889,-0.1254054,-0.32980317,0.67803705,-0.00076476164,0.5490615,0.1582688,0.13953762,-0.30984265,-0.38477892,-0.023186278,0.7926279,0.33217397,0.24854386,-0.22557208,-0.2007202,-0.53751504,-0.004000289,0.09025718,0.6981469,0.54017353,0.026259363,0.053964842,0.2753635,0.074951135,0.06694626,-0.12509255,-0.18601322,-0.19197093,0.056323882,0.5967531,0.56498986,-0.18990622,0.33865973,0.0048328126,0.35571358,-0.3270321,-0.40768868,0.54760754,0.95482635,-0.2167582,-0.446061,0.6206101,0.4941533,-0.21715716,0.40882966,-0.6241695,-0.3844106,0.37593895,-0.12402092,-0.24753077,0.12861171,-0.3189434,0.08517909,-0.87664133,0.0025732347,-0.33892632,-0.35515815,-0.5271968,-0.12008726,-3.4442043,0.3103173,-0.04135061,-0.15847905,-0.21098064,-0.11161681,0.22349058,-0.45503804,-0.7161985,0.14766045,0.09671249,0.75383866,-0.17703095,0.12025946,-0.25350538,-0.3333924,-0.33379152,0.14265864,0.10081343,0.40993747,0.029272089,-0.3782153,-0.057180297,-0.13114727,-0.45207193,0.115813695,-0.6004902,-0.39259455,-0.1432533,-0.5770731,-0.18160036,0.5921558,-0.44983584,0.037051167,-0.17767169,0.097994246,-0.13304405,0.18803796,0.029680863,0.14831413,0.029870884,-0.18720451,-0.011128085,-0.28012338,0.26226953,0.014874025,0.26771086,0.34277993,-0.1127555,0.20594247,0.5280834,0.7150563,0.122406006,0.86856735,0.3497397,0.09575592,0.39175972,-0.23254915,-0.2319717,-0.3418488,-0.13049291,-0.19794573,-0.3543268,-0.30363634,-0.12527768,-0.4025446,-0.69186676,0.42367977,0.09304158,0.07473355,-0.023224486,0.3492942,0.58068085,-0.32589865,0.09023857,-0.057016283,-0.12863237,-0.50684345,-0.3270742,-0.45307797,-0.3009563,0.09590813,0.9746577,-0.28413066,0.13752472,-0.10407354,-0.098331876,-0.075358644,0.37261847,0.091776714,0.2567194,0.42909497,-0.13987723,-0.5868834,0.34167022,-0.27689168,-0.32801253,-0.4685059,0.2927672,0.40933627,-0.60244006,0.6738507,0.3810751,0.2426426,-0.115638025,-0.5198687,-0.040292,0.10883814,-0.16283187,0.3190563,0.3880385,-0.7857065,0.48491988,0.39605373,-0.14485036,-0.7144353,0.5911048,0.0033457726,-0.51365966,-0.20473549,0.38301465,0.33883244,0.030335495,-0.21766283,0.038011532,-0.43307763,0.07151062,0.102860495,-0.027040944,0.34141642,-0.23731081,-0.05314839,-0.7550942,-0.021754852,-0.5322336,-0.28109145,0.24061522,0.038672473,0.0036287436,0.14607446,-0.019589577,0.37724286,-0.40179655,0.04968811,-0.25926685,-0.23321533,0.33920798,0.42489153,0.48487625,-0.38597134,0.5445753,0.011110567,0.10476917,0.067355506,0.1095688,0.41040212,-0.040168278,0.562384,-0.07268911,-0.18456936,0.12964478,0.5319847,0.14218765,0.13937488,-0.010760188,-0.015931621,0.18289609,0.008609996,0.0768005,-0.058873586,-0.47140202,-0.07688122,-0.33561167,0.019450216,0.58501434,0.15408406,0.21354611,0.07187124,-0.28805155,0.0632819,0.1692097,-0.097802006,-1.2764251,0.43947393,0.12429069,0.89569014,0.5705328,0.0075426227,0.08054258,0.58020073,-0.13337477,0.19932862,0.42465225,-0.03182152,-0.37062073,0.51957923,-0.66521496,0.5212189,-0.083041884,0.004907445,-0.034917608,0.035640627,0.47969297,0.91165245,-0.18425713,0.07052948,0.21392311,-0.32439712,0.15125541,-0.38508877,-0.0727747,-0.6332612,-0.12831418,0.7186858,0.43135568,0.3822146,-0.36445156,-0.056259565,0.13827293,-0.08095013,0.015184096,0.0463191,0.05538685,-0.14337318,-0.5872221,-0.14906296,0.5459036,0.114955045,0.2144558,0.08764672,-0.19032118,0.27951267,-0.114746295,0.0776741,-0.14159623,-0.58344686,-0.003341198,-0.3636155,-0.5169001,0.46319252,-0.18525492,0.16651845,0.20147285,0.08398388,-0.38570327,0.34226605,-0.016990807,0.7896649,0.0042770314,-0.10221944,-0.4016618,0.09975102,0.19163063,-0.15259038,-0.2210007,-0.42889962,0.04794256,-0.5412701,0.4892264,-0.014431302,-0.3345184,0.15249227,0.014002063,0.11007263,0.5083392,-0.15410627,-0.17652042,-0.14065772,-0.06356991,-0.33654174,-0.22823404,-0.11165242,0.27961046,-0.039444756,-0.073081054,-0.12122516,-0.10270152,0.0008870278,0.3937455,-0.08198549,0.31522363,0.36694768,0.22930373,-0.27774826,0.118851386,0.24801132,0.51338565,-0.0919453,-0.15722215,-0.23691645,-0.3576321,-0.3444701,0.26119846,-0.03805286,0.3661827,0.11640493,-0.21892945,0.5685216,-0.139836,0.9315859,-0.050119143,-0.3425191,0.06755275,0.48087737,-0.052264664,-0.15699156,-0.35200754,0.82559747,0.52557427,-0.15285528,-0.09295273,-0.30860168,0.09602753,0.14232484,-0.1795793,-0.042402763,-0.07418863,-0.46695969,-0.291637,0.08263106,0.19811381,0.36214876,-0.14254855,0.017537406,0.14049579,0.06870029,0.21749146,-0.27778304,-0.044109304,0.16097207,0.37179074,0.009379174,0.14909656,-0.5256419,0.31464916,-0.5870525,0.104750395,-0.34237775,0.20260313,-0.3486763,-0.26407096,0.19239743,-0.037850063,0.23590255,-0.17475091,-0.34322193,-0.29208517,0.49445674,0.26157945,0.056031767,0.61178076,-0.24080524,0.106395245,0.21619503,0.59669924,0.82953465,-0.17854418,-0.24112926,0.2568799,-0.29823765,-0.55817777,0.19288458,-0.40866342,0.2125635,0.08678663,-0.08934682,-0.59381145,0.24616395,0.18860148,0.26160175,0.044194646,-0.70301056,-0.17213723,0.33946353,-0.24399574,-0.21145461,-0.30270913,0.09951687,0.6878931,-0.111910924,-0.16379164,0.15026416,0.17933036,-0.034551945,-0.79993385,0.09080834,-0.505251,0.35685396,0.17760266,-0.27271312,-0.25055164,-0.05090648,-0.49240205,0.2503832,0.12060719,-0.2967702,0.06926234,-0.44813594,-0.00886003,0.89248276,-0.11973957,0.3083908,-0.4849585,-0.47514382,-0.71972954,-0.26471075,0.4149031,-0.0035857516,0.02774881,-0.65924865,0.045975465,-0.18595025,-0.4042965,-0.08895184,-0.34566745,0.44315866,0.02496251,0.39547515,0.036732234,-0.8452129,0.19881167,-0.03148876,-0.25002858,-0.4331674,0.36211607,-0.110771105,0.8568738,0.09603989,0.052431963,0.4036133,-0.4654294,0.066632815,-0.26233593,-0.0036318642,-0.53700405,0.07367184,650 +495,0.27583727,-0.018541873,-0.6512068,-0.18783693,-0.20332114,0.13475847,-0.11558591,0.12949194,0.2985069,-0.3483452,-0.22041906,-0.1170029,-0.02568373,0.26563928,-0.14387472,-0.7058479,-0.14024232,0.22024791,-0.70918566,0.4899945,-0.2757284,0.3902829,0.2980166,0.2925868,0.06986884,0.20386757,0.13744986,-0.20652436,-0.13882303,-0.0062569636,-0.06605975,0.14449954,-0.6609669,0.26686102,-0.21270192,-0.13449153,0.014251298,-0.5055812,-0.44740763,-0.738136,0.3917393,-0.65638244,0.62058777,0.084375,-0.19031236,0.025892152,0.012650822,0.20075132,-0.26869327,0.1485102,0.26978847,-0.2039272,-0.11651174,-0.10049606,-0.23179428,-0.23157112,-0.4364513,0.06871243,-0.38605976,-0.056220252,-0.2132472,0.08813921,-0.18937455,0.030894015,-0.19482431,0.5350924,-0.32772908,0.02075039,0.28776747,-0.18141879,0.31796318,-0.4983113,-0.11693,-0.06980273,0.34992412,-0.18376562,-0.14273968,0.2503907,0.24780165,0.55021244,-0.00757885,-0.24727596,-0.15364392,0.073958956,0.14664148,0.43701315,-0.13255528,-0.15467463,-0.14101939,0.11795091,0.10218849,0.101139784,-0.059964936,-0.62794054,-0.0047714883,-0.19142509,-0.029829714,0.17024657,0.560719,-0.21811016,-0.11104905,0.27550843,0.20376213,0.26519075,0.06698592,0.059568055,-0.058992688,-0.45069996,-0.21785606,0.20295255,-0.13489011,0.5771968,0.017082648,0.13948305,0.53385156,0.026602779,-0.11553436,-0.09635542,-0.056303483,0.1472107,-0.019445505,-0.11662495,0.24752322,-0.52992475,0.031776242,-0.08378504,0.5450436,0.11229671,-0.7976274,0.28298372,-0.47969565,0.1121552,-0.075661145,0.5628123,0.77758896,0.3815432,0.11880127,0.8868583,-0.73677593,0.1216925,0.017870622,-0.3688484,0.059857078,-0.01291527,-0.055827398,-0.5077732,-0.15881059,-0.071354456,-0.101556286,0.0143245375,0.0326267,-0.37919113,-0.03346516,-0.03703943,0.7548916,-0.33119154,-0.0224259,0.63107246,1.0674177,0.8922533,0.17807865,1.3072289,0.20428273,-0.2540672,-0.12289099,-0.22499311,-0.6198888,0.14827469,0.2331878,0.080666624,0.32943338,0.20693901,0.13830423,0.28566393,-0.49281555,0.09048542,-0.097074874,0.16628239,-0.01398577,0.009495237,-0.38730758,-0.37119508,0.07851847,0.21906236,-0.097067334,0.118283466,-0.17620817,0.3509908,0.10214969,1.3431915,-0.08172067,0.05189982,0.041770395,0.13144031,0.23826432,-0.05660484,-0.2295902,0.2228241,0.38531443,-0.060457736,-0.4954772,-0.20617367,-0.21832527,-0.24888213,-0.21239854,-0.21252558,0.11713427,0.06395017,-0.3796814,-0.12842871,0.15730698,-0.41982582,0.5710245,-2.4841542,-0.08714284,-0.08987458,0.3362588,-0.30269304,-0.30810165,-0.25954643,-0.36023623,0.37849584,0.3498087,0.3651125,-0.61172324,0.3072762,0.22476958,-0.39065024,-0.2190189,-0.45580763,0.006973062,0.09916311,0.26317343,-0.0011114223,-0.15263923,-0.11312666,0.23004113,0.49835178,-0.015231056,-0.14941587,0.40686014,0.4141123,0.09507593,0.456657,-0.0004444814,0.48289546,-0.17998831,-0.08860832,0.3561981,-0.16968371,0.24300098,-0.015350138,0.20983092,0.35169885,-0.6092187,-0.6560208,-0.6160529,-0.44021705,1.1454674,-0.4053948,-0.26231822,0.25636297,-0.06650491,-0.21121518,0.06945661,0.64746815,-0.012535353,0.13850899,-0.85219246,-0.14103273,0.028525354,0.2864093,-0.027244534,0.03931009,-0.45197654,0.5680539,-0.1414335,0.48355484,0.58021927,0.16287862,0.0011488923,-0.6046062,0.21225584,1.0677264,0.3917026,0.14925747,-0.19478525,0.0032653862,-0.099087216,-0.07350589,0.03126422,0.57184786,0.67175096,0.0059719533,0.034961317,0.24305645,0.033439636,-0.03348699,-0.13537493,-0.35806128,-0.05072818,-0.14549221,0.58321816,0.71920925,-0.098807506,0.31407484,-0.0994033,0.28239796,-0.019971503,-0.47176746,0.5049536,0.8729333,-0.03257557,-0.17169623,0.48408768,0.2796945,-0.13399212,0.35539225,-0.4513338,-0.305314,0.58939826,-0.15389623,-0.5611302,0.25709602,-0.3355022,0.13877872,-0.8629759,0.4042204,-0.002062772,-0.4422658,-0.3766575,-0.0052853203,-3.4787326,0.16539827,-0.2460452,-0.08173459,-0.021384459,-0.07570177,0.23744035,-0.35112205,-0.69226414,0.12609774,-0.00044267625,0.53319377,-0.14306352,0.1278062,-0.12604329,-0.19690026,-0.1333789,0.27309835,0.3335069,0.2317728,0.04250558,-0.32315275,-0.13635695,-0.3525694,-0.3902176,0.03050646,-0.48675394,-0.46731335,-0.16087754,-0.54061764,-0.30392832,0.6410862,-0.37315693,-0.07005631,-0.092121884,0.047405165,-0.063595586,0.26080012,0.08253157,0.31938055,0.030079624,-0.053633634,-0.16107996,-0.15459828,0.31681153,0.2553886,0.14488229,0.3486905,-0.09221826,0.17631729,0.36375216,0.7462529,-0.18821584,0.6672452,0.38741708,-0.07428185,0.16039944,-0.33110598,-0.35262474,-0.6790189,-0.35699993,-0.17461394,-0.4183542,-0.51667964,-0.19192378,-0.33231884,-0.81585276,0.33370546,-0.023481455,-0.0005662569,0.12059392,0.042868357,0.36527735,-0.21219532,0.07353066,-0.11873208,-0.13486432,-0.48496276,-0.521865,-0.54360735,-0.52031225,-0.1096002,1.0225893,0.07514602,-0.015340026,0.03838351,-0.3163231,0.19669497,-0.053090803,0.2697715,0.22332957,0.34793684,-0.0063167317,-0.7276004,0.46876246,0.027788421,-0.09941018,-0.5625977,0.151251,0.7156542,-0.6094543,0.6277273,0.3316254,0.091602184,0.0218047,-0.4719866,-0.4325277,-0.019626928,-0.32687488,0.5350462,0.17380397,-0.45820013,0.2923321,0.17787491,-0.19322683,-0.76729834,0.4280541,-0.051999707,-0.24516144,0.25834513,0.3878046,-0.23376228,-0.1282102,-0.05392772,0.112273,-0.33918694,0.3398072,0.29234812,0.030574176,0.17336333,-0.14161234,-0.2486852,-0.7132822,0.0465883,-0.54644036,-0.29663092,0.13286838,0.22038457,0.036025297,0.02203891,0.15517299,0.5655457,-0.29567322,0.14141056,-0.13116066,-0.24411431,0.3639617,0.5295939,0.31570497,-0.39422816,0.52043885,-0.1340765,-0.04459714,-0.296773,0.116556205,0.4411728,0.19110866,0.08253274,-0.056922294,-0.08867078,0.17598009,0.5457936,0.10231685,0.25450978,0.15641955,-0.25727445,0.3713558,0.1467867,0.11400594,-0.066296734,-0.3660901,-0.09760582,-0.12743078,0.09586827,0.39181498,0.15640846,0.19761123,-0.27664015,-0.26522604,0.12658016,0.28761965,0.11534526,-0.889716,0.40653795,0.05576272,0.66282624,0.6158341,0.033587877,0.047827665,0.4451345,-0.16287851,0.06956264,0.20960662,-0.057136986,-0.4843594,0.38945228,-0.43001652,0.35371348,-0.15396656,-0.08973922,0.2233742,0.124641314,0.1653001,0.87852234,0.003686096,0.037988894,-0.06517916,-0.10285475,-0.05527274,-0.38803345,0.07097311,-0.5269299,-0.61774296,0.63352436,0.36457542,0.278665,-0.3147292,-0.034635793,-0.015148441,-0.23372395,0.20780566,-0.0029469517,-0.010296489,0.059560742,-0.6620001,-0.1772349,0.5720373,-0.17679122,-0.09914843,-0.02430479,-0.05498835,0.10137197,-0.25587076,-0.03847124,-0.06134712,-0.72364604,-0.04292665,-0.491379,-0.32339972,0.23279433,-0.44592375,0.31307343,0.03445971,0.034966733,-0.36382776,0.41324443,0.2864336,0.7385536,0.18774581,-0.077217,-0.22159687,0.15494432,0.24255882,-0.17034754,-0.0008979738,-0.29336056,0.028695974,-0.58316886,0.47324702,-0.07939197,-0.07560687,0.09237893,-0.12141576,-0.027576,0.4375685,-0.17691545,-0.023691896,0.22399066,0.025059137,-0.20636606,-0.0824026,-0.4628725,0.19872591,0.18200032,-0.03995037,0.062297408,-0.027588261,-0.23419364,0.3423201,0.17852595,0.2600251,0.30273795,-0.023751067,-0.3883811,-0.051677637,-0.013146924,0.39286852,0.380363,-0.09006076,-0.23106275,-0.38348016,-0.20413086,0.09017626,-0.1287121,0.16693385,0.036351502,-0.26259342,0.67147446,0.3631852,1.0765153,0.040678483,-0.2336091,-0.0031799844,0.4215068,0.04531037,0.022129895,-0.41176704,0.8813572,0.5797254,-0.074053966,-0.11552645,-0.13746098,-0.062269144,0.045592796,-0.23732044,-0.095208414,-0.10169288,-0.61510277,-0.3270951,0.15739706,0.2871358,-0.026625749,-0.016945004,-0.12129191,0.07595163,0.12698476,0.30253023,-0.42676786,-0.0008382286,0.4012631,0.1491892,0.17990611,0.16360195,-0.33115292,0.53321385,-0.6214071,0.070082664,-0.31958553,-0.0002733171,-0.07139785,-0.23916562,0.14083956,0.096660614,0.36455867,-0.40479273,-0.19923055,-0.36689505,0.54795253,0.008983644,0.24164942,0.68991834,-0.188533,-0.09001349,0.071940295,0.5311134,1.1558759,-0.2298386,0.13485415,0.45216376,-0.34772748,-0.3347216,0.10794751,-0.29181966,0.0042765057,-0.16424139,-0.385287,-0.4120548,0.1908599,-0.06559212,-0.051718432,-0.014206569,-0.62119037,-0.16586311,0.4760212,-0.3434842,-0.2727738,-0.29216343,0.30306035,0.53708214,-0.26736924,-0.49821678,0.11010545,0.15986969,-0.2841104,-0.55234396,0.11329585,-0.36927658,0.24184313,0.14280902,-0.29522547,-0.120743416,0.22697535,-0.41078418,-0.00047422308,0.14177279,-0.4542492,-0.036610804,-0.1190023,-0.08329905,0.96752083,-0.03367124,0.0969099,-0.5879291,-0.46422943,-1.0197324,-0.34155205,0.34364492,0.27168876,-0.031264335,-0.57782954,-0.18417206,-0.0999201,0.051948782,-0.06621496,-0.22598092,0.40895388,0.14858162,0.5415987,-0.22885858,-0.782477,0.0914278,0.16419102,-0.28952432,-0.4008212,0.4459324,0.1664816,0.67767364,-0.08752946,-0.0087491935,0.1994492,-0.6272011,0.19105671,-0.35200113,-0.17442659,-0.5422541,0.046016775,652 +496,0.42528963,-0.2925143,-0.45502657,-0.15691173,-0.17669289,0.008261328,-0.07012611,0.61199135,0.26222283,-0.37959164,-0.17751102,-0.051505167,0.1510936,0.38499084,0.07000915,-0.3813804,0.019828204,0.16804972,-0.5662812,0.4757125,-0.36909962,-0.016275402,-0.2178107,0.47974417,0.24570374,0.2765081,-0.033600003,-0.040203195,-0.029842466,0.03533457,-0.028618272,0.2003961,-0.28603834,0.29119587,-0.074977286,-0.15699027,-0.12939516,-0.6598562,-0.4195225,-0.66238755,0.25542194,-0.6981558,0.5354694,-0.036117528,-0.29222456,0.3019266,0.10406916,0.3692542,-0.39399013,-0.23294596,0.1479615,-0.008828716,-0.06978183,-0.10070709,-0.09909414,-0.29222032,-0.48658532,-0.14889948,-0.26253924,-0.14648189,-0.32488173,0.0119625265,-0.27045125,-0.06719782,0.044071674,0.55136865,-0.37655544,-0.025391826,0.25805047,-0.113796845,0.29266277,-0.5105232,-0.07110538,-0.07218999,0.4144672,-0.016129704,-0.30976674,0.24129,0.22859032,0.30258083,-0.130362,-0.048999615,-0.27360693,0.031893842,0.16065468,0.52309614,-0.033567935,-0.42403913,-0.043907236,0.033030655,0.09807155,0.20428655,0.19359027,-0.14475009,-0.19105898,0.056571655,-0.041128363,0.37443772,0.3772323,-0.18849555,-0.10392971,0.42518774,0.631765,0.33218786,-0.12991174,-0.06880458,0.02049971,-0.49768186,-0.181182,-0.11380581,-0.27427056,0.3679046,-0.1627439,0.33887407,0.6384893,-0.013463506,-0.09802009,0.11734568,0.09872301,-0.12706122,-0.288725,-0.29115722,0.17552423,-0.284468,0.20361638,-0.017762708,0.50792414,0.15520976,-0.496373,0.3836449,-0.479106,0.09662204,-0.13133003,0.44716287,0.73999065,0.34782806,0.38914317,0.60440034,-0.33141488,0.025789062,-0.0056140167,-0.38315514,0.18678321,-0.22106478,0.069312416,-0.5746009,-0.06135719,-0.028977057,-0.21527335,0.26144198,0.20753428,-0.5450817,-0.117369816,0.25177047,0.7688742,-0.2300774,-0.14650664,0.83068854,0.99331486,0.87275845,0.056874733,0.86556923,0.1444957,-0.1667467,0.24088041,-0.25304002,-0.6237599,0.31777543,0.41645485,-0.021813767,0.13949019,0.07323601,0.0071675223,0.4030368,-0.41447848,0.040814288,-0.0060847485,0.21033421,0.05563392,-0.2865025,-0.62038696,-0.2178231,-0.21046372,-0.048086256,0.110606715,0.12636693,-0.28044695,0.3674379,-0.06987689,1.71091,0.06708272,0.046776094,0.01847946,0.44493693,0.21785767,-0.29134044,-0.25051007,0.35132694,0.36113262,0.11305127,-0.5677573,0.3186716,-0.21065554,-0.2587132,-0.1250613,-0.46484193,-0.02797073,-0.02473046,-0.39816275,-0.04634744,-0.10164881,-0.33585766,0.43718618,-3.1575668,-0.29898444,-0.09362792,0.4129553,-0.1887063,-0.23338197,-0.15814424,-0.3875044,0.30986658,0.30350116,0.51909167,-0.5623196,0.4242603,0.2976908,-0.771622,-0.109426,-0.5562419,-0.127773,0.017418798,0.22734936,0.12475835,0.10535775,0.072350964,0.27236018,0.45719105,0.045094796,0.13489987,0.30900112,0.35181782,-0.06180067,0.50113887,-0.16657309,0.5635224,-0.24894513,-0.10380371,0.17358446,-0.16337529,0.18826607,-0.17730097,0.1442754,0.5390021,-0.35513544,-0.9362403,-0.62784034,-0.011817889,1.1317478,-0.13852923,-0.2826934,0.3132854,-0.590303,-0.32350835,0.019242125,0.47858062,-0.048161574,-0.15971322,-0.784853,-0.024730686,-0.025136454,-0.0035033992,-0.08060632,-0.18497396,-0.54572237,0.5521404,0.06672051,0.570329,0.18570282,0.29715794,-0.16595483,-0.19165982,0.023061762,0.526948,0.38441414,0.026520012,-0.11696816,-0.073663965,-0.4449151,0.0018826212,0.0840152,0.5745797,0.48818317,-0.14333136,0.172256,0.20022693,-0.02223494,0.049944956,-0.11867221,-0.14737189,-0.09535446,0.00582189,0.42049083,0.62296456,-0.15398563,0.48006353,0.05557681,0.27164912,-0.0872696,-0.5463711,0.5000731,0.7821614,-0.21473907,-0.27994522,0.5099493,0.38793927,-0.20574774,0.3643237,-0.5218845,-0.121646345,0.5609798,-0.1454701,-0.34063354,0.061026316,-0.20525631,0.26643363,-0.81662637,0.17181511,-0.27532193,-0.709889,-0.45226544,-0.0919615,-2.9967782,0.14195296,-0.18802038,-0.15986986,-0.10845052,-0.14433396,0.12680407,-0.73066896,-0.62549067,0.25730973,0.041226238,0.9068511,-0.12807395,-0.038654458,-0.2689183,-0.39543143,-0.2759726,0.031883847,0.033233706,0.49264425,0.026785221,-0.45499092,-0.082762346,-0.016872805,-0.49496004,0.027882969,-0.62462723,-0.39663655,-0.13854526,-0.5419412,-0.14348947,0.65903604,-0.1171461,-0.0021504888,-0.16191517,0.13114172,-0.03568118,0.25675184,-0.0067149443,0.08798029,0.13085748,-0.09109584,0.13465378,-0.20201448,0.31605586,0.102652505,0.2622951,0.285983,-0.02104908,0.3362806,0.61846304,0.6982388,-0.17138825,0.8397891,0.513683,-0.07326305,0.19934566,-0.34439367,-0.35319546,-0.27541193,-0.32680947,0.096086755,-0.41857114,-0.42222875,-0.11931715,-0.3538168,-0.81398106,0.53456384,0.110423796,0.3382096,0.005637237,-0.010284995,0.5676983,-0.21969104,0.013611191,0.039122734,-0.20042272,-0.6919398,-0.08955275,-0.5362643,-0.5086573,0.17903662,0.9379713,-0.38486975,0.19876862,-0.028959185,-0.39596415,0.08809687,0.1585021,-0.08814698,0.16085987,0.3714189,-0.23828577,-0.47364458,0.4315334,-0.26642713,-0.27339798,-0.64483446,0.2929662,0.5485636,-0.46691403,0.5422977,0.22055745,-0.08572454,-0.46338266,-0.4697666,-0.13453911,-0.050805576,-0.09109355,0.3578095,0.12826076,-0.81247914,0.3878037,0.31258768,-0.23229434,-0.66829556,0.62616384,-0.10195328,-0.2724269,-0.10539211,0.25895903,0.24725974,0.0428943,-0.35352388,0.29821792,-0.38732418,0.29832858,0.14188229,-0.024255756,0.28957233,-0.17088906,0.08065697,-0.74734384,-0.19936964,-0.54038227,-0.23539971,0.33163172,0.13385513,0.27876207,0.12396709,0.09104542,0.30940193,-0.41146532,0.071458496,-0.19000481,-0.3503437,0.23738119,0.4443498,0.4711474,-0.3524418,0.561645,0.065869436,-0.0464671,0.13846616,0.04355395,0.35809782,0.03507681,0.53800637,-0.040149238,-0.18887079,0.16428664,0.7734298,0.0941277,0.2825527,0.0056802887,-0.16795287,0.014678801,0.049715903,0.2538921,-0.05776659,-0.53436476,0.23497625,-0.3560509,0.1266228,0.4385817,0.29568794,0.12784173,0.146462,-0.49825484,0.031850304,0.13930243,0.14013383,-1.2475412,0.52047557,0.28953156,0.8768343,0.26188105,0.07605709,-0.11563561,0.7668788,-0.046235334,0.11020022,0.3117033,0.0053668576,-0.5272767,0.48589674,-0.83606803,0.5619896,0.16577768,-0.16067751,0.032350276,-0.10574385,0.426929,0.6298848,-0.22114468,0.092515714,0.094760194,-0.2721838,0.2880487,-0.40665188,-0.1031634,-0.6717097,-0.22847138,0.50445706,0.5674933,0.34256002,-0.09462111,0.02510479,0.103010364,-0.10309916,0.13896033,0.08877879,0.11298557,-0.032514997,-0.77034503,-0.15416753,0.2871173,0.06424001,0.3430037,-0.0757479,-0.065386094,0.2247959,-0.10187989,0.03678802,-0.08804132,-0.66587025,-0.08619372,-0.28287295,-0.38522956,0.48000288,-0.042506363,0.36733928,0.16194816,0.031132152,0.0075262445,0.5111839,-0.11425916,0.9056206,0.066540316,-0.113973364,-0.4209121,0.28396267,0.17906761,-0.1764325,0.007385922,-0.4370923,0.008437152,-0.4393346,0.52557945,0.09848101,-0.38647717,0.05191183,-0.10949987,0.1559529,0.54837316,-0.2027485,-0.1446973,-0.31810284,-0.2207632,-0.36804858,-0.2549506,-0.085794784,0.3025709,0.24035849,0.035197444,-0.19605742,-0.0086705005,-0.07257567,0.40872413,0.018825721,0.42047277,0.36923712,-0.092652865,-0.18779843,-0.27379593,0.23983686,0.47678953,0.0020902434,-0.2785786,-0.34495077,-0.39962548,-0.44846645,0.09424562,-0.04659901,0.40950456,0.1516361,0.0103949355,0.4541061,-0.1525061,1.1303762,-0.025789948,-0.3261803,0.2537741,0.46903774,-0.048235744,-0.22885618,-0.33237892,0.7294024,0.41381913,-0.018180672,-0.05809469,-0.40757447,-0.06244129,0.39258358,-0.13678834,-0.12499584,-0.00031831648,-0.58965766,-0.20902471,0.2396307,0.10148757,0.4611098,-0.14232251,0.14204104,0.24638925,-0.07510577,0.1914854,-0.4051475,-0.21826304,0.29851642,0.28337985,-0.030568574,0.058262076,-0.53029114,0.44451332,-0.46859834,0.043610435,-0.1903729,0.26079297,-0.29001632,-0.39363173,0.1898558,0.17921817,0.33862597,-0.23772907,-0.37550873,-0.2056396,0.5592967,0.22241728,0.045270853,0.45305583,-0.22732525,-0.049836103,0.17848487,0.39082545,0.6240552,-0.18974714,0.04018994,0.3757508,-0.39524445,-0.61025363,0.3527343,-0.26658753,0.44474533,0.02811815,-0.10808047,-0.687349,0.31189135,0.21426117,-0.010633075,-0.09159975,-0.4833303,-0.15185997,0.1535257,-0.26393998,-0.14748372,-0.40557104,0.055658005,0.31769142,-0.2865944,-0.3310575,0.09567026,0.16300075,-0.07762069,-0.3963944,-0.11698913,-0.3309423,0.27347934,-0.1119458,-0.42503524,-0.23979367,-0.12167787,-0.42692044,0.30349603,-0.08015495,-0.27785742,0.16562448,-0.3083895,-0.10655583,0.9312577,-0.18801425,0.17839491,-0.4992702,-0.40598106,-0.67583656,-0.25554475,0.36053348,-0.004452548,-0.06941943,-0.6462761,0.16683313,-0.03543847,-0.03593736,-0.215001,-0.29562768,0.4123997,0.07628976,0.27643472,-0.056384478,-0.84982055,0.22860524,0.030732444,-0.2453263,-0.61369234,0.5072296,-0.07936197,0.79248667,0.045088474,0.12119235,0.15220629,-0.2141161,-0.17448433,-0.30396134,-0.14882417,-0.4171955,0.024271548,655 +497,0.5613328,-0.33304065,-0.37457448,-0.10840612,-0.121400416,0.22230847,0.004454851,0.37935916,0.14116688,-0.38578722,0.021576183,-0.3034181,0.075742766,0.3056067,-0.06805288,-0.4216244,-0.08594632,0.14263351,-0.44383666,0.42734152,-0.42376092,0.2909431,-0.06759446,0.24013951,0.12284652,0.2916227,0.107410885,-0.27102873,-0.20425455,-0.06625078,-0.1773903,-0.18691304,-0.6796156,0.021190481,-0.04674062,-0.2310162,0.19013461,-0.36961287,-0.38767067,-0.72555435,0.2878778,-0.8193508,0.54518515,0.112227626,-0.19630334,0.26167482,-0.13181303,0.49852818,-0.24626672,0.061775573,0.32546306,-0.21254756,-0.04805528,-0.19195046,-0.13473533,-0.5333505,-0.56684446,0.05277235,-0.28498766,-0.18629251,-0.21999447,0.097569294,-0.25422177,0.071656406,-0.14399698,0.25643045,-0.36988953,0.11597051,0.21133284,-0.11277346,0.34587684,-0.5249685,-0.14786755,-0.18356633,0.114922784,-0.14071098,-0.16789088,0.4047858,0.3136529,0.51863104,-0.06272595,-0.17511971,-0.28864744,0.10045452,0.07573263,0.56289524,-0.18276548,-0.38299602,-0.139365,-0.14503548,0.030678766,0.056600016,0.03935069,-0.24933736,-0.06409171,0.2500619,-0.2784141,0.30932975,0.55751204,-0.26896384,-0.32722726,0.40537426,0.5996626,0.03896608,-0.07249565,-0.19613586,0.052429594,-0.45721292,-0.16551615,0.25831097,-0.28561127,0.5178861,-0.03991839,0.21244684,0.65575284,-0.38470644,0.111793555,0.028894408,0.07352327,-0.046583004,-0.1132383,-0.20664628,0.20157926,-0.47766486,0.15629576,-0.38754764,0.7345892,0.2997345,-0.74772406,0.39731994,-0.4926365,0.1555489,-0.03542786,0.5142048,0.64278346,0.39788812,0.281861,0.80601805,-0.67075485,0.19927858,-0.07092896,-0.32540423,0.29877415,-0.30891314,0.05555996,-0.4040594,-0.08043492,0.07877503,-0.32771054,-0.08157412,0.2624481,-0.69177675,0.0373295,0.07614385,0.89075047,-0.2608053,0.037974082,0.6259672,0.9462095,0.9291368,0.09682626,1.170495,0.3070738,-0.41665435,0.38405278,-0.43236467,-0.8309679,0.24940762,0.28175667,-0.19318984,0.25761536,0.25327346,-0.2132173,0.42677712,-0.48865652,0.15500137,-0.20284377,0.18180038,0.022599434,-0.09881168,-0.3668676,-0.29097137,-0.1428154,-0.010146916,0.05548788,0.25137538,-0.5001562,0.18415321,-0.0712413,1.8251975,-0.043970544,0.12122137,-0.06905381,0.4439578,-0.035157397,-0.19696353,0.0037300203,0.33785862,0.4122974,0.31732577,-0.59248346,0.13093652,-0.28468418,-0.36590227,-0.20409055,-0.19198216,-0.074312106,0.007923088,-0.29143924,-0.24669126,0.042311274,-0.230415,0.45088908,-2.5872028,0.023452004,-0.09906075,0.37935543,-0.27656662,-0.40536776,0.00026340995,-0.50264823,0.20503534,0.43486091,0.3725031,-0.7714301,0.31557545,0.19907744,-0.46440774,-0.05225771,-0.72495,-0.015928729,-0.053625222,0.32038075,0.10463762,-0.09265809,-0.0085513955,0.027841551,0.4654307,0.04882035,-0.0052947784,0.14859891,0.40829396,0.13083057,0.5345739,0.067705266,0.4384373,-0.20433487,-0.08755957,0.25409117,-0.45431313,0.29740024,-0.03420029,0.089276604,0.36675262,-0.39916617,-0.8658153,-0.75909567,-0.19207835,1.0960895,-0.111493416,-0.3803995,0.20606531,-0.3279204,-0.330938,-0.21486093,0.43522543,0.03703634,-0.16647805,-0.75550026,-0.01004149,-0.062196992,0.24151143,0.0039364886,0.10926761,-0.432028,0.7053626,-0.117737465,0.35763,0.28383613,0.18333448,-0.077324465,-0.545303,0.04182646,1.0103321,0.35313517,0.06631441,-0.04796564,-0.28294078,-0.43792337,-0.106349714,0.14369257,0.36506295,0.7817564,-0.12527838,-0.014856117,0.28023192,-0.08937001,0.030475514,-0.14944582,-0.3287561,-0.11966489,-0.12333218,0.47753054,0.5893928,-0.106629476,0.4437286,-0.18346773,0.32244918,-0.08029282,-0.45454463,0.473136,0.9344206,-0.14731918,-0.08233309,0.4095698,0.44491988,-0.32684115,0.4017313,-0.6434101,-0.23136483,0.341819,-0.1266095,-0.31001642,0.22080585,-0.29884276,0.14378,-0.69715816,0.5081175,-0.047296625,-0.49212798,-0.65156645,-0.17580424,-3.053972,0.18117668,-0.26560128,-0.13752133,0.15330808,0.03650073,0.27618915,-0.61096305,-0.2558636,0.13481505,0.03147846,0.65300137,0.04890917,0.14437367,-0.21299993,-0.21539466,-0.5253079,0.13047417,0.1327927,0.21740206,0.003781574,-0.40466362,0.15228501,-0.18623354,-0.3250248,0.016721876,-0.49961048,-0.61072224,-0.32021818,-0.37629,-0.3741631,0.7461539,-0.13845076,0.08732615,-0.20799136,-0.027484229,-0.15083966,0.3407621,0.24908951,-0.08000665,-0.07884929,-0.06745541,-0.016621944,-0.44480827,0.26297688,0.16318266,0.31129318,0.43058816,-0.054112885,0.12153297,0.51532024,0.5758952,-0.07514866,0.8462631,0.5719452,-0.23188795,0.2571111,-0.24209158,-0.10606792,-0.40849617,-0.37569687,-0.032557886,-0.44562197,-0.42943892,0.078675665,-0.3575231,-0.7209093,0.39566818,-0.09502256,0.04892627,0.038920127,0.2596032,0.58753556,-0.31319022,-0.010570658,-0.020604474,-0.1115538,-0.5193254,-0.27167317,-0.59539807,-0.50890714,0.320539,1.1938448,-0.13113396,0.0037178013,0.084227204,-0.3137138,0.18935059,0.015570775,-0.11517017,0.11783596,0.31109348,-0.10044207,-0.759267,0.46753338,-0.058264527,-0.10424515,-0.7106856,0.24956182,0.60449916,-0.6402914,0.34254572,0.28179395,0.06971841,0.005102762,-0.33281294,-0.17519383,-0.08657025,-0.27985692,0.19455828,-0.0142550245,-0.7338349,0.25461483,0.28921515,-0.29745716,-0.6234287,0.36192554,-0.048719186,-0.12719396,0.024649331,0.17560162,0.2262888,0.043243162,-0.23410027,0.1851963,-0.63775426,0.22492805,0.38129887,-0.016590679,0.19213997,0.0049924296,-0.1371307,-0.71658355,0.053841062,-0.36562687,-0.2852953,0.3289141,0.2163214,0.24603546,0.3125219,0.4225878,0.36522368,-0.22687311,-0.04355716,0.032448888,-0.35880047,0.46586734,0.3725109,0.5184818,-0.50727826,0.5507431,-0.02068263,-0.20581047,0.010449095,-0.13787672,0.45353463,0.25966904,0.3274323,0.178423,-0.31858188,0.18913914,0.90403885,0.12586458,0.5571228,0.12212443,-0.24942836,0.22640121,0.13869911,0.034314882,0.37230676,-0.49506208,0.073526144,0.0294622,0.23279439,0.29600286,0.06525805,0.20828377,-0.17154428,-0.18679182,0.008747501,0.09581256,-0.09600366,-1.1918167,0.31741685,0.17984033,0.7576436,0.3533037,-0.070511475,0.005297328,0.5325185,-0.14889966,0.08781575,0.17700422,-0.04923157,-0.49433336,0.37163636,-0.73864764,0.43007475,0.004944035,0.041403558,0.04889754,-0.1512278,0.39114732,0.9924345,-0.28568503,-0.014688313,-0.11185692,-0.28845972,0.15309249,-0.4237387,0.28642327,-0.6818943,-0.33053574,0.6475468,0.40134987,0.4159116,0.016686227,0.0006139832,0.025803497,-0.12312341,0.28272775,0.028015928,0.046161033,0.113391995,-0.7588965,-0.1491296,0.43907097,-0.45589966,0.27195916,0.017538087,-0.2564331,0.16552998,-0.18815064,-0.089320675,-0.064262435,-0.6201172,-0.06290166,-0.29679248,-0.40333602,0.51546323,0.07596474,0.3584833,0.2309192,0.07679031,-0.32825485,0.40541512,0.17525618,0.80503416,-0.010913031,-0.1852339,-0.62556237,0.34846374,0.21701157,-0.22925602,0.08876812,-0.06888364,0.09312679,-0.63709354,0.46497303,-0.1091718,-0.3661835,-0.023402695,-0.16362882,0.12456693,0.7659829,-0.2770407,-0.20769487,-0.034712944,-0.11536675,-0.20668927,-0.11197997,-0.0076297075,0.09682894,0.23966564,-0.06591465,0.015686527,-0.21507713,-0.015660355,0.3378268,0.20301776,0.3622031,0.36549944,-0.036639433,-0.33669522,-0.27239925,-0.016024385,0.44931176,0.0365222,-0.17788641,-0.382179,-0.5347322,-0.45972973,0.15173528,-0.056986745,0.32575712,0.09093503,-0.3552362,0.7092199,-0.01668272,1.3600996,0.0009791617,-0.24864408,-0.020791786,0.7449741,0.035759956,0.06419999,-0.54529524,0.9484703,0.55787617,-0.2251954,-0.10662868,-0.36716542,-0.25727186,0.47070175,-0.10168942,-0.008928299,0.06842387,-0.84142053,-0.27812055,0.17689466,0.3545241,0.14222652,-0.06468826,0.14089443,0.28837827,0.0016390851,0.31705305,-0.3834086,-0.26583058,0.2983933,0.21265152,0.027523799,0.20245706,-0.39489904,0.37574616,-0.3496957,-0.03820967,-0.035708785,0.042707052,-0.010854033,-0.2312068,0.27818114,0.20898892,0.26314348,-0.43012166,-0.37549767,-0.23065484,0.605773,0.24501088,0.30950752,0.6138962,-0.15202506,-0.27651933,-0.04929134,0.46440902,1.176667,-0.2456836,0.1733453,0.42865548,-0.42114544,-0.6011801,0.44950488,-0.09381243,0.056939907,-0.06517885,-0.35206413,-0.5283628,0.330472,0.2058709,-0.12344798,0.13979849,-0.68545204,-0.24751356,0.18075983,-0.38379446,-0.2062943,-0.2994921,0.25215364,0.7289415,-0.34371647,-0.16817467,0.08597007,0.38914827,-0.3158581,-0.3920932,-0.26453522,-0.43676424,0.3108676,-0.0022631288,-0.3748658,-0.2283049,0.08575898,-0.4359488,0.11354285,-0.038855094,-0.5313929,0.089167975,-0.25560182,-0.12133597,0.70724624,-0.03611868,0.041409142,-0.629543,-0.32744217,-0.7799372,-0.47526708,0.3881676,0.2576712,-0.06627732,-0.48254058,-0.037439518,0.043173738,0.004113657,-0.1431626,-0.4981038,0.46737447,0.028489266,0.3069179,-0.008852388,-0.7705884,0.054222137,0.20062146,-0.25096318,-0.6362084,0.5269076,-0.112063035,0.78648996,0.12386073,0.12572026,0.33955485,-0.3952226,-0.016974406,-0.28465262,-0.2629289,-0.7537752,0.07553579,658 +498,0.4522025,-0.3225005,-0.48411602,-0.03953133,-0.3534324,-0.07896836,-0.211694,0.579534,0.2984357,-0.24837674,-0.20631203,0.040505987,-0.15504734,0.107352726,-0.118077815,-0.38469014,-0.0822137,0.27135095,-0.6037665,0.63038105,-0.32656148,0.20244156,-0.10620041,0.35297638,0.41858917,0.23124883,-0.25285524,0.20786284,-0.018725498,-0.30565247,0.01560235,0.16508974,-0.5571799,0.18917295,-0.27441874,-0.3846678,-0.2640309,-0.5773322,-0.47063637,-0.8687592,0.46646705,-0.8108011,0.58679855,0.015383222,-0.34129474,0.20073898,0.10397436,0.43087727,-0.12272789,-0.12902968,0.32419902,-0.10884929,-0.19405968,-0.19298604,0.023696383,-0.16431181,-0.53339696,-0.11220609,-0.282866,-0.032327328,-0.3338017,0.20087552,-0.2817308,0.051539056,-0.11613309,0.5100765,-0.41410998,0.27530304,0.18767749,0.03544852,0.21645178,-0.7711506,-0.15140447,-0.12455101,0.3634789,-0.0321241,-0.3902862,0.27395743,0.28503218,0.36177167,-0.14207225,-0.14190896,-0.122113325,0.14863743,0.057577837,0.4361741,-0.30097088,-0.2323188,-0.08725593,0.011676124,0.40376708,0.17262968,0.15842845,-0.16011152,-0.13911511,0.010766958,-0.17072341,0.44151777,0.50096995,-0.20407328,-0.056522667,0.34091827,0.5363818,0.40064922,-0.15329458,-0.030603766,0.014032823,-0.54059505,-0.18844786,-0.0070390278,-0.25157052,0.37042183,-0.11956112,0.18037298,0.51924837,0.002896126,-0.24290507,0.30117318,0.27171543,0.008813143,-0.25107625,-0.60333264,0.26861855,-0.60227126,0.21432681,-0.14275554,0.56505173,0.11392788,-0.7600253,0.33930573,-0.59430367,0.124977835,-0.1009435,0.33987752,0.8943793,0.56195545,0.32630095,0.7583422,-0.30989847,0.043012314,-0.06973253,-0.05702121,0.1464102,-0.25224152,0.0037115514,-0.5272476,-0.09303325,-0.32393909,-0.22438218,0.19243959,0.42497966,-0.53974974,-0.1738035,0.06487463,0.83121544,-0.20161971,0.09182117,0.8876731,1.0492421,1.0362542,0.10042113,1.001942,0.020347267,-0.25252983,0.060878847,-0.14970131,-0.6410231,0.3324737,0.34140554,-0.17470108,0.12124415,0.123639226,-0.018202368,0.4019942,-0.4697455,-0.018773092,-0.18306334,0.18293646,0.19775088,-0.16856588,-0.27761745,-0.35206518,-0.11638194,0.20211805,-0.06960089,0.26689067,-0.26784176,0.3382309,0.16977988,1.5202495,-0.079765,-0.061677456,0.084769234,0.38709736,0.29487744,-0.34946376,-0.1533368,0.21311322,0.43959507,0.07266478,-0.5499507,0.14249717,-0.17800139,-0.17753664,-0.14520323,-0.17820962,-0.19324872,-0.012129791,-0.4259055,-0.30222204,-0.16581628,-0.20522778,0.42742178,-2.6914213,-0.25120932,-0.009863517,0.45789385,-0.06336417,-0.4005701,-0.057192173,-0.4645569,0.50900036,0.22663502,0.46924216,-0.6430748,0.46333104,0.45270994,-0.8190948,-0.014550449,-0.52183837,-0.25581393,0.14331138,0.16788734,0.050466068,-0.026036408,0.006356039,0.115325436,0.4188837,0.039040525,0.17047942,0.51851094,0.37624064,-0.18445231,0.48566103,-0.08779048,0.54469997,-0.25492224,-0.3029608,0.33083695,-0.35616717,0.17568953,-0.17572705,0.06653459,0.6196526,-0.5484597,-0.78673786,-0.739456,0.096792236,1.2682978,-0.09795565,-0.4161189,0.23088802,-0.7745672,-0.41562504,-0.07558741,0.528772,-0.05812806,-0.25369087,-0.8755881,-0.11032367,-0.036098067,0.18820919,0.018569613,-0.3065459,-0.5007287,0.7864168,-0.0044871527,0.58878344,0.37173352,0.059782457,-0.29266003,-0.28328013,0.020563092,0.78347653,0.5665904,0.09306584,-0.2644177,-0.027107498,-0.47718024,-0.020741556,0.060934056,0.59108275,0.38034704,-0.1419753,0.15517153,0.25421283,-0.082504585,0.040974915,-0.2885874,-0.32315448,-0.16182272,0.06756146,0.5419639,0.7023944,-0.044823747,0.35606536,0.09368568,0.19266447,0.030241536,-0.5527215,0.4798462,1.1069268,-0.14910187,-0.41935137,0.47293326,0.3709764,-0.14720918,0.39531666,-0.3580783,-0.16330314,0.33019462,-0.07240959,-0.41270855,0.24844837,-0.34916994,0.16427647,-0.54648507,0.33898386,-0.5598914,-0.69440156,-0.60284805,-0.03179097,-2.2831633,0.30844346,-0.2706519,-0.14572932,-0.2830213,-0.21821825,0.23617855,-0.6024439,-0.7130418,0.15450695,0.1086448,0.86353046,-0.1723034,-0.18743153,-0.05225834,-0.518104,-0.3693664,0.10448204,0.28063613,0.374108,-0.0049719713,-0.30305895,-0.176565,0.01728183,-0.35072595,-0.107707635,-0.6861498,-0.39650536,0.01952525,-0.5283419,-0.3442518,0.60185903,-0.21405326,0.082908,-0.1474723,-0.07840687,0.015345693,0.2536568,0.029075444,0.24151538,0.010028579,-0.20054701,0.065491445,-0.14451127,0.20500152,-0.022765378,0.16706535,0.044238295,-0.060746882,0.4029964,0.50405246,0.82565266,-0.20085771,1.0736909,0.5266953,-0.21272793,0.18607844,-0.30064994,-0.439199,-0.47716603,-0.06029958,0.1677609,-0.37502432,-0.24893704,0.08384893,-0.48862463,-0.857696,0.5237303,-0.020342799,-0.004733469,0.1515105,0.18540847,0.55174977,-0.08841138,-0.010623345,-0.11362792,-0.18760882,-0.49745736,-0.07012864,-0.6351227,-0.39672938,-0.09790389,1.1813815,-0.3594621,0.2967603,0.22030608,-0.30150196,0.19870266,0.18459556,-0.11570297,0.12943909,0.45039526,-0.20518239,-0.55280364,0.14720885,-0.064401664,-0.16271432,-0.72221977,0.43862417,0.5851897,-0.5630556,0.6710325,0.306588,-0.11873169,-0.43927607,-0.5645633,-0.061117392,0.03905081,-0.29256466,0.5220094,0.36514595,-0.7513312,0.36196062,0.50885457,-0.1973755,-0.72692615,0.5352723,-0.12833177,-0.3485205,-0.20845146,0.30013993,0.13126434,0.005303949,0.002920964,0.439949,-0.3666688,0.3237881,-0.03877492,-0.22569628,-0.11512055,-0.3054509,-0.086988054,-0.77062756,0.12297119,-0.5009595,-0.2971322,0.28838545,0.08041472,0.1575798,0.16166021,0.38934496,0.41332754,-0.236747,0.11124214,-0.3026827,-0.41005874,0.29134914,0.47369653,0.521374,-0.3126721,0.4959657,0.028432403,-0.19893003,0.0051850253,0.09243237,0.4092601,-0.09210886,0.50554407,-0.040372092,-0.07548534,0.1599956,0.8040911,0.09954802,0.39166158,-0.087399065,-0.06124721,-0.040847298,0.043650407,0.34489283,-0.1962284,-0.5694624,0.15190645,-0.20090532,0.053871598,0.5639784,0.20423087,0.010310367,-0.13181768,-0.526035,-0.1899999,0.1322963,0.06729599,-1.4963036,0.57301337,0.21562526,0.9001403,0.486309,0.09850273,-0.06766875,0.8103296,0.0091922,0.051943924,0.31978327,0.06837993,-0.38050726,0.35528135,-0.84694576,0.50156826,0.06380362,-0.046649806,0.10390629,-0.1398187,0.45651856,0.624024,-0.17565851,0.012664384,-0.037674945,-0.3910772,0.18463203,-0.36191374,-0.06272227,-0.6429101,-0.35092688,0.81952965,0.5588908,0.40440908,-0.32360095,0.1176335,0.021708706,-0.21593639,0.1824895,0.08480139,-0.00085003034,-0.023680832,-0.59851116,0.093545556,0.36587572,-0.23308858,0.12627468,-0.108406626,-0.08114646,0.29555327,-0.11808242,0.13817887,-0.15988632,-0.84487087,0.048764106,-0.5064357,-0.27578303,0.37568164,0.046057433,0.08872356,0.24567904,0.14478667,-0.0637802,0.55592155,-0.06850543,0.6451683,0.007458295,-0.015445486,-0.2357724,0.2944745,-0.06165075,-0.051253352,0.040883042,-0.3223238,0.14055972,-0.6334561,0.4560984,0.00786206,-0.32422787,0.17613962,0.027093198,0.08890573,0.47698313,-0.26971984,-0.19881253,-0.15690853,-0.116641246,-0.2641494,-0.5099432,-0.053713262,0.15049978,0.2187008,0.23289572,-0.19344752,-0.08899029,-0.21802525,0.58690137,0.034525488,0.6035862,0.40608266,0.14686649,-0.283008,-0.10151529,0.17116608,0.5219559,-0.09795232,-0.25036666,-0.49879727,-0.4074044,-0.3589592,0.35626724,-0.0029476646,0.45592508,0.05344855,-0.028442856,0.7503063,-0.10208394,0.9756785,-0.112131014,-0.313838,0.11234711,0.5879634,-0.18865336,-0.25891918,-0.22426854,0.6439414,0.53849,-0.103552565,0.057905786,-0.3697072,-0.031237999,0.10837494,-0.21615602,0.05259096,0.013925778,-0.6186386,-0.19939265,0.13248947,0.29905367,0.16436405,-0.20124845,0.10029181,0.4225015,-0.08403628,-0.12954418,-0.44743937,-0.22394717,0.30687985,0.2361659,-0.028707614,0.11449047,-0.635828,0.2984679,-0.37563664,0.076886095,-0.18027963,0.15308593,-0.16978523,-0.26993456,0.21387397,0.024141014,0.18315127,-0.34417632,-0.18858679,-0.17212489,0.40008074,0.19749942,0.14354381,0.45370656,-0.32109162,0.054744035,0.0935251,0.49176183,0.6197691,-0.20039351,-0.13810702,0.25184235,-0.4155963,-0.47695985,0.2165068,-0.26028043,0.047566168,0.22355005,0.025720222,-0.55200356,0.26910764,0.20296507,0.1454445,-0.06400337,-0.9247961,-0.18304019,0.22419818,-0.21979967,-0.04810571,-0.3369208,0.008964418,0.49118346,-0.18842462,-0.38978818,0.026679652,0.22286426,-0.06785629,-0.47186875,0.118927,-0.53921235,0.23761807,-0.08797675,-0.28624824,-0.18061733,0.018931776,-0.48092517,0.09893944,-0.042391803,-0.3469331,0.019584553,-0.258529,0.018676251,0.88371605,-0.30700523,0.20349921,-0.23989333,-0.48681346,-0.6116801,-0.20243904,0.3615763,0.23673317,-0.020660264,-0.8881801,0.0020542017,-0.09620913,-0.22437988,-0.09809283,-0.3724555,0.50967515,0.0878468,0.4981268,-0.1549281,-0.75344235,0.31231713,0.08886891,-0.27035603,-0.40217468,0.5050569,0.05662256,0.7964676,0.046975434,0.1631255,-0.028208688,-0.39898673,0.01822411,-0.19086708,-0.20436883,-0.5772887,-0.036481645,661 +499,0.42169315,-0.33026767,-0.49008515,-0.07091745,-0.1860216,0.16126274,-0.18024898,0.49324378,0.28675112,-0.4326051,-0.08366188,-0.08637757,-0.001992049,0.37116656,-0.08057023,-0.34839326,-0.03363943,-0.0022446609,-0.51066923,0.58789825,-0.37323448,0.1537373,-0.2367973,0.57840717,0.24141778,0.24603339,0.017791795,0.13253325,0.025521645,-0.2975249,0.24151847,0.28683478,-0.46717077,0.47556916,-0.22027552,-0.25718087,-0.076879136,-0.26609212,-0.5101737,-0.7148227,0.30754852,-0.7844537,0.30978337,-0.056691978,-0.27717444,0.19772415,-0.013153626,-0.025426975,-0.20540403,-0.29101378,0.032405183,-0.21375667,-0.06828366,-0.2753288,-0.17480513,-0.400359,-0.49358752,-0.09737295,-0.30541563,-0.07298924,-0.38349548,0.08650792,-0.3556936,-0.00058976666,-0.10300732,0.58489865,-0.35956007,0.24341688,0.25970614,-0.28624636,0.12045425,-0.68499976,-0.36111116,-0.114136815,0.06248545,0.23258291,-0.34291023,0.4525164,0.09683543,0.17952535,-0.011650451,-0.110446975,-0.26500803,-0.17821862,0.3750012,0.36692095,0.032731745,-0.407496,-0.14353131,-0.10444225,0.122972675,0.19248211,0.33137083,-0.31998628,-0.11960877,0.04012365,-0.22844112,0.4325505,0.5705751,-0.09263756,-0.18550876,0.19496202,0.38580889,0.30304447,-0.3037734,-0.09900709,-0.026534306,-0.4469625,-0.09176029,-0.033032715,-0.08305425,0.5009437,-0.1266085,0.33866334,0.5936451,-0.27530536,-0.10522993,0.08849023,0.17887037,-0.23338504,-0.44023886,-0.21196547,0.16635032,-0.41035444,0.17993757,-0.13240603,0.7830237,0.18912645,-0.47208452,0.43101773,-0.38458315,0.070973046,-0.06584635,0.48024133,0.616407,0.34286115,0.37710217,0.6194396,-0.3015589,0.0074984008,-0.19597742,-0.14575608,-0.050908208,-0.3606925,0.18816996,-0.40777335,-0.029164374,-0.06669115,-0.10408229,0.0614711,0.42520306,-0.34344083,-0.14461394,0.1855713,0.7484937,-0.21360111,0.11316652,0.71272427,1.2114525,1.1269833,0.12281137,1.1145271,0.085619695,-0.19165698,-0.020379987,0.12989476,-0.7959897,0.26534376,0.27582327,0.44268042,0.15023175,-0.025899382,-0.001597826,0.33689752,-0.43352133,-0.03131897,-0.058528204,0.61102116,0.23999548,-0.07270614,-0.29294044,-0.3021452,-0.10785474,-0.09899039,-0.07991546,0.2655186,-0.105390206,0.5149452,0.1511172,1.357962,-0.098192744,-0.029083248,0.14446715,0.6076932,0.23437534,-0.28840327,0.11584175,0.2996162,0.14774312,-0.01416786,-0.5628311,0.24178596,-0.273091,-0.4763504,-0.09775664,-0.4019689,-0.1955773,0.0991055,-0.26875028,-0.2946259,-0.0376529,-0.23581786,0.38791534,-2.9284875,-0.1245048,-0.1033488,0.38212132,-0.16684332,-0.16149278,0.006402456,-0.52405757,0.38455233,0.20303905,0.43724027,-0.48214787,0.079871014,0.6139202,-0.6118521,-0.054428406,-0.37333253,0.017978575,-0.034686323,0.47094855,-0.0847566,0.11759595,-0.21544047,-0.0121582495,0.584359,0.13073315,0.23032464,0.38161018,0.15148146,-0.35718516,0.46091977,-0.120497115,0.43879077,-0.451632,-0.022302667,0.31240293,-0.42098427,0.41129318,-0.29272828,0.1596119,0.6441569,-0.31186262,-0.5810669,-0.63682616,-0.06838477,1.2183529,-0.104527555,-0.67102754,0.23701546,-0.66760856,-0.16498078,-0.15387313,0.49553064,-0.09960236,-0.12728898,-0.5770501,0.059451055,-0.03346328,0.15639438,-0.088993974,-0.1275821,-0.25628188,0.6534795,0.09745487,0.48212576,0.21228337,0.10002543,-0.2251699,-0.3292558,0.11361127,0.53099436,0.43407035,0.15169981,-0.43464676,-0.18967636,-0.21442835,-0.19963673,0.112078734,0.68302286,0.39672205,-0.15972002,0.23127578,0.2414732,-0.089890294,-0.003642823,-0.2519375,-0.12306353,-0.19098568,0.096704364,0.60210556,0.8564688,-0.007200505,0.23597011,0.003792682,0.26714966,-0.058443844,-0.48806527,0.5080352,0.84871674,-0.16757798,-0.27689394,0.46527857,0.4765303,-0.38500255,0.3305528,-0.43252835,-0.2922061,0.56460315,-0.14335768,-0.477037,0.016077233,-0.27610168,0.1318035,-0.47538868,0.21806654,-0.55226123,-0.67444813,-0.48977193,-0.15865202,-2.4647086,0.1426123,-0.27420488,-0.19029878,-0.22602119,-0.22015585,0.24298951,-0.34227067,-0.5311671,0.21374328,0.11288302,0.7338163,-0.16716501,-0.08098977,-0.37713936,-0.44717202,-0.32750422,0.109791696,0.14076169,0.3818646,-0.13445564,-0.2795673,0.041076858,-0.010701383,-0.32904407,0.11288402,-0.37863678,-0.5100232,-0.12724943,-0.3732105,-0.39713582,0.5885855,-0.03522052,-0.005488168,-0.15531383,0.009387776,-0.10299023,0.08971398,0.005189717,0.17310724,0.08541752,-0.12229623,-0.04975428,-0.32257834,0.28867558,0.0021347941,0.30777007,0.40673146,-0.059896696,0.08994488,0.39642286,0.54214674,-0.14904077,1.0196854,0.286315,0.08960929,0.3605241,-0.1506319,-0.52684146,-0.5048472,-0.1564995,0.29876462,-0.39722404,-0.33419558,0.093661904,-0.26471657,-0.65176994,0.5825452,0.190395,0.1443385,0.06966103,0.06754751,0.48480123,-0.05632278,-0.06415793,0.17840861,-0.037816636,-0.7476056,-0.41553766,-0.7852414,-0.52271616,0.14364572,0.90296024,-0.23559295,-0.14688277,0.13509431,-0.4352793,0.14657973,0.2861453,-0.108526155,-0.18088634,0.48433542,0.0781622,-0.49059078,0.48361522,-0.017060515,-0.10344065,-0.59935033,0.4946344,0.6264645,-0.7215032,0.6437011,0.18023825,0.09357093,-0.37416396,-0.48994318,-0.12182747,-0.28253016,-0.1675286,0.39370966,0.2755436,-0.95538396,0.31904125,0.17996824,-0.18861924,-0.67043245,0.46872872,-0.1921757,-0.2513258,-0.14465782,0.31301084,0.21365213,0.0057191295,-0.11716584,0.32655033,-0.51825464,0.19249001,0.12361276,-0.08808124,0.218142,-0.19033155,-0.17138597,-0.63955265,-0.012760644,-0.4957885,-0.39388552,0.34081587,-0.063670635,0.04942582,0.2459121,0.31882307,0.28145593,-0.104152165,0.17363313,-0.04550135,-0.35105538,0.45798543,0.42586628,0.62457556,-0.23587319,0.7117465,-0.016911617,0.045094226,0.1574969,0.17763135,0.26107243,0.23630609,0.56543714,0.08091681,-0.2603652,0.05835073,1.161908,0.12954995,0.4108939,-0.021022012,-0.06929435,0.35028264,-0.06859401,0.36184525,-0.12205291,-0.5777024,-0.012851732,-0.44794008,0.09834683,0.3564423,0.20679577,0.25574556,0.03490365,-0.43930206,0.0055323667,0.013335301,-0.01798307,-1.1791672,0.23013684,0.10012187,0.97335833,0.3556984,-0.016293688,-0.1023471,0.73047477,-0.02583612,0.07350625,0.3335347,0.110875435,-0.44321874,0.5097867,-0.6862053,0.56485873,-0.036865063,-0.14304687,0.09764935,0.034220707,0.47387663,0.6424232,-0.2344671,-0.04135465,0.15154208,-0.37052733,0.1510161,-0.49252912,-0.13373451,-0.5446264,-0.39711183,0.5302609,0.64215183,0.44269314,-0.28774428,0.018360982,0.050352726,-0.11394893,0.25357255,-0.06484251,-0.087529846,-0.1468569,-0.5331685,-0.13545622,0.43314114,0.039999362,0.27087355,-0.041806724,-0.18527672,0.18959789,-0.093909405,-0.006784805,-0.06847625,-0.6194808,-0.0068047005,-0.22276889,-0.5426363,0.40006045,-0.14122602,0.25581995,0.37295794,0.0095088435,-0.07157922,0.43284056,-0.018115656,0.84848034,-0.074427366,-0.11998812,-0.49665308,0.016277624,0.11099107,-0.23200762,0.06821607,-0.12578431,-0.13635544,-0.47069263,0.5070845,-0.15777706,-0.2664408,0.028029291,-0.10878669,0.042361405,0.59548265,0.07937725,-0.1609669,-0.054712627,-0.10249963,-0.31757182,-0.2679011,-0.012455523,0.2392041,0.14795105,-0.0021146429,-0.114134856,-0.13582246,0.25418556,0.22182812,0.0009867698,0.20116057,0.3045965,-0.08831365,-0.33143234,-0.1309448,0.23514953,0.61962926,0.08060258,-0.13558482,-0.25303563,-0.5209294,-0.42981437,0.2018001,0.05998842,0.41007975,0.07552157,-0.41527933,0.531799,-0.23908135,0.7881971,0.06294403,-0.24520777,0.2426438,0.53699744,-0.012615676,-0.1095354,-0.31961516,0.5956295,0.2859269,-0.1394117,-0.19702992,-0.34777784,0.11520883,0.20433919,-0.24085243,-0.027448585,-0.0902713,-0.67809343,0.029487815,0.019656433,0.2181329,0.2044151,-0.13340469,0.016332272,0.29428014,0.12935789,0.380647,-0.40027422,-0.170855,0.32621676,0.12566593,-0.022577312,0.15691353,-0.39907643,0.24505033,-0.5448486,0.20183267,-0.15790306,0.09162567,-0.25865665,-0.31534645,0.24662413,0.11534234,0.33052093,-0.40539184,-0.3458705,-0.3642241,0.33113518,0.2564804,0.18087889,0.46607068,-0.15943827,-0.15312947,0.17843221,0.53531104,1.0335253,-0.10411211,-0.009785546,0.20403549,-0.5831521,-0.5995839,0.40143058,-0.24622524,0.22111738,0.1306292,-0.041477878,-0.55605626,0.14601913,0.34144923,-0.025408864,0.20855244,-0.79562604,-0.25970593,0.02025893,-0.49892852,-0.14727004,-0.39663795,-0.17609365,0.33751747,-0.20564573,-0.25934562,0.07725903,0.25946575,-0.18063828,-0.3593056,-0.024768272,-0.37657437,0.34072378,-0.22779639,-0.39064255,-0.15731876,0.05394706,-0.52456105,0.06294747,-0.13953097,-0.40767342,-0.015235119,-0.32665226,0.07894624,0.8136719,-0.3522745,0.19719324,-0.30706483,-0.53670084,-0.6716562,-0.22443482,0.23785134,0.04200548,0.05836239,-0.45677122,-0.17593156,-0.047311597,-0.0074665374,-0.11981189,-0.39465287,0.38208076,0.0065210634,0.30800086,-0.011379762,-0.9077813,0.34119648,0.18230745,-0.02270067,-0.40001342,0.4276002,-0.3369977,0.69803524,0.017342478,-0.10890615,-0.007148516,-0.37962213,0.24509032,-0.19845675,-0.23089422,-0.3180674,0.25068334,662 +500,0.5988131,-0.2992669,-0.56070495,-0.057546575,-0.43808183,0.23618165,-0.2574406,0.1283126,0.25485644,-0.59828454,-0.09109674,-0.21874371,-0.021794932,0.24958622,-0.1674201,-0.70094573,-0.035496622,0.092134185,-0.52678174,0.41912165,-0.64486367,0.22795378,0.22427513,0.49759293,0.13823408,0.20890705,0.3314242,-0.0034966809,-0.30672306,-0.03434985,0.012784536,0.17967607,-0.81029063,0.18442142,-0.18408842,-0.38010174,0.0072857267,-0.626795,-0.21948588,-0.84611064,0.37382984,-1.0856621,0.64357203,0.029102951,-0.29531866,0.043518323,0.061075654,0.10261796,-0.31505117,-0.025702575,0.22376558,-0.47427607,-0.043239795,-0.23890375,-0.3275376,-0.45336366,-0.80203193,0.15001747,-0.51262057,0.084898196,-0.11531484,0.3258893,-0.2991114,0.15207002,-0.23926817,0.47662276,-0.48156455,-0.07107105,0.32347685,-0.1704307,0.1869253,-0.44173092,-0.28203577,-0.2772314,0.09828056,-0.15444529,-0.34828982,0.29208347,0.3282788,0.60839224,0.090066805,-0.45355868,-0.37016144,0.1607323,0.17451404,0.47092178,-0.13039526,-0.2560144,-0.33299908,-0.03887541,0.3974943,0.33814377,0.17266223,-0.2952425,0.11673228,-0.0107902335,-0.14646976,0.5039902,0.5119204,-0.23761864,-0.38983044,0.26296803,0.52788323,-0.05582583,-0.09870863,0.043379147,-0.036806945,-0.65354973,-0.23745322,0.4432602,-0.12781323,0.60916287,-0.19346099,0.13086616,0.7000862,-0.4340238,-0.10568911,-0.13668728,-0.15570772,-0.13296768,-0.34077862,-0.15451299,0.38311523,-0.50221044,0.024446255,-0.3035194,0.571729,0.18737224,-0.84604317,0.41158113,-0.50330126,0.16305923,-0.09386245,0.7362047,0.78810203,0.5176369,0.5344413,0.87001514,-0.5109908,0.06989272,-0.102971315,-0.38994053,0.14362934,-0.28831133,0.1259533,-0.50451165,-0.040366042,-0.15543452,-0.3150058,-0.0048080003,0.6161604,-0.5578438,-0.025581935,-0.007343139,0.5834585,-0.36085573,-0.11431246,0.9476892,1.0862509,1.1179949,0.12111171,1.4832078,0.41968912,-0.11323153,0.139939,-0.1258805,-0.6270491,0.31724572,0.3598082,-0.17526145,0.58380806,0.21466944,-0.022552622,0.40003112,-0.29941484,-0.12339797,-0.11151307,0.085406184,0.011849693,-0.0010782693,-0.54920363,-0.37853718,0.025837127,0.036395304,0.041232653,0.33304682,-0.21043113,0.61576,0.05910015,1.3920307,-0.013305111,0.02845999,-0.04077504,0.38957888,0.07940291,-0.026036415,-0.07443882,0.28914204,0.29599217,0.08374106,-0.51532805,-0.019560214,-0.18296024,-0.4366496,-0.26278043,-0.38973996,0.14424147,-0.36673886,-0.50974905,-0.15334968,-0.03573072,-0.47602144,0.48437077,-2.0085754,-0.26872516,-0.038981464,0.3269128,-0.1888517,-0.44556722,-0.26973283,-0.49834332,0.2020872,0.3709362,0.37936231,-0.7914543,0.40438578,0.32031912,-0.6783878,-0.18479283,-0.8608769,0.04113629,-0.2229011,0.37509695,-0.01794506,-0.3117983,-0.20601876,0.14811647,0.61611855,0.04994138,-0.041423917,0.23107195,0.72633934,0.026669072,0.5686804,0.16567142,0.5219988,-0.3862297,-0.29166827,0.5672096,-0.3785402,0.399908,0.11663276,0.06885858,0.4672654,-0.5357501,-0.92761135,-0.7514067,-0.45835048,1.2731081,-0.3536165,-0.33053848,-0.0084254155,-0.08971447,-0.40901893,-0.030955514,0.44647735,-0.25406423,0.07315426,-0.77412355,-0.14374737,0.112621896,0.20328401,-0.03895716,0.29966798,-0.4285591,0.70989907,-0.09262661,0.3920839,0.445671,0.156877,-0.13701917,-0.5912296,0.23837164,0.85374165,0.32919523,0.22248244,-0.2622879,-0.36191583,-0.0038389883,0.021788256,0.1288249,0.496654,0.7239598,-0.032521073,0.06532581,0.41934425,-0.15868078,0.031863123,-0.18011095,-0.24222696,-0.17083208,0.14886744,0.6816522,0.8949747,-0.27232608,0.28152698,-0.17734924,0.40216365,0.056850344,-0.5215835,0.4602094,1.1339207,-0.1313602,-0.13364947,0.5984779,0.44625473,-0.5493615,0.55980283,-0.70701563,-0.16052093,0.42082554,-0.046539508,-0.42790842,-0.03676205,-0.47403213,0.19545424,-0.9437027,0.43716374,-0.09673839,-0.28594527,-0.65258545,-0.11782842,-3.5082035,0.2675836,-0.18003201,-0.095133305,0.03322341,-0.25319356,0.44176584,-0.6848383,-0.5924707,0.067535,0.00948828,0.51079386,-0.11393152,0.20608819,-0.40842262,-0.28126478,-0.25083318,0.20021084,0.38845035,0.3388931,-0.030222442,-0.42425227,0.15813671,-0.37169275,-0.36573902,-0.08472148,-0.70252264,-0.6751053,-0.16093525,-0.5930972,-0.39286852,0.8173884,-0.23955354,-0.13613364,-0.25360844,0.07324346,-0.067077525,0.39652923,-0.051047813,0.29030666,0.13046287,0.018404113,-0.16335103,-0.16950552,0.2982126,0.10363169,0.13781914,0.50168735,-0.21541527,0.30534586,0.5936723,0.6742319,-0.08951342,0.8169273,0.37154478,-0.036365855,0.28101784,-0.13559689,-0.35846373,-0.85963756,-0.3653892,-0.050793093,-0.53356034,-0.39256597,-0.082783654,-0.37098306,-0.8563374,0.57508075,-0.12869085,0.18359403,-0.14195226,0.40096322,0.5419787,-0.26931205,0.15479909,-0.19827521,-0.26703304,-0.6044838,-0.5057395,-0.7165464,-0.7869565,0.014067845,1.2880529,0.023192933,-0.19323395,0.15232971,-0.2603787,0.20088355,0.21876076,0.013569792,0.16344868,0.5550017,-0.016899915,-0.7081795,0.40423754,-0.012056952,-0.10514365,-0.46320614,0.14873055,0.8857581,-0.6553026,0.7170962,0.5366433,0.20162642,0.13600911,-0.5261007,-0.43682885,0.063595675,-0.18193607,0.64037454,0.29377037,-0.7532752,0.46038622,0.2314863,-0.41028497,-0.75221246,0.44056445,0.024462814,-0.13853589,0.080295615,0.4550527,0.016367793,-0.033662822,-0.29023328,0.21100518,-0.4832078,0.22271511,0.3577812,-0.009008263,0.269559,-0.055960692,-0.26001585,-0.76533085,-0.002593598,-0.45538503,-0.44130966,0.104011044,-0.04890823,0.0517825,0.12234033,0.13419433,0.5051824,-0.40415078,0.09363579,-0.10914055,-0.36005044,0.28729862,0.58546305,0.34615135,-0.51053625,0.6414819,-0.03662173,-0.043238018,-0.14714006,-0.064642034,0.4244075,0.20397247,0.18222864,0.009768222,-0.100142516,0.025258109,0.6660456,0.13624473,0.40973195,0.2284241,-0.1440043,0.46745235,0.15115581,0.3693976,-0.24628186,-0.4258104,-0.056271076,-0.08006541,0.14219089,0.3841949,0.024924984,0.35437074,-0.13580148,-0.11267758,0.18234646,0.12145605,-0.06886523,-1.3054428,0.20104074,0.130872,0.5944051,0.55593026,-0.12115181,0.12895264,0.56477916,-0.5043106,-0.022827953,0.45229214,0.051280856,-0.49546704,0.51757824,-0.5497286,0.4369236,-0.27842718,0.033635348,-0.044719107,0.1233482,0.41157284,0.8438053,-0.18071364,0.08613256,-0.07342205,-0.018730232,0.0684459,-0.38848957,0.14530857,-0.51692647,-0.40089545,0.9223916,0.42253384,0.5331365,-0.27677932,-0.052613102,0.14858375,-0.1561835,0.2946253,-0.07214157,-0.15934785,-0.0051408494,-0.6872001,-0.0132461535,0.6275857,-0.011541277,0.1437401,0.043518133,-0.38924694,0.12403587,-0.1386194,-0.2171341,-0.09682305,-0.8470192,-0.22950517,-0.4801435,-0.46890044,0.31439903,-0.3391814,0.17826332,0.31923214,0.07703434,-0.30182573,0.059981756,0.29809216,0.977557,0.25777146,-0.15198646,-0.3238011,0.1674715,0.39753357,-0.39174977,0.02145433,-0.19219868,0.31784528,-0.46131393,0.612644,-0.20167804,-0.5246112,-0.06256345,-0.028805273,0.06063899,0.6315711,-0.2653059,-0.23616816,0.053100143,-0.016131047,-0.29017773,-0.18138972,-0.35786813,0.22489081,-0.019614348,-0.287376,0.08761843,-0.07909293,-0.020339416,0.5695321,0.22177856,0.21838297,0.31987953,-0.074802145,-0.39135727,0.0558286,0.051439404,0.55099434,0.20161569,-0.35279918,-0.5337184,-0.2591119,-0.15621647,0.3376748,-0.1256507,0.12800412,-0.012712725,-0.44154927,0.9964147,0.062349822,1.277049,-0.07379394,-0.46856856,-0.058898397,0.5058583,0.020014586,0.073374145,-0.42690653,1.0178002,0.52268565,-0.21745296,-0.1887761,-0.51888716,-0.2563271,0.24888954,-0.37981915,-0.11477239,-0.25663728,-0.7445539,-0.1875952,0.21904,0.2707798,0.028967062,-0.182695,0.2908928,0.13243327,0.062195215,0.4574968,-0.4627053,-0.14340138,0.40583357,0.32119754,0.030372858,0.17960282,-0.2867706,0.39890972,-0.61076736,0.1665007,-0.5809946,0.07998593,0.056717556,-0.38237658,0.23988748,0.002294319,0.46487632,-0.36272416,-0.22463386,-0.32767084,0.6824074,0.30471236,0.2800896,0.8114906,-0.2824694,-0.056182522,0.094266824,0.46588913,1.6494664,-0.13861135,0.15822433,0.2853859,-0.22844395,-0.53481305,0.4482501,-0.47376233,0.03535085,-0.26242894,-0.39780882,-0.5995941,0.11246015,0.20387755,0.049509626,-0.04243208,-0.46955967,-0.09436745,0.6011925,-0.28601772,-0.29757762,-0.31754112,0.24137358,0.6671977,-0.22963639,-0.3950463,0.07493105,0.4244642,-0.2473953,-0.44698283,-0.1876667,-0.33127934,0.33340803,0.08286735,-0.2712268,0.025941715,0.18776895,-0.43008876,0.12791799,0.32027844,-0.39885476,0.121096544,-0.24853471,-0.049091,1.0628345,-0.006144907,0.18390147,-0.57765883,-0.5641935,-1.0173441,-0.34857893,0.08183561,0.20957734,0.075968795,-0.45520192,0.007774132,-0.116081,-0.16734432,0.1311101,-0.6535048,0.41705298,0.0141153615,0.55330044,-0.11367994,-0.769033,0.08699714,0.15469006,-0.10774369,-0.4300232,0.46881184,-0.12067227,0.71230423,0.11181196,0.09214976,-0.03737899,-0.5194603,0.3231037,-0.3492566,-0.1743911,-0.73481905,-0.025434738,664 +501,0.43811274,-0.16113122,-0.4365334,-0.04572851,-0.110261016,0.11718805,-0.14043978,0.3401366,0.04547924,-0.6949714,-0.13212545,-0.117753044,-0.012949253,0.30651993,-0.20122957,-0.34022596,0.091119625,0.22347164,-0.56827086,0.50702244,-0.48359624,0.46263072,0.0896424,0.26366428,-0.01380183,0.37413606,-0.028485242,-0.19784032,-0.37484735,-0.20498766,-0.06330573,0.26175857,-0.5112939,0.20267403,-0.14818886,-0.33743665,0.01921445,-0.26763102,-0.29899248,-0.5225983,0.15808184,-0.825449,0.37952498,-0.123648286,-0.19101663,0.31952304,0.08363102,0.25728637,-0.2114699,0.16580105,0.27268493,0.09693565,-0.2530616,-0.26970676,-0.13535604,-0.37300164,-0.4885848,0.100770585,-0.44677347,-0.2278429,-0.17450903,0.10622798,-0.16238284,-0.044002306,-0.09161774,0.29447922,-0.32892153,0.15169215,0.0017085719,-0.155681,0.068169355,-0.64267254,-0.13523033,-0.069480345,0.4264209,-0.35166582,-0.032708876,0.2470332,0.28263196,0.43961215,-0.031201333,0.023684764,-0.44022992,-0.014121384,0.20650302,0.5887419,-0.24662545,-0.45988414,-0.03250333,-0.06075612,0.267667,-0.055208676,0.25975966,-0.33195278,-0.15191916,-0.16395937,-0.33095285,0.38340586,0.39005336,-0.32990643,-0.2881067,0.3444781,0.4271371,0.051766295,-0.21341906,0.013960838,-0.15373981,-0.40937003,-0.01884059,0.11254166,-0.1479797,0.4695497,-0.124151625,0.20706008,0.5305566,-0.30158237,0.1375936,0.23652568,-0.025168981,0.10313968,-0.064049415,-0.19223566,0.09818958,-0.3633612,-0.12257061,-0.19623621,0.52094436,0.16170251,-0.883561,0.2865174,-0.45730537,-0.03885958,-0.02781112,0.4039999,0.4913061,0.34693727,-0.026881555,0.5401779,-0.49932915,-0.009127055,-0.15865834,-0.29269642,0.13298723,-0.09368557,-0.13731728,-0.5037257,-0.0031749776,-0.025177747,-0.1382447,0.01804884,0.41009974,-0.62797177,-0.024215255,0.11922174,0.62773955,-0.4285891,-0.122945786,0.7240916,1.0159768,0.8100244,0.08274407,1.2837937,0.23203312,-0.20875752,0.12718333,-0.41592985,-0.5263699,0.32395005,0.26292428,-0.26514393,0.25912726,0.06715826,0.18058224,0.16213468,-0.27590948,0.10540637,-0.17839554,0.03165963,-0.055344913,-0.12733635,-0.2906011,-0.17064805,-0.038625214,-0.020944307,0.16899712,0.18383367,-0.2760655,0.09317355,0.09015048,1.5515099,0.019103944,0.10394396,-0.0050101555,0.22281218,0.18538909,-0.17906031,-0.15936604,0.37236354,0.2658696,0.09520952,-0.62092924,-0.01980587,-0.24647447,-0.5611397,-0.23884913,-0.18663403,-0.07493706,0.0104345335,-0.4882126,-0.17231046,0.04033613,-0.35935113,0.4466477,-2.5486794,-0.16377541,-0.03455681,0.50199515,-0.31960037,-0.43753186,-0.33673757,-0.3426377,0.33969504,0.18970105,0.5085138,-0.49459043,0.3898254,0.31929424,-0.4511293,-0.32969594,-0.5416579,-0.041435163,-0.12472325,0.26181152,0.011605539,0.017535422,0.2355304,0.0040515703,0.42460886,-0.18687657,0.036569096,0.3307688,0.36448595,0.31636623,0.55484766,0.13728476,0.59226954,-0.2389208,-0.17480986,0.36361626,-0.3836097,0.16698718,-0.058833275,0.164708,0.25498945,-0.5121821,-0.88817966,-0.75516266,-0.18828829,1.1919012,-0.0060919863,-0.41778415,0.12058829,-0.059788067,-0.45447105,-0.021443024,0.35000867,-0.05452622,-3.2948596e-05,-0.9551905,0.0075591677,-0.029937148,0.27492163,0.04430496,-0.03779778,-0.45487896,0.56507725,-0.04341804,0.4144867,0.2865439,0.19127712,-0.338655,-0.40541863,0.120511584,1.1220311,0.34314305,-0.005800686,-0.08242432,-0.24109383,-0.4215295,-0.02437192,0.09414104,0.40187687,0.54254025,0.05251464,-0.010639997,0.09010649,0.08278016,0.24754463,-0.1418456,-0.26986027,-0.22851232,0.023137586,0.5001944,0.36671185,-0.23529203,0.5906417,-0.19391671,0.19694936,-0.11242554,-0.40278944,0.480007,0.945054,-0.16290376,-0.31585222,0.5299075,0.3144706,-0.17376308,0.40931037,-0.57481825,-0.49182415,0.27145544,-0.33896452,-0.14005055,0.30876568,-0.21725686,0.17233346,-0.90148973,0.3056119,-0.45086488,-0.38618806,-0.3566484,-0.123230815,-2.6968334,0.22529784,-0.1445413,-0.16091633,-0.021832364,-0.2259186,0.16416374,-0.6174386,-0.47100827,0.040180944,-0.008926059,0.6018718,-0.06642676,0.15030468,-0.041338604,-0.30733538,-0.1022009,0.26905772,-0.08107466,0.4843156,0.16764177,-0.56647265,-0.0021925655,-0.23514684,-0.2903108,0.18123771,-0.6061449,-0.4844171,-0.11527423,-0.49595633,-0.3477952,0.69270104,-0.45171332,0.025662413,-0.17814317,-0.0920294,-0.082406305,0.2891033,-0.038759854,0.08809711,0.11235053,0.07616981,0.016957697,-0.18839668,0.26626703,0.19148628,0.2780326,0.50828266,-0.21827236,0.06882167,0.44368276,0.54860544,-0.16687116,0.68008566,0.53683704,-0.18159679,0.30485842,-0.37472656,-0.087400675,-0.5128728,-0.40026593,-0.09312398,-0.47344396,-0.5086085,-0.09390414,-0.3719017,-0.76327294,0.54447407,-0.05587104,-0.11975308,-0.06441065,0.42437455,0.3881008,-0.06838677,0.08640714,-0.24784403,-0.13215268,-0.42549235,-0.41284537,-0.56176895,-0.33147785,-0.06265847,1.0328449,-0.24224956,0.081609435,-0.0010830483,-0.17371762,0.062790774,0.02486276,0.0248186,0.1864943,0.37329802,-0.12466617,-0.5683344,0.425054,-0.20669106,-0.15265583,-0.26323986,0.24024704,0.6833766,-0.62176603,0.48627773,0.41450223,0.047112074,0.074152246,-0.37179136,-0.12195347,0.12283244,-0.35680518,0.29182014,0.13963978,-0.7510077,0.37946072,0.24769425,-0.2792661,-0.76121247,0.509696,0.16145328,-0.2911753,-0.15470569,0.36208317,0.17431918,0.05412933,-0.5404576,0.17960414,-0.4628098,0.33225006,0.24950425,-0.0736608,0.3871998,-0.33440334,-0.2430032,-0.7480609,-0.041528516,-0.22965407,-0.27660555,0.16865878,0.12581824,0.07924756,0.25320354,0.1612541,0.4028341,-0.46245617,0.031729065,-0.048314814,-0.08114467,0.18178459,0.27314675,0.42630932,-0.45885938,0.34788814,-0.009942191,-0.14337622,-0.13453443,0.032921463,0.5903614,0.09097302,0.047624532,0.13625863,-0.19687144,0.37210158,0.6965814,0.21954681,0.37428877,0.024888124,-0.32015395,0.09362449,0.06694683,0.20713006,-0.037206206,-0.45454976,0.025696678,0.06569309,0.2079192,0.4952669,0.14406754,0.26459107,-0.17256072,-0.28115737,0.054994125,0.2697688,0.08992241,-1.0530984,0.5076088,0.015021967,0.6658986,0.566571,-0.008076497,0.10873254,0.43809947,-0.324212,0.11661172,0.25740436,-0.20693152,-0.47725812,0.33281723,-0.499499,0.34720114,0.011435283,0.1342539,0.079911366,-0.14541745,0.4230216,0.9980665,-0.010309928,0.28811556,0.010229371,-0.26693416,0.093326345,-0.2898516,0.12649642,-0.3633726,-0.08494997,0.77150536,0.51228446,0.35396686,-0.07079581,0.024814382,0.18976043,-0.11895956,0.22515342,0.09497885,0.34579185,0.040756874,-0.61933595,0.016764581,0.6209195,-0.0023015738,0.05573221,0.18012328,-0.30372146,0.35635218,-0.16226153,-0.003474125,-0.07705455,-0.6549748,-0.21975414,-0.33126396,-0.10368776,0.22061452,-0.1790355,0.21608326,0.19778883,0.035415392,-0.16099481,0.40828842,0.27354935,0.593502,-0.01452692,-0.15397283,-0.2885146,0.22108372,0.20215736,-0.1920412,0.0659752,-0.14040732,0.015212859,-0.58385605,0.34217376,0.018385742,-0.17270438,0.011067867,-0.00054481626,0.09439675,0.46344608,-0.1341054,-0.13139598,0.16000311,0.035662033,-0.15170582,-0.13784015,-0.2154472,0.14505677,0.44547477,-0.06769505,-0.10879996,-0.030235102,-0.10345018,0.40797153,0.023500783,0.45462894,0.2625365,0.1604787,-0.33124948,0.07729893,0.27103838,0.38387516,0.007828818,0.122187935,-0.23286942,-0.3718112,-0.30544624,0.15263061,-0.11023682,0.12274443,0.106323294,-0.24406183,0.7032212,0.19480035,1.1957588,0.025208162,-0.2524651,0.19045602,0.28933483,0.06063957,0.10212765,-0.359022,1.1462734,0.5636313,0.08445173,-0.089442715,-0.33707884,-0.29351547,0.04303823,-0.29385707,-0.19915204,0.02375744,-0.5554171,-0.543546,0.20252533,0.2307446,-0.07255022,-0.13202791,0.16360155,0.20889182,0.06930296,0.17313473,-0.72392505,-0.3227477,0.20636247,0.36503968,-0.010813385,0.07119517,-0.4355821,0.4843885,-0.65247357,0.07521016,-0.10289525,0.13192482,-0.06393957,-0.20128967,0.1289284,0.18040405,0.29849234,-0.25684634,-0.49624267,-0.33062193,0.51340955,-0.16480921,0.040284373,0.58901256,-0.32463616,0.13904342,-0.0002870134,0.47305706,1.0199975,-0.15705822,0.048199926,0.47318098,-0.27318177,-0.5146314,0.17191733,-0.2403322,0.16276108,-0.10626149,-0.1890424,-0.43973836,0.2972608,0.14085382,0.10912951,-0.053733606,-0.41952282,-0.20720689,0.48335716,-0.31857798,-0.100119345,-0.19478798,0.14963461,0.6721562,-0.42775694,-0.38988656,0.098908305,0.1766685,-0.25196567,-0.50732845,-0.07312774,-0.36343843,0.27760166,0.24112256,-0.2057736,-0.16039911,0.114781454,-0.27394977,0.32245082,0.31819418,-0.18619642,0.084828146,-0.35465524,-0.012719868,0.7688631,-0.15562762,0.22616327,-0.4130213,-0.51226574,-0.87325805,-0.37234452,0.28161627,0.16752839,-0.091420054,-0.6261521,-0.010244949,-0.1878896,-0.25280714,0.0917141,-0.23785326,0.43170205,0.14814864,0.31022403,-0.285994,-0.9547773,0.17659007,0.17100157,-0.14826925,-0.56956685,0.48692444,0.032743085,0.88234043,0.10538031,-0.021024337,0.46041462,-0.60207015,-0.050128702,-0.23139346,0.012577559,-0.7074656,-0.018559847,669 +502,0.33746797,0.056697436,-0.4285644,-0.23925766,-0.5903249,0.020161513,-0.08512008,0.26389748,0.34460548,-0.14498186,-0.14979674,-0.07885109,-0.1366953,0.46346518,-0.36521548,-0.91455185,0.079293735,0.052329723,-0.42212814,0.52705145,-0.48448086,0.39544085,0.20065813,0.42493322,0.15976128,0.2908485,0.18140586,0.03403812,-0.06810611,-0.3067484,-0.19943188,0.26193336,-0.49535057,0.36879364,-0.064717755,-0.34407642,0.04240545,-0.26014423,-0.2522268,-0.60008484,0.31186405,-0.6867228,0.49739346,0.049478088,-0.3526179,-0.16150382,0.313288,0.1759889,-0.16719398,-0.13251017,0.18407904,-0.32171613,-0.07660735,-0.13473013,-0.39628592,-0.6447005,-0.6435012,0.05461363,-0.55886173,-0.13639781,-0.31381533,0.33168644,-0.19886716,-0.11510007,-0.06754832,0.4524217,-0.33528614,-0.080958076,0.31374192,-0.24688934,0.08993871,-0.57493293,-0.263681,0.0029670724,0.20840864,0.20015487,-0.2788773,0.3692817,0.37168318,0.37449142,0.07049433,-0.40123633,-0.25448963,-0.19667657,0.07909571,0.39090803,-0.27628234,-0.24776639,-0.30716133,0.016262028,0.4857343,0.26448783,0.17996074,-0.18198733,0.0043012714,-0.06485508,-0.14778624,0.3875793,0.43154627,-0.37152356,-0.10626396,0.2413209,0.21196182,0.1303952,-0.2558248,0.14712961,-0.17434669,-0.51358175,-0.19895561,0.05223844,-0.111302204,0.5338147,-0.101662144,0.105387755,0.7221308,0.02272289,-0.011420838,-0.015688866,-0.06460675,0.099897146,-0.30462962,-0.025092473,0.24360202,-0.4481895,-0.033859137,-0.12317287,0.7141573,-0.022085335,-0.8065594,0.243763,-0.44464442,0.16180946,0.015270404,0.61707497,0.7550488,0.46853128,0.19278547,0.88676834,-0.40389872,0.03657312,-0.058848433,-0.16342852,0.16678748,-0.17745006,0.038381346,-0.52020127,0.097175665,0.070194155,0.029381713,0.17158867,0.22259423,-0.45493788,-0.037029635,0.116085395,0.7525846,-0.26976356,-0.06552716,0.8546615,1.2420963,0.9135219,0.03146747,1.1979243,0.21094747,-0.0805304,-0.11801724,-0.13755953,-0.3104479,0.19601037,0.41436702,-0.06893333,0.43520293,0.070776924,-0.03997552,0.44340482,-0.10416593,-0.22504663,-0.025725726,0.37768152,0.011384637,-0.072340526,-0.66422325,-0.2776593,0.13425039,0.0956097,0.04561231,0.28632194,-0.25753906,0.44970068,-0.039821625,1.0281154,0.10783798,0.13268718,0.12887278,0.4125319,0.2227508,-0.13645752,0.12182988,0.2876556,0.031078683,0.10388357,-0.36307818,0.07925933,-0.36373347,-0.47225356,-0.12418043,-0.3920901,-0.1306595,-0.093701705,-0.34330466,-0.15508258,-0.025616646,-0.29804358,0.48566338,-2.5186696,-0.066678576,-0.21497594,0.25564054,-0.12204138,-0.31375942,-0.08721707,-0.28360334,0.42340496,0.36286497,0.37472534,-0.43582377,0.26573882,0.3427274,-0.48875874,-0.20130774,-0.48254848,0.114688024,-0.043556206,0.5037908,-0.03889999,-0.22297536,-0.15630887,0.30085474,0.7532129,0.08764868,0.028389396,0.21371447,0.34227318,-0.27844244,0.42067796,-0.00032961793,0.58492917,-0.17482163,-0.20494021,0.27591679,-0.51611763,0.5534872,0.12768319,0.23465285,0.37446856,-0.42803216,-0.80018455,-0.48807845,-0.36990476,1.2334032,-0.24651249,-0.5492699,0.27647513,-0.06696444,-0.23574074,0.022400836,0.46498778,-0.08686755,0.29768386,-0.5107091,0.07566489,-0.20561025,0.2551084,-0.14917208,0.026996106,-0.34747306,0.75916386,-0.20139481,0.36184898,0.27965266,0.2587859,-0.39251813,-0.46248785,-0.00062117405,0.8820157,0.5897856,0.0011616817,-0.01449268,-0.24686338,-0.07247208,-0.28343892,0.24369271,0.7684722,0.6689487,-0.028470367,0.01776134,0.29669803,-0.1771908,-0.05927995,0.022606883,-0.25295645,-0.028330097,0.1479921,0.7381468,0.6788314,-0.09126059,0.38137606,0.038377967,0.41547376,-0.25646842,-0.5258856,0.36826798,0.86171156,-0.14980848,-0.2617584,0.8748049,0.4735578,-0.18975875,0.28562975,-0.50563365,-0.39386755,0.6048236,0.0069449884,-0.49674922,0.039102547,-0.39021352,-0.03532421,-0.7983923,0.3727159,-0.110652864,-0.7619904,-0.5558642,-0.15601192,-3.2972407,0.1681031,-0.27336723,0.029066894,-0.13068528,-0.1534277,0.36525846,-0.706623,-0.5163268,-0.02005891,0.11188401,0.5331453,-0.18172576,0.14188318,-0.19357589,-0.32742268,-0.05818977,0.43740278,0.05760299,0.23586027,-0.21566309,-0.15058982,0.023377316,-0.3022321,-0.6303316,0.036283366,-0.6506597,-0.729674,-0.21439394,-0.46884826,-0.11143189,0.84903634,-0.58449554,-0.06405207,-0.31696215,-0.026369479,-0.09493601,0.17931613,0.2604839,0.3296097,0.19660306,0.053735085,-0.15075372,-0.38339362,0.16012652,0.119295515,0.5658425,0.46575123,-0.11259598,0.25933078,0.48949122,0.6271392,-0.11027576,0.73129666,0.1185903,-0.0894347,0.28396723,-0.20705141,-0.42629114,-0.6871347,-0.3799279,-0.03394482,-0.38887522,-0.3335246,-0.21169575,-0.38522062,-0.8304677,0.57918125,0.12357118,0.12994401,-0.41480353,0.21263643,0.3944376,-0.32134268,-0.09994054,-0.059112128,-0.18283723,-0.645781,-0.40129778,-0.6409355,-0.66283196,-0.05716935,1.1137425,-0.05721413,-0.11162109,0.09545263,-0.33919355,0.03663728,-0.012447314,0.18139544,-0.057038333,0.1835015,0.025290677,-0.75006866,0.60714626,-0.21669292,0.007195511,-0.4862915,0.14789245,0.71897507,-0.44122034,0.60175765,0.48551604,0.39052418,0.0125601245,-0.6634955,-0.33902413,0.051779747,-0.22241199,0.6066739,0.30665687,-0.625621,0.50584495,0.14262639,-0.1643522,-0.57932806,0.3724994,-0.1464694,-0.16064975,0.09635686,0.38582513,0.11340018,-0.066279694,0.0113713145,0.3307608,-0.48654127,0.20990641,0.41975638,-0.00928121,0.3062036,-0.043603636,-0.27676737,-0.7697458,0.08429607,-0.42456654,-0.2770482,0.0699525,0.030893052,-0.16175544,0.09374856,-0.024266055,0.41968852,-0.3431253,0.30463454,-0.18204758,-0.36214325,0.37401482,0.6475478,0.45126715,-0.5172917,0.5340859,0.18654363,0.06993761,-0.122361064,0.12285026,0.4751399,0.17712593,0.28330112,-0.19497715,-0.012479348,0.0686715,0.6060991,0.08899815,0.3007526,0.1622198,-0.11688489,0.43676415,0.00020870566,0.046800874,0.040898733,-0.49855325,0.017228002,-0.15447637,0.079761796,0.37104908,0.13347627,0.36754078,-0.0009015926,-0.111248076,0.2427757,0.030907746,-0.0071847057,-1.3838586,0.4497432,0.13681887,0.8019248,0.4179022,0.18534152,-0.2116876,0.66874564,-0.23965272,-0.07706713,0.45305473,0.14387532,-0.21364713,0.6114849,-0.67717904,0.38504145,-0.29681012,-0.109009966,0.116804905,0.16454902,0.3924515,0.80779344,-0.2266028,0.112838104,-0.11247236,-0.24855475,0.027744263,-0.36145067,0.26457468,-0.35082617,-0.5305446,0.62616074,0.17812137,0.40988848,-0.34517065,-0.0052751983,0.20987906,-0.20938015,0.18272927,-0.11820065,-0.11269791,-0.14407538,-0.49699932,-0.42932886,0.54040545,-0.24099824,0.05327305,0.07097836,-0.20124064,0.067835145,0.019103298,-0.20566998,0.060754802,-0.6360494,0.00227264,-0.41333655,-0.6708646,0.34645638,-0.6274948,0.19309212,0.13076918,0.059314694,-0.1380311,0.23423402,0.24305058,0.77107,0.09579694,-0.13435028,-0.15620455,-0.06303508,0.121335484,-0.28105745,-0.0935699,-0.33450332,0.29238662,-0.6002428,0.55841786,-0.34915528,-0.24875002,-0.13345765,-0.12584163,0.03678279,0.16898474,-0.30620793,-0.21279188,0.10229671,-0.017366653,-0.1275305,-0.0871004,-0.2837357,0.31183863,-0.12974533,-0.14102098,0.13274753,-0.13283165,-0.109786086,0.15860991,-0.0264729,0.28491458,0.22948885,-0.18633212,-0.2920021,0.09555389,-0.05761424,0.34426388,0.048409052,0.014480948,-0.2977375,-0.32457498,-0.33302802,0.38818425,-0.09326086,0.15840377,0.06623516,-0.39875096,0.8406442,0.046868075,1.2885851,0.013869093,-0.50262314,0.03693186,0.47820452,-0.16091429,0.14195606,-0.25685564,1.0902132,0.5872722,-0.24413228,-0.09223025,-0.4906756,-0.04171447,0.4096827,-0.30299383,-0.29689154,-0.10905414,-0.6638068,-0.20134766,0.07816265,0.22578993,0.0052257,-0.07839232,-0.18113841,0.19626144,0.16984311,0.39130405,-0.42969173,-0.06859492,0.44554538,0.27924007,-0.012489651,0.12765788,-0.25195262,0.38708276,-0.6862221,0.2897728,-0.4735641,0.09038092,-0.1544557,-0.4068283,0.1862262,-0.13676919,0.45139512,-0.27716127,-0.14272052,-0.1308757,0.59649915,0.1818894,0.1682862,0.5990036,-0.29943022,-0.15510663,0.051951595,0.47618356,1.4761783,-0.21341547,0.012148527,0.114128776,-0.38165173,-0.44956014,0.14682534,-0.49676487,-0.22834863,-0.17022362,-0.48734304,-0.3027986,0.30221817,0.24745859,0.06214301,0.12873173,-0.47715718,-0.1839291,0.23062985,-0.3127378,-0.275688,-0.31040817,0.3448081,0.52379805,-0.2217944,-0.42979383,0.009059812,0.26541087,-0.17110302,-0.64659107,0.14548846,-0.22394927,0.29309708,-0.017304914,-0.42153072,-0.043336753,0.16247027,-0.34916377,0.12701957,0.3242567,-0.23617165,0.04440469,-0.10314875,0.05370915,0.823427,0.20567624,0.13880394,-0.74750966,-0.6047792,-0.91289234,-0.4863657,-0.08646619,0.20524012,-0.1166686,-0.414597,-0.13803996,-0.20508061,0.091019034,0.010604024,-0.56413615,0.30667582,0.18745664,0.46422973,-0.22490914,-0.84913987,0.09391794,0.26175347,-0.025208225,-0.4017362,0.5418509,-0.19290331,0.6732927,0.07493629,-0.017488552,0.030149085,-0.59983796,0.45629042,-0.18261221,-0.30249766,-0.67284673,0.18155703,670 +503,0.44046044,-0.29110917,-0.4267766,-0.14219251,-0.09561845,-0.16349983,-0.173247,0.64350986,0.28522238,-0.44105414,-0.1159506,-0.049836975,-0.018380847,0.35157928,-0.12730265,-0.43810573,0.03882112,0.121883206,-0.17970899,0.66299,-0.35083652,0.19364922,-0.21824649,0.5679577,0.20846036,0.27953717,0.10849112,0.0011238073,-0.1888876,-0.05986982,0.115017116,0.3493219,-0.3733841,0.19029331,-0.16773467,-0.2532945,0.003996206,-0.46675518,-0.45584106,-0.7485336,0.3894504,-0.77343696,0.4187909,0.119621836,-0.25500104,0.4189015,-0.058617763,0.18718441,-0.29997903,-0.16723733,0.060718063,-0.035353553,0.032508843,-0.1410983,-0.06650787,-0.1532065,-0.5425745,0.076955244,-0.35668355,-0.1180393,-0.2979662,0.14929068,-0.34596065,-0.15894018,0.04892203,0.58600837,-0.5074622,-0.102672115,0.1567227,-0.06725731,0.31424162,-0.60796124,-0.2976081,-0.1803103,0.29397148,-0.17203522,-0.13503793,0.30629784,0.22677603,0.38884306,-0.08976736,-0.084281765,-0.40876314,-0.08799795,0.11059018,0.4857913,-0.12087642,-0.68833,-0.07384696,-0.072248034,0.09352688,0.10106533,0.1227191,-0.20603882,-0.11610738,0.020598957,-0.21326588,0.42278025,0.5485653,-0.090976365,-0.24501522,0.33817878,0.48977032,0.19403593,-0.15873425,-0.060917657,0.11647322,-0.39938784,-0.13370405,-0.07893453,-0.19243695,0.58918995,-0.14488614,0.21939842,0.62934536,-0.14528635,-0.060184173,0.058693383,0.0931709,-0.1278095,-0.3145233,-0.31353116,0.2832991,-0.35117054,0.25508022,-0.1225226,0.7022743,0.17880277,-0.7808699,0.38460547,-0.45656863,0.10645489,-0.21857023,0.55382365,0.7953772,0.345318,0.5043572,0.5974523,-0.47501877,0.036599692,0.13282838,-0.3996706,0.07742022,-0.32042265,-0.10028051,-0.4157277,0.039182477,0.14327672,-0.10691905,0.104383744,0.2043546,-0.45725542,-0.051308963,0.27230182,0.73034096,-0.16908923,-0.01004102,0.83670014,1.082185,1.0637001,0.023662379,1.0444367,0.3106158,-0.20410047,0.33778387,-0.29873398,-0.8461223,0.23302996,0.2995243,-0.029351745,0.15857743,0.10374887,-0.041550547,0.44005245,-0.50425017,-0.010195347,-0.18174182,0.14794554,0.15375338,-0.1330529,-0.61344284,-0.22159824,-0.15748204,0.026407957,0.06290536,0.40156764,-0.20927116,0.4246618,0.006211051,1.4148647,-0.050365068,0.07406262,-0.0049744737,0.7990307,0.17476125,-0.1851686,-0.016164051,0.31275153,0.32313347,0.031181386,-0.66766137,0.08997668,-0.20542575,-0.4668878,-0.20998737,-0.39224812,0.097998865,0.055453487,-0.41458112,-0.14245228,-0.1393074,-0.28262845,0.4114964,-2.9853294,-0.26717192,-0.09219164,0.28019315,-0.23527884,-0.19069448,-0.009552153,-0.4704681,0.37638667,0.4151234,0.5236804,-0.668112,0.19576988,0.54554003,-0.54397035,0.01979919,-0.55054647,-0.13134554,-0.12259146,0.5172587,0.050069936,0.022781143,0.042395327,0.26889616,0.46394497,0.15443175,0.16289236,0.09518584,0.25758162,0.018067818,0.24061532,-0.070720315,0.48698118,-0.29005414,-0.18373731,0.27146798,-0.37027964,0.22059122,-0.3087547,0.17230831,0.49562907,-0.3647552,-0.90913963,-0.53607523,-0.09349738,1.0393301,-0.087547764,-0.48331377,0.33570358,-0.45424822,-0.21899389,-0.09996389,0.5012735,-0.09751449,-0.034587365,-0.81001997,0.09298416,-0.17146952,0.034683563,0.047736544,-0.016112585,-0.43337828,0.693191,0.078390755,0.4163572,0.3784832,0.19781674,-0.30229142,-0.59037006,0.0047860825,0.6967222,0.3985359,0.16453423,-0.32758325,-0.14589965,-0.20294826,-0.11349722,0.08422263,0.42089504,0.6294292,-0.059225615,0.2097858,0.25338113,-0.073529735,0.11342839,-0.096647486,-0.2769913,-0.13745332,0.12951544,0.6268201,0.82547367,-0.2662341,0.34765682,-0.07045849,0.16946961,-0.18190704,-0.39570814,0.728679,0.9425077,-0.10823231,-0.23980798,0.6102275,0.50232387,-0.40061864,0.5246071,-0.6033534,-0.08512851,0.37505075,-0.14357837,-0.38822916,0.1065716,-0.27298325,0.26268178,-0.91793126,0.2413326,-0.20410885,-0.35357028,-0.7215017,-0.046721675,-3.4882202,0.046515077,-0.24630366,-0.26131013,-0.11201155,-0.17112,0.3005549,-0.6689952,-0.6087254,0.30290884,0.095468745,0.7226361,-0.03578031,0.08579975,-0.28798813,-0.24867246,-0.43099287,0.05719349,0.12868747,0.3459744,0.16043076,-0.57587916,-0.089510284,-0.16292529,-0.42889994,0.0035609624,-0.42028818,-0.30726096,-0.23915245,-0.55725867,-0.2558622,0.59947795,-0.11490501,0.021685,-0.2073747,-0.08734834,-0.23519656,0.36537594,0.06266977,0.1045663,0.034117587,-0.06789278,0.08206914,-0.2560534,0.20172028,-0.039419584,0.16341008,0.31118488,-0.24541077,0.15313528,0.5797551,0.690938,-0.22906287,0.9473525,0.6371667,-0.12049203,0.3036316,-0.2905585,-0.31923562,-0.4983771,-0.39149597,-0.033757456,-0.35046116,-0.55174565,-0.04048052,-0.49823958,-0.7387258,0.56357986,-0.110371314,0.36176282,0.09845315,-0.00844901,0.4639509,-0.2074144,-0.02336901,-0.01803408,-0.019889269,-0.56672543,-0.2138416,-0.6106567,-0.5536556,0.17840281,0.7639889,-0.18750553,-0.1373559,0.123823486,-0.27893776,-0.025626944,0.1278191,-0.030453432,0.15471248,0.32782936,-0.0033025166,-0.674182,0.57112485,0.09124271,-0.047669,-0.58795464,0.09311756,0.51674575,-0.60176784,0.5891458,0.32760796,-0.061436873,-0.21481276,-0.53507704,-0.345516,-0.05897895,-0.1425,0.534197,0.42038158,-0.86408854,0.4966832,0.28854156,-0.2682869,-0.7346254,0.56374407,-0.06463964,-0.17932813,-0.077868216,0.20445715,0.04629922,0.05941059,-0.26108187,0.26561755,-0.30624261,0.09780777,0.26930296,-0.08077905,0.38089594,-0.17493077,0.061030917,-0.67148125,-0.030726543,-0.5745052,-0.16412546,0.172094,0.1636748,0.17319655,0.11776621,0.078458205,0.3306385,-0.28641286,0.053853847,-0.035292685,-0.24785818,0.22872424,0.46277615,0.5711383,-0.4101465,0.5881523,0.051250286,-0.085140534,-0.101711325,0.03917731,0.27630132,0.059495043,0.38444248,0.09159387,-0.27343723,0.12947682,0.7621164,0.28982347,0.49038908,-0.011789339,-0.1448188,0.38134032,0.15760885,0.2907224,0.04822255,-0.45825866,0.011724055,-0.34498483,0.17024972,0.44318792,0.10302048,0.40348864,-0.16862242,-0.39126793,0.09873467,0.1457098,0.049398106,-1.2870777,0.34828928,0.23182604,0.8802638,0.6376712,-0.014529049,0.08058976,0.87569195,-0.10669499,0.14918093,0.436088,-0.07256419,-0.6239754,0.56462187,-0.7239656,0.40154886,0.049477678,-0.05154112,0.024315566,-0.085327506,0.4080343,0.47026512,-0.16577248,0.0821629,0.038128596,-0.31976765,0.25797996,-0.36814234,0.112156734,-0.46657938,-0.13040327,0.5450414,0.59435713,0.25887483,-0.118301995,0.0295937,0.07584129,-0.03503143,-0.02833494,0.09787892,0.08624719,-0.098013006,-0.6104743,-0.17072923,0.5221563,-0.0110299075,0.08389993,-0.08417004,-0.18563978,0.2641715,-0.16441986,-0.17466083,0.030690312,-0.7334999,0.057445433,-0.09377678,-0.40743202,0.754838,-0.17310688,0.36574984,0.16592145,0.13668127,-0.26964238,0.2570692,0.06558644,0.67403644,-0.09531547,-0.09677424,-0.38284105,-0.061868336,0.2886537,-0.14294986,-0.22998883,-0.31270787,-0.110597946,-0.46484208,0.42395815,-0.032860663,-0.11003693,-0.034852643,-0.025586942,0.14201073,0.5396722,-0.11781267,-0.17198743,-0.14120932,-0.08119903,-0.34057012,-0.20909892,-0.13847211,0.30691168,0.22360691,-0.08485126,-0.14557867,-0.13678768,-0.14673528,0.5036672,0.038402338,0.3051876,0.3080099,0.011121482,-0.2635265,-0.21190824,0.18303987,0.3924539,-0.021504058,-0.20205809,-0.24445336,-0.42779416,-0.35943276,0.21368542,-0.013032397,0.26787803,0.011829035,-0.23029558,0.5751547,0.057533205,1.0324389,0.06936453,-0.4952505,0.22573936,0.44364187,-0.1027347,0.02588089,-0.33352342,0.82170546,0.4461829,-0.22789939,-0.21817677,-0.4230859,0.054057445,0.15599848,-0.21143813,-0.09946804,0.004939735,-0.6940784,-0.09887479,0.35886434,0.31635112,0.23171219,-0.07491483,0.069525905,0.20394434,0.06440225,0.38163492,-0.42580175,-0.18269384,0.3816285,0.24642947,0.12814926,0.024836907,-0.35554108,0.34638518,-0.49380186,-0.017069787,-0.3024508,0.26497048,-0.36452124,-0.47471428,0.22557984,0.08678688,0.47200802,-0.21317562,-0.3786075,-0.29594716,0.5008522,0.07077675,0.14503457,0.34402508,-0.2715354,0.056743868,-0.007175352,0.38368955,0.8679281,-0.24346079,-0.06873505,0.30139777,-0.23697533,-0.7445899,0.36588818,-0.34848288,0.38836828,-0.06977817,-0.17735036,-0.7283286,0.19618228,0.24949591,0.036449518,0.049538482,-0.5162032,-0.36064744,0.21116886,-0.23108125,-0.18566868,-0.26698175,-0.13227858,0.5783127,-0.32249492,-0.40240023,0.13406265,0.18658295,-0.15360317,-0.5568817,-0.024497923,-0.34089893,0.26213685,0.11761583,-0.40546733,-0.1740381,0.1591263,-0.4333193,0.22953963,0.20248897,-0.352289,0.015017997,-0.42008987,-0.012883469,1.0619782,-0.25311792,0.23144385,-0.48272985,-0.43347555,-0.92424124,-0.47396532,0.638452,0.1205922,0.02353825,-0.677409,0.13991244,-0.15177925,-0.0038473574,-0.048250657,-0.30422014,0.42340016,0.14160475,0.33017507,0.038364027,-0.6558835,0.029153304,0.100159764,-0.12916984,-0.55697006,0.50614977,-0.013013567,0.9733617,0.12134205,0.21194312,0.15088664,-0.3475377,-0.08627897,-0.23677455,-0.31634548,-0.55788386,0.061529603,672 +504,0.3390344,-0.24102785,-0.54592836,-0.12514636,-0.17472938,0.1385032,-0.28932714,0.17836931,-0.19284895,-0.6097832,-0.04203561,-0.21592392,-0.14606963,0.2462906,-0.24863802,-0.2097988,0.033318046,0.111535296,-0.40375808,0.44832346,-0.5702093,0.279468,0.22776058,0.1631328,0.016763167,0.023716053,0.41188234,0.10185744,-0.19946285,-0.41703388,0.058632065,0.1091254,-0.5978436,0.2885422,-0.21248344,-0.5235602,-0.005592242,-0.28238598,-0.2494764,-0.6895765,0.2910041,-0.9504343,0.53278047,-0.0075900084,-0.32046506,0.33074087,0.3118092,0.22219793,-0.015381313,0.007379417,0.12963027,-0.31997964,-0.13301043,-0.17844924,-0.005451594,-0.30043608,-0.5925702,0.06033815,-0.5701045,-0.2022398,-0.22711262,0.32158566,-0.3649513,0.11762786,-0.20784755,0.4385347,-0.43034413,-0.20152135,0.025773976,-0.122306995,0.39190295,-0.6500236,-0.11232434,-0.1107275,0.031269126,-0.36713788,-0.088031895,0.20484729,0.19189999,0.5444228,-0.07547128,-0.20868409,-0.13640407,-0.20279564,0.06671076,0.45292684,-0.08640312,-0.29606327,-0.17122982,-0.11048518,0.32115704,0.15657486,0.05202267,-0.24696873,-0.03614485,-0.05383346,-0.2895895,0.266637,0.45789608,-0.35293797,-0.14309561,0.29998925,0.6254905,-0.07962345,-0.10794793,0.088842936,-0.02750676,-0.45360637,-0.12648189,0.20300779,-0.07789622,0.5072061,-0.17040071,0.4474006,0.4544395,-0.27854124,0.0787856,0.18777673,0.06253521,-0.12618445,-0.22956453,-0.26661715,0.33452657,-0.5932906,-0.06144802,-0.32841745,0.8185256,-0.14491911,-0.6778409,0.31182724,-0.3916134,0.072442316,-0.07287841,0.69920844,0.47333077,0.47922176,0.21814802,0.64052093,-0.5083878,-0.088054895,-0.12880234,-0.2848674,0.07045633,-0.14628589,-0.15394977,-0.46500507,0.0685461,0.16352174,0.1453209,-0.22463252,0.51645666,-0.44533896,-0.055706408,0.104894,0.60845625,-0.33979708,0.04197678,0.74559987,1.2315131,0.9914818,0.19346774,1.045365,0.20928948,-0.12159594,-0.11113645,0.14500631,-0.61118287,0.24965961,0.40452555,0.30987826,0.2723969,0.020111501,-0.08316916,0.34434208,-0.44820514,-0.05544836,-0.16691026,0.36163187,-0.027950678,-0.028815577,-0.4624373,-0.17016576,0.17180757,0.08129644,0.08416467,0.217317,-0.15827115,0.46248397,0.12065121,1.2880744,-0.3327033,0.14750938,0.17549837,0.3485581,0.14128684,-0.041411962,-0.021224814,0.016159454,0.33522585,0.19867352,-0.4800469,0.08179369,-0.03199875,-0.67394215,-0.18441097,-0.25114185,0.0065033096,-0.36505386,-0.45257622,-0.08942884,0.034442294,-0.53870004,0.33534092,-2.7994182,-0.12156941,-0.20541203,0.22742666,-0.16934986,-0.28494978,0.083897606,-0.3516379,0.6877166,0.5568472,0.3531359,-0.64460546,0.42273286,0.37474087,-0.2116436,-0.12903306,-0.76450884,-0.11827135,-0.16551761,0.46244884,0.19863895,-0.31076628,-0.011645743,0.23131481,0.48373896,-0.25699973,0.1041054,0.22938149,0.22170578,-0.0020070374,0.47057357,0.20291713,0.36894968,-0.42443445,-0.13880686,0.50816804,-0.40990463,0.07230585,-0.02211796,0.23303308,0.33859238,-0.4951413,-0.7241093,-0.66373765,-0.33031029,1.3293947,-0.19520216,-0.6075367,0.17813227,-0.0039805346,-0.26648983,-0.014556655,0.26961723,-0.18929055,0.17106903,-0.8291535,-0.017286394,-0.1104623,0.38574633,-0.12531279,0.053717796,-0.59072465,0.5572632,-0.19908687,0.56214654,0.62583965,0.21266893,-0.5622319,-0.52205837,0.050978024,1.1036714,0.50188875,0.038643416,-0.21754079,-0.15509783,-0.17329288,-0.077998504,0.25491932,0.4039177,0.8788271,0.11240273,0.2273136,0.28250092,-0.09034339,0.044798028,-0.053513058,-0.37212446,-0.093648806,0.2184746,0.62776214,0.33395058,0.060609728,0.38336286,-0.15573081,0.32936552,-0.29583725,-0.42320102,0.37795863,0.662741,-0.13913727,-0.32792854,0.5519692,0.67438316,-0.21630304,0.53122175,-0.6249666,-0.45258564,0.31798056,-0.111272044,-0.41521832,0.23671147,-0.4019268,0.26145738,-0.92800206,0.40417957,-0.46734577,-0.57080495,-0.6911196,-0.27043298,-3.4815395,0.17468958,-0.12658569,-0.19795653,-0.017390981,-0.2815284,0.50624734,-0.4904919,-0.5576585,-0.046080004,0.006587959,0.62812144,0.10745361,-0.057329442,-0.3384554,-0.051557235,-0.13388862,0.21600506,0.09348477,0.06190483,-0.17515208,-0.4580848,-0.016131299,-0.47261265,-0.43681675,-0.11413805,-0.52269703,-0.52390873,-0.2021015,-0.3606171,-0.48496947,0.63121307,-0.24524128,0.043634158,-0.2579175,-0.07007528,-0.12717324,0.422977,0.12930802,0.091212735,-0.051864453,-0.056907002,0.04105442,-0.3206785,0.119852066,0.05225564,0.1216708,0.4775618,-0.30630332,0.19200294,0.47091508,0.43621212,0.06848702,0.86719483,0.34849378,-0.10973918,0.28959203,-0.21783063,-0.30280238,-0.5696693,-0.23409653,0.058385886,-0.42714757,-0.34233838,0.05659819,-0.20733924,-0.7668613,0.70418113,-0.07401681,0.042520374,-0.10294461,0.39519888,0.23255464,-0.08399362,-0.14135072,-0.1674186,-0.11900461,-0.46384373,-0.42903295,-0.9195805,-0.55692023,-0.29826054,1.0510174,-0.0061639654,-0.0492598,0.1099842,0.06764733,0.12411262,0.13928273,0.06077535,0.24753849,0.29775813,-0.07240527,-0.7111886,0.5014776,-0.17806281,-0.011198993,-0.3487626,0.06396266,0.66725606,-0.5078306,0.17490618,0.56486756,0.24279203,-0.24023339,-0.5732101,-0.01359206,0.014752422,-0.24895878,0.5996313,0.28524905,-0.84042674,0.68018305,0.40507025,-0.15213516,-0.7298795,0.51691103,0.086349234,-0.1103956,0.060057033,0.41024742,-0.24468152,0.066192694,-0.2716781,0.19722077,-0.43933567,0.22045276,0.23372473,0.019133972,0.5323232,-0.2898977,-0.17460783,-0.4360575,-0.013564774,-0.53214914,-0.147135,0.051977877,-0.13281499,-0.04904294,0.4500153,-0.22209825,0.4841487,-0.3015113,0.057230413,-0.04208895,-0.3785081,0.4404948,0.6011147,0.304736,-0.30338874,0.6981603,0.015347115,-0.09030168,-0.49499062,-0.03510183,0.4804981,0.15920778,0.34451532,-0.155,0.050962713,0.46866664,0.76840764,0.39467812,0.515158,0.060674954,-0.12510657,0.12302731,0.12696627,0.33081517,0.007960984,-0.33295974,-0.08464755,-0.11488806,0.19889078,0.39873955,-0.015680363,0.4835408,-0.16048078,-0.17625438,0.08129897,0.0675829,-0.2911807,-1.2071457,0.49182197,0.17585638,0.6020903,0.54922426,0.029777065,0.24658073,0.58341473,-0.3708165,0.06858394,0.22461009,0.14381497,-0.39687297,0.70447963,-0.7427526,0.407609,-0.021335747,0.07790675,-0.07232134,-0.18692072,0.4755647,0.6808923,-0.0045940303,0.21865283,-0.08890456,-0.31102046,0.25553337,-0.34981316,0.2499955,-0.19257845,-0.20826702,0.78689873,0.34296325,0.39719433,-0.16405642,-0.094003536,0.26689187,-0.056921426,0.31316572,0.050758403,0.14679101,-0.24865028,-0.5086914,-0.18271463,0.5597533,0.2595223,0.100034036,0.042195383,-0.3111139,0.24934582,-0.049544085,-0.024555316,0.013015238,-0.48954153,0.16843523,-0.35839915,-0.3462934,0.33279434,-0.6022228,0.18557023,0.1198662,0.0016377823,-0.36506864,-0.08480025,0.279975,0.49323335,-0.008431579,-0.16764878,-0.037596192,-0.09858203,0.19204892,-0.2798231,-0.21242373,-0.29229906,0.113968134,-0.6506907,0.36349502,-0.18125196,-0.23757567,0.38629183,-0.15014586,-0.10596197,0.3985853,-0.049426463,-0.07892721,0.23290493,-0.0026524153,-0.14689311,-0.25277668,-0.19275333,0.22520241,0.010192611,0.04593013,-0.006958208,0.07958969,-0.15056525,0.48196343,0.07289599,0.3118345,0.36580148,0.09296378,-0.50791794,-0.029063037,-0.20174117,0.54623574,-0.015181167,0.012585214,-0.23658751,-0.37846184,-0.15842523,0.16594175,-0.1596109,0.23237409,-0.042417794,-0.39268917,0.9879132,0.01490587,1.0276192,0.03536987,-0.51409966,-0.12010793,0.49520272,-0.104753666,-0.12553671,-0.30130553,0.97690386,0.4662209,-0.08579748,-0.15168977,-0.3503829,-0.020226171,0.18306856,-0.16344038,-0.281394,-0.14243726,-0.6873649,-0.30217698,0.27882147,0.427144,-0.14586833,-0.10870349,0.12589455,0.34011966,-0.018387983,0.27526644,-0.46080175,0.19295467,0.48246124,0.18502744,-0.089261055,-0.07234083,-0.40024614,0.30592546,-0.7347153,0.08306636,-0.2810769,0.074603595,0.07949293,-0.22784428,0.22427575,-0.029582402,0.2342015,-0.19475934,-0.20996201,0.033792265,0.40971595,0.19530031,0.13970916,0.688919,-0.20643954,0.2750595,0.06655661,0.36823827,1.1724857,-0.30232844,-0.03485509,0.116282165,-0.35518023,-0.6042105,0.2199754,-0.34008855,0.20237373,-0.02772659,-0.42014378,-0.4005127,0.282836,0.32681245,0.007682649,-0.0311355,-0.5117463,-0.17711642,0.24646099,-0.27152577,-0.24800839,-0.44212732,-0.04076916,0.5171885,-0.18814087,-0.22558863,-0.011972998,0.48258516,-0.40168473,-0.60118836,0.047672216,-0.40348843,0.3000929,0.030863816,-0.27496555,0.037601504,0.10024423,-0.41725573,0.2111344,0.32437465,-0.29744557,-0.009232319,-0.24572252,0.08573707,0.7615596,-0.1137555,-0.13685903,-0.6450318,-0.54886776,-0.8035897,-0.25742683,0.44336668,0.17104737,0.14087838,-0.5119814,-0.01794121,-0.18511932,-0.057722133,0.02243833,-0.33495235,0.3567869,0.15176506,0.4323379,-0.0055313194,-0.58752215,0.086714186,0.06796684,0.032538958,-0.30125254,0.64087516,0.06760678,0.5132208,0.112641,0.092077896,0.3226212,-0.5714008,0.31910402,-0.049597017,-0.2780855,-0.69560915,-0.016072124,679 +505,0.4224083,-0.3473208,-0.34345976,-0.11824502,-0.1809943,0.05566901,-0.05471024,0.7405377,0.23766991,-0.25902516,-0.021817148,-0.011143779,-0.034596574,0.44553286,-0.12135152,-0.50050455,-0.056239676,0.2607985,-0.2850822,0.6374723,-0.31602177,0.14614998,-0.26303652,0.4879341,0.14426555,0.28995284,0.024602788,-0.0010106222,-0.37028337,-0.12347162,0.014832752,0.36397633,-0.4042028,0.27127036,-0.2251399,-0.25051966,0.02587596,-0.5279699,-0.41482073,-0.5669761,-0.0042380816,-0.6436431,0.41935435,0.059871696,-0.31786343,0.36445373,-0.030015392,0.2231152,-0.31419662,-0.15751448,0.057018,-0.019843826,-0.0054655224,-0.300196,-0.19802025,-0.38224822,-0.531318,0.08607707,-0.32883453,0.046302114,-0.0754552,0.082391106,-0.26652533,-0.1789907,0.005838028,0.52432317,-0.36273065,0.119303055,0.12977849,-0.11360519,-0.0366542,-0.41841292,-0.21523859,-0.14915779,0.18125667,-0.067415774,-0.22947574,0.3155716,0.18313047,0.3580348,-0.22290036,-0.14599366,-0.39456126,-0.041422196,0.070388414,0.5338239,-0.19432804,-0.63569343,-0.059266213,0.053806126,0.15178216,-0.010151361,0.16314067,-0.045587473,-0.09374343,-0.08320023,-0.26027575,0.28371137,0.4509625,-0.406772,-0.32134992,0.41049632,0.45745018,0.124203436,-0.23257677,-0.21680912,0.081951804,-0.5025572,-0.15429778,0.034842875,-0.13008772,0.46994844,-0.12512615,0.15960236,0.5312218,-0.17352836,-0.08501339,0.04843408,0.21375594,-0.023236854,-0.35567686,-0.42298597,0.23225321,-0.3044948,-0.052553337,-0.12374053,0.7151669,0.22244827,-0.6659196,0.43720964,-0.42325482,0.079730034,-0.05584648,0.31935447,0.5304419,0.5443101,0.38118964,0.44947582,-0.20738521,0.1415823,-0.017288607,-0.28900653,0.042886507,-0.29502863,-0.09104991,-0.5098561,0.2289336,0.0031480703,-0.14114669,0.27525604,0.21366973,-0.5037733,-0.2607614,0.27209476,0.8639714,-0.21531154,-0.19588658,0.6635305,0.9465021,0.9001082,-0.036566567,0.8924336,0.2954128,-0.24191757,0.22549927,-0.34318373,-0.7184406,0.15524223,0.31951395,-0.36216754,0.3874465,0.00622837,-0.093231134,0.30410337,-0.18655284,0.019538447,-0.15852557,0.17514353,0.13979614,-0.025857458,-0.54428405,-0.45303792,-0.22217189,-0.12998118,0.13032874,0.3702578,-0.19066116,0.37679943,0.0019469319,1.6496751,0.16875036,0.045763463,-0.016207043,0.687399,0.26507214,-0.2335714,-0.13339022,0.45058462,0.24986891,0.08269738,-0.43869632,0.18819873,-0.23699127,-0.4504202,-0.10046547,-0.34823066,-0.01423872,0.030809466,-0.34273598,-0.16667642,-0.0021016342,0.012526789,0.50236005,-2.924049,-0.12564091,-0.041778836,0.42070058,-0.2815099,-0.31075224,-0.19699681,-0.36453447,0.24634399,0.29266495,0.5154336,-0.5576435,0.27244663,0.29445982,-0.60709274,-0.058668826,-0.46642372,-0.17266835,-0.065904476,0.3636143,-0.04826471,0.19152975,0.18182328,0.12672076,0.46224442,-0.09140404,0.13949075,0.18922374,0.30271262,0.088286206,0.3028119,-0.03493379,0.5236792,-0.3830698,-0.16551228,0.145772,-0.54978716,0.39602533,0.12619261,0.10740823,0.49306598,-0.38665432,-0.896833,-0.4716106,0.12280041,1.1293143,-0.18299487,-0.2578094,0.09211177,-0.3524742,-0.30568457,-0.12103437,0.3007013,-0.08831519,-0.12644081,-0.6764097,0.035160728,-0.017643008,0.15003729,-0.027845593,-0.041491773,-0.24180725,0.47000816,0.00627222,0.5300006,0.24013035,0.09680806,-0.30179474,-0.3710398,-0.051210616,0.75813514,0.25690326,0.22021832,-0.27675068,-0.2701056,-0.24744976,0.11703943,0.06299867,0.40347257,0.43646914,-0.15424904,0.14406133,0.31342712,0.0073154187,0.19975974,-0.102185264,-0.21691416,-0.21836455,0.14470069,0.49783424,0.68744653,-0.2950477,0.4431978,-0.03940795,0.27741444,-0.117770955,-0.369268,0.41879353,0.9011742,-0.1865768,-0.22670926,0.5523334,0.5405075,-0.32025614,0.40473494,-0.42507145,-0.11814989,0.36127087,-0.23788516,-0.24517687,0.22426395,-0.27020484,0.12751919,-0.80985403,0.34108847,-0.20508525,-0.364685,-0.6184521,-0.061267886,-3.148106,0.2117954,-0.072888635,-0.24123037,-0.012234085,-0.10802021,0.07316866,-0.5971519,-0.4485251,0.3290372,0.17458978,0.6023164,-0.048082747,0.10797346,-0.30038986,-0.45523438,-0.3326287,0.16470985,0.14907035,0.4054904,-0.026048448,-0.5006622,-0.15285079,-0.19021717,-0.27196202,0.13474464,-0.73214406,-0.29113325,-0.09709669,-0.6326365,-0.2389259,0.6646031,-0.15344565,0.025734525,-0.15756117,0.06479754,-0.1644279,0.159415,-0.039538555,0.091502175,0.00843209,-0.14462663,0.09953786,-0.27102724,0.25187454,0.0019795708,0.40018886,0.24342504,-0.065422386,0.07131083,0.662961,0.67648983,-0.12347057,0.8431403,0.48570427,-0.18308675,0.28379837,-0.24146366,-0.18875085,-0.40005776,-0.31813008,-0.027807755,-0.32698494,-0.44786587,0.006835282,-0.37789854,-0.74733406,0.63420373,-0.0746287,0.009731097,-0.041328184,0.26241365,0.4983122,-0.32179627,0.09503438,-0.019727316,-0.13294698,-0.47624508,-0.21141447,-0.4888017,-0.24460109,0.36109218,0.9012541,-0.32511336,0.029960405,-0.017238105,-0.31627247,-0.0844519,0.12664564,-0.048196964,0.18601656,0.40298653,-0.12974007,-0.4862154,0.38536754,-0.17972885,-0.15988481,-0.32954794,0.17721783,0.6281068,-0.5900008,0.75340146,0.3178466,-0.12621008,-0.20291089,-0.44129524,-0.33736476,-0.0013639672,0.013340418,0.30649194,0.2143015,-0.90819496,0.34152296,0.26846126,-0.48616585,-0.61982155,0.43574858,-0.16388942,-0.25174528,-0.22566521,0.30593967,0.16152641,-0.007547613,-0.20653388,0.2646887,-0.36940292,0.027489444,0.12242271,-0.06376515,0.08298719,-0.1779697,0.079221055,-0.74058515,-0.0603821,-0.35591474,-0.33904645,0.41833085,0.08166294,0.121432304,-0.03005745,0.09221564,0.2590806,-0.3724964,0.0047230464,0.009145098,-0.23967096,0.4332938,0.23944394,0.55935335,-0.40069586,0.46204942,0.017726023,-0.008978054,0.015078924,0.015319139,0.35079017,0.15656434,0.40752777,0.09506457,-0.19122693,0.21628454,0.7337141,0.1982642,0.4800509,0.06412788,-0.19888973,0.16362096,0.039750345,0.14600822,0.11231347,-0.3330095,0.030241897,-0.13153712,0.15498935,0.36739329,0.07226796,0.2976884,-0.14444801,-0.23303969,0.021000495,0.18640791,0.23045988,-1.0535192,0.30334112,0.17394662,0.7556812,0.32175085,0.1951113,-0.065159604,0.7726962,-0.1592335,0.16611502,0.32759076,-0.026224282,-0.5822968,0.50154287,-0.55967814,0.5573911,-0.04056373,0.0040322244,0.05073253,-0.06560454,0.52825147,0.6755065,-0.10155033,0.09546856,0.10434522,-0.37394664,0.09273029,-0.30974367,0.16060343,-0.5336464,-0.19165017,0.59444445,0.48833555,0.31946585,-0.107668675,0.039742786,0.11220066,-0.035956208,0.07087762,0.08185279,0.08612866,0.15649815,-0.72203857,0.0076960283,0.52962935,-0.08727664,0.09576756,0.0067932946,-0.25111714,0.33006737,-0.21322373,-0.053786617,-0.0033206749,-0.6495823,0.03556096,-0.21894458,-0.49053308,0.637403,-0.04396971,0.24317744,0.13333447,0.09332402,-0.2946182,0.48293978,0.08238179,0.80213964,-0.08471949,-0.15198123,-0.36795935,0.1736687,0.099391,-0.15316074,0.0988021,-0.4199777,-0.04179377,-0.4101719,0.2935634,0.105253525,-0.24549398,-0.19745634,-0.06595464,0.18983316,0.43325266,-0.032215457,-0.12245357,-0.31055036,-0.090344556,-0.42191833,-0.26354653,-0.06709329,0.3058689,0.30973807,-0.09925985,-0.0416982,-0.08868982,0.03612565,0.50229484,0.00451641,0.28866142,0.2776654,0.26344046,-0.14508447,-0.08180909,0.048599448,0.47173196,-0.06487109,-0.15952322,-0.37453836,-0.23549321,-0.39816383,0.16147205,-0.15371455,0.26038527,0.02988699,-0.23085944,0.68909854,-0.24254963,1.0753891,-0.07715338,-0.40185738,0.15682936,0.45385987,0.10368932,0.07513123,-0.38883114,1.0016758,0.362554,0.005317611,-0.11750939,-0.43813267,-0.12335718,0.08270727,-0.26884058,-0.26866242,0.030934887,-0.4590376,-0.14454173,0.21056744,0.081626125,0.42114845,-0.15395534,0.29778,0.2885807,0.16597304,0.18162373,-0.3881567,-0.05894753,0.25668478,0.38595408,0.052893158,0.12296469,-0.4100836,0.27897447,-0.43111134,0.21844646,-0.24652262,0.14694302,-0.26151133,-0.42712912,0.1602275,0.14176987,0.3333725,-0.43748775,-0.34178394,-0.24560454,0.49606612,0.1591051,0.1356545,0.42452773,-0.2928577,0.05009515,0.13609356,0.45539576,0.7799012,-0.32375926,-0.14515385,0.4420603,-0.3209191,-0.763619,0.23439506,-0.2185628,0.3463526,-0.13583866,-0.14974914,-0.7460472,0.30515096,0.2793009,0.11208774,-0.101099975,-0.4270948,-0.09748854,0.2713031,-0.30855042,-0.18952367,-0.30235714,0.072520986,0.65845346,-0.24438177,-0.52382326,0.06579628,0.1441089,-0.12910579,-0.37638783,-0.14361162,-0.44068724,0.15945399,0.06630932,-0.27614155,-0.26856858,-0.0902474,-0.42536062,0.20214789,0.12645903,-0.31209254,0.059147324,-0.341649,-0.036679216,0.87336713,-0.22592464,0.351496,-0.48499224,-0.51767653,-0.878836,-0.49810532,0.49731636,-0.02914372,-0.066725396,-0.65496695,0.12732004,-0.03533599,-0.3793673,-0.13281666,-0.2982759,0.3698612,0.13556676,0.060367107,-0.022995021,-0.80648756,0.27038,0.13042748,-0.14305137,-0.6314005,0.33917695,-0.17262115,1.136617,0.016604422,0.18498783,0.2846929,-0.32949764,-0.23553881,-0.2928496,-0.11464614,-0.44499797,0.13779424,682 +506,0.4189479,-0.17406456,-0.5874571,-0.072081976,-0.19051436,0.060063574,-0.20418637,0.36551812,0.12328507,-0.3227058,-0.061023474,-0.06411736,0.009743305,0.42147478,-0.058586847,-0.67446053,0.080586396,0.22126004,-0.4480695,0.6594771,-0.44925213,0.28869584,-0.13255036,0.25022042,0.13369772,0.32721785,0.14283146,-0.1325755,-0.0142264115,-0.11724896,-0.29119805,0.2545977,-0.52131325,0.18215452,-0.0030010703,-0.33530158,0.18973167,-0.28881487,-0.24398462,-0.6273765,0.15717714,-0.7634179,0.5292707,-0.099935286,-0.20436592,0.17873648,0.049781833,0.37504515,-0.28494126,-0.10304708,0.035237152,-0.19371898,-0.22188437,-0.2151213,-0.09292455,-0.45027104,-0.47036186,0.0100869285,-0.5056119,-0.1133757,-0.2942741,0.09750427,-0.4502413,-0.079090215,-0.1274766,0.28918362,-0.37670073,0.011089174,0.16736674,-0.03895948,0.15889095,-0.5494166,-0.06783914,-0.10271646,0.2981797,-0.14952569,-0.32689455,0.2494578,0.40533546,0.4227729,0.10636365,-0.2591541,-0.26604196,-0.277214,0.15598392,0.6062693,-0.03657111,-0.52368873,-0.20052303,0.05781577,0.07938057,0.220306,-0.043821048,-0.31521899,-0.14630851,0.115747325,-0.19430317,0.141413,0.34734035,-0.5071489,-0.37110066,0.35510764,0.50956655,0.12891196,-0.1655902,0.031922076,0.0048682955,-0.4935816,-0.12605673,0.15403502,-0.100049295,0.49974588,-0.2112463,0.19828913,0.6393072,-0.24695103,-0.08978095,0.05035184,0.04905071,-0.26427665,-0.3390753,-0.07462291,0.1802477,-0.59988725,0.24349652,-0.118431725,0.7483409,0.25227067,-0.5520123,0.3425152,-0.5983033,0.14499304,-0.16130237,0.59106207,0.74594927,0.3685524,0.3157081,0.7384758,-0.4576087,0.11260059,-0.123351865,-0.5502923,0.116938904,-0.24118936,-0.011490158,-0.50589144,0.21497117,0.1610501,-0.013421067,0.01489161,0.2237355,-0.51278317,-0.0040358477,0.07622374,0.6568135,-0.30587217,-0.20422567,0.79383755,0.8896646,0.99382263,0.08627258,1.1892563,0.27648202,-0.22760679,0.11529305,-0.2587255,-0.6640593,0.2117286,0.43041295,0.01345875,0.13386251,0.23121561,0.010524758,0.5144788,-0.39331225,-0.013846474,-0.19059958,0.4065641,0.113395706,-0.10891355,-0.39516374,-0.20173381,-0.049354758,0.0013720308,0.1718856,0.3457536,-0.17117505,0.40250605,0.10688803,1.6131951,-0.02643886,0.17132604,-0.009141544,0.4401984,0.21846008,-0.12535588,-0.099272765,0.27054673,0.4114748,0.14762874,-0.5405214,-0.092999496,-0.2779316,-0.4775083,-0.15361738,-0.32644495,0.002039228,-0.07089043,-0.30989307,-0.14310895,-0.006980351,-0.27175182,0.5977378,-2.8608935,-0.21142158,-0.21782854,0.2387683,-0.2660119,-0.49426177,-0.17696269,-0.5118958,0.40881515,0.24238165,0.5093812,-0.6602415,0.37994602,0.19750457,-0.39780697,-0.16478913,-0.6809388,0.028602531,-0.09916411,0.35663572,0.0061763152,-0.10928462,-0.12660606,-0.03614155,0.5588955,-0.115502186,0.022519732,0.22533305,0.115260564,0.22701167,0.48483902,0.1305614,0.70080817,-0.037410762,-0.15388606,0.21524744,-0.124214135,0.49244967,-0.12814657,0.19946171,0.4398117,-0.38858393,-0.874115,-0.76382667,-0.23681219,1.1206739,-0.28816268,-0.32266757,0.1910863,-0.3466969,-0.34411913,-0.077753104,0.34565902,-0.19320366,-0.1290193,-0.61061543,0.1771284,-0.011723055,0.2258358,-0.01993623,-0.011568261,-0.40298337,0.5001735,-0.08867531,0.40517312,0.35547575,0.15252149,-0.08841042,-0.38273042,-0.0018271847,0.9650364,0.33059356,0.0992971,-0.15900543,-0.32414797,-0.34562874,-0.090754226,0.089451805,0.46810326,0.6910834,-0.090883926,0.12763068,0.18571083,-0.02564885,-0.011696356,-0.064077996,-0.24901724,0.0010042542,-0.05370144,0.6107225,0.43677345,-0.07066061,0.66609275,-0.07162369,0.20380974,-0.07059574,-0.4925182,0.53714496,0.9361718,-0.33782095,-0.20219886,0.62491375,0.44196177,-0.27849856,0.4197376,-0.52637714,-0.22451583,0.3329521,-0.11654425,-0.16900064,0.10821637,-0.31400234,0.14351659,-0.8902254,0.22699703,-0.113484755,-0.58947265,-0.4720456,-0.07524387,-3.9181707,0.16644774,-0.15372756,-0.06413252,-0.008821053,-0.15236881,0.27648005,-0.56569713,-0.51841056,0.28506526,0.12547745,0.7103238,-0.054043382,0.059889346,-0.16880843,-0.33773443,-0.36206523,0.12933931,0.021354625,0.24345013,-0.0801839,-0.38614044,0.0686705,-0.15536924,-0.37633747,0.15597442,-0.5888448,-0.45532152,-0.21430624,-0.44904563,-0.39346093,0.7329603,-0.4014996,0.04723915,-0.26118892,-0.038926028,-0.1890306,0.34909597,0.10621513,-0.03679485,0.032758925,0.1118774,0.060209077,-0.368392,0.21608843,0.01571443,0.18479411,0.29126188,-0.012142117,0.22035466,0.5504195,0.5736304,0.04307688,0.8392991,0.5188345,-0.1765431,0.23612778,-0.3340074,-0.25887734,-0.4926901,-0.37917104,-0.14306447,-0.48573706,-0.4327028,-0.07874883,-0.2579005,-0.7353671,0.6138745,0.05660415,0.113221996,-0.049241215,0.4373874,0.55133957,-0.17971216,0.003171182,0.036189783,-0.074351445,-0.47272363,-0.33354965,-0.5308325,-0.5088735,0.17801414,0.9593262,-0.3461301,-0.044493917,-0.065453306,-0.33600163,-0.05028089,0.2219157,0.046633955,0.25149795,0.5321101,-0.060231436,-0.7277619,0.47518,-0.28728127,-0.18994904,-0.55586594,0.23773435,0.5229468,-0.8459925,0.31653354,0.31128374,0.10743016,-0.057951633,-0.4517619,-0.30626902,0.014618456,-0.3889398,0.33686945,0.2683516,-0.8600316,0.53574383,0.32030436,-0.1329088,-0.6811319,0.40537548,0.024341363,-0.108950146,-0.049339466,0.33231336,0.1390723,0.16024637,-0.2744395,0.087173864,-0.49702516,0.20201077,0.3207565,-0.10393504,0.2903255,-0.18123998,-0.13501278,-0.6928991,-0.27145293,-0.419206,-0.16570528,0.14540097,0.1639343,0.08816109,0.13021149,0.07157777,0.3184463,-0.50281864,0.12739658,-0.09420104,-0.25215694,0.2051686,0.4241342,0.2996312,-0.36671,0.6297313,0.060345557,-0.10876433,-0.18325676,-0.018678367,0.49556103,0.12044687,0.46502426,0.01690091,-0.28930357,0.1981847,0.84449595,0.1516161,0.41732758,0.0023868254,-0.0851575,0.087527595,0.12802349,0.22043996,0.35892066,-0.46577883,-0.027710319,-0.14928658,0.22676952,0.5654229,0.22670543,0.28898188,-0.0030695754,-0.27066454,0.036994237,0.00090608216,0.08482661,-1.2372515,0.6005854,0.21397011,0.67427194,0.41511366,-0.018596947,0.037620146,0.45215067,-0.24614742,0.234569,0.1866702,-0.19680712,-0.3715674,0.54385173,-0.78638375,0.56205523,0.023450227,0.071826264,0.07142279,-0.080723695,0.4631558,1.1030705,-0.25801748,0.111948796,0.0010474005,-0.21560363,0.05280934,-0.21535464,-0.07094174,-0.6870696,-0.29983887,0.6213111,0.44213182,0.46478075,-0.16777252,-0.0077447193,0.08126027,-0.067656666,0.044058986,-0.15138803,0.2675787,-0.003688046,-0.52919424,-0.35386345,0.6017828,-0.015591277,0.20153907,0.01877168,-0.24788465,0.2940645,-0.03460351,-0.031029178,-0.112100445,-0.5216003,0.0922723,-0.2035736,-0.5652463,0.53065264,-0.25900236,0.31278804,0.21770604,0.07395579,-0.21038471,0.5591684,0.21118318,0.6708167,-0.08680557,-0.21010716,-0.3316016,0.24631096,0.21229431,-0.18971266,-0.16721596,-0.32543787,0.1061991,-0.66219807,0.35957256,-0.1065285,-0.41102076,-0.09154761,-0.14519511,-0.024949819,0.48956323,-0.07825845,-0.1984022,-0.013489996,-0.14948092,-0.22283319,-0.27586186,-0.18849875,0.24288876,0.204016,-0.012723961,-0.14538713,-0.16693279,-0.18908544,0.21108203,0.010293305,0.21506515,0.27162978,-0.01884731,-0.23376809,-0.18996754,0.17394058,0.36293697,-0.18096754,-0.28875324,-0.25850895,-0.4003376,-0.39794382,0.03304438,-0.012435096,0.41619262,0.0025903583,-0.1942767,0.68334675,0.019102901,1.1858355,0.13423887,-0.34689885,0.04473307,0.49302456,-0.04239599,-0.012159079,-0.28815898,1.0250566,0.39092216,-0.13883637,-0.14509046,-0.45956424,-0.15874687,0.4331942,-0.14786744,-0.12065486,-0.03080191,-0.4674086,-0.34312987,0.22513604,0.19057308,0.23605596,-0.021326909,0.023271516,0.28842112,0.035200816,0.30940872,-0.3648384,0.007472481,0.35420376,0.36969495,-0.081481814,0.2643068,-0.2869878,0.393279,-0.54981494,0.035298288,-0.16111782,0.246695,-0.0694063,-0.31862158,0.29351988,0.114002176,0.3787587,-0.22348125,-0.37977982,-0.32075945,0.5912928,0.18932489,0.06610412,0.6513721,-0.19270681,-0.0095526045,-0.006435573,0.41129255,0.9550392,-0.22073223,-0.047141373,0.39543414,-0.31703955,-0.49381444,0.3649752,-0.20765369,0.20548879,0.054041833,-0.3343937,-0.5321675,0.26166502,0.20679143,0.14210482,0.046659593,-0.45021108,-0.09365039,0.1667925,-0.1857417,-0.25313503,-0.26285225,0.1654755,0.76423275,-0.30798012,-0.32394648,0.11670982,0.12142716,-0.18897113,-0.52646846,-0.09439083,-0.3140122,0.32152194,0.104182206,-0.33695108,-0.08083111,0.17491055,-0.53436476,0.09302688,0.23642053,-0.32249457,0.2999644,-0.22607303,0.07133107,0.9960095,-0.15487032,0.23254834,-0.61599606,-0.48209977,-0.6472944,-0.318221,0.5363395,0.24515043,0.094267294,-0.50945663,0.04969583,0.041366905,-0.05631582,-0.038084257,-0.40199658,0.47713968,0.06976684,0.2445538,0.113469966,-1.0102942,0.019308077,-0.09177655,-0.109271094,-0.4657406,0.44624096,-0.1555217,0.8537887,0.16222729,0.097112775,0.33393624,-0.28965363,0.070520684,-0.18801959,-0.109765045,-0.8442613,0.005603935,683 +507,0.3384386,-0.081652395,-0.4640349,-0.23429942,-0.33142692,0.21530035,-0.10089266,0.47444633,0.1732802,-0.2712194,-0.02408531,-0.057337638,-0.126525,0.40043306,-0.16112867,-0.8084827,0.01625246,0.06044638,-0.66584545,0.39736387,-0.4965369,0.24002619,-0.14813614,0.47532108,0.05356322,0.23683262,0.12842342,0.033674613,0.11697454,-0.09907325,-0.0546766,0.09594619,-0.6091077,0.2699152,-0.0422417,-0.14708103,-0.13199027,-0.26254684,-0.27672148,-0.5616477,0.33936375,-0.6483458,0.37618023,0.018466953,-0.39292195,0.09277541,0.09702081,0.1596845,-0.3983501,-0.047262523,0.20769031,0.01234514,0.11681298,-0.05832045,-0.24602246,-0.5193782,-0.61685383,0.0041403347,-0.56693053,-0.15350212,-0.43741316,0.1668428,-0.23356389,-0.061642256,-0.2786299,0.553991,-0.35874286,0.1714455,0.24199669,-0.17543085,0.105418526,-0.47042277,-0.11943303,-0.101449415,0.15790482,0.054924216,-0.29052562,0.3249927,0.37165162,0.4342673,0.027863918,-0.19385658,-0.23931742,-0.059672765,0.15721616,0.282693,-0.12549782,-0.3397881,-0.22178774,-0.106914185,0.061150942,0.14850421,0.07538293,-0.4589045,0.034864556,0.09327059,-0.23787396,0.27464223,0.43316677,-0.4618034,-0.32709572,0.37283334,0.25446653,0.11672099,-0.24231015,0.069621496,0.009755762,-0.5548396,-0.28333354,0.17048046,-0.13438,0.40560934,-0.10392224,0.14313483,0.8243899,0.032991312,0.023677155,-0.075087085,-0.13201003,-0.049567103,-0.46712357,-0.10183437,-0.043443985,-0.49338087,0.08214987,-0.21852185,0.76731926,0.11096965,-0.88767,0.34770617,-0.5426478,0.06396278,-0.21479486,0.4625627,0.8261004,0.34793624,0.07583632,0.7880998,-0.58527035,-0.0045995777,-0.053932685,-0.397718,0.1883746,-0.06568483,0.06416865,-0.43976405,-0.072055,0.09990377,0.06633661,-0.03476456,0.18995579,-0.38862392,-0.04478278,-0.011484014,0.69362676,-0.34984642,-0.19420335,0.63809675,1.0698463,0.9202571,0.09965233,1.3148905,0.23313694,-0.11959901,0.3282703,-0.31827933,-0.54029334,0.20657204,0.31595382,0.44531456,0.2150602,0.041289564,0.16061607,0.50418466,-0.17679732,0.19482757,-0.046887193,0.22062995,0.07997523,-0.06360204,-0.2242888,-0.4125164,0.20618321,0.034863282,-0.051119983,0.32470968,-0.13379253,0.110211626,0.104597196,1.4124411,0.16383247,0.14753357,0.088649526,0.5055777,0.25057617,-0.1589267,-0.104747295,0.28475302,0.35071468,-0.017758662,-0.59099686,0.08887507,-0.29681468,-0.40788943,-0.09741243,-0.41350383,-0.22506772,-0.02801108,-0.6008572,-0.18148279,0.012909323,-0.29686356,0.5343102,-2.7859285,-0.16297258,-0.2322546,0.20956554,-0.25777587,-0.20659934,-0.098345585,-0.3915554,0.3367955,0.4431288,0.3027888,-0.53784597,0.41893277,0.37472177,-0.3505196,-0.0032978228,-0.65126795,-0.17796513,0.0023806777,0.33623937,-0.026099432,0.11214379,-0.18316546,0.37708554,0.58488643,0.050684504,0.05478045,0.1953996,0.37160984,-0.14005825,0.635058,0.07259416,0.55819494,-0.24543677,-0.117112935,0.24354233,-0.41464403,0.45673364,0.15968633,0.15137787,0.42894793,-0.44299808,-0.89753735,-0.5893203,-0.42765924,1.1116251,-0.45786783,-0.20994374,0.35655278,-0.29332632,-0.12121802,-0.10308434,0.5994151,0.06688065,0.07296673,-0.6858743,0.13239376,-0.16063888,0.14163272,-0.08212594,-0.0025699225,-0.26439792,0.7015198,-0.09336839,0.6779601,0.2711802,0.038902692,-0.20591514,-0.37730142,0.09536266,0.7570825,0.30366442,0.091967545,-0.11521525,-0.14714539,-0.33687735,-0.1682184,0.23570514,0.5702768,0.47904077,0.048884597,0.15294503,0.2914121,-0.24769484,-0.037670884,-0.08711543,-0.24425241,0.039404724,0.0932046,0.5888758,0.6101344,-0.13233995,0.35869503,-0.11870384,0.09083571,-0.34113067,-0.4269362,0.4995656,0.6112111,-0.07962178,-0.22647741,0.52433664,0.46227422,-0.16974212,0.33105752,-0.54575574,-0.23038694,0.7747593,-0.09444838,-0.3735481,-0.027871132,-0.27043647,-0.07799633,-0.79850227,0.20971605,-0.3125995,-0.5086373,-0.37620863,-0.25184807,-3.9951274,0.20726551,-0.18102838,-0.10449542,-0.16750643,-0.10837978,0.4811583,-0.59070224,-0.50751746,0.015513271,0.05006985,0.52647895,-0.056083374,0.11287474,-0.3211449,-0.1382272,-0.33310843,0.26661834,0.09678423,0.29013082,-0.04664622,-0.39151025,0.07652598,-0.27927655,-0.5132529,0.057381094,-0.4309258,-0.46813604,-0.0049275183,-0.44458064,-0.22002389,0.8172861,-0.36866397,-0.024191065,-0.13273966,-0.1008827,-0.3288627,0.42984077,0.14179137,0.13312605,0.011396102,0.029125402,-0.28029293,-0.41514388,0.28869197,-0.026262565,0.3825075,0.33247048,0.0017974632,0.10971496,0.68941814,0.61023885,-0.029941622,0.77745473,0.27879846,-0.081074916,0.44555706,-0.23734677,-0.19566521,-0.5831036,-0.23209593,-0.2432524,-0.28824002,-0.48882547,-0.13708247,-0.34399018,-0.8046888,0.26763687,0.093304835,0.089159295,-0.16643496,-0.0005911248,0.19397174,-0.10099338,-0.021979187,-0.052579265,-0.24035694,-0.58530873,-0.52481943,-0.58769745,-0.47428778,0.27420858,1.040559,-0.16398704,-0.26419955,-0.076743655,-0.42526117,-0.031969845,0.03832484,0.18780783,0.2279741,0.2676783,-0.12399558,-0.67937905,0.5037643,-0.08957194,-0.09074129,-0.563009,0.11624338,0.72809464,-0.5564971,0.6545929,0.20781745,0.22096644,0.16004078,-0.5248519,-0.25899318,0.16491024,-0.2574116,0.6024679,0.24419269,-0.7373907,0.42492566,0.16760638,0.0799982,-0.6281005,0.6227595,0.008549579,-0.025956346,-0.05056595,0.30105233,0.17115827,-0.095245324,0.0708364,0.30872947,-0.61580145,0.24322589,0.27606636,0.035497487,0.44687793,-0.093777545,-0.016912635,-0.5073815,-0.04581387,-0.5095286,-0.2518711,0.10788976,0.051013503,0.18648863,0.21108758,-0.026718616,0.3097939,-0.16158149,0.1865174,0.061669767,-0.18236354,0.38147527,0.3879142,0.4116456,-0.4941998,0.5343998,0.088314995,0.2432683,0.26426664,0.09319891,0.42571098,0.3170486,0.47549888,-0.19783604,-0.10633634,0.25786242,0.7100902,0.20580986,0.24603999,0.07196001,-0.19774409,0.23615941,0.14352523,0.057137225,0.008590319,-0.4384353,-0.011163796,0.012392973,0.28227657,0.36306587,0.06465269,0.16680299,-0.010251633,-0.17127934,0.23623155,0.15563548,-0.21925004,-1.2710842,0.43868548,0.24639866,0.68438685,0.6158724,-0.006611117,-0.032185614,0.599352,-0.27665496,0.08866312,0.47761917,0.06421752,-0.4479817,0.55756265,-0.53628784,0.6457406,-0.1954067,0.0034196633,0.070402995,0.20125268,0.36797646,0.8808948,-0.03870413,0.08536102,0.078099124,-0.35545966,0.13629659,-0.32619375,0.11411478,-0.48600706,-0.23362027,0.5758449,0.49417907,0.25467196,-0.3805615,-0.0925917,0.06481854,-0.16702999,-0.022142818,-0.05115952,-0.113891944,0.020635584,-0.73295957,-0.32821217,0.47397617,-0.39233974,0.0524616,0.1423376,-0.43037567,0.3529415,-0.18454881,-0.0049179965,-0.07123332,-0.6435521,-0.10053355,-0.24804406,-0.38845477,0.28502208,-0.5187486,0.22101161,0.19563548,-0.051167797,-0.31704155,0.36432737,0.08378464,0.78225327,-0.08328193,-0.017437091,-0.31392553,-0.06382076,0.24611054,-0.17812058,-0.20191751,-0.51726997,0.031767704,-0.5098605,0.28784814,-0.113584325,-0.20222914,-0.09538321,-0.04108881,0.0748871,0.45033154,-0.26573175,-0.14002384,-0.18991902,-0.038795616,-0.22827516,0.014410274,-0.2978756,0.2998194,-0.05319873,0.11802703,0.042579733,-0.052597873,-0.012922636,0.19660972,0.10930235,0.2747191,0.2722266,-0.060067296,-0.245486,-0.026205828,-0.08631711,0.32568893,0.13659832,-0.021107929,-0.16760072,-0.13796426,-0.31817892,0.43182674,-0.14956467,0.23194215,0.0015465809,-0.53757584,0.5995678,-0.010518032,1.1205407,0.043705266,-0.33455512,0.08765658,0.48033613,0.056397,0.20275709,-0.30857834,0.63948077,0.5623326,-0.10752536,-0.29672593,-0.26680383,-0.13765217,0.14499648,-0.29974574,-0.20023204,-0.07658102,-0.7499371,0.044540532,0.12710695,0.16448225,0.20171003,-0.014900582,-0.21981914,0.09827278,0.11982707,0.4959915,-0.56685513,0.014733191,0.27912456,0.35347444,0.122640446,0.16255412,-0.42717797,0.46563393,-0.76871043,0.20245361,-0.3396363,0.12029947,-0.22446612,-0.20248155,0.19279858,0.07060522,0.37264487,-0.18843307,-0.25840828,-0.23485744,0.71516436,0.13028659,0.37389275,0.81235236,-0.20356762,-0.0617845,0.1493026,0.520015,1.0380207,-0.034805343,-0.19688734,0.20948227,-0.38730767,-0.64521223,-0.02072263,-0.48988825,0.18695612,0.04242933,-0.21057831,-0.12613358,0.34258032,0.13092998,0.078966245,0.12670927,-0.69653004,-0.33689576,0.4356167,-0.20548382,-0.360306,-0.26582104,0.15526219,0.67675674,-0.44509873,-0.18314804,0.05289787,0.35246995,-0.16136919,-0.6093423,0.10835014,-0.40247056,0.29589075,0.076730244,-0.3667357,0.0645953,0.22039221,-0.3844939,0.10185696,0.21894908,-0.30476078,0.031493764,-0.22905186,-0.14996552,1.0582687,0.1162694,0.0054604327,-0.50541204,-0.5325755,-0.83098954,-0.31056476,0.2051002,0.096581206,-0.154544,-0.38501555,-0.17947301,0.045234866,0.05961122,0.05201348,-0.52681774,0.4863124,0.09721797,0.39927268,0.17084599,-0.86267614,-0.023595078,0.14904383,-0.088343516,-0.5814334,0.6066083,-0.24001901,0.7922646,0.06237201,0.03371032,0.11026887,-0.5676445,0.33615127,-0.4832757,-0.03042339,-0.64023083,0.18276061,684 +508,0.3683582,-0.15125537,-0.6030726,-0.039545428,-0.4090534,0.029752906,-0.322273,0.21769534,0.47943634,-0.12579638,0.015425416,0.1674322,-0.068993196,0.15895149,-0.17352831,-0.7073928,-0.1404939,0.08017903,-0.65225214,0.43566912,-0.5372989,0.47505832,-0.19675358,0.29751325,0.06497327,0.4840776,-0.01454834,0.058992095,0.052120365,0.034937125,-0.10325272,0.098834045,-0.35251305,0.018597765,0.009402573,-0.3424894,0.0635666,-0.2919264,-0.27566317,-0.7113914,0.26344028,-0.61959213,0.6254262,-0.052643392,-0.1293427,0.1085879,0.22525859,0.33754274,-0.32614797,0.12909058,0.14098191,-0.23783161,-0.10541532,-0.46306852,-0.39101434,-0.34814686,-0.49486026,0.021361154,-0.63609546,-0.20830579,-0.2990974,0.22993119,-0.35861474,0.025154259,-0.23653455,0.38039157,-0.38600573,0.0823425,0.2946886,-0.18134715,0.2513306,-0.61550313,-0.048475318,0.07120093,0.26473406,0.08988683,-0.03414143,0.37356132,0.2023112,0.37098736,0.26012984,-0.30772835,-0.38924146,-0.19420926,0.029429495,0.44281688,-0.32302713,-0.029544728,-0.25641906,0.094443694,0.37414217,0.41077963,-0.050207548,-0.15283345,0.013942411,-0.039807048,-0.28920445,0.75260633,0.5504741,-0.33639956,-0.2729039,0.30058417,0.54758006,0.17963183,-0.30369207,0.02731204,-0.07658213,-0.3451271,-0.16948612,0.1377018,-0.07848792,0.3706167,0.009642073,0.18106093,0.75194216,-0.17657228,-0.10074228,0.05581693,-0.012001021,0.14827575,-0.37984732,-0.11440265,-0.054832865,-0.55858105,0.21613696,-0.20166896,0.57191706,-0.1348053,-0.6498627,0.43241793,-0.5623928,0.16303493,0.014184124,0.54844064,0.6734198,0.5410873,0.20263436,0.8398279,-0.28687114,0.17591532,-0.18387151,-0.28627163,-0.07195755,-0.10716107,0.21787961,-0.5106698,0.27599254,-0.18663958,-0.031907223,0.25787187,0.32943746,-0.5224083,-0.07088781,0.11102816,0.91741836,-0.26321712,0.0072287363,0.71476907,1.1865845,1.1465265,-0.035104793,0.7737964,0.26414016,-0.25782052,-0.026467612,-0.5590664,-0.37979817,0.17628191,0.28145805,-0.009282529,0.40730804,-0.10540592,0.00953392,0.3019274,-0.27956393,-0.12720916,-0.083769545,0.4475431,0.19773833,-0.0019812733,-0.4459005,-0.061182227,0.049427815,-0.04410592,0.24791972,0.27573225,-0.30403545,0.1621265,-0.005317194,1.1056775,-0.02132484,-0.0569109,0.19339392,0.5284364,0.3065967,-0.048680954,-0.01716483,0.40685704,0.21597394,-0.13606824,-0.5575406,0.32401562,-0.28232923,-0.34061366,-0.111622944,-0.2529089,-0.14593959,0.15696338,-0.25692183,-0.21771784,-0.18456747,-0.3477431,0.38823554,-2.6445756,-0.27517837,-0.12512565,0.33948606,-0.17549232,-0.25316235,0.08223836,-0.47328177,0.38721964,0.17821942,0.40804258,-0.57707006,0.61670065,0.5686881,-0.5970151,-0.15997764,-0.5884271,-0.04359031,0.0028782573,0.496542,0.013135399,-0.10088324,-0.24412622,0.25343743,0.76410663,0.00044834826,0.12726496,0.5130311,0.36641344,-0.07532177,0.3442357,0.014209496,0.59817344,-0.20721905,-0.19532302,0.20961772,-0.3223595,0.08666094,-0.17722258,0.0009666852,0.34779912,-0.45519257,-0.8688317,-0.45041493,-0.015308431,1.1901804,-0.18860361,-0.57349676,0.2010976,-0.27407476,-0.16910349,-0.050061468,0.5430327,-0.011656622,-0.061048158,-0.5958784,0.16682673,-0.06342419,0.20735182,0.090708576,-0.08180381,-0.21499467,0.6473426,-0.1275099,0.49195093,0.19866636,0.3857452,-0.21930242,-0.1809555,0.08344597,0.73144436,0.38220212,0.022284018,-0.037881397,-0.2771864,0.08777022,-0.26378915,0.054572992,0.6589042,0.66678536,0.025361612,-0.033079445,0.29378608,-0.25393924,-0.043323554,-0.26971707,-0.19516727,-0.052546196,0.045628108,0.42188564,0.6484906,-0.057622105,0.4688607,-0.20359768,0.27206486,-0.20079443,-0.40699926,0.41088793,0.41386408,-0.26399764,-0.23463562,0.5320245,0.42282805,-0.4348007,0.3634703,-0.63362885,-0.19852737,0.55954677,-0.25847554,-0.34352466,0.17205976,-0.26111996,0.08735423,-0.5333087,0.25230294,-0.36219332,-0.6690854,-0.24918173,-0.114935264,-3.2285845,0.22827943,-0.25309128,-0.11240782,-0.2805057,-0.08449278,0.21261665,-0.5504128,-0.5498497,0.19221197,0.27563605,0.5256865,-0.091282144,0.049265575,-0.16196585,-0.3163268,-0.114362955,0.25547332,0.061843045,0.31962687,-0.10536759,-0.3684478,-0.03062941,0.05233687,-0.65043515,0.1977627,-0.6161728,-0.34719986,-0.035207793,-0.57759523,-0.18868157,0.550667,-0.38255766,0.11114633,-0.47822624,0.0993482,-0.13306093,0.20517656,0.1366627,0.17268172,0.32735848,-0.17455198,0.28658578,-0.31305155,0.480084,-0.11141515,0.39523205,0.09426097,0.075992875,0.031400535,0.40234452,0.76833826,-0.0014026889,0.917649,0.3012744,-0.21697153,0.34120873,-0.33006898,-0.19765961,-0.5754878,-0.4741753,0.1271443,-0.2638667,-0.481278,-0.031581577,-0.41271496,-0.7706795,0.4405225,-0.019495828,0.39097193,-0.10047108,0.43859336,0.5003024,-0.13872184,0.024693994,-0.030511392,-0.20742676,-0.36906025,-0.19504498,-0.5954946,-0.49954224,0.14734583,0.857862,-0.37887594,0.16376765,-0.00900312,-0.26604992,-0.027057827,0.19640337,0.2225003,0.24541244,0.33806816,-0.07237292,-0.4738136,0.14211293,-0.09776676,-0.1877815,-0.6060459,0.21037851,0.61249256,-0.5373519,0.6073504,0.30503842,0.07278671,-0.051418282,-0.5572626,-0.007889619,0.14846513,-0.22085992,0.44477326,0.1894426,-0.78664,0.589753,0.37220818,-0.46866587,-0.7506085,0.13222659,-0.17959611,-0.34670287,-0.14859438,0.35220364,0.30095223,-0.14438085,-0.16704287,0.08953134,-0.37779373,0.2847127,0.082783334,-0.14147614,0.14524078,-0.13737682,-0.27111298,-0.7729009,-0.020744279,-0.52246654,-0.22673228,0.21100008,-0.0020023903,0.00078142964,0.06446666,-0.015123137,0.43470535,-0.21445975,0.05386663,-0.10393935,-0.47757074,0.21450658,0.45456102,0.36106887,-0.30812314,0.45931694,-0.015327895,-0.22476223,0.072849534,0.07529877,0.41324258,-0.072664045,0.39255005,0.00959528,-0.17908213,0.33842775,0.6334647,0.10700907,0.40837553,0.09208502,-0.20187299,0.43722126,-0.028962377,-0.071228474,0.09301727,-0.27531815,0.075067095,-0.015578517,0.12737569,0.45132822,0.30689353,0.30741867,-0.01189601,-0.12983128,-0.0571993,0.23966043,-0.17126963,-1.3761948,0.37447637,0.24547179,0.8263505,0.40785798,0.3086483,-0.33001158,0.70261633,-0.094452776,0.012531906,0.46206146,0.10628251,-0.37323853,0.5611633,-0.6067354,0.4164124,-0.16816787,-0.064430155,0.2013795,0.2909281,0.32366198,0.950796,-0.19621852,-0.12682663,-0.05386773,-0.18923189,-0.20002988,-0.252531,0.057891935,-0.362214,-0.4998992,0.5179526,0.26350743,0.45394638,-0.18930426,-0.065928824,0.06280681,-0.17878425,0.2505878,-0.0071389847,-0.010908251,0.031070685,-0.50447375,-0.20646158,0.36450815,0.09651314,0.2218384,-0.25463778,-0.17770945,0.06668909,-0.08214855,-0.1292667,0.15081392,-0.44468403,0.063221686,-0.18935095,-0.525008,0.4113523,-0.10682344,0.1533914,0.112726346,0.08974784,-0.19049096,0.3202993,0.194964,0.6438597,0.10170286,-0.194292,-0.37481064,0.077494144,0.078803696,-0.1751351,0.18309762,-0.21296497,0.22714007,-0.712378,0.7152071,-0.2655315,-0.44083765,0.25372857,-0.3201978,0.01648879,0.48150334,-0.2872429,-0.1841975,-0.007871176,-0.2289037,-0.38653368,-0.35700393,-0.14158365,0.16712812,0.0723018,-0.16056217,-0.0840454,-0.3269222,-0.22645691,0.6077333,0.06918719,0.46373028,0.24819103,0.2064059,-0.2841731,0.0027897134,0.117790096,0.3654092,0.10105432,0.135287,-0.50181925,-0.47611997,-0.22393334,0.14205906,-0.06994133,0.045882523,-0.08776853,-0.2583069,0.9425456,-0.11811031,1.1378318,-0.02743873,-0.15004416,0.124501765,0.47148475,-0.13427088,0.07897786,-0.33580446,0.86074597,0.67999953,-0.23863925,0.027099058,-0.43619728,-0.18948092,0.31841332,-0.4158875,-0.031462606,-0.018530052,-0.6884171,-0.43883634,0.2462914,0.06525103,0.1616578,-0.012930901,0.13353412,0.029238222,0.18452954,0.36160687,-0.4863115,-0.06390505,0.2502436,0.22586192,-0.095013596,0.16247606,-0.45518667,0.2706354,-0.49925885,0.18120578,-0.29989856,-0.0036799717,-0.031127986,-0.29155466,0.27467465,-0.052506734,0.23446997,-0.26006418,-0.38350663,-0.038178004,0.36616492,0.016277626,0.099122204,0.47656724,-0.29880556,0.043664183,0.13495743,0.6799768,1.1824204,-0.17553768,-0.033317387,0.18592827,-0.41106206,-0.6236328,0.29944843,-0.17590281,-0.2591709,-0.059240878,-0.27501562,-0.39187616,0.29524246,0.12224662,0.060691413,0.068305455,-0.4473732,-0.2621858,0.20986806,-0.39775568,-0.06913002,-0.024156386,0.43552193,0.721031,-0.21425939,-0.4388246,-0.010982522,0.4782717,-0.13964725,-0.43225202,0.07151383,-0.07901057,0.4156902,0.21768798,-0.37825677,-0.090457544,0.17753114,-0.440517,-0.18728028,0.25229135,-0.32785234,0.03673593,-0.22692974,-0.064097166,0.586727,-0.2636936,0.022228787,-0.5783172,-0.5382295,-0.82465523,-0.4047747,-0.0760972,0.22393033,-0.08771761,-0.5002734,-0.025003782,-0.18078874,-0.26344457,0.07971263,-0.6283282,0.4417336,0.07791724,0.34810638,-0.49974233,-0.888412,0.024647057,0.21109538,-0.19918464,-0.6642416,0.6834273,-0.15649627,0.71401644,0.05756238,-0.11681169,0.038453586,-0.3305311,0.22303598,-0.39498833,-0.25655463,-0.77676713,0.08078815,690 +509,0.571297,-0.2107805,-0.3775537,0.14432095,-0.5390257,0.09316714,-0.14908719,0.43283114,0.31028304,-0.5819834,-0.33879516,0.115438886,-0.21352768,-0.07095634,-0.16115132,-0.52494174,-0.10332669,0.32130572,-0.46780595,0.68403333,-0.12478654,0.34409264,-0.039650764,0.39923498,0.32279727,0.14927147,-0.14147872,0.11591698,-0.19999014,-0.36420414,0.17274721,0.21653466,-0.8001477,0.4828836,-0.37240908,-0.41241845,-0.20620802,-0.4709434,-0.5260125,-0.8302341,0.37725332,-0.85668343,0.634332,-0.007042442,-0.26479423,0.13434917,0.05038676,0.11107548,0.078359224,-0.12661284,0.32522187,-0.20636013,-0.1363709,-0.059200015,-0.20105276,-0.22145645,-0.68367547,-0.014710999,-0.28656602,0.12962662,-0.3679776,0.30800128,-0.24613433,-0.14945824,-0.20066145,0.6049603,-0.3484877,0.43974808,0.048781734,0.0044068885,0.18919502,-0.7761227,-0.23997985,-0.14542806,-0.046092603,0.016964886,-0.15806295,0.48918173,0.15872863,0.311864,0.08181411,-0.2892728,-0.3991832,0.04140506,0.31758505,0.462663,-0.27212662,-0.15268625,-0.25866598,-0.068067156,0.41629553,0.106599346,0.24672078,-0.35960335,-0.0337163,-0.117043,-0.0015138473,0.51192385,0.56346315,-0.026720067,-0.11477898,0.3410655,0.3858063,0.23122641,-0.11444362,0.008907846,0.038802225,-0.33738834,-0.15703079,0.076549,-0.22470157,0.51085013,-0.09447888,0.056995142,0.49457937,-0.08576352,-0.08547973,0.36992878,0.21947977,0.17363827,-0.34044498,-0.27779773,0.372124,-0.5486682,0.35132748,-0.18088745,0.7131097,0.024521155,-0.8455309,0.28769988,-0.47204018,0.004451013,0.061981585,0.45766827,0.7317993,0.5036506,0.1920878,0.8747383,-0.34898165,-0.024964819,-0.034388166,-0.29525524,-0.23952106,-0.24359365,-0.039785456,-0.4060838,-0.092305735,-0.1617953,-0.084371686,0.03560149,0.55483466,-0.40533304,-0.3530462,0.10581796,0.8452796,-0.24123068,-0.04294769,0.91168815,1.0774823,1.1115873,0.057817526,1.203113,0.013948889,-0.096537784,-0.17169468,-0.22915368,-0.74210346,0.22454207,0.201082,-0.29734704,0.18448056,0.23685193,-0.04057953,0.20015442,-0.5067822,-0.06063858,-0.32391518,0.32386306,0.041447222,-0.11600435,-0.40203527,-0.24327438,-0.10195296,0.06531099,0.0013268569,0.2985607,-0.32805124,0.22140412,0.122064166,1.1962754,-0.20380385,0.12035443,0.026965097,0.2834261,0.24753408,-0.2456602,-0.034120433,0.11225128,0.23467116,0.008551515,-0.51112586,-0.0040724617,-0.3564975,-0.42718676,-0.19908322,-0.22812487,-0.3750542,0.18041112,-0.33159104,-0.42796263,-0.09730987,-0.49013022,0.4658104,-2.5512357,-0.013260313,0.045982473,0.40530413,-0.3436975,-0.3317741,-0.11981861,-0.59074444,0.43046686,0.1411006,0.42460844,-0.5975941,0.26684862,0.5284906,-0.6881782,-0.039695125,-0.55136245,-0.022601707,0.18715039,0.27917558,0.042253193,0.10852957,0.080098346,-0.0298012,0.6483466,0.13932444,0.15099347,0.5077995,0.34412694,-0.24497621,0.16443887,-0.048323963,0.43755504,-0.2579828,-0.19553386,0.5505102,-0.3681376,0.35568696,-0.29030734,0.06478309,0.6527805,-0.44410482,-0.5657221,-0.6642333,-0.27168283,1.0593498,-0.21444489,-0.6115206,0.19658527,-0.44571277,-0.12768833,0.011672148,0.564562,0.076313004,0.106562935,-0.65950435,-0.18231371,-0.094663024,0.13402723,-0.053647123,-0.0076317107,-0.5235449,0.88791925,-0.014824203,0.5157815,0.36417824,0.3508411,-0.20293473,-0.37098128,0.16970693,0.8942223,0.59402835,0.25312024,-0.48078728,0.020496229,-0.35746357,-0.3145353,0.055813942,0.73341817,0.4493194,-0.17788696,0.11224275,0.31034356,0.13699332,0.17626815,-0.16950642,-0.24157624,-0.3035173,-0.00011627163,0.45892715,0.70120746,-0.089649916,0.45175332,-0.15832199,0.044277888,-0.18147598,-0.4973586,0.46176797,0.90002483,-0.18813644,-0.23265454,0.73054105,0.4844158,-0.29450804,0.50044847,-0.5280452,-0.35602516,0.44864437,-0.17958255,-0.60771805,-0.012340437,-0.4818766,0.14867036,-0.5609511,0.45118693,-0.33984894,-0.7537261,-0.47082356,-0.05688554,-1.3742855,0.22017045,-0.32536444,-0.104886845,-0.16482453,-0.41619202,0.087516725,-0.48771772,-0.5984355,0.20594038,0.11561408,0.65866584,-0.16312286,0.13005948,-0.14947169,-0.269629,-0.25224456,0.1874676,0.29357764,0.32136518,-0.079193674,-0.26059967,-0.109393165,-0.0034496891,-0.33696005,0.0018397783,-0.548411,-0.46377352,-0.097025044,-0.5135535,-0.32728437,0.55531925,-0.34267667,0.06731103,-0.20666364,-0.034873206,-0.008515997,0.2595612,-0.096481785,0.31189534,0.24690959,-0.258025,0.03645524,-0.18265285,0.6782897,0.12206235,0.30239794,0.60379314,-0.4133331,0.29697463,0.37959698,0.68820864,-0.18618026,1.0353577,0.32476267,-0.16068707,0.3461515,-0.14766261,-0.370982,-0.74976665,-0.085379615,0.08937525,-0.40987176,-0.5588462,0.13429423,-0.42018208,-1.01733,0.5070674,0.105149746,0.5037471,-0.0020818498,-0.0377548,0.5328346,-0.24969313,-0.123033024,-0.09939611,-0.16219759,-0.40676552,-0.5274521,-0.7569812,-0.57587963,-0.116730385,1.190837,-0.17099929,0.051303744,0.32312196,-0.31549388,0.09797,0.048073836,-0.06369653,-0.2593021,0.3368781,0.27196118,-0.62689656,0.3963063,0.19696961,-0.029698014,-0.5272685,0.5668585,0.6763391,-0.48930594,0.5418831,0.16955839,-0.051897682,-0.30069324,-0.6306542,-0.122138,-0.11119853,-0.24430561,0.6320788,0.449176,-0.7811242,0.25354204,0.3684148,-0.32302117,-0.8259867,0.54256195,-0.09612977,-0.14400493,-0.18610986,0.45061567,0.14735691,-0.07191523,0.08331168,0.34502798,-0.48349157,0.47637224,-0.005914954,-0.08686972,0.13951056,-0.18218586,-0.29815823,-0.92674714,0.34918424,-0.6434825,-0.4169149,0.24346277,-0.015293066,-0.1578925,0.37181884,0.47835797,0.44971466,-0.17525287,0.15434574,-0.20126316,-0.41521496,0.39863846,0.43986773,0.7569846,-0.32808954,0.49251655,0.041608382,-0.079973154,0.10559181,0.21924333,0.41770846,0.017737377,0.43545052,0.14284354,-0.049922466,-0.03991234,0.74486345,0.08431506,0.46893692,0.058923513,-0.27184322,0.2925306,0.032789808,0.45523283,-0.280663,-0.82417303,-0.028401464,-0.2995239,0.057255726,0.47290656,0.19679289,0.16826487,-0.13098742,-0.28327098,-0.08177822,0.0026655367,0.027391102,-1.2759131,0.23408844,0.087412596,0.9922345,0.5379773,-0.02093743,0.025039298,0.6681381,-0.04407651,0.15144856,0.43739754,-0.06794749,-0.36631462,0.36219284,-0.6817313,0.33787656,-0.10585866,-0.041810717,0.18131661,0.011896483,0.34806427,0.69947785,-0.15886831,0.043459155,-0.101799965,-0.3766989,0.018524865,-0.30562574,0.374371,-0.673951,-0.3344273,0.8351024,0.6499353,0.31148714,-0.27183324,0.05712576,0.11663665,-0.14039487,0.2787092,0.101272054,0.022979084,0.010922573,-0.34586534,0.04134559,0.5284128,-0.31457713,0.061012153,-0.018910887,0.048237823,0.25738078,-0.14411858,-0.100897625,0.08728039,-1.0223566,0.056386173,-0.27653107,-0.44554397,0.3506771,-0.03656798,-0.025321579,0.1109068,0.10943537,-0.18350665,0.3054378,0.25587615,0.5828204,0.11751185,-0.08301496,-0.2776439,0.31011686,0.087637015,-0.10980302,0.09557549,0.13185698,0.0054946244,-0.55937773,0.43814468,-0.18508805,-0.30667767,0.11349874,-0.00957562,-0.03824131,0.5213221,0.075215235,-0.1655257,0.040437575,-0.15701509,-0.42392534,-0.17258798,-0.09380073,0.20513256,0.17772433,-0.19286492,-0.16070226,-0.23889765,-0.10736041,0.18988916,0.077339545,0.3878858,0.2250701,-0.03326444,-0.59462243,-0.036572672,0.36089087,0.58268845,0.011221571,-0.009299108,-0.16861789,-0.18064904,-0.36707407,0.37220138,-0.056459367,0.2685148,0.04353833,-0.15626495,0.75074166,0.059422262,0.9890467,0.080241896,-0.28458542,0.15496223,0.4102296,-0.16843435,-0.25979093,-0.43891856,0.8700202,0.5574516,-0.06953894,-0.024160037,-0.42384687,0.040779628,0.20042598,-0.2432599,-0.09498435,0.052997977,-0.63923585,-0.058940653,0.11367402,0.27530336,-0.07992971,-0.1639949,-0.20820975,0.42119446,0.09655522,0.2335098,-0.5447662,-0.2635932,0.35722446,0.24006759,0.13033149,0.23082092,-0.43767506,0.19808123,-0.53553826,0.21873371,0.10943936,0.081981175,-0.44449267,-0.29118702,0.22788183,0.12120391,0.37867182,-0.3161493,-0.4144593,-0.3737146,0.3042578,-0.016168794,0.11473619,0.52428854,-0.31445488,0.10089306,0.00953647,0.35320574,0.84137946,-0.09435071,-0.023840997,0.32747707,-0.4100568,-0.61768085,0.40885434,-0.3892115,0.19355848,-0.088222064,-0.21255136,-0.53333956,0.116388574,0.16544703,0.04865965,0.05061468,-0.78135777,-0.10142914,0.18211928,-0.26568824,-0.109865144,-0.2527025,0.011914372,0.5877322,-0.12282985,-0.4290305,-0.101425156,0.12104424,-0.1487267,-0.4346529,0.045568552,-0.35018602,0.1825545,-0.29442883,-0.39644024,-0.2537186,0.11124651,-0.44160175,-0.09272896,0.04734775,-0.33086243,0.04327192,-0.2423393,0.256213,0.81171626,-0.18912175,0.22881119,-0.28986248,-0.57988554,-0.86020416,-0.43320528,-0.0486874,0.29703265,-0.06795307,-0.6863394,-0.10927836,-0.32643345,-0.17089723,-0.080144,-0.5044145,0.5452873,0.18870182,0.33913857,-0.13264325,-0.8240994,0.2685534,0.35633895,-0.03106778,-0.4416178,0.3686926,-0.083912954,0.96024275,0.06619579,0.09945665,-0.075628206,-0.6454206,0.07925824,-0.15272827,-0.11943602,-0.5930434,0.14224811,699 +510,0.38297397,-0.11901475,-0.5297335,-0.1567281,-0.38304713,0.32699713,-0.22520173,0.17315365,0.13475904,-0.3008408,-0.019711224,-0.1263782,-0.11456508,0.4257029,-0.058072954,-0.6193755,-0.06773762,0.1215723,-0.66679466,0.20639388,-0.537642,0.391468,0.12587892,0.33869052,-0.0037873217,0.35075498,0.09849286,-0.104378715,-0.044085275,-0.12678146,-0.17022023,0.18169157,-0.69609004,0.33398262,-0.027712574,-0.20803162,-0.016429828,-0.33228683,-0.2193209,-0.5370995,0.07462843,-0.6275426,0.50772,-0.1869433,-0.37749228,0.09696839,0.07314359,0.30392852,-0.36087862,0.1539468,0.29495552,-0.32518512,-0.11928852,-0.17626844,-0.1320344,-0.41350156,-0.5208639,0.12743394,-0.5855815,-0.10267218,-0.2748406,0.34315544,-0.27844375,0.07395661,-0.21021672,0.27846745,-0.3744333,0.17662399,0.091196455,-0.3609179,0.059640963,-0.36372358,-0.012271634,-0.074755564,0.47086403,-0.09603398,-0.103448644,0.21523316,0.23318996,0.53211844,0.080070175,-0.1370228,-0.3111925,0.021155205,0.023330102,0.56765085,0.03590994,0.056312732,-0.20717396,-0.10108487,0.08030736,0.024841318,-0.1029846,-0.44900855,-0.12626676,-0.13613394,-0.14199796,0.21957932,0.38796434,-0.4300637,-0.2641577,0.47821346,0.5512377,0.038490508,-0.094471574,0.22923239,-0.035278775,-0.44923708,-0.18647923,0.028787728,0.17294589,0.37889522,-0.12727323,0.23976037,0.7185206,-0.053014882,-0.18683107,-0.07397575,-0.19700532,0.18443336,-0.052661873,0.075544156,0.13256608,-0.3552144,0.0031853977,-0.15070592,0.599866,0.045533687,-0.8921815,0.3819073,-0.48100743,0.061087966,-0.054289598,0.6617042,0.57007724,0.6339625,0.04670947,0.8167887,-0.57908183,0.13406242,-0.120657526,-0.33500168,0.28629443,-0.1367005,0.04300036,-0.4412848,0.13993622,0.036276765,-0.11741359,0.07144814,0.32838535,-0.4977059,0.07188548,-0.014738483,0.6644951,-0.4564323,-0.13444258,0.8393653,0.87736833,0.8887309,0.04883575,1.1472569,0.3384726,-0.11288314,-0.012119992,-0.31664804,-0.5707449,0.18907067,0.25398323,0.49469092,0.24698652,0.24466899,0.095696546,0.45048422,-0.1574811,0.09052635,-0.04522168,0.14457214,-0.03409266,-0.07673855,-0.4018836,-0.25138956,0.24893482,0.03735229,-0.0034512195,0.2151996,-0.17780153,0.51471585,0.09943409,1.6238955,0.014085135,0.137359,0.024944434,0.29954317,0.09120782,-0.25810736,-0.3089059,0.31606868,0.25850698,0.016799824,-0.48115936,0.06580081,-0.03277686,-0.39432064,-0.19701378,-0.38496855,-0.16082719,-0.27933395,-0.32020584,-0.32345673,0.14978136,-0.36801574,0.45136887,-2.6371498,-0.15797165,-0.04255027,0.3699285,-0.20440365,-0.3148841,-0.24668743,-0.42622867,0.22236614,0.3698623,0.35815287,-0.5046899,0.5338826,0.27910724,-0.34256145,-0.40567657,-0.5200411,0.0728312,-0.012589016,0.29019952,-0.07125096,-0.15497448,-0.2839335,0.13281408,0.5920618,-0.23302807,0.042261712,0.41340154,0.5065325,0.08523987,0.568587,0.18578447,0.6289822,-0.36651132,-0.10979407,0.48441124,-0.47972283,0.26504645,0.07052762,0.12968704,0.18273766,-0.5672368,-0.95712996,-0.71439457,-0.20832768,1.2880555,-0.34786105,-0.3859054,0.25586095,-0.1262731,-0.21900983,0.10969533,0.4248305,-0.041910846,0.09883637,-0.6626533,-0.03363187,0.038616158,0.42779636,-0.033478655,0.04098583,-0.4480944,0.6117624,-0.23568828,0.5128082,0.38709313,0.1400417,-0.08123089,-0.4050754,0.1596284,0.9366684,0.23551694,0.07436273,-0.10721363,-0.28194267,-0.07711063,-0.23770653,0.026557472,0.50083894,0.65167254,0.10654224,0.18475106,0.36324903,-0.27130514,0.02611007,-0.10658639,-0.26073653,-0.048785765,0.105018124,0.5291275,0.5987703,0.015221357,0.4326236,-0.20190622,0.3225005,-0.022928638,-0.5828071,0.3323412,0.62142956,-0.124691926,-0.16621317,0.415422,0.5134583,-0.22120926,0.35951048,-0.47521725,-0.5200768,0.52145034,-0.23544884,-0.33327442,0.15546764,-0.34035397,0.03122063,-0.8189871,0.2516629,-0.043636374,-0.69434124,-0.31543404,-0.15151851,-3.508855,0.10694488,-0.08504406,-0.08008065,0.0073780078,-0.12728393,0.2634825,-0.43603626,-0.46620846,-0.052777447,0.10577851,0.50629693,-0.03908677,0.12544979,-0.35218722,-0.18156753,-0.25355303,0.3001949,0.21238446,0.2801884,0.09682826,-0.4099312,-0.04654273,-0.3546176,-0.3242199,-0.1202452,-0.6066733,-0.4682948,-0.03350963,-0.46406966,-0.24085984,0.67833096,-0.56131727,0.023546586,-0.23132896,-0.019837903,-0.14538506,0.28624323,0.18480523,0.13110778,0.1991878,-0.10168549,-0.18740891,-0.35247073,0.32226387,0.14657159,0.28350323,0.4493156,-0.0962344,0.039205737,0.5327242,0.580027,-0.11328664,0.6857751,0.15001634,-0.0018548529,0.3069785,-0.3067026,-0.26537305,-0.5377168,-0.23212759,-0.09693825,-0.49810356,-0.4566122,-0.016288374,-0.3812115,-0.80443394,0.45006052,0.10302329,-0.13443194,-0.07045622,0.23038585,0.321616,-0.18850766,0.012842702,-0.23898374,-0.15567705,-0.43861216,-0.42879924,-0.51377267,-0.7191621,0.10184047,1.2236655,-0.21790127,0.00956479,0.048721373,-0.2751506,0.13514556,0.07879793,0.23891743,0.26947358,0.39808777,-0.11340104,-0.74907064,0.4230885,-0.36176863,-0.0638848,-0.52070093,0.15663056,0.6182815,-0.7107844,0.4007422,0.24447937,0.21971162,0.28020072,-0.36727622,-0.26333886,-0.12692456,-0.3010276,0.529511,0.10800027,-0.74880743,0.49803376,0.18016972,-0.32479078,-0.63451284,0.2521735,-0.12449447,-0.25210133,0.26405993,0.26202464,0.07275995,-0.13329802,-0.15633285,0.08385544,-0.47923395,0.31052002,0.30339304,0.03361649,0.40759373,-0.12512158,-0.28291008,-0.5525125,-0.23192786,-0.38275394,-0.31491297,0.008613068,0.056950778,0.109107025,0.1134276,-0.041524563,0.41039133,-0.31517252,0.017058058,-0.21500841,-0.18516943,0.24389145,0.4176124,0.40818328,-0.5806371,0.51234156,0.07679941,0.08283561,-0.08106971,0.015200428,0.49498335,0.1918814,0.28328195,-0.05018315,-0.029357124,0.19883636,0.632189,0.2543373,0.42098117,0.021215558,-0.33616713,0.34288126,0.2096294,0.07913227,-0.09876068,-0.2842749,0.18489094,-0.09924542,0.13354704,0.44903368,0.22316559,0.40095204,-0.14601925,-0.051059216,0.2410629,0.060777444,-0.15004107,-0.8889614,0.32129762,0.2580728,0.63335484,0.43889615,0.10742052,0.21553986,0.7156983,-0.37782153,-0.034541097,0.21848114,-0.07201641,-0.50566715,0.46445322,-0.7392397,0.575061,-0.05039572,-0.043700185,0.33063227,0.14286636,0.40248156,0.94722545,-0.0024119976,0.080570586,-0.0005885256,-0.16890094,-0.11549092,-0.34920135,0.13171946,-0.5543571,-0.20561549,0.68214375,0.40290862,0.36404794,-0.2932475,-0.041663017,0.00040182046,-0.14523736,0.15075143,-0.0674444,-0.0006547655,-0.12033878,-0.58076346,-0.24504802,0.6091772,-0.031398807,0.048635487,0.2078582,-0.41469285,0.3361058,-0.21502063,-0.11400648,-0.16217883,-0.5863017,0.0025981325,-0.2885634,-0.40986356,0.20196459,-0.21361949,0.2968047,0.20313014,0.026213666,-0.38409504,0.3678184,0.14874911,0.9223938,0.1484622,-0.18875666,-0.27422538,0.11937511,0.36103132,-0.31879276,-0.20026936,-0.40992785,0.057933692,-0.55262846,0.26395696,-0.2840419,-0.37777156,0.20800689,-0.058715668,0.09428905,0.50391585,-0.15338795,-0.08066527,0.2338941,-0.048412126,-0.22885658,0.046766542,-0.44452652,0.20392597,0.17552109,-0.16381566,0.05899508,-0.12156701,-0.09098259,0.3512551,0.030184206,0.2316697,0.15192555,-0.056148164,-0.3363683,0.13483237,-0.098829746,0.50158346,0.12377984,0.021098567,-0.19872722,-0.2593875,-0.25375432,0.4567859,-0.22551608,0.119161405,0.045850437,-0.45917517,0.68877804,0.15703215,1.0656127,-0.0029842514,-0.255765,0.293572,0.44818118,0.16392598,0.121349946,-0.39244762,0.9146751,0.5972648,-0.23251761,-0.13748981,-0.36512086,-0.4382944,0.18141492,-0.3005713,-0.26266766,-0.24579771,-0.73150545,-0.21828482,0.21720779,0.10734335,0.1439438,0.017581854,0.012401862,0.10654373,0.09283214,0.2317673,-0.4478099,-0.044180874,0.40715113,0.22352754,-0.06408657,0.055585522,-0.40374157,0.50746137,-0.64777917,0.13461766,-0.37471384,0.032652266,-0.11548454,-0.21087585,0.19240756,0.09614546,0.2761604,-0.22548996,-0.36187217,-0.23426792,0.5809843,0.22589776,0.3737099,0.8392066,-0.24126934,-0.07200172,0.0863939,0.3691493,0.9508634,-0.16069625,-0.040952466,0.49557087,-0.19648139,-0.40464973,0.163416,-0.38206956,-0.045162234,-0.047224384,-0.3487649,-0.23138714,0.35475636,0.15605631,0.039685786,-0.012910669,-0.55474913,0.042999856,0.37484017,-0.2613835,-0.36735612,-0.364997,0.30089924,0.7647233,-0.33955044,-0.3421808,0.11443139,0.27224973,-0.29627922,-0.45324564,0.06670568,-0.3134862,0.26612732,0.14032096,-0.3481784,-0.099337526,0.20993027,-0.35855347,0.04797786,0.35901147,-0.32034907,0.07287647,-0.3434484,0.031077249,0.83700037,0.09096726,0.19087812,-0.56072664,-0.4630402,-1.0064573,-0.25221342,0.2876094,0.19877096,-0.12718007,-0.4389861,-0.12966384,-0.21812014,-0.2308971,0.13107468,-0.6649315,0.40048426,0.08241449,0.3732863,-0.15123466,-1.0595045,0.00828141,0.24711125,-0.32308728,-0.54655844,0.4904151,-0.15482304,0.66699743,0.13591751,0.12114533,0.24472828,-0.6332813,0.35193974,-0.3607678,-0.04715148,-0.6446249,0.013071219,700 +511,0.6278226,-0.24652337,-0.86753464,-0.16351481,-0.39615697,-0.16061448,-0.26639155,0.70694196,0.2426006,-0.5105067,-0.07532633,-0.22102544,0.009484951,0.37416792,-0.33002558,-0.5868072,0.057788048,0.2293202,-0.46719787,0.3779314,-0.4458798,0.32719177,-0.06327882,0.6093114,0.41806778,0.17352083,-0.02633396,0.017196119,-0.1844629,-0.3723371,-0.01933996,0.31259987,-0.61147016,-0.12946682,-0.38512823,-0.691233,0.016145673,-0.56255835,-0.35204294,-0.9807671,0.32504076,-0.94761616,0.6788781,-0.07798934,-0.4298099,-0.049721126,0.27442676,0.5502451,-0.114354596,0.04841016,0.22490497,-0.059908714,-0.009300232,-0.056209367,-0.39361715,-0.5607234,-0.71362495,0.031798363,-0.5896815,-0.18188722,-0.17641978,0.20194547,-0.3990629,0.08640273,-0.036562394,0.35513535,-0.43331823,-0.04277116,0.40030575,0.0032783172,0.46369413,-0.56559527,-0.21253633,-0.20798193,0.16808428,-0.29109883,-0.32495475,0.36942926,0.17668393,0.42789656,0.025931215,-0.331595,-0.45822445,0.051641982,-0.0041577048,0.45748192,-0.20127062,-0.53472847,-0.23829405,0.08539053,0.4955011,0.547713,0.33129758,-0.011329161,-0.15378283,0.060275044,-0.2037797,0.54830927,0.5418027,-0.22341397,-0.072958514,0.16878518,0.53372425,0.30213472,-0.19051245,0.20180406,0.016818164,-0.801416,-0.24578984,0.01014878,-0.07893867,0.6510005,-0.21851332,0.20905232,0.7767262,-0.27620903,0.051853653,0.13540904,-0.0009817694,-0.15262449,-0.38437414,-0.4521893,0.25879398,-0.6522258,0.21571068,-0.3528239,0.6911659,0.17783153,-0.72794634,0.22606936,-0.7183007,0.110883966,-0.1357352,0.50096846,0.5369052,0.59843266,0.43097037,0.7207696,-0.3831637,0.15928528,-0.06696876,-0.2829727,0.173595,-0.3243023,-0.052568663,-0.36995572,-0.057991523,-0.25706413,-0.14610447,0.17612478,0.5246495,-0.62386376,-0.19823907,0.19656841,0.89411986,-0.25597328,-0.038046304,1.0421827,0.88444954,1.179562,-0.04505774,1.223368,0.16157253,-0.25182888,0.13742414,0.029688554,-0.8682565,0.4320566,0.21069768,-0.39815232,0.39109573,-0.07889917,-0.06844345,0.506948,-0.39634603,0.07015018,-0.089714155,0.15039687,0.07821203,-0.35484666,-0.50640196,-0.18157098,-0.14948659,-0.04660556,-0.040958803,0.3016023,-0.10592417,0.54113376,-0.120141365,1.6479479,-0.04812514,-0.020904666,0.054002617,0.63265723,0.30107266,-0.11710056,-0.060931463,0.16264068,0.33865452,0.26255256,-0.50310236,-0.0049475604,-0.30504984,-0.3452364,-0.18786505,-0.34308103,-0.1821123,-0.3347849,-0.6420333,-0.187492,-0.27912787,0.0018952148,0.23359391,-2.3271995,-0.22187842,0.041333113,0.36427027,-0.18047084,-0.50113314,-0.05211743,-0.47989413,0.6282317,0.20778668,0.6236997,-0.65693825,0.5425931,0.57466894,-0.5304423,0.09761735,-0.85191405,-0.2583063,0.0054039573,0.17771915,-0.062051963,-0.04218459,0.09235704,0.14402911,0.58141416,0.037098072,0.16328406,0.16282283,0.5176167,-0.14596388,0.7561377,-0.07065606,0.51873094,-0.46219674,-0.16761167,0.3885646,-0.56040925,0.20963347,0.053683188,0.067637816,0.5900759,-0.6171592,-1.2192641,-0.6306998,-0.00974851,1.018185,0.0012331988,-0.5091565,0.35341066,-0.6284129,-0.26133445,-0.15625106,0.4377902,0.015401376,0.14080533,-0.7734911,-0.30772144,-0.20317258,0.064663246,-0.039642725,0.00076285854,-0.3846639,0.5229911,-0.036957927,0.36072955,0.46162063,0.066170566,-0.38997468,-0.63630706,0.066658296,0.8921527,0.43301484,0.25443015,-0.5134615,-0.23248313,-0.6433464,0.08681924,0.070898876,0.5136085,0.9874217,-0.2896773,0.29099828,0.24510185,0.03582507,0.040153746,-0.19647631,-0.32241008,-0.23214464,0.030761344,0.5969831,0.7862124,-0.1283782,0.52848774,0.0720789,0.4496112,-0.25079653,-0.51922977,0.41086945,0.97382396,-0.26420715,-0.36138105,0.7412219,0.40932092,-0.2949215,0.5379152,-0.56277937,-0.33050388,0.4758155,0.018602878,-0.46912646,0.3401695,-0.35943264,0.22672309,-1.1265358,0.17052677,-0.41452974,-0.35476547,-0.63514054,-0.23857856,-2.639904,0.26452222,-0.16759416,-0.08649974,-0.1304127,-0.3354225,0.24969332,-0.6528853,-1.0303261,0.08647919,0.064157225,0.9429775,-0.24040283,0.10834419,-0.23810254,-0.47316146,-0.6114353,0.1843325,0.4228408,0.40519434,0.005442696,-0.5853448,-0.20612742,-0.25814864,-0.65755403,0.010644155,-0.68959624,-0.57225883,-0.20184088,-0.6053124,-0.22595611,0.7813512,-0.038725268,-0.07963203,-0.021706391,0.01339273,0.062144835,0.35839507,0.14144358,0.10767073,0.061413713,-0.086071506,0.18504652,-0.1242251,0.120625235,0.08675812,0.39900407,0.18587269,-0.15967034,0.28385708,0.61537653,0.97469467,-0.22518624,1.017146,0.41025022,-0.12263213,0.37353134,-0.32116,-0.54144126,-0.5711117,-0.12115234,0.021783292,-0.52799803,-0.3898625,0.07355434,-0.48483422,-0.8287676,0.7836782,-0.046568792,0.16839148,-0.117319405,0.3272848,0.42411628,-0.22306763,-0.24406824,-0.071584694,-0.10008587,-0.59219253,-0.24784775,-0.6300208,-0.59282696,-0.11704322,1.3640788,-0.29884857,0.16658814,0.28780732,-0.13274732,0.06424581,0.29826227,-0.109413676,-0.032865316,0.5025387,0.05041682,-0.6606107,0.4231768,-0.13649954,-0.18862788,-0.5698744,0.19930159,0.67965287,-0.6720155,0.48920602,0.534896,-0.040714234,-0.19653542,-0.7770515,-0.055976212,0.052945577,-0.12753119,0.6216459,0.24713561,-0.74048054,0.43388197,0.5517799,-0.3643777,-0.64781106,0.6389803,-0.032027364,-0.35289845,-0.11028025,0.38457245,0.34035248,0.037915833,-0.22711244,0.3046628,-0.47859457,0.17203319,0.41375658,-0.11969086,0.29586488,-0.15457387,-0.22165717,-0.8344824,0.10834515,-0.5152166,-0.30188012,0.33587974,-0.2078661,-0.09813171,0.33787945,0.22536385,0.29779157,-0.30636787,0.09277164,-0.37004235,-0.35886368,0.5262945,0.5499841,0.6460834,-0.63796335,0.6830135,0.042969696,-0.20198855,0.20458661,0.043614004,0.50908965,-0.20384142,0.50270075,0.14627568,-0.17522301,0.018714858,0.8582633,0.15307185,0.5380506,0.17321207,-0.050507102,0.025460958,0.26175597,0.111870944,0.08598133,-0.5970551,0.06770869,-0.39516068,0.1222134,0.6073069,0.0061144745,0.27248865,-0.032863114,-0.2629014,-0.011306301,0.078397475,-0.1657406,-1.6637238,0.49627763,0.33014035,0.9567889,0.34999517,0.21470879,0.06754649,0.60755444,-0.26304454,0.08481396,0.5085921,0.24488424,-0.5246872,0.70998544,-0.708807,0.65296507,0.06278794,0.11647241,0.035338186,0.013430566,0.83599436,0.79549915,-0.11027842,0.09807398,0.12145493,-0.28771183,0.29074362,-0.48451433,-0.26015002,-0.42306975,-0.07942691,0.8982352,0.5020424,0.25745586,-0.23357202,0.014347191,0.22234845,-0.18095085,0.21728542,-0.062017787,0.055678222,-0.26472965,-0.42814097,-0.1649627,0.5304231,-0.050582033,0.23329644,-0.14997776,-0.23411928,0.262401,0.004119047,0.11572487,-0.14117841,-0.8791267,-0.10824449,-0.6661004,-0.4538017,0.46041086,-0.026347408,0.13813497,0.3379186,0.16887853,-0.33641553,0.52011645,-0.24548396,0.6644283,-0.29385018,-0.123025335,-0.27097228,0.4014332,0.34320143,-0.35872445,-0.113947354,-0.24610989,0.23598692,-0.40987292,0.40290564,-0.03146183,-0.41280404,-0.037639894,-0.01243404,-0.002216816,0.42524937,-0.23687923,-0.07194721,0.18551473,-0.049840193,-0.24663426,-0.49870148,-0.06082651,0.30485147,0.25494316,-0.13949683,-0.16185634,-0.052369673,0.13572028,0.61429274,-0.22399876,0.4007067,0.3901072,0.06413198,-0.42942983,-0.16730905,0.13594548,0.762149,-0.22021064,-0.19251844,-0.5512441,-0.41412717,-0.37121874,0.40816876,-0.15323506,0.42141533,0.18727414,-0.17927934,1.0042266,0.24587381,1.4071983,-0.10839568,-0.53458863,0.20091034,0.5677935,-0.14266372,-0.18532038,-0.43183336,1.1224434,0.5033338,-0.4228613,-0.1244903,-0.4048849,0.08045776,0.14259394,-0.29655328,-0.22196515,-0.14686587,-0.45190805,-0.08339083,0.3639405,0.39435324,0.24810359,-0.3700152,0.23405369,0.3754959,0.055102173,0.24130094,-0.4775956,-0.26378882,0.2086779,0.39140075,-0.09405351,0.04377688,-0.51252854,0.23865774,-0.4369877,0.05497024,-0.32601306,0.25600153,-0.15502606,-0.5548641,0.14713793,-0.09806323,0.22192442,-0.3667622,-0.30416885,-0.21267177,0.39070374,0.29753837,0.20389234,0.58086926,-0.36682177,0.029359937,-0.061875217,0.51893187,1.171872,-0.15630773,-0.21946847,0.42325273,-0.24568006,-0.6824713,0.3983294,-0.5647283,0.34555158,-0.014943208,-0.2777249,-0.816004,0.2821877,0.25286692,0.013817276,0.020086978,-0.77717,-0.14739256,0.22012194,-0.19173169,-0.2913217,-0.5665299,0.053452943,0.60228014,-0.047240566,-0.4128324,0.2130883,0.24873301,-0.13860382,-0.42165127,0.066544555,-0.2380882,0.36673215,-0.058589887,-0.3688793,0.013153733,0.05323196,-0.5327821,0.19321713,0.2573951,-0.27495745,0.15924132,-0.48350582,0.12071277,1.0859663,-0.24850687,0.22631809,-0.3640654,-0.58375806,-0.9163408,-0.27433485,0.3259774,0.21726668,0.064359196,-0.7792966,-0.034560256,-0.10817834,-0.32925272,-0.17571926,-0.20765814,0.532078,0.14671192,0.37508184,-0.22332086,-0.8735605,0.09970993,0.14813451,-0.39789486,-0.50312865,0.7100724,-0.074474946,0.8459068,0.24472892,0.23634887,0.36786053,-0.42243895,0.12913361,-0.13770679,-0.11728968,-0.6429003,-0.14517891,703 +512,0.4108006,0.027153837,-0.5347929,-0.18015395,-0.3467307,0.10155785,-0.29969096,0.3008148,0.25541663,-0.27437225,-0.05759445,0.030211091,-0.063098684,0.24495426,-0.2118129,-0.83324236,0.10577374,0.11594464,-0.50893056,0.4230369,-0.683665,0.46830907,-0.038777772,0.4417726,0.113940954,0.21609107,0.27348712,-0.028102126,0.08343924,-0.1440644,-0.061309893,0.2525173,-0.38699993,0.24408214,-0.05925421,-0.3731559,0.21730316,-0.3170457,-0.3069894,-0.64688265,0.34335294,-0.5545742,0.6150047,-0.035084885,-0.3467072,-0.0004380558,0.08811588,0.14331491,-0.30321822,0.13635686,0.22855392,-0.13238941,0.12025001,-0.10437585,-0.32131448,-0.34991163,-0.48453528,0.044704325,-0.65294474,-0.0044031567,-0.23048863,0.12827256,-0.2526553,-0.09341186,-0.05235613,0.42689368,-0.46333537,-0.08581044,0.17364177,-0.24336432,0.14398293,-0.6139931,-0.1322216,-0.19227205,0.24595734,0.024205236,-0.22612739,0.09702989,0.27929676,0.5621139,-0.050898526,-0.23091711,-0.315412,-0.041022796,-0.052798003,0.45233843,-0.20767592,-0.3108469,-0.25218397,0.05193576,0.36342305,0.23464309,-0.0050176894,-0.30583996,0.12724149,0.13360246,-0.26175162,0.39486176,0.5842284,-0.366743,0.017962886,0.27513537,0.31176573,0.19562873,-0.29284948,0.25484675,-0.18142311,-0.42540613,-0.36382192,0.05169945,-0.041110676,0.5010747,-0.12034625,0.25911474,0.77225524,-0.06255149,0.06562095,0.08808319,-0.029649356,0.027157813,-0.17231897,-0.25937226,0.13424702,-0.60293823,-0.046116013,-0.28465378,0.78579223,0.04364762,-0.91084397,0.30081624,-0.33340773,-0.006493281,-0.23405746,0.5904342,0.8004114,0.34491596,0.23597778,0.7541114,-0.62058926,-0.025913358,-0.06761493,-0.33275992,0.067870215,0.11687374,-0.0692652,-0.5556889,0.023914834,0.08158622,0.039746672,0.09110195,0.40336698,-0.2739564,-0.08625329,0.13699178,0.6269737,-0.40907717,0.036249433,0.7257877,1.1962173,1.0221546,0.03267808,1.3894018,0.24941099,-0.0829939,-0.04530292,-0.20947851,-0.37705517,0.26783013,0.29653004,0.06569848,0.38070577,0.18688916,0.039526742,0.40255076,-0.34275085,-0.07866552,-0.070038274,0.25511387,-0.07228667,-0.027498705,-0.51389444,-0.3106845,0.29310945,0.03837155,-0.07390659,0.3308863,-0.32647544,0.16916521,0.021498604,1.1307248,0.12648647,-0.021468094,-0.056115963,0.4833839,0.22782214,-0.14857273,-0.10947798,0.24171354,0.38703975,-0.17848007,-0.5561836,-0.13026746,-0.32530436,-0.2582974,-0.2339579,-0.3412061,0.13295032,-0.0085265385,-0.4008575,0.02222239,0.061630584,-0.4061435,0.3298545,-2.5520685,-0.20001051,-0.05442855,0.3102182,-0.061339088,-0.29820728,-0.31126875,-0.38823435,0.49347094,0.3730248,0.38260278,-0.5571769,0.6475776,0.41161856,-0.3863864,-0.10806847,-0.6813756,0.07906977,-0.11526235,0.3069137,-0.019034231,-0.12262833,-0.30491453,0.3511044,0.72628677,0.13283229,-0.07165742,0.16569135,0.51361233,-0.018841846,0.5686204,0.17061646,0.6032235,-0.14284791,-0.12424411,0.3307361,-0.33567217,0.19630419,-0.020605573,0.1802281,0.28132802,-0.58707553,-0.90053356,-0.5978937,-0.19144294,1.2396344,-0.3280047,-0.29016876,0.20743595,-0.10666716,-0.43387747,0.11714006,0.46397096,-0.25785384,-0.1576959,-0.71055734,-0.0018179034,-0.08113616,0.094314896,-0.03877463,0.16089404,-0.43104026,0.6299769,-0.14435744,0.5603681,0.36693308,0.22050102,0.04063999,-0.39828533,-0.0107818935,0.88783836,0.4043387,0.06429952,-0.16542833,-0.061476905,-0.28150377,0.069242366,0.04924398,0.687127,0.74621665,0.007421749,0.08837597,0.3885366,-0.11378402,-0.054837294,-0.13565575,-0.38137412,-0.017588003,0.17137241,0.6812646,0.5517407,-0.08365317,0.25396287,-0.086885944,0.22379544,-0.3049685,-0.5054984,0.47219205,0.6917697,-0.1803744,-0.30083826,0.60434806,0.4851906,-0.24241455,0.36863106,-0.46485695,-0.39100996,0.43899217,-0.08087588,-0.44139555,0.190051,-0.33680567,0.10548993,-0.8589496,0.2536872,-0.19502687,-0.6656535,-0.3934055,-0.16433266,-3.7431684,0.28844228,-0.17663145,-0.07082425,0.003159787,-0.1851007,0.43106732,-0.5288677,-0.4588937,0.007888266,0.078411974,0.49949613,-0.016007176,0.10166131,-0.2068727,-0.34869787,-0.30325958,0.13769475,0.17930166,0.17604157,0.07755579,-0.40501267,0.10198484,-0.36130455,-0.46053734,0.050078224,-0.41659886,-0.26577646,-0.057580434,-0.5016873,-0.30231968,0.7566935,-0.30809903,-0.08652667,-0.34324503,-0.01097118,-0.16648912,0.4598197,0.051553458,0.115766205,-0.008824672,0.007685326,-0.099122,-0.44470173,0.1856016,0.068858474,0.10536437,0.29382586,-0.047169633,0.075169936,0.6733281,0.5475166,0.00070750713,0.7863999,0.33595893,-0.07547349,0.25236887,-0.3252661,-0.42719245,-0.66205376,-0.37408462,-0.2801947,-0.49917945,-0.29618326,-0.08598212,-0.5193294,-0.8234764,0.45379406,0.020308955,0.10316348,-0.05404853,0.35013628,0.36786896,-0.051854126,0.07834131,0.11393224,-0.2532081,-0.4737161,-0.35264874,-0.6375543,-0.5365197,0.056631114,1.1778917,-0.23073888,-0.07786492,0.051710155,-0.23143546,0.20452131,0.019464804,0.23348467,0.30199528,0.34514594,-0.10714321,-0.79760796,0.15101947,-0.2587894,-0.14741835,-0.55018765,-0.080020264,0.8175689,-0.78448457,0.49012408,0.37924522,0.29255465,0.20641528,-0.61322606,-0.2971991,0.14415632,-0.21064404,0.7849043,0.21211283,-0.6850596,0.5649372,0.22458984,0.03365078,-0.56070405,0.49872175,-0.03987586,-0.25628063,0.0493154,0.3871265,0.0023994383,-0.14370047,-0.058460433,0.09392415,-0.39282137,0.2849162,0.32714358,-0.012620457,0.5373109,-0.23012808,-0.21094629,-0.595115,-0.2906849,-0.53811926,-0.23979361,-0.019980129,0.084396854,0.07940032,0.094345234,-0.10044738,0.5280526,-0.40134484,0.20983465,-0.19016387,-0.14743856,0.4162967,0.562293,0.25026378,-0.40641013,0.5547997,-0.03302518,0.014754193,-0.20665562,0.041873846,0.46830326,-0.017895665,0.36414242,-0.27552012,-0.08864653,0.23035584,0.6308711,0.109556556,0.2690883,0.23295514,-0.17443343,0.2704195,0.20957708,0.08711954,-0.025242975,-0.19750585,-0.115946785,-0.06752755,0.22369723,0.42987913,0.21026714,0.19457535,-0.14073119,-0.18099764,0.19342181,0.05542127,-0.132961,-1.1008551,0.46746174,0.04539763,0.5210269,0.5085668,0.07499652,-0.069720425,0.40288034,-0.23901953,-0.01165746,0.26299968,0.1306177,-0.34249535,0.4955218,-0.48955205,0.47342825,-0.18864958,0.01833855,0.13684419,0.09971703,0.43645737,0.9225138,-0.110543236,0.14336212,0.029608488,-0.21340421,0.011660546,-0.37036437,0.037637915,-0.55115044,-0.3387564,0.6917795,0.44971734,0.36026773,-0.26623592,-0.12943259,0.074465096,-0.27008963,0.02094104,-0.1912835,-0.21395716,-0.08680211,-0.61330366,-0.2509682,0.4542572,0.22600552,-0.074492626,0.07100151,-0.26471975,0.37354925,-0.028839128,0.07749466,0.022784602,-0.5501529,-0.113961525,-0.38500944,-0.35900062,0.27435437,-0.4006982,0.18583557,0.13544616,-0.0044741714,-0.14635244,0.18703993,0.24792446,0.64227784,0.049864184,0.0063256538,-0.26676273,0.066635825,0.28825697,-0.21134436,-0.29634887,-0.53722537,0.23768513,-0.61220604,0.34917387,-0.2230154,-0.08920104,-0.073011056,-0.10776632,0.08691665,0.42659453,-0.30786297,-0.03852092,0.070662804,0.05845248,-0.34152454,-0.15875128,-0.39532542,0.13736561,-0.0072896904,-0.11115072,0.07821464,-0.1390359,-0.056287177,0.46196643,0.20538117,0.265367,0.25003722,0.019506028,-0.263324,-0.034600895,-0.1283542,0.37179115,0.06584926,-0.13070993,-0.33322778,-0.3340138,-0.2219241,0.3477982,-0.10832284,0.053895824,0.030023456,-0.2213249,0.75751895,0.27356872,1.1671171,0.0121666575,-0.3295532,-0.018078277,0.60782117,-0.046189975,0.039640512,-0.23544142,0.86176836,0.6460865,-0.28613573,-0.12487374,-0.39147946,-0.24454126,0.12918815,-0.32992026,-0.35040167,-0.16527882,-0.5265399,-0.21030642,0.13317141,0.205985,0.056963716,0.008912499,0.0198817,0.05554056,0.13087982,0.35929778,-0.4826558,0.06572947,0.284943,0.19584033,0.055996396,0.22354157,-0.40785939,0.4360562,-0.7168269,0.11829821,-0.39903656,0.109807685,-0.017781338,-0.40443665,0.21813937,0.043142147,0.34368724,-0.31319502,-0.24237445,-0.23347668,0.5599159,0.14067402,0.2631994,0.5468596,-0.19715439,-0.037367456,0.04702552,0.51013935,1.3143559,0.030802522,-0.14595166,0.3672455,-0.27754903,-0.5840538,-0.020214552,-0.5582407,-0.068909,-0.041686464,-0.37034512,-0.34511757,0.35508293,0.14772223,0.013100207,0.0075994944,-0.46249747,-0.20816827,0.3442616,-0.13190742,-0.26300666,-0.2658689,0.19967565,0.53227425,-0.3982481,-0.36887938,-0.107613854,0.36710343,-0.18025623,-0.6802047,0.08460663,-0.31519952,0.43064648,0.28021044,-0.21340616,-0.053091083,0.26260728,-0.3993998,0.042007107,0.33934426,-0.3693988,0.027364489,-0.27724108,-0.0476172,0.8777547,0.07613747,0.12547459,-0.59745973,-0.4620605,-0.89636964,-0.36547503,0.24010031,0.20185892,-0.04771971,-0.60068935,-0.006566054,-0.19654155,0.094827734,0.07439291,-0.31501958,0.43056494,0.05732092,0.6217616,-0.0941463,-0.91472924,-0.019456562,0.16692637,-0.40081486,-0.50864476,0.56439704,-0.0131161045,0.7193707,0.08872662,0.05700623,0.029319618,-0.52148014,0.30017185,-0.40823784,-0.112309635,-0.69407356,0.103124306,707 +513,0.46161285,-0.41840595,-0.4894437,-0.12007296,-0.29079464,-0.0141175045,-0.33405703,0.35594085,0.20341153,-0.1473827,0.037102196,-0.19495685,0.0922425,0.5646807,-0.053659447,-0.6941519,-0.10015347,0.175842,-0.66294384,0.5423805,-0.48820665,0.20749314,-0.048033457,0.48424548,0.12232899,0.22442698,0.18942425,-0.07802006,-0.0432294,0.00548986,-0.14738424,0.27978107,-0.63681537,0.057782035,-0.2062959,-0.3202858,-0.025270155,-0.33480287,-0.53424746,-0.8251193,0.28515294,-0.8824306,0.6223682,0.0056108236,-0.42386574,0.2738609,0.069628194,0.31734422,-0.33013725,0.08959716,0.23221026,-0.12347996,0.03693477,-0.2751641,-0.25067285,-0.43027854,-0.53145754,0.032530095,-0.60503626,-0.10056448,-0.3487389,0.050873913,-0.36090404,-0.080679454,-0.017367464,0.29539722,-0.5389765,0.1421401,0.19785728,-0.03692318,0.48864192,-0.37777573,0.011022717,-0.17403993,0.22891347,-0.19107379,-0.31692198,0.47059423,0.21615234,0.5162412,-0.10396368,-0.22027089,-0.21397422,-0.04208089,0.2387033,0.4837833,-0.120928206,-0.5846182,-0.17310564,0.05696008,0.229754,0.20888928,-0.09376978,-0.3772752,-0.056571133,-0.033978518,-0.08173429,0.5127884,0.54139745,-0.18081915,-0.34148484,0.33742967,0.5239422,0.300783,-0.025402326,0.06977353,0.05900308,-0.606568,-0.17350508,0.16218415,-0.14711395,0.4161614,-0.18215634,0.25262132,0.69895643,-0.3010647,-0.07579982,-0.03495301,0.1475273,-0.07442439,-0.13027848,-0.22735497,0.18978672,-0.5030332,0.10082054,-0.114484586,0.727411,0.28286755,-0.77268493,0.36947337,-0.5801878,0.18310387,-0.17844772,0.46240166,0.8152942,0.45564574,0.2407439,0.7290869,-0.43381125,0.17207967,-0.06839687,-0.4703753,0.17163834,-0.303978,-0.11655388,-0.6083103,-0.13082455,-0.123257585,-0.13780366,0.10276421,0.43941647,-0.4761622,-0.027178418,0.07772561,0.87501097,-0.3619783,0.091616236,0.6772607,0.82387966,1.0686637,0.060745563,1.1978923,0.48915443,-0.19862936,0.26299438,-0.3379565,-0.89207774,0.3499619,0.40518734,-0.11345839,0.37175855,-0.0769582,-0.0432435,0.36024687,-0.45134035,-0.011901029,-0.28753275,0.35373512,0.021101091,-0.12356254,-0.43931597,-0.23554243,-0.14569093,0.14850077,-0.047462743,0.29700318,-0.27474317,0.39181206,-0.10180984,1.7158874,-0.0432378,0.020456646,0.0067613125,0.6655016,0.34737262,-0.1199217,-0.21963826,0.40928128,0.5024318,0.17772116,-0.63928664,0.070808284,-0.2777648,-0.33765936,-0.25159267,-0.4010138,0.1514179,-0.025140366,-0.35472903,-0.11024121,0.0330402,-0.2043535,0.5258099,-2.4295154,-0.24205944,-0.090073586,0.30875593,-0.2852983,-0.22895236,-0.18446973,-0.542966,0.4732538,0.36219385,0.5845851,-0.61226565,0.24882309,0.43939263,-0.5811078,-0.005498026,-0.57125413,-0.25513536,-0.013518184,0.45535606,0.037027467,-0.002774294,0.06040094,0.34079763,0.5041296,-0.060110617,0.04515981,0.23914792,0.47123787,0.008474375,0.31983152,-0.14202921,0.4213381,-0.35889846,-0.21497048,0.37746826,-0.11793144,0.17623207,-0.13094391,0.09295504,0.5030091,-0.561556,-1.074982,-0.6772918,-0.1708653,1.1631584,-0.33648762,-0.5517942,0.2769031,-0.24801074,-0.1516495,-0.025583152,0.38585955,-0.17368329,0.016610775,-0.83570117,0.11098728,0.08924588,0.2960799,0.08499158,0.0012742153,-0.2496738,0.6029459,-0.094870165,0.1522832,0.30824643,0.1909175,-0.24004495,-0.5620938,0.12479354,0.85426795,0.34434208,0.20797603,-0.33188847,-0.32818142,-0.22616246,-0.112352096,-0.01220469,0.4615079,0.7999788,-0.19337884,0.1587462,0.22426479,-0.08410752,0.02865326,-0.14630063,-0.38687468,-0.046375293,0.11773548,0.59365445,0.6402255,-0.15215883,0.6016942,-0.17323466,0.24251021,-0.010883545,-0.5758134,0.5744323,1.2786477,-0.10016961,-0.22393467,0.54775757,0.3521294,-0.40706617,0.538315,-0.6266752,-0.35820267,0.55062443,-0.27709147,-0.46925783,0.29407176,-0.28849274,0.028036179,-0.8146642,0.45798138,-0.2115452,-0.4723803,-0.53627056,-0.045351595,-3.501631,0.25911304,-0.22358835,-0.21029194,-0.03727936,-0.07640338,0.25417545,-0.4409925,-0.52546483,0.20474449,0.05337284,0.6604063,-0.07618807,0.19363543,-0.24701364,-0.15447028,-0.508601,0.125353,0.21354617,0.3861966,-0.015790116,-0.6411455,-0.120215654,-0.11523248,-0.5188498,0.14395416,-0.6596521,-0.41421345,-0.3086808,-0.6332095,-0.13290167,0.6397359,-0.16280961,0.0363431,-0.31560868,-0.03040185,-0.04306829,0.37693027,0.25736114,0.11194629,0.117511205,0.01105197,-0.11323416,-0.2900651,0.251104,0.14181344,0.157716,0.16395462,-0.021728098,0.11094781,0.7035659,0.6528144,-0.12682042,0.7891764,0.6239683,-0.14600189,0.37697092,-0.2869875,-0.2601459,-0.5125917,-0.36389396,-0.13883318,-0.47282907,-0.3966655,-0.12960298,-0.35586086,-0.6440229,0.5761862,-0.06310286,0.14369254,0.013492976,0.17195709,0.42217064,-0.19711031,-0.0154896015,-0.2127244,-0.20208241,-0.5724903,-0.21136226,-0.6296056,-0.5635732,0.12342842,1.0082654,-0.18870807,-0.07973907,-0.15066762,-0.26604575,0.041240036,0.005407359,-0.13834989,0.27113074,0.23036265,0.03807888,-0.8096402,0.4694269,0.08522372,-0.032299094,-0.71951973,0.11408358,0.7160791,-0.60145086,0.505421,0.16859949,0.04320274,-0.07778738,-0.5812343,-0.38649172,0.066710204,-0.1308059,0.41768265,0.07905864,-0.6333977,0.5354429,0.3491962,-0.5225717,-0.763223,0.43166715,0.040761773,-0.3435289,0.045081913,0.2592748,-0.09553615,0.05942407,-0.4179104,0.38770074,-0.31891474,0.30074006,0.21693714,-0.03434623,0.35218254,-0.15833327,-0.20396705,-0.79082876,-0.068194784,-0.46308276,-0.3825895,0.23559335,0.057255767,-0.05073201,0.047059946,0.023776975,0.3931487,-0.24018203,0.05736431,-0.10045176,-0.26466006,0.3751791,0.4330009,0.55551875,-0.4545093,0.63027763,0.08396589,-0.26365852,0.03779975,0.055090625,0.47507355,0.0984652,0.3640768,0.0740696,-0.17539401,0.3193419,0.83463776,0.13476558,0.5225782,0.060030792,-0.14478649,0.27589843,0.25269863,0.21681902,-0.018029992,-0.3234627,0.036020167,-0.1936358,0.1366588,0.5810967,0.18885486,0.24692185,-0.07392376,-0.37691522,0.03810214,0.16077788,0.18207906,-1.3722323,0.29089254,0.30607954,0.7949009,0.44127974,-0.025913808,0.07609755,0.7304602,-0.16651008,0.037062902,0.25769135,-0.077721,-0.6352727,0.6044653,-0.79892385,0.47737673,-0.024099167,0.012480597,0.07193696,0.16960375,0.47815323,0.8166558,-0.23662938,0.0712223,-0.027515959,-0.36818868,0.22994454,-0.5045572,0.15424141,-0.5126244,-0.42435628,0.49062046,0.46809775,0.25363684,-0.22952025,0.0043605417,0.018672032,-0.15267174,0.165858,0.040225618,-0.02461561,-0.14251499,-0.77670085,-0.13093397,0.6011614,0.14044169,0.16051278,-0.070081875,-0.014411466,0.23342092,-0.30180377,-0.04849429,-0.090473376,-0.7844663,-0.07109165,-0.27364483,-0.27069643,0.49972102,-0.15362433,0.24335337,0.17553934,0.012621357,-0.3805792,0.41050932,0.05668214,0.9524084,0.1332604,-0.22356729,-0.30631548,0.17909871,0.21237242,-0.19074419,0.018889215,-0.20499508,-0.3133431,-0.56170976,0.44468608,-0.10154472,-0.4232244,0.2429439,-0.22218733,0.057604473,0.5920988,-0.07570319,-0.26359913,-0.2137377,-0.20013078,-0.34664997,-0.2556751,-0.05779425,0.27157974,0.35343948,-0.18638436,-0.094674654,-0.011419172,-0.09637103,0.6786413,-0.07175435,0.3613048,0.27065635,0.32640243,-0.27018952,-0.0646201,0.23711093,0.5462877,0.18718617,0.0057768673,-0.20011589,-0.38907346,-0.35296777,-0.0730448,-0.23227946,0.25337973,-0.0007772882,-0.38981023,0.7763956,0.12799354,1.2130226,0.03569058,-0.24497195,0.28013822,0.5367604,0.11683072,-0.032165226,-0.49263558,0.83518684,0.54161054,-0.059745338,-0.15445063,-0.42660978,-0.15732439,0.1853225,-0.23276125,-0.14776826,-0.1314244,-0.6306942,-0.300392,0.27245092,0.2716557,0.15025766,-0.13145842,0.017262971,0.22382013,0.040037982,0.25930876,-0.442138,-0.003141864,0.3535107,0.29934385,0.08321047,0.11323593,-0.44467854,0.3116863,-0.33374962,0.14246558,-0.22546844,0.20123161,-0.13747475,-0.34527802,0.21642314,0.124267206,0.30214483,-0.37768942,-0.3393278,-0.24125531,0.63633996,0.18801497,0.13899796,0.5254116,-0.2868939,0.1416844,0.110217944,0.34041256,0.9683837,-0.45663786,-0.04074892,0.41539627,-0.4395046,-0.6741353,0.5196458,-0.22943969,0.19009747,-0.089817286,-0.36368936,-0.5663159,0.29186234,0.02160651,0.09352805,-0.08455818,-0.49506202,-0.09002358,0.35614875,-0.11861372,-0.24739696,-0.42975146,0.20766076,0.6320933,-0.28192255,-0.36029416,0.3047609,0.10653323,-0.2826604,-0.42543703,-0.1251319,-0.30707815,0.18920746,0.08800442,-0.31077486,-0.03554504,0.0921829,-0.53608096,0.14345,0.10003103,-0.42867765,0.08024323,-0.14275561,-0.115780585,1.0135565,-0.4687979,0.0376481,-0.69961154,-0.46912012,-0.9564952,-0.22289558,0.823096,0.23288305,0.084456705,-0.68759906,0.004117689,-0.045776922,-0.060406577,0.02546393,-0.4638198,0.30600116,0.03610245,0.35819393,-0.101659,-0.7915268,0.24072659,0.10968806,-0.38535732,-0.744883,0.54514366,-0.11031564,0.77332276,-0.0039008579,0.17751084,0.36461115,-0.4289162,-0.03228271,-0.20681787,-0.3120521,-0.58847004,0.09216038,708 +514,0.49599865,-0.28401464,-0.5493661,-0.09293245,-0.23418908,0.08104569,-0.22401795,0.49563822,0.11789333,-0.5368808,-0.3395535,-0.2583143,0.12421328,0.21722712,-0.18860087,-0.42755517,0.06194877,0.22902796,-0.47999135,0.6341411,-0.35182795,0.32771197,0.03301959,0.4486846,0.2952098,0.1886243,0.084864475,-0.024741216,-0.34131286,-0.1943591,-0.1852586,0.23806296,-0.57301,0.16410467,-0.24534562,-0.42854643,0.057411782,-0.5406572,-0.25755796,-0.76476765,0.21382955,-0.8085736,0.5523363,0.016475545,-0.33327815,0.1951919,0.27428457,0.37399325,-0.17301862,0.014790705,0.22886746,-0.11796998,-0.03174383,-0.07307006,-0.32249215,-0.4359703,-0.61703235,-0.11228273,-0.43787104,-0.21494317,-0.32470298,0.14321347,-0.23224095,-0.05389231,0.019032892,0.41580313,-0.52266806,0.07895827,0.2409333,-0.02729613,0.5546514,-0.50271696,-0.2606857,-0.2030197,0.32188436,-0.34515426,-0.24560067,0.17871962,0.47916743,0.3652086,-0.12589525,-0.12108909,-0.21194538,-0.1428139,0.20634355,0.47229344,-0.18109046,-0.52595675,-0.14682147,-0.1354919,0.31942278,0.41781157,0.33863297,-0.31052658,-0.2119641,-0.030874508,-0.19546749,0.31659195,0.35914162,-0.23787673,-0.18021801,0.35540748,0.6171912,0.31220976,-0.11781999,0.020930737,0.04706886,-0.5509415,-0.22747442,0.10317044,-0.3087087,0.62606,-0.121475875,0.29343262,0.7319107,-0.19084893,-0.02284014,0.060910467,0.09153912,-0.26123238,-0.22321008,-0.33904546,0.21636115,-0.44798034,0.1524746,-0.07822024,0.63378507,0.20351611,-0.698775,0.19203831,-0.61564666,0.06591744,-0.1213634,0.4725831,0.5694474,0.4768667,0.40907148,0.5898308,-0.5050627,0.072050095,0.0820241,-0.38807052,0.003832651,-0.2882046,-0.24154703,-0.59723413,-0.03689266,0.02300571,-0.07576252,0.14870794,0.59390706,-0.50725055,-0.08470784,0.04004892,0.82991785,-0.29118577,-0.15750279,0.85699207,0.93349123,1.0114993,0.11177522,1.2564409,0.23164606,-0.2199074,-0.01571305,-0.0695731,-0.6663733,0.31618348,0.5385083,-0.6272098,0.3566401,0.10060073,0.06742108,0.33362547,-0.21947588,0.050650503,-0.18522099,-0.09450513,-0.112324834,-0.37231448,-0.42687985,-0.24709736,-0.19495884,0.05700412,-0.12622179,0.24321876,-0.10564727,0.5341463,0.16056326,1.7303507,-0.008031709,0.0330966,0.03502771,0.30896732,0.2524271,-0.09348364,-0.24678142,0.46593097,0.3176608,0.302336,-0.47106075,0.029215125,-0.09803238,-0.51304066,-0.16156748,-0.3309939,-0.10105933,-0.18329461,-0.4547878,-0.016183572,-0.20014226,-0.1962022,0.45401478,-2.566408,-0.19416167,-0.18353525,0.2862205,-0.12716451,-0.38592246,0.03473693,-0.4060637,0.52609354,0.32832307,0.5443453,-0.6351814,0.25009373,0.36839265,-0.44656482,-0.13696441,-0.6432771,-0.3061504,0.04443642,0.34421787,-0.115678705,-0.022257438,0.18164136,0.3352509,0.42217702,-0.14131741,0.2572653,0.27657053,0.52317685,-0.07872309,0.6314874,-6.9210575e-05,0.4955024,-0.06559657,-0.18635209,0.34594154,-0.23987405,0.37494573,0.04697759,0.15124881,0.4553135,-0.41451332,-0.9255361,-0.73015565,-0.39147496,1.0186881,-0.22622505,-0.43317208,0.16132498,-0.24358581,-0.3578314,-0.0799791,0.3892363,-0.10837387,0.19447507,-0.8665784,-0.03502271,0.031804383,0.08981283,-0.03191228,-0.012699955,-0.47077134,0.67067283,-0.07068209,0.4943145,0.52776253,0.15433316,-0.34511408,-0.48810458,-0.030601034,1.0588735,0.50134236,0.16747044,-0.21240175,-0.23296528,-0.60475737,-0.10452999,0.14104472,0.4538377,0.8081218,-0.06737717,0.3410187,0.22111401,0.07337988,0.047320914,-0.34548423,-0.27033347,-0.019823765,-0.028435988,0.46444947,0.49229988,-0.21750818,0.6073853,-0.1680646,0.3199315,-0.051181395,-0.6019927,0.48751047,1.084964,-0.22089885,-0.26297566,0.6333136,0.47975713,-0.23451957,0.47271737,-0.5713959,-0.20305718,0.600057,-0.1346786,-0.48466867,0.39824414,-0.30878776,0.16336186,-1.0772723,0.3154487,-0.31250063,-0.3930588,-0.4313113,-0.07935242,-3.335787,0.29024336,-0.19379644,-0.24409625,-0.15631105,-0.2192129,0.20763591,-0.6753928,-0.768247,0.16702403,-0.040521245,0.8172326,-0.12741055,0.14308141,-0.1448232,-0.35199824,-0.23906915,0.10815982,0.06648238,0.32331187,-0.11990982,-0.58173674,-0.11356833,-0.15970738,-0.5221409,-0.05411085,-0.6113846,-0.56259733,-0.13603947,-0.49839282,-0.37298733,0.62281895,-0.32029432,0.011101552,-0.18283477,-0.101189256,-0.03076773,0.2686239,0.15744445,0.1028802,-0.036478523,-0.040192153,0.0443112,-0.24046536,0.22199099,0.16366991,0.08337648,0.29978782,-0.17925501,0.44119564,0.42943606,0.6183917,-0.15653683,0.77504194,0.44256353,-0.17250942,0.22403495,-0.29754353,-0.30278826,-0.62792534,-0.33016735,-0.10712586,-0.46842402,-0.59982425,-0.14045012,-0.33643037,-0.774031,0.6199969,0.031776633,0.20076513,-0.14867337,0.37757453,0.4074903,-0.3411576,-0.23060772,-0.11191702,-0.14323135,-0.62274677,-0.23383144,-0.7379053,-0.55926967,0.14143465,0.949212,-0.26689953,0.047821227,0.017248144,-0.25328654,0.088749655,0.26540598,-0.14218965,0.1912349,0.41390345,-0.08609251,-0.79521674,0.56931543,-0.035615858,-0.31004477,-0.4816077,0.14924327,0.74409306,-0.6012735,0.45344004,0.453616,-0.09496229,-0.10035067,-0.56473416,0.02439034,-0.09017385,-0.25188574,0.48912543,0.13632932,-0.701261,0.4336774,0.40084288,-0.32397437,-0.6755437,0.8156294,0.02150515,-0.19914544,0.06577579,0.37005195,0.10627967,0.011299408,-0.4444839,0.318597,-0.42047969,0.21938123,0.35540298,-0.11551453,0.24161077,-0.10797359,-0.19554065,-0.8705861,0.20033012,-0.4649462,-0.34072414,0.29211977,0.009431356,-0.023634102,0.18768182,0.2368112,0.328963,-0.40754414,0.12080508,-0.1266318,-0.25284633,0.30850416,0.47535083,0.52961504,-0.39110607,0.59618366,0.007263056,-0.12699953,-0.13707522,0.106641054,0.4760827,0.17232253,0.41624776,0.054571528,-0.220296,0.3977371,0.6192247,0.19497742,0.53412914,0.18510172,-0.108929045,0.044818323,0.19407465,0.30987972,0.0013571637,-0.47222233,0.107310824,-0.2663559,0.035713017,0.6737533,0.15896933,0.14718816,-0.07863616,-0.3824597,0.0472983,0.25954786,0.1211039,-1.1654383,0.46099105,0.2353113,0.7761173,0.5204198,0.027541274,0.112308346,0.50022525,-0.29531756,0.074591376,0.36842662,0.13221075,-0.56876665,0.59962493,-0.7981977,0.46499962,-0.116461776,-0.071337454,0.10225354,-0.20697454,0.52823377,0.9574255,-0.12937911,0.119713865,0.04754021,-0.25993168,0.25289255,-0.49513426,-0.15017411,-0.4887344,-0.31900564,0.75674754,0.4888385,0.33546087,-0.15878011,0.07125119,0.16204987,-0.22801626,0.2053045,0.13563606,0.38198736,-0.117140494,-0.67563117,-0.16018017,0.5557974,-0.10166112,0.199546,0.016054723,-0.30603582,0.28048334,-0.13400635,0.1836066,0.009986199,-0.8969626,-0.0922221,-0.41067204,-0.35167673,0.48493305,-0.08702464,0.24657877,0.21898971,0.08224206,-0.22565378,0.41861466,0.042275198,0.7213928,0.13133483,-0.23449601,-0.17959872,0.29641703,0.28577217,-0.21882905,-0.009733751,-0.21017613,0.03329822,-0.6903623,0.51395184,0.098186135,-0.26613936,0.12949656,-0.109679095,0.07488187,0.5218879,-0.040830277,-0.23224136,-0.1012911,-0.08778589,-0.15471642,-0.19132008,-0.15729699,0.27188274,0.24384192,0.02008405,-0.1508769,0.14123353,-0.11414986,0.34453663,-0.19087513,0.5555478,0.47087142,-0.028383812,-0.43248683,-0.20439386,0.18478394,0.38494888,-0.095752396,-0.09302684,-0.26984826,-0.50585043,-0.30703142,0.04758542,-0.24123861,0.4033548,0.16543972,-0.16289137,0.85000277,-0.10604906,1.1976229,-0.014743464,-0.53433836,0.096047476,0.53951275,-0.11804887,-0.2502993,-0.36372772,1.0774907,0.41506705,-0.10840028,-0.027402142,-0.32712728,-0.054790054,0.16487744,-0.24950038,-0.24392878,-0.028468935,-0.5011379,-0.33480915,0.18531029,0.31707683,0.24367319,-0.08871853,0.09669745,0.42250603,-0.06466043,0.17371239,-0.4639047,-0.20555626,0.23817512,0.29508683,-0.15837573,-0.042232297,-0.43351296,0.5112027,-0.524762,0.13616803,-0.24935065,0.23390748,-0.3165733,-0.46948925,0.17585982,0.06345487,0.30337963,-0.29685074,-0.3300068,-0.26661333,0.44049096,0.17265697,0.12216295,0.5643031,-0.38227373,0.21727876,-0.005163624,0.35010582,0.9781167,-0.2406872,-0.11325772,0.4713904,-0.4590394,-0.5365029,0.40887478,-0.41436115,0.3221054,-0.0055781007,-0.27370983,-0.5833519,0.19215098,0.19050038,0.14326811,-0.11540025,-0.5924517,-0.09388084,0.33289906,-0.3242322,-0.26681495,-0.38718864,0.28832078,0.539302,-0.32741514,-0.36783424,0.14035007,0.08466702,-0.0896563,-0.40592545,0.013024275,-0.24356273,0.49527645,0.037351962,-0.36506334,-0.12298727,-0.04052004,-0.3943286,0.18010874,0.16489598,-0.3248356,0.1077215,-0.46669704,-0.18309353,0.9125694,-0.28417447,-0.057936706,-0.3469151,-0.4827482,-0.6652355,-0.33799484,0.52802926,0.07296662,0.12000973,-0.54151195,0.116818376,-0.18114181,-0.0317122,-0.09189852,-0.21948694,0.47526845,0.18644162,0.37067577,-0.11672736,-0.7917614,0.3141573,0.03184136,-0.19225402,-0.70735186,0.5515915,-0.11406733,0.6541123,0.15983033,0.15016833,0.5468053,-0.5905445,-0.046872754,-0.13133706,-0.07539145,-0.5695641,-0.034183167,719 +515,0.27004704,0.09878052,-0.601244,-0.0718801,-0.00892718,0.1617756,-0.20407669,0.4040646,0.2343448,-0.32302052,-0.058262087,0.02027535,-0.04352806,0.23933336,-0.11662308,-0.36825252,0.04355868,0.2342645,-0.45239702,0.30508417,-0.46457857,0.3217008,-0.26087973,0.39003235,0.016135285,0.34781554,-0.028995337,0.1721853,-0.24776728,-0.2303617,0.29226503,0.19022115,-0.49569172,0.34465408,-0.14087379,0.0005495591,-0.2372166,-0.40955004,-0.4678057,-0.757802,0.231645,-0.7716847,0.5586074,-0.14965387,-0.32637954,0.31347817,0.17743611,0.33894387,-0.22956474,-0.11022939,0.27181092,-0.20701721,-0.3425056,-0.13189928,-0.2863775,-0.21155095,-0.5492713,0.05109427,-0.3741918,0.023335287,-0.29080504,0.1866063,-0.22207682,0.14994048,-0.19966806,0.35798475,-0.38105503,0.010950767,0.21018317,-0.18190591,0.20684913,-0.5284766,-0.049191363,-0.042226363,0.12670784,-0.16281475,-0.049037017,0.20341362,0.044161517,0.40114588,-0.18863118,-0.025428291,-0.37370515,-0.1464984,0.16231427,0.40876678,-0.11858315,-0.20828071,-0.14725111,-0.13852336,0.21296217,0.1312856,0.037103694,-0.28271618,0.0622133,-0.011946797,-0.13811967,0.35041276,0.5421484,-0.079120524,-0.1849312,0.35107422,0.72598636,0.09558939,-0.1314685,0.18230596,-0.02114229,-0.36323637,-0.2204987,-0.09839845,-0.04738077,0.20488583,0.035267893,0.110463016,0.5988751,-0.25571522,-0.069022976,0.12516132,0.075199,0.12572353,-0.40152827,-0.2932361,0.29815155,-0.39291957,0.011788045,-0.16230643,0.50883377,-0.0127939535,-0.68307686,0.3505436,-0.4559466,0.034295704,0.113797136,0.5851664,0.546112,0.46593806,0.1560519,0.7816434,-0.4023235,0.06710956,-0.03668068,-0.13524981,0.05922384,-0.13215454,0.1058134,-0.40574387,-0.03240345,0.20689198,-0.3087649,0.10535463,0.30738616,-0.39379242,-0.17523924,0.008204094,0.68824136,-0.33505553,-0.07227891,0.70796585,1.212018,0.8588092,0.08276122,1.2385689,0.19035877,-0.15203758,-0.1721909,-0.15068136,-0.8217211,0.25842017,0.13846467,-0.42867568,0.259856,0.19231628,-0.04746661,0.2980654,-0.63079417,-0.082568385,0.008956045,0.39613748,-0.0717019,0.013425546,-0.4262929,-0.19499062,0.17704932,0.016108423,0.30403122,0.31622198,-0.31456038,0.2663394,0.12070242,1.3223046,-0.09801627,0.024238441,0.16348681,0.32111782,0.038111,-0.26039377,-0.22749636,0.21534093,0.41038546,-0.06904952,-0.47903356,0.09240341,-0.095456414,-0.48644704,-0.16634752,-0.26541284,0.0284866,-0.31145653,-0.09423405,-0.13244788,-0.21395846,-0.62275887,0.3957521,-2.5661278,0.025663922,-0.12949945,0.3152309,-0.07338006,-0.26398033,-0.30844137,-0.34381437,0.41561985,0.27712527,0.39980632,-0.33819535,0.3124116,0.43277508,-0.52630794,-0.10494088,-0.50600797,0.017110033,-0.05245769,0.16917567,0.091250315,-0.10031925,-0.11741773,0.17511158,0.41707343,0.028286096,0.15087683,0.63846123,0.312316,0.015502938,0.37039217,0.025534581,0.56818664,-0.42062452,-0.2882146,0.4162586,-0.5309343,0.21200506,-0.17479374,0.0930658,0.22800136,-0.24556479,-0.711563,-0.5718099,-0.2168525,1.4281044,-0.2891013,-0.49193925,0.21997619,-0.36824903,-0.46577832,0.07026488,0.41387647,-0.27698418,0.01892412,-0.80902684,-0.11849492,-0.168376,0.39852777,-0.08967515,0.14808466,-0.50757533,0.62936074,-0.27867365,0.49752426,0.39335653,0.12985203,-0.36455092,-0.3542467,0.08939146,1.199665,0.393977,0.11742069,-0.123386726,-0.07845016,-0.32550997,-0.28806353,0.12724304,0.563485,0.627328,0.08923793,0.12800519,0.22648756,-0.18002573,-0.0092865275,-0.05965944,-0.38146538,-0.15434943,0.08953164,0.71353483,0.46095052,-0.14743721,0.45153528,-0.16764371,0.26233673,-0.2120907,-0.33624056,0.33446807,0.50554574,-0.18235694,-0.35090902,0.694656,0.45370245,-0.36275482,0.51780844,-0.5676698,-0.518803,0.29928207,-0.15680972,-0.39958566,0.31322676,-0.16662966,0.11716948,-0.7490769,0.22490653,-0.17454675,-0.8668472,-0.5289424,-0.28472856,-2.3324883,0.1586487,-0.033039086,-0.2800283,-0.12210434,-0.07348677,0.25959924,-0.24319705,-0.7038273,0.037524752,0.049685035,0.6049933,-0.059274454,-0.092546664,-0.1144119,-0.21768986,-0.09973772,0.19780879,0.2718014,0.3600314,0.016744647,-0.3981643,-0.17500795,-0.07934762,-0.37549755,-0.12971206,-0.63315105,-0.38300166,-0.14090368,-0.5880289,-0.16948655,0.58025587,-0.58536917,0.0077169323,-0.29960877,0.016550258,0.072956696,0.43708473,0.09642462,0.26726943,0.25526795,-0.3396209,0.08203886,-0.13245435,0.37191078,0.06463255,0.34162435,0.49382755,-0.29953665,0.1427788,0.4562079,0.66949016,-0.060186148,0.91738015,0.23007931,-0.11767929,0.29351264,-0.22827768,-0.2255899,-0.32628626,-0.17879952,0.083171286,-0.38894752,-0.2924057,-0.1499091,-0.33143708,-0.87906593,0.4384386,0.0005701291,-0.058376115,-0.075048395,0.3184677,0.28541797,-0.020179978,-0.03571168,-0.18919924,-0.13046142,-0.37479332,-0.46244907,-0.60373586,-0.49291056,0.07099219,0.9993278,-0.13132156,0.16336273,0.091611706,-0.20232831,0.19629605,0.15188074,0.13508418,0.10600096,0.46140385,0.055686686,-0.49967977,0.26161703,-0.33231807,-0.15146014,-0.6540008,0.23416379,0.8054016,-0.47811207,0.53214365,0.3464326,0.12802884,-0.21819602,-0.572064,-0.07068856,-0.03420416,-0.21817502,0.52297443,0.22353365,-0.8542139,0.53905374,0.2582927,-0.26264945,-0.78287876,0.39037028,-0.12677182,0.09743556,0.07690936,0.47752824,-0.1667874,0.04067222,-0.3029904,0.25225088,-0.2686111,0.11965004,0.20985948,-0.12971735,0.6008034,-0.33453205,-0.12753803,-0.5376567,0.057525635,-0.45563594,-0.2717691,0.03849863,-0.0776459,-0.11916505,0.25879946,-0.07036575,0.380348,-0.39949685,0.04118528,-0.18341374,-0.44114804,0.4206121,0.42460775,0.54983675,-0.4206201,0.6126564,-0.06526558,-0.06752534,-0.114008866,-0.12237085,0.55224425,-0.0760942,0.3061503,0.16411419,0.06446726,0.2772645,0.6501179,0.21861546,0.44075033,0.012337974,-0.22092223,0.07903799,0.100224875,0.22597443,-0.09299667,-0.5152655,0.08127177,-0.05045041,0.14709094,0.35149246,0.19251074,0.5360745,-0.12874983,-0.281998,0.116493836,0.1314119,-0.29251575,-1.2345656,0.6028605,0.034819003,0.71002823,0.31548914,0.03464586,0.245972,0.582194,-0.041458346,0.061116654,0.18509722,-0.05350835,-0.436457,0.43676552,-0.8169188,0.48560783,-0.10926468,0.0707135,0.22795178,0.039263885,0.65401167,0.8600965,-0.020644372,0.061567597,0.017458204,-0.15017429,0.13115819,-0.3205193,0.36395815,-0.42787567,-0.38032433,0.7695845,0.38221043,0.5292389,-0.22047426,0.046715815,0.1042803,-0.2310088,0.1555181,-0.022503955,0.029922951,-0.050044518,-0.66346043,-0.25304297,0.27286336,0.22287358,-0.043789823,0.092597164,0.012921325,0.2618461,-0.050774135,0.062156446,0.051509734,-0.54856825,-0.029951004,-0.28034416,-0.3822215,0.05430711,-0.2670907,0.19702604,0.13708876,0.009939717,-0.4583919,0.327609,0.20383403,0.7754661,0.08365675,-0.26182565,-0.25174242,0.25775135,0.20040925,-0.25481853,0.024902727,-0.39236715,0.07478318,-0.73040044,0.40900442,-0.44760802,-0.5873379,0.3877483,-0.20051566,-0.0063421256,0.60336226,-0.22760434,-0.03720987,0.007861682,-0.34717157,-0.11891414,-0.27072874,-0.18363805,0.1726892,0.060918104,-0.2800421,-0.10967897,0.031186821,-0.16759978,0.2675695,0.019522434,0.26070425,0.6134402,0.23994239,-0.36023912,0.074129805,-0.013377096,0.6025429,0.0882058,-0.020757878,-0.3702976,-0.30690745,-0.19688371,0.5093894,-0.20018485,0.22550611,0.20704865,-0.28786275,0.60296017,0.04637054,0.9287816,-0.0019627213,-0.27739227,0.14356944,0.60663193,0.095222555,-0.054579634,-0.4085338,0.9431488,0.5172039,-0.18906318,-0.12498784,-0.5030435,-0.08800923,0.15968503,-0.28836137,-0.32093158,-0.13908121,-0.7853546,-0.29617745,0.23678258,0.3687823,-0.055863384,-0.09468836,0.22297947,0.29272765,0.067256495,0.3314211,-0.45789668,0.17902705,0.47764477,0.1294008,-0.10782622,0.09863453,-0.39574283,0.28197452,-0.59891826,0.023622807,-0.13194145,-0.025496768,-0.093144335,-0.37791902,0.15386827,0.05809613,0.32235974,-0.33313426,-0.22475788,-0.124258876,0.47615114,0.1682509,0.041547008,0.49277976,-0.21404047,0.059384603,0.08159765,0.45485803,0.9368853,-0.16996267,0.049470525,0.23501706,-0.2605271,-0.5962428,0.22603247,-0.3234082,0.14835466,-0.13297965,-0.46172574,-0.40864322,0.31793332,0.17296766,-0.087510146,0.058197703,-0.34685454,-0.07268451,0.082968235,-0.12630817,-0.10466494,-0.30576086,-0.052656036,0.5693554,-0.10370413,-0.4077707,0.113527164,0.2923186,-0.22696202,-0.5486534,-0.03255575,-0.36966324,0.28400734,-0.16439082,-0.22803184,-0.13434775,-0.17080598,-0.3658516,0.21213377,0.11591627,-0.29761153,-0.031855095,-0.16360356,0.044573486,0.50222296,-0.12143018,0.05465946,-0.5208655,-0.4975681,-0.96958894,-0.21793284,0.1352805,0.09286658,-0.17352052,-0.6299882,-0.08066107,-0.26002076,-0.035848297,0.07129356,-0.46588808,0.3541545,0.24291532,0.30839258,-0.33132508,-0.7989359,0.078432225,0.09497424,-0.3499848,-0.48346472,0.51830494,-0.005296477,0.544206,0.025689304,0.1366544,0.20095615,-0.6276536,0.22770795,-0.04745164,-0.17568524,-0.53603554,0.17441688,727 +516,0.30035493,-0.11809184,-0.4159987,-0.2716634,-0.2866388,0.036165744,-0.2941963,0.28098148,0.22664814,-0.19695385,-0.17678106,-0.2638447,-0.0068976944,0.38785848,-0.1375585,-0.37689313,-0.2788577,0.040159274,-0.76322895,0.5109687,-0.52005666,0.17671338,0.108864605,0.41573787,0.22843218,0.4258769,0.33145848,-0.167362,0.013371468,-0.06860163,0.0019816202,0.07687448,-0.47538495,0.036906064,-0.2212648,-0.267834,0.055944927,-0.5609022,-0.20398687,-0.64184105,0.29850507,-0.8148857,0.5098056,0.039753202,-0.040643,-0.04374134,0.4542927,0.39010724,-0.28978205,-0.054000217,0.2751611,-0.12925424,-0.013558149,-0.112046,-0.017957082,-0.34394678,-0.48251247,-0.0731346,-0.5219303,-0.36699295,-0.10890126,0.20650294,-0.29912797,0.0844893,-0.00046232768,0.40118632,-0.4154224,-0.09692324,0.29553205,-0.24822533,0.37475234,-0.48097256,-0.09123441,-0.09398973,0.5366587,-0.050499994,-0.06870703,0.24030216,0.15866616,0.37646046,0.083027504,-0.1592305,-0.20157732,-0.22083218,0.009084514,0.49368498,-0.059649944,-0.25197086,-0.11026347,0.008033807,0.24886346,0.29340845,-0.0019150674,-0.17410564,-0.0032013555,-0.11758012,-0.24688436,0.51506394,0.46329013,-0.24215399,-0.2539529,0.2900359,0.5512545,0.28312683,-0.24839534,0.0889694,0.10117962,-0.47156376,-0.059389837,0.10065425,-0.10316352,0.38883844,-0.101916626,0.26137236,0.7571012,0.019537073,0.05114078,-0.069721095,-0.11158508,-0.16206013,-0.14176278,-0.13515925,0.11146825,-0.46526742,-0.0109079955,-0.21022268,0.6228982,0.08188575,-0.66413736,0.3029285,-0.64868414,0.14514394,-0.064502284,0.6135562,0.6523814,0.33743852,0.41062632,0.7674794,-0.22005498,0.16378066,-0.023804171,-0.3219393,0.13361248,-0.3135626,0.102789745,-0.5180277,0.0866129,-0.019629518,0.09217308,0.036513235,0.2633585,-0.4241461,-0.05099656,0.30324563,0.7297907,-0.22757967,0.013145238,0.7598061,1.0977889,0.9030322,0.06296901,1.0127466,0.22083203,-0.3122937,0.18650964,-0.28302076,-0.75564355,0.26264656,0.38130498,-0.0772313,0.37156412,-0.08179905,-0.014512547,0.24765821,-0.4902318,0.24259874,0.083420254,0.17017958,0.27552918,-0.05633735,-0.34549642,-0.1717345,0.038145144,-0.041510113,0.22290793,0.07837285,-0.17920081,0.3147153,-0.094435014,1.2412459,-0.00011648451,0.07561225,0.22194818,0.64922506,0.15174921,-0.13056591,-0.14781228,0.36881274,0.301719,0.10443817,-0.6058055,0.37104735,-0.24127285,-0.37949032,-0.20262848,-0.37598085,-0.22800303,0.062409665,-0.3741303,-0.13797939,-0.05112241,-0.33885834,0.2892334,-3.0762293,-0.24678007,-0.25832847,0.28266177,-0.25429773,-0.003177977,-0.1274955,-0.46964145,0.25320187,0.44755417,0.41070274,-0.6139097,0.587402,0.50418395,-0.5767931,-0.13817404,-0.60814935,-0.08107465,-0.052153733,0.5125739,0.099559076,-0.07425316,-0.119727716,0.41023207,0.5775781,0.15512596,0.074668966,0.38916424,0.4509937,0.12508523,0.61792195,-0.052046973,0.35896853,-0.34230417,-0.046081662,0.36765814,-0.36146116,0.08979827,-0.11700572,0.08563824,0.48460874,-0.48614216,-0.904556,-0.63242376,-0.30030444,1.048061,-0.18704227,-0.3171801,0.22292389,-0.324439,-0.08165907,0.0040441835,0.75911057,-0.12263918,0.20617819,-0.7812239,0.04311642,-0.13890597,0.17808388,0.03536875,-0.039864004,-0.41893452,0.63484573,-0.025429975,0.5913387,0.20953175,0.14676669,-0.30334845,-0.39122176,0.22941709,0.6134585,0.17332764,0.040356047,-0.16467948,-0.11520749,-0.12308011,-0.16707988,-0.040481146,0.43180853,0.6389373,-0.023530956,0.31142697,0.32982343,-0.17904009,-0.101697505,-0.03759045,-0.10942041,-0.008194432,-0.014277114,0.42802358,0.7341689,-0.16441451,0.39478213,-0.13065019,0.388941,-0.15400144,-0.4174841,0.5898906,0.35428327,-0.1267165,-0.075574055,0.4540605,0.5701845,-0.40184242,0.43576762,-0.6187225,-0.31640244,0.56947386,-0.12065788,-0.48731643,0.28711846,-0.24639232,0.121609025,-0.8539758,0.27871007,-0.25516874,-0.26075524,-0.3867576,-0.16748299,-3.2563517,0.07256072,-0.14432155,-0.2942681,-0.24092317,-0.040356636,0.32604295,-0.5600007,-0.64025027,0.08614312,0.23320298,0.6459103,-0.067703456,0.13582957,-0.32423338,-0.06231751,-0.2552323,0.24431899,0.022579445,0.3169115,-0.1482484,-0.39176723,-0.044443876,-0.14192979,-0.49913263,0.11399046,-0.30941173,-0.45250437,-0.04673692,-0.45247778,-0.3439569,0.54285765,-0.23797964,-0.002862513,-0.2978448,-0.00830519,-0.10404665,0.30202565,0.12948874,0.08258343,0.076685704,-0.0050577563,0.038937535,-0.22462974,0.44428518,0.0023848393,0.31208983,0.16058062,0.0657065,0.2194821,0.43131495,0.4643702,-0.07372112,0.93479574,0.38760582,-0.0020076616,0.18716672,-0.26463956,-0.13499367,-0.3911372,-0.16041319,0.004687982,-0.34320793,-0.53552234,-0.001618066,-0.2719969,-0.73559386,0.58011657,-0.08900004,0.2136384,-0.016376961,0.14896436,0.26836446,-0.18813215,0.019973282,0.081477486,-0.060104396,-0.43326664,-0.14434643,-0.57490253,-0.40574282,-0.13042022,0.79146826,-0.27147684,-0.026863307,-0.05855522,-0.35247713,0.0638807,0.07525168,0.16355903,0.42977116,0.44006896,0.017842485,-0.68960285,0.3094,-0.32065398,-0.10285287,-0.47812325,-0.03375758,0.5696556,-0.6385269,0.3506339,0.33149862,0.08885784,-0.1954498,-0.3596724,-0.09103044,-0.18044142,-0.21156655,0.40049392,0.04063714,-0.77511895,0.52810025,0.12685354,-0.38223958,-0.6724521,0.35518903,-0.06658421,-0.33386487,0.0045628375,0.21732858,0.08781905,-0.041442513,-0.2885789,0.1859365,-0.2836246,0.2578235,0.03546514,-0.0347211,0.50436497,-0.022385415,-0.24671762,-0.51225406,-0.026210103,-0.5056398,-0.2629431,0.33181778,0.039257474,0.026473012,0.1927524,-0.014747858,0.29286128,-0.106870994,0.019748459,-0.0068831933,-0.2117299,0.14859591,0.41526684,0.39163184,-0.4725655,0.56108713,0.042566907,-0.13391875,0.14511831,-0.10303114,0.2962874,-0.028428605,0.3392758,-0.10070914,-0.17852703,0.42354387,0.6350779,0.21397354,0.30824375,0.17052762,-0.065975145,0.54707664,-0.037120786,0.08172311,-0.11377245,-0.44786796,-0.018675115,-0.28116292,0.16641161,0.4020707,0.20261881,0.33174726,-0.0068461723,-0.20035665,0.031221423,0.1739624,-0.24922241,-1.1434567,0.31451705,0.25188205,0.82704216,0.44070843,-0.09045101,0.010040445,0.8675801,-0.19420457,-0.071912654,0.38491017,0.07758568,-0.48133823,0.7017098,-0.49683157,0.5425177,-0.11407174,-0.19385602,0.07691084,0.08154558,0.26780534,0.68180245,-0.15206374,0.0016232098,0.028575126,-0.23004715,0.05156677,-0.21716364,0.03996629,-0.48169142,-0.25037763,0.6514778,0.29930612,0.29123253,-0.15150645,0.02070455,-0.029745694,-0.09163005,0.23404738,-0.13509646,-0.14369114,0.04830129,-0.6710782,-0.19923863,0.50624543,0.097935975,0.23445769,-0.07721543,-0.36671862,-0.034409355,-0.18722892,0.009571399,-0.13709648,-0.6511747,-0.021343691,-0.054386787,-0.47640854,0.5012201,-0.37588575,0.19365717,0.18577358,-0.063934416,-0.20022199,0.25714648,0.085054316,0.67920345,-0.027766194,-0.19372347,-0.24184707,-0.098254494,0.20078447,-0.284712,-0.08061123,-0.44829965,0.17195596,-0.5618874,0.7209055,-0.08799849,-0.4348009,0.16634737,-0.2567515,0.052156202,0.57170135,-0.06877563,-0.078750424,-3.5179513e-05,-0.16465662,-0.25051898,-0.013671279,-0.43299022,0.2742056,0.29034895,-0.11555624,-0.117162034,-0.09758551,-0.11260842,0.5808383,-0.11028483,0.5108792,0.23196211,0.1225604,-0.21484415,0.09527261,0.11360991,0.48097536,0.25778374,-0.092638746,-0.31248263,-0.36055464,-0.18813434,0.328013,-0.09486502,0.16149613,0.077983454,-0.29567248,0.74263734,-0.044189777,1.0363333,0.11429068,-0.29470873,0.10550898,0.42475447,0.05924114,0.030388903,-0.41430897,0.7138745,0.52976376,-0.17036955,-0.099648125,-0.38988128,-0.048659377,0.2719659,-0.22290508,-0.077410996,-0.10989065,-0.5311307,-0.37125203,0.2052765,0.08363713,0.1568375,-0.08643885,0.046683274,-0.08504285,0.11503854,0.350956,-0.5273433,-0.13305147,0.24545656,0.14231674,-0.11502323,0.023083525,-0.4386677,0.48573372,-0.66628927,0.1329116,-0.38855615,0.11485551,-0.30963635,-0.29778114,0.09158746,0.07830316,0.39079434,-0.18092252,-0.39641777,-0.05850133,0.4276093,0.11687499,0.19624509,0.56421137,-0.20281148,0.06661625,0.036636464,0.56543267,1.0682606,-0.40374067,0.11926048,0.15936805,-0.35452673,-0.521648,0.34105107,-0.37693837,0.016426532,0.027188053,-0.24784592,-0.36254972,0.18471472,0.19567527,0.15124068,-0.07698887,-0.494817,-0.38197723,0.2752221,-0.23367535,-0.29326358,-0.33892503,0.116687186,0.5592479,-0.14026347,-0.21671322,0.111064374,0.41695222,-0.264294,-0.45632404,0.015142009,-0.24678068,0.40810776,0.01753513,-0.24781497,-0.18392079,0.17427394,-0.48746672,0.24828966,0.22571622,-0.41119552,0.0037418348,-0.2527857,-0.118797354,0.9093477,-0.21322788,-0.09941498,-0.5025113,-0.48674282,-0.9461485,-0.35476658,0.30011436,0.06363552,-0.094983555,-0.26981995,0.038678613,-0.034593817,-0.2068573,0.116142415,-0.58232445,0.27035433,0.06387805,0.53585565,-0.21967106,-0.84587634,0.057159323,0.023328325,-0.1387414,-0.57608825,0.59982616,0.08328576,0.7054062,0.019992009,0.057012964,0.028481502,-0.3221775,0.13741562,-0.29932407,-0.1327024,-0.71500957,0.14986242,732 +517,0.30398136,-0.39187902,-0.4141622,-0.14616463,-0.22436616,0.024803162,-0.10991318,0.36059633,0.12539342,-0.3614828,0.033037465,-0.15297236,-0.067473896,0.46375614,-0.14449224,-0.46438196,-0.096097626,0.16920808,-0.5294794,0.5737235,-0.39998585,0.27712014,0.14126904,0.29913405,0.10500741,0.18332376,0.06081019,0.024213556,0.1436549,-0.097526856,-0.097716495,0.31461474,-0.64239985,0.27339894,-0.080694005,-0.35422748,0.14381473,-0.2705072,-0.44896084,-0.7296851,0.34153542,-0.9603845,0.5629898,-0.03621701,-0.3778006,0.21650805,0.06799147,0.2530714,-0.30634397,-0.10632143,0.22073725,0.03396899,-0.005794708,-0.2172562,-0.113422684,-0.4124134,-0.53691113,-0.07865093,-0.658779,-0.30531257,-0.16274606,0.16806783,-0.30509892,0.14183882,-0.18740024,0.22323386,-0.52033937,-0.05175588,0.108520344,-0.18929315,0.30680758,-0.5944517,0.024763187,-0.12870125,-0.10157995,-0.022573212,-0.15053786,0.44515923,0.13805206,0.6073046,-0.05407806,-0.24471018,-0.19339943,-0.0018293688,0.09936958,0.4995527,-0.21808,-0.36325017,-0.30917436,0.099682204,0.45947388,0.17686756,0.12538323,-0.3988156,0.02830729,0.08451432,-0.23414294,0.42131826,0.47625142,-0.37119243,-0.34214836,0.27109915,0.59903055,0.04103134,-0.14504297,0.10645928,-0.04900426,-0.34439462,-0.127687,0.053500373,-0.42170244,0.32713684,-0.073198594,-0.006018315,0.6446174,-0.24434277,0.03852922,0.010044603,0.006062182,-0.13187091,-0.32170385,-0.31448594,0.2830481,-0.60246575,0.011523698,-0.17615642,0.7407188,0.0298644,-0.7400526,0.28871012,-0.48458603,0.0808833,-0.2282878,0.5905718,0.7029271,0.5790296,0.20691052,0.8276189,-0.5958942,0.089389905,-0.1464471,-0.22758915,0.21386531,-0.27880603,-0.15164076,-0.5352573,0.025750687,-0.11289751,-0.13226718,-0.12760869,0.4492479,-0.61047494,-0.032692082,0.19366752,0.7525711,-0.41293257,0.095918484,0.5592993,1.1624308,0.8852683,0.020155653,1.0638154,0.29589134,-0.17795017,0.33893722,-0.18689765,-0.7918325,0.2676414,0.54821545,0.1454743,0.28284648,-0.027232736,0.042063158,0.2937119,-0.39667234,0.0331512,-0.21762967,0.37078694,-0.014139013,-0.029090133,-0.6318773,-0.0882302,0.12933423,0.034928963,-0.08558738,0.2762145,-0.302177,0.34526494,0.15161373,1.6311041,-0.075279124,0.120005146,0.13515289,0.50287265,0.2536648,-0.094654515,0.031490557,0.37474364,0.376475,0.093071565,-0.6912777,0.18932894,-0.22975442,-0.60656625,-0.24176535,-0.39717293,0.10625402,-0.19057943,-0.394754,-0.31431314,0.0780226,-0.274814,0.36542824,-2.5025342,-0.13698164,-0.17503607,0.29664963,-0.33995518,-0.3280129,0.108333744,-0.3885754,0.2856745,0.40332645,0.43955508,-0.53491455,0.43698066,0.5211498,-0.48045564,0.031645842,-0.52030575,-0.19402596,-0.11983595,0.50026083,0.10687325,-0.18117058,-0.14553383,0.27721542,0.5411418,0.02653956,0.19262914,0.35884312,0.29290587,0.02679901,0.4959263,0.014900216,0.42524981,-0.26715058,-0.15598263,0.4795052,-0.18435076,0.17875662,-0.018929511,0.19037852,0.45456654,-0.41763765,-0.9194093,-0.65546024,-0.08263328,1.2739352,-0.42940703,-0.6671161,0.40608162,-0.2800075,-0.15021415,-0.15698382,0.21050152,-0.108272396,0.058232088,-0.8703822,0.09132037,-0.062499147,0.3395443,-0.049513023,-0.01761954,-0.3551933,0.68161243,-0.04106434,0.5172587,0.17469113,0.09755586,-0.31928143,-0.54208463,0.12281486,0.9405202,0.45661083,0.08057766,-0.06897448,-0.26913434,-0.08317541,-0.03596117,0.09538519,0.2437253,0.88270104,-0.034524184,0.1015242,0.25766987,-0.18981512,-0.023127168,-0.14267752,-0.39517313,0.04727759,0.15137449,0.51948774,0.4606625,-0.19670825,0.41938347,-0.11887344,0.3936376,0.046146896,-0.5776009,0.25230375,0.97220504,-0.1434714,-0.308513,0.7579953,0.62991947,-0.39340454,0.5548095,-0.74931496,-0.3126615,0.40744242,-0.18022953,-0.39127034,0.14085095,-0.2906975,0.25078645,-0.90162385,0.23556556,-0.2393091,-0.4633961,-0.4441836,-0.24635236,-3.214169,0.22062278,-0.19955884,-0.22409438,0.022875939,-0.07559364,0.46089426,-0.57870656,-0.5179337,0.093205385,0.11522401,0.47934884,0.038380615,0.05594664,-0.2114075,-0.109094076,-0.27824932,0.26827225,0.1879042,0.17190209,-0.04504723,-0.57745224,-0.15760405,-0.12326111,-0.4317127,0.0709692,-0.6369344,-0.57432216,-0.18598196,-0.6478422,-0.18275289,0.5658981,-0.06329959,-0.037523866,-0.18166222,-0.035004433,-0.0366858,0.25422886,0.044280816,0.10935148,0.13736673,-0.039653055,0.014110991,-0.35914087,0.24963264,0.029427385,0.34753013,0.22657335,-0.26123783,0.06942556,0.6657101,0.49562922,-0.010192684,0.76792175,0.6284853,-0.23623072,0.30302042,-0.12095298,-0.40355515,-0.68557864,-0.2466863,-0.1309832,-0.35563794,-0.39393324,0.039459825,-0.41645876,-0.72515386,0.7209064,-0.014865349,0.30410808,0.017679999,0.21753839,0.41611233,-0.14115033,-0.034383755,-0.25082585,-0.26743388,-0.45248237,-0.3604205,-0.79353875,-0.43627542,0.1269375,1.2184027,-0.13777499,0.016329246,0.06968241,-0.06407306,0.020883843,0.04414944,0.027732978,0.39881834,0.43617654,0.007321711,-0.6516774,0.5097988,0.096949145,0.057306536,-0.471523,0.16436994,0.5127238,-0.62471324,0.33742455,0.21763992,0.15101722,-0.046347566,-0.5848638,-0.1338644,0.0068591195,-0.3428848,0.6288505,0.17990127,-0.84114426,0.4835594,0.40003386,-0.4696943,-0.6378605,0.3184184,-0.13269837,-0.1570047,-0.24152268,0.28140858,-0.030141788,0.12590858,-0.15477546,0.19180869,-0.5065113,0.28113556,0.3056927,-0.0941351,0.3832364,-0.27217188,-0.109807804,-0.83450073,0.06130949,-0.5177175,-0.34540123,0.31610677,-0.043673236,-0.16593535,0.3044179,0.05001569,0.5818167,-0.19001436,0.09517195,-0.0044808793,-0.45139295,0.4639193,0.551144,0.47150224,-0.36971134,0.47897926,0.095158376,-0.21909621,-0.26489657,-0.07941586,0.47016767,0.08633657,0.20226865,-0.043896683,-0.11411048,0.47271726,0.9313165,0.19288075,0.39121374,0.0005117144,-0.100534484,0.21627215,0.07304063,0.029993173,-0.06279337,-0.5126246,0.023050938,0.038640756,0.21330471,0.50563204,0.25806108,0.26545545,-0.08803271,-0.19145967,0.03487717,0.15729341,-0.06852476,-1.1752167,0.13676636,0.15508027,0.6092439,0.6004362,0.16284037,0.08726055,0.6457228,-0.20398907,-0.07589793,0.35717955,0.020242682,-0.5620604,0.7205129,-0.6572956,0.43070486,-0.00941386,0.041846786,0.046877097,0.16016081,0.4915984,0.9207117,-0.06025846,-0.02791351,-0.039139103,-0.25573066,0.19819142,-0.384008,0.12687899,-0.28410882,-0.2788771,0.69310534,0.39806882,0.40009174,-0.060392287,-0.067285396,0.12660411,-0.11505818,0.25427446,-0.034925703,-0.034910306,-0.12201496,-0.5698153,-0.16302998,0.57089204,0.27263436,0.06486051,-0.06186978,-0.27247512,0.22462997,-0.2988203,-0.25674292,0.06889009,-0.7123634,-0.024268776,-0.18128864,-0.40804768,0.46537876,-0.091709256,-0.00091576576,0.027827855,-0.0858335,-0.3793705,-0.0020805767,0.12585457,0.73178643,0.0717488,-0.16643612,-0.28614658,-0.118635125,0.007931428,-0.2224152,0.039781775,-0.24600251,-0.025660643,-0.7274281,0.49796405,-0.15993643,-0.47801596,0.23879825,-0.21874261,0.014554603,0.37084123,-0.075848706,-0.19947015,-0.2294148,-0.04420412,-0.2787174,-0.46425796,-0.1590828,0.17336679,0.02095944,0.0027837413,-0.093058065,-0.12104328,-0.02876785,0.6528768,-0.023217235,0.29284927,0.2881208,0.04850216,-0.46922997,0.07801406,0.24595082,0.4351559,-0.20779857,0.15519007,-0.10588573,-0.45193294,-0.28885725,0.038101584,-0.22915986,0.45804468,0.015485878,-0.4600518,0.8990274,0.09771818,1.2638247,-0.11917382,-0.3374758,0.041012228,0.5119369,-0.034687944,0.04545138,-0.37698618,0.8434811,0.68175375,0.008175994,-0.29696327,-0.5922747,-0.24273674,0.23725832,-0.3184998,-0.06543378,-0.11368215,-0.7526347,-0.37564558,0.2786868,0.3764145,0.14596693,-0.02483766,0.15320528,0.114698164,0.0030622035,0.28964105,-0.4336806,-0.088979624,0.29779953,0.25024098,0.06890782,0.0227562,-0.5082938,0.31037423,-0.48901156,0.20582916,-0.33130544,0.0153542,-0.14526126,-0.22653447,0.11478865,-0.009807638,0.28125712,-0.22582886,-0.36657557,-0.20078361,0.6926349,0.15124755,0.10283758,0.6876206,-0.3579484,0.2316049,0.034176204,0.344835,1.0850906,-0.21872935,-0.08362981,0.07470165,-0.4031219,-0.7799187,0.43517545,-0.16465016,0.14892922,0.21673281,-0.37252718,-0.4327623,0.27390847,0.13223375,-0.02954203,0.02317286,-0.49663517,-0.18709655,0.33175293,-0.31496128,-0.16420701,-0.244761,0.1634287,0.62734383,-0.3716298,-0.24472602,0.20621313,0.3652512,-0.29122618,-0.5927849,-0.09632916,-0.38922408,0.2892088,-0.029919872,-0.4069069,0.05339351,0.107309416,-0.34139973,-0.0146005405,0.32861972,-0.32843325,0.10517313,-0.33589795,0.109901465,0.84634686,-0.1131345,-0.26802057,-0.7536851,-0.5180624,-1.0036561,-0.29106537,0.48746333,0.27386567,0.05956914,-0.59035885,0.05575775,-0.24214026,0.014015598,0.029248282,-0.48125196,0.47092873,0.12299421,0.59264964,-0.094622254,-0.69739014,0.30000407,0.18457016,0.12570728,-0.47742394,0.6518,-0.12072502,0.8594946,0.027435286,0.05629784,0.18520942,-0.54539186,0.09461425,-0.2825027,-0.33011743,-0.6793348,-0.021760583,733 +518,0.37550026,0.13050608,-0.57758987,-0.19074376,-0.3422997,-0.058935132,-0.31070575,0.14788334,0.2388876,-0.5302784,0.14000109,-0.14946128,0.07979722,0.14768584,-0.1572769,-0.709128,0.09350567,0.1972173,-0.3991876,0.61325586,-0.53582525,0.2815165,0.24056087,0.0964259,-0.3110822,0.2733162,0.28259805,-0.4491167,0.042669415,-0.2191105,-0.04186294,0.19628148,-0.7365516,0.3859612,-0.039603133,-0.15793978,0.23958024,-0.2950818,-0.32713333,-0.7069325,0.08171161,-0.7686529,0.51965725,0.16830198,-0.2784191,0.18738699,0.077133544,0.09163933,-0.19545837,0.25843272,0.283134,-0.2779657,-0.42726642,-0.30738664,-0.21923673,-0.5412345,-0.5878374,-0.16293809,-0.6877162,-0.03962096,-0.41891482,0.20613186,-0.37466004,-0.10347841,-0.14265725,0.3765731,-0.4983735,0.133005,0.081068076,-0.19729145,0.40714815,-0.4881684,0.10457044,-0.06697204,0.2211705,0.07324046,-0.30573112,0.2274275,0.30834022,0.51628476,0.06078533,-0.27475867,-0.32444948,-0.15423095,0.2320685,0.600526,-0.19409312,-0.1948007,-0.114228085,-0.059360165,0.20747907,0.35789227,-0.25056562,-0.4792936,-0.06747974,-0.09144335,-0.40367183,0.4541466,0.57116455,-0.38882834,-0.076716356,0.38491482,0.30995458,0.023212533,-0.0995245,0.16828553,-0.10550893,-0.5924838,-0.21552685,0.25479656,-0.018937664,0.44908497,-0.12295558,0.23025937,0.7400142,-0.1137022,-0.16956724,-0.07140674,-0.115951575,0.17701554,-0.09374665,-0.1336677,0.31464761,-0.7067751,-0.10574288,-0.38446403,0.83809346,-0.12298006,-0.9629582,0.3770449,-0.5490091,-0.0146725625,-0.1756715,0.8034822,0.66070193,0.7539925,0.10705968,0.78173786,-0.5595303,0.10229965,-0.020958718,-0.57084024,0.42733055,0.06730737,0.17582059,-0.39772436,-0.22982986,0.15007123,-0.0007744602,-0.014511211,0.67416847,-0.3545405,-0.1300563,0.012965219,0.75300074,-0.41174415,-0.18112163,0.55125815,0.9998559,0.66535395,0.2010795,1.2474476,0.2109669,-0.04787717,-0.08912829,-0.18529913,-0.8668213,0.23040536,0.3035876,0.2805939,0.04823052,0.06517693,-0.1565436,0.22041167,-0.23485228,-0.24055764,-0.24397482,0.38902646,-0.17106366,-0.21584927,-0.262942,-0.25120115,0.10475214,0.16911149,0.14413004,0.20709081,-0.048720572,0.3829125,0.15165843,1.4002264,-0.03377149,0.24809039,0.11254054,0.27239457,0.36043134,0.11370375,-0.093987085,0.46227175,0.3699674,0.12815489,-0.5120321,0.10525668,-0.05635907,-0.46457842,-0.09972894,-0.30788913,-0.0037157536,-0.14188167,-0.27684543,-0.1285543,0.07182603,-0.5473256,0.5624991,-2.5868344,-0.072338186,-0.043557126,0.43356118,-0.06560515,-0.1939708,-0.16645849,-0.51913327,0.6198823,0.39005885,0.5672037,-0.5826984,0.39764804,0.52736384,-0.39896083,-0.12933473,-0.7506856,0.044339053,-0.15361652,0.28214732,0.010190955,-0.2538328,0.035076447,-0.006609891,0.556222,-0.08378029,0.20117526,0.36264116,0.38427544,0.09026037,0.47374263,-0.08080799,0.4357326,-0.19018541,-0.14776981,0.20809829,-0.072293,0.23835015,-0.34944016,0.08699341,0.3459806,-0.43531317,-0.85825604,-0.4765595,-0.18836223,0.97267675,-0.4897878,-0.5422405,0.39344302,0.035501175,-0.21214029,0.027663205,0.55663073,-0.1255823,0.1378437,-0.70133644,0.09717094,0.026750786,0.31972095,0.05359838,0.05016301,-0.44965023,0.6102802,-0.07411142,0.6231581,0.49823475,0.09720073,-0.18318368,-0.46486282,0.2010694,0.97752094,0.17309238,0.16449758,-0.24764875,-0.17148617,-0.06270883,-0.14687519,-0.012797533,0.50253886,0.80688536,-0.10881354,0.17190816,0.38610056,-0.14822957,-0.028980078,-0.15630898,-0.46013847,-0.097175285,-0.104776226,0.46766907,0.65126103,-0.16453576,0.4316862,0.00856962,0.3896778,0.024601262,-0.52849615,0.5230273,0.82381105,-0.18368675,-0.16063257,0.584262,0.51293844,-0.09194446,0.51422554,-0.480284,-0.46268123,0.42494917,-0.12186122,-0.6368743,0.30572286,-0.4203309,0.1408196,-0.80316514,0.43308786,-0.3175921,-0.6315122,-0.45292172,-0.035043176,-3.8793585,0.17675476,-0.31849045,-0.04511931,-0.14654692,0.031129241,0.27288222,-0.36459154,-0.4289174,0.15127082,0.2844999,0.46930665,-0.21020176,0.05912543,-0.3595519,-0.13217202,-0.12819684,0.31434542,0.15403771,0.11235467,-0.15440682,-0.46131063,-0.049699843,-0.07720219,-0.3644938,0.01758546,-0.3866941,-0.45112425,-0.096990034,-0.5984779,-0.37869674,0.70785844,-0.4996945,-0.0895108,-0.16665839,0.057785954,-0.043898456,0.4008619,-0.046112087,0.19218019,-0.2058742,-0.071125045,-0.23782137,-0.29946533,0.38621736,-0.055975623,0.17058276,0.43457815,-0.09855539,-0.095218815,0.5673008,0.37791044,0.016764283,0.8696353,0.3248686,-0.13584569,0.24095085,-0.25855327,-0.23257561,-0.7949902,-0.27745634,-0.25193974,-0.5026487,-0.39991826,-0.009522378,-0.42343387,-0.7883729,0.6114926,0.06445449,-0.09257363,0.02713838,0.33781937,0.29457685,-0.049239747,-0.045655813,-0.23550291,-0.21374992,-0.52193594,-0.20396395,-0.7680574,-0.47680452,0.19029872,1.025182,-0.29538855,-0.17452356,0.05001995,-0.021474898,-0.054884885,0.19896431,0.18127373,0.34128046,0.36093563,0.14214446,-0.79836404,0.610396,-0.22395317,-0.14973293,-0.7236825,0.051886,0.60682195,-0.9527706,0.42286706,0.53618556,0.078112654,0.1263733,-0.699016,-0.43549588,0.09421045,-0.20106183,0.45115235,0.026216583,-1.0275723,0.6020228,0.29453036,-0.25197148,-0.79665893,0.41283098,-0.083688125,-0.32901415,0.23252858,0.40262666,0.0657393,0.028264197,-0.27545944,0.10537141,-0.46726042,0.4752639,0.095594026,-0.21420968,0.5673538,-0.09691407,-0.15967938,-0.8364026,-0.13791236,-0.53807575,-0.19551054,0.3135109,-0.098287806,0.042210132,0.061122265,0.03380031,0.49527946,-0.32645845,0.1457505,-0.1262308,-0.24278821,0.36793417,0.5022333,0.39432696,-0.38081318,0.6774745,-0.0894094,-0.13658196,-0.23559621,0.2717138,0.40372562,0.10149781,0.39050344,-0.028368099,-0.100911856,0.2512624,0.99161667,0.2230915,0.42686233,0.21340366,-0.07286104,0.48736525,0.053156164,0.14267096,-0.03097831,-0.50250584,-0.17185213,-0.21652988,0.13460572,0.4962077,0.2092401,0.5266767,-0.18314,-0.023200909,-0.031814665,0.40077838,0.29938737,-0.77611166,0.4344928,0.2596435,0.42562833,0.6562604,0.12890956,0.045979787,0.64455646,-0.15213561,0.15916643,0.16351695,-0.0044847387,-0.36211905,0.5063288,-0.703196,0.24024503,-0.22924863,0.004344446,0.24309042,0.0052459156,0.3864821,0.9781385,0.024459822,0.13728786,0.013347268,-0.105961956,0.16936408,-0.33451346,-0.046377447,-0.27721828,-0.34738728,0.7690085,0.33773503,0.4495794,-0.12694325,-0.13524365,0.25302544,-0.08398722,0.20383617,0.029658457,-0.043955386,-0.042964008,-0.5115796,-0.27218357,0.7054745,0.045334693,-0.012335107,0.15659395,0.025677357,0.39807558,-0.28989774,-0.14462002,-0.17000338,-0.5538364,-0.025754366,-0.31802553,-0.49347502,0.6461728,-0.24274376,0.25522605,0.105521634,0.065413795,-0.26951647,0.16148548,0.25431797,0.6045495,0.1050284,-0.30536863,-0.24218409,-0.2014672,0.2455304,-0.3590405,-0.16997544,-0.12604041,0.025416894,-0.6911489,0.21900995,-0.35938305,-0.27910253,0.13646185,-0.15858018,-0.14172576,0.44103688,-0.03488105,-0.2435907,0.27306086,-0.13540967,-0.25969076,-0.31307966,-0.27803543,0.04734207,0.039471388,-0.00671927,-0.03639404,-0.120201,-0.04291898,0.19314174,0.1165992,0.1226986,0.15548189,0.34249267,-0.27001756,-0.0712264,0.25990677,0.6073659,-0.040709145,0.09343258,-0.23959449,-0.3881561,-0.2682733,-0.12395095,-0.050825804,0.2576833,0.15305717,-0.3865436,0.8910573,-0.030785827,0.7903204,0.044493884,-0.31533185,0.17544952,0.460942,0.053678624,0.022604981,-0.26028386,1.0486639,0.7563478,-0.06651847,-0.27243045,-0.5095444,-0.06369687,0.21597722,-0.28262895,-0.22339939,-0.047089197,-0.6344925,-0.17475107,0.2305137,0.18983881,0.014446608,-0.09507402,-0.079198144,0.118394814,0.22024561,0.12687458,-0.5868793,0.08941119,0.30041185,0.21938515,0.2069101,0.19304557,-0.27078256,0.30870646,-0.378884,0.1644052,-0.4158101,-0.02983981,-0.078082,-0.109062396,0.13887306,-0.05070514,0.32090095,-0.015265865,-0.34411377,-0.14871241,0.47470012,0.28713784,0.3622932,0.8270651,-0.20837307,-0.047252655,-0.057420544,0.60836226,1.2209538,-0.3315229,-0.10239307,0.53768414,-0.43971372,-0.5322159,0.24081172,-0.40719095,-0.029645085,-0.050009795,-0.4656332,-0.23178568,0.042150114,0.04583433,-0.12293144,0.09742134,-0.6299658,0.006297418,0.12059207,-0.27378738,-0.28154796,-0.17349513,0.3276579,1.0463187,-0.42172307,-0.07378113,0.05528319,0.060808543,-0.22084093,-0.6113078,0.075939134,-0.24518014,0.17388308,0.34618065,-0.37185472,0.15432458,0.21664,-0.5150827,0.20598193,0.3393933,-0.31879082,0.06734461,-0.31386748,0.035005722,0.82378167,-0.27903458,-0.09260955,-0.37578765,-0.6131777,-0.82803017,-0.28617826,0.23489414,0.14743379,0.027699172,-0.4127654,-0.054860454,-0.06565019,-0.06799531,-0.1476641,-0.5011567,0.52572095,0.048816614,0.44422278,-0.14743663,-1.0293969,0.21012762,0.21845701,-0.26884976,-0.61344427,0.50767887,-0.35103053,0.83130324,0.10643281,0.09977052,0.29877493,-0.7195676,0.034565996,-0.45936337,-0.25155646,-0.7303423,0.009525542,734 +519,0.4485857,-0.10412366,-0.4908848,-0.11705957,-0.26259238,0.06249067,-0.29377455,0.28444514,0.09637828,-0.62204,-0.049555182,-0.108923085,0.0074155754,0.3801313,-0.32351473,-0.47713572,0.040209763,0.011374936,-0.42779994,0.31602785,-0.42760465,0.16379154,0.032767646,0.38039583,-0.008697263,0.2808845,0.22148278,-0.16190083,-0.16711958,-0.20942722,-0.07902447,0.21966831,-0.6754469,0.10457819,-0.22707011,-0.25341645,0.028708601,-0.56579894,-0.5202719,-0.56078833,0.20015314,-0.90725625,0.5335686,0.18249376,-0.16552459,0.18459645,0.20351206,0.1546861,-0.03316852,0.0507099,0.2632685,-0.27133134,-0.08022179,-0.12874703,-0.2064745,-0.54473096,-0.75543565,0.023036793,-0.5753907,-0.009731387,-0.25097612,0.24694708,-0.3415676,-0.09861935,-0.10710745,0.425615,-0.39433065,-0.1026475,0.15812434,-0.14526863,0.469451,-0.6007511,-0.30435115,0.03251428,0.33537468,-0.27831635,-0.22190745,0.28313065,0.3421152,0.42355567,0.023872469,-0.23123252,-0.49848154,0.06922418,0.31551966,0.5147727,-0.2939961,-0.35061994,-0.21216498,-0.067552574,0.12263073,0.2758382,-0.029045327,-0.46076196,-0.05199083,0.048036482,-0.14136145,0.40162554,0.6228856,-0.26529548,-0.15684342,0.32779858,0.36496708,0.10982234,-0.14779976,0.11867804,0.07130082,-0.6246067,-0.072755024,0.13980094,-0.10159594,0.6370826,-0.16965826,0.34437534,0.65893644,-0.007363181,0.019307137,0.14636365,-0.11248807,-0.09826305,-0.25518522,-0.093921915,0.15709126,-0.514408,0.15615232,-0.16611843,0.66978157,0.14663757,-0.9979124,0.35104033,-0.60662216,0.104190946,-0.02767743,0.43674946,0.6860109,0.39549989,0.12662327,0.78073895,-0.5046638,0.11385262,0.09607947,-0.47082472,0.33142194,-0.14771344,0.008755922,-0.6012869,-0.25864142,0.09555077,0.07704457,-0.013663961,0.47837347,-0.3408413,0.00021218402,0.32903457,0.79823107,-0.17993273,-0.074914895,0.6840113,1.1601951,0.93729055,0.17622541,1.1939678,0.06109878,-0.0702304,0.23943138,-0.17014585,-0.7723771,0.26619977,0.34170517,0.063950434,0.20031218,0.100471295,0.011480169,0.4295712,-0.43093687,0.06624185,-0.15663064,0.12297196,0.1776428,-0.25631166,-0.37525874,-0.16344616,-0.014617905,-0.10441758,0.0094223535,0.19939494,-0.033513162,0.41858175,0.13952745,1.4692413,-0.19415852,0.24353945,0.15024708,0.47984606,0.1983867,-0.2033526,-0.02905855,0.0137890065,0.39489052,0.24178205,-0.31660047,0.09809307,-0.19009344,-0.5646517,-0.1933153,-0.33442858,-0.04263711,-0.14142302,-0.52411366,-0.08800112,0.008322588,-0.46607462,0.61161995,-2.975678,-0.030416803,-0.16880515,0.36457032,-0.17884247,-0.36112806,-0.10807509,-0.46811667,0.71725065,0.3403851,0.39230588,-0.57689285,0.36429214,0.6463997,-0.4204898,-0.08694478,-0.7081103,-0.07743109,-0.12026291,0.30945653,0.16135752,-0.26538357,0.13290246,0.11992348,0.47581273,-0.054750327,0.095850825,0.0850056,0.24054323,-0.033505503,0.48494622,-0.16682439,0.45188785,-0.22531398,-0.2598905,0.3644173,-0.38325697,0.16510959,-0.059972543,0.21573736,0.4602027,-0.37232536,-0.9515792,-0.65160286,-0.32453227,0.95054024,-0.20221451,-0.4951814,0.3591482,-0.2046205,-0.3530342,0.057510965,0.46077046,-0.1416826,0.33815473,-0.9124133,0.02263311,-0.19533266,0.18049511,-0.052591335,0.014342909,-0.5833155,0.68567,-0.057294656,0.4798992,0.5359988,0.29340482,-0.34214887,-0.4886703,0.05283323,0.8943948,0.275291,0.12226289,-0.19987977,-0.21798538,-0.06442635,-0.28960624,0.15266152,0.64863294,0.5958662,-0.10851632,0.16752194,0.25302172,0.07453884,0.07210467,-0.053041067,-0.28828153,-0.0804783,-0.040329628,0.5958606,0.8845364,-0.19575956,0.27814388,-0.15776825,0.27314314,-0.20372343,-0.31134564,0.57656115,0.9051164,-0.08494756,-0.27589425,0.6111011,0.3604123,-0.1971337,0.36980864,-0.55093247,-0.33859926,0.32083684,-0.13407384,-0.5452862,0.15541564,-0.4270597,0.029925605,-0.83938664,0.4410295,-0.3908682,-0.52844715,-0.5763776,-0.2875001,-3.9749198,0.13731517,-0.35792038,-0.22867057,-0.07475817,-0.13843295,0.39175197,-0.6911297,-0.46594995,0.117872015,-0.0067742085,0.7045447,-0.17012961,0.05440631,-0.3142457,-0.1121846,-0.42335302,0.2928225,0.20512876,0.26337507,-0.050832085,-0.27442726,-0.051222,-0.23094833,-0.49932733,0.088527866,-0.5961593,-0.42601973,-0.2138106,-0.39624828,-0.4553991,0.74858344,-0.47156373,-0.062308736,-0.31398964,-0.0050389594,-0.35599682,0.5054493,0.20161702,0.3198184,0.022550037,-0.009197444,-0.1347919,-0.28185812,0.39877644,-0.04011496,0.34933028,0.5909746,-0.25553897,0.10239558,0.49918538,0.65294826,-0.17978661,0.8279263,0.50451756,-0.039668713,0.24821134,-0.37337092,-0.24152721,-0.58774173,-0.3228363,0.038003683,-0.38625067,-0.49531788,-0.085249305,-0.3882873,-0.70954525,0.52812296,0.010203185,0.124810636,-0.10276787,0.01868105,0.2985716,-0.30653027,-0.24665414,-0.0163097,-0.04295184,-0.49898437,-0.31904188,-0.58926266,-0.6626457,-0.10651498,0.8968547,-0.025412934,-0.07516789,0.17251098,-0.20073499,-0.031296007,0.18888858,-0.005117046,0.14581212,0.3593978,0.06411741,-0.7800496,0.5607491,-0.28894186,-0.12096574,-0.75084835,0.15261258,0.583356,-0.5376714,0.7745079,0.5170145,0.22354756,-0.20463498,-0.75838524,-0.3578144,-0.12562647,-0.11605833,0.4985536,0.19078694,-0.99457943,0.3744543,0.37123647,-0.3702009,-0.5915767,0.60022485,0.10763967,-0.074432954,0.15165246,0.362573,0.04601052,-0.14497073,0.08286909,0.30533358,-0.3881721,0.4583929,0.34783903,0.080383524,0.53685606,-0.17396124,-0.10774946,-0.5001543,-0.034267895,-0.4441876,-0.1608522,0.14242421,-0.006983522,0.035797596,0.1381696,-0.10761736,0.35974434,-0.37142807,0.17161027,-0.03438675,-0.26009992,0.12843125,0.4317968,0.48868012,-0.48364025,0.5814147,0.06839099,-0.1184208,-0.08940232,0.1798806,0.4497028,0.20162079,0.29755497,-0.15535793,-0.10032229,0.059251547,0.87435573,0.16120932,0.49067622,0.19491012,-0.042106632,0.3070352,0.020457225,0.2521563,-0.024115056,-0.684856,0.04458431,-0.31045863,0.3181205,0.42149085,0.0089424765,0.31292623,-0.17566156,-0.09859189,0.037212696,0.2839317,-0.01322573,-1.5653133,0.4280467,0.3009493,0.7567873,0.40087417,0.049570676,-0.0006943281,0.7995473,-0.15215454,0.068445146,0.21017289,0.05330428,-0.40567043,0.5223462,-0.8274213,0.29496813,0.015022963,-0.087835975,-0.119549595,0.0023771909,0.29993656,0.7000141,-0.15819807,0.15959395,0.00329963,-0.28048828,0.24196365,-0.32930943,0.34612116,-0.28932747,-0.17102364,0.7856305,0.5579991,0.36313218,-0.12933896,-0.051909056,0.06695484,-0.06949984,0.10245017,-0.051692642,0.104004934,-0.057155613,-0.65906173,-0.21267965,0.45067123,-0.051195946,0.2021123,0.13878725,-0.23366623,0.19868745,-0.1622894,-0.061023492,-0.03130621,-0.6708494,0.023700412,-0.29258016,-0.44657472,0.43726677,-0.40558204,0.25627214,0.20856963,0.13827653,-0.20199488,0.36875978,0.09329934,0.7952407,-0.023985641,-0.12776054,-0.36069992,-0.15105672,0.14602628,-0.15940341,-0.1992345,-0.3805942,0.11507652,-0.25757593,0.37900093,-0.06511869,-0.18561558,0.23678091,-0.034415223,0.10413718,0.6381702,-0.17748846,-0.3471894,0.1813239,0.110328026,-0.28205636,-0.092675805,-0.1629841,0.31280345,0.1996756,-0.019961566,0.06445006,-0.123437405,-0.23572645,0.1787473,0.11779891,0.4940725,0.42918605,0.15139692,-0.3909015,-0.18286328,0.32412347,0.567694,0.075040355,-0.10632469,-0.20828412,-0.5214619,-0.36306232,0.06037434,-0.111253776,0.2410811,0.14047696,-0.19368108,0.5689021,-0.088102266,1.1016523,0.17701028,-0.29649204,0.018601788,0.38928455,-0.014855231,0.065486565,-0.4232929,0.94360393,0.65937227,-0.03697745,-0.11771921,-0.37391686,0.021261709,0.10539011,-0.19550155,-0.1257114,0.0021486708,-0.7444235,-0.014979516,0.11396032,0.15724802,0.14063461,-0.11195798,-0.14603244,0.2922205,0.14880987,0.33136413,-0.5415145,-0.027297795,0.3412951,0.40630284,-0.040338125,0.28279185,-0.42412773,0.35379335,-0.35598725,-0.00412703,-0.3559908,0.17110793,-0.09618778,-0.28566176,0.22447379,-0.17032085,0.5045386,-0.02038564,-0.17117348,-0.05576152,0.5841194,0.23865454,0.22129774,0.7207573,-0.16476572,0.17879297,-0.0710117,0.45640522,1.1151644,-0.5372375,0.0963709,0.36233765,-0.21437536,-0.5855014,0.177332,-0.53307384,0.27105847,-0.02001431,-0.34333462,-0.36506173,0.12308792,0.026576787,0.12519482,0.1480538,-0.533601,-0.2594483,0.29281607,-0.296975,-0.24583976,-0.3825442,0.117797874,0.6483296,-0.18716809,-0.11751456,0.065961994,0.2973096,-0.10172569,-0.47000113,0.17556894,-0.1800158,0.094738595,0.14093831,-0.40894455,-0.12000551,0.07287506,-0.36777952,0.33617252,0.09442102,-0.2610299,0.14472297,-0.13187607,-0.13690129,0.9658476,-0.29438457,0.25457412,-0.74014044,-0.58764744,-0.93158233,-0.30903676,0.19057949,0.0835615,0.037479363,-0.59172904,-0.0973418,0.06139963,-0.048811283,-0.095058,-0.5249921,0.41988334,0.06585949,0.5035687,-0.08723919,-0.5985915,0.039816923,0.08066999,-0.04592679,-0.5187513,0.5755114,-0.12461964,0.84893507,0.094657,0.1862442,0.112139635,-0.5002841,0.13339634,-0.16575325,-0.19399107,-0.8849588,0.0076810205,737 +520,0.46386537,-0.106356785,-0.5068397,0.004803761,-0.012009351,0.26231292,-0.14977193,0.4226318,0.26940158,-0.40211043,-0.17986536,-0.15749332,-0.097576566,0.2632046,-0.20184933,-0.61830765,-0.029373322,0.22619556,-0.46711302,0.64280516,-0.36033633,0.43365887,0.024476724,0.3544443,0.10494542,0.14047101,0.10730232,0.015888503,-0.19819264,-0.14573966,-0.04197043,0.14586942,-0.69261074,0.19292797,-0.15363748,-0.5456658,-0.1284713,-0.42821404,-0.052332554,-0.8181485,0.3985796,-0.7999736,0.6320475,0.028102694,-0.354647,0.3410296,-0.07885405,0.17571004,-0.14121838,0.06139816,0.11102073,-0.06924037,-0.03127063,-0.05160117,-0.12563565,-0.36733624,-0.6329647,0.1132638,-0.42316356,-0.023460235,-0.2213349,0.16003679,-0.27097958,-0.020849599,-0.09917857,0.30015114,-0.4032038,-0.087930076,0.17967914,-0.10497677,0.30945525,-0.6033289,-0.13723746,-0.13574104,0.18609323,-0.28933048,-0.18834242,0.13327606,0.4652954,0.62913996,-0.09902387,-0.20734902,-0.28188452,0.13748436,0.10919028,0.448839,-0.19244684,-0.4607236,-0.19818923,-0.0478136,0.4633956,0.015823457,0.3084507,-0.25523046,-0.17989348,-0.026889013,-0.26751742,0.1984441,0.5194546,-0.42700145,-0.24333039,0.4414084,0.4736143,0.08915918,0.04186735,0.09130474,-0.07348948,-0.34932116,-0.0542835,0.1092898,-0.34491047,0.54646164,-0.118137084,0.14473857,0.44778726,-0.0757988,-0.0033489722,0.031215107,0.020079762,-0.15992062,-0.12500343,-0.2549536,0.25423938,-0.37768087,0.1806288,-0.30490667,0.6849413,0.17230494,-0.746599,0.30048484,-0.41690132,0.13106647,0.061033685,0.48728243,0.8078591,0.42607716,0.2252957,0.7534737,-0.5473269,-0.04453378,-0.059368532,-0.19082944,0.07086573,-0.14319532,-0.15886843,-0.45031652,0.093445994,-0.0950345,-0.2677576,0.13586058,0.47839555,-0.5657428,0.024640629,0.097604975,0.68099254,-0.32063934,-0.03151237,0.85688907,1.1186901,0.9715846,0.117488466,1.1737864,0.35573465,-0.27240402,-0.018974777,-0.3580164,-0.7220069,0.31403524,0.41524294,-0.27269837,0.47928947,0.06895668,0.09530755,0.22561242,-0.43081242,-0.06564977,-0.18718109,0.07457566,-0.031442743,-0.13584946,-0.3090112,-0.17006601,0.07056388,0.14904049,0.036583155,0.16984753,-0.2696688,0.28421625,0.2614199,1.5263594,-0.21991786,-0.02611601,-0.052473713,0.24980924,0.29881525,-0.1741098,-0.09987287,0.25490382,0.31204742,-0.10116156,-0.54003596,0.117093444,-0.14974558,-0.5887731,-0.18920751,-0.009159684,0.014910186,0.21954012,-0.18993957,-0.22768784,-0.028041827,-0.39794996,0.45549917,-2.2924635,-0.15842351,0.028531095,0.3221256,-0.18235326,-0.5460944,-0.0137087405,-0.47645086,0.44246477,0.3772328,0.22936904,-0.68740994,0.1453775,0.33480248,-0.37919664,-0.2307326,-0.54342395,-0.085632145,-0.0063927835,0.25793964,0.04833891,-0.23183669,-0.008213797,0.28603625,0.53746945,0.10627424,0.06701657,0.41091076,0.38474226,0.10647615,0.20326434,0.0782078,0.5253776,-0.101356804,-0.15965769,0.49455753,-0.43532714,0.22562727,-0.053369917,0.18712576,0.25798383,-0.47475505,-0.79086477,-0.85001695,-0.293725,1.4339119,-0.12533185,-0.52825916,0.13918415,-0.019617805,-0.29848343,0.0070629716,0.48451275,-0.20585553,-0.22580983,-0.92377174,-0.15430613,-0.038121413,0.2938225,0.033707432,0.07311487,-0.53198296,0.72453386,-0.15588148,0.49145263,0.3683486,0.29875582,-0.085588045,-0.61517054,0.069491066,1.3218155,0.5660377,0.09521597,-0.34201303,-0.19417025,-0.4904805,-0.01755582,0.091902904,0.35018015,0.7954582,-0.023973716,0.033141263,0.2614376,0.08724441,0.118670695,-0.18705533,-0.36106452,-0.13292547,-0.030915337,0.59369546,0.462756,-0.22967325,0.426686,-0.10397092,0.2208742,-0.19608054,-0.5040141,0.59368104,1.2349756,-0.24558945,-0.34277865,0.638656,0.17312633,-0.24672829,0.50308466,-0.6947064,-0.32276395,0.3738999,-0.14781462,-0.33769718,0.22181019,-0.38142744,0.17571913,-1.0022444,0.34226307,-0.18919255,-0.2762528,-0.54691356,-0.04338056,-2.8583217,0.2236575,-0.08340029,-0.13646877,-0.27199093,-0.14727421,0.35510442,-0.6308536,-0.82558393,0.030797688,0.033083025,0.6386956,-0.026610037,0.12924302,-0.09021365,-0.41543463,-0.3234749,0.25952014,0.18697986,0.36356544,0.075303994,-0.37310925,-0.109509654,-0.25505903,-0.40340897,-0.04565144,-0.49860382,-0.50328463,-0.15900049,-0.43026084,-0.1845884,0.47233397,-0.56542176,0.096928336,-0.19867302,-0.14599773,-0.08475626,0.2946908,0.16800065,0.056916177,0.18493806,-0.15624611,0.07919354,-0.22392191,0.27546957,0.0948758,0.087409906,0.39171442,-0.26484737,0.27223274,0.36217088,0.78232145,-0.1603279,0.8191772,0.5420348,-0.08928137,0.23016839,-0.3892035,-0.18894036,-0.6709015,-0.31558397,-0.07762021,-0.43887377,-0.5180557,-0.075674914,-0.34354705,-1.0157918,0.39985853,-0.1833632,0.1621863,0.15293951,0.43925986,0.50489986,-0.103083454,0.054701965,-0.2592708,-0.11805908,-0.41147834,-0.36949518,-0.63935214,-0.37757057,0.11009222,1.0092394,-0.06824187,0.11542966,0.13917191,-0.046049,0.11706043,-0.12762721,0.14112528,-0.018127237,0.41816214,0.069547735,-0.71595186,0.25795597,0.13875401,-0.15597953,-0.54155284,0.31972668,0.5078375,-0.7097649,0.416137,0.314854,0.07747115,0.11731832,-0.561936,-0.042588763,0.025708845,-0.34021857,0.40450177,0.2753145,-0.546906,0.46410194,0.43451405,-0.1784824,-0.7488808,0.34120777,0.05520922,-0.17243147,-0.12967202,0.44460586,0.010560751,0.016710665,-0.19625044,0.16150424,-0.42026496,0.26557523,0.24299788,-0.056642942,0.19263615,-0.26163265,-0.20875344,-0.78395736,0.227362,-0.5948333,-0.34609318,0.14083654,0.18745498,0.040582836,0.17087947,0.22678582,0.54260814,-0.44665998,0.2593563,0.00096194446,-0.10772773,0.3466329,0.53296506,0.4380196,-0.26755327,0.4342404,-0.12516055,-0.12673594,-0.19647376,-0.061206877,0.47819278,0.19954035,0.14256068,0.2702754,-0.09450538,0.31559905,0.5070458,0.29916397,0.40016112,-0.025151813,-0.33064842,0.17940895,0.18659775,0.29901907,-0.17738439,-0.39623803,-0.11481037,-0.099036776,-0.0034489024,0.6119734,0.2103678,0.19988298,-0.2020928,-0.27567968,0.0044613183,0.13794759,-0.12570252,-1.0840265,0.3765273,0.05514214,0.82229805,0.6198161,-0.11056311,0.27249286,0.33363804,-0.3311371,0.22443525,0.3846578,0.012592102,-0.5158258,0.39280766,-0.7206461,0.15745206,-0.1416248,0.11319681,0.06191844,-0.1330715,0.37341446,0.9058984,-0.12720086,0.11969481,-0.19708054,-0.15999095,0.027811578,-0.37011772,0.0413802,-0.50236934,-0.34470877,0.7833358,0.3409727,0.3677984,-0.37811428,0.035924494,0.016250813,-0.19509575,0.15915896,0.021208037,0.13166429,-0.10687322,-0.49391147,-0.22421305,0.54948723,0.10678331,-0.05810079,-0.06940977,-0.42626977,0.10516679,-0.21379113,-0.03974455,0.01887695,-0.81293565,-0.082653925,-0.39910603,-0.2490076,0.40318647,0.0063305837,0.1351452,0.15069734,0.11440515,-0.25870135,0.1258901,0.25998408,0.53807276,0.18038666,-0.061648153,-0.3856282,0.3460235,0.18490086,-0.27008483,-0.013271808,-0.13133495,0.03428496,-0.4754797,0.5006684,0.03115591,-0.3348685,0.13650008,-0.0716271,-0.07721745,0.5294022,-0.3372074,-0.19120352,0.16824733,-0.062993705,-0.20023128,-0.2253436,-0.26743284,0.17490289,0.15220036,-0.107520595,-0.13680574,0.035406284,-0.23788026,0.33978757,0.07311209,0.32412794,0.5144094,0.005113457,-0.6214202,-0.11695985,0.14894737,0.35026938,0.07767941,-0.15111814,-0.30893305,-0.52051735,-0.28681827,0.01845353,-0.19110915,0.21455908,0.08343331,-0.32976696,0.6515075,0.32300034,1.2249572,-0.114552654,-0.38571215,-0.07000663,0.54671115,-0.11670911,-0.14857742,-0.5464025,0.9142617,0.5482883,-0.14856325,0.029736618,-0.1335342,-0.094888724,0.22916456,-0.24784349,-0.03622837,-0.01746436,-0.8263764,-0.43892995,0.19314173,0.35545492,-0.13504468,-0.025752084,0.13840231,0.19267325,0.07317751,0.25116062,-0.37309602,-0.09623893,0.3143609,0.1653501,0.09445498,0.011567695,-0.4250658,0.27046898,-0.5315632,-0.16769281,-0.3221833,-0.0019907781,-0.02538831,-0.42236295,0.25633168,0.16942333,0.24002378,-0.32029048,-0.46927038,-0.21679465,0.47195265,0.016109483,0.14583567,0.4475983,-0.29277232,0.1414923,0.10148614,0.48914173,1.2133502,-0.10684562,0.11915929,0.3004122,-0.33841014,-0.61069554,0.30928007,-0.2509393,0.21276286,-0.076455526,-0.3159884,-0.69703895,0.3352206,0.16819127,0.06658479,0.17312409,-0.62810296,-0.22304884,0.3091506,-0.3738188,-0.13773748,-0.24749553,0.09734986,0.6906039,-0.4216372,-0.48479208,0.1407883,0.2993372,-0.3415175,-0.6602643,-0.14446919,-0.38841996,0.42543277,0.23077656,-0.29299736,-0.071597636,0.18936542,-0.40613583,0.04132373,0.18608081,-0.45746368,-0.079178795,-0.45715252,0.16990522,0.7791843,-0.14025733,0.040427346,-0.4591277,-0.43663874,-0.95492446,-0.3758594,0.541451,0.15216853,0.053051166,-0.7528781,0.0066859364,-0.31661293,0.0068692053,0.044150166,-0.31546593,0.3973331,0.2729465,0.5140395,-0.14677846,-0.64918965,0.15000394,0.16294205,-0.04059487,-0.5848259,0.46133608,0.14253734,0.890513,0.033493847,0.0094536375,0.26250497,-0.7869105,0.0506437,-0.17847715,-0.027196517,-0.6563454,0.17536046,738 +521,0.41925433,-0.17755175,-0.4628852,-0.17147346,-0.35985819,0.21066506,-0.097134545,0.41063818,0.26927996,-0.375613,-0.045973863,-0.12750728,-0.12869723,0.2727527,-0.22831924,-0.5496311,0.1179223,0.057723675,-0.45212635,0.6688189,-0.3753303,0.32485765,0.019773781,0.24529555,0.08781387,0.2630346,0.08578803,-0.103963204,0.062979005,-0.389469,-0.1233296,-0.11004793,-0.6386294,0.19686273,-0.09697795,-0.407118,0.027796235,-0.47317764,-0.45148703,-0.98713785,0.29683784,-0.9486597,0.45202726,-0.054792922,-0.29563406,0.10416164,0.15738115,0.3360067,0.07067957,-0.110368095,0.2704543,-0.2748427,-0.11258774,-0.17090447,-0.06478492,-0.65766394,-0.69688416,-0.11087336,-0.39261994,-0.20027265,-0.16862907,0.18133132,-0.39287177,-0.02336881,-0.08605877,0.5819704,-0.34413147,0.03973162,0.21726267,-0.2188902,0.39502898,-0.8132941,0.01545336,-0.13649893,0.16819398,-0.03764173,-0.19102845,0.52025414,0.40379578,0.33856487,0.055408638,-0.3344256,-0.3202364,-0.11549233,0.080728404,0.59763396,-0.1744175,-0.37502334,-0.117229894,-0.038387496,0.2424423,0.28080598,0.02801779,-0.22659208,-0.03268472,0.13652223,-0.2535519,0.50073767,0.70421606,-0.21421432,-0.1583998,0.5062663,0.5690522,-0.017137857,-0.25211102,-0.077103436,-0.016873032,-0.44029528,-0.10930046,0.17775822,-0.26998678,0.5938387,-0.24547684,0.15026203,0.6823863,-0.31457266,-0.008889266,0.22763774,0.18339935,0.036696553,-0.18876557,-0.25832263,0.3294186,-0.69558203,0.18764575,-0.4219806,0.65982133,0.2033275,-0.71379983,0.23755653,-0.51538926,0.2094859,-0.17852078,0.5245865,0.7360654,0.39847735,0.24082012,0.9184764,-0.5024553,0.023488197,-0.0861476,-0.34778613,0.16634753,-0.31387085,0.053381328,-0.34386465,0.029968968,-0.09760911,-0.22826634,-0.026459651,0.10258365,-0.63840157,-0.18903859,0.23140772,0.81892836,-0.19668014,0.035603702,0.70613384,1.159539,1.1358451,0.032875944,1.1113952,0.18535332,-0.25369233,0.19703151,-0.08353482,-0.7609991,0.23808418,0.3141848,0.2500313,0.1980913,0.04096222,-0.23355448,0.32358375,-0.6738254,-0.10751655,-0.27087268,0.40929732,0.28631073,-0.1326003,-0.30229726,-0.19451287,-0.11131605,0.12590292,0.03996683,0.27761227,-0.26373333,0.17748526,-0.03150223,1.2603275,-0.09451009,0.07967706,0.17091487,0.70666856,0.16180025,-0.15058602,0.32039306,0.31268358,0.26059964,0.32548627,-0.6169386,0.115930595,-0.43366167,-0.37627575,-0.2262257,-0.34020907,-0.032696567,0.13175258,-0.45575905,-0.3560823,-0.13009128,-0.14610727,0.47064513,-2.7219052,-0.09986396,-0.22524342,0.23809166,-0.31036234,-0.27361125,0.115864806,-0.7226613,0.39405817,0.34506395,0.47450128,-0.7409274,0.30019578,0.49884674,-0.6744164,0.0032489684,-0.70349354,-0.1385525,-0.07918048,0.4387555,0.19710687,-0.07334745,0.08474159,0.043207414,0.6462795,0.24778418,0.21516125,0.36226162,0.21733937,-0.021683233,0.43950966,0.080141075,0.54101384,-0.19964716,-0.098258495,0.3224493,-0.49550232,0.1911693,-0.20824523,0.021044161,0.6394386,-0.38338217,-0.8100821,-0.8231574,-0.21248262,1.2024978,-0.13149072,-0.75034624,0.22787333,-0.18003449,-0.21539648,-0.10590608,0.42972606,-0.14199881,-0.09531108,-0.67157835,-0.015322826,-0.15907994,0.2770674,0.0022700813,-0.069101326,-0.4167725,0.7165039,-0.010480846,0.4694009,0.19811781,0.12560508,-0.3038966,-0.48322323,-0.10353251,0.8001207,0.6785401,0.056526277,-0.15979667,-0.071864165,-0.31185737,-0.33397558,0.14015505,0.6966359,0.638917,-0.27486643,0.057258423,0.42380047,-0.10246633,0.13471682,-0.02007336,-0.43383503,-0.1703687,-0.09209562,0.5479885,0.70428246,-0.10413207,0.23699045,0.004999003,0.25813174,-0.07999616,-0.58231354,0.5204882,1.1138546,-0.15339196,-0.18345822,0.51857823,0.39042404,-0.35051033,0.46883553,-0.6070061,-0.3474943,0.47176996,-0.06323863,-0.62842256,-0.090801485,-0.24688418,0.012046448,-0.42587358,0.43072796,-0.49002004,-0.74704665,-0.4556988,-0.18647757,-2.60655,0.19958584,-0.32772556,-0.039955787,-0.20785229,-0.070989236,0.31538704,-0.53539217,-0.51255596,0.20454307,0.10706263,0.7173608,-0.052489955,0.11230246,-0.33315676,-0.13982871,-0.61116856,0.20245041,0.0025341255,0.23557928,0.0012499605,-0.27562812,0.07165527,-0.029650703,-0.49684414,0.108702615,-0.54088825,-0.45727897,-0.3792221,-0.39827448,-0.36937946,0.78673923,-0.20649423,0.17719923,-0.10220457,0.008756881,-0.121146,0.08143473,0.11829444,0.107353844,-0.008209859,-0.08682494,0.041009124,-0.29699713,0.46301413,0.030218486,0.44302544,0.32125214,-0.012437428,0.0946142,0.4937082,0.5411954,-0.07623405,1.0159998,0.39440757,-0.070424266,0.2763081,-0.08533363,-0.18331979,-0.4880325,-0.15433078,0.03268438,-0.39472225,-0.3309448,0.16691272,-0.34103456,-0.82480365,0.4308065,0.15439574,0.32959342,-0.07696674,0.15709926,0.48001033,-0.26179013,0.035298444,0.0031748584,-0.08215637,-0.58857816,-0.22972205,-0.754229,-0.3456897,0.16129918,1.0248307,-0.29644853,-0.14751315,0.00281527,-0.21957114,0.105794884,0.15445697,-0.15611577,-0.020311896,0.41701874,-0.056459475,-0.7665306,0.5359507,-0.10870923,0.024690611,-0.62571317,0.6290805,0.5830427,-0.61359054,0.44567338,0.36382532,0.08406894,-0.47345456,-0.59915787,-0.19117092,-0.11768965,-0.34205124,0.40515146,0.17736043,-0.88725525,0.2963355,0.2014308,-0.34506866,-0.63666683,0.5616739,-0.051284842,-0.21528043,-0.075846925,0.38253307,0.39956552,-0.021253848,-0.093928024,0.23282667,-0.5938178,0.22290967,0.21407147,0.014385036,0.46358997,-0.022178706,-0.22403355,-0.71533257,0.103076644,-0.6105425,-0.32824197,0.33170888,-0.073287435,-0.054063987,0.41999823,0.21005641,0.42912373,-0.085842796,0.16396329,-0.08221028,-0.33172327,0.58524364,0.4109152,0.4683784,-0.5628415,0.66571075,0.06149099,-0.30435735,0.08620102,0.11194887,0.4734907,0.2545761,0.61143297,0.07804494,-0.09715073,0.028375948,0.7085005,0.24751203,0.48659268,0.04168464,-0.10015108,0.32467255,-0.04956745,0.15971613,-0.006882598,-0.81488,0.017777046,-0.18548341,0.099670954,0.43147618,0.031987786,0.3326843,-0.0037352336,-0.30376312,-0.13960175,-0.031524803,-0.22570147,-1.4314069,0.42507157,0.23062862,0.9776359,0.4461556,-0.031035472,-0.13281235,0.82668227,-0.021402683,0.13167025,0.42931867,0.012206359,-0.32216594,0.5747606,-0.87387794,0.37634778,0.16287902,0.014882884,-0.10548435,0.1390632,0.37564978,0.7692982,-0.2614662,-0.09437917,-0.20108128,-0.452727,0.46687388,-0.34396544,0.22184685,-0.5657503,-0.4211562,0.44834152,0.38300535,0.31209424,-0.057110224,-0.055960555,0.08331577,-0.027123433,0.2994072,-0.028520823,0.032988396,-0.10678674,-0.37936303,-0.14756271,0.5480509,-0.4546934,0.25929755,0.03188656,-0.0031423143,0.22944328,0.009736998,-0.052823048,-0.014791866,-0.77911,0.063739225,-0.078099884,-0.36299077,0.5899491,-0.24094799,0.19391356,0.14101887,0.04346339,-0.27258042,0.20395887,0.11787356,0.56468016,-0.1896365,-0.12239049,-0.46377587,0.031051066,-0.049811687,-0.26944628,0.20321384,-0.14427236,-0.03889222,-0.49175802,0.4903905,-0.14906202,-0.22145568,0.15560706,-0.11875875,-0.013707042,0.5558223,-0.30582693,-0.10728876,0.04846268,-0.26577657,-0.28110987,-0.21970667,-0.074045666,0.21056506,0.2774898,0.062343415,-0.14933579,-0.23998073,-0.019195255,0.28182358,-0.029626932,0.1954701,0.30891687,-0.02199657,-0.42129096,-0.11412655,0.20897602,0.5420458,-0.034752674,0.0055518574,-0.12075459,-0.53037184,-0.491131,0.18388584,-0.05190342,0.53887796,-0.020831427,-0.15409322,0.69535816,0.04640444,1.24707,-0.16872086,-0.3345558,-0.08479243,0.5554186,0.050796263,0.03612783,-0.40221962,0.86952454,0.56203824,-0.13862689,-0.020934317,-0.45739618,0.124059506,0.29870108,-0.112795435,-0.058523785,0.046314728,-0.7554137,-0.3426561,0.21741061,0.30493015,0.099155374,-0.094641365,-0.040417757,0.3915549,0.16888593,0.47156957,-0.43678936,-0.20228137,0.28800315,0.25008538,0.06696045,0.23747815,-0.37996587,0.22399214,-0.57590395,0.07119044,-0.004490665,0.093728706,-0.14623177,-0.24639235,0.18369174,-0.049166877,0.40345567,-0.16049828,-0.46104553,-0.105663456,0.61915344,0.28113562,0.13456686,0.6801434,-0.238292,-0.06483477,-0.10105324,0.5289453,1.222907,-0.17043681,0.07746162,0.23570494,-0.5467405,-0.70178795,0.30526972,-0.19502458,0.093610324,0.104858704,-0.25937763,-0.5139784,0.2333946,0.21333148,-0.05260843,0.27122563,-0.7747246,-0.3118686,0.07028661,-0.4984377,-0.2651303,-0.47022843,0.35883245,0.66456276,-0.22028027,-0.25040194,0.06438006,0.33693415,-0.2652356,-0.691331,-0.055658765,-0.45811626,0.25619718,-0.10354262,-0.48871398,-0.13855454,0.12721522,-0.5941835,0.13441308,-0.052537594,-0.32226244,0.11925131,-0.20648089,-0.0036682147,0.76766425,-0.1977633,0.11485047,-0.5649931,-0.44081315,-0.6239425,-0.39525396,0.21012558,0.30442712,0.025440196,-0.6532765,-0.2606576,-0.13841733,0.017211756,-0.13499755,-0.4139141,0.42529026,0.08336922,0.26543826,-0.022384832,-0.9269102,0.15639783,0.08231868,0.052241895,-0.4712991,0.41104192,-0.072762586,0.7671775,0.24236219,0.05835441,0.1425134,-0.3359546,0.32869172,-0.284664,-0.36368293,-0.61161894,0.078839585,744 +522,0.55931705,-0.30450174,-0.5254979,-0.1684933,-0.2869275,0.028874738,-0.29562452,0.5469386,0.039826054,-0.61051863,-0.111250825,-0.24194779,-0.13236941,0.31964406,-0.43443495,-0.72285706,-0.069733486,0.011312016,-0.3456884,0.54176825,-0.3759156,0.36768082,0.11400997,0.25766394,0.3314256,0.20097311,0.24616316,-0.10744327,-0.35172287,-0.20635082,0.06326102,-0.05795254,-0.6097767,0.0069442648,-0.33600157,-0.67909306,0.100427195,-0.4392405,-0.16242787,-0.8315369,0.37497002,-0.9347164,0.5035234,0.023449047,-0.26255003,0.17558804,0.2453839,0.4274997,-0.028509576,0.0947678,0.1439644,-0.023873528,-0.022417296,0.031925652,-0.34562057,-0.5890655,-0.6741504,0.12060299,-0.45491508,-0.2545914,-0.14015886,0.13432702,-0.49852586,0.109363146,-0.051598784,0.4670973,-0.41262457,-0.29756168,0.4197742,0.053158343,0.48183495,-0.81351054,-0.32979217,-0.14721069,0.05918626,-0.18926708,0.10014587,0.31860188,0.23395988,0.63637775,-0.003045129,-0.33518526,-0.32410923,0.07549553,-0.065941006,0.33516592,-0.22943519,-0.25194043,-0.15348783,-0.084914856,0.451089,0.22741866,0.20677161,-0.041336734,0.010582221,0.19699319,-0.41678852,0.40354756,0.42220336,-0.30503052,-0.19880791,0.16695045,0.5532926,0.15358056,-0.069289386,-0.14305282,-0.029390395,-0.47994545,-0.22149387,0.2020484,-0.31807828,0.5335966,-0.12988423,0.39034432,0.5780803,-0.44006866,0.25209436,0.13019152,0.03625966,-0.20800945,-0.20389049,-0.38337088,0.26808035,-0.59709734,0.13637105,-0.39325047,0.84126884,0.079360746,-0.7312251,0.23629716,-0.5763588,0.1672821,-0.068797916,0.46113724,0.6177315,0.39821365,0.24308811,0.70008534,-0.39450794,-0.1618742,-0.17910933,-0.13715327,0.19097999,-0.17269413,0.26206714,-0.46413168,-0.19719002,-0.03310189,-0.07415245,-0.027107954,0.4555549,-0.6198743,0.0057106144,0.017918995,0.9156262,-0.21291362,0.06512474,0.7794423,1.0551264,1.1599907,-0.013885736,1.1375324,0.20060351,-0.22256804,0.31617454,-0.24200587,-0.5595014,0.47750598,0.47055107,-0.4204878,0.47076315,-0.1075026,-0.11267112,0.41565806,-0.29966646,0.13273342,-0.2789825,0.06671403,0.069020234,-0.1505084,-0.33976656,-0.2761688,-0.008022904,0.07051029,0.0089379335,0.25097534,-0.13977127,0.2984581,0.01247452,1.3768332,-0.07337036,0.0666958,0.06181831,0.44752303,-0.0015812601,-0.03203854,0.053332604,-0.11860263,0.12500791,0.21015768,-0.60818,0.08428074,-0.2447519,-0.42231274,-0.24326111,-0.2319133,-0.12592563,-0.2014999,-0.60544163,-0.069102906,-0.25456905,-0.30596438,0.19432275,-2.3874958,-0.30817375,-0.17166711,0.25125024,-0.27511954,-0.39953724,0.016175393,-0.524012,0.56724715,0.40781757,0.49178055,-0.5594823,0.4179279,0.4673381,-0.43736196,-0.085883476,-0.65503585,-0.17750318,-0.08263485,0.26038405,0.06549975,-0.26569614,0.098217316,0.21925893,0.43098286,0.025747087,0.06295659,0.038612265,0.5319511,-0.23281483,0.474968,0.08584046,0.43988582,-0.35767072,-0.19973005,0.4059951,-0.50338954,0.1502832,-0.102272496,0.095595084,0.37313414,-0.5659727,-0.9254158,-0.71087307,-0.42975518,1.2639524,0.17867582,-0.4153934,0.12725893,-0.11668687,-0.2511154,-0.13203295,0.31193557,-0.051107105,0.012836622,-0.7980814,0.013137813,-0.3150623,0.005357772,0.07108745,0.017999966,-0.49752888,0.65419775,-0.043260694,0.27081957,0.38217905,0.31541997,-0.35191363,-0.58274686,0.005594905,1.059994,0.5891999,0.118717484,-0.20929857,-0.10336815,-0.46934396,-0.069235615,0.236917,0.43966636,0.9463396,0.026670879,0.07806092,0.14639238,-0.15069155,0.14798345,-0.13194595,-0.5031306,-0.2249286,0.15182073,0.57602257,0.5166283,0.04810271,0.41982532,-0.1831057,0.4104318,-0.24400605,-0.35389227,0.5621838,0.81588423,-0.18858722,-0.16877358,0.5902318,0.57479703,-0.33033666,0.63572794,-0.63785404,-0.51463896,0.31444862,-0.17387478,-0.48715737,0.09194537,-0.40440384,-0.025597688,-1.026735,0.3262536,-0.65712124,-0.2242484,-0.6357179,-0.22497539,-2.9525568,0.32150888,-0.31034812,-0.1710601,-0.046949424,-0.16003837,0.3655809,-0.8070455,-0.7369936,0.08383192,-0.006095324,0.88582027,0.11345238,0.20569508,-0.17324157,-0.39558002,-0.396977,0.066741824,0.22364198,0.23147392,0.07233609,-0.5166101,-0.0035943133,-0.40707546,-0.41014546,0.0072970646,-0.4873829,-0.66441685,-0.44042653,-0.5086335,-0.41182134,0.75319946,-0.04843097,0.020673126,-0.16759059,-0.03374634,-0.09200442,0.49650985,0.16090843,0.0032024,0.15381275,-0.113821544,0.20337234,-0.46143582,0.10141439,0.28528184,0.4235391,0.60616887,-0.20406999,0.4484404,0.62311417,0.61183375,0.017950227,0.7922055,0.3897295,-0.15162452,0.3503995,-0.25061375,-0.24526331,-0.6041674,-0.23490374,0.054595254,-0.24869132,-0.3157796,0.062265176,-0.42057642,-0.7355188,0.597161,-0.18764238,0.18000515,-0.10388475,0.23989403,0.4567751,-0.20931278,-0.09835611,-0.052957747,-0.0278393,-0.38134083,-0.26272053,-0.7555608,-0.6397336,-0.04435423,1.140191,0.04909793,-0.0059233787,0.2538694,-0.008312515,0.2004335,-0.055446915,-0.11259072,-0.13223486,0.31612465,0.045296315,-0.72684664,0.3585091,0.023240805,-0.03097679,-0.47628233,-0.034153845,0.70677525,-0.47253102,0.14855453,0.59559,0.06262938,-6.414311e-05,-0.41291592,0.14716248,0.05140412,-0.25197992,0.2883061,0.16672972,-0.6285512,0.49138483,0.26213998,-0.25561756,-0.7351259,0.57075065,0.16308069,-0.22828463,-0.18361393,0.3215795,0.23815887,0.024492456,-0.17250301,0.30447653,-0.4575376,0.17928831,0.249608,-0.0057149893,0.38354152,-0.027598837,-0.22355287,-0.6719586,0.10009779,-0.41983983,-0.2910044,0.2732541,0.017734597,-0.023966487,0.36166057,0.26405993,0.34955707,-0.24071221,0.057706382,-0.07393841,-0.33937764,0.4255732,0.47939306,0.6205762,-0.50343895,0.560332,-0.0030977002,-0.11954761,0.025162118,-0.13563393,0.5255203,0.13415292,0.29231447,0.11934825,-0.26169762,0.23530735,0.6491643,0.060830045,0.4602726,0.1926632,-0.19508408,0.13503556,0.102351315,0.087544665,0.16317871,-0.3584519,-0.0850607,0.10844802,-0.013396542,0.48022535,-0.08039601,0.33721775,-0.12141008,-0.27135354,0.029216154,0.09927768,-0.2781872,-1.1737865,0.4169769,0.08058078,0.73969406,0.6116533,-0.058260527,0.06133757,0.53949845,-0.12599222,0.052325744,0.4653069,0.22444761,-0.50545275,0.6466565,-0.5115409,0.55033255,-0.063473366,0.094702385,-0.2914278,-0.070386305,0.5788306,0.7874951,-0.23731028,0.044683393,-0.075186506,-0.44612807,0.1248219,-0.29157883,0.1568313,-0.4763484,-0.101053216,0.5637144,0.40849844,0.25345296,-0.099152796,-0.078421935,0.082424976,-0.10679597,0.42785916,-0.06803129,0.076964654,-0.10329483,-0.5569028,-0.24107496,0.3684656,0.15052854,0.21408059,-0.021530407,-0.3217627,-0.0117602,-0.028709691,-0.03659383,-0.024891526,-0.65677196,0.08037454,-0.5204269,-0.38202825,0.33147365,-0.20947573,0.3045629,0.26945752,0.17568938,-0.2808835,0.13073197,0.13361523,0.50207305,-0.2612844,-0.2241794,-0.24237616,0.17798431,0.25841573,-0.38538998,-0.13181876,0.013586036,0.23067653,-0.61671257,0.5078457,-0.16441791,-0.198421,0.0914167,-0.17048335,-0.031597566,0.55837667,-0.3059279,-0.03336892,0.055642705,-0.029513193,-0.13567589,-0.18471101,-0.10400096,0.17311434,0.081411846,-0.014960243,-0.27603847,-0.12599656,0.028310051,0.58550835,-0.031980988,0.32617655,0.5225445,0.14784063,-0.6218677,-0.25582996,0.04912271,0.5387709,0.13764276,-0.12898237,-0.6165977,-0.40938526,-0.21166296,0.31385013,-0.058814406,0.16570507,0.111123815,-0.45846382,0.9683326,0.13928208,1.3128332,0.045507856,-0.30535588,-0.016445545,0.513329,-0.18927518,-0.047902685,-0.43813324,0.99898994,0.44000822,-0.39454904,-0.17493796,-0.4392083,0.003903074,0.20867808,-0.24445534,-0.17847143,-0.18393381,-0.62468094,-0.45722967,0.29169443,0.4134198,-0.030478774,-0.24700387,0.15354152,0.27593207,-0.0075090304,0.5575509,-0.4616877,-0.13695988,0.43075374,0.24132565,-0.07078911,0.24112971,-0.45142084,0.32335398,-0.7463521,0.13018088,-0.2643651,0.17372558,-0.12210221,-0.42022592,0.3655165,0.04655804,0.2752207,-0.23344545,-0.49904484,-0.20601323,0.5018429,0.14539754,0.18364623,0.59444016,-0.298202,-0.09853065,-0.15015873,0.67971987,1.308685,-0.07943576,0.085079685,0.23344946,-0.3318403,-0.6206909,0.3400728,-0.40987086,0.107339166,-0.24269494,-0.24512248,-0.5695386,0.34997398,0.3671113,0.017160382,-0.030722512,-0.48437425,-0.30509153,0.28170386,-0.5011625,-0.33549166,-0.30292934,0.10402385,0.57847774,-0.23602891,-0.029298361,0.011562037,0.6264852,-0.11836107,-0.35252517,-0.11986116,-0.15552156,0.41201475,0.18858922,-0.3533759,0.04065182,0.047574244,-0.4627877,0.12676576,0.2037959,-0.51134527,-0.16598603,-0.2587919,0.005073177,0.7821774,-0.031750746,0.22207871,-0.3778955,-0.3625176,-0.7592128,-0.35591295,0.46602663,0.22732936,-0.03265128,-0.45710716,0.02821875,-0.22730473,0.0024226308,-0.033170424,-0.3030279,0.22591326,0.20121916,0.5778489,-0.16047001,-0.5096361,0.035975356,0.21993251,-0.14066096,-0.40136036,0.52335006,-0.14015211,0.75510204,0.2550008,0.045527864,0.29591888,-0.47857854,0.022100864,-0.15945792,-0.3019937,-0.6782037,0.11614048,745 +523,0.38324413,-0.0943246,-0.38022134,-0.16777648,-0.11180622,0.08294232,-0.12204112,0.46985492,0.28372028,-0.30265227,-0.18573293,-0.1464964,0.11570813,0.22238724,-0.17703874,-0.63666165,-0.0064048725,0.13470879,-0.42150375,0.71423286,-0.39208323,0.09679023,-0.13756543,0.47258753,0.09281434,0.33969682,0.070653364,-0.1394705,-0.14102092,0.009946482,-0.1264701,0.42549473,-0.4680152,0.08580331,-0.27093968,-0.2830648,0.015991772,-0.35090485,-0.46732074,-0.731928,0.19532466,-0.8469602,0.4093744,0.116765656,-0.24860026,0.36309618,0.0023363573,0.23922193,-0.30872068,-0.14265117,0.012310596,0.08349746,0.069507346,-0.30620417,-0.098281875,-0.34065166,-0.433096,-0.017356357,-0.43082982,-0.020510077,-0.30320072,-0.046385378,-0.3363366,-0.13399853,-0.058890235,0.34913492,-0.50196373,0.12504862,0.2684484,-0.027728887,0.28528157,-0.37948045,-0.20628694,-0.14719117,0.30216494,-0.1296334,-0.23000087,0.27698565,0.31646866,0.38437554,-0.22108567,-0.12188552,-0.23870318,0.0836532,0.11095088,0.40195385,-0.32577166,-0.6678222,-0.074473776,0.10278608,0.19650435,0.15388726,0.08109607,-0.17594115,-0.06475761,0.15993023,-0.23179784,0.3327436,0.49882582,-0.37505946,-0.20375155,0.24417135,0.36665207,0.26918128,-0.25518292,-0.15728939,0.031232689,-0.54693544,-0.13571307,0.106425695,-0.18142127,0.6289028,-0.10648923,0.07231318,0.6065159,-0.07993562,0.03344254,0.21567766,0.112060525,0.0059371763,-0.17491116,-0.28078154,0.22516353,-0.33742803,0.082845196,-0.11791568,0.64971876,0.19681692,-0.6525462,0.36027068,-0.5454547,0.17696178,-0.18887901,0.43508795,0.64633316,0.38760677,0.29389927,0.5554736,-0.29876098,0.011905253,-0.018842507,-0.34874466,0.18078601,-0.22835974,-0.06297599,-0.5573608,-0.014513378,0.14073937,-0.08429081,0.07524507,0.14473377,-0.46168593,-0.18620576,0.21510307,0.74953,-0.23306204,-0.030071935,0.5861378,0.95831627,0.6612366,0.055156495,1.0113878,0.22574738,-0.12513898,0.4453818,-0.16173236,-0.84336287,0.32332304,0.31962267,-0.35541153,0.33774656,0.074651495,-0.135847,0.3882812,-0.36716238,0.06338934,-0.21252666,0.1236502,0.10517567,-0.12824783,-0.33387783,-0.39676404,-0.19547985,-0.01357007,0.069566675,0.32124642,-0.1291997,0.1986281,0.04155239,1.5038763,0.20075312,-0.116916016,0.03329561,0.7276713,0.20747092,-0.06445009,-0.103130564,0.397789,0.30240804,0.1311032,-0.56820387,0.13544203,-0.09609377,-0.42972365,-0.07880945,-0.31334525,-0.04178375,0.13135344,-0.55285406,-0.14175434,-0.1936041,-0.16446312,0.5140229,-2.9016109,-0.12689508,-0.095267974,0.51125324,-0.2657719,-0.22960305,-0.2615631,-0.38332343,0.40651682,0.3178257,0.51504105,-0.73824894,0.35931498,0.3132264,-0.6159735,-0.16902113,-0.4968198,-0.06088858,-0.05809503,0.4422961,-0.012794725,0.11699939,0.30311993,0.16022508,0.4369906,0.024077326,0.11025565,0.08660289,0.44566658,-0.028472241,0.37648782,-0.1063851,0.45551497,-0.32532498,-0.20092109,0.21532936,-0.2772989,0.33083415,-0.043379243,0.05687428,0.40924662,-0.3864772,-0.97150314,-0.6715466,-0.0366409,1.2069212,-0.2757574,-0.41043144,0.10835318,-0.53972155,-0.18683992,-0.15974236,0.39881223,-0.08721425,-0.15233329,-0.80858546,0.012767996,-0.04323405,0.16588116,0.06294727,-0.01827988,-0.26392794,0.6376238,0.018765334,0.45155448,0.31332085,0.119301744,-0.18220647,-0.47563595,0.122430705,0.57819337,0.22082135,0.11923774,-0.1961232,-0.28597707,-0.24821332,0.106076725,0.09613881,0.66196686,0.48451588,-0.17535456,0.15145285,0.30388966,-0.05056899,0.07297941,-0.20378579,-0.3299913,-0.15269697,0.11713784,0.575134,0.7985107,-0.35217997,0.23819688,-0.032011602,0.16398263,-0.1275861,-0.39046767,0.48688433,1.1055847,-0.13614896,-0.16521253,0.44973484,0.706514,-0.33277896,0.35676083,-0.506979,-0.28748065,0.38927287,-0.08123892,-0.30063826,0.24456826,-0.30023345,0.11035264,-0.9286172,0.2566534,-0.4135008,-0.22297923,-0.5184759,0.14381048,-3.40028,0.21729448,-0.332264,-0.21423014,-0.2601984,-0.010261719,0.11479586,-0.6391449,-0.50804466,0.1968552,0.09137279,0.67018765,-0.011208117,0.1568166,-0.3206095,-0.22020207,-0.10994985,-0.022373876,0.21053442,0.39102167,-0.089999035,-0.515616,-0.20104453,-0.11882317,-0.30250493,0.19424589,-0.6083717,-0.39420465,-0.06549034,-0.5503778,-0.23467836,0.4981318,-0.24429032,-0.021887703,-0.14916632,0.03923804,-0.18790789,0.32920733,0.09897793,0.17047834,-0.051770296,0.037122183,0.04455478,-0.24989639,0.37517634,0.051498793,0.39138058,0.25982857,0.032492805,0.1359853,0.5709206,0.41781256,0.089756794,0.83152854,0.5967719,-0.01685905,0.3368079,-0.3339803,-0.13203222,-0.4663996,-0.26943496,-0.20197265,-0.33766446,-0.36489424,0.015287851,-0.42969272,-0.77040154,0.40467215,-0.06962085,0.14265996,0.029073264,0.15700105,0.66565645,-0.24223049,0.053580318,-0.022399444,-0.19624631,-0.6800979,-0.12774898,-0.61073226,-0.2841896,0.16610953,0.7549005,-0.30520853,0.0149076665,-0.065884344,-0.24523316,-0.018622683,0.10211282,-0.023413688,0.17680225,0.5905232,-0.112001166,-0.5804381,0.36375788,-0.051099386,-0.19881427,-0.54430676,0.23440354,0.5482835,-0.70098656,0.76608354,0.4890675,-0.0135002965,-0.097926125,-0.4805849,-0.3093821,-0.15713778,-0.13294291,0.3502867,0.26346043,-0.80667526,0.36004442,0.34049368,-0.2715186,-0.60877216,0.7616635,-0.03260524,-0.4795007,-0.093791425,0.2507907,0.055266697,0.02664795,0.017006008,0.21508013,-0.33960295,0.18181603,0.19389495,-0.076912574,0.27781084,-0.021373646,0.092760764,-0.8071099,0.08347118,-0.4777717,-0.28389475,0.45221096,0.12042736,0.09542362,-0.07229157,0.02460936,0.26258212,-0.28991184,0.04271118,-0.031143904,-0.2668832,0.38242993,0.34402636,0.4750833,-0.37657538,0.5244414,-0.01874793,-0.076644115,0.12312975,0.18437378,0.34173366,0.104539216,0.4232288,0.0006057471,-0.20320094,0.20887746,0.7664514,0.115142636,0.40667614,0.019435454,0.062669344,0.3337655,0.101860575,0.17299557,-0.09391135,-0.40609947,-0.06530256,-0.16319326,0.21286562,0.37426838,0.05756081,0.15115473,-0.08192521,-0.27946553,-0.038947694,0.28266427,0.22846569,-1.2325367,0.3969503,0.2274799,0.6771618,0.39530224,-0.075611725,0.048986137,0.6129819,-0.18778384,0.15421996,0.42190665,-0.1601692,-0.5918229,0.51476043,-0.59964895,0.39872763,0.03180935,-0.028288689,0.008702932,0.012568734,0.28359488,0.71462935,-0.1557361,0.0403024,0.106337406,-0.45070156,0.0626793,-0.3835687,0.074221864,-0.66972923,-0.13048634,0.56407875,0.6849672,0.34369516,-0.24587725,0.025988156,0.10186861,-0.14540815,0.12723807,0.0075363154,0.23182233,-0.0826909,-0.81862915,-0.060187902,0.5333468,-0.17194761,0.10886038,-0.068648525,-0.18550423,0.36401892,-0.1477685,-0.057651114,-0.13353266,-0.6058606,0.014954158,-0.35769922,-0.3527352,0.66816014,-0.13386364,0.25476763,0.27943322,0.028242275,-0.36112732,0.43751827,-0.08982235,0.71517265,-0.18510911,-0.32369247,-0.53960794,-0.02614676,0.19245203,-0.062675945,-0.10331801,-0.37383518,0.016449597,-0.21156894,0.3952333,0.037886858,-0.065974064,-0.19813558,-0.09996276,0.11773981,0.55694187,-0.08746772,-0.25599834,-0.2699336,-0.08601054,-0.46818438,-0.27761155,-0.00034270328,0.29772502,0.34576887,0.031359497,-0.11051936,-0.21109006,-0.10404547,0.48268005,-0.07260086,0.36521783,0.40619022,0.2029283,-0.09643824,-0.1706022,0.33138424,0.41892368,-0.04797175,-0.14917152,-0.4149079,-0.2581536,-0.3621807,-0.0078088813,-0.17263034,0.36001632,0.01201669,-0.095546566,0.77768975,-0.13373733,1.0476319,0.031910677,-0.20505068,0.05133006,0.4778196,-0.041222207,-0.10800914,-0.21618268,0.73418766,0.5663015,0.040086117,-0.097233675,-0.31887498,-0.017425308,0.0099411355,-0.18504943,-0.12976663,0.03351571,-0.55445707,-0.15820554,0.10740765,0.29468915,0.30063328,-0.03553968,0.04446423,0.061435737,0.12203825,0.18126824,-0.37938985,-0.25237036,0.20848174,0.28541765,0.16730501,0.13926183,-0.4273189,0.31091353,-0.34746698,-0.002073305,-0.34879336,0.18112619,-0.13284642,-0.37523815,0.16147368,-0.11804063,0.3174606,-0.30882376,-0.20889053,-0.30778217,0.47281522,0.20068884,-0.005432408,0.4303806,-0.15427919,0.030813744,0.12006494,0.56124574,0.8628555,-0.19786592,-0.17663133,0.32862473,-0.42781836,-0.7320494,0.2774229,-0.2338014,0.37421623,-0.04999963,-0.011424167,-0.7420422,0.28471848,0.16097176,0.13890685,-0.20419434,-0.71618885,-0.278655,0.1575084,-0.31375057,-0.23030852,-0.4132249,0.09796398,0.5589443,-0.22574744,-0.19912873,0.039391104,0.11601054,-0.10419222,-0.34019282,0.055293806,-0.45435047,0.12723014,0.109588556,-0.43034118,-0.08018936,0.14529303,-0.33013555,0.3310335,0.26294306,-0.31433874,0.07919031,-0.29438546,0.016167233,0.9808303,-0.28121263,0.277452,-0.4209464,-0.47333905,-0.6837734,-0.39654583,0.4838328,0.041296285,0.030509302,-0.5992278,0.108740725,0.21723308,-0.3453819,-0.24020414,-0.28774303,0.44393602,0.0037327004,0.25593302,-0.02928871,-0.67373675,0.14536807,0.0058752126,-0.13837445,-0.5960617,0.44296533,-0.085319094,1.0678629,0.053519327,0.14718615,0.35837302,-0.33300373,-0.3143862,-0.12408153,-0.20345464,-0.52354205,0.0047166687,749 +524,0.52531713,-0.17515919,-0.6469589,-0.2210141,-0.26120448,0.0003912151,-0.3231687,0.3768015,0.5122939,-0.36815682,0.027784018,0.013926054,-0.12069631,-0.017673539,-0.083990835,-0.7581051,-0.0125206215,0.21885324,-0.61280453,0.6476732,-0.45715946,0.13790537,0.022461075,0.35066536,0.059957385,0.104416676,0.013514949,-0.15980062,0.12279992,-0.2930403,0.015128399,0.15277684,-0.48642108,0.32612976,-0.14541733,-0.22229011,0.088869534,-0.29953456,-0.5059884,-0.8540233,0.05422443,-0.8234304,0.65189564,0.09245743,-0.43382555,-0.002457572,0.04596597,0.24778914,-0.11138178,0.05585455,0.24818444,-0.38360995,-0.50917965,-0.24546573,-0.35157415,-0.5709568,-0.6636749,-0.22966173,-0.56139386,0.16214077,-0.151144,0.2832101,-0.35849127,-0.11144471,-0.34111246,0.66126317,-0.40854883,0.14303897,0.16433391,0.029388055,0.35748553,-0.6190068,-0.059742756,-0.13668485,0.14747348,0.23664048,-0.32270375,0.15922679,0.21255529,0.469519,0.13247956,-0.2697089,-0.25400037,0.038169686,0.046001475,0.3697019,-0.09518321,-0.1690756,-0.2644109,-0.19345447,0.5462553,0.34008312,0.0362002,-0.40249705,0.108621165,-0.12767185,-0.28063002,0.62760645,0.66057414,-0.23743054,0.04843151,0.23072542,0.25945774,0.2719953,-0.2926652,0.20749967,-0.066629015,-0.5061201,-0.20063362,0.24126874,-0.18083905,0.3859572,-0.10165943,0.19086409,0.6162918,-0.058092296,-0.20658146,0.13980266,0.111900315,0.18939413,-0.4392426,-0.43820268,0.46367344,-0.74101204,0.022347728,-0.48001432,0.7113767,-0.20619933,-0.7506091,0.28108674,-0.53449416,0.084177054,-0.06599489,0.7671854,0.9262118,0.6513557,0.13659573,0.72106177,-0.34747937,0.07189412,-0.081780076,-0.21483429,0.3568252,-0.05499926,0.37327036,-0.42995504,-0.21517077,-0.1924213,-0.28803977,-0.085357785,0.57074296,-0.47711053,-0.23963667,0.14477207,0.75990784,-0.32373014,-0.042812675,0.82310927,1.3637346,0.8699365,0.23682615,1.2250334,0.40500483,-0.23935978,-0.12386962,-0.17409046,-0.9042307,0.24683629,0.23632422,-0.12809584,0.28467354,0.116790935,-0.13208185,0.4888993,-0.47666517,-0.22014873,-0.056326292,0.31593147,-0.23479016,-0.10309061,-0.3904242,-0.20846303,0.053603917,0.11036192,0.19580565,0.32007486,-0.18994062,0.38196182,0.2355882,0.9528218,-0.117469124,-0.072788276,0.11949468,0.32343474,0.21493694,-0.17902695,0.023664394,0.44192895,0.34966263,0.07148872,-0.5770513,0.21424529,-0.16596194,-0.2293638,-0.27123982,-0.24295683,0.053699333,-0.20140913,-0.21855943,-0.21880637,-0.10424899,-0.41291994,0.34926394,-2.4593568,-0.09124513,-0.15604624,0.35302058,-0.011317296,-0.14459945,-0.0653644,-0.5128691,0.5242732,0.2274919,0.49226528,-0.5613119,0.4771266,0.62932444,-0.48304835,-0.012247314,-0.8496792,-0.23945339,-0.11698861,0.48115614,0.019714603,-0.15525258,-0.020907564,0.11604088,0.48995593,0.22216997,0.10609212,0.29823607,0.48954535,-0.08820952,0.50100595,-0.038840745,0.5745212,-0.24058926,-0.22385432,0.1497232,-0.18963806,0.21120712,-0.32827815,0.07402766,0.5777246,-0.41238585,-0.6160923,-0.31895232,-0.11717369,1.24252,-0.3918148,-0.5655774,0.24773203,-0.38008907,-0.25440404,0.05699523,0.54777277,-0.23361276,-0.11165207,-0.8245443,-0.15011232,-0.031461723,0.24817957,-0.0082380045,0.09181701,-0.527525,0.6568008,-0.10099446,0.5510095,0.33021253,0.32065365,-0.2584453,-0.5757204,0.12878852,0.86351,0.28668314,-0.02270682,-0.35301474,-0.11618851,-0.082092986,-0.0015205826,-0.04078934,0.6491297,0.87338483,-0.24143516,0.0037010056,0.39920804,-0.40660906,0.023160543,-0.16440625,-0.5069159,-0.40203816,0.05558492,0.47333902,0.7413891,-0.046165314,0.4090875,0.06275453,0.3449094,-0.24469054,-0.5277026,0.41063437,0.8847129,-0.28795028,-0.2285597,0.7519067,0.5292333,-0.19316234,0.5828509,-0.57722914,-0.26681468,0.3981492,0.0740909,-0.6149999,0.28244337,-0.48519483,0.17485859,-1.0605838,0.44902164,-0.4258237,-0.8511235,-0.7837161,-0.013839909,-2.6186187,0.2604269,-0.43143812,0.0020993862,-0.17383139,-0.07621503,0.46000975,-0.45929983,-0.52239305,0.3013021,0.2003999,0.5081526,-0.16967784,-0.045248576,-0.23129323,-0.29682687,-0.2631933,0.25284836,0.29673237,0.2519719,-0.0729801,-0.5598263,0.008199534,-0.042168807,-0.24277203,-0.0513927,-0.7603697,-0.2773538,0.06431651,-0.6420347,-0.26253563,0.62903255,-0.26132938,0.10127539,-0.38197857,0.07998652,0.056791384,0.2792805,-0.17764577,0.28215182,-0.015909553,-0.05230892,-0.13106075,-0.19716616,0.13892865,0.038767762,0.31070656,0.19619259,-0.08406403,0.05933885,0.57843935,0.62383664,-0.12230204,1.0162497,0.4932116,-0.27259457,0.27167708,-0.14500538,-0.26376066,-0.72852343,-0.20566152,-0.030492691,-0.52877367,-0.35198003,0.0012919946,-0.3806426,-0.85215825,0.6332646,0.09244328,0.12063459,0.060803443,0.28769273,0.52956355,0.10734183,0.0016406818,-0.19691254,-0.25652584,-0.3560814,-0.15734465,-0.90744054,-0.3682587,0.118558116,1.3068283,-0.24115042,0.13375944,0.25968572,-0.34694782,0.10396135,0.24702728,-0.029978363,0.24287507,0.46512,0.18527563,-0.5324863,0.33839235,-0.19845282,0.043995492,-0.72007406,0.20224126,0.9201116,-0.9372725,0.60462517,0.5212502,-0.0049380683,-0.33570904,-0.6983816,-0.26464346,0.29079667,-0.22317271,0.60710764,0.28254586,-0.7551211,0.5909112,0.2266542,-0.08843557,-0.77262646,0.43871838,-0.18289542,-0.29677853,0.14533086,0.4611024,-0.10616098,0.14823608,-0.18860304,0.41190305,-0.19433287,0.36272684,0.043462012,-0.28303427,0.18445821,-0.16724665,0.08823327,-0.873363,-0.09354174,-0.7008892,-0.23515561,0.4013904,-0.11816234,0.21136972,0.20797506,0.14599678,0.3674828,-0.19100367,0.16702147,-0.24332158,-0.47346112,0.5976678,0.5993245,0.35292837,-0.36718896,0.55908126,0.038278613,-0.31698492,-0.12217176,0.24888827,0.33569404,0.020169256,0.50747997,-0.17526378,-0.07104133,0.22645903,0.903828,0.14348306,0.43588358,0.11248068,0.04744998,0.4093477,0.15770411,0.2545836,-0.23493567,-0.5990643,-0.089011736,-0.2126532,0.3427449,0.40323576,0.12423571,0.55923027,-0.10323727,-0.08926963,-0.052458603,0.14077938,0.2916862,-1.1850398,0.5084863,0.27364108,0.4809954,0.46121326,0.21274678,-0.10893539,0.6777269,-0.1441697,0.10718993,0.47125834,0.24360509,-0.19342913,0.42417198,-0.65789413,0.22449769,-0.21789598,0.14584692,0.22027647,0.08577003,0.55334336,0.92853725,-0.12674823,0.029526684,-0.18992968,-0.26087663,0.10124784,-0.18913688,0.20575915,-0.35647616,-0.471328,0.6916122,0.41716385,0.4468159,-0.18900597,-0.039180126,0.42360264,-0.09642142,0.26426727,-0.03404917,-0.252664,-0.06043098,-0.49350253,-0.1368995,0.4531837,-0.109349966,-0.09703088,-0.029115072,-0.015423076,0.10594857,-0.057043128,-0.017789325,0.041618146,-0.6396599,-0.21367045,-0.36938193,-0.5530295,0.575484,-0.16389258,-0.0021931466,0.14704065,-0.025028238,-0.2009506,0.097895846,0.13580428,0.63471526,0.0099876,-0.1922773,-0.11041465,-0.07672684,0.055321965,-0.31358457,-0.026926283,-0.22285691,0.2790013,-0.71162164,0.2899127,-0.2788592,-0.4339021,0.089990355,-0.20235583,-0.053058334,0.44192985,-0.3212681,-0.21907224,0.24120416,-0.20115313,-0.21395014,-0.29061666,-0.19639339,0.090639725,2.9844898e-05,-0.04336341,-0.16498871,-0.20195928,-0.14258195,0.43012565,0.19517274,0.19230628,0.4233028,0.22429037,-0.23052822,-0.21368589,0.27167585,0.5671083,-0.2122757,-0.101556495,-0.4108925,-0.35774526,-0.35564032,0.18316568,-0.067805454,0.3420803,0.06541751,-0.36513263,0.95761395,0.1307837,0.8659717,-0.12475114,-0.48609227,-0.04632101,0.54484844,-0.03491349,-0.0051606507,-0.29981893,0.94413674,0.62916654,-0.22646035,-0.092861615,-0.64435023,-0.009863453,0.25811523,-0.3017959,-0.17206797,-0.071879864,-0.7618331,-0.099266715,0.3382581,0.21462747,-0.12102425,-0.112898044,0.19226895,0.18775202,0.10963371,0.21017016,-0.68985856,0.114522934,0.20875299,0.22965251,0.0023417303,0.31373015,-0.3982851,0.1918851,-0.5561171,0.13075295,-0.48091656,-0.03436738,-0.035046082,-0.20823874,0.21180758,-0.0840277,0.34462523,-0.41016454,-0.2710692,-0.12976111,0.43277535,0.17319702,0.22417259,0.724742,-0.23892704,-0.11733062,0.14617218,0.6412591,1.3117694,-0.27831605,-0.0013032982,0.18242417,-0.2924262,-0.6291262,0.07982678,-0.46747702,0.043902915,0.056738406,-0.4635501,-0.48275873,0.24737188,0.08181327,-0.09805413,0.21271653,-0.49083933,-0.15326838,0.057641786,-0.25410992,-0.15759407,-0.13411471,0.076180235,0.6716693,-0.29498148,-0.40022925,-0.13811375,0.1458681,-0.3014589,-0.5534023,0.13251886,-0.3843415,0.06203546,0.21894611,-0.463183,0.067774855,-0.043972287,-0.5544773,0.12377783,0.2529134,-0.27060685,-0.018325286,-0.19271103,0.013609039,0.8388706,-0.08524428,-0.04463252,-0.40047094,-0.6570203,-0.62501854,-0.3693479,0.09470248,0.29833665,-0.028701672,-0.48383242,0.00091339863,-0.22612862,0.11511778,0.08945029,-0.5026506,0.54074425,0.18312037,0.48174372,-0.1969074,-1.075415,0.24976476,0.17804207,-0.45835394,-0.61597025,0.6935671,-0.21332805,0.90699905,0.026809296,0.16896689,0.012461066,-0.6483935,0.20546563,-0.3759859,-0.34972438,-0.8264958,0.044948876,759 +525,0.60273284,0.18321273,-0.692482,-0.033581592,-0.351266,0.1137317,-0.14481017,0.47486025,0.16952308,-0.38711974,-0.06540304,0.028181195,-0.078122355,0.28810087,-0.24286428,-0.6102429,0.0689801,0.24789187,-0.5284053,0.73553604,-0.1892815,0.49053282,-0.025853207,0.39890677,0.17040631,0.2372912,0.10457714,-0.012955883,-0.21931174,-0.4640219,-0.075174496,0.44884697,-0.52195877,0.06533199,-0.2036907,-0.43797252,-0.04477747,-0.37546316,-0.36820316,-0.7349897,0.16950396,-0.8258858,0.76600075,0.07607864,-0.32953978,0.13646756,0.32282537,0.17844321,0.09648251,0.028922414,0.14173461,-0.15373127,-0.022537827,-0.18871298,-0.22859879,-0.5563599,-0.4624586,-0.019806614,-0.6191749,-0.090098344,-0.2517719,0.23468132,-0.27558893,-0.13466546,-0.2826397,0.50754195,-0.34283796,0.14167024,0.08696646,-0.1844569,0.080239944,-0.70937437,-0.17410633,-0.041938264,0.2772403,-0.22873135,-0.14274421,0.28844258,0.24774651,0.30020002,0.0015361543,-0.18483093,-0.44296566,-0.15548547,-0.014025705,0.53405863,-0.32450074,-0.4446392,-0.094820194,0.050493706,0.66647756,0.113775186,0.22061408,0.035961654,-0.09634888,-0.22939894,-0.20304544,0.5897828,0.5984332,-0.27775866,-0.08655964,0.4507154,0.30852774,0.26267654,-0.21678543,-0.020950701,-0.27556872,-0.37334722,0.05660264,0.079106264,-0.12885426,0.46272883,0.028209055,0.25021663,0.49707112,-0.1997885,0.07937627,0.22338721,0.13378148,0.27365485,-0.12787142,-0.2727399,0.24956982,-0.59556955,0.1541872,-0.2472109,0.60029453,0.018276986,-0.63780624,0.28393295,-0.5347188,0.02570073,0.021238118,0.4540597,0.49088064,0.5639695,0.045861457,0.6660581,-0.12011457,0.087684646,0.10210729,-0.1333251,-0.10506761,-0.08954285,0.12910204,-0.4696174,0.11804866,-0.039499264,-0.12726471,0.12358253,0.59741485,-0.49328583,-0.33892322,0.24110794,0.7798995,-0.24286999,-0.24292178,0.9552428,1.1058995,0.9477908,-0.15638423,0.73884135,-0.052146655,-0.17015061,-0.3005258,-0.19079855,-0.39715904,0.25480372,0.39910105,-0.48318276,0.39613038,0.0188639,-0.12509625,0.18846288,-0.25028113,-0.42262793,-0.23232043,0.08098919,0.12200507,-0.11156927,-0.38906193,-0.33439475,-0.017701147,0.027097123,0.2989222,0.34512058,-0.3629332,0.18392885,-0.23280825,1.2236986,-0.017542204,0.028788725,0.059426863,0.55270344,0.2894844,-0.1383414,0.051711466,0.3320835,0.3410039,0.061267436,-0.41567472,0.09631638,-0.39217943,-0.52936393,-0.10686071,-0.38162428,-0.30669516,0.13124625,-0.5054379,-0.15958224,-0.09005622,-0.30498537,0.28807083,-2.6400032,-0.15045536,-0.14604224,0.32099083,-0.19290243,-0.363348,-0.20256984,-0.4103885,0.48114246,0.18358324,0.5310143,-0.40660384,0.46392873,0.32608703,-0.60184234,-0.109453216,-0.57345194,0.11069894,0.05399262,0.3146833,-0.23293726,-0.110725105,0.32653567,0.1658564,0.57486826,-0.03591289,0.1238103,0.3052249,0.36594075,-0.16508977,0.37596795,-0.035295825,0.57342863,-0.17381974,-0.20659082,0.3747025,-0.41529742,0.2973694,-0.3225862,0.08719136,0.58258957,-0.47507375,-1.049758,-0.44901162,0.054811623,1.1402882,-0.2296011,-0.5504845,0.10238581,-0.039868988,-0.2635962,0.05755582,0.585843,-0.063013196,-0.087779894,-0.5285128,0.009669832,-0.08686091,0.113281064,-0.10267018,0.11494552,-0.46815512,0.42492557,-0.058565255,0.54391164,0.1002086,0.4237536,-0.3005859,-0.4029983,0.0883276,0.8992917,0.44900465,-0.054193165,-0.20301715,-0.18077826,-0.30643257,-0.0510274,0.16194294,0.76013404,0.5973091,-0.042145878,0.11787286,0.23128465,0.102890775,0.20812032,-0.18398869,-0.34246254,-0.34638268,-0.039449397,0.5492574,0.33367085,0.105915315,0.7464519,0.037703227,0.26255137,-0.3556874,-0.48457035,0.42283216,0.9603787,-0.3173236,-0.35436416,0.6775886,0.45513695,-0.14263678,0.43539616,-0.68548054,-0.47844532,0.33509496,-0.242833,-0.4507112,0.27790597,-0.18721092,0.10025829,-0.8376965,0.36939648,-0.4180483,-0.6936528,-0.34503585,-0.10189269,-2.6520736,0.19505681,-0.27905455,-0.16172454,-0.27814284,-0.3960679,0.040890634,-0.5455675,-0.54228663,0.1407098,0.17246369,0.7870785,-0.21101178,0.14918835,-0.06864098,-0.55534536,-0.355233,0.25216454,0.14325717,0.41594675,-0.082196705,-0.29455012,-0.006313571,0.07407049,-0.38118908,0.08874277,-0.5593351,-0.37579933,-0.0839872,-0.49077588,-0.12352012,0.62545174,-0.28090718,0.18983842,-0.18169795,0.106929556,0.13350922,0.123204045,-0.0063994527,0.2801006,0.08118052,-0.15012093,0.30172735,-0.18287492,0.36510232,0.1312468,0.5339425,0.21367715,-0.0558048,0.21564077,0.5116572,0.504795,0.068874575,0.8465651,0.31698114,-0.09113779,0.31219342,-0.21221931,-0.22174914,-0.6351641,-0.3757153,0.21455356,-0.41137418,-0.41986665,-0.12336468,-0.3692661,-0.9082759,0.6082092,-0.025582476,0.3467658,-0.27326113,0.67809445,0.5262524,-0.28799373,0.028756078,0.009528892,-0.075933315,-0.3140661,-0.13022421,-0.6823793,-0.25996834,-0.16551474,0.9182234,-0.43369532,-0.06406967,0.057853974,-0.09964512,0.18235508,0.08583057,0.23887913,-0.034920674,0.3240268,-0.077952385,-0.638594,0.3961936,-0.5081499,-0.031431433,-0.45765236,0.29619068,0.5856589,-0.65915716,0.3774075,0.52602756,0.18169188,-0.31426272,-0.62508905,0.016997179,0.19605033,-0.2347532,0.3001799,0.3072426,-0.7280683,0.40726742,0.15563841,-0.31848145,-0.6267575,0.70943993,0.09416257,-0.3858517,-0.03902142,0.3873363,0.2509281,-0.09468857,-0.23322003,0.22765085,-0.36541915,0.39272884,0.17140995,-0.12313415,0.46467546,-0.27083185,-0.30585045,-0.73266983,0.16789587,-0.5641378,-0.38869214,0.25485852,0.05202904,0.12596291,0.29620865,0.0074030287,0.36896834,-0.53012747,0.11662091,-0.24162522,-0.30201316,0.5819101,0.3567355,0.7193085,-0.42890915,0.54101986,0.15148392,-0.21240522,0.2442018,0.11305376,0.61315817,-0.065074995,0.5048353,0.08051934,-0.050937414,0.27837622,0.5233677,0.22225937,0.3206204,-0.07232232,-0.21751747,-0.12784939,0.028391557,0.19193853,-0.09067214,-0.5534827,-0.24096571,-0.19861735,0.08918981,0.54624647,0.22152384,0.22638786,-0.044311166,-0.2932289,0.09460395,0.11175287,-0.056002192,-1.0903703,0.59461015,0.18008061,0.8826742,0.11618185,0.19254565,-0.21807541,0.57125175,-0.19505088,-0.0010556707,0.15626796,0.09877032,-0.15130265,0.53451556,-0.514846,0.50784117,0.15399821,-0.06901675,0.17253089,-0.15493515,0.4168473,0.9251916,-0.21342646,0.035471577,0.036329098,-0.3451198,-0.035204735,-0.23394087,0.119132146,-0.5982097,-0.2656507,0.7566777,0.21249032,0.25829992,-0.16114013,0.038766082,0.1160439,-0.2685624,0.18810235,0.056576185,0.3013598,-0.20752664,-0.45243573,-0.13219044,0.4413071,-0.2307351,-0.0062960046,-0.008290927,-0.13410152,0.22593035,-0.029674215,0.092076056,0.0495133,-0.58659357,0.12024034,-0.36204544,-0.2923345,0.28273997,-0.26659027,0.2572132,0.12598968,-0.048562054,-0.056372948,0.3624912,0.22895013,0.45070574,-0.13208626,-0.312221,-0.3806165,0.20520122,0.049463034,-0.22567026,-0.076867625,-0.16503723,0.28960675,-0.57400066,0.271403,-0.1839877,-0.25314122,-0.17967136,-0.11592744,-0.038145933,0.38956603,-0.06432177,0.046785288,0.15849091,-0.17309739,-0.3329484,-0.14652573,-0.19687974,0.0833786,0.20489763,-0.3080003,-0.19521272,-0.122603215,-0.022869619,0.31154513,-0.08183764,0.3897492,0.43700927,0.3255331,-0.3189624,-0.007809398,0.15265442,0.6082457,-0.12029954,0.124748535,-0.37873837,-0.26262322,-0.33035088,0.41958264,-0.15109931,0.2356685,0.1788297,-0.016708586,0.89253646,0.0034395542,1.1728052,-0.08914503,-0.4709994,-0.048937954,0.54937875,-0.13085653,-0.17438047,-0.22651991,1.2401222,0.39132997,0.07341174,-0.02577789,-0.3352227,-0.013659068,0.16378441,-0.3049042,-0.29713157,-0.030332455,-0.43831697,-0.37199873,0.17546037,0.22721864,0.105331175,-0.10756834,0.17801845,0.4122486,0.08731126,0.14756106,-0.7923242,-0.36222053,0.28904787,0.17790262,-0.148201,0.21892674,-0.49664977,0.31480843,-0.6374941,0.11518073,-0.08861769,0.16913657,-0.07296135,-0.38900995,0.31333756,0.12382049,0.39424023,-0.28060058,-0.4019229,-0.19647741,0.27182713,0.09815756,0.031381074,0.4360078,-0.1967958,0.070176624,-0.060743578,0.63023823,1.1370574,0.029231912,-0.07113866,0.27343222,-0.38544947,-0.7499911,-0.022635112,-0.48045936,0.15861808,-0.11822062,-0.3147032,-0.43924597,0.32769233,0.05143232,-0.081792794,-0.002538979,-0.69906014,-0.16482462,0.10407596,-0.24074435,-0.1427081,-0.34239036,0.20570742,0.6972942,-0.15027632,-0.30140972,-0.024059108,0.33932883,-0.11935879,-0.7164033,0.19257914,-0.34870043,0.18899472,-0.10168773,-0.3935841,-0.26744252,0.030029774,-0.46966466,0.3466649,0.20752189,-0.25509062,0.07396189,-0.22400379,0.1399763,0.65843,-0.19994535,0.18251882,-0.34776226,-0.5306813,-0.68372244,-0.45895603,-0.10082113,0.19719286,-0.10172402,-0.83458847,-0.034243193,-0.39938334,-0.21318428,-0.20935677,-0.25375792,0.2960956,0.14691088,0.41669664,-0.21371283,-1.0678729,0.26812157,-0.003091595,-0.21228191,-0.42835873,0.41469732,-0.055452522,0.883008,0.15557514,0.11935855,0.14262246,-0.44792178,0.109877326,-0.1716543,-0.06316952,-0.6383275,0.04139232,760 +526,0.28957883,0.05981207,-0.5790091,-0.113596566,-0.24404097,0.123570636,-0.2640513,0.23773803,0.15051568,-0.498203,0.05764932,-0.034993373,-0.07723654,0.1271986,-0.15427719,-0.47560057,0.005765668,0.15974395,-0.43612283,0.4671324,-0.42523912,0.41231158,-0.01294423,0.25429738,-0.00060931063,0.20659213,0.31242937,-0.15707621,-0.12503806,-0.21049789,0.14295188,0.21103294,-0.6501011,0.33145285,-0.14080061,-0.32228646,0.102165036,-0.14465082,-0.3760798,-0.6074291,0.2607171,-0.7261052,0.5841786,0.017127922,-0.24852099,0.22675173,0.2164251,0.08776807,-0.09044429,-0.036203444,0.24035704,-0.33412173,-0.09859138,-0.3059792,-0.30526018,-0.42687613,-0.43976405,-0.025822898,-0.7027015,-0.19471233,-0.5108767,0.2550711,-0.3277552,-0.12090077,-0.19664529,0.48385242,-0.4191168,0.07878015,0.03967286,-0.2084042,0.45235157,-0.64660776,-0.22926058,-0.037730377,-0.08473718,-0.21429779,-0.09515225,0.30652508,0.028541273,0.35813013,0.014836992,-0.14593218,-0.21953018,-0.33718872,0.3321382,0.45324948,-0.10901884,-0.10840135,-0.17978384,-0.23743656,0.1540307,0.06860077,0.13233529,-0.3028153,0.039875925,0.021212956,-0.29273596,0.5448289,0.58736753,-0.11417959,-0.10488159,0.32792935,0.51347965,-0.01630843,-0.21958049,0.058142085,-0.0042574024,-0.37692928,-0.1746194,0.037623398,-0.08320226,0.4858809,-0.18620792,0.19807148,0.613107,-0.43789086,0.018292377,0.17219584,0.2161589,0.07207709,-0.2793588,-0.12518588,0.2912663,-0.6429443,-0.035425734,-0.19322695,0.7680026,-0.11443281,-0.539368,0.20572488,-0.47188392,-0.08394088,-0.041799907,0.6907166,0.37089235,0.50134814,0.15688904,0.7827396,-0.5038137,0.02653256,-0.10513284,-0.370182,0.068501905,-0.14357366,-0.022930013,-0.39071926,-0.16858992,0.07390288,0.18421543,-0.061549522,0.27605483,-0.3805341,-0.16520514,0.285181,0.79568326,-0.3335697,-0.005924042,0.6686513,1.2489841,0.87131226,0.049095254,1.0975822,0.08733182,-0.26151586,-0.23632516,0.0508789,-0.838851,0.30976942,0.17716534,-0.1177634,0.16064732,0.0388632,-0.09940515,0.22843991,-0.49265817,-0.10960116,-0.27170628,0.40548274,-0.038938206,-0.18822041,-0.44558212,-0.048390646,0.1850693,-0.10498647,0.15806249,0.14075713,-0.35502127,0.3463718,0.16511859,0.9973647,-0.16076498,0.08915418,0.21502747,0.3193471,0.22613342,-0.022966405,-0.006685457,0.42986912,0.2149835,0.24190167,-0.48571643,0.13900623,-0.13450824,-0.6348105,-0.24676065,-0.3831573,0.036540918,-0.18842788,-0.35798135,-0.21303985,-0.055323135,-0.5111994,0.29666618,-2.738459,-0.088490546,-0.040861428,0.30999246,-0.1894754,0.004365124,-0.010872304,-0.28732207,0.46528298,0.31246015,0.45352203,-0.40572062,0.29516056,0.6066489,-0.45148557,-0.1390798,-0.43684402,-0.088208795,-0.16789077,0.39707774,0.14242461,-0.04727894,-0.2593143,0.094089165,0.50097334,-0.19463225,0.2851756,0.3067859,0.33506647,-0.17188713,0.25934333,0.14150982,0.4952144,-0.5706709,-0.22688515,0.4477385,-0.4731726,0.04637495,-0.049483113,0.1643804,0.40785548,-0.30209565,-0.75101775,-0.52129596,-0.24699979,1.1807181,-0.29283118,-0.68970776,0.36262527,-0.07650242,-0.32212654,-0.055036757,0.38154358,-0.13620141,0.23164436,-0.71272177,0.18339227,-0.1671819,0.3816712,-0.04325332,0.10594208,-0.34185702,0.69288546,-0.05595193,0.49598965,0.41816753,0.27089572,-0.531521,-0.35394022,0.123418294,1.0812721,0.3580157,0.18020678,-0.21616559,-0.09910423,-0.113333166,-0.07063371,0.10534526,0.5810814,0.7704939,-0.028242495,0.19794372,0.35369855,0.025268389,0.022464741,0.021481803,-0.3159504,-0.13090204,0.054361846,0.53917897,0.47414938,-0.10614594,0.29704762,-0.11407779,0.43298492,-0.26525456,-0.484307,0.37548938,0.9148212,-0.17071986,-0.3744274,0.7213842,0.60552543,-0.42026687,0.5717769,-0.60693854,-0.570339,0.5355986,-0.18715155,-0.49090078,0.21492587,-0.35673103,0.13946632,-0.7728287,0.36941665,-0.30656567,-0.67491835,-0.37508562,-0.40814847,-2.8627198,0.09077897,-0.2314943,-0.19320123,-0.21338665,-0.061547227,0.22401263,-0.46891972,-0.46956512,-0.0049017943,0.12794067,0.6859264,-0.04125401,0.039712913,-0.27625346,-0.19091669,-0.15259454,0.31247792,0.14277928,0.033457994,-0.09979594,-0.49048594,-0.07795005,-0.17582604,-0.47856474,-0.008809609,-0.5426594,-0.37292483,-0.16652921,-0.44547027,-0.35342237,0.6547049,-0.37312824,0.02237398,-0.23844549,0.14214791,0.16164787,0.22053781,0.20700482,0.1640204,0.039377086,-0.09986774,-0.13451122,-0.22437344,0.4650354,0.13281788,0.3877167,0.6484451,-0.25232306,-0.03154386,0.47147474,0.440171,-0.044320207,0.9501026,0.21303497,-0.087482505,0.43277162,-0.19491675,-0.4186221,-0.743618,-0.2151492,0.09231232,-0.516278,-0.38741305,0.027249455,-0.2804629,-0.749059,0.65034294,-0.039165676,0.29569247,-0.17679584,0.41386834,0.22787596,-0.12040174,-0.26924115,-0.10675417,-0.12182383,-0.41178796,-0.38607693,-0.74704057,-0.38432047,-0.2750929,0.9460658,-0.14059302,0.07405735,0.12657045,-0.07723408,0.12354945,0.22424488,0.07418331,0.2664589,0.5857754,0.19390331,-0.6954053,0.49284163,-0.19242421,-0.11786711,-0.40944543,0.14042327,0.6554903,-0.58066887,0.38253814,0.45020023,0.18188848,-0.24494174,-0.4861457,-0.18725045,0.03616898,-0.1956981,0.5624954,0.18213168,-0.8946248,0.61956304,0.2064575,-0.3611715,-0.632501,0.54679614,-0.070821844,-0.16445124,-0.04799619,0.5421503,-0.14407791,-0.02276823,-0.09361776,0.1789757,-0.34419543,0.37193704,0.1919613,-0.138473,0.5471068,-0.21008204,-0.29666495,-0.6438212,-0.026650177,-0.44108123,-0.28440347,0.13977794,-0.18837608,-0.29825494,0.51231706,-0.16370709,0.5085191,-0.2233877,0.10215788,-0.117452964,-0.32355124,0.5044603,0.5376088,0.52898115,-0.4064083,0.6941589,0.0014759536,-0.20139244,-0.20226802,0.1399417,0.52817905,-0.041067105,0.5195976,-0.035210796,0.10667666,0.34624544,0.81258744,0.23477618,0.49214908,0.15818723,-0.18187109,0.2637274,0.026695682,0.2142977,0.069914065,-0.4768342,-0.08639296,-0.24472299,0.1824178,0.41648003,0.049910385,0.5852993,-0.1831082,-0.15047951,0.12666808,0.2374048,-0.12125761,-1.2978963,0.3506764,0.24095896,0.6971982,0.40292767,0.0967237,0.17087312,0.48493284,-0.19754384,0.100150846,0.24008171,0.078875616,-0.31253764,0.6804716,-0.5624681,0.3750925,-0.0978383,0.040322423,0.12889393,0.06356299,0.5533665,0.902962,-0.041962054,0.11569702,0.013322686,-0.3698681,0.33891994,-0.37149265,0.27985448,-0.29527187,-0.2572517,0.68672144,0.34248236,0.2275485,-0.20973961,-0.122136235,0.20315118,-0.16468287,0.31615874,0.034948062,0.01690999,-0.15149565,-0.47085357,-0.18216933,0.5138355,0.20568816,0.17004035,0.19628802,-0.08515713,0.29758623,-0.029467324,0.008977311,0.027958263,-0.4748363,-0.007946969,-0.14464161,-0.41165072,0.2785582,-0.49236104,0.18096831,0.18764126,-0.009896538,-0.5228016,0.17022562,0.3409625,0.47702697,0.059378553,-0.19634761,-0.21429966,0.055830445,0.17420173,-0.2142053,0.013718124,-0.38865042,0.11456603,-0.7188534,0.5083039,-0.29116604,-0.21403515,0.12639803,-0.3527048,-0.054489158,0.5292613,0.021150738,-0.11828498,-0.005551338,-0.14351353,-0.23115526,-0.2259588,-0.14378187,0.1813792,0.009933838,-0.10160392,-0.15030305,-0.050859135,-0.16482699,0.043084502,-0.007274968,0.2542829,0.27164403,0.07280149,-0.49244356,-0.03744697,-0.037497185,0.57085794,0.080645025,0.13165388,0.034591667,-0.413768,-0.20677778,0.24889874,-0.087761745,0.14002056,0.11697645,-0.318202,0.8639749,0.077307425,1.0752553,-0.00882457,-0.31949425,-0.0026822856,0.61383927,-0.12700711,-0.13782959,-0.34796,1.0528845,0.47673288,-0.15389778,-0.17528608,-0.35569075,0.063775904,0.010100858,-0.25402293,-0.35176754,-0.1918168,-0.67724526,-0.21076237,0.1860212,0.35082373,-0.077329636,-0.06492092,-0.08088459,0.22926116,0.080261454,0.26588756,-0.57056105,0.103638954,0.32256603,0.16847466,-0.03698533,0.10884552,-0.3845952,0.3653023,-0.6996768,0.123715796,-0.041665625,0.11482771,-0.26745313,-0.23299201,0.18380706,-0.047680803,0.341554,-0.3512682,-0.20671512,-0.13304107,0.26486826,0.29069212,0.2036859,0.7454567,-0.0735607,0.23822555,0.038756736,0.42990515,0.98943996,-0.23755883,-0.16399696,0.28456894,-0.47159597,-0.799189,0.19121397,-0.4809381,0.19153343,-0.24930143,-0.4700442,-0.36853722,0.24088839,0.1201733,-0.051658902,0.13698389,-0.58201486,-0.08119819,0.15882412,-0.21952902,-0.22454531,-0.18403254,0.036101084,0.47671577,-0.083882585,-0.18301865,0.027226975,0.2691234,-0.4423745,-0.57228243,-0.033374377,-0.2893757,0.44560188,-0.006355313,-0.25026396,0.027503831,0.11575342,-0.46976423,0.30348137,0.33064845,-0.22817083,-0.09485594,-0.1874844,-0.0055047446,0.4243431,-0.17375982,-0.053323906,-0.5279951,-0.55756027,-0.95270604,-0.21060319,0.31442744,0.15726714,0.006957843,-0.49181035,-0.17642686,-0.26379672,0.024138149,-0.0795602,-0.48514992,0.3737037,0.1055514,0.45108196,-0.2316741,-0.95245504,0.18819629,0.22961752,-0.06618065,-0.48860627,0.49334627,-0.1894252,0.51054096,0.121228956,0.041162353,0.385995,-0.60787535,0.24207528,-0.108960204,-0.18445519,-0.5105969,-0.027867118,765 +527,0.14720567,-0.092932664,-0.6423836,-0.15350057,-0.453963,0.22388649,-0.21564654,0.17231639,0.19821216,-0.038057923,-0.02371003,-0.10234237,0.18672755,0.5114265,0.0681672,-0.57347345,-0.0410462,0.26349992,-0.72486925,0.31915233,-0.5133189,0.43002063,0.09021396,0.43773532,-0.062272284,0.6161433,0.38724175,-0.20821421,-0.1448269,0.12276321,-0.092021696,-0.007892408,-0.46010438,0.089875996,-0.12706293,-0.377022,0.19934459,-0.23900871,-0.20102933,-0.5452563,0.1881245,-0.75392973,0.49224696,-0.094729185,-0.08114516,0.044695668,0.2654502,0.34045336,-0.3914331,0.06631419,0.303964,-0.30594948,-0.10473748,-0.41702434,-0.08489498,-0.5240105,-0.2236056,-0.058490224,-0.68364054,-0.49400812,-0.22316611,0.24649271,-0.21216439,-0.004168003,-0.047864728,0.3095235,-0.39280486,0.027404606,0.20169327,-0.5066661,0.25246373,-0.353977,0.04442411,-0.035835106,0.55641764,-0.0034659419,-0.03734443,0.36687237,0.30146354,0.43101767,0.3216959,-0.26611343,-0.33638683,-0.2876141,0.06967342,0.43982786,-0.102122106,-0.20939088,-0.20067644,-0.12506016,-0.08012084,0.20836541,0.05858139,-0.14535487,-0.042310566,-0.02042366,-0.21316276,0.44896552,0.33352846,-0.45145804,-0.2768348,0.34615925,0.6801279,0.016648531,-0.41738722,0.04277416,0.022731602,-0.45626116,-0.19238992,-0.0113434,-0.0022856507,0.379365,-0.21762268,0.19812359,0.9687641,-0.16755302,-0.16340722,-0.015607201,0.026464475,-0.26147375,-0.20451856,0.038738128,0.09066163,-0.55459064,-0.15101817,-0.13024049,0.5981616,0.19916452,-0.5114671,0.36984387,-0.54756314,0.10182994,-0.13228253,0.54926026,0.56614876,0.43056253,0.12338642,0.8683116,-0.3024486,0.18566608,-0.06858587,-0.51740885,0.17695875,-0.28270122,0.10408459,-0.4842796,0.114417374,-0.02457727,0.15040676,0.078339644,0.25700685,-0.481428,-0.04614853,0.29390517,0.9571434,-0.41882867,-0.17950727,0.47336745,1.0769993,0.7923897,-0.033167474,1.0447383,0.3553227,-0.3549146,0.10284461,-0.48352098,-0.50965774,0.17377813,0.3843829,0.31184655,0.13427821,-0.08739417,0.13297153,0.39613384,-0.3020019,0.1047013,0.022731023,0.14812665,0.16549602,-0.0034548214,-0.43011874,-0.07016509,-0.017595474,-0.12382023,0.31914154,0.10397983,-0.21322714,0.42550236,-0.093732595,1.4696068,0.005249381,0.035131183,0.012807361,0.67261213,0.298451,0.05466911,-0.1569237,0.46073368,0.26007354,0.07040671,-0.49458417,0.3495796,-0.26129368,-0.7342304,-0.18155916,-0.4604647,-0.027129123,0.016088516,-0.43729907,-0.11093297,0.02053449,-0.33533102,0.33857864,-2.7444632,-0.18173125,-0.08464738,0.3038672,-0.30255613,-0.017211648,-0.22050153,-0.44901544,0.21372212,0.3132021,0.5171074,-0.5597287,0.5255532,0.4540742,-0.37392548,-0.23304966,-0.53551584,0.0028493744,-0.15879704,0.41039175,0.07872663,-0.15373771,-0.40147322,0.19061403,0.6915876,-0.1410611,0.1790879,0.44156927,0.2378868,0.0736941,0.5250189,0.13827781,0.55882835,-0.43109915,-0.27406827,0.3636226,-0.21629117,0.08396931,-0.17500994,0.11926115,0.42839915,-0.29330727,-1.0708754,-0.6822408,-0.12901859,0.93207467,-0.3662186,-0.34583464,0.28420332,-0.067869365,-0.031066801,0.14346358,0.5051064,-0.022337658,0.29004458,-0.5612774,0.26436827,-0.02065906,0.21479239,0.061165072,-0.044977613,-0.28163812,0.6998145,-0.080413856,0.53147274,0.17894295,0.29878998,-0.14375077,-0.28575692,0.12385299,0.8119391,0.10683046,0.024249146,-0.07068194,-0.30464363,-0.072888136,-0.24360757,-0.019037668,0.31788284,0.6837206,-0.033896346,0.16294305,0.28711352,-0.24598888,-0.07448832,-0.037759654,-0.2738127,0.12476802,0.043052975,0.30078745,0.6054081,-0.068163596,0.5230833,-0.25038853,0.51108634,-0.10589977,-0.62493336,0.795849,0.47570798,-0.26666424,-0.09148347,0.55750823,0.32232788,-0.5664638,0.45475906,-0.73053414,-0.3903872,0.60863864,-0.20597564,-0.34064475,0.001879309,-0.079694204,0.10849888,-0.8312003,0.16733377,-0.12672251,-0.42081818,-0.18497634,-0.3460318,-4.088878,0.11039983,-0.114826165,-0.06417885,-0.1641487,0.043549806,0.30355948,-0.59011066,-0.41620106,0.05396984,0.23957245,0.6914395,0.13550226,0.21975958,-0.3134201,-0.14325263,0.02715628,0.37802532,0.02146537,0.16309991,-0.08560773,-0.65547335,0.028615031,-0.13410099,-0.66442406,0.149737,-0.58028185,-0.33906212,-0.23202239,-0.6292049,-0.3455549,0.5809468,-0.28814015,0.11663334,-0.32496077,0.16571046,-0.21235564,0.28322905,0.19841366,0.0007843929,0.24655466,-0.017144037,0.24916841,-0.36018068,0.3658612,-0.09578992,0.41194257,0.034636106,0.15305461,0.08717066,0.4961538,0.5770264,-0.12178933,0.8463479,0.40384555,-0.04983523,0.2838017,-0.36918068,-0.09995747,-0.5928031,-0.5203941,-0.22845629,-0.33789936,-0.474649,0.14386685,-0.330734,-0.81080925,0.6781769,0.07272316,0.13574593,0.004560343,0.3486781,0.392236,-0.28388444,-0.16906753,-0.057238974,-0.22417852,-0.6083831,-0.16527204,-0.5612049,-0.5779848,0.040935636,0.7351646,-0.3597733,0.016070297,-0.07965169,-0.20576794,0.006933951,0.2863312,0.06809342,0.35038492,0.48563078,-0.121786036,-0.71985215,0.45181677,-0.188518,-0.078767896,-0.47877893,0.05603079,0.40838793,-0.7278283,0.50165373,0.4152706,0.13270846,0.035754036,-0.29363444,-0.2714084,-0.11506433,-0.14279296,0.43765113,0.013346821,-0.9017605,0.6093649,0.28315675,-0.45013353,-0.6300687,0.20051591,-0.17523234,-0.38543886,-0.041418266,0.27740055,0.08581568,-0.16388701,-0.35409504,-0.019517852,-0.45559326,0.2074043,0.20437546,-0.10323332,0.67260456,-0.18620469,-0.35747814,-0.7331957,-0.17421964,-0.45501783,-0.13826036,0.14750879,0.0053939903,-0.15544249,0.30351567,-0.0055534435,0.3034544,-0.16910155,0.026153669,-0.032779153,-0.3189525,0.20269313,0.29050678,0.23265359,-0.47180048,0.54101783,-0.01332287,-0.21394332,0.067397825,-0.114297256,0.45148495,0.10785984,0.4884693,-0.079587415,-0.208304,0.41605857,0.6391219,0.13796121,0.47209397,-0.016960412,-0.24535301,0.36245865,-0.06519223,0.041843805,-0.06502887,-0.33664137,0.04992244,-0.15008727,0.13418205,0.46342513,0.34301203,0.43575975,0.20206806,-0.1466086,0.18666516,0.14028427,-0.024792416,-0.9837039,0.40656,0.4387923,0.74387854,0.3644341,0.06907789,-0.18721326,0.80561155,-0.21048796,0.0526675,0.27311465,-0.00419145,-0.42533138,0.68080425,-0.69586104,0.4130578,-0.20032465,-0.18815205,0.19036846,0.12633589,0.14355734,0.9184372,-0.09008849,0.18318303,0.08122157,-0.23965004,0.0041568195,-0.14241442,0.0647058,-0.5280739,-0.33052936,0.6729679,0.2777977,0.32392415,-0.16113918,-0.11750121,-0.0011088209,-0.07227426,0.25489625,-0.097326174,-0.028683646,0.14913872,-0.5900787,-0.3053279,0.5589761,0.33530173,0.33226195,-0.106201075,-0.3470266,0.11050178,-0.36577097,-0.0946311,0.021864176,-0.3594212,0.036223795,-0.010197257,-0.5442528,0.6845775,-0.2990148,0.31339854,0.038746588,-0.015608066,-0.2044381,0.42220122,0.15717976,0.65698063,0.16130532,-0.2117417,-0.31706142,-0.05576243,0.27529088,-0.28315142,0.027244627,-0.48564515,-0.13679391,-0.51806426,0.56610453,-0.22575858,-0.46102962,0.24037673,-0.3983504,-0.049509697,0.51007533,0.051834933,-0.23002763,0.14349271,0.00842292,-0.3756718,-0.06916731,-0.3820651,0.24917348,-0.06899334,-0.08169193,-0.25285015,-0.22366674,-0.025163906,0.60318094,-0.15028055,0.30196613,0.1321473,-0.019168632,-0.13621502,0.16761704,0.22996311,0.35085005,0.08611226,0.08655081,-0.17208529,-0.36294928,-0.26484346,-0.010369318,-0.06837731,-0.0023129785,0.1399381,-0.18556166,0.90934086,-0.019444274,1.260316,0.22081664,-0.32204312,0.18832803,0.42783207,0.054175112,0.21486361,-0.3930698,0.8268569,0.5631533,-0.1820116,-0.22594383,-0.40525967,-0.15830623,0.3781948,-0.3571791,-0.1751574,-0.074889146,-0.7670277,-0.556686,0.29816824,0.1823055,0.2953338,-0.010801821,0.06854932,-0.078676276,0.084028974,0.3997155,-0.6389675,-0.14592096,0.3079415,0.33511823,-0.15211518,0.17592908,-0.3590841,0.5611034,-0.6278286,0.2155033,-0.38766083,0.16640784,-0.36018535,-0.40098256,0.1071525,0.021400342,0.42604747,-0.09702102,-0.4001062,-0.17062509,0.5485851,0.16225693,0.17578696,0.71379936,-0.23957147,0.054396622,0.017333247,0.42344907,1.0301586,-0.48319617,-0.03353565,0.4354531,-0.32519633,-0.58858454,0.37501404,-0.34804937,-0.020662311,0.020172583,-0.47447878,-0.36859077,0.36021343,0.04904782,-0.030561646,0.08556423,-0.39295265,0.050417636,0.24349274,-0.18019189,-0.2094481,-0.093790986,0.48073405,0.57278347,-0.28583542,-0.19489749,0.26670697,0.511783,-0.30317083,-0.36121044,-0.03757712,-0.277555,0.457177,0.1457953,-0.39572787,0.03487851,0.10907513,-0.41173217,0.1877394,0.34926432,-0.36083767,0.17502776,-0.17186686,0.0900089,0.7814833,-0.0005268582,-0.012886559,-0.59404725,-0.3796082,-1.1158197,-0.39385822,0.38337642,0.04503262,-0.1498982,-0.33962494,0.038703766,-0.09584818,-0.23483123,0.16215014,-0.7162203,0.2710132,0.11316854,0.5193518,-0.16569707,-0.84002846,0.048454233,0.16646184,-0.114321366,-0.7037393,0.6243182,-0.31243542,0.9318699,0.02652714,-0.13358665,0.20395432,-0.3174725,0.12508062,-0.40198824,-0.20229997,-0.68220365,-0.038691036,768 +528,0.36099964,-0.24384236,-0.22005133,-0.17755781,-0.2799569,-0.021519968,-0.15049721,0.29994383,0.04291817,-0.3779931,-0.1629249,-0.12853052,0.106103376,0.46293825,-0.12208925,-0.5801678,-0.22726046,0.05028418,-0.6015787,0.51450133,-0.6272922,0.3502226,0.18516111,0.17874089,-0.034330722,0.39712116,0.43782392,-0.16728899,-0.11008586,-0.054273214,-0.19899864,0.10597735,-0.53115135,0.09041127,-0.12168678,-0.39674425,0.12631544,-0.49843287,0.009817834,-0.6128789,0.11770369,-0.83184,0.5432083,-0.06353798,-0.10379262,0.058459315,0.22709234,0.38312075,-0.35834435,0.053737767,0.19094399,0.0547854,-0.016435722,-0.19393988,-0.036938604,-0.30116415,-0.43445325,-0.05587274,-0.62601465,-0.43034777,-0.18449685,0.10595087,-0.34989285,0.11563059,-0.10232865,0.074510224,-0.43655276,-0.19185922,0.36418933,-0.19427076,0.297525,-0.3715214,0.045622893,-0.020966832,0.51015794,-0.24931808,-0.05756964,0.52877814,0.33174542,0.46627268,0.17968328,-0.23740624,-0.13703987,-0.18064228,0.17350121,0.5587536,-0.13740505,-0.46106005,-0.16011314,0.07020581,0.12600291,0.431276,0.04464201,-0.13235307,-0.061694648,-0.025272174,-0.21743488,0.3468366,0.36650398,-0.35371155,-0.42732382,0.3413168,0.56288075,0.1373886,-0.095500536,-0.12968695,-0.004292575,-0.48255768,-0.22438014,0.066582695,-0.016497353,0.47945303,-0.025071535,0.22591531,0.8210557,-0.20658585,0.24609466,-0.2086972,-0.23440695,-0.29938743,-0.19775769,-0.12326543,-0.0251829,-0.5040792,-0.013972708,-0.22894947,0.7038768,0.16080725,-0.83530575,0.48975062,-0.5809079,0.06691174,-0.10191409,0.538114,0.4876426,0.36549586,0.32529804,0.7426077,-0.31659645,0.13358797,-0.05559642,-0.45266625,0.11220054,-0.18434198,0.02707432,-0.5753861,0.13451669,0.12558363,0.12528585,0.0152421575,0.3926411,-0.54821676,0.10944353,0.17496464,0.720513,-0.38013202,0.020683441,0.6893955,1.0899457,0.87407476,-0.03950286,1.2321523,0.26287135,-0.23559688,0.20414925,-0.36827797,-0.6372663,0.14345714,0.60904896,0.07351359,0.469416,-0.017382026,0.00018359082,0.25401708,-0.26159826,0.09694881,-0.0080818515,0.36257687,0.02750026,-0.19432926,-0.5583719,-0.18726741,0.011880292,-0.11634379,0.02819632,0.21570525,-0.18722638,0.2865557,-0.017418146,1.8120569,-0.012560947,0.20873523,-0.010734217,0.5681168,0.23142603,-0.07789608,-0.18016036,0.38477924,0.28693604,-0.03079789,-0.545917,0.21978554,-0.25371122,-0.52882904,-0.0073688827,-0.4205628,-0.043045286,-0.073209204,-0.33354458,0.049475014,-0.026021156,-0.31348935,0.43985102,-2.9071584,-0.33349404,-0.12494003,0.19629739,-0.44147214,-0.28613392,-0.028118098,-0.41130242,0.3253665,0.41773865,0.4541097,-0.66968143,0.5785519,0.39428076,-0.32404074,-0.17855631,-0.63955003,-0.088285975,-0.012066158,0.34462923,0.018638572,-0.14511608,-0.1588342,0.40225378,0.5472578,-0.075925395,0.11077763,0.37212536,0.35100487,0.23958495,0.573813,-0.16531096,0.5140065,-0.12859264,-0.08266206,0.29004803,-0.115515776,0.23037651,-0.06393994,0.15405071,0.31124672,-0.5072085,-0.91689265,-0.6505881,-0.6200107,1.0152432,-0.35427788,-0.21732923,0.2805077,0.06017242,-0.08707048,-0.02536567,0.408696,-0.06992515,0.16746299,-0.6692658,0.15867607,-0.06780364,0.19368662,0.05536144,0.049428463,-0.41723195,0.52481234,-0.06925865,0.637175,0.23100111,0.19433498,-0.13272835,-0.19730665,0.115684286,0.87404865,0.3339825,-0.10101453,-0.072468296,-0.24780059,-0.1672055,-0.17740385,0.03974861,0.28762063,0.8477307,-0.0085501205,0.0901087,0.21017106,-0.030609379,-0.02234848,-0.06765251,-0.14500296,0.055364132,0.010768073,0.44350386,0.38333416,-0.25898072,0.5541485,-0.31075376,0.39325327,-0.06527388,-0.5114528,0.52478683,0.2819761,-0.14348364,0.10239046,0.4660409,0.5556737,-0.32382512,0.47856277,-0.5703115,-0.19452773,0.7094437,-0.1905397,-0.3478947,0.22081849,-0.20244537,0.07330563,-1.0062631,0.2719773,-0.27076766,-0.23472199,-0.28588915,-0.21531573,-3.6653829,0.08762906,0.04087468,-0.25790855,-0.0636143,0.041788157,0.28488368,-0.72986317,-0.63523334,0.111322165,0.08640598,0.5560817,0.017962975,0.11371971,-0.24222347,-0.08532746,-0.19317098,0.17167391,-0.06298538,0.27829465,-0.1508127,-0.3905025,-0.107026406,-0.17354727,-0.7401646,0.32883045,-0.4660421,-0.50706613,-0.1117763,-0.5428844,-0.29203752,0.6972953,-0.2557531,-0.00989984,-0.20276655,0.0014255515,-0.25301233,0.292931,0.21176815,0.19380954,0.069736965,-0.06962637,0.027187875,-0.36082643,0.49767193,0.12454051,0.38544616,0.12273967,-0.13204023,0.19624887,0.4944574,0.59586746,0.016076919,0.7577467,0.2719913,-0.1646148,0.35925645,-0.4118916,-0.038674526,-0.59841913,-0.50361884,-0.085377134,-0.30946663,-0.7047544,-0.09459543,-0.24679923,-0.6869813,0.5797401,0.03830233,0.3394545,-0.13097064,0.19116138,0.2731112,-0.22595103,0.03254823,-0.06033183,-0.091992564,-0.5302433,-0.2868399,-0.6525922,-0.5024682,0.1004949,0.8648187,-0.22025855,-0.0343198,-0.18607865,-0.22533043,0.13244426,-0.17075522,0.16571292,0.38115647,0.1961352,-0.0707462,-0.6953401,0.48255116,0.07129687,-0.13302167,-0.36045632,-0.024444861,0.61663276,-0.6821426,0.4110456,0.22666267,0.19042501,0.18537791,-0.45080972,-0.13932063,0.030676743,-0.21703972,0.26906872,0.005664536,-0.7840906,0.49878582,0.26815534,-0.44594464,-0.6521139,0.3077396,0.04032605,-0.23473246,-0.09054815,0.21876894,0.1478423,-0.057632506,-0.3448418,0.19674782,-0.5964657,0.30441174,0.25569743,0.13988861,0.43337783,0.061377738,-0.37347808,-0.61341655,0.015525265,-0.35122776,-0.26200056,0.2025489,0.054166406,-0.057801057,0.16091558,0.12610558,0.38744137,-0.43289107,0.09481834,0.2721108,-0.34631726,0.16369872,0.46111494,0.3095172,-0.3383536,0.48492622,0.07995776,-0.08923637,-0.14814863,-0.1287041,0.47220844,0.102962844,0.10346268,-0.18342365,-0.26468632,0.47600868,0.66967577,0.112258114,0.15791914,0.13620508,-0.2184072,0.40429562,0.06638466,0.0589724,0.24134341,-0.3404188,0.092527404,0.22063401,0.050076615,0.5706142,0.29933208,0.20520236,0.13009308,-0.20340021,0.00212329,0.34230232,-0.28429276,-0.88962066,0.33030125,0.27865267,0.7548812,0.5030756,0.033880442,0.0051880223,0.44772616,-0.4027763,0.18007828,0.38746786,-0.08970712,-0.60416543,0.7765649,-0.4724656,0.3413403,-0.052656766,-0.10509058,0.041493732,-0.03149963,0.30177563,0.8752341,-0.14676252,0.073807724,-0.05695045,-0.023620684,-0.07050966,-0.32195744,-0.14496198,-0.37401387,-0.23809102,0.5942072,0.2894848,0.31375203,-0.047243502,-0.07234822,0.080371834,-0.2510104,0.23362394,-0.116869695,0.13389729,0.11254089,-0.507256,-0.34681684,0.64161605,0.036787305,0.16056748,-0.14767571,-0.4270292,-0.018418347,-0.18940207,-0.12708831,0.050086517,-0.7541276,0.18419974,-0.20073144,-0.28243914,0.44160992,-0.28168827,0.20795546,0.15780912,-0.015093224,-0.016717182,0.100355335,0.2701537,0.65664136,0.07651418,-0.31631878,-0.21047187,0.06615563,0.1543561,-0.2580628,0.11414871,-0.29270792,-0.0354735,-0.6111611,0.6440649,-0.021470802,-0.38811046,0.22450742,-0.1871277,-0.050898273,0.42282325,-0.018174198,-0.048530363,-0.29442233,-0.029128743,-0.28528556,0.03892495,-0.35274383,0.24727343,0.24578442,-0.02061477,0.03628723,-0.090455905,-0.07166142,0.638599,0.065609835,0.46311638,0.16834934,-0.03115936,-0.31417775,0.030317083,0.06845393,0.28676718,0.09640711,0.14169164,-0.37894312,-0.22352536,-0.17611465,0.16694379,-0.24193124,0.14896478,-0.04155136,-0.40196982,0.75812966,0.06256542,1.196438,0.115179434,-0.34375784,0.08354163,0.5631107,-0.11379927,0.0820166,-0.46527764,1.0493218,0.5635771,-0.065999135,-0.1370004,-0.37908274,-0.24217546,0.39497662,-0.37512806,-0.2175721,-0.06391342,-0.593265,-0.5349378,0.2459418,0.07962396,0.15597446,0.06811894,-0.13252164,-0.022276325,0.17497393,0.37022242,-0.5705183,-0.2798394,0.2781178,0.24141277,0.008839594,0.11861612,-0.5031305,0.41517472,-0.63326925,0.24294342,-0.3715158,0.0769826,-0.12197196,-0.2960154,0.16643532,0.07671835,0.33283225,-0.10564972,-0.5541459,0.04542658,0.37812454,-0.073083416,0.18210877,0.64229316,-0.27122346,0.19179752,0.017972754,0.46351954,1.210627,-0.25739723,0.021320531,0.3376172,-0.4455747,-0.53112364,0.38212034,-0.10472388,-0.031190524,-0.19745348,-0.408758,-0.4348205,0.27462703,0.14294441,-0.0024546299,0.0016522536,-0.40752825,-0.22374399,0.29618582,-0.36380002,-0.32585278,-0.2829936,0.34287134,0.8979483,-0.38423178,-0.17881842,0.14196561,0.20881346,-0.30023044,-0.476862,-0.17154057,-0.14302717,0.40318182,0.049847424,-0.31307146,-0.041132636,0.15447657,-0.22314712,0.06603698,0.33256215,-0.39550278,0.12758282,-0.22580047,-0.16502312,0.97388256,-0.12039304,-0.25878245,-0.7059876,-0.518014,-0.8883516,-0.49038133,0.42350963,0.11445742,-0.06364549,-0.23850682,0.09982596,-0.05624688,-0.19554864,0.09051139,-0.4136315,0.24183273,0.10452783,0.45679075,-0.21809924,-0.7450229,0.12652889,0.18806064,-0.01796727,-0.6426013,0.6841334,-0.12360025,0.79284525,0.06615651,-0.19968645,0.11418807,-0.47057787,0.01957475,-0.3707259,0.019886145,-0.7577302,0.20720124,777 +529,0.39367083,-0.2627942,-0.5039148,-0.12063801,-0.3112515,0.068848856,-0.065996364,0.5937279,0.24914639,-0.34097734,-0.20775078,-0.33657858,0.049950738,0.19234204,-0.054299276,-0.43939394,0.03242338,0.27195093,-0.53795093,0.46811453,-0.35080436,0.11200096,-0.13133651,0.4210547,0.3928327,0.30646974,-0.28083998,-0.22631137,-0.14836049,-0.20387074,-0.07628262,0.40976062,-0.56603205,0.3376967,-0.22720493,-0.17245951,0.026405215,-0.6169085,-0.49641246,-0.7623211,0.19637051,-0.993338,0.43675986,-0.04301094,-0.22864223,0.025281599,0.082204424,0.5204102,-0.24943271,-0.15705016,0.30227908,-0.19252054,-0.07950657,-0.16208278,-0.066624075,-0.29665226,-0.4331307,-0.14682563,-0.24355388,-0.20403774,-0.42620835,0.16387479,-0.30242124,-0.10318915,-0.07646505,0.43254873,-0.5372786,0.3857148,0.1679114,-0.11939112,0.25080815,-0.5034598,-0.2141768,-0.13983274,0.38904566,-0.11513392,-0.35539725,0.39981502,0.29432845,0.17207563,-0.10872375,-0.058732595,-0.099272236,-0.050072428,0.24793628,0.49847177,-0.106664956,-0.35781032,-0.034879334,0.06211335,0.13495383,0.2612749,0.078824736,-0.43049216,-0.2771569,0.123550706,-0.08840655,0.2921462,0.4403117,-0.08229027,-0.1203029,0.34651175,0.43764883,0.3655029,-0.14547476,0.021707824,0.08204854,-0.497371,-0.1759355,0.0020154428,-0.18326838,0.4281941,-0.12857199,0.14985754,0.9295188,-0.15584697,-0.08704614,0.07825785,0.26384166,-0.15085395,-0.31256416,-0.29164964,0.26735663,-0.3583596,0.3008948,-0.032450862,0.74079895,0.11643978,-0.5360112,0.19629917,-0.7170369,0.05468614,-0.22965448,0.49545032,0.6079421,0.437372,0.4762961,0.63842505,-0.29403383,0.11063101,-0.05036863,-0.5088798,0.114810176,-0.2957236,0.025777817,-0.52918553,-0.095913604,-0.01497175,-0.19476427,0.06292832,0.26952392,-0.53249204,-0.03448606,0.12832066,0.84833777,-0.32053804,-0.027712196,0.76791847,0.8579873,0.70367706,0.16185047,1.0663494,0.18557003,-0.27830783,0.27889627,-0.05021264,-0.8130296,0.3819571,0.35675478,-0.34628412,0.034667112,0.30705371,0.053963643,0.2891113,-0.48918098,0.09663143,-0.12942497,0.14584278,0.15890491,-0.16627574,-0.34402117,-0.3184188,-0.22854045,-0.015989957,0.031078398,0.075248234,-0.20738515,0.39405397,0.05399063,1.8054153,0.09202403,-0.015530409,0.03617662,0.48163065,0.13758299,-0.1332384,-0.17616211,0.5523853,0.30459484,0.24133964,-0.55523145,0.25445592,-0.18565233,-0.34290054,-0.05992071,-0.4303847,-0.15938272,-0.04017382,-0.42570928,-0.19605218,-0.16873077,-0.1724331,0.48441392,-2.756604,-0.12223951,-0.006083578,0.4709839,-0.2127564,-0.25296208,-0.14482962,-0.40330616,0.2649179,0.23061118,0.55268174,-0.699903,0.33627817,0.4876249,-0.6191543,-0.23503676,-0.5674016,-0.07092553,0.027808907,0.21872644,0.03341842,0.1647613,0.042002793,-0.04236122,0.36953953,-0.02853941,0.15202801,0.49592772,0.4867905,0.025207248,0.6137403,0.004328919,0.4578462,-0.17658278,-0.20346448,0.1754758,-0.32526255,0.3531302,0.05394598,-0.009150444,0.6300785,-0.38119432,-0.7369317,-0.7267073,-0.20135947,1.1579813,-0.30738586,-0.30514285,0.24880563,-0.5474312,-0.229392,-0.05865366,0.5275446,0.0030038187,-0.022870796,-0.7886561,-0.13711607,-0.124740504,0.17230424,-0.025631862,-0.10101932,-0.34376335,0.7570333,-0.0048887604,0.47264904,0.18594898,0.014172659,-0.24902341,-0.40451017,0.12156453,0.725745,0.25875443,0.17476226,-0.22718641,-0.21317147,-0.3672225,-0.109007575,0.119995795,0.6664018,0.5225948,-0.16203092,0.18701775,0.24525952,-0.065437265,-0.0878951,-0.3046499,-0.27109095,-0.035811577,0.0077692824,0.5010781,0.68436253,-0.11768136,0.56650317,-0.0062224055,0.3440402,-0.053926166,-0.421125,0.24424104,1.2122452,-0.13905852,-0.29296252,0.537929,0.5393845,-0.27065977,0.2862294,-0.4680298,-0.12407739,0.54615074,-0.14097446,-0.488421,0.27214026,-0.2629108,0.1742383,-0.86802435,0.30842382,-0.12396073,-0.6577143,-0.531658,-0.018041363,-2.584828,0.1645719,-0.23533668,-0.24635693,-0.11983454,-0.12072243,0.17630132,-0.5457439,-0.4763752,0.11033688,0.030551655,0.8002611,-0.14695115,0.04555423,-0.2539535,-0.1525587,-0.19670856,0.07275587,0.094217144,0.43029276,-0.105110526,-0.38905498,-0.088664725,-0.050520472,-0.32126242,0.04560361,-0.63676506,-0.5555478,-0.107697,-0.57082117,-0.3228597,0.64141023,-0.43457368,-0.057483267,-0.115100995,-0.01383368,-0.16794758,0.21753795,0.20805503,0.110021695,0.028969212,-0.022433562,-0.04598689,-0.25167945,0.3843949,-0.03858454,0.31787553,0.20974562,0.028966699,0.24937232,0.45736942,0.4637184,-0.14248557,0.8864599,0.49943194,-0.19225541,0.1813325,-0.31438705,-0.30733976,-0.4960421,-0.16781361,-0.0033729929,-0.42883584,-0.40944552,-0.01269865,-0.36579165,-0.7727911,0.51104116,0.1148259,0.12287092,0.07955127,-0.008608818,0.61543363,-0.09923543,-0.16101496,0.0004134306,-0.15611704,-0.63408214,-0.2728749,-0.46891266,-0.4693679,0.18206586,1.0096812,-0.29890618,0.049315516,0.11709076,-0.47216734,0.06096438,0.22204396,-0.10729045,0.13142942,0.6130438,-0.19500305,-0.6440366,0.3897622,-0.10942481,-0.26890084,-0.6795539,0.32801947,0.6473304,-0.70817804,0.5785983,0.23717903,0.014798337,-0.2547302,-0.31142005,-0.21358415,-0.22081694,-0.20179045,0.36070195,0.11526052,-0.6496954,0.22435328,0.39426666,-0.24293676,-0.74885213,0.58257043,-0.2337289,-0.38810465,0.049927585,0.31836957,0.017101053,0.080901034,-0.17469056,0.2887094,-0.31196827,0.23247422,0.24996679,-0.18912964,0.085080735,-0.15590623,0.14906123,-0.7435712,0.113831125,-0.3519134,-0.39083496,0.41287515,0.099920645,0.03464278,0.2090356,0.22553842,0.3052692,-0.2780345,-0.00901403,-0.19919035,-0.24442504,0.23234835,0.438831,0.47333127,-0.46858254,0.5893218,0.08370445,-0.11657076,0.1331338,0.16493177,0.316608,0.0757973,0.5087449,0.060814034,-0.24150242,0.23182373,0.9335031,0.22561088,0.63705796,0.015676614,-0.054187458,0.14614718,0.09071273,0.37778592,-0.027021987,-0.68265533,0.16202055,-0.33384123,0.13403311,0.4129472,0.22855447,0.17436838,0.025841963,-0.41210097,-0.010862291,0.23984501,0.24414203,-1.3332065,0.41153988,0.2920753,0.836379,0.3081503,-0.060210664,0.12887086,0.7062435,-0.06559169,0.10946059,0.21670668,-0.120381534,-0.4813213,0.4218273,-0.89884657,0.39389876,-0.026135726,-0.08841164,0.09324764,-0.05176974,0.4011667,0.668856,-0.25730273,-0.049432002,0.055240072,-0.43203115,0.12181427,-0.4500291,0.114364564,-0.7192593,-0.35611627,0.5338534,0.72701114,0.37355956,-0.1889517,0.14826562,0.03583295,-0.18485208,0.18932489,0.18339637,0.03562851,0.0638774,-0.72092617,-0.13206854,0.58318055,-0.35847855,0.23583211,-0.03250699,-0.13993844,0.33525723,-0.16516586,0.043325346,-0.18573765,-0.7825722,0.035445623,-0.27295396,-0.5755854,0.4393901,0.1069073,0.33505502,0.28356913,0.04953627,-0.1615981,0.6267701,0.11239799,1.0679597,-0.07397298,-0.27003103,-0.3588049,0.23452802,0.22740746,-0.14308803,-0.15537429,-0.36815187,0.017870879,-0.43128395,0.36188513,0.004311553,-0.36795834,-0.092438236,-0.17243262,-0.011772712,0.54606646,-0.052262597,-0.13377725,-0.23353931,-0.22781931,-0.36295706,-0.04316661,-0.12826683,0.2943577,0.2868976,-0.03494798,-0.27425072,-0.0857908,-0.20340827,0.32655436,-0.17873526,0.51408494,0.3763034,0.03889281,-0.11063274,-0.29691166,0.27140802,0.530481,-0.05546119,-0.11420768,-0.18738,-0.28415594,-0.3911688,0.28445467,-0.0548458,0.47992232,0.2505236,-0.28684667,0.69929564,-0.14461221,1.0291735,0.050375853,-0.32733512,0.35333544,0.4524615,0.05171332,-0.059868038,-0.36010668,0.7827706,0.5204545,-0.074454024,-0.10541386,-0.37237218,-0.060187947,0.20138565,-0.1042368,-0.10107864,0.039992485,-0.6174857,-0.1871132,0.17059053,0.21855323,0.28133217,-0.07175126,-0.008980566,0.26966378,-0.08636392,0.112907425,-0.30128402,-0.2664695,0.19314507,0.17122337,0.057056732,0.035179604,-0.51189816,0.5015417,-0.34307626,0.08270579,-0.27150464,0.22000538,-0.38735792,-0.17006691,0.120723955,-0.031664234,0.38464442,-0.39655834,-0.1720202,-0.33742195,0.5269834,0.22020955,0.111101985,0.51100767,-0.26590103,0.05597174,0.059094477,0.43144247,0.6854854,-0.2568238,-0.0024790508,0.5829167,-0.44982672,-0.40825313,0.44252676,-0.32743984,0.11492113,0.14955895,-0.25138608,-0.4549048,0.27598995,0.22471932,0.0737733,-0.14363219,-0.6215703,0.007885669,0.38600594,-0.20404649,-0.19795369,-0.38614655,0.09314563,0.5339633,-0.2259685,-0.36853758,0.14723173,-0.04321679,-0.1745708,-0.3323138,-0.1417435,-0.44852442,0.3533206,-0.24791276,-0.38714027,-0.20997927,0.032271385,-0.3866527,0.12809291,0.018403335,-0.35354543,0.13598336,-0.22515061,-0.0075628334,0.97543657,-0.268447,0.022003742,-0.54700124,-0.43563208,-0.6666298,-0.23062304,0.3990127,0.13978864,-0.015818182,-0.44929695,0.049890913,0.09789681,-0.2443895,-0.22943854,-0.50416434,0.42804417,0.097006306,0.35187802,-0.031307276,-0.9875393,0.3217621,0.017521143,-0.22877155,-0.7095793,0.5290485,-0.2697638,0.7088068,-0.015736908,0.15830204,0.20694053,-0.29419532,-0.07582271,-0.27722526,-0.17129306,-0.69344383,-0.018869335,781 +530,0.22733828,-0.51588887,-0.41557676,-0.12807004,-0.22183956,-0.03780651,-0.10790194,0.31455782,0.1562974,-0.27304882,-0.23235631,-0.07703384,-0.039214823,0.556048,-0.14415155,-0.67585236,-0.22847703,0.1166672,-0.76742953,0.58340317,-0.47025594,0.24385123,0.041167367,0.34169984,0.2165955,0.34746003,0.40590668,-0.13498215,-0.05853198,0.116157465,-0.19299807,0.07284794,-0.5429991,0.25836208,-0.06475758,-0.21992753,0.12596263,-0.36470065,-0.21914017,-0.6786895,0.34501785,-0.83026916,0.38020346,-0.07256397,-0.11976051,0.072694756,0.13872425,0.27415392,-0.62870777,-0.07731034,0.22824506,-0.08359671,-0.14429283,-0.16193493,0.12713835,-0.24637826,-0.41831067,-0.0028802624,-0.48320433,-0.24866807,-0.12838261,0.111120276,-0.42993435,0.16595438,-0.24573278,0.2657895,-0.42991138,-0.17104198,0.29711086,-0.17831643,0.08438461,-0.6363093,-0.0633713,-0.104362525,0.4300578,0.089180954,0.0026932124,0.57637125,0.13346197,0.373916,0.20672809,-0.22624257,-0.2939606,-0.18377045,0.12334136,0.5031351,-0.03423581,-0.35830775,-0.079257786,0.13165638,0.23086476,0.1532465,0.119323716,-0.27177435,-0.18428114,-0.13468279,-0.126249,0.34655,0.5369584,-0.026842084,-0.3363769,0.2557411,0.49418354,0.2992068,-0.09421124,-0.14778435,0.0451366,-0.5317307,-0.21521465,0.14304039,-0.014888967,0.4549043,-0.011692772,0.2646815,0.88108385,-0.1129201,-0.0043029105,-0.25985658,-0.020863002,-0.31032196,-0.29360422,-0.2135891,0.13282892,-0.46270132,0.03433487,-0.19994788,0.74090534,0.07461201,-0.77134734,0.35133186,-0.40046787,0.21091561,-0.09026541,0.5701679,0.5274553,0.37028125,0.30434912,0.8271747,-0.42048213,0.23706673,0.044057477,-0.49814537,0.018194573,-0.2776487,-0.031391017,-0.49940482,0.16666107,-0.18656382,0.13566124,0.01641448,0.31529242,-0.42643538,0.06615036,-0.008223648,0.7940639,-0.36249736,0.019632995,0.67448914,1.0245522,1.1536119,-0.023602068,1.0721549,0.31621838,-0.29257527,0.15351163,-0.39069524,-0.81549877,0.17984128,0.39090794,0.2386146,0.3046892,-0.074751504,-0.1199429,0.38002247,-0.34494588,0.21422234,-0.13478418,0.30276546,0.1672443,-0.1342198,-0.40686128,-0.22715619,-0.046255548,-0.12363793,0.009070686,0.1387319,-0.21266747,0.46107334,-0.091296844,1.5417448,0.025380688,0.1439151,0.0789836,0.63306534,0.13475668,-0.18560962,-0.018698514,0.3601628,0.6091566,-0.21539068,-0.72691345,0.16639759,-0.46381408,-0.5325278,-0.13954698,-0.46142414,-0.10920782,0.1702124,-0.3625423,-0.24430753,0.0644238,-0.13574803,0.37485796,-2.7478256,-0.0020947712,-0.21927688,0.1659664,-0.29525417,-0.015995055,-0.020388031,-0.5540218,0.23789361,0.30636984,0.46063447,-0.50039554,0.36926594,0.44380093,-0.3922399,-0.137239,-0.52265155,-0.08497478,-0.046048455,0.53515226,0.015358827,0.02120271,-0.118792124,0.07217654,0.6745013,0.03356712,0.052977808,0.49437025,0.45513654,0.22675455,0.5243924,0.123854876,0.5237289,-0.46410993,0.008520271,0.25586042,-0.26782933,0.3747823,-0.14932348,0.09625198,0.49638605,-0.33191353,-0.8147173,-0.55954796,-0.22117174,1.120051,-0.36520848,-0.43080944,0.27664828,-0.06834758,0.06111825,-0.1089291,0.4108799,-0.19879425,-0.024612894,-0.54119676,-0.029790554,0.029981265,0.16150062,0.07251926,-0.22866781,-0.34713033,0.8374595,0.04718705,0.55794084,0.25242904,0.21571429,-0.1167761,-0.3149422,0.13342023,0.644949,0.3086584,0.00042573042,-0.056664467,-0.26021636,-0.014866139,-0.3226927,0.01779354,0.5042094,0.7848772,-0.0008695317,0.1764417,0.31168064,-0.115488715,0.026116926,-0.06662672,-0.21898225,-0.16101313,-0.0016137192,0.37200624,0.5914224,-0.07829898,0.3590831,-0.21499448,0.40168673,0.031519704,-0.48065308,0.66441196,0.48335868,-0.10657482,-0.020421525,0.37035123,0.52742684,-0.36664635,0.45044366,-0.5592405,-0.22185062,0.78911585,-0.25508013,-0.34846374,0.07525538,-0.20988779,-0.008975893,-0.8748679,0.32400328,-0.29559666,-0.31934005,-0.5608548,-0.19370532,-2.9268432,0.14791854,-0.27736762,-0.28356436,-0.26540396,0.04918207,0.24596827,-0.6977142,-0.43531147,0.14661372,0.20051436,0.53243023,0.056562778,0.16767003,-0.19863394,-0.08059518,-0.18715377,0.14169803,-0.10966783,0.24478748,0.03840689,-0.4835053,-0.07622155,-0.10460248,-0.46509483,0.2388192,-0.43371707,-0.37932992,-0.17576131,-0.47338057,-0.20791177,0.5494309,-0.13504067,-0.078419104,-0.15781014,0.076997496,-0.3333351,0.13296254,0.09909684,0.13025856,0.0916791,-0.22676301,0.14968427,-0.40381032,0.45164922,-0.023557918,0.502063,0.19846003,0.018048795,-0.027296407,0.4171631,0.58933884,-0.18884508,0.7000634,0.36310843,-0.1114807,0.27635622,-0.23043594,-0.17886463,-0.50393134,-0.46832463,0.08321706,-0.31905106,-0.60245323,0.025894072,-0.3426996,-0.80675507,0.458332,-0.054836012,0.2716739,-0.053552125,0.043087672,0.3162117,-0.054099288,0.031056331,-0.14519426,1.673294e-05,-0.45299548,-0.3514828,-0.72625,-0.50366104,0.017567528,0.9000638,-0.23142245,-0.24661115,-0.120025635,-0.52747613,0.16320345,0.028562482,-0.023408918,0.3956023,0.23634101,-0.059358228,-0.83229536,0.6326032,-0.037176125,-0.0036530814,-0.47199112,-0.05158576,0.4543331,-0.6046268,0.42344126,0.21668676,-0.07110716,0.053431112,-0.49959216,-0.2429019,-0.023357451,-0.05302855,0.35597134,0.11085337,-0.642574,0.52445424,0.18980435,-0.65509593,-0.72981936,0.01834336,-0.009940088,-0.15509626,0.031087061,0.2379228,0.011336118,-0.049900908,-0.35120177,0.22468947,-0.40285987,0.31244844,0.18558793,-0.048012502,0.16824579,-0.07948717,-0.27158326,-0.6068755,0.14481388,-0.32893124,-0.08801484,0.38798285,0.10137405,0.014612721,-0.045613054,0.120967984,0.3738814,-0.29074317,0.07887083,0.08320541,-0.32459053,0.27543232,0.39729112,0.34024128,-0.46666166,0.48112875,0.10920621,-0.1529858,0.26548287,-1.7327922e-05,0.30228087,0.26173395,0.26750946,-0.21598446,-0.12844504,0.4873866,0.8013421,0.1182156,0.44176954,0.01642601,-0.24671271,0.4956427,0.061435733,0.15094955,0.09584254,-0.36400038,0.01455835,0.14648299,0.08525523,0.50884515,0.2433039,0.4189012,0.16096891,-0.12212513,0.060233466,0.24626768,-0.046865735,-0.90351456,0.3852791,0.2631967,1.0086001,0.45947555,-0.0054527437,-0.08299659,0.7309547,-0.22848736,0.10997225,0.29037422,0.046416175,-0.64275306,0.7363599,-0.41340858,0.5115319,-0.22991626,-0.14497897,0.22584817,0.0422132,0.27204555,0.61541337,-0.21856959,0.040717084,0.045364317,-0.2911617,-0.0794716,-0.45175728,0.12912855,-0.37880176,-0.4228428,0.49238747,0.44590157,0.30559614,-0.06255399,-0.045815382,0.073008336,-0.19509937,0.21244301,-0.03997951,0.01156391,0.14684065,-0.5622011,-0.11568773,0.5203573,-0.20530227,0.23050955,-0.18351777,-0.43482283,0.025673198,-0.33726048,0.0054796166,-0.025645414,-0.73152786,0.27335736,-0.05536325,-0.4032228,0.30590492,-0.12858866,0.2210987,0.2673361,-0.04108003,-0.2316417,0.15079619,-0.03682853,0.9800099,-0.10682945,-0.1785651,-0.39756337,0.008556326,0.28588328,-0.25835642,0.25921172,-0.352515,-0.19809367,-0.46631208,0.6255454,-0.120714806,-0.28514585,0.15778217,-0.35382462,-0.1255095,0.6131607,-0.14164506,-0.06838103,-0.15179434,0.028747106,-0.29935667,-0.040259693,-0.46505097,0.21241881,0.25439796,0.11890073,-0.10455453,-0.22791182,-0.06397077,0.61502373,0.052262187,0.45832896,0.16580431,0.017018646,-0.39709908,-0.03530798,0.09114029,0.45160505,0.40203327,-0.031024547,-0.50619274,-0.40608764,-0.25214577,0.17436896,-0.17142531,0.17255302,-0.012099503,-0.5343799,0.67419726,0.12471894,1.1796815,0.07435506,-0.2682785,0.13707116,0.7039991,0.02919341,0.17847136,-0.4764177,0.80347425,0.48157534,-0.1231919,-0.052456833,-0.3915331,-0.12563004,0.48276207,-0.3260544,-0.0894307,-0.027770098,-0.49882063,-0.40144306,0.13177307,0.16600016,0.11797074,-0.027132476,-0.20312516,0.029493853,0.16728476,0.45520404,-0.59421176,-0.22881718,0.10966711,-0.0067919726,0.010660452,0.2423736,-0.5255612,0.3935822,-0.6716536,0.25465393,-0.35416332,0.16782019,-0.114274554,-0.24437895,0.14683327,0.11112511,0.39895454,-0.48940882,-0.40890646,-0.030775683,0.5334707,0.093581446,0.4120002,0.6454372,-0.31355783,0.053425353,0.19000602,0.5157475,1.0695826,-0.47424215,0.010222725,0.29795986,-0.45315364,-0.5920973,0.46462682,-0.19562927,-0.16950472,-0.25291905,-0.46115202,-0.4446876,0.33614537,0.17167845,0.06288476,0.065435946,-0.55565536,-0.21645486,0.40666658,-0.29069665,-0.29666367,-0.37891316,0.22001283,0.6279747,-0.344738,-0.3119209,0.20040672,0.20271356,-0.23457642,-0.40698725,-0.12061463,-0.30901903,0.44463915,0.071328856,-0.13071159,-0.34207192,0.12757112,-0.38557485,0.17803478,0.11315055,-0.37086058,-0.07083393,-0.09137906,-0.019794613,0.77709913,-0.2501981,-0.07115529,-0.68612474,-0.310322,-0.96656644,-0.5082361,0.591718,0.16706443,-0.10716641,-0.568371,-0.02151914,0.009475359,-0.06875884,-0.09509381,-0.53605247,0.35035962,0.10875831,0.3725967,-0.20772323,-0.7282391,0.21359552,0.089257576,-0.20928761,-0.49784002,0.6382292,-0.12386227,0.81938475,-0.02413169,-0.12698577,0.024474518,-0.36080912,0.18430792,-0.43623856,-0.29220745,-0.5388913,0.12611896,782 +531,0.39091012,-0.11636824,-0.4014001,-0.18871556,-0.37841293,-0.0983501,-0.09823801,0.3748882,0.36555624,-0.15340805,-0.20513098,0.0064895046,0.13619402,0.14026658,-0.06652969,-0.65629137,-0.1297238,0.30005744,-0.7170468,0.38750553,-0.53293127,0.19669044,-0.122376986,0.50115174,0.044844992,0.38726002,0.122304134,-0.1126393,0.039866336,-0.0032789537,-0.15323064,0.22739877,-0.6111785,0.16086873,-0.21747361,-0.15016745,0.059372634,-0.4279247,-0.3295227,-0.7850169,0.2357144,-0.87167454,0.56255525,-0.08222695,-0.10819919,0.08663761,0.118691094,0.17828345,-0.33769038,-0.12542666,0.22538784,-0.12756601,-0.20780577,-0.32545117,0.011466933,-0.23344971,-0.3496928,-0.006539366,-0.31389815,-0.24503134,-0.23801433,0.11603914,-0.26564398,-0.008321605,-0.20897582,0.5755096,-0.3602357,0.22906156,0.24083368,-0.2944077,0.09843209,-0.4956612,0.18460009,-0.071153365,0.42433408,0.03516319,-0.26340145,0.30959585,0.20310314,0.42490512,0.18726662,-0.26090777,-0.18265955,-0.08950509,0.028325865,0.3516685,-0.11016774,-0.45862502,-0.077195026,0.055735346,0.034369834,0.24572375,0.008103341,-0.26903012,-0.029807866,-0.20336078,-0.013564242,0.69211245,0.4713904,-0.096950255,-0.36307183,0.2507981,0.6353168,0.2281679,-0.09431505,0.003212307,0.0021689555,-0.4599943,-0.2761945,0.041461054,-0.09751882,0.385264,-0.22627297,0.14247595,0.7520181,-0.08529244,-0.13716047,0.21834376,0.08435876,-0.012726264,-0.39125243,-0.13654287,0.22014956,-0.55709743,0.058674414,-0.18603276,0.6946557,0.19197345,-0.66155523,0.5444789,-0.5264598,0.17531672,-0.028070837,0.6164571,0.62196666,0.5574204,0.31546813,0.70183355,-0.4684915,0.23499237,0.02198167,-0.52080846,0.046561897,-0.1661789,0.2517046,-0.39612085,0.13695128,-0.2965561,-0.0916394,0.074084945,0.056450482,-0.48894247,-0.17214313,0.18079117,0.8183479,-0.26685384,-0.19250892,0.7237801,0.96545845,1.0078434,-0.0129823135,1.25056,0.23564489,-0.16801073,0.16935842,-0.1920497,-0.93715316,0.18309481,0.22619393,0.10086234,0.12065267,-0.006559274,-0.008478497,0.24732466,-0.39972326,-0.054760538,-0.13622051,0.53274673,0.17830369,-0.02785595,-0.39310932,-0.20422485,-0.09885653,0.010499767,0.168874,0.2696217,-0.19190499,0.27300447,0.08497377,1.3485546,-0.010901486,0.069159836,0.124313034,0.52370137,0.28745237,-0.059927948,-0.07867141,0.44424003,0.33936858,-0.040524933,-0.63201916,0.2407223,-0.23888513,-0.3516914,-0.11409458,-0.3423427,0.008070179,0.05596742,-0.3446445,-0.38219234,-0.2011056,-0.26180965,0.44946855,-2.7689137,-0.19432923,0.03864032,0.37542576,-0.27957937,-0.14628972,-0.064880915,-0.57270193,0.13324286,0.12604408,0.51382124,-0.66155094,0.4839247,0.48668405,-0.71620464,-0.15657131,-0.6851978,-0.13566135,0.092550695,0.38959855,0.11229811,0.051092084,-0.3196249,-0.0020505276,0.5208183,0.11017933,0.15949087,0.54560244,0.4205069,0.1254634,0.47954997,-0.047364943,0.63010126,-0.38049555,-0.09105118,0.30346897,-0.2689715,0.22140865,-0.21266249,-0.032284103,0.5949212,-0.38670993,-0.80328995,-0.58034766,-0.20285846,1.0450137,-0.15127014,-0.4282394,0.2663315,-0.43529096,-0.069857016,0.06171512,0.48492032,-0.14365622,-0.09296974,-0.6675696,0.06930464,0.0034797415,0.22738746,0.02733864,-0.07334037,-0.33292645,0.6719106,-0.08630691,0.5064663,0.20893179,0.15340456,-0.18240286,-0.3013511,0.10538171,0.51733357,0.30456248,0.06879421,-0.13930298,-0.18723895,-0.06581014,-0.07081501,-0.21692549,0.7165204,0.7205235,-0.22379184,0.1480231,0.3999037,-0.06733451,0.054500896,-0.19640985,-0.27948868,-0.11078866,-0.06948798,0.34790722,0.81342274,-0.2887588,0.33911362,-0.2072411,0.3788218,-0.009018281,-0.54362303,0.66160816,0.5116828,-0.21875954,-0.059763882,0.34380987,0.44386554,-0.49178806,0.45573848,-0.4876307,-0.11411565,0.50827926,-0.18858293,-0.4761048,0.11478709,-0.14158837,0.070463784,-0.63276356,0.33220598,-0.37643552,-0.59465253,-0.40664718,-0.07876209,-2.6334844,0.19804703,-0.23518206,0.023263456,-0.43392205,-0.09788726,0.12025566,-0.4008376,-0.6594776,0.16334297,0.18365975,0.5104449,-0.077307224,0.23589066,-0.16648963,-0.15509751,-0.3403502,0.1802278,0.10900202,0.2096323,-0.11255833,-0.3974362,-0.11590973,-0.03605057,-0.41559342,0.22639953,-0.6423386,-0.29169002,0.039963,-0.55965906,-0.18939056,0.5643341,-0.2859102,-0.04916122,-0.37627771,0.053429116,-0.23327824,0.16058563,-0.0153052015,0.14779197,0.059650753,-0.09733778,0.053564243,-0.18740462,0.4147286,-0.141958,0.3110464,0.066874266,0.10091322,0.10783938,0.27604643,0.8330482,-0.13170591,1.0320705,0.3427399,-0.043144464,0.38510847,-0.210336,-0.47851682,-0.40306714,-0.18648939,0.0731711,-0.36250004,-0.29310223,0.17916822,-0.45197186,-0.7540516,0.4607792,0.071957774,0.25887305,0.083673,0.08908266,0.5236212,-0.18453439,0.14855807,-0.059806645,-0.10579351,-0.5994099,-0.17283419,-0.4376964,-0.42071542,-0.088114016,0.9026499,-0.29102865,0.09132665,-0.028341817,-0.27782372,-0.022404347,0.17659414,-0.09738462,0.38724682,0.5351183,-0.11216299,-0.61250913,0.35039705,-0.04230846,-0.16186813,-0.4684171,0.25722128,0.54453516,-0.74431485,0.70387065,0.25767884,-0.026449624,-0.23950389,-0.55411434,-0.36413437,-0.06178931,-0.12141435,0.40599802,0.23915865,-0.9283477,0.4664312,0.40480846,-0.36305556,-0.7227998,0.1629401,-0.041930046,-0.3244464,-0.15529148,0.2984101,0.021741867,-0.07272528,-0.22301184,0.14937215,-0.2954608,0.2033527,0.02541407,-0.09230258,0.092365764,-0.08687762,-0.2992733,-0.7964445,-0.16582206,-0.44914407,-0.27000934,0.17644612,0.03437569,-0.029093772,0.05507353,0.13655089,0.4532109,-0.24003531,0.08242129,-0.055830438,-0.3997293,0.22541033,0.34344217,0.44411802,-0.45752105,0.44778094,0.035842996,-0.18157962,0.16332221,0.105903015,0.3308349,-0.045347717,0.3402601,-0.03568968,-0.009964307,0.29008156,0.8986437,-0.014888125,0.43032926,-0.12081764,0.039144795,0.60222596,-0.03355672,0.29857635,-0.033046193,-0.49019456,0.1501175,-0.15566477,0.21925819,0.49425572,0.3453572,0.34750667,0.07516842,-0.300404,-0.15432985,0.19664751,-0.023396948,-1.1915476,0.44445714,0.21034661,0.9641946,0.42345312,0.09325911,-0.14182474,0.80405796,-0.1035161,0.24090706,0.41178486,-0.05294209,-0.33197862,0.5981234,-0.5949971,0.35743645,-0.13223705,-0.1842546,0.20436427,0.14883144,0.25972328,0.7781266,-0.28134456,-0.03189934,-0.086530015,-0.12034964,0.1144229,-0.36569905,-0.037753556,-0.39469284,-0.4233469,0.58315516,0.4601424,0.26146647,-0.2529783,-0.03632949,0.061007712,-0.047190282,0.16287933,-0.047971506,-0.11918598,0.17544906,-0.47927102,-0.10118238,0.5488483,0.1461169,0.120000705,-0.27129027,-0.18421146,0.108633205,-0.23554964,-0.12765215,-0.15733527,-0.662103,0.1447048,-0.054795083,-0.3588218,0.48420253,-0.027524425,0.0372688,0.20139514,0.0143170785,-0.17882249,0.33897406,0.07237581,0.7088279,0.08880717,0.015970655,-0.4740286,0.20215723,0.19529973,-0.20840658,0.062173247,-0.37623698,-0.044597704,-0.43110222,0.5311798,-0.065502845,-0.4089397,0.20979951,-0.21010126,0.08131782,0.5803768,-0.08496751,-0.15162863,-0.090322375,-0.15539987,-0.41596976,-0.103174224,-0.2293708,0.3128681,0.3190914,-0.18291856,-0.1974239,-0.39009863,-0.27476507,0.5583073,0.07076285,0.36007348,0.18731894,0.036574095,-0.09819467,-0.014580724,0.1627717,0.54534096,0.14509235,-0.08657237,-0.25343525,-0.21807925,-0.19004975,0.24105383,0.010645202,0.17935666,0.03895681,-0.25348905,0.6483798,0.17281607,1.105098,0.03940838,-0.16832717,0.13673699,0.52881104,-0.06802253,0.012288502,-0.54835755,0.79341686,0.37967572,-0.08076812,0.030227793,-0.4284099,0.04587111,0.25360963,-0.27794415,-0.05660928,-0.06671286,-0.4990215,-0.23123562,0.23172317,0.1276996,0.14439295,0.018713921,-0.06196808,0.026657883,0.08481329,0.4376076,-0.5257694,-0.15655603,0.1302147,0.16726455,0.026532887,0.17557652,-0.29973707,0.34343424,-0.59542036,0.136521,-0.38579777,0.08576916,-0.3172307,-0.3148666,-0.037142508,-0.050640214,0.3089722,-0.29446468,-0.47679403,-0.19799384,0.28410244,0.17848226,0.23031954,0.5558484,-0.24169865,-0.0052518314,0.22428575,0.65997505,0.7814253,-0.15814862,-0.043140743,0.273686,-0.3875707,-0.5938869,0.48148173,-0.18861456,-0.09360405,-0.08603001,-0.1969907,-0.4509131,0.17279008,0.24698544,0.01777884,-0.01990907,-0.66983944,-0.118577935,0.32898453,-0.20711124,-0.1599898,-0.18281339,0.24738148,0.74767536,-0.17298838,-0.30180734,0.0906424,0.13899772,-0.2413613,-0.4785377,-0.10570471,-0.37640795,0.32531217,0.09793835,-0.2632206,-0.14979677,0.084455915,-0.50118864,0.10823153,0.1143809,-0.27284724,0.1857682,-0.16918333,-0.009707336,0.8165325,-0.28508538,0.068076506,-0.49264178,-0.51958364,-0.83888286,-0.24748246,0.16612825,0.18815207,0.0021782687,-0.62768346,-0.13230935,-0.09403313,-0.1691806,0.18368004,-0.4558063,0.3996131,0.04886531,0.4084747,-0.22996648,-0.9599782,0.1240016,0.22151402,-0.24396612,-0.55461806,0.55161893,-0.044117175,0.7499735,-0.031315763,-0.0716359,-0.07379014,-0.29011515,0.018044386,-0.3831062,-0.15001388,-0.5376583,0.10346864,784 +532,0.14054893,0.06729384,-0.44531268,-0.10247876,-0.077098556,0.20363688,-0.112527,0.40741414,0.17723076,-0.31647044,0.018470641,-0.09752679,0.0015962124,0.34368795,-0.07541207,-0.39237425,-0.046570618,0.12940148,-0.53009623,0.5123261,-0.3551456,0.12356619,-0.17355211,0.39376453,-0.028398527,0.26763448,-0.006383794,-0.11887999,-0.16327105,-0.15372394,0.10952229,0.37825987,-0.51486886,0.056291055,-0.28000388,-0.26320085,-0.06420195,-0.31928822,-0.4916577,-0.56371725,0.21722928,-0.7135194,0.43488815,0.23677275,-0.19700535,0.3686321,0.17295538,0.2297581,-0.033728667,-0.1357137,0.16435285,-0.11985638,-0.001506056,-0.18598168,-0.29925418,-0.5920457,-0.61600965,0.03722865,-0.54139024,-0.18657161,-0.20128444,0.09859376,-0.19743206,-0.1289028,-0.1723155,0.35068575,-0.4638734,0.070158206,0.16134325,-0.16265205,0.19443342,-0.43474856,-0.19783469,-0.06511496,0.24189267,-0.20324533,-0.060157843,0.22084484,0.15942876,0.404524,-0.24159907,-0.08205072,-0.37978426,-0.077625476,0.25947446,0.43545744,-0.34079245,-0.36701843,-0.048578538,-0.059444714,-0.059043758,0.054607768,0.026472261,-0.15604898,-0.055158466,0.061843853,-0.16932002,0.5229116,0.39116526,-0.4037954,-0.369352,0.38173643,0.525001,0.2086353,-0.34815937,-0.18498819,0.047739368,-0.44196683,-0.13408576,0.09714009,-0.18602021,0.41120392,-0.055401307,0.16001524,0.549779,-0.17711513,-0.061423074,-0.027592035,-0.094244465,0.124082096,-0.1131152,-0.11113421,0.25014114,-0.2611951,0.15332112,-0.16737078,0.5272584,0.019466281,-0.6731402,0.36104897,-0.69727314,0.036049444,-0.015777767,0.41568178,0.5529831,0.38556352,0.1310228,0.47589016,-0.15361245,0.061889905,-0.0020813984,-0.15262246,0.09147058,-0.299815,-0.078754164,-0.49591208,-0.029717615,0.026550794,-0.14215954,0.06946214,0.39334986,-0.5020805,-0.13910505,0.3938497,0.92940533,-0.19505776,-0.17540535,0.5000731,1.0483782,0.77894646,-0.048247986,0.92559046,0.1046627,-0.27763873,0.3330891,-0.3707964,-0.72750765,0.18815246,0.20079765,-0.11739842,0.30162773,0.09352321,0.15275313,0.3252015,-0.3626019,0.19374405,-0.15389837,-0.11287493,0.20253031,-0.0058556623,-0.26973468,-0.1344588,-0.115929775,-0.1460173,0.24958505,0.22180966,-0.2477181,0.26973853,0.061466448,1.3904747,0.014306584,0.1147782,0.15561175,0.5598945,0.09124548,-0.10856698,-0.14756487,0.4522446,0.21329705,0.2224655,-0.40775055,0.26610562,-0.20004381,-0.5305934,-0.20379564,-0.3820073,-0.15350987,0.0655205,-0.48536536,-0.0471823,-0.021766694,-0.31331402,0.38993493,-2.9025338,-0.08466838,-0.09764361,0.38467497,-0.16014542,-0.19915397,-0.28455606,-0.31612545,0.23919964,0.30011296,0.3606971,-0.52882814,0.4835196,0.45950052,-0.4701437,-0.15673581,-0.4656934,-0.14070383,-0.061713453,0.38651133,0.06882522,0.13256733,0.26184392,0.2690424,0.2668322,-0.097442694,0.12244094,0.17098565,0.37485832,-0.013459883,0.41386846,-0.06992168,0.48181802,-0.32399982,-0.24891853,0.3285753,-0.41199192,0.33235198,-0.11154699,0.16657685,0.25583452,-0.33548334,-0.90069515,-0.48001117,-0.19436793,1.3120085,-0.19057207,-0.3418476,0.122580394,-0.44863877,-0.42496854,-0.16148522,0.53243536,-0.10086838,0.10304059,-0.76151854,0.0936206,-0.2518119,0.2759182,-0.0020577523,0.13843797,-0.44665474,0.53432995,-0.025589813,0.41912094,0.28912994,0.17938717,-0.3463851,-0.4637246,-0.12816696,0.7383142,0.15265466,0.0836317,-0.12322174,-0.3281162,-0.27163607,0.074395895,0.122750305,0.5813762,0.38249794,-0.020765692,0.015283831,0.23216584,-0.04929849,0.059941106,-0.19905035,-0.28624955,-0.017210888,0.001431414,0.439344,0.5425634,-0.30480686,0.37677225,-0.017134795,0.29353556,-0.2683759,-0.31121683,0.33562046,1.059364,-0.12048088,-0.1929324,0.5813746,0.61134803,-0.3278931,0.32365972,-0.60670394,-0.32502905,0.40541735,-0.22465384,-0.4042599,0.18652143,-0.35029227,0.1516079,-0.94780576,0.24515319,-0.32434773,-0.38439152,-0.6018016,-0.062128115,-3.7412703,0.16096167,-0.1465058,-0.18353598,-0.11070112,-0.017957244,0.21445915,-0.4631179,-0.48401532,0.06727901,0.088188164,0.49122503,-0.1566278,0.09673776,-0.362822,-0.32059446,-0.06426927,0.3629698,0.25795585,0.34633043,-0.18423054,-0.54120237,-0.012542435,-0.14898147,-0.3077425,-0.032931503,-0.52889293,-0.3567093,-0.030993741,-0.51063865,-0.1262795,0.6448507,-0.5011864,0.006722857,-0.2723187,0.014602693,-0.0045137745,0.24060278,0.15203443,0.15519246,0.12885895,-0.031967137,0.046748523,-0.26021123,0.29947996,0.040413387,0.38305804,0.38561532,0.117646806,0.12346904,0.65201885,0.48438302,-0.004975387,0.8376098,0.50208694,-0.07377105,0.26003915,-0.3255956,-0.14545654,-0.5134381,-0.26826215,0.03601824,-0.3375335,-0.5973993,-0.06420663,-0.22402573,-0.7425667,0.5339941,-0.17224848,0.01682915,-0.06283651,0.29689178,0.47108263,-0.18438026,0.0041717803,-0.0706618,-0.10981028,-0.43599877,-0.2754051,-0.49207592,-0.33964792,0.091703735,0.93973583,-0.13869019,0.116516896,0.047538675,-0.2596024,0.0055908635,0.20587336,0.2053013,0.24462591,0.5002378,-0.06462653,-0.55337113,0.34243724,-0.1922358,-0.07514548,-0.5957287,0.24962112,0.5327752,-0.64962643,0.6080263,0.4570798,0.023321854,-0.1972045,-0.45097628,-0.18987314,-0.046311993,-0.12997441,0.22560486,0.11294281,-0.769055,0.2897276,0.17722093,-0.35443154,-0.6937642,0.7282134,-0.07709152,-0.24448732,-0.022297055,0.31682613,0.027093993,-0.073973216,-0.1407622,0.37874287,-0.22620907,0.13981542,0.14572635,0.01351807,0.24857377,-0.23248653,0.054989737,-0.7413479,0.13635308,-0.46825442,-0.31193453,0.52184,0.03189988,0.106576264,0.3246673,-0.14074369,0.22903578,-0.1629405,0.037575193,0.006051355,-0.32925743,0.35530323,0.24543817,0.54418254,-0.46826833,0.43590754,-0.024903717,-0.10444355,0.16185568,0.066784635,0.50721467,-0.08995664,0.45983595,0.14171025,-0.160776,0.16455613,0.8905238,0.3278854,0.46034935,0.025069613,-0.1344597,0.2807189,-0.041429736,-0.030281832,-0.16858919,-0.55750865,0.0022278854,-0.056793004,0.18261804,0.2947071,0.024369821,0.18985412,-0.22236228,-0.26199088,0.029369112,0.3151138,0.21533254,-1.0887288,0.28681812,0.18514027,0.7486462,0.38384858,0.16977657,0.18235806,0.5901845,-0.2456195,0.095882945,0.44883198,-0.053902593,-0.48126823,0.5169016,-0.6674437,0.5220147,0.046913896,-0.028589372,0.051771265,-0.18326221,0.35102513,0.7416902,-0.19293877,0.005958438,0.18078753,-0.35024714,0.14202984,-0.28207344,0.24520978,-0.48364624,-0.08972001,0.61203945,0.6289044,0.33000892,-0.108369485,0.057829168,0.026218917,-0.0916914,0.088637464,-0.018601907,0.24252574,0.030703578,-0.7514934,0.009331162,0.5629464,-0.11406176,0.12354891,0.16412571,-0.28244555,0.38334805,-0.19854693,-0.08123257,-0.0678124,-0.48530453,0.052369278,-0.21943879,-0.45618486,0.5985847,-0.28406158,0.3759536,0.14249328,0.04649598,-0.37428984,0.41219944,-0.118728705,0.62229604,-0.052467935,-0.117574885,-0.3438707,0.041974925,0.10879891,-0.17254968,-0.12886484,-0.3626011,0.17534313,-0.35799697,0.2287781,-0.17179203,-0.3112889,-0.21421883,-0.07874485,0.12871854,0.59611255,0.10444258,-0.116151996,-0.028396131,-0.008228777,-0.29393202,-0.011717958,-0.06763624,0.1664643,0.16962095,-0.097334936,-0.25197592,-0.28001127,-0.26098016,0.35005513,-0.038169783,0.47875276,0.5026366,0.24617803,-0.16086248,-0.10955219,0.20845763,0.389074,-0.14592631,-0.051105466,-0.111844696,-0.27753407,-0.2849917,0.37267682,-0.1981574,0.23382524,0.27990144,-0.26298815,0.6045324,-0.27116507,1.0075462,0.09565858,-0.31848162,0.15167175,0.36569008,0.055778634,0.015652562,-0.41363505,0.8451014,0.59271187,0.05880622,-0.20047382,-0.2316887,-0.023977509,-0.038436074,-0.16701046,-0.23356196,-0.014108394,-0.5863841,-0.035167508,0.19102894,0.24874744,0.31271315,-0.10308717,0.09602264,0.036372874,0.047949515,0.17816375,-0.4900601,-0.29300728,0.41170666,0.38577127,0.0018210517,0.09877091,-0.3978892,0.3238897,-0.29868957,-0.102836765,-0.2933512,0.11797859,-0.28633884,-0.19450796,0.17305449,-0.07316458,0.37958795,-0.17924477,-0.23699652,-0.23401482,0.28880993,0.18420635,0.04471177,0.49867114,-0.107540466,0.06493995,0.07225578,0.5189489,0.86839265,-0.3024762,-0.1043907,0.2955346,-0.25129032,-0.53790474,0.20935582,-0.48174447,0.28013235,0.0056809997,-0.07179896,-0.44442144,0.26497683,0.10060169,-0.06474868,-0.061005395,-0.59183055,-0.16297889,0.11149107,-0.3358646,-0.22364855,-0.27536863,0.1192384,0.65493786,-0.2517101,-0.17531474,-0.0139255095,0.31790495,-0.1856329,-0.46450573,0.1317642,-0.36838955,0.21031342,0.110157356,-0.433323,-0.09509474,0.054534942,-0.41561562,0.3340092,0.39371258,-0.39940163,-0.04465699,-0.18582214,-0.0067902845,0.8390088,-0.16234848,0.07389535,-0.27424976,-0.434144,-0.8221669,-0.33086637,0.28359616,0.19445112,-0.06616745,-0.41931763,0.110925145,-0.03792606,-0.41185623,-0.0375325,-0.43803033,0.36773926,0.110534675,0.3831284,-0.14307973,-0.7446144,0.09233659,0.0999946,-0.07318391,-0.6137989,0.4435595,-0.18001522,1.0091631,0.023143748,0.14304934,0.28582385,-0.38808537,-0.16705789,-0.11162858,-0.083282426,-0.61992466,0.014626116,786 +533,0.50975907,-0.11692552,-0.5293357,-0.17047611,-0.13866809,0.0058848346,-0.05214997,0.5050312,0.1627084,-0.7788993,-0.22090481,-0.24324703,-0.15015097,0.24681295,-0.23697637,-0.7149329,0.08653508,0.07652952,-0.4898999,0.58813226,-0.43927532,0.3472007,0.1757638,0.3600881,0.09100238,0.33939984,0.17108425,-0.20554471,-0.2918643,-0.21860361,0.029397888,-0.14613667,-0.5765298,0.27113858,-0.20436239,-0.33881196,0.015349252,-0.47063756,-0.38295445,-0.719923,0.3724086,-0.7803485,0.43324462,0.06654156,-0.1879901,0.048024688,0.16820347,0.29635566,-0.2859479,0.07556778,0.2274784,0.16210197,-0.04213079,-0.11062957,-0.1942523,-0.24570899,-0.55681723,0.12971509,-0.35621628,-0.20468815,-0.10191379,0.16313319,-0.2395427,0.12512287,-0.16177991,0.6184974,-0.3514754,-0.11575671,0.39539322,-0.22514793,0.191143,-0.62032986,-0.12122256,-0.15930046,0.12183813,-0.17312945,-0.062395446,0.34104648,0.24419503,0.61507356,0.14364266,-0.22027132,-0.16753975,-0.06862573,0.16392398,0.39264324,-0.15983225,-0.42952397,-0.1317767,-0.06663242,0.15063168,0.121352114,0.24649787,-0.37278193,0.056069504,-0.028581722,-0.3511046,0.24348368,0.5818175,-0.3046384,-0.19694008,0.19707419,0.45105055,-0.0025199908,0.036022417,0.066247895,0.053798348,-0.5029993,-0.28124088,0.16261615,-0.24570341,0.49797276,-0.10252575,0.25209993,0.6329799,-0.19737785,0.18117897,0.19763541,-0.03215782,0.014545091,-0.44137335,-0.37363392,0.08796946,-0.55424196,-0.002359731,-0.29480645,0.9064707,0.2165382,-0.63490635,0.3490711,-0.52222073,0.12430234,0.0029456785,0.44034502,0.5724572,0.36464167,0.15877834,0.7944568,-0.501622,0.018598905,-0.24113014,-0.26444647,-0.013965478,-0.028504154,0.14156958,-0.27694163,0.054887448,0.022221863,-0.035272088,-0.11055093,0.3872191,-0.50450236,-0.012096643,0.04455384,1.0218127,-0.27235976,-0.066111736,0.7806941,0.9990174,0.94467133,0.06300067,1.4010847,0.15225856,-0.24767883,0.31435612,-0.28428397,-0.7833422,0.3382893,0.33142963,0.15035029,0.12374934,0.11939788,-0.0018544154,0.41287643,-0.43324167,0.2306854,-0.23765548,0.36610684,0.019273186,0.0023380262,-0.33882815,-0.212636,0.0065853777,-0.08378242,0.0911962,0.17177026,-0.20106734,0.10793515,-0.056152273,1.6938541,-0.16353948,0.22109506,0.1525204,0.41056162,0.16718194,-0.0025980857,-0.05669439,0.11839853,0.18960033,-0.04807082,-0.57428056,-0.02213235,-0.31440187,-0.588418,-0.16115357,-0.2503554,-0.066824265,-0.14586213,-0.54613364,-0.1841418,-0.1192465,-0.33715126,0.26971164,-2.4717238,-0.2727642,-0.2078805,0.40051433,-0.48050764,-0.38019404,-0.12236003,-0.47349593,0.63583034,0.36965227,0.45249534,-0.6074747,0.5165248,0.4580066,-0.33056858,-0.1285825,-0.58023626,0.014299742,-0.010678725,0.1197407,0.0046854233,-0.28449315,-0.23324992,0.01982024,0.45819637,0.0065326607,0.07877922,0.3195011,0.30991656,0.20918195,0.5352067,-0.040831707,0.59871584,-0.4857834,-0.05773457,0.17955919,-0.4900671,0.15230717,-0.036566652,0.15796518,0.30897936,-0.7226906,-0.64045817,-0.7911715,-0.50961155,1.1468792,-0.05686425,-0.2584893,0.3674585,-0.34952587,-0.1923753,-0.11215441,0.4999182,-0.034931753,0.032576554,-0.7699366,-0.05876842,-0.18783246,0.24832503,0.05008898,0.10118626,-0.41034573,0.7709738,-0.098529264,0.4257742,0.43170017,0.061180804,-0.26472247,-0.39848927,0.093203254,1.1962986,0.42809242,0.21040048,-0.057553887,-0.16253488,-0.46864393,-0.19900724,0.023996463,0.40342483,0.8011611,-0.0070158592,-0.06307125,0.33940682,0.06310104,0.041152116,0.057900656,-0.4889855,-0.2929084,-0.07204299,0.6025847,0.45124266,-0.20512426,0.3391406,-0.24258687,0.42052084,-0.34130576,-0.31387076,0.5017776,0.7207632,-0.20567785,-0.22551247,0.5951156,0.43352604,-0.341163,0.4883997,-0.52476823,-0.41670594,0.34509033,-0.08221625,-0.50277174,0.14427672,-0.3097871,0.12974916,-0.95282567,0.36712056,-0.43125767,-0.36968654,-0.45773724,-0.4390128,-3.2004466,0.17827842,-0.2455268,-0.10012285,-0.15294848,-0.0532338,0.1352872,-0.39946073,-0.71435964,0.13779533,-0.016241524,0.5869871,0.06389095,0.22310843,-0.11026677,-0.13780704,-0.34743047,0.12809269,0.11938788,0.24087487,0.09783204,-0.35081053,-0.13037094,-0.15268545,-0.4021748,0.22375838,-0.6906144,-0.5837864,-0.22909093,-0.6939722,-0.33100125,0.7890101,-0.34480256,0.039908856,-0.16183722,-0.0368902,-0.20821384,0.4660031,0.06895518,0.17617784,0.0018673709,-0.14992833,-0.24059217,-0.3544895,0.13415283,0.18364432,0.44835705,0.37326166,-0.1683127,0.23226707,0.39544398,0.70797664,0.062000982,0.6433247,0.3331574,-0.150852,0.43300954,-0.36463112,-0.27159458,-0.38588265,-0.19001244,0.06598985,-0.3153791,-0.42185697,0.12719129,-0.45869273,-0.7572569,0.3657972,0.08548762,-0.16575935,0.09409727,0.08366007,0.29043484,-0.08796732,-0.007345659,-0.0637845,-0.038180728,-0.6079572,-0.3673349,-0.5790556,-0.38364896,0.16725568,1.1182457,-0.07619517,-0.061260086,0.08007058,-0.15917332,0.09852187,-0.0977759,-0.005753317,0.052575674,0.4967479,-0.028392782,-0.63077307,0.42720464,-0.052699387,-0.2861076,-0.4191554,0.20528446,0.74542713,-0.7520198,0.65699065,0.3746808,0.20134732,-0.1273722,-0.37774298,-0.13255082,-0.043827005,-0.22593285,0.25984085,0.096793994,-0.6708251,0.378865,0.3926542,-0.079636745,-0.940729,0.34173578,-0.034583855,-0.2220563,-0.0753241,0.42753455,0.06323827,0.029598773,-0.09817753,0.11844719,-0.4869248,0.18199025,0.3329978,-0.06976154,0.5298743,-0.32488665,-0.33890727,-0.6536909,-0.06761438,-0.5973421,-0.20523693,0.28671572,0.07977707,-0.04355496,0.21826942,0.28393903,0.36822838,-0.19648282,0.17254011,-0.0222787,-0.1780598,0.2901238,0.3938538,0.4982357,-0.49273023,0.5716659,-0.08369116,0.080426775,-0.058613654,0.107012615,0.35215896,0.0906923,0.2915232,0.010428599,-0.06840728,0.3200108,0.86412245,0.089109294,0.37586194,0.3161645,-0.10581218,0.31463462,0.048336793,-0.064872004,0.10143936,-0.63956517,-0.032650203,0.08352069,0.1680951,0.3580207,0.26107392,0.29063362,0.026566116,-0.2544865,-0.1609181,0.20972826,-0.22621533,-1.1392004,0.38090086,-0.044877227,0.68666905,0.6614981,-0.016774535,0.091391094,0.49589437,0.028232131,0.18459912,0.3038988,-0.14929655,-0.46238786,0.585506,-0.48189014,0.3808879,-0.056324255,0.09328209,-0.10679169,0.0267588,0.45934194,0.77829045,-0.009104869,0.014472229,-0.18677013,-0.14239372,0.117667265,-0.501143,0.16112624,-0.40613085,-0.30095625,0.6702355,0.29083037,0.29728583,-0.122221895,-0.024126291,0.06938639,-0.13344558,0.17153871,-0.05153767,0.048482187,0.10107458,-0.70079315,-0.35489306,0.5626208,0.07917883,0.2313665,0.05388731,-0.23588657,0.20240544,-0.079664886,0.03033254,-0.060892317,-0.7789992,0.12750828,-0.49807468,-0.31005648,0.0136986505,-0.11390873,0.14630137,0.11214953,0.0572361,-0.46931097,0.43437353,0.08513581,0.6086605,-0.18782915,-0.22703484,-0.34068537,0.13475677,0.103597865,-0.32307985,0.0649853,-0.24838401,0.0803601,-0.7557623,0.5143868,0.046902206,-0.23307474,0.20828438,-0.21108885,-0.11511774,0.4721624,-0.27548048,0.09882649,0.13922183,-0.22635235,-0.13981219,-0.105667405,-0.0512671,0.2875856,0.1693293,0.13484795,-0.027764788,-0.24111596,-0.047463376,0.43310338,0.065500334,0.29321882,0.34799448,0.15999267,-0.3891957,-0.13958414,0.21779525,0.4850335,0.13365045,0.01406005,-0.20724252,-0.30213246,-0.2007635,0.3155844,-0.111553386,0.2546219,0.09862816,-0.41612196,0.8517538,0.2628387,1.2134138,0.16743697,-0.21768458,-0.062497284,0.40492648,-0.036229964,0.0066154557,-0.4428399,1.0277885,0.59634143,-0.2090967,-0.14283219,-0.3999191,0.008240665,0.08201234,-0.18183987,-0.111558795,-0.1167239,-0.60163635,-0.38221362,0.15749903,0.32223433,-0.009000452,-0.056275282,0.13648184,0.1080644,-0.100375734,0.27231595,-0.5944757,-0.05033367,0.30953708,0.24079034,0.19687316,0.16040985,-0.5196161,0.37215176,-0.75199604,0.20326032,-0.107131235,0.04609446,-0.024614343,-0.29638427,0.19645707,-0.003962491,0.48129153,-0.47472268,-0.4043432,-0.24203208,0.52850676,0.12630782,0.23524117,0.754838,-0.19461264,0.010319607,0.16795754,0.69322693,1.0756661,0.0062741637,0.1821537,0.22224352,-0.2838355,-0.58809745,0.27320462,-0.22935155,0.03419286,-0.015199618,-0.30063632,-0.5055738,0.29790777,0.29276854,-0.12312678,0.21919183,-0.64496714,-0.3613276,0.28600278,-0.1806409,-0.3139722,-0.2948219,0.06315061,0.7917655,-0.17807555,-0.08843793,0.16076374,0.22320403,-0.33350942,-0.60234034,-0.19353214,-0.40120402,0.24068461,0.19255951,-0.23951538,-0.18474199,0.041235857,-0.39400902,0.046806436,0.06673279,-0.35286644,-0.04158586,-0.25860688,-0.1740394,0.73826694,0.25111204,0.1742947,-0.5633016,-0.45641655,-0.9353289,-0.38237882,0.4833216,0.07375564,-0.039125305,-0.525955,-0.19123156,-0.0846642,0.07237071,0.12679806,-0.38118872,0.42690706,0.1336336,0.5075613,-0.058636438,-0.720388,0.0492728,0.21634623,-0.18644105,-0.60602,0.3099307,0.044051927,0.81791884,0.05424143,-0.07374648,0.22388557,-0.6552787,-0.03650189,-0.29435852,-0.21617153,-0.6566308,0.12140579,787 +534,0.5505423,-0.124898486,-0.8009405,-0.116383836,-0.30202913,-0.05959567,-0.29485917,0.3360742,0.28757665,-0.6028103,-0.2778553,-0.07249951,0.016135503,0.15756293,-0.15376909,-0.55652356,0.12888853,0.15755741,-0.54633415,0.5590571,-0.2500852,0.22512701,0.048255794,0.3125611,0.35669592,0.16009557,0.1357729,0.1350005,-0.13366456,-0.11129924,-0.257343,0.42345232,-0.48119298,0.19128473,-0.37037554,-0.40819055,-0.10008204,-0.46247503,-0.44816345,-0.7881313,0.2881793,-0.9472621,0.52041996,0.203717,-0.27635422,0.097096086,0.26298466,0.20202538,-0.08755718,-0.0024880213,0.14483581,-0.22494146,-0.02691139,-0.23083429,-0.25494638,-0.50733024,-0.5427062,-0.12052274,-0.6178163,0.03825003,-0.18524384,0.10529502,-0.27181557,0.089568496,-0.08481775,0.38624382,-0.38966912,0.002652147,0.30472156,-0.12047969,0.31907728,-0.6064361,-0.334251,-0.08213407,0.26303202,-0.07928161,-0.4353954,0.37233403,0.13898374,0.40871602,-0.11365002,-0.23925366,-0.20983885,0.021834794,0.033749633,0.44046047,-0.16633256,-0.3997245,-0.20043118,0.021899303,0.36974865,0.12132641,0.14958902,-0.0891907,-0.09888693,-0.08461495,-0.04943615,0.40334558,0.65849143,-0.23147483,-0.075973935,0.36536422,0.5627995,0.25492984,-0.27255574,0.05811911,0.067467675,-0.5538241,-0.18471768,0.040115323,-0.1955792,0.653262,-0.09986903,0.25869092,0.5108944,-0.14512525,-0.09967911,0.13306883,0.15640792,-0.032113057,-0.19551982,-0.33298627,0.3599516,-0.44196722,0.052458517,-0.25890788,0.5668087,0.17145464,-0.5396272,0.24675386,-0.40617222,0.016608147,0.020275533,0.56139034,0.8509698,0.46959662,0.36454085,0.88895035,-0.339684,0.09110247,-0.121306166,-0.19801275,0.049361076,-0.2160981,0.13461486,-0.48508045,-0.03262448,-0.08765269,-0.09487634,0.29945654,0.6787066,-0.4579475,-0.23425578,0.23209509,0.7745565,-0.23707184,-0.11205702,0.7697091,1.023109,0.9949961,0.107232675,0.69806594,0.1363878,-0.2529811,-0.10171716,0.045298755,-0.79160315,0.2549163,0.23774716,0.33901212,0.4637956,0.20121503,0.17284457,0.33148694,-0.6000818,-0.00024483885,-0.024098685,0.26899308,0.09619497,-0.05131683,-0.41627645,-0.10951496,-0.13831888,0.09128022,0.036650773,0.24364528,-0.14327969,0.58540046,0.052138563,1.4668483,-0.10436293,-0.07385606,0.055008896,0.4882248,0.32025665,-0.35281345,-0.07345254,0.27792192,0.37140366,0.006023556,-0.48467588,0.014729607,-0.2464594,-0.32529026,-0.23585626,-0.300452,-0.13671055,-0.087522484,-0.49022,-0.23297386,0.0148100015,-0.31332216,0.4069015,-2.7521365,-0.002567699,-0.15083702,0.3979961,-0.17197552,-0.28888455,-0.41580242,-0.5314675,0.32607192,0.2792941,0.3430355,-0.6541597,0.34830442,0.2821507,-0.4823432,0.028931051,-0.62418145,-0.07509009,-0.06920239,0.31480488,0.18853569,-0.048020296,0.10583472,0.49615654,0.47275084,-0.072544016,0.14074832,0.3146856,0.44442698,-0.17860472,0.3936933,-0.073626205,0.47669607,-0.40022984,-0.1908251,0.3479684,-0.43078694,0.23998941,-0.17315893,0.11520662,0.63626105,-0.39971337,-0.9267043,-0.53153867,0.1675481,0.9733075,-0.27390596,-0.52301604,0.12694225,-0.51193666,-0.34869453,-0.108641505,0.5501896,0.01573191,0.045207877,-0.7382002,-0.21550891,-0.10693837,0.20439278,0.015444815,-0.19945505,-0.48105577,0.75087154,-0.027007908,0.5545498,0.23136576,0.20013665,-0.30121157,-0.45700377,0.15925609,0.83653694,0.34093553,0.16616358,-0.32815623,-0.13205853,-0.41526383,0.09305449,0.22361673,0.70691663,0.6478257,-0.11620132,0.16544667,0.2973102,0.11846528,0.0010264824,-0.20652226,-0.32626957,-0.14005052,0.014004214,0.6291556,0.88557446,0.046982672,0.2863598,-0.003912053,0.41291884,-0.25431773,-0.54376894,0.42559725,1.0846791,-0.08791105,-0.40112755,0.6073035,0.48652723,-0.108585,0.45188555,-0.6777466,-0.5798555,0.32261685,-0.0840772,-0.3653985,0.2157522,-0.4668927,0.27888635,-0.77815735,0.32570806,-0.093408026,-0.56983215,-0.6687962,-0.26699293,-2.2663817,0.18768324,-0.12050552,-0.14482518,-0.025433153,-0.32648388,0.3543007,-0.63355505,-0.55966467,0.27785563,0.07850697,0.8246865,-0.10637235,0.05233897,-0.21784727,-0.4421723,-0.2203801,0.23146972,0.14739601,0.33479545,-0.03929001,-0.5139808,-0.002706298,-0.17367622,-0.30526406,-0.03860597,-0.3815897,-0.54977936,-0.21753515,-0.364021,-0.13325833,0.46128336,-0.39601496,0.052407224,-0.26058328,0.049581368,0.1124798,0.13390045,0.13898708,0.2524783,-0.12246609,0.030951725,0.14737631,-0.19837978,0.22863005,0.10980115,0.21052179,0.31075272,0.009311383,0.09193263,0.63057137,0.56549907,-0.22841112,0.997582,0.57285863,-0.009173967,0.23471521,-0.01894064,-0.47778484,-0.6717868,-0.1889348,0.16634174,-0.56748515,-0.29678705,0.022188922,-0.4412772,-0.9501315,0.4553256,0.08118425,0.30399483,-0.028662745,0.35030976,0.46362478,-0.2716883,-0.050389443,-0.028301239,-0.22825047,-0.576924,-0.49433678,-0.58351326,-0.32872328,-0.021546151,1.2135618,-0.3218378,-0.032165658,0.20647337,-0.20852146,0.21985236,0.3056313,0.015361643,0.044182647,0.66487354,-0.07330416,-0.60487205,0.39935666,-0.3276126,-0.13862972,-0.7897552,0.10114295,0.42674428,-0.6343924,0.48576736,0.32958004,0.04840518,-0.36763552,-0.6451555,-0.20423968,-0.07725768,-0.30135137,0.5260153,0.3660922,-0.75078285,0.39577428,0.075339116,-0.32837865,-0.6657893,0.5972509,-0.109191224,-0.25152826,-0.19647422,0.26056555,-0.078827925,0.07989155,-0.19987117,0.05128425,-0.35468554,0.22550821,0.30826902,-0.033199977,0.03045559,-0.3728716,-0.14140446,-0.7638608,0.019575652,-0.59994125,-0.2698753,0.30393368,-0.024741128,0.16590276,0.1639559,0.10212271,0.26747563,-0.43328005,0.18625522,-0.24744044,-0.31938633,0.4367061,0.458504,0.5645001,-0.47956318,0.6346877,0.008058356,-0.26129338,0.0143590765,0.0463232,0.2712567,0.034832884,0.45309454,0.06317418,-0.14476745,0.1345708,1.0409094,0.15866731,0.34121528,0.119976535,0.006075927,0.17606314,0.12677003,0.24290672,-0.04881421,-0.59269506,-0.21223143,-0.4559458,0.12268913,0.38031432,0.06226184,0.33315513,-0.072313026,-0.25236988,0.021119084,0.17627229,0.15636584,-1.4211547,0.20232372,0.22679749,0.81630605,0.38515133,0.08469465,-0.03601771,0.6032415,-0.11948967,0.10814888,0.21984462,0.015006934,-0.26647797,0.390312,-0.57933635,0.47756758,-0.117964424,-0.024159823,-0.15864809,-0.0047187083,0.58924276,0.9120975,-0.25481105,0.12274854,0.12766007,-0.3114317,0.22703089,-0.35257646,-0.020340877,-0.7426793,-0.37563255,0.8373093,0.5454674,0.6064722,-0.10905258,-0.060073785,0.07434196,-0.12799251,-0.021392746,-0.02642573,0.10801261,-0.19328375,-0.7494639,0.02303026,0.5778282,-0.06894032,-0.018647121,0.11123909,-0.21817435,0.28414157,-0.038458895,0.16117807,-0.05265857,-0.793811,-0.088562295,-0.41662994,-0.6326632,0.65713584,-0.12333636,0.24847999,0.39804262,0.05281685,-0.1670139,0.32565275,0.008584755,0.76360375,0.0803218,-0.110812984,-0.542134,0.2243575,0.1828941,-0.2596219,0.045107525,-0.2343812,0.42353323,-0.54276377,0.5926898,-0.13041915,-0.17283355,0.06165961,-0.14669248,0.012011269,0.6455277,-0.10271154,-0.09737504,0.11199536,-0.077888764,-0.33183223,-0.21216698,-0.2551886,0.25233504,-0.09568528,-0.11658184,-0.12279367,-0.020331552,0.022330487,0.22560653,0.14087658,0.3734569,0.45190972,0.08781497,-0.30010244,0.024385989,0.1106276,0.70056915,0.034240626,-0.30391103,-0.34092695,-0.674941,-0.454803,0.30098337,0.030979216,0.2423902,0.1176952,0.1785331,0.7342389,-0.04056246,1.0434793,0.021844791,-0.43357378,0.115465835,0.590172,-0.05277794,-0.04408403,-0.3344478,0.7653319,0.4192131,-0.055984788,-0.056683917,-0.34219098,0.19489741,0.1743498,-0.14743601,-0.16509959,-0.08603437,-0.7228275,-0.07351637,0.12595785,0.2878618,0.25358006,-0.12850952,0.2731838,0.32259855,0.09189411,0.12584446,-0.6806523,-0.1700323,0.35514817,0.19297767,-0.043225866,0.07181378,-0.42940018,0.35983396,-0.36604792,-0.2801755,-0.37688494,0.11910469,-0.033464063,-0.43087196,0.2520953,-0.006000783,0.35038525,-0.67801696,-0.092950486,-0.35461935,0.4825314,0.12266326,0.17178318,0.41941684,-0.14862238,0.005916191,0.16466045,0.49950585,0.9870418,-0.39173713,0.05773283,0.5100974,-0.35737464,-0.5153699,0.2623026,-0.54074186,0.19665082,-0.085756786,-0.36569384,-0.6263858,0.25335968,0.17064519,0.13413924,0.14571527,-0.75650203,-0.16079462,0.0906593,-0.3001657,-0.22551052,-0.32257876,-0.012332133,0.38490424,-0.15190561,-0.19877471,0.010298086,0.30724528,-0.08807467,-0.4747377,0.10423194,-0.32455763,0.3906193,-0.008294902,-0.25446677,-0.24357714,0.0011466166,-0.4932533,0.20007889,0.12455739,-0.26923832,0.027190868,-0.3823557,0.15509346,0.90156156,-0.27162316,0.121603474,-0.38076243,-0.493311,-0.9142311,-0.32257292,0.19692217,0.10415138,0.0045895004,-0.63514423,0.08526581,-0.15424375,-0.11080396,-0.1832948,-0.33147508,0.5780945,0.13102129,0.4164071,0.034385916,-0.86107236,0.19688967,0.012190791,-0.22860429,-0.34714645,0.54937017,-0.054626398,0.9125004,-0.019756619,0.10262574,0.21942234,-0.54125345,0.3900322,-0.26468077,-0.0016852234,-0.6591162,-0.053744316,792 +535,0.3943848,-0.075661555,-0.31394693,-0.11549943,-0.2104052,0.029265484,-0.040196445,0.47963363,0.2718353,-0.34441897,-0.018977718,-0.22953394,-0.0129863005,0.34718508,-0.1727217,-0.40141827,0.08673942,0.09827705,-0.37685043,0.45595106,-0.46622306,0.27376273,0.060022585,0.41663414,0.050473668,0.16822791,0.2620592,-0.14109941,-0.07230126,-0.20161486,-0.18752098,0.11142201,-0.29434922,0.09620006,-0.086420886,-0.35306817,0.05339257,-0.46183172,-0.23404782,-0.70269126,0.3649211,-0.61599505,0.4115315,0.14966525,-0.27101314,0.35064584,0.20601474,0.25451308,-0.14296076,-0.11519536,0.14393617,-0.03447777,0.028618727,-0.1561593,-0.18943235,-0.2686675,-0.46937233,0.0536365,-0.3559524,-0.21682642,-0.27042666,0.15158708,-0.26216573,-0.12766072,-0.006483163,0.5481164,-0.35580257,0.037408773,0.14565839,-0.20792672,0.3170618,-0.4240625,-0.19579104,-0.03084812,0.18520157,0.0058594174,-0.1570957,0.22265598,0.30123493,0.48946592,-0.17307116,-0.092338376,-0.39984432,-0.08543644,-0.060608957,0.6140519,-0.19563568,-0.53746617,-0.05322531,-0.084372945,-0.035240848,0.15813576,0.14813401,-0.21122113,-0.1604419,-0.065673895,-0.3035639,0.35588712,0.36968246,-0.41148618,-0.24472547,0.2936325,0.44297233,0.0604732,-0.13335893,-0.06475308,0.078460954,-0.5715175,-0.0892192,-0.05396344,-0.25004286,0.43300152,-0.17544007,0.44706184,0.63609254,-0.044235785,-0.07075335,0.16347568,0.0846426,-0.0625069,-0.20576112,-0.1862749,0.23234548,-0.41663882,0.028266728,-0.18130676,0.85660183,0.07162015,-0.72389126,0.40255246,-0.46397564,0.10885346,-0.13651182,0.41357726,0.61202174,0.2596251,0.33590665,0.676061,-0.4531974,-0.042863376,-0.04261067,-0.28965324,0.029511413,-0.044698834,0.089715295,-0.49731636,0.0003234148,0.14995345,0.014063435,0.19725738,0.18127096,-0.48099712,-0.0715787,0.3268898,0.8698268,-0.185095,-0.08207505,0.6200748,0.97688115,0.84389085,-0.03732517,0.7560269,0.11694968,-0.1643958,0.3191655,-0.3324133,-0.5277799,0.26397377,0.32722092,0.2719726,0.034952324,-0.04950159,0.0014024632,0.36771232,-0.2800017,0.023143062,-0.13802065,0.06413395,0.3245562,-0.13299909,-0.38315317,-0.42137548,-0.03989774,-0.004112584,0.105988406,0.23814045,-0.2866478,0.26360133,-0.14434111,1.6088047,0.037491255,0.13218017,0.13665105,0.62191284,0.18832915,-0.018371332,-0.09063117,0.25227922,0.2241977,0.07693737,-0.5136828,0.132886,-0.20407331,-0.5651793,0.00706657,-0.31022057,-0.1649972,0.055541765,-0.4816101,-0.110173285,-0.095078364,-0.40172395,0.551752,-3.098613,-0.21615745,-0.0055507272,0.22011276,-0.24663387,-0.18789856,-0.17122276,-0.4300792,0.34758124,0.44583383,0.4813641,-0.67431027,0.27617565,0.44431728,-0.4710957,-0.13187973,-0.556254,-0.10532357,-0.09429581,0.18386401,0.17198303,-0.002838056,-0.082188435,0.23053493,0.58941686,0.09813773,0.08965169,0.23253112,0.2537065,-0.023660276,0.38241106,-0.047306087,0.39382505,-0.35230985,-0.15424602,0.21170232,-0.4592987,0.07842906,-0.1669322,0.12478089,0.42099732,-0.39266843,-0.9385342,-0.60456276,-0.10033246,1.1681968,-0.056958675,-0.34101042,0.36195427,-0.24914496,-0.14069273,-0.06829593,0.5664844,-0.04917379,-0.05315555,-0.65448374,0.13413377,-0.0987523,0.16759412,-0.0042617777,-0.16175464,-0.3419726,0.70015174,-0.04957372,0.4672921,0.31317848,0.12169839,-0.42257574,-0.3351957,-4.1921223e-05,0.6408539,0.2758973,0.18375464,-0.1325859,-0.060818274,-0.40076664,-0.011429416,0.053754605,0.43025154,0.61013573,0.0033132222,0.118063495,0.26616284,-0.015524566,0.0018703894,-0.0972694,-0.20790277,-0.026857296,0.0111859385,0.5381519,0.63170254,-0.17080142,0.30080628,-0.056922354,0.28097725,-0.34949926,-0.3844954,0.5577551,0.61947125,-0.12683132,-0.22718604,0.59006685,0.40010232,-0.21775453,0.29279107,-0.55727863,-0.32492894,0.43095022,-0.16408578,-0.4362421,0.04817995,-0.29584584,0.10168517,-0.7021025,0.2594247,-0.16936652,-0.36590648,-0.43335444,-0.0991691,-3.642319,0.24521582,-0.20765492,-0.19918837,-0.033410754,-0.04324208,0.053476878,-0.51765645,-0.4362065,0.041316193,0.14861374,0.6953045,0.009230288,0.114709,-0.20259826,-0.25533316,-0.28173342,0.104266,-0.11485378,0.35505685,0.1462696,-0.35664257,-0.029259602,-0.1629843,-0.4683923,0.095234476,-0.52579784,-0.38872358,-0.112360306,-0.4380024,-0.3663734,0.5932728,-0.38267472,0.1356927,-0.27107129,-0.050546475,-0.09455078,0.44165295,0.20711836,-0.027057394,-0.086253405,-0.054496985,3.786385e-05,-0.16159037,0.25968677,0.009868233,0.21699236,0.42252937,0.028215805,0.15506402,0.54031575,0.58881253,-0.086928196,0.82130563,0.3038366,-0.07511777,0.25855628,-0.25682458,-0.15664218,-0.32548282,-0.20204616,0.053822864,-0.28614178,-0.41260883,-0.038722724,-0.31715065,-0.6784882,0.44895414,0.006765952,0.122316994,-0.0570043,0.22792159,0.45636687,-0.30599812,0.034406953,-0.005416649,-0.03899457,-0.5096431,-0.3102667,-0.5748147,-0.34128568,0.13360159,0.8217602,-0.19453064,0.077601574,0.027097987,-0.08208938,-0.1099785,0.052883502,0.0660665,0.16303699,0.248752,-0.24576737,-0.59480506,0.4723261,-0.20555861,-0.16638903,-0.42952982,0.13400266,0.5167946,-0.50526893,0.4638125,0.2818085,0.14286351,-0.19785678,-0.4861989,-0.23909487,-0.00070455245,-0.22289072,0.29686812,0.14983037,-0.7519681,0.39046416,0.32649544,-0.140677,-0.66437244,0.33127072,-0.02928311,-0.5369881,-0.17559573,0.25963244,0.27476358,0.07439295,-0.075333044,0.1521004,-0.49589697,0.12084186,0.07315935,0.015583977,0.45284867,-0.2546487,-0.14441206,-0.5986094,-0.12919591,-0.40817195,-0.27552307,0.12420569,0.19859235,0.13892889,0.32066685,-0.10561466,0.24492535,-0.2730877,0.09445041,-0.056721736,0.02681051,0.3440707,0.38029233,0.5068343,-0.41470376,0.636984,-0.050854106,-0.07884868,-0.04582824,-0.0725851,0.33986703,0.07281488,0.4263428,-0.22211833,-0.28687,0.35328746,0.66129386,0.17321506,0.32071003,0.00043603778,-0.078588195,0.27736303,0.014898293,0.10024665,-0.043218702,-0.42875388,-0.04237338,-0.34866244,0.1583979,0.43334523,0.07095319,0.24759957,0.051391516,-0.29940215,0.10190316,0.16502444,-0.11901432,-1.1072206,0.41561314,0.1669759,0.8038503,0.5157138,-0.053165358,0.024255501,0.8479185,-0.12463276,0.21003577,0.2072152,-0.02059418,-0.53743196,0.6787041,-0.6272119,0.46560726,-0.094859995,-0.069583386,-0.051720712,-0.06325381,0.34532136,0.47617748,-0.07845022,0.04537922,0.06030794,-0.36937648,0.11052386,-0.32170707,0.20739324,-0.6345092,-0.20121157,0.5438443,0.4890303,0.2011524,-0.22612718,0.023618756,0.02285355,0.037181694,-0.031248672,-0.11975794,0.093279906,-0.1532962,-0.67620575,-0.04257426,0.552826,0.03716026,0.17322595,-0.015642107,-0.15719365,0.18207777,-0.16451423,-0.11145481,-0.10515077,-0.5375486,0.02983648,-0.20655538,-0.4266723,0.47684377,-0.21981654,0.36832073,0.123856656,0.041626785,-0.2371142,0.30366114,0.13940266,0.46586213,0.01587786,0.07486869,-0.24100105,0.11440692,-0.017424421,-0.21103773,-0.23514833,-0.27663484,-0.033989597,-0.4519351,0.34251496,0.03601765,-0.2091786,0.027403219,-0.12286501,0.098309316,0.5809794,-0.012578837,-0.108033605,-0.1859916,-0.23913105,-0.24545571,-0.04864051,-0.09350791,0.37114885,0.04028431,-0.13916834,-0.055116635,-0.15456775,-0.18040256,0.3928414,-0.084133364,0.3313742,0.23720257,0.10520983,-0.30729872,-0.018323822,-0.021868851,0.42522594,0.007477671,-0.116127275,-0.2734193,-0.32360655,-0.2828782,0.14462626,-0.09251416,0.27145562,0.13790396,-0.1780219,0.78123146,0.045471344,1.0071462,0.029358605,-0.2264845,0.05365092,0.3139383,0.041621305,-0.016709464,-0.29560876,0.7380596,0.4538097,-0.10963211,-0.15139784,-0.20351478,0.12310589,0.23545375,-0.17644887,-0.17467014,0.056430068,-0.6178303,-0.221025,0.20016594,0.19591291,0.25553873,-0.14287536,-0.06486074,0.2470536,-0.014778295,0.39095837,-0.41514298,-0.10144241,0.2869031,0.41603425,0.0818795,0.091846004,-0.38965273,0.40356913,-0.54228556,0.057733234,-0.346279,0.20859767,-0.34777233,-0.22733645,0.16228984,0.170045,0.36679772,-0.13399622,-0.3529909,-0.18720962,0.44178706,0.23852985,0.09546037,0.40574726,-0.15971112,-0.1193004,0.0566527,0.5092173,1.0019741,-0.29315105,-0.13329752,0.35667023,-0.20741044,-0.6448316,0.28941864,-0.26812765,0.13205849,0.063675635,-0.09900997,-0.4487365,0.31367776,0.28456205,0.16105373,-0.032795098,-0.45888704,-0.32220456,0.36564854,-0.2502659,-0.22562933,-0.33935574,0.10854819,0.49532455,-0.11022605,-0.19740532,-0.0025135023,0.373931,-0.23549278,-0.5683722,0.18811755,-0.34864935,0.35481718,0.18297611,-0.29337624,-0.23413499,0.06862808,-0.530345,0.15096545,0.106174305,-0.28439608,0.13354768,-0.35874945,0.031990346,0.8663401,-0.101877026,0.24846375,-0.45463568,-0.39696822,-0.8414776,-0.3093259,0.59162056,0.024583116,-0.036267273,-0.57198876,-0.09989377,0.0011571987,-0.21274118,-0.12120167,-0.25587264,0.38118312,0.071168706,0.29852238,0.040630687,-0.5762995,0.0665984,-0.029085595,-0.1968204,-0.48148608,0.35623506,0.08509113,0.8791257,0.062267993,0.015551686,0.37983724,-0.31139827,0.034248747,-0.19207093,-0.24041693,-0.5660847,0.15625156,794 +536,0.25804704,0.18375205,-0.61238045,-0.048184726,-0.22579108,0.09379627,-0.25830474,0.37647682,0.31153706,-0.36594114,0.20861535,-0.16284975,-0.08170707,0.2048539,-0.14794643,-0.38361424,0.11772569,0.19699161,-0.34009764,0.5388423,-0.37194154,0.24481368,0.19944046,0.32592422,-0.16109465,0.089221835,0.080787025,-0.21702139,-0.17086084,-0.40153164,0.011862227,0.09634183,-0.6315025,0.08654975,-0.33636945,-0.13666034,0.20014443,-0.5059008,-0.29831147,-0.7087711,0.14011966,-0.64662164,0.67659885,0.043622762,-0.32234785,0.40222624,0.23022914,0.16175935,0.060785897,0.07282738,0.3566952,-0.46780038,-0.3498452,-0.2749517,-0.18618187,-0.36040905,-0.49462208,-0.1725215,-0.49775288,-0.122046575,-0.3847703,0.21156332,-0.3712396,-0.099641,-0.20368405,0.35736153,-0.30590242,0.2781971,-0.09549354,-0.29792503,0.29208705,-0.6023854,-0.08089999,0.11579657,0.17156795,0.040685125,-0.19636394,0.25617164,0.13150509,0.3740601,-0.16948555,-0.18462166,-0.22227128,-0.028070148,-0.039671797,0.6471879,-0.31248918,-0.13182941,-0.10224606,0.007008461,0.28251323,0.28949302,-0.20684126,-0.16333118,-0.016397651,0.010297273,-0.33161178,0.44428185,0.5010682,-0.15033697,0.106587596,0.3713221,0.12310854,0.36057588,-0.06848506,-0.014486213,-0.16116036,-0.48201078,-0.06787061,0.03889374,-0.030077858,0.40252998,0.054116454,0.34985605,0.6529316,-0.11200071,-0.1065368,-0.012491842,0.21841688,0.32227793,-0.12480136,-0.14483438,0.3759794,-0.59986305,0.16558209,-0.21674332,0.5898584,-0.22277525,-0.68157446,0.26597264,-0.42787367,0.021628339,-0.053932764,0.55391955,0.637737,0.8187346,0.081800155,0.87478626,-0.48581335,0.13412525,-0.14545593,-0.32211375,0.30720732,0.043189492,0.38933375,-0.39739186,-0.028922996,0.08917611,-0.16883005,-0.014785303,0.40743,-0.4448596,-0.15128973,0.1524491,0.82019347,-0.2547466,0.078983195,0.60345894,1.0296732,0.6823243,0.10125642,0.850484,0.13900958,-0.048466653,-0.13720696,0.084714904,-0.7878814,0.2280319,0.27178988,0.21278028,0.057544358,0.21475472,-0.17161763,0.27643606,-0.27020907,-0.448925,-0.094552435,0.4143137,0.0023947316,-0.055020917,-0.40855008,-0.3489025,0.0982586,0.15081933,0.29311207,0.15998194,-0.23338784,0.2893987,-0.024370287,1.3357402,0.012854372,0.13544852,0.15861486,0.30334815,0.22512658,0.14899799,-0.10989874,0.38815212,0.20880279,0.136143,-0.40275973,0.031797577,-0.100334525,-0.4994118,-0.016108867,-0.26731828,-0.14253572,-0.19518168,-0.3306151,-0.1540428,-0.11506103,-0.4045436,0.36328813,-2.879739,-0.08378373,0.04797232,0.43358773,-0.06064767,-0.25625253,-0.11565709,-0.29508573,0.61536986,0.2712778,0.5368199,-0.42048174,0.2684246,0.4297245,-0.53263795,-0.29706553,-0.56377584,-0.043940306,-0.013829662,0.3441573,0.009780535,-0.34408256,-0.14023645,0.051485043,0.5163508,-0.042665046,0.10857566,0.3428812,0.4646091,-0.10900546,0.42338377,-0.2594529,0.46685305,-0.21407714,-0.085914716,0.18042995,-0.22413948,0.2138222,-0.46864662,0.12614672,0.4817929,-0.22682588,-0.7290756,-0.17587028,0.12704906,1.2709887,-0.27620187,-0.5899369,0.21521063,-0.22937812,-0.25855544,0.16932432,0.61444175,-0.083118275,0.06404734,-0.5513846,0.03283661,-0.084475674,0.275123,-0.025890654,0.12529527,-0.5245933,0.50566775,-0.016498659,0.5994794,0.3997003,0.23164037,-0.18747197,-0.24054167,0.10519772,0.69764197,0.3205907,0.093936324,-0.15717152,0.05986579,-0.09090512,-0.20592722,0.022833297,0.6150188,0.6094078,-0.048832476,0.058940947,0.23109804,-0.21788792,-0.025437113,-0.180635,-0.39439657,-0.14301287,-0.107945316,0.45157126,0.65592223,0.11711564,0.42606488,0.06628927,0.20767032,-0.1703849,-0.42353302,0.35112217,0.5428077,-0.23540927,-0.058377713,0.60445726,0.37101963,-0.05821493,0.38829723,-0.55180424,-0.51213175,0.48864564,-0.110505514,-0.6038051,0.29415473,-0.27472374,-0.022912553,-0.6873378,0.18744092,-0.28342932,-0.68779784,-0.5014987,-0.09616019,-3.0052855,0.1055754,-0.28864264,-0.19703965,-0.20240262,-0.12861319,0.18183951,-0.28104106,-0.4560365,0.12838934,0.23680057,0.59539706,-0.16330864,0.05594639,-0.31068322,-0.32799625,-0.11459057,0.2006912,0.045687653,0.110329404,-0.030264948,-0.26008478,-0.143338,-0.12568362,-0.29749945,0.059162933,-0.43742758,-0.2001278,-0.0004217827,-0.41109702,-0.25244087,0.64619356,-0.41844335,-0.025744174,-0.23656188,0.15838686,0.22526683,0.2298418,-0.023234142,0.1537354,0.042850792,-0.07091941,0.074526675,-0.17500547,0.30401808,0.105784826,0.3275518,0.3881107,-0.063273,-0.03077461,0.5049867,0.44475526,-0.07309,0.92735547,0.15646707,-0.019939993,0.2675294,-0.25937322,-0.10886313,-0.47935343,-0.20370086,-0.04799989,-0.33726594,-0.23978105,0.014028736,-0.29181,-0.84024566,0.6289135,0.15736273,-0.07607595,-0.06378708,0.427928,0.4265651,-0.26117155,-0.07356799,-0.053359788,-0.15110552,-0.34494677,-0.16694771,-0.7946177,-0.37852287,-0.18038759,0.83784896,-0.24941316,0.012099688,0.16481106,-0.14700767,0.008484493,0.066634946,0.15108185,0.08555757,0.22736827,0.20432003,-0.752299,0.47379735,-0.35065144,0.019435091,-0.7005523,0.1837662,0.5928556,-0.6923837,0.3122962,0.6095872,0.11085602,-0.23505309,-0.6641827,-0.13421433,0.12710425,-0.23169778,0.2976211,0.077858284,-0.85671407,0.5733576,0.22028854,-0.3038072,-0.7190699,0.3556711,0.008241273,-0.37833923,0.00820443,0.3480087,0.21817777,0.04115658,-0.16498844,0.1907023,-0.3926371,0.53220385,-0.010511756,-0.13546577,0.5498101,-0.11943947,-0.11473997,-0.73070914,-0.025048127,-0.42510763,-0.33296958,0.3186648,0.013096692,0.058673028,0.18634664,0.13962415,0.33717328,-0.4545279,0.05353229,-0.38857314,-0.31521183,0.4852452,0.63215256,0.44437405,-0.32344607,0.59638083,-0.078975014,-0.13270536,0.07636043,0.0656923,0.4157808,0.036169592,0.32273182,-0.11027513,-0.2646722,0.0965459,0.7624522,0.1023407,0.28848404,0.06595634,-0.059107143,0.38294956,-0.011175781,0.1072575,-0.09255916,-0.5770299,-0.10420636,-0.31886545,0.055941846,0.43953663,0.29840443,0.36598715,-0.010642439,-0.12692142,-0.012243445,0.12067743,0.123463646,-0.76106316,0.57528347,0.2409025,0.63972515,0.4452502,0.06751635,0.07537572,0.7276038,-0.039698355,0.033999283,0.18385716,0.04189114,-0.19972023,0.5046132,-0.6684181,0.25492102,-0.07872987,-0.046950005,0.32043788,0.038412947,0.4654273,0.8427057,-0.17556801,0.0743499,-0.072195105,-0.2774065,-0.063783534,-0.17665324,-0.016923467,-0.34026745,-0.42997402,0.70175236,0.33315626,0.24786462,-0.2752393,-0.047785062,0.24885897,-0.10259073,0.2236164,0.11192957,-0.08210679,-0.03374247,-0.5467205,-0.15959,0.47194427,0.15525678,0.08114047,-0.016725043,0.09665977,0.39011267,-0.2087187,-0.14117137,-0.043245245,-0.4664268,0.15499756,-0.40410858,-0.4450477,0.36510995,-0.12751558,0.32357913,-0.0057795444,0.043565784,-0.031567056,0.31998846,0.23673066,0.6755365,0.018026872,-0.33171263,-0.15285002,-0.14237776,0.06355189,-0.22905938,-0.12279214,-0.109590285,0.034293916,-0.6122127,0.27108118,-0.54828554,-0.13848259,0.19209497,-0.19613968,-0.012569906,0.33881754,0.010498515,0.010850315,-0.04384309,-0.3047952,-0.24835308,-0.36354217,-0.38395062,-0.0009525589,-0.1023646,-0.1967783,-0.1601734,-0.02833524,-0.20963581,0.35789734,0.023475531,0.122201525,0.23585963,0.32660434,-0.2310033,-0.030319622,0.080072634,0.6495784,-0.03779947,0.050232615,-0.3219847,-0.2508811,-0.35907888,0.049299307,-0.12734896,0.20455739,0.14485586,-0.19999687,0.8920859,-0.07330114,0.7097691,-0.08471084,-0.33810112,0.0989302,0.5127123,-0.06594594,-0.049475845,-0.3220031,0.88819027,0.5164123,-0.04794664,0.050715547,-0.37076044,-0.022787081,0.3390492,-0.3239523,-0.2002467,-0.10369728,-0.5315135,-0.3145556,0.20174982,0.16660585,0.017332157,-0.19771716,-0.072385974,0.31026343,0.28447118,0.16370371,-0.5128115,-0.031181008,0.40188858,0.22240429,-0.012504228,0.12927999,-0.35186937,0.36509532,-0.47132906,0.13075118,-0.393866,-0.028765019,-0.12204211,-0.065560445,0.16896427,0.08943052,0.2827699,-0.2494118,-0.34453267,-0.07876439,0.16536011,0.24984208,0.21563654,0.46828693,-0.2566144,-0.29405928,-0.13838102,0.5881354,0.90504324,-0.34335133,0.11453043,0.5364448,-0.37613842,-0.5321066,0.07685827,-0.36333615,-0.020544622,0.022135973,-0.30479088,-0.23254299,0.16198006,0.06336071,-0.13840453,-0.18451118,-0.4931539,0.002680523,0.21462862,-0.14488801,-0.2514426,-0.23413923,0.12767425,0.80365,-0.24846628,-0.13548836,-0.043305654,0.31673828,-0.19100149,-0.53589994,0.2055156,-0.50409317,0.21691366,0.019604325,-0.30866736,-0.091843195,0.01596232,-0.63739204,0.068208985,0.058725126,-0.27715755,-0.09571355,-0.30756623,0.19873294,0.6712891,-0.1819711,0.16512842,-0.3609118,-0.5028153,-0.65679073,-0.18063787,0.074448004,0.18634382,-0.023575336,-0.44175383,-0.03679871,-0.22062485,-0.20355244,-0.264928,-0.47812027,0.34410483,0.10856589,0.3575016,-0.34165603,-0.9382868,0.21056321,0.033484083,-0.32803035,-0.34803215,0.3399763,-0.085042015,0.67661905,0.016123964,0.04892545,0.21967462,-0.59130573,0.24879,-0.37324095,-0.18573438,-0.64938277,0.12411226,795 +537,0.39348415,-0.27130333,-0.5668465,0.01961893,-0.22860694,0.08443393,-0.31967053,0.27371386,0.22986843,-0.40932888,-0.12406812,0.056832902,-0.06394507,0.2028928,-0.14981234,-0.5732874,-0.10850907,0.2302024,-0.5367752,0.8402818,-0.14518876,0.18704288,-0.21520294,0.4216493,0.34342545,0.445997,0.06438689,0.095259905,-0.18320605,-0.21838729,0.043986168,0.094892845,-0.7252234,0.41364792,-0.2538253,-0.25629327,-0.02288787,-0.40223822,-0.24155697,-0.83462745,0.4553399,-0.7665078,0.46603087,0.023470402,-0.2138246,0.22470212,0.38761917,0.3666728,-0.18324968,-0.17213818,0.204928,-0.15104331,-0.026269099,-0.36483866,0.12318497,-0.26884976,-0.39406583,-0.124738775,-0.39919725,-0.073300876,-0.41050345,0.27689132,-0.30096006,-0.08646136,-0.2006748,0.4077043,-0.46095565,0.046187755,0.13784729,-0.16156332,0.2319489,-0.7966652,-0.28891483,-0.032859378,0.41713616,-0.025806788,-0.11020112,0.56635875,0.03319826,0.1687497,0.11105324,-0.23393607,-0.37691,-0.12440549,0.28882146,0.43980902,-0.17906234,-0.35910437,-0.20934704,0.0055582267,0.39096302,0.18698673,0.11724293,-0.17491327,-0.009402876,-0.047513165,0.0015419892,0.5303841,0.45478868,-0.1754005,-0.13022254,0.24908319,0.59865564,0.43221325,-0.28026,-0.23278356,-0.09821465,-0.35943922,-0.15145303,0.14317311,-0.13296564,0.4435207,-0.07742249,0.25419375,0.6483204,-0.026961628,0.0061176782,0.12694588,0.29513508,-0.06408744,-0.30884123,-0.3490282,0.3594598,-0.5053857,0.27509445,-0.29964837,0.47795683,-0.02517615,-0.5814866,0.112595275,-0.60397375,0.12442994,0.047321703,0.4629128,0.6466656,0.4182219,0.27726534,0.87262356,-0.32996613,-0.057801735,-0.14106186,-0.25688753,0.0867952,-0.26582232,0.0034412998,-0.4810443,0.09475867,-0.018125935,0.05251606,-0.009727584,0.42691216,-0.5560958,-0.22229682,0.026321685,0.78449523,-0.20884548,0.18137184,0.83322036,1.1044768,1.0701591,-0.030850526,1.0590059,0.032888148,-0.34470955,-0.057716973,-0.22151089,-0.646357,0.21765442,0.44519717,0.1366249,0.4098625,0.15132415,0.0055718245,0.2833953,-0.42864564,-0.11217586,-0.092749834,0.30778044,0.12432616,-0.11339208,-0.37635878,-0.15672038,0.07163368,0.020389998,0.1530536,0.16491382,-0.38549516,0.32821232,0.080586925,1.4721183,-0.14476578,0.009379183,0.17574228,0.48148677,0.2986079,-0.18758371,-0.07390438,0.46456257,0.30428538,0.039958738,-0.5991296,0.14884497,-0.40179372,-0.49137565,-0.07273282,-0.40335554,-0.15483867,0.06367159,-0.20834391,-0.24181819,-0.09282543,-0.18887496,0.33241838,-2.7809956,-0.18225336,-0.15624775,0.32141107,-0.32043776,-0.2111499,-0.10643164,-0.32926384,0.5372152,0.25706676,0.5855909,-0.42063552,0.19061525,0.37114722,-0.83468086,-0.051840927,-0.3833097,-0.0893204,0.0028282541,0.6003627,0.064812854,-0.1980474,0.027195266,0.20284274,0.45586997,0.10832369,0.1399972,0.47477618,0.4047692,-0.2606699,0.51262236,0.078710616,0.44133326,-0.3781999,-0.19486725,0.37394795,-0.37229607,0.3450521,-0.19649765,0.02687803,0.58432907,-0.42882422,-0.79655343,-0.59426117,-0.014266695,1.1209924,-0.25125748,-0.71268874,0.059491422,-0.2361582,-0.15090786,0.030795977,0.42746213,-0.10959422,0.025370207,-0.6970268,0.034845937,-0.21596049,0.13691361,0.113042995,-0.09688587,-0.5997693,0.8704871,0.029193958,0.60592747,0.29346114,0.2562175,-0.41136098,-0.34605047,0.16178067,0.6531252,0.53784186,-0.0134187555,-0.19310151,-0.19021747,-0.07882272,-0.27530897,0.26227733,0.7990832,0.44242457,-0.085451804,0.12668134,0.40134805,-0.042411596,0.034416255,-0.21491513,-0.41887373,-0.25030407,-0.13599642,0.4983041,0.72868127,0.0290397,0.21287759,0.111356,0.18412945,-0.015137881,-0.4184492,0.5806044,1.1392704,-0.090121046,-0.22216518,0.56589824,0.48043776,-0.17835662,0.4962785,-0.7278271,-0.36411503,0.63361996,-0.15869592,-0.39792603,0.0053992653,-0.33981198,0.059498783,-0.6428408,0.23885755,-0.5181219,-0.3883666,-0.76346695,-0.15086487,-2.0505996,0.17852715,-0.34542766,-0.12323655,-0.43207356,-0.2936068,0.09237622,-0.7202934,-0.6960974,0.309324,0.10788181,0.7607215,-0.29685435,0.072498396,-0.24967833,-0.3694578,-0.27038878,0.214414,0.11886484,0.36561778,-0.14356054,-0.2671582,-0.10192519,0.09870599,-0.39330631,-0.096470825,-0.45928264,-0.37812948,-0.16300784,-0.61252457,-0.08530816,0.62111557,-0.3832195,-0.024689777,-0.119974,0.011128415,0.03185243,0.17336631,0.10111647,0.3479602,0.31634745,-0.10943961,0.11543639,-0.23591565,0.4321776,0.13703372,0.29868585,0.27574822,-0.35645154,0.20780718,0.346308,0.6183414,-0.11620114,0.8431998,0.47593468,-0.20247175,0.31156138,-0.4186441,-0.4614124,-0.6777715,-0.2671489,0.16255483,-0.24944428,-0.51205254,-0.24994662,-0.3645129,-0.8089455,0.5775108,0.1732261,0.53681767,-0.11360709,0.21093215,0.3840123,-0.23884585,-0.21273302,-0.060631566,-0.1475906,-0.50483376,-0.17015386,-0.59052986,-0.40760782,0.04791326,0.49229544,-0.40973538,-0.036910675,0.3035764,-0.39188072,0.20712027,0.2004914,-0.077485785,0.0015439646,0.46951512,0.26193622,-0.6232848,0.5100827,0.081319585,-0.13478018,-0.47796535,0.47607926,0.44467172,-0.41552004,0.5290896,0.35022637,-0.04818135,-0.25803936,-0.48708275,-0.04292195,0.032343097,-0.21696089,0.5249379,0.2666077,-0.5752826,0.34232888,0.24766813,-0.3619353,-0.7832532,0.6207776,-0.124157675,-0.28319782,-0.18805334,0.43471867,0.24135992,-0.053304322,-0.05114015,0.38759786,-0.40851212,0.38431475,0.084826596,-0.093203016,0.28644153,-0.17676297,-0.30005425,-0.7943683,0.3432372,-0.69513386,-0.27028742,0.5011576,-0.022906156,-0.18444861,0.18283102,0.2686541,0.38699493,-0.33950448,0.12154931,-0.23551676,-0.29117277,0.34759265,0.47654724,0.54665196,-0.65132433,0.4713157,0.06697367,-0.12504837,0.19545467,0.060253162,0.31581968,0.089168236,0.5828396,0.0087052155,0.010766864,0.032534804,0.46339703,0.18949592,0.42110777,-0.052563723,-0.27166942,0.17110421,0.12070286,0.38531297,-0.07737757,-0.6760821,0.1615072,-0.064642966,-0.033350565,0.5588951,0.36085182,0.14280275,0.077432685,-0.36993426,0.04110023,0.25570458,-0.16285999,-1.3401653,0.6198984,0.29799595,0.91393673,0.57185894,0.041873574,0.20724188,0.7351104,-0.0579249,-0.08069668,0.27873328,0.053033113,-0.5386122,0.4507135,-0.7888484,0.42047754,0.078475185,-0.02834776,0.03270767,0.005957663,0.3867333,0.5341678,-0.22633614,0.0062738187,-0.11647506,-0.31739506,0.18373276,-0.18835472,0.32881862,-0.40091035,-0.37266847,0.63096374,0.44461086,0.363732,-0.16562136,0.13907193,-0.0053445995,-0.22207336,0.33295155,0.06534443,0.131554,0.048204012,-0.6085043,-0.16023609,0.489676,-0.2612213,0.16890994,-0.058220256,-0.1781164,0.2657763,-0.069224045,0.15676615,-0.066371895,-0.7789475,0.34382135,-0.23839809,-0.23917235,0.43919644,-0.028234899,0.13518919,0.19123124,0.100954965,-0.16218928,0.34115934,0.037225835,0.71983045,0.032280393,-0.25274906,-0.4679618,0.16281463,0.1321575,-0.14771912,0.22237675,-0.31367365,0.112221844,-0.5880427,0.4603947,0.0015689901,-0.18387452,0.030806443,-0.18134205,-0.14098585,0.58303803,-0.102453135,-0.17605726,-0.111808844,-0.10546923,-0.25979602,-0.5187319,-0.23807667,0.10060327,0.07921302,0.16386499,-0.3915191,-0.07295629,-0.37908474,0.4847354,-0.014309675,0.29551965,0.24805844,-0.12109702,-0.4614289,0.0054426617,0.310359,0.3399554,0.014014683,0.0702616,-0.27308932,-0.68664616,-0.5809546,0.39685026,-0.028836947,0.3171191,0.121216536,0.012139772,0.78177345,-0.19965264,1.0805161,-0.064140156,-0.3757661,0.10719078,0.67761886,-0.25921923,-0.25667912,-0.28912663,0.9069162,0.63854635,-0.06472283,0.118397966,-0.27042395,-0.055857096,0.15116954,-0.3248603,0.13083705,-0.10532563,-0.46474156,-0.38003585,0.0614497,0.33313295,0.15687962,-0.18835568,-0.15993503,0.31854525,0.15111923,0.2330013,-0.3715994,-0.39777914,0.40471596,0.05367992,-0.05525147,0.08184918,-0.52854735,0.55921,-0.54250413,0.20089915,-0.36496434,0.13069153,-0.31849056,-0.3239007,0.20985487,-0.18679115,0.32350373,-0.38917086,-0.40396315,-0.19181646,0.24933794,0.29842672,0.18052152,0.6204335,-0.38581958,0.17668565,0.030221105,0.43468353,0.6175347,-0.26372716,-0.09980122,0.2305845,-0.56080234,-0.56835467,0.2127271,-0.32393605,0.1404268,0.06671063,-0.2039841,-0.5665404,0.16095306,0.017150087,0.06401921,-0.20471154,-0.9953041,-0.29797754,0.13561673,-0.2293768,-0.13261534,-0.2687857,0.08071203,0.7737755,-0.22203423,-0.4755251,0.1271192,0.05241807,-0.090058066,-0.64485866,0.014127762,-0.49706075,0.44780755,-0.091352426,-0.2894509,-0.29294485,0.17354831,-0.464315,0.22827792,-0.014731811,-0.36002126,-0.057379935,-0.15828678,0.1113488,0.84595996,-0.25865814,0.21769463,-0.42967153,-0.36784825,-0.8928372,-0.33490518,0.050464682,0.15742144,0.08010967,-0.66871583,0.0799111,-0.34320596,-0.024242457,-0.12289583,-0.48352596,0.31655887,0.17019285,0.58334583,-0.31797382,-0.90124166,0.4006088,0.25358304,-0.07330676,-0.4410574,0.41474804,-0.15709583,0.7620386,0.11393036,-0.03373254,0.0184568,-0.59345394,-0.034283213,-0.19991226,-0.18110992,-0.678833,0.10134763,805 +538,0.49451134,-0.19605313,-0.48737922,-0.25508007,-0.4077108,-0.040863402,-0.30086714,-0.023765078,0.19138627,-0.4930157,0.0058543948,-0.2412511,-0.042626757,0.3736775,-0.20715867,-0.60945606,-0.08282937,0.104712166,-0.55456877,0.4802242,-0.49602064,0.26251134,0.23793149,0.39239576,-0.036250357,0.25461242,0.2560229,-0.07201205,-0.16910121,-0.20880239,-0.182111,0.19041674,-0.9950635,0.29728508,-0.2519439,-0.48259902,0.10872696,-0.472786,-0.34268066,-0.7606902,0.18314967,-1.0353569,0.5883222,0.050559305,-0.3287305,0.05104416,0.23652472,0.210578,-0.28795883,0.0617177,0.23540933,-0.4729933,-0.06464111,-0.18236093,-0.1644551,-0.6692957,-0.77987987,0.008707472,-0.67045134,0.0047818804,-0.26259893,0.28270692,-0.37854484,0.02250123,-0.33739778,0.3493854,-0.5937313,-0.07234449,0.07303805,-0.034689743,0.38316494,-0.31164956,-0.16832304,-0.26270372,0.24544416,-0.28035757,-0.26176763,0.3290209,0.26462254,0.6212825,0.05378536,-0.42873,-0.19845462,-0.024726238,0.12943389,0.25619113,-0.047356147,-0.33750528,-0.27770492,-0.058924537,0.2283489,0.39266777,0.086485736,-0.28361896,0.14576264,0.042591352,-0.21781328,0.36925408,0.5183317,-0.4004108,-0.48108783,0.27193254,0.5252821,0.03949815,-0.26490006,0.108898975,0.14213434,-0.49887103,-0.34803414,0.32229665,-0.213963,0.7185956,-0.20340061,0.1266282,0.8124484,-0.32672295,-0.092594504,-0.116923295,-0.24320938,-0.21808288,-0.18269217,-0.17521052,0.37358326,-0.6771153,0.12956937,-0.29512516,0.6536254,0.2197962,-0.83492607,0.32402635,-0.6892933,0.15798895,-0.13767199,0.6797925,0.775438,0.5118937,0.48663542,0.69390213,-0.45019937,0.12416322,0.046594854,-0.52026683,0.20069754,-0.41443625,0.06313624,-0.3406605,-0.097384624,-0.19893172,-0.09159528,-0.25455993,0.44126827,-0.39551464,0.0051790006,0.21749468,0.6537684,-0.35226193,-0.078795485,0.9329285,1.1227233,1.2017481,0.22153656,1.4449538,0.37501785,-0.073714726,0.09063171,-0.020758301,-0.5751718,0.122010335,0.34618074,-0.12022638,0.3489577,0.16321458,0.19247174,0.55754757,-0.45577675,0.037747066,-0.061773684,0.32433048,-0.12776373,-0.0015067969,-0.5864228,-0.27487758,0.095486246,0.012552255,-0.051308326,0.38913473,0.024908384,0.4578968,0.2999112,1.2227075,0.039329905,0.1208112,0.029076593,0.43055853,0.13892333,0.020503355,-0.0055181044,0.20100106,0.30532357,0.12290977,-0.493999,-0.038319003,-0.25511095,-0.4049863,-0.26533937,-0.4238909,0.11463113,-0.3953567,-0.4963522,-0.23967168,-0.0026417163,-0.29061085,0.5490309,-2.181092,-0.23675542,-0.07119768,0.18868221,-0.17610586,-0.31453052,-0.0058364444,-0.6240483,0.33092064,0.293165,0.42299166,-0.7864481,0.50970507,0.5734665,-0.56036764,-0.08823805,-0.8630094,-0.2116981,-0.2051679,0.37783775,0.10836359,-0.30084208,-0.28477877,0.10412566,0.6272548,0.03428682,0.056264903,0.10723199,0.45686626,-0.08788097,0.7904338,0.17223777,0.43737426,-0.311065,-0.16021104,0.5197732,-0.26301995,0.4149776,0.11426942,0.15695974,0.4961273,-0.5719618,-0.97470653,-0.7858301,-0.7483758,1.0745343,-0.42311677,-0.42067614,0.096887484,-0.008452644,-0.2675326,-0.10993768,0.38273492,-0.16462271,0.36185384,-0.775339,0.0049680793,-0.11790674,0.3252326,-0.03133851,0.23768269,-0.5650321,0.69295603,-0.14281203,0.35539323,0.48703414,0.18825948,-0.2459477,-0.5702232,0.1424395,0.9596755,0.39649528,0.072272405,-0.44399843,-0.3841591,-0.009189376,0.00043735333,-0.022167612,0.49063563,0.77883464,-0.18300374,0.026695386,0.45444632,-0.17683746,0.010966857,-0.07191493,-0.26393852,-0.004875958,0.16421212,0.6145769,0.81927407,-0.18421161,0.372977,-0.2354757,0.42906126,-0.030836055,-0.55511814,0.40725332,1.0634869,0.023998683,-0.026310418,0.7544292,0.5219592,-0.45939317,0.6456054,-0.75908834,-0.31746176,0.5209938,0.02593267,-0.50732404,0.03855232,-0.36899862,0.147058,-1.0633787,0.50881886,-0.24790105,-0.40617913,-0.66582495,-0.15868083,-4.060106,0.21430853,-0.12123076,0.01397158,-0.0067865765,-0.29453605,0.5617009,-0.6913494,-0.70828164,0.17319576,0.05303847,0.5132786,-0.17525165,0.1565247,-0.4288797,-0.29260412,-0.34446114,0.4252849,0.36543903,0.14270791,-0.2195269,-0.54189795,0.0048273164,-0.4433303,-0.4923961,-0.088744655,-0.5552999,-0.52055687,-0.039230615,-0.5567337,-0.53585863,0.7467252,-0.23496474,-0.03873185,-0.3326996,-0.030994415,-0.21800444,0.3539067,0.18141238,0.3405049,-0.024491029,0.092766896,-0.28440592,-0.22569095,0.3549203,0.0926255,0.26949948,0.30430835,-0.121156916,0.22989427,0.5531016,0.6248517,-0.08744276,0.9277597,0.26251948,-0.0933386,0.36362246,-0.25141627,-0.45667818,-1.0023059,-0.37619832,-0.17750253,-0.5504947,-0.47753182,0.017297175,-0.34221363,-0.74315816,0.7521557,-0.020508746,0.15065424,-0.29904428,0.23278138,0.3032875,-0.3957913,-0.1046225,-0.17428493,-0.19069825,-0.6079704,-0.5535206,-0.9240891,-0.7003173,-0.1592314,1.179394,0.069536366,-0.13431495,0.17669961,-0.14066984,0.1587064,0.21613714,0.09647149,0.25403523,0.65566903,0.063627586,-0.8032837,0.5386289,-0.03464761,0.014560883,-0.41315344,0.07275777,0.85356766,-0.87909067,0.6705146,0.4339985,0.10004815,0.11006008,-0.7438545,-0.334509,-0.060152233,-0.20500521,0.6986207,0.23144041,-0.85898775,0.45971125,0.1065016,-0.33039004,-0.69246775,0.6490146,-0.008313128,-0.082393646,0.090205334,0.46418414,-0.030063868,0.0547885,-0.08325183,0.37007195,-0.5173628,0.3148759,0.42248252,0.026078152,0.22218171,-0.061835248,-0.19280405,-0.846735,-0.057382457,-0.3738642,-0.41786495,0.08258676,-0.17178832,-0.1311473,0.35894376,0.13661288,0.33494225,-0.27063757,0.13016687,0.0032384333,-0.42527273,0.20290574,0.54194874,0.42267013,-0.5401892,0.80775726,0.18980098,-0.14431214,-0.2497541,-0.043443996,0.36611134,0.09791907,0.22947861,-0.06438511,-0.117293015,0.23899306,0.8672263,0.24925014,0.5456298,0.2407787,0.04620364,0.44127035,0.28003576,0.24330762,-0.043693807,-0.44105104,0.15541434,-0.12427962,0.1251166,0.46783522,-0.02998993,0.2648641,-0.115113206,0.0026048038,0.12917398,0.33858085,-0.17425619,-1.3622313,0.24310783,0.29573536,0.68883187,0.77681315,0.17254843,0.10420469,0.6269968,-0.59754795,-0.10640449,0.43106908,0.18274276,-0.3914345,0.7976695,-0.53733736,0.44862488,-0.06210361,0.04106071,-0.07378994,-0.039603543,0.36186597,0.98628616,-0.17808558,0.2024295,-0.15854406,-0.035487425,0.20514682,-0.4111287,0.12170672,-0.29837343,-0.28234935,0.85398924,0.44906983,0.4200377,-0.20476969,-0.038204405,-0.020705419,-0.21143128,0.29802448,-0.084376685,-0.15342245,0.052283976,-0.5213189,-0.10916003,0.741002,-0.22272049,0.04897984,0.03065088,-0.46615025,0.24660702,-0.019893484,-0.10494258,0.045302022,-0.8020631,-0.24401668,-0.4429479,-0.34122708,0.46197328,-0.45389804,0.16570725,0.16127536,0.054967854,-0.20036756,-0.007325449,0.3161649,0.5371812,0.36507058,-0.0916203,-0.17098412,0.09429116,0.2524027,-0.35533717,-0.06137847,-0.38194758,0.25269178,-0.6218111,0.51741093,-0.23978357,-0.31157112,-0.018900722,-0.15166941,0.043216042,0.53921694,-0.124146104,-0.21968766,0.17951407,0.10304106,-0.19593023,-0.21407464,-0.24817134,0.31837097,-0.008476241,-0.08409234,0.10073231,-0.019870996,-0.054211583,0.5857768,0.03334057,0.25770214,0.20987198,-0.1738259,-0.41849425,0.06446986,-0.15759218,0.4203518,-0.024749067,-0.041889273,-0.20908417,-0.16318725,-0.14948244,0.30545625,-0.13539375,0.13078573,0.008636983,-0.37430674,0.9105922,0.20827158,1.3286928,0.08906432,-0.500834,-0.020377977,0.44810227,-0.14953147,0.020819223,-0.44426277,1.1834519,0.4469311,-0.1947094,-0.26055247,-0.515935,-0.19372073,0.10032622,-0.29994172,-0.13520953,-0.06437347,-0.76047134,-0.105194435,0.17745793,0.39492956,0.11718844,-0.009576751,0.09036837,0.2100625,0.27042642,0.65430444,-0.6082726,-0.1768217,0.41069227,0.34026113,-0.080504365,0.18933299,-0.18696146,0.48931143,-0.5484888,0.15209188,-0.75014603,0.03813827,-0.14290164,-0.37152243,0.19774161,0.025947938,0.31363347,-0.26781017,-0.23238547,-0.2580644,0.6622942,0.13670605,0.21782677,0.9002528,-0.19531927,0.060582362,0.11122312,0.3737883,1.3522993,-0.3762563,-0.071936846,0.22208592,-0.22978494,-0.5110554,0.38591057,-0.58823866,0.011761223,-0.06867421,-0.5018729,-0.45252863,0.17527536,0.11284864,-0.025425196,0.09748508,-0.68584603,0.027167397,0.46835947,-0.26956373,-0.2467809,-0.2964509,0.35856828,0.7625009,-0.38169512,-0.27576798,0.09305849,0.274625,-0.35755488,-0.53590703,-0.05757552,-0.31576762,0.42992398,0.05274757,-0.41797376,0.19451107,0.3408747,-0.36594576,0.04710373,0.60077655,-0.27780244,0.08148144,-0.31355676,-0.012709881,1.2430694,-0.1158795,0.059803773,-0.56721014,-0.6070387,-0.96737516,-0.3383879,0.30195454,0.3002455,0.089284524,-0.26284146,-0.026134044,0.013480678,-0.061063536,0.11976773,-0.56237686,0.36260965,0.12237571,0.64210045,-0.020997813,-0.91759557,-0.03508948,0.07147215,-0.004482963,-0.43321857,0.63919336,-0.2042431,0.7567148,0.1236633,0.1301788,-0.01788996,-0.5413119,0.35646436,-0.2656397,-0.09844448,-0.79289097,-0.12274819,806 +539,0.42050833,-0.08218336,-0.2608908,-0.25956956,-0.2956681,0.029832061,-0.11125869,0.5314258,0.21220145,-0.5383373,-0.33688635,-0.22359426,0.0407436,0.14937027,-0.39398083,-0.6312419,0.033531923,0.16732608,-0.29052296,0.44294366,-0.5346294,0.49715713,0.14665064,0.21737297,0.287515,0.12386495,0.09429528,-0.3083909,-0.16365516,-0.36466178,-0.22004439,0.4079227,-0.5194305,0.15793864,-0.23159729,-0.32052824,0.13144012,-0.33739465,-0.30058736,-0.9717498,0.29699418,-0.94270986,0.37118578,0.07890531,-0.30946392,0.3739621,0.12504825,0.1488484,-0.123324774,0.10256574,0.2220985,-0.30210897,-0.22577076,-0.22573201,-0.1726438,-0.43070188,-0.6925759,0.009078418,-0.4100482,-0.25339264,-0.46361965,0.27999112,-0.47466597,-0.1717218,-0.13434847,0.30896726,-0.54497755,0.020798802,-0.014745355,-0.005409769,0.3588543,-0.6605914,-0.28130028,-0.09244319,0.23008248,-0.28416246,-0.2516279,0.33698097,0.2953983,0.44272822,0.00020721981,-0.22812183,-0.25994572,-0.14109744,0.25522977,0.4502104,-0.25396472,-0.6636762,-0.0042424416,-0.13041708,0.3369721,0.44074726,0.014623433,-0.31507048,-0.21198109,-0.034842048,-0.22347954,0.4554317,0.6340575,-0.24385795,-0.19468315,0.16535652,0.35967833,0.20581605,-0.18008557,-0.023721512,-0.07173192,-0.6350827,-0.20123564,0.16470875,-0.33565006,0.59872526,-0.24165647,0.16688883,0.7908305,-0.39544514,0.18365006,0.123024516,0.20027956,0.016995618,-0.18111287,-0.4744487,0.30052212,-0.6788555,0.23854315,-0.4060882,1.0806134,0.025287578,-0.76310027,0.16677253,-0.64704853,0.15250064,-0.2334498,0.69570863,0.48578358,0.49997622,0.42580143,0.62675714,-0.44917804,-0.0654906,0.09963102,-0.38798776,0.0379635,-0.22090967,-0.015589653,-0.27109584,-0.15837915,-0.13942973,0.015543627,-0.00014751723,0.75027704,-0.5098171,0.054635506,0.037357263,0.68473977,-0.4087188,0.030238358,0.79930955,0.91585535,1.1833916,0.2194309,1.3293122,0.27315015,-0.3086321,0.06833265,-0.08571809,-0.7120668,0.3033701,0.429782,-0.2966406,-0.13832085,0.049535923,0.075403675,0.31892326,-0.7096028,-0.032060027,-0.3652484,0.19055404,-0.02179557,-0.1287189,-0.46335098,-0.4314358,-0.03555776,0.2947368,0.0021521535,0.32624862,-0.19221959,0.25516447,0.055626273,1.0530552,-0.014089684,-0.040279184,0.12308073,0.4458401,0.057778418,-0.06847624,-0.002573422,0.29592332,0.46969005,0.09156574,-0.66867626,-0.10531862,-0.18079288,-0.47713494,-0.15952389,-0.37762234,-0.059034962,0.10246999,-0.53399956,-0.35067347,-0.0733555,-0.32451206,0.48809758,-2.08501,-0.027476115,-0.028905233,0.33151865,-0.036382638,-0.2890137,-0.083779536,-0.62058675,0.62082946,0.24427749,0.45470652,-0.7239305,0.3228844,0.5717435,-0.47715527,-0.14306974,-0.7970573,-0.27736664,-0.10119314,0.17764743,0.21046117,-0.013451642,0.04259298,-0.16929136,0.6871219,-0.01110243,0.16046469,0.16895413,0.41176477,-0.12076149,0.49635926,0.18793906,0.38273123,-0.08364694,-0.20232241,0.40956068,-0.3807134,0.23119791,-0.27981496,0.04898012,0.53367895,-0.5039616,-0.7608458,-0.82802093,-0.4965212,1.2340118,-0.07055326,-0.57862175,0.41571298,-0.15838099,-0.18978025,-0.16830285,0.54843885,-0.28503492,-0.089425445,-0.7192562,-0.02996856,-0.14916237,0.1543922,0.00405666,0.12060501,-0.43103355,0.7912682,-0.047104854,0.25881073,0.21181072,0.14716533,-0.46609893,-0.54714096,0.024407983,0.95952594,0.49383828,0.15772988,-0.26303965,-0.25341558,-0.23188627,-0.099062935,0.14912634,0.6420247,0.94097704,-0.15579584,0.16476393,0.22889963,-0.09092723,0.07935823,-0.22698726,-0.3504424,-0.073461175,-0.05437955,0.6815583,0.5132311,-0.07294876,0.3906397,-0.10038073,0.33873296,-0.10291825,-0.43050048,0.36983624,1.1891992,-0.03001095,-0.12914398,0.715145,0.7018105,-0.21822338,0.44199482,-0.711809,-0.4429063,0.57674164,-0.20093843,-0.50730175,0.10308804,-0.47656566,0.13858518,-0.8315461,0.6091322,-0.32910872,-0.62942153,-0.6211851,-0.07990045,-2.397257,0.1032037,-0.3588962,-0.055489093,-0.19189942,-0.3708857,0.28935865,-0.46604154,-0.50579846,0.12238251,0.1651766,0.60103816,0.013215916,0.038055442,-0.14061715,-0.29565483,-0.33022898,0.0039018574,-0.00904615,0.3674546,-0.1332126,-0.3962307,0.112361126,-0.14680202,-0.3309922,0.012534316,-0.55900544,-0.7232107,-0.16705675,-0.41463524,-0.47477302,0.70291656,-0.43552646,0.040082462,-0.061921697,-0.10619169,-0.13674025,0.3036824,0.21259321,0.216457,-0.06964967,0.0194895,-0.041450936,-0.2928552,0.46866602,-0.00912588,0.19611277,0.41907355,-0.20512843,0.09534604,0.53629243,0.5367006,-0.12324299,1.0453799,0.3800755,-0.08017022,0.26561657,-0.2702225,-0.4247087,-0.8060201,-0.3234361,-0.018610647,-0.49649653,-0.26185593,-0.018537449,-0.39590004,-0.81476957,0.46716404,0.026634464,0.16839217,-0.06330327,0.2744028,0.38784847,0.1410688,-0.24359152,-0.13070183,-0.07887517,-0.53052634,-0.21707448,-0.8686861,-0.41432998,-0.18161774,1.0864081,-0.22428603,-0.21212797,0.19326977,-0.016204592,0.15216054,0.06872247,-0.13914032,-0.017964432,0.41766593,0.00040048786,-0.8143794,0.66893566,0.105919085,-0.16616543,-0.5180293,0.13964774,0.605166,-0.8382148,0.44797394,0.60106057,-0.025418866,-0.031153305,-0.6924308,-0.3048059,-0.19671929,-0.19459954,0.48162922,0.13706413,-0.69226474,0.49649414,0.43542323,-0.1926717,-0.8009442,0.5364114,-0.1433884,-0.38546988,0.18589428,0.3871834,0.03899968,0.024537172,-0.021830866,0.35555878,-0.540829,0.55642176,0.2891831,0.048047874,0.23100019,-0.20527509,-0.06765552,-0.8351244,0.16401099,-0.5327284,-0.2777226,0.0039743357,-0.057182483,-0.16466223,0.47486624,0.10588603,0.47760043,-0.22249891,0.11330096,-0.22076328,-0.28250283,0.2750739,0.4247438,0.522821,-0.33173466,0.6812001,0.08849184,-0.1981136,-0.20187701,0.27710304,0.46426943,0.09551501,0.38701698,-0.12836286,-0.2610524,0.3726909,0.8952611,0.23584308,0.5735456,-0.0008491789,-0.084217496,0.2643525,0.19540545,0.31322807,-0.020457685,-0.4565021,-0.048052363,-0.24063845,0.018443655,0.50052404,-0.04777207,0.40120855,-0.093376346,-0.16494365,-0.010702835,0.27013037,0.023303943,-1.2566675,0.42995134,0.12493877,0.7671034,0.6444344,-0.112272926,0.12684184,0.6068967,-0.2818479,0.07458977,0.2761645,0.23324059,-0.4948607,0.6388364,-0.70405513,0.37997022,-0.18801641,0.05903376,-0.13769148,-0.051036067,0.4144301,0.72567505,-0.13341211,0.05422626,0.058223944,-0.39139017,0.32838035,-0.5536446,0.13820174,-0.4960885,-0.23531005,0.7000881,0.4767565,0.27232456,-0.04822688,0.048779555,0.1925758,-0.25910988,0.3216751,0.032685585,0.10293835,-0.09959336,-0.51558477,-0.11011558,0.521281,-0.12761952,0.06450087,0.051124595,-0.23571272,0.20715249,-0.26909304,0.05483669,-0.11287206,-0.6328307,-0.09567178,-0.35187596,-0.34689918,0.45153087,-0.068292506,0.18537317,0.3484018,0.099229276,-0.24584706,0.04896099,0.46980497,0.49091986,-0.11686063,-0.25710624,-0.2430165,0.20325638,0.2589564,-0.17996843,-0.12685359,0.04812279,0.016345093,-0.6521351,0.40655994,-0.24163745,-0.15639074,0.043916505,-0.15355526,-0.16290748,0.60851985,-0.15295148,-0.1779587,0.09164434,-0.10931085,-0.046783306,0.01685414,-0.12993227,0.22412147,0.19420181,-0.091154985,-0.20054205,-0.34397602,-0.16065742,0.26961464,-0.19523634,0.38252208,0.26111987,-0.07387493,-0.36839905,-0.14077921,0.07011866,0.5142418,-0.04726408,-0.1317579,-0.3140154,-0.41314554,-0.32447666,0.18216884,-0.17946298,0.35249045,0.18236819,-0.40573904,0.8826191,0.033123933,1.1314862,0.15579267,-0.31796512,0.14037278,0.66666114,-0.10780804,-0.031774674,-0.19666608,1.0868806,0.56267965,-0.22285748,-0.08794933,-0.46314472,0.21061721,0.33777285,-0.11233454,-0.13062528,0.052028272,-0.6795464,-0.15840957,0.23819754,0.36922556,-0.09896336,-0.012816893,-0.15431604,0.19959676,0.16925876,0.58558255,-0.5886459,-0.06666185,0.22143863,0.19956805,0.19424269,0.17306177,-0.33662057,0.37803522,-0.4046741,0.118280075,-0.3339955,0.11717101,-0.40232056,-0.28184083,0.2848066,0.07862212,0.29915574,-0.17227313,-0.43362802,-0.2238416,0.41529068,-0.03246069,0.3253751,0.48714802,-0.37628323,0.095610656,-0.076630436,0.500435,1.3400649,-0.20431496,-0.0995902,0.42074674,-0.5173737,-0.491409,0.38110223,-0.4309846,-0.065165676,0.049846593,-0.3616769,-0.515833,0.054806598,0.29998326,-0.031000933,0.049928863,-0.5810185,-0.13803017,0.31366202,-0.27543864,-0.34755543,-0.24488734,0.28836825,0.559812,-0.48137838,-0.21043715,-0.0024711874,0.22737996,-0.37397474,-0.42911884,0.15485919,-0.29859525,0.5126563,-0.031843014,-0.44513497,0.052893553,0.060557608,-0.2852165,0.12923476,0.3083528,-0.36534992,0.039601844,-0.2682398,0.2684568,0.86891407,-0.21150734,0.012370825,-0.3626699,-0.5557604,-0.8257516,-0.24669382,0.6319369,0.4550324,0.032960452,-0.5168058,-0.033268485,-0.005198347,0.012562668,-0.06023154,-0.3431671,0.5481267,0.23402074,0.36627382,-0.08729773,-0.83146125,-0.03179873,0.039627396,-0.32601,-0.40315062,0.627221,-0.14219743,0.7534296,0.16588335,0.081449084,0.10189499,-0.43318322,0.21834283,-0.053161062,-0.2777609,-0.7291222,-0.026172085,812 +540,0.6679153,-0.2729104,-0.6395512,-0.122288205,-0.27174193,0.061874952,-0.36962846,0.3629147,0.07874583,-0.6170496,-0.24367745,-0.082087375,-0.11280428,0.23814133,-0.23937938,-0.69767725,-0.11459851,0.040313713,-0.3631091,0.85765415,-0.27100736,0.32065085,-0.051129382,0.5424594,0.3949654,0.29835156,0.25345922,0.124003515,-0.26317063,-0.39938852,0.14772797,0.24004507,-0.72009844,0.33064982,-0.19675805,-0.42825285,-0.117058404,-0.38596892,-0.19663318,-0.82637453,0.32665047,-0.89449686,0.49496037,-0.00074763596,-0.26269037,0.36461544,-0.00056439213,0.12709515,0.030921862,-0.047295023,-0.03394297,-0.23607655,-0.054143883,-0.30821303,-0.16833235,-0.3319494,-0.62746894,0.03794289,-0.61158276,-0.11083076,-0.32195303,0.27905235,-0.40179712,-0.10256653,-0.23550631,0.7366044,-0.53755283,0.056167714,0.13023876,-0.0021569133,0.2601986,-0.73853594,-0.3461351,-0.19183242,0.10864205,-0.12516026,-0.17707194,0.1950606,0.16872905,0.28003067,0.076058604,-0.22180739,-0.41538572,-0.34202948,0.40579763,0.2515943,0.16603963,-0.46141148,-0.2477708,-0.3243751,0.29606536,0.17764723,0.42242247,-0.20114014,0.015339158,-0.05735078,-0.17138918,0.6163879,0.5669969,-0.23335133,-0.33507085,0.32275048,0.54702693,0.2760104,-0.26087323,-0.0029402461,-0.054180108,-0.3508744,-0.07288848,0.34120113,-0.19907077,0.5556786,-0.115868144,0.27796248,0.6165188,-0.44333825,0.17177622,0.016397974,0.05431852,-0.21930507,-0.27792028,-0.27854985,0.282201,-0.4530041,0.20964213,-0.27198192,0.8270749,-0.005904534,-0.5833155,0.23045202,-0.65649885,-0.018677818,0.05632483,0.7077304,0.60144603,0.4550306,0.22543205,0.62073535,-0.19774191,-0.061644677,-0.12776433,-0.18524303,-0.20537853,-0.2780771,0.009847283,-0.40671822,-0.07680238,-0.07421446,0.011131027,-0.23665987,0.7693068,-0.37864804,-0.10522224,0.08238379,0.6860322,-0.3091685,-0.14507134,1.1172159,1.1300553,1.1764807,0.11386837,1.2404901,0.16689633,-0.18136759,-0.23443784,-0.09795683,-0.61010516,0.36699015,0.33360586,0.03169709,0.39933133,0.05510119,0.050597582,0.3203435,-0.43043226,-0.1019308,-0.16127907,0.15920956,0.12054575,-0.028803213,-0.5247279,-0.16459201,0.06301718,0.08897299,0.15550362,0.27753553,-0.35667482,0.48953682,0.16543257,1.1460218,-0.17432837,0.083760925,0.02999418,0.47223276,0.13842031,-0.14112876,0.13383994,0.3250802,0.30764028,-0.006170869,-0.763575,0.20374736,-0.23143306,-0.6707746,-0.21613857,-0.44326115,-0.08035452,-0.07879095,-0.4906822,-0.19931854,-0.070905186,-0.38135916,0.16483186,-2.4930348,-0.17397325,-0.052885957,0.2833175,-0.2544284,-0.33961156,0.010239921,-0.60165733,0.27253562,0.2958626,0.2939625,-0.51295376,0.46521872,0.5772232,-0.5175723,-0.052062143,-0.6839362,-0.02149094,-0.20498703,0.61631185,-0.2199203,0.039182298,0.053748142,0.1769069,0.68095785,0.0953834,0.16304643,0.2699982,0.36816326,-0.20769472,0.35047373,0.10636903,0.3920729,-0.39502695,-0.18660362,0.4902131,-0.38216516,0.35402304,-0.30085284,0.23678865,0.5727878,-0.39719325,-0.81374997,-0.7337385,-0.35949078,1.1348673,-0.13661583,-0.6789927,0.098287754,-0.23092572,-0.2515204,-0.07398732,0.55559725,-0.17746381,-0.010466195,-0.6838918,-0.025339385,-0.14588483,0.22204028,0.023457138,0.22567356,-0.5815894,0.7693907,0.062181003,0.47135833,0.17677855,0.46678203,-0.27830434,-0.4943101,0.21056832,0.970756,0.53825897,0.06718024,-0.5004065,-0.22015299,-0.096792154,0.010377867,0.112855256,0.552057,0.6380133,0.031353317,0.2756166,0.24058585,-0.0507726,0.102957256,-0.22284286,-0.21320342,-0.28288615,0.064179905,0.56631666,0.5515746,-0.12792987,0.41171953,-0.108878136,0.25979814,-0.26461312,-0.47030264,0.7032896,1.154559,-0.17079352,-0.24631755,0.71728325,0.66118526,-0.57070315,0.62486464,-0.6260233,-0.086174265,0.5247372,-0.28570908,-0.380572,0.15490349,-0.32314232,0.13993372,-0.92952955,0.21693297,-0.34249517,-0.51436394,-0.6182203,-0.2635628,-2.8483732,0.10706418,-0.16186841,-0.2519119,-0.32323667,-0.42739263,0.2859816,-0.67747647,-0.62039804,0.11338417,0.02426156,0.7209657,-0.18944669,0.059814088,-0.2396214,-0.40836802,-0.39046615,0.2214198,0.16136329,0.42392656,-0.20883669,-0.24907355,0.14187835,-0.15676118,-0.40746123,-0.14026557,-0.25695905,-0.42486158,-0.1499935,-0.37954715,-0.10293547,0.5403807,-0.18990803,0.06543108,-0.20942512,0.032438766,-0.0045444793,0.5228857,0.11195161,0.3198585,0.18472455,-0.06254046,0.058683455,-0.45031476,0.2924632,0.00323147,0.08746808,0.51620716,-0.32329115,0.30830622,0.39797518,0.5011799,-0.03294557,1.0644188,0.3580847,-0.100144565,0.38129872,-0.22082952,-0.43622762,-0.81144875,-0.24227533,-0.026259992,-0.37010822,-0.63622314,-0.08611198,-0.22872533,-0.98040235,0.5504918,0.020512242,0.51591194,-0.06407707,0.37963215,0.40592733,-0.16769196,-0.13522837,0.064376645,-0.038814638,-0.4979968,-0.45572552,-0.7307235,-0.54762834,-0.075798385,0.8079271,-0.23798278,-0.2892677,0.13258037,-0.29118988,0.098203234,0.18971218,0.044607453,-0.018050399,0.3732989,0.3353805,-0.5425512,0.605877,0.118617155,-0.09788234,-0.4722109,0.16349265,0.6726852,-0.59683305,0.34866944,0.4016495,0.08119447,-0.2216035,-0.59414774,-0.023135195,0.04155906,-0.12567268,0.50184596,0.3648519,-0.8732613,0.47624153,0.019813549,-0.14251079,-0.81313,0.604482,-0.017784264,-0.1798774,-0.17828174,0.516539,0.12090898,0.048577692,-0.23016813,0.29414147,-0.3268097,0.09774882,0.29855993,-0.10598427,0.36333188,-0.2587685,-0.31505495,-0.6474796,0.15383217,-0.6386067,-0.32081112,0.27525443,-0.004939173,0.11394269,0.3877263,0.31974235,0.443363,-0.25064418,0.1483206,-0.09117283,-0.27100936,0.42848644,0.52452844,0.7225109,-0.40922275,0.6774096,0.10773344,-0.11594315,0.12660031,0.09161832,0.47957966,0.017734868,0.540954,0.111797385,-0.17530249,-0.020781595,0.7559572,0.3004231,0.64444476,0.1508489,-0.31438214,0.35454106,0.12848547,0.43835267,-0.27382225,-0.56281155,-0.063938215,-0.26262,0.04784487,0.5547108,0.08701093,0.37351304,0.015998717,-0.090910174,0.19413725,0.13247035,-0.15444496,-1.2196258,0.21772143,0.1820599,0.8456444,0.67590076,-0.110853575,0.17709146,0.4805433,-0.23619768,0.08724672,0.42102823,0.22730221,-0.4660005,0.6408953,-0.69203365,0.39342728,-0.11734842,-0.11443595,0.027839566,0.002983387,0.47148636,0.7582811,-0.3010628,0.05190253,0.014512808,-0.32296896,0.26802447,-0.45031816,0.15662387,-0.37142536,-0.20813076,0.9201507,0.5014668,0.36417356,-0.17028785,-0.0445916,0.12936844,0.043134905,0.27521655,0.101680644,0.054873176,-0.12049904,-0.49362782,-0.2412325,0.5649103,-0.18079476,0.05702293,0.020383982,-0.4389153,0.09855165,0.06582548,-0.12742482,0.13020252,-0.87438077,-0.047310617,-0.23425232,-0.68130726,0.4531266,-0.1760207,0.25234398,0.2782342,-0.017579814,-0.20961976,0.13281366,0.35891077,0.5907182,0.12153391,-0.020217594,-0.47137377,0.07830839,0.39194775,-0.3299164,-0.053037506,0.017739505,0.20679362,-0.5879423,0.30182245,-0.36852536,-0.32137445,-0.0627934,-0.09525531,-0.11482296,0.6923725,0.09604997,-0.11268175,0.016295735,-0.22834024,-0.21485876,-0.13878329,-0.08854691,0.26665133,0.016015125,-0.2935173,-0.25603858,-0.028507074,0.17601857,0.26485783,0.0071625155,0.33714762,0.39242107,-0.17437561,-0.49538442,-0.17748462,0.27127257,0.45128074,-0.052797437,0.025899157,-0.18899696,-0.48850435,-0.4226165,0.43738517,-0.088620625,0.055569492,0.16977195,-0.33808252,0.9520299,0.13268293,1.0171717,0.11871383,-0.58747756,0.31141475,0.5561752,-0.09000857,-0.16220124,-0.45449805,1.0470074,0.30854124,-0.27603707,-0.20015427,-0.38700628,-0.09555827,0.14343396,-0.3841308,-0.05717367,-0.1659437,-0.5899026,-0.073089376,0.0906151,0.29090446,0.015339361,-0.15587126,-0.030831363,0.41651326,0.19149913,0.5017365,-0.641003,-0.19642815,0.428696,0.003093924,-0.030614274,0.09702342,-0.3035972,0.3523619,-0.6759573,0.09017102,-0.26894352,0.25893444,-0.23147814,-0.42463478,0.23911892,0.19387795,0.39685646,-0.2860691,-0.56055963,-0.45857906,0.42645016,0.12182327,0.14378056,0.49373648,-0.27267736,0.19925354,-0.16425565,0.54465306,1.143983,-0.11411619,0.12962253,0.28195217,-0.5055332,-0.74866676,0.18213797,-0.46590868,0.34108475,-0.1069985,-0.346664,-0.6100383,0.093952075,0.2809449,-0.012951681,0.14724731,-0.62772876,-0.3075099,0.13712844,-0.282851,-0.19105768,-0.122477554,-0.03774854,0.71274656,-0.35189542,-0.30573195,-0.11072456,0.25113496,-0.16901584,-0.47356263,-0.05719385,-0.3290905,0.36230844,-0.1779447,-0.30599946,-0.064616166,0.18962753,-0.45981583,0.10610308,0.1542945,-0.21888505,-0.07208705,-0.31986883,0.3025969,0.8227166,-0.09546517,0.078040496,-0.46332926,-0.68513244,-0.89311653,-0.53737617,0.17821547,0.096690044,0.1542389,-0.6078831,0.19711044,-0.3296266,0.20763037,-0.0003726142,-0.5106437,0.4086645,0.24822876,0.47624096,-0.027229045,-0.86050373,0.2182738,0.15723963,-0.15924849,-0.559671,0.47788858,-0.18642572,0.7803613,0.061671343,0.04190882,0.009729013,-0.66486347,0.082243785,-0.1750217,-0.15493776,-0.6244021,0.1920882,816 +541,0.36434823,-0.16398302,-0.46132094,-0.13911453,-0.15372021,0.19180427,-0.07533467,0.43671295,0.1764369,-0.48549047,-0.1591085,-0.22991551,0.04308737,0.21052313,-0.2509331,-0.3924047,-0.04574645,0.0311179,-0.38525206,0.30071136,-0.5027843,0.23607473,0.118291594,0.18725552,0.17380846,0.24856308,0.22904317,-0.15542524,-0.10039531,-0.06575463,-0.1900332,0.18729173,-0.43148035,-0.041143943,-0.095852785,-0.24865286,0.06351628,-0.40153155,-0.37488577,-0.6368288,0.4954186,-0.8803118,0.45737177,0.12181677,-0.14182208,0.32267994,0.11275571,0.12907812,-0.21250486,-0.039176166,0.19399239,0.048599303,0.03208512,0.012362793,-0.23217484,-0.37505388,-0.5580537,-0.016774971,-0.3855541,-0.2667808,-0.21681832,0.21466303,-0.3291215,0.011959097,-0.16953638,0.54556334,-0.4301951,-0.0670288,0.27363405,-0.20570683,0.32826605,-0.6646313,-0.110151924,-0.059942067,0.07217803,-0.23652008,-0.1518163,0.08897086,0.33092174,0.5874155,-0.012126053,-0.1873357,-0.36438122,-0.062206417,0.07635168,0.44138765,-0.3248102,-0.5687821,-0.14343877,0.038173642,0.10327593,0.117484786,0.15547858,-0.26299468,-0.058901507,0.0034700462,-0.33140466,0.4511814,0.55289936,-0.50805056,-0.22566581,0.31599575,0.58328766,0.015346893,-0.07797481,0.09325867,0.07310099,-0.45906928,-0.11772651,0.13970318,-0.30881506,0.5377811,-0.25877076,0.34638953,0.6038664,-0.20114791,0.21136539,-0.0071842778,0.02002648,-0.073437445,-0.30741864,-0.13628791,0.12112224,-0.49526143,0.13933952,-0.17261139,0.8821445,0.14054474,-0.62129575,0.34172556,-0.42930827,0.18722312,-0.15522203,0.5237842,0.5689869,0.292447,0.24159333,0.75306267,-0.5620683,0.07994526,-0.17641708,-0.2922948,0.043601904,-0.020220874,0.06346341,-0.36945936,0.005043941,0.06336843,-0.07994672,-0.16335866,0.40003198,-0.6072362,0.06847538,0.21461211,0.83996403,-0.26899084,-0.19403477,0.67425126,0.9561382,0.8848172,0.023969352,1.1047722,0.25136253,-0.24023019,0.23934971,-0.33475304,-0.74017113,0.2206159,0.37260792,0.22515048,0.21576054,0.20636155,-0.08955496,0.3727145,-0.38734898,0.0049016858,-0.40360478,0.2201902,0.29236427,0.037320126,-0.303579,-0.15187705,-0.011515932,0.05963769,0.11813712,0.23968752,-0.050635964,0.2078233,0.064088054,1.6647367,-0.19359832,0.22475128,0.16230631,0.42682,0.20438015,-0.06315984,0.014207742,0.2641332,0.45337015,0.15729192,-0.70556915,-0.0023627835,-0.1935984,-0.53353035,-0.059864167,-0.2318206,-0.039494358,-0.09107154,-0.54355174,-0.15529834,-0.15768088,-0.29654762,0.45974186,-2.9586868,-0.011939551,-0.18529637,0.26101455,-0.36774996,-0.3262958,0.0008560504,-0.49776652,0.40385076,0.44979912,0.41452485,-0.7754646,0.33536404,0.4073753,-0.34014153,0.043330114,-0.70099264,-0.08015402,-0.18240397,0.30512276,0.1256694,-0.15516546,-0.019188046,0.11835077,0.41644788,0.111314654,0.19014195,0.17611502,0.40699068,0.1275556,0.4696278,0.040635712,0.45893675,-0.105786756,-0.1787714,0.29315677,-0.33761138,0.21893804,-0.21329126,0.11301936,0.33010635,-0.39384386,-0.7509613,-0.6738667,-0.38607496,1.1983407,-0.1094606,-0.4123681,0.28557134,-0.25042856,-0.13430107,-0.16009666,0.40396425,-0.11972041,-0.1617262,-0.83347183,0.16950552,-0.17208636,0.16611423,0.046303146,-0.03854376,-0.40744907,0.74345744,-0.29958704,0.35960546,0.44238833,0.22159491,-0.28756446,-0.47232994,-0.09446884,0.8895401,0.3542562,0.15534846,-0.20217922,-0.3008162,-0.21826331,-0.029592644,0.098845504,0.49865073,0.7902889,0.08315913,0.13054301,0.3381529,0.034160294,0.01729382,-0.14283423,-0.38126203,-0.091567114,-0.012444102,0.56669635,0.503626,-0.19977497,0.4376085,-0.1796139,0.11214797,-0.2520643,-0.4227269,0.36076817,0.8026084,-0.13186583,-0.25854138,0.64060766,0.31086677,-0.25044963,0.33926216,-0.6480733,-0.22842874,0.43032858,-0.20086794,-0.42895916,0.13993685,-0.33582672,-0.013649749,-0.7827817,0.35606602,-0.31115156,-0.47664803,-0.503877,-0.27967837,-3.9369106,0.22094207,-0.36934564,-0.115290694,-0.031667553,-0.20836034,0.23397067,-0.5501181,-0.5149481,0.21996713,0.072037615,0.48571613,0.07474063,0.09849085,-0.24519803,0.031013284,-0.29431203,0.112277724,0.13741603,0.23930493,-0.011767621,-0.42896786,0.13155523,-0.17005484,-0.3771008,0.14145456,-0.48771313,-0.46818924,-0.1633688,-0.58615094,-0.29030615,0.7228821,-0.30902553,0.028977066,-0.29920292,0.027117262,-0.21882844,0.43112925,-0.010089828,0.15228815,-0.061141882,0.027831199,-0.12930037,-0.25190017,0.32561502,-0.020322787,0.2230419,0.33794895,-0.22106315,-0.006774715,0.4006536,0.5697436,-0.048708577,0.8090205,0.53988457,-0.19274059,0.33568054,-0.13770433,-0.09110068,-0.59611523,-0.32841277,0.078306854,-0.4772412,-0.497362,-0.055858288,-0.35360786,-0.63091034,0.4640567,-0.061360233,0.32339138,0.00200576,0.2892106,0.54813266,-0.104156174,-0.005538251,-0.068585955,-0.10300296,-0.6369773,-0.2984198,-0.56312484,-0.3028865,0.1599296,0.949922,-0.17598693,-0.070245005,-0.053132337,-0.26872292,-0.060564023,0.07268148,-0.0068662423,0.24354938,0.34214005,-0.21582906,-0.58508176,0.39032882,-0.021637013,-0.18012358,-0.5210701,-0.05946252,0.5634667,-0.5803688,0.6703723,0.34318215,0.09732264,-0.22087029,-0.61433345,-0.3469414,0.028214548,-0.36902612,0.4570355,0.2191093,-0.76596534,0.4737992,0.34964302,-0.22338565,-0.72863394,0.46154815,-0.012392306,-0.15677881,-0.034356557,0.2808184,0.081093654,0.052313443,-0.06984181,0.1802375,-0.38508433,0.2834588,0.13311322,-0.10853965,0.3859232,-0.1627164,-0.13387558,-0.68326473,-0.12134333,-0.53390604,-0.09736199,0.1596677,-0.032586534,0.07013223,0.1635284,0.042786803,0.48121205,-0.2079902,0.10983287,0.07913266,-0.1270582,0.22825202,0.34256104,0.37178904,-0.4901533,0.59566027,0.0103724515,-0.09569306,-0.07645947,0.036027934,0.47668952,0.11540246,0.23926458,-0.089691095,-0.19758001,0.46972737,1.0109537,0.15989682,0.5236271,0.08955463,-0.06589527,0.28372008,0.08089961,0.10723666,0.014664956,-0.48074526,-0.18708445,-0.113879785,0.19311602,0.36866018,0.14243641,0.4087196,-0.15181056,-0.3307381,-0.030728446,0.16436312,-0.038661834,-0.9160448,0.14019586,0.112815365,0.84806156,0.49954095,-0.06250642,0.0835668,0.45079714,-0.1948887,0.11223768,0.31831232,0.12763707,-0.4801313,0.49095944,-0.62069863,0.28632903,-0.13405201,0.018891603,-0.1824888,0.032164186,0.35654622,0.75949246,-0.17687485,-0.044523973,-0.0540453,-0.1617014,0.22154379,-0.33345312,0.122042164,-0.6045493,-0.23451154,0.5666478,0.44409624,0.39872912,-0.02867629,-0.13895094,0.042922873,-0.044463295,0.035690453,-0.04944902,0.08203165,-0.010266887,-0.6461219,-0.36839363,0.5079393,0.21192625,0.14960912,-0.047549594,-0.3237531,0.21528485,-0.2241451,-0.18284698,0.013717265,-0.6297726,-0.058298707,-0.13591285,-0.5053233,0.43721038,-0.2447428,0.16231559,0.20582299,-0.01888524,-0.33976936,-0.029094024,0.13323934,0.63545406,-0.098598056,-0.032847825,-0.5352017,0.07877779,0.14378402,-0.13419728,-0.10112793,-0.1639781,0.041334547,-0.5913578,0.45939818,-0.0083783865,-0.19217137,0.21034493,-0.28261536,-0.04840604,0.6594568,-0.07415166,-0.061904874,0.07179209,-0.35584387,-0.20982702,-0.045316074,-0.09817656,0.24219133,-0.026502516,0.040903635,-0.0930096,-0.15016142,-0.2335381,0.3154866,0.14910717,0.16511126,0.39191693,0.19108985,-0.42303464,-0.15049647,0.053372685,0.47822112,-0.018041808,-0.17819186,-0.2781668,-0.5521417,-0.19292776,0.135379,-0.040933967,0.31932148,-0.0075145895,-0.3678864,0.8721426,0.04612327,1.0508667,0.07079778,-0.43044668,-0.21467818,0.5474568,-0.025211278,0.068192795,-0.266752,0.7907737,0.514057,0.05056665,-0.1448228,-0.29258886,0.14424555,0.26523268,-0.068328254,-0.059996996,-0.091997586,-0.5847254,-0.20576203,0.42954412,0.25161415,0.0865201,0.004873297,0.12153077,0.18473682,-0.0656745,0.59415656,-0.54987997,-0.09056567,0.1829443,0.2652489,0.24961312,0.14938721,-0.31001344,0.37196103,-0.4650316,0.10389241,-0.23153794,0.17446105,-0.19305405,-0.2352219,0.19559129,-0.11711428,0.54259473,-0.19073507,-0.35944924,-0.19217329,0.5413578,0.10295638,0.242263,0.5676774,-0.255891,0.029366449,0.018215507,0.6374377,1.0158049,-0.21189348,0.03687628,0.46033266,-0.17673433,-0.74440926,0.41470474,-0.32260242,0.14537962,-0.045474496,-0.17195018,-0.3049306,0.25429562,0.35384494,-0.01159287,0.12362403,-0.5285454,-0.33306667,0.32992262,-0.24372683,-0.20220105,-0.1600708,0.2747072,0.66948044,-0.3074729,-0.10122112,0.04317807,0.46333972,-0.24537158,-0.5195393,0.033230446,-0.27470812,0.40440717,0.12998886,-0.21193327,-0.03968277,0.03999922,-0.31678966,0.0453864,0.16045949,-0.3022447,0.12776013,-0.21642773,-0.029692592,0.7655938,-0.008391465,0.11016005,-0.64145344,-0.35258636,-0.87514156,-0.26594105,0.509133,0.026286563,0.06822333,-0.66019535,-0.030784557,-0.089233585,-0.051847376,-0.06649788,-0.38611156,0.63790894,0.2006323,0.34339,-0.048742626,-0.50625205,-0.017570416,0.04660483,-0.059335846,-0.41436443,0.5427342,0.065065436,0.7562095,0.11201792,0.0629469,0.14398275,-0.41933075,0.17583807,-0.22439004,-0.39264253,-0.8122188,0.033781618,817 +542,0.28852966,-0.025320401,-0.5346387,-0.06744438,-0.24270524,0.02363504,-0.04836887,0.40631065,0.23066579,-0.1585501,-0.15047261,-0.13048886,-0.053708434,0.3418319,-0.23618062,-0.38912752,0.023502631,0.09743844,-0.39673024,0.5806429,-0.22669339,0.14304605,-0.04252511,0.356827,0.3883453,0.080679126,0.052613873,0.059079748,-0.09781226,-0.3339796,-0.45157686,0.2830793,-0.26727548,0.121294856,-0.13201986,-0.34894255,-0.004156351,-0.45242685,-0.46636328,-0.6776232,0.30156127,-0.7739929,0.5191679,0.036311664,-0.19773984,0.39342755,0.14121933,0.23310235,-0.05781212,-0.3337481,0.1615453,-0.29109362,-0.050102796,-0.28003794,-0.30241647,-0.21560428,-0.48489946,-0.13174732,-0.33340025,-0.20580506,-0.43036106,0.14835753,-0.3597985,0.0412033,-0.056957442,0.5389943,-0.2810064,0.32140025,0.02312748,-0.16786334,-0.061844807,-0.7372373,-0.24036093,-0.016733648,0.28709108,-0.041430406,-0.19716237,0.3788062,0.12895976,0.30807564,-0.2395439,-0.08244374,-0.3041079,-0.17922592,0.055514693,0.54479444,-0.2250694,-0.4822723,0.03501812,0.24300422,0.1950312,0.38476396,0.2528768,-0.06560729,-0.10185688,0.008501508,-0.07851807,0.47483212,0.44882637,-0.20092228,-0.018059786,0.34258863,0.30911937,0.31617337,-0.11201397,-0.20627336,-0.16863418,-0.4999635,-0.10435108,-0.14467034,-0.1928792,0.4413337,-0.0053012753,0.28597575,0.51122284,-0.028098542,-0.09667366,0.11057954,0.082851216,0.055842567,-0.2754952,-0.2845375,0.20787157,-0.43769673,0.40278217,0.060304195,0.6598775,0.12309526,-0.450702,0.43515143,-0.4432682,0.07345381,-0.052802783,0.3535854,0.46930417,0.3352187,0.39209676,0.57595533,-0.4679088,-0.015527002,-0.0150096165,-0.31451792,-0.087989226,-0.05111729,0.21110736,-0.5621098,-0.036174424,-0.2243477,-0.030159047,0.31608558,0.17515422,-0.42479944,-0.11325074,0.17920281,0.9754621,-0.22150977,-0.037724946,0.83611965,1.1412975,0.8735952,-0.12416691,0.5503768,-0.018543,-0.16116154,0.04222199,0.0033556393,-0.49178705,0.2128332,0.4334534,-0.13169508,0.06368182,0.18746956,0.015805457,0.35901117,-0.24053338,-0.22421266,-0.08134793,0.07106442,0.3609617,-0.0113989115,-0.45946836,-0.24286151,-0.2101499,0.022002552,0.1332196,0.21800293,-0.24606106,0.44515833,-0.16201796,1.607065,0.16450712,0.0021163735,0.17320053,0.5196582,0.20909394,-0.06831711,-0.15890001,0.3105049,0.21296549,0.17479466,-0.40263692,0.17923607,-0.33400625,-0.27320692,-0.007937753,-0.40041608,-0.20936055,0.13312744,-0.288539,-0.18791129,-0.17002384,-0.18083842,0.49852684,-3.163019,-0.17612994,-0.08135683,0.32893896,-0.15497299,-0.39726263,0.011128038,-0.38677695,0.44243917,0.15774421,0.5221614,-0.4410253,0.25185204,0.17428766,-0.49386856,-0.26304868,-0.44290453,-0.049086478,0.14343643,0.37744984,-0.09116193,-0.050320007,0.08153142,0.10649485,0.44901043,0.031071007,0.08284737,0.39164576,0.42964816,-0.14741625,0.48176172,-0.2787121,0.58367187,-0.2456328,-0.09806066,0.21841112,-0.15410723,0.44501352,-0.15191577,0.26312286,0.56423765,-0.2638634,-0.7637391,-0.41632867,0.043440633,1.2307246,-0.04792922,-0.49504265,0.22753017,-0.44630194,-0.27753982,-0.25389066,0.36232248,-0.058329847,-0.1651775,-0.5640613,0.10169155,-0.115768276,0.11581842,-0.03724239,-0.22767036,-0.2937364,0.600666,0.014453471,0.5359887,0.26510343,0.22232185,-0.31390196,-0.22925845,-0.0582921,0.6263117,0.50930685,-0.057698626,-0.12470865,-0.06369598,-0.29296595,-0.18988521,0.23937976,0.6073566,0.43649203,-0.027641516,0.10315739,0.30617163,0.045476317,0.012462999,-0.15142012,-0.19599295,-0.19214188,-0.0078123785,0.50697297,0.63444585,0.03455476,0.5949826,0.0996274,0.24154255,-0.1634315,-0.45276675,0.1538166,0.85894245,-0.26528782,-0.44233432,0.5106646,0.34675115,-0.09324418,0.31276372,-0.38653812,-0.31395525,0.5562405,-0.10274457,-0.5340452,0.1531532,-0.24503049,-0.045738522,-0.50556827,0.22259822,-0.34490156,-0.68794453,-0.5233928,-0.08505029,-2.323304,0.21306705,-0.40773576,-0.18454345,-0.1602882,-0.30240732,-0.063291706,-0.61616975,-0.46894485,0.23108278,0.19904627,0.7250279,-0.13390933,0.144708,-0.15679052,-0.3044302,-0.09586803,0.08154366,0.12965421,0.3157629,-0.057186108,-0.24619535,-0.11679026,0.078062415,-0.38588053,0.090007804,-0.55929404,-0.26350078,-0.07585287,-0.38027558,-0.18609795,0.6455969,-0.34228423,0.06246529,-0.24830581,0.023247276,0.030976739,0.0076116943,0.19197492,0.16902344,-0.05567074,-0.104369,0.13898031,-0.34455857,0.25285545,0.093536906,0.40919194,0.21359818,0.17497529,0.21100911,0.3320083,0.62010515,0.007227308,0.80793625,0.2484632,-0.072733656,0.22058018,-0.22619344,-0.41454437,-0.4421681,-0.2153245,0.34415802,-0.33006236,-0.42170215,-0.048677053,-0.28409857,-0.6868722,0.5737542,0.06236417,0.10264888,-0.16221319,0.3349442,0.6486286,-0.3354029,-0.0611409,0.15501599,-0.04010878,-0.620073,-0.18146026,-0.555898,-0.44014865,-0.07607249,0.7629738,-0.27173594,0.087620735,0.1068591,-0.3404321,0.105555005,0.013745346,0.036076274,0.15332447,0.27542967,-0.2429261,-0.5826697,0.48904803,-0.32106885,-0.08615933,-0.57687426,0.29373258,0.5539605,-0.4592051,0.3648621,0.2746539,-0.047662165,-0.36098453,-0.453737,-0.15616463,-0.068889126,-0.15457752,0.19694795,0.082989804,-0.6825308,0.35286528,0.33771834,-0.11190046,-0.6253467,0.45785233,-0.03515939,-0.4048861,0.089449115,0.29871345,0.17400824,0.030654622,-0.16628666,0.08068228,-0.21948576,0.3249827,0.218465,-0.034697883,0.0034537783,-0.27423555,-0.14734551,-0.65226173,0.10367889,-0.3394234,-0.30227694,0.2810981,0.041130714,0.16575949,0.14111407,0.07484716,0.2329425,-0.3434887,0.17353758,-0.1813628,-0.32981938,0.378862,0.39397508,0.58070385,-0.48897192,0.5673544,0.007310315,-0.1755388,0.22738205,0.036029138,0.3185954,-0.02837029,0.46159378,0.04395163,-0.20352837,0.14269902,0.66248274,0.12185045,0.25013703,0.028137472,0.011358574,-0.025491262,-0.06341475,0.1406591,-0.0025789824,-0.5820231,0.17132436,-0.43334523,0.1049085,0.43340722,0.16330115,0.15017723,-0.0076850015,-0.4315142,-0.06632101,0.05622768,0.11862792,-0.9957131,0.4222179,0.1186903,0.92103195,0.052496094,0.1460929,-0.10395813,0.6892325,-0.007763756,0.025883565,0.28038982,0.05736773,-0.3134758,0.456292,-0.68485975,0.56923836,0.16105904,-0.023267908,0.051942308,-0.116661325,0.25290003,0.56577367,-0.32852045,0.027700534,0.06855375,-0.40084615,0.12722838,-0.4201416,-0.042102177,-0.4652857,-0.34866285,0.41680333,0.52359164,0.35633096,-0.07288391,0.011479893,0.053226866,-0.1892082,0.075724974,0.097191654,0.2153114,-0.2305557,-0.5426539,-0.05200145,0.29446444,-0.1580422,0.21798798,-0.12582274,0.07459438,0.30171624,-0.060960025,-0.04523582,0.009283887,-0.518369,0.16667639,-0.18619654,-0.40936133,0.35656956,-0.0843073,0.35579365,0.19397804,0.067475736,0.053678352,0.58561546,0.029737115,0.8219327,-0.06069901,-0.049986545,-0.427716,0.08161909,-0.11123786,-0.06726039,0.23308311,-0.25300643,0.12026889,-0.5616469,0.4221282,-0.06957514,-0.19818486,-0.14226694,-0.12099848,0.14712356,0.4319412,-0.040071905,-0.06810803,-0.23210952,-0.206163,-0.18375523,-0.25166222,0.019147431,0.15272264,0.19675899,0.115800686,-0.13820907,-0.06108292,-0.27714717,0.35257164,-0.060979422,0.47006804,0.081587635,0.1817614,-0.10947462,-0.17073505,-0.016708493,0.59870815,-0.11468581,-0.2283268,-0.2618611,-0.40075105,-0.35354736,0.29518208,-0.047451057,0.34172267,0.0668539,0.008937557,0.5151447,-0.15310036,1.0840604,-0.07565313,-0.29406098,0.029070644,0.4604546,-0.06522631,-0.15838997,0.019124392,0.811253,0.34064406,0.19210799,0.037070397,-0.30171564,0.06184729,0.26895478,-0.16808549,-0.034745317,0.07181429,-0.1614918,-0.17204884,0.098574,0.11779208,0.358737,-0.28667542,0.13600095,0.34767675,0.06010906,0.1206889,-0.3068439,-0.26387036,0.30862468,0.15841286,-0.18471411,0.107009016,-0.53684133,0.39634147,-0.3108849,0.1200436,-0.41220763,0.09914875,-0.13604584,-0.098687395,0.25803185,0.09295737,0.4474524,-0.429032,-0.17042896,-0.14583203,0.2912428,0.33354476,0.030104574,0.28940934,-0.20861574,-0.16596122,0.11759562,0.41485554,0.55817735,-0.2177764,-0.0123050045,0.28153494,-0.3839217,-0.5041991,0.25552338,-0.28161424,-0.07529963,0.093939,-0.0154383695,-0.3518973,0.27762476,0.2921585,0.05373383,-0.10904987,-0.6430268,-0.08226522,-0.008749654,-0.36270496,-0.17032759,-0.41776642,-0.04815364,0.4055365,-0.08646022,-0.29337668,0.06465123,0.14940523,-0.032963365,-0.46564206,0.0892521,-0.36246628,0.21035783,-0.076606154,-0.26360244,-0.29891652,-0.16932777,-0.4744266,0.19066536,-0.047867436,-0.278223,-0.0064278245,-0.083561726,0.00516599,0.71589386,-0.3566658,0.16518593,-0.4409237,-0.3915002,-0.4607636,-0.45996708,0.30051392,0.053807903,0.09364339,-0.62113106,-0.0052742916,-0.18657516,-0.21182594,-0.32351446,-0.11948694,0.34604958,0.0493891,0.2534502,-0.3202307,-0.80853933,0.33353445,-0.013359006,-0.17705403,-0.460629,0.2786037,0.012240018,0.5721486,-0.061160248,0.1093054,0.30702418,-0.20118235,-0.11294092,-0.29611772,-0.26758203,-0.46237412,-0.09117738,821 +543,0.44611496,-0.16997008,-0.47673795,-0.034736704,-0.17596994,0.16275361,-0.07015697,0.6377077,0.10218089,-0.45640618,-0.13824709,-0.08404989,-0.08197824,0.17829077,-0.27613145,-0.27434677,-0.114683576,-0.001806189,-0.5017489,0.7313027,-0.29741636,0.1785717,-0.04292282,0.28911754,0.31562465,0.17986794,0.18729141,-0.074657604,-0.11042856,-0.26544315,0.0062806094,0.26020807,-0.72519124,0.21988355,-0.4495793,-0.42065164,-0.1364329,-0.45970502,-0.40974683,-0.77055347,0.3311852,-1.0502964,0.61320114,0.022305846,-0.17237839,0.5505695,0.21146525,0.06912746,-0.03577835,-0.13151148,0.2214556,0.00041897915,0.040293925,-0.08686817,-0.26926795,-0.6628715,-0.69891244,-0.055105984,-0.5923541,-0.06842585,-0.3433499,0.106771,-0.3619261,-0.044485338,-0.29664797,0.3267028,-0.46749496,0.142379,0.08732937,0.018232087,0.17519024,-0.7892129,-0.23439123,-0.14595447,0.117879406,-0.066746354,0.0059557897,0.38727474,0.08991532,0.3413716,-0.028033605,-0.19314273,-0.38495964,0.0071065896,0.057727892,0.39846984,-0.14845678,-0.4934435,-0.12878348,0.03838855,0.41245762,0.12554029,0.16689254,0.015758244,-0.0614986,0.021756576,-0.27118865,0.53745466,0.5668576,-0.39244843,-0.44125986,0.39646253,0.49565536,0.29231194,-0.3306026,-0.030464003,-0.09956087,-0.3503921,-0.0996673,0.29543847,-0.24324301,0.52235955,-0.04856012,0.20684044,0.44267532,-0.24354137,0.22246686,0.12813735,-0.04707052,0.0023366127,-0.11463188,-0.36129594,0.19419172,-0.52273226,0.3520684,-0.3227227,0.69020087,-0.026181493,-0.63495654,0.3847704,-0.47811392,0.06902576,0.018239766,0.48881564,0.64870065,0.4199981,0.19489887,0.61941594,-0.14896615,-0.040369965,-0.16647212,-0.16358553,0.0897321,-0.14825583,0.22088994,-0.45764428,0.07852067,-0.0077401143,0.038417608,-0.16318202,0.56710064,-0.48519763,-0.2650789,0.18303128,0.79821384,-0.22912054,-0.114347115,0.8338374,1.2318037,0.99106216,-0.025140971,0.91941607,0.13907251,-0.17813429,0.18312073,-0.21302816,-0.6161994,0.23742194,0.35158992,0.07376252,0.39321524,0.19547746,-0.07192069,0.20766963,-0.36057782,-0.015472332,-0.25956467,0.09430406,0.3192679,-0.0024790275,-0.27809432,-0.29222992,0.022718042,-0.086860254,0.20135579,0.15950021,-0.43146476,0.25765115,0.13707401,1.4519026,-0.12210107,-0.001337261,0.063940145,0.7136326,0.18940651,-0.02763425,0.16987893,0.28492847,0.33211908,-0.020482507,-0.4855273,0.18969999,-0.39755267,-0.6287161,0.026556594,-0.46903476,-0.21690552,0.123989984,-0.50032705,-0.15169494,-0.10853334,-0.2459458,0.33042914,-2.9848142,-0.08701607,-0.09629272,0.36936194,-0.23877147,-0.32237536,-0.21882604,-0.5732067,0.5009377,0.28246152,0.38365275,-0.5730297,0.55285186,0.3708594,-0.56308293,0.02802541,-0.57064414,-0.07617708,-0.025395572,0.4771982,-0.060294162,0.09682933,0.27998903,0.111435905,0.61517256,0.13046762,0.17236507,0.31283447,0.50272065,-0.050356124,0.45432988,-0.044652104,0.40922076,-0.48836705,-0.06417852,0.3213031,-0.44920102,0.46767515,-0.15563901,0.2586148,0.5356425,-0.5274728,-0.8259983,-0.6407584,-0.23930547,1.1938299,-0.274107,-0.48623458,0.08697243,-0.30814663,-0.24344698,-0.21049525,0.5699163,-0.10195173,-0.035888154,-0.5816617,-0.04406854,-0.20793399,0.09453404,-0.14410503,0.2077103,-0.33886656,0.849227,-0.05208808,0.6723277,0.035459265,0.29445872,-0.33027285,-0.47864628,0.05566034,0.7629407,0.42653728,-0.045109715,-0.15472963,-0.28304473,-0.29242843,-0.16395037,0.17419767,0.79589784,0.49723142,0.024759704,-0.015560607,0.32045698,-0.050208684,0.049975015,-0.2836974,-0.2867982,-0.27559337,0.018150087,0.35884792,0.42862743,-0.15974583,0.36881235,-0.14465307,0.3068892,-0.19890103,-0.4128997,0.24481286,1.0994794,-0.19813931,-0.12810424,0.46369264,0.59947765,-0.24746922,0.41282997,-0.7646799,-0.351924,0.45589212,-0.17327544,-0.44523573,0.20585372,-0.28952822,-0.02109499,-0.75803554,0.29095808,-0.4667609,-0.52301306,-0.5141014,-0.19958523,-3.0359654,0.05024809,-0.1848717,-0.1396675,-0.33013448,-0.31949458,0.12367129,-0.57482153,-0.5278558,0.15999794,0.13877462,0.6474853,-0.15544239,0.07305356,-0.29150528,-0.21399944,-0.43776354,0.32321796,0.10655097,0.30936566,-0.36390516,-0.34982273,-0.009021987,-0.0066979784,-0.33515453,0.03686211,-0.58724433,-0.3803566,-0.07457895,-0.29166606,-0.16924436,0.5575114,-0.29771543,0.06520177,-0.16610684,0.059730645,-0.07451731,0.25976926,0.14830442,0.0797276,0.05598988,-0.13542208,0.080633916,-0.40852696,0.49782732,0.115153335,0.48393673,0.5619036,-0.18399644,0.12578385,0.50704414,0.4767668,-0.009462823,0.8923654,0.20431638,-0.21323779,0.386401,-0.097373724,-0.23387294,-0.6669566,-0.07399019,0.027225744,-0.32423717,-0.47789246,-0.024648717,-0.297185,-0.9061402,0.43640348,-0.09785394,0.33475885,-0.13909028,0.33365005,0.5003755,-0.08944672,0.14455506,-0.01475226,-0.04475898,-0.49604422,-0.403296,-0.65861845,-0.46245536,0.026779149,0.77314055,-0.19858143,-0.10561003,0.04447105,-0.23544554,0.1550611,0.13066678,0.07467724,0.114655234,0.5240432,-0.16639897,-0.631855,0.6397614,-0.076083906,-0.15021743,-0.42095798,0.39454117,0.5123274,-0.66489613,0.40878004,0.30439782,0.0033318442,-0.38228464,-0.5100842,-0.06210894,-0.19731103,-0.17018557,0.26922005,0.08146756,-0.81237257,0.3566851,0.16741362,-0.27444813,-0.6851123,0.62537354,-0.011988491,-0.10509021,-0.121617794,0.31373525,0.2429014,-0.005763023,-0.065467656,0.24176154,-0.50529927,0.26946378,0.082244344,-0.07831731,0.3425403,-0.20578572,-0.17592356,-0.6086988,0.18257542,-0.49175256,-0.30719003,0.5188224,0.017717209,0.018773124,0.2372743,0.14004049,0.3943687,-0.23543918,0.14063397,0.0022917986,-0.23458956,0.58877134,0.3807295,0.5245875,-0.4738235,0.57039744,0.03852007,-0.20861986,0.33323976,0.14330904,0.27006298,0.10032561,0.44321045,0.1509423,-0.13493145,0.28481406,0.8720717,0.42104277,0.44866046,0.02714083,-0.15057674,0.30554435,-0.076266006,0.08543879,-0.07856392,-0.6970779,-0.050942782,-0.19993792,0.09683479,0.4148841,0.06808053,0.20930664,-0.08701206,-0.058555163,-0.06772346,0.14200012,-0.17701556,-1.1191674,0.24408093,0.13407563,0.89343864,0.39937693,-0.12146617,0.084017254,0.6715742,-0.13050516,0.13329807,0.43836465,0.22192028,-0.5362977,0.5632206,-0.50217324,0.51394075,-0.10714577,0.073163874,0.020647287,0.012540753,0.38303837,0.8412331,-0.29652825,-0.10512773,0.049842022,-0.39249662,0.26984537,-0.26458642,0.32171986,-0.52424335,-0.2314559,0.65312546,0.48276788,0.36853462,-0.011176931,0.008951694,-0.14871141,-0.1701182,0.2700098,0.068713106,0.17471448,-0.11632664,-0.62852526,-0.22148369,0.55051,-0.2491839,0.21347019,0.101938166,-0.39470047,0.39373997,-0.02415652,0.017296502,0.017026981,-0.7546302,0.0869345,-0.114671506,-0.3156271,0.4318317,-0.18429378,0.23996851,0.26189378,-0.16484316,-0.29514226,-0.00054352626,0.18134478,0.42963094,-0.10663442,-0.15671088,-0.56373614,0.013003196,0.08748983,-0.2994643,0.06074409,-0.14612553,0.10350002,-0.5925166,0.32712942,-0.15743576,-0.2478495,-0.08884312,-0.19410324,0.054549806,0.71643764,0.025874326,-0.011603764,-0.1775913,-0.02761164,-0.40367675,-0.23116252,-0.06137072,0.13387804,0.11475178,-0.08082662,-0.08184377,-0.19620825,-0.0074479794,0.42672327,0.09959222,0.47603735,0.31546116,0.16181645,-0.3943686,-0.19015686,0.20169054,0.45084122,-0.0026871094,-0.04538945,-0.20225756,-0.46314472,-0.31753293,0.25871867,-0.09884454,0.31541306,0.19495173,-0.28544405,0.6889077,-0.19228734,1.1768081,0.089280486,-0.25490195,0.14388788,0.6294474,0.099016264,-0.14057228,-0.28174204,0.9319789,0.6105346,0.08635555,-0.017513957,-0.19574726,0.017552275,0.1461825,-0.17744121,-0.22282514,0.0062017953,-0.5753921,-0.11039039,0.051802706,0.32673436,0.12168062,-0.096468054,0.045609135,0.25253192,0.04120228,0.38377625,-0.52988696,-0.302523,0.31377554,0.1359817,-0.09564837,0.17470185,-0.45335168,0.34637564,-0.55653423,0.09893642,-0.32300505,0.10941452,-0.1396014,-0.28906563,0.27832446,0.037257917,0.4186744,-0.24240495,-0.50334084,-0.13510503,0.34958526,0.18607333,0.19892646,0.46982303,-0.13603005,0.116845585,-0.001009111,0.6258268,0.9616837,-0.13596314,-0.096776776,0.19676316,-0.49677888,-0.7342953,0.31612954,-0.38426524,0.30842796,0.06734256,-0.076977395,-0.35719672,0.27384147,0.24797519,-0.0602773,0.09030839,-0.7660645,-0.2370896,0.033665664,-0.39540154,-0.20551209,-0.41756684,0.14548601,0.67672646,-0.35215086,-0.23573422,-0.103202105,0.28113577,-0.19842477,-0.52354544,-0.008343786,-0.3712944,0.23296925,0.006053605,-0.3624662,-0.123714484,0.22655395,-0.53503877,0.24303928,0.076823294,-0.39475733,-0.0012700036,-0.2707395,0.11365471,0.77048683,-0.14698593,-0.010873309,-0.38026708,-0.5185603,-0.78657055,-0.45913962,0.030701134,0.4087961,0.06577206,-0.5276181,0.073982,-0.09904639,-0.17398122,-0.18651022,-0.44804463,0.43122143,0.091448106,0.3621684,-0.1104887,-0.8475433,0.25955543,0.05283708,0.03623461,-0.5265426,0.4606433,-0.122972436,0.96531475,0.12564272,0.18881397,0.11073259,-0.48090166,-0.08426554,-0.17777416,0.0047735744,-0.67783004,0.14795555,822 +544,0.5287789,-0.16657697,-0.25173578,-0.20929106,-0.1101653,0.1373631,-0.13737078,0.49794167,0.023322208,-0.43438822,-0.095761724,-0.20767201,-0.08029039,0.33834976,-0.1319618,-0.54421955,-0.14260818,-0.015102268,-0.3619578,0.55532193,-0.5093003,0.30658573,-0.009914905,0.38171464,0.085808,0.29247078,0.23255864,-0.032289933,0.056158423,-0.32284406,0.047896963,-0.20496853,-0.86193687,0.22616395,-0.23765492,-0.3178534,-0.002813667,-0.49543503,-0.34583536,-0.7729315,0.28124228,-0.6039077,0.4564647,-0.0012124191,-0.21711297,0.47437558,0.19929574,0.33842653,-0.1382222,0.040975206,0.12967132,-0.11401976,0.07768134,-0.15502211,-0.12321339,-0.43545678,-0.6390039,-0.00990797,-0.43030173,-0.3165328,-0.27600363,0.13351072,-0.3138092,-0.06718931,-0.08403526,0.41314825,-0.39869756,-0.10588891,0.18865217,-0.18816993,0.29516646,-0.54428595,-0.108293734,-0.11187499,0.09973144,0.04482924,0.057441056,0.3655937,0.11044331,0.50340277,0.04360989,-0.24106137,-0.2982162,-0.13083653,-0.015978027,0.5041059,-0.10423659,-0.3002839,-0.14642331,-0.18480304,0.20078322,0.264435,0.059673376,-0.07904984,-0.031957664,0.012941445,-0.26123548,0.3508219,0.56491053,-0.44113547,-0.40079078,0.25049156,0.58763474,0.16283478,-0.082854204,-0.061491214,-0.021715935,-0.401797,-0.17746462,0.19842383,-0.3193912,0.39307323,-0.062867664,0.17733446,0.5388537,-0.22359405,0.13558309,-0.10942992,-0.13335346,0.10677215,-0.35724017,-0.31385133,0.24931867,-0.4054087,0.14903976,-0.40836605,0.82818466,-0.0036192238,-0.7039607,0.36596534,-0.6355702,0.13269314,0.04501411,0.5972728,0.6472665,0.41489056,0.33125418,0.7248907,-0.33343583,-0.07325857,-0.26775953,-0.019603537,0.112413295,-0.11992083,0.21009997,-0.36782694,0.10242308,0.068491414,0.06530579,-0.059355717,0.43674755,-0.49210766,-0.042512923,0.1643243,0.97296727,-0.21437414,0.017793706,0.6737337,1.2605741,1.1066041,-0.025721332,1.0056398,0.24993852,-0.24505278,0.19676645,-0.374672,-0.45859733,0.24910401,0.33314008,0.1453104,0.28700665,0.05176754,-0.09964586,0.38919148,-0.48181105,0.047443133,-0.031805415,0.20012967,0.12456637,0.03131,-0.40478185,-0.23630509,0.07914222,-0.06771314,0.23247518,0.243643,-0.44069746,0.12614688,-0.07149102,1.5089748,-0.05332458,0.25135586,0.21425197,0.49740982,0.15792452,-0.11526727,0.11445236,0.24739315,0.2497668,0.019894293,-0.65409726,0.3128247,-0.28179303,-0.5317055,-0.10074662,-0.4011875,-0.04747491,-0.052682716,-0.4670941,-0.057901748,-0.119471245,-0.4349229,0.4067532,-2.7644212,-0.18221693,-0.06426754,0.3137662,-0.43630695,-0.3214459,-0.0733373,-0.44714615,0.65619856,0.3433467,0.3600379,-0.54723865,0.5369893,0.49438223,-0.3973766,-0.104197025,-0.59391934,-0.02659606,-0.08129014,0.36224332,0.05305583,-0.101798765,-0.11225844,0.21701555,0.5936442,0.1952002,0.020788822,0.2162683,0.31919962,-0.107925765,0.5126105,-0.00801989,0.33264646,-0.3306202,-0.09379434,0.39626998,-0.52267486,0.13219802,-0.23985203,0.20457585,0.26108757,-0.37671927,-0.7890892,-0.6636872,-0.5447921,1.1534451,-0.2336448,-0.5449258,0.29613787,-0.24897572,-0.05738266,-0.06345341,0.6167112,-0.23001559,-0.006485094,-0.5795426,0.07523566,-0.13906096,0.25380614,0.00674639,0.12483933,-0.6026866,0.8279527,-0.14927766,0.47333163,0.15688594,0.34444094,-0.264048,-0.44750947,0.045915384,0.8630332,0.4089126,0.01584807,-0.12229895,-0.20915692,-0.21783376,-0.15772732,0.09861476,0.6149858,0.69451135,0.043165985,-0.052426457,0.18748198,-0.25059527,0.011577517,-0.11322279,-0.3151982,-0.13531944,0.0031650749,0.65175766,0.4320492,-0.058981128,0.34341478,-0.13711473,0.31076506,-0.30979612,-0.29206172,0.44040886,0.9552517,-0.1105671,-0.046521302,0.5027312,0.53454906,-0.17846404,0.5008406,-0.86295265,-0.4278254,0.5493045,-0.20792641,-0.5084384,0.043298673,-0.2718716,-0.05655126,-0.76536083,0.120604835,-0.37528205,-0.36364666,-0.5535611,-0.31933898,-3.1460173,0.03585138,-0.010204613,-0.10425753,-0.15311913,-0.07368277,0.24538873,-0.5390294,-0.47237256,0.08134277,0.06210078,0.6281463,-0.048420075,0.117630735,-0.3462822,-0.23345123,-0.55381936,0.1956861,0.02948308,0.33034652,0.08224111,-0.16552015,0.06851341,-0.12283255,-0.5236339,0.056991525,-0.38496098,-0.3137961,-0.31997004,-0.43529242,-0.34212667,0.6131384,-0.39039913,0.1520727,-0.18248954,0.00015371187,-0.024958534,0.4348674,0.25082272,0.22971812,0.09559829,-0.14186876,-0.065896176,-0.36618468,0.29235896,0.18641792,0.25543234,0.48013043,-0.27467233,0.09603809,0.38869953,0.5051719,-0.022287203,0.77128804,0.42850828,-0.03176104,0.3884489,-0.3470262,-0.06610765,-0.43730304,-0.28920034,-0.021448387,-0.25710946,-0.54141027,-0.20326164,-0.32522014,-0.793593,0.3046722,-0.058294814,0.28839442,-0.037445754,0.2681434,0.42995057,-0.1841055,0.018258061,0.021401823,-0.073659666,-0.44986483,-0.39920622,-0.60953856,-0.40529993,0.08581734,0.7649547,-0.060261033,-0.085943855,0.060023207,-0.0325028,0.013063704,0.008824289,0.034620576,-0.06440044,0.25470325,0.10292793,-0.6157552,0.4951271,-0.05009975,-0.23830129,-0.56275356,0.33385855,0.6498361,-0.47555137,0.40374058,0.22857706,0.20915772,-0.12577346,-0.56048757,-0.0008510138,0.033009887,-0.19666718,0.25765175,0.029478695,-0.86160195,0.44377038,0.06609037,-0.17966314,-0.77194035,0.43628365,-0.06268096,-0.37835774,-0.21748471,0.33080104,0.38063097,0.055631578,-0.020439481,0.32367736,-0.6565421,0.17405517,0.23907427,0.1133784,0.6027876,-0.18327613,0.054933242,-0.5946713,-0.006368088,-0.5550381,-0.36221024,0.23640142,0.23381226,-0.0031541544,0.4410181,0.09381736,0.3959364,-0.08263988,0.19678195,-0.032181323,-0.1852,0.4688231,0.44460955,0.46282938,-0.3142744,0.5993231,0.09618716,-0.10139419,0.05625685,-0.024029756,0.39747092,-0.036301877,0.2994923,-0.17839627,-0.19541346,0.15376507,0.46102425,0.22117534,0.39569142,0.07225498,-0.2058293,0.3512547,-0.052904535,0.05451432,-0.040691618,-0.56915003,0.04981432,-0.06201584,0.08223132,0.50481427,0.22169876,0.34761134,0.0033802178,-0.1231414,0.10459799,0.26449636,-0.51794994,-1.1143551,0.33757597,0.107294045,0.8265968,0.6645889,-0.07959913,0.10336452,0.6225367,-0.08252986,0.04646272,0.36423373,0.2700519,-0.42320198,0.650482,-0.76855075,0.4668184,-0.051301636,-0.04771923,-0.03604263,0.096924625,0.5594991,0.70238256,-0.1982385,-0.052902214,-0.09463991,-0.21356817,0.13801643,-0.28483424,0.40021706,-0.5115154,-0.2602962,0.6022313,0.40725932,0.35897273,-0.23278165,-0.12735145,-0.031022957,-0.13479601,0.226016,-0.09760158,-0.10475788,0.024641952,-0.630529,-0.3131368,0.40291864,-0.24180944,0.14281715,0.17384055,-0.2693103,-0.0060248547,-0.09270104,-0.023340633,0.08677713,-0.71350086,0.04558054,-0.24453112,-0.21114948,0.4308731,-0.2693479,0.2552769,0.070462815,-0.04126864,-0.15420547,0.04787624,0.25814208,0.56545895,0.082734585,-0.19869627,-0.5155981,0.057661373,0.057638466,-0.34682485,-0.07736908,-0.1498114,-0.055535458,-0.6712112,0.41197863,-0.19519906,-0.1739727,0.2350279,-0.1844169,-0.072285905,0.66463363,-0.06538535,-0.0010014857,-0.09401572,-0.41362947,-0.14856799,-0.15690954,-0.049444217,0.31397328,-0.08388392,-0.14438947,-0.07677955,-0.08748882,-0.04823179,0.38836527,0.1794192,0.31041738,0.307621,-0.0054497058,-0.31979808,-0.14290668,0.06486877,0.31457585,0.08146671,-0.031751573,-0.21301654,-0.4499971,-0.36018294,0.2581156,-0.100383684,0.2089273,0.057837762,-0.23077056,0.71089983,0.13710243,1.1198577,0.16916206,-0.21837445,0.15572044,0.6000962,-0.010725358,0.05273364,-0.49660444,0.88665265,0.50282276,-0.06190196,-0.13580512,-0.1976516,-0.053020425,0.33234707,-0.20324108,-0.14124067,-0.13257119,-0.7986373,-0.284598,0.14456522,0.3211131,0.059472736,-0.13475093,-0.1253473,0.2808612,0.0033556712,0.62223285,-0.32068923,-0.08290958,0.4548461,0.13143684,-0.015358133,0.098740526,-0.333345,0.33663124,-0.72194356,0.19098404,-0.38829938,0.012693865,-0.15759002,-0.2672847,0.30287144,0.16204406,0.28088334,-0.20076537,-0.40430036,-0.04390112,0.40645376,0.15165949,0.26267463,0.5129258,-0.16205965,0.11798679,-0.06764429,0.54121786,1.228195,-0.256084,0.031318326,0.23321077,-0.49198171,-0.79579526,0.3027068,-0.35354295,0.12270276,-0.10622261,-0.31424454,-0.31695297,0.22792356,0.18258801,-0.10261462,0.22273481,-0.597614,-0.38063034,0.11536801,-0.25782272,-0.16281784,-0.18744911,0.21039477,0.8681057,-0.2554565,-0.14638874,0.030417873,0.3752676,-0.22411285,-0.6756765,0.0772888,-0.40358347,0.21565826,-0.053693354,-0.31525177,-0.08103604,0.17507073,-0.49818626,0.026468536,-0.004288316,-0.35394424,-0.027629588,-0.34935522,0.13575046,0.72998303,0.04121271,0.02839623,-0.61329985,-0.40663132,-0.82942486,-0.42414162,0.3595695,0.12899326,-0.10921504,-0.31428257,0.035399266,-0.2660658,-0.08401736,-0.08902439,-0.51081944,0.23684978,0.21985807,0.4507721,-0.06693638,-0.6080616,0.09376123,0.14427564,-0.23216088,-0.5435735,0.4302731,-0.15659308,0.8090552,0.018689612,-0.0102652935,0.034263548,-0.5239087,0.11737045,-0.22312973,-0.14046887,-0.6890567,0.21208885,824 +545,0.26456288,-0.094048806,-0.38489822,-0.201336,-0.39499998,-0.03941519,-0.19102111,0.27843046,0.24737045,0.036578704,-0.09830223,0.0077526057,0.026140882,0.28814578,-0.118386544,-0.62671864,-0.055408407,0.012003235,-0.5314812,0.39520583,-0.6298795,0.36649868,-0.18885568,0.28952566,0.07774838,0.43289924,0.1710699,-0.0035251293,-0.090516046,-0.22765276,-0.3288684,0.077605374,-0.3029758,0.00971601,-0.17153242,-0.22105391,0.18188299,-0.39599594,-0.3174066,-0.65197533,0.28921604,-0.8309213,0.5144924,-0.11362548,-0.19998474,-0.11969836,0.33398032,0.30180326,-0.19400035,-0.027863381,0.13459797,-0.23029126,0.06199571,-0.3425356,-0.18852435,-0.4046637,-0.35136512,-0.07234454,-0.6242625,-0.45432466,-0.23001206,0.2247164,-0.4104066,-0.07238867,-0.025824903,0.378273,-0.39563847,-0.019162608,0.22398376,-0.260297,0.23322645,-0.64101225,-0.033658523,-0.041648217,0.42205566,0.039417513,-0.13313842,0.47325864,0.3723235,0.19646807,0.1796395,-0.23773329,-0.32751727,-0.24427693,-0.12921154,0.5062693,-0.282522,-0.41553682,-0.15428136,0.10113963,0.33158806,0.4763625,-0.040909786,-0.11091236,0.059710737,-0.053773813,-0.27276573,0.62937325,0.5944859,-0.23849304,-0.2702203,0.27683204,0.3374338,0.16550119,-0.30194065,-0.075836696,-0.040309094,-0.4150097,-0.13471007,-0.06285691,-0.06670529,0.49522644,-0.10923082,0.19569795,0.8137515,-0.08274207,0.0781021,-0.019569648,-0.0009947792,-0.13220502,-0.28728753,-0.16548982,0.027872456,-0.5483677,0.10598166,-0.1371018,0.68845123,0.14764546,-0.69762474,0.41199487,-0.4868402,0.09575875,-0.036876738,0.5224041,0.6135484,0.45424774,0.46280384,0.7896581,-0.15082149,0.17279007,0.05985952,-0.48054454,0.16642587,-0.21714756,0.21542752,-0.4818819,0.16503029,0.03911984,0.035584483,0.24986945,0.30931598,-0.52294755,0.025201125,0.31812388,0.84990215,-0.2444567,0.112383604,0.666961,1.2202551,0.8291892,-0.077445254,0.76002485,0.3051514,-0.28430817,0.2264423,-0.33363962,-0.54842097,0.14006473,0.33075544,-0.09992554,0.3453335,-0.09504733,-0.15291645,0.34705082,-0.3688523,-0.10042628,-0.08989755,0.29399422,0.1823362,-0.05886325,-0.46280465,-0.2266821,-0.04416791,-0.02295076,0.15616813,0.23877013,-0.3312036,0.3564434,-0.20584168,1.1169808,0.048140366,0.05619738,0.03165566,0.84391266,0.2897474,0.044657458,0.026997354,0.5119489,0.24284413,0.017782638,-0.6183071,0.25458303,-0.3616722,-0.31329867,-0.16044119,-0.34227034,-0.09273209,0.26278624,-0.362557,-0.09161595,-0.042341504,-0.06899479,0.44668308,-3.0743282,-0.3073294,-0.16609736,0.31020853,-0.19476901,-0.16567813,0.11417641,-0.4314158,0.3204395,0.36253732,0.47528034,-0.6124722,0.3733992,0.5426073,-0.4147523,-0.23607667,-0.6345847,-0.05656327,-0.070023045,0.5909671,0.08975084,-0.18234228,-0.06344142,0.11016374,0.774778,0.1617383,0.20204762,0.27640566,0.39188352,-0.03300155,0.46016413,-0.021281974,0.5459746,-0.15632269,-0.12434263,0.14734808,-0.29901728,0.057501633,-0.19079255,0.042598326,0.6171649,-0.38562045,-0.851322,-0.50393283,-0.15002914,0.9817931,-0.21301726,-0.49780387,0.2824314,-0.3134567,-0.15221307,-0.02419793,0.6857749,-0.03370797,0.054163866,-0.5365738,0.1889899,-0.11531271,0.055646658,0.055629082,-0.045642648,-0.3136707,0.6099316,-0.08530811,0.5426045,0.21657619,0.2136413,-0.24973401,-0.24158593,0.011280711,0.48850876,0.3709154,-0.060148437,-0.1357822,-0.18493883,0.10126425,-0.4200799,0.06922091,0.617136,0.7532953,-0.06877019,0.104790054,0.24051692,-0.21150514,0.08455961,-0.06893768,-0.16115102,-0.034464534,0.12641051,0.42620426,0.667564,-0.16799705,0.5556753,-0.09347349,0.22679469,-0.11844873,-0.4831397,0.6571523,0.42953926,-0.17813058,-0.073746376,0.43802664,0.48314857,-0.4346807,0.39837477,-0.73752266,-0.05076364,0.6517969,-0.17793755,-0.5068606,0.161151,-0.18206705,0.04613066,-0.79256666,0.31164727,-0.2705287,-0.6153761,-0.45581612,-0.19854961,-3.82605,0.14995384,-0.29726171,-0.1207494,-0.2425575,-0.079962626,0.39384627,-0.5899102,-0.39347878,0.12849036,0.29000258,0.5619908,-0.04732986,0.025301496,-0.24285449,-0.07975495,-0.16638036,0.16157648,-0.034466077,0.32637683,-0.21413799,-0.2877386,0.005121265,0.016827762,-0.6554485,0.09674632,-0.52645814,-0.33879218,-0.08566247,-0.6322978,-0.21982767,0.681982,-0.17729579,-0.007049898,-0.29627112,0.11314229,-0.24904697,0.20352308,0.040744107,0.16992326,0.0807256,-0.023508446,0.33681816,-0.3838609,0.47498825,-0.17685576,0.38793725,-0.027306322,0.0502452,0.11588515,0.49553066,0.58588165,-0.05660961,0.9684516,0.35535696,-0.23958251,0.29306173,-0.39883962,-0.24976222,-0.514996,-0.47087127,-0.0654278,-0.28577426,-0.43727764,-0.02929874,-0.4032713,-0.7504143,0.5692101,-0.027700245,0.3685351,0.036793254,0.19929631,0.45767015,-0.07227407,-0.017166773,0.055106454,-0.20554855,-0.58861834,-0.07065795,-0.56043094,-0.43475476,0.02660687,0.6458513,-0.2671962,-0.07983007,-0.049296822,-0.32744098,-0.15979664,0.043273013,0.24801548,0.26725587,0.3023328,-0.16483834,-0.61645615,0.22878888,-0.07298692,-0.09802328,-0.6286809,0.114646144,0.69552505,-0.661347,0.5660992,0.36018762,0.18341373,-0.16692717,-0.50343984,-0.19180216,0.08207046,-0.06680905,0.5238694,0.11338683,-0.90625,0.46395922,0.27122006,-0.40573612,-0.52856475,0.35291794,-0.07178839,-0.28612018,-0.09786794,0.2385938,0.312079,-0.14235333,-0.16092917,0.18757315,-0.37291104,0.2765669,0.10854457,-0.0017905576,0.4046872,-0.08348232,-0.2691626,-0.67818785,-0.07367643,-0.5452683,-0.2327341,0.256251,-0.012265633,0.17408514,0.118726805,-0.041668184,0.2760746,-0.22915266,0.1049241,0.075410075,-0.35953856,0.14804046,0.3824857,0.26242667,-0.46654558,0.55230874,0.010040483,-0.11459862,0.090483405,0.014077987,0.35171887,0.016290631,0.48384094,-0.1882064,-0.20028113,0.28161082,0.8730081,0.23893237,0.49670783,0.16137931,-0.050450247,0.40308222,-0.07970213,0.04566001,0.16246569,-0.43972754,-0.069178045,-0.10338549,0.19191687,0.38876635,0.3203636,0.2368754,0.07542569,-0.17431866,0.06627693,0.2099859,-0.18033941,-1.1845338,0.5384029,0.36670092,0.82389647,0.16490558,0.25083202,-0.4181325,0.9036845,-0.18510517,0.011964236,0.50522465,0.15641816,-0.37125254,0.5990478,-0.5680363,0.5814268,-0.0129281515,-0.17475359,0.1162865,0.21214499,0.35144708,0.73956805,-0.28260657,-0.0014620764,0.07592567,-0.2934936,-0.09535759,-0.21578583,-0.06872082,-0.3652064,-0.24764648,0.562212,0.32995376,0.13899052,-0.06561604,-0.09148437,0.10532235,-0.078968406,0.11628647,-0.083828755,-0.050976098,-0.01913869,-0.5811726,-0.24883799,0.4794846,0.08395266,0.19978453,-0.24638627,-0.16084024,0.11746757,-0.24345589,-0.085454784,0.062157035,-0.42260653,0.17440888,-0.052508175,-0.5813318,0.7286145,-0.3110283,0.20814545,0.15140009,0.046982165,0.057369355,0.41208765,0.11564968,0.77383167,-0.2553658,-0.18727013,-0.4508266,-0.0911202,0.20122324,-0.22746423,-0.014743024,-0.36317247,-0.044760913,-0.5084452,0.5562153,-0.26972327,-0.28169027,0.11956209,-0.20817472,0.0546983,0.48071003,-0.17744586,-0.22000872,-0.037355542,-0.048946075,-0.33186302,-0.13917424,-0.25499535,0.2621234,0.23381482,0.04739174,-0.12300069,-0.29659918,-0.12555881,0.57074773,-0.060719777,0.47456858,0.09634558,0.03909105,0.12675762,-0.16046503,0.14572461,0.51505435,0.04974968,0.07197941,-0.33588475,-0.340199,-0.31967798,-0.014970609,0.0018597314,0.15688954,0.09135695,-0.2195176,0.8108932,-0.09605602,1.1666006,-0.041830268,-0.4022339,0.10017002,0.609209,-0.038567003,0.1590474,-0.34203365,1.0148252,0.51303345,-0.108114004,-0.1060635,-0.59412086,0.026018424,0.4208786,-0.3623279,-0.008210952,-0.03701232,-0.5492988,-0.2801798,0.30148688,0.12986767,0.19639824,0.045670662,0.025691016,0.017087204,0.18580341,0.36647764,-0.5172958,-0.109937154,0.31695843,0.2531415,0.0067223865,0.099583305,-0.45451075,0.35442224,-0.53019845,0.121796384,-0.4977748,0.16033934,-0.28549498,-0.38446555,0.12777945,-0.25301355,0.3154955,-0.104818724,-0.30573294,-0.044376995,0.39866427,-0.078510486,0.1455846,0.52401894,-0.23272948,-0.06597846,0.014557698,0.66857624,1.1915867,-0.33035257,-0.008076931,0.21193543,-0.45972368,-0.629168,0.35323578,-0.2218399,-0.09772805,-0.01969458,-0.23495401,-0.46533418,0.25196072,0.118720844,0.06330527,-0.023272863,-0.40835205,-0.42076287,0.22660756,-0.3624566,-0.18566588,-0.19198617,0.45450285,0.6951958,-0.26356,-0.32986578,-0.023024108,0.45254332,-0.092851765,-0.46981582,0.16368881,0.0141090285,0.45125332,0.18629102,-0.3419653,-0.07317476,0.16873913,-0.4375101,0.14117248,0.21221802,-0.42186883,0.25343376,-0.16180232,-0.069054075,0.8784785,-0.25178128,0.026920367,-0.7623077,-0.61785,-0.83503217,-0.5728192,0.07177029,0.27825305,-0.038083673,-0.39865038,0.06967565,0.029135272,-0.11538742,0.013615553,-0.48796892,0.34190598,0.019824479,0.5613101,-0.42261174,-0.7952069,0.08396018,0.17805025,-0.12573576,-0.7130924,0.6763216,-0.15652145,0.82412225,0.14519127,-0.044097725,-0.024872204,-0.20167623,0.09746138,-0.4145465,-0.41046086,-0.8119087,0.070621885,825 +546,0.5750419,-0.29822773,-0.60871166,-0.19025686,-0.26031294,0.36867192,-0.21635354,0.166295,0.04942525,-0.64775664,-0.19790909,-0.30010775,0.068375506,0.42379984,-0.17670664,-0.6106411,-0.10300609,0.062769614,-0.59182113,0.3691419,-0.54216987,0.45895866,0.26644292,0.3342118,0.070514895,0.27470186,0.29738092,-0.12975176,-0.28917694,-0.058200717,-0.19319975,0.08344994,-0.79319376,0.10945574,-0.12211677,-0.41954878,-0.077479824,-0.3783412,-0.1318773,-0.70681137,0.24693976,-0.9270402,0.5016981,-0.028948503,-0.3244287,0.15738957,-0.12938948,0.36997846,-0.32766768,0.19711907,0.21912707,-0.2784643,-0.041242864,-0.28731292,-0.26955536,-0.60798347,-0.6142572,0.19194032,-0.60434824,-0.15803719,-0.15168118,0.117321946,-0.36024502,0.014708562,-0.19308138,0.21643983,-0.43030596,-0.14412607,0.28521737,-0.24249192,0.17494099,-0.39903593,-0.17568919,-0.16951323,0.26360753,-0.20136857,-0.30060938,0.07279261,0.37714416,0.5895626,0.053055055,-0.25215793,-0.28550124,0.025829608,0.21314432,0.57251275,0.061438207,-0.33399242,-0.3217413,-0.0635338,0.29299545,0.18671604,0.15506196,-0.44746128,0.016563343,0.071074,-0.29957813,0.28904286,0.49121195,-0.41320106,-0.2610692,0.45910594,0.5627354,0.08574451,-0.1223654,0.21244867,0.004616114,-0.47672424,-0.19216989,0.4078152,0.07718444,0.75298256,-0.21560873,0.22504722,0.6995286,-0.28120908,0.12651984,-0.21845408,-0.16621804,-0.18736658,-0.07787321,-0.20493713,0.29714224,-0.5196123,0.039922256,-0.42441615,0.80469745,0.22284043,-0.8161483,0.51267207,-0.50826526,0.16736913,-0.02789934,0.69668776,0.72388464,0.38254592,0.15540393,0.7340927,-0.6055278,0.12556502,-0.08844789,-0.4585702,0.037481673,-0.206898,0.008945365,-0.34547406,0.08562113,0.011754138,-0.053854108,-0.10802819,0.50256664,-0.4177301,0.026107516,-0.038463928,0.52895766,-0.45707455,-0.119887926,0.94860893,0.8155147,1.0224702,0.16729793,1.3994291,0.55574435,-0.13640778,0.046856754,-0.26806554,-0.56364524,0.1790197,0.30241475,0.32816252,0.5500647,0.08600492,0.0832487,0.5079642,-0.15489967,0.16583788,-0.11196073,0.036935575,-0.04345313,-0.048139714,-0.4766454,-0.15513454,0.082960464,0.026824066,0.0034573716,0.2965527,-0.1869032,0.61862266,0.21825825,1.5465573,-0.07196156,0.09894601,-0.110824145,0.23182826,0.17921911,-0.26903418,0.014741672,0.28054744,0.4501064,0.013294952,-0.5588869,-0.053883668,-0.15979458,-0.48368463,-0.22239871,-0.311989,-0.03589711,-0.3021448,-0.49435928,0.0017086182,0.1787934,-0.31943315,0.47551933,-2.247286,-0.32949552,-0.19864771,0.37891313,-0.27501518,-0.47289854,-0.24709003,-0.49214977,0.20124719,0.46993423,0.29009777,-0.7310275,0.4008473,0.3059903,-0.26436195,-0.17676386,-0.7471256,0.025962962,-0.194497,0.35909352,-0.09973999,-0.097348996,-0.1168886,0.14662826,0.6371011,-0.19754817,-0.09507696,0.07979105,0.56883895,0.19774994,0.6118221,0.25566167,0.56226504,-0.23441179,-0.059362598,0.47514644,-0.38297114,0.48782128,0.16381046,0.18400894,0.33982256,-0.5726407,-0.7850277,-0.70619136,-0.6045595,1.1791676,-0.38315335,-0.34160572,0.0077290833,0.06653648,-0.43760258,-0.15379985,0.42927,-0.08927912,0.01795071,-0.7795878,-0.121327765,0.09669944,0.13255328,-0.09693503,0.2500553,-0.21850537,0.6366763,-0.15431388,0.49768332,0.44431594,0.22077908,0.019515038,-0.3978929,0.10660461,1.0945708,0.33987042,0.1407236,-0.30852884,-0.29277235,-0.26618472,-0.13333875,0.19508564,0.42417237,0.87636167,0.1313335,0.09929048,0.38784027,-0.044758167,0.08048049,-0.124767914,-0.23518653,-0.07844807,0.0054361564,0.6056629,0.54358375,-0.14103104,0.5022197,-0.33694023,0.16083154,-0.16922936,-0.49830148,0.56746036,0.9087129,-0.073370114,-0.252029,0.4279916,0.4099397,-0.6219015,0.32641038,-0.6671253,-0.17217363,0.6572947,-0.16435345,-0.39181545,0.36145976,-0.34153876,0.2124678,-1.0441844,0.28582805,-0.018559124,-0.4241707,-0.58459777,-0.2922028,-3.6115935,0.2455362,-0.052555975,-0.24628446,-0.081953086,-0.34586987,0.36706644,-0.5080338,-0.5601137,0.017428463,-0.05240423,0.59512967,-0.0035633552,0.23295236,-0.43927917,-0.21570103,-0.32845113,0.21558587,0.15714686,0.22445562,-0.14278044,-0.3456378,0.074457996,-0.44784102,-0.3899184,0.04729157,-0.7030431,-0.713968,-0.18537886,-0.29784232,-0.28998443,0.7273303,-0.31767997,-0.094020225,-0.12559913,-0.120225064,-0.24421656,0.3577045,0.1544548,0.18865551,0.06770874,0.04739225,-0.14416255,-0.459436,0.19625223,0.16170917,0.14740571,0.459503,-0.26855007,0.28941676,0.5785453,0.6546427,-0.003290866,0.6837403,0.23914245,-0.0167091,0.3220878,-0.2893147,-0.25442615,-0.8404929,-0.36414686,-0.31296635,-0.4554586,-0.586996,-0.08912403,-0.29077703,-0.84467465,0.50802934,0.05479685,0.1347781,-0.12778881,0.46530262,0.4134958,-0.17582467,0.024528628,-0.12068597,-0.17417637,-0.5128843,-0.5382319,-0.6888893,-0.7547099,0.17957364,0.97627145,0.018965257,-0.30189732,-0.11338271,-0.30114082,0.18047953,0.16113259,0.18930832,0.22250427,0.3912678,-0.12255786,-0.68923366,0.45858398,-0.11274673,-0.27269465,-0.5175508,0.0023183057,0.8609253,-0.6546687,0.4561483,0.41255498,0.13818641,0.11178122,-0.43014708,-0.3127604,0.10840057,-0.2927794,0.484613,0.09099481,-0.635677,0.45213398,0.30427322,-0.12454205,-0.6442503,0.5356382,0.013133368,-0.023914158,0.14025046,0.31782976,-0.022389691,-0.03385038,-0.27188325,0.15035649,-0.5955192,0.123063885,0.5675937,0.10094959,0.3187508,-0.04496795,-0.24085209,-0.6512531,-0.09435543,-0.5658378,-0.21097258,0.0891575,0.043895762,0.24054368,-0.011246145,0.10646547,0.45656252,-0.37680846,0.0929907,-0.03694988,-0.15482426,0.29082686,0.42241123,0.24737807,-0.5486565,0.721846,0.016060421,0.1611789,-0.12772289,0.04729644,0.45149687,0.44433194,0.26733842,0.03156359,-0.1804239,0.15887675,0.658924,0.31625122,0.6318847,0.4085628,-0.26143977,0.32824248,0.3545613,0.34381086,-0.025245955,-0.16323288,-0.0049602687,0.048489183,0.19471373,0.38321605,-0.036238294,0.40892595,-0.19471721,-0.078117184,0.21547171,0.045341026,-0.11580556,-1.0010196,0.24978288,0.3030555,0.52040124,0.36725992,-0.07110847,0.17310672,0.34320834,-0.46998248,0.05727758,0.281,-0.029704938,-0.56831425,0.51907206,-0.6471229,0.43247604,-0.31040397,0.029831333,-0.016029255,0.12303317,0.5205908,0.97706306,-0.120241724,0.08223407,-0.12490296,-0.13931137,0.15274045,-0.5019459,0.047664557,-0.5140146,-0.3009119,0.7747431,0.3498159,0.41572037,-0.18248422,-0.11146567,0.07976328,-0.1044897,0.18042825,-0.018176079,0.13031492,0.03351854,-0.6448327,-0.37756613,0.5702029,-0.009329625,0.14909445,0.16955592,-0.5656331,0.3535706,-0.107425995,-0.004268161,0.0037521187,-0.7052166,-0.0735193,-0.45061466,-0.69381917,0.27214888,-0.32485124,0.2895305,0.2563192,-0.05358002,-0.3462815,0.17820574,0.21516253,0.8964841,0.0457013,-0.27607316,-0.41631746,0.16842867,0.5211951,-0.39826038,-0.023596676,-0.18075489,0.17373517,-0.54660165,0.4794646,-0.16720673,-0.3401176,0.033406306,-0.02745172,-0.062008176,0.5301739,-0.3090163,-0.11235608,0.19975519,-0.013328178,-0.18016113,-0.07923615,-0.31525534,0.28511852,-0.015897984,-0.09841783,0.18358564,0.013595939,0.049069416,0.3923953,0.22897355,0.29310983,0.37634993,-0.08301812,-0.420234,-0.05207434,0.016928937,0.41970465,0.22329584,-0.31756374,-0.26988187,-0.37958026,-0.22793119,0.26078835,-0.1242715,0.23778686,0.15137215,-0.5406395,0.811053,0.045074265,1.2549216,0.10990076,-0.42810312,0.07134843,0.49776655,0.06526653,-0.054962687,-0.36181682,0.8512272,0.49937662,-0.14838502,-0.20603666,-0.3930964,-0.38084576,0.18182942,-0.37807587,-0.1238125,-0.08644957,-0.64679146,-0.21798816,0.061920803,0.17988454,0.095685445,-0.057172365,0.22861668,0.18064702,-0.009143336,0.4593387,-0.50244755,-0.14964354,0.30401167,0.17313763,-0.13493581,0.08698956,-0.27510732,0.5387572,-0.69411033,0.13092084,-0.43460554,0.088726334,0.16561034,-0.26192316,0.22755113,0.144102,0.28993586,-0.3491261,-0.44247907,-0.36021355,0.6909076,0.23987664,0.39541906,0.6664166,-0.31263193,-0.1429117,0.21224162,0.41716224,1.4865507,-0.11937915,0.14872561,0.45363766,-0.41159248,-0.6198722,0.3467397,-0.3899261,0.36550993,-0.15109906,-0.3978315,-0.44335794,0.28225964,0.14089432,-0.030801306,0.15753531,-0.41304228,-0.28323954,0.5217764,-0.37037155,-0.35224232,-0.33504167,0.3547239,0.65590245,-0.44083112,-0.29412958,-0.09861655,0.23525958,-0.46698967,-0.39847192,-0.0027113557,-0.26225665,0.42535204,0.14301082,-0.24541105,0.13585906,0.2587239,-0.50430006,0.096812606,0.3229062,-0.43885168,0.07300043,-0.28280026,-0.13459526,1.0875059,-0.028201384,0.052350406,-0.7238115,-0.588733,-1.099419,-0.42643887,0.33115053,0.083303936,0.11377888,-0.4502035,0.019546509,-0.025473831,0.01598519,0.10904855,-0.52438056,0.41481823,0.23412177,0.5145727,0.013677342,-0.9033485,-0.029706508,0.08428347,-0.35164514,-0.5364547,0.52962077,-0.14427693,0.6359124,0.14856361,0.2318542,0.12780915,-0.57247955,0.3336206,-0.30532032,-0.06377115,-0.80293983,0.051284622,831 +547,0.2984393,-0.1756135,-0.39622456,-0.07861288,-0.33287245,0.048629384,-0.11746575,0.53910244,0.133103,-0.12167524,-0.26533037,0.008931518,-0.044684935,0.18941699,-0.15003228,-0.5459176,-0.13029878,0.08461936,-0.5374476,0.48658818,-0.4042274,0.3604657,0.067552775,0.32060233,0.011016356,0.28135937,0.1052347,-0.1286132,0.011391683,-0.083868615,-0.07935774,0.3221884,-0.6501726,0.30697188,-0.2862216,-0.25912994,0.072102346,-0.30972433,-0.18410508,-0.6792825,-0.021933433,-0.74328524,0.52645713,-0.13260016,-0.27060756,-0.1663324,0.06853547,0.2828166,-0.32905802,0.05226994,0.32503992,-0.116891675,-0.11184544,-0.20199236,0.19296823,-0.57065266,-0.46020684,-0.11834236,-0.500894,-0.1950382,-0.11281172,0.22191034,-0.30964836,-0.10377534,-0.21851282,0.276589,-0.4664313,0.084181,0.16143677,-0.28274742,0.2161581,-0.5936541,0.08349131,-0.13996415,0.39775792,-0.21282569,-0.16220129,0.3454278,0.33094186,0.22642152,0.1761717,-0.21815915,-0.07559283,-0.13360196,-0.04548881,0.46157694,-0.27238908,-0.3871488,-0.14583956,0.069270544,0.3455647,0.260586,-0.00018777166,-0.07381212,-0.10469792,-0.10838453,-0.016211884,0.28605705,0.3939375,-0.19675295,-0.29981628,0.30562305,0.47313255,0.3241697,-0.120195605,0.026928868,0.026927412,-0.5021344,-0.1819537,0.060339026,-0.084887795,0.506518,-0.07773751,0.18366806,0.83763885,-0.03428969,-0.03829791,0.15974712,0.09820449,-0.13201019,-0.22754773,-0.07284596,0.17911656,-0.6014813,0.099508025,-0.18022501,0.7510673,0.11275605,-0.73657596,0.29569364,-0.4708257,0.012205013,-0.03671,0.58488506,0.63400507,0.5738235,0.14286439,0.64546216,-0.2916073,0.1717193,0.021854391,-0.41536543,0.22154272,-0.19748116,-0.17064145,-0.48731306,0.029063387,-0.13758825,0.08840186,-0.006442004,0.25873625,-0.6454681,-0.117480434,0.24719082,0.61812145,-0.33963603,-0.14491014,0.65265083,0.96574974,0.74956214,-0.022070233,1.1184936,0.26925737,-0.11736141,0.13203792,-0.15144245,-0.61816174,0.19353321,0.3914698,-0.4214597,0.3211389,-0.039738897,-0.15431438,0.23383379,-0.34599993,-0.038383156,-0.006031326,0.3071708,-0.08808967,-0.089826986,-0.5056471,-0.24382648,0.054036915,-0.03449545,0.015460538,0.27274886,-0.16283607,0.36610943,0.20860727,1.2294226,-0.084055245,0.07622779,0.14545669,0.453662,0.26296636,-0.1743813,-0.13865077,0.47641498,0.34609693,0.07230313,-0.44730085,0.27905807,-0.33331585,-0.47012252,-0.13297233,-0.23680855,-0.19663107,0.13522372,-0.49127647,-0.2418369,-0.013748293,-0.18008618,0.48535705,-2.7627237,-0.08523713,0.011136317,0.38107055,-0.39698347,-0.32690287,-0.04496755,-0.4796885,0.17066832,0.30710894,0.47695494,-0.66046387,0.34003243,0.5068416,-0.3484622,-0.20376517,-0.6096626,-0.08824941,0.116579376,0.3862402,0.057195127,-0.17654392,-0.1831689,0.07383585,0.54393303,-0.09573369,0.23021217,0.4546018,0.30257133,0.036762152,0.37212324,-0.13467373,0.58647096,-0.22133109,-0.12913844,0.33893082,-0.24689195,0.29669207,-0.07609987,0.021712754,0.42553425,-0.44849652,-0.83760566,-0.5672471,-0.32047004,1.1284636,-0.35113314,-0.2798245,0.20155859,-0.0096754,-0.09887284,0.080936074,0.4997771,-0.0941427,0.25294963,-0.61630577,-0.029798716,-0.054712545,0.23988621,-0.018341666,-0.121903196,-0.4167533,0.7015132,-0.109607115,0.672613,0.3271748,0.18361568,-0.10466128,-0.4683917,0.018181765,0.8393641,0.42768663,0.093662865,-0.07176137,-0.13163461,-0.18188645,-0.037237473,-0.09168022,0.6593324,0.8191093,-0.04577086,0.16429015,0.26159334,0.0597074,0.10899566,-0.14879659,-0.2503505,-0.021860838,0.20968713,0.44647232,0.656877,-0.14142497,0.4511077,-0.14685127,0.42029205,0.008936469,-0.5512969,0.48726076,0.59679097,-0.23944166,-0.009047462,0.5611342,0.42691606,-0.2988418,0.41558522,-0.5648777,-0.33366504,0.6294737,-0.20610237,-0.58832854,0.2660706,-0.19533077,0.21916382,-0.87255573,0.5500552,-0.3372552,-0.63363427,-0.4071153,-0.041884538,-2.9195197,0.17876564,-0.107301846,-0.034365408,-0.33175778,-0.121999875,0.33302847,-0.7243312,-0.47941837,0.109277174,0.23678944,0.4743903,-0.18974717,-0.02279061,-0.26765132,-0.32749707,0.016046375,0.3112836,0.2381197,0.12069036,-0.23247899,-0.3961144,-0.185201,-0.02846747,-0.45613012,0.17598902,-0.57602805,-0.54823035,-0.06848539,-0.6412843,-0.19776185,0.66781765,-0.4946101,-0.032666445,-0.0912345,0.09122448,-0.15714097,0.11915161,0.07380003,0.11029505,0.02743716,-0.02866805,0.06631557,-0.4320335,0.47957006,0.061781246,0.46783704,0.16027446,-0.14149041,0.17937624,0.5858812,0.5112672,-0.2632638,1.0089821,0.39654773,-0.09273858,0.27952698,-0.15213516,-0.46634492,-0.5778103,-0.27379727,-0.034341935,-0.41342273,-0.30027634,0.16721661,-0.22700465,-0.90640974,0.6505814,-0.12922032,0.25990036,-0.071853355,0.22520892,0.46846482,-0.3028913,-0.06402694,-0.15912782,-0.15376744,-0.47026137,-0.3619466,-0.6256184,-0.58340365,-0.058581613,1.053294,-0.32087472,0.14183986,-0.0660971,-0.15431046,0.012410253,-0.08089811,0.09847156,0.25217757,0.4095734,-0.1340411,-0.70274895,0.4365878,0.008344201,-0.10882559,-0.3017097,0.13322425,0.59265804,-0.85854006,0.4485146,0.32827392,-0.08229338,-0.114718415,-0.62131876,-0.17139156,-0.0783325,-0.14837718,0.43975157,0.09393733,-0.7188751,0.4044488,0.26838723,-0.42913535,-0.6283817,0.32553855,-0.08738736,-0.27857444,-0.07680964,0.4064233,-0.16748571,-0.10118955,-0.07509143,0.19705479,-0.40263897,0.3023563,0.14061679,-0.17141683,0.27706033,-0.08433979,-0.24469385,-0.7012953,0.12114116,-0.47794715,-0.44641274,0.40092188,-0.040479742,-0.1715655,0.22924419,0.1611434,0.52730614,-0.36765447,0.06791368,0.08732353,-0.4710199,0.3478752,0.48153347,0.4719832,-0.24934898,0.351667,0.18215044,-0.11607201,-0.023720989,0.11546769,0.4274795,-0.033493076,0.35249203,-0.16431081,-0.09751887,0.40702176,0.8392144,0.19001415,0.4667254,-0.11062514,-0.038627766,0.14897676,-0.027014365,0.15507312,0.06378282,-0.49971324,0.08462096,-0.13426657,0.12028693,0.559785,0.271215,0.20270285,-0.07824813,-0.15293278,0.08196725,0.22933935,0.06287301,-0.9935518,0.38137978,0.28650835,0.80198765,0.2956275,0.24794431,-0.15633012,0.6511759,-0.21778557,0.19377466,0.36229524,0.011041471,-0.4649726,0.7183806,-0.60373497,0.38006797,-0.14069149,-0.11448865,0.20936486,-0.11531949,0.31415886,0.888783,-0.094839744,0.028928211,-0.0686778,-0.14616798,-0.081510715,-0.28995845,0.13791287,-0.45120367,-0.29129067,0.72616756,0.47554326,0.25625786,-0.23019075,0.02874845,0.0339874,-0.2473966,0.3364711,-0.062225766,0.08920359,0.12333019,-0.3589441,-0.15944871,0.6397571,-0.10463122,0.0035712847,-0.18614554,-0.24941985,0.082504265,-0.19635801,0.107569054,-0.02053387,-0.6591961,0.21525875,-0.43144158,-0.4420709,0.466661,-0.2800513,0.030355345,0.15626194,-0.014541997,-0.19964597,0.18308271,0.20695274,0.8083456,0.027857069,-0.24816515,-0.37602434,0.18528663,0.20023964,-0.27470708,-0.08135854,-0.4241535,0.05376992,-0.54876405,0.4041479,-0.106157884,-0.38410503,0.12484169,-0.16336654,-0.106132865,0.4308943,0.1121488,-0.18665901,0.029439876,0.062404666,-0.34369007,0.060185272,-0.37448454,0.14197826,0.42955306,-0.11318479,-0.1355016,-0.2634357,-0.22049227,0.332488,0.10611105,0.40539193,0.2828645,-0.10617982,-0.22905599,0.15098463,0.1946788,0.41214702,0.14763077,0.23053622,-0.40913597,-0.30713496,-0.25889307,0.024124375,-0.19394,0.30290365,0.057147987,-0.18863587,0.9330917,0.0075520277,1.1433051,-0.014966512,-0.3186362,-0.04419258,0.5816644,-0.058297336,-0.01625731,-0.5087758,1.1612726,0.5959393,-0.12592037,0.020032773,-0.15105732,-0.14993593,0.33218724,-0.26001135,-0.16753265,-0.051313873,-0.62496674,-0.37772247,0.28026634,0.3098761,0.088306464,0.042635374,-0.24693444,0.10048877,0.055273313,0.28539824,-0.64088964,-0.08541255,0.1485032,0.26144785,-0.14743997,0.29537752,-0.36140898,0.4213079,-0.6760003,0.20895168,-0.49984667,0.1626592,-0.20581278,-0.4272489,0.082968675,-0.06417889,0.3536859,-0.28756624,-0.43653783,-0.09159192,0.37363175,-0.036536675,0.17989305,0.60662776,-0.30741644,0.0319865,0.022574708,0.44027105,1.0386782,-0.3789893,-0.1069916,0.39910057,-0.41620302,-0.55117524,0.32767722,-0.31897974,0.044312894,-0.21965787,-0.53168267,-0.31977564,0.31227964,0.23463829,0.11376375,-0.03590141,-0.6033576,0.17550536,0.22439536,-0.34766415,-0.2467568,-0.19230977,0.4569504,0.7819963,-0.40429837,-0.32898983,0.05481894,0.20135471,-0.25985244,-0.4641052,-0.0003061848,-0.24845923,0.2032466,0.0651868,-0.36518398,-0.118029065,0.17844346,-0.3327836,0.1164257,0.36034793,-0.32231712,0.0698769,-0.16888188,0.057060055,0.9123985,-0.121851265,-0.22384726,-0.5400362,-0.47341946,-0.8212133,-0.6066457,0.19192635,0.4595193,0.027298715,-0.53698236,0.036380704,-0.21626337,-0.14962511,-0.06882871,-0.3848035,0.4334186,0.21938632,0.5822622,-0.2960098,-0.9505054,0.3410419,0.23570368,-0.026738405,-0.6519822,0.54930526,-0.18388632,0.86008114,0.07139041,-0.107967176,0.12987275,-0.5211711,0.047170784,-0.35946897,0.047328282,-0.75691706,0.083333746,840 +548,0.34975475,-0.22674516,-0.39626282,-0.24863236,-0.2627245,-0.053471368,-0.25411835,0.19328542,0.23885192,-0.13553713,-0.24811587,-0.08042806,0.13736019,0.26515827,-0.09550192,-0.7078742,-0.09208394,0.22989933,-0.6959113,0.42429787,-0.6760629,0.292168,0.03555998,0.2990879,0.12052118,0.29069838,0.22594404,-0.1165419,0.09526192,-0.15982284,0.010469605,0.14911185,-0.7166067,0.066590555,-0.17039366,-0.23821403,0.014256917,-0.47346836,-0.46805236,-0.6373543,0.14997016,-0.88844746,0.49704316,-0.021603107,-0.12897013,-0.08990198,0.2520407,0.43109486,-0.35357144,0.05608358,0.4032784,-0.20739777,-0.20087235,-0.21716501,0.067559384,-0.30332732,-0.52976483,-0.059782572,-0.46028748,-0.27465603,-0.33867812,0.18212035,-0.3813611,0.01833162,-0.12530683,0.26225266,-0.35914746,-0.08198314,0.34273225,-0.1400801,0.23230794,-0.43658036,0.023130378,-0.065880455,0.5424474,0.03030507,-0.15290864,0.4290401,0.20478167,0.33331332,0.22216006,-0.25727466,-0.23770583,-0.09746931,0.34615198,0.44891828,-0.096133746,-0.22975771,-0.18433268,0.034210462,0.21457566,0.3587924,-0.04751816,-0.1722609,0.0075907707,0.08005546,-0.2938971,0.6982853,0.61984575,-0.15287654,-0.398542,0.19404839,0.46298388,0.36339656,-0.28630018,0.1181373,0.035771172,-0.5417181,-0.27329478,0.14207171,-0.092084065,0.30594757,-0.1248647,0.13154764,0.9140838,-0.15265611,0.07825269,0.06002112,-0.02118671,-0.06520198,-0.27647287,-0.23895362,0.101864114,-0.62990487,0.06365997,-0.29834244,0.7677407,0.16357425,-0.79027134,0.4157309,-0.68015635,0.16415802,-0.2594865,0.5911616,0.79652584,0.30948862,0.42913648,0.7607016,-0.33946353,0.22883447,0.0578556,-0.50016534,0.27789882,-0.39961675,0.17125906,-0.47078636,-0.056207053,-0.19883971,0.1228831,0.105551936,0.22321616,-0.46926847,-0.13827439,0.30375347,0.7252974,-0.28479964,0.05733818,0.59882516,1.1518576,0.9914795,0.056447882,1.1694946,0.27517888,-0.30364576,0.20672128,-0.40587875,-0.77863556,0.16002907,0.26156574,0.090175286,0.18849938,0.018061187,-0.10852985,0.31598404,-0.5756551,0.10528757,0.062476534,0.27863234,0.15356314,-0.18860455,-0.29486355,-0.14187196,-0.010513672,-0.016229741,0.04750705,0.27967563,-0.23486625,0.27724606,-0.034985967,1.2063645,-0.023561606,-0.0863896,-0.030015588,0.61891586,0.2989168,-0.21155831,-0.019415362,0.34098002,0.53688544,-0.060824487,-0.6722608,0.2400559,-0.25825068,-0.13093266,-0.20888352,-0.38918084,-0.083606504,0.17189805,-0.28376383,-0.1227864,-0.025230613,-0.15796545,0.41566485,-2.8178253,-0.33178976,-0.06240889,0.29252443,-0.17951839,-0.120618835,-0.059952457,-0.55554265,0.26849523,0.20572019,0.46482,-0.51586854,0.6878744,0.58283013,-0.60564697,-0.10050491,-0.7053011,-0.20562348,-0.08466736,0.44254133,0.11770938,-0.006383828,-0.12073357,0.26813096,0.57722104,0.1595234,0.042292867,0.43046245,0.3806841,0.029289028,0.79303664,0.015694499,0.53058237,-0.19593276,-0.06369286,0.25481766,-0.23771867,0.24837868,-0.19796656,0.049209844,0.562017,-0.37070075,-0.9202948,-0.53433144,-0.35404631,1.0466621,-0.34629628,-0.35536534,0.17998013,-0.30432037,-0.17333409,0.04064989,0.6406559,-0.049389694,-0.020396262,-0.69322246,-0.0010409866,-0.04161573,0.11724067,0.067327246,-0.10799213,-0.3500123,0.7769795,-0.042899925,0.5425977,0.06606283,0.2343167,-0.11227658,-0.30759892,0.21995445,0.71188694,0.25885004,-0.018902982,-0.2587994,-0.2949891,-0.061711468,-0.14270104,-0.10280234,0.56788164,0.661308,-0.17486887,0.20937347,0.33939457,-0.190461,0.040553506,-0.22005966,-0.2581921,-0.0075641614,-0.10307651,0.47768456,0.7768038,-0.110980324,0.45902878,-0.13189271,0.15596625,0.0128729,-0.57004684,0.6018689,0.45925173,-0.037675355,-0.020612244,0.4028218,0.4455161,-0.35607773,0.45257786,-0.5030491,-0.12983547,0.52255446,-0.123750135,-0.36001635,0.19878021,-0.3544221,0.020751502,-0.7616802,0.2921935,-0.3873096,-0.30844292,-0.47143427,-0.0883801,-3.5530894,0.18368033,-0.17991434,-0.07234822,-0.25002646,0.03207165,0.4141467,-0.46718934,-0.52496517,0.21263789,0.22993395,0.67606026,-0.025778452,0.06856399,-0.32342258,-0.08393324,-0.37447223,0.23181336,0.11520551,0.29031834,-0.11076561,-0.29894224,-0.01592234,-0.098703615,-0.4953471,0.14636402,-0.48381487,-0.4318853,-0.04782877,-0.36599392,-0.30489853,0.6530495,-0.3104945,0.0075302697,-0.18732846,0.059250195,-0.26402968,0.31790754,0.11491076,0.16198611,0.06865833,-0.026866585,0.030927852,-0.3649848,0.5539005,-0.09059971,0.40756825,-0.013098495,0.15205672,0.045291435,0.4806432,0.51723385,-0.24153973,0.943686,0.42824206,-0.14192365,0.16916384,-0.3051311,-0.2769212,-0.466463,-0.21210393,-0.16171598,-0.36443806,-0.46942714,-0.03454507,-0.42255887,-0.7419135,0.55805504,0.05595272,0.2446867,0.038495064,0.12054551,0.28750488,0.052438673,-0.059801728,-0.00061392784,-0.10852284,-0.4571929,-0.18223463,-0.57926,-0.4484682,0.03926664,0.75218207,-0.40479642,0.047782212,-0.17261766,-0.34209973,0.06374394,0.12297584,0.06818731,0.31501183,0.38387778,0.038781594,-0.56293315,0.47949082,-0.15045743,-0.038853247,-0.6512109,0.0011303766,0.5464544,-0.774374,0.6335255,0.30704975,0.059782635,-0.01782152,-0.45898834,-0.22179659,-0.00958372,-0.20597114,0.44066715,0.06750778,-0.93376416,0.46681976,0.27650154,-0.4099196,-0.6408411,0.39009723,-0.0562146,-0.19151719,-0.06393309,0.03802424,0.12379328,0.0373045,-0.13304077,0.4004052,-0.34766978,0.26745358,0.059382092,-0.06640838,0.4040973,-0.01717971,-0.20071915,-0.654216,-0.050445747,-0.44094372,-0.23773442,0.24346186,0.018438313,0.1380523,0.29170975,0.24208893,0.32077518,-0.20344904,0.086116254,0.044076376,-0.42433402,0.2329294,0.44786188,0.31090355,-0.40634894,0.47307724,0.18664983,-0.20736219,0.24541788,0.10629654,0.355404,0.020975431,0.3753248,-0.040879436,-0.08909787,0.24900876,0.893309,0.023613831,0.4952693,0.069957934,-0.09288077,0.40726858,-0.011387659,0.02737132,0.06868285,-0.48958704,0.056895193,-0.11231969,0.31390634,0.48136845,0.34640265,0.28378436,0.07089258,-0.2980246,-0.030413976,0.2922872,-0.21022557,-1.2760327,0.5376588,0.23697658,0.8567758,0.44589645,-0.007360999,-0.010721586,0.7133326,-0.23663767,0.08106719,0.32457396,0.07803333,-0.3995809,0.6370821,-0.58706677,0.3617025,-0.025970152,-0.12939268,0.09251701,0.08481081,0.32912356,0.72337884,-0.3075862,0.10040023,0.11110652,-0.20067763,0.07573331,-0.35968572,0.037021566,-0.38194147,-0.33810297,0.7346558,0.49477053,0.36579347,-0.17162205,-0.038615625,-0.11002667,-0.1397931,0.1866739,-0.1020455,-0.22358333,0.20752454,-0.66949433,-0.17745563,0.5078238,-0.20496702,0.15182911,-0.17964326,-0.1640691,0.10596387,-0.15624358,-0.014835922,-0.03707483,-0.70049846,0.054404687,-0.1262318,-0.42934245,0.5721113,-0.24526203,0.16974942,0.290395,-0.026686942,-0.10637232,0.38148355,0.12906498,0.67065513,0.021236334,-0.1770436,-0.41653225,-0.074217625,0.21731456,-0.29414934,-0.010722501,-0.4982442,0.112613045,-0.46002442,0.5411362,-0.16997792,-0.46944004,0.13848184,-0.10880179,0.070825934,0.60739535,-0.16605091,-0.09054794,0.12300486,-0.14774755,-0.27974346,-0.03164013,-0.2394612,0.15180771,0.25377873,-0.12238568,-0.029284677,-0.43961763,-0.10412955,0.5416526,0.03710552,0.44346187,0.27239186,0.034431722,-0.19949993,-0.13780524,0.16251259,0.53151023,0.089543715,-0.096751384,-0.39744067,-0.31021327,-0.2879127,0.29516798,-0.15789093,0.23999558,0.06786792,-0.37202814,0.66555375,-0.02106251,1.0315737,0.11496242,-0.20549998,0.18738458,0.50865084,-0.020417413,0.08659696,-0.46503347,0.6487466,0.5523261,-0.23313697,-0.042127695,-0.49299648,-0.086799316,0.2805792,-0.32931617,-0.093138255,0.0588836,-0.66694343,-0.23680635,0.1992923,0.17332508,0.113197155,-0.035659987,-0.047341757,0.0342461,0.1558727,0.27887926,-0.60612947,-0.2123899,0.17863211,0.2548152,-0.11712582,0.12114806,-0.3816855,0.36450306,-0.5153256,0.09198923,-0.45634368,0.040729236,-0.30692855,-0.30499682,0.03939039,0.06490022,0.30807835,-0.17519644,-0.3623511,-0.029061709,0.457284,0.05922437,0.27910775,0.60572255,-0.23085466,0.06257308,0.08713843,0.60890543,1.3197334,-0.38029817,-0.06432841,0.36160988,-0.4932347,-0.5102435,0.36435553,-0.29775777,-0.045835197,-0.06795476,-0.49298272,-0.46766138,0.1879987,0.013637475,0.06617145,0.14745256,-0.5602597,-0.35898092,0.28330675,-0.2205754,-0.23851077,-0.23362043,0.20321266,0.72889227,-0.29550034,-0.16768472,0.018292785,0.2584549,-0.26167646,-0.3278579,-0.08138936,-0.30307356,0.30055955,-0.11295724,-0.2606347,-0.16848925,0.18589854,-0.46414414,0.17053293,0.2081214,-0.3649074,0.11049085,-0.06821043,-0.06038145,0.9504642,-0.39182144,-0.1399026,-0.56994617,-0.5161689,-0.89075667,-0.3444021,0.29250604,0.27658787,-0.059518777,-0.3592092,-0.003430275,0.07103888,-0.14187607,0.048310075,-0.66518056,0.36282417,0.0847385,0.46271268,-0.23205602,-0.95407784,-0.004380869,0.13996488,-0.4042769,-0.6662299,0.71966547,-0.1487012,0.81302005,0.026680466,0.02511405,-0.17426927,-0.20769262,0.11031776,-0.36048746,-0.19586363,-0.8200162,0.102757774,845 +549,0.34203961,-0.141317,-0.33658662,-0.06913127,0.045669436,0.0824872,-0.04713911,0.3077708,0.12158937,-0.62469566,-0.21990104,-0.28881064,0.08162586,0.18338323,-0.13131268,-0.46244827,-0.058587033,0.15810943,-0.31963745,0.43906155,-0.39562955,0.23968318,0.12172773,0.26807076,-0.03874449,0.22930887,0.23033272,-0.14077322,-0.16120818,-0.14510539,-0.18813436,0.30819884,-0.37226453,0.048012428,-0.081969485,-0.33032554,0.04497115,-0.3082148,-0.32955816,-0.61497223,0.3494192,-0.91072905,0.42241293,0.14445421,-0.1460597,0.42719102,0.003343497,0.17564276,-0.10151663,0.05472266,0.20762183,-0.1299957,0.002398921,-0.24989559,-0.21730062,-0.10079474,-0.49909797,0.104691364,-0.27431673,-0.28258333,-0.2555572,0.106621675,-0.32198134,0.050215673,-0.1943041,0.36267117,-0.45993274,-0.10408359,0.2081271,-0.15060319,0.38317314,-0.49708852,-0.217792,-0.091128245,0.15900019,-0.24435075,-0.010514462,0.14576693,0.21217023,0.60749006,-0.022335801,-0.14197703,-0.34468415,0.02562864,0.25194484,0.58016247,-0.17910795,-0.282297,-0.03248889,-0.02239986,0.015717579,0.15014197,0.065242104,-0.29443496,-0.13276313,-0.009502598,-0.2084275,0.017708639,0.46721992,-0.33556443,-0.37264976,0.24818495,0.55171,-0.08856236,0.0043372875,0.021552606,0.01675341,-0.3861633,-0.13601594,0.19809444,-0.19859938,0.4112823,-0.14672925,0.29583985,0.6080126,-0.042872768,0.33259678,-0.17541419,-0.0016211399,-0.02562737,-0.42264843,-0.06453484,0.25738534,-0.33951625,0.17778417,-0.24368535,0.84506166,0.051677603,-0.74344,0.49115473,-0.41269365,0.122483574,-0.048416857,0.64378965,0.4088003,0.2167734,0.2929453,0.6718069,-0.59395427,0.07177376,-0.17494614,-0.31036398,-0.12916803,0.029823987,0.06365661,-0.4488131,0.036175914,0.21116458,0.0009116488,0.008322145,0.31024197,-0.49298424,0.003029257,0.15565453,0.879251,-0.309293,-0.009118562,0.5936645,1.0112149,0.7428012,0.029778138,1.1857731,0.23406795,-0.3289017,0.26603475,-0.48360744,-0.7576316,0.19217427,0.33740118,0.45621496,0.10592663,0.19646099,-0.10980169,0.4765946,-0.39835826,0.14860933,-0.32427374,0.05864328,0.007942102,0.042708807,-0.45333502,-0.18632762,-0.037564393,-0.035688646,0.06435878,0.15896857,-0.119743235,0.32019597,-0.0040125996,1.8554999,-0.22516428,0.19373791,0.1957135,0.28873977,0.0058331317,0.029087862,0.023844978,0.33644766,0.34653282,-0.04634722,-0.47072604,0.05959316,-0.1404378,-0.6058588,-0.123051785,-0.15646116,0.118821524,0.04388103,-0.40305758,-0.10490304,-0.13179994,-0.42121452,0.4015608,-2.7299619,-0.07762387,-0.099440135,0.27616966,-0.39201906,-0.38619712,-0.1680944,-0.3901855,0.49906614,0.35787684,0.36636075,-0.7091866,0.33895996,0.29086518,-0.27871442,-0.060678266,-0.67016774,-0.035071407,-0.018705402,0.26493272,0.07585255,-0.15044038,-0.13740346,-0.097269304,0.3732991,0.025507297,0.013243041,0.2602334,0.2091308,0.20672788,0.27505338,0.12181734,0.39331704,-0.2169874,-0.13251589,0.33755454,-0.2788618,0.27997547,-0.068345435,0.16452023,0.25941113,-0.35785988,-0.57903713,-0.6359841,-0.6072478,1.2465135,-0.23151708,-0.43869066,0.37843847,-0.050475113,-0.23442744,-0.14883928,0.34148854,-0.123798184,-0.079768695,-0.8464731,0.1621513,-0.12779738,0.29709953,0.09414063,-0.075864755,-0.52238977,0.8005246,-0.25536895,0.4793885,0.47689182,0.19583134,-0.107781835,-0.31155306,-0.057057288,1.0207777,0.2485576,0.1560607,-0.13438924,-0.22828607,-0.23612371,-0.22355649,0.11222185,0.4197998,0.74726963,0.046266455,0.019674057,0.30505034,-0.040841434,-0.042093564,-0.13237052,-0.2807791,-0.07252806,0.0008036537,0.57268554,0.44107625,-0.23055889,0.3627863,-0.1929388,0.24680373,-0.20187153,-0.31812742,0.3689187,0.65207434,-0.090400696,-0.10809247,0.6385609,0.42177176,-0.36389104,0.27050313,-0.54066575,-0.27054998,0.35712442,-0.23909715,-0.5051989,0.1430408,-0.3086322,0.17798755,-0.8924732,0.24036637,-0.2530069,-0.3724778,-0.6564717,-0.084152386,-3.648802,0.17744882,-0.2953717,-0.21054573,0.059403174,-0.16014025,0.11359765,-0.5002399,-0.41337612,0.15926203,0.080219984,0.34159517,0.04206315,0.16593191,-0.23539098,-0.028011987,-0.27179256,0.119062625,0.07667492,0.23331581,-0.012630082,-0.43803924,-0.029449085,-0.121794745,-0.33767036,0.0790892,-0.59119713,-0.43222743,-0.15272704,-0.5513405,-0.40072283,0.4540563,-0.3733683,0.026086297,-0.30268607,-0.048988312,-0.22548746,0.46698466,0.20900814,0.21122865,-0.04807244,-0.053644214,-0.11791872,-0.22042814,0.2592236,0.086846165,0.15377675,0.47919196,-0.2383642,0.054337066,0.2845499,0.5909557,-0.0008992744,0.62100583,0.52536476,-0.14678082,0.24324708,-0.28536254,-0.12609307,-0.6446055,-0.37582806,-0.044138517,-0.29998738,-0.5520984,-0.14442123,-0.4321994,-0.7352063,0.45050502,-0.02959554,0.0806309,0.10702266,0.2607155,0.45928332,-0.049512498,-0.0725922,-0.10278375,-0.0052313083,-0.5918338,-0.3950162,-0.6757608,-0.41764614,0.17784639,0.81105703,-0.07252266,-0.019112462,0.032672193,-0.13898538,-0.10046983,0.15354416,0.07742136,0.117915265,0.40992713,-0.04472736,-0.54672897,0.61044073,0.077263184,-0.22447872,-0.57593524,0.096627116,0.42603713,-0.68286216,0.7089585,0.2155825,0.10336374,0.009698863,-0.45696998,-0.35570642,-0.11981565,-0.29160228,0.3976901,0.13846144,-0.5511121,0.396628,0.4838688,0.032227393,-0.72902805,0.19025329,-0.04374865,-0.3343127,0.065531544,0.30877852,-0.099942274,0.08422218,-0.025847932,0.0431279,-0.4117766,0.29348812,0.3091868,-0.051607523,0.49761805,-0.33868846,-0.07439996,-0.638343,0.039772246,-0.55736035,-0.09290747,0.19802116,0.14787318,-0.028326502,0.23679261,-0.01117152,0.38400653,-0.25155646,0.08777883,0.11945891,-0.112263285,0.214882,0.26377985,0.23585768,-0.39203644,0.48288304,-0.0595271,-0.16899689,-0.31134066,0.05716351,0.5259613,0.15689793,0.24448131,-0.19776814,-0.2706489,0.31774536,0.78575176,0.17132418,0.4903805,0.09448355,-0.081203185,0.47075742,0.09891403,0.07208825,-0.00575648,-0.45469737,0.018965324,-0.033062134,0.14985885,0.25486287,0.16235891,0.47992253,-0.13089308,-0.19467013,-0.015822737,0.25607938,0.020025462,-0.7441068,0.23534419,0.033295598,0.72626656,0.49170664,-0.10745395,0.07058485,0.56068426,-0.25705627,0.17704916,0.17848705,-0.2270379,-0.59510475,0.61823684,-0.5341658,0.19414814,-0.09521336,0.01436549,0.03334752,-0.08500213,0.2235838,0.57349867,-0.15959477,-0.026821371,-0.12344297,-0.20745952,0.026352394,-0.26562172,0.119183436,-0.38357815,-0.23892856,0.58125126,0.4600529,0.38418823,-0.14937475,8.1786086e-05,0.14658765,-0.0074379924,0.042318407,0.10890705,0.20130566,0.06566876,-0.6295573,-0.33562258,0.54606754,-0.06499633,0.108792976,0.007974024,-0.34732744,0.20300034,-0.1656152,-0.23413956,-0.048439015,-0.4535955,0.15036239,-0.27072278,-0.33963925,0.19863054,-0.03751756,0.3085005,0.13685162,0.021671472,-0.32815033,0.2761308,0.12350406,0.76264083,0.1434326,-0.15267761,-0.46099314,0.11483295,0.20156302,-0.14260684,-0.08235664,-0.12771606,-0.0103759365,-0.6853479,0.47181943,0.026747605,-0.17631106,0.29746404,-0.2622306,-0.05473308,0.5608521,-0.033784803,-0.102007814,0.110352054,-0.18722495,-0.29654747,-0.12840997,-0.06701925,0.28897282,0.078890026,-0.04891569,-0.015486722,-0.09900392,-0.1947471,0.47125974,0.11527964,0.16465345,0.2433814,0.06218918,-0.37334698,-0.08704281,0.08394032,0.39774594,-0.066219255,-0.054647837,-0.034246225,-0.50171304,-0.3400636,0.08526468,-0.09307773,0.32595345,0.097518615,-0.23064813,0.75170696,0.12618455,0.9556305,0.14443651,-0.22977065,-0.100592054,0.42006922,0.027298579,0.069898196,-0.3202875,0.8633919,0.63692665,0.058313694,-0.05388364,-0.20037909,-0.033850532,0.25256968,-0.09832005,0.049518168,-0.023725452,-0.6861965,-0.3585494,0.19587946,0.26743948,0.061267313,0.004179803,0.13707097,0.11962866,0.0041205627,0.3359131,-0.4350401,-0.22548795,0.32045862,0.09050156,-0.0010817072,0.17526293,-0.3050182,0.45201534,-0.5361539,0.19372617,-0.24269022,0.0097672725,-0.09205016,-0.13563938,0.0996745,-0.13757037,0.44752184,-0.3828419,-0.27336934,-0.19571397,0.44565693,0.1213636,0.14878704,0.6267246,-0.09133762,0.1378823,0.105977654,0.50558686,1.1733176,-0.20592307,0.092555694,0.29608387,-0.10746094,-0.6011347,0.3572771,-0.021094488,0.088333145,-0.033955965,-0.27640948,-0.3993393,0.34245825,0.15040454,-0.17505121,0.16397643,-0.36194128,-0.24456546,0.19837885,-0.3460382,-0.1765648,-0.27508017,0.11291809,0.60594416,-0.257631,-0.25270158,0.06499831,0.21096995,-0.4055352,-0.50062454,-0.06852833,-0.3565195,0.21928981,0.16883887,-0.33294708,-0.05731201,0.1129624,-0.3337962,-0.0908667,0.19759874,-0.3558058,0.060692217,-0.31079313,0.004214044,0.8806491,-0.054428674,0.07883117,-0.6529484,-0.4123187,-0.90616834,-0.39395517,0.7040176,0.01730428,0.035086967,-0.3362392,-0.03854229,-0.05879224,0.022151008,-0.105257325,-0.34266034,0.46671274,0.23880252,0.2904005,-0.1707968,-0.5020787,0.021354258,0.05816067,-0.13312194,-0.45203683,0.5289073,0.11125828,0.8069053,-0.051106762,0.043508798,0.33421355,-0.4943231,-0.0017187084,-0.2384291,-0.27838382,-0.7175032,-0.097143605,846 +550,0.44842476,-0.05015444,-0.53161824,-0.22179726,-0.32232222,0.18464069,-0.15526006,0.42225185,0.3478916,-0.20589651,0.032815523,0.08978849,-0.009780422,0.5850006,-0.14863907,-0.77381456,0.061906092,0.06651579,-0.5647477,0.40901533,-0.5257837,0.36685663,-0.10531355,0.40313855,0.1113639,0.24312548,0.20480934,0.12337758,-0.08420641,-0.017094092,-0.12543593,0.30703196,-0.3407285,0.13119192,0.03110758,-0.3014095,-0.12963952,-0.26449177,-0.22810681,-0.67743444,0.39098546,-0.7404156,0.4875028,-0.089828335,-0.45837468,0.26815364,0.09059926,0.21056144,-0.25958043,-0.07611457,0.052648555,-0.20087692,0.030942794,-0.175123,-0.35102907,-0.35931405,-0.53249305,-0.05278555,-0.5403662,-0.11634665,-0.2755767,0.109483495,-0.33990857,0.12261486,-0.099165834,0.44380686,-0.22421561,-0.09026897,0.2557898,-0.20240584,0.078698225,-0.3954416,-0.16361025,-0.066158906,0.19166557,0.12437417,-0.24812767,0.2553584,0.32393876,0.43501726,-0.09172765,-0.28474417,-0.34042358,0.08132458,-0.05349809,0.4357025,-0.15716064,-0.28884223,-0.3195776,0.0566806,0.1684426,0.11607941,-0.0033234486,-0.22842972,0.017893357,0.08723029,-0.31629038,0.38536498,0.35025266,-0.35764074,-0.10201626,0.3843738,0.4876791,0.11851821,-0.29870877,0.101532765,-0.04560224,-0.50141746,-0.17117865,0.10212811,-0.08572667,0.4295704,-0.119700514,0.2024839,0.67971987,-0.06797545,-0.056784205,-0.047861893,-0.016313497,-0.058384657,-0.21869089,-0.16039823,0.09221076,-0.3485307,0.1523569,-0.18956041,0.75562376,0.17106315,-0.77109593,0.47155258,-0.45066032,0.10871663,-0.10651602,0.5194795,0.8486628,0.3528723,0.123952374,0.85383505,-0.53939855,-0.031117234,0.08129227,-0.3572425,0.12860836,-0.03837993,0.15724145,-0.53362787,-0.015209577,0.24160233,-0.1803849,0.28620005,0.279529,-0.42765322,-0.07889913,-0.14844725,0.68630546,-0.30201286,-0.24146174,0.8584534,1.0025098,0.87959945,0.06348122,0.9032503,0.39613825,-0.09742075,0.109183535,-0.28997484,-0.57777625,0.19292893,0.28556418,0.1695074,0.47847417,0.070808105,0.07501001,0.5090343,-0.13384934,-0.09749737,0.053753365,0.41873783,0.11167327,0.025762906,-0.45889235,-0.32262215,0.2135987,0.06449635,0.24867383,0.2644264,-0.20155154,0.6084713,0.117860965,1.3725466,0.13377835,-0.0038910806,-0.06412225,0.338473,0.25553688,-0.08479496,-0.2720056,0.2554924,0.35106733,-0.05070079,-0.6089815,0.11281513,-0.2223845,-0.25363824,0.001989721,-0.38022655,-0.082262516,-0.20612882,-0.36046144,-0.15528142,0.038557794,-0.3404036,0.44816214,-2.7035434,-0.18505251,-0.16029303,0.23664674,-0.09033128,-0.3795325,-0.28575557,-0.40039033,0.16876009,0.41558662,0.33250538,-0.70561683,0.38459843,0.24093458,-0.3252705,-0.06304316,-0.6157049,-0.046725053,-0.05029603,0.37612242,0.03265502,0.05377874,-0.07493512,0.48428944,0.5869998,0.14548376,-0.13049279,0.32668835,0.4552649,-0.07037135,0.5339734,0.14183395,0.6050242,-0.16991135,-0.088944085,0.29912415,-0.46998954,0.25627795,0.13014774,0.3076858,0.43919638,-0.3286688,-0.85529804,-0.5233142,-0.115910284,1.382662,-0.3500939,-0.3665957,0.2702346,-0.24112065,-0.45737436,0.016898913,0.44448468,-0.14203864,-0.20428793,-0.6517364,-0.08342044,-0.022353377,0.09416242,-0.17213823,0.03486715,-0.16304953,0.6068953,-0.13143282,0.49442604,0.09446951,0.11404627,-0.15303765,-0.43437958,0.007859026,0.8091607,0.34828702,0.086977996,-0.14480363,-0.26082078,-0.24728656,-0.14415383,0.19477703,0.5748006,0.62751967,0.11713953,0.04736856,0.22798626,-0.2655946,-0.058895897,-0.08879804,-0.262565,-0.009196137,0.012418522,0.6149393,0.7411632,-0.1299201,0.42834407,-0.10825847,0.19673446,-0.21235694,-0.4972868,0.51536447,0.66515315,-0.22487251,-0.350394,0.43733338,0.24999857,-0.3295856,0.31954893,-0.477082,-0.22767518,0.4797921,-0.049498674,-0.3418956,0.18091914,-0.21371226,0.022379471,-0.83827686,0.2620447,0.029443052,-0.5711785,-0.53238934,-0.14369197,-3.929632,0.10021011,-0.013202689,-0.25457373,-0.034340817,-0.15107235,0.38553604,-0.5848036,-0.53820986,0.0234549,0.03689027,0.5372597,-0.046412367,0.032261875,-0.36598518,-0.29699376,-0.11119559,0.15229498,0.11887847,0.37842917,0.15073586,-0.3649392,0.11111843,-0.32070056,-0.60364777,-0.0066769207,-0.5113886,-0.56444514,-0.13053586,-0.49005142,-0.18188132,0.6689595,-0.37673238,0.037361193,-0.27794358,0.006309573,-0.19156674,0.3446684,0.116029166,0.043522857,0.048512373,0.007181502,0.081925556,-0.39608556,0.25929043,0.014803401,0.34506485,0.22591296,-0.12586385,0.23934107,0.71238625,0.6298974,0.18849042,0.69008714,0.2394623,-0.11563403,0.22445853,-0.25913745,-0.22999279,-0.5782175,-0.3422195,-0.1924934,-0.3791878,-0.30818322,-0.2822759,-0.3847156,-0.7689811,0.34055918,0.039736908,0.13605683,-0.1382732,0.2555147,0.48376656,-0.15581612,0.067472875,0.050248653,-0.31546262,-0.5927641,-0.3469407,-0.5709311,-0.49790123,0.37065747,0.90862256,-0.17620802,0.00031662412,-0.118276834,-0.46291965,0.048332226,0.04227221,0.2601444,0.27851686,0.11653894,-0.2578409,-0.61232555,0.29635137,-0.44884586,-0.078306444,-0.64147633,0.062121063,0.67865884,-0.4050428,0.46711418,0.2624422,0.24043779,0.024713947,-0.41223136,-0.1999766,0.17533863,-0.24295892,0.4861476,0.3220059,-0.64187276,0.5561715,0.24263586,-0.07695874,-0.45263562,0.37806728,0.00868302,-0.10114021,-0.018438945,0.36655113,0.07675687,-0.032289512,0.022190783,0.083688445,-0.4723527,0.12426635,0.26889983,0.008089849,0.32984146,0.020951167,-0.011294399,-0.5805097,-0.21663733,-0.5339088,-0.23397456,-0.0620887,0.078503974,0.3053381,-0.1423218,-0.03591042,0.31785294,-0.30477196,0.05888451,-0.06542093,-0.22252776,0.47966528,0.533327,0.37958542,-0.2690995,0.5403251,0.06476267,0.25950485,0.11649767,-0.1135198,0.44685608,0.23537879,0.35162306,0.1487185,-0.094660245,0.26058453,0.58373463,0.18984178,0.31200078,0.054986328,-0.27421755,0.21158297,0.1374579,0.18434803,-0.0883534,-0.25738147,-0.113739155,-0.08962264,0.19836521,0.48439577,0.10530834,0.2322418,-0.052353203,-0.28501925,0.29580727,-0.0032287922,-0.17303996,-1.376797,0.42703652,0.2716134,0.58945316,0.25073603,0.05739653,0.05182112,0.51475364,-0.22486468,0.12625629,0.35057095,0.027135968,-0.43063456,0.45872098,-0.5961271,0.46559936,-0.14800514,-0.01048544,0.094716035,0.23073283,0.39138776,0.9094616,-0.039798148,0.08223985,2.296269e-05,-0.29001263,0.014972304,-0.28180078,-0.03224313,-0.65184253,-0.3205978,0.48431116,0.5350416,0.49230438,-0.25864214,-0.06948674,-0.02256298,-0.07622813,-0.07551534,-0.16152279,-0.037323304,-0.19202588,-0.6250579,-0.36541632,0.41551706,0.14451125,0.060218457,0.026659628,-0.25514123,0.34497935,-0.022264753,-0.1343808,-0.028024038,-0.6700247,-0.07694757,-0.16183639,-0.57113796,0.28571507,-0.43524995,0.2905754,0.1947671,-0.005155695,-0.3749716,0.10585559,0.22565956,0.81301886,-0.035009254,-0.1533417,-0.44664747,0.04802965,0.22213307,-0.23236401,-0.14514898,-0.3254693,0.08959125,-0.42888698,0.34758133,-0.24324787,-0.3055398,-0.13276543,-0.11441283,0.18003127,0.36036828,-0.3938008,-0.14321123,-0.16026218,-0.0067799753,-0.28623828,-0.16264765,-0.27503118,0.33804947,-0.04782543,-0.12099002,0.08313413,-0.046575136,-0.04355537,0.3283562,0.14700903,0.2568341,0.49283347,0.08449096,-0.21388678,-0.14180382,0.052521355,0.3672996,0.18758248,-0.28487357,-0.50643694,-0.34704378,-0.34109423,0.32000962,-0.21483125,0.17447765,-0.045756657,-0.41270688,0.6024088,-0.051359538,1.0528067,0.052525204,-0.21070595,0.06972172,0.4678728,0.26594138,0.12743802,-0.21317594,0.6543808,0.47806516,-0.23459935,-0.19178966,-0.44333082,-0.2254596,0.32696444,-0.30900893,-0.13961017,-0.12298,-0.75016963,-0.19572105,0.14109214,0.06779261,0.21565485,-0.07963895,0.14595716,0.009323127,0.13200907,0.4898281,-0.31828418,0.055883367,0.34614077,0.1367232,0.0061892164,0.14150521,-0.43447977,0.3583104,-0.5266356,0.1310269,-0.5024437,0.1728504,-0.04077893,-0.311965,0.118096255,-0.0031368476,0.24040651,-0.38418242,-0.29441494,-0.27503166,0.60450375,0.27766487,0.13809423,0.5237656,-0.18994941,-0.19543616,0.26971605,0.5438622,1.0689404,0.09989958,0.07301633,0.34249538,-0.21286821,-0.54047275,0.007933085,-0.22803633,0.33988127,-0.11455081,-0.19760744,-0.41101232,0.39642096,0.07700692,0.046694286,0.13082257,-0.33749157,-0.26142523,0.39681342,-0.35848162,-0.22401787,-0.34094277,0.12162308,0.4479289,-0.4028552,-0.27227473,-0.08640157,0.3357813,-0.11338173,-0.53824097,0.056511726,-0.28657943,0.3856773,0.14470302,-0.29835653,-0.067561515,0.2304012,-0.39942476,0.2090595,0.18173055,-0.42394033,0.12620603,-0.12739836,-0.0667743,0.94816977,-0.0465844,0.16082957,-0.7440669,-0.5328727,-0.963651,-0.37471005,0.25580904,0.05534711,-0.120809086,-0.64106244,-0.010874237,-0.029384544,-0.081752695,0.030888343,-0.44115835,0.3871484,0.14411919,0.24437936,0.083146356,-0.93734086,-0.10345962,0.050129972,-0.2348532,-0.6123784,0.6433221,-0.15589105,0.5753952,0.044989552,0.19638191,0.18033123,-0.37604353,0.301609,-0.37163123,-0.14864792,-0.50276256,0.1864387,856 +551,0.41958457,-0.09506401,-0.4713389,-0.14759867,-0.08343202,0.02549687,-0.24917422,0.3791758,0.28020597,-0.39961952,-0.1246834,-0.15259023,0.07785462,0.168032,-0.08992839,-0.5918089,0.07428406,0.20566222,-0.5909709,0.6645926,-0.2506746,0.23847042,-0.06781346,0.431179,0.042466097,0.24532251,-0.027961442,-0.15644877,-0.18742561,-0.028112117,-0.18312429,0.50074935,-0.4451833,0.1538757,-0.2550593,-0.16643262,0.08544761,-0.35735485,-0.3505798,-0.87051755,0.24202988,-0.7112042,0.4804155,0.18555748,-0.3452719,0.052649904,0.16588847,0.4345449,-0.4852588,0.025050772,0.13153946,-0.02087673,-0.14442489,-0.19816934,-0.20838092,-0.42150545,-0.47453874,-0.11271841,-0.5966472,-0.052514173,-0.34567356,0.12989426,-0.18372335,-0.27519417,-0.005503927,0.63584024,-0.43884805,-0.003078897,0.2397046,-0.13284342,0.3788368,-0.48259607,-0.110932626,-0.17351644,0.44989583,-0.20050319,-0.28155217,0.23993628,0.37023404,0.4263694,-0.21852793,-0.18512158,-0.33789316,-0.13638283,0.06726587,0.34791142,-0.09017996,-0.61483896,0.037141066,0.062320977,0.040479418,0.24307926,0.05138249,-0.3386638,-0.046874426,-0.0037317,-0.1198864,0.30537206,0.47942433,-0.2924063,-0.12516722,0.20333259,0.5697215,0.12970133,-0.16295373,-0.055407766,0.10127779,-0.60517704,-0.089062236,0.25773475,-0.18079603,0.5791882,-0.027078304,0.076487176,0.59652126,-0.098221935,-0.18130192,0.069309466,0.17993404,0.10394718,-0.33336428,-0.3877376,0.26459122,-0.36072722,0.09815449,-0.1736096,0.5040318,0.2673437,-0.72457016,0.17898151,-0.52174485,0.024647608,-0.08557708,0.44498566,0.695137,0.41089782,0.369746,0.628088,-0.41329718,0.14909782,-0.083935425,-0.31466103,0.011868651,-0.12642886,-0.07145246,-0.47432056,-0.06857605,-0.16527162,-0.17640765,0.15267178,0.23935747,-0.45794767,-0.08673092,0.20654115,0.89505637,-0.26041463,-0.077492945,0.5190853,0.8625043,0.7910538,0.08903384,0.98907894,0.24036023,-0.28986064,0.31991813,-0.2796807,-0.6855537,0.30076128,0.26145983,-0.15281844,0.18212365,-0.02996985,0.06393661,0.36383224,-0.45397112,0.069131635,-0.09232201,0.14692487,0.1402723,-0.07396994,-0.3606194,-0.30391857,-0.16609894,-0.009628215,-0.07925934,0.31049022,-0.17488833,0.08524389,-0.025659302,1.4725065,0.04934966,-0.028695771,0.11536638,0.5943799,0.24418929,-0.09119294,-0.2559436,0.49318627,0.28086242,0.09877249,-0.4727571,0.05085764,-0.29541156,-0.25485447,-0.1411441,-0.2441956,0.05562361,0.04707404,-0.45150137,-0.043088548,-0.06400696,-0.30396184,0.63333327,-2.7787557,-0.015243471,-0.06391841,0.4010919,-0.3046532,-0.25625774,-0.21269819,-0.42475152,0.4082152,0.33423325,0.4780939,-0.57582146,0.22423919,0.45540574,-0.577527,-0.19169123,-0.5254103,-0.13660835,0.009483478,0.2645846,-0.025037004,-0.15439162,0.044117134,0.21717755,0.4909766,0.012450589,0.11075399,0.31254742,0.2849647,0.13238284,0.55763173,-0.020035002,0.4495199,-0.25652578,-0.24763854,0.2273581,-0.44737563,0.151608,0.041611113,0.017741693,0.5640434,-0.47150347,-0.954339,-0.7371273,-0.18695721,0.96064997,-0.25469348,-0.39185163,0.23871246,-0.44249234,-0.19381309,-0.113368765,0.64744884,0.0664194,0.058865238,-0.8075953,-0.12926486,-0.011286868,0.4183881,0.07396551,0.035547566,-0.37647623,0.42729634,0.014694044,0.39102277,0.39417338,0.13303752,-0.37470582,-0.5409087,0.072266035,1.0367645,0.10299473,0.20290315,-0.16314471,-0.3190892,-0.43795428,0.12258998,0.017904585,0.65962255,0.64223576,-0.22713403,0.11034549,0.21985951,0.063739546,0.052130274,-0.19271745,-0.37130216,-0.14054784,0.34523314,0.5552543,0.6149259,-0.11818685,0.464211,0.03431871,0.24369451,-0.19623086,-0.30921873,0.40389436,1.0003427,-0.126563,-0.23895545,0.53067017,0.51543784,-0.3307306,0.43071565,-0.5368449,-0.31718203,0.4895768,-0.17960513,-0.4911271,0.26554912,-0.30753103,0.15109432,-0.81874806,0.24822308,-0.28090423,-0.36556843,-0.53227043,0.06705249,-3.4760525,0.13122632,-0.051476203,-0.19464174,-0.014934689,0.0060392465,0.09391493,-0.44863343,-0.60220003,0.2461622,0.07149737,0.699864,-0.10566373,0.037157793,-0.30829835,-0.34357396,-0.14881992,0.296271,0.27534977,0.28924727,0.09044491,-0.607916,-0.18539576,-0.18406942,-0.32403713,0.051678777,-0.64596426,-0.3147404,-0.1791077,-0.7871899,-0.23777373,0.60414964,-0.45109698,-0.012640791,-0.12718216,0.057387523,-0.048981685,0.20493685,0.23316462,0.3915362,-0.012857194,-0.0543315,-0.07064345,-0.14682528,0.20657657,0.13355006,0.2519645,0.09749069,0.16512254,0.2094073,0.5039879,0.6005208,-0.07302626,0.9627252,0.642953,-0.08138682,0.29187113,-0.2560849,-0.29380986,-0.4986075,-0.26516488,-0.08355088,-0.39617634,-0.41510445,0.063020885,-0.37667108,-0.6957695,0.51466626,-0.21910515,0.019990453,0.18600862,0.33236784,0.5026867,-0.35112265,0.03510413,-0.106744036,-0.050751705,-0.45310137,-0.26462597,-0.4561893,-0.34990436,0.13380198,0.9799186,-0.26695028,-0.014408329,0.026657317,-0.11321028,-0.07451637,0.25296333,0.042062707,0.24742022,0.574782,0.0086238,-0.5754747,0.30555463,-0.12545185,-0.1183163,-0.54177356,0.2303181,0.5346173,-0.72433466,0.8180181,0.32045063,-0.041576274,-0.2600802,-0.64435965,-0.4689719,0.068365715,-0.12931876,0.3842725,0.24579082,-0.78136104,0.21419707,0.23820893,-0.31673744,-0.65923625,0.6230626,-0.070697844,-0.51063114,-0.062233772,0.39622292,-0.1701444,0.048992455,-0.30502295,0.17105107,-0.27561563,0.061435167,0.27639318,-0.11467009,0.19952016,-0.32247695,0.00683277,-0.8390217,0.13138619,-0.48106575,-0.25684023,0.54670376,0.10946883,0.080634594,0.22814691,-0.023802357,0.29887363,-0.19692764,0.022112062,-0.13061337,-0.19678156,0.4303454,0.3768275,0.4506438,-0.36574873,0.5597773,-0.07484144,-0.20236167,-0.18995936,0.09055818,0.3322166,-0.05500722,0.4617307,-0.08346305,-0.2850511,0.41187343,0.74400187,0.18318641,0.4227393,0.00062391587,0.09043489,0.2733798,0.124991246,0.109066114,0.04551163,-0.45766193,0.029423084,-0.34193712,0.16453497,0.3634728,0.04293702,0.18515088,-0.012371376,-0.28554344,-0.048949085,0.19760224,0.19551119,-1.1499212,0.45661667,0.16475391,0.85427624,0.4376923,0.22679305,-0.055701386,0.66973656,-0.08556456,0.09307652,0.37313753,-0.13992336,-0.4473498,0.55760187,-0.50681406,0.57641953,0.10349163,0.05463338,0.009154124,-0.113441125,0.4729932,0.91454965,-0.18088205,-0.013185016,0.113668226,-0.17608435,0.24544358,-0.3031629,0.12051825,-0.7038058,-0.40478066,0.5016266,0.5440314,0.26793897,-0.23696272,-0.049707625,0.12988417,-0.21392237,0.11232621,0.00800018,0.044600837,-0.021457357,-0.6518318,-0.051862687,0.5141964,-0.07134551,-0.06650413,-0.05180917,0.06835499,0.26964432,-0.15728594,0.11743821,-0.18313476,-0.6258226,-0.1258033,-0.48842645,-0.26402768,0.6836291,-0.23701827,0.24642147,0.16239348,0.061904915,-0.41683552,0.67705566,0.1813403,0.7520331,-0.017105954,-0.08803893,-0.3089353,0.036126655,0.10843791,-0.13309374,-0.067547016,-0.50718874,0.007978482,-0.72405,0.4174479,0.020796428,-0.2708738,-0.17652287,-0.12211813,-0.020343542,0.5218963,-0.045720644,-0.29399857,-0.0608662,-0.12495849,-0.33237764,-0.16845226,-0.2212552,0.2744408,0.13355663,0.022937817,-0.12969103,-0.075557195,-0.09811254,0.5273175,-0.08227511,0.28494778,0.29825187,0.32065886,-0.090933464,0.0176272,0.066314764,0.65851635,0.08494584,-0.09507449,-0.24383989,-0.2608653,-0.4936349,-0.00030434132,-0.09896268,0.4812575,0.107130595,-0.23846729,0.7445259,-0.11441064,1.226906,-0.1004191,-0.3548264,0.05870274,0.49557,-0.1252337,-0.028054383,-0.37070933,0.8240722,0.52728057,0.049132675,-0.06282438,-0.14593884,0.06768377,-0.037711043,-0.1540056,-0.12453156,-0.017037136,-0.535808,-0.08522227,0.20136009,0.31148085,0.39184895,-0.08199124,0.07191438,0.17763557,0.13971642,0.026005361,-0.42523402,0.12827504,0.23881194,0.3859351,0.17480405,0.060240626,-0.33470002,0.34432432,-0.4110665,-0.029073061,-0.3284166,0.18310645,-0.27572033,-0.41831872,0.24564525,0.016322987,0.36415142,-0.27664658,-0.17084493,-0.36886212,0.55632055,0.16072656,0.1961162,0.5266369,-0.14641348,-1.8498728e-05,0.06963037,0.6283666,0.9153779,-0.44138193,-0.17250933,0.38700676,-0.41351938,-0.62522304,0.26265433,-0.56825083,0.1396132,0.11643362,-0.21247923,-0.6104307,0.19508438,0.068609774,0.13076796,-0.11121665,-0.69527596,-0.13611172,0.24998379,-0.19867234,-0.16963935,-0.31468043,0.3369855,0.5345893,-0.1708264,-0.33564442,0.069017276,0.13368274,-0.3266333,-0.53870815,0.07697991,-0.40426144,0.22845592,0.09447306,-0.48054567,-0.19153042,0.035486605,-0.5103456,0.20223263,0.26267475,-0.4004937,0.099175714,-0.25118297,-0.118892595,1.0582554,-0.18415155,0.1675562,-0.29949874,-0.45060268,-0.8719793,-0.12967774,0.4638633,-0.075209446,-0.02732736,-0.6041684,-0.017014215,-0.12291246,-0.16928038,-0.05552811,-0.20709945,0.3759706,0.040713735,0.55905503,-0.081491105,-0.93609273,0.12221442,0.093576856,-0.3219139,-0.56946963,0.43094426,-0.047167774,1.0342759,0.0010485084,0.13523898,0.526291,-0.37090996,-0.15959729,-0.18764083,-0.11364194,-0.48367754,0.033916075,860 +552,0.39331427,-0.15968813,-0.46511912,-0.17614992,-0.20363991,0.19634454,-0.12779763,0.5555969,0.13283114,-0.6808723,-0.19778037,-0.18885049,0.042700194,0.20308256,-0.25467476,-0.34282538,0.008533961,0.15400232,-0.43199039,0.4610493,-0.39450273,0.23207192,0.18505645,0.38111654,0.08583442,0.14507444,0.14366224,-0.18962245,-0.046679746,-0.2619466,-0.16199145,0.4826569,-0.37622195,0.33439398,-0.11979943,-0.19307375,0.0056455093,-0.48497376,-0.20063427,-0.7371239,0.13091527,-0.81063646,0.50265604,0.10607053,-0.28878942,0.27901974,0.43205342,0.14695938,-0.1371653,-0.037738748,0.26352337,-0.14620209,-0.20862518,-0.17133835,-0.07584415,-0.3693883,-0.5073219,0.025575992,-0.43638283,-0.28099987,-0.24366693,0.30435282,-0.25814006,-0.041533466,-0.13497862,0.6745184,-0.42806825,0.24322213,0.17871423,-0.29486513,0.39523178,-0.624586,-0.15695669,-0.07028941,0.2618949,-0.18726991,-0.26849982,0.046033107,0.43253502,0.45581883,0.026354436,-0.10525382,-0.22101283,-0.11524032,0.023591552,0.4164949,-0.14983477,-0.35012507,-0.120819464,0.06867641,0.09414591,0.26710907,0.11855163,-0.47701925,-0.13200046,-0.048938096,-0.27339762,0.3688437,0.40431094,-0.23446187,-0.2550452,0.3516962,0.5136482,0.05788579,-0.07860814,0.026743677,-0.043956865,-0.5922646,-0.112399474,0.18358128,-0.14129251,0.4253873,-0.18377416,0.27801707,0.6310253,-0.040883746,-0.023009678,0.19071214,0.15360503,0.017910464,-0.43157586,-0.20792577,0.25768048,-0.36237365,-0.016543727,-0.16620322,0.8346349,0.012882688,-0.6509002,0.24001758,-0.53930485,-0.016634481,-0.22252798,0.42037204,0.53622144,0.37663934,0.20357165,0.71219605,-0.42889783,0.004067156,-0.113192864,-0.32032058,0.045192428,-0.07930534,-0.018722882,-0.54227966,0.080958195,-0.0240455,0.044985034,0.064741544,0.40599325,-0.64644134,-0.20664133,0.07071082,0.81518024,-0.24798056,-0.21100657,0.5910924,0.8729843,0.827322,0.13364422,1.08162,0.12638833,-0.17332898,0.17357196,-0.14531015,-0.64947987,0.40784305,0.42520604,-0.29586306,0.045477804,0.046629388,0.051487748,0.37352824,-0.33586192,-0.07307921,-0.2429706,0.1602163,0.09273009,-0.12001843,-0.42685828,-0.24852578,0.075313225,0.032429136,0.20738828,0.05390524,-0.17039622,0.2981034,0.08349788,1.4952947,-0.16844146,0.1600198,0.17702767,0.14660658,0.22608267,-0.14546679,-0.05738753,0.47718266,0.35847378,0.2486474,-0.49007353,0.24549477,-0.1014397,-0.4154767,-0.16466747,-0.346661,-0.09934677,-0.041036498,-0.4743333,-0.13010506,-0.21731272,-0.40951267,0.47503543,-2.8125083,-0.10618496,-0.17949677,0.38434076,-0.27217537,-0.2982803,-0.19204426,-0.3779696,0.54794294,0.2695374,0.5093967,-0.4703507,0.32905397,0.40095016,-0.5012841,-0.27277026,-0.63918686,-0.031385984,-0.06562966,0.25484118,0.07759903,-0.11713868,-0.12232047,-0.0052078855,0.43960404,-0.07980096,0.14180334,0.32215616,0.45910385,0.0676718,0.58956116,-0.061901007,0.58747804,-0.29675344,-0.3008178,0.41090283,-0.31710976,0.17047723,0.008643657,0.09264142,0.42921448,-0.36766678,-0.85945565,-0.7914487,-0.32980648,1.1178988,-0.3183593,-0.3979748,0.23715922,-0.24060524,-0.2531671,0.08392199,0.5052134,-0.019426584,0.061942305,-0.92369515,0.18172911,-0.01633645,0.30498335,0.0018696977,-0.10811175,-0.537219,0.6985794,-0.1631066,0.60457325,0.41859517,0.24274288,-0.46996263,-0.45277882,-0.04835316,1.0996675,0.38050374,0.09745892,-0.093733765,-0.1741164,-0.4856043,-0.040185217,0.10636323,0.6725082,0.5363295,0.099747084,0.18871072,0.3072796,-0.11767102,0.115104415,-0.14953797,-0.33643278,-0.16721332,0.007964551,0.5427381,0.43836716,-0.07836394,0.4305435,-0.10271635,0.5122608,-0.1832578,-0.4399982,0.33218262,1.0672833,-0.16174583,-0.35708913,0.67502207,0.36796087,-0.14810698,0.27682537,-0.48922354,-0.397226,0.45102987,-0.23255931,-0.5354803,0.11786633,-0.2761911,0.11633064,-0.9037671,0.25052544,-0.33324575,-0.5465976,-0.5692504,-0.161848,-3.1664832,0.26004407,-0.20549111,-0.10933884,-0.17034534,-0.10181297,0.13677645,-0.5752221,-0.4105968,0.14399716,0.12280023,0.55238986,-0.09755377,0.1495239,-0.1794125,-0.2297491,-0.046956874,0.13573423,0.10807049,0.27782273,-0.034988213,-0.46269205,0.042421263,0.065480195,-0.38630933,0.044309404,-0.61425865,-0.51489794,-0.014272175,-0.52592707,-0.36883208,0.6437958,-0.5094084,-0.043027528,-0.11950982,0.20241036,0.00922842,0.2641506,0.09524924,0.24859612,0.020381076,-0.065269664,-0.10387545,-0.31144896,0.4039889,0.10328741,0.13888137,0.39131847,-0.16047828,0.25122216,0.42161185,0.5002128,-0.11021789,0.7800651,0.4512314,-0.008578761,0.27966377,-0.19947357,-0.24459493,-0.451931,-0.22041024,-0.038564507,-0.4310809,-0.2674816,0.016874595,-0.33245772,-0.781126,0.5878635,0.12709828,0.0039487565,-0.10097661,0.4775478,0.5299996,-0.22511372,-0.030081455,-0.016394261,-0.2434102,-0.6043487,-0.28771234,-0.47664538,-0.39328024,-0.026878897,0.98263913,-0.40485573,0.18146239,-0.0017330901,-0.052347694,-0.10604419,0.18333134,-0.0764559,0.2614086,0.5760198,-0.14893349,-0.60503995,0.44569725,-0.26948997,-0.28618422,-0.5311619,0.3068132,0.6107852,-0.6378694,0.63347155,0.41221252,0.10791343,-0.2829705,-0.51981145,-0.17020588,0.0102266865,-0.31655815,0.5030331,0.20105027,-0.72936064,0.48062852,0.35945687,-0.053644657,-0.7293386,0.5602106,-0.09857605,-0.3585891,0.047833525,0.40603253,0.191482,0.06419058,-0.081916876,0.1243139,-0.366154,0.21825147,0.029442266,-0.08647861,0.4180568,-0.30969617,-0.025080234,-0.69478846,-0.02857006,-0.6336175,-0.32238844,0.2446172,0.109848104,-0.05128642,0.36432812,-0.13989799,0.43102136,-0.21723127,0.13839237,-0.22829847,-0.15981509,0.20974429,0.42721602,0.29008457,-0.41093418,0.458841,0.027779143,-0.013910289,-0.20255838,0.17073838,0.45990404,0.06980312,0.43444893,-0.35749468,-0.09154161,0.43296123,0.63825905,0.07070076,0.37581325,-0.07828115,-0.07429491,0.16104391,-0.012955933,0.1982291,-0.14397158,-0.6524672,-0.07304622,-0.27661064,0.15127005,0.556578,0.162562,0.36996835,-0.07006874,-0.28975895,0.074367695,0.345261,0.18388316,-0.93956643,0.4580335,0.21100031,0.8796832,0.4251519,-0.0057700374,-0.054548662,0.72093856,-0.19664116,0.1938001,0.27057633,-0.136114,-0.39480495,0.48032364,-0.8436596,0.29481715,-0.27297023,-0.035714667,-0.02011604,-0.07959069,0.3717043,0.8670143,-0.1251145,0.076022625,0.029594699,-0.32621282,0.30807728,-0.43295738,0.108957015,-0.48341495,-0.361538,0.57193565,0.63648933,0.41752806,-0.3177262,0.0039304667,0.23088156,-0.16210277,0.15263514,0.07737862,0.06433764,0.0670497,-0.76568633,-0.14158909,0.55958074,0.26617295,0.21383688,0.09615054,-0.11327762,0.33884248,-0.16707695,0.0821774,-0.18544592,-0.5014363,-0.10657009,-0.29425868,-0.42182845,0.3503488,-0.3651952,0.13553342,0.20196576,0.053380966,-0.18326406,0.41418868,0.11422222,0.8281241,0.09868281,-0.043895192,-0.48818153,0.23344459,0.14481112,-0.109861955,-0.20261213,-0.44020146,0.14753036,-0.7104391,0.39960447,-0.086287305,-0.29276973,0.12568054,-0.11023065,0.0433865,0.6044081,-0.08098609,-0.018299649,0.07006436,-0.290098,-0.18844835,-0.13043277,-0.10211512,0.24423905,0.07234108,0.05110154,-0.12861931,-0.13878255,-0.4249394,0.24856053,0.12233351,0.43853578,0.31422997,0.06682957,-0.20151962,0.020117974,0.19706495,0.5013914,-0.015609349,-0.13250563,-0.09153209,-0.323867,-0.29828328,0.12456458,-0.019134704,0.28274614,0.076223865,-0.095426455,0.783175,-0.11657576,1.0319221,-0.036102235,-0.36034632,-0.035955112,0.4615313,0.13166344,-0.023239631,-0.3630014,0.88161,0.52528995,0.09036553,0.025370657,-0.38945177,-0.09651754,0.12392191,-0.12311644,-0.1547017,-0.08778511,-0.7390751,-0.32785657,0.121775724,0.2277095,0.11034446,-0.028320167,-0.04308761,0.23213474,-0.054056745,0.3065079,-0.5270437,-0.029961722,0.119912885,0.4830592,-0.09711122,0.15574993,-0.50031316,0.50671905,-0.54908764,0.14067882,-0.28280038,0.1724048,-0.38794088,-0.1516579,0.22669302,-0.18579017,0.41731995,-0.23697428,-0.27687955,-0.23638834,0.49247584,0.2158641,0.03966237,0.66073376,-0.28532574,0.1647474,0.21225692,0.5625058,1.0093043,-0.36062333,-0.07052924,0.39417782,-0.3185626,-0.59419453,0.30045363,-0.4053345,0.14008883,0.09098194,-0.2052943,-0.28783217,0.32473606,0.22462623,0.050860763,-0.13770847,-0.5387445,0.12679945,0.35778123,-0.24303882,-0.13687743,-0.2082556,0.16211323,0.44947863,-0.2600737,-0.38318783,0.008674706,0.22430754,-0.09369678,-0.5981841,-0.019869814,-0.4078276,0.28749117,0.11196138,-0.29777673,-0.12487205,-0.026951244,-0.47530589,0.1593976,0.075960554,-0.2610074,0.040507965,-0.26239863,-0.07364384,0.7325999,-0.069855474,0.06973129,-0.5136942,-0.4319763,-0.69033533,-0.20961888,0.37733057,-0.07570294,0.10547125,-0.5520986,-0.07389748,-0.17097174,-0.22953323,-0.12716328,-0.40125963,0.43835893,0.1743762,0.44107231,-0.18775494,-0.80313003,0.20094119,0.053690385,-0.12411553,-0.6313668,0.3511514,-0.06562017,0.6247482,0.079208784,0.09876703,0.41116315,-0.5338964,-0.07670205,-0.22440147,-0.11579311,-0.83064365,-0.099233985,861 +553,0.5685923,-0.001131673,-0.6378064,-0.25941655,-0.2967412,-0.07520783,-0.16305591,0.14787562,0.49220926,-0.21419832,-0.034750525,-0.12585244,0.08368985,0.22185288,-0.08307513,-0.6808243,0.031638324,0.07551147,-0.58991104,0.38301948,-0.41832832,0.51663697,0.16693497,0.3986392,-0.006748659,0.20767263,0.26406613,-0.039393954,-0.05858434,0.002929317,-0.123799734,0.5763194,-0.67565453,0.16747998,-0.029153423,-0.19629233,-0.021495597,-0.38448402,-0.27986142,-0.7279128,0.234296,-0.7686108,0.6881922,0.21730433,-0.34909448,-0.006884349,0.03945413,0.1846879,-0.36318368,0.28115326,0.21109208,-0.38258553,-0.018844102,-0.17938031,-0.43231806,-0.46914536,-0.6019365,0.0133094955,-0.5195239,-0.16751984,-0.40105894,0.25845236,-0.29255894,-0.11755909,-0.3095056,0.43158072,-0.3816084,0.0729607,0.25115967,-0.25931105,0.328063,-0.2776617,-0.114165954,-0.1339523,0.22229484,-0.092993915,-0.31153637,0.10123872,0.33281094,0.5284591,0.07155371,-0.35984454,-0.37475866,-0.04810065,0.054572377,0.43783197,-0.10118576,-0.2717021,-0.22220603,-0.13374266,0.17225374,0.35605282,-0.026722703,-0.488178,0.014855668,-0.06676781,-0.09118144,0.38302058,0.46105164,-0.40641096,-0.26578698,0.37619343,0.3861459,0.16691002,-0.18812516,0.24005376,-0.017049564,-0.66501313,-0.26560566,0.32213634,-0.01457869,0.5556508,-0.020844763,0.10755813,0.6358051,-0.11936088,-0.2654331,-0.0747949,-0.08324463,0.084418796,-0.28352657,-0.0584941,0.2299143,-0.40749866,0.12122321,-0.26519415,0.77790344,0.02627425,-0.7914667,0.29068416,-0.66166407,0.12489569,-0.14077091,0.7635852,0.8879403,0.4449505,0.28074956,0.90783495,-0.63470733,0.018232478,0.047108497,-0.52620053,0.14353575,-0.04985029,0.0696438,-0.457243,-0.089779615,0.06708948,-0.088348545,0.14627512,0.34339163,-0.39651105,-0.14785896,-0.05613007,0.7412984,-0.3726721,-0.20204762,0.6437252,0.9157315,0.90136606,0.060149603,1.3051008,0.34254402,-0.032540854,-0.041590743,-0.27489665,-0.51882887,0.19455898,0.22552875,-0.18154833,0.225962,-0.020562692,0.108108826,0.3027659,-0.30133003,-0.08014215,-0.070499554,0.2317654,-0.07347644,-0.072294064,-0.3892649,-0.24147569,0.12888303,0.24067068,0.053117927,0.219305,-0.19263336,0.4238505,0.09886444,1.3410017,-0.028297113,0.08617454,0.027618637,0.3489132,0.30345726,-0.18728773,-0.11150037,0.38703182,0.43058065,0.10926985,-0.42963123,0.076207615,-0.13269816,-0.27553004,-0.1963658,-0.3408561,0.1402636,-0.19977884,-0.5403451,-0.007578309,0.0651461,-0.41495863,0.5508017,-2.5138428,-0.047853,-0.026418868,0.3243154,-0.092978716,-0.33373383,-0.31701514,-0.45551935,0.24778824,0.3606673,0.31892332,-0.5817209,0.38426033,0.41620284,-0.39662948,-0.14045565,-0.6568281,-0.09480847,-0.14045058,0.3059388,0.08766549,-0.09177591,-0.23107089,0.3590054,0.6915131,0.026742065,-0.043969225,0.118400946,0.540901,-0.14825103,0.70880216,0.101709925,0.49567813,-0.12211687,-0.24329296,0.41378978,-0.26221952,0.27703327,0.05157234,0.08649612,0.38943616,-0.45077428,-0.8834213,-0.64711374,-0.39577624,1.1325349,-0.42580837,-0.45828745,0.34780693,-0.17527355,-0.36552483,0.14723413,0.5805802,-0.1801177,0.18165772,-0.7425142,-0.056881487,-0.15778829,0.27011222,-0.10699715,0.012737097,-0.3918821,0.57838315,-0.09095877,0.4706307,0.3322975,0.22781195,-0.15900935,-0.5632352,0.13603653,1.0012286,0.34919947,0.07679256,-0.26456985,-0.23258138,-0.20063964,0.0655243,0.11632047,0.72148556,0.63147557,-0.121334024,0.17208394,0.31609085,-0.10113364,-0.014462526,-0.16191772,-0.29381624,0.0006978725,-0.08526055,0.52658135,0.84601116,-0.20344278,0.36251858,-0.0522842,0.3181859,-0.045847453,-0.6055781,0.5631487,1.0443856,-0.082910374,-0.23754713,0.6942315,0.36280233,-0.3260093,0.39375526,-0.59126824,-0.24901421,0.6036677,-0.06641322,-0.46801212,0.2843747,-0.39490452,0.0164368,-0.9629553,0.31069806,-0.013711776,-0.4690147,-0.3220558,-0.114859276,-4.140596,0.18157461,-0.16547427,-0.031124284,-0.06751935,-0.16251452,0.34739652,-0.4319503,-0.56313217,0.07152425,0.09947545,0.46371344,-0.2172792,0.13795601,-0.38321552,-0.23159213,-0.14952269,0.29279676,0.1601956,0.31571802,0.03846561,-0.37172875,0.01862303,-0.23707283,-0.5095243,-0.023753954,-0.46805814,-0.5886435,-0.09308886,-0.5522994,-0.33850113,0.7202476,-0.4394741,-0.07107202,-0.28395137,0.06362114,-0.10903331,0.39540777,0.16341646,0.32543197,0.0023210219,0.017697887,-0.20684277,-0.21782234,0.24317639,0.09858746,0.14504962,0.27782258,-0.14405075,0.2125433,0.41554418,0.5773043,-0.21458818,0.7705107,0.32983962,-0.006302726,0.24830508,-0.21199629,-0.4117853,-0.8106208,-0.30795667,-0.2886544,-0.50677353,-0.26674435,-0.28705245,-0.32424402,-0.807409,0.54575163,0.052176777,0.18367216,-0.24653089,0.33667573,0.41996172,-0.1638103,-0.021936124,-0.14765158,-0.28211293,-0.5668311,-0.3554813,-0.5746501,-0.5564903,0.14632864,1.02319,-0.22925045,0.014490579,0.055246558,-0.11137895,-0.015299329,0.20765959,0.24257752,0.3904553,0.51045257,-0.20781,-0.6397267,0.43750033,-0.23509185,-0.060038514,-0.7575669,0.04116699,0.72642744,-0.6888481,0.6660863,0.2816228,0.2412967,0.0005874634,-0.7233216,-0.505189,0.0619672,-0.16957353,0.6151916,0.22196104,-0.7454921,0.43265432,0.15786965,-0.15087345,-0.5698608,0.44610432,-0.06586236,-0.3955121,0.21559276,0.4052923,-0.1094376,0.006196614,-0.12256312,0.2858801,-0.35449067,0.33365205,0.40336365,-0.07145465,0.31251583,-0.117881395,-0.112981595,-0.6641237,-0.11849371,-0.48330233,-0.39246064,0.10250444,0.032140467,-0.0011227727,0.0810072,-0.13437538,0.4677908,-0.27236104,0.1792644,-0.098575406,-0.13286063,0.39033076,0.5201444,0.32305226,-0.5011608,0.57998973,0.16379617,-0.08150639,-0.15095052,0.18175101,0.46191353,-0.0024149332,0.39887384,-0.19049014,-0.09912773,0.20199881,0.53278035,0.12862302,0.3641677,0.19213843,-0.08006895,0.44494513,0.13379478,0.100377955,-0.15893278,-0.35040876,-0.12079006,-0.18685147,0.18699713,0.44162613,0.14844628,0.26871502,-0.07824384,-0.27277336,0.33573744,0.11186642,-0.02087465,-1.1934279,0.31146857,0.23803079,0.6691004,0.5144306,0.066476874,-0.15505812,0.57815325,-0.28899843,0.06594237,0.34589264,0.19229849,-0.34362388,0.5799898,-0.50858814,0.5005327,-0.121134624,-0.0382201,0.12122953,0.14358537,0.34275696,0.9740499,-0.0705588,0.0634646,-0.08719325,-0.07946552,0.08120935,-0.29605958,0.07938492,-0.57864565,-0.4367546,0.70917755,0.44580102,0.39985013,-0.38411298,-0.112018906,0.087145574,-0.18680277,-0.018145531,-0.20232101,-0.081634186,0.09102559,-0.6161216,-0.19772004,0.6141828,0.032195706,-0.17094676,-0.012858899,-0.22671463,0.18195443,-0.1067465,-0.015660303,-0.15393662,-0.62827456,-0.06883267,-0.40935966,-0.41282773,0.3763263,-0.5499295,0.33729276,0.16339335,0.082933135,-0.2522785,0.34478718,0.19407165,0.87583107,0.16476618,-0.09144764,-0.35377407,0.22481915,0.34209225,-0.31383628,-0.24830005,-0.2923266,0.2093154,-0.629765,0.30869415,-0.16351387,-0.37235922,-0.14210609,-0.036959093,0.12860553,0.41258934,-0.23611978,-0.32675686,0.23154722,-0.03114142,-0.30149284,-0.08395272,-0.19977435,0.37160847,-0.021294089,-0.10332978,0.03244876,-0.06087578,-0.16416971,0.16517189,0.05217771,0.24506333,0.26346764,-0.043459933,-0.2840887,0.108072124,0.033332806,0.5401967,0.10479874,-0.12695286,-0.19946463,-0.3194731,-0.34536794,0.25321573,-0.13504359,0.18913738,0.025534958,-0.31480995,0.85524356,0.226125,1.1580317,-0.005533342,-0.32209182,0.1559746,0.5104757,0.041869514,0.036043707,-0.34315905,0.99964315,0.6320324,-0.14478496,-0.1746478,-0.35407522,-0.052383218,-0.0727511,-0.21970621,-0.26662752,-0.099706754,-0.72055435,-0.103986636,0.047416415,0.23213172,0.21641183,0.02140155,-0.07101255,0.06272532,0.1616803,0.40588382,-0.48470584,0.017203467,0.17608707,0.3185388,-0.036544677,0.23420194,-0.27378052,0.4079385,-0.5517897,0.21722205,-0.5621742,0.13082547,-0.17333055,-0.33627835,0.15599771,-0.14431424,0.23304522,-0.38792658,-0.14097242,-0.37812957,0.5922222,0.24463074,0.2156934,0.9468756,-0.232565,-0.06868649,0.12213315,0.49581188,1.3650645,-0.29732993,-0.03853726,0.44849905,-0.21776056,-0.51121366,0.122484826,-0.38230306,0.21967325,-0.23308639,-0.41024202,-0.26228124,0.1791481,-0.11417433,0.065961845,-0.032695644,-0.53748596,-0.15482001,0.42376885,-0.08362873,-0.21928255,-0.25412118,0.29352045,0.64750713,-0.2698063,-0.41398063,0.092028685,0.12020135,-0.2187498,-0.607102,0.032888353,-0.2201349,0.3329258,0.20600162,-0.41402632,-0.029560208,0.32335013,-0.5108417,0.13796763,0.38490602,-0.34731102,0.10464071,-0.15060265,-0.27263603,1.1986934,-0.15522964,0.13514559,-0.56443584,-0.5857457,-0.9081162,-0.20998017,0.3003344,0.22455932,-0.03533889,-0.58149445,-0.10997729,-0.13785385,0.027412133,0.050059777,-0.530718,0.40499425,0.05920433,0.5374713,-0.23242,-0.9915322,0.011420386,0.07058044,-0.33562994,-0.5261412,0.6297253,-0.11653619,0.5752772,0.06435986,0.18025272,0.3351088,-0.6402183,0.2002122,-0.20088245,-0.10306446,-0.8076902,0.06338789,862 +554,0.47938243,-0.22776045,-0.74964905,-0.031775985,-0.5438528,-0.06639053,-0.17381528,0.39498553,0.34679905,-0.456215,-0.15615201,-0.15596308,-0.113086395,0.1500201,-0.09280651,-0.33948353,-0.028788034,0.28758717,-0.6690367,0.6090703,-0.108517095,0.25684884,0.071390346,0.4552628,0.36427525,-0.055822365,-0.121657714,0.15951481,0.18054684,-0.4176989,-0.14384513,0.4178524,-0.64708287,0.16022623,-0.19317296,-0.5882912,-0.22373776,-0.49286154,-0.481,-0.99704015,0.4390831,-0.92092687,0.774572,-0.13431482,-0.2908051,0.10549487,0.36382753,0.5374657,0.16503142,-0.07860654,0.21496959,-0.1909478,-0.057073146,-0.0892572,-0.29916644,-0.32649246,-0.613102,-0.04053622,-0.2963241,0.010667642,-0.3633256,0.294074,-0.35654473,0.0068045002,-0.29164773,0.47616586,-0.32001713,0.20614156,0.29614645,-0.034905277,0.32166067,-0.66134655,-0.15777819,0.018049097,0.37425962,-0.17386246,-0.27675563,0.3217465,0.30125827,0.35362098,-0.08935453,-0.18062283,-0.46314815,-0.006571608,0.061895035,0.5877479,-0.034767024,-0.08863293,-0.012661542,0.16437258,0.5782421,0.4339837,0.3746013,-0.124572836,-0.20477247,0.0014517137,0.035444718,0.62220496,0.4911165,-0.2268349,-0.29112318,0.36677262,0.7399791,0.44707918,-0.21310018,0.13715439,-0.09520525,-0.35731477,-0.07959758,0.14976263,-0.2712461,0.25347334,-0.10357902,0.22865131,0.59784526,-0.17461076,-0.1354154,0.21146478,0.13153486,-0.05390389,-0.21579586,-0.35796064,0.35663584,-0.5613931,0.3340712,-0.14639214,0.549763,-0.0206925,-0.5969481,0.20782961,-0.7862474,0.28596547,-0.07598181,0.3587122,0.8399,0.4505779,0.35540643,0.8484308,-0.32539457,0.033689238,-0.00020907607,-0.3818288,-0.07568431,-0.38829255,0.107984595,-0.60618484,0.054696497,-0.16183874,-0.11022111,0.19401698,0.56321335,-0.6936967,-0.30307063,0.21235183,0.84685594,-0.16310452,-0.20194641,1.0139469,0.9281321,1.3411037,0.009239486,1.0947258,0.11181196,-0.24065559,-0.035576124,-0.1129484,-0.7055521,0.38195363,0.46948576,-0.43848404,0.36906785,0.14872932,0.10749883,0.49179095,-0.3865169,-0.08792155,-0.123853885,0.12802882,0.09456998,-0.4126838,-0.4650903,-0.16301309,-0.12607722,0.0057399,0.18812922,0.28939387,-0.068932876,0.4157105,0.04914232,1.4005868,-0.12614915,0.108084805,0.100678764,0.3536925,0.32524768,-0.24811636,0.08300663,0.3461339,0.2999176,0.19734277,-0.49771836,0.14066723,-0.33955622,-0.19503203,-0.23147523,-0.30903023,-0.35735956,0.0045306683,-0.39974806,-0.42493296,-0.34959134,-0.205369,0.46545961,-2.5422032,-0.16683027,-0.11444773,0.33922026,-0.23422733,-0.38313046,0.014516584,-0.5491476,0.44392848,0.18352117,0.5844275,-0.57551205,0.39521822,0.5273388,-0.8050427,-0.015843919,-0.67731637,-0.01828573,0.16441081,0.06973997,0.011228268,-0.10803853,0.3265234,0.092891656,0.42352405,0.05737073,0.105231844,0.49506998,0.63587844,-0.23368022,0.62091285,-0.09067775,0.5793248,-0.083765306,-0.2398635,0.49819872,-0.31250882,0.43853092,-0.053949177,-0.09942935,0.85938686,-0.3999241,-0.9480504,-0.5709696,-0.049586363,1.0395749,-0.23758289,-0.54088014,0.04223531,-0.5743666,-0.28384298,-0.118953146,0.37471825,-0.18577574,-0.117709294,-0.7980694,-0.2231175,-0.15757118,0.091576375,-0.008008974,-0.13358167,-0.5599812,0.8835267,-0.073889144,0.59774834,0.3249642,0.283231,-0.41866925,-0.45544878,-0.022527264,0.6008795,0.5634824,0.05210485,-0.43329912,-0.15111078,-0.5535656,-0.1212539,0.12273879,0.65246964,0.38441977,-0.21040365,0.23269646,0.26592332,0.0163816,0.116366304,-0.18084052,-0.2924761,-0.26422423,-0.16824667,0.6059043,0.6855841,-0.14246161,0.5432463,0.10239391,0.25345626,-0.19522773,-0.61425257,0.271211,1.2632045,-0.244611,-0.5405409,0.6436648,0.29433897,-0.11497844,0.45297888,-0.57901317,-0.31062979,0.4916831,-0.2056332,-0.5413789,0.1667176,-0.30039278,0.07860536,-0.8458914,0.29388794,-0.60561484,-0.5489617,-0.5360878,-0.09682656,-1.1562736,0.3709853,-0.24664824,0.013481204,-0.37264535,-0.37572393,-0.09655305,-0.56709814,-0.9120456,0.17544119,0.20167133,0.7477876,-0.22767957,0.13919519,-0.18814765,-0.51808584,-0.46696812,0.15034185,0.15206158,0.467511,0.0054851854,-0.40140423,-0.031054864,0.13130835,-0.41357282,-0.08916674,-0.5726207,-0.47250134,-0.17785828,-0.42627972,-0.16665348,0.6127287,-0.32415804,0.10478865,-0.24430534,-0.049310885,0.10855363,0.26585212,-0.06576974,0.20726798,0.10705024,-0.14803383,0.10987549,-0.14237447,0.38909343,-0.04170062,0.26747105,0.31457457,-0.24458782,0.38177797,0.33508712,0.8107303,-0.23381504,0.84983784,0.3334581,-0.23468582,0.28309295,-0.22017081,-0.39369884,-0.74198097,-0.0893146,0.24419971,-0.3801566,-0.5537599,0.012399912,-0.55440426,-0.84952325,0.49123886,0.110596575,0.4673951,-0.11051337,0.58216125,0.6473392,-0.32015246,-0.10450388,-0.042508613,-0.18896627,-0.5449969,-0.21373029,-0.4806977,-0.50442064,0.069110304,1.198556,-0.4425719,0.004426343,0.26311398,-0.19148722,0.17666544,0.3810249,-0.17631824,0.0014923981,0.52165484,-0.078084946,-0.50834703,0.41700724,-0.0866753,-0.08288902,-0.62437105,0.5098224,0.47455353,-0.55014575,0.43207482,0.30053225,-0.050000932,-0.2866757,-0.7445795,0.176194,0.19453947,-0.34364942,0.4281683,0.4019857,-0.6191769,0.30148387,0.44241902,-0.052078005,-0.8458162,0.61133987,-0.069721244,-0.34069198,-0.10849695,0.39713436,0.15105763,0.10451,-0.14321454,0.24386522,-0.4039598,0.35555914,0.10348011,-0.19643189,-0.059480082,-0.20857792,-0.1592095,-0.8298355,0.3303122,-0.5079511,-0.2629766,0.3578183,-0.015747238,0.14741288,0.21464872,0.30580592,0.40225765,-0.18814205,0.06885841,-0.39862567,-0.29373983,0.42914596,0.48106307,0.43589684,-0.546443,0.5570496,0.06652866,-0.360173,0.045971163,0.122719206,0.48303723,-0.12624769,0.5213043,0.14817272,-0.22401063,-0.06854073,0.75364864,0.07913514,0.3061602,0.023711009,-0.05853339,-0.18945524,0.097128786,0.41405487,-0.32456216,-0.7367789,0.08537185,-0.3082618,-0.0643021,0.5695176,0.05619853,0.053548973,-0.029074745,-0.3673934,-0.031082975,0.09877549,-0.04928146,-1.2747542,0.23338492,0.3139297,1.1168422,0.35814118,0.04055941,0.08631094,0.6877007,-0.17432642,-0.009840921,0.3859717,0.14835286,-0.3281853,0.4571086,-0.9438788,0.5224144,-0.052113812,-0.10861822,-0.002772441,-0.010258148,0.467122,0.7085724,-0.36958483,0.018699495,-0.187883,-0.43640712,0.1887491,-0.25339296,0.15942565,-0.60230285,-0.30751067,0.81140184,0.49348396,0.45090756,-0.25186256,0.05639439,0.08553567,-0.22898583,0.18774328,0.13575427,0.24478364,-0.10946907,-0.33483216,0.09748774,0.41641232,-0.115203716,0.05614529,-0.043620892,-0.10835149,0.20236437,-0.045502875,0.09939015,-0.0756238,-0.90037507,-0.09220453,-0.31151256,-0.4316217,0.2978646,0.2200683,0.0903033,0.30671415,0.08220853,0.06443719,0.43607172,-0.018110845,0.64988005,-0.030374408,-0.05241229,-0.34686136,0.44045833,0.0124675855,-0.07975823,0.05269432,-0.011865156,0.3587661,-0.4416117,0.38880372,0.11181191,-0.48623782,-0.041821092,-0.03564691,-0.02911334,0.45912385,-0.3267738,-0.15087709,0.040566478,-0.30494785,-0.2416654,-0.34956446,-0.017727902,0.17299087,0.2047088,-0.1602256,-0.25534335,-0.19290665,-0.2579786,0.38575882,-0.088460505,0.37580046,0.33142212,0.099041514,-0.57387215,0.01722994,0.22629833,0.46928993,-0.22557798,-0.24341127,-0.30383438,-0.5436711,-0.5568233,0.63357097,0.02578081,0.38576117,-0.019015934,0.056432564,0.8651375,0.1094829,1.2360991,0.018776234,-0.39288646,0.14851062,0.57085717,-0.11643398,-0.24659754,-0.36244455,0.77334875,0.6250834,-0.06830268,-0.022676617,-0.33576226,-0.0026925504,0.077020206,-0.23873946,-0.017574403,0.11913038,-0.35656387,-0.2663031,0.15092683,0.16369796,0.11899899,-0.29247943,0.062359374,0.5236944,-0.11969195,0.1860112,-0.3793116,-0.5302975,0.23160417,0.2412387,-0.18328044,-0.02086414,-0.44319472,0.28538498,-0.6009051,0.065456346,-0.23820628,0.25446972,-0.27759793,-0.3304432,0.30602494,-0.1057306,0.31010875,-0.40790758,-0.2833498,0.011416833,0.2981462,0.2277364,0.1726049,0.56962675,-0.3639253,-0.12390872,0.19915661,0.38449672,0.9351473,-0.20593643,-0.18010654,0.25502774,-0.4202955,-0.5709812,0.39723414,-0.57404226,0.22632404,0.06199738,-0.14681199,-0.5030628,0.15780458,0.28797534,0.1022443,-0.09429816,-0.7508407,-0.0049436945,0.20585822,-0.429528,-0.01314389,-0.32405517,-0.14880113,0.60727775,-0.022401124,-0.42105085,0.111994624,0.1488794,-0.07057163,-0.4202872,0.20445867,-0.40788773,0.22715054,-0.05711058,-0.49680445,-0.2288464,0.2173533,-0.47517458,0.090319335,0.24088947,-0.18046965,0.15380894,-0.46836042,0.13282931,0.7981942,-0.44117674,0.032003973,-0.36587897,-0.4798007,-0.5992952,-0.14075306,0.09326481,0.13200146,-0.004839069,-0.900442,-0.09618742,-0.2689174,-0.32465532,-0.14955887,-0.18471071,0.43208963,0.113600075,0.2369739,-0.23969303,-0.9909104,0.2964404,-0.019437905,-0.19057444,-0.5877033,0.5482923,0.040617798,0.6747284,0.13865443,0.1450989,0.27481455,-0.5161071,0.19768289,-0.09910019,-0.07147283,-0.850321,-0.17153047,866 +555,0.5193529,-0.17962328,-0.3965249,-0.18880227,-0.30966786,0.02640848,-0.047390465,0.65601766,0.2837017,-0.47314295,-0.21843645,-0.10927932,0.13998489,0.5197814,-0.0069974447,-0.44208997,0.1039061,0.26571113,-0.4867702,0.6281128,-0.46924558,0.16448161,-0.09514863,0.40188932,0.43095937,0.09834416,0.00027686357,0.15893795,-0.17123617,0.048225246,-0.1264739,0.34190795,-0.27086616,0.24055506,-0.2163398,-0.3214176,-0.21131544,-0.502359,-0.26951295,-0.6498841,0.31132102,-0.6370291,0.37227586,-0.11274228,-0.34915283,0.22975956,0.1976473,0.22693941,-0.32874367,-0.19579704,0.07947792,-0.09575714,-0.12532414,-0.05811627,-0.16467205,-0.36070794,-0.70786476,-0.05014009,-0.3898941,0.042776972,-0.28858948,0.13960981,-0.2929661,0.010824417,0.077328645,0.6006076,-0.42901486,0.1697291,0.17409717,-0.038622625,0.005322439,-0.5747321,-0.30064696,-0.19646427,0.21883737,0.018060764,-0.35930827,0.28054458,0.40673324,0.44774985,-0.044509497,-0.11573855,-0.34535983,0.06945065,0.06914034,0.49193054,0.07824225,-0.40009475,-0.1368499,-0.21386386,0.12332932,0.20520978,0.2988744,-0.15313877,-0.14205137,0.024347845,-0.23106606,0.27696827,0.39526787,-0.35391918,-0.3376624,0.4393147,0.44808248,0.28246963,-0.17845072,0.026760248,-0.034768153,-0.5571431,-0.12353051,0.051396422,-0.2991028,0.50387895,-0.2151181,0.20526817,0.59783286,-0.08177618,-0.03787217,0.118791,0.20187671,-0.07496969,-0.36771965,-0.33571735,0.21968283,-0.38192573,0.13113661,-0.1480736,0.76690614,0.15038744,-0.695292,0.26441005,-0.5685922,0.142071,-0.06930179,0.41526034,0.99103016,0.28700966,0.35933194,0.667401,-0.29117817,0.029950961,-0.0069094067,-0.20355843,-0.0010319267,-0.31126812,0.060501285,-0.48300505,0.025574284,0.043494377,-0.04886141,0.20828147,0.6906665,-0.4398176,-0.19408526,0.23735705,0.7011841,-0.27990523,-0.26785922,0.95544857,0.9372263,1.072431,0.10102231,0.9671498,0.1338282,-0.06539095,0.28423095,-0.24351396,-0.75299126,0.2667502,0.24061991,0.08518966,0.09677396,0.17248698,0.057484265,0.43565485,-0.3739381,-0.030062595,0.018735275,0.24622166,0.14722836,-0.1176297,-0.44786564,-0.4304983,-0.1478004,0.012848245,0.08322836,0.25423953,-0.28806168,0.5162043,-0.08858901,1.541303,0.01833306,-0.029238794,0.007379302,0.46233818,0.2296857,-0.38164225,-0.21773735,0.30532256,0.39553586,-0.022195837,-0.6274468,0.25870752,-0.20233901,-0.49856558,-0.1398387,-0.51602566,-0.2184647,-0.007966815,-0.4118983,-0.19706014,-0.013358661,-0.4729775,0.43650243,-2.8626676,-0.17670943,-0.068839915,0.41245696,-0.07329493,-0.38671902,-0.21139695,-0.51535696,0.3484476,0.2586972,0.47613975,-0.61606866,0.19289216,0.25902802,-0.60453415,-0.08131168,-0.66874653,-0.19986336,0.05944633,0.25037065,-0.048326038,0.19097233,0.10932697,0.083475575,0.6449192,0.07021308,0.18189184,0.3293624,0.267405,-0.052458797,0.40414906,-0.14023522,0.5998946,-0.3925438,-0.23645894,0.15220584,-0.45816627,0.2520947,-0.16089192,0.11608045,0.5830742,-0.51513225,-0.9097719,-0.5400539,-0.046687774,1.0750662,-0.23801358,-0.214853,0.34422487,-0.6679195,-0.15880392,-0.087156974,0.58853287,-0.094148435,-0.2850318,-0.6510878,-0.061689913,-0.022594512,0.12659942,-0.15436423,-0.1626147,-0.36556175,0.55180836,0.012508056,0.52844256,0.07222437,0.2416247,-0.4079368,-0.4295521,0.014058909,0.710571,0.27075213,0.109567784,-0.29979092,-0.15839057,-0.4830532,-0.11518902,0.22309522,0.40275216,0.54374546,-0.061338995,0.2633726,0.27537006,0.07180939,0.07825339,-0.0884333,-0.16111015,-0.22337784,0.03555782,0.49208885,0.63227284,-0.18366599,0.5535268,-0.047811057,0.1457734,-0.27851316,-0.5113456,0.5073102,1.0314779,-0.23078415,-0.27146694,0.72787297,0.41562057,-0.23935713,0.44093704,-0.44674602,-0.24709122,0.38292837,0.021578103,-0.22247872,-0.04510615,-0.3402031,0.20654067,-0.8452458,0.27515247,-0.12308257,-0.65526295,-0.5691768,-0.07564402,-2.4007506,0.06700749,-0.1774068,-0.2241421,-0.09633376,-0.28107062,0.14540707,-0.6625501,-0.58224815,0.16205215,0.10137181,0.81194556,-0.09472559,0.008718112,-0.19849475,-0.4067946,-0.26347256,0.13220437,0.0069051045,0.6660531,0.0886731,-0.47056586,0.22504674,-0.19556591,-0.42847568,0.019559333,-0.5462479,-0.40068844,-0.13863327,-0.5309342,-0.24806793,0.6262274,-0.38593602,0.014952366,-0.21366024,0.021863086,0.0108713405,0.23161362,0.07967348,0.08959078,0.099360034,-0.085917644,-0.022230055,-0.123484954,0.1405725,0.019472046,0.18881914,0.4630086,-0.036349542,0.37390164,0.62437767,0.71281826,-0.2505429,0.9261208,0.5837002,-0.03593443,0.22831662,-0.21324016,-0.1334983,-0.37061113,-0.18304382,-0.022026064,-0.48898554,-0.47668096,0.05086572,-0.2614945,-0.930795,0.44251353,0.014125243,0.2836854,-0.006516001,0.07750527,0.46784395,-0.17820075,-0.034085162,-0.16722608,-0.13581824,-0.6237432,-0.37571263,-0.6104426,-0.4941521,0.1182534,1.1273639,-0.3227608,0.1026022,0.05075541,-0.4196349,-0.09899149,0.17205046,-0.076085545,0.13732424,0.2319933,-0.19177534,-0.54814637,0.40538588,-0.11975847,0.02130783,-0.5115372,0.2754957,0.3992273,-0.5289959,0.45372456,0.20503238,0.004368452,-0.36184642,-0.6305479,-0.1868533,-0.09702628,-0.15299883,0.37670064,0.30847988,-0.8209496,0.41575027,0.3011865,-0.1579796,-0.786754,0.5311962,-0.11198234,-0.07665871,-0.15504916,0.29668516,0.24073033,0.0703457,-0.23925444,0.23646608,-0.6006724,0.2751477,0.2832052,0.009003247,0.21403544,-0.40473005,0.032563835,-0.6809363,-0.067649834,-0.59345293,-0.20474036,0.21140157,0.20007013,0.24704061,0.25948456,0.18477938,0.23980124,-0.27678972,0.06936436,-0.116804846,-0.23042575,0.21731676,0.49061647,0.5660263,-0.31828216,0.57589877,0.10824107,-0.16801323,0.1323895,0.005197712,0.26945996,0.0939657,0.46130952,-0.028934862,-0.28160638,0.09887556,0.78713787,0.17921515,0.31620765,0.005146418,-0.28764796,0.1977867,0.0872281,0.3130724,-0.04136363,-0.44627413,0.031714942,-0.4341829,0.13901098,0.50017166,0.083068624,0.19812274,-0.022550983,-0.30945295,0.023533517,0.083111964,0.0121959,-1.4057205,0.38985476,0.2008716,0.83579594,0.4870886,-0.12586276,-0.092492394,0.6445876,-0.21481732,0.20084274,0.39986873,-0.005131747,-0.45448187,0.5180301,-0.781373,0.6438217,-0.13829136,0.009894414,0.07903488,0.023824135,0.5028561,0.70302665,-0.09379648,0.025816783,0.17630611,-0.44356495,0.21947268,-0.3954466,0.04138233,-0.72561044,-0.13665785,0.74966496,0.44899717,0.34652594,-0.21540888,-0.046337564,0.093756296,-0.24188769,0.03972217,0.037061363,0.11815793,-0.060709093,-0.6501504,-0.2467697,0.4977367,-0.10705304,0.25958258,0.23913701,-0.2395508,0.1321262,-0.0784866,-0.020234644,-0.092305735,-0.7619607,-0.15364514,-0.28143847,-0.47187892,0.5733244,-0.2044706,0.22702101,0.27013156,0.067992084,-0.3367508,0.48608828,0.08857578,0.73196495,-0.035913676,-0.004399076,-0.31477872,0.2503764,0.30548224,-0.21640562,-0.0062605953,-0.13988099,0.0091180885,-0.49825588,0.44849485,0.0166028,-0.307439,-0.12390698,0.038038675,0.10511704,0.4913877,0.0124847805,-0.047121465,-0.24946356,-0.16495414,-0.22919454,-0.09936724,-0.06651711,0.4082925,-0.010089176,-0.025917659,-0.1627396,-0.005234382,0.015845418,0.27451274,-0.13570824,0.2499014,0.25404564,0.006221022,-0.29844937,-0.10467325,0.24049632,0.44931015,0.021803753,-0.29651424,-0.29231736,-0.2159365,-0.4678336,0.13679527,-0.1330849,0.44527408,0.18129714,-0.17823759,0.6145378,-0.08433326,1.1149886,0.050952222,-0.35766461,0.23322406,0.42698365,0.08950003,-0.06823533,-0.17861591,0.744547,0.35789683,-0.07527838,-0.13782267,-0.40567583,0.03591678,0.42403665,-0.18816169,-0.2985301,0.014336115,-0.7200459,-0.08062149,0.14545189,0.05140559,0.25250444,-0.20210387,0.13544856,0.37108323,0.00848532,0.21122684,-0.37302878,-0.031394333,0.35111883,0.4091335,0.13649361,0.20819266,-0.50778455,0.36314663,-0.6181795,0.07819908,-0.13738617,0.32808104,-0.31108174,-0.3879804,0.22433938,0.3255416,0.4249865,-0.1832769,-0.3419671,-0.37504014,0.5734238,0.11818821,0.114015065,0.43383935,-0.2822892,-0.09969691,0.18940042,0.33737808,0.82740813,-0.15319416,-0.111331,0.15569447,-0.38577884,-0.71766835,0.40038306,-0.35907593,0.31361768,0.07121542,-0.12170475,-0.66742355,0.18819237,0.362662,0.107387125,0.21831386,-0.46039346,-0.23376642,0.0686728,-0.18444307,-0.0860679,-0.30321032,-0.057559013,0.41113958,-0.28094894,-0.337277,0.10930992,0.22727826,-0.1419718,-0.47358927,0.04699471,-0.42938414,0.20840214,-0.05796246,-0.46315402,-0.18172337,-0.05249718,-0.35889718,0.18788941,0.07302987,-0.20102195,0.103648655,-0.427768,0.011974518,1.014284,-0.10581169,0.29098886,-0.41483185,-0.46384576,-0.7869204,-0.32951233,0.47366497,0.17914446,-0.14279394,-0.6966325,0.056809943,-0.020807458,-0.16535772,-0.1494209,-0.42331442,0.476155,0.1594439,0.040384553,0.14157578,-0.7748137,0.040660437,0.1277811,-0.10367259,-0.48651966,0.41065088,-0.07305244,0.92247254,0.124697626,0.12451149,0.18896106,-0.36245912,-0.048982166,-0.22594154,-0.12134386,-0.32761684,0.008362202,874 +556,0.55488044,-0.22715823,-0.3795924,-0.12701465,-0.13651934,0.12283184,-0.22486873,0.6002191,0.24425444,-0.4415923,-0.1343171,-0.032984674,0.008434228,0.019491931,-0.11093016,-0.48148552,-0.017692907,0.075059,-0.27045926,0.3732612,-0.5460575,0.2683435,-0.092136584,0.35516542,0.11756963,0.1668329,-0.06767933,-0.06069988,-0.13948084,-0.21519968,0.061898865,0.24333243,-0.58632106,0.06835587,-0.11983796,-0.40229398,-0.12769897,-0.5724124,-0.39285812,-0.7704135,0.28928787,-0.9094735,0.4524333,0.1317486,-0.4267009,0.35067686,-0.19510286,0.20008779,-0.17094228,0.040907733,0.26315764,-0.07278638,0.0010567562,-0.10362619,-0.10608566,-0.2321088,-0.54827017,0.10273888,-0.38184372,-0.124244556,-0.24286301,0.15388565,-0.30871448,-0.12488679,-0.24161138,0.3629282,-0.45100856,-0.08862404,0.08939104,-0.03143059,0.39647225,-0.5468251,-0.171181,-0.077837445,0.22935757,-0.28634712,-0.32901338,0.19530432,0.3367004,0.5148375,-0.1128241,-0.13527003,-0.36083212,0.1356364,0.13530329,0.49372083,-0.22359411,-0.59569687,-0.097674794,-0.10667891,0.24566521,0.17574856,0.15612806,-0.20456335,-0.12040043,0.2222689,-0.22126658,0.46804184,0.6571273,-0.2896431,-0.20709576,0.34692413,0.49503216,0.15499112,-0.12884596,0.0154784685,0.108754106,-0.526014,-0.19602226,0.13776739,-0.19433452,0.40351883,-0.10704831,0.29584482,0.69459754,-0.30753297,0.2185955,0.22410974,-0.04856914,0.023588022,-0.29284737,-0.29147768,0.16631912,-0.48442274,0.17229751,-0.30400744,0.72883,0.13775861,-0.76492935,0.3844537,-0.48072094,0.045944843,-0.1387256,0.53459007,0.70714986,0.3556536,0.26976115,0.6405697,-0.33534318,-0.08957333,-0.13141893,-0.2789542,0.14899768,-0.14907227,-0.0037843627,-0.43745184,-0.24052326,0.07329665,-0.18877585,-0.0016310407,0.43789297,-0.5867868,-0.053981643,0.13786367,0.53404385,-0.25914285,-0.029323488,0.8640571,0.98834556,0.97438276,0.16906306,1.0234979,0.2452947,-0.14898984,0.3759132,-0.37841627,-0.6628066,0.29850063,0.25092018,-0.0032212224,0.15605898,0.06650684,-0.12277087,0.4283007,-0.41154522,0.059272546,-0.26786572,0.17832766,0.038321298,-0.12513268,-0.3631291,-0.38391113,-0.19476545,0.06289879,0.04535056,0.33420447,-0.33622423,0.10303626,0.05032461,1.4408578,-0.13152243,-0.066247895,-0.079797566,0.51525027,0.14596434,-0.29285505,-0.029661626,0.28084844,0.3462816,0.044803053,-0.66899925,0.17248301,0.008392648,-0.38801533,-0.1025793,-0.31243473,-0.057542853,-0.052618004,-0.53171456,-0.08544419,-0.11490888,-0.37879896,0.47824892,-2.747987,-0.19918834,0.0882544,0.4476969,-0.23411933,-0.43048888,-0.12190567,-0.5208401,0.42728895,0.304069,0.41876712,-0.7324019,0.42338654,0.41770586,-0.5927825,-0.11297672,-0.86337775,-0.16778103,-0.119612746,0.22290137,0.15578164,0.024138058,0.08657255,0.10121875,0.49731573,0.06594188,0.16347383,0.1328688,0.47218376,-0.12025845,0.47657198,0.033843443,0.5181894,-0.14580072,-0.28921917,0.42370838,-0.538335,0.18564582,-0.13680194,0.09221654,0.38109216,-0.463674,-0.93202984,-0.77590746,-0.27059886,1.1301317,0.0019939903,-0.446621,0.25503987,-0.3668783,-0.38539657,-0.16507605,0.62974614,-0.029178295,-0.21567336,-0.80439466,-0.073312655,-0.17173631,0.063223764,-0.092583634,0.030326933,-0.43904427,0.6678272,-0.08979644,0.43128517,0.32929605,0.20714703,-0.12184825,-0.40423235,0.03434486,0.94914395,0.34495422,0.1644993,-0.3117953,-0.1919948,-0.2963799,0.0768669,0.07953213,0.5715479,0.70980805,-0.027511433,0.10746704,0.19435,-0.078945376,0.008431016,-0.17041557,-0.24046397,-0.18369389,0.031070169,0.6567007,0.57460606,-0.15245779,0.301334,-0.11202401,0.15509859,-0.2649922,-0.34676674,0.4450086,0.8754038,-0.09056697,-0.14127393,0.56584305,0.50155747,-0.26694804,0.43822408,-0.6174597,-0.17527452,0.31616473,-0.22991194,-0.30688924,0.28509393,-0.3459498,0.109492145,-0.74079263,0.4035658,-0.3846743,-0.5207566,-0.644834,-0.043590274,-3.257904,0.14359252,-0.1658493,-0.27299246,-0.058843784,-0.27776128,0.39804247,-0.533082,-0.42708096,0.21932228,0.044995725,0.7399325,-0.065996364,0.04070919,-0.33944082,-0.21412696,-0.3490012,0.05294547,0.21031882,0.3811057,0.01728341,-0.26420212,-0.023122687,-0.14445817,-0.36188895,0.06356991,-0.48670968,-0.5806173,-0.099318095,-0.3578735,-0.3579809,0.65840524,-0.22090718,0.055820864,-0.12106816,-0.10833882,-0.16309164,0.5038094,0.08052849,0.023976663,-0.022111658,-0.026748335,0.055162173,-0.24470337,0.35304165,0.10671002,0.2303777,0.4364338,-0.18286574,0.17113106,0.55243,0.63104016,-0.064534985,0.9671955,0.4354175,-0.06758846,0.29083493,-0.20563592,-0.21686493,-0.41705108,-0.26602855,-0.017873066,-0.45815334,-0.39849648,-0.10073502,-0.41103896,-0.80018556,0.43027505,-0.08608309,0.07307492,-0.029952075,0.27139673,0.4987733,-0.04057467,0.021218743,-0.053336047,-0.051876523,-0.45241198,-0.21811703,-0.5718464,-0.48636946,0.15986072,0.9601097,-0.14904039,-0.043206684,0.07588738,-0.11761657,0.005042327,-0.022229016,-0.13702476,0.06944754,0.31752157,-0.1140024,-0.5978581,0.43646988,-0.019287612,-0.2347304,-0.504059,0.2610839,0.6461044,-0.56573135,0.491987,0.32883188,0.045533914,-0.05903382,-0.52323276,-0.19538583,0.004760951,-0.19998135,0.52650684,0.264401,-0.87867355,0.44900376,0.3863211,-0.15142976,-0.67538136,0.5284001,0.009667174,-0.24823202,-0.15164852,0.28963107,0.074291945,0.042498294,-0.101788215,0.3895468,-0.4730444,0.2722876,0.22474436,-0.09367216,0.3205886,-0.08953427,-0.010082798,-0.6152402,0.033664357,-0.50328976,-0.26566106,0.16099834,0.05373449,0.26796648,0.3557203,0.11058233,0.47769046,-0.33606863,0.053503275,0.015909484,-0.22198166,0.2843503,0.38065365,0.53492993,-0.34446397,0.51501155,0.013676521,-0.16802166,-0.020214388,0.043061238,0.49137232,0.040314887,0.36279067,-0.08830388,-0.2807498,0.25944406,0.9231976,0.18982725,0.52497786,-0.1073214,-0.12102204,0.193558,0.16641307,0.27637962,0.06053864,-0.53592414,0.04840519,-0.12012075,0.2474797,0.33237094,0.10317183,0.19432862,-0.19234875,-0.26309,0.051007856,0.23831403,0.001715924,-1.2007338,0.35889387,0.118779145,0.8154647,0.4939074,-0.056622125,0.13606076,0.5326241,-0.14947878,0.1933416,0.27389202,0.0561843,-0.5528793,0.38932195,-0.76440036,0.4501441,-0.07899164,0.016011333,-0.07383331,-0.32638973,0.45713836,0.66605407,-0.14760184,0.12335747,0.06305052,-0.3242225,0.20287749,-0.41086483,0.14949398,-0.62152106,-0.13669549,0.7587237,0.5344734,0.32990798,-0.119000874,0.047835026,0.1176408,-0.0662788,0.06012777,0.104947194,0.090033926,0.11268855,-0.6321629,-0.18820307,0.45617884,-0.17561838,0.05369047,-0.119344436,-0.24918607,0.2010593,-0.112466134,-0.19691607,-0.09960177,-0.647677,-0.12605955,-0.4861366,-0.3480284,0.3298485,0.033556823,0.25344032,0.27879095,0.10479142,-0.16893911,0.2938431,0.32297176,0.6875568,-0.028255591,-0.08405429,-0.55623287,0.16479579,0.27147022,-0.20219956,-0.27910742,-0.14225045,0.09298923,-0.55880296,0.36054182,-0.10994851,-0.28809687,0.14281282,-0.06640327,0.08274456,0.63693655,-0.22705524,-0.118022956,0.07618941,-0.18203174,-0.3469903,-0.043061376,0.018920472,0.29038954,0.29897076,-0.1029013,-0.05598822,-0.12893136,-0.07466829,0.43584174,0.18935837,0.4852921,0.465501,0.097476505,-0.31403446,-0.16389465,0.099412456,0.46678302,-0.07511644,-0.13211203,-0.50510174,-0.39530846,-0.35394734,0.2568925,-0.062074937,0.3394538,-0.030343028,-0.15420659,0.6822185,-0.04532034,1.0176725,0.06520516,-0.35490295,0.07741117,0.46477175,-0.062127948,-0.07745019,-0.50083864,0.87219316,0.31653878,-0.16270159,-0.039645854,-0.2617203,-0.14615504,0.18648466,-0.18724763,-0.085890554,-0.0017023215,-0.79130507,-0.12484356,0.24980481,0.2846509,0.14947358,-0.049269717,0.17598207,0.2762483,0.03528818,0.18747355,-0.5033251,-0.11930816,0.29017448,0.34634557,0.0040787435,0.11475862,-0.42236763,0.32911894,-0.4819991,0.0277407,-0.2212369,0.19296433,-0.083017126,-0.3310006,0.23820181,0.101788215,0.30402446,-0.2153085,-0.4111581,-0.16842987,0.45845684,0.0647049,0.29559273,0.48148638,-0.20817627,0.022233231,0.030873192,0.5503287,1.1058505,-0.13523814,0.030458795,0.393739,-0.3326395,-0.59218407,0.38621834,-0.29073408,0.19508068,-0.015346795,-0.16603628,-0.45715973,0.27704015,0.31785172,0.09050586,0.030574014,-0.628086,-0.31213313,0.29680255,-0.33460647,-0.20565839,-0.3380006,0.12124871,0.68060505,-0.32865795,-0.2236075,-0.0032229295,0.43910772,-0.28821254,-0.34752408,0.041092474,-0.39297876,0.2725293,-0.06703996,-0.3607933,-0.03902303,0.054449704,-0.33310333,0.17150028,0.11115767,-0.33792803,0.028268397,-0.39579174,0.016719852,0.9682507,-0.117674336,0.17412615,-0.5165018,-0.53511506,-0.80191123,-0.31882545,0.276504,0.15219344,0.011965058,-0.5525828,-0.02393519,-0.015142866,-0.096902624,-0.07166491,-0.4220059,0.5606151,0.1227963,0.32352918,-0.06558373,-0.68359745,0.07094427,0.16286013,-0.30879906,-0.5606972,0.5273419,0.02081178,0.9806785,0.13869074,0.13012211,0.14476313,-0.36098364,0.034058828,-0.27209345,-0.18648598,-0.7897073,0.086065605,875 +557,0.39488247,-0.19997959,-0.43699592,-0.0039151227,-0.2907138,-0.051050045,-0.0036331713,0.44921634,0.027646255,-0.2825396,-0.20711817,-0.09481721,-0.19821645,0.3910954,-0.25548384,-0.79209787,0.05228755,0.2318871,-0.44594035,0.69663006,-0.26898298,0.36057472,-0.019573828,0.20523386,-0.01583368,0.24267878,0.12495698,-0.27219364,-0.10334567,-0.1339259,-0.19951065,0.28154686,-0.48551694,0.3341494,-0.15890907,-0.34636542,0.20714493,-0.29865626,-0.3487368,-0.63267076,0.073129795,-0.5647502,0.44978228,0.08096479,-0.25115475,0.22616073,0.047237456,0.33883157,-0.13117139,0.115760446,0.04702434,-0.14350012,-0.062204685,-0.29673004,-0.06302728,-0.6047749,-0.49294403,0.07821224,-0.46931973,-0.15617307,-0.14181237,0.18537839,-0.33501264,-0.25936598,-0.051785927,0.24548234,-0.40995646,0.005643836,0.20671323,-0.118921466,0.052095167,-0.4663187,-0.07887031,-0.15635452,0.2891297,-0.17952968,-0.09863501,0.46508306,0.18862307,0.51648945,0.016778708,-0.16670358,-0.2813329,-0.062354248,0.208701,0.48355013,-0.24732392,-0.52778184,0.017182782,0.15922885,0.2546298,-0.010262383,0.11500375,-0.10830091,-0.08357586,-0.19542918,-0.113989905,0.12264431,0.6093479,-0.387221,-0.3913174,0.3189142,0.41052133,0.16254766,-0.038635153,-0.008794657,-0.09417762,-0.45568207,-0.20530435,-0.05249468,-0.15973212,0.46673384,-0.16541807,0.19698642,0.5452599,-0.20579691,0.17224367,0.17110778,-0.038638975,0.043948896,-0.02496733,-0.33953542,0.20379607,-0.43903634,0.02619608,-0.20008801,0.83048236,0.31363875,-0.74963826,0.26393533,-0.5851738,0.1488415,-0.051000684,0.60400474,0.58495444,0.5624619,0.18581448,0.50032926,-0.49809107,0.12726736,0.031714533,-0.4431083,0.13866243,-0.14361514,-0.13144575,-0.48838696,-0.040962357,-0.0027449557,0.010171788,-0.12812178,0.274389,-0.588163,-0.025643121,0.05651519,1.0060433,-0.36120692,-0.03627124,0.58990675,0.8607583,0.896698,0.0029544064,1.2075092,0.1675154,-0.3171478,0.17028628,-0.358479,-0.6405021,0.26834,0.32943103,-0.44179815,0.3640108,0.048589773,-0.01719155,0.28856444,-0.44282657,-0.006313903,-0.32051244,0.13763689,-0.026626838,-0.114764385,-0.51215154,-0.363901,-0.1182094,-0.01617889,0.007167284,0.47763205,-0.14268476,0.38773474,0.120439604,1.4706625,0.014845277,0.11911274,0.17486112,0.3420969,0.14450203,0.022384511,0.03739069,0.27926156,0.41051823,0.15212989,-0.46630386,0.1341649,-0.33203405,-0.56999713,-0.18452491,-0.30828324,-0.054095007,0.054425005,-0.3483436,-0.26823744,-0.15505747,-0.07525987,0.38954192,-2.303203,-0.075688355,-0.13407548,0.4050676,-0.28455588,-0.3028578,-0.13242128,-0.46548894,0.32995796,0.26403743,0.45470005,-0.6841094,0.45124266,0.3274321,-0.38266876,-0.20391466,-0.5124921,-0.03595299,-0.06482909,0.35800335,0.007243266,0.0817704,0.233992,-0.015995523,0.43762532,-0.17678107,-0.045251068,0.072403654,0.3772224,0.19302198,0.21895488,-0.037982155,0.4652402,-0.27167624,-0.1818588,0.24242045,-0.33184534,0.35461044,-0.04813773,0.11620922,0.2577932,-0.45274892,-0.7319463,-0.64801425,-0.27281886,1.2809925,-0.10673355,-0.3119371,0.21597059,-0.194525,-0.22964384,-0.26590568,0.21334377,-0.24195817,-0.118173905,-0.65398836,0.06560896,-0.08134011,0.21881175,0.08169503,-0.0641057,-0.40915638,0.7052566,-0.050204635,0.508496,0.2507456,0.300226,-0.11677415,-0.55853844,0.0434467,0.8601517,0.46835336,0.10084397,-0.07223344,-0.20471002,-0.16828208,-0.011606668,0.13359429,0.5294878,0.78408635,-0.13573101,-0.15293206,0.30759415,0.028561069,0.20819597,-0.13607314,-0.32661673,-0.099823415,0.07606203,0.62996197,0.5564872,-0.3144097,0.367344,-0.056477956,0.32746574,-0.11853778,-0.42218682,0.422148,1.1053528,-0.2076451,-0.21538304,0.50594825,0.54394287,-0.25711006,0.3469518,-0.6195498,-0.3372622,0.29061764,-0.2625089,-0.34909108,0.1766871,-0.27497137,0.18695049,-0.94700825,0.5416149,-0.37484366,-0.59302706,-0.62760955,0.043391377,-2.8937821,0.2105443,-0.36475992,-0.12683645,-0.13298628,0.049253013,0.1456015,-0.6412934,-0.38954082,0.14150031,0.19418846,0.4849401,-0.051209517,0.13309535,-0.16144025,-0.45606923,-0.27201742,0.056366306,0.1609364,0.17276919,-0.06685351,-0.3364501,-0.046074547,-0.14758097,-0.23291096,0.30879688,-0.6674255,-0.46549678,-0.23986255,-0.42288208,-0.3681019,0.6191518,-0.3787977,0.09653515,-0.11672739,-0.03103978,-0.22489478,0.23087946,0.017915037,0.10743613,-0.016209897,-0.06610339,-0.0027127224,-0.30921507,0.320138,0.063396834,0.5436383,0.34673074,-0.25418624,-0.003964737,0.598942,0.5456275,-0.057441156,0.56221575,0.46715063,-0.08604439,0.47881123,-0.4242387,-0.27482793,-0.51242507,-0.48373505,0.061897464,-0.2748265,-0.47525403,0.08649053,-0.35351494,-0.76646084,0.4428289,-0.060348682,0.04757599,-0.15669353,0.23076956,0.53244215,-0.06648241,-0.096518,-0.06236743,-0.10852115,-0.36346465,-0.26176247,-0.68437016,-0.41162387,0.14517102,1.1296313,-0.2758012,0.06925046,-0.08602141,0.019748032,0.0746476,0.05782688,0.07350115,0.14046678,0.23212826,-0.17242756,-0.7594079,0.54911345,-0.10656093,-0.25090298,-0.39073202,0.15576021,0.5460284,-0.8830667,0.4305007,0.3309633,-0.095649414,0.16951762,-0.5778006,-0.24425554,-0.0042212945,-0.22647245,0.22011207,0.17297229,-0.6229375,0.36979493,0.47502428,-0.39615324,-0.7460961,0.39202997,0.074879415,-0.38822412,0.17149891,0.33945873,-0.016937392,-0.030686041,-0.04639523,0.21512018,-0.40307465,0.34930345,0.22322032,-0.08015459,0.0972525,-0.1458836,-0.002755327,-0.8643292,0.1971599,-0.46047854,-0.32379475,0.29436556,0.24922906,-0.041365985,0.07004578,0.15046947,0.40899286,-0.46671385,0.110499434,0.05810701,-0.35301393,0.29977646,0.39826113,0.49153253,-0.39709058,0.455041,0.042486437,-0.108651124,-0.11450031,0.2645274,0.4475246,0.11945673,0.2994031,0.13660884,-0.16642275,0.41665748,0.87026364,0.20550118,0.50928855,0.068991445,-0.06899108,0.2758221,0.18366805,0.108988576,0.12836626,-0.3497052,-0.042775836,0.05737892,0.15322399,0.5596295,0.18017809,0.37711254,-0.1767064,-0.18475814,-0.086356066,0.29300722,0.11616521,-1.2543142,0.39792666,0.19353901,0.6506896,0.42854327,0.13805565,0.0299107,0.62008667,-0.10435744,0.085741356,0.25256783,-0.070705995,-0.52844536,0.45358583,-0.6439876,0.2993106,-0.012807927,0.044582307,-0.050230715,-0.17847402,0.32525244,0.76532257,-0.07067156,0.029371722,-0.12115259,-0.3527793,-0.070197694,-0.45351562,0.13124533,-0.5741591,-0.23841408,0.48663297,0.5352303,0.18145756,-0.18584435,0.040508162,0.08306075,-0.15339576,0.32771,-0.11973769,0.20711689,-0.00074437156,-0.5380959,-0.04592168,0.5769788,-0.27541155,0.07462952,0.12296919,-0.26449376,0.291154,-0.08317727,-0.04756403,0.012948991,-0.4969265,0.32968095,-0.2745428,-0.19281991,0.5051382,-0.06562516,0.13120793,0.26783773,0.1444603,-0.34840065,0.24627988,0.054857906,0.53448254,-0.08672232,-0.3751913,-0.43465024,0.22053264,0.001793061,-0.1886903,0.059398834,-0.09665998,0.01624448,-0.4073946,0.35315147,0.09356911,-0.055147383,-0.083177604,-0.24606626,-0.16143534,0.5096432,-0.120326765,-0.25822693,-0.057983078,0.008251756,-0.1999121,-0.08604712,-0.08588984,0.16453585,0.29213783,-0.05227215,-0.04712636,-0.1910158,-0.11146788,0.4067902,-0.039269663,0.3972764,0.33871168,0.16628745,-0.39485237,-0.08442932,0.18026781,0.28065804,-0.0842998,0.067479156,-0.39681435,-0.42877293,-0.29142794,-0.031611826,-0.24041322,0.27261502,0.058463354,-0.28899536,0.83784866,0.11413361,1.3343853,0.027681896,-0.20524268,0.08116231,0.5306803,0.110685624,0.024454772,-0.3686033,1.161185,0.61266994,-0.119455226,-0.15538765,-0.37126353,-0.15866682,0.097882025,-0.26390836,-0.22905576,0.22216024,-0.53306997,-0.529959,0.212407,0.1461437,0.08382874,0.0062946444,-0.052806497,0.2764706,0.17373344,0.23788224,-0.43912745,-0.19345392,0.13260925,0.20727685,0.08634411,0.23146784,-0.45673662,0.3563309,-0.4903358,0.07557277,-0.19745721,0.07908332,-0.111810155,-0.33803087,0.16658887,0.032097735,0.24924338,-0.2917785,-0.37109488,-0.075533286,0.46299264,0.094985604,0.24212548,0.6760172,-0.31778422,0.03781075,0.06771861,0.5254533,1.1094208,-0.28969765,-0.24806643,0.32490715,-0.43223003,-0.74008864,0.202559,-0.22613104,-0.011871372,-0.19926691,-0.33509737,-0.6093327,0.32439557,0.28081527,0.08763688,0.008495389,-0.5262628,-0.08288544,0.29704952,-0.5188953,-0.3120106,-0.33954912,0.30204108,0.8082171,-0.3387451,-0.3381761,0.03441573,0.17505781,-0.35705063,-0.55241793,-0.1667973,-0.37112936,0.19337289,0.22552869,-0.2798392,-0.18745898,0.19242565,-0.26859173,0.18855345,0.3807581,-0.24764077,0.12233635,-0.21926905,-0.023995271,0.75238293,-0.29630095,-0.012747399,-0.5681275,-0.42207998,-0.83560574,-0.61277497,0.72321594,0.38805643,0.052508447,-0.73564327,-0.02353694,0.13240623,-0.25992256,-0.13563655,-0.156511,0.27534583,0.120825455,0.2669868,-0.09419511,-0.84632194,0.22991733,0.14878194,-0.091581464,-0.5414837,0.42251047,-0.13473961,1.047891,0.016496275,-0.020172117,0.30832857,-0.43301317,-0.1007144,-0.2595139,-0.21149231,-0.64400226,-0.05659834,886 +558,0.30434337,-0.009458423,-0.6561739,0.012103694,-0.18348122,0.06834761,-0.29363158,0.16090079,-0.183724,-0.40006182,0.026301274,-0.028550684,-0.04165742,0.27101344,-0.22125928,-0.6160087,0.12050021,0.16259754,-0.4353697,0.3637953,-0.5562221,0.5169727,0.08957159,0.11423732,0.04686839,0.10290743,0.2287317,-0.049191687,-0.2254935,-0.5266205,-0.03530138,0.11799378,-0.44876575,0.2786744,-0.118953705,-0.5671164,0.1277809,-0.20709352,-0.3172111,-0.52202195,0.17218621,-0.64222854,0.61444205,-0.05670572,-0.2948714,0.23398885,0.2905617,0.288345,-0.08634262,0.11014582,0.02247736,-0.36025953,-0.37493962,-0.3121775,-0.36092302,-0.39231417,-0.70989096,-0.009875426,-0.8251093,-0.09137132,-0.28292236,0.2884427,-0.42240283,0.12222852,-0.19334683,0.41630387,-0.36079484,-0.07721359,0.10944005,-0.07751789,0.17514066,-0.41137815,-0.075657845,0.026183257,0.11987823,-0.22574104,-0.09245561,0.19499336,0.18229572,0.48262718,-0.047204368,-0.31729826,-0.22099657,-0.31921768,0.13644205,0.68239975,-0.18107985,-0.26506475,-0.19141474,-0.018989589,0.25982705,0.36547357,0.061280128,-0.09406607,-0.15312913,0.08332533,-0.34487298,0.34918264,0.4896354,-0.42452022,-0.22498357,0.49895993,0.46073914,-0.04701389,-0.18288119,0.23001882,0.005647438,-0.51713383,-0.1824709,0.21769522,-0.08621262,0.43193126,-0.11956322,0.3505178,0.49200064,-0.3169925,0.00022636993,0.27557454,0.020331947,0.073423095,-0.18034495,-0.18517168,0.29650378,-0.6313551,-0.0688328,-0.32729015,0.9259254,-0.1580193,-0.6133853,0.37944552,-0.59168005,0.16475967,-0.14545788,0.7660025,0.44098708,0.47221875,0.18997426,0.63419676,-0.44466308,-0.09427791,-0.056957014,-0.30475253,0.038137138,-0.09427207,-0.08320493,-0.41720873,-0.093494296,0.21631955,0.15081401,0.045651525,0.646885,-0.4567053,-0.17092599,0.013720402,0.6887346,-0.35123926,-0.13350847,0.79952323,1.2215022,1.1171701,0.050785176,1.0965152,0.19412418,-0.07663642,-0.3595124,0.0037512097,-0.51485336,0.18568388,0.37406197,-0.048904903,0.23251669,-0.017680893,-0.14662494,0.40461522,-0.31755295,-0.21384974,-0.022604434,0.30797,-0.1944022,-0.16345449,-0.41078717,-0.22609796,0.048318725,-0.03744607,0.15823151,0.31356832,-0.2942109,0.47679368,0.1453424,1.0663451,-0.084185876,0.23650463,0.15143745,0.26971337,0.19577622,-0.0761954,-0.06110808,0.1346391,0.3237216,0.13092557,-0.5944312,-0.020019459,-0.20834698,-0.47894764,-0.22002697,-0.1910256,-0.10472681,-0.32176188,-0.4048519,-0.045451794,-0.049560454,-0.41752347,0.35966662,-2.7017856,-0.11552048,-0.15709198,0.27257967,-0.11406521,-0.38595608,0.04929506,-0.387444,0.60965043,0.2618731,0.47172028,-0.52203196,0.52867967,0.38146684,-0.25734454,-0.051537436,-0.6982361,-0.16972148,-0.15396859,0.3628066,0.009448878,-0.20107542,-0.06411668,0.09771901,0.5161436,-0.24648093,0.11820569,0.25224653,0.21786237,-0.17387508,0.33732802,0.22238572,0.507252,-0.30853006,-0.15454046,0.33895403,-0.36053377,0.1746575,-0.030286659,0.21324413,0.32057995,-0.4972097,-0.81580776,-0.5018007,-0.25743753,1.1982133,-0.23803948,-0.4164396,0.18055226,-0.1457318,-0.37539697,-0.059124026,0.2790354,-0.21948242,0.080651276,-0.6917431,0.11493899,-0.2513102,0.28801855,-0.14643833,0.04130837,-0.45649877,0.37085006,-0.21411227,0.52492964,0.41901565,0.3087874,-0.38458303,-0.42399073,0.017727364,1.2247149,0.48352218,0.06636109,-0.26593798,-0.09227978,-0.21677658,-0.089440785,0.25262806,0.42816567,0.9537549,-0.007555557,0.25384405,0.2944176,-0.14659746,-0.032891933,-0.06506974,-0.38453588,-0.05577619,-0.04159264,0.74275464,0.35633025,0.13023318,0.7005711,0.044986725,0.303129,-0.3785047,-0.45173195,0.36136872,0.6591631,-0.2646756,-0.50077564,0.7416239,0.54424804,-0.11523663,0.46204165,-0.6595031,-0.4926358,0.33090404,-0.17106523,-0.28772092,0.2676664,-0.4468228,0.1509596,-0.958971,0.3494497,-0.36613157,-0.83689225,-0.49674925,-0.21945561,-3.5472908,0.16532029,-0.2936898,-0.0737216,-0.017375618,-0.108818114,0.33923694,-0.41635087,-0.48552987,-0.02206544,0.17907265,0.75155896,-0.009238473,0.05813033,-0.18703648,-0.2671022,-0.21881844,0.29686132,0.23498929,0.025414307,-0.19459009,-0.42684358,0.058755483,-0.36414847,-0.4223626,0.031226078,-0.52687174,-0.4277072,-0.11815642,-0.42352384,-0.43305498,0.717794,-0.40271068,0.09677559,-0.35179785,-0.06392713,0.07588712,0.3294256,0.17272642,0.20779242,-0.028683273,-0.117248,0.15579839,-0.37876898,0.14186232,0.011407788,0.31731793,0.36485547,-0.19367285,0.1088186,0.4530169,0.46431333,0.09918112,0.8677698,0.30601472,-0.1107691,0.27268323,-0.21932779,-0.16948883,-0.63935727,-0.32195792,-0.062386844,-0.48758644,-0.39949465,-0.16327386,-0.22631283,-0.7924163,0.6422185,-0.0077664256,0.16232207,-0.20543323,0.656375,0.3086783,0.051449332,-0.19285192,-0.0022225103,-0.20053622,-0.19162989,-0.20427176,-0.88214797,-0.4557334,-0.09635444,1.212279,-0.15085149,0.042698495,0.08273102,0.026418865,-0.018558834,0.23344043,0.18959199,0.22739315,0.39175707,-0.06836914,-0.59533113,0.45352724,-0.43804544,-0.20447949,-0.57082015,-0.015558756,0.803336,-0.65938044,0.23505116,0.6281241,0.20950942,-0.07352698,-0.55765903,0.1542162,0.061703924,-0.26693672,0.51626873,0.29136583,-0.91113293,0.6896113,0.20125309,-0.14585736,-0.56740695,0.589547,0.05946412,-0.25604722,0.04722819,0.43298766,0.015757935,0.028845906,-0.1282758,0.19104151,-0.42071941,0.27648604,0.22236952,-0.02658186,0.42891958,-0.35052446,-0.19797993,-0.51823086,-0.08359504,-0.56291336,-0.2342415,0.033711016,-0.09878214,0.07632666,0.3891748,-0.25883552,0.4918876,-0.34723637,0.13320753,-0.16934405,-0.37319332,0.5922213,0.59391946,0.19306199,-0.27504024,0.7376091,0.082079925,-0.059537154,-0.4034443,0.10625375,0.5837164,-0.14022301,0.4772327,-0.0031439534,-0.090334974,0.4399652,0.6691317,0.27463788,0.4180588,0.18474486,-0.04075406,0.025900874,0.04993971,0.10353215,0.13600247,-0.21154268,-0.17243113,-0.045089044,0.16562581,0.5679745,0.077348016,0.5443297,-0.17289785,-0.07469742,0.119123034,0.07535007,-0.15794322,-1.0225006,0.5550822,0.1607937,0.5291304,0.42072344,0.12431472,0.091178976,0.32430997,-0.34012467,0.06445082,0.20436606,0.26920062,-0.29160944,0.7428111,-0.7834032,0.62602985,-0.15876476,0.060874958,-0.061555814,-0.31589535,0.57889044,1.0153884,-0.03766244,0.22820666,-0.029650133,-0.2618768,0.120626375,-0.19768672,0.12796697,-0.36828265,-0.090389885,0.8627687,0.283959,0.44517747,-0.069781,-0.056206953,0.33229074,-0.12990752,0.10325552,-0.0815859,0.23998697,-0.33505538,-0.43674034,-0.40423623,0.5166549,0.11735994,0.048896134,0.20812489,-0.09888454,0.28519437,0.012529945,0.079090714,-0.066432804,-0.3414953,0.20526853,-0.3307655,-0.49892792,0.16402899,-0.6418076,0.24651964,0.20886387,0.112866625,-0.37998995,0.12210937,0.34166327,0.5710348,-0.08539772,-0.256209,0.023083882,0.093321875,0.21222804,-0.2599804,-0.1912287,-0.25693712,0.28916788,-0.8873935,0.3735314,-0.37293047,-0.4135233,0.12078752,-0.09419562,-0.05656067,0.3029153,-0.042793963,-0.17250998,0.27433887,-0.10160502,-0.14633033,-0.36872667,-0.13094105,0.17918698,0.07423817,-0.074652515,0.0019197613,-0.014504318,-0.090518065,0.24440329,0.027103782,0.20603988,0.33736032,0.21357475,-0.49664512,-0.115562476,0.03925011,0.55369246,-0.16917661,0.080272004,-0.3998099,-0.39092237,-0.14961436,0.28079405,-0.16293696,0.3676522,-0.010009144,-0.30490535,1.0101913,-0.08272944,1.1118585,0.1002865,-0.44941607,-0.023434231,0.63236034,-0.0025518963,-0.12156408,-0.1402528,1.1354771,0.50302535,-0.13815083,-0.20496882,-0.47929478,-0.045102052,0.17840101,-0.21990278,-0.5321515,-0.11269627,-0.46963024,-0.09968337,0.20789555,0.2730934,0.042781178,-0.08970194,0.035388507,0.4691989,0.026720962,0.20709644,-0.58089125,0.09070015,0.33544657,0.18508264,-0.24356246,0.0509338,-0.4580718,0.22107159,-0.7226986,0.08564918,-0.16340633,0.0863262,0.05909692,-0.28144982,0.33214813,0.13048737,0.2108858,-0.1704794,-0.17711045,-0.090845644,0.34043702,0.11396334,0.084333725,0.8445224,-0.274369,0.15344891,-0.039638035,0.3751492,1.2834046,-0.12447625,-0.2163793,0.1694196,-0.3414637,-0.8576661,0.2080609,-0.45170334,0.09068276,-0.040291555,-0.59630996,-0.40329698,0.22390537,0.26849762,0.037489634,0.19008161,-0.42334023,-0.19602333,0.069489725,-0.31829324,-0.28117657,-0.36196628,0.08730099,0.6133456,-0.15411393,-0.21329428,-0.019985994,0.533815,-0.17566426,-0.5334525,0.15141816,-0.2901228,0.29245,0.0076820618,-0.18618011,0.0996437,0.047674365,-0.38380584,0.12534033,0.5201963,-0.21458681,0.061638184,-0.18899487,-0.020229409,0.5964491,-0.31699768,-0.016812911,-0.60015285,-0.65659696,-0.62438303,-0.36608785,0.36151853,0.12022022,0.12300454,-0.4935748,-0.036495592,-0.06483635,-0.037107725,-0.0953406,-0.29777876,0.31601068,0.14152597,0.22544707,-0.09335906,-0.793861,0.08802002,0.013168929,-0.24387717,-0.40594664,0.60114765,-0.17806573,0.6231526,0.19676249,0.10520792,0.35379335,-0.64471626,0.2634212,-0.16532663,-0.2054522,-0.8024992,-0.064486034,901 +559,0.70105976,-0.44764593,-0.5987941,-0.21149321,-0.3795922,0.008877954,-0.09324447,0.6122036,0.32256892,-0.53417933,-0.10189365,-0.07333847,0.05454411,0.20599107,-0.18631852,-0.42613462,0.011362025,0.26818708,-0.39883694,0.50197995,-0.25871378,0.11372714,-0.09863361,0.4341022,0.38738114,0.30014727,-0.020112531,0.017402265,-0.27065918,-0.050067756,-0.26643512,0.4055269,-0.19323908,0.15869264,-0.1845874,-0.39918828,-0.11514529,-0.51079184,-0.44401073,-0.81360537,0.28658715,-0.9862047,0.5174957,-0.07169354,-0.38492537,0.11614835,0.022232039,0.30990416,-0.22987089,-0.17133613,0.13021526,-0.100803725,-0.025333464,-0.26099232,-0.14051409,-0.46034107,-0.48177317,-0.08413168,-0.43215698,-0.06623238,-0.20784292,0.1453072,-0.35243702,0.029176397,-0.030972498,0.6590583,-0.41181394,0.17389257,0.17318483,-0.1394724,0.22911476,-0.68920857,-0.22866847,-0.10023613,0.24073291,-0.004072726,-0.3450837,0.26352626,0.344817,0.37308767,0.020039456,-0.12725213,-0.40234852,0.028101739,0.06913103,0.49188253,-0.102278374,-0.5896296,-0.09822942,0.12537217,0.3795474,0.29850173,0.15989934,-0.18256953,-0.074909985,0.0396036,-0.16682294,0.5877713,0.49688697,-0.25712475,-0.0076448363,0.3300362,0.5922331,0.19611652,-0.26729435,-0.0070654578,0.071692295,-0.49154788,-0.09454657,0.11702608,-0.23466794,0.56073016,-0.16759232,0.2473403,0.68284386,-0.19774795,-0.06564604,0.3295299,0.26211292,-0.2678198,-0.3168525,-0.31215337,0.23273836,-0.4981107,0.07951533,-0.16003005,0.73829174,0.07539863,-0.66706973,0.3630959,-0.50350744,0.15289386,-0.24115722,0.38975668,0.73777705,0.5765077,0.2778558,0.6368965,-0.38448796,0.061254047,-0.06987666,-0.38522032,0.02166115,-0.16023263,-0.025559405,-0.6386925,0.063727975,-0.07684677,-0.16138735,0.12190221,0.5652386,-0.60635436,-0.24166144,0.19746824,0.90465075,-0.29572746,-0.195747,0.9291957,0.9848871,0.99045056,-0.017929273,0.9767148,0.2956446,-0.15175162,0.21382876,-0.22684397,-0.5352331,0.33597603,0.3748377,-0.20386791,0.25433105,0.06592618,-0.16616423,0.52393115,-0.21861175,-0.07174766,-0.22437869,0.10756158,0.10872885,-0.10327522,-0.71311885,-0.25085968,-0.21930142,0.038899235,0.07055222,0.26318935,-0.2663376,0.5880187,-0.043573253,1.7342898,-0.016881982,-0.06547742,0.015788937,0.47791713,0.28772303,-0.18759991,0.03125045,0.3314133,0.29199123,0.22186275,-0.4848983,0.1852123,-0.3082004,-0.40508628,-0.14419165,-0.42088142,-0.09111137,-0.07522554,-0.55350256,-0.13954036,-0.13123734,-0.24726336,0.3997434,-2.6573923,-0.2707798,-0.12367307,0.29608414,-0.12958845,-0.45952368,0.060465872,-0.50937027,0.15365145,0.25462034,0.56775707,-0.6762761,0.47060868,0.46853706,-0.6925365,0.023192257,-0.6605355,-0.16716185,-0.058719374,0.3754956,0.02831867,-0.02296351,0.19548659,0.047430165,0.64751685,-0.009259666,0.16569047,0.35083422,0.452591,-0.11603405,0.46389365,-0.019599753,0.53132266,-0.3275234,-0.17760277,0.20352349,-0.2624566,0.19109389,0.08328402,0.17232932,0.674702,-0.34728318,-1.0103045,-0.74090344,0.16556738,1.1070067,-0.14089148,-0.36385494,0.24635959,-0.565211,-0.37297088,-0.08983489,0.37550372,-0.019578686,-0.0048877853,-0.7820601,-0.00989068,-0.038306355,-0.0081239,-0.06692539,-0.19732358,-0.3298213,0.66738033,-0.033770133,0.5581372,0.28283006,0.23968521,-0.2747535,-0.44393235,0.006908422,0.78809375,0.41370863,0.2292148,-0.18489334,-0.14168529,-0.30295506,0.13970253,0.15506856,0.5523071,0.5317458,-0.06057504,0.0740853,0.33078983,0.0059296316,0.055722486,-0.16907117,-0.32775503,-0.21806109,0.05844164,0.48896644,0.7443093,-0.15615596,0.67155886,0.02336063,0.42514896,-0.10116778,-0.5771223,0.46093497,1.0507087,-0.36066452,-0.51764154,0.646335,0.47843435,-0.31846243,0.35289308,-0.5818501,-0.22412793,0.26862678,-0.13779666,-0.43385074,0.21492757,-0.27392864,0.25180453,-0.91691226,0.19675432,-0.23229432,-0.73916924,-0.5726513,-0.10581769,-3.0433772,0.2773752,-0.25698653,-0.27509284,-0.008111919,-0.24696173,0.17475319,-0.8335727,-0.5141624,0.21666281,0.10442763,0.76320016,-0.081802055,0.019738572,-0.21005782,-0.45156422,-0.1290253,0.09854501,-0.00049071066,0.3504551,-0.03218255,-0.48852494,0.012588433,0.04198537,-0.3786192,0.087204285,-0.7590908,-0.5546144,-0.14365983,-0.5626321,-0.33206192,0.64279544,-0.0798947,0.0663782,-0.19983952,0.17998405,-0.098350815,0.21774206,0.0071414975,0.08903899,-0.06281946,-0.116652034,0.21854474,-0.30264708,0.24208973,-0.066130616,0.3385178,0.23053889,-0.1645509,0.2822434,0.7166861,0.7423081,0.00900001,1.0057815,0.47108918,-0.20084277,0.21117862,-0.112191096,-0.45901966,-0.57492054,-0.2925566,0.02445143,-0.47185978,-0.32793778,0.011525835,-0.51235414,-0.8505255,0.6553008,0.06488162,0.3771952,-0.016600074,0.29580072,0.78301907,-0.32583705,-0.06701634,0.0010143305,-0.2057542,-0.65603083,-0.253452,-0.71351236,-0.444546,0.10845315,1.0971335,-0.25484052,0.12699379,0.09707821,-0.29014418,0.049816646,0.19676554,-0.10741605,0.20635632,0.39887312,-0.3811023,-0.6030475,0.36144894,-0.29438215,-0.18220995,-0.5545463,0.34084177,0.51832885,-0.6247858,0.5954982,0.34966087,-0.015550396,-0.40145248,-0.5039,-0.1360536,0.049884327,-0.018081184,0.62753093,0.44338518,-0.77453977,0.34314495,0.3831217,-0.19143096,-0.6183219,0.55162084,-0.06672525,-0.32714272,-0.21577083,0.32197136,0.13688262,-0.05165382,-0.33852562,0.08719604,-0.35863706,0.28369313,0.1743163,-0.09473152,0.106643155,-0.12222055,-0.039721128,-0.84995276,-0.03374773,-0.5436123,-0.26630694,0.3304539,0.08086174,0.31759316,0.12160628,0.032497473,0.3599984,-0.39878058,-0.09048215,-0.14736046,-0.46749657,0.45431975,0.45920613,0.5103633,-0.41564846,0.586542,0.04002889,-0.17118566,0.06132092,0.15810025,0.4355574,0.16920781,0.54831,0.03237158,-0.23063646,0.26212797,0.8571717,0.120169654,0.5809167,0.09898926,-0.087335885,-0.009982944,0.06661113,0.32566968,-0.12154379,-0.5003671,0.10476995,-0.3510378,0.22275604,0.44235873,0.026566137,0.25409442,-0.07505939,-0.43803406,0.05426299,0.16521844,0.17464831,-1.591904,0.38118815,0.2760491,0.93081295,0.25408903,0.04821947,-0.2655438,0.7472319,-0.118553855,0.1551323,0.34824663,-0.048202146,-0.4398198,0.48629752,-0.7549128,0.4662516,0.022728605,-0.0022547778,-0.055330284,-0.124446556,0.41384143,0.76227826,-0.10942244,0.016937701,-0.022299247,-0.46015218,0.21210606,-0.43941587,-0.023678813,-0.62121993,-0.3447695,0.70979226,0.5605851,0.5173248,-0.11435897,-0.052123394,0.082572274,-0.08557343,0.17642964,0.13783209,0.17025805,-0.19433948,-0.7579065,-0.14233616,0.47809023,0.027852535,0.2791514,-0.048141938,-0.19877204,0.29702586,0.010180839,-0.100505695,-0.046272505,-0.63433504,-0.040089916,-0.27034777,-0.6453696,0.5918538,-0.02783801,0.11873263,0.1963092,0.017336708,-0.22027646,0.34763607,0.064401396,0.9042339,0.041397613,-0.033683937,-0.4762659,0.21600683,0.1635553,-0.103868805,-0.0831154,-0.3672202,0.11899739,-0.6441536,0.4772019,0.072287984,-0.43161914,0.00025988903,-0.024358844,0.12645128,0.48873848,-0.2006985,-0.2640708,-0.28540668,0.0008474248,-0.47064143,-0.40039474,-0.018517302,0.32592535,0.17211711,0.00550004,-0.1805106,-0.064165205,0.019176373,0.44179198,0.052087307,0.39635167,0.3632786,0.031060588,-0.21501246,-0.23143502,0.3223516,0.5453562,-0.0428542,-0.20701218,-0.4221006,-0.5342209,-0.36791706,-0.090003364,-0.029864904,0.41768298,0.05555025,-0.0835088,0.8251652,-0.22443677,1.3303651,0.02792895,-0.44520283,0.089944504,0.525737,0.080641784,-0.06790098,-0.28300995,1.022692,0.5596089,-0.042883754,-0.06263553,-0.61622936,-0.05648079,0.24894606,-0.17823736,-0.1043073,0.007937397,-0.6197594,-0.2103472,0.32683453,0.2118858,0.33098173,-0.12033338,0.31793228,0.49735302,-0.0847352,0.18849252,-0.37389213,-0.26883358,0.09066076,0.3167087,0.0011288269,0.14342403,-0.5470541,0.2978081,-0.53138417,0.053078122,-0.35779396,0.27271327,-0.19145839,-0.31000096,0.2362738,0.04330584,0.40232483,-0.36304256,-0.26371044,-0.22401595,0.5912034,0.13711806,-0.039963305,0.50151557,-0.26881438,-0.030015392,0.21367022,0.48314586,0.9038876,-0.19404078,-0.06395735,0.4587486,-0.38675115,-0.70299625,0.38577986,-0.2744262,0.27297214,0.086006165,-0.20409659,-0.5968486,0.3230247,0.20653944,0.00041157645,0.06903238,-0.5441514,0.0064366544,0.28449515,-0.25181785,-0.094419725,-0.3394212,0.16074295,0.3243088,-0.3208768,-0.40296698,0.0022082988,0.2410793,0.01174515,-0.394867,-0.10771586,-0.5054684,0.35006428,-0.018559981,-0.35677978,-0.16139507,-0.19155304,-0.4103155,0.18113258,0.10428897,-0.2952626,0.19090848,-0.2942207,-0.14329657,0.9211711,-0.17077503,0.17380467,-0.69456387,-0.41344187,-0.6661181,-0.36736402,0.25908405,0.091787934,0.0067038834,-0.8552529,0.15167104,-0.023201393,-0.20357665,-0.2008907,-0.3366859,0.49915692,0.061199088,0.38132137,0.0083664525,-0.8711619,0.32200354,-0.011304342,-0.2065413,-0.6613334,0.5664951,-0.096225895,0.88130635,0.09528704,0.25285324,0.2630164,-0.361622,-0.14068678,-0.40205404,-0.27296478,-0.57116944,-0.24637184,909 +560,0.39643207,-0.3875062,-0.5192781,-0.20888318,-0.15103935,0.019602988,-0.3258447,0.120155096,-0.01610707,-0.4493707,-0.34883448,0.004969222,0.022736957,0.45291233,-0.052198105,-0.7104629,-0.11431079,0.12463808,-0.75277215,0.5170477,-0.5402446,0.33473036,0.32679367,0.31409952,0.07300084,0.35289827,0.41220075,-0.2384266,-0.16668122,-0.048200764,-0.08006018,-0.0056625134,-0.6840482,0.21572742,-0.22930005,-0.18029599,0.0757977,-0.3455875,-0.14341113,-0.771588,0.120071374,-0.9433885,0.4209056,-0.12635227,-0.17990902,-0.117560916,0.20838879,0.43322024,-0.3515008,0.24575113,0.17375025,-0.30071858,-0.18546124,-0.34465694,0.10236437,-0.43070784,-0.42000017,0.00033953678,-0.6042255,-0.39511675,-0.11230869,0.26346073,-0.3282509,-0.012099162,-0.183563,0.25306407,-0.5686933,-0.1696397,0.2989247,-0.20624979,0.33661428,-0.5096072,-0.02755992,-0.19385436,0.5235793,-0.02897949,-0.033398066,0.40211228,0.36662573,0.4595479,0.28353667,-0.21428397,-0.09617057,-0.18536615,0.4527762,0.510634,-0.058575895,-0.3243208,-0.17696084,-0.06588322,0.30556747,0.30321452,-0.10984535,-0.39025995,0.011106687,-0.15231654,-0.059508163,0.23897275,0.4720096,-0.16987416,-0.30752063,0.24609084,0.59412163,0.1927677,-0.10159589,0.020623889,0.07097509,-0.4941199,-0.16478753,0.4746213,0.029252741,0.46680906,-0.05073111,0.21572042,0.85216874,-0.26449433,0.09838797,-0.32993698,-0.11955496,-0.3145319,-0.12397238,-0.17576681,0.08748255,-0.49970797,-0.03406586,-0.35694242,0.8057815,0.1823069,-0.70706207,0.2722539,-0.50799894,0.19332238,-0.19420251,0.72673446,0.51250964,0.29257873,0.15514596,0.83689576,-0.4346511,0.2484868,0.04204584,-0.51551574,-0.118427165,-0.31888404,-0.0516023,-0.35163686,0.007086622,-0.27478546,0.087013476,-0.19946453,0.3792503,-0.508537,0.02264366,0.0019010731,0.62750757,-0.43281832,0.14062893,0.716568,1.0430491,1.0701396,0.1250464,1.191593,0.6747241,-0.2508636,0.016792348,-0.31474873,-0.65167487,0.18638696,0.40898314,0.37425974,0.22767004,-0.12608388,-0.18653464,0.33234766,-0.58526844,0.26494116,-0.16518055,0.2849485,-0.102467895,-0.0028196913,-0.55631965,-0.0928755,0.059741583,-0.03980988,0.0958286,0.12784924,-0.1942559,0.6412946,-0.045664232,1.1118567,-0.2878452,0.0411083,-0.027923848,0.52222013,0.13483219,-0.12550685,0.008775145,0.33181158,0.7084724,-0.11945362,-0.8011897,0.16903111,-0.3933932,-0.4748167,-0.38880318,-0.43129033,0.043528683,0.067097306,-0.31615138,-0.26361793,0.22765884,-0.3537269,0.436676,-2.4912522,-0.13269474,-0.33305174,0.2375747,-0.429278,-0.04779901,-0.16153963,-0.46376395,0.3168274,0.22418778,0.38457945,-0.6090832,0.4021334,0.50908375,-0.24042985,-0.08695834,-0.7385931,-0.07080218,-0.14486703,0.47493643,0.059781466,-0.06707126,-0.15011682,-0.021942424,0.7571054,-0.16120346,0.14360465,0.477877,0.22271858,0.19658177,0.4785715,0.21242401,0.62678593,-0.41489765,-0.13901171,0.41710636,-0.15125977,0.31675714,-0.21061945,0.20021693,0.45104724,-0.5716346,-0.6941888,-0.91459525,-0.71704113,1.1806327,-0.36872417,-0.59260327,0.18598525,0.29145542,0.11313285,0.11097827,0.5444879,-0.17603967,0.31711537,-0.686951,-0.04174151,0.0882254,0.30179414,0.05320837,-0.0094095785,-0.34283438,0.7544638,-0.098630026,0.47559053,0.3052649,0.4178597,-0.07692892,-0.45429918,0.11768333,0.99263257,0.33085176,-0.12146575,-0.0950017,-0.33351794,-0.15750502,-0.35885555,-0.008762251,0.4410169,1.0434208,-0.05300561,0.11741875,0.23154525,-0.16656876,0.23480608,-0.0847137,-0.3282611,-0.04490481,0.04957178,0.5098957,0.38025302,0.13765046,0.5362229,-0.2723553,0.42835635,-0.053829808,-0.45757177,0.6761103,0.66223115,-0.18416014,-0.017133627,0.48746774,0.5678647,-0.47690848,0.5158729,-0.70107836,-0.33327004,0.7086934,-0.15665682,-0.54850817,0.19690336,-0.21685001,0.3534455,-0.9162928,0.45726267,-0.48939013,-0.5178029,-0.46946308,-0.14773294,-2.9005873,0.24919727,-0.12285795,-0.14150666,-0.1817799,-0.12440598,0.37557217,-0.50436765,-0.45120043,0.15135694,0.14435026,0.56537044,0.081177935,0.08094574,-0.3115592,-0.0047662854,-0.13719878,0.19583665,0.116571054,0.16025905,-0.07274628,-0.33295536,0.14970358,-0.2394903,-0.4357644,0.057420854,-0.58697313,-0.6375775,-0.16428126,-0.45681766,-0.392094,0.5734991,-0.40827796,0.036606733,-0.20297465,0.05538092,-0.24830696,0.2462764,0.14875524,0.33819517,0.10951807,-0.19674452,-0.05782646,-0.36519226,0.47343805,-0.03133446,0.23692706,0.02384924,-0.106557466,0.1966147,0.38115305,0.523926,-0.18057795,0.86442024,0.449178,-0.061997198,0.16129065,-0.3501052,-0.32057813,-0.6069656,-0.42016786,-0.03019424,-0.3643845,-0.74917215,0.06279634,-0.20485233,-0.90691775,0.5530983,0.032005813,0.326447,-0.11710191,0.124855794,0.27707952,-0.07941758,-0.0062904186,-0.12927268,-0.08233947,-0.52316374,-0.33965084,-0.7903709,-0.63005006,-0.10741333,0.8856686,-0.20783392,-0.14045027,-0.11176521,-0.5365029,0.09136175,-0.027504558,-0.026389996,0.2561532,0.3166153,-0.06267694,-0.82776546,0.43151265,0.110610895,-0.0070573604,-0.5308246,0.18198213,0.8369772,-0.8087536,0.42302874,0.40416312,-0.08746598,-0.007611216,-0.4286713,-0.1922883,-0.0047269696,-0.19170026,0.40658903,-0.110433534,-0.5690201,0.5683255,0.19755046,-0.350028,-0.77778023,0.30027002,0.063604996,-0.1343676,0.27181032,0.34130412,-0.28308305,-0.1908954,-0.44149277,0.20164074,-0.40575355,0.32958338,0.2863888,-0.019655185,0.15468082,-0.22375162,-0.40055355,-0.6154658,0.0462609,-0.55041087,-0.1813834,0.40768543,-0.042854395,-0.013936894,0.07503476,-0.024188085,0.4761583,-0.19938615,0.08224275,0.030643731,-0.40184775,0.2352327,0.41162357,0.21521258,-0.39580813,0.6987916,0.24587008,-0.37132916,-0.04358663,0.15941055,0.3950799,0.29456758,0.44426438,-0.27104837,-0.05797539,0.45577186,0.78362316,0.11620026,0.71229947,0.06197944,-0.20638399,0.46659583,0.1818947,0.26348293,-0.07964028,-0.1885451,-0.10451765,0.226856,0.027961057,0.42119798,0.30180553,0.5931896,0.009801409,-0.079373814,0.12300444,0.15232334,-0.08048278,-0.88683575,0.4335056,0.23440523,0.7723767,0.51619476,-0.09140927,-0.0895764,0.599315,-0.35375404,0.057844866,0.23733126,0.08498321,-0.5094233,0.63504666,-0.5963954,0.37870732,-0.19762583,-0.10535137,0.09839703,0.12845993,0.26151356,0.87760437,-0.01482165,0.12763223,-0.1884052,-0.07732974,0.045912094,-0.37379974,0.22799897,-0.4074059,-0.4956726,0.667965,0.2535117,0.24742699,-0.002412231,-0.09079255,0.13907112,-0.23032485,0.3879237,-0.024016205,0.1259117,0.19371393,-0.56290907,-0.1817997,0.5567103,-0.1392322,0.073578544,-0.019117817,-0.35110754,0.036836028,-0.19739333,0.12004926,-0.054143723,-0.70971966,0.09812414,-0.2911705,-0.38130692,0.2640166,-0.30846435,0.18945368,0.20024154,-0.03210612,-0.25654852,0.106296316,0.06971425,0.88148445,0.045299243,-0.39707592,-0.42973083,-0.0070108324,0.4805664,-0.32906556,0.19176218,-0.39789575,-0.08940867,-0.56635547,0.63239205,-0.21071722,-0.41388062,0.37693188,-0.3110706,-0.26898882,0.62283653,-0.10807913,-0.10384744,0.28530714,-0.15998867,-0.36055905,0.12211184,-0.36597332,0.22928461,0.25419462,0.093159206,-0.12765118,-0.12297305,-0.032872457,0.557092,0.10321535,0.53496665,0.30251795,0.0012367581,-0.32979065,0.14191483,0.1703647,0.4154041,0.34668916,0.08914279,-0.37654975,-0.450751,-0.295011,0.079418525,-0.22764094,0.1677715,0.018505152,-0.47695214,0.7803441,0.14800034,1.1582069,0.2038871,-0.36949873,0.008545299,0.4963821,-0.103549,0.090502106,-0.59390396,0.8747638,0.64692384,-0.106120296,-0.10830999,-0.4652774,-0.2736546,0.42050567,-0.31496218,-0.06860109,-0.038668197,-0.68745035,-0.5445924,0.17945279,0.24918249,0.034847002,0.11110829,-0.09159676,0.087866664,0.12074901,0.5746546,-0.79153377,-0.045926154,0.181185,0.13895094,-0.04801831,0.2765917,-0.3217589,0.36492977,-0.7228293,0.20110138,-0.31838205,0.1121115,-0.017935257,-0.4326652,0.17475949,0.06736098,0.3554259,-0.34508,-0.4021848,0.0004830467,0.6898256,0.028722184,0.2625931,0.7026413,-0.3503603,0.23913403,0.24685182,0.5332328,1.3696371,-0.48310715,0.077176556,0.21792743,-0.37138438,-0.57164425,0.5109836,-0.3244987,-0.045536127,-0.20851612,-0.6237365,-0.43421364,0.43897527,0.17377901,-0.15358064,0.11930179,-0.54815626,-0.01556812,0.37583995,-0.22727898,-0.35188296,-0.33789065,0.49621132,0.5794918,-0.42069831,-0.35142517,0.13700397,0.28031984,-0.43989757,-0.44779247,-0.111140184,-0.25541312,0.36228722,0.1109853,-0.26262257,-0.010427869,0.1405116,-0.39766565,0.06546382,0.21959054,-0.36467904,-0.002192378,0.03582811,0.0055318177,0.73384243,-0.16293931,-0.3618045,-0.77155817,-0.29816416,-0.87768936,-0.4927207,0.48938337,0.23357336,0.036788184,-0.39273152,0.13627863,-0.1146289,0.11892813,0.1334509,-0.6415533,0.3406518,0.10051424,0.5811616,-0.16886647,-0.8380622,0.1953676,0.11846594,-0.15457372,-0.63196796,0.5563306,-0.08934783,0.80773646,0.005115297,-0.106723785,0.112930216,-0.42515597,0.11351148,-0.3908618,-0.20972909,-0.8656154,0.118806124,915 +561,0.40767893,-0.13646206,-0.3958264,-0.08981933,-0.14846215,0.12307037,-0.06996768,0.68376774,0.31535864,-0.19441952,0.004232458,-0.20936169,0.11108854,0.52537376,-0.11993955,-0.46245548,0.035939034,0.13452145,-0.49745995,0.6133947,-0.24494243,0.13524912,-0.15578702,0.5487131,0.34903577,0.35714412,-0.14152838,-0.12947963,-0.2529968,-0.10804407,-0.048440885,0.32108206,-0.33436063,0.094232775,-0.20767768,-0.19819704,-0.08270973,-0.6156144,-0.5611666,-0.74468845,0.39309576,-0.81424046,0.44300207,-0.06916058,-0.20465867,0.29917246,0.1633252,0.3688026,-0.31282282,-0.18298118,0.049012896,0.12438363,0.1352977,-0.14798209,-0.252799,-0.44720674,-0.43402508,-0.08139681,-0.39133152,-0.16455977,-0.14209577,0.07939404,-0.2503553,-0.07280874,0.01566508,0.48496744,-0.44558784,0.2896486,0.26387197,-0.03881367,0.29032207,-0.48903847,-0.3017487,-0.11694097,0.26390594,-0.14710076,-0.1305646,0.29805925,0.21898796,0.11735432,-0.3306792,0.05818482,-0.303618,0.025378166,-0.04241844,0.5542826,-0.16486658,-0.649752,-0.09210821,-0.006312021,0.049480226,0.14874645,0.27175537,-0.23171498,-0.012046172,0.0064833206,-0.29966718,0.39141995,0.4354159,-0.19702056,-0.115644924,0.3598218,0.29135412,0.38483745,-0.30307606,-0.073233195,0.086033545,-0.455559,0.043708745,0.0564969,-0.18157928,0.6153754,-0.1029165,0.18701802,0.67780465,-0.05195122,0.02700007,0.0067275846,0.18085851,-0.1441801,-0.2083533,-0.24555029,0.119219795,-0.26441863,0.14861952,-0.107385874,0.59001267,0.22668251,-0.63593084,0.35180405,-0.5639321,0.0927975,-0.15747486,0.23056053,0.63958937,0.3157284,0.29231268,0.50411344,-0.23600136,0.110878065,0.013628555,-0.32302484,0.10040735,-0.26380867,-0.07186993,-0.47459635,-0.060793154,0.08036884,-0.31816146,0.1408314,0.13648292,-0.403475,-0.112870455,0.13579202,0.86818,-0.19979273,-0.099832214,0.7726334,0.9996256,0.8090958,-0.025929397,0.92618024,0.22918548,-0.10551921,0.37625948,-0.2584865,-0.6878037,0.2561426,0.180398,-0.71637934,0.21775672,-0.045679074,-0.11572995,0.25938994,-0.17981097,0.11461949,-0.15608065,0.06018174,0.2204068,-0.14994928,-0.3194437,-0.43043047,-0.34397316,-0.08340378,0.24367502,0.15200214,-0.26742256,0.39459684,-0.033118572,1.6989481,0.116345845,-0.09561484,0.04800648,0.7597813,0.24254496,-0.1649626,-0.19474937,0.35231996,0.4261903,0.146632,-0.52469146,0.31374535,-0.2060024,-0.4439297,-0.053272128,-0.460521,-0.09938253,-0.0079499995,-0.55905026,-0.092458606,-0.1103626,-0.13608317,0.4232184,-3.1727998,-0.123083875,-0.06497941,0.3486088,-0.22793047,-0.119255,-0.110183515,-0.38000804,0.27683923,0.30174565,0.48399347,-0.672211,0.24279632,0.36711803,-0.5412714,-0.14271976,-0.4569871,-0.06949322,0.049967706,0.41454244,-0.07177789,0.2899037,0.40116814,0.21712856,0.40371805,0.118517265,0.23400831,0.18494411,0.34576994,0.13634583,0.4050581,-0.20724429,0.4572073,-0.22335264,-0.10778058,0.21818672,-0.44898847,0.26159662,-0.16634957,0.15611328,0.5149142,-0.350642,-0.8472849,-0.5626561,0.1216072,1.0626304,-0.18018652,-0.35222435,0.11314603,-0.40003613,-0.1856771,-0.05899474,0.60050446,0.008309068,-0.03647999,-0.6524615,-0.13965736,-0.14424597,0.034951795,0.013204319,-0.028041337,-0.10220325,0.5396567,0.15447733,0.4387036,0.1450045,0.06733068,-0.36047056,-0.537144,0.1259952,0.4800342,0.17996319,0.1497778,-0.13496378,-0.1336879,-0.4101171,-0.05698735,0.119248785,0.62837565,0.4711542,-0.07878766,0.2795858,0.24376275,-0.03737923,0.04158557,-0.08552281,-0.21518132,-0.10124608,-0.025142398,0.43925044,0.6374732,-0.20472495,0.62453026,-0.13618214,0.2688198,-0.16329649,-0.38367867,0.5573249,1.1792278,-0.27877957,-0.2996056,0.4316668,0.51742345,-0.2909717,0.31854057,-0.48414525,-0.15645064,0.49807143,-0.1128306,-0.36361584,0.42110786,-0.1763962,0.17497389,-0.82399505,0.17259659,-0.17548086,-0.26945236,-0.44290218,-0.0004207066,-3.0936112,0.12145121,-0.07823468,-0.4626793,-0.15868047,-0.18529561,0.21047917,-0.54426813,-0.53903174,0.1587248,0.12892473,0.64893997,-0.063362345,0.13807903,-0.29485962,-0.145609,-0.23491418,0.15598908,0.14839259,0.5091515,-0.1428062,-0.43734103,-0.15003274,-0.17284557,-0.4082403,0.1044062,-0.6445402,-0.34687927,-0.15565808,-0.6074807,-0.23889992,0.6713415,-0.24406181,0.014590366,-0.16016866,-0.040927578,-0.22038364,0.25613877,0.16255073,0.11474593,-0.019267354,-0.05972467,0.20186456,-0.21360005,0.29314107,0.023843234,0.31779075,0.20266856,0.08528103,0.2332373,0.48784265,0.45996794,-0.12312092,0.8228982,0.4511537,-0.06649352,0.2405732,-0.34781915,-0.16372646,-0.38234633,-0.1602197,-0.14743654,-0.27356258,-0.5482051,-0.16566263,-0.43237644,-0.6486129,0.3866024,-0.13362536,0.20701586,0.09288483,0.10880958,0.590968,-0.179751,0.104415104,0.07157842,-0.073653184,-0.5985592,-0.2640881,-0.47653556,-0.25483546,0.10844408,0.6755136,-0.18493788,-0.028640976,0.0014771564,-0.5188592,-0.064980336,0.12605648,-0.09430926,0.10968663,0.32027718,-0.27752298,-0.6186542,0.385354,-0.23386966,-0.16194856,-0.43153688,0.20469496,0.45718494,-0.57436126,0.70122,0.2840877,0.026446389,-0.3589463,-0.4238607,-0.26106492,-0.068458006,0.005945906,0.26714364,0.22812656,-0.7824101,0.25526562,0.26976848,-0.33870015,-0.5455808,0.69436127,-0.054716546,-0.3511326,-0.19375919,0.24704473,0.137381,0.0021635985,-0.32444185,0.21159227,-0.388619,0.045755006,0.20481959,-0.049912266,0.19580945,-0.11393653,0.0485659,-0.6123609,0.14768808,-0.29116246,-0.30637497,0.41853857,0.06281511,0.26936156,0.026567075,0.14041647,0.1307418,-0.2491373,0.039397832,-0.00012742622,-0.092992194,0.24366967,0.3322867,0.5746204,-0.51625675,0.55777895,-0.050673,-0.082566015,0.45859584,0.23577653,0.26031098,0.28184214,0.3991855,0.1920275,-0.30434713,0.20648208,0.78582495,0.19361487,0.46298796,0.025685811,-0.11618771,0.18697466,0.049825672,0.21330822,-0.02835138,-0.44797254,-0.13065222,-0.34226418,0.19681577,0.39862856,0.078080475,0.18237741,-0.041837517,-0.49596587,0.038348343,0.17618598,0.08400154,-1.3244671,0.36550766,0.32186016,0.861515,0.24990828,-0.053231955,-0.049158845,0.7102605,0.009784349,0.17210974,0.39808846,0.02338454,-0.6204928,0.5960063,-0.68100786,0.48896366,0.06072732,-0.077254854,0.018162565,0.0687593,0.36160856,0.6637449,-0.13632783,0.023759857,0.20267439,-0.51501733,0.066891916,-0.38052177,0.04939537,-0.6405307,-0.20266795,0.51049,0.5735956,0.22633888,-0.17366134,0.08590812,0.082756765,-0.10691334,0.08391573,0.17140071,0.19115864,-0.06998195,-0.776962,-0.16263115,0.48469582,-0.34461552,0.1140831,-0.020732304,-0.16527423,0.35511896,-0.29136112,-0.0037516144,-0.09636663,-0.7739796,-0.019891143,-0.2765536,-0.4346532,0.4944737,-0.15134512,0.27976936,0.20763628,0.0336763,-0.31609896,0.42472172,0.027112825,0.7801234,-0.38736948,-0.12063865,-0.5321628,-0.018891778,0.28944328,-0.16557041,-0.24574924,-0.34261307,-0.060787294,-0.2733901,0.42203665,0.031032374,-0.2064469,-0.32909712,-0.09159284,0.18655331,0.5239839,-0.09457011,-0.18598978,-0.27144605,-0.090291455,-0.53783023,-0.06085189,-0.09029786,0.26640216,0.47253317,-0.17811038,-0.19049838,-0.07908726,-0.004544369,0.31671306,-0.2131901,0.6066832,0.4328416,0.2916452,-0.014538805,-0.1404811,0.37083775,0.4833188,0.0572395,-0.07361841,-0.4114885,-0.36480626,-0.38116223,0.19244789,-0.15931287,0.4343633,0.2320925,-0.22869189,0.64464134,-0.16821899,0.9041395,0.07407268,-0.32379597,0.26039702,0.35619995,-0.0061226347,-0.11914891,-0.32265544,0.78147644,0.44285306,0.008951368,-0.07595886,-0.2323498,0.022994246,0.18139479,-0.19367763,-0.18986215,0.04660616,-0.5484963,-0.085915625,0.15204395,0.23215099,0.410985,-0.1513248,0.103612535,0.1896676,0.10134623,0.21937357,-0.41148907,-0.08994535,0.2922699,0.29612345,0.15129559,0.16743062,-0.52010936,0.37444517,-0.23920245,0.052144635,-0.33568844,0.31365323,-0.18574838,-0.38599712,0.097891144,0.014293969,0.328914,-0.31927297,-0.29487568,-0.48507056,0.439291,0.24669997,0.058713,0.4027617,-0.21861155,0.14767838,0.02810062,0.6774378,0.7456559,-0.23117879,-0.106987916,0.37257996,-0.3953258,-0.73527807,0.3204603,-0.29194,0.5045986,0.0126379775,0.06775488,-0.77630097,0.36194044,0.20162182,0.09227226,-0.21141179,-0.4875245,-0.22205831,0.364431,-0.16607831,-0.29347152,-0.446939,0.12356971,0.39271337,-0.16884105,-0.35302645,0.18881357,0.12580267,-0.13576756,-0.39016384,0.046337243,-0.39455494,0.3278723,-0.07112075,-0.39803305,-0.26699507,-0.15621792,-0.39550117,0.46744913,-0.011019145,-0.307405,0.13224033,-0.20514582,-0.12970619,0.9686914,-0.32911125,-0.036120262,-0.549398,-0.50186265,-0.71597594,-0.52242726,0.2369784,0.15717424,-0.0422537,-0.55095685,0.06181692,0.002060307,-0.1786492,-0.156216,-0.3226831,0.42463177,0.09576956,0.25715384,-0.015029945,-0.8180813,0.21169567,0.07326721,-0.21210109,-0.6733472,0.35995105,-0.115690805,0.83770084,0.047091033,0.19994281,0.3459084,-0.066972725,-0.3103717,-0.17856862,-0.20832255,-0.6004544,0.18012188,919 +562,0.4199798,-0.2494857,-0.6350214,-0.1091596,-0.31037045,0.15233898,-0.2895253,0.37612036,0.3780157,-0.26656,-0.182218,-0.06503877,0.20983836,0.5704187,-0.07223409,-0.729084,-0.03395311,0.19019674,-0.6887475,0.5436072,-0.54715323,0.37550816,0.22445236,0.4914933,0.07261505,0.26327842,0.46956572,-0.09106286,0.18306208,-0.08471546,-0.35760394,0.12916856,-0.56805,0.0584522,-0.18406074,-0.30493197,0.026248971,-0.33741918,-0.15746126,-0.83080375,0.1591842,-0.947614,0.61239785,-0.124939606,-0.20221828,0.066621445,0.25427327,0.30964082,-0.4395383,0.0029255587,0.089775495,-0.35261387,-0.33573112,-0.3057327,-0.11370482,-0.64576036,-0.4043011,-0.06329246,-0.621262,-0.2681051,-0.30968326,0.17097381,-0.3839688,0.042846296,-0.17131063,0.2831411,-0.34723857,0.0026954242,0.29203245,-0.4022406,0.24756508,-0.49601778,-0.023846997,-0.079644814,0.48892567,0.08586371,-0.18758021,0.4054058,0.35236374,0.59787655,0.26829475,-0.3173409,-0.15624359,-0.2105689,0.13267997,0.48895162,-0.13470258,-0.49969083,-0.27272034,0.013079976,0.27966124,0.39244822,0.074116014,-0.2307291,0.001468569,-0.06661404,-0.2825819,0.69201106,0.5402874,-0.3164692,-0.23831476,0.28792027,0.5415564,0.16085665,-0.25350598,0.13256498,-0.13611254,-0.5257927,-0.14919625,0.09169085,-0.16380389,0.49774975,-0.16685656,0.09115834,0.6924094,-0.099031344,-0.103171214,-0.021764856,-0.0479202,-0.22171704,-0.3057084,-0.11128104,0.32313266,-0.6039686,0.025895467,-0.35002264,0.7693329,0.14742856,-0.69742966,0.54841393,-0.45845821,0.2570448,0.036001164,0.69933236,0.8142339,0.37261692,0.3659087,1.0637491,-0.46696204,0.20125952,-0.086722456,-0.47584215,-0.050500114,-0.27690786,0.20943138,-0.57200813,0.39617604,-0.12205834,0.04050793,0.16074118,0.42273596,-0.49982664,-0.24330722,0.26175678,0.86405903,-0.29971048,-0.0500632,0.87783676,1.030873,0.94320506,0.028237287,1.2669764,0.32938442,-0.28241405,0.071120724,-0.20982145,-0.6344784,0.19929865,0.40419367,0.2610623,0.36611012,-0.0640141,-0.16818811,0.22301213,-0.38188574,-0.1842811,-0.007310859,0.23572205,0.14225496,-0.08876257,-0.51065624,-0.005844857,0.09548088,-0.12553108,0.27876344,0.17581834,-0.3193805,0.56585824,-0.05782318,1.2833841,-0.15001084,-0.011227702,-0.010021695,0.46363178,0.45874724,-0.006793778,-0.11486103,0.5240397,0.43501854,-0.079866275,-0.7518468,0.256037,-0.4069709,-0.43392634,-0.15742712,-0.38555998,-0.12684141,0.058186587,-0.17993793,-0.09987419,-0.14319205,-0.338319,0.35511738,-2.629848,-0.34567356,-0.14706834,0.32062572,-0.23587589,-0.0608988,-0.21591036,-0.54736197,0.29803768,0.31237292,0.530959,-0.7257934,0.48046425,0.552693,-0.51695263,-0.23984173,-0.67951876,0.005136609,-0.037150797,0.4966173,0.124950275,-0.3223726,-0.20764753,0.19962557,0.81904495,0.15397093,0.12953304,0.55293566,0.50334007,-0.10207791,0.56287825,-0.09864284,0.7263366,-0.44855276,-0.21226577,0.34869486,-0.2385149,0.22724839,-0.16171636,0.07857622,0.60530394,-0.3366,-0.965138,-0.5465979,-0.19793749,1.0174874,-0.47485605,-0.7196781,0.16614135,0.09241716,-0.036834385,0.113589205,0.68896955,-0.027928535,0.14164901,-0.7635177,0.21498582,-0.10562205,0.10775911,0.00089206867,-0.022050377,-0.25895536,0.8992316,-0.18539861,0.7309758,0.1288645,0.26349533,-0.22713648,-0.2872768,0.09398307,0.9636008,0.28577897,-0.10123686,-0.07583884,-0.2841966,-0.15201259,-0.35468003,0.020282056,0.79882324,0.8237254,-0.10616619,0.046614457,0.30176002,0.030314535,0.03246183,-0.15800492,-0.34097162,-0.17748229,-0.06281402,0.49908113,0.72123855,-0.15347525,0.4578517,-0.21157424,0.327005,0.051679205,-0.6393069,0.67677176,0.60059595,-0.3883802,-0.17551562,0.5592891,0.37409526,-0.5064137,0.5332442,-0.78832763,-0.38641888,0.69642127,-0.112337485,-0.43812338,0.31259808,-0.23669437,0.12953106,-0.790371,0.14554645,-0.24274567,-0.444726,-0.27385074,-0.11586406,-3.8492484,0.22338176,-0.21708305,-0.049333755,-0.52962625,-0.04189344,0.23913698,-0.50569814,-0.638957,0.17002918,0.26003528,0.62001884,-0.16787426,0.16068758,-0.37929827,-0.23862995,0.021614721,0.21413012,-0.060720403,0.24719644,-0.10916669,-0.4041605,-0.12111305,-0.033694383,-0.54448617,0.110699944,-0.70473564,-0.39832968,-0.13271451,-0.6564242,-0.11265149,0.6252524,-0.47958097,0.00062543154,-0.33512837,0.19740057,-0.24990739,0.059427977,-0.06299653,0.14401487,0.2248224,-0.04191079,0.22871558,-0.35403094,0.4273006,-0.1744086,0.32862678,0.07323592,-0.037996348,0.063313164,0.43847117,0.70258886,-0.18672906,1.0361717,0.3269138,-0.047515698,0.26362088,-0.16490364,-0.41885754,-0.6133209,-0.41922733,-0.08821865,-0.49223194,-0.42633268,0.055217493,-0.27665955,-0.8220273,0.5980485,0.05066489,0.5286389,0.057970356,0.44515222,0.48310062,-0.252317,0.08371387,-0.010790544,-0.2933721,-0.57410467,-0.22387524,-0.7003945,-0.58283854,0.047047973,0.7397162,-0.29117435,-0.0035177693,-0.092970416,-0.14743574,0.04748563,0.18588993,0.32636717,0.31839347,0.48706642,0.0050978702,-0.55869,0.5132794,-0.22199798,-0.18737434,-0.5708197,0.1482812,0.4684265,-0.7096148,0.6041352,0.40946907,0.049313802,0.047555078,-0.5343766,-0.12892868,0.05891834,-0.15746103,0.42963466,0.1348854,-0.9512325,0.60341495,0.3458034,-0.46236438,-0.76567084,0.33947703,-0.0737647,-0.14336213,-0.11496148,0.4396976,0.183165,-0.113753654,-0.2419031,-0.015951118,-0.53211194,0.28251806,0.06307937,-0.1017764,0.38806987,-0.03870228,-0.408545,-0.8460639,-0.17082848,-0.6788291,-0.17559369,0.26566166,-0.030724557,-0.103760764,0.009976064,-0.15965247,0.48651257,-0.40814045,0.17245527,-0.07541033,-0.43176597,0.43647593,0.49927017,0.34039325,-0.36654353,0.65520746,0.08303114,-0.3601642,0.12982169,-0.0437773,0.42249542,0.064824924,0.4769178,-0.0905607,-0.01795243,0.36602673,0.77068466,0.081480734,0.39632463,0.23686007,-0.17002021,0.47449684,0.11368904,0.16138686,-0.041042153,-0.42236838,0.06881391,-0.11664571,0.103886366,0.66269696,0.34839335,0.41474488,0.15924038,-0.15621898,-0.03736589,0.09416484,-0.13189246,-1.2703542,0.36707577,0.1983627,0.8345167,0.24110402,0.11297226,-0.21528955,0.66763407,-0.14760931,-0.026578533,0.344971,-0.068635315,-0.29780713,0.67009544,-0.6973683,0.33293602,-0.31799677,-0.0068417513,0.3162317,0.2771705,0.35561463,0.96206105,-0.32393926,0.071186304,-0.12897612,-0.10826416,-0.037238542,-0.3234677,-0.091142654,-0.19335082,-0.49471956,0.52608204,0.31501886,0.44082713,-0.24519908,-0.04013119,0.017969217,-0.18260184,0.08052908,-0.10124024,-0.064184375,-0.045027457,-0.53538525,-0.18065552,0.5389524,0.3404849,0.28753868,-0.24570727,-0.28157634,0.21705225,-0.18211976,0.0007644977,-0.025385145,-0.6266185,-0.06055245,-0.23477945,-0.561826,0.43856445,-0.14926064,0.17265998,0.26726693,-0.08653475,-0.13315995,0.067122586,0.075139515,0.94868004,0.14178206,-0.2578134,-0.47383395,-0.033665843,0.2547546,-0.29799396,0.15982607,-0.40278748,0.060563702,-0.5733127,0.6723117,-0.22351797,-0.50435024,0.44169232,-0.31537125,-0.030937418,0.53681934,-0.19339517,-0.050054085,-0.02907272,-0.085295245,-0.29573438,-0.26650983,-0.30975834,0.25035852,0.0591528,-0.068291835,0.021962153,-0.1917026,-0.06052683,0.5483907,0.066766456,0.33651686,0.3146402,0.18209353,-0.05201123,0.2674338,0.3096853,0.5363503,0.20895068,-0.161068,-0.2539635,-0.56424665,-0.40792537,0.03116553,-0.10785474,0.20095327,0.18904154,-0.21112005,0.8104901,0.05402534,1.2365264,0.013867897,-0.3749737,0.03648488,0.65370834,-0.108702086,0.10188941,-0.33873183,0.8859577,0.6964753,-0.1045786,0.011978158,-0.48588532,0.022869054,0.42868227,-0.4446044,-0.05588283,-0.07958323,-0.49838337,-0.5345944,0.21671481,0.12584528,0.34485266,-0.09888286,0.099203266,0.09946772,0.11198555,0.39106035,-0.630343,-0.18900779,0.20705901,0.21071196,-0.20668904,0.07605963,-0.28229478,0.4521796,-0.61270094,0.064954795,-0.6057285,0.085940704,-0.10164543,-0.2319707,0.1281499,-0.18050376,0.3716131,-0.25471282,-0.4448206,0.013344957,0.35945824,0.19237688,0.037115216,0.59346694,-0.24795556,-0.10194092,0.25120902,0.63245803,1.2759513,-0.46809477,0.12097937,0.297291,-0.4252661,-0.6410624,0.36648488,-0.38572472,-0.011186489,-0.078551225,-0.5070885,-0.38891268,0.34050304,0.21730591,0.008419901,0.09655683,-0.59011537,-0.1078745,0.35296506,-0.29299185,-0.1736317,-0.09306664,0.25613636,0.69339734,-0.30058894,-0.41904116,0.10244899,0.3807459,-0.2909065,-0.7775798,-0.046714578,-0.23221502,0.3117096,0.23075593,-0.24793445,-0.088071056,0.16784164,-0.6107554,0.18543765,0.18867992,-0.36831895,0.15703966,-0.27978864,-0.1719022,0.8142026,-0.21743946,0.14985277,-0.7770389,-0.44268948,-0.85326624,-0.39683172,0.2868843,0.10820438,0.009168412,-0.46503782,-0.03401867,-0.16785999,-0.18684964,-0.031166945,-0.36776227,0.28403643,0.09571952,0.6831941,-0.32534605,-0.97251564,0.055004936,0.22124605,-0.24085872,-0.7460745,0.60476106,0.0010321991,0.8286921,0.13083561,0.024133101,0.17007668,-0.537862,0.0017717002,-0.34285745,-0.10908776,-0.7373065,0.10261743,922 +563,0.32967356,0.06639375,-0.57445484,-0.2471886,-0.19764756,-0.027870135,-0.1815614,0.0827632,0.32789087,-0.017232107,-0.03768483,0.031941257,0.018998465,0.24920085,-0.10702928,-0.9669891,-0.034465816,0.014390305,-0.42210367,0.4834546,-0.45767912,0.47547105,-0.0129390955,0.38839537,0.07357759,0.4541622,0.23309512,-0.04854623,-0.12027614,-0.010507479,-0.21467413,0.30552694,-0.7534639,0.08957092,-0.06964575,-0.24282752,-0.0052427053,-0.15019627,-0.37728548,-0.70966065,0.4295301,-0.7845702,0.636823,0.08068187,-0.32234138,0.052129857,0.14740203,0.20425312,-0.41577762,0.14495704,0.17739275,-0.41966745,0.073264465,-0.17925726,-0.29349184,-0.5667244,-0.6213074,-0.03990416,-0.7153602,-0.17666534,-0.47657079,0.16726772,-0.37148625,-0.19342472,-0.25989076,0.38030434,-0.3868484,0.100864954,0.19791816,-0.25916353,0.08671014,-0.40024376,-0.19722976,-0.14090471,0.24171737,0.10161601,-0.28362924,0.4342375,0.41593748,0.46578804,0.17897804,-0.28925055,-0.26409715,-0.13535348,0.24983807,0.34224185,-0.15136679,-0.34757218,-0.32351685,-0.16881725,0.10576943,0.38693455,-0.13375752,-0.32716092,0.12129603,0.21394168,-0.12684913,0.43502077,0.5562163,-0.2662527,-0.29351273,0.3458561,0.25499466,0.038904138,-0.2791222,0.24508728,-0.010450986,-0.55334276,-0.22724476,0.15810804,-0.15870725,0.6056064,-0.073814094,0.04099496,0.8275885,-0.19958016,-0.112058654,-0.3840117,-0.00058957085,-0.124241054,-0.32165042,-0.036048528,0.19749263,-0.35058665,0.18357992,-0.19659789,0.65096956,0.18022408,-0.7707495,0.37226656,-0.6277442,0.13322793,-0.18461971,0.64506245,0.87763757,0.2782642,0.39932555,0.9531375,-0.5512031,0.050904304,0.20452574,-0.5090123,0.19016087,-0.23956037,-0.024535758,-0.43212047,-0.0039265626,0.04059779,0.0067409384,0.15252638,0.29073414,-0.35350534,0.0042795017,-0.074569575,0.71699893,-0.38630968,0.012280379,0.8809175,1.0020019,0.7986025,0.07515937,1.2340767,0.48132855,-0.15906824,0.07828612,-0.38737026,-0.5677841,-0.021491949,0.2569779,-0.3351256,0.28348696,0.16930781,0.06618579,0.47018296,-0.3880856,-0.012808646,0.008372434,0.20346744,0.01629855,-0.12906107,-0.32748842,-0.04605919,0.072826676,0.029371228,0.13250165,0.29081315,-0.19160774,0.42097664,0.14383051,1.1101463,0.14356065,0.012353632,-0.03132769,0.39259866,0.42461258,-0.1612116,-0.08842688,0.43579546,0.44468382,-0.0035546932,-0.55026853,-0.03933726,-0.30950683,-0.42902726,-0.21714921,-0.43300548,0.020193549,0.038028475,-0.42765808,-0.08928845,0.14005977,-0.24328195,0.44169322,-2.5981853,-0.12657672,-0.096238784,0.23110603,-0.059763543,-0.24116646,-0.24595013,-0.5612469,0.30445322,0.3607922,0.25018874,-0.55315447,0.22234948,0.31582016,-0.32606193,-0.14862467,-0.572753,-0.07011564,-0.13356401,0.41672078,-0.07946099,-0.08497814,-0.13510534,0.3396366,0.6817304,0.14454024,0.036618393,0.08510905,0.43839765,-0.13065541,0.50715935,0.11513138,0.57719135,-0.04643582,-0.30818543,0.32523513,-0.2994587,0.34665182,0.026749356,0.16300532,0.4435358,-0.45838982,-0.91138774,-0.55935514,-0.48068443,1.0535704,-0.39330724,-0.3976689,0.3319237,-0.15286934,-0.3511866,0.043513052,0.6495462,-0.20716561,0.1523163,-0.6306376,0.096659556,-0.11752321,0.17518805,0.0065820483,0.24969958,-0.2264329,0.73336613,-0.181896,0.26789635,0.25572392,0.14963432,-0.18754303,-0.5500762,0.17066622,0.83365303,0.37188783,0.003752968,-0.16958418,-0.18960264,-0.09925105,-0.28038046,0.12501253,0.5941647,0.7193964,-0.079435065,0.03380899,0.24536486,-0.19348209,-0.053051088,-0.13733728,-0.3468435,0.049841773,0.063611925,0.5284538,0.61544603,-0.20008738,0.42581373,-0.08509069,0.23118567,-0.11128148,-0.56570286,0.66385496,0.99733627,-0.025822412,-0.11861301,0.8156249,0.42727062,-0.34540504,0.4399918,-0.624632,-0.21572231,0.73537916,-0.17364763,-0.42415252,0.16622402,-0.38639894,-0.019836145,-0.92443746,0.17227888,0.08425385,-0.5010561,-0.5350827,-0.1982899,-4.6227293,0.09807801,-0.22894092,-0.042332616,-0.15931857,-0.16618688,0.4752521,-0.52401555,-0.510933,0.2177342,0.08880174,0.4797731,-0.21118645,0.1886548,-0.36377528,-0.18519685,-0.1239201,0.38278368,0.27750435,0.29323244,-0.031545248,-0.38979134,0.09318935,-0.20356211,-0.631627,-0.11240333,-0.36368254,-0.5962731,-0.15554376,-0.5848349,-0.2989924,0.8498824,-0.55140454,-0.100780554,-0.23849523,-0.020521015,-0.24206138,0.40916035,0.39060903,0.34101194,0.12391204,0.18264525,-0.15081565,-0.35179597,0.23922995,0.12944402,0.30857986,0.3259353,0.07278415,0.098868154,0.48239,0.53655463,0.012550997,0.8869804,0.28735763,-0.09992744,0.26277456,-0.5033282,-0.32512292,-0.98575485,-0.4603908,-0.4457278,-0.47549954,-0.5209076,-0.22868347,-0.3645037,-0.8225395,0.47923976,-0.03472815,0.31201443,-0.14374371,0.39304203,0.27596682,0.0008851247,-0.102126226,-0.09985872,-0.24987094,-0.44139275,-0.27774018,-0.50603694,-0.68657887,0.12669475,0.726904,-0.13847235,-0.16385423,-0.069353394,-0.37783903,0.040978003,0.054376718,0.35663837,0.27239242,0.44680372,0.10610281,-0.7053589,0.47358757,-0.16834481,-0.09034599,-0.91704845,-0.13813487,0.587245,-0.7867704,0.6614236,0.35063124,0.22755061,0.08151204,-0.6319321,-0.41096088,0.19213428,-0.20410864,0.6623515,0.2447178,-0.7239455,0.57339126,0.041777473,-0.035647534,-0.5891438,0.5346018,-0.057510562,-0.28293163,0.19415888,0.36428595,-0.13819918,-0.08781787,-0.026084503,0.3841549,-0.35995704,0.21499498,0.4915771,-0.039318077,0.67775875,0.0018521185,-0.20451845,-0.7745558,-0.042822544,-0.5472077,-0.24410672,0.154125,-0.003421726,0.09960441,0.08871362,-0.18237714,0.37824425,-0.23724213,0.2504478,-0.09731025,-0.16485827,0.22582316,0.53149885,0.2910606,-0.5642271,0.6317429,0.15968189,-0.094996266,0.022624284,0.20980084,0.53709525,0.07614399,0.40732163,-0.064884976,-0.14521435,0.06522913,0.66823775,0.22685862,0.49818072,0.24758425,-0.12567408,0.37420702,0.19185317,0.07172785,0.06170237,-0.21039243,-0.079580955,0.037345946,0.19127558,0.4919746,0.11215081,0.32338995,-0.16539904,-0.1836785,0.37503406,0.26769236,0.1384527,-0.97384685,0.43511185,0.24165504,0.6840891,0.57978344,0.08319491,-0.071409516,0.3866009,-0.29478127,0.19370396,0.3870626,0.06825425,-0.4269028,0.51273805,-0.49724188,0.47224116,-0.11847062,-0.015924526,0.106455505,0.20313223,0.35564017,1.1057407,-0.13498417,0.12876584,0.13997671,-0.18274471,0.17562962,-0.20106378,0.07741941,-0.4269071,-0.36780426,0.62053543,0.41518566,0.20938039,-0.33647108,-0.056697875,-0.08280599,-0.12194603,-0.10565518,-0.18286465,-0.016912771,-0.058236003,-0.55771434,-0.525956,0.5693574,-0.026027964,0.037099395,0.06481456,-0.32694897,0.24528448,-0.14317219,-0.13989887,-0.00086231955,-0.56559604,-0.0029572845,-0.3474087,-0.6416489,0.6008654,-0.57111925,0.3578401,0.17944972,0.023209935,-0.4796899,0.15220201,0.25820893,0.7998727,-0.041132372,-0.07157155,-0.4143751,0.049001228,0.41451088,-0.3321999,-0.18136515,-0.41210222,0.09605193,-0.55136734,0.36913797,-0.293556,-0.3071506,-0.35178158,-0.12612464,0.008431422,0.41769025,-0.24780855,-0.25884372,0.12846185,0.007562884,-0.28509256,-0.065952964,-0.255444,0.23981176,-0.05084441,-0.08867715,0.041337106,-0.12786335,-0.35775343,0.23099232,0.013394488,0.3372044,0.27495685,-0.064005494,-0.21929021,-0.08564746,0.07221285,0.37709117,0.045726676,-0.10978985,-0.14896642,-0.38226053,-0.31174025,0.21455492,-0.18174039,0.16017434,0.08500532,-0.58478546,0.6948659,0.18165953,1.1624416,0.115299426,-0.4051186,0.086598836,0.51690733,0.042784214,0.11996548,-0.27646944,0.9936391,0.6834302,-0.19743636,-0.24061318,-0.32116333,-0.07167997,0.22959457,-0.29170418,-0.25847426,-0.10295378,-0.70077735,-0.1985854,0.03608266,0.26613265,0.10545536,0.025313748,-0.17770936,-0.0215091,0.2980948,0.4002417,-0.46724123,0.002246627,0.3641874,0.22634998,0.08731251,0.29505798,-0.21342981,0.46859327,-0.57560503,0.16952477,-0.68685913,0.16651511,-0.15043476,-0.2685548,0.1491655,-0.05359567,0.3756465,-0.22448623,-0.20550522,-0.35268718,0.6143018,0.120858684,0.22689272,0.7324247,-0.20745358,0.12006321,0.1467292,0.5509233,1.4466027,-0.22783129,-0.054131526,0.33188084,-0.26658034,-0.53783023,0.14268948,-0.38980213,0.093697794,-0.21778846,-0.37599322,-0.34086356,0.15661462,-0.04422056,-0.066100046,0.060260303,-0.5523102,-0.328342,0.3200573,-0.17807308,-0.237341,-0.25691578,0.31779402,0.78179085,-0.44000462,-0.2719261,0.025071954,0.16415703,-0.28647995,-0.6029411,0.0894024,-0.17346303,0.49648628,0.0697968,-0.41995737,0.13731427,0.46268627,-0.48798847,0.3138903,0.4423537,-0.3495431,0.05518878,-0.007088993,-0.11546803,1.1541101,-0.12502353,0.048895817,-0.5992548,-0.513703,-1.022033,-0.39787748,0.32879072,0.25618905,0.069930054,-0.48714873,-0.031748764,-0.057305243,0.18257363,0.15098538,-0.6327548,0.3955396,0.08267232,0.6831532,-0.037003525,-0.8628286,-0.17172106,0.18584742,-0.23119865,-0.5569201,0.6268687,-0.2852617,0.7978509,0.013935568,0.030682666,0.19921395,-0.57325274,0.3046148,-0.28929278,-0.13709255,-0.71909136,0.06344426,924 +564,0.4494824,-0.24172509,-0.43748882,-0.20109092,-0.046973865,0.17449275,-0.13473402,0.39068416,0.166568,-0.5250793,-0.16517678,-0.3634092,-0.036011416,0.29898575,-0.06660053,-0.6336916,-0.109780565,0.06025695,-0.47394437,0.5734964,-0.4737144,0.4109531,0.050875835,0.17812733,0.1582471,0.37310925,0.112874605,-0.17018498,-0.07062906,-0.24456434,-0.12331345,0.092942536,-0.50175136,0.205827,0.058388468,-0.35015652,-0.16515519,-0.44447082,-0.3473175,-0.58005124,0.26954585,-0.69096714,0.42292133,0.0039021203,-0.16546896,0.34789357,0.022856805,0.24557522,-0.28400818,0.0793862,0.15666828,-0.035666432,-0.09367095,0.0027818042,-0.121136256,-0.25873345,-0.6007063,0.052494977,-0.30251932,-0.35420626,-0.23701288,0.0663022,-0.35833496,0.020152807,-0.20061935,0.38794476,-0.36197734,-0.09155906,0.24018244,-0.14998177,0.26280764,-0.5589377,-0.15123573,-0.07946894,0.19827558,-0.25074905,-0.14817175,0.1769074,0.25073674,0.5237317,0.042319782,-0.0894318,-0.37416625,-0.1231939,0.3476326,0.55989414,-0.023729166,-0.359974,-0.12659687,0.003263269,0.0030755487,0.053656068,0.21202254,-0.26096743,-0.25336802,0.037009727,-0.23067212,0.1761659,0.4064985,-0.3785388,-0.42015058,0.37578383,0.62393105,0.11042567,-0.022979986,0.12011747,0.053340573,-0.38753697,-0.15716386,0.14322247,-0.16338451,0.32899782,-0.14973925,0.24724989,0.6282464,-0.15482195,0.09939668,-0.0047187805,-0.13961382,-0.11816106,-0.15696537,-0.11705921,0.09808527,-0.365033,0.16581716,-0.16247287,0.784761,0.1966281,-0.6830025,0.3989158,-0.5083901,0.19995658,0.03377543,0.62962,0.673792,0.20309594,0.25540665,0.62018317,-0.35034013,0.024744626,-0.10504013,-0.31642348,-0.014385894,-0.08877475,-0.0072319508,-0.5270119,-0.0012219207,0.13232708,-0.07689186,0.07703565,0.35919222,-0.52112645,0.10680919,0.080516756,0.7357977,-0.31796047,-0.019999716,0.7506271,0.97804874,1.0659099,0.13584355,1.1840811,0.21335016,-0.31868124,0.20681044,-0.5798804,-0.6619347,0.23677956,0.33628246,0.17922091,0.3191451,0.09985965,0.01307258,0.42926815,-0.33337379,0.2775504,-0.11803884,0.10151924,0.10580634,0.0047934824,-0.4167908,-0.23499808,-0.11368368,0.059579678,0.09516477,0.14313854,-0.17774959,0.39176944,0.11665128,1.7649285,-0.23185483,0.12727478,0.012840151,0.2995539,0.056720812,-0.27137214,-0.076098084,0.2232265,0.4228743,-0.028373148,-0.7310985,0.13876382,-0.100602664,-0.46782345,-0.20494854,-0.34302092,-0.0187989,-0.051559,-0.30767298,-0.12421159,-0.16210051,-0.5294455,0.3131741,-2.7357616,-0.17942412,-0.12177296,0.23698887,-0.25253376,-0.38152176,-0.09416013,-0.4427064,0.3368712,0.34934762,0.36762634,-0.6286286,0.34717155,0.41523954,-0.3838966,-0.13742158,-0.605768,-0.023829851,-0.021894148,0.28657076,-0.0125409495,0.029839933,-0.038021922,0.18965109,0.37514156,-0.07797571,0.049401976,0.2933167,0.27363485,0.1718153,0.4524545,0.06551371,0.54944116,-0.081788525,-0.114918835,0.3228306,-0.31149602,0.23118632,-0.058372296,0.19962814,0.2362913,-0.49442655,-0.74491435,-0.6957765,-0.5972584,1.2318357,-0.24439695,-0.35931015,0.3749021,-0.21333659,-0.30273494,-0.17004271,0.44804507,-0.17411144,-0.3005391,-0.81553686,0.019213328,-0.11364322,0.21026863,-0.03430521,-0.089991234,-0.5298274,0.7230555,-0.11605931,0.5493079,0.3840379,0.0851186,-0.045296993,-0.30591044,0.026156107,1.1096687,0.38260236,0.07044115,-0.2565351,-0.2393264,-0.3788467,-0.10816083,0.06922736,0.3805149,0.6929713,0.028823735,0.101339355,0.18178561,-0.0040614987,0.075153686,-0.113459125,-0.19877554,-0.07381078,-0.06682255,0.59575015,0.3383133,-0.18382578,0.5456826,-0.12293436,0.16286932,-0.15452442,-0.34757352,0.44277975,0.8151685,-0.0766388,-0.21774706,0.5489942,0.40186256,-0.25515175,0.3484026,-0.54043806,-0.124146305,0.40802914,-0.31450972,-0.30551594,0.30560365,-0.2534663,0.16767056,-0.9850921,0.22038658,-0.19194995,-0.5989601,-0.5660696,-0.11067878,-3.6322937,0.09973198,-0.09060676,-0.31750324,-0.016103284,-0.06641384,0.26140925,-0.55920875,-0.595703,0.13755114,0.05241841,0.6151792,0.020133147,0.06582433,-0.1781355,-0.14253761,-0.36908984,0.1652668,-0.039322253,0.3247413,0.07535754,-0.27396405,0.016051294,-0.16676542,-0.30763716,0.025223792,-0.5182337,-0.51549625,-0.08584132,-0.5016933,-0.26841596,0.66317207,-0.22918953,0.07355472,-0.21917759,-0.029678037,-0.15030701,0.4198575,0.14638078,0.13375019,-0.0014609013,-0.0058607436,-0.02535918,-0.23121956,0.25744465,0.09849493,0.31471506,0.4145031,-0.20936823,0.29354525,0.41676235,0.63130814,-0.015310183,0.67691386,0.5383454,-0.14678338,0.27097416,-0.36070606,-0.09296174,-0.45795155,-0.3020908,0.040942457,-0.37473226,-0.65258723,-0.18690255,-0.24295427,-0.79850495,0.36153263,0.044036094,0.051468484,-0.0038883004,0.15907495,0.4349565,0.05939562,0.06596137,-0.16613956,-0.05611411,-0.49122688,-0.2586603,-0.62724245,-0.37423787,0.23567012,1.0218496,-0.20819232,0.07219219,0.041280456,-0.3395133,-0.01582892,0.08155085,0.07310132,0.19768175,0.35605627,-0.014909319,-0.5880145,0.45819807,-0.022433953,-0.18051662,-0.59920454,0.054702424,0.60540825,-0.6059104,0.46087864,0.13331045,0.048252247,-0.029223485,-0.3363875,-0.09402274,-0.079594746,-0.2882125,0.22979261,0.122492336,-0.5595681,0.37463012,0.29286456,-0.03057146,-0.7017933,0.24490069,0.0012275066,-0.21084145,0.04511989,0.21583872,-0.028843509,0.110873364,-0.12061168,0.14349894,-0.33839774,0.30815533,0.35223788,-0.008572345,0.30072775,-0.1397936,-0.12255086,-0.69320214,0.011166104,-0.43129382,-0.16874799,0.09772577,0.26087818,0.26881117,0.22046538,0.024972081,0.4027306,-0.27418223,0.10449743,0.111321874,-0.19376482,0.2057551,0.34282,0.30244684,-0.39438057,0.569995,0.073254354,-0.056115013,-0.24237892,-0.049915433,0.5351561,0.07579769,0.2725111,-0.09399981,-0.36578473,0.34538174,0.8301314,0.17781314,0.41298223,0.10582803,-0.15218414,0.2879591,0.09036619,0.09939579,0.023769217,-0.48145136,0.08239281,0.020385435,0.18134084,0.38105717,0.18684076,0.3073495,-0.09689514,-0.29900786,0.014002255,0.2704261,-0.100286715,-1.0771908,0.3409452,0.07353174,0.8057191,0.66957587,-0.040076263,0.16104473,0.47275877,-0.32844815,0.11647331,0.2198907,-0.09146255,-0.6516653,0.51907426,-0.7044641,0.43825123,0.006613936,-0.020607496,0.014592888,-0.19098756,0.39512372,0.7209968,-0.16831799,-0.014497495,-0.0988754,-0.1495863,-0.009855254,-0.3897269,0.0886284,-0.49341705,-0.23639844,0.69203526,0.4324634,0.378179,-0.033125374,0.03410558,0.04848075,-0.026841568,0.11083666,0.106419675,0.04566529,0.0020844936,-0.67183685,-0.19869414,0.54778725,-0.22083294,0.13947678,0.032358248,-0.4386654,0.10080127,-0.08036717,-0.1883496,-0.06352506,-0.623956,0.10936903,-0.34891352,-0.3925235,0.23677795,-0.14051142,0.32685047,0.17054224,0.022887941,-0.16141999,0.26713774,0.251646,0.6803195,0.069382675,-0.10920005,-0.3271498,0.24636085,0.1645737,-0.19726107,-0.19731502,-0.13734971,0.07776458,-0.5715424,0.38878265,-0.018356856,-0.41362232,0.23784658,-0.119930424,0.07703085,0.5470186,-0.24971221,-0.049657114,0.09080579,-0.3358943,-0.14676407,-0.042684097,-0.08865626,0.29365197,0.19787182,-0.13492292,-0.04987367,-0.05661873,-0.08813749,0.3666025,0.15892465,0.41464677,0.34832424,0.009457086,-0.330519,-0.19679888,0.09600574,0.30217406,0.11990379,-0.03440862,-0.2500865,-0.3889371,-0.35892457,0.28039128,-0.15278395,0.34598514,-0.05731948,-0.33732155,0.6156634,0.093769856,1.0545254,0.07737879,-0.3380573,0.072409295,0.38791957,0.09070448,-0.048878543,-0.38087633,0.83683175,0.51061285,-0.10896458,-0.2137746,-0.29978338,-0.12681563,0.2456675,-0.16251428,-0.11791752,-0.055091705,-0.7010039,-0.3399276,0.21256296,0.13925402,0.17034362,-0.068818666,0.09608537,0.1398575,-0.0041669137,0.31626502,-0.46538863,-0.13041125,0.3040239,0.04950261,0.09588904,0.065064006,-0.44820574,0.40833727,-0.6114645,0.11978344,-0.1047697,0.114816986,-0.03656024,-0.15227519,0.26093024,0.18907355,0.40237728,-0.29701972,-0.41042417,-0.35711455,0.55456126,-0.13922141,0.1088211,0.61573887,-0.24756551,0.22028829,0.16631389,0.49138227,1.0998188,-0.10013182,0.16529597,0.33748668,-0.25964904,-0.47884113,0.35024548,-0.20249535,0.07116219,-0.04714152,-0.24863802,-0.38749167,0.22137496,0.27551243,0.07359529,0.26285124,-0.46127272,-0.41733232,0.18139656,-0.42171508,-0.21865988,-0.3664996,-0.059856188,0.7372028,-0.3483961,-0.23470625,0.13115504,0.20825338,-0.3833122,-0.5407378,-0.09614421,-0.24948104,0.310391,0.01886304,-0.32119983,-0.056792945,0.1182936,-0.2489235,0.04401664,0.124246456,-0.40031943,0.04901255,-0.3653423,-0.09184128,0.90844804,-0.09681845,0.13431774,-0.67101544,-0.4825983,-0.77883446,-0.44831222,0.69421107,-0.0054876334,-0.1297714,-0.43978825,0.027276,-0.09991461,0.11086481,0.025264662,-0.4347348,0.49632856,0.16560616,0.27351594,-0.0031156072,-0.6719709,0.123759694,0.13120766,-0.180678,-0.62932485,0.53905505,0.061485834,0.7129094,0.08697351,0.056153845,0.1957752,-0.5271858,0.018492201,-0.124135494,-0.16082452,-0.7335312,0.114146076,928 +565,0.46011338,-0.36190176,-0.5666519,0.023241179,-0.38573477,0.11585855,-0.039573234,0.5686577,0.3589491,-0.30372402,-0.2899089,-0.15009466,0.0034716788,0.33832374,-0.12059041,-0.40564242,-0.10950606,0.34414366,-0.5870934,0.67084056,-0.18087308,0.2432112,0.03552698,0.49601966,0.5004889,0.21490394,-0.135951,-0.0018121302,-0.18179977,-0.22279385,-0.17759119,0.23366728,-0.41943768,0.38452002,-0.26470262,-0.27781647,-0.12004639,-0.72933835,-0.54818135,-0.76412135,0.24492513,-0.76867014,0.6488064,-0.12820664,-0.2127161,0.06822115,0.1097822,0.40938133,-0.22640324,-0.102267615,0.36526537,-0.15175553,-0.22310485,-0.14145438,-0.20084664,-0.26703998,-0.49659333,-0.109377824,-0.22216897,-0.023991214,-0.2092603,0.214365,-0.13793838,-0.08070314,0.05342563,0.5551001,-0.35045916,0.25961128,0.14257227,-0.05619773,0.08056765,-0.586718,-0.32466105,-0.19770078,0.39990467,-0.10285498,-0.40149015,0.24668112,0.2001382,0.20691799,-0.06360661,-0.114431776,-0.21724097,0.032947965,0.212447,0.6159366,-0.14648846,-0.47709134,-0.116206445,0.06031915,0.22474353,0.17334059,0.26933673,-0.4659651,-0.10230981,-0.05284432,-0.0623825,0.37959465,0.40717322,-0.09973626,0.09006558,0.37056193,0.39387324,0.41878882,-0.16694994,-0.026509898,0.004478294,-0.45613092,-0.14149396,-0.11484564,-0.20553578,0.48562902,-0.06305248,0.20806254,0.5069408,-0.089816146,-0.277615,0.20322248,0.29727766,-0.198361,-0.12899171,-0.39673787,0.29333755,-0.3950594,0.13136797,0.08555029,0.67861706,0.19665591,-0.58959275,0.26105097,-0.58513767,0.04273477,-0.12920901,0.3442699,0.6623789,0.5038261,0.26080182,0.74231154,-0.22315924,0.102814786,0.07054495,-0.33334956,-0.13870688,-0.251204,-0.101782486,-0.62925607,-0.09490925,-0.16253074,-0.17884402,0.14035389,0.37966558,-0.49794927,-0.15373527,0.07180295,0.77644855,-0.27028254,-0.0410829,0.9860258,1.011396,0.8723057,0.1157004,1.1680657,0.13947347,-0.29530236,0.0011599915,-0.07972834,-0.7154926,0.32050222,0.40407297,-0.8210532,0.22931409,0.1497707,0.063095145,0.32104093,-0.49015626,-0.03520913,-0.12694211,-0.016681109,0.11105503,-0.11221124,-0.4529821,-0.40906996,-0.2557194,0.106845535,-0.080698475,0.2164781,-0.2722899,0.44297487,0.12804282,1.6719106,0.04763135,-0.12590776,-0.013375829,0.3986802,0.28794906,-0.20845358,-0.336508,0.30040404,0.43051687,0.13565199,-0.51390916,0.07405288,-0.11691674,-0.30044875,-0.13332579,-0.23248614,-0.26784664,-0.016372416,-0.30939093,-0.28328627,-0.07091618,-0.25431502,0.4923455,-2.7063854,-0.17297928,-0.034458715,0.4233319,-0.12611619,-0.36011344,-0.16919048,-0.43868488,0.2525276,0.20478234,0.49715927,-0.5985576,0.26954597,0.33776832,-0.71647304,-0.24105155,-0.46866456,-0.09505056,0.14029978,0.30067366,-0.06754687,0.10182941,0.080322266,0.020365069,0.34196043,-0.117693804,0.13969415,0.45559844,0.39768654,-0.04705618,0.49637565,-0.07802444,0.607446,-0.2994828,-0.17303498,0.30523425,-0.21984518,0.25392967,-0.04779017,0.13776514,0.68817014,-0.5374926,-0.74969864,-0.62127835,0.043113887,1.0863421,-0.21434096,-0.21189635,0.20503923,-0.5893984,-0.31219885,-0.0019790444,0.44353417,-0.0550111,-0.11078559,-0.7129407,-0.11744686,0.15261105,0.014815041,-0.08118439,-0.13938917,-0.38984197,0.62291086,-0.02520549,0.6287719,0.37900382,0.18011819,-0.24795203,-0.3556338,0.110265,0.9479955,0.4647832,0.14302717,-0.18164313,-0.0066315657,-0.5656522,-0.07479378,0.11444449,0.53141326,0.4506182,-0.14998065,0.15463248,0.27902517,0.10323449,0.0868581,-0.24203634,-0.21386994,-0.15907931,-0.04462937,0.41527727,0.7408113,8.52985e-05,0.67892164,0.031855937,0.37042412,0.021481497,-0.4559571,0.4108459,1.2072588,-0.19768454,-0.3621884,0.53333867,0.44745016,-0.10992871,0.33874723,-0.31782237,-0.30676636,0.39969972,-0.11538303,-0.42210525,0.33645287,-0.16249306,0.25109246,-0.7664407,0.35558018,-0.06956458,-0.6930124,-0.4484633,-0.004134173,-2.1992035,0.17970546,-0.269023,-0.18241562,-0.0864328,-0.29128698,-0.024310246,-0.52908605,-0.64212996,0.17861797,0.02649802,0.76782656,-0.15519747,0.12357825,0.023319444,-0.34064293,-0.18991116,0.124177404,0.07162376,0.4656908,-0.042458434,-0.5286587,-0.22312112,-0.10701088,-0.31077734,0.0011615753,-0.7883478,-0.40654877,-0.053052336,-0.61852044,-0.35590023,0.6953843,-0.33864444,0.015553975,-0.15571155,0.016674025,-0.05100238,0.11588142,0.042004935,0.093285,-0.01462571,-0.09858249,0.07821043,-0.15407614,0.2028785,0.08775584,0.17871518,0.14715545,0.08402152,0.47383007,0.40311494,0.7657972,-0.29698277,0.93807924,0.55148476,-0.26746553,0.15572591,-0.24021854,-0.45869806,-0.49870983,-0.22418039,0.10518682,-0.4948239,-0.4283173,0.021792488,-0.34168133,-0.8604589,0.61040086,0.16546439,0.13218018,0.10807327,-0.0007474763,0.5917883,-0.2793526,-0.028150273,-0.017391281,-0.17383312,-0.54694134,-0.14429685,-0.545188,-0.393795,0.042078357,1.2624863,-0.26674157,0.113725185,0.2404406,-0.45715025,0.17591347,0.19587128,-0.11571831,0.16343226,0.45005172,-0.056669254,-0.6202764,0.3232515,-0.18279906,-0.13956042,-0.48902375,0.38701692,0.69214046,-0.641894,0.5596909,0.297434,-0.010129298,-0.2660463,-0.19366738,-0.10452112,-0.13178828,-0.09950919,0.4495225,0.23785338,-0.6321467,0.23645698,0.33172056,-0.20617917,-0.80671346,0.54319257,-0.02971044,-0.18087183,0.009070805,0.28594008,0.13743666,-0.0721157,-0.24827984,0.2587529,-0.23506474,0.23192154,0.10346607,-0.16473384,-0.16795148,-0.36794356,-0.1293052,-0.888132,0.17266853,-0.36772725,-0.47028896,0.31432456,0.1438925,0.11566021,0.023625493,0.30382887,0.21335658,-0.359512,0.13657214,-0.1910234,-0.32565933,0.27806342,0.4462215,0.51918745,-0.35859632,0.5517028,-0.01529155,-0.17263606,0.0031838757,0.07626271,0.30421135,0.104680344,0.36575508,0.17135255,-0.20825031,0.27366194,0.6919823,0.13020413,0.33322784,0.008944546,-0.17659354,-0.07084912,0.09588071,0.38587043,-0.050308198,-0.6562831,0.14124669,-0.33060256,0.09804428,0.47109923,0.26588994,0.08922611,-0.05645724,-0.6031971,0.007502807,-0.023800297,0.22502877,-1.3391732,0.41657305,0.2006038,0.7809041,0.36737466,-0.106006704,0.00975324,0.6462172,-0.011133044,0.087571755,0.33601478,-0.16306385,-0.3721303,0.3132587,-0.6827792,0.52050114,0.011058475,-0.032193135,0.25178477,-0.05191985,0.44330963,0.7356078,-0.1611764,0.074608706,0.06596917,-0.31195608,0.12798159,-0.43702284,-0.07711172,-0.7271954,-0.4296637,0.7203139,0.59374183,0.30845043,-0.14158945,0.18255155,0.082488775,-0.20399253,0.26260597,0.2632447,0.10822026,-0.06806572,-0.789744,0.052620143,0.5036956,-0.31664434,0.052897386,-0.047953673,-0.10682881,0.23879743,-0.20199862,0.13939205,-0.09719377,-0.79790074,-0.079704,-0.49992725,-0.45840314,0.30542526,0.05133784,0.17073585,0.2184408,0.07136847,-0.13790414,0.6511167,0.1720061,1.0226195,0.033565205,-0.16385034,-0.18448141,0.37441427,0.1649487,-0.083520725,-0.030600095,-0.3437782,0.018203901,-0.61736596,0.52569664,0.17180681,-0.3219142,0.01071241,0.0379625,0.16676667,0.5107291,0.0050528687,-0.061712224,-0.12217382,-0.10362153,-0.31379464,-0.26931486,-0.18216428,0.13888821,0.3816422,0.034732033,-0.15541188,-0.16095807,-0.17331915,0.27060816,-0.123119116,0.626144,0.29300043,0.11993545,-0.26119262,-0.13509846,0.24356113,0.5492995,0.014111431,-0.2170683,-0.32144314,-0.27845335,-0.4135242,0.110754736,-0.09527089,0.39539665,0.11121733,-0.050418172,0.66910076,-0.049215037,1.2267469,-0.00808319,-0.30949542,0.17130968,0.47202867,-0.044636603,-0.22405103,-0.20558415,0.9177784,0.43524578,-0.01003073,-0.10011764,-0.44029695,-0.17586647,0.23900877,-0.22449265,-0.14562733,0.10081098,-0.4671543,-0.2759168,0.11316577,0.13729091,0.28119,-0.17363882,0.19743569,0.45373985,-0.0781569,-0.040031016,-0.38503,-0.17239925,0.3001814,0.20310572,-0.10595268,0.018372843,-0.5441871,0.47387287,-0.37045106,0.17194824,-0.21989049,0.24342072,-0.30315813,-0.18061061,0.16222014,0.11803242,0.2836872,-0.44988534,-0.29780102,-0.43848428,0.53899777,0.12455593,-0.027098013,0.43075672,-0.32776657,0.011772965,-0.05271197,0.38276434,0.6921288,-0.28366834,-0.02167075,0.4024203,-0.4324141,-0.43203303,0.28503722,-0.3187696,0.09400483,0.10889169,-0.14528129,-0.68940353,0.22445928,0.17752054,0.12732857,-0.10705472,-0.7626397,0.067398585,0.3739643,-0.16146922,-0.12715204,-0.36923474,0.05422932,0.39283296,-0.25149792,-0.6311718,0.101832084,-0.11111212,-0.108760275,-0.41542414,-0.06701691,-0.41729417,0.19804774,-0.073531546,-0.32130393,-0.38661766,-0.13204193,-0.46403232,0.13369569,-0.009648967,-0.38696337,0.10400974,-0.2288781,-0.18238425,1.0354792,-0.30784145,0.2771748,-0.41279963,-0.4135452,-0.6395267,-0.38617674,0.23189838,0.1288553,-0.06409713,-0.76092064,0.022607194,-0.08586029,-0.364078,-0.1979606,-0.31796265,0.5126504,0.16772164,0.4221249,-0.15349698,-0.94804007,0.37290642,0.048643705,-0.32124397,-0.5829611,0.36685544,0.02114657,0.73060447,0.025612256,0.15319361,0.2980635,-0.42377928,-0.15306391,-0.17758097,-0.061681014,-0.45077085,0.0015203442,930 +566,0.32274136,-0.2530387,-0.6493139,-0.09066391,-0.09070265,0.31669956,-0.44029254,0.18086025,0.19446097,-0.4750999,0.079515085,-0.20610496,-0.09536987,0.051072028,-0.12794037,-0.67499393,0.045188945,0.019409698,-0.47652483,0.8015323,-0.43089765,0.1714601,0.14922486,0.18789007,-0.038511287,0.18589285,0.2032353,-0.14295684,-0.107791595,-0.09341341,0.09164526,-0.26808268,-0.535418,0.113910265,-0.26757595,-0.29532126,0.14255424,-0.2715577,-0.3966518,-0.778273,0.22502004,-0.9005701,0.4439222,0.02118449,-0.32362238,0.47808963,0.04169825,0.23226091,-0.26966766,0.0824094,0.14376776,-0.35467726,-0.40701053,-0.35098785,-0.38679928,-0.63730055,-0.45065904,-0.109499164,-0.58881146,-0.0074410737,-0.21940707,0.18549204,-0.2576515,-0.12853839,-0.2847985,0.30543616,-0.4973289,-0.1554211,0.11794293,-0.095052205,0.3737138,-0.8209531,-0.12246658,-0.13592021,0.022524636,0.15156695,-0.13679305,0.21602537,0.17141524,0.40352282,0.016333086,-0.21066292,-0.36852512,-0.15937744,0.36679167,0.2580894,-0.028008742,-0.18771695,-0.17558457,-0.22910394,0.33081004,0.32247835,0.14296229,-0.31667343,0.038066,0.03528732,-0.38245794,0.46471336,0.6698925,-0.27495587,-0.027794315,0.39797026,0.45749268,0.2985671,-0.32038498,-0.017279983,-0.08177025,-0.46401992,-0.19662301,0.44242483,-0.096938595,0.6464637,-0.14616157,0.2307694,0.49512094,-0.17319253,0.06455158,-0.033763546,-0.008537999,0.014654564,-0.18365596,-0.19705555,0.2719406,-0.6329651,0.06696028,-0.58267033,0.39232954,0.018998938,-0.63426214,0.28804868,-0.4754478,0.14319511,0.030669121,0.725008,0.79755116,0.54837036,-0.04042398,0.744538,-0.36148334,-0.13368101,-0.13628684,-0.1510836,0.25311238,-0.12230485,0.1901463,-0.39251933,-0.087940514,0.0569028,0.046431493,-0.108972274,0.6482148,-0.20927732,-0.1457644,0.094169565,0.7278493,-0.23670384,0.04777757,0.6388833,1.1271385,0.7728134,0.1147481,1.450303,0.39826816,-0.24156204,-0.09797077,-0.031175297,-0.7981352,0.16277921,0.32272503,0.44139758,0.38264152,0.038555168,-0.1912137,0.39562207,-0.2748277,0.076208256,-0.17637947,0.108931676,-0.14950256,-0.17030866,-0.21963789,-0.10361425,0.05024951,0.06822573,0.26226902,0.23943743,-0.06800843,0.42253777,0.13988641,0.9770595,-0.20004402,0.052792035,0.05146804,0.3293423,0.21970864,0.07770598,0.06913996,0.43790013,0.34576195,0.013102134,-0.60746247,0.082505904,-0.27306518,-0.52449715,-0.1834507,-0.40286514,-0.19409847,-0.09367701,-0.31381717,-0.25492415,-0.032162435,-0.48059484,0.23076192,-2.7278993,-0.1847935,-0.26877642,0.23814459,-0.21296346,-0.19903731,-0.16861835,-0.42741466,0.6580885,0.31466818,0.3680287,-0.5623999,0.47281858,0.64156353,-0.47561413,0.0008215989,-0.6497119,-0.10560601,-0.14603174,0.5406473,-0.06619167,-0.27981535,0.14673318,0.0056321365,0.50712967,0.032771137,0.18661597,0.31308866,0.49054334,-0.1262178,0.22823915,-0.007843311,0.38509536,-0.416511,-0.048880134,0.34153005,-0.29928797,0.39349762,-0.3063828,0.23703761,0.46012592,-0.43081123,-0.5088294,-0.4150353,-0.1590689,1.0900857,-0.2783423,-0.7191118,0.11651923,-0.21966507,-0.29256597,-0.1549772,0.6555008,-0.1556101,0.105645485,-0.68142813,-0.13884793,-0.016938487,0.25770906,0.08935974,0.26755774,-0.3642585,0.88692516,0.026634319,0.5882373,0.4448831,0.17533578,-0.17878532,-0.46080568,0.25971296,0.7410484,0.375181,0.07847919,-0.2461364,-0.17880745,-0.16175675,-0.2233936,0.037618805,0.6160199,0.8752286,-0.037579454,0.07218761,0.24073088,-0.22167595,0.027636811,-0.24247925,-0.38970488,-0.2532026,0.17564575,0.43960088,0.5214144,-0.02055149,0.26001835,0.055027492,0.27500194,-0.3044431,-0.5049886,0.65203476,0.93317896,-0.18332063,-0.05890461,0.55672276,0.67364424,-0.3507639,0.5173334,-0.6463317,-0.39925703,0.4665641,-0.17517142,-0.5147091,0.31345412,-0.43869898,0.10709662,-0.70710754,0.15719078,-0.4942146,-0.2714196,-0.77779853,-0.08193493,-2.9269307,0.11105231,-0.3290477,-0.08238526,-0.40166038,-0.17767687,0.44657642,-0.38302487,-0.5166747,0.23337577,0.19350131,0.6631278,-0.06754859,-0.05673011,-0.38378686,-0.25719,-0.26689234,0.20697513,0.020175753,0.087213375,-0.39432636,-0.28794646,-0.029737523,-0.16110332,-0.2660026,-0.13175417,-0.28498736,-0.23161952,-0.2513506,-0.24885789,-0.17527331,0.6656992,-0.3647054,-0.0756019,-0.23333065,-0.022598648,0.06122517,0.37119165,0.039851807,0.22205357,-0.04932418,-0.12419183,0.056744635,-0.3419606,0.13472612,0.1169585,0.1320386,0.69919634,-0.15026556,-0.007543317,0.33961576,0.60954523,0.04430782,0.8693796,0.22899291,-0.095837906,0.46497256,-0.16268589,-0.3121509,-0.7591378,-0.19694625,-0.13029717,-0.3010109,-0.547978,-0.15103768,-0.23349372,-0.7151333,0.46026847,0.14817251,0.1785331,0.078798614,0.52320874,0.49672085,-0.1275654,0.06034107,-0.16415755,-0.15741846,-0.3299641,-0.28314728,-0.84700096,-0.51905525,0.16958416,0.69430363,-0.1474826,-0.2766619,0.25298664,-0.3723523,0.09954447,0.31086174,0.10032606,0.116067424,0.32919332,0.2476342,-0.6196561,0.696761,0.10178079,-0.15770134,-0.6642513,0.1456472,0.6483177,-0.7380882,0.37746185,0.60127014,-0.056678712,-0.32843775,-0.55160993,-0.116120614,0.09620179,-0.32701316,0.41944274,0.1768719,-0.8537427,0.42148283,0.1938483,-0.037448194,-0.70317876,0.51243746,-0.042274285,-0.13431735,0.023506578,0.51917803,0.019604564,0.13329098,-0.22106747,0.31835964,-0.35867923,0.23572232,0.1462739,-0.078765534,0.5213911,-0.046352386,-0.1672632,-0.7449618,0.115628324,-0.55406696,-0.11367799,0.5625506,-0.043052394,0.3199202,0.09680707,0.12702645,0.37807605,-0.34409577,0.22431557,-0.1960801,-0.37754494,0.40819237,0.49188766,0.35814834,-0.40480635,0.7467702,-0.15950893,-0.21329466,0.08958066,0.20898768,0.3516486,0.26215467,0.5021262,0.029178878,-0.17274849,0.086679,0.96527004,0.3122849,0.50298727,0.3951871,-0.068468705,0.50471205,0.033108365,0.16214712,-0.2755715,-0.5208642,-0.15553318,0.002004632,0.24547903,0.37290117,0.0054420233,0.5383344,-0.120506905,0.15656163,-0.07646445,0.27098346,0.10032716,-0.67135775,0.2745134,0.25189453,0.68197405,0.64854366,-0.07056708,0.05802358,0.46601528,-0.18826962,0.078342,0.35468084,0.13372931,-0.5193105,0.51993996,-0.56558836,0.22959697,-0.18114951,0.02418461,0.13701923,0.036726702,0.46337706,0.79159874,-0.15079817,0.049597852,-0.058620814,-0.22435713,0.28286773,-0.2674189,-0.016775532,-0.1299521,-0.46199164,0.60326433,0.3972394,0.38984272,-0.2061458,-0.07579662,0.22495513,-0.055231202,0.53757507,0.06554586,0.096310414,-0.25842458,-0.59329176,-0.26665646,0.48005673,-0.054865744,0.15200412,0.25290355,-0.23176602,0.18900375,-0.07701974,-0.08832292,-0.09170443,-0.6430273,0.11023987,-0.32343462,-0.61839205,0.649501,-0.02528033,0.27102828,0.328878,-0.05617268,-0.23085739,0.055130474,0.007037725,0.4794111,-0.101143666,-0.16048951,-0.36830926,-0.063460395,0.32031605,-0.48290023,0.0057658213,-0.01768466,0.1756312,-0.7202299,0.5377557,-0.37120432,-0.1998637,0.1673377,-0.2597174,-0.12567048,0.6077176,-0.2876595,-0.16402756,0.2997978,-0.07337095,-0.35401607,-0.35705847,-0.2297734,0.17231146,-0.07708037,0.1273375,-0.25952926,0.031611342,0.1124915,0.31884027,0.14860177,0.017633393,0.46765748,0.12228567,-0.52428305,-0.1762509,0.28047296,0.54462975,0.16760029,0.019033518,-0.2842228,-0.5346359,-0.36642843,0.2771825,-0.012390162,0.23654023,0.15850933,-0.45458147,0.76168424,-0.010426061,0.78404766,0.032822963,-0.4359884,0.12995742,0.5683857,-0.116240434,-0.19678439,-0.33061934,0.7678032,0.56695205,-0.19096892,-0.05608916,-0.47198132,-0.021287147,0.3467029,-0.2943487,0.0046860576,-0.08050973,-0.70108604,-0.23695551,0.17159484,0.21772881,-0.06297753,-0.28606123,0.1435716,0.068222575,0.15759088,0.2685322,-0.62419516,-0.23822732,0.37716293,-0.1371268,-0.009251835,0.18785068,-0.24727595,0.23327853,-0.66795766,-0.05554119,-0.44007125,-0.122528866,0.14553441,-0.22154489,0.22453716,0.070301466,0.2840787,-0.33074903,-0.49352902,-0.108325675,0.4231235,0.32051376,0.46658966,0.5598411,-0.16826937,0.04701313,0.0023168602,0.6038836,1.2666095,-0.12986264,-0.041071586,0.21331213,-0.506465,-0.7280669,0.22921522,-0.45557848,0.4309666,0.03383797,-0.46731168,-0.409437,0.22571845,0.05913353,-0.13335933,0.07076399,-0.7644667,-0.30656677,-0.00022700003,-0.2684804,-0.18565418,-0.35319546,-0.06396807,0.74474555,-0.33607224,-0.11754157,-0.10596103,0.2902893,-0.43898717,-0.4192522,0.14713906,-0.34066454,0.27054822,0.10609098,-0.23239692,0.2453059,0.07067892,-0.6524259,0.23487233,0.030004527,-0.4388608,-0.13141978,-0.3266931,0.067316815,0.7679269,-0.13112545,-0.03818847,-0.14620654,-0.7383459,-0.67681456,-0.43967268,0.010302661,0.17069733,0.1046209,-0.507968,0.20287158,-0.13866097,0.24288486,0.05145681,-0.41858324,0.42779693,0.123193555,0.45310694,-0.18754824,-0.6484892,0.17724968,0.107269004,-0.26807603,-0.41795555,0.39294648,-0.28917602,0.8035425,0.15798876,0.068931326,0.2208679,-0.7749496,0.281986,-0.3733832,-0.13060842,-0.56656474,0.08109655,931 +567,0.40259212,-0.44668746,-0.45567065,-0.09600329,-0.25801295,0.2837452,-0.2194331,0.32570633,0.11986934,-0.4600543,-0.18503179,-0.27945277,0.0732171,0.15471356,-0.21790017,-0.2837863,-0.04987963,0.20579569,-0.68213654,0.5239584,-0.23205402,0.1646918,0.055609297,0.5077859,0.43739244,0.21521671,-0.003894529,-0.0579249,-0.39117458,-0.198016,-0.013095613,0.21108945,-0.4715508,0.1421093,-0.32102603,-0.40508464,-0.09998184,-0.5572728,-0.40759936,-0.81913537,0.34045666,-1.0028776,0.51309747,-0.11076286,-0.24208303,0.28352436,0.24669555,0.29490572,-0.13629784,-0.18982278,0.38027787,-0.2450645,-0.05703468,-0.095280826,-0.29059675,-0.43128154,-0.5255825,0.016793745,-0.33254805,-0.19608554,-0.31637532,0.16060312,-0.25335056,-0.07569226,-0.03683598,0.6921914,-0.42846698,0.26509142,0.17271364,-0.021783782,0.4145557,-0.61977416,-0.28339797,-0.2731454,0.32549042,-0.27475026,-0.25772035,0.29610014,0.32380566,0.26201922,-0.15853238,-0.0724616,-0.36202082,-0.020323243,0.19009304,0.4814499,-0.08384156,-0.4865985,-0.21448374,-0.14564331,0.15042014,0.09743273,0.3483079,-0.2814998,-0.019753734,0.002156594,-0.20550935,0.5683545,0.41871172,-0.13857445,-0.10708548,0.32387877,0.63953096,0.30952507,-0.27724567,-0.15702698,0.073230386,-0.463476,-0.08994783,0.3103933,-0.30057436,0.5170494,-0.18316755,0.2647094,0.74176174,-0.28801155,-0.03636474,0.11939748,0.18938705,-0.35371166,-0.0009808199,-0.36545804,0.27395943,-0.3895206,0.15879102,-0.14072917,0.64627045,0.088722415,-0.6044291,0.24780117,-0.5537568,0.11790222,-0.048251566,0.34981653,0.7038054,0.46007714,0.46641514,0.55389345,-0.25459197,0.08003085,0.0835315,-0.37832215,-0.0900844,-0.44210073,-0.14420076,-0.5056011,-0.13783383,-0.15613171,-0.21180831,-0.081827536,0.56120765,-0.5550021,-0.09247399,-0.02034247,0.83482224,-0.2676445,-0.14081967,0.9363555,0.8849591,0.9974898,0.089481056,1.1723297,0.3320465,-0.32341304,0.11564988,-0.15541695,-0.7301913,0.37948427,0.31181064,-0.61548436,0.29545408,0.065066494,-0.010062908,0.38405666,-0.35253605,0.06450986,-0.32851723,-0.1376947,0.12787053,-0.075752005,-0.35223532,-0.27770296,-0.12573496,0.015105994,0.17944355,0.12775204,-0.25009996,0.577434,0.19399115,1.7110802,-0.11147703,-0.051375575,-0.020883588,0.47200757,0.17075919,-0.13753165,-0.18372633,0.26281908,0.40582862,0.3083158,-0.52371234,0.21730338,-0.11929349,-0.34652707,-0.26019156,-0.3678178,-0.20930994,-0.062067445,-0.41637442,-0.1795276,-0.099749506,-0.2770268,0.2149762,-2.4688408,-0.07740158,-0.14300796,0.34069577,-0.14212342,-0.3118941,-0.07257911,-0.57197803,0.35926232,0.21855326,0.4678822,-0.55633837,0.26908544,0.49855027,-0.62751806,-0.08988077,-0.6263147,-0.2045351,0.010875844,0.3914745,-0.03214236,0.044439077,0.1772137,0.14505635,0.42128843,0.0014612228,0.16678683,0.28575382,0.6114517,-0.053434405,0.51563394,0.054664467,0.5142829,-0.21964057,-0.29065087,0.45724088,-0.3029979,0.2776725,-0.16581668,0.16972099,0.70433575,-0.40017578,-0.8656021,-0.72774655,-0.22430818,1.199025,-0.16264212,-0.5155655,-0.046017308,-0.35398063,-0.39659756,-0.02590224,0.5321749,-0.061920345,0.056899786,-0.8864133,-0.08246483,-0.013975416,0.13227426,0.05846686,0.060872383,-0.42127284,0.6695137,-0.035576984,0.37210438,0.29893965,0.1895144,-0.45093748,-0.5005301,0.15715767,0.9193781,0.3501594,0.14023113,-0.3799377,-0.11816307,-0.38435337,-0.0602101,0.03191844,0.45345968,0.4313848,0.010879904,0.26613727,0.28107888,-0.078490295,0.09729319,-0.3242454,-0.2813937,-0.19070257,-0.07890233,0.454281,0.53818,-0.033181045,0.5820777,-0.12633964,0.28553602,-0.13026308,-0.5120632,0.61809355,1.2455828,-0.22646005,-0.35940197,0.570419,0.4594228,-0.33478943,0.34574655,-0.5439751,-0.19694437,0.4742438,-0.21545005,-0.5553213,0.25600395,-0.2671303,0.1946789,-0.8751211,0.29972702,-0.23760687,-0.37857407,-0.6754961,-0.035634894,-2.9845395,0.22721751,-0.19790375,-0.371408,-0.17957138,-0.35316262,0.16602065,-0.58185565,-0.5768318,0.11813577,-0.040074397,0.9144457,-0.05529609,0.14798029,-0.2564183,-0.27515337,-0.16013534,0.0869725,0.25587505,0.39118457,-0.22850582,-0.58170784,0.055603366,-0.25339636,-0.39359522,-0.109662734,-0.6356589,-0.44642887,-0.18875061,-0.49753076,-0.3781539,0.65417546,-0.3112037,0.08140143,-0.23901919,-0.016571494,-0.012813389,0.40391475,0.09746276,0.1523557,0.08545502,-0.10451567,0.08461147,-0.22223881,0.305229,0.061804015,0.0010385726,0.3872726,-0.10204436,0.46914247,0.41760203,0.73867416,-0.08565189,1.0484062,0.43434387,-0.19382314,0.15522,-0.21975875,-0.30163863,-0.6259228,-0.15776245,0.1240293,-0.45649353,-0.5273687,0.003589843,-0.3139231,-0.7814936,0.631873,-0.084143035,0.19548662,0.040799327,0.31496835,0.53063023,-0.26918393,-0.12102895,-0.04837587,-0.16989207,-0.56702197,-0.30171445,-0.617577,-0.60311806,-0.08464963,0.87929636,-0.10750763,-0.015696853,0.1449317,-0.4330555,0.06757693,0.15312418,-0.124317355,0.13285556,0.43395418,-0.0832082,-0.62873536,0.49680662,-0.032687973,-0.15350583,-0.5802665,0.2896126,0.74476635,-0.55202895,0.49654928,0.4611473,-0.075209565,-0.4288959,-0.4046069,-0.13320112,-0.08094554,-0.12743859,0.4099434,0.27858788,-0.70670563,0.40478903,0.27088732,-0.20749311,-0.78534937,0.70650166,0.04971049,-0.2660439,0.0065568197,0.39606974,-0.039821357,-0.064210914,-0.4652761,0.27949736,-0.34972125,0.15861197,0.17032872,-0.05648273,0.12753224,-0.23068024,-0.10326111,-0.8043291,0.16997658,-0.39050457,-0.31518942,0.4181262,0.022833914,0.14826988,0.32899567,0.18678226,0.28259543,-0.3027181,-0.051955692,-0.13824114,-0.13179655,0.15861407,0.47378612,0.5759631,-0.56562525,0.6385408,-0.055212237,-0.18935569,0.00577536,0.17850997,0.3964043,0.20892164,0.5460265,0.1919011,-0.33639258,0.22091272,0.82343155,0.17349818,0.74295384,0.10805667,-0.26073396,0.056357037,0.08443693,0.4630414,-0.21716125,-0.5445995,0.11996029,-0.375884,0.13363865,0.4586422,-0.06218142,0.26046404,-0.16594256,-0.51950866,0.06708924,0.13619195,0.10478741,-1.261546,0.3430182,0.28862074,0.9624093,0.31257424,-0.08752407,0.02547093,0.77544963,-0.26254106,0.07920601,0.34633848,0.021336552,-0.48865175,0.47525683,-0.805636,0.41768864,-0.07688953,-0.08629058,0.013925071,-0.14621897,0.3956391,0.7890216,-0.20554972,0.14490795,0.011941607,-0.32996145,0.38413543,-0.5014785,0.14698426,-0.4897166,-0.2688476,0.72488594,0.5577673,0.34237877,-0.22958663,0.113677636,-0.019473491,-0.1760274,0.2237996,0.3109096,0.17364545,-0.09244494,-0.83507204,-0.04893043,0.5106998,-0.038127635,0.27650768,-0.008845576,-0.20679487,0.29322428,-0.19127408,0.120306134,-0.11135509,-0.8464884,-0.1535743,-0.3560767,-0.5430497,0.40523285,-0.0096025895,0.21163526,0.2507555,-0.009613445,-0.32720733,0.42645237,0.1889581,0.8494752,0.12276469,-0.025788536,-0.35294178,0.17514226,0.3060567,-0.22834711,-0.13640133,-0.09753128,0.12437795,-0.49879023,0.4736993,0.014449771,-0.47025844,0.035814334,-0.060212355,0.07290031,0.6978037,-0.04580212,-0.11723755,-0.10130613,-0.05724821,-0.2599325,-0.029687796,-0.13660951,0.23363876,0.28955683,0.007240129,-0.28491387,0.046343118,-0.28337386,0.46520576,-0.031437647,0.65879303,0.63274574,0.029388053,-0.45933124,-0.14630933,0.20714031,0.6332653,-0.011423848,-0.21556415,-0.36207595,-0.42800277,-0.29966456,0.27576947,-0.04650917,0.22699283,0.22472672,-0.31481716,0.76357704,-0.2628679,0.9668001,0.008628385,-0.5023404,0.21811523,0.4550833,-0.08708714,-0.15747865,-0.49402174,0.8319076,0.33968282,-0.089961,-0.06715099,-0.35379907,-0.026274364,0.22468622,-0.1637063,-0.14792752,-0.03412825,-0.6583534,-0.23669091,0.22049832,0.27812985,0.18474352,-0.17282364,0.17985395,0.406218,-0.054488394,0.2704926,-0.51074165,-0.20722707,0.37437147,0.21892236,-0.0409383,0.14007352,-0.36540055,0.45071134,-0.36404356,0.06920254,-0.29842165,0.2678187,-0.28748956,-0.23510382,0.24495867,0.1407611,0.41507742,-0.31475952,-0.25124308,-0.42445964,0.4473896,0.28429702,0.13668284,0.3906156,-0.29697436,0.10233361,0.07751689,0.48530152,0.929712,-0.26697773,0.17966986,0.3922254,-0.38141844,-0.44488817,0.4449299,-0.41807002,0.2702786,0.02895655,-0.0723842,-0.51060134,0.26169488,0.30227122,0.14505406,-0.11938972,-0.6343945,-0.11580206,0.42581132,-0.31150892,-0.18843745,-0.3037896,0.070543125,0.23681927,-0.31274417,-0.28849858,0.030759811,0.268927,-0.09977838,-0.2336751,-0.13699673,-0.3922382,0.40214175,-0.048486166,-0.38112825,-0.11546661,-0.22285356,-0.48974445,0.26096088,0.043973804,-0.43555215,-0.0048993654,-0.15124063,-0.068254165,0.90646,-0.28487313,-0.081292614,-0.35725102,-0.4282344,-0.7874607,-0.26303557,0.30445454,0.098385625,-0.01801421,-0.5942346,0.033540938,-0.09690804,-0.07488554,0.006478467,-0.616155,0.48531765,0.16348624,0.44505447,-0.007106351,-0.7572183,0.24127391,0.08221795,-0.19632228,-0.6685411,0.5296072,-0.10476518,0.72790664,0.019466149,0.21881448,0.3199907,-0.40316424,-0.14620683,-0.090612866,-0.2334626,-0.650274,-0.015832279,936 +568,0.5630353,-0.17743155,-0.55634755,-0.25934976,-0.39425486,0.090847254,-0.35742927,-0.020869901,0.22556463,-0.41043976,-0.22132835,-0.12188021,0.034757327,0.40535286,-0.23050506,-0.8215418,-0.007963636,0.21574919,-0.5967173,0.45548037,-0.6193647,0.26715347,0.037001234,0.54266685,0.00052665814,0.29342356,0.375058,-0.023204157,-0.26778308,0.014795073,-0.07280571,0.22223027,-0.9822999,0.20503463,-0.1447502,-0.48913023,0.055048548,-0.41151974,-0.26058397,-0.9221493,0.4892488,-1.0545412,0.61410046,-0.058202393,-0.2963428,0.07669943,0.05674398,0.21427216,-0.39901915,0.08008214,0.26226372,-0.54389584,-0.15253152,-0.24024396,-0.18799232,-0.56851983,-0.778248,0.09348693,-0.7089728,-0.04991413,-0.3414369,0.2678471,-0.31226733,0.07232355,-0.306879,0.3309652,-0.6193163,-0.119101815,0.12716666,-0.13502975,0.23697303,-0.2888954,-0.20545742,-0.22163773,0.2606267,-0.12605432,-0.20482324,0.32063887,0.36580577,0.5932582,0.19070816,-0.353961,-0.35568348,0.02575085,0.16494314,0.32556322,-0.04484821,-0.43953127,-0.36280277,-0.13646527,0.36766466,0.39743453,0.069975555,-0.340077,0.21450163,0.13219073,-0.11902591,0.40916866,0.5000873,-0.3901537,-0.26279444,0.2589495,0.5172369,-0.17349158,-0.26350597,0.009629548,0.08294458,-0.69563115,-0.33087865,0.43379173,-0.23400022,0.6561986,-0.14568436,0.11818942,0.91087335,-0.3692027,-0.064057834,-0.26574966,-0.11871071,-0.24046943,-0.23068942,-0.21498892,0.45100376,-0.45284346,0.037565477,-0.2804256,0.7229357,0.23166026,-0.7367205,0.34060812,-0.5663229,0.13900664,-0.123797655,0.7084939,0.65952843,0.40261716,0.5507115,0.8566038,-0.4761712,0.3077206,0.13642107,-0.460354,0.09406923,-0.3707039,0.101737045,-0.34664026,0.0044616675,-0.23556297,-0.11410512,-0.08389325,0.4940894,-0.40800306,-0.02825378,-0.00096509286,0.6530856,-0.4474638,0.041130718,1.0362759,1.1262801,1.1822788,0.21101487,1.6232721,0.6324304,-0.0767589,-0.15073776,-0.14604096,-0.61963195,0.1863834,0.44810146,-0.2497752,0.31539592,0.036837675,0.16709037,0.4589822,-0.63120043,0.012944677,-0.16709948,0.20074166,-0.12023686,0.07246675,-0.60470164,-0.15693347,0.12686107,0.02394686,0.09812649,0.37720013,-0.11859507,0.60078526,0.06556364,1.1403421,-0.04648235,-0.04277686,-0.08915786,0.5464351,0.14492199,-0.030607095,-0.06765843,0.1855751,0.4627189,-0.12352882,-0.7140297,-0.050487183,-0.32807684,-0.34506717,-0.37262195,-0.40491995,0.23081145,-0.27451205,-0.3523721,-0.24871598,0.057817925,-0.30926195,0.47998708,-1.9743053,-0.14110401,-0.18248507,0.23280115,-0.12651253,-0.31292233,-0.16899957,-0.62899536,0.39998797,0.37807298,0.39441177,-0.6410139,0.35630697,0.43414164,-0.46754834,-0.09293396,-0.988426,-0.0033068317,-0.33860043,0.41052845,-0.07100372,-0.28304932,-0.31142756,0.17213437,0.6371749,0.08408087,0.10737778,0.18571188,0.5451745,0.032867067,0.68053436,0.25345263,0.5315918,-0.3511474,-0.2804843,0.5175304,-0.37633476,0.3385942,-0.055170804,0.17054716,0.52649206,-0.7131289,-1.0730947,-0.8356449,-0.6130751,1.0421966,-0.33608574,-0.5042278,0.15835033,-0.08818977,-0.22394456,0.012074134,0.38108367,-0.2642472,0.103487544,-0.7874591,-0.065875076,0.14258228,0.2794376,-0.037783828,0.27663124,-0.35264271,0.5383375,-0.20773129,0.15546967,0.459405,0.27354065,-0.19450484,-0.6568703,0.25085333,0.9565175,0.27826095,0.098538145,-0.31032056,-0.36328772,-0.013339775,-0.193628,-0.03423739,0.43266302,0.9578577,-0.24267784,0.020416604,0.34158173,-0.29793778,0.039049268,-0.13011232,-0.3183587,-0.10197033,0.06813377,0.5922242,0.75423735,-0.21956041,0.25514835,-0.33894977,0.51479053,0.0131848585,-0.5192837,0.6770095,1.0582381,-0.12239496,-0.08909122,0.81955624,0.5872657,-0.6270383,0.7063962,-0.76702434,-0.33427265,0.64509517,0.012271361,-0.42317942,-0.17943093,-0.34920564,0.33711436,-1.0392708,0.303873,-0.03010724,-0.3627022,-0.6372908,-0.21539016,-3.9206147,0.1489942,-0.23366295,0.0073726005,-0.07970953,-0.2227516,0.37410328,-0.5546016,-0.65356815,0.1255943,-0.011060503,0.5963963,-0.102275714,0.32921436,-0.38549998,-0.1504077,-0.32781428,0.26034227,0.46147007,0.3531511,-0.007994456,-0.52272046,0.2450464,-0.42328677,-0.45088312,-0.17751609,-0.66923743,-0.510188,-0.25758323,-0.6797315,-0.5315801,0.6501446,-0.31368932,-0.034989957,-0.34763643,0.12301066,-0.22270682,0.5013763,0.18053566,0.3362182,0.14914873,0.07110208,-0.19030759,-0.22208397,0.3157738,0.031315345,0.030639231,0.2624134,-0.05749764,0.22175767,0.47609776,0.7218774,-0.017661443,0.93724245,0.38437706,-0.013733777,0.21935473,-0.3673903,-0.4984839,-0.87116754,-0.46121305,-0.24247435,-0.5294703,-0.5061051,-0.09384644,-0.42333984,-1.0134863,0.71083206,0.06575994,0.184643,-0.14259446,0.44666752,0.4218464,-0.24841748,0.007272831,-0.15282938,-0.2535193,-0.5875045,-0.54003733,-0.763437,-0.7694343,-0.07206905,1.1206868,-0.03204012,-0.3425579,0.24474089,-0.42866588,0.25607768,0.21781063,-0.0037375134,0.23408845,0.697573,0.1466411,-0.8013997,0.50515586,0.031850595,-0.0612665,-0.5868967,0.0044404524,0.8117301,-0.86253196,0.7114728,0.58492315,0.22921541,0.21435615,-0.6210889,-0.3831535,0.05384677,-0.0570773,0.7158661,0.2872445,-0.8154526,0.6623413,0.17673358,-0.27815852,-0.85435545,0.5418178,0.05784915,-0.1907728,0.21338478,0.45296404,0.028416293,-0.054655105,-0.43672827,0.23591502,-0.53250813,0.22918512,0.449972,0.056147087,0.37230772,-0.19290951,-0.3251576,-0.8326183,-0.09487339,-0.47468826,-0.26835233,0.030141482,-0.12333421,-0.07145041,0.23260215,0.084784046,0.42203522,-0.34362355,0.16160889,-0.0753362,-0.3343881,0.20871113,0.53779286,0.26140672,-0.6062607,0.76636183,0.10470385,-0.27380317,-0.19828519,-0.080577016,0.4467666,0.15442204,0.28741175,0.07785287,-0.13842593,0.03104854,0.62480146,0.08884297,0.5427098,0.23500337,-0.20961216,0.60493314,0.24598959,0.26457173,-0.058958855,-0.24408457,0.08854042,-0.060321517,0.05606131,0.38878083,0.08511938,0.43064165,-0.03679266,-0.04691135,0.20039405,0.1460304,-0.055063862,-1.3257035,0.29467854,0.1797054,0.6097021,0.6454855,0.050175223,-0.039495353,0.61621827,-0.70012665,-0.07870535,0.4088157,0.20508745,-0.44525903,0.5887221,-0.5331465,0.38898394,-0.29525822,-0.082245186,0.044870887,0.3629563,0.38726425,1.0146881,-0.07596582,0.19042012,-0.090136655,-0.040332604,0.2933357,-0.27183756,-0.061224945,-0.3654206,-0.36890444,0.7932443,0.36037797,0.4720991,-0.29035473,-0.095302865,0.013400367,-0.21104264,0.3356796,-0.04641674,-0.17467615,0.0626903,-0.6838078,-0.2605093,0.5209028,0.108307496,0.00055309065,0.10515843,-0.45486158,0.2975974,-0.2625988,-0.08219145,-0.042573,-0.83441085,-0.32475758,-0.38554317,-0.40763712,0.45170054,-0.4468377,0.27398542,0.23366454,0.061714377,-0.4493394,-0.012795689,0.22568281,0.8111729,0.40585026,-0.113699794,-0.28560376,0.079479694,0.49283418,-0.5022513,0.059623618,-0.34106258,0.15414552,-0.55172163,0.633143,-0.21859124,-0.393387,-0.053687956,-0.17227003,0.009767703,0.60776097,-0.216644,-0.20455413,0.26156786,0.027963161,-0.29462835,-0.25573775,-0.3584054,0.24859358,-0.052272405,-0.007950498,-0.07464201,-0.06737041,-0.07658733,0.85166645,-0.05520689,0.29116583,0.2728921,-0.12128877,-0.41421336,0.012761644,-0.13259831,0.5193567,-0.012588569,-0.25819662,-0.39560273,-0.27529687,-0.1217807,0.28500384,-0.1765047,0.036416225,0.037418924,-0.44252846,0.8228442,0.2157928,1.3577224,0.10985493,-0.5211237,0.04691719,0.6053724,-0.004986848,0.15235741,-0.45723078,1.0448345,0.47071174,-0.32532224,-0.13838181,-0.5010111,-0.12194286,0.23677588,-0.2556249,-0.12315603,-0.29242048,-0.77023536,-0.28764287,0.24707463,0.3911579,0.11289965,-0.04124562,0.28041238,0.041334577,0.25327998,0.699014,-0.48696828,-0.09579929,0.4566618,0.29371768,0.02267374,0.21535513,-0.07852743,0.4594774,-0.52650243,0.10610391,-0.66383666,0.10090273,0.09504758,-0.45203432,0.18817149,0.16910097,0.40602753,-0.26735,-0.24717629,-0.26971126,0.8060288,0.27283198,0.22686605,0.7523716,-0.29809374,0.0822965,0.06579529,0.55910015,1.5472772,-0.26090723,0.21338442,0.17051843,-0.21420605,-0.55100167,0.44218454,-0.5204458,-0.08068289,-0.18250932,-0.49887577,-0.6156683,0.13871573,0.11661398,-0.09804548,0.17702878,-0.5214787,-0.134418,0.5085406,-0.08845459,-0.21011125,-0.32739225,0.44386694,0.68282634,-0.37629387,-0.26272938,0.087251686,0.3419013,-0.24225108,-0.43792632,-0.12902027,-0.3731092,0.46048698,0.104101874,-0.46140394,0.074862,0.23825775,-0.42271134,0.118892215,0.48562995,-0.30150393,0.1162976,-0.240011,0.056444068,1.1443878,-0.009562075,0.1526853,-0.61773765,-0.50318235,-1.1901648,-0.15298608,0.43129948,0.2877193,0.073533766,-0.44685668,0.007541001,0.0229314,-0.0048498,0.26588523,-0.8131496,0.38316685,0.101921625,0.71301556,0.091384076,-0.8130186,-0.085224174,0.08635123,-0.22842346,-0.35273567,0.59420913,-0.10658006,0.8466391,0.09498169,0.0927018,-0.021123962,-0.56525385,0.3730547,-0.3419449,-0.17960323,-0.7255211,-0.03434779,943 +569,0.32481197,0.011607647,-0.50352204,-0.072180815,0.038998544,0.10440359,-0.15036309,0.14022999,0.21562424,-0.41741523,0.030693308,-0.17495392,0.021057572,0.34395048,-0.17433837,-0.677925,0.017476724,0.16211717,-0.28988814,0.3024004,-0.48776224,0.3945207,-0.042960893,0.18099608,-0.19664635,0.19966975,0.4322743,-0.122304015,-0.14667585,-0.2761836,0.094974294,0.18108848,-0.5992133,0.23557952,0.14460003,-0.32716078,0.097461216,-0.27060443,-0.37480205,-0.52578145,0.32714763,-0.73815566,0.52737427,0.24131183,-0.1074426,0.21833737,0.13429372,0.22443001,-0.31848326,0.17873558,0.13319682,-0.17092974,-0.088131845,-0.24939987,-0.27557537,-0.21097663,-0.49003473,0.010689578,-0.44689175,-0.1249057,-0.40637377,0.10896653,-0.40555552,0.017257173,-0.17973062,0.30921003,-0.37742758,0.01653908,0.2668834,-0.26919934,0.24610092,-0.2679293,-0.09239401,0.00053199485,0.059228476,-0.3002827,-0.0741735,0.19465575,0.14095919,0.43996096,-0.028761348,-0.148249,-0.2911246,-0.24659573,0.2770039,0.6092066,-0.19580944,-0.38400322,-0.12179928,-0.009225952,-0.13799939,0.13797292,-0.038919974,-0.37669674,-0.052024383,0.053771503,-0.28281972,0.33215886,0.52675873,-0.23391096,-0.1980077,0.39043984,0.29965216,-0.21388957,-0.018310426,0.20816419,0.15640496,-0.522283,-0.2508442,0.074929334,0.06862747,0.40208647,-0.05360284,0.33565637,0.6449613,-0.42059138,0.007702078,-0.037553847,0.01875405,-0.026781917,-0.3173403,-0.18001893,0.26662058,-0.4175539,0.0059110946,-0.097460985,1.0355021,0.059909515,-0.8482197,0.43902665,-0.4043305,0.09891661,-0.15768231,0.5699088,0.3544806,0.25828487,0.16725476,0.68394405,-0.62764037,0.08931891,-0.03891662,-0.6021937,-0.022495074,0.10921766,-0.23021376,-0.3348392,-0.022955963,0.30017525,0.07216792,0.14672367,0.35130462,-0.3722233,-0.092800654,0.021972569,0.84962314,-0.35372704,-0.06362915,0.47641724,1.1249714,0.74752766,0.03819927,1.144314,0.29006213,-0.12851441,-0.10868498,-0.19837774,-0.8950914,0.19391575,0.23676832,-0.26070204,0.28481093,0.15442726,-0.15304302,0.17720218,-0.38567585,-0.06868149,-0.10979348,0.37496647,-0.10663407,-0.072456725,-0.3872336,-0.077012815,0.10536886,-0.114611864,0.23092738,0.21411125,-0.1983056,0.17904806,0.121176854,1.532343,-0.044942237,0.24984454,0.07625913,0.4189516,0.3143766,0.02468991,-0.16547082,0.30126914,0.33716002,0.0830456,-0.5282565,0.05188625,-0.023884919,-0.43044788,-0.2028284,-0.2788636,0.074443884,-0.16980942,-0.32980868,0.022140415,0.013528122,-0.47867987,0.4461956,-2.871178,-0.043001533,0.024263961,0.28545353,-0.230734,-0.2083937,-0.20671943,-0.34533837,0.40317065,0.42013577,0.40071043,-0.57561886,0.31807283,0.4887174,-0.19046526,-0.1349876,-0.50679505,0.0901771,-0.21550485,0.28174067,0.08170663,-0.05770445,-0.1691109,0.20706585,0.3487391,-0.17419152,0.045710888,0.2485049,0.33395788,0.20091058,0.2960222,0.09047334,0.5052376,-0.38281757,-0.11436277,0.34226927,-0.3007725,0.1192153,0.007430896,0.11132475,0.15684332,-0.3382101,-0.8350722,-0.4431176,-0.3507836,1.1545277,-0.27960178,-0.28696615,0.37990332,0.101717286,-0.38354227,0.03963129,0.35255042,-0.21358427,0.011477432,-0.8175122,0.19204998,-0.110039815,0.3847025,0.0796266,-0.046380155,-0.38445696,0.5187775,-0.1716738,0.5379492,0.47219244,0.13022855,-0.33594465,-0.47947383,0.20327449,1.0710162,0.12294846,0.2026889,-0.18909647,-0.12002279,-0.16629277,-0.10337294,0.027001783,0.4507702,0.8364716,0.018356385,0.0540803,0.32797357,0.06055054,-0.03510144,-0.044932555,-0.3125575,-0.035317387,-0.15960215,0.6177029,0.3887727,-0.2684933,0.37015983,-0.12688448,0.34871206,-0.30583522,-0.2647211,0.5164517,0.7057981,-0.086115405,-0.3312057,0.6131999,0.5022164,-0.2964231,0.39277253,-0.5877177,-0.2813912,0.39272457,-0.19494794,-0.35186005,0.3018892,-0.3101155,0.07480308,-1.0066923,0.33869484,-0.15480505,-0.42824632,-0.45633927,-0.24808083,-4.3351054,0.09261335,-0.25865135,-0.18879405,-0.010040879,0.1077215,0.2997233,-0.3423333,-0.36528125,0.12196588,0.12046635,0.56228846,0.041455735,0.22624636,-0.21321407,0.13524751,-0.2310654,0.16725422,0.12681755,0.09045633,0.100290455,-0.45868307,-0.1538838,-0.19465293,-0.50822204,0.17248532,-0.4921866,-0.32424736,-0.0920607,-0.5892953,-0.4939435,0.6078419,-0.46772394,0.008873999,-0.30535516,0.007266578,-0.14014885,0.45804578,0.07349758,0.108649015,-0.173891,-0.021295158,-0.079745665,-0.25968868,0.4426596,0.031857185,0.32574016,0.38572755,-0.26301497,-0.08174612,0.37865424,0.42064068,0.15659797,0.63840103,0.31287006,-0.118327364,0.28110558,-0.31818834,-0.12924509,-0.52334034,-0.4280383,-0.09920518,-0.46086076,-0.42479306,-0.17097129,-0.35977703,-0.69356406,0.61624604,-0.04020043,-0.034126844,-0.050901264,0.2745813,0.20175481,-0.031287167,-0.04860804,-0.05820947,-0.1483327,-0.2727912,-0.3306412,-0.6689302,-0.34007758,0.09027525,0.8030526,-0.14459464,0.025452277,-0.047716107,-0.0141936885,-0.049177263,0.10661862,0.2508607,0.44180915,0.42181233,0.013248175,-0.58371437,0.5548901,-0.34042555,-0.21747069,-0.6438283,-0.04378134,0.59600055,-0.74624777,0.49617568,0.3845341,0.2511677,0.10443822,-0.39891386,-0.3155271,0.030598832,-0.20576267,0.4753869,0.15077151,-0.81529844,0.52641964,0.31360933,-0.19651672,-0.64981186,0.43665808,0.09265045,-0.29081067,-0.008091935,0.3213742,-0.20982814,0.040276133,-0.23507203,0.14612672,-0.35550144,0.19597699,0.09604082,-0.08786812,0.65063745,-0.15782735,-0.10680527,-0.50134593,-0.04981152,-0.44511032,-0.24770005,-0.017890066,0.033300318,-0.074266456,0.26576835,-0.33699363,0.44846442,-0.37167913,0.057698976,0.09825007,-0.24348663,0.49175972,0.3803828,0.31194323,-0.31416026,0.6969667,-0.12942518,-0.005983395,-0.24741422,0.18480276,0.5581532,-0.008744283,0.37128884,0.08298846,-0.050842676,0.42306146,0.6292781,0.2369829,0.5365508,0.2034951,-0.004816796,0.2989211,0.16421954,0.08322949,0.23657963,-0.27337745,-0.12061107,-0.069611184,0.20910566,0.42177302,0.1748749,0.63259125,-0.2146056,-0.3477494,0.13047531,0.28432545,-0.18554915,-0.9142705,0.37663412,0.071387336,0.50310373,0.51551265,0.029115887,0.19187653,0.37776986,-0.13106832,0.25384817,0.073846065,-0.09095138,-0.437874,0.4957644,-0.42972466,0.33058098,-0.07723701,0.0005984775,0.10638575,-0.09520394,0.3842999,0.7439011,0.057771597,0.18067154,0.08222739,-0.2582312,0.03870492,-0.3299963,0.33550435,-0.32736316,-0.1894976,0.596518,0.46523666,0.24094321,-0.14166561,-0.10436293,0.1033183,-0.019084398,-0.032194417,-0.020182954,0.10098435,0.030153776,-0.70566833,-0.40040135,0.6433341,0.32916003,-0.011681204,-0.030266438,-0.16319343,0.3361195,-0.15563083,-0.039324403,-0.060019184,-0.49474296,0.13055839,-0.23297802,-0.37704495,0.28308138,-0.4350265,0.32021254,0.1541306,-0.059777614,-0.4516081,0.20424436,0.3647106,0.5682885,0.03536531,-0.20734707,-0.31873918,0.0014565757,0.27303648,-0.26655373,-0.20295797,-0.37622467,-0.013396316,-0.66421026,0.30880335,-0.06624354,-0.24969295,0.20125988,-0.16015768,-0.04840256,0.5789779,-0.06823792,-0.08259193,0.15774365,-0.1298641,-0.27415746,-0.19834733,-0.21610744,0.22273234,0.20351502,-0.12624227,0.09173543,0.027419958,-0.27864882,0.15780203,0.095823206,0.2874251,0.29502693,0.24435772,-0.292603,-0.079091296,-0.039757438,0.5813819,-0.05788378,-0.0072407895,-0.22022417,-0.36695144,-0.11288323,0.088261366,-0.2216144,0.11559475,0.06894721,-0.42349476,0.7523457,0.12224739,0.9037784,0.02880654,-0.2308857,-0.056923848,0.47506112,0.026932253,0.043518357,-0.39701006,1.0818132,0.6028946,-0.23718642,-0.31247085,-0.29830346,-0.07289859,0.04368039,-0.18845494,-0.42552444,-0.034555282,-0.5749118,-0.39562538,0.18271838,0.3314382,0.06538621,-0.013056149,0.09015084,0.14854418,0.10803662,0.15283643,-0.5439698,0.11038574,0.25361988,0.27530903,0.14620273,0.083498314,-0.4512115,0.42073584,-0.5252019,0.04395017,-0.29499006,0.076342866,-0.054557443,-0.13460433,0.14908382,0.03470226,0.2880952,-0.27972084,-0.11234482,-0.14620633,0.381403,0.16064633,0.20744184,0.7677539,-0.11260922,0.16719782,0.15702297,0.55425817,1.0866134,-0.20357434,-0.12117605,0.48967028,-0.23604794,-0.6717998,0.169737,-0.27061886,0.08440889,-0.2179935,-0.4034541,-0.42874813,0.25065354,0.053965908,-0.017707732,0.20885767,-0.46795136,-0.2583994,0.3212283,-0.25658444,-0.2956414,-0.3228697,0.045604263,0.6635276,-0.2165386,-0.1277129,0.050889738,0.2633417,-0.25613874,-0.6187831,-0.15017454,-0.18506674,0.2682427,0.17348294,-0.11150094,-0.041996695,0.07996159,-0.26304027,0.24139714,0.40398842,-0.37390688,0.05837544,-0.1827489,-0.14074111,0.6271681,-0.31985217,-0.053607773,-0.74266785,-0.4762954,-1.0055196,-0.34571838,0.67399114,-0.018276375,-0.025889557,-0.37813753,-0.12907088,-0.02287039,-0.12622988,-0.13861719,-0.4153661,0.36155096,0.04383702,0.4305757,0.023384247,-0.78645986,-0.13578174,0.13470562,-0.43306494,-0.5963316,0.6866149,-0.07647101,0.6336538,-0.025531352,0.060501847,0.5593791,-0.61275446,0.0725903,-0.26229224,-0.16366088,-0.64579266,0.10675849,946 +570,0.5492302,-0.049561944,-0.46312925,-0.07646441,-0.5156564,-0.04083627,-0.124731004,0.061108913,0.27962333,-0.4985432,-0.2647853,0.070525475,-0.31571573,0.17923962,-0.003227536,-0.57520145,0.03756895,0.38912424,-0.50278765,0.74829954,-0.21495032,0.40478912,0.01016794,0.20540091,0.09927148,0.25102016,0.11091689,-0.15332845,-0.31258592,-0.18461367,-0.08661018,0.1477757,-0.5412425,0.5356806,-0.07622445,-0.3102245,-0.056609817,-0.4461923,-0.3104528,-0.7289035,0.32316226,-0.7558444,0.46866375,-0.0406714,-0.1334066,-0.022902135,0.12721938,0.44341108,-0.05976314,-0.025931876,0.30721086,-0.26810813,-0.30418745,-0.28597134,0.04854735,-0.39291653,-0.5554073,-0.102290586,-0.23305702,-0.12902442,-0.2913054,0.28687832,-0.26034397,-0.066683814,-0.06857141,0.65112066,-0.5095276,0.24699904,0.38297606,-0.23982142,0.048856873,-0.71578735,-0.04879691,-0.0784688,0.43272465,-0.022694204,-0.1947564,0.3850012,0.31915122,0.5379316,0.23341206,-0.14620157,-0.14462219,-0.012504967,0.15776624,0.46160534,-0.3343616,-0.1437056,-0.07669441,-0.04416136,0.48607573,0.06591036,0.17328086,-0.2780445,-0.04882749,-0.009286478,0.015020392,0.2727271,0.399856,-0.17066063,-0.13250639,0.42949772,0.6266977,0.070994146,-0.035439532,0.13244979,-0.06695824,-0.323038,-0.16086413,-0.041701395,-0.17897962,0.27567202,-0.10247762,0.21273622,0.7648076,0.013543755,0.10990782,0.24570219,0.07831403,0.20362265,-0.18733184,-0.31304693,0.34036025,-0.63512343,0.063751794,-0.14978933,0.6969206,0.009871108,-0.4908782,0.40927538,-0.50185215,0.15288989,-0.10711872,0.50517553,0.71822834,0.5262296,0.3284824,0.82530034,-0.5330766,0.12074101,0.1277725,-0.1692017,0.03027254,-0.102337815,0.18122233,-0.51591533,0.06568682,-0.07484351,-0.11696947,-0.037788935,0.17643236,-0.7471089,-0.14664732,-0.01668345,0.9647342,-0.29819688,-0.007950847,0.84107786,0.98355615,1.0073601,-0.022988483,1.2175757,0.26565057,-0.34042206,-0.20189261,-0.30205998,-0.59115475,0.17482302,0.37124127,-0.25224233,0.18433905,0.25591755,-0.049536068,0.53469527,-0.52900285,-0.12227255,-0.31653723,0.31594896,-0.0049184687,-0.17589696,-0.58328027,-0.14914441,-0.039527632,0.008018515,0.06871324,0.33313447,-0.21898091,0.39958125,0.099544235,1.4179971,-0.31860182,0.03366915,0.085989304,0.31569406,0.09077974,-0.22425999,0.047749903,0.13630196,0.349513,-0.056085322,-0.47508934,0.013407017,-0.3490846,-0.40636858,-0.26180226,-0.17620452,-0.11282366,0.1466914,-0.16107523,-0.3847607,-0.1142171,-0.34987697,0.42984778,-2.2328768,-0.18543836,-0.33904818,0.5252939,-0.2568016,-0.22438608,-0.020506442,-0.46163464,0.20688334,0.17405793,0.5399991,-0.60400903,0.5436641,0.47792754,-0.79377645,-0.13186665,-0.5518466,0.0060428423,0.06389516,0.25633425,-0.033489846,-0.24375822,-0.030300213,0.119103454,0.4083722,-0.026589552,0.1279998,0.51251423,0.349782,0.11454489,0.24461296,0.14249708,0.6368629,-0.27996573,-0.24861825,0.46559468,-0.25663212,0.21130745,-0.2563134,0.0036139744,0.4489255,-0.40659326,-0.6709188,-0.79592294,-0.27536133,1.1194361,-0.050239626,-0.5136684,0.11606591,-0.2765634,-0.25376484,0.019528184,0.3501266,-0.045514435,-0.075361185,-0.8878892,-0.040006287,-0.05199018,0.08265013,0.07088379,-0.23668242,-0.5527309,0.7876605,-0.25189295,0.41729742,0.3781673,0.36695686,-0.19342612,-0.28861216,0.031719975,1.0201699,0.59174854,0.12572666,-0.16065101,-0.09204217,-0.3547656,-0.284689,0.03889079,0.49080357,0.5511323,-0.13535967,-0.056949854,0.3422257,-0.016073164,0.059098814,-0.23618521,-0.4796152,-0.22988322,-0.042954665,0.6403576,0.5573819,-0.11781842,0.43653414,-0.017927732,0.17881945,0.034801446,-0.5476341,0.4518972,0.9022718,-0.35442188,-0.30585957,0.55631167,0.28899315,-0.22673523,0.39771408,-0.5450813,-0.27220556,0.27496153,0.03055409,-0.62469393,-0.063549,-0.39693502,0.355637,-0.6513662,0.753224,-0.5338317,-0.8038305,-0.5864817,-0.049899537,-1.7070726,0.29612255,-0.46245965,0.032059826,-0.2039728,-0.03689608,0.031704847,-0.6211082,-0.46886352,0.2690467,0.029146884,0.5741,-0.080250606,0.118949115,-0.1304258,-0.44963837,-0.07311891,0.04251151,0.13946126,0.3488963,-0.04727739,-0.414505,0.23446456,0.11031831,-0.24725291,-0.050026953,-0.77498627,-0.5731617,-0.21142605,-0.5494484,-0.18913592,0.67619324,-0.46282881,0.14546093,-0.46144268,0.12269014,-0.19349541,0.16103351,0.025051503,0.25287637,0.04536667,-0.139667,-0.16004106,-0.17832062,0.3847311,0.043570675,0.4436802,0.16448641,-0.20006071,0.21692525,0.5414402,0.67142135,-0.06378708,0.94804233,0.50942856,-0.31270462,0.25647724,-0.17810321,-0.32441905,-0.6480796,-0.47991022,0.36503512,-0.4818154,-0.37739578,0.10916914,-0.52807087,-0.9774141,0.6260604,0.07593458,0.26443467,0.028441599,0.22002898,0.5008958,-0.17014968,-0.100811355,0.011896719,-0.19279204,-0.7144707,-0.098657526,-0.6850109,-0.4384203,0.23709263,1.2228364,-0.4387834,0.23606266,0.42048955,-0.2736275,0.15589312,0.11566001,-0.12664554,-0.06194162,0.5199269,-0.11361348,-0.6362892,0.28668618,-0.07623441,0.0632481,-0.5629967,0.45458058,0.69829226,-0.5604282,0.5874332,0.3432662,-0.053358722,-0.16912566,-0.5481154,-0.30805558,-0.057052292,-0.40856,0.3321158,0.236027,-0.47106007,0.24149708,0.4484453,-0.3050185,-0.75604886,0.37292957,-0.11437089,-0.073095165,0.14709918,0.33585438,0.17654197,-0.007150101,-0.04807263,0.26357886,-0.44211176,0.52680504,0.09459095,-0.26830617,0.103298746,-0.34646508,-0.46752796,-0.8925191,-0.037492484,-0.5382439,-0.3215626,0.14796464,0.07375695,0.053218756,0.2193989,0.4261224,0.47596923,-0.15276578,0.02091791,-0.1768849,-0.50071615,0.3861242,0.44025904,0.39509335,-0.41036555,0.55244786,0.008804237,-0.15086548,-0.20228551,0.098501965,0.5137497,0.12427479,0.51069456,0.04954757,-0.06718055,0.18799977,0.9130866,0.049819034,0.3864765,-0.06685247,-0.052438486,0.10000168,0.057572454,0.31467554,-0.015525739,-0.60348135,0.15299277,0.010821112,0.08127958,0.4284685,0.24766131,0.2542683,-0.1461711,-0.46015126,-0.106917344,-0.0092504425,-0.008313541,-1.433721,0.51646477,0.06655485,0.7229819,0.36505562,0.060468644,-0.0037167121,0.8754691,-0.06402917,0.15236239,0.18012755,-0.34148073,-0.38479137,0.32154235,-0.6652599,0.22500862,0.06156199,0.10381794,0.039839048,0.020540953,0.24026667,0.7227403,-0.19849603,-0.10388071,-0.45892826,-0.2985528,0.10484957,-0.27026504,0.35465616,-0.50543123,-0.45592335,0.68833125,0.67862403,0.43946955,-0.2836823,0.15116458,0.043822475,-0.2972764,0.33409905,0.05085475,-0.038910363,0.05424494,-0.5149008,-0.065137126,0.36680323,-0.20368907,-0.045731395,0.010982773,-0.05608424,0.17937656,-0.096454464,-0.06324182,-0.08690597,-0.64365345,0.16444299,-0.41570425,-0.2537938,0.38049528,0.17794445,-0.098867536,0.099335074,-0.010349406,-0.14423688,0.5106239,-0.09863404,0.70198786,0.24831986,-0.2405698,-0.27443394,0.28712907,-0.060104568,-0.10470561,0.31926912,-0.23405151,0.23266782,-0.71765864,0.51483727,0.045060735,-0.32837987,0.23906006,-0.23365977,-0.07317968,0.3931064,-0.31530327,-0.18153225,0.17263658,-0.3530007,-0.1712468,-0.24728402,-0.13052198,0.091929756,0.22157459,0.07152867,-0.28792888,-0.22294874,-0.40510818,0.39783472,0.14660494,0.32487813,0.42577443,-0.013577261,-0.5182331,-0.13015844,0.2522786,0.42251232,-0.0827815,-0.19794032,-0.38146415,-0.51356745,-0.48148298,0.3462507,0.0013236573,0.44215918,-0.102204934,-0.19391097,0.92536294,0.05149927,1.3362439,0.009263756,-0.1622359,-0.11257323,0.68279696,-0.025861021,0.03353523,-0.24394076,0.85472447,0.6266371,-0.07965292,0.003994501,-0.46260804,-0.09779949,0.31407264,-0.20888694,-0.0073880935,0.08834797,-0.74042034,-0.35928196,0.28353903,0.29244393,-0.046321776,0.03777346,0.21755826,0.3375146,-0.074058704,0.28370416,-0.623843,-0.3008665,0.23339102,0.2998496,0.006273757,0.1454071,-0.56332827,0.35058743,-0.7027159,0.14135358,-0.17099145,0.052887898,-0.16370293,-0.2438616,0.29924226,0.06554242,0.50254214,-0.53455526,-0.3198624,-0.08123745,0.38516262,0.3185648,0.031016057,0.75263005,-0.35909632,-0.043420196,0.21924068,0.4630068,0.911426,-0.17209862,0.08709778,0.3809927,-0.47348282,-0.55018634,0.23410133,-0.15461884,-0.12958908,0.034363758,-0.44947347,-0.39253792,0.10972215,0.29385695,-0.18893115,0.09278006,-0.8411112,-0.032997157,0.20917416,-0.40268582,-0.10350854,-0.24158199,0.19523753,0.53951204,-0.25452235,-0.4364228,-0.092418216,0.30536288,-0.15070046,-0.6411435,-0.06917689,-0.41183805,0.3902332,0.03035043,-0.39497873,-0.21159537,-0.14416695,-0.4538369,-0.03227914,0.25262946,-0.35709924,0.05915318,-0.24297394,-0.045032926,0.6011794,0.007899036,0.08755638,-0.44363952,-0.2703204,-0.86295176,-0.2853384,0.18803619,0.24283946,-0.08153138,-0.6153596,-0.066166006,-0.1467231,0.15378918,-0.017962124,-0.3933761,0.32215446,0.21951653,0.42455357,-0.21359432,-1.0371603,0.1129305,0.10079361,-0.1250079,-0.5291169,0.41789514,0.15623832,0.90715396,0.080198534,-0.007860399,-0.04969446,-0.49523264,0.123926625,-0.3292332,-0.27718323,-0.7178475,0.04382428,949 +571,0.49639672,0.0026977658,-0.44835517,-0.25714764,-0.3180437,-0.08369523,-0.32004294,0.07415465,0.29657426,-0.29499716,-0.20095079,-0.054726224,0.112762555,0.34618214,-0.10100885,-0.92592305,0.052864693,0.17436405,-0.8011679,0.5599281,-0.64808565,0.38187006,0.25422397,0.3071441,0.0077558244,0.3981139,0.4419159,-0.14188017,0.18652524,-0.12615903,-0.0116123045,0.11516811,-0.7116943,0.18567263,-0.1455065,-0.40895915,0.11954414,-0.3827546,-0.091213904,-0.68234664,0.08636248,-0.7805669,0.58764094,0.094444856,-0.11317776,-0.041033745,0.19721484,0.47499448,-0.24845459,0.09400233,0.23425977,-0.18087666,-0.21382281,-0.2410855,0.11028617,-0.34718534,-0.40720147,-0.08614201,-0.57225937,-0.36638087,-0.28429002,0.06099822,-0.42978224,0.05086758,-0.029544419,0.37955967,-0.30806187,-0.04001326,0.4201774,-0.12461985,0.24675171,-0.4768944,0.016136613,-0.0773468,0.54387844,-0.22374108,-0.26073927,0.41631532,0.33708754,0.49624506,0.25689158,-0.43642262,0.027038809,-0.19719991,0.07016352,0.52569336,-0.17487468,-0.36871895,-0.26195168,0.2115512,0.33951586,0.3457387,-0.05124196,-0.23028362,0.010739741,-0.071049884,-0.24119584,0.6239143,0.5322858,-0.2639415,-0.42031628,0.15438604,0.43990254,0.11022063,-0.11173721,0.15415491,0.02607346,-0.5393461,-0.2351126,0.13547435,0.05123887,0.4761565,-0.052706044,0.1899648,0.8158231,-0.30098155,0.10072977,0.004285029,-0.202337,-0.010052775,-0.31525216,-0.17003417,0.21816874,-0.8266603,-0.0073574907,-0.31739932,0.92042214,0.16899931,-0.7643563,0.42617536,-0.574808,0.14636825,-0.19757839,0.5745095,0.7035919,0.3326513,0.33518544,0.77308166,-0.45976186,0.2203283,-0.15059425,-0.47678468,-0.014904375,-0.092728294,0.2853132,-0.48875013,0.038825635,-0.07252437,0.14184931,0.057918526,0.19456208,-0.5122162,-0.12528922,0.26523563,0.7637022,-0.35916743,-0.047508117,0.73542076,1.2350416,1.0469786,0.09704008,1.1632749,0.37369737,-0.24599668,0.1024851,-0.1727281,-0.63456905,0.14017048,0.34621263,0.16736217,0.25920033,-0.06330196,-0.14094076,0.23419724,-0.4310959,-0.057781585,0.047742072,0.46370813,0.030337287,-0.026315471,-0.5169078,-0.22306386,0.07065598,-0.13388416,0.011789597,0.26717803,-0.16289935,0.22612055,-0.065679,1.0540743,-0.1448798,0.0981622,-0.051336966,0.5853299,0.29222038,-0.07226894,-0.19663002,0.21999456,0.32298064,-0.025540216,-0.596247,0.17807552,-0.35651544,-0.30103627,-0.184407,-0.31368682,0.050024543,0.16689089,-0.33815306,-0.1121494,-0.0787,-0.32415256,0.5278904,-2.8251643,-0.4085268,-0.056980826,0.343177,-0.32001868,-0.15141347,-0.04707903,-0.6006117,0.4022984,0.21349452,0.47913545,-0.74385655,0.5883673,0.414912,-0.49783614,-0.30296874,-0.7592654,-0.0076864487,-0.12765625,0.35499388,0.022699654,-0.16793104,-0.21825776,0.30717438,0.6517182,0.05686925,0.11045468,0.33162817,0.304056,0.35131073,0.6512292,0.0024414319,0.6168108,-0.3455251,-0.12771678,0.22874022,-0.1260291,0.20720425,-0.22268264,0.1227295,0.41805226,-0.50023735,-0.8782406,-0.7035409,-0.47686222,1.0313108,-0.32105327,-0.424795,0.1615605,-0.08952407,0.06294401,0.081566215,0.3956592,-0.075336866,0.038592,-0.67531425,0.108216085,0.01627134,0.056210726,0.093640804,-0.06945908,-0.40050077,0.70600945,-0.1113804,0.4634841,0.2477417,0.34045595,-0.15277795,-0.374665,0.19273996,0.87771624,0.29372406,0.0042360425,-0.11522167,-0.33255625,-0.22116467,-0.17067862,0.04046434,0.5461411,0.9030059,-0.10203961,0.058901723,0.27840242,-0.16767584,0.16062883,-0.03323747,-0.332194,-0.030252364,0.010734826,0.522119,0.6052971,-0.16743574,0.51654345,-0.054180253,0.19536339,-0.022574289,-0.45850068,0.56408995,0.5673199,-0.11947465,-0.039780524,0.32983795,0.38792548,-0.2540406,0.49351788,-0.6119629,-0.23026,0.7229949,-0.11212408,-0.3212294,0.13021098,-0.3515828,0.19573487,-0.8487109,0.43145746,-0.542511,-0.5211295,-0.18527912,-0.0026628098,-3.8269439,0.3369848,-0.23501076,-0.074058816,-0.25544274,0.019478424,0.3727221,-0.561417,-0.44201747,0.2654071,0.15295564,0.64755166,0.022608442,0.12321599,-0.23809414,-0.17066261,-0.21510641,0.10716437,0.07602986,0.289534,-0.017487321,-0.3205683,0.04260706,-0.07409006,-0.5262477,0.27207848,-0.4401753,-0.54035443,-0.045044545,-0.5134902,-0.4123775,0.5766348,-0.34176084,0.08120737,-0.35936478,0.025604421,-0.23525439,0.2723594,0.07608603,0.08419377,0.025501626,0.08114032,-0.021254225,-0.39138943,0.50328815,-0.0048454576,0.38903576,0.015755387,-0.017489126,0.06847454,0.48903152,0.523831,0.043246087,0.84459025,0.22881818,-0.12164266,0.32455817,-0.30934018,-0.20517884,-0.46018666,-0.38219506,-0.20938082,-0.28328684,-0.38973904,0.009661726,-0.34197536,-0.7563034,0.53987545,0.030782351,0.3129103,-0.06673403,0.3015817,0.32759413,-0.120272115,0.06843715,0.020099547,-0.14794824,-0.6896401,-0.13283826,-0.6593704,-0.47952673,0.12590311,0.58737534,-0.46018082,0.041391436,-0.099381335,-0.12796982,0.14686659,-0.056960743,0.14666998,0.34499502,0.37952158,-0.13129474,-0.6776095,0.41244522,-0.11219321,-0.07677182,-0.5116325,0.15382886,0.7273377,-0.6419745,0.57050985,0.49232647,0.1243157,0.1155239,-0.50389755,-0.17861755,0.13215193,-0.28345025,0.27450165,0.082544506,-0.88601077,0.5470828,0.28105003,-0.48444572,-0.69272023,0.40719,0.17047508,-0.26741654,-0.012352611,0.29567662,0.19372939,-0.073258355,-0.21611036,0.0899371,-0.4627688,0.18094173,0.06592428,-0.053196963,0.35936025,-0.0725379,-0.38630506,-0.6492586,-0.11371938,-0.6006459,-0.25098556,0.1978879,0.0574936,-0.030020837,0.2002744,0.111031376,0.38949093,-0.26643208,0.09988635,0.004116791,-0.47246698,0.24644057,0.5410442,0.31070635,-0.3512155,0.5563337,0.12524079,-0.15152308,-0.074749626,0.07547374,0.42257792,0.0058461255,0.24731612,-0.099054076,-0.16461317,0.29289863,0.61454815,0.058733102,0.32080215,0.08346249,0.060627777,0.401434,0.07460147,-0.059580483,0.17762657,-0.3551883,-0.171821,-0.03777012,0.16196087,0.47043103,0.44882146,0.26725218,0.092212304,-0.2981151,-0.094496645,0.06706184,-0.26384443,-1.1240312,0.52551335,0.20340946,0.6381802,0.6017791,-0.073295526,-0.037869025,0.49442822,-0.17401327,0.16951908,0.3090512,0.009524533,-0.27507254,0.7556291,-0.5283908,0.42454004,-0.115438364,-0.0015646666,0.08182533,0.059593398,0.26684698,0.8409217,-0.24123372,0.080684885,-0.07472699,-0.14285977,-0.07539271,-0.29036126,-0.08655008,-0.43201175,-0.26141062,0.7608866,0.33061984,0.27425683,-0.12740108,-0.06361774,-0.022449791,-0.21707837,0.20011282,-0.2068534,-0.06597794,0.13914655,-0.509774,-0.16073786,0.54904383,-0.005537196,0.10504716,-0.24808593,-0.06593477,0.06820555,-0.1347361,0.07510834,0.008903212,-0.74997985,0.14415038,-0.30619022,-0.24517496,0.42735487,-0.34111524,0.06197799,0.1597157,0.104300365,0.032153454,0.22427024,0.14079939,0.5055975,0.06768679,-0.42127863,-0.39164186,-0.10965097,0.28330857,-0.25657672,0.13086994,-0.41399527,-0.015284411,-0.66392803,0.6751291,-0.055160854,-0.31690758,0.18588684,-0.1487207,-0.053785402,0.52549756,-0.30361804,-0.05917645,0.17380057,-0.2241883,-0.33321005,-0.08134421,-0.23992433,0.17755981,0.4080606,-0.06553801,-0.06906034,-0.33978885,-0.19506907,0.4575191,0.08207654,0.50493383,0.12089818,0.21205299,-0.13864146,0.07257736,0.17290771,0.3810621,0.16186295,-0.029051036,-0.50571096,-0.17213385,-0.2107998,0.13191558,0.01192029,0.10155416,-0.16844259,-0.3067601,0.87306243,0.10773667,1.1456097,0.10135389,-0.29542568,0.036197018,0.46617958,-0.24428926,0.025889859,-0.45703,0.9115835,0.5701181,-0.027427146,-0.1415439,-0.4767354,-0.21561173,0.3194835,-0.336812,-0.05342016,-0.0226386,-0.4137284,-0.488127,0.25650185,0.2751896,-0.040255208,-0.01114411,-0.0056031174,0.077869646,0.084039465,0.48509318,-0.73826116,-0.046709854,-0.008680024,0.29444006,0.01488625,0.2478181,-0.3415756,0.45581153,-0.79316086,0.2566413,-0.57246715,0.044518106,-0.17944059,-0.35261992,0.13798681,0.12105002,0.3369731,-0.21964476,-0.47582173,0.06792684,0.36187595,0.061644197,0.1691048,0.6896354,-0.32909217,-0.12088784,0.13438213,0.58660203,1.2941195,-0.21596089,-0.08167137,0.28551093,-0.4124258,-0.57341325,0.28842226,-0.33845735,-0.13031746,-0.10840715,-0.35478085,-0.44289234,0.18062079,0.22474541,0.04896601,0.09649282,-0.6046216,-0.19710724,0.29522207,-0.32059258,-0.39324108,-0.1920042,0.3475917,0.86637765,-0.3163877,-0.18730664,0.0656566,0.23621634,-0.14816041,-0.6245842,-0.09306373,-0.10916829,0.33997914,0.19073908,-0.24849336,-0.111574575,0.17497952,-0.44561648,0.07470935,0.2809796,-0.3569345,0.07323219,-0.08268154,-0.07590115,0.8699008,-0.10242319,-0.101281114,-0.65109664,-0.41032267,-0.7029856,-0.5352451,0.26643798,0.22758433,0.19063827,-0.26300684,0.016309708,0.032797974,-0.059932154,0.09617092,-0.4900083,0.28010234,0.14490981,0.5299603,-0.26734728,-1.027918,0.01009196,0.2414688,-0.19426593,-0.6992482,0.59379154,-0.0037462923,0.7911727,0.13910463,-0.10931838,-0.0022861552,-0.37545744,0.26094896,-0.45768017,-0.074593656,-0.765277,0.0793581,953 +572,0.41876122,-0.22799265,-0.5844161,0.017640335,-0.22278896,-0.13289836,-0.1650927,0.5025124,0.26401833,-0.30126905,-0.010151512,-0.17746441,-0.017036494,0.28609297,-0.22442831,-0.40510565,-0.06510027,0.16621076,-0.32575622,0.48795512,-0.25776002,0.08720475,-0.0027418393,0.60305405,0.16662002,0.21261337,0.044377778,0.23134394,-0.24002388,-0.26589024,-0.052429933,0.38475332,-0.6514521,-0.030141322,-0.25584394,-0.40621966,0.03801574,-0.4699323,-0.43708473,-0.78964865,0.27661982,-0.8640644,0.48283672,0.17899616,-0.28403053,0.2571048,0.1268711,0.25397012,0.029704597,-0.23995641,0.116622746,-0.1756047,0.17774129,-0.33496144,-0.085617594,-0.37219477,-0.5707933,-0.0032356605,-0.5573356,-0.17750606,-0.09532101,0.15068866,-0.23518512,-0.17077267,-0.1199071,0.49525598,-0.4018617,0.022039702,0.24821205,-0.15761015,0.37607425,-0.55274147,-0.11495022,-0.007270515,-0.007605408,-0.32893443,-0.3490142,0.30794677,0.080729164,0.4418778,-0.24488664,-0.18730858,-0.44116575,0.14784372,0.06613083,0.37973,-0.36572906,-0.41024595,-0.10614573,0.18622555,0.18858476,0.14966929,0.3570423,-0.08055724,-0.07590328,0.02283855,0.048435677,0.4830676,0.62571746,-0.24523042,-0.15127456,0.15883772,0.5823121,0.24581572,-0.21551819,0.044334177,0.091739126,-0.56773525,-0.16145624,0.005778662,-0.15877517,0.63030857,-0.10467541,0.18445848,0.5415669,-0.2970154,-0.07355662,0.19331287,0.10275737,0.09001502,-0.3178068,-0.25459534,0.4754456,-0.48678637,0.05451219,-0.2071055,0.5002106,0.11981238,-0.7662712,0.22173333,-0.52754754,0.08287114,-0.016871823,0.4890676,0.64049065,0.54414845,0.5620581,0.7114278,-0.42952824,0.11830105,-0.018049853,-0.38264874,0.3554318,-0.3500304,-0.020596627,-0.5884308,-0.29548526,-0.09410142,-0.3106201,0.052032758,0.27394685,-0.77524537,0.0016740113,0.2949666,0.78003937,-0.19170246,-0.20746328,0.7435589,1.0066917,0.93837255,-0.011349865,0.8386774,0.12798212,-0.21482544,0.21643613,-0.09307221,-0.72267884,0.2155076,0.21250704,-0.2233726,0.45080805,0.13539521,0.025132852,0.35622504,-0.43233714,0.039094765,-0.084785774,0.16596176,0.066489875,-0.26933497,-0.48137805,-0.21421072,-0.14292966,-0.027610252,-0.03856005,0.4035697,-0.18237363,0.4364817,0.025416175,1.7564533,-0.044014152,0.074724294,0.0715512,0.49883372,0.24257219,-0.31987157,-0.09715573,0.3581028,0.30692714,0.4250296,-0.31221667,0.058704805,-0.18942769,-0.42894793,-0.101910286,-0.30085564,0.0008746045,-0.21356691,-0.49032503,-0.1781095,-0.121066265,-0.17086431,0.32951307,-2.9940486,0.17815992,0.14466831,0.3533124,-0.2472961,-0.43903646,-0.003253511,-0.46238872,0.29241022,0.39701647,0.4128326,-0.7364856,0.21737528,0.4161255,-0.5375181,-0.013056389,-0.64752895,-0.18315606,-0.089778356,0.3766574,0.16352904,0.009974296,0.33860555,0.27232128,0.4144478,-0.09141233,0.12021698,0.10392249,0.41352436,-0.065365754,0.39254162,0.020544048,0.2698393,-0.19449066,-0.30887797,0.49820948,-0.44736856,0.103133865,0.044986658,0.09077121,0.47272927,-0.23696253,-0.9867501,-0.5333388,0.10236245,0.97823894,-0.0426601,-0.6082083,0.121808514,-0.4865282,-0.4353099,-0.1430354,0.38950697,-0.12036103,0.00311625,-0.77237624,-0.14981367,-0.35697895,0.18536809,0.008172588,-0.031441055,-0.48161325,0.61952394,-0.010097904,0.26418576,0.47223336,0.25416955,-0.43478087,-0.7121124,0.009307508,0.79023933,0.3462812,0.15485458,-0.3107438,-0.21974312,-0.16823128,0.19397327,0.12739047,0.61882824,0.82261306,-0.20466156,0.17906025,0.27041826,-0.0056364876,-0.0593608,-0.20090692,-0.34257698,-0.034406062,0.085490964,0.59823793,0.94968075,-0.11316509,0.47247174,-0.054950703,0.30852056,-0.13200082,-0.5534496,0.43137312,1.0769075,-0.11898924,-0.33168513,0.52231216,0.42360878,-0.3014074,0.47445598,-0.5482707,-0.27780828,0.34142557,-0.19247317,-0.48173144,0.34097037,-0.26996627,0.18953618,-0.85549,0.39361748,-0.16729233,-0.46511778,-0.8597577,-0.13649578,-3.0943882,0.23779248,-0.28575414,-0.23926343,-0.043979414,-0.20620213,0.13948354,-0.6867357,-0.46109152,0.1478378,0.16043201,0.734031,-0.15532203,0.015234743,-0.2560345,-0.3215107,-0.08473849,0.20058525,0.3582433,0.1597728,-0.044370957,-0.4694876,-0.07442333,-0.1902931,-0.44837004,0.002031484,-0.57005924,-0.5765497,-0.18687038,-0.54012233,-0.23840137,0.6718482,-0.274525,-0.08174689,-0.22099373,-0.09117305,0.15241818,0.3257138,0.10041482,0.23671791,0.01390961,0.016284432,0.0716995,-0.18683894,0.0095307315,0.04024418,0.34220982,0.4626222,-0.20517263,0.28757188,0.6094739,0.7357558,-0.19464567,0.888244,0.6786012,-0.11342788,0.26810673,-0.22245179,-0.31620812,-0.6372689,-0.2921227,-0.0563568,-0.5102076,-0.30780268,-0.008465009,-0.40672752,-0.71087164,0.75046927,-0.10073729,0.3165777,0.026475212,0.5194302,0.6263183,-0.32350662,-0.16397038,-0.15506466,-0.22463645,-0.4435734,-0.29951566,-0.46821377,-0.53627783,0.08382288,1.0164316,-0.25570422,0.13200395,0.23851824,0.026933875,0.060092416,0.20985982,-0.2478706,0.21334021,0.34910432,-0.0696507,-0.5280036,0.41965142,-0.06647501,-0.20393887,-0.60854435,0.096565485,0.48521194,-0.6255617,0.6226927,0.35322735,-0.0058612833,-0.17605229,-0.7504873,-0.20560496,0.1378264,-0.17482483,0.56698763,0.30395108,-0.6848885,0.42948702,0.30234307,-0.42741895,-0.6699723,0.56726784,-0.04214788,-0.4724979,-0.2456763,0.22754683,-0.20171002,0.14862375,-0.20497444,0.23075804,-0.32479063,-0.02128363,0.37535805,-0.05304251,0.1550686,-0.114533424,-0.038169365,-0.78525347,0.23729743,-0.46404558,-0.41873798,0.33237067,-0.027152257,0.06980139,0.3122547,0.26555175,0.3642995,-0.29246554,0.076002605,-0.0633869,-0.24544458,0.40693903,0.44764248,0.50042635,-0.5642226,0.44795108,0.077510044,-0.21448705,-0.11226517,-0.015841527,0.5080758,-0.10387351,0.2747511,0.085627615,-0.23506835,0.15267327,0.95669967,0.073522575,0.62127906,-0.082264595,0.089953534,0.12880775,0.07766409,0.3462976,-0.007078137,-0.55709964,0.18831466,-0.32328203,0.13059767,0.44400287,0.11592819,0.21196027,-0.0050296998,-0.28475556,0.09753672,0.3186685,0.2383788,-1.3204876,0.19763644,0.33716485,0.8682151,0.44977522,0.15279038,0.071965516,0.6291532,-0.30930167,0.0277438,0.2819372,0.09032067,-0.4502297,0.5399395,-0.8443252,0.35215712,0.068224475,-0.031379726,-0.17587784,-0.23822118,0.52757627,0.7090224,-0.27744448,0.017357498,-0.01531314,-0.15023233,0.07812569,-0.33447042,0.11110419,-0.5970092,-0.2315749,0.7640509,0.54903793,0.40955362,-0.04594919,-0.02600433,0.266331,-0.10931487,0.16468593,0.027151564,0.18780568,-0.045971725,-0.5386657,-0.06526518,0.52343595,0.022893667,0.03825638,-0.18283136,-0.09485241,0.14653085,-0.17393382,-0.2436388,-0.0862928,-0.7693759,0.047159787,-0.35593703,-0.41009417,0.9103084,-0.19881797,0.120926395,0.31742948,0.14813587,-0.31258735,0.24225447,0.15915193,0.6952036,-0.005860814,-0.065483615,-0.37586045,0.32996723,0.10374335,-0.14333734,-0.19537987,-0.17970419,0.28880045,-0.4228415,0.27352592,-0.041011576,-0.30040115,-0.12708247,-0.013417823,0.120225705,0.60510105,-0.061135493,-0.36326525,-0.12600194,-0.24603581,-0.27574548,-0.16823404,-0.047815587,0.2543914,0.18374072,-0.26724413,-0.031531505,-0.08045508,-0.16859974,0.33814684,0.09392868,0.44183177,0.3246362,-0.012799374,-0.43782288,0.0034658334,0.13464074,0.55656916,-0.23184061,-0.059599318,-0.3354611,-0.33188745,-0.49561116,0.20507665,-0.11087485,0.32208562,0.08233462,0.046316676,1.0087003,-0.010555063,1.2284677,-0.02703335,-0.52795756,0.061714526,0.5118404,-0.020568356,-0.04723866,-0.47918007,1.0429196,0.48184174,-0.060892608,-0.100344315,-0.22069208,0.09117116,0.3150919,-0.14174947,-0.08225938,-0.08013078,-0.57429135,0.055864427,0.34939522,0.38600394,0.25712404,-0.15442756,0.051897604,0.31274337,-0.09666296,0.106718056,-0.43342978,-0.111056075,0.23830879,0.38849398,-0.010276922,0.04286498,-0.45427507,0.28707784,-0.22307375,0.022640483,-0.3731261,0.20179881,-0.10720209,-0.40874624,0.17311446,-0.14279255,0.3607593,-0.3711441,-0.18627858,-0.2357628,0.38805082,0.18525055,0.18666048,0.4560353,-0.31348345,0.17632893,-0.095626704,0.44513398,0.90797806,-0.412818,-0.14944105,0.48069185,-0.22434342,-0.73317116,0.3804781,-0.3589849,0.23419937,-0.093562946,-0.24533905,-0.5294639,0.116580494,0.26265505,0.13471703,-0.049625363,-0.5961227,-0.03284343,0.33602065,-0.43061474,-0.16938548,-0.3410748,0.13742444,0.5493823,-0.12406205,-0.37353367,-0.015122993,0.3106393,-0.09265561,-0.2908752,-0.010615985,-0.2829542,0.29969308,0.04663854,-0.5190342,-0.020237295,0.020741949,-0.37142015,0.24457036,0.33967835,-0.18837391,0.094296195,-0.24824616,0.08217887,0.89832914,-0.26814,0.15353891,-0.45210567,-0.44331306,-0.8570858,-0.2744136,0.17369293,-0.022092676,0.12503615,-0.8550611,0.086366996,-0.24563195,-0.27437565,-0.22539203,-0.2879203,0.5203496,0.15113282,0.37639692,-0.14486936,-0.75287735,0.1622931,0.17417029,-0.14809987,-0.594121,0.5718133,0.029880945,0.8022685,0.08504134,0.15577486,0.34538904,-0.4773982,0.043265432,-0.16953991,-0.26814303,-0.5933874,-0.13626388,969 +573,0.3953213,-0.10556881,-0.6079381,-0.1530697,-0.19847259,-0.14655109,-0.22373916,0.31849352,0.28603834,-0.6931961,-0.06944106,-0.30031177,0.05061963,0.28057587,-0.17178218,-0.7472127,0.027578983,0.070222594,-0.49947056,0.5616404,-0.2822589,0.31950498,0.19667496,0.41711357,0.073778085,0.17980976,0.14292307,-0.2988046,-0.19262458,-0.17627637,0.19526578,0.15384464,-0.9159031,0.21989654,-0.23885898,-0.42723256,0.046079274,-0.5561072,-0.33392087,-0.72519463,0.20281278,-0.81538004,0.46175066,0.22116017,-0.16412406,0.07548614,0.056701876,0.4408329,-0.13791011,0.08147408,0.2947732,-0.104838625,-0.1127102,-0.08036766,-0.11983999,-0.18208028,-0.6151014,0.18518613,-0.50306165,-0.19157228,-0.2693074,0.041775975,-0.35999733,-0.12582736,-0.1260887,0.56597346,-0.42847782,-0.03561022,0.55615634,-0.16253455,0.52477235,-0.45763114,-0.1793973,-0.21968423,0.33168063,-0.46023765,-0.24197112,0.36587554,0.30758932,0.5468007,0.11151004,-0.3651854,-0.24576767,0.019330647,0.32627848,0.40496144,-0.33466667,-0.44972032,0.00883188,0.04604439,0.08200407,0.1405039,0.14608888,-0.40262094,-0.07907625,0.07479554,-0.20942198,0.47302267,0.57644695,-0.20938845,-0.19567235,0.17451476,0.47157913,0.25443396,-0.00045016833,0.17693688,0.14369373,-0.65128905,-0.3104476,0.19069918,-0.067028604,0.4759502,-0.06777143,0.19729938,0.82077926,-0.2716051,0.099887766,0.15244995,-0.15807618,0.083668366,-0.3334855,-0.11746902,0.34237385,-0.53410965,0.24578413,-0.2607719,0.8156681,0.23840734,-0.87500525,0.21874145,-0.5612563,0.19575523,-0.007149678,0.55503434,0.8060006,0.4373245,0.29900455,0.6474686,-0.64325047,0.13286008,-0.029021401,-0.5590046,0.13925451,-0.25443575,-0.022469087,-0.39934942,-0.30999228,-0.051395994,-0.028954476,0.1449872,0.19026451,-0.66577053,-0.041443553,0.12255444,0.9863472,-0.18581028,-0.074974455,0.7946628,0.95075166,0.9772644,0.16925634,1.438862,0.12066684,-0.24572909,0.27036306,-0.06329732,-0.87707835,0.3087185,0.30488044,-0.3227563,0.19975956,0.12589923,0.1068537,0.42954272,-0.6081669,0.17491044,-0.27369985,0.24595745,-0.063644126,-0.30326152,-0.28200993,-0.20510289,-0.17513993,-0.08979762,-0.15448031,0.25268793,0.047825444,0.2608031,-0.075649336,1.4296873,-0.11686627,0.17950928,0.047948927,0.43770096,0.1844641,-0.123094015,-0.08507877,-0.010865852,0.29463726,0.19482371,-0.37133732,0.054996006,-0.27271953,-0.429917,-0.2344842,-0.24024566,0.055393588,-0.025736528,-0.51454467,-0.02761811,-0.11056332,-0.37176013,0.3935347,-2.4727948,-0.08772067,-0.10679205,0.23141468,-0.29445854,-0.24559991,-0.18300359,-0.57202786,0.56436366,0.28629044,0.5117715,-0.6932802,0.2624582,0.4630301,-0.62479955,-0.0826549,-0.66686183,-0.06759775,-0.05365187,0.05596022,0.17011313,-0.15481703,0.0031154964,0.18458617,0.4574819,-0.112018906,-0.14758177,0.27098694,0.3704795,0.0962715,0.5878144,-0.08070681,0.44608593,-0.39426568,-0.24989578,0.41398236,-0.34485093,0.1536764,-0.15540375,0.054346383,0.26786852,-0.5256791,-0.9381309,-0.77746564,-0.696938,1.0015395,-0.0030495462,-0.27103403,0.28699917,-0.12282833,-0.18388653,-0.005822867,0.676664,0.063896604,0.301912,-0.9085684,-0.03909113,-0.21411109,0.14392336,0.06862879,0.03237336,-0.5644182,0.63127136,-0.10835831,0.23447503,0.6224928,0.171991,-0.16326752,-0.5250057,0.23509558,1.2818578,0.26039523,0.2695258,-0.38981524,-0.16021411,-0.48616645,-0.19737397,-0.0661764,0.530501,0.9141844,-0.18197368,0.043551184,0.27001795,0.25412613,0.12258877,-0.17160773,-0.39767596,-0.21803202,-0.13183244,0.64084613,0.6920055,-0.14828207,0.35503483,-0.09135987,0.3036108,-0.098467745,-0.3002243,0.5895057,1.0455472,0.01591645,-0.19342384,0.50163037,0.33131674,-0.27644327,0.5156039,-0.40790105,-0.37215686,0.43749705,-0.14860848,-0.5483754,0.28379458,-0.45650768,0.13105379,-0.94834524,0.4568073,-0.47500712,-0.28976187,-0.46970257,-0.16801979,-3.4636414,0.30964303,-0.28540364,0.08773017,-0.19410111,-0.011866263,0.31764618,-0.40483946,-0.5362744,0.14813623,0.069343165,0.78593844,-0.11094963,0.2351776,-0.2588974,-0.17963187,-0.2908083,-0.014995826,0.428564,0.2285438,0.096900955,-0.3384493,-0.22835943,-0.3385567,-0.3843589,0.122632265,-0.61667687,-0.57519764,-0.27174535,-0.55335313,-0.45929864,0.77236927,-0.48586008,-0.008413421,-0.13952781,-0.082021885,-0.05356342,0.43293557,0.15042332,0.22859158,-0.04502358,-0.06775785,-0.2697642,-0.301388,0.29904112,0.16827247,0.32423773,0.30890635,-0.20438997,0.3662574,0.5028066,0.8372751,-0.12668078,0.83055276,0.63408756,-0.059318505,0.30168915,-0.38413692,-0.2686192,-0.72359717,-0.3169399,0.018059727,-0.42743775,-0.48954725,0.21493527,-0.35975474,-0.76441544,0.6821534,-0.09397179,-0.021563599,0.12315726,0.11400109,0.28821757,-0.2846697,-0.14797108,-0.012187498,0.011960409,-0.621107,-0.26727226,-0.577035,-0.71103734,-0.077700146,1.0523921,-0.10855365,-0.05362134,0.058926042,-0.12201447,0.15981808,0.1236311,0.014318423,0.16242775,0.47892064,0.1278962,-0.63334525,0.5335957,-0.07869265,-0.26629624,-0.6465817,0.16859646,0.7237319,-0.78672165,0.65659094,0.41140494,0.100433454,0.21605669,-0.52217907,-0.29853168,-0.010716749,-0.19407058,0.25184634,0.05919265,-0.7706713,0.40941188,0.3559427,-0.32881275,-0.8791382,0.48281312,0.076221466,-0.26037842,0.010142141,0.3429131,-0.0011655986,-0.035854377,-0.15105769,0.24125136,-0.36704874,0.23356335,0.31917945,-0.15665393,0.35026655,-0.14238368,-0.20523931,-0.71059763,0.13186361,-0.5534238,-0.34229904,0.2111288,0.10063214,-0.1905208,0.1752843,0.2753293,0.35655025,-0.17377189,0.118716955,-0.10593117,-0.36670858,0.31424466,0.46717677,0.48554128,-0.5059262,0.69515866,-0.10125596,-0.10963433,-0.07934325,0.20713483,0.58007187,-0.07130647,0.2852936,-0.02004905,-0.18093626,0.13498981,0.9343638,-0.07115586,0.48223382,0.1288797,0.014050462,0.24151337,0.14719735,0.029539188,0.1251252,-0.64364713,0.122197226,-0.079616986,0.12078013,0.510727,0.1218786,0.28342924,-0.08831109,-0.36973897,-0.12621716,0.25472617,0.11361081,-1.1873602,0.4680423,0.13147773,0.76810604,0.5841697,0.033037513,0.1401347,0.5710055,-0.098175064,0.24293779,0.40074506,-0.36281762,-0.45573786,0.5250102,-0.63727534,0.45173725,0.09711571,0.051637974,0.10942262,-0.065033935,0.44708356,0.79125375,-0.1625317,0.13456531,-0.14106493,-0.13243894,0.14290419,-0.5473551,0.14451507,-0.3885767,-0.38890347,0.81274146,0.6351227,0.2617992,-0.14177172,0.032776404,0.1189834,-0.25995532,0.24948256,-0.19106899,-0.040242177,0.08207862,-0.6363613,-0.17860515,0.62077904,-0.054383468,0.12523915,-0.045633733,-0.06113294,0.29597592,-0.16284181,0.01869258,-0.17795444,-0.8400735,-0.0353778,-0.65714025,-0.23063298,0.4058468,-0.18425097,0.29158396,0.24913752,0.19599734,-0.33840793,0.69483954,-0.050291207,0.64483637,-0.09399414,-0.40300608,-0.39989632,0.28930974,0.3000273,-0.34777328,-0.15666457,-0.25616962,0.11249941,-0.57086766,0.40909752,-0.047523897,-0.22907901,0.13311575,-0.13345698,-0.10610231,0.5652911,-0.13903452,-0.055862945,0.23734555,-0.15666635,-0.09300184,-0.01698176,-0.09407152,0.25759244,0.34164843,-0.068221614,-0.034252033,-0.2511366,-0.12204582,0.3365319,0.034806363,0.33907524,0.36449507,0.15797596,-0.40380454,-0.15845375,0.32432863,0.66455114,0.08222463,-0.09306791,-0.29626274,-0.2922024,-0.27406892,0.1935008,-0.17623572,0.23466012,0.0696573,-0.3882272,0.815765,0.2750803,1.2947283,0.097810306,-0.31122023,0.1008389,0.3436401,-0.1435088,-0.04731241,-0.6407526,1.0723475,0.51417965,-0.13191119,-0.08991729,-0.3028138,0.056761023,0.06907513,-0.19418585,-0.10557175,0.024899704,-0.7365302,-0.21568252,0.246483,0.37137213,0.0509376,-0.1452591,-0.10743214,0.029897707,0.016231375,0.11357454,-0.7071659,-0.029194662,0.14520392,0.32465845,-0.02389287,0.10870867,-0.41117126,0.5419796,-0.54363674,0.0676408,-0.27689612,0.076072276,-0.15601781,-0.35273567,0.26596063,-0.077372454,0.46661565,-0.412405,-0.2631413,-0.25300795,0.36767468,0.22857387,0.22678454,0.7594668,-0.24889685,0.046337478,0.028038843,0.61333495,1.1826696,-0.30504575,0.06580876,0.4024529,-0.22139832,-0.37787384,0.2493739,-0.40629128,0.17135479,-0.33348098,-0.35878658,-0.49490443,-0.027126921,0.14084585,-0.022327295,0.12542035,-0.6877989,-0.21686053,0.2058618,-0.42090622,-0.43871197,-0.42389104,0.19057237,0.6568895,-0.24978593,-0.25072306,0.21768053,0.057286944,-0.09333646,-0.41433683,-0.06737774,-0.20862894,0.17335603,0.18679598,-0.423224,-0.11154485,0.09867018,-0.53274083,0.19038351,0.24130665,-0.40895635,-0.08426504,-0.06433759,-0.17155658,0.92954344,-0.24263705,0.25138825,-0.47217104,-0.53152335,-0.93766385,-0.27352187,0.6428598,0.16554031,0.1603901,-0.4192793,-0.19316995,-0.063755505,-0.007520092,0.0212763,-0.3042336,0.31506798,0.117685184,0.6538439,-0.3133367,-0.8268723,0.061806615,0.15862584,-0.181646,-0.6408843,0.41490918,0.071109824,0.78791046,0.044692226,-0.03507274,0.47689587,-0.57301664,-0.24053724,-0.26743594,-0.1283019,-0.6951429,0.07245065,971 +574,0.41960123,-0.3982768,-0.5553142,-0.1255757,-0.37865448,-0.16471304,-0.23888983,0.3262382,0.31399378,-0.21625388,-0.056720622,0.0932757,-0.041890416,0.25718105,-0.14589235,-0.64352095,-0.2077777,0.2319918,-0.72771263,0.6251609,-0.4977295,0.43044785,0.14625607,0.3128696,-0.029280433,0.2089163,0.20696424,0.14201795,0.10204362,-0.13632545,-0.08711316,0.32594985,-0.5506334,0.3842186,-0.23736584,-0.3939546,0.1119658,-0.2090163,-0.036017608,-0.75461733,0.052237246,-0.7537899,0.62554324,-0.21225323,-0.38939694,-0.22445713,0.26159227,0.41940352,-0.29981086,0.09388433,0.2073988,-0.36603427,-0.1407775,-0.52227885,0.08448981,-0.5388235,-0.41564375,-0.07906122,-0.62558556,-0.18269362,-0.049319305,0.2976803,-0.16675554,-0.067747936,-0.20819725,0.44485694,-0.40177923,-0.15331748,0.3256509,-0.23177603,0.32649708,-0.6402498,0.00736802,-0.09983388,0.31508607,-0.023144895,-0.17620766,0.4026487,0.030542387,0.44163302,0.27571598,-0.40282208,-0.3092418,-0.19369368,-0.021766977,0.33499938,-0.18363227,-0.28771088,-0.20086597,0.10224692,0.37224764,0.30173144,0.12117643,-0.21576367,-0.0017294118,-0.31378418,-0.026817368,0.3430428,0.42210084,-0.27964914,-0.26121524,0.16981816,0.7710611,0.15363815,-0.19021104,0.08794045,-0.1165595,-0.50725275,-0.19866857,0.12601629,0.050011218,0.36394385,-0.06390445,-0.007501892,0.73855245,-0.15224995,-0.22423764,0.18350157,0.039100852,-0.030015213,-0.29550642,-0.3597981,0.4261958,-0.5605644,-0.028103922,-0.3472946,0.5888562,-0.01501309,-0.7950824,0.22871315,-0.59336424,0.036661416,0.013018457,0.6259637,0.6416212,0.6535424,0.22643434,0.8115631,-0.32214528,0.15654702,-0.084836565,-0.22064193,0.1006976,-0.37711683,-0.06723694,-0.57480365,0.25500935,-0.35802904,0.022614395,0.06582819,0.35996002,-0.6959275,-0.14469838,0.2592435,0.6119708,-0.3347156,-0.006037789,0.6419062,1.0914266,1.1722664,0.016832134,1.1706277,0.335288,-0.2921176,0.002942313,-0.0834375,-0.53526765,0.17114122,0.42279932,0.04073402,0.4322962,-0.06285279,0.045163002,0.39980978,-0.3710522,-0.029069956,-0.02929249,0.4591937,-0.06530995,-0.20379743,-0.7411443,-0.2717995,0.18243954,-0.09626849,0.031910777,0.28086135,-0.17347537,0.52835387,0.041170154,1.1891098,-0.119834505,0.16487359,0.30229467,0.38663498,0.36037546,-0.1631199,-0.034002136,0.43232414,0.36019066,0.008909439,-0.40130165,0.2818223,-0.26492205,-0.5371038,-0.1671437,-0.3096458,-0.031678952,0.039450772,-0.38194466,-0.41407558,-0.006969767,-0.26201004,0.2991049,-2.5460489,-0.084203646,-0.060735352,0.30087325,-0.31395265,-0.25419232,0.0047796923,-0.45936546,0.23152171,0.25996143,0.44698745,-0.5564397,0.46237502,0.54494727,-0.54763925,-0.19088398,-0.6389357,-0.21584807,-0.06747009,0.60330904,0.16014345,-0.27667588,-0.21999623,0.13942127,0.7523165,-0.11655586,0.21855184,0.62084234,0.20631838,-0.021341775,0.5651359,0.029623615,0.52730924,-0.3950204,-0.20223625,0.4724057,-0.33682957,0.09923834,0.085477255,0.036828212,0.5904506,-0.5062755,-0.92206395,-0.6827909,-0.11642082,1.1494434,-0.30599895,-0.57810163,0.072538495,-0.019231107,-0.13412996,0.021349145,0.3427775,0.006734318,0.32804736,-0.6454201,-0.034820028,-0.040063065,0.377541,0.007923211,-0.084519364,-0.5590893,0.71729594,-0.04752476,0.6449407,0.3292935,0.3628175,-0.43733257,-0.5130185,-0.030995099,0.9108788,0.37156463,-0.0049203634,-0.07754332,-0.1707249,-0.03562967,-0.13018562,0.10940211,0.6265417,0.8187379,-0.087462306,0.13059644,0.28734514,-0.23459403,0.10561974,-0.15756464,-0.23047747,-0.15658616,0.2548148,0.49036327,0.6466626,0.018523693,0.33548048,-0.14461206,0.5329723,-0.07733288,-0.7637032,0.41369155,0.9142289,-0.16183482,-0.15588214,0.63770694,0.5159267,-0.26306108,0.53257763,-0.71237516,-0.40886325,0.5639449,-0.21633697,-0.48443487,0.26624233,-0.3124887,0.24749467,-0.81260127,0.39711827,-0.47609833,-0.578999,-0.73243827,-0.3215301,-2.6076944,0.38663295,-0.047077574,-0.030587448,-0.0823062,-0.14778854,0.2519768,-0.72743595,-0.5472484,0.027319716,0.2700487,0.4933717,-0.14445962,0.02664819,-0.35369435,-0.43291745,0.059850276,0.3922973,0.16150868,0.122155346,-0.16443662,-0.4265085,-0.18946435,-0.055852085,-0.5086227,0.07643831,-0.689205,-0.46911994,-0.11495805,-0.61605877,-0.20987412,0.66433895,-0.31601158,0.0063045495,-0.16962482,0.03267454,0.034790494,0.04999572,-0.029178781,0.2604508,0.22161727,-0.11678302,0.087860465,-0.34539533,0.21071997,0.04871758,0.22448076,0.09438251,-0.4060626,0.09968807,0.5762605,0.811193,-0.21515016,0.85351604,0.42280766,-0.1062242,0.3641057,-0.19062993,-0.47454092,-0.7370172,-0.31798914,-0.01968291,-0.44752875,-0.4071408,0.13264301,-0.32775512,-0.8440031,0.87247956,-0.11515201,0.2323015,-0.054513816,0.39965954,0.42943937,-0.24171574,-0.14297077,-0.12539087,-0.30984333,-0.32999706,-0.33751398,-0.6125083,-0.5485812,-0.15469499,1.2912371,-0.2854548,0.20991834,0.16640401,-0.20496821,0.14746805,0.22595385,0.12959954,0.40589634,0.40337515,0.03263138,-0.56783473,0.33664766,-0.011886354,-0.18141209,-0.29375157,0.25245604,0.61139905,-0.7291495,0.42138192,0.2716163,-0.030063663,-0.18000463,-0.6613222,-0.07939291,0.10297811,-0.13444401,0.75294334,0.2889741,-0.5999717,0.6160954,0.26890755,-0.5476606,-0.81144553,0.16242623,-0.2073869,-0.42616516,-0.08689896,0.46432853,-0.14101386,-0.028883193,-0.31012908,0.18884937,-0.5219522,0.20316295,0.17149922,-0.15254535,0.10670285,-0.2107834,-0.26186022,-0.8336939,0.09998499,-0.57609385,-0.3483542,0.33705616,-0.09103419,-0.23804331,0.3122725,0.018417416,0.54110146,-0.2535241,0.13466506,-0.024417136,-0.37736636,0.3632682,0.5269689,0.26621833,-0.27085543,0.43338886,0.101654306,-0.22088994,-0.37868118,-0.01604219,0.45952135,0.020240877,0.39993507,-0.33692318,-0.004722399,0.4645497,0.73365337,0.15424633,0.44252965,-0.050718326,-0.20896025,0.25607112,0.027007427,0.25160545,0.009393354,-0.30772966,0.08636337,0.0051082033,0.1419971,0.5934981,0.25338313,0.34389386,0.0036618677,-0.09986616,0.12357945,0.3600618,-0.08859473,-1.2998744,0.34880045,0.34112504,0.81112987,0.4813402,0.43416572,-0.20403825,0.6651154,-0.29964834,-0.06404743,0.34915325,0.0038024357,-0.35861096,0.7850452,-0.6458596,0.3354561,-0.17721932,-0.032869067,0.07291515,0.0129287755,0.5047242,0.8838781,-0.11566673,0.08289889,-0.11439451,-0.03828297,-0.02334657,-0.31915978,0.05803773,-0.22591901,-0.47007713,0.72892916,0.19765738,0.49100357,-0.2905302,-0.061554737,0.18271752,-0.23209418,0.34342638,-0.11451982,0.09529352,0.086021475,-0.2151873,-0.059933174,0.51678145,0.065389164,0.08898517,-0.14358957,-0.27425495,0.12335099,0.030984385,-0.008954593,0.08554237,-0.5190887,0.09154076,-0.27229398,-0.32674956,0.67529625,-0.29408816,-0.062369924,0.19712935,0.154964,-0.16471629,0.049004667,0.23251952,0.7711138,0.21351545,-0.1939249,-0.21710835,0.1089046,0.08103616,-0.24709593,0.17078508,-0.3337094,0.18065281,-0.78034145,0.41849825,-0.060638785,-0.4999434,0.28861645,-0.17564304,-0.083588906,0.3832949,-0.22805004,-0.2610496,0.06476484,-0.046638332,-0.33673355,-0.24261318,-0.32330874,0.20376109,0.21155313,0.030606005,-0.039058298,-0.16762467,-0.07138616,0.6042821,0.07872985,0.2908299,0.2559492,-0.096779995,-0.3462736,0.46046954,0.06821143,0.3981792,-0.053003047,0.1873376,-0.324011,-0.38808712,-0.3991608,0.062050562,-0.13362218,0.13735655,-0.015299141,-0.22375356,1.0812277,-0.02124708,1.2480575,-0.09815054,-0.3958258,0.10993479,0.5447621,-0.054231107,0.05885132,-0.44453642,1.05272,0.7708277,-0.115044855,0.028900895,-0.31673965,-0.22536895,0.26663327,-0.43609905,-0.11758141,-0.122202925,-0.60125095,-0.43480307,0.29282692,0.20526047,0.14239003,-0.1520064,-0.030048694,0.122926354,0.1471753,0.0865728,-0.49271324,0.122522935,0.118638135,0.34026554,-0.22066303,0.10273378,-0.48966983,0.36075878,-0.7387621,0.22384262,-0.40052313,0.041488178,-0.16751587,-0.3705469,0.13561168,-0.15246692,0.1135115,-0.3994944,-0.32575387,0.008263505,0.4120086,-0.015273622,0.079309806,0.72638303,-0.25618783,0.1808882,0.17425404,0.37611106,1.1888807,-0.4202573,-0.259351,0.17255415,-0.338331,-0.6000671,0.2957992,-0.24731223,-0.11641406,-0.17082019,-0.60297096,-0.4560223,0.14953755,0.31235933,0.15547301,-0.006796028,-0.5946023,0.15027292,0.38827315,-0.42112327,-0.096926995,-0.16516992,0.39293173,0.58529204,-0.18380828,-0.61893064,0.06001206,0.33678606,-0.34215614,-0.55054396,-0.09232939,-0.32593012,0.42436668,0.12512304,-0.28061664,-0.071730964,0.112083875,-0.53857106,-0.06095872,0.5101872,-0.25354388,0.06975827,-0.35310173,0.058463685,0.7552613,-0.040819697,-0.098406136,-0.57781345,-0.470967,-1.0912981,-0.42553744,0.2629809,0.25417492,0.051061515,-0.60998017,0.027397692,-0.29357502,-0.19025585,0.036710035,-0.2755554,0.35607508,0.19359955,0.6036099,-0.49707517,-0.9505054,0.3693431,0.24141042,-0.04426288,-0.4875662,0.5368915,-0.071040615,0.72693986,0.0021621925,-0.074467316,0.11436259,-0.7210811,0.23389395,-0.26493296,-0.119203486,-0.6479645,-0.22957002,972 +575,0.110166185,0.01570909,-0.84117603,-0.09465384,-0.21515045,0.06936568,-0.2836829,0.44272733,0.22134387,-0.3192449,0.10098626,-0.10140427,-0.11642276,0.2640048,-0.18409012,-0.7329979,-0.065882854,0.07202759,-0.38232556,0.598483,-0.4646143,0.24322748,-0.07918073,0.27322128,0.05379789,0.38187653,0.12653224,-0.24070457,-0.00014550345,-0.10427612,0.033972006,0.20048033,-0.36712703,0.1344375,0.08957903,-0.25732067,0.23950703,-0.3016474,-0.42832544,-0.66982406,0.32498237,-0.6920099,0.5514747,0.0956341,-0.27719697,0.44708943,0.049405508,0.0033793706,-0.26715407,-0.06828047,0.34480596,-0.28820997,-0.3322905,-0.16277437,-0.38911608,-0.76541144,-0.50510484,-0.106754474,-0.65454084,-0.07405671,-0.361526,0.16009894,-0.37413958,-0.13927297,-0.22196208,0.1744368,-0.6319718,-0.015584179,0.0628146,-0.31611425,0.08313613,-0.63479507,-0.10619893,-0.063969836,0.141139,0.14831424,-0.017027732,0.24603963,0.049041253,0.3949675,-0.009063401,-0.044691417,-0.59955746,-0.2806124,0.2566479,0.38911372,-0.07759583,-0.18482523,-0.056327175,-0.07609548,0.3060407,0.35081282,0.03763924,-0.17089696,-0.18402639,0.07668634,-0.33469138,0.45295662,0.504696,-0.23952726,-0.07784406,0.49813825,0.19154358,0.2669973,-0.36553636,0.12673858,-0.14706244,-0.42442527,-0.17193785,-0.010154724,-0.10518042,0.3910223,-8.174138e-05,0.3702514,0.80230683,-0.12377958,-0.0527729,-0.19353811,0.002604078,0.057098538,-0.2705378,-0.10667284,0.22104017,-0.42481998,0.17136621,-0.20220843,0.684837,-0.06735995,-0.79579085,0.3962764,-0.4145113,0.077552386,-0.14097941,0.75847065,0.6413188,0.535984,0.15622258,0.8845075,-0.43212837,0.15306608,0.015397782,-0.47170094,0.35400537,0.12953316,-0.021541135,-0.48617366,0.06924777,0.1792936,-0.11107598,0.11527063,0.59151655,-0.40303913,0.02585062,0.0653568,0.830386,-0.3280591,-0.10530964,0.57037824,1.1440991,0.79438835,0.07333947,1.0402391,0.2399745,-0.20731728,-0.029676054,-0.29423764,-0.9638732,0.19461921,0.35166496,0.14804076,0.3472405,0.16289215,-0.009742941,0.4823548,-0.20709983,-0.08086804,-0.13833098,0.36076418,-0.03953505,-0.2748981,-0.1802272,-0.1009218,0.089345016,0.051890977,0.22662939,0.3531239,-0.13837942,0.39800724,0.12801717,1.4563278,-0.045461852,0.06824656,0.1749306,0.517311,0.27804935,0.07084932,0.05043993,0.7536518,0.33770496,-0.010531281,-0.68561935,0.14358003,-0.27767918,-0.4932774,-0.13312893,-0.34051746,-0.19698794,-0.017821701,-0.2732993,-0.19117144,-0.08149327,-0.30101386,0.35914865,-2.7978675,0.019538967,-0.17542256,0.24349962,-0.052998006,-0.12957712,-0.025977036,-0.42864418,0.57144797,0.49675712,0.4219353,-0.4393246,0.51288843,0.7208436,-0.3285534,-0.07235471,-0.53852355,-0.1567734,-0.09194488,0.48956257,-0.10756911,-0.20825426,0.0689237,0.06831833,0.4842484,0.04078865,0.17597353,0.32054114,0.6021328,-0.13587764,0.33074233,-0.11149148,0.58806187,-0.119358905,-0.08099691,0.1692735,-0.37949356,0.44312865,-0.3957804,0.10861135,0.46325678,-0.22356436,-0.7322704,-0.21385661,0.06425988,1.0077192,-0.37986594,-0.5815765,0.34930712,-0.26148438,-0.18203616,-0.14850186,0.5318796,-0.21240173,-0.18864986,-0.61843354,-0.017833821,-0.25687006,0.106231384,0.0030090862,0.12921445,-0.4615275,0.75169885,0.04146817,0.7561466,0.36084896,0.10190284,-0.2079055,-0.2810921,0.07820722,0.5452064,0.321734,0.11045466,-0.34578535,-0.22536813,0.044041682,-0.21786198,0.058216807,0.53306174,0.59964997,-0.063674726,0.12701885,0.20869902,-0.28709435,-0.11487006,-0.32958603,-0.33964822,-0.096807756,0.10716132,0.37927303,0.693075,-0.1733613,0.38182217,0.19174193,0.32666588,-0.35220656,-0.45143372,0.46563217,0.66638213,-0.17328933,-0.15449367,0.60751826,0.4671087,-0.14725685,0.4756334,-0.6166156,-0.17036687,0.5367136,-0.23566937,-0.45267287,0.15496273,-0.28527465,-0.06488281,-0.7988946,0.24725571,-0.18262057,-0.6176439,-0.7023152,-0.1662267,-3.0193253,-0.020656396,-0.45823678,-0.20388296,-0.389888,-0.00295814,0.19227873,-0.48316702,-0.5191762,0.12779021,0.37690115,0.45070362,-0.13922592,0.03924322,-0.30357417,-0.19747797,-0.0562041,0.26067382,-0.15862694,0.14759292,-0.056187768,-0.4368577,-0.0044083,-0.081470355,-0.31996113,-0.035314284,-0.21817853,-0.06920241,0.043766025,-0.38672358,-0.116345815,0.7771265,-0.48804238,-0.10703675,-0.25679448,0.09017281,-0.116957135,0.27303356,0.00064912863,0.11159021,0.016861144,-0.015634581,0.09138928,-0.42190203,0.291404,-0.089705266,0.45759198,0.36586234,0.030452082,-0.15496643,0.5919797,0.469525,0.057605233,0.822905,0.3660604,-0.24655928,0.36044434,-0.3079764,-0.10488885,-0.6358303,-0.4284367,0.018078608,-0.37794098,-0.6070324,-0.16993068,-0.5165774,-0.85410655,0.3720956,0.06829781,-0.015146285,-0.02153259,0.3976719,0.39132696,0.038401235,0.06607348,-0.06703472,-0.23012137,-0.41233808,-0.13624422,-0.7798895,-0.35647175,0.16218092,0.9564404,-0.2999421,-0.33239597,0.10679563,-0.44884667,-0.0076745087,0.1753444,0.25948453,0.33691978,0.27108094,0.18891081,-0.6116692,0.65762436,-0.07986969,-0.026211854,-0.68811464,-0.1630442,0.43573228,-0.83546066,0.40105072,0.558238,-0.08560588,0.10211507,-0.7025115,-0.2275466,0.15287575,-0.17119971,0.41288307,0.21311192,-0.83399194,0.52766484,0.25380033,-0.110124946,-0.67687273,0.30018595,-0.24416174,-0.22676754,0.19870612,0.28124925,0.12426204,-0.03979615,-0.21231662,0.2525653,-0.2912504,0.36059904,0.099115714,-0.20718868,0.47989056,-0.048109863,-0.01493276,-0.8804775,0.028324971,-0.4262354,-0.08668627,0.38974735,0.14196567,0.30891237,-0.02128378,0.14423497,0.448796,-0.34342322,0.2632503,-0.29991955,-0.29787764,0.4690493,0.45015833,0.28486001,-0.41531911,0.60708016,-0.12948933,-0.16313548,0.21858966,0.075752445,0.4791067,0.07772623,0.43693304,0.055253167,-0.27704787,0.17382307,1.1071099,0.28489545,0.37623432,0.19593121,-0.13363573,0.46489996,-0.0043629683,0.06776574,-0.07349483,-0.4867685,-0.032462854,-0.07696949,0.25421903,0.42858785,0.21685186,0.46527913,-0.11563439,-0.07647399,0.10184089,0.24525563,0.287705,-0.7088297,0.44617623,0.2636141,0.63850725,0.62993205,0.1174363,0.14909792,0.5429072,-0.19739921,0.069366924,0.34916,0.097604886,-0.4794738,0.3831019,-0.59432757,0.4399162,-0.19804123,-0.053992808,0.3394471,0.047655802,0.44361755,0.86522853,-0.18959716,-0.0018970221,0.12389754,-0.27713522,0.09141111,-0.15180232,-0.11712862,-0.28404504,-0.3709726,0.4402664,0.5311957,0.34366164,-0.06302036,-0.038558695,0.27747077,0.04551712,0.23188855,-0.009649164,0.044100374,-0.07529458,-0.4166741,-0.2980053,0.47242537,-0.08783162,0.019573543,-0.09039472,-0.32910213,0.34421656,-0.27802375,-0.069691785,-0.0832986,-0.52708954,0.17038839,-0.11293013,-0.8879808,0.60730875,0.12462049,0.3367373,0.21524274,-0.01810311,-0.18386804,0.15119238,0.020387696,0.73780155,-0.23470439,-0.07733758,-0.3273775,-0.28722256,0.28924513,-0.3653571,-0.15432207,-0.15976523,0.063908875,-0.6206721,0.37973925,-0.33833724,-0.2628863,-0.09707825,-0.37814644,-0.028263075,0.39950174,-0.19624083,-0.25333217,0.11264382,-0.13213202,-0.16999663,-0.26624218,-0.38048792,0.053957354,-0.24227038,0.019359767,-0.2623421,-0.16234623,-0.021592498,0.27528644,-0.11110679,-0.032870818,0.2817022,0.17110617,-0.3141826,-0.2971027,0.22816499,0.5895415,0.02053849,0.06580356,-0.23611781,-0.43717474,-0.36065882,0.24134925,-0.18189017,0.34473655,0.28951007,-0.51271117,0.79746914,0.02916801,0.8747245,0.059897173,-0.41629162,0.25358638,0.7018139,0.26372203,0.19685592,-0.26510802,0.8808121,0.61925995,-0.26031324,-0.10152803,-0.49307474,-0.0947119,0.4275753,-0.27534404,-0.16526015,-0.002747689,-0.69894695,-0.14796713,0.3379789,0.05227836,0.051121067,-0.17240511,0.040078063,-0.040465888,0.42781025,0.2582393,-0.5764297,-0.24310994,0.2738035,-0.09419594,0.06819541,0.15628919,-0.49142244,0.31776476,-0.40376732,0.016513724,-0.4295484,0.008379638,-0.08819103,-0.035708904,0.15053026,-0.038152665,0.20468901,-0.24592051,-0.40849113,-0.029315531,0.45793253,0.23617052,0.49764222,0.60955924,-0.22296046,0.035786808,-0.09710632,0.5445219,1.1140705,-0.26414433,-0.15540065,0.4534488,-0.42407247,-0.6720889,0.066081874,-0.5490922,-0.0395695,-0.102227405,-0.51783115,-0.3834832,0.27015597,0.06699658,-0.3154993,0.086362734,-0.55747837,-0.21162836,0.15943919,-0.36966977,-0.24510863,-0.29876238,-0.16689089,1.0046381,-0.45212513,-0.2860053,-0.017509809,0.26408276,-0.28993973,-0.56516486,0.21272898,-0.32204765,0.40276363,0.18754579,-0.4101704,-0.0066066766,0.13980721,-0.43397978,0.22185217,0.3777585,-0.35925236,-0.028890137,-0.39374566,0.12137167,0.8055844,-0.09121263,0.09237993,-0.2786843,-0.5054094,-0.80347747,-0.29623923,0.2575295,0.0505797,0.00023022294,-0.5741872,0.18593721,-0.06255277,-0.04305576,-0.099724755,-0.5886083,0.5501653,0.13624847,0.3619387,-0.16623732,-1.082595,0.014993966,0.038755033,-0.37213463,-0.5887355,0.6117373,-0.28705975,0.90520924,0.13364114,0.098901436,0.09472398,-0.53403413,0.5050784,-0.48682073,-0.37288776,-0.60757476,0.061397623,974 +576,0.696466,-0.27398142,-0.6574375,-0.092446454,-0.2008667,0.24922805,-0.31292257,0.39232773,0.09783256,-0.49328643,-0.21453895,-0.2665091,-0.08746784,0.21080741,-0.20978095,-0.44218096,-0.010663271,0.07545359,-0.50367135,0.64460814,-0.1856229,0.3654149,0.06492133,0.41437045,0.29214168,0.398775,0.32355705,0.1272318,0.009393121,-0.29518232,-0.08073813,0.07917436,-0.64442974,0.12984057,-0.25269648,-0.42206374,-0.051730696,-0.4433294,-0.26689306,-0.8728968,0.30100983,-0.9793523,0.6055241,0.032459076,-0.28960314,0.33015123,0.3715237,0.16942906,-0.20257689,0.010787534,0.22793531,-0.108214036,0.07052752,-0.30941862,-0.318014,-0.5323629,-0.44988284,-0.16168258,-0.554313,-0.2714626,-0.31864756,0.1973414,-0.20314203,-0.013158611,-0.18548642,0.38537493,-0.4511034,0.015524311,0.26469937,-0.17067215,0.3158525,-0.7655902,-0.24353287,-0.18858244,0.30623814,-0.027667284,-0.12951714,0.35387844,0.25146556,0.31978688,0.24596305,-0.14402528,-0.27504423,-0.24685667,0.080655634,0.28867248,-0.09105643,-0.3358653,-0.23886923,-0.2496873,0.45625338,0.4238623,0.34283108,-0.23357245,0.04006203,-0.19199964,-0.22537325,0.47394744,0.4685142,-0.36169323,-0.08093313,0.34560373,0.6455003,0.2438543,-0.32542902,0.1343533,-0.05476095,-0.4120846,-0.18056083,0.26347458,-0.22529748,0.5765892,-0.13621022,0.23765948,0.73493475,-0.2038887,-0.057602305,0.02616887,0.039057374,-0.26834455,-0.18390763,-0.35510227,0.3658351,-0.4840596,0.22820608,-0.28371972,0.56889176,0.16792558,-0.52777416,0.20940015,-0.6649614,0.022549434,-0.06917865,0.47525945,0.5814977,0.5719223,0.16214512,0.8840006,-0.29809758,-0.06650026,-0.11646859,-0.16840497,0.0077621513,-0.23561546,0.0833397,-0.53882,0.18670058,0.001179627,-0.014699625,0.057671327,0.56293875,-0.35696816,-0.13312139,0.12779687,0.8260941,-0.31393746,0.1278424,0.92668974,1.1230546,1.0616494,-0.024789274,1.0231925,0.18858646,-0.36505264,-0.10002328,0.068726964,-0.5037882,0.26643986,0.47876647,-0.15975802,0.42425042,0.076560915,-0.06691908,0.2811134,-0.3534394,-0.08532065,-0.11383774,-0.04688242,0.10978164,-0.087279595,-0.43474227,-0.11858099,0.14355704,-0.047132473,0.31461477,0.21488492,-0.22897302,0.52593297,0.051455446,1.409651,-0.15469567,0.12126268,0.2183295,0.5806522,0.3898585,-0.13544886,0.015958173,0.40845686,0.27819368,0.111405455,-0.5374806,0.2289085,-0.2649731,-0.5712902,-0.03006238,-0.4362445,-0.09322506,-0.034380525,-0.34892124,-0.1837015,-0.15899219,-0.2572268,0.29856166,-2.735418,-0.13565587,-0.113141574,0.24235287,-0.26464182,-0.23275523,-0.07614814,-0.4811481,0.5392987,0.32708192,0.40785238,-0.48864153,0.42184153,0.57464266,-0.5298449,-0.107212365,-0.4333088,-0.007334918,-0.08804558,0.43727186,-0.093989,-0.18827547,0.028179994,0.26896554,0.47317606,0.20297097,0.18538015,0.27221438,0.429244,-0.08158833,0.50198513,0.026595814,0.43417308,-0.4202781,-0.15820067,0.47974816,-0.4116914,0.24657127,-0.19091609,0.17415397,0.5448488,-0.5590558,-0.8472523,-0.6885711,0.022859266,1.0502609,-0.33412233,-0.72166795,0.11045432,-0.2547313,-0.22849558,0.016173836,0.598599,-0.16289823,0.17862646,-0.6471687,0.040451195,-0.059110966,0.09977393,0.0635501,0.08917008,-0.5830553,0.85014075,-0.034270562,0.7192032,0.26681414,0.21338275,-0.3913901,-0.6166735,0.10772007,0.84678257,0.5416304,-0.052083116,-0.07215439,-0.12065884,-0.22588362,-0.16049881,0.24606776,0.804163,0.59184676,0.05586559,0.08235473,0.23870893,-0.0105369855,0.18424408,-0.3021089,-0.29996786,-0.21053664,-0.1213382,0.5047632,0.47238,0.07534606,0.32242015,-0.13517378,0.55393195,-0.14535831,-0.5329259,0.5869416,1.1781633,-0.18896411,-0.354771,0.61187637,0.53016824,-0.26321137,0.56177384,-0.796913,-0.2830742,0.46397033,-0.13887404,-0.64340514,0.20463693,-0.24810033,0.081595965,-0.857314,0.0972367,-0.3379362,-0.3452435,-0.4528925,-0.24406256,-3.3466184,0.19842108,-0.2244459,-0.094686136,-0.3231287,-0.30300814,0.21550186,-0.5992045,-0.6745004,0.16732237,0.014654769,0.84006375,-0.1693413,0.18403013,-0.23015162,-0.40999603,-0.3534495,0.26410142,-0.058376778,0.33924294,-0.19682212,-0.34078926,0.0060841525,-0.01332071,-0.43321282,-0.14515842,-0.44956964,-0.31105265,-0.20855805,-0.45081094,-0.19416046,0.6009499,-0.3100428,0.09221244,-0.15382206,0.089596935,-0.014775583,0.19804871,0.13045637,0.27707118,0.078259155,-0.06411028,0.08586942,-0.2711271,0.16091542,0.07910706,0.1953649,0.17363872,-0.252811,0.20573735,0.28691486,0.56492895,-0.09649276,0.78019655,0.26605824,-0.105872646,0.31108946,-0.20481108,-0.454859,-0.7110473,-0.18406537,-0.096656665,-0.2657369,-0.46877939,-0.124184616,-0.39101693,-0.87707317,0.5851097,0.11500404,0.433913,0.045320876,0.43947962,0.5545868,-0.26197436,-0.07196993,0.09793893,-0.17985432,-0.61869395,-0.22568622,-0.6095577,-0.41993517,0.037548818,0.70706075,-0.32770962,-0.091420926,0.28812346,-0.1537175,0.11610055,0.14548351,0.04450333,-0.0258688,0.53078634,0.01704611,-0.654967,0.7246519,-0.17577577,-0.13979803,-0.5161073,0.2902529,0.5071581,-0.60811245,0.4358088,0.4088017,0.033546872,-0.44300896,-0.6062493,0.064994976,-0.004104721,-0.17585301,0.44190398,0.28372636,-0.745141,0.31535414,0.13337073,-0.2140685,-0.7703175,0.6826792,-0.06766583,-0.41454622,-0.027635476,0.42551756,0.22760627,-0.08403043,-0.23889668,0.17530182,-0.37959597,0.18892278,0.17340027,-0.082062654,0.42314696,-0.24598299,-0.18839046,-0.7006144,0.09475134,-0.6283244,-0.27662143,0.4510834,-0.021389237,-0.017530022,0.26598826,0.114002444,0.3536651,-0.24075063,0.24349822,-0.230624,-0.13525663,0.48123652,0.50600517,0.51359594,-0.5735461,0.63293046,-0.0103749065,-0.13459086,0.19792248,0.14364484,0.263638,-0.00418124,0.60392463,-0.031854134,-0.20135723,0.16724539,0.3949153,0.3573902,0.31622773,0.15872549,-0.18402088,0.21130183,0.0745159,0.32514578,-0.02904354,-0.7415906,-0.13200149,-0.36800924,0.13209131,0.490917,0.12292702,0.3866693,-0.004598328,-0.20926504,0.118636355,0.17552121,-0.27345452,-1.0630789,0.3362732,0.21703339,0.84716886,0.49946627,-0.07071238,-0.029885769,0.69903046,-0.13027146,0.08725773,0.31804085,0.16721629,-0.4615881,0.60687125,-0.58968604,0.3373941,-0.057412803,-0.123050146,0.023132388,0.06171218,0.46093792,0.87880194,-0.23324712,0.041322898,-0.021152232,-0.4173387,0.30759546,-0.30914542,-0.024209337,-0.34451315,-0.3673508,0.65817696,0.36963013,0.36699864,-0.2233334,-0.05798379,-0.08652801,-0.167749,0.21712324,0.12150108,0.158452,-0.20514992,-0.590977,-0.29575792,0.5059966,0.008809797,0.14040777,0.0048842346,-0.37690184,0.1956795,-0.08018307,0.15596427,0.010511166,-0.70598274,0.16862737,-0.14408872,-0.41768694,0.43684608,0.008828585,0.21653572,0.22321442,-0.053591125,-0.05817614,0.22328965,0.12212875,0.7311769,0.028880758,-0.12650226,-0.47292438,0.16099174,0.1673021,-0.2852538,0.018964062,-0.103376806,0.2442394,-0.586016,0.47635362,-0.052335355,-0.25210455,0.10303084,-0.12191527,-0.13533534,0.6266113,-0.13919528,-0.12893218,0.02651206,-0.010793692,-0.3826611,-0.37477937,-0.25483784,0.0949179,-0.09469731,0.059269242,-0.29010454,0.012467989,-0.0577573,0.3785029,0.0338903,0.42041263,0.4118123,-0.110476986,-0.41037172,-0.11708941,0.19767281,0.33655673,-0.050022505,-0.1373084,-0.1660392,-0.7270743,-0.37452206,0.37885612,-0.021501148,0.2802759,0.18114655,-0.06643295,0.85242844,-0.03311772,1.1021186,-0.058347877,-0.47694638,0.20848179,0.71747875,-0.097944684,-0.1426249,-0.2359444,1.0275542,0.6425637,-0.10057817,0.0028258052,-0.21932538,0.022031387,0.07621869,-0.35829464,-0.07388829,-0.11869005,-0.6616196,-0.2235934,0.015085613,0.35276705,0.20193383,-0.09873704,0.079327516,0.30733186,0.06164523,0.29784372,-0.47160164,-0.4875632,0.46467286,0.13139616,-0.21732275,0.040685553,-0.4207546,0.4973213,-0.639126,0.002364644,-0.534311,0.16009833,-0.18093085,-0.23536423,0.18822765,-0.04226046,0.24692532,-0.47269008,-0.43204302,-0.20789799,0.32658345,0.3481513,0.20957018,0.49705476,-0.29946873,0.14536855,-0.071657196,0.58210087,0.8748182,-0.08582749,-0.05727332,0.29649287,-0.62888235,-0.6687876,0.24633329,-0.4448928,0.24147286,-0.008127292,-0.26020595,-0.42262462,0.31591755,0.13156855,0.014376053,0.047073517,-0.8364528,-0.1590592,0.20698777,-0.24912664,-0.12920368,-0.4410102,0.1510226,0.5831881,-0.2781104,-0.25143418,0.006317156,0.15509902,-0.10034788,-0.7899783,-0.08796493,-0.27896526,0.41747102,0.052859344,-0.23611464,-0.09380819,0.11599451,-0.54046714,0.29668722,-0.008575712,-0.30453867,0.0743683,-0.50503445,0.10760534,0.733995,-0.11913294,-0.09705211,-0.34821656,-0.5669104,-0.82504845,-0.45034045,0.16497764,0.072949424,0.15769067,-0.6623582,0.10235132,-0.4238135,0.08046969,-0.043180566,-0.3473502,0.4050543,0.21177652,0.5974864,-0.097980775,-0.8019193,0.28380817,0.06472143,-0.17180826,-0.5020984,0.47637865,-0.21121882,0.7819255,0.124931335,-0.020500403,0.2587604,-0.6462498,0.12297455,-0.19521162,-0.08395179,-0.6829993,0.018112894,982 +577,0.42879125,-0.177132,-0.5491368,-0.1756334,-0.41612896,0.25506592,-0.20720744,0.18784128,0.31755584,-0.4222545,-0.07453173,-0.26628885,-0.10962516,0.4766948,-0.16069922,-0.90634257,0.0008549946,0.18859985,-0.7123988,0.3547938,-0.5665569,0.40020567,0.13687585,0.39936706,-0.1148888,0.04608259,0.33255172,-0.115746655,-0.06180825,0.18420736,-0.28461283,0.10968555,-0.5163341,0.22801633,0.082507506,-0.21368702,0.056975212,-0.32306507,-0.18924887,-0.7673874,0.35112217,-0.70589113,0.48076895,0.09181881,-0.42429683,0.031029131,-0.004536765,0.33507854,-0.36582258,0.24047528,0.16967323,-0.28922638,-0.07712604,-0.19779019,-0.3750301,-0.44791242,-0.5551504,0.105744824,-0.55708164,-0.15283068,-0.16317323,0.24899459,-0.25137526,0.025880218,-0.2246186,0.2533713,-0.35181096,-0.19408242,0.424319,-0.13052072,0.067316614,-0.41753918,-0.09482862,-0.14001247,0.3281429,-0.010754517,-0.23146902,0.17519559,0.36398807,0.57669574,-0.009793659,-0.3302767,-0.27191016,-0.0028007796,0.21806607,0.46930096,-0.03697266,-0.20639233,-0.2450891,-0.0149691915,0.24020246,0.22060318,0.04726406,-0.41924405,-0.026686583,-0.14196539,-0.22986268,0.27672294,0.49437505,-0.43067402,-0.29707164,0.34725136,0.65602344,0.15357885,-0.105577864,0.22805007,-0.03929874,-0.7347073,-0.21310595,0.39474362,-0.15756781,0.42893448,-0.30240044,0.05548019,0.6490653,-0.14102277,-0.05919798,-0.12143193,-0.11272963,-0.030116934,-0.35227892,-0.10138713,0.21826339,-0.4247879,0.041714158,-0.23751597,0.9216633,0.19816507,-0.9356107,0.3697041,-0.54994315,0.21867196,-0.06603188,0.7236691,0.7929674,0.305497,0.15842521,0.94264615,-0.55651045,0.14936018,-0.12175054,-0.33820844,0.061411176,-0.124445714,-0.053847883,-0.5236486,0.19379473,-0.30097532,-0.02138718,0.096650675,0.34179306,-0.46966633,-0.10643594,0.034498077,0.6530836,-0.39689144,-0.08956415,0.8116931,0.8635291,0.97508246,0.1391052,1.5536562,0.4636328,-0.22276466,-0.015227245,-0.4223492,-0.6968999,0.15378809,0.26426846,0.3257727,0.43059868,0.054958306,0.018893285,0.41674748,-0.32451612,0.10710718,-0.24564032,0.064610206,0.05012006,-0.09064625,-0.27127066,-0.09594818,0.15406886,0.04525773,0.014307976,0.26987514,-0.12770574,0.39110562,0.10798519,1.1855613,-0.019390533,0.09909717,0.07167979,0.16835912,0.30296725,-0.111143366,0.023173472,0.29841802,0.44697472,-0.15652682,-0.6426867,0.074143834,-0.18062231,-0.44330093,-0.2928093,-0.23878013,0.054877043,-0.0039744503,-0.36670032,-0.13375506,0.040351503,-0.21691503,0.39088768,-2.1975532,-0.21394573,-0.17514575,0.30133864,-0.13403107,-0.308705,-0.29632118,-0.42647573,0.31861043,0.4120527,0.26377544,-0.6843295,0.38333383,0.30842274,-0.35723612,-0.113330945,-0.7056088,-0.12647179,-0.052782297,0.24117081,-0.054212652,-0.094305284,-0.11681003,0.19764563,0.6506586,-0.07474155,-0.1135854,0.19183062,0.5048894,0.15230213,0.55450267,0.125594,0.5729103,-0.20877253,-0.17880681,0.35618928,-0.47763327,0.3593271,0.29610762,0.14683504,0.3882494,-0.49844965,-0.71458066,-0.78639805,-0.48532838,1.1792582,-0.39228058,-0.4155052,0.3041392,0.019681424,-0.2856822,-0.018312931,0.3998244,-0.17136435,-0.14329608,-0.7619897,0.05610309,0.12429578,0.29884782,-0.08463287,-0.06441906,-0.19775571,0.88602835,-0.23213983,0.3783405,0.35614967,0.1237251,-0.2048848,-0.56635374,0.03675509,0.91398925,0.30040714,0.079736285,-0.18805742,-0.2819026,-0.17019153,-0.16346094,0.13018674,0.54970497,0.78444034,-0.023279494,-0.04649247,0.46933356,-0.15081657,0.072691426,-0.123122014,-0.29925635,-0.12642695,0.036223505,0.58580506,0.43012676,-0.18512727,0.43140024,-0.15304933,0.10848958,-0.1252613,-0.5765251,0.589596,1.0107844,-0.11086811,-0.35298043,0.49046716,0.4027364,-0.55496347,0.3081717,-0.55382437,-0.17084996,0.65374744,-0.07826735,-0.3747534,0.06228395,-0.32392773,0.08646943,-0.94327563,0.16964436,-0.19022825,-0.37068224,-0.6075058,-0.026348082,-3.3843312,0.21064381,-0.42130956,-0.017742392,-0.23080333,-0.042543795,0.22921468,-0.43106943,-0.59319484,0.01895173,0.0860978,0.38901582,-0.08949159,0.15406425,-0.39198,-0.14484715,-0.2291615,0.16214836,0.025673714,0.25245348,0.10787688,-0.27661592,0.18975098,-0.36998406,-0.43391725,-0.003205789,-0.55492157,-0.44715214,-0.31953403,-0.48698616,-0.32564119,0.6565925,-0.49740034,-0.12957731,-0.20157556,0.13405094,-0.100472756,0.3726761,0.18371531,0.3313757,0.13112393,-0.05865815,-0.3592679,-0.40890726,0.09947363,0.032040484,0.08000897,0.5172067,-0.065150455,0.17796263,0.40394565,0.7479142,-0.07085405,0.53138626,0.21394062,-0.07251786,0.27292427,-0.3640793,-0.14456289,-0.5882621,-0.3453283,-0.24056305,-0.47978804,-0.645575,-0.14858927,-0.31002516,-0.82671845,0.39835757,0.04994389,-0.055944223,-0.081652455,0.43815884,0.45488623,-0.03140049,0.12135533,-0.21411636,-0.3022847,-0.40000126,-0.58450836,-0.56364644,-0.5525008,0.14433488,1.3207953,-0.19315307,-0.07353949,-0.13884051,-0.27492037,-0.008518187,0.27515,0.1962129,0.2858685,0.29604298,-0.19851801,-0.58569354,0.39056945,0.05190335,-0.3029714,-0.6083183,0.07080998,0.677266,-0.69788927,0.7730428,0.25054938,0.1664896,0.17131786,-0.58926505,-0.3008876,0.18028425,-0.27871433,0.5231575,0.12302249,-0.4396545,0.53628665,0.3516623,-0.10190896,-0.8362092,0.15783775,-0.05249333,-0.38596085,0.1103056,0.3777456,-0.03359308,-0.014244592,-0.23746006,0.14948416,-0.44523355,0.12480913,0.3369429,0.06230518,0.10590722,-0.117198534,-0.32623324,-0.64540005,-0.081204705,-0.59496677,-0.11542972,0.044734124,0.0593444,0.13930851,0.04013071,0.0026475957,0.61423403,-0.30564436,0.20259807,0.0022093307,-0.08581502,0.17741121,0.4652388,0.19043647,-0.49087587,0.5153397,0.098304346,0.013535589,-0.20625627,0.21807253,0.4607145,0.34717122,0.41139787,-0.13345104,0.0011913946,0.2873342,0.7125899,0.08018148,0.3941047,0.18488964,-0.1907849,0.49225885,0.266259,0.16524975,-0.14691898,-0.13563918,0.0020514715,0.07617941,0.2520887,0.44329906,0.12153579,0.43898472,-0.05286775,-0.17307101,0.13706036,0.22182277,-0.042538386,-1.1348206,0.23617288,0.26504868,0.6350755,0.5220727,-0.031051252,0.06801726,0.415269,-0.3370029,0.08444152,0.19978221,-0.044009306,-0.41958067,0.5030776,-0.5886014,0.35108176,-0.39316693,-0.0076928013,0.0523413,0.26239967,0.38578084,0.77507937,-0.092526756,-0.0094622625,-0.057588868,-0.17059025,0.13526693,-0.2949622,0.0077398843,-0.4633586,-0.4318803,0.4621203,0.38684747,0.3815005,-0.4244595,-0.07948623,0.13163498,-0.0839112,0.070187666,-0.12255804,-0.012956555,0.067867495,-0.6113638,-0.25468335,0.62306243,-0.028695852,0.118958786,0.05730657,-0.32975864,0.27379182,-0.06607694,-0.03330481,-0.07563112,-0.7090341,0.01508603,-0.21076891,-0.47460437,0.18519807,-0.38235694,0.16332977,0.37415528,0.062345058,-0.49681512,0.29556847,0.0749478,0.85863477,0.14602827,-0.12698172,-0.38801834,0.24999537,0.22621265,-0.3704521,-0.024414381,-0.26685438,0.0703073,-0.580328,0.55556697,-0.14826672,-0.2854175,0.11383889,-0.11020521,-0.14464697,0.518153,-0.39474788,-0.19692436,0.17392002,-0.12479011,-0.20777453,-0.10156078,-0.40752468,0.3281341,0.0060990835,-0.077553436,0.10077883,-0.050906263,-0.15050162,0.4981627,0.16714562,0.19430886,0.25009927,-0.053805858,-0.5143066,0.10001323,-0.013885127,0.34057274,0.05150544,-0.23184313,-0.21316521,-0.41407305,-0.19869079,0.2826775,-0.20421934,0.16160922,0.12293941,-0.5662803,0.80542594,0.33883643,1.2145483,-0.0009107547,-0.27207214,0.031640716,0.5659607,0.22519334,0.04642139,-0.33622342,0.69285476,0.65567195,-0.16819887,-0.024845421,-0.31518587,-0.1241011,0.1833388,-0.24419358,-0.008506932,-0.013220592,-0.64642507,-0.31659064,0.096033216,0.16718046,0.1139851,-0.089681625,-0.07083182,0.056527387,0.03344438,0.38529927,-0.33465105,0.062825605,0.17376797,0.18841138,0.096128404,0.20751855,-0.2516921,0.5072692,-0.65951556,0.19897053,-0.3637893,0.0752709,-0.008128881,-0.15452473,0.19041075,0.0613232,0.22280441,-0.1806928,-0.20210125,-0.18917592,0.7809081,0.34017393,0.4245153,0.7765666,-0.21987942,0.11468899,0.20123528,0.5439178,1.4295871,-0.13144204,-0.04404695,0.18865061,-0.23557536,-0.5364254,0.2586868,-0.3516114,-0.04477316,-0.21107127,-0.43979383,-0.47536406,0.3519464,0.17342629,0.15262556,0.12214683,-0.4460612,-0.10524164,0.5525345,-0.3307704,-0.26324543,-0.31662172,0.41233826,0.7378184,-0.17114326,-0.37112132,0.019878937,0.2916875,-0.45628753,-0.5939893,0.00793285,-0.40475103,0.3297486,0.16698687,-0.2509287,-0.0012246573,0.37983012,-0.43330064,0.08731692,0.32187435,-0.24868083,0.16478446,-0.16244233,-0.20434393,0.956358,-0.1919312,0.06452122,-0.7942802,-0.55456775,-1.0134187,-0.18988214,0.5453996,0.1687756,0.09465225,-0.55944186,-0.26620224,-0.07600935,-0.113538966,0.15652272,-0.3970165,0.321287,0.12043779,0.45659703,-0.102428846,-0.8465162,0.05142965,0.1340288,-0.3385558,-0.4750344,0.48478928,-0.15299939,0.78045475,-0.0020302173,0.021328913,0.18745343,-0.5616634,0.39762232,-0.43160582,-0.25971636,-0.7610091,-0.014287195,985 +578,0.6055475,0.07436607,-0.686444,-0.20757923,-0.45231813,0.2263257,-0.33520073,0.07521135,0.2848251,-0.31323987,-0.14212711,0.00891013,0.08108105,0.26810136,-0.24140036,-0.75814867,-0.045172993,0.105579056,-0.59686536,0.5290866,-0.32984465,0.35393238,0.018930921,0.36359754,0.24247302,0.4733382,0.30463496,0.11894183,0.051957607,0.06843672,-0.15985057,0.06501978,-0.6373687,0.19863561,-0.2905281,-0.49763516,-0.119514585,-0.31356892,-0.35675505,-0.6876598,0.4657525,-0.83717763,0.53668046,0.019077608,-0.39963204,-0.06455445,0.22225669,0.1698607,-0.28913063,0.17949966,0.01971626,-0.38358143,0.06822152,-0.20724241,-0.5311325,-0.523621,-0.62193644,-0.19586979,-0.787831,0.008236455,-0.22856264,0.30397555,-0.22124788,0.026595797,-0.19284287,0.30160373,-0.39921075,0.16561916,0.37421212,-0.26988998,-0.011623911,-0.46273473,-0.09849109,-0.06904842,0.29537958,0.22805741,-0.2109795,0.32137713,0.19258627,0.55087906,0.30612317,-0.26014692,-0.38420886,-0.109490834,0.14353879,0.2936673,-0.022910254,0.044162642,-0.46316412,-0.2097357,0.40898767,0.5087698,0.011124496,-0.2641699,0.11423869,-0.29440573,-0.0021061492,0.43437475,0.5391882,-0.47619337,-0.21514939,0.37170747,0.5485427,0.07730513,-0.2798388,0.29888692,-0.052251656,-0.4643522,-0.22670223,0.24649382,-0.049619813,0.50193304,-0.02568254,0.15843499,0.5961785,-0.14217113,-0.101245485,-0.12622061,-0.08261429,-0.023874376,-0.33467942,0.06355909,0.2954275,-0.3863103,0.12772387,-0.12532519,0.50503594,0.102255665,-0.7046571,0.2937286,-0.61464405,0.12566201,0.08395589,0.6825394,0.6990139,0.5636334,0.05102859,1.0446604,-0.31989434,0.06119344,-0.2405453,-0.12849878,0.10921903,-0.1631476,0.17231478,-0.43872085,0.21984594,-0.09844262,-0.03220382,0.067247465,0.48454505,-0.30949757,-0.20259951,0.038753193,0.745262,-0.377088,-0.048293263,0.9278716,1.092173,0.93773466,-0.015403965,1.0830497,0.25282744,-0.1990544,-0.23982337,-0.102977924,-0.65778047,0.024184512,0.29368833,0.19361274,0.6355996,0.1620148,0.09765009,0.22136705,-0.3006758,-0.07925383,0.09018547,0.094321765,-0.024903292,0.020481063,-0.5221321,-0.18238914,0.12678494,0.13329217,0.2370273,0.20002429,-0.17804813,0.5100313,0.101679035,1.2131319,0.03227358,0.16356006,0.22910914,0.4508604,0.44914347,-0.20851637,-0.107318595,0.326303,0.20178518,-0.06485221,-0.5151272,0.07144047,-0.3260453,-0.44258323,-0.15686211,-0.48466486,-0.20306025,-0.102474384,-0.43304604,-0.14574257,-0.010039644,-0.48934454,0.4034432,-2.5416577,-0.175442,-0.117937885,0.36953932,-0.25715777,-0.19522026,-0.36631155,-0.36550972,0.27004513,0.37226728,0.18296501,-0.4198994,0.46959573,0.5247579,-0.45467848,0.022665229,-0.5714269,0.15085034,-0.16943255,0.31342342,-0.12908529,-0.08014495,-0.2571333,0.45540613,0.7419513,0.18299265,-0.009346298,0.294986,0.3790962,-0.16500606,0.50998026,0.012729688,0.51385134,-0.45210034,-0.1484231,0.46921307,-0.4980195,0.35181496,-0.08912299,0.17442732,0.44296715,-0.61068434,-0.83378184,-0.5533885,-0.17048611,1.109682,-0.5102972,-0.50308365,0.2982936,-0.50771743,-0.17656302,0.056583732,0.6358715,-0.08295314,0.21069884,-0.57574475,-0.07456018,-0.13929245,0.16919889,-0.07737366,0.0756806,-0.3932577,0.81397146,-0.21320884,0.5552836,0.20014034,0.25982472,0.03384052,-0.58610755,0.2414716,0.6270065,0.3895795,-0.033508588,-0.1362269,-0.16357136,-0.051107053,-0.12613206,0.14331888,0.6967415,0.6517619,-0.10215644,0.12569329,0.33866164,-0.06068768,0.039792933,-0.19746566,-0.2093173,-0.14469428,-0.007196154,0.3925217,0.7476206,-0.046181638,0.079170704,0.004396162,0.38130277,-0.17263433,-0.6224796,0.46453014,0.6668369,-0.12555143,-0.3414442,0.7103539,0.57748204,-0.43076524,0.4636834,-0.82057476,-0.37334704,0.68676436,-0.043796454,-0.45243213,0.09760066,-0.43721962,0.13079941,-0.8232922,-0.05916089,0.0940619,-0.29362437,-0.30065036,-0.28294286,-3.3522618,0.13354585,-0.1625571,-0.05104514,-0.15619496,-0.26568562,0.30153862,-0.48435968,-0.6993221,0.08354501,0.080060266,0.47683114,-0.32894215,0.21463369,-0.30599254,-0.29723573,-0.35542288,0.361526,0.16712871,0.34532148,-0.22658436,-0.31727317,-0.122958146,-0.25207925,-0.5801848,-0.14328942,-0.44571644,-0.26814705,-0.13868509,-0.38207123,-0.2640778,0.62756246,-0.32556462,-0.014299431,-0.3052104,0.05160173,-0.072618194,0.18468173,0.26006523,0.27751458,0.24875906,0.0476903,-0.1751992,-0.3112628,0.29367998,0.034429006,0.25348625,0.37385368,-0.21289156,0.18215285,0.3612948,0.54863006,-0.15802884,0.92482555,0.13138732,0.06465273,0.35670534,-0.16372694,-0.5187924,-0.7806244,-0.1766695,-0.20161572,-0.4237767,-0.5302214,-0.2444614,-0.53303665,-0.95791584,0.36287138,0.1383699,0.428798,-0.1831847,0.28467205,0.52243775,-0.23638514,0.010489017,0.020304991,-0.42752582,-0.51207954,-0.4875903,-0.54778117,-0.536724,0.11324764,1.0247228,-0.2678069,-0.11122246,0.0913765,-0.37159616,0.08110734,0.35137245,0.25556248,0.027671639,0.686122,0.12738486,-0.5063785,0.5131507,-0.24122879,-0.23239657,-0.62974864,0.052341998,0.570317,-0.701908,0.604723,0.33479777,0.17398487,-0.092564054,-0.56020665,-0.04875642,-0.047564507,-0.19896679,0.59615433,0.30709007,-0.69101185,0.4664692,-0.1901319,-0.05701373,-0.69320804,0.54687876,-0.16430554,-0.2901925,0.02621408,0.49885908,0.07763199,-0.13994677,-0.011688067,0.074369274,-0.4311683,0.27257422,0.46237296,-0.07528905,0.50412506,-0.09482499,-0.30020508,-0.8064126,-0.005315312,-0.6006614,-0.17890498,0.32817125,-0.034040205,0.046229754,0.08934294,0.015647369,0.49053693,-0.2917164,0.24329622,-0.19278936,-0.209892,0.5049879,0.42237732,0.49681225,-0.59560883,0.62996477,0.14064614,-0.1676409,0.12914956,0.1852813,0.36609298,-0.020002205,0.51830363,-0.008782889,0.046034086,0.014999713,0.44995525,0.20871006,0.1418504,0.19547378,-0.25120568,0.50305885,0.10963873,0.071948394,-0.2989399,-0.56592494,-0.055715345,-0.23618433,0.07285624,0.38142696,0.20586756,0.47826275,-0.06600119,0.032456215,0.26354936,0.107334696,-0.31561106,-1.0407717,0.1214562,0.30631867,0.6424724,0.59832436,0.08474612,-0.04442841,0.40526083,-0.21258986,0.05652799,0.49558148,0.087779775,-0.20374057,0.46072772,-0.5170248,0.6232087,-0.16200776,-0.15746143,0.24257691,0.39505857,0.5876584,0.9510814,-0.00072483503,0.024698367,0.05226911,-0.16554357,0.10698482,-0.1553903,-0.039334565,-0.5866786,-0.42320323,0.58666694,0.4263281,0.5276625,-0.33785206,-0.13264322,-0.024681283,-0.12327331,0.14300816,-0.05734047,-0.08431702,-0.20081748,-0.5699343,-0.34883386,0.42226484,-0.16986667,-0.06104087,0.26025277,-0.33787873,0.25721666,0.038271684,0.12046606,-0.0041379207,-0.7814098,-0.08574336,-0.37386888,-0.58734083,0.41675326,-0.2849041,0.3645142,0.28579292,-0.15011522,-0.32953623,0.18934958,-0.008315384,0.86425155,0.1347182,-0.14974646,-0.38350886,0.17023349,0.3358772,-0.44195598,0.09586502,-0.1729647,0.21456215,-0.46209168,0.5436035,-0.32612917,-0.16425742,-0.033689406,-0.19470285,-0.06012099,0.55500513,-0.1291807,-0.14284185,0.17138478,0.041887093,-0.36671552,-0.17595494,-0.44854075,0.18238571,-0.049556702,-0.1577526,0.055843957,-0.056126278,0.08782791,0.28493312,0.08691992,0.25075886,0.17266965,-0.22932342,-0.31978136,0.14345993,0.15083309,0.37545416,0.08360813,0.034672022,-0.04383998,-0.46506503,-0.39826378,0.4701245,-0.12432189,0.056345385,0.18091823,-0.073051475,0.854791,0.27857986,1.057541,0.15453847,-0.25724056,0.20079306,0.5310564,-0.020557728,-0.03512024,-0.23854852,0.9337086,0.5613973,-0.25337315,-0.18412177,-0.25506884,-0.102800325,0.013778567,-0.34922546,-0.09365247,-0.19383702,-0.6171833,-0.20674752,0.0013272102,0.20224759,0.20152664,-0.20968018,0.002206513,0.08647905,0.17363136,0.49603373,-0.4534534,-0.29824498,0.5775651,0.109729014,-0.0045688194,0.14220627,-0.28557512,0.49332193,-0.6518348,0.045569386,-0.60619843,0.052460197,-0.1977632,-0.3707598,0.18146567,-0.039482765,0.2851501,-0.4342164,-0.32211548,-0.2755207,0.5166729,0.20513238,0.34998924,0.63038003,-0.23111884,-0.016494486,0.017063107,0.52296907,1.1183461,-0.16705452,-0.053366918,0.3331852,-0.30849558,-0.6820563,0.14978568,-0.6566884,0.11143889,-0.09858525,-0.41506442,-0.29977512,0.24370877,0.003966791,-0.10955792,0.19337668,-0.7482971,-0.17973064,0.16939528,-0.18739246,-0.15475985,-0.2746734,0.2531139,0.681543,-0.16515872,-0.35726324,0.14417353,0.17537369,-0.19817106,-0.6664478,0.16224857,-0.15585652,0.2706341,-0.01031218,-0.45555696,-0.09757247,0.3306667,-0.5663751,0.08319696,0.22121854,-0.23555197,0.060524307,-0.3917606,-0.07194022,1.1202776,0.002224986,0.08220607,-0.42074904,-0.6233405,-1.1305509,-0.32296976,-0.084104754,0.14946114,0.07244225,-0.42628813,-0.043226086,-0.36857727,0.04008574,0.12675445,-0.46133274,0.42616585,0.21905184,0.6132301,-0.13764815,-0.8346073,0.18798266,0.1533129,-0.42573357,-0.41221985,0.67738277,-0.18116891,0.71269876,0.16150737,-0.01199744,0.079864964,-0.6932129,0.42111656,-0.2636867,0.0079891,-0.7447525,-0.08191271,988 +579,0.39737627,-0.06984296,-0.6319839,-0.07958142,0.0023854652,0.12158142,-0.25983196,0.38928095,0.24208392,-0.42327914,0.0033413384,-0.0019108994,-0.12149109,0.19874263,-0.14866503,-0.37821516,-0.089645915,0.22747609,-0.42039922,0.387405,-0.33820227,0.24586901,-0.18517281,0.3442903,0.05243272,0.1900864,0.13034163,0.014789795,-0.28609747,-0.08700101,0.15249753,0.5146982,-0.5194616,0.15842625,-0.11284961,-0.24426691,-0.038788237,-0.3620912,-0.37958315,-0.74780357,0.36650175,-0.8291021,0.5829238,0.0790741,-0.3082559,0.2849453,-0.0044740713,0.21786939,-0.23390846,-0.015168761,0.11810557,-0.15882821,-0.19128187,-0.2540765,-0.11678307,-0.2608223,-0.51028746,0.05105633,-0.5430235,-0.01292137,-0.22120534,0.23474313,-0.38983923,-0.047728006,-0.18178903,0.6078469,-0.42378524,-0.023959499,0.18428656,-0.023891946,0.28113025,-0.70404357,-0.18028879,-0.07711567,0.13543491,-0.21604298,-0.24845669,0.23684968,0.3455701,0.3782443,-0.24745396,-0.19724156,-0.42348942,-0.019444669,0.17344253,0.455465,-0.26843178,-0.5157731,-0.15729503,-0.026388738,0.32296735,0.11331714,0.116881594,-0.32459942,-0.06534692,0.19879189,-0.18176186,0.5092119,0.58353186,-0.078651205,-0.025050154,0.35182735,0.6155262,0.05441091,-0.038163226,0.020976437,-0.008257354,-0.4199086,-0.14031284,0.13632557,-0.13081887,0.4449139,-0.09720007,0.106990024,0.4797509,-0.37593243,-0.12739375,0.2620633,0.12381734,0.08527713,-0.20968412,-0.34243187,0.2511804,-0.5477327,-0.026801262,-0.21560717,0.6458621,0.07747246,-0.8185636,0.34276262,-0.4561431,0.09724275,-0.15686497,0.62620395,0.7088254,0.47562104,0.3290393,0.6916924,-0.536552,0.009294386,0.023066701,-0.4424684,0.18024829,-0.12818937,-0.2038927,-0.5306851,-0.18437532,0.11449548,-0.17535107,0.13267574,0.4967573,-0.5625185,-0.13499554,0.013624064,0.5100659,-0.31655547,-0.10427996,0.6979452,1.1536204,0.91382444,0.13473384,1.2323002,0.21859913,-0.16106133,0.17632096,-0.27738452,-0.9164805,0.4948259,0.30848154,-0.7160843,0.40335354,0.1105361,-0.16273448,0.34314507,-0.50552267,-0.21606787,-0.073678136,0.17127617,-0.06021068,-0.24382485,-0.42050052,-0.27534026,0.08623731,-0.028585915,0.14558421,0.33672282,-0.46692902,0.19690903,0.09340233,1.0955598,-0.10759168,0.07580776,0.07376566,0.3359535,0.1932636,-0.22309598,-0.21377985,0.48954466,0.42574188,0.16881596,-0.5178567,0.1063055,-0.30076155,-0.444028,-0.21344411,-0.29814386,0.16380103,0.049270388,-0.38444433,-0.098897755,-0.14648251,-0.51579374,0.32981387,-2.6052606,-0.13157818,-0.0909039,0.282088,-0.11945922,-0.27432278,-0.25166878,-0.45385715,0.31604558,0.3727674,0.47350508,-0.5884529,0.21288557,0.33079672,-0.541941,-0.16288936,-0.5691923,0.006821411,-0.16971596,0.27967173,0.059813797,-0.22801235,0.20153429,0.18174076,0.5069751,-0.16452505,0.027441999,0.40298897,0.34222123,0.05913335,0.2659683,0.071831085,0.48142514,-0.39386615,-0.33505026,0.4018043,-0.3968708,0.11915167,0.05713541,0.105981566,0.32439852,-0.43945155,-0.97234243,-0.56135714,-0.10720483,1.381961,-0.21979155,-0.47387537,0.20408556,-0.26425833,-0.44743973,0.018611947,0.42758483,-0.25518972,-0.04213237,-0.98549175,-0.040926505,-0.07733606,0.20975389,-0.055398047,0.1693273,-0.457957,0.48696852,-0.12559773,0.48800603,0.41943765,0.15323862,-0.54860556,-0.56861895,0.08934564,1.0878171,0.3563342,0.18420209,-0.2874395,-0.17622355,-0.18703543,0.088355765,0.2114941,0.48946384,0.8202172,0.008178307,0.15625408,0.30747563,0.048522312,0.12170317,-0.1721424,-0.3358334,-0.07888914,0.050366737,0.7070145,0.49477845,-0.052563675,0.38793808,-0.01599838,0.30599928,-0.11536308,-0.44025788,0.39618784,1.0502115,-0.11742823,-0.3945414,0.6119142,0.48324686,-0.40041837,0.6630605,-0.5738061,-0.32897896,0.3666008,-0.21175085,-0.5041871,0.22094245,-0.3627722,0.2754884,-0.9145544,0.37250385,-0.2815036,-0.5952452,-0.5143176,-0.06645387,-3.223515,0.11732979,-0.24188301,-0.23694155,-0.16440773,-0.13639703,0.38164207,-0.5857345,-0.5749301,0.10525168,0.14080687,0.6948854,-0.23332916,-0.03919179,-0.1570843,-0.33319554,-0.13809764,0.13808446,0.33250633,0.21032512,0.064303875,-0.45456848,0.03968825,-0.23424013,-0.3487877,-0.1292206,-0.46988073,-0.40180993,-0.1794935,-0.6744532,-0.34318927,0.5877613,-0.3422582,-0.06420877,-0.21331473,0.09996683,0.1599582,0.48265886,-0.011533166,0.17536023,0.11802528,-0.17436552,0.014180963,-0.26415786,0.3793754,0.00859423,0.26009846,0.525086,-0.23036668,0.16247618,0.6540059,0.69130355,-0.0074263983,1.0472487,0.57090145,-0.05183236,0.28463224,-0.33019394,-0.22725241,-0.5486763,-0.31509712,0.070314474,-0.5879609,-0.31018215,0.04260816,-0.31308603,-0.90168655,0.62489223,-0.3415294,0.18504612,-0.057734486,0.41376045,0.38380167,-0.09432272,-0.018271694,-0.16100469,-0.24032585,-0.39262396,-0.18050909,-0.6894477,-0.44661823,-0.008366482,0.98754066,-0.16341956,0.1314685,-0.04958834,-0.053367954,0.07462401,0.06364636,0.10780175,0.3400552,0.34875587,-0.0093641365,-0.5071475,0.202713,-0.22840984,-0.16083963,-0.691587,0.068959944,0.6632427,-0.6233379,0.5671697,0.47871202,0.09803035,-0.17335367,-0.7428193,-0.15082118,0.22725046,-0.1715738,0.66677314,0.4062861,-0.83578646,0.51005614,0.5091068,-0.3291292,-0.67057073,0.558686,0.11030524,0.04636352,-0.11228614,0.47356704,-0.2230402,0.02859412,-0.1673393,0.19008832,-0.24051104,0.25058183,0.17474641,-0.098722145,0.448194,-0.123889565,-0.19073625,-0.6734759,0.059736036,-0.5968852,-0.20790555,0.23540698,-0.0046794456,0.111509025,0.16898713,-0.016661981,0.60460645,-0.29753122,0.034097828,-0.12870267,-0.33812752,0.4253748,0.5486381,0.51436555,-0.2644166,0.5474013,-0.0068416554,-0.08038386,-0.2966906,-0.07969404,0.60004413,-0.041919257,0.3804265,0.100801595,-0.10956448,0.30969158,0.8395389,0.16527459,0.56352156,0.012470535,-0.14377125,0.05342715,0.095424466,0.24353197,-0.045522958,-0.4049671,-0.224983,-0.19985251,0.21521322,0.49357924,0.09609372,0.33485273,-0.25092062,-0.28041258,0.12554593,0.3057315,0.08926314,-1.1303312,0.48367134,0.2019658,0.63179624,0.369198,0.11850756,0.12696555,0.41884905,-0.29698083,0.09376874,0.38209042,0.044146042,-0.6381945,0.5420167,-0.83814824,0.451125,-0.06542015,-0.031457905,0.080934525,-0.15951385,0.4080837,0.87331456,-0.10626387,0.20812365,0.012440483,-0.2631553,0.2893386,-0.3680931,0.26587132,-0.48339668,-0.2690675,0.7462819,0.39345598,0.37216058,-0.1764295,-0.11626575,0.24984029,-0.23817644,0.1824362,0.01129627,0.09024093,-0.1277037,-0.65625703,-0.17051153,0.4134319,0.36270127,0.06341945,-0.017872317,-0.022583965,0.1742449,-0.08682399,-0.07745762,-0.1367313,-0.55231106,-0.087432265,-0.25386256,-0.46065775,0.4775097,-0.2794486,0.15975468,0.34827787,0.14314468,-0.51033086,0.19755496,0.219565,0.7268415,-0.02907546,-0.24591729,-0.30332989,0.33981827,0.25192842,-0.16244586,-0.102548644,-0.489924,0.14761427,-0.6382412,0.468455,-0.2909725,-0.41677842,0.07654818,-0.10353415,0.0044152653,0.560543,-0.24280477,-0.21385255,0.0096488,-0.0664305,-0.22229706,-0.32187918,-0.24291325,0.06713439,0.114312254,-0.10464753,-0.16415913,-0.09220083,-0.14310919,0.36889032,0.071561165,0.27662373,0.47089124,0.22028562,-0.42984346,0.023057107,0.14120288,0.5963393,0.11992866,-0.094966725,-0.53953254,-0.32924947,-0.23170824,0.18199314,-0.12466495,0.28599912,0.18299143,-0.26682228,0.8043371,0.006954891,1.1774261,-0.044107046,-0.44172302,-0.0890022,0.6341594,-0.08067741,-0.2756141,-0.40135297,1.0369812,0.66025364,-0.17688969,-0.17883602,-0.37847605,-0.05382795,0.10641485,-0.25754958,-0.36961725,-0.095215194,-0.6024796,-0.16179745,0.26590994,0.3576983,0.021552483,-0.012034403,0.1501696,0.23785874,0.08555697,0.16963466,-0.37734106,0.11081868,0.22881047,0.31883684,-0.024310082,0.15016262,-0.40549988,0.3784655,-0.57889855,-0.06504712,-0.19189094,0.10493789,0.0017965914,-0.48786908,0.2176839,0.06074549,0.30297533,-0.100473784,-0.1777697,-0.1229552,0.393792,0.037775278,0.14976327,0.6031876,-0.22285604,0.16427946,0.049631663,0.4329557,1.0047894,-0.12723373,-0.035078175,0.23893033,-0.2792189,-0.81512564,0.29136258,-0.46785426,0.29672214,-0.16336283,-0.3369592,-0.4983477,0.2546616,0.21972314,-0.059064362,-0.039331194,-0.51729304,-0.15324871,0.19389032,-0.38415122,-0.24136195,-0.28268525,0.030133145,0.59168905,-0.25918612,-0.34330043,-0.03276874,0.3691213,-0.21040222,-0.474075,0.02520827,-0.3244648,0.27426448,-0.003356278,-0.29011455,0.03814372,0.12902412,-0.3759888,0.32522577,0.24287881,-0.2677873,-0.00045657266,-0.18280932,0.04567355,0.54037863,-0.22572635,0.17725968,-0.46076584,-0.49489787,-1.0370022,-0.098882094,0.33397737,0.03679953,0.06818562,-0.8702011,0.0644919,-0.10384226,-0.11538733,-0.18167417,-0.38168246,0.37899408,0.0510841,0.4669327,-0.11740399,-0.82711935,0.030932155,0.17317878,-0.16079691,-0.52873695,0.54214686,0.0037183675,0.86443716,0.15996958,0.23290594,0.3565847,-0.58667654,-0.03294491,-0.2348348,-0.25740376,-0.60705817,-0.061279807,989 +580,0.53516424,-0.24805234,-0.46994945,-0.19152382,-0.22815712,-0.2505578,-0.119354345,0.4842076,0.17470898,-0.48797157,-0.13540825,-0.24765904,-0.07346316,0.39623612,-0.2611073,-0.8713537,0.07188882,0.023443414,-0.344472,0.5767328,-0.48212165,0.31729868,0.060269333,0.29763365,0.24758247,0.3210351,0.24200521,-0.24121498,-0.07891261,-0.29821476,0.0320674,0.12922238,-0.6046315,0.2851145,-0.021727579,-0.44023743,0.036254406,-0.5157595,-0.32449165,-0.6735067,0.08805769,-0.6512218,0.4302988,0.07952094,-0.23381433,0.04688188,0.21829946,0.40309685,-0.31713292,0.015226149,0.16461638,0.13228872,-0.18061234,0.052986894,-0.08241677,-0.40604204,-0.6139621,0.12775913,-0.34161457,-0.16287722,-0.23361446,0.20080437,-0.41824722,0.094599426,-0.10396697,0.64642704,-0.42254052,-0.110370435,0.38934636,-0.1372641,0.29112408,-0.45541844,-0.095760986,-0.22493836,0.0559327,-0.10405982,-0.25800458,0.3453136,0.29825714,0.47596353,0.14452264,-0.26691398,-0.22612095,-0.1504507,0.24691255,0.51400405,-0.26322776,-0.6492495,-0.2825887,0.055839427,0.1289324,0.13272662,0.1449742,-0.43449873,-0.02935925,0.20418896,-0.38128787,0.39896637,0.38302845,-0.39595574,-0.14812985,0.27418256,0.44114652,0.2532976,-0.026341524,0.046491057,0.120620124,-0.6421062,-0.2777544,0.14290729,-0.12454421,0.45976013,-0.14425775,0.16239575,0.7369262,-0.22977833,0.12728027,0.11000983,-0.050989896,-0.037019305,-0.42935362,-0.27891034,0.25095657,-0.5225293,0.16243987,-0.22017412,1.0543177,0.22595032,-0.7562815,0.3587176,-0.73643726,0.17356277,-0.2173877,0.5609135,0.59056896,0.39084932,0.2993596,0.66208166,-0.43421677,0.035885274,-0.17044891,-0.38831452,0.05281065,-0.10340673,-0.0374196,-0.4090025,0.06540213,0.008332781,0.013671922,-0.025945405,0.34870172,-0.5757717,-0.06279944,0.035419922,0.97429115,-0.31649718,-0.1354076,0.69456977,0.91346693,1.0221401,0.13792406,1.3092091,0.1785369,-0.14121422,0.260289,-0.1773869,-0.6331636,0.26123935,0.45500728,-0.19822195,0.22835088,-0.0053447485,-0.107901,0.4943471,-0.29153237,0.16417198,-0.24594927,0.39091533,0.033277206,-0.19304647,-0.38285843,-0.29206815,0.06247727,-0.13151436,0.02325273,0.3151712,-0.1169562,0.21456695,0.01828757,1.6352426,-0.14110295,0.21049829,0.16054973,0.4402053,0.12287283,-0.10375763,-0.02844452,0.010660999,0.3183312,0.13378632,-0.6586966,0.18485999,-0.20187803,-0.56057185,-0.1071356,-0.28784758,-0.1774605,-0.118857756,-0.49370524,-0.07462011,-0.09968463,-0.11474669,0.5740243,-2.4409442,-0.22738771,-0.09253515,0.19588408,-0.4022129,-0.4083598,-0.056959648,-0.5185022,0.48521972,0.2834511,0.6376999,-0.7354013,0.55829674,0.46974462,-0.36688995,-0.20784184,-0.66055065,-0.19311105,0.017517904,0.26252893,-0.0019264136,-0.11907421,-0.03720363,0.19134174,0.50286716,-0.06783376,0.08939605,0.19235267,0.29163265,0.048117924,0.7160844,0.030609906,0.4830398,-0.39520317,-0.15757297,0.30573124,-0.435922,0.35805982,0.046969645,0.08974495,0.2625498,-0.51284075,-1.0648906,-0.7242827,-0.47300795,1.0322882,-0.2280627,-0.30208492,0.32085535,-0.1366106,-0.05155158,-0.026854875,0.29523605,-0.029607031,0.13165888,-0.84714806,0.18003082,-0.16348752,0.13228668,0.030227762,-0.03635055,-0.3233234,0.72267866,-0.051063847,0.40278697,0.5380416,0.11271759,-0.3198529,-0.51675236,0.053826284,1.118719,0.45149565,0.21067853,-0.22340329,-0.27685997,-0.39080566,-0.16952059,0.08221833,0.62413025,0.8243655,-0.02406265,0.09610156,0.28024593,-0.009763094,0.04790028,-0.046379883,-0.4226374,-0.1218899,0.036981333,0.6885948,0.60257643,-0.20863427,0.38547844,-0.12763855,0.3284242,-0.11002219,-0.42075852,0.5693461,0.9059786,-0.20555337,-0.22285993,0.62673706,0.5069652,-0.1587795,0.4342511,-0.52428526,-0.31532878,0.5439283,-0.066251315,-0.37904906,0.17499825,-0.39666292,0.06545726,-1.049904,0.4014112,-0.52783155,-0.31614333,-0.50299686,-0.25198877,-3.886101,0.29820874,-0.29790068,-0.050631933,-0.2290161,-0.015812848,0.33056238,-0.604447,-0.71201974,0.12968285,0.0739082,0.6031392,-0.041507956,0.22190277,-0.20339414,-0.11672156,-0.19572915,0.15845807,0.11427301,0.28709793,0.12786914,-0.42601904,-0.15171441,-0.20565966,-0.47700745,0.2600948,-0.58536845,-0.6828564,-0.18208395,-0.69393694,-0.46917483,0.79922974,-0.44496045,0.044303488,-0.06629963,-0.0076134354,-0.2506582,0.42728826,0.08250664,0.12658438,-0.000114770875,-0.08233142,-0.14809899,-0.29898342,0.10786598,0.11795234,0.4877429,0.23223414,-0.12826638,0.28758356,0.6534458,0.73172855,0.03385547,0.69121605,0.38808417,-0.037462216,0.36843967,-0.36990643,-0.2632289,-0.55223596,-0.37029976,-0.12943831,-0.34604242,-0.4752221,0.06157014,-0.2978018,-0.8236183,0.6401963,0.040731613,-0.048182018,-0.1851878,-0.06059396,0.34858847,-0.12351036,-0.1268558,0.006369642,-0.08716101,-0.6866215,-0.31775126,-0.72819895,-0.47197682,0.15329476,1.1632932,-0.24127118,-0.044688024,-0.02827287,-0.21064937,-0.0185318,0.014701681,0.058296937,0.15534016,0.4066598,-0.01953039,-0.6381927,0.45598835,-0.18975008,-0.19309358,-0.41256285,0.18623509,0.7833437,-0.7304479,0.58456975,0.34715804,0.18753597,0.113612175,-0.49933285,-0.16958497,0.028733144,-0.114906274,0.45982864,0.12450703,-0.77500457,0.4923994,0.5672289,-0.27847448,-0.81897175,0.4803107,-0.011235748,-0.15346326,-0.11677853,0.34169683,0.29059634,0.077213585,-0.13437627,0.25375763,-0.5624219,0.24502884,0.26611638,-0.08731566,0.4036121,-0.14586295,-0.07606727,-0.75621635,-0.08197309,-0.49402514,-0.38635543,0.1897045,-0.036103725,-0.07467634,0.039522905,0.09793532,0.24548347,-0.18962927,0.12356557,-0.01632308,-0.20728756,0.4160257,0.5800453,0.4480649,-0.48539108,0.57438993,0.06268568,0.13365929,0.06532431,0.089660846,0.39124444,-0.036027875,0.36321783,0.0036586523,-0.11150151,0.16825019,0.8262452,0.07396036,0.4253924,0.11765287,-0.10260006,0.24246243,0.06239165,0.077794924,0.24902423,-0.55529195,-0.069846675,0.0710185,0.17793201,0.5670568,0.20774664,0.3248653,0.01645722,-0.23157856,0.03167977,0.19638307,-0.090029284,-1.3782578,0.5587419,0.15998928,0.634127,0.72925484,-0.026746402,0.17333435,0.55587083,-0.12002177,0.15686443,0.36788702,-0.07829316,-0.57487303,0.6109161,-0.607248,0.41091797,-0.14316368,0.11404074,-0.058214284,0.023414152,0.4984351,0.6686067,-0.05283105,0.089870796,-0.06764948,-0.32143715,0.04525695,-0.51416075,0.11351403,-0.40638548,-0.20984481,0.78806037,0.5430897,0.2885305,-0.1422588,-0.012107162,0.21637051,-0.14214422,0.13601255,-0.20523128,-0.01761662,0.020772701,-0.6604511,-0.3303352,0.7677335,-0.16872369,0.25015566,-0.08851648,-0.14831093,0.26393104,-0.16368437,-0.03801196,-0.07661728,-0.75327903,-0.011176164,-0.51531315,-0.43169323,0.1940546,-0.174453,0.12865229,0.026173158,0.09936674,-0.5112494,0.45034122,-0.034177013,0.7212635,-0.22946347,-0.23776482,-0.29779243,-0.020606007,0.2213115,-0.27994806,-0.2687874,-0.32629398,0.05767984,-0.60466003,0.35947868,0.032429792,-0.4022211,0.085887425,-0.11943783,-0.094461,0.47298545,-0.3102667,-0.1108519,0.05284617,-0.23744683,-0.09617982,-0.24772552,0.087804176,0.28862375,0.25028437,0.058407657,0.0060361284,-0.27151656,-0.058710694,0.45258904,-0.04048553,0.27903193,0.48078224,0.21156202,-0.47050685,-0.16545439,0.21923378,0.5264527,0.039826576,-0.018313868,-0.43044537,-0.20806967,-0.268939,0.2340224,-0.22833626,0.34458637,0.010162866,-0.5433548,0.84961224,0.1370767,1.2470989,0.056999106,-0.38665417,0.122809015,0.39993116,-0.051227633,0.039541595,-0.39837852,0.9862382,0.5442456,-0.2824998,-0.29488277,-0.5913604,-0.10054524,0.14166537,-0.28612632,-0.18795566,-0.054338526,-0.46208405,-0.31421757,0.16858844,0.31501645,0.11708462,-0.13548903,-0.0600016,0.16646771,0.02613914,0.4819526,-0.5741472,0.0061598844,0.24481942,0.38976648,0.07915175,0.18235445,-0.51732594,0.42158148,-0.561925,0.31324488,-0.36457062,0.16821781,-0.19583894,-0.22726645,0.160462,-0.0074657924,0.31761247,-0.335999,-0.3641801,-0.1630687,0.61420065,0.15316716,0.08379627,0.97117096,-0.295371,-0.00914153,-0.017102947,0.62869346,1.1253159,-0.24142034,-0.06129912,0.31608567,-0.18981835,-0.47620553,0.2628371,-0.3335895,0.027241366,-0.057489965,-0.38652548,-0.6791007,0.23246679,0.30807066,0.035610866,0.15183036,-0.80729884,-0.30391365,0.21901062,-0.25609818,-0.3888275,-0.3876073,0.07609319,0.750347,-0.38912386,-0.23793264,0.06881752,0.12762015,-0.05900675,-0.47648948,-0.12527296,-0.27178827,0.2896337,0.27244067,-0.20730948,-0.18945862,0.09602586,-0.38128528,0.04688349,0.19924355,-0.2638107,0.1620977,-0.098566525,-0.0944354,0.93458885,0.005079133,0.24916813,-0.56348747,-0.50299215,-0.84663373,-0.445464,0.6261078,0.086202435,-0.018048972,-0.508747,-0.09151103,0.095054574,-0.06790051,0.014297689,-0.50030273,0.45401448,0.055014987,0.48765782,0.029711558,-0.6438194,0.09584492,0.18413506,-0.019041548,-0.5711756,0.52668846,-0.22149861,0.94045115,0.07619996,-0.012450002,0.20867704,-0.5015121,-0.14785537,-0.37231034,-0.23665237,-0.69989926,0.18510737,990 +581,0.43395612,0.07914376,-0.69459194,-0.22184943,-0.356422,0.08178975,-0.22408906,0.53594184,0.05933177,-0.47812518,-0.21615852,-0.23668262,-0.008727095,0.2414905,-0.2859335,-0.627116,0.18560958,0.13001391,-0.46221733,0.26129603,-0.4707549,0.54509985,0.18530956,0.25630188,0.07189907,0.08687579,0.16737577,-0.117459945,-0.07701053,-0.5387954,-0.035854362,0.0762371,-0.7556935,0.1491298,-0.410656,-0.5390368,0.25850576,-0.4813591,-0.25306895,-0.79122764,0.15315807,-0.7534703,0.66999733,-0.043068312,-0.42149606,0.17583588,0.21944854,0.37125507,-0.02949153,0.1786463,0.15953921,-0.21042076,-0.10878251,-0.057454415,-0.33833975,-0.59799296,-0.63167053,0.18588018,-0.68113816,-0.24821922,-0.17518108,0.14176211,-0.47862554,0.047461953,0.009818273,0.47892672,-0.39615163,-0.14633141,0.2723139,-0.17949417,0.41952705,-0.6135484,0.017395353,-0.15023734,0.2972711,-0.25144902,-0.15459062,0.18652216,0.2611957,0.6079545,0.13051353,-0.3529794,-0.1332181,-0.13680588,-0.06196999,0.50925815,-0.18498985,-0.32204267,-0.2601285,-0.053605467,0.40887636,0.28601572,0.078921996,0.011821947,-0.12202071,0.0859022,-0.31331584,0.5593737,0.5473643,-0.55713505,-0.00814917,0.33325368,0.47748464,0.21832426,-0.045839585,0.19540851,0.005401694,-0.6281935,-0.25457022,0.06219739,-0.23902157,0.44323573,-0.29093376,0.32728752,0.67486745,-0.20434077,0.06723196,0.36760828,-0.042402823,0.04972812,-0.088871464,-0.29158112,0.3675666,-0.65639156,0.06260854,-0.26584247,0.8662609,0.21859524,-0.5980342,0.30443838,-0.63107693,0.15047625,-0.11102907,0.63978034,0.6691262,0.5955035,0.16878448,0.7892745,-0.43251052,0.016576396,-0.035340257,-0.22786808,0.12733185,-0.13564192,-0.102414444,-0.28855425,0.0464893,-0.111583844,0.10482783,0.07935714,0.40151986,-0.6429772,-0.07790406,0.14411055,1.0118656,-0.25833794,-0.08765221,0.76935875,0.9045598,0.96531457,0.024399344,1.120934,0.09628658,-0.1420901,-0.07664586,0.14028491,-0.55179465,0.38567662,0.396321,0.116821766,0.30321184,-0.0360342,0.033665825,0.33598232,-0.43090057,-0.16864443,-0.13993376,0.2124592,-0.0528112,-0.17731752,-0.48086914,-0.15860096,-0.0360362,0.01781579,0.17035298,0.26372787,-0.06083704,0.42055467,0.0030184984,1.0794591,-0.12466632,0.14332081,0.03053315,0.4399231,0.2604749,0.04380318,-0.053200595,0.18373744,0.21574332,0.22894137,-0.6125693,0.02308472,-0.30348793,-0.40053743,-0.2584191,-0.29185122,-0.24813318,-0.1858573,-0.5530384,-0.18275312,-0.14372052,-0.26537186,0.4525198,-2.3868365,-0.32391864,-0.1437918,0.3514026,-0.22102274,-0.3725355,-0.14276603,-0.4884879,0.57626504,0.31262055,0.565322,-0.68931484,0.4837775,0.5021621,-0.2580929,-0.16329002,-0.62409365,-0.20155679,-0.01679633,0.11375988,0.11848096,-0.38323376,-0.18378222,0.14132933,0.54233056,0.0159251,0.10716847,0.008164908,0.31254464,-0.1356001,0.47435632,-0.0058189207,0.55716413,-0.31483346,-0.14516595,0.41355133,-0.36186272,0.11839117,-0.25528148,0.11204624,0.37085143,-0.61922437,-0.9354022,-0.6884846,-0.38649216,1.2646139,0.036840748,-0.4948233,0.26589695,-0.07049971,-0.2012618,0.09585665,0.36416197,-0.07272989,0.21491551,-0.63729316,-0.067514226,-0.124656424,0.1808832,-0.07216019,0.1292867,-0.53818244,0.6045538,-0.10473131,0.30582276,0.2898269,0.26846412,-0.26867226,-0.5514148,-0.028073302,1.1289943,0.7101515,0.1588505,-0.37125382,-0.055967946,-0.5644415,-0.050913103,-0.075330555,0.61322594,1.009718,-0.12727994,0.12778372,0.35051963,-0.044073123,0.17973034,-0.05033738,-0.5653266,-0.13877764,0.010227501,0.5745138,0.4578309,0.013027127,0.5011377,-0.035093337,0.45148635,-0.272645,-0.55736315,0.4915131,0.7514643,-0.44609421,-0.316804,0.65295094,0.2925103,-0.23608346,0.58177567,-0.64645493,-0.63863546,0.42177382,-0.026653955,-0.57791865,0.19797246,-0.36604524,0.23198628,-1.1317035,0.3556381,-0.39082116,-0.53633374,-0.36063877,-0.2853844,-3.3873436,0.20156904,-0.17170143,0.15179195,-0.24754238,-0.08569892,0.34853488,-0.38377175,-0.761065,-0.03183158,0.086536594,0.7975175,-0.0888992,0.16774593,-0.27805862,-0.50729877,-0.28815243,0.36639664,0.29603735,0.16805312,-0.06855537,-0.31594467,-0.04609256,-0.29352596,-0.47243792,0.059035752,-0.6715693,-0.61960155,-0.31684667,-0.5793945,-0.35592058,0.7422809,-0.3568612,0.045032736,-0.27693018,0.14761446,0.07549618,0.1755452,0.12336405,0.1435428,0.029025713,-0.13851148,0.08513603,-0.37918684,0.27662566,0.14543779,0.34859374,0.23070478,0.00044141497,0.18402995,0.57917595,0.6112656,-0.15382078,0.87284786,0.2512595,-0.013585674,0.4400722,-0.29875436,-0.52652574,-0.44792816,-0.30779833,-0.030075928,-0.44370228,-0.32717034,0.12696777,-0.34217533,-0.84605414,0.587648,0.068081714,-0.00967899,-0.20144033,0.46798882,0.54670835,-0.16694136,-0.14757523,0.0716788,-0.07748925,-0.5109574,-0.16276087,-0.7739948,-0.5483925,-0.1861025,1.1609153,-0.21986988,0.080615565,0.085410155,0.21264254,0.21185027,0.010787046,0.11294986,-0.06737799,0.5330699,-0.0038180265,-0.76902753,0.39264336,-0.20030198,-0.1905158,-0.58025074,0.1423956,0.766095,-0.70592105,0.3191199,0.7424901,0.07352984,-0.13344982,-0.53128445,0.13819928,0.0013095279,-0.34950548,0.43644708,0.055143587,-0.7417348,0.5821882,0.25891814,-0.30320188,-0.7294261,0.6596915,-0.021851847,-0.23609832,0.07358261,0.47310543,0.25634265,-0.05919981,-0.0546523,0.26361004,-0.51176316,0.17270672,0.2877365,-0.047396116,0.77596337,-0.2119884,-0.3485399,-0.72928673,-0.12180209,-0.6303493,-0.35531646,0.21277942,-0.05903726,-0.08947091,0.3048298,0.15101874,0.5368777,-0.2830602,0.12498194,-0.32882208,-0.34471336,0.57851034,0.5468806,0.54108226,-0.45975408,0.65235275,0.065336466,-0.016951997,0.11915689,0.03439234,0.52603763,-0.20868865,0.40374225,0.20152111,0.0053443653,0.05861234,0.7095346,0.12353661,0.3833365,0.12069046,0.02044685,0.1571016,0.13416775,0.06569259,0.040531497,-0.49813518,-0.112390526,-0.17571394,-0.02864795,0.54964393,0.14316097,0.25471464,0.027667029,-0.1683481,-0.046064854,-0.0047820085,-0.18665807,-1.1238654,0.48539957,0.27434838,0.7744699,0.34060255,0.23877041,0.08175985,0.49098536,-0.25080797,0.19282852,0.4208601,0.28595617,-0.34770307,0.6195065,-0.6771498,0.52827114,-0.053031,0.0001104985,0.042430345,-0.116347805,0.6579728,0.86971515,-0.13633718,0.09989004,-0.07661758,-0.28830633,0.19621284,-0.5082142,-0.20142163,-0.40040588,-0.030387912,0.7967022,0.35465363,0.15158017,-0.24545076,-0.026980365,0.11293528,-0.1650969,0.26426822,-0.107903294,0.048974577,-0.2657577,-0.4388767,-0.21154276,0.53532755,0.16464524,0.17894614,0.0803077,-0.10917771,0.21694772,-0.108064875,0.20074283,-0.104979925,-0.6037897,-0.019244624,-0.6803873,-0.4038034,0.28601214,-0.30262595,0.2295382,0.13781989,0.10514689,-0.24742696,0.29768577,-0.061068747,0.47175097,-0.09652849,-0.32091832,-0.22888705,0.22658846,0.21687813,-0.55264634,-0.25224778,-0.17322867,0.20513286,-0.49516034,0.34476784,-0.3194628,-0.36204386,0.110590756,-0.17321506,-0.17133543,0.44507584,-0.17181359,-0.0016642745,0.31849837,-0.16906847,-0.105823584,-0.20176263,-0.16258523,0.12946458,0.16123155,-0.16336107,-0.15692125,-0.2547936,-0.02652162,0.39298883,-0.15111338,0.34940976,0.30700594,0.082653746,-0.4954968,-0.16178472,0.10120629,0.56151503,-0.038084,-0.035081156,-0.35059384,-0.3876775,-0.2414136,0.15789866,-0.1270402,0.21471511,0.13135622,-0.21322183,0.89984226,0.2264014,1.2876663,0.00045850448,-0.41515806,0.0434891,0.5393954,-0.07640074,-0.08700182,-0.41751957,1.1746616,0.3702992,-0.2767991,-0.1785877,-0.36166498,0.04276674,0.17798771,-0.20069548,-0.3681531,-0.21637197,-0.5318465,-0.32582092,0.3782077,0.46134853,0.13037702,-0.15420905,0.05061922,0.2888546,-0.038029917,0.4203772,-0.62436384,-0.21219638,0.324131,0.23333676,-0.06765705,0.121008776,-0.48689047,0.29838854,-0.6971591,-0.032376196,-0.3623708,0.1834307,-0.128449,-0.51559937,0.33176824,0.09597795,0.34605926,-0.24888137,-0.42375627,-0.0949433,0.28278825,0.17803153,0.15699218,0.76067704,-0.32781363,-0.063510664,-0.023449685,0.5682988,1.2779897,-0.19672163,-0.026186073,0.33623543,-0.24996923,-0.5973192,0.2529158,-0.6900193,0.11212938,-0.11832229,-0.4269788,-0.49816146,0.23442318,0.10581766,0.034179177,0.1883334,-0.7902312,-0.09501732,0.18570757,-0.23178056,-0.23490581,-0.32601422,0.24292101,0.76924133,-0.21529426,-0.11349203,0.034606006,0.49492756,-0.20184848,-0.71823317,0.09396416,-0.061171144,0.33010417,0.06924768,-0.3238062,0.10471482,0.09672703,-0.5235451,0.14358275,0.331631,-0.30889538,0.059105407,-0.27244446,0.26077995,0.6920128,-0.03930685,0.13926479,-0.32197925,-0.5024935,-0.8056301,-0.060072947,0.4786425,0.28903428,-0.008180733,-0.5724655,-0.06411223,-0.29865503,-0.18398584,-0.08562094,-0.3104275,0.3110511,0.14758173,0.5313948,-0.15377672,-0.807057,0.15689747,0.029609231,-0.20727964,-0.60013807,0.5371298,-0.13916269,0.75939053,0.2717189,0.021192163,0.2512996,-0.5697509,0.12501898,-0.15763608,0.013167462,-0.74314743,0.11416189,995 +582,0.42515898,-0.1567503,-0.34909266,-0.2250879,-0.054117795,0.058973845,-0.059497602,0.36686566,0.17119867,-0.554357,-0.20148963,-0.24076986,0.12554793,0.29781628,-0.34085575,-0.91402787,-0.106521316,0.12642623,-0.2670089,0.5891684,-0.42302614,0.35866314,0.029808393,0.10335498,0.0004410652,0.29012865,0.29976812,-0.30298856,-0.39072257,-0.07887215,-0.12288023,0.44212216,-0.52751744,0.17434885,-0.016205018,-0.22621974,0.094745584,-0.42764282,-0.41924095,-0.76436603,0.29557276,-0.8917357,0.41585782,0.17910911,-0.004049503,0.27813154,0.0029857617,0.019714935,-0.26425773,0.1706561,0.08152076,-0.082242176,-0.11376819,-0.15365694,-0.4056556,-0.5547032,-0.66122437,0.13404188,-0.33255386,-0.34934172,-0.17416325,0.11997131,-0.4088671,-0.14838132,-0.11564095,0.4035033,-0.49387836,-0.048604615,0.24721281,-0.085114166,0.19773293,-0.6029084,-0.32915622,-0.1994536,0.16789037,-0.4954631,-0.052993186,0.19805796,0.42802766,0.46204054,0.051296372,-0.18195003,-0.28926304,0.022501977,0.32826847,0.5818357,-0.34564817,-0.83927834,-0.10176949,0.13253905,0.15833338,0.09626949,0.12653027,-0.35971716,-0.051364206,0.15603939,-0.34451205,0.42822626,0.49673426,-0.3801081,-0.26491216,0.2805373,0.35973945,-0.027046273,-0.096986406,0.0015103221,-0.06725198,-0.5023276,-0.17226723,0.45792153,-0.15810555,0.6174522,-0.21246631,0.18958634,0.634263,-0.47321162,0.165807,-0.082147315,-0.04457069,-0.09310529,-0.17787634,-0.20122069,0.18839614,-0.37203312,0.21724503,-0.20511185,1.0184655,0.35336787,-0.8652357,0.39439386,-0.56766456,0.2224442,-0.13450098,0.6241736,0.29968202,0.24372926,0.3870064,0.55333036,-0.519606,0.07229281,-0.05176809,-0.48719832,-0.23264448,-0.046968963,-0.10459741,-0.3319112,0.08069785,-0.010527945,-0.06415927,-0.14353393,0.5069579,-0.4931486,0.016997214,-0.037964728,0.77288777,-0.4171054,-0.13954781,0.7001991,0.9002753,0.91774184,0.10647451,1.3293178,0.45062155,-0.209696,0.10002101,-0.5210176,-0.70637006,0.29863426,0.4960899,-0.56761956,0.24515916,0.06877648,-0.07788043,0.08006798,-0.32847497,0.059079316,-0.50442314,0.1568062,0.110335544,-0.020696832,-0.45024192,-0.17065045,-0.050395012,-0.050228532,0.22174254,0.05995495,-0.20605828,0.12004778,0.11754273,1.4299653,-0.13373497,0.007523491,0.05630559,0.42158747,0.15578038,0.22108838,0.112379804,0.3831116,0.4373389,0.12740138,-0.6825845,-0.08927751,-0.22031267,-0.5787914,-0.15399227,-0.26253635,0.068001054,0.06452692,-0.38824257,-0.13582337,0.006026733,-0.39757445,0.5387587,-2.2428288,-0.16290396,-0.17759845,0.27180105,-0.24605489,-0.39771712,-0.16282889,-0.39808157,0.326112,0.2899515,0.44714525,-0.81315386,0.32989424,0.40761292,-0.27565092,-0.10010863,-0.7247388,-0.022648709,-0.16821066,0.3428079,0.00041090065,0.12909485,0.16585721,-0.06913931,0.4923793,-0.023095636,0.023674872,0.25644737,0.42718756,0.2639863,0.41053817,0.15447924,0.520966,-0.17067896,-0.14936854,0.33920956,-0.31749916,0.18139113,0.07435271,0.10765167,0.11459768,-0.5344622,-0.91599977,-0.7483373,-0.6518646,1.3458651,-0.225768,-0.31933016,0.226346,0.1642336,-0.17863856,-0.22632265,0.27333724,-0.3335852,-0.067911774,-0.77558243,0.099140376,0.045500323,0.17325518,0.07499992,0.20430909,-0.2960227,0.67893577,-0.27928331,0.26250184,0.35523617,0.15802477,-0.1879912,-0.58002484,-0.06975376,1.1683567,0.22158106,0.17353612,-0.10093866,-0.36883456,-0.1078988,-0.073114015,0.06645454,0.48116794,0.7854688,-0.024456583,-0.05720857,0.44169456,0.07204758,0.15357126,-0.23200567,-0.41796604,-0.12779877,-0.05925228,0.59584695,0.14479941,-0.36829087,0.5258916,-0.22433384,0.39675742,-0.0046604024,-0.27341557,0.42197964,1.354351,-0.20425265,-0.24648967,0.5949583,0.48117527,-0.4533157,0.30481544,-0.6831928,-0.1869317,0.44317305,-0.25387695,-0.35080808,0.38564065,-0.32557422,0.12141358,-0.9815273,0.50277746,-0.26037934,-0.33566368,-0.39358842,-0.08100414,-3.7743764,0.14554,-0.43310654,-0.26709443,0.011624419,-0.07933734,0.09135933,-0.54137903,-0.5441208,0.21145883,0.07869117,0.3526201,0.020169573,0.24225599,-0.1466658,-0.023798106,-0.3146801,0.15920965,0.018860973,0.3477551,-0.07678286,-0.475899,0.16543773,-0.18276533,-0.3251781,0.27834398,-0.6378377,-0.5760817,0.0340493,-0.6952307,-0.5125148,0.6222215,-0.46736974,-0.028553527,-0.20961991,0.081377655,-0.3714934,0.43954885,-0.01703775,0.28813714,-0.13587011,-0.05277011,0.013265165,-0.115642466,0.566069,0.07724655,0.2584539,0.29675525,-0.2119568,0.10897167,0.5322495,0.45485628,0.24855591,0.7086792,0.5950167,-0.0807501,0.2385722,-0.3141851,-0.088672474,-0.7033818,-0.51408863,-0.0018238104,-0.38505876,-0.5944568,-0.150677,-0.31186527,-0.758849,0.54373795,-0.2131272,0.10917016,-0.022780318,0.26591504,0.5583425,0.09722642,0.17919217,0.006472927,-0.14851148,-0.44359568,-0.25458205,-0.69626415,-0.2717489,0.11156556,0.8137299,-0.107483074,-0.2214686,-0.12999783,-0.266854,-0.06804986,0.037320115,-0.02382503,0.25273806,0.4719165,-0.12806782,-0.86275446,0.39104506,-0.052471254,-0.22846518,-0.38909,0.16441195,0.7468723,-0.87109345,0.661525,0.3644288,0.0912296,0.040267807,-0.39285976,-0.46157366,-0.028652139,-0.27133214,0.30181974,0.092368916,-0.6410914,0.49673337,0.4933663,-0.22357567,-0.6965185,0.54723793,0.16951157,-0.21983245,0.13407055,0.4179518,0.11156077,-0.081308894,-0.290125,0.29649562,-0.46341902,0.36541444,0.20157552,-0.017131846,0.24303426,-0.0018571776,-0.2056396,-0.75635517,0.06954288,-0.4704108,-0.3994018,0.14520839,0.14745656,-0.08500433,0.16457668,-0.08671255,0.5029181,-0.31951746,0.023546187,0.17220101,-0.17321569,0.14351362,0.33741426,0.30737692,-0.37169155,0.5524363,-0.102754965,-0.04257036,-0.08783904,0.15080395,0.4648876,0.24566022,0.17488848,0.21918161,-0.192165,0.47860926,0.7169623,0.24219392,0.6337058,0.1484033,-0.10504316,0.5346205,0.15350547,0.09665064,-0.07910558,-0.3443603,-0.18530783,0.1499004,0.07036235,0.44442436,0.09032362,0.44788486,-0.22244233,-0.3958248,-0.082134046,0.28580585,0.037581682,-1.0276212,0.26626205,0.022502385,0.6460875,0.6116126,-0.16675392,0.16733009,0.4345819,-0.279896,0.107178226,0.39468926,-0.103265114,-0.643852,0.47449574,-0.40891713,0.2679407,-0.22289136,0.16289029,-0.10414056,0.19069569,0.16890056,0.95413023,-0.075236164,-0.023499493,-0.10565661,-0.1635091,0.14606068,-0.52212274,0.28609383,-0.45409408,-0.18900433,0.57431877,0.4522413,0.3300121,-0.07505496,0.0069547687,0.09730645,-0.17975691,0.27095687,0.05281386,0.095070824,0.07361173,-0.809665,-0.3444142,0.80976415,0.11074098,-0.022765096,0.022084204,-0.32175776,0.40223557,-0.12400421,-0.114514105,-0.0026088862,-0.59457624,-0.110241905,-0.17087437,-0.4453333,0.1543118,-0.17958252,0.3048182,0.29049122,-0.09243755,-0.440321,0.011761537,0.394578,0.5514447,-0.12725395,-0.38248575,-0.49787518,0.04673756,0.3259571,-0.1292949,0.023353457,-0.08359191,-0.049429115,-0.54685366,0.56343746,-0.02192213,-0.3381721,0.0032194233,-0.18850829,-0.18931256,0.5558496,-0.1356484,-0.010489435,0.014374178,-0.118827336,-0.26981562,-0.05962408,-0.08965523,0.17713341,0.31374773,-0.22262059,-0.048935,-0.2379993,-0.1187489,0.4213289,0.014657135,0.3075449,0.4231786,0.34337524,-0.39104223,-0.28494665,0.14233747,0.4390051,0.1035574,-0.10082586,-0.15670505,-0.37272498,-0.15893814,-0.22903347,-0.25677535,0.19570774,0.052849777,-0.685723,0.75720143,0.11104759,1.3191789,-0.020967295,-0.24831173,-0.21295816,0.45226353,0.09204389,0.12065169,-0.2838075,1.108079,0.55237603,-0.0065874136,-0.18426694,-0.4901059,-0.1385716,0.0945776,-0.12653616,-0.26366588,0.11317647,-0.5588113,-0.5992769,0.31682867,0.2470265,0.026380774,0.16539901,0.16483101,0.13957126,0.06818858,0.6125125,-0.5641576,-0.06415016,0.051246226,0.25087345,0.20559905,0.20293346,-0.4132315,0.31478527,-0.40004683,0.22134934,-0.15350524,0.17543444,-0.065917626,-0.16399327,0.22122517,-0.042968955,0.5148567,-0.3347584,-0.467063,-0.14807048,0.61631656,-0.12783375,0.09066464,0.63500684,-0.21215703,0.20086119,0.056588013,0.7563592,1.387,-0.01988964,0.06758605,0.34672868,-0.32020304,-0.6727656,0.37511784,-0.100875184,0.11037568,-0.10903808,-0.19036879,-0.5609559,0.23153001,0.22635548,-0.039094087,0.19243965,-0.35245174,-0.32319066,0.3898431,-0.39076173,-0.28814816,-0.28791195,0.33431652,0.8257961,-0.5873317,-0.22381867,0.036069777,0.1098945,-0.31999376,-0.54004204,-0.17710637,-0.32381195,0.4821417,0.20242819,-0.12549534,-0.12851194,-0.013010764,-0.2217628,0.0816875,0.3213765,-0.40942815,0.12595853,-0.051914968,-0.19758508,0.81035763,-0.19601056,-0.0657223,-0.66879964,-0.41760108,-0.9711539,-0.39764327,0.71437305,0.115133695,-0.044907805,-0.58543676,0.062252674,0.19197583,-0.24359182,0.038847033,-0.48731497,0.4648728,0.09306416,0.5007306,-0.08558107,-0.6982091,0.14496213,0.1299846,-0.030846275,-0.6092954,0.535517,-0.081090204,0.80279285,0.041851915,0.008913485,0.33179423,-0.3536447,-0.12825094,-0.21181448,-0.2872031,-0.73683524,0.11966784,3 +583,0.41878605,-0.12981805,-0.6071095,0.09124798,0.029166736,0.33944348,-0.37968343,0.10310221,0.35892323,-0.5084502,-0.026677363,0.10665892,-0.053024657,0.033289354,-0.09889098,-0.44219765,-0.039899033,0.20894095,-0.62727535,0.57934415,-0.2373465,0.4859683,0.06604207,0.14908883,0.08439495,0.18039273,0.30975562,0.14966422,-0.14278424,-0.35909182,0.15887128,-0.35290498,-0.8290453,0.32688457,-0.22729972,-0.42469615,-0.16880168,-0.5442252,-0.50509936,-0.76654494,0.5563178,-0.8888994,0.75525975,-0.0071246577,-0.17581438,0.21879974,0.17031734,0.2241604,0.043705747,-0.07231857,0.2418425,-0.1595393,-0.11126823,-0.29833087,0.01859206,-0.39796337,-0.593654,0.13638812,-0.4573609,0.15512046,-0.22699587,0.30879116,-0.4542252,0.21109523,-0.33780172,0.24317218,-0.089112505,0.053297784,0.20796475,-0.25638175,0.02043337,-0.5335783,-0.11817375,-0.01814886,0.16426738,0.08273627,0.019449564,0.40263456,0.04655882,0.5632268,0.09190375,-0.41517183,-0.16734919,-0.032242272,0.18984453,0.5892103,-0.18003069,-0.12044271,-0.2957338,-0.23393387,0.5675377,0.008631587,0.21594231,-0.11962282,0.052908596,-0.08951616,-0.19680537,0.533889,0.80498165,-0.28230974,-0.009866785,0.43707994,0.6068033,0.032741245,-0.012203088,0.19891573,-0.15966712,-0.31146744,-0.23199321,0.10634521,-0.18707886,0.4875881,-0.2782157,0.28809375,0.35563204,-0.23703986,-0.026398364,0.33855024,0.051969133,0.117656365,-0.23322996,-0.17782077,0.48030412,-0.6144114,0.034195106,-0.6305873,0.49636582,0.010658504,-0.88054216,0.5102566,-0.43810552,0.27109239,0.33028302,0.6896317,0.74406314,0.6464878,0.1529042,1.1648034,-0.5124628,-0.14991972,-0.0778223,-0.22180207,0.07506069,-0.3095885,0.09290885,-0.32748443,0.16037615,0.20750983,-0.01853726,0.08389271,0.5025574,-0.50618386,-0.3781702,0.049383063,0.8179798,-0.20354487,0.13517019,0.950559,1.1658579,1.0735366,0.09383775,1.212945,0.09458523,-0.20479546,-0.43636948,0.043112095,-1.0345727,0.1989488,0.30782816,0.08758728,0.6626282,0.20199397,-0.16258694,0.21783671,-0.51097023,-0.3060937,-0.03138456,0.17614606,-0.09046929,-0.20263101,-0.35020763,-0.08043526,0.18081824,-0.19866182,0.4495463,0.34521616,-0.44907755,0.36320668,0.26574203,0.9177757,-0.27768296,0.1168545,0.2978985,0.12416237,0.28820413,-0.36145622,-0.0026609302,0.060790412,0.36289194,0.0764621,-0.54906535,-0.025839526,-0.35774472,-0.51080287,-0.26728398,-0.05475178,-0.25880533,-0.13245156,0.008472131,-0.40779212,-0.2543294,-0.42976382,0.2795371,-2.6028056,-0.2609351,-0.19597243,0.33679444,-0.32460153,-0.38056836,-0.08003701,-0.5276059,0.41756278,0.24280955,0.3978097,-0.627902,0.22349699,0.2984531,-0.60456824,0.006206054,-0.5289355,0.031321757,0.060551938,0.47764334,0.18209876,-0.4782111,-0.1573363,0.22192056,0.53558755,0.19208142,0.036506023,0.50313824,0.5703691,-0.14290896,0.10723334,-0.07282429,0.56129223,-0.60445094,-0.18208137,0.631935,-0.8143835,0.35221747,-0.31228754,0.04404008,0.39764294,-0.44822466,-0.5667142,-0.42923453,-0.07254927,1.3873061,-0.26008573,-0.8159947,-0.009217519,-0.08688075,-0.26287812,0.02534217,0.5113511,-0.11048091,0.05681108,-0.51728076,-0.12198104,-0.3471877,0.21415915,-0.19195586,0.03328594,-0.46551073,0.89318305,-0.13775484,0.61154044,0.31891054,0.28284577,-0.5008565,-0.25945774,0.12246307,1.073104,0.6677538,0.17951027,-0.24539438,-0.046263173,-0.25942847,-0.61530125,0.07903288,0.81646097,0.6158334,-0.10372048,-0.069270805,0.36349818,0.08357479,0.24952489,-0.044037376,-0.35664514,-0.43911397,-0.13281825,0.73339915,0.54509366,-0.21001348,0.08982917,-0.053784166,0.15032853,-0.41148794,-0.3262337,0.6181601,0.8248166,-0.19638315,-0.2600653,0.7069274,0.3586973,-0.36283046,0.69882977,-0.7094605,-0.63856924,0.24204694,-0.030890537,-0.51039857,0.18550189,-0.3696591,0.17070678,-0.5606908,0.33895352,-0.3208938,-0.39499328,-0.51180977,-0.18677378,-2.2780187,0.22723015,-0.21365984,0.14947416,-0.4573113,-0.07405605,0.1743106,-0.28751564,-0.8085117,0.27564368,0.10172899,0.7746887,-0.18695675,0.25088078,-0.17241806,-0.3583072,-0.4523513,0.22881156,0.14399162,0.22029106,-0.14122623,-0.09737502,-0.37778983,-0.1675201,-0.3541889,-0.07248017,-0.5182593,-0.33198527,-0.24721694,-0.38632196,-0.2367066,0.58985496,-0.29608202,0.065650865,-0.3300171,-0.059841078,-0.07076678,0.20700932,-0.017077563,0.2271731,0.13615488,-0.49466294,0.19630122,-0.14438103,0.44202667,0.07420258,0.43793377,0.53563154,-0.48792142,0.036506943,0.29344204,0.9052349,-0.076115064,0.91675335,0.10988516,-0.15834716,0.46101457,-0.09806557,-0.32301748,-0.6146847,-0.03905736,0.3933442,-0.40152618,-0.36653122,-0.08432853,-0.2939469,-0.88368374,0.49554238,0.19353107,0.5277722,-0.104134135,0.5133134,0.3350153,-0.13216215,-0.09581307,-0.05414919,-0.28847864,-0.28616425,-0.33038586,-0.63128763,-0.27399507,0.01063201,0.80409616,-0.056446984,0.099676244,0.4433074,-0.01488416,0.13783264,0.12807952,0.20528287,-0.190084,0.458691,0.23275432,-0.62439597,0.39757758,-0.15578602,-0.06533639,-0.575351,0.34417692,0.5375639,-0.38830215,0.4216927,0.5201305,0.11260922,-0.35695794,-0.7226878,0.13299991,0.06772893,-0.18130524,0.39849204,0.40944302,-0.7743881,0.49356258,0.38706625,-0.26871294,-0.6460728,0.3413676,0.06107653,0.0066851927,-0.21085158,0.53909576,-0.122972384,-0.037399277,0.030858673,0.16907552,-0.31384978,0.37197974,0.039026078,-0.06492758,0.33157665,-0.23628306,-0.51234275,-0.62534374,0.1972054,-0.84861016,-0.049018975,0.18621613,-0.04773052,-0.11456506,0.19318812,0.19501916,0.55837536,-0.5089538,0.09747099,-0.11583308,-0.395819,0.62441856,0.47108957,0.3648173,-0.57262576,0.62391514,0.19519448,-0.21328513,0.028529404,0.04452094,0.51179665,-0.10171464,0.3086642,0.22264308,0.21646954,0.005170125,0.53506047,0.25656036,0.35636762,0.2541915,-0.20541722,0.21668969,0.008540795,0.2387684,-0.008465433,-0.7111407,-0.08288671,-0.118146695,0.07594059,0.5538833,0.15323387,0.45136613,-0.15207301,-0.24581257,-0.1837131,0.021174513,-0.33838812,-1.5462531,0.4274449,0.0880593,0.83074254,0.42263016,-0.013478209,0.13057189,0.6087498,0.034975145,0.018744716,0.30718178,-0.18018526,-0.43443605,0.54599214,-0.67984235,0.24868305,0.01478661,0.11376922,0.1746243,0.070036635,0.52296585,0.8390795,-0.12994057,0.03568919,-0.26680604,-0.21615966,0.1364572,-0.32129744,0.4867145,-0.3655116,-0.27536327,0.8117964,0.12529022,0.50374436,-0.20741734,0.122835845,-0.013072174,-0.13619587,0.30769157,0.04979362,0.18800622,-0.32226673,-0.40935203,-0.115270734,0.45790675,0.2612767,0.10510393,0.032035563,-0.09543273,0.06402034,-0.20520331,0.0937992,-0.07324737,-0.89276254,0.25443438,-0.45666328,-0.48751682,0.15735584,-0.061626717,0.22367375,0.29909492,0.070270404,-0.3006987,0.07221953,0.17284735,0.59363437,-0.15848933,-0.31159252,-0.35662296,0.21865508,0.17028308,-0.49516055,0.26683658,-0.095736094,0.22672178,-0.5002278,0.66950065,-0.16415559,-0.23747268,0.3625989,-0.23920721,-0.124073654,0.590083,-0.3207655,-0.085405745,0.25947505,-0.21126121,-0.2472408,-0.44886795,-0.20384704,0.18296383,0.25585106,-0.15178584,-0.15197887,-0.13426386,-0.36289898,0.11247274,0.20449585,0.15984505,0.53771883,0.07792879,-0.5538031,0.17844875,0.09815501,0.59869397,0.09494574,-0.066835515,-0.47831842,-0.634334,-0.40938362,0.8382499,-0.0035792028,0.19999316,0.042898417,-0.15902402,0.6845449,0.06618044,0.8187355,0.10295682,-0.24261989,-0.16390303,0.7634588,-0.038322095,-0.25773653,-0.43865123,1.0500405,0.54216737,-0.22169238,-0.037935838,-0.36344564,0.20270337,0.13416871,-0.27495623,-0.093989134,0.074151084,-0.74107164,-0.2363596,0.12738682,0.3883056,-0.018247902,-0.25611204,0.040814452,0.43645403,-0.0001674753,0.27835083,-0.45849654,-0.2881098,0.64042175,-0.061987393,-0.14427939,0.015700959,-0.5240902,0.16461045,-0.7704438,-0.027552862,-0.27263618,-0.0046525644,0.011656564,-0.5105161,0.36788467,-0.06718468,0.20760092,-0.61359185,-0.41906276,0.13601701,0.10332073,0.3488765,0.24232961,0.57055986,-0.18095376,-0.015892081,0.18669827,0.55828273,1.0777298,-0.06900798,0.30129725,0.053009115,-0.5344837,-0.8551136,0.29760715,-0.21072228,0.22274446,-0.12442107,-0.4205907,-0.56993747,0.31945962,0.13295487,0.13521126,0.10609876,-0.83854735,-0.5830604,0.077959724,-0.394433,-0.21785298,-0.3504905,-0.07230342,0.83612883,-0.025543464,-0.2945142,0.02824557,0.2948088,-0.32650742,-0.90748227,-0.060028452,-0.35365027,0.17585085,0.016972564,-0.23140517,-0.19690108,0.13062105,-0.555301,0.29932514,0.11593565,-0.41859004,-0.096662685,-0.45468503,0.08013023,0.44171557,-0.27777195,0.18972206,-0.372306,-0.5487792,-1.0074433,-0.5307982,-0.091008596,0.24337088,0.063943096,-0.5939292,-0.19731887,-0.5015147,0.07238377,0.036819313,-0.48251536,0.35004255,0.2403957,0.52529454,-0.26892874,-0.77695847,0.015620374,0.13994747,-0.18723743,-0.3308627,0.50234556,0.068959564,0.64086944,0.12527071,0.029127887,0.16639702,-1.0984534,0.23126319,-0.13818058,-0.030894807,-0.75339687,0.2633825,8 +584,0.53981423,-0.36364862,-0.41150182,-0.07321387,-0.12788092,0.10316655,-0.15245341,0.47414976,0.26408046,-0.5435808,-0.092735834,-0.3016553,0.042083833,0.111442804,-0.15388489,-0.38065335,-0.04317641,0.08336072,-0.32916605,0.44559404,-0.6245381,0.2611863,-0.110870875,0.32133403,0.08698478,0.27493083,0.06064129,-0.14975367,-0.28458557,-0.18600814,0.037912913,0.31820327,-0.56255305,0.12256767,-0.19233212,-0.30767563,0.018560413,-0.476633,-0.43648532,-0.74074656,0.34223124,-0.93314874,0.29794118,0.23410423,-0.19767427,0.19674999,-0.09517566,0.22248647,-0.2702308,-0.013530595,0.16233018,0.019153606,0.035914734,-0.28513205,-0.09149362,-0.3238188,-0.5699856,0.14674331,-0.36713725,-0.23868594,-0.26308873,0.15225723,-0.42054382,-0.054087702,-0.18310969,0.35140324,-0.42913902,-0.036373954,0.17013018,-0.23413302,0.30006433,-0.70705163,-0.38431293,-0.111828536,0.24718206,-0.2885936,-0.21894662,0.12825345,0.46377724,0.49380594,-0.06336594,-0.0046924236,-0.40130207,-0.002493056,0.22589947,0.42378828,-0.18532532,-0.6891064,-0.1289596,-0.060850143,0.1823996,0.273927,0.15420803,-0.25253406,-0.048032936,0.12850556,-0.3805908,0.4595824,0.5554333,-0.4429022,-0.20984842,0.310413,0.5338036,0.2695251,-0.08110575,-0.12755261,0.07395764,-0.5521863,-0.17163302,0.19412804,-0.21024612,0.49914137,-0.1599119,0.33415678,0.59080607,-0.41605112,0.17233953,0.119918674,0.015723508,-0.13751453,-0.25846782,-0.037337847,0.14790589,-0.2903487,0.06646688,-0.16287357,0.8107948,0.22331217,-0.56398654,0.3592348,-0.6174947,0.20215791,-0.09076763,0.60699046,0.62722534,0.36086032,0.41707084,0.71960443,-0.42472413,-0.0816479,-0.14725988,-0.36489102,0.08489506,-0.23413382,0.10596781,-0.34301513,-0.08579289,0.07016431,-0.12195846,0.013764943,0.6914407,-0.6031383,-0.07315348,0.10486771,0.710316,-0.20641683,0.0067505976,0.7419304,1.0056845,1.039563,0.10960372,1.3426888,0.21802813,-0.21436909,0.2640687,-0.3440457,-0.7903615,0.33255145,0.3076097,-0.08220477,0.17982945,0.057797212,-0.05434527,0.2464188,-0.35417563,0.05922949,-0.19531044,0.37118775,0.23598163,-0.023435025,-0.4013244,-0.33906752,-0.19726826,-0.06587892,0.11358857,0.18323825,-0.11518541,0.2196618,0.11906673,1.6064422,-0.2719097,0.22548272,0.13586356,0.531657,0.17969753,-0.09479063,0.075581625,0.35657546,0.24941438,0.19408257,-0.6636311,0.09585117,-0.23217313,-0.56463975,-0.07670833,-0.27575678,-0.2979667,0.2026965,-0.37260643,-0.18364215,-0.22494903,-0.32017282,0.48263547,-2.7032926,-0.31317785,-0.13859564,0.5374549,-0.3404646,-0.41073406,-0.11250684,-0.51441264,0.40083286,0.3281643,0.5178392,-0.80217713,0.15991798,0.6030001,-0.5658316,-0.18524566,-0.5992012,-0.029387195,-0.08815503,0.2681165,0.047969148,-0.13407083,-1.6900209e-05,-0.19838579,0.3454474,0.041041348,0.16373883,0.17505345,0.505664,-0.12474669,0.50870013,-0.04209322,0.4484582,-0.28513077,-0.26923218,0.45313218,-0.43814257,0.35468516,-0.12713145,0.12118505,0.4779136,-0.62330437,-0.84338844,-0.67733985,-0.39409035,1.1587616,0.04741313,-0.50736296,0.25395358,-0.36264214,-0.33454865,-0.30645904,0.5382009,-0.056671564,-0.21133573,-0.9057306,0.011675257,-0.25569618,0.20520546,0.045867965,-0.011657985,-0.33419478,0.762526,-0.017783472,0.36006176,0.3607248,0.040317755,-0.3641071,-0.52399576,-0.045034524,0.9781923,0.36443248,0.20565906,-0.25897062,-0.3197061,-0.2813868,-0.06097022,0.10414072,0.50920033,0.5807587,-0.05714583,0.08674952,0.3219501,0.04029108,0.08359453,-0.1923385,-0.20637785,-0.15945135,-0.05001744,0.6663717,0.69618064,-0.27952665,0.40784857,-0.038030256,0.11817345,-0.240276,-0.34867778,0.46931472,0.8805943,-0.09704566,-0.079392515,0.5885448,0.5578293,-0.39890704,0.36177906,-0.48644322,-0.40501064,0.40036535,-0.29466796,-0.46689838,0.30905488,-0.34532514,0.12852032,-0.72556084,0.33556157,-0.49501595,-0.13734755,-0.60978425,-0.115826026,-3.3913522,0.24166939,-0.23699358,-0.06413347,-0.13296911,-0.13474765,0.2237533,-0.5789365,-0.60577357,0.24726805,0.026737355,0.59121513,-0.18754466,0.07861241,-0.36964637,-0.37001213,-0.41460675,0.06539512,0.171839,0.40588096,0.025087925,-0.38907745,0.15834302,-0.16734979,-0.22639036,0.090939686,-0.45277697,-0.63237655,-0.1882672,-0.5193689,-0.48297507,0.7628543,-0.2243087,-0.0004667227,-0.119025275,0.0417033,-0.21206056,0.39867643,0.09804715,0.11164216,0.0416764,-0.07784438,-0.10661324,-0.2552538,0.3813076,-0.027442057,0.22809379,0.51401937,-0.297946,0.17583257,0.40620583,0.54940027,-0.108928844,1.0157965,0.3583133,-0.11217099,0.29559448,-0.16578534,-0.28080705,-0.53468096,-0.20415947,0.19569278,-0.46835282,-0.5338119,-0.118616,-0.36871478,-0.62199676,0.59859264,-0.11937113,0.20398997,0.10253975,0.37533358,0.60797113,-0.048150294,0.019962775,0.03565056,-0.052717246,-0.6288439,-0.28550196,-0.6830111,-0.4602141,0.3345568,0.7577317,-0.24537556,-0.060281757,0.27186102,-0.27784348,-0.14981955,-0.0652657,0.043290235,0.05399324,0.4239006,-0.051778276,-0.5516252,0.44611338,0.0098214885,-0.17250623,-0.5219394,0.18252708,0.8022404,-0.747218,0.61036384,0.43168995,0.06439871,-0.08553568,-0.41861784,-0.22765692,-0.026509136,-0.33306408,0.2691363,0.20043507,-0.82663375,0.4260478,0.43848497,-0.16460046,-0.83125836,0.61678857,-0.045300905,-0.24007232,-0.107346684,0.41891846,0.29032627,0.13144708,-0.05470117,0.39376956,-0.5809542,0.25073904,0.22401024,-0.19907254,0.38112494,-0.061269548,-0.28416213,-0.7444839,0.05791411,-0.4550808,-0.2765531,0.3719343,0.16184847,0.060137987,0.20925806,0.29317248,0.52051294,-0.29450208,0.07228604,0.08344913,-0.07172946,0.20057164,0.32999727,0.6974456,-0.47300038,0.57526004,-0.023980213,-0.06062264,0.028824743,0.018374847,0.33072802,0.17182483,0.37931225,0.14551269,-0.3264116,0.22647902,1.0739989,0.09946127,0.47198442,0.09093501,0.000116091505,0.27154148,0.2168006,0.31714168,-0.048170622,-0.7147,-0.0109729655,-0.058361273,0.16774327,0.400965,0.17872144,0.25203,-0.25463137,-0.31497303,-0.086091004,0.3887644,0.018032065,-0.977918,0.21482538,0.025948064,0.8110802,0.56279427,-0.035574004,0.15041126,0.558885,-0.10678306,0.07823238,0.33831167,-0.011005998,-0.60597664,0.4745495,-0.5886246,0.4415526,-0.16730286,-0.008005302,-0.12678571,-0.093543954,0.35335493,0.7457848,-0.11432955,-0.10339562,0.03031221,-0.27086383,0.22975087,-0.4383771,0.08613967,-0.61183226,-0.13513692,0.61242306,0.56108975,0.34567493,-0.1746375,0.037661728,-0.031161722,-0.112284,0.30326974,-0.08198357,0.1479633,-0.009132734,-0.81213623,-0.07629154,0.55925137,0.27564552,0.1774575,-0.057661466,-0.30799034,0.34634942,-0.19271861,-0.067801625,-0.14092559,-0.64848125,-0.09771877,-0.43892795,-0.5489334,0.38012302,0.08337195,0.28755844,0.28066558,0.11788641,-0.22159688,0.2505901,0.10179769,0.7846932,-0.16294609,-0.1815252,-0.6499834,0.16248845,0.24267724,-0.2195834,-0.08544889,-0.15286916,0.0957779,-0.5422007,0.5775235,-0.035326175,-0.19412139,0.028610192,-0.17786926,-0.032237783,0.7767462,-0.26460847,-0.18705122,-0.07957308,-0.22204535,-0.40500778,-0.049380027,0.05196557,0.16685145,0.3671598,0.004598223,-0.15144786,-0.26721615,-0.17698497,0.2662827,0.15675323,0.28641826,0.47092357,0.21439113,-0.2936074,-0.19146334,0.19694439,0.49874672,0.01766937,-0.17956275,-0.32294226,-0.61029845,-0.3929884,0.25478193,0.028030455,0.31771606,0.06336855,-0.4115191,0.6460524,-0.083748326,1.0552214,0.05476374,-0.30634516,-0.017404843,0.5220484,-0.1122988,-0.16427967,-0.5056439,0.9693849,0.49069077,-0.26108032,-0.08597498,-0.30584028,-0.10932222,0.14149305,-0.3038054,-0.014816981,0.017805131,-0.7051385,-0.24218719,0.24265245,0.3006551,0.018484341,-0.13505219,0.21078196,0.20909277,0.2166841,0.37649775,-0.53853214,-0.46106845,0.29068676,0.44504282,0.024954991,0.2188805,-0.2067249,0.4322604,-0.5496273,0.19729386,-0.3966262,0.12542258,-0.1200177,-0.30050695,0.23022798,-0.040124573,0.38898975,-0.3216593,-0.51453847,-0.32696354,0.2856088,0.14647235,0.23443006,0.560138,-0.23342115,-0.042336974,0.09215875,0.7073389,1.1691319,-0.011252834,-0.105307296,0.46495312,-0.25897908,-0.60980237,0.5635773,-0.45670694,0.17984335,0.008106117,-0.091887146,-0.4859411,0.30199233,0.31500992,0.024377447,-0.029599804,-0.7588752,-0.15586983,0.2493663,-0.49903983,-0.1440478,-0.31515053,0.057050522,0.9228938,-0.3304383,-0.1714417,0.033113003,0.42396858,-0.31818703,-0.5313786,-0.045779493,-0.45245203,0.30041462,0.00983285,-0.15408915,-0.037290625,0.067482345,-0.4487265,0.12053737,-0.0016382749,-0.39216596,0.122272186,-0.36513376,-0.07356516,0.9635012,-0.27282122,0.34093857,-0.3694619,-0.49747145,-0.76175433,-0.29232767,0.4626207,-0.008807347,0.079445824,-0.4696557,0.087522306,-0.018312356,-0.11290128,-0.11827678,-0.51782167,0.50490993,0.06445987,0.5260438,-0.12583901,-0.73033303,0.09851691,0.24726513,-0.13701639,-0.56723875,0.5765308,-0.08029652,0.80338603,0.16266169,-0.091629036,0.31037152,-0.45033833,0.014056389,-0.2076649,-0.25687006,-0.86304104,0.082180314,22 +585,0.38959673,-0.16391477,-0.40309334,-0.16938281,-0.08042521,0.22584017,-0.07481403,0.34004498,0.036707804,-0.7383763,-0.26458633,-0.3102288,0.07293996,0.0991734,-0.3300142,-0.41867626,-0.117788315,-0.0054008435,-0.44251043,0.4152652,-0.35515273,0.3161379,0.22280653,0.27420112,0.21587516,0.17905606,0.28617176,-0.30913755,-0.16457932,-0.22783914,-0.20212562,0.24066482,-0.46071243,0.061793603,-0.12333885,-0.3934959,-0.0071381377,-0.4942823,-0.27729437,-0.7257086,0.41594598,-1.0961726,0.4609515,0.13431022,-0.010425268,0.38946393,0.116402,0.18456747,-0.11970905,0.0914758,0.20506257,-0.04401241,0.07574861,-0.14144915,-0.17723829,-0.37624598,-0.5267053,0.009359077,-0.33990258,-0.47300434,-0.34830812,0.09243429,-0.4133332,-0.08367752,-0.070539586,0.57002735,-0.44437784,0.08015826,0.11808555,-0.21772085,0.42867792,-0.6164559,-0.18570279,-0.10535893,0.37192565,-0.42711356,-0.08371293,0.031623732,0.46868366,0.3021537,-0.05464169,-0.032966275,-0.27973375,-0.13246034,0.11390303,0.4722404,-0.09731544,-0.645663,-0.016660823,0.08238165,0.10047865,0.24213482,0.1855151,-0.31799617,-0.12002105,0.050817635,-0.3211245,0.5159388,0.38205132,-0.47589657,-0.22791775,0.34743303,0.44952282,0.10589792,-0.058013394,-0.12658253,0.066296324,-0.52719694,-0.08545518,0.2808824,-0.21664833,0.5576905,-0.1169406,0.5068278,0.65259355,-0.28773227,0.18995728,0.038364884,0.008214629,-0.0843734,-0.17080715,-0.17241047,0.25879577,-0.3499483,0.11564334,-0.19966006,0.8638397,0.045012075,-0.6378508,0.3380635,-0.52044207,0.044500828,-0.16724798,0.48285314,0.35912955,0.3709367,0.18296486,0.60833895,-0.5581003,-0.092074364,-0.091115505,-0.46837646,-0.11170694,0.027357426,0.0063698567,-0.4350918,-0.09921629,-0.019290136,0.09284372,-0.049260065,0.28967652,-0.465068,-0.13056262,0.053596295,0.7986073,-0.29704756,-0.09864512,0.6792996,0.833954,0.7087095,0.040069398,1.1265541,0.20906542,-0.27246702,0.12041589,-0.22848353,-0.7347568,0.39928192,0.5377399,-0.41908896,0.1505163,0.078037456,0.06747715,0.15938647,-0.29429248,0.016804732,-0.32441413,0.028289188,0.13471155,-0.031477105,-0.36757028,-0.24319169,-0.11410063,0.071686186,0.21921143,0.11021476,-0.20349187,0.26189244,0.17928168,1.6860712,-0.13383134,0.24475804,0.097948186,0.2606857,0.1904203,0.11076461,-0.040319685,0.31523672,0.4180859,0.30545455,-0.62105054,0.21469408,-0.17548588,-0.4895704,-0.14156224,-0.31427068,-0.13780037,-0.028399624,-0.48082268,-0.07884412,-0.10538383,-0.4311268,0.42550057,-2.7444165,-0.2064845,-0.16847607,0.40095404,-0.3336578,-0.2987987,-0.10981589,-0.3899755,0.4414983,0.3091852,0.5506946,-0.6707841,0.2834463,0.5097297,-0.37443924,-0.2550716,-0.61077636,0.061198335,-0.11908049,0.23276758,0.03981138,-0.023319837,-0.024590803,0.041684214,0.4019624,-0.04598802,0.06733411,0.18704557,0.6041647,0.24092112,0.6485938,-0.091903,0.5110985,-0.12744972,-0.19128415,0.2587215,-0.23252736,0.16642563,0.025033249,0.22369565,0.40729067,-0.4040314,-0.7683183,-0.72354424,-0.49766928,1.2201343,-0.28645283,-0.47777265,0.26512125,-0.03360077,-0.2921818,-0.15294503,0.4761794,-0.12818179,0.032389496,-0.8101585,0.12854365,-0.15634057,0.23659772,0.010394246,-0.05077918,-0.45228055,0.6026135,-0.08275644,0.4728526,0.36344248,0.24290203,-0.35552424,-0.40921754,0.059391774,1.0548062,0.29142857,0.066954546,-0.0886693,-0.09180447,-0.2974739,0.13484243,0.0421604,0.52091223,0.6626688,0.16914023,0.10848415,0.26596692,0.0036578511,0.0981124,-0.17756788,-0.26624122,-0.101183325,-0.16879739,0.52205426,0.38140118,-0.17888477,0.6107557,-0.19379602,0.34431335,-0.2594533,-0.373224,0.43614656,0.95497954,-0.14012685,-0.19693913,0.6016188,0.42588013,-0.36094794,0.13630083,-0.566726,-0.285072,0.606617,-0.31510755,-0.56934017,0.26097175,-0.22648318,0.103914455,-1.0499352,0.3450386,-0.2578728,-0.32380205,-0.41581774,-0.018563144,-3.4852998,0.15118222,-0.28466046,-0.23647237,-0.14386629,-0.18667778,0.14207724,-0.6167469,-0.48867494,0.12407842,0.09837267,0.6978562,-0.023498526,0.25707084,-0.17845058,-0.07459076,-0.033718467,0.13348,0.04005212,0.15759078,0.032753564,-0.37901258,0.03936914,0.056947265,-0.43499333,0.16292745,-0.5753412,-0.5627905,-0.025308149,-0.47153598,-0.42823407,0.6893629,-0.27917883,-0.034918744,-0.07112608,0.07629823,-0.115487225,0.39759943,0.10829401,0.18890049,-0.05838959,-0.00089367654,0.05998045,-0.2961961,0.5014196,0.04546303,0.15693313,0.2827714,-0.22257556,0.18339302,0.37453717,0.37590078,0.12668554,0.7362137,0.39939877,-0.10022698,0.22565563,-0.35660747,-0.338646,-0.5724627,-0.29082385,0.12868336,-0.3827287,-0.52364594,-0.17505465,-0.2737131,-0.643814,0.62720406,-0.09146927,0.22753176,-0.076119445,0.54255,0.58159757,-0.12914366,0.0023831176,0.10808746,-0.15290396,-0.5153747,-0.19670725,-0.586173,-0.41274217,-0.049877226,0.6841367,-0.18833661,0.08511254,-0.09727533,-0.121579185,0.015766809,-0.051665742,0.005400362,0.2935828,0.49554652,-0.16981268,-0.67363095,0.663797,-0.19611512,-0.23271634,-0.5835484,0.066078134,0.77389556,-0.61890674,0.45976698,0.3984577,-0.09124798,-0.34446284,-0.32325906,-0.1750442,0.049635295,-0.2624761,0.2088298,0.17299189,-0.6058013,0.3504591,0.38507175,-0.008663891,-0.62704444,0.62664455,0.08824936,-0.47182435,0.025652183,0.3784272,0.09892397,-0.03747105,-0.16008314,0.13877891,-0.40723655,0.23721504,0.1278988,-0.061297618,0.51009136,-0.1103134,-0.07880974,-0.71094584,0.14317958,-0.42792732,-0.266925,0.38271824,0.1481499,0.13206293,0.5107929,-0.17346312,0.46217135,-0.40363076,0.020096745,-0.04328901,-0.06891444,0.22842595,0.3614406,0.30829796,-0.4549951,0.49738884,-0.07219652,-0.071960635,0.03926774,0.22311082,0.4657504,0.10564469,0.29000074,-0.096917994,-0.39737755,0.42006323,0.7310046,0.18815616,0.43130192,0.089850344,-0.00035597727,0.28340447,0.048297547,0.20738338,0.04016324,-0.6007895,-0.087825164,-0.12143298,0.0798949,0.39627558,0.06696303,0.26318526,-0.22242397,-0.41641915,0.026576761,0.28032023,0.2219016,-0.7789945,0.39064604,0.029016908,0.7763647,0.3006583,-0.0684176,0.05351108,0.636314,-0.16926514,0.19543648,0.22463912,-0.07321183,-0.4923248,0.5504964,-0.57767093,0.23753263,-0.039286926,-0.062201563,-0.089119785,-0.06621916,0.27180088,0.8426851,-0.13594855,0.05920119,-0.019278454,-0.2977947,0.21523465,-0.38212088,0.17079021,-0.5401437,-0.23138006,0.46733114,0.5073036,0.25469226,-0.081095345,0.05625336,0.07256103,-0.15787941,0.17652176,0.18224365,0.20632058,0.0074902615,-0.7321607,-0.16766739,0.5903978,0.2296372,0.18434732,-0.14965667,-0.08440506,0.3627626,-0.09897493,-0.031188993,-0.09977746,-0.58036506,0.0139332265,-0.41954768,-0.5005726,0.22873405,-0.25712037,0.26164916,0.13814856,-0.12416157,-0.20284067,0.26576394,0.4764779,0.63988185,-0.030171476,-0.18881734,-0.58076674,0.096636385,0.09379016,-0.09181265,-0.1444309,-0.2127004,0.13746499,-0.6332477,0.403607,0.0033485019,-0.20520085,0.079357974,-0.17835757,-0.07362814,0.5956626,-0.04265158,0.049199224,-0.0531235,-0.22512205,-0.19321857,-0.104481466,-0.17571017,0.21590108,0.26311573,0.001927126,-0.120165125,-0.18054944,-0.52517766,0.28429917,0.1277314,0.614505,0.4018391,0.1492669,-0.22176728,-0.23753908,0.15031086,0.44889596,-0.07964994,-0.16625316,-0.23132467,-0.5379046,-0.16820295,0.09939922,-0.06909895,0.2637704,0.085141934,-0.2140953,0.8066892,-0.15709947,1.0527837,0.08760489,-0.38951162,-0.100559935,0.4901641,-0.1016933,-0.17990834,-0.31354406,1.0865958,0.62370557,0.06539202,-0.0690715,-0.1941414,-0.081979275,0.08408335,-0.17608343,-0.1863529,-0.003544702,-0.47323975,-0.46452028,0.16131124,0.27315018,0.078563415,0.020111639,0.05754502,0.26842245,-0.053232074,0.4885596,-0.53753793,-0.18084182,0.15939993,0.28176516,0.004477868,0.24939528,-0.36490074,0.46983954,-0.53020626,0.1338858,-0.4434482,0.22746779,-0.052186176,-0.13471302,0.23822229,-0.058889948,0.44799095,-0.2826892,-0.42698172,-0.19976936,0.36362046,0.14271076,0.07874204,0.49137777,-0.11665922,0.1886947,0.04223652,0.6122528,1.1435176,-0.13617009,0.13484593,0.39540055,-0.4076508,-0.61401975,0.37912816,-0.31907687,0.21402901,-0.025451733,-0.056288794,-0.33083922,0.26122794,0.2680482,0.040296152,-0.1551113,-0.48461148,-0.25818124,0.48051903,-0.31561133,-0.22105831,-0.30871958,0.15255354,0.49225852,-0.24709767,-0.15253255,-0.08021276,0.28217837,-0.2290926,-0.5209014,-0.08431739,-0.420787,0.35986328,0.13737614,-0.34414476,-0.07332793,0.06643895,-0.3615216,0.1542258,0.02504147,-0.4021289,0.034994338,-0.11180059,-0.011522627,0.87610316,-0.082564645,-0.22095563,-0.6137469,-0.39790884,-0.82669044,-0.34579313,0.49758947,0.04355932,0.020443128,-0.46347564,0.07911576,-0.016080664,-0.16118789,-0.17915824,-0.32089895,0.39625633,0.11364957,0.6296884,-0.10121342,-0.8579252,0.0590637,0.05918522,-0.2360575,-0.6654958,0.5649496,0.028902348,0.69480765,0.024442334,0.06616633,0.43120924,-0.4515887,-0.16680536,-0.21487048,-0.28817672,-0.86785513,0.036874894,24 +586,0.5533228,-0.40894133,-0.5923264,-0.24056841,-0.21911699,0.03586492,-0.25075474,0.6646557,0.19635631,-0.4853088,-0.1797122,0.05646748,-0.024080876,0.35920265,0.0154700875,-0.56281525,-0.0037446665,0.35498646,-0.6640653,0.5251803,-0.39369744,0.16040958,-0.07940073,0.64388144,0.29449093,0.25272897,-0.11867808,0.029960118,-0.15168874,-0.081575885,0.013847397,0.33798987,-0.37735957,0.28115824,-0.18558449,-0.41550696,-0.29132405,-0.60439557,-0.41776758,-0.7423645,0.17995985,-0.7717961,0.6139508,-0.10497458,-0.4089771,0.013359157,0.05777602,0.48066708,-0.31456202,-0.032130823,0.15176545,-0.018159198,-0.30408147,-0.10615325,-0.09527263,-0.17449497,-0.59290755,-0.05450757,-0.33763042,0.079725794,-0.07877839,0.27922666,-0.19996366,0.106882825,-0.112706356,0.5974721,-0.39883798,-0.06685254,0.16431192,-0.10812301,0.36091608,-0.4748398,-0.1197976,-0.16804123,0.36910912,-0.15584596,-0.4308252,0.19357787,0.16494806,0.49115038,-0.062211607,-0.078305155,-0.35180503,-0.012312779,0.043324653,0.5059213,0.03211805,-0.5144403,-0.22673443,-0.036389105,0.18918014,0.19686519,0.1580554,-0.22641745,-0.1825501,-0.18967155,-0.09701499,0.36719117,0.4405003,-0.18806976,-0.08624126,0.31359354,0.63794875,0.12782852,-0.16346754,0.035352595,0.09333288,-0.59079003,-0.19770709,-0.03255826,-0.21213466,0.40287665,-0.13191846,0.33870074,0.42177275,0.034841035,-0.19432637,0.2549281,0.11021193,-0.025831103,-0.33120662,-0.39536947,0.2959553,-0.40380806,0.16472432,-0.24354944,0.4836577,0.23767152,-0.7094959,0.3092791,-0.46402022,0.063679665,-0.084709086,0.40355074,0.79966205,0.46092382,0.13849793,0.7664732,-0.21490526,0.10604984,-0.0474538,-0.09482109,-0.10308986,-0.21875867,0.063896134,-0.6209828,0.05540591,-0.13315384,-0.2321058,0.15644334,0.4615,-0.56423676,-0.16233467,0.21513884,0.802407,-0.29399613,-0.037470516,1.0232155,1.0152301,0.9891274,0.039525032,1.1542877,0.2438676,-0.31755683,0.1349394,-0.31560275,-0.71623933,0.37505376,0.36293015,0.18742102,0.3031262,-0.043907147,-0.06806204,0.55764043,-0.40755108,0.026438741,-0.07264574,0.033831157,-0.04484689,-0.029802024,-0.66194606,-0.34024078,-0.15731524,0.06506029,0.16122526,0.14731985,-0.27652663,0.63976395,-0.067751735,1.6409429,-0.080536924,0.06511155,-0.01008442,0.35098445,0.20602721,-0.3773422,-0.4056784,0.21226525,0.3953495,-0.048078492,-0.5941276,0.13735889,-0.17324565,-0.2611733,-0.29933375,-0.34468383,-0.029454857,-0.20981766,-0.38289055,-0.16073059,-0.03941711,-0.4001118,0.39004612,-2.5923085,-0.3540621,-0.1622928,0.3220165,-0.30965102,-0.4443288,-0.10243152,-0.4082724,0.34730127,0.2577876,0.63049877,-0.5337183,0.5158081,0.3937551,-0.62382823,0.059358083,-0.6425798,-0.2729124,0.09415608,0.16494487,0.03498544,-0.03081683,-0.032644793,0.12919283,0.4184289,-0.106130615,0.0972011,0.40712982,0.20764907,0.067743436,0.45724642,-0.0679077,0.6712373,-0.54045856,-0.23678233,0.3028943,-0.4326315,0.14391613,-0.13680974,0.1707235,0.6307351,-0.6543173,-0.922586,-0.8580155,-0.17311181,1.1235404,-0.18527542,-0.25605184,0.18189071,-0.70921665,-0.36880848,0.10412781,0.52291876,-0.12291944,-0.06243249,-0.8664941,-0.24045603,-0.02661943,0.32981807,-0.16951202,-0.14546323,-0.60574985,0.48190138,-0.056398228,0.5251836,0.32496855,0.20338401,-0.19111562,-0.3893729,0.03318236,0.9096493,0.3525998,0.18681644,-0.27983466,-0.1637875,-0.56831723,0.17879055,0.028083857,0.6017084,0.5866961,0.0006987269,0.12923637,0.2816203,0.033279598,0.15100034,-0.078547746,-0.22221228,-0.29859167,0.22249971,0.66115123,0.5629319,-0.052661553,0.57383025,-0.11171791,0.395371,-0.17333843,-0.46503463,0.44077396,0.9178543,-0.21216896,-0.5161308,0.75244606,0.43288502,-0.22621424,0.48428038,-0.54546916,-0.3157232,0.20688674,-0.052576296,-0.32888317,0.20236538,-0.31055164,0.3928246,-1.0946852,0.12810636,-0.42902324,-0.82491106,-0.65518284,-0.08602698,-2.9035916,0.24532501,0.08362438,-0.28109238,0.05595678,-0.2615907,0.12992369,-0.5372528,-0.79530555,0.27828372,-0.02309802,0.8990322,-0.14929543,-0.046634518,-0.14077197,-0.36222488,-0.31331545,0.18329129,0.23171535,0.36068565,0.097285144,-0.5482411,-0.246053,-0.18371758,-0.36508545,0.037228093,-0.8474544,-0.45454347,-0.10675208,-0.6433029,-0.12775192,0.6123842,-0.10741147,0.047616348,-0.17671707,0.088063434,-0.019812485,0.27404374,-0.071741804,0.17213152,0.26177922,-0.25241315,0.047048286,-0.124729104,0.13615258,0.09822833,0.17866285,0.113461405,-0.167322,0.40704444,0.6165475,0.92960835,-0.18353814,0.891519,0.5336611,-0.057765245,0.22344151,-0.28249544,-0.3826884,-0.27281532,-0.015527684,0.06727762,-0.48995447,-0.45307687,0.022648748,-0.4607095,-0.9014797,0.51793665,0.0426329,0.014640973,0.16635387,0.14570402,0.5436087,-0.29111946,-0.032514308,-0.24515864,-0.1030152,-0.43345338,-0.35375756,-0.55469507,-0.46295932,-0.03724242,1.3758155,-0.20850253,0.23416355,0.0703808,-0.43713468,0.04804682,0.38844806,-0.03660563,0.16912542,0.42084795,-0.15675949,-0.57758266,0.29118553,-0.15623893,-0.22230522,-0.508697,0.325228,0.6268399,-0.63355434,0.6809115,0.29267767,-0.06252175,-0.49451664,-0.50628686,-0.16602758,0.038736757,-0.16991061,0.50436634,0.24644886,-0.6657039,0.35976475,0.2723066,-0.14916357,-0.80816674,0.48684612,-0.032724444,-0.13309158,-0.1897494,0.39771155,-0.04188114,-0.012093567,-0.29452717,0.16608694,-0.1532524,0.23380607,0.16951694,-0.0092471745,0.04891344,-0.44197404,0.09283816,-0.76254654,-0.1329282,-0.6819518,-0.18485086,0.40315595,-0.025160488,0.27573332,0.08443405,0.13426705,0.3572461,-0.33526498,-0.010138225,-0.26625317,-0.4875233,0.25398067,0.42913342,0.412765,-0.46703207,0.6260628,0.06937021,-0.12641397,-0.19663168,-0.013705895,0.5365897,-0.1023884,0.58826464,-0.037220575,-0.19846597,0.18162738,0.8124268,0.25954416,0.29930094,0.024457918,-0.05842615,-0.10137923,0.043816563,0.30159342,-0.08031735,-0.45401397,0.14886865,-0.24215081,0.17483383,0.34601718,0.14631364,0.3342145,-0.10874827,-0.29973304,0.04663173,0.09601934,0.032243308,-1.5756085,0.53561795,0.26887706,1.0617633,0.42169836,0.07122162,-0.111059085,0.71287507,-0.18057297,0.155113,0.3374472,-0.17828694,-0.37882283,0.51851255,-0.73585993,0.612198,0.13368732,-0.0004468973,0.04692413,-0.33033815,0.6581922,0.8946762,-0.2258324,0.16029695,0.09615775,-0.22796114,0.11398744,-0.38191715,-0.19228356,-0.72831506,-0.25189322,0.7657635,0.5551511,0.40179527,-0.15019774,-0.05927652,0.29657784,-0.02630989,0.1489048,0.1019357,0.18496092,-0.013995464,-0.6574593,-0.09357795,0.37955564,-0.008018927,0.1682748,0.19192013,-0.11524929,0.18791558,0.008128141,0.058496237,-0.15111855,-0.67088276,-0.14445506,-0.47532716,-0.242654,0.39205888,-0.16412728,0.16986166,0.20591666,0.10819094,-0.21728815,0.61406577,-0.107820675,1.0450792,0.19486094,-0.14926825,-0.18480165,0.3239298,0.23016731,-0.27437666,-0.046580657,-0.435064,-0.018852536,-0.67736685,0.5090757,0.100095116,-0.5021627,0.28987753,0.024714626,0.17334546,0.45693696,-0.20542775,-0.17696404,-0.023733368,-0.042990573,-0.30113915,-0.16992377,-0.23478486,0.32183948,0.27784225,0.08420222,-0.12402714,0.12952633,0.027466664,0.6950026,-0.024954213,0.46801165,0.34254706,0.16278015,-0.2834698,0.014115453,0.2697948,0.61590225,0.0063952003,-0.18921486,-0.230268,-0.2591307,-0.4537675,0.29238892,-0.09279798,0.44603893,0.037229877,-0.04346941,0.6026014,0.07176034,1.1165183,-0.048825502,-0.3967004,0.17058149,0.50331974,-0.07414648,-0.10894971,-0.45057222,0.92956924,0.261023,-0.1498786,-0.1046698,-0.5236136,0.0067596207,0.09435233,-0.16912396,-0.26394537,-0.103939325,-0.5740496,-0.25600857,0.22352117,0.2262081,0.4306249,-0.1390729,0.25217688,0.36293843,-0.07106553,0.08871988,-0.37234586,-0.01933526,0.38336533,0.29287496,-0.034867767,0.07675632,-0.50302595,0.27093703,-0.63191956,0.017631888,-0.15528785,0.17630187,-0.22400977,-0.55053574,0.27735373,0.24180728,0.19669428,-0.3620965,-0.27777058,-0.33837205,0.63629496,0.17333056,0.00572656,0.47498754,-0.28245813,0.05038951,0.22080693,0.39666763,0.70983446,-0.28961673,0.09774454,0.34173286,-0.2597914,-0.48929417,0.35129797,-0.40198877,0.42486855,0.22647089,-0.30622515,-0.8467896,0.3227188,0.20288962,0.004842584,0.09658359,-0.5956613,-0.094863445,0.3142696,-0.13190803,-0.12750585,-0.39694065,0.0012950989,0.36285037,-0.095490746,-0.40585804,0.30560958,0.13727556,-0.28416026,-0.40174997,0.023452153,-0.42558828,0.1631341,-0.06568693,-0.4863078,-0.32382208,-0.11874997,-0.50243664,0.22880639,0.14795342,-0.32436174,0.15232986,-0.43711838,-0.23966265,1.1075813,-0.2861578,0.36175394,-0.45556968,-0.46187162,-0.7652482,-0.31957287,0.5086459,0.11007354,-0.16677158,-0.80610406,0.09935718,-0.18976498,-0.20237142,0.050421212,-0.2462759,0.42728445,0.1102239,0.38396665,-0.040040474,-0.88602674,0.2771045,0.115342766,-0.3216659,-0.5607646,0.3976185,0.13386843,0.9385204,0.03948122,0.28785926,0.32325083,-0.56338984,-0.18041772,-0.10321213,0.03643503,-0.5505048,-0.032789204,27 +587,0.31048667,-0.10620646,-0.43306655,-0.07459927,-0.084665075,-0.07329586,-0.036448937,0.66060644,0.11307001,-0.4009104,-0.2172517,-0.04182216,-0.11888974,0.3269131,-0.10886268,-0.5626508,0.04775403,0.24373667,-0.26704615,0.53778845,-0.5269705,0.31245878,-0.09446066,0.28244054,0.1566603,0.24376538,0.034906182,-0.2556794,-0.04942077,-0.020513095,-0.28405496,0.48953453,-0.24319752,0.1697537,0.062232018,-0.43103904,-0.053031147,-0.33180904,-0.2597936,-0.66273755,0.30614457,-0.6524192,0.36309943,0.04203038,-0.26058123,0.28102958,-0.1514251,0.2613171,-0.25204355,-0.042181905,0.18388234,-0.0041315374,-0.04044273,-0.17672116,0.000728676,-0.3130566,-0.60890764,0.037704222,-0.33860096,-0.072922915,-0.19122054,0.2262631,-0.4349473,-0.073385656,-0.034021184,0.2518096,-0.49111477,-0.13807756,0.074455746,-0.12351648,0.18912107,-0.6992185,-0.18346503,-0.080519564,0.2783241,-0.25496185,-0.09313573,0.28688976,0.33782637,0.45568582,0.034244403,-0.118241236,-0.34365135,0.044199586,0.03920004,0.56501114,-0.28686675,-0.4955831,-0.069548495,0.03386061,0.20269328,0.06954607,0.019477112,-0.22494048,-0.21987642,0.1345054,-0.29202312,0.1768855,0.46727446,-0.31795886,-0.40202862,0.43865788,0.4968882,0.09849807,0.007129527,-0.041935984,-0.064931326,-0.51817703,-0.111521214,-0.03885408,-0.2711723,0.41249827,-0.13947247,0.30664366,0.6425603,-0.029578106,0.19067171,0.073547766,-0.044892542,-0.123038374,-0.18952698,-0.19432674,0.19635841,-0.31933162,0.2392485,-0.08249296,0.8754123,0.10665776,-0.8502891,0.4371739,-0.45928568,0.11494963,-0.16940263,0.6107556,0.6299442,0.2715285,0.32287452,0.711774,-0.5411045,-0.0070535955,-0.022151526,-0.40596676,0.05750055,-0.011247997,-0.13573067,-0.5496175,0.041142646,0.21501541,-0.0443699,0.1961352,0.32467046,-0.7207912,0.016200492,0.08785884,0.62642914,-0.35699588,-0.10854261,0.66090554,0.9267251,0.9473975,0.01417704,1.0756857,0.17708237,-0.23286861,0.39730138,-0.5739218,-0.6774404,0.28086793,0.49426872,-0.27890572,0.18728957,0.13954374,-0.059439227,0.45722425,-0.31865945,-0.006955367,-0.1908851,0.103984304,0.034122773,-0.108686246,-0.4605474,-0.3878763,-0.1644825,0.047114868,0.08320796,0.32396692,-0.24171709,0.30475932,0.04392262,1.7237017,-0.052232977,0.13020031,0.08774216,0.4187489,0.09595155,-0.100284494,-0.12795907,0.2995996,0.4238053,-0.074142985,-0.56637335,0.10698596,-0.23470682,-0.5195599,-0.060833566,-0.18664446,-0.04583809,0.21551976,-0.37416604,-0.17686209,-0.12704149,-0.3665894,0.46886066,-2.7415936,-0.18990429,-0.095249385,0.30323452,-0.29480854,-0.44365087,-0.20992014,-0.46782523,0.38270232,0.34607476,0.6006203,-0.6506639,0.28463882,0.25597918,-0.4890142,-0.14415498,-0.609332,-0.0653766,0.0077126324,0.18758829,-0.012049641,-0.010434077,0.12888822,-0.13586973,0.4087491,-0.005258496,0.0021861035,0.36493367,0.24697652,0.2720209,0.2810224,0.06752586,0.5375691,-0.17652358,-0.18744189,0.22493964,-0.28788865,0.2727771,-0.1978896,0.1971711,0.36541304,-0.47643808,-0.85593927,-0.6110642,-0.35782588,1.3478355,-0.17900573,-0.24885274,0.40505356,-0.14251786,-0.17306818,-0.18790714,0.38401905,-0.2851477,-0.2781464,-0.80570644,0.044146802,-0.1547702,0.15542994,0.05647478,-0.17436275,-0.440928,0.55306286,-0.09200318,0.49871862,0.3266307,0.19450632,-0.14478253,-0.4168206,0.014283139,0.9095836,0.3090304,0.13820376,-0.105058596,-0.11116375,-0.34789017,-0.0927521,0.16725841,0.35209173,0.7143848,0.058304913,0.06300401,0.36993012,0.116984025,0.063329026,-0.1597642,-0.28377318,-0.091657594,0.133806,0.58757615,0.6074486,-0.2869902,0.42948583,0.002720505,0.09316723,-0.120137945,-0.43952164,0.52762944,0.7814733,-0.1563507,-0.14028165,0.5653969,0.46006715,-0.13507722,0.40602794,-0.55352455,-0.25317866,0.36457494,-0.2837098,-0.35341975,0.09725877,-0.2899316,0.17675558,-0.85227054,0.25382447,-0.2546409,-0.5045651,-0.51367015,0.10112997,-3.304197,0.16927901,-0.39402443,-0.26400656,-0.053755715,-0.13600144,0.18930772,-0.7293738,-0.48324382,0.14325103,0.17252067,0.55524296,-0.0537987,0.011864474,-0.22251384,-0.20384462,-0.308544,-0.010918226,-0.036055896,0.36087814,0.22751379,-0.41807276,0.0632091,-0.05975948,-0.3256709,0.16466564,-0.4642343,-0.3900797,-0.11953438,-0.643815,-0.33055422,0.64122295,-0.46862543,0.036474757,-0.181382,-0.030247826,-0.18130316,0.4027712,0.053673822,0.068799935,-0.01667592,-0.011512073,0.02646779,-0.2413315,0.3645108,0.07379744,0.28743884,0.47753188,-0.21264221,0.16710363,0.60392773,0.6013372,-0.15965725,0.8493821,0.62031007,-0.13923874,0.17209934,-0.31532687,-0.14370838,-0.5561427,-0.4368668,0.046089277,-0.36575463,-0.51183605,-0.074788816,-0.37529275,-0.861071,0.44238853,-0.035740294,0.24852313,0.066757694,0.04871972,0.47912973,-0.06694431,-0.005308094,-0.13448368,-0.034333073,-0.5410501,-0.20124197,-0.71806175,-0.42906114,0.26447916,1.0263127,-0.28746554,0.012653149,-0.035914037,-0.19176747,-0.08352533,0.017008957,0.00033389375,0.12551028,0.25257662,-0.16971834,-0.6700424,0.43491876,-0.017573697,-0.10962633,-0.4693437,0.11331771,0.44900066,-0.61955,0.49146733,0.24465129,0.0063371933,0.1289131,-0.5674319,-0.28378528,-0.13661817,-0.19279231,0.31535128,0.19924138,-0.5846806,0.32871932,0.4778088,-0.19617875,-0.74505985,0.33656073,-0.07333729,-0.19814745,-0.05614511,0.26511434,0.13001339,0.029774755,-0.08926841,0.062763676,-0.48240057,0.47800416,0.2014034,-0.106227785,0.38357055,-0.19749771,-0.0059010247,-0.78409857,0.039537787,-0.54539055,-0.15916674,0.16218534,0.19324173,0.14325362,0.047537234,0.113235064,0.38795426,-0.33052298,0.06855537,0.1841779,-0.12295132,0.14380725,0.39822945,0.490895,-0.3784663,0.47959086,0.034278784,-0.073494144,-0.23624101,0.041895024,0.45758745,0.09750286,0.24755408,-0.0842965,-0.32335502,0.31277892,0.82119113,0.25645673,0.35512277,-0.11884037,-0.12849572,0.16409056,0.03018298,0.17863399,0.13822904,-0.45940349,0.013636275,-0.054673985,0.23034628,0.58521944,0.17945395,0.2402013,-0.18499902,-0.3346391,0.06288996,0.2652082,-0.026159497,-1.02575,0.5343413,0.23924369,0.7463032,0.56620795,-0.006824136,0.02437046,0.5564226,-0.23558778,0.24084964,0.24897368,-0.13930959,-0.67954767,0.58633256,-0.73367023,0.3805677,-0.01681867,0.02831438,0.05583171,-0.14264415,0.28013825,0.66779834,-0.1243811,0.017676326,-0.093770236,-0.26548418,0.007778665,-0.3218052,0.039455533,-0.6060208,-0.12868546,0.5585175,0.5670863,0.27276012,-0.107374065,0.009425988,0.084981255,0.0065898667,0.068225734,-0.022133969,0.20508316,-0.06914335,-0.58175457,-0.26020917,0.47713497,-0.12736043,0.10922984,0.034789972,-0.21640676,0.19990891,-0.2865667,-0.14335938,-0.11090893,-0.45638335,0.13976619,-0.0991321,-0.21768573,0.43326595,-0.07685049,0.27831239,0.15647508,0.12271835,-0.16544344,0.26551467,0.06523712,0.70927644,-0.013705533,-0.20389582,-0.39984724,0.23875938,0.16286983,-0.06605658,-0.083276,-0.21557982,-0.10555197,-0.46222988,0.42678502,0.06779109,-0.128953,0.1211157,-0.11024336,0.020353535,0.49000877,-0.109716244,-0.104004435,-0.0005157819,-0.13824807,-0.26208827,-0.1168594,-0.25758365,0.19277433,0.2751846,0.0963976,-0.12170148,-0.12830596,-0.2556922,0.4391125,0.07968083,0.24618043,0.19373809,0.11488153,-0.27842748,-0.27273935,0.13410392,0.3099671,0.060526617,-0.11971072,-0.2725464,-0.43634585,-0.40185565,-0.011388989,-0.14009264,0.41585514,0.06239162,-0.24666539,0.55602705,0.14781228,1.132849,0.10471801,-0.2406524,0.026410818,0.46420103,0.054085713,-0.015901098,-0.28399214,0.985444,0.598481,-0.10371557,-0.10064106,-0.33350295,-0.1814134,0.30371284,-0.17318083,-0.047602296,0.052855697,-0.6520083,-0.42539388,0.2635824,0.2369776,0.010061349,-0.0005960831,-0.021422245,0.17270008,0.1644014,0.34199432,-0.42487213,-0.32672802,0.2802126,0.2168732,0.08003019,0.2625799,-0.3905669,0.45394972,-0.49174693,0.08313879,-0.22301127,0.13418953,-0.2634303,-0.27830505,0.23208585,0.09770254,0.43641666,-0.12436298,-0.38903776,-0.17983668,0.56037307,0.011439488,0.11045706,0.46960512,-0.34437975,0.0026392569,-0.028103847,0.3800138,0.98976034,-0.18473285,-0.029921012,0.49707538,-0.24903029,-0.5750439,0.3447884,-0.19535066,0.078778,-0.11357632,-0.2713374,-0.4221953,0.30634263,0.17647734,-0.032617502,0.105348736,-0.5061831,-0.23327112,0.13183784,-0.33438858,-0.2477464,-0.2686406,0.24754788,0.7320899,-0.50599515,-0.52091736,0.20702553,0.23194383,-0.13797016,-0.5570894,-0.02667305,-0.35838187,0.2564276,0.1950937,-0.37362245,-0.16594452,0.1725178,-0.3153196,0.10105069,0.2165533,-0.35104477,0.17630757,-0.33394983,-0.017677357,1.0238615,-0.2029683,0.2570713,-0.62549716,-0.3032159,-0.7943154,-0.50351244,0.6439517,0.2258091,-0.05943467,-0.66869164,0.16491161,-0.03569847,-0.16431347,-0.20659655,-0.3014818,0.4961856,0.14848047,0.277238,-0.10024214,-0.68718106,0.1386449,0.090445094,-0.0090891905,-0.5556902,0.45511377,0.054773487,0.8959325,0.12450691,0.046753485,0.22301282,-0.3330415,-0.060995534,-0.36472055,-0.28356007,-0.75547504,0.034269057,31 +588,0.28611264,-0.045588456,-0.6601573,-0.09215849,0.01502285,0.17182139,-0.28146034,0.5144429,0.1307881,-0.40398115,-0.01702707,0.080952756,-0.1362218,0.21988402,-0.32696593,-0.51045316,0.085225396,0.06024388,-0.4507398,0.37343648,-0.42840952,0.24556476,-0.15114962,0.20053647,-0.12589838,0.1866342,0.23158763,0.09755587,0.1083341,-0.28990364,0.33914688,0.22611207,-0.66944337,0.27895048,-0.16447753,-0.28114033,-0.04250504,-0.3253732,-0.41118643,-0.7434131,0.26251376,-0.80922294,0.57306474,-0.007300817,-0.4036865,0.3960629,0.27352205,0.17598683,-0.1982103,-0.19060972,0.12017162,-0.06959026,-0.36240003,-0.16648835,0.035836086,-0.31589717,-0.48977518,0.06912727,-0.51924413,0.083594054,-0.39281705,0.20954292,-0.34718192,0.27014765,-0.24743032,0.36445755,-0.40498215,-0.14294931,0.16354752,-0.07992069,0.24678388,-0.44468027,-0.09214806,-0.063183576,0.23985913,-0.005330966,-0.061941784,0.2614406,0.12711391,0.42164236,-0.21329951,-0.103898875,-0.20159823,-0.16293874,0.118529126,0.48422697,-0.24470761,-0.2721905,-0.045822464,-0.09691242,0.3343837,0.09299052,0.08816891,-0.07535825,-0.0670793,0.12471198,-0.3790386,0.32831118,0.56543547,-0.36253107,-0.015282675,0.4658937,0.58446014,0.06528182,-0.03510295,0.15426,-0.06469373,-0.44464457,-0.23324347,-0.1398413,-0.1818534,0.4769315,-0.048241753,0.2881418,0.53575224,-0.15598583,-0.035003994,0.3157097,-0.0058813393,-0.014187849,-0.18061253,-0.23678383,0.2432748,-0.43266723,0.05841944,-0.23979566,0.6204436,-0.12645718,-0.73466784,0.4244614,-0.3720559,0.086979166,-0.046212114,0.63678837,0.7175791,0.63606507,0.1369082,0.8789259,-0.5273823,-0.21464072,-0.06707467,-0.28374243,0.35783678,-0.18601784,-0.023608737,-0.34867877,0.004530797,0.2982055,-0.05982646,0.18749124,0.28410432,-0.44576278,-0.10623335,0.08187667,0.62176216,-0.20792459,-0.024132691,0.74692374,1.3533758,0.93867743,0.19196051,1.0001153,0.055497758,-0.085206784,-0.20148802,0.14612073,-0.9781651,0.2501458,0.37303,0.09362502,0.2853468,0.116137706,-0.10411307,0.44417593,-0.5178217,-0.24676356,-0.0016232178,0.53288436,-0.09728925,-0.24965762,-0.3701896,-0.15999912,0.29245317,0.06642214,0.17986466,0.37090585,-0.22970611,0.32868415,0.24454531,0.8591039,-0.059876613,0.13928157,0.20439078,0.28538805,0.13464016,-0.23944512,-0.003264913,0.152076,0.26757532,0.15720709,-0.54369134,0.11505875,-0.13762699,-0.4311489,-0.1567865,-0.31102097,-0.01639534,-0.21851608,-0.25807902,-0.21924207,-0.23330887,-0.31791827,0.3418915,-2.8365176,-0.17486414,-0.21680523,0.2766635,-0.074659035,-0.13613781,-0.038594764,-0.43278176,0.4331096,0.42473084,0.42458266,-0.5519305,0.48033333,0.45160118,-0.4625196,-0.007640288,-0.54483443,-0.02424867,-0.027342508,0.3724176,0.18472229,-0.1771319,0.008350221,0.2899283,0.3885584,0.022887945,0.14240576,0.30345872,0.3403301,-0.17648305,0.27566078,-0.17261837,0.49374706,-0.37120965,-0.18584412,0.322069,-0.69978994,0.24632171,-0.3363897,0.13566203,0.24633066,-0.38817802,-0.841179,-0.5516461,-0.1556007,1.5492821,-0.27018026,-0.6597185,0.107868195,-0.14285852,-0.352762,-0.04053569,0.3674578,-0.2718611,-0.0340203,-0.85749656,0.08166012,-0.34396964,0.28054315,-0.165074,-0.049698435,-0.53196084,0.65931916,-0.0901425,0.6709953,0.2916733,0.12800075,-0.42993638,-0.30157697,-0.011465659,1.0357486,0.6784164,0.10442774,-0.12693591,-0.11947604,-0.20210545,-0.18335792,0.14966148,0.74244654,0.49937394,0.08607061,0.17062292,0.25480053,-0.0069438657,-0.00027818634,-0.08589783,-0.33975995,-0.09647115,0.09139326,0.71404135,0.6391062,-0.26316884,0.059033062,-0.018113706,0.27074564,-0.28270167,-0.42248896,0.41561854,0.45323408,-0.06232634,-0.2609964,0.72142655,0.59030944,-0.16542605,0.51490057,-0.5674009,-0.57360935,0.23977147,-0.07973427,-0.22237632,0.17184165,-0.29119352,0.10411239,-0.7344066,0.391405,-0.4271628,-0.79708266,-0.4961874,-0.042458452,-3.1104035,0.04361393,-0.07523081,-0.121510014,-0.3261199,-0.093316756,0.35397515,-0.44816086,-0.7549022,0.0070752734,0.09876262,0.6356273,-0.1277444,-0.06528611,-0.09323232,-0.3583353,-0.20016289,0.12006117,0.23421417,0.24220756,0.054110922,-0.3580117,-0.2598477,-0.28769,-0.33901978,-0.10426049,-0.34613118,-0.4382167,-0.13452639,-0.34586936,-0.1825095,0.6167688,-0.3527926,-0.0073516737,-0.29155648,0.020549534,-0.090073936,0.35752928,0.04085488,0.14356701,-0.026685545,-0.24454212,0.10825158,-0.33354574,0.495669,-0.030466259,0.43610147,0.44439527,-0.33795893,-0.0019169336,0.5912809,0.5691181,-0.08327002,1.0329101,0.10388624,-0.07667721,0.37991598,-0.15589556,-0.3090246,-0.42443487,-0.1500229,0.23820797,-0.34685224,-0.20134772,-0.026319297,-0.34843698,-0.83202994,0.4693173,-0.027883004,0.24290441,-0.18743397,0.3244948,0.29215446,-0.018698262,-0.10868655,-0.19519949,-0.157866,-0.45411536,-0.28919703,-0.81820476,-0.36768538,0.012593044,0.96709126,-0.11475844,-0.012048084,0.16570441,0.10917136,0.16345993,0.04921406,0.21805796,0.0643668,0.3496418,0.106278926,-0.64456546,0.39061838,-0.25467372,-0.044742387,-0.6408304,0.05581768,0.48838475,-0.5989593,0.3361509,0.48471928,0.17518005,-0.028991185,-0.72341084,-0.08850336,-0.06783008,-0.23076572,0.4530636,0.3558572,-1.0902123,0.6244468,0.36471635,-0.27411312,-0.59379494,0.5037175,-0.1117472,0.11384256,-0.010015974,0.41724703,-0.011951355,0.019880982,-0.064395264,0.19108321,-0.34362918,0.32051337,0.16382283,-0.1718927,0.5489714,-0.26034886,0.0026559418,-0.5220048,-0.08322878,-0.5965145,-0.07798466,-0.058988035,-0.16452307,-0.14757007,0.18313466,0.068450615,0.46190885,-0.40156028,0.089965455,-0.08251275,-0.35918996,0.47886416,0.55354726,0.5075515,-0.36385533,0.7101006,0.1873743,-0.03746714,-0.19414097,0.014944205,0.46349475,0.003380512,0.34811532,0.1647714,0.06340706,0.23699385,0.8244792,0.16515169,0.33477384,0.06438237,-0.12524644,0.20363666,0.049076274,0.14588788,0.10236541,-0.56638235,-0.060423907,-0.3391012,0.13303365,0.55676407,0.17658156,0.39603487,-0.087062925,-0.313319,0.062931634,0.23701873,-0.21967179,-1.3816744,0.47263706,-0.0046461085,0.6809563,0.38667658,0.08659156,0.10911063,0.5810571,-0.10602085,0.06862248,0.25506586,-0.019124731,-0.45053992,0.651051,-0.86779225,0.481832,0.042650536,0.03929681,0.14370142,-0.041595016,0.42082736,0.7442324,-0.034238517,0.16869868,0.058574576,-0.30929285,0.2124864,-0.36988208,0.15909846,-0.258845,-0.22709168,0.627807,0.4289923,0.47037113,-0.26987612,-0.018195044,0.021555573,-0.19390449,0.20179224,-0.11390884,0.13922289,-0.34159952,-0.45319417,-0.14176014,0.45435122,0.21201529,0.1509175,-0.06059203,-0.104113966,0.240132,0.02379377,0.07457463,0.007246467,-0.52802426,0.10847884,-0.35525757,-0.38487074,0.2472345,-0.11235301,0.25900137,0.263391,0.06023033,-0.3424118,0.085172705,0.077769116,0.5779983,-0.05122706,-0.24428302,-0.19654736,0.15078592,0.16026203,-0.27236497,-0.018066676,-0.39901888,0.11426859,-0.46860936,0.42296457,-0.38542286,-0.35480398,0.2480833,-0.17717694,0.013823757,0.42691943,-0.27659413,-0.11449296,0.013635506,-0.11765304,-0.18840814,-0.39536387,-0.20002827,0.0587711,0.07141857,-0.058293976,-0.09138464,-0.13291083,-0.1704634,0.15454096,0.09179624,0.16406378,0.5438466,0.024460059,-0.4683237,-0.013960628,0.024322303,0.58662456,0.031749465,-0.10110913,-0.476558,-0.6396008,-0.36829174,0.45453116,-0.028546821,0.22607344,0.1268328,-0.17125331,0.5042762,-0.01935548,0.75727326,0.11334122,-0.27024487,0.045336504,0.70471126,-0.02860415,-0.19842988,-0.21550342,0.86258656,0.5173837,-0.2042251,-0.06610553,-0.5118543,-0.02018017,0.10961296,-0.20422395,-0.27911618,-0.046397455,-0.86198723,-0.14821993,0.13214605,0.4139603,0.04889321,-0.13275836,-0.03260732,0.33157083,0.22039758,0.13375495,-0.4596663,-0.14288369,0.5190244,0.09874598,-0.17646316,-0.061668772,-0.34773305,0.19426724,-0.6424438,-0.1035832,-0.2927177,-0.0017166688,-0.12653975,-0.4644775,0.15742208,-0.0018182168,0.24435924,-0.22533189,-0.27712232,0.16368225,0.26775783,0.23700966,0.15415166,0.5864599,-0.14099035,0.019227443,0.12747526,0.5000609,0.85247934,-0.16023342,0.106721014,0.10344183,-0.41035435,-0.78164315,0.13019894,-0.3463839,0.3125629,-0.13020323,-0.37147692,-0.56632435,0.36679834,0.19900614,0.0024980397,0.07125473,-0.45454848,-0.21228816,0.08219561,-0.41031355,-0.21274918,-0.3717562,-0.1028963,0.5345806,-0.17642856,-0.19228008,0.07440085,0.38833237,-0.20082997,-0.5773498,-0.048854902,-0.29739365,0.25331125,0.030811597,-0.38596252,-0.0052962303,0.09643707,-0.36313564,0.382174,0.21938442,-0.24403447,0.0525778,-0.3885116,0.14753269,0.5717649,-0.20769209,0.14144193,-0.51698875,-0.5920138,-0.81786036,-0.32583874,0.3472843,0.21354786,-0.036240127,-0.61589277,-0.08588183,-0.27720627,-0.017285805,-0.15045235,-0.38355243,0.36779326,0.16163523,0.36972588,-0.07067612,-0.7250918,0.013241436,0.027003665,-0.055602446,-0.26380068,0.64288723,-0.13415888,0.64633346,0.10014378,0.14186025,0.14944175,-0.6015075,0.19472817,-0.1106976,-0.070011415,-0.47834498,0.1714449,33 +589,0.39797255,-0.11220067,-0.57722735,-0.24562782,-0.48370212,0.086108215,-0.35746977,0.2348191,0.29992616,-0.3305756,-0.2569161,-0.24906777,0.18743426,0.31099054,-0.05720145,-0.70458424,0.15297304,0.3552092,-0.7565742,0.32717085,-0.6244695,0.4185848,0.15710226,0.43957442,0.18172738,0.37345928,0.25016886,-0.06998248,-0.082131274,-0.1492465,-0.2536855,0.14174426,-0.5209823,0.021902302,-0.29651967,-0.4720248,0.10162126,-0.44692978,-0.062328998,-0.8000182,0.14137991,-0.98157626,0.53363895,-0.044001997,-0.23981097,-0.16903411,0.5184727,0.30921227,-0.45670876,0.25313595,0.18335755,-0.38449982,-0.2535386,-0.48429665,-0.28761598,-0.5188912,-0.5574851,-0.19669078,-0.55843794,-0.35758007,-0.18968041,0.27791047,-0.26271385,0.10890524,-0.055751618,0.26701772,-0.37324733,-0.016213706,0.32238102,-0.3571248,0.09039916,-0.48356915,-0.036570396,-0.123593606,0.5921643,0.07864182,-0.23667358,0.35966456,0.41113868,0.5246289,0.28910863,-0.26784986,-0.39293692,-0.26058796,-0.06120469,0.53796315,-0.12744766,-0.183875,-0.28838503,-0.1816512,0.35296285,0.5049013,0.014067107,-0.086422905,0.04029135,-0.32215637,-0.16585176,0.43343204,0.5133326,-0.43964446,-0.28636706,0.17715016,0.54140306,0.018572252,-0.32186922,0.09380691,0.16968364,-0.6313098,-0.24844159,0.04907397,0.045917787,0.5536406,-0.13622223,0.066555284,0.7661854,-0.05237677,0.038640976,-0.051504456,0.12817748,-0.1743496,-0.40659383,-0.28453556,0.33589894,-0.55251884,-0.11829701,-0.39098135,0.6678614,0.08039444,-0.5487702,0.48959133,-0.616246,0.061427884,-0.074873455,0.55838645,0.6322575,0.38006634,0.2769219,0.8179332,-0.20029303,0.23071964,-0.09540342,-0.27668113,0.121562704,-0.27827498,0.3376905,-0.42686364,0.3420468,-0.22741278,0.08322504,0.32324106,0.7345705,-0.43574816,-0.25878322,0.35373095,0.89005876,-0.3646816,-0.059777625,0.6299759,1.0483739,1.1728287,-0.079750136,1.2960429,0.41616076,-0.31403944,-0.2029229,-0.12557222,-0.56849635,0.1401217,0.19530566,-0.08807344,0.24957822,-0.1077576,-0.07571916,0.34556806,-0.323484,0.0034907688,0.01849262,0.19047913,0.09153095,0.11705831,-0.49975127,-0.20664747,0.12992097,-0.070447475,0.47614992,0.27969033,-0.30147383,0.4127812,-0.26613453,1.4720991,-0.05376864,0.07113419,0.23779385,0.5193784,0.37684706,-0.17566817,-0.04261684,0.4113981,0.17146803,-0.1372622,-0.5435255,0.09763791,-0.4016894,-0.2700316,-0.21949029,-0.40409258,-0.18764012,0.037700973,-0.42641932,-0.32824802,0.017236412,-0.36925462,0.38218307,-2.4353075,-0.37471014,-0.15463202,0.41465107,-0.23561452,-0.20982471,-0.5203525,-0.534927,0.35090506,0.106470056,0.5124043,-0.50941896,0.5584667,0.6344892,-0.5164102,-0.361887,-0.6902421,-0.011832494,-0.18877584,0.17958471,0.023707481,-0.40697446,-0.26969653,0.119243145,0.67139906,0.010752697,0.18751042,0.6474156,0.46978092,0.21508947,0.664867,0.04719525,0.6268105,-0.42914233,-0.27757305,0.3582186,-0.49281856,0.16508238,-0.20339431,0.12709872,0.71708894,-0.6017462,-0.99225795,-0.7047269,-0.096714534,0.8813655,-0.36863822,-0.6163541,0.084667616,-0.16670305,-0.18351103,0.20625709,0.7723472,-0.06135507,0.25944206,-0.6953138,0.08748814,0.04440065,0.2986205,0.10961339,-0.0040628817,-0.40775138,0.70479214,-0.18093036,0.47632602,0.08879215,0.24111421,-0.38278395,-0.23985133,0.10499439,0.89424163,0.13242105,0.059732113,-0.22354446,-0.28682846,-0.24605069,-0.27905992,-0.04054087,0.6170066,0.7170848,-0.20412898,0.16095644,0.4354931,-0.06409593,0.08380615,-0.16760461,-0.28552052,-0.08275115,0.13475358,0.5348728,0.79915625,-0.0030090695,0.4287454,-0.22677723,0.5490858,-0.3920747,-0.61678654,0.5440005,0.62548965,-0.20642884,-0.11142396,0.5438474,0.4909948,-0.6019348,0.60817695,-0.8056473,-0.5286562,0.5042108,-0.18569177,-0.42330676,0.1780307,-0.33906782,0.24344124,-0.6529767,0.16626072,-0.19578153,-0.31611106,-0.45173308,-0.33310336,-2.9522905,0.3334403,-0.04514139,0.08435827,-0.23460759,-0.075652845,0.30587906,-0.52356744,-0.5619185,0.08332589,0.23596287,0.73581374,-0.081875555,0.1855091,-0.34160584,-0.35712713,-0.15396605,0.30579227,0.006030078,0.31341556,-0.052981,-0.46256483,0.08293799,-0.019488137,-0.45690867,0.051722784,-0.73263544,-0.4644775,-0.088084474,-0.6361894,-0.3491481,0.6068544,-0.55614144,0.09471896,-0.37065023,0.10716375,-0.19106875,0.017932901,0.1466468,0.24997407,0.18709286,-0.14321494,0.22336677,-0.21549273,0.4323858,-0.12817457,0.2502256,0.13745862,0.09806083,0.0032362158,0.34589735,0.67168164,-0.23171768,1.1204362,0.2310401,0.011683964,0.20208819,-0.29170275,-0.29282507,-0.45466515,-0.31412128,-0.14335403,-0.505041,-0.384968,0.0058789025,-0.32060513,-0.85035646,0.7394718,0.054271843,0.24963917,0.025495112,0.4212007,0.39714986,-0.30203244,-0.058063462,-0.059599824,-0.12635861,-0.38058096,-0.2693848,-0.72033626,-0.5430755,0.23326617,0.97806895,-0.3837046,0.07898005,0.13498607,-0.18806031,-0.0023288017,0.35143763,0.1933658,0.22884059,0.66276836,0.008071088,-0.6271511,0.25439608,-0.2811639,-0.14627862,-0.59972006,0.14251274,0.7225422,-0.89110476,0.70781195,0.5072057,0.07962256,-0.20997477,-0.5181067,-0.23216587,-0.011092415,-0.23799445,0.40207213,0.12278696,-0.8202001,0.41748813,0.21640667,-0.5468616,-0.7436374,0.2043834,-0.21456665,-0.33108887,-0.12389346,0.40273842,0.27355677,-0.1261985,-0.19515419,0.01964378,-0.4527079,0.2543693,0.13655171,-0.07874218,0.514615,-0.23046957,-0.3569813,-0.77344966,-0.12735373,-0.45691025,-0.29269168,0.2886674,-0.07003938,-0.03903451,0.37846866,0.055268984,0.34004456,-0.2571994,0.074556574,-0.20910607,-0.27099082,0.2521689,0.2450342,0.45784223,-0.42315677,0.658535,0.016967379,-0.2425968,0.11926126,-0.032999154,0.3562539,0.042173427,0.6119156,-0.20139845,-0.17967036,0.3028556,0.7116474,0.18207575,0.46642727,0.26760596,-0.06196582,0.30259842,0.073381156,-0.05951488,-0.10819466,-0.4520659,-0.020102564,-0.33902976,0.18206836,0.52631193,0.2207873,0.52187455,0.113869995,-0.111179754,0.030520616,0.22241364,-0.37612152,-1.1251352,0.23218727,0.26272878,0.8708481,0.3533312,0.15260457,-0.32215744,0.60327125,-0.19239958,0.16449703,0.34530416,-0.07459772,-0.33920696,0.7975904,-0.5024104,0.4610853,-0.30435684,-0.069809094,0.09641704,0.20123771,0.41797277,0.82261854,-0.09853714,0.09198889,0.011192741,-0.20277621,0.022639852,-0.252787,0.084642425,-0.4514372,-0.36096317,0.8430053,0.37593862,0.4847214,-0.16990305,-0.15482217,0.014872755,-0.16989629,0.13471286,0.008297732,0.08704743,0.1337884,-0.5912813,-0.029274046,0.5610344,0.10846488,0.19148847,0.039442554,-0.3569361,0.20532015,-0.21564132,0.22493488,-0.08540491,-0.67971647,0.015992014,-0.3543568,-0.59108937,0.51336914,-0.117589876,0.08089293,0.18069285,0.05351563,-0.07937626,0.37080938,0.13570566,0.78316885,0.08509931,-0.16566047,-0.17542681,0.2044099,0.2734695,-0.34660733,0.1368638,-0.46751112,0.19628789,-0.6553358,0.6141436,-0.20253134,-0.44847167,0.30465147,-0.086785905,-0.08380599,0.5437896,-0.15239675,-0.040572014,0.152393,-0.15742522,-0.46497992,0.031314198,-0.45808363,0.18813089,0.09044993,-0.11934969,-0.25040683,-0.19049941,0.062189046,0.53334785,-0.087601885,0.3626839,0.37403548,0.2955467,-0.0847753,0.29731968,0.075140804,0.6955165,0.050639458,-0.039139714,-0.40733194,-0.4002852,-0.26568532,0.4546263,-0.0839934,0.17608148,0.16545175,-0.28877637,1.0783043,-0.025713142,1.0858797,0.0747613,-0.3762253,0.09302902,0.5149488,0.10207906,0.0527014,-0.37216404,1.0768036,0.5838085,-0.2565147,-0.06907041,-0.34143475,-0.13837855,0.38618916,-0.42359117,-0.1786177,-0.086513035,-0.69832104,-0.44817767,0.30007404,0.32622454,0.25648946,-0.2552362,0.42692775,0.093950786,0.19825247,0.2815456,-0.7075773,-0.29689506,0.28283325,0.42582148,-0.16339302,0.22483198,-0.28853515,0.3263141,-0.7977434,0.09303951,-0.65416473,0.04608289,-0.17353882,-0.48333898,0.19685364,0.21434556,0.34601104,-0.37345988,-0.30329192,-0.1088162,0.49451712,0.16932064,0.22293904,0.61397564,-0.2745194,-0.1240374,0.092050314,0.71014875,1.4004188,-0.45980594,0.02795296,0.45180196,-0.4515556,-0.7634385,0.32337168,-0.5389858,-0.12590139,0.006431639,-0.5786885,-0.41170275,0.26510268,0.14580235,-0.0018018186,0.14127992,-0.44620323,-0.000106774845,0.26499608,-0.19794115,-0.20957616,-0.13662575,0.43443763,0.58782387,0.019539138,-0.31480363,-0.018280277,0.39769384,-0.37760845,-0.5890666,0.08977066,-0.3850488,0.37236336,0.17084478,-0.2625715,-0.023041992,-0.01391171,-0.59150285,0.08907977,0.17519954,-0.35080928,0.1932911,-0.4085934,0.08673591,0.8799792,-0.04013588,0.015276661,-0.5048512,-0.5306989,-0.953087,-0.23930615,0.29900283,0.06288673,-0.017631318,-0.3319321,0.08172734,-0.23035452,-0.39124373,0.22277552,-0.42320046,0.36820114,0.22935078,0.44167078,-0.3087289,-0.96614397,0.08289779,0.10760776,-0.4448266,-0.6288859,0.53686374,-0.13951103,0.9311494,0.1528348,-0.08314938,0.14177233,-0.39310697,0.42694232,-0.42329562,-0.06338383,-0.80089164,-0.1458661,35 +590,0.23723601,-0.31741157,-0.51863974,-0.21602903,-0.1855695,0.025513934,-0.13345776,0.3043798,0.2945879,-0.16280945,0.017805714,-0.15707418,0.0390466,0.48277953,-0.0786963,-0.6817081,-0.20151179,-0.010012343,-0.5163501,0.58149564,-0.42385176,0.2762663,-0.17462642,0.24304909,0.27178928,0.4069634,0.14967002,-0.13867308,0.11445839,-0.0018374095,-0.039061207,0.10254162,-0.49132007,0.11920854,-0.03768372,-0.3421883,0.085700385,-0.3844723,-0.5447943,-0.6371633,0.47668678,-0.82894033,0.56386817,0.093615256,-0.2733864,0.27112362,0.22494327,0.3021899,-0.33021304,0.058911324,0.21170451,0.20261875,0.14710349,-0.08846049,-0.34439608,-0.56014097,-0.6040052,-0.0021314071,-0.57692426,-0.26634443,-0.29227957,0.09289983,-0.3727186,-0.09741732,-0.037480555,0.10593177,-0.50701797,-0.014219591,0.18978573,-0.12064503,0.2583117,-0.5009316,-0.09211388,-0.07902546,0.08481519,-0.21761315,-0.060546644,0.41813564,0.070918046,0.3543814,0.0052529573,-0.18861665,-0.27232566,-0.113527626,0.06188459,0.46548197,-0.15201347,-0.30115297,-0.23113738,0.13934635,0.20864597,0.28152344,-0.12690388,-0.31383073,-0.022867521,0.021504452,-0.09542832,0.46191677,0.44924495,-0.32410467,-0.40712392,0.4362915,0.4141299,0.22473416,-0.056083344,0.071959384,0.17912666,-0.42733952,-0.14570688,0.089444876,-0.21326797,0.3440434,-0.04286991,0.22421516,0.72587305,-0.2221423,0.21034104,-0.09177439,-0.084885955,-0.21482325,-0.24709867,-0.102372766,0.11056205,-0.5069687,0.26931265,-0.08576283,0.84936917,0.0976118,-0.6823789,0.3253983,-0.65288156,0.14563319,-0.25323355,0.6408587,0.7821236,0.15687965,0.3022836,0.72657406,-0.34438026,0.19604233,-0.120080695,-0.5027436,0.32880118,-0.11754906,-0.113061,-0.6706953,-0.09956079,0.13831261,-0.09530962,0.07177631,0.47896773,-0.49359798,-0.05865018,0.17661054,0.9499918,-0.29381093,0.079490885,0.45394012,1.0021559,0.8475411,-0.0021340125,1.2450842,0.24904037,-0.22642507,0.4135952,-0.5716339,-0.8766519,0.22382896,0.43662247,-0.37467167,0.3720904,0.13496384,0.13905749,0.22379883,-0.39999786,0.12992978,-0.20334196,0.31050327,0.04530175,-0.0072946046,-0.43152764,-0.19209117,-0.0911744,0.05227252,0.18339866,0.26923192,-0.3151507,0.06404987,0.015730321,1.7644706,-0.16166535,0.1499337,0.09565416,0.5613585,0.26325205,-0.13503274,-0.14810051,0.37479994,0.47959545,0.050409075,-0.70262563,0.21784078,-0.28760192,-0.41860044,-0.16019453,-0.42615703,-0.047699623,0.019036083,-0.3122779,-0.055266403,-0.029753773,-0.44025066,0.3939566,-2.8608623,-0.12164876,-0.14083073,0.23053044,-0.3311507,-0.1176573,-0.1313314,-0.39636838,0.44267422,0.4429301,0.4163407,-0.5355333,0.22047265,0.64799404,-0.5533806,-0.0054508355,-0.47061428,-0.033550207,-0.11043039,0.5655752,-0.056967326,0.002569891,-0.12529936,0.49235246,0.2897122,0.12470555,0.10678708,0.35209534,0.44452852,0.11473232,0.3063143,-0.067906536,0.4216817,-0.17514008,-0.21801092,0.33397192,-0.16397358,0.35739473,-0.10358273,0.15404174,0.38325214,-0.45740348,-1.0038518,-0.52038735,-0.36341742,1.030193,-0.3372853,-0.30833203,0.401893,-0.3611267,-0.13546422,-0.112912536,0.49504873,-0.1701952,-0.16308157,-0.7953519,0.17031655,-0.18463963,0.16565546,0.122129515,-0.009564941,-0.30902955,0.6380415,-0.044514094,0.3682121,0.11185185,0.040263914,-0.17911185,-0.39558363,0.119921915,0.7259715,0.3679072,0.09424185,-0.24323867,-0.26746315,-0.19844256,-0.22218587,0.049164873,0.434005,0.8170439,-0.050856348,0.024057444,0.26769862,-0.25233084,-0.025963545,-0.15839726,-0.22016133,0.03895799,0.043851018,0.46325588,0.5161981,-0.088013224,0.43907323,0.003236069,0.14925933,-0.21291365,-0.39835328,0.484071,0.75310576,0.087525286,-0.16864027,0.69703424,0.60826993,-0.28669143,0.53531396,-0.7409493,-0.12707046,0.46282944,-0.22995909,-0.40582854,0.15697318,-0.4138379,0.044890944,-0.93689847,0.22875403,-0.09783486,-0.3659236,-0.37544954,-0.10444586,-3.7245374,0.14927444,-0.27182415,-0.27554253,-0.16346142,-0.017908482,0.49152344,-0.5779662,-0.61961544,0.14710881,0.07767132,0.70404065,-0.0026898568,0.14530146,-0.18351197,-0.11941065,-0.36424637,0.14627448,0.0372653,0.30487525,-0.019472856,-0.5037655,-0.1697482,-0.05846131,-0.40819496,0.13671216,-0.5160901,-0.36370367,-0.22841246,-0.7378843,-0.07263062,0.6052323,-0.10922316,-0.10048839,-0.2880089,0.04666076,-0.09417677,0.3561603,0.25622928,0.08164982,0.14871684,0.024034735,-0.07684328,-0.3167896,0.467009,0.0025374019,0.46933997,0.35297912,-0.090670936,0.14337257,0.5750462,0.4050671,-0.14588578,0.7074458,0.5953571,-0.17682728,0.21259154,-0.23005135,-0.16238227,-0.50766903,-0.39644894,-0.2782071,-0.31291935,-0.5283191,-0.24557616,-0.35518634,-0.78472286,0.5538099,-0.039623592,0.41301364,-0.019681403,-0.06255894,0.40075234,-0.022118052,-0.026830005,-0.022183742,-0.23749122,-0.40899545,-0.26525268,-0.57531774,-0.39479524,0.5136484,0.97425616,-0.2839809,-0.08423188,0.06476196,-0.26254943,-0.18369819,-0.039058384,0.08369867,0.41515413,0.42653793,0.12183338,-0.62680274,0.5307575,0.06448081,-0.018586388,-0.51429486,-0.009678107,0.5230115,-0.59882903,0.47115898,0.15582058,0.12487265,-0.009507399,-0.4912546,-0.17595206,0.078321464,-0.18053912,0.38559306,0.22306725,-0.81352425,0.3855664,0.26012465,-0.30192447,-0.74542207,0.48234856,-0.032992575,-0.2627406,-0.18099426,0.23718295,0.05781922,0.035610676,-0.11708157,0.43008703,-0.26976895,0.30112785,0.17661852,-0.08984613,0.46397576,-0.17562817,-0.1359716,-0.62372786,0.11850143,-0.37175024,-0.2951283,0.32750013,0.015780669,0.12251329,0.16067736,-0.036356654,0.35726264,-0.34845978,0.08902417,0.11633983,-0.2807306,0.36826575,0.38650683,0.456269,-0.36606672,0.5546437,0.0050251232,-0.1268515,0.15682319,0.07554588,0.47088617,-0.032692246,0.29240027,-0.013785133,-0.21900108,0.39867738,0.94613266,0.09322552,0.37621593,0.021887949,-0.09206944,0.24479148,0.068641074,-0.10611253,0.06266431,-0.5560207,-0.12936503,-0.06762089,0.22208947,0.36202717,0.20438808,0.23762989,-0.15732247,-0.32761967,0.15966463,0.24343158,-0.05515149,-1.0927793,0.24445917,0.23475745,0.59834313,0.5845473,0.013189531,-0.024866374,0.70247585,-0.15323287,0.09157748,0.42586216,-0.0071955966,-0.6263292,0.5869511,-0.55618125,0.5834044,0.0245165,-0.07013343,0.0764927,0.13469249,0.29996544,0.84059644,-0.1240638,-0.08900615,0.028568882,-0.31311563,0.16257557,-0.19219524,0.19648936,-0.6171707,-0.31990668,0.48255965,0.58908135,0.17345181,0.03966478,-0.0500783,-0.04958064,-0.020276723,0.10205193,-0.01759785,-0.12293197,0.023707118,-0.7800588,-0.29264075,0.40730408,0.13999228,0.13499582,-0.19153151,-0.14087102,0.19271299,-0.32425025,-0.054303177,-0.05341351,-0.68181,0.07347288,-0.22854519,-0.4150883,0.5394169,-0.36310437,0.302407,0.08362213,0.015930153,-0.30989265,0.349865,0.10283006,0.78234303,-0.13055107,-0.09485397,-0.4316889,0.044548906,0.16559717,-0.17521238,-0.17614794,-0.3576744,0.015683692,-0.7649187,0.52869225,-0.09604122,-0.45652348,0.043189764,-0.24069493,0.1188895,0.4467736,-0.016405033,-0.25694457,-0.31410423,-0.29113153,-0.31048265,-0.16701987,-0.22797336,0.19049074,0.15893942,-0.19563405,-0.18847407,-0.14136547,-0.1435934,0.41888678,-0.082543865,0.3372418,0.3915825,0.22019264,-0.11786776,-0.09477374,0.33533397,0.581548,0.0020444302,0.11677925,-0.16224912,-0.28590012,-0.32371476,0.16512798,-0.23875104,0.35989887,0.14533305,-0.3796098,0.5879732,0.05737812,1.0979252,0.0740587,-0.2810766,0.114315234,0.5294451,0.14586109,-0.13105632,-0.40842313,0.8460855,0.7085969,-0.05082411,-0.23252045,-0.40218294,-0.15087602,0.26614684,-0.3089957,0.016617142,0.022069873,-0.72906774,-0.22116736,0.38993073,0.29084063,0.11869938,-0.032855473,0.09792212,-0.05812156,0.087042876,0.38738126,-0.4492634,-0.10334941,0.27420202,0.10286784,0.23394845,0.26776022,-0.5500474,0.37185276,-0.5402545,0.10372203,-0.3140906,0.18062589,-0.1981521,-0.31888103,0.18807562,-0.07525751,0.48182303,-0.19481403,-0.42152703,-0.29527208,0.5670741,0.09094851,0.11979391,0.6992677,-0.28553337,0.2521016,-0.108475655,0.4939251,1.1204472,-0.1825179,-0.04679946,0.25681263,-0.3238719,-0.8511787,0.24457504,-0.45835397,0.21959308,-0.057945963,-0.24291739,-0.35808864,0.25046295,0.07814404,0.08993174,-0.06882334,-0.44580272,-0.28962997,0.16765057,-0.13628168,-0.2644073,-0.38190416,0.072012104,0.80514234,-0.28227562,-0.2258994,0.15454045,0.35520172,-0.14379017,-0.5556449,0.00021986548,-0.21718827,0.2746054,0.052439187,-0.33132,-0.08911614,0.054752257,-0.3729237,0.23817798,0.24034779,-0.37016127,0.061491627,-0.20902443,0.013209838,1.0267149,-0.26486605,-0.064291276,-0.7341065,-0.43100378,-0.94328505,-0.36132902,0.5854522,0.14265035,0.036897037,-0.4242531,0.22421573,-0.009362056,0.16205469,0.025383115,-0.5215066,0.43400222,-0.0014618177,0.46963173,-0.1132526,-0.9478339,0.16495815,0.105837785,-0.30415684,-0.7506767,0.6960042,-0.33484605,0.8257475,0.12643518,0.07939366,0.1384463,-0.35937613,0.057028327,-0.36639068,-0.28975603,-0.85127044,0.19708978,39 +591,0.5865426,-0.27039734,-0.5411164,-0.21508524,-0.4211003,-0.11410742,-0.12724973,0.561283,0.29723006,-0.2434621,-0.11166589,-0.098872304,0.1244737,0.37874353,-0.07982186,-0.6159099,0.24246931,0.31060278,-0.40500763,0.58638126,-0.38024595,0.19539554,-0.1549843,0.52001363,0.49105242,0.12473583,0.054229584,0.1656536,-0.14493527,-0.26506907,-0.19564725,0.33409193,-0.3716909,0.28911716,-0.005743083,-0.40413114,0.017386578,-0.70146424,-0.2938755,-0.79631776,0.27139103,-0.8441274,0.5283448,-0.06505564,-0.27303508,0.21084832,0.3637771,0.37981775,-0.1304351,-0.19007939,0.03904783,-0.19937216,-0.159933,-0.16265787,-0.19649641,-0.5429029,-0.56070876,0.03162156,-0.36873156,-0.21703553,-0.45224234,0.22758195,-0.30932778,-0.10183585,0.018788446,0.75412154,-0.3794884,0.12888712,0.10858084,-0.113868386,0.10135456,-0.6310831,-0.23083442,-0.09407345,0.29977867,-0.115757436,-0.28174102,0.26921776,0.4285856,0.27277228,0.066065945,-0.2958284,-0.24798962,-0.068072535,-0.061257277,0.44454035,-0.11145489,-0.5035152,-0.06423904,0.003899299,0.23029429,0.3365059,0.3332494,-0.06465682,-0.14541532,0.07636969,-0.12790582,0.5783715,0.41049716,-0.37374532,-0.0486458,0.27347308,0.37322316,0.29566884,-0.14626601,-0.120997615,-0.04373335,-0.6260777,-0.18475959,-0.034966595,-0.24186036,0.39686987,-0.19233552,0.28835198,0.5949469,-0.087000474,-0.20058991,0.25179452,0.15832175,-0.12416744,-0.45170033,-0.30468422,0.21852407,-0.47770816,0.33550274,-0.1728815,0.937012,0.20757246,-0.42083198,0.22354858,-0.55248195,0.21803251,-0.20040108,0.2948973,0.8154225,0.35706708,0.44416106,0.6502054,-0.28523275,-0.012207081,-0.019455872,-0.3541188,-0.065272816,-0.27745774,0.15663551,-0.5873248,0.06458971,-0.17760123,-0.060120728,0.2211962,0.60615075,-0.6297978,-0.26388377,0.2784214,0.80915797,-0.223236,-0.34514076,0.9706417,0.98107326,1.0537221,0.11269375,0.82606405,0.1393448,-0.08484103,0.14872374,0.10859704,-0.5437421,0.36918908,0.43368292,-0.20751932,-0.032078348,0.008205552,-0.093420394,0.6269751,-0.1457124,-0.33778852,-0.14968294,0.20629667,0.14385423,-0.2871892,-0.55695903,-0.48740008,-0.14118853,0.08871979,0.13742866,0.32238594,-0.121428095,0.46358302,-0.18453732,1.5275905,0.038067136,-0.10835458,0.042026144,0.51374,0.377753,-0.22638515,-0.055654563,0.35914373,0.31009224,0.12353305,-0.6238538,0.2811801,-0.2714596,-0.29843238,-0.054202914,-0.44495016,-0.119753465,0.17103778,-0.47765335,-0.1606542,-0.2537364,-0.27164152,0.54585344,-2.7475166,-0.1998633,-0.09150505,0.26567227,-0.11020296,-0.42557973,0.07581984,-0.4380979,0.49242923,0.278529,0.59007305,-0.5112358,0.26608732,0.35500643,-0.70729107,-0.1085507,-0.7224351,-0.060617015,-0.044459406,0.3329623,0.013229163,-0.14911185,0.04225783,0.041375957,0.6142012,0.047717627,0.09742844,0.23243538,0.29015476,-0.29919252,0.63256824,-0.14176983,0.73833364,-0.14795865,-0.31119597,0.2332049,-0.32217452,0.23628268,-0.13665298,0.087882794,0.7473738,-0.3761892,-1.1980317,-0.7042881,0.06733135,1.1333352,-0.10006637,-0.3814339,0.368889,-0.5455359,-0.2344843,0.116069324,0.55450493,-0.05838162,-0.21382138,-0.56680167,0.13034596,-0.028459342,-0.2182983,-0.04411183,-0.17559522,-0.51035696,0.7765267,-0.044782043,0.48052296,0.11072229,0.27130404,-0.3348738,-0.33129567,-0.1100845,0.6621698,0.4601526,0.05816549,-0.31670853,-0.17096819,-0.4499958,-0.121698685,0.23295961,0.6871203,0.45294094,-0.09642812,0.18103886,0.28800362,-0.0043872735,0.12026543,-0.074752755,-0.32085225,-0.2117367,0.10089613,0.6816381,0.6824771,0.060190614,0.64805996,-0.05536823,0.31211573,-0.094341636,-0.5132459,0.524314,1.341614,-0.36639565,-0.4370707,0.6514654,0.35072616,-0.13306642,0.4151063,-0.42068547,-0.18514608,0.42494744,-0.07814787,-0.4395297,0.04527027,-0.28047365,-0.03194764,-0.8509915,0.23041147,-0.39988676,-0.74785614,-0.43097422,-0.059133478,-3.7448606,0.34478062,-0.32121152,0.013361656,-0.21053907,-0.3974616,0.042643555,-0.7657987,-0.5309949,0.17662327,0.060966946,0.9413132,-0.21255587,0.025211811,-0.2040618,-0.50525576,-0.2532965,-0.040756878,-0.027482709,0.55825716,-0.11876829,-0.22384636,0.3319372,-0.085489154,-0.49605832,0.042723935,-0.68629587,-0.3915425,-0.21920379,-0.6266847,-0.28365582,0.5968511,-0.3048786,0.16082433,-0.29701298,0.062870234,-0.02533845,0.28073555,0.014970825,0.104562074,0.082308106,-0.18559149,0.10600399,-0.30757967,0.17150304,-0.029925277,0.39050725,0.18816954,0.077737845,0.31803954,0.5867289,0.7248557,-0.1496518,1.0756444,0.4358999,-0.060769293,0.22813955,-0.24815513,-0.4773332,-0.386782,-0.28866312,0.022537913,-0.40576437,-0.3513417,-0.045300715,-0.27377516,-0.793737,0.5560841,0.14464453,0.31877425,-0.07594592,0.28103957,0.64708394,-0.28492767,-0.16399112,0.040597063,-0.16527121,-0.7471203,-0.16128698,-0.5079543,-0.56217194,0.003097204,0.90665334,-0.3707752,0.03770057,-0.02030778,-0.25466934,0.15566863,0.20412056,-0.0038522023,0.1383695,0.4440483,-0.16802701,-0.60211486,0.37600133,-0.34990126,-0.12096372,-0.49291816,0.5057299,0.5256196,-0.4487223,0.6402226,0.39329004,0.15417777,-0.24078178,-0.5700321,-0.03432067,0.08419454,-0.13119796,0.42954132,0.34297785,-0.9995558,0.4949834,0.34915513,-0.115223214,-0.8314091,0.59634006,-0.07106363,-0.2806113,-0.22064236,0.46155065,0.39812344,-0.0156196505,-0.27741432,0.20430242,-0.4643737,0.23104326,0.04435388,-0.02876402,0.04442011,-0.2624881,-0.09602526,-0.7184274,0.037406836,-0.5209284,-0.33837125,0.20411023,0.04465476,0.11098313,0.13963588,0.09389241,0.2776592,-0.3945255,0.06443207,-0.22049357,-0.34430993,0.2772643,0.53681177,0.5488383,-0.51501155,0.59292424,0.0505082,0.043729976,0.20520104,0.045401867,0.3471648,0.053307064,0.595525,-0.07371065,-0.16105124,0.07580559,0.7495196,0.0074080667,0.50018466,-0.019309264,-0.030033153,-0.027104355,0.050829057,0.2905181,0.045450196,-0.6004046,0.053169426,-0.45066994,0.14088513,0.5268268,0.11329711,0.17690693,0.13063893,-0.45507926,0.121947676,0.040893175,-0.04106543,-1.310692,0.57964855,0.30486745,0.9918823,0.35044637,0.07400349,-0.21186279,0.84525335,-0.039571963,0.074688084,0.2475253,0.06460461,-0.32724506,0.49909657,-0.99608284,0.46863887,-0.018099539,-0.08481419,-0.031205984,-0.00086891424,0.5401429,0.71183,-0.48634583,0.017293049,0.0358038,-0.41618824,0.2675238,-0.4385656,-0.07021755,-0.5802332,-0.35412538,0.6797858,0.51272756,0.24287741,-0.31374672,0.023998972,0.17126696,-0.12646069,-0.016158726,0.040578917,0.0242413,0.08519365,-0.6743866,-0.122445785,0.42684236,-0.12103956,0.33048576,-0.043508872,-0.085639805,0.26384383,-0.051008247,0.009498853,-0.031744774,-0.64973456,0.121009365,-0.21236229,-0.6214012,0.5374146,-0.09697507,0.18902312,0.23149918,0.16299923,-0.07716848,0.55428576,-0.01729835,0.93242145,-0.074422866,-0.010860874,-0.42906666,0.20108119,0.016215783,-0.16085854,-0.05936729,-0.36736518,0.07994522,-0.57878006,0.4707677,-0.011740987,-0.35242558,0.094205104,0.050616622,0.10039612,0.4235341,-0.14532849,-0.059626177,-0.079057775,-0.21352814,-0.18260351,-0.40316376,0.114470094,0.27032742,-0.0024715753,0.008605292,-0.23418441,-0.08504473,-0.038045816,0.323916,-0.11981957,0.4179419,0.24959747,0.034064963,-0.119077876,-0.1794168,0.32658243,0.48655635,-0.20967017,-0.32308152,-0.39126825,-0.29516298,-0.40972805,-0.017578758,0.04234526,0.33963457,0.1081938,-0.100105636,0.6789077,-0.13614038,1.2852706,-0.1580615,-0.50159466,0.14190345,0.6047075,-0.09015046,-0.16759965,-0.20087315,0.9344599,0.32379788,0.003049158,0.024584893,-0.5908655,0.060944237,0.31479403,-0.13284913,-0.03036158,-0.005112117,-0.47586548,-0.22496483,0.20959689,0.20082727,0.29843193,-0.12603186,0.11992713,0.61737126,-0.0009541787,0.2501106,-0.37134594,-0.3265368,0.15766206,0.43852887,-0.1561067,0.18006667,-0.58798623,0.26815265,-0.6348689,0.18213719,-0.26966864,0.36247936,-0.27033678,-0.21798012,0.25600076,-0.04522915,0.33937454,-0.2521271,-0.19436851,-0.1343496,0.52125895,0.29471833,0.09784338,0.5543607,-0.33389467,-0.06593768,0.20186068,0.5029796,0.81917435,-0.23485494,-0.1280859,0.29546925,-0.31668073,-0.6407167,0.37259883,-0.27006054,0.19028538,0.12610963,-0.10045084,-0.5445056,0.16192707,0.37354758,0.13234688,-0.105708525,-0.6447999,-0.12406262,0.224048,-0.22589915,-0.05637672,-0.3917332,0.11591964,0.45464373,-0.21460383,-0.34522316,0.051701333,0.16880465,0.1533564,-0.51743627,0.05493113,-0.3915552,0.36935446,-0.20727502,-0.4382833,-0.3078174,-0.052062947,-0.5293773,0.22178769,-0.037903097,-0.20634006,0.24148354,-0.1737005,-0.034575783,0.8727468,-0.27825406,0.29382423,-0.51190174,-0.53562474,-0.55863225,-0.37792033,0.35448748,-0.06534509,0.04886899,-0.6924681,0.095129974,-0.053951785,-0.36107412,-0.22279261,-0.33712628,0.30564085,0.06065561,0.38066465,-0.08777295,-0.8410194,0.3271832,-0.04499791,-0.20398869,-0.58927864,0.31985492,-0.15420176,0.7051303,0.0862642,0.059218626,0.10736867,-0.14662705,-0.014860248,-0.25070497,-0.332716,-0.49981344,-0.07554189,47 +592,0.5033706,-0.065872945,-0.33263,-0.10269722,-0.19437203,0.10411717,0.0074642072,0.73575234,0.17322804,-0.57270473,-0.28781885,-0.2713534,-0.07704392,0.37778205,-0.16716415,-0.45444202,0.04522787,0.04893695,-0.22889648,0.5469494,-0.2725411,0.3903744,0.18766928,0.29169074,0.26656818,0.14431868,0.18651588,0.028199745,-0.06342395,-0.30124888,-0.30911094,-0.035927214,-0.6316484,0.27763626,-0.196455,-0.45837066,-0.18884864,-0.66480607,-0.4558994,-0.80038583,0.4036906,-1.0406057,0.45931742,-0.12146015,-0.24659474,0.18039678,0.09099285,0.17403316,0.023331918,-0.16778456,0.06695049,-0.13002929,0.043049514,0.030563427,-0.28817326,-0.33969748,-0.666796,-0.0040571634,-0.34493953,-0.3088532,-0.37248868,0.12502223,-0.3919288,0.01139587,-0.044032462,0.45158562,-0.4079021,0.08154435,0.04300296,-0.1303307,0.26278383,-0.70148146,-0.29442957,-0.13148247,0.012319148,-0.08460584,-0.19860986,0.516755,0.37852934,0.379443,-0.13698067,-0.07570008,-0.18493113,-0.039632,0.15895587,0.6200563,-0.14785165,-0.5200456,-0.11199717,0.021475209,0.41636482,0.37126768,0.258098,-0.31628734,-0.1058689,-0.031386714,-0.23034307,0.39914754,0.5563552,-0.14468387,-0.3360278,0.43295357,0.3794715,0.052639183,-0.07970401,0.09005069,-0.04241793,-0.38035044,0.012343377,-0.008329784,-0.29417354,0.74135125,-0.07013284,0.20710333,0.64938384,-0.27416304,0.07589174,0.051580183,-0.02510308,-0.15693912,-0.29540518,-0.20019712,0.26046038,-0.39034936,0.27418563,-0.2778888,0.8175195,0.18177645,-0.8981272,0.32067,-0.48478243,0.13322942,-0.15290125,0.47403118,0.6176514,0.3770304,0.299424,0.82326114,-0.47753423,-0.06981884,-0.018556667,-0.31970882,-0.16175137,-0.3173836,0.12205908,-0.43255094,-0.022929367,0.1924635,-0.26436263,0.20679675,0.3011935,-0.47108254,-0.1586373,0.08629568,0.7982536,-0.25657415,-0.073139615,0.89082915,1.1605655,1.0420562,0.076705754,1.0767955,0.17952417,-0.1758785,0.19651996,-0.03054093,-0.69496536,0.22395352,0.45811316,-0.12949839,0.25342005,0.07466912,-0.15585701,0.11896013,-0.5962571,0.021709498,-0.1263187,0.19285645,0.28247002,-0.15284577,-0.40307745,-0.18753932,-0.09118057,0.047496192,-0.026167009,0.29218286,-0.2692799,0.4139055,0.03985071,1.5705358,-0.03488336,0.036171153,0.13473186,0.7000811,0.12144495,-0.2153271,0.08730182,0.21377009,0.352004,-0.0013853782,-0.46806702,0.09635238,-0.29960835,-0.47174734,-0.10159551,-0.36571148,-0.12251568,0.03034273,-0.33080086,-0.2666702,-0.19493291,-0.31139535,0.52791405,-2.8003385,-0.1983142,-0.09780951,0.33326423,-0.29483798,-0.30024192,-0.0034809662,-0.6324472,0.54846436,0.3676437,0.4565794,-0.69009835,0.11021367,0.48048022,-0.41594583,-0.15201822,-0.6284783,0.041414626,0.041254982,0.3719765,-0.024792096,0.058392763,0.22781152,0.04596202,0.60032785,0.32189757,0.14082131,0.3413348,0.39230645,-0.09494224,0.3636474,-0.14068547,0.49476704,-0.17231591,-0.027046192,0.38575158,-0.3427524,0.1776419,-0.19212542,0.077491514,0.46297505,-0.4451145,-0.73940116,-0.75311685,-0.45195687,1.243999,-0.27458364,-0.6271016,0.32560426,-0.028156023,-0.039496496,-0.28281492,0.5646845,-0.20339197,0.02255223,-0.58419967,-0.107128866,-0.10564503,0.04476195,-0.12342696,0.031144848,-0.3833328,0.6712607,-0.14554976,0.61671233,0.26610512,0.23200037,-0.32014227,-0.44056973,0.055829618,0.95559925,0.5458866,0.12016937,-0.21585509,-0.044888403,-0.42704022,-0.4411022,0.18224184,0.60737,0.7711039,-0.05406957,0.13351263,0.34717676,0.023413058,0.09918596,-0.054262117,-0.23825748,-0.15144761,-0.041705377,0.54827,0.588874,-0.21143256,0.49848923,-0.15727901,0.14021006,-0.024032546,-0.5131645,0.49514216,1.0406587,-0.21347111,-0.18427332,0.52509576,0.37870315,-0.3942868,0.452463,-0.6264433,-0.25604007,0.5973712,-0.20038256,-0.52128345,0.06460962,-0.28509685,0.07106348,-0.68620336,0.32790482,-0.20084296,-0.6642695,-0.36014175,-0.08243037,-2.5050256,0.07711427,-0.16856956,-0.33522013,-0.14553462,-0.34298408,0.08813346,-0.43096483,-0.5723268,0.16518882,0.1410574,0.6895062,-0.013688241,0.23190393,-0.16015497,-0.11817961,-0.56842744,0.1785678,-0.06238842,0.41302866,-0.026826914,-0.24287528,-0.049321525,-0.111024335,-0.7395886,0.06852122,-0.36538675,-0.48959145,-0.25090203,-0.3505836,-0.34332377,0.67921436,-0.47384816,0.10068533,-0.089377716,-0.14766453,-0.15706635,0.21722616,0.15619574,0.15121374,0.06585197,-0.07020705,0.17276071,-0.3110611,0.5452081,0.088229336,0.39065728,0.41467845,-0.2568415,0.3216197,0.3970488,0.5983649,-0.025557866,0.8712018,0.26107126,-0.052493688,0.24394149,-0.29379147,-0.26735523,-0.55254656,-0.11730306,0.0001571637,-0.31771237,-0.5540109,0.018090853,-0.3797644,-0.8202607,0.23914184,0.12136175,0.5277577,0.008836164,0.2041901,0.5334482,-0.2009164,-0.036721334,-0.015535629,-0.03832651,-0.72529835,-0.36623,-0.78725564,-0.48964965,0.16266595,0.78870076,-0.06604055,-0.26028317,-0.026678149,-0.17924796,0.080178685,-0.011624658,-0.052712202,-0.12944938,0.25804877,-0.05108963,-0.7762859,0.50168365,0.08107201,-0.109325565,-0.67092615,0.4156074,0.533268,-0.55508935,0.3037262,0.23499832,-0.017028948,-0.3147745,-0.5356678,-0.13954562,-0.27223003,-0.19614789,0.2580977,0.1492986,-0.78775144,0.34014302,0.34647465,-0.23419729,-0.67542964,0.48838425,-0.047169562,-0.08825047,-0.082097724,0.22884259,0.35360336,-0.057279684,-0.06027531,0.21263435,-0.5765323,0.31923765,0.14773099,0.05966007,0.45588467,-0.10718989,-0.07315012,-0.6569548,0.2192422,-0.51423323,-0.23346584,0.16583571,0.092280775,0.10955414,0.29161316,0.17858575,0.33127588,-0.14224522,0.19636253,-0.059570692,-0.27972752,0.45553252,0.32076344,0.60512096,-0.5104504,0.67052215,0.011661253,-0.16898566,0.19893423,0.18017012,0.4274452,0.2502712,0.26056486,0.026263608,-0.34394276,0.03274252,0.59420556,0.28067493,0.36193526,0.05371078,-0.13132955,0.33397773,0.0603931,0.2195411,0.0009685847,-0.7362438,-0.033106677,-0.38518798,0.012655352,0.4900432,0.16434486,0.26769,-0.16833097,-0.21990037,0.003035621,0.03416396,-0.21249701,-1.280844,0.335636,0.122726835,0.9520646,0.4785784,-0.15826319,0.05286646,0.65649307,-0.065373175,0.22144611,0.42642614,0.017413922,-0.51573074,0.536275,-0.8415795,0.5205526,0.048663273,0.037300196,0.050540037,0.1943869,0.35531324,0.75966686,-0.30198,0.038107496,-0.031604685,-0.32778847,0.1850463,-0.45680097,0.162961,-0.5863316,-0.26766437,0.53511155,0.48236483,0.17585744,-0.09285466,-0.01632687,0.008334055,-0.10125114,0.16796002,0.031794682,0.09372401,-0.10363148,-0.46094644,-0.24767083,0.48800653,-0.30160004,0.20190932,0.04333747,-0.13158488,0.13611166,-0.11855139,-0.24159226,0.021814413,-0.780336,0.088029854,-0.22861758,-0.37868202,0.2768888,-0.05302882,0.24232648,0.19076003,0.003829602,-0.18092966,0.077929646,0.40746287,0.66593105,-0.09532277,-0.2741087,-0.48689908,0.12538753,0.15484709,-0.18912147,0.13121739,0.09092838,-0.27251303,-0.3987099,0.51299393,-0.15276036,-0.22041632,0.24577409,-0.21359584,-0.05602268,0.5616344,-0.08747883,0.012940435,-0.062037177,-0.19042148,-0.22354023,-0.042889435,-0.10936639,0.3339438,0.22272705,-0.18760483,0.016476192,-0.20477623,0.0059577683,0.109062046,-0.101182535,0.38903826,0.3034386,0.031740922,-0.43450117,-0.24403025,0.15635058,0.4193192,0.17704989,-0.06789043,-0.10042893,-0.4577567,-0.31785202,0.11039622,-0.12761006,0.4256882,0.12614848,-0.2825383,0.59528595,0.13160157,1.1460341,-0.011813281,-0.32212564,0.08123154,0.45568416,0.032356802,-0.122654796,-0.31627372,0.91967,0.528979,0.017969351,-0.05784662,-0.3702819,0.11406803,0.34224856,-0.23664315,-0.29021648,0.021145385,-0.65857977,-0.3960142,0.12871635,0.25252932,0.16247302,-0.08355821,-0.06371571,0.40227473,0.020925047,0.51414233,-0.24396883,-0.08545943,0.3321333,0.1675372,0.017200662,0.065110214,-0.43533653,0.26367372,-0.569145,0.10343652,-0.121763624,0.14723355,-0.17448911,-0.24305645,0.1442832,0.13901989,0.52266836,-0.15970968,-0.5937983,-0.20391844,0.5265536,-0.015533267,0.13120948,0.45782667,-0.23231615,0.033063814,-0.11878947,0.37878805,1.2793727,-0.01037176,0.14580148,0.26583436,-0.524919,-0.7221661,0.51905006,-0.24493077,0.41246402,-0.00051425054,-0.09728964,-0.48706314,0.2423726,0.27138603,-0.12148705,0.1655971,-0.6362968,-0.40482014,0.1688791,-0.39612573,-0.2713071,-0.5442213,0.09317325,0.51257294,-0.33410823,-0.30392128,0.16856065,0.24553344,-0.16727063,-0.65218264,-0.10056508,-0.1782706,0.20769198,-0.024351437,-0.4265961,-0.15290122,0.09387325,-0.43599933,0.19524759,-0.18315227,-0.35721546,0.06575783,-0.28158897,0.15494703,0.90157723,-0.12477572,0.0058499756,-0.5755616,-0.57112956,-0.6959569,-0.6187017,0.38448113,0.15299818,0.001231801,-0.62052476,-0.09463981,-0.09782852,0.00620201,-0.17865174,-0.37433618,0.4253799,0.16172965,0.36117303,-0.011927917,-0.72200674,0.14201763,-0.040780548,0.073523894,-0.56776935,0.43142828,0.09943669,0.8490766,0.18499003,-0.0077589382,0.18633522,-0.5381021,0.03447589,-0.18352225,-0.28072882,-0.3948146,0.24920394,48 +593,0.28296974,-0.18701656,-0.44073164,-0.1219089,-0.2731871,0.022565452,-0.24025175,0.087753765,0.26838136,-0.15368168,0.009890364,-0.030889751,0.19334921,0.41574317,-0.018518362,-0.6444055,-0.13949503,0.06329202,-0.69267344,0.19822948,-0.576518,0.2854963,-0.06288003,0.5571455,0.029290993,0.3520889,0.28348717,-0.045039766,-0.02236612,-0.18131143,0.09454631,0.33742717,-0.59456325,-0.006124657,-0.038510386,-0.46215397,0.13868678,-0.22002445,-0.39532945,-0.6715032,0.20425987,-1.0365541,0.581943,0.007928161,-0.063754454,-0.06694886,0.39611974,0.46762833,-0.3538117,-0.005137072,0.35729483,-0.41348055,-0.043356977,-0.5345471,-0.14760749,-0.48092702,-0.44435737,-0.13180712,-0.5670032,-0.46100077,-0.33437964,0.19540018,-0.3063277,-0.08502818,-0.07390404,0.18711337,-0.36409342,-0.0036776157,0.34976307,-0.28925863,0.42291376,-0.60853195,-0.13548088,-0.01058736,0.408147,-0.10054219,-0.23730978,0.562779,0.19001411,0.22676292,0.30847603,-0.23232195,-0.50379586,-0.22076076,0.12120204,0.44530126,-0.37704465,-0.06147838,-0.20875695,0.018666247,0.35115528,0.51720905,0.03209947,-0.08178074,0.020291705,-0.015306418,-0.045245435,0.6256482,0.54497176,-0.20937745,-0.5714332,0.11027126,0.49654043,0.124394014,-0.30122143,0.033804674,0.045232274,-0.4991175,-0.15229866,0.20910779,0.03086826,0.397135,0.010397499,0.13095254,1.038224,-0.3544665,-0.007012349,-0.06802133,0.097088724,-0.03473986,-0.37384537,-0.32178015,0.27910712,-0.5630461,0.06618199,-0.37923118,0.69084156,0.03543022,-0.64187235,0.24021856,-0.5855158,0.052785356,-0.10992486,0.62959945,0.56514835,0.4431751,0.2988902,0.693365,-0.19544347,0.238877,-0.066513814,-0.30446988,0.11764552,-0.3253743,0.14437367,-0.48989674,0.0392086,-0.17020147,0.079429194,0.32594424,0.36462194,-0.5556033,-0.02639854,0.37731028,0.8671617,-0.3872862,-0.015178671,0.5370363,1.2198901,0.90646714,-0.017077649,0.901535,0.42852336,-0.2647919,0.012063698,-0.16952676,-0.48809427,0.12566486,0.2566005,-0.119427755,0.20686181,-0.107905746,-0.06260569,0.19824086,-0.5110759,-0.05415656,0.009642413,0.32330132,0.23529448,-0.07546442,-0.46092135,-0.07618509,0.018329836,-0.26204163,0.30412814,0.17480429,-0.26364252,0.5692253,-0.06584169,1.0554017,-0.00662148,0.09421638,-0.004693679,0.7362767,0.26641175,-0.042825416,0.122440375,0.45437464,0.250367,-0.006662506,-0.554232,0.28306106,-0.40411714,-0.29477102,-0.25629067,-0.42750475,-0.13925456,0.24918278,-0.23451942,-0.318733,0.04073928,-0.20914504,0.2969519,-2.8185492,-0.093426116,0.035250325,0.31250638,-0.23616412,-0.059299216,-0.112277105,-0.51453906,0.43152693,0.2148758,0.44815248,-0.46316302,0.3019861,0.54858565,-0.52573454,-0.2398223,-0.6289685,-0.0725729,-0.13339506,0.42182624,0.009670551,-0.17537992,-0.15745758,0.033853088,0.73582333,0.12827672,0.077731065,0.5175877,0.26907602,0.19522524,0.50577337,0.084535085,0.5697742,-0.3744012,-0.3771784,0.3448791,-0.4066542,0.19569977,-0.13914865,0.06834296,0.55750906,-0.28192475,-1.032849,-0.55289227,-0.18540417,0.94236934,-0.23870103,-0.62660307,0.20143324,0.002448591,-0.1364593,0.09975031,0.5849594,-0.08927394,0.27411255,-0.6144635,0.06167137,-0.045876577,0.18957232,0.12079359,0.033206206,-0.3244831,0.5268204,-0.07379408,0.24186507,0.04788585,0.26585463,-0.49120843,-0.4233394,0.112357154,0.71811855,0.15309344,-0.06833761,-0.06576233,-0.37792355,0.08626067,-0.3958117,0.10190398,0.4372994,0.8156281,-0.05865806,0.18144242,0.39069322,-0.26581857,-0.029866455,-0.19216579,-0.20148915,-0.06061366,0.23148942,0.524331,0.72511345,-0.004084775,0.6329874,-0.10384602,0.49958473,-0.00421353,-0.59364927,0.5523585,0.47289106,-0.10614043,-0.23154698,0.58130467,0.4818565,-0.554535,0.5008063,-0.6963184,-0.2831303,0.7033923,-0.33394843,-0.47025186,0.055755284,-0.318556,0.11726446,-0.712649,0.35643163,-0.26597786,-0.5625788,-0.51091677,-0.22117314,-3.2897074,0.031440437,-0.27252004,-0.040451106,-0.19340141,-0.1436682,0.27441162,-0.54615086,-0.32610968,0.104882,0.26240838,0.78087336,-0.061125316,0.025491169,-0.34299117,-0.11005983,0.020303538,0.2930953,0.26574576,0.29721966,-0.14228831,-0.41153187,0.17990637,0.06351888,-0.674906,0.10907556,-0.51944613,-0.571452,-0.12953041,-0.6689363,-0.2592898,0.70891726,-0.45679194,0.06501274,-0.2894773,0.13680632,-0.10010635,0.29297847,0.21651363,0.23060729,0.32504827,-0.0628831,0.16567357,-0.3778602,0.5261623,-0.009683435,0.24777839,0.12510487,-0.052013796,0.029569479,0.4075186,0.5667623,-0.07609338,0.933071,0.4731975,-0.092338674,0.15239048,-0.42108986,-0.31203368,-0.61218655,-0.46811134,0.0025201212,-0.38571784,-0.43259713,0.039458558,-0.31003726,-0.78479016,0.81949466,-0.03888343,0.3115482,-0.17526862,0.24386938,0.39841276,-0.12294772,-0.17911246,-0.16995944,-0.03770819,-0.45863354,-0.1883746,-0.5851775,-0.65573657,-0.038121797,0.80322427,-0.34328505,0.10255865,0.053636767,-0.31028807,0.077849895,0.28055722,0.06046824,0.35100827,0.4171921,0.059828684,-0.6037848,0.39326316,-0.1580793,-0.09770678,-0.79070514,0.18081473,0.70327723,-0.76200783,0.52280354,0.32270432,0.07118469,-0.23348165,-0.49752778,-0.23020083,0.031146063,-0.10504509,0.4158953,0.008265183,-0.75651646,0.5539399,0.31992072,-0.6738204,-0.6438504,0.17613341,-0.09031391,-0.43562746,0.17615654,0.2511759,0.102381915,-0.1337081,-0.2754453,0.28719267,-0.4028477,0.274406,-0.0137748625,-0.09301952,0.648418,-0.098349914,-0.41689208,-0.68998945,0.13542096,-0.6102334,-0.31112894,0.33618608,0.019868586,-0.067305535,0.5524685,-0.037459016,0.41130707,-0.0963961,0.058469653,-0.22887021,-0.40127146,0.17824215,0.36651275,0.32409778,-0.437503,0.5976403,0.10431104,-0.29185453,0.17798427,-0.075855166,0.5703812,-0.10252444,0.4336805,-0.10753899,-0.2374503,0.29258493,0.714908,0.13732645,0.53670096,0.056715947,-0.041290045,0.4289429,-0.025131281,-0.019242672,0.06340607,-0.39509627,-0.02497208,-0.2765612,0.20745565,0.4518499,0.3301913,0.41369402,0.187869,-0.19661252,0.14417928,0.14666064,-0.04957588,-1.1372819,0.41489166,0.32768822,0.7711845,0.22650453,0.26182097,-0.2078481,0.815339,-0.3289726,-0.033321925,0.33581036,0.13864313,-0.4580549,0.77339625,-0.6114435,0.43554556,-0.13523178,-0.107524864,0.043657716,0.23921165,0.4635486,0.87124455,-0.22890384,0.19451615,0.11251819,-0.102271944,-0.0040969024,-0.23014975,0.16864952,-0.3596625,-0.37978333,0.81278324,0.2656908,0.38001272,-0.07484566,-0.12272579,0.14862894,-0.18126081,0.29929882,-0.14761928,-0.07750038,-0.029403288,-0.4090908,-0.1832741,0.48128554,0.107929505,0.34431252,-0.11954955,-0.10237563,0.16546668,-0.15307352,0.08482491,-0.011511539,-0.48297355,0.050499413,-0.129984,-0.61053663,0.5778345,-0.39255714,0.16216017,0.19112563,0.116742864,-0.09044843,0.3709622,0.20172864,0.78937286,-0.02437409,-0.34198183,-0.24019815,-0.07429891,0.303726,-0.23941973,0.14934275,-0.25627625,0.029690953,-0.58359367,0.5430081,-0.41316846,-0.50013554,0.17466171,-0.21260959,-0.0774578,0.41134113,-0.03644635,-0.081926145,0.36334044,-0.2606244,-0.48362643,-0.05523909,-0.35485172,0.18236,0.15312015,-0.12949815,-0.24371284,-0.36830166,-0.100675695,0.52244735,-0.0539689,0.5176727,0.19130489,0.18006927,-0.17164652,0.028661022,0.110756904,0.54195327,0.011089137,0.18488301,-0.25178638,-0.32207268,-0.24229135,0.18120076,-0.11962379,0.16791281,0.13898994,-0.5620153,0.90019184,-0.21754129,1.1936855,0.05404941,-0.4180487,0.26125973,0.4816771,-0.15148365,0.07474102,-0.5052667,0.940988,0.7403555,-0.06762963,-0.19104026,-0.47370374,-0.13110402,0.49670032,-0.41639188,-0.20220873,-0.1816523,-0.5132909,-0.49740475,0.2596447,0.24490646,0.19332725,-0.09100734,0.20543924,-0.029758124,0.12507401,0.33615065,-0.6339748,-0.18686989,0.25204393,0.3316018,-0.12800553,0.2480509,-0.28411314,0.46095663,-0.5707782,0.18693615,-0.42287275,-0.0030000238,-0.30752483,-0.3923035,0.13723117,0.08068175,0.17811988,-0.16210715,-0.24025963,0.052777704,0.45545706,0.19039708,0.22037299,0.574443,-0.29901287,-0.0056021395,-0.08279907,0.48976156,1.3349864,-0.43440324,-0.017078748,0.3167982,-0.39264828,-0.6679599,0.6116248,-0.36817864,-0.07666295,-0.15778175,-0.50663334,-0.2462891,0.14709832,0.10812278,-0.019909795,0.12471456,-0.2999956,-0.08921787,0.2376042,-0.30107704,-0.2630213,-0.19716519,0.4439886,0.60594755,-0.13012399,-0.17807205,0.054089867,0.4961936,-0.28770018,-0.3209263,0.050469365,-0.12653346,0.46313554,0.06861822,-0.4016473,-0.12931122,0.11969554,-0.4622708,0.029794825,0.2925325,-0.41445577,0.028027333,-0.15616515,0.16382639,0.6916396,-0.34209996,-0.06847463,-0.68344307,-0.42586324,-1.0394276,-0.54217577,0.21358779,0.28181157,-0.008706318,-0.40869612,0.015635304,-0.036059543,-0.22223803,0.057498094,-0.6100312,0.30625868,0.1240461,0.49185318,-0.4548306,-0.92193484,0.09578704,0.103573486,-0.16574946,-0.68751645,0.73634213,-0.18652198,0.8193925,0.09791488,-0.1380286,0.11845751,-0.2606532,0.11390412,-0.37857825,-0.34979397,-0.8888391,-0.08875621,53 +594,0.27361187,0.07652709,-0.43681973,-0.08373144,-0.19044696,0.14206845,-0.10496393,0.4744507,0.17770018,-0.26198262,-0.081922755,-0.1023629,-0.060882695,0.3443338,-0.13888666,-0.5163492,0.08043841,0.13767682,-0.43143952,0.5633589,-0.5383737,0.36223263,-0.032950357,0.34929377,0.14224969,0.19632751,0.18813589,-0.09134367,0.084990576,-0.19751851,-0.107944354,0.17910245,-0.46502241,-0.0028902625,0.009604126,-0.4976258,0.1789623,-0.19430408,-0.3407876,-0.6379487,0.36055982,-0.6509513,0.6031836,0.12378582,-0.21669227,0.25957912,0.18381779,0.4119551,-0.043406468,0.04484386,0.1765844,-0.020360358,-0.06588909,-0.13903628,-0.2787597,-0.5716218,-0.62988085,0.09025537,-0.42195162,-0.12758884,-0.2262172,0.14145745,-0.35687664,-0.024075601,0.028355975,0.2025533,-0.3754567,-0.043720685,0.17040454,0.1150107,0.3080161,-0.5540317,-0.10568447,-0.11702491,0.32631838,-0.35417125,-0.22390755,0.15154463,0.41393906,0.49784726,-0.08664489,-0.19542988,-0.28423178,-0.04171356,-0.12575437,0.5877641,-0.3003082,-0.36365634,-0.121572345,0.022672378,0.088917166,0.26411983,-0.012514701,-0.08700134,-0.09268956,0.26583245,-0.333617,0.41797116,0.3904338,-0.4861724,-0.37310806,0.44607082,0.54038835,0.042489987,-0.16148987,-0.048511505,-0.031030098,-0.5434403,-0.1938408,0.002299279,-0.26763037,0.34431908,-0.15015605,0.2479153,0.5670453,-0.13083385,0.06722844,0.19688496,0.004900827,-0.113790974,-0.14261119,-0.26412073,0.20506191,-0.5399615,0.09516496,-0.16088802,0.80449814,0.008099128,-0.8280779,0.23865542,-0.6305002,0.05362377,-0.21063416,0.5063578,0.7432234,0.15889949,0.22058089,0.6747736,-0.5488319,-0.023035843,-0.12996884,-0.32616237,0.24443896,-0.108256035,-0.105529666,-0.56200546,0.011440768,0.27825975,-0.03256215,0.20758893,0.24070168,-0.5726703,-0.014877161,0.17462033,0.8193134,-0.28271195,-0.24257818,0.53126717,1.0463245,0.9667224,-0.05762928,1.2276962,0.1612944,-0.18149057,0.29244554,-0.48711932,-0.6685723,0.2455945,0.4790849,-0.16985361,0.27445936,0.21485662,0.0737879,0.34273916,-0.42083246,-0.029655892,-0.108763255,0.22929096,0.059316628,-0.09470861,-0.3052483,-0.3227856,-0.09802867,-0.0073614097,0.19168244,0.3080693,-0.21610902,0.11604261,-0.033177283,1.6706023,-0.058417264,0.22062722,0.0706876,0.5409424,0.1563935,-0.13374831,-0.14207722,0.13564415,0.3477183,0.24137115,-0.60417026,0.10289339,-0.28573987,-0.3791688,-0.21656387,-0.28149712,0.012925322,0.1266269,-0.37494802,-0.08919418,-0.13352756,-0.33880588,0.47491267,-3.0379615,-0.20954145,-0.15972951,0.24754047,-0.24779262,-0.42013243,-0.15179889,-0.5576969,0.46376088,0.36950964,0.43133977,-0.6197717,0.47184724,0.23002599,-0.3988431,-0.1751052,-0.71966594,-0.07084263,-0.034933977,0.18290982,0.09007608,-0.04789905,-0.06871336,0.28733435,0.34418428,0.02515721,0.016214006,0.2081566,0.29215494,0.19638006,0.5283666,0.016988598,0.59994155,-0.12935045,-0.2712046,0.22743867,-0.28695884,0.27222088,-0.1862685,0.08557823,0.40209356,-0.47614628,-0.9386455,-0.74657476,-0.31607088,1.1534095,-0.076640084,-0.21486896,0.2118206,-0.32895133,-0.38398492,-0.20813963,0.50756365,-0.26298133,-0.24388586,-0.61559045,0.15153868,-0.1767803,0.18959118,-0.031599425,-0.10091071,-0.51227593,0.5099178,-0.049831137,0.32219312,0.29878938,0.11754947,-0.23622046,-0.3533511,-0.09441759,0.89803404,0.30918476,0.1035384,-0.1436355,-0.1952944,-0.56407785,0.09038174,0.23718467,0.4288079,0.6037496,-0.04688887,0.089528486,0.29198673,-0.031285204,0.020477941,-0.07891807,-0.3482591,-0.010119883,-0.09115135,0.65698874,0.48304904,-0.09553797,0.54721874,0.090666346,0.19730648,-0.38415292,-0.36665365,0.41559127,0.7707179,-0.1241529,-0.15598537,0.70854247,0.4554094,-0.16050074,0.40561235,-0.602631,-0.2863832,0.32028252,-0.0981576,-0.30433947,-0.028679065,-0.39258322,0.017677646,-0.818935,0.25044334,-0.14351498,-0.50225484,-0.4515393,-0.08711983,-3.4425778,0.28170583,-0.19507296,-0.062061347,-0.010617046,-0.04913984,0.39722288,-0.549539,-0.58952594,0.13154426,0.056508686,0.70620906,-0.06227322,0.050942514,-0.18190345,-0.29538217,-0.4358107,0.041214857,0.17152452,0.39739424,0.069699295,-0.4371376,0.059767384,-0.17020147,-0.33674595,0.11967463,-0.5054997,-0.4194052,-0.15966947,-0.49481326,-0.3703171,0.73166597,-0.4321294,0.03698272,-0.30961132,-0.046088163,-0.01946658,0.43161643,0.124365844,0.031182718,-0.002609991,-0.0067444304,-0.01958538,-0.3523016,0.26678365,0.038242705,0.2692114,0.3247891,-0.046947174,0.269055,0.5458241,0.50799835,0.029739857,0.8487163,0.5868052,-0.18891881,0.2077623,-0.2633056,-0.07779301,-0.372132,-0.27188206,-0.15580662,-0.37163687,-0.42619604,-0.041447576,-0.34758213,-0.686457,0.5111028,-0.053264506,0.12160281,0.014342042,0.31616557,0.40249392,-0.20619327,0.008112876,0.027340494,-0.17212123,-0.46002784,-0.26437828,-0.4395442,-0.43155143,0.15517212,1.110963,-0.28347257,0.15753204,0.095242426,-0.17250922,-0.025297165,0.09559857,0.020820687,0.13213935,0.32044137,-0.25259715,-0.7013756,0.35028282,-0.3642645,0.057580292,-0.76603496,0.089478455,0.4279411,-0.56603324,0.33953223,0.25918657,0.24370687,-0.03777537,-0.4984062,-0.16501859,0.08533262,-0.36165777,0.26401612,0.18687648,-0.9448922,0.4121392,0.27214125,-0.1443096,-0.6358528,0.55065304,0.012833716,-0.34973815,-0.119929224,0.2866651,0.34699982,0.200862,-0.084712155,0.23573923,-0.3382791,0.27875772,0.21355446,-0.04595333,0.4070325,-0.15180531,-0.08804544,-0.59315217,-0.10132827,-0.5305949,-0.22146806,0.14432631,0.20426154,0.1389818,0.3955267,0.09700297,0.32287982,-0.26575136,0.055227287,-0.012588675,-0.24175523,0.21566004,0.3785848,0.447217,-0.46736506,0.5163955,0.025122972,-0.18506697,-0.13265687,0.003021474,0.5532652,-0.13893655,0.37240264,0.01636021,-0.26725942,0.30609936,0.81471634,0.17203626,0.2250585,-0.027583223,-0.05588176,0.0545309,-0.018001989,-0.041630387,0.21819584,-0.6162172,-0.07929837,-0.09257663,0.26912814,0.51920134,0.05339273,0.14931801,-0.11155033,-0.35869595,0.011292806,-0.03165154,-0.03785654,-1.1730613,0.40528077,0.19387439,0.68498033,0.50169414,-0.068087734,0.055064306,0.49809998,-0.19858599,0.13195878,0.30551898,-0.06425026,-0.30779344,0.61192095,-0.6836395,0.5766386,0.043944355,-0.112352565,-0.034685157,-0.15014444,0.34546253,0.9954852,-0.29177308,0.13514747,-0.020788986,-0.22224663,0.102317914,-0.17370555,0.15628907,-0.7138658,-0.15949965,0.6059419,0.44035834,0.34536484,-0.098505735,-0.04573588,0.124469705,-0.061454196,0.014259655,-0.18160574,0.138237,-0.07134585,-0.6511638,-0.21553162,0.51457244,0.11752892,0.14067774,0.06303726,-0.16604008,0.29550764,-0.061243393,0.016060801,-0.06692147,-0.5924021,0.05719008,-0.15436926,-0.29768738,0.64255965,-0.36176616,0.3257701,0.15430239,0.11685967,-0.14728425,0.42918074,0.033799484,0.4928884,-0.10695052,-0.08443156,-0.36207587,0.18278979,0.11814572,-0.06761705,-0.07057386,-0.29115942,0.1711004,-0.65062934,0.35726598,-0.03612637,-0.3164401,-0.17489019,0.038951077,0.0973216,0.4594833,-0.046127282,-0.09999791,0.03218603,-0.2866053,-0.16907293,-0.043656595,-0.0895613,0.23552187,0.17939799,-0.19856946,-0.15467466,-0.17583726,-0.15810178,0.27343667,0.08438484,0.3467449,0.2473581,0.19292268,-0.16105655,-0.24914382,-0.026578499,0.38193706,-0.2926529,-0.25825173,-0.29291934,-0.3553005,-0.26800844,0.38536936,-0.036036305,0.43073907,0.040822607,-0.19682139,0.5066817,0.077609785,1.2508183,0.11331897,-0.20422468,-0.0632108,0.5656552,-0.049873468,-0.14591108,-0.4137495,0.809356,0.5658571,-0.1887705,-0.17482527,-0.29740465,-0.071991555,0.21545726,-0.13518482,-0.052903857,-0.023487972,-0.6533009,-0.291734,0.25373504,0.24248165,0.14377631,0.05364138,0.0924517,0.29341656,0.017610967,0.34471563,-0.35607323,-0.11350131,0.3488897,0.4264583,-0.015167301,0.2569783,-0.38047695,0.40386468,-0.43586248,-0.058790725,-0.2788015,0.20879115,-0.13185053,-0.35555568,0.3340473,0.07736276,0.3205592,-0.040096052,-0.4173752,-0.14659716,0.43317538,0.32827452,0.18149897,0.5183866,-0.22692226,-0.116936326,-0.14781946,0.447427,1.070039,-0.2101011,-0.12472784,0.41754803,-0.26458648,-0.53332806,0.26559573,-0.37098134,0.0722138,0.12252106,-0.21929179,-0.2323617,0.3040962,0.21076062,0.091334,0.08797184,-0.39983875,-0.1538389,-0.021373153,-0.15151507,-0.29107317,-0.29563954,0.24419387,0.8048913,-0.20614932,-0.2392982,0.080172315,0.46665022,-0.17894195,-0.53626186,0.031894356,-0.31112707,0.2515034,0.0696734,-0.30872032,-0.24082613,0.06468747,-0.43351558,0.0891875,0.30867255,-0.4430133,0.11423437,-0.33821866,-0.17327045,0.9124967,-0.15779932,0.12623176,-0.46284816,-0.28771293,-0.66844517,-0.38605136,0.25240946,0.30280426,-0.066114515,-0.3457861,-0.008601583,-0.0011392465,-0.19292647,0.0040486227,-0.19895664,0.39913946,-0.010841163,0.35311002,-0.00063089223,-0.86583513,-0.04733405,0.050239682,-0.21917978,-0.52301836,0.49733844,-0.07759131,0.7731938,0.16816221,0.1417742,0.27385646,-0.19505674,0.058343366,-0.23083869,-0.1588242,-1.0456493,0.023734607,60 +595,0.9141611,-0.19994125,-0.8286437,0.006494279,-0.25755203,-0.022490982,-0.36629075,0.39115816,0.44058037,-0.24820405,-0.17499407,-0.13656949,-0.054576673,0.37461045,-0.07461303,-0.64796937,0.14341387,0.0864788,-0.44481677,0.70743793,-0.39461246,0.2947706,-0.07832579,0.64174974,0.3075053,0.36644393,0.38249838,0.17563044,-0.21908744,-0.33450553,0.17431745,0.14558631,-0.7094154,0.29271856,-0.19239691,-0.23022777,0.028976921,-0.2538509,-0.44788694,-0.9106338,0.42144638,-0.67827827,0.4693187,0.1625469,-0.3901667,-0.085308775,-0.0045568715,-0.022975024,-0.025400363,-0.12585983,0.0986511,-0.2931453,0.12808453,-0.293272,-0.17905872,-0.3364076,-0.6462529,-0.008131871,-0.54229486,-0.048058417,-0.35506365,0.1652689,-0.41840696,-0.01592649,-0.13440639,0.802554,-0.38875958,0.08903175,0.1253986,-0.33263734,0.26346734,-0.6892984,-0.51969504,-0.14413644,0.10600621,0.29583344,-0.24036549,0.2978046,0.23042287,0.3225317,0.11161932,-0.11389598,-0.5295076,-0.20428738,0.28237465,0.5134487,0.0025313245,-0.45677853,-0.33590764,-0.25424278,0.28775072,0.18498716,0.3080176,-0.32203883,-0.01680779,-0.04565888,-0.22274694,0.6767562,0.5786157,-0.26143697,-0.09956716,0.17284915,0.48144138,0.2495168,-0.26344448,-0.009205965,0.0075074593,-0.5270817,-0.0783727,0.035078164,-0.18419935,0.6804076,-0.09515159,0.27957967,0.6889067,-0.48384893,-0.19866723,0.177169,0.110777564,-0.15970537,-0.1743916,-0.035852328,0.241536,-0.29480407,0.04761249,-0.24302138,0.88865286,0.14674371,-0.6267484,0.30410796,-0.53423196,-0.055038624,0.028845044,0.6437679,0.4996988,0.44403192,0.40283754,0.84983927,-0.32376182,0.1090914,-0.019179918,-0.36641154,-0.0058632884,-0.29884422,0.12557207,-0.4186048,-0.1095456,-0.059105378,-0.2438105,-0.00039712398,0.71119463,-0.4407717,-0.23120192,0.19776018,0.77576476,-0.18727873,-0.087681405,0.8312276,1.2409251,1.2260845,-0.050481893,1.096384,0.1753672,-0.075549714,-0.15123935,-0.16171743,-0.7994683,0.34337413,0.2585334,0.15174797,0.36438388,-0.065759234,-0.101819545,0.17881063,-0.22247495,-0.050665535,-0.0029192017,0.39503664,0.21970683,-0.08432364,-0.40639898,-0.31886917,0.047057245,-0.052520957,0.13461421,0.25178316,-0.2699119,0.6243976,0.00063671515,1.4994718,-0.23267849,0.037638646,0.13882953,0.80222905,0.28512493,-0.27266565,0.088772535,0.3822509,0.0039896863,0.24688354,-0.5065555,0.10273949,-0.29850578,-0.66892326,-0.17802931,-0.40301782,-0.014932394,0.06643461,-0.24346623,-0.31825736,-0.026438484,-0.2862593,0.2400143,-2.7303,-0.2516708,-0.0698074,0.34614453,-0.2167117,-0.28067204,-0.023818986,-0.5877187,0.21151473,0.40299255,0.52647233,-0.74402934,0.21812886,0.6427077,-0.6641282,-0.15691677,-0.42223147,0.18557675,-0.17222382,0.5853561,-0.11291348,-0.075487964,-0.06765329,0.20273243,0.6858477,0.17945403,0.21157211,0.22576554,0.36144644,-0.2304046,0.29676414,0.026549097,0.4209561,-0.30928415,-0.21013692,0.647259,-0.5015334,0.14586796,-0.27025792,0.137499,0.52456754,-0.36859232,-0.78521955,-0.56089276,0.046938166,1.0222543,-0.07352629,-0.88462037,0.12422189,-0.072978646,-0.28915778,-0.015219982,0.45523813,-0.20881365,0.11893975,-0.6103535,-0.040651638,-0.122618355,0.16772453,0.12127491,0.07256229,-0.4359376,0.76961803,0.104045406,0.33119282,0.14964083,0.2818629,-0.50188094,-0.6710401,0.24242964,0.9371259,0.38911167,0.18681653,-0.3749545,-0.1845381,-0.20789388,-0.1785844,0.012127172,0.65569794,0.65408635,-0.18128411,0.16977698,0.5196242,-0.080538005,0.020694735,-0.06903361,-0.3939102,-0.14180806,-0.07270683,0.5732016,1.0582137,-0.11366423,0.42346293,0.021404423,0.4952157,-0.19401005,-0.45014864,0.6906341,1.1918494,-0.22523433,-0.28245336,0.48622534,0.34167057,-0.6955647,0.62243736,-0.6679255,-0.44350636,0.4026888,-0.100426584,-0.43023297,0.16621701,-0.40947926,0.07231671,-0.7038902,0.43764356,-0.46575582,-0.27187383,-0.45127928,-0.27240196,-3.402629,0.24713136,-0.2942681,-0.2919413,-0.20902489,-0.02014129,0.13560802,-0.58684385,-0.5581203,-0.012544329,0.11918103,0.7192935,-0.16873105,0.08278961,-0.2073493,-0.60950375,-0.52426153,0.2210021,0.09266661,0.5067991,0.0105622,-0.38827127,0.17238614,-0.12700647,-0.39936903,0.046971604,-0.38152674,-0.67151654,-0.34000793,-0.5024262,-0.36205247,0.625179,-0.13054162,-0.0014730967,-0.31928155,0.040868375,0.02007166,0.26805905,0.060538735,-0.030384,0.14078596,-0.12822291,-0.026631359,-0.3127434,0.19777046,-0.12096544,0.3826349,0.5623571,-0.11108319,0.16020149,0.50412107,0.41591474,-0.1839694,0.8334983,0.12808307,-0.0049326946,0.1764831,-0.14170438,-0.25887728,-0.58569866,-0.21687089,0.17794248,-0.40258414,-0.48515537,-0.2143603,-0.42908388,-0.7290395,0.68487525,0.040378764,0.39335963,0.04315289,0.3784122,0.46455806,-0.1255016,-0.05781394,0.105960615,-0.07072893,-0.6336641,-0.2470836,-0.6799438,-0.5623888,0.19185522,0.79905033,-0.32982123,-0.29054543,0.13331625,-0.25893447,-0.040394858,0.07061545,-0.010493489,-0.11641446,0.47022927,-0.005341154,-0.740559,0.47054598,-0.14780793,0.12666829,-0.6423279,0.30073473,0.5181011,-0.5868467,0.54229707,0.28534022,0.29227343,-0.262804,-0.53888696,-0.0749971,0.13203417,-0.12946378,0.49694678,0.34506795,-0.7924561,0.39463055,0.10494911,-0.44238248,-0.67063373,0.45399702,-0.07870837,-0.37397888,-0.21016686,0.47696635,0.024827518,0.0012974349,-0.4701328,0.411164,-0.45426,0.007155345,0.2661435,-0.21527973,0.4435682,-0.111453585,-0.35484773,-0.6481505,0.043826584,-0.5255404,-0.376469,0.3071618,0.0282832,-0.052542593,0.20479853,0.19629198,0.37703034,-0.13438758,0.13674685,-0.017692603,-0.11372466,0.644604,0.46693546,0.93380475,-0.49763924,0.62593883,0.065928504,-0.07814992,0.14165774,0.031282313,0.24145573,0.14496537,0.46864802,0.37215343,-0.08410701,0.11833433,0.7150427,0.19450739,0.6631164,0.13219298,-0.27528617,0.30575502,0.122235365,0.42080307,-0.06723183,-0.684151,-0.08104536,-0.39990714,0.032977816,0.61211705,0.12361514,0.34839392,0.035690185,-0.3934726,0.09719856,0.027934331,-0.17955408,-1.3106316,0.1881063,0.1454106,0.78175616,0.5361234,-0.045914147,0.033357307,0.6387894,-0.053586546,-0.014421707,0.25208628,0.12220534,-0.5098521,0.51608646,-0.67430365,0.4696248,-0.1386216,-0.11662029,0.09895532,-0.12557766,0.5096345,0.76076156,-0.17690729,-0.0674224,-0.03605411,-0.31525767,0.117401645,-0.50737983,0.22113603,-0.58354944,-0.34028307,0.6912046,0.56387603,0.23065235,-0.18113905,-0.03438249,-0.015225548,-0.0021545703,0.30224186,-0.06421345,0.15257032,-0.080984265,-0.6277636,-0.17939575,0.59157383,0.19757575,0.1403384,-0.06816565,-0.14004731,0.2841783,-0.09239416,0.027180858,-0.05523467,-0.7763977,0.0037152905,-0.081138104,-0.5512049,0.54666215,-0.024130289,0.30499843,0.22111748,-0.0075230817,-0.31264612,0.2772779,0.12832162,0.81563306,0.11093206,-0.06485872,-0.4963056,0.08008209,0.38015035,-0.34272978,-0.11373857,-0.09709076,-0.06561637,-0.58530813,0.47599375,-0.09715677,-0.27901906,-0.13720241,-0.12233475,-0.094417535,0.6904351,-0.04194153,-0.18133023,-0.0016255653,-0.06382937,-0.38136452,-0.012703606,-0.0666027,0.06523164,0.19911297,-0.4303676,-0.15075693,-0.07270588,0.3205139,0.11876027,-0.015335575,0.28606465,0.54871696,0.15118681,-0.545723,-0.13522016,0.26170957,0.64730334,0.27364925,-0.12529565,-0.32447523,-0.61186653,-0.48364434,0.22486773,-0.013150929,0.14853057,0.26339653,-0.2988113,0.66316485,0.2491258,1.2796701,0.0766478,-0.31619975,0.21349746,0.6629621,-0.025930222,-0.04302972,-0.49864715,1.0946242,0.44986597,-0.5282277,-0.16986677,-0.4150591,-0.08076187,0.096200384,-0.27853754,-0.12047418,-0.17895964,-0.6444044,-0.029377524,0.14397305,0.4133236,0.03862101,-0.2522321,0.069580525,0.3363784,0.21593533,0.27738562,-0.3991521,-0.30449525,0.43295622,0.2343739,-0.028824527,0.09744103,-0.2839909,0.32529718,-0.6343291,0.19381097,-0.28552532,0.24762832,-0.1455434,-0.5580602,0.3849979,0.15560557,0.51156795,-0.47949344,-0.3914992,-0.3712859,0.40990108,0.47612512,0.25855306,0.55430984,-0.23508972,-0.058681723,-0.028557392,0.63459957,1.290111,-0.13278459,-0.048230033,0.37517846,-0.58357227,-0.8072485,0.23432605,-0.4594887,0.25086117,-0.17750613,-0.2869099,-0.75083345,0.3020808,0.14283046,-0.13030118,0.05093259,-0.6066538,-0.17731817,0.07221144,-0.37882847,-0.19182979,-0.3382015,-0.021525493,0.64259434,-0.23928474,-0.37050307,0.06770074,0.18352279,-0.20354074,-0.67050624,-0.16165069,-0.29835007,0.40709895,0.054740198,-0.18185686,-0.19766283,0.11770434,-0.65606064,0.19027695,0.16286197,-0.3742027,0.13087717,-0.39931896,-0.015363789,0.77940905,-0.34121287,0.116874054,-0.30682182,-0.6010692,-0.80938613,-0.31862643,0.34975654,-0.09398857,0.0096959425,-0.6909256,-0.15455352,-0.45158243,-0.117452376,-0.079173155,-0.4052758,0.3677875,0.023089183,0.38842976,-0.0576689,-0.8511754,0.2833645,0.41264006,-0.11655641,-0.6817612,0.38125175,-0.17864862,0.76623225,0.162596,0.087588064,0.36692393,-0.581081,0.2574828,-0.19623262,-0.35681552,-0.5099427,0.16158713,64 +596,0.519212,-0.107189655,-0.41829392,-0.18114695,-0.1471681,0.24370064,-0.23653474,0.47950065,0.20843846,-0.42020276,-0.15360428,-0.09672555,0.10804318,0.36310536,-0.12578341,-0.7669274,0.2104314,0.08894944,-0.40195853,0.5256151,-0.56524974,0.30029237,-0.017765522,0.33442307,-0.07606048,0.28553087,0.3194556,-0.27092963,-0.20248963,-0.16078514,-0.03975155,0.30249745,-0.6162116,0.21315405,0.04122782,-0.16552347,0.102070585,-0.2575858,-0.35969284,-0.70535797,0.13060248,-0.76956725,0.3080656,0.059524342,-0.28083506,0.26998842,0.009129107,0.25147086,-0.39754808,0.0428627,0.08795398,-0.09559294,-0.18193637,-0.21785691,0.025764138,-0.42325762,-0.523291,-0.08454617,-0.3648238,-0.2379524,-0.28676414,0.16253318,-0.3260776,-0.11552139,-0.04544672,0.49809963,-0.4285091,0.013116745,0.25160775,-0.29567617,0.3094352,-0.4133161,-0.08793589,-0.092805274,0.3559386,-0.19349065,-0.12667112,0.07142952,0.25996685,0.36542553,-0.02994734,-0.15668108,-0.42055303,-0.15224014,0.16074958,0.49417642,-0.14489715,-0.68787444,-0.101790614,-0.123136885,-0.17427017,0.06777305,0.07664253,-0.20514734,-0.11498895,0.05552651,-0.33327055,0.42654216,0.4519791,-0.3674366,-0.30548573,0.31767842,0.6407694,-0.006986485,-0.13607225,-0.071956545,0.08224548,-0.6123596,-0.17373261,0.090921275,-0.13557547,0.53448224,-0.19146882,0.29184958,0.66209483,-0.21212332,-0.0649228,0.16786021,-0.012605358,-0.002957766,-0.08365612,-0.14046785,0.23697624,-0.3485393,0.048377104,-0.19677374,0.80316705,0.27216274,-0.7181295,0.37540036,-0.52764374,0.045200165,-0.20027986,0.41726208,0.44073808,0.30728996,0.06560724,0.65006375,-0.44379044,0.011830339,-0.12314631,-0.39829892,0.0067705833,-0.10110169,0.03740633,-0.41538364,0.02956796,0.15512031,-0.13971391,0.016248317,0.2488179,-0.5532571,-0.063575745,0.1640345,0.8397952,-0.3116626,-0.21050715,0.5660356,0.89494747,0.863293,-0.003235684,1.1112864,0.35686237,-0.12792513,0.11801262,-0.48245636,-0.6364575,0.34068018,0.32321307,-0.026445223,0.26092362,0.0257922,-0.039757315,0.38929474,-0.22348844,0.05051699,-0.14147247,0.39755392,0.1967986,-0.084099606,-0.3579988,-0.2944888,-0.09383345,-0.069483526,0.3518489,0.17373496,-0.09428294,0.33904406,0.04892804,1.6007123,-0.049721774,0.18448117,-0.037296705,0.48123023,0.22673467,0.060822632,-0.1284038,0.28268278,0.081966996,0.14726672,-0.581277,0.18456022,-0.13646519,-0.4345055,-0.1784362,-0.3144991,-0.025239848,-0.16743381,-0.3573995,0.0396025,0.028465904,-0.21335107,0.47284222,-2.7330983,-0.23319277,-0.0198772,0.40122128,-0.29544008,-0.26177555,-0.10202512,-0.50785565,0.25983423,0.41740942,0.5942215,-0.649009,0.50147367,0.5288013,-0.46572143,-0.21431798,-0.5521512,-0.08870078,-0.023379456,0.4097443,0.14677851,-0.09100192,-0.068574354,0.21215259,0.40869725,-0.074565426,0.059304018,0.19232823,0.39598405,0.033461288,0.4348624,0.026764873,0.5493095,-0.17365101,-0.15199777,0.3131681,-0.4389055,0.25600132,-0.12724501,0.00660118,0.28144276,-0.17840736,-0.968331,-0.6870167,-0.27781513,1.1768748,-0.20872134,-0.23352626,0.076948985,-0.08801273,-0.2785985,0.1346934,0.34993333,-0.07153591,0.050609156,-0.78393894,0.124308735,-0.04743652,0.26190633,0.03372664,0.014499889,-0.4964625,0.6620516,-0.07917041,0.420825,0.29021138,0.28822502,-0.2699418,-0.5283355,-0.0549039,1.0231584,0.19046912,0.16738793,-0.24308985,-0.3009047,-0.36181146,0.02678176,0.039540313,0.6760873,0.63817596,-0.011552792,0.027566288,0.25929427,-0.08515319,0.09561682,-0.15076986,-0.4098169,-0.055269405,0.11066489,0.5877179,0.6241503,-0.18697184,0.43694064,-0.061448004,0.3753661,-0.25592238,-0.3136975,0.54823846,0.888896,-0.13465928,-0.19510664,0.5045949,0.48622754,-0.36128098,0.3421151,-0.78374475,-0.40674335,0.39311314,-0.23327166,-0.34656987,0.18590467,-0.23303747,0.15051506,-1.0025584,0.45856407,-0.35401356,-0.41646945,-0.45288882,-0.11691479,-4.204275,0.14217879,-0.0900276,-0.12057889,0.06492331,-0.073977195,0.10811085,-0.68470633,-0.49180084,0.19547042,-0.105898365,0.6153652,-0.04354755,0.31153858,-0.31025535,0.019894926,-0.13978586,0.3449783,0.11343871,0.20539401,0.17532529,-0.50114596,0.0995473,-0.10491101,-0.31058392,0.24111931,-0.65519494,-0.5318833,-0.048618115,-0.56021047,-0.21818113,0.69625896,-0.50655967,0.07934865,-0.136443,0.13861725,-0.22353818,0.3618419,0.010923771,0.045652114,0.117052674,0.012482336,-0.10296056,-0.31268832,0.44145772,0.03390834,0.32232857,0.382376,-0.113789305,0.124706835,0.66478986,0.5290617,0.13330144,0.56581646,0.3171952,-0.04783474,0.24467763,-0.35610926,-0.20843233,-0.39794022,-0.36960799,-0.037844893,-0.29247594,-0.34093386,-0.13348225,-0.3417013,-0.6267538,0.46368524,-0.001650205,-0.10436409,0.040602904,0.13934258,0.42589357,-0.22660254,0.018576149,0.012228558,-0.107789055,-0.5429956,-0.21149829,-0.537642,-0.3820524,0.2027352,0.8992777,-0.24792594,-0.009816926,-0.082520895,-0.15609524,-0.074752115,0.15389475,0.075974084,0.07460204,0.36592543,-0.07785343,-0.6840293,0.40416113,-0.25918388,-0.13162646,-0.52237386,0.13723055,0.67561847,-0.6139114,0.4783049,0.47120878,0.032546613,-0.00056672556,-0.3366937,-0.32900384,0.13017753,-0.17577985,0.3285699,0.06307875,-0.73861843,0.27751023,0.26171502,-0.33303246,-0.6473842,0.604747,0.051289264,-0.39146832,-0.114024214,0.3597738,0.2244668,0.012813857,-0.35169923,0.115931585,-0.4108775,0.15905842,0.13629235,0.010992593,0.55911076,-0.15985104,0.020149764,-0.7385142,-0.2507541,-0.46603584,-0.28088224,0.15974535,0.07909858,0.009299987,0.24068376,0.11833068,0.3822273,-0.37500557,-0.021349732,0.053112857,-0.3670435,0.46288103,0.39052588,0.4124317,-0.37867266,0.56055933,0.064929985,0.051661056,0.06609761,-0.020314272,0.43689108,-0.03833119,0.42463797,0.20683418,-0.15370561,0.34766597,0.7285392,0.27021435,0.4905626,0.1770022,-0.17093365,0.1837959,-0.005208703,0.1680538,0.060456898,-0.51729465,0.08042038,-0.18196389,0.10433845,0.4362242,0.14862157,0.3067675,-0.041557528,-0.5271512,-0.03169865,0.1695861,0.0093743615,-1.1795352,0.33967465,0.19730988,0.82899886,0.484608,-0.083447605,0.20489396,0.6770834,-0.08207902,0.14162377,0.28032488,-0.1464781,-0.5720011,0.5008862,-0.6080045,0.38781452,-0.059369538,-0.036543686,-0.12761185,-0.21003231,0.19742033,0.8452424,-0.13259196,0.11302651,-0.07799658,-0.32449082,0.057201155,-0.42911798,0.1861461,-0.6237932,-0.1042137,0.544611,0.62424725,0.34970707,-0.054705754,-0.00822266,0.18715623,0.003744766,0.21175545,0.03465327,0.042478826,0.09176559,-0.7721239,-0.26149604,0.59726536,0.13297015,0.19434786,-0.08667528,-0.111039914,0.42968205,-0.22893715,-0.09611772,-0.13868468,-0.5700023,-0.036883537,-0.29199535,-0.41023147,0.51653063,-0.16739175,0.31240872,0.2030437,0.020150108,-0.24978036,0.244327,0.15314029,0.6550027,0.15861365,-0.19878127,-0.41404024,-0.01768173,0.22273019,-0.19370867,-0.08252353,-0.36047316,0.007469746,-0.5262941,0.3128595,-0.12585825,-0.30216742,-0.037850972,-0.19893393,0.02766976,0.52523875,-0.09860109,-0.21495852,0.06486286,-0.109561495,-0.15888415,0.13103077,-0.23596652,0.2296075,0.23519042,-0.13649176,-0.07012807,-0.14001265,-0.1804285,0.34955657,0.059443694,0.31637383,0.47850704,0.24975897,-0.29519764,-0.17090295,0.20414454,0.57515556,0.0027215665,-0.11458281,-0.38017765,-0.46162897,-0.32468572,0.19288942,-0.1282016,0.25534087,0.1282492,-0.4204459,0.5227399,-0.05109844,1.1089776,0.11411874,-0.3151724,0.11851837,0.43408495,0.21375711,0.09658051,-0.44365498,1.0017909,0.46832755,-0.24948193,-0.11864038,-0.39084676,-0.10234451,0.011379182,-0.15399861,-0.22636932,-0.034257613,-0.6199936,-0.2768707,0.20860086,0.19291472,0.23653406,-0.008912655,0.05951225,0.23965746,0.10908798,0.35898727,-0.52982795,-0.08503126,0.3880531,0.25938493,-0.017476188,0.11688569,-0.28532282,0.40876848,-0.4618459,0.1283819,-0.34528005,0.1761237,-0.23538803,-0.20093116,0.27104583,0.18629488,0.26744363,-0.23768498,-0.49339497,-0.24045335,0.45576742,0.2659224,0.048834726,0.6160389,-0.12863661,-0.11469201,0.15114914,0.5105558,0.9014768,-0.34191984,0.065607935,0.61903703,-0.28344116,-0.65196025,0.27132863,-0.2947337,0.19363119,-0.12428439,-0.27569225,-0.71470743,0.36375433,0.18589687,0.0045695123,0.101098806,-0.4829462,-0.17866914,0.31200168,-0.37976155,-0.236826,-0.30589658,0.21452309,0.6113385,-0.3992018,-0.11092791,0.10810138,0.2518748,-0.25992522,-0.49104416,-0.20991725,-0.39767283,0.27311018,0.34126928,-0.28575572,-0.21286751,0.07151114,-0.37365162,0.20642668,0.30055723,-0.40603617,0.11578034,-0.2839083,-0.16098088,0.8471206,-0.1382412,0.20188276,-0.63224304,-0.28708458,-0.87651074,-0.33701882,0.5656272,-0.02834951,-0.1380563,-0.5515892,-0.11564994,0.022485316,-0.23426464,-0.13206182,-0.49469185,0.47770035,0.09816216,0.47859353,0.10536877,-0.87923753,-0.035797324,0.19313174,-0.2698312,-0.6330008,0.4289357,-0.1560938,0.81164515,0.066686995,0.16011563,0.470669,-0.45358768,-0.08868037,-0.28311318,-0.12328322,-0.6176196,0.15702698,68 +597,0.54728276,-0.31966236,-0.6381064,-0.15870681,-0.3970056,0.0983988,-0.16745962,0.5449598,0.1606389,-0.20743161,-0.21654326,-0.020104926,0.0769801,0.2077379,-0.20863606,-0.69410515,-0.10507774,0.12108059,-0.53007066,0.6570081,-0.13117918,0.20641623,-0.13473338,0.42656517,0.51883996,0.4875244,0.18154076,0.049370226,-0.118874945,-0.19361034,-0.18910874,0.04096546,-0.47906113,0.16195077,-0.22955337,-0.36117125,-0.10723913,-0.49872464,-0.4101765,-0.772918,0.45809904,-0.8616035,0.4486653,0.024316512,-0.24467397,0.34105968,0.21836287,0.31382844,-0.30249277,-0.14567131,0.056644194,-0.22532335,0.06037391,-0.26989138,-0.04466039,-0.43521574,-0.51400894,-0.21085644,-0.6476355,-0.2135144,-0.21478094,0.06894088,-0.26919776,0.020216634,0.031089982,0.63246155,-0.43214357,0.14173102,0.25199717,-0.30903032,0.09047719,-0.69291914,-0.17257658,-0.04748369,0.2911626,0.05068762,-0.08748138,0.34192827,0.06731718,0.044574223,0.1035347,-0.19700953,-0.39687464,-0.15951061,0.08183949,0.36031622,0.08118756,-0.54447293,-0.00657431,0.0089514805,0.3168897,0.23118645,0.22788407,0.042652473,-0.08962321,-0.10191829,-0.116033204,0.5367852,0.46855402,-0.18223013,-0.11506741,0.3673039,0.59895736,0.26646912,-0.2753029,-0.022946361,0.021877615,-0.3562018,-0.04907197,0.17568223,-0.18969369,0.6367103,-0.10213037,0.29182765,0.7193357,-0.2734863,0.09686268,0.020469116,0.12422313,-0.22183888,-0.18886319,-0.22283298,0.25558144,-0.5212842,0.1588795,-0.24087295,0.71432024,0.2813998,-0.3767811,0.2835394,-0.610536,0.1716365,0.05828541,0.4659737,0.6173326,0.57071894,0.3508897,0.6971358,-0.19796793,0.013379808,-0.10184117,-0.35820338,0.10239252,-0.16667837,0.050259013,-0.50214493,-0.011856253,-0.0019941283,0.0054782904,0.10300871,0.58217514,-0.4484909,-0.14634082,0.09406337,0.84599346,-0.2179546,0.022944275,0.8523951,1.095431,0.87794316,-0.04586796,0.8537964,0.069325395,-0.34143603,0.09940982,-0.26413074,-0.54129684,0.2560192,0.37606254,-0.31889316,0.58119285,0.07631032,-0.08792825,0.20453797,-0.3175277,0.046448972,0.02053415,0.11413602,0.17179348,-0.040337447,-0.4213598,-0.30011526,-0.09917068,0.10285275,0.33608955,0.23777372,-0.31202397,0.49387038,0.0044050673,1.5091641,-0.051240798,0.03475874,0.17117248,0.6773281,0.32092646,-0.008941586,-0.091506846,0.54640067,0.25530103,0.26525548,-0.56006974,0.25241143,-0.37442812,-0.40230063,-0.079606846,-0.5211021,-0.18141586,0.0580745,-0.25322306,-0.119542524,-0.09583974,-0.32808068,0.32716212,-2.7470827,-0.084155194,-0.1674585,0.40655917,-0.25357282,-0.22919728,0.021949796,-0.48808634,0.2715055,0.38729742,0.47669756,-0.6271945,0.33157486,0.5715502,-0.7159484,-0.0031946898,-0.32012558,-0.021462945,0.016194465,0.58151823,-0.16749996,-0.0002851853,-0.017079147,0.24987325,0.4478215,0.07110457,0.08875705,0.3372556,0.36879867,-0.12321888,0.54475063,-0.050054863,0.43344674,-0.29782832,-0.10076012,0.24599868,-0.3645632,0.29495123,-0.19631013,0.14167683,0.5993715,-0.4649058,-0.8664951,-0.50828856,0.22275048,1.0997933,-0.40287656,-0.43743357,0.24987444,-0.485474,-0.2763283,-0.039206844,0.494561,-0.21389736,-0.060335692,-0.64671046,0.014175881,-0.02195891,0.11966842,0.16212589,-0.057927195,-0.44439027,0.7704378,0.08548602,0.58849746,-0.040669873,0.1770489,-0.42337927,-0.43787104,0.18228793,0.6132522,0.4421678,0.043458745,-0.20478044,-0.13668273,-0.1644637,-0.15818483,0.12485339,0.7490057,0.5304811,-0.055437107,0.130048,0.2829251,-0.1295252,0.03433573,-0.11324482,-0.22396295,-0.15809776,-0.17574857,0.4346979,0.6279535,-0.03985525,0.42501637,0.05492711,0.5387646,-0.0194585,-0.46939814,0.67210585,1.1988856,-0.2446642,-0.33582824,0.38357192,0.4265811,-0.3399587,0.45358425,-0.6928853,-0.1961725,0.5864991,-0.1427696,-0.50193644,0.20251285,-0.21127905,0.077839024,-0.69178736,0.050821446,-0.32557008,-0.4326494,-0.40931475,-0.16379884,-3.330986,0.03478268,-0.3239244,-0.29058018,-0.39507002,-0.16044281,0.074702874,-0.81209576,-0.5367275,0.111390024,0.13806301,0.7072596,-0.16488835,0.15068415,-0.27380016,-0.39944664,-0.31538436,0.33785966,0.031150162,0.34041658,-0.26677108,-0.33489752,0.034659103,0.09076316,-0.43599382,0.019978296,-0.44237608,-0.33734792,-0.11418025,-0.65002626,-0.1807929,0.6193666,-0.18331856,-0.0026255297,-0.18601349,0.08845492,-0.05261737,0.15903585,0.083914846,0.102982335,0.17876047,0.0087990165,0.28093544,-0.40001515,0.36031294,0.026107006,0.45569912,0.09524015,-0.07777785,0.24152735,0.3800715,0.4629188,-0.04352997,0.8346646,0.2551794,-0.13966465,0.23114234,-0.1890803,-0.4240672,-0.65911967,-0.2557197,0.016431639,-0.2667664,-0.36334693,-0.25545695,-0.4161097,-0.8563125,0.46480253,0.04841347,0.41575986,0.0010282352,0.35693187,0.65919024,-0.21456939,0.022486363,0.15529384,-0.2140317,-0.66896755,-0.01835802,-0.5342813,-0.35102448,0.17731649,0.53270185,-0.4937695,-0.15224217,0.022068454,-0.4420424,0.16453475,0.17111176,0.02873735,0.1825024,0.58083284,-0.07727592,-0.53754,0.6264261,-0.18999377,-0.19898663,-0.52197826,0.20868042,0.44365433,-0.7309262,0.48075724,0.31039158,-0.04223849,-0.34034553,-0.24505565,-0.041356087,-0.049747054,-0.083156064,0.31349218,0.31009915,-0.72415644,0.26145098,-0.011533453,-0.17967804,-0.76427746,0.5709847,-0.16860868,-0.40632138,-0.21912844,0.39967722,0.14751673,-0.03943123,-0.23850897,0.086350925,-0.3099578,0.026046505,0.11059645,-0.12695208,0.32670575,-0.11330081,-0.19113892,-0.7823815,0.24141198,-0.3949542,-0.2137464,0.54848486,0.07175258,0.15448758,0.08805838,0.18674701,0.2838801,-0.28016785,0.14071147,0.0058448683,-0.2368149,0.51450473,0.44528404,0.51256126,-0.5259265,0.6370509,0.0251084,-0.076614484,0.28594986,0.0036153977,0.32002142,0.059482154,0.563392,0.3142659,-0.25398344,0.25214493,0.56921375,0.21747257,0.5994117,0.18036638,-0.07063489,0.17369233,-0.020158194,0.23386747,0.0010060531,-0.7485079,-0.030027706,-0.32692492,0.060463972,0.44150817,0.16105835,0.21877578,0.012952147,-0.36207575,0.08652285,0.29485032,-0.14905292,-1.0281516,0.25016284,0.44118437,0.87820816,0.4461503,0.03041485,-0.05946006,0.7585366,-0.08078944,0.109376594,0.30086526,0.25728086,-0.5418389,0.5011229,-0.6496018,0.636064,0.010732449,-0.21015136,-0.0055557834,-0.082258135,0.35135368,0.7392277,-0.21907619,-0.16606046,-0.0021016942,-0.39103934,0.17931406,-0.40758625,-0.020301653,-0.58385015,-0.30477443,0.5590097,0.48992884,0.36746722,-0.042383313,-0.004251658,-0.05360409,-0.11932499,0.27935952,0.015675612,0.0715224,0.019709405,-0.7420676,-0.3387358,0.38226193,-0.11821727,0.18222383,-0.038143907,-0.103220716,0.26697972,-0.028170267,-0.0005889787,-0.11969282,-0.7388806,0.20494103,-0.0029465144,-0.642614,0.6629471,-0.02668136,0.27660176,0.25096914,-0.07431779,-0.19178063,0.3289997,0.14541069,0.901372,-0.017833957,-0.062150188,-0.50862384,0.04997479,0.08962853,-0.27442306,-0.013703163,-0.3404665,0.18410532,-0.5626354,0.50790733,-0.10175777,-0.38827676,-0.20528239,-0.23922276,-0.082145855,0.58612686,-0.13926499,-0.183338,-0.14790085,-0.046248104,-0.322813,-0.3999419,-0.29436508,0.078182,0.12140739,-0.055881068,-0.2630221,-0.018755885,0.06689905,0.36677906,-0.10288168,0.47345436,0.3055326,-0.0940928,-0.17538497,-0.25889233,0.42268023,0.4544811,0.03073955,-0.029625664,-0.31264415,-0.6266657,-0.43069333,0.20947888,-0.062763065,0.2512161,0.21439677,0.04294977,0.76973844,-0.24396212,1.1414111,-0.024791548,-0.48153707,0.314212,0.6590644,-0.03497543,-0.20014685,-0.20014364,1.1373506,0.38969642,-0.15950075,-0.089824066,-0.4058923,0.071190715,0.21179493,-0.2059529,-0.052136857,-0.163486,-0.5141766,-0.25444177,0.12723747,0.3073145,0.25276273,-0.0793929,0.019990362,0.24239287,0.13588773,0.27094957,-0.3725007,-0.40347096,0.3797228,-0.11912003,-0.10908561,0.18668853,-0.53069305,0.51463044,-0.45134628,0.08527765,-0.43928978,0.17267224,-0.17063001,-0.24963555,0.27179292,0.096198834,0.46704632,-0.43619412,-0.44254795,-0.41856086,0.40463284,0.39243177,0.22575706,0.4884948,-0.24962792,0.09154008,-0.041371647,0.58397585,0.7927004,-0.061721362,-0.06830367,0.30785477,-0.63070005,-0.69092953,0.23744616,-0.3738187,0.26316753,0.05930111,-0.2526752,-0.64639306,0.32493508,0.1539263,-0.0058349827,0.08415306,-0.8632721,-0.326487,0.09368108,-0.35409674,-0.09626075,-0.3880315,0.02819373,0.6482586,-0.27188584,-0.36071312,0.099343866,0.16651963,0.060967274,-0.54034775,-0.06468729,-0.31387505,0.3294885,-0.047646567,-0.13081786,-0.19354102,0.17758678,-0.49930423,0.40239826,0.011472001,-0.4092323,0.12012542,-0.22938806,0.02375662,0.7902758,-0.29044187,0.019706102,-0.45861638,-0.42182353,-0.835124,-0.42925876,0.24745314,-0.12596464,0.08429012,-0.72603124,0.055013813,-0.20328219,-0.01745261,-0.1652099,-0.5432102,0.40155065,0.13439175,0.47899893,0.027669035,-1.0481416,0.29373977,0.033256955,-0.2657151,-0.7909362,0.35438478,-0.29967785,0.6890125,0.09043606,0.122166164,0.1881102,-0.43089053,-0.14273967,-0.28886622,-0.15736501,-0.49876758,0.006483078,75 +598,0.2153948,-0.25636408,-0.4805203,-0.04483781,-0.1464658,0.059216198,-0.18783051,0.57444835,0.12424902,-0.43512183,-0.14229994,-0.2062712,-0.095330715,0.12164479,-0.119626984,-0.5531224,-0.04639034,0.24516584,-0.51137865,0.43522966,-0.46017578,0.17614578,-0.008214877,0.45867068,0.18382868,0.15982905,-0.025959061,-0.07840102,-0.22923191,-0.25978792,-0.09144088,0.17396882,-0.5484666,0.1287671,-0.14161253,-0.26156548,-0.052936748,-0.47461465,-0.348619,-0.7713802,0.3877568,-0.7006506,0.4298599,0.12539949,-0.2847004,0.12891254,0.12435324,0.40998855,-0.05672515,-0.03737443,0.33854055,-0.15434936,0.005779225,-0.21978667,-0.1418787,-0.19424838,-0.5083846,-0.028384496,-0.35692772,-0.2687906,0.01709618,0.28126886,-0.28859165,-0.088739835,-0.21964043,0.642419,-0.3437648,0.09305036,0.374606,-0.15795936,0.2543842,-0.5773827,-0.1387822,-0.1350259,0.074725375,-0.21520017,-0.2680493,0.12625827,0.19617778,0.40122125,-0.17111763,-0.14426008,-0.07320301,-0.121294335,0.082461886,0.5294951,-0.2845393,-0.32991144,-0.096748896,-0.05872974,0.0508341,0.1746681,0.071502775,-0.3446954,-0.108518615,-0.12888326,-0.25197232,0.26832324,0.46896178,-0.19336444,-0.19221336,0.29458734,0.5262047,0.24531339,-0.11832683,-0.038594343,0.121521,-0.55595815,-0.1866619,0.17484388,-0.10892332,0.49566144,-0.14484902,0.18219839,0.6810465,-0.14889155,-0.055983223,0.091478534,0.24402541,0.22760606,-0.452822,-0.4482053,0.24092744,-0.40430802,0.116227746,-0.17606279,0.7826567,0.120865345,-0.60800004,0.42529994,-0.5389467,0.079795875,-0.02776422,0.54703546,0.6899932,0.39581734,0.28522146,0.56077546,-0.29484418,0.08674626,-0.12362143,-0.03195801,0.10161838,-0.043288883,0.16633591,-0.4216335,-0.013556015,-0.06733653,-0.10376795,0.013944538,0.19216268,-0.6656564,-0.03349457,0.08239097,0.8329413,-0.20991427,-0.09760356,0.6919042,0.8787196,0.90998036,0.17394914,1.0703206,0.2832761,-0.21441555,0.07669193,-0.10954924,-0.7939502,0.18250939,0.21966217,0.2083548,0.0666018,0.18354654,-0.075361,0.49218437,-0.37387925,0.06471259,-0.24328774,0.3911942,0.035928912,0.011977177,-0.20999947,-0.34705245,0.02592841,-0.066367745,0.05062174,0.22152755,-0.20439376,0.33192238,0.012209792,1.6418018,-0.046748757,0.24041143,0.13018139,0.36434263,0.13406417,-0.2470865,-0.0876832,0.40551817,0.3960379,-0.007896364,-0.52945435,0.13093969,-0.1091914,-0.31471136,-0.05219118,-0.11674551,-0.075976886,-0.24190523,-0.45847115,-0.2273639,-0.17514668,-0.15396258,0.36414814,-2.9059598,-0.043441013,0.016724208,0.32465,-0.2841187,-0.44612217,-0.107507996,-0.46835408,0.44188148,0.24122916,0.3794517,-0.6497793,0.3766952,0.21606578,-0.33551443,-0.15983413,-0.7043759,-0.115119055,0.017973743,0.18591891,-0.09387462,0.19275576,-0.1727117,-0.01343044,0.35433975,-0.13974439,0.16837876,0.33049628,0.3095695,0.25660813,0.2565498,0.062352125,0.37371656,-0.2979223,-0.21426636,0.28208813,-0.6472347,0.24653329,0.04162288,-0.026531257,0.4766788,-0.38614437,-0.62682474,-0.6643859,-0.3789372,1.0136628,-0.28576586,-0.29776648,0.17027268,-0.57273155,-0.37445098,-0.083800405,0.582455,-0.038072746,-0.11482918,-0.8073083,-0.14711833,-0.14690131,0.52065986,-0.051095046,-0.019969344,-0.3122914,0.44807544,-0.19692181,0.36446026,0.441548,0.027687011,-0.47123104,-0.41649416,-0.018076448,0.8928395,0.3402678,0.18594623,-0.03648724,-0.17719483,-0.3104943,0.04969573,-0.013270686,0.6676623,0.7558062,-0.056268886,0.1821588,0.35684505,-0.11727798,0.029319461,-0.1310992,-0.39084065,-0.111545324,0.14709562,0.5507899,0.49622986,-0.044155225,0.49086004,-0.032061115,0.29512686,-0.33213264,-0.36954543,0.29835203,0.6078635,-0.052202545,-0.13164441,0.51623523,0.3675215,-0.26764548,0.435253,-0.49873748,-0.26371294,0.47673252,-0.17214158,-0.46777338,0.26622227,-0.24633919,0.083355024,-0.6407104,0.40423635,-0.38308346,-0.77376187,-0.64662224,-0.16864172,-2.601939,0.14204799,-0.26818198,-0.27131942,-0.11206326,-0.11359416,0.21397935,-0.35807002,-0.52246416,0.21148871,0.092671305,0.62174827,-0.01110726,0.029306797,-0.23430842,-0.17424735,-0.30431703,0.13497272,0.24502502,0.17558596,-0.1447553,-0.3568433,-0.12604839,-0.16550805,-0.3266052,0.09365276,-0.6964617,-0.49255818,-0.11426242,-0.66373265,-0.3197737,0.7303781,-0.41664404,0.022770252,-0.24917728,-0.08323793,-0.11143171,0.4381733,0.2968729,0.2986228,-0.085142925,-0.032506056,-0.1526868,-0.23547204,0.011223545,0.099991456,0.1423822,0.34579527,-3.4845792e-07,0.21395046,0.2391116,0.6319618,0.057271555,0.7588388,0.44650683,-0.16756731,0.3444638,-0.25407544,-0.19218427,-0.26331836,-0.09747021,-0.013008322,-0.31384578,-0.4621348,-0.14613596,-0.30834386,-0.7197332,0.419202,0.049411662,-0.17073902,0.0508194,0.34208664,0.33665502,-0.15700197,-0.016583603,-0.123824015,0.004060824,-0.3966827,-0.30722088,-0.48586208,-0.30911893,0.28467208,1.0996615,-0.21213685,0.14426509,0.043908916,-0.27180642,-0.16884874,0.35221192,-0.19478992,0.22050872,0.534045,-0.11564761,-0.5827784,0.26624948,-0.138912,-0.35116354,-0.5665114,0.17744063,0.74986523,-0.77779514,0.7309293,0.2520506,0.036819313,-0.39446926,-0.45096046,-0.27073348,0.03200949,-0.35324982,0.29814702,0.22746979,-0.52477175,0.32693973,0.376128,-0.21261446,-0.7460503,0.32266456,-0.051856473,-0.42499363,-0.12515086,0.38182032,-0.19509356,0.17227069,-0.11381427,0.17885216,-0.39874655,0.07412478,0.18233332,-0.17775342,0.17619395,-0.2804783,-0.08891775,-0.61056596,0.20533241,-0.5009851,-0.40219545,0.23512457,0.02187236,0.141245,0.33561108,0.09642862,0.37988964,-0.21677193,0.16014344,-0.15324908,-0.17130886,0.18131587,0.488633,0.35295904,-0.36633107,0.5992359,0.10545352,-0.026841726,-0.29912883,0.15811095,0.4720201,0.020326775,0.37507203,-0.14823389,-0.18875091,0.28165448,0.94955456,0.08773644,0.56671107,-0.100957885,0.16509101,0.14224344,0.007848561,0.15298216,0.17342503,-0.42338112,-0.088401586,-0.12279863,0.11960955,0.39189038,0.14203247,0.40578854,0.00962459,-0.2850437,0.0029492723,0.22427866,-0.046337843,-1.0401129,0.44252226,0.22956806,0.85320824,0.5904534,0.16779351,0.06935426,0.5663538,-0.1280489,0.15431036,0.16597413,-0.10727843,-0.40826428,0.5837937,-0.7330993,0.41741624,-0.08237307,-0.04928744,-0.07908019,-0.16020386,0.6040182,0.72522634,-0.17284347,-0.025096783,0.036599614,-0.2017029,0.11613666,-0.3172848,0.0790584,-0.6960316,-0.45380723,0.5381951,0.45697168,0.38494554,-0.23313716,0.008852789,0.25399774,-0.053802073,0.06890312,0.00832819,0.06794576,0.1469462,-0.5586358,-0.31989238,0.60063446,-0.32073462,0.097939655,0.075259,-0.12665083,0.30190113,-0.17446372,-0.029478274,-0.1536054,-0.74530834,0.13121966,-0.39228678,-0.35030854,0.4765243,-0.26166427,0.12475732,0.086953245,0.18587941,-0.31017208,0.60445625,0.21133192,0.75029343,-0.03511968,-0.13051698,-0.21714643,0.35196787,0.06185865,-0.07476587,-0.17077404,-0.1882604,0.04159925,-0.67366874,0.42470858,-0.039981227,-0.093182735,0.07993957,-0.10284294,-0.028941823,0.5045202,-0.031643752,-0.06216062,0.015445865,-0.4854411,-0.24475397,-0.05550224,-0.081497364,0.30934876,0.1954508,0.041826215,-0.06929112,-0.03863891,-0.25569308,0.4468826,0.08230631,0.29465315,0.37303466,0.17932269,-0.36281306,-0.11504478,-0.043851502,0.4557801,0.119746275,-0.03974219,-0.1300132,-0.28716856,-0.3242134,0.5120483,-0.11228587,0.48210204,0.023499044,-0.24604797,1.0116091,0.06509396,0.9670851,-0.09068028,-0.29268268,-0.05528208,0.37923387,-0.10960657,0.018965181,-0.4966749,0.8351227,0.2911406,-0.06402323,0.03831121,-0.20281121,-0.09030465,0.3577704,-0.1067617,-0.12065755,-0.11510234,-0.552673,-0.2326822,0.18949355,0.2497059,0.03148464,-0.05648084,0.035153504,0.33279407,-0.08393494,0.112344615,-0.4147094,0.2397566,0.3082482,0.25691974,0.097931735,0.16753814,-0.37325656,0.40724277,-0.5135752,0.23235358,-0.1167991,0.09894722,-0.17087232,-0.39151856,0.13633583,0.12175377,0.26233995,-0.50043446,-0.13583368,-0.24438047,0.47446358,0.23735546,0.20441619,0.573898,-0.28241333,0.081591375,-0.089780286,0.51681054,0.77478886,-0.24974085,-0.17649522,0.4268091,-0.26949093,-0.69748867,0.37059137,-0.25193486,-0.030195732,0.018282373,-0.20301352,-0.39436147,0.23534451,0.3321132,0.11929737,0.031765778,-0.5608991,-0.026391152,0.38855156,-0.08411288,-0.29614323,-0.36058316,0.2627098,0.7768866,-0.16838352,-0.2932613,-0.016223338,0.21751414,-0.35784644,-0.2993483,0.00057833124,-0.44268715,0.28828144,0.008355205,-0.2119763,-0.12291687,0.11213439,-0.4533704,-0.021331837,0.095011435,-0.2738834,0.013789723,-0.09360159,-0.060075678,0.78160137,-0.18080051,0.028931411,-0.50765,-0.468019,-0.58991265,-0.23768264,0.40165088,0.12249672,-0.039400797,-0.62168527,-0.082522355,-0.11824683,-0.1046516,0.011723716,-0.3159947,0.5246649,0.18589629,0.18182606,-0.08502852,-0.77508664,0.073512636,0.072688766,-0.28492534,-0.4872104,0.3908337,-0.08926438,0.7732681,0.04342634,0.0095587885,0.28399447,-0.35964042,0.1920133,-0.2050326,-0.20463273,-0.72504586,0.050332896,84 +599,0.5443111,-0.083397426,-0.5493235,-0.17897575,-0.16925001,0.03799951,-0.23751964,0.48944652,0.12360627,-0.5703885,-0.21895324,-0.16225663,0.1859559,0.21203023,-0.15063979,-0.68642044,0.12340418,0.27663213,-0.29459608,0.47439593,-0.5058103,0.41466767,0.023415145,0.35013792,-0.0041386713,0.26104987,0.1667164,-0.17433771,-0.02417346,-0.3381887,-0.07346819,0.31401289,-0.8247848,0.14969751,-0.13644019,-0.54567873,0.21309607,-0.32117873,-0.28697836,-0.6573919,0.11827651,-0.76431286,0.5137234,0.29127827,-0.32102233,0.06772949,0.117380984,0.35117736,-0.23128048,0.19514424,0.19284448,-0.15191562,0.00887206,-0.2500171,-0.10744857,-0.51510805,-0.6223496,-0.14411211,-0.3747166,-0.16617133,-0.37605283,0.20846708,-0.27949652,0.018376043,-0.04049944,0.22057962,-0.5127374,-0.11919591,0.24584284,-0.18192922,0.42743254,-0.44619352,-0.22450124,-0.13962658,0.33599842,-0.41768405,-0.20594798,0.2243219,0.23246437,0.45983252,-0.03848175,-0.22060816,-0.37057745,-0.12869094,-0.026588788,0.6379453,-0.23303853,-0.40077612,-0.09799806,-0.12237407,0.009746224,0.44146603,0.093563825,-0.033829156,-0.19279186,-0.10384731,-0.2501332,0.18064615,0.48500136,-0.461739,-0.24044701,0.17271343,0.37119308,-0.029344486,-0.056852855,0.06887356,0.007845996,-0.5809034,-0.27719158,-0.0034488714,-0.2337211,0.60606265,-0.042070583,0.19713844,0.75102705,-0.02682619,0.11601463,0.013399069,-0.038819477,0.10027286,-0.20160106,-0.31133702,0.4776162,-0.4455055,0.21623649,-0.2833091,0.777888,0.22835407,-0.6925862,0.26554042,-0.6636342,-0.018663295,-0.123753004,0.4783126,0.31974322,0.41423872,0.35341388,0.6792494,-0.58659923,0.09544743,-0.048130926,-0.19041666,0.058469217,-0.107772864,0.021001317,-0.2866461,0.063657515,0.13725387,-0.030298023,0.14876422,0.49009416,-0.5609249,0.030623479,0.35514766,0.839922,-0.36530483,0.040929463,0.5997209,1.0037555,0.90120053,-0.00029240205,1.2322837,0.22445172,-0.37758416,0.008664755,-0.10540748,-0.7307311,0.1850219,0.42601797,0.16935904,0.25444072,0.32859594,0.00998353,0.31798744,-0.2768211,-0.053632285,-0.1304395,0.043882873,0.0357397,-0.1546874,-0.4455937,-0.32844993,-0.19970693,-0.025126027,-0.17030877,0.28406432,-0.17646216,0.21129104,0.051821813,1.7901319,-0.0018851482,0.17660843,0.15299071,0.4558064,0.272889,0.005016453,-0.049826257,0.2960469,0.22612868,0.21944435,-0.41121724,-0.013912857,-0.21850553,-0.434148,-0.12246021,-0.23085967,-0.11388026,0.0022274645,-0.5189056,-0.10507311,-0.041945733,-0.1340964,0.455763,-2.482352,-0.06775026,-0.012895486,0.45389387,-0.3366857,-0.37816048,-0.17028962,-0.45894513,0.5190111,0.44712418,0.5597865,-0.618101,0.39861855,0.4729482,-0.44978043,-0.029216306,-0.6141329,-0.26382032,-0.10377664,0.13516298,0.021095883,-0.072226234,-0.20040263,0.13106783,0.43521336,0.030198606,0.05583233,0.17876276,0.28120798,0.01920441,0.59753186,0.07905614,0.4412875,-0.15955943,-0.14833072,0.32085148,-0.53283376,0.335878,-0.07167009,0.07070962,0.37210962,-0.5759768,-0.99956393,-0.7051881,-0.40379572,0.94123465,-0.17574795,-0.2864423,0.33927646,-0.23790066,-0.31140327,-0.055989463,0.40110397,-0.013320721,0.1782855,-0.7589355,-0.09802926,-0.19597515,0.27049717,0.14303638,0.01778346,-0.56723964,0.8212217,-0.1640425,0.45368722,0.41497913,0.23419636,-0.0027904143,-0.51416385,-0.09967287,1.0533705,0.2188217,0.22699095,-0.37781164,-0.2812211,-0.3767429,0.14480576,0.10845768,0.51062226,0.81376463,-0.17367426,0.12925589,0.19764392,0.08918199,-0.054258343,-0.19470742,-0.3510027,0.032513984,0.11195789,0.5526152,0.59572613,-0.030011225,0.2820986,-0.04312263,0.51112944,-0.2219611,-0.45486706,0.16070281,0.99605787,-0.0062745763,-0.19307882,0.7583333,0.6715481,-0.22625835,0.4995503,-0.8061495,-0.42742282,0.30123684,-0.16326247,-0.35491878,0.26751485,-0.44957024,0.04288291,-0.9202696,0.4376908,-0.36417294,-0.40126246,-0.53155303,-0.22107968,-3.844785,0.27771482,-0.1754683,-0.13931674,0.16779628,-0.089484945,0.29745856,-0.7102958,-0.5452214,0.21029605,0.028682746,0.6794334,-0.15008184,0.14423457,-0.2799898,-0.24069078,-0.22851108,0.315957,0.24096495,0.10938712,-0.082982905,-0.43580973,-0.07564795,-0.17647314,-0.26905584,0.11981893,-0.575417,-0.487827,-0.14149703,-0.5602983,-0.22801901,0.66750515,-0.40809822,0.046369214,-0.15178663,-0.061338764,-0.22793421,0.28325784,0.1802542,0.23428747,-0.06859146,-0.10983343,-0.1165631,-0.310719,0.337742,0.12860386,0.2552765,0.26208243,-0.21572106,-0.01612668,0.45594758,0.34466285,-0.21197289,0.91687703,0.39378908,-0.124913014,0.33323193,-0.2668222,-0.3682105,-0.6927706,-0.40088975,-0.094111316,-0.37908474,-0.41308057,-0.07140924,-0.41097376,-0.66755587,0.67407894,-0.1308317,-0.0322056,-0.006667731,0.29454625,0.33501455,-0.28682804,-0.23129486,0.011533595,-0.011088842,-0.5633639,-0.312441,-0.5296942,-0.48358065,0.0037987279,1.0894886,-0.303757,0.075781114,0.12770037,0.031124193,0.039206084,0.24957982,0.06318169,-0.039237317,0.56476843,0.09410035,-0.715736,0.62071323,-0.108824365,-0.2747334,-0.48447943,0.13383839,0.60131717,-0.8622926,0.5895843,0.49427244,0.27139553,0.12867634,-0.7050521,-0.45364317,-0.011958404,-0.29661322,0.36427644,0.21943782,-0.7489175,0.19858958,0.2764212,-0.4415873,-0.64948106,0.68305933,-0.11067736,-0.53970736,0.028668817,0.34239525,0.038584672,0.061604157,-0.079555914,0.28778556,-0.44443294,0.26589835,0.3631792,-0.023455627,0.13488269,-0.1822553,-0.0007064159,-0.81375927,0.11190288,-0.4226282,-0.370734,0.23401318,-0.071210116,-0.26367325,0.49872193,0.2732055,0.46066207,-0.4309615,0.18321282,-0.06534861,-0.34221455,0.56599915,0.3834324,0.52718925,-0.4227679,0.56143045,-0.10402731,-0.16849764,-0.17972943,0.08749354,0.5552938,-0.18350035,0.39109468,-0.09508606,-0.105278604,0.27554458,0.83060455,0.21552724,0.49695772,0.059921544,0.07612094,0.21578714,0.20729494,-0.029249169,0.21689019,-0.5082894,0.06460797,-0.2106567,0.12618546,0.52188605,0.10164742,0.2560886,-0.113620885,-0.23655325,0.059054367,0.24204962,0.07895262,-0.8524183,0.36862418,-0.0060477247,0.78194565,0.63032055,0.16354895,0.14870892,0.43010923,-0.26256278,0.062306542,0.22837344,-0.07024078,-0.4345177,0.56918365,-0.49434286,0.31280664,-0.04573149,0.02641143,-0.032375112,-0.26090434,0.5337184,0.9590734,-0.096884295,0.12421623,0.03840304,-0.16969354,0.078558,-0.41128415,-0.16245034,-0.6216079,-0.19283822,0.8186499,0.48655036,0.38603723,-0.158137,-0.04421713,0.066327795,-0.11177023,0.21559548,0.04956416,0.032541838,0.025564266,-0.45573884,-0.1981404,0.6141392,-0.17606218,0.08182276,-0.025954647,-0.09112415,0.39502952,-0.068926066,0.0904108,-0.05837051,-0.7283479,0.012872531,-0.6694197,-0.24988033,0.4445801,-0.09272074,0.29273468,0.25755662,0.09235501,-0.09943589,0.38824236,0.18286675,0.6889836,0.036622226,-0.14850031,-0.39594093,0.2118899,0.17877151,-0.22979616,0.050302424,-0.33568767,0.17809065,-0.77068275,0.40460572,-0.007516494,-0.21301533,0.09587528,-0.05123589,-0.089604184,0.44644004,-0.09027342,-0.23747066,0.19213359,-0.012668527,-0.18155766,-0.07188154,-0.26334718,0.14952916,0.03804669,-0.07588976,-0.03343072,-0.017791761,0.07489315,0.4753545,0.0032498264,0.43700224,0.25426152,0.06015087,-0.29248965,0.027276516,-0.016435247,0.5375386,-0.2739039,-0.135888,-0.28161663,-0.52060646,-0.3270408,0.22254014,-0.19953777,0.2643573,0.18548241,-0.19005172,0.924507,0.11585564,1.0754737,-0.02701229,-0.39147502,-0.027840398,0.62304205,-0.13858369,-0.09806486,-0.45623037,1.2459514,0.6046407,-0.19759195,-0.17897676,-0.107799694,-0.06338324,0.018174639,-0.19527023,-0.14503354,-0.061242554,-0.67207235,-0.19663347,0.21178637,0.42668027,0.14291048,-0.089971654,0.112942256,0.2941231,0.20056358,0.06988525,-0.5881652,-0.35193995,0.3006346,0.2607883,-0.04737935,0.11787013,-0.30713212,0.4415426,-0.44327876,-0.045340564,-0.44099534,0.012042289,-0.14231864,-0.44472048,0.18321015,-0.005098196,0.2848588,-0.33992884,-0.22245906,-0.09734027,0.3663264,0.19962817,0.27077788,0.45542178,-0.25099233,0.03715033,-0.07351717,0.4782055,1.08446,-0.32829124,-0.04260458,0.5435582,-0.4742123,-0.5091987,0.16162784,-0.43907467,0.06649489,-0.09352961,-0.3969444,-0.5279375,0.24132696,0.18312,-0.12631382,0.20237952,-0.53871244,-0.15017742,0.24380182,-0.4680169,-0.40665838,-0.28908905,0.40778872,0.7829599,-0.180713,-0.2297568,0.21836154,0.11421425,-0.32081026,-0.5891047,-0.04579362,-0.37355644,0.3647312,0.07726312,-0.27790144,-0.099734075,0.011102142,-0.40013173,0.1304153,0.40478295,-0.27945635,0.08665276,-0.5398356,0.060035285,1.0530361,-0.09660895,-0.15741253,-0.5012215,-0.42438653,-0.8998559,-0.42296174,0.7267209,0.27853444,0.09208545,-0.34789813,-0.01480119,-0.048835475,-0.10997259,-0.11855551,-0.17226052,0.41756922,0.10972692,0.4921432,-0.23144911,-0.88146794,0.06767514,0.1349432,-0.395242,-0.50421757,0.422277,-0.15783504,0.9366653,0.13957359,0.0126208365,0.4253945,-0.43652332,0.027071297,-0.2022011,-0.055967387,-0.77949274,-0.07411565,86 +600,0.14947058,0.03967376,-0.7183444,-0.2885564,-0.20514661,0.05877125,-0.17457043,0.4154691,0.37862805,-0.20434983,0.027919682,-0.048279405,-0.09258231,0.47253177,0.04934368,-0.82448554,0.058400307,0.18156312,-0.58812225,0.37246066,-0.6084773,0.36460716,-0.10154548,0.38156524,0.057114813,0.32920688,0.11321317,-0.12575144,0.16478649,0.14994396,-0.09178621,0.2512227,-0.52077657,0.22526556,0.051331885,-0.33342716,-0.034705296,-0.26532567,-0.1455982,-0.72836155,0.1532961,-0.5480738,0.5522984,0.0074146846,-0.4252354,0.013421059,0.17581652,0.36129138,-0.30725068,0.020411532,0.35603568,-0.170145,0.0026981372,-0.117565155,-0.27616715,-0.59845716,-0.49639493,0.0057311286,-0.6321442,-0.091025904,-0.2810896,0.22068092,-0.34896743,-0.10417791,-0.31351253,0.3775123,-0.40386808,0.065947756,0.21855241,-0.27222872,0.15848336,-0.48313156,-0.11999173,-0.13984862,0.30193332,-0.14745793,-0.2931641,0.13367237,0.46640983,0.49636474,0.17430407,-0.28394097,-0.3348955,-0.11221959,0.09299628,0.5120741,-0.14252459,-0.26243642,-0.24927396,-0.14895873,0.06724175,0.1588603,0.019035252,-0.4876254,0.03768607,0.24059732,-0.25383812,0.26951003,0.40460998,-0.474397,-0.394033,0.4550566,0.4302052,0.038991,-0.29712453,0.106494755,-0.09873179,-0.493947,-0.26917,0.072275996,0.006234671,0.35373858,-0.1561153,0.08600222,0.8596147,-0.077024326,-0.1768887,-0.03906267,-0.09611322,-0.007786393,-0.4030295,-0.0009233126,0.14968874,-0.5051026,0.08296065,-0.18474014,0.6032775,0.020000933,-0.93476486,0.28386968,-0.5704895,0.061818004,-0.12480994,0.6094912,0.8997419,0.2133673,0.06563804,0.8569445,-0.5152245,0.048246995,-0.01569681,-0.5101771,0.33800873,-0.12144824,0.15659316,-0.49147204,0.15642546,0.08824374,0.012449952,0.15691844,0.34901267,-0.5408565,-0.11505377,0.109284915,0.53439915,-0.36817747,-0.19388959,0.65371037,1.0482953,0.9869791,0.08097381,1.4966813,0.29730722,-0.2021153,0.2032996,-0.37846038,-0.45685026,0.16884646,0.240999,-0.20999338,0.3536941,0.113895774,0.24237153,0.5233434,-0.07631898,0.13809845,0.0051160227,0.2559202,-0.0014513388,-0.1764827,-0.31800553,-0.2606772,0.1869509,0.107569024,-0.0380128,0.33918542,-0.24053165,0.25076956,0.08563502,1.3022624,0.0667504,0.09783835,-0.05460055,0.3306235,0.25876984,-0.29762787,0.004401042,0.38646266,0.16400415,-0.08567904,-0.5328035,0.04360483,-0.34926242,-0.35357568,-0.2754869,-0.42831773,-0.048385937,-0.0750575,-0.43757108,-0.082006976,0.053047903,-0.35104975,0.40714106,-2.641462,-0.31127453,-0.19706462,0.23044528,-0.13283132,-0.2797935,-0.30957383,-0.39106777,0.19183883,0.28371158,0.38853723,-0.5952299,0.53922284,0.3097769,-0.45838326,-0.2256966,-0.64136976,0.06635884,-0.10554568,0.27762488,-0.099251166,-0.032451317,-0.21014613,0.14705661,0.5693373,-0.09333909,-0.05111234,0.32517523,0.41876304,0.055961814,0.58515584,0.1273224,0.75371796,-0.15274987,-0.13179994,0.3957734,-0.44128132,0.39749828,0.13457367,0.082917534,0.4111598,-0.34995696,-0.9963472,-0.66586083,-0.3448267,1.1405165,-0.4221379,-0.16158468,0.34970805,-0.13569781,-0.35951382,0.03915961,0.43116963,0.0106201535,0.022162098,-0.6522591,0.14883043,-0.07787972,0.1782322,-0.094659075,0.09974789,-0.3795007,0.6752526,-0.02475072,0.54434633,0.31787926,0.13928989,-0.2667468,-0.31312835,0.036158767,1.0575017,0.24102007,0.09726779,-0.07038743,-0.2369291,-0.35606763,-0.11743696,0.21262868,0.52966416,0.5155932,-0.11296324,0.1907178,0.32933614,-0.1256143,0.01394301,-0.057472367,-0.36924157,0.0035553586,0.3132418,0.4901764,0.60779464,-0.29490876,0.43285438,-0.071379825,0.22096191,-0.18511496,-0.6417478,0.51503426,0.7964334,-0.011728715,-0.19840458,0.60050327,0.38960904,-0.34619093,0.4614278,-0.47199017,-0.3074505,0.59620833,-0.16085431,-0.28315666,-0.006465483,-0.33926323,-0.02033632,-0.80512935,0.17297147,-0.19574007,-0.61948043,-0.3619982,-0.1895892,-3.9997776,0.18083169,-0.00080126524,-0.012295828,0.0071006003,0.01563292,0.34823835,-0.4918448,-0.5433345,0.060760282,0.15558802,0.553016,-0.08631636,0.16323373,-0.40122873,-0.2761061,-0.27444932,0.25464615,-0.042999335,0.30018374,0.07812142,-0.503357,0.05304949,-0.27031916,-0.5303711,-0.0077396976,-0.555653,-0.34289345,-0.062238906,-0.6026658,-0.26749915,0.78866315,-0.61859804,0.009469749,-0.28788042,0.013461883,-0.0525984,0.4128827,0.15392981,0.1611153,0.22597662,0.0457446,-0.18394351,-0.42607492,0.14224614,0.052498743,0.4406695,0.37911123,-0.015290407,0.19981432,0.6356491,0.69047445,0.015189221,0.7909952,0.2822619,-0.018502893,0.3651007,-0.2695124,-0.18420564,-0.5690865,-0.4268223,-0.391461,-0.5142916,-0.49192873,-0.023154331,-0.3858713,-0.80402315,0.55604327,0.14013621,0.0024729143,-0.026179489,0.28322342,0.2912566,-0.13636237,0.053814825,-0.22416762,-0.23438127,-0.48659235,-0.4990183,-0.6153902,-0.68809676,0.36767644,1.1478953,-0.34944457,-0.010770743,-0.111427076,-0.30737767,0.029027332,0.32293907,0.21667908,0.2907152,0.5151741,-0.18119043,-0.69140965,0.25884056,-0.21371864,-0.05180027,-0.49743792,0.077428825,0.64587224,-0.73432034,0.60381275,0.2106769,0.25856364,0.27141297,-0.54519963,-0.34536695,0.12073959,-0.36854395,0.6267522,0.18967399,-0.7215558,0.4822183,0.16561761,-0.17709994,-0.66699994,0.4012121,-0.13084072,0.038957283,-0.13726398,0.39079666,0.17910448,-0.10639079,-0.1704168,0.15459949,-0.5030013,0.15202695,0.3819003,-0.05890934,0.5152042,-0.028742753,-0.20814504,-0.72110933,-0.13467804,-0.4549298,-0.29224893,-0.090734944,0.12863947,0.1672252,0.1610604,-0.019642876,0.33098236,-0.42010453,0.1325879,-0.02292147,-0.24308842,0.29261523,0.48553163,0.22840779,-0.49902695,0.5029907,0.10055192,-0.007753936,-0.10917531,-0.014621485,0.5525664,0.16154489,0.43290997,-0.08031765,-0.13994315,0.2177158,0.5848944,0.24150088,0.2997418,0.049227457,-0.16578063,0.13541676,0.11899476,0.10726659,0.0856454,-0.36107603,-0.001439819,-0.036036994,0.2840435,0.51715434,0.15083945,0.28387573,-0.026641753,-0.31073385,0.31457108,0.12938847,-0.13001458,-1.0323439,0.39777943,0.28726187,0.68756145,0.62413543,0.055396616,-0.082572095,0.4938305,-0.35549358,0.09366362,0.50080144,-0.11590819,-0.42722702,0.59418094,-0.82725483,0.5650353,-0.1719782,-0.022845112,0.19735083,0.11801096,0.41872838,1.0285494,-0.21886481,0.13473043,0.102562994,-0.23132655,0.11767769,-0.3220927,0.10920453,-0.54317135,-0.3504704,0.67855585,0.42273766,0.15441717,-0.42053568,-0.11234571,0.13713008,-0.16673774,-0.06409348,-0.19820449,0.009372766,0.037802234,-0.52192366,-0.24899484,0.61070293,-0.0066538593,0.103606075,0.16667596,-0.33765686,0.36338776,-0.15637144,0.045049813,-0.07810649,-0.47755188,-0.045566,-0.26728597,-0.4541942,0.5198012,-0.40692222,0.29307368,0.15617067,0.047924902,-0.20141563,0.57856405,0.14022812,0.7331193,-0.0323228,0.02381086,-0.19948171,0.24057175,0.28836724,-0.19510815,-0.16692716,-0.49794945,0.13711718,-0.601111,0.32541576,-0.14349297,-0.28127915,-0.18024951,0.0017448881,0.05658996,0.41190004,-0.25106177,-0.11392646,-0.02316893,-0.03218966,-0.16188115,-0.0071879807,-0.34922937,0.24471079,-0.008871464,-0.048924603,-0.019945534,-0.20103748,-0.15838534,0.23824963,0.08982364,0.16304237,0.22184035,-0.09628987,-0.20271532,0.14447348,-0.080790885,0.3137356,0.18423176,-0.23272492,-0.16409895,-0.13582246,-0.35040534,0.2821158,-0.1122979,0.30624455,0.03442253,-0.39905882,0.665577,0.1788564,1.4700532,0.06860031,-0.50117224,0.13631518,0.49043104,0.062881894,0.15196322,-0.3400688,0.835788,0.58677137,-0.1933407,-0.21992907,-0.39305085,-0.342581,0.26402298,-0.2759932,-0.30580106,0.040470675,-0.74772525,-0.27185118,0.13930005,0.18512693,0.15629229,-0.09021947,-0.0042179683,0.13288914,0.26684842,0.2431857,-0.55257046,-0.1608329,0.24745393,0.44881293,0.03994064,0.17590275,-0.34190667,0.5314309,-0.8174468,0.2830284,-0.37939277,0.17789459,-0.37086803,-0.3434774,0.21871923,0.11176631,0.23610702,-0.17452845,-0.40387037,-0.24830121,0.73999023,0.18216188,0.2518298,0.83654475,-0.29187,-0.1418773,0.10017527,0.2905912,1.1987541,-0.14427128,-0.2775876,0.4129426,-0.21585666,-0.6530322,0.18713656,-0.53303105,0.11365353,-0.11932389,-0.51308626,-0.25086907,0.3185038,-0.036537383,-0.051078677,0.028180668,-0.5113236,-0.04436082,0.29660174,-0.25642982,-0.2998042,-0.22590297,0.30333984,0.77568597,-0.4722758,-0.4382773,0.1680138,0.3121791,-0.24877109,-0.58832544,0.03771228,-0.34967312,0.5198357,0.21132715,-0.30779758,-0.0053435587,0.2606087,-0.39332563,0.18528144,0.5254228,-0.31171435,0.19685918,-0.2976853,-0.16601966,1.1283766,0.07926785,0.32593095,-0.5006073,-0.4726845,-0.7935101,-0.28083885,0.20137192,0.045883894,-0.14085947,-0.4556924,-0.1391978,-0.13265772,-0.10223869,0.16140601,-0.45048583,0.44712704,0.044542972,0.51889443,-0.10968577,-1.1650608,-0.17304696,0.39121202,-0.0672591,-0.57721615,0.5290104,-0.26746517,0.8449925,0.09234202,0.096065715,0.24848002,-0.47286594,0.34389216,-0.47187248,-0.0440768,-0.63841873,-0.0017576676,90 +601,0.593073,-0.2695653,-0.5241764,-0.25934818,-0.4101768,0.23778161,-0.08965404,0.5291154,0.38339078,-0.23483127,-0.0522639,-0.03809532,-0.08904313,0.5538491,-0.16278069,-0.7006146,-0.1373658,0.20010744,-0.5676233,0.35988906,-0.46866876,0.27431577,0.012823215,0.48378214,0.14982356,0.23535344,0.22428623,0.19119498,-0.021622254,0.011263852,-0.17173107,0.26102078,-0.48165572,0.266835,-0.03457504,-0.36579162,-0.20761254,-0.4059614,-0.13079695,-0.69716865,0.19403876,-0.67998576,0.43146434,-0.16544813,-0.48901683,0.13106655,0.10087526,0.24095082,-0.35341412,0.11526395,0.03747864,-0.12227484,-0.050554592,-0.052876078,-0.3979247,-0.4811545,-0.59376174,0.036164615,-0.47597584,0.0214878,-0.24445692,0.27028042,-0.22054416,0.10600912,-0.14389865,0.33741075,-0.40583882,0.028179046,0.32938847,-0.30621415,0.068953566,-0.40504345,-0.117126666,-0.13298513,0.14795893,0.16582854,-0.33023542,0.14332877,0.40267226,0.5244487,0.14814717,-0.23385416,-0.3191781,0.02338609,0.032969404,0.43651676,-0.09214856,-0.06868781,-0.39553207,-0.20127942,0.40025282,0.19964978,0.091786295,-0.4457752,-0.014163183,-0.1325524,-0.24831852,0.10711681,0.3649395,-0.47295988,-0.1693256,0.41637406,0.40838793,0.043391116,-0.14918078,0.22123753,0.0140863545,-0.6267048,-0.21767172,0.13953222,-0.03194274,0.42316717,-0.20388132,0.17288898,0.5203879,-0.06439306,0.019245319,-0.15965192,-0.00094912143,-0.0882724,-0.42226383,-0.16395895,0.26443428,-0.3848054,-0.09852537,-0.18133661,0.56781584,0.10055388,-0.69008315,0.33983758,-0.4281685,0.17245173,-0.1122889,0.46359542,0.91244566,0.48198432,0.07675339,0.8947248,-0.46557984,0.08985028,-0.25451186,-0.21937051,0.21560471,-0.20535623,0.0038121296,-0.5203022,0.2956151,0.0028970242,-0.13514496,0.2686074,0.35594648,-0.5223666,-0.23898484,0.074244455,0.56138355,-0.4137077,-0.21242927,0.8360198,0.8875031,1.0651584,0.07751954,1.4109445,0.41137645,-0.031582512,0.032700315,-0.09194369,-0.47862613,0.22183107,0.29387963,0.030891657,0.526976,0.042370442,0.02539318,0.6482894,-0.06104984,-0.056856595,-0.046695895,0.18077832,-0.011386137,-0.06663524,-0.40194318,-0.40920746,0.19511054,0.12743062,-0.055383243,0.24017951,-0.22603747,0.5515015,0.05582911,1.4645729,0.05629484,-0.03283385,0.08001251,0.17970729,0.33950794,-0.3586416,-0.125411,0.25145373,0.3729072,-0.07465618,-0.5562949,0.14160545,-0.17118236,-0.40051684,-0.0931468,-0.3463566,-0.14907001,-0.07814927,-0.561129,-0.21133529,0.021743078,-0.24220484,0.40561575,-2.364536,-0.27292943,-0.19456798,0.22934459,-0.18692422,-0.43090898,-0.34909552,-0.34744868,0.11324703,0.43420455,0.26308104,-0.5182356,0.33185908,0.27287915,-0.4501829,-0.0702142,-0.6426502,0.051595267,-0.05121893,0.21922612,-0.151405,-0.16713089,-0.15836889,0.3098556,0.71034116,0.06524349,0.007701383,0.44699442,0.44751498,-0.022547612,0.5837355,0.04585397,0.6185219,-0.35331365,-0.26658788,0.45590037,-0.50015867,0.3998353,0.21868198,0.21424752,0.4314597,-0.4168272,-1.1030991,-0.6536379,-0.2615356,1.4697222,-0.4602568,-0.40259588,0.28308517,-0.19435705,-0.26009843,0.07564481,0.39325368,0.04965685,0.009785705,-0.8020025,-0.10334039,0.103111714,0.21214125,-0.0778496,-0.12735674,-0.21471442,0.6986332,-0.22451147,0.51760757,0.424116,0.10643571,-0.056457818,-0.5443998,0.039802905,0.82590866,0.37811607,0.13753264,-0.11856507,-0.15254411,-0.2563426,-0.048244953,0.2516607,0.5501574,0.627269,0.026094029,0.22112186,0.35862207,0.041973565,-0.014417162,-0.066250086,-0.2459707,-0.15326221,0.21440373,0.6024629,0.6947285,-0.06933044,0.28501415,-0.1555662,0.23390564,-0.1802457,-0.69390744,0.49811953,0.9104699,-0.23913305,-0.3067097,0.68460625,0.3577634,-0.27516705,0.42810455,-0.5628256,-0.27038598,0.4106655,-0.10225996,-0.26897126,0.06683069,-0.2907572,-0.021860095,-0.9164596,0.18917105,-0.037623663,-0.4535909,-0.43484512,-0.2368887,-3.6563246,0.28575557,-0.03615249,-0.2500644,-0.016289968,-0.17907864,0.46781966,-0.5980249,-0.61893994,-0.006095501,0.014203728,0.42742538,-0.15873724,-0.027482899,-0.36556017,-0.28382307,-0.23878011,0.09000837,0.07890119,0.3070812,0.08840489,-0.50595635,-0.09416516,-0.22023326,-0.56635445,0.0082938885,-0.68409115,-0.4662228,-0.19509673,-0.3899231,-0.09555537,0.6319134,-0.49198386,-0.02728812,-0.19653927,0.086210184,-0.23003721,0.26303184,-0.08286308,0.10213053,0.1407561,0.0028101872,-0.069382586,-0.21737121,0.23148704,0.18110187,0.27443603,0.3013256,-0.27428028,0.16930628,0.7080841,0.66924673,-0.15912089,0.7645311,0.32723516,-0.023844473,0.26633307,-0.0811009,-0.13760394,-0.5121058,-0.3198268,-0.25508714,-0.5849605,-0.33786318,-0.015525782,-0.2608325,-0.9621916,0.46505064,0.038258977,0.14068817,-0.15635513,0.23089622,0.43109336,-0.21477762,0.16943318,-0.17176367,-0.34932172,-0.46371108,-0.5528502,-0.6136552,-0.600977,0.37931168,1.3383683,-0.18834393,0.094475545,0.005649608,-0.3996633,0.048681714,0.24577412,0.12343414,0.14979002,0.2706918,-0.19036414,-0.60622936,0.22602159,-0.1933326,-0.097551756,-0.57825905,0.28819272,0.6675044,-0.54856133,0.64213663,0.24134383,0.24686936,0.20950468,-0.5823984,-0.3017483,0.0018051083,-0.18759903,0.7724097,0.36795527,-0.7497304,0.5340527,0.1857833,-0.27229017,-0.616498,0.40045363,-0.089319296,-0.03001821,-0.044012766,0.36519983,0.20577475,-0.1414896,-0.14210898,0.17822704,-0.47249568,0.22274722,0.42348832,0.07661277,0.29999927,-0.061475523,-0.03768201,-0.7818422,-0.10246555,-0.5135821,-0.31564295,0.0969644,-0.03418978,0.0540784,-0.013327878,-0.06985451,0.38300925,-0.30015442,0.085855536,-0.04108751,-0.30153733,0.5720645,0.53907204,0.38246933,-0.3278747,0.4178921,0.11800218,0.11721008,-0.10082451,0.0024169593,0.4248118,0.3037114,0.34599993,-0.25253013,-0.109595425,0.21450886,0.4643243,0.14800093,0.20726433,0.0070600417,-0.28343165,0.26080656,0.2640886,0.16598329,-0.22287995,-0.24007331,-0.059712168,-0.13517159,0.2917953,0.5435498,0.13824813,0.4570581,-0.05959574,-0.1650295,0.29435068,-0.0563002,-0.042655963,-1.2689792,0.26249927,0.09402088,0.6218245,0.5139028,0.026997007,-0.020257326,0.46997792,-0.25423425,0.050398268,0.50429475,0.02050259,-0.45928413,0.59626895,-0.7504606,0.44658047,-0.20826513,0.030999573,0.22524124,0.4269528,0.6333835,0.8374215,0.08025089,0.06329664,-0.004917606,-0.21525823,-0.04621438,-0.36237332,0.020423997,-0.61479545,-0.38373178,0.6449509,0.4322275,0.4824541,-0.4809379,-0.120147064,0.047667596,-0.09929628,0.13060562,-0.12928256,-0.0046256687,-0.1566069,-0.66067797,-0.18647641,0.47772238,0.027687443,0.086121716,0.075792745,-0.49030697,0.24577919,-0.22661592,-0.10627646,-0.039544668,-0.72044724,-0.20926104,-0.22417076,-0.5109977,0.25380114,-0.39837354,0.08381391,0.19675353,-0.00127159,-0.3448052,0.11088507,0.024174277,1.0703495,-0.08690218,-0.04147238,-0.25948098,0.26974726,0.3009707,-0.2408384,-0.019827275,-0.36765197,-0.004263424,-0.50616753,0.34825084,-0.04776693,-0.22820187,0.33693966,-0.016197696,0.13155772,0.39533728,-0.2965573,-0.074277155,0.050122913,-0.06175437,-0.3242516,-0.20930305,-0.3741676,0.3357849,-0.13349469,-0.009616852,0.081469044,-0.124128394,0.037060622,0.3733793,0.095993154,0.11156316,0.34130585,-0.10470764,-0.4099209,0.1851427,0.00824376,0.42831233,0.15696438,-0.2544015,-0.5133197,-0.40293965,-0.25745046,0.17878371,-0.22462183,0.20718978,-0.10903588,-0.43212736,0.8859971,0.15491277,1.243986,-0.14378029,-0.42891264,0.15869583,0.49570325,0.14825621,0.06691691,-0.21078466,0.7401351,0.592987,-0.25105196,-0.18443131,-0.4019415,-0.4114885,0.21956825,-0.30692765,-0.16576363,-0.14855647,-0.7034075,-0.26859984,0.16849259,0.040491335,0.2092484,-0.07511728,0.15922168,0.1975949,0.052277107,0.43127787,-0.3356067,-0.099523656,0.15949756,0.50744057,0.00069750275,0.17754427,-0.373456,0.40866348,-0.8502201,0.20693453,-0.40113178,0.11165127,-0.1560104,-0.23894738,0.15843152,-0.010576863,0.2085447,-0.26494887,-0.30971998,-0.2858322,0.815258,0.12778005,0.1689635,0.650499,-0.36994478,-0.02460466,0.21655042,0.37158436,1.16746,-0.232234,0.037357923,0.41854948,-0.24072586,-0.6181306,0.18903828,-0.34560373,0.20649734,0.0114868,-0.31867966,-0.39776373,0.3717378,0.18394913,0.10768439,0.16801156,-0.4790492,-0.03640129,0.34136707,-0.2677255,-0.23422615,-0.35568288,0.23701897,0.5200685,-0.4148739,-0.527082,0.044677235,0.322303,-0.13324247,-0.6500088,0.0023238086,-0.4119689,0.3263485,0.17175205,-0.39012784,-0.09687675,0.101896636,-0.3629475,0.022041788,0.20596997,-0.20628284,0.15419921,-0.28746462,-0.09769047,1.0083414,0.15643848,0.165684,-0.6801316,-0.6117205,-1.0411475,-0.34978515,0.3187752,0.2430253,-0.15129766,-0.54577124,0.028402401,-0.25459936,-0.1897675,-0.027268197,-0.39736694,0.48555344,0.11506212,0.4316389,-0.06457151,-0.87189376,0.065699644,0.14894351,-0.13135494,-0.41454074,0.5199032,-0.18375537,0.8567197,0.1191349,-0.011108231,0.07459,-0.63192934,0.36800227,-0.35107872,-0.1992115,-0.5243596,-0.0032647343,95 +602,0.72027135,-0.5156482,-0.5555413,-0.10228822,-0.34764153,0.027452115,-0.077757366,0.5677693,0.1526527,-0.52034396,-0.043348476,-0.16345249,0.09534691,0.29221106,-0.09031188,-0.6844634,-0.035878576,0.29314637,-0.6594188,0.79546297,-0.34103665,0.39968476,0.24412444,0.20369506,0.18246458,0.17594269,0.16688432,-0.07389743,-0.06598212,-0.07396949,-0.24472152,0.16016711,-0.664023,0.2555517,-0.031435788,-0.4201241,0.09980367,-0.37592137,-0.2753846,-0.8901554,0.1345953,-0.87895006,0.45099849,0.22784501,-0.48444292,0.021208845,-0.07767318,0.30180964,-0.2405254,0.2585136,0.19848792,-0.084095426,0.03292058,-0.4926227,-0.08213161,-0.77164847,-0.5120599,-0.057874795,-0.51204544,-0.28563496,-0.17753641,0.091563694,-0.28837922,-0.11628935,-0.2592881,0.38368225,-0.41015932,-0.14976849,0.2902466,-0.2674312,0.27358764,-0.6265241,-0.11306659,-0.23276605,-0.09411616,-0.022291789,-0.27288538,0.36396858,0.15138854,0.64992404,0.107282385,-0.36947265,-0.16096362,0.025261866,0.060162924,0.43258557,-0.195963,-0.48734367,-0.2988886,0.050697003,0.24937187,0.07024937,0.25085035,-0.5028949,-0.011744736,-0.01673731,-0.2862354,0.3424751,0.5416127,-0.38724214,-0.26315612,0.21254751,0.6106187,-0.034401536,-0.072400905,0.041439854,0.008328984,-0.38888618,-0.2176061,0.3457716,-0.25401485,0.4996556,-0.20639078,0.11642702,0.6392142,-0.21944372,-0.058273647,0.14839146,0.18210067,-0.13678785,-0.30868912,-0.38442034,0.48726532,-0.6463268,-0.22292669,-0.4620313,1.0209141,0.20494689,-0.6134223,0.28489584,-0.5906901,0.15279917,-0.11591743,0.64164793,0.7370005,0.46237624,0.10975991,0.794974,-0.5189506,0.057655238,-0.15256375,-0.27013147,0.22349367,-0.4038056,0.046305604,-0.53373265,0.010347715,-0.18532775,-0.09768604,-0.08894027,0.75737804,-0.6813663,-0.22151782,0.1044084,0.681964,-0.40150067,0.02246858,0.67671233,1.005649,1.0146756,0.10850243,1.4301215,0.4486633,-0.26597655,0.29740673,-0.27444723,-0.80664474,0.22500212,0.5301739,0.00564522,0.45460337,0.02389708,0.013256825,0.38121092,-0.35445786,0.22325052,-0.360909,0.2932091,-0.20639347,-0.27895465,-0.6127764,-0.35723078,-0.11815907,0.13954449,-0.10492647,0.38663042,-0.27183163,0.34536663,0.071856834,1.5649737,-0.13501391,0.07895028,0.046878092,0.40023103,0.37719852,-0.16411819,0.07153724,0.4240401,0.38050053,0.17564607,-0.58128077,0.113455094,-0.36705878,-0.5057561,-0.28151083,-0.284831,0.14127839,-0.1025314,-0.51588887,-0.2905327,-0.04089541,-0.22862718,0.35814014,-1.9841676,-0.15869078,-0.16303554,0.3767126,-0.3425874,-0.34562972,-0.06539783,-0.51630485,0.283967,0.39291593,0.53010684,-0.7272066,0.28837162,0.4616598,-0.4377947,0.12699558,-0.68173474,0.00087094307,-0.253334,0.49240506,-0.0018513593,-0.27538496,-0.11748523,0.012743727,0.5911163,-0.09913191,0.09586123,0.424819,0.38943094,-0.16136405,0.4722045,0.16949655,0.38018054,-0.46074083,-0.30836862,0.49333194,-0.25392282,0.25397503,0.27227288,0.028910398,0.44342968,-0.62091887,-0.83563906,-0.5527939,-0.2305987,1.0480015,-0.31624207,-0.5371195,0.21762358,-0.19410166,-0.2692127,-0.16994146,0.3743953,-0.057761285,0.054966286,-0.767226,0.080998406,0.011749864,0.2543649,0.038355313,-0.046050474,-0.34588858,1.018065,0.017516986,0.5934672,0.1371464,0.14315842,-0.34745926,-0.518173,-0.037041888,1.3066934,0.4435938,0.20197336,-0.1933194,-0.23428766,-0.3992661,-0.028205963,0.17917068,0.5062891,1.0690348,-0.145361,-0.030951826,0.46444735,-0.13463107,0.022131413,-0.15133789,-0.37625188,-0.09563969,0.22151667,0.58335644,0.61276335,-0.060377844,0.40689704,-0.15922114,0.4657907,-0.12122222,-0.7385908,0.46951282,1.1759576,-0.12930416,-0.28662854,0.6737229,0.6148096,-0.49875456,0.6013082,-0.6680335,-0.5130074,0.35900962,-0.20879793,-0.39896187,0.40209836,-0.44071066,0.3870997,-0.97674465,0.5706758,-0.29880956,-0.3512629,-0.5414016,-0.25359124,-2.9133224,0.48186266,-0.19949096,-0.03263323,-0.050228912,-0.03205851,0.21197003,-0.63940233,-0.3730473,0.06258904,0.15038556,0.67738116,-0.02635485,0.06818487,-0.2863472,-0.4189148,-0.12428866,0.2345055,0.0007252051,0.16621813,-0.12412036,-0.47412056,-0.0840815,-0.16282529,-0.37405375,0.09388466,-0.8413278,-0.69522136,-0.30736732,-0.7922984,-0.32814166,0.7298645,-0.065069795,0.061408937,-0.14218283,-0.058194824,-0.034855705,0.32880422,0.052356925,0.17747651,0.03792184,-0.064625114,-0.18494055,-0.4913674,-0.0029100913,0.078453965,0.48326933,0.3238503,-0.36866358,0.21193537,0.7578946,0.6072288,-0.27679002,0.7882617,0.58773685,-0.17425348,0.41083512,-0.052671306,-0.28806388,-0.78657633,-0.29771557,-0.23154643,-0.5103989,-0.48580056,0.11988862,-0.33511826,-0.76840985,0.67294383,0.011631294,0.15162909,0.09708993,0.560138,0.4517366,-0.096444964,-0.14472303,-0.20223363,-0.35471377,-0.4502241,-0.25222602,-0.66379607,-0.41534027,0.34645218,1.1837071,-0.19566983,-0.0021807963,0.11505358,-0.016152106,0.107209876,0.068758756,0.055980977,0.22578049,0.40969527,-0.06315727,-0.5138601,0.5911576,0.0935767,-0.037712496,-0.23493539,0.20248765,0.6333724,-0.8497552,0.48404488,0.21550487,0.16123952,-0.032065667,-0.38943768,-0.103812605,0.18094055,-0.21692751,0.61616635,0.17092082,-0.724817,0.4218713,0.4216911,-0.32096562,-0.7643244,0.32347757,-0.19870806,-0.34764054,-0.324104,0.3773968,-0.040064447,0.12354919,-0.27586332,0.28701442,-0.62189853,0.14928345,0.41588593,-0.13028155,0.21065308,-0.20181176,-0.24880385,-0.7866395,0.4031568,-0.58889425,-0.40014124,0.3161855,0.011407744,-0.16257426,0.4058032,0.19708039,0.480077,-0.2199871,0.11853575,-0.017637419,-0.3373441,0.6585652,0.47557405,0.47764647,-0.48630458,0.49847597,0.07136725,-0.16317925,-0.45779002,0.095415026,0.46598747,0.2459147,0.38621685,-0.028375758,-0.11381699,0.48960415,0.9165218,0.17384961,0.56874394,0.20196079,-0.045777377,0.07228482,0.1613721,0.17507221,-0.015235195,-0.46094054,0.08356346,0.099561326,0.17319363,0.44590214,0.15986875,0.24872439,-0.19281743,-0.1829543,0.09237872,0.35216877,-0.044601362,-1.3908337,0.1841325,0.34071964,0.5822766,0.5154661,0.011667454,-0.10143794,0.5364147,-0.3232889,0.11229336,0.15462694,-0.2784516,-0.54788864,0.60737705,-0.6157304,0.30468518,-0.2094721,0.024223305,0.031278953,-0.06707193,0.5040072,0.9219285,-0.14391962,-0.008630935,-0.21544698,-0.2933383,0.24343918,-0.48334777,0.112966314,-0.53173214,-0.3978628,0.72046226,0.21794517,0.3542384,-0.1776858,-0.058116212,0.05637168,-0.25579044,0.40469885,-0.053954337,0.017440796,0.078445554,-0.6457856,-0.16848207,0.5427552,0.1290368,0.07330693,-0.029585348,-0.25763148,0.26757246,-0.20671386,0.029204251,-0.06720316,-0.82188284,0.055197183,-0.44971165,-0.38848525,0.54212075,-0.00933958,0.045166202,0.2821238,0.04940045,-0.43288487,0.23048621,0.21373719,0.7519877,-0.027439209,-0.31025183,-0.3412261,0.31238863,-0.02948186,-0.2901121,0.12773712,-0.23067744,0.24902162,-0.8888264,0.57085615,0.006579344,-0.502723,0.13730906,-0.15998395,-0.03464608,0.48695835,-0.21895386,-0.3140504,-0.17633039,0.0063581835,-0.11074511,-0.38327283,-0.08429694,0.33174375,0.08704858,-0.15190771,-0.09550008,-0.18420964,0.16326095,0.43274304,0.10036186,0.30486354,0.27824882,0.18570654,-0.42215484,0.24040574,0.30290776,0.38788503,-0.05444433,0.13678154,-0.22403899,-0.2886832,-0.45739776,-0.09743421,-0.24457113,0.38747075,0.23955576,-0.4130774,0.9137852,0.1220332,1.4594636,0.021369813,-0.39280093,-0.00084556756,0.662861,-0.015528409,-0.13717972,-0.33024603,1.069373,0.7323543,-0.16308092,-0.16291848,-0.5424329,-0.31219995,0.27791646,-0.2912304,-0.055959024,0.008786766,-0.80489856,-0.37180218,0.15799277,0.36275858,0.070515916,-0.032228094,0.17757264,0.27748802,-0.010745744,0.043472424,-0.53844196,0.031037632,0.1103154,0.14890414,-0.0031309037,0.16588773,-0.5838681,0.3088908,-0.8145981,0.33813015,-0.15299156,0.07082795,0.02691406,-0.3919358,0.16401598,0.078934185,0.29554516,-0.5568367,-0.4772655,-0.06159761,0.68689466,0.14817794,0.21484128,0.78658867,-0.37002024,0.16761266,0.11727472,0.42764813,1.2968905,-0.14036734,-0.18525317,0.20633017,-0.43286368,-1.0072829,0.40267828,-0.16770321,0.10147338,-0.03274935,-0.49921086,-0.6213197,0.27635235,0.3250249,-0.062027555,0.16735996,-0.6148546,-0.061467264,0.3649349,-0.41372225,-0.29984263,-0.27171853,0.32073742,0.60031354,-0.28593558,-0.4436982,0.22892404,0.22997127,-0.339963,-0.5394751,-0.2589417,-0.5448458,0.37011874,0.09720591,-0.34002215,0.15495092,0.12631035,-0.48743042,0.12408164,0.3856956,-0.3678473,0.1433251,-0.34676346,-0.07971363,0.988368,-0.048953313,-0.063889176,-0.5628736,-0.53570575,-1.0220385,-0.53792036,0.6114873,0.058367297,0.12483125,-0.67902946,-0.03382337,-0.14869884,-0.04457841,-0.028979944,-0.47366375,0.5209417,0.14309141,0.40464765,-0.12867375,-1.0023633,0.29364374,0.2664461,-0.113402575,-0.67063457,0.4957668,-0.23627582,0.824139,0.0928868,0.100741185,0.460943,-0.87204564,0.015373139,-0.28873044,-0.062018983,-0.6534332,-0.108205386,97 +603,0.47176406,-0.11320428,-0.43501857,-0.021328848,-0.29656345,0.13531831,-0.2781045,0.30811375,0.14491436,-0.655733,-0.09463616,-0.12974659,-0.1918664,0.12161262,-0.18042786,-0.44915888,-0.12211098,0.13700074,-0.4201206,0.68465143,-0.2739665,0.39750516,0.0075282,0.3659766,0.006718049,0.19881344,0.23968914,0.09591552,-0.18264161,-0.41722125,0.017853705,-0.02386708,-0.7580111,0.5794519,-0.2101109,-0.29780263,-0.023303648,-0.41919333,-0.20256199,-0.84887147,0.34889096,-0.67212033,0.3918181,0.026924428,-0.24294177,0.33656314,0.30549607,0.12025877,0.036426876,-0.15653618,0.24406797,-0.3338856,-0.21036005,-0.2541186,-0.17330602,-0.31397444,-0.6138052,0.0725828,-0.35494632,-0.27112043,-0.31600273,0.31784025,-0.32699,-0.11659611,-0.041933697,0.6209923,-0.2718137,0.021927783,-0.0033590633,-0.26117912,-0.08190442,-0.7729526,-0.21955976,-0.098426275,0.22505389,-0.07119609,-0.06797628,0.5306749,-0.007937514,0.3793693,0.1256487,-0.27344525,-0.42421132,-0.15786551,0.16439912,0.5419444,-0.24143465,-0.30092546,-0.10356296,-0.17170483,0.2254565,0.1171925,0.2091034,-0.20980373,-0.04967069,-0.26773414,-0.16600968,0.50113875,0.6753198,-0.25954884,-0.21418387,0.42905983,0.54128325,-0.0022058922,-0.21796261,-0.096579835,-0.1857821,-0.41611913,-0.17652856,0.13763441,-0.10342209,0.2256259,-0.12584206,0.2577574,0.52072173,-0.20248757,0.00086295605,0.39779,0.16833149,0.27724814,-0.29301965,-0.24059097,0.4525928,-0.5140736,0.09097575,-0.3923342,0.84292614,0.051635973,-0.88860154,0.37372258,-0.4515727,0.08445509,0.114335075,0.60787386,0.70822775,0.6623673,0.25688693,0.82538855,-0.35880592,0.08532357,-0.14952281,0.004779742,-0.16836213,-0.30914244,0.09354302,-0.41797,0.16423032,-0.10375039,0.034192327,0.012363127,0.40699944,-0.46936315,-0.25527132,0.36303484,0.79570585,-0.1457585,-0.09553991,0.87141025,1.0681552,1.1210551,0.015997281,0.9190137,-0.036187436,-0.16766538,-0.1253524,-0.13711576,-0.67635727,0.26602414,0.34242132,0.84105164,0.062333904,0.11842616,-0.06753114,0.39356902,-0.45804045,-0.23989503,-0.11802287,0.28753263,0.21302685,-0.08347604,-0.25350803,-0.18914095,0.16082104,0.015700312,-0.046266817,0.35260212,-0.3165365,0.4090199,0.11372411,1.1999965,-0.15036021,0.16656075,0.26082107,0.62721455,0.078633584,-0.293766,0.35254845,0.25375634,-0.005859393,0.005472536,-0.49563095,0.0756382,-0.2868562,-0.73066896,-0.10894379,-0.40191144,-0.46483523,0.07605039,-0.31981796,-0.46592772,-0.117522,-0.35586432,0.4296214,-2.805099,0.061451554,-0.00668365,0.35232273,-0.39673942,-0.38163865,-0.0036896765,-0.5619328,0.5600957,0.28925353,0.36068332,-0.596191,0.21921737,0.54612833,-0.7024765,-0.15274021,-0.6221066,-0.09184094,-0.11565792,0.4629563,0.03464137,-0.19587329,-0.008338754,-0.040563222,0.47342724,0.22166087,0.10897812,0.32307658,0.33504778,-0.14169393,0.32395247,0.010715503,0.46348733,-0.50847423,-0.19518813,0.4378114,-0.7658675,0.33164227,-0.3316197,0.086113065,0.43393752,-0.32550687,-0.6909364,-0.6515033,-0.18846461,1.2796465,0.017084846,-0.7014914,0.16405694,-0.18346559,-0.079804964,-0.23475868,0.36215913,0.040434305,-0.020308865,-0.5918201,-0.04194166,-0.21269648,0.3261645,-0.07628448,-0.069952235,-0.55265003,0.88026136,-0.046122395,0.46540636,0.23550902,0.25108516,-0.5849162,-0.2710036,0.0477352,0.890701,0.583791,0.2201117,-0.10343392,-0.19216344,-0.22096524,-0.45228216,0.13831484,0.64192325,0.4034322,-0.022539707,0.07524823,0.3392245,-0.08718782,0.2321141,-0.12339174,-0.2918413,-0.42799237,0.1539658,0.72564894,0.59907633,-0.057003733,0.2828272,0.030023469,0.036334056,-0.2531711,-0.38117987,0.4132697,0.67842555,-0.14933543,-0.30155343,0.5043775,0.48964113,-0.30383825,0.40545428,-0.5611304,-0.6218649,0.3594063,-0.11679117,-0.6570654,-0.12914841,-0.26764604,0.008751771,-0.5326927,0.4227967,-0.48950037,-0.7536091,-0.68917155,-0.17674415,-2.1203382,0.11617057,-0.24544698,-0.07213795,-0.14468262,-0.12989005,-0.11360265,-0.40119398,-0.4549416,0.12278704,0.07795342,0.6105987,-0.11204529,0.16572493,-0.30520368,-0.35093382,-0.3544514,0.34358028,-0.030120768,0.30989143,-0.123552546,-0.12188517,-0.029622188,-0.0962489,-0.2291765,-0.06366381,-0.3913717,-0.4258596,-0.11874623,-0.37710524,-0.21298552,0.661117,-0.40290073,0.08055487,-0.18811049,-0.107294194,-0.037948947,0.1288817,0.21681926,0.23447646,0.23661374,-0.33629873,0.026838282,-0.34650528,0.29880685,0.080327235,0.3709182,0.69388866,-0.37484583,0.14581947,0.34915978,0.75571793,-0.082267515,0.9757586,0.07119492,-0.085836664,0.48481464,-0.23589428,-0.3330546,-0.66721344,-0.042105496,0.33958963,-0.2896061,-0.3683593,0.14891961,-0.30093917,-0.7956204,0.46737954,0.20799719,0.26377922,-0.19796786,0.39124915,0.34818083,-0.23232475,-0.17043923,-0.11666815,-0.011303227,-0.4490013,-0.42093283,-0.64993066,-0.4949668,0.04834717,0.97963643,-0.1945974,-0.07885253,0.35215205,-0.033345584,0.070904575,0.17477211,0.010969139,-0.109584816,0.2567684,0.20728865,-0.6687386,0.5479454,0.046024673,0.12469421,-0.37590933,0.52863574,0.6016451,-0.38787106,0.4443735,0.3983717,0.013076287,-0.30873153,-0.6478259,-0.08269744,-0.06975012,-0.197446,0.25564477,0.30022126,-0.877578,0.37562725,0.286132,-0.2752995,-0.7964557,0.3295511,0.012795751,-0.1984919,-0.024860987,0.35768604,0.3071373,-0.13607535,-0.026862292,0.29890582,-0.46638963,0.3189952,-0.012309059,0.026991414,0.3975665,-0.2900439,-0.4921253,-0.5565825,0.13852467,-0.5729304,-0.33927947,0.26813573,0.056846544,-0.0337852,0.4973081,0.1369377,0.4755649,-0.07073292,0.052869912,-0.2530169,-0.28565046,0.34103945,0.4061702,0.6748361,-0.54583293,0.65542567,0.09165074,-0.12090263,-0.035415128,0.0775289,0.48049086,0.10555621,0.3713191,-0.061875053,-0.02819828,-0.040833592,0.7719362,0.34800813,0.40588218,-0.059520032,-0.2682264,0.49275857,0.0069116657,0.28470737,-0.14338188,-0.7630956,0.095767766,-0.25112617,0.030815197,0.35807836,-0.03389597,0.3931692,0.027444674,-0.12928592,-0.011109004,0.041660845,-0.29059884,-1.1311276,0.34594345,0.1339782,0.9933593,0.45891938,-0.052710734,0.08222227,0.9142705,-0.082355514,0.081652366,0.29965886,-0.104587,-0.4209921,0.53085816,-0.6575658,0.53593385,-0.081164345,-0.054569438,0.021966778,-0.01212032,0.4614058,0.56738794,-0.18105254,-0.050044414,-0.11722075,-0.360212,0.083975084,-0.465402,0.27527225,-0.3837768,-0.2151912,0.6664848,0.37628147,0.34836695,-0.07191879,0.12375109,0.055591922,-0.18035871,0.1939744,-0.111422464,0.033152618,-0.07330612,-0.28237727,-0.025305023,0.6236284,-0.18922502,0.18033849,0.2082226,-0.11549577,0.24893445,0.13093767,-0.056197736,0.01993798,-0.6333013,0.34068713,-0.05706406,-0.39263284,0.40438488,-0.037181355,0.1728827,0.3383178,0.12672278,-0.12010439,0.2650707,0.34989876,0.5028127,-0.0026897788,-0.14297502,-0.2953387,0.04234413,-0.08198813,-0.22475924,0.1379592,0.13096061,0.06968394,-0.57453877,0.40207955,-0.20318252,-0.21454324,0.21122496,-0.1030963,-0.047761288,0.6148389,0.17027225,-0.05149736,0.1685434,-0.11592613,-0.11459896,-0.07705799,-0.15428543,0.35605913,0.035700936,-0.17105225,-0.1815674,-0.3286894,-0.091515526,0.20192507,-0.080573365,0.06332044,0.19797446,-0.041753933,-0.54535174,0.2725482,0.15568916,0.481119,-0.065198086,0.22010383,0.05771599,-0.29120344,-0.46862447,0.5119433,-0.114895515,0.18232553,0.23769058,-0.25037897,0.7503758,-0.12751128,0.92816705,-0.085055,-0.33316037,0.031606622,0.47981966,-0.0014151427,0.06682016,-0.29309762,1.0245537,0.58293384,-0.012909337,-8.16171e-05,-0.42522827,0.0513831,0.2704538,-0.2366266,-0.11802209,0.06673678,-0.65726596,-0.15896282,0.16744958,0.25059432,0.08389629,-0.30497143,-0.22401898,0.4209297,0.22541413,0.23594867,-0.5660683,-0.24747951,0.30059037,0.22106932,-0.06271529,0.031742297,-0.434794,0.30216378,-0.8617693,0.30340984,-0.14381576,0.12897928,-0.43315458,-0.19553791,0.28262064,0.20518747,0.39690492,-0.19600326,-0.47511786,-0.17067124,0.16628379,0.16244775,0.27747637,0.43781662,-0.19219798,0.025851835,0.009756827,0.33527195,0.8757899,-0.042196933,-0.19110045,0.13378678,-0.45271906,-0.7756843,0.35924208,-0.3675744,-0.008064847,-0.021135986,-0.1457374,-0.40715435,0.12136671,0.2785164,-0.01367944,0.09832095,-0.8282472,-0.32344973,-0.036993537,-0.4374612,-0.26512578,-0.29463893,-0.06321692,0.67438626,-0.12146185,-0.11657298,-0.036177203,0.36189857,-0.30171454,-0.7557854,0.08858616,-0.449001,0.26281357,-0.02348822,-0.4606017,-0.3453011,0.2522278,-0.46162418,0.13718882,0.17296003,-0.3462848,-0.12300939,-0.3772516,0.28224185,0.72941315,0.07336192,0.36884695,-0.44072133,-0.47278374,-0.8102292,-0.3081919,0.076130085,0.20599864,0.0035237793,-0.7148336,-0.33216685,-0.40967,-0.22413698,-0.036686126,-0.4469614,0.29659858,0.22884178,0.18940772,-0.25047976,-0.7053029,0.23412742,0.13992836,0.029930519,-0.2954198,0.2674378,-0.05970543,0.96655744,0.061376836,-0.09365761,-0.03183952,-0.6944918,0.2970376,-0.1683205,-0.22080027,-0.41779253,0.1459978,100 +604,0.4147903,-0.20174852,-0.31666523,-0.13114682,-0.2682855,0.071402945,-0.06526458,0.22259258,0.2743007,-0.13693756,-0.3266139,-0.20903982,0.096481115,0.54637456,0.008750828,-0.77752614,-0.025870945,0.1355527,-0.9261557,0.51267993,-0.5948998,0.23151681,0.20981728,0.3415604,0.12654123,0.43763357,0.3277693,-0.15874265,-0.33656725,0.05862591,-0.3304882,-0.025923623,-0.48829746,0.07620298,0.0148569485,-0.20639004,-0.013914012,-0.5247358,-0.3047393,-0.6009146,0.043463692,-0.8100034,0.34499985,-0.115245655,-0.03488446,-0.08065723,0.16591938,0.39692885,-0.5601126,-0.015972756,0.098648414,-0.23192035,-0.14156328,-0.30954885,-0.07618337,-0.33431375,-0.5480406,0.012836631,-0.48385188,-0.36150184,-0.058747035,0.083708525,-0.34405982,-0.0024838448,-0.01594179,0.38630235,-0.36104122,-0.032320675,0.5565182,-0.33693048,-0.078503445,-0.37304848,-0.005474751,-0.084731415,0.39200896,0.15719411,-0.18880168,0.45603922,0.42246097,0.34148458,0.27849433,-0.35624918,-0.26972514,-0.11869876,0.3390567,0.4618192,-0.030728996,-0.40092212,-0.2591582,0.0936387,0.10895295,0.2524429,0.21592638,-0.15642653,-0.10217497,-0.07221189,-0.19944516,0.2755103,0.43734148,-0.40519994,-0.41344687,0.2902531,0.73158956,0.23434497,-0.123524114,-0.08374707,0.06233845,-0.50600094,-0.1373241,0.18727463,-0.16629538,0.54243714,-0.13319719,0.085427865,0.8532981,-0.23654303,0.10508727,-0.059954524,-0.1508325,-0.26265544,-0.20195307,-0.069052435,0.1456011,-0.34053564,-0.109426536,-0.3034628,0.70454574,0.44414043,-0.54447085,0.5126474,-0.5778617,0.2500859,-0.10736383,0.6002347,0.7050636,0.3273718,0.42375645,0.7550129,-0.24720624,0.26935086,-0.048237782,-0.45164993,0.19295366,-0.3678363,0.20556848,-0.54262,0.14732812,-0.07784857,-0.0319974,0.08524234,0.3835268,-0.5898787,0.0011290198,0.10934225,0.8283247,-0.32903132,-0.23174976,0.59616697,0.9917718,0.9695989,-0.023706717,1.2926393,0.5001267,-0.30168232,0.22837059,-0.6144011,-0.74066734,0.23640543,0.29106396,-0.23457216,0.48571932,-0.049611125,-0.16060382,0.23238567,-0.24042386,0.23579262,-0.0047977795,0.22974531,0.22024606,-0.0042461297,-0.31912333,-0.26370558,-0.18664072,-0.21729916,0.19892447,0.19843411,-0.33940476,0.46096775,-0.17280377,1.7556903,0.02278669,0.04915589,-0.10946744,0.54408354,0.32549092,-0.102804735,-0.20051916,0.5115655,0.3329087,-0.09210772,-0.5658279,0.3381971,-0.3982162,-0.3777048,-0.06484306,-0.46101555,0.030024378,0.015260761,-0.15062368,-0.10579931,0.14327233,-0.38888678,0.4273331,-2.57803,-0.2825282,-0.102688275,0.28016806,-0.3538887,-0.12325725,-0.25646952,-0.48581886,-0.02351694,0.24777699,0.53252584,-0.6695423,0.42038372,0.4401417,-0.5717043,-0.34840006,-0.63111985,0.07942928,-0.04576439,0.3445753,-0.026601342,-0.07427956,0.0132209705,0.22496335,0.6397159,0.047130898,-0.016335638,0.55471134,0.38423464,0.2872036,0.50521404,0.04676614,0.7299256,-0.30453917,-0.14431068,0.36376557,-0.2713953,0.37836567,0.028399069,0.085832864,0.5638233,-0.31940773,-0.9736011,-0.55488515,-0.35745904,1.0305716,-0.5249206,-0.3486408,0.12957157,-0.04355295,0.029960196,0.0501922,0.52861476,0.046186246,-0.0040140334,-0.57065904,0.071280055,0.11937901,0.13417162,0.070271604,0.021443076,-0.21340315,0.67292094,-0.059206188,0.5398943,-0.009316756,0.2104513,-0.12344964,-0.36668873,0.2926587,0.84016925,0.20010494,-0.07306374,-0.08608851,-0.31563315,-0.14073618,-0.22786808,-0.029083421,0.39186096,0.7086679,-0.09575149,0.09986115,0.45597708,-0.07551171,-0.047667626,-0.11320453,-0.21208006,0.05591884,-0.073913135,0.41748622,0.7886231,-0.13467728,0.6450662,-0.20895061,0.40751165,-0.009079814,-0.6042408,0.7429028,0.34781882,-0.23961505,0.03685942,0.28118685,0.25920308,-0.56595284,0.49833685,-0.58096594,-0.24755643,0.78076386,-0.09996377,-0.32302105,0.3027821,-0.17501543,0.20305167,-0.7432086,0.3976819,-0.09712665,-0.2616018,-0.42230347,-0.018946739,-3.519497,0.15873386,-0.16786215,-0.17301467,-0.12406978,0.1621804,0.122259066,-0.7413175,-0.48924083,0.021409879,0.184595,0.6353118,-0.10217282,0.22200133,-0.2674784,-0.15490367,-0.2781561,0.20738298,-0.05952946,0.4007398,-0.1704433,-0.35575947,0.13745041,-0.18365577,-0.5184336,0.22358364,-0.6675842,-0.4023571,-0.132076,-0.65252304,-0.24454203,0.7075163,-0.39588407,-0.013315398,-0.22771826,0.16286811,-0.28214997,0.29895833,0.15073647,0.087469585,0.17083035,-0.118160285,-0.025601897,-0.26371118,0.40540493,-0.0055887746,0.5645834,0.3062151,0.12640694,0.17165324,0.48944137,0.5979852,-0.103349246,0.7213694,0.30517802,-0.19677451,0.26337487,-0.42633802,-0.020835284,-0.44059113,-0.42709368,-0.04115158,-0.39974374,-0.6312837,-0.12795758,-0.23969008,-0.909794,0.46182156,0.03153298,0.33790967,-0.05757083,0.14150016,0.55383915,-0.23635578,0.14265516,-0.14595823,-0.13672787,-0.58728576,-0.24271342,-0.62218314,-0.4775194,0.47308716,0.89837134,-0.4639131,-0.029510943,-0.23755553,-0.55547476,0.025158582,-0.04267128,0.04228421,0.33038527,0.33299807,-0.12469497,-0.61250174,0.36854303,-0.15167513,-0.07076104,-0.5097674,0.08484598,0.7126502,-0.8797174,0.6787115,0.21035904,0.04829846,0.119528204,-0.32689217,-0.24185298,-0.07223804,-0.10107277,0.13420497,-0.06280227,-0.65140533,0.3136549,0.22953804,-0.5755761,-0.74100053,0.14936502,-0.06647326,-0.06764914,0.060288385,0.22150132,0.11934371,-0.04718888,-0.39238805,0.07371615,-0.5551978,0.13712825,0.22925368,0.05810207,0.3612405,0.03800615,-0.47267798,-0.6609388,0.07225794,-0.3192449,-0.36036885,0.38926452,0.24001907,0.14837445,0.05490571,0.31457716,0.29251096,-0.3726028,0.07294104,0.22339068,-0.31135267,0.33455327,0.36049315,0.34153265,-0.52386165,0.4808677,0.10988018,-0.071504325,0.25844646,-0.11036027,0.2642132,0.256552,0.26794136,0.14583713,-0.20282015,0.3233128,0.73377883,0.01843111,0.4322816,0.19782434,-0.21721514,0.47330236,-0.0143577345,0.09319567,0.0067555215,-0.46436217,0.13564652,0.10835171,0.2996783,0.45928782,0.42575872,0.2973058,0.2404626,-0.34249756,0.027554158,0.23372094,-0.18410188,-1.1487607,0.2847982,0.27096546,0.84085906,0.42869812,-0.0068643917,-0.13298808,0.7253136,-0.18778151,0.1933669,0.30297783,-0.1644013,-0.6279125,0.6887757,-0.6162865,0.5153452,-0.11425627,-0.084325075,0.024035918,0.034799594,0.27576745,0.7758922,-0.24075651,-0.07053471,-0.06085738,-0.10982086,-0.041741014,-0.48114046,0.201943,-0.5293152,-0.49416712,0.70965356,0.29446557,0.35708374,-0.18357517,-0.042568143,0.011525168,-0.17719962,0.30120033,-0.0066011595,0.08247944,0.17393924,-0.8021206,-0.3251037,0.55360734,-0.38182253,0.1464566,-0.10123973,-0.22228667,-0.034460656,-0.29828948,-0.13399647,-0.08008044,-0.6665086,0.07507093,-0.13791165,-0.6023147,0.36183542,-0.117891,0.22219236,0.22192486,-0.0863169,-0.21541665,0.39578742,0.13793491,0.88141,0.049931627,-0.3198876,-0.3401859,0.18758307,0.18994983,-0.33626366,0.2775638,-0.40382352,0.077280134,-0.4096092,0.7970593,-0.06751574,-0.5697855,0.033708736,-0.19046427,-0.10104854,0.58190495,-0.18063197,-0.16706635,-0.2169447,-0.31605074,-0.41620857,0.21568486,-0.27826917,0.20317474,0.19635926,-0.2356771,-0.06571259,-0.17965129,0.09010521,0.5183927,0.031851437,0.32395682,0.24309818,0.01816369,-0.21771625,0.017411329,0.27165234,0.48574087,0.35115367,-0.14044707,-0.51923573,-0.20877956,-0.3741891,0.23435208,-0.18250163,0.29494503,0.121399164,-0.48945922,0.6540794,-0.07327677,1.3968648,0.02998043,-0.3027039,0.10630185,0.53823334,0.09382537,0.08403753,-0.53518766,0.8782097,0.50330615,-0.079474464,-0.1081086,-0.5641366,-0.33851987,0.5231718,-0.37683788,-0.21248953,0.11865572,-0.5517931,-0.4590279,0.206642,0.0008790883,0.25260293,-0.027038634,0.11855009,0.10372612,0.17406029,0.2558301,-0.47499233,-0.28332287,0.25349694,0.18759452,-0.013837984,0.17158757,-0.36887693,0.45731485,-0.6826213,0.20883933,-0.33232814,0.038199045,-0.15607229,-0.38151175,0.22372726,0.36488804,0.46636212,-0.29458997,-0.4419611,-0.15588734,0.67954993,0.11307477,0.2466713,0.740809,-0.21265844,-0.109111734,0.14340097,0.5830664,1.244981,-0.26784375,0.13367106,0.3395509,-0.43456638,-0.71170765,0.62414974,-0.32742256,-0.070669524,-0.24424073,-0.44139004,-0.65389216,0.32630503,0.15384361,0.090188496,0.21952152,-0.52097535,-0.23061782,0.2356345,-0.421431,-0.25772575,-0.43477133,0.34740445,0.89729494,-0.26057455,-0.2243557,0.108880006,0.25654605,-0.253247,-0.3802433,-0.2689797,-0.29022634,0.3109927,0.095060825,-0.1941692,-0.09836727,0.06224768,-0.3235173,0.144163,0.05161334,-0.42450207,0.20123678,0.0034119396,-0.119034715,0.89040923,-0.16320112,0.016723542,-0.7136425,-0.5218755,-0.9019963,-0.4826943,0.3250665,-0.045276865,-0.15813468,-0.37556693,-0.009431224,0.05326339,-0.23216122,0.06691104,-0.68106365,0.28212488,0.08638377,0.27715358,-0.15333255,-0.928574,0.15264334,0.113859855,-0.072327025,-0.8240195,0.46228456,-0.25207236,0.87706065,0.034166623,-0.23248085,0.12237393,-0.31946534,0.034122225,-0.49270564,-0.1596763,-0.66191727,0.17589852,112 +605,0.33949643,-0.070206776,-0.43419486,-0.17226797,-0.38827166,0.16608176,0.007657192,0.5349446,0.28267962,-0.089825355,-0.045294955,-0.028411536,0.032520074,0.6831712,-0.08642591,-0.75698435,0.006113043,0.15919831,-0.68912697,0.41548255,-0.47831953,0.3374603,0.107335575,0.46983603,0.23214746,0.2823901,0.030500539,-0.009657593,-0.03227796,0.018278081,-0.27465007,0.11365742,-0.43907928,0.15079899,0.040793106,-0.25857466,-0.2082115,-0.3881032,-0.2590094,-0.64156383,0.3977875,-0.68949974,0.5772339,-0.267777,-0.19913182,0.21932235,0.20934829,0.28674558,-0.4310599,-0.08781571,0.17957146,-0.2572622,-0.042599227,0.011789532,-0.33673203,-0.29661497,-0.61316144,-0.09054613,-0.5201038,-0.084578864,-0.28267667,0.15503062,-0.33375752,0.13203451,-0.124680534,0.38903555,-0.29134905,0.17336375,0.2960471,-0.22103599,0.05416517,-0.34562132,-0.14119473,-0.07326422,0.29937786,0.07393778,-0.37437963,0.35818094,0.46982482,0.38400427,-0.008582569,-0.24098173,-0.14967547,-0.016701387,0.07057948,0.60403913,-0.12102746,-0.42932123,-0.25484622,-0.006504091,0.21676938,0.22065441,-0.08040273,-0.36099008,-0.04298599,0.13212572,-0.29842082,0.47811973,0.33227378,-0.24618982,-0.21198443,0.44765255,0.17322937,0.2785568,-0.19029482,0.18751153,-0.09543639,-0.6209224,-0.12571073,-0.04398783,-0.08568906,0.3892352,-0.13434137,0.28772482,0.7892764,-0.035630748,-0.10013647,-0.105005585,0.05790428,-0.09491321,-0.34345785,-0.11364781,0.078909054,-0.4718311,0.10049731,-0.14778072,0.78682655,0.15067336,-0.7832343,0.42903906,-0.5441156,0.13196024,-0.21693465,0.45470598,0.95459205,0.30491093,0.14915153,0.9220771,-0.5307942,-0.02270941,0.081391096,-0.3877405,0.10982458,-0.14325276,0.1775433,-0.534031,0.046228327,0.22314985,-0.009941184,0.24623726,0.2583763,-0.38992625,-0.1872831,-0.14823997,0.6347135,-0.39518902,-0.21459787,0.88831943,0.9557507,0.9173289,0.057453115,1.434972,0.39874795,-0.15068623,0.17774507,-0.2372643,-0.49843243,0.07376165,0.29168275,-0.3318882,0.31448957,0.050746992,0.012524616,0.43300056,-0.271783,-0.11281763,0.043622784,0.23322143,0.12672077,-0.12533854,-0.33519453,-0.46917465,0.14394198,0.115764305,0.06770284,0.25628588,-0.30912665,0.49069044,0.16446994,1.4470208,0.23861793,0.014393786,0.003615572,0.365952,0.2948999,-0.11193382,-0.31122625,0.2804324,0.5665866,-0.108126126,-0.5943185,0.031223906,-0.2738101,-0.4091592,-0.030019848,-0.43240756,-0.31190097,-0.12962843,-0.41733074,-0.0801043,0.09152702,-0.36023325,0.480824,-2.8250756,-0.30254844,-0.23631406,0.1867734,-0.18138964,-0.37504593,-0.31904167,-0.5311204,0.20046681,0.24541348,0.40123823,-0.52499866,0.34751254,0.23215789,-0.3443175,-0.19876088,-0.6362727,-0.0993318,0.08276292,0.23683307,-0.0924729,0.19028464,-0.13126187,0.3635173,0.6722422,0.13880233,-0.02585732,0.29891533,0.41827208,-0.0029102748,0.5900377,0.017686564,0.6387309,-0.12724197,-0.09031989,0.19050609,-0.28926918,0.4211528,0.038539473,0.21599366,0.57722366,-0.33200657,-0.8959297,-0.49111935,-0.23125996,1.1370734,-0.52903175,-0.16436999,0.43606696,-0.3643346,-0.40026248,-0.02009246,0.5934366,-0.07955877,-0.16893457,-0.61345065,0.026004873,-0.04393273,0.07577738,-0.19267441,0.042438067,-0.1407019,0.6386637,-0.120105654,0.48614585,0.1703648,0.020221949,-0.15517053,-0.40467864,0.00989806,0.7996104,0.34855825,0.05228891,0.0051425304,-0.0139819635,-0.48963863,-0.3314769,0.20296802,0.61221004,0.6617396,0.11046414,0.17120157,0.21428691,-0.11193915,-0.033930637,-0.0028329582,-0.25543392,-0.0052267453,-0.04586981,0.5392769,0.67925733,-0.06806744,0.57912064,-0.20876375,0.1636276,-0.21101505,-0.6488962,0.60095173,0.5515169,-0.22429791,-0.22187798,0.5749951,0.36259925,-0.19402963,0.2925737,-0.48544836,-0.32664505,0.8132468,-0.12562233,-0.40963617,0.1374955,-0.12390236,-0.17948315,-0.7711827,0.12121708,0.13021067,-0.6506891,-0.2737899,-0.070068285,-3.5724127,-0.0014250336,-0.07476934,-0.3279782,-0.24175699,-0.08015807,0.30738544,-0.40931195,-0.5542021,0.19090065,0.08497539,0.6610879,-0.17778659,0.06643747,-0.21098313,-0.20302956,-0.1813347,0.16172644,0.027742626,0.3432996,0.05661925,-0.34656146,0.0011389622,-0.1872672,-0.6548986,0.17141064,-0.5711233,-0.5457128,-0.02165295,-0.33058962,-0.23970622,0.821612,-0.6253564,-0.014752343,-0.20726609,-0.07336597,-0.2660488,0.3611383,0.17056996,0.11836589,0.03200772,0.08819652,0.09676862,-0.29895714,0.2742643,0.115542494,0.3880325,0.2071871,0.0028820634,0.25982758,0.5246078,0.62350655,-0.026435573,0.89447886,0.25006086,-0.064883284,0.22898014,-0.22388877,-0.18332826,-0.53948987,-0.24201767,-0.23610154,-0.4241945,-0.3726106,-0.21597204,-0.27498892,-0.7419837,0.3715644,0.14403015,0.08812532,-0.204355,0.15042543,0.39043176,-0.18783252,0.13291685,-0.041096453,-0.24276628,-0.58779335,-0.31488833,-0.6196763,-0.54004633,0.23418258,1.14014,-0.17694443,0.054035325,-0.1804731,-0.6096172,0.018995745,0.050051663,0.17655912,0.22522399,0.2868872,-0.25351185,-0.82034296,0.4403856,-0.50101197,-0.03108439,-0.7861558,0.0882753,0.7011198,-0.6389336,0.53949565,0.25489542,0.27364504,-0.11499827,-0.43753624,-0.2420015,-0.008972094,-0.09726383,0.46044746,0.20218089,-0.64094794,0.5017885,0.07657252,-0.10170123,-0.52014613,0.39947838,-0.056448836,-0.002256595,-0.011135652,0.3096309,0.12691548,-0.02422681,0.0954417,0.2507986,-0.53612393,0.2769566,0.3583504,0.104730554,0.32344988,-0.031856034,-0.0182033,-0.63317436,-0.17114857,-0.4158352,-0.28330082,0.007976053,0.090535276,0.28435794,0.034704544,-0.15383579,0.19971807,-0.358607,0.16736507,-0.071181685,-0.19290821,0.32846662,0.5937617,0.43074277,-0.37789968,0.6556107,0.1471129,0.057433255,0.23046046,0.037071068,0.46442434,0.3386106,0.34465525,-0.16225919,-0.23486581,0.25848496,0.6503726,0.20803928,0.15461907,0.00750129,-0.11419641,0.08664819,0.09073309,0.16977455,0.20335235,-0.39545867,-0.22726785,-0.098691754,0.17916067,0.60845035,0.10953498,0.11661703,0.025020303,-0.37291402,0.2350812,-0.08518076,-0.011867606,-1.4196175,0.5067028,0.28442794,0.74721706,0.2974711,-0.06700711,-0.10724397,0.6294823,-0.13047042,0.25874522,0.39132294,-0.07103682,-0.41076997,0.59863627,-0.6976405,0.6120644,-0.109426536,0.01165987,0.23741268,0.21903767,0.4585112,1.1391468,-0.079026885,0.061930828,0.15627238,-0.43784767,0.16352312,-0.307431,-0.040695887,-0.6852882,-0.43730974,0.43780538,0.4469368,0.29857546,-0.38871333,0.014971747,-0.046134315,-0.19604169,-0.1585071,-0.054507367,0.0005401373,-0.21225506,-0.6602983,-0.3196979,0.5060013,-0.01878899,0.15768264,0.20740718,-0.19929695,0.3553263,-0.21821985,0.019698363,-0.079348095,-0.68411326,-0.14683706,-0.23703872,-0.57211405,0.19813552,-0.46324697,0.2945115,0.20965339,-0.010343343,-0.23865642,0.33274412,0.26210076,0.9128422,-0.21874176,-0.25908816,-0.3148143,0.103897996,0.21727474,-0.23461914,-0.1897038,-0.38871846,-0.22127604,-0.53481096,0.34740454,-0.17576331,-0.23783694,-0.037553545,-0.040465955,0.16988188,0.29019594,-0.17834465,-0.113909155,-0.22346638,-0.15577425,-0.2364848,0.0105237225,-0.32801515,0.33674362,0.16160257,-0.067684196,0.0028090535,-0.12517527,-0.020778846,0.11193657,-0.01605541,0.3737969,0.3021972,0.020511866,-0.18013622,-0.049077217,0.11475564,0.42582396,0.15748833,-0.18431027,-0.36199063,-0.22761795,-0.21651782,0.3793968,-0.19098918,0.38393408,-0.05251576,-0.45751512,0.6526854,-0.016960727,1.0968013,0.17322867,-0.23687452,0.2358831,0.52085525,0.08305021,0.03629521,-0.13510473,0.6594282,0.41320202,-0.04358691,-0.33816656,-0.4266095,-0.14732271,0.45487294,-0.27681434,-0.2940375,-0.0024130838,-0.65883726,-0.24881831,0.017500121,-0.0216935,0.3267314,-0.07378565,-0.094298236,0.18109521,0.11442049,0.48993966,-0.45871976,0.06905412,0.2483039,0.32439533,0.054946806,0.20611939,-0.39271024,0.4716323,-0.64666915,0.25154367,-0.40661177,0.12463676,-0.21586162,-0.16625144,0.13418576,0.13472249,0.2787905,-0.2806083,-0.23689696,-0.32750925,0.6725258,0.28057915,0.15563719,0.62179697,-0.25070494,-0.1786512,0.24524774,0.44485247,1.1801747,-0.1473884,0.049192216,0.3234938,-0.3776849,-0.48375708,0.16594145,-0.2980823,0.19751689,0.067912936,-0.20411706,-0.31484216,0.2924616,0.04213124,0.18040338,0.15806183,-0.45146158,-0.26901266,0.49786332,-0.1965379,-0.3557515,-0.3414321,0.20735154,0.5096768,-0.42852706,-0.25949675,0.1200927,0.109689385,-0.18146607,-0.58455074,-0.0038241057,-0.48970744,0.40392604,0.023880359,-0.4225318,-0.011268086,0.08940566,-0.45177254,0.30997148,0.09096401,-0.41240567,-0.00012565576,-0.06645921,-0.3204199,1.1125878,-0.13155787,0.059692264,-0.79481167,-0.5172029,-0.7401853,-0.36208886,0.1654173,0.13047291,-0.15931807,-0.49303633,-0.18307385,0.02114842,-0.013523185,0.0042060064,-0.37495553,0.37521333,0.10985184,0.3112199,0.012856801,-1.0722551,-0.036533955,0.038530268,-0.27898565,-0.65478665,0.51174176,-0.13475493,0.6947042,0.03909255,0.13431881,0.20433538,-0.3404237,0.29876354,-0.32877466,-0.13628957,-0.6081561,0.2907158,113 +606,0.5233417,-0.441573,-0.83321404,0.06580274,-0.36641747,-0.036324404,-0.34455922,0.5796117,0.06759138,-0.6484051,-0.2727998,-0.026900979,-0.13571963,0.286967,-0.25574535,-0.62828887,0.04311275,0.26181287,-0.40663338,0.75019526,-0.038328722,0.29014036,0.03118939,0.46025392,0.3463981,0.10017196,0.043699786,0.15674584,-0.2079306,-0.22720495,0.16863145,0.079140335,-0.75040424,0.29326808,-0.39734742,-0.5960087,-0.20911519,-0.5133686,-0.29017928,-1.0612195,0.30362195,-0.74113613,0.5514054,-0.04124755,-0.5506856,-0.04992443,0.09761589,0.39756918,-0.115782656,-0.04541499,0.08474626,-0.2462519,-0.08759589,-0.20314659,-0.19547227,-0.4246481,-0.7504354,0.06443233,-0.40754333,0.11000712,0.10492095,0.38308525,-0.42921972,-0.01526863,-0.20079273,0.6252741,-0.34070727,-0.022422154,0.49693078,-0.11915536,0.120889,-0.6807683,-0.18143858,-0.18134643,0.15414125,-0.012562527,-0.19900022,0.13510026,0.05737601,0.49465507,0.1923247,-0.33792412,-0.28219864,-0.08177066,0.18962502,0.35669863,-0.09051935,-0.3345632,-0.24287264,-0.013076682,0.5746084,0.2520314,0.27820048,-0.20733339,-0.02994464,-0.20347592,-0.06852006,0.3742005,0.48286635,-0.31188837,-0.004381574,0.19342674,0.766043,0.22692548,-0.2414191,0.13364086,0.04346111,-0.5336009,-0.15020336,0.14468351,-0.18373905,0.6054369,-0.16960336,0.28776264,0.47932023,-0.1197526,-0.09002605,0.42370483,0.17555414,-0.17198923,-0.3880275,-0.38737455,0.49786,-0.3750995,0.24274032,-0.41339523,0.7916373,0.2474172,-0.69794667,0.27228144,-0.6491333,0.28003427,0.052133244,0.57325256,0.7762467,0.50853735,0.14903443,0.9035378,-0.33075127,0.19623706,0.051802315,-0.11881955,-0.2179056,-0.27510545,-0.09316892,-0.40443003,0.099426985,-0.30940565,-0.023939114,-0.014064711,0.51314366,-0.7667142,-0.37036914,-0.014463911,0.7852427,-0.11506666,-0.15148726,1.0940896,0.8506881,1.2731599,-0.061058145,1.133446,0.13745263,-0.14101599,-0.13575624,-0.043679126,-0.7793331,0.42440823,0.3624228,-0.58920485,0.5978447,-0.22008078,-0.11647523,0.7079426,-0.44293424,0.059557788,-0.17763707,0.14105591,-0.056683317,-0.21883339,-0.5567359,-0.06591043,0.08943718,0.077518016,0.0485997,0.47180426,-0.1256701,0.55976915,0.0029726715,1.216161,-0.28378022,0.07697248,0.25664836,0.26660478,0.30979115,-0.29630062,0.07028341,0.13504468,0.2685979,-0.03364829,-0.5659683,0.016343651,-0.47338024,-0.50631225,-0.21877989,-0.2271425,-0.406524,-0.26264748,-0.601693,-0.31447828,-0.17433992,-0.16197722,0.28718737,-2.2001178,-0.3277872,-0.2603351,0.32948843,-0.6377837,-0.39802817,-0.056621786,-0.5903916,0.3886736,0.14923012,0.5740107,-0.5470384,0.4150409,0.54545224,-0.62645626,-0.038694613,-0.7171027,-0.10921887,0.06459699,0.27998957,0.0010127241,-0.2477449,0.2741873,-0.056163207,0.52972686,-0.09167504,0.023993047,0.4277634,0.3988655,-0.23290427,0.2305687,0.053589042,0.6362315,-0.7426415,-0.181623,0.60665977,-0.45787317,0.537989,-0.06111376,0.08746411,0.7131958,-0.62261635,-0.5864815,-0.5617498,-0.178387,1.1242753,-0.18178795,-0.5676371,-0.1419843,-0.33597022,-0.10036047,0.03684797,0.4834662,-0.041921653,0.06669634,-0.7935926,-0.1926026,-0.05087856,0.21100444,-0.05999152,0.042485483,-0.40937006,0.7723246,-0.12650432,0.46781164,0.5363803,0.30375835,-0.24159043,-0.6291019,0.03165877,0.95074,0.57685983,0.13481468,-0.44362304,-0.053745117,-0.6009872,0.005759349,-0.0059062014,0.5889407,0.61631465,-0.18451406,0.11387196,0.43616486,0.106263176,0.25921085,-0.17227125,-0.39702305,-0.3628413,0.20098776,0.63885343,0.78386486,-0.16522329,0.40416792,0.0029733228,0.28099844,-0.43464836,-0.5651007,0.62567174,0.77854824,-0.39274755,-0.411068,0.5144736,0.40907544,-0.3452888,0.61542743,-0.72680277,-0.4712045,0.5222578,-0.13776582,-0.41998678,0.09332112,-0.36454475,0.33109415,-1.0132309,0.16111143,-0.6660131,-0.272175,-0.8060988,-0.29703504,-1.0296338,0.3763841,-0.2313001,0.12565169,-0.27268633,-0.18489797,0.009547885,-0.6456079,-0.92715526,0.13451765,0.1558922,0.6502645,-0.2267959,0.25356978,-0.22785395,-0.60701174,-0.28776342,0.2914409,0.28623158,0.28977114,-0.20364109,-0.37013525,-0.07215199,-0.12171699,-0.330698,-0.06279634,-0.745439,-0.4781945,-0.3116031,-0.53984594,-0.24800557,0.7027606,-0.45742935,0.08750386,-0.09448163,0.024171498,-0.0014605934,0.13794042,0.03781359,0.106037535,0.29023197,-0.22954093,0.21074632,-0.26431203,0.027076492,0.08653548,0.29371825,0.5264188,-0.27892613,0.4439147,0.49888134,1.0659605,0.101079464,0.83500946,0.3135733,-0.022353457,0.46807736,-0.11651397,-0.47996256,-0.67419666,-0.049738996,0.14684723,-0.4045385,-0.48990777,0.18646461,-0.40628222,-0.91615283,0.65423703,-0.0065361043,0.33084196,0.012443185,0.6107511,0.6744162,-0.3785732,-0.1312515,0.13337752,-0.15299676,-0.37763628,-0.33467352,-0.6922143,-0.6172965,0.11474284,1.344777,-0.21149834,-0.078035206,0.30653906,-0.34739244,0.041670665,0.2646221,-0.09683908,-0.22433542,0.45114833,0.18802397,-0.52467567,0.34354523,0.13748318,-0.12658769,-0.35499984,0.25908846,0.56920445,-0.6106053,0.27652094,0.36979893,0.02227183,-0.3062285,-0.69308877,0.25594157,0.23156013,-0.1325983,0.5099216,0.52516925,-0.40778366,0.31560034,0.3323393,-0.077663586,-0.9176244,0.47670028,0.10030364,-0.18643686,-0.21712899,0.54357696,0.17304434,-0.08758014,-0.20598881,0.34663528,-0.38922912,0.14602779,0.30221403,-0.3735634,0.1598913,-0.2238524,-0.33804467,-0.8329329,0.28227484,-0.80479723,-0.28915364,0.5449652,-0.00054358516,-0.017945822,0.055607915,0.32176277,0.35040504,-0.2553519,0.098826475,-0.2873572,-0.3032886,0.5863488,0.5688053,0.465599,-0.44884413,0.76414293,0.23629618,0.050218634,-0.024371238,0.029448546,0.49384058,0.018934846,0.67687124,0.08552456,0.012345805,-0.15489925,0.62800705,0.21748017,0.5373522,0.15118538,-0.12794675,-0.11438481,0.06760451,0.25795624,-0.4156437,-0.46266717,0.110772796,-0.12023946,0.02562793,0.51520264,-0.04984091,0.39634308,-0.031966455,-0.28650525,0.04695533,0.10598354,-0.16208164,-1.3317164,0.3318879,0.22203535,0.8992189,0.53449327,0.13468291,0.06958336,0.4888797,-0.2199138,0.1474749,0.56591886,-0.11289675,-0.4204559,0.58670765,-0.6380382,0.5868776,-0.20812069,0.118012905,-0.0109907575,-0.047390934,0.6314407,0.6660833,-0.11151635,0.00862189,-0.17093788,-0.31923723,0.11289195,-0.41120735,0.27250022,-0.44325167,-0.3066656,0.7844092,0.5611031,0.39540583,-0.27336577,-0.0016850417,0.144757,-0.06473007,0.4288422,-0.07296442,0.32817063,0.02599448,-0.33374304,-0.004736515,0.43211943,-0.02704492,0.040621366,-0.07416038,-0.33244565,0.1892412,-0.08707207,0.14944175,-0.28029603,-0.96606576,0.09489496,-0.4991718,-0.5533955,0.32527512,0.112429366,0.15702012,0.16494821,0.13253249,-0.39808103,0.39171565,-0.21534666,0.7779262,-0.08270654,-0.15839921,-0.20353062,0.37613815,0.25447154,-0.32688853,0.14039873,-0.13413182,0.29205024,-0.42842785,0.3217802,-0.0065443907,-0.37831333,0.02125022,-0.041541778,-0.22007634,0.52330434,-0.12803076,-0.16740337,0.01940615,-0.25402555,-0.16461152,-0.3643411,-0.135068,0.24679288,0.1801463,0.072616726,-0.3446411,-0.070593864,0.0008709614,0.37856585,-0.047002908,0.14005803,0.6449083,0.043756686,-0.76011175,0.0468594,0.24575917,0.5949884,0.191093,-0.20973644,-0.38524708,-0.44482136,-0.45772573,0.6028745,-0.25585872,0.3979796,0.10173053,-0.18718158,1.041188,0.20116527,1.4895369,-0.052613582,-0.40426925,0.1355493,0.58912945,-0.0921992,-0.15315276,-0.42322686,1.1541319,0.44139653,-0.30095336,-0.041473646,-0.28583354,-0.08542652,0.19403924,-0.15733185,-0.18627335,0.036698174,-0.509454,-0.23911563,0.106497675,0.28655317,0.012950714,-0.38710624,-0.063661724,0.39740616,-0.034611408,0.27441484,-0.529275,-0.312531,0.25765696,0.29178044,-0.23138659,0.16620804,-0.55229986,0.26210898,-0.78326917,0.20929815,-0.41168955,0.12349716,-0.031738814,-0.5193885,0.41708496,0.09156113,0.24663244,-0.56905705,-0.3861708,-0.24529178,0.4772544,0.3440931,0.13583912,0.730692,-0.3802262,-0.02484876,0.17159635,0.5003315,0.965005,-0.2695393,-0.102932215,0.17144758,-0.40891927,-0.8585877,0.3419778,-0.64238006,0.46621084,-0.21695064,-0.3657689,-0.8195447,0.07176857,0.18682583,-0.14091031,-0.033079453,-0.95610404,-0.087440975,0.29112697,-0.38366306,-0.09541952,-0.49175707,-0.06465519,0.5344626,-0.047157343,-0.4289104,0.1251085,0.21340132,-0.10265103,-0.55995935,0.13830748,-0.44304892,0.10715987,0.11021992,-0.33751485,-0.12295675,0.0908918,-0.71901554,0.08938543,0.20244654,-0.41277486,-0.0077903317,-0.24317652,0.00095507276,0.8947761,-0.28926688,0.2718948,-0.2795769,-0.46828064,-0.8625336,-0.21133436,0.3523371,0.08775454,0.14469999,-0.9682936,0.0431423,-0.30377585,-0.08074752,-0.03759134,-0.30172727,0.4293922,0.23882487,0.42188737,-0.13094492,-0.8802172,0.29686755,0.05714915,-0.24901658,-0.41270578,0.26352137,0.0652637,0.9796515,0.078384124,0.0718212,0.3377188,-0.78655124,0.10672997,-0.14159751,-0.05103812,-0.58870673,0.010875236,115 +607,0.57736665,-0.06358959,-0.5528782,-0.14430352,-0.32940578,0.16003142,-0.09046527,0.33959213,0.025948016,-0.63680404,-0.46713403,-0.21428028,-0.13053972,0.0022303509,-0.13292,-0.48919863,0.353682,0.3484135,-0.58300436,0.5679294,-0.45494395,0.59857774,0.14567734,0.1451285,0.16923301,0.10469541,0.18916692,-0.015555316,-0.216446,-0.35114655,0.12740271,0.17474772,-0.45274565,0.39601612,-0.15407334,-0.4210596,-0.03286704,-0.23775993,-0.19695657,-0.84152836,0.11442841,-0.7365892,0.49044192,-0.28246948,-0.27900708,-0.011764018,0.12736882,0.18456167,0.014338599,0.042888973,0.17531705,-0.084966674,-0.3188499,-0.33805832,-0.18777667,-0.4194852,-0.3941951,0.06603377,-0.16612536,-0.109043725,-0.29652914,0.28519052,-0.18793243,0.09227197,-0.102383986,0.4246535,-0.2637121,0.17380585,0.045779712,-0.19704987,-0.034195323,-0.73139256,-0.18633042,-0.17573959,0.28631863,-0.061428133,-0.12685864,0.18045847,0.10624865,0.6029068,0.07682843,-0.074616045,-0.24611609,-0.18698694,0.35269496,0.6102199,-0.018274684,-0.07367057,-0.17039302,-0.1775863,0.33025426,-0.071305126,0.28471,-0.5229179,-0.1717641,-0.36318558,-0.24789463,0.16725141,0.47657695,-0.32112586,0.013928693,0.2676369,0.62056947,0.07128807,-0.2672021,0.24657533,-0.26385805,-0.34694672,-0.08407039,0.042204563,0.14962897,0.49638665,-0.123383455,0.16801009,0.29965323,0.04718461,-0.11493007,0.16296183,0.0912168,0.049059648,-0.19039737,-0.08409126,0.06793273,-0.34779993,-0.13310567,-0.44695795,0.8480268,0.061110202,-0.65317154,0.43608972,-0.3594097,-0.015951399,0.009925031,0.46893552,0.60812205,0.4790656,-0.071788326,0.68975407,-0.40516073,0.03566388,-0.12310742,-0.102333106,-0.055786427,-0.032678846,-0.008495349,-0.3945933,0.2594364,-0.087510824,-0.120659076,-0.17537093,0.5452423,-0.47491643,-0.17243865,0.03861972,0.6401799,-0.42639977,-0.07775398,0.7665522,1.0235745,0.8558852,0.11956845,1.3015301,0.34320813,0.017269112,-0.23499845,-0.21773991,-0.5979032,0.19290026,0.20524615,0.5181972,-0.18746132,0.27636024,0.07550181,0.57108086,-0.49699,0.05588202,-0.22866017,0.34174216,0.02703586,-0.011224137,-0.29527777,-0.12653992,0.23701444,0.012938102,0.19872838,0.1926295,-0.24815449,0.37253377,0.049463466,1.5289123,-0.21678878,-0.02637386,0.09939623,0.25585455,0.04337309,-0.14799765,-0.01672431,0.073427744,0.2110365,-0.26195318,-0.35538134,-0.122441016,-0.04857143,-0.5275125,-0.24465176,-0.1234777,-0.12657149,-0.013958601,-0.23514284,-0.3622549,0.06050033,-0.52657056,0.5412403,-2.2452307,-0.15888911,-0.15380917,0.37756222,-0.14202656,-0.51546246,-0.10692581,-0.46916464,0.4982839,0.2885961,0.37563017,-0.424273,0.49927908,0.32877678,-0.37642255,-0.11101807,-0.6335129,0.017826658,0.022384562,0.27506855,0.11630501,-0.014213145,-0.36782214,-0.12644516,0.4153722,-0.21052358,0.1676646,0.6488712,0.284303,0.15100482,0.37747192,0.20488478,0.7067106,-0.35390583,-0.07375087,0.5241959,-0.40248615,0.08671558,-0.042040866,0.19014928,0.34096912,-0.5523946,-0.4223231,-0.9752586,-0.38282818,1.2934301,-0.147148,-0.48472896,0.1913557,-0.30368212,-0.3692425,0.10928067,0.34146452,-0.115684085,-0.14734194,-0.70107853,-0.21961528,0.024195036,0.3962067,-0.18999648,-0.14837515,-0.5089704,0.7136656,-0.29662082,0.5286567,0.35311782,0.27848896,-0.09284103,-0.25656685,0.02531851,1.089929,0.37755173,0.097348616,-0.19210038,-0.2959533,-0.4573135,-0.18467881,-0.0139158005,0.7819146,0.3942861,-0.017902734,0.038482126,0.22744407,-0.11414563,-0.13342513,-0.19980405,-0.38332075,-0.2000254,-0.0014723081,0.6236515,0.5860649,0.0971929,0.4773021,-0.18892115,0.38192353,-0.2935514,-0.5642263,0.37886178,0.6050364,-0.21740222,-0.37020996,0.51702887,0.34866813,-0.26847416,0.33249342,-0.56910485,-0.42384756,0.25150216,-0.026681652,-0.36919868,0.050009325,-0.32565954,0.2665378,-0.80968064,0.5300743,-0.45625323,-0.8978536,-0.35178983,-0.19637473,-1.9875834,0.20089012,0.04697587,-0.064128466,0.018594269,-0.1536662,-0.04432039,-0.16546696,-0.5446873,0.1514392,0.022849377,0.53524595,0.08584694,0.061190203,-0.28386155,-0.3151748,-0.16917141,0.16579205,0.02934454,0.3862174,-0.16622402,-0.3185236,0.04706641,-0.22290619,-0.08848361,-0.0015245286,-0.71177906,-0.7770923,-0.050560493,-0.458069,-0.28064182,0.5791151,-0.687206,0.043802842,-0.23783292,-0.10736425,-0.2303648,0.27827123,-0.05719515,0.14005902,0.025128622,-0.11752165,-0.10639226,-0.4352552,0.29773313,0.23006505,0.12223938,0.49611312,-0.17789723,0.06457246,0.25604314,0.572325,-0.028277615,0.85482186,0.2811715,-0.04148114,0.3653321,-0.09731027,-0.40217692,-0.367401,-0.027977398,-0.056199107,-0.47056305,-0.18477553,-0.18278188,-0.30329412,-0.69883907,0.40531492,0.18779221,-0.18871623,0.13997032,0.21845675,0.38930467,0.14089793,-0.09943371,-0.0866306,-0.13349146,-0.5000505,-0.57629544,-0.52617764,-0.49649826,0.025890555,1.1881938,-0.12720878,0.038955506,0.073225014,-0.24391015,0.14611192,0.25945723,0.11380784,0.05060649,0.5442615,-0.15794097,-0.6415522,0.49939,-0.097770065,-0.055231113,-0.44986293,0.36371738,0.61254436,-0.6828898,0.35692638,0.21711802,0.15079315,0.02679043,-0.5075627,-0.079326406,-0.1351549,-0.49336135,0.35300505,0.12264155,-0.65110934,0.335371,0.25858173,0.13846849,-0.8211196,0.26593116,-0.09906657,-0.31725386,0.187058,0.41896918,-0.019990517,-0.010917301,-0.31613094,0.0031872438,-0.37075788,0.34347758,0.20062064,-0.1474089,0.09760786,-0.41091824,-0.15424523,-0.6268002,-0.2518664,-0.5264523,-0.31726614,0.051376138,0.16418836,-0.088817105,0.24942112,0.29252908,0.44463533,-0.32585657,0.09745606,-0.27344176,-0.116548374,0.23460136,0.28867847,0.28773075,-0.40723264,0.4722318,-0.0047066305,0.034110326,-0.22310239,0.11160501,0.35323173,0.099148154,0.302496,0.070281826,0.15651025,0.24313776,0.87311214,0.18571562,0.4195151,0.09031475,-0.46002287,0.110836916,-0.09326673,0.14914912,-0.08378653,-0.441429,-0.044385202,-0.0031446172,0.12770694,0.45875946,0.2507187,0.5235535,-0.08956354,-0.56860244,0.05213184,0.05805784,0.02630705,-1.1295054,0.21890244,-0.06526643,0.9085068,0.48939693,-0.054852907,0.17589146,0.57861817,-0.20357664,0.18495886,-0.0032847065,-0.26012337,-0.20234026,0.22786158,-0.6377898,0.234543,-0.19006188,-0.020010876,0.32003453,-0.026653694,0.34230152,0.72302914,-0.06740518,0.1431187,0.03309339,-0.1436345,-0.10295778,-0.24993013,0.22646967,-0.5398951,-0.31066376,0.5976406,0.43604058,0.43150356,-0.30717328,0.13977844,0.13777402,-0.18347321,0.15832344,0.057568643,0.095575556,-0.06709482,-0.43680036,-0.22695869,0.69138014,-0.023283573,0.0029403658,0.30672044,-0.4143154,0.20079003,-0.05255155,0.119027406,-0.0073153605,-0.52568793,0.14775328,-0.28868768,-0.16540845,0.08471426,0.021516122,0.16940764,0.2673193,0.05031731,-0.22294767,0.48896393,0.24333389,0.73449314,0.22373445,-0.043300144,-0.25224406,0.16467656,0.29592538,-0.2766522,-0.04287883,-0.12887233,0.10888879,-0.7413622,0.25596708,0.0088924905,-0.32323796,0.1914246,0.027990071,-0.08845586,0.4668031,-0.11809237,-0.075788535,0.4330794,0.105497636,-0.15272276,0.08089935,-0.15093936,0.1780649,0.04750741,-0.22264704,-0.10506748,0.014920785,-0.022697357,0.11728169,0.06271393,0.27259958,0.4094319,-0.10872932,-0.45918608,0.14151004,0.11504797,0.62934744,-0.12657833,-0.013492222,0.013879111,-0.37304145,-0.40105012,0.31303045,-0.057268348,0.25510275,0.11712522,-0.2642212,0.5559958,0.19620067,1.0945233,0.03038867,-0.24919327,0.10017283,0.53714335,-0.017265104,0.09110964,-0.39766172,0.8194376,0.5357699,-0.17941931,-0.04183376,-0.2558881,-0.15354982,0.23672572,-0.024272852,0.013563707,-0.09284902,-0.6712064,-0.37531802,0.12527409,0.30132195,-0.11227141,0.01300944,0.16511177,0.25533238,-0.07515388,0.28264067,-0.45749947,-0.0030190807,0.27756065,0.18782432,-0.07356226,-0.03764157,-0.37924117,0.24320708,-0.8740866,0.047434393,-0.1355873,0.027961887,-0.19723204,-0.25846463,0.12563834,0.174692,0.2321313,-0.53189975,-0.3261743,-0.40456265,0.559851,0.18423806,0.28367278,0.62928987,-0.17590784,0.118925214,0.24238792,0.43653283,0.99643475,-0.12860686,0.046181403,0.50291526,-0.40738282,-0.49893254,0.116959065,-0.1381237,0.088844605,-0.15028845,-0.31506824,-0.40798935,0.30836242,0.30195045,-0.05026385,0.05643263,-0.6040796,-0.11026977,0.31646794,-0.22147104,-0.19938055,-0.19041698,-0.017742176,0.47118217,-0.15780888,-0.4645886,-0.075296015,0.28163618,-0.43213478,-0.61346734,-0.13277532,-0.37535465,0.3211466,0.15107816,-0.3691223,-0.2879202,0.12619406,-0.39158583,-0.14807357,0.072186574,-0.34995618,0.10139695,-0.2454096,0.11798865,0.7008337,-0.010232806,0.26847458,-0.4448851,-0.5935695,-0.6474832,-0.4021635,0.34495002,0.34334543,-0.307828,-0.43859306,-0.26884097,-0.36211866,-0.18859555,0.16958974,-0.26161176,0.42200515,0.26652262,0.35405394,-0.24798916,-1.1171939,0.102368504,0.21371815,-0.10988558,-0.4127271,0.2524485,0.02479483,0.73441494,0.059728578,0.01966679,0.12504259,-0.55383766,0.33302358,-0.16971119,-0.0443414,-0.46301043,0.13576585,116 +608,0.6115479,-0.025813244,-0.4652707,-0.27203438,-0.37725684,0.05282833,-0.038540855,0.20480278,0.35099265,-0.38020322,-0.114016734,-0.038807135,-0.068389475,-0.011871145,-0.11633641,-0.6879865,-0.029058943,0.22591455,-0.6526629,0.35239977,-0.326026,0.49617067,0.101429515,0.43832895,0.042793162,0.10268204,0.06603417,-0.11061887,0.017598914,-0.0702813,-0.16744262,0.15588346,-0.8074534,0.25791666,-0.13049263,-0.33589342,-0.04101966,-0.5454686,-0.3439207,-0.7710011,0.31642812,-0.77181786,0.8014184,0.048892483,-0.37985736,-0.15312031,-0.02931032,0.3347336,-0.20630452,0.22720265,0.27273706,-0.20480005,-0.0235473,-0.0925276,-0.25777745,-0.22851256,-0.52667785,-0.043529723,-0.3709871,0.006464376,-0.08425289,0.3047032,-0.17896003,0.0100933565,-0.34587398,0.4975695,-0.31075594,0.056604307,0.23365706,-0.120956525,0.299995,-0.4959763,-0.031584103,-0.12993176,0.16883205,-0.16961432,-0.30624968,0.19600064,0.19929862,0.7406298,0.14292324,-0.31217206,-0.040400527,0.083940305,-0.14619358,0.51131785,-0.25151923,-0.10130556,-0.2986088,-0.1373443,0.3608422,0.21188127,-0.11372698,-0.4625438,0.27257735,-0.12398399,-0.021939544,0.4108383,0.52485085,-0.14186262,-0.24494621,0.16708273,0.2785962,0.09347459,0.00524409,0.3711906,0.04818762,-0.42711464,-0.3223823,0.25580367,-0.087858126,0.3111849,-0.11719381,0.08467551,0.5116685,-0.022975596,-0.014011145,-0.00068239984,-0.004558123,0.21986839,-0.23771963,-0.39496592,0.30669996,-0.5793733,-0.024774514,-0.37719396,0.7046538,0.062120043,-0.76096874,0.27098358,-0.6452771,0.09282352,-0.12297515,0.6816892,0.8151392,0.47666475,0.03998373,0.8831147,-0.5282492,0.1461525,0.1650442,-0.15385373,0.019136135,-0.058122084,0.22710374,-0.3547602,-0.082693234,-0.14888176,-0.121033154,-0.1602202,0.27230674,-0.58532745,-0.23561089,-0.16006151,0.7359254,-0.36357898,0.115102306,0.8976028,1.1142713,0.9813025,0.061710063,1.3353225,0.4652948,-0.22526357,0.0109977815,-0.24406177,-0.57575434,0.1090486,0.19757472,-0.02359447,0.20300677,0.10196627,-0.063325875,0.37098843,-0.6938692,0.034169413,-0.17460912,0.18788172,-0.16841239,0.050417297,-0.5095788,-0.15488246,0.17382754,0.117671266,0.057471115,0.07195206,-0.2968645,0.17639717,0.17151836,1.1728624,-0.109375626,-0.092503555,-0.0054068496,0.27368876,0.10577261,-0.18154171,-0.09332888,0.17552076,0.471711,-0.17956482,-0.53788495,-0.005407619,-0.21940573,-0.13026452,-0.24086195,-0.17666174,0.033048328,-0.21226989,-0.41493225,-0.31755748,-0.0811349,-0.45304444,0.39591026,-2.2097654,-0.19642141,-0.15500304,0.47695324,-0.2670176,-0.2822528,-0.19604842,-0.4146336,0.24906634,0.3038493,0.28179276,-0.6199018,0.4487962,0.42718792,-0.40536693,-0.0049105263,-0.7257506,-0.112879366,0.070623025,0.30064213,-0.036901824,-0.22697504,-0.27680206,0.15663265,0.5252436,0.24057439,0.10932993,0.26103657,0.5064531,0.056230452,0.49183607,0.16708367,0.53508633,-0.32368013,-0.06948655,0.42535165,-0.5103375,0.11893945,-0.023795005,0.03176193,0.3741039,-0.6747049,-0.6462545,-0.8384559,-0.45895684,1.1172255,-0.3159768,-0.4555879,0.273733,-0.31907612,-0.19352333,0.14486068,0.5396051,-0.20936812,-0.010472619,-0.83822095,-0.2807451,0.0076853773,0.3384968,-0.014918786,0.2068049,-0.48815617,0.6171466,-0.33627856,0.46716785,0.44724756,0.34012133,-0.038116418,-0.67161083,0.066696376,0.9209348,0.3640017,0.18699664,-0.21024463,0.07804188,-0.22763804,-0.11002937,0.062558435,0.7423108,0.9898177,-0.12727328,0.02761024,0.4115404,-0.16379428,0.024915596,0.023544298,-0.4766467,-0.2789473,0.05354853,0.5647992,0.5033168,-0.031917516,0.30415022,-0.2672819,0.337573,-0.20401861,-0.48468348,0.44178292,1.2166641,-0.08749051,-0.16984613,0.7063471,0.43130296,-0.35900578,0.42268282,-0.77165896,-0.30985147,0.44484857,0.02090581,-0.6765134,0.099163875,-0.3550124,0.15224746,-0.84463716,0.52055305,-0.25869265,-0.84415084,-0.49675843,-0.12332846,-1.9471259,0.16935198,-0.24665777,0.025578452,-0.18797328,-0.37686855,0.29089308,-0.27723745,-0.7050715,0.098054975,0.025474511,0.39096445,0.034068037,0.19311169,-0.2295022,-0.113340564,-0.3271825,0.2695294,0.37028444,0.14216179,-0.0016958163,-0.31125847,0.00091137335,-0.07923528,-0.27239606,-0.013177172,-0.7162195,-0.74230903,-0.061625235,-0.6972773,-0.16470344,0.6401625,-0.35557073,-0.039499182,-0.34813198,-0.02847175,-0.25422123,0.355264,0.06821832,0.33452642,0.035711642,-0.081707805,-0.25979382,-0.27663013,0.28656626,0.21831986,0.1925494,0.19816747,-0.23196891,0.1828398,0.2988888,0.71704096,-0.10097441,0.7629211,0.33468777,-0.07437929,0.24519055,-0.29230186,-0.33025867,-0.61374915,-0.23423305,-0.12786561,-0.46570507,-0.27533254,-0.05890375,-0.5750551,-0.824928,0.30097836,-0.0989215,0.1298059,0.040209297,0.1927407,0.43244797,-0.043246742,0.012033754,-0.22340377,-0.13950506,-0.48936382,-0.33977216,-0.57542264,-0.49388555,0.104594484,1.4334834,0.065483905,0.16498944,0.3463965,-0.24560341,0.16584308,0.086215846,-0.053404294,0.1962591,0.7712825,0.023830872,-0.6891582,0.11223487,-0.000634966,-0.05649257,-0.6489032,0.2109557,0.9254179,-0.8694081,0.6124722,0.32056016,0.18300611,-0.24453856,-0.6232955,-0.377981,0.03612482,-0.19119708,0.7054994,0.17764029,-0.40951437,0.3906712,0.124093205,0.013683291,-0.7309264,0.4745223,0.050760806,-0.286119,0.21230489,0.43128088,-0.21236412,-0.1344437,0.052097134,0.36104774,-0.22911622,0.45473364,0.1932288,-0.09445547,0.20961627,-0.13003644,-0.23096617,-0.67549884,0.07482866,-0.6701952,-0.36858705,0.19858955,-0.11247897,0.019813826,0.36578682,0.0584662,0.50803363,-0.10030387,0.19242646,-0.10564804,-0.33976793,0.30942968,0.491602,0.3551037,-0.45609182,0.54959834,0.024251156,-0.09944292,-0.28055242,0.23507604,0.31579974,0.07731558,0.34088212,-0.18346699,-0.06344673,0.22183639,0.6393077,0.1148799,0.30383512,0.17867978,0.02885241,0.28174636,0.120420255,0.1486556,-0.16612604,-0.33144346,-0.16419172,-0.12362231,0.09674503,0.17995127,0.17241511,0.3142343,-0.18047921,-0.3233419,0.086929955,0.060927756,-0.23717652,-1.2928379,0.24038602,0.14216073,0.6732126,0.505259,0.00023306791,-0.00013851661,0.42987177,-0.1029979,0.16419636,0.48812085,0.08590675,-0.22214708,0.49780816,-0.43275928,0.38633266,-0.11966273,0.116771095,-0.0010868311,0.21164212,0.43657273,0.8703791,0.0056385673,0.010832573,-0.17480828,-0.07094239,0.08543779,-0.38746852,0.26167247,-0.5651451,-0.37404233,0.64204717,0.45522755,0.34381527,-0.31240466,-0.09215762,0.083012804,-0.23279117,0.18156348,0.021118935,-0.182991,0.16707538,-0.5955191,-0.21547945,0.45896918,-0.06460869,-0.22341046,0.18550849,-0.15514478,0.19438662,-0.030551754,0.050088324,0.056905113,-0.76421064,-0.19464618,-0.46945065,-0.095107034,0.11788731,-0.41276306,0.032339778,0.123322874,0.08825998,-0.3202909,0.10477896,0.2785858,0.7971702,0.053045347,-0.14728275,-0.40232074,0.14924267,0.21580952,-0.34274548,-0.10736457,-0.1685271,0.13485731,-0.70725626,0.46914372,-0.008353091,-0.21243699,0.30365217,-0.124829054,-0.007325429,0.38189915,-0.27796453,-0.11987963,0.43340996,-0.038253717,-0.36135462,0.034237016,-0.16333863,0.179024,0.27078387,-0.058225825,0.05307942,-0.14532755,-0.29799163,0.33238596,0.2687718,0.30548027,0.4656257,-0.023780452,-0.5232252,0.13906902,0.020862559,0.48335078,0.07151105,-0.051569257,-0.12202121,-0.34764507,-0.10127092,0.500048,-0.20072031,0.17128512,-0.15925834,-0.3541446,0.9042021,0.35655075,1.1727293,-0.039264705,-0.2702848,-0.18249358,0.56675726,-0.05921708,-0.046787288,-0.43034336,1.0155964,0.5423833,-0.07891774,-0.15874498,-0.35817772,-0.15752769,0.26933244,-0.1483579,-0.2626681,-0.14262964,-0.81878144,-0.29499292,0.21040668,0.3433226,-0.124385715,0.015155987,0.12608151,0.14993915,-0.097806096,0.52467704,-0.5333057,0.1595615,0.113066725,0.23383668,0.18205172,0.35425928,-0.34556696,0.19288714,-0.76317,0.19080004,-0.2965555,-0.068418495,-0.011315272,-0.31795618,0.08151014,0.034523975,0.27131242,-0.48046714,-0.24347201,-0.3306709,0.6152514,0.14487371,0.21941511,0.9040371,-0.22600159,-0.08410346,0.20685238,0.524844,1.4000537,-0.0939385,0.09705739,0.14954899,-0.35403207,-0.6074397,0.20773959,-0.25983414,-0.13779898,-0.14420986,-0.4449727,-0.34585002,0.1868438,0.1457911,-0.2608922,0.13809913,-0.57601917,-0.045120366,0.4792349,-0.15477268,-0.29188222,-0.34527633,0.29484156,0.66283923,-0.1692728,-0.35063598,-0.10445829,0.32829788,-0.4487503,-0.6973867,0.009552956,-0.5153318,0.29042098,0.068124875,-0.3952119,-0.07499489,0.14392985,-0.5092033,0.093233556,0.3117754,-0.36629534,-0.004530047,-0.053705342,-0.25375915,0.89442325,0.11931695,-0.0795503,-0.6769599,-0.45786032,-0.8430938,-0.24205995,-0.07087767,0.47002384,-0.082481936,-0.5911727,-0.11788313,-0.2311233,-0.010125822,0.16199511,-0.39760125,0.40900597,0.3078214,0.72399545,-0.2776669,-0.968998,0.029889595,0.12096645,-0.27000457,-0.40475512,0.47641328,0.1476824,0.6200094,0.058665097,0.078724034,0.040307395,-0.58756936,0.29497945,-0.1760496,-0.18447924,-0.8364197,0.08228911,117 +609,0.3842117,-0.24764174,-0.5832698,-0.04206442,-0.28451654,-0.10184508,-0.19622692,0.4251644,0.32161948,-0.40362787,-0.20275617,-0.147199,-0.12937501,0.38420302,-0.32707447,-0.29966223,-0.100344196,0.17731713,-0.5254554,0.5162955,-0.43093312,0.21606673,0.067548834,0.36361414,0.045278806,0.13193348,0.22440775,0.038019996,-0.009672,-0.3366141,0.31662017,0.13681298,-0.77949846,0.17705995,-0.13656577,-0.40471885,-0.020595444,-0.42866796,-0.43493384,-0.8395244,0.36582372,-1.0433838,0.44928953,0.028933961,-0.30570972,0.31503648,0.16317202,0.21476981,-0.14619964,-0.12773885,0.20656984,-0.21229139,-0.21112704,-0.19531728,0.10215163,-0.3670139,-0.6775347,-0.07265758,-0.3614333,-0.017007185,-0.37233162,0.1979707,-0.4153444,0.24077429,-0.27859533,0.44146648,-0.48958272,0.0046018776,0.28191125,-0.035050213,0.40295961,-0.61951965,-0.16496271,-0.117897466,0.06953049,-0.042083867,-0.14522918,0.42392892,0.1885409,0.3414545,-0.15352513,-0.25392175,-0.21094224,-0.048648365,0.20967294,0.28345028,-0.29812807,-0.25488868,-0.043508813,-0.10682518,0.05796252,0.07878478,0.14426623,-0.3024534,-0.042869393,0.003058727,-0.19809628,0.36063963,0.5703458,-0.1525028,-0.14668903,0.17672104,0.5419748,0.09890541,-0.07924134,-0.03407979,0.008507426,-0.49923646,-0.22786988,-0.08562936,-0.30082706,0.52277035,-0.20422469,0.18251696,0.5312593,-0.22347912,-0.14575396,0.27269512,0.19469541,-0.014218326,-0.2773214,-0.39989856,0.54269814,-0.64912045,0.07896805,-0.18997282,0.77713263,-0.036124554,-0.71286285,0.30288833,-0.6248985,0.17341062,-0.1294752,0.58434176,0.5496851,0.5897685,0.449665,0.8424699,-0.51103985,-0.04828411,-0.11461169,-0.4542648,0.37312406,-0.3917033,0.05016205,-0.43306705,-0.17320156,0.11200837,-0.102960974,0.12465717,0.20382339,-0.45247146,-0.02931112,0.2565305,0.6368916,-0.19042224,-0.02052563,0.66218626,1.297503,1.0195038,0.19828393,1.2066985,0.138659,-0.19386783,0.10629952,0.12992142,-1.0243949,0.33704993,0.34412268,-0.36184266,0.20733073,0.1397007,-0.068995744,0.4436757,-0.62392545,-0.12727003,-0.08931945,0.39526463,-0.0104355905,-0.3231454,-0.44043672,-0.37220222,0.14392474,0.018633243,-0.043168988,0.35520107,-0.12741835,0.24984208,0.13128296,1.0975397,-0.082392916,0.16611224,0.19467632,0.42080244,0.12439367,-0.25383994,-0.10010914,0.15897773,0.29553795,0.35461146,-0.5208348,0.22516452,-0.0374108,-0.66428924,-0.10651477,-0.29622144,-0.01663081,-0.12289103,-0.41490665,-0.3022355,-0.24171278,-0.34367877,0.49196962,-2.5654855,-0.01320219,-0.0688739,0.25570694,-0.11566857,-0.1745422,0.07756038,-0.5305285,0.38662168,0.42159325,0.4209751,-0.61368644,0.3579108,0.48656172,-0.6823339,-0.033667464,-0.56825554,-0.15323025,-0.06922262,0.29267374,0.21807736,-0.13212684,0.07933308,0.19616824,0.3096419,-0.07903164,0.15884754,0.47298017,0.26119688,-0.232561,0.42426568,-0.01031893,0.40423578,-0.46763214,-0.30523118,0.38984266,-0.49465582,0.24694099,-0.058735006,0.13833639,0.47836912,-0.39494735,-0.9225661,-0.5897691,-0.1753165,1.3975686,-0.1494975,-0.7214354,0.28814787,-0.30758104,-0.31721815,-0.087732226,0.42437145,-0.3691862,0.04571951,-0.96776795,-0.048132166,-0.23151566,0.3819775,-0.048195902,-0.1357837,-0.49957234,0.8112695,0.041008234,0.5847412,0.46164915,0.0128786275,-0.5826881,-0.44894952,0.115930095,0.7536414,0.51637495,0.17087118,-0.3309277,-0.08210378,-0.2432732,-0.0936881,0.17525291,0.57870525,0.73277706,-0.12822019,0.16886544,0.19375859,-0.021587197,-0.009187469,-0.10029183,-0.2894545,-0.027102627,0.12401588,0.7017035,0.89359814,-0.15788487,0.14544731,-0.03484417,0.38890436,-0.08377763,-0.531145,0.46919885,1.0055003,0.051148362,-0.19152866,0.700425,0.7369341,-0.26279658,0.69947076,-0.5483132,-0.47001076,0.31213725,0.0026903886,-0.512936,0.05316511,-0.4353887,0.15308444,-0.8174566,0.39848498,-0.47049066,-0.49724156,-0.65160406,-0.106226526,-3.1266768,0.19362535,-0.29077858,-0.103229746,-0.23380706,-0.23532502,0.40523544,-0.71673036,-0.74327,0.13950028,0.18594088,0.7814256,-0.15324384,-0.07372702,-0.087039076,-0.26145142,-0.27481568,0.096024565,0.21280839,0.1889878,-0.0020250494,-0.5374005,-0.17457059,-0.24409741,-0.37366816,-0.12202956,-0.45965287,-0.52983516,-0.20536476,-0.44722986,-0.55274147,0.5667298,-0.29180962,0.020321773,-0.21326384,-0.074692614,-0.08120603,0.38303372,-0.053498168,0.21527955,0.00065095606,-0.111583814,-0.10599307,-0.1403206,0.3001312,-0.012801757,0.4156261,0.56632936,-0.33165994,0.0709323,0.6284183,0.71278393,-0.19978616,1.0414844,0.41910547,-0.016055794,0.3304229,-0.08636995,-0.29577854,-0.58271617,-0.18265009,0.036185745,-0.3900585,-0.22373225,0.07261454,-0.3098523,-0.71945965,0.7327262,0.05479703,0.28432143,-0.09804546,0.09816074,0.27166602,-0.179068,-0.11242007,-0.23180412,-0.1810321,-0.52049196,-0.330915,-0.7025894,-0.4737403,-0.29945937,1.0500386,-0.084338956,0.11283513,0.31056023,0.018096667,0.10845919,0.13978024,-0.15810019,0.18222322,0.4861777,0.16559869,-0.7594735,0.5132022,-0.17004737,-0.010881617,-0.5421709,0.2650086,0.46187752,-0.55541027,0.5432997,0.57743263,0.093902774,-0.16102281,-0.6876043,-0.26115572,-0.012967467,-0.16971198,0.55294716,0.5449651,-1.0237192,0.4782213,0.44532573,-0.450609,-0.7389823,0.59733665,-0.061109446,-0.29534078,-0.08374173,0.35657948,-0.18308479,0.24475762,-0.012829845,0.28081167,-0.47130764,0.24555874,0.20501874,0.013198705,0.29902762,-0.16282254,0.026634024,-0.65560806,0.16583674,-0.38890982,-0.1772621,0.11608117,-0.06636792,-0.28689325,0.34728524,0.14176792,0.38961893,-0.21891458,0.094568625,-0.20320262,-0.45003036,0.6138242,0.5595067,0.5023992,-0.49506742,0.7584987,0.05458596,-0.16785724,-0.3067788,0.011646696,0.49345765,0.06825897,0.3946306,0.066998005,0.0047849347,0.2558213,0.8060189,0.14163636,0.40278104,-0.020720344,0.0995317,0.22724582,0.06341727,0.35213912,-0.03252234,-0.66151005,-0.0059318137,-0.40651608,0.13744459,0.5296309,0.006012027,0.31147483,-0.09350153,-0.24682859,0.040738784,0.18431994,-0.06566356,-1.5905101,0.55684406,0.17404722,0.70815146,0.6404122,-0.019539742,0.12769435,0.7271407,-0.22760893,0.07712366,0.31479424,0.15106963,-0.45894268,0.6876371,-0.8412251,0.3580001,-0.008843254,0.031045051,0.016325014,0.05630787,0.3107579,0.6775626,-0.14611651,0.15334114,0.07761599,-0.4017483,0.16518927,-0.36398113,0.17458858,-0.4222867,-0.2866565,0.74778116,0.53655136,0.47788766,-0.26891977,0.0038879376,0.10567662,-0.16118439,0.3075258,-0.074764624,0.15285574,-0.19839925,-0.4932259,0.018476693,0.5426554,0.15522799,0.13273601,-0.14634533,-0.17180388,0.1543695,-0.12769875,-0.1597053,-0.011094368,-0.7604272,0.0840933,-0.24840091,-0.30549768,0.47412422,-0.31238973,0.1268947,0.3103039,0.2193583,-0.35729313,0.056321386,0.08449349,0.56368893,-0.016643899,-0.21749964,0.027631663,0.15934187,0.11438199,-0.1457835,-0.037698105,-0.33979747,0.10454814,-0.31920454,0.58586156,-0.19339529,-0.1962951,0.16661286,-0.13693292,0.0771287,0.4925108,-0.2565201,-0.26386225,0.098937236,0.106801495,-0.14237574,-0.4220479,-0.2792618,0.27438605,0.06295584,0.013625434,-0.15903327,-0.11020566,-0.10248527,0.34540337,-0.07706496,0.26001012,0.37597436,-0.016294489,-0.5711756,0.009779875,0.032466397,0.60224164,-0.103972286,0.026546065,-0.4465502,-0.50742775,-0.30434144,0.33356318,0.01382911,0.36127615,0.06308749,-0.2678006,0.73613477,0.09415797,0.97877014,-0.072219305,-0.34446913,0.034821868,0.54634976,-0.14159311,-0.34778053,-0.28689244,0.8315261,0.6121378,-0.28479153,-0.15471843,-0.39368236,0.25588995,0.09636802,-0.23552571,-0.18581574,-0.04326214,-0.78603643,-0.09520381,0.1150929,0.5103639,-0.12758777,-0.09801528,0.048587058,0.34959757,0.08700958,0.16848017,-0.30561623,-0.05564733,0.3744262,0.20237257,-0.020108791,-0.0015540215,-0.41110367,0.31154564,-0.71139973,0.008527687,-0.3490434,0.043827433,-0.26241466,-0.3996153,0.1348537,0.032845728,0.27381316,-0.30811772,-0.16855215,-0.047832634,0.31878996,0.21879436,0.12035223,0.71981007,-0.23071766,0.10434567,0.07445772,0.40142792,0.8724771,-0.4083609,-0.028036186,0.1368522,-0.3952267,-0.66997683,0.33167464,-0.29353315,0.11398114,-0.07623585,-0.29104012,-0.6117964,0.13493393,0.33553714,-0.025547367,-0.01700959,-0.61036307,-0.09697389,0.17730658,-0.38689497,-0.27377462,-0.4523366,0.004097196,0.48928267,-0.1542101,-0.23152831,-0.0062107765,0.3059289,-0.15801406,-0.40699995,-0.054651625,-0.35529643,0.24164955,-0.073212266,-0.391571,-0.02853202,0.16859832,-0.38487074,0.3185673,0.22202343,-0.2374834,0.109576836,-0.41054896,0.04577529,0.71466887,-0.2256718,0.1057311,-0.4756904,-0.66296506,-0.8863891,-0.18505552,0.3122902,0.22999236,0.060562257,-0.5292726,-0.05030435,-0.13317515,-0.028979916,-0.20997405,-0.26884323,0.43823984,0.1741584,0.42163262,-0.0081179505,-0.73310196,0.03142763,0.15658656,0.06878113,-0.16974545,0.6411031,-0.039144956,0.69369423,0.061646078,0.16897954,0.14480491,-0.4972672,0.26303858,-0.050158437,-0.24505311,-0.53306305,0.024653563,120 +610,0.41225857,-0.27837053,-0.34705466,-0.19449617,-0.2970767,-0.18952714,-0.17316961,0.30254567,0.21515793,-0.18873248,-0.009177231,-0.14851856,0.15140149,0.3448396,-0.106555425,-0.79212993,-0.15477291,0.05332214,-0.67026067,0.4247882,-0.5866122,0.22424753,0.012048254,0.25479725,-0.16686252,0.43778637,0.3346039,-0.26326278,0.116150245,-0.069831654,-0.015598329,0.07377817,-0.71034855,0.105812445,0.019699948,-0.20772293,0.15643813,-0.43420476,-0.34574383,-0.6386966,0.13029267,-0.8590377,0.37328365,0.08028344,-0.06475302,-0.018651742,0.08441022,0.45240054,-0.48127845,-0.070394054,0.28406888,-0.10524222,-0.016545674,-0.28538933,0.23620436,-0.42786142,-0.4782357,-0.029753229,-0.48144963,-0.49007034,-0.18486436,0.18550372,-0.40055022,-0.033861756,-0.038287655,0.35294393,-0.4924392,0.017164053,0.3689323,-0.31263554,0.38676316,-0.34303474,0.09294352,-0.110987015,0.4628639,0.0030852281,-0.122728676,0.40174627,0.23993787,0.25079906,0.17330275,-0.18001446,-0.16784105,-0.26277044,0.213538,0.49425408,-0.16558054,-0.44706663,-0.039192066,-0.0018499998,-0.0130797075,0.2349313,-0.023838677,-0.3582617,-0.1251483,-0.06197475,-0.27207425,0.6764877,0.5277189,-0.09354043,-0.3585372,0.22278312,0.539215,0.21027909,-0.12941468,0.016899787,0.12410172,-0.5502929,-0.1669368,0.13394836,-0.079958156,0.49530804,-0.16317503,0.23731254,0.9985154,-0.25730136,-0.017659893,-0.107283816,-0.1038441,-0.10404166,-0.24528626,-0.08679123,0.14217648,-0.60212976,0.0288785,-0.27799073,0.9025841,0.2401442,-0.83322275,0.4045196,-0.5920142,0.14846548,-0.1564078,0.7101539,0.44138816,0.36413452,0.4682992,0.7005611,-0.2878287,0.22236243,0.05587565,-0.61153734,0.17752178,-0.30518195,0.09429664,-0.44842878,-0.014425957,-0.01895341,0.0810109,-0.013987775,-0.07887072,-0.48353502,0.07007759,0.27628422,0.8309258,-0.30166367,-0.014851144,0.5059157,1.064958,0.7998062,0.11459002,1.1508578,0.31743637,-0.2605917,0.30703944,-0.3517292,-0.82988954,0.13044834,0.33755583,0.14420699,0.17736222,-0.10622174,-0.004630545,0.21124345,-0.34381008,0.10644453,-0.04055021,0.61123997,0.20685361,-0.11571422,-0.3619613,-0.14091302,-0.07517566,-0.19534571,-0.008678427,0.1596583,-0.16727588,0.35859892,0.0063251075,1.0953422,0.015480489,0.17593226,0.0347245,0.6594406,0.18422523,-0.0010682368,0.015762476,0.5219769,0.34740612,0.14158393,-0.71511513,0.40644836,-0.21435307,-0.38149893,-0.06076955,-0.33976078,0.056155436,0.1647647,-0.35571113,-0.09854216,0.023741782,-0.053773265,0.5051596,-3.011098,-0.19947185,-0.0659115,0.23915316,-0.27288818,-0.013852327,0.11089912,-0.5504361,0.1094309,0.4004904,0.54111665,-0.76474583,0.45576066,0.48942274,-0.5089578,-0.2082088,-0.6692641,-0.084983855,-0.0067650583,0.48016196,0.17427762,0.16030455,-0.13653043,0.15563372,0.59408945,-0.09765454,0.043179784,0.31497702,0.37340218,0.22687949,0.584861,0.020527061,0.468526,-0.3203433,-0.081100695,0.24996042,-0.326093,0.20394418,-0.112314895,0.057808213,0.42532447,-0.25589317,-0.93904406,-0.6218599,-0.3857807,1.020501,-0.30162057,-0.36657274,0.33233613,-0.064397395,0.002548493,-0.049891744,0.4473888,-0.03403444,0.28001234,-0.60431576,0.14109947,-0.1116405,0.18825689,0.19015826,-0.15976633,-0.19397822,0.6116871,-0.003765152,0.37952647,0.36305445,0.14272928,-0.20559329,-0.3892377,0.101047434,0.5810077,0.2460625,0.077995524,-0.20737833,-0.25034302,0.069194406,-0.31956005,-0.058766775,0.49476668,0.8108912,-0.1246082,0.13088533,0.27925867,-0.1446391,0.046557374,-0.045109265,-0.24829942,0.104188174,0.0074559725,0.4263298,0.7727242,-0.33484203,0.4332452,-0.08194316,0.2819745,0.09117695,-0.3675755,0.66516656,0.3733477,-0.025922684,0.033767737,0.30439016,0.5146812,-0.50872236,0.4616118,-0.5626421,-0.06294441,0.68870795,-0.21647668,-0.4405648,0.21327117,-0.19531569,0.087435916,-0.9413528,0.5155292,-0.41307348,-0.46357375,-0.4142373,-0.1074539,-3.8734167,0.14746457,-0.2565549,-0.2466496,-0.32643348,0.027371278,0.19774781,-0.61053973,-0.33537385,0.38182923,0.2598554,0.4225585,-0.044939164,0.14636694,-0.32349476,0.12913087,-0.17784612,0.22909428,0.08253738,0.16314675,-0.012788282,-0.3660305,-0.1735351,0.030795945,-0.61948013,0.38634267,-0.49496314,-0.47727644,-0.052996937,-0.60800374,-0.40283343,0.67286235,-0.3165167,-0.068412684,-0.17503387,0.06314748,-0.35851547,0.3988303,0.08337129,0.13333584,0.0037632263,0.04814505,-0.096936226,-0.3788018,0.4621774,0.0017687212,0.48591316,0.053499162,0.024315871,-0.012178495,0.49240133,0.64009917,0.093463436,0.7916158,0.38761228,-0.13727333,0.34832293,-0.42776564,-0.19390693,-0.5610896,-0.47481245,-0.099363916,-0.26144636,-0.5652403,0.060091898,-0.29252416,-0.5810718,0.5907033,-0.023376342,0.20915325,0.06468005,0.0286067,0.29325858,-0.07098253,0.060065072,-0.06370106,-0.08933666,-0.6513035,-0.11057475,-0.6609307,-0.4821134,0.14553887,0.7151,-0.35931924,-0.04023277,-0.13426381,-0.3511234,-0.04027877,0.09224856,-0.015373798,0.3870406,0.2828609,-0.04232438,-0.6451961,0.51073927,-0.08714391,-0.20230936,-0.5459143,0.0868485,0.65579677,-0.70777154,0.58239335,0.23387194,-0.0098448545,0.045629032,-0.32166606,-0.42829543,-0.03818604,-0.08538188,0.3074105,-0.0868677,-0.7145889,0.4151305,0.30266222,-0.59415126,-0.62980944,0.2889189,-0.04365359,-0.27912572,0.04728397,0.20975359,0.052729037,-0.071320444,-0.31473443,0.1633065,-0.48878384,0.1787738,0.061034266,-0.09636153,0.5147053,0.14426252,-0.22584112,-0.7154194,-0.087401316,-0.47860485,-0.1737152,0.3025277,0.033942096,-0.0844051,0.09550386,0.04839974,0.27610877,-0.1388331,0.08443082,0.10208992,-0.41260844,0.1966564,0.45609748,0.3165299,-0.43808863,0.6264991,0.18832618,-0.06713519,0.120705016,0.012646294,0.35756618,0.10501958,0.27394354,-0.0627308,-0.11137439,0.3347863,0.8612357,0.18336354,0.6205846,0.0653573,0.004141051,0.65252876,0.033007916,0.18453479,0.2279853,-0.39330593,0.21569507,-0.031868055,0.21045627,0.48718113,0.33888465,0.44105908,0.18394811,-0.3249419,-0.019591633,0.41559216,-0.017456898,-1.170265,0.41443795,0.29578727,0.7619032,0.45362246,0.09460219,0.00034432916,0.9018412,-0.1796852,0.10212907,0.4197553,0.11868743,-0.5988674,0.80197215,-0.6970075,0.276546,-0.14633891,-0.09492059,0.15822867,0.1662382,0.25974604,0.5454267,-0.19510481,-0.059763238,-0.0915432,-0.17669551,0.005931506,-0.4281527,0.14766699,-0.28839356,-0.285742,0.59776175,0.44468397,0.2085177,-0.102148056,0.07080703,0.12833232,-0.041476708,0.25899985,-0.21509585,-0.12457183,0.1502051,-0.56430066,-0.22632188,0.72500336,-0.065458424,0.18983632,-0.29122537,-0.15369186,0.16949701,-0.34651655,-0.2659622,-0.026489882,-0.7560301,0.30350846,0.031138463,-0.41592106,0.57351,-0.2393187,0.22431153,0.20244329,0.016942222,-0.15678605,0.29546922,0.019960038,0.8307966,0.039109595,-0.30282182,-0.37854242,-0.03975747,0.26096198,-0.15417221,0.083172925,-0.4750578,-0.24391852,-0.33246204,0.5459295,-0.10458042,-0.31757826,0.025481177,-0.41088775,-0.04347368,0.5180968,-0.079725504,-0.18532106,-0.017020134,-0.23660366,-0.30548695,-0.0458126,-0.3279969,0.32414454,0.47518313,-0.13736579,-0.011496508,-0.30986023,-0.10410966,0.47037667,-0.035050727,0.43778455,-0.040704116,0.06653481,-0.19677626,-0.21297914,0.11963756,0.33297232,0.21532154,0.06609874,-0.27855113,-0.3390552,-0.17882712,0.0028079795,-0.09464935,0.2810232,0.041936047,-0.38793108,0.8182434,-0.032275096,1.199274,0.071452245,-0.24970391,0.2739026,0.4082588,0.06010407,0.12191535,-0.5174369,0.82245386,0.603482,-0.15814355,-0.0939025,-0.4760919,-0.21648256,0.27820644,-0.28989398,-0.030332688,0.044195764,-0.372317,-0.34818664,0.24553467,0.16662815,0.11474492,-0.010469217,-0.14086689,0.013535352,0.11272231,0.46183282,-0.6142846,-0.1766904,0.15174347,0.14248142,0.10291516,0.04148937,-0.35272402,0.43816233,-0.58350444,0.28084472,-0.56462026,0.08099452,-0.2936765,-0.3580289,0.08573185,0.008654787,0.422613,-0.27922532,-0.4868128,-0.0026108897,0.4086045,0.15366964,0.21273452,0.64386487,-0.2710074,0.059861716,0.07047982,0.5693257,0.91461444,-0.592533,-0.045078654,0.34262583,-0.3825789,-0.61008954,0.5133921,-0.1358691,-0.04407908,-0.1400566,-0.32590118,-0.52691895,0.19052267,0.2501687,0.009559278,0.01545697,-0.5495003,-0.39024782,0.34714493,-0.46008742,-0.34209758,-0.31316394,0.4353593,0.8578276,-0.41331732,-0.32003805,0.112169266,0.1562263,-0.20043986,-0.35860878,-0.2156817,-0.14282714,0.34604618,0.09765555,-0.25479355,-0.1510796,0.2898754,-0.3526339,0.1529852,0.07979822,-0.38930696,0.10946079,-0.013657167,-0.045938436,0.8335796,-0.29122713,-0.092869535,-0.7715522,-0.49067277,-0.8792231,-0.5381974,0.46721298,0.17661133,-0.07073469,-0.27624032,0.043702237,0.11084142,-0.18533272,-0.045641534,-0.6768944,0.3794369,2.474739e-06,0.46238235,-0.17364605,-0.9668646,0.03707216,0.28403386,-0.033855792,-0.8093797,0.52079004,-0.23147961,0.6831811,0.019379683,-0.07326882,0.010668727,-0.14399567,0.010970556,-0.43456408,-0.36855173,-0.6842021,0.22477216,126 +611,0.31596702,-0.21122333,-0.61276525,-0.24920958,-0.2910409,-0.1617813,-0.3542586,0.050331075,0.14283966,-0.16059014,-0.25213826,0.009813047,0.18350904,0.19493431,-0.1905869,-0.78452843,0.06796636,0.21709484,-0.7514541,0.44062054,-0.6447211,0.32276285,0.06642161,0.4084789,0.009093422,0.3390431,0.2819939,-0.16219245,0.09495059,-0.22036019,-0.14964063,0.2564756,-0.68094534,0.08108707,-0.23437455,-0.47373247,0.084315106,-0.35154215,-0.15665492,-0.8661989,0.19894339,-0.89121926,0.46866515,-0.021026643,-0.30162942,0.030003143,0.3218538,0.3188049,-0.37259153,-0.024389086,0.3118583,-0.2340326,-0.20774451,-0.32038435,0.12545109,-0.41698387,-0.51738614,0.039878268,-0.7170665,-0.3110654,-0.32778406,0.23078777,-0.34814185,-0.005978127,-0.12938511,0.3513489,-0.38874117,-0.07643996,0.09592569,-0.21202469,0.41536078,-0.5497904,-0.066566855,-0.055381224,0.63855517,-0.11037746,-0.21268974,0.36320767,0.25524372,0.3719568,0.19172782,-0.3460253,-0.20928138,-0.06418804,-0.06350608,0.5271194,-0.23454784,-0.39378107,-0.20612341,-0.07871075,0.48639297,0.36501437,-0.03581414,-0.12821145,0.002603939,0.0023961435,-0.219496,0.61995596,0.6289784,-0.36410114,-0.3254236,0.31835446,0.4244946,0.23560216,-0.31310213,-0.012157014,-0.0008245672,-0.6171573,-0.20527697,0.075793914,-0.0005772206,0.45295545,-0.21086492,0.16564892,0.8568389,-0.076255694,-0.019132825,0.19720048,-0.06686037,-0.0699165,-0.11932124,-0.24577919,0.24465667,-0.6593682,0.004569645,-0.36132225,0.8404451,0.05811097,-0.80956745,0.39759058,-0.5246708,0.15728475,-0.1075809,0.7222552,0.7159132,0.5303609,0.4302435,0.76575875,-0.35527393,0.1319649,0.12586607,-0.5262944,0.116590485,-0.08276485,0.12805687,-0.38631418,0.029147955,-0.043130457,0.29754236,0.12947255,0.45363337,-0.5035834,-0.16882035,0.23533733,0.6483875,-0.35193774,0.08219433,0.68471134,1.0399479,0.9548289,0.15720686,1.0827656,0.19871777,-0.17806824,0.08277336,-0.15038776,-0.8074808,0.18941452,0.23905614,0.12484495,0.13362741,-0.087290436,-0.0058915615,0.4149898,-0.4539585,-0.06867524,-0.041681293,0.3210153,-0.0034846389,-0.028396698,-0.446105,-0.25397962,0.14768948,0.124975316,0.2198549,0.23169869,-0.22583254,0.22718547,-0.046435602,0.91786,-0.09724338,-0.034836724,-0.010754689,0.6234914,0.37845197,-0.024185197,-0.098048195,0.29695243,0.47419584,-0.021289736,-0.74747425,0.12960257,-0.37037772,-0.28220874,-0.15797046,-0.37111166,-0.13644432,0.21419133,-0.37313664,-0.2876238,-0.026428662,-0.305593,0.3596045,-2.7851202,-0.38215524,-0.10510818,0.3252102,-0.14222823,-0.050510764,-0.22833346,-0.6300277,0.41160136,0.22720084,0.5291846,-0.5620775,0.5039594,0.5571445,-0.59640145,-0.2885998,-0.7760627,-0.072854504,-0.028615216,0.4141293,0.19979906,-0.1957972,-0.19207825,0.16247874,0.7686001,0.040462025,0.11734419,0.40780643,0.4503085,0.0403871,0.5445125,0.1479691,0.6435216,-0.24276592,-0.16593656,0.17036846,-0.39747217,0.1083002,-0.28939885,0.041592613,0.5527599,-0.55821884,-1.0285087,-0.5768857,-0.044701695,1.0910401,-0.3113065,-0.5338803,0.24434802,-0.21530993,0.03263993,0.2225634,0.63597953,-0.1667069,0.085342556,-0.74309355,0.13797486,-0.105961286,0.18589288,0.077192776,-0.07894259,-0.4390397,0.6989223,-0.0331913,0.6048547,0.18541762,0.24087994,-0.30864686,-0.40506536,0.24106044,0.7975312,0.23013641,-0.020273749,-0.22881944,-0.23664236,-0.1655797,-0.27655917,-0.02966945,0.6343281,0.82974917,-0.17929229,0.22398582,0.36068016,-0.082620494,0.15511702,-0.10975189,-0.26867735,-0.097168475,0.0015458739,0.50327665,0.8193178,-0.06527351,0.37993386,-0.12381573,0.43615833,-0.06633058,-0.53019875,0.7658843,0.570799,-0.09239908,0.0013637107,0.42261982,0.5380733,-0.35919374,0.5015122,-0.5623554,-0.44176924,0.69344234,-0.24515128,-0.3964372,0.17220895,-0.4251641,0.16230543,-0.7584076,0.486893,-0.4253699,-0.40189523,-0.34911746,-0.068998456,-3.5504656,0.1919927,-0.26906174,0.04562068,-0.57548845,-0.21980627,0.3381906,-0.57772744,-0.44982308,0.11601158,0.28401965,0.74540323,-0.07894777,0.1775682,-0.3212903,-0.27300897,-0.17549405,0.19223356,0.19218561,0.21416532,-0.03574904,-0.25363874,0.07538294,-0.05076358,-0.40392563,0.09479081,-0.435877,-0.4225254,0.014007256,-0.6249702,-0.39100978,0.62599415,-0.21177253,0.01262355,-0.28608334,0.1192408,-0.19299045,0.24916242,0.093973905,0.17738877,0.027880134,0.060600404,0.23865014,-0.27907833,0.48673397,-0.21677369,0.22344682,0.011417123,0.07555055,0.0590196,0.4905663,0.48009887,-0.17813359,1.0970056,0.41335732,0.008011887,0.25944245,-0.2905347,-0.51526177,-0.6825959,-0.23877364,-0.120597,-0.37459862,-0.26527622,0.11389795,-0.37661263,-0.75515217,0.6587696,0.0132906055,0.27957043,-0.07486545,0.33847746,0.29862085,-0.054492574,-0.05077571,-0.07062915,-0.10784631,-0.46769422,0.06558137,-0.8696454,-0.42341107,-0.17476276,0.8082345,-0.34735292,0.045891322,0.054196715,-0.06885112,0.056022875,0.120361015,0.13984126,0.33431002,0.51476145,0.028527351,-0.6563587,0.32262245,-0.1385996,-0.17325284,-0.6011147,0.119801484,0.66820043,-0.8101768,0.5318336,0.58839995,0.09458309,0.029644966,-0.6130345,-0.21522978,0.054361437,-0.118559726,0.48986477,0.10688266,-0.9389735,0.64870554,0.34657514,-0.39676946,-0.7267775,0.49221113,-0.030827083,-0.3818386,-0.22439297,0.36386615,0.08086598,-0.08716805,-0.1507233,0.16546609,-0.34931135,0.38197005,-0.026714463,-0.11931189,0.5812774,-0.115719035,-0.3124916,-0.64351624,-0.12763745,-0.6608134,-0.2049383,0.20223525,-0.004739275,-0.05456595,0.22073552,-0.050832376,0.47199658,-0.36129168,0.06212053,-0.04519943,-0.27401397,0.2251588,0.520962,0.39207986,-0.36237723,0.61500925,0.16686863,-0.19296248,0.03576469,0.008470214,0.46385273,-0.093329854,0.46093148,-0.24919507,-0.18991573,0.24671723,0.78748643,0.07544822,0.54769665,0.032647066,0.031990804,0.43852937,0.0690111,0.11888848,0.03624455,-0.36750966,-0.036711916,-0.14474727,0.19889353,0.5308243,0.28775135,0.25554717,0.077301234,-0.11924023,-0.11336066,0.22016475,-0.13949284,-1.0562937,0.5881194,0.28846714,0.66107017,0.44901836,0.14410819,-0.15622042,0.68240535,-0.3593041,0.020048449,0.3449798,0.039835528,-0.43358532,0.74580663,-0.58737546,0.4579905,-0.19149525,-0.032670494,0.15569662,0.06096563,0.2670224,0.81066746,-0.2563378,0.14886424,-0.0070291874,-0.18454339,0.16714375,-0.39387316,-0.007108849,-0.34951958,-0.32851523,0.80540466,0.33567497,0.26510113,-0.18609788,-0.046608586,0.065719925,-0.19173244,0.09607057,0.037216417,-0.039006885,0.19385034,-0.53966963,-0.09612624,0.54425514,0.2112251,0.09022688,-0.110659614,-0.163937,0.23323034,-0.30133548,0.07307605,-0.13412644,-0.44278902,0.091553204,-0.2579283,-0.3884506,0.64831704,-0.22327559,0.16004251,0.2814871,-0.029942205,-0.048459765,0.2259914,0.049679417,0.5245191,0.081163004,-0.2495024,-0.33542302,-0.023265362,0.20380116,-0.2918862,-0.03642363,-0.48663026,0.09055372,-0.4000233,0.5138516,-0.23934211,-0.34818664,0.105940655,-0.2351331,-0.1426523,0.5061749,-0.13412179,0.06695427,0.16513199,-0.07433059,-0.21808478,-0.21145108,-0.25312713,0.105954185,0.271258,0.052087452,-0.14425436,-0.3620262,-0.12534514,0.58434343,-0.045665964,0.42372915,0.22552162,0.26038167,-0.15569553,0.051791906,0.18222496,0.5365525,0.12716031,0.020819804,-0.36973003,-0.40625098,-0.30746713,0.12544647,-0.03779689,0.14326999,0.10247163,-0.0967358,0.8278213,0.015932592,1.0047925,0.0625668,-0.3436797,0.18094108,0.64256996,-0.14347427,0.024416158,-0.3827028,0.95345014,0.49707502,-0.29095668,-0.0674161,-0.45258617,-0.17243297,0.21333085,-0.31543767,-0.072552815,-0.1792466,-0.56597704,-0.4943133,0.22769144,0.34239313,0.07187575,-0.12744468,-0.008505939,0.038707193,0.14726909,0.41762483,-0.7969887,-0.33326226,0.17078008,0.23558196,-0.15263921,0.23510493,-0.39284128,0.36855656,-0.5548413,0.11401269,-0.49271816,0.13664255,-0.08137187,-0.42185974,0.15793766,0.056492236,0.31443718,-0.23314771,-0.36472857,-0.05158722,0.3261239,0.14417128,0.31135127,0.58561826,-0.2767846,-0.06673168,0.1191963,0.68233097,1.2208114,-0.25899476,-0.12136595,0.35519406,-0.42465127,-0.57544893,0.171187,-0.44713897,-0.078475,-0.115645535,-0.38337782,-0.3653031,0.14526388,0.08167207,0.07566155,0.01543664,-0.69282746,-0.24145493,0.29713288,-0.19253132,-0.1963087,-0.2182157,0.43961924,0.6760766,-0.32075417,-0.06025451,0.017577795,0.24059494,-0.22293058,-0.6115927,0.14113937,-0.35600752,0.42634946,0.07086308,-0.27632853,-0.057300866,0.17200352,-0.5060845,0.13132882,0.36154556,-0.26602665,0.07307875,-0.28764546,0.08540384,0.868599,-0.30737722,0.030219037,-0.45448667,-0.45206702,-0.85167783,-0.19374143,0.2524835,0.24552324,0.0071445704,-0.54548603,0.004666998,-0.060543753,-0.20660162,0.08632029,-0.5090965,0.3872584,-0.0384905,0.5410805,-0.3468284,-0.9191831,0.14300083,0.13816983,-0.30798632,-0.66974205,0.6304426,-0.13778459,0.8737768,0.15714842,-0.14185329,0.008717695,-0.39490145,0.17892735,-0.48239848,-0.09665966,-0.815232,-0.007852105,128 +612,0.32711378,-0.17392467,-0.39665398,-0.06337657,-0.022967217,-0.0823921,-0.080522075,0.6818936,0.12855601,-0.365204,-0.22322091,-0.10753683,-0.024967315,0.2913354,-0.1171991,-0.46804827,-0.12324501,0.18740933,-0.25733572,0.53616637,-0.3975957,0.046307508,-0.10447914,0.49635184,0.19522582,0.20617382,0.14689437,-0.052748088,-0.13743801,-0.024471892,-0.15065314,0.47575113,-0.4225221,0.06534168,-0.0887162,-0.3296704,-0.07992356,-0.37220642,-0.26867795,-0.72419035,0.3156622,-0.64850587,0.38129526,0.27578962,-0.39588422,0.3680659,-0.06664635,0.10681175,-0.43064055,-0.13152571,0.17164883,-0.0075922334,0.0057283547,-0.1676585,0.013293505,-0.24461347,-0.57550454,0.04298938,-0.3254481,0.052426897,-0.20144342,0.18836273,-0.3148196,-0.07770044,-0.057382066,0.54012454,-0.4797775,-0.07273115,0.1490758,-0.12007475,0.36754557,-0.6671927,-0.2020606,-0.18220828,0.11719482,-0.05657425,-0.18152533,0.21705952,0.17302679,0.46861583,-0.09357634,-0.119748004,-0.44863245,0.13687237,0.04783862,0.3703182,-0.2819055,-0.59798443,-0.053046223,-0.07162498,0.041790012,0.095981486,0.08773945,-0.16419592,-0.10030774,0.034139577,-0.15390897,0.118758515,0.4287155,-0.28626382,-0.25274703,0.34262922,0.4701618,0.15674815,-0.05517197,-0.21467453,-0.0056572417,-0.5581345,-0.11908933,-0.0016923822,-0.34862936,0.5612508,-0.1199915,0.22604987,0.5763457,-0.0430927,0.046143215,-0.018583683,0.044178393,-0.076463185,-0.44138405,-0.31269184,0.28861573,-0.19945306,0.28131902,-0.11867278,0.6905776,0.09513993,-0.78517884,0.40244707,-0.4267155,0.10483106,-0.07535673,0.5841373,0.6451636,0.35916188,0.4885036,0.72923726,-0.4628978,-0.06888067,-0.09997852,-0.22682701,0.14078936,-0.0043121898,-0.060921833,-0.5226306,-0.07708346,0.11383263,-0.092786826,0.1392375,0.35421297,-0.55604154,0.04734983,0.38715807,0.6654495,-0.28244165,-0.052022345,0.51152796,1.0679834,0.97134775,-0.009440729,0.9185098,0.17309141,-0.19322388,0.469155,-0.39136404,-0.6969987,0.2528478,0.44831997,-0.031648435,0.19026603,0.151411,-0.07622289,0.5234739,-0.3948632,0.092978664,-0.14173065,0.12474617,0.06980796,-0.024848457,-0.5070898,-0.35761255,-0.15152022,0.013026506,-0.045206625,0.18444633,-0.28984225,0.27606913,-0.04908891,1.7215947,-0.0866576,0.16367036,0.109804735,0.47568128,0.082873195,-0.12733462,-0.12354253,0.51988226,0.28869188,0.09626507,-0.6105935,0.21386287,-0.1931474,-0.56201065,-0.0888389,-0.23672508,0.0076416456,0.17001368,-0.43825692,-0.11041013,-0.09455324,-0.40319154,0.37160218,-2.8885167,-0.105035305,-0.009443915,0.2976751,-0.31752104,-0.38964087,-0.13862178,-0.41344118,0.4264929,0.4741632,0.43628687,-0.6211101,0.19964185,0.26819414,-0.45020336,-0.13195711,-0.5734721,-0.14381695,-0.072847895,0.25215024,-0.033102386,-0.034292176,-0.00662446,0.11308781,0.55416495,0.04748633,0.119856946,0.25109607,0.17140988,0.03700115,0.2579581,-0.03215107,0.42488807,-0.31239054,-0.22915928,0.23792316,-0.39451092,0.2649512,-0.1428929,0.20012997,0.41862455,-0.43168223,-0.9276559,-0.5777048,-0.3029919,1.2925632,-0.24907805,-0.33302608,0.32421336,-0.26823604,-0.09285518,-0.12350584,0.5283628,-0.14416388,-0.100618415,-0.8735736,0.120594434,-0.11435437,0.30866382,0.068708666,-0.09668606,-0.47633055,0.64418834,0.014390189,0.49777997,0.4337705,0.06676899,-0.22403596,-0.4582496,-0.021025509,0.7261642,0.30612433,0.10992824,-0.12655042,-0.15198226,-0.26545697,0.15125081,0.119184256,0.3563638,0.6454235,-0.048080884,0.13611132,0.21166667,0.080347404,-0.006690656,-0.09486871,-0.2394212,-0.11232763,0.18109272,0.52978766,0.6763381,-0.2971871,0.2329413,-0.058173116,0.3481441,-0.14406385,-0.32271004,0.4652535,0.9427127,-0.122056976,-0.13064864,0.7638845,0.5653552,-0.3512886,0.44971532,-0.6252696,-0.29260266,0.41137618,-0.17201084,-0.37103528,0.06696061,-0.31908238,0.11682867,-0.82367295,0.13700186,-0.27199286,-0.2893826,-0.7139464,-0.10751653,-3.500875,0.1615693,-0.3161344,-0.31965506,-0.04601949,-0.08639022,0.31018275,-0.760947,-0.539544,0.18414702,0.189462,0.5385622,0.017594922,-0.026682194,-0.238808,-0.26191598,-0.2018206,0.16325155,0.12058561,0.28345415,0.14714782,-0.526064,0.009197803,-0.14181183,-0.36088568,0.010954728,-0.57023185,-0.36157873,-0.2213454,-0.64878887,-0.26681128,0.5329321,-0.35247165,0.07199521,-0.1981047,-0.055389825,-0.077637635,0.34727967,0.046915695,0.18612409,-0.08857724,-0.035477284,-0.023438595,-0.22340709,0.17151679,0.08530162,0.22878239,0.3968301,-0.12444555,0.17287718,0.6054812,0.65829146,-0.19432321,0.8212275,0.68323106,-0.079952136,0.20975596,-0.25228184,-0.09611817,-0.55865884,-0.39949563,-0.035355933,-0.3752643,-0.44209436,0.065635614,-0.38365173,-0.88527447,0.5960569,-0.20135593,0.20563027,0.124749266,0.07854418,0.53947634,-0.20514724,0.07020247,-0.04963339,-0.05261163,-0.51728827,-0.29311386,-0.5878041,-0.40318587,0.10281877,0.9412355,-0.19855666,0.09581336,0.110326365,-0.18812226,-0.17180267,0.053737197,-0.07281344,0.2427462,0.32680342,0.047747757,-0.56172156,0.4030883,0.13290198,-0.110425666,-0.45870593,0.20859337,0.46843666,-0.6679193,0.64809203,0.35070947,0.023159733,-0.13082808,-0.69354725,-0.37295106,-0.14573184,-0.14437045,0.46709853,0.2824093,-0.72377676,0.36124384,0.30957252,-0.28510985,-0.7984124,0.35374004,-0.17841588,-0.40686366,-0.102171786,0.3053634,-0.11890567,0.09564531,-0.15247813,0.21456553,-0.3361136,0.19296342,0.2870629,-0.075335704,0.46857882,-0.24024035,0.13816951,-0.7334765,0.034623478,-0.55306995,-0.260894,0.3232447,0.17572409,-0.03596107,0.18379593,0.075634114,0.3982592,-0.16411725,0.07368925,0.08842276,-0.1954486,0.31056023,0.5091189,0.53896517,-0.42545033,0.5731585,0.004047848,-0.1180381,-0.36720437,-0.0038494056,0.39678267,-0.021356689,0.42571294,-0.23746252,-0.28160614,0.3233959,0.6698674,0.18934529,0.4387441,-0.09603623,-0.013808585,0.3324168,0.0151894,0.1343593,0.0062383963,-0.5129615,0.06631636,-0.28676513,0.19596127,0.39322668,0.06973374,0.30039918,-0.0581211,-0.18224971,0.10523547,0.25702253,0.048436258,-0.89534307,0.45587948,0.05351333,0.6747144,0.69747853,0.0039367126,-0.06673125,0.71748596,-0.22383785,0.07360611,0.4302247,0.0046981666,-0.6240327,0.64214855,-0.72805655,0.3511198,-0.1294038,-0.003010049,0.007326268,-0.07376849,0.37446007,0.57103497,-0.11873775,0.008026387,0.0199627,-0.2109734,0.09310805,-0.33113104,0.1722864,-0.5582174,-0.29135057,0.5620356,0.62070876,0.34021097,-0.16494091,-0.05724609,0.14429247,-0.11730746,0.06509157,-0.025480257,0.10730422,0.05562854,-0.7433379,-0.1484508,0.5254828,-0.059540134,0.13786647,-0.08940327,-0.30891138,0.121587865,-0.21101853,-0.2648427,-0.044031627,-0.54170114,-0.00203714,-0.24379799,-0.3042584,0.5924846,-0.19418576,0.32994652,0.08404394,0.11652303,-0.28300026,0.20132509,0.035178144,0.74891573,0.03394198,-0.007024641,-0.32919678,0.28301635,0.12595105,-0.13096736,-0.13623632,-0.34583002,-0.095166974,-0.48318952,0.43794447,0.101174966,-0.261975,0.0067620734,-0.08489083,-0.03472757,0.5917559,-0.026865479,-0.19538638,-0.21825865,-0.23817152,-0.3407645,-0.12085071,-0.1219573,0.35584894,0.08435486,0.12728709,-0.10344003,-0.077163056,-0.068558894,0.5342194,0.11704523,0.20183039,0.2635168,0.018756894,-0.3352378,-0.14003989,0.020036189,0.54487103,0.083696894,-0.1661224,-0.1971365,-0.4056118,-0.4176349,-0.046436694,-0.21316883,0.38031515,0.091827504,-0.14808382,0.7319473,0.15328604,1.1978368,-0.0055435346,-0.3656999,0.02196874,0.42476332,-0.012782679,-0.058924872,-0.38606152,0.9000364,0.507248,-0.09513725,-0.16103251,-0.26124072,-0.08268985,0.2137723,-0.123095356,-0.16433297,-0.07042035,-0.72369534,-0.24096102,0.20509489,0.28091604,0.21510966,-0.045379255,0.05011032,0.09531763,0.06486665,0.3192198,-0.23172766,-0.15482315,0.41006958,0.2624828,0.03408494,0.12946644,-0.32493263,0.46057084,-0.52688634,0.046030097,-0.37619516,0.07242933,-0.35234758,-0.39699873,0.2115995,0.103399,0.42080328,-0.20175608,-0.29717058,-0.18835041,0.561058,0.13293853,0.11462018,0.5464144,-0.21954629,0.049370255,-0.011374488,0.39410707,0.94314754,-0.35709718,-0.036582466,0.28946322,-0.21016544,-0.7218927,0.40456903,-0.21947476,0.030081011,-0.06562539,-0.27463955,-0.55581385,0.26691803,0.17673443,-0.14434741,0.09119542,-0.5432385,-0.16481683,0.18644656,-0.2599524,-0.178534,-0.25071508,0.17615707,0.609678,-0.35805324,-0.4652982,0.12020057,0.3028691,-0.18149455,-0.5181048,-0.002256595,-0.4389658,0.32676542,0.1487363,-0.38735977,-0.03370919,0.049832966,-0.4071562,0.05053871,0.12049459,-0.2756161,0.12069476,-0.44574034,0.0028620316,1.0356971,-0.039962392,0.1906566,-0.46058705,-0.39644077,-0.95413387,-0.28848872,0.7812197,0.046834502,0.05997541,-0.5682826,0.15589394,-0.13662194,-0.08791399,-0.22609879,-0.23382336,0.42924166,0.15906122,0.4206669,-0.06626218,-0.5470059,0.13700995,0.13373119,0.090536825,-0.49911243,0.39363,-0.018372642,1.0393176,0.0037102653,0.08701752,0.22180238,-0.41845042,-0.09372977,-0.27513325,-0.31525964,-0.57291895,0.03602106,132 +613,0.3567391,-0.22980584,-0.4052083,-0.039953332,-0.1536046,0.046286307,-0.2044421,0.34551537,0.06354611,-0.3991806,0.014044251,-0.22440861,-0.030229572,0.54824346,-0.074949786,-0.61933863,-0.0030810465,-0.039460234,-0.4430426,0.67005146,-0.39989802,0.18892878,0.029844813,0.33101338,0.24532554,0.3465428,0.29447865,-0.06583266,-0.07249462,-0.04177126,-0.1236097,0.13337313,-0.47113654,0.18707739,0.07560824,-0.27245232,0.071742296,-0.28305912,-0.65599054,-0.62646353,0.39282528,-0.8532454,0.4186386,0.12409384,-0.24705386,0.14414433,0.2246525,0.17054349,-0.36930114,-0.043662373,0.18112111,-0.11530789,0.019851528,-0.22066604,-0.27788928,-0.3966317,-0.4522977,-0.02217267,-0.5281534,-0.36421484,-0.25688818,0.12678808,-0.43014398,-0.12340816,-0.052942906,0.39585465,-0.47530985,-0.22121045,0.3386292,-0.1754558,0.3074667,-0.7817612,-0.15358719,-0.09185413,0.07342068,-0.09873327,-0.14406018,0.32685155,0.15137964,0.38987195,-0.053273696,-0.18043955,-0.16655289,-0.22651654,0.05133519,0.6110202,-0.20969719,-0.46243727,-0.19006109,0.15211558,-0.021427425,0.23171416,0.013519053,-0.5712029,-0.103279576,-0.011718319,-0.13948816,0.27452376,0.5071504,-0.33771574,-0.26549658,0.24262987,0.24502498,0.19879672,-0.082365036,-0.02891794,0.008766899,-0.5735905,-0.12167049,0.17955248,-0.07524682,0.526365,-0.07938449,0.35873845,0.60672605,-0.058899004,0.20067915,-0.14589965,0.07296836,-0.13285153,-0.2802742,0.0014970119,0.14518283,-0.40783244,0.17232282,-0.044206467,0.8053159,0.22400625,-0.5787318,0.43996194,-0.5512995,0.25180012,-0.0709448,0.5724564,0.76880866,0.11069688,0.2695448,0.831339,-0.32279727,0.06331287,-0.1080793,-0.27021214,-0.024392055,-0.17456001,0.12405172,-0.5195777,-0.04215962,0.058974497,-0.043368585,0.029848795,0.42025203,-0.47869757,-0.043823596,0.123364486,0.78148204,-0.27899683,0.15818764,0.5015092,0.9549396,0.8216039,0.07094231,1.1425067,0.3029011,-0.3059407,0.33250177,-0.16362582,-0.753335,0.22035098,0.5456777,0.50774646,0.23463066,0.051245574,-0.20853986,0.5176958,-0.40739948,0.13407217,-0.33525065,-0.0014078662,0.1904897,-0.025304519,-0.3380608,-0.26750606,-0.21155564,0.122286946,-0.061332934,0.20543417,-0.24116307,0.31910345,-0.16015036,1.7087505,-0.2027848,0.14534216,0.22402468,0.5404732,0.2078699,-0.078619294,-0.0154041145,0.26103222,0.38836145,0.12126394,-0.60880095,0.111926,-0.26058087,-0.561873,-0.101685755,-0.34015104,-0.06723661,0.056919638,-0.56297135,-0.13371183,0.0761445,-0.30065992,0.46165717,-2.7728717,-0.17373759,-0.2363678,0.19917308,-0.3561107,-0.16654713,-0.17021233,-0.24408728,0.5508355,0.4252019,0.5636827,-0.58271974,0.038325243,0.41191885,-0.38506463,-0.106804505,-0.55216116,-0.0020973498,-0.07479265,0.5093248,-0.0108555835,-0.21001849,0.1423642,0.16293629,0.5230093,-0.027283741,-0.09751853,0.2431008,0.29391903,0.024860315,0.36444414,-0.089449495,0.4280351,-0.38901263,-0.2237249,0.36110258,-0.1700049,0.36574772,-0.17129947,0.16212958,0.4140379,-0.4118838,-0.7713929,-0.5093054,-0.3553594,1.1198096,-0.29561198,-0.40584856,0.34061888,-0.32288954,0.022455981,-0.09869663,0.6301808,-0.13194765,0.11101927,-0.681404,0.21181114,-0.16350006,0.11602296,0.040472332,-0.12760809,-0.34359777,0.81518567,-0.0050535295,0.41786325,0.3911428,0.050543133,-0.19057395,-0.45889223,0.10374768,0.7098799,0.41469738,0.1443944,-0.023121087,-0.07841451,-0.03553971,-0.28479168,0.18245885,0.6250512,0.7061132,0.06042451,0.115456305,0.23968121,-0.015535951,-0.02424617,-0.089491114,-0.24712586,-0.1291321,0.24881946,0.68702656,0.59471583,-0.05257733,0.4734872,-0.11873531,0.21641278,-0.10422676,-0.4113577,0.50106966,0.84803635,-0.16942117,-0.25133803,0.48195928,0.55788255,-0.34416014,0.31229272,-0.6180262,-0.4540067,0.44074276,-0.24165143,-0.45447034,0.32774052,-0.44213355,0.07212884,-0.84783787,0.21691278,-0.2184822,-0.39679882,-0.52681804,-0.15546714,-3.839506,0.28707474,-0.5154159,-0.16516219,-0.11006513,-0.10730334,0.22300166,-0.59309804,-0.30430955,0.16311906,0.0135006625,0.45698655,-0.036947113,0.083103165,-0.1560075,-0.039624434,-0.042651158,0.14517926,-0.08275582,0.32794842,-0.13001493,-0.32056096,-0.058527414,-0.12672442,-0.42094892,0.057281893,-0.6394255,-0.43235442,-0.2589194,-0.59479004,-0.21299498,0.64885944,-0.2611479,0.019723821,-0.17585517,-0.02466413,-0.20078762,0.3654149,0.35402077,0.31543288,-0.032863524,0.0029941958,-0.18495996,-0.34645474,0.076879136,0.06070041,0.22868729,0.46890047,-0.10477312,0.2668122,0.41269335,0.4129036,-0.21338591,0.73792225,0.6010388,-0.13216224,0.28553322,-0.30154294,-0.086242676,-0.53487486,-0.49409977,0.053426113,-0.22897151,-0.57522446,-0.13389793,-0.23176393,-0.56936336,0.4546345,-0.049928103,0.22395235,0.102008544,0.15339369,0.5096563,-0.19371568,-0.13664685,0.10618806,-0.1449231,-0.5999064,-0.3347507,-0.5478293,-0.6059658,0.17084011,0.8642901,-0.106219955,-0.1785406,0.100925244,-0.3834595,-0.15388587,-0.014006507,0.12866262,0.15665418,0.15787853,-0.039078675,-0.72070724,0.5498397,-0.065405674,-0.17927636,-0.5081215,0.2091133,0.49313864,-0.62750995,0.59231627,0.20720783,0.23922573,-0.18044265,-0.41280362,-0.31312183,0.1282611,-0.22037734,0.24223955,0.10831761,-0.72413296,0.38023192,0.32726017,-0.2570554,-0.70415604,0.39443964,-0.013376921,-0.33643156,0.058676764,0.3110312,-0.006914533,0.011243839,-0.13334516,0.20480527,-0.336802,0.29351807,0.18805386,0.0378407,0.34570086,-0.08175098,-0.25461575,-0.37247482,0.19117199,-0.43187243,-0.2536082,0.38756686,-0.03144086,0.043361075,0.013804702,-0.11340471,0.38862073,-0.08511435,0.21094848,-0.04994472,-0.35987183,0.389598,0.46890014,0.41419488,-0.44200423,0.72426003,-0.07899253,0.07145668,0.06589531,0.2830807,0.46528238,0.23072416,0.36241537,-0.2896468,-0.13311695,0.19232222,1.0458367,0.1355159,0.4457782,0.10323693,0.02719882,0.23528817,0.06298025,-0.027095983,0.048171148,-0.42823368,-0.09949798,-0.078642674,0.30663252,0.4165541,0.039323475,0.3393035,-0.17540345,-0.40164405,0.16245078,0.22241369,0.15337868,-1.0145557,0.42646343,0.14086029,0.6078042,0.35654405,-0.08849311,-0.088909335,0.65027606,-0.10611414,0.08317422,0.15516615,-0.27939636,-0.64637035,0.64328945,-0.6682982,0.49453858,-0.09914069,-0.070354946,0.05751913,0.1823306,0.3433359,0.59207445,-0.13774422,-0.09059943,-0.022925872,-0.3889467,-0.086605825,-0.40766937,0.11356202,-0.40929112,-0.58038497,0.48387557,0.5561647,0.1521464,-0.12541333,-0.03163721,0.020626279,-0.07447633,0.26297078,-0.062382154,0.11385903,-0.079647645,-0.764576,-0.28899005,0.49289015,-0.09200808,0.20990938,0.004579294,0.029397447,0.22190131,-0.16047503,-0.045831807,-0.12434246,-0.6144486,0.2988861,-0.48258835,-0.6161513,0.4259028,-0.35889533,0.29234517,0.26063687,0.092246294,-0.34211084,0.5064293,0.019449335,1.0174841,-0.34200928,-0.24790327,-0.4283849,-0.052850842,0.19534792,-0.20442802,-0.1777977,-0.2965133,-0.00018555384,-0.6923316,0.51965934,-0.06346116,-0.2771465,0.19927678,-0.285173,-0.062664114,0.56992126,-0.06261596,-0.23727319,-0.17419471,-0.18166113,-0.3214168,-0.15767598,-0.18964349,0.27229136,0.25338835,0.16293192,-0.15365356,-0.17372265,-0.057804685,0.37640822,-0.09252152,0.2844795,0.29899856,0.3306452,-0.17355354,0.0018387208,0.41274312,0.5774821,0.24607784,0.09935909,-0.15493752,-0.39543745,-0.34110922,0.017421437,-0.14522551,0.4024573,0.23296975,-0.54446924,0.71814317,0.043501653,1.0398437,0.0052138614,-0.24593657,0.11434828,0.41126913,-0.009822651,-0.037796583,-0.15438938,0.8535632,0.73143685,0.06345984,-0.14365038,-0.22236195,-0.14955394,0.40035307,-0.2597903,-0.008055052,0.05157487,-0.5899073,-0.30616775,0.16354793,0.20322336,0.13970807,-0.11169502,-0.10694778,0.031135837,-0.012311252,0.1705339,-0.40325418,-0.06497299,0.28890374,0.19615339,-0.11318685,0.16235454,-0.44036546,0.46017477,-0.6188525,0.1695017,-0.42083994,0.13932434,-0.107927956,-0.13088922,0.2305584,-0.08139488,0.54851204,-0.26815888,-0.17543295,-0.13223729,0.574548,0.16628188,0.15796775,0.61748445,-0.17114732,0.12702996,0.0064161145,0.5898424,1.0522965,-0.41076946,-0.08187051,0.19173525,-0.3304446,-0.7592395,0.38916954,-0.20643902,0.09140341,-0.11073612,-0.30667055,-0.5598767,0.16000761,0.29861367,0.007183075,-0.1499045,-0.48793137,-0.31565684,0.20356622,-0.15834929,-0.30541185,-0.57124865,0.14871944,0.52533305,-0.1692353,-0.21411473,0.2214466,0.18858913,-0.22670975,-0.50783944,0.22806285,-0.19451894,0.1895314,0.14737241,-0.3247884,-0.09150176,0.06672346,-0.4378328,0.20324826,0.00014989651,-0.47159708,0.058248468,-0.0803349,-0.03888933,1.1669172,-0.2536423,-0.04073811,-0.6858459,-0.56929785,-0.81904227,-0.48572943,0.65906894,0.07974897,0.16172685,-0.55689645,-0.090395816,0.06784288,0.16263543,-0.19020359,-0.37929037,0.3316023,-0.018107213,0.43200392,-0.16590473,-0.5988063,0.20602956,0.003549984,0.038899377,-0.515762,0.3338925,-0.12274405,0.7679246,0.023222394,-0.08528114,0.3516743,-0.32987884,0.022208951,-0.19889766,-0.38118377,-0.8471388,0.10754411,139 +614,0.34470573,-0.21005327,-0.43554005,-0.00033728665,-0.19975582,-0.025831204,-0.42454985,0.27501252,0.19109303,-0.52493286,-0.29394895,-0.10000776,0.00023186207,0.20247872,-0.12926494,-0.3101732,-0.013015289,0.2533806,-0.4063894,0.59305394,-0.3936965,0.12955178,0.1210765,0.64269537,0.2210398,0.12249382,0.08447458,0.045332786,-0.36183712,-0.5979043,0.06832309,0.043007374,-0.85177904,0.32957843,-0.39492887,-0.61226535,-0.17700149,-0.55095685,-0.32240105,-0.83147424,0.12216977,-1.0647267,0.5766416,-0.013474729,-0.35240057,0.30676806,0.19709979,0.3818832,0.011954033,0.15412137,0.23033431,-0.4033871,-0.20588829,-0.24498908,-0.0939081,-0.23616081,-0.38804203,0.016331188,-0.400362,0.041439634,-0.41068393,0.22371681,-0.21720126,-0.021082897,-0.1816097,0.31013197,-0.4482876,-0.019989196,0.011996549,0.041622683,0.47649494,-0.56395054,-0.342394,-0.1792678,0.21700683,-0.19303784,-0.32750437,0.26324368,0.20688185,0.4734343,-0.038830582,-0.14658213,-0.19857353,0.051261965,0.18627106,0.45536762,-0.18955906,-0.22998737,-0.22805776,-0.17745543,0.5535058,0.40645683,0.03720834,-0.26453993,-0.0386861,-0.09974931,-0.20911972,0.24764384,0.46426412,-0.15467095,-0.13672285,0.30662367,0.42847708,0.32194597,-0.15054363,-0.020371033,0.011870171,-0.3835904,-0.15572757,0.091791466,-0.168062,0.58262354,-0.052750684,0.32081982,0.4657386,-0.23374936,0.07869895,0.26104996,0.12672445,-0.07110041,-0.21419975,-0.6021742,0.38583213,-0.56713206,0.32439083,-0.42186868,0.6952835,-0.07628438,-0.7646844,0.26125258,-0.5828046,-0.0024273086,-0.11434893,0.68943727,0.79110676,0.48331797,0.44314477,0.6499615,-0.301051,-0.07645542,-0.25439316,-0.008551557,-0.05847949,-0.25643703,0.06480295,-0.46069872,-0.28796828,-0.08367289,-0.096294254,0.021669094,0.6438474,-0.40757605,-0.18176214,0.16410774,0.7125539,-0.24170639,0.03416442,1.0312421,1.3056314,1.0617417,0.20485057,1.057903,0.23743118,-0.19424877,-0.22261,0.074719466,-0.5260158,0.38369462,0.2917062,0.15550368,0.13689007,0.24405292,-0.09324099,0.3472177,-0.6184989,-0.10040515,-0.15652965,0.1607948,-0.13775992,0.06621192,-0.41743162,-0.33612964,0.035696257,-0.030275045,-0.011426302,0.27860123,-0.3494177,0.46913293,0.04682507,1.1663086,-0.2923935,-0.08922955,-0.1285666,0.53859913,0.019314848,-0.24316886,0.007411645,0.15354005,0.3183786,-0.113581546,-0.54743284,0.04620262,-0.14725587,-0.4382521,-0.16848844,-0.21619973,-0.2237188,-0.03964833,-0.31445006,-0.23602684,-0.031412676,-0.41415405,0.2854176,-2.4719813,-0.20264207,-0.09126699,0.29948524,-0.25229707,-0.29553396,-0.030604033,-0.3762481,0.7590083,0.29752538,0.40743777,-0.5511407,0.43443808,0.4767644,-0.38833788,-0.2244468,-0.7976046,-0.10458484,-0.06015271,0.30834186,-0.022345586,-0.19632238,-0.034036424,0.030760344,0.62464106,0.02673811,0.23770553,0.27648118,0.279664,-0.08626053,0.3604539,0.16720396,0.49404314,-0.36309668,-0.29204392,0.35239756,-0.41190845,0.32006806,-0.19615465,0.09761923,0.5095723,-0.4306133,-0.7514974,-0.8614816,-0.46448934,1.2642443,-0.20231496,-0.7625717,0.12215508,-0.25110298,-0.28225186,0.08243193,0.5828105,-0.10023124,0.1242382,-0.83699983,-0.15014718,-0.108113974,0.2981154,-0.048435643,0.19450822,-0.6251582,0.71757704,-0.10519964,0.30779007,0.34360343,0.36557287,-0.1798928,-0.35396558,0.13027622,0.97931343,0.3979208,0.19277486,-0.3739511,-0.20896967,-0.29213288,-0.013523588,0.20565261,0.59829116,0.62327933,-0.035649758,0.17069882,0.2291283,-0.16148263,-0.05153048,-0.2481185,-0.38417542,-0.24228168,0.12917854,0.8189299,0.58571935,0.24559769,0.55477643,-0.07524727,0.32491505,-0.24036685,-0.48649356,0.5059125,0.8083675,-0.16729546,-0.09861212,0.6920526,0.5368017,-0.19783928,0.45620066,-0.80213004,-0.49111828,0.26062357,0.09436901,-0.50605494,0.19552635,-0.33881024,0.23807192,-0.8173444,0.34763372,-0.46704406,-0.6793548,-0.68595606,-0.13907672,-1.9889438,0.27468154,-0.17677027,-0.3737524,-0.21377318,-0.57578737,0.3621179,-0.5214641,-0.5679437,0.09729101,-0.01727346,0.76933825,-0.11909901,0.012022587,-0.2597297,-0.39522508,-0.31649926,0.033117812,0.24564335,0.27349195,-0.1393149,-0.33501923,0.09046291,-0.059816845,-0.30166003,-0.17734617,-0.5985862,-0.6040961,-0.08107794,-0.36485228,-0.25039938,0.37475055,-0.35496905,0.048813447,-0.29758126,-0.018473767,0.029107746,0.3547921,0.14026232,0.32054928,0.13564125,-0.07693231,0.009719698,-0.28032798,0.19932279,0.15574875,-0.07406525,0.39004105,-0.30131453,0.39897096,0.29195184,0.6085405,-0.17835408,0.90091574,0.4519665,-0.14241785,0.25290215,-0.3687155,-0.479598,-0.5663019,-0.23882915,0.024851276,-0.41785723,-0.38476837,0.03514444,-0.20844923,-1.0575781,0.67913663,0.12493988,0.16677539,-0.0454223,0.34859556,0.33455414,-0.21136108,-0.19211848,-0.015584066,-0.0133005865,-0.59994847,-0.44932115,-0.7135074,-0.39943486,-0.35213786,0.8648666,-0.035229612,0.16227348,0.36915654,-0.16769937,0.110547096,0.1617122,-0.07270218,-0.24489154,0.50217795,0.051831678,-0.6573852,0.33878538,0.11134954,-0.14068055,-0.6646413,0.4793148,0.9002294,-0.5666355,0.43982854,0.5763347,0.16310376,-0.3993263,-0.5973741,-0.16844378,-0.107415386,-0.26050112,0.4665395,0.2253697,-0.880247,0.46979487,0.3587742,-0.11025321,-0.76668096,0.5617198,-0.0462114,-0.3291682,-0.05844839,0.29837024,-0.0323647,0.124920875,-0.12670057,0.27646318,-0.28713983,0.4256987,0.06701061,-0.1655754,0.24810351,-0.33448073,-0.09865956,-0.6320573,0.24056648,-0.56911457,-0.438381,0.12882857,0.018780887,-0.055423997,0.52846473,0.12574606,0.39902037,-0.22111487,0.04433718,-0.34917748,-0.27557063,0.25731197,0.6167091,0.53737664,-0.23499726,0.67235124,0.14612852,-0.29218787,-0.3366223,-0.027327977,0.39473107,-0.025758794,0.44121015,-0.18712433,-0.19859006,0.13626646,0.65342766,0.22843622,0.51861346,-0.06994213,0.06023384,0.22465636,0.085144706,0.42718437,-0.0281384,-0.55711406,-0.02825854,-0.41155073,0.06288583,0.35304147,0.14423205,0.24692465,0.027624566,-0.10039585,0.12132274,-0.0018445116,-0.09077234,-1.3319904,0.5934894,0.17407434,0.7737594,0.57492524,-0.09471735,0.1079849,0.7962208,-0.36820194,-0.11539722,0.28019905,0.31296209,-0.3445563,0.62030035,-0.88745534,0.38244268,-0.08926973,0.03512856,-0.08086015,-0.1091355,0.48781115,0.8302998,-0.23120576,0.19625694,-0.094666354,-0.26143053,-0.044965543,-0.2910237,0.24102235,-0.5920591,-0.38059077,0.8926106,0.35188407,0.485809,-0.2801607,0.030995773,0.024545716,-0.14189075,0.17191073,0.19279647,0.093198664,0.0150576,-0.5819163,0.042833943,0.5131679,-0.19323072,0.07970001,0.1059282,-0.15473253,0.15134308,-0.012752586,-0.12163023,0.07298189,-0.70130485,-0.01904778,-0.55311644,-0.25543553,0.2922486,-0.30319643,0.09706618,0.17201519,0.079072386,0.06993008,0.27086592,0.3374508,0.626894,0.24692465,-0.17110182,-0.20872465,0.25123957,0.24718349,-0.12884685,-0.08321603,-0.1311954,-0.0562829,-0.6858403,0.39180094,-0.21497084,-0.26053876,0.36372378,0.010181264,0.016109165,0.51530546,0.05887655,-0.10884703,0.24575089,-0.349908,-0.37765497,-0.18151408,-0.036849108,0.26757556,0.11337604,-0.10621834,-0.069377735,-0.09626227,-0.18936814,0.46757552,0.014875008,0.4659979,0.34848875,0.05623237,-0.3669151,-0.04597131,-0.07943292,0.6252557,-0.10129058,-0.06490943,-0.2522264,-0.3161574,-0.33645806,0.3299576,-0.1282027,0.18141103,0.06960832,-0.18857911,0.9677537,0.02633668,1.0002824,-0.041720983,-0.37676093,0.16310018,0.4077788,-0.20445158,-0.15230547,-0.43689677,0.84371597,0.38403708,-0.06959532,0.0005416916,-0.43825153,-0.15163252,0.28429353,-0.18170752,-0.20952453,-0.11500895,-0.6726821,-0.14227279,0.211426,0.46411002,-0.10100655,-0.001057955,0.17432943,0.47141662,0.07988335,0.39679337,-0.47561428,-0.15611762,0.48417032,0.30832526,-0.1827951,0.027303966,-0.35095003,0.31555808,-0.6228769,-0.020970877,-0.27147108,-0.010886701,-0.23901749,-0.39680678,0.19599618,0.16849175,0.38962248,-0.26680642,-0.18246332,-0.18063821,0.4173661,0.13432324,0.23014203,0.43276235,-0.17272322,0.11044161,0.009937594,0.27730832,1.1713977,-0.31949085,0.07304906,0.2444995,-0.35359985,-0.48711225,0.37011716,-0.44971514,0.16627121,0.17070359,-0.36788633,-0.49203894,0.15672973,0.12633194,-0.01946982,0.06910556,-0.6496582,0.028048672,0.25629857,-0.045147315,-0.14098042,-0.29378334,0.1259997,0.46050218,-0.0060663405,-0.36287016,-0.059899747,0.48780045,-0.319327,-0.38368207,0.07001615,-0.3754069,0.2929629,-0.14726368,-0.41697317,-0.024112765,0.018114783,-0.46745792,-0.14725138,0.13444422,-0.30800718,0.09896671,-0.36045045,0.2769092,0.73814523,-0.20275585,0.11582826,-0.46813008,-0.5427673,-0.62577736,-0.20135865,0.14786993,0.39907682,0.042576093,-0.46929204,0.13330871,-0.11739215,-0.10695663,-0.07749633,-0.4722295,0.43056944,0.22702225,0.49145985,-0.020810591,-0.74762756,0.2796225,-0.018728562,-0.11040829,-0.3815932,0.526081,0.016750386,0.7162632,0.0888567,0.04442358,-0.028957019,-0.6180257,0.12135896,-0.07624523,-0.11401301,-0.7535393,-0.05668052,140 +615,0.23484136,-0.142541,-0.4932339,-0.10316086,-0.20242733,-0.13550074,-0.19450215,0.30686787,0.35114336,-0.082691275,-0.28790382,-0.15593521,0.1936055,0.3970948,-0.0014881629,-0.5578693,-0.17315406,0.19161122,-0.77789146,0.5500424,-0.5174099,0.18135937,0.06412148,0.3457491,0.17647591,0.40864804,0.1807861,-0.1434822,-0.12473266,0.015931942,-0.09698987,0.29050896,-0.6236359,-0.0060302294,-0.21931103,-0.20207712,0.08235387,-0.5392058,-0.34787962,-0.61287963,0.14742611,-0.8299507,0.39696124,0.003456455,0.014665772,0.06983652,0.1864349,0.37174895,-0.36840153,-0.19777025,0.29390758,-0.1392182,-0.08346582,-0.23908274,0.016551256,-0.116085164,-0.47444484,-0.037400343,-0.42981642,-0.2544977,-0.24969107,0.02286038,-0.35672453,-0.032493465,-0.087689705,0.41279718,-0.34638363,0.11652207,0.23887938,-0.18050715,0.20346037,-0.46328494,0.07103176,-0.09088524,0.540098,-0.11375076,-0.15577617,0.42336866,0.31662676,0.23688191,0.13439885,-0.18820311,-0.28557703,-0.07514022,0.24530461,0.45311415,-0.17698835,-0.3916351,-0.13356328,0.12832187,-0.043219764,0.24229392,0.05510425,-0.2783262,-0.09871989,-0.07033073,-0.08780773,0.46946743,0.38287324,-0.10268081,-0.389544,0.26152223,0.48410457,0.43414256,-0.2657591,-0.21582478,0.011869109,-0.58430564,-0.18350483,0.03312269,-0.15582466,0.49165195,-0.17304857,0.17783286,0.7182623,-0.048848893,-0.004841839,0.07282216,-0.0026705195,-0.13859046,-0.33913854,0.08088689,0.17052348,-0.57438886,0.15600923,-0.06922107,0.6029692,0.23570047,-0.7301045,0.4853502,-0.6545048,0.23743747,-0.088459305,0.45105842,0.6493753,0.16947968,0.41869628,0.66469234,-0.28936175,0.17753704,0.077053435,-0.5643377,0.117665716,-0.20572203,0.172921,-0.56030667,-0.11786382,-0.12737663,0.1377373,0.22232723,0.0453293,-0.39061758,-0.021782462,0.32690367,0.80749345,-0.24586228,-0.16405883,0.63088834,1.1073526,0.91621244,-0.0009332712,1.2443182,0.12227312,-0.32121882,0.3145069,-0.34087032,-0.8534102,0.13717777,0.31595093,-0.27921516,0.13574544,-0.13083425,0.018728254,0.24398838,-0.39230874,0.09003411,0.07836839,0.19463846,0.15001917,-0.059752353,-0.3695346,-0.32265252,-0.20414597,-0.11750854,0.005369223,0.21301009,-0.079923905,0.23449278,-0.1439205,1.3976896,-0.011258974,0.043075103,0.06491996,0.56430703,0.2973032,-0.11723692,-0.24708249,0.41341904,0.38371488,0.058025215,-0.50702196,0.33283073,-0.3294,-0.29157636,-0.024938826,-0.4297525,-0.06696303,0.24838416,-0.38520378,0.03229712,-0.06341391,-0.32173288,0.4874425,-3.1806912,-0.22245255,-0.036513664,0.1730575,-0.2190006,-0.16992514,-0.16827653,-0.55615085,0.16709556,0.1642069,0.6361115,-0.6181278,0.41311246,0.39591628,-0.61422545,-0.17963961,-0.65772635,-0.19849727,0.08616162,0.31039912,0.04724856,0.1801103,-0.009585039,0.19679591,0.56076854,0.13903134,0.09530508,0.43088758,0.32130164,0.090173945,0.6922839,-0.12187242,0.63672626,-0.26895568,-0.1430854,0.24485806,-0.23764037,0.40887567,-0.1414403,0.093214,0.6665265,-0.40741345,-0.9969851,-0.43030497,-0.33761638,1.0711673,-0.31449425,-0.28974578,0.3013292,-0.35780165,-0.04989542,0.083886296,0.5623006,0.0067294193,0.018932197,-0.64158666,0.025466982,-0.039906796,0.12807432,0.0900421,-0.17889181,-0.38050157,0.66844815,0.09988098,0.5414779,0.31348404,0.22449926,-0.14503701,-0.34841606,0.10391504,0.658197,0.19092768,-0.0077000847,-0.124061264,-0.22671846,-0.24539314,-0.18187381,0.004408057,0.5876305,0.52590245,-0.2053872,0.28458783,0.34496033,0.11431898,0.06606421,-0.09553333,-0.21300077,-0.0062600304,-0.025080983,0.3598474,0.94152516,-0.14669418,0.43726224,-0.0055729495,0.17264143,0.011341801,-0.454727,0.64987415,0.48267823,-0.10705146,0.03796386,0.32368094,0.5885735,-0.37310207,0.4411208,-0.40573853,-0.16830063,0.583449,-0.1968814,-0.36208504,0.20478223,-0.2461115,0.043152608,-0.7015886,0.16535796,-0.32999736,-0.34918207,-0.2513785,0.070952386,-3.7312746,0.14025982,-0.13681538,-0.15310313,-0.38975617,0.008753731,0.14404756,-0.58793664,-0.6581637,0.15901086,0.14830531,0.62290025,-0.1886398,0.06349904,-0.19710132,-0.1539571,-0.18893005,0.24581382,0.17135477,0.31813383,-0.16208313,-0.42253467,-0.22789638,-0.14102633,-0.49840868,0.28322098,-0.4910998,-0.26028708,-0.014101102,-0.58923113,-0.3232005,0.5583939,-0.4333362,-0.068999305,-0.2467416,0.041996837,-0.27477482,0.22760025,0.17970496,0.2362201,0.04910457,0.052386455,0.036554124,-0.28033766,0.5094254,-0.0564127,0.3999702,0.09832323,0.24498004,0.16795936,0.41666377,0.63158786,-0.23810403,1.0589262,0.47263145,-0.06297079,0.24733008,-0.30880868,-0.26118752,-0.47119528,-0.23704712,-0.10366358,-0.32873565,-0.53468233,-0.014564001,-0.33045018,-0.71914643,0.5743021,0.11991571,0.30950814,0.059801176,-0.055561997,0.3734409,-0.18676624,0.12110332,0.00918238,-0.09461145,-0.60694957,-0.054964285,-0.6285552,-0.5891117,0.0940292,0.5303292,-0.39341784,0.020662097,-0.099410824,-0.3854189,0.0080833025,0.19157945,-0.009750564,0.3914184,0.4748841,-0.008626197,-0.55024916,0.4649684,-0.08067067,-0.046702437,-0.48954755,0.094186984,0.547111,-0.7034123,0.7314685,0.30128345,-0.09466909,-0.10403991,-0.42650324,-0.35466626,-0.17642826,-0.13281365,0.27686337,0.14052847,-0.8712622,0.29890016,0.14635715,-0.531303,-0.68932813,0.44249213,0.004737144,-0.21632862,-0.11788174,0.22892745,-0.011481037,-0.01604569,-0.22808442,0.18773769,-0.29179254,0.23618762,0.1474798,-0.03675162,0.15480089,0.076424435,-0.15458092,-0.60280997,0.012160563,-0.33562347,-0.18276317,0.46074194,0.031776454,0.024971914,-0.06448045,0.19224635,0.2019566,-0.30101413,0.13119999,0.06601407,-0.40218416,0.17671312,0.44112617,0.44886014,-0.4505993,0.49309224,0.12024841,-0.28512856,0.3287019,0.04808495,0.3019508,-0.05339801,0.32261026,0.024515422,-0.20187494,0.22028166,0.76270527,0.13312492,0.31061494,-0.026904674,0.06415493,0.3775539,-0.08850371,0.09294736,0.03557717,-0.53221065,0.12990847,-0.28372085,0.22400148,0.45862564,0.2973704,0.21598537,0.18289134,-0.3725309,-0.07854183,0.2879624,0.08946191,-1.0951664,0.47957185,0.193923,0.92483914,0.54559314,0.049697474,-0.117357746,0.69877183,-0.18082666,0.1513759,0.44837093,-0.15057895,-0.5698113,0.7436274,-0.62597984,0.5308,0.019590357,-0.15274002,0.18521729,-0.0026986324,0.22845456,0.67835337,-0.35545218,-0.022351779,0.12592384,-0.18402028,-0.011608188,-0.39152378,-0.09966282,-0.40872988,-0.31682432,0.6326058,0.48449567,0.29826134,-0.21328765,0.0067365286,-0.041928954,-0.13355063,0.18779024,0.020153578,0.035724785,0.20334165,-0.6768093,-0.1245125,0.55214757,-0.2114672,0.19584809,-0.2805118,-0.17651074,0.17410873,-0.36677817,-0.06369659,-0.13785896,-0.7029222,0.10502209,-0.24584875,-0.41966587,0.55223584,-0.20665881,0.26628783,0.1833798,-0.008248334,-0.07533541,0.6572928,0.0556866,0.81119466,-0.040451296,-0.19267955,-0.34317118,0.15067567,0.19192153,-0.14806582,0.021202229,-0.50090086,-0.062948175,-0.32222497,0.6512857,-0.0071146945,-0.39826006,-5.9072787e-05,-0.15545636,0.07818528,0.606973,-0.08390787,-0.16844162,-0.20117474,-0.08724736,-0.4404459,0.014591928,-0.24646582,0.244661,0.52524096,0.041408762,-0.17976657,-0.28486684,-0.14056098,0.36223343,-0.072121024,0.56837386,0.068922214,0.076528296,-0.12879968,-0.042454675,0.3718233,0.5013482,0.14473943,-0.091999546,-0.42171943,-0.16229509,-0.38025528,0.17668149,-0.060579482,0.36566654,0.018145453,-0.17040911,0.5932659,-0.068081245,1.1459296,0.16048335,-0.3171055,0.22027174,0.41324666,-0.1036919,-0.0974718,-0.35242578,0.77640164,0.39292806,-0.03316405,-0.106736355,-0.44967216,0.0069039143,0.17757957,-0.15115575,-0.006725366,0.10030666,-0.37023395,-0.2779668,0.1566519,0.26096642,0.35676888,-0.11518152,-0.065080725,0.117309555,0.13535559,0.2545047,-0.51515007,-0.40333003,0.190224,0.27671194,-0.09893702,0.15903364,-0.3047673,0.47261035,-0.38878706,0.1976555,-0.48357865,0.19165704,-0.36133358,-0.35432306,0.05885094,-0.04490392,0.41570508,-0.23461816,-0.31205717,-0.22457257,0.43896407,0.08946947,0.21477509,0.60660183,-0.2536805,-0.00093324366,0.06502974,0.5963191,0.8120862,-0.4383736,-0.1371807,0.31512004,-0.27809814,-0.48435572,0.36798865,-0.2983754,-0.023875475,-0.074214876,-0.38008034,-0.56114566,0.12759815,-0.007424749,0.12582162,-0.01015556,-0.60159695,-0.07254584,0.13363953,-0.21585353,-0.2629737,-0.39625052,0.18606026,0.7783,-0.31290784,-0.2501701,0.2024867,-0.023856644,-0.14554755,-0.36386377,-0.09231731,-0.2667781,0.21465707,0.027639134,-0.38238966,-0.11390204,0.22262564,-0.39578617,0.27637106,0.06615817,-0.27063087,0.1440168,-0.0056318734,-0.10548111,1.2261376,-0.4155575,-0.007332004,-0.4475575,-0.56798846,-0.70191,-0.36324105,0.30903578,0.07635817,-0.03716286,-0.35407177,0.034758292,-0.0038257563,-0.2316354,-0.0657755,-0.4957221,0.3780786,0.073023416,0.35246122,-0.33299458,-0.83764756,0.17484848,0.14379142,-0.12059657,-0.7385638,0.51857334,-0.04306615,0.76066273,0.017969957,-0.036329407,0.15685727,-0.06358134,-0.06836478,-0.41070524,-0.018868145,-0.6097615,0.14774773,141 +616,0.7351264,-0.33197418,-0.85132366,-0.13948704,-0.26447856,-0.16950886,-0.30533206,0.6950955,0.3010975,-0.6473375,-0.095851,-0.11517306,-0.0866605,0.39683995,-0.4051246,-0.80916655,0.0063876314,-0.0014484662,-0.4873166,0.4469131,-0.5222732,0.432545,-0.060236115,0.56598157,0.4437452,0.23549601,0.015141606,0.084707335,-0.18449743,-0.14805013,0.15766612,0.15435989,-0.67749435,-0.13096507,-0.28346628,-0.7660477,-0.17923898,-0.47025797,-0.4418942,-0.99101025,0.4835548,-1.0242445,0.65777177,0.062865004,-0.37782124,0.08889119,0.2488971,0.46811956,-0.25123423,0.027040247,0.04635485,-0.02454764,0.0066821715,-0.0317981,-0.4290923,-0.40433672,-0.6960849,0.024208695,-0.52839905,-0.06957965,-0.18274024,0.1386264,-0.39209735,0.15629734,-0.019545753,0.5179319,-0.43463644,-0.15130718,0.41284275,0.08732242,0.36447063,-0.74188143,-0.37230974,-0.21325707,0.29141247,-0.2831168,-0.26537523,0.36609858,0.30834213,0.5035148,-0.07802134,-0.21630344,-0.38406438,0.10170047,0.018460186,0.35989395,-0.32509768,-0.48667654,-0.3391092,-0.08078126,0.5981549,0.48158422,0.43134314,-0.16463925,0.0030396213,0.1763156,-0.34697917,0.68672824,0.5876861,-0.30801788,-0.03252885,0.15537748,0.44827646,0.3190128,-0.2870919,0.0672115,0.09582089,-0.73333067,-0.21030608,0.07550807,-0.10251513,0.59366935,-0.13443509,0.29220796,0.6168035,-0.43721154,0.0848862,0.1872223,-0.020846635,-0.26923817,-0.45102835,-0.44024006,0.3298949,-0.56665313,0.21139285,-0.4284215,0.768736,0.23981735,-0.7151225,0.25683722,-0.7839137,0.23736858,-0.17007047,0.39442205,0.77755475,0.45916107,0.26478767,0.6926955,-0.45904133,-0.02072398,0.012174928,-0.19729735,0.13771512,-0.36139706,0.04430183,-0.41728646,-0.09207989,-0.07420762,-0.09631973,0.40561864,0.7538144,-0.5595003,-0.27242166,0.0004662046,0.78547436,-0.2592203,-0.06896544,0.96136546,1.0173252,1.0748773,0.08332141,1.3259645,0.37747177,-0.19237182,0.18607102,-0.012282986,-0.8296906,0.45314553,0.25513762,-1.0219055,0.5244308,0.010587179,-0.18361138,0.53958166,-0.28965896,0.09352292,0.006659659,0.19108495,0.03987565,-0.32644013,-0.3714082,-0.27608475,-0.1133693,-0.06667379,0.11451706,0.3059653,-0.16645153,0.4607517,-0.03954435,1.4037197,-0.074976094,0.057931546,0.020296812,0.46489257,0.29848087,-0.21662052,0.0028883035,-0.031060457,0.33718106,0.23911381,-0.6905346,-0.014694909,-0.29063112,-0.4218639,-0.2412997,-0.37025207,-0.24910656,-0.20554803,-0.70405763,-0.11118043,-0.28051618,-0.065964,0.33693507,-2.1969187,-0.44289568,-0.22934826,0.37100518,-0.26352993,-0.5888642,-0.16289352,-0.50930244,0.65524584,0.25585124,0.470202,-0.6973658,0.48101684,0.5529206,-0.5391818,0.04614554,-0.70794976,-0.3015419,0.041441258,0.07752542,-0.114434,-0.23933871,0.19201246,0.275826,0.41834685,-0.023236949,-0.052291457,0.100575045,0.6090508,-0.20625576,0.76831234,-0.078425184,0.5655469,-0.546138,-0.2904971,0.43289456,-0.56156486,0.10081458,-0.016144,0.15492591,0.61815,-0.64297205,-1.08159,-0.66778433,-0.04623182,1.0527174,-0.049141984,-0.5178309,0.24299297,-0.5579582,-0.27342066,-0.1511692,0.5629324,-0.057558205,0.11727465,-1.0300425,-0.045977972,-0.23080245,-0.044697206,-0.013832297,0.055760972,-0.34736457,0.69817555,-0.02186505,0.46187437,0.422051,0.1729189,-0.424233,-0.603801,0.14798278,0.93348736,0.46038422,0.24987791,-0.42710117,-0.08876231,-0.61820483,0.1257627,0.12130899,0.4070263,0.795503,-0.03147445,0.18096964,0.35359114,0.01245903,0.12593836,-0.17829067,-0.47967273,-0.32707766,-0.051122345,0.6657892,0.8419923,-0.15674241,0.49236685,0.052003283,0.40650892,-0.33188516,-0.415958,0.7090791,1.206066,-0.18148372,-0.40740493,0.71102893,0.48449624,-0.42519486,0.6035099,-0.6170132,-0.43492782,0.39146453,-0.103850536,-0.4169738,0.26145914,-0.5093826,0.15942127,-1.1072421,0.14899005,-0.51097053,0.06409181,-0.6429589,-0.20719132,-3.3792245,0.43073294,-0.22499722,-0.060531523,-0.31198433,-0.27459157,0.37182638,-0.7514579,-0.88162714,0.20411794,0.027675457,0.9430475,-0.17828332,0.14958864,-0.12752512,-0.43578583,-0.3390115,0.017008293,0.34882244,0.33310902,0.15240642,-0.5651868,-0.1719148,-0.15453196,-0.54199415,0.0799357,-0.534933,-0.61213356,-0.14308801,-0.5840176,-0.3618613,0.8006176,-0.19927436,-0.0011876455,-0.06874926,-0.0038513748,-0.14371327,0.47213548,-0.021095982,0.22045158,0.07044694,-0.11863323,0.16793896,-0.2838802,0.059513092,0.10030287,0.2829085,0.23815061,-0.3318456,0.32152778,0.56402117,0.96519554,0.0097193355,0.98532844,0.39341018,-0.019354071,0.39888352,-0.28131992,-0.5057657,-0.64210427,-0.19152077,-0.06294401,-0.36650625,-0.34064925,-0.01089561,-0.51562524,-0.73336375,0.7289075,-0.047533114,0.24735667,-0.0674593,0.3103297,0.46865776,-0.1652616,-0.13632317,-0.079207584,-0.11391,-0.52555794,-0.29888064,-0.6615231,-0.51602995,0.05743993,1.1388993,-0.20593913,0.012140636,0.25028834,-0.17473355,0.11595218,0.24620111,0.053768154,-0.053661026,0.51875746,0.03563749,-0.70284504,0.30517125,-0.17800426,-0.30482203,-0.789586,0.05042605,0.77237505,-0.6901782,0.5446956,0.5516587,-0.001388449,-0.02820855,-0.55305004,0.033964243,0.20228828,-0.26556176,0.50779235,0.44040835,-0.7573189,0.48746812,0.51480526,-0.20934336,-0.6525307,0.7872481,0.14064382,-0.30231127,-0.3506012,0.441589,0.32798645,0.16011228,-0.03304016,0.16922252,-0.45115048,0.17728248,0.27969712,-0.08068915,0.3273209,-0.019813074,-0.15563574,-0.7887531,0.18114156,-0.579329,-0.26897976,0.42990258,-0.18939008,0.26967683,0.16942021,0.21191527,0.23867787,-0.38755777,-0.00038615556,-0.27426293,-0.34861624,0.51239425,0.5595094,0.5928143,-0.48000142,0.6471479,0.11386706,-0.017695496,0.3765225,0.046793863,0.5509378,-0.025508724,0.46385667,0.20911275,-0.29933992,0.06092221,0.795164,0.14070132,0.42731795,0.29290518,0.0059984922,-0.036389258,0.28197455,0.033726767,-0.05552105,-0.52043337,-0.08796266,-0.15007596,0.16932566,0.67512786,0.06176063,0.2921703,-0.14927539,-0.371458,-0.0099695325,0.1449866,-0.20327125,-1.6570505,0.3944343,0.1429238,0.84427613,0.48675343,0.04227539,0.026770573,0.43217432,-0.076517746,0.12601863,0.5284657,0.13537744,-0.35461628,0.6148704,-0.5606846,0.6211536,-0.08791459,0.1768377,-0.14331037,0.08989979,0.6580123,0.7879703,-0.08356297,0.08879643,0.23813699,-0.43604586,0.09331347,-0.4517259,-0.16231672,-0.44853467,0.015826674,0.9143702,0.52178544,0.42317316,-0.30696726,-0.0006076464,0.1928148,-0.17475528,0.1187668,-0.09477259,0.08270386,-0.15559672,-0.68304795,-0.09250045,0.5694282,0.22873163,0.23545898,0.058642354,-0.36589998,0.30904898,-0.09220279,0.13427883,-0.06080977,-0.92637104,-0.14334303,-0.7787436,-0.6024717,0.4106674,-0.0011806121,0.20113534,0.38291806,0.1404286,-0.3412622,0.3776395,-0.11613813,0.7731168,-0.32746962,-0.2269581,-0.41331068,0.2814674,0.44056517,-0.39098004,-0.15071903,-0.24751297,0.32085848,-0.37731346,0.57391274,-0.050812535,-0.26988295,-0.048339136,0.02210527,0.014747626,0.4574035,-0.55699867,-0.020934949,0.10142756,-0.056896467,-0.24039358,-0.40453687,-0.11613643,0.18672696,0.24525703,-0.021396045,-0.14780897,-0.19663262,0.17234601,0.47930336,-0.06932815,0.38069004,0.74117124,0.24125177,-0.31265986,-0.24647419,0.39897302,0.71668786,-0.16443887,-0.35528454,-0.70079464,-0.6461101,-0.34686762,0.51544327,-0.044912867,0.26594794,0.10359227,-0.4513199,0.9020165,0.1254817,1.0977824,-0.023385385,-0.49263048,0.029255133,0.43044296,-0.15916716,-0.23723768,-0.33626965,0.9632807,0.46930307,-0.42691165,-0.28651252,-0.5656158,0.06217059,0.03115813,-0.3416416,-0.15603279,-0.10092291,-0.642251,-0.25650242,0.32664612,0.33373767,0.12550408,-0.29990342,0.38561293,0.36214393,0.060576998,0.31646708,-0.66374326,-0.23644637,0.19241945,0.42692745,-0.08088794,0.19327453,-0.49759275,0.27846652,-0.5938668,-0.016831614,-0.5105411,0.24272798,0.05863241,-0.4041993,0.23312695,0.04406381,0.3636813,-0.48241436,-0.21289039,-0.3035198,0.52242315,0.066075824,0.15123364,0.60249877,-0.2810801,-0.048672795,-0.03168557,0.72442216,1.4129715,-0.07360501,-0.07862575,0.3556285,-0.30993304,-0.6488835,0.23078002,-0.5554078,0.4668667,-0.052605495,-0.16326918,-0.82018197,0.2658067,0.31410944,0.078512594,0.121655375,-0.6986516,-0.4530718,0.3687558,-0.36704046,-0.26305893,-0.38706562,-0.10613013,0.48229975,-0.22916484,-0.07076716,0.08476067,0.40777984,-0.023231877,-0.4194077,-0.055190526,-0.37318882,0.33721912,0.15327303,-0.23833528,-0.03325568,0.046330843,-0.5211259,0.24880688,0.22520557,-0.44813523,-0.05584989,-0.3077026,-0.16829015,1.0762689,-0.2245417,0.3651292,-0.36331046,-0.5479435,-0.83843845,-0.3649134,0.3418808,0.19061655,0.11359421,-0.81361806,0.12747194,-0.06908325,-0.14353703,0.06194177,-0.23923379,0.49731642,0.13752092,0.5899937,0.013853633,-0.65064615,-0.006466205,0.1274893,-0.4461867,-0.5160679,0.66939443,-0.0444871,0.98198056,0.19095984,0.12698518,0.27615082,-0.4735935,-0.052386623,-0.20281918,-0.22465545,-0.7929392,-0.07610339,145 +617,0.35667002,0.037087303,-0.6473647,-0.1312353,-0.21143143,0.045299992,-0.23989041,0.47891062,0.30627888,-0.35258496,0.112414874,-0.07129801,0.034042917,0.57457864,-0.23073079,-0.59827155,0.21948291,0.058466733,-0.59922385,0.33357388,-0.43289092,0.2924381,-0.11354563,0.3764731,0.13762444,0.20034729,0.04587025,-0.021677095,-0.021579636,-0.16661301,-0.19035593,0.1984361,-0.42718986,0.017960755,-0.14476047,-0.29504248,0.0005483742,-0.60589284,-0.498966,-0.6521529,0.35069898,-0.8588559,0.75001425,0.113576025,-0.18900491,0.26950562,0.22363938,0.33966255,-0.09140463,-0.02760557,0.038697485,-0.29494974,-0.14710198,-0.16133817,-0.5549871,-0.527882,-0.6615094,-0.02871076,-0.6637287,-0.13292016,-0.25033447,0.15450934,-0.38032097,-0.00041689322,-0.027358051,0.37415302,-0.34677118,-0.011552609,0.10741566,-0.095492415,0.10083052,-0.6761554,-0.28374597,0.015381194,0.44921172,-0.19491458,-0.31818134,0.3108509,0.34501883,0.5405497,-0.1796327,-0.20630914,-0.28804827,-0.030122302,-0.06365778,0.7396029,-0.18390773,-0.48996612,-0.07248613,0.014936062,0.4247494,0.5000259,0.21716659,-0.26806206,-0.21209274,0.062609114,-0.25193924,0.5493652,0.6493199,-0.3447227,-0.18917099,0.4897472,0.30291268,0.31370184,-0.09896655,0.44119364,-0.05598825,-0.72193396,-0.11343702,-0.05414823,-0.106827095,0.53698087,-0.14214095,0.4440487,0.6155456,-0.12609237,-0.072484985,0.18992582,0.0042161,-0.018970426,-0.121531434,-0.2850077,0.1705331,-0.5462421,0.19338384,-0.12150018,0.61609083,0.33006412,-0.91584027,0.38186073,-0.59817326,0.17353384,0.026283674,0.5499156,0.8307866,0.5747439,0.38256976,0.7426436,-0.50681645,0.10547757,0.048650607,-0.37166727,0.042621695,-0.18031706,0.07957983,-0.51818967,-0.083315775,0.17657372,-0.13675275,0.38452032,0.45902258,-0.5072329,-0.10667816,0.27982554,0.7901996,-0.20693295,-0.07858511,0.8961497,0.9797086,0.9950429,0.14640036,1.0618842,0.10293777,-0.04554291,0.08724319,-0.08372327,-0.7834585,0.17878345,0.33292866,-0.2247298,0.41398877,0.13836172,-0.09653469,0.28847757,-0.29250875,-0.31942242,-0.0079750875,0.16650201,0.13944586,-0.39651993,-0.2555131,-0.22978464,-0.13612527,-0.19917892,0.22510743,0.25123593,-0.24910808,0.45768675,0.1603179,1.1546979,0.09609382,0.16648175,0.13755564,0.4644038,0.28733554,-0.20178308,-0.18869129,0.36372313,0.41336682,0.16611221,-0.5658079,-0.052372035,-0.3096217,-0.36248586,-0.13281146,-0.34562752,-0.3242953,0.027498927,-0.31059292,-0.27572206,-0.17372335,-0.349105,0.6203471,-3.022928,-0.28048706,-0.1868599,0.26130578,-0.032402277,-0.35044685,-0.10905798,-0.5891869,0.49948475,0.35031688,0.2886853,-0.6727404,0.324256,0.4492628,-0.43082413,-0.22370464,-0.80177104,-0.12383126,0.10207097,0.18732016,0.029867519,-0.12214155,0.07842267,0.20325732,0.4607475,-0.11010671,0.048918825,0.22227328,0.4348482,-0.0033381444,0.3845247,-0.29791784,0.5714109,-0.25109285,-0.24174412,0.21109122,-0.5031361,0.30174315,-0.19695543,0.11473144,0.6144262,-0.32660806,-0.93255913,-0.4328738,0.002667913,1.0790342,-0.09169174,-0.34352392,0.39605573,-0.47184405,-0.32239628,-0.18636124,0.5871595,-0.16374254,-0.115646124,-0.69961035,-0.16234702,-0.22437182,0.20107743,-0.110916175,0.078909434,-0.3734827,0.48254073,-0.025199762,0.50704724,0.20677568,0.17776181,-0.52663124,-0.3640444,-0.09911119,0.81886744,0.5017095,0.093329206,-0.1564411,-0.20977746,-0.27691275,-0.33764198,0.123581186,0.5870353,0.5116606,-0.12406949,0.18612926,0.30953616,0.10240658,0.1830363,-0.1683713,-0.26980278,-0.07541111,-0.07383482,0.48348823,0.58926576,-0.25678343,0.55965245,0.07587074,0.16598257,-0.31891897,-0.4913584,0.60838646,0.66475815,-0.18315543,-0.32610688,0.6743567,0.15453514,-0.22753988,0.47825342,-0.5689086,-0.41343182,0.6372541,-0.06395138,-0.5489329,0.27802268,-0.23722799,0.048325837,-0.6992605,0.39820543,-0.2235445,-0.5693416,-0.48263037,-0.037068717,-3.456182,0.09611945,-0.3322439,-0.1446698,-0.16729453,-0.14786643,0.17401117,-0.5415123,-0.71062875,0.22909251,0.1911533,0.8470455,-0.3640721,0.11123927,-0.105148315,-0.5216739,-0.4380512,0.1122168,-0.06805726,0.30138636,0.07281424,-0.114399634,-0.020000424,-0.005742041,-0.49160525,0.068717174,-0.48069608,-0.26001474,-0.117178,-0.53364295,-0.21713679,0.80990756,-0.35988653,-0.05675649,-0.4721545,-0.10174159,-0.20995378,0.34299052,0.11858311,0.04612505,-0.022324145,-0.01264668,0.16019654,-0.2945986,0.2730592,-0.100385346,0.30532143,0.36618993,-0.10576197,0.17286345,0.54597247,0.7642291,-0.21104988,0.9228128,0.34964877,-0.034132272,0.44574112,-0.310164,-0.3182791,-0.3858472,-0.40804055,0.10616513,-0.44801596,-0.4106239,-0.2597612,-0.28223202,-0.7099687,0.44519183,0.00019487969,0.23913883,-0.106433116,0.3645404,0.40651956,-0.226482,-0.040364068,0.05187544,-0.16727322,-0.34784266,-0.1035082,-0.6229211,-0.41549146,0.17819801,0.95123327,-0.22407986,0.036401056,0.2954114,-0.31259096,-0.07407867,0.08555053,0.16912468,0.14818272,0.24289736,-0.19465153,-0.69032454,0.36518615,-0.5476299,-0.16925237,-0.7974757,-0.010164052,0.7125772,-0.5766458,0.61569244,0.3936318,0.13776213,-0.25819233,-0.82147986,-0.27460724,-0.057327528,-0.18196529,0.32044813,0.25727934,-0.9047102,0.5519204,0.4516528,-0.24340604,-0.61939424,0.5195066,0.10533294,-0.11383597,0.15141012,0.33382878,0.18366408,-0.02388712,0.028226767,0.13788693,-0.37184432,0.4684267,0.29411867,0.13397922,0.49818784,-0.13209759,-0.23873752,-0.669366,-0.12606353,-0.54613084,-0.16077691,0.11042465,0.051745288,0.27015918,0.08558929,-0.048491497,0.3227177,-0.5044395,0.1749351,-0.08886372,-0.2205986,0.22391011,0.47948983,0.56692463,-0.36819267,0.6511879,0.12128968,-0.0971721,0.17347851,0.04366882,0.55651635,0.13644172,0.44054043,0.12799488,-0.34409633,0.06405551,0.96398544,0.12317709,0.27748165,0.13856323,-0.0020748628,0.06894536,0.1352207,0.067910604,0.18884405,-0.533975,-0.0970627,-0.30501986,0.28506786,0.6090434,0.26544034,0.12640902,-0.029541107,-0.29099485,-0.022365285,0.18575536,0.055887945,-1.507544,0.43750528,0.23594683,0.84263444,0.30257806,0.19954935,-0.050377164,0.6727044,-0.0066086054,0.11666118,0.27997157,0.095832914,-0.40770817,0.54375076,-0.77583987,0.62385535,-0.036085255,-0.015677048,0.05100968,0.06579588,0.35283244,0.85802037,-0.22860526,0.06209061,0.19543995,-0.2287271,0.09679481,-0.4651954,-0.081713125,-0.3957767,-0.20379877,0.7257802,0.48359993,0.2768255,-0.2370704,-0.004872021,0.056499556,-0.14105883,-0.0056909323,-0.07282746,0.12286936,-0.48184347,-0.53417975,-0.14600687,0.5150119,0.16018614,0.22767569,0.056445483,-0.18318532,0.31847382,-0.20071569,0.06760599,-0.1517382,-0.71455187,-0.1101706,-0.23162434,-0.6441753,0.3676413,-0.03805317,0.32312822,0.3140983,0.11560889,-0.118988715,0.48445326,0.07202465,0.8228044,-0.29166216,-0.043125905,-0.15680996,0.16792327,0.23126452,-0.2426218,0.07008125,-0.29903525,0.026522985,-0.38588327,0.3484206,-0.11712916,-0.25596815,-0.16730064,-0.089670494,0.251207,0.5214268,-0.28117678,-0.09237874,0.11475515,-0.1463518,-0.326633,-0.15144938,-0.19049653,0.20368077,0.19988397,-0.12944561,-0.07777286,-0.20962366,-0.16664776,0.096030876,-0.02708766,0.37081617,0.40191144,0.30511045,-0.1539879,-0.112117365,0.068993844,0.69137853,0.06694553,-0.23729406,-0.36005613,-0.6165641,-0.36396912,0.35405487,-0.03925738,0.20846996,0.07780748,-0.30843925,0.71310055,0.053700462,1.0884024,-0.028675951,-0.3909083,0.06308083,0.46393007,-0.04816785,-0.14417374,-0.24490665,0.956145,0.48494735,-0.10594468,-0.05770951,-0.31425765,-0.06934273,0.31631902,-0.27162477,-0.2770139,0.16513942,-0.4800437,-0.020469945,0.26837882,0.0050416198,0.23534459,-0.20119675,0.04408173,0.4029589,0.17268068,0.2161089,-0.49853304,-0.11222979,0.35718757,0.35825354,0.08174043,0.114733234,-0.48206037,0.30608994,-0.4852487,-0.07501722,-0.38179478,0.27003968,-0.0957642,-0.28010014,0.22790295,0.1745,0.5150931,-0.23042327,-0.36196524,-0.0047710827,0.4628309,0.1094243,0.17304057,0.49112236,-0.27245897,-0.062677346,-0.13195449,0.4243137,0.90816104,-0.22501875,0.0070204875,0.37422472,-0.31919786,-0.70194113,0.33030716,-0.533016,0.24851006,-0.031771634,-0.052381072,-0.36544788,0.28900388,0.35248086,0.1760932,0.07888793,-0.5035582,-0.34980986,0.17227837,-0.19961089,-0.29989767,-0.3901548,-0.05101759,0.7037274,-0.3128379,-0.21420108,0.06986453,0.33202246,-0.0819006,-0.55261123,0.1736022,-0.21927746,0.3590399,0.061526276,-0.33154085,-0.13415273,-0.06458848,-0.48769045,0.23507659,0.06974326,-0.25749692,0.020877829,-0.3324752,-0.12799573,0.7583543,-0.45609647,0.2585626,-0.61133456,-0.5627879,-0.8706224,-0.27904752,0.12115093,0.23765205,0.08174964,-0.7600069,0.016069688,0.028618898,0.007919559,-0.045602597,-0.322041,0.47645357,0.05710139,0.37858644,-0.15738946,-0.87578833,0.089077935,-0.0026457815,-0.2293362,-0.61544454,0.61193,0.020042915,0.8253962,0.17766245,-0.02091978,0.08448868,-0.42072266,0.22290042,-0.22130054,-0.1501786,-0.6502152,0.12550674,148 +618,0.4024722,-0.030213118,-0.70323974,-0.12266977,-0.26227942,0.26789224,-0.17240554,0.11570826,0.37192202,-0.07881392,-0.046459436,-0.12522745,0.0024436484,0.39651674,-0.09724574,-1.0119042,0.079787135,0.16462995,-0.623018,0.47972125,-0.47968924,0.5543801,-0.028169185,0.34536716,0.11440873,0.35000977,0.018079208,-0.042637113,-0.24321002,0.1375566,-0.11643309,0.3733475,-0.44152725,0.029477509,0.07483994,-0.3069414,-0.084865525,-0.28421706,-0.2275214,-0.7069121,0.39514616,-0.67170936,0.67567784,-0.040846094,-0.20658122,-0.013028002,0.076905124,0.40467185,-0.24124986,0.1814515,0.10479735,-0.30768389,-0.16307156,-0.050665755,-0.45034873,-0.47909853,-0.59279704,0.051137768,-0.61068743,-0.15818636,-0.16553393,0.2793974,-0.39306176,-0.24200909,-0.0850314,0.36408103,-0.33007333,0.23427035,0.46063307,-0.2313242,0.12677325,-0.50165874,-0.16790439,-0.025374921,0.45592594,-0.21763992,-0.2822775,0.11317646,0.5589335,0.50459576,0.042897698,-0.24322602,-0.31223726,0.06407689,0.055296674,0.6184308,-0.08416036,-0.2961109,-0.2234602,0.10112017,0.21543209,0.24648325,0.04839247,-0.39229518,-0.06404739,0.046088345,-0.030361596,0.4776526,0.37656802,-0.37233183,-0.27069473,0.39655733,0.48048204,0.21462907,-0.21795405,0.3536261,0.039994005,-0.5776795,-0.1330044,0.23276186,0.115320645,0.5873574,-0.14094073,0.17511867,0.7599501,-0.18870418,-0.17956528,-0.055928025,0.011748182,-0.08153139,-0.2013358,0.1386266,0.16516179,-0.34580266,-0.0064508365,-0.15346923,0.5596885,0.16130352,-0.76356757,0.36110088,-0.6055402,0.20411006,-0.17086817,0.63172793,0.9554822,0.26193693,0.32165942,0.90348345,-0.47993928,0.056207962,0.18243586,-0.59250295,0.07597765,-0.10283303,0.044532213,-0.6009816,-0.051015396,0.03601047,-0.05736017,0.2515258,0.35288483,-0.5015826,-0.13996808,-0.06237507,0.64245486,-0.38271654,-0.35777956,0.77952987,0.8301453,0.75440127,-0.0149058215,1.3169545,0.43494388,-0.19993195,0.15818864,-0.5311168,-0.5095819,0.1910603,0.18718252,-0.81075513,0.5407866,0.05591447,0.043526486,0.4669531,-0.059077345,0.0012100202,0.0746486,-0.0069414238,0.11967437,-0.23452559,-0.34614664,-0.14700237,0.08015156,0.0029364754,0.145321,0.18170847,-0.36013988,0.28686902,0.095085576,1.3900793,0.10746657,-0.020820769,-0.17086905,0.26667005,0.28389937,-0.25217727,-0.16334105,0.381122,0.3224573,0.011698349,-0.5212077,-0.07845537,-0.28109393,-0.29946205,-0.27461106,-0.32956064,-0.041688517,-0.143302,-0.4177861,-0.047437146,-0.058648188,-0.3720205,0.69159186,-2.6738532,-0.25436446,-0.14173585,0.3264733,-0.21322045,-0.39882505,-0.4763363,-0.40490583,0.07770621,0.2897708,0.3374847,-0.7189201,0.33761904,0.37259012,-0.48249838,-0.30476624,-0.5189676,0.016036604,-0.016313136,0.13627408,-0.07951164,-0.12540746,0.0027910883,0.2229369,0.55551296,-0.123676986,-0.056299943,0.21982695,0.5846732,0.034686998,0.47476885,0.04653186,0.6804148,-0.06547982,-0.24864785,0.34898221,-0.39264092,0.288631,0.1748487,0.12020779,0.3456219,-0.30196398,-0.9616959,-0.48946315,-0.26063803,1.1303588,-0.42587882,-0.3646219,0.23717001,-0.17448027,-0.39053524,0.03688381,0.48707926,-0.1985031,-0.10968125,-0.76216626,-0.06696255,-0.012090476,0.077855974,-0.062187966,0.15682599,-0.1508045,0.55389315,-0.17231849,0.2091592,0.25742123,0.2108728,-0.2748094,-0.4789266,0.10064234,0.8583604,0.3409524,0.09633221,-0.15081078,-0.31589666,-0.29479116,-0.16706559,0.15040675,0.6386475,0.6233054,0.0676941,0.16930892,0.3531334,-0.08988183,0.084205315,-0.14661744,-0.37012944,-0.011062283,0.024245968,0.6310181,0.64215714,-0.16698454,0.6775706,-0.009079938,0.027374946,-0.1943817,-0.57127404,0.6789455,0.8685845,-0.18010558,-0.37787566,0.48330864,0.20854174,-0.5265131,0.30031058,-0.55300367,-0.1648714,0.7398873,-0.19794512,-0.37389076,0.2791258,-0.35237688,-0.008845996,-0.98649085,0.11864115,0.025986016,-0.4364572,-0.21203884,0.013852773,-4.0714626,0.13942602,-0.15584418,-0.110589795,0.008687899,0.07798365,0.18000998,-0.57766116,-0.6577826,0.07526329,0.06675453,0.50726575,-0.23065533,0.16506328,-0.2997869,-0.35148752,-0.10887297,0.21584381,0.097663894,0.3399169,-0.03477426,-0.41618893,0.05920323,-0.2531595,-0.49500117,0.074443325,-0.57943046,-0.6749667,-0.1250277,-0.67910105,-0.2162644,0.83901775,-0.5395288,-0.17365327,-0.2616465,0.10552228,-0.113455944,0.34762394,0.06585277,0.22728676,0.22360252,0.048909076,-0.12659055,-0.2394986,0.35464472,0.082786255,0.28244355,0.41393244,-0.06817141,0.34976858,0.58430237,0.62439126,-0.022730704,0.8558257,0.37681276,-0.043811295,0.27035028,-0.3472985,-0.06636877,-0.643952,-0.33130562,-0.3773434,-0.5025393,-0.5881252,-0.28820422,-0.3585193,-0.779409,0.43464887,-0.05475964,0.27510425,-0.12526849,0.4287234,0.5597044,-0.14856815,0.10124932,-0.13748556,-0.27063486,-0.30869463,-0.34091422,-0.5559987,-0.6568556,0.46179837,0.8675508,-0.37443975,-0.02335602,-0.0932221,-0.33825248,-0.052898917,0.08714529,0.28718475,0.3157211,0.44536978,-0.25454494,-0.6707836,0.27299008,-0.3546672,-0.20684846,-0.7793695,-0.003613252,0.71852714,-0.5933733,0.7395957,0.34208342,0.16746694,0.213907,-0.54015994,-0.2705297,0.14978406,-0.34062254,0.49341333,0.24258243,-0.5745021,0.39887252,0.17935568,-0.072550125,-0.61640763,0.6202268,-0.042173807,-0.12033172,0.030636255,0.42135912,0.14358984,0.0058735493,-0.02681436,0.1455833,-0.50347346,0.15505812,0.3912649,-0.09818367,0.51925623,0.16793683,-0.25511676,-0.7666272,0.10397529,-0.5195301,-0.31557477,0.108556084,0.058931343,0.30889565,0.13591938,0.00039884908,0.339303,-0.40424797,0.03310754,-0.034960434,-0.110291295,0.12713704,0.49140847,0.2709025,-0.53409463,0.4713235,0.054370206,0.036407854,0.11516886,0.0585531,0.5888531,0.21879308,0.39339235,0.14263731,-0.29658812,0.22635065,0.5790907,0.08253373,0.33757174,0.106116936,-0.16130158,0.15661865,0.13438915,0.20893814,-0.08711922,-0.38722706,-0.23278397,0.01453804,0.26291555,0.54922926,0.1623397,0.4052191,-0.13001502,-0.29176384,0.32346237,0.18113297,-0.018832864,-1.0565567,0.30753344,0.3518469,0.7288176,0.3674659,0.07827969,0.11757006,0.24963944,-0.37236002,0.1554919,0.45331925,-0.17781147,-0.4499338,0.5676957,-0.5961339,0.5543421,-0.12995493,0.038870566,0.1199447,0.2359048,0.2709938,1.0891678,-0.19608854,0.0035691191,0.067797616,-0.21863382,-0.054152068,-0.28484133,0.0054582036,-0.6958103,-0.16430761,0.6526413,0.6076666,0.279405,-0.29881784,-0.040334363,0.034763254,-0.1846386,-0.0701926,-0.050839826,0.1590295,-0.24938425,-0.61834687,-0.28718612,0.6046289,0.17341512,-0.05616211,0.12772863,-0.23803172,0.36467484,-0.1963749,0.034740753,-0.11792134,-0.734224,-0.11658135,-0.31147254,-0.7684796,0.471654,-0.21761595,0.30073774,0.2746983,-0.02305256,-0.44005173,0.5470391,0.13791035,0.9129712,-0.06439899,-0.1281392,-0.37490895,0.20769006,0.38400033,-0.18136877,-0.2701368,-0.36575487,0.13604179,-0.37567946,0.5459901,-0.12178552,-0.4353619,-0.16088223,0.0036065946,-0.063797385,0.39220703,-0.3310693,-0.16652685,0.088462,-0.13486014,-0.37005174,-0.01997712,-0.33014452,0.2217025,0.23311904,-0.25529078,-0.061741516,-0.14072967,-0.16240083,0.042494316,0.060215756,0.24283317,0.5046226,0.066335276,-0.31191492,-0.039276164,0.26195553,0.41369626,0.07449076,-0.13627535,-0.2272865,-0.27306584,-0.43626344,0.32136023,-0.08900155,0.19852029,0.032420896,-0.5365949,0.77106434,0.20301738,1.4103907,-0.04968116,-0.25422066,0.06988619,0.52049243,0.011788707,-0.0313895,-0.2783716,1.0166377,0.64895374,-0.108910814,-0.286925,-0.41359523,-0.1967841,0.23516554,-0.33807814,-0.066700034,-0.07380941,-0.62472945,-0.2750178,0.243687,0.11936439,0.17047961,-0.018409807,0.041483227,0.15648238,0.09169601,0.26190975,-0.5524209,-0.2088398,0.115500726,0.4533982,0.040814802,0.231398,-0.31297633,0.37746328,-0.64079106,0.18560266,-0.44131696,0.21262206,-0.12805404,-0.1804405,0.26184407,-0.048115637,0.3496038,-0.2159392,-0.08426936,-0.39807063,0.6290719,0.18219122,0.20214513,0.7332722,-0.3133694,-0.16263025,0.19539276,0.53453726,1.388038,-0.060615953,-0.05229623,0.49479154,-0.2532975,-0.7170411,0.1855596,-0.48348218,0.24336733,-0.13442887,-0.31026694,-0.31574652,0.24146406,0.0006709282,0.17157087,-0.033638816,-0.5071033,-0.20592692,0.35810348,-0.3409349,-0.2368848,-0.21172954,0.188275,0.7869901,-0.3403007,-0.3622975,0.0447105,0.24890812,-0.31021473,-0.4917978,0.2278511,-0.23695263,0.51898503,0.07616206,-0.35736653,0.04435139,0.19799335,-0.36261755,0.2500668,0.41242582,-0.39583233,0.10735715,-0.11813061,-0.24972226,1.1175843,-0.16607939,0.25199696,-0.65927315,-0.43245146,-0.85843766,-0.27011985,0.103469126,0.07250839,-0.15749463,-0.7023706,0.094247386,-0.095503844,-0.3554229,0.06654617,-0.5365692,0.43088838,0.060638025,0.4701595,-0.08859254,-1.0948961,-0.045313433,0.1821803,-0.39680386,-0.7424774,0.563504,-0.22658648,0.7875287,0.17956635,0.15292999,0.3829794,-0.39478275,0.25543052,-0.2497563,-0.019463602,-0.7789363,0.020163812,154 +619,0.6292888,-0.21912135,-0.617364,-0.07918981,-0.20058526,0.15333,-0.13463734,0.55934215,0.181387,-0.39364845,-0.047735654,-0.08098186,0.041444853,0.4035684,-0.056205682,-0.7179426,0.13075064,0.18773319,-0.35875404,0.4360347,-0.50943077,0.55410165,0.05348026,0.33736217,0.09935953,0.41454977,0.111945674,-0.05542648,-0.39010593,-0.14493014,-0.19429909,0.10579102,-0.38943797,0.016959438,-0.0059578693,-0.42157668,0.13509728,-0.49740285,-0.29468125,-0.6166221,0.26051593,-0.66882044,0.50985026,0.09173302,-0.30098847,0.19122204,-0.11140985,0.5098095,-0.2902913,0.0527734,0.05141461,-0.011755316,-0.09556429,-0.34946826,-0.14040503,-0.41662738,-0.52491707,0.0393126,-0.33108428,-0.24525264,-0.19470796,0.19486189,-0.32870367,-0.120319724,0.044221282,0.3949517,-0.33631736,0.06769446,0.21940754,-0.16482352,0.07328625,-0.5617534,-0.1701575,-0.19722691,0.32056683,-0.3087477,-0.19187516,0.17357342,0.2692815,0.38127992,-0.03987089,-0.21799248,-0.3909618,-0.062837966,-0.03728868,0.66464573,-0.1981388,-0.42049736,-0.17533812,0.044438343,0.0700053,0.15288304,0.26678723,-0.024353137,-0.09252282,0.022113167,-0.28179806,0.4062363,0.45818457,-0.3478822,-0.27614915,0.38176334,0.5778817,-0.09277497,-0.055725493,-0.1312733,-0.030676642,-0.4890062,-0.21798423,0.0825504,-0.094796345,0.5202021,0.04846608,0.331198,0.624459,-0.1719413,0.15689836,0.10968247,0.0807757,0.03644711,-0.1318407,-0.19433378,0.19284412,-0.46334055,-0.0084156925,-0.12438571,0.7884121,0.40357393,-0.68382615,0.3253358,-0.45582756,0.078454204,-0.1265177,0.3476506,0.56184155,0.4651653,0.1580115,0.7529181,-0.38696864,0.09919362,-0.12757653,-0.3503079,0.01713513,-0.104339965,0.04325936,-0.5174389,0.033210192,0.14129478,-0.26181298,0.29494816,0.24089387,-0.5695041,0.015033121,0.19016589,0.841879,-0.35787666,-0.25088325,0.68850905,0.97817576,0.816314,-0.06943534,1.0255148,0.3304498,-0.25590557,0.34045812,-0.6574182,-0.5403564,0.22573234,0.4653146,-0.23807529,0.3917298,0.108315125,-0.08363632,0.31186244,-0.11970731,0.04795356,-0.1499193,0.033938333,0.07865851,-0.14163737,-0.44037226,-0.36830473,-0.17314993,-0.07229764,0.20384741,0.2924714,-0.32086328,0.29883295,-0.12852775,1.6407783,0.043003634,0.11839212,-0.12219122,0.56582296,0.22930656,-0.23441933,-0.2489149,0.30672714,0.19796436,0.09568807,-0.49402413,0.17667256,-0.11224585,-0.49451125,-0.1674837,-0.2918362,0.08055861,-0.027658127,-0.34845352,-0.099700086,-0.013005917,-0.23812301,0.47205576,-2.7451136,-0.2898863,-0.02735072,0.3945232,-0.35571325,-0.52423775,-0.0888162,-0.50556964,0.21761295,0.3757861,0.5513519,-0.59030265,0.25995594,0.31796154,-0.49369532,-0.29120085,-0.62726754,0.0020065515,-0.009565504,0.2055607,-0.05632999,-0.10429907,-0.18728025,0.084234014,0.37672174,-0.23331454,0.050216056,0.19063601,0.36636484,0.12582181,0.35128534,-0.023352917,0.6476282,-0.2256948,-0.26509976,0.2749287,-0.484283,0.24815209,-0.12402375,0.12358076,0.3477486,-0.45890078,-0.927219,-0.6187379,-0.07364155,1.0697516,-0.11807136,-0.13924974,0.18299682,-0.26760533,-0.24473524,0.0007714675,0.40722895,0.11471284,-0.21926737,-0.55448663,-0.026935687,-0.12869719,0.1394507,0.008260993,0.041932162,-0.42132473,0.5058498,-0.028542547,0.4093665,0.099751346,0.26996586,-0.14912131,-0.27619034,-0.052276988,1.1083909,0.34024063,0.12138872,-0.25166303,-0.25959882,-0.48395458,-0.017596245,0.09089971,0.41312492,0.7600699,-0.06445934,0.06789554,0.17249082,0.00037789805,0.089699596,-0.012900431,-0.26493087,-0.073125936,-0.025043506,0.60917383,0.41457888,-0.07706876,0.6817722,-0.06170015,0.3587565,-0.19908723,-0.39298117,0.50630313,0.88988197,-0.12717803,-0.19655964,0.59105754,0.4012822,-0.27700043,0.43320405,-0.69193375,-0.30840498,0.39894226,-0.24216785,-0.1652879,0.20156255,-0.21620448,0.091906995,-0.9152208,0.2625981,-0.1922006,-0.55532545,-0.35697377,-0.01715077,-3.8424401,0.21555105,-0.10437334,-0.20262067,0.21363515,-0.13796273,0.06552032,-0.6623313,-0.3332526,0.27651125,0.13603976,0.9163503,-0.017972915,0.12505868,-0.17061864,-0.3306522,-0.25121853,0.16873609,0.105148464,0.31392986,0.013082848,-0.36883026,0.010330713,-0.24368133,-0.45870897,0.09932061,-0.6714375,-0.52899927,-0.22448635,-0.6973822,-0.20579635,0.7840065,-0.3332427,0.15592676,-0.20631978,0.07098453,-0.09473337,0.3363691,-0.048627477,0.05917178,0.18545881,-0.14515401,0.19546072,-0.4226119,0.31093693,0.24923475,0.46706152,0.2710736,-0.1443773,0.3212868,0.7477691,0.6516931,-0.05689365,0.64592034,0.42177922,-0.20385943,0.27696377,-0.2671111,-0.13833128,-0.2957692,-0.4673947,-0.1229065,-0.31463417,-0.4215026,-0.14624897,-0.41905886,-0.756287,0.5115091,-0.052697293,-0.038939126,0.009341331,0.5330498,0.4754184,-0.27860877,-0.040883202,-0.10858722,-0.03546382,-0.41566402,-0.1550017,-0.43181616,-0.43987608,0.2948087,1.1281912,-0.36063978,0.041241705,-0.022717811,-0.05449218,-0.10973089,0.015914798,0.100172944,0.05677636,0.32543832,-0.26995307,-0.5939666,0.3805205,-0.3803344,-0.23834637,-0.47958025,0.18900444,0.5872239,-0.6988313,0.41155478,0.37709582,0.16232245,0.09698674,-0.3307319,-0.19802779,0.18473212,-0.21473378,0.16657485,0.15768605,-0.7658516,0.34108675,0.3463092,-0.3784987,-0.6907165,0.5342008,0.018099526,-0.42782417,-0.1995127,0.26325092,0.22262827,0.07450242,-0.35200155,0.08217724,-0.33966562,0.15822905,0.32113713,0.010701931,0.31887025,-0.26878273,-0.17201763,-0.6334285,0.07007844,-0.3345736,-0.3038773,0.15879947,0.14581051,0.26323506,0.26434013,0.3285689,0.3356416,-0.43623108,-0.03132615,-0.040239904,-0.30731753,0.36859566,0.2675367,0.39157206,-0.45606777,0.42757818,0.018466474,-0.10100362,-0.11174083,-0.1706883,0.5619628,0.05103124,0.22595006,0.1259698,-0.40127885,0.2804913,0.68606305,0.2168684,0.3586233,0.13823815,-0.12749356,0.018215932,0.034383368,0.020526996,0.33722836,-0.53706986,0.029654361,-0.060908813,0.09102027,0.5018374,0.21199319,0.115717694,-0.052334983,-0.37391442,0.09850487,0.04025926,0.047928937,-0.99259984,0.4283283,0.12632881,0.76192737,0.29742026,0.08490988,-0.13511768,0.6041045,-0.17483161,0.17392427,0.20672153,-0.1965314,-0.47183764,0.41326934,-0.60298353,0.65221727,0.027563035,-0.010745484,-0.05559369,-0.2986012,0.5404944,1.0067432,-0.215396,0.12038079,0.023885492,-0.28424546,-0.037643116,-0.28775322,-0.07439472,-0.88912815,-0.14678194,0.74879867,0.2732251,0.34761566,0.05655428,0.031033155,0.17983331,-0.09104518,0.15889801,-0.08494894,0.22606799,0.1131423,-0.57919556,-0.2150299,0.57298636,0.13789815,0.076530986,-0.029729664,-0.08193051,0.20754282,-0.2167266,-0.11669457,-0.032569844,-0.5863446,0.011532366,-0.4356087,-0.47103554,0.4182973,0.09137245,0.28654793,0.20287389,0.15309078,-0.12734683,0.63365275,0.3207493,0.840427,-0.06072641,-0.2069614,-0.42069796,0.35249293,0.20554018,-0.25622666,0.054215625,-0.3351661,0.14081761,-0.71902055,0.4645655,-0.018634938,-0.37414882,-0.0077653984,-0.08068074,0.09383726,0.426558,-0.24718626,-0.071703106,-0.004021901,-0.18135135,-0.25343135,-0.035809003,-0.18472078,0.27631316,0.20044161,-0.21576402,-0.06272346,-0.12297856,0.14557588,0.4373214,0.05751522,0.336751,0.2827381,0.2087012,-0.21637455,-0.21117753,0.084192835,0.5468447,-0.1625688,-0.121919304,-0.51254606,-0.31488168,-0.42515692,0.2593311,-0.04737081,0.28319123,0.1050484,-0.13251303,0.7092994,-0.048213705,1.3447577,-0.0045008566,-0.3354974,0.07904853,0.44289833,-0.062224165,0.05580341,-0.48391458,1.1769178,0.37527034,-0.08464019,-0.16893265,-0.42884332,-0.17825292,0.22773787,-0.27851284,-0.1652486,0.011723823,-0.5695234,-0.38217682,0.27682117,0.17975214,0.23378108,-0.04600714,0.31215265,0.25151312,0.003429876,0.05529563,-0.4876168,-0.124604955,0.4318377,0.35460573,-0.0041101393,0.13155106,-0.5037762,0.3682737,-0.579207,0.057662275,-0.21229497,0.07307459,-0.017944088,-0.428778,0.35480568,0.24095583,0.31984502,-0.3454777,-0.44390252,-0.22930211,0.51682705,0.12262495,0.14090155,0.44062537,-0.2028908,-0.042043798,-0.16115616,0.4718424,1.0524287,-0.14118725,0.0336145,0.5480751,-0.32466623,-0.64303344,0.20853226,-0.16160539,0.21137646,-0.12110167,-0.099826165,-0.6055965,0.43540287,0.2756874,-0.07065329,-0.0060144113,-0.38292944,-0.23416933,0.17786625,-0.3669879,-0.3286844,-0.3116539,0.31417355,0.76753724,-0.269412,-0.34100708,0.14305955,0.33611885,-0.13506773,-0.29413667,-0.11874248,-0.2684823,0.28471777,0.09348909,-0.25733843,-0.26178864,-0.04459536,-0.35106483,0.2585603,0.22817132,-0.39606076,0.07093099,-0.34447938,-0.16658527,0.90045726,-0.019871086,0.2189587,-0.48666894,-0.42168742,-0.73445964,-0.5343808,0.4423408,0.090283565,-0.09334923,-0.5396607,-0.02954592,-0.10124007,-0.19409624,-0.046123743,-0.3907843,0.29373348,-0.0060454747,0.30029958,-0.067095526,-0.94018817,0.03855894,0.18702802,-0.45757276,-0.65369856,0.33330745,-0.19873825,0.9801621,0.10397398,0.04377514,0.50667644,-0.42391175,-0.106889725,-0.31210372,-0.0730274,-0.7505208,0.17502767,163 +620,0.45358515,-0.10009475,-0.5656888,-0.0207193,-0.48828596,0.2853031,-0.19544183,0.31378615,0.37675506,-0.2802462,-0.10328959,0.009893582,-0.2831957,0.1812461,-0.06793665,-0.58016914,0.03673986,0.275194,-0.7217652,0.25572607,-0.35795063,0.46445194,0.010973563,0.39946195,0.23076898,0.08419769,-0.18101457,0.1520345,-0.07042003,-0.075153045,0.10810225,0.20658422,-0.678208,0.39577022,-0.1276351,-0.3236285,-0.14751408,-0.33170366,-0.31490055,-0.8261551,0.16659483,-0.83179826,0.64237916,-0.16542329,-0.49246517,-0.27286962,-0.119922295,0.41645497,0.014323037,0.07968461,0.38439962,-0.41448084,-0.20665497,-0.29528564,-0.20168446,-0.5155973,-0.5727035,-0.040535346,-0.42884922,0.06998412,-0.19280021,0.4608674,-0.26485136,0.008944105,-0.23346265,0.36082655,-0.37900624,0.24023694,0.25773716,-0.21460447,0.08793734,-0.6731313,-0.12572226,-0.09184476,0.18578623,0.113312684,-0.29447377,0.13412954,0.21958223,0.42027366,0.11880873,-0.29529434,-0.16766526,0.16201688,0.057341855,0.43420908,-0.2630255,0.21454008,-0.17549564,0.02551962,0.6049052,0.14776835,-0.026074711,-0.3440447,0.0885634,0.004120368,-0.015800172,0.33798265,0.5643826,-0.25932595,-0.12808381,0.35775083,0.5496323,0.2103913,-0.23933929,0.40411523,0.06473175,-0.42938274,-0.03947967,0.20090213,0.06550299,0.53350854,-0.018720526,0.13721544,0.7187321,-0.15100731,-0.064128354,0.13720943,0.2651196,0.119759664,-0.09619979,-0.0894767,0.21353754,-0.4946814,-0.072557226,-0.11737059,0.66338754,0.029425321,-0.6589204,0.35543472,-0.49132,-0.12752137,-0.0428165,0.5189675,0.88363105,0.6218077,-0.029720208,0.8609693,-0.29891083,0.008209994,0.0042878618,-0.2510409,0.17531072,-0.29013854,0.15374827,-0.54202116,-0.13975519,-0.21628413,-0.19864625,0.014964127,0.45774847,-0.59121174,-0.24013421,0.07455459,0.62397724,-0.35261235,-0.05713072,0.83577704,1.058127,0.8065782,0.104123004,1.3058956,0.47825262,-0.12728713,-0.15144004,-0.21997349,-0.50756973,0.15526797,0.114266105,-0.16076007,0.2443611,0.2574069,-0.071493015,0.562997,-0.40937108,0.106199704,-0.1045136,0.032097127,0.048721615,0.0055767754,-0.49461836,-0.32191512,0.25595978,0.19468364,0.05617525,0.2061819,-0.3927178,0.43160036,0.20817715,1.1064839,-0.11495161,-0.026226869,0.0061491085,0.16782573,-0.026033968,-0.34903806,-0.19670318,0.06989002,0.3923554,-0.075605534,-0.32479703,0.025685182,-0.19651844,-0.24253973,-0.2784525,-0.11454511,-0.11046284,-0.24844693,-0.54187137,-0.32804033,0.2500505,-0.35007337,0.42394596,-2.3043542,-0.36068404,-0.120046906,0.37373126,-0.12933896,-0.45043182,-0.36259115,-0.45216852,0.0633514,0.23190314,0.26166865,-0.5400029,0.6229845,0.3805399,-0.53661186,-0.16170223,-0.7237346,-0.05165948,0.06345277,0.30337682,0.033951707,-0.18864653,-0.23833476,-0.09264811,0.53400993,-0.24885607,-0.10528713,0.5217908,0.48721212,-0.079591185,0.27475485,0.22508186,0.6971738,-0.3161895,-0.39267606,0.5033608,-0.45778197,0.20791999,0.09971524,0.14492492,0.43368372,-0.2567733,-0.80285746,-0.7379363,-0.3456931,1.2463269,-0.27663738,-0.463331,0.08328794,-0.23880683,-0.4803592,0.011279345,0.6456761,-0.10762049,-0.009756098,-0.7465562,-0.37157404,-0.0268896,0.3546929,-0.11432159,0.040268227,-0.3792076,0.7431028,-0.23384564,0.41395587,0.30255514,0.28197986,-0.05607558,-0.46958902,0.11595004,1.0414908,0.47436062,0.17683183,-0.31676757,-0.02837944,-0.10797815,0.08894549,0.003827737,0.6710652,0.576321,-0.07128433,0.029235266,0.30916497,-0.24433678,-0.037640512,-0.3001336,-0.30570602,-0.14090055,0.18875368,0.57702637,0.6625475,0.15652464,0.4640396,-0.1974335,0.16751412,-0.0738549,-0.5706626,0.33076245,0.63810974,-0.1601882,-0.340782,0.48958042,0.32897028,-0.33356413,0.23177265,-0.54697365,-0.3633858,0.40626156,-0.09792752,-0.5290784,0.1781943,-0.37773794,0.17108342,-0.64037263,0.60076654,-0.19260004,-1.0350425,-0.6726374,0.05936603,-2.8164582,0.19588616,-0.14656152,-0.032222006,0.02586126,-0.26613158,0.23948081,-0.49753934,-0.4440146,-0.038156085,0.12194652,0.60909665,-0.08449177,-0.06420083,-0.22441825,-0.39741832,-0.0946836,0.2938107,0.34600976,0.16447379,-0.119594336,-0.37865293,0.18059112,-0.3768009,-0.40441513,-0.11519731,-0.9136861,-0.8228799,0.04207961,-0.42330173,-0.18695402,0.7989695,-0.5623688,0.018923957,-0.39626738,0.031001357,-0.03231339,0.43144894,0.12541161,0.13323347,0.11347279,0.0015523159,-0.26523808,-0.35254982,0.27583554,0.11250631,0.37056458,0.5178982,-0.12671508,0.29364672,0.6927491,0.7146057,-0.07137316,1.0105121,0.33059472,-0.104262225,0.15998939,-0.036645044,-0.23843323,-0.5801908,-0.17743716,-0.0014769778,-0.6362695,-0.2273535,0.030046202,-0.2954481,-0.82050353,0.3904235,-0.013914949,0.058076657,0.10620002,0.3176012,0.5358915,-0.0374417,-0.021650888,-0.15371895,-0.18090095,-0.27630478,-0.63840735,-0.5374132,-0.80397826,0.08783564,1.7252586,-0.15100704,0.24572028,0.22012821,-0.44139525,0.13275456,0.16574635,0.06583131,-0.08461191,0.6026801,-0.19425505,-0.6397399,-0.009447777,-0.30307648,0.05513514,-0.661178,0.1611796,0.9205522,-0.79140854,0.49840733,0.27883655,0.16500425,-0.14092566,-0.4289038,-0.3101071,0.0045852205,-0.3481796,0.5349836,0.24569577,-0.5513412,0.3467706,0.08122607,-0.13292804,-0.66005635,0.36791292,-0.120132975,-0.1464014,0.09524027,0.44883904,-0.14069185,-0.1166427,-0.019023212,0.24718864,-0.33214283,0.33993357,0.17868103,-0.16576713,0.14586946,-0.10573853,-0.08767645,-0.6889379,0.020508941,-0.42803985,-0.5558336,0.13703884,0.15673052,0.1995311,0.46352932,0.30118397,0.44599965,-0.20900251,0.036388583,-0.2915561,-0.4428218,0.34883383,0.49900267,0.40037042,-0.34873602,0.43261895,0.06070792,0.12827669,-0.12407081,0.1415783,0.5648316,0.12817416,0.40822676,-0.21599147,-0.014577155,0.0962217,0.85392153,0.07513675,0.54543376,-0.017358629,-0.25221002,0.122088775,0.079397015,0.15165378,-0.15280443,-0.45647705,0.022214446,-0.17057052,0.24816039,0.41639173,0.08504018,0.30259532,-0.27108005,-0.353728,0.23185815,0.09016887,0.18240365,-1.4197527,0.31855088,0.26649377,0.75066686,0.08400922,0.18607989,0.05338568,0.50455165,-0.15674114,0.14920703,0.36160824,0.05083449,-0.17055526,0.3933463,-0.77064615,0.4524421,-0.14491734,-0.04803972,0.24590476,0.057034392,0.2949062,0.9110749,-0.18674096,-0.009857333,-0.0007238732,-0.24493164,-0.12241382,-0.36910936,0.30298382,-0.7549356,-0.45453852,0.78850675,0.6353362,0.34437352,-0.3718259,0.057238657,-0.05555539,-0.24628983,0.31604326,-0.13123679,-0.06687018,-0.14086999,-0.5362535,-0.03316696,0.50869024,-0.2126313,-0.18644479,0.13988152,-0.09532745,0.21815266,-0.062141165,0.0026827203,-0.09768367,-0.81751543,-0.061848722,-0.59962475,-0.4928366,0.21784931,-0.2226608,0.10318077,0.21605545,0.13787113,-0.24083072,0.49648842,0.30004406,0.96245515,0.174927,-0.15470658,-0.20329443,0.2247707,0.227343,-0.29052156,-0.12072719,-0.2835956,0.41329157,-0.53497535,0.2979426,-0.34824687,-0.346704,0.15980506,-0.047517262,0.059382815,0.389331,-0.20235835,-0.21252455,0.23497511,0.019530836,-0.31756973,0.117755964,-0.32607636,0.09471241,0.2253075,-0.2700903,-0.040944245,-0.23399456,-0.19130427,0.13469759,0.23539144,0.2976438,0.62199557,-0.0043620467,-0.30917087,-0.02866491,0.022973308,0.6451967,0.08228995,-0.1981124,-0.45614764,-0.20331813,-0.22863165,0.55466884,-0.041196052,0.2535985,0.060205117,-0.4148266,1.0006881,0.079292044,1.1610125,0.08364691,-0.39345983,0.083328925,0.45281413,-0.016638359,0.021339925,-0.4941035,0.9281653,0.59423995,-0.14828683,-0.12917587,-0.2709831,-0.28247148,0.41856745,-0.2692813,-0.11417646,-0.21147543,-0.9210171,-0.123208046,0.24026981,0.394747,-0.0985251,-0.012116993,0.056182083,0.22935636,0.0016044424,0.16346763,-0.5991784,0.16443355,0.29107362,0.41110766,-0.19126275,0.3159367,-0.31689167,0.37927085,-0.8898974,0.113151036,-0.46693036,-0.026018668,-0.103256,-0.32152045,0.27885333,0.15630354,0.37456387,-0.42846906,-0.14979957,-0.37934443,0.6081707,0.11550064,0.17457184,0.7383033,-0.18151195,-0.22268619,-0.038854208,0.24967283,1.1756176,-0.18605913,0.07963769,0.42179185,-0.2420254,-0.52649856,0.21543609,-0.47019857,0.0686651,-0.0742245,-0.41778266,-0.23282348,0.39130336,0.21821326,0.011852851,-0.10419785,-0.5209593,0.23711866,0.43713185,-0.30439165,-0.22682479,-0.28977606,0.3434536,0.51845926,-0.25006503,-0.4072551,-0.20196377,0.6570338,-0.35616648,-0.3708723,0.08731813,-0.4156183,0.25399634,-0.024230016,-0.49595183,-0.13349344,0.08879871,-0.466582,-0.03251581,0.39122704,-0.41242072,0.07301282,-0.049303368,0.122086324,0.9189405,0.02411437,0.2272032,-0.54953605,-0.58734596,-0.8429663,-0.46111506,-0.1482591,0.5694876,-0.1763466,-0.5500404,-0.119011715,-0.27047026,-0.15140446,0.02678277,-0.5441404,0.41121277,0.26244605,0.65892726,-0.3055306,-1.1225471,0.034431048,0.22790122,-0.3393882,-0.39823526,0.5171979,-0.20583676,0.7790461,0.020538999,0.17269771,-0.08902314,-0.56082207,0.419033,-0.28957394,-0.07306288,-0.881229,-0.060627773,164 +621,0.47664076,-0.34851676,-0.22067484,-0.1956535,-0.02442694,-0.07220877,-0.21099809,0.50761235,0.002242556,-0.6929928,-0.3422265,-0.19133854,-0.07442594,0.3168712,-0.18044257,-0.67682517,0.016583048,0.053763714,-0.40238678,0.76206005,-0.58374655,0.25728947,0.09363433,0.4297592,0.022776214,0.14020847,0.3146787,-0.114466414,0.025752237,-0.3459177,0.06751347,-0.049179725,-0.6442524,0.42681998,-0.20547542,-0.24756214,0.01082447,-0.28089744,-0.25212654,-0.957363,0.14287005,-0.7931064,0.36412445,-0.003927748,-0.4463129,0.36619237,-0.10241662,0.24809504,-0.21613945,0.094689146,0.18979383,-0.1253487,-0.100259185,-0.12095552,0.1675024,-0.4917382,-0.5505189,-0.011115434,-0.4177744,-0.23226136,-0.31783614,0.16320327,-0.39841762,-0.099498205,-0.20612992,0.49390966,-0.56121004,-0.37091967,0.10128772,0.039672427,0.5928485,-0.63687545,-0.20752393,-0.20788643,0.2523504,-0.08291641,-0.07705346,0.27836066,0.09825237,0.39245906,0.14230601,-0.104561955,-0.046102967,-0.038913526,0.27845815,0.3743523,-0.063544504,-0.5926863,-0.12397264,-0.21067175,0.18806471,0.21727857,0.10659066,-0.11043466,-0.021426719,0.1371284,-0.21117339,0.24999288,0.42524716,-0.12111088,-0.327203,0.2141756,0.5968529,0.18701185,-0.10537264,-0.007085259,-0.015697401,-0.5582023,-0.20193808,0.24734521,-0.2772495,0.57701993,-0.2940126,0.19392285,0.5835463,-0.25809044,0.11076928,0.011876661,-0.007597474,-0.067957744,-0.16640645,-0.4172597,0.50364345,-0.5678436,0.09838152,-0.6088918,0.71535563,0.18321928,-0.6348127,0.3664616,-0.42185423,0.06783409,-0.037580714,0.73017025,0.7177362,0.33141625,0.24000856,0.5711742,-0.5018835,-0.10462611,-0.12753838,-0.26325142,0.046204906,-0.2293217,-0.008480008,-0.33658698,-0.053447742,0.081383415,0.04325026,-0.24442254,0.3262968,-0.5936928,0.0014058695,0.18410693,0.61205584,-0.31021038,0.2448678,0.8933616,1.1135954,1.1376472,0.22391804,1.234076,0.3158954,-0.19795582,0.17478803,-0.04959487,-0.6158059,0.28648573,0.4629044,0.45814073,0.1415341,0.0043261508,-0.054516535,0.50043976,-0.6008719,0.09061828,-0.3178881,0.3480863,-0.11298255,-0.14094418,-0.6683209,-0.21370807,-0.086590365,0.102927975,-0.07003654,0.22037004,-0.08964432,0.19899155,0.16212656,1.0820578,-0.21872808,0.08552742,0.030770402,0.49877775,0.12137545,-0.23497622,0.16622676,0.17804813,0.5444054,0.13924763,-0.6829059,0.12894037,-0.22330274,-0.50521284,-0.12162668,-0.19900492,0.26860735,-0.092386365,-0.40992865,-0.2027343,-0.0027346886,-0.4666669,0.3656198,-2.4488804,-0.33659795,-0.23956959,0.16051593,-0.24404451,-0.26965427,-0.0136329895,-0.5083425,0.60336524,0.3480732,0.47241652,-0.57510144,0.31600773,0.5047234,-0.5040869,0.08272861,-0.6790698,-0.32492077,-0.22054107,0.50537646,0.29762846,-0.023083966,-0.11251826,0.22176702,0.59674555,-0.03025186,0.15900093,0.10628157,0.21173829,-0.038764033,0.45279276,0.16828275,0.42821547,-0.26272193,-0.095786616,0.347772,-0.33226007,0.20714822,-0.24778311,0.2670488,0.35099223,-0.51752025,-0.7666547,-0.78259337,-0.8440463,1.2546731,-0.016141195,-0.591431,0.301068,-0.075421095,-0.2382594,-0.13799883,0.32375148,-0.28879339,0.11702558,-0.7573248,-0.061883967,-0.109353215,0.25427294,0.043298576,0.052394655,-0.6807529,0.8463563,-0.028975172,0.27397534,0.38716623,0.2570609,-0.35629523,-0.4275083,-0.07152157,1.0089469,0.5813102,0.08747398,-0.2533922,-0.19646618,-0.30943775,0.07414949,-0.0007697275,0.5224999,0.955389,-0.057070494,0.06290846,0.18830818,-0.033725582,0.055571374,-0.017105095,-0.33807823,-0.13848712,0.035296127,0.7123225,0.5004373,-0.08820197,0.24846832,-0.15108292,0.33095652,-0.19552884,-0.30296966,0.5458982,0.99402803,-0.056986377,-0.022526551,0.53787225,0.6251049,-0.081700094,0.5235111,-0.7105504,-0.345241,0.40108493,-0.09470503,-0.39885712,0.19283718,-0.37322012,0.23792921,-0.872564,0.4367221,-0.69417924,-0.5448717,-0.84209925,-0.07184452,-3.1662738,0.27174443,-0.123401865,-0.23193401,-0.16426262,-0.31050208,0.4214702,-0.7422372,-0.57967365,0.27405277,0.039052382,0.6798115,0.024098288,-0.049502216,-0.3633713,-0.33495456,-0.35240558,0.122048415,0.02385721,0.09077522,0.032091398,-0.388161,-0.027002582,-0.24191563,-0.3561083,0.037835333,-0.5448761,-0.67894936,-0.26194736,-0.42240953,-0.3767126,0.63781077,-0.1364492,0.09376453,-0.08863127,-0.055352755,-0.100384355,0.34399146,0.066172674,0.26181,0.011061054,-0.13060194,-0.14534643,-0.24893202,0.12565948,0.2785071,0.1526714,0.40542296,-0.52173704,0.18555993,0.483662,0.5877306,-0.23138016,0.910575,0.44163984,-0.22269493,0.36426273,-0.18908808,-0.40575176,-0.68239844,-0.29748964,-0.024456529,-0.3379772,-0.59146184,-0.05884185,-0.36297458,-0.68964857,0.6300368,-0.03695385,0.21819848,-0.07260917,0.05887811,0.21657664,-0.06263506,-0.08559508,-0.11575126,0.009920446,-0.39586395,-0.31066784,-0.8610721,-0.46815225,-0.18000475,0.92174184,-0.05577402,0.035150457,0.092687,-0.25135082,0.2151083,-0.08645275,-0.04662347,-0.08402531,0.28569022,0.1907726,-0.7307777,0.69221914,0.2337291,-0.23675302,-0.44462246,0.25778395,0.8436166,-0.57231563,0.3714945,0.40591037,-0.11082309,-0.17085114,-0.5795866,-0.12826182,-0.023789007,-0.3397857,0.48844507,0.18552534,-0.6568771,0.61340374,0.2796473,-0.14267889,-0.7674909,0.5132106,-0.08762957,-0.14708385,-0.042811632,0.3636665,-0.11888332,0.32804075,-0.2657836,0.41749606,-0.5158616,0.2378931,0.29779947,-0.003419424,0.362382,-0.12521195,-0.043128528,-0.790316,-0.096413665,-0.56317586,-0.28300664,0.23536602,0.007329143,-0.16567326,0.35971826,0.18752742,0.41479975,-0.12573296,0.16082597,-0.047263246,-0.33649474,0.27687123,0.5783783,0.37513316,-0.277333,0.59584224,0.121654525,-0.05600706,-0.49868932,0.032796107,0.3534835,0.08531288,0.42671555,-0.22861105,-0.07792713,0.42240193,0.88147485,0.21929139,0.57624763,0.068886004,-0.17996232,0.42387292,0.1283167,0.44674474,0.07161664,-0.35847208,0.08558856,0.07845705,0.030937748,0.35249296,0.017799735,0.27642673,0.0044797203,-0.2249844,-0.035287913,0.29226768,-0.06833711,-1.4165742,0.503019,0.23938744,0.8138171,0.7818236,-0.072909795,0.13372687,0.6574173,-0.2859527,0.043437146,0.17609371,0.05126532,-0.5266784,0.6321819,-0.75928295,0.2465853,-0.061277136,-0.013318672,-0.05452742,-0.141979,0.50429565,0.67258334,-0.17960241,0.046146426,-0.23335439,-0.13440758,0.3447,-0.47542036,0.17689769,-0.2182784,-0.32267824,0.6953463,0.52829045,0.31368417,-0.14796449,0.006873266,0.0821503,-0.11765515,0.32910743,0.016386935,0.013070395,0.0051820003,-0.56645846,-0.22190253,0.46237656,-0.015678708,0.18594867,0.1112078,-0.33634293,0.08822755,0.030454049,-0.13343175,-0.040924434,-0.7893528,0.12914872,-0.38033056,-0.027218966,0.5781439,-0.31298286,0.26244608,0.15850295,0.039404087,-0.15022352,-0.23086992,0.18892911,0.49228984,0.12039817,-0.29034176,-0.29089582,0.11208406,0.15435164,-0.33638948,-0.023687784,-0.14527224,-0.03622572,-0.685638,0.4517393,-0.03773331,-0.23706405,0.2532433,-0.13237245,-0.13898781,0.4975294,-0.20353907,-0.1943998,-0.014772203,-0.17084026,-0.07176953,-0.13567029,-0.017039133,0.29437235,0.08157653,0.16257617,-0.09537716,0.07123684,-0.072937496,0.6110191,0.28353006,0.27221876,0.37330818,-0.16578014,-0.5155412,0.052498393,0.024647256,0.38983056,0.102446094,-0.024045793,-0.11473537,-0.5364539,-0.40515238,0.1692765,-0.11553991,0.34892273,-0.029694628,-0.230831,0.7561535,0.2210912,1.1829859,0.07928297,-0.40419468,0.04425969,0.56557375,-0.10634605,-0.12843014,-0.3618596,0.84825146,0.42159718,-0.2771528,-0.08715845,-0.33691865,-0.061562512,0.30740488,-0.16895366,-0.062195007,-0.06684815,-0.74320626,-0.36005503,0.26085976,0.36700037,-0.06308623,-0.11108413,-0.099734314,0.28151688,0.14921294,0.43335602,-0.5832957,-0.053033408,0.4081511,0.100327104,-0.024109712,0.04171861,-0.22112063,0.35456768,-0.75334257,0.158197,-0.24878184,0.09569471,-0.1863371,-0.3086797,0.18249765,0.0641255,0.29416,-0.32506114,-0.4928128,-0.086732,0.4327114,0.1579189,0.16769013,0.5751067,-0.26662806,0.15780681,0.14983234,0.4506814,1.1203387,-0.2440636,-0.089431174,0.2462377,-0.5520904,-0.5834647,0.16971575,-0.30030853,0.3099596,-0.19944565,-0.46715686,-0.64112,0.23809195,0.30306152,-0.11844381,0.14270362,-0.62425065,-0.28399938,0.39885357,-0.3142448,-0.27915102,-0.3078105,0.096557274,0.58100426,-0.49789274,-0.40535495,-0.0021809111,0.16040945,-0.5023355,-0.60930544,-0.032468013,-0.36338872,0.4831393,-0.003010713,-0.37733138,0.13133852,0.14269866,-0.45481104,0.013982648,0.14926805,-0.35470915,0.038091406,-0.2879297,0.055169187,0.84184164,-0.061690368,0.019474354,-0.52153677,-0.4980462,-0.8231499,-0.40100625,0.7532331,0.2488056,-0.018629197,-0.5688072,0.12427889,-0.080624074,0.19679517,0.013533986,-0.25299257,0.2828561,0.20143414,0.50671065,-0.017149618,-0.6738315,0.30146438,0.21113577,0.04255016,-0.43862948,0.5069361,-0.02910871,0.6502634,0.10093616,0.13376054,-0.039280884,-0.5416803,0.25583535,-0.11524666,-0.162476,-0.62456924,0.10586458,169 +622,0.43909267,-0.19819227,-0.2851422,-0.16326417,-0.1530015,0.034272857,-0.21820332,0.3575476,0.20625731,-0.47130612,-0.29976174,-0.26273486,0.1278845,0.3762991,-0.2106073,-0.6055124,-0.03375524,0.13839816,-0.3611321,0.60787314,-0.4853061,0.1920444,0.10703576,0.4561946,0.2857412,0.11405896,0.21168683,-0.17583427,-0.20475857,-0.28890026,-0.106325895,0.38252708,-0.72264683,0.27763954,-0.13713011,-0.32570663,-0.015657496,-0.36711296,-0.41106626,-0.8074525,0.21863113,-0.9757862,0.42738774,0.16594537,-0.25932437,0.3769881,0.19380614,0.20435153,-0.21703172,-0.09472808,0.18005091,-0.3006589,-0.18126033,-0.07212616,-0.03702226,-0.39785114,-0.6348453,0.07875768,-0.37486437,-0.13373142,-0.47589138,0.19087833,-0.32097685,-0.019143214,0.08016272,0.5137959,-0.4467931,-0.06684519,0.16817181,-0.14882912,0.45289284,-0.5525525,-0.3002249,-0.15944704,0.22055973,-0.27820545,-0.21044558,0.3322088,0.3560282,0.46297053,0.018267252,-0.16994278,-0.274437,-0.08716007,0.13495363,0.3952332,-0.25059906,-0.6683836,-0.07541443,-0.12433961,0.28115574,0.19272739,0.066134706,-0.24959055,-0.038836196,0.10706169,-0.2943718,0.37938344,0.53407675,-0.27568254,-0.3920363,0.23257788,0.45416948,0.046553418,-0.021744935,-0.04479198,0.09030687,-0.40957293,-0.09523574,0.10778424,-0.3656279,0.6239684,-0.23807772,0.11975439,0.7326832,-0.3153543,0.111995965,0.10456533,0.05772672,-0.11917679,-0.18480007,-0.4100771,0.3081559,-0.5744496,0.18994313,-0.33684048,1.0111932,0.15344247,-0.6695105,0.24934033,-0.5529122,0.16849783,-0.22328326,0.7037311,0.6999152,0.42752773,0.4747316,0.6193275,-0.5228245,-0.015713416,0.005389234,-0.313888,0.15578482,-0.38872975,0.02827793,-0.3773258,-0.1494103,0.13751009,-0.06690118,0.038382895,0.3991747,-0.4966645,-0.034965817,0.17177725,0.77106607,-0.2854177,-0.014769146,0.7629001,1.11279,1.0348536,0.17328757,1.186417,0.35686156,-0.16278793,0.13066873,0.005603309,-0.6685581,0.33060327,0.37503022,-0.2675784,0.0853865,0.07398062,-0.021049835,0.3315169,-0.6710501,-0.031904038,-0.23282312,0.25348112,-0.01086308,-0.056709416,-0.4781616,-0.35377863,-0.03037714,-0.031346798,-0.028780947,0.36407387,-0.12403551,0.49711683,0.11528846,1.0425187,-0.0701036,-0.010402739,-0.07420756,0.6103766,0.019202547,0.011787222,0.052367512,0.20829996,0.42448142,0.11929855,-0.71294504,0.121927746,-0.23323403,-0.45115936,-0.22208677,-0.34583628,-0.002360717,0.12762037,-0.22469448,-0.17567986,-0.19645882,-0.21198283,0.5381843,-2.5579436,-0.045993898,-0.06611133,0.16755547,-0.13708217,-0.15109856,0.0136470515,-0.59256274,0.5374862,0.3761442,0.5342516,-0.71405894,0.10878175,0.5049512,-0.56559664,-0.21651822,-0.77640593,-0.16332634,-0.12219075,0.42856374,0.06425292,-0.049815528,0.046211403,0.02546694,0.60785997,0.1325919,0.18327552,0.16517378,0.30290553,0.042335745,0.3442046,0.15757273,0.47557625,-0.31694204,-0.23037912,0.41629127,-0.3736973,0.30682582,-0.23775242,0.017970165,0.43724093,-0.3383784,-0.8863074,-0.7868029,-0.5091698,1.2452604,-0.21617723,-0.5798,0.24455863,0.055464193,0.045799576,-0.006424372,0.37805653,-0.23497353,0.036961637,-0.86534476,0.019494763,0.030148549,0.19351894,0.046953455,0.051535275,-0.48461592,0.6117576,-0.0717197,0.2064253,0.35704437,0.25225767,-0.438082,-0.6895152,0.05617889,1.0376296,0.40837485,0.25655746,-0.32341924,-0.3379785,-0.28430408,-0.16664106,0.14645174,0.50274694,0.7570962,-0.06150317,0.16521165,0.26556438,-0.104007706,0.050661862,-0.10281475,-0.3922207,-0.17344196,0.22220062,0.72772056,0.6611664,-0.14955649,0.3668615,-0.044568352,0.24422798,-0.050650734,-0.43925518,0.70680994,1.1253537,-0.118237264,-0.12655763,0.7587328,0.5815708,-0.3090502,0.6084343,-0.6877916,-0.5514402,0.61723477,-0.16909687,-0.5471524,0.08814759,-0.42386422,0.156278,-1.0521764,0.4285069,-0.35328737,-0.42537925,-0.65658385,0.03784957,-3.309523,0.107814424,-0.37660775,-0.17347027,-0.24048258,-0.24077217,0.4161863,-0.5291971,-0.5249619,0.2390852,0.118655525,0.6105514,-0.006576822,0.21024425,-0.3126957,-0.1029426,-0.26271412,0.22076339,0.2907058,0.2627807,0.010555308,-0.48811376,0.22036828,-0.091289096,-0.34379548,0.0028676367,-0.48189676,-0.6356983,-0.21594623,-0.50819266,-0.37747085,0.5610869,-0.5511903,0.06794703,-0.2031106,0.0068712602,-0.2660778,0.35870603,0.20692846,0.16535881,0.05392548,-0.010551769,-0.11593868,-0.34272173,0.39220974,0.043155484,0.05185555,0.3818043,-0.20367765,0.15928735,0.5459616,0.51643765,-0.076283075,0.92006016,0.47273657,-0.03485397,0.2605944,-0.33675745,-0.40382516,-0.7020773,-0.32739285,-0.17234072,-0.32471746,-0.3776291,0.007222164,-0.28125006,-0.8114477,0.6137097,-0.10919891,0.33531874,-0.19443956,0.24836475,0.39698452,-0.24212262,-0.1065615,-0.11269304,0.00698951,-0.7307613,-0.20613256,-0.78206474,-0.54949147,0.07763077,0.7620761,-0.13655208,-0.07370741,0.103694476,-0.10970264,0.107480325,0.2095515,-0.038759585,0.037244353,0.57896656,0.109818704,-0.83692276,0.59198755,0.063717455,-0.065053016,-0.6267928,0.3687293,0.62135404,-0.7208265,0.42274967,0.6093812,-0.029815426,-0.04267114,-0.48002535,-0.30430177,-0.24201587,-0.16622011,0.37846082,0.18067844,-0.79356,0.530959,0.40542632,-0.26647016,-0.7851318,0.5493343,-0.006041678,-0.12346638,0.16963045,0.3434046,0.19144191,0.08747797,-0.10182015,0.20720537,-0.4659069,0.28501865,0.09184143,-0.08426164,0.38292557,-0.1400514,-0.092221566,-0.8561373,0.06310268,-0.5251429,-0.26904666,0.0920176,0.073410034,-0.12109751,0.34439597,0.09086467,0.40603468,-0.10727361,0.073378585,-0.13777536,-0.34096915,0.34583458,0.57114804,0.52286786,-0.43806523,0.7594561,0.066659205,-0.15282384,-0.109964415,0.010129475,0.39275837,0.13712515,0.35081065,0.12546064,-0.3323068,0.21528523,0.7330192,0.18570012,0.5738912,-0.047802787,0.001686275,0.37051913,0.16617237,0.28790885,0.049456183,-0.5187646,-0.08305835,-0.4686216,-0.020783829,0.50399905,0.11846157,0.42088002,-0.12818323,-0.11648483,0.034401715,0.038157463,-0.029210063,-1.156487,0.4692826,0.21442547,0.6841308,0.64440686,-0.14594579,0.16821851,0.78297544,-0.37676418,0.0050977594,0.36136296,0.21715233,-0.5042589,0.68094975,-0.87753254,0.4116084,-0.17974363,0.13951775,-0.06367612,-0.03026809,0.3201499,0.8157496,-0.22379485,0.058542363,-0.072608724,-0.3910485,0.31952617,-0.45761812,0.21941763,-0.5017955,-0.17284921,0.74887836,0.47855127,0.29135334,-0.18444262,-0.059235968,0.062040273,-0.12383412,0.2743749,0.026309889,0.014438712,-0.056333356,-0.6051743,-0.18541215,0.62597185,0.004594363,0.19292644,0.0150187295,-0.15913273,0.29770246,-0.30469128,-0.030373152,-0.08170894,-0.6763171,-0.12480216,-0.2874768,-0.38198745,0.5917861,-0.43593374,0.19724132,0.21850087,0.15969276,-0.253977,0.09231683,0.24360286,0.5478364,0.11620903,-0.34685114,-0.36418825,-0.003128084,0.24728945,-0.17418163,-0.22909194,-0.08494007,-0.11329719,-0.47833017,0.49317396,-0.29341665,-0.163929,0.078605205,-0.26498425,-0.023496522,0.6102091,-0.023641856,-0.14260253,0.18450461,-0.14231429,-0.2777755,-0.1302654,-0.11382853,0.28680024,0.27605394,0.05140578,-0.19958463,-0.27974442,-0.20134386,0.29047954,-0.11066453,0.27550504,0.3119224,0.06278772,-0.28539884,-0.18468904,0.065008506,0.43445662,0.06869432,-0.18188961,-0.15824877,-0.41269472,-0.33406317,0.04637963,-0.136623,0.24666384,-0.0038009034,-0.41838852,0.72986054,-0.13337444,0.99965465,0.012096967,-0.4766335,0.12348202,0.49129847,-0.15514758,-0.051894136,-0.29932737,0.89393675,0.44675958,-0.16333954,-0.17094828,-0.5953527,0.046207152,0.26398155,-0.16922225,-0.20263806,-0.051667623,-0.61217415,-0.34560552,0.36378437,0.4436115,-0.023056097,0.018660618,-0.042248204,0.26029742,0.13757831,0.6526473,-0.50687003,-0.07574176,0.34891242,0.30530232,0.021102218,0.14074276,-0.27074462,0.43946213,-0.5962935,-0.02073862,-0.3825726,0.041622803,-0.41254786,-0.3356735,0.20029235,0.1315203,0.40792227,-0.1578024,-0.33047566,-0.24633199,0.5661447,0.11692,0.0912946,0.6213572,-0.285271,-0.035694595,0.047179278,0.46380454,1.1136775,-0.3725672,-0.029878823,0.18179105,-0.32688463,-0.5950274,0.60098743,-0.60556614,0.15193973,0.0983254,-0.32929686,-0.5218058,0.052620776,0.2674065,0.0981205,0.18864878,-0.6217238,-0.14054781,0.21389325,-0.2798929,-0.24542156,-0.22696151,0.23506238,0.49456835,-0.36533037,-0.19001985,0.055440526,0.31243452,-0.21749766,-0.55265695,-0.067496344,-0.27997497,0.3678767,0.18594998,-0.41814497,-0.072696514,0.26099417,-0.4418352,0.0025356503,0.11393236,-0.35966602,0.1011,-0.34978908,0.28653458,0.7217778,-0.16325396,0.18236017,-0.7367264,-0.37366262,-0.7984822,-0.31349266,0.60106915,0.26969716,0.10181706,-0.53168315,0.03318704,-0.12679504,0.059210487,0.0037794297,-0.5695573,0.56177074,0.23303911,0.45558354,0.083296224,-0.702227,-0.015253002,0.07490198,0.03167804,-0.70261997,0.503383,-0.10911744,0.80147636,0.1451526,0.12731025,0.22057398,-0.5238332,0.008767857,-0.20406574,-0.3076145,-0.6864863,0.055350836,174 +623,0.23508285,-0.13497165,-0.70761263,0.03973901,-0.4161046,0.15051955,-0.39106977,0.08477128,0.1993538,-0.55698836,0.012265637,-0.26266837,-0.06311646,0.29103345,-0.035220437,-0.53381926,0.052783545,0.44032186,-0.6261978,0.7250906,-0.37647003,0.27201578,0.28227976,0.24576154,-0.098706454,0.070217684,0.23289187,-0.18862425,-0.049948674,-0.23455653,-0.13850711,0.083456315,-0.5596725,0.39475626,-0.07461907,-0.39062655,0.1610638,-0.34857857,-0.13620299,-0.66392887,0.009306147,-0.7560407,0.6305184,0.11235228,-0.25738412,0.2290423,0.3808214,0.20060757,-0.069170214,0.0487634,0.21572201,-0.48787135,-0.61032295,-0.422109,-0.37359473,-0.46902063,-0.5682844,-0.14751595,-0.53167516,0.116918966,-0.34575206,0.37841687,-0.36328653,-0.12733687,-0.20996942,0.413987,-0.33041957,0.32098168,0.1623242,-0.32366997,0.11198903,-0.50505,0.017905822,-0.13175549,0.18445018,0.21684207,-0.27920386,0.14622304,0.26685187,0.7075673,0.20113581,-0.29005948,-0.32209042,-0.22043107,0.1341477,0.56931126,0.019553801,-0.040421046,-0.21677485,-0.2627158,0.25710118,0.33974805,0.00540118,-0.22291343,-0.1731403,-0.36526102,-0.28889495,0.12207244,0.42376012,-0.37682426,-0.13936864,0.4386967,0.26184615,-0.11822883,-0.18106978,0.15810393,-0.05478339,-0.5846714,-0.2680443,0.22278056,0.05907353,0.49920756,-0.2215895,0.3649336,0.61684597,0.00635491,-0.3334144,0.08145322,0.00029083856,0.045650266,-0.28122193,-0.07622487,0.3570366,-0.54738486,-0.09843208,-0.4049086,0.7972942,-0.071041234,-0.66775507,0.37086293,-0.61611336,0.1296947,0.05248906,0.78813577,0.7463046,0.7582734,0.08550675,0.8742007,-0.35281834,0.25646466,-0.24447481,-0.25767827,0.16398628,-0.04966702,0.46825936,-0.36606914,0.18503952,-0.11460078,0.0016208612,-0.008760769,0.8436223,-0.46189374,-0.3397355,0.039151587,0.8491,-0.27382553,-0.14633083,0.66781294,0.8576132,0.9189748,0.07181342,1.274213,0.3830508,-0.14662439,-0.24744003,-0.03671768,-0.8359372,0.1596975,0.091832645,0.5566454,0.10237789,0.14403298,-0.24966821,0.53333306,-0.18580039,-0.23759486,-0.24445167,0.25149325,-0.1664252,-0.1458555,-0.29424584,-0.3874434,0.16148883,-0.1458427,0.37521335,0.47960517,-0.13627289,0.73104817,0.054123897,1.7531657,-0.094696775,0.15585886,0.2154471,0.14608277,0.32363003,-0.033891227,-0.11202638,0.51637787,0.16314451,-0.08856131,-0.57184637,0.040183607,-0.1348995,-0.5641614,-0.19990213,-0.22412099,-0.3112237,-0.3460191,-0.19567083,-0.3889582,-0.16646884,-0.5069349,0.35908172,-2.5083232,-0.1435791,-0.0729042,0.29583237,-0.24288188,-0.2216065,-0.26181224,-0.478015,0.7131662,0.25608763,0.5671746,-0.50729823,0.45417506,0.44331744,-0.4559194,-0.28690296,-0.83705735,-0.038488373,-0.08272162,0.4589686,-0.12648019,-0.42652544,-0.2150983,-0.26487863,0.6062826,-0.18093652,0.14502159,0.50092024,0.5648536,-0.033825282,0.5119423,0.013140935,0.73976666,-0.508678,-0.30821896,0.31372184,-0.5003827,0.5735086,-0.1686953,0.067964524,0.4348669,-0.4566504,-0.69623727,-0.4380706,0.024124531,0.9608339,-0.36936644,-0.5530725,-0.01158309,-0.3659546,-0.14614369,0.15674923,0.53646415,-0.009512873,0.079843834,-0.5890528,0.026360832,0.047463957,0.48044586,-0.046580706,-0.0031155485,-0.44796917,0.6301218,-0.14790998,0.75213474,0.4947682,0.15693809,-0.40797657,-0.21336962,0.19677892,0.87006754,0.14695062,0.09162671,-0.28782362,-0.39854905,-0.123130694,-0.3329317,-0.089128144,0.6261925,0.5389255,-0.108884975,0.1940554,0.45656264,-0.3367216,-0.03715246,-0.31074885,-0.3517952,-0.18520373,0.12466948,0.47160047,0.7453159,0.102162525,0.4778391,0.0010248239,0.44166696,-0.34976628,-0.66762614,0.6179706,0.57122904,-0.240539,-0.20447108,0.64359474,0.44242284,-0.13649838,0.58506393,-0.52917945,-0.5936274,0.29325706,-0.03630437,-0.50726235,0.12775265,-0.21599467,0.0021110636,-0.85940117,0.04167974,-0.31521717,-0.5574165,-0.71457744,-0.051660415,-2.5906847,0.2319104,-0.31331727,-0.06787907,-0.2211004,-0.05707242,0.114181906,-0.23926584,-0.38989764,0.15162988,0.326561,0.48732117,-0.13133456,0.16539481,-0.36843726,-0.31538236,-0.26941797,0.2490615,-0.071464874,0.15101098,-0.28580415,-0.52751386,0.09886729,-0.121053904,-0.17634854,-0.07263757,-0.68675953,-0.21215843,0.007960086,-0.2996512,-0.37149063,0.6391388,-0.3479505,0.020481901,-0.44672346,0.09359605,0.13462433,0.24080513,-0.034658004,0.23862466,-0.010026391,-0.19940679,-0.17488582,-0.20471624,0.06052856,-0.11362048,0.28760904,0.5332153,0.0013999847,0.12644821,0.3844479,0.5255397,0.03497999,0.88101834,0.24415728,0.017572755,0.29356045,-0.1107099,-0.20760895,-0.45418623,-0.18040484,-0.20316352,-0.51120955,-0.33741167,0.12109562,-0.28813484,-0.9141178,0.7853928,0.35829207,-0.29476318,-0.050160807,0.66775614,0.46772724,-0.2661028,-0.048419956,-0.22276634,-0.3034979,-0.28836682,-0.47741917,-0.7778617,-0.45193607,0.17761843,1.1656839,-0.41272208,-0.009404402,0.14977425,-0.2820926,-0.16038671,0.5084617,0.11296581,0.28538853,0.46910858,0.02321742,-0.6265862,0.6355801,-0.21085276,-0.10861328,-0.56273574,0.30364567,0.57943594,-0.8416102,0.3866919,0.5096934,0.04446446,-0.07869485,-0.7878091,-0.18524916,0.13886383,-0.24994276,0.31604502,0.33434618,-0.8319739,0.6185265,0.263757,-0.07392398,-0.97002834,0.0074207094,-0.032322966,-0.39467862,0.025329646,0.32755104,0.18207106,0.17060553,-0.34252375,0.0881884,-0.4536945,0.30749366,-0.017899714,-0.17622031,0.47592053,-0.4434239,-0.27525532,-0.7681507,-0.080589086,-0.53445846,-0.2865259,0.3453186,0.060028084,0.12322479,0.16410185,0.0882179,0.27760702,-0.34363043,0.06583108,-0.29987553,-0.21336064,0.37325615,0.4024695,0.207244,-0.5549729,0.6786762,-0.037373513,-0.091984384,-0.09474034,0.043653194,0.371203,0.15370086,0.5972602,-0.09726914,-0.17467394,0.20793557,0.87108266,0.12241921,0.36951384,0.24653032,-0.033494804,0.5450629,0.012645217,0.17893738,-0.10248419,-0.49048072,-0.11165815,-0.33286604,0.3189732,0.6006912,0.17094305,0.7229223,-0.06958098,0.09476423,0.10299547,0.1691096,0.06562522,-0.76087433,0.4468455,0.33551413,0.5309659,0.5782618,0.17901948,0.054352872,0.79468226,-0.43342793,0.17648576,0.2609057,-0.19475079,-0.25514358,0.710287,-0.7986857,0.28564554,-0.27341932,-0.012313281,0.15513614,0.0063415216,0.4453813,1.0473832,-0.14279245,0.0972279,-0.013863937,-0.38674262,-0.011300115,-0.14034213,-0.03654596,-0.44302866,-0.4017111,0.69108766,0.27508837,0.49734402,-0.33758357,-0.062106546,0.36076954,-0.030412756,0.17232227,0.109148756,0.049258754,-0.0820106,-0.37525484,-0.051196754,0.8350229,-0.015068054,0.24185163,0.20641294,-0.21912374,0.3925889,-0.12998685,-0.17942649,-0.14623497,-0.47854567,0.21221901,-0.3519891,-0.57677835,0.5826426,-0.0053728614,0.18581659,0.14602242,0.11753725,-0.22786936,0.46666738,0.060890444,0.8002915,0.0785705,-0.09678362,-0.034299836,0.006167054,0.17927216,-0.36286637,-0.09714831,-0.19307202,0.14966199,-0.81584686,0.3527202,-0.25860408,-0.37630442,0.15739194,-0.15501168,-0.0870796,0.44856754,-0.08266808,-0.05550025,0.068594545,-0.17294209,-0.40674523,-0.2332386,-0.20386201,0.19921468,-0.11817488,0.00029785818,-0.19324988,-0.0654263,-0.075372964,0.39454472,0.03217659,0.021548977,0.22614273,0.22572173,-0.4137099,0.22246951,0.18118554,0.66144526,-0.09629214,-0.016659755,-0.20654644,-0.21227019,-0.35749483,0.36119908,-0.14021425,0.17584863,0.048136625,-0.40078813,1.0712606,0.010619888,0.8689203,0.03548938,-0.26247686,0.11591336,0.5404507,0.16488358,0.19493955,-0.26875484,0.9416104,0.43566,-0.08431096,-0.11859703,-0.52081835,-0.13051948,0.45026547,-0.36834273,-0.10371472,-0.064212225,-0.7446481,-0.108604945,0.18562382,0.07801456,0.06589882,-0.32305983,0.15375704,0.12748027,0.19448665,0.17669916,-0.6500416,-0.03836246,0.35540062,0.29684114,-0.1525005,0.09956268,-0.35426092,0.43798226,-0.6956695,0.30432814,-0.24024627,-0.032369055,-0.058506165,0.01976846,0.25974935,0.03628883,0.17797302,-0.28923327,-0.27539554,-0.061350934,0.42874452,0.4416134,0.45211047,0.8612193,-0.25019747,-0.0064216396,-6.309839e-05,0.6194259,1.188527,-0.46602324,-0.24754861,0.32601345,-0.27131188,-0.81250703,0.15104939,-0.37836966,-0.17230909,0.031101497,-0.44673917,-0.26515344,0.25661343,0.15701869,0.005058949,0.08540474,-0.6569776,-0.0320146,0.18865493,-0.37377453,-0.21356465,-0.30044034,-0.029600987,0.76173884,-0.008761536,-0.23047444,0.019451784,0.1340034,-0.413926,-0.5670806,0.12470468,-0.5740529,0.18365607,0.21878503,-0.34081808,0.042729232,0.12224393,-0.71571213,0.048283935,0.24493894,-0.20560834,-0.022286724,-0.47717813,0.070647255,0.7930984,-0.06426359,0.13489524,-0.14982626,-0.6088431,-0.67852664,-0.35869974,0.2861172,0.0035015047,-0.029596861,-0.50323254,-0.14776573,-0.09886419,-0.34633234,0.07218075,-0.55926764,0.45707172,0.11894401,0.16335715,-0.15924686,-0.99506575,0.27524793,0.06951797,-0.28831017,-0.3933884,0.40970275,-0.3011613,0.9744914,0.113267645,-0.0937502,0.44796398,-0.8106635,0.38805625,-0.3659314,-0.30762962,-0.719068,-0.20757344,176 +624,0.4850915,-0.30374128,-0.59936535,-0.23907068,-0.36204183,0.012470186,-0.117875576,0.54557663,0.42202282,-0.2759507,-0.21318534,0.043360915,-0.09386459,0.5855928,-0.04037216,-0.689147,-0.14834116,0.39603505,-0.7070935,0.33455828,-0.5447762,0.33419684,0.032869585,0.6314402,0.34613177,0.1016307,0.047295276,0.14561652,0.046928708,-0.023588635,-0.13507096,0.06802028,-0.6738506,0.16562063,-0.124606244,-0.47148356,-0.12522994,-0.6431639,-0.46390417,-0.8619999,0.31685528,-0.80570805,0.67365205,-0.18012494,-0.41762236,-0.005221344,-0.13251002,0.45976508,-0.24762344,-0.044403236,0.06185821,-0.3137874,-0.021870123,-0.07822948,-0.21904516,-0.2665578,-0.6422437,0.08956626,-0.36801973,0.056468066,-0.036780927,0.20924759,-0.32529134,0.19088922,-0.26828325,0.45707244,-0.42313722,-0.0372695,0.33985013,-0.03162516,0.11869724,-0.55241495,-0.08771643,-0.124559216,0.24908789,-0.063489676,-0.44029078,0.43239185,0.12382027,0.5158889,0.031948544,-0.33609724,-0.36992413,0.24635626,-0.1047926,0.52176386,-0.04454496,-0.14608835,-0.2517667,0.1559796,0.41980588,0.16540115,0.15594281,-0.30901968,-0.045176193,-0.091759324,-0.0036532064,0.40259778,0.5716725,-0.11068843,-0.34798643,0.37618113,0.5681459,0.2050763,-0.145134,0.13776976,0.03427378,-0.446303,-0.26853037,0.052091785,0.0115374625,0.61551976,-0.06046558,0.09431729,0.6670481,-0.16864859,-0.17442217,-0.16073965,0.016823424,-0.01817772,-0.2151498,-0.4307022,0.39080402,-0.41142145,0.14557594,-0.15112998,0.70900434,0.15116,-0.88779837,0.32415628,-0.6059834,0.17923234,-0.12139486,0.57193416,0.8497869,0.5639684,0.4204519,0.929521,-0.34096593,0.23267728,0.08336795,-0.25173455,0.05842581,-0.36300188,0.10262347,-0.578334,-0.0731225,-0.20491745,-0.41066784,0.2323922,0.37094492,-0.52995586,-0.2077999,0.14324124,0.5345137,-0.37877047,-0.13766812,1.011734,1.0271122,1.4669833,0.008874022,1.3313669,0.51232064,-0.21302794,0.08391642,-0.2750935,-0.7375324,0.19676143,0.24927877,-0.071811154,0.5695589,0.2110621,0.051551003,0.46193865,-0.46249834,0.14517072,-0.053583078,0.07520158,-0.06847232,-0.2527725,-0.6714236,-0.3762059,-0.034960486,0.09007345,-0.1062839,0.20645168,-0.22437309,0.5625596,-0.082292095,1.4713603,0.13443601,-0.102161855,-0.17717507,0.49161574,0.1503224,-0.40743554,-0.20505606,0.16401243,0.44834307,-0.060623664,-0.54842955,-0.01523019,-0.21574384,-0.23797584,-0.3383651,-0.3160186,0.09557601,-0.19396609,-0.2980832,-0.45681483,0.123854086,-0.33914807,0.42069948,-2.2718992,-0.38257995,-0.0004890424,0.44111776,-0.2317964,-0.2993233,-0.34592983,-0.52518976,0.2321654,0.28957975,0.45318073,-0.65332484,0.53984326,0.37008965,-0.60662407,0.0080823535,-0.77737737,-0.0057412717,-0.040259197,0.10011094,0.061471164,0.015858008,0.02130166,0.25676885,0.53952396,0.001182657,-0.091760635,0.3492281,0.5134437,0.015241535,0.58808476,0.12960881,0.6301244,-0.2802337,-0.15595399,0.5056461,-0.41128725,0.26913476,0.015308435,0.1137968,0.5715493,-0.55508846,-0.96061075,-0.67998636,-0.22687952,1.0973128,-0.23751648,-0.44141,0.16125718,-0.43493763,-0.27556032,-0.013859218,0.3622728,-0.25720122,-0.14335373,-0.7671871,-0.28570688,0.0104536135,0.17315117,-0.15887544,0.12772718,-0.4305383,0.728444,-0.22953771,0.44430712,0.32827452,0.29144618,-0.12114586,-0.5409809,0.12730144,0.64772826,0.41656816,0.037877623,-0.38065946,-0.17988107,-0.3093694,-0.106847286,0.07302875,0.6771222,0.82821345,-0.13560233,0.025038539,0.39151695,-0.11995772,-0.003557824,-0.093555965,-0.2657178,-0.20758596,0.07484623,0.71087563,0.86379296,-0.016083479,0.57734144,-0.2081872,0.36814228,-0.0902651,-0.6412243,0.42812902,1.0548947,-0.08777615,-0.327956,0.55596775,0.2903645,-0.3922083,0.46183822,-0.6548337,-0.15293801,0.54889137,-0.12917353,-0.42686528,0.06618762,-0.29912958,0.17848851,-0.960344,0.24678575,-0.18277279,-0.76595265,-0.7329976,-0.11639003,-2.409611,0.23034477,-0.19249766,-0.03659759,0.14774022,-0.2754238,0.10518393,-0.6129292,-0.6780042,0.1432376,0.10712687,0.77111787,-0.13750489,0.11033575,-0.23079923,-0.38944536,-0.5898832,0.11694532,0.22567087,0.38766003,0.18669364,-0.44986537,0.0065792296,-0.35064286,-0.57105607,-0.11987886,-0.5066324,-0.5863912,-0.17091586,-0.61321265,-0.24284038,0.75424665,-0.17781116,-0.01844268,-0.26269552,-0.07813854,-0.03008771,0.31041953,-0.036463786,0.17018102,0.2183555,-0.116012216,0.05051162,-0.22262612,0.14513296,0.13122591,0.27304807,0.2818101,-0.28399172,0.34897742,0.7293087,0.86659235,-0.20366624,0.80856353,0.64076483,-0.060429677,0.09125516,-0.2855763,-0.33211783,-0.5544884,-0.3004637,0.03867685,-0.5463116,-0.5393836,0.022762362,-0.42980674,-0.9012815,0.5045481,0.050709084,0.2338999,0.01417185,0.18976879,0.46674532,-0.14070979,0.07250631,-0.21701597,-0.21847233,-0.48825103,-0.52911896,-0.5724139,-0.81199265,0.0003515436,1.5716617,-0.22604735,-0.10104329,0.07299283,-0.47354227,0.22397092,0.17160845,-0.015123367,0.22870715,0.39084688,-0.18189393,-0.7184218,0.16810082,-0.15535937,-0.07603859,-0.6817159,0.25095236,0.8439734,-0.6784068,0.5584539,0.26117644,0.09858456,-0.012215889,-0.61225986,-0.23878966,0.043980367,-0.22639173,0.598726,0.18321027,-0.613171,0.5166077,0.18047282,-0.34763744,-0.82512534,0.34913927,0.02789358,-0.19111618,0.15128693,0.30806285,-0.019569525,-0.12690265,-0.14443733,0.18343224,-0.2988581,0.21685314,0.31401294,-0.0032336162,0.043029718,-0.135689,-0.10636163,-0.86429024,0.04916317,-0.49281585,-0.23588815,0.100024,-0.013643329,0.2993077,0.10334036,0.31995642,0.4029735,-0.28235114,-0.007836049,-0.18464173,-0.3956159,0.3546788,0.39043632,0.3461315,-0.6066069,0.41082558,0.019842682,-0.047416206,-0.16573256,-0.109485865,0.50860494,0.12969472,0.30603957,0.033410322,-0.19807778,-0.026170429,0.6972742,0.14231645,0.33463022,0.11299021,-0.27614796,0.2034766,0.17848638,0.37995753,-0.16830167,-0.33834165,0.096842125,-0.13774301,0.12904137,0.41242367,0.12777187,0.22484706,-0.1552584,-0.2174216,0.24696253,-0.05946815,-0.12689625,-1.4413153,0.34163183,0.2656494,0.7881348,0.40527514,0.083776586,-0.028837048,0.5427391,-0.320947,-0.028242959,0.37518212,0.07445033,-0.42609993,0.3886864,-0.8124279,0.7357362,-0.0023488174,-0.07602322,0.11283016,0.28185174,0.64011735,0.73446363,-0.19290353,0.1421803,-0.09830657,-0.21480642,0.09935036,-0.427474,0.07535012,-0.74255586,-0.2961049,0.84616387,0.47939974,0.21785532,-0.14693156,-0.033725794,0.12691043,-0.14055657,0.21755633,-0.09354151,0.0180298,-0.0979581,-0.5771754,-0.10261158,0.39893436,-0.10545553,0.1007029,0.089774676,-0.2556799,0.20151018,-0.007999329,-0.13050058,-0.08381862,-0.863566,-0.16062821,-0.27415258,-0.31392428,0.35485518,-0.21571186,0.2156225,0.31372282,0.10297756,-0.28229827,0.25792646,0.16192767,0.92269295,-0.024551813,-0.13693729,-0.24684022,0.43884417,0.4507096,-0.29057792,0.1407196,-0.21662034,0.15470974,-0.5282455,0.5208152,-0.1136819,-0.37107605,0.24129097,-0.010003943,0.11925352,0.47569358,-0.41179106,-0.05784715,0.06412207,-0.14431018,-0.36733896,-0.03976554,-0.37837875,0.17889158,0.22716962,-0.2643908,0.05322526,-0.1169442,-0.026736412,0.6177209,0.096146055,0.45393452,0.29228115,-0.07543153,-0.5467026,0.033052288,-0.04345296,0.5607985,0.08498581,-0.3540146,-0.43087056,-0.14656268,-0.17590424,0.53434426,-0.11330093,0.22169194,-0.07090182,-0.22987872,0.747583,0.22285904,1.336092,-0.06158749,-0.40692917,0.117280684,0.43174013,0.0937867,-0.04582715,-0.40291756,0.8386074,0.5761285,-0.23453853,-0.16784708,-0.51250046,-0.2633261,0.20238511,-0.29361948,-0.2784731,-0.07479981,-0.6390223,-0.3307049,0.2861245,0.072139755,0.28857836,0.015838921,0.2309852,0.2263643,-0.009116737,0.24813154,-0.30646896,-0.05647662,0.3099306,0.30254197,0.1262376,0.14216632,-0.4431335,0.2764838,-0.7293111,0.20292324,-0.28780425,0.2363564,-0.064819574,-0.4106825,0.25655302,0.28185028,0.28842023,-0.25135672,-0.31840461,-0.2111505,0.7154738,0.09866944,0.3284282,0.6404246,-0.37952673,-0.056404114,0.11947692,0.29433915,1.1954093,-0.14580499,0.07225268,0.4299464,-0.25354654,-0.5726929,0.42167705,-0.2845463,0.19158009,-0.23059757,-0.13447258,-0.52629536,0.2339332,0.14158115,-0.07915783,-0.019576816,-0.52969843,-0.06577717,0.4133926,-0.32916468,-0.24801056,-0.52493036,0.14645208,0.5344285,-0.19288823,-0.53664887,0.15103036,0.35538864,-0.2640669,-0.3042646,-0.05857639,-0.35299274,0.36308765,0.0036565156,-0.5041597,-0.10132969,0.107636735,-0.44249514,0.14537184,0.3085931,-0.24904467,0.08075416,-0.2690908,-0.03031081,1.0264008,-0.18913788,0.33086884,-0.5985777,-0.54457414,-1.0148141,-0.22289586,0.24870084,0.28525797,-0.15722473,-0.8130747,-0.025147915,-0.068555556,-0.2736935,0.09091788,-0.3163031,0.37155226,0.12351458,0.34821442,-0.13705133,-0.9621607,0.08315016,0.13138393,-0.3128114,-0.51408905,0.57487065,0.10689933,0.8193274,0.12598008,0.2126335,0.06114857,-0.4766768,0.32749635,-0.31075552,-0.011977638,-0.58548015,-0.14504327,189 +625,0.5056971,-0.14045796,-0.7092669,-0.17623088,-0.1889676,-0.05624054,-0.16536275,0.57932854,0.4030167,-0.58197045,-0.029933687,-0.15417242,0.049662385,0.32393014,-0.11102597,-0.9100244,0.04012336,0.102350764,-0.31859922,0.37066585,-0.5309399,0.23720933,0.012384562,0.43985754,-0.0032285315,0.3432789,0.047344215,-0.16735809,-0.23732966,0.08680061,0.110667855,0.37532216,-0.6416407,-0.012260542,-0.20190524,-0.53676426,-0.011241629,-0.4004621,-0.3135412,-0.8121396,0.23895656,-0.9414254,0.5818247,0.10246888,-0.23874448,0.10887631,0.06747702,0.3597023,-0.17108376,-0.008381454,0.069970004,-0.13230838,-0.11035024,-0.055502467,-0.36825606,-0.40340585,-0.7048045,0.13148521,-0.54295933,-0.14388403,-0.15534171,0.176783,-0.39516622,-0.045315165,-0.044341806,0.40822938,-0.43925434,0.0007252005,0.47270775,-0.26064676,0.244968,-0.494103,-0.15778781,-0.114514045,0.25269663,-0.34060115,-0.19675387,0.19699809,0.35058963,0.6567334,0.01998098,-0.22484763,-0.46668437,0.122325465,0.1555818,0.46856144,-0.32591864,-0.45402622,-0.2562161,-0.003663627,0.15783194,0.18017527,0.26371816,-0.32301766,-0.028705252,0.27870587,-0.3118604,0.54186434,0.51904666,-0.42552102,-0.33812454,0.28646448,0.6905309,0.16300732,-0.109896615,0.23603126,0.13952607,-0.631503,-0.17758912,0.086058766,-0.00890686,0.5729404,-0.12513022,0.39408982,0.6974067,-0.2694553,0.06988193,0.13069037,-0.06073194,-0.06904158,-0.4689485,0.021266231,0.33368963,-0.554113,0.17305861,-0.25948766,0.66977566,0.20290898,-0.7821313,0.5271858,-0.5988294,0.19003186,-0.1881106,0.45350948,0.7618809,0.363373,0.18618724,0.711462,-0.50053203,-0.030077608,-0.16098131,-0.43620747,0.18022236,-0.18523829,0.18056811,-0.56073844,-0.04750618,0.10956991,-0.010203783,0.14651111,0.42213762,-0.7669001,-0.19834067,0.0888577,0.9532187,-0.20124982,-0.30091858,0.78686213,0.93457425,0.93084234,-0.004734484,1.3060964,0.23963414,-0.1359489,0.39600563,-0.24738643,-0.8934291,0.34668657,0.2148606,-0.44868377,0.38438734,0.114440314,-0.13828024,0.67346615,-0.0839426,0.13638255,-0.24590485,0.1442443,0.09341756,-0.22358854,-0.24130957,-0.15074867,-0.10746614,-0.12513056,0.16137783,0.22169748,-0.17873494,0.2786555,-0.047079865,1.7141589,-0.10871542,0.16212787,-0.009462396,0.4453955,0.22432338,-0.009896123,-0.08066854,0.14527723,0.10147548,0.21158998,-0.44535863,0.016240034,-0.35619453,-0.38114703,-0.18255973,-0.28754783,-0.079952836,-0.15220676,-0.6061715,-0.02656732,-0.23394577,-0.24159074,0.51285917,-2.6080606,-0.46088293,-0.06546379,0.3531067,-0.29662278,-0.4672824,-0.25229752,-0.50094444,0.38773707,0.29098222,0.6224978,-0.6821892,0.53665245,0.4649674,-0.51924396,-0.19469476,-0.61294395,-0.02372215,0.0077803116,0.17547092,0.01500519,-0.20107096,0.0636808,0.067605644,0.46066907,-0.1115931,0.012980044,0.16899508,0.5318369,0.034531567,0.50924563,-0.18967216,0.57556546,-0.4265533,-0.35779646,0.421968,-0.5140184,0.22188465,0.06215691,0.19173428,0.33418098,-0.38214386,-1.1269794,-0.7104736,-0.21827963,1.0404203,-0.077706866,-0.39873645,0.24414761,-0.24572141,-0.37997568,-0.070600815,0.47583383,0.104624666,0.12918499,-0.984269,0.13134386,-0.22482744,0.10170819,0.074842535,-0.03499544,-0.35683715,0.682676,-0.07366009,0.3180175,0.45117614,0.21581668,-0.32033885,-0.44665065,0.014930775,0.9713509,0.2654628,0.267953,-0.23990703,-0.15938346,-0.42408556,0.006477113,-0.03962861,0.4567959,0.76797396,-0.043661237,0.10426761,0.39161575,0.098034345,0.0834713,-0.15072764,-0.5435949,-0.14202839,0.10878681,0.54283834,0.7309406,-0.4614625,0.46518677,-0.04710158,0.30151328,-0.16330583,-0.53524274,0.55448794,0.74513364,-0.30970463,-0.2825094,0.5211626,0.28453708,-0.5660082,0.5604066,-0.70057285,-0.36701304,0.38903424,-0.12298965,-0.5371708,0.1511685,-0.37567872,0.082775064,-1.1526299,0.33728755,-0.40633598,-0.20893258,-0.38473716,-0.18083474,-4.0253034,0.3272038,-0.28446567,-0.012115465,-0.1285004,0.053697143,0.22427002,-0.6511863,-0.67972213,0.061288558,0.07464767,0.7104542,-0.19752708,0.23239782,-0.21848282,-0.19620475,-0.27823588,0.09545044,0.30347925,0.26419163,0.16237105,-0.5046384,-0.13733752,-0.19996572,-0.4167022,0.19608487,-0.7805638,-0.56003857,-0.17487676,-0.67243415,-0.45023945,0.8298202,-0.46530694,-0.05431857,-0.25563082,0.0736317,-0.18981239,0.5022641,0.02761209,-0.022310909,0.12495036,-0.028791877,-0.12247959,-0.31896812,0.23820625,0.056860503,0.3913002,0.5009599,-0.18550865,0.3008157,0.76911074,0.88917965,0.08312443,0.7547282,0.41027215,-0.03298148,0.5156586,-0.3213348,-0.23238172,-0.5703167,-0.3088468,-0.14781576,-0.51312315,-0.48363918,0.10524011,-0.47958058,-0.804511,0.67352706,-0.036413677,0.21643569,0.02848067,0.2465879,0.50612324,-0.22922009,-0.04489263,-0.046992872,-0.1281529,-0.65966755,-0.2184073,-0.62101454,-0.7527527,0.29358435,0.97761977,-0.23975648,0.13097824,0.14100455,0.05755993,-0.059807695,0.2586344,0.027749704,0.023602795,0.42752403,-0.13392219,-0.67396134,0.2692444,-0.15779015,-0.23426184,-0.7186357,0.20660533,0.66162056,-0.75953037,0.67420095,0.45087084,-0.009200765,0.17545575,-0.46480274,-0.22098824,-0.073364064,-0.15126348,0.43319356,0.15741429,-0.8728227,0.30309445,0.58215725,-0.40951693,-0.766952,0.5349939,0.0010140401,-0.051229276,-0.26296562,0.35991937,0.3546345,0.03087853,-0.09638921,0.13458739,-0.62302697,0.18077613,0.31308177,-0.15571795,0.6990309,-0.03968393,-0.2200033,-0.81461406,-0.035634033,-0.6003936,-0.2101159,0.32219216,-0.031966303,0.0739384,0.17290555,0.19301279,0.31858653,-0.3582168,-0.056275897,0.042980433,-0.3672557,0.34295514,0.4899792,0.46114329,-0.4719132,0.55312085,0.042433456,0.014429687,0.20167473,0.048509717,0.5615541,0.03822631,0.42568704,0.24513103,-0.229093,0.10613643,0.9297434,0.05550613,0.5349124,0.13521956,-0.068245456,0.20715433,0.13504909,-0.039709788,-0.02235315,-0.6770052,0.1046933,-0.05681192,0.31693304,0.7054583,0.17426819,0.4113262,-0.04104883,-0.32252836,-0.038994495,0.22394362,-0.024630278,-1.3894426,0.3371844,0.25088698,0.88736284,0.44681823,0.02791948,0.14176022,0.46228102,0.0031569095,0.3799414,0.3886132,-0.2278967,-0.56170404,0.5650657,-0.7293597,0.49341744,-0.054605342,0.10968404,0.005559903,-0.025224468,0.53841734,0.7205691,-0.10033217,0.089490525,0.032848544,-0.21175869,0.0802302,-0.39669976,0.04241127,-0.47496212,0.0043684775,0.7266003,0.7106037,0.44665247,-0.29696035,-0.044644687,0.08902935,-0.15226871,0.1888097,-0.19470263,0.11259708,-0.04276941,-0.61754006,-0.29681316,0.69490504,0.34722683,0.22468887,-0.100532,-0.29240987,0.41856554,-0.20561828,0.0011302003,-0.11551531,-0.59907866,0.02358046,-0.42477494,-0.5491969,0.5421802,0.09004469,0.22298828,0.21378095,0.119203515,-0.4077751,0.62161297,-0.18787311,0.7450023,-0.093878284,-0.23910233,-0.52485776,0.28588736,0.3104514,-0.29572052,-0.21685347,-0.4181088,0.06887508,-0.4120132,0.468963,-0.07597707,-0.31283984,0.06206518,-0.0626687,0.08473361,0.512246,-0.21208392,-0.20916547,0.13672183,-0.10690796,-0.36666644,-0.22920145,-0.08376704,0.38581496,0.19203441,-0.15606873,-0.18661068,-0.33978537,-0.09246038,0.31504014,0.09131804,0.19166987,0.6052858,0.29891348,-0.40402335,-0.22295941,0.4713165,0.63959056,-0.03223961,-0.2867892,-0.39407298,-0.44964063,-0.43668908,0.18340406,-0.039457038,0.29871178,0.13878478,-0.45973492,0.8862504,0.24477316,1.4474883,0.16803357,-0.3398258,0.17271669,0.38690245,0.006276449,-0.08759807,-0.4284202,1.0230597,0.6166087,-0.29662606,-0.16935118,-0.521048,-0.20797648,0.095586725,-0.35535547,-0.06999591,-0.048364595,-0.71777225,-0.255604,0.20858786,0.33403173,0.23910214,-0.19554369,0.21386887,0.20544806,0.00060529204,0.219692,-0.58659387,-0.22821061,0.21096256,0.6080569,-0.10171522,0.14418888,-0.37508953,0.3868685,-0.54380184,0.06635905,-0.38913295,0.230275,-0.14847967,-0.41477963,0.20684472,0.046011187,0.43375486,-0.2402089,-0.4209908,-0.20208128,0.4457445,0.28608087,0.14419974,0.825714,-0.2138684,-0.1458691,-0.061578605,0.70205176,1.1234404,-0.13340195,-0.0836405,0.5803227,-0.17841229,-0.8583361,0.32822338,-0.5236353,0.37636185,-0.21758506,-0.2827579,-0.627938,0.16080546,0.18487993,-0.1541141,0.04454002,-0.5710548,-0.1752747,0.12553813,-0.3982343,-0.23372246,-0.29471564,0.118934885,0.7490691,-0.30983174,-0.12813848,0.20780112,0.3618849,0.021069584,-0.51317585,-0.14434856,-0.31151068,0.3268067,0.35281917,-0.39176565,0.033704493,0.033657417,-0.50472444,0.17318238,0.3083132,-0.3285487,0.22052765,-0.29061976,-0.14628802,0.9902419,-0.11725419,0.32829314,-0.53032273,-0.44267258,-0.88631654,-0.2300412,0.4157458,0.14449888,0.047196526,-0.5464671,0.010385142,-0.068252325,-0.20848283,0.07385972,-0.48895404,0.47762555,0.010659133,0.53629595,-0.20221378,-0.7165765,-0.05635623,0.31300604,-0.18146865,-0.7374542,0.5281241,-0.18761031,1.0632963,0.19812185,0.096509814,0.42770547,-0.49271104,-0.24939856,-0.41708013,-0.18206438,-0.709516,-0.09896273,190 +626,0.20477882,-0.08458596,-0.39049208,-0.19586754,-0.09386916,0.1827458,-0.122330554,0.2957713,0.01850297,-0.5033947,0.12522501,-0.17999503,-0.1068534,0.36508366,-0.18968216,-0.27911204,-0.09100746,0.022265894,-0.24504343,0.18822142,-0.5479484,0.29106477,-0.08187294,0.21285686,0.031136008,0.07164049,0.39994806,-0.15351263,-0.072378196,-0.21783638,0.13049617,-0.050930396,-0.49801236,0.10377158,0.019490251,-0.4065782,0.033972558,-0.33849537,-0.5640776,-0.65717274,0.46838644,-0.87382126,0.50903374,0.116080284,-0.11915918,0.32875806,0.3216662,0.21496648,0.015309712,0.039334636,0.30735332,-0.24301562,0.08872135,-0.15346947,-0.27661854,-0.29374793,-0.5612515,-0.0803935,-0.43092456,-0.29967827,-0.31169483,0.21291515,-0.4370023,0.028585318,-0.10224169,0.40438682,-0.39755866,-0.0004956814,0.17524385,-0.14445844,0.40488213,-0.60474503,-0.23770769,-0.07344048,-0.012081728,-0.3304234,-0.09646519,0.37123492,0.2012777,0.4380589,-0.316201,-0.008870242,-0.3074345,-0.19228975,0.15131709,0.6538852,-0.28781644,-0.25101736,-0.05003865,-0.12298338,-0.020755332,0.10505337,-0.07811698,-0.38666412,0.0076988065,0.2712819,-0.29962867,0.47221616,0.6416546,-0.23180297,-0.20295176,0.27852517,0.35057205,-0.07420507,-0.18658948,0.011571238,0.08682077,-0.45172116,-0.111706,0.13626346,-0.011394778,0.5420595,0.049613435,0.48305756,0.5230792,-0.3652617,0.11495251,0.032081183,0.068750426,0.035340328,-0.19810581,-0.34597296,0.21428853,-0.4208337,0.088577196,-0.20433477,0.9360475,0.0100042615,-0.8161631,0.41095084,-0.53112227,-0.061247624,-0.23935845,0.6134278,0.39100555,0.3244174,0.2423595,0.71903694,-0.5902488,-0.054087356,0.092804715,-0.3629135,-0.017832216,-0.12898244,0.014794409,-0.37372458,-0.12759,0.30013555,0.069243215,-0.028720928,0.3502797,-0.42012867,0.01472635,0.09018445,0.8410623,-0.28550205,-0.0129343085,0.41885802,1.1578132,0.7392315,0.11162559,0.9525279,0.21027216,-0.16318688,0.16124734,-0.14971952,-0.82897466,0.22009522,0.3044458,-0.038555108,0.18461983,0.19029333,-0.20205714,0.3043384,-0.47998613,0.076253325,-0.18058327,0.12619339,0.2446314,-0.17617665,-0.25024888,-0.13379699,0.07801509,-0.10477121,0.058037035,0.10487667,-0.44088686,0.10776247,0.07928714,1.4699222,-0.09009469,0.2433675,0.18321633,0.48807347,0.03440649,-0.044345334,0.04632622,0.16123177,0.36022455,0.15715843,-0.54624146,0.1702625,-0.13797387,-0.48238948,-0.16937336,-0.30218318,-0.12507272,-0.009649648,-0.4998565,-0.19549887,-0.037323568,-0.43112752,0.35773665,-2.9810367,-0.08142893,-0.09910075,0.39327922,-0.2988229,-0.19855365,-0.12551366,-0.42281768,0.48738098,0.51485527,0.30427477,-0.60045236,0.33939463,0.4153159,-0.22241487,-0.112466045,-0.52705956,0.04889426,-0.12861001,0.19349474,0.15041545,-0.09092719,0.025982546,0.21107286,0.36602226,-0.082540914,-0.0058842944,0.26644224,0.35910258,0.05565761,0.36432993,-0.1126962,0.35284662,-0.3826658,-0.19046292,0.30349535,-0.50908434,-0.0678657,-0.08152454,0.1313469,0.2874037,-0.3520706,-0.83170307,-0.6448498,-0.35000926,1.1511142,-0.13461001,-0.52412385,0.32184923,-0.10180144,-0.3144715,-0.18469736,0.5443782,-0.11608628,0.11473997,-0.78758717,0.13605224,-0.25571015,0.3930391,0.005291047,0.050173856,-0.42872187,0.48556402,-0.19843568,0.45946768,0.43065804,0.19258411,-0.4226678,-0.50493157,0.07785997,0.77985644,0.22525932,0.24389744,-0.12552972,-0.06772811,-0.1052431,-0.22950107,0.19795687,0.46160457,0.7973491,0.07834438,0.20699103,0.35370892,-0.058066133,-0.05252973,-0.11666643,-0.2674731,-0.027492596,0.024686823,0.54692346,0.31055403,-0.11142845,0.38566175,-0.07819267,0.26362962,-0.41173,-0.22811112,0.3359998,0.6538789,-0.048757963,-0.2862453,0.5003027,0.6280937,-0.41860893,0.34917676,-0.66768414,-0.3226435,0.52407074,-0.24687687,-0.5065743,0.10335612,-0.43042147,-0.00945465,-0.7716841,0.45354557,-0.21691759,-0.54027915,-0.48196492,-0.28548926,-3.5824862,0.08050286,-0.32468435,-0.25596985,0.008580413,-0.030147033,0.34631884,-0.41052407,-0.4026261,0.05862083,0.042546336,0.6637148,0.012595223,0.012376023,-0.26014125,0.17141268,-0.27876106,0.13622172,0.10035913,0.12295817,0.086254,-0.37065172,-0.011175907,-0.23906237,-0.5480351,-0.0039772233,-0.2964062,-0.38752323,-0.13905936,-0.44920552,-0.4564568,0.7127018,-0.39527783,-0.049574897,-0.2733927,0.008672957,-0.18890196,0.5971367,0.22682616,0.05115867,-0.015725356,-0.13257162,-0.026819339,-0.29768828,0.49197805,-0.016185531,0.21357392,0.5717427,-0.19761588,0.018942852,0.47579175,0.37787917,0.15663816,0.77381414,0.4086749,-0.05683289,0.25699243,-0.41462106,-0.11017036,-0.3893131,-0.23481736,0.22214195,-0.29034072,-0.48365706,-0.010558789,-0.32458878,-0.6938395,0.50779593,-0.23193663,0.15824078,-0.06843269,0.18289709,0.2021624,-0.06890004,-0.16598314,-0.030827474,0.029258244,-0.3562004,-0.306019,-0.6425509,-0.5653814,-0.049767878,1.0563571,0.05268779,-0.08904353,0.09956217,-0.15135688,-0.04370908,0.063132375,0.15822998,0.38832444,0.2517429,-0.10023452,-0.7222745,0.37470335,-0.35206795,-0.052290455,-0.74967355,0.019550433,0.51964116,-0.56564325,0.33546463,0.33658588,0.31441432,-0.24978065,-0.53391194,-0.22935075,0.029358167,-0.24218546,0.34366146,0.0045787464,-0.8929852,0.43324777,0.34113768,-0.24019617,-0.5619672,0.52424437,0.038032472,-0.22457801,0.14877309,0.29248136,-0.058739003,-0.070820406,-0.079220004,0.2673015,-0.44043982,0.40472874,0.13376294,0.03245514,0.77935016,-0.17206207,-0.06702563,-0.39457342,0.15387964,-0.4430674,-0.13404146,0.081492186,0.046977036,0.11710356,0.5660833,-0.15980114,0.4107735,-0.2905045,0.05439176,0.027055992,-0.27029732,0.36215895,0.39871562,0.376147,-0.37995404,0.66121763,-0.058331665,-0.12847564,-0.22726417,0.04747434,0.4657597,0.1992545,0.32351595,-0.118253484,-0.1242474,0.25886676,0.9061526,0.2610865,0.49664366,0.22281648,-0.14760843,0.2593019,0.081783816,0.045797274,0.23256642,-0.41031697,-0.09475383,-0.2490401,0.27443,0.44775283,0.097789235,0.45288798,-0.2423102,-0.35291708,0.087461606,0.312062,-0.21803449,-1.0057667,0.40953228,0.1204019,0.66916835,0.44567123,0.012912085,0.10536719,0.433137,-0.10553916,0.14212343,0.21685173,0.044040523,-0.45035335,0.6092077,-0.5312539,0.37071764,-0.11665133,-0.04062436,0.040169854,-0.035601217,0.41255298,0.7229401,-0.013153063,0.17094612,0.08916387,-0.29450768,0.19888853,-0.3873871,0.43809494,-0.487253,-0.17151007,0.5100953,0.3623586,0.19563998,-0.109143846,-0.02632195,0.08854248,-0.05278916,0.14694682,-0.11314759,0.19890498,-0.14994517,-0.6187345,-0.3192307,0.47005576,0.2549535,0.06743611,0.076448664,-0.09942214,0.24977733,-0.09755591,0.05747984,0.0065213614,-0.5710392,0.117910236,-0.21169215,-0.45790857,0.31361625,-0.4075057,0.38430035,0.243583,0.011919815,-0.4387622,0.18102345,0.42553294,0.556461,-0.14482765,-0.15003198,-0.35609525,-0.17486623,0.18931296,-0.16264868,-0.13094872,-0.16981462,-0.012637883,-0.56235176,0.47157538,-0.11386948,-0.02148985,0.3252111,-0.13404678,0.06832616,0.6064899,-0.021785783,0.021063577,0.1751058,-0.1912187,-0.20844667,-0.02940895,-0.16653109,0.22834142,-0.036336754,-0.05062843,0.015353113,-0.23336238,-0.26776424,0.20682801,0.008755993,0.31998143,0.41469285,0.2864719,-0.28090966,-0.20438018,-0.21360882,0.6265309,0.042408235,0.030993305,-0.31923404,-0.44241858,-0.098480575,0.29552796,-0.108802944,0.20649913,0.10797736,-0.61311376,0.66551006,-0.10933089,0.9236485,0.02067269,-0.25465825,-0.03113825,0.45373732,0.04955444,-0.10591824,-0.41853765,0.780541,0.64642185,-0.019383715,-0.16926762,-0.1285532,-0.049032494,0.24532212,-0.17336117,-0.34917262,-0.048133723,-0.73820347,-0.25368837,0.17710534,0.2899631,-0.11120297,0.019295802,0.14070736,0.20198056,-0.060956977,0.3627621,-0.3630831,0.104175,0.32064694,0.29574355,0.14857706,0.19275714,-0.36687055,0.25614816,-0.5218737,0.05684724,-0.17534648,0.05291883,0.10829181,-0.17472045,0.22632918,0.15203227,0.36142984,0.016118225,-0.07222358,0.0003735377,0.38281286,0.12902237,0.28410932,0.654314,-0.10950352,0.15065797,-0.11219546,0.4687874,1.0636036,-0.22975148,-0.04711237,0.29513198,-0.3568454,-0.6813491,0.46937326,-0.34775478,0.16763268,-0.026211482,-0.2518169,-0.27006525,0.30282715,0.27395982,-0.18232642,0.070380755,-0.35773674,-0.3917665,0.21075815,-0.2627115,-0.3151105,-0.4528974,0.06254713,0.5238149,-0.18661052,0.06580822,-0.019804899,0.5922855,-0.14771962,-0.5680996,0.14895791,-0.26529264,0.2183795,-0.06726134,-0.2327074,-0.1833287,0.039773367,-0.32793278,0.29990327,0.19189939,-0.37830406,-0.06117042,-0.19954509,-0.12725341,0.6890315,-0.20317627,-0.20806743,-0.6689438,-0.44961455,-0.9529021,-0.38360915,0.36796242,0.25130507,-0.106793575,-0.4811274,-0.11137827,0.17473485,-0.16865133,-0.21295375,-0.37074074,0.35354507,0.0030366103,0.4231552,-0.053814474,-0.61201036,-0.09830383,0.14435302,-0.24532032,-0.43216148,0.54252744,-0.030337526,0.69123185,0.07014157,0.096742906,0.28471217,-0.2929532,0.21309695,-0.1317801,-0.38819313,-0.7207935,0.046894662,194 +627,0.54662263,-0.22879829,-0.3458368,-0.010699485,-0.46350962,-0.11336089,-0.28206286,0.20882599,0.25757712,-0.14144628,-0.48436683,-0.12248909,-0.0641081,0.17608026,-0.17827612,-0.5209476,-0.19284593,-0.024769796,-0.7752743,0.679711,-0.38526133,0.4269255,0.24991424,0.33419374,0.37009394,0.33088824,0.33332342,0.10282168,-0.28891703,-0.3512491,-0.053602256,0.08380683,-0.76881397,0.12290631,-0.40045434,-0.313806,-0.04930675,-0.6980418,-0.26361558,-0.9383159,0.23977426,-1.0784065,0.52338564,-0.1526036,-0.012215101,-0.12767841,0.29447803,0.27356294,0.061292253,0.00046524635,0.28941244,-0.13648081,-0.008452227,-0.1508473,-0.10242927,-0.49518305,-0.65424377,-0.033184443,-0.5216971,-0.28852922,-0.13535026,0.31145233,-0.44284916,0.030347627,-0.2044638,0.40020996,-0.43798402,0.23201841,0.21908171,-0.2035262,0.18323818,-0.72128093,-0.13204923,-0.12905607,0.35447925,-0.034576517,-0.114469066,0.36446187,0.368989,0.14593302,0.24887186,-0.28596,-0.14418913,-0.10049825,0.118566886,0.60441536,-0.20253041,-0.2902791,-0.17332378,0.025303097,0.70046145,0.4092846,0.18287101,-0.09344255,0.0076317135,-0.15373217,-0.25720656,0.68235564,0.44217178,-0.13627683,-0.36742434,0.28451207,0.58148015,0.41535032,-0.22599176,-0.1491288,-0.055680018,-0.49563736,0.07873844,0.30587614,-0.14783219,0.57615876,-0.05229008,0.18628757,0.9033973,-0.35049966,0.22543739,-0.00047439337,0.013742245,-0.08460055,-0.1802006,-0.17634502,0.2569359,-0.5280241,0.12541056,-0.38014486,0.77689654,-0.001449852,-0.7379243,0.4370505,-0.57292813,0.14185585,0.10624976,0.57262,0.6080971,0.43335646,0.3942564,0.7209133,-0.11531401,0.20186485,0.11801156,-0.39542013,0.05941933,-0.3681738,0.19430536,-0.36434937,-0.07231747,-0.14174691,-0.022694092,-0.114569634,0.57690585,-0.57022667,-0.17667429,0.06338524,0.76857656,-0.20464121,-0.07734002,0.8852824,1.0231177,1.0637176,-0.01049666,1.2266313,0.35751644,-0.11022027,-0.050330516,-0.13590823,-0.71564996,0.30326033,0.42628428,-0.8220576,0.41258118,-0.05575931,-0.1495606,0.22418879,-0.36994183,-0.10267511,-0.11081779,0.28943998,0.28325483,-0.09524965,-0.46903908,-0.30521086,-0.04882117,0.04662711,0.23435467,0.20784459,-0.27504608,0.36534697,0.12244683,1.2918513,-0.17085508,0.028288115,0.18211812,0.57666576,0.22725098,-0.24244264,-0.0038543206,0.25853083,0.36666912,0.075548,-0.58518434,0.21602756,-0.41488138,-0.2953372,-0.23171856,-0.28319675,-0.2452337,0.1727328,-0.30746055,-0.11138452,-0.065366335,-0.27848482,0.28441563,-2.6075313,-0.15043168,-0.22670385,0.2751695,-0.28853458,-0.28656995,0.036165833,-0.65483546,0.18898733,0.28829506,0.51614535,-0.71003014,0.30062813,0.5701934,-0.6242311,-0.15526155,-0.798563,-0.022720668,0.07122864,0.5653534,0.009829512,0.019546747,-0.118934624,0.2307668,0.71198744,0.33125597,0.1679754,0.536748,0.50899065,0.16729948,0.45961776,-0.00830997,0.5098617,-0.16809033,-0.2041242,0.62393653,-0.32838458,0.3919783,-0.17321923,0.14045024,0.5902792,-0.32863095,-0.85675174,-0.51507324,-0.61558306,1.0665646,-0.34178594,-0.52172303,0.003738456,0.16749316,-0.19042096,0.02437681,0.6347096,-0.32480776,0.140721,-0.6371485,-0.13912496,-0.089043625,0.16861007,-0.026962748,0.10924042,-0.29351023,0.74697316,-0.05149138,0.3713013,0.15195979,0.35832003,-0.31121683,-0.5149396,0.1925326,0.8669093,0.42481503,0.047746714,-0.40051448,-0.09881054,-0.20821674,-0.25438696,0.00047379272,0.44527876,0.70999515,-0.07234522,0.10004132,0.3994104,-0.12351375,0.043501936,-0.13642189,-0.21001352,-0.16418225,-0.04190189,0.5296209,0.7416311,-0.1423714,0.5796702,-0.30914548,0.23510233,0.048145115,-0.48796985,0.53487915,0.46768755,-0.25229484,0.05510986,0.40771642,0.3431793,-0.46496704,0.491291,-0.5998122,-0.25200194,0.64289993,-0.11114771,-0.6252949,0.16638678,-0.3052769,0.11421875,-0.6164233,0.6296868,-0.39069846,-0.43957278,-0.41335294,-0.024228688,-1.901376,0.15871175,-0.0029885494,-0.3061614,-0.37265408,-0.15900125,0.28227556,-0.6010953,-0.6834868,0.09484784,0.1466061,0.52042645,-0.09496034,0.13124345,-0.13079044,-0.23676786,-0.33826086,0.18054256,0.3100136,0.38727346,-0.34291893,-0.2880778,-0.08747713,-0.057411194,-0.5045545,0.18669035,-0.6818625,-0.7424812,-0.10105566,-0.39541024,-0.37111157,0.63746285,-0.5369971,0.03996735,-0.2685619,0.028205983,-0.14242265,0.24043407,0.15540233,0.16604866,0.071761034,-0.11142373,0.11770031,-0.24640726,0.72045016,0.14594251,0.49693388,0.121714786,-0.10724384,0.33000666,0.5090899,0.60583293,-0.033379618,1.0999472,0.23086932,-0.140197,0.12744214,-0.13531703,-0.2293577,-0.6480836,-0.06966313,0.25003192,-0.42623737,-0.50468504,0.084644094,-0.27538896,-0.9293238,0.59420323,-0.092827015,0.46913207,-0.067913875,0.33415407,0.35899454,-0.1370512,0.049917158,0.017641626,-0.06903795,-0.52778685,-0.34810784,-0.70708406,-0.58213043,-0.034703042,0.8599926,-0.23335266,-0.06474225,-0.08561604,-0.41993803,0.22203077,-0.06992913,-0.22205292,0.1259736,0.39020795,0.07009225,-0.6362327,0.364075,0.024160229,0.07544945,-0.48436177,0.2272914,0.738092,-0.5421312,0.46538374,0.38873467,0.0015868911,-0.27621442,-0.53142846,-0.16543314,-0.086123355,-0.19691053,0.3470741,0.23619041,-0.6584963,0.51192117,0.09704818,-0.54439473,-0.77957976,0.33913863,0.08572852,-0.130274,-0.020508008,0.36113828,0.061711524,-0.13417698,-0.212721,0.3253853,-0.3821398,0.36023188,0.050271466,-0.10920595,0.39717653,-0.04582296,-0.45042866,-0.58120656,0.26787612,-0.4258011,-0.44638878,0.4345252,-0.06607346,-0.09924483,0.2943036,0.2613109,0.36784488,-0.17260577,0.027599642,-0.041703384,-0.3780523,0.32007116,0.45999622,0.5009258,-0.40542138,0.5386562,0.20869602,-0.19992469,0.38200822,0.14766221,0.30759218,-0.013778955,0.14111938,0.12415894,-0.054483935,0.15369721,0.62584084,0.31307375,0.5501335,-0.013956373,-0.20524162,0.43135574,-0.014095946,0.3380866,-0.058227226,-0.60181797,-0.057803545,-0.07980286,-0.06497584,0.54078364,0.12672934,0.26392868,-0.08347285,-0.15418823,0.08540637,0.12942187,-0.24985956,-1.2485657,0.14710024,0.14097604,0.9588874,0.2697194,-0.07885361,0.06465222,0.858636,-0.24216257,0.12132614,0.40044892,0.15691009,-0.4850333,0.6382863,-0.5741848,0.37908238,-0.24253017,-0.012711101,0.09565577,0.09883705,0.38826653,0.8458201,-0.3109834,-0.0637828,-0.19410071,-0.15655294,-0.04588075,-0.3181627,0.40400785,-0.3818341,-0.46976027,0.89688677,0.357416,0.3122698,-0.16584462,0.090926155,-0.22390395,-0.31329793,0.27020532,-0.03468635,-0.18419772,0.16230899,-0.55883205,-0.21426898,0.5609436,-0.16059996,0.044932716,-0.20283908,-0.20399342,-0.023600053,-0.22769131,-0.015062653,0.092989914,-0.85918707,0.16526125,-0.16646883,-0.5415322,0.18404509,-0.24733448,-0.015291413,0.20250705,-0.059351627,-0.07212827,0.21236636,0.32765678,0.80083156,-0.011238025,-0.30319977,-0.31546652,0.094430596,0.2047023,-0.26030207,0.18192007,-0.2173308,0.103771456,-0.57082343,0.67618,-0.1372856,-0.59909785,-0.013428312,-0.24056885,-0.21453881,0.6942854,0.041630488,-0.0570954,-0.03621919,-0.22153719,-0.3566834,0.1267843,-0.2539983,0.059497245,0.42180926,-0.42098287,-0.12403013,-0.27772805,-0.06397919,0.42385885,0.009496414,0.6312068,0.43455788,0.10696028,-0.37568888,-0.14676973,0.15572786,0.5713321,0.16401955,0.0024936704,-0.508929,-0.3306044,-0.3289851,0.5729147,-0.18127568,0.23949613,0.03573278,-0.44119194,0.89629143,0.018226244,1.3396757,0.104443155,-0.43012497,0.035371058,0.7096722,-0.17697014,-0.075459905,-0.48195928,1.0401723,0.40847743,-0.17931701,0.045378786,-0.44792175,-0.05083582,0.3084246,-0.38177893,0.009080978,-0.07869242,-0.46018043,-0.23714636,0.055949237,0.22115326,-0.16894454,-0.08475279,-0.02047848,0.32880783,0.042650342,0.4745272,-0.58613586,-0.18591467,0.24952716,0.09563686,-0.25627837,0.20009369,-0.3888454,0.36968553,-0.75649035,0.29176933,-0.46953204,0.22470954,-0.2531354,-0.47761536,0.24714044,0.06249129,0.60441613,-0.50352246,-0.48992297,-0.095641226,0.26233715,0.19129713,0.23971002,0.53578734,-0.20541224,0.109240994,0.030050324,0.5936056,1.4464746,-0.31922027,0.14546257,0.20558184,-0.52446866,-0.53790855,0.36604896,-0.30138117,0.04294997,-0.1788435,-0.44031274,-0.3772054,0.27813852,0.13412216,0.10087237,-0.12081254,-0.62859285,-0.21321939,0.2859199,-0.33840582,-0.29047742,-0.33323196,0.28407097,0.7054382,-0.23613097,-0.43613917,-0.059183512,0.37092832,-0.18143736,-0.3883753,-0.055483297,-0.14353393,0.34647655,0.006954122,-0.3201757,-0.26878738,0.13569736,-0.44059712,0.06584921,0.1455321,-0.43291503,-0.07036516,-0.036545042,0.13446634,0.79904616,-0.2744281,-0.41739866,-0.6029183,-0.5269913,-0.8419292,-0.6039537,-0.09168245,0.2859848,0.010658266,-0.37710956,-0.06472166,-0.21522999,-0.07415212,0.03680961,-0.65826637,0.3013263,0.177837,0.71191025,-0.4304803,-1.0987432,0.13200492,0.20555452,-0.060651045,-0.7100137,0.6579418,0.057173435,0.7337576,0.17484471,0.031667665,-0.1902021,-0.4387333,0.009437754,-0.3089,-0.20065968,-0.94207007,0.40937117,206 +628,0.4692182,-0.15126151,-0.2879655,-0.19129989,-0.2817441,0.07484869,-0.08445683,0.25939167,0.28944683,-0.2962572,-0.14814848,-0.32371014,3.988009e-05,0.3393238,-0.1998523,-0.7077353,-0.10560738,0.029046072,-0.67465854,0.38618386,-0.5065337,0.34948397,0.1989065,0.43884298,0.13469759,0.12942328,0.3122273,-0.031582076,-0.06805702,-0.06334999,-0.22218381,0.12549919,-0.7455302,0.08282064,-0.0179835,-0.20310394,-0.21924551,-0.4305693,-0.4285761,-0.7095928,0.473327,-0.97187245,0.47098827,-0.16473047,-0.2984408,0.05928543,0.11723181,0.25260606,-0.17870876,-0.0487394,0.21044111,0.0070486804,0.076057404,-0.022851877,-0.25905547,-0.46431792,-0.5510334,0.102001436,-0.4233192,-0.17794129,-0.1949146,0.2633137,-0.2712339,0.086065836,-0.13985915,0.47709432,-0.2667828,0.089960486,0.22724012,-0.24700134,0.36124516,-0.5862059,-0.17961222,-0.14098272,0.09842922,-0.04257135,-0.25777876,0.21463236,0.46748763,0.40151146,-0.118470006,-0.17973208,-0.18967764,0.07420229,0.11465342,0.35214835,-0.08818192,-0.42390364,-0.26394895,0.0057744337,0.27794585,0.12631956,0.26826817,-0.4238615,0.08619371,0.07209378,-0.14052805,0.44562736,0.59466106,-0.105497964,-0.37317255,0.28881967,0.2859655,0.23601294,-0.092502944,0.002853843,-0.019784676,-0.5461273,-0.10265077,0.17639494,-0.1346452,0.6386148,-0.16117543,0.29726207,0.7367413,-0.054988716,0.17904687,-0.14901659,-0.092427365,-0.20699804,-0.12892406,-0.041326173,-0.040911045,-0.42149228,-0.005229354,-0.25193974,0.70641243,0.19584288,-0.84343845,0.39814594,-0.5199574,0.24921972,-0.09094617,0.49438703,0.8399864,0.34735987,0.15361309,0.847626,-0.6427988,-0.0060018804,0.14967027,-0.49643564,0.1948519,-0.34238088,0.100830466,-0.5456099,-0.21543679,0.2194362,-0.04380101,0.022998022,0.44201294,-0.43514436,-0.0069326963,-0.19621634,0.7563267,-0.27169067,-0.077529564,0.8884417,1.0522996,1.0091364,0.24552242,1.4729917,0.35603106,-0.101451226,0.35050157,-0.2951392,-0.7760446,0.28760785,0.30738664,-0.2532558,0.44862592,-0.03369107,-0.051216938,0.28651226,-0.24296631,0.07727598,-0.12759386,0.16123417,0.1700091,-0.19698414,-0.22884156,-0.27778453,0.151661,0.13035382,0.083438925,0.14632195,-0.13953026,0.45797715,0.11858865,1.3216622,0.012154171,0.016605474,0.014846722,0.3927154,0.08484897,-0.18446445,-0.024354119,0.21646637,0.46020496,0.12674221,-0.5337619,0.12756455,-0.23011857,-0.47414553,-0.21702102,-0.2675649,-0.22127149,-0.0040431437,-0.32168415,-0.23208156,0.050836615,-0.41534182,0.4508097,-2.457977,-0.16905585,-0.25864962,0.40441763,-0.21186827,-0.18594892,-0.1332112,-0.52324396,0.3118884,0.6053275,0.26578444,-0.7971679,0.22054657,0.25252402,-0.43704638,-0.21597226,-0.7118807,0.034125272,0.038172044,0.43552145,0.027294952,-0.08788026,0.036572695,0.22277474,0.5551199,0.25090423,-0.1419058,0.18201467,0.61102957,0.01812965,0.49457985,-0.008365576,0.42873663,0.02211269,-0.025291543,0.5042498,-0.49895513,0.20509934,0.11316304,0.1648868,0.49866676,-0.43764466,-0.70830715,-0.79553753,-0.5128994,1.2920501,-0.2650935,-0.40640238,0.23150781,-0.15556327,-0.31481007,-0.08705803,0.7594529,-0.2367428,-0.006934496,-0.77594566,-0.08272943,0.032062773,0.24602129,-0.18070933,0.0748666,-0.38261622,0.8008626,-0.11691423,0.39129984,0.25321463,0.14247242,-0.32017425,-0.5986729,0.10874491,0.8221239,0.35244545,0.0763476,-0.17909224,-0.043466635,-0.39428207,-0.26882437,0.07925472,0.67341673,0.6274785,0.013858325,0.11562058,0.2615027,-0.15954575,0.04907731,-0.16974145,-0.23922132,-0.054871604,-0.027349569,0.6128362,0.79167217,-0.32144216,0.36186054,-0.2551832,0.14624995,-0.12127287,-0.45407847,0.6307484,0.97831315,-0.22172032,-0.29955056,0.35503995,0.35065684,-0.48197585,0.39477363,-0.45432875,-0.27675003,0.501949,-0.03582336,-0.53494054,0.23015748,-0.2836239,0.055319443,-0.87534374,0.43384597,-0.10517417,-0.45312506,-0.63221484,-0.13724683,-3.450203,0.13319525,-0.15086296,-0.28462192,-0.2524904,-0.181594,0.35909462,-0.5764867,-0.57148796,0.032248277,0.009426688,0.50315166,-0.06845225,0.20931944,-0.2391945,-0.08119499,-0.3569454,0.16602851,0.12842754,0.31225622,0.09160225,-0.24334778,0.07699507,-0.33668762,-0.5236653,-0.0743124,-0.5294723,-0.78271234,-0.13726388,-0.43192673,-0.30993143,0.6725844,-0.3997436,-0.08313378,-0.28701484,-0.13640653,-0.20730409,0.5696728,0.032864764,0.05110242,0.047607407,-0.017228732,-0.16722092,-0.2674811,0.36209363,0.11624189,0.26642525,0.44456258,-0.25942644,0.38745007,0.4981267,0.6777044,-0.021550976,0.6603353,0.280494,-0.0895184,0.36083874,-0.24626628,-0.18284185,-0.5326873,-0.20596933,0.077152856,-0.39554217,-0.42698243,-0.24841148,-0.3474889,-0.7832312,0.19956191,-0.12391749,0.30732638,-0.040634137,0.115511164,0.39385203,-0.013786004,0.21128358,-0.07189399,-0.1863955,-0.5715102,-0.48166865,-0.5615117,-0.71019226,0.13716021,1.0370013,0.10321458,-0.21624176,-0.005649195,-0.40263933,0.06932657,-0.15045819,0.09242083,0.14835018,0.18199466,-0.15487258,-0.8301507,0.44234136,-0.09666462,-0.07856459,-0.6326328,-0.0065057073,0.8166592,-0.5553943,0.5473661,0.28630832,0.09272477,-0.062057927,-0.42905095,-0.2597915,0.0558296,-0.16483012,0.5221275,0.27851826,-0.46868816,0.33602884,0.17935716,-0.059496615,-0.55857384,0.47468847,0.03145617,-0.12239301,0.004265235,0.25329557,-0.17955726,-0.043570545,-0.09629713,0.19216159,-0.4636268,0.18969965,0.2639287,0.15903912,0.5446277,0.12111168,-0.117878124,-0.60288864,0.09437247,-0.30113563,-0.24220656,0.13415529,0.1914034,0.22964169,0.103175215,0.010930561,0.33026358,-0.16068126,0.09807301,0.047816046,-0.19637702,0.2824564,0.51834303,0.47153908,-0.51447767,0.5076419,0.034514345,-0.06535162,0.14887792,0.011236429,0.38597852,0.4787718,0.23914704,0.08634117,-0.18030581,0.10091209,0.6320263,0.13192937,0.46277273,0.1647845,-0.22094774,0.40618497,0.12710427,0.2823478,0.0059239496,-0.4927665,-0.11976742,-0.25554737,0.14069936,0.39464834,-0.010201901,0.13262579,-0.0928929,-0.2819374,0.103843324,0.052924316,-0.07277811,-1.3157188,0.2891479,0.36869505,0.70483536,0.4648605,-0.2537824,0.01920676,0.52693856,-0.23786896,0.15148821,0.43255508,0.21104702,-0.54613656,0.3952902,-0.609973,0.42260933,-0.1541083,-0.035894595,0.03461606,0.18542838,0.27373472,0.90538347,-0.0639072,0.057277746,0.020194994,-0.33529922,0.151516,-0.4796556,0.19824305,-0.5213477,-0.30830485,0.62084705,0.46106866,0.1955475,-0.38380045,-0.024248544,-0.057488378,-0.12955667,0.10822983,-0.18333776,-0.15146652,-0.024989413,-0.86110145,-0.21102165,0.5035419,-0.06653492,0.0072293878,0.13258201,-0.29078537,0.10258235,-0.18125485,-0.1094447,-0.086803265,-0.6594654,-0.1933225,-0.17924394,-0.46303156,0.33020046,-0.3424552,0.18505278,0.29399985,0.08435463,-0.30768377,0.09538336,0.27602738,0.82158285,-0.048488695,-0.08023442,-0.521862,0.14238922,0.2785393,-0.33286998,-0.25320333,-0.113189094,0.039433543,-0.22803885,0.48273486,-0.06574695,-0.28183615,0.08891388,-0.102033734,0.083265506,0.4884562,-0.32815966,-0.179245,0.1699324,-0.05875471,-0.2516578,0.118954584,-0.32652488,0.31613237,0.192611,-0.085273035,0.13981281,-0.088085644,-0.08837045,0.31338364,0.106747225,0.3659151,0.42122588,-0.018260416,-0.4205607,-0.07664799,0.00873574,0.50724983,0.32046568,-0.0954277,-0.41010433,-0.443443,-0.32518154,0.46041358,-0.0912881,0.068567075,0.11614014,-0.5957278,0.67668355,0.20769297,1.1548313,-0.028347263,-0.3116562,0.04583689,0.5247623,0.12777436,-0.045098886,-0.61634356,0.9235066,0.590879,-0.23859484,-0.14872965,-0.41513067,-0.1455957,0.31649685,-0.26970905,-0.2606497,-0.070337184,-0.87462336,-0.18097426,0.003105047,0.13942209,-0.11809724,0.11656691,-0.03835003,0.08427711,0.032606475,0.5089816,-0.3480193,-0.08241967,0.23652197,0.14536443,0.07572847,0.14605643,-0.43270296,0.36063495,-0.59054404,0.13404725,-0.4182153,0.107846774,-0.077915944,-0.32885394,0.1750873,0.10439094,0.36513254,-0.26733577,-0.37352088,-0.37074852,0.6721524,0.19254535,0.34656623,0.64948076,-0.14395258,-0.10287972,0.12157425,0.6542445,1.601829,0.028090578,0.13669346,0.24338792,-0.4343751,-0.7052558,0.18122277,-0.3203897,0.2660874,-0.16939312,-0.17100471,-0.32013002,0.28016308,0.0023442002,0.06468559,-0.029260593,-0.4729799,-0.43117955,0.52264184,-0.33969295,-0.27978522,-0.41174617,0.122123,0.5467819,-0.31659728,-0.17184684,-0.007642863,0.4282333,-0.26463646,-0.5189349,-0.106776014,-0.21059991,0.46184734,-0.006886739,-0.31410158,-0.012755742,0.27355295,-0.44330853,0.3588856,0.009945769,-0.4195938,0.07831415,-0.10155775,-0.2022937,0.9373427,-0.11698857,-0.053034898,-0.79317605,-0.532501,-0.86608917,-0.4538935,0.14668192,0.21928841,-0.18147582,-0.5188217,-0.22295325,-0.021493673,0.2019655,0.08265877,-0.5471984,0.45171517,0.09804834,0.6945441,-8.275876e-06,-0.83761215,0.02592674,0.08305315,-0.16516961,-0.6877482,0.68435127,0.013659615,0.5893946,0.058093026,0.16073802,0.23072457,-0.56513774,0.25591046,-0.28701305,-0.2809969,-0.7523048,0.3273338,210 +629,0.39340746,-0.22584367,-0.73725164,-0.09378685,-0.42159316,-0.05323661,-0.29728916,0.5093676,0.17373498,-0.34982756,-0.10708194,-0.04369543,-0.15441066,0.49336067,0.024733594,-0.6232207,0.07283921,0.48609814,-0.8786119,0.7366172,-0.34782538,0.37687668,0.2202669,0.35437223,0.21799657,0.12185968,0.017343411,0.1772024,0.062446337,-0.24009758,-0.22161704,0.2735797,-0.5879956,0.25800174,-0.108786345,-0.53776544,-0.2148826,-0.4119492,-0.28292242,-0.8665381,0.23021507,-0.83012617,0.63354564,-0.054337006,-0.4175451,0.030247709,0.10389013,0.32313105,-0.1307589,-0.080844775,0.19553845,-0.28251314,-0.33170277,-0.26391447,-0.1635177,-0.34702015,-0.45160997,-0.00630101,-0.5738773,-0.06169249,-0.27707258,0.29745606,-0.27219975,0.019218417,-0.20950922,0.38286403,-0.40560627,-0.059020206,0.070953526,-0.25627783,0.19399221,-0.65047514,0.014960198,-0.22806175,0.18647908,-0.07574313,-0.5464106,0.2647087,0.14282405,0.6620049,0.15389398,-0.29501435,-0.24552114,-0.06376564,-0.0367578,0.46646485,-0.18043306,-0.23490418,-0.23949772,0.13598341,0.49730793,-0.023474813,0.1661912,-0.33105835,-0.08926788,-0.20588763,-0.085303456,0.3924196,0.4678457,-0.30932415,-0.37311256,0.37878302,0.6317072,0.20510787,-0.018568397,0.2842936,-0.026429167,-0.41779634,-0.15444167,-0.01264993,-0.18788815,0.4222202,-0.21801776,0.21442972,0.58178955,-0.12764272,-0.3173339,0.18072914,0.17613462,-0.016328564,-0.24611881,-0.32318848,0.4517852,-0.5147377,0.02604988,-0.20525339,0.70985,0.09301706,-0.59630287,0.30511433,-0.5774341,0.2189362,-0.027858524,0.4837448,0.9234655,0.7497579,0.1583645,0.9048411,-0.24364607,0.18829867,-0.093581155,-0.12999286,0.10934135,-0.26587868,0.012051156,-0.6534436,0.032172468,-0.24710585,-0.3861335,0.24181029,0.80420554,-0.7437526,-0.20674229,0.15747967,0.57252127,-0.36222303,-0.04396161,0.98321503,0.8853377,1.1402272,0.18686914,1.1824051,0.2509337,-0.15565135,-0.100162946,-0.103260234,-0.9490972,0.17322557,0.46657407,0.016320009,0.41270912,0.109609365,0.05468703,0.51397234,-0.44485146,-0.1575262,-0.29486006,0.2861124,-0.22881149,-0.15940827,-0.6255707,-0.18302855,-0.022095777,0.2733342,0.04989197,0.3306057,-0.25423574,0.67553735,0.077513546,1.6804669,-0.23370449,0.017447146,0.029083828,0.21595325,0.40262678,-0.26193935,-0.21292473,0.25454205,0.2934658,0.025893496,-0.54300827,-0.016249986,-0.29148802,-0.38735846,-0.24989718,-0.20277049,0.05567258,-0.2584024,-0.30341053,-0.5304561,0.030293979,-0.42480892,0.37207666,-2.0971446,-0.35240155,-0.10194744,0.33975813,-0.21297434,-0.38496652,-0.2667107,-0.46033117,0.3625558,0.33225065,0.5929089,-0.63778627,0.3786252,0.3183608,-0.70948493,0.008625799,-0.5476064,0.024506,-0.0010259908,0.297166,0.04662821,-0.2189444,-0.24084178,0.0155659085,0.4602297,-0.23529376,0.01717439,0.5373019,0.34132764,-0.05754374,0.26959297,-0.017332068,0.6947384,-0.45374694,-0.42631373,0.47928783,-0.32682225,0.15572394,-0.17188542,0.18694729,0.6285665,-0.6669713,-0.9779974,-0.7570877,0.1289163,1.2188385,-0.21563363,-0.481698,0.2171902,-0.5160013,-0.32454613,0.19810796,0.39847642,-0.24888515,-0.21365203,-0.80069745,-0.034295302,0.021972766,0.47972634,-0.056282878,-0.17642055,-0.4820475,0.7122151,-0.1452118,0.43977958,0.24550201,0.23059365,-0.31295136,-0.45320335,0.06055168,1.0518134,0.60710883,0.11520701,-0.31546083,-0.12439509,-0.3823113,-0.063571334,0.0154419495,0.46783173,0.76037407,-0.111829534,0.11982116,0.36223397,-0.07867778,0.021583932,-0.21443638,-0.2741264,-0.091954075,0.27260855,0.622333,0.5341933,0.12230878,0.6679946,0.0009066944,0.2815048,0.08716813,-0.85100335,0.5348455,1.1018584,-0.28922474,-0.48695976,0.7305694,0.17979948,-0.22778057,0.5191895,-0.5110841,-0.40936503,0.2450596,-0.1763364,-0.27669743,0.29385078,-0.33068404,0.33146387,-0.9652981,0.3236078,-0.20800105,-0.6963074,-0.64985055,-0.031635303,-2.8354225,0.26000497,-0.11035906,-0.009628243,-0.13201731,-0.22385915,0.2504737,-0.46877337,-0.6548555,0.05559029,0.20302328,0.9550902,-0.008907139,-0.06776514,0.027745852,-0.6307287,-0.22338957,0.2474274,0.08808712,0.27057856,-0.08574339,-0.5025905,-0.15004483,-0.27849707,-0.41702616,-0.10472037,-0.8598229,-0.45375875,-0.18938385,-0.8346866,-0.098613665,0.70584404,-0.13657996,0.06206637,-0.39005834,0.015514195,0.197534,0.093635716,0.05092331,0.08963271,0.33945453,-0.08645657,0.033530198,-0.24793825,-0.031773064,-0.055625446,0.11738641,0.297248,-0.21058556,0.4104738,0.76846576,0.8691863,-0.38197047,1.0033323,0.7095037,-0.30430943,0.2943445,-0.08328468,-0.54596317,-0.63739544,-0.20929353,-0.15444548,-0.5787412,-0.12772141,0.09568857,-0.41549048,-0.99108696,0.7571182,0.072650015,0.1609951,0.109325975,0.45676988,0.48063204,-0.17836529,-0.097253166,-0.2312403,-0.3243907,-0.42431056,-0.22416364,-0.59368074,-0.6526875,-0.041412838,1.5123367,-0.28020227,0.086827345,0.1477774,-0.1644102,0.049064398,0.1717306,0.08432837,0.37314862,0.53720367,-0.05980023,-0.54971,0.24390484,-0.17488411,-0.011906491,-0.44594532,0.34811667,0.6349577,-0.73946124,0.29201144,0.18245283,0.052368615,-0.10979426,-0.52372736,-0.026282724,0.16726892,-0.25510007,0.4623612,0.3672756,-0.7086042,0.62372214,0.29327965,-0.28163823,-0.77710795,0.15245189,0.0600324,-0.2647714,-0.1528807,0.43775213,-0.07417921,0.0049993303,-0.38564762,0.18280624,-0.20371482,0.3195475,0.09665031,-0.33743873,0.22348188,-0.49931702,-0.33641356,-0.74595666,0.13797449,-0.4651933,-0.37647703,0.20254612,0.07839855,0.11711591,0.04450742,0.121078536,0.5092392,-0.26800746,0.041426238,-0.26985195,-0.44336227,0.40695345,0.49686435,0.32119936,-0.31868193,0.70357555,0.059968792,-0.22503193,-0.4763042,-0.055383485,0.6211446,-0.13549168,0.4065456,0.09583064,-0.16962235,0.191199,0.86389416,-0.03140222,0.34381488,-0.076758824,-0.15874907,-0.04850305,0.118338786,0.16291769,-0.05873209,-0.49762633,0.099518366,-0.2276722,0.028207155,0.64204067,0.26716945,0.3553469,-0.12353635,-0.2676949,0.053825535,-0.008935983,0.20192154,-1.4596195,0.3316376,0.26213413,0.6947532,0.47612637,0.14832388,-0.13135482,0.6647125,-0.33858067,0.16982879,0.18172099,-0.27107394,-0.23701072,0.4583851,-0.80556285,0.50359666,0.0032185225,-0.03525356,0.3182192,-0.11739358,0.52448475,0.8987074,-0.21599957,0.16906546,-0.03323068,-0.25325558,0.037849355,-0.19240293,-0.14262949,-0.54915977,-0.45008653,0.97707164,0.30028015,0.4550237,-0.22294165,-0.010438951,0.1440238,-0.2994723,0.2655961,-0.11042113,0.206787,-0.1896862,-0.326018,0.017129926,0.5121819,0.2752303,0.09642368,0.10766235,-0.2429226,0.27639884,0.016359806,0.011534361,-0.18027498,-0.5800526,0.006717526,-0.499817,-0.2633898,0.4501009,-0.15382592,0.090396866,0.18670684,0.050151348,-0.22501977,0.6331944,0.09320258,0.8521128,0.22027276,-0.123059064,-0.08537786,0.5684389,0.09253489,-0.26995632,-0.034004845,-0.29513404,0.15972002,-0.70031446,0.55414534,-0.082718775,-0.5513306,0.300435,-0.07263132,0.11405904,0.2831247,-0.21198955,-0.08449901,0.028300345,-0.09357978,-0.2664521,-0.3184479,-0.2501439,0.30423605,0.095787935,-0.09160764,-0.30815095,-0.0766315,-0.068237275,0.58878475,0.024358515,0.20401834,0.2766368,0.24276775,-0.4380948,0.13459674,0.2911515,0.5057514,-0.010671644,-0.18847695,-0.23059872,-0.26072958,-0.5753736,0.16396578,-0.11919998,0.4132276,0.11097434,-0.23189251,0.8790032,0.26525003,1.3284787,-0.19476166,-0.39007586,0.27832934,0.55341786,-0.091235444,-0.0819025,-0.28531882,0.89380205,0.6543102,-0.07271809,-0.1509681,-0.513266,-0.29796392,0.2975876,-0.38349983,-0.16039951,-0.05121902,-0.6414409,-0.43205076,0.28173417,0.24121715,0.07888636,-0.19573191,0.18263179,0.24165517,-0.13675275,-0.01167125,-0.4517357,-0.015853213,0.3433656,0.16763128,-0.075990826,0.044737097,-0.51281154,0.39109457,-0.677997,0.037440456,-0.23521835,0.19778201,-0.018992113,-0.3631572,0.22406301,0.14779755,0.25074035,-0.5072569,-0.3004347,-0.15664218,0.598953,0.098670915,0.030953903,0.7418572,-0.36940473,0.14841492,0.024037452,0.24669306,0.9171615,-0.25704336,-0.022151938,0.2703598,-0.21110636,-0.6409889,0.47858498,-0.37832448,0.14939007,0.05438534,-0.38985592,-0.55600923,0.3167823,0.24921982,0.13299078,-0.045856003,-0.6123534,0.17475997,0.28793627,-0.15190342,0.01951353,-0.3933987,0.06375353,0.5268676,-0.10063569,-0.6881142,0.3269431,0.22246936,-0.19086543,-0.6380629,-0.16809027,-0.2966101,0.26198658,0.08709526,-0.3888368,0.017441677,0.091711946,-0.60824883,-0.10401295,0.28931606,-0.28918105,0.17422397,-0.454439,0.11659812,0.9949792,-0.37620443,0.3381661,-0.5199098,-0.6016289,-0.88926095,-0.14455827,0.6330561,0.18790744,-0.029085118,-0.99928737,0.06344669,-0.31044585,-0.108826995,0.12391978,-0.38428518,0.5593484,0.17991978,0.42496192,-0.23687223,-1.0181702,0.38287634,0.11495876,-0.18172783,-0.37694725,0.47488913,0.041213818,0.88017315,0.12869407,0.11358234,0.32409054,-0.84225583,0.118296504,-0.16653708,-0.029598393,-0.6149547,-0.20422174,211 +630,0.3957238,-0.18953325,-0.5668139,-0.30752084,-0.5693444,0.19701742,-0.21851622,-0.026381163,0.31429031,-0.4317888,-0.088599995,-0.15942687,0.03213934,0.55453867,-0.30963638,-0.620411,-0.03184878,0.22686145,-0.85457224,0.49144056,-0.45893776,0.28585866,0.15341806,0.2505414,0.16616522,0.008144363,0.41144472,0.041537106,-0.067181386,-0.099965766,-0.15579209,0.06969796,-0.58724743,0.26993108,-0.18216369,-0.4961589,0.047859266,-0.57440495,-0.18759492,-0.720107,0.5102726,-0.8731645,0.5443932,-0.18386866,-0.1818888,0.22552776,0.32746738,0.18764988,-0.22809282,-0.022512244,0.34436682,-0.31497642,-0.15138648,0.025141168,-0.39960396,-0.5297129,-0.6710415,0.08711949,-0.7239784,-0.032374,-0.2386678,0.2374079,-0.2930115,0.15126374,-0.10909419,0.44334576,-0.37359625,-0.08606926,0.22470161,-0.0372786,-0.071450315,-0.4600689,-0.30831724,-0.1866574,0.4206961,-0.16398114,-0.17712633,0.3964369,0.15481132,0.38821995,0.0671628,-0.33539647,-0.25247523,0.027313102,0.07536626,0.48511854,0.1440308,-0.25691402,-0.2136284,0.03226976,0.43413073,0.3269841,0.15893298,-0.14176203,0.07188214,-0.11193867,-0.2197002,0.640622,0.45045596,-0.33514506,-0.39580837,0.44358727,0.359742,0.038103662,-0.1360551,0.11120503,-0.08966789,-0.67680424,-0.21122018,0.3114756,-0.0027762859,0.528729,-0.14104915,0.25600263,0.6717524,-0.26114434,-0.1492663,-0.12021859,-0.04416557,-0.16167384,-0.21726418,-0.095258,0.2966685,-0.67472017,-0.013531197,-0.31342378,0.7377579,0.007716196,-0.787885,0.19364572,-0.48187965,0.24187082,-0.09674342,0.68671477,0.81602436,0.5166134,0.31311607,0.9375572,-0.3328625,0.20866282,-0.12202473,-0.36364636,0.017346947,-0.2263418,0.04064295,-0.47298098,-0.021560825,-0.114872254,-0.0012703309,0.03232744,0.5346213,-0.49270695,-0.16589059,0.03552167,0.6346732,-0.38693973,-0.15514888,1.1704088,1.054614,1.1943073,0.18938573,1.2392794,0.3125378,-0.14992079,-0.08576692,-0.047598474,-0.71915245,0.23788507,0.26334587,0.08979968,0.32766035,-0.00014336292,0.11393787,0.27142423,-0.3994791,-0.2275323,-0.06732815,0.34786886,0.018288048,0.015693197,-0.24197325,-0.3344639,0.12918013,0.107679255,0.2009436,0.28670454,-0.18439706,0.81027406,0.10959541,1.1882544,0.10251077,-0.030519636,-0.11367304,0.454596,0.24459916,-0.13849458,-0.20354524,0.16067146,0.29591057,-0.164042,-0.60414505,-0.13806851,-0.30479702,-0.28742746,-0.24196988,-0.4040928,-0.068378486,-0.36407524,-0.09201296,-0.23126301,0.08671602,-0.49174228,0.45558497,-2.4595277,-0.2797427,-0.23636898,0.36431012,-0.057167407,-0.24791981,-0.25508487,-0.6773303,0.4798237,0.41001013,0.41455376,-0.5545418,0.44431037,0.34637135,-0.6036986,-0.1799635,-0.8417508,-0.03930401,-0.14754765,0.32667682,-0.04352679,-0.07503577,-0.124847926,0.2303768,0.53484786,0.14594005,-0.0074371602,0.3301162,0.73956835,0.060624048,0.7207564,0.1403881,0.64036494,-0.43294474,-0.09023353,0.28807837,-0.4986416,0.36108935,-0.06783068,0.19156529,0.6836862,-0.631566,-0.9353208,-0.5479823,-0.17660362,1.1682115,-0.27143797,-0.35403493,0.23258512,-0.19736885,-0.08107667,-0.017478747,0.457392,-0.14016022,-0.05781569,-0.59350246,-0.1833218,0.07318664,0.16389486,-0.15221907,0.025664646,-0.4581862,0.4805126,-0.109337136,0.39692926,0.2307033,0.22590402,-0.53065264,-0.50986236,0.3358148,0.8258644,0.38124296,-0.06415785,-0.2551497,-0.2128214,-0.25043055,-0.34570578,0.1328308,0.39524123,0.62648875,0.030264301,0.21955845,0.43197024,-0.21051572,0.12262627,-0.18421474,-0.20611158,-0.27287066,-0.055684473,0.6357781,0.7000411,-0.026980937,0.49417013,-0.085528776,0.21657148,-0.16244806,-0.5040336,0.5615301,0.809652,-0.09312829,-0.26207703,0.6172057,0.48064947,-0.16779925,0.5188742,-0.43925476,-0.3769843,0.6048454,-0.09738842,-0.38628185,-0.123431645,-0.33734906,-0.018977482,-0.89892757,0.2275455,-0.013768911,-0.53552705,-0.6106707,-0.123428784,-2.8167088,0.024722485,-0.21806079,-0.072894625,-0.12473444,-0.36224863,0.18720943,-0.39801934,-0.7128079,0.21662697,0.11787583,0.70646083,-0.08960747,0.23418894,-0.27011728,-0.26486772,-0.42797136,0.113400236,0.14107102,0.43465537,-0.038637858,-0.35833052,0.15106831,-0.47201654,-0.48877034,-0.0602202,-0.4638347,-0.36557162,-0.051005363,-0.6310025,-0.32350528,0.7513719,-0.16130525,-0.16393144,-0.33224732,0.0538094,0.1511639,0.2928993,0.050927844,0.21917017,0.11291814,-0.08926695,-0.012274714,-0.29171744,0.26747146,0.07695487,0.14308609,0.4394914,-0.16720702,0.32067442,0.40652114,0.72082865,-0.08256279,0.90177375,0.091950215,-0.1307469,0.20952225,-0.23513919,-0.36631006,-0.6269783,-0.22892064,-0.054892905,-0.5080536,-0.42362103,-0.116302475,-0.31062663,-0.8883986,0.5587194,0.22388095,0.20361081,-0.28510615,0.20418385,0.23783001,-0.2162141,0.17773312,-0.17169435,-0.1653921,-0.467967,-0.45541817,-0.788722,-0.5998774,-0.094358645,1.3599688,-0.27564615,-0.14317468,0.017989222,-0.33544916,0.28926784,0.26758835,0.014207868,0.39881957,0.29782298,-0.10754435,-0.6529426,0.47986147,-0.23571777,0.1818757,-0.37729856,0.09243392,0.7783164,-0.54197943,0.32176203,0.5142175,0.08793016,-0.072669834,-0.60036856,-0.13553753,-0.069392726,-0.05967239,0.36590818,0.3168948,-0.80798507,0.66225135,0.07835957,-0.3673039,-0.8170451,0.34072554,0.07630365,-0.026431946,0.28868946,0.35024044,0.33898047,-0.074222036,-0.43020126,0.22119887,-0.41500646,0.35766643,0.12448169,-0.0035756642,0.3207016,-0.28926802,-0.54031366,-0.6349458,-0.10462893,-0.5357049,-0.180906,0.0907677,0.038553394,0.122297876,0.21937667,-0.0094480375,0.35103768,-0.36773846,0.054105144,-0.071188696,-0.2434002,0.28834227,0.48235688,0.43385983,-0.6220735,0.7030765,0.07435061,-0.08954,-0.0047014216,-0.028164927,0.2058189,0.2900525,0.21189298,0.23182808,-0.25443593,0.13202544,0.61218035,0.12517752,0.18121053,0.25181395,-0.32066762,0.364802,0.118290186,0.25420907,-0.116043694,-0.3288254,-0.010412106,-0.1946449,0.047658384,0.28406918,0.01145036,0.33556637,0.042817004,0.035482362,0.02409537,0.086696625,-0.2882834,-1.4061608,0.31370208,0.19165447,0.723496,0.51920927,-0.03766694,0.035843085,0.710181,-0.3834329,-0.072885044,0.31575915,0.17189237,-0.2597454,0.5276156,-0.49753475,0.6105789,-0.13796376,-0.00087608397,0.093168385,0.28323597,0.34230042,0.9624622,-0.1178034,0.06278625,-0.06753529,-0.19479115,0.2687642,-0.24278821,-0.009177531,-0.494971,-0.2304311,0.87451375,0.2045664,0.36753353,-0.08823157,-0.016542275,0.10568913,-0.17856668,0.041165616,-0.10055157,-0.102323376,-0.26177236,-0.6077102,-0.11958578,0.5290282,0.056462582,0.23916985,0.21268076,-0.358721,0.13500413,-0.12550066,0.09643298,-0.08022494,-0.7493753,-0.21837507,-0.17743972,-0.47178572,0.24295966,-0.4473518,0.27228695,0.3088413,-0.03612473,-0.27471894,0.07585316,0.20124577,0.6976814,-0.0022058212,-0.077265576,-0.26250812,0.045427322,0.25826102,-0.4817945,0.19642822,-0.1528987,0.1374183,-0.61915207,0.608143,-0.09506081,-0.39098123,-0.049643032,-0.091007434,-0.040206883,0.39538816,-0.09546907,0.12723304,0.122012615,0.07960127,-0.20478293,-0.102000766,-0.43760204,0.16483815,0.1762791,-0.09448274,-0.069634765,-0.03567711,0.11542135,0.6851864,0.0656218,0.12052941,0.12371673,0.053319573,-0.5245903,0.09518561,-0.12032005,0.57947195,0.019444585,-0.24722418,-0.36601794,-0.16502914,-0.238376,0.6187611,-0.16178145,0.09080161,0.01896763,-0.36991245,0.6923977,0.11573624,1.1784027,0.018398311,-0.47806937,0.18046273,0.6555177,0.08006914,-0.006316969,-0.22314993,0.97137386,0.46132877,-0.24934532,-0.20463778,-0.60133094,-0.123162985,0.2832446,-0.352348,-0.18723574,-0.114160985,-0.5182296,-0.25528446,0.26654053,0.07854325,0.20173317,-0.282304,0.1368772,0.22485963,0.14835599,0.38350666,-0.6673351,-0.16177717,0.31391746,0.15110232,-0.015052419,0.10362442,-0.39004713,0.37433082,-0.679435,0.24240783,-0.29460016,0.18856889,-0.12296871,-0.18695733,0.3037825,0.34344393,0.36304325,-0.2526757,-0.39576986,-0.31686783,0.69045615,0.34013674,0.35087663,0.7827849,-0.33719888,-0.14406824,-0.023958476,0.3751286,1.2910328,-0.051490095,0.05472354,0.29796445,-0.35493073,-0.59830064,0.2751911,-0.43125364,0.07197059,0.01796031,-0.27390018,-0.36985874,0.28519613,0.22296605,0.29614392,0.12276887,-0.5910846,-0.18331626,0.42173052,-0.17275167,-0.28210837,-0.41415197,0.061658364,0.61209273,-0.15935005,-0.33093598,0.117141314,0.35707074,-0.23669583,-0.74716944,-0.059492495,-0.30305263,0.44159552,0.11583788,-0.25314313,-0.22197025,0.034157258,-0.41464707,0.22484551,0.19216508,-0.33240458,-0.034519076,-0.23880276,0.00391407,1.0596994,-0.16707776,0.28247553,-0.51588774,-0.46823597,-0.9044234,-0.17416981,0.12063285,0.14594749,-0.0859758,-0.552765,-0.20873043,-0.03301825,-0.11342454,0.21465053,-0.53051937,0.32737917,0.1489763,0.23418058,-0.11790789,-0.98465097,0.073655054,0.04607813,-0.2521269,-0.41312927,0.575321,-0.12535463,0.47403526,0.11427628,0.014704539,0.11318558,-0.41765293,0.35586312,-0.31365883,-0.15867224,-0.394612,-0.0544846,212 +631,0.3290613,-0.04997078,-0.64484066,-0.056480415,-0.15199013,-0.008720605,-0.23726441,0.54036385,0.41964,-0.5067823,0.018239724,-0.040123835,-0.00065657496,0.1690162,-0.23435125,-0.5573369,-0.054123804,0.19775401,-0.5303414,0.57294106,-0.3734926,0.27354482,0.22868626,0.24978042,-0.053737342,0.21907641,0.012344356,-0.15970853,0.04367321,-0.12550062,0.02363178,0.19513133,-0.4642673,0.33279622,-0.1220185,-0.12943108,0.047809288,-0.37780836,-0.40108678,-0.7684351,0.10609992,-0.7074166,0.54651344,0.03610563,-0.4189439,0.1698226,0.001907649,0.14272952,-0.25170547,0.045023486,0.3093025,-0.21803635,-0.5419687,-0.28334385,-0.29724076,-0.48676902,-0.47405085,-0.14567049,-0.45785713,0.28385085,-0.31942636,0.22117516,-0.30666262,-0.0154713895,-0.21928999,0.36346248,-0.45932597,0.26721132,0.16471331,-0.051657908,0.4627703,-0.5976193,0.04432952,-0.12269013,0.15624431,0.16410202,-0.35881594,0.32170883,0.08981873,0.6187976,-0.097858004,-0.10556693,-0.3038948,0.09130164,-0.059430383,0.4168487,-0.2824741,-0.107071675,-0.1747697,-0.08070827,0.36866134,0.30788282,-0.18721618,-0.38878843,-0.10144453,0.005988107,-0.38005373,0.41943994,0.58593154,-0.092834204,0.108618245,0.4192701,0.36685672,0.26116404,-0.26043314,0.10517548,-0.13387762,-0.5656177,-0.22565348,0.07275853,0.0058145477,0.4394397,-0.09752385,0.10986643,0.6583353,0.0014692178,-0.2682777,0.18312621,0.14755373,0.0929356,-0.14455853,-0.18265165,0.2946133,-0.63226086,-0.14025773,-0.3379892,0.63088745,-0.12962992,-0.96283305,0.40353787,-0.3859546,0.072037585,-0.16204707,0.7141057,0.82469726,0.8426357,0.07576804,0.90079814,-0.66491574,0.012856511,-0.23403105,-0.37672248,0.42021805,0.020566909,0.035242837,-0.44404528,-0.29006672,0.08702927,-0.2869115,0.121797055,0.49173906,-0.42707422,-0.33493587,0.10445145,0.58045304,-0.36414176,-0.13546176,0.50057256,1.0997844,0.7592944,0.19277444,1.2434611,0.07824834,-0.10668422,0.013578773,-0.15131743,-0.7973777,0.27034616,0.23780641,0.14484888,0.13211495,0.18255416,-0.044699267,0.284153,-0.10222367,-0.27343372,-0.13507025,0.3350482,-0.2430117,-0.09802858,-0.26373294,-0.36472642,0.04467751,0.16474196,0.026987245,0.2456381,-0.1862851,0.19960557,0.2808129,1.4335009,-0.111213885,0.012093612,0.13031076,0.123961225,0.29883906,-0.16198143,-0.1988612,0.43932799,0.38427818,0.019585064,-0.6217126,0.095253855,-0.07185674,-0.3318729,-0.10156015,-0.20735945,0.094385706,-0.1376349,-0.28102487,-0.17232966,0.0002736094,-0.66678596,0.5286599,-2.7283123,-0.038303215,-0.008305591,0.38514048,-0.011802875,-0.23451048,-0.3528171,-0.49623632,0.4417944,0.32945964,0.59013164,-0.47675964,0.4131565,0.4326573,-0.6232394,-0.12585126,-0.75694394,0.011032861,-0.03390919,0.18869518,0.09393603,-0.08624358,-0.0080888085,-0.023070775,0.4514119,0.0049849106,0.15759343,0.45080596,0.47490963,-0.09787367,0.48044747,-0.22213088,0.49430627,-0.3054849,-0.09846897,0.22327016,-0.26972142,0.25498372,-0.19522974,0.19097377,0.39725304,-0.4592225,-0.799013,-0.43650293,-0.049663864,1.3038821,-0.42566812,-0.45567256,0.2221772,-0.145651,-0.28790763,0.061192673,0.67474043,-0.17928974,-0.061982915,-0.78723466,-0.13749428,0.019687848,0.44829047,0.018392816,-0.007901325,-0.3938715,0.63602406,0.013388147,0.6808316,0.44797057,0.13493209,-0.12918893,-0.22239974,0.048817195,0.84798086,0.30380544,0.16848278,-0.2608541,-0.09225222,-0.28950465,0.05148065,0.053278368,0.64445245,0.57255286,-0.1673056,0.068867855,0.42759016,-0.23745863,0.011373346,-0.14218631,-0.30940178,-0.12309189,0.10120343,0.52621025,0.7431679,-0.0038994963,0.17319356,0.113936916,0.33095136,-0.056610264,-0.65060896,0.38595402,0.6204735,-0.13411643,-0.2792803,0.5805258,0.49882835,-0.018891223,0.5574243,-0.4790827,-0.48474312,0.4985804,-0.022053044,-0.44249102,0.36428055,-0.3644283,0.07668848,-0.7540747,0.20854998,-0.39495108,-0.7393925,-0.34920242,0.06575502,-2.4795847,0.27009627,-0.106680945,-0.1108612,-0.086828575,0.015428112,0.37130144,-0.36840317,-0.6193815,0.013520222,0.34964234,0.46797693,-0.016570369,-0.09526897,-0.2403953,-0.30700442,-0.30202186,0.1850868,0.14330646,0.2313322,-0.12744525,-0.60184455,-0.311114,-0.1897517,-0.18750317,-0.025552187,-0.5427781,-0.24038744,-0.0575156,-0.66115963,-0.3210028,0.5585062,-0.43421504,-0.02669505,-0.10888757,0.039424498,0.12653463,0.27068678,-0.28022307,0.14216545,-0.08720649,-0.18759878,-0.14182955,-0.2952823,0.3183969,0.051939055,0.14699909,0.32892603,-0.071548834,0.046414085,0.76935196,0.60185236,-0.21510823,1.0922264,0.4632074,-0.009919453,0.11799698,-0.020658858,-0.17681734,-0.6871844,-0.0503755,-0.29472938,-0.53533834,-0.08352104,0.100082435,-0.41620815,-1.0148411,0.5608891,0.15129124,-0.07242871,0.14039114,0.3525844,0.35790524,-0.04621158,0.039246693,-0.23681849,-0.3371926,-0.46652144,-0.3433066,-0.832888,-0.30069587,0.14700437,1.1791921,-0.32087544,0.194908,0.061669275,-0.16349524,0.048522923,0.13995603,0.005411675,0.2857786,0.4014242,0.035926737,-0.47577098,0.3603515,-0.2326805,0.07100027,-0.6356642,0.232733,0.61427546,-0.79813373,0.42562735,0.40535083,-0.0108137615,0.024278838,-0.7335507,-0.29761994,-0.011774559,-0.1767288,0.5207139,0.23374255,-0.96266717,0.54055804,0.28344434,-0.22774762,-0.7422923,0.36800683,-0.17656633,-0.19204037,-0.021224352,0.26830417,-0.049908385,0.028196167,-0.23894912,0.122526355,-0.38831088,0.40106437,-0.029259672,-0.20603308,0.26995432,-0.106400795,-0.0016636115,-0.89144367,-0.11376064,-0.6409396,-0.20195073,0.39008886,-0.029147752,0.03981232,-0.018571189,0.20410262,0.45910007,-0.32175812,0.117840394,-0.44582698,-0.36553735,0.640926,0.5760117,0.47295552,-0.31287748,0.5254865,-0.09113913,-0.084633,-0.31130183,0.22655572,0.4017731,0.07035808,0.36720133,-0.08109457,-0.21328834,0.10681209,0.8222581,0.20479801,0.2105342,0.023614787,-0.06798342,0.2422631,0.05818101,0.14339264,-0.19448288,-0.55265284,-0.023345493,-0.42977995,0.1646367,0.5477828,0.24539311,0.45314205,-0.15764305,-0.22953017,-0.0666232,0.24166647,0.30873543,-0.8712771,0.46808916,0.14621775,0.3983362,0.68232447,0.16071132,0.012243862,0.62005687,-0.076546624,0.22112466,0.1995174,-0.032534745,-0.3838474,0.41963392,-0.7727794,0.3432981,-0.05280649,-0.048464578,0.3590904,0.013267613,0.45505187,1.0092162,-0.035512384,0.20746034,0.040938117,-0.16202904,0.18804106,-0.33175847,-0.052722856,-0.48955253,-0.5040999,0.61346656,0.40764326,0.5966015,-0.20201008,-0.106998056,0.058422275,-0.15520594,0.28678086,-0.03456235,-0.059376523,-0.24480905,-0.49011052,-0.09116945,0.5391846,0.041700702,0.11074129,0.028723657,-0.007780882,0.49609888,-0.020845817,-0.043699466,-0.18785235,-0.6433734,-0.028232204,-0.41568437,-0.270284,0.59200656,-0.1956065,0.32281584,0.175514,0.05825076,-0.20422564,0.32609308,0.16223475,0.7222162,0.09804832,-0.23687671,-0.2720502,0.0899375,0.19966528,-0.28751692,-0.16840135,-0.29011595,0.005844162,-0.7892783,0.26821136,-0.29610398,-0.21074031,0.301984,-0.0670424,0.019917719,0.49736512,-0.11377736,-0.25380978,0.08409012,0.015237863,-0.281994,-0.42648834,-0.30537716,0.1147242,-0.084779516,0.015597921,-0.044456463,-0.20141497,0.05853174,0.26068056,0.09222668,0.15389329,0.20305167,0.35295933,-0.3116711,0.1044053,0.2614708,0.61915904,-0.075927325,-0.027043384,-0.31737417,-0.18201311,-0.2727854,-0.02357812,-0.051239647,0.4534243,0.1845418,-0.23117863,0.8285692,0.0075046006,0.75508314,-0.08075702,-0.19045022,0.09589006,0.50001913,-0.014189113,-0.2002666,-0.25715658,0.75909203,0.7133845,-0.114405684,-0.08553735,-0.53642213,-0.21318942,-0.014479348,-0.30988201,-0.1817453,0.013044215,-0.76919544,-0.21397766,0.14561656,0.17300566,0.10762089,-0.18740067,-0.057519324,0.122686386,0.12728333,0.02561493,-0.4000721,0.06162371,0.1708501,0.19612479,0.022323979,0.18958451,-0.49431655,0.2704901,-0.49366072,0.09102298,-0.27944085,-0.017380165,-0.18272002,-0.27133548,0.12285599,-0.026300251,0.27345043,-0.20106035,-0.30281267,-0.19684808,0.4402264,0.315366,0.25484616,0.76595074,-0.30912465,-0.062282316,0.013234879,0.59480995,0.9385453,-0.4393257,-0.09543034,0.5042484,-0.32852352,-0.533451,0.050657757,-0.36341682,0.029272325,-0.06532153,-0.32424673,-0.24201521,0.33834013,0.0017657166,-0.14272335,0.04435271,-0.64740986,0.11562784,0.050368402,-0.17995375,-0.157181,-0.20797521,0.14512393,0.67089623,-0.39927924,-0.46588933,0.07021011,0.10876794,-0.10222844,-0.47616732,0.088450365,-0.39757535,0.24090873,0.19564992,-0.3603348,0.035845462,0.0015256542,-0.524374,0.032496914,0.13410585,-0.28126246,-0.060425382,-0.327956,0.06882454,0.84428877,-0.045538142,0.11027778,-0.23940231,-0.5164869,-0.6474997,-0.16177852,0.18099913,0.13165952,0.0067371484,-0.49494222,-0.034859076,-0.18481919,-0.17445841,-0.17422372,-0.39500573,0.61979395,-0.025803594,0.321948,-0.24815321,-1.1185145,0.31347054,0.1775061,-0.23956618,-0.5120811,0.49051157,-0.18952414,0.96491444,0.11611735,0.09881732,0.2674592,-0.6659114,0.11540366,-0.32536426,-0.27558237,-0.55728483,-0.0557287,227 +632,0.47886398,-0.19752581,-0.59770036,-0.08005032,-0.38711196,0.059901755,-0.29893747,0.0883544,0.4083397,-0.1826593,-2.8488728e-05,-0.058994785,0.058295663,0.4649418,-0.07667816,-0.80334485,-0.019886823,0.07250383,-0.7447606,0.73905087,-0.364467,0.22849448,0.0038479657,0.49923393,0.22004208,0.42403692,0.3128613,0.16269387,-0.106950395,0.06711844,-0.09260626,-0.17418225,-0.7453964,0.20985621,-0.22752164,-0.42176068,-0.17062703,-0.4812923,-0.35371134,-0.78725123,0.34854904,-0.8830366,0.3811514,-0.17822559,-0.27684137,-0.028801877,0.13644348,0.2587336,-0.2859394,-0.13828447,0.2757975,-0.4113692,0.02472149,-0.16462046,-0.3066668,-0.50522697,-0.51718533,-0.090524554,-0.45573,-0.27566513,-0.19995672,0.24481949,-0.27086586,0.031141588,-0.3836373,0.41971308,-0.417625,0.04913124,0.37188143,-0.38354412,0.20185944,-0.4991431,-0.17927231,-0.11650972,0.07330895,0.21368074,-0.16660868,0.3721257,0.091551885,0.43021268,0.23649234,-0.29326597,-0.34861806,-0.09273617,0.3307829,0.45818424,-0.00737331,-0.0903465,-0.35529807,-0.39274108,0.08054546,0.24873048,0.06926347,-0.42161736,0.19521178,-0.0048868796,-0.07863916,0.3718283,0.48977235,-0.2660379,-0.20064057,0.22740373,0.5138901,0.111686304,-0.40986758,0.13851728,0.010935539,-0.28465855,-0.29507986,0.349411,0.030419676,0.5995435,-0.078560844,0.2549452,0.7154538,-0.045277156,-0.05570484,-0.26010698,-0.09180936,-0.117893346,-0.5426208,0.05220533,0.3802386,-0.54659104,0.33202484,-0.32090524,0.5354751,0.1818095,-0.6704291,0.38630503,-0.60264146,0.15246776,-0.010211174,0.556747,0.71736825,0.3972187,0.11434233,0.9448987,-0.40072492,0.06570163,0.05140659,-0.23820694,-0.037541136,-0.22082637,0.5252831,-0.4498656,0.14158954,0.040111654,0.07346987,-0.012713075,0.20624296,-0.15343955,-0.22928485,0.024780402,0.85056233,-0.25174963,0.06725286,0.9276208,1.1438197,1.0578816,-0.08031095,1.3174752,0.39730108,-0.27785963,0.017505554,-0.19713587,-0.6932175,0.045673314,0.30555105,0.4849425,0.32045534,-0.0018793253,-0.113654904,0.47518376,-0.16549365,0.13469185,-0.034724686,0.024965078,0.097374715,0.009059759,-0.39253664,-0.35679862,0.09465651,-0.0015480518,-0.17723306,0.2961627,-0.09207019,0.67366517,-0.08019309,1.286106,0.06511723,0.13598795,0.102377616,0.63305336,0.21307868,-0.28695473,-0.027244912,0.20537768,0.18903807,0.099459775,-0.4518631,0.12384743,-0.46875408,-0.5870832,-0.10347082,-0.48571905,-0.104831494,-0.0014636058,-0.48875183,-0.28455836,0.02566592,-0.25612992,0.3114486,-2.4351556,-0.09129203,-0.24385346,0.22303008,-0.3689882,-0.100933,-0.22114347,-0.5825672,0.27846402,0.4104937,0.5371611,-0.556176,0.40964955,0.41305843,-0.50331146,0.08967542,-0.54800713,0.010955735,-0.066692226,0.4507327,-0.06606059,-0.13832003,-0.07405259,0.2541601,0.8436681,0.21077076,0.030000338,0.3352345,0.40035424,-0.24183017,0.44745725,0.032181546,0.47267196,-0.47633892,-0.14712438,0.4510818,-0.5551428,0.4249542,0.067692645,0.24942707,0.62383497,-0.5125812,-0.7882072,-0.6726582,-0.41123036,0.99471843,-0.33756235,-0.7178242,0.33092144,-0.12838612,-0.14433195,0.10447465,0.67786896,-0.044465225,0.15776429,-0.46036005,0.015488678,-0.086407185,0.26177436,0.02511426,0.109605536,-0.3169632,0.8617194,-0.11923694,0.48076814,0.2608885,0.24420485,-0.10631265,-0.3268759,0.12652113,0.6204064,0.41664836,0.15392978,-0.08241368,-0.121198945,-0.24679483,-0.44969383,0.10138574,0.74142194,0.62018734,-0.12394642,0.1347399,0.376929,-0.26718032,-0.053818308,-0.06443748,-0.4221512,-0.15690756,0.15214403,0.38566494,0.84207475,-0.05929319,0.24266097,-0.17115323,0.34040943,-0.16271535,-0.5577646,0.469334,0.6367211,-0.12620698,-0.11740981,0.5680514,0.42412314,-0.50927544,0.47213942,-0.5262124,-0.41107467,0.644692,-0.036712885,-0.57526743,-0.08934139,-0.3030569,-0.056158945,-0.72745633,0.05418724,-0.28131846,-0.54556745,-0.38331082,-0.1549748,-3.953833,0.221496,-0.16018263,-0.16377082,-0.34596178,-0.06797177,0.27307895,-0.59424883,-0.5419603,0.099471614,-0.008191425,0.69683796,-0.04410765,0.21287963,-0.41607797,-0.059417907,-0.5216165,0.43048877,0.061595403,0.3533377,-0.28252247,-0.3243003,-0.12402133,-0.20683649,-0.6862136,-0.05097021,-0.7012343,-0.35004717,-0.28274506,-0.39955872,-0.47060782,0.60572064,-0.34351444,0.059813935,-0.31494066,-0.11282912,-0.2642566,0.4360256,0.4267775,0.2958656,0.195549,0.026316,-0.30278835,-0.3312244,0.015742756,0.12386895,0.30226517,0.47724703,-0.19495371,0.19492254,0.35118052,0.69266516,-0.05217347,0.81509584,0.061309136,0.061495826,0.61564755,-0.22635563,-0.3660348,-0.78588176,-0.19750205,-0.16780451,-0.33137527,-0.5812682,-0.12808274,-0.4023153,-0.7593956,0.3960373,0.33538005,0.36997747,-0.036098134,0.04689568,0.32132527,-0.26617417,0.09190002,-0.0989103,-0.09723937,-0.6886638,-0.4484838,-0.7016522,-0.7856216,0.17056957,0.82418376,0.056229673,-0.30287132,0.13032189,-0.59732324,0.14736381,0.37317145,0.124780305,0.077855915,0.433668,-0.01245379,-0.73478264,0.68956214,-0.08378412,-0.08827799,-0.5258386,0.11282542,0.6328615,-0.540331,0.8186339,0.18480158,0.34282777,-0.21632811,-0.45527872,-0.2839704,-0.167234,-0.16595769,0.4930186,0.3154434,-0.78858626,0.29175436,-0.00660074,-0.1128114,-0.65229416,0.3617391,-0.04114971,-0.10232261,-0.014932708,0.48973578,-0.04506245,-0.14333403,-0.012523023,0.11456004,-0.6527176,0.15111922,0.37854058,0.08677408,0.5087572,0.038090475,-0.35897747,-0.5845813,0.11820744,-0.45735458,-0.08492343,0.2820649,-0.026739923,-0.073087424,0.18236841,0.09140952,0.3162133,-0.08430934,0.29308653,-0.2092686,-0.39508897,0.49146557,0.4603644,0.30261192,-0.668733,0.682583,0.09417284,-0.25079566,0.045671824,0.1631121,0.4434075,0.39506647,0.48150724,-0.09130604,-0.19148037,-0.1396612,0.5514442,0.21516408,0.52839893,0.1145624,-0.24105461,0.5353019,0.12957016,0.15128665,-0.13576618,-0.5452459,0.08056274,-0.1917232,0.19499095,0.33505931,0.024200954,0.38871014,-0.045763496,-0.084269196,0.21506213,-0.045437768,-0.23664075,-0.9891561,0.1954808,0.25657013,1.0541995,0.5751865,-0.14185348,-0.19077028,0.6455196,-0.17931761,0.11927566,0.34960228,0.01062152,-0.4451291,0.82827,-0.53557086,0.42032677,-0.12753932,-0.14928065,0.31227362,0.37840447,0.5664047,0.6818311,-0.34436625,-0.031772457,-0.0469945,-0.26172787,0.11640398,-0.21552141,0.26074868,-0.47359398,-0.51176846,0.6059549,0.38016045,0.3886296,-0.46427897,-0.06737652,-0.1290308,-0.08254301,0.39523715,-0.08923002,-0.08337128,-0.067826204,-0.5794367,-0.3736601,0.56317246,-0.49014428,0.0679984,0.15178153,-0.38330808,0.080583066,0.07433749,-0.03839933,0.008472633,-0.801673,0.23597635,-0.23667833,-0.5590258,0.4078118,-0.3134876,0.2634251,0.21734264,-0.061343588,-0.36696413,0.17248455,0.021571279,0.8796,0.10608979,-0.05408395,-0.3475917,0.010322868,0.37383237,-0.3462622,0.12192563,-0.26751432,0.0011079862,-0.50753057,0.62195265,-0.16985711,-0.2411634,0.04889472,-0.14776513,0.07639157,0.6155093,-0.1820054,-0.22058049,0.0025339127,0.2538708,-0.49196783,-0.14364323,-0.29913628,0.28704798,-0.034908894,0.10331377,0.062174123,-0.0803736,0.097288445,0.27821398,0.062156614,0.20591627,0.26668102,-0.17290193,-0.4801052,0.18634082,0.09031057,0.31912452,0.28249872,-0.010932698,-0.14100444,-0.40585047,-0.35155517,0.44633704,-0.024335463,0.31749243,0.10243408,-0.28812826,0.7870028,0.06931657,1.2172611,0.12736546,-0.3757916,0.20482804,0.387909,-0.023653595,0.0042760004,-0.38387984,0.8190582,0.50769985,-0.29063195,-0.054117646,-0.3435807,-0.070966214,0.2375084,-0.17122306,-0.13454643,-0.14481094,-0.7593342,-0.035531554,-0.004342086,0.33874562,0.15532112,-0.16050003,-0.143996,0.09735355,0.15622279,0.38567117,-0.4235873,-0.22899406,0.48636845,0.02091986,-0.055386372,0.23273812,-0.17882036,0.4039804,-0.7409059,0.31399724,-0.6363518,0.0847691,-0.08748135,-0.37433514,0.12657279,-0.03513398,0.5602849,-0.30894846,-0.30567294,-0.34643155,0.674469,0.40553644,0.37598947,0.8394629,-0.06917185,-0.111273736,0.10249719,0.55986917,1.1823289,-0.19688429,0.06406306,0.25380284,-0.31670564,-0.7451801,0.2579904,-0.24580553,0.14705849,-0.17280857,-0.36109352,-0.4489201,0.039743207,0.18653867,-0.297698,0.057306305,-0.65979004,-0.17838383,0.22993279,-0.34488663,-0.2756262,-0.4678333,0.29290205,0.6097057,-0.21624914,-0.26032576,0.1991243,0.14483912,-0.25921634,-0.5252773,0.069278,-0.27290386,0.38421646,-0.085533306,-0.55210876,0.050873574,0.4223842,-0.5771518,0.09029606,0.1446544,-0.40725982,0.015656697,-0.22477102,-0.20187269,1.1998652,0.12294258,0.116056405,-0.66661704,-0.6019092,-0.8653611,-0.7249874,0.12580062,0.18961906,0.013842881,-0.32840124,-0.18206605,-0.32882383,0.19166748,0.07825298,-0.57432973,0.38976303,0.15587664,0.5563862,-0.1132605,-0.85056084,0.2377456,0.24066666,-0.12671718,-0.37304705,0.39299348,-0.24498051,0.6510277,0.078532256,0.00892677,0.123113245,-0.5781753,0.31700188,-0.3069775,-0.24785246,-0.5389418,0.21916543,228 +633,0.45631498,-0.43142018,-0.45334986,-0.000255924,-0.3718727,-0.16152655,-0.16190965,0.46206158,0.2304882,-0.10957685,-0.2607488,0.13966396,-0.034697726,0.30763704,-0.21957901,-0.59618163,-0.17381158,0.022587858,-0.5975861,0.7709812,-0.5286955,0.20345658,0.071844764,0.35727164,0.38472888,0.33990434,0.107432045,-0.028544022,-0.14871019,-0.17184326,-0.1485153,0.11593513,-0.58400923,0.29717973,-0.36622936,-0.28830707,-0.024725242,-0.545356,-0.28199095,-0.85105604,0.12430465,-0.83701485,0.33735484,7.5386124e-05,-0.2770394,-0.18152659,0.07176017,0.24799758,-0.4414667,-0.15615112,0.20984581,0.037381608,-0.045545194,-0.22595072,8.995258e-05,-0.38793918,-0.5120693,-0.118006185,-0.5601796,-0.1276653,-0.06135616,0.23501706,-0.293856,-0.025555234,-0.36860693,0.5707109,-0.32649451,-0.03439448,0.16445395,-0.11843775,-0.0058644367,-0.671997,-0.10249631,-0.16003093,0.28523907,0.13611665,-0.25048757,0.39569044,0.21434046,0.16400626,0.23983772,-0.17118219,-0.2750867,-0.08606425,0.2401743,0.31882238,-0.15873893,-0.41341898,-0.3070262,-0.027575364,0.44135427,0.3114854,0.1495128,-0.2203649,0.04324972,-0.15510112,-0.23256454,0.66709816,0.54981,-0.14597464,-0.18083285,0.39068285,0.52116245,0.46028548,-0.3555409,-0.23881385,0.0029895352,-0.54185015,-0.05189628,0.34227753,-0.056928314,0.6405358,-0.10557008,0.09039719,0.76855576,-0.11972873,0.043145206,0.16127355,0.21230195,-0.24916913,-0.3943664,-0.30124182,0.16002597,-0.65050507,0.13876615,-0.24587758,0.7850504,0.14152458,-0.7212534,0.3348091,-0.5601345,0.18072301,-0.0837754,0.5096321,0.5885679,0.61470723,0.2574475,0.65577734,-0.1212337,0.14370371,-0.102212854,-0.33369386,0.09528232,-0.15136386,-0.099895805,-0.35745656,-0.032954983,-0.31646156,0.13468295,-0.11497963,0.52323085,-0.4779075,-0.2568194,0.17413053,0.60136086,-0.22727098,-0.1932784,0.70924973,1.1337142,1.1279913,0.025089923,1.0904868,0.23405951,-0.1563388,-0.013577645,-0.13892107,-0.7273162,0.1657113,0.19728312,-0.501947,0.26088765,-0.06244072,-0.18324521,0.39004156,-0.11276225,0.0065510273,-0.14416756,0.18739833,0.08001624,0.0077288975,-0.4534092,-0.4281762,-0.13299681,-0.0020838953,-0.0016272939,0.27148765,-0.3472624,0.23652223,0.0725576,1.1765918,-0.022515627,0.031169113,0.100274034,0.5995754,0.28280348,-0.19165784,0.13396761,0.407598,0.34553733,-0.045436364,-0.6458405,0.24233572,-0.43703476,-0.49350268,0.019211601,-0.41017658,-0.16691016,0.1245338,-0.57895696,-0.092182264,0.017188344,-0.10660566,0.5114515,-2.7147665,-0.18199012,-0.10560823,0.17644289,-0.3283587,-0.25177363,-0.04631863,-0.53832537,0.12455625,0.19476,0.64504254,-0.6604305,0.47366634,0.57468784,-0.58115107,-0.09639073,-0.76953626,-0.07936393,-0.03029774,0.47688878,-0.052630644,0.16380869,0.04629038,0.018788131,0.7341869,0.20227417,0.26050282,0.46399757,0.3382664,-0.001727769,0.5837405,-0.016028615,0.56714606,-0.4873179,-0.11456709,0.36259466,-0.4847331,0.5132231,0.035654232,0.09721574,0.76244015,-0.33953717,-0.86254406,-0.37817138,-0.26218107,1.214419,-0.3979203,-0.31183746,0.20553705,-0.22426353,-0.0544412,0.010905064,0.480233,-0.10260184,0.035455752,-0.54657656,-0.020991338,-0.10526277,0.18654929,-0.03128787,-0.05932057,-0.13197139,0.8142074,0.0678387,0.6743567,0.18877071,0.2674216,-0.2069597,-0.442975,0.0062526236,0.69430864,0.43116724,0.020877592,-0.1730621,-0.33237684,-0.14026935,-0.07489216,0.09614428,0.6192834,0.6090359,-0.16751117,0.17141311,0.39670107,0.053971484,-0.0071462486,-0.06320139,-0.34196752,-0.22396871,0.22723651,0.4164875,0.99971443,-0.13843803,0.41346726,-0.13503386,0.20759764,-0.1041747,-0.52708983,0.6358678,0.66170204,-0.21125391,-0.010875628,0.42375186,0.6377725,-0.39866126,0.4896456,-0.49365756,-0.2143783,0.7125809,-0.11648084,-0.39565834,0.1653002,-0.23347029,-0.060113303,-0.7265609,0.4557036,-0.49439174,-0.44326442,-0.52395636,-0.06245047,-2.9299102,0.23640245,-0.261187,-0.20261548,-0.3707913,-0.10908369,0.26477242,-0.8259166,-0.58169115,0.1188929,0.26093376,0.45947587,-0.10271985,0.032528345,-0.26617426,-0.32861125,-0.062663406,0.26537043,0.11565702,0.3622478,-0.31956115,-0.37463462,-0.060721293,0.00063662115,-0.3246101,0.19464119,-0.596115,-0.37259835,-0.027715357,-0.59323764,-0.2588351,0.5841642,-0.36455756,-0.038015056,-0.05491378,0.15229955,-0.24128345,0.15209465,0.013974831,0.15925978,0.06338392,-0.16616613,0.022070222,-0.2757281,0.3797372,0.032679096,0.46894738,0.25548804,-0.12127583,0.112514846,0.49822026,0.6232894,-0.23678783,1.1012782,0.2367958,-0.17378369,0.32000622,-0.061693147,-0.40410295,-0.6809838,-0.2698724,-0.054669023,-0.24079657,-0.44813177,0.16629292,-0.19095455,-0.9170953,0.55004895,-0.075162634,0.47007972,-0.08842595,0.057788096,0.5183604,-0.22179747,0.060141202,-0.03531186,-0.05400155,-0.5451057,-0.37991613,-0.7969822,-0.37318328,0.033186417,0.8471562,-0.3354659,-0.07157469,-0.0814217,-0.49233177,0.014094614,0.09426911,-0.04528836,0.24229883,0.35252267,0.06475,-0.5236603,0.44366473,-0.045844767,-0.025889067,-0.028239928,0.24612783,0.84086156,-0.7148219,0.62562644,0.38408,-0.026289139,-0.26514742,-0.6327063,-0.24480994,-0.014292797,0.017876199,0.4975662,0.3156009,-0.84443885,0.47045612,0.245797,-0.54486424,-0.7117253,0.45571467,-0.032202758,-0.102699526,-0.31359842,0.38699788,0.12940437,-0.04271915,-0.07199608,0.3248194,-0.35929102,0.14233822,0.14053813,-0.21975985,0.07342301,0.10131732,-0.19899262,-0.61831474,0.24024671,-0.54584694,-0.2931333,0.48790395,-0.12862922,-0.08447135,0.019673029,0.23036979,0.38789293,-0.31401473,0.15507682,0.049068727,-0.2689628,0.4841185,0.52541584,0.67280287,-0.38594306,0.50371367,0.28583634,-0.08948974,0.2932852,0.07318508,0.21947877,0.007695299,0.47622272,-0.10156758,-0.038237218,0.30115932,0.7161658,0.2794713,0.5503107,0.009033099,-0.14522544,0.3892206,0.09210614,0.3059188,-0.18988273,-0.5157694,0.054147363,-0.06466844,0.17772055,0.5061914,0.08569845,0.2301511,0.038164344,-0.018582977,-0.06503617,0.27870238,-0.025013823,-1.0759734,0.31242687,0.29651207,0.88463783,0.47524944,0.11206427,-0.22141393,0.72149825,-0.30466172,0.09495079,0.498878,0.18853357,-0.52881217,0.6270325,-0.47304037,0.48538405,-0.18010877,0.025651451,0.23660165,0.11426936,0.43550655,0.64612716,-0.18179783,-0.07191337,-0.05431616,-0.3658164,-0.08422108,-0.41065982,0.19171621,-0.4059887,-0.47624284,0.8679973,0.54553103,0.34531072,-0.13600203,-0.0660764,-0.00068319764,-0.2090168,0.32855526,-0.07681053,-0.01904992,0.06710733,-0.60093194,-0.14498448,0.6311019,-0.38243893,0.18935595,-0.21465851,-0.24824955,0.14384213,-0.12358184,-0.013164883,-0.009703407,-0.8975064,0.10659076,-0.15499227,-0.48903587,0.31297487,-0.37344804,0.14009494,0.21543702,-0.1262462,-0.23558146,0.26501685,0.114189826,0.7443939,-0.27197745,-0.12168658,-0.30768412,0.15123042,0.1631654,-0.12342106,0.1237636,-0.32750654,-0.053010233,-0.60228455,0.47569194,-0.15036342,-0.35807827,-0.1393769,-0.26215458,-0.14821619,0.77030444,-0.05572858,-0.21543446,-0.3971148,-0.08092542,-0.44435757,-0.07657829,-0.15366536,0.13897473,0.41165975,-0.04830951,-0.0607607,-0.30545744,0.12609217,0.36092255,0.04896305,0.5022474,0.2937636,0.07409695,-0.27503794,0.0065509905,0.21905906,0.33843488,0.2978978,0.07797592,-0.47624972,-0.18987788,-0.44172207,0.1200334,-0.12660712,0.26279375,0.0212314,-0.31088817,0.8159843,-0.08320128,1.2626078,-0.0055133286,-0.51885134,0.005206952,0.67367786,-0.10507402,0.05135198,-0.3975724,1.0011357,0.46858236,-0.17923895,0.013409243,-0.5956684,-0.1690292,0.24567583,-0.3396303,-0.049408086,0.04800117,-0.31789726,-0.041111372,0.12093287,0.2209287,0.09908947,-0.065404415,-0.21297786,0.29869795,0.17206591,0.39660108,-0.69521344,-0.30391997,0.081432804,0.14603545,-0.07905297,0.19401306,-0.43080002,0.36806455,-0.74991167,0.34776598,-0.44426057,0.2564646,-0.42693684,-0.41826746,0.13173008,-0.040148318,0.4611234,-0.43189436,-0.4653996,-0.13691033,0.49617723,-0.022035269,0.27509525,0.64448166,-0.34440154,-0.035650752,0.09511674,0.67486453,0.9783341,-0.48414734,-0.29142812,0.26127785,-0.44513658,-0.8068607,0.23848502,-0.39087075,0.057743482,-0.1461875,-0.3934471,-0.5477938,0.29557914,0.16056651,0.18521911,0.08861171,-0.8327424,0.11584469,0.22885285,-0.22759357,-0.2617215,-0.15380792,0.2909865,0.7518167,-0.3303148,-0.5479049,-0.08416868,0.08763492,-0.12021875,-0.38223508,-0.03540159,-0.34904596,0.20168616,0.00744385,-0.2877309,-0.14067763,0.18781526,-0.46264464,0.05483705,-0.014101198,-0.26509225,0.101098776,-0.12047453,-0.011547109,0.9858796,-0.18516773,0.022257127,-0.4677784,-0.566325,-0.68339646,-0.6298497,0.102416515,0.15213156,0.016914772,-0.50681406,0.09478522,-0.026685933,-0.24390341,-0.079353824,-0.57877064,0.55415064,0.15190776,0.30097598,-0.2679219,-0.90066093,0.24892852,0.21115668,0.07654514,-0.5862899,0.49633276,-0.16755168,0.83589566,0.16504961,0.04082729,-0.13218926,-0.4346423,-0.032435205,-0.39377168,-0.14459927,-0.6390579,0.2167643,239 +634,0.1816979,0.043992676,-0.6802766,0.1427717,-0.19783328,0.2619542,-0.62079775,0.10725181,0.30702835,-0.43478853,0.12727359,0.1945831,-0.43651316,0.13296425,-0.024529563,-0.51954496,-0.13993487,0.22243544,-0.41557628,0.52944845,-0.25552526,0.2663949,0.011779061,0.38318473,-0.025756534,0.35309485,0.0016646797,0.060326245,-0.2953105,-0.5348994,0.10645191,0.015037555,-0.30638504,0.4104468,-0.23065604,-0.16248645,-0.07447731,-0.27572182,-0.2950186,-0.54353213,0.21503454,-0.598854,0.6910314,0.014116347,-0.12138954,-0.05461561,0.35004103,0.12307791,0.33428282,-0.16109252,0.30618402,-0.48521268,-0.4819892,-0.67502296,-0.41522247,-0.46273744,-0.4072494,0.050092634,-0.4492676,0.07466171,-0.18230845,0.3959467,-0.17081334,-0.120191894,-0.2632759,0.3631689,-0.23130934,0.07950393,-0.17839769,-0.39745766,0.1459264,-0.8716718,-0.10578633,0.06760487,0.22717573,0.1866906,-0.10818766,0.26610836,-0.016316222,0.5212797,-0.078790516,-0.17005223,-0.619656,-0.025385123,0.35122362,0.5672871,-0.45299017,-0.034173746,-0.20493118,0.06263927,0.78418833,0.14514528,0.010194994,-0.3185625,0.121347204,-0.29617506,-0.26466718,0.55112845,0.5599051,-0.026416104,0.19999768,0.3192282,0.5269703,0.37540004,-0.3186336,0.010021145,-0.37746572,-0.21126968,-0.041777078,0.14404415,0.08850251,0.32898572,-0.043081723,0.26113594,0.3103968,0.10276698,-0.07078083,0.25815704,0.10046285,0.1972081,-0.077695414,-0.0347814,0.24268116,-0.49464476,-0.027263531,-0.47158563,0.34241182,-0.3799954,-1.0094416,0.38171607,-0.48834324,0.099360004,0.0055124606,0.6052054,0.73183316,0.7502116,-0.018512657,0.91625947,-0.32950422,0.0718857,-0.09082357,-0.09874804,0.2063342,0.08037666,0.08011606,-0.5541057,-0.08383457,0.09946013,-0.19140321,-0.023750242,0.73108613,-0.42272785,-0.17937356,0.032607313,0.88414425,-0.12321688,0.029537411,0.67250663,1.1859463,0.84491056,-0.041372214,1.0376502,-0.020772008,-0.16568692,-0.48935655,-0.29771703,-0.6498703,0.18547128,0.30508068,0.12367834,0.4781745,0.09736867,-0.118266545,0.40552807,-0.019150456,-0.3284613,-0.17059399,0.18635099,-0.023867836,-0.0834949,-0.26777938,-0.12638074,0.22785021,-0.007434831,0.22108687,0.37179238,-0.5236897,0.6076079,0.09223107,1.0615739,-0.31036884,0.08269136,0.15962678,0.013123169,0.17404458,-0.084140815,-0.06547362,0.185011,0.15965587,-0.06467871,-0.34749016,0.094611414,-0.18758646,-0.6136993,-0.12809229,0.02329538,-0.3093654,0.0342383,0.08557187,-0.37173364,-0.0053776205,-0.5905225,0.17400275,-2.4389167,-0.161507,-0.12972023,0.23776516,-0.0065822373,-0.50747716,-0.14281794,-0.25222036,0.6112496,0.2363918,0.6249207,-0.28809363,0.118083596,0.49721864,-0.6424938,-0.33825448,-0.50191087,0.007529864,-0.007956266,0.6044394,0.06247942,-0.37518045,0.19428346,-0.061938643,0.45909876,-0.1605591,0.11362709,0.5963293,0.47726578,-0.26246712,0.0986071,-0.09442901,0.6285625,-0.32329032,-0.3555733,0.40261376,-0.40059218,0.416931,-0.36080864,0.19703548,0.28840536,-0.17503023,-0.56358963,-0.27243173,0.104280934,1.4386128,-0.022649966,-0.9073425,-0.061087534,-0.060291674,-0.4855385,0.08598522,0.6197819,-0.24045609,-0.011235636,-0.57974976,-0.09043276,-0.32983753,0.40495926,-0.13043813,0.11985286,-0.47404525,0.69008696,-0.04053235,0.3501975,0.6660419,0.3428982,-0.45581084,-0.07465456,0.107401244,0.8566566,0.3742188,0.0764181,-0.24269484,-0.09180231,-0.06759313,-0.3205851,-0.004845665,0.6072936,0.56684345,0.03564676,-0.077631585,0.44781864,-0.31099588,-0.055155434,-0.21087533,-0.644498,-0.38910297,0.0651965,0.66903305,0.49253,0.30155504,0.49861732,0.24306099,0.24163018,-0.23505352,-0.46270818,0.5245472,0.49250004,-0.37616107,-0.25867528,0.580401,0.31452402,-0.21800925,0.6317149,-0.6489086,-0.4719115,0.19676232,0.09193866,-0.56933314,0.27020624,-0.40673006,0.12440848,-0.70874524,0.28087905,-0.47262794,-0.7434318,-0.7955837,-0.104459636,-1.508089,0.2720514,-0.32474086,-0.18110675,-0.330293,-0.09149216,0.11998524,-0.30511236,-0.65317917,0.06602729,0.33399597,0.46850485,-0.17555486,-0.119213805,-0.12116305,-0.4817623,0.01992123,0.34393618,0.10886671,0.118798524,-0.32215464,-0.2076452,-0.003606041,-0.19157553,-0.055725235,-0.21922365,-0.41291568,-0.13327095,-0.031537157,-0.2807706,-0.0012059028,0.6765901,-0.6969678,-0.09705767,-0.43818885,0.09827626,0.46617824,0.2580965,-0.101489015,0.12686442,0.29532012,-0.2269668,-0.08177989,-0.19011036,0.2396382,0.11811895,0.32560337,0.67059135,-0.027537325,0.20035312,0.5559945,0.76054543,0.027116863,0.8431927,0.22538403,-0.1757124,0.21656825,-0.35471064,-0.124484375,-0.4666157,-0.07207422,0.2859243,-0.36575636,-0.49034265,-0.10053796,-0.29344043,-0.8457695,0.55572295,0.2823512,-0.018994598,-0.09269944,0.60578233,0.4381947,-0.084703095,-0.13868015,-0.19115354,-0.2469944,-0.31218657,-0.37754875,-0.7727317,-0.56745267,-0.07648992,0.85865283,-0.18786761,0.21220897,0.47549182,-0.38637036,0.11310014,0.19902512,0.06554871,-0.044625264,0.016928783,0.27195308,-0.52932125,0.054361727,-0.12540719,0.12941343,-0.5099968,0.32691744,0.76296705,-0.58620316,0.1335206,0.48613596,-0.03738713,-0.3102067,-0.8458098,0.0547142,0.3587095,-0.12909612,0.35229683,0.32459497,-0.4915319,0.5356444,0.30378354,-0.04400228,-0.68730265,0.1651308,0.12817791,-0.009086797,-0.11449622,0.43132275,-0.17731531,0.060086973,-0.18815087,0.18908122,-0.16855206,0.47579193,-0.10569365,-0.108905666,0.08187023,-0.17841636,-0.35359663,-0.7843673,0.29519695,-0.5653843,-0.42788416,0.52196383,0.0277604,0.17333683,0.06512064,0.31284493,0.4436556,-0.38334274,0.08222389,-0.344446,-0.29492265,0.4140112,0.47237828,0.48341343,-0.48893136,0.38429883,-0.064495556,-0.31700248,-0.019930478,-0.12016931,0.56889504,0.09383941,0.2561457,0.0006829821,-0.06388621,0.097736426,0.7025173,0.20496601,0.31717792,-0.17063206,-0.35750896,0.13675228,-0.06876292,0.22728617,-0.2989923,-0.5218615,0.0046452237,-0.0173638,0.19067672,0.46823725,0.17213114,0.5708769,-0.17703643,-0.17542171,0.15210317,0.10206582,0.17102386,-1.0289812,0.681006,0.18727128,0.68056273,0.44794184,0.16051126,0.06320204,0.82395214,-0.25343508,-0.10300084,0.31290346,0.117997974,-0.35458437,0.30548796,-0.7871982,0.17881988,0.01722066,0.17914031,0.270975,-0.21728924,0.40637553,0.8932582,-0.19306025,0.24142344,-0.18516758,-0.037287213,-0.3581505,-0.11763417,0.25739008,-0.19996892,-0.49894163,0.8618629,0.07566533,0.55982727,-0.18345734,-0.025972191,0.32872376,-0.09406987,0.52241445,-0.020855043,0.19996071,-0.10884041,-0.37990206,-0.046882637,0.5610108,-0.040516596,0.065099545,0.03520828,-0.16618322,0.11827975,0.0033845145,-0.20674053,-0.025242776,-0.27849168,0.16082692,-0.38453004,-0.4785779,0.34498402,-0.10204803,0.075700775,0.11205943,0.16876361,-0.12346183,0.2652392,0.24230362,0.73595566,0.12566063,-0.042358153,-0.054078873,-0.051051214,0.06313476,-0.29692432,-0.09714188,-0.02812856,0.14871962,-0.84347725,0.3407663,-0.49301958,-0.48652777,0.23875839,-0.23227765,-0.10354634,0.35455862,-0.22704275,-0.25823647,0.38408056,-0.10669991,-0.21358839,-0.36973748,-0.38399827,0.14203136,-0.26623726,-0.13433191,-0.3934593,-0.07525852,-0.4600261,0.06398242,-0.09225054,0.12844603,0.53455603,0.3350368,-0.56915087,0.07889565,0.19046554,0.47606975,0.07424741,0.14602453,-0.2229449,-0.39461404,-0.47129604,0.42837474,-0.038642254,0.23683009,0.25031155,-0.48605415,0.6759657,-0.07742636,0.9964737,-0.06730219,-0.21981509,0.08614091,0.5338192,-0.04724797,0.03834151,-0.47534305,1.0675328,0.58392334,-0.10683628,0.08581038,-0.6672264,-0.21154356,0.21676104,-0.313563,0.043139722,-0.07022225,-0.7458163,-0.2567881,0.30798298,0.23798934,-0.16948317,-0.02299246,0.12110546,0.1763486,0.16579556,-0.005014524,-0.43628204,-0.06340551,0.38684934,0.183916,-0.18993284,0.18800613,-0.45017081,0.17930724,-0.6588193,0.18437631,-0.3922585,0.070922986,0.09282185,-0.26053667,0.15288879,-0.04571456,0.17748629,-0.3447534,-0.41400117,0.011316506,0.19702354,0.2204797,0.29717195,0.48037452,-0.33497217,0.1439471,-0.110025845,0.45326287,1.1360815,-0.25797638,0.044171877,0.12199218,-0.43509504,-0.5734552,0.035927694,-0.45138258,-0.17413174,-0.057241075,-0.3779521,-0.23103008,0.26798075,-0.02048409,-0.057782333,-0.2662815,-0.50729257,-0.06821498,0.011991251,-0.23100108,-0.118836865,-0.2121575,0.016683001,0.65573394,-0.1260886,-0.499793,-0.111533836,0.3533026,-0.32525942,-0.45627654,0.31561968,-0.39151317,0.26800895,0.1539161,-0.29367283,0.01492186,0.026311487,-0.5054761,0.061622363,0.27779552,-0.29231074,-0.12768775,-0.16826329,0.33618826,0.3971367,-0.18780282,0.091264,-0.11355138,-0.5811765,-0.6654797,-0.3388333,-0.41942102,0.32669666,-0.055636767,-0.80679554,-0.086314805,-0.4753229,-0.08755645,0.119886965,-0.57931596,0.33319968,0.134897,0.4987771,-0.7564305,-0.9159628,0.39220428,0.15945576,-0.12082483,-0.40753496,0.30742794,-0.035933055,0.86177444,0.21557675,-0.036092784,0.12248121,-0.9907305,0.39087275,-0.30664596,-0.24548666,-0.7283752,0.039829474,247 +635,0.532754,-0.26672328,-0.6846828,-0.22367324,-0.39800963,0.03981383,-0.23092812,0.4232003,0.45230097,-0.41417584,-0.08572777,-0.0738126,0.09308581,0.61188245,-0.016506275,-0.72511685,-0.07314648,0.29891607,-0.66502774,0.5344049,-0.42148435,0.33571264,0.08898394,0.23542306,0.124629684,0.14128385,0.21903232,-0.015574098,0.063204646,-0.07868101,-0.09095994,0.1108483,-0.6449217,0.22205932,0.04973562,-0.28698504,-0.041883927,-0.48292568,-0.38236177,-0.7494147,0.36237967,-0.7769501,0.67822975,0.027015567,-0.28211135,0.176887,0.03774266,0.28443915,-0.26606274,-0.057100557,0.22281407,-0.11336695,-0.2450214,0.0057347557,-0.14147258,-0.45653766,-0.5470154,0.050823454,-0.5603788,-0.2742432,-0.37138656,0.1849125,-0.31883538,-0.007536448,-0.21855576,0.5635609,-0.3022139,-0.09116724,0.28467077,-0.33894908,0.2253585,-0.5234375,0.05716711,-0.009573983,0.06228333,-0.18381938,-0.22819565,0.34990028,0.2655177,0.5944177,0.13736686,-0.31830388,-0.31963888,0.013095831,0.035059936,0.6107514,-0.07510604,-0.63061047,-0.25175482,0.1269418,0.15401626,0.010093231,0.053119503,-0.40294182,-0.12873422,-0.11798357,-0.10144416,0.53833795,0.48640823,-0.29990345,-0.26792282,0.4951313,0.49626845,0.1464862,0.11823026,0.10433598,-0.041387513,-0.68709916,-0.30088645,-0.074695215,-0.29658964,0.40760252,-0.24346262,0.1835467,0.43298832,-0.05242805,-0.09621,0.19481689,-0.08521688,0.013731895,-0.3475507,-0.13498434,0.31468633,-0.4763311,0.08346711,-0.21616203,0.82798165,0.13467123,-0.72273314,0.4265302,-0.49053007,0.27197585,-0.15168819,0.48136103,0.8363151,0.55221564,0.21984515,0.90645117,-0.46610844,0.28108808,-0.12138304,-0.5083857,0.11568361,-0.14816317,-0.0061513325,-0.6249357,-0.018921642,-0.14124669,-0.2831858,0.07371701,0.57567775,-0.6729683,-0.13017784,0.12714884,0.7255103,-0.29245922,-0.15776528,0.7273115,0.97944844,0.9890067,-0.022047212,1.3679745,0.3059968,-0.12681097,0.13013572,-0.33326986,-0.8546254,0.25975296,0.41455695,0.10770014,0.30693224,0.07735609,-0.06274618,0.46738067,-0.31619805,-0.21101013,-0.16190833,0.43399385,-0.1737743,-0.20282708,-0.60662645,-0.16549475,0.02663113,0.23606125,0.062345333,0.2902257,-0.27390397,0.2968361,-0.045692977,1.6797303,-0.18584153,0.08723908,0.0011162529,0.44079527,0.39838612,-0.2911305,-0.251023,0.25278243,0.37505385,0.049368557,-0.66807616,0.009290131,-0.29268652,-0.39875486,-0.1992573,-0.30046412,0.03786234,-0.11414851,-0.32101265,-0.14136179,-0.0072934353,-0.4108919,0.45259264,-2.3782473,-0.19830611,-0.11183468,0.33297107,-0.30361134,-0.40903255,-0.037893202,-0.41667217,0.35352176,0.3498734,0.6098433,-0.59777427,0.32463872,0.330578,-0.6589132,-0.0005773008,-0.51759326,-0.07081266,0.0028711604,0.41304207,0.09866403,-0.2088829,-0.18060233,0.24982664,0.5125109,0.006332346,0.026174726,0.37477022,0.45766675,0.0076084277,0.50357777,-0.23401953,0.58070093,-0.30821338,-0.24977519,0.38228762,-0.21646675,0.1700438,-0.2916434,0.117359795,0.26760638,-0.62186944,-1.195706,-0.73404694,-0.15763193,1.2070812,-0.23619741,-0.51705384,0.42120478,-0.27073815,-0.31175262,0.21109849,0.3865867,-0.07995439,-0.040046293,-0.7952367,0.17906171,0.008899176,0.27404934,0.13803989,-0.07765227,-0.49482918,0.78496623,-0.040964983,0.45460635,0.24456947,0.22927381,-0.23499078,-0.43472782,0.08188396,0.9970652,0.35767224,0.16839205,-0.15330979,-0.10423959,-0.3595844,-0.1772404,0.068666175,0.5391414,0.8114375,0.017358404,-0.03702046,0.1858862,0.04658737,0.10676958,-0.05329394,-0.33452737,-0.11753602,-0.01898982,0.6187228,0.6504195,-0.2310567,0.4933581,-0.16341859,0.14780726,-0.03362147,-0.6006963,0.6587766,1.0280795,-0.18733302,-0.28187606,0.77350813,0.28180486,-0.13170607,0.49141878,-0.6030518,-0.4086639,0.33956006,-0.15544578,-0.42447916,0.14820138,-0.23338208,0.06288497,-1.1286067,0.26627177,-0.24128175,-0.6639118,-0.19496009,-0.10937349,-4.024043,0.26722342,-0.11443681,-0.014154414,-0.0761545,0.034479145,0.22627273,-0.5068525,-0.70724803,0.19818434,0.045911577,0.75461704,-0.082234055,0.22109835,-0.14148585,-0.32558018,-0.27184117,0.19496253,-0.008209194,0.32678658,0.17889848,-0.44828445,-0.045567457,0.032510124,-0.5044323,0.13866478,-0.818653,-0.46453226,-0.2969651,-0.7612361,-0.1191734,0.6882749,-0.04052441,0.024696074,-0.23883072,0.18856424,-0.007418284,0.16438666,-0.17594427,0.2540468,0.18239893,-0.090595946,-0.030087654,-0.14389636,0.27385283,0.029126085,0.3134701,0.24718955,-0.31059155,0.16035546,0.69904125,0.75100064,-0.30608493,0.9194958,0.6478242,-0.11078553,0.31926277,-0.104619846,-0.32733887,-0.51714206,-0.39426932,-0.10248081,-0.47622278,-0.31127706,0.01794828,-0.26889852,-0.7344953,0.6370199,0.07085712,0.23984483,0.019899795,0.11663855,0.455322,-0.29814565,-0.067006625,-0.13338794,-0.30939916,-0.5835603,-0.27467304,-0.48714402,-0.48755074,0.12881406,1.0896554,-0.22893606,0.12316033,0.008296655,-0.06948182,-0.033320133,-0.027802072,0.066362746,0.35927004,0.30033106,-0.18827213,-0.725751,0.45179674,-0.093895875,0.06639823,-0.50227636,0.40226585,0.49639335,-0.45318174,0.44363996,0.28488618,0.23454975,-0.067230925,-0.5951668,-0.26687425,0.23730999,-0.15781426,0.427275,0.19079328,-0.81762093,0.5676782,0.437019,-0.45032597,-0.8568914,0.33749717,0.044892825,-0.20116991,-0.19888711,0.3317417,0.11932195,0.050820276,-0.3459759,0.24038228,-0.4192934,0.38243014,0.1363597,0.028993933,0.31381714,-0.25411856,-0.34427297,-0.7242844,-0.24004705,-0.5600812,-0.26685962,0.13983943,0.07056034,0.088938676,-0.0044175936,-0.053227607,0.54946315,-0.31137902,0.028045015,-0.11944994,-0.5203571,0.43779856,0.45436418,0.44490704,-0.43727896,0.6213936,0.021395495,-0.10590316,-0.22000016,-0.12839006,0.59324396,-0.02608016,0.40140474,0.05272185,-0.15430178,0.16950242,0.94448817,-0.008695146,0.374218,0.040115595,-0.22283116,0.22920081,0.16292709,0.13042927,-0.037597552,-0.6323105,0.05268952,-0.2357305,0.14374708,0.53677166,0.27316415,0.30537784,-0.10750809,-0.4160123,0.0895118,0.06032485,0.05850037,-1.2822171,0.36928067,0.17809214,0.8196837,0.5003555,0.050477937,-0.07973405,0.6833344,-0.14704858,0.119746685,0.3013167,-0.22877374,-0.4519354,0.43777406,-0.76924485,0.39700314,-0.05455372,-0.0733813,0.3189709,0.109576456,0.44312933,0.88462704,-0.16348232,0.019961994,-0.14399618,-0.25622827,0.14057735,-0.38792208,0.023583233,-0.597575,-0.4126053,0.6912704,0.4146691,0.36359766,-0.15166293,-0.06824781,0.18964949,-0.17280596,0.093040995,-0.050342903,-0.12021204,0.05424892,-0.6204744,-0.13841309,0.51534086,0.44072288,0.22250035,-0.15160277,-0.0044800364,0.23531005,-0.33260518,-0.27333874,-0.15904234,-0.6880244,-0.10129536,-0.35301793,-0.23462527,0.43754262,-0.20731041,0.19281766,0.083257206,0.13174197,-0.28177336,0.35028127,0.015343024,0.8894731,0.31787464,-0.21407357,-0.29788324,0.2253748,0.100063175,-0.26853353,-0.024695035,-0.24851605,-0.09504594,-0.7106603,0.4633128,-0.057406314,-0.54675907,0.41097134,-0.066537015,0.2082384,0.44144127,-0.15179406,-0.21127136,-0.0366599,-0.12147407,-0.26160818,-0.28905642,-0.06247034,0.25562656,0.13595816,-0.111758746,-0.17111582,-0.0068041477,-0.055420276,0.45947218,-0.031733017,0.2563437,0.17759922,0.23799118,-0.21419552,0.10367024,0.42432833,0.62483764,0.015704475,-0.14817582,-0.26554602,-0.2701843,-0.3970428,-0.1452774,-0.080374226,0.28195333,0.07670294,-0.17220153,0.82529706,0.3037511,1.2667699,-0.16952252,-0.3238467,0.13309328,0.5517628,0.08710795,-0.052951653,-0.4651286,1.0030094,0.6110242,0.0044406196,-0.15119226,-0.573443,-0.04253832,0.268501,-0.33762935,-0.06674525,-0.041877266,-0.6964637,-0.31165266,0.34687942,0.2758747,0.1141831,-0.12716071,0.16430172,0.18345888,0.084987834,0.2313931,-0.56618476,-0.07060364,0.23174715,0.4098722,0.087359555,0.17632848,-0.5533171,0.30401337,-0.719643,0.25347292,-0.061431985,0.13207568,-0.21443431,-0.22348192,0.271354,0.11477601,0.38645217,-0.35486427,-0.39009184,-0.22455941,0.5587844,0.12462559,-0.012330727,0.7326079,-0.30655855,0.061914306,0.1651342,0.419425,0.98783237,-0.18003467,0.18908681,0.36134928,-0.32626554,-0.6953193,0.3428388,-0.19524035,0.13511361,0.0027524186,-0.32342324,-0.56030744,0.12843893,0.0527054,0.016899228,0.15633425,-0.5788508,-0.053108137,0.3233587,-0.1476045,-0.23046805,-0.14731978,0.152285,0.5859521,-0.19977634,-0.418705,0.29245535,0.2833038,-0.09490069,-0.72105587,-0.11029867,-0.28381294,0.20638832,0.021827308,-0.43985373,-0.24700871,0.087181956,-0.5390247,0.069280475,0.18539988,-0.4132949,0.15379204,-0.40307263,-0.059930604,0.9098357,-0.21300378,0.36222976,-0.73334444,-0.56078184,-1.008517,-0.1988736,0.4688923,0.05538908,0.056820154,-0.7036197,-0.061733466,-0.15232502,0.04288843,-0.058865085,-0.41610187,0.3715712,0.06292686,0.4623865,-0.21549,-0.93021834,0.12166678,0.1619269,-0.27201557,-0.5443984,0.49098116,0.029071964,0.9132964,-0.041964464,0.030406965,0.24162076,-0.67345715,0.034061167,-0.1946438,-0.085636586,-0.5675141,0.105264954,248 +636,0.40791732,-0.2724486,-0.48890635,-0.1224891,-0.23300055,0.15884201,-0.14443114,0.57806647,0.36819723,-0.36602217,-0.035221394,-0.14074388,0.042104796,0.2673791,-0.16225335,-0.4745639,-6.187879e-05,0.21052083,-0.4452561,0.55112517,-0.23554823,0.23668358,-0.08472545,0.4366291,0.24779317,0.40814403,-0.034716986,-0.024775198,-0.10645978,-0.20748895,-0.08006362,0.124993294,-0.4289476,0.17404667,-0.1406017,-0.06576629,-0.023352278,-0.55798525,-0.41151804,-0.7971465,0.4008795,-0.8736471,0.5129269,-0.023004564,-0.35258424,0.3231112,0.23656988,0.3356353,-0.22478205,-0.04925429,0.28691667,-0.15483944,-0.0729198,-0.1428199,-0.17919014,-0.20362407,-0.5379034,-0.10017046,-0.3265683,-0.28311288,-0.28437436,0.27461582,-0.3433581,-0.0410925,-0.131404,0.8375593,-0.41028774,0.1359839,0.19136442,-0.4524578,0.4094968,-0.6736836,-0.0131700635,0.006163455,0.34515303,-0.006450039,-0.057797037,0.1442793,0.19757271,0.30056757,0.009551415,-0.22311704,-0.38056767,-0.166213,0.11371672,0.58251464,0.050542496,-0.30033362,-0.050056197,-0.1572428,0.09962444,0.06296244,0.26540965,-0.40347078,-0.18705034,-0.039642446,-0.2785788,0.46313283,0.37416986,-0.2916905,-0.056979068,0.44770506,0.71630067,0.10397957,-0.20987129,0.15083733,0.023949184,-0.54064447,-0.054168403,-0.024315394,-0.23369224,0.51465535,-0.22429116,0.20575632,0.71355945,-0.108049236,-0.13438447,0.0659705,0.15164004,0.051137522,-0.4312979,-0.12866817,0.25796932,-0.3508042,0.16908778,-0.2062032,0.6815593,0.18766266,-0.49546644,0.32490733,-0.5163185,0.11991754,0.026857715,0.4016433,0.43942404,0.4941627,0.30708745,0.81999695,-0.49849877,0.07226034,-0.05852004,-0.35570362,0.06408713,-0.107089505,0.124974556,-0.4145655,-0.0033035278,-0.07185609,-0.22620443,-0.07163144,0.40901592,-0.47123364,-0.10106402,0.23397954,0.9840278,-0.25005677,-0.064613946,0.7849797,0.9506661,1.0161434,-0.08378822,1.159484,0.06291365,-0.23067474,0.008248852,-0.3091501,-0.7053065,0.31015623,0.41985697,0.4615038,0.12447734,0.088187166,-0.033585005,0.5158731,-0.33429962,0.090380155,-0.16793476,0.2133207,0.20290725,-0.16451383,-0.54652494,-0.21141608,-0.025768647,0.17692828,0.25813803,0.08000858,-0.3063531,0.34716946,-0.07743817,1.8518565,-0.24096023,0.18926637,0.24023129,0.4637515,0.23878469,-0.17256619,-0.15744273,0.5328268,0.2703327,0.21891573,-0.61523765,0.25659335,-0.21898219,-0.48625565,-0.24591559,-0.34594995,-0.028779875,-0.105026245,-0.40442637,-0.16688734,-0.16802146,-0.47099134,0.3219753,-2.6543088,-0.25734064,-0.16878554,0.4408259,-0.2648146,-0.25165555,-0.04255536,-0.47003588,0.29178175,0.36040667,0.5458347,-0.7152461,0.36833686,0.5855704,-0.5911249,-0.1637605,-0.5327335,-0.14199834,-0.095517926,0.4404235,0.11804792,0.009365071,-0.09277881,0.22052486,0.5070629,0.08523266,0.12731187,0.45855284,0.42468813,-0.09605917,0.5069361,-0.06622282,0.48723844,-0.036040656,-0.21286538,0.33834898,-0.4120881,0.07883231,-0.19554019,0.034899004,0.40326735,-0.3141584,-0.9221223,-0.72784,-0.025719358,1.1865277,-0.25945613,-0.53268564,0.4121998,-0.38475868,-0.39970714,0.08595888,0.59115434,-0.08184973,-0.01707237,-0.80172217,0.025057912,-0.17062838,0.17210586,0.056589916,-0.22141396,-0.5253981,0.8352463,-0.087654956,0.6841266,0.3461482,0.20313817,-0.39335915,-0.37617543,0.032828625,0.86435235,0.3536835,0.10483355,-0.1765721,-0.011489228,-0.2941407,-0.13930921,-0.055504978,0.6978477,0.5169668,-0.07765797,0.10782961,0.24628662,-0.10386863,0.03546724,-0.12711956,-0.4026502,-0.14511663,-0.01723726,0.45818093,0.65293705,-0.11589448,0.28814808,-0.14642087,0.38826534,-0.057149928,-0.5348249,0.40882438,0.91383845,-0.314963,-0.3830276,0.643664,0.34594277,-0.3956362,0.41272524,-0.5770333,-0.1913638,0.44936448,-0.28046182,-0.59838647,0.15690583,-0.23937607,0.053145345,-0.7603117,0.18009456,-0.26351386,-0.62803924,-0.21712539,-0.19526552,-3.1924853,0.22002986,-0.22049761,-0.26825625,-0.2147169,-0.11756113,0.087707356,-0.57307726,-0.5985256,0.13876957,0.15398803,0.70336825,-0.14607134,0.1610464,-0.2767083,-0.18436447,-0.19025029,0.21876019,-0.097324625,0.38219386,0.039500043,-0.46744746,-0.07802537,0.009476891,-0.5356789,0.059704043,-0.6327037,-0.37535015,-0.21355408,-0.53341603,-0.27036068,0.7185039,-0.269423,0.09989238,-0.2903105,0.099232286,-0.13935135,0.22007836,-0.08216346,0.27762944,0.068990864,-0.035368994,0.09757249,-0.14255191,0.24583618,0.046926178,0.29340807,0.18995503,-0.08190085,0.11908608,0.58363956,0.60816556,-0.19686416,0.9820101,0.38569185,-0.06695306,0.19565056,-0.13289341,-0.19531132,-0.4669992,-0.257884,0.2681328,-0.4756147,-0.3339973,-0.06977495,-0.37838665,-0.73371124,0.5394936,0.12594233,0.17542244,0.122841746,0.22654754,0.5209927,-0.27530944,-0.050856315,0.053193074,-0.17613246,-0.6370251,-0.115674846,-0.63033897,-0.42593816,0.08938515,0.8959952,-0.32039437,0.12400195,0.097005,-0.34685305,0.015469388,0.18742225,-0.10241677,0.07034662,0.5887652,-0.1374169,-0.63722223,0.35340574,-0.26436168,-0.05609653,-0.45966294,0.32737747,0.53051585,-0.47638887,0.68007255,0.1926589,0.016834598,-0.43603718,-0.51739347,-0.16107577,-0.092552915,-0.24717453,0.46504927,0.24472883,-0.7598231,0.30307764,0.18242033,-0.3260624,-0.757526,0.36873677,-0.2525342,-0.35883725,-0.16805246,0.47554186,0.057085138,-0.1323732,-0.24629416,0.23358926,-0.33804783,0.23817681,0.24413553,-0.110342346,0.31943983,-0.23932208,-0.18728368,-0.7536632,-0.17945202,-0.415349,-0.30754077,0.2290127,0.006286057,-0.0243301,0.1957319,0.122005895,0.42155075,-0.2663119,0.0684261,-0.16082639,-0.27965814,0.43723175,0.41117042,0.57745355,-0.5486159,0.49228844,-0.020832213,-0.048592154,-0.077055655,0.0022192735,0.50529647,0.047547605,0.5365335,-0.055408996,-0.13369742,0.35401157,0.6272401,0.1757336,0.5947225,0.08579977,-0.24322928,0.17166844,0.08416697,0.25198293,-0.17882918,-0.7686829,0.273788,-0.34716287,0.07718706,0.5869146,0.17645007,0.3782164,-0.023053847,-0.5021452,0.043291803,0.060102575,-0.08463346,-1.2043191,0.2886195,0.1743962,0.98022693,0.43606883,0.040091358,0.10995226,0.83199203,0.119220406,0.025757454,0.22640084,0.05784993,-0.5721992,0.4761532,-0.8545617,0.41849402,0.15816562,-0.06397083,0.17148796,0.07989689,0.32386371,0.6609338,-0.1474029,-0.0057032597,-0.12077025,-0.27348724,0.2571618,-0.422389,0.0593757,-0.5732356,-0.3240738,0.423172,0.6154282,0.43168575,-0.17924294,0.047504727,0.05583378,-0.039325636,0.25544035,0.08096014,-0.09424209,-0.03980914,-0.76595676,-0.22755347,0.4302349,0.10586676,0.0991069,-0.1596947,-0.13173887,0.28978232,-0.26686242,-0.12845933,-0.046401277,-0.73599786,-0.07424196,-0.122332975,-0.53577936,0.3149645,-0.0821368,0.22461599,0.11239565,-0.059895746,-0.22210786,0.39472434,0.12693207,0.9449746,0.13289602,-0.05693819,-0.33696702,0.10501825,0.081881635,-0.2966521,0.123266764,-0.34636414,0.105156034,-0.7159418,0.42456242,-0.03115869,-0.3963428,0.22789973,-0.26144496,0.06671885,0.6755361,-0.23436211,-0.14799121,-0.11314727,-0.15459083,-0.16633382,-0.26575363,-0.13929883,0.19235174,0.100863494,-0.15122756,-0.15822458,-0.06217873,-0.030273493,0.4373403,-0.064081,0.48115233,0.43142354,0.014361333,-0.31336644,-0.057144605,0.258046,0.5104409,0.08492743,-0.15067483,-0.22612119,-0.5997975,-0.39389148,0.31206724,-0.01959734,0.41486883,0.051571928,-0.016676683,0.9724095,0.12866347,1.1991142,0.036507897,-0.41557154,0.14634034,0.63472486,0.076111145,0.061754588,-0.3611709,0.8401383,0.4601956,-0.15980849,0.029507527,-0.5586522,0.012295196,0.20451659,-0.18795076,0.041478302,-0.14389372,-0.7661826,-0.25653827,0.18956056,0.24241185,0.3290469,-0.1760342,0.1291123,0.29609945,-0.06403539,0.3296628,-0.540124,-0.080866046,0.38409218,0.15728715,-0.004629016,0.04856973,-0.4679336,0.43167204,-0.53446466,0.16846116,-0.19418468,0.20880938,-0.24699934,-0.23214532,0.24314785,0.03417868,0.3814783,-0.45675084,-0.3855024,-0.232075,0.54597217,0.2721836,0.018780576,0.6779074,-0.28934473,0.0555522,0.085554965,0.6118621,0.78433186,-0.22010943,0.20266297,0.4555102,-0.48619416,-0.7386106,0.10433137,-0.19971953,0.18976119,0.058079056,-0.26498806,-0.6231933,0.3177204,0.22058567,-0.08248249,-0.08612276,-0.5180579,-0.30647475,0.46431968,-0.32834122,-0.105182774,-0.22007245,0.057871636,0.39728215,-0.13984415,-0.568117,0.15102054,0.2542941,-0.17319614,-0.5883373,-0.18334113,-0.38459155,0.33067152,0.026391,-0.48153627,-0.23258099,-0.0048279027,-0.5028608,0.1859571,0.030106746,-0.26551288,0.11824637,-0.3845994,-0.18228596,0.86299366,-0.14202274,0.1462304,-0.6416983,-0.36812884,-0.9450103,-0.21459183,0.31478456,-0.10092313,-0.017290883,-0.6570313,-0.13058478,-0.38584456,-0.06795376,-0.028850578,-0.45010632,0.4689514,0.13099203,0.4944442,-0.28936833,-0.93722475,0.20962682,0.13404971,-0.21453342,-0.6405633,0.5005425,0.06361564,0.7101383,0.004729491,0.16062655,0.18665178,-0.4367472,0.092445284,-0.16693637,-0.27012712,-0.62293,0.040926777,252 +637,0.52842206,-0.21684225,-0.66116536,-0.059876617,-0.30716315,0.060477775,-0.11877258,0.6452166,0.2936108,-0.67409647,-0.033187132,-0.102716796,-0.18445046,0.19281858,-0.1739631,-0.63773596,0.07193823,0.06990946,-0.49230325,0.65379417,-0.27886894,0.3563623,0.0032345515,0.35224688,0.16308735,0.2989753,-0.035194643,-0.054672047,-0.16947123,-0.26275432,0.19346556,-0.065056846,-0.8139644,0.20563444,-0.30302957,-0.31346175,-0.10680173,-0.47397417,-0.48610818,-0.93685716,0.3529148,-0.8806352,0.48706123,-0.022919875,-0.3066033,0.09819483,0.10054546,0.3310921,-0.07980896,-0.22127853,0.13663676,-0.10426958,-0.10425945,-0.19711015,-0.27541292,-0.45488504,-0.58439755,-0.06116841,-0.5026055,-0.13950504,-0.3321328,0.15351783,-0.5121877,-0.12948738,-0.17731476,0.73984826,-0.29317927,0.032265786,0.3668305,-0.15032473,0.3452096,-0.73843163,-0.16316293,-0.15279599,0.1665019,-0.097792774,-0.1577203,0.5459482,0.13780172,0.42311478,0.06781617,-0.3177275,-0.2745995,0.055167403,0.19784106,0.34201998,-0.16661857,-0.502479,-0.19241007,-0.09370434,0.39228952,0.21455325,0.16071571,-0.24794456,0.0519497,0.22935654,-0.2907515,0.7473557,0.5592353,-0.13016988,-0.064157635,0.33333194,0.5093774,0.12857623,-0.22904539,-0.14851612,-0.042403854,-0.48683962,-0.14963926,0.20152436,-0.31231454,0.5302943,-0.24381875,0.15688208,0.7672793,-0.3741772,0.044772845,0.27911142,0.047732983,0.02696575,-0.47454655,-0.08578431,0.304126,-0.5567574,0.24013454,-0.55508333,0.74090904,0.23744759,-0.67482305,0.23223051,-0.71990484,0.20935914,0.023922814,0.4715886,0.79817384,0.6457581,0.09357207,0.7787749,-0.4796144,-0.058826648,-0.050420146,-0.32705098,0.09905377,-0.41539747,0.32283136,-0.25266764,-0.1274084,-0.07734646,-0.21247484,-0.049676325,0.29854676,-0.6084926,-0.31502816,0.06784058,0.9119934,-0.14640985,0.012232909,0.8104638,1.0097818,1.0005065,0.0073521617,1.361407,0.1170976,-0.2145622,0.3202102,-0.098242365,-0.7629179,0.33172545,0.18925196,-0.4084317,0.31778085,0.021656262,-0.24232318,0.33544043,-0.46411216,-0.12132828,-0.15941086,0.41244337,0.09446045,-0.20604508,-0.26575336,-0.10130549,-0.034300517,0.04522442,0.21387163,0.38160086,-0.15760769,0.2650301,-0.0476097,1.1473899,-0.095149085,0.19156076,0.042913694,0.5656036,0.16744779,-0.08863508,0.10687421,0.20812596,0.14762655,0.24818052,-0.63406664,0.027995123,-0.40686673,-0.31972396,-0.10664332,-0.33797568,-0.17946234,-0.17331907,-0.49787918,-0.12364109,-0.18402077,-0.2530102,0.42316863,-2.416222,-0.34299013,-0.13769667,0.3730961,-0.38591433,-0.3665363,0.014390351,-0.69963086,0.56386673,0.2163557,0.60349077,-0.7162145,0.3627337,0.5182771,-0.58575004,-0.06739901,-0.59756047,-0.12080378,0.0500459,0.37240002,0.027299514,-0.1182351,0.11388016,-0.12954794,0.50751305,0.20769979,0.03086672,0.2827471,0.4556187,-0.2498111,0.51241755,-0.09162809,0.5748975,-0.59272134,-0.058072448,0.4008414,-0.63728243,0.30513123,-0.19730887,-0.040677473,0.56855977,-0.53806376,-0.85889786,-0.66827595,-0.33294612,1.2902876,-0.017992629,-0.49674422,0.09655338,-0.3602913,-0.14692734,-0.16691937,0.67349845,-0.04547803,0.14755313,-0.67692226,-0.007224512,-0.30052292,0.17251268,0.01394298,0.048325337,-0.38643163,0.7707549,0.009197136,0.508946,0.18635726,0.21455051,-0.4423954,-0.4486483,0.0689859,0.87404317,0.4716863,0.12012832,-0.1988878,-0.11917228,-0.44130453,-0.21052602,0.00092230394,0.769651,0.6110224,-0.14045085,0.03550742,0.44856343,-0.08177797,0.18303023,-0.12863551,-0.55387086,-0.3811145,0.062091008,0.598043,0.75564945,-0.27256292,0.33106974,-0.090969294,0.18918747,-0.19189896,-0.5345902,0.6129565,1.0830039,-0.25173128,-0.13735709,0.5204271,0.46228033,-0.54457325,0.5774573,-0.47863898,-0.50219476,0.5745404,-0.19410601,-0.58699346,0.036233142,-0.26716062,0.046371117,-0.78848207,0.31558737,-0.7210379,-0.47415146,-0.53248906,-0.1643506,-2.867316,0.31387055,-0.2924745,0.042420592,-0.30477193,0.015389745,0.25354,-0.5930526,-0.5944385,0.21105947,0.119422406,0.8481503,0.0049374225,0.16521972,-0.38651532,-0.28181356,-0.38748753,0.17302898,0.2234548,0.19627205,0.0052442322,-0.3155173,-0.18689156,-0.08784657,-0.55272114,0.12176407,-0.6517792,-0.47664744,-0.3588481,-0.5744359,-0.30720395,0.7766832,-0.31731117,0.10387714,0.06662218,-0.011539088,-0.017596098,0.28266698,0.027613498,0.22136758,0.23968054,-0.2068484,0.19536318,-0.3518048,0.3353995,0.17894994,0.53478473,0.46265805,-0.22365515,0.26962948,0.56030977,0.93032277,0.13572754,0.9395155,0.12637956,-0.10758634,0.5290681,-0.29495975,-0.5057372,-0.65405595,-0.09338395,0.11043679,-0.30521104,-0.28185833,0.22699155,-0.2987831,-0.8367953,0.57509816,0.087859645,0.3585857,-0.013914509,0.25572938,0.5591647,-0.26066583,-0.04146203,0.014979248,-0.09428498,-0.56482154,-0.22622024,-0.684016,-0.56402296,0.081607334,0.8985484,-0.18010852,-0.12250361,0.06626614,-0.1728662,0.15710688,0.14624046,-0.037388828,-0.18357609,0.43017212,0.06831605,-0.59112936,0.38301358,-0.036009423,-0.040113274,-0.5791216,0.5227407,0.87088907,-0.64905274,0.5211608,0.3305953,-0.06429165,-0.36693338,-0.470214,-0.02394806,-0.010300429,-0.15917741,0.2597176,0.16701348,-0.87944096,0.28682038,0.2763558,-0.3093715,-0.6714754,0.5298598,-0.013267384,-0.045624394,-0.3885368,0.49978307,0.42299026,-0.017341448,-0.045497674,0.40839836,-0.50344974,0.15305246,0.14102402,-0.1327429,0.36571822,-0.027492179,-0.2718479,-0.74808353,0.19089288,-0.71770567,-0.26546147,0.4505175,-0.1084574,-0.083143815,0.21633475,0.33714172,0.31361097,-0.13388728,0.08958979,-0.14201912,-0.4298541,0.5355084,0.44283068,0.66127396,-0.6396354,0.7420785,0.089381546,-8.2994884e-05,0.4074704,0.13008688,0.545386,0.10583437,0.5881682,0.16969472,-0.07772829,-0.015566672,0.80621344,0.15207669,0.6622061,0.15657187,-0.121367946,0.08318384,0.062243894,0.1542671,-0.13230087,-0.85818857,0.09137487,0.02895115,0.00940732,0.4804279,0.109742165,0.29567498,0.08992187,-0.26106784,-0.14193669,0.08897523,-0.19432384,-1.6260393,0.56060207,0.22540991,0.95810497,0.3553772,-0.040695105,0.00897093,0.6979438,0.10169765,0.18882623,0.5609506,-0.113773674,-0.44395894,0.5288298,-0.7431786,0.43806502,0.12944995,0.113025256,-0.021763977,0.123781785,0.5186336,0.74981177,-0.26624396,-0.035438538,-0.11765773,-0.45290068,0.28619918,-0.3713131,0.19784595,-0.4069628,-0.26297355,0.488272,0.65137064,0.2841859,-0.20872802,-0.040745847,0.15819556,-0.07426517,0.34736687,-0.17255391,0.043663,-0.053912148,-0.43015766,-0.21809277,0.48799375,-0.10922154,0.2410632,0.07270717,0.0040925397,0.30363905,-0.03864812,-0.07907818,-0.07731223,-0.82646877,0.006538192,-0.45946553,-0.477729,0.36969024,0.0016955045,0.29943192,0.24954937,0.11112286,-0.3859267,0.4472998,0.058332577,0.53503263,-0.28456235,-0.3189589,-0.39737627,0.26006886,0.11593492,-0.42986014,0.13807833,-0.1078316,0.003053115,-0.38059726,0.38757208,-0.2565676,-0.2271413,-0.01658851,-0.15219966,-0.08643012,0.60801405,-0.20109683,-0.044711266,-0.0101234,-0.27679193,-0.18080924,-0.19021004,0.01998341,0.19296297,0.19744407,0.08336333,-0.2149694,-0.19141814,-0.0059635593,0.32933697,0.018147798,0.1722768,0.46236897,0.11361141,-0.4163894,-0.1713418,0.4354996,0.60018355,0.12603006,-0.108964615,-0.2671926,-0.3433494,-0.46354407,0.38782597,-0.08599233,0.32849926,0.1382399,-0.40630847,0.8104514,0.09527354,1.2426001,-0.08796624,-0.32538027,0.036290567,0.4982138,-0.029992979,-0.11486184,-0.53721297,0.96242553,0.46658024,-0.2639979,-0.051973358,-0.56676614,0.04395357,0.18363975,-0.37120873,-0.1618432,-0.06971465,-0.70082533,-0.24177995,0.17331551,0.40892237,0.054866806,-0.26623565,-0.1238064,0.36990133,0.12034755,0.41694406,-0.63116497,-0.24390517,0.24759707,0.32922158,-0.0033578528,0.24856319,-0.36011025,0.34733948,-0.6144324,0.23045553,-0.14018007,0.095208205,-0.286426,-0.43082052,0.17056274,0.036181413,0.41957295,-0.29944918,-0.53365517,-0.19851057,0.42496496,0.21754034,0.14426692,0.77018064,-0.27996218,-0.13034037,-0.028406449,0.7248484,1.0750597,-0.019010603,-0.015384734,0.23018257,-0.43705824,-0.73534256,0.22713128,-0.43878153,0.3606487,-0.19093587,-0.2577893,-0.5691071,0.19578655,0.05125274,-0.10429557,0.05063481,-0.8228305,-0.35535115,0.16349095,-0.4573527,-0.22499512,-0.35321456,0.16360521,0.58746135,-0.16200143,-0.2703173,0.18521158,0.18551472,-0.12494368,-0.53659207,-0.13757545,-0.31199104,0.14566444,-0.07126166,-0.39199764,0.051483933,0.05533024,-0.6218329,0.21462049,-0.09343119,-0.49824142,0.029139025,-0.1325259,0.008039267,0.88238645,-0.09355186,0.3235213,-0.29145637,-0.509806,-0.6554237,-0.37718412,0.23848604,0.121669546,0.016918045,-0.6932903,-0.22198156,-0.122133456,0.016989907,-0.067560636,-0.41326168,0.26709592,0.20347016,0.4649839,-0.15147966,-0.8353559,0.1785927,0.21144997,0.022690488,-0.68216634,0.38703588,-0.18984899,0.77061236,0.19428168,0.026920604,0.1981929,-0.5120832,-0.012600129,-0.2353676,-0.19657084,-0.57498306,0.21178807,255 +638,0.3652087,-0.23442292,-0.5348655,0.018204862,-0.19373399,-0.095366605,-0.19531824,0.5103989,0.3149485,-0.08971003,-0.043111682,0.1189774,-0.1432772,0.35011816,-0.01449533,-0.4950153,0.051096145,0.17639181,-0.52529466,0.6285484,-0.39726683,0.06686967,-0.29229325,0.45087245,0.32428077,0.2930597,-0.064492464,0.10126387,0.010499961,-0.11489738,-0.0032843442,0.11589641,-0.6696314,0.17214021,-0.05436933,-0.21698108,0.048122324,-0.4754116,-0.3589217,-0.8828299,0.28036198,-0.59498024,0.5900574,-0.12132221,-0.25287932,0.31361362,-0.02882464,0.45111004,-0.4208633,-0.13060531,0.10634732,-0.17816637,-0.2563089,-0.06213898,-0.033886578,-0.2246935,-0.6055099,-0.058441933,-0.3200798,0.03611245,-0.15953766,0.083591655,-0.43486947,-0.041847523,0.04812628,0.41068083,-0.45920706,0.25366485,0.16226146,0.04152717,-0.101165876,-0.71138984,0.047302835,-0.21689121,0.29852393,-0.040670175,-0.3039694,0.33839032,0.22821252,0.2768512,0.010166654,-0.100600995,-0.23252344,0.06546534,-0.053530134,0.5247417,-0.080174014,-0.27491295,-0.11048489,0.12190595,0.12884091,0.21418467,0.0906331,-0.08369929,-0.23843127,0.08786818,-0.18290994,0.4467753,0.49521524,-0.2889992,-0.20993812,0.41306514,0.5860567,0.3319996,-0.085990414,0.01586296,0.05235376,-0.5397567,-0.17273913,-0.011164954,-0.23278816,0.40815455,-0.12868798,0.20016864,0.6655397,-0.22310919,-0.26662177,0.0858869,0.21656558,0.0063782153,-0.35242373,-0.36899203,0.31705776,-0.53176415,0.24372035,-0.08002814,0.5498018,0.3644357,-0.5078967,0.27244136,-0.5043175,0.13001275,-0.1398425,0.49073407,0.9205802,0.53438085,0.40626657,0.8218013,-0.39643887,0.17163633,-0.0617212,-0.3097113,0.16409232,-0.22678334,-0.15050022,-0.53268194,-0.0485932,-0.10914434,-0.16743194,0.25357082,0.1047321,-0.47983977,-0.07374007,0.073576175,0.7042984,-0.16575176,0.009504855,0.78656924,1.0359694,1.1612632,0.05027639,1.1038489,0.22591528,-0.18593293,0.17458937,-0.19373196,-0.833896,0.22505309,0.20302072,-0.24434958,0.2283029,0.21961021,-0.19868104,0.40388596,-0.48069778,-0.09445564,-0.07098695,0.32028043,0.1987701,-0.103710376,-0.50437725,-0.30936944,-0.21532935,0.06468174,0.04428263,0.34288305,-0.23489965,0.2834104,0.022167504,1.4165815,0.009645649,-0.009341604,0.08326931,0.6349932,0.21787363,-0.32560748,-0.29978284,0.28697455,0.5899574,0.26138407,-0.5342271,0.07385574,-0.16298215,-0.32183763,-0.13247806,-0.28624073,0.019976946,-0.014573427,-0.15904742,-0.3137612,-0.06677823,-0.09917832,0.61808085,-2.8178084,-0.014019875,-0.022108708,0.346697,-0.1581614,-0.29133484,-0.14371373,-0.5481285,0.322351,0.23447484,0.58546245,-0.62616754,0.38902003,0.31196785,-0.735784,-0.022319267,-0.6597098,-0.17996421,0.07696013,0.33275598,0.008498586,-0.03811894,0.024988843,0.11530486,0.58422387,0.16481128,0.050577547,0.33429495,0.23024175,0.031836793,0.53726333,-0.010764835,0.5542154,-0.1537058,-0.15527914,0.11607463,-0.3168289,0.36503348,-0.22117744,0.09273055,0.5768445,-0.37755534,-0.98690075,-0.5702665,0.24730195,1.3353051,-0.24600077,-0.33282253,0.17380379,-0.6437981,-0.24944574,-0.16451095,0.2993523,-0.15587504,-0.28458104,-0.648826,-0.047214203,0.055688437,0.24115135,0.011962558,-0.07560832,-0.44765523,0.5099572,-0.16436537,0.36160988,0.35343936,0.18010794,-0.099577576,-0.48167202,-0.036378786,0.6692326,0.38588268,0.07537331,-0.2804715,-0.16910301,-0.31509256,-0.021635102,0.06488229,0.4430601,0.50783336,-0.25443652,0.17311676,0.25043133,-0.11651712,0.072712295,-0.100052744,-0.29597914,-0.17439936,-0.009818488,0.5063068,0.84368557,-0.018880973,0.43416166,0.041766856,0.17261368,0.10067439,-0.56844246,0.4739235,0.9165708,-0.2736403,-0.27345437,0.40989855,0.37930584,-0.12358317,0.46674716,-0.38413817,-0.10095091,0.30574992,-0.085548684,-0.22274496,0.007984872,-0.25495422,0.030804487,-0.58531344,0.2991429,-0.24129549,-0.49782997,-0.55783355,0.042170856,-3.3535814,0.113357425,-0.33850092,-0.1754365,-0.054121934,-0.111617655,0.2072436,-0.65857804,-0.567633,0.23107591,0.17274202,0.7231988,-0.20086578,-0.10723831,-0.2025698,-0.45497674,-0.550504,0.13510485,0.21087827,0.3265611,0.18239564,-0.46439424,0.0020833658,-0.06821599,-0.37763822,-0.07908039,-0.4843659,-0.24141961,-0.090848655,-0.5811922,-0.29241535,0.6926843,-0.18146229,0.030508349,-0.26401392,-0.00656696,-0.046746586,0.25114664,-0.010968343,0.03566351,0.11080685,-0.09148361,0.07711856,-0.15487891,0.164628,0.00866209,0.32540095,0.13272792,-0.030182637,0.08277989,0.54237723,0.6813609,-0.23154536,1.0472106,0.6203194,-0.20194489,0.160379,-0.15336198,-0.26683024,-0.372349,-0.3036256,-0.045861088,-0.4756576,-0.27496234,0.109207675,-0.3931518,-0.7667485,0.55670744,-0.10780643,0.11810304,0.12029752,0.29042184,0.6380955,-0.17271854,0.12794426,-0.017390665,-0.10984507,-0.46146232,-0.12278307,-0.4332712,-0.48950964,0.17745532,1.0140779,-0.5305668,0.16499402,0.09818793,-0.4577151,0.037967887,0.1392433,-0.15902947,0.14423272,0.3414583,-0.01670296,-0.55274147,0.24037196,-0.21839362,-0.0076906155,-0.82492566,0.2869187,0.5007855,-0.66877025,0.5125312,0.21511751,-0.09295834,-0.13831434,-0.59353405,-0.26415026,-0.08970647,-0.23858224,0.3780535,0.31398386,-0.89589435,0.4188945,0.23886248,-0.31525886,-0.61984354,0.45228228,-0.027981011,-0.14272651,-0.009953012,0.29051572,0.17229149,0.1065478,-0.2814328,0.24994506,-0.3452052,0.20374492,0.098099194,-0.16280094,0.08888002,-0.13012801,-0.016924767,-0.68413776,-0.093358465,-0.4178718,-0.31300658,0.30847076,0.08266883,0.099677615,-0.010866776,0.3464424,0.31550997,-0.2498428,0.07637584,-0.1333653,-0.41047558,0.38731006,0.49779242,0.49167296,-0.34874865,0.5875931,0.075192995,-0.18414268,0.071355805,-0.0070902016,0.31349328,-0.0029591413,0.41995335,0.20246162,-0.19496359,-0.026808836,0.7010345,0.1232802,0.4911273,-0.1092548,-0.07352627,0.11456403,0.117580816,0.23479876,0.1642687,-0.5351149,0.13566682,-0.18836318,0.28041875,0.47139645,0.24830844,0.19723752,-0.10038821,-0.2560037,-0.1265203,-0.034434136,0.16649124,-1.5273668,0.4116213,0.16619569,0.81098104,0.35401216,0.072139576,-0.09588332,0.60740215,0.026898466,0.11197933,0.26410565,0.19155718,-0.4768758,0.42223275,-0.845107,0.6696872,0.058882676,-0.00070030644,0.16746393,-0.0511309,0.5065916,0.707682,-0.22660533,-0.04498678,-0.035134874,-0.30072802,0.015034641,-0.31993178,0.13150743,-0.57552725,-0.2777559,0.52144426,0.5781769,0.3607094,-0.17014709,-0.0047427807,-0.030618612,-0.15806715,0.1302213,-0.032695808,-0.054107364,0.005908833,-0.5978419,-0.14799923,0.40516466,-0.27495673,0.097317606,-0.01907113,-0.01974978,0.22564822,-0.14909135,-0.014114151,-0.10002693,-0.74559754,-0.096374944,-0.27092832,-0.33308622,0.4960763,-0.02531964,0.21007864,0.23532456,0.09832696,-0.30240938,0.4534553,0.009341955,0.750407,-0.10067822,-0.11586,-0.3998832,0.1702342,0.14760682,-0.08977736,0.0915504,-0.3086454,0.10694997,-0.49468833,0.40781912,-0.102358155,-0.33596104,-0.07131934,-0.071003616,0.039879,0.51625216,-0.14952536,-0.12517129,-0.068237,-0.30140895,-0.33946612,-0.4003881,-0.24304236,0.060143646,0.33396637,-0.09938639,-0.062465176,-0.23733975,-0.060359873,0.41016564,0.07397599,0.2688569,0.1424298,0.07523679,-0.25414294,-0.21301804,0.14287657,0.5807533,-0.23136641,-0.2940903,-0.517752,-0.5316387,-0.38370463,0.20971686,-0.022188187,0.42559814,-0.026828457,-0.14280957,0.6111209,0.15211037,1.2016754,-0.0637656,-0.37144753,0.10891362,0.65172946,-0.104092315,-0.08915232,-0.31870696,0.84707195,0.46029332,-0.24049753,-0.12205179,-0.48469198,-0.25605196,0.2919341,-0.20429268,-0.05848109,0.025960317,-0.5126518,-0.083352566,0.3156358,0.19042088,0.20970334,-0.119158454,0.08593201,0.42522103,0.15660875,0.27304098,-0.4217609,-0.11003058,0.2915022,0.26574317,0.05320048,0.20397839,-0.4114151,0.33487386,-0.33561182,0.025746047,-0.12566197,0.23265114,-0.13998118,-0.30694968,0.28131297,0.20559731,0.5313253,-0.38678044,-0.34623832,-0.2682434,0.49218976,0.27046835,0.17949232,0.52726245,-0.2681176,-0.09117411,-0.072411165,0.43123415,0.7998492,-0.18870093,0.079828486,0.30667776,-0.2893322,-0.56166494,0.31607172,-0.27567628,0.152582,0.03864277,-0.0909526,-0.66360813,0.23659304,0.16535799,0.17987493,0.1396654,-0.6611573,-0.196591,0.12765104,-0.22413749,-0.07624184,-0.31728423,0.12568805,0.7003423,-0.21210936,-0.48312047,0.10462909,0.24378219,-0.010030884,-0.47426128,-0.13276035,-0.3450092,0.1924785,-0.018750777,-0.42692512,-0.32790515,-0.042246383,-0.4765968,-0.09912276,0.002536549,-0.2135658,0.1099621,-0.26090586,0.067277506,0.8050553,-0.39263624,0.3214267,-0.47131756,-0.43554825,-0.76055914,-0.33353895,0.3627896,0.30976298,0.036402617,-0.74075276,0.05322349,-0.21956946,-0.21875522,-0.055897553,-0.4897311,0.52716887,0.04663606,0.060394563,0.010825955,-0.9164802,0.21213315,0.13378583,-0.24819675,-0.53015417,0.52701104,-0.112574026,0.8323928,0.18768147,0.16116211,-0.022052169,-0.2113575,0.01969917,-0.24127358,-0.23309748,-0.68310136,-0.101080365,258 +639,0.022333251,-0.05842054,-0.4751727,-0.14982487,-0.060963783,0.20296377,-0.057785496,0.46276397,0.11867842,-0.38444564,-0.028883742,-0.1523968,-0.049362805,0.32303298,-0.16729262,-0.4520815,0.0065302392,0.16688465,-0.26940754,0.17044197,-0.43042564,0.25592723,-0.17898414,0.27851504,0.06475603,0.276129,0.21718289,-0.22218768,-0.22079445,-0.22401024,0.025408827,0.31172112,-0.47859076,0.36135468,-0.004038421,-0.17017442,0.23202287,-0.3589231,-0.4824255,-0.5342221,0.25750503,-0.753704,0.38759467,0.019532941,-0.081391454,0.27501372,0.23131536,0.122747,-0.3425975,-0.12563957,0.3083822,-0.3384667,-0.08414892,-0.22886345,-0.1953215,-0.4109974,-0.3759211,-0.03156006,-0.46001142,-0.15071517,-0.46700388,0.11297728,-0.2914372,0.013045811,-0.19310229,0.27426812,-0.3427107,0.016629549,0.17728494,-0.33216184,0.09493529,-0.5687217,-0.18691164,-0.031036321,0.000967247,-0.17067745,-0.06357716,0.40085617,0.18381014,0.26926583,-0.1175333,-0.0044329944,-0.24595867,-0.31715664,0.18082696,0.5480995,-0.086856,-0.38066304,-0.023591977,-0.06007576,-0.05480108,-0.010987117,0.051888518,-0.13959044,-0.12740175,0.14869253,-0.2711042,0.22863418,0.48644236,-0.25869438,-0.21581969,0.41787243,0.41247866,0.09870749,-0.04153568,-0.119744584,-0.08020942,-0.46662962,-0.21716629,-0.1325263,-0.108229,0.43453863,-0.079348855,0.19347733,0.7598717,-0.3359308,0.03955781,0.118009076,0.16952778,-0.014434374,-0.35353056,-0.19719897,0.1855986,-0.348951,0.042503186,-0.14596364,0.9061874,0.041527152,-0.45141917,0.33092833,-0.46698508,0.07417575,-0.03973806,0.60862947,0.3417964,0.37945157,0.33077314,0.6515763,-0.4685402,0.040401418,0.0043309103,-0.29703116,0.2541449,-0.23435718,-0.15062985,-0.2930962,0.015409286,0.26262787,0.06980848,0.045140937,0.2240635,-0.437867,0.07330607,0.16417335,0.8352077,-0.31047806,-0.14181148,0.3576212,1.0574276,0.74407125,0.04528606,1.128906,0.15545636,-0.2683997,0.04129007,-0.005703816,-0.8063217,0.28197423,0.3260039,-0.30600828,0.10273261,0.2864857,-0.06638457,0.28599894,-0.43028763,-0.10012475,-0.14997815,0.3767378,0.09855285,-0.07535134,-0.40188318,-0.31355572,0.084903404,-0.24183846,0.2597222,0.2712798,-0.2274387,0.23191306,0.14577636,1.3931991,-0.014876132,0.22420223,0.07589263,0.48951334,0.12013949,-0.03616949,-0.028993892,0.47234586,0.2841168,0.016875032,-0.61622465,0.17233673,-0.27356768,-0.61157,-0.12888433,-0.32708517,-0.080921166,0.041162767,-0.3054214,-0.17129262,-0.053680837,-0.29333103,0.36558956,-2.8324838,-0.025592478,-0.009394809,0.24080476,-0.28532064,-0.1133128,-0.09375017,-0.3480474,0.33815876,0.49115118,0.42205423,-0.46392345,0.19526619,0.39869535,-0.25820327,-0.31322104,-0.52990615,0.16334714,-0.10937521,0.19352776,0.048119508,-0.027507644,-0.2478822,-0.11841985,0.38019848,-0.11104805,0.080155805,0.37005204,0.2417958,0.060520127,0.26413283,0.013203896,0.54225767,-0.44708762,-0.09282282,0.24768914,-0.6311169,0.47172356,-0.024442067,0.12054336,0.3578522,-0.2012232,-0.74316704,-0.4383399,-0.3363395,1.4036871,-0.30788496,-0.19112404,0.2420173,-0.0931782,-0.23819274,-0.023207132,0.40101528,-0.29093286,-0.0022621774,-0.6399975,0.16785127,-0.158638,0.42953506,-0.019747403,0.057191912,-0.36649853,0.6228456,-0.05338577,0.4657163,0.2113274,0.06372091,-0.3716641,-0.27856773,0.01520512,0.8500419,0.27596554,0.13624573,-0.21620716,-0.19105384,-0.18487872,-0.1064704,0.18209745,0.4293525,0.5954772,0.060440786,0.16246489,0.27372438,0.00813067,-0.10272289,-0.07183269,-0.27963158,-0.021396937,0.16106565,0.6892859,0.4511605,-0.14009568,0.37592062,-0.08437435,0.33806545,-0.33441147,-0.31739518,0.29420292,0.7483051,-0.15708464,-0.26697886,0.6935308,0.5924314,-0.33273953,0.453162,-0.5532627,-0.4557064,0.625266,-0.27088714,-0.39169964,0.08927726,-0.27379268,0.02160113,-0.85769755,0.33802003,-0.041579552,-0.55478674,-0.6230805,-0.25554913,-3.2763608,0.02010246,-0.19125359,-0.23833497,-0.2095441,0.066057436,0.27947342,-0.505735,-0.38002485,0.070022866,0.11982192,0.5994313,0.00842077,-0.01652057,-0.23147812,-0.14736648,-0.08592704,0.14134401,0.11262762,0.20510362,-0.06303001,-0.37671822,0.063213825,-0.28142852,-0.34513855,0.068942465,-0.46494895,-0.310565,-0.22923395,-0.5380499,-0.36095354,0.69414914,-0.64242625,0.03292671,-0.14934151,0.105093114,-0.11714323,0.31389558,0.19231234,0.112467974,-0.01666938,-0.113875784,-0.040667813,-0.4467533,0.48176953,0.007867449,0.48120946,0.54841423,-0.059212446,-0.15670846,0.5316519,0.44335446,0.05375389,0.8267969,0.26157862,-0.06984398,0.39339292,-0.31510317,-0.20951667,-0.46753305,-0.3553915,0.07012357,-0.3017297,-0.39903158,0.052501526,-0.32495987,-0.7920859,0.5645285,-0.05035217,-0.06506956,-0.006706648,0.21317181,0.35410407,-0.08489196,-0.0928253,0.058542058,-0.058905527,-0.39454782,-0.47408164,-0.62524295,-0.29558796,-0.014007769,0.92920107,-0.17210484,-0.1152984,-0.026099913,-0.14105095,0.01007148,0.15279089,0.023608685,0.26357728,0.46259594,0.0575122,-0.6168633,0.55735815,-0.25608906,-0.16869494,-0.4708451,0.02171532,0.5927936,-0.759828,0.46718168,0.49616206,0.14653894,-0.07078728,-0.44639635,-0.28471512,-0.1847287,-0.114094414,0.3234701,0.15062684,-0.81265736,0.47721142,0.22681996,-0.39458084,-0.68875855,0.3135883,-0.11946841,-0.024878016,-0.008844733,0.32933885,-0.041044567,0.032700326,-0.16089225,0.14104268,-0.37513182,0.091417775,0.17720999,-0.13807973,0.56909126,-0.21715659,-0.047640763,-0.552815,0.042377964,-0.40514213,-0.1996478,0.14493331,0.055177476,-0.08832742,0.30039987,-0.103625424,0.38460872,-0.24180983,0.035444282,-0.054899685,-0.23339213,0.46327436,0.3982189,0.42477334,-0.37901527,0.68284255,-0.028697293,0.07366766,-0.12279472,-0.014249148,0.44794062,0.055214442,0.39504382,0.06895703,-0.113805346,0.34667698,0.82374513,0.24990524,0.43464455,0.064816386,-0.006899724,0.24295834,0.01145478,0.12309322,0.24003777,-0.49213395,-0.09308536,-0.25193346,0.15085763,0.40797776,0.08972037,0.54008293,-0.06364123,-0.07695763,0.21129563,0.23274957,-0.050788376,-0.7076622,0.55888,0.21695016,0.604303,0.36457983,0.0024330823,0.087198734,0.6513639,-0.21758412,0.1326677,0.26493132,0.010215872,-0.5336366,0.57625175,-0.61181283,0.4855388,-0.20621753,0.0072335876,0.06737651,-0.01557899,0.45946705,0.7781169,-0.13791251,0.061520584,0.12320101,-0.24509849,0.2148815,-0.3507851,0.3165689,-0.49174404,-0.23141728,0.5623647,0.408841,0.3186027,-0.26026848,-0.04529226,0.058082405,-0.089495346,0.18724865,-0.050386403,0.01993591,-0.06955034,-0.61167836,-0.33129495,0.4842693,0.113336995,0.1969406,0.019189904,-0.18904455,0.27425134,-0.18564193,0.033823732,-0.14957744,-0.37796387,0.16666254,-0.11778586,-0.68657494,0.2001076,-0.27875695,0.32404402,0.22543167,0.04050764,-0.3361211,0.30953705,0.22071102,0.7660855,-0.22251518,-0.20457667,-0.40384966,0.093592815,0.28057015,-0.11099521,-0.14970425,-0.4310261,0.002418518,-0.5412735,0.2973463,-0.31036422,-0.23012172,0.05652996,-0.34482634,-0.0721832,0.50556517,0.104466245,-0.03302705,-0.05030386,-0.26369298,-0.1482527,-0.06640128,-0.22723547,0.22338878,0.1116476,-0.10979361,-0.18092881,-0.2079776,-0.052615542,0.110288635,-0.11535799,0.13838586,0.2903566,0.090877526,-0.24478358,-0.20754123,-0.120442234,0.576018,0.07309513,0.031340167,-0.21453208,-0.2937247,-0.1877075,0.32316092,-0.21787395,0.1809468,0.20311818,-0.44822496,0.67386186,-0.1108359,0.9993427,0.02143079,-0.3818698,0.09060737,0.71299785,0.0537173,-0.023352275,-0.3940886,0.9366734,0.50568473,-0.11547124,-0.24858348,-0.3181718,-0.01867354,0.23125084,-0.13293603,-0.49386686,-0.07945816,-0.6893883,-0.17592937,0.28200743,0.35644773,0.041426387,0.019137293,-0.04995888,0.21950427,0.12407064,0.38498244,-0.43064836,-0.11333673,0.35177782,0.14425506,0.041925885,0.13313437,-0.38249877,0.43130124,-0.6836653,0.068830565,-0.19289912,0.048564516,-0.255144,-0.21196008,0.22059125,0.10281901,0.36967185,-0.27366608,-0.17964381,-0.027807564,0.33099145,0.14151698,0.26891547,0.61991537,-0.2079518,-0.023582097,-0.0161951,0.4695067,0.81939954,-0.25574937,-0.046017583,0.41568515,-0.31711355,-0.633331,0.38923296,-0.46895054,0.07638492,-0.12605602,-0.4436254,-0.27455518,0.31499717,0.25476053,-0.08567192,0.17032088,-0.45329922,-0.05320433,0.13343164,-0.26251572,-0.24411029,-0.2935134,-0.010520022,0.6590162,-0.2975466,-0.16026963,0.16875783,0.37356207,-0.18422253,-0.5157075,-0.038414035,-0.3974194,0.38786137,-0.06386421,-0.206252,-0.10164662,0.02346412,-0.3387058,0.40174058,0.15570666,-0.36470684,0.025681544,-0.19474298,0.17163515,0.45404804,-0.080545664,-0.044431366,-0.6214788,-0.50293326,-0.8797616,-0.21927533,0.55038524,-0.027676225,-0.109586395,-0.34593278,-0.028981619,0.006277268,-0.1610801,-0.23296605,-0.41509217,0.4042602,0.12247812,0.28472096,-0.06078816,-0.89523196,-0.014062662,0.016917692,-0.19059357,-0.47229764,0.46276742,-0.31408623,0.69175583,0.022475133,0.04024468,0.2755661,-0.4089197,0.22904605,-0.27800143,-0.22387902,-0.53949857,0.14297661,263 +640,0.42148414,-0.076404944,-0.4031541,-0.06551619,-0.23945116,-0.06683946,-0.076744124,0.60178894,0.22420996,-0.45301265,-0.116609745,-0.088415496,-0.13730279,0.2038467,-0.14941703,-0.36412433,0.22635871,0.16061227,-0.34099585,0.66273755,-0.4511669,0.37654716,0.059336003,0.29368,0.23623523,0.12888367,-0.008519879,0.11491615,-0.04474819,-0.39075089,-0.1943238,0.30896604,-0.52132356,0.33443117,-0.2476781,-0.5068136,-0.09696691,-0.47559085,-0.14593045,-0.767326,-0.012662475,-0.64236295,0.58611494,0.17821115,-0.33893225,0.07668761,0.20697124,0.16711156,-0.12940086,-0.035413817,0.0810754,-0.07835682,-0.08816617,-0.2524434,-0.06890099,-0.26197997,-0.6203356,0.049711384,-0.4651655,0.0021853447,-0.38139433,0.123504676,-0.34124076,-0.12650733,-0.09943554,0.48264027,-0.3806591,0.019913765,0.02330028,-0.23466237,0.2145589,-0.59615433,-0.057360455,-0.28374702,0.060059097,-0.22323667,-0.35481498,0.3172758,0.36258242,0.5058798,0.10218699,-0.20411858,-0.32625535,-0.119232304,0.013163447,0.40416014,-0.13838969,-0.53835905,-0.13596094,-0.113509536,0.30606925,0.20452884,0.256311,-0.1303655,-0.12380346,-0.009042378,-0.36151412,0.24951905,0.43501168,-0.45245692,-0.27216223,0.31329912,0.5056813,0.092562206,-0.12512971,0.075442,0.030867733,-0.5178921,-0.3009249,-0.093932465,-0.22341846,0.47825608,-0.22268051,0.2165537,0.60138416,-0.16118166,-0.052979715,0.2856249,0.16178179,-0.042995527,-0.40511608,-0.30891997,0.30060914,-0.6203597,0.1577074,-0.15146434,0.7897981,0.05763781,-0.80533767,0.2676791,-0.61459553,0.04714579,-0.03828831,0.4875188,0.630935,0.5151296,0.40078416,0.59361243,-0.3155104,-0.08952929,-0.26668602,-0.19661811,0.041947797,-0.17787226,-0.053956058,-0.43905193,-0.05273241,0.05975072,-0.09318013,0.15464845,0.60503095,-0.50742096,-0.1481645,0.2876865,0.5318873,-0.31683886,-0.14129587,0.7644979,1.0164064,1.04515,0.022057258,1.0646174,-0.003102972,-0.09053353,0.1410127,-0.085989274,-0.5288691,0.2129058,0.3480194,-0.22189723,0.1628736,0.13115194,0.06457686,0.33167845,-0.3229316,0.025990317,-0.03523055,0.17808525,-0.048746154,-0.2191334,-0.39067957,-0.49092534,-0.13506004,0.13254626,-0.06909853,0.37086588,-0.18944247,0.2953419,0.14477171,1.5234852,-0.0945251,0.0935585,0.10296957,0.5033897,0.2715458,-0.22055103,-0.06780012,0.25854543,0.16714028,0.17039111,-0.46568683,-0.0006757791,-0.097487524,-0.56689626,-0.17285186,-0.3284937,-0.15751457,-0.17981383,-0.43025643,-0.2623939,-0.14824107,-0.4708279,0.5283286,-2.6124842,-0.24446979,-0.014215559,0.3296344,-0.22136602,-0.52538496,-0.1629731,-0.38576004,0.42991924,0.18551174,0.50673574,-0.6662168,0.46648118,0.60940975,-0.5801367,-0.23717,-0.58405066,-0.129403,-0.067530885,0.21670991,0.055257943,-0.17300175,0.0036066954,0.07356303,0.68371403,-0.06723995,0.23757014,0.3378326,0.24307063,-0.14407101,0.5269074,-0.025693692,0.5260905,-0.27180177,-0.2832418,0.32011223,-0.4031629,0.25226864,-0.0930357,0.03327091,0.4676062,-0.57233745,-0.9920308,-0.6968208,-0.22511172,1.162732,-0.22056805,-0.30302683,0.28274363,-0.38935786,-0.33412635,-0.0681789,0.55704063,-0.0907947,0.030319352,-0.6257334,0.06888847,-0.1375292,0.19579762,-0.0077340933,-0.059069753,-0.5503341,0.8023259,-0.005827849,0.6042362,0.3007965,0.1338058,-0.61637247,-0.40352264,-0.014881547,1.2327157,0.47346812,0.21567108,-0.25623372,-0.21188071,-0.54796803,-0.023230039,0.18808328,0.5377646,0.6565557,-0.11744415,0.15734753,0.33369583,0.090666756,0.03411854,-0.14904208,-0.26303595,-0.10074114,0.26429752,0.66990155,0.5921736,-0.121807024,0.3404735,-0.053200927,0.24527581,-0.3064651,-0.5645004,0.41265073,1.0490806,-0.12924841,-0.17771414,0.8515917,0.56899637,-0.07060128,0.49884275,-0.51452416,-0.45982215,0.30488414,-0.10577244,-0.29303277,0.1790969,-0.38088834,0.029024573,-0.83525634,0.2188905,-0.373043,-0.61050075,-0.4429499,-0.057714507,-3.1641703,0.2774764,-0.15891376,-0.058176097,-0.09819314,-0.2898543,0.2198054,-0.64791447,-0.49448013,0.001963166,0.19695957,0.75523466,-0.13496915,0.040328067,-0.17447196,-0.47602066,-0.26277506,0.22040984,-0.07628934,0.29418927,0.046379052,-0.4075519,-0.10897764,-0.0498041,-0.4510432,0.06777349,-0.57786983,-0.50933945,-0.13956627,-0.49994665,-0.36473733,0.72260374,-0.4313183,0.11422823,-0.21705921,-0.15307607,-0.009912381,0.2515834,-0.06281029,0.014748862,0.020857783,-0.10725172,-0.11173828,-0.23094834,0.14802745,-0.0056335856,0.31836542,0.42702627,-0.2834205,0.158128,0.61639553,0.6414331,-0.27407634,1.0200818,0.3792813,-0.1381105,0.33122414,-0.09006017,-0.25180423,-0.5807387,-0.24666229,-0.14117494,-0.44421747,-0.26269227,0.06834774,-0.28810507,-0.8355774,0.6079591,0.09521464,0.08209905,-0.07420668,0.35818836,0.39169824,-0.15832075,-0.16629232,-0.20185448,-0.20088148,-0.47190526,-0.32465586,-0.5965467,-0.37043682,0.15506504,1.1559024,-0.41125697,0.04611918,0.21790287,0.08883098,-0.05585154,0.12742773,0.07638817,0.022291243,0.3923874,-0.06503873,-0.50473446,0.35798484,-0.07513886,-0.107679844,-0.30276513,0.31106818,0.65359086,-0.6666318,0.48529613,0.27964827,0.064441375,-0.1380611,-0.66618866,-0.07999261,-0.0983895,-0.27099675,0.5540639,0.38582215,-0.942929,0.4376367,0.31197688,-0.18711184,-0.76246345,0.5192759,-0.12138247,-0.1605881,-0.2664468,0.41796783,0.25089902,0.16166005,-0.10656473,0.28621918,-0.5002358,0.2984992,0.19473876,-0.11804784,0.24224915,-0.26518485,-0.027043076,-0.76644295,0.04174467,-0.4323994,-0.5025128,0.20081595,0.08918156,-0.12256555,0.4600191,0.044840768,0.36153856,-0.34675047,0.14147197,-0.009908771,-0.2321423,0.4112693,0.42890522,0.5845938,-0.35464376,0.52061176,0.09317577,-0.037702266,-0.32936653,-0.05472041,0.34735262,-0.07214646,0.44623485,-0.044106185,-0.1976493,0.33468226,0.7383512,0.1705171,0.3029023,0.03543155,0.06525307,0.06017447,0.07238125,0.2645375,0.05765664,-0.6383777,0.11032307,-0.26074713,0.19435832,0.63539577,0.2448872,0.21515721,-0.06822895,-0.10521196,-0.031069107,0.2331581,-0.16308719,-1.3832968,0.32911697,0.13779607,0.70628536,0.75608826,0.040553708,-0.01521161,0.62627465,-0.22375521,0.16911784,0.24937366,0.06651611,-0.3765822,0.5969889,-0.7935969,0.45121786,-0.028174158,0.024526192,-0.09905301,-0.17375126,0.4902131,0.83376706,-0.04943786,0.050288443,0.011234677,-0.32325986,0.032021802,-0.42833847,0.06983964,-0.54380643,-0.1665117,0.8513601,0.36290786,0.4263594,-0.14795192,-0.053308163,0.07985198,-0.1898451,0.10638012,-0.034260187,0.1288577,-0.065272614,-0.46308178,0.0013449123,0.65820515,-0.025128864,0.17842586,0.14160404,-0.26710555,0.25257486,-0.0473786,-0.087308176,-0.045203403,-0.6482799,-0.036513373,-0.44438392,-0.2494484,0.46109167,-0.1774602,0.046913944,0.29451862,0.07294308,-0.06306647,0.42001274,0.30984354,0.44646052,0.09973162,-0.032836527,-0.1224596,0.37460503,-0.04162085,-0.21655084,-0.11655978,-0.13961302,0.13354096,-0.7688906,0.2431643,0.012865126,-0.3960969,0.09621574,0.018070672,-0.009114066,0.38341168,-0.08394078,-0.13650346,-0.10660766,-0.24363644,-0.13657176,-0.31484875,-0.14027971,0.36806998,0.07815453,-0.03958187,-0.009204123,-0.16414389,0.0068651163,0.20643273,0.03646621,0.34161294,0.25263983,0.059123747,-0.34655255,0.17930737,0.03740882,0.4766514,-0.20334522,0.0821495,-0.25014803,-0.174971,-0.38101193,0.029632183,-0.09648883,0.3293862,0.071667105,-0.12487991,0.9132395,0.0016145065,1.1526955,0.02712991,-0.3895602,0.065968364,0.36867613,-0.09824991,-0.045331523,-0.27083367,1.090654,0.48978442,-0.12627871,-0.16771907,-0.36978754,-0.15669648,0.2055603,-0.20503047,-0.2742339,0.07859205,-0.68393517,-0.21439545,0.21757618,0.22743784,0.11310367,-0.14643973,0.049063973,0.42978242,0.06742854,0.21327035,-0.5031929,-0.038239975,0.39195457,0.32427377,0.037340414,0.06635017,-0.47398156,0.36873466,-0.7181642,0.22559126,-0.1179024,0.19957127,-0.35985392,-0.281395,0.3219846,0.17189291,0.31442624,-0.20279922,-0.41045573,-0.15156385,0.60312015,-0.0770233,0.13086484,0.6259609,-0.35317868,0.050348744,-0.105565324,0.35699508,1.0816208,-0.1734897,-0.1820263,0.31759992,-0.3581249,-0.5903243,0.32548255,-0.28927648,0.080475286,0.09224352,-0.3210365,-0.35197705,0.2811021,0.24240865,0.2525509,0.17065272,-0.70697916,-0.069482476,0.17611727,-0.36191928,-0.15053734,-0.19479983,0.095498964,0.638114,-0.25625932,-0.40366474,0.11298116,0.20517462,-0.27789566,-0.5786656,-0.14222048,-0.28325772,0.20546411,0.13186105,-0.39402983,-0.04093601,0.114953525,-0.47144347,-0.107679404,0.26357508,-0.16640654,0.20168826,-0.56655794,0.07798689,1.004516,-0.13846707,0.23216102,-0.3214783,-0.61221564,-0.7197778,-0.28240588,0.38577893,0.14089498,-0.06821175,-0.6075226,-0.104229435,-0.24370201,-0.26458842,0.04035946,-0.22963649,0.4709904,0.1725754,0.24916665,-0.05534269,-0.71297866,0.28269002,0.19665088,0.049716953,-0.5378162,0.36864325,-0.10219024,1.02689,0.16483314,-0.06756039,0.35447514,-0.71244514,0.06884758,-0.13936229,-0.02020696,-0.58844334,-0.074637584,272 +641,0.30193943,0.070681915,-0.45363492,-0.36278817,-0.30096075,0.18913668,-0.18090479,0.30117488,0.14996666,-0.15977095,0.118453965,0.047754347,-0.19703425,0.39082348,-0.15203169,-0.9110641,0.114691846,0.028660635,-0.49711168,0.34931025,-0.49813592,0.5183052,-0.01305846,0.4257655,-0.08864086,0.35111222,0.26110083,0.027128192,0.29379866,-0.32836157,-0.31043684,0.07009005,-0.5013925,0.11599808,-0.06759015,-0.29867235,0.089268245,-0.19823827,-0.17941009,-0.7181286,0.432388,-0.5827997,0.56862724,-0.067391515,-0.49105164,0.2769553,0.19784036,0.21870235,-0.33260602,0.07444603,0.1667738,-0.24233715,0.075299725,-0.12566891,-0.3744168,-0.47164267,-0.606402,-0.099402465,-0.7475266,-0.20378764,-0.27913117,0.16778024,-0.39819482,0.074897215,-0.008462525,0.3671343,-0.2920595,-0.07909191,0.17264369,-0.1495191,0.23000585,-0.4480676,-0.03921298,-0.06156884,0.16948973,0.08280864,-0.042512067,0.336011,0.24808723,0.5367038,-0.010694974,-0.30404168,-0.084196076,-0.24819241,-0.1568273,0.49016824,-0.15243897,-0.18801025,-0.21018934,-0.14846009,0.26604956,0.21474078,-0.009851052,-0.07689759,-0.008000573,0.012752693,-0.2833861,0.40606353,0.3994813,-0.43999106,-0.12997712,0.40431464,0.37526864,-0.00068119395,-0.36646432,0.2297475,-0.054885413,-0.38670352,-0.211378,-0.10743973,-0.2496917,0.48809606,-0.10954774,0.23157085,0.77829635,-0.13465269,0.064831346,-0.14903575,-0.16599578,0.13280879,-0.15412036,-0.23251727,0.07531692,-0.5018643,0.057090815,-0.37228605,0.83054703,0.11804463,-0.7367468,0.3678591,-0.3527816,0.01860014,-0.11391857,0.6097039,0.7242241,0.5010783,0.14072062,0.86400926,-0.6545854,-0.03805153,0.020856949,-0.17658125,0.045179155,0.002565918,0.1364657,-0.5450487,0.0298831,0.20287003,0.1338487,0.084644556,0.26623333,-0.36308292,-0.099306695,0.096385635,0.71726793,-0.39121917,-0.083438486,0.6584337,1.1607242,0.951464,-0.09050064,1.0055194,0.14969212,-0.15378097,-0.12614773,-0.17733742,-0.33369178,0.1317508,0.28492802,0.31787494,0.3400647,0.047064397,0.080162436,0.39703926,-0.25978816,-0.09395116,0.16580932,0.31499892,-0.049189884,-0.11456072,-0.43986067,-0.27727133,0.3899616,0.043298896,0.2943583,0.27368766,-0.2995415,0.4619796,0.12282073,1.2000684,0.15700696,0.13366663,0.04865208,0.50955224,0.230036,0.038424887,-0.11847346,0.31348976,0.25110638,-0.03962668,-0.67126304,0.032819264,-0.28566682,-0.21108405,-0.12994441,-0.43997672,-0.19518264,-0.117658906,-0.39450726,-0.1450642,0.13523611,-0.4585404,0.3122969,-2.5352685,-0.22172847,-0.17813578,0.230385,-0.15679096,-0.25029275,-0.08774269,-0.43662596,0.4359744,0.38900504,0.21764429,-0.6032783,0.5466093,0.4192907,-0.26641542,-0.078959554,-0.43845,-0.23093185,-0.09467761,0.3261492,0.16607295,-0.15709797,-0.36901098,0.65805125,0.69872963,0.26501295,-0.09515424,0.14308667,0.45193335,-0.18038893,0.64494514,0.16175106,0.5393871,-0.08820311,0.014328282,0.33156782,-0.5872929,0.19553953,-0.0955551,0.20527492,0.3561422,-0.43395835,-0.7824688,-0.56913495,-0.26073667,1.470804,-0.3731349,-0.2898656,0.34269044,-0.13565257,-0.3276013,0.035500463,0.550841,-0.18843684,0.030570824,-0.5464297,0.04073781,-0.09693727,0.25472534,-0.00024393603,0.046708934,-0.40605396,0.6641705,-0.16865756,0.5966034,0.12556699,0.1258448,-0.1486277,-0.36367908,-0.029181276,0.87081,0.5021516,0.06656659,-0.22284484,-0.13013537,-0.20286168,-0.16771755,0.07658631,0.5812753,0.8192557,-0.0055493545,0.023105515,0.27606803,-0.22946122,0.064779304,-0.08258111,-0.3876764,-0.04315079,0.007089367,0.61650264,0.6363986,-0.12328716,0.22207054,-0.0011590972,0.32426694,-0.23912455,-0.51122546,0.46319833,0.8080568,-0.14698221,-0.16801503,0.6487537,0.34633556,-0.28115362,0.3806391,-0.629722,-0.35105243,0.7654115,-0.07504416,-0.45002812,0.085099034,-0.3133394,-0.06797424,-0.8161891,0.18015902,-0.25430256,-0.65473723,-0.35454193,-0.23266433,-3.9505105,0.11151809,-0.14354768,-0.08385585,-0.20393485,-0.07532589,0.41455644,-0.51621425,-0.57259315,0.06352718,0.042829156,0.5580035,-0.010226468,0.14561103,-0.2929274,-0.37721312,-0.28215784,0.26565412,0.007209792,0.21980515,-0.008473341,-0.3248958,0.07513514,-0.34142417,-0.6218305,0.03883136,-0.39060622,-0.48257545,-0.02938473,-0.46521336,-0.18177494,0.7936433,-0.2220667,0.10920481,-0.24955137,-0.09529552,-0.19165413,0.2161702,0.20145522,0.13599804,0.036295846,-0.013824358,0.03495137,-0.41771406,0.16951045,0.13989817,0.4702562,0.09751844,-0.06126606,0.0014381271,0.5911782,0.44380504,0.10724975,0.76914525,0.00726632,-0.082577385,0.37190995,-0.34901348,-0.41311556,-0.60918146,-0.28422153,-0.11713299,-0.39188465,-0.2770659,-0.17032975,-0.39241248,-0.76008356,0.29763037,0.00062156643,0.09991613,-0.25228915,0.41572952,0.25673887,-0.071856186,0.04893495,-0.024642872,-0.20130979,-0.46454617,-0.21766177,-0.74323654,-0.4755877,0.17252673,0.9328179,-0.17603295,-0.014389799,-0.038711015,-0.22246,0.18283412,0.02076601,0.5136848,0.19376078,0.3174164,-0.030958371,-0.76130223,0.32546982,-0.2939641,0.0065243747,-0.7160467,-0.09311623,0.71422833,-0.5595798,0.48061615,0.377885,0.16058405,0.107202545,-0.6879494,-0.10558653,0.12635945,-0.22408962,0.5351479,0.101442926,-0.6740512,0.51604646,0.07261863,0.020563675,-0.50260633,0.44755694,-0.16698135,-0.4232634,-0.006410467,0.44133362,0.100479074,-0.124058716,0.08572081,0.14587873,-0.4179943,0.19928893,0.3186056,0.07895123,0.5245956,-0.03373923,-0.1329405,-0.5711097,-0.165301,-0.6397407,-0.33191493,-0.112307325,0.005471963,0.023359917,0.15386017,-0.1157475,0.33475882,-0.301671,0.26657307,-0.010346811,-0.24394812,0.5656821,0.512253,0.36507416,-0.35620907,0.6469611,0.12811533,0.15646222,-0.08487243,-0.083198234,0.5610419,0.115606114,0.33697316,-0.022871124,-0.13441609,0.20376277,0.5631753,0.24150603,0.27947325,0.15000376,-0.13740028,0.2949359,0.14288668,-0.04058844,0.10792719,-0.3665822,-0.18774417,-0.035464026,0.0010852492,0.54545623,0.118008345,0.2962228,-0.028702516,-0.16942789,0.2202356,0.12091883,-0.40847364,-1.2644832,0.2824323,0.24686843,0.6764361,0.40801144,0.15927427,-0.020665146,0.46519846,-0.24087271,0.038772263,0.38291213,0.16973282,-0.3051082,0.6619666,-0.5064031,0.4908772,0.035401862,0.0011362239,0.088318124,0.1234971,0.3482192,0.9581051,-0.14327136,0.014569833,0.1721112,-0.33641914,0.1011904,-0.42797711,-0.0044400278,-0.38888487,-0.26353246,0.37879783,0.29092288,0.2585754,-0.29852325,-0.04106255,0.029284324,-0.21367337,-0.07306031,-0.22790597,-0.10157757,-0.21099883,-0.41731665,-0.35467726,0.3930628,0.19779849,0.07678355,0.11187211,-0.19226672,0.29959893,0.12370724,-0.04799554,0.033713505,-0.57374805,0.020739555,-0.30110237,-0.49140579,0.39141566,-0.44886458,0.22098412,0.18212599,-0.038185302,-0.21208793,0.0038842421,0.29532242,0.5407951,0.074851386,-0.28893045,-0.25985685,-0.12581228,0.07694293,-0.4369,-0.04816445,-0.43216354,0.16165787,-0.5079521,0.30116084,-0.2856533,-0.13592206,-0.1395836,-0.3227592,-0.0071846372,0.21349558,-0.26905343,-0.006558543,-0.036773387,0.074274585,-0.17736119,-0.1983428,-0.3657155,0.18226497,-0.16335875,-0.14207377,0.09069984,-0.12939246,-0.13859199,0.33924797,0.11999257,0.24070646,0.2825213,-0.122985125,-0.28003186,-0.083223544,-0.08969806,0.28958967,0.055764236,-0.069523335,-0.2763073,-0.4518998,-0.18145591,0.57626253,-0.22239414,0.13163307,0.05777985,-0.2634763,0.71748555,0.19464476,1.0226415,-0.055981535,-0.27823207,0.034402754,0.6979142,0.18576217,0.112123914,-0.14798845,0.8802377,0.4349712,-0.26729617,-0.35029247,-0.38676813,-0.06825267,0.19953135,-0.33608225,-0.28089485,-0.16192338,-0.7194328,-0.21496648,0.24536732,0.19101503,0.13870002,0.019669423,-0.0062749684,0.061517082,0.19456203,0.5636102,-0.45164067,-0.017967489,0.3828888,-0.063192286,0.06614513,0.18391599,-0.38266796,0.35787535,-0.67271614,0.1147111,-0.43227783,-0.009991209,-0.03174082,-0.27584037,0.23311716,0.10660544,0.15456685,-0.25921515,-0.22989413,-0.13848393,0.44054917,0.28133604,0.32531214,0.5772712,-0.16248776,-0.049993798,0.14586058,0.53768307,1.2523268,0.057453588,0.07611914,0.12707087,-0.44833902,-0.57203466,-0.14266032,-0.3455377,0.06501568,-0.06346577,-0.4159516,-0.32914135,0.21218723,0.006081265,0.008130083,0.29711285,-0.43048513,-0.4547213,0.3044988,-0.30925056,-0.2723965,-0.23588559,0.20764428,0.6015974,-0.26775518,-0.15627295,-0.15248945,0.4296065,-0.18678178,-0.7962792,0.07954048,-0.23982957,0.4196843,0.13416891,-0.32402223,0.04556124,0.32304323,-0.44871888,0.28358924,0.430153,-0.44245687,0.02633357,-0.21539053,-0.040649455,0.83629286,-0.014067664,-0.0027958613,-0.64911497,-0.47838905,-0.8063867,-0.42654154,0.25274938,0.16032098,-0.11136301,-0.5041857,-0.15886119,-0.29431862,0.15801205,0.079014026,-0.3745791,0.2154337,0.25288746,0.4457956,-0.041792136,-0.96326196,0.022119092,0.13086532,-0.33869538,-0.5689442,0.66492075,-0.23815268,0.56606543,0.07879484,0.001290452,0.07026526,-0.47081673,0.4852678,-0.33257088,-0.16332196,-0.5144724,0.13969971,275 +642,0.52070415,-0.0655786,-0.53350294,-0.3629255,-0.28516334,0.004829384,-0.2915905,0.48549446,0.33400017,-0.2915897,-0.033658195,-0.06376381,0.08457661,0.35975912,-0.19240959,-0.7688421,0.18576291,0.027687248,-0.45281935,0.32380268,-0.533924,0.2533892,-0.07226106,0.5557346,0.124541275,0.21725042,0.16805845,0.05707741,0.016262898,-0.10289644,-0.11079005,0.20779954,-0.450803,0.059586473,-0.1408751,-0.3791834,-0.12457189,-0.6139983,-0.30479938,-0.7108605,0.4381201,-0.944457,0.518042,0.014104479,-0.43471014,-0.029846784,0.10477241,0.21906564,-0.30448788,0.017746128,0.16838518,-0.05969043,0.05271158,-0.0520681,-0.39539158,-0.53938377,-0.5373522,-0.04949818,-0.39367566,-0.11176216,-0.1731411,0.14248808,-0.27360418,0.11427668,-0.11375295,0.283548,-0.38994408,0.13944,0.3314746,-0.23336044,0.3258229,-0.39452076,-0.171479,-0.14581896,0.12300294,-0.1521486,-0.33744657,0.24074763,0.45039734,0.45534912,-0.11172022,-0.13715893,-0.1434138,-0.07435065,-0.023661284,0.54083055,-0.17296599,-0.44808608,-0.27255142,-0.08544663,0.47198117,0.3620242,0.124830484,-0.303151,-0.062772766,-0.0439449,-0.25779918,0.41458356,0.57675135,-0.22542554,0.016385445,0.23923896,0.11461711,0.2110394,-0.31114167,0.25241834,0.023414103,-0.6343314,-0.20380595,0.062007073,-0.018132769,0.64146084,-0.20007707,0.31058094,0.8146448,-0.04987899,0.090318255,0.003353889,-0.03440969,-0.21750389,-0.34687635,-0.23653457,0.19353603,-0.5359468,0.22132967,-0.20763633,0.6906093,0.22128065,-0.8389294,0.26552957,-0.49716923,0.061795056,-0.2728588,0.46465027,0.7506341,0.3057151,0.22890833,0.8666976,-0.55015653,0.0020582927,0.18689093,-0.3776531,0.11778737,-0.05900442,0.1438454,-0.49243176,0.0149521,0.3016537,0.022269057,0.2980102,0.35051024,-0.36684415,-0.13928145,-0.033294223,0.58998907,-0.37173927,-0.07173562,0.90415,1.1094193,0.9759419,0.2514907,1.4036181,0.25194532,0.06410829,0.12713057,0.10040493,-0.7559621,0.27278298,0.34855753,-0.15832523,0.31007868,0.037758388,-0.095304064,0.29114878,-0.15623012,-0.1150212,0.06248353,0.17127301,0.03103033,-0.192658,-0.45579916,-0.3691159,0.052072305,0.13973221,-0.021394338,0.22168042,-0.18628594,0.45935282,0.0803167,1.1301283,0.11896922,0.019525928,0.08688529,0.45407695,0.30330208,-0.15123743,-0.003390404,0.33400604,0.4102759,0.023848873,-0.5393436,-0.047655124,-0.23567723,-0.4340364,-0.14443508,-0.46667963,-0.19486769,-0.13976176,-0.41289192,-0.13623287,-0.046453707,-0.27244616,0.49542385,-2.6045823,-0.27072096,-0.28700837,0.37764776,-0.08038844,-0.22856101,-0.25883907,-0.35646528,0.36145777,0.48243946,0.38291675,-0.6642462,0.20008478,0.4162962,-0.39981124,-0.025298063,-0.72486234,-0.016245283,0.05832263,0.12600623,-0.031312607,-0.04134782,-0.0035862648,0.44220832,0.6746777,0.26787683,0.056488745,0.15402333,0.6074102,-0.060541015,0.44074866,-0.18127841,0.499293,-0.23069048,-0.10096991,0.16280511,-0.553943,0.3082443,0.08838688,0.2031483,0.50972486,-0.5632901,-0.89066434,-0.6607644,-0.35461363,1.2730033,-0.35324267,-0.3520512,0.32046348,-0.31926617,-0.357893,0.00034903103,0.6988631,-0.14556974,0.024810953,-0.7531987,-0.04516939,-0.14004105,0.09452196,-0.12636988,0.09250377,-0.20940205,0.6389631,-0.03929604,0.5445879,0.2750603,-0.060760442,-0.17682719,-0.5661256,0.026724437,0.6301385,0.42516702,0.17365351,-0.25570932,-0.01967145,-0.3660649,-0.1534461,0.18108211,0.5977086,0.7337833,-0.08581262,0.12698203,0.26396784,0.052909262,0.0140061425,-0.06731792,-0.25876853,-0.05070734,-0.042349238,0.6568934,0.8173749,-0.28827035,0.08906534,-0.19507772,0.30021903,-0.24810754,-0.45859057,0.4686336,0.8215122,-0.16494992,-0.20760764,0.43184245,0.48711485,-0.45638937,0.42965883,-0.47882476,-0.28318658,0.5701366,0.044367008,-0.4304443,0.17866786,-0.42908776,0.102678485,-0.8746029,0.29684895,-0.07720094,-0.6567535,-0.40204427,-0.21711022,-3.7670135,0.32254773,-0.11220991,-0.24880594,-0.35998207,-0.28252766,0.34999365,-0.47285625,-0.72848916,0.1116031,0.023985185,0.67000043,-0.13143604,0.21311869,-0.32879683,-0.13436005,-0.47650433,0.081642516,0.07575432,0.41854975,0.028575016,-0.226478,-0.09409742,-0.14395243,-0.56183624,-0.05772653,-0.6074788,-0.52549845,-0.035475694,-0.4211419,-0.1721263,0.71783984,-0.30112666,-0.030833466,-0.18008186,-0.13889788,-0.32467794,0.36238772,0.16225569,0.016635804,-0.104946285,0.17429723,-0.06708045,-0.18291743,0.29430187,0.03352531,0.2599705,0.1952443,-0.24296334,0.26740116,0.582251,0.5688435,-0.041986145,0.84169775,0.1433716,0.07686801,0.37857988,-0.22148173,-0.36421072,-0.49636263,-0.25462288,-0.15054895,-0.42401668,-0.3619538,-0.11704744,-0.35230318,-0.8054809,0.3033418,0.045688484,0.13810423,-0.12606731,0.113563724,0.3114597,-0.15846325,0.08071894,0.01738109,-0.18897992,-0.47567877,-0.27910936,-0.6170524,-0.4423189,0.18228103,1.0315483,0.01703896,-0.035126273,0.041057423,-0.3757809,0.025017908,0.053513046,0.2262349,0.0714206,0.3035411,-0.14273068,-0.69135326,0.36959934,-0.27967766,-0.21463369,-0.6741226,-0.13208306,0.82310283,-0.61398417,0.5731734,0.47445023,0.18092325,-0.022849688,-0.6573187,-0.23996077,-0.082530946,-0.21427602,0.5216982,0.26475817,-0.62087893,0.46335787,0.20869002,0.08257945,-0.52764684,0.6750527,-0.035800792,-0.030720444,0.06147889,0.31540298,0.043437406,-0.14145438,-0.0076776925,0.34748587,-0.44124264,0.25465816,0.33301866,0.17636098,0.47636122,0.15014863,0.046418622,-0.6153527,-0.15827553,-0.5411759,-0.22089785,0.040955763,-0.06704023,0.21100834,0.02253681,0.0025289059,0.28757524,-0.45994323,0.20703155,-0.17558318,-0.30489105,0.43441552,0.51159877,0.47967482,-0.43961674,0.7279393,0.098865904,0.07389788,0.055921335,0.06724205,0.39722478,0.22193164,0.407857,-0.06419944,-0.18922496,-0.06717538,0.7125402,0.13323382,0.31564507,0.27549368,-0.0771277,0.30595472,0.26476848,0.24475336,0.02048531,-0.34993613,-0.095205575,-0.31086105,0.21840522,0.4541368,0.13391879,0.21131001,-0.03745347,-0.30387354,0.0804719,0.11624265,-0.070126764,-1.477752,0.419491,0.32772538,0.58505285,0.42703635,-0.06190697,-0.10008895,0.4804807,-0.09265811,0.12762177,0.4425321,0.20125414,-0.49608934,0.51754546,-0.44295403,0.4093467,-0.17210084,0.008385392,0.04943084,0.22026491,0.46664846,0.80901533,-0.01495376,0.062924065,0.12671468,-0.49035153,0.14504395,-0.5976485,-0.14301051,-0.45225498,-0.25445905,0.7156662,0.4624494,0.26287997,-0.32099152,0.0028240085,0.06441911,-0.09392312,-0.0709194,-0.069640115,-0.07239577,-0.18554547,-0.7921986,-0.28301385,0.54564327,0.0810371,0.041748002,0.036163215,-0.4019333,0.23769388,-0.09080967,0.114953026,-0.08842479,-0.7575753,-0.18709454,-0.46632844,-0.5835154,0.37655446,-0.4047867,0.23502082,0.290327,-0.0039951284,-0.1513558,0.1697986,0.053157944,0.8668225,-0.121270455,-0.27169263,-0.3480562,-0.070427254,0.4187062,-0.36761364,-0.22639774,-0.40299994,0.13615492,-0.411981,0.421807,-0.12258467,-0.18815543,0.1402188,-0.07504703,0.1279442,0.29471233,-0.419838,-0.14333938,0.13193703,-0.019071983,-0.2602684,-0.04386787,-0.36169192,0.31557643,0.16829793,-0.1145769,0.0079069,-0.048034254,-0.0032826113,0.23647195,0.047447227,0.34425977,0.42867282,0.09705083,-0.1901258,-0.017798148,-0.06712636,0.55951744,0.13178164,-0.15906286,-0.333005,-0.44207904,-0.22327684,0.347076,-0.12579928,0.21282199,0.1412176,-0.22263974,0.67237663,0.086199924,0.95031637,0.026363032,-0.4587954,0.033890724,0.39082286,0.035899326,-0.042901166,-0.18003082,0.8157214,0.4721101,-0.3185169,-0.18431924,-0.3340855,-0.010783257,0.16117981,-0.24910952,-0.25985977,-0.08619071,-0.8011743,-0.08792515,0.124421544,0.13891198,0.18973152,-0.08894908,0.10343843,0.11612462,0.048312314,0.38707623,-0.56485695,-0.05816279,0.12920438,0.2714686,0.15631205,0.047191355,-0.3429709,0.33480608,-0.702204,0.05359237,-0.5239128,0.15828635,-0.07968329,-0.349998,0.07599049,0.03978865,0.385406,-0.29182658,-0.21809545,-0.28271887,0.58247113,0.25064695,0.2978807,0.5160316,-0.13269068,-0.1980696,0.120111145,0.58221424,1.3364828,0.024707876,0.19076723,0.31326184,-0.42169425,-0.6279917,0.10720838,-0.5133956,0.28775424,0.072737165,-0.15091498,-0.43474352,0.23165125,0.1423004,0.14997014,0.15528764,-0.46913,-0.36283916,0.49945885,-0.2179166,-0.37885025,-0.43896464,0.17361487,0.52411723,-0.30834323,-0.2183864,0.06330102,0.19656856,-0.15276517,-0.57617193,0.18076184,-0.32347396,0.4225359,-0.020665947,-0.31883547,0.014192109,-0.039959185,-0.38753584,0.31342676,0.2195377,-0.31867245,0.12677428,-0.38517645,-0.24176484,0.9978268,-0.15399057,0.0743686,-0.8460999,-0.49266788,-0.80347854,-0.32785445,0.11872636,0.25529224,0.012375405,-0.46337363,-0.096494675,0.026869927,0.13279673,0.08524053,-0.3084849,0.52164924,0.07236807,0.60619736,0.0052044024,-0.9148639,0.07135351,-0.012836965,-0.35057515,-0.51282036,0.5452126,-0.06012667,0.70642304,0.1744315,0.024374459,0.108839154,-0.5220873,0.25986654,-0.30471,-0.11301964,-0.64480597,0.25844243,279 +643,0.38585696,-0.22826797,-0.3118259,-0.028173767,-0.36128557,-0.06341594,-0.22462751,0.37177643,0.053329192,-0.25322318,0.113442235,-0.23243767,-0.0747551,0.46217245,-0.055850826,-0.58142555,-0.0556983,0.21418765,-0.7720632,0.47095028,-0.47743994,0.31943735,-0.044569906,0.2337326,0.11522865,0.20669614,0.15195277,-0.06658156,0.08051782,-0.021297207,-0.16378628,0.08759861,-0.7238414,0.03293892,-0.07538373,-0.47269756,-0.0001305892,-0.40591204,-0.46051452,-0.6635672,0.42227536,-0.6385028,0.5440425,-0.016064541,-0.23915097,0.3838369,-0.014838344,0.41477197,-0.16254187,-0.060591143,0.31201226,0.08937312,0.09891576,-0.031067299,-0.06963369,-0.16117916,-0.5616241,0.20120867,-0.6550518,-0.3072772,-0.22755705,0.08620911,-0.2862003,0.08344467,-0.15996419,0.23177862,-0.4392076,-0.0003440655,0.2066204,0.047910087,0.39149398,-0.5368671,0.06110427,-0.0005637224,0.29049727,-0.32474282,-0.08344884,0.36747366,0.17415749,0.5349014,-0.12757236,-0.2337847,-0.22999078,0.05819691,-0.035377637,0.5790507,-0.21535493,-0.17879637,-0.21630232,0.06891166,0.072769456,0.047925882,0.013281242,-0.44289398,-0.15796882,0.011740474,-0.17481364,0.34852225,0.47567955,-0.33085153,-0.41219428,0.44145903,0.6142543,0.25640884,-0.016881568,0.07692206,0.095250055,-0.5999793,-0.1909993,0.06870634,-0.10692864,0.30779508,-0.09288403,0.27676222,0.5287254,-0.15000953,-0.00014780118,0.023539312,-0.09710283,0.08844945,-0.009228092,-0.13862415,0.122028835,-0.52586067,0.10863734,0.0063155983,0.69336754,0.26312354,-1.0324047,0.482663,-0.53464574,0.23886794,-0.21814886,0.5027022,0.85115784,0.29208195,0.10596656,0.66108704,-0.4003204,0.1672634,-0.017906679,-0.33975917,0.10304761,-0.2662551,-0.087527186,-0.636747,-0.24176253,-0.15784399,-0.09664365,0.11327824,0.35756794,-0.61447626,-0.005023663,0.058565255,0.85176057,-0.32116002,0.07201638,0.51521474,0.98029524,1.0519128,0.040070277,1.0615811,0.26499084,-0.26612785,0.43020284,-0.49504006,-0.7660283,0.1646482,0.3784278,0.18008439,0.35756442,0.063966155,-0.17575312,0.4127747,-0.21318339,0.14192517,-0.25406408,0.2232592,0.023463763,-0.0745122,-0.3364689,-0.2614149,-0.06842144,0.068476915,-0.19492912,0.26192573,-0.216503,0.16848649,-0.14832078,1.7551539,0.058807313,0.08901928,-0.0512659,0.50796026,0.16201332,-0.19618379,-0.3332078,0.12217785,0.36137456,0.18133554,-0.5461387,0.19314322,-0.21509251,-0.26280028,-0.21667616,-0.3147793,-0.009407144,0.022599759,-0.32723382,-0.124309935,0.07259009,-0.22771376,0.47563988,-2.7092996,-0.27337974,-0.036840964,0.28333658,-0.32073924,-0.27811965,-0.16395529,-0.48802802,0.39658806,0.43765905,0.5738473,-0.5172056,0.4205747,0.30336234,-0.4709272,-0.026895102,-0.54182607,-0.2574784,0.15639485,0.3121609,0.012172859,-0.08198082,0.1019494,0.31953257,0.31437236,-0.019473631,-0.13200404,0.27580982,0.3924568,0.215213,0.4225829,-0.18457787,0.41437656,-0.18110792,-0.15861845,0.37206113,-0.05605016,0.09797314,-0.13684556,0.026203077,0.37824932,-0.554183,-1.1066761,-0.62227523,-0.17110196,1.1228496,-0.085169144,-0.41157582,0.3623734,-0.20998643,-0.019750841,-0.114903346,0.21914893,0.003728087,-0.19710754,-0.74417603,0.18183804,-0.0003869992,0.27400473,0.11266388,-0.12009184,-0.4399025,0.5440095,-0.050673053,0.27643636,0.33667472,0.22120523,-0.053994242,-0.40767053,-0.0019238546,0.83366483,0.28768322,0.107301205,-0.25569585,-0.15782693,-0.35151953,-0.13720319,0.028869757,0.18998197,0.7646183,-0.0229565,0.11692445,0.25460657,0.024444746,0.03903342,-0.1457146,-0.38920718,-0.033482857,-0.13121557,0.57631916,0.45463058,-0.06836903,0.62828094,-0.022667289,-0.07089126,-0.037504423,-0.46080494,0.36015198,1.0308225,-0.095654234,-0.15053143,0.41906154,0.30323836,-0.25002593,0.46191108,-0.50357604,-0.20795393,0.4159319,-0.2641146,-0.35676634,0.21786682,-0.2863719,0.022345837,-0.7480104,0.35926837,-0.256918,-0.41635063,-0.41643965,-0.06521039,-3.3132145,0.32101753,-0.28557765,-0.12618777,0.046006925,0.027197931,0.053130455,-0.48669222,-0.43261644,0.13245577,0.030968208,0.71078897,-0.13796574,0.22076324,-0.13596264,-0.15387252,-0.5816707,0.06989597,0.12066985,0.37632772,0.04347592,-0.41016307,-0.035373643,-0.2739712,-0.43289095,0.05500467,-0.5366204,-0.4558819,-0.18217601,-0.54899573,-0.28215298,0.65322673,-0.063643344,-0.036545064,-0.3380537,-0.11279417,-0.04397194,0.39495194,0.06593116,0.15297712,0.108311705,-0.10341994,-0.20612127,-0.30644912,0.17357372,0.14990409,0.25746238,0.30298233,-0.024057636,0.18841259,0.72494423,0.6516092,-0.03110086,0.7488741,0.6283251,-0.2897131,0.24054003,-0.4219867,-0.03968419,-0.44421598,-0.32096216,-0.014955505,-0.33273312,-0.5247651,0.048426434,-0.3587425,-0.5589003,0.4123122,-0.24414675,0.20106679,0.14585368,0.17678039,0.386997,-0.17473032,0.059911866,-0.26089802,-0.041366894,-0.504021,-0.19582139,-0.64377797,-0.6196541,0.123155676,1.0708916,-0.27436325,-0.03343803,-0.0023098404,-0.17176083,0.019999009,-0.18927087,-0.039659288,0.48217303,0.05778877,-0.084468655,-0.84466565,0.41372606,-0.05747594,0.070933394,-0.6111567,0.11893476,0.5222231,-0.56207013,0.40061662,0.16009416,0.14381093,0.1579254,-0.4221103,-0.22002414,0.11400933,-0.27029032,0.35353664,-0.058539968,-0.73834795,0.53795606,0.4098185,-0.3814205,-0.7902063,0.44605148,0.13689524,-0.37779596,0.027323525,0.20078363,0.13047005,0.046881992,-0.23432504,0.20656028,-0.47323292,0.38661635,0.24191254,-0.0020760251,0.2487264,-0.12941232,-0.21209964,-0.44135284,0.13063493,-0.34684926,-0.19335444,0.1510161,0.16598687,0.066035345,0.17778006,0.23448262,0.5134559,-0.17792842,-0.023732327,-0.034984075,-0.27368662,0.24776171,0.3661661,0.44942024,-0.52858037,0.39287668,-0.08173181,-0.22699663,0.05396668,-0.02061433,0.41807762,0.0155507345,0.18544634,0.025992375,-0.21829888,0.18254271,0.82421345,0.061214678,0.3294017,-0.11299564,-0.19079638,0.24656034,0.16150907,0.17258194,0.13195273,-0.41303867,0.13852245,0.069542974,0.25390774,0.55867094,0.091492414,0.058185633,-0.16774672,-0.43139744,-0.07161217,0.11992944,-0.08248111,-1.0762902,0.29582813,0.18926011,0.7187191,0.5399166,0.072442845,0.11481195,0.6074966,-0.14415401,0.14063805,0.2818065,-0.23340549,-0.51652485,0.4103033,-0.80427814,0.45554936,0.00557148,-0.059303764,0.19795102,0.09730869,0.43542054,0.6336868,-0.2269027,0.061022997,-0.059578504,-0.36473292,0.10448758,-0.36757568,0.14213619,-0.48814788,-0.26921052,0.56371075,0.4265386,0.0018518636,-0.09105854,0.016386902,0.087876625,-0.12873934,0.20428218,-0.026590105,-0.026926903,-0.00236094,-0.6891434,-0.05748788,0.51825535,-0.040227547,0.060330693,-0.15773703,-0.08484332,0.21961817,-0.3451174,-0.07619403,-0.046945572,-0.7484216,0.10642259,-0.24206796,-0.1178433,0.40240467,0.090877295,0.2356326,0.24967256,0.07106553,-0.38852963,0.5472979,-0.057861824,0.61680263,-0.12307942,-0.07299944,-0.37924004,0.11224422,0.21509662,-0.12694168,-0.009361029,-0.07841914,-0.07546654,-0.45844942,0.51465935,0.041444607,-0.2996701,0.22987534,0.036758646,0.12364351,0.54881036,-0.16955763,-0.08504529,-0.25555217,-0.18550918,-0.283474,-0.08578674,-0.045446552,0.030943645,0.36041233,-0.20686539,-0.09614631,-0.18075283,-0.13917543,0.7312647,0.016923595,0.468876,0.1911597,0.24332125,-0.39005846,-0.09400452,0.20430698,0.4054887,-0.12302829,0.053053934,-0.31453174,-0.2302807,-0.3006863,0.15770207,-0.117779806,0.23500241,0.0075456477,-0.3092759,0.59118396,0.05917041,1.2184913,0.029727807,-0.09250657,0.14971565,0.40458503,0.03353287,-0.061072662,-0.57892036,0.70474064,0.6626462,0.07088883,-0.118972294,-0.32776773,-0.28810984,0.16001275,-0.2102932,-0.09305541,0.044171922,-0.4534859,-0.3626711,0.24810195,0.19952084,0.05080194,-0.053459898,-0.00774964,0.2446309,0.03917716,-0.026044901,-0.4436873,-0.24921252,0.30812597,0.31806183,0.055447817,0.08807458,-0.5337459,0.30817306,-0.45160607,0.18583933,-0.12291881,0.1141282,-0.1021676,-0.18268625,0.15887429,0.26940653,0.34365308,-0.015046761,-0.45949432,-0.20850655,0.49986377,0.1275668,0.20045565,0.62106365,-0.24582323,0.06251355,-0.07089352,0.35012877,0.92948955,-0.27944046,-0.123533994,0.3683148,0.012060793,-0.56818855,0.386734,-0.15791391,0.049448133,-0.0052115778,-0.11851183,-0.53226954,0.25745958,0.13898028,0.045854192,-0.025016535,-0.52652013,-0.21318044,0.23337461,-0.24148735,-0.28859347,-0.5349714,0.16887243,0.6970284,-0.35457537,-0.11489635,0.26584083,0.30763647,-0.21379226,-0.4610661,0.00093893363,-0.3410384,0.16719213,0.09364842,-0.30065295,-0.16309184,0.2315672,-0.33397844,0.1751036,0.21535228,-0.3670987,0.046858825,-0.06702693,-0.02785799,1.0540801,-0.4060299,-0.049488008,-0.54417664,-0.58856356,-0.85271984,-0.3135957,0.55018437,0.28751945,-0.01108806,-0.57367355,-0.1109033,0.010939741,-0.23168564,0.08343828,-0.35750368,0.33914438,-0.07508458,0.33296835,-0.26275316,-0.696756,0.13188836,0.13260631,-0.3118592,-0.522019,0.54037774,0.065791614,0.79123527,-0.043067355,0.055584233,0.2241556,-0.23288804,-0.030876756,-0.3447697,-0.25684935,-0.68849933,0.013150591,280 +644,0.41679922,-0.10556196,-0.40549347,-0.33600396,-0.24952592,0.10923029,-0.23173568,0.31091645,0.2164488,-0.30431095,-0.091544874,0.081840195,0.098155424,0.25327766,-0.35439822,-0.74735534,0.107077725,-0.0041444483,-0.5206306,0.5304234,-0.58733296,0.31704184,0.118470676,0.45076182,0.062067527,0.2495411,0.22263148,0.06389332,-0.24005276,-0.28441164,-0.105774745,0.06380252,-0.6535398,0.20448242,-0.31753665,-0.29994255,0.01823232,-0.5210822,-0.36888748,-0.7209853,0.35507792,-0.84247214,0.53623706,-0.047821898,-0.49253595,-0.12451163,0.2321385,0.15635589,-0.23526412,0.00094577443,0.11028235,-0.2117316,0.03639456,-0.19055429,-0.20628038,-0.5936153,-0.51948285,-0.030041877,-0.674542,-0.029653035,-0.2401151,0.2595691,-0.2822556,-0.047508277,-0.061876934,0.32232362,-0.41073868,0.038677294,0.13058208,-0.29806247,0.22421195,-0.43777162,-0.22013062,-0.062192526,0.23524478,0.07962458,-0.30848324,0.42394182,0.3140682,0.5030226,-0.016548593,-0.26111138,-0.027434042,-0.063043356,-0.028562518,0.52798563,-0.079868995,-0.58457536,-0.32449597,-0.19562949,0.5566977,0.20594451,0.12557855,-0.24002682,0.03764132,0.014142628,-0.29129133,0.549248,0.6788022,-0.15772706,0.06382491,0.27339086,0.23657614,0.15875028,-0.28928488,0.18815301,-0.017684413,-0.51553565,-0.19237518,0.065754816,-0.019671198,0.8239752,-0.22023922,0.32165405,0.8010711,-0.1418531,0.0057653463,0.19052744,-0.08731323,-0.13767084,-0.034431413,-0.2033063,0.17548952,-0.5718159,-0.15326624,-0.40641075,0.6423343,0.13396317,-0.7168925,0.33369544,-0.48092005,0.047898557,-0.09308175,0.5735975,0.63944024,0.580495,0.34971634,0.786788,-0.44174388,-0.06533839,0.19429518,-0.28028858,0.26672885,-0.16523647,0.11071776,-0.38040262,-0.079821706,0.2003896,-0.0069695446,-0.007310693,0.49279854,-0.42121255,-0.082200184,-0.07740348,0.63256156,-0.35029027,0.0158945,1.0211875,1.2776252,0.9269823,0.13199972,1.2929995,0.1134165,0.016036304,-0.08989636,0.05043045,-0.61697876,0.20505792,0.39579612,0.019286413,0.41619104,0.13318709,0.027927719,0.30589196,-0.37284753,-0.09209785,0.09975844,0.3142772,-0.062992744,-0.12126916,-0.46245348,-0.19692081,0.19471143,0.23377442,0.17301562,0.34670174,-0.2690473,0.4845274,0.116895914,1.1171312,0.08467768,0.024464458,-0.034944,0.5565858,0.23042497,-0.04206104,-0.028054897,0.45958817,0.23762318,0.10932389,-0.57778174,-0.13510042,-0.31338832,-0.49831727,-0.14815599,-0.5016199,-0.15291461,-0.41914532,-0.46266535,-0.124016516,0.012243048,-0.2740598,0.272037,-2.488415,-0.40724385,-0.15124692,0.41751388,-0.122872226,-0.27074337,-0.14127384,-0.4151937,0.49997142,0.43798718,0.36161155,-0.7575584,0.45127818,0.5118231,-0.3048006,-0.1831975,-0.63710314,0.0030284845,-0.0452917,0.33439177,0.04016947,-0.18837054,-0.11284293,0.32686657,0.61037445,0.25066078,0.18936488,0.09006361,0.6011226,-0.26257735,0.51730084,-0.013318305,0.4167978,-0.18191601,-0.074607864,0.19972011,-0.5674889,0.41689676,-0.05968625,0.23611468,0.4747362,-0.6093656,-0.90719444,-0.66575706,-0.27291873,1.2662861,-0.36561707,-0.48258412,0.25715476,-0.1537068,-0.44776413,0.013759512,0.6552175,-0.24193738,0.14635354,-0.7267415,-0.079174004,-0.24098255,0.2488619,-0.17342871,0.27137655,-0.40437096,0.6626053,-0.100964345,0.562312,0.18295462,0.08366825,-0.34202436,-0.5310044,0.19190294,0.84908265,0.6531403,0.055153575,-0.2209776,-0.058280505,-0.30070588,-0.0762023,-0.0007437651,0.668554,0.7533921,-0.08003586,0.07226459,0.3696016,-0.13081421,-0.06332158,-0.1748111,-0.34708196,-0.07016683,0.043859582,0.798746,0.82733184,-0.2397967,0.16321088,-0.0760454,0.41150576,-0.31674284,-0.5069409,0.5587488,0.61035883,-0.12962747,-0.05978122,0.5978759,0.4194752,-0.46452257,0.54224974,-0.5511985,-0.49128786,0.5600342,0.041502826,-0.4756381,0.26610085,-0.28619987,0.10649958,-0.9349649,0.53797317,-0.04447953,-0.61789024,-0.4822709,-0.217987,-3.2924676,0.023550816,-0.07906833,-0.22321653,-0.3743663,-0.23871256,0.2600568,-0.6452229,-0.701242,0.043262105,0.03195542,0.6525346,-0.109983645,0.2067185,-0.29151806,-0.30842227,-0.20701383,0.2261335,0.04016647,0.22893688,-0.12382806,-0.28951466,-0.04586146,-0.321216,-0.5907574,0.040018138,-0.4722301,-0.6368728,0.017811198,-0.51430714,-0.11966236,0.686814,-0.2338895,-0.04065095,-0.3142768,-0.10983766,-0.15070993,0.3042366,0.12336194,0.11665087,-0.026462408,0.037970368,0.07732194,-0.34125906,0.22575697,0.13800159,0.43174267,0.4610736,-0.27130446,0.20496584,0.6098398,0.6191889,-0.0617078,0.9056599,-0.023838501,-0.07565803,0.3191293,-0.24548069,-0.5645287,-0.59094274,-0.32615694,0.033417463,-0.35214964,-0.19389655,-0.16134551,-0.34069902,-0.81340855,0.387485,0.19600107,0.097242996,-0.25747216,0.27543658,0.31219688,-0.18285953,-0.05412399,0.07055713,-0.22581816,-0.55908245,-0.22152941,-0.7657844,-0.53904694,0.086454645,0.8019958,0.055024624,-0.13994758,0.18041867,-0.33394623,0.17893527,-0.07243119,0.186797,0.109531865,0.23412234,-0.114238925,-0.77202195,0.45180318,-0.2878838,-0.054741565,-0.5543713,-0.16136912,0.86909145,-0.6629857,0.30248576,0.60379076,0.24720098,-0.012574031,-0.5513583,-0.11927735,0.0005850975,-0.06301364,0.57981956,0.2054658,-0.7859481,0.50550056,0.0151484655,-0.025627438,-0.44888481,0.5783046,-0.11880796,-0.17377171,0.0868852,0.41259748,0.00050946383,-0.031796437,-0.2845613,0.32625502,-0.5132319,0.25163168,0.41666052,0.13633022,0.67788595,-0.012282411,-0.2578998,-0.693076,-0.17763291,-0.6034421,-0.2357637,0.07203087,0.010288651,0.080381125,0.04418912,0.09621068,0.24894312,-0.4610179,0.23200668,-0.051605266,-0.18078184,0.5040896,0.63537496,0.5938299,-0.4607778,0.78361166,0.28065118,0.10496453,-0.09530174,-0.047239468,0.4185149,0.27577993,0.32635805,0.02631843,0.020500243,0.23545423,0.6693739,0.208395,0.3903579,0.45592275,-0.24540065,0.3077535,0.121773496,0.36228272,0.017327223,-0.34571382,0.088980876,-0.08274229,0.0041510086,0.45349666,0.1394533,0.16435876,0.08284533,-0.27564985,0.078974776,0.26499227,-0.32928035,-1.6724327,0.45054403,0.42081305,0.7165944,0.49062377,-0.025084678,-0.092590645,0.54557234,-0.19201502,-0.048617914,0.3045244,0.20731474,-0.3517952,0.6322466,-0.490326,0.47190407,-0.19836083,0.038870454,0.07052122,-0.06893956,0.40503377,0.9364351,0.02411273,0.16045788,-0.07764366,-0.17052552,0.10576655,-0.53011036,-0.040835064,-0.30432206,-0.27008504,0.5741502,0.27371407,0.30331978,-0.25831836,0.009668011,-0.0059035053,-0.12427668,0.11931968,-0.10488666,-0.11116295,-0.24353679,-0.75253105,-0.28927204,0.5491024,-0.17714468,0.13639227,0.14228433,-0.22957277,0.15524575,-0.04596923,-0.046675436,-0.015353174,-0.72486824,-0.12325696,-0.38266027,-0.55056036,0.33056238,-0.40042385,0.24632399,0.20800146,-0.019910542,-0.14187166,0.017911475,0.14199802,0.7119347,0.09893953,-0.28173226,-0.18096887,-0.038197987,0.3508225,-0.47185522,-0.12358551,-0.3989534,0.15917356,-0.40792164,0.3769547,-0.17852713,-0.2866471,-0.1171439,-0.10819982,0.032882765,0.2693743,-0.32091495,-0.2008788,0.15274061,0.011996737,-0.2175264,-0.0029538847,-0.314936,0.32370678,0.19295089,-0.06154436,0.15713336,0.06970547,0.027819706,0.34944242,0.15670094,0.32391375,0.46922362,-0.12662277,-0.3414685,0.00016908463,-0.07511048,0.62734807,0.110820696,-0.009509353,-0.3009714,-0.44920585,-0.3585521,0.3917949,-0.20217098,0.12274608,0.23667742,-0.19829758,0.7663136,0.18580753,1.1937168,0.11440826,-0.47974318,0.15038726,0.6028924,0.007868969,0.012515389,-0.3376635,1.1293304,0.37623733,-0.44244084,-0.12387726,-0.6147425,-0.17684151,0.18800065,-0.21359316,-0.4262231,-0.20214452,-0.8482806,-0.15798165,0.13461915,0.22358465,0.035701733,-0.09749815,0.054444548,0.2868314,0.09901103,0.32729068,-0.77713203,-0.09063273,0.43910617,-0.012080864,-0.027765442,0.009821837,-0.41354784,0.36896732,-0.5322558,0.027841436,-0.5029968,0.17371526,-0.03540724,-0.55473286,0.17021745,0.04957211,0.40904853,-0.38967997,-0.42909348,-0.2615705,0.5802047,0.2257893,0.23577048,0.5142158,-0.19484782,-0.1784742,0.075951174,0.5093111,1.3628736,-0.049364302,0.2519439,0.2470665,-0.47650993,-0.65627056,0.006557529,-0.4674541,0.13679716,-0.044773944,-0.47185817,-0.45541456,0.30087966,0.063972205,0.072962835,0.14038828,-0.574577,-0.2651901,0.4351012,-0.25132054,-0.32818013,-0.35289353,0.013405185,0.64918876,-0.37355593,-0.35877687,-0.054379683,0.3478275,-0.2062129,-0.64007825,-0.07384233,-0.22106358,0.42093346,-0.063822426,-0.35479382,0.012787191,0.075635105,-0.42640877,0.343353,0.354489,-0.27651736,0.07182148,-0.26511925,-0.14300053,1.0447768,-0.01630242,0.063692704,-0.5646286,-0.5502599,-0.7821325,-0.35631725,-0.045514822,0.17128386,-0.014800365,-0.56536186,-0.06007814,-0.04985136,0.05707741,0.074378185,-0.4763675,0.45627493,0.17159115,0.5953269,-0.02452601,-0.9653549,0.13962287,0.16605617,-0.28883335,-0.5562523,0.6487434,-0.12317793,0.50781727,0.14525035,0.1367128,0.01804461,-0.717583,0.29484022,-0.27998155,-0.10395953,-0.61918414,0.30364677,288 +645,0.4466862,-0.33019894,-0.60028875,-0.1791417,-0.18302454,-0.17135777,-0.11749077,0.53893334,0.3342016,-0.4877644,-0.184188,-0.2193125,0.03249379,0.27360585,-0.052382175,-0.6290192,0.046078876,0.20607863,-0.2851344,0.57390624,-0.41289604,0.048923947,-0.119169705,0.3542793,0.28248355,0.29617873,0.18096425,-0.05900338,0.0393429,0.06195867,-0.24550363,0.50580525,-0.26749566,0.10450828,-0.12120605,-0.34436753,-0.045385424,-0.4778703,-0.46629885,-0.71707684,0.27197495,-0.89434856,0.5196085,0.25039533,-0.3194655,0.15748405,0.07759399,0.19358745,-0.36476767,-0.05310691,0.052213855,-0.098693624,0.019734355,-0.30773014,-0.31843635,-0.4165084,-0.49007756,-0.13875778,-0.4093161,-0.16647547,-0.3052785,-0.0045019365,-0.39012522,-0.089926496,-0.116903774,0.5342254,-0.45699978,-0.02640794,0.4152555,-0.18543682,0.39480397,-0.58371663,-0.21204534,-0.13529688,0.2821151,-0.056220733,-0.36562237,0.1985444,0.42430422,0.53024304,-0.018836495,-0.16814055,-0.36485583,-0.029041748,0.0781734,0.47851804,-0.22706956,-0.6166188,-0.09918526,0.05971634,0.05216778,0.5098703,0.16537362,-0.31881827,-0.07676099,0.16968432,-0.10208864,0.39930993,0.5080103,-0.35252082,-0.2204849,0.23957556,0.52490926,0.16292642,-0.063995086,0.10065953,0.069040194,-0.58264107,-0.28273553,-0.10316087,-0.17924482,0.63632715,-0.19842938,0.22589475,0.7206905,-0.018995551,-0.066015,0.12282574,0.01944131,-0.27242202,-0.39113924,-0.24275324,0.36194164,-0.40172094,0.32103285,0.019869713,0.54119426,0.13128844,-0.5731299,0.41107506,-0.5756596,0.21945761,-0.17006506,0.5288034,0.64873344,0.45536894,0.49588087,0.75600564,-0.47532484,0.09109373,-0.04672012,-0.41067123,0.14210254,-0.18334803,0.034489453,-0.6126426,0.07982775,-0.054660317,-0.039975174,0.16619395,0.5626576,-0.5764941,-0.19011639,0.33524036,0.9690076,-0.27372393,-0.069451496,0.6174165,0.9364602,0.9207083,-0.058341164,1.0193288,0.18147534,-0.21775898,0.33515948,-0.0983572,-0.80105823,0.31118584,0.40150654,-0.024188958,0.3293603,0.09903783,-0.026783235,0.53834623,-0.31841767,0.058183488,-0.24143904,-0.04909151,0.101540335,-0.22978471,-0.6075107,-0.09507605,-0.2334861,0.044791423,0.020232888,0.22701357,-0.08641493,0.44814286,-0.11599995,2.0274906,-0.05922713,0.0688789,0.19516547,0.42732474,0.32655475,-0.18349019,0.054796807,0.51479244,0.3275897,0.33865267,-0.60706407,0.16458684,-0.16443266,-0.49396074,-0.114447266,-0.4215008,-0.05082844,-0.060935095,-0.568064,-0.13781498,-0.2426421,-0.286475,0.32790822,-2.7546103,-0.21004501,-0.090843566,0.35509446,-0.2758399,-0.3269815,-0.13314106,-0.34334883,0.37523544,0.34896865,0.53445745,-0.73151696,0.41409165,0.50009906,-0.58845204,-0.032576744,-0.5996839,-0.03168152,-0.12573245,0.3740161,0.06920015,-0.07811893,0.11642417,0.20511283,0.5997671,0.075629964,0.18153588,0.27348235,0.5532155,-0.103673935,0.55144596,-0.10103389,0.5036264,-0.3558749,-0.23967141,0.30445737,-0.17179929,0.25510347,-0.046037234,0.07223034,0.49281794,-0.49752,-0.9832887,-0.6725736,0.002781822,0.9518646,-0.27758348,-0.45660907,0.33222404,-0.7954979,-0.3483135,-0.16670173,0.48819253,-0.02350278,0.015643211,-0.8493216,0.1326548,-0.010688094,-0.013149181,0.12314635,-0.26020622,-0.47305056,0.7691039,0.06742646,0.6715289,0.46661213,0.060728893,-0.18928741,-0.402828,-0.02419426,0.6805996,0.2713438,0.20585023,-0.23493487,-0.106977545,-0.23749505,0.12924708,0.10288363,0.63054776,0.6141597,-0.1168974,0.116926834,0.33447745,0.13878216,0.033179477,-0.20563188,-0.27870184,-0.10155581,0.06710784,0.48433816,0.7722304,-0.39225256,0.3151628,0.052878816,0.44787347,-0.19125997,-0.39140505,0.44640762,1.3449895,-0.14318784,-0.32745817,0.59377164,0.67825836,-0.3758127,0.44350603,-0.63202196,-0.07221976,0.36916283,-0.14844273,-0.46047214,0.18391432,-0.329476,0.17874679,-0.87695575,0.106050655,-0.18422739,-0.4873796,-0.54609495,-0.15989791,-3.670752,0.35610005,-0.47338417,-0.1715076,-0.11123168,-0.053502798,0.2425172,-0.8249896,-0.6028534,0.23557593,0.08678392,0.6372403,-0.10273683,0.09138993,-0.32318088,-0.3329508,-0.14629048,0.08977067,-0.0699871,0.34636277,0.0011575704,-0.5837779,-0.17477496,0.04676167,-0.4293366,0.046615515,-0.67565346,-0.41902086,-0.16603822,-0.5898785,-0.28934175,0.6115376,-0.099813476,-0.012782903,-0.24058954,0.087550886,-0.20773485,0.17528701,0.05706998,0.2170309,-0.06351804,-0.05751011,0.0974765,-0.19041671,0.1619946,-0.118957706,0.34884322,0.11420877,-0.14745116,0.15210357,0.5670663,0.6698047,-0.12284879,0.9110741,0.6876714,-0.089319855,0.25618207,-0.22766607,-0.29984763,-0.7032703,-0.45250505,0.029312309,-0.43634966,-0.5573033,0.0059910463,-0.48698857,-0.7969002,0.5993055,0.08902684,0.46823904,0.15206239,0.14276837,0.8073958,-0.35174942,-0.025259487,0.11200522,-0.2178352,-0.7047877,-0.12401521,-0.59163797,-0.4539405,0.27125308,0.8459395,-0.39716038,0.08818383,0.19296104,-0.3059146,-0.09729429,0.27022123,0.03374842,0.3530032,0.5385119,-0.20917676,-0.6209746,0.46044156,-0.13880095,-0.27626488,-0.570221,0.21221855,0.5569835,-0.6973076,0.86411035,0.33895344,0.02234144,-0.31248057,-0.617419,-0.32263178,-0.03197681,-0.14867224,0.52622306,0.39583018,-0.7612771,0.3043554,0.4870278,-0.22436072,-0.59877354,0.69358605,-0.21158305,-0.44373623,-0.055066563,0.29228643,0.06792252,0.032773938,-0.08034165,0.21858606,-0.3324381,0.22507375,0.29056448,-0.08354061,0.15887019,-0.15916872,0.0864249,-0.9217899,-0.090830095,-0.5701299,-0.24738382,0.48606822,0.062207684,0.14435554,0.0031410365,-0.08232935,0.34246257,-0.28124592,0.17186238,-0.048318386,-0.31586328,0.4894838,0.429717,0.41583538,-0.46980947,0.6233887,-0.028556285,-0.14947326,-0.031886406,0.20045647,0.31846735,0.124712415,0.6255132,-0.09450846,-0.3096058,0.29082045,0.9251508,0.1627654,0.47749618,0.16162124,0.0552455,0.19891691,0.14350377,0.17830667,-0.17188014,-0.66132516,0.088470496,-0.30209282,0.20259558,0.4916046,0.13405196,0.23337705,-0.12280385,-0.3662798,0.048080675,0.33032468,0.22759582,-1.2574946,0.3447532,0.26282254,0.8505213,0.40816957,0.084775135,-0.23069239,0.6211328,-0.07777733,0.115986936,0.44666064,-0.1139034,-0.54071736,0.5072407,-0.6754601,0.36511853,-0.011701245,-0.014072462,-0.08684129,-0.04746484,0.4332325,0.6729318,-0.13486372,-0.068760276,-0.022886693,-0.3499495,0.2828934,-0.4675654,-0.13579756,-0.5378765,-0.40608293,0.5449064,0.78807837,0.4450418,-0.19364189,-0.04216434,0.15869012,-0.041231778,0.1296259,0.102382295,0.12443003,-0.123550646,-0.89134634,-0.08171498,0.4768494,0.112914816,0.25848812,-0.15351701,-0.33975747,0.46417516,-0.112073176,-0.07856072,-0.047300227,-0.665728,0.10800497,-0.34134233,-0.71995485,0.717507,0.058917757,0.26827767,0.15396073,0.10679034,-0.24218623,0.4636685,-0.3746874,0.97287136,-0.06372348,-0.017961867,-0.55179787,0.12849024,0.14134179,-0.17649491,-0.13092189,-0.440272,0.13583821,-0.5246581,0.44778156,0.23710376,-0.3179294,0.01350766,-0.11042762,-0.03156176,0.61017525,-0.2213602,-0.28892013,-0.32256678,-0.16692811,-0.45430803,-0.41940865,-0.035254154,0.42093235,-0.06459259,0.23016572,-0.17669359,0.00350545,-0.11633066,0.44581223,-0.040710468,0.30633807,0.36730605,0.0773203,-0.01879759,-0.1852673,0.3604091,0.5131099,0.0068929195,-0.27343866,-0.19571796,-0.6089812,-0.34975228,-0.20728779,0.00779814,0.57804734,0.10431482,-0.098045945,0.7440134,-0.06576232,1.2585021,0.0897437,-0.41292554,0.07358035,0.5795949,0.07712368,-0.084717736,-0.21830925,0.89478105,0.5479631,-0.06452417,-0.10812323,-0.39154243,-0.042235468,0.13714743,-0.18758273,-0.067625605,0.08278545,-0.67871845,-0.13913016,0.23482727,0.2132323,0.43682215,-0.16082446,0.21339424,0.25474435,-0.04568595,0.110805914,-0.29837573,-0.52086455,0.21489531,0.20655005,-0.020982128,-0.00407406,-0.5490788,0.41326973,-0.37841046,0.025618719,-0.45762652,0.23741688,-0.3973101,-0.26101607,0.2615713,-0.1941563,0.374708,-0.35365263,-0.19890216,-0.18735504,0.4876054,0.22238418,0.00089582114,0.5688054,-0.23206645,0.058252115,0.15751791,0.55354947,0.97764075,-0.2283799,-0.15102042,0.41107166,-0.48252133,-0.7414694,0.28036305,-0.36973417,0.1662365,0.11460801,-0.2477975,-0.61884874,0.27189717,0.12078988,-0.13021839,0.06007981,-0.69891196,-0.14514813,0.18392414,-0.278703,-0.12096931,-0.34436196,0.15138301,0.5472206,-0.2978175,-0.42683047,0.012438893,0.086190745,-0.03280225,-0.52227837,0.11404657,-0.336613,0.32730025,0.039020777,-0.39790398,-0.029686403,-0.11742568,-0.46314505,0.335041,0.15792862,-0.31598037,0.18615168,-0.47376788,-0.37185335,1.1296184,-0.24712637,0.13964795,-0.47296804,-0.39192492,-0.74796414,-0.36598638,0.53740203,-0.07781879,0.05370017,-0.6284374,0.23797677,0.092324175,-0.0929877,-0.27393934,-0.16452481,0.55227864,0.014937251,0.51797915,-0.06430593,-0.7455844,0.27292663,0.12631558,-0.18173434,-0.61901575,0.61313206,-0.17300926,0.9038601,-0.019132454,0.23371062,0.33369252,-0.4632872,-0.16676722,-0.25699636,-0.27210146,-0.71020406,-0.30196276,291 +646,0.4101085,-0.08386782,-0.71483123,-0.15929025,-0.30844682,-0.27902377,-0.13450077,0.665981,0.24781157,-0.5156882,-0.18144679,0.06700843,-0.18596873,0.36659792,-0.2842731,-0.7932115,-0.038502462,0.11573196,-0.26266772,0.6071806,-0.30899513,0.16705693,-0.21087784,0.55188364,0.36024508,0.23167755,-0.019967245,0.1754573,-0.13753092,-0.24520141,0.0551518,0.45236668,-0.4687908,0.2663204,-0.3108888,-0.32598093,0.027551128,-0.31539994,-0.28766665,-0.8120555,0.24360943,-0.56196356,0.48160756,0.09472447,-0.39983594,-0.004745699,0.3176689,0.18917267,-0.06696611,-0.32408667,0.11455668,-0.13250338,-0.054483216,-0.2928281,-0.3126867,-0.50494504,-0.5732498,0.046308763,-0.5421269,-0.01573873,-0.10401139,0.23177655,-0.37326843,-0.20085883,-0.012450048,0.77918106,-0.32595417,-0.135893,0.34905162,-0.12460195,0.23684572,-0.77889323,-0.22643515,-0.094210744,0.04823504,-0.04964833,-0.2336913,0.45181173,-0.023219535,0.34029454,0.0019263304,-0.3995682,-0.32483414,-0.043737706,0.29770344,0.22633092,-0.5000325,-0.50334233,-0.18259811,0.020444999,0.40019163,0.3124625,0.17862111,-0.1737937,0.10915823,0.026702939,0.016293893,0.6789725,0.66181755,-0.052366395,-0.074538775,0.10224126,0.50266147,0.4176866,-0.14778955,-0.16658404,-0.01573564,-0.5760331,-0.26216272,-0.0068057547,-0.122592956,0.34692776,-0.03238741,0.22101879,0.60225683,-0.03701125,-0.0021172785,0.12874144,0.15663515,0.23566347,-0.69696516,-0.21653393,0.3863022,-0.5214144,0.3178944,-0.27385092,0.70680845,0.025192587,-0.64379436,0.22569281,-0.5847894,0.1893321,0.045024652,0.5574591,0.6781074,0.49815032,0.29663256,0.79232633,-0.32089323,0.07190239,-0.027581105,-0.12942336,0.17084596,-0.28766128,-0.052086428,-0.44802144,-0.03105732,-0.16819352,-0.0015027982,0.25210664,0.22098897,-0.7433437,-0.29439318,0.31936413,0.90404314,-0.09660693,0.015640497,0.7650352,1.0795808,1.0816462,-0.106549785,0.982953,-0.17918505,-0.17414588,0.067726776,0.04970663,-0.6660966,0.24043958,0.38412204,-0.454193,0.35519755,-0.15451714,0.009077609,0.58970034,-0.51333165,-0.2286513,-0.1938635,0.57327133,0.007638647,-0.13925365,-0.63316524,-0.16099998,-0.052194413,-0.033888273,0.09783876,0.42588705,-0.14594024,0.4778206,-0.17161533,1.0873382,-0.16410057,0.15988772,0.30947372,0.38435158,0.35692808,-0.18691467,0.12819894,0.24182765,0.04554589,0.23560905,-0.4458726,0.17291282,-0.36733297,-0.43723205,-0.0054361476,-0.38797548,-0.14871508,-0.009372483,-0.41761154,-0.24504651,-0.12373945,-0.24695174,0.37777236,-2.6040518,-0.030227194,-0.07920293,0.21576688,-0.2209014,-0.45079973,-0.11569198,-0.37442273,0.6707345,0.16607842,0.5658958,-0.3592073,0.09618639,0.50027996,-0.62390274,0.036163148,-0.56734854,-0.20497777,0.047843806,0.45165512,0.19638537,-0.14619729,0.038171988,0.17043048,0.5667876,0.14548367,0.08907983,0.31262457,0.30935624,-0.4455066,0.39744267,-0.15739232,0.46827748,-0.513408,-0.29851893,0.349494,-0.52544415,0.35445315,-0.20244649,0.14777614,0.55711883,-0.4533823,-0.9646451,-0.381676,-0.20606199,1.2056547,-0.0021171868,-0.49965975,0.2042451,-0.39074296,-0.16912279,-0.17081125,0.56293774,-0.08084442,0.06822541,-0.6701089,-0.015219056,-0.31539184,0.12831593,-0.08005684,-0.049778815,-0.39073378,0.62192523,-0.050607927,0.38434336,0.42574942,0.21636519,-0.5480676,-0.47457397,-0.13584386,0.93114716,0.5575577,0.12374522,-0.17290306,-0.21777017,-0.2937804,-0.16247964,0.12257107,0.772261,0.7410307,-0.12981847,-0.025498815,0.41953725,0.06264231,-0.019135058,0.025534473,-0.42088482,-0.3146356,0.040489554,0.70536417,0.7250275,-0.22342187,0.3249717,0.0971636,0.4074611,-0.3217214,-0.37642157,0.38836348,0.9302895,-0.26198816,-0.284793,0.92009395,0.59082913,-0.29287732,0.575314,-0.48686874,-0.43619555,0.49361786,-0.13378286,-0.6039523,0.01953855,-0.3683991,0.028044406,-0.80158234,0.28802294,-0.4933017,-0.5275058,-0.8750924,-0.26752353,-2.0993705,0.25983852,-0.33673775,-0.0029031222,-0.3776584,-0.026357045,0.17466977,-0.6105386,-0.80298316,0.20455883,0.11168489,0.78397435,-0.26314276,0.07499424,-0.22199582,-0.49321446,-0.036892686,0.32704604,0.3503316,0.2572323,-0.07297055,-0.29949707,-0.22597107,-0.032426126,-0.54347247,0.07840069,-0.63040394,-0.4920854,-0.14907676,-0.7306954,-0.0028828245,0.77605754,-0.38683012,-0.0007144648,-0.1403537,0.17223804,0.16711141,-0.02943878,0.077595785,0.4456262,0.2846767,-0.14843231,0.13081194,-0.23198606,0.17535207,0.11210069,0.5702954,0.2683862,-0.1074491,0.26929742,0.6942764,0.8763325,-0.2127452,0.96922696,0.42272323,-0.086983114,0.34746283,-0.21871747,-0.52539706,-0.5993724,-0.24277812,0.31982532,-0.37750986,-0.27294773,0.02323421,-0.4167042,-0.8815174,0.8083879,-0.0013243601,0.3793783,-0.35968685,0.10256314,0.5106531,-0.33813602,-0.2782765,-0.082095236,-0.06294438,-0.5739268,-0.22345556,-0.65955776,-0.53506345,-0.089019924,1.0324728,-0.20959122,0.06125508,0.34546104,-0.20840576,0.052586243,0.10555871,-0.08392877,-0.11626128,0.30712733,0.39337698,-0.584907,0.4209754,-0.06406182,-0.052589595,-0.46287614,0.41219595,0.653964,-0.46365303,0.63296664,0.46966082,-0.07158379,-0.33870518,-0.83182216,0.0030960029,0.13970572,0.0017349606,0.45528713,0.38254526,-0.68728167,0.4564547,0.28926915,-0.25847304,-0.7606713,0.44240555,-0.15747143,-0.060972605,-0.13836266,0.46930382,0.106994405,-0.100462876,-0.067874976,0.4331813,-0.1582286,0.2697227,0.28759187,-0.15197513,0.26728767,-0.24878278,-0.15088429,-0.8855436,0.21477996,-0.7801913,-0.3078118,0.49510786,-0.17589952,-0.16573285,0.08196019,0.15860708,0.31020495,-0.28792825,0.17149065,-0.21982503,-0.43699884,0.48377207,0.5723276,0.6970918,-0.5631107,0.6272759,0.21358848,-0.13245025,0.14398283,0.11562505,0.5144334,-0.14051196,0.510375,-0.15717782,0.041304525,0.076695226,0.77153504,0.09323859,0.27647257,0.042705655,-0.048584882,0.065441065,0.040637158,0.12506431,0.0009904412,-0.67352957,0.14622645,-0.15808432,0.0019400395,0.53907895,0.06576773,0.37298316,0.07807851,-0.2649854,0.0271361,0.21129225,0.0512929,-1.6267827,0.62716305,0.11978963,0.94610095,0.35864884,0.3677216,-0.09265333,0.6558355,-0.0033328992,0.09376569,0.45745605,0.081559785,-0.3390074,0.57548684,-0.6253301,0.5177995,0.027159167,0.074622035,-0.07801211,-0.041891262,0.6759068,0.66257584,-0.15927841,0.010436039,-0.030181656,-0.21792556,0.2926454,-0.40582463,0.14197376,-0.29426476,-0.44769844,0.48358727,0.5191587,0.28179744,-0.28376165,-0.0052413503,0.31082284,-0.14185432,0.21544434,-0.21538518,0.029108705,0.008360473,-0.44945204,-0.16839688,0.40100092,-0.09681462,0.13837932,-0.09782501,-0.08277582,0.23541087,-0.024730848,-0.08559182,-0.10625581,-0.56172854,0.087741815,-0.47850564,-0.5459341,0.40559238,-0.33006757,0.095316805,0.12917247,0.10048525,-0.32368648,0.57167333,-0.09935338,0.73985827,-0.17059647,-0.27907574,-0.26536885,0.26809266,0.02672964,-0.3426119,0.046927627,-0.35886997,0.24897161,-0.4092982,0.44368282,-0.18967412,-0.3825064,-0.077684626,-0.16980185,-0.0681485,0.4322925,-0.07384983,-0.17622541,-0.26463774,-0.32771856,-0.14941801,-0.41495323,-0.104974896,0.17775601,-0.16206712,0.08914984,-0.20514867,-0.1916725,-0.17301625,0.24260893,-0.049479213,0.24220607,0.43079332,0.20360833,-0.32113376,0.055673238,0.29206556,0.54483414,0.048732284,-0.009359328,-0.28775522,-0.3546952,-0.63897353,0.30848196,-0.256079,0.42903966,0.19296408,-0.14076184,0.7402125,0.043845877,1.3188447,-0.17332163,-0.42069575,0.026768826,0.46719533,-0.14800993,-0.090423636,-0.31011006,1.1132929,0.36307862,-0.20863964,0.06571795,-0.46198523,0.21419892,0.2500448,-0.28715116,-0.17380235,-0.06810014,-0.5185785,-0.22911538,0.27095148,0.3913544,0.28744608,-0.3803876,-0.1398261,0.2991189,0.1817355,0.21627066,-0.4177706,-0.013094801,0.23409599,0.21963432,-0.10714375,0.11979437,-0.4707993,0.3258204,-0.55754393,0.2851481,-0.46512458,0.22726609,-0.2746126,-0.5378346,0.17409915,-0.24440071,0.45512727,-0.39757472,-0.23648432,-0.14107545,0.24850768,0.23784758,0.040311333,0.55444264,-0.30757388,-0.013330019,0.14996468,0.603869,0.9357062,-0.28406987,-0.12937742,0.072769836,-0.31500202,-0.68736064,0.0686772,-0.43599904,0.0988088,-0.19631192,-0.43093857,-0.58565384,0.10636515,0.10890383,-0.028864585,-0.07691641,-0.75206935,-0.075310804,-0.05767515,-0.27827638,-0.15870622,-0.35016662,0.01047614,0.48811564,-0.12853338,-0.4806879,0.12559171,0.10670462,0.025561452,-0.5828661,0.15026939,-0.3483198,0.19549306,-0.0029002337,-0.5014972,-0.11986054,-0.13108908,-0.5268484,0.14681828,0.04063807,-0.2506537,-0.07992231,-0.04405725,0.10035995,0.8539661,-0.11746339,0.40473545,-0.30906928,-0.5281786,-0.82473904,-0.3247267,0.18218097,0.11982142,0.10907045,-0.8393192,0.062099006,-0.3087712,0.0905654,-0.15652053,-0.14314505,0.23433487,0.14620078,0.5260712,-0.3881245,-0.75117373,0.4107002,0.26061094,0.0041825953,-0.47510883,0.42413384,-0.054891907,0.83003515,0.08736898,0.024955966,0.16070755,-0.5437848,0.054953463,-0.19113564,-0.27330166,-0.53066623,0.20248541,292 +647,0.3746278,-0.19386078,-0.42970136,-0.08081368,-0.20594062,-0.31414336,-0.29656294,0.6680862,0.3799411,-0.40551472,-0.23671368,0.22176732,-0.18251199,0.29647905,-0.14191064,-0.17228158,-0.009866958,0.21476804,-0.5101976,0.6921159,-0.19635925,0.20599219,-0.14384152,0.62542695,0.41298956,0.12839048,-0.17083909,0.3779473,0.023297181,-0.24090768,0.023588648,0.2088916,-0.4530857,0.17319764,-0.26019973,-0.4350537,-0.3776293,-0.5606566,-0.46099743,-0.7694196,0.35019344,-0.72028345,0.62066424,-0.013461218,-0.34209353,0.16358255,0.09320201,0.23623309,-0.01940613,-0.25337207,0.16115977,-0.12991567,-0.21416576,-0.10138074,-0.072815746,-0.1937673,-0.58105206,-0.09281821,-0.26728475,-0.04055146,-0.3135102,0.1962044,-0.35716438,0.07920799,0.025010284,0.58957916,-0.21285237,0.15961954,0.07480757,0.0039623794,0.112795606,-0.83209074,-0.23844253,-0.12010578,0.18899368,0.011756576,-0.37280953,0.37876037,0.07722226,0.44024354,-0.21054675,-0.031655762,-0.40925023,0.20087503,0.013745322,0.46422136,-0.30837876,-0.34282953,-0.09150283,0.09837807,0.47180626,0.10129888,0.19754076,0.0027145927,-0.1947627,-0.015902016,0.026827602,0.4457639,0.557413,0.040558375,-0.16686183,0.2599382,0.53500533,0.48788643,-0.17165463,0.0521329,0.057879355,-0.5023172,-0.14717707,-0.25994143,-0.14834735,0.3490236,-0.046328824,0.2929382,0.32707754,0.020740459,-0.22280622,0.38121003,0.20314072,0.21082164,-0.3110479,-0.56698054,0.37998772,-0.4291134,0.25430647,-0.1890257,0.45862976,-0.061380424,-0.770461,0.23448744,-0.4664796,0.14165533,-0.04422656,0.4440749,0.9814346,0.48204195,0.3802298,0.72655195,-0.24363287,0.034930196,-0.040080626,0.12763742,0.0012881664,-0.25914967,0.05202424,-0.5623771,-0.1693859,-0.04202878,-0.24709032,0.43870303,0.48759666,-0.46263868,-0.16926914,0.20876874,0.7542872,-0.1399247,0.07494811,1.037858,1.2245069,1.1705512,0.07016391,0.8827022,-0.091040105,-0.088701494,0.035641946,-0.047091894,-0.67343956,0.2560557,0.30139458,0.10587129,0.32034895,0.14429668,-0.1305729,0.42132345,-0.6068557,-0.08148705,-0.009536977,0.06045988,0.14411603,-0.22158346,-0.58421934,-0.17904575,-0.25914007,0.16431363,0.020330433,0.2590384,-0.2832784,0.41141576,-0.13814633,1.3347855,-0.14467219,-0.023152392,0.15358283,0.4952181,0.23027423,-0.41392377,-0.038632445,0.048070934,0.29933912,0.016784204,-0.56171936,0.017770588,-0.1356166,-0.36177656,-0.22234192,-0.28604305,-0.3234061,0.025475685,-0.25366384,-0.3982803,-0.19967164,-0.44761392,0.19420968,-2.6969616,-0.24641715,0.026469808,0.48339665,0.04241493,-0.35006624,-0.16195941,-0.3595884,0.5479059,0.30860597,0.5406193,-0.45203298,0.21890494,0.45343068,-0.727278,0.06386154,-0.55556387,-0.11757003,0.17901564,0.19811663,0.062582016,-0.11473315,0.1415489,0.32817155,0.5116446,0.2599897,0.03579154,0.59691006,0.36814865,-0.43528965,0.31437647,-0.21430962,0.3981007,-0.3957136,-0.28565806,0.38464254,-0.3938374,0.23369576,-0.2419986,0.16217613,0.60943127,-0.44697455,-0.9671832,-0.5140003,0.28243148,1.1760371,0.13751036,-0.60251844,0.28774732,-0.96870226,-0.35889357,-0.21633516,0.6834737,-0.21190885,-0.21545584,-0.72689056,-0.26202568,-0.20540048,0.1144081,-0.038255356,-0.21104033,-0.53406763,0.82285935,-0.013058569,0.59959614,0.40608194,0.1185132,-0.35440043,-0.41919434,0.07421614,0.659462,0.5901141,0.17156526,-0.3381069,-0.022896977,-0.25488383,-0.14219508,0.18358961,0.564488,0.33308858,-0.14948183,0.21852463,0.18608266,0.03618913,-0.025072305,-0.20399131,-0.004652491,-0.2594596,0.05036791,0.6743256,0.80890787,-0.16562667,0.31881377,0.146078,-0.011555537,-0.11172366,-0.37089318,0.31463546,1.0247194,-0.18742171,-0.5085531,0.67351335,0.44055843,-0.14290184,0.40502027,-0.47730678,-0.16482621,0.17988205,-0.012723565,-0.35859635,0.09514594,-0.3885047,0.13840613,-0.5584942,0.2429613,-0.31264842,-0.74404997,-0.8225795,-0.11323106,-1.3321275,0.21060461,-0.32121044,-0.38713557,-0.2750033,-0.4414887,0.096354574,-0.5744938,-0.69483083,0.22384556,0.07978857,0.8713286,-0.1865463,-0.13367139,-0.064761415,-0.48388892,-0.37877223,-0.013584132,0.15852925,0.43517002,0.15400717,-0.21902707,-0.12286366,0.057890195,-0.4568504,-0.19900121,-0.43329877,-0.3807274,-0.02319665,-0.39113384,-0.19232124,0.5571837,-0.1221987,0.12021197,-0.26091996,-0.11774063,0.100367196,0.26995498,-0.022310184,0.23890176,0.18862747,-0.13259417,0.1650917,-0.031408224,0.115977325,-0.07158848,0.17043965,0.24634926,-0.38081008,0.38014677,0.4658674,0.78419167,-0.3228802,1.0168567,0.6710847,-0.09290849,0.21973613,-0.23215815,-0.38664612,-0.45770174,-0.07851444,0.42213395,-0.45196703,-0.3755182,0.11968954,-0.53496677,-1.0168853,0.56502956,-0.03780475,0.19921562,0.110242195,0.07755138,0.4818022,-0.12897323,-0.12374493,-0.17271066,-0.11004024,-0.41307306,-0.28762877,-0.63616556,-0.49707457,-0.1319813,1.2702199,-0.26167402,0.20365168,0.42992508,-0.28335994,0.007514254,0.14973682,-0.11314265,0.057285395,0.24833809,0.054078754,-0.4202192,0.26700863,-0.01585203,-0.14125441,-0.57024646,0.26148272,0.50298345,-0.38844663,0.4943183,0.30200982,-0.10669149,-0.52427155,-0.812239,-0.01179918,-0.12648049,-0.19160257,0.51439464,0.45951682,-0.71537775,0.41121215,0.31352174,-0.14291225,-0.72970325,0.39559713,-0.041030005,-0.3453967,-0.030014588,0.17854333,0.012279437,-0.021500248,-0.0070819994,0.3687797,-0.21562481,0.4212631,0.05156825,-0.18752153,0.025011264,-0.3209212,-0.026273044,-0.60756487,0.14269017,-0.55645186,-0.29615375,0.2556827,0.15092815,0.30394647,0.04096021,0.3300095,0.39398807,-0.3400059,0.12792856,-0.36038965,-0.38644692,0.2731713,0.49734786,0.65424454,-0.38496512,0.56805384,0.06933364,-0.37172163,-0.006288689,0.023495985,0.44330758,-0.17305723,0.3189608,-0.001077354,-0.18922755,-0.162163,0.7698607,0.06379117,0.18566598,0.014414168,-0.093741424,0.16422097,0.032112017,0.31852758,-0.15553102,-0.514845,0.2307846,-0.476086,0.13563477,0.39522612,0.16417345,0.106029406,-0.22689287,-0.38476995,-0.05222157,0.10181236,0.13808143,-1.5609212,0.4854539,0.18057863,0.8524419,0.4009681,0.1482899,-0.1301569,0.79566914,0.060680177,0.055113953,0.21587215,0.20125076,-0.38214573,0.4398778,-0.7402167,0.5919546,0.13540651,0.009046412,-0.016479969,-0.114357546,0.4723584,0.5148715,-0.21127447,-0.0022663784,0.020926237,-0.33510298,-0.04134529,-0.3719354,0.11301042,-0.61821306,-0.29473716,0.8735924,0.5638575,0.34669426,-0.21040776,0.08630498,0.06347522,-0.10863029,0.16166148,0.0016536071,0.02104528,-0.14072496,-0.60704285,0.1349253,0.25049785,-0.23719348,0.12230992,-0.11357893,-0.047064345,0.12329398,0.07714569,-0.12685513,-0.0772654,-0.7067142,-0.02218428,-0.54253936,-0.4627524,0.33758754,-0.14804667,0.15494244,0.33897883,0.10441497,-0.16859554,0.35000503,-0.08890506,0.73110926,-0.07505261,0.0780008,-0.15610303,0.23764804,0.12525055,-0.18198249,-0.023056477,-0.09363182,0.09412764,-0.4555407,0.48995107,-0.08667372,-0.38257664,0.20188788,-0.05398254,0.14511909,0.34099242,-0.3087721,-0.26434204,-0.147583,-0.29757193,-0.23346074,-0.39918178,-0.050078712,0.3480642,0.06402822,0.07459802,-0.060155146,-0.11121511,-0.079288684,0.51303124,0.16235495,0.56290525,0.32674378,0.18284649,-0.3433956,0.027232233,0.10396442,0.57188267,-0.027110828,-0.09774426,-0.53841203,-0.5666977,-0.46658266,0.3177803,-0.03448186,0.46538046,0.13648418,-0.007283151,0.62786674,-0.02531024,0.81368977,-0.054690935,-0.3611098,0.20189425,0.38342032,-0.13401894,-0.21270299,-0.17484419,0.6100183,0.34295526,0.00088889326,0.005107817,-0.31251574,0.09343911,0.30305904,-0.28112504,-0.18315695,-0.13453571,-0.61026233,-0.1120619,0.26360476,0.24697253,0.12275468,-0.24803618,0.19371746,0.4292518,-0.068139106,0.018708335,-0.288087,-0.10597528,0.47295606,0.18213224,0.001014095,8.076888e-05,-0.5233364,0.20593366,-0.40846306,-0.08052071,-0.31334257,0.24851659,-0.08354245,-0.23493661,0.25645357,0.05904191,0.25028527,-0.31297037,-0.14464773,-0.19188254,0.3640938,0.15058766,0.09643286,0.26454538,-0.3241461,-0.027729778,-0.018469132,0.31616122,0.9119019,-0.20702508,0.064904876,0.04011921,-0.30136248,-0.39606094,0.31216705,-0.33266178,0.08062814,0.10244412,-0.08286122,-0.59032094,0.12753083,0.25568146,0.22225523,-0.034539897,-0.8026393,-0.39576742,0.06445173,-0.20326272,0.030852739,-0.43616527,-0.30813423,0.46509406,0.023113796,-0.4407743,-0.02379648,0.38641363,-0.02246207,-0.47576615,0.2696258,-0.47063276,0.22941563,-0.24501501,-0.40226313,-0.36361086,-0.13967814,-0.43699995,0.11452024,0.07383618,-0.2855779,-0.058519747,-0.43634742,0.12681147,0.89422184,-0.23667328,0.36859372,-0.19037192,-0.547732,-0.83000284,-0.1634648,0.15733925,0.34306547,-0.044208586,-0.8599291,-0.01888875,-0.22637105,-0.012507228,-0.105615154,-0.23330556,0.5086986,0.18977012,0.340738,-0.34151605,-0.67744595,0.28870773,0.06687205,-0.25392294,-0.19851683,0.5300242,0.4032285,0.7949572,0.08763724,0.16645254,-0.08134724,-0.4832361,0.13677576,-0.1153688,-0.29268518,-0.5038057,-0.041351873,298 +648,0.4648741,-0.16512807,-0.33638826,-0.20528938,-0.34922075,-0.37682515,-0.18545398,0.37966245,0.33574122,-0.23108497,-0.22175716,-0.018944483,0.23971592,0.54295516,-0.23166387,-0.7887561,0.009957754,0.12387542,-0.5704474,0.67667305,-0.5720644,0.2006996,0.093076035,0.3028045,0.094068095,0.2789696,0.27052978,-0.015732236,0.17403044,-0.09324659,-0.038154658,0.43396994,-0.73007524,0.13070989,-0.1964594,-0.27131087,0.03608334,-0.41160187,-0.13571037,-0.800393,0.097738296,-0.9615974,0.4344858,0.14279975,-0.31433252,-0.13689384,0.3482415,0.33864802,-0.4869844,-0.0006079284,0.16169478,-0.2306524,-0.18174821,-0.35181156,0.16500077,-0.3753956,-0.5710259,-0.13805583,-0.6388073,-0.30580652,-0.30802038,0.1732971,-0.40367842,-0.050741784,-0.15068075,0.46572956,-0.48762062,-0.20171326,0.50790906,-0.08884705,0.44625884,-0.4358382,-0.049829006,-0.060526967,0.4267,0.04646049,-0.2570116,0.550826,0.41275468,0.4176624,0.20966841,-0.48918074,-0.17682186,-0.1968963,0.3419538,0.23730558,-0.24678278,-0.5053977,-0.19442013,0.07712849,0.055791616,0.5489682,0.083901845,-0.2320981,0.029862758,-0.07280535,-0.080094986,0.4519818,0.5145988,-0.2622759,-0.3010051,0.18018574,0.5851133,0.12789582,-0.17284662,-0.06767735,0.02330758,-0.5963123,-0.18005751,0.03434004,-0.09928683,0.64806396,-0.14626494,-0.050857287,0.89542377,-0.14202489,-0.04252078,-0.01167831,-0.006889664,-0.11950894,-0.3724264,-0.22405513,0.21015123,-0.6855395,0.11042103,-0.3094657,0.7356051,0.19805591,-0.8137224,0.2598728,-0.559699,0.20893739,-0.034226708,0.6565732,0.73127204,0.48968077,0.70262426,0.75961655,-0.3864973,0.12282122,-0.062173165,-0.5650118,0.251838,-0.2561513,0.1117347,-0.4783091,-0.03072658,-0.25350267,0.08875757,-0.032166123,0.46107513,-0.48645225,-0.114514515,0.41424116,0.757759,-0.3254534,-0.04186223,0.58233654,1.0672743,1.0099138,0.08010439,1.180746,0.20970191,-0.16469969,0.19998851,-0.16789728,-0.664782,0.18028858,0.32871148,0.046603505,0.24524392,-0.08699436,0.01231955,0.4238384,-0.50761026,0.034383558,0.02249418,0.5647908,0.056389425,-0.23028126,-0.48912686,-0.19815573,-0.064778216,-0.0782123,-0.11541168,0.37973595,-0.101835795,0.23637867,-0.1865543,1.3346435,-0.083826676,0.10381853,0.2111381,0.5823442,0.30898637,-0.034395568,-0.049350914,0.4270589,0.29959103,0.11767345,-0.61260504,0.27381352,-0.4151998,-0.5251075,0.027034678,-0.5463709,-0.055607233,0.07858913,-0.45498234,-0.0145057645,-0.028597264,-0.19033371,0.58024555,-2.6877518,-0.2938913,-0.10078642,0.303489,-0.28841037,-0.0629688,0.0065629897,-0.5598818,0.39406446,0.18628937,0.5714607,-0.6887137,0.55528396,0.5991085,-0.52271754,-0.11049878,-0.65277326,-0.12781559,-0.20801383,0.493271,0.114857204,-0.16554557,-0.09344782,0.27524793,0.87207043,0.093153015,0.3002043,0.4296645,0.17989609,-0.03382369,0.6798242,-0.1587988,0.5133556,-0.202782,-0.21395487,0.20469688,-0.35466173,0.42564493,-0.20022823,0.03476812,0.5380484,-0.4803176,-1.1618528,-0.5914172,-0.4288901,0.93808204,-0.4010855,-0.3765608,0.30215943,-0.23839444,0.13338946,0.046674833,0.6222317,-0.07557407,0.39479098,-0.72743165,0.14152883,-0.002272278,0.07190405,0.15663913,0.0016990831,-0.42595312,0.75814444,-0.040094607,0.5482714,0.2572772,0.11675103,-0.3382005,-0.44961393,0.07505357,0.6445188,0.26905882,-0.041265503,-0.17757207,-0.3093766,-0.10357798,-0.19103721,-0.035327036,0.74806345,0.8582343,-0.18362263,0.10525047,0.16056341,-0.014403133,-0.047532883,-0.16923761,-0.23322178,-0.027406126,0.17153373,0.50955683,0.9042537,-0.25452244,0.2801179,-0.14615537,0.4160214,0.109782845,-0.56721455,0.5541537,0.67040837,-0.08389528,0.03781422,0.5641347,0.6960377,-0.45882273,0.59636116,-0.5283776,-0.20891425,0.80391437,-0.06457179,-0.42879757,0.17040554,-0.36246565,0.034037307,-0.86100703,0.31007987,-0.51179844,-0.38629162,-0.39166778,-0.09063649,-3.402391,0.27159238,-0.17625707,-0.046813205,-0.3320545,0.031871755,0.33597878,-0.7643624,-0.5994126,0.15621215,0.21253936,0.668673,-0.13312843,-0.05543611,-0.375497,-0.30270383,-0.036691338,0.2921552,0.050482895,0.28597838,-0.19132791,-0.44852987,-0.1456363,-0.083977506,-0.54388964,0.24196164,-0.6382189,-0.5051308,-0.14237887,-0.6274283,-0.32495704,0.62272894,-0.39990425,0.107819825,-0.09616424,0.13971573,-0.29655555,0.20464768,0.051355608,0.3445263,0.08230041,-0.09904191,-0.0015924114,-0.23903435,0.47130293,-0.05301875,0.51094407,0.0106063485,-0.082400136,0.2196258,0.5891894,0.7338331,-0.20202534,1.0533772,0.27907425,-0.074802615,0.26942512,-0.38745043,-0.41148165,-0.6675774,-0.47410694,-0.2159009,-0.3673074,-0.4914572,0.12233441,-0.35349414,-0.79525787,0.6483612,-0.013191561,0.4183644,-0.11795162,0.1409329,0.41388416,-0.3223648,-0.030369703,0.008368463,-0.15421858,-0.73022485,-0.25805634,-0.62213045,-0.49185622,-4.5322457e-05,0.6015877,-0.46299696,-0.08637753,-0.124424666,-0.13319932,-0.026422154,0.12365436,0.004083737,0.10207264,0.39749897,0.12471159,-0.58820933,0.52128357,-0.025244895,-0.103259,-0.45142847,0.13856459,0.40738207,-0.7617569,0.91181946,0.39743346,0.070159025,0.0730823,-0.78605753,-0.339522,0.10684305,-0.1171488,0.5072947,0.19746272,-0.8893499,0.4703445,0.4405737,-0.662826,-0.71639836,0.35122567,-0.15983503,-0.45890462,-0.10166817,0.3934949,0.070529066,-0.08600222,-0.20883848,0.28783247,-0.515078,0.199282,0.26988667,0.038644247,0.294812,-0.0128846355,-0.32434002,-0.8969034,0.04715585,-0.60103047,-0.24680749,0.4004028,-0.18081093,-0.28543058,0.1608573,0.27271703,0.29811186,-0.29424745,0.24881037,0.025271488,-0.5091419,0.33390334,0.58973014,0.40031955,-0.40810382,0.52447486,0.19415596,-0.12899981,-0.15783651,0.14328343,0.26726705,-0.0753491,0.53694767,-0.37550342,-0.11546975,0.28639084,0.7661847,-0.00903346,0.4937704,0.08764967,-0.005877942,0.42258042,-0.007089982,0.23772722,0.0452234,-0.43098563,0.15838835,-0.16822958,0.1094327,0.5660355,0.30313483,0.19583939,0.33103612,-0.12754656,-0.022615762,0.45455128,-0.027574796,-1.3575407,0.5609754,0.31699422,0.76404405,0.67690605,0.22979297,-0.19034794,0.66006845,-0.2238968,0.085810535,0.53878295,0.011382433,-0.61181027,0.9074096,-0.6433788,0.3543984,-0.103126444,-0.0875783,0.093232796,0.17820057,0.4204806,0.72385305,-0.049665146,0.04310694,0.020096563,-0.16153343,0.10524988,-0.5246471,-0.120999604,-0.3220312,-0.4344892,0.6738459,0.5011865,0.45979336,-0.16261776,-0.085122734,0.05038884,-0.28117415,0.33015913,-0.2376779,-0.055070955,0.25265467,-0.4240803,-0.14038637,0.58157134,-0.040232375,0.15415595,-0.25714538,-0.05624021,0.08670178,-0.2254309,-0.12936115,-0.059044957,-0.8660908,0.08852335,-0.43860304,-0.38748354,0.63236016,-0.4125727,0.04341372,0.16170527,0.15081325,-0.1088229,0.31501836,0.091711245,0.6165912,0.013578672,-0.30725625,-0.22653148,0.10611402,0.061903503,-0.31578147,0.08842276,-0.36887354,0.12308378,-0.5036528,0.6735988,-0.07463885,-0.3567686,0.04264905,-0.316669,-0.17444007,0.5853949,-0.23120962,-0.33495125,-0.16556923,-0.16143742,-0.2656535,-0.22068049,-0.17782895,0.33092272,0.089445114,0.041172743,0.0370688,-0.28433374,-0.048944823,0.6188476,-0.040165484,0.4546076,0.24451481,-0.10552113,-0.13390413,0.10702476,0.2815937,0.48931196,0.13484806,-0.041948613,-0.5201488,-0.20546755,-0.39595604,-0.22292784,-0.1501534,0.27123407,0.096815,-0.15231197,1.027493,0.09020612,1.2334862,0.0861147,-0.43138164,0.07567159,0.59109783,-0.11230003,-0.037378386,-0.37429377,0.8573228,0.6183976,-0.21361366,-0.10161387,-0.5086405,-0.01743864,0.29970476,-0.4447641,-0.103708915,0.05848699,-0.47306645,-0.28083932,0.14308462,0.32003802,0.19152705,-0.0606489,-0.14038421,-0.060459215,0.24060948,0.4259513,-0.6469046,-0.19618091,0.19769284,0.4105152,0.07063143,0.09095231,-0.37351125,0.48002243,-0.6532039,0.30161548,-0.5667676,0.10270249,-0.4229169,-0.43607858,0.118593745,-0.059827182,0.27980363,-0.18120201,-0.31083208,0.06628377,0.37574273,0.13708374,0.21299829,0.76549584,-0.30144906,-0.0008304073,0.12357703,0.63130164,1.2112659,-0.55643815,-0.19169666,0.23487781,-0.46721146,-0.7200527,0.4442794,-0.48552328,-0.068246916,-0.22141185,-0.5537593,-0.7347142,0.052241333,0.15974593,0.0666644,0.091302596,-0.6812363,-0.16822568,0.30197442,-0.38300616,-0.30602878,-0.2302571,0.5043164,0.8262275,-0.2966277,-0.3829289,0.016023828,0.1270304,-0.20919728,-0.46251935,-0.06312752,-0.14939083,0.340349,-0.0063470784,-0.31063557,0.018542558,0.17240638,-0.42647713,0.07417952,0.291244,-0.18573496,0.31063417,-0.28064877,0.021472178,1.0287845,-0.23030978,-0.1633628,-0.46899706,-0.53948444,-0.92510957,-0.37150973,0.4779158,0.06282313,0.07535934,-0.29334,-0.006380017,-0.045499068,-0.06411804,0.027989324,-0.39620987,0.25285158,0.050961412,0.5404214,-0.17423996,-0.77558064,0.08683644,0.2596536,0.06700484,-0.6872202,0.69075406,-0.2747651,0.88920856,0.010796685,-0.1912191,0.047421787,-0.40447652,0.076822795,-0.40438583,-0.026328702,-0.69104725,-0.05597863,303 +649,0.3058379,-0.1556239,-0.5409863,-0.24325302,-0.17711471,0.0018576934,-0.12324579,0.08489941,0.19743249,-0.20556958,-0.059175346,-0.19982089,0.053835772,0.5520785,-0.078544706,-0.8998862,-0.14380886,0.07522872,-0.6775067,0.35065746,-0.5008762,0.2533513,0.14517382,0.5046208,-0.010323318,0.3118525,0.32755274,-0.16381034,-0.025252085,0.064576074,-0.27682677,0.21331406,-0.6537129,0.051575206,0.17163165,-0.21494436,0.036313623,-0.29432285,-0.25667667,-0.6678458,0.41933548,-0.87905854,0.296563,0.15381888,-0.36403844,0.24107958,-0.14878127,0.30352402,-0.53450304,0.049448308,0.07708561,-0.31953877,0.06727097,-0.1685604,-0.09394952,-0.41230446,-0.4818806,0.0830502,-0.5194701,-0.26704085,-0.25550646,0.075081386,-0.39491203,0.035586834,-0.2828065,0.24667613,-0.545478,-0.20125414,0.33455795,-0.2124442,0.2804298,-0.2768954,-0.12211358,-0.1428111,0.30125368,-0.0452592,-0.18921243,0.2579853,0.33765456,0.58086514,0.08918809,-0.24686524,-0.15406567,-0.046845064,0.23103414,0.40449172,-0.08765503,-0.43787172,-0.23481444,-0.19628134,-0.00086033344,0.34820002,0.008281715,-0.56440216,0.04398732,0.15044202,-0.18769155,0.101052575,0.41659722,-0.37557933,-0.20890018,0.27278057,0.48039946,0.075623974,-0.107785575,0.103138514,0.011843816,-0.54490876,-0.2915899,0.28408232,-0.0975539,0.6988183,-0.10479967,0.2007023,0.7624825,-0.19693811,0.12699112,-0.3488705,-0.28718567,-0.23144317,-0.2902704,-0.0793557,0.2330521,-0.44333854,0.16264145,-0.31297448,0.69511867,0.18247503,-0.87692523,0.38629156,-0.5164745,0.2964607,-0.25963575,0.73992735,0.6552808,0.23668583,0.36819422,0.83908856,-0.67257017,0.053379618,-0.04044215,-0.49016497,0.059538763,0.021320347,-0.0028620064,-0.3931596,-0.05657739,0.02058396,0.0007517086,-0.014778852,0.0023788488,-0.36473566,0.07350773,-0.024503928,0.5328853,-0.43563905,0.061608728,0.7743744,1.013361,0.85072076,0.1769908,1.1874816,0.4346692,-0.16863559,0.2725188,-0.23963386,-0.6470639,0.0709679,0.4505214,0.3871908,0.2793229,0.008316434,0.17990293,0.44627178,-0.2606708,0.22937539,-0.22583853,0.15734197,-0.02563041,-0.07074605,-0.49181396,-0.22865292,0.017043391,0.04530189,-0.122609705,0.2624017,-0.069243535,0.40687844,0.10241675,1.4347373,0.09422595,0.14750545,-0.0638276,0.40486887,0.19696042,-0.14449474,-0.16654465,0.39117724,0.4322022,-0.085753925,-0.7245074,0.09452866,-0.18773247,-0.508241,-0.15154055,-0.45146748,0.07929742,-0.083663,-0.4720097,0.0028078442,0.16260967,-0.33835074,0.46399102,-2.4090345,-0.0967629,-0.23626849,0.23842093,-0.21521927,-0.25006962,-0.022617463,-0.30361846,0.2704696,0.48050097,0.22256204,-0.72617,0.27866188,0.30926582,-0.13505462,-0.09281639,-0.69171894,-0.08217573,-0.06341683,0.27788416,-0.021599503,-0.05267708,-0.12493241,0.30727768,0.5715611,0.038837187,-0.07606644,0.14194681,0.3324348,0.13499689,0.5812077,0.23671624,0.5628203,-0.09728238,-0.13372271,0.31899133,-0.18663344,0.3793938,0.09725721,0.25552255,0.18153678,-0.46688133,-0.8035554,-0.73218125,-0.6434626,1.2953525,-0.59422815,-0.364658,0.35851416,0.090177245,-0.15724032,-0.021515576,0.473042,-0.17727885,0.039408945,-0.69823676,0.11144286,-0.043312643,0.26049554,-0.041345358,0.07045642,-0.22813934,0.6376243,-0.17015727,0.38507235,0.49729654,0.13951613,0.028952671,-0.54142773,0.12698579,0.7822056,0.24405473,0.010495369,-0.15081552,-0.22231524,-0.017358629,-0.15705895,0.16438235,0.35729977,0.9172655,-0.024138134,0.054838262,0.2562988,-0.08605485,-0.07110222,-0.03756591,-0.26117572,0.07328292,-0.008960476,0.517248,0.55876917,-0.11744178,0.31052622,-0.19159888,0.24351303,-0.02176421,-0.46542004,0.6207381,0.923645,-0.10209696,-0.09152404,0.61075187,0.50550747,-0.44696173,0.37927902,-0.5504979,-0.104691654,0.7283064,-0.0028427702,-0.426943,0.13785706,-0.29811662,0.032670055,-1.0358104,0.13146277,0.024230052,-0.3645503,-0.39648598,-0.07115343,-4.5157537,0.24768089,-0.2487621,-0.20089494,-0.110201046,-0.2631065,0.41845196,-0.57236505,-0.5828475,0.12981084,0.03323801,0.41287228,-0.023016023,0.148185,-0.356936,0.045139953,-0.21281508,0.16589385,0.07762062,0.20974873,-0.05366717,-0.39486995,-0.052942015,-0.2913295,-0.62504375,0.11712472,-0.38254073,-0.5506036,-0.24781737,-0.4709563,-0.38013157,0.59699273,-0.31465477,-0.056852184,-0.24313857,-0.097238116,-0.33615956,0.4018167,0.2428337,0.31517547,0.09539977,0.1157138,-0.32912084,-0.35745448,0.10353327,0.06166138,0.2431817,0.21734351,-0.09614064,0.1370813,0.49030507,0.67426044,0.03183379,0.5303016,0.38704604,0.040872496,0.22239639,-0.46982008,-0.22069965,-0.7617193,-0.5425686,-0.2846718,-0.4028155,-0.6450794,-0.2759123,-0.26019222,-0.73577726,0.42829126,0.0118036885,0.07826264,-0.061547086,0.17470981,0.3746075,-0.052969053,-0.021258144,-0.20518658,-0.10989688,-0.6273502,-0.35511371,-0.7126652,-0.5743733,0.21240237,0.85240227,-0.064808324,-0.19537805,-0.10352809,-0.33231178,0.08974747,0.0353443,0.20490687,0.4107649,0.36661085,-0.11731928,-0.6407791,0.5646465,0.02221045,-0.109316655,-0.65611196,0.04126466,0.6548029,-0.7636581,0.65451837,0.29724962,0.1566614,0.2445154,-0.42862958,-0.52811056,0.0918701,-0.25123596,0.53304935,0.1636296,-0.6242508,0.4529494,0.27483246,0.064915344,-0.653134,0.44933012,-0.04917042,-0.23953086,0.2654929,0.30791855,-0.21362135,-0.055603854,-0.14146766,0.08855089,-0.4398443,0.25748345,0.59681386,0.18958661,0.3557803,-0.04153844,-0.17915915,-0.5828367,-0.025101505,-0.6044301,-0.15408665,0.14204942,0.02014914,0.0544476,0.11118833,-0.1500551,0.43877652,-0.36166096,0.15264112,0.08317527,-0.18453696,0.28638917,0.49593508,0.1561289,-0.5163398,0.5846666,0.039246935,0.031699207,-0.18810298,0.022275753,0.5320658,0.35002086,0.29260293,-0.16551341,-0.13870662,0.1468348,0.5973662,0.2049186,0.4872545,0.17774184,-0.036772404,0.4710766,0.26697636,0.15134963,0.025394747,-0.13842425,0.1306037,0.11459185,0.17974475,0.47169283,0.1868886,0.3566044,-0.026861113,-0.15990724,0.22661148,0.21881422,-0.14128709,-0.8990792,0.3892765,0.28576767,0.44880554,0.75404304,0.02511334,-0.04300775,0.36676705,-0.47169986,0.14494325,0.29850584,0.055804566,-0.7091744,0.6703459,-0.6027857,0.29924035,-0.1569811,-0.062783495,0.15556376,0.24928239,0.25830346,0.76494545,-0.007429453,0.06617788,-0.09771147,-0.15275168,0.05491024,-0.42271,-0.0034903747,-0.5218497,-0.35267007,0.39256185,0.36103228,0.32429904,-0.28081608,-0.12205525,0.12495257,-0.16696641,0.037568763,-0.12587167,0.12373541,0.16690944,-0.6697206,-0.5867529,0.59652895,-0.28391498,0.009160883,-0.037730437,-0.48263183,0.20837352,-0.32237956,-0.26370573,-0.019667387,-0.68392956,0.18318231,-0.30904478,-0.360906,0.14847194,-0.5799515,0.38584077,0.17808339,0.025181677,-0.3685851,0.07794098,0.037573017,0.9042369,0.07002722,-0.15564157,-0.44369,0.09224547,0.3704311,-0.25048226,-0.116360076,-0.37215474,-0.10360896,-0.4579902,0.4322552,-0.007619812,-0.2279531,0.026591122,-0.12251715,-0.13227859,0.4921495,-0.3634469,-0.17386173,0.045203157,-0.064893946,-0.2158952,-0.052795522,-0.4170714,0.26096433,-0.02962459,0.112506874,0.18673088,0.04945677,-0.016921034,0.44651872,0.06923548,0.25501573,0.2102196,-0.23431015,-0.37055457,-0.12436405,0.060718235,0.19804558,0.15000273,-0.01837769,-0.30283278,-0.37224102,-0.18493924,0.08098699,-0.25554365,0.28341198,-0.040971436,-0.44944668,0.68641484,0.22168233,1.2412751,0.07336152,-0.31511334,0.0875051,0.4278494,0.12993316,0.10009417,-0.24353899,0.7697357,0.509393,-0.120136455,-0.31244066,-0.33966047,-0.30910093,0.23784825,-0.21146637,-0.0760016,-0.011934102,-0.61213523,-0.33192366,0.10035539,0.3338723,0.16274048,0.17599896,0.005899842,-0.017301457,0.09761793,0.5817868,-0.41081348,-0.11851515,0.27689824,0.08584769,0.11586975,0.2501702,-0.19082625,0.51792634,-0.587145,0.12405607,-0.63282835,0.057670303,0.15815815,-0.24720448,0.12271209,0.0025218038,0.36624497,-0.20948723,-0.27836412,-0.27231228,0.81923485,0.3257075,0.33500415,0.8554911,-0.1725534,0.112247705,0.15013419,0.5431284,1.2372197,-0.13267261,0.056861307,0.2521898,-0.22512099,-0.5249501,0.24653003,-0.20627047,0.07203801,-0.18181099,-0.3933318,-0.5412486,0.2533795,0.043759346,-0.13483393,0.1885212,-0.49424738,-0.30433467,0.5274813,-0.27166316,-0.3342398,-0.5052194,0.44386628,0.7435796,-0.52024466,-0.31678474,0.04691244,0.09250045,-0.17184673,-0.41560012,0.055864327,-0.20075665,0.35290357,0.13212651,-0.37176555,-0.01951081,0.30972993,-0.32216355,0.2002897,0.32151362,-0.20898056,0.19983569,-0.032291017,-0.14808336,1.1457375,-0.02217224,-0.12145496,-0.8144157,-0.5017439,-0.9511967,-0.44627625,0.6226879,0.0783553,0.04038942,-0.47912616,0.04571649,0.09119276,0.11468521,0.057020005,-0.41836765,0.33208826,0.084348455,0.6403438,0.11233669,-0.7758864,0.021124033,0.0292161,-0.11480265,-0.5030729,0.64245427,-0.17887828,0.64166516,0.0063079847,0.057657257,0.027065726,-0.55254734,0.22178903,-0.3935177,-0.26608503,-0.6737449,0.13409077,304 +650,0.47078353,-0.11855066,-0.7087036,-0.10919465,0.017046558,0.15623331,-0.29674533,0.4230941,-0.008211942,-0.5600849,-0.14987685,0.19703712,-0.18192169,0.27797288,-0.2848237,-0.5248858,0.00093505014,0.2923364,-0.33530828,0.37928736,-0.529774,0.3703206,-0.096659735,0.23517871,-0.02078071,0.08062203,0.4316219,0.15452594,-0.036112323,-0.2015606,0.22115809,0.29112595,-0.57926834,0.39884037,-0.09607733,-0.34686595,-0.0682821,-0.20371014,-0.24961585,-0.75886905,0.3882356,-0.93842846,0.6840992,-0.09062147,-0.37771896,0.16962062,0.15357915,0.18821573,-0.24663165,-0.014917811,0.11269759,-0.21545075,-0.40941855,-0.15056378,-0.09085362,-0.33756644,-0.6789111,0.090769544,-0.59855855,0.09657097,-0.32264093,0.3165485,-0.3266787,0.19515404,-0.16319522,0.5165189,-0.35795724,-0.2224172,0.20940956,-0.11914653,0.13015844,-0.74274623,-0.09162323,-0.19259666,0.10877088,-0.2171591,-0.14211385,0.23759057,0.18595831,0.6277853,-0.016179534,-0.24489951,-0.35429728,-0.07066636,0.18588568,0.40830606,-0.27346757,-0.4463773,-0.309271,-0.11971824,0.53287023,-0.047834046,0.0910354,-0.11013693,0.06707917,0.059064653,-0.2234448,0.3610617,0.69308937,-0.39254567,-0.15641485,0.5256355,0.70174974,-0.117889866,0.005162821,0.08935534,-0.1268486,-0.48861635,-0.18568245,-0.02713871,-0.24079186,0.3899838,-0.14968953,0.1519788,0.4164147,-0.25773466,-0.06678191,0.29499784,0.000779074,-0.013241272,-0.19261466,-0.54152864,0.37295553,-0.3719586,-0.0036248176,-0.28123024,0.63809055,0.01094226,-0.7824741,0.37920597,-0.23550497,0.06697101,-0.079199634,0.7731114,0.67912865,0.6610194,0.19348803,0.8523994,-0.5662221,-0.14680853,-0.01641308,-0.1629171,0.078813,-0.12744223,-0.18520729,-0.32028463,0.08356668,0.15720524,-0.17785653,0.065686,0.6748456,-0.4820611,-0.18106171,0.037432414,0.5302294,-0.38786513,-0.102695234,0.77072644,1.2341207,1.0764757,0.0489401,1.2877532,0.29555386,-0.14836214,-0.27577782,-0.038492315,-0.8454683,0.3962559,0.4593132,-0.10530105,0.47270474,0.218543,-0.13776071,0.36397582,-0.62361276,-0.313748,-0.16290428,0.45056474,-0.032855876,-0.010110745,-0.56257755,0.0029782148,0.3516397,-0.024750806,0.283505,0.3687687,-0.3873895,0.48166677,0.17818049,0.9336253,-0.31269258,0.22926813,0.13575676,0.25003302,0.19554329,-0.05958345,-0.01730962,-0.039735757,0.43192118,0.012832422,-0.618934,0.01078889,-0.1688353,-0.5599512,-0.31107503,-0.16081418,0.09592675,-0.060563482,-0.0023391615,-0.23862149,-0.039906006,-0.4753167,0.228161,-2.3320491,-0.25636408,-0.13984719,0.22964098,-0.14949605,-0.43411872,-0.23344499,-0.4878403,0.56740385,0.32477358,0.43738672,-0.5670813,0.40409455,0.27367273,-0.35729665,-0.16417429,-0.6219663,0.06277374,-0.19351003,0.37617314,0.062963955,-0.33018652,-0.030186048,0.354477,0.5621447,0.02774883,-0.060392655,0.5531711,0.20235561,-0.008707175,0.29554394,-0.004249912,0.60787964,-0.49457186,-0.30322936,0.5317227,-0.46205285,0.20318407,-0.28828576,0.18382035,0.25865176,-0.49203014,-0.96953046,-0.6985767,-0.2888317,1.5624828,-0.36186913,-0.5937621,0.10834455,0.013330107,-0.40050924,0.03287223,0.35254493,-0.38735098,-0.0062542283,-0.8489171,0.026769735,-0.12802733,0.3507985,-0.11598861,0.05068094,-0.65618074,0.61014616,-0.27358672,0.5278892,0.44336012,0.3793844,-0.43362778,-0.5032177,0.064056225,1.3401307,0.50439036,0.12044974,-0.27887,-0.10142549,-0.1687563,-0.10317286,0.0864339,0.50574875,0.7474315,0.075504124,0.09229489,0.22617052,-0.12414937,0.10697523,-0.06018565,-0.44494453,-0.2499269,0.15550177,0.7247268,0.35593864,-0.20071037,0.2595354,-0.10233085,0.26955622,-0.19437853,-0.37527606,0.52030075,0.86698246,-0.26492766,-0.43511522,0.75154793,0.39748648,-0.22040719,0.7138592,-0.74260956,-0.47863337,0.16961966,-0.1423735,-0.24571507,0.08425302,-0.45962617,0.2950742,-0.91186273,0.40664613,-0.31812716,-0.69755036,-0.7514128,-0.19829409,-3.2488973,0.23227254,-0.21544477,-0.076711334,-0.11902834,-0.20945357,0.5164852,-0.51291424,-0.72063416,0.1257039,0.16992092,0.67734784,-0.03664093,-0.102412075,-0.116238795,-0.29610988,-0.1565809,0.20235474,0.34718233,0.19346283,0.23726964,-0.51952046,0.029396841,-0.21359554,-0.4489318,-0.19426605,-0.4625201,-0.26785666,-0.21932903,-0.47089434,-0.28149536,0.63099515,-0.39651057,0.044682544,-0.27510962,0.19843353,0.023327768,0.37403056,-0.31282732,0.1809997,0.13029388,-0.3543638,0.18974553,-0.17413968,0.3529814,-0.014376977,0.21346578,0.45359483,-0.55741954,0.023495693,0.5442054,0.6997754,-0.02263528,0.9181434,0.5689714,-0.09174791,0.12475993,-0.17014049,-0.25891495,-0.57553107,-0.29722854,0.12695378,-0.50793445,-0.33353564,-0.046695974,-0.35677212,-1.1252878,0.6726032,-0.2649191,0.32071292,-0.07855213,0.4619915,0.30880404,-0.038114734,-0.13052474,-0.17007142,-0.22591455,-0.2948722,-0.42957255,-0.7215861,-0.48086688,-0.2040764,1.3063018,-0.16435812,0.060903564,0.01254339,-0.017343283,0.19285771,0.09080986,0.2457502,0.11580718,0.31000522,0.14307001,-0.6279584,0.20645434,-0.31958386,0.010053525,-0.61902577,0.14369221,0.6959865,-0.56744504,0.36594582,0.59370935,0.08626097,-0.2690225,-0.7729517,-0.12756619,0.10873151,-0.09273263,0.62645745,0.34952858,-0.8516203,0.7129227,0.3431268,-0.32080188,-0.7946736,0.37766123,0.053010747,0.08697668,-0.14173214,0.46624425,-0.19827828,0.020155929,-0.29976895,0.19658555,-0.35563594,0.26509267,0.12160147,-0.13853222,0.6308421,-0.4536847,-0.15821497,-0.6822853,-0.07129433,-0.72806126,0.006403177,0.052077875,-0.0048983255,-0.014278495,0.11539734,-0.046721797,0.7146379,-0.5467444,0.042837657,-0.12408941,-0.46267134,0.47441167,0.6516788,0.3715434,-0.27506536,0.6185516,0.007923521,-0.11743653,-0.49545592,-0.09470913,0.5744337,0.009791017,0.16984454,0.061996046,0.12936264,0.30777806,0.64710927,0.34390244,0.47586286,0.08192326,-0.2935714,0.16157572,0.11220518,0.2830796,-0.027095221,-0.43756703,-0.14267768,-0.16495946,0.11942502,0.46558952,0.18138696,0.60070646,-0.27340582,-0.21008825,0.1166428,-0.0035300346,-0.06493114,-1.2419446,0.5857377,-0.005725008,0.58585286,0.41080257,0.05194082,0.09407386,0.49437472,-0.11083751,0.008208286,0.18221903,0.054528926,-0.3255615,0.5404076,-0.69408214,0.35471052,-0.044141926,0.09643555,-0.017570872,0.0032535149,0.5241041,0.8857132,0.04799893,0.23975998,-0.081029736,-0.0896529,0.24665986,-0.30083704,0.41157407,-0.36084655,-0.1465244,0.889905,0.2343687,0.5401375,-0.09197552,-0.16190082,0.026025971,-0.143411,0.19823082,-0.16476782,0.1534794,-0.37076408,-0.52652305,-0.24590541,0.36699268,0.5276288,0.15691978,0.078438774,-0.2519673,0.20623611,0.029152807,-0.053010423,0.007120506,-0.46583194,-0.11647114,-0.24189447,-0.27737486,0.29898354,-0.38515538,0.1628609,0.1757337,0.08578697,-0.4679982,-0.009877091,0.18010423,0.64907587,0.11370211,-0.22005361,-0.24662375,0.08101165,0.27045006,-0.36956698,0.10794711,-0.3143973,0.13344349,-0.6579867,0.41553137,-0.2904576,-0.3170973,0.4598292,-0.24717912,-0.1139382,0.47119838,-0.21763131,-0.13035299,0.19050871,-0.20033875,-0.17292716,-0.40629193,-0.26135474,0.065471336,-0.08917032,-0.026422087,-0.13900341,-0.024702348,-0.1575205,0.40987095,0.2402905,0.10499908,0.6260771,0.24653251,-0.4967044,-0.090307474,0.031149754,0.66544753,0.0046463576,-0.13622367,-0.5784031,-0.6728195,-0.2105965,0.28287023,-0.0765481,0.12570389,0.1112016,-0.4224993,0.6211684,0.06941192,0.8901622,0.028275423,-0.3192988,-0.1999746,0.7309989,0.05127174,-0.17744239,-0.20572431,1.020816,0.69478863,-0.26488063,-0.1012477,-0.57755226,-0.12548915,0.20238596,-0.33205777,-0.33621165,-0.19580522,-0.61051995,-0.26720476,0.30485427,0.42187995,-0.033637784,-0.094452366,0.18172987,0.32593074,0.17946087,0.26546595,-0.5538183,0.164903,0.5632567,0.13299687,-0.039852627,0.12418527,-0.38291252,0.15737702,-0.697224,-0.050334197,-0.24233821,0.09583926,0.005070528,-0.45567575,0.3205856,0.14642893,0.2595321,-0.14966123,-0.3182368,0.011952902,0.48649704,0.031068513,0.07719103,0.7120184,-0.31111652,0.14374259,-0.0068207243,0.39712965,1.2038133,-0.23118803,0.17449428,0.10049543,-0.2458226,-0.64036584,0.3309511,-0.39920232,0.25598356,-0.18255237,-0.44611895,-0.5527657,0.21717669,0.17241032,0.062174734,0.17062117,-0.3578698,-0.42498603,0.056128856,-0.3623408,-0.063114494,-0.1567567,-0.08529287,0.60956836,-0.3836014,-0.28096244,0.07575267,0.6606339,-0.15822728,-0.72100043,-0.14417471,-0.24287303,0.2646163,0.15671286,-0.2652138,-0.09708619,0.016476393,-0.42262834,0.191705,0.22191039,-0.25449777,0.038391396,-0.32021806,0.250171,0.48263714,-0.06385783,0.13292998,-0.5398435,-0.37040117,-1.094698,-0.21443762,0.32989663,0.23539744,-0.059853777,-0.855325,0.08644732,-0.38228434,0.07979318,0.080891095,-0.3547854,0.3469583,0.14751007,0.46651077,-0.044511136,-0.6468863,0.04242966,0.024743594,-0.14508882,-0.33268547,0.77214694,0.055997536,0.8654014,0.06853946,0.20202805,0.10525792,-0.83992296,0.17208593,-0.21958512,-0.29197907,-0.6131825,0.038733426,312 +651,0.27585092,-0.2706758,-0.4821799,-0.17857526,-0.20575942,0.26084107,-0.14715181,0.26737326,0.19940928,-0.31684384,-0.068095736,-0.09968241,-0.09909804,0.4935908,-0.07057873,-0.73941714,-0.04934778,-0.045299407,-0.6378618,0.29992026,-0.5214259,0.27546766,0.098981254,0.47338587,0.07154376,0.3204662,0.14947072,-0.06342547,-0.09790724,-0.110076316,-0.17467941,0.10296451,-0.59732115,0.12864545,0.060493,-0.22275805,-0.122224055,-0.42904618,-0.26484787,-0.62374014,0.3627009,-0.8675877,0.34456584,-0.13038148,-0.38035405,0.12576804,-0.09925724,0.32992655,-0.3092995,-0.016645074,0.1793348,-0.10757505,0.10322281,-0.15271623,-0.11382938,-0.47861516,-0.5470141,0.08398034,-0.50316226,-0.18857537,-0.065808296,0.15627632,-0.3311713,0.17669024,-0.16961244,0.32070085,-0.3882945,-0.013069093,0.2741768,-0.2927254,0.16936022,-0.4207691,-0.13340716,-0.08232916,0.2289579,-0.00020417801,-0.18438402,0.07153105,0.4735995,0.58346677,-0.0045605185,-0.12698244,-0.18400568,-0.10360587,0.17150429,0.5481561,-0.022449898,-0.431263,-0.2907994,-0.16656646,0.16488674,0.1539113,0.1987229,-0.4667927,0.02745339,-0.014062403,-0.2534331,0.23847087,0.45867968,-0.31815705,-0.19395575,0.3222858,0.51244754,0.067084186,-0.18935345,0.14603269,0.013401877,-0.45909163,-0.1206516,0.11097732,-0.1001866,0.58569044,-0.10698489,0.39770553,0.722511,-0.043314584,0.35222933,-0.10168958,-0.22335196,-0.2791273,-0.30652884,-0.10888036,-0.01569443,-0.3927081,0.003355329,-0.2945145,0.7012186,0.14765298,-0.9901944,0.39181864,-0.4223922,0.1063846,-0.13897315,0.65971065,0.6867345,0.2626193,0.17046516,0.6907657,-0.55485344,0.011893117,-0.02442818,-0.29750153,0.1259236,-0.08007913,0.11669334,-0.47254893,-0.023260068,0.12452852,0.005008092,-0.02772174,0.24277364,-0.37197545,-0.045392375,-0.058997113,0.6659178,-0.38446248,-0.06458695,0.799585,1.0111222,0.7214522,0.14182077,1.3589541,0.34214953,-0.027529286,0.2264479,-0.30098632,-0.56451327,0.13418825,0.41284788,0.47111323,0.3933077,0.058587376,0.024337191,0.5653862,-0.09523304,0.2095159,-0.093226925,0.12426163,0.050142623,-0.12014067,-0.26220274,-0.31066245,0.19191024,0.05336976,0.021214526,0.29510525,-0.24715516,0.55604094,0.19186586,1.6009268,-0.075804606,0.16958605,-0.03777868,0.40029445,0.09970289,-0.29933426,-0.14519098,0.27936298,0.31890142,-0.1460372,-0.6314005,0.1660149,-0.12827352,-0.5638486,-0.16460826,-0.34227324,-0.2140881,-0.09552685,-0.43815142,-0.082256556,0.007658087,-0.32377994,0.34111103,-2.5651026,-0.23820983,-0.27632335,0.3268542,-0.34452137,-0.3122214,-0.06543779,-0.32299107,0.21490392,0.48049882,0.3076196,-0.8329915,0.43446767,0.36577055,-0.16659784,-0.22341944,-0.6700347,-0.044589557,0.029934768,0.2174696,-0.04532508,-0.065404154,-0.1700237,0.24066775,0.5930995,0.06855281,-0.04750859,0.1695896,0.5237137,0.14033026,0.50246996,0.09543231,0.5567119,-0.10765545,-0.07395134,0.32782745,-0.5083262,0.4917335,0.13770501,0.26950675,0.25904614,-0.40580562,-0.6940438,-0.79533124,-0.49057028,1.3166292,-0.46764275,-0.4243632,0.25215274,0.005944284,-0.31451637,-0.10178639,0.6211583,-0.13962267,-0.011733862,-0.7250872,-0.06343626,-0.22554165,0.32549235,-0.0895787,0.018468142,-0.27971572,0.6985982,-0.095169455,0.53651404,0.31046316,0.12628157,-0.098354265,-0.36664647,0.04009614,0.86075526,0.29427,0.060415845,-0.1344462,-0.12981471,-0.22901243,-0.2401507,0.10289807,0.5257565,0.66419196,0.19576328,0.022825507,0.32000974,-0.23642203,0.03493367,-0.09088676,-0.32390186,-0.08547454,0.08234663,0.6255688,0.7611923,-0.24570847,0.33127278,-0.29737416,0.13012362,-0.18781151,-0.51909006,0.6155514,0.6269341,-0.1645379,-0.1735277,0.44719827,0.41150236,-0.62498534,0.27934247,-0.49859598,-0.20361497,0.6145164,-0.010375523,-0.4206373,0.19661961,-0.28329355,0.009784672,-0.9633935,0.23239096,-0.14902073,-0.5062267,-0.48474562,-0.09686614,-3.7537549,0.21630113,-0.09865689,-0.38578665,-0.21933994,-0.23068087,0.3999139,-0.5946201,-0.46715766,0.08050413,0.06638668,0.44363695,0.030511416,0.173958,-0.36132428,-0.008333834,-0.2813781,0.21199283,0.046252362,0.23145153,-0.020362396,-0.26394576,-0.029615998,-0.26872176,-0.5236288,0.07647789,-0.59436,-0.68917537,-0.14126597,-0.376141,-0.23566176,0.6048362,-0.2909765,-0.04711026,-0.26882726,-0.14898556,-0.37170094,0.57069755,0.1538011,0.1327238,0.078240946,0.026084313,-0.2086189,-0.4327351,0.1837417,0.08084405,0.40793544,0.34881005,-0.1595917,0.1487588,0.55507886,0.6377618,0.18128523,0.53670067,0.20603155,-0.023081256,0.36067578,-0.36828595,-0.19345477,-0.49533755,-0.29725748,-0.056296103,-0.37545493,-0.47888023,-0.17153336,-0.24439773,-0.71445435,0.25734875,0.12854363,-0.063427396,-0.120155536,0.26305872,0.38368383,-0.05038878,0.03736063,-0.058911126,-0.15767814,-0.57077533,-0.45033106,-0.6697041,-0.66702396,0.41524285,1.0153235,0.044820823,-0.027968833,-0.0828389,-0.3778658,0.11650208,-0.013838727,0.21426226,0.16686174,0.21155876,-0.29935685,-0.6775882,0.5209572,-0.22223656,-0.19201726,-0.607103,-0.0079331035,0.7331108,-0.6129042,0.6359234,0.31232867,0.14756563,0.057170216,-0.43366602,-0.22523771,0.069419935,-0.2125267,0.40118298,0.23338835,-0.53324133,0.36220503,0.23024805,0.075637706,-0.6227877,0.43376276,-0.03852041,-0.038246486,0.07532064,0.35148913,-0.16234091,-0.13998426,-0.092558034,0.06562545,-0.51325274,0.17797525,0.447298,0.20222506,0.65387547,-0.010798097,-0.2162371,-0.43394783,-0.012873303,-0.5983061,-0.13224734,0.15138343,0.03261463,0.33757064,0.13235578,-0.09874054,0.38671395,-0.3907254,0.12025734,0.07657095,-0.14722627,0.31972572,0.49734005,0.32247272,-0.49788317,0.50708,0.088832684,0.1659595,-0.03387229,0.06330439,0.49868834,0.52039534,0.29238856,-0.16773976,-0.1733068,0.17048264,0.72224176,0.2597151,0.46252272,0.23127677,-0.14568454,0.38070253,0.09951002,0.13552417,-0.0469738,-0.31150442,0.009214585,0.07003736,0.22849461,0.4654745,0.08960828,0.423103,-0.09621068,-0.37701592,0.18023922,0.13926458,-0.18322222,-1.0882171,0.3023482,0.32954836,0.6503019,0.44302052,-0.0047868853,0.00019992315,0.48817113,-0.28295648,0.16533376,0.28195268,0.1070908,-0.6279797,0.6732064,-0.5924228,0.3162643,-0.14165217,0.06690483,0.15059407,0.045682278,0.29672647,0.80838054,0.012609353,0.035338398,-0.069325,-0.32587087,-0.024549764,-0.42827335,0.1851403,-0.5504212,-0.24097061,0.48970237,0.43571642,0.30953425,-0.2570666,-0.022032376,0.14935248,-0.0010417516,0.0086654425,-0.107098,0.040918075,0.07316108,-0.7227595,-0.47327915,0.56843245,-0.18592359,0.009350345,0.09755044,-0.42222193,0.33829495,-0.18345016,-0.32062033,0.014546852,-0.6349024,0.13311443,-0.23257373,-0.52606165,0.026801748,-0.3654984,0.13633315,0.15457629,-0.019339014,-0.24531664,0.2072178,0.16841719,0.9471114,0.04218834,-0.15252362,-0.43460143,-0.051954474,0.24533628,-0.33292675,-0.19297926,-0.401458,0.09639929,-0.4276532,0.3953892,-0.040177125,-0.23056982,0.12896806,-0.050897516,0.048786458,0.43009853,-0.355955,-0.150283,0.061524827,0.016216727,-0.22333942,0.08345591,-0.36195856,0.38008097,0.22175393,0.100623965,0.18896416,-0.009342686,-0.019110648,0.352543,0.09675296,0.28658321,0.4809569,-0.081102446,-0.34268555,-0.18341273,0.02992742,0.2949929,0.16845027,-0.10398129,-0.36767837,-0.45164013,-0.23627989,0.4545927,-0.22549377,0.25568438,0.008880322,-0.4735018,0.7395712,0.12727715,1.0572791,0.050266393,-0.36622202,0.12645382,0.34288627,0.1396758,0.10187577,-0.36277872,0.84324515,0.45205367,-0.24276465,-0.23538086,-0.3913363,-0.329723,0.23753521,-0.33479822,-0.12060642,-0.07600779,-0.7677002,-0.18785563,0.08100064,0.25618848,0.025970798,0.05806996,0.113379866,0.076888084,0.016120842,0.44819623,-0.5712717,-0.009337526,0.2592282,0.085844316,0.07917034,0.13382027,-0.41070175,0.49260384,-0.8152541,0.1256976,-0.54915416,0.03471673,0.13635652,-0.32044697,0.15463397,0.053898938,0.39229298,-0.30345446,-0.45294073,-0.35157406,0.81479937,0.34204578,0.32875702,0.7320682,-0.16724947,-0.06767537,0.15430944,0.58859897,1.3411925,-0.039774854,0.13914594,0.2334651,-0.27561095,-0.6180225,0.1896453,-0.26858628,0.20408246,-0.05899686,-0.27708444,-0.3965932,0.39003894,0.15454078,-0.0055676354,0.10145523,-0.39261848,-0.3909535,0.43138152,-0.41191483,-0.33092028,-0.45364138,0.23426065,0.71433896,-0.3777494,-0.2074125,-0.08421625,0.3642493,-0.29471076,-0.44565853,0.02597387,-0.281027,0.25706723,-0.0023144025,-0.37421972,-0.1461434,0.22791865,-0.3651142,0.22632116,0.19331916,-0.25762063,0.09474162,-0.08954739,-0.129799,1.0323739,0.12645207,0.0064886245,-0.8498792,-0.5508915,-0.77721816,-0.5128075,0.19298568,0.110076234,-0.08348041,-0.46504566,-0.07681457,-0.026139058,0.1779528,0.1523767,-0.471564,0.38334948,0.10510078,0.6393699,0.09340365,-0.90936685,0.058891542,0.088565305,-0.16881353,-0.6376208,0.5755397,-0.08941304,0.73458934,0.06686302,0.085497625,-0.0031267186,-0.5136729,0.17377903,-0.46442926,-0.36727375,-0.79124254,0.24350587,316 +652,0.29736257,-0.40366513,-0.46440065,-0.069834955,-0.31536707,0.07501332,-0.17165579,0.37037402,-0.031516213,-0.56511563,-0.0017748338,-0.16473058,-0.079543,0.7016665,-0.2003561,-0.5319224,0.086977534,0.14481057,-0.62382823,0.65429634,-0.45642436,0.39201838,0.19368336,0.15559857,0.16090634,0.23881595,0.35322183,-0.1174398,0.008810291,-0.09408594,-0.23956439,0.06191707,-0.3945766,0.23627782,0.02289731,-0.48369154,0.13830091,-0.29712155,-0.2663894,-0.6077369,0.30110067,-0.8292409,0.40020588,-0.027481684,-0.28951386,0.06451604,0.18173884,0.32671928,-0.16646336,0.09627933,0.055235207,0.027486425,-0.15756112,-0.052911278,-0.11374609,-0.5070844,-0.588876,0.0070605073,-0.70184004,-0.47064796,-0.16675986,0.12662114,-0.40394306,0.15134464,-0.16054668,0.14018759,-0.6085013,-0.18119527,0.16257344,-0.14777206,0.19096011,-0.5620408,-0.01990519,-0.17961165,0.09358786,-0.21717443,-0.15852763,0.40037617,0.32236263,0.5498849,0.021213265,-0.13837677,-0.10943897,-0.29573834,0.2365863,0.66648203,-0.11432791,-0.36063752,-0.18039306,0.08788105,0.27542028,0.20835064,0.16505782,-0.3933472,-0.110010736,0.03132104,-0.2749782,0.17291988,0.36804396,-0.4875528,-0.28178224,0.33492443,0.51503,0.055556253,-0.07544787,0.15216771,0.005127102,-0.49045834,-0.20255207,0.109046325,-0.19865505,0.43541864,-0.0894406,0.4971166,0.5996047,-0.19576654,0.21511252,-0.18539836,-0.1477263,-0.24370915,-0.008965263,-0.25080216,0.111249134,-0.5451224,0.1095365,-0.16695091,0.88684434,0.14832088,-0.87871903,0.45332578,-0.54487705,0.15637729,-0.22507344,0.6167912,0.6501722,0.30554846,0.20969103,0.59284234,-0.34864727,0.11673575,-0.1187799,-0.35332215,0.080116436,-0.26832694,-0.10668357,-0.4993922,0.05254134,0.032951947,-0.163574,-0.17257136,0.673913,-0.5722046,0.057373736,-0.0051218364,0.7692111,-0.32223225,-0.08165956,0.62154955,0.89804995,0.9328584,0.15395387,1.1133344,0.32809794,-0.22536832,0.20576955,-0.24038903,-0.6795533,0.2486732,0.78339475,0.4024814,0.46521452,0.16386105,-0.061499033,0.50652266,-0.39224136,0.148867,-0.19149701,0.10810467,-0.10960826,-0.11867304,-0.6878386,-0.3093433,-0.06718339,0.09282288,-0.11313001,0.39363447,-0.2700569,0.48580965,0.05030245,2.0107875,-0.090082645,0.21224369,0.068981305,0.43943322,0.09150558,-0.24380864,-0.08288991,0.10131003,0.39926603,0.019040246,-0.66758657,0.08295938,-0.25551212,-0.5356477,-0.26140773,-0.3935828,-0.08294909,-0.17072989,-0.47369325,-0.10970921,0.053503558,-0.3721363,0.3730368,-2.4756927,-0.3175739,-0.26913592,0.17574212,-0.41752222,-0.30836317,0.07985772,-0.34386972,0.3477081,0.5002602,0.6085686,-0.6496187,0.39055347,0.37458012,-0.30256507,-0.043311544,-0.7269519,-0.12286528,-0.10006286,0.3970041,-0.10533877,-0.14119895,-0.092269935,0.3408218,0.42178887,-0.2061236,0.04366886,0.3770869,0.31942227,0.26043907,0.5669642,-0.062474765,0.448518,-0.31469256,-0.16107075,0.33625683,-0.036682937,0.3396158,-0.0019594522,0.16140455,0.19938177,-0.6624136,-0.9332809,-0.677707,-0.5108903,1.1636572,-0.40863997,-0.34177536,0.44517472,-0.22626194,-0.17897107,-0.17687152,0.44565183,-0.1717481,-0.020507416,-0.80752224,0.13733539,-0.0062093367,0.29552555,0.047475092,-0.14072847,-0.3866282,0.5317203,-0.15023735,0.4631351,0.2844261,0.16988556,-0.15200637,-0.38272953,0.023858968,0.96365136,0.53395486,0.16891593,-0.15464228,-0.3163784,-0.34951794,-0.14255628,0.15908502,0.20261233,0.8127849,0.12577114,0.13834433,0.30204818,-0.11537385,-0.049035944,-0.17081563,-0.21819374,0.053821947,0.14477088,0.65055966,0.3777014,-0.10597052,0.6056944,-0.24228737,0.20233926,-0.14025977,-0.5187339,0.2950894,0.7355686,-0.08821149,-0.010153546,0.6850084,0.6828988,-0.31732035,0.4534599,-0.77638346,-0.30220267,0.46008852,-0.14043853,-0.38286972,0.24586083,-0.3541636,0.2642453,-1.2172977,0.37929615,-0.23798622,-0.4429088,-0.45740443,-0.14620301,-3.3606372,0.27380326,-0.09555503,-0.34257317,0.07088778,-0.07285539,0.3179286,-0.7205916,-0.6396973,0.046814535,0.0011677926,0.58025205,0.064332046,0.030271437,-0.1436324,-0.15728714,-0.18252946,-0.0069002234,0.01725798,0.32947534,-0.058538444,-0.4751976,-0.05822798,-0.29028672,-0.36508867,0.15314986,-0.6853203,-0.70594186,-0.30034375,-0.4679407,-0.34192568,0.575254,-0.10796077,0.04010795,-0.21616665,-0.1309968,-0.0958753,0.31659892,0.2855338,0.07550538,0.12056624,0.04514893,-0.21807347,-0.37097165,0.11953615,0.029123453,0.3192627,0.373198,-0.12932001,0.28375614,0.8026368,0.5566272,-0.04136494,0.668162,0.6274483,-0.19259275,0.19464524,-0.31055692,-0.1289122,-0.5093787,-0.4260975,0.08634409,-0.33346742,-0.7263155,-0.030233653,-0.12898557,-0.68860596,0.5646196,-0.038143992,0.11572161,-0.042825673,0.14214109,0.324724,-0.13882841,-0.1832239,-0.15343586,-0.14343841,-0.6898666,-0.30944803,-0.81596494,-0.5464291,0.21734887,1.2429621,-0.18599749,0.03235285,0.0040435884,-0.315043,0.055107977,0.007941227,0.101721436,0.4383993,0.15033846,-0.14670624,-0.8076018,0.5454329,-0.012231433,-0.025069889,-0.32013825,0.11588095,0.62411404,-0.6627463,0.20388062,0.22601333,0.12803926,0.024163123,-0.3947533,-0.16827895,0.20819356,-0.29974154,0.3781916,0.021139305,-0.76420265,0.5076624,0.4506135,-0.33226186,-0.74311405,0.44286272,0.013152366,-0.0923009,-0.062219225,0.23968282,0.14002839,0.15963028,-0.298746,0.2603064,-0.61608475,0.36954334,0.46822885,0.036220606,0.31657857,-0.3014025,-0.25545105,-0.6121173,0.13234733,-0.47239658,-0.14909866,0.14323719,0.040693264,0.004409735,0.21980835,-0.009375067,0.4258771,-0.31616205,0.010401941,0.072982535,-0.39232016,0.30083412,0.4665487,0.47010356,-0.4186285,0.6649199,0.06203481,0.021796644,-0.44400904,-0.08947928,0.42098072,0.22590153,0.22639146,-0.15113346,-0.20670308,0.45558092,1.0774566,0.22768886,0.42168573,0.11083247,-0.116243415,0.1368181,0.13809076,0.041227598,0.13752137,-0.39556435,0.048584186,-0.0032017964,0.13888264,0.5789713,0.17784196,0.33571228,-0.17004094,-0.304656,0.15096536,0.20539664,-0.13376188,-1.109124,0.31624654,0.23951387,0.51107633,0.6007923,0.024529237,0.11995609,0.636371,-0.35034576,0.1839682,0.23146787,-0.15453993,-0.6708877,0.65653616,-0.72314614,0.48974764,-0.12523529,-0.003940798,0.09539162,-0.06322798,0.42452276,0.8237,-0.011276589,0.11150703,-0.025800338,-0.29004878,-0.011934086,-0.4285567,0.007385566,-0.53294283,-0.40156043,0.56447816,0.35207942,0.2767286,0.051320307,0.01224752,0.10057775,-0.110875204,0.3792536,-0.12414045,0.09784056,-0.10108078,-0.57808197,-0.29928392,0.67568266,0.07181453,0.2153016,-0.03118114,-0.30883157,0.2852495,-0.18437494,-0.18188137,0.06604861,-0.67036355,0.22139798,-0.31660807,-0.34722206,0.31185883,-0.20231721,0.25795645,0.15483944,-0.039520107,-0.34835613,0.24825563,0.075693056,0.7426698,-0.062013544,-0.30976707,-0.13893595,-0.026273109,0.09641051,-0.26554787,-0.024910735,-0.28065902,0.08065951,-0.8517743,0.5223087,0.0058694826,-0.417849,0.24271171,-0.12845519,-0.019514916,0.44706255,-0.06147214,-0.1132648,-0.24891439,-0.09382912,-0.20630154,-0.22874434,-0.12810796,0.24444333,0.11315485,-0.04351823,-0.07248349,-0.035931434,0.06835038,0.54661477,-0.132301,0.35187307,0.26004413,0.12360132,-0.46760005,0.0029986869,0.17214128,0.32767737,0.0085282065,0.14612478,-0.17988011,-0.22800782,-0.19737123,0.11915871,-0.35245222,0.4096499,0.102688976,-0.5060286,0.7843996,0.11843724,1.2434862,-0.02044962,-0.32630274,0.10648884,0.35896125,0.0021085693,-0.025190344,-0.24110533,0.8564514,0.5835609,0.028306391,-0.21897894,-0.5010872,-0.32921618,0.41743448,-0.25102407,-0.13625129,0.057055514,-0.53947705,-0.31717584,0.252495,0.26333252,0.097229235,0.042518914,0.24144538,0.038311925,-0.03753316,0.22216612,-0.42968288,-0.099574395,0.38530672,0.15625653,0.08036023,-0.017325737,-0.4973036,0.408646,-0.6938857,0.23795758,-0.25875103,0.13120602,0.02074005,-0.23786555,0.24066493,0.14623557,0.43087536,-0.20152377,-0.34320337,-0.13516048,0.76195246,0.13091503,0.1319773,0.7238637,-0.36454457,0.26192042,-0.050243203,0.25213897,1.1153349,-0.25822443,-0.054217998,0.16085547,-0.27558193,-0.64647126,0.43306285,-0.28403884,0.11997041,0.10124194,-0.44753736,-0.6384395,0.20136243,0.3964289,-0.049542665,0.11650908,-0.29014155,-0.2661734,0.1922907,-0.33750865,-0.32677788,-0.45950222,0.17017937,0.6005762,-0.38892204,-0.26080528,0.15542406,0.28501374,-0.29011786,-0.43155226,0.028306412,-0.18215631,0.16173424,0.121911354,-0.36200967,-0.073641226,0.1680323,-0.2737137,0.033546165,0.36626858,-0.42348868,0.10611224,-0.38467297,-0.04428238,1.103456,-0.1779961,-0.3795838,-0.77223617,-0.54642737,-0.7816036,-0.506684,0.76189476,0.19097295,0.046222202,-0.5754864,0.1824868,-0.018432688,0.05090878,0.022485444,-0.42251408,0.4184998,0.10796302,0.38660234,-0.037055768,-0.7147674,0.2641862,-0.007088221,0.103372134,-0.43642393,0.51404196,-0.08347858,0.9317973,0.11627315,-0.030088017,0.2011093,-0.47213295,0.07964998,-0.17704354,-0.20269898,-0.7315539,0.07874254,317 +653,0.4404702,-0.27357876,-0.5565433,-0.10301788,0.0022624182,0.23981775,-0.1972521,0.4569587,-0.0010004685,-0.57983345,-0.059660144,-0.18520229,0.08207773,0.3449751,-0.18196464,-0.43465754,-0.122787714,0.30518717,-0.41261798,0.4890378,-0.4961601,0.30700538,-0.08566888,0.40195215,0.0148406625,0.21924862,0.13315135,-0.12732102,-0.34854537,-0.20105402,-0.09069256,0.3765743,-0.5141524,0.029992612,-0.1071848,-0.60368574,-0.040680222,-0.47316054,-0.25634858,-0.71242565,0.24359617,-0.9719015,0.5825592,0.08681404,-0.2829898,0.29269102,0.027555594,0.31433025,-0.072435215,0.1401871,0.19217774,-0.010986952,0.019490518,-0.33167428,-0.35639074,-0.5254042,-0.42791402,0.12011652,-0.38384432,-0.29168144,0.07279542,0.1459998,-0.1730368,-0.013869861,-0.18754485,0.18139093,-0.43440887,-0.16794194,0.14585169,-0.099228546,0.41437536,-0.5212616,-0.24608073,-0.1321803,0.29668915,-0.3769369,-0.053027943,0.069031924,0.33628258,0.5243486,-0.18337396,-0.010718559,-0.37390006,0.007148633,0.110950194,0.6007674,-0.3575896,-0.5688474,-0.16739517,-0.083918616,0.19674642,0.12696558,0.13882364,-0.22712325,-0.06183582,-0.1027685,-0.32745954,0.14689308,0.36457193,-0.56904644,-0.33561918,0.4149308,0.6045043,0.09329428,-0.19077934,-0.077710405,0.035155594,-0.3963053,-0.08476692,0.27509898,-0.17313187,0.5450671,-0.10158697,0.33413947,0.5720026,-0.052540634,0.21547808,-0.10352687,-0.05391023,-0.21472117,-0.17989555,-0.3507523,0.17106694,-0.2520906,0.046250775,-0.32161507,0.66864777,0.09797459,-0.7994188,0.51734704,-0.63228446,-0.034753226,-0.026334655,0.50122,0.37358445,0.44017267,0.065580964,0.42725056,-0.26784986,-0.079611905,-0.20699646,-0.109751225,0.0058469702,-0.09830999,-0.021522105,-0.4941804,0.27571785,0.10688327,-0.13703138,0.08005372,0.52594,-0.4552404,-0.13737458,0.22243008,0.8071905,-0.328666,-0.0087245,0.7045069,0.97152096,0.79615486,0.0030731468,1.3477042,0.27824232,-0.32341984,0.03670456,-0.33871982,-0.74840575,0.27352005,0.4256546,-0.41088045,0.49490407,0.14565049,-0.06077815,0.3315581,-0.20811044,0.12934838,-0.37457135,-0.14418104,0.044924956,-0.024987945,-0.3764126,-0.23005581,-0.055955894,-0.031408567,0.17631334,0.20668125,-0.24859406,0.32585767,0.14152227,1.9152973,-0.21067502,0.14232261,0.0523048,0.39257208,0.09749388,0.0040778313,0.046773337,0.29474837,0.32644254,0.023074461,-0.4465321,0.14529315,-0.06810319,-0.6012291,-0.16742764,-0.094790496,-0.15127836,0.119727366,-0.43461642,-0.057839375,-0.10537647,-0.16537109,0.31104615,-2.5499365,-0.20722674,-0.06792558,0.18389463,-0.3359123,-0.4562103,-0.25312516,-0.34107488,0.37728888,0.38491744,0.44389135,-0.62980807,0.51005304,0.26692083,-0.3601408,-0.14312147,-0.59028494,-0.15527579,-0.07597505,0.19534995,-0.17126815,-0.084650405,0.11556253,0.05766199,0.29047143,-0.15140167,0.049691044,0.31074393,0.3992806,0.2400706,0.3136577,0.031046228,0.49709845,-0.24506181,-0.25302002,0.35805878,-0.4469679,0.36155587,0.104830466,0.12741168,0.2818268,-0.5969313,-0.9206455,-0.8100944,-0.4085094,1.1382874,-0.118116654,-0.39445627,0.11239297,-0.16404827,-0.5884688,-0.17069629,0.43172786,-0.10702874,-0.09200729,-0.8412376,-0.05219569,-0.1217189,0.33288097,0.03441197,0.008167707,-0.5349692,0.5534627,-0.06932858,0.5206101,0.42741993,0.13028263,-0.18055807,-0.37002468,-0.105412535,1.0414561,0.21795982,0.17233603,-0.1684819,-0.21479757,-0.49502227,0.15596148,0.09226214,0.36831233,0.60976434,0.05519635,-0.021827493,0.28516588,0.04840978,0.11187995,-0.12679349,-0.17838955,-0.105392255,0.21588199,0.45938948,0.31503233,-0.253018,0.47228387,-0.2251254,0.3470845,-0.2437082,-0.3340707,0.42401204,0.79543436,-0.16818954,-0.1734147,0.7211023,0.5032648,-0.46441525,0.41564816,-0.53183365,-0.26854804,0.21063422,-0.2739003,-0.28970936,0.45795444,-0.29218817,0.23963378,-1.0144628,0.23117658,-0.37396696,-0.13897444,-0.6656857,-0.019198643,-3.385591,0.2846467,-0.018487113,-0.25787082,-0.043324806,-0.1276571,0.38121015,-0.6287968,-0.67523444,0.06953134,0.07662338,0.55935574,0.025896069,0.13841106,-0.24725357,-0.27373585,-0.16318037,0.19460799,0.14061667,0.2903383,-0.18286602,-0.5276951,-0.19253299,-0.21580788,-0.1612273,0.06923444,-0.7582306,-0.4046931,-0.0575521,-0.60079205,-0.20652859,0.55895984,-0.37277237,0.06339026,-0.20919777,0.0774858,-0.32040608,0.39216137,-0.0174976,0.17828992,0.065763205,-0.15749535,0.06404328,-0.17176296,0.20099425,0.04218239,0.13691756,0.35611436,-0.29238346,0.1968609,0.3889097,0.68558055,-0.040727504,0.68388104,0.50792164,-0.19283533,0.28678495,-0.38396198,-0.26356485,-0.5698134,-0.30046272,-0.0012224179,-0.37859976,-0.68225425,-0.18563351,-0.27057558,-0.6902145,0.6234761,-0.123977415,-0.006703459,0.14091994,0.46576992,0.4576829,-0.22099565,0.086981624,-0.104227535,-0.08991511,-0.43730742,-0.3561303,-0.57924944,-0.30635616,0.18098314,1.0626688,-0.10538978,0.1620761,0.17030272,-0.17595908,-0.002021511,0.2184398,0.1508593,0.043144677,0.599749,-0.14892645,-0.6195816,0.4490586,-0.07613085,-0.35732418,-0.27192232,0.05709133,0.63357174,-0.7307177,0.58596,0.40521064,0.048201647,-0.005553319,-0.47807986,-0.1497713,0.04500608,-0.23646294,0.38886398,0.23764324,-0.6158291,0.33739808,0.49405444,-0.072174385,-0.7181202,0.45923144,-0.017990204,-0.34438103,-0.07835665,0.4417884,0.016391333,0.05902976,-0.25037992,0.17712249,-0.45719272,0.16131662,0.20121154,-0.09002887,0.33988154,-0.3144978,-0.103506,-0.75627995,0.14782347,-0.4788483,-0.28663352,0.30317274,0.053231362,0.13821533,0.24504445,-0.0070791245,0.48503444,-0.5084573,0.13313964,-0.0028522061,-0.088764004,0.23126075,0.23469433,0.37274158,-0.44989723,0.49664986,-0.1163068,-0.2004243,-0.1973404,0.0055152634,0.6130905,0.117013626,0.23346272,-0.0016036079,-0.36774832,0.39809263,0.7484044,0.32056963,0.47579962,0.018817503,-0.16570562,0.1945959,0.11612392,0.07534199,0.009464228,-0.38689676,-0.16709335,0.01754297,0.114980265,0.37163675,0.01105261,0.42397645,-0.27069375,-0.19044913,0.025289187,0.24662144,0.07477085,-0.7972864,0.29686183,0.091414586,0.7301084,0.40637702,-0.028650407,0.15417871,0.49581236,-0.40983975,0.14646865,0.21488406,-0.1396691,-0.6783748,0.6100048,-0.56897825,0.17478754,-0.09916095,0.018602064,0.036482815,-0.21250373,0.5165888,0.73709655,-0.1006347,0.14233099,0.0013517336,-0.18474586,0.031199329,-0.21392256,0.00403829,-0.55947083,-0.19284879,0.63140893,0.31700113,0.44526005,-0.2313923,0.016582603,0.07559733,0.010017418,0.19046792,0.15249106,0.3033293,0.015877102,-0.6884305,-0.21359754,0.5926742,0.0841643,0.024371762,0.02476977,-0.57862943,0.40050572,-0.07580428,-0.02902155,-0.041448556,-0.49000672,0.016168173,-0.4317164,-0.37136596,0.35208064,-0.047459092,0.17919543,0.16682877,0.08471194,-0.25743696,0.40468195,0.13080874,0.7789568,0.18222196,-0.08841006,-0.33463484,0.34285986,0.1602544,-0.20362738,-0.16738823,-0.21695863,0.07309289,-0.54269683,0.44704723,0.096627794,-0.22620481,0.18391186,-0.028200595,0.09839511,0.47114393,-0.08361887,-0.10945936,0.010661387,-0.0016980446,-0.29863715,-0.16595715,-0.09792928,0.22683159,0.24259847,-0.078531355,-0.1868322,0.10312437,-0.13487633,0.55564696,0.00019449912,0.3736036,0.6169619,0.29756212,-0.30213538,-0.103250355,0.03601959,0.40471044,-0.15192384,-0.13405164,-0.26109594,-0.56184727,-0.19767693,0.28268287,-0.13553688,0.27727726,0.20812696,-0.17002708,0.794686,0.007897427,1.0335914,0.023988714,-0.35476714,-0.038196865,0.4522602,-0.096965715,-0.07967122,-0.4639832,1.0303553,0.5419768,-0.027932186,0.08156705,-0.25351134,-0.2300686,0.09567081,-0.23468287,0.075192146,-0.058166724,-0.67973036,-0.4174907,0.18060061,0.32638982,0.15972707,-0.077802055,0.41110283,0.25900874,0.167951,0.16563965,-0.38569292,-0.294716,0.31420162,0.262253,-0.12132837,0.15512063,-0.39178798,0.31670836,-0.60823464,-0.027212858,-0.37138808,0.04546558,-0.036935855,-0.4036132,0.057294685,-0.05663395,0.16980211,-0.39772636,-0.3823579,-0.051589005,0.38380605,0.11782993,0.14103732,0.60327727,-0.17125812,0.24595474,-0.013515839,0.48307604,1.0534866,-0.16428114,-0.019671509,0.42242172,-0.17145406,-0.6667264,0.29574808,-0.3535883,0.29379052,-0.02381879,-0.15483278,-0.5868169,0.4164951,0.28013748,-0.06796389,-0.016056629,-0.41204056,-0.05018889,0.3862373,-0.350722,-0.18031335,-0.31101614,0.13186303,0.71999454,-0.27556303,-0.427908,0.05588029,0.36669615,-0.42685217,-0.46563178,-0.04332828,-0.45249373,0.32819593,0.2167181,-0.29774272,-0.12119259,0.0026406324,-0.35480055,0.16319036,0.3090477,-0.37947333,0.11419961,-0.5783367,0.04889123,1.0241883,-0.0875604,0.114298314,-0.49105576,-0.5733144,-0.87537503,-0.43893352,0.5493805,0.19493967,0.064247005,-0.52130216,0.25563785,-0.090391874,-0.22826256,0.07857384,-0.13711931,0.44775566,0.1433534,0.49862286,-0.21226467,-0.6481679,0.1186057,0.14696676,-0.09829255,-0.4796664,0.5707859,0.042345185,1.0122788,0.055901308,0.07804807,0.4262734,-0.6274125,-0.108890146,-0.2387513,-0.09112971,-0.87425685,0.052497864,321 +654,0.5667153,-0.28393722,-0.71194756,-0.09952371,-0.13164045,0.10087108,-0.25957185,0.49699676,0.2055197,-0.9204536,-0.21705554,-0.15657844,-0.1713095,0.3800381,-0.3114823,-0.81540847,0.14447951,0.0006848115,-0.4003101,0.5559673,-0.28464887,0.36744338,0.29096004,0.26866034,0.2907502,0.1159131,0.39797,0.06940554,-0.27648026,-0.21176672,-0.03345407,0.033680853,-0.63722587,0.29841158,-0.25809768,-0.45722002,-0.15528043,-0.47075906,-0.24159025,-0.9687011,0.23348477,-1.0383828,0.52960217,-0.110922255,-0.26621437,-0.104596764,0.47285527,0.06512614,0.18775453,-0.10475444,0.21647562,-0.17601337,-0.12118767,-0.085998446,-0.44883686,-0.7307694,-0.69674647,0.08127049,-0.6191403,-0.25676444,-0.09626249,0.3000791,-0.46769464,0.06121442,-0.08445243,0.82883316,-0.25793245,0.0015514722,0.30431765,-0.29970613,0.29872516,-0.891194,-0.31134808,-0.18565609,-0.06276668,-0.038837217,-0.21369931,0.3892427,0.41213924,0.40684932,0.21982256,-0.28441954,-0.39987832,0.0037692578,0.3161969,0.4644605,-0.2802541,-0.40887922,-0.3066557,0.057985343,0.5701914,0.19111785,0.3293947,-0.5035759,0.10483433,0.07106979,-0.35772786,0.67152,0.6348677,-0.26403612,-0.22556068,0.27126148,0.4895229,-0.03770992,-0.35803318,-0.18582378,-0.042157266,-0.610081,0.041738093,0.41900876,-0.0955764,0.6499831,-0.12964025,0.18349011,0.6499999,-0.31657094,0.10316126,0.35785022,0.0493171,-0.032978434,-0.38757116,-0.031192733,0.41238004,-0.46901086,-0.042827886,-0.44830668,0.8629252,0.14731811,-0.85212433,0.2845206,-0.45692003,0.15650648,-0.099717006,0.6209651,0.68276244,0.4918035,0.040470127,0.88083255,-0.4499453,0.004649142,0.026085697,-0.30328798,0.011046286,-0.40682027,0.1724643,-0.27928007,-0.018638287,-0.13447715,-0.034953706,0.101995125,0.71947384,-0.5722734,-0.34742314,-0.020185232,1.0262643,-0.17506169,-0.17659591,0.7461468,0.9877803,1.0552644,-0.011343406,1.2935524,0.13932122,-0.027111627,-0.027861215,0.034779612,-0.6779659,0.37153542,0.34894216,-0.089339346,0.28967774,-0.098716535,-0.18628278,0.31950238,-0.27272943,-0.0016537813,-0.24570833,0.21836713,0.28761047,-0.2580751,-0.25410622,-0.068010025,0.053982254,-0.025195552,0.094350606,0.26642454,-0.35009798,0.50435203,-0.12208267,1.4236795,-0.21112765,0.07293084,0.15161194,0.42988095,0.20032987,-0.18784155,0.3852029,0.12516902,0.096845776,0.20055991,-0.42600492,-0.012926212,-0.5186212,-0.50020957,-0.24330984,-0.4356195,-0.34106314,-0.010466935,-0.53570044,-0.2693444,-0.07106263,-0.36598098,0.33624414,-2.4536326,-0.26849726,-0.22710371,0.31984696,-0.4210318,-0.40428936,-0.21072997,-0.6639639,0.50241023,0.30223352,0.5453816,-0.60187376,0.2869816,0.44944045,-0.3437724,-0.23901524,-0.6578274,-0.007435913,-0.02221471,0.45926026,0.00037672886,-0.14461145,0.20532645,0.071328394,0.7013597,0.090593256,0.10710403,0.380253,0.4460967,-0.21848924,0.40795186,-0.117390156,0.58822465,-0.40644497,-0.1674575,0.5903366,-0.6212723,0.19866683,-0.05130651,0.1312221,0.56415963,-0.4367835,-0.7727058,-0.7572993,-0.4499173,1.0631416,-0.057098784,-0.711584,0.118597165,0.14845237,-0.06875154,-0.099045634,0.5755445,0.03162148,0.35950506,-0.7388925,0.01909361,-0.14265865,0.19997318,-0.17763759,0.01866337,-0.37600836,0.7960948,-0.018859886,0.48016408,0.35421732,0.3551817,-0.5528419,-0.5986794,-0.05784699,1.3537513,0.5065535,0.1250856,-0.32512635,-0.01204768,-0.45979878,-0.48097038,0.109047815,0.6380863,0.7672021,-0.014996994,0.07016051,0.48355007,0.089051075,0.13218991,-0.046373155,-0.56494695,-0.34871453,0.15401387,0.53877914,0.64927334,-0.12864342,0.58261997,-0.14872728,0.4163778,-0.20544146,-0.4997607,0.4882191,0.9960972,-0.3303385,-0.37679088,0.3933016,0.3347132,-0.47776797,0.5500491,-0.57228863,-0.5998056,0.6617838,-0.2343118,-0.6461766,0.12144339,-0.3935106,-0.01114863,-0.6547344,0.33152282,-0.5412282,-0.48285154,-0.49306008,-0.43158296,-2.5407164,0.17350046,-0.16938022,-0.08436238,-0.27001703,-0.07999264,0.22106475,-0.57632595,-0.60169804,-0.0074292514,0.11992817,0.69358957,-0.11075107,0.25728944,-0.34296483,-0.21093918,-0.30663916,0.3473385,0.19244443,0.2223521,-0.042948373,-0.26913497,-0.069040686,-0.16921271,-0.56562227,0.06065675,-0.65623975,-0.68208545,-0.3040562,-0.47537166,-0.2926227,0.90587246,-0.56596506,0.06542797,0.10753847,0.10645913,0.035908304,0.27390486,0.20166442,0.14225714,0.17921294,-0.25176796,0.17155838,-0.36171234,0.3340217,0.18761492,0.5020706,0.7799018,-0.20586842,0.43932068,0.6715739,0.77044666,0.12656079,0.9990047,0.14840935,-0.009129419,0.31270438,-0.16104206,-0.36156657,-0.7157173,-0.04072662,0.20064752,-0.3888249,-0.42892516,0.157877,-0.37593955,-0.94487923,0.6291695,0.0026244132,0.3477402,-0.27431142,0.4332447,0.46709985,-0.19203164,-0.21257505,-0.029003484,-0.011445049,-0.51734936,-0.5510486,-0.9009271,-0.7565048,-0.002757054,1.1777972,-0.04779522,-0.25470173,0.018674005,-0.05640156,0.0063234707,0.16215116,-0.12416361,-0.28702238,0.34198034,0.23146367,-0.78982556,0.42349714,-0.22113201,-0.010729249,-0.51263905,0.5286313,0.782438,-0.57851654,0.3153906,0.38956466,0.008321769,-0.37166336,-0.5614233,0.02128615,-0.053137816,-0.21864928,0.38029596,0.110375315,-0.6626245,0.40946832,0.32607615,-0.40768528,-0.69652313,0.4730093,0.049028937,0.11088245,-0.22320172,0.36765903,0.30173117,-0.14576098,-0.25745842,0.25341684,-0.62134796,0.23411186,0.29073983,0.026488258,0.68889385,-0.081600055,-0.50787604,-0.6409649,0.22701369,-0.6816865,-0.29089716,0.2932894,-0.046090808,0.14733617,0.48226288,0.10453624,0.38902527,-0.15703772,0.13572155,-0.21616279,-0.25572762,0.6937305,0.39694303,0.6681114,-0.5789709,0.61474127,0.0888911,-0.22976288,0.39642736,0.21828292,0.50227994,0.31195247,0.40523222,0.08840125,0.071178325,-0.023652967,0.71982604,0.29088107,0.56716603,0.22909506,-0.4034556,0.07268158,-0.0008749068,-0.012663247,-0.029983887,-0.7924521,-0.08612732,-0.16521923,0.062461656,0.618743,0.0017973322,0.40017456,-0.016485436,-0.1854435,0.050846025,0.048561215,-0.13227895,-1.2633626,0.20382276,0.048665173,1.0665438,0.2832238,-0.017305154,-0.092154056,0.6914637,-0.09302283,0.30021763,0.5245099,-0.28443554,-0.504851,0.62248325,-0.79679227,0.48477495,-0.091584004,0.1741244,-0.104469724,0.0893624,0.49266273,0.80407304,-0.18524343,0.17249012,-0.009744246,-0.3290793,0.1895631,-0.5521666,0.27157047,-0.25627697,-0.40984887,0.6369873,0.43401182,0.23465031,-0.14974417,-0.04591145,0.082632884,-0.13128425,0.25097817,-0.13703524,0.19158162,-0.16653362,-0.3059892,-0.17828403,0.57471114,-0.01967453,0.2592492,0.105834976,0.015923537,0.38226,0.01961842,0.03574684,-0.13004875,-0.51888365,0.050299786,-0.39711776,-0.5969746,0.30007416,-0.116208635,0.08696486,0.25704533,0.010439413,-0.38484085,0.4767535,0.29854375,0.5932158,-0.40264395,-0.09306957,-0.5157186,0.09987668,0.06489868,-0.44206473,0.17287531,-0.14412831,0.13534372,-0.6413304,0.50497013,-0.39144808,-0.31947944,0.12618078,-0.13086022,-0.22277091,0.60538685,-0.11295785,0.031787753,0.07878395,-0.12132812,-0.2654548,-0.067159705,-0.028354552,0.17088924,0.029343935,-0.03022209,-0.12150269,-0.29112327,-0.071560435,0.099820904,-0.015636444,0.24549772,0.48137167,0.15864438,-0.630986,-0.06402985,0.26870057,0.64090353,0.28857043,-0.024678847,-0.22481865,-0.5074037,-0.5392647,0.4188809,-0.08219327,0.20816237,0.3025842,-0.47580367,0.7848512,0.061122674,1.5282452,-0.016494503,-0.44731134,-0.017046224,0.57161003,0.13700983,-0.0024084975,-0.4826086,1.0919083,0.6230807,-0.07207678,0.037308253,-0.5786763,-0.052091483,0.28307363,-0.3720825,-0.20525287,-0.05408001,-0.59974575,-0.33657616,0.18840526,0.3769305,0.05084864,-0.37168363,-0.023834417,0.3500566,0.13246569,0.19214366,-0.53472555,-0.098501354,0.24310997,0.52594924,-0.275368,0.08383063,-0.4774814,0.31803352,-0.77038914,0.3345177,-0.1637596,0.1214455,-0.1178367,-0.31285673,0.3047258,0.15690091,0.46096557,-0.25126272,-0.39086196,-0.13750416,0.6110932,0.20242237,0.21127826,0.5958406,-0.2233147,-0.04901975,-0.07906915,0.71599543,1.5736479,-0.16410144,0.106217556,0.29324216,-0.534992,-0.85288024,0.29652235,-0.58420837,0.37352502,-0.17962982,-0.42144197,-0.49109837,0.24976818,0.062187232,-0.25488642,0.16218136,-0.6962125,-0.26969728,0.0663238,-0.560568,-0.30597135,-0.46176198,0.1805158,0.48586422,-0.22842433,-0.15324242,0.11461817,0.47414213,-0.0750663,-0.65093774,-0.049934205,-0.26841888,0.33284396,0.049031638,-0.34277746,-0.10628423,-0.029413031,-0.65593344,0.2807626,0.11070444,-0.4432567,0.034696367,-0.043968365,0.0025807666,0.75795734,0.052977044,0.095859475,-0.53437734,-0.5091591,-0.6505317,-0.46248496,0.1589466,0.21294919,-0.047686465,-0.63600224,-0.37131992,-0.39813188,-0.050953016,-0.0007572541,-0.55869824,0.27497256,0.046229895,0.50138354,-0.33655822,-0.7916944,0.23301688,0.3311192,0.012007759,-0.6754074,0.35416043,-0.14224076,0.9860763,0.22640838,-0.13116322,0.41878414,-0.70658183,0.0056885025,-0.40230238,-0.30167484,-0.5657663,0.16269793,331 +655,0.4060908,-0.28418133,-0.48288763,-0.112924576,-0.1687824,0.10602184,-0.17159455,0.51518387,0.066764906,-0.46229172,-0.23279692,-0.099224895,0.05766911,0.52161515,-0.3037459,-0.4217427,-0.10703529,0.0124837775,-0.44113928,0.27236235,-0.58539706,0.22533864,0.059430666,0.38277417,0.14826438,0.115617394,0.13677293,-0.0761093,-0.035419457,-0.11182961,-0.024863325,0.24495591,-0.48291743,-0.0088704685,-0.12936364,-0.3985804,0.09032743,-0.57109874,-0.35896605,-0.7215281,0.39647907,-0.98747313,0.57933,0.04150943,-0.24079281,0.32950988,0.080213144,0.16824605,-0.25390863,-0.12386981,0.20339264,0.04245452,-0.11853523,-0.06671205,-0.15596487,-0.24429318,-0.59907377,-0.00096468744,-0.6228888,-0.11532406,-0.22241205,0.19645295,-0.43958834,0.15145156,-0.05231824,0.32248446,-0.49335915,-0.0655939,0.10020435,0.001631911,0.10359399,-0.6666121,-0.115138054,-0.06895609,0.19342646,-0.19415125,-0.12983784,0.3301271,0.22528681,0.4322129,-0.11849969,-0.1949926,-0.24320623,0.098157726,0.031356916,0.6678178,-0.13951153,-0.54096997,-0.11236389,0.16526794,0.38251275,0.15004791,-0.06306304,-0.13784085,-0.14326993,0.14010891,-0.1900627,0.39601994,0.5644361,-0.31273457,-0.2965225,0.49265403,0.5216302,0.2517593,-0.03842097,-0.18124177,0.07351984,-0.53457826,-0.13100015,0.051321957,-0.2875768,0.38965416,-0.06273963,0.4249284,0.57356215,-0.28909189,0.32026407,0.05173171,0.124748506,-0.1008168,-0.21417537,-0.30070922,0.08563626,-0.40871525,0.12172846,-0.16745481,0.9631656,0.099170074,-0.7437819,0.4150049,-0.5074238,0.08339966,-0.21160303,0.6084468,0.6412645,0.35492304,0.355713,0.6225951,-0.35436404,0.037149515,-0.1750372,-0.36125448,0.17428787,-0.01771186,0.0013319391,-0.4132088,-0.20075305,-0.0278874,-0.11370738,-0.016831895,0.6674935,-0.54820657,-0.07929624,0.024757339,0.775893,-0.33394054,-0.023996856,0.6103184,1.0594839,0.8003642,-0.0004648509,1.0786059,0.2570527,-0.13631187,0.22627904,-0.32503238,-0.859575,0.36295393,0.5196367,-0.26811653,0.36818898,0.1385263,-0.11837585,0.37273857,-0.47839335,-0.13136213,-0.22351122,0.30662182,0.15324003,0.1505847,-0.5402342,-0.25322238,-0.090273574,0.055824365,0.13223368,0.28060144,-0.4236384,0.13781117,-0.042413753,1.8003218,-0.0990919,0.061318442,0.05077695,0.5059683,0.1917188,-0.04386169,-0.099982366,0.3381426,0.37341216,0.012471731,-0.80789125,0.16245815,-0.24068849,-0.3855376,-0.2509989,-0.36790594,-0.06411307,-0.034206107,-0.41257846,-0.012572238,0.06536133,-0.2929722,0.44512865,-2.5781908,-0.2710445,-0.08987348,0.49351296,-0.3745993,-0.4729128,-0.23824078,-0.5083355,0.5199564,0.31971136,0.5759801,-0.6159653,0.39362213,0.46408245,-0.49640036,-0.14787787,-0.67907757,-0.17922749,0.022406539,0.29529157,0.014241489,-0.16696747,-0.044376712,0.018794857,0.44473436,0.043657605,0.10204867,0.2894578,0.7035376,0.01122772,0.47107968,-0.17325687,0.5780067,-0.36688,-0.13715771,0.31833073,-0.25020638,0.37365076,-0.3638347,0.18064652,0.46143296,-0.52643716,-1.0181977,-0.6409314,-0.1805339,1.2800018,-0.36957583,-0.33618978,0.33947462,-0.21911608,-0.22000445,-0.14103398,0.52259195,-0.168948,-0.27727032,-0.8191484,0.06746621,-0.14899786,0.1476186,-0.038098708,0.10403303,-0.31171873,0.5036678,-0.1805335,0.40966195,0.13272628,0.24831463,-0.12025886,-0.38648465,-0.0061576893,0.7810365,0.4083651,0.0913786,-0.1690345,-0.29914898,-0.24277817,-0.029534074,-0.033989724,0.4514361,0.76691014,0.10672275,0.086352535,0.19900551,-0.10016111,-0.022068053,-0.20639004,-0.36730134,-0.04901932,0.06630291,0.50608337,0.5622097,-0.2915286,0.51501536,-0.10146198,0.16593379,-0.12507384,-0.42512256,0.37365946,0.7719841,-0.15989903,-0.06858344,0.6241217,0.4560115,-0.28259087,0.3400304,-0.7290078,-0.3526323,0.44163698,-0.22447443,-0.43379673,0.090169385,-0.13437682,0.07483502,-0.91375035,0.42804432,-0.18847837,-0.35020238,-0.5652166,-0.06209733,-2.7970874,0.12168431,-0.25179258,-0.11373536,-0.039613064,-0.21635532,0.3414068,-0.64445394,-0.5292144,0.16440326,1.8972616e-05,0.6294066,0.035779677,0.15278493,-0.16191739,-0.1621246,-0.31430322,0.014572492,0.24911365,0.43744075,0.14873932,-0.46298224,0.116671674,-0.08914166,-0.35629636,0.1806582,-0.49320406,-0.56603575,-0.047590297,-0.5277757,-0.16060288,0.6757766,-0.13697761,-0.064291514,-0.0969356,0.2182532,-0.11458867,0.37546116,0.125394,0.10978408,0.05127352,-0.13738635,0.052590158,-0.3523021,0.5584291,0.013943275,0.26183403,0.4088752,-0.0034469275,0.17419197,0.69900364,0.46073797,-0.040062044,0.86696976,0.5044412,-0.20799193,0.12348211,-0.19984175,-0.25865254,-0.37933058,-0.3322856,0.03682226,-0.38792786,-0.37894645,-0.12632176,-0.3845984,-0.8614518,0.48062402,-0.10120757,0.23146725,-0.08553354,0.28156108,0.5414808,-0.13877155,-0.009618433,0.106060505,-0.022139993,-0.6122681,-0.3530512,-0.6855805,-0.40941793,0.05723144,1.0604457,-0.32018945,-0.088725336,-0.17658673,-0.11820202,-0.079356395,-0.23172198,-0.029846797,0.23352131,0.3939077,-0.055892266,-0.709726,0.40137386,-0.06973021,-0.066187255,-0.6537627,0.091487244,0.6028776,-0.6243363,0.34928042,0.46732074,0.14315091,-0.017729916,-0.65045464,-0.17761962,0.13397835,-0.17831025,0.36902797,0.14867407,-0.78394705,0.5435623,0.36909765,-0.40824845,-0.73700786,0.4574061,0.095825635,-0.28357655,-0.08461898,0.2567476,0.27879044,0.115890175,-0.23017788,0.28660643,-0.4216266,0.4325418,0.14886478,-0.102346465,0.59186035,-0.38045284,-0.16225456,-0.6460434,-0.050422058,-0.5128915,-0.26799634,0.27730703,0.015333663,0.2087027,0.1455773,0.18001677,0.4645586,-0.5262034,-0.018907119,0.0059663286,-0.2506149,0.33674857,0.46586716,0.59320086,-0.38451466,0.5784071,0.050959826,-0.19161199,0.16217066,0.005394913,0.36295503,0.034627378,0.26032984,0.0023587483,-0.17154756,0.29979298,0.98376584,0.09061948,0.3542269,0.13567963,-0.25213617,0.22483756,0.023042617,0.0010583195,-0.038247187,-0.5391957,-0.054907702,-0.10206191,0.12618852,0.5756137,0.21953954,0.22920488,-0.149983,-0.21617457,0.1083589,0.10843292,0.04579805,-1.0364827,0.33207732,0.07567484,0.6592394,0.25526974,-0.053876996,0.046902888,0.55864334,-0.10148711,0.037107177,0.33730572,0.0949781,-0.5878073,0.56384623,-0.58266747,0.48465627,-0.11615435,0.023662217,-0.027487801,0.10589023,0.35612643,0.7917991,-0.08507225,-0.025574194,0.13301574,-0.31521654,0.15226102,-0.3765955,0.04233928,-0.6761502,-0.19760528,0.5141662,0.46106374,0.32366607,-0.036361955,-0.033088468,0.071925275,-0.07455499,0.14670523,-0.008301515,0.019191582,0.07280113,-0.827091,-0.17097534,0.4962223,0.28590682,0.24108711,-0.20655407,-0.107362136,0.24470256,-0.25237533,-0.052115194,0.0192418,-0.67729354,-0.19937491,-0.5273356,-0.5903403,0.15784414,-0.16414918,0.26909092,0.18775474,-0.021971593,-0.32245204,0.28099614,0.19972946,0.93813324,-0.102325924,-0.17917307,-0.5651241,0.024470512,0.24044083,-0.25382066,-0.059143092,-0.35514122,-0.02947242,-0.6220198,0.64967877,-0.22226086,-0.2794764,0.06996297,-0.2865156,0.024959601,0.6013838,-0.083480686,0.0012478462,-0.36577764,-0.36913458,-0.3933142,-0.24752067,-0.14950654,0.09302867,0.24581869,-0.08454831,-0.13983038,-0.33097252,-0.19994906,0.59535545,0.0557972,0.38468295,0.46367496,0.2198608,-0.19063272,-0.22380526,0.14237663,0.6832909,-0.06014006,-0.1679462,-0.56786096,-0.36941344,-0.21668789,0.32970554,-0.23304786,0.32185745,0.17437561,-0.24561745,0.66377455,-0.0647185,0.89585114,0.090554245,-0.16641468,-0.034210112,0.52844834,0.17114124,-0.07312444,-0.46907532,0.89032966,0.52737695,0.023690086,-0.15277888,-0.57551277,-0.24719779,0.42932054,-0.2946215,-0.117678694,-0.18262686,-0.6673923,-0.2888672,0.28012705,0.22675307,0.077391274,-0.06763769,0.20056817,0.109377705,0.15824145,0.5012828,-0.55758774,-0.16586392,0.37924162,0.21902207,0.091117784,0.18885292,-0.5372012,0.44593573,-0.40095583,0.08629736,-0.35259908,0.2320763,-0.053603604,-0.18941508,0.16761667,0.16371349,0.44864982,-0.23824668,-0.39021048,-0.13898781,0.54823184,0.18703276,0.11059937,0.54156935,-0.27220476,0.03425288,-0.08908835,0.5997478,1.1424311,-0.18134345,0.18589851,0.35278577,-0.26281685,-0.6489684,0.45422903,-0.38200617,0.14679694,0.03187016,-0.21427134,-0.5908547,0.38175663,0.16844584,-0.033752643,-0.03908412,-0.35146672,-0.2621755,0.30640084,-0.24790359,-0.17564645,-0.22784,0.06737466,0.66102624,-0.3009954,-0.094303206,0.035719138,0.53157395,-0.13409834,-0.50295794,-0.04208443,-0.46603158,0.16931221,-0.007861779,-0.23838748,-0.16173181,0.015851837,-0.34659487,0.13773304,0.040925678,-0.38025495,0.017743744,-0.143217,0.13340522,0.9504462,-0.18510239,-0.06315563,-0.7349393,-0.40082586,-0.8252418,-0.20157006,0.48113933,0.16896142,0.099861614,-0.6356767,0.12331251,-0.00733067,-0.13284414,-0.18911353,-0.55195016,0.4076026,0.06219298,0.26335162,-0.08457515,-0.607976,0.0985669,0.00034156212,-0.3591607,-0.49614507,0.6265763,-0.086453244,0.92358154,0.03935706,0.08163112,0.019865576,-0.3414747,-0.02474575,-0.33411834,-0.23960263,-0.75082135,0.188493,344 +656,0.41385305,-0.24147965,-0.4935366,-0.096243314,-0.48476636,0.0699186,-0.19057226,0.36709067,0.09218217,-0.5042292,-0.117370635,-0.24032561,-0.055247404,0.54333234,-0.24499522,-0.46894327,-0.07471437,0.14563583,-0.4646268,0.2449813,-0.5781421,0.2576922,-0.073546715,0.44282162,0.088906415,0.2611922,0.15937962,-0.09714091,-0.21002379,-0.02106441,-0.17819272,0.07573709,-0.7539362,0.23156945,-0.17038843,-0.45820743,0.050101954,-0.5479855,-0.2724988,-0.6408456,0.31475672,-0.88391197,0.34913304,-0.139042,-0.16817173,0.06079891,-0.060054,0.3781153,-0.21829575,-0.018347513,0.29276344,-0.19932793,0.011439637,-0.28997755,-0.28419062,-0.49858636,-0.6094662,0.061464667,-0.5648199,0.00041769102,-0.15978736,0.15068576,-0.2411158,0.065615006,-0.22286895,0.17663318,-0.47144082,-0.055553734,-0.040052928,-0.030218977,0.101519585,-0.35899132,-0.21287192,-0.16122109,0.18670493,-0.12347282,-0.2240764,0.34180656,0.16564701,0.33694,-0.10428597,-0.10596389,-0.39143842,0.15654717,0.20072791,0.5287216,-0.028211415,-0.37243646,-0.15798657,0.09560899,0.27152756,0.28047207,0.023343492,-0.4260007,0.015549751,0.082848124,-0.34125042,0.32938117,0.53003514,-0.28108796,-0.34015888,0.4118256,0.5486772,0.08715158,-0.17264225,-0.050507985,0.028841052,-0.5302428,-0.20218743,0.25978872,-0.08652963,0.61968064,-0.12177299,0.30641648,0.74583817,-0.4017753,-0.019264776,-0.08696086,-0.022651525,-0.1435466,-0.106199756,-0.19873379,0.130959,-0.4518228,0.08601343,-0.15745878,0.7146996,0.15675506,-0.9906648,0.41049954,-0.6009296,-0.004267862,-0.05252496,0.43655604,0.52494085,0.5903332,0.3551889,0.59655035,-0.47304666,0.1842322,-0.07627252,-0.5817545,0.17468749,-0.20870028,-0.04523752,-0.32472977,-0.23667161,-0.058874838,-0.14135696,-5.924931e-05,0.46009535,-0.3836721,0.03382453,-0.046732564,0.64274687,-0.4089781,-0.14451018,0.8507403,0.9530815,1.0101602,0.19751662,1.2086263,0.21156755,-0.049506865,0.20957701,-0.20878688,-0.71392053,0.2971128,0.3802249,-0.0673213,0.34749046,0.24000336,0.2646374,0.39078096,-0.17294312,0.107065,-0.17565998,0.19977781,0.08061764,0.0186057,-0.39130625,-0.41480842,0.04203475,0.025492746,-0.12155804,0.362312,-0.12166396,0.43692604,0.21138892,1.6327139,0.12904556,0.106043085,-0.0065223714,0.5500851,0.057698205,-0.07395695,-0.17984273,0.2958748,0.22705474,0.08758744,-0.5468147,-0.0054334057,-0.1958057,-0.54651797,-0.13635787,-0.2732488,-0.14363322,-0.3801756,-0.5282113,-0.08695387,0.114449866,-0.23838289,0.5697482,-2.4686046,-0.19229335,-0.003565433,0.29505327,-0.28153867,-0.51865184,-0.080590196,-0.48996308,0.1922901,0.3373873,0.43927053,-0.67184,0.5461905,0.4190368,-0.48327225,-0.17306596,-0.727403,-0.119287305,-0.05764645,0.26104057,-0.07299643,0.072221056,-0.05299414,-0.042051975,0.4638087,-0.16385219,-0.16322634,0.10945813,0.6675885,0.28469497,0.5924486,0.09047067,0.4499866,-0.42361706,-0.031365007,0.33677477,-0.43516028,0.4944892,0.23862281,0.18781692,0.4490759,-0.48649043,-0.95697695,-0.63847446,-0.48177177,1.1799706,-0.27981967,-0.2543889,0.19152695,-0.15545747,-0.3694498,-0.26105478,0.37310812,-0.08086043,-0.003371986,-0.7289667,-0.052021444,-0.1202376,0.27656353,-0.004780391,0.15345478,-0.18968007,0.58607364,-0.02409337,0.42044565,0.39715514,0.12349315,-0.3008166,-0.47864035,0.11115302,0.6600955,0.22024444,0.18778084,-0.18594797,-0.20678036,-0.17362191,0.027559012,0.09744421,0.40403354,0.602404,0.06894427,0.067996375,0.28922895,-0.19897968,3.7986498e-05,-0.17280401,-0.20007664,-0.13082522,0.0059595476,0.49689335,0.75789,-0.2329727,0.53338885,-0.26567662,0.20073095,-0.16526328,-0.35161325,0.33500677,0.70560277,-0.04581896,-0.059097894,0.38133457,0.7216788,-0.43851674,0.34469315,-0.54779917,-0.23276427,0.5281977,-0.183982,-0.40392575,0.08452533,-0.16795543,0.101538554,-0.872992,0.24893077,-0.1785307,-0.6056702,-0.6973775,-0.11267777,-3.070931,0.16470549,-0.09916735,-0.2734055,0.14337572,-0.26934168,0.21966435,-0.5953891,-0.4882975,0.1434493,0.0044597317,0.60536814,-0.029029908,0.18126132,-0.3577181,-0.19421329,-0.31290883,0.26693928,0.24075381,0.28918698,0.028241782,-0.49845332,-0.07002238,-0.4241475,-0.48741004,0.060093183,-0.67821026,-0.5365858,-0.11358343,-0.47775996,-0.45741156,0.7186743,-0.49679247,-0.1612989,-0.03446005,-0.07088036,-0.18706912,0.4351316,0.10220746,-0.0555166,0.04393814,-0.011795963,-0.14771558,-0.36295912,0.37928316,0.091422096,0.39284948,0.47135,-0.029112807,0.13260928,0.7510811,0.7305647,0.13515122,0.8391014,0.11158972,-0.13384579,0.33792192,-0.343029,-0.30375296,-0.70583403,-0.21903774,-0.12619196,-0.33902246,-0.49031103,-0.05210636,-0.33415768,-0.7275448,0.5551568,-0.018057356,0.03215202,0.0039704293,0.22698948,0.40223354,-0.19711104,0.12461305,-0.077121936,-0.16239223,-0.538777,-0.6147486,-0.60830647,-0.63302517,0.018514551,1.3294027,0.011731001,-0.3077768,-0.05417672,-0.34254435,0.17701045,-0.0196955,-0.004978761,0.35706806,0.22148313,-0.16937974,-0.6275622,0.423845,-0.028199764,-0.11866975,-0.40045264,-0.060583856,0.8009815,-0.6878229,0.336802,0.32960102,0.084132224,0.2655174,-0.41468197,-0.2125363,-0.02389144,-0.2004509,0.3501856,0.21918859,-0.7241498,0.4496985,0.21804993,-0.33220255,-0.65606076,0.47370023,0.034287095,-0.043666165,-0.023646198,0.28839105,0.24900834,-0.025665214,-0.2921757,0.24570133,-0.49842724,0.18738149,0.35757798,0.060939386,0.15452327,-0.065271586,-0.039570846,-0.68634087,-0.035312846,-0.15881221,-0.2531236,0.29258582,0.09424706,0.1794339,0.1427344,0.14519492,0.28074488,-0.38560194,5.749097e-05,-0.017286457,-0.18689057,0.27214855,0.3942061,0.4862703,-0.52103233,0.5725411,-0.010544167,0.11776047,0.13159473,0.037665788,0.23994902,0.27455133,0.19451149,0.16081634,-0.31915414,0.042630214,0.8500526,0.3649734,0.59368587,0.11130818,-0.17782713,0.36219552,0.1910349,0.27458894,0.0721922,-0.39413774,0.21103007,0.052033957,0.2102016,0.29902884,-0.15137543,0.27321097,-0.25650734,-0.12761119,0.16469169,0.2582575,-0.12913615,-1.1684549,0.24285537,0.19462532,0.593134,0.53803754,0.02931319,0.19721888,0.553191,-0.42206904,0.06961483,0.4085193,0.13356937,-0.57970434,0.5013842,-0.6162007,0.618715,-0.24068075,-0.042652424,0.0482653,0.010424678,0.4061791,0.86839134,-0.059240773,0.045473073,0.06519215,-0.25688332,-0.008319506,-0.39164215,0.08093056,-0.58675057,-0.088882156,0.67551965,0.50082,0.3559807,-0.094836846,-0.07301806,-0.032825083,-0.10385014,0.3003645,0.021018667,-0.042997103,0.046031576,-0.7067161,-0.2189784,0.6841198,-0.06796226,0.22480904,0.14611807,-0.4870861,0.39990905,-0.14594269,-0.175236,-0.029769907,-0.7567661,-0.030802837,-0.30781978,-0.47520617,0.20272332,-0.13275012,0.32460406,0.26797137,0.069312446,-0.3161252,0.4002554,0.38630444,0.89192265,0.07176326,-0.08154281,-0.33895966,0.074013986,0.30823898,-0.2614248,0.0007083966,-0.28418988,-0.0016155496,-0.511137,0.32500616,-0.14013764,-0.28193358,-0.16916889,-0.039449938,0.06763804,0.5699931,-0.003619836,-0.17934108,-0.09846174,0.16641514,-0.21497767,-0.044169657,-0.30793858,0.21466118,0.117553785,-0.19425796,0.06921475,-0.07497647,-0.0025213545,0.53457594,-0.012517626,0.37907112,0.19170274,0.024316631,-0.33678353,-0.20604776,-0.2286289,0.5767147,-0.02216175,-0.24768756,-0.44946703,-0.14031875,-0.12436641,0.28581417,-0.15357023,0.16419032,0.10846687,-0.5427543,0.8101311,-0.11929046,1.1793239,0.009258609,-0.3496677,0.21248762,0.38136095,0.23253019,-0.0071940836,-0.40847772,0.89606345,0.46095127,-0.24607475,-0.282346,-0.42277873,-0.38357133,0.109690316,-0.31522113,-0.21944703,-0.050507605,-0.59774697,-0.0716551,0.2451024,0.20395687,0.12650725,-0.064687535,0.15580049,0.21358593,0.17061323,0.4343705,-0.36453283,-0.21283355,0.31873733,0.39620414,0.05465593,0.0932306,-0.39469665,0.4895692,-0.5695463,0.2501126,-0.6140161,0.1355473,-0.17150116,-0.2743253,0.16635516,0.26764616,0.4557109,-0.119594015,-0.36423513,-0.27976838,0.71266234,0.25731868,0.4656301,0.65112716,-0.17682761,-0.11376618,-0.052148614,0.30239895,0.9748034,-0.24491332,-0.17217544,0.45775208,-0.32948405,-0.45151842,0.3765051,-0.48229617,0.17636791,-0.029872715,-0.14787665,-0.525964,0.26615188,0.25898057,0.14217807,-0.09631252,-0.39800093,-0.042757154,0.5731909,-0.40899548,-0.33585852,-0.39185625,0.3573478,0.79963905,-0.46035355,-0.26366836,-0.11439355,0.40779427,-0.21507233,-0.2963392,-0.09774894,-0.41563714,0.32028845,0.035316713,-0.30436298,-0.020829061,0.13854179,-0.2792609,0.102722846,0.18318804,-0.431199,0.060724005,-0.25770777,-0.015938204,1.075625,-0.102925666,0.083313465,-0.58435285,-0.57471406,-0.9660602,-0.25418955,0.3277761,0.23504315,-0.038931362,-0.4638235,0.09612127,0.08810495,-0.4284255,-0.07109019,-0.626679,0.439566,0.15064564,0.34592393,0.04132832,-0.90033084,-0.0033948696,0.17608956,-0.17549759,-0.4789777,0.5888395,-0.19005106,0.7176853,0.02456952,0.15610582,0.03834728,-0.36186415,0.2497468,-0.42380667,-0.063625425,-0.6161451,0.08728261,346 +657,0.3876429,-0.18664272,-0.5069942,0.02134613,-0.17535135,-0.10613557,-0.21562098,0.48356503,0.45176634,-0.22442818,-0.19536597,0.08726204,-0.111502126,0.40871271,-0.112401694,-0.6039013,-0.013224572,0.2479984,-0.50169015,0.8837276,-0.28531948,0.18447,-0.13432676,0.47638825,0.2545807,0.23529524,-0.0121126175,0.118360646,-0.081548944,-0.38927764,0.21377994,0.3614601,-0.66635776,0.35376278,-0.27999032,-0.2650374,-0.06589646,-0.4144182,-0.46459764,-0.98513633,0.49262273,-0.69557977,0.47460657,0.1085261,-0.36317137,0.0077195647,0.06123648,0.17687255,-0.11367352,-0.2709281,0.19763364,-0.25831622,-0.16151112,-0.2590078,0.09040487,-0.14649917,-0.6671292,-0.08550509,-0.31738418,0.061888464,-0.47975776,0.19620745,-0.5198525,-0.060672306,-0.21109769,0.65722936,-0.38475227,0.13231611,0.22042535,-0.14754918,0.2990718,-0.74593765,-0.41061804,-0.14620373,0.105115965,0.15511939,-0.38074446,0.50728637,0.17895801,0.39683214,0.04426463,-0.19420351,-0.29479483,-0.059556916,0.32182333,0.32273707,-0.32969353,-0.55923784,-0.121000245,0.04084518,0.22269113,0.17912841,0.11356827,-0.20216924,-0.09767525,-0.01707713,0.025830576,0.49908823,0.62406254,-0.089524716,-0.21547724,0.11616153,0.47254127,0.4653358,0.0037533469,-0.06687843,-0.016400779,-0.59415776,-0.2548065,-0.21921876,-0.40960932,0.59203357,-0.19000901,0.12305093,0.6288601,-0.16133715,-0.3131717,0.22515774,0.18475477,0.1489119,-0.39487204,-0.28459984,0.43181625,-0.54565364,0.26240417,-0.15368894,0.63277733,0.042845942,-0.5552539,0.2531211,-0.6266914,0.22776556,0.00716305,0.52889884,0.70633703,0.5351506,0.5168439,0.85522306,-0.4077935,0.046565533,0.05961385,-0.25923353,0.25849596,-0.27240112,0.0010204866,-0.4424059,-0.16716614,-0.14905277,-0.24297017,0.14931136,0.5043893,-0.6262547,-0.23036702,-0.0048522213,0.67120945,-0.13581382,0.16514191,0.87825453,1.111375,1.2728144,0.09897543,1.3431786,-0.2151255,-0.18001844,-0.01730145,0.0027805795,-0.90816087,0.2493097,0.22778085,-0.14702769,0.18264134,0.030011466,-0.03963745,0.50540173,-0.5790252,-0.18657218,-0.15943876,0.68969566,0.05407194,-0.28937933,-0.4903583,-0.3158043,-0.29314747,0.17225811,-0.17727455,0.41829398,-0.04143382,0.36083362,0.17216443,1.2949469,-0.23350382,0.06721553,0.16836683,0.37257642,0.25835568,-0.20908943,-0.15567572,0.21463276,0.103472464,0.2539833,-0.5207263,0.022166077,-0.3022641,-0.4905942,-0.1121327,-0.26606575,-0.024587473,0.0100284815,-0.12240854,-0.34796715,-0.2976258,-0.22129983,0.47137088,-2.3464637,-0.25000334,0.04014292,0.40191334,-0.18353179,-0.24867454,-0.0067770206,-0.4890668,0.52002394,0.14184743,0.62332016,-0.7353181,0.009338581,0.6411813,-0.90611655,-0.0024647897,-0.4623885,-0.19640256,0.14975391,0.44582468,0.089486875,0.024308534,-0.124876745,0.09431279,0.39179233,0.19690941,0.17502785,0.4149244,0.35276377,-0.39584392,0.26526362,-0.16215202,0.501654,-0.24718522,-0.2729199,0.32089064,-0.2653989,0.465957,-0.4349078,-0.057949882,0.6151262,-0.45446718,-0.82877064,-0.42539662,-0.047028914,1.2838943,0.044191938,-0.7242336,0.34370327,-0.7374316,-0.22097294,-0.10952,0.4941638,-0.18347114,-0.06713031,-0.7649578,-0.006371943,-0.17892505,0.074309126,0.08363937,-0.14492978,-0.5301145,0.84176505,0.121487334,0.3930348,0.57646513,0.057699926,-0.41720805,-0.5181011,-0.014344981,0.875266,0.72409,0.2361928,-0.38077897,-0.112915,-0.33613592,-0.27298287,-0.017790588,0.85000384,0.6080356,-0.28427,0.08798493,0.30275786,0.0017793855,0.029773759,-0.15268272,-0.40592638,-0.21194611,-0.0071705487,0.7667736,1.1604253,-0.2907014,0.20412137,0.15800689,0.22516412,0.08478913,-0.46802956,0.61358005,1.3918096,-0.1889627,-0.20245793,0.912092,0.30574408,-0.26077315,0.5291323,-0.36185944,-0.3743506,0.48646098,-0.0729465,-0.52032274,0.131336,-0.39345816,0.096811645,-0.6865015,0.5386416,-0.63437366,-0.39074376,-0.638004,-0.034919508,-2.2552419,0.2869151,-0.4424842,0.004715507,-0.37509468,-0.061413866,0.07085352,-0.59847534,-0.9134922,0.30610254,0.12172398,0.72073835,-0.373671,-0.047000412,-0.055119373,-0.4936486,-0.23312418,0.21956037,0.24042009,0.36942676,-0.0052910307,-0.4827259,-0.10305312,0.07544072,-0.44752738,0.07431816,-0.4340959,-0.67081255,-0.13780929,-0.6033333,-0.21748474,0.66903436,-0.091526344,-0.06900522,-0.28153366,-0.013549044,0.03405808,0.016707998,-0.09689255,0.25442603,0.13508298,-0.09666211,-0.110044464,0.04028302,0.18122555,-0.10635888,0.5145227,0.4231621,-0.21643823,0.25531504,0.5433839,0.78711534,-0.38195986,1.074835,0.6044227,-0.15989979,0.15801474,-0.18273316,-0.587924,-0.64083,-0.2758962,0.35699382,-0.3907049,-0.40465072,0.034384258,-0.4085298,-0.72077173,0.8228057,0.047542036,0.24814218,-0.03571022,0.11295342,0.42418802,-0.2754546,-0.016103717,-0.15696804,-0.15720378,-0.72069156,-0.14330162,-0.6177034,-0.49467343,0.08479946,0.9293979,-0.51113534,-0.0003110262,0.3728733,-0.2353089,0.007140412,0.14241098,-0.20339495,-0.031640146,0.51631814,0.23208846,-0.62122285,0.47991842,0.2241804,0.091537714,-0.43433154,0.34855586,0.5801944,-0.6080202,0.7569166,0.51683164,-0.17630202,-0.279047,-0.8315488,-0.16516624,0.021714078,-0.2718709,0.53879887,0.45577034,-0.7398981,0.49515527,0.34979752,-0.52079076,-0.76958644,0.4996083,-0.22673157,-0.35094362,-0.19655667,0.51547563,-0.06381333,0.08205526,0.003916172,0.56825066,-0.3214484,0.28438357,0.17231956,-0.23249221,-0.12763889,-0.25802666,-0.30730122,-1.050886,0.134999,-0.6205425,-0.2910679,0.4055789,-0.050552167,-0.2269532,0.046799514,0.6523853,0.4321039,-0.27006626,0.1558489,-0.15510324,-0.48277473,0.46830118,0.56407297,0.76960033,-0.40802157,0.557383,0.00067799364,-0.1445013,-0.04669763,0.0124380225,0.43931177,0.044056144,0.42646152,0.09556697,-0.09071673,-0.079165176,0.97943693,-0.065761775,0.23999701,0.014657784,-0.0003700073,0.15591563,0.09692733,0.54538786,-0.17468666,-0.6864463,0.14517961,-0.33028427,-0.058473267,0.5354395,0.27293116,0.049939614,-0.09696536,-0.54327095,-0.18557207,0.18853566,0.14725107,-1.654298,0.5648782,0.21223116,0.8727373,0.63655955,0.15337904,-0.01027463,0.77760816,0.011018847,0.035574943,0.44603646,0.05472485,-0.48104456,0.4261659,-0.83379513,0.41144282,0.08380491,0.12411002,0.035331782,-0.08857993,0.38534242,0.720973,-0.25696895,-0.16289026,-0.15119076,-0.3925991,0.26054832,-0.42616162,-0.0024684025,-0.5562157,-0.52645457,0.71229565,0.6383059,0.30678904,-0.24983913,0.14498848,0.05041673,-0.15603524,0.46794412,-0.078713425,-0.014022728,-0.10371364,-0.5631931,0.16572969,0.35749975,0.013668476,0.06837379,-0.26227495,-0.041496873,0.16727759,-0.27312994,-0.058236003,-0.20900416,-0.90886337,-0.088520035,-0.61371607,-0.23518173,0.45909324,-0.19011556,0.14478198,0.22106808,0.19950669,-0.26143557,0.32847688,-0.19569151,0.5827695,-0.04534988,-0.1587778,-0.12762672,0.30795905,0.056828592,-0.22743274,0.21185732,0.0049261954,0.12754324,-0.449165,0.6692415,0.013740425,-0.209599,-0.103401735,-0.13264059,-0.024806576,0.48871803,-0.28065968,-0.28307375,-0.22936867,-0.18792024,-0.17399652,-0.3625738,0.061696008,0.11295373,0.38533732,-0.044668134,-0.30551293,-0.17750655,-0.19449936,0.20982035,-0.026246913,0.24650995,0.30714655,0.07506873,-0.47070795,0.017657725,0.30555412,0.50486827,2.6409443e-06,-0.12003733,-0.30089098,-0.5007382,-0.50985914,0.15357842,-0.046614766,0.4276001,0.03203437,-0.1251167,0.6322666,0.14634898,1.0355453,0.048200544,-0.24795988,0.006697838,0.6796811,-0.3006089,-0.18907312,-0.30102545,0.8359076,0.39209753,-0.35816628,-0.016803902,-0.44122,0.38925013,0.2279206,-0.2655972,0.05986581,0.08021133,-0.53007257,-0.11609534,0.2189936,0.43461022,-0.10159469,-0.28643098,-0.2031564,0.3933831,0.21297397,0.1662382,-0.48722583,-0.30336016,0.49166033,0.14071155,0.20444734,0.0808223,-0.42013088,0.36059028,-0.47049987,0.30036908,-0.20157844,0.12322032,-0.3111809,-0.392979,0.2487029,-0.11158239,0.31255367,-0.4405897,-0.31897634,-0.21911496,0.11874855,0.20791326,0.053975448,0.5963918,-0.43375447,-0.14440924,0.25477946,0.5202706,1.0028943,-0.22185895,-0.082287826,0.23749647,-0.40412372,-0.54178846,0.45174375,-0.3007874,-0.08334536,-0.112574786,-0.27438393,-0.8673789,0.07578157,0.1131854,0.082469776,-0.095278755,-0.9050559,-0.22328869,0.081909984,-0.29640183,-0.10224851,-0.251107,-0.08306206,0.74865735,-0.112294436,-0.5794458,0.19336702,-0.0012663695,-0.22828855,-0.61996084,0.030023463,-0.41631475,0.25244263,-0.0026779014,-0.47193888,-0.20667087,0.23487212,-0.57193387,0.106504455,0.13666534,-0.3330256,-0.024548402,-0.3887351,0.043456852,0.88172597,-0.60424924,0.50470215,-0.0123265525,-0.40933686,-0.737028,-0.113928705,0.37764263,-0.039561264,0.08003687,-0.86980784,-0.05644393,-0.16971175,0.13350764,-0.11525807,-0.34559676,0.57474935,0.08406369,0.27508724,-0.26827157,-0.7509229,0.29883748,0.24007735,-0.024050327,-0.4742738,0.49101228,0.0015079471,0.7179482,0.06933732,0.02967745,0.12303138,-0.5509468,0.1289617,0.07881904,-0.19726755,-0.43189934,0.023863632,348 +658,0.45662248,-0.06940386,-0.40450862,-0.0035135425,-0.23345004,-0.0041090916,-0.14977911,0.2517875,0.37264097,-0.32051608,-0.3251893,-0.18059033,-0.037998088,0.19648656,-0.059632026,-0.27029675,-0.0100082755,0.5158541,-0.5884834,0.5720181,-0.15016451,0.26012027,0.10907365,0.5882118,0.1676368,0.041382786,-0.020639108,-0.09015939,-0.11864174,-0.26545164,0.20732641,0.07218823,-0.95305294,0.28618348,-0.43749565,-0.40058157,-0.075700864,-0.49009615,-0.4315925,-0.84669524,0.20748605,-0.76185983,0.64878803,0.08019397,-0.38068658,0.21548226,-0.03751725,0.35319296,-0.01110054,-0.059469108,0.3633723,-0.31659266,-0.15557456,-0.3038613,0.034614887,-0.1825104,-0.51484203,0.1178116,-0.19669707,0.099539086,-0.410436,0.13910863,-0.21766901,0.0032834227,-0.1633626,0.49456608,-0.42041555,0.2770105,0.041172247,-0.042340115,0.3599304,-0.55605245,-0.09652995,-0.20509213,0.28546068,-0.1750491,-0.19129722,0.2374755,-0.07469245,0.5870131,0.005030669,-0.09620938,-0.13842452,0.15836607,0.0110948365,0.42672136,-0.099711016,-0.12571344,0.002815696,-0.21099307,0.12337109,-0.04939199,0.08421048,-0.18475668,-0.044773165,-0.32068458,-0.014836027,0.18739015,0.5831414,-0.100954376,-0.1321799,0.15488577,0.713643,0.27399933,0.0492268,0.05378843,0.034635488,-0.4823669,-0.3022889,-0.07279074,-0.334912,0.569244,-0.09893139,0.14303686,0.5904323,0.04061894,-0.16560186,0.1587808,0.13812222,0.09740896,-0.21073821,-0.50568074,0.63518155,-0.4061222,0.14797226,-0.11291964,0.6882797,0.13040888,-0.6501461,0.2640197,-0.56368285,0.049036857,0.024858452,0.5412529,0.67265797,0.4590939,0.3442605,0.7132321,-0.48652875,0.16490701,-0.028113237,-0.20292854,0.058979254,-0.2525129,0.14390594,-0.29241624,-0.22996548,-0.11228686,-0.33584368,0.023181153,0.4146444,-0.54425913,-0.11676823,0.24837619,0.69417965,-0.20697044,-0.041315094,0.6754639,1.0727448,1.0793172,0.11561433,1.1595167,0.23056124,-0.3465896,0.019467281,-0.08630224,-0.7357139,0.1672447,0.13536757,-0.27788928,0.15722539,0.32188103,-0.073347464,0.49506935,-0.9455317,0.0199564,-0.2006626,0.17434451,-0.13559696,0.016788244,-0.60151714,-0.26856327,-0.22534916,0.08690625,0.05662748,0.23620874,-0.27692428,0.1581982,0.110916615,1.5467308,-0.28349835,-0.0058725188,0.14294428,0.36846793,0.06401388,-0.26034105,-0.17532757,0.10400966,0.29306847,0.066346936,-0.4181236,-0.011520734,-0.033693165,-0.39837056,-0.24030367,-0.059305485,-0.04374238,-0.037158053,-0.3891263,-0.4437564,-0.06181222,-0.53158784,0.43874007,-2.0583704,-0.14553028,0.028240545,0.61928505,-0.35315466,-0.268438,-0.11023808,-0.42043594,0.31190962,0.26886442,0.3462651,-0.56777775,0.33804765,0.56865287,-0.66891503,-0.0829991,-0.60128313,-0.21847092,0.06905425,-0.016059931,0.11527724,-0.10780648,-0.16296738,0.053822048,0.2698657,0.023105837,0.14268702,0.46263158,0.2678242,-0.08031835,0.32447842,0.04933898,0.4584869,-0.46139696,-0.19132076,0.54420793,-0.32831648,0.22822809,-0.4411279,0.06411555,0.4912353,-0.44833705,-0.6851801,-0.5730143,-0.2870373,1.0642831,-0.15917514,-0.5023668,0.1846121,-0.2527309,-0.25444227,0.096873745,0.60242283,-0.05095411,0.06995977,-0.8800643,-0.17120904,-0.13796112,0.35343584,0.10901398,0.04201859,-0.6701952,0.6631676,-0.17763938,0.29285187,0.51845646,0.298562,0.014769738,-0.48301446,0.18378693,1.0511394,0.37757143,0.19302501,-0.4881148,-0.052969966,-0.36019403,-0.03702859,-0.2364838,0.58843446,0.68643516,-0.29400998,0.038432315,0.15064934,-0.048237555,0.018227926,-0.15129127,-0.4324856,-0.084153906,-0.1932869,0.6213437,1.1166134,-0.020492705,0.19328164,-0.12581475,0.2373531,-0.20758358,-0.45228326,0.5186638,0.9221662,-0.16222903,0.04864728,0.7769318,0.3324219,-0.21583956,0.5251429,-0.72718036,-0.47631696,0.24822792,0.04011325,-0.43220806,0.14564699,-0.3512997,0.2865311,-0.6516985,0.5466136,-0.14335926,-0.44017187,-0.7615465,-0.08134719,-1.3305871,0.17549871,-0.30809245,0.009010691,-0.08044234,-0.1721213,0.031768434,-0.40221915,-0.6308202,0.27847427,0.11368036,0.6130841,-0.11997534,0.3001201,-0.0808135,-0.41629952,-0.36277536,0.067361504,0.3939315,0.29458782,0.041920997,-0.37193224,0.008812757,-0.12203283,-0.103995614,-0.14119089,-0.742948,-0.49898177,-0.16708161,-0.48628986,-0.33691055,0.5740414,-0.3549464,0.001878688,-0.31491444,-0.14634511,-0.075102635,0.11882074,0.06506132,0.23528291,0.12806562,-0.18002525,-0.24028212,-0.13737722,0.41124395,0.16063362,0.036674876,0.36119187,-0.23127382,0.15551975,0.3913878,0.7249756,-0.33431453,1.0516958,0.69846153,-0.09436277,0.06725864,-0.15228441,-0.28912348,-0.50201565,-0.13375998,-0.06584096,-0.451488,-0.34970632,0.105310716,-0.3383015,-0.8368533,0.6286056,-0.10608347,0.10354233,0.27359873,0.09700168,0.3981167,-0.28269857,-0.2998811,-0.141368,-0.048776135,-0.6087055,-0.4430806,-0.5243725,-0.4268589,-0.09123456,1.1750005,-0.014393472,0.1674013,0.4966943,-0.16506103,0.07524955,0.086496875,-0.200627,-0.15622947,0.8065204,0.16551307,-0.66467863,0.3351032,0.19023544,-0.06603192,-0.6010673,0.4380449,0.62269235,-0.5603752,0.5223291,0.38275015,0.024145126,-0.15769124,-0.6256291,-0.44225502,-0.13747174,-0.23117803,0.30336604,0.24940076,-0.6369678,0.24197966,0.17923053,-0.34922367,-0.9836802,0.51383936,-0.052640095,-0.50673854,0.14143418,0.24723086,-0.21730232,0.060244117,-0.028560685,0.2909514,-0.29415774,0.46751451,0.15335305,-0.28224996,0.03826545,-0.47769362,0.0074478206,-0.8668194,0.14461862,-0.5100387,-0.50769603,0.09653907,0.12226556,-0.1922833,0.5638602,0.5694995,0.31766525,-0.28066894,-0.0082141,-0.30088842,-0.33782065,0.3478751,0.3533406,0.55732507,-0.47272813,0.5359739,-0.089175135,-0.2212158,-0.2896743,-0.08891516,0.40313542,-0.285391,0.3372645,0.045928534,-0.022677375,0.057879083,0.64533496,0.07350826,0.32225344,0.008942476,-0.10943956,0.34189433,0.05415116,0.2554478,-0.118102,-0.6595447,0.2803651,-0.27302867,0.075681426,0.25436166,0.16111249,0.3347925,-0.08619695,-0.4288302,0.107861474,0.17266501,-0.0745198,-1.2610291,0.302116,0.090829425,0.6906103,0.5972087,0.010522842,0.0719604,0.88730663,-0.0633398,0.11388858,0.21889177,-0.04704052,-0.23257685,0.50753677,-0.5575892,0.23541634,-0.14354767,-0.064302176,0.117257446,0.001839922,0.33472508,0.62706745,-0.14381391,0.010398507,-0.3176592,-0.22978494,0.035378493,-0.32813868,0.39867193,-0.7377425,-0.3820296,0.8753332,0.59278905,0.40394205,-0.24321413,0.17453298,-0.034918692,-0.19353512,0.23996346,0.13193712,-0.15846154,0.34351602,-0.54742694,0.2508671,0.4290136,-0.35814685,-0.11792715,-0.0948195,-0.24143508,0.061547756,-0.344727,-0.22112964,-0.09964614,-0.96558887,-0.18678276,-0.60505086,-0.09192419,0.34946683,-0.0187524,0.18773317,0.13134703,0.07911265,-0.24059692,0.40021926,0.096929595,0.7480495,0.3121414,-0.074564986,-0.18199374,0.4430569,0.27042872,-0.18677591,0.15590443,-0.17955218,0.17281786,-0.54073584,0.3407912,0.047842264,-0.21241197,0.21149364,-0.14443046,0.06842721,0.66337174,-0.044300683,-0.12080201,0.15615152,-0.2947631,-0.18973705,-0.108523995,-0.26028177,0.29210892,0.26354605,-0.24286117,-0.09979301,-0.06722551,-0.20208311,0.43760973,0.06492503,0.52335095,0.3573492,-0.038776875,-0.37665686,0.025918035,-0.03217978,0.67718506,-0.0036556995,-0.24559662,-0.22294539,-0.40526587,-0.36316362,0.56939405,-0.10118169,0.2122183,0.12237969,0.06711679,0.816935,0.39378807,1.0112793,0.042045675,-0.17730466,0.16699776,0.44034898,-0.08314828,0.007967811,-0.64431417,0.9319443,0.40729207,-0.15579851,-0.025418751,-0.10493781,-0.067925446,0.088246055,-0.10285127,-0.055455163,-0.035568025,-0.7946952,-0.042486522,0.13503595,0.46716213,-0.1200072,-0.13338384,0.14968944,0.33185166,-0.10093232,0.40093577,-0.5207163,-0.23144343,0.48606846,0.23542213,0.041199878,0.16052318,-0.2977057,0.3482173,-0.4543834,-0.040966466,-0.39655298,0.08537232,-0.23999588,-0.38265273,0.2075937,0.1927808,0.45291325,-0.62966925,-0.10856671,-0.33517092,0.36324868,0.28395775,0.08762377,0.55283535,-0.29530576,-0.096344404,-0.035116017,0.37772793,0.9106386,-0.43992174,0.25472447,0.40035054,-0.24985097,-0.443804,0.35018831,-0.20282644,0.01625492,-0.11628966,-0.3345372,-0.6249993,0.19554418,0.03601024,-0.21430741,0.109673895,-0.91843915,-0.00788419,0.46892676,-0.1583236,-0.13665663,-0.22214444,-0.0053221467,0.4191389,0.017552119,-0.47342923,0.04269941,0.20996983,-0.32155484,-0.49117836,-0.033615395,-0.59906393,0.15393016,0.07719814,-0.40911028,-0.38646978,0.040322416,-0.54848725,-0.12113318,0.11936033,-0.31395817,0.0116618965,-0.38574484,0.18933609,0.8890094,-0.07343075,0.19002557,-0.2734687,-0.41200745,-1.0369961,-0.18977165,0.35064098,0.22801381,-0.031021796,-0.4763014,-0.14858659,-0.2322639,-0.07882984,0.044199195,-0.40996927,0.3518206,0.35617396,0.41325554,-0.29493484,-0.89408994,0.05083853,0.13280807,-0.39288476,-0.44782147,0.2766251,0.23602046,0.9824769,-0.06702229,0.06361734,0.04281155,-0.6772764,0.17230085,0.04058161,-0.17176077,-0.68160015,0.019821597,361 +659,0.35971028,-0.36468747,-0.48205894,-0.22272827,-0.24908689,-0.13386776,-0.15561691,0.41706812,0.23036702,-0.2952564,-0.22295114,-0.07928608,0.03345733,0.4267648,-0.026248066,-0.6298166,-0.12254857,0.10559634,-0.56204385,0.59299076,-0.54844314,0.19410071,0.118176386,0.49693367,0.119056806,0.27029303,0.29417238,-0.1822456,0.076094314,0.0058019804,-0.19781953,0.3278764,-0.37046435,0.14511569,-0.09662085,-0.36101466,-0.05936218,-0.50796074,-0.08955085,-0.76423043,0.13288651,-0.888359,0.38098648,0.09904099,-0.349642,-0.26770973,0.2817205,0.4603636,-0.41075343,0.022360729,0.21402296,-0.085666165,-0.21999851,-0.15694621,0.05393662,-0.22966957,-0.3896878,-0.1309044,-0.4989227,-0.262124,-0.01526684,0.19666037,-0.41176775,-0.13193594,-0.21362415,0.37669578,-0.42875496,-0.065232545,0.48266882,-0.23950857,0.4244599,-0.534001,-0.07521642,-0.17172012,0.35376552,-0.05825534,-0.41350225,0.32458177,0.3844217,0.36154413,0.122617535,-0.24906111,-0.10508633,-0.189294,0.16629556,0.4098999,-0.25478473,-0.2992944,-0.20234126,0.06738176,0.3142141,0.559101,-0.028161498,-0.4677078,-0.054307397,-0.06845644,-0.120835155,0.34702837,0.48798913,-0.15818664,-0.2623338,0.14069916,0.5360521,0.28692326,-0.23081534,0.073164746,0.1364502,-0.63092506,-0.09579112,0.4008249,0.03870304,0.5223048,-0.06681988,0.15885566,0.88305724,-0.102788724,-0.004044267,-0.017780405,0.04416441,-0.2607167,-0.5419765,-0.26196364,0.2094228,-0.55470186,0.13453048,-0.24482657,0.8328922,0.04512929,-0.7606526,0.2841866,-0.60687065,0.16191587,-0.19804588,0.65243876,0.7338672,0.34644598,0.4083128,0.71355534,-0.22470704,0.15890151,0.08022396,-0.38617718,0.04493849,-0.17026281,-0.017953685,-0.5815226,0.12099739,-0.022744715,0.15005113,0.07734304,0.2891727,-0.5669905,-0.14417502,0.16871825,0.71346855,-0.31537765,-0.04702043,0.56930906,0.9406207,0.9559621,0.15269688,1.0103217,0.29020408,-0.14681925,0.2687827,-0.2728545,-0.6542338,0.14637558,0.36773637,-0.018234005,0.16754839,-0.20115297,-0.1613369,0.35492626,-0.3019976,0.07266908,-0.10690526,0.16475758,-0.011687545,-0.10485586,-0.61478615,-0.2855481,-0.120422564,-0.09478076,-0.0996375,0.15210022,-0.20474349,0.37700638,-0.14248866,1.3425905,-0.09351414,0.061654605,0.17227395,0.50053847,0.20278963,-0.19295517,-0.08343374,0.43891585,0.58998704,-0.07426961,-0.5456372,0.29259968,-0.24458566,-0.46833462,-0.036985766,-0.46699312,-0.11061602,0.0011999791,-0.61041045,-0.15302391,-0.11394104,-0.23985934,0.39071104,-2.9190955,-0.19869398,-0.26836175,0.16785939,-0.25189203,-0.10097206,-0.18834612,-0.39550593,0.25086498,0.29552886,0.54204667,-0.6335596,0.40256235,0.48447558,-0.50196713,-0.17188266,-0.7461552,-0.14790536,-0.04944472,0.33927172,0.009165817,0.029728783,-0.046848692,0.120915905,0.6704662,-0.09207012,0.12808993,0.47483715,0.2843528,0.097702146,0.42907238,-0.03413993,0.5365862,-0.43276164,-0.18445888,0.25930282,-0.21793574,0.2392274,0.15646154,0.094381995,0.5141434,-0.4519699,-0.927584,-0.6738932,-0.4110487,1.0268245,-0.50579596,-0.33568323,0.20414576,-0.2885365,0.04632491,-0.024901778,0.65657,0.017492028,0.16770941,-0.7699538,0.13696748,0.026765347,0.31000468,0.059741873,-0.19017552,-0.21303262,0.66599756,-0.035879478,0.68395877,0.35375485,0.13064276,-0.2595066,-0.47091872,0.052178852,0.70078856,0.3247641,0.053281955,-0.11141659,-0.2877733,-0.12110551,-0.11770395,0.14423428,0.60138595,0.89821726,-0.052553836,0.14889579,0.39304286,-0.11321033,0.033821154,-0.081617944,-0.15498553,-0.10101238,0.1504269,0.41719264,0.5011928,-0.089847654,0.4742131,-0.19236627,0.3373268,-0.0971963,-0.51174825,0.66065115,0.5489584,-0.106182046,-0.083584115,0.39559808,0.6580743,-0.4350336,0.40643805,-0.58399177,-0.08668094,0.6668521,-0.2376524,-0.48621053,0.20674501,-0.38467392,0.2269633,-0.94053376,0.36178896,-0.47472665,-0.44993395,-0.36582205,0.014745548,-3.2836645,0.34013063,-0.19391544,-0.28404042,-0.3397885,-0.057759568,0.33008832,-0.6269244,-0.5198194,0.10268636,0.29161072,0.70756215,0.05010759,-0.061949436,-0.379504,-0.06831288,-0.055661567,0.19115283,-0.012744784,0.23435329,-0.16456074,-0.42725194,-0.123585545,0.011128907,-0.565946,0.18320659,-0.609442,-0.48598942,-0.14703074,-0.6046225,-0.3120371,0.62794644,-0.27887028,-0.06078252,-0.030962948,0.07288889,-0.14406577,0.3717068,0.17740437,0.23312944,0.11941959,-0.056915265,-0.07146896,-0.29126185,0.23019692,-0.08783984,0.20297956,0.075943254,-0.04483402,0.3312575,0.5365388,0.5256245,-0.11142826,0.8042996,0.48174497,-0.027901081,0.2410799,-0.31549627,-0.15189816,-0.47578618,-0.31587458,-0.2078823,-0.33628413,-0.49257982,0.11200314,-0.14143276,-0.79746825,0.61879516,-0.045511525,0.29224253,0.010862357,0.21237707,0.4050887,-0.09747538,-0.019652762,-0.12612788,-0.10731081,-0.47825366,-0.24686025,-0.71781355,-0.44441932,0.1101801,1.0171002,-0.32580015,0.13388707,-0.09238885,-0.34979427,-0.048629794,0.1462085,0.03390294,0.40614447,0.35198674,-0.17191672,-0.54438937,0.32047898,0.08491544,-0.3442517,-0.50713366,0.09240997,0.70249265,-0.74938715,0.6819045,0.21329778,0.02058052,-0.22860672,-0.5796156,-0.3304008,0.04421423,-0.16700205,0.36954525,0.12790516,-0.71151453,0.44904476,0.4648295,-0.28525904,-0.72496235,0.34760195,-0.12332504,-0.3441332,-0.08000113,0.3307475,-0.123855755,-0.12670499,-0.19507192,0.23489657,-0.41542625,0.16182676,0.16656008,-0.108621866,0.4861512,-0.16686152,-0.1065817,-0.5968467,0.15433581,-0.6848535,-0.19139725,0.48022744,-0.057525728,0.010054744,0.060362935,0.014129451,0.350495,-0.20650846,0.13758247,0.029017938,-0.27673286,0.23170903,0.5285077,0.24538986,-0.27280533,0.5801337,0.17884949,-0.04561992,-0.11507307,0.24786347,0.32273844,0.075580485,0.44670156,-0.50094837,-0.31442547,0.38874462,0.8211102,0.11524101,0.5265167,0.021332929,0.06763384,0.25149998,-0.008775353,0.22548261,0.0005896917,-0.23974323,-0.0578591,-0.110954635,0.14754571,0.5055943,0.23584692,0.37290102,0.09524894,-0.1554246,0.08730053,0.3236574,-0.042961504,-1.0104865,0.5636753,0.34798065,0.7667054,0.49169064,0.085013285,-0.28226832,0.5705219,-0.31431916,0.1722778,0.3109059,0.024012158,-0.52336025,0.8727173,-0.68443674,0.5063278,-0.21271075,-0.0625891,0.13897546,0.038449205,0.36712706,0.6698048,-0.077333614,0.07304769,0.008353787,-0.23288253,0.04546908,-0.43364355,-0.017084168,-0.42687815,-0.45161802,0.662861,0.4481437,0.35064122,-0.19862372,-0.072210364,0.17597121,-0.107615486,0.20542225,-0.07390815,0.06564758,0.1406943,-0.6247121,-0.15242502,0.5686227,-0.103374675,0.1493168,-0.124930106,-0.3029433,0.07534342,-0.14315987,0.11959501,-0.045558736,-0.61865276,0.15240936,-0.41338634,-0.47844556,0.38273776,-0.5555793,0.17263664,0.14198266,-0.007920637,-0.13663095,0.40884843,-0.009820416,0.8762643,-0.055511914,-0.25864947,-0.36267716,0.061950013,0.17827763,-0.23044378,-0.07791607,-0.39394933,-0.093621895,-0.5251864,0.5627453,0.1046022,-0.3509995,0.26918414,-0.20731269,-0.0746258,0.5603889,-0.052923676,-0.16005437,-0.13326746,-0.2609008,-0.45004383,-0.03399735,-0.24664317,0.30831325,0.24139833,0.14745936,-0.053659555,-0.1303044,-0.03429598,0.53024113,0.12224821,0.45295575,0.34353536,0.122645065,-0.34159756,0.12236829,0.21679181,0.4346097,0.27908596,0.057544444,-0.38556704,-0.24831054,-0.20984147,-0.06457791,-0.16919623,0.34837517,0.03410031,-0.20012951,1.0050213,-0.051662702,1.0236329,0.035477635,-0.37324584,0.003828819,0.34826204,-0.034692623,-0.014938538,-0.24890019,0.7389316,0.574314,-0.06455215,-0.03274967,-0.31425267,-0.21547583,0.42321056,-0.2655937,-0.1287336,-0.056089394,-0.53169715,-0.36846447,0.19092928,0.20744817,0.23288478,-0.10373409,-0.12798215,0.038612004,-0.014748587,0.20725147,-0.46852258,0.077016346,-0.04617683,0.31328848,-0.02021185,0.17921966,-0.43095696,0.39380565,-0.77793163,0.2875912,-0.48760796,0.09658089,-0.14863455,-0.34941992,0.07419026,-0.106084,0.28459197,-0.24995208,-0.18891114,-0.019661056,0.5637551,0.13064131,0.13287574,0.71888375,-0.2451973,0.17749572,0.16980058,0.46804816,1.1822221,-0.4823233,-0.25692588,0.30497634,-0.44396877,-0.6520977,0.3422451,-0.35784715,-0.010807239,-0.13856688,-0.45601746,-0.44564378,0.24603759,0.29968384,0.10039944,0.064368576,-0.48858228,-0.059615415,0.34697235,-0.26563826,-0.31933314,-0.3588837,0.50058323,0.6179127,-0.19016673,-0.43298537,0.00020601199,0.18687609,-0.1974694,-0.31941396,0.10949036,-0.18999085,0.23903309,0.025559563,-0.32345185,-0.087626144,0.09317071,-0.4839856,0.09989272,0.1960899,-0.2615457,0.1825571,-0.1364989,-0.2179779,0.9721352,-0.25119773,-0.2461783,-0.57435256,-0.38784263,-0.7693637,-0.37734467,0.50789773,0.081629835,0.08298014,-0.4775999,0.20338416,0.038531456,-0.17102018,-0.0957529,-0.3498071,0.41806063,0.119644806,0.38261476,-0.15798444,-0.71179396,0.31768295,0.043573186,-0.061215244,-0.6493419,0.49609616,-0.17405918,0.85047746,0.12043047,-0.12491639,0.10823099,-0.3724186,0.1681678,-0.3421842,-0.17729422,-0.8415816,-0.13845466,363 +660,0.2904438,-0.3339659,-0.4747232,-0.21492504,-0.3568096,-0.1347881,-0.12549068,0.33293015,0.3164558,-0.1556716,-0.2708693,0.092876874,0.05418231,0.5708275,-0.017712131,-0.68815684,-0.07845068,0.28228846,-0.6748972,0.4460751,-0.56528,0.30628005,0.14891805,0.47864228,0.067875355,0.4325659,0.34414017,-0.11299069,0.0649974,0.064826176,-0.10014514,0.29989856,-0.6498749,0.20109712,-0.10056567,-0.4041093,0.040274676,-0.3982224,-0.29359043,-0.78855634,0.12267749,-0.9866617,0.6393915,-0.0862885,-0.13508905,-0.1325608,0.19914666,0.41697532,-0.45788553,-0.0848005,0.21757856,-0.24618402,-0.26474532,-0.19917957,0.09269826,-0.46595445,-0.4653239,0.03130882,-0.5941207,-0.31582433,-0.27571943,0.18990889,-0.30318004,-0.06874769,-0.100061566,0.3309582,-0.37968862,-0.1157052,0.3721395,-0.3997334,0.21359086,-0.5809915,-0.0045354357,-0.031580348,0.4074578,-0.07012493,-0.34645858,0.4672255,0.39119813,0.5457083,0.413699,-0.37915447,-0.18053728,-0.110248454,0.10098258,0.4624755,-0.13822684,-0.22168292,-0.20517002,0.21385615,0.42138475,0.23858379,0.09112268,-0.16293682,-0.05570409,0.015810968,0.08834969,0.3970719,0.5630481,-0.16030894,-0.35653502,0.31004998,0.5346166,0.1906821,-0.12371589,0.005480051,-0.046815176,-0.5435739,-0.28409228,-0.11527665,-0.19805455,0.5986842,-0.22703949,0.048371155,0.9472256,-0.09340705,-0.063112795,0.06833297,0.020535268,-0.28684443,-0.36714083,-0.14473929,0.37182963,-0.47893667,-0.05841831,-0.21663526,0.6847979,0.16767247,-0.68457663,0.39369312,-0.48260644,0.15583012,-0.21310197,0.6836306,0.8018281,0.48431364,0.42641702,0.96797407,-0.2591311,0.3210076,0.1630227,-0.52265155,0.18109155,-0.38347536,0.004452561,-0.6091231,0.11373231,-0.1946558,0.009913518,0.089017905,0.33863053,-0.7879106,-0.04096739,0.24523197,0.8045077,-0.3061994,-0.1327068,0.7056437,1.1065955,0.9948076,-0.06786673,1.217076,0.44832823,-0.26513502,0.28383854,-0.37764394,-0.7442763,0.26834223,0.51918495,-0.15466021,0.35783356,-0.009937688,-0.019102342,0.46005052,-0.57302374,0.030578546,-0.06793367,0.30081585,0.029678,-0.22908022,-0.62446797,-0.046229545,-0.025255147,-0.19492237,0.17994016,0.31859928,-0.25148395,0.32765928,-0.16572863,1.3246144,-0.011062888,0.067274526,-0.0131556485,0.59918,0.28175446,-0.26089507,-0.078514256,0.3588494,0.47839049,-0.13779742,-0.5734669,0.20752014,-0.43948978,-0.56876,-0.15921809,-0.49202678,-0.13570637,0.19672063,-0.28617102,-0.35721982,-0.14226307,-0.3412426,0.3241192,-2.5946531,-0.28280297,-0.087594695,0.46125105,-0.43707502,-0.067894764,-0.03277909,-0.51541555,0.20541562,0.30878437,0.5500015,-0.66823924,0.48659053,0.44976902,-0.6440411,-0.22550589,-0.6681652,0.06884374,-0.110878415,0.53954834,0.0530171,-0.23738292,-0.09728587,0.01517648,0.7442951,0.08715891,0.2390768,0.5846166,0.33791322,0.20164695,0.35825017,-0.16641071,0.73860157,-0.33826926,-0.3154298,0.41428682,-0.17662531,0.34072325,-0.22339915,0.01767583,0.574909,-0.45506513,-0.99938244,-0.74051595,-0.24884237,1.0053899,-0.3473444,-0.57907957,0.31423596,-0.32318592,0.026485337,0.15612698,0.59646726,-0.04626282,0.09195929,-0.7136466,0.11770516,0.009342895,0.12675267,0.1405394,-0.018875016,-0.41102707,0.72971207,-0.11013218,0.55555165,0.23874386,0.38886362,-0.22281991,-0.44548064,0.12067714,0.6671266,0.2862589,-0.062487654,0.011495094,-0.28384012,-0.2145022,-0.27178642,0.04270098,0.5723534,0.8405896,-0.12042062,0.040180124,0.3294969,-0.11651481,0.009861302,-0.076012194,-0.23173314,-0.13449273,0.2551952,0.49467283,0.73752606,-0.32095894,0.51673424,-0.34438694,0.40384355,0.0045755277,-0.7259834,0.808108,0.59602284,-0.23092434,-0.06760586,0.67537147,0.43352273,-0.380817,0.6137829,-0.6962003,-0.34477425,0.63290966,-0.20668727,-0.39007622,-0.13136294,-0.18975121,0.24368367,-1.0678334,0.28310376,-0.22682475,-0.552743,-0.45716876,-0.08353249,-3.0552244,0.1603294,-0.27682766,-0.010539367,-0.34606302,-0.058735747,0.22015712,-0.8425748,-0.5334456,0.17178217,0.20275563,0.74431443,0.053980295,0.2014951,-0.21485975,-0.24110784,-0.12794222,0.23332904,0.07240263,0.2417562,-0.05766178,-0.52214825,0.0064243814,0.09581872,-0.5986408,0.18460736,-0.6843389,-0.4640228,-0.21549703,-0.72993016,-0.23785485,0.5360559,-0.34070876,-0.00334112,-0.2168712,0.26419577,-0.16760813,0.20195502,-0.00080744276,0.16932766,0.3513344,-0.14932455,0.14462592,-0.27899072,0.46841064,-0.058073528,0.5734039,0.091860786,-0.18291236,0.19579348,0.6738746,0.7062959,-0.32701114,0.9772206,0.6385977,-0.05651849,0.26174238,-0.38266203,-0.23594056,-0.639067,-0.5210868,-0.14626667,-0.466703,-0.58013296,0.29179668,-0.29693502,-1.0710869,0.7822619,0.038397916,0.58799654,-0.020698603,0.24870393,0.6110598,-0.20921165,0.014610974,-0.22193053,-0.27432156,-0.59043705,-0.29430568,-0.5569422,-0.590243,-0.027827721,0.96844304,-0.36973813,0.09975903,-0.007201296,-0.3724345,-0.006908685,0.041993115,-0.10993511,0.3315225,0.45099348,-0.1315549,-0.79111755,0.28445643,0.17483465,0.05079742,-0.6206068,0.17849304,0.54155934,-0.8300931,0.6313874,0.20683065,0.014442866,-0.07650916,-0.48958528,-0.30667984,-0.10039493,-0.031479537,0.50350934,0.17377004,-0.7776158,0.6001431,0.33205146,-0.5271035,-0.8071989,0.101490855,-0.14840208,-0.16256014,-0.03985307,0.17964877,-0.025438355,-0.07434937,-0.3017731,0.12718727,-0.46024588,0.24332689,0.21794558,-0.008198362,0.51437956,-0.2192516,-0.3109557,-0.99064535,-0.07921989,-0.5537746,-0.07839678,0.2198342,0.10712956,-0.07812733,0.2428565,0.2940629,0.43975526,-0.2097256,0.20407125,0.062216856,-0.57634157,0.20834854,0.5300429,0.23466757,-0.5579673,0.43852428,0.2294119,-0.35519952,-0.08843331,-0.07741917,0.55266696,0.14919086,0.30706096,-0.123702064,-0.22271322,0.25977403,0.8200722,-0.051619086,0.45509008,0.033986203,-0.076497406,0.36150652,-0.005002439,0.2678911,-0.07524602,-0.62123173,0.06910353,-0.089422,0.20496605,0.46933922,0.5235225,0.31129667,0.14090887,-0.251315,0.03822348,0.114478536,0.112111084,-1.067287,0.48678714,0.44844165,0.9589721,0.41238764,0.0976855,-0.3016632,0.76018846,-0.21355632,0.101760454,0.49006674,-0.20243612,-0.583876,0.6932193,-0.7913997,0.4224293,-0.09408593,-0.11414374,0.13569114,0.20973668,0.4067458,0.8793426,-0.20077842,0.04986729,-0.057059947,-0.124075375,0.108674124,-0.32701573,-0.02280166,-0.5987276,-0.30108097,0.8160439,0.4580579,0.42564875,-0.1929238,-0.1149012,0.13048698,-0.1472165,0.38335845,-0.12388161,-0.0056903777,0.1599604,-0.43410155,-0.1304229,0.49975142,0.34754503,0.27740878,-0.19557208,-0.32698902,0.09321051,-0.37832123,-0.22658443,-0.07287323,-0.65570736,0.01814404,-0.07863373,-0.43358496,0.84707254,-0.17455809,0.19590847,0.15026037,0.041852675,-0.19922656,0.29029778,-0.14207155,0.83884054,0.13464317,-0.38008994,-0.32474375,0.16053356,0.23571719,-0.3077091,0.22776063,-0.3751804,-0.059961732,-0.4156819,0.5802402,-0.06613147,-0.5687626,0.18961431,-0.25082687,0.037913088,0.5188383,-0.11446754,-0.14566085,0.13359937,-0.22225808,-0.5625688,-0.09011534,-0.33587205,0.2479594,0.16157392,0.051849823,-0.30628735,-0.25133654,-0.14136522,0.5679229,-0.01552778,0.3641848,0.10396846,-0.09153257,-0.19397052,0.109820336,0.425899,0.41358426,0.29194447,0.042017724,-0.39045593,-0.33254406,-0.32759768,-0.104758374,-0.027108865,0.26413727,-0.025876174,-0.21371463,0.8578994,0.14870769,1.4671777,-0.02323513,-0.3725391,0.12195529,0.59894127,-0.0039502014,-0.023075713,-0.45031247,0.8727439,0.7179709,-0.056808453,-0.00988372,-0.5913089,-0.22569785,0.5690922,-0.35810497,-0.23103501,-0.054185085,-0.69836515,-0.6210197,0.3191357,0.21474358,0.11564587,0.009752049,0.06628183,-0.12776144,0.031775236,0.37514502,-0.6767209,-0.32196224,0.19940995,0.40430245,-0.049340706,0.11439967,-0.46205643,0.45474848,-0.792273,0.2383125,-0.29951003,0.059756715,-0.34031793,-0.39416578,0.21125351,0.10989117,0.37571144,-0.2956789,-0.46177036,-0.012087317,0.5877524,-0.08093194,0.10950081,0.7716037,-0.4359059,0.017426819,0.10055573,0.4223784,1.2135129,-0.36170834,0.009588987,0.28202498,-0.41503957,-0.7229966,0.68044335,-0.3096809,-0.008174887,-0.14755969,-0.52631867,-0.50252205,0.1464816,0.2478567,0.018888762,0.10707385,-0.5249597,-0.07377833,0.30321434,-0.2536793,-0.09829418,-0.15781514,0.3396599,0.6597732,-0.26800823,-0.4378117,0.14849758,0.34321725,-0.16152123,-0.47960952,-0.14077859,-0.1920099,0.35519713,0.030847536,-0.52075356,-0.05461314,0.14430691,-0.4796201,0.17407693,0.29972404,-0.3423807,0.15488341,-0.31364632,-0.00023852174,0.8725304,-0.18938483,0.065221936,-0.65815353,-0.33690295,-1.0492011,-0.5365808,0.28978556,0.20112036,-0.08556879,-0.5427708,0.13384703,-0.082739696,-0.21060926,0.04978511,-0.6537799,0.37711328,0.098819606,0.5752685,-0.15370142,-0.9574904,0.09516633,0.18563502,-0.0070178965,-0.6876534,0.5828154,-0.15899266,1.0721967,0.0677379,-0.1115938,0.0921021,-0.45789343,0.07683728,-0.35736024,-0.121995434,-0.7793964,-0.11210852,369 +661,0.567862,-0.25396055,-0.53441715,-0.12439224,-0.07181092,-0.011439901,-0.217751,0.5307791,0.07386535,-0.52788734,-0.19862755,-0.10269634,-0.0789495,0.28326982,-0.13422732,-0.55527335,-0.12462803,0.14746459,-0.5179745,0.7818162,-0.3335291,0.30394486,0.054895338,0.45869648,0.3148944,0.26491964,0.451621,-0.055572692,0.075814575,-0.22012265,-0.035674673,0.010373705,-0.7272621,0.2786334,-0.26941454,-0.52476776,-0.042064156,-0.28800216,-0.34330308,-0.96664834,0.3451099,-0.8069172,0.5143491,-0.015810696,-0.4261465,0.3708603,0.048092816,0.24160506,-0.2736429,-0.0039763036,0.031500414,-0.24825884,0.099781126,-0.16331567,0.03082138,-0.40102822,-0.6792623,-0.033513587,-0.5638571,-0.07871958,-0.30484992,0.24606358,-0.3556617,-0.12464591,-0.1833333,0.6320674,-0.5165025,-0.07639968,0.23513362,-0.15592255,0.39244783,-0.75976,-0.076841965,-0.18353227,0.18608302,0.05914502,-0.059855204,0.3076772,-0.031877078,0.44375637,0.30635157,-0.27709845,-0.35804746,-0.18920901,-0.012696647,0.22905779,0.0446413,-0.38366216,-0.04502328,-0.23463687,0.46670565,0.30222338,0.15306315,-0.08174174,-0.08221764,-0.20417927,-0.17322744,0.42170128,0.57891166,-0.27387503,-0.35582113,0.38149935,0.6967128,0.112205476,-0.20521834,0.25404263,-0.097604714,-0.4086412,-0.17646171,0.3039902,-0.20432582,0.48771837,-0.1689309,0.29804358,0.57788974,-0.28507522,0.07292707,-0.026285913,0.061927676,-0.11972009,-0.16371931,-0.314731,0.36826813,-0.5488255,0.122094594,-0.32489812,0.8085171,0.12558377,-0.6140567,0.28066745,-0.53474134,0.08815102,0.07605862,0.7952508,0.8113706,0.48453152,0.34894082,0.7899858,-0.27439135,-0.017363291,-0.20333108,-0.14960033,0.04686161,-0.16247235,-0.024350945,-0.45736223,0.025301086,0.008750393,0.0483995,-0.0893544,0.39227217,-0.5239264,-0.10302198,0.2775669,0.61977357,-0.30943304,0.1191833,0.96061486,1.1087623,1.0966927,0.034437545,1.1882861,0.22855824,-0.32077497,0.100486025,-0.20838727,-0.64653003,0.27056172,0.3168072,0.33635813,0.4347483,0.09513427,-0.04358381,0.3458267,-0.5691363,-0.13418666,-0.23774692,0.102157995,-0.13669322,0.08045046,-0.4924023,-0.19876017,0.036657218,0.05907643,0.19973947,0.2927454,-0.31741655,0.43254662,0.017357584,1.2208277,-0.18583485,0.12109123,0.19490734,0.6329359,0.14530298,-0.24202672,-0.00641843,0.3612376,0.37828833,0.025027605,-0.6353179,0.18207206,-0.31842783,-0.5185822,-0.19417025,-0.40138853,0.00550859,0.09065231,-0.31716025,-0.088648684,-0.14072372,-0.65980744,0.16835657,-2.7442877,-0.15207036,-0.0649327,0.30181307,-0.4067631,-0.18127234,-0.093856566,-0.66475606,0.4170909,0.4387593,0.46836802,-0.57002,0.33143583,0.55808616,-0.57434314,0.032527838,-0.5910352,0.016542636,-0.15894485,0.50668275,-0.11526919,-0.124552324,-0.031200595,0.21994926,0.54749745,0.21694528,0.09782557,0.29483587,0.24528776,-0.094682164,0.36685848,0.112921275,0.34747702,-0.5768621,-0.12656492,0.43937975,-0.4297825,0.21418728,-0.25524837,0.15857737,0.53203803,-0.7146235,-0.8263315,-0.7362982,-0.17898251,1.2175885,-0.24904665,-0.648306,0.21009311,-0.26721746,-0.09196861,-0.0889969,0.65263945,-0.22354521,0.014053798,-0.62285686,-0.087165125,-0.14328705,0.41211003,0.09846204,0.08802899,-0.56815714,0.8552993,-0.12098964,0.54501176,0.1350094,0.31930256,-0.26981845,-0.588012,0.08500531,0.9003573,0.5515531,0.05120554,-0.24511279,-0.19374865,-0.19139482,-0.003911275,0.17503493,0.6321733,0.88009864,-0.06302698,0.074222706,0.3694965,-0.016575424,0.10574473,-0.15528542,-0.20152195,-0.29480773,0.10994522,0.51096886,0.4275322,0.09894541,0.29607195,-0.048512872,0.32498705,-0.18784958,-0.45804194,0.67207664,0.913309,-0.24119934,-0.14053239,0.6549766,0.5893944,-0.25698882,0.63737774,-0.7770987,-0.31029308,0.50882876,-0.18706831,-0.5265205,0.09855694,-0.2630499,0.15188766,-0.84204257,0.06011154,-0.5222857,-0.6181011,-0.6386124,-0.05449278,-3.0901003,0.13934885,-0.2985594,-0.16429576,-0.26301384,-0.38280588,0.23795739,-0.65172064,-0.54812753,0.10130124,0.1785035,0.7747935,-0.124186054,0.086382195,-0.35257453,-0.40813303,-0.47951317,0.26079848,0.18525402,0.26145533,-0.13746163,-0.34317133,-0.01124459,-0.016573237,-0.39970493,-0.087262556,-0.4561847,-0.40572527,-0.35605958,-0.60787004,-0.23761691,0.6162783,-0.17798185,0.020343473,-0.16686463,-0.0029821475,0.042430427,0.3099349,0.23783118,0.24483909,0.13059038,-0.05858194,-0.02795401,-0.39122552,0.09049826,0.017636573,0.30989453,0.28289524,-0.42627066,0.210418,0.46608633,0.55236524,-0.1072021,0.88764626,0.52083445,-0.005780041,0.25556973,-0.105293676,-0.46397826,-0.78269136,-0.21407369,-0.0939232,-0.3742334,-0.47378775,-0.06437301,-0.3117278,-1.0381259,0.6754304,-0.042584535,0.54256594,0.05991539,0.40078798,0.52226,-0.14171967,0.018761082,0.025526332,-0.18221952,-0.49868977,-0.14574371,-0.7321368,-0.5302206,0.059473965,0.89976823,-0.42530838,-0.032920096,0.15225331,-0.16214181,0.04698262,0.123122945,0.09116379,0.08021371,0.4403098,0.13654065,-0.55161256,0.6387043,0.14395514,-0.11423516,-0.47002873,0.28052613,0.5251949,-0.66988724,0.34388858,0.26909497,-0.058419444,-0.35756096,-0.5206616,-0.039415672,-0.09458875,-0.1469447,0.42091635,0.25995824,-0.6988717,0.40696925,-0.09076106,-0.05835137,-0.896719,0.40760425,-0.08289298,-0.46599996,-0.017909361,0.41942495,-0.0042998423,-0.019139597,-0.23709062,0.15028074,-0.3208609,0.21330465,0.22406827,-0.24399532,0.63156855,-0.2950113,-0.1350324,-0.6849402,0.11874343,-0.75463635,-0.1573565,0.42132467,0.16307563,-0.18208522,0.28499275,0.05141149,0.51099163,-0.052937314,0.23646978,-0.078350656,-0.2864371,0.5234687,0.61291045,0.43069723,-0.4251594,0.755895,0.08568445,-0.27903545,-0.20672546,0.068919465,0.28740957,-0.045824762,0.52821976,-0.15297836,-0.19202128,0.22043116,0.5508495,0.40254274,0.4770309,0.04497872,-0.0077371597,0.41256282,0.04134951,0.3436939,-0.17762573,-0.5696913,-0.030300658,-0.38973168,0.04863275,0.51838195,0.118287526,0.5108901,-0.058264103,-0.16291459,0.15410918,0.105337754,-0.38504058,-1.0185566,0.27486178,0.15209354,0.8329786,0.67985624,0.010768409,-0.013198472,0.7187258,-0.1669449,0.12612893,0.32165343,0.14220574,-0.54474956,0.72463006,-0.6729158,0.50910443,-0.015534699,-0.15774338,0.08463057,0.0048362473,0.47974333,0.8025691,-0.17839248,-0.006972077,-0.09640352,-0.26171806,0.25302047,-0.35694218,0.16333422,-0.4898929,-0.33750227,0.64102626,0.4475465,0.3447728,-0.103724465,-0.15460865,-0.0849645,-0.057780817,0.348043,0.024066377,0.05523592,-0.13079235,-0.41222617,-0.33355537,0.42111266,-0.08027108,0.16658956,0.06117381,-0.35604748,0.120084055,0.01944972,-0.06432709,-0.0020429676,-0.7062196,0.15004538,-0.13372889,-0.22867253,0.7245258,-0.33088952,0.37939996,0.17852321,-0.043538693,-0.23806919,-0.040135954,0.21184942,0.5441795,0.07710715,-0.1596537,-0.37533453,0.19996616,0.21225603,-0.3631515,-0.034367718,-0.20318402,-0.023697166,-0.5625821,0.31179267,-0.13295524,-0.29633734,0.12623766,-0.19874977,-0.12522727,0.6016561,0.036386915,-0.03534319,-0.013105794,-0.12341685,-0.33753034,-0.30852926,-0.26011017,0.13401723,-0.010453563,-0.00092676055,-0.13229625,0.13632432,0.12817836,0.49557012,0.13419114,0.26162127,0.23827362,-0.16931102,-0.500692,-0.012215046,0.26960224,0.31211483,0.17300616,0.03820566,-0.14067104,-0.5850879,-0.39455953,0.1076366,-0.06616345,0.25067225,0.12968916,-0.021268936,0.903733,0.14628391,1.0415864,-0.0344461,-0.44725344,0.22488025,0.62215483,-0.04324244,-0.20779863,-0.34585145,1.1069381,0.59121335,-0.15142864,-0.15327464,-0.117193766,-0.042193055,0.24322022,-0.23862305,-0.15659834,-0.010058861,-0.6317459,-0.28276402,0.15678604,0.31954825,0.109636106,-0.14990924,-0.03726045,0.3474903,0.093520634,0.43785155,-0.36045694,-0.19591907,0.4434954,-0.112488866,-0.009223076,0.12574533,-0.3089221,0.43484277,-0.7898688,0.023222772,-0.34350544,0.12702686,-0.16046335,-0.48212168,0.2626684,0.09228909,0.4090854,-0.32077327,-0.49556255,-0.2502964,0.4262644,0.22762868,0.24576876,0.591862,-0.29338053,0.20160708,-0.057656605,0.38808277,1.1175872,-0.25253397,-0.055520717,0.19541039,-0.49411488,-0.8343987,0.17816773,-0.37128955,0.22008851,-0.13723914,-0.37853834,-0.39353615,0.16996962,0.2318201,-0.06762995,0.29230043,-0.7400068,-0.31904903,0.05854493,-0.31961825,-0.18035449,-0.4134897,0.13142052,0.6267703,-0.34184054,-0.46743518,0.08523892,0.25541213,-0.20214151,-0.7491987,-0.11422115,-0.31885302,0.18849204,-0.014466185,-0.3987875,0.014521058,0.33411708,-0.5402268,0.098374195,0.05064459,-0.3063565,-0.06083195,-0.43607002,0.19443229,0.86957425,-0.062246844,0.041850787,-0.38731676,-0.4542146,-0.9372009,-0.43762514,0.5170116,0.17052454,0.14393707,-0.6411397,0.21730272,-0.4403124,0.2584639,-0.06471935,-0.43787426,0.33607572,0.28689402,0.47332948,-0.04486996,-0.7991537,0.35768113,0.10713823,-0.072104625,-0.54421043,0.4637378,-0.1564557,0.8594493,0.11872563,0.063666925,0.18572506,-0.6306164,0.028909473,-0.22579503,-0.2046189,-0.6495448,0.07659893,387 +662,0.41069046,-0.2983465,-0.6712728,-0.12728402,-0.47849113,0.048126824,-0.3705594,0.15552884,0.14266498,-0.2705845,-0.37095064,-0.13840741,0.08932359,0.4617262,-0.14640404,-0.58417386,-0.1696139,0.19156949,-0.7411411,0.47320682,-0.5627225,0.38468403,0.16513428,0.4699052,0.014000609,0.40968162,0.5097348,-0.089939155,-0.3986316,-0.07112125,-0.24471384,0.18454641,-0.8353862,0.0019839085,-0.31260428,-0.539544,0.105700344,-0.43500343,-0.100219734,-0.7573119,0.22568002,-1.1185567,0.6611611,-0.26609975,-0.14433034,0.05163192,0.21716864,0.3712894,-0.4688155,0.16581303,0.10929703,-0.42186993,-0.2616152,-0.3347786,-0.11962773,-0.52285177,-0.49712104,-0.09020118,-0.7788977,-0.22370134,-0.21074182,0.20569748,-0.35600126,0.04906168,-0.11856394,0.21959808,-0.4889829,-0.15080915,0.20386234,-0.24554898,0.26924866,-0.49483952,-0.032801993,-0.1810049,0.48542646,-0.20299679,-0.17149568,0.37120718,0.42599732,0.41748178,0.24327454,-0.22197214,-0.3338229,-0.12015091,0.16592862,0.4391751,-0.089254506,-0.5414213,-0.2728081,-0.04746525,0.46599978,0.38385564,0.1272181,-0.12655231,0.11576311,0.015095747,-0.20233178,0.4825725,0.47773436,-0.33977625,-0.3558896,0.30357653,0.6107887,0.18613076,-0.18626347,-0.042577047,0.02503046,-0.59995645,-0.07924236,0.1794145,-0.17890662,0.68561435,-0.13809755,0.1581436,0.77032727,-0.41843966,0.18169022,-0.17662928,-0.0729374,-0.45496604,-0.039006747,-0.19379099,0.33737066,-0.4910444,-0.035912752,-0.27000996,0.6516477,0.18648292,-0.65751183,0.42898133,-0.550297,0.10400609,-0.10886361,0.67042315,0.64316624,0.4873299,0.44994646,0.7985378,-0.22953965,0.25623462,-0.07992203,-0.47606814,0.08343788,-0.41191941,-0.015592296,-0.4759403,0.087358914,-0.21035412,0.047603387,-0.017042445,0.5240878,-0.6157131,-0.033414323,0.14386767,0.5835057,-0.39878848,-0.061021272,0.8783621,0.9920933,0.86971104,0.08118309,1.3478405,0.58766663,-0.2858313,-0.05105488,-0.16975863,-0.6924232,0.2327532,0.54045683,-0.6226533,0.592612,-0.03426447,-0.011451464,0.2372661,-0.35184243,-0.1076752,-0.16788012,0.25920004,0.11211675,-0.03964562,-0.4991047,-0.0433163,0.08779097,-0.14017569,0.2853214,0.27312565,-0.26025644,0.4578153,0.11122361,1.4558812,-0.12300264,0.022904672,0.024823265,0.49963576,0.41025966,0.072953925,-0.021809412,0.50229615,0.41425037,-0.02671989,-0.71480477,0.19266646,-0.3524308,-0.575435,-0.27561596,-0.3788504,-0.028391462,0.08607384,-0.25517103,-0.19079198,-0.010780482,-0.20599383,0.4062265,-2.2843108,-0.3740032,-0.18810728,0.2884683,-0.4239745,-0.18048471,-0.1373606,-0.54463446,0.2524047,0.37199882,0.4914408,-0.71660227,0.46781942,0.5010256,-0.49967325,-0.34102863,-0.72304535,-0.006887858,-0.058031894,0.5088874,-0.0049101617,-0.42722577,-0.033799544,0.08239603,0.76678014,-0.02697091,0.17325526,0.40568668,0.6291677,0.2378033,0.53173524,0.10058172,0.5320621,-0.28570718,-0.29069936,0.47194564,-0.20197898,0.26432323,-0.1414802,0.15039322,0.5974155,-0.4440177,-1.1130615,-0.73848665,-0.31850296,1.1209229,-0.46637475,-0.64561915,0.025345244,0.13136746,-0.1112584,0.14521255,0.46037996,-0.16330245,0.1839638,-0.8352042,0.15056756,-0.01895982,0.35336134,0.15431598,0.14467552,-0.37077668,0.7316086,-0.16603532,0.40362516,0.25947133,0.4979584,-0.21164027,-0.43199056,0.15873119,1.1025065,0.3134735,-0.047410663,-0.17049734,-0.3773867,-0.027808867,-0.17152572,0.012989654,0.41251087,0.7727341,-0.024623066,0.11933982,0.3874081,-0.09289924,0.047369156,-0.24653079,-0.22201236,-0.088586554,0.15732846,0.48985523,0.7389853,-0.19728157,0.7091682,-0.37973258,0.3789315,-0.017236603,-0.6003719,0.90484184,0.93948454,-0.2831581,-0.03777273,0.64180624,0.4046534,-0.59977114,0.66187346,-0.88046134,-0.3804146,0.740763,-0.18640849,-0.34973508,0.16409577,-0.20223445,0.19252007,-0.9419102,0.26942638,-0.21587834,-0.069846615,-0.56718934,-0.21253055,-3.4865294,0.18164952,-0.17510363,-0.15353268,-0.39089757,-0.17866479,0.3477198,-0.8002366,-0.6519219,0.18072268,0.1806074,0.55397874,-0.113472074,0.301523,-0.35472423,-0.22742122,-0.05528019,0.28599903,0.22542527,0.16363981,-0.23113221,-0.56618893,0.13254417,0.0026085377,-0.57014656,0.061011836,-0.5414239,-0.44242924,-0.21975818,-0.54726803,-0.1984489,0.57356924,-0.46895158,-0.03134368,-0.34127557,0.22662173,-0.29387012,0.26939476,0.03788329,0.21763913,0.26217604,-0.08011823,0.26231766,-0.32517087,0.5923649,-0.040221803,0.17930023,0.14330432,-0.18776673,0.12220487,0.48174456,0.69734865,-0.13671158,0.96731085,0.4020019,-0.08812496,0.23679544,-0.3590592,-0.3347853,-0.7976701,-0.47879204,-0.1736869,-0.44193414,-0.55707556,-0.044014737,-0.27599415,-1.0033513,0.8015801,-0.12868246,0.3882159,-0.15505804,0.5963059,0.477342,-0.24392489,0.02178543,-0.055859767,-0.16060609,-0.5791734,-0.33649927,-0.6655906,-0.5404892,0.008731108,0.78523946,-0.23648259,-0.050530277,0.031318847,-0.19715887,0.06175919,0.011323104,0.05500333,0.29035455,0.5029142,0.05688956,-0.80854887,0.4092574,0.026730042,-0.10040217,-0.5366618,0.07618795,0.7329022,-0.7419223,0.45355445,0.51729167,-0.0009886485,0.23595898,-0.51703715,-0.15766786,0.009138052,-0.112368874,0.44042015,0.13536903,-0.80832994,0.6414318,0.30457097,-0.49041465,-0.82454884,0.39014652,0.08153567,-0.10735123,0.054891817,0.38619936,0.26530787,-0.20048769,-0.43291092,0.07151853,-0.51438946,0.1692734,0.2174765,-0.12651326,0.4804285,-0.1202308,-0.40125796,-0.8989673,0.08234106,-0.42962742,-0.24027762,0.37570578,-0.040381625,-0.025926296,0.1394775,0.07800818,0.38198668,-0.5026597,0.04194852,0.05698835,-0.2862593,0.24667928,0.4775756,0.32674125,-0.45001984,0.58878917,0.07533814,-0.2926833,0.099927135,-0.23323679,0.40278503,0.3110946,0.25993186,0.114955515,-0.21743539,0.3051281,0.6786207,0.16717595,0.51810825,0.2137835,-0.2789452,0.41690725,0.11015984,0.3263644,0.011538034,-0.4026777,0.0048575583,0.14728345,0.046382006,0.5636829,0.35858205,0.36779073,-0.0002833238,-0.10374355,0.054351524,0.24870507,-0.09714731,-1.1130421,0.2260548,0.3177668,0.7915102,0.4098048,0.040318254,0.030836545,0.6056048,-0.47505024,-0.0040801396,0.4437469,0.19464876,-0.488372,0.7658454,-0.5182126,0.24751066,-0.25105852,-0.026415791,-0.014584496,0.1645472,0.24325432,1.0511914,-0.16092856,0.11631698,-0.027884759,-0.042787753,0.0029513377,-0.28985485,-0.07292623,-0.28109005,-0.31318066,0.79851127,0.22895196,0.5020441,-0.15582636,-0.12973475,-0.009682564,-0.20636997,0.34228727,0.01830804,0.16742125,0.17576534,-0.5033705,-0.16468917,0.64784825,0.4035694,0.18729165,-0.17374226,-0.5427304,0.17220515,-0.29599598,-0.08392544,0.07238589,-0.78001773,-0.14479853,-0.17541514,-0.57903516,0.49876764,-0.00019768569,0.09633042,0.17774823,-0.11202483,-0.215072,0.068931825,0.20558807,0.863281,0.18827699,-0.22756775,-0.28919366,0.06763068,0.35554594,-0.30982324,0.118575685,-0.25963962,-0.025785863,-0.43782642,0.63599247,-0.28197932,-0.5034014,0.17270637,-0.28294644,-0.07655359,0.51179403,-0.044125676,-0.17884398,0.27824783,-0.029217161,-0.43894598,-0.20413163,-0.38124663,0.122250505,0.19423327,0.0074452804,-0.15915534,-0.10613562,-0.09717265,0.6952193,-0.047510844,0.38170096,0.3639397,0.13807082,-0.24453309,-0.11236724,0.17863491,0.47570884,0.019708138,-0.04949468,-0.43075764,-0.5875818,-0.23464698,0.05593091,-0.1111317,0.009993718,0.1972555,-0.42753536,1.0020036,-0.07422137,1.3379052,-0.02453598,-0.5037553,0.030787386,0.5884109,-0.09379486,0.04020818,-0.40949428,1.0155221,0.5481223,-0.10655438,-0.04694328,-0.50054955,-0.3322027,0.36473462,-0.45177624,-0.10351718,-0.102565534,-0.543252,-0.60186976,0.26368892,0.32471386,-0.08633513,-0.12936454,0.26256222,0.13754436,0.22412753,0.5601896,-0.69695824,-0.44164512,0.33131278,0.29245013,-0.21242894,0.146538,-0.3378944,0.43894285,-0.679161,0.009186685,-0.67752266,0.10612023,-0.04238128,-0.3239946,0.16993812,0.16724494,0.3424212,-0.2861087,-0.37389034,-0.120696835,0.5574828,-0.025193967,0.1576941,0.5603498,-0.33307633,0.17486909,-0.00763436,0.5817429,1.4460899,-0.5259682,0.08978763,0.30461568,-0.37082958,-0.5650295,0.5617955,-0.39711645,0.073813766,-0.15414296,-0.5751716,-0.5856882,0.2853402,0.035836395,0.13525142,0.024943627,-0.54574245,-0.09913568,0.3197606,-0.35497755,-0.09906257,-0.115731746,0.46456212,0.82388204,-0.32469523,-0.22913283,0.0843211,0.45629832,-0.19819102,-0.47410634,-0.17202164,-0.18323734,0.4333706,0.17421454,-0.28634164,0.05779729,0.23510474,-0.51249146,-0.041641887,0.33279455,-0.3588285,0.09880968,-0.22297002,0.19763455,0.8228366,-0.21526036,-0.107007705,-0.74362767,-0.43928173,-1.1072233,-0.37863982,0.20926043,0.1721227,0.07604094,-0.56877273,0.35806194,-0.13769643,-0.27701494,0.09711201,-0.7033351,0.42352405,0.22056419,0.7373283,-0.29401308,-0.89296025,0.06760617,0.1844653,-0.11000181,-0.6454149,0.6668341,-0.13643366,1.0230904,0.0684988,-0.08621139,0.034627113,-0.5809299,0.065617874,-0.3716284,-0.23108222,-0.915902,0.040227372,391 +663,0.6095721,-0.16081503,-0.51293385,-0.047129236,-0.44097424,-0.18420373,-0.30782384,0.175539,0.4167295,-0.31796044,-0.26854184,-0.13977475,0.11073545,0.19579047,-0.14949283,-0.8346628,0.02600309,0.26567692,-0.69844234,0.6740548,-0.5076211,0.2466483,0.12093811,0.33141276,-0.14594758,0.26875144,0.36670515,-0.14783114,0.26987278,-0.12887304,0.20059404,0.06615205,-0.9945732,0.21209332,-0.28034317,-0.21806438,0.029587714,-0.28139806,-0.3111854,-0.8919439,0.08648141,-0.8587706,0.59568495,0.23399527,-0.35609612,-0.12288572,0.12036768,0.3002457,-0.3802822,0.0075387578,0.27586004,-0.15426967,-0.19322263,-0.33374086,0.1072254,-0.25651813,-0.52492356,-0.051479295,-0.45167235,-0.00245269,-0.44710144,0.08147447,-0.35442162,-0.12315276,-0.22279018,0.5288714,-0.34761617,-0.024877576,0.44077036,-0.10168607,0.53276634,-0.47794625,0.028254403,-0.25767252,0.30640036,0.11893756,-0.31723803,0.3555994,0.15739219,0.47264847,0.41830048,-0.46257716,-0.07481411,0.05076977,0.24097095,0.1748856,-0.19976571,-0.25095242,-0.2634048,-0.032980517,0.15381779,0.1967838,0.10541963,-0.44461858,0.10257515,-0.18277285,-0.065613754,0.57763153,0.5908212,-0.13237597,-0.21617362,-0.05781011,0.6787605,0.17368643,-0.17176533,0.0691512,-0.0051347855,-0.6641347,-0.3000722,0.08728046,-0.034209315,0.5763213,-0.25068247,-0.08375032,0.7208235,-0.10866328,-0.30035508,0.18408665,-0.09639568,0.10052097,-0.31910726,-0.17702629,0.36520594,-0.7676524,0.021352759,-0.37505788,0.63202924,0.18507141,-0.8029854,0.3005591,-0.56838727,0.1950117,0.06752326,0.7547569,0.8575119,0.4773394,0.362621,0.8012263,-0.36265448,0.25924754,0.16361928,-0.4706615,0.16834712,-0.3806404,0.00570609,-0.34537122,-0.07489718,-0.39352992,-0.09819676,0.004407681,0.23461154,-0.48466963,-0.18434931,0.24972439,0.71282005,-0.22816207,-0.042890217,0.59963036,1.2161947,1.0361682,0.19181888,1.2818598,0.27960122,-0.25992778,0.10137982,-0.045080263,-0.8039717,0.20729978,0.32008642,0.20397271,0.32620743,-0.08569436,-0.07759778,0.35607097,-0.6957858,-0.002029474,-0.0872212,0.5279553,-0.035504498,-0.1777683,-0.4421318,-0.20392106,-0.056633238,0.11110253,-0.011969568,0.22058694,-0.046536062,0.27602407,0.08338351,0.84562886,-0.21457274,-0.004609163,0.029455395,0.47666407,0.35506418,-0.18973795,-0.14514713,0.29242772,0.37565723,0.07341273,-0.536986,0.14671895,-0.2065714,-0.19736038,-0.082832485,-0.2268665,0.19359769,0.079753324,-0.1735613,-0.2668154,-0.058016405,-0.400291,0.3905338,-2.37512,-0.16572846,0.045572773,0.33761138,-0.26060757,-0.052590705,-0.18217471,-0.6523746,0.35066503,0.26239303,0.55655843,-0.65502644,0.42426094,0.6754194,-0.7031776,-0.20396706,-0.85690236,-0.15534392,-0.14947143,0.49142715,0.16950494,0.011241532,-0.2027594,0.29415736,0.6666496,0.25515363,0.105027206,0.41053003,0.31020027,-0.07024601,0.5111275,0.05449952,0.48959643,-0.35820502,-0.19824144,0.4450557,-0.06805063,0.19186847,-0.3903425,-0.030453948,0.5575771,-0.5674161,-0.81465137,-0.57441276,-0.4139311,1.2301198,-0.30986217,-0.4837775,0.20954584,-0.2270059,0.052781902,0.24428342,0.5459136,-0.06429359,0.36718258,-0.82743555,0.080285326,0.07017897,0.23016483,0.11834002,-0.17183542,-0.45751017,0.77337044,-0.081681736,0.41856596,0.4644647,0.23757927,-0.00840105,-0.60996735,0.21127734,0.9056292,0.30931315,0.07142562,-0.39867622,-0.077757075,-0.17678073,-0.031970646,-0.14000186,0.68264264,0.8001338,-0.29947174,0.12402064,0.3123686,0.035503063,0.14818528,-0.13900489,-0.3178434,-0.13563678,-0.1835448,0.5339554,1.0875857,-0.18101858,0.14084028,-0.21530584,0.37266976,0.03426919,-0.5370327,0.76203567,0.89989007,-0.0821403,-0.0026664366,0.52298295,0.5343354,-0.39844117,0.6671524,-0.5008716,-0.33236387,0.5456284,0.059007328,-0.4315384,0.15122162,-0.44437632,0.2760894,-0.81704646,0.5391432,-0.5088266,-0.38126788,-0.30919933,-0.04474173,-3.2633743,0.452941,-0.36485514,0.027373012,-0.36523777,0.00047628582,0.34732214,-0.47316155,-0.5183036,0.22155564,0.11145231,0.52506375,-0.1673398,0.03093594,-0.16690221,-0.3755654,-0.22924218,0.22942962,0.34755927,0.17085648,-0.18429129,-0.47618595,-0.2643992,-0.21246828,-0.49405634,0.05561447,-0.6049223,-0.41059777,-0.15123726,-0.6057147,-0.26244396,0.49979395,-0.26831204,-0.039064176,-0.28002182,0.11175153,-0.21076533,0.21008733,-0.1586704,0.36886916,0.085360594,-0.008208468,-0.039314702,-0.18477869,0.49049234,0.08777897,0.11221536,0.0649467,-0.10269281,0.15892474,0.56383103,0.85371757,-0.2703609,1.0625755,0.46955696,-0.08606677,0.26820862,-0.275555,-0.4879781,-0.8157135,-0.22206964,-0.117940575,-0.36514527,-0.37174007,0.3263343,-0.35562497,-0.7635237,0.7717101,-0.05165728,0.33240384,0.11882894,0.09369766,0.32721645,-0.24023016,-0.050521307,-0.15687521,-0.21994798,-0.7144132,-0.10912721,-0.6641521,-0.468582,-0.07941385,0.8572969,-0.39822623,0.17393667,-0.042910106,-0.2247627,0.2931684,0.2299864,-0.0018160527,0.19594957,0.6444878,0.3021564,-0.6257608,0.29468158,0.081097916,-0.1281942,-0.43444303,0.39218712,0.68823344,-0.91033804,0.7387232,0.36098534,-0.008377179,0.03668453,-0.67287546,-0.43812525,0.0061639226,-0.24124774,0.72587615,0.16295502,-0.88804317,0.42428318,0.28248757,-0.67589355,-0.7314927,0.4612244,-0.18651265,-0.32628155,-0.110215984,0.32982907,-0.27117947,-0.0542484,-0.347311,0.234609,-0.24899226,0.32876155,0.09194294,-0.27748606,0.085960716,-0.029824475,-0.16838461,-0.894008,0.04972324,-0.644278,-0.21100436,0.30583805,-0.014315044,-0.35474014,0.1216406,0.3230434,0.4454282,-0.22099529,0.23264915,-0.088902086,-0.5033692,0.44712904,0.56945,0.2545477,-0.42187178,0.6502972,0.1396535,-0.28392297,-0.18069424,0.1050167,0.29481974,-0.19557868,0.39430237,-0.15574107,0.14119802,0.19812514,0.6535793,0.032576382,0.47858965,0.12482175,0.102311045,0.5806917,0.11561907,0.42739394,-0.07837364,-0.43298993,0.08915219,-0.33002913,0.09075847,0.4264487,0.31468484,0.22977525,0.059953365,-0.274045,-0.13756727,0.27347094,0.06476418,-1.5649135,0.35274106,0.18393706,0.6146482,0.6809684,0.13878381,-0.20835516,0.73085916,-0.08352626,0.13377245,0.4945094,0.0014473704,-0.38138294,0.6142677,-0.615676,0.18788542,-0.2249859,0.005462344,0.34838116,0.052187547,0.3326766,0.87656295,-0.20645544,0.060507588,-0.11968643,0.029322777,0.11601297,-0.4792606,0.1281228,-0.35754436,-0.51213235,0.6628294,0.44040123,0.43525028,-0.34025162,0.108734354,0.07348679,-0.12491175,0.3692076,-0.072178066,-0.2636848,0.15532048,-0.5549502,0.015122189,0.43614006,0.04864203,-0.014579296,-0.20723908,-0.19027098,0.086506516,-0.2985465,-0.116601095,-0.12282079,-0.9705681,-0.16169311,-0.37570783,-0.19219583,0.53273004,-0.36522982,0.035886925,0.17549944,0.027353566,-0.14736761,0.26710454,0.05328538,0.61530936,0.23753045,-0.15213038,-0.23466791,0.18547426,0.1599641,-0.3207579,0.18843731,-0.3212219,0.2092929,-0.5190125,0.56605804,-0.1356635,-0.319064,0.1573551,-0.21969077,-0.21109512,0.59899575,-0.08313031,-0.27705786,0.19164151,-0.15453185,-0.23888944,-0.11969411,-0.13978869,0.3219512,0.23551805,-0.07727841,-0.031219216,-0.15222576,-0.12844694,0.491121,0.15989326,0.4401348,0.14359659,0.0792387,-0.27250627,0.13687834,0.16772975,0.52297455,0.19997364,-0.019363271,-0.19068374,-0.3148461,-0.35604045,-0.020853732,-0.12169187,0.10984163,0.040739637,-0.088943355,0.84301686,0.3324706,1.1814954,-0.15919663,-0.34037367,0.07087904,0.5368929,-0.16682278,-0.05882007,-0.44774202,0.9533975,0.5373844,-0.4380177,-0.047152855,-0.49332345,-0.094995975,0.0506415,-0.3187655,0.06021943,-0.03236691,-0.5475529,-0.281551,0.117974624,0.38748264,0.004976529,-0.12648454,0.04423241,0.0048152003,0.03810025,0.30466396,-0.6696666,-0.22509758,0.2563346,0.2152289,-0.06508958,0.12717615,-0.25171393,0.28759524,-0.5674437,0.22722787,-0.34015912,-0.08229689,-0.44116205,-0.4272227,0.059753172,-0.04326646,0.34191358,-0.5291622,-0.27267906,-0.20024167,0.36616704,0.22224984,0.23239042,0.70448536,-0.3253555,0.042363666,0.2041192,0.5202106,0.9872074,-0.48528826,-0.094884865,0.2776793,-0.43350476,-0.5235148,0.31780818,-0.35217953,-0.03622422,-0.3669378,-0.5235669,-0.5958834,0.06583,-0.08176982,0.015710043,0.17059146,-0.87146384,-0.091873795,0.3307904,-0.31218106,-0.11791515,-0.27824888,0.36200717,0.5890773,-0.21341246,-0.4667092,0.07257293,-0.01814712,-0.27810603,-0.54926974,-0.30281073,-0.17624232,0.197669,0.30619204,-0.26725823,-0.12208899,0.25095108,-0.5342079,0.0668358,0.17542437,-0.33761105,0.11712568,-0.21424738,-0.062401496,0.96697646,-0.33013612,-0.067034245,-0.3541334,-0.5847137,-0.9874327,-0.38901776,0.41466346,0.08119129,0.09066277,-0.37969416,-0.036541857,-0.1701688,-0.0067924997,0.17606227,-0.45000055,0.29669297,0.079716094,0.629449,-0.19706538,-0.9839868,0.24537222,0.33813694,-0.039854802,-0.6825809,0.5670038,0.09910404,0.794835,0.056052998,0.049047865,-0.016041266,-0.48337942,0.042885907,-0.21323657,0.02795776,-0.57598853,0.051374022,392 +664,0.39169198,0.024716329,-0.4501772,-0.006098793,-0.2988155,0.10779696,-0.16364051,0.43008474,0.36413142,-0.37515867,-0.2639002,-0.3814183,0.05710777,0.034812946,-0.019284012,-0.6337934,0.1955679,0.45150998,-0.5468922,0.610309,-0.2376189,0.52124035,-0.01066063,0.25737333,0.0020719308,0.18098706,-0.19525972,-0.11770367,0.012303407,-0.25866166,0.13171934,0.22640091,-0.7387532,0.33847564,-0.41848513,-0.38747534,-0.029583372,-0.41312873,-0.50035024,-0.8908288,0.1956374,-0.7560723,0.6612824,0.0098398905,-0.27903485,-0.12691058,0.026440445,0.5663761,0.02170958,-0.08488417,0.28957573,-0.072070114,-0.31505373,-0.053788595,-0.28310457,-0.4668073,-0.44831437,0.07522058,-0.22900942,-0.037803613,-0.21521775,0.25413153,-0.24893847,0.006912094,-0.16341776,0.51617485,-0.38569075,0.4735082,0.22775212,-0.03211812,0.1742368,-0.6886987,-0.13312778,-0.18995048,0.36183867,-0.2951127,-0.35721743,0.18711862,0.37115815,0.53505045,0.08940759,-0.23274279,0.11574267,-0.09514475,0.29313976,0.5063306,-0.12717362,-0.1784056,-0.15812851,-0.034525387,0.16840512,0.14415087,0.27790892,-0.61959547,-0.06118498,-0.19187348,-0.27140978,0.27461252,0.5987906,-0.07267483,-0.2017002,0.23261364,0.68584865,0.11696683,-0.099573925,0.30304706,0.0890059,-0.40998322,-0.2238283,-0.01630408,-0.21117148,0.49446753,-0.17988321,0.110949025,0.6106156,0.0100398045,-0.1902486,0.039867733,0.138839,-0.11119938,-0.4980928,-0.14154615,0.2288719,-0.5783421,0.14862452,-0.24704984,0.8316131,0.20827939,-0.5818541,0.43367517,-0.6272023,0.11208506,0.08385221,0.50181574,0.799419,0.1718503,0.07021815,0.6876911,-0.434035,0.110783085,0.0407195,-0.24326494,-0.09654395,-0.07912098,0.16726439,-0.45888388,-0.12932207,-0.10706195,-0.23224065,0.07413255,0.34823167,-0.65145457,-0.22471069,-0.028729044,0.87127465,-0.30714735,-0.12569514,0.98697853,1.0053341,0.7008928,0.13703424,1.7807028,0.32582018,-0.22164088,0.065097675,-0.30812213,-0.82390743,0.012973929,0.09232327,-0.7793973,0.12550029,0.22955543,-0.12516424,0.5232059,-0.7462581,0.049742147,-0.28891614,0.3881095,-0.068611704,-0.22783338,-0.39407128,-0.13046457,-0.061075136,-0.06818185,0.18243697,0.26878923,-0.13774271,0.28647533,0.17266263,1.129709,-0.10659088,0.0022254656,0.044263843,0.15666708,0.23619786,-0.14004713,-0.115162626,0.3697498,0.28681982,-0.1502752,-0.46457112,0.059747934,-0.23457211,-0.2596089,-0.22759742,-0.03262195,-0.24666458,0.103975266,-0.3628046,-0.27425855,-0.2430535,-0.15459807,0.59080213,-2.3239622,-0.31348684,-0.116777696,0.45820644,-0.24574266,-0.45665672,-0.07940538,-0.4765097,0.43449467,0.05009663,0.38556603,-0.69781494,0.34894806,0.40639222,-0.64917195,-0.1775184,-0.64278924,-0.10063718,0.19878432,0.01665276,-0.036383294,0.0786827,-0.11699128,-0.11905052,0.24083652,-0.11980404,0.2067907,0.5589143,0.40126917,0.038469996,0.11251343,0.18940727,0.6276271,-0.1807833,-0.24994612,0.34836298,-0.3958691,0.34044963,-0.053627886,-0.029871656,0.51115596,-0.36574772,-0.48428434,-0.73815817,-0.6480722,0.692103,-0.08897858,-0.31481934,0.16350645,-0.39718467,-0.3752454,0.050131876,0.71458757,-0.06323253,0.020304946,-0.9607168,-0.15421669,-0.05222342,0.29109514,-0.078682035,-0.07194225,-0.48407093,0.70305693,-0.26996535,0.24874184,0.5445047,0.28979185,-0.29256824,-0.45968622,0.042924866,1.1038349,0.47699717,0.17168155,-0.33166093,-0.120849006,-0.6288695,-0.20096079,-0.10141493,0.6998222,0.58116657,-0.1998388,-0.06303459,0.34514964,0.16676371,0.119810894,-0.19439664,-0.395838,-0.09344048,-0.096488625,0.4440263,0.655061,-0.34543338,0.4428766,-0.24022867,0.2757994,-0.2817555,-0.63810074,0.52804494,1.0168408,-0.27275366,-0.08479854,0.5917252,0.095694885,-0.2777583,0.43719292,-0.6023179,-0.23387238,0.4316898,0.084232956,-0.5787878,0.12507428,-0.28163356,0.071467295,-0.92877775,0.5838649,-0.32229388,-0.6969741,-0.5150245,0.01185276,-2.1645172,0.18298443,-0.21873783,0.09540324,-0.2239467,-0.1388121,0.017745825,-0.1194669,-0.5346035,0.30577037,-0.010182849,0.5254861,-0.10830971,0.29537266,-0.10398969,-0.28569424,-0.2455176,0.10216783,0.2366599,0.25664994,-0.29798982,-0.34881195,-0.03427686,-0.18331376,-0.21923648,0.0649203,-0.97661793,-0.39227107,-0.1696729,-0.74282575,-0.1624363,0.6317158,-0.6262182,0.06303187,-0.34272972,-0.11903059,-0.1548829,0.3263861,0.2445578,0.14621447,0.113148876,-0.014707482,-0.3281837,-0.3002265,0.2597129,0.12951306,0.19028851,0.35979465,-0.0762513,0.31984636,0.18927646,0.8683921,-0.051207658,0.8613876,0.3844661,-0.24337676,0.40010446,-0.15611452,-0.23425214,-0.6480701,-0.23677972,-0.20645425,-0.5292208,-0.52595174,-0.08060134,-0.4669482,-0.6418115,0.35787064,0.18794118,-0.12731816,0.16981475,0.085875675,0.34439528,-0.18090947,-0.033797693,-0.20129624,-0.08325717,-0.5071671,-0.41607162,-0.5359608,-0.4301924,0.3051813,1.1153169,0.039830104,0.23352449,0.23164234,-0.25770906,-0.0048245285,0.29651898,0.015808774,-0.07413325,0.6954378,-0.15836035,-0.5098585,0.36777702,0.1804493,-0.30725056,-0.83685726,0.321637,0.7515204,-0.7754273,0.9001468,0.18517168,-0.10409261,-0.11533736,-0.38496032,-0.32286674,0.058079287,-0.46593994,0.2939796,0.10960452,-0.5392535,0.12100426,0.41844457,0.019027976,-0.79310703,0.5255817,-0.19184828,-0.105636425,0.08379196,0.3784266,-0.08209194,0.040160272,-0.044908945,0.14974402,-0.2506941,0.2663298,0.13422976,-0.32050565,0.3029338,-0.24111745,-0.09884198,-0.92006105,0.048285585,-0.4633592,-0.38520148,0.02001701,0.12904093,-0.16037439,0.3100189,0.5220299,0.2925403,-0.1247005,0.16551235,-0.13828503,-0.35329387,0.24069253,0.3237725,0.45171863,-0.31485933,0.63223404,-0.102187954,-0.18001501,-0.20735525,0.3043728,0.5642676,0.043295495,0.4031296,0.29963797,-0.06767594,0.1488615,0.85024774,0.051652852,0.57582206,0.22456291,0.0022703845,0.14593242,-0.0056239734,0.17899132,0.10089053,-0.56439793,-0.035115086,-0.16743049,0.11649255,0.4527086,0.22383657,0.3016822,-0.12545468,-0.59308875,-0.11578565,0.18665688,0.30668914,-1.2638664,0.20686167,0.3001876,0.8308626,0.42791972,0.0010981285,-0.008166109,0.35288456,-0.079059295,0.31381184,0.2182788,-0.256772,-0.21102987,0.3885589,-0.764457,0.32622588,-0.18475287,-0.01600696,0.28410822,-0.20143065,0.3177714,0.9724618,-0.22025385,0.0056619644,-0.1596744,-0.12828,0.09292006,-0.34497267,0.29326564,-0.45789692,-0.37500462,0.7917109,0.57877886,0.27838528,-0.5204823,0.18201014,0.1636777,-0.22739877,0.09820581,0.026130777,0.10212298,0.08516801,-0.51984763,-0.286536,0.5760132,-0.26519617,-0.034466162,0.19793159,-0.23414482,0.25406778,-0.28092864,0.18255483,-0.01908439,-0.99749047,-0.107833266,-0.360906,-0.3508724,0.4412139,0.06711486,0.11287545,0.22414318,0.12267951,-0.2474157,0.75195855,-0.10749745,0.9748109,0.26865557,-0.04427336,-0.1168511,0.47671303,0.26790857,-0.11465229,0.107821375,-0.09897309,0.10820052,-0.50419474,0.4883981,0.12638249,-0.33224875,0.119366236,-0.046301045,-0.0064810514,0.41841248,-0.17733558,-0.1453524,0.30745995,-0.14529036,-0.14081377,-0.06712469,-0.07338343,0.22776319,0.5797018,0.0053983377,-0.105830275,-0.18237416,-0.29268375,0.1888163,0.0917025,0.33729628,0.59240395,0.20551865,-0.47301775,-0.06990835,0.3419011,0.42870983,-0.24053223,-0.14363629,0.12127275,-0.39120024,-0.35870054,0.29513764,-0.044020727,0.3511153,0.021688405,-0.22085561,0.7733502,0.42831305,1.3362287,0.1583862,-0.3548425,0.09529054,0.47098783,-0.11235334,-0.02567432,-0.44651616,1.0438608,0.49899846,-0.13078068,-0.058230393,-0.37512174,-0.09505704,0.3332662,-0.02798958,-0.12272184,-0.03616394,-0.75825983,-0.30037606,0.17706765,0.41934484,-0.117912054,0.073272735,0.10553796,0.37397468,-0.18476817,0.31905794,-0.79056937,-0.02487369,0.28110167,0.38147053,0.06469929,0.20573409,-0.29464343,0.4346934,-0.6272275,0.13677074,-0.18848838,0.020598246,-0.32378584,-0.28993145,0.050051205,0.16092142,0.32939273,-0.5964824,-0.26702613,-0.399679,0.3767325,0.21573679,0.055561524,0.7631627,-0.16015497,0.012196624,0.035245333,0.5128975,0.894892,-0.23908004,-0.13832524,0.43755376,-0.4416119,-0.5584187,0.39090627,-0.36791295,0.051417787,-0.15055127,-0.2865469,-0.56528974,0.22796117,0.13266018,-0.094054975,0.054322243,-0.688254,0.14599489,0.36521637,-0.25632668,-0.13853249,-0.21872045,0.26211274,0.8803712,-0.15584405,-0.36109003,0.037549775,0.11650955,-0.44376072,-0.59885925,-0.1256523,-0.3780389,0.32428965,0.05423597,-0.29749313,-0.17721912,0.054180283,-0.47278875,-0.11159445,0.15430191,-0.26174697,0.103931814,-0.17377783,-0.14980909,0.76319164,-0.14404248,0.22182114,-0.48524863,-0.54372907,-0.6320215,-0.31018576,0.3407365,0.51332986,-0.12234998,-0.62109524,-0.12591146,-0.20233296,0.03317466,0.17407066,-0.35876495,0.4334393,0.39414245,0.51081795,-0.20866098,-1.1442418,-0.062054098,0.2414954,-0.2744372,-0.64637125,0.33266133,0.11527021,0.85634875,0.06772954,-0.032710653,0.25348008,-0.5776647,0.22836384,-0.19568811,-0.06340037,-0.70547926,0.034960542,399 +665,0.53002167,-0.26943555,-0.41976786,0.0012981181,-0.110187545,0.10680325,-0.199221,0.4529423,0.33282697,-0.317603,-0.1991834,-0.09903736,0.0024756147,0.07614465,-0.052851412,-0.58201593,-0.11682598,0.20323291,-0.49646157,0.4787808,-0.41144863,0.25870568,-0.15317385,0.4725143,0.062838905,0.22396578,0.009017582,-0.070168525,-0.27992004,-0.16229725,-0.07230911,0.3342817,-0.6756006,0.111833096,-0.18964338,-0.3684757,-0.13558555,-0.64630693,-0.33654323,-0.7468357,0.25685304,-0.8558238,0.50583065,0.17291392,-0.23356368,0.5368236,-0.22718756,0.04565966,-0.2870207,0.011760795,0.1362737,-0.05932216,0.12645479,-0.30971402,-0.11249934,0.043077763,-0.5102221,0.09329207,-0.3024406,-0.09394853,-0.20008415,-0.018012019,-0.35281304,0.071038775,-0.056384426,0.4197721,-0.4017633,0.12455959,0.024102243,-0.16487822,0.24521115,-0.42325565,-0.1257698,-0.035291627,0.33269712,-0.25862777,-0.1627797,0.13542308,0.21953371,0.4369784,-0.13077137,-0.09581164,-0.38695806,0.029367503,0.027305553,0.48649868,-0.11450355,-0.552586,-0.06007584,-0.098471135,0.07543932,0.03287808,0.15420254,-0.18296,-0.15821022,-0.15909284,-0.20114954,0.34811,0.50859046,-0.26250082,-0.34979913,0.3738343,0.5723001,0.11917542,-0.007815831,-0.121426456,0.052627638,-0.47484916,-0.17549719,0.060440265,-0.26796153,0.35251486,-0.1367899,0.29944417,0.66246444,-0.20304105,0.0398583,0.17467158,0.03693531,0.06109411,-0.1829816,-0.23946428,0.25520742,-0.22513595,0.0947831,-0.14327325,0.78905004,0.13411357,-0.8378359,0.39045507,-0.5661613,0.0926621,-0.0069375494,0.477434,0.53988063,0.413218,0.39000732,0.58475053,-0.35441473,0.048554942,-0.03811719,-0.32113644,-0.071084276,0.011766452,0.009492664,-0.44960785,-0.030070726,0.008939991,-0.24584971,0.26050866,0.23040605,-0.43839914,-0.057203982,0.15811047,0.7949254,-0.25953892,-0.062040593,0.8953033,0.92515594,0.92970335,0.0625014,1.0819547,0.281103,-0.20071483,0.2087877,-0.4230037,-0.93172604,0.23517077,0.21372506,-0.22549178,0.3790067,0.07653504,-0.05069145,0.16468272,-0.25666815,0.027439026,-0.21036185,0.20413129,0.078863256,0.031744838,-0.3159756,-0.37970337,-0.2421529,0.085220896,0.14872086,0.2358481,-0.29849717,0.3524719,0.1233615,1.7548184,-0.025038637,0.08188828,-0.0349877,0.47490522,0.22646984,-0.07951694,-0.288289,0.29824096,0.22214857,0.023159714,-0.6339613,0.2923122,0.06356135,-0.42816833,-0.07962273,-0.27320033,-0.05633837,-0.12711701,-0.26181525,-0.19001484,-0.14616242,-0.36822942,0.42423835,-2.806212,-0.12806928,0.091429316,0.41586363,-0.22652024,-0.34116676,-0.20488022,-0.43276897,0.3229939,0.27805153,0.45923188,-0.79878324,0.31816167,0.45723635,-0.52151114,-0.19332677,-0.5526351,-0.08948867,0.1459509,0.2044475,-0.02829863,0.058961324,-0.017318824,0.08319863,0.40029246,0.05543306,0.090847254,0.30494925,0.516618,0.08564734,0.29177186,-0.005282824,0.47692686,-0.17159933,-0.16759099,0.31191713,-0.54930925,0.20927042,-0.16598447,0.1080481,0.40253836,-0.44523928,-0.87431496,-0.6097416,-0.08078161,1.1853887,-0.092637554,-0.32334116,0.20392288,-0.3126426,-0.27181536,-0.0816976,0.49478376,-0.17933644,-0.26292264,-0.7973533,-0.07488971,-0.14046572,0.30469343,0.046523664,0.0043459763,-0.36819407,0.6041653,-0.069581084,0.47339338,0.30025145,0.17912021,-0.27257356,-0.4913818,0.14512028,0.9218984,0.2514907,0.17410086,-0.23893632,-0.20614845,-0.20061707,0.026386399,-0.066589125,0.48607552,0.65704155,-0.11020233,0.093978055,0.29045555,0.012387202,0.08442546,-0.13287756,-0.18434502,-0.28004768,-0.085205965,0.5368173,0.7272325,-0.27812994,0.38265884,-0.0778829,0.25803006,-0.14337116,-0.36606878,0.6421366,0.8074439,-0.019092308,-0.15087058,0.48489726,0.37915972,-0.4163171,0.40735003,-0.5144507,-0.23753741,0.4059889,-0.26009744,-0.40746513,0.37658677,-0.17610262,0.049568195,-0.75074875,0.277998,-0.20086639,-0.3042291,-0.53344274,0.045344625,-3.033173,0.080529526,-0.13782163,-0.34995937,-0.16276988,-0.19576046,-0.016291006,-0.5017111,-0.59311473,0.2807835,0.122057766,0.6260516,-0.05743862,0.27296627,-0.17708723,-0.20100348,-0.4219507,0.119771,0.18685794,0.36249587,0.078032136,-0.41010654,-0.17060216,-0.11015658,-0.38153818,0.08346103,-0.51346755,-0.43190274,0.0025898183,-0.61848366,-0.24545306,0.63244027,-0.145999,0.047708366,-0.27370968,-0.070007294,-0.21879816,0.45005068,0.085181825,0.063640036,-0.013723369,-0.10884542,0.08970566,-0.24468192,0.36264497,0.081823185,0.18631674,0.41206735,-0.20283769,0.1401141,0.42671597,0.6480822,-0.017332403,0.7598978,0.324031,-0.07913264,0.2681846,-0.2914872,-0.32819945,-0.3934935,-0.2365074,0.045112655,-0.34337008,-0.43643206,-0.12855874,-0.408937,-0.7669297,0.42728755,-0.052203473,0.0060742726,0.10052199,0.3198319,0.5090036,-0.12752461,0.095061906,-0.07034631,-0.07166804,-0.43038028,-0.15133543,-0.5547933,-0.3326155,0.31173742,0.85834384,-0.18315217,0.08115453,0.09926458,-0.11895188,0.001754041,0.05092735,-0.05299072,0.24060392,0.47236717,0.07049802,-0.5221845,0.40016046,0.0011729277,-0.31283072,-0.5327404,0.18544309,0.6109035,-0.6641462,0.49939096,0.25116202,-0.09905957,0.018659115,-0.34482405,-0.1946573,-0.09256964,-0.109259024,0.21693482,0.27387297,-0.6392117,0.39770392,0.3382608,-0.12476898,-0.7943916,0.26626205,-0.019399848,-0.42251474,-0.14841872,0.3397702,0.051252488,0.073627725,-0.19439855,0.084444754,-0.3400025,0.17326942,0.059519447,-0.056007523,0.2665567,-0.14162613,-0.18017963,-0.68722546,0.07075661,-0.42533487,-0.28884602,0.27075043,0.14792845,0.19141029,0.22238642,0.061385337,0.35486886,-0.35204846,0.03659545,0.07105609,-0.05981922,0.2723776,0.32352245,0.5499604,-0.42565683,0.430465,0.024834292,-0.07111989,0.09129456,-0.034941677,0.38381606,-0.029419852,0.2048714,0.21995999,-0.26085517,0.34872577,0.6626284,0.16172273,0.41350016,0.03258518,-0.13263336,0.40564343,0.09536052,0.25189304,-0.041517,-0.4615052,0.124699384,-0.09865591,0.060624916,0.3257001,0.19297712,0.24777159,-0.06318552,-0.35076883,-0.0765798,0.40140602,-0.039524738,-1.103374,0.17662011,0.03489795,0.84721494,0.5673694,0.033850744,0.23501556,0.621879,-0.1226988,0.15754499,0.19094168,-0.046709154,-0.5989762,0.47838262,-0.6037553,0.43664852,-0.0035082102,0.0065681865,0.033263784,-0.14333321,0.29556173,0.5877825,-0.1191835,-0.004793149,-0.08369899,-0.20963216,-0.019387173,-0.47894728,0.14485711,-0.5121308,-0.12351467,0.6472627,0.437157,0.23342076,-0.11733748,0.09834341,0.02464985,-0.02461174,-0.017549993,0.15580368,0.116466336,0.11016789,-0.7222049,-0.107442774,0.5379975,-0.0408436,0.14343025,-0.13319333,-0.20141469,0.23997267,-0.24115053,-0.31701052,-0.0920241,-0.75056046,0.103986435,-0.258194,-0.3479254,0.27328327,0.1190646,0.20499936,0.21261957,0.050898645,-0.31134304,0.35730487,0.36710933,0.7956006,0.096554115,-0.095052555,-0.43198907,0.39095753,0.17722812,-0.20927882,-0.119564734,-0.08676116,0.00071753905,-0.39443606,0.40902716,0.0037224637,-0.35730955,0.041930363,-0.111306146,0.099638306,0.6383972,-0.13733636,-0.10214523,-0.13675086,-0.26932812,-0.4451036,-0.028778177,-0.08798464,0.251064,0.45902413,-0.22273782,0.015136187,-0.0049473,-0.19369109,0.55025035,0.07841745,0.49281484,0.3110833,0.15548648,-0.40254122,-0.15489134,0.070668645,0.51012766,-0.089279376,-0.08244036,-0.34408906,-0.4393838,-0.32288507,0.2427315,-0.12515415,0.22036894,0.043274768,-0.24114071,0.64861655,0.097958125,0.9087578,0.057025865,-0.18641017,0.13049948,0.29332137,0.06280555,-0.12163003,-0.4405019,0.97514117,0.35772485,-0.21905565,-0.10322069,-0.22826663,-0.21147797,0.054900903,-0.23145384,-0.027911544,-0.048771746,-0.6513654,-0.30943,0.17751524,0.18765756,0.15532123,-0.13806747,0.20946693,0.2446534,0.043672718,0.12012995,-0.4286138,-0.13362995,0.3840787,0.1385556,0.13466899,0.07341636,-0.42098612,0.29794565,-0.40663323,0.065862186,-0.23177932,0.1589409,-0.17297928,-0.2037852,0.21493293,0.15774855,0.32988584,-0.45473486,-0.40864915,-0.40588772,0.349064,0.10750851,0.19978699,0.4582546,-0.22051588,0.17529556,0.02890319,0.5880309,0.81390953,0.050392386,0.048867628,0.42124015,-0.24580106,-0.4962343,0.34764832,-0.13221973,0.083714634,-0.103503354,-0.057231877,-0.604386,0.30210185,0.20329711,0.2134343,0.14133245,-0.62251943,-0.228602,0.33120087,-0.33173102,-0.15369704,-0.39315298,-0.041827958,0.8024536,-0.19610661,-0.24125849,0.16606356,0.13239565,-0.2360471,-0.4098375,-0.20781183,-0.4299871,0.20735352,0.05231961,-0.2851219,-0.19328862,0.11368991,-0.3574853,0.09393449,0.060840562,-0.27360103,0.029037442,-0.2534391,-0.029294638,0.98051745,-0.22739083,0.25351882,-0.4495921,-0.5624357,-0.9015583,-0.25859582,0.50583583,-0.0066828807,-0.076980226,-0.7251349,-0.0126167815,-0.13231272,-0.31100208,-0.00056227355,-0.37127674,0.4205273,0.1055747,0.33336112,-0.08031697,-0.75392145,0.18796931,0.21116208,-0.34749666,-0.6858079,0.5139493,0.08853222,0.7374535,0.017921861,0.007163925,0.30785984,-0.47953245,-0.16184816,-0.26839688,-0.12865077,-0.59095705,0.15619142,406 +666,0.35159218,-0.04062946,-0.30652282,-0.13163343,-0.17718433,0.051708713,-0.09640332,0.3979382,0.22101974,-0.53689283,-0.14267935,-0.06517235,0.02097596,0.3224262,-0.10526514,-0.34651673,0.05099589,0.05572307,-0.30655882,0.4052987,-0.49983782,0.26073068,-0.046867974,0.2939128,0.08776267,0.13674363,0.0664363,-0.06910949,-0.08250875,-0.2073885,-0.03318084,0.11402599,-0.47547022,0.3067455,-0.07211085,-0.34668404,-0.19290183,-0.39880693,-0.43333003,-0.5359286,0.34232923,-0.84649646,0.35742933,0.05844209,-0.07199443,0.21390077,0.22070767,0.2779953,-0.07186929,-0.053248744,0.17488235,-0.13982643,-0.118473664,-0.09525363,-0.23143005,-0.4310125,-0.62658846,0.007855685,-0.45345542,-0.31757754,-0.4087047,0.09011463,-0.29068822,-0.09562259,0.028094081,0.4497856,-0.46942037,0.059725173,0.121715665,-0.11214356,0.2829175,-0.69554263,-0.21768776,-0.03981826,0.23933789,-0.25059083,-0.20696172,0.27421176,0.42464063,0.39167827,0.04429823,0.018140174,-0.3125238,-0.0755735,0.34134606,0.62052333,-0.16217092,-0.44726703,-0.10665211,-0.07535716,0.13723277,0.1778202,0.0970914,-0.47729582,-0.07332203,0.079411894,-0.19649854,0.4533796,0.50014657,-0.16040659,-0.3284478,0.33884567,0.31961024,0.10866271,-0.17865357,0.11832387,0.024072288,-0.37933546,-0.12249721,0.0014501947,-0.10885853,0.4809578,-0.15024266,0.31497318,0.63959575,-0.19255254,0.13119093,0.16736184,-0.056364004,-0.013650684,-0.29851156,0.00686016,0.081427924,-0.4410914,0.19085358,-0.1305181,0.7638871,0.12504573,-0.9172002,0.38424593,-0.5637893,0.028087698,-0.07340704,0.49260804,0.66428787,0.20953134,0.18833426,0.6689949,-0.50743645,0.019867154,-0.07810479,-0.29820845,0.030039238,-0.1697077,-0.047068037,-0.51658314,-0.14050502,0.24913138,-0.056101542,0.11567107,0.39421415,-0.5065089,-0.05618089,0.14325374,0.74745023,-0.24999008,-0.1367706,0.7941588,1.0889983,0.7395764,0.090342894,1.099106,0.09973882,-0.09865899,0.19087726,-0.22296587,-0.55611044,0.18217829,0.2937863,-0.08345906,0.087316364,0.15152411,-0.0076263295,0.2371915,-0.4398893,0.11582288,-0.044618424,0.29716572,0.18142946,-0.32717434,-0.2672428,-0.1810968,-0.0061642597,0.02213888,0.082388274,0.18339603,-0.25103363,0.2850663,0.09358527,1.453471,-0.07393862,0.14443389,0.04471228,0.5331477,0.12468395,-0.17092787,-0.0012232477,0.0694852,0.3536065,0.07774404,-0.54384255,0.06490774,-0.097807854,-0.49491426,-0.20115773,-0.3818919,-0.26347575,-0.01246578,-0.34043202,-0.092184104,-0.016452752,-0.57684064,0.51766366,-2.9921975,-0.23092307,-0.08582743,0.38398185,-0.2497438,-0.24337377,-0.10895153,-0.37171063,0.48796308,0.30005953,0.423917,-0.6822256,0.24786673,0.42375997,-0.45641333,-0.2261921,-0.55607355,-0.022110783,-0.056313813,0.2778753,0.09846199,0.015924646,0.19118944,0.028621836,0.4956929,0.036827043,0.17713822,0.28391966,0.27259797,0.008691705,0.37785882,-0.11188364,0.50644994,-0.20006345,-0.14994164,0.43042052,-0.35163435,0.116147056,-0.18199426,0.12525561,0.27444384,-0.31209803,-0.912892,-0.6761449,-0.5474273,1.0307724,-0.05428298,-0.4863846,0.40553555,-0.34812406,-0.23066308,-0.032663483,0.64465433,-0.003125851,0.1922423,-0.74115986,0.08025593,-0.20165178,0.04938662,-0.014662043,-0.019075146,-0.5473243,0.6897904,-0.11593831,0.44419533,0.34619427,0.31509095,-0.35410532,-0.3541853,0.08505003,0.9947621,0.3257443,0.14415361,-0.13621569,-0.15631786,-0.3592571,-0.31848955,0.22159702,0.556356,0.6210381,-0.014156566,0.1879239,0.24553323,0.041845363,0.010470439,-0.09937556,-0.18860728,-0.11518192,-0.04176037,0.573668,0.51727414,-0.22003031,0.61410433,-0.10280825,0.10421961,-0.27824956,-0.3892399,0.5154377,0.75633156,-0.05900485,-0.13391535,0.5897529,0.354938,-0.16719271,0.29420945,-0.5859927,-0.21013783,0.519276,-0.1424219,-0.48640063,0.059447885,-0.43219426,-0.0056996895,-0.7743739,0.3637632,-0.30269846,-0.77695316,-0.46834734,-0.19344553,-3.1526628,0.10423739,-0.23960136,-0.31164223,-0.11722629,-0.2371017,0.18290435,-0.4761605,-0.5098342,0.18937324,0.059038933,0.7361444,-0.074091695,0.09884904,-0.28090772,0.027219703,-0.22922857,0.07898802,-0.013248058,0.3871575,-0.15544176,-0.26498115,-0.0674767,-0.019982247,-0.5625018,0.059380826,-0.38002458,-0.5323696,-0.01270727,-0.39068937,-0.21127683,0.7190705,-0.5613715,-0.051227845,-0.2726606,-0.10595457,-0.17515557,0.46078518,0.13527891,0.09181296,0.14200157,0.026888648,-0.05344985,-0.21177243,0.40697977,0.12172302,0.3860321,0.5819833,-0.30776325,0.22343196,0.406743,0.55265325,-0.11660425,0.97297037,0.46419948,-0.06092038,0.24328105,-0.34664375,-0.16429259,-0.43477643,-0.36161402,0.028984942,-0.35767886,-0.64209807,-0.13102868,-0.29370946,-0.779755,0.42531878,0.005088458,0.16525151,-0.008225058,-0.02448551,0.28151062,-0.110818535,-0.14245579,-0.22633985,-0.0144149205,-0.60714555,-0.35531405,-0.5577274,-0.62846047,0.017166954,0.8941069,-0.07343507,-0.02308599,-0.025137233,-0.32076088,-0.1403944,0.07099592,0.07656283,0.045060415,0.1904947,-0.13716431,-0.6744827,0.56586486,-0.20513664,-0.13905388,-0.6253414,0.20493577,0.6433848,-0.44447166,0.4557001,0.28010982,0.096064314,-0.14820205,-0.43300635,-0.2662283,-0.20234005,-0.36024842,0.31329286,0.047272187,-0.84512126,0.425511,0.35413584,-0.2380884,-0.68018764,0.5540653,-0.005094721,0.009390895,0.062116906,0.23268461,0.2931627,-0.02913063,-0.16149117,0.34697706,-0.5601208,0.38727856,0.17120752,-0.030330699,0.5724281,-0.098910585,-0.18306321,-0.5757198,-0.0109757185,-0.4961592,-0.25722522,-0.0684652,0.27194998,0.2573079,0.45519844,0.003620354,0.35833663,-0.3011102,0.14428595,-0.041636325,-0.29972112,0.08475053,0.3374273,0.5248019,-0.4499216,0.6060916,0.0035431522,-0.10440503,-0.009723461,0.1146885,0.47560343,0.14870411,0.29503986,-0.0049594548,-0.19276756,0.16252184,0.94542706,0.2382366,0.41179234,0.028967999,-0.17763683,0.3217306,0.04417773,0.22222394,0.1833837,-0.622578,0.021624625,-0.26021582,0.2552868,0.36501738,0.18307194,0.36538866,-0.0989486,-0.279053,0.09923793,0.22470543,-0.059456248,-1.2124121,0.43620723,0.24427833,0.7767999,0.46630472,-0.05290179,0.16076909,0.6636021,-0.09112227,0.18599969,0.30046928,-0.035184003,-0.4663587,0.5544246,-0.79837203,0.5569458,-0.024391102,-0.054434583,0.09864911,0.09444279,0.36207154,0.75247014,-0.053210177,0.09344746,0.030915665,-0.29469872,0.09559874,-0.46616942,0.24563053,-0.45752007,-0.14274539,0.8066405,0.5508387,0.19640757,-0.10059774,0.05844572,0.0811611,-0.0054281903,-0.0061945734,-0.10767731,0.18672012,-0.13022086,-0.653342,-0.25084355,0.43277708,-0.16697079,0.20363949,0.1839303,-0.0030741142,0.20761058,-0.10805177,-0.16466394,0.008530407,-0.6235001,0.058114648,-0.23953074,-0.35523394,0.34199026,-0.37875605,0.25411624,0.12100427,-0.039225504,-0.10051485,0.40415654,0.23209327,0.6070964,-0.060378138,-0.05777285,-0.34395313,-0.016359907,0.21488568,-0.110569715,-0.09666577,-0.14031756,-0.12200959,-0.6671344,0.42805332,-0.08875464,-0.24673326,0.30973953,-0.14220884,0.05350596,0.47745937,-0.048150107,-0.11706508,0.29944664,-0.18147555,-0.17034248,-0.011084139,-0.16109878,0.35707793,0.24225466,-0.0717725,-0.02302539,-0.13787314,-0.19925134,0.02896208,0.025904136,0.47203547,0.27914318,0.059308566,-0.2666372,-0.19744796,0.264133,0.44728532,0.061138317,0.04594251,-0.06660744,-0.4196551,-0.34185356,0.09687578,-0.12837075,0.37059513,0.09069143,-0.24139506,0.44216144,0.030061828,1.098901,0.09242689,-0.354051,0.22852556,0.26659685,-0.021088783,-0.011836982,-0.2668849,0.85165334,0.5388434,0.06931174,-0.13693859,-0.3459412,-0.04402266,0.37074095,-0.15552743,-0.22369258,0.051333334,-0.75960404,-0.26843736,0.24911015,0.15494336,-0.09548084,-0.07021714,-0.0088393,0.19448218,-0.037988964,0.27448177,-0.59720224,-0.05766269,0.414834,0.46820074,-0.003980749,0.09611543,-0.39002594,0.38517523,-0.5599474,-0.0063768122,-0.14759047,0.16082558,-0.30805305,-0.104917526,0.2472578,0.16838191,0.4856748,-0.01719622,-0.30752033,-0.22620772,0.46011978,-0.02365586,0.16337048,0.4491703,-0.22872066,0.038346387,-0.067827515,0.31361657,1.0910562,-0.21121645,-0.007818795,0.35209215,-0.3600386,-0.56623924,0.5119168,-0.29601356,0.37145963,0.065905616,-0.26902005,-0.34017628,0.19164208,0.24594167,0.053791963,0.16376835,-0.47860608,-0.36472258,0.14970633,-0.32561734,-0.33551612,-0.35503864,0.042313144,0.6205488,-0.3123778,-0.22764063,0.08448439,0.41831955,-0.20222116,-0.5548402,0.0206254,-0.13193652,0.24540646,0.017067881,-0.35014403,-0.2616374,0.050026137,-0.32996362,0.19750334,0.17550865,-0.42835385,0.14153616,-0.18879212,-0.086273484,0.834439,-0.20107515,0.099041,-0.6560231,-0.46649557,-0.63238865,-0.46529543,0.18959545,0.33453828,-0.14171773,-0.38039902,-0.12503614,0.0039162533,0.0027143222,-0.075589426,-0.3685084,0.4447386,0.12336059,0.39436758,-0.16072853,-0.7701572,-0.04637038,0.19955625,-0.023677519,-0.59275687,0.54096496,-0.03074989,0.845028,0.11454303,-0.00944839,0.22663209,-0.41315615,-0.0074177017,-0.14053145,-0.2736029,-0.70747906,0.09781388,407 +667,0.29216203,-0.23718733,-0.6186886,-0.18674152,-0.28597784,-0.010277345,-0.2215191,0.33365828,0.23455903,-0.67680305,-0.16153885,-0.33356625,-0.24208236,0.53089905,-0.3028776,-0.7236411,-0.024293402,0.12412517,-0.74217045,0.69264853,-0.27191716,0.37482518,0.25289896,0.36202827,0.27206367,0.11661197,0.2723847,-0.055082895,0.0069559123,-0.12538776,-0.03607381,-0.20347676,-0.6571105,0.10194782,-0.04843175,-0.49444962,0.0050195754,-0.33553997,-0.22880138,-0.845396,0.48460707,-0.8438722,0.41638392,-0.16538474,-0.3266939,0.048691146,0.053144787,0.57021743,-0.17168695,0.09050707,0.09670297,-0.0323542,-0.124073185,0.17011206,-0.21479353,-0.5082176,-0.6754539,0.17395383,-0.40347517,-0.23195094,-0.27939218,0.09506503,-0.41041976,0.16717641,-0.19498378,0.40469974,-0.35034975,-0.19320199,0.33632326,0.02608067,0.4225543,-0.71301895,-0.19959368,-0.36582085,0.20063022,-0.19556099,-0.18166892,0.20609874,0.4104083,0.5393692,0.037354823,-0.026173644,-0.2184624,0.0028146293,0.3295121,0.2688132,0.03677392,-0.39702585,-0.22789064,-0.09098242,0.34466124,0.10200036,0.35594875,-0.40291956,0.031560276,0.07834661,-0.35039192,0.25207514,0.42505696,-0.19393466,-0.2310244,0.2768442,0.6132674,0.36139774,-0.030801224,0.13388847,0.1653772,-0.55836,-0.20177056,0.22922546,-0.30833882,0.5188708,-0.27616403,0.27339426,0.4349618,-0.13455233,0.13628629,-0.17614865,-0.21181631,-0.2794988,-0.08723743,-0.35208362,0.26656678,-0.4676469,0.2163933,-0.39258474,0.65366876,0.33353382,-0.6278489,0.2941341,-0.6018655,0.35681498,-0.061777994,0.43349198,0.83109325,0.34122828,0.1334619,0.7705122,-0.44066587,0.14176334,-0.017149486,-0.22605988,-0.048573263,-0.38661745,-0.26585615,-0.39871305,-0.08645597,-0.22839539,-0.10382126,-0.14247502,0.51462805,-0.5684234,0.028289787,-0.10971388,0.66362923,-0.22998333,0.12073427,0.99263483,0.749579,1.2191787,0.16377266,1.4871119,0.3171438,-0.40777257,0.27786875,-0.0853116,-0.884146,0.38199493,0.4779218,-0.05970248,0.4284795,-0.15922552,-0.024440814,0.52593255,-0.64252764,0.26940665,-0.45408392,-0.16783307,0.05197721,-0.1254387,-0.2570173,-0.1441395,-0.10596228,0.04789178,0.030732136,0.1809659,0.015028023,0.42167953,0.170629,1.2846328,-0.33104345,0.07427667,0.19928874,0.28206453,0.21678162,-0.34217733,-0.060140334,-0.15056324,0.6193021,0.03798355,-0.7952163,-0.02781524,-0.2308959,-0.5706953,-0.37260753,-0.15234576,-0.021509789,-0.086839035,-0.52584434,-0.22314177,-0.10608873,-0.40469086,0.097601965,-1.9268303,-0.3337093,-0.49760845,0.24158181,-0.25992018,-0.2338641,-0.09871973,-0.54399747,0.47368556,0.5173492,0.24724272,-0.6364952,0.32470006,0.52797395,-0.4404866,0.10109794,-0.7493407,-0.18490204,0.00081356213,0.18579791,-0.018589642,-0.07401988,-0.020911392,0.2270024,0.35237756,-0.053530116,0.02631924,0.22808883,0.55007124,0.039298788,0.6378873,-0.046715073,0.6503586,-0.4575494,-0.17791043,0.5566057,-0.38288873,0.1527387,-0.051167443,0.24932194,0.46361732,-0.74611896,-0.7317107,-0.862428,-0.66999024,1.3743954,-0.014043822,-0.40615904,0.38149977,-0.26811308,-0.11426394,-0.12707011,0.62845176,-0.23396495,-0.098700054,-0.92785794,-0.03324348,-0.123962894,0.19771153,0.05779248,-0.16050608,-0.5154464,0.74821544,-0.097239465,0.4647647,0.47550693,0.22432512,-0.176678,-0.67186075,0.08561259,1.0022918,0.53698194,0.24344349,-0.31783772,-0.1526313,-0.67512894,0.010563337,0.037148036,0.2034994,0.88210577,0.02238958,0.07942811,0.30324337,0.113847,0.29014963,-0.11274132,-0.4048341,-0.14554149,-0.09215943,0.6357819,0.3421076,-0.040676996,0.22887316,-0.049510993,0.2365702,-0.17034888,-0.38658231,0.7581391,1.1685072,-0.2628271,-0.3652748,0.53282887,0.4532289,-0.3266803,0.48327684,-0.6748615,-0.34430158,0.4822161,-0.033096552,-0.43951124,0.17346828,-0.55606425,0.3187694,-1.1159093,0.41491556,-0.43809512,-0.27627102,-0.86004037,-0.06781749,-2.7165768,0.28954193,-0.25260073,-0.26414827,-0.46318465,-0.20487401,0.4791755,-0.4884901,-0.9300878,0.113118835,0.024287852,0.8787155,-0.00124297,0.10534386,-0.20568512,-0.23597339,-0.38823846,0.0185092,0.21694955,0.30794996,0.1401909,-0.39841035,-0.09724213,-0.378078,-0.40982294,-0.016208006,-0.49435553,-0.57099086,-0.4530051,-0.521532,-0.39456397,0.62566274,-0.31946552,0.11919836,-0.17258762,-0.1301634,-0.20557539,0.34909388,0.07790819,0.1578548,0.18471663,-0.14895226,-0.22723077,-0.22051542,-0.05059501,0.09549032,0.0012450493,0.18400982,-0.27586183,0.48845404,0.50253356,0.96396595,-0.21299484,0.8716446,0.68060344,-0.065457076,0.30748737,-0.35194346,-0.22480692,-0.55940044,-0.10191197,0.06256096,-0.3447221,-0.7498611,0.23577768,-0.21595861,-0.8019424,0.49680087,-0.015127329,0.17077821,0.114719145,-0.058634043,0.30338675,-0.07141583,-0.06495642,0.0038521243,-0.104872,-0.46985534,-0.45135644,-0.75631654,-0.51116985,-0.08857442,1.2728631,0.04836499,-0.09706437,0.18784975,-0.3687236,0.27832204,0.20447713,0.016819706,0.024585761,0.31300285,-0.005384107,-0.6800463,0.4018335,0.052642364,-0.1000758,-0.7084392,0.13887602,0.8077021,-0.4672634,0.34112746,0.30827338,-0.1483295,-0.17016572,-0.44272548,-0.0044552204,0.10168985,-0.29793766,0.31902027,0.24676313,-0.5209291,0.37091547,0.3153265,-0.08724214,-0.97634757,0.5277288,0.17578384,-0.067748114,0.041114215,0.3317248,-0.036756057,0.13048641,-0.30203703,0.34913555,-0.31578717,0.08888659,0.37924188,-0.13335766,0.14419377,-0.25309926,-0.1895017,-0.76801056,0.12298655,-0.6361183,-0.041863672,0.28208297,-0.064413026,0.16650066,0.11950864,0.22197448,0.34486505,-0.11700957,0.030726526,-0.1468653,-0.3593467,0.20370255,0.48243618,0.36206907,-0.50920635,0.7422911,-0.016584963,-0.16351381,0.08157405,0.09376837,0.41217571,0.1796853,0.38870987,0.20498034,-0.17112376,0.2765635,1.0019228,0.14395675,0.5412864,0.2159753,-0.20609204,0.25787014,0.37847933,0.1689832,-0.08795696,-0.4982817,-0.039479714,0.058831975,0.02087241,0.58475554,0.026844826,0.29299122,-0.117586866,-0.30911925,-0.031216644,0.023531996,-0.17548281,-1.4749107,0.3998887,0.15693368,0.80028564,0.6849571,-0.07231065,0.18967769,0.4727696,-0.17879762,0.12630829,0.33490494,0.003279466,-0.5331466,0.4709646,-0.5796621,0.27240595,-0.09928419,0.026501795,-0.030453386,0.12701881,0.5853003,0.70059454,-0.05274739,0.17944646,-0.16940607,-0.23450504,0.3555821,-0.34252164,-0.050755646,-0.33525902,-0.36811167,0.6086451,0.5090467,0.332593,-0.22080255,0.04441653,0.0013021025,-0.121138625,0.18391348,-0.12629256,0.010340007,0.05649082,-0.67499447,-0.12842968,0.51487345,0.15950471,0.18712543,0.047923453,-0.6764089,0.14517115,-0.08823586,0.0527722,-0.08515142,-0.8741842,-0.08976821,-0.5171724,-0.26355526,0.1465767,-0.27175155,0.2214531,0.38562918,0.06994884,-0.5073963,0.07767063,-0.22409089,0.74789727,-0.08088835,-0.16019355,-0.32685694,0.27920756,0.257206,-0.5322786,-0.07833673,-0.16057517,0.035320137,-0.54654336,0.45524582,0.043157678,-0.26161596,0.30525976,-0.14173485,-0.14600295,0.6011706,-0.400614,-0.05446263,0.25562182,-0.05276635,-0.13385913,-0.26102254,-0.14779039,0.27957025,0.073466934,0.25279588,-0.18857208,-0.012902285,0.0015238294,0.59599376,0.14083639,0.5152292,0.6346922,0.12840487,-0.7551301,-0.11715547,0.1699016,0.5498339,0.12547109,-0.37715954,-0.29804227,-0.4878054,-0.22677842,0.39640716,-0.15959874,0.38806766,0.2042875,-0.66421914,0.6131346,0.42030826,1.1651617,-0.041784685,-0.52689093,0.08141492,0.43508714,-0.08483602,-0.23882154,-0.42820695,0.6205776,0.4564606,-0.26186225,-0.15061554,-0.2886595,-0.07458922,0.113923125,-0.2897743,-0.020251594,-0.13309528,-0.7097247,-0.34180322,0.20795038,0.3304475,0.08270093,-0.1998119,0.19981688,0.119551465,-0.06081268,0.47332513,-0.4738674,-0.24497288,0.24934009,0.06962821,-0.010931705,0.04826272,-0.32375076,0.3591641,-0.70568305,0.011431511,-0.26166663,0.27545065,0.018058363,-0.25607646,0.22983608,0.011855226,0.41561353,-0.32205054,-0.34665698,-0.31774583,0.61111164,0.22643398,0.2851656,0.7295712,-0.3980417,0.1675556,0.16938064,0.80962753,1.1077392,-0.09024776,0.15995084,0.17136781,-0.358664,-0.42395276,0.4237677,-0.49037182,0.21485512,-0.019153507,-0.21574304,-0.6010396,0.20331922,0.30590528,-0.045935236,0.0898774,-0.7017547,-0.5022074,0.39717183,-0.2835218,-0.25986207,-0.43248302,0.03582057,0.36606127,-0.27686808,-0.28521198,0.09086644,0.40793875,-0.20863542,-0.50110394,-0.19976814,-0.20071451,0.44097614,0.1368445,-0.34374857,-0.110077135,0.06494988,-0.5349848,0.14732935,0.02292511,-0.43727323,-0.09655272,-0.2927536,-0.086207286,0.99764484,-0.22695354,0.037270658,-0.43865183,-0.46508682,-0.8900041,-0.28520992,0.6815084,0.27269956,0.10754386,-0.5707889,-0.08079657,-0.12761047,0.17583922,0.22013667,-0.24809936,0.43016693,0.16765915,0.7269039,-0.039315615,-0.5857759,0.20279314,0.12161834,-0.09533966,-0.4480073,0.505114,0.14577805,0.88357836,0.11124824,0.21513098,0.07005779,-0.6319481,0.078030504,-0.020651337,-0.24149033,-0.61462873,0.17791055,420 +668,0.39630306,-0.018253805,-0.40479007,-0.24491388,-0.32377306,0.044087667,-0.04304913,0.24412547,0.40460846,-0.34110063,-0.020516817,-0.12159344,-0.054688156,0.25859916,-0.050124187,-0.695874,0.023444887,0.11865546,-0.7429116,0.42094472,-0.42816338,0.42384127,0.11432659,0.28158957,0.0459857,0.19469574,0.035061084,-0.05719238,-0.09524098,-0.14309913,-0.075751506,0.15335807,-0.7521449,0.20601335,0.024090687,-0.2325899,-0.07452585,-0.32562,-0.3036641,-0.71027046,0.33721587,-0.86281747,0.72081065,-0.09058372,-0.44326767,0.15255481,-0.0070475433,0.3327615,-0.27023947,0.112749845,0.1657088,-0.17312127,-0.017309513,-0.06973385,-0.24272805,-0.42246026,-0.54140514,-0.0688916,-0.5342331,-0.21491726,-0.21216121,0.09388613,-0.3212032,-0.0069362842,-0.33505934,0.59777075,-0.30289915,0.17616533,0.33196527,-0.0745375,0.32725284,-0.5365897,-0.1210234,-0.099043556,0.24579018,0.0012864516,-0.40973324,0.22955292,0.45527446,0.60138994,0.12950668,-0.2760054,-0.013875102,-0.0005044662,0.22335275,0.26791736,-0.12548737,-0.15783618,-0.19861962,0.006562545,0.34378022,0.25339985,0.15229186,-0.4572215,0.16868351,0.2002435,-0.111772224,0.38252783,0.4170317,-0.21018857,-0.34156746,0.4345654,0.461455,0.08413121,-0.022504646,0.3116728,-0.044370174,-0.5111571,-0.27629867,0.23269114,-0.23905778,0.3955683,-0.159988,0.019095797,0.8298267,-0.10359387,0.11722593,-0.09134357,-0.24007362,0.08208111,-0.36966366,-0.070608914,0.063347265,-0.5743961,0.02457019,-0.17467025,0.62953925,0.15104273,-0.73813045,0.25893575,-0.57740474,0.12696533,-0.1054264,0.61534315,0.84453744,0.33091074,0.15259555,1.0236707,-0.658797,0.03177016,0.07463697,-0.24156544,0.10590862,-0.24151272,0.27654558,-0.6140523,-0.1791061,-0.04127513,-0.20205964,0.01647285,0.14096847,-0.51484346,-0.22510716,-0.07193132,0.5158062,-0.3227188,-0.039891087,0.8190402,1.0651349,0.96525824,0.2567377,1.4902766,0.5052729,-0.16430578,0.250513,-0.29221052,-0.65388334,0.07318462,0.23509052,-0.19240904,0.34478074,0.004177121,0.014246175,0.2985534,-0.42427033,0.119856246,-0.09870657,0.349189,0.033485804,-0.2954009,-0.40566808,-0.16097243,0.14972483,0.045378625,-0.050803706,0.116787106,-0.16637124,0.35098642,0.25855824,1.120469,-0.120795846,-0.025818206,-0.036749817,0.28174078,0.25126413,-0.25483146,-0.050661363,0.3648104,0.45008132,-0.16518325,-0.54948395,0.12641829,-0.25926372,-0.27603355,-0.27570868,-0.275588,0.0966157,-0.14251496,-0.25105202,-0.2749926,0.047610685,-0.461832,0.445168,-2.475235,-0.25808552,-0.24337919,0.3370595,-0.20958193,-0.27890533,-0.21666907,-0.44749722,0.27990717,0.32829005,0.3342277,-0.72767985,0.2732803,0.30746365,-0.43366578,-0.053193636,-0.7252028,-0.05892458,0.04444492,0.24284817,-0.046859972,-0.07611963,-0.274332,0.23905018,0.6357749,0.15543197,0.10060258,0.34154174,0.34072953,-0.049056835,0.42886177,0.21457675,0.5988404,-0.09661767,-0.13730057,0.46138972,-0.33849785,0.14529784,0.1688517,0.09582094,0.33459914,-0.4488705,-0.671854,-0.76007926,-0.5061782,1.2840018,-0.35101095,-0.4253163,0.40596274,-0.26873118,-0.19437233,0.12331472,0.43707854,-0.050291777,0.06590022,-0.8196815,-0.044381417,-0.06581555,0.23675473,-0.15307906,0.05601341,-0.2642222,0.76467663,-0.25886977,0.48691857,0.31915563,0.12470496,-0.12399439,-0.41693908,0.09718038,1.1767921,0.5764892,0.060371988,-0.03767349,-0.18411261,-0.3151739,-0.22414629,0.1473049,0.6150785,0.75973547,-0.11328027,0.07465534,0.33656108,-0.23547648,0.07369772,-0.08355352,-0.37694675,-0.020945854,-0.0048247394,0.46787754,0.35577643,-0.081851594,0.49297982,-0.20987852,0.11326362,-0.14805458,-0.62953365,0.5439699,0.7950363,-0.268285,-0.34108666,0.48766863,0.25880587,-0.34314328,0.35127798,-0.47147718,-0.12258832,0.73728245,0.05000815,-0.5129045,-0.019237537,-0.32957327,0.25399467,-0.95765746,0.3258511,-0.24252878,-0.73135847,-0.41001722,-0.03335099,-3.2143795,0.13631564,-0.2870391,-0.07040773,-0.23049249,-0.079849295,0.41003454,-0.23998588,-0.6316806,0.061719675,0.024998458,0.4802146,-0.08891915,0.03937833,-0.24156204,-0.16296816,-0.40179268,0.15940025,0.06274398,0.18118931,-0.055376265,-0.3623366,0.10356298,-0.16268939,-0.610448,-0.06909909,-0.65994805,-0.5974986,-0.21142942,-0.5141543,-0.34487432,0.7148742,-0.41543177,-0.1630249,-0.2898213,-0.02270616,-0.12854198,0.30842498,0.106375895,0.22492291,0.012055278,-0.033119086,-0.26851672,-0.3383789,0.14668491,0.08484212,0.29932266,0.3961738,-0.18288375,0.3143615,0.50001436,0.6401175,0.007933129,0.72997135,0.34596106,-0.17347775,0.31403765,-0.31200355,-0.17465805,-0.7268967,-0.38288307,-0.18016389,-0.4251427,-0.43357518,-0.21664923,-0.31634837,-0.8781365,0.33985144,0.08462755,0.32414386,-0.040831126,0.38344413,0.33942035,-0.03465297,0.14426345,-0.20805107,-0.28768215,-0.5961917,-0.35581487,-0.7282139,-0.47893354,0.29911476,1.1561017,-0.21799073,0.02126766,0.02742206,-0.52712506,0.18717942,0.0830969,0.10342912,0.14030518,0.57515645,-0.09406022,-0.7106615,0.1581572,0.036185358,-0.06127762,-0.73924726,0.12303435,0.9711578,-0.693153,0.6833133,0.17638408,0.16290379,-0.066909954,-0.45899013,-0.23495704,0.20348889,-0.33653846,0.4753328,0.29204985,-0.44917887,0.36537236,0.2852925,0.0155360745,-0.6734565,0.4155647,-0.013938487,0.019363683,0.07823208,0.36875102,-0.09639395,-0.08243867,0.008304522,0.2542878,-0.4351216,0.41033384,0.44504377,-0.08577215,0.14962788,0.050841827,-0.305496,-0.64302987,-0.012827177,-0.5344296,-0.35480732,0.048911598,0.0907575,0.09082479,0.2514024,0.19741638,0.43097016,-0.10957505,0.12779514,-0.14687073,-0.36896196,0.51638174,0.5383764,0.24162579,-0.36751133,0.57211185,0.08215862,-0.1154579,-0.23594628,-0.021018948,0.5064787,0.2522072,0.40229636,0.05427322,-0.09603036,0.18964837,0.711423,-0.01925375,0.3105148,0.0833752,0.013063293,0.31228703,0.168004,0.1546723,0.024498655,-0.39771354,-0.06115124,-0.10039529,0.2181209,0.36116126,0.17507178,0.2334589,-0.029740917,-0.20407027,0.013224089,0.10034631,-0.12621102,-1.3512925,0.3930456,0.27528778,0.54332757,0.5414134,0.0026997786,-0.0031827688,0.41223437,-0.24862854,0.18829148,0.35416126,-0.10152991,-0.31173283,0.44900566,-0.68871665,0.48415044,-0.1615196,0.093084306,0.14498861,0.27843747,0.35307,1.0120579,-0.21041848,-0.07401185,-0.007659509,-0.26323408,0.25250325,-0.3012723,0.17130746,-0.59372437,-0.4775039,0.60764587,0.47947404,0.2502784,-0.38432154,-0.051585987,0.063685685,-0.2664981,0.13443568,-0.09781342,-0.15655789,-0.055748977,-0.54035145,-0.28533944,0.47940624,-0.15678413,-0.03243607,0.13048063,-0.19806473,0.15408958,-0.2854063,-0.0028294371,-0.12627387,-0.7289327,-0.2333779,-0.27962878,-0.27218756,0.18696631,-0.42138177,0.23454425,0.20134884,-0.02457278,-0.27077252,0.05934809,0.05254358,0.5832682,-0.1564843,-0.24030334,-0.20277113,0.13452438,0.19774477,-0.32472903,0.094530806,-0.21236,0.09854702,-0.59574085,0.49477312,-0.20966905,-0.2786558,0.1674896,-0.21360819,-0.12049552,0.3562786,-0.51733124,-0.1403374,0.052789908,-0.22185446,-0.1883355,-0.16625541,-0.23296309,0.22534928,0.10611351,0.07715516,0.061444107,-0.09145835,-0.15128615,0.14012533,0.33705804,0.26459035,0.42022097,-0.13693883,-0.32880914,-0.014555454,0.10217486,0.36712232,0.23081493,-0.09001963,-0.08177047,-0.20119897,-0.28522727,0.33092964,-0.15928017,0.29744637,-0.054471496,-0.558158,0.82793087,0.31396323,1.2622002,0.04425278,-0.2990949,-0.05384693,0.5283266,-0.026142888,0.056309693,-0.29404518,0.8317548,0.63123256,0.011293248,0.020814218,-0.3961516,-0.2064008,0.45484847,-0.105030864,-0.07381043,-0.053193577,-0.7852446,-0.3624808,0.15508237,0.2596746,0.00036241917,0.20251785,-0.025024153,-0.020964792,-0.051369388,0.36034277,-0.51622677,0.07006494,0.16215992,0.19090572,0.121132426,0.2803474,-0.3935377,0.35202518,-0.7792173,0.22294298,-0.20127241,0.082724735,0.035722487,-0.12465123,0.10062293,0.17797372,0.40301242,-0.41143835,-0.29046035,-0.2979832,0.7245986,0.17088653,0.26688144,0.8372272,-0.23929961,-0.033013783,0.24532267,0.5439196,1.3293959,0.09253732,0.16186784,0.19214351,-0.40023917,-0.6809286,0.28896403,-0.24002345,0.19083785,-0.08243525,-0.32289308,-0.25724214,0.3143185,0.06372233,-0.06704041,0.109095015,-0.5839258,-0.27606624,0.42453912,-0.4142814,-0.29002765,-0.33664423,0.20151402,0.5315675,-0.29196402,-0.29340628,0.0010971198,0.2600319,-0.4295743,-0.47154668,-0.048225682,-0.19367114,0.35731757,0.06106599,-0.37822664,0.036604814,0.2780928,-0.5513864,0.005415169,0.24259421,-0.30215746,0.051635504,-0.09446837,-0.16578914,0.7524642,0.0077367653,-0.117277674,-0.6709784,-0.58102715,-0.6679788,-0.21535787,0.27933085,0.2191318,-0.044875327,-0.47426522,-0.17999472,-0.21404082,0.3127795,0.15718427,-0.55120736,0.44777945,0.21670048,0.4863715,-0.04583697,-0.93,0.04485925,0.04891257,0.09444007,-0.6222467,0.5751849,0.08204706,0.607551,0.096242204,0.08583819,0.1633679,-0.55744195,0.3192653,-0.3088163,-0.14190769,-0.6887707,0.11450188,424 +669,0.343856,-0.0948985,-0.5074908,-0.25063604,-0.08810692,0.10914751,-0.15083154,0.5692445,0.1873137,-0.50176626,-0.1739269,-0.018462896,-0.034379803,0.33895972,-0.3079685,-0.37903273,-0.15260777,-0.01936383,-0.45641467,0.5393026,-0.26916024,0.20669022,-0.074006446,0.50660884,0.28035063,0.32390675,0.07101626,0.05307891,-0.038711634,-0.43659586,-0.15048474,0.33899865,-0.4850135,0.3915711,-0.14986897,-0.20409232,-0.024973737,-0.4436005,-0.31932512,-0.7485868,0.23045489,-0.8767154,0.46558148,-0.1175319,-0.26628736,0.24198332,0.3268372,0.17204182,-0.022772243,-0.26910532,0.36777988,-0.1969429,-0.069210365,-0.31689838,-0.12652668,-0.39972937,-0.47804514,-0.11150846,-0.320816,-0.28920907,-0.30192602,0.25414267,-0.2590446,-0.087513715,-0.034785084,0.68788457,-0.47445157,0.28939733,-0.004138644,-0.3484111,0.30590773,-0.7484305,-0.17524019,0.07795826,0.3440994,-0.13805816,-0.10720343,0.3331901,0.14552933,0.29048678,-0.1705899,0.039365843,-0.32719484,-0.2237462,0.17953593,0.5185706,-0.15471125,-0.41209057,-0.045168407,-0.11123073,0.30319786,0.2492409,0.13652548,-0.403683,-0.14727259,-0.07196983,-0.17176008,0.49916995,0.35899633,-0.10262227,-0.07945042,0.41335207,0.4152642,0.3110474,-0.2662947,-0.11901905,-0.12860161,-0.43980423,-0.09994961,-0.12094741,-0.12990576,0.44801039,-0.040553056,0.36061537,0.6320287,0.03590917,-0.08945394,0.07816609,0.1732572,-0.099962756,-0.2608145,-0.14124677,0.16838945,-0.28356472,0.120086744,-0.12050577,0.69493794,-0.10182906,-0.68600905,0.336858,-0.5368284,0.009907945,-0.0911419,0.41945064,0.43097466,0.45260188,0.21652205,0.6809865,-0.45700902,0.022613006,0.05569174,-0.34394646,0.097588494,-0.07998077,0.08820923,-0.6055179,0.045110688,-0.019491963,-0.03899665,0.17786247,0.34747612,-0.5912236,-0.08087374,0.19194777,0.89693743,-0.24917096,0.04276019,0.70104444,1.005781,0.8652939,-0.021982808,0.93347234,-0.048257835,-0.20771953,-0.15041897,-0.07286214,-0.5875846,0.2342375,0.44243434,-0.16356692,0.07954648,0.07397939,0.23323454,0.3699997,-0.27814567,-0.14442874,-0.15463935,0.3352466,0.16946353,-0.11300461,-0.44246963,-0.22560279,0.06190386,0.14400141,0.17425409,0.07440481,-0.3174423,0.3766527,0.20443891,1.8241178,-0.057627637,0.055460252,0.12144168,0.2949855,0.22842953,-0.03546457,0.03679227,0.41868722,0.24590427,0.15939368,-0.47162172,0.21154903,-0.23103139,-0.44903627,-0.08893318,-0.44524178,-0.27633184,-0.05714757,-0.243097,-0.1765944,-0.019293023,-0.33691108,0.3826056,-2.9015913,-0.1066861,-0.24785392,0.37551305,-0.029514648,-0.3559725,-0.068924695,-0.40976068,0.38953245,0.32792667,0.62273765,-0.5405634,0.19419065,0.49579054,-0.5207934,-0.2215666,-0.37812594,-0.12265471,0.10489815,0.3908258,0.17367442,0.021958195,-0.07691842,0.3238947,0.3537687,0.08002353,0.14515577,0.4279687,0.4446676,-0.29707295,0.560522,-0.1560958,0.57981193,-0.069870144,-0.18778434,0.34332642,-0.36547932,0.14580847,-0.17265779,0.11606869,0.4534305,-0.09748059,-0.8591627,-0.53788555,-0.16621725,1.2469573,-0.18669316,-0.56259346,0.23492835,-0.19946139,-0.41164318,0.08821122,0.46761644,-0.1638942,0.081860386,-0.7902547,0.096780665,-0.3001514,0.23954108,0.0065585147,-0.24418443,-0.5038491,0.73625183,-0.021657787,0.74044454,0.3059641,0.1915684,-0.43837196,-0.20487793,-0.032376572,0.898645,0.5116066,-0.018215898,-0.10132863,-0.10066133,-0.45333037,-0.18407463,0.21249554,0.78221214,0.4554914,-0.027458243,0.053006027,0.31514993,-0.026387779,-0.012052624,-0.16897069,-0.35053423,-0.025268666,-0.028179446,0.5107575,0.64511967,-0.059974,0.42898348,0.045181815,0.46586365,-0.114941485,-0.44369617,0.22859544,0.6508486,-0.16050933,-0.34820366,0.71848094,0.4267922,-0.16007999,0.3533293,-0.5434155,-0.37725103,0.5927583,-0.13825212,-0.53424495,0.25634748,-0.2726031,0.06394959,-0.75858086,0.3904532,-0.19458032,-0.7599863,-0.5573258,-0.13380185,-2.4899766,0.18942359,-0.1380563,-0.26068416,-0.27824384,-0.23710236,0.05042032,-0.6316028,-0.70715785,0.10511708,0.045810994,0.51845443,-0.16487297,0.09800568,-0.07393949,-0.24255705,0.09359123,0.27651203,-0.0669901,0.34897768,-0.048712485,-0.38429457,-0.21753788,0.071252026,-0.40836507,0.055488925,-0.5179299,-0.5982994,0.0997634,-0.56693965,-0.07555162,0.6558351,-0.50804806,0.021982102,-0.27092963,0.11780128,-0.065134816,0.077416666,0.18886654,0.107099295,0.14233659,0.041990988,0.06438918,-0.38432252,0.3156792,0.010673802,0.3035011,0.21519385,0.09687367,0.25362667,0.42429477,0.5610381,-0.21309185,0.93092835,0.3208483,-0.06779209,0.107846774,-0.26225916,-0.48009217,-0.4917553,-0.3520201,0.36163074,-0.34114093,-0.28183633,0.004158552,-0.31341457,-0.7132779,0.511633,0.11598532,0.2019701,-0.11441915,0.012412308,0.42709434,-0.15143083,-0.17285424,0.03732968,-0.10331997,-0.6453285,-0.31690872,-0.6826344,-0.45747566,-0.06566739,0.8740566,-0.24217829,0.019143943,0.17736514,-0.2142397,0.12928057,0.061523356,-0.011628673,0.12220489,0.4111374,0.0067413105,-0.65206087,0.40958178,-0.26368484,-0.06038762,-0.5408834,0.26382077,0.63218176,-0.46293515,0.34779704,0.36139858,0.0670078,-0.24853936,-0.40699893,-0.0006311622,-0.11891627,-0.17312989,0.394914,0.15342568,-0.5549616,0.38769785,0.13115293,-0.19223136,-0.7043369,0.528706,-0.14531864,-0.16189758,-0.018361267,0.39094633,0.07457414,-0.09636022,-0.36324582,0.114003025,-0.280498,0.3429024,0.17498933,-0.032534413,0.28859144,-0.18324134,-0.08018549,-0.6871379,0.079217955,-0.498964,-0.42795944,0.23275962,-0.009975597,-0.034107737,0.14892116,-0.02292495,0.2714512,-0.5125538,0.07255482,-0.16528323,-0.42202532,0.5136897,0.45312965,0.6359834,-0.39298072,0.57643056,0.06700694,-0.12220522,0.09719315,-0.0010364148,0.42220575,-0.03986941,0.30819613,-0.004894614,0.045130644,0.35216787,0.5603024,0.24830765,0.34538034,-0.041853603,-0.253533,0.03141075,0.00535581,0.18025826,0.002587291,-0.7802821,0.271589,-0.30704525,-0.0049092416,0.4919031,0.16462411,0.26556608,0.06290928,-0.5331854,0.14452943,0.2148259,-0.038614675,-1.0565362,0.30676368,0.05555496,1.0467257,0.32856897,0.10718958,0.06988095,0.7729941,-0.084965944,0.053171866,0.32740358,0.06209004,-0.33890995,0.50704813,-0.80064553,0.36775815,0.00043848387,-0.03715155,0.15473893,-0.054587882,0.32664618,0.70157087,-0.22221628,0.0667337,-0.048530392,-0.31759247,0.07264908,-0.40980715,0.07101012,-0.30917743,-0.42043594,0.42592114,0.57532436,0.4089864,-0.23794493,0.13963129,0.059883814,-0.11535645,0.13041623,0.011372202,0.06981854,-0.084650606,-0.63251454,-0.08739584,0.3819825,-0.005625036,0.17453417,-0.10956462,-0.15995726,0.37360522,0.06290277,0.1155156,-0.008163175,-0.51596683,0.03679817,-0.32163,-0.4518262,0.3783446,-0.21215382,0.149753,0.17776471,-0.05740908,0.016620673,0.39430487,0.31585538,0.8763873,0.15791765,-0.056180887,-0.38950267,0.18242396,0.12144462,-0.15174024,-0.032013163,-0.4112522,0.13564986,-0.6292622,0.37278306,-0.11002084,-0.42576128,0.04129764,-0.24543296,0.08624719,0.36638826,0.010903707,-0.11596047,-0.16541964,0.02156678,-0.0054763462,-0.13107058,-0.22042462,0.19442496,0.09162622,0.00021869403,-0.2019232,-0.077382796,-0.36355722,0.07335795,0.001485687,0.57080716,0.44918293,-0.069021694,-0.31304976,0.06381233,0.0927097,0.5559096,0.03615533,-0.053395946,-0.10082225,-0.5710816,-0.44076332,0.53540796,-0.06950731,0.3467476,0.2756984,-0.10927113,0.55984294,-0.1621986,1.1320007,-0.0016985948,-0.41189083,0.12600213,0.49906117,0.059116364,0.031811886,-0.3105019,0.9726132,0.46651238,0.04099583,-0.056593813,-0.412031,0.03118045,0.27098888,-0.17234462,-0.061406054,-0.19404468,-0.6274094,-0.421363,0.102954075,0.16932562,0.21891436,-0.13422707,-0.067001745,0.38995552,0.07379123,0.28266117,-0.38031524,-0.17114346,0.20348524,0.08626751,-0.16841468,-0.008108834,-0.5310347,0.35262614,-0.45907623,0.15229867,-0.49126202,0.1820316,-0.2735379,-0.11153335,0.14739448,-0.2943278,0.42547005,-0.42320564,-0.47964185,-0.09913477,0.34663063,0.14158146,-0.029643547,0.49116734,-0.3256028,0.03003542,0.00027223735,0.48486096,0.86551344,-0.33740857,0.1937487,0.4571506,-0.45279294,-0.51942915,0.104696974,-0.32436657,0.123277105,-0.0684784,-0.19864693,-0.29266727,0.35032675,0.27145046,-0.093519084,-0.1054362,-0.4011456,-0.100602284,0.36362627,-0.30584177,-0.15028456,-0.26968363,-0.141719,0.36844715,-0.3499676,-0.4729033,0.11600414,0.29602125,-0.02862057,-0.6351689,-0.041633762,-0.33410507,0.48297003,0.043108344,-0.47365522,-0.3730521,-0.07571534,-0.36056322,0.31649765,0.1357709,-0.23095372,-0.048261944,-0.2247978,-0.029008912,0.8665902,-0.1349391,-0.025372697,-0.44658074,-0.2968252,-0.6422174,-0.34824717,0.20372626,0.06284371,-0.06736329,-0.5832258,-0.20018516,-0.26256046,-0.025217175,-0.17924307,-0.19367959,0.3485431,0.08012966,0.6009134,-0.40655282,-0.951018,0.40974694,0.17830542,-0.022606198,-0.68523586,0.5149224,0.003503866,0.57985604,0.048806135,0.091219984,0.23566912,-0.5911335,-0.1028914,-0.23647764,-0.18480395,-0.471498,0.27989072,432 +670,0.27506414,-0.018000979,-0.41581768,-0.1941529,-0.27825344,-0.08691562,-0.15631384,0.26924276,0.2667783,-0.067048796,0.07018325,-0.010746259,-0.1526925,0.47601846,-0.07709804,-0.84789306,0.071184985,-0.028383275,-0.6882118,0.54178834,-0.5722021,0.2745378,-0.10776433,0.35728306,-0.08044604,0.20256898,0.06786693,-0.07953261,0.15952608,-0.06648321,-0.105281286,0.22886637,-0.6178366,0.35758665,-0.04646381,-0.24557965,0.0727094,-0.2417365,-0.38330925,-0.57232106,0.18487015,-0.5429131,0.59113365,0.044511054,-0.32676938,0.2422571,0.22364885,0.25574565,-0.36116028,-0.021880733,0.27908558,-0.15076983,-0.16401713,-0.15015496,-0.21954481,-0.53759223,-0.54883164,0.02197917,-0.7711905,-0.0909289,-0.24537228,0.22153696,-0.3529355,-0.07517863,-0.26274273,0.47666708,-0.34361127,0.17302468,0.14199881,-0.110319145,-0.065350644,-0.38453534,-0.08330501,-0.09884539,0.29640672,0.020152735,-0.3170217,0.3374052,0.37413904,0.48759687,-0.049121615,-0.24767703,-0.25527507,-0.17645772,0.18196625,0.47071093,-0.018328428,-0.26026374,-0.2189408,0.044349805,0.123988815,0.23286694,-0.061878428,-0.46506995,0.041886587,0.0049647368,-0.32586053,0.58095163,0.40535054,-0.5486348,-0.38362342,0.5220241,0.36098802,0.2026053,-0.24695651,0.16445614,-0.07197123,-0.5361593,-0.2416795,0.17350386,-0.1326073,0.3609963,-0.15676938,0.1752879,0.70299286,-0.19049191,-0.1593332,0.09448438,-0.21882409,0.10231069,-0.32052034,0.025062634,0.037279792,-0.5563591,0.061201558,-0.21640888,0.8062169,0.05042582,-0.8233712,0.28694677,-0.5904843,0.06371541,-0.20292942,0.6620147,0.8342132,0.33709347,0.21924034,0.75336206,-0.5078212,0.08219877,0.06672762,-0.39068043,0.02710124,-0.042492066,0.20088723,-0.6051677,-0.006406885,-0.053151462,0.086837806,0.13148037,0.17590117,-0.39512417,-0.14542745,0.09037364,0.83564335,-0.29479435,-0.30205154,0.7653671,1.098113,1.0268279,0.11007099,1.2047147,0.40358722,-0.10916788,0.14553049,-0.42058828,-0.49770424,-0.0031756805,0.2188155,-0.11219649,0.27716443,-0.02843136,0.13638937,0.43207085,-0.21725999,0.01511848,0.03223068,0.5087035,0.05926421,-0.15502277,-0.17717582,-0.24269469,0.18586993,-0.10507139,-0.03470793,0.35321766,-0.20971915,0.33442286,0.14101234,0.9994853,0.23283936,0.15363114,-0.05772137,0.4379021,0.24641384,-0.10213321,-0.09273608,0.4052486,0.37062436,-0.05706082,-0.56752014,0.07809667,-0.44452265,-0.27381867,-0.18367052,-0.44752643,-0.21235606,-0.03355104,-0.30922747,-0.22483373,-0.0040364745,-0.13165836,0.543366,-3.007884,-0.2371659,-0.15849908,0.20647614,-0.14303707,-0.1321253,-0.12513775,-0.49708843,0.3269511,0.35969183,0.36657906,-0.5580474,0.55684924,0.3203796,-0.41786352,-0.24397938,-0.6973674,-0.18248327,0.056952477,0.3430581,-0.11413883,0.047684744,-0.13796066,0.105451584,0.6598376,-0.07391545,0.026372384,0.14805569,0.5712941,-0.13256243,0.52998745,0.10593592,0.6523049,-0.27481854,-0.15595442,0.26483876,-0.39718232,0.5289889,0.07741535,0.15146627,0.5233912,-0.42702115,-0.9141124,-0.42879596,-0.3537911,1.1105874,-0.28016263,-0.29604974,0.29866183,-0.3012968,-0.13639967,-0.03479329,0.3458951,0.002916203,-0.11501361,-0.6077945,0.19712344,-0.21332678,0.2213289,-0.08797788,0.010548736,-0.19063732,0.68705,-0.061393175,0.55768496,0.2569437,0.09692964,-0.40546206,-0.30658787,0.031119611,0.8405746,0.36832288,-0.011411394,-0.12690352,-0.20708445,-0.22020754,-0.32814163,0.08614178,0.679895,0.47635126,-0.08367057,0.09548993,0.44600445,-0.27214268,0.104974344,-0.11439863,-0.32763317,-0.07361306,0.23161313,0.4303183,0.6548005,-0.22533043,0.66378176,-0.025378194,0.04156742,-0.23677577,-0.44832614,0.5446554,0.47025383,-0.10586922,-0.32562065,0.47422224,0.38578928,-0.20899075,0.3967647,-0.44834378,-0.33138803,0.6953475,-0.0836255,-0.3390644,0.030943481,-0.24314973,-0.15131694,-0.890031,0.28704745,-0.33139977,-0.6447812,-0.4947704,-0.107967615,-3.8110754,0.04313095,-0.2857097,0.07068088,-0.15384696,-0.061952714,0.2556182,-0.43365,-0.40719938,0.21396142,0.18957426,0.44481552,-0.10985829,0.16961217,-0.24916026,-0.27891478,-0.33348128,0.26178804,0.04671137,0.2011945,0.10015479,-0.39900228,0.21815032,-0.11999167,-0.5219294,-0.055111427,-0.38142845,-0.34391367,0.018223587,-0.5493876,-0.20443231,0.74220806,-0.54389656,-0.056268223,-0.3243256,0.041301075,-0.082350604,0.38007757,0.18453392,0.2130566,0.018379541,-0.04408376,-0.27184188,-0.44177192,0.18905303,0.11185797,0.40199375,0.49337357,0.1384483,0.25879824,0.6425492,0.6251765,0.052753273,0.6832656,0.16592942,-0.1961372,0.38238522,-0.24185228,-0.1790732,-0.59565914,-0.44832066,-0.2588223,-0.40903085,-0.5588665,-0.0544815,-0.20483285,-0.74498105,0.47085905,0.21696314,0.02666541,-0.23381259,0.30249053,0.27281708,-0.12545177,0.17491056,-0.17178679,-0.18360645,-0.41479862,-0.4059605,-0.69178903,-0.47890377,0.23572055,1.1220337,-0.24063618,-0.062443033,-0.04365423,-0.33652973,-0.08546483,0.024368923,0.18794507,0.31022274,0.22637513,-0.14231607,-0.6268917,0.35395527,-0.29093477,0.053068757,-0.5643132,0.035321455,0.81229717,-0.7236439,0.64057153,0.19227457,0.1905788,-0.013706519,-0.5739438,-0.34048197,0.055196628,-0.09485273,0.35647964,0.13369504,-0.6928406,0.44243982,0.27689713,-0.18081625,-0.70622635,0.4302185,0.015627421,-0.11280219,0.13772377,0.31225646,0.2611271,-0.09508023,-0.022693377,0.32059538,-0.45167038,0.2379965,0.07464379,-0.034627896,0.2397016,0.008129725,-0.20542862,-0.5499682,-0.15300393,-0.42153352,-0.36224237,0.058727667,0.11975603,0.1921302,0.061615486,-0.08100788,0.26129586,-0.15735966,0.2490041,0.010263479,-0.13663727,0.32567424,0.406462,0.30246398,-0.5482553,0.57614106,0.29942787,0.08264477,0.03970067,0.1515809,0.44184902,0.17107306,0.4558931,-0.08430241,-0.14823252,0.23844655,0.86137986,0.13607004,0.24839677,0.15051112,-0.030917048,0.22999135,0.0690355,-0.027327742,0.09377468,-0.26976562,0.05257869,0.02562621,0.24855742,0.44504637,0.16516949,0.293737,-0.0067590335,-0.06360377,0.13196188,0.22612514,0.07379262,-1.0535167,0.49289852,0.25645375,0.7360202,0.45200032,0.09306634,-0.055299,0.6673408,-0.27594075,0.040377684,0.5253989,-0.029036295,-0.3068848,0.5620307,-0.6124738,0.6465436,-0.13026363,0.074490756,0.22844134,0.16230623,0.22832134,1.0122977,-0.16244675,-0.015619512,0.061200477,-0.40276676,0.06886614,-0.21861324,0.14350374,-0.32858998,-0.35056353,0.6538692,0.43505356,0.14901075,-0.24349032,-0.0104112085,0.060658243,-0.15588555,-0.087463774,-0.15079346,-0.0349262,-0.17525643,-0.50067425,-0.11874248,0.6564372,-0.14096998,0.06481722,0.10581219,-0.16373433,0.36724275,-0.22050546,0.013092334,-0.025467783,-0.5465486,-0.01427468,-0.21476248,-0.49158207,0.28179842,-0.43909612,0.24901755,0.13798885,-0.014306387,-0.23861185,0.49110258,0.038298585,0.6724195,-0.20178403,-0.025386218,-0.21759135,0.050897956,0.256108,-0.2387836,-0.02600329,-0.49086776,-0.00669362,-0.7012206,0.34861276,-0.2651815,-0.37098455,-0.39692357,-0.099527486,0.11335841,0.40487495,-0.28231838,-0.11727974,-0.0051211235,-0.21385002,-0.29095995,-0.018618045,-0.21315274,0.30504093,0.15231012,0.14445028,-0.07986773,-0.25352138,-0.1648326,0.16766335,0.11033487,0.18310048,0.055297416,0.09861675,-0.19071124,0.035177276,-0.062242653,0.40543666,0.20353852,-0.013043018,-0.12728843,-0.13563463,-0.34110802,0.3549606,-0.09537117,0.25019658,-0.040736053,-0.5739947,0.69056374,0.0583558,1.361031,0.08555811,-0.36574686,0.12252743,0.60337454,0.12224959,0.1951076,-0.15573381,0.80154705,0.5327108,-0.04575267,-0.12613787,-0.45332274,-0.24921598,0.35782778,-0.28315282,-0.29645592,0.08535172,-0.5823361,-0.061737895,0.12189767,0.08328785,0.15577577,-0.08500011,-0.27063277,-0.010985489,0.21388935,0.4272959,-0.6575492,-0.06608736,0.20766027,0.37625366,0.065722,0.22913098,-0.3561077,0.34341228,-0.7013804,0.33457425,-0.42374232,0.10771505,-0.2853269,-0.14284907,0.21287915,0.11273584,0.31070006,-0.18608679,-0.27586764,-0.13949244,0.6920255,0.28846586,0.30705863,0.7670987,-0.28854033,-0.1829009,0.060321026,0.5354017,1.0891024,-0.074827276,-0.36102512,0.075190976,-0.2863354,-0.7064472,0.11011289,-0.47849458,0.021419208,-0.049866863,-0.28479046,-0.18538603,0.2805659,0.080863826,0.18943486,0.14117745,-0.6749016,-0.15033549,0.38749915,-0.22991107,-0.31412274,-0.20805621,0.23974395,0.8993903,-0.26757038,-0.2720956,0.11086981,0.19356304,-0.26577532,-0.5388753,0.10999697,-0.31891558,0.29821312,0.16355893,-0.3345714,0.051571324,0.28922248,-0.50919414,0.19291559,0.32773682,-0.31471828,-0.029572196,-0.14267935,-0.2584306,0.9631764,-0.15133867,0.29674688,-0.56656307,-0.5995234,-0.55196273,-0.37694848,0.25822887,0.12341734,-0.0933258,-0.57449,-0.22324476,0.0040509976,-0.08391379,0.116787426,-0.60313493,0.35845274,0.0472979,0.30340323,-0.08250827,-1.0714452,-0.066427454,0.22698127,-0.07795334,-0.65626407,0.4792207,-0.25211477,0.69715494,0.022891285,0.036821492,0.2192505,-0.48732615,0.26694587,-0.49109915,-0.09021825,-0.57533646,0.18821104,433 +671,0.38612556,-0.36577418,-0.64805084,-0.14325818,-0.0023077405,0.055153105,-0.36041215,0.3172119,0.018616028,-0.6378844,-0.08999358,-0.052856866,-0.08284744,0.14065307,-0.18775657,-0.48002717,-0.037628576,0.12420264,-0.5192626,0.40167925,-0.64203715,0.22407605,-0.09539854,0.18044037,-0.12099433,0.078697,0.23109096,-0.094355874,0.121725306,-0.17404915,0.28468752,-0.08704695,-0.62397164,0.25428846,-0.13252237,-0.42164823,-0.01090376,-0.30690357,-0.39031076,-0.7765277,0.31836507,-0.80998355,0.49273905,0.118196264,-0.26742065,0.20860672,-0.044341106,0.2995019,-0.32965267,0.21096016,0.23963049,-0.18447235,-0.18849255,-0.1546092,0.03940657,-0.30945554,-0.5312457,0.05052457,-0.5137011,-0.012320184,-0.24038556,0.19070338,-0.40123448,0.05966068,-0.3032685,0.25848457,-0.43497902,-0.22826006,0.28863642,0.02744895,0.31666666,-0.5797539,-0.1579303,-0.22343516,0.15227993,-0.19412059,-0.21134081,0.22207054,0.14212188,0.485822,-0.041516863,-0.081763946,-0.11246065,-0.088105716,0.5021466,0.4530557,-0.075013615,-0.37311834,-0.2283899,-0.22724034,0.15557133,0.06771266,0.00028300285,-0.2484681,-0.07811273,0.07708509,-0.26228064,0.28099996,0.62739587,-0.18695047,-0.13664082,0.34574705,0.6898061,0.16720557,-0.040943705,0.28038457,0.037483998,-0.53175974,-0.31290415,0.26730523,-0.14777043,0.33767554,-0.20943072,0.33292845,0.45738012,-0.22978657,-0.056800522,-0.00884173,-0.10710733,-0.04617491,-0.30158645,-0.37946904,0.32601207,-0.5137876,0.109315634,-0.38044655,0.6833807,0.06657791,-0.72318065,0.3842042,-0.49404156,0.20665742,-0.03391489,0.8700351,0.769193,0.38983816,0.08271801,0.8065522,-0.53308743,0.030018069,-0.00078081165,-0.35666913,0.27455476,-0.2608303,-0.2011494,-0.3215441,0.003217578,0.08214466,0.0071633686,-0.20646533,0.48183364,-0.5035376,-0.04582008,0.06984928,0.5271621,-0.29633385,0.25934446,0.7467679,1.1157504,1.09625,0.27569023,1.2815922,0.25626293,-0.2725674,0.0044703805,0.0074305166,-0.99613726,0.2920292,0.29139993,0.1571378,0.2639777,0.121738344,-0.3021676,0.4795043,-0.44507128,0.03132347,-0.27496505,0.24187341,-0.24275126,-0.18120027,-0.4364282,-0.067418545,0.10111026,-0.039573487,0.022952905,0.25974068,-0.27793437,0.33365208,0.08535007,1.1090645,-0.37956384,0.18123606,0.075741634,0.24279083,0.18160227,-0.27378613,0.03897887,0.22816795,0.5728918,0.15732847,-0.7032065,0.18694337,-0.14477286,-0.48631924,-0.14055444,-0.15850884,0.052885048,-0.13949819,-0.3388577,-0.17996573,-0.0012985033,-0.44806856,0.21870448,-2.5270028,-0.1786126,-0.18087754,0.2359333,-0.097403534,-0.15613762,-0.0706466,-0.39903104,0.49935454,0.42089707,0.46560752,-0.5355319,0.41246873,0.48429155,-0.4439371,0.11868775,-0.7620331,-0.13695045,-0.19302522,0.29937124,0.13312699,-0.106526986,-0.024025513,0.11395447,0.39247248,-0.15023006,0.12691721,0.2474707,0.44965026,-0.012727453,0.5041948,0.028873939,0.5209933,-0.48650625,-0.17395003,0.37268984,-0.44030717,0.30830732,-0.09740868,0.26854143,0.3567108,-0.5941273,-0.93377185,-0.5880397,-0.42414,1.3419559,-0.12920272,-0.5338854,0.30681878,-0.31989023,-0.39839008,-0.013203463,0.45289543,-0.26931828,0.007849052,-0.9546131,0.004702582,-0.17814478,0.40364838,-0.10826261,-0.0036757635,-0.6497096,0.721534,-0.092476755,0.53666425,0.4490355,0.15603295,-0.2477156,-0.5059512,0.010314813,1.0503069,0.38130283,0.1900042,-0.26169246,-0.031038664,-0.25397283,0.069863044,0.03560746,0.4043122,0.81946886,0.03844542,0.27041373,0.23606946,0.072109774,0.064358406,-0.077629775,-0.3291334,-0.21239226,-0.06364278,0.6391251,0.48944646,-0.11202899,0.1336744,-0.027085373,0.2909306,-0.3279025,-0.37476003,0.500781,0.7914531,-0.061506663,-0.2995443,0.6664662,0.6052833,-0.22369348,0.57237476,-0.6304757,-0.44853476,0.23932065,-0.039941814,-0.3673696,0.33679295,-0.49508154,0.25891382,-0.89032745,0.3848556,-0.6374798,-0.71232855,-0.7121509,-0.26624137,-3.5540633,0.30970255,-0.15754685,-0.1868667,-0.2291517,-0.06162759,0.549274,-0.4698577,-0.6074989,0.16479741,0.10894866,0.73389995,-0.09415773,-0.08120235,-0.3548157,-0.03179648,-0.45404655,0.15638176,0.251245,0.04449995,0.05176099,-0.36988977,-0.18147479,-0.3188637,-0.2950732,-0.07969327,-0.46124637,-0.338561,-0.14238243,-0.3781179,-0.4300279,0.6648363,-0.21330403,-0.0714282,-0.17154318,-0.010371302,-0.1533321,0.47990465,0.052835006,0.24405906,-0.095247544,-0.18808188,-0.21593054,-0.18538244,0.16859889,0.022578625,0.14796475,0.49728182,-0.59353626,-0.090741605,0.3479093,0.6515453,-0.17125061,0.9379569,0.49978513,-0.1660983,0.40830147,-0.16897072,-0.25585312,-0.51100945,-0.20810571,-0.028155813,-0.4595116,-0.5259975,0.045434237,-0.3586439,-0.8071595,0.5426791,-0.11229812,0.10929751,-0.04457983,0.19234252,0.19926745,-0.0077808043,-0.03545425,-0.18056637,-0.120877475,-0.31485498,-0.35898775,-0.81114674,-0.4819628,-0.12161536,1.22898,-0.18695869,0.09053634,0.15368226,-0.17676269,0.17307083,0.21154836,0.05896109,0.24296425,0.34876618,0.16385324,-0.6254085,0.49047568,-0.16261429,-0.2251913,-0.6485258,0.08923447,0.7884997,-0.626688,0.4737072,0.5443598,-0.033296898,-0.19141586,-0.6221998,-0.09828469,0.05185249,-0.13710898,0.57179266,0.22461806,-0.84470785,0.53954935,0.36555788,-0.13135025,-0.6747439,0.53731734,0.084302835,0.058855765,0.053131223,0.43409082,-0.43675998,0.06232941,-0.19197644,0.34078678,-0.27419588,0.33945194,0.19238622,-0.14864218,0.42771465,-0.21937473,-0.12275417,-0.51736456,-0.13019544,-0.68797046,0.01263654,0.27703208,-0.15718427,0.018103536,0.14659296,-0.02462051,0.583043,-0.2528229,0.07143417,-0.099039845,-0.4350453,0.3693241,0.5443804,0.19343932,-0.3622346,0.6809011,0.08047174,-0.26440364,-0.34829727,0.26272488,0.476821,0.041631103,0.57259166,-0.10104275,0.094004355,0.30591172,0.9825023,0.28366244,0.7124442,0.18259764,-0.050475355,0.2119891,0.25164783,0.3086949,-0.0009697263,-0.34361792,0.037936598,-0.032926776,0.26371711,0.3471623,0.00549459,0.48724973,-0.21637811,-0.12784195,-0.0005133106,0.32066786,-0.05906673,-1.2171581,0.58273953,0.10664124,0.7033273,0.64356637,-0.018158723,0.16907209,0.4692313,-0.19063853,0.07542311,0.16635264,0.13749443,-0.49577123,0.4700508,-0.753211,0.2689601,-0.16407767,-0.0024562455,0.17645349,-0.19245552,0.6580573,0.63473225,-0.019788774,0.22196515,-0.12106584,-0.13797377,0.3037813,-0.27750397,0.2965825,-0.26426566,-0.33211473,0.7997194,0.54424304,0.384531,-0.22484732,-0.04083071,0.031600047,-0.08443188,0.15852666,-0.012045879,0.04283518,0.005571429,-0.651512,-0.16173172,0.5386128,0.112484604,0.10587248,0.12703745,-0.3827855,0.22995193,0.043452714,0.11033809,-0.04357366,-0.5980783,0.13627441,-0.3870155,-0.30696803,0.27151912,-0.3525712,0.2730815,0.3191302,0.048571844,-0.37254614,0.008581487,-0.0618558,0.7128467,-0.02592203,-0.1971812,-0.38691285,0.28404,0.3305135,-0.3407374,-0.07576531,-0.40829134,0.048406202,-0.6199847,0.4953895,-0.12149884,-0.25590184,0.44032013,-0.020828221,-0.010401724,0.554903,-0.34370738,-0.22465254,0.21232727,0.025111616,-0.19375786,-0.1815834,-0.14725097,0.19109562,0.11936282,0.21887049,0.02128932,0.18610956,-0.054356217,0.38851973,0.2968734,0.2987131,0.42574328,0.110131554,-0.63899666,0.009083831,0.006050715,0.67469394,0.05975501,-0.113129064,-0.3118254,-0.7098615,-0.24958898,0.18519154,-0.12112231,0.24667645,0.05811021,-0.27982932,0.6814303,0.22606349,0.9601954,0.013110115,-0.40554312,-0.0035177744,0.73519194,0.043389603,-0.20962895,-0.35850254,0.8784735,0.63578475,-0.38214478,-0.085186586,-0.29881126,-0.1845356,0.05157605,-0.26983327,-0.26900804,-0.073147476,-0.791734,-0.07624045,0.16783795,0.3344538,-0.021129988,-0.17332682,0.11127511,0.29491755,0.025382899,0.082005896,-0.68431944,-0.030275155,0.21529767,0.16310175,-0.030474255,0.06390096,-0.30474064,0.23484658,-0.76597416,-0.024642803,-0.17664433,0.07350154,0.027925886,-0.46050772,0.10560233,0.01572572,0.34874582,-0.37138087,-0.21371518,-0.055524983,0.38297784,0.220134,0.33139548,0.8605948,-0.22735724,0.19899045,0.20264561,0.35427406,0.9645062,-0.314272,-0.01489046,0.2762499,-0.3939441,-0.69779235,0.1284276,-0.48778504,0.3323631,-0.17352353,-0.4322594,-0.47480538,0.25599715,0.24264549,-0.055839337,0.09443457,-0.79995114,-0.19018294,0.22836025,-0.18365632,-0.2452252,-0.3980026,-0.01774268,0.6120783,-0.26609653,-0.26611727,0.02867077,0.3494822,-0.4132529,-0.58840317,-0.058384456,-0.46191713,0.3669272,0.09987114,-0.14462504,0.022963643,0.10598544,-0.5073875,0.2661312,0.004644347,-0.26889646,0.021048166,-0.3722901,-0.058336217,0.7507751,-0.23191191,-0.030931445,-0.6122182,-0.58708036,-0.87859976,-0.20921485,0.6470193,0.23462452,0.07939183,-0.5361637,0.05350179,0.07982819,0.28102115,-0.14386015,-0.3461094,0.44241005,0.04415383,0.4162973,-0.11077202,-0.7480587,0.22108918,0.25950545,-0.19802545,-0.46730053,0.48759276,0.021126628,0.6443065,0.18775576,0.26130655,0.103352055,-0.7270967,0.16290042,-0.1617739,-0.20070688,-0.75491804,0.025048275,435 +672,0.5077678,-0.045964736,-0.6411325,-0.11906049,-0.09817219,0.13094462,-0.266324,0.47233585,0.30083168,-0.48895785,-0.058827415,-0.2584228,0.09013828,0.4201409,-0.22728652,-1.1005701,0.036411304,0.17537977,-0.41495785,0.40187377,-0.42371148,0.4501992,0.10084864,0.5990029,0.2287589,0.17364965,0.119942054,0.007174107,-0.21025737,-0.0831238,0.08241533,0.019961122,-0.81617886,-0.05899149,-0.1117977,-0.7290242,0.12520498,-0.28856033,-0.34676364,-0.85443777,0.47612652,-0.9240449,0.73200065,0.017431019,-0.26354438,0.04984012,0.1838035,0.49974588,-0.06080785,0.14321212,0.26169732,-0.12345925,0.095977984,-0.03653479,-0.4831287,-0.72691566,-0.59886587,0.16991115,-0.63911384,-0.20696269,-0.10508839,0.29024416,-0.36015877,0.028107522,-0.075766735,0.4486497,-0.30345407,-0.29276296,0.52462065,-0.087022856,0.49483392,-0.67496836,-0.10569855,-0.10224915,0.14086565,-0.18756849,-0.121096246,0.15454294,0.4457323,0.6013898,0.12940277,-0.30556774,-0.36109537,0.21389844,0.12679638,0.38119358,-0.339169,-0.33480453,-0.3511092,0.026234388,0.3650591,0.24490833,0.34570968,-0.36634716,0.13274175,0.32660082,-0.36844915,0.54685676,0.5630416,-0.5856317,-0.050495524,0.18712837,0.4036514,0.17875718,-0.05732592,0.27548772,0.16923556,-0.5062398,-0.18951145,0.24092612,-0.26043406,0.56129265,-0.17636982,0.31842345,0.7186534,-0.23696111,0.15422378,0.101952754,-0.06880601,-0.06279114,-0.44811985,-0.15836808,0.34017718,-0.6366097,0.023685502,-0.37996605,0.8846025,0.2598031,-0.68465525,0.28149208,-0.66802055,0.16034463,-0.20484385,0.48382106,0.7218558,0.34648398,0.19555518,0.9876552,-0.7432153,-0.04044473,-0.059900828,-0.3432966,0.103011385,-0.21558556,0.020793071,-0.3855706,-0.11667041,-0.11330401,0.09046876,0.17504588,0.57879704,-0.61338466,-0.08853279,0.15641347,1.1236564,-0.32845253,-0.12570003,0.7042904,1.1939569,0.93651456,0.07416104,1.2075508,0.3861851,-0.30158645,0.12954426,-0.21914874,-0.69288504,0.45797044,0.28005394,-0.52105033,0.46495232,0.03022977,-0.0053978907,0.6488289,-0.43316948,0.06329868,-0.21504351,0.1366159,0.07770995,-0.37311867,-0.26280922,-0.08569997,-0.022512428,-0.2244842,0.25039136,0.25328347,-0.13624884,0.2657393,0.014363807,1.3479207,-0.2244681,-0.080430225,0.012479448,0.42208755,0.30596173,-0.030700188,0.13391441,-0.054311965,0.28961188,0.061104454,-0.6290484,0.098264605,-0.36088386,-0.53343296,-0.34057707,-0.08477424,-0.06735222,0.058532834,-0.60991156,-0.18585761,-0.08919033,-0.1376453,0.3809381,-2.217565,-0.4310358,-0.1074985,0.2643388,-0.40941235,-0.43865368,-0.19359629,-0.59353477,0.5642116,0.3554532,0.32616442,-0.7080888,0.48512346,0.37822196,-0.27360636,-0.124545366,-0.7176691,-0.11448649,-0.09238354,0.16723078,0.10320134,-0.34375176,-0.018913796,0.29857615,0.61643153,0.100564554,0.006767825,0.089971215,0.46272108,0.0033345313,0.5045163,0.057669878,0.7225899,-0.19113654,-0.18845892,0.4872376,-0.42972466,0.007489122,-0.054784432,0.2018331,0.3949857,-0.5325525,-0.9314215,-0.834946,-0.29014197,1.0198256,-0.1416972,-0.5042924,0.26450533,-0.07017047,-0.16930725,0.08613502,0.39441264,-0.1764588,0.06905477,-0.95851034,0.03449654,-0.19948068,0.04486992,0.045279477,0.036325235,-0.36025804,0.68146205,-0.20271462,0.33856267,0.46067375,0.23425047,-0.23075208,-0.6827844,0.06345964,1.1042367,0.47396028,0.25163832,-0.3863251,0.020800646,-0.56075704,-0.15673298,0.057353374,0.43218577,1.1056262,-0.05900626,0.04966373,0.29015163,0.054898266,-0.026037235,-0.10519523,-0.73596346,-0.16997847,0.015053199,0.59040666,0.6389058,-0.25957453,0.59550387,-0.2636244,0.38526338,-0.39217582,-0.3632801,0.7649008,1.1894126,-0.39230987,-0.3376481,0.78116924,0.34943488,-0.3735917,0.5791652,-0.72436684,-0.45896244,0.3975286,-0.14014468,-0.5875586,0.1505523,-0.38742545,0.13224414,-1.2681091,0.31112936,-0.44766602,-0.20309447,-0.4606641,-0.2727772,-3.6500068,0.22700736,-0.2753318,0.07890816,-0.24200135,-0.061231434,0.46047628,-0.5107707,-0.73490554,0.051198784,0.07405189,0.7158209,0.04822487,0.3168484,-0.20875515,-0.18356594,-0.24371709,0.23194133,0.41310075,0.15872638,0.10097771,-0.5750876,-0.21214588,-0.22341953,-0.5351154,0.024395406,-0.71876377,-0.56401587,-0.253142,-0.71978366,-0.50068974,0.6839733,-0.49335,0.055286683,-0.38667712,0.10239903,-0.18136334,0.64379686,-0.0016968227,0.17766206,0.16742751,-0.10887054,0.005349966,-0.34110075,0.06854547,0.12003778,0.32193473,0.43736956,-0.14034976,0.21724826,0.65605855,0.8340325,0.01903572,0.76617974,0.6540498,-0.090687126,0.32875612,-0.34753892,-0.3419275,-0.5967179,-0.3318758,-0.13333125,-0.38801906,-0.50672305,0.13290733,-0.5370665,-0.85407674,0.5771161,-0.11009837,0.19502665,0.10802027,0.34389764,0.3622891,-0.25252914,-0.0004225442,-0.17275651,-0.09322837,-0.411943,-0.26157823,-0.70001674,-0.6991305,0.087468,1.0317847,-0.08680169,-0.09025183,0.2368667,-0.07422949,0.066972956,0.1736159,0.13329722,-0.11561342,0.6079198,-0.03914146,-0.74422234,0.23560473,-0.1634404,-0.059258167,-0.77120155,0.117036976,0.5937564,-0.7975627,0.6656247,0.4609186,0.26064113,0.05778189,-0.5411657,-0.0382387,0.11309851,-0.2718464,0.5710816,0.2621617,-0.71043456,0.5227605,0.5536754,-0.37782127,-0.7455124,0.52486044,0.13162807,-0.295001,-0.23399813,0.43307146,0.12517022,0.036895525,-0.27377972,0.10131982,-0.4844515,0.15312037,0.41669592,-0.13230282,0.4321281,-0.115437835,-0.29926512,-0.83477604,0.028496174,-0.75535995,-0.26262662,0.14925858,0.012130146,-0.023573894,0.3343112,0.276681,0.4183663,-0.3268552,0.1017601,-0.18689553,-0.2510595,0.34862298,0.4012205,0.4382618,-0.56337047,0.4973888,-0.025477936,-0.26555318,-0.013686483,-0.026389189,0.6149932,0.16957259,0.38443896,0.1544477,-0.046199992,0.17704208,0.74978226,0.055890806,0.50403196,0.26652384,-0.21165265,0.124904856,0.21259366,0.1078667,0.081207946,-0.54425466,-0.11983066,-0.083391465,0.17777555,0.6614793,0.10094023,0.34304053,-0.017908413,-0.43919343,-0.020569097,-0.13427125,-0.19107917,-1.368451,0.44942415,0.23151618,0.76344675,0.52637947,0.020966705,0.20293695,0.40701932,-0.13489811,0.24328288,0.40072414,-0.048508175,-0.3943331,0.5939646,-0.56231296,0.20791976,-0.14381371,0.16351369,-0.039091494,0.19047128,0.46055558,0.91129464,-0.076583356,0.17490432,0.009068801,-0.21477437,0.041842666,-0.31192172,0.04592686,-0.50276566,-0.21634547,0.7642482,0.44894093,0.25810283,-0.37086105,-0.16248274,0.15632048,-0.263058,0.16036397,-0.14968544,-0.04065569,-0.048154082,-0.6184671,-0.4741193,0.46356437,0.40797022,0.04752457,-0.1598956,-0.34218377,0.118416786,-0.16760992,-0.00096674147,0.0056311246,-0.7776107,-0.078091934,-0.64183545,-0.50783986,0.41410348,-0.14953612,0.04893573,0.11869872,0.13156503,-0.26628283,0.3752616,-0.15102202,0.56065714,-0.14909206,-0.22310577,-0.38593516,0.12751627,0.2796696,-0.3007387,-0.09337719,-0.13974518,0.068078466,-0.4777601,0.5678106,-0.03353001,-0.15303499,0.2610215,-0.12175167,-0.20154946,0.45454937,-0.38770214,0.02140938,0.5736424,-0.03511935,-0.28117552,-0.30056044,-0.15627591,0.14992502,0.0017349261,-0.17072707,-0.13238509,-0.2949699,-0.13870409,0.45483023,-0.004882914,0.31341824,0.729675,0.06389495,-0.4454529,-0.17112017,0.34222284,0.5090816,-0.047526654,-0.1697773,-0.4950039,-0.63421685,-0.23196441,0.18110111,-0.1617987,0.21124576,-0.021243356,-0.47490677,1.0311421,0.41695812,1.5857877,-0.038835023,-0.42403713,-0.0007850757,0.52322435,-0.20251355,-0.12597202,-0.66272247,1.0276127,0.7515841,-0.24429336,-0.051471952,-0.47109926,-0.008895571,0.1745427,-0.2404446,-0.1289836,-0.12360231,-0.65762943,-0.5666187,0.41103265,0.43423763,-0.04808955,0.03188977,0.3063928,0.1022567,-0.033145946,0.4241234,-0.7359779,-0.12615083,0.15128794,0.35059786,-0.025563817,0.16047262,-0.42364818,0.36500916,-0.65592915,0.031090068,-0.33583933,0.09306185,0.058868177,-0.45141622,0.25149286,0.03858445,0.24463296,-0.2710246,-0.28321522,-0.03956846,0.48835355,0.09959461,0.3811247,0.77533305,-0.24568497,-0.062173586,-0.048842136,0.7581886,1.547075,-0.12679799,0.013974025,0.35437062,-0.20751128,-0.84879875,0.3645264,-0.44805315,0.20209168,-0.11382373,-0.46055302,-0.7126506,0.36525455,0.17148891,-0.103066646,0.16686517,-0.5187588,-0.32089284,0.27442205,-0.34299326,-0.34455353,-0.13595083,0.1449195,0.6678285,-0.14577499,-0.1823031,0.1901094,0.6030527,-0.19870917,-0.46693894,-0.13887091,-0.40978792,0.27147454,0.3433804,-0.4195655,-0.0061198175,0.16662183,-0.45784152,0.18251991,0.46311796,-0.36819017,0.07564764,-0.27950227,-0.12591584,0.8958903,-0.10154344,0.14239345,-0.71850914,-0.43789288,-1.0065333,-0.28570315,0.3622952,0.31470916,-0.013497064,-0.6962319,-0.01836399,-0.20805773,-0.033435643,0.16873714,-0.46201563,0.45254377,0.08332557,0.7081634,-0.006499449,-0.616565,-0.11935397,0.3703542,-0.25190586,-0.58371484,0.6499217,-0.060229477,1.0549363,0.07368198,0.05535023,0.27839822,-0.516945,-0.011126929,-0.3413078,-0.22689596,-0.9641348,0.024075674,437 +673,0.485247,0.0043414007,-0.6685237,-0.21352641,-0.40758988,0.17650819,-0.27452457,0.23784432,0.4444237,-0.36991942,0.09494973,-0.21820904,-0.060878165,0.5692195,-0.18995331,-0.8637247,0.14101173,0.025128208,-0.49103683,0.47477716,-0.45755246,0.49886888,0.03396411,0.16312529,0.004781017,0.2817515,0.3930367,0.041042082,-0.20779133,0.13561901,-0.19091848,-0.053238086,-0.5029004,0.27362078,0.061738424,-0.29197255,-0.021176614,-0.35836363,-0.08599463,-0.73456997,0.4784292,-0.7241261,0.5193309,-0.06270626,-0.311959,-0.0046464778,0.10338247,0.24914683,-0.2071464,0.123322435,0.08684121,-0.30307385,-0.1291776,-0.033102877,-0.5634336,-0.74028516,-0.5587965,-0.1748084,-0.7578685,-0.4090059,-0.2855181,0.22884512,-0.37735793,-0.075967446,-0.14729854,0.4272785,-0.35649619,-0.12715359,0.47462323,-0.35063455,0.037486788,-0.6534409,-0.2042594,-0.069409214,0.15899856,0.1193982,-0.043166663,0.4029628,0.521333,0.47049764,0.13976699,-0.30167925,-0.3663883,-0.091957025,0.052955493,0.6764934,-0.103090316,-0.35207382,-0.2740854,-0.053694017,0.3518866,0.2214871,0.29306948,-0.5355798,0.02751874,-0.021527352,-0.24458398,0.41533008,0.39375132,-0.58528477,-0.09875413,0.50483763,0.45124233,-0.04904637,-0.28552377,0.26481444,0.022780117,-0.5728291,-0.15863213,0.22075336,-0.015374182,0.5386541,-0.10961143,0.24914843,0.7066634,-0.13523905,-0.00029112742,-0.06522195,0.011734105,-0.20330484,-0.4432185,0.13674006,0.01915687,-0.40055263,-0.053598188,-0.17671126,0.8899583,0.23302096,-0.8331309,0.28496143,-0.4936542,0.12586437,-0.09423984,0.56273806,0.7031486,0.37035766,0.20623438,1.137501,-0.6514828,0.06984392,0.047415607,-0.37240976,-0.027138757,-0.15116161,0.3720881,-0.54222214,0.29493657,0.07307046,-0.05811197,0.15804185,0.50542676,-0.39488634,-0.16088662,0.0395009,0.7697967,-0.35463068,-0.19944994,0.8848139,1.1215907,1.0079507,-0.010421372,1.1154046,0.4251995,-0.14353971,0.13389063,-0.3776441,-0.52690357,0.15406948,0.3838608,0.2820007,0.4593526,0.11316391,-0.08989389,0.4262822,-0.0040004435,-0.08257527,0.029623875,0.21428178,0.23326954,-0.38131857,-0.3684977,-0.14844412,0.20369056,0.018656693,0.0337369,0.2551401,-0.111694776,0.48538658,-0.09606384,1.2800355,-0.044903442,0.13211703,0.03807422,0.47735244,0.35995322,-0.18644808,0.1048622,0.35580748,0.037976284,-0.098353535,-0.54555243,-0.12087718,-0.43621433,-0.6133834,-0.2107076,-0.34706512,-0.1403621,0.05138165,-0.4135072,-0.17513545,-0.02343334,-0.20567696,0.44862556,-2.429279,-0.24117756,-0.3163361,0.22459888,-0.26769277,-0.2644487,-0.19746603,-0.44577476,0.2253631,0.5170727,0.31669915,-0.63489217,0.32318476,0.39753723,-0.32910424,-0.16087349,-0.56885254,0.22624056,-0.22289507,0.32924125,-0.095580466,-0.28709444,-0.04428902,0.4113738,0.73392105,0.19618203,0.048568264,0.16330811,0.49331105,-0.11279682,0.39692357,0.06722696,0.7416235,-0.22851898,-0.07532215,0.30896047,-0.6729359,0.33914706,0.12139844,0.27612692,0.47510454,-0.3337645,-0.7700857,-0.74568206,-0.3158589,1.044056,-0.38119236,-0.6142638,0.40907434,0.09858379,-0.17933351,0.1309445,0.5151983,0.06093091,0.08174033,-0.4219778,0.1736193,-0.08106131,-0.023865167,-0.105890475,0.12078448,-0.30267906,0.91629535,-0.28396687,0.53451765,0.3473738,0.32077855,-0.25718427,-0.4244626,-0.11120706,0.8554833,0.37244096,0.026545128,-0.10691199,-0.33676192,-0.36154124,-0.5077143,0.23047742,0.48581746,0.6688188,-0.0015428525,0.0617426,0.20724975,-0.14985856,0.08643313,-0.020087687,-0.44149435,0.04160236,0.24331619,0.38553318,0.5293969,-0.30783242,0.44087765,-0.03638666,0.044140026,-0.2618068,-0.6703721,0.5000834,0.7343339,-0.26181757,-0.3658133,0.54791903,0.22344956,-0.5563473,0.37938398,-0.59984964,-0.40548736,0.7549485,-0.043925084,-0.44383985,-0.17947637,-0.35535944,-0.059997056,-0.96744245,0.30279535,-0.15956838,-0.6495912,-0.1824008,-0.21672112,-4.180641,0.24746698,-0.18257199,-0.020810418,-0.11896049,0.10025667,0.15779728,-0.6029278,-0.6436932,0.07802306,0.026834704,0.5756963,-0.14211956,0.25055137,-0.38609907,-0.21900247,-0.29609525,0.3000382,-0.35307053,0.30146366,0.09234962,-0.28335613,0.21042845,-0.24320854,-0.62977284,0.0035853845,-0.64074904,-0.5285683,-0.35799712,-0.60103595,-0.29863638,0.7760714,-0.5007838,-0.1321781,-0.24876657,0.111090675,-0.29888007,0.33356205,0.058104806,0.16541924,0.17708908,-0.09795807,-0.24763478,-0.3685368,0.151248,0.061328277,0.38763964,0.62000334,-0.24504837,0.21985278,0.6773929,0.72221076,0.122829914,0.65240216,-0.062831916,-0.104679376,0.4078678,-0.29241246,0.06694013,-0.70285076,-0.5747268,-0.16166057,-0.3048851,-0.65630764,-0.12728237,-0.3658625,-0.74127614,0.35748026,0.005031251,0.45083907,-0.16038436,0.31320125,0.41068667,-0.19349931,0.097098716,-0.096140094,-0.31562713,-0.52201414,-0.41491443,-0.5418399,-0.6298775,0.5614052,1.1712998,-0.23642081,-0.2976967,-0.03390995,-0.35522687,-0.030276863,0.09433972,0.38273457,-0.022976449,0.13722128,-0.18877324,-0.6615481,0.31324846,-0.30363813,0.04507725,-0.59962773,-0.03274681,0.62007916,-0.3885497,0.6405719,0.3278538,0.35334486,-0.023179086,-0.71999687,-0.2060319,0.24599259,-0.25770712,0.43900216,0.19988228,-0.72777873,0.41356614,0.21931693,-0.36782554,-0.68783367,0.33416286,0.041782938,-0.044880025,0.024439814,0.5250081,0.38382715,-0.20076095,-0.24176401,0.17190988,-0.81844294,0.26204255,0.35004342,0.1186292,0.47828716,-0.033258773,-0.46562326,-0.64337784,-0.31790775,-0.4704027,-0.023201855,-0.019271655,-0.1132394,-0.03771758,0.167146,0.005620287,0.38889438,-0.36632305,0.1678196,-0.007176116,-0.23741072,0.53224856,0.47694808,0.4231323,-0.5312511,0.5669666,0.08779128,-0.06626884,-0.1489126,-0.032936696,0.5252885,0.44445023,0.47036636,0.13467671,-0.049259756,0.10347022,0.65882504,0.17801629,0.27657107,0.3323847,-0.4681301,0.32280633,0.22204576,0.23031163,-0.016404454,-0.34708288,-0.050741013,-0.08330921,0.14175545,0.42693627,0.10681115,0.4348561,0.07636157,-0.16166207,0.20683138,-0.037503753,-0.17323126,-0.98867184,0.19055654,0.34415627,0.65561163,0.40602282,-0.1217876,-0.045260847,0.46317494,-0.120214224,0.0363632,0.42035824,-0.13214476,-0.46769845,0.6375612,-0.5170876,0.52550954,-0.34520978,-0.0091617685,0.22907932,0.4261598,0.4439511,0.89328796,-0.026746068,-0.11067902,-0.14813076,-0.3435227,0.010945604,-0.22495954,-0.02250613,-0.6042405,-0.3223549,0.5291316,0.37122443,0.28027427,-0.13704677,-0.16178177,0.085061185,-0.12039178,0.08672089,-0.14089411,-0.075613946,-0.13252316,-0.5522129,-0.3583531,0.5531991,0.018094879,0.124629006,0.054190297,-0.5094563,0.30776012,-0.23130593,-0.03958466,0.04680644,-0.6660362,0.025671657,-0.12396525,-0.6889356,0.31032938,-0.29198864,0.35486662,0.30839756,-0.06192287,-0.33086756,0.13960132,0.15503179,0.7904078,-0.11644996,-0.25305793,-0.19886167,0.013502995,0.3735131,-0.2796953,0.24916172,-0.1576067,0.085004956,-0.657047,0.55639803,-0.20558816,-0.19248103,-0.054465856,-0.23280217,0.037987083,0.5159959,-0.40039107,-0.12541538,0.005434201,0.083061926,-0.2814517,-0.07019133,-0.37459657,0.30845448,-0.16553503,-0.09464316,0.03981433,-0.12945086,0.12837654,0.1353485,-0.034876235,0.019046064,0.31557512,0.035173073,-0.54712117,0.047127146,-0.025982866,0.47800383,0.19110085,-0.061841767,-0.15661833,-0.41793522,-0.3857941,0.1230884,-0.14257553,0.14751954,0.1103328,-0.5462559,0.83856785,0.1851391,1.5081303,0.049803182,-0.40658945,-0.016731624,0.6592922,0.15729618,0.006747594,-0.2969438,1.0811101,0.82577455,-0.19677837,-0.051018815,-0.45009026,-0.20755032,0.41088134,-0.26441583,-0.12768196,0.028915482,-0.7163648,-0.1933129,0.1758218,0.13619806,0.16561641,-0.13288862,0.014430372,0.13001864,0.23516542,0.45016322,-0.5772079,-0.10859848,0.19313985,0.38345426,0.18851644,0.21921586,-0.30770552,0.3492072,-0.96364397,0.51543033,-0.35154134,0.14911814,-0.21266721,-0.23335227,0.2644347,0.12295545,0.38488537,-0.15025336,-0.30714417,-0.22478789,0.7459749,0.29954857,0.23244601,0.80649704,-0.23227455,-0.14514852,0.15511513,0.6412251,1.4388934,0.07525494,0.10602948,0.3412417,-0.3494228,-0.8430548,0.35692424,-0.41883674,-0.027863191,-0.2724819,-0.30754215,-0.5383139,0.36519668,0.27827072,-0.08971365,0.12452033,-0.40411553,-0.19630986,0.18058299,-0.43087527,-0.3106357,-0.25657827,0.3074649,0.79886335,-0.27885675,-0.31470346,0.14282772,0.33825353,-0.26273614,-0.72789484,0.19848411,-0.069204554,0.51959634,0.1355978,-0.41478425,-0.07530038,0.41146183,-0.47153336,0.16838612,0.21643063,-0.39127886,0.24102004,-0.2850303,-0.13219628,0.9475636,0.1734081,0.31733516,-0.8650701,-0.49942896,-0.9296262,-0.44658133,0.17931238,0.08049662,-0.07278144,-0.5230908,-0.26551184,-0.12037408,-0.031718757,0.08815916,-0.4817053,0.3060169,0.096583486,0.5620501,-0.086324915,-0.92814076,-0.12285091,0.3268748,0.019543162,-0.4610194,0.45040348,-0.23268813,0.90794855,0.19845137,-0.035904467,0.22537793,-0.55367124,0.6424609,-0.33056927,-0.23331903,-0.53075844,0.07429405,443 +674,0.31775296,-0.26094893,-0.31158227,-0.18869501,-0.34846622,0.06771515,-0.31666982,0.33806604,0.34535885,-0.321214,-0.24862,0.0019840049,0.09811905,0.42159575,-0.065914825,-0.7210322,-0.007820975,0.22618745,-0.5958513,0.32731935,-0.65761435,0.24715398,-0.0778516,0.6115893,0.05852376,0.22010945,0.07049276,-0.033442155,0.01939993,-0.21228665,-0.11083104,0.2819102,-0.4119728,0.08135504,-0.13145664,-0.2980518,0.06249954,-0.44456804,-0.24066192,-0.76677394,0.13960534,-1.0621413,0.5383878,-0.12070815,-0.26759106,-0.06932437,0.28170684,0.4420411,-0.26102227,0.045569222,0.19510658,-0.3621216,-0.20418602,-0.3224363,-0.08580538,-0.40113434,-0.41553614,-0.10470249,-0.44978014,-0.3383026,-0.13708168,0.33238205,-0.27477723,-0.0012547832,-0.2488514,0.4627851,-0.37541336,0.03964958,0.41564038,-0.35035425,0.4403071,-0.58147216,-0.059322033,0.06830864,0.47275653,-0.029638309,-0.28997672,0.2708866,0.29315156,0.46785113,0.291989,-0.30154794,-0.17243978,-0.19146544,0.15170583,0.56940895,-0.16067241,-0.23055403,-0.3602092,-0.03647759,0.3150287,0.46166795,-0.05405335,-0.1552737,0.097618334,-0.03464895,-0.08507493,0.58772254,0.48397115,-0.093483485,-0.29393142,0.20503443,0.6611271,0.09708112,-0.22975746,0.08745679,0.14001034,-0.49299335,-0.041201968,0.19672343,0.024487164,0.45294783,-0.21194217,0.13333386,0.8114897,-0.16576406,0.04505894,-0.011974137,-0.030524896,-0.07913871,-0.53166735,-0.3746743,0.2644832,-0.6216767,0.008693819,-0.3152076,0.6987618,0.23161793,-0.521272,0.3538593,-0.48958254,0.182944,-0.122146234,0.64139336,0.53598714,0.37719554,0.3630648,0.7413304,-0.2500344,0.1721227,-0.011007804,-0.2434925,-0.042971566,-0.24664123,0.39373624,-0.43198237,0.1749422,-0.1423545,0.016806375,-0.049789328,0.3605434,-0.5435186,-0.17561309,0.2903525,0.89848715,-0.3469447,0.06491917,0.8639441,1.1176524,0.98090863,0.03636748,1.1962234,0.4707096,-0.18425813,0.04345923,-0.2557533,-0.5856683,0.21715161,0.30035856,0.3021217,0.16840726,-0.053963706,-0.16218759,0.50229144,-0.5766569,0.021089297,-0.07605482,0.33505294,0.06960113,0.13637096,-0.72911304,-0.10121008,0.021925509,-0.15545066,0.32902193,0.19950558,-0.34110418,0.37076366,-0.16240758,1.1432393,-0.17735669,-0.004385444,0.020679392,0.53316456,0.16048545,-0.17992106,-0.0111224195,0.33959547,0.46714866,0.008464665,-0.7050706,0.22280714,-0.35783303,-0.25953162,-0.2364893,-0.34859657,-0.055700354,-0.088541284,-0.2716292,-0.11298061,-0.11360179,-0.32003242,0.3549539,-2.5773401,-0.44098407,-0.27841222,0.42574304,-0.28799555,-0.11547558,-0.0836029,-0.5502931,0.38981885,0.23731057,0.4382539,-0.5706472,0.545524,0.45442247,-0.42313382,-0.21635665,-0.8460305,-0.1071745,-0.079247594,0.39512417,0.104439825,-0.1723218,-0.2869845,0.11064012,0.72092474,0.2516452,0.15551361,0.39806592,0.42718336,0.1102177,0.43397078,-0.07170902,0.7044496,-0.35139766,-0.21774855,0.3307111,-0.3636074,0.23921365,-0.28760365,0.0581753,0.52770287,-0.4928393,-0.8271971,-0.68007284,-0.44839033,1.0544404,-0.33241192,-0.60230696,0.22953483,-0.33746687,-0.18982808,0.11948211,0.6776642,-0.19478893,0.08617341,-0.7797755,0.009251283,-0.101440795,0.3055056,-0.007144991,0.0887808,-0.45102146,0.62998366,-0.26578647,0.52547073,0.13709033,0.38796943,-0.18431237,-0.3479772,-0.034583256,0.7525662,0.30479863,-0.09295569,-0.18203816,-0.2095051,-0.12035535,-0.28118312,-0.11446287,0.7015908,0.95960575,-0.1756986,0.043226577,0.3693024,-0.1890871,0.049935397,-0.069826275,-0.4087585,-0.09242965,0.08913871,0.60724723,0.6490078,-0.044711158,0.5186022,-0.28915185,0.44968364,-0.09783312,-0.48961037,0.57724464,0.4120841,-0.27132368,-0.13646805,0.6830301,0.39564344,-0.46056396,0.5497413,-0.68786967,-0.17312358,0.5247046,-0.19673918,-0.55381817,0.032662775,-0.229969,0.21508214,-0.8018962,0.36882657,-0.35323972,-0.80512416,-0.4919418,-0.112516046,-3.199869,0.20337193,-0.16102156,-0.17168981,-0.35152197,-0.16384986,0.30217865,-0.43703586,-0.5433909,0.23316155,0.13722438,0.6843436,-0.021971872,0.100931995,-0.37283498,-0.055759218,-0.14064252,0.17623329,0.19304046,0.29138476,-0.18348394,-0.348692,0.18342489,0.06749316,-0.5670413,0.25770137,-0.79599184,-0.49480432,0.011123311,-0.61663944,-0.350367,0.58341277,-0.29466817,0.11609154,-0.4042588,0.08426892,-0.15682386,0.2638562,-0.0019249412,0.3237027,0.2920397,-0.10212234,0.16165172,-0.25636894,0.42089036,0.037186936,0.192533,-0.056698818,0.04820961,0.17688663,0.48056236,0.6713157,-0.07856148,1.1383383,0.497403,-0.06962201,0.2141835,-0.34968597,-0.35318547,-0.44583386,-0.31388718,0.03135946,-0.51581985,-0.36659703,0.0516217,-0.24899629,-0.7910677,0.6925825,0.058531098,0.3992248,-0.08063236,0.31554604,0.4746037,-0.107280605,-0.057335734,0.0028319359,-0.111283064,-0.54763603,-0.21124572,-0.7277061,-0.52063346,0.005637311,0.73927283,-0.29359025,0.18426742,-0.042886432,-0.37946707,-0.006605524,0.25527093,-0.02851467,0.26463726,0.55561966,-0.011506532,-0.58869636,0.22255662,-0.07998076,-0.020131115,-0.68289757,0.31245774,0.9508381,-0.7739235,0.7555733,0.3999079,0.002271799,-0.46685395,-0.5313122,-0.2848589,0.007977901,-0.16923593,0.53920263,0.20156266,-0.77693707,0.53925526,0.33825487,-0.31568938,-0.7342988,0.22335282,-0.12830704,-0.20078476,0.017235804,0.45956853,0.056490548,-7.183047e-05,-0.124919586,0.170475,-0.40809435,0.23538457,0.13545324,-0.021789696,0.5556838,-0.283248,-0.20505752,-0.8110436,-0.26268953,-0.74316597,-0.1797498,0.21620625,-0.1305972,-0.088985406,0.4031298,0.07676677,0.33248076,-0.15035945,0.071418256,-0.11536017,-0.5128311,0.24512321,0.51216686,0.31588003,-0.3592555,0.49748024,0.21723141,-0.23596133,-0.009441743,-0.069044836,0.43912596,-0.11493439,0.5826193,-0.30698746,-0.13086475,0.30180484,0.729714,-0.0016785952,0.58818465,0.15314198,-0.025853492,0.42638677,0.0074959374,0.26606253,-0.12407037,-0.42537454,0.12806326,-0.13858546,0.1629701,0.456514,0.4441897,0.4549408,0.19438614,-0.23640466,0.040449567,0.0542379,-0.14360216,-1.3153762,0.49639946,0.14995535,0.91677475,0.20994934,0.17483534,-0.20751542,0.80751103,-0.20704561,-0.0061231647,0.400502,-0.036340214,-0.34785938,0.81132066,-0.7115246,0.3269189,-0.1536069,0.059504632,0.098078646,0.23362881,0.5916054,0.8249401,-0.21246068,0.08428958,-0.17779145,-0.1415815,0.24393202,-0.34338155,0.02733371,-0.47410455,-0.42819244,0.64499164,0.49934208,0.4974969,-0.25002232,-0.06554249,0.18764642,-0.09011444,0.18237805,0.008975405,-0.21707663,0.12055845,-0.5931434,-0.22049332,0.41977268,0.16553035,0.1745143,-0.271326,-0.18981703,0.029951163,-0.23180848,-0.027987314,0.110027395,-0.7152669,-0.15154602,-0.32138056,-0.5927433,0.32510248,-0.32899,0.019615779,0.12420234,-0.056672275,-0.15623657,0.22346023,0.07495691,0.8892823,0.15898988,-0.35814795,-0.35005695,-0.07411974,0.27747294,-0.3668146,0.21223995,-0.40030134,0.10291011,-0.5930008,0.6753298,-0.22765735,-0.6249949,0.31814435,-0.18503761,-0.043029826,0.5601779,-0.18575518,-0.09699166,0.1675646,-0.3753994,-0.5197648,-0.103348345,-0.15689792,0.09394082,0.22930224,-0.0081413435,-0.107883126,-0.30113876,-0.13179371,0.73606193,0.039467867,0.5020966,0.32894993,0.10980633,-0.15354347,0.09481346,0.20491236,0.48118034,0.070934765,-0.03966316,-0.27563402,-0.42394587,-0.17553216,0.37230375,-0.078445986,0.3201185,-0.055463262,-0.25897396,0.9974226,-0.02795225,1.1427633,0.167898,-0.4079812,-0.0283702,0.47520602,-0.14206146,0.14779924,-0.5626677,0.9214709,0.42156792,-0.15215525,-0.0031007002,-0.6823338,-0.08716936,0.4458024,-0.3803844,-0.16350761,-0.22107047,-0.5391937,-0.45701107,0.22119392,0.29054788,0.13832054,-0.05974218,0.22312453,0.037745424,-0.03996312,0.5160236,-0.7479038,0.06396696,0.26834112,0.30673763,-0.1256903,0.20734136,-0.27858686,0.35024974,-0.6511807,0.25009197,-0.45143697,0.072189234,-0.12102992,-0.41380385,0.0939062,-0.013218238,0.28861356,-0.35868707,-0.3573934,-0.035168573,0.5481341,0.1609227,-0.08812037,0.62080574,-0.25981238,-0.036862765,0.3061132,0.6906332,1.4061285,-0.41452742,0.21216947,0.18204363,-0.32140678,-0.71834767,0.4594557,-0.24786161,-0.06779928,0.078320034,-0.53278226,-0.5159509,0.2755449,0.21025041,-0.03929036,0.114645004,-0.32336596,-0.16473685,0.3588672,-0.18483308,-0.16480957,-0.14165942,0.3561265,0.4750689,-0.093848154,-0.41444975,-0.07290498,0.47399923,-0.41826135,-0.4510756,-0.055969957,-0.25259262,0.2986693,-0.034806512,-0.4405944,-0.004802915,-0.04155689,-0.5511641,-0.03821,0.16659945,-0.32618284,0.16099548,-0.17391841,-0.10656948,0.82006043,-0.23455109,-0.060668927,-0.892333,-0.39324972,-0.79532564,-0.34494463,0.11223333,0.25855976,-0.010060411,-0.34879196,-0.020921864,-0.11166002,-0.1482924,0.21244122,-0.60038143,0.33814475,0.19472449,0.6924775,-0.31201616,-0.9171763,0.15879598,0.13306859,-0.2692621,-0.66661584,0.65257955,-0.093483254,0.7942658,0.025384229,-0.017131723,-0.08094602,-0.27514946,0.07095078,-0.24735834,-0.3030843,-1.032845,0.026638445,444 +675,0.3301438,-0.05799749,-0.362448,-0.1857623,-0.3572312,0.025461279,-0.023666332,0.2892419,0.28478742,-0.2938921,0.030903433,-0.045293573,-0.1313643,0.41271222,-0.20923378,-0.7574931,0.009242635,-0.0026604282,-0.53017414,0.41547197,-0.5801066,0.48745254,0.1361002,0.321324,0.03353852,0.45401588,0.14667697,-0.10077845,0.12746678,-0.07093073,-0.29771677,0.1357124,-0.7019405,0.28425044,0.05598315,-0.42288935,0.10710887,-0.16662839,-0.3639027,-0.67318684,0.33565575,-0.7310867,0.4797632,-0.0877241,-0.4327467,0.057812627,0.013744042,0.2650584,-0.515566,0.160434,0.22926015,-0.3466136,0.13608658,-0.24637042,-0.15832397,-0.60320055,-0.5153641,-0.11087206,-0.69501466,-0.20430769,-0.41383302,0.07825167,-0.44732088,-0.06572421,-0.2717387,0.22576721,-0.5718497,0.055451386,0.1777387,-0.2292194,0.18172154,-0.44452494,-0.064650305,-0.15238704,0.0136438245,0.07826675,-0.19995125,0.35081628,0.2234385,0.4894738,0.13797212,-0.30219883,-0.2669218,-0.088284954,0.11415741,0.3677792,-0.1787369,-0.23627752,-0.14348923,0.015440033,0.21850745,0.29388723,-0.10655432,-0.23296162,0.016139291,0.09815183,-0.30564138,0.12701806,0.50350803,-0.39646527,-0.3159811,0.39116016,0.41698247,-0.068348534,-0.19756548,0.31465304,-0.08549142,-0.3522324,-0.34252757,0.12761018,-0.11809046,0.46818113,-0.29933923,0.07725472,1.0254763,-0.22797664,0.14426902,-0.002442516,-0.061798036,-0.1645396,-0.10224971,0.0014219009,0.09505264,-0.54800624,0.08718816,-0.23257521,0.87866944,0.25730184,-0.80013824,0.26328242,-0.46679562,0.18590964,-0.23801933,0.67962843,0.6161717,0.5199961,0.22378229,0.87082756,-0.7078181,0.07487812,-0.0028225183,-0.46716434,0.29397076,-0.19562244,-0.05342454,-0.47377008,-0.027267141,0.025816638,-0.11608425,-0.09068264,0.23807128,-0.45954356,-0.008285478,0.055912517,0.7135928,-0.4277808,0.05269042,0.64124244,0.93718207,0.95596606,0.030071642,1.2739428,0.27818006,-0.18458678,0.19099143,-0.34745884,-0.61233276,0.09690477,0.29818627,0.28603938,0.25659496,0.22274843,0.25349864,0.35952708,-0.26320145,0.1251688,-0.16268298,0.41663292,0.07374985,-0.20944987,-0.33335197,-0.2605795,0.14384024,0.15690099,-0.24436334,0.40682977,-0.0013172626,0.5328356,0.24315813,1.5330198,0.12785104,0.11895464,0.101556465,0.55401105,0.22011669,-0.028640104,0.11562324,0.350865,0.36118692,0.14825012,-0.65650874,0.08113357,-0.30637205,-0.4879937,-0.09742875,-0.40558308,-0.026201276,-0.2206788,-0.5238428,-0.19514205,0.04135535,-0.21830927,0.39687032,-2.3684602,-0.068123825,-0.08970575,0.25373796,-0.25626764,-0.2049509,-0.037758622,-0.4376983,0.23375462,0.4751292,0.43151143,-0.7670355,0.5478519,0.62860847,-0.33507058,-0.056675933,-0.69246453,-0.19909027,-0.1260442,0.40697733,0.029574784,-0.057747737,-0.20399164,0.16146412,0.6527523,0.07347828,0.011310701,0.14507146,0.4817282,-0.04614521,0.64948857,0.2428446,0.5209173,-0.23033029,-0.0922881,0.3511193,-0.5626067,0.3185215,0.16859378,0.1461399,0.37153932,-0.5115524,-0.9778005,-0.65134454,-0.39028805,1.2296449,-0.4275595,-0.3817506,0.4854833,-0.20546053,-0.17253676,-0.14427406,0.29211673,-0.15100926,0.10114642,-0.65511763,0.0845307,-0.10541716,0.2310145,0.053189296,0.09416811,-0.18643287,0.8386864,-0.17086774,0.53447497,0.25746426,0.028994897,-0.16299655,-0.41096142,0.058737405,0.75640047,0.45998973,0.18662664,-0.14268751,-0.23647976,-0.0639218,-0.2526679,0.20245332,0.5115295,0.7350186,-0.0737997,0.08764219,0.4728443,-0.34669253,-0.13002037,-0.1946997,-0.30031088,0.04086314,0.1422176,0.5030493,0.67735183,-0.21378352,0.36786813,-0.05304054,0.2625193,-0.07088391,-0.57044023,0.31849656,0.79808533,-0.11051871,-0.122977294,0.41869593,0.38307902,-0.43293285,0.3518655,-0.6163082,-0.30466366,0.63950866,-0.094384395,-0.4763173,0.026503874,-0.307787,0.0006611164,-0.847664,0.39086834,-0.17610455,-0.74927926,-0.5918395,-0.15227804,-4.075387,0.12066886,-0.34827328,-0.14192544,-0.0886596,-0.07536221,0.35421717,-0.66401,-0.5937834,0.016477294,0.14002842,0.43647954,-0.058860525,0.20846651,-0.34249938,-0.11822777,-0.36950037,0.27569273,0.07009168,0.14732073,-0.04733136,-0.49387008,-0.010497142,-0.16614777,-0.5511928,0.100560896,-0.5371224,-0.5863913,-0.050981965,-0.43553653,-0.29457834,0.75727314,-0.30655175,-0.060664956,-0.19670913,-0.15486775,-0.41282666,0.3097812,0.27790377,0.0022927339,0.026885888,0.123032495,-0.21496163,-0.44424164,0.22725056,0.038996115,0.6173325,0.26690868,-0.19555381,-0.046963587,0.8159891,0.46747193,0.10895968,0.7594201,0.21361175,-0.27091837,0.36174032,-0.40474504,-0.36222076,-0.78342086,-0.45355394,-0.2366476,-0.39680687,-0.41935742,-0.032501265,-0.3939802,-0.8340596,0.37216902,0.18729807,0.08867662,-0.13892218,0.17889251,0.36352703,0.001074227,-0.016688792,-0.06290685,-0.30125666,-0.65586627,-0.33132035,-0.7031266,-0.5509686,0.27698243,1.1302558,-0.18500353,-0.22842811,-0.09260245,-0.26199603,0.09675415,0.13273802,0.14504658,0.15512034,0.327288,-0.15093468,-0.69573694,0.42206606,0.010846524,-0.010488739,-0.63878834,-0.05319556,0.6737659,-0.8102448,0.60880417,0.25380775,0.1708728,0.21242288,-0.52978665,-0.38058552,-0.12804028,-0.19213493,0.5843451,0.090385355,-0.72086704,0.4450924,0.21728148,-0.2454984,-0.47598425,0.41801125,-0.19954681,-0.26337355,0.04637233,0.331397,0.086971596,-0.14868739,-0.015267821,0.3124832,-0.58651245,0.3099853,0.42103237,0.042925224,0.23889884,0.048185505,-0.23584089,-0.7306947,-0.105120294,-0.43842635,-0.20420827,0.01601196,0.011802018,-0.11825115,0.19637749,0.030728515,0.43981138,-0.120493904,0.20020793,0.012540267,-0.3699552,0.49777886,0.5107728,0.3901853,-0.5080644,0.6010668,0.13988239,0.08085366,-0.071878664,0.11887249,0.45343935,0.27008596,0.40581873,0.011862149,-0.1557396,0.29732907,0.88525933,0.299407,0.54940116,0.16208468,-0.052687425,0.48375386,0.2880503,0.0939887,0.0126855625,-0.29984114,0.15834895,0.05851018,0.19047818,0.3874116,0.18392506,0.37420136,-0.029034039,-0.14473857,0.15355161,0.29026276,-0.20086497,-1.0890921,0.24478468,0.3342385,0.65418994,0.6023856,0.07615674,0.01491503,0.6412825,-0.3585664,0.017917361,0.40277264,0.07762267,-0.52709484,0.63234144,-0.70890427,0.56015795,-0.09682166,0.015209248,0.056013525,0.26932067,0.3170888,0.9555155,-0.085676245,-0.08860305,-0.02998802,-0.2961182,0.10093163,-0.5840883,-0.014304831,-0.3975647,-0.2938866,0.53956914,0.38306206,0.28925183,-0.27572298,-0.05053238,-0.08316494,-0.09468583,0.21672784,-0.10783399,-0.06857881,-0.193973,-0.44847664,-0.39851972,0.56201404,-0.19398531,0.18265317,0.04001806,-0.29957274,0.4776603,-0.06005407,-0.2557068,0.013874018,-0.50956947,0.16423562,-0.16166672,-0.44605345,0.37077075,-0.33782685,0.3507687,0.22830346,-0.017662225,-0.41821223,0.11543691,0.1521994,0.58024305,-0.0807069,-0.28255317,-0.317862,-0.004157126,0.1763691,-0.35117263,-0.012450475,-0.32457352,0.07641862,-0.5481892,0.314403,-0.22384971,-0.3187825,0.025647182,-0.2983886,-0.10276516,0.34724584,-0.25298178,-0.25566402,0.0055901823,0.008572074,-0.21536806,-0.14598408,-0.38670304,0.36598447,-0.08592938,-0.017435363,0.08006047,-0.19317183,0.070399426,0.3930143,-0.06533934,0.17017478,0.11842172,-0.09096595,-0.35949844,-0.07369558,-0.008730077,0.34581867,-0.013302649,0.15040554,-0.082642965,-0.46580756,-0.21674183,0.12478193,-0.21057552,0.3257838,0.07053384,-0.59652066,0.89876455,0.019168634,1.2304026,-0.03454101,-0.3335156,0.11012506,0.6304033,0.27707547,0.15157053,-0.101388484,0.89697933,0.7895869,-0.28030083,-0.2491212,-0.50086915,-0.30003157,0.27631044,-0.24170464,-0.24109653,0.07962965,-0.7680169,-0.04576418,0.30241245,0.19450651,0.21107414,0.121580325,-0.17533945,0.097996406,0.28226793,0.4703572,-0.50424474,-0.21209224,0.3182589,0.00020851538,0.16214718,0.1374636,-0.3712813,0.47969964,-0.61286724,0.28871143,-0.33158424,0.1105655,-0.25682193,-0.2753403,0.14478956,-0.0135416845,0.35296583,-0.12853867,-0.36238325,-0.22625396,0.6714783,0.21152687,0.3685072,0.80584943,-0.25043228,0.10661879,0.018510286,0.3547161,1.1341527,0.05615129,-0.18430616,0.27819473,-0.410497,-0.65570843,0.22936313,-0.3612427,-0.024641184,0.0029714017,-0.43452084,-0.2797128,0.24386615,0.13021776,0.010551526,0.20083117,-0.44765505,-0.15891191,0.30938965,-0.46147746,-0.3495436,-0.3159018,0.34613228,0.8040679,-0.53351974,-0.2141307,0.13469611,0.18872762,-0.32381672,-0.44156554,-0.14855477,-0.27412212,0.49660286,0.12109906,-0.439215,0.19309685,0.2976948,-0.26794702,0.05761508,0.45704556,-0.36718628,0.21868268,-0.1512952,-0.0006259932,0.9754839,0.057932414,-0.052177675,-0.8201857,-0.4188636,-0.9205844,-0.25607112,0.6017822,0.25397402,-0.11519301,-0.558725,-0.09674437,0.14755669,-0.026889296,0.045626003,-0.6086058,0.519417,0.112364225,0.31088987,0.015577821,-0.9705438,0.05079276,0.19939181,0.008863027,-0.62744015,0.7199113,-0.5423454,0.69118434,0.04897401,0.05345475,0.02388238,-0.48476908,0.3155511,-0.35720342,-0.36494124,-0.60542274,-0.021572232,446 +676,0.4517142,-0.16423167,-0.7208946,-0.17249434,-0.036343906,-0.20299354,-0.037998155,0.62131,0.3373836,-0.616122,-0.05345827,-0.29957587,-0.013208558,0.58090717,-0.1638729,-0.93254095,0.046948645,0.13786675,-0.2963254,0.39897376,-0.4830987,0.21411303,0.084254555,0.3497181,-0.044471566,0.19413444,0.19370696,-0.24307714,-0.03429312,0.016227493,-0.14476992,0.3776635,-0.43254772,0.013036921,-0.02105978,-0.4832961,0.08224201,-0.4007866,-0.38393953,-0.8810707,0.29607162,-0.8020315,0.56234014,0.26114678,-0.24368383,0.13569538,0.29946157,0.27393964,-0.2222366,0.05367947,0.12996271,-0.14093818,-0.078653224,-0.17005,-0.44635662,-0.46083432,-0.64117366,0.10948956,-0.50504965,-0.22849068,0.045478977,0.20268616,-0.41217974,0.12797196,-0.15758587,0.48931995,-0.35206068,-0.196579,0.48847458,-0.24843779,0.37475443,-0.49680245,-0.1933812,-0.13767359,0.097080044,-0.14323786,-0.28742707,0.2257297,0.30539423,0.66491234,-0.0076360656,-0.32152206,-0.41019434,0.041005787,0.055240314,0.34717962,-0.41378987,-0.4601908,-0.11564001,0.16761972,0.09787856,0.3379022,0.18606336,-0.45165458,0.009966233,0.080460675,-0.36497533,0.40127856,0.55874157,-0.49335164,-0.22774228,0.22236377,0.6303117,0.0990675,-0.06879314,0.18718162,0.113294,-0.63091034,-0.10793049,0.17067152,-0.21133456,0.55144656,-0.14903913,0.21827984,0.7063335,-0.24549133,-0.024209062,0.0762013,-0.065917425,0.014433624,-0.5163467,-0.06474538,0.26655835,-0.48570392,0.1887892,-0.20822746,0.8094066,0.22102803,-0.7096719,0.4055977,-0.61600155,0.21194448,-0.23520991,0.626393,0.58442265,0.3366995,0.43199867,0.80225444,-0.5783332,0.051847532,-0.2028397,-0.34576967,0.0074305534,-0.13866816,0.044402234,-0.51411927,0.035576124,-0.056503017,-0.051923815,0.24512123,0.31878668,-0.6335954,-0.15170808,0.19089589,1.0971847,-0.27284622,-0.22435689,0.6833037,0.941523,1.1018625,-0.0020007892,1.2221657,0.26669404,-0.15178639,0.36728472,-0.25296265,-0.8985698,0.35503483,0.2696591,-0.28000996,0.30025128,-0.014178487,0.016824067,0.5023375,-0.2650501,0.17075542,-0.30336767,0.311221,0.16300741,-0.24653713,-0.27953294,-0.16876672,-0.15468827,-0.19577423,0.093766876,0.20619175,-0.12957118,0.35708806,-0.30324525,1.6693473,-0.16269109,0.122883305,0.17139302,0.42499542,0.21735407,0.14048669,0.022296974,0.22328931,0.1642378,0.24429165,-0.5541634,0.10011624,-0.30109233,-0.5201147,-0.13848445,-0.28627652,0.03475498,-0.18539634,-0.46071944,-0.17028663,-0.16310552,-0.2554522,0.43698832,-2.5832205,-0.2597718,-0.06666948,0.29557645,-0.28996944,-0.3415839,-0.22932562,-0.44270658,0.5222763,0.3805123,0.5330646,-0.64872354,0.43184492,0.45660654,-0.3889763,-0.1389164,-0.70305693,-0.028623484,-0.06490347,0.120015904,0.082208805,-0.20260698,0.07238652,0.113032185,0.553453,-0.09938283,-0.06554308,0.20856938,0.43296334,0.07976767,0.5244128,-0.163947,0.6359435,-0.48425776,-0.319797,0.4459413,-0.6196139,0.23074004,0.1802056,0.0782483,0.4193609,-0.5662421,-1.041247,-0.6049156,-0.25262123,0.95689195,-0.05637266,-0.40920988,0.3216211,-0.31114966,-0.13340928,-0.08271175,0.33661267,0.041873556,0.027736394,-0.8155073,0.12146636,-0.111706786,0.08369536,-0.010783758,0.0033914696,-0.17725751,0.684681,-0.1225599,0.34696776,0.47297227,0.048824623,-0.45051214,-0.5990147,-0.1731034,0.89731115,0.20063403,0.20589128,-0.15499401,-0.21178237,-0.3486619,-0.13734767,0.12006275,0.5321325,0.9944618,-0.19228841,-0.004807085,0.37505454,0.09943051,-0.05707205,-0.116806105,-0.510684,-0.10187189,0.07184182,0.53814536,0.68284225,-0.34478515,0.43707758,-0.038658336,0.44180298,-0.30888382,-0.3351898,0.4625277,0.95243526,-0.30593008,-0.39376733,0.5484906,0.33189276,-0.5449851,0.5317586,-0.58531505,-0.35976675,0.4748483,-0.13202561,-0.5297553,0.08868972,-0.33757207,0.13505812,-1.0801041,0.16814044,-0.33685124,-0.1840322,-0.49396783,-0.37177208,-3.5774736,0.29449886,-0.41389135,0.03867925,-0.13524069,0.1394749,0.110157505,-0.4588248,-0.82731354,0.018739166,0.19411667,0.511066,-0.21263117,0.2573004,-0.2247224,-0.07433233,-0.29681745,0.15357825,0.18050256,0.28206146,0.16625589,-0.48436153,-0.022249788,-0.1924679,-0.56889236,0.0884829,-0.66723084,-0.5098301,-0.22737758,-0.8079484,-0.38252962,0.7022547,-0.43126833,-0.051208302,-0.19985421,0.19144644,-0.12427844,0.4858792,0.05053965,0.16033052,0.02206229,-0.09955641,-0.21810451,-0.20460428,0.04423785,0.10317215,0.3985251,0.38377002,-0.11332726,0.20836793,0.6825768,0.90315723,0.1267862,0.6044551,0.4915989,-0.073932104,0.40539128,-0.3822948,-0.21331006,-0.5422668,-0.37060907,-0.040167883,-0.39599264,-0.59887785,0.16068673,-0.44826406,-0.7543245,0.67748004,0.039937954,0.0911064,0.08118076,0.19979829,0.494549,-0.20667815,0.03027459,0.044143174,-0.16432752,-0.6505023,-0.26783508,-0.5697159,-0.6002665,0.27372503,1.0967923,-0.28652307,-0.008232474,-0.0037827538,0.002770387,-0.20837195,0.25412667,0.033383705,0.21181162,0.3174415,-0.08388301,-0.5964717,0.30676615,-0.07239859,-0.16695905,-0.5739661,0.17912859,0.6566915,-0.7819444,0.7739678,0.23057875,0.059697013,0.056145675,-0.59177303,-0.17840296,0.024605151,-0.16452065,0.42748374,0.08636964,-0.68722016,0.4385408,0.79160124,-0.36267346,-0.7559072,0.29829565,0.01487664,-0.3108524,-0.087924965,0.40827864,0.18514368,0.011480807,-0.08109247,0.16432516,-0.5404562,0.10065244,0.2491979,-0.07301135,0.50998396,-0.20974973,-0.26395166,-0.88874,0.040860124,-0.71133673,-0.13363647,0.36065823,-0.008641963,0.034537356,0.1266381,0.04184491,0.36615828,-0.23685661,-0.0002294733,0.035907142,-0.19265376,0.38254803,0.38023794,0.32791144,-0.5300826,0.5934373,0.07512658,-0.14490315,0.14801516,0.03245525,0.43549523,0.09871006,0.49989843,0.12810661,-0.152733,0.20617032,0.970122,0.021949722,0.3848516,0.14243066,-0.18752535,0.31312507,0.16722108,-0.11107015,-0.0064161923,-0.5116314,0.11315424,-0.12461055,0.2346722,0.57419467,0.2031094,0.42818272,0.017983878,-0.29255626,-0.042843424,0.18973319,0.026687654,-1.2306516,0.2993553,0.17514825,0.79914486,0.4800026,0.1548233,0.14962062,0.5860608,-0.20954297,0.18945128,0.38485548,-0.43419358,-0.5949393,0.625424,-0.63718224,0.42074284,-0.22801417,0.13570412,0.025466355,0.18988334,0.44522446,0.71318376,-0.021275895,-0.0035063922,-0.067001775,-0.2035124,0.23914893,-0.49124452,0.026624532,-0.3596643,-0.2316583,0.6476829,0.4147066,0.34694174,-0.22508933,-0.08427013,0.2756736,0.005314146,0.16938528,-0.12708679,0.095606014,-0.12992255,-0.62401444,-0.24285659,0.69100195,0.2652933,0.22885388,-0.1263164,-0.168792,0.4482837,-0.10783021,-0.123791024,-0.21761107,-0.55007863,0.06831344,-0.28715688,-0.61278766,0.30486038,-0.051354785,0.20112029,0.21357217,0.14012378,-0.5468591,0.5107518,-0.19049476,0.73519546,-0.3408519,-0.07872952,-0.51916164,0.15720358,0.23290351,-0.30667746,-0.123397574,-0.29240054,-0.053309843,-0.36318016,0.5331658,-0.008505734,-0.3373937,0.008213337,-0.14453635,-0.063600734,0.49900347,-0.3458327,-0.14720961,0.001858952,-0.31742314,-0.3368941,-0.23505291,-0.031984884,0.38996884,-0.018497368,-0.1280584,-0.103789,-0.26240775,-0.13477874,0.52020925,-0.07501269,0.1992344,0.3372299,0.28514925,-0.44003388,-0.09375767,0.29725772,0.54982525,0.07341483,-0.15150337,-0.18771745,-0.30711463,-0.30493304,0.11060724,-0.16372862,0.42619988,0.2024811,-0.47789866,0.88480276,0.26604554,1.4686018,0.10503828,-0.32758063,-0.06882959,0.42806962,0.096124664,-0.09660347,-0.4513989,0.8961899,0.692695,-0.24153325,-0.11483187,-0.44242558,-0.028125368,0.1648725,-0.29185537,-0.11126227,0.026621345,-0.65581447,-0.29421267,0.37088314,0.19380906,0.38259447,-0.21262087,0.23364179,0.061346695,0.03497076,0.23792753,-0.334669,-0.23989837,0.19095439,0.5282692,0.02160125,0.03575964,-0.41344446,0.35035354,-0.44651476,0.2191233,-0.3931791,0.19956507,-0.11343817,-0.21511382,0.23173922,-0.14149407,0.31312704,-0.1971283,-0.24885233,-0.02972335,0.4916336,0.2451852,0.18839192,0.81062126,-0.23785727,-0.042031206,0.13920905,0.68495524,1.2001796,-0.2101498,-0.078588754,0.3653384,-0.14024065,-0.78881544,0.44509476,-0.25849092,0.10861298,-0.06396334,-0.28732842,-0.63685447,0.31440413,0.27743196,-0.11994326,0.27988416,-0.6327356,-0.19755857,0.21316549,-0.45503807,-0.24259204,-0.4324202,0.21442915,0.78263193,-0.19891214,-0.23992234,0.30179664,0.18040085,-0.15142344,-0.52149606,-0.010602355,-0.3276737,0.31758925,0.29095381,-0.3203395,0.08472763,0.059209637,-0.5650008,0.060335334,0.2102646,-0.26347554,0.18945166,-0.25950724,-0.19035676,0.88947856,-0.12055736,0.25950387,-0.67281795,-0.42719504,-1.0289443,-0.20822194,0.7038841,0.038168706,0.061057705,-0.55727476,-0.05926186,0.0824631,-0.4336317,-0.033967417,-0.28053057,0.45467955,0.084202126,0.3833445,-0.1471297,-0.6522552,0.032949284,0.35286158,-0.19574833,-0.6780023,0.4676182,-0.09988146,0.9273762,0.14924009,0.011773069,0.5698446,-0.46446273,-0.071169436,-0.34546867,-0.33827665,-0.6288583,-0.15662266,447 +677,0.46679348,-0.258114,-0.48746365,-0.24510612,-0.4291197,0.002858327,-0.36941534,0.27715012,0.23146158,-0.24384299,-0.1565294,-0.22025508,0.15999897,0.32073843,-0.18362696,-0.47251987,-0.13212262,0.05021506,-0.7363552,0.29297888,-0.6637655,0.19486706,0.05113759,0.4211538,0.15650257,0.29264718,0.16881107,-0.0077053127,0.16607888,-0.20694557,0.01800211,0.011641667,-0.7409176,-0.08248993,-0.2354129,-0.47981304,-0.04364474,-0.67854893,-0.38269165,-0.74565065,0.31939715,-1.1682574,0.71237075,-0.021057116,-0.20077714,-0.25223178,0.38538373,0.5500469,-0.227272,0.19060375,0.28766006,-0.15008129,-0.017523352,-0.22611512,-0.09014472,-0.477277,-0.6681848,-0.124739096,-0.5834329,-0.44993654,-0.083679505,0.31391823,-0.22386377,0.186608,-0.13537578,0.17527606,-0.41009971,-0.055059772,0.43303674,-0.11378872,0.51183474,-0.6126381,-0.006608832,-0.094580255,0.4184659,-0.038512293,-0.2699695,0.2906877,0.31603777,0.4376602,0.11744217,-0.2516114,-0.24508773,-0.2289786,-0.060551602,0.5407471,-0.22776446,-0.2625646,-0.31979164,-0.04848818,0.6591215,0.6817798,0.037225418,-0.27043372,0.04451383,-0.0055819703,-0.3523501,0.675112,0.6311897,-0.3085512,-0.34194276,0.19282165,0.55800176,0.17535767,-0.3383971,0.26963308,0.11441447,-0.60249645,-0.15725987,0.10526668,-0.030717466,0.4327676,-0.1360218,0.22368163,0.77544373,-0.17547435,-0.010233361,-0.06363002,-0.14827277,-0.24144346,-0.26518032,-0.3364498,0.18284376,-0.6049453,0.040833957,-0.27971193,0.6416451,0.029097885,-0.7600281,0.43706682,-0.776415,0.20571741,-0.030977923,0.75276226,0.80641395,0.40128958,0.51817775,0.71071583,-0.23004836,0.1047685,-0.12003647,-0.24772035,0.19693345,-0.47439963,0.31651482,-0.44469076,0.094311684,-0.19578725,0.009257784,0.093450755,0.7066082,-0.5323626,-0.06998814,0.32983333,0.777812,-0.32568794,0.012037428,0.70232964,1.2049534,1.0645335,0.09928624,1.2635653,0.40010065,-0.3366585,0.16819102,-0.2956183,-0.6636209,0.14701013,0.31940874,-0.19760616,0.5057352,-0.09686418,-0.03621757,0.31320804,-0.5016379,0.04365585,0.17738718,0.15783852,0.24537775,-0.18215325,-0.5496732,-0.09828048,-0.0015590305,-0.08166616,0.2836912,0.1618367,-0.2667138,0.3377922,0.002825746,1.3485807,-0.14879341,0.06591575,0.16773184,0.5983654,0.22615913,-0.15374303,0.00946718,0.3949513,0.39879754,0.070384756,-0.614022,0.31429067,-0.17323014,-0.37391567,-0.30088285,-0.3875303,-0.31009457,-0.028898107,-0.4681767,-0.295279,-0.14389594,-0.17562184,0.39011952,-2.7252414,-0.48040932,-0.23068437,0.43663535,-0.21940711,-0.15586424,-0.055567943,-0.53484976,0.20279016,0.3956599,0.4787661,-0.764198,0.62003267,0.6651777,-0.5341467,-0.14885522,-0.855463,-0.050979033,-0.096013665,0.4107907,0.089922555,-0.24677493,-0.12528132,0.30247784,0.7422997,0.16809104,0.10423387,0.31698924,0.62630373,0.042204473,0.79584086,-0.18115054,0.44904324,-0.2604384,-0.16229905,0.32545218,-0.25212112,0.1627735,-0.17415515,0.07244346,0.58382607,-0.56789017,-0.9434869,-0.71469104,-0.34479952,0.82579815,-0.15735349,-0.5580492,0.17072669,-0.48122236,-0.1835714,0.032257564,0.76109815,-0.14731005,0.26449353,-0.86559135,-0.043166656,-0.21927682,0.19239953,0.066974,-0.05869478,-0.41143486,0.78502536,-0.19226602,0.56008065,0.2775566,0.23370042,-0.3191886,-0.40266228,0.17659679,0.74032474,0.39556745,0.02882257,-0.23370674,-0.2945639,-0.1547574,-0.26994607,-0.0021114533,0.48820436,0.78593457,-0.12080933,0.21524818,0.49653673,-0.17548603,0.040668026,-0.09723551,-0.17404468,-0.03525934,0.047157783,0.5654558,0.74054337,-0.23323932,0.45258194,-0.3016872,0.33797666,-0.16196664,-0.5022022,0.53102106,0.429838,-0.106530935,-0.10602821,0.6277424,0.58215505,-0.44019333,0.57838535,-0.8348971,-0.29265347,0.53440225,-0.0032482366,-0.54683995,0.2714548,-0.3681084,0.2130293,-0.9193607,0.3795168,-0.25935087,-0.3841987,-0.39043564,-0.2725199,-2.8420932,0.21870469,-0.15088403,-0.039913043,-0.3002767,-0.24988899,0.443351,-0.57854974,-0.7330604,0.0330557,0.100979015,0.62023616,0.06013892,0.14914267,-0.30901366,-0.14777778,-0.22276293,0.25125915,0.15130088,0.32635546,-0.10841559,-0.4130699,0.07787016,-0.12740925,-0.59469175,0.1903988,-0.6352999,-0.5856416,-0.017582532,-0.44629732,-0.36827946,0.6304289,-0.3770209,0.050642166,-0.33821696,0.044060245,-0.21880102,0.34022874,-0.054258034,0.15844356,0.11755002,0.026461324,0.0929555,-0.22187828,0.47667342,-0.097997196,0.274488,0.08351728,-0.07394115,0.20335284,0.44346985,0.6952779,-0.16577421,1.0255427,0.5397111,-0.08291234,0.13249364,-0.25640017,-0.21124306,-0.5630793,-0.26273766,0.0108809015,-0.4276548,-0.5871551,-0.0036435951,-0.2843621,-0.77488035,0.7146098,-0.14866835,0.3779864,0.065150216,0.32274547,0.35644802,-0.08631488,-0.0019067571,-0.0341768,-0.17817718,-0.5940577,-0.34596682,-0.6794665,-0.4869816,0.035850324,1.1122477,-0.11072091,0.13035771,0.10863897,-0.28379446,-0.047307637,0.1848351,0.08825148,0.2464042,0.4545113,-0.045919523,-0.6397813,0.21753357,-0.2194628,-0.26764244,-0.5813469,0.11752919,0.7849597,-0.75033367,0.51671296,0.44702148,0.14571558,-0.21877956,-0.5064706,-0.18989754,0.045521352,-0.38072425,0.5521194,0.1327429,-0.80912334,0.60151774,0.3264708,-0.42355797,-0.7029067,0.5133795,-0.12390112,-0.2371993,-0.109171286,0.24023518,0.24845555,0.005585817,-0.2961877,0.23487933,-0.40887308,0.32948363,0.13370673,-0.043570288,0.43904394,-0.04554713,-0.19411817,-0.7623532,-0.005679943,-0.60860103,-0.29504773,0.3083192,-0.0864937,0.108901575,0.37595522,0.05389462,0.38241023,-0.2409574,0.15408714,-0.07413705,-0.42354038,0.11482299,0.46078536,0.35882616,-0.39853165,0.6466989,0.10430848,-0.26781213,0.05308052,-0.0120094055,0.38710898,-0.10421408,0.39798468,-0.23328549,-0.19636084,0.34760967,0.8134555,0.20661889,0.46538243,0.24542218,0.052971635,0.40814787,0.015604924,0.112606175,-0.026743192,-0.5486286,0.0151478555,-0.21776502,0.23178442,0.52703744,0.2818812,0.3108197,0.0106478445,-0.19371334,0.034470204,0.17638241,-0.34236485,-1.3047105,0.27216122,0.23418294,0.8023576,0.35201243,-0.01352843,-0.0030189843,0.6247078,-0.23363484,0.032541282,0.53521526,0.27076122,-0.3843436,0.78900665,-0.5805365,0.46085307,-0.22762917,-0.0411548,-0.030261708,0.31336552,0.46006152,0.814996,-0.1969138,0.11855517,0.0899158,-0.09387442,0.060937352,-0.33990914,0.0351958,-0.44103116,-0.23918816,0.8804155,0.31160122,0.44053745,-0.110421166,-0.06270074,0.08149932,-0.09165946,0.21824461,-0.12237556,-0.27305892,-0.018381901,-0.6202122,-0.09722757,0.5297892,0.13929796,0.20793414,-0.086971484,-0.4215323,0.0045279837,-0.14589931,0.068033084,0.03145873,-0.6990531,-0.17747065,-0.26458415,-0.62091476,0.5418528,-0.23645419,0.046365783,0.23698662,-0.087687716,0.032657787,0.19294967,0.053129986,0.7983014,0.07974454,-0.24181181,-0.16758893,-0.03631313,0.38891765,-0.33675525,0.02097521,-0.37446138,0.13070534,-0.5907341,0.7385713,-0.17154656,-0.4938243,0.2960007,-0.2140527,-0.04234922,0.6628417,-0.19138001,-0.06304546,0.31403834,-0.2051174,-0.17848325,-0.0823546,-0.37288377,0.2767445,0.22074237,-0.09583517,-0.05468649,-0.3350048,-0.067731254,0.5611629,-0.037242945,0.5780391,0.4417178,0.10998507,-0.1996637,0.0201541,0.1762295,0.6106459,0.12774825,0.030549984,-0.35942045,-0.568943,-0.17109449,0.28464603,0.0386921,0.29022425,0.1659645,-0.2773938,1.0701611,0.045032863,1.1922319,0.13137084,-0.41920993,0.05535058,0.5092197,-0.016406314,0.042671144,-0.4996708,0.8885444,0.5480272,-0.15076326,-0.093501955,-0.4963015,-0.07316804,0.37369007,-0.38841832,-0.210581,-0.13853656,-0.65009874,-0.37601727,0.24312733,0.14277278,0.15717953,-0.06718306,0.31834057,-0.03152525,-0.10775777,0.46420938,-0.5907627,-0.16870292,0.2617486,0.33940008,-0.19332123,-0.005716012,-0.3704038,0.40674928,-0.5996202,0.08882027,-0.63355446,0.09119049,-0.124149635,-0.35504356,0.056968313,-0.0018295416,0.33268648,-0.20020407,-0.35653597,0.06848046,0.548382,0.08958989,0.16588427,0.62267864,-0.30848673,-0.0658132,-0.058573928,0.58896744,1.5626928,-0.5170836,0.106233396,0.23886405,-0.47655562,-0.6970561,0.49750185,-0.4486212,-0.017699186,0.02976859,-0.44973361,-0.4595012,0.23260736,0.14967932,-0.12292601,0.035516612,-0.4703827,-0.33491665,0.36857584,-0.32040212,-0.10324262,-0.17280081,0.40336066,0.65542847,-0.15867358,-0.30872184,-0.072882816,0.60226053,-0.3457284,-0.4321993,0.08603936,-0.16733606,0.38699389,0.06890031,-0.28969333,-0.13263069,0.074999385,-0.5729169,-0.015244434,0.29165265,-0.41436324,0.16913247,-0.33820608,-0.10239559,1.0272807,-0.21657851,-0.2890525,-0.6664221,-0.535418,-0.9303372,-0.42192188,0.059157424,0.3177365,0.008500645,-0.28354946,0.01505943,-0.063130155,-0.2390259,0.13160744,-0.5255438,0.36911073,0.09260217,0.6202849,-0.3674608,-0.8162812,0.09300881,0.12819329,-0.2714407,-0.71169,0.82437736,0.05229954,0.9114202,0.14731516,-0.045596227,-0.118491046,-0.43186203,0.11910303,-0.27072436,-0.27929166,-1.0536376,0.007841312,462 +678,0.2892776,-0.096222095,-0.55279756,-0.23315361,-0.3079243,0.10616893,-0.15809539,0.5833818,0.16556583,-0.45990136,-0.08805764,-0.09088994,0.07103196,0.24568154,-0.13811989,-0.33965573,0.03635318,0.057373386,-0.5094068,0.3099789,-0.44415075,0.19275245,-0.021100132,0.24967018,0.32063565,0.2431412,0.09113905,-0.06038402,0.051309366,-0.23575686,-0.23636106,0.20386097,-0.35464603,0.22159657,-0.14749739,-0.36332005,-0.0270652,-0.54669183,-0.29775408,-0.62796336,0.4148229,-0.71698475,0.49287483,0.016693665,-0.18896158,0.25658697,0.2123127,0.24720143,0.023163052,-0.1757767,0.134967,-0.014457262,-0.078282624,0.048613828,-0.21374084,-0.3021882,-0.46300867,0.05672822,-0.5738674,-0.21047424,-0.18755557,0.11112221,-0.20276625,-0.031414714,-0.21828414,0.5877641,-0.3594427,0.021862773,0.13150565,-0.036308166,0.21114543,-0.6073946,-0.15325688,0.040390767,0.314148,-0.28936937,-0.23288931,0.13426341,0.14875028,0.42394108,-0.16686608,-0.08475714,-0.15777174,-0.08504073,0.13643977,0.55682874,-0.14123307,-0.47011626,-0.04847483,0.032545228,0.24059772,0.1695845,0.18249324,-0.3023206,-0.1788635,-0.08579573,-0.24134597,0.53569853,0.5019285,-0.33504778,0.040184215,0.36346638,0.39989662,0.27624154,-0.13409323,0.026559133,-0.018916331,-0.5568772,-0.1727012,-0.030707065,-0.078447744,0.4788141,-0.08047155,0.4885812,0.32592127,-0.063686,0.051386926,0.18135525,-0.026361635,-0.042740382,-0.21265125,-0.08759463,0.11693846,-0.5120552,0.17228566,-0.106759325,0.67144907,0.08235052,-0.81164753,0.30913976,-0.51177734,-0.026202839,-0.1125671,0.45170873,0.715207,0.28320068,0.19022171,0.58140576,-0.31531614,-0.02005711,-0.23525074,-0.17841434,-0.13394994,-0.015422647,-0.0025772406,-0.6016257,-0.16234484,0.0013809571,0.099953964,-0.01565109,0.2506268,-0.62739944,-0.099873334,0.27929893,0.6230396,-0.25518972,-0.2019698,0.8907765,1.0241284,0.8371111,0.13424899,0.86055154,0.008566911,-0.1694089,0.11190396,-0.11421195,-0.5739769,0.1974521,0.3674968,0.38500708,0.060306434,-0.0033509685,0.08037892,0.3874276,-0.36930102,0.061622698,-0.124647304,0.22048649,0.10326894,-0.014119749,-0.2463936,-0.44189388,0.0315031,0.08804179,0.07368717,0.17274567,-0.32557064,0.28296474,0.0509244,1.4716479,-0.15704168,0.051972803,0.031155583,0.44243732,0.14094175,-0.36504143,-0.20114814,0.14704943,0.4147285,-0.077446334,-0.60574764,0.08166126,-0.10234356,-0.40340954,-0.08000005,-0.35837853,-0.22841658,-0.22403485,-0.4670655,-0.025124284,-0.116102256,-0.476983,0.46167162,-3.1838849,-0.14426436,-0.1471855,0.22824231,-0.19851127,-0.4129969,-0.11559437,-0.35492626,0.4303695,0.22952358,0.42449972,-0.48502403,0.46943277,0.2733727,-0.482299,-0.1277954,-0.643528,-0.13341437,0.08012405,0.15222144,0.03621691,0.10415631,0.07655688,0.21076201,0.39686936,-0.142233,0.23160638,0.18290994,0.37628874,0.13870548,0.51676095,-0.10117916,0.44614542,-0.24664041,-0.14339203,0.24154812,-0.24617492,0.17567436,-0.16391315,0.1527833,0.3757859,-0.49005178,-0.78489345,-0.57506835,-0.3023624,1.258031,-0.20482375,-0.46509174,0.33873212,-0.47480303,-0.24834178,-0.08306154,0.5892166,-0.026768832,-0.21437287,-0.6453718,0.12214956,-0.24797322,0.14091255,-0.14446418,-0.10661995,-0.45342892,0.46445772,-0.062064044,0.56666875,0.31259757,0.1985248,-0.32217664,-0.28001758,0.005920234,0.81816,0.4007549,0.06515745,-0.07565454,-0.09710695,-0.41562033,0.120034605,0.06527214,0.69278204,0.6476295,0.032880165,0.23326534,0.24496497,0.11781226,0.07331508,-0.16966741,-0.27833053,-0.1567382,0.109850414,0.60968745,0.26554906,0.07310362,0.58270085,-0.073388904,0.09746291,-0.3149096,-0.42555624,0.23203531,0.48468426,-0.15708624,-0.27936906,0.5322456,0.5903898,0.025101367,0.31539932,-0.5409615,-0.37629515,0.4814277,-0.21280836,-0.36564186,0.18393192,-0.27713817,0.15480086,-0.859352,0.21208562,-0.26901916,-0.8230843,-0.26901934,-0.030820774,-2.9286807,0.17606783,-0.07992076,-0.2520787,-0.07514573,-0.47380877,0.15373695,-0.28919396,-0.5414116,0.16463654,0.030445097,0.7830439,-0.033471912,-0.018557338,-0.12053038,-0.12819734,-0.2022093,0.11693446,-0.016608147,0.28346783,-0.15088527,-0.24578835,-0.12867738,-0.18681993,-0.4127094,0.06294605,-0.37624756,-0.36068624,-0.085353024,-0.36256278,-0.23982853,0.5928204,-0.28269878,0.010263354,-0.2773584,-0.0037057896,0.055315867,0.31734514,-0.05602663,0.23791926,-0.021870337,-0.041138988,-0.006431843,-0.21307865,0.13094975,0.09250614,0.22059004,0.29430377,0.105524436,0.35644725,0.45963037,0.6366416,-0.034969073,0.86508507,0.39660078,-0.034686718,0.28790432,-0.14091454,-0.22548905,-0.3772989,-0.15131006,0.1424316,-0.4115984,-0.42052138,-0.15325062,-0.19855087,-0.62166935,0.519336,0.13288385,0.14601746,-0.033749975,0.2903077,0.4324442,-0.14872469,0.019326594,-0.17059158,-0.067934,-0.57571083,-0.31731227,-0.59690964,-0.24791978,-0.025347453,1.0540819,-0.3097687,0.15953788,0.002706961,-0.08863215,0.1436217,0.13022141,0.07548188,0.2576589,0.29265544,-0.2610262,-0.6366721,0.30679318,-0.30630022,-0.09703641,-0.456253,0.098250166,0.58181405,-0.47288784,0.29127395,0.16879933,0.10471253,-0.3039717,-0.5543198,-0.08810357,-0.002564758,-0.2925008,0.28178126,0.23734856,-0.88193345,0.53924996,0.24314049,0.036563616,-0.78916895,0.5550103,0.06826406,-0.2272765,-0.15592974,0.28265423,0.14237908,-0.064895645,-0.25683495,0.1268763,-0.33268452,0.33502606,0.20751268,-0.04522947,0.13715726,-0.3211225,0.057278283,-0.47479242,-0.05475229,-0.5584674,-0.18060857,0.14486618,-0.035972767,0.31905064,0.3102171,-0.14525613,0.3231924,-0.3615969,0.12065454,-0.0018623793,-0.27674213,0.19499299,0.421373,0.35735723,-0.4470881,0.53849643,0.100110084,-0.05128732,-0.023525449,0.082927026,0.41111374,-0.08772767,0.2499291,-0.21475968,-0.318595,0.30373868,1.0132455,0.110549875,0.25417712,-0.13181065,0.089232296,0.11797619,-0.06334014,0.11232985,0.05416385,-0.48813704,-0.009011007,-0.23606294,0.12447519,0.463936,0.13088162,0.3093594,-0.025802324,-0.35635334,0.030901663,0.08225406,-0.105268,-1.1920661,0.4878598,0.10563194,0.853418,0.49677354,0.018198324,-0.035068743,0.50234514,-0.1644379,0.16190727,0.17582291,0.10618536,-0.3741188,0.46259066,-0.71655875,0.5722081,0.05024862,-0.053262945,0.016671915,-0.12601498,0.49118507,0.8735056,-0.14995503,0.12632617,0.16688673,-0.21648511,0.13728788,-0.3106394,-0.10377994,-0.79663473,-0.22460644,0.63540643,0.35691673,0.40225062,-0.017341137,-0.0029595448,0.20990625,-0.06586421,-0.0504729,0.07676982,0.16662869,-0.18828462,-0.6126023,-0.1531666,0.48530167,0.006151707,0.07566108,0.034226835,-0.3485916,0.19078746,-0.16003095,0.011334835,-0.09778093,-0.57316136,0.017457072,-0.33184153,-0.35292333,0.35732657,-0.30969298,0.21658982,0.20930058,0.082186386,-0.06253411,0.3374154,0.20726794,0.69593817,-0.10049888,-0.033084843,-0.30711433,0.16245845,0.16078523,-0.1317936,-0.37057912,-0.3250241,-0.002083329,-0.6284791,0.24517584,0.010699987,-0.23025315,0.2630326,0.0129082985,0.10138113,0.4821553,0.029480843,0.113538355,0.020995338,-0.24786064,-0.11437859,-0.12956683,-0.09036117,0.21892956,0.089924246,-0.070678,-0.12952209,-0.042029914,-0.0929458,0.15526533,0.024656834,0.41748527,0.20273909,0.10342341,-0.3750534,-0.0022332072,0.047526672,0.46838406,-0.06655211,-0.12685539,-0.28513476,-0.2059779,-0.22011478,0.22712845,-0.059833348,0.37191072,0.020088973,0.014348929,0.64393395,-0.03541014,0.96609867,0.0018875301,-0.33009848,0.062794924,0.33732063,-0.049096465,-0.13755377,-0.23185284,0.7379342,0.31821647,0.14739433,-0.048892114,-0.31537136,-0.017129358,0.23383142,-0.033433955,-0.2152591,-0.05019973,-0.46206248,-0.15469643,0.21564844,0.13015546,0.2574616,-0.11835175,0.09513699,0.29361373,-0.0627219,0.1967659,-0.5527456,0.032753084,0.3224285,0.2951998,-0.013642645,0.034948662,-0.4928088,0.24694315,-0.5639895,0.032006033,-0.19166708,0.21923491,-0.103984594,-0.1992032,0.17255051,-0.0056752446,0.37802717,-0.1848804,-0.28754777,-0.21804298,0.5631257,0.19886912,0.16742875,0.476394,-0.25931373,0.17819251,-0.02342652,0.46419704,0.7996686,-0.18042403,0.02474793,0.45794237,-0.24726953,-0.5503795,0.24469516,-0.3017723,0.14013794,0.17708398,-0.11990325,-0.25778946,0.27433878,0.41930988,0.109715134,-0.027080046,-0.6245809,-0.2085026,0.3223967,-0.101860136,-0.2430508,-0.43942058,0.045581486,0.4505989,-0.20156178,-0.10370108,0.09205376,0.35509712,-0.17435138,-0.4742017,0.111674055,-0.25604692,0.19296315,-0.06025354,-0.368111,-0.30036572,0.035637803,-0.35809153,0.15546788,0.08382566,-0.21164802,0.024645315,-0.14438732,0.028370012,0.9125281,-0.21196082,0.15800579,-0.4184696,-0.5261669,-0.5319342,-0.29676443,0.21089815,0.032573916,-0.049891934,-0.5406144,0.0024770086,-0.13011052,-0.1744456,-0.043859642,-0.19763573,0.4919713,0.10230397,0.24981183,-0.120362125,-0.8598023,0.3611945,0.027388124,-0.29320267,-0.29942855,0.46723062,0.112426385,0.6369941,0.07033397,-0.017317377,0.18444851,-0.3124763,0.049129937,-0.19596246,0.03292751,-0.63568056,0.25098258,463 +679,0.3773507,-0.26607946,-0.5519564,-0.100700244,0.057584368,0.0068896506,-0.17786814,0.6888168,0.2798844,-0.3467474,-0.16974856,0.13790967,-0.08411369,0.3493107,-0.25829726,-0.4123363,-0.0009548412,0.19569801,-0.33169875,0.5792411,-0.27725393,0.13886186,-0.30581433,0.530786,0.18562943,0.45478284,-0.090969816,0.03696487,-0.24754082,-0.07170061,0.17891072,0.33411056,-0.4138795,0.32086897,-0.18783495,-0.110570125,-0.053223126,-0.35360795,-0.57946783,-0.802126,0.1428101,-0.8869103,0.58767056,-0.037537124,-0.41849777,0.391266,0.02265373,0.25970942,-0.3138645,-0.22012816,0.067727245,0.07137661,-0.15302542,-0.22237056,-0.192724,-0.5319063,-0.37748262,0.028709196,-0.40502226,-0.026652185,-0.21429381,0.11836258,-0.12109232,0.0005049522,-0.11639004,0.5990899,-0.4925561,-0.004744209,0.14417383,-0.14006463,0.16333342,-0.742705,-0.16989134,-0.14385055,0.18297723,0.030521406,-0.19389969,0.08936704,0.33329943,0.36603352,-0.08722716,-0.04390466,-0.2874096,0.0045756195,0.0602688,0.36097592,-0.18714274,-0.6552705,-0.08004579,0.042375036,0.32358444,-0.06976716,0.3040964,-0.16881584,-0.01617079,-0.0024612867,-0.21042424,0.46083274,0.50016636,-0.22257394,-0.10362502,0.257254,0.5785363,0.24511209,-0.1637282,-0.064351335,-0.06676232,-0.39700752,-0.1392686,-0.1263247,-0.21152171,0.6950575,-0.10043751,0.17203537,0.51935285,-0.11707355,-0.1059378,0.28939208,0.1063248,0.12609799,-0.4026329,-0.49401963,0.19500579,-0.31462464,-0.07166779,-0.19301875,0.37074238,0.13256362,-0.7853129,0.40736076,-0.25000608,0.0016934321,0.0015461708,0.45171526,0.5249304,0.48965538,0.259525,0.5250779,-0.29444692,-0.010015017,0.09007508,-0.22742048,0.054524317,-0.15618023,0.010360997,-0.5159372,0.09638306,0.0024739136,-0.33450046,0.12481002,0.34792474,-0.50671345,-0.15631682,0.15402032,0.81092274,-0.26304027,-0.02262982,0.712527,1.1979294,0.7926531,0.056832466,1.1581004,0.3138514,-0.017918114,0.18027137,-0.2619663,-0.6981513,0.22773398,0.3375561,-0.24018827,0.50628173,0.10818023,-0.07995416,0.3011061,-0.41120666,0.09130675,-0.24867564,0.2788048,0.17173547,-0.07008393,-0.5310981,-0.2831715,-0.070379026,0.10226449,0.15816173,0.2419224,-0.329226,0.20643218,0.17076111,1.3603234,-0.06783582,-0.107611746,-0.0038485527,0.6767104,0.23380612,-0.15978187,0.036012556,0.3551119,0.38173342,-0.05025529,-0.52656883,0.06434659,-0.14207175,-0.40082,-0.19485815,-0.31550518,0.04604051,0.03771512,-0.30545375,-0.2322488,-0.031036433,-0.26939905,0.3426846,-2.7390108,-0.18609282,-0.13521637,0.38869566,-0.13947545,-0.21226655,-0.08260775,-0.38459074,0.27402204,0.38972634,0.45055264,-0.49590856,0.40443105,0.5028271,-0.54503036,-0.12656495,-0.45195162,-0.120275706,-0.05174034,0.42400688,-0.057226602,0.07177866,0.0968746,0.2309694,0.5437782,0.09667058,0.14233087,0.4017841,0.20665462,0.0007559428,0.1626028,-0.027171195,0.5559725,-0.12587138,-0.20312871,0.22717908,-0.34140375,0.29319197,-0.09611389,0.19108406,0.3549971,-0.4537501,-0.8028771,-0.7195494,0.053469583,1.3524724,-0.15851113,-0.49248546,0.29707193,-0.60500187,-0.43554094,-0.050689835,0.33866495,-0.010883844,-0.029989246,-0.77757585,-0.069148585,-0.05818344,0.13082828,0.07233084,-0.054015376,-0.4443135,0.7900519,-0.041135646,0.3838121,0.20874459,0.14420745,-0.22403431,-0.5046533,0.06664815,0.88487244,0.47081602,-0.036405005,-0.16496482,-0.12789038,-0.4221823,0.016828729,0.12901717,0.6133592,0.6575748,0.021207752,0.008905358,0.15367739,-0.07532439,0.18926653,-0.19810821,-0.40964168,-0.21740717,0.22501208,0.58675057,0.5563449,-0.36104357,0.3736332,-0.28324816,0.3060951,-0.03759884,-0.36029917,0.5465762,0.76475817,-0.23735425,-0.30623367,0.64052683,0.58472323,-0.4524544,0.3958185,-0.616171,-0.15680496,0.28907043,-0.113312535,-0.36486107,0.40999413,-0.27323306,0.12766597,-0.8869593,0.4666128,-0.34241173,-0.5685309,-0.4343382,0.0065589,-2.9788208,0.23118779,-0.16827556,-0.32785827,-0.21180497,-0.15481465,0.3619835,-0.5926279,-0.62677866,0.25801146,0.026005553,0.58512574,-0.12488378,-0.045292452,-0.075136095,-0.3254873,-0.12286652,0.16362058,-0.026022749,0.29482773,-0.012389448,-0.4749553,-0.15690136,-0.07626024,-0.30056936,0.052718647,-0.7060379,-0.34488395,-0.11980624,-0.5346871,-0.039552845,0.5178009,-0.19721207,0.123527355,-0.27278298,0.10292062,-0.20766214,0.22175948,-0.101309486,0.18100078,0.117319025,-0.031634506,0.12660517,-0.19501029,0.2881932,0.07704825,0.42229638,0.13447055,-0.12242535,0.14745489,0.5568139,0.6924374,-0.16557987,0.9540631,0.54240006,-0.23551252,0.40153974,-0.23396836,-0.36500123,-0.5076244,-0.28073052,0.07292989,-0.35953337,-0.39625514,0.07320999,-0.40388057,-0.86373925,0.543943,-0.12965518,0.17299396,0.12283161,0.1617838,0.5003635,-0.11219794,0.16157103,-0.1498953,-0.21857627,-0.5483726,-0.20872802,-0.64600503,-0.3217462,0.08587499,0.95288235,-0.23397864,0.21592237,0.12384856,-0.2708144,0.1384072,0.028254487,0.06420973,0.1074605,0.43782407,-0.2425878,-0.61636347,0.18202637,-0.096099846,-0.16757832,-0.45821708,0.29877624,0.62218255,-0.6380594,0.7828162,0.33551362,-0.05612445,-0.3864951,-0.5485208,-0.320818,-0.13953139,-0.20528556,0.6043969,0.29573807,-0.8363275,0.3311427,0.41286257,-0.37145123,-0.6545534,0.54021615,-0.24777736,-0.061079565,-0.23819491,0.36036873,-0.09413024,0.095272556,-0.24049816,0.2508838,-0.21106951,0.054208342,0.16360757,-0.105530314,0.24999632,-0.17601545,0.01711607,-0.81077546,-0.08822027,-0.48321384,-0.16256054,0.26752302,0.11332527,0.17737092,-0.038519245,0.050216578,0.4420944,-0.4066548,0.13839039,0.008038231,-0.52034813,0.53828627,0.4762463,0.5971004,-0.320499,0.5470489,-0.013793198,-0.18632475,-0.14223923,0.012971174,0.37793362,0.025326777,0.35090902,0.1492756,-0.060021795,0.31755447,0.8190545,0.21044184,0.71216893,0.07178481,-0.039341513,0.29208997,0.04978574,0.18662585,-0.03784424,-0.50999683,-0.010869127,-0.1800805,0.25239477,0.3988783,0.15426911,0.34041166,-0.19686532,-0.3797936,-0.09917481,0.095729515,0.29917076,-1.1318634,0.4636757,0.17536995,0.74667513,0.3295152,0.16808571,-0.16413692,0.7868362,-0.04698314,0.09192102,0.36166975,-0.0021578257,-0.7509662,0.47229415,-0.64324516,0.31473425,0.02464062,0.028355662,0.18344013,-0.07686438,0.5048986,0.92335904,-0.10888261,0.011650656,-0.039304197,-0.24389139,0.11597155,-0.41678503,0.15591599,-0.49318138,-0.4178977,0.59321797,0.6068665,0.43386656,-0.2317447,0.027227027,0.13846129,-0.05970667,0.2691895,-0.018719474,0.002186218,-0.07929453,-0.79357624,-0.15619272,0.3138551,0.041662678,0.037196957,0.0018627369,-0.18289989,0.2711614,-0.014403064,-0.13347504,-0.015170019,-0.5838716,-0.02715135,-0.2037281,-0.43722403,0.48331207,-0.063209146,0.013387859,0.10392574,-0.036382865,-0.24578007,0.313173,-0.007113819,0.6012367,0.017976884,-0.104492314,-0.44197023,0.20712164,0.08099721,-0.13585535,0.09038444,-0.57348037,-0.0012246737,-0.6238809,0.3948701,-0.036771458,-0.33972442,-0.01672858,-0.13341188,0.16459091,0.40280426,-0.23844847,-0.19606437,-0.10875548,-0.15519343,-0.31745836,-0.42454866,-0.13104701,0.29944247,0.27098852,-0.10870095,-0.13174035,-0.102817565,0.08611875,0.4763417,0.030823244,0.4741593,0.48337027,0.19006136,-0.27075678,-0.114078075,0.20847185,0.5081584,0.13511862,-0.060266815,-0.4585403,-0.55902743,-0.31726155,0.14257543,-0.12321798,0.32333905,0.16544054,-0.1250659,0.7262839,0.06767725,1.2804809,-0.052489154,-0.3458338,0.11233489,0.591995,0.0133575015,-0.021367176,-0.34195393,0.9322994,0.4330257,-0.10738341,0.018435039,-0.62976485,-0.066618316,0.12789264,-0.26520127,-0.20427714,-0.120379046,-0.7433383,-0.2277708,0.14951293,0.38569605,0.15001503,0.08596937,0.35723412,0.089465655,0.066541225,0.2418311,-0.44159475,-0.10343965,0.3259726,0.20996127,0.008497806,-0.0275969,-0.45031342,0.28101286,-0.5128381,-0.017886817,-0.16865459,0.06506637,-0.1650757,-0.5050206,0.099769555,-0.015177882,0.40359205,-0.40050867,-0.46272993,-0.18041195,0.5470504,-0.045708224,-0.008026228,0.33692232,-0.23892544,-0.028979192,0.18130706,0.6234103,0.82093495,-0.12350594,0.074199274,0.20481242,-0.35548654,-0.79378384,0.22260642,-0.29911777,0.41611913,0.009380668,-0.21910451,-0.7350832,0.32840383,0.31473377,-0.17305122,-0.058987737,-0.50747514,-0.41623312,0.21313363,-0.3199511,-0.044071976,-0.28198257,-0.068007044,0.45747727,-0.3965731,-0.465202,0.0143621955,0.14843403,-0.26140815,-0.50596994,-0.062212475,-0.38302854,0.34741163,0.01272948,-0.39200354,-0.29976082,-0.038951874,-0.42440763,0.24138647,0.24751824,-0.38866836,0.03245666,-0.41042322,-0.0051730047,0.65195143,-0.2021653,0.14646903,-0.4180573,-0.48893908,-0.9129057,-0.4429485,0.2574474,0.1853412,-0.16713482,-0.71281326,0.1183226,-0.1700213,0.06412786,0.04593778,-0.21339384,0.47106442,0.024691941,0.5137346,-0.079554,-0.83963335,0.17270668,0.15398833,-0.102998465,-0.5281132,0.5224073,-0.071260676,0.998189,-0.0019232447,0.21836883,0.14695862,-0.5418681,-0.17630593,-0.22256985,-0.16465957,-0.53166807,0.20569783,469 +680,0.39165783,-0.28674686,-0.42994496,-0.17055002,-0.26839757,0.012411118,-0.17865655,0.45396894,0.18469885,-0.45540002,-0.10159512,-0.014693503,-0.125877,0.35409653,-0.1564561,-0.4204757,0.008173237,0.05151888,-0.5271197,0.5701556,-0.28926173,0.30257845,-0.10981006,0.28644097,0.060212724,0.37000424,0.1834662,-0.12918173,0.13980433,0.0448013,0.0008476743,0.041206364,-0.45552048,0.42823797,-0.17770377,-0.3786222,0.065545306,-0.3938684,-0.45727232,-0.6835645,0.31211382,-0.6066389,0.40506473,0.08813383,-0.22977032,0.022907188,0.3257389,0.40447375,-0.290758,-0.053445585,0.14935635,0.20013398,-0.11371365,0.05748946,0.013915961,-0.4635031,-0.62536055,-0.08839734,-0.4296189,-0.05676166,-0.34507325,0.20612074,-0.36346757,-0.09327539,0.09806083,0.45679426,-0.34954965,-0.014491077,0.22880663,-0.14065708,0.23985301,-0.6108808,-0.123439394,-0.17095631,0.45516062,-0.14815545,-0.13981815,0.23388818,0.09005387,0.41182297,-0.06378557,-0.112871446,-0.35235184,-0.053063784,-0.055437677,0.49248064,-0.13530022,-0.4105271,-0.017537566,0.009111469,0.047246553,0.113212794,0.01111026,-0.11297606,-0.12466412,-0.018781176,-0.2418891,0.2515714,0.4116082,-0.2941629,-0.23269334,0.41779897,0.6310572,-0.0012555397,-0.10119014,-0.01954671,0.16312562,-0.37902206,-0.16957489,0.00075718074,-0.006798822,0.44804227,-0.04581513,0.47421524,0.5517031,0.032323387,0.046053015,-0.014066772,-0.019896774,-0.12338478,-0.058553394,-0.24743699,0.093797095,-0.4352697,0.18105555,0.019912353,0.6384084,0.21851602,-0.78252506,0.25814924,-0.4695348,0.11989219,-0.006236685,0.46884155,0.7693213,0.3595921,0.23449406,0.70692146,-0.24863142,0.10293078,-0.15034768,-0.20726803,0.099354215,-0.1386062,0.04063564,-0.54818463,-0.06502317,0.21409193,-0.1014105,0.07501132,0.2681788,-0.4439378,-0.09553036,0.16669485,0.88222927,-0.13182053,0.019994259,0.53047353,0.93763,0.83791393,0.0959384,0.9784628,0.07231559,-0.20591189,0.39811623,-0.3529785,-0.6740965,0.27270472,0.46061662,0.3035202,0.34126422,0.15556325,-0.06090619,0.46399996,-0.41280305,0.14057629,-0.23262534,0.10841285,0.16933621,-0.07806851,-0.3118189,-0.30849096,-0.11636452,0.040871557,0.01990879,0.19219452,-0.1608196,0.18500659,0.13576461,1.760269,0.058203213,0.07483806,0.14794233,0.6334331,0.098633416,-0.35662454,-0.22825654,0.13437259,0.26202923,0.14784724,-0.53962,0.2667644,-0.13888377,-0.48824412,-0.12503529,-0.268675,-0.2200961,-0.04234809,-0.5348758,-0.1318556,-0.20343934,-0.4176648,0.3934855,-2.9961066,-0.17519492,-0.164771,0.40632206,-0.28820807,-0.20091401,-0.086499214,-0.4130383,0.37521183,0.5211715,0.42260906,-0.5671111,0.42756766,0.4374861,-0.62178004,-0.104900785,-0.48735178,0.0043113735,-0.0016427475,0.41253027,0.104767315,-0.071361236,-0.012096245,0.33172843,0.27254856,0.03226719,0.09179621,0.3433539,0.43149045,-0.020201953,0.5440891,-0.059362777,0.3207781,-0.42796454,-0.16670473,0.24979307,-0.5349342,0.22887537,-0.12715796,0.16131225,0.3911336,-0.58330274,-1.0395966,-0.78013414,-0.1710651,1.0338428,-0.0071807746,-0.17636387,0.28045732,-0.7217548,-0.123945944,-0.16869235,0.6533737,-0.029780086,-0.07507919,-0.7990661,0.00056468067,-0.17085077,0.31556436,0.04878777,-0.20424232,-0.56109256,0.694264,-0.031684842,0.67992336,0.18114184,0.1718122,-0.2914724,-0.39083284,0.043479823,0.65641403,0.26841635,0.20170794,-0.26979765,-0.15434252,-0.4373446,0.06876338,0.14553285,0.59943146,0.5031615,-0.032623906,0.10542793,0.18937752,-0.04774895,0.00015350488,-0.15754771,-0.15653977,-0.20589143,0.1398455,0.6227795,0.5268252,-0.06534323,0.24529894,-0.06006498,0.12854105,-0.35534558,-0.28017452,0.40827927,0.7897158,-0.035331488,-0.2360913,0.47129995,0.7369329,0.0053775264,0.291807,-0.6803083,-0.40846708,0.24125499,-0.07488033,-0.3657616,-0.03305914,-0.39531755,0.09165629,-0.8070052,0.21810338,-0.4328496,-0.62098515,-0.5910339,-0.004743553,-3.4950233,0.19883682,-0.018831994,-0.3166722,0.0034179597,-0.15640141,0.34240195,-0.6501405,-0.53477424,0.2027702,0.025990807,0.82758486,0.055945974,0.03200715,-0.27913204,-0.2391981,-0.27534348,0.081187434,0.056450844,0.325992,0.07703839,-0.5715989,-0.15659073,-0.14110105,-0.30457076,-0.031984333,-0.49320033,-0.37483972,-0.22340004,-0.5260115,-0.28064114,0.59031963,-0.1706613,0.124542445,-0.25459197,-0.06329029,-0.24442445,0.41156265,0.11687009,-0.046251792,0.056670647,-0.0882105,-0.05248952,-0.21965617,0.32386643,0.107070774,0.47252968,0.31935903,-0.11165916,0.24901234,0.6728893,0.5007205,-0.15243602,0.83072597,0.44795477,-0.030709453,0.25737953,-0.09316162,-0.1357846,-0.33154044,-0.21369651,-0.0044976105,-0.29577497,-0.35070637,0.11179324,-0.4619231,-0.76997375,0.35861233,-0.118582696,0.058777656,0.16244167,-0.045321032,0.47722414,-0.20343333,-0.019539384,0.0027327584,-0.09170257,-0.50824064,-0.37642235,-0.46996337,-0.46588993,0.06518661,1.1809356,-0.21879779,0.08810865,0.14387293,-0.21174754,-0.032797515,0.15626904,0.025190432,0.19094841,0.33305776,-0.08623835,-0.5464172,0.41469118,-0.24764282,-0.09325556,-0.48216152,0.20740463,0.36896643,-0.5151847,0.4177086,0.2606026,0.09592286,-0.16366124,-0.42393655,-0.19385634,-0.12905632,-0.15959321,0.24000877,0.2321594,-0.793062,0.28415072,0.077356376,-0.16412772,-0.67209435,0.6752378,0.036802802,-0.30700994,-0.16895764,0.14354068,0.19460867,-0.054180667,-0.29636562,0.2337339,-0.15067285,0.294299,0.08742729,-0.06379597,0.42913246,-0.22826226,0.11334014,-0.5990743,-0.06502731,-0.32867175,-0.21716644,0.37760094,0.1777403,0.090892985,0.18775629,-0.042484693,0.2194393,-0.22315417,0.026595125,-0.058316734,-0.3371696,0.288508,0.3629033,0.4332037,-0.4062761,0.5744345,-0.030989073,-0.035463966,-0.073960274,0.10904003,0.32019836,0.09101462,0.4282633,-0.15924142,-0.2844892,0.3223286,0.81098163,0.28855836,0.24789454,-0.053056955,-0.10711701,0.30963105,0.089091495,0.054778796,0.08586466,-0.614087,0.07234431,-0.192199,0.15128866,0.37169743,0.050053317,0.13909562,-0.11863402,-0.32746425,0.02617836,0.13186556,-0.12103589,-1.2577817,0.50553167,0.14439754,0.9021447,0.51258093,-0.04103645,0.020367738,0.82185304,-0.05063717,0.16446082,0.3383153,0.049520567,-0.44724348,0.5228729,-0.6082572,0.6252314,0.12131989,-0.06080943,0.010475055,-0.099266924,0.37539244,0.7342664,-0.119579405,0.05266107,0.040102933,-0.31662023,0.087448545,-0.23127797,0.0995192,-0.74413556,-0.18057145,0.57269675,0.59859765,0.32619843,-0.090782,0.007624351,-0.06450946,-0.045075003,0.15480322,-0.13123009,0.0040324377,-0.044360377,-0.76572984,-0.0125963185,0.4547377,-0.00089172676,0.24104108,0.08574458,-0.30081776,0.14901362,-0.077117555,0.067711286,-0.09873311,-0.5956895,0.011069975,-0.2964647,-0.1371523,0.6291033,-0.2654925,0.31107572,0.27383298,0.02872467,-0.1858616,0.41797206,-0.064723425,0.6815988,-0.08041418,-0.009294083,-0.3772877,-0.086496994,0.21261214,-0.24820283,-0.1349174,-0.45507452,-0.016806712,-0.63198286,0.371,0.11061588,-0.23071326,0.2094915,-0.22552332,0.18950166,0.5116081,-0.11970021,-0.1655259,-0.13247919,0.03638282,-0.234824,-0.15618251,-0.19812404,0.37936303,0.014141931,0.15713388,-0.036248058,-0.1129433,-0.034436278,0.36831018,0.105909154,0.33178288,0.35186327,0.1913383,-0.27396473,-0.014648474,0.060334187,0.64452654,0.059238553,-0.06640789,-0.37144312,-0.4650075,-0.34309414,0.16338855,-0.059662644,0.29824883,0.08818836,-0.25052875,0.52404594,-0.10768226,1.0848857,-0.016792594,-0.3619285,0.15119551,0.40799934,0.064767495,-0.01329134,-0.39075246,0.71267086,0.43576685,-0.09316797,-0.14717868,-0.2578216,-0.040135484,0.11905714,-0.13295019,-0.26098987,-0.027669106,-0.76205856,-0.23891038,0.28744662,0.16332348,0.19657254,-0.01902897,-0.018408217,0.12936231,-0.04012892,0.22546461,-0.41757795,-0.10142905,0.28249028,0.21413949,0.096950844,0.08147964,-0.58290625,0.43391684,-0.6225944,0.019059297,-0.18258968,0.25295335,-0.3237079,-0.34299275,0.19764009,0.11715695,0.5185117,-0.14638022,-0.3340435,-0.2890884,0.61332947,0.1734101,0.1426904,0.40313628,-0.1504785,-0.019911302,-0.036594465,0.48192486,0.78183705,-0.41169208,-0.010138402,0.28287208,-0.31991693,-0.4804157,0.12816356,-0.48870704,0.22809432,0.14749135,-0.13268282,-0.47890833,0.3304095,0.3057182,0.15385808,-0.08273796,-0.6739505,-0.30162022,0.14729787,-0.36214522,-0.23305362,-0.35508063,0.12647113,0.47426298,-0.24586917,-0.19376789,0.1740358,0.3997517,-0.049470887,-0.5508012,0.026424063,-0.36190736,0.22325894,0.039392628,-0.386081,-0.43365282,-0.055123147,-0.38114598,0.26212925,0.18761604,-0.43763632,-0.038122036,-0.42487592,-0.19774716,1.0299853,-0.10619941,0.21850055,-0.36497226,-0.25515202,-0.77582455,-0.37307656,0.47589552,0.33114326,-0.16725738,-0.42720574,-0.01109335,0.00786133,-0.020895757,-0.07211428,-0.38790002,0.39133167,0.13063666,0.46319884,-0.009487675,-0.8376239,0.06692942,0.040306766,-0.23834261,-0.446105,0.5336,-0.029945333,0.9912479,0.040512268,0.09779506,0.20849006,-0.521067,-0.10127906,-0.1952798,-0.1405301,-0.60225207,0.097133115,470 +681,0.46494067,-0.31955165,-0.49006227,0.0074068583,-0.27775788,-0.13978687,0.027098903,0.36092678,0.30686748,-0.14702085,-0.17654663,-0.18210533,0.08032934,0.43788052,-0.07854676,-0.7004143,-0.12874462,-0.0034137666,-0.6080962,0.45479208,-0.543875,0.37339422,0.16227725,0.2820764,0.073135704,0.39920872,0.11830132,-0.11945543,-0.16772032,0.10323822,-0.34143606,0.1533613,-0.571454,-0.039720498,-0.037749466,-0.39030567,0.13063289,-0.47311223,-0.24909988,-0.6063393,0.13955584,-0.81281865,0.5486625,-0.01626319,-0.058334075,-0.024859034,0.039333366,0.33588105,-0.43497747,0.06367464,0.0946511,-0.19412503,0.069245785,-0.52050155,-0.10534281,-0.3531224,-0.48890203,-0.06328305,-0.6043472,-0.389686,-0.11477196,0.046717443,-0.45090505,-0.096065395,-0.111121945,0.28307343,-0.49938604,0.112065434,0.37904108,-0.122008614,0.12529041,-0.44965234,-0.039907806,-0.09571245,0.26760802,-0.13098882,-0.23257956,0.43051666,0.35872254,0.29925883,0.23291829,-0.3558971,-0.19497606,-0.07903829,0.098041624,0.50369006,-0.2514022,-0.45287913,-0.11316535,0.30780733,0.2809032,0.4479067,0.1583958,-0.04987316,-0.09208527,0.01860955,-0.20116733,0.40694508,0.5265518,-0.2781521,-0.42635548,0.35456488,0.5897447,0.14038357,-0.09021192,0.021805223,0.0013368806,-0.4240434,-0.22223602,0.060726427,-0.18805665,0.4200641,-0.057409365,0.1649778,0.871693,-0.37715986,0.06211189,0.101159625,-0.06276436,-0.17995217,-0.28473428,0.0066250013,0.1306889,-0.49336654,0.044793963,-0.18857387,0.82615334,0.298692,-0.7756427,0.38436604,-0.5722743,0.14542875,-0.12690543,0.6704035,0.63945144,0.5646906,0.3962136,0.74433583,-0.4269363,0.19839834,-0.025074009,-0.6575501,0.19077192,-0.29583046,-0.06539677,-0.5810428,0.07291005,0.006514258,-0.05778329,0.104431316,0.31173712,-0.66911435,0.011140933,0.19532332,0.85943544,-0.36814684,-0.15318862,0.6744401,0.960346,0.8398578,-0.056873064,1.1324717,0.29392093,-0.23706509,0.35526708,-0.5119106,-0.68739384,0.15880649,0.42835903,-0.5154568,0.4792691,0.05975804,-0.13987055,0.15263966,-0.10849651,-0.016942225,-0.058343694,0.34426963,0.07358846,-0.21160175,-0.40184563,-0.19303538,-0.25793526,-0.20872349,0.04340434,0.3300533,-0.32779124,0.4159185,-0.11456793,1.5591779,0.0452593,0.10811183,-0.059980307,0.5981748,0.31762716,-0.013713418,-0.057215407,0.62664986,0.2733196,0.13438052,-0.57490194,0.2587354,-0.30869082,-0.6050586,-0.07539826,-0.4264147,0.08380635,-0.07102936,-0.33787107,-0.09709096,-0.11804439,-0.23126748,0.4571519,-2.763409,-0.22777136,0.033063214,0.37295532,-0.3618288,-0.3456531,-0.005778203,-0.47685972,0.060651146,0.2548591,0.5487095,-0.8001559,0.47258684,0.42772028,-0.42800045,-0.2779391,-0.61978954,-0.05201306,-0.065631166,0.43279216,-0.057158526,0.01554497,0.022407008,-0.027606914,0.7283039,-0.10548806,0.032323018,0.42529356,0.47520873,0.12683572,0.5039386,0.031439956,0.7045087,-0.35562816,-0.14121386,0.23960015,-0.23427366,0.24858437,0.1297567,0.06315397,0.40223947,-0.440436,-1.0578719,-0.41126245,-0.17337526,0.9207331,-0.43537867,-0.20667814,0.21705683,-0.21413061,-0.13294917,-0.15144552,0.46048135,-0.04256963,0.11106999,-0.51973057,0.16003507,-0.083157375,0.008762281,0.0447992,0.05191162,-0.16117246,0.5914503,-0.024987984,0.61499727,0.118648894,0.2109113,-0.20564602,-0.32058594,0.11583759,0.76742077,0.2985055,0.015698595,-0.034470797,-0.28159672,0.004238931,-0.12120188,0.1299641,0.4654565,0.9017246,-0.05805128,0.14947869,0.39711654,-0.03825516,0.018987156,-0.07727747,-0.1669322,-0.00045599847,0.05207265,0.3561298,0.7469037,-0.41505656,0.6699118,-0.1315323,0.49794608,0.007382952,-0.6479673,0.60946137,0.62298656,-0.1334301,-0.019641988,0.48837274,0.39879587,-0.63338184,0.43250528,-0.60184634,-0.11672656,0.7665486,-0.20264374,-0.30550945,0.3920315,-0.075858116,0.11634838,-1.0163487,0.36834285,-0.18932328,-0.4630007,-0.36480346,-0.08991533,-3.772402,0.20184313,-0.3051852,-0.20137277,-0.20612353,0.041422166,0.058871888,-0.76067543,-0.46331736,0.1524988,0.29448837,0.5253377,-0.12620626,0.2395273,-0.19642814,-0.1639671,-0.20500205,0.12473573,-0.010977305,0.270576,-0.21561678,-0.3969019,-0.12665406,-0.057148658,-0.66486037,0.3647637,-0.54158264,-0.4825673,-0.07966623,-0.6905089,-0.2675919,0.7134644,-0.15735668,-0.17766438,-0.2508845,0.14652252,-0.23252736,0.264945,0.01388739,0.13606623,0.086273745,-0.09590785,0.221009,-0.3764773,0.43547016,0.046647456,0.702582,0.19543102,-0.17008239,0.07726049,0.5628784,0.62804514,-0.012623865,0.7631474,0.344464,-0.2745185,0.42773947,-0.41733748,-0.1817743,-0.67461115,-0.5483342,-0.14737283,-0.34874365,-0.5545838,0.020794878,-0.2774688,-0.8300692,0.6324182,0.0147717,0.43547535,-0.10851341,0.43322754,0.5434058,-0.22170442,-0.071638495,-0.15437225,-0.2667572,-0.57161605,-0.1284261,-0.61559683,-0.5223637,0.21413547,0.9351451,-0.37360904,0.07593788,-0.27746642,-0.16779591,-0.0027548005,-0.0015313992,0.04518091,0.4304569,0.20061725,-0.20562026,-0.6903636,0.45528156,0.017116722,-0.22301711,-0.46241555,0.016797602,0.5564662,-0.7736646,0.56098634,0.074158974,0.026998933,0.19815913,-0.47070315,-0.12725528,0.03616466,-0.1422273,0.24454077,0.14053503,-0.83981293,0.46374124,0.5790397,-0.5853501,-0.6114396,0.13294646,-0.018413447,-0.3029752,-0.14261031,0.22283602,0.15825449,-0.07866723,-0.18551356,0.18513666,-0.51194006,0.29308298,0.16942343,-0.09335538,0.26272538,0.07733512,-0.4479917,-0.75725543,0.2154105,-0.4546866,-0.1933377,0.3636352,0.09313411,0.00085401995,0.05457913,0.25697815,0.37310192,-0.42037576,0.047662996,0.16804324,-0.46389326,0.24963981,0.4670696,0.3698714,-0.43273354,0.4160511,0.20730904,-0.2696894,0.13985491,0.043653168,0.51441616,0.046603844,0.19348238,0.15079601,-0.30604637,0.40358955,0.7057794,0.09468404,0.55091864,0.16826397,0.04186368,0.42497462,0.15630467,0.06063927,0.20141408,-0.39938685,0.23140973,0.19280913,0.2239592,0.5917852,0.43611315,0.19997492,0.07444926,-0.20631708,-0.026302058,0.36646932,0.020882245,-1.1543972,0.30292556,0.34060642,0.8217445,0.36827552,0.19889584,-0.13336393,0.68069834,-0.18732038,0.06608394,0.39766663,-0.14423053,-0.6372779,0.7093783,-0.6561583,0.52756304,-0.09789773,-0.08782439,0.08131818,-0.0017786187,0.39551815,1.0044729,-0.24390186,-0.12551059,-0.025164586,-0.11379034,-0.016488846,-0.4497399,-0.053012677,-0.45217472,-0.2897592,0.6776995,0.22774476,0.27501184,-0.011870204,-0.050990764,0.12974904,-0.20117106,0.37404597,-0.06190942,0.15662855,0.113194376,-0.48600438,-0.32352698,0.6506927,-0.020465164,0.24284495,-0.26812473,-0.24779616,0.23914215,-0.22234176,-0.31675127,0.011283732,-0.5643297,0.30101398,-0.1521855,-0.6460504,0.48674452,-0.093409695,0.26131776,0.24253093,-0.00025002172,-0.27451527,0.28263676,0.17015935,0.8289718,-0.16614506,-0.41792154,-0.37527138,0.21877597,0.17909454,-0.3191921,0.22962059,-0.24389932,-0.036517628,-0.5203858,0.6762116,-0.031057596,-0.47395563,0.005651286,-0.1628935,-0.063223764,0.44178736,-0.077698246,-0.15809217,-0.24045658,-0.23690608,-0.4228999,-0.15733679,-0.22548944,0.27604848,0.29357406,-0.23214811,0.03673286,-0.17729561,0.11285948,0.6098432,-0.031899765,0.42227834,-0.030977456,0.0829441,-0.20798498,-0.0820866,0.31129682,0.3146412,0.04605814,0.14002748,-0.4350039,-0.2834223,-0.29214844,-0.08676065,-0.21439226,0.32901147,0.04304495,-0.36401013,0.921671,-0.0010338334,1.4267461,0.009748628,-0.2460363,0.100674465,0.56526625,-0.037134048,-0.0009891575,-0.39887968,1.1395621,0.6530036,-0.04013175,-0.13174325,-0.58845943,-0.2884085,0.3699621,-0.45659402,-0.16859634,0.1153053,-0.3931972,-0.4887316,0.25762904,0.07570772,0.27472454,0.024927814,0.029017888,0.17114703,0.06035894,0.11754001,-0.47130007,-0.35149992,0.15732907,0.18592356,-0.059031446,0.14127561,-0.5306161,0.41644585,-0.5957876,0.3962455,-0.2678662,0.18812507,-0.11102454,-0.46143392,0.13121751,0.032125615,0.38829824,-0.23755851,-0.3953605,-0.039249346,0.468301,-0.017905818,0.1723825,0.68744975,-0.28916293,0.03775505,-0.03293516,0.45277756,1.2636836,-0.22563502,-0.076828636,0.34546143,-0.45603555,-0.72232616,0.60420346,-0.16860925,-0.06239722,-0.25250813,-0.36601856,-0.51116693,0.27379873,0.23055166,0.16862835,0.062923744,-0.4290817,-0.2305994,0.2447621,-0.4790626,-0.23007125,-0.2921075,0.41706747,0.9764117,-0.3053518,-0.29431984,0.19582242,0.11633588,-0.24374372,-0.35438892,-0.15879491,-0.114061765,0.3656581,-0.01531981,-0.20403257,-0.004316963,0.21191421,-0.21320699,0.043974288,0.2194407,-0.3991719,0.2680379,-0.138495,-0.12365743,0.9478044,-0.28491196,-0.101488866,-0.7288901,-0.54219866,-0.8853419,-0.6030073,0.40979576,0.04735223,0.012436484,-0.56094486,0.065268755,0.07922184,-0.3995755,-0.06944268,-0.58096623,0.30927607,-0.01575267,0.2945865,-0.2703708,-0.9429463,0.18273929,0.22536659,0.008831634,-0.89155644,0.57690895,-0.2680799,0.84667075,0.1066814,-0.11506856,0.3028321,-0.35156476,-0.01331148,-0.46015352,-0.22799836,-0.66975623,0.041471504,479 +682,0.38969797,-0.29060543,-0.2663957,-0.11714233,-0.13108118,-0.07289187,-0.12515196,0.49373004,0.19919012,-0.28955537,-0.093853146,-0.23619193,0.050282534,0.24608923,-0.14966248,-0.6367692,-0.00320985,0.28522092,-0.270581,0.4734952,-0.5587191,0.20496355,-0.22184001,0.39116177,0.12840138,0.108650334,0.022894073,-0.16656138,-0.07391688,-0.27116483,-0.19154842,0.33272326,-0.56326187,-0.036964934,-0.04069362,-0.37722492,0.05092412,-0.4957345,-0.2905173,-0.8968311,0.27246246,-0.74483365,0.43637624,0.15690678,-0.24305765,0.416223,0.082771726,0.33975542,-0.25676265,-0.03203971,0.20537655,-0.123842,0.06636779,-0.19087921,-0.17720453,-0.24642505,-0.63064206,0.07048765,-0.22036567,-0.23919442,-0.26070815,0.20332097,-0.34668472,-0.11685333,-0.16280161,0.61614037,-0.39093626,0.12643759,0.0034058462,-0.1593323,0.2570468,-0.5612141,-0.2314991,-0.13873616,0.1589032,-0.12333167,-0.22146481,0.34574965,0.26304188,0.35150734,-0.11412993,-0.16886112,-0.38225392,-0.055584982,-0.015766643,0.50752074,-0.17463091,-0.5525947,-0.01657453,-0.011177695,0.03180044,0.14719924,0.16960427,-0.2238175,-0.21248291,0.11950926,-0.4037312,0.46074423,0.53092295,-0.36398178,-0.27102214,0.24752945,0.43957335,0.18760441,-0.11623517,-0.12983185,0.015051087,-0.6111193,-0.113290735,0.12518857,-0.3848602,0.534628,-0.30781123,0.1761241,0.6327734,-0.27774718,-0.06229382,0.04538822,0.15002576,0.09330916,-0.4066772,-0.48112524,0.33564758,-0.3030904,0.28387135,-0.33850747,0.91291326,0.21637847,-0.6245507,0.39686888,-0.6222864,0.19399871,-0.06158708,0.5701441,0.5552681,0.34661433,0.54240286,0.5553331,-0.3191128,-0.0029621674,-0.018887222,-0.23741971,0.044054627,-0.18611191,0.03861421,-0.34462547,-0.037932232,-0.09184202,-0.17104897,0.1155942,0.36307353,-0.49009305,0.060173567,0.14840303,0.7748218,-0.29971978,-0.03605555,0.6130259,0.9426437,1.1857355,0.1371089,0.9484594,0.26614702,-0.25756794,0.22487181,-0.28086954,-0.7177852,0.34570682,0.312149,-0.18825828,0.15765318,0.050151944,-0.04441841,0.34123978,-0.39460367,-0.09279744,-0.11617914,0.19028275,0.35401395,-0.071071856,-0.41226482,-0.44542724,-0.2586658,-0.0058756517,-0.004834819,0.2241332,-0.2720035,0.14984305,0.1232154,1.5246613,0.10882731,-0.022759655,0.13754065,0.5465782,0.10509081,-0.08265771,0.034993097,0.39013803,0.31367317,0.117795855,-0.6722657,0.10424492,-0.1766749,-0.40186608,-0.10587435,-0.17772517,0.0103564765,0.11315211,-0.45333093,-0.21532948,-0.21490589,-0.24735083,0.46882904,-2.498413,-0.09292466,0.07113424,0.40265882,-0.18865837,-0.43114412,-0.07990874,-0.5343421,0.44182867,0.2906455,0.4053485,-0.6931144,0.25961003,0.47890857,-0.47993743,-0.17156993,-0.72080386,-0.26198527,-0.09148069,0.18382852,-0.0028129725,0.13118914,-0.014330594,0.07065381,0.48617035,0.07968081,0.074919924,0.24258725,0.3790859,0.08153557,0.49538466,0.017760845,0.40980476,-0.18639752,-0.14299855,0.2070469,-0.5474497,0.12520656,0.02337017,0.015784632,0.49349028,-0.47134346,-0.8617743,-0.5661478,-0.25121778,1.2514383,-0.17007817,-0.39601284,0.27406687,-0.18296202,-0.17169641,-0.2721759,0.42770416,-0.24639456,-0.32940477,-0.7371876,0.02398667,-0.08917637,0.2938938,0.031533606,0.0017494765,-0.35686225,0.6868257,-0.036323544,0.3123861,0.33440492,0.070049375,-0.32253388,-0.6178952,-0.10168206,0.77632564,0.23397739,0.16241026,-0.26820067,-0.22235486,-0.14183912,0.038129702,0.02149564,0.43636507,0.6535951,-0.22056785,0.16492556,0.3043732,-0.014363931,-0.0033610738,-0.16423172,-0.26497933,-0.07922811,0.008703103,0.5628609,0.657091,-0.19286548,0.37230846,-0.028841317,0.1893163,-0.24690355,-0.26821387,0.39500067,1.3300744,-0.12202323,-0.2742434,0.566082,0.35431913,-0.36617997,0.3986712,-0.5030292,-0.18028353,0.4863854,-0.27207357,-0.41431966,0.13449016,-0.23648089,0.0014323466,-0.6214166,0.3958177,-0.08708931,-0.35460123,-0.6403735,-0.107139416,-3.2126613,0.13202275,-0.26144338,-0.21243364,-0.18286814,-0.081636354,0.06904316,-0.56108445,-0.6532069,0.19504881,0.17886904,0.635211,-0.088929646,0.11969283,-0.23458287,-0.30791405,-0.45593196,0.11626393,0.1420142,0.35560486,0.1714468,-0.42053515,0.0075652874,-0.03483508,-0.4084476,0.16155115,-0.5379554,-0.36552656,-0.097214855,-0.60076046,-0.46585524,0.64197856,-0.36413208,0.03986079,-0.17624341,-0.07517909,-0.11495188,0.45599616,0.13309576,0.12158251,-0.13257143,-0.02640659,0.025697025,-0.18500589,0.281587,0.0012934575,0.1631709,0.2574019,-0.031659234,0.096565045,0.41998944,0.7282584,-0.028078636,0.91309273,0.54559255,-0.05171961,0.28158367,-0.3412774,-0.1872789,-0.5444099,-0.3086866,0.012595003,-0.3650034,-0.3991877,0.017530737,-0.31130153,-0.73946345,0.52927995,-0.20829138,0.08117519,0.12632664,0.23832399,0.5496102,-0.043128755,0.049869753,0.05760139,-0.066623636,-0.49515718,-0.191806,-0.64260256,-0.27790648,0.29136306,0.88346016,-0.2233247,-0.023139307,0.02695813,-0.18887725,-0.11035749,0.13568428,-0.060574096,0.2418902,0.47783643,0.04741587,-0.65823257,0.32644004,0.05372761,-0.18142924,-0.5185365,0.19041386,0.7027038,-0.7321454,0.5935577,0.2353563,-0.047393158,-0.101906165,-0.45079672,-0.31121314,0.049580853,-0.26370722,0.3850096,0.15489075,-0.7421526,0.4253316,0.35800645,-0.18544064,-0.70537305,0.35356152,-0.005867399,-0.5061224,-0.106776275,0.37633684,0.074245736,0.18275896,-0.07933279,0.2518439,-0.5059045,-0.013690912,0.27584472,-0.110255666,0.113374956,-0.1675815,0.028687665,-0.7867546,0.05782682,-0.4280748,-0.31841245,0.13816,0.24059357,0.03618499,0.34380165,0.09771776,0.36225173,-0.104650006,0.1039375,-0.08799085,-0.081879325,0.2621768,0.4171589,0.4619482,-0.3446657,0.6039991,0.071035735,-0.094566345,-0.050225,-0.13421567,0.24246076,0.0470953,0.3726394,0.062233493,-0.29499513,0.38292143,0.72550994,0.2636645,0.5977366,-0.015489734,-0.009813162,0.30709144,0.13708515,0.22459039,-0.024705576,-0.48003948,0.06295141,-0.23979503,0.099396,0.5183478,0.04247709,0.27965254,-0.12270229,-0.19770098,0.015254388,0.30505493,-0.15167196,-1.0622377,0.37101644,0.1594189,0.84809846,0.6260608,-0.01151719,0.11257232,0.57847154,-0.28461555,0.052691616,0.31246153,0.12808622,-0.51550287,0.5752798,-0.6788698,0.33991468,-0.19223492,0.101688266,-0.13147381,0.05867881,0.40634376,0.5714092,-0.23547922,-0.037308518,-0.091356955,-0.21084279,0.19109347,-0.42489237,0.17483704,-0.50205415,-0.24352866,0.6237312,0.42322233,0.30134347,-0.3009154,0.10350033,0.10676826,-0.169216,0.15923288,0.0634754,-0.11589698,-0.0044707814,-0.69898605,-0.07245524,0.6609592,-0.18905717,0.08535076,-0.06886852,-0.14344479,0.18178664,-0.26903397,-0.16758479,-0.008076773,-0.6985257,-0.008129717,-0.14985725,-0.41639492,0.402243,-0.014703567,0.28889486,0.29198244,0.13828991,-0.3308573,0.22873066,0.34079537,0.541469,-0.117623165,-0.005319587,-0.3254966,0.23882093,0.03184732,-0.089802265,-0.025405837,-0.17701899,-0.08508389,-0.3394856,0.40364203,0.005046707,-0.29462305,-0.121092215,-0.08408345,-0.04656631,0.5901,-0.17358865,-0.01659197,-0.082700625,-0.30733484,-0.21780278,-0.22467087,-0.07797395,0.29058906,0.15380135,-0.16339114,-0.18893164,-0.23683871,-0.2239589,0.55341613,-0.08054121,0.34355816,0.30699342,0.1274973,-0.26828438,-0.26912636,-0.14034835,0.56407726,-0.003660147,-0.243799,-0.21945731,-0.42799,-0.2944527,0.1721135,-0.13560551,0.4158252,-0.020522278,-0.436632,0.7822161,0.054519698,1.1730683,-0.079865016,-0.41366702,0.09711027,0.3959565,0.02262673,0.014049315,-0.38195065,0.871509,0.38737854,-0.19502391,-0.08957524,-0.29522616,-0.018799443,0.29680303,-0.059897926,-0.082235664,0.044251904,-0.5443676,-0.30119544,0.2381354,0.19788414,0.108767636,-0.10102567,0.07668103,0.32426384,0.07859976,0.39811146,-0.24828616,-0.005082974,0.22702001,0.20604222,0.19722417,0.16104129,-0.31603268,0.308449,-0.2996963,0.15761563,-0.35635123,0.21460119,-0.06519757,-0.2093388,0.29970104,0.15822817,0.3204635,-0.27506813,-0.38518393,-0.26394218,0.41380072,0.02070001,0.22441237,0.39710525,-0.24847716,0.042621143,0.031754535,0.60825634,1.0103569,-0.061175868,-0.074004054,0.32502142,-0.4838463,-0.6558314,0.45209163,-0.18259433,-0.15593466,0.07857306,-0.121327244,-0.5976673,0.18807885,0.2492017,0.23706895,0.24608847,-0.5023367,-0.4109698,0.37764496,-0.41418082,-0.17429782,-0.2941267,0.16224486,0.6857822,-0.28189933,-0.39759383,-0.014582327,0.111139536,-0.23570636,-0.52275664,-0.08352829,-0.6087716,0.40190536,0.05323744,-0.30936903,-0.09738697,0.16344541,-0.53178287,-0.058239285,0.14555813,-0.33818755,0.179283,-0.27530444,-0.057557087,0.9356591,-0.19798425,0.2526424,-0.5714459,-0.56688225,-0.93941295,-0.2639699,0.6558907,0.09155154,0.063300565,-0.668529,0.048640914,0.03790241,-0.42433923,-0.070006326,-0.40370685,0.5083679,0.27193645,0.28531435,-0.059043936,-0.61101174,0.012906143,0.016461708,-0.19037768,-0.4875329,0.44673803,0.00886366,0.80846477,0.033554055,0.08550538,0.117894225,-0.31054962,0.1424885,-0.12837031,-0.2847175,-0.61555743,0.025539454,484 +683,0.36313927,-0.3790143,-0.3228584,-0.087354496,-0.22513638,0.011488942,0.051946037,0.57417923,0.02965292,-0.37962893,-0.117036216,-0.08115336,-0.09269293,0.13110767,-0.083935335,-0.05116925,-0.2353425,0.10060028,-0.37800202,0.45166126,-0.36132747,0.2026007,0.002332912,0.29830724,0.09339813,0.19648519,-0.07542475,0.090607695,0.088412285,-0.17004688,-0.035566453,0.14308298,-0.58230585,0.18481511,-0.085150704,-0.40431228,0.009824202,-0.4676058,-0.29898977,-0.62878704,0.31011838,-0.8948832,0.43484864,0.045194488,-0.38355556,0.4326014,-0.26601526,0.3321381,-0.15656915,-0.00905763,0.3346658,0.06940765,0.04582813,-0.07929906,0.13238026,-0.2652521,-0.4298324,-0.09737266,-0.10008236,-0.17750248,-0.1426892,0.008901209,-0.21966356,0.0591924,-0.1778536,0.28926912,-0.35988137,-0.0914892,0.18251003,-0.104559295,0.38831902,-0.6291099,-0.024014,-0.22891371,0.18255672,-0.25721562,-0.19897403,0.20348364,0.16496332,0.48351896,-0.22574756,-0.028042546,-0.23345691,0.066881515,-0.111884005,0.37735826,-0.114932746,-0.22754073,-0.079438105,-0.0761846,0.107602134,0.19695161,0.11380903,-0.24679068,-0.05495298,0.13817066,-0.10872274,0.116731375,0.35696432,-0.24487494,-0.25864604,0.2979077,0.58597624,0.12398122,-0.025168657,-0.2073218,0.0065666856,-0.50212365,-0.07608132,0.039383017,-0.41237456,0.55870557,-0.01861477,0.08262442,0.48874775,-0.15432034,-0.025684148,0.060587768,0.036362268,-0.022847231,-0.42457172,-0.39790598,0.3874759,-0.39539778,0.14592281,-0.09412743,0.44547632,0.048192043,-0.6142947,0.20764868,-0.4363876,0.0034841322,-0.081223965,0.38336557,0.5947734,0.42068562,0.10827499,0.67899776,-0.5771664,-0.018656552,-0.23717627,-0.09835135,0.16179278,-0.063566245,-0.029666662,-0.54892886,-0.10977602,0.045370873,-0.20824337,0.012129087,-0.12740459,-0.63397694,-0.0434732,0.3263003,0.5368005,-0.24977154,0.17702326,0.625926,1.0621989,0.73145556,0.20048968,1.1419836,0.0893154,-0.13534018,0.38574663,-0.16762103,-0.7645795,0.10418634,0.40453148,0.0566951,0.11787072,0.1449452,0.12288319,0.4089766,-0.338076,0.05000125,-0.26123816,0.30580574,0.1364751,-0.19541131,-0.4602576,-0.17813395,-0.05831911,0.3197926,-0.16434084,0.18771039,-0.26341113,-0.040043257,0.13783601,1.4780132,-0.17542961,0.11303055,0.22771071,0.25318652,0.08471819,-0.19840632,-0.10513782,0.25661546,0.4542657,0.11324986,-0.4754984,0.34434363,-0.11115393,-0.45865625,-0.103592284,-0.2097782,0.13779606,0.005444224,-0.41866487,-0.19911385,0.015755828,-0.29232317,0.5085939,-2.9080265,0.017121397,-0.2619824,0.34870645,-0.29151827,-0.37840587,-0.02777284,-0.26520893,0.34172827,0.4398732,0.43551058,-0.5729381,0.102674395,0.27038896,-0.60456795,0.02118349,-0.53700507,-0.22582571,0.022725467,0.27013785,0.29464203,-0.020322012,-0.004680835,0.050507147,0.33021492,0.09333165,0.073568694,0.32228562,0.22832632,0.0034740842,0.46532902,-0.043525193,0.36992285,-0.2469735,-0.16196299,0.27875865,-0.226147,0.099940434,0.073742256,0.20773202,0.2600709,-0.39974082,-0.7381572,-0.7330829,-0.22442132,1.3509681,0.00035155966,-0.4356531,0.28726995,-0.44495112,-0.36204025,-0.13322145,0.27554426,-0.08724281,-0.1353381,-0.84992826,-0.017594108,-0.2608158,0.38458696,0.029217703,-0.19659151,-0.6011032,0.67985713,-0.0083162375,0.5269203,0.52228075,0.14840676,-0.04548556,-0.3088613,-0.121991664,0.8014698,0.43331578,-0.007539742,-0.032293413,-0.015619239,-0.24492548,0.1479418,0.29242247,0.32938883,0.5861312,-0.054731123,0.040458057,0.04841653,-0.032912545,-0.023587713,-0.00013341125,-0.17542283,-0.11606209,-0.13823462,0.4795473,0.50695306,-0.09650918,0.23460276,-0.18294437,0.22407508,-0.057974156,-0.4891836,0.31113863,0.73872125,-0.14051008,-0.20870623,0.62304604,0.56858546,-0.099396706,0.30866617,-0.4919907,-0.07964575,0.2188185,-0.08175226,-0.4208712,0.15645303,-0.40270934,0.21475789,-0.7325615,0.18356206,-0.37719786,-0.44505337,-0.72869956,-0.21967578,-2.3674054,0.28417647,-0.14299065,-0.2250234,-0.07083417,-0.19409752,0.41526604,-0.6898114,-0.5639733,0.22332583,0.03001657,0.5411198,0.02688502,-0.16384634,-0.220377,-0.25665653,-0.13756418,0.17584588,0.08125635,0.12906107,0.078419924,-0.44010654,-0.21731088,0.0021722019,-0.40889886,0.033695534,-0.6921192,-0.4170037,-0.17184916,-0.4746068,-0.31636384,0.5899621,-0.22816303,-0.001985284,-0.13584429,0.038348787,-0.07157171,0.23182583,0.041211147,0.2540475,0.123902634,0.026333291,-0.039942123,-0.26265243,0.1331864,0.22473095,0.1319002,0.2852115,-0.36558276,0.08653314,0.47658074,0.6265805,-0.18123068,0.81294906,0.73746884,-0.16139036,0.20153467,-0.23770165,-0.17407902,-0.41997844,-0.3025308,-0.08726247,-0.39994043,-0.45162246,0.09157757,-0.21256098,-0.6494229,0.62660253,-0.09903869,0.031181565,0.23286365,0.13574171,0.43930838,-0.25944027,0.06538845,-0.08078074,-0.018017402,-0.43832833,-0.39719063,-0.4863621,-0.36394197,-0.1503115,1.1557103,-0.1548059,0.21099006,0.12679873,-0.3011492,0.16426131,-0.00854434,-0.07482021,0.08551932,0.42426914,-0.05412696,-0.51388484,0.36501583,0.0920138,-0.1007736,-0.5984625,0.19256212,0.55041796,-0.5205469,0.4250776,0.15049574,-0.02073233,-0.20878448,-0.48041776,-0.25336125,0.009374132,-0.3390637,0.27143443,0.18281955,-0.6394998,0.22584938,0.3814673,-0.04133181,-0.6153634,0.50096184,-0.054810926,-0.35855022,-0.12774624,0.27743915,0.0077424785,0.09825866,-0.0051273406,0.35752138,-0.35467723,0.19943771,0.4540376,-0.020799499,0.20937449,-0.21002898,0.1863816,-0.6581752,0.1537073,-0.27208254,-0.10337908,0.3725176,0.061281208,0.05544334,0.39067873,0.30812597,0.3521485,-0.3253236,0.14916097,-0.10580586,-0.3594399,0.32931238,0.43395218,0.4450228,-0.25230125,0.38523838,-0.0029188967,-0.13917267,-0.18951797,-0.05252729,0.5081757,-0.056854643,0.13664979,-0.32147372,-0.20356329,0.25210744,0.68560463,0.08116984,0.30294803,-0.19519332,-0.06175256,0.1631502,0.039476093,0.19323209,-0.01668069,-0.56702036,0.32189783,0.00076687336,0.21200754,0.2499191,0.07065757,0.1133423,-0.23144963,-0.25801405,-0.046264455,0.14040893,0.17513797,-1.0591261,0.40543252,0.078512624,0.74815327,0.5695,0.10217551,0.04764647,0.39084145,-0.10791151,0.1312557,0.23710534,-0.033622377,-0.4514825,0.37885353,-0.6047534,0.39019835,0.13431652,-0.09363193,0.089541435,-0.17445676,0.40422648,0.7374429,-0.24896969,0.024115054,-0.052978653,-0.26109427,0.045379758,-0.3002226,0.14846037,-0.5381918,-0.36833414,0.6105654,0.51789826,0.37175095,-0.25138667,-0.026060088,0.13801269,-0.06281039,0.26003247,-0.075529926,0.06392648,0.20002754,-0.5064768,-0.013182847,0.33571845,-0.07326106,-0.021802617,-0.15998012,-0.30037436,0.11178664,-0.06524981,-0.08895634,-0.083206646,-0.66366476,0.16853389,-0.47273877,-0.10245769,0.31040192,-0.091352805,0.1770563,-0.023468686,0.0137981875,-0.17809552,0.2899442,0.0015682166,0.7469968,-0.09848188,-0.0037004764,-0.3738941,0.13109101,-0.017959429,-0.07401551,0.080189295,-0.26422068,-0.01780758,-0.6162916,0.25084403,0.083995506,-0.18776067,0.18002954,-0.22824004,0.11097327,0.43083823,-0.11946849,-0.18617003,-0.10321966,-0.051178914,-0.0830298,-0.23908383,-0.16149785,0.22067785,0.10410622,0.22462471,-0.022058047,0.02866535,-0.17860079,0.43905464,0.38118806,0.380545,0.31895855,-0.009276867,-0.22129609,-0.038986776,0.07148771,0.41735741,-0.20497172,-0.12897891,-0.21705343,-0.5530174,-0.2481319,0.14927171,-0.11894928,0.54675364,0.062024813,-0.010251169,0.6472898,0.1402093,1.1164355,-0.0817378,-0.35853478,-0.07876827,0.51631093,-0.040831387,-0.13662848,-0.28081557,0.715165,0.5487021,0.024608195,-0.015394954,-0.04996672,-0.005427434,0.15088572,-0.012360986,0.07864283,-0.14348875,-0.8078851,-0.27184156,0.116728336,0.3094558,0.07983367,-0.040445626,0.08035676,0.23052186,-0.1076572,0.18216808,-0.23374034,-0.14201383,0.26577508,0.23577714,0.00943944,0.17914654,-0.43372032,0.32764578,-0.47833002,0.057080455,-0.28187594,0.10092178,-0.09334278,-0.099788494,0.040981732,-0.11882096,0.42635316,-0.37685326,-0.42715073,-0.20885023,0.54767954,0.12671229,0.13121937,0.5348618,-0.09869581,-0.0027724276,-0.045892827,0.3652814,0.78377926,-0.26034796,0.09461261,0.18071455,-0.3113192,-0.43055674,0.23278649,0.01996911,0.2012961,0.0669028,-0.1706199,-0.38954398,0.2862371,0.22921287,-0.113982886,-0.13547304,-0.552775,-0.21196094,0.17643268,-0.29998782,-0.0924528,-0.31932825,0.22873023,0.56380945,-0.18624696,-0.4529721,0.13260414,0.24812481,-0.24454728,-0.34216627,0.03443983,-0.5069277,0.17342679,-0.020170024,-0.48572657,-0.34545884,0.04347606,-0.41224292,-0.013743653,-0.002980489,-0.2444827,-0.050359707,-0.298937,0.044965487,0.91745543,-0.023446359,0.10107838,-0.4336174,-0.35666576,-0.7567203,-0.41547582,0.52644473,0.2076558,-0.029822316,-0.33462098,0.15431826,-0.20091532,0.058348384,-0.1931014,-0.06312703,0.51166,0.121445365,0.41453546,-0.20468657,-0.5865731,0.15420881,0.017482487,-0.007239741,-0.36866057,0.48174554,0.18727365,0.5732193,-0.098634325,0.16864474,0.03575317,-0.38311687,0.04120437,-0.098353535,-0.11148587,-0.67727,-0.036027428,489 +684,0.41129443,-0.15848988,-0.4143674,-0.37374204,-0.55595124,0.10497449,-0.25126848,0.07307747,0.217644,-0.59411,-0.051971808,-0.25898525,-0.039266504,0.24783534,-0.28095502,-0.8336814,-0.017509073,0.007286384,-0.49403983,0.5338863,-0.60000414,0.31099173,0.12576683,0.12469872,0.092047505,0.295469,0.4564037,-0.28796414,-0.12951055,-0.13519557,-0.066649966,-0.07266942,-0.8005556,0.42031315,-0.18231367,-0.35461947,0.2725218,-0.36302167,-0.2693352,-0.63710403,0.40300104,-0.90672356,0.51108354,-0.04651401,-0.26341248,0.12137138,0.2986181,0.18188198,-0.30810708,0.1477004,0.29541835,-0.23893283,-0.025051478,-0.122713804,-0.2781091,-0.73585045,-0.7059699,-0.024835011,-0.7627185,-0.2705064,-0.4053763,0.3491367,-0.3776091,-0.0721591,-0.28747368,0.45180097,-0.4927642,-0.038290773,0.06504896,-0.19327109,0.35837877,-0.45196757,-0.29707548,-0.18214224,0.12654355,-0.1325908,-0.010237102,0.3506089,0.17770712,0.49904612,0.21288148,-0.34787947,-0.18877046,-0.07919566,0.0905505,0.42817885,-0.031253356,-0.23207012,-0.23722951,-0.15689391,0.18251991,0.3756675,-0.013634159,-0.23686594,0.15494975,0.10433826,-0.42551547,0.4830566,0.47485656,-0.31856588,-0.35798916,0.21811257,0.25090504,-0.28344557,-0.1931229,0.14691065,-0.05796703,-0.44666788,-0.37313846,0.30926964,-0.25305197,0.5552851,-0.34871066,0.23829857,0.8593501,-0.26904207,0.0402349,-0.15066156,-0.10703052,-0.17669106,-0.18913959,-0.094238706,0.24420527,-0.7601173,-0.025674032,-0.34816912,0.87205887,0.07202061,-0.7102891,0.3081608,-0.5271884,0.013279488,-0.18743102,0.59872127,0.54454684,0.47171742,0.27361652,0.7849598,-0.610738,0.03043463,-0.034839507,-0.45016736,0.1803721,-0.28075105,0.2389557,-0.36109522,-0.05576063,0.13128206,0.24412958,-0.24724367,0.47027934,-0.40182698,0.020035084,0.16996704,0.78457963,-0.4176114,0.11543802,0.89040685,1.1433985,1.0150585,0.1141731,1.5407217,0.23575085,-0.24347752,0.1616714,-0.26052597,-0.48899093,0.17366208,0.3800361,0.24390925,0.12043785,0.14808936,0.14902352,0.3737848,-0.32370996,-0.0056351516,-0.18414123,0.27320334,-0.11599306,-0.055970564,-0.5417474,-0.23384163,0.21393606,0.044372484,0.14115268,0.32135704,-0.07591745,0.40820238,0.21818517,1.103016,0.059112504,0.1946454,0.008150715,0.5525911,0.17095663,0.121388994,0.09917518,0.1555971,0.16778935,0.23676579,-0.6168444,-0.10369077,-0.33543462,-0.4636998,-0.25798732,-0.42842403,-0.06819168,-0.38484985,-0.4671653,-0.24379233,-0.069874436,-0.45691353,0.3494446,-2.3296666,-0.36748812,-0.23933417,0.2877398,-0.15375766,-0.1709884,-0.0020360856,-0.60986894,0.5479459,0.48519304,0.49379143,-0.63329375,0.5196921,0.5707064,-0.4343509,-0.08330404,-0.6643992,-0.14135021,-0.33215138,0.47996983,0.096642256,-0.24878153,-0.39154866,0.1487201,0.70679134,0.13496414,0.12652904,-0.009609823,0.5335153,-0.05510632,0.7821507,0.2554832,0.41715506,-0.36159915,-0.06689734,0.25382644,-0.46759132,0.26459953,-0.045104206,0.20816357,0.4651977,-0.72163856,-0.9039241,-0.78364444,-0.7194456,1.0027636,-0.19951695,-0.40730646,0.31029508,0.058385007,-0.29636416,-0.037740346,0.42204666,-0.15568492,0.25859195,-0.68142384,0.12483089,-0.17765154,0.2475276,0.0144214425,0.14213352,-0.4758208,0.8586343,-0.16272023,0.38104203,0.25026646,0.18134008,-0.41798884,-0.43455428,0.22042133,0.9710782,0.4520861,0.13025111,-0.15758404,-0.29145575,-0.023419619,-0.20885287,0.118304975,0.5640234,0.78681886,-0.063256264,0.0069444273,0.47960335,-0.28321642,0.16957949,-0.062383812,-0.33931258,-0.14029573,0.16786374,0.5515493,0.5382021,-0.078052655,0.2845528,-0.1725777,0.38259146,-0.29360723,-0.49083328,0.43859193,0.91371316,0.016896416,-0.05591784,0.73634785,0.70635724,-0.32035553,0.5849424,-0.58437276,-0.51770806,0.53360564,-0.09947182,-0.6110047,-0.19308347,-0.49341008,0.02916034,-0.9570593,0.314625,-0.30350664,-0.510148,-0.46993384,-0.3025251,-4.275504,0.11838729,-0.31861037,-0.023168923,-0.19995227,-0.23119426,0.42333797,-0.58478075,-0.59701604,0.1447563,-0.09261887,0.63584656,0.14381282,0.3098475,-0.41918102,-0.15741822,-0.32110888,0.34450948,0.02123166,0.07189344,-0.060220126,-0.4930935,0.25884166,-0.39793873,-0.47555125,-0.025813993,-0.5406227,-0.61483777,-0.17257255,-0.61428607,-0.6478314,0.77975315,-0.15880075,-0.09821946,-0.24570605,-0.084065914,-0.20209654,0.34240496,0.11645221,0.1530135,0.07986251,0.009523036,-0.23977143,-0.41674307,0.40965682,0.10176338,0.37077004,0.49697983,-0.21156587,0.03626422,0.49691042,0.4736901,-0.0061809216,0.91837794,-0.029662771,-0.1565802,0.46382582,-0.2260452,-0.38791782,-0.98877215,-0.36804244,-0.18846975,-0.41074023,-0.49674562,0.0058142613,-0.37017742,-0.70675874,0.57533514,0.116275616,0.26494074,-0.25035098,0.19262213,0.19727764,-0.119238764,-0.10679478,-0.14744094,-0.20782903,-0.53803307,-0.3732259,-0.9110184,-0.5674207,-0.058468316,1.0383513,0.06553717,-0.2696595,0.18899877,-0.18565471,0.28897095,0.19338314,0.1800985,0.250251,0.51376164,0.0024959857,-0.8319665,0.65377,0.034454457,0.16657227,-0.309769,-0.057637766,0.8166532,-0.7352634,0.54959863,0.54552287,0.250473,0.061392527,-0.44400018,-0.2794154,-0.05851651,-0.2113529,0.47745907,0.24419369,-0.8630508,0.5690453,0.0965044,-0.18575433,-0.71775496,0.63755137,-0.076326326,-0.14637417,-0.0049450216,0.4351522,0.2557301,0.041050937,-0.14075647,0.26517546,-0.5903638,0.3123984,0.33495638,0.07250242,0.558218,-0.16267094,-0.2672879,-0.7705371,-0.31939203,-0.41326112,-0.16464692,0.056601517,-0.11491806,-0.17743233,0.46228868,0.076182365,0.3591664,-0.23996504,0.15169056,0.029782057,-0.2842329,0.23832592,0.50913167,0.42453733,-0.50793445,0.7178033,0.14356637,-0.025243236,-0.30021393,0.06416873,0.3240557,0.28274587,0.39601392,0.0669943,-0.17369369,0.37648866,0.878239,0.25174335,0.47016907,0.31761762,-0.17634198,0.5418425,0.14184622,0.08931299,0.08922701,-0.4020242,-0.008964995,-0.009951674,0.062401667,0.3304089,-0.03924689,0.36736393,-0.11787416,0.0164832,0.06358257,0.24523799,-0.28661156,-1.1293278,0.2598199,0.270779,0.7132625,0.7242771,-0.013666823,0.06342457,0.6466823,-0.42080593,-0.075018674,0.29699972,0.19348064,-0.24352632,0.7946224,-0.44225305,0.4878116,-0.2478637,0.037951723,-0.08459135,0.14958504,0.24736287,1.027883,-0.061499868,0.08563762,-0.015590246,-0.26167205,0.32330042,-0.28364357,0.155169,-0.38362768,-0.17074205,0.64227307,0.4368019,0.38374907,-0.106332794,-0.1432638,-0.107080184,-0.13073964,0.25919795,0.05491287,-0.18771124,0.005000756,-0.59392846,-0.34343937,0.65064746,0.0964781,0.3047833,0.20004624,-0.3944006,0.27316812,-0.08110364,-0.02473864,0.071828775,-0.71904916,0.004620944,-0.2002983,-0.3962069,0.39476126,-0.3510469,0.25053114,0.18083392,-0.00085901987,-0.33530667,-0.31171018,0.37713435,0.35937107,0.17627081,-0.25515667,-0.24053948,-0.36492532,0.30710715,-0.4596395,0.08648382,-0.22962166,0.20194183,-0.58735,0.55815643,-0.121039614,-0.261128,-0.10896769,-0.26654908,0.027259516,0.4166368,-0.088714086,-0.10751809,0.18317358,0.20275787,-0.24289285,-0.14174563,-0.31816804,0.2000651,-0.010608948,0.118014224,0.021871714,-0.16719583,0.0079773115,0.5806769,0.16719058,0.114315234,0.12498014,0.008002283,-0.4736736,-0.056991182,-0.115514114,0.45617726,-0.10159363,0.05247393,0.048028138,-0.30657345,-0.20941088,0.2673228,0.0006904625,0.0411485,0.111217864,-0.39694798,0.824865,0.10568835,1.1093171,0.15020221,-0.3648418,-0.028467132,0.54099494,-0.24866806,0.10654784,-0.24433917,1.1356746,0.5730324,-0.34962434,-0.24967399,-0.60833,0.009486764,0.10920587,-0.31485572,-0.20418002,-0.13723351,-0.73614544,-0.24809821,0.3254297,0.35405365,-0.060320225,0.06721484,0.05313963,0.09340528,0.2498276,0.61084497,-0.76187605,-0.15175936,0.33057636,0.19522108,0.19478963,0.23091283,-0.22798349,0.45321244,-0.7283975,0.28110364,-0.34860307,0.036188558,-0.23136605,-0.28731945,0.19305955,0.07770565,0.42504787,-0.11456287,-0.3795121,-0.312771,0.65908486,0.21543606,0.31360066,0.8057978,-0.18290922,0.022997783,0.06182084,0.4991945,1.3624952,-0.018086186,-0.017851435,0.27042624,-0.42644188,-0.6530565,0.17168196,-0.4906324,-0.097892776,0.033774886,-0.5450535,-0.27680895,0.2670603,0.19912966,0.09009935,0.17867658,-0.50979304,-0.17583561,0.5029286,-0.36048853,-0.40582913,-0.10647628,0.3400033,0.6738176,-0.34178492,0.0230052,-0.049173556,0.48792166,-0.41462347,-0.6632853,-0.09420129,-0.2833789,0.690199,0.027771382,-0.36174026,0.078498006,0.26036984,-0.45853233,0.101387225,0.49011448,-0.32950082,0.009867257,-0.34913096,-0.122141905,0.89978683,0.10864939,0.08842325,-0.6896906,-0.35487196,-0.8545262,-0.2803075,0.25749916,0.2687764,-0.013768609,-0.26721486,-0.049693234,-0.10550824,0.09014741,0.16518937,-0.67401975,0.31058624,0.1977183,0.61620295,0.06822778,-0.9715041,-0.057428323,0.3469928,-0.04353204,-0.4105236,0.6444453,-0.33054098,0.5534707,0.15089723,0.04296191,0.027888967,-0.5394801,0.46829054,-0.3381408,-0.17068546,-0.6822954,-0.07966575,510 +685,0.5090282,-0.22086236,-0.1665506,-0.18345739,-0.091481104,0.30191782,0.008856298,0.45796153,0.115140185,-0.53096974,-0.28341052,-0.27856442,0.008047393,0.23231767,-0.21256542,-0.3596721,-0.06265961,0.075123645,-0.34759548,0.38600698,-0.48405024,0.36185727,0.13925087,0.36527285,0.18144391,0.1320782,0.0711196,-0.09997299,-0.35294417,-0.37284645,-0.14425614,0.013982713,-0.5933162,0.11506268,-0.2237394,-0.46413234,0.041454196,-0.5028953,-0.34490368,-0.6859697,0.31958354,-0.96414304,0.4098581,0.044842705,-0.23830391,0.5359595,-0.10953549,0.08250843,-0.05054362,-0.0701188,0.15402198,-0.13441141,0.076185994,-0.26941806,-0.18124318,-0.3113414,-0.61461747,0.14530635,-0.28374562,-0.20624638,-0.21483469,0.12589866,-0.21955672,0.12496769,-0.15760276,0.42244714,-0.32199398,0.10551861,0.03240838,-0.17535421,0.13845469,-0.59336144,-0.24936946,-0.051044382,-0.0100435065,-0.15632263,-0.048492156,0.22887349,0.20772563,0.49864244,-0.07146365,-0.167343,-0.2953351,0.10237881,-0.053009365,0.5297992,-0.18184575,-0.39557326,-0.10576504,-0.13710085,0.23818551,0.22305125,0.24457666,-0.05038207,-0.023694621,0.022630692,-0.45727178,0.2673005,0.62570006,-0.36203206,-0.3079619,0.36372954,0.4091771,-0.10716748,-0.012599102,-0.29351348,0.03470011,-0.40852544,-0.032957725,0.080221064,-0.3454935,0.60466486,-0.14241053,0.30705217,0.5642615,-0.22644421,0.24289626,0.10620684,0.06530823,-0.038454525,-0.38122478,-0.2606761,0.22888257,-0.44234908,0.06471667,-0.37927598,0.9906116,0.027122539,-0.65457577,0.37255794,-0.4092421,0.095995866,-0.029187623,0.44406807,0.5127556,0.43051174,0.22026494,0.56765354,-0.49563602,-0.07514054,-0.18922976,-0.11367079,0.036693756,-0.19115232,0.27675596,-0.356377,-0.058662713,0.08009631,-0.12989074,-0.05593624,0.50110346,-0.514172,-0.02608792,0.2416504,0.86089396,-0.27561727,-0.08327504,0.8147539,1.1526225,0.81850106,-0.012757645,1.122485,0.3754505,-0.30329153,0.2653394,-0.29812703,-0.5790392,0.21928088,0.28975803,-0.04492935,0.07448563,0.13386424,-0.25637472,0.34885332,-0.412532,-0.072651215,-0.1755943,0.18074645,0.15877166,0.20565759,-0.39323857,-0.36158404,-0.080257066,-0.11206611,0.12403921,0.24908683,-0.4433706,0.2562831,0.034488324,1.5697007,-0.1028109,0.049585205,0.019275766,0.4445508,0.019905534,-0.08336648,0.057176314,0.32328576,0.18060364,-0.05921845,-0.57688475,0.08827932,-0.23590817,-0.5266829,-0.11210956,-0.16115347,-0.12751514,0.029478531,-0.48667255,-0.21732815,-0.101612315,-0.3052184,0.47577316,-2.6798844,-0.13248327,-0.04616133,0.4323911,-0.35306928,-0.5241991,0.13641001,-0.49466595,0.50610375,0.36034852,0.33893505,-0.66552216,0.22227438,0.32017934,-0.37718794,-0.18996103,-0.6645516,-0.038311005,-0.0029085898,0.21829261,0.014670551,-0.06794659,-0.14104894,-0.21744321,0.51923853,0.11826429,0.13081755,0.3427096,0.36606738,0.06076061,0.27259395,0.061336737,0.5408814,-0.32798645,-0.092950635,0.32233348,-0.5598147,0.1965263,-0.10201435,0.20987867,0.4391152,-0.41452137,-0.603853,-0.7402378,-0.3893631,1.2317464,-0.05949715,-0.5132321,0.15409479,-0.004778635,-0.16274577,-0.13608402,0.47039875,-0.09535318,-0.2121439,-0.63740724,0.026743952,-0.09859169,0.21476905,-0.05474948,0.08581615,-0.35060993,0.6892666,-0.104750596,0.29087916,0.2083537,0.2863154,-0.26674768,-0.2983058,0.066206984,0.95642483,0.37617937,0.14358251,-0.15871866,-0.19949849,-0.20069951,-0.12835674,0.11476935,0.36770236,0.67096716,0.07185933,0.026316883,0.28325447,-0.044565532,0.042226203,0.006891787,-0.36021334,-0.23752007,-0.08759376,0.58553195,0.52232987,-0.08821811,0.37504804,-0.2270325,0.28123558,-0.33435866,-0.40172255,0.4175406,0.84982044,-0.1273911,-0.13955787,0.61189806,0.4016169,-0.31707218,0.33529982,-0.6471087,-0.37511533,0.40782374,-0.18674384,-0.5344113,0.027667113,-0.18058927,0.033036944,-0.70474327,0.37063557,-0.16873035,-0.51146644,-0.6607038,-0.14760199,-2.9154904,0.112161525,-0.23547599,-0.21233885,0.02372215,-0.2854726,0.15973538,-0.5350288,-0.2835135,0.14889503,0.023313664,0.5814011,0.100347556,0.2571368,-0.24364045,-0.116342254,-0.46780857,0.11114231,0.09180014,0.25987688,-0.07184973,-0.30660778,0.10876687,-0.04374307,-0.40056944,0.22790645,-0.6458709,-0.60900444,-0.18430826,-0.45084348,-0.32280177,0.6718326,-0.31331035,0.059911814,-0.16033116,-0.020525614,-0.18639381,0.3255072,0.12644257,0.13659313,0.021222414,-0.20154308,-0.020308604,-0.49740526,0.43609384,0.18979551,0.25467426,0.57653284,-0.22272037,0.12219714,0.30201942,0.51996136,0.06951944,0.6908808,0.3206938,-0.12932402,0.3035955,-0.2758817,-0.16873305,-0.4960538,-0.24655375,0.029001493,-0.4235565,-0.2938989,0.02455058,-0.34777158,-0.69100124,0.41173348,-0.09383341,0.15457606,0.036496587,0.32351625,0.60945904,-0.08323741,-0.06246852,-0.057444178,0.044420555,-0.54102474,-0.45345122,-0.7097552,-0.42274886,0.15851013,0.9462331,0.05958645,-0.028026508,0.075908616,-0.069690116,0.008441438,-0.1224588,-0.13628556,-0.15447313,0.3857714,-0.0403632,-0.6631707,0.40491962,0.12339525,-0.14327544,-0.5672072,0.37588516,0.6104647,-0.5539173,0.44105765,0.4549162,0.19106224,-0.03384371,-0.37440616,-0.21525805,-0.08830496,-0.26205713,0.15544352,0.2487231,-0.7028108,0.33336988,0.33883625,-0.20534751,-0.8064594,0.29022712,-0.016884156,-0.31944278,-0.15078798,0.3391897,0.30060938,0.023891173,0.05172692,0.15609114,-0.6029524,0.21825822,0.27117437,0.010204684,0.52861464,-0.18552701,-0.18859409,-0.5690391,0.08148983,-0.46103895,-0.37295067,0.20896152,0.13946119,0.0024752824,0.53217435,0.31342414,0.37763232,-0.20816845,0.019540312,0.07357991,-0.17975913,0.38407356,0.3413417,0.53549874,-0.38336813,0.5175308,-0.013224478,-0.026706379,0.059043128,-0.04003279,0.39559463,0.17952879,0.2674357,0.048674718,-0.31561935,0.28918883,0.693108,0.21206306,0.4964522,0.115701444,-0.116257615,0.3395146,-0.014946048,0.10780425,-0.020046793,-0.6489351,-0.01240254,-0.13087688,0.1465185,0.32611263,0.043052875,0.31396213,-0.11790491,-0.18049566,0.033377673,0.110005505,-0.27902448,-1.0029057,0.20221901,0.0020095683,0.8591006,0.42847776,-0.13240066,-0.023770183,0.69253135,-0.22217844,0.10231086,0.3036601,0.07121905,-0.39025533,0.63220793,-0.6772015,0.35886568,-0.061299894,0.022731006,-0.14004233,0.013505837,0.27441487,0.59639823,-0.14016059,-0.032773994,-0.094705105,-0.4035821,0.11458015,-0.40340278,0.33988607,-0.5981077,-0.17646359,0.66599154,0.3556066,0.3422721,-0.1193782,-0.016068352,0.06964864,-0.115609735,0.15176445,0.21795759,-0.009411385,0.12662183,-0.6028083,-0.22589646,0.54189426,-0.082020134,0.28970343,-0.031105684,-0.19443053,0.11495567,-0.3511831,-0.24350199,0.10941499,-0.49947256,0.011764746,-0.41553497,-0.36145836,0.17630744,-0.044859327,0.13504794,0.094906,0.022982882,-0.24819133,0.036182184,0.49494055,0.710888,-0.0061496864,-0.1617588,-0.512345,0.14036368,0.08557523,-0.2576329,0.10053499,-0.026115537,-0.072893046,-0.65893805,0.46327966,-0.14022711,-0.18239322,0.11866072,-0.16166767,0.03204981,0.54515827,-0.04889113,0.06929596,0.005443449,-0.12760805,-0.29426846,0.016378578,-0.039957292,0.17225121,0.19792151,-0.06677212,-0.00080153346,-0.25998777,-0.17707282,0.37370205,0.07712478,0.31813204,0.4096709,-0.0019699885,-0.25852925,-0.18685181,-0.04502048,0.47358978,-0.051329337,-0.13006276,-0.22421314,-0.49205297,-0.22186916,0.24743302,-0.031675085,0.33511308,0.06826039,-0.25231877,0.80495113,-0.11300899,0.9842291,0.09447496,-0.3055981,-0.069739476,0.47733828,0.024311772,0.03405195,-0.38545662,1.0423543,0.47118548,-0.055075057,-0.12794045,-0.27329016,-0.054429896,0.32772392,-0.101417944,-0.1061916,-0.09074888,-0.76948094,-0.2966566,0.16732618,0.3294732,0.0030540503,0.007617068,0.1450813,0.38013855,0.01072421,0.56159395,-0.40655378,-0.20298482,0.3241033,0.3174372,0.069629885,0.2564004,-0.33274743,0.2924005,-0.6726065,0.048950203,-0.24745645,0.0860804,-0.045963354,-0.14970689,0.25591865,0.19933516,0.45695004,-0.31343126,-0.47817233,-0.22497079,0.432998,0.12896124,0.2135465,0.47522512,-0.12088561,-0.16862181,0.07264068,0.5683344,1.263173,-0.030877706,0.27846798,0.2694511,-0.4340747,-0.74317765,0.5775393,-0.02755912,0.07524833,-0.0051912987,-0.13014825,-0.46464485,0.2792958,0.2804744,-0.13851115,0.20776878,-0.5045795,-0.23545907,0.24422097,-0.36189026,-0.18296552,-0.25219458,0.21451408,0.579812,-0.20389539,-0.067288026,0.0068909023,0.535266,-0.35326612,-0.4598926,-0.10968847,-0.56744224,0.22092707,0.03806956,-0.35259807,-0.14498053,-0.04037582,-0.3039731,0.029144693,-0.065444194,-0.39126506,-0.003000186,-0.26680878,0.12615986,0.7507368,0.16687836,0.08592277,-0.72910726,-0.42049664,-0.7606444,-0.49051648,0.33546227,0.2141814,-0.03706921,-0.45164937,-0.10794093,-0.12829028,-0.14893979,-0.10404159,-0.49151626,0.41292784,0.25003645,0.40267426,-0.01736285,-0.5449308,0.13512342,0.19180062,-0.16712266,-0.5237251,0.36142874,-0.0632739,0.8137195,0.009968469,0.003201205,0.16279595,-0.45712692,0.087458804,-0.24131301,-0.3161956,-0.6475429,0.2119371,512 +686,0.5089107,-0.39344767,-0.5765568,-0.19216156,-0.19188073,0.14993174,-0.1536203,0.5347287,0.18393236,-0.59513706,-0.16576502,-0.2898908,0.03856995,0.030010305,-0.13817057,-0.46506107,-0.19612151,0.29849693,-0.48264763,0.33165792,-0.37161726,0.20055962,-0.08166873,0.512941,0.19115084,0.16720922,-0.080114685,0.0005579178,-0.14535531,-0.2107365,0.12399158,0.2710354,-0.6597372,0.08421034,-0.16516337,-0.52486396,-0.07744459,-0.55495834,-0.32554385,-0.8407136,0.45544258,-1.0964067,0.81780946,0.03233697,-0.42452848,0.28202406,0.12508914,0.38469303,-0.13325946,0.15201792,0.34039873,-0.14285183,-0.11721479,-0.070217066,-0.29668862,-0.32741964,-0.59938174,0.024136182,-0.4114529,-0.12301071,-0.16479929,0.18172683,-0.22732902,0.23105961,-0.16877405,0.41109565,-0.4662588,0.024073623,0.25661173,-0.12416531,0.50293756,-0.61793685,-0.13728882,-0.13522622,0.27878523,-0.31296903,-0.2892869,0.048597332,0.2867858,0.622915,0.004778899,-0.22949699,-0.16343786,0.03811519,-0.050152995,0.4933947,-0.28800362,-0.3272039,-0.2254466,-0.20725808,0.30929,0.30047053,0.23095028,-0.23665205,0.008649936,0.081395626,-0.22908543,0.34237304,0.5198564,-0.35814828,-0.10590102,0.32124227,0.69395745,0.061083134,-0.037819743,0.20423014,0.078851685,-0.52417153,-0.24770865,0.0639207,-0.31311035,0.38861826,-0.16264637,0.15685333,0.55000556,-0.21140242,0.07727383,-0.037560828,-0.013914695,-0.1251801,-0.50634253,-0.60982317,0.38437095,-0.4191613,0.26328075,-0.18319392,0.6940431,0.14624292,-0.6550807,0.3305171,-0.6157005,0.12561457,-0.0819013,0.55189264,0.6195596,0.33563244,0.4354317,0.74746776,-0.31237662,-0.040676557,-0.06572633,-0.011434183,-0.043601613,-0.24232548,0.123422936,-0.4701158,0.08202894,-0.14905931,-0.18924618,-0.029178904,0.71306545,-0.6783358,-0.054378632,0.24870385,0.8322964,-0.35436395,0.0057142056,0.88485074,1.0504963,0.99527526,0.096627235,1.4578427,0.39140967,-0.3527755,0.124912016,-0.14397441,-0.79745066,0.3089562,0.46522048,-0.04999379,0.29171273,0.28402883,-0.15619867,0.6005016,-0.55395687,0.050514594,-0.21495351,-0.044764895,0.04137856,0.003704722,-0.42715743,-0.08433371,-0.03396917,0.022100508,0.14623931,0.07356327,-0.2755408,0.23935558,0.13268913,1.7826797,-0.33779538,0.06408321,0.15354799,0.37718704,0.10803375,-0.16983272,-0.11509096,0.34437877,0.41433626,-0.0030364578,-0.693603,0.12697843,-0.1588636,-0.35239884,-0.28602722,-0.13950044,-0.14099225,-0.09212438,-0.3770673,-0.2771072,-0.23925963,-0.43032667,0.2385673,-2.336477,-0.19935966,-0.18075721,0.4149771,-0.21998169,-0.5032942,-0.08116714,-0.37234285,0.4275878,0.3014855,0.27785316,-0.64945424,0.5678327,0.5010115,-0.47672096,-0.06005567,-0.7484846,-0.21989308,-0.07498348,0.17513315,-0.07508887,-0.16092221,-0.11434555,0.16370961,0.40494892,0.15124032,0.18578163,0.34035423,0.58413404,0.047570292,0.68681526,0.10939272,0.6296756,-0.22097088,-0.23773256,0.45019862,-0.5138396,0.07303015,-0.011639962,0.09605576,0.37876037,-0.6592388,-0.8210614,-0.96652955,-0.45970517,1.1237733,-0.19808133,-0.51588976,0.19871174,-0.49511582,-0.42194477,-0.09189921,0.5932232,-0.08331703,-0.070276335,-0.98574644,-0.15856196,-0.108027786,0.2777979,-0.0056747934,0.035067447,-0.6060516,0.78409237,-0.29957053,0.48814037,0.42740667,0.15358527,-0.15962079,-0.56291664,-0.10626336,1.0849373,0.38032863,0.18593472,-0.17179108,-0.09233824,-0.33581975,0.035519425,0.012604734,0.5268613,0.8260755,-0.038610756,0.12484799,0.33973792,-0.020583896,0.02744523,-0.16504908,-0.42014816,-0.28381985,0.023091912,0.6332041,0.42180306,-0.15926565,0.37803885,-0.2286134,0.4146636,-0.2212076,-0.331243,0.2622506,1.1601914,-0.20509328,-0.36308286,0.90836835,0.35114703,-0.40059775,0.4344517,-0.7731677,-0.15805252,0.30129626,-0.14800496,-0.6043094,0.2718881,-0.3269682,0.08463674,-1.0687928,0.34691185,-0.25152352,-0.5266322,-0.54901236,-0.20288672,-3.020621,0.3213744,-0.2668483,-0.12818597,-0.106886946,-0.30361474,0.34712622,-0.5058974,-0.75012237,0.19579676,-0.036790144,0.6490638,-0.040956557,0.1374719,-0.23533106,-0.27867505,-0.35815552,0.10463948,0.2844055,0.36884293,-0.12453142,-0.45758873,0.02966072,0.015563871,-0.32841095,-0.02529678,-0.74038386,-0.49856326,-0.1286963,-0.70336497,-0.22267172,0.6130468,-0.26090837,0.022557782,-0.3654273,-0.018549332,-0.19363293,0.37292543,0.025951143,0.29456815,0.018937739,-0.17810036,-0.13616621,-0.22530922,0.2074271,0.03287953,0.037112154,0.12709525,-0.31660464,0.20287775,0.30729574,0.63752747,-0.08707281,0.9649836,0.553649,-0.12911291,0.229731,-0.23635975,-0.23949239,-0.5716058,-0.2924171,0.034217633,-0.53192496,-0.48855942,-0.0552224,-0.39621335,-0.82754546,0.6516332,-0.12380001,0.1178525,0.17503211,0.4881001,0.5535377,-0.10775685,-0.04666078,-0.09573459,-0.18438706,-0.52503365,-0.292476,-0.5551587,-0.41596112,0.16124545,1.1183442,-0.14825958,0.20485717,0.39664122,-0.21235721,0.041552186,0.25133798,-0.08338798,0.09935614,0.80054486,-0.10403914,-0.648812,0.1970829,-0.04926946,-0.23823167,-0.64977425,0.28620613,0.7894811,-0.74416,0.7878376,0.42704958,0.064101085,-0.3406131,-0.59929615,-0.17643642,-0.06459987,-0.3353315,0.51270306,0.3016453,-0.76644427,0.38272065,0.42523214,-0.0662068,-0.91249454,0.5545272,-0.12760904,-0.28591898,0.0131222885,0.50510263,-0.010619927,0.046493657,-0.1326583,0.26847035,-0.34086528,0.22893293,0.22476842,-0.20094512,0.10400295,-0.20590773,-0.061146118,-0.77024585,0.058786336,-0.69157666,-0.28226966,0.24610311,-0.09775675,0.056407996,0.46130422,0.14130937,0.53386503,-0.27243155,0.087227836,-0.108306736,-0.37749034,0.2369971,0.49415764,0.3627761,-0.5202841,0.5961564,-0.11030127,-0.1741883,-0.27666503,0.02442597,0.5264069,-0.08129314,0.38943213,-0.124988645,-0.12384435,0.3904333,0.8693852,0.25088957,0.5860098,0.16375622,0.0155448,0.22634667,0.21126343,0.27693835,-0.1671709,-0.6722879,0.05377352,-0.085508436,0.16368912,0.4357791,0.14360894,0.36218676,-0.2135301,-0.33294266,-0.044382695,0.11713365,-0.17760497,-1.0536427,0.23369122,0.0006712744,0.8218479,0.5268312,-0.04910136,0.13048752,0.5302378,-0.11602742,0.016817214,0.3016555,0.06155346,-0.36254817,0.5106675,-0.69639164,0.28361037,-0.17531368,0.07383268,-0.07812376,-0.034425642,0.5778641,0.817097,-0.13553038,0.03396103,-0.111176364,-0.04101452,0.2553114,-0.4997698,-0.010342703,-0.5853218,-0.2663429,0.76062214,0.5977555,0.5181391,-0.30566242,-0.041530803,0.11190552,-0.14764515,0.18461488,0.14165017,-0.033889778,-0.016327139,-0.68698657,-0.2769562,0.4875938,0.077381134,0.062082887,0.007941232,-0.49491236,0.25355676,-0.16596912,0.042714544,0.033236604,-0.81674266,-0.16726646,-0.41374123,-0.45950222,0.3046196,0.09310095,0.0680724,0.2127277,0.062453922,-0.26418453,0.2540108,0.050155144,0.8459063,0.18442413,-0.04843923,-0.36106876,0.19149238,0.13759181,-0.292436,-0.0012111939,-0.27069774,0.2199436,-0.7547355,0.5583127,0.100667715,-0.53265643,0.4167768,-0.15124597,-0.03416568,0.6117334,-0.22588918,-0.110412724,0.2522897,-0.29229015,-0.2465163,-0.28827363,-0.11313323,0.19453672,0.03995103,0.14240903,-0.09331381,-0.034964424,-0.1952152,0.6851034,0.09188839,0.43883345,0.6730236,0.0693216,-0.28916198,-0.07975078,0.10156584,0.57190377,-0.2056924,-0.3481354,-0.13321802,-0.6969203,-0.12693748,0.4071492,-0.08828121,0.43723387,0.08369497,-0.27966845,0.9984944,0.21954864,1.1060665,-0.097901374,-0.39935333,-0.113594376,0.68320805,0.024079856,-0.17015566,-0.43444008,0.9124612,0.51324284,-0.07701351,-0.0051091816,-0.3585205,-0.20711364,0.2277348,-0.15176679,-0.0009410748,-0.13253045,-0.6614368,-0.29680032,0.17721128,0.36300808,0.15347286,-0.08330417,0.5327788,0.3651689,-0.23813747,0.30484784,-0.5064742,-0.17829615,0.37186712,0.20988688,-0.024714649,0.04430948,-0.3233064,0.2975493,-0.5817659,0.0007065764,-0.37589586,0.07601185,-0.065044515,-0.26440424,0.12089015,-0.03144056,0.3345172,-0.47809204,-0.13523847,-0.12188936,0.44759244,0.29947582,0.16565312,0.6154668,-0.2759517,0.12281758,0.05846649,0.59367526,1.1200734,-0.08806522,0.1201049,0.27471843,-0.42249808,-0.6376308,0.44931918,-0.30418384,0.015517216,0.22711664,-0.25815076,-0.42758548,0.31855875,0.330732,-0.19024572,0.10485225,-0.6803824,-0.22875382,0.31297824,-0.21016847,-0.033455428,-0.23172417,0.1529097,0.7588611,-0.1642134,-0.24502207,-0.0099544665,0.38446712,-0.3432711,-0.56055975,-0.061538585,-0.5665242,0.40786332,-0.011631274,-0.3625929,-0.06086529,-0.019472687,-0.40556434,0.050743677,0.21868812,-0.36088532,0.11853178,-0.44526705,-0.11932572,0.9568609,-0.006469543,0.05161116,-0.5655903,-0.45600563,-1.0328988,-0.2951635,0.2696185,0.16409718,0.111264475,-0.45234755,0.082202025,-0.2232962,-0.22625971,0.22266576,-0.3463217,0.45991796,0.21092854,0.74549675,-0.23284842,-0.7404269,0.111493066,0.052715864,-0.29631287,-0.5065703,0.63215,0.14543712,0.8928741,0.05775594,0.03925946,0.10943564,-0.5523168,0.0381254,-0.1274517,-0.17857677,-0.87056553,-0.14672865,513 +687,0.20914426,-0.2966808,-0.33269888,-0.14282367,-0.32173258,0.13666882,-0.21478432,0.39558583,0.14498304,-0.30024332,-0.14002983,-0.09113794,-0.06123455,0.6829671,-0.31839576,-0.63398975,-0.1456251,0.22475931,-0.5894757,0.56309074,-0.3501446,0.33295536,0.20286602,0.29792878,0.21740381,0.10886444,0.391038,-0.010187085,0.018324045,-0.34911522,-0.13558626,0.23314582,-0.42502764,0.42229387,-0.11213784,-0.35749468,0.108089,-0.26423752,-0.4581055,-0.583723,0.35025305,-0.8663488,0.44301206,-0.08500174,-0.36046442,0.34885687,0.35771242,0.067998566,-0.1055826,-0.15675908,0.109485775,-0.08857291,-0.056643836,-0.24375024,-0.22033776,-0.5511415,-0.5263627,0.06477931,-0.636056,-0.22670746,-0.23246266,0.15308496,-0.27832076,0.027620513,0.03470486,0.42672998,-0.32637638,-0.17345873,0.20526996,-0.19047403,0.22914937,-0.652284,-0.02304084,-0.09897761,0.09752226,0.056642573,-0.03422919,0.37789148,0.07790943,0.49039206,0.028769255,-0.29664937,-0.32827213,-0.18490373,0.11398341,0.428868,-0.23770277,-0.42608532,-0.19304968,0.20408522,0.48019505,0.29770976,0.023965565,-0.16608554,0.0361855,-0.067014925,-0.33160892,0.48210484,0.4405002,-0.46881816,-0.30836165,0.5332937,0.45472643,0.1402379,-0.096455105,-0.049243577,-0.009830335,-0.396483,-0.14315093,0.11143159,-0.33235282,0.36207902,-0.2206135,0.15395644,0.59469855,-0.19913626,0.19937691,0.06711074,0.0794493,-0.20726147,-0.20084332,-0.35765022,0.19333234,-0.5322577,-0.025966447,-0.075238146,0.8757487,0.023277182,-0.51418835,0.307844,-0.42216295,0.17868121,-0.20213117,0.582401,0.6962328,0.47754493,0.18767193,0.8496408,-0.3873661,0.05809862,-0.23420347,-0.2118107,0.20421559,-0.23789419,-0.17069355,-0.5197923,0.0684988,-0.0018850679,0.03114936,0.024439834,0.36254984,-0.55889916,-0.11230003,0.25947806,0.85468066,-0.2612329,-0.0066597094,0.57225513,1.2154223,0.9186564,-0.06068974,0.9937626,0.26511556,-0.2299123,0.13757212,-0.10043741,-0.6739184,0.24792796,0.66126895,-0.04205238,0.36050302,-0.13745053,0.06252286,0.2072163,-0.48203418,-0.17776185,-0.31051847,0.38440564,0.071680665,0.13632375,-0.5100803,-0.2562861,0.0696406,0.0022828246,0.12370357,0.3150589,-0.3128019,0.36486083,0.11460929,1.1286107,-0.17049439,0.15592924,0.079958186,0.51328385,0.21866685,-0.028407652,0.050899662,0.27987587,0.24933812,0.047100488,-0.7715095,0.16630608,-0.35320103,-0.49333864,-0.18781216,-0.39904335,-0.047931187,0.087216586,-0.19447653,-0.25013313,-0.030095844,-0.25582185,0.42020765,-2.6076484,-0.21657711,-0.2752328,0.2218305,-0.39577696,-0.24995096,-0.061316784,-0.47835767,0.5376975,0.33035213,0.53791875,-0.43898508,0.21263605,0.39720413,-0.57022166,-0.19356629,-0.5157901,0.100848354,-0.10086402,0.54445213,-0.002178465,-0.33170018,-0.18543823,0.12687762,0.58200496,0.16101912,0.1868102,0.35473076,0.3554116,-0.076734655,0.33555,-0.1222464,0.50743806,-0.5175562,-0.18984734,0.45933583,-0.13368428,0.33017766,-0.28272593,0.18584211,0.4785287,-0.4384989,-0.7487351,-0.6152555,-0.34462655,1.4001069,-0.4345282,-0.6141025,0.149607,-0.009182717,-0.10868514,-0.068321355,0.40426382,-0.102833144,-0.030666938,-0.705749,0.19262768,-0.0777537,0.31015733,0.0807689,-0.08981383,-0.32571566,0.6609515,-0.037258957,0.37277773,0.03946698,0.15607467,-0.39213943,-0.4873403,0.0009617828,0.9551556,0.512778,0.033522654,-0.09932076,-0.21898064,-0.25168324,-0.12634173,0.07625497,0.444963,0.59974617,-0.045488592,-0.021061026,0.2697325,-0.22062953,0.10919845,-0.10508662,-0.3615143,-0.15692714,0.13128196,0.6594066,0.44299638,0.13065356,0.41241938,0.027912725,0.19194862,-0.17554869,-0.5326245,0.5692502,0.79058164,-0.20651037,-0.24560587,0.8684081,0.5998984,-0.1729645,0.5343025,-0.67829067,-0.6265049,0.37637514,-0.22495839,-0.43982103,-0.00095836935,-0.29778162,-0.013912916,-0.8230671,0.1387314,-0.35663545,-0.3425137,-0.5608272,-0.18460788,-2.79047,0.17944512,-0.2875516,-0.12791584,-0.21187328,-0.07018172,0.44549677,-0.5078952,-0.47971126,0.13113488,0.17345564,0.6774155,0.08185654,0.15490547,-0.25977004,-0.23530212,-0.23458283,0.25769645,0.14529869,0.2568897,-0.07574692,-0.4754545,0.13345392,-0.10420943,-0.29806656,0.10054033,-0.5858222,-0.3046102,-0.3651058,-0.5132132,-0.14704572,0.57686436,-0.4591196,-0.00041532976,-0.19230388,0.13224392,0.05878128,-0.030293612,0.07488374,0.114389606,0.14360037,-0.16593273,-0.013349497,-0.5049635,0.49524164,0.10327336,0.3396716,0.26843616,-0.10938956,0.07618152,0.6477843,0.5289631,-0.06735211,0.8945163,0.4936001,-0.061985947,0.2693432,-0.07147597,-0.24393742,-0.50332874,-0.312331,-0.059347685,-0.35396928,-0.46518084,-0.09154646,-0.33491406,-0.88495076,0.663318,0.07237941,0.39022684,-0.16522905,0.31441832,0.40336508,-0.30182403,0.04868259,0.0285338,-0.20468187,-0.51476014,-0.3159156,-0.59639525,-0.27565655,0.13287893,0.98174596,-0.20283943,-0.13332303,0.057390332,-0.28159618,-0.06096476,-0.086413614,0.04209064,0.26888517,0.4139444,0.12628414,-0.61612827,0.551275,0.01902296,0.1520238,-0.44391394,0.24240604,0.6023708,-0.6266104,0.17731652,0.3965092,0.12204779,-0.28451893,-0.45523232,-0.039425492,0.11081584,-0.18585083,0.38200107,0.26466638,-0.8144301,0.4711948,0.17106383,-0.36355653,-0.80962366,0.4268475,-0.054248966,-0.086969584,-0.0406655,0.22709924,0.28715917,0.0734026,-0.2357886,0.121563874,-0.36100706,0.27340433,0.060291633,-0.013864934,0.51024437,-0.4001012,-0.2464666,-0.7800921,0.006219671,-0.49845728,-0.37527677,0.36316285,-0.015079856,-0.104817934,0.27933642,-0.017274048,0.49563506,-0.13699482,0.17253953,-0.095069356,-0.24738759,0.57441306,0.53276783,0.44623283,-0.45933002,0.68111986,0.012655214,-0.12163505,-0.30543068,0.043717053,0.44309947,0.16852483,0.31893027,-0.084107846,-0.13513896,0.40773186,0.7552666,0.082645655,0.19981429,0.043627374,-0.06471397,0.18708041,-0.10643235,-0.010685361,-0.033288278,-0.61313117,-0.16616474,-0.2803547,0.063659236,0.5005222,0.14330848,0.3547142,-0.019696318,-0.12540573,0.102884136,-0.026339961,-0.04383364,-1.0308099,0.33491677,0.09826236,0.50711477,0.48029238,0.015107155,-0.1192528,0.8550714,-0.30582154,-0.024242131,0.45071,0.06553417,-0.3440278,0.6451366,-0.754227,0.53896904,-0.103176005,-0.0058021443,0.011229918,0.22620502,0.3578817,0.969335,-0.097141065,0.09014789,-0.0011437627,-0.3610482,0.17191985,-0.18412232,0.2179447,-0.47559687,-0.34266183,0.5577771,0.26997682,0.38150597,-0.063853495,-0.07960569,0.044801194,-0.10983519,0.2024084,-0.1353356,-0.030741084,-0.2015091,-0.5228174,-0.113842875,0.44175285,0.4341653,0.31695002,-0.07649703,-0.097108014,0.20929143,-0.2413749,-0.11667434,0.06173659,-0.676814,-0.0778072,-0.1856948,-0.43990687,0.38334146,-0.4929276,0.19878064,0.054258373,-0.002121091,-0.2212454,0.11651094,0.2358741,0.7376514,0.08801566,-0.29700235,-0.24800006,-0.15972677,-0.0032469905,-0.23374209,0.010496552,-0.27262232,-0.036382165,-0.78856623,0.54919297,-0.31428045,-0.24873558,0.21141984,-0.26430607,0.044365086,0.46150124,0.025514685,-0.059190173,-0.0643799,-0.31889486,-0.37481207,-0.34268254,-0.14555596,0.09646141,0.049155787,0.086232826,-0.2644707,-0.22207865,-0.19299085,0.4003778,-0.1736035,0.15802996,0.3051148,0.18439847,-0.28920227,0.026091466,0.19475302,0.51438576,0.0071677472,0.11640836,-0.061471183,-0.3152261,-0.35225356,0.12309929,-0.10158171,0.310521,0.010323396,-0.40056208,0.6952354,-0.115515046,1.1488879,0.01278545,-0.3490763,0.09177804,0.4927338,0.0076082144,0.002822711,-0.23995084,0.8619341,0.56718665,0.05068224,-0.18684891,-0.5235741,-0.11401717,0.2700078,-0.26899827,-0.13903579,-0.07265445,-0.5129868,-0.42314318,0.3064968,0.30507347,0.032432124,-0.046773467,0.035284467,0.0163787,0.13574564,0.545283,-0.37902626,-0.05240857,0.33077937,0.25176367,-0.14287871,0.18039131,-0.413657,0.4787172,-0.66628945,0.15257701,-0.42593902,0.057795938,-0.2824197,-0.24292047,0.26604122,0.08593733,0.45226428,-0.25976565,-0.513015,-0.11581536,0.5911359,0.1173492,0.0983533,0.6507995,-0.2985996,0.04019652,-0.08257668,0.54038817,1.0775695,-0.3278697,-0.039363924,0.042598527,-0.46702322,-0.77010375,0.45014748,-0.59336543,0.11688961,0.10098373,-0.37511688,-0.3024618,0.3368362,0.20797107,0.09623904,0.072258204,-0.47297356,-0.12186089,0.14696303,-0.2669632,-0.20958194,-0.2712445,0.18619925,0.42418486,-0.29704946,-0.3579515,0.15167323,0.5691419,-0.19059053,-0.7001979,-0.025040992,-0.34059808,0.24824524,0.09965229,-0.24924126,-0.009547105,0.07054683,-0.47602007,0.0370653,0.10055256,-0.34144512,-0.036276277,-0.17374004,0.2273732,0.5866172,-0.12820962,0.030281644,-0.6450559,-0.43179065,-0.89153916,-0.39360598,0.4233025,0.22472146,0.16991727,-0.5169354,0.068864055,-0.22772066,0.03616725,-0.060840316,-0.4780207,0.32041022,0.09562476,0.53147066,-0.08859314,-0.74618345,0.20057312,0.07699979,0.10203045,-0.513621,0.46941552,-0.25039345,0.86735463,-0.017632624,-0.0011625359,0.20795172,-0.5838626,0.24229468,-0.32709444,-0.32571647,-0.66360784,0.16250291,519 +688,0.44879216,-0.20394604,-0.4532657,0.10141205,-0.3139833,-0.088288955,-0.24372028,0.057105556,0.32635066,-0.22438303,-0.35854167,-0.22445217,0.13676713,0.20226695,-0.032677464,-0.5841843,-0.063384876,0.24201989,-0.82208884,0.58602494,-0.42500064,0.33865717,0.29019588,0.5217706,0.07757326,0.3250804,0.19984862,-0.05271969,-0.27311474,-0.084649175,-0.0036009504,-0.010904088,-0.97428745,-0.066938356,-0.4388309,-0.30859816,-0.024967395,-0.5601456,-0.4360742,-0.8855091,0.38429424,-1.1168237,0.63912797,-0.024959253,-0.036999263,-0.05387117,0.04613351,0.32832578,-0.29540783,0.011735995,0.21724036,-0.47954082,-0.06660354,-0.49685222,0.069368616,-0.28787497,-0.44779623,0.020499326,-0.5651464,-0.19712509,-0.23343185,0.12552625,-0.28891593,0.09958382,-0.2445613,0.43655586,-0.41902205,0.28933614,0.29563835,-0.22755125,0.23459552,-0.5616386,-0.093763314,-0.11110987,0.42794177,0.040377297,-0.23877944,0.45514914,0.30943805,0.5158219,0.3394375,-0.42498308,-0.072023466,0.09919981,0.2107163,0.44559887,-0.14256535,-0.23896298,-0.20490707,0.017298369,0.3766109,0.23774052,0.17896794,0.01322319,0.1296522,-0.12797326,-0.08046666,0.44783682,0.6448341,-0.26359767,-0.2929207,0.059783485,0.6045419,0.18130884,-0.101593524,-0.19244541,0.057829723,-0.5370112,-0.117082275,0.054187205,-0.22850443,0.7751208,-0.07645675,0.07269303,0.8256327,-0.3063927,0.13766286,0.21033849,0.09112762,-0.064684704,-0.27376258,-0.18471564,0.4042864,-0.7149922,-0.05197271,-0.44167122,0.6612328,0.19946653,-0.5452958,0.43066517,-0.51099974,0.21763483,0.066389844,0.67300946,0.64124906,0.5004599,0.6046399,0.7365624,-0.34844068,0.19230549,0.13174751,-0.3979171,0.14158246,-0.45016268,0.3383757,-0.37399152,-0.13052535,-0.2424399,0.013758641,0.0034373861,0.29758582,-0.65195906,-0.15281881,0.28316686,0.9482721,-0.20670062,-0.049014244,0.7491826,1.231745,0.96422553,-0.054199174,1.4628251,0.3710717,-0.3013419,0.06343777,-0.21420647,-0.79187816,0.1777787,0.21710041,-0.33910835,0.2334154,0.13452314,-0.16032726,0.3470662,-0.79122174,0.06648746,0.1266962,0.24637589,0.0070385863,0.048092283,-0.60099864,-0.18384954,-0.14972031,-0.18115605,0.21734849,0.25192896,-0.2877892,0.43046087,-0.045231983,1.2628459,-0.1377444,0.09795204,0.06980081,0.66025513,0.26214993,0.088660054,-0.041494362,0.31783935,0.3376217,0.106491014,-0.47666854,0.19293457,-0.5866351,-0.3487123,-0.24855638,-0.23447114,-0.111943685,0.04703235,-0.39221618,-0.26893428,-0.021594506,-0.2142563,0.2854865,-2.5668893,-0.38569638,-0.0769545,0.60179985,-0.42192534,-0.14872618,-0.0373224,-0.54463744,0.17125617,0.08871277,0.43857747,-0.7977279,0.51072925,0.5007687,-0.56687343,-0.26170814,-0.7590125,-0.151184,-0.0037511748,0.43312904,0.0823517,-0.24633636,-0.39792532,0.033936918,0.77612627,0.11498124,0.17179935,0.59425855,0.53950644,0.009282029,0.5501727,0.10227975,0.64618486,-0.463156,-0.09940198,0.36139604,-0.30607885,0.38145542,-0.2681011,0.10704965,0.6497288,-0.34955603,-0.75130916,-0.55378634,-0.3726971,0.9844822,-0.304896,-0.62997407,0.039140668,-0.36355668,-0.022247832,0.049292088,0.65330976,0.019946052,0.28017068,-0.7215011,-0.13694476,-0.06710158,0.26983404,0.14210567,0.07522862,-0.34283102,0.78915465,-0.017293958,0.29457837,0.2035885,0.4050528,-0.09382219,-0.40432137,0.21932837,0.99167264,0.2854896,0.115226544,-0.28456977,-0.16406387,-0.3069041,-0.23750417,-0.17768182,0.5133041,0.8095703,-0.2171004,0.033942197,0.33945215,0.0455486,0.059228834,-0.08910349,-0.40122253,-0.16634513,-0.08885704,0.55297405,1.0744674,-0.20439483,0.5298849,-0.2999248,0.39638144,-0.043068234,-0.55804116,0.59714353,0.69947475,-0.26292166,0.24007583,0.49304536,0.4059665,-0.6790931,0.5573623,-0.77010494,-0.4918253,0.6399677,-0.06846543,-0.48601085,0.15784948,-0.2736122,0.13825813,-0.6471789,0.48733467,-0.24631287,-0.26828736,-0.4539797,-0.1371875,-2.4563174,0.2505514,-0.21670192,0.06359181,-0.36905953,-0.120878175,0.23568204,-0.50586784,-0.5231076,0.1912219,0.19024959,0.6649421,-0.15697613,0.16679867,-0.28062078,-0.27737278,-0.13279969,0.19798224,0.4210338,0.24986142,-0.24353248,-0.41498503,0.057747927,-0.05135902,-0.3048483,0.20260009,-0.842391,-0.63654625,-0.12064147,-0.48437002,-0.47175688,0.6459875,-0.2474654,0.056584045,-0.44700974,0.04569502,-0.15743674,0.18158963,0.050427087,0.21369685,-0.015750239,-0.10828463,0.13046369,-0.22972742,0.5614075,0.086656146,0.41739988,0.20426634,-0.11571692,0.11812571,0.37002373,0.67700696,-0.14669698,1.08299,0.33890402,-0.19781743,0.28674358,-0.2765245,-0.40802372,-0.7806653,-0.29106295,0.08036439,-0.3834369,-0.40183386,0.19929284,-0.44687653,-0.88791907,0.6898949,-0.042443417,0.3013884,0.1552306,0.51047105,0.5383374,-0.28018805,-0.026678396,0.02500192,-0.10079599,-0.64763737,-0.27498913,-0.6997988,-0.5459785,-0.20293261,0.8276257,-0.20313846,0.10692087,0.1617062,-0.36589786,0.0876443,0.12122545,-0.13586673,0.11919646,0.704378,0.12038354,-0.6860476,0.4059359,0.03737803,-0.06415015,-0.5678727,0.3425998,0.70747215,-0.8641967,0.69642836,0.54371446,0.03134135,-0.042482145,-0.42861256,-0.31868997,-0.111343786,-0.06707604,0.42224953,0.22106431,-0.75420576,0.34128177,0.22073653,-0.57397336,-0.78854764,0.2997165,-0.14864576,-0.37810832,-0.12118939,0.37147486,-0.00041894728,0.01423248,-0.19800803,0.15045494,-0.5025399,0.34411636,0.23361829,-0.15702611,0.36973482,-0.13436507,-0.39276254,-0.74856514,0.1734543,-0.48362118,-0.2474352,0.4744445,-0.090936415,-0.1538355,0.4024177,0.41394186,0.26927117,-0.22799203,0.004029751,-0.04964669,-0.52032065,0.3575555,0.5232408,0.47462577,-0.5078215,0.6294642,0.14085981,-0.4156335,0.10549942,-0.014225116,0.38111675,-0.06093136,0.3735022,0.1313327,-0.040484585,0.22878817,0.722897,0.075484104,0.590507,0.14659368,0.09234975,0.51561964,-0.009782443,0.23442517,-0.047292683,-0.6071006,0.13386308,-0.049712364,0.09027912,0.39035955,0.33062792,0.16765174,0.10401427,-0.21188563,-0.14269498,0.15178087,-0.026822237,-1.2293142,0.17863414,0.18262061,0.8257626,0.17773302,-0.018366477,-0.17555656,0.82878834,-0.14632016,0.10277304,0.46078733,-0.03931817,-0.32747686,0.80059874,-0.57416433,0.4530481,-0.13163576,0.11359182,0.038334534,0.18995704,0.31417623,0.9623804,-0.36028522,-0.056105375,-0.22217767,-0.084846824,-0.04564872,-0.52180946,0.16051194,-0.46604127,-0.49578497,0.96666944,0.34294945,0.39537874,-0.19973351,0.06879918,-0.092497915,-0.3089477,0.46970075,-0.027321467,-0.091700755,0.26411518,-0.5957747,0.0811586,0.45879695,-0.16338246,0.13151759,-0.2249326,-0.089349434,0.084183164,-0.33725742,-0.2238329,-0.07465757,-0.9407342,0.01697774,-0.436387,-0.60607785,0.4931746,0.025988404,0.026575267,0.10975372,0.011822669,-0.22166021,0.48252985,0.0015280613,0.69374317,0.1759085,-0.45524004,-0.3542227,0.11171191,0.23401393,-0.26845026,0.37758777,-0.3951059,0.19961245,-0.40152338,0.83864254,-0.13413502,-0.47003475,-0.06245791,-0.25862136,-0.13742413,0.6702674,-0.12484889,-0.19160047,0.0051796734,-0.25180355,-0.39255017,-0.06807394,-0.19153307,0.15119682,0.47024626,-0.17537317,-0.16503319,-0.36688775,-0.16064757,0.69060475,-0.02289491,0.5051743,0.25033897,0.0060411463,-0.21525511,-0.052874804,0.3249212,0.67939913,-0.044945616,-0.20281996,-0.499659,-0.42860582,-0.37966225,0.36942455,-0.037870977,0.17178401,-0.037865028,-0.08138193,1.1205522,0.08535728,1.3419236,0.21665147,-0.24661158,-0.010306468,0.56614584,-0.21625185,-0.028509911,-0.63647586,1.1103603,0.47970244,-0.1287335,-0.071380146,-0.49549162,-0.07394206,0.3227802,-0.3378035,0.012774364,-0.10405089,-0.57009137,-0.35201794,0.16785677,0.43131477,0.033662833,-0.031104542,0.20073321,0.17901827,-0.0094759725,0.3867486,-0.83285993,-0.40242693,0.46581233,0.20449382,-0.2646912,0.2216627,-0.38030273,0.43512625,-0.6297268,0.20051931,-0.5250604,-0.016456343,-0.111816995,-0.5503645,0.3151283,0.07847366,0.47818896,-0.7322601,-0.3118387,-0.20943841,0.29916236,0.27874315,0.18845645,0.5936892,-0.22934411,-0.15792002,0.16345504,0.61594355,1.3186798,-0.4976369,0.19040087,0.1633125,-0.43263912,-0.6699613,0.44885558,-0.28419793,-0.03624285,-0.19623272,-0.52438,-0.7143556,0.20825823,0.02220914,-0.031234851,0.09433686,-0.7410698,-0.19390967,0.2564522,-0.26971155,-0.16891879,-0.18414395,0.34845448,0.5849857,-0.03392055,-0.25393537,0.042996313,0.3195871,-0.22697943,-0.42152196,-0.13219975,-0.44012964,0.25667408,0.12838395,-0.35690647,-0.14512442,0.17725402,-0.57710266,0.073954515,0.2321853,-0.4239261,0.070763454,-0.14815713,0.031562347,0.8290532,-0.18137988,-0.057830118,-0.5658115,-0.50510144,-0.93050766,-0.29287407,0.12436588,0.13400735,0.017668111,-0.39713553,-0.16576293,-0.09602829,-0.2185187,0.095889375,-0.6830136,0.32505527,0.1524984,0.67824906,-0.43413624,-0.9833152,-0.03308893,0.1985422,-0.25284183,-0.6023401,0.50534177,0.05998006,0.8695667,-0.03138909,-0.03284234,0.05695599,-0.44982332,0.020422658,-0.33558825,-0.1439692,-0.75953805,-0.014414602,526 +689,0.4730344,-0.008141155,-0.6503826,0.090540774,-0.25683215,0.27714622,-0.42355463,-0.017840624,0.11900023,-0.7044454,0.025338786,0.11186929,-0.38658392,0.057584837,-0.078355044,-0.37387183,0.2922253,0.18715747,-0.7628218,0.649184,-0.23114516,0.43420416,0.1279753,-0.02189156,-0.18817958,0.10263947,0.27682588,0.17408516,0.057429057,-0.6051258,0.064028874,-0.16465221,-0.812041,0.57379586,-0.13875198,-0.22961348,-0.24719144,-0.27496535,-0.38147402,-0.7486446,0.1394199,-0.81953174,0.6206237,-0.06414526,-0.33808035,0.08483534,0.19880962,0.18113597,0.2902604,-0.11036868,0.230541,-0.40944722,-0.40566716,-0.24298246,-0.16307935,-0.42363086,-0.51070964,0.1145172,-0.53968376,0.013104806,-0.42804855,0.33122766,-0.39483228,0.11138044,-0.3017386,0.61657727,0.009972047,0.1103739,0.046623792,-0.26885012,0.07112314,-0.53994554,-0.028488997,-0.07754414,0.34131387,-0.0049697435,-0.12078676,0.43353432,0.14046322,0.60935414,0.013741509,-0.3048751,-0.12913217,-0.25269955,0.36638114,0.5920492,-0.1244538,-0.06847698,-0.23702183,-0.19615412,0.5604057,-0.07073835,0.16831297,-0.32623738,0.0015504796,-0.14797495,-0.16689602,0.587366,0.5571843,-0.16996886,-0.008203726,0.3635119,0.66562086,-0.028861586,-0.18318488,0.090740256,-0.1544555,-0.26909986,-0.23762354,0.24270612,0.10436346,0.25533018,-0.20179318,0.33198804,0.5092177,-0.1583786,-0.22905304,0.6043978,-0.029391041,0.34483972,-0.07598075,-0.13980372,0.39146423,-0.75622857,0.0051199337,-0.5836544,0.6801492,-0.13516688,-0.8437706,0.45272824,-0.41542453,0.07919052,0.16138826,0.7081921,0.6877423,0.84061915,-0.060156584,0.9358227,-0.35234377,-0.13925043,-0.077205606,-0.18026403,-0.052955702,-0.267176,0.027190413,-0.2611223,-0.07233917,0.043996327,-0.01730244,-0.07897,0.32599655,-0.42410624,-0.3970755,-0.04407451,0.83645976,-0.19796024,-0.024664283,0.81150925,1.0882124,0.9930893,0.12645374,1.1441727,-0.036013044,-0.17229316,-0.515074,0.2289976,-0.7590144,0.35887656,0.1935257,0.53240144,0.27791116,0.06557681,-0.204792,0.15684308,-0.49679,-0.33245167,-0.06658311,0.29313654,-0.1416946,-0.15231477,-0.30461484,-0.0449995,0.29455253,0.07258298,0.3069824,0.25891787,-0.34053496,0.50338256,0.14890805,0.630767,-0.28575554,0.093159184,0.06696362,0.22081396,0.07856778,-0.35822228,0.0695247,0.14323834,0.26672763,0.23209557,-0.54083,0.022727687,-0.2448275,-0.30675027,-0.26319122,-0.20350493,-0.2984897,-0.102544345,-0.11117841,-0.42617494,-0.19095877,-0.45809704,0.30506366,-2.5677009,-0.13730791,-0.09699479,0.30242524,-0.17236209,-0.24169654,-0.09616903,-0.65055394,0.4170381,0.16079783,0.46897206,-0.53889954,0.42552269,0.4626277,-0.3703405,-0.14163646,-0.5945075,-0.0001583512,0.045401853,0.48048922,0.11708564,-0.18531504,-0.16258198,0.09875835,0.5311555,0.007645836,0.117953315,0.58155024,0.40629718,-0.07469483,0.18544902,0.025045175,0.5665134,-0.52453583,-0.1756991,0.51724184,-0.51632386,0.2554558,-0.2028723,-0.01117505,0.45135567,-0.38890135,-0.5664883,-0.49720544,-0.15734926,1.5004003,-0.17434567,-0.8740274,0.03439154,-0.05028093,-0.3372876,-0.091855355,0.38583085,-0.064834364,0.1313711,-0.5407254,-0.072065026,-0.20956443,0.5543336,-0.20210248,-0.22237231,-0.46242425,0.7251151,-0.052262213,0.72488487,0.31214988,0.31984228,-0.42844164,-0.29110003,0.04492967,1.336679,0.5934176,0.18991579,-0.28757828,-0.07454605,-0.27926522,-0.42575172,-0.022534508,0.76649857,0.5251789,-0.020018853,0.070547484,0.50849205,-0.07292619,0.24228914,0.0585972,-0.42171147,-0.37363493,0.0053193294,0.743521,0.47027808,-0.023037454,0.3293596,0.019234447,0.16202277,-0.30206817,-0.492352,0.48761448,0.7427905,-0.2161689,-0.28787258,0.50962555,0.57037014,-0.3444947,0.57012933,-0.5763436,-0.66160464,0.3524666,-0.07712043,-0.47459376,0.06898789,-0.43396562,0.2581483,-0.39068967,0.57626814,-0.57667637,-1.1166294,-0.32635257,-0.0488557,-1.6124737,0.2859507,-0.20649551,0.0091881985,-0.38849103,-0.13253309,0.23847939,-0.21791182,-0.56300503,0.03761154,0.14665464,0.8454313,-0.09422203,-0.016913066,-0.17295045,-0.36247206,-0.1547731,0.29965398,0.12849285,0.120591596,-0.28081146,-0.10309573,-0.12116151,-0.21644229,-0.12175751,-0.18407425,-0.44095558,-0.31405133,-0.2418015,-0.21596774,-0.17487954,0.6601357,-0.40968984,0.13896751,-0.29262316,0.047385298,0.09791653,0.23202246,-0.042695846,0.18482637,0.05033276,-0.37269592,0.042198803,-0.2849396,0.36608493,0.014939523,0.44438207,0.5199061,-0.40788218,0.075798236,0.3503736,0.6481273,0.13133751,1.0765784,-0.045221284,-0.21261787,0.4403985,-0.03180411,-0.4919441,-0.65345997,0.1725565,0.4807623,-0.382298,-0.199565,0.2186401,-0.23443991,-0.98105824,0.57278156,0.20290415,0.2654925,-0.23851922,0.5395467,0.19701368,-0.17570908,-0.14427249,-0.21066219,-0.28177398,-0.36971074,-0.4079752,-0.7282866,-0.47995663,-0.1320295,1.0071696,-0.09846006,0.07432901,0.33526084,0.020653386,0.27367818,0.15044788,0.16529836,-0.04642048,0.43909535,0.14672497,-0.6396402,0.477459,-0.37233564,0.1024898,-0.41293982,0.5156497,0.61202216,-0.48594317,0.124475956,0.5367857,0.07852332,-0.39820942,-0.6567226,0.13671671,0.0053517567,-0.17740026,0.28978515,0.3082522,-0.8603824,0.5025222,0.19652966,-0.23688293,-0.64918995,0.25699085,0.0024276834,-0.05482064,-0.061961643,0.48498484,-0.12431354,-0.040123872,-0.04459726,0.17143592,-0.34558156,0.32561514,-0.008684392,-0.14968985,0.22532281,-0.2614045,-0.42154947,-0.5421054,0.084622785,-0.8278455,-0.13657102,0.23750472,-0.16241309,-0.0848689,0.47790962,-0.016376985,0.47491565,-0.19966926,0.13069269,-0.28008264,-0.3553526,0.62381274,0.46061713,0.46682066,-0.5598687,0.77520853,0.22992085,-0.20222405,-0.086852394,0.20680879,0.4865858,0.095649056,0.4687607,0.0109869605,0.13345575,-0.034147076,0.81949055,0.34679046,0.32634524,0.0596196,-0.056861877,0.25410667,0.019297095,0.3693071,-0.13737677,-0.6570536,-0.10135892,-0.16216166,-0.0017920182,0.37773877,0.034827266,0.4344789,-0.02686031,-0.14738944,-0.083463736,-0.06704101,-0.17790006,-1.5044205,0.44064033,0.1685634,0.745546,0.21681306,0.18413195,0.021661805,0.7098423,-0.106366195,0.009757672,0.12986046,0.024155827,-0.3370773,0.49259627,-0.78474844,0.2778656,0.06764741,-0.014136798,0.091061756,-0.10221676,0.40795678,0.8376417,-0.13598657,0.18973556,-0.23994437,-0.3136131,0.16561607,-0.36696097,0.54023886,-0.30628648,-0.46353543,0.72983146,0.101493485,0.44136652,-0.30812755,0.07514251,0.10727252,-0.19565865,0.3029742,-0.028195769,0.17036544,-0.3161085,-0.2356836,0.13203624,0.507723,-0.055318337,0.0330635,0.21275337,0.014761352,0.11318027,0.16386183,0.07888622,-0.06361253,-0.7165861,0.3110456,-0.33622858,-0.46224898,0.100496516,-0.19298735,0.0077682505,0.29258066,0.14331304,-0.2158526,0.31350186,0.33702978,0.30239275,0.032714624,-0.14450344,-0.25832742,0.15770909,0.005551118,-0.3998977,0.21026811,-0.008869629,0.19295874,-0.5878058,0.39068285,-0.39764926,-0.3321423,0.44692013,-0.09572249,-0.1260409,0.41032633,-0.045953266,-0.012494729,0.4021007,-0.16709001,-0.18071714,-0.29748806,-0.0103297,0.11691345,0.06037519,-0.13532957,-0.07395414,-0.14220718,-0.2534664,-0.074344985,0.15955822,0.2560457,0.3993061,0.042802773,-0.6597346,0.27819434,-0.0008679812,0.52850425,0.030879421,0.17301312,-0.217994,-0.41679847,-0.46013469,0.6565039,0.062176052,0.107604794,0.15421282,-0.4075219,0.64530945,-0.10696941,0.82659924,-0.011903156,-0.31183964,0.029182963,0.60515165,0.042873416,-0.18322532,-0.36789984,0.93748826,0.44711035,-0.10572868,0.08250291,-0.5624128,0.027713913,0.07373057,-0.24862124,-0.21648718,0.029875685,-0.6633905,-0.1714018,0.14403212,0.413612,0.05619768,-0.21043733,-0.07304126,0.5278629,0.049578905,0.028608102,-0.5297742,-0.11239138,0.383561,-0.05219553,-0.23071441,0.072231404,-0.4937349,0.16376597,-0.8764063,0.06848888,0.04585349,-0.084016636,0.051133927,-0.3255319,0.3562236,0.17132014,0.28849828,-0.331653,-0.21379264,-0.005936359,0.2285436,0.27848396,0.31050593,0.6884851,-0.19338351,0.011398282,0.090552844,0.3491828,0.9278638,-0.058167763,0.031175168,-0.044387594,-0.49546754,-0.73002493,0.066227205,-0.35573688,0.20733769,-0.052727994,-0.4109542,-0.3555463,0.2655936,0.11411505,0.0076545156,0.1250643,-0.90825903,-0.2789195,-0.10977467,-0.44580394,-0.24381612,-0.2715465,-0.021774825,0.53488946,-0.018277435,-0.26245564,-0.04237949,0.38894904,-0.2586659,-0.7654197,-0.10548549,-0.32216138,0.07607742,0.017848881,-0.23946443,-0.16991176,0.13253722,-0.499935,0.17715599,0.11238973,-0.28348047,-0.13545574,-0.34099784,0.08507626,0.3726586,-0.11441869,-0.07954547,-0.24947897,-0.6762534,-0.63879627,-0.37794712,-0.18154882,0.32303736,-0.0053647067,-0.63256115,-0.33803913,-0.4949772,0.049428187,0.0066157123,-0.43138936,0.31426528,0.20714341,0.27070072,-0.26946607,-1.0151604,0.25742775,0.033899095,0.022354722,-0.3731434,0.2620656,-0.019803403,0.5825393,0.18183932,-0.015253599,0.21085602,-0.85361284,0.31750947,-0.23536086,-0.042004295,-0.67459166,0.17810021,528 +690,0.23811346,-0.07309845,-0.3059545,-0.2046873,-0.24830309,0.09492013,-0.0171434,0.39501163,0.24176015,-0.13240942,-0.0048894454,-0.20549704,-0.026525626,0.46161348,-0.012379573,-0.78415024,-0.14671305,0.048294324,-0.57131237,0.35951024,-0.487316,0.2804071,-0.06456619,0.49091128,0.1134413,0.36142284,0.10326373,-0.08145363,0.07214056,0.15744402,-0.27657902,0.18561332,-0.5366342,0.12087667,0.11750566,-0.20949475,-0.11693545,-0.3999349,-0.38725778,-0.6067906,0.34361485,-0.59818465,0.42886522,-0.10938546,-0.28732923,0.1641323,0.072684675,0.23629355,-0.52670956,-0.0092793815,0.2669678,-0.12726262,0.19929364,-0.111771025,-0.29588547,-0.37922555,-0.48806655,-0.06089846,-0.41940692,-0.22226843,-0.27613685,0.06375539,-0.36869806,-0.12834165,-0.17524853,0.47324243,-0.37062213,0.22711545,0.25653416,-0.15709975,0.15578406,-0.43139923,-0.13881639,-0.16076134,0.085861534,-0.021527745,-0.21597753,0.33239767,0.3056528,0.31844383,-0.088569015,-0.121601835,-0.2213915,-0.022641677,0.0074356887,0.432848,-0.21637902,-0.28467023,-0.12223761,0.035100535,-0.014441635,0.18698627,-0.04675613,-0.4446871,-0.04707184,0.13032508,-0.23529941,0.15261349,0.29068625,-0.29842672,-0.2797127,0.37298664,0.24005304,0.16433352,-0.104988165,0.12200098,0.01367558,-0.5106298,-0.2020451,0.16538833,-0.033133145,0.36999696,-0.08033219,0.13126303,0.78200984,-0.14302751,-0.0065295147,-0.1767699,-0.0252811,0.022706985,-0.32917374,-0.12110912,0.05131519,-0.32867214,0.28493118,-0.06342102,0.7586435,0.15241274,-0.8688951,0.3164967,-0.5291576,0.16340016,-0.12354978,0.49812725,0.70527977,0.31116536,0.20240267,0.8423763,-0.47841755,0.05242979,-0.017147861,-0.32024986,0.18640845,-0.026397912,-0.0013443736,-0.53677696,-0.030368218,0.11963001,-0.070021994,0.18347992,0.027302088,-0.43459657,-0.065688714,-0.032459177,0.7713067,-0.33946323,-0.15706357,0.53972113,0.8398612,0.9080321,0.14737494,1.195724,0.29719636,-0.21153274,0.30472866,-0.37819433,-0.6582498,0.16291276,0.28702235,-0.10148107,0.231781,0.045912307,0.025971761,0.22916242,-0.12734857,0.16106136,-0.10940315,0.16742983,0.1695917,-0.120350435,-0.13836968,-0.3884895,0.06392603,-0.04366521,-0.099699646,0.21138474,-0.18924528,0.32481065,0.06418287,1.724189,0.19083378,0.08694708,0.07332965,0.38682142,0.1882469,-0.1096393,-0.13877146,0.45852053,0.35475275,0.06223132,-0.5805517,0.2436286,-0.17103657,-0.4605112,-0.0029975732,-0.4247606,-0.065121025,-0.11804747,-0.4363718,-0.22851986,0.007845681,-0.28195763,0.4451821,-2.9042587,0.0036205994,-0.009115458,0.22013241,-0.27177784,-0.24541415,-0.2783238,-0.3056534,0.29840022,0.4328933,0.38659653,-0.5786155,0.21417497,0.31018847,-0.28135234,-0.312561,-0.5735887,-0.08799878,0.08203392,0.18672647,-0.12191228,0.13409215,-0.11661533,0.19574502,0.5715682,-0.024357852,-0.036911123,0.2680678,0.4998794,0.17364946,0.53482157,0.06395371,0.47147018,-0.13249363,-0.09909045,0.27785036,-0.48993322,0.3018706,0.23807158,0.088057905,0.3979874,-0.38964775,-0.82450473,-0.48407382,-0.36013615,1.2442305,-0.4260432,-0.21485028,0.31342798,-0.25634918,-0.10678319,-0.103947006,0.4533226,-0.1361573,-0.18630257,-0.6454292,0.0194962,-0.060521465,0.33229563,-0.040986005,0.042833064,-0.08778033,0.55856615,-0.05244518,0.47992632,0.3329975,-0.017159197,-0.18240738,-0.46023324,0.112714894,0.6726433,0.18390411,0.18615586,-0.03874342,-0.07218286,-0.052655872,-0.107849054,0.1996776,0.5905661,0.57794493,-0.01109246,0.17416558,0.40143937,-0.2386435,-0.08769524,-0.048408847,-0.20139226,-0.015839221,0.05051644,0.4567329,0.5694579,-0.2412793,0.44114617,-0.07671538,0.17965595,-0.17159358,-0.4718868,0.50309086,0.8231443,-0.14839718,-0.14546844,0.27706736,0.48497933,-0.33092526,0.24127078,-0.47183955,-0.14675349,0.79613936,-0.14457901,-0.33208874,0.14737675,-0.26215336,-0.15112591,-0.75328535,0.15934794,-0.034462478,-0.43193018,-0.524953,-0.10861099,-3.6963515,0.022741826,-0.27249634,-0.326956,-0.18863359,-0.048614137,0.23261547,-0.5032269,-0.5596275,0.012409542,0.063714154,0.44878438,-0.046657786,0.18638285,-0.31744164,0.012248195,-0.36295986,0.1581227,0.019364376,0.39733568,0.071173295,-0.35219002,-0.07263144,-0.2515098,-0.61652946,0.10290216,-0.44659775,-0.41079235,-0.13475008,-0.5509223,-0.28142262,0.6715368,-0.46279588,-0.11686886,-0.14285041,-0.11197022,-0.23217049,0.3846858,0.3751776,0.07993157,0.062098905,0.01660626,-0.29757196,-0.31050056,0.19216236,0.102367096,0.35013574,0.41308576,-0.0018520906,0.15362443,0.52275246,0.58367467,0.11034428,0.5334998,0.27183402,-0.023744611,0.34358212,-0.50822854,-0.034467246,-0.5201161,-0.25376102,-0.2577282,-0.26624033,-0.50417006,-0.17659834,-0.34519672,-0.68330914,0.19921662,0.04268159,0.081159905,-0.023276385,0.072057314,0.36546168,-0.13376766,0.18771309,-0.04511334,-0.15982884,-0.46859643,-0.40079653,-0.5009937,-0.48533195,0.2764509,0.99726135,-0.16994482,-0.21616003,-0.16436094,-0.3919906,-0.08747926,0.04143658,0.06686321,0.32590136,0.24551392,-0.14223753,-0.6327123,0.3312693,-0.1070299,-0.12766753,-0.69811565,0.13190733,0.6114815,-0.6126288,0.6502844,0.0875796,0.180675,0.031028142,-0.4783502,-0.34878066,-0.01722813,-0.13844426,0.37126273,0.09697234,-0.5658923,0.37178108,0.26818264,-0.13469872,-0.5615621,0.39296645,-0.021737365,-0.36618295,0.08574056,0.25253212,0.07836402,-0.092250995,0.071022175,0.268061,-0.48772028,0.18016948,0.2496976,0.04883675,0.35085183,0.084289715,-0.09496788,-0.48206905,0.081597656,-0.3213967,-0.3611112,0.2202582,0.1309706,0.15456489,0.04039426,-0.1270595,0.29075745,-0.1278502,0.083309256,-0.04819358,-0.061876237,0.29462364,0.42084467,0.33150667,-0.50139433,0.4612885,-0.013640711,0.1975787,0.23131841,0.20464513,0.36855492,0.35323903,0.19655353,-0.11094462,-0.27156723,0.15341736,0.5887674,0.14596346,0.35421783,0.031046368,-0.12281629,0.41761252,0.09593666,0.11783986,-0.008597255,-0.2930011,0.010225324,-0.13005096,0.24207425,0.39937815,0.108661614,0.21596028,-0.010321475,-0.18479535,0.14154445,0.28408208,-0.06556906,-0.9461374,0.3390713,0.2968775,0.63499355,0.5501406,-0.02899561,0.05526871,0.5267846,-0.22623135,0.17468221,0.42096123,0.0578787,-0.6321497,0.59893775,-0.6247682,0.5918755,-0.14999436,-0.07674168,0.05698437,0.29779112,0.30718237,0.8757213,-0.07589232,-0.07927973,0.13858652,-0.35438633,0.024730159,-0.42183086,0.18990056,-0.57215345,-0.2991142,0.36290976,0.3634873,0.16443665,-0.36867985,-0.029938968,0.0008280369,-0.16961035,0.090073556,-0.006085694,-0.09020721,0.051962554,-0.62439835,-0.5137569,0.54754186,-0.21593396,0.09487137,0.10282454,-0.22492838,0.3468963,-0.23471092,-0.058713026,-0.06517637,-0.5465937,0.07828351,-0.26891437,-0.47305197,0.24735212,-0.30487883,0.3005298,0.22179733,-0.0018236866,-0.49085698,0.37061617,0.17799972,0.8053869,-0.22977774,-0.14787532,-0.40475973,0.048522856,0.24835514,-0.15430519,-0.24048415,-0.28574798,-0.1248378,-0.32102224,0.36011165,-0.014169324,-0.23603524,0.017134923,-0.13543354,0.013267821,0.3770168,-0.1208433,-0.07935039,-0.3013436,-0.19249216,-0.31240985,0.0612767,-0.33147228,0.4183539,0.05452925,-0.0006631842,0.086534604,-0.13153365,-0.11268464,0.24411613,-0.024736252,0.2718826,0.20592664,0.11515816,-0.25827175,-0.044395007,-0.09391807,0.4003185,0.27422735,-0.031600237,-0.14088625,-0.17630014,-0.2946447,0.28787243,-0.26837066,0.3000646,0.16761369,-0.6645248,0.6540556,-0.008321494,1.0093929,-0.024589868,-0.18783917,0.126499,0.42985928,0.2480167,0.08298084,-0.27219212,0.6561612,0.65395766,-0.024822744,-0.19681194,-0.1442628,-0.27841842,0.26694477,-0.20747529,-0.2691766,0.0064293053,-0.6150652,-0.15587163,0.06642041,0.06950521,0.30966246,0.07955496,-0.25212517,0.058983766,0.13488448,0.3585079,-0.20701121,-0.056083385,0.25095302,0.111333005,0.26344043,0.22229902,-0.35126045,0.43387902,-0.6027308,0.34109193,-0.30723593,0.19910192,-0.14288828,-0.12733954,0.096978195,0.03657565,0.3580101,-0.13299383,-0.24130553,-0.26331857,0.6632118,0.21041836,0.3894207,0.7999137,-0.18286672,0.013367231,0.082544915,0.4829739,1.0243853,-0.08897396,-0.123780265,0.32613137,-0.4313125,-0.60884696,0.21567973,-0.27583548,0.11591805,-0.039220765,-0.092250384,-0.26303193,0.24243182,0.082597815,0.14719023,-0.017296195,-0.5239312,-0.2861238,0.4353499,-0.24179038,-0.2920564,-0.45249063,0.32641503,0.69268066,-0.3617684,-0.21321605,0.18645485,0.18431138,-0.19935611,-0.3499125,0.07711477,-0.38369262,0.35971898,0.111034885,-0.28258863,-0.031066183,0.16815391,-0.3295583,0.15975857,0.14854066,-0.34905034,0.041299343,-0.111111194,-0.1504197,0.9223906,-0.03544758,0.015687564,-0.6475885,-0.45007923,-0.8518098,-0.23767583,0.5157988,0.020768883,-0.19478036,-0.5432354,-0.1767535,0.14126964,-0.21141146,-0.101251125,-0.51118064,0.4294232,0.03627736,0.17895328,0.02445689,-0.789733,0.08021101,0.10573197,-0.14890848,-0.6557254,0.5415983,-0.2997101,0.6570531,0.03181008,-0.071151264,0.28068465,-0.35680965,0.2526203,-0.43962306,-0.25423762,-0.44730398,0.20690249,534 +691,0.6090177,0.04098755,-0.5328307,-0.09267609,-0.12561153,0.08774397,-0.17231122,0.3071688,0.18407795,-0.5368694,-0.4277728,0.022478415,-0.17226832,0.21504182,-0.39114574,-0.80301285,0.1027402,0.21564351,-0.23187762,0.78869176,-0.29621822,0.4412103,-0.0996685,0.23374394,0.12166689,0.13208903,0.29642585,0.07120249,-0.15165043,-0.28285056,-0.118856356,0.34274772,-0.3980869,0.2920903,-0.20012563,-0.23405248,0.023252575,-0.20016098,-0.4139408,-0.8773858,0.25888225,-0.72289175,0.6912936,0.015436358,-0.53184307,-0.12301069,0.19653445,-0.06720707,-0.15923318,0.099943176,0.11450582,-0.2551193,-0.057276662,-0.32154402,-0.40263745,-0.5027727,-0.5070629,0.011471446,-0.37593862,0.10400575,-0.45080784,0.29681233,-0.41654396,-0.18334082,-0.062410172,0.3734472,-0.3829404,-0.027469039,0.10622215,-0.12748367,0.3336349,-0.88762176,-0.3115536,-0.1633574,0.111263126,-0.033584952,-0.16567567,0.39995936,0.21046686,0.67618304,0.01935072,-0.18769082,-0.21204267,-0.18229792,0.085475735,0.5418525,-0.5196203,-0.6244679,-0.21233581,-0.1798837,0.48839536,0.30106682,0.08161934,-0.26656044,0.058528386,-0.29221854,-0.10946748,0.30929154,0.7724275,-0.35047156,0.17113993,0.19139999,0.3445397,0.14291164,-0.1194784,0.054902654,-0.18252578,-0.62432545,-0.38839525,-0.21451943,-0.1476948,0.645806,-0.09656766,0.14834884,0.47233555,-0.09021755,0.21127741,0.33755222,-0.017688064,0.19928163,-0.1445434,-0.2944331,0.25412935,-0.3129279,0.22007996,-0.3743423,0.6399652,0.092733435,-0.61402076,0.31754526,-0.41288787,0.24065281,0.07691837,0.7749969,0.69561744,0.63035935,0.27273905,0.8280305,-0.5552982,-0.0960697,0.23606454,-0.08512707,0.08300451,-0.09220926,-0.21280447,-0.48275054,0.11876961,-0.096717276,-0.11398884,0.10952166,0.5698588,-0.51543576,-0.22285363,0.07406927,0.81751883,-0.274296,0.18303499,0.6649734,1.1028104,0.98216176,-0.19223438,1.3672028,0.24307753,-0.10272991,-0.38773364,0.11664534,-0.7656755,0.2531265,0.45373026,-0.23198754,0.32505116,0.20360002,-0.12693521,0.45643404,-0.65361226,-0.29852885,-0.14750917,0.4360533,-0.111795664,-0.19986698,-0.6595426,0.06801079,0.0874888,0.109563045,0.06943972,0.489411,-0.29196465,0.51172745,0.068498224,1.2304479,-0.1768782,0.11449519,0.18596688,0.4037134,0.27240354,-0.047418978,0.149626,0.12930076,0.22834888,-0.008661187,-0.42415088,-0.061055284,-0.24945384,-0.5169665,-0.19297232,-0.21868055,-0.16562748,0.01753857,-0.29400456,-0.30680335,-0.10545325,-0.44164672,0.29356462,-2.399343,-0.00022746279,-0.07519801,0.30066398,-0.24211396,-0.34407762,-0.16280852,-0.33821118,0.69206303,0.34210613,0.42357937,-0.7183847,0.27989465,0.75702405,-0.46200264,-0.016080031,-0.694642,-0.098872915,-0.106302366,0.6282655,0.27125221,-0.22774747,-0.040025588,0.26125497,0.63970596,0.27290475,0.16520081,0.22067226,0.38380578,-0.35863787,0.2582061,-0.09512811,0.4633498,-0.26284537,-0.15936361,0.49735647,-0.3046838,0.26974308,-0.30740264,0.10667764,0.40262794,-0.5792417,-0.63761014,-0.76095015,-0.23258089,1.190738,-0.020746391,-0.75275266,0.30258787,-0.44087675,-0.35710156,0.010474508,0.67137057,-0.30407172,0.1270282,-0.8000789,0.014607819,-0.21441418,0.16106217,-0.0520459,-0.036737587,-0.68907547,0.93568045,-0.14240462,0.4236002,0.42088747,0.24604405,-0.26323992,-0.5780572,-0.010108124,1.0230292,0.80418193,0.191622,-0.31699535,-0.026105693,-0.25469473,0.012207678,-0.04895733,0.963539,0.63015527,-0.1071362,-0.07954432,0.27654016,-0.059279736,-0.021637525,-0.24789111,-0.34316924,-0.122542344,0.16496475,0.75795066,0.7310994,-0.30685753,0.19112413,-0.16302244,0.374618,-0.42715532,-0.42064968,0.38749272,1.0433737,-0.20282911,-0.17064136,0.97987694,0.57004535,-0.25717786,0.6184139,-0.68839705,-0.5965753,0.41417167,-0.20220588,-0.5935992,0.22910985,-0.4645486,0.118876114,-0.78960145,0.36998522,-0.43292838,-0.5261097,-0.596637,-0.10882894,-2.5159247,0.31082428,-0.36131018,-0.07955663,-0.27196217,-0.118940905,0.42726606,-0.5627614,-0.57261777,0.20986709,0.09427807,0.46710762,-0.07601108,0.0339997,-0.17370392,-0.47676325,-0.1373484,0.16974324,0.16679026,0.2533033,-0.10250913,-0.4878008,-0.1404573,-0.10617456,-0.29247332,-0.048292764,-0.60279006,-0.5287531,-0.12179898,-0.23667619,0.0039622504,0.54714805,-0.4116929,0.09725277,-0.40991578,0.07777619,-0.16459414,0.044076502,-0.008925681,0.41580835,-0.20941386,-0.3037028,0.07054611,-0.24734071,0.39785093,0.110632695,0.3646457,0.50294673,-0.34037,-0.092080705,0.3807389,0.6386284,-0.10294919,1.1170131,0.5506721,-0.06572443,0.34464008,-0.08456484,-0.6301545,-0.6707936,-0.37210506,0.17389861,-0.48529595,-0.25730193,-0.13912684,-0.53521883,-0.89588153,0.59918493,-0.00036483773,0.2802749,-0.112935595,0.2338909,0.46503168,-0.3546949,-0.16464688,0.055700462,-0.21950558,-0.49878305,-0.2830211,-0.68259627,-0.44288862,-0.03690848,0.95561993,-0.0923008,0.09889205,0.17615971,-0.1644937,0.0497416,0.052412704,0.12771852,-0.11807353,0.2955764,0.050951835,-0.7652625,0.4549742,0.11338019,-0.20586099,-0.5527867,0.22258799,0.79884326,-0.5322174,0.5816555,0.3619558,0.0031363093,-0.3094712,-0.90113574,-0.095091835,-0.10061695,-0.2983657,0.5652667,0.2796667,-0.80281126,0.4241493,0.35872915,-0.12418978,-0.6795522,0.518916,-0.11173531,-0.63573045,0.0894666,0.42281517,-0.13148102,-0.11888708,-0.08783269,0.42331997,-0.2557526,0.4192793,0.088726684,-0.006068569,0.24133411,-0.23795924,-0.19129366,-0.96510416,0.032060605,-0.7574272,-0.28173172,0.24274302,0.082597174,-0.2238494,-0.0076749693,0.08891744,0.57601196,-0.4199127,0.37310168,-0.24800764,-0.4253405,0.50064087,0.50115544,0.48932618,-0.2782257,0.7774344,0.12822741,0.020046206,-0.32268095,0.23929907,0.4680814,-0.047401153,0.5226153,-0.35995796,0.006294209,0.23276573,0.7279943,0.19977877,0.333729,0.18569528,-0.103244424,0.30393597,0.07523486,0.16616961,-0.06509424,-0.54166055,-0.12349444,-0.22424287,0.034153495,0.45165315,0.16585511,0.4370411,-0.21137282,-0.2861985,0.09129473,0.22497389,0.18346885,-1.2639658,0.2849642,0.02817579,0.81258667,0.6049834,0.13788773,-0.042496268,0.5709247,-0.047318097,-0.0022262563,0.5257145,0.009971802,-0.27519143,0.4242795,-0.4646116,0.19819432,-0.031719003,0.16707054,-0.00017404786,-0.06357733,0.44594288,0.8306003,-0.1819677,0.13357632,-0.052409448,-0.2757107,0.0930206,-0.35992205,0.12426467,-0.4038868,-0.5457826,0.4451199,0.5113631,0.37854153,-0.19995154,-0.076614134,0.13187179,-0.17264324,0.10811898,0.037221793,0.04180267,-0.42269886,-0.47395295,-0.0063009034,0.45368063,0.1452527,-0.09896446,0.0371309,-0.050492726,0.23700887,-0.09434407,-0.03053744,-0.019828402,-0.4738328,0.08576154,-0.47658175,-0.2889134,0.58539283,-0.33443853,0.1772859,0.15925004,0.006965651,-0.12907784,0.278248,-0.031436764,0.639255,0.20670363,-0.23275667,-0.2910399,0.13614541,0.25534502,-0.3588739,-0.08131074,-0.15127252,0.21831335,-0.54869074,0.3007022,-0.17133263,-0.12405969,0.19573344,-0.21155216,-0.17495833,0.44856527,-0.10584496,-0.30980724,-0.09274781,-0.026838463,-0.29304215,-0.16855359,-0.06531046,0.23908383,0.08366881,0.17192973,-0.093150035,-0.081814036,-0.08494889,0.15771021,0.19192515,0.16548692,0.5285654,-0.061446767,-0.38577506,0.07874311,0.1802865,0.6611852,-0.011073183,0.12842865,-0.11091364,-0.7879568,-0.41883025,0.043863077,-0.3287311,0.25479788,0.14543514,-0.15379262,0.8708983,0.27583292,1.1065694,-0.0026437228,-0.38480106,-0.26625633,0.80258167,-0.22251478,0.020428717,-0.22639187,1.2738012,0.639289,-0.3416106,0.036701117,-0.3537863,0.1724564,0.18112095,-0.22126311,-0.21229456,0.0061131944,-0.6583884,-0.019152144,0.24448389,0.41586986,0.0038799988,-0.021377834,-0.07049242,0.24195717,0.28988233,0.30603427,-0.4587592,-0.046128374,0.4692267,0.15392496,-0.11962635,0.035047926,-0.32704017,0.21224411,-0.60852534,0.037770323,-0.33770898,0.011125566,-0.326359,-0.46737194,0.33686006,-0.10751014,0.28033647,-0.5338491,-0.1438191,-0.087030895,0.18252338,0.10690679,0.094058394,0.49679023,-0.1225598,0.018964635,0.06888972,0.50054836,1.2207068,-0.14586757,0.037964437,0.37825018,-0.54976666,-0.7422698,0.025294028,-0.5476844,0.030543271,-0.190483,-0.5755555,-0.4070994,0.16576649,0.110587604,-0.017820487,0.013954365,-0.5878309,-0.17587735,0.18888593,-0.33327535,-0.17076348,-0.19336846,0.16035852,0.5041343,-0.29955083,-0.39688328,-0.16719334,0.28075716,-0.37513843,-0.9041379,0.080538705,-0.27698612,0.30029285,0.32658005,-0.43155453,-0.124055415,0.0021456708,-0.52208257,0.1446712,0.22183448,-0.33377832,0.030226776,-0.27774075,-0.009355714,0.7389877,-0.19829819,0.19326574,-0.2888503,-0.49541092,-0.85562474,-0.42205244,0.3860137,0.35113877,0.0139424205,-0.77339524,-0.12376853,-0.4291244,0.22661924,0.058413632,0.026462574,0.5365437,0.23020898,0.3677808,-0.27654502,-0.72485936,0.22544256,0.19305642,-0.075695716,-0.513143,0.63842237,0.12681893,0.8996277,0.12973821,0.10420998,0.23975658,-0.7109537,0.22045022,-0.10676163,-0.34481698,-0.5826549,0.07257377,538 +692,0.4056616,-0.17708063,-0.62789726,-0.057793196,-0.23298539,-0.27565858,-0.110915095,0.71206367,0.22970016,-0.4098967,-0.04764477,-0.23650089,0.062159237,0.4977514,-0.23947753,-0.75994086,-0.13953789,-0.007587231,-0.4031391,0.49155384,-0.34696645,0.13226713,-0.10506361,0.52480817,0.31698215,0.18709938,0.060675126,-0.013976806,-0.18689595,-0.022593472,-0.016241623,0.37776878,-0.529919,0.1338542,-0.14341788,-0.36030075,-0.057922244,-0.5604851,-0.37469038,-0.79474545,0.3503853,-0.6470304,0.37271002,0.1678574,-0.3283299,0.16140778,0.16367984,0.36270824,-0.26439258,-0.1556986,0.096587405,-0.045689683,0.032343682,-0.18042172,-0.39251283,-0.35425457,-0.6167449,0.2484152,-0.41898024,-0.10752074,-0.14700936,0.16184415,-0.33276218,-0.08338167,-0.12650847,0.6015471,-0.4270106,0.09372859,0.36072716,-0.094410196,0.38730007,-0.50797075,-0.2527195,-0.07107416,0.056859348,-0.3344164,-0.3740252,0.35997778,0.31854022,0.4172443,-0.077708475,-0.24323827,-0.36705458,0.12268224,0.05627755,0.5174646,-0.378116,-0.62794536,-0.11958117,0.08897717,0.047461573,0.36116594,0.21841358,-0.3780743,-0.10436766,0.1019461,-0.16567662,0.5370228,0.55328697,-0.24008428,-0.13963313,0.22129895,0.35577348,0.20414092,-0.15521277,-0.005848316,0.088055834,-0.7177341,-0.11633541,0.17973782,-0.0071186377,0.50151896,0.0023412073,0.12430028,0.58177125,-0.14432329,-0.11547151,0.1093164,0.047702946,0.1019938,-0.6068541,-0.10294028,0.25971058,-0.38325393,0.23055857,-0.18701246,0.68618834,0.19335777,-0.8664248,0.28037953,-0.72095406,0.09451255,-0.18713567,0.317743,0.6993274,0.39054933,0.39268976,0.6658549,-0.3867995,0.16499883,-0.08603401,-0.42465594,0.052668452,-0.11013405,-0.11377284,-0.42465293,-0.18996364,-0.13404319,-0.08197955,0.21845095,0.18231465,-0.6271934,-0.10613743,0.16244744,0.919773,-0.20768449,-0.1842579,0.80187356,0.89483684,0.9787015,0.019570043,1.0648996,0.080579445,-0.0574307,0.39254856,-0.20477489,-0.69490397,0.25397483,0.22278753,-0.54184854,0.0850978,-0.09008607,-0.05290886,0.54768854,-0.24974498,0.1633096,-0.21360885,0.25496346,0.21289983,-0.21988407,-0.40911546,-0.3003139,-0.1738925,0.00018906823,-0.09017886,0.26516947,-0.07346081,0.23995763,-0.23301473,1.6803752,0.0839104,0.18611974,0.19832823,0.5032337,0.23420373,-0.20342717,-0.18846567,0.03435523,0.17218648,0.2443303,-0.4626148,0.22888035,-0.21405488,-0.46922684,-0.054794285,-0.41242725,0.008649762,-0.2697591,-0.6612251,-0.01822311,-0.10030385,-0.14451799,0.5005915,-3.0144718,-0.13750051,-0.045316383,0.22604224,-0.23346618,-0.4607271,-0.106895216,-0.47815847,0.6678772,0.23438343,0.56192863,-0.5491691,0.30354622,0.3475444,-0.42919478,-0.0507713,-0.6660324,-0.1186546,0.054470595,0.23961791,-0.021438777,-0.032388683,0.18348251,0.03192785,0.5193268,-0.23353139,0.04960672,0.05070857,0.39268377,-0.024011303,0.57155854,-0.2710603,0.50502867,-0.4208083,-0.38962042,0.2667317,-0.40227082,0.2056579,0.16958894,0.092147045,0.37203085,-0.47872654,-1.1455042,-0.5210578,-0.25269535,0.8032369,-0.13353515,-0.34016603,0.37792173,-0.38968483,-0.10541907,-0.15957655,0.37283128,0.1164834,0.12681518,-0.8007657,0.0073434734,-0.16362938,0.06371395,-0.009426295,-0.17866296,-0.27387697,0.4090495,-0.03997226,0.23530036,0.6248645,0.09991591,-0.42247465,-0.5411512,0.03528411,0.91621876,0.18434307,0.16350082,-0.13657348,-0.18486391,-0.28361666,-0.13120781,0.12124907,0.590634,0.695064,-0.07041013,0.12283058,0.22365001,0.12073333,-0.040314138,-0.08241645,-0.36386302,-0.14454235,-0.02999845,0.6689377,0.8587227,-0.060433313,0.6008114,-0.06667708,0.427002,-0.17683141,-0.34180447,0.5271519,1.0357609,-0.06720089,-0.43301246,0.6779693,0.48099026,-0.24569637,0.41246703,-0.3118266,-0.20024869,0.51793545,-0.20155074,-0.49356332,0.25421807,-0.26239502,0.045515444,-0.9217483,0.16365074,-0.37483957,-0.3058109,-0.51431113,-0.21317913,-3.4372673,0.24406657,-0.33354643,-0.13839945,-0.08665712,-0.112636514,0.02774999,-0.54677,-0.645028,0.15249854,0.17532825,0.7174213,-0.21586895,0.1419501,-0.21567138,-0.17560457,-0.109207705,0.08417818,0.3381114,0.3235394,-0.009889419,-0.34184378,-0.27540705,-0.21331567,-0.6519941,0.22629294,-0.71873105,-0.48410732,-0.20876637,-0.75931066,-0.40259218,0.79947305,-0.34870714,-0.12679985,0.004176649,0.109668225,0.05911828,0.34694782,0.1699729,0.35256514,0.035648104,-0.026612502,0.07531184,-0.19112776,0.09520899,0.10422177,0.45666042,0.24511415,-0.06393749,0.38260084,0.589541,0.8383003,-0.05098444,0.8192478,0.5934091,0.010724019,0.25045794,-0.3601392,-0.31153804,-0.45909372,-0.3119567,0.028871408,-0.36302382,-0.37076157,0.056718692,-0.37520742,-0.64077157,0.74619514,-0.116131864,-0.046039782,-0.00045221357,0.21725038,0.47476518,-0.39736712,-0.13568202,-0.05545872,-0.014703374,-0.5401324,-0.3056395,-0.47819468,-0.66686887,-0.039548054,1.0788167,-0.19953893,0.02287221,0.012048547,-0.16867083,-0.049511082,0.14510801,-0.05236957,0.3153709,0.23892404,-0.06128988,-0.6660592,0.4562672,-0.2085008,-0.25478303,-0.5230991,0.2578664,0.56348294,-0.5820734,0.7188726,0.26362637,0.057705063,-0.11481536,-0.6573089,-0.20080318,0.14536446,-0.078132406,0.4111219,0.24877785,-0.87320733,0.46228558,0.6660135,-0.29050198,-0.8068327,0.48185286,-0.011647075,-0.30966237,-0.13584942,0.31675756,0.15106069,-0.07323671,-0.07572002,0.31013906,-0.38549036,0.18552233,0.26235145,-0.021512188,0.36551717,-0.19018191,0.03163954,-0.68228555,0.21671098,-0.5055781,-0.29711148,0.40890986,-0.008034321,0.04130787,0.13213499,-0.009337529,0.25029048,-0.24912558,0.059996467,-0.14923836,-0.26678863,0.19016251,0.49956182,0.52252054,-0.5562806,0.46838978,0.03327863,-0.018556166,0.20940682,0.13438685,0.46179432,-0.11488458,0.40242708,-0.183763,-0.206747,0.24860327,0.79089016,-0.029747518,0.42666963,0.043799594,0.032239463,0.11728729,0.037309144,0.055155627,0.111880675,-0.5511936,0.24558797,-0.03994097,0.26893032,0.54300684,0.010514711,0.3040813,-0.103705406,-0.44119638,0.014338945,0.3527698,0.11708852,-1.4094315,0.4762351,0.16855201,0.8811947,0.4724004,0.2598173,-0.07918271,0.63050365,-0.03154432,0.18892384,0.41551006,-0.13297707,-0.41077846,0.5176344,-0.65795255,0.6926998,-0.068494014,-0.034195356,0.032471158,0.08291514,0.52543426,0.74081874,-0.12697554,0.03498042,0.15834707,-0.34304354,0.21284005,-0.49842644,0.13975972,-0.44217843,-0.3141955,0.6075278,0.686106,0.22442244,-0.18388622,-0.044030324,0.3913115,-0.05666434,0.12727812,-0.15508445,0.07776785,0.089928776,-0.67773175,-0.18495281,0.6145408,-0.031913407,0.26325417,-0.12625928,8.812318e-06,0.31755707,-0.1364609,-0.13822879,-0.21330807,-0.75042504,0.14051278,-0.54112047,-0.46560666,0.34366444,-0.22497654,0.20123388,0.24057946,0.12297675,-0.5295065,0.7357447,-0.11268951,1.0297828,-0.3447035,-0.11138638,-0.47039992,0.22577778,0.26049095,-0.15842448,-0.22783767,-0.43613333,0.03247368,-0.4753531,0.4414372,0.011787627,-0.3630218,-0.16994959,0.0756473,0.024973579,0.50587934,-0.15419616,-0.058744356,-0.12868603,-0.22676903,-0.2010011,-0.11809091,0.0065276003,0.25042313,0.23388785,-0.01582264,0.053961232,-0.10650235,-0.012244491,0.48669037,-0.058878668,0.46741125,0.2922828,0.2674726,-0.16798022,-0.0964405,0.2821328,0.66524786,-0.04249612,-0.1990328,-0.3589562,-0.15488683,-0.25051105,0.14606191,-0.20779821,0.5186027,0.071736865,-0.29401737,0.7247391,0.025138604,1.3660672,0.056849226,-0.3401077,0.1274884,0.27585062,-0.03534762,-0.05067022,-0.40991643,0.9750915,0.4593976,-0.12372523,-0.09327423,-0.19938058,0.044300836,0.05024837,-0.19688162,-0.118674435,0.032547884,-0.5369765,-0.13186818,0.1887512,0.2607351,0.38668662,-0.28185943,0.042468563,0.21837482,0.085966945,0.10515352,-0.391165,0.08400411,0.15259954,0.53407913,-0.020431038,0.106158786,-0.5559644,0.37013185,-0.27456695,0.2363967,-0.40046751,0.18943821,-0.15702055,-0.24296525,0.24743366,-0.2508827,0.4198268,-0.23304923,-0.0949515,-0.19963768,0.43128303,0.24785307,0.108626194,0.7189627,-0.24222888,0.05436096,-0.0013766426,0.58875084,0.9081843,-0.3627922,-0.25556353,0.3082001,-0.124870226,-0.5686022,0.27456528,-0.2714913,0.25001287,-0.1370181,-0.10465552,-0.6289376,0.18500346,0.25205103,-0.042376526,-0.12884086,-0.6731326,-0.11752545,0.23576447,-0.25469628,-0.29653156,-0.48272178,0.1302747,0.70796114,-0.10605175,-0.29287735,0.26783735,0.07460925,-0.018919935,-0.2781088,0.085300975,-0.3465638,0.08280099,0.035206456,-0.39009264,-0.12210517,0.031717267,-0.4109135,0.14537154,-0.013361555,-0.24681455,0.065481566,-0.034872368,-0.21020606,1.1672885,-0.21614406,0.42995626,-0.46976092,-0.60357994,-0.95622647,-0.32717034,0.51277894,-0.029547848,0.01006634,-0.7469682,-0.17666945,0.04247492,-0.39747244,-0.10227369,-0.24941023,0.39850044,-0.042831793,0.44323823,-0.21021166,-0.6986439,0.14718772,0.2862971,-0.19921626,-0.60423905,0.3393448,-0.028149046,0.7944308,0.036701,0.11267467,0.4984775,-0.29567453,-0.1964046,-0.29643834,-0.23281544,-0.64716,-0.023842921,543 +693,0.35816383,-0.13896003,-0.39540946,-0.07878546,-0.16796422,0.056594294,-0.1082544,0.4953292,0.15760191,-0.34612653,-0.10978533,-0.2127011,-0.042428937,0.35834935,-0.020865945,-0.5946268,0.09069168,0.19018391,-0.44009134,0.47085062,-0.41354397,0.22399308,-0.054479744,0.2310707,0.26049247,0.2737064,0.043051746,-0.26035845,-0.016272558,0.03806197,-0.30168912,0.24620603,-0.17897147,0.1494889,0.17277588,-0.26039746,0.021893712,-0.3423227,-0.36699846,-0.6695424,0.39591676,-0.6090945,0.3980369,-0.0027540922,-0.06761057,0.019000271,0.10617593,0.60835004,-0.28101593,-0.01718063,0.23508468,-0.012030845,-0.09007902,-0.087046474,-0.09156546,-0.36186197,-0.5430025,-0.029285578,-0.3790286,-0.3416255,-0.1644148,0.17640981,-0.43986648,-0.13155463,-0.003710169,0.46084097,-0.4543485,0.009647434,0.3472522,-0.1510174,0.25577775,-0.6103469,-0.14311713,-0.05741373,0.49291164,-0.19073898,-0.06724033,0.25950795,0.4117951,0.36263138,0.012205105,-0.120711334,-0.2940292,-0.030842565,0.1123866,0.65456104,-0.24811424,-0.457779,0.0001210662,0.07468957,0.078164026,0.18927462,0.1043036,-0.3184407,-0.101338,0.21252856,-0.21239087,0.20548424,0.2740702,-0.39325052,-0.20492572,0.38954812,0.54382807,0.15500186,-0.056788232,0.02051591,0.09497293,-0.46098378,-0.13322297,0.025007006,-0.22984369,0.41492602,-0.06861124,0.43834892,0.732839,0.0018808658,0.15902121,-0.09786815,-0.03597874,-0.10824765,-0.22973031,-0.23656255,0.10548072,-0.40234885,0.2678801,0.03337002,0.7473206,0.16947764,-0.631944,0.3768938,-0.6201639,0.21675709,-0.20306683,0.4118128,0.629996,0.17645177,0.30580518,0.7347076,-0.42077562,0.049277425,0.006791768,-0.46839175,-0.037640233,-0.040910684,0.023446936,-0.54962665,-0.041197564,0.034116525,-0.05407427,0.16525069,0.09589525,-0.6635221,0.029522149,0.071722426,0.9095872,-0.26801857,-0.08770884,0.5087222,0.90133464,0.89413464,-0.027908228,0.88481647,0.2552395,-0.3335565,0.3915965,-0.5054972,-0.5360116,0.25359637,0.48093367,-0.2741335,0.18824036,0.036853906,-0.19487497,0.5962975,-0.3066311,0.1282587,-0.22908424,-0.0302217,0.16033506,-0.21645601,-0.42283887,-0.33856207,-0.2382161,-0.01605187,0.034031134,0.32123172,-0.111589834,0.22550653,-0.113110736,1.87462,0.076156415,0.086161934,0.14445725,0.4608816,0.1253621,-0.11378349,-0.17755239,0.28826892,0.46713746,0.085225455,-0.5903917,0.26348156,-0.3432294,-0.3529738,-0.0315272,-0.27705923,-0.12245015,0.10850942,-0.46890146,-0.06634263,-0.14578642,-0.28192317,0.5205578,-2.934577,-0.214904,-0.19710304,0.3321272,-0.3192658,-0.29896894,-0.04011703,-0.42743227,0.20526387,0.24207568,0.5649375,-0.59156257,0.4775488,0.3351598,-0.5296005,-0.17546375,-0.6300726,-0.14955367,0.020605328,0.17554328,0.05604922,0.017457949,0.14487979,0.19062024,0.33176595,-0.10381468,0.08500462,0.32234928,0.40352386,0.1669507,0.6312291,-0.09011956,0.56807333,-0.13656127,-0.18045303,0.21965793,-0.25186735,0.116830915,-0.07509504,0.025235187,0.4289232,-0.33165917,-0.9402335,-0.6081529,-0.18089046,1.1777561,-0.23133704,-0.13250592,0.41381344,-0.32125062,-0.11768985,-0.1218146,0.49934322,-0.043743666,-0.24797153,-0.78073955,0.122838184,-0.14377776,0.07344706,0.09195949,-0.25641996,-0.41638348,0.51391566,-0.1429707,0.54235476,0.34238476,0.16972455,-0.071191296,-0.25664812,-0.015097221,0.673758,0.24308476,0.068605125,-0.01896893,-0.050037246,-0.43721315,-0.0005563773,0.093164556,0.45400026,0.64984965,-0.0025464343,0.16228813,0.2945903,0.06626671,0.027381612,-0.102616735,-0.34953254,-0.0057208696,0.06729274,0.46862262,0.5194164,-0.21266763,0.5310574,0.030688496,0.14218229,-0.20040666,-0.35803193,0.41559362,0.9869555,-0.22589031,-0.1514361,0.44768128,0.48586333,-0.11480768,0.23939016,-0.48331717,-0.15015744,0.5128652,-0.25945187,-0.40878546,0.12930308,-0.30462843,0.08907537,-0.92366135,0.29555553,-0.38397,-0.540051,-0.3753082,0.0067583597,-3.505353,0.19047019,-0.45558488,-0.20495392,-0.0070032133,0.048038814,0.10872805,-0.8535966,-0.39541134,0.0973867,0.0794309,0.6463356,-0.094077736,0.047037106,-0.2323641,-0.13310665,-0.25835982,0.0316163,0.039307527,0.33190903,0.11019159,-0.4570312,0.043656625,-0.031578794,-0.37906837,0.18972093,-0.6885401,-0.38134164,-0.073709205,-0.6380418,-0.44915125,0.63294005,-0.27096123,0.17276603,-0.17557567,0.029094104,-0.09673281,0.29595873,0.14697419,0.14220876,-0.057625514,-0.010014396,-0.06236309,-0.21505621,0.2802057,0.010475071,0.40469298,0.07584477,0.039645456,0.212903,0.5694423,0.526006,-0.08543766,0.7903111,0.64708126,-0.13916558,0.19130588,-0.36060098,-0.1724846,-0.42569262,-0.45450175,0.109944,-0.3006372,-0.6843563,-0.0810961,-0.29069048,-0.6143033,0.38715157,-0.052720267,0.3150646,0.0023440432,0.057237286,0.4904208,-0.20531636,-0.029798033,0.0911613,-0.06845553,-0.56902534,0.008725862,-0.6359965,-0.47808176,0.33261442,0.8926396,-0.37609562,0.09915999,0.01802362,-0.3491888,-0.028114822,0.16113044,-0.029981641,0.25379556,0.31991932,-0.34872818,-0.70873463,0.3071992,-0.26106188,-0.086272925,-0.5789139,0.19187333,0.53780854,-0.57537854,0.63770556,0.19268686,-0.05938222,-0.08927514,-0.38589767,-0.26367396,-0.012647037,-0.20011054,0.22200654,0.0722787,-0.7093176,0.22335212,0.44555223,-0.3053969,-0.55537885,0.50820404,-0.015614129,-0.30087572,-0.03478165,0.2758757,0.24317035,-0.06249346,-0.12898096,0.18442297,-0.4565258,0.34952193,0.21520187,-0.18763453,0.15838967,-0.12330006,0.050181333,-0.7112513,0.06210598,-0.40513703,-0.22113389,0.30122307,0.12197766,0.2516163,0.028350811,0.0547569,0.28855312,-0.2064677,-0.032061413,0.13702682,-0.26785058,0.15889956,0.38893017,0.2859739,-0.47621676,0.49409962,0.011549121,-0.111690335,0.04325336,0.08354698,0.42289498,0.05989862,0.46168166,-0.22488506,-0.34082222,0.41254586,0.7572927,0.16010341,0.44030845,-0.017094554,0.0016461107,0.0335444,0.065871544,0.010938313,0.08740226,-0.506218,0.031027608,-0.15153146,0.23828061,0.64038473,0.19103941,0.24723099,-0.13699357,-0.45880458,-0.013500204,0.19638799,-0.04218116,-1.1776848,0.59308416,0.33447948,0.8119138,0.3417227,0.06716682,-0.033372242,0.6498733,-0.1364865,0.14567201,0.27378994,-0.18728612,-0.56179214,0.59533346,-0.8287322,0.4245488,0.058360025,-0.04169544,-0.009992485,-0.1236508,0.30918005,0.6090804,-0.2200174,-0.07994028,-0.06592633,-0.3314936,0.0585686,-0.34974077,0.17407773,-0.80412585,-0.33177012,0.37697843,0.72390264,0.18892011,-0.12555414,0.11307592,0.1507113,-0.04952326,0.19059907,0.016372409,0.1251124,0.08479067,-0.7380065,-0.25580594,0.49216413,-0.3270684,0.1378416,-0.073468976,-0.08819543,0.32098153,-0.2441222,-0.038971823,-0.09402338,-0.42624313,0.1169048,-0.24456501,-0.32404095,0.52031934,-0.038756672,0.28998443,0.18967925,0.07365825,-0.13714376,0.5638556,-0.12473588,0.7130959,-0.10151443,-0.23384021,-0.5129189,0.032168396,0.042577524,-0.014110153,-0.10389609,-0.39919478,-0.019876339,-0.45786554,0.49301112,0.19232494,-0.16873649,0.03289261,-0.24248083,0.0020389785,0.5582965,-0.18654491,-0.016121099,-0.20997629,-0.23044035,-0.27693504,-0.16812348,-0.06651009,0.17992646,0.26023343,0.23602965,-0.14944401,-0.11211956,-0.20571245,0.41482627,0.019242644,0.35763696,0.30044392,0.11531018,-0.095707186,-0.26433378,0.28722686,0.29587346,0.014152231,-0.14919697,-0.36953622,-0.4181824,-0.32901904,0.054518737,-0.17939216,0.5961824,0.014002692,-0.14642248,0.67005324,-0.03917452,1.1839579,0.006983466,-0.31683528,0.03484035,0.5543264,-0.025471352,-0.037467368,-0.22691822,0.82779056,0.49888128,0.050566796,-0.083683915,-0.29347867,-0.20134355,0.22539261,-0.17843,-0.07100557,0.11332656,-0.48259962,-0.3576488,0.22048889,0.10969555,0.26749262,-0.021764288,0.054171447,0.27479225,-0.07050767,0.21685109,-0.3699476,-0.4694491,0.22012475,0.31817257,0.056168642,0.17395224,-0.4998511,0.475385,-0.43635103,0.17160533,-0.23351629,0.22011471,-0.19721015,-0.17926511,0.2773334,-0.046036743,0.4457288,-0.19312249,-0.19960602,-0.13910809,0.50450236,0.20918515,0.06115113,0.6921225,-0.3241688,-0.023439636,0.08814111,0.47881082,0.7808411,-0.2957024,-0.075020514,0.493208,-0.3141333,-0.6264299,0.30463535,-0.18826698,0.044307653,0.14417964,-0.20858333,-0.49420956,0.2527049,0.16212644,-0.010819504,-0.09107128,-0.53608316,-0.2948781,0.15797184,-0.30381778,-0.16093418,-0.3880672,0.32513952,0.55386996,-0.37312853,-0.3411404,0.08823562,0.21862537,-0.109911166,-0.4430712,0.050321106,-0.3270056,0.23338103,0.12629727,-0.37790787,-0.23521468,0.039355107,-0.29483137,0.1374068,0.11903475,-0.36317757,0.17449203,-0.19095418,-0.28155234,1.0303582,-0.27399155,-0.019403577,-0.5670916,-0.28387785,-0.64365613,-0.47382516,0.58504236,0.051131897,-0.118722916,-0.5500735,0.011194816,0.087948285,-0.1918281,-0.2609658,-0.27581355,0.42597005,0.030351318,0.38842872,-0.08745696,-0.6903845,0.21730962,0.036477905,-0.17698534,-0.58748746,0.49932748,-0.081226215,0.93254447,0.022023259,0.09235242,0.24571115,-0.110494606,-0.14057311,-0.28891036,-0.30791414,-0.7507998,-0.16452552,544 +694,0.40010044,-0.4011125,-0.5130579,-0.07328784,-0.10146293,-0.07814579,-0.24375735,0.3928626,0.41587305,-0.20579968,-0.24905902,0.05055678,0.14615153,0.40059346,-0.14415874,-0.70281506,-0.19890517,0.19371401,-0.62488407,0.4810293,-0.46687806,0.27585465,0.009558907,0.40735933,0.104336455,0.38261706,0.16161115,-0.009348557,-0.087450914,0.04158093,-0.17708112,0.39336762,-0.51258963,-0.021028932,-0.2323809,-0.27191177,-0.06819194,-0.35829383,-0.46364912,-0.8071508,0.32637978,-1.0379556,0.5476849,-0.047426745,-0.25425673,-0.14489628,0.22994004,0.3310095,-0.50756085,-0.08473598,0.23136099,-0.21314606,-0.21769592,-0.38962382,-0.068011835,-0.26969016,-0.5348567,-0.008390257,-0.50424033,-0.17612007,-0.1476573,0.30598906,-0.25628722,0.047131684,-0.2889018,0.32387745,-0.40994897,0.042085275,0.55893624,-0.2549481,0.25583,-0.66219836,0.003562863,-0.042787287,0.42662513,0.18644069,-0.35777935,0.39751127,0.5768829,0.4357438,0.29080203,-0.37795708,-0.4300236,-0.0669755,0.21873361,0.47088,-0.31535274,-0.41835684,-0.14678676,0.055824675,0.41809368,0.29866135,0.12219561,-0.13370898,-0.08972238,-0.025069036,-0.0013192686,0.5362605,0.6928953,-0.20766751,-0.40327394,0.2906799,0.6274825,0.37038672,-0.107781775,-0.12015385,-0.08084749,-0.55699575,-0.13656107,0.09123291,-0.2870714,0.61543745,-0.16170758,0.089119725,0.8701217,0.012369289,-0.12405847,-0.06928721,0.03386998,-0.09987906,-0.48736987,-0.10838742,0.19825648,-0.42616907,-0.028474726,-0.22777121,0.46297625,0.08875612,-0.69421333,0.46390554,-0.40956414,0.21836469,-0.007340789,0.6667054,0.75716305,0.6434917,0.4405378,0.95843667,-0.4103395,0.04539223,0.037044488,-0.4317716,0.1011219,-0.3760246,0.1847186,-0.40387917,0.21750242,-0.2989083,0.06765147,0.21583289,0.53032047,-0.58355,-0.20997097,0.24560253,0.7597409,-0.25143465,-0.11102295,0.63278604,0.94898564,0.895078,-0.066097066,1.3379171,0.35473666,-0.20815077,0.07218997,-0.36731467,-0.80390006,0.18110028,0.45324105,0.13087524,0.34710568,0.0056848573,-0.13980922,0.514802,-0.39528656,-0.020708203,-0.11201504,0.27346843,0.16225658,-0.18804012,-0.49628654,-0.04299798,-0.19955325,-0.021822095,0.1996164,0.12515916,-0.33182466,0.33964866,-0.0920958,1.491657,-0.17546853,-0.0069825146,0.09737253,0.50312996,0.31167233,-0.12043564,0.030819017,0.50389093,0.5003521,-0.024343142,-0.58029467,0.22001132,-0.36573908,-0.44229868,-0.13885428,-0.36885172,-0.22774515,0.14276096,-0.43437284,-0.15486453,0.0031765471,-0.10464855,0.33286333,-2.5712903,-0.37292764,-0.22737652,0.39297736,-0.29038838,-0.21225952,-0.057713397,-0.5836167,0.32067955,0.22597793,0.6317062,-0.70383734,0.49287716,0.5264647,-0.673307,-0.032046024,-0.6492968,-0.09027282,-0.069746144,0.51889175,0.07893737,-0.25043407,-0.18910058,0.02562411,0.81575924,0.12388612,0.1219228,0.78635746,0.5354044,-0.28700647,0.509819,-0.14514455,0.71561325,-0.29394788,-0.20276326,0.49263757,-0.291308,0.5102112,-0.28684896,0.028714428,0.6907516,-0.4044389,-1.0472993,-0.53593224,-0.05299323,1.020507,-0.4143373,-0.6180235,0.28663152,-0.4165511,-0.2352766,0.019258497,0.7534546,0.12281636,0.19134524,-0.6745453,0.0198677,-0.12542133,0.21576524,0.047319695,-0.22675492,-0.32987386,0.9548378,-0.040894803,0.66361916,0.31906906,0.1946989,-0.22601286,-0.26245242,0.070847645,0.81134886,0.42521226,0.022968577,-0.12710527,-0.2662006,-0.07918203,-0.25461295,-0.17103036,0.7414342,0.64622307,-0.2051492,0.113393225,0.30130914,0.18168102,-0.18270746,-0.20214356,-0.20122987,-0.2299359,0.07915953,0.38974208,1.0913441,-0.314328,0.30369696,-0.2501745,0.3309277,0.111189075,-0.6962933,0.751633,0.5210297,-0.22601043,-0.1340636,0.7956658,0.36746475,-0.42591894,0.48766062,-0.7414944,-0.25131208,0.64312947,-0.17319417,-0.4543482,0.3259192,-0.31823447,-0.041685656,-0.69829834,0.21193933,-0.17867139,-0.30352893,-0.43129513,-0.13422845,-3.1222837,0.22593714,-0.25636542,0.0068687657,-0.3941471,-0.09805958,0.28041384,-0.7299588,-0.66872185,0.32860184,0.2981656,0.51793957,-0.060901627,0.1359246,-0.1716462,-0.1281627,0.10340735,0.19496796,0.0723129,0.22769362,-0.15906051,-0.54185146,-0.08576916,0.0074552116,-0.5968328,0.21175687,-0.6934343,-0.49802992,-0.14134425,-0.5929125,-0.088455915,0.6040256,-0.4567172,0.0002300556,-0.29397035,0.2005895,-0.17047574,0.08690696,-0.08492542,0.33876494,0.097211875,-0.17300144,0.24107759,-0.121421926,0.5320584,0.029453686,0.47339675,-0.004515171,-0.1359212,0.14763466,0.4063379,0.82243663,-0.4464889,1.142458,0.57741046,-0.07361303,0.22890283,-0.0011785534,-0.26819447,-0.6773206,-0.40574265,0.16289082,-0.57741827,-0.45056045,0.06005744,-0.4909827,-0.9303316,0.633974,-0.049134668,0.5307666,0.05317863,0.28275606,0.586901,-0.44547954,0.039608486,-0.06603651,-0.25356582,-0.5363947,-0.35069895,-0.6109784,-0.55763173,-0.030530801,0.8996289,-0.25847176,0.078874916,0.009323881,-0.350374,-0.0863992,0.15083821,0.01374368,0.19130953,0.7101629,0.055018984,-0.67214274,0.44942126,-0.078127146,-0.08669865,-0.56880426,0.20947228,0.42333305,-0.80542666,0.83096415,0.312803,-0.06365558,-0.032290623,-0.6502364,-0.38967612,-0.20199277,-0.18416712,0.64344543,0.27195185,-0.7313565,0.5378414,0.43694365,-0.64088416,-0.69353074,0.28589427,-0.23488078,-0.33722863,-0.29190123,0.27463058,0.21903093,-0.012715266,-0.1439791,0.15626076,-0.40338737,0.30738974,0.1925042,-0.16369708,0.28815788,-0.19786112,-0.35912684,-0.9779556,-0.040332302,-0.48423958,-0.19383337,0.42419764,-0.14953937,-0.040623114,-0.052566543,0.23033156,0.4192743,-0.3219661,0.1455602,0.051373184,-0.58302844,0.30900744,0.4571339,0.49505666,-0.49402338,0.49860412,0.13768,-0.42860237,-0.0012857777,0.049403496,0.44795698,0.02631583,0.4904204,-0.23251557,-0.035184246,0.3657343,0.9138399,0.025982806,0.48666164,0.12530454,-0.118029244,0.4821631,0.08269335,0.17991462,-0.12637514,-0.6426421,0.08731919,-0.09581113,0.16595362,0.62025267,0.41407472,0.28603995,0.06140024,-0.2733484,-0.0027249032,0.16692199,0.18014309,-1.1912055,0.30230427,0.3453994,1.257133,0.24521755,0.19520536,-0.31787217,0.69347984,-0.110234454,0.11804809,0.4849301,-0.2422072,-0.5527105,0.6789779,-0.6641391,0.31142104,-0.1638681,-0.039062344,0.2657327,0.26890475,0.326259,0.9136304,-0.23526806,-0.028989378,0.026602749,-0.17313674,0.12857477,-0.44393656,-0.058257937,-0.41728038,-0.5392347,0.68874836,0.5870905,0.5309951,-0.24103044,-0.04693655,0.04563568,-0.23031497,0.20419241,-0.144506,-0.081589565,0.0091001205,-0.6814259,-0.018375289,0.49899098,0.16848357,0.18156716,-0.33921528,-0.27619043,0.12981488,-0.32297662,-0.24250051,-0.13445823,-0.80698735,-0.10729842,-0.34339464,-0.7671336,0.60716516,-0.056145407,0.087019734,0.29567665,-0.0772829,-0.15437657,0.491255,-0.16166753,1.1016986,0.06339332,-0.25894326,-0.48575976,0.28454477,0.3122414,-0.25629744,0.33959338,-0.49376696,0.059194207,-0.44705644,0.70292753,-0.22585584,-0.43273816,0.24405967,-0.32153767,-0.048194,0.51534235,-0.22763707,-0.19855836,-0.011097748,-0.26296142,-0.4667285,-0.29264316,-0.29165003,0.24459466,0.27955666,0.027219405,-0.08267595,-0.24665792,-0.22168483,0.56497824,0.0820857,0.43783882,0.33324718,-0.031864174,-0.15669163,0.1251448,0.40630677,0.66616166,0.19032016,-0.17257024,-0.5429094,-0.6535318,-0.4399112,0.26108617,-0.0015640488,0.34223667,-0.027468609,-0.16707842,0.9823441,0.083617456,1.2168218,0.20900853,-0.37327954,-0.04873459,0.7187278,-0.19717774,0.097579904,-0.50780344,0.8071575,0.47436947,-0.13277198,0.19122069,-0.55103153,0.13570857,0.38918126,-0.44078827,-0.04554597,-0.09336197,-0.6915069,-0.41168773,0.19579981,0.18382683,0.2937349,-0.08019649,0.10029804,0.05313817,0.11795466,0.26446855,-0.6459837,-0.49485844,0.27989727,0.20394073,-0.18109773,-0.13882755,-0.45544508,0.47448623,-0.48483467,-0.017765045,-0.5125564,0.08307834,-0.30731076,-0.40570518,0.15840207,-0.19910343,0.4188332,-0.5039583,-0.46206692,-0.06902605,0.3786109,0.10434219,0.09714343,0.55650914,-0.36302522,-0.030248495,0.21836373,0.6763856,1.2244596,-0.6714259,0.13967624,0.38137674,-0.4991318,-0.670914,0.5750407,-0.23134503,0.08563748,-0.005358297,-0.49922377,-0.57454705,0.2428403,0.105536625,-0.0074958475,0.065921955,-0.62873244,-0.2735433,0.36898452,-0.29684144,-0.09849973,-0.014299411,0.37853816,0.7090721,-0.3352383,-0.5307146,0.2457849,0.30423266,-0.18012787,-0.4495306,-0.064820506,-0.35253355,0.24259886,0.039379843,-0.4087334,-0.11805444,0.09909793,-0.6184177,0.08500493,0.24747115,-0.41468212,0.17567381,-0.24766019,-0.11417178,1.0681807,-0.31119904,0.06062657,-0.776387,-0.43605083,-0.9822022,-0.42890328,0.19085161,0.12806135,-0.19881727,-0.55155563,0.010808908,-0.16796145,-0.0029314721,-0.061091576,-0.52007043,0.53154415,0.0543521,0.6898263,-0.38463798,-0.84313864,0.061995186,0.17686334,-0.17043863,-0.5281293,0.7626855,-0.016746558,1.0343251,-0.05112344,0.09421044,0.08148125,-0.4514414,0.07280152,-0.40895572,-0.14969099,-0.86084455,0.06460089,546 +695,0.41994146,0.024352066,-0.5777867,-0.09908808,-0.32584688,0.12520157,-0.2753945,0.036409684,0.4547356,-0.65237653,0.013983635,-0.17664933,0.027649406,0.23208357,-0.09879342,-0.64011943,0.18104467,0.3454998,-0.43602732,0.6939423,-0.53330463,0.23343563,0.23823158,0.39959496,-0.114586025,0.0020532827,0.050365932,-0.29189116,-0.21211842,-0.39323103,-0.05905191,0.056809478,-0.6360694,0.54471403,-0.07085445,-0.1604997,0.111746825,-0.33686405,-0.28760624,-0.74000096,0.1929026,-0.77522653,0.59092325,-0.041264,-0.2849167,0.24432446,0.048141662,0.053354263,-0.17142795,0.14161427,0.14215168,-0.50096923,-0.56030685,-0.29415396,-0.37975752,-0.3617252,-0.5944351,-0.06045999,-0.5498777,-0.08334573,-0.35044828,0.32584256,-0.3583215,-0.058994148,-0.13890722,0.4662207,-0.4169944,0.26113868,0.28435227,-0.33278415,0.20254722,-0.5538135,0.010101834,-0.0038620508,0.24253839,-0.043316398,-0.24376991,0.05717612,0.23007518,0.54026365,0.0852654,-0.3218645,-0.19253911,-0.30271724,0.2928786,0.45155743,-0.252234,-0.20848681,-0.15383208,-0.18366742,0.11732716,0.22123946,-0.13260722,-0.27531707,0.19056419,-0.27993,-0.19306758,0.3930655,0.55482316,-0.30665773,-0.12735678,0.3570841,0.3133856,0.0861187,-0.14302911,0.09522348,0.014473884,-0.66088146,-0.24205254,0.14862145,0.04042884,0.332853,-0.18761054,0.3719783,0.61248255,-0.07038545,-0.090328805,-0.065240934,0.06098727,0.12359877,-0.3701735,-0.101258464,0.39833075,-0.5856338,-0.053647928,-0.40234247,0.8553127,-0.024198243,-0.73234653,0.4435625,-0.43703407,0.08896316,0.06910127,0.7552137,0.7888793,0.609766,0.13087328,0.7363835,-0.42919672,0.071492024,-0.2308956,-0.39829758,0.24289657,0.06150631,0.39061376,-0.34343508,-0.005112772,0.03684043,-0.0046461727,-0.03220971,0.72153795,-0.39802396,-0.25034776,0.098227665,0.8897683,-0.2928785,-0.08390375,0.5943438,0.94492364,0.7547873,0.08202815,1.4800409,0.38274604,-0.13756718,-0.21155721,0.057080336,-0.80029356,0.23810779,0.13716394,0.20580699,0.030354332,0.1647581,-0.14441296,0.39587897,-0.26680386,-0.16739123,-0.2450929,0.30960017,-0.28688484,-0.013228183,-0.47167903,-0.32852608,0.10946373,0.084280185,0.3380349,0.33863136,-0.11821938,0.6662458,-0.06630329,1.4618132,-0.26429388,0.19001998,0.11864409,0.18108438,0.20761491,0.0696117,-0.17508738,0.36142242,0.35949883,-0.0150672775,-0.4908757,0.041480817,-0.013154988,-0.34017313,-0.24448036,-0.2221631,-0.07640093,-0.37040234,-0.28469554,-0.1472803,0.070196494,-0.670893,0.3160801,-2.471926,-0.11169414,0.034656066,0.26713976,-0.05937147,-0.105399854,-0.28980735,-0.40449238,0.7487207,0.16149667,0.51985335,-0.45647234,0.41847837,0.65851593,-0.59449077,-0.23073545,-0.76694715,-0.064490825,-0.2645508,0.35409987,0.043585207,-0.34283978,-0.16115028,-0.014977474,0.63071895,-0.011619341,0.021836529,0.41387507,0.43571347,0.043752853,0.44691548,-0.055726454,0.6692854,-0.28813174,-0.27732277,0.32211766,-0.361293,0.29918376,-0.5071652,0.1027472,0.4623273,-0.3515482,-0.789162,-0.48978245,-0.33447254,1.0220734,-0.3208737,-0.6332153,0.22252482,-0.15046453,-0.41011795,0.27608237,0.6356701,-0.2177736,0.068561666,-0.69016045,-0.052922957,-0.05667385,0.43908623,0.017302517,0.024262419,-0.59296477,0.70500076,-0.045398038,0.52235466,0.4477952,0.27811375,-0.2236502,-0.39053917,0.19849755,1.0388837,0.3089234,0.17932382,-0.41657183,-0.19902417,-0.13535386,-0.13707414,-0.20669991,0.6282873,0.7939208,-0.0114699295,0.042444844,0.4324118,-0.20140402,0.03248123,-0.17762426,-0.47592682,-0.2659225,0.0822603,0.6612764,0.5769063,0.04542493,0.35162947,-0.05164594,0.38395584,-0.15135697,-0.5734259,0.63450724,0.821146,-0.18006366,-0.08654635,0.6931969,0.34545523,-0.3393131,0.5234371,-0.5659105,-0.4505599,0.32355097,-0.0725741,-0.54624575,0.2739178,-0.35202232,0.02033956,-0.8201816,0.29935333,-0.2505493,-0.78110915,-0.58466476,-0.042555068,-2.9357684,0.28779587,-0.18345444,-0.037003253,-0.24845281,-0.01304817,0.23889098,-0.231069,-0.43053085,0.111945495,0.23426816,0.66869324,-0.14150336,-0.016805997,-0.2766242,-0.18267271,-0.1786251,0.066606216,0.172052,0.14469813,-0.15815306,-0.31208098,0.027030377,-0.3371012,-0.18796304,-0.07323046,-0.69385684,-0.20071767,-0.043078043,-0.5800906,-0.27514592,0.72794163,-0.46944538,0.06694614,-0.49999124,0.14806098,-0.009072588,0.20064497,-0.2343224,0.40493238,0.067571595,-0.21240014,-0.29017594,-0.13861142,0.14333017,0.043828547,0.14647871,0.5474054,-0.1385004,0.09364046,0.32009363,0.52506053,-0.021010637,1.1048484,0.25215212,-0.005310994,0.20086047,-0.22337188,-0.22702871,-0.5818739,-0.18563019,-0.07320391,-0.5839568,-0.3375942,0.026505686,-0.39209983,-0.77226776,0.7313582,0.25183994,-0.2715418,0.027842939,0.30444583,0.3153547,-0.19891421,-0.006179557,-0.23135236,-0.20143846,-0.48673466,-0.28992948,-0.72930145,-0.40056723,0.0034487844,0.8838813,-0.34168726,0.07127506,0.2223673,-0.29009265,-0.0028600716,0.36091334,-0.019743273,0.12112396,0.490973,0.21355192,-0.79999554,0.57007116,-0.30291802,-0.09063216,-0.6338303,0.3294495,0.7976252,-0.82330936,0.6732016,0.63835835,0.15641502,-0.062786154,-0.56385005,-0.35576683,-0.021369044,-0.18270744,0.40765297,0.15436994,-0.88495624,0.58513737,0.205011,-0.10352039,-0.8813798,0.26669928,-0.117877685,-0.25441852,0.13396417,0.49653614,-0.07087765,0.18392144,-0.22697257,0.13731185,-0.5023937,0.26053488,0.0043269396,-0.145424,0.42740792,-0.21313259,-0.23531125,-0.77202725,-0.10402247,-0.55759245,-0.28883076,0.25017098,-0.056448378,-0.015975565,0.21301502,0.07032083,0.50203335,-0.39912495,0.046897575,-0.26862043,-0.3350001,0.3881399,0.4591039,0.30589643,-0.48063883,0.71817845,-0.0862866,-0.036787793,-0.21427418,0.17556104,0.5392507,-0.0052859783,0.6125581,-0.27695024,-0.08390085,0.23110884,1.1206373,0.02666571,0.43153828,0.31551552,-0.10058456,0.5918571,0.012090006,0.19750632,-0.24618758,-0.511834,-0.03991193,-0.33948252,0.16931406,0.4418836,0.15060219,0.6870812,-0.03905233,-0.0016742578,0.033895284,0.19748951,0.24110618,-0.77598315,0.40542597,0.30971405,0.6635402,0.50992304,-0.082770586,0.19543971,0.7955348,-0.21183528,0.025265751,0.22737288,-0.14632748,-0.22124997,0.6470789,-0.76961195,0.18284005,-0.14189675,0.14944276,0.30805573,0.0069577717,0.58677495,0.9327771,-0.22004281,0.11351369,-0.19251864,-0.115977846,0.16971289,-0.2286101,0.15462825,-0.41542068,-0.56966627,0.74661577,0.48283917,0.38398796,-0.32445967,-0.07122519,0.41998202,-0.13673452,0.111958556,0.13338211,-0.16083163,0.02024745,-0.5046676,-0.107588805,0.6093691,0.18677856,0.00085257564,0.23321018,0.024358401,0.43866858,-0.29272863,-0.07444246,-0.2417133,-0.7021374,0.07439869,-0.479561,-0.45649618,0.45941353,-0.24937394,0.1710898,0.2202362,-0.0049213823,-0.043942496,0.38210493,0.16003975,0.711169,0.21406563,-0.33672932,-0.119209476,-0.10074917,0.16125692,-0.4308537,-0.21803872,-0.19917819,0.22084881,-0.7407465,0.24893138,-0.43108946,-0.20823182,0.39380378,-0.20035623,-0.024408044,0.57950974,-0.0504243,-0.10364505,0.12858109,-0.19811766,-0.3064389,-0.07516435,-0.28759414,0.10571757,-0.028284954,0.004541892,-0.11811134,0.00039257683,-0.34580362,0.2134133,0.11476852,0.08688773,0.29915774,0.25668934,-0.29711035,-0.05023949,0.2547166,0.6513675,-0.12879927,0.12674262,-0.09895169,-0.23582642,-0.35953647,0.38184264,-0.061105844,0.22855332,0.09097397,-0.33515507,1.0167025,0.07548448,0.65685683,0.06258149,-0.41787353,0.042844698,0.53792256,-0.106423564,0.018184606,-0.40482134,0.9573214,0.47663042,-0.023866292,-0.1377616,-0.698352,0.08346324,0.31650817,-0.3905846,-0.15291478,-0.14436617,-0.7093841,-0.1716562,0.24700055,0.2025858,0.101702414,-0.18581687,0.10512464,0.14895378,0.32871306,0.083429575,-0.8001439,0.20108615,0.42210034,0.24783672,-0.0065322565,0.21072644,-0.15372911,0.3181853,-0.70840573,0.2299541,-0.2783648,-0.07429065,-0.22835913,-0.057338826,0.27400377,-0.08627109,0.22868861,-0.38499472,-0.23110078,-0.23324324,0.28468582,0.4792361,0.1953629,0.99742305,-0.2867426,-0.058476217,0.09027122,0.63816637,1.2296115,-0.33938578,0.054356202,0.45680097,-0.2450777,-0.5645276,0.14189011,-0.44908094,0.086420424,0.14940774,-0.47124413,-0.2529425,-0.058141343,0.1453109,-0.10220885,0.06238895,-0.47100064,0.025004255,0.26593226,-0.087140486,-0.16522701,-0.25439703,0.004202359,0.6904039,-0.15187468,-0.14199401,0.025583807,0.12146783,-0.3680833,-0.634593,0.13428603,-0.43092898,0.2382175,0.08267533,-0.38512185,0.058201525,-0.00968553,-0.62213194,-0.015828123,0.25538987,-0.33852196,-0.024707912,-0.31360298,0.055322472,0.77181065,-0.23916706,0.14973912,-0.43065813,-0.6202703,-0.7094408,-0.2512557,0.16636151,0.045197506,0.043642245,-0.32648513,-0.15768915,-0.38957733,-0.021370951,0.103289,-0.47662494,0.28385922,0.1034761,0.42442322,-0.32515752,-1.0443323,0.34608862,-0.0021123062,-0.4232034,-0.52218974,0.34190306,-0.10843285,0.5426741,0.012303774,0.03383788,0.28756922,-0.61168313,0.11085976,-0.2532771,-0.10768244,-0.8426132,-0.009784561,553 +696,0.37335458,-0.25785488,-0.40171435,-0.18236682,-0.1296548,-0.10749281,-0.08234057,0.5094057,0.25991556,-0.17192292,-0.17462324,0.17247437,0.07713289,0.5562645,-0.14776528,-0.6469847,-0.17041172,0.13035916,-0.5116725,0.39309788,-0.5096212,0.10220691,-0.015510871,0.42466047,0.06536233,0.37821776,0.21112302,-0.036447387,0.032595508,-0.019926507,-0.05837232,0.09139057,-0.28588507,0.1077331,-0.07537772,-0.2568438,-0.017691515,-0.35383046,-0.17446296,-0.77498525,0.1857415,-0.9386263,0.40553343,0.17898244,-0.24993092,-0.0806644,0.24370344,0.31015873,-0.5632704,-0.10805874,0.18984519,-0.19121288,-0.27598125,-0.30351952,0.067041345,-0.2459558,-0.48638922,-0.048432432,-0.4209451,-0.22851914,-0.16049168,0.1372475,-0.34475356,0.094636485,-0.106845416,0.48111156,-0.35942298,-0.26126397,0.49601045,-0.30630657,0.2906406,-0.66267556,-0.0002161998,-0.043165684,0.38197047,0.083176665,-0.1483149,0.33413702,0.3155553,0.39176422,0.11257185,-0.25797474,-0.45850885,-0.15427479,0.10753334,0.40056977,-0.2614675,-0.33701736,-0.0885837,0.1361936,0.32680082,0.34438345,0.09134762,-0.13913317,-0.08802095,-0.086159594,-0.113877065,0.41415113,0.5245645,-0.18799545,-0.23563522,0.22577633,0.558029,0.16227606,-0.16435632,-0.18923269,0.033961758,-0.54809725,-0.08836794,0.058352496,-0.12473878,0.5414559,-0.020405272,0.016619701,0.7939349,-0.04375806,-0.10094983,-0.16305949,0.08412258,-0.04561978,-0.48237756,-0.34452236,0.35684508,-0.4171449,0.03135806,-0.25475004,0.5831703,0.071089596,-0.6887443,0.3727763,-0.41782835,0.17078546,-0.09031563,0.5610326,0.6286176,0.36128286,0.4680252,0.72009474,-0.4069794,0.05772183,-0.12592174,-0.28584015,0.13934019,-0.17985828,0.19798602,-0.49748462,0.11750825,-0.056619074,-0.022576243,0.26642463,0.29799554,-0.4293377,-0.12081657,0.34824005,0.66231537,-0.2580326,-0.071097024,0.60395443,1.1481131,0.97176635,0.02994147,0.9750305,0.23713371,-0.13723344,0.09745137,-0.35266715,-0.5272161,0.15280144,0.43071523,0.16664189,0.32778734,-0.15704927,-0.10093637,0.5613167,-0.4011069,0.06025573,-0.031884983,0.36501363,0.17404467,-0.04789694,-0.6782289,-0.2095796,-0.06263501,0.07275563,0.07366891,0.2770323,-0.21220566,0.24934067,-0.298909,1.2828797,0.022785438,0.13031684,0.29715565,0.422776,0.17193875,-0.18279043,-0.09171552,0.30952924,0.40500024,-0.080357075,-0.49311912,0.29488486,-0.37345618,-0.46947083,-0.05232149,-0.39092684,0.08555441,0.19417885,-0.42654303,-0.0813775,-0.037777636,-0.24440703,0.41316992,-2.8051646,-0.17471384,-0.20319329,0.2801966,-0.24833316,-0.098575644,-0.06246782,-0.48484457,0.29208505,0.2961579,0.5094205,-0.5483825,0.3793211,0.41489077,-0.672539,-0.11129148,-0.6729834,-0.13121408,-0.117974386,0.28763333,0.13405028,-0.18780947,0.016824622,0.2748519,0.871033,0.054045603,0.102136,0.60568565,0.21907267,-0.05903581,0.45576444,-0.1887309,0.4998819,-0.36250055,-0.22687222,0.27699357,-0.31131136,0.26214308,-0.13315347,0.12923428,0.4566536,-0.36295208,-1.0594491,-0.55382,-0.16349131,1.1760303,-0.28322855,-0.45338815,0.33185294,-0.193057,-0.07379003,0.06326246,0.659901,-0.026990963,0.14066301,-0.6781305,0.103899844,-0.032165878,0.18045703,0.110263355,-0.1885661,-0.41363132,0.66592777,-0.1263146,0.6198007,0.36951047,0.3380453,-0.22627701,-0.22197713,-0.010127797,0.68145525,0.3750698,-0.0810905,-0.140872,-0.26713225,-0.08934538,-0.27145836,0.09623588,0.5649967,0.78974396,-0.08936548,0.069187,0.22075929,-0.08852984,-0.09810325,-0.00417274,-0.1785135,-0.14238456,0.09187277,0.48681992,0.7189417,-0.13425742,0.3233169,-0.14694534,0.44786292,-0.06301547,-0.4741376,0.5814091,0.1729901,-0.12185172,-0.05987503,0.7152164,0.46455243,-0.31158537,0.45665455,-0.5632519,-0.23898031,0.5829266,-0.19027914,-0.43281814,0.09800493,-0.35058638,0.06948612,-0.8053275,0.3189618,-0.36009932,-0.40684494,-0.45766416,-0.11895982,-3.284323,0.2534316,-0.24221398,-0.212428,-0.23409939,0.038140878,0.20877555,-0.8159684,-0.59833485,0.24414451,0.29556355,0.6576952,0.047835357,0.0049802205,-0.25894275,-0.2574749,0.11547672,0.11771519,0.0060605705,0.31826442,-0.040209524,-0.32135358,-0.03376511,0.12283272,-0.5257143,0.21551657,-0.63383186,-0.48121086,-0.16995667,-0.6477639,-0.18142298,0.572137,-0.3577102,0.06621565,-0.103817634,0.17096446,-0.15944344,0.19036195,0.072537616,0.29896286,0.15771817,-0.15271114,0.22396877,-0.29020533,0.38054258,0.04146628,0.5039457,0.015002718,-0.124395244,0.1553286,0.6030878,0.76362574,-0.1423176,0.9413408,0.50610536,-0.09440716,0.11882356,-0.22137581,-0.07885267,-0.38942146,-0.48727527,0.024141889,-0.33783948,-0.46236897,0.08829946,-0.30365926,-0.89936566,0.66114396,-0.15848821,0.22873801,-0.011597608,0.11295075,0.4363661,-0.35423902,0.06963975,-0.05721378,-0.10800575,-0.50279063,-0.20751056,-0.606724,-0.44422233,0.05898881,0.8477218,-0.27864432,0.21335633,-0.04309868,-0.37646964,-0.0017258892,0.04342665,0.13075498,0.20673463,0.30171582,-0.015523384,-0.5059925,0.36144572,-0.058336742,-0.1800646,-0.5534744,0.23723768,0.6280738,-0.61118543,0.7555099,0.39812458,-0.04659816,-0.15447286,-0.68956155,-0.37359804,0.030838288,-0.08747509,0.4057614,0.079445824,-0.76308256,0.45923483,0.42882708,-0.5913696,-0.7006607,0.20267338,-0.23572199,-0.41845497,-0.14689668,0.23051286,0.09768418,-0.06545631,-0.22278768,0.19709963,-0.374844,0.14453211,0.17786336,0.0025279843,0.48764932,-0.12760691,-0.15206271,-0.84208673,-0.01665958,-0.6175181,-0.15364417,0.35342237,-0.02389421,-0.08887683,-0.00086685555,0.05510556,0.31086418,-0.37022558,0.09120031,-0.062840894,-0.49481866,0.2855921,0.48474103,0.40061697,-0.3347604,0.55540717,0.12121879,-0.15209699,-0.14385627,-0.085302286,0.43936846,-0.014758564,0.36422488,-0.4431786,-0.20479526,0.39575812,0.6025748,0.015408502,0.3618801,0.17920142,-0.08348766,0.36995938,-0.018644445,0.0050892415,0.0061043683,-0.3340113,0.22698215,-0.10550996,0.20618032,0.43338963,0.26327422,0.2946706,0.18905734,-0.23038816,0.027336912,0.243128,-0.06529902,-1.0185826,0.5601543,0.12239452,0.8550632,0.3913549,0.33421502,-0.32368073,0.739467,-0.17897977,0.042634506,0.29912823,-0.041350465,-0.5617793,0.6887685,-0.6946789,0.48090377,-0.05915087,-0.19174066,0.06162866,0.17861812,0.37968364,0.58544296,-0.18950592,0.02542765,-0.06810643,-0.15713893,-0.030188212,-0.46831375,0.07557152,-0.4870733,-0.51201445,0.7261219,0.3967527,0.46902445,-0.13774279,-0.107540086,0.14769903,-0.08805128,0.3187409,-0.28105116,-0.091780625,0.23124838,-0.64293534,-0.16165182,0.3502679,0.17389959,0.1876238,-0.3128406,-0.1906397,-0.045968734,-0.15272877,-0.20234965,-0.0131511185,-0.6295065,0.05679586,-0.27684033,-0.445045,0.48731798,-0.39929384,0.19352292,0.10001466,-0.040522512,-0.11293011,0.2649346,0.021638045,0.97127944,0.04619319,-0.17081629,-0.3272987,0.14740235,0.028914332,-0.18334855,0.35483938,-0.5359536,0.04439525,-0.5651542,0.6186437,-0.20927033,-0.47302204,0.18775599,-0.2966727,0.008364448,0.5174328,-0.25991797,-0.251164,-0.15626453,-0.29698306,-0.3433893,-0.17185314,-0.2989272,0.2917321,0.18015964,0.061987165,-0.07682274,-0.2003231,-0.0693216,0.56419307,0.09805096,0.3958448,0.3047602,0.03730444,-0.1612259,0.19061668,0.18757862,0.4679682,0.30632788,-0.17268036,-0.70000744,-0.4134488,-0.26832947,-0.0066953646,-0.15627035,0.25310138,0.023644438,-0.034879588,0.8403218,-0.07857318,1.1378856,0.060649913,-0.3260609,0.015015712,0.49355137,-0.09037268,-0.0022056182,-0.33768955,0.8195325,0.5475279,-0.12896952,0.0030264992,-0.57268006,-0.016490089,0.46635062,-0.3554265,-0.1146014,0.016025256,-0.53941923,-0.41763777,0.22512802,0.1191609,0.29176375,-0.121693455,0.15973455,0.013009314,0.17233385,0.36908117,-0.53621125,-0.009193512,0.16044976,0.22446051,-0.008015449,0.12523529,-0.4032705,0.42830864,-0.6003039,0.23926511,-0.4666375,0.06834285,-0.12661079,-0.38290936,0.15660103,0.07238744,0.41425446,-0.38064396,-0.3886002,0.0941325,0.490996,0.14498053,0.10491265,0.60687834,-0.23323737,-0.027308168,0.19095184,0.65710574,1.1955835,-0.5872773,0.12803735,0.29527518,-0.3386604,-0.6862997,0.40885413,-0.14194433,-0.046527274,-0.17358278,-0.52498066,-0.60704124,0.29836285,0.36802056,-0.080457695,0.0642466,-0.36303315,-0.23139018,0.22342502,-0.34038007,-0.24009642,-0.1474142,0.44852483,0.4939749,-0.1990358,-0.53157085,0.04370992,0.3107174,-0.09152831,-0.3964876,0.014349951,-0.25428867,0.25009134,0.054300666,-0.3914908,-0.17825763,-0.035601947,-0.38316876,0.012778124,0.069494836,-0.30907476,0.15254557,-0.25501373,-0.08522039,0.7998555,-0.196117,0.06497009,-0.606371,-0.35717472,-0.9790888,-0.4985518,0.42848256,-0.04657547,-0.10300244,-0.49985808,0.11262076,-0.045726594,0.04801791,-0.021699332,-0.4336572,0.364569,0.08592481,0.50219405,-0.3103376,-0.59902614,0.123615965,0.084862344,-0.14412409,-0.50378394,0.5001933,-0.021956764,0.8879811,-0.03160062,-0.07365355,0.03542889,-0.38561425,0.11434747,-0.43795604,-0.28431168,-0.589012,-0.031290468,555 +697,0.45782,-0.2929919,-0.49779695,-0.19136761,-0.106423296,-0.075431466,-0.15989417,0.5724963,0.0738707,-0.46446642,-0.18997972,-0.10718528,0.01740393,0.23892786,-0.22894455,-0.52256453,-0.03730619,0.016564313,-0.51423573,0.5816759,-0.29453757,0.14116885,-0.15193139,0.41737068,0.27420032,0.34946206,0.140243,-0.08216127,0.11068858,-0.03734906,-0.16127883,0.37724304,-0.312792,0.24504617,-0.0017414895,-0.2641241,0.06780032,-0.27047107,-0.4243852,-0.71562743,0.4893548,-0.72438514,0.4678774,0.117482185,-0.22039925,0.38022995,0.10045266,0.28239518,-0.44301033,-0.10730035,0.22398189,0.060480356,0.11493505,-0.31222513,0.06602402,-0.4566832,-0.43992835,-0.10506554,-0.3480953,-0.32521838,-0.19547917,0.1051647,-0.31009784,-0.09616581,0.060092703,0.64048606,-0.44624525,0.012156706,0.17096457,-0.16656828,0.37856916,-0.79758555,-0.22658303,-0.10926597,0.32426664,-0.12410471,-0.13202511,0.22133805,0.08801731,0.19669169,-0.07399336,-0.04162178,-0.27454332,-0.14417106,-0.12771633,0.41273886,-0.10433451,-0.48907217,0.064746246,0.05029981,0.012295216,0.15045339,0.17010887,-0.18392251,-0.1972529,0.015890956,-0.19073476,0.34745884,0.39663422,-0.16660835,-0.17828736,0.34771654,0.5067402,0.18162826,-0.09112529,-0.06335293,-0.039144613,-0.41697842,-0.110524856,-0.1511236,-0.13715222,0.43977553,-0.21625572,0.44702926,0.67059255,0.003675626,-0.0096324105,0.02609523,0.12976156,-0.08051152,-0.3042587,-0.40300354,0.21051297,-0.39236242,0.19479102,-0.02715766,0.65790373,0.13200209,-0.6438472,0.33293822,-0.45910162,0.025519352,-0.08424877,0.39166382,0.59955627,0.37835073,0.28886607,0.6195154,-0.4655793,-0.020532373,-0.015019756,-0.2930446,0.08236976,-0.013316031,-0.12547351,-0.547406,-0.07774234,0.08823829,-0.02653839,0.18624075,0.21894473,-0.538535,-0.027979195,0.19605635,0.84913707,-0.33298174,0.052246753,0.5909721,0.98900676,0.88468575,-0.009648387,0.78578514,0.066342995,-0.26224157,0.2621486,-0.22079442,-0.6892162,0.3070541,0.49759272,0.10325206,0.2252558,0.07190744,-0.03518727,0.34548032,-0.23742826,0.047085006,-0.20423006,0.20864756,0.11629189,-0.14001574,-0.45924562,-0.23204406,-0.09616904,-0.0038371498,0.014600368,0.18341532,-0.10951665,0.3590126,-0.05575989,1.4549222,0.003002538,0.13915864,0.19920865,0.52591765,0.262066,-0.094694614,-0.14701833,0.43455443,0.41845146,0.27910855,-0.6002189,0.26311633,-0.23807819,-0.4806235,-0.15336129,-0.39415646,-0.011709535,0.08328581,-0.48455077,-0.17597204,-0.13260683,-0.19633248,0.21316722,-3.1167738,-0.1455732,-0.03414057,0.28586861,-0.21577582,-0.20138825,-0.030087702,-0.37904942,0.385886,0.46613052,0.53624636,-0.50770366,0.26336333,0.42827803,-0.5184808,-0.06618668,-0.44079894,0.038040757,-0.12388113,0.39329153,-0.10489874,-0.035960343,0.028428884,0.10584294,0.4185084,-0.026734918,0.07818397,0.19111522,0.34160465,0.053619362,0.43557665,-0.091448836,0.37708375,-0.3590786,-0.1410452,0.2210424,-0.2854126,0.115550436,-0.2125519,0.20105784,0.5329818,-0.50856537,-0.85428625,-0.552206,0.08963346,1.1928048,-0.1087383,-0.2319479,0.31397808,-0.4483454,-0.24250294,-0.09567031,0.41043955,-0.24540776,-0.13181137,-0.7444974,0.053522225,-0.0949266,0.13802348,0.092379555,-0.26427215,-0.49459055,0.74541056,0.12158573,0.64490676,0.30879703,0.10470582,-0.37337396,-0.41369918,-0.0047310498,0.56488544,0.39567852,0.05654337,-0.024008252,-0.010167471,-0.25915027,0.08432135,0.24330434,0.47586167,0.6336061,0.018179419,0.20429558,0.20932175,-0.058375716,0.10065884,-0.10184678,-0.20373672,-0.16099586,0.058763806,0.4624973,0.47667524,-0.1417009,0.28397906,-0.0029593003,0.39812925,-0.16012008,-0.4115473,0.5564676,1.0716325,-0.1347384,-0.41253915,0.5168611,0.559363,-0.12931594,0.31096599,-0.50718063,-0.20371725,0.5114155,-0.29781386,-0.42650288,0.1338109,-0.30867213,0.087518744,-0.8656254,0.212051,-0.37343854,-0.5411516,-0.65106,-0.21634649,-3.1814969,0.12481928,-0.4254169,-0.2538486,-0.21641201,-0.19739304,0.15932934,-0.8087155,-0.4969786,0.25713018,0.062964104,0.78260696,0.050552666,-0.024961503,-0.14752041,-0.30507848,-0.15273806,0.09439158,0.06874036,0.22247447,0.119930275,-0.43084833,0.027072264,0.080517575,-0.4078667,0.048801783,-0.44583958,-0.34752405,-0.21345708,-0.6285673,-0.2778156,0.6000661,-0.11197583,0.085865244,-0.12473877,-0.06471275,-0.08661735,0.192364,0.022441698,0.20181645,-0.0040609995,0.021181574,0.04740604,-0.39819214,0.11598703,0.089511245,0.2881436,0.16058734,-0.11456616,0.13971594,0.44206637,0.49375856,-0.12497024,0.691727,0.53378963,-0.061223105,0.2757664,-0.2562993,-0.34811813,-0.5318119,-0.36827442,0.08653663,-0.23359783,-0.46642753,-0.03259047,-0.4823951,-0.68776405,0.59524405,-0.12316816,0.11470549,0.10554267,0.33235466,0.58183295,-0.12870818,-0.0021426608,0.16268624,-0.13461484,-0.57431906,-0.009487687,-0.5443207,-0.4457369,0.03167455,0.879701,-0.37259516,0.03155125,0.026233952,-0.20074752,0.10250039,0.066344135,-0.07370697,0.37421668,0.25897333,-0.13544509,-0.591727,0.576177,-0.2695756,-0.20431897,-0.3922593,0.17414504,0.4375567,-0.67644256,0.42447308,0.23952998,-0.11463317,-0.33887297,-0.3826302,-0.16763169,-0.010626362,-0.16235925,0.38273662,0.20811908,-0.6705109,0.38342035,0.33190987,-0.20767792,-0.7313489,0.48671392,-0.07330174,-0.5147499,-0.027956797,0.2592635,0.13334152,0.055180762,-0.21504082,0.20164457,-0.2644971,0.1549854,0.02901125,-0.11964119,0.3885863,-0.19277154,0.09481887,-0.6434737,-0.051186465,-0.46790436,-0.18049416,0.35238478,0.122093216,0.113656126,0.11663799,-0.09267994,0.39766657,-0.2254431,0.17804617,-0.16610146,-0.2678178,0.2714527,0.36784616,0.34344733,-0.43883032,0.5676235,-0.029334761,0.034759674,-0.08023913,0.15386018,0.37651983,0.06509987,0.483455,-0.11920757,-0.24022664,0.3658217,0.7094659,0.21160272,0.4703361,0.06590039,0.01303977,0.11171362,0.03814211,0.141061,0.0972935,-0.4725249,0.06344233,-0.2420514,0.12774307,0.48872724,0.0671506,0.2405792,-0.082096085,-0.33375803,0.02087196,0.2881184,0.13561973,-0.8955604,0.54919696,0.21234849,0.7355264,0.4178545,0.058071163,-0.15742978,0.79353017,0.03832043,0.12451315,0.25144365,0.012803669,-0.5376767,0.55533457,-0.6791322,0.53314126,0.04824491,-0.1933472,-0.10183621,-0.061218612,0.3944925,0.6335282,-0.17390516,0.04390222,0.12444584,-0.34237188,0.3159429,-0.42303556,-0.00021283902,-0.4424299,-0.25932777,0.41872352,0.5546544,0.22735573,-0.044823818,-0.06518758,0.04678219,-0.06264968,0.17784408,0.025384422,0.06131712,-0.03401138,-0.6738656,-0.2526296,0.35783356,0.19326305,0.29545486,-0.07641484,-0.113202766,0.32019046,-0.041985948,-0.0037852,-0.051265035,-0.5748966,0.20333044,-0.14020668,-0.35213518,0.56068814,-0.14457823,0.3630236,0.20320176,0.090348,-0.119502746,0.26709288,-0.08365459,0.7090674,-0.099737115,-0.09163766,-0.4006974,0.19983704,0.08373484,-0.17211781,-0.02340485,-0.47440678,-0.0026073272,-0.5378859,0.44868726,0.0924365,-0.16697748,-0.0041736807,-0.21556006,0.05771682,0.559801,-0.05129274,-0.051662996,-0.23321694,-0.2029267,-0.21442273,-0.34303203,-0.19735578,0.30268925,0.13729778,0.3540482,-0.20732005,-0.063843735,-0.0857227,0.58483195,0.11321778,0.48608214,0.1785936,0.05344379,-0.11795396,-0.23738204,0.1522923,0.42789188,0.019572694,-0.12698159,-0.22163679,-0.58729434,-0.3068397,-0.027745353,-0.062266205,0.4680074,0.15280363,-0.081380166,0.663565,-0.11534107,0.9862051,-0.022198327,-0.35731122,0.07355007,0.5240288,-0.0764677,-0.14894739,-0.06704518,0.9111525,0.5760931,-0.055458207,-0.11645913,-0.2144716,-0.05184821,0.16260375,-0.25479373,-0.11585469,-0.11184227,-0.4435179,-0.3199155,0.14004669,0.23133649,0.19330564,-0.09204575,-0.018824257,0.1091255,-0.053509746,0.17322849,-0.3472956,-0.17497307,0.35166058,0.059127733,-0.02088487,-0.0025962775,-0.50642693,0.54212034,-0.4853953,0.1688275,-0.29963094,0.21483533,-0.2699798,-0.29900593,0.19370945,-0.011488144,0.3306207,-0.3710418,-0.38586813,-0.22657882,0.40857804,0.27997488,0.095605,0.50713736,-0.28058985,0.030795995,0.057707712,0.5558361,0.6499299,-0.21864568,-0.093547136,0.20455208,-0.43526506,-0.6245914,0.2345692,-0.20749713,0.15690793,-0.01665804,-0.07343665,-0.488972,0.2430483,0.32690188,0.044518325,-0.09465778,-0.5991271,-0.2665962,0.23682928,-0.36284435,-0.15381558,-0.36500898,0.120060004,0.51546776,-0.33170465,-0.29499093,-0.019942282,0.1361939,-0.0770558,-0.52071327,-0.10040967,-0.37512133,0.41809064,0.13996531,-0.1770905,-0.20611653,0.042079903,-0.3636133,0.36819443,0.012202758,-0.3647352,0.008608231,-0.35330504,-0.11998881,0.84460247,-0.2418762,0.061283514,-0.45089835,-0.32590806,-0.78619605,-0.29002926,0.7402909,0.02187988,0.17166114,-0.7018022,0.17432836,-0.11967835,0.01116798,-0.22846673,-0.13319804,0.42313734,0.04127141,0.39924514,-0.07767054,-0.8013356,0.20832671,0.03271289,-0.26261842,-0.5498199,0.4126062,-0.016868714,0.6599379,0.03867433,0.12979466,0.27881548,-0.3181504,-0.112140805,-0.261529,-0.25975984,-0.5361119,-0.02751551,568 +698,0.3704906,-0.0024966185,-0.6078345,-0.3376276,-0.09878536,0.12660497,-0.15815155,0.10614827,0.12716118,-0.38169414,-0.01965939,-0.2949735,-0.022235371,0.49515992,-0.123758785,-0.88254154,-0.110029906,-0.07786691,-0.6764683,0.5014741,-0.43006772,0.4628828,0.117574304,0.3746721,-0.012941787,0.34378308,0.3536633,-0.13410822,0.10519035,-0.06337169,-0.30515218,0.0777306,-0.73161477,0.18258992,0.22247903,-0.34472463,0.015620346,-0.13988529,-0.21879798,-0.5602292,0.45586997,-0.78606707,0.51165235,-0.03889197,-0.32249227,0.11315564,0.06922117,0.30808085,-0.5150905,0.13904612,0.23102997,-0.13385858,0.17709014,-0.18072279,-0.19761038,-0.53742945,-0.4896811,0.020304931,-0.6591568,-0.33111814,-0.30976275,0.19817623,-0.32435784,0.0943123,-0.2447048,0.37071338,-0.41318643,-0.16770472,0.21867545,-0.34720626,0.30561417,-0.40135098,-0.13930947,-0.06998007,0.20556389,-0.06366516,-0.095218115,0.13326655,0.1153708,0.5587013,0.15844005,-0.13776158,-0.120332725,-0.20079091,0.061294224,0.45058867,-0.008516959,-0.35359034,-0.26317888,-0.15662977,0.06396182,0.23150107,0.04734645,-0.4673372,0.025083922,0.06528172,-0.30972055,0.15549964,0.40163884,-0.53482354,-0.278275,0.44502875,0.35022062,-0.051499195,-0.13557006,0.24511172,0.07774603,-0.37057844,-0.24080302,0.2581614,-0.028914033,0.54088026,-0.09365915,0.34858453,0.8465974,-0.051860604,0.13950744,-0.35795063,-0.29921764,-0.32906854,-0.14490317,0.016485123,-0.032257777,-0.4082926,0.0536352,-0.30904084,0.9665435,0.10964254,-0.69985175,0.29124412,-0.50104445,0.09456228,-0.15842026,0.63847095,0.6566902,0.16543795,0.00039223983,0.947208,-0.78155077,-0.06589315,-0.053634174,-0.46789947,0.051999476,-0.019270118,0.003263125,-0.41766363,-0.053494714,0.26184437,0.15794824,-0.12738179,0.29369804,-0.3139771,0.07167729,-0.04272574,0.61859894,-0.47048706,0.043338712,0.669235,1.0672736,0.8215411,0.12879734,1.3254813,0.36603674,-0.2657211,0.20424904,-0.3618965,-0.60527396,0.18617226,0.47377974,0.5712154,0.29075214,0.05967664,0.1409252,0.401632,-0.20452,0.25863212,-0.034284517,0.13097781,-0.13088554,-0.030317325,-0.36140898,-0.09675277,0.21856774,0.081788644,0.10523792,0.24365467,-0.07466993,0.45681491,0.16877052,1.5409739,-0.09589516,0.2701803,0.06880413,0.44221753,0.22814098,-0.09280384,-0.04497907,0.33261523,0.515924,-0.05629001,-0.72890913,-0.02931672,-0.20883894,-0.4878392,-0.21019793,-0.43449944,-0.12006059,-0.05919582,-0.57266724,-0.0538595,0.102951065,-0.4044246,0.29243523,-2.5042737,-0.1592358,-0.23908004,0.25711364,-0.32585767,-0.2747831,-0.12992099,-0.35366088,0.4501148,0.60351264,0.29025716,-0.626775,0.45889366,0.4085879,-0.022737969,-0.10096605,-0.59827167,0.02307206,-0.13436069,0.38939655,-0.15506744,-0.14792088,-0.29807475,0.33181652,0.49456173,0.0063462993,-0.14716305,0.1022406,0.39782116,0.24029444,0.63522726,0.2632121,0.6745999,-0.0496363,0.03245518,0.3686847,-0.25326177,0.3015849,0.12378986,0.22635542,0.26610997,-0.6037119,-0.6965404,-0.7519516,-0.49166366,1.2428483,-0.54094875,-0.34398368,0.3635046,0.11756534,-0.29182965,0.011949851,0.53165185,-0.1461918,0.0014229462,-0.6825263,0.09546314,-0.08611577,0.366412,0.0088551305,0.028418344,-0.39833933,0.7115653,-0.11990796,0.6001343,0.42601982,0.07431814,-0.046511896,-0.5521421,0.13209987,1.0443099,0.2852264,0.13274124,-0.10720874,-0.20142776,-0.19738986,-0.17913525,0.24348791,0.43225816,0.80574524,0.18231909,0.15394977,0.3871842,-0.2210769,0.032039277,-0.06311304,-0.32540497,0.07437127,0.0438877,0.53180104,0.37878424,-0.15526769,0.39384466,-0.18384682,0.23000516,-0.28434533,-0.42010528,0.6735372,0.781448,-0.12275211,-0.17346868,0.5107866,0.4369064,-0.35651773,0.27670005,-0.5126902,-0.28360432,0.59708273,-0.077135794,-0.4100117,0.15773311,-0.30875885,0.08034511,-1.0700608,0.1208208,-0.10409494,-0.45077446,-0.5620203,-0.2472896,-4.5446544,0.22608344,-0.24572727,-0.20022987,-0.15676244,-0.18803263,0.4945951,-0.62312233,-0.500335,0.026677074,-0.07256996,0.5382846,0.085007444,0.308592,-0.3507331,0.081357755,-0.24333912,0.19732578,0.07620731,0.22085612,0.12042323,-0.3361302,0.12847503,-0.27414656,-0.52316785,0.019529043,-0.3777504,-0.6106163,-0.16314776,-0.51161706,-0.30633932,0.7514979,-0.36180407,-0.0691611,-0.31041685,-0.17417867,-0.30727595,0.4297293,0.17865944,0.14475185,0.021169974,0.056503363,-0.2741966,-0.49852827,0.06843695,0.068593994,0.2904306,0.22134799,-0.26995146,0.025199037,0.4570482,0.42510265,0.07679897,0.40871873,0.33806822,-0.035617195,0.3592388,-0.40951458,-0.14891766,-0.7544132,-0.44508868,-0.2890462,-0.3496856,-0.6235176,-0.3308096,-0.319147,-0.7561843,0.38979685,0.0144517375,0.095774494,-0.026040109,0.25284058,0.2470024,0.06591354,-0.016411178,-0.14693993,-0.19804981,-0.502788,-0.42779768,-0.6396113,-0.55402094,0.27764672,0.9983455,-0.08266051,-0.2918923,-0.033244003,-0.4674911,0.12450567,-0.029615935,0.38131967,0.43151698,0.35628513,-0.11772589,-0.7495959,0.55310804,-0.06309201,-0.017817222,-0.58149236,-0.16416192,0.7012847,-0.7605921,0.38953882,0.2416288,0.19845602,0.18002568,-0.33912256,-0.32298607,0.0816286,-0.29406554,0.51394105,0.14320269,-0.5884494,0.4308343,0.15811405,0.2616398,-0.6484924,0.46063954,-0.089653954,-0.31827608,0.14873847,0.28450277,-0.12773998,-0.04386209,-0.19349942,0.096090786,-0.47902107,0.2875078,0.47855794,0.06531459,0.5546788,-0.101750575,-0.1333084,-0.40126726,-0.047736984,-0.6226486,-0.11740172,-0.027166951,0.14218542,0.060517572,0.15683314,-0.11073436,0.40841818,-0.31252113,0.27491176,0.095369324,-0.12788974,0.3392026,0.43087006,0.15250053,-0.56600374,0.6996615,0.019472765,0.11548297,-0.13262135,0.11808252,0.599398,0.38676625,0.29119322,-0.25129038,-0.17821983,0.24600722,0.5708876,0.2714534,0.43081334,0.29492956,-0.057233855,0.3890949,0.28837216,0.029172858,0.10356716,-0.2058352,-0.0654705,0.106357485,0.23054862,0.35195652,0.13409434,0.43422583,-0.12512472,-0.23224185,0.2670596,0.18784314,-0.4067643,-0.81175804,0.31429064,0.28546137,0.52043885,0.65726715,-0.061120935,-0.008889391,0.40624663,-0.42647776,0.09297173,0.14746477,0.16670784,-0.612316,0.62455875,-0.46424693,0.42813656,-0.22549915,-0.015680313,-0.045665376,0.20980667,0.103288375,1.0160304,-0.029036455,0.087338194,-0.070241995,-0.1527746,0.09081978,-0.42446405,-0.009374142,-0.47231197,-0.25122312,0.55082333,0.29434964,0.27162474,-0.2916415,-0.14760798,-0.03326629,-0.0960103,0.0034406553,-0.13918355,0.043545716,0.08082381,-0.6548503,-0.5313502,0.5712553,-0.047715876,0.07423105,0.10165061,-0.46995604,0.29894632,-0.16736071,-0.02995934,0.026437186,-0.54117036,0.11096562,-0.32373735,-0.5182496,0.16253175,-0.6269196,0.3588803,0.1737208,-0.02457403,-0.19536725,-0.05106122,0.2293356,0.64164674,-0.047707465,-0.19885272,-0.42593908,-0.0791671,0.3283944,-0.33387807,-0.18380943,-0.3265562,0.030456487,-0.55654144,0.31635576,0.015986571,-0.23285338,-0.0062007857,-0.22281606,-0.042744543,0.35009167,-0.29389355,-0.034430675,0.25670296,-0.08242726,-0.17909919,-0.03897386,-0.42855275,0.245049,-0.031615175,0.14913402,0.1898621,0.0027670264,-0.056939326,0.2755435,0.17974922,0.29521048,0.35522473,-0.13969943,-0.2941732,-0.04351427,0.05137945,0.19411789,0.1555362,0.035218734,-0.10409711,-0.4798487,-0.22219552,0.22748202,-0.14327127,0.12856127,0.016208824,-0.5712154,0.6861508,0.2346516,0.9484586,0.14028288,-0.36645332,-0.012950833,0.499754,0.123996146,0.10076763,-0.22648494,0.951306,0.6289707,-0.21529172,-0.3240351,-0.28022182,-0.32028204,0.2932619,-0.26227978,-0.27169755,-0.027865509,-0.6892421,-0.25166124,0.05225011,0.28679878,0.12929606,0.16174713,-0.033634387,0.015412809,0.098608226,0.4570091,-0.5849642,-0.058925383,0.27570614,-0.02444965,0.14953627,0.3000015,-0.38410944,0.5251148,-0.78316075,0.07863617,-0.48914865,0.016378181,0.14858674,-0.22610983,0.13924792,0.04019409,0.39449283,-0.24174117,-0.21843903,-0.28280032,0.7983399,0.18926719,0.3815571,0.8738933,-0.13126579,0.005876825,0.10326339,0.43475068,1.3562093,0.07496767,0.096602716,0.19311197,-0.3180332,-0.5928426,0.11259401,-0.2726093,0.19224486,-0.082831904,-0.4443488,-0.2528242,0.26969293,0.026693119,-0.10974321,0.14111087,-0.49526644,-0.47276127,0.5009546,-0.2431688,-0.33921242,-0.32855308,0.18279296,0.666187,-0.39993063,-0.1720627,0.10615837,0.29312906,-0.2871535,-0.614437,-0.04195822,-0.24253368,0.42021412,0.23707727,-0.24080889,0.10287281,0.36776236,-0.2790095,0.27031457,0.3201463,-0.37987024,0.035015162,-0.25066006,-0.16069461,1.0888652,0.010030921,-0.08398448,-0.77231085,-0.5070087,-0.97626245,-0.52653503,0.5920335,0.014948911,0.031881526,-0.4700065,-0.07874116,-0.09314818,0.33517054,0.20469409,-0.454041,0.45289552,0.14482418,0.648312,0.06568882,-0.89530987,0.047225315,0.07957457,-0.19108392,-0.6428037,0.5904815,-0.20107427,0.46862215,0.013774536,0.083425775,0.22927618,-0.66316354,0.24931091,-0.4611444,-0.21475609,-0.8658473,0.1419757,572 +699,0.36487186,-0.15735105,-0.40603644,-0.10858952,-0.21422479,0.07587158,-0.036278434,0.5649571,0.22209597,-0.30876815,-0.13093139,-0.17546934,0.08698602,0.34677935,-0.23712808,-0.37429258,0.10209255,0.03606982,-0.2936663,0.3297567,-0.37030178,0.14193675,0.10523136,0.28143886,0.08598394,0.2913902,0.24766713,-0.07830617,0.04246454,-0.17772597,-0.2069162,0.2723641,-0.5221668,0.32562062,-0.21798134,-0.19150877,0.17684709,-0.49475825,-0.40121195,-0.618454,0.23950148,-0.76482624,0.3955431,0.30253854,-0.20717217,0.3800053,0.28354105,0.1400258,-0.21416521,-0.2586512,0.09252768,-0.059241794,0.1125129,-0.23433568,0.09505956,-0.27203226,-0.4695549,-0.027588844,-0.40705585,-0.23775527,-0.30755073,0.12670654,-0.33082217,-0.034398057,-0.049606755,0.41541594,-0.37695476,0.037125748,0.28027636,-0.27944553,0.37555435,-0.5579993,-0.21389577,0.030857814,0.15571894,-0.16625811,-0.21262433,0.3289281,0.1584754,0.30884707,-0.20830187,-0.1114603,-0.06729938,-0.11116348,-0.007844293,0.56387377,-0.38590086,-0.4817026,0.035510343,0.07612739,0.09649165,0.0006910723,0.19436306,-0.18825667,-0.14861844,-0.06062585,-0.12053133,0.28698957,0.46780393,-0.26250643,-0.14935772,0.14022371,0.43516424,0.13880783,-0.14417535,-0.09952119,0.0701884,-0.50339884,-0.19237396,-0.19342747,-0.11571736,0.61346364,-0.1285482,0.30513164,0.60439306,-0.10619171,-0.0004105568,0.20337346,0.10566708,0.09551663,-0.25469238,-0.13550456,0.20589226,-0.58784574,0.044305343,-0.16523114,0.7956984,0.16792253,-0.72742695,0.30219197,-0.4836797,0.1081998,-0.08339043,0.3595732,0.59581906,0.3667326,0.29409367,0.6864671,-0.5591088,0.01968529,-0.06891887,-0.34025905,0.25899127,-0.11950262,0.07350041,-0.42969233,-0.06713787,0.11402215,-0.08936583,0.10727937,0.10910424,-0.52970093,0.034138866,0.31761152,0.80344254,-0.21611995,-0.012334457,0.55283123,0.9761511,0.78989947,0.064429365,0.760446,-0.07329458,-0.21778774,0.26870957,0.08577368,-0.64646965,0.17098615,0.3581287,0.5360583,0.028128084,0.13280785,0.09595335,0.41508833,-0.4944331,-0.01696681,-0.16742608,0.33524317,0.13540341,-0.10611889,-0.39425856,-0.40820327,-0.08038007,0.1379245,-0.14051296,0.32386974,-0.011596262,0.39489874,-0.025119938,1.5391686,0.087512955,0.12434785,0.20656958,0.49825728,0.17958157,-0.17152795,-0.10980876,0.2708407,0.19434598,0.17895089,-0.38010788,0.03329817,-0.06493342,-0.43827564,-0.08397853,-0.35903242,-0.13588804,0.10369018,-0.6106847,-0.21709129,-0.17785452,-0.1053445,0.45567995,-3.1364088,0.017727228,-0.013997509,0.3163004,-0.17809513,-0.16251029,-0.021245709,-0.41896123,0.2638531,0.45045346,0.40471458,-0.7250293,0.10738647,0.3858263,-0.47423846,-0.0712769,-0.5306304,-0.07433407,-0.047359724,0.31114784,0.19727887,-0.03815686,0.004069766,0.300046,0.4259308,-0.010850549,0.021450039,0.051839527,0.21390635,0.021358414,0.35116836,-0.1050971,0.20646851,-0.26389673,-0.18044621,0.25504223,-0.39922297,0.14133269,-0.2713465,0.016770054,0.32540685,-0.2356995,-0.8448976,-0.57746917,-0.06593796,1.1248306,-0.19906637,-0.318263,0.3842452,-0.53339994,-0.18166214,-0.17792627,0.4189815,-0.07544995,0.04829167,-0.69563645,0.039243285,-0.17892888,0.036410194,0.04327134,-0.27369606,-0.41860586,0.8631046,0.044234872,0.5093612,0.3775049,0.042112395,-0.36403576,-0.4050355,-0.0641644,0.6234499,0.37810084,0.23893073,-0.09883881,-0.11282611,-0.19130291,0.06352267,0.17322353,0.6009586,0.68987477,-0.10012674,0.14164528,0.2237534,0.019470004,-0.008741269,0.060782436,-0.3047749,-0.020210322,0.07060344,0.6979951,0.8690271,-0.1300342,0.21024229,-0.17208345,0.36621696,-0.16086648,-0.37075642,0.3308096,0.67002517,-0.048630908,-0.1766703,0.5847574,0.6011928,-0.07629934,0.36038905,-0.5292763,-0.36716363,0.44677794,-0.13447748,-0.39908966,0.13676362,-0.36247152,0.13051604,-0.84555346,0.4224925,-0.2769841,-0.55936176,-0.4890343,-0.11993058,-3.331907,0.14892006,-0.29043004,-0.20199296,-0.031736817,-0.084262796,0.24007085,-0.6458901,-0.32709247,0.22959112,0.07369077,0.679696,0.038907316,0.03408392,-0.21555866,-0.30226326,-0.09821362,0.07489743,0.00034820117,0.17390767,-0.113660924,-0.3699608,-0.065756746,-0.24902947,-0.20581843,0.12234871,-0.35199922,-0.5117419,-0.15856239,-0.36399922,-0.35591,0.5555224,-0.37756795,0.063142456,-0.10938342,-0.08380957,-0.21180026,0.14840639,0.13943698,0.15776433,-0.11915596,0.115483746,-0.038107175,-0.33568624,0.3705156,0.080587216,0.51402265,0.40794915,-0.10334595,0.029449355,0.7133268,0.47209594,-0.16104317,0.8802102,0.44832292,-0.030198066,0.27989018,-0.15777133,-0.34679496,-0.44833463,-0.2788043,0.15107176,-0.24771592,-0.2771022,0.09027354,-0.4184148,-0.53129363,0.41237915,0.02647378,0.06754282,-0.029750952,0.098583385,0.46163642,-0.32695484,-0.113814145,0.00078631134,-0.16998744,-0.78207374,-0.23729931,-0.61048514,-0.3510167,0.10749744,0.9547361,-0.31028542,-0.018411666,0.08861833,0.024442453,0.15771468,0.17782345,-0.19979924,0.06722303,0.43626016,-0.095481105,-0.735105,0.5349543,-0.24664567,-0.18110472,-0.5320863,0.028751502,0.31892532,-0.6028829,0.5912987,0.30100173,0.10383158,-0.04933876,-0.5648189,-0.31361723,-0.09418878,-0.24511887,0.4022285,0.25927007,-0.8276809,0.3563175,0.2331914,-0.47087905,-0.6684607,0.45047528,-0.038743872,-0.4084714,-0.130413,0.14425841,-0.0037812178,0.029688615,0.053717468,0.06655186,-0.38933712,0.2621404,0.24553493,0.021414671,0.20402241,-0.15853368,0.044494517,-0.5733832,-0.006178448,-0.38631403,-0.302607,0.27018154,0.022653012,-0.031134052,0.14989218,0.07937172,0.33086526,-0.2578857,0.15969007,-0.08154494,-0.3109733,0.48956048,0.3755663,0.446209,-0.48295778,0.57090217,-0.020160824,0.03570551,-0.09727131,0.10426628,0.3609069,-0.038691558,0.17323357,-0.2175774,-0.21235381,0.22570907,0.9667329,0.10636003,0.34667775,-0.04310389,0.19468147,0.32573044,-0.0209755,0.13003436,0.27151683,-0.5552086,-0.10563533,-0.3066209,0.09698325,0.32191724,0.07990571,0.25959116,-0.019816756,-0.40381426,0.1277609,0.27234295,0.12099433,-1.1278561,0.29309514,0.087579146,0.7249315,0.5890416,0.078352876,-0.04586204,0.8833365,-0.13150644,0.08633289,0.2753619,-0.033942763,-0.46184632,0.59450114,-0.7508964,0.39216217,-0.050725617,-0.16384825,-0.19671535,-0.13778223,0.30825365,0.6422788,-0.26303464,0.0024278255,0.09699763,-0.33619946,-0.01989204,-0.49500492,0.014317971,-0.71850085,-0.21244925,0.4993407,0.42984736,0.37613523,-0.077636905,0.0024775588,0.08819175,-0.06938907,0.048655234,-0.01563572,0.046906646,0.050342016,-0.64830166,-0.07150157,0.57715565,-0.023251662,0.17771989,-0.11790054,-0.14456694,0.3097256,-0.28609392,-0.18225648,-0.11755837,-0.45587867,0.2587191,-0.28284097,-0.38521937,0.7576005,-0.1501302,0.21267447,0.3062247,0.14151451,-0.04774638,0.3277108,0.07386164,0.74113995,-0.20337826,-0.20833698,-0.36716557,0.18142898,0.07573543,-0.038065538,-0.10126583,-0.3030024,0.19074291,-0.35858396,0.4363665,-0.07249643,0.06454779,-0.07984298,-0.19171391,0.08275691,0.60538113,0.032815713,-0.18457168,-0.09546041,-0.13476315,-0.16024445,-0.17629863,-0.22860739,0.21152815,0.05886388,-0.014866618,-0.023400893,-0.23168813,-0.11729583,0.16257858,0.019105779,0.40533713,0.13475114,-0.05441346,-0.32085493,0.070650086,0.091399945,0.30416968,0.0122523755,-0.11366984,-0.336814,-0.4617168,-0.34474578,0.14029959,-0.04012637,0.24084578,0.04606841,0.010848867,0.9192137,-0.14068483,1.004067,-0.024323292,-0.30235815,0.073883414,0.5064039,-0.09290746,0.06411802,-0.2460843,0.7714477,0.4465623,0.055536173,-0.10101962,-0.30912507,0.2349051,0.15252198,-0.089073986,-0.14692242,-0.007294508,-0.57263845,-0.088549286,0.2365784,0.36042306,0.24740201,-0.109700784,-0.091730826,0.22408067,0.043796062,0.26321125,-0.45895672,-0.25988615,0.3227423,0.28336352,0.03501521,-0.032554492,-0.39873427,0.37442926,-0.36012918,0.010770449,-0.24743748,0.14290193,-0.23538734,-0.32850975,0.100060895,-0.19232838,0.39732757,-0.49120155,-0.20163797,-0.22693275,0.4168165,0.14274296,0.13137843,0.41465357,-0.23760289,-0.11899756,-0.05523672,0.4767103,0.7551727,-0.42371625,-0.14022508,0.5331826,-0.22838178,-0.5789301,0.20693396,-0.28635606,0.121796794,-0.11788073,-0.151007,-0.5204892,0.2288805,0.40021098,0.036449146,-0.049711235,-0.6046771,-0.25556546,0.3168557,-0.41721475,-0.2987592,-0.37950963,0.16966292,0.42859334,-0.12612677,0.014226435,0.15641788,0.20908825,-0.15869261,-0.44512287,-0.0036151523,-0.25409147,0.32614067,0.06511996,-0.3271728,-0.27418646,0.24853578,-0.33358085,0.26590303,0.15494926,-0.20351802,0.03222323,-0.29151586,0.18761417,0.88673306,-0.1573971,0.06851116,-0.46804062,-0.43199474,-0.73295915,-0.29144892,0.61283755,0.04544755,0.14306742,-0.5337109,-0.18104461,0.030023117,-0.011706031,-0.25101992,-0.11255347,0.4799202,0.08295868,0.3429472,-0.05461913,-0.6626924,0.11996538,-0.042791665,0.039422836,-0.45831713,0.3744942,-0.032638706,0.8477905,0.060393132,-0.062040623,0.21936128,-0.31222498,0.10694924,-0.18789695,-0.25829026,-0.5805616,0.112458535,573 +700,0.2951019,-0.47747055,-0.3779799,-0.2274859,0.03488745,0.0013182277,-0.072509795,0.5363439,0.22806257,-0.48291272,-0.12893535,-0.20901237,-0.034299973,0.29450253,-0.21028207,-0.37157533,-0.22853246,0.02467591,-0.53312707,0.46513146,-0.5283334,0.13161011,-0.1208648,0.2904093,0.20796555,0.23342909,0.09500004,-0.01965587,0.11234784,-0.19546248,0.0140570905,0.268496,-0.37393174,0.26018646,-0.09928743,-0.30937058,-0.06257622,-0.40234062,-0.4367342,-0.816021,0.34019944,-0.8094437,0.24875514,0.0774849,-0.42129436,0.038872495,-0.13266823,0.24414724,-0.30443928,0.0506447,0.17633702,-0.07690513,0.13622771,-0.13751106,-0.042490996,-0.26972508,-0.5528937,0.09182589,-0.30182916,-0.20826967,-0.05209609,0.13087882,-0.48717138,0.015423389,-0.28316313,0.54558206,-0.4549983,-0.16926406,0.2488474,-0.27218372,0.41588223,-0.7606404,-0.3773542,-0.14614049,0.12740342,-0.08123536,-0.22824925,0.24790621,0.24449264,0.48633415,-0.011118247,-0.03816932,-0.22192828,-0.08152258,0.28319106,0.31362915,-0.10653989,-0.4883482,-0.03458453,-0.11416657,0.14733464,0.28748277,0.19149105,-0.32668245,-0.059260108,0.251594,-0.31999052,0.22715984,0.5001345,-0.31005663,-0.25638515,0.23735796,0.6390134,0.29606798,-0.12502974,0.00734506,0.019128557,-0.53959054,-0.21687375,0.21030211,-0.2472783,0.3607475,-0.101086326,0.27019536,0.68299514,-0.3567846,0.026992382,-0.16219164,0.009225154,-0.3019104,-0.38879293,-0.3530049,0.20813963,-0.26720232,0.11039289,-0.24033754,0.92206985,0.24677232,-0.71007454,0.32801723,-0.3631046,0.22504385,-0.22120056,0.70695454,0.7094723,0.39365372,0.37241906,0.74552464,-0.399048,0.09176107,-0.1507061,-0.14291352,0.10682189,-0.30353305,0.0009828302,-0.48499945,-0.16659003,-0.052217424,-0.13377748,-0.050092187,0.55210185,-0.58208495,-0.02733778,0.1554233,0.6449007,-0.27628046,0.21464667,0.65198165,1.0154315,1.0612098,0.1967316,1.2150362,0.25104567,-0.34449542,0.34259027,-0.32803342,-0.8678865,0.2887476,0.4714788,0.36833826,0.098198146,-0.06440044,0.018577438,0.30879658,-0.5616592,0.2897759,-0.29862642,0.46298033,0.0976009,-0.09837738,-0.41289502,-0.28695264,-0.1324562,0.025301393,-0.16129738,0.13681039,-0.18144979,0.36436015,0.022038195,1.6192061,-0.25436723,0.10890247,0.0779666,0.5733795,0.026662905,-0.3712464,0.06987702,0.30043286,0.47692505,0.03207353,-0.73545486,0.29499772,-0.1399464,-0.41172057,-0.13103594,-0.38317686,0.13317388,-0.020195773,-0.24455017,-0.2546911,-0.009630208,-0.4629497,0.4232354,-2.5864055,-0.231864,-0.21449134,0.3786863,-0.16102263,-0.23264867,-0.043612845,-0.5804104,0.4489187,0.43803793,0.43204758,-0.7341036,0.08008644,0.50635344,-0.43747228,-0.04140746,-0.6396945,-0.123788245,-0.058332562,0.27426794,0.08199261,0.083261214,-0.12967418,0.025130602,0.35335982,0.10192359,0.11945712,0.2447904,0.30251673,0.013553172,0.5233403,-0.013614835,0.4273335,-0.30776295,-0.11153329,0.5000726,-0.45226794,0.13027702,-0.1312794,0.086209774,0.47952938,-0.5916985,-0.695608,-0.69808763,-0.4235616,1.3040494,-0.116312355,-0.53597945,0.4066068,-0.35484698,-0.22301592,-0.36714518,0.54181725,-0.2561061,-0.2246895,-0.86815655,0.01656131,-0.121194325,0.29951507,0.020294258,-0.08783223,-0.32283306,0.5441158,0.0018180883,0.6233861,0.32692495,-0.13243955,-0.15995778,-0.41680485,-0.014898699,0.8911488,0.39452913,0.14724709,-0.18725102,-0.082851924,-0.26613954,-0.039296865,0.1302485,0.4768701,0.7366035,-0.112221725,0.13895467,0.35665828,-0.19566256,0.05692502,-0.10916057,-0.22192731,-0.15239997,0.09764057,0.57896817,0.463893,-0.10586647,0.22753888,0.009175273,0.25079095,-0.038784746,-0.42902285,0.3784248,0.8864245,-0.09431656,-0.22534283,0.51892287,0.5517864,-0.3613807,0.39260957,-0.44968012,-0.20927739,0.5171766,-0.23763426,-0.44631752,0.20541619,-0.43128344,0.2620093,-0.7456089,0.2636603,-0.4094917,-0.38021633,-0.7765802,-0.1363119,-2.5665948,0.1289308,-0.10527576,-0.3138582,-0.024750553,-0.09904964,0.2776565,-0.45547026,-0.56174374,0.14517261,0.18559934,0.54750293,-0.014361979,-0.06266448,-0.29971507,-0.23179197,-0.42526627,0.058940366,0.11405595,0.3181308,-0.009467432,-0.465223,-0.006173863,-0.14314719,-0.42317012,0.05085886,-0.53280705,-0.63135105,-0.24290554,-0.5283538,-0.51656497,0.6213235,-0.07237422,-0.031696014,-0.080421686,0.024048833,-0.0964662,0.30637157,0.11116031,0.12854774,0.030179657,-0.09487753,-0.16819994,-0.34770787,0.1339327,-0.02453839,0.12403871,0.32546085,-0.18743195,0.23653391,0.52186054,0.5952022,-0.028383361,0.6919007,0.6508399,-0.12105938,0.16769339,-0.19151387,-0.2442242,-0.55598694,-0.23612055,0.20982496,-0.44708723,-0.5620359,0.017309437,-0.29050305,-0.7010753,0.4906709,0.0060053514,0.15052748,0.22735284,0.19919914,0.49781865,0.06623501,0.09752607,-0.04425202,-0.06817445,-0.53777707,-0.3056374,-0.823179,-0.47245768,0.28925183,1.0528618,-0.25770023,-0.14663976,0.13586222,-0.37219998,0.046207007,0.04413589,-0.119155005,0.15823682,0.38190192,-0.012047181,-0.46144933,0.33829638,0.15814503,-0.13636523,-0.5145436,0.15357651,0.5920357,-0.699803,0.55511886,0.15322557,-0.022123434,-0.24500741,-0.3312715,-0.25558352,-0.15893991,-0.16876656,0.41280732,0.19413108,-0.692656,0.5567151,0.25151423,-0.044384122,-0.734559,0.36505303,-0.11405521,-0.18615882,-0.027913276,0.3148429,-0.10195708,0.041372154,-0.1877756,0.31383738,-0.4702865,0.28055555,0.26821,-0.22554214,0.39158043,-0.10434242,-0.129588,-0.6999133,0.071140066,-0.58816946,-0.21929908,0.38963154,0.09206548,0.008583454,0.22673383,0.21377905,0.5026277,-0.047744334,0.15561059,0.074788935,-0.15148745,0.34000224,0.3860405,0.45860404,-0.4179524,0.5828567,-0.020427873,-0.04673392,-0.13017358,0.11087261,0.3641674,0.34761792,0.35820845,-0.19009866,-0.3969777,0.4118117,1.0552158,0.1221964,0.4567384,-0.074380346,-0.1267308,0.27871138,0.17142835,0.3226999,-0.16557792,-0.42625517,0.15822864,-0.103482634,0.0659936,0.3583466,0.14660713,0.36892554,-0.14502221,-0.37685812,-0.025943944,0.19257925,-0.075970605,-0.9712134,0.31957,0.029138135,0.85625577,0.6612677,-0.07310274,-0.04399865,0.5226905,-0.13062915,0.12617853,0.21559437,-0.0073792385,-0.6037578,0.4366636,-0.6732968,0.5342337,-0.012825351,0.01805679,0.06910551,-0.16614045,0.50022054,0.5315594,-0.15785061,0.0029222334,-0.06901527,-0.31893033,0.23019767,-0.51189387,-0.045027785,-0.61323863,-0.476353,0.53506786,0.4959768,0.36304876,-0.1632792,0.035102077,0.050737087,-0.16425602,0.26655078,-0.0924687,-0.039701283,-0.005212408,-0.7183448,-0.19505763,0.47264078,0.18692642,0.011945699,-0.024086159,-0.5117899,0.19876102,-0.22279817,0.05100437,-0.10161305,-0.66821533,-0.047525883,-0.37790135,-0.15625122,0.40168196,-0.094825655,0.30662963,0.30072308,0.10722662,-0.2676701,0.030716758,0.09602273,0.8617738,-0.29514116,-0.10120551,-0.5939073,0.147845,0.2579865,-0.2047616,-0.107938655,-0.14843586,-0.11653878,-0.497921,0.6082146,0.059441462,-0.26479873,0.13912779,-0.1846327,-0.10636111,0.66907054,-0.12178914,-0.1531282,-0.1816489,-0.18822543,-0.21180059,-0.16294983,-0.079410434,0.20000838,0.2575495,0.18479435,-0.16237439,-0.12354506,0.03833047,0.45460173,0.14185208,0.22912785,0.34812766,-0.046224717,-0.37543023,-0.03745268,-0.041031383,0.54289937,0.16807358,-0.1075836,-0.11055228,-0.4781883,-0.34305775,0.08351382,-0.15391205,0.44775596,0.00715076,-0.48624527,0.50962365,0.025599498,1.0280795,0.059068523,-0.36519688,-0.063537985,0.52436393,0.025299283,-0.04849464,-0.3504098,0.7196649,0.51658785,-0.13819586,-0.097342364,-0.32651237,-0.17288682,0.33979762,-0.102832064,-0.08176829,0.000555568,-0.7928117,-0.3435163,0.14509414,0.2431515,0.21149482,-0.08247071,0.051180996,0.18341404,0.11398116,0.22810557,-0.38924348,-0.015855514,0.285005,0.05003556,-0.029795518,0.055875696,-0.4666532,0.34216702,-0.51512897,0.18108551,-0.21387137,0.11947824,-0.083382845,-0.27091494,0.24310398,-0.07714541,0.38435757,-0.33697003,-0.48598891,-0.19396144,0.5668347,0.1529811,0.23761562,0.72601545,-0.29934505,0.05992899,0.13119705,0.66379696,1.3415153,-0.14073549,-0.15088783,0.32721984,-0.38695014,-0.64295,0.3637355,-0.16431968,0.06739934,0.010904711,-0.12777312,-0.44880965,0.28669214,0.3046099,-0.12915923,0.07584499,-0.6498161,-0.20248178,0.27373502,-0.42961925,-0.13304971,-0.4959701,-0.013218818,0.57664824,-0.37334788,-0.28010064,0.1368942,0.33744764,-0.38080546,-0.34709167,-0.061325606,-0.40579444,0.29908293,0.059910104,-0.38183948,-0.05928645,0.15884282,-0.3930152,0.10040911,-0.04185478,-0.47171608,-0.060392637,-0.23697075,-0.09935905,1.0937786,-0.2794643,0.2219829,-0.37469,-0.47768638,-0.70829684,-0.12818836,0.72514164,-0.040652506,-0.0682669,-0.5523942,0.026746796,-0.023756614,-0.001427176,-0.102429025,-0.30059144,0.49972886,0.05914143,0.45338637,-0.057715178,-0.55513203,0.37014654,0.16840132,-0.02221211,-0.49303418,0.56976354,-0.018356044,0.61239535,0.033398267,0.06907205,0.18276769,-0.45712006,0.0988108,-0.14147626,-0.3456822,-0.5762665,0.1772557,583 +701,0.46921524,-0.35449123,-0.4258545,-0.2185201,-0.23156789,0.08020195,-0.025979647,0.64141786,-0.05056244,-0.38542598,-0.17611903,-0.048907004,0.05648031,0.41835305,-0.29986075,-0.45293957,-0.30277875,0.03995406,-0.43218744,0.60158926,-0.3777593,0.11590132,-0.23936258,0.42742524,0.18887268,0.24180919,0.05882626,-0.074504755,0.019948598,-0.09870986,-0.104826465,0.30514738,-0.59983927,0.11849825,-0.06294548,-0.54492176,-0.1301026,-0.48696247,-0.45500973,-0.64034843,0.35473654,-0.90221083,0.6278037,0.04985475,-0.2740884,0.42774293,0.15819423,0.2244686,-0.2519077,0.0032331645,0.031040628,0.21491326,0.20407869,-0.19304739,-0.089661516,-0.42232835,-0.71113,-0.035221323,-0.42713964,-0.119228855,-0.12725724,0.05354837,-0.26502004,0.050983515,-0.11947601,0.4010926,-0.563481,0.05136433,0.115984395,0.072107606,0.3252168,-0.58576655,-0.25236848,-0.07346051,0.2261878,-0.18388996,-0.10486378,0.28632465,0.21002817,0.33045623,-0.24696405,-0.1221267,-0.3556171,0.11165906,-0.08367748,0.4817616,-0.26691315,-0.59332794,-0.06833866,0.03936454,0.34947914,0.08933227,0.1890129,0.051776633,-0.1572446,-0.06497375,-0.24025951,0.38209394,0.45094898,-0.42209628,-0.40566295,0.44316393,0.40455708,0.22996514,-0.13487272,-0.06378314,0.0105514545,-0.5443542,-0.11098858,0.10272411,-0.3134203,0.5075223,-0.14286403,0.42638204,0.5205457,-0.15043384,0.15180649,0.120758645,-0.009090011,-0.072160445,-0.17599696,-0.4481018,0.2165439,-0.1529635,0.22526616,-0.13818334,0.68712044,0.008868653,-0.74141955,0.25830027,-0.5932135,0.10053063,-0.15185499,0.38998857,0.6093939,0.61541307,0.15071376,0.5942001,-0.21420401,0.05058286,-0.06358278,-0.22326423,0.09494955,-0.10700873,-0.16721153,-0.58024174,0.04079816,0.09949264,-0.12872522,0.044332404,0.555788,-0.5920913,-0.112973064,0.14492393,0.81516194,-0.30083707,-0.058004014,0.74427766,0.9738318,0.9299514,0.066779085,0.86999065,0.17504314,-0.2238241,0.22389087,-0.3687424,-0.7419761,0.28284198,0.41990674,-0.39678067,0.49192408,0.0068007065,-0.115191296,0.33963197,-0.37805513,0.010145183,-0.22950271,0.08022309,0.2585883,-0.17090024,-0.39064613,-0.3746002,-0.19174875,-0.0139981005,0.10163454,0.27620748,-0.32534188,0.3511809,0.06090343,1.6284868,-0.0018338698,0.057758674,0.11589641,0.64104366,0.19922297,0.04242709,0.05754486,0.24278392,0.4217766,0.21805343,-0.70635724,0.35403702,-0.09839373,-0.67928857,-0.08552318,-0.34721273,-0.18638155,-0.105759576,-0.5863279,-0.31610042,-0.07419854,-0.048528884,0.39916867,-2.6654334,-0.13491458,-0.073391944,0.4820789,-0.27234364,-0.30352747,-0.0788744,-0.38219497,0.49100515,0.3915203,0.4147027,-0.6972141,0.47937328,0.3634773,-0.51316637,0.006102226,-0.58873105,-0.097637855,-0.04254777,0.35296896,-0.054072984,0.08698913,0.4018526,0.18069674,0.39688647,-0.06879352,0.14031349,0.22140744,0.42092833,-0.010926628,0.46170458,-0.10641437,0.43180597,-0.2948527,-0.14154142,0.22210595,-0.40309933,0.11848183,-0.10812127,0.1877173,0.33474356,-0.5797754,-0.9742759,-0.61732984,-0.009314216,1.26924,-0.2090138,-0.35632688,0.12148355,-0.34013277,-0.15779313,-0.26667297,0.37837747,-0.30454248,-0.20067914,-0.9192367,0.07198368,-0.17729655,0.20864855,-0.034544602,-0.0034542084,-0.45077616,0.49422166,-0.027503835,0.6145761,0.26495412,0.13680515,-0.29125318,-0.58796567,0.057856616,0.60102165,0.44777536,0.07496638,-0.08966084,-0.14744458,-0.0797028,0.1379765,0.11901955,0.5527817,0.5183099,0.023210464,0.20221922,0.26623195,-0.11799554,0.11018681,-0.20224437,-0.16167897,-0.26418048,0.011218584,0.50082135,0.56386393,-0.314282,0.39898634,-0.22908953,0.30720723,-0.21297233,-0.47043756,0.50591993,1.1339711,-0.155909,-0.28808767,0.6596706,0.7150081,-0.28047878,0.25157502,-0.56317735,-0.3489183,0.42544234,-0.23935698,-0.35161033,0.10499598,-0.22553103,0.197452,-0.9324306,0.2486051,-0.3866913,-0.30288956,-0.5678792,-0.06774397,-3.1997793,0.11842488,-0.3035502,-0.26086468,-0.2315221,-0.41676065,0.19727468,-0.72705215,-0.63986075,0.1374422,0.13204035,0.5946777,-0.03717508,0.10624313,-0.18456429,-0.17494267,-0.29145372,0.1802203,0.19010568,0.35603845,0.10266909,-0.53987795,-0.06610529,-0.039577182,-0.5499747,0.155464,-0.55565864,-0.4390705,-0.049363974,-0.5644115,-0.34202856,0.5170969,-0.12205843,-0.0114296395,-0.11168819,0.04912527,-0.050402276,0.3383742,-0.08978617,0.120819405,0.047232565,-0.14185064,0.23629211,-0.18990186,0.34990552,-0.03452331,0.33388442,0.20524622,-0.25739905,0.19567785,0.6238747,0.48574126,0.014302856,0.6144739,0.695764,-0.111469746,0.266446,-0.3035999,-0.19169651,-0.5438702,-0.31269243,0.07968767,-0.30370614,-0.5526778,-0.009214897,-0.32305643,-0.8898314,0.5394926,-0.24212343,0.23507023,-0.047104232,0.23470281,0.66772896,-0.063007884,0.10939029,0.017090265,-0.13889143,-0.46513999,-0.3015346,-0.61722934,-0.2936326,-0.049494524,1.181314,-0.19233425,0.06821038,-0.06561947,-0.26189047,-0.007154915,0.09050859,0.008341716,0.18305159,0.38002616,-0.16514263,-0.68851334,0.40163663,-0.061880853,-0.22282313,-0.45587698,0.20817839,0.56795657,-0.6262436,0.39912707,0.31825578,0.015896609,-0.25163257,-0.5541338,-0.09288908,-0.04029008,-0.09870417,0.2443691,0.2834721,-0.77787393,0.49590385,0.32320693,-0.31197745,-0.6865879,0.66326624,0.03206688,-0.4422787,-0.10932275,0.22544803,0.24614127,-0.029845513,-0.12881497,0.26422766,-0.37034962,0.34675962,0.024921127,-0.068700075,0.30146715,-0.11177672,0.15306337,-0.7804391,0.13474193,-0.51826704,-0.29445785,0.45333216,0.044314284,0.22660989,0.14561465,-0.041231174,0.34568164,-0.43765017,0.050214887,0.014419957,-0.27542064,0.25580484,0.3252571,0.4414775,-0.4189984,0.5139941,0.026766159,-0.0063515534,0.16012059,0.14926226,0.42678657,0.13135797,0.40056625,0.04080345,-0.18762325,0.2938607,0.6804269,0.19965686,0.38846105,0.04379527,-0.15077803,0.30424723,0.0068404856,0.0695341,-0.14818671,-0.37696213,-0.07587363,-0.22485925,0.08422041,0.39871496,0.19775607,0.21347696,-0.26558435,-0.26598448,-0.04760148,0.3470089,0.027308602,-1.217382,0.36677596,0.111572474,0.7415022,0.479064,0.07161535,-0.051069837,0.62872,-0.2550038,0.14137506,0.4528238,0.2761026,-0.551751,0.5536841,-0.6247097,0.4854355,0.027901951,-0.03800771,-0.055706896,0.084446356,0.31517962,0.6855371,-0.042243913,0.06526584,0.1629645,-0.47504324,0.051182874,-0.31719434,0.081609845,-0.62104446,-0.07769963,0.6542279,0.4757833,0.2848118,-0.09258171,-0.023903133,0.04871716,-0.14976658,0.19281395,0.10728928,0.16957048,-0.110415615,-0.76287997,-0.11782826,0.5025948,-0.06315841,0.20158389,0.015606784,-0.45650652,0.23136392,-0.15722746,-0.1266515,0.049891505,-0.685405,0.10818133,-0.34388065,-0.27077147,0.4481544,-0.20489308,0.17153706,0.20637268,0.10098387,-0.29598328,-0.041765735,-0.021187397,0.7598635,-0.13879625,-0.2638526,-0.45920914,-0.051253933,0.13719454,-0.21158229,-0.0742418,-0.20298275,0.029620638,-0.27986372,0.41108286,0.1412955,-0.22288135,-0.023985047,-0.1342028,0.1296585,0.4780703,-0.07922462,-0.104960114,-0.19121607,-0.15678619,-0.28848386,-0.2875028,-0.22459698,0.29165122,0.29613495,0.09483734,-0.092545,-0.05335187,-0.12278063,0.7362999,-0.007456727,0.59460723,0.471683,0.2757569,-0.33389232,-0.26190224,0.21272947,0.5322125,-0.07464422,-0.0038836736,-0.44793323,-0.5608916,-0.11965822,0.011551518,-0.25253984,0.37356853,0.06307705,-0.19462575,0.7518067,-0.12045814,1.0263717,-0.021607904,-0.39530393,0.049847227,0.46701,0.03500277,-0.12874737,-0.24851523,0.9964293,0.60527265,-0.026292209,-0.16270001,-0.19153072,-0.047874067,0.083500914,-0.20898588,-0.22302479,-0.117472515,-0.61580634,-0.3686978,0.16479945,0.1084933,0.22908704,-0.006963363,0.110727616,0.20679805,0.011725137,0.3606561,-0.4413013,-0.17265345,0.22931567,0.26966122,0.121716775,0.20825328,-0.5928442,0.27345508,-0.42846283,0.07255301,-0.3001865,0.16626239,-0.022357885,-0.33358556,0.14300004,0.048807565,0.30804464,-0.21597527,-0.34998566,-0.21240889,0.46359533,0.02481233,0.059503928,0.5167328,-0.21932054,0.20336077,-0.034224622,0.6115338,1.0027299,-0.13294086,0.010163922,0.27592394,-0.44523412,-0.8655853,0.31713903,-0.20455623,0.2734388,-0.07659927,0.033062294,-0.5700344,0.3433707,0.25040668,0.06608885,-0.014192805,-0.5969633,-0.31255835,0.41698104,-0.31944048,-0.22266494,-0.4605136,0.13110663,0.6264973,-0.25043052,-0.15203013,0.05664197,0.3512489,-0.09030564,-0.38667026,0.05876631,-0.4928152,0.22577731,0.09069601,-0.34907973,-0.2484996,0.098304085,-0.3228054,0.3184919,0.25948116,-0.23981158,0.10901348,-0.40443838,0.024365513,0.99872726,-0.26711753,0.14070974,-0.5719588,-0.43436578,-0.9731053,-0.40125495,0.5211176,0.25251773,0.00038212078,-0.7770957,0.19637579,0.05346536,-0.4112163,-0.22216225,-0.3440245,0.5020025,0.097807065,0.28031886,-0.053414464,-0.61997765,0.2959971,0.09177112,-0.11346306,-0.40594,0.59638876,0.06941451,0.9659768,0.079547316,0.22376229,0.09228124,-0.45722926,-0.2266822,-0.114496075,-0.19428748,-0.70437753,0.11652662,590 +702,0.49487942,-0.074430555,-0.58837694,-0.027760327,-0.09330961,0.10299892,-0.30858243,0.5837196,0.2772526,-0.3838787,-0.30300546,-0.0344078,-0.13556008,0.42391986,-0.13178477,-0.51168704,-0.076729745,-0.030935256,-0.30676138,0.6497796,-0.27796057,0.19506457,0.024799703,0.5301737,0.08374821,0.072493486,0.057435855,0.11507445,-0.000849733,-0.43438175,0.11152216,0.23601992,-0.81896627,0.12515849,-0.3725037,-0.44926283,-0.16783287,-0.42948145,-0.14781928,-0.9369252,0.22299154,-0.82376456,0.6584476,0.13224052,-0.29238832,0.4878281,-0.024043588,-0.024084412,-0.007788521,-0.11816649,0.041902266,-0.2569169,-0.19366525,-0.27558687,-0.070612736,-0.2686416,-0.564053,0.050939284,-0.50502056,0.0059530577,-0.44518974,0.032802254,-0.32265773,0.057958536,-0.10947446,0.39219564,-0.49503598,-0.010291613,0.096128315,0.017602136,0.24139301,-0.6578853,-0.19617933,-0.08212383,0.16384242,-0.10579245,-0.11504633,0.30090797,0.21664794,0.47814816,-0.098753095,-0.19737779,-0.32833096,0.15296614,0.13198444,0.39268652,-0.25182423,-0.43105337,-0.03367947,-0.055827342,0.42288283,0.22027756,0.28852156,-0.0014898136,-0.094854705,0.042051837,-0.08262445,0.4967945,0.48213106,-0.3069327,-0.16067553,0.24456325,0.62869483,0.3647539,0.030786904,-0.19681567,-0.08221602,-0.5609073,-0.16846943,-0.11398188,-0.3126836,0.43197918,-0.08909308,0.1810415,0.4717913,-0.1465974,0.009344926,0.2673407,-0.057722505,0.09534606,-0.12080973,-0.30161026,0.41514808,-0.35380748,0.2606265,-0.23734643,0.47587988,-0.020248808,-0.66662127,0.23882249,-0.6113361,0.11903,0.058885142,0.5633052,0.8027963,0.66659856,0.41921228,0.7095995,-0.3883901,-0.16734654,-0.069567956,-0.1492478,0.20812902,-0.25223103,-0.04192912,-0.46275133,-0.09992109,0.01621554,-0.20686285,0.27384874,0.4599294,-0.6631781,-0.10564535,0.2230699,0.6904609,-0.17835258,-0.043660123,0.88645434,1.2322382,1.013654,-0.00074246986,0.9899053,0.13494252,-0.17094009,0.0789177,-0.0049437513,-0.7992621,0.32263944,0.43216234,-0.43483475,0.56951463,0.00056659715,-0.026556928,0.32373884,-0.53493124,-0.2742494,0.01831462,0.25328282,0.040694673,-0.3295687,-0.40159443,-0.14928684,-0.052133914,0.22989559,0.062371694,0.42113718,-0.25956497,0.3678654,0.116062604,1.1396419,-0.17215584,-0.031534158,0.098883905,0.32610497,0.26641104,-0.12923615,0.016182771,0.20459501,0.1838037,0.21214335,-0.5283391,0.17033714,-0.20079088,-0.54694086,-0.1022208,-0.24080665,-0.16691484,0.03475624,-0.2602409,-0.32459545,-0.24039735,-0.2841419,0.29158017,-2.4335704,-0.04780666,0.04915458,0.44147512,-0.14216453,-0.39256814,-0.08755,-0.34335473,0.45286995,0.4243936,0.39194414,-0.6119216,0.3000297,0.4631757,-0.6387685,-0.06790978,-0.51641154,-0.12898229,0.10289,0.36310804,0.10528845,-0.24874714,0.14203638,0.22856562,0.62642086,0.22801515,0.15607856,0.4187598,0.4615805,-0.3753548,0.18860015,-0.19295558,0.4547331,-0.2686689,-0.25700915,0.40724218,-0.33411598,0.31584784,-0.40503567,0.14658543,0.3850899,-0.36965272,-0.86062825,-0.60454935,-0.15361005,1.4684203,-0.09294032,-0.63954926,0.15783247,-0.33674246,-0.2387206,-0.081823416,0.61334443,-0.2819359,-0.010891593,-0.77083075,0.018572796,-0.1884815,0.26933038,-0.0060693976,0.043226585,-0.6136258,0.82242733,-0.050777853,0.44604117,0.2815434,0.19611952,-0.2731786,-0.58805996,0.05985037,0.97564596,0.6554658,0.15304552,-0.33456367,-0.1967477,-0.30767086,0.04498746,-0.027385028,0.72050154,0.5475592,-0.07598553,0.06917245,0.14073694,0.10299543,0.08359788,-0.17642106,-0.24823216,-0.078816876,0.05867763,0.6012405,0.86765265,-0.22931668,0.117594585,-0.11651545,0.28785178,-0.11236543,-0.4377494,0.5188168,0.8828733,-0.18399312,-0.15733562,0.7198668,0.51487595,-0.20165464,0.6073279,-0.59068227,-0.49215016,0.4592452,-0.10719834,-0.450839,0.13422006,-0.25954193,0.08913557,-0.752257,0.35477135,-0.52574044,-0.32849854,-0.51700115,0.029337117,-2.7813916,0.23093256,-0.20363854,-0.11170571,-0.40757385,-0.22109023,0.3019622,-0.7782129,-0.84851265,0.015719516,0.056519013,0.6940985,-0.25484896,0.03891647,-0.16286403,-0.6781261,-0.23279212,0.22088228,0.25677803,0.3001127,0.023660155,-0.2871252,-0.18794385,-0.08950085,-0.35621312,-0.13727702,-0.47750774,-0.4756985,-0.27076676,-0.41685915,0.039541975,0.55189157,-0.398732,0.038349446,-0.24233559,0.019184727,-0.06887677,0.09079982,0.01624773,0.19097121,0.11990647,-0.2286339,0.21734715,-0.10510895,0.4085784,0.118609786,0.3716306,0.51035476,-0.3781128,0.27358198,0.49779665,0.7462743,-0.18539554,1.0326756,0.42216367,-0.052611325,0.35552025,-0.20930783,-0.45087022,-0.6817439,-0.25590485,0.14304157,-0.269566,-0.34807685,-0.0044514765,-0.35928625,-0.944865,0.5545193,-0.17911737,0.4156364,-0.0054061688,0.4400981,0.622384,-0.3275396,-0.15809093,-0.06905666,-0.09714617,-0.54913485,-0.25248763,-0.639014,-0.47610807,-0.037656248,0.83917683,-0.10476962,0.071999714,0.27261397,0.14656264,0.234181,-0.057253208,-0.008418596,-0.17297432,0.43580574,0.27549478,-0.62285864,0.44458133,0.08880504,-0.1397555,-0.6064402,0.36573315,0.47939807,-0.5785911,0.4525506,0.44679543,0.0165323,-0.07511625,-0.7344373,-0.027801743,-0.096522085,-0.18413374,0.35430437,0.50099957,-0.8495302,0.4682326,0.3635747,-0.24141566,-0.6500297,0.5218267,-0.07102688,-0.25300157,-0.17752875,0.4463255,0.13383113,0.07834111,0.043784313,0.3050293,-0.3294265,0.2552352,0.10052859,-0.015602774,0.15917894,-0.13675311,0.0021198345,-0.8992414,0.33930084,-0.6075281,-0.48179764,0.23384827,0.020488583,-0.071699694,0.15910792,0.47825387,0.4124909,-0.3719773,0.16966632,-0.16141103,-0.33129615,0.53388965,0.59864616,0.68370247,-0.26025817,0.49197307,0.110360414,-0.112390995,0.11267286,-0.1146866,0.40092516,-0.2062156,0.3615143,0.17040883,-0.17398259,-0.030734267,0.60274446,0.12019364,0.23373975,-0.0047255983,-0.07539363,0.3429612,0.030478518,0.2967435,-0.1845685,-0.70883507,0.10049073,-0.26727903,-0.11213299,0.59746903,0.20077507,0.14178726,-0.09800805,-0.20180799,0.026483396,0.286911,0.042757828,-1.1708323,0.24160904,0.02116053,0.7527424,0.67072225,0.069746576,0.074663326,0.49846077,-0.09715659,-0.055435598,0.5482996,0.18326172,-0.62787604,0.523924,-0.82065994,0.3357982,-0.013295627,0.04602532,-0.024824105,-0.16277379,0.3832373,0.76134205,-0.22997545,-0.033411328,-0.14503077,-0.27218395,0.08555127,-0.4355318,0.08643194,-0.38668382,-0.25491697,0.78550565,0.4016871,0.3306433,-0.3414698,0.042416573,0.07494093,-0.1188393,0.21687,0.027559139,0.10497408,-0.27222067,-0.35259277,0.017488021,0.4221905,-0.073066846,0.07089551,-0.095475905,-0.28687426,0.07368626,-0.22265364,-0.30237362,-0.12368143,-0.7416283,0.03418999,-0.5039562,-0.32088044,0.38947108,-0.014691119,0.07118865,0.22663666,0.14094004,-0.21158789,0.18323551,0.018294005,0.48241255,0.19217542,-0.1334983,-0.21705945,0.48046634,0.106709644,-0.31612936,0.07621897,-0.06071577,0.21888468,-0.4414273,0.3957372,-0.19536622,-0.38313583,0.0188411,-0.012896787,0.007349961,0.5612984,-0.18459526,-0.23401779,-0.25266245,-0.32117504,-0.17209306,-0.48314777,-0.10430953,0.20452735,0.04979098,-0.07184091,-0.17567934,-0.041841034,-0.21208137,0.27755272,0.05030412,0.29202458,0.4171572,-0.016985036,-0.46412504,-0.044744153,0.15426397,0.49083564,0.05661761,-0.1758278,-0.380125,-0.5365769,-0.44160113,0.28619844,-0.098097734,0.26270416,0.20106956,-0.12522358,0.6667788,0.18416585,1.038001,-0.094315335,-0.3686344,-0.0396565,0.54469395,-0.17711337,-0.22978841,-0.32845455,1.0229794,0.46670738,-0.24926382,0.08116806,-0.19242509,-0.0057956944,0.17621389,-0.28503135,0.0724501,-0.14817972,-0.7695092,-0.14115372,0.16263774,0.41422617,-0.007231718,-0.19829684,-0.032459855,0.27714044,0.13796473,0.15385877,-0.3589476,-0.33855793,0.44286,0.12943174,-0.06359708,-0.031495456,-0.42252234,0.19533256,-0.5658718,-0.082568415,-0.38844526,0.07950453,-0.19703981,-0.45021376,0.26288876,0.04483529,0.2982528,-0.3745875,-0.323016,-0.16315816,0.19832355,0.08658365,0.095748864,0.35688993,-0.25104028,0.030754896,0.029689321,0.5919517,0.96613353,-0.05616141,0.21586142,0.10241602,-0.4286734,-0.58505607,0.29367268,-0.34680474,0.22772804,-0.11561759,-0.19720045,-0.5967113,0.18306461,0.0770288,0.01663981,0.12907727,-0.7725276,-0.18062016,-0.005949185,-0.3892079,-0.15652278,-0.26174685,0.014387241,0.64326024,-0.27296466,-0.3768314,0.00966891,0.24963452,-0.13792089,-0.5176059,0.02169958,-0.2797776,0.19030152,0.018335499,-0.5005976,-0.10370238,0.16348784,-0.46088043,0.10867576,0.11227809,-0.30969143,-0.016555123,-0.4874305,0.28559875,0.7522633,-0.19703546,0.21916252,-0.2985802,-0.61373997,-0.88801646,-0.25197822,0.26044178,0.1046454,0.06808043,-0.83811116,0.06727193,-0.27211994,-0.07786747,-0.11381614,-0.25348032,0.32358426,0.20003003,0.5146338,-0.16408788,-0.6770214,0.29126737,0.103408895,0.06503868,-0.48311356,0.42582813,-0.0020942825,0.84120136,0.09499009,0.070680074,0.13924626,-0.76445806,0.059430387,-0.054249447,0.04572739,-0.48223978,0.23529795,594 +703,0.33262697,-0.23322052,-0.4480124,-0.16287711,-0.2591956,0.009403958,-0.14020199,0.61685973,0.16560158,-0.5134455,-0.3039234,-0.1842192,0.046789344,0.42095962,-0.1938335,-0.55754685,-0.06300206,0.1397411,-0.27565295,0.52394354,-0.39975247,0.3210904,0.13940185,0.5075319,0.34545678,0.08546186,0.1959983,-0.16437052,-0.38934964,-0.3372798,-0.28412804,0.31071922,-0.66127557,0.17444518,-0.117443,-0.48831624,0.028475102,-0.5636418,-0.3203065,-0.77267355,0.35849574,-0.98682934,0.42923287,0.08804323,-0.27743334,0.23917507,0.24017191,0.2791115,-0.30432078,0.004691454,0.10863277,-0.2982624,-0.03985681,-0.17479068,-0.14548603,-0.41155154,-0.7866904,0.08471652,-0.3818344,-0.16140562,-0.45434093,0.22895017,-0.3597598,-0.0974033,0.0019918794,0.5556051,-0.45930877,0.006947719,-0.007819478,-0.05995788,0.190276,-0.63230354,-0.34693658,-0.10960664,0.12771946,-0.2257842,-0.22511841,0.23775457,0.37532946,0.34954393,0.007474349,-0.16812772,-0.40392822,0.01115467,0.09762248,0.482701,-0.18181467,-0.69837844,-0.04740695,0.10953275,0.25435936,0.29247248,0.13992622,-0.18636802,-0.12870978,0.10290454,-0.21237373,0.35193202,0.4451335,-0.3229244,-0.34666923,0.35990196,0.26856157,0.036780633,0.005592649,-0.068965405,-0.004691887,-0.62579715,-0.104387484,0.19624971,-0.24198416,0.66357714,-0.1865694,0.21402393,0.754323,-0.28850505,0.0029458862,0.10244395,0.15375121,-0.103263535,-0.15358967,-0.32030255,0.21833222,-0.34625137,0.2815758,-0.2585046,1.098936,0.092329316,-0.70112824,0.17621326,-0.6310576,0.18821806,-0.16393232,0.54451185,0.6159586,0.41239935,0.5572649,0.5800392,-0.43199703,0.050197784,-0.017590614,-0.33284792,-0.11958038,-0.28863543,-0.057592474,-0.45242313,0.016630998,0.07236265,-0.05642336,0.047382098,0.7073134,-0.5358675,-0.036601357,0.15782325,0.8602382,-0.30111468,-0.13525961,1.0002408,1.0132475,1.1758635,0.099899605,1.192829,0.24745004,-0.22792178,0.078545496,-0.14401418,-0.74303013,0.36265346,0.45059937,-0.32248148,0.05730881,0.16594961,-0.067368284,0.24668112,-0.5494485,-0.076872304,-0.27859613,0.19858493,0.14227933,-0.09273936,-0.42145127,-0.37135997,-0.051064875,-0.020342588,0.088420376,0.29323924,-0.20969057,0.52785677,-0.0715085,1.3601284,-0.04752417,0.027788965,0.059724055,0.54988724,0.19868135,0.03325183,-0.020210322,0.3457891,0.383928,0.08698457,-0.6058364,0.10420863,-0.25298077,-0.5846633,-0.12233698,-0.35818386,-0.16016708,0.08000103,-0.45466396,-0.24657065,-0.19459435,-0.30183154,0.42417198,-2.5421405,-0.08736559,-0.0185045,0.27316195,-0.13169333,-0.4264746,0.06248589,-0.54693985,0.6128439,0.36818328,0.52995485,-0.6767598,0.109078124,0.40291855,-0.48228645,-0.21514294,-0.7613624,-0.11095036,-0.07104003,0.442612,-0.13330762,-0.11473691,0.07465586,-0.122445926,0.6951153,-0.033159155,0.1308355,0.3849224,0.36973497,0.053185787,0.45393917,0.05892494,0.56441396,-0.32364178,-0.19136088,0.32856166,-0.51923543,0.32145882,-0.044717975,0.09753831,0.43263754,-0.5835979,-0.89541465,-0.7547761,-0.26515132,1.1699156,-0.1226228,-0.4598106,0.27246183,-0.13702354,-0.03273756,-0.10826242,0.45822966,-0.26899534,0.012820601,-0.8047724,-0.013880604,-0.024121296,0.20810324,-0.03329781,0.13382198,-0.38093236,0.6328073,-0.101350494,0.21715952,0.30124018,0.19654109,-0.5903405,-0.63084817,0.07669657,0.95786464,0.34397826,0.13684043,-0.25104967,-0.27412155,-0.19855484,-0.22477926,0.1436532,0.48290616,0.78191024,-0.021449236,0.24092816,0.31523916,-0.028769195,0.037929952,-0.21249768,-0.25459164,-0.1627346,0.03076501,0.6519493,0.545958,-0.10273722,0.6368194,-0.13107878,0.32825917,-0.18985477,-0.39727944,0.579525,1.2864254,-0.06963437,-0.28040642,0.6760355,0.5523606,-0.26019296,0.46928823,-0.58601385,-0.3711928,0.5591414,-0.21735011,-0.5281403,0.056204602,-0.34241518,0.007517276,-0.8987461,0.37895143,-0.19810031,-0.54486233,-0.7052904,-0.11772421,-3.033984,0.095952444,-0.37722936,-0.20271817,-0.2040425,-0.414193,0.12487494,-0.57013905,-0.47129104,0.15689747,0.11450793,0.6544813,-0.1680425,0.25719914,-0.2541148,-0.12922278,-0.44959357,0.06611001,0.1096829,0.30837741,0.05140929,-0.35298765,0.21912122,-0.22443606,-0.5540983,0.04146773,-0.57588714,-0.5244167,-0.19693463,-0.5142395,-0.46484625,0.6793995,-0.47591722,0.03365693,-0.11308141,-0.048515815,-0.094705276,0.48155755,0.2181917,0.08578592,0.028869238,-0.108007945,0.02082489,-0.33523062,0.39469478,0.030031947,0.29080278,0.48549607,-0.22463354,0.18242992,0.4009975,0.63615733,-0.030796565,0.8502906,0.54831517,-0.007710333,0.19920439,-0.43407425,-0.3199271,-0.5468835,-0.29813477,-0.07907438,-0.38555908,-0.41669843,0.04400222,-0.2948442,-0.9366683,0.61948836,-0.018799396,0.13252777,-0.13017444,0.38116506,0.46454528,-0.21788734,-0.13782288,-0.0074685034,0.047531717,-0.5931384,-0.33645236,-0.6236594,-0.48397306,-0.097573295,0.9690453,-0.093007766,-0.13319382,0.0134196235,-0.23993587,-0.18818787,0.09272568,-0.17249672,0.12724727,0.29871666,0.038919184,-0.81685096,0.54185385,0.083596826,-0.1456181,-0.5053865,0.28258955,0.56858885,-0.7462572,0.40714964,0.45535403,0.067619786,-0.14777897,-0.5148729,-0.3105788,-0.15570909,-0.067741685,0.3210025,0.25693247,-0.7578099,0.57551664,0.40707582,-0.21725559,-0.9027488,0.3777256,0.043430027,-0.3448728,0.01380173,0.30650502,0.1516052,0.07651803,-0.27353492,0.23497787,-0.50390327,0.37820053,0.13985246,-0.026724754,0.46734196,-0.2420266,-0.21301773,-0.78094304,0.17203258,-0.52402467,-0.2816614,0.1611251,0.18861455,-0.083495826,0.24596313,-0.055546753,0.3816064,-0.29049322,0.08388744,-0.1559119,-0.15574652,0.13559762,0.5149936,0.56035113,-0.43463948,0.6909019,0.10616715,-0.09890866,0.026272627,0.06645781,0.39476216,0.15042703,0.4490143,0.048122272,-0.2590739,0.35943377,0.73103803,0.15545617,0.62352794,0.07558366,-0.11287585,0.33571848,0.09231929,0.28742197,0.10929572,-0.5368084,0.04855719,-0.44278526,0.056373425,0.53961575,0.06652816,0.3045178,-0.12599736,-0.18658462,0.14869973,0.23561698,-0.002984141,-1.0515168,0.43756235,0.20378326,0.83044374,0.60764074,-0.13003553,0.101088524,0.76831466,-0.3591333,0.12732264,0.4050213,0.1842483,-0.47472972,0.6846091,-0.8682802,0.48696682,-0.27968594,0.032578588,-0.15673436,0.03738636,0.39415815,0.7528218,-0.1452602,0.07280651,-0.012390465,-0.32611975,0.23136702,-0.49474275,0.20599435,-0.5792706,-0.22822008,0.74201745,0.39061067,0.19204313,-0.124933414,-0.037597027,0.16609842,-0.16002487,0.1444361,0.109448716,0.09467589,0.081503026,-0.6122732,-0.29639867,0.5974235,0.023021642,0.24748328,0.080554,-0.17599359,0.2666337,-0.25085104,-0.22768423,-0.03748118,-0.7380881,0.07941531,-0.19071652,-0.4764199,0.55407333,-0.33624724,0.23519179,0.2912489,0.1654826,-0.38533223,0.06965582,0.41471612,0.74069095,-0.06687985,-0.22353894,-0.3466169,0.11738194,0.209684,-0.15970431,-0.14107169,-0.098819494,-0.157105,-0.56550854,0.43989187,-0.16356781,-0.2577974,0.021565152,-0.1900932,-0.021038247,0.51294065,-0.0332498,-0.17175692,0.03594437,-0.23895217,-0.22899629,0.07151166,-0.14978155,0.40102613,0.22429506,-0.08150188,-0.149607,-0.08158366,-0.18288766,0.46325767,-0.28179696,0.3110057,0.21299829,0.04174704,-0.3397733,-0.24027713,0.003305472,0.5646013,0.018504573,-0.055059608,-0.16559973,-0.3413768,-0.30936784,-0.021168806,-0.20851539,0.28767708,0.13575235,-0.43758222,0.8021339,0.02203558,1.2008564,0.0018488353,-0.50483096,0.14900237,0.5016674,-0.0074049053,-0.031234466,-0.38936725,1.0908259,0.49909732,-0.16045696,-0.13022241,-0.38137627,0.07941894,0.33676723,-0.17662308,-0.3791985,0.016212579,-0.6384929,-0.25413945,0.28095457,0.3006221,0.123133846,0.03641104,0.012185037,0.33577377,0.08029934,0.5390831,-0.38125128,-0.03140543,0.30369118,0.40748623,0.053950135,0.09947287,-0.39713156,0.33797482,-0.54101616,0.20824787,-0.23604268,0.21769401,-0.29552156,-0.36525944,0.3356982,0.21156484,0.48587418,-0.16125649,-0.31931955,-0.22586401,0.55358577,0.11808087,0.23269558,0.50224584,-0.41980273,0.07559317,-0.1037808,0.4137169,1.1546154,-0.246954,-0.1294255,0.3331896,-0.3589363,-0.6749066,0.6837988,-0.37877035,0.07166546,0.085386366,-0.30182,-0.57061714,0.15972842,0.39963472,0.029572707,0.11964484,-0.53994,-0.2307242,0.3654617,-0.22304885,-0.2650172,-0.34081644,0.28222916,0.6161889,-0.27604452,-0.36608425,0.12052366,0.27801815,-0.12778625,-0.49426234,-0.03976004,-0.488627,0.34631926,-0.01165534,-0.3250191,-0.19014524,0.064146966,-0.40051225,0.08144665,0.13388625,-0.26237124,0.1119684,-0.3108223,0.10269166,0.8548098,-0.15048814,0.27929652,-0.72730976,-0.36926115,-0.8982996,-0.15882543,0.67219573,0.046354536,0.04831791,-0.7184721,-0.00400015,0.042717602,-0.20653722,-0.06826474,-0.62644184,0.4579465,0.12275712,0.27115014,-0.016968371,-0.6343972,0.13575682,0.09811081,-0.18105443,-0.550657,0.46698028,-0.05061554,0.8306973,0.06883594,0.028105924,0.35105798,-0.42642975,0.052986506,-0.19650306,-0.30391884,-0.6386799,0.02801019,595 +704,0.49602368,-0.14981247,-0.48584712,-0.11592956,-0.32700682,-0.020034326,-0.26755854,0.414429,0.39258748,-0.13817,-0.17740943,0.15011896,0.019702924,0.23238517,-0.2401689,-0.7093197,-0.054169733,0.13937472,-0.52610564,0.7200023,-0.43614095,0.31013444,-0.057442244,0.43763727,0.32318354,0.50537956,0.21216756,0.059700448,-0.27935308,-0.22970739,0.00402192,0.017136686,-0.5423044,0.23061356,-0.2825384,-0.24124756,0.12687063,-0.47284544,-0.28353304,-0.7272607,0.17299733,-0.8031983,0.47782332,0.17340377,-0.0741145,-0.16442333,0.23681402,0.12755565,-0.28798676,-0.14498445,0.12847942,-0.068657264,-0.028201649,-0.48483336,-0.31327263,-0.49980018,-0.47398233,-0.03317586,-0.6429819,-0.31900936,-0.2026472,0.3106867,-0.275982,-0.18593457,-0.19550464,0.5016524,-0.43039814,0.024569873,0.19219019,-0.35997316,0.11296236,-0.8203989,-0.1457949,-0.08139201,0.19931151,0.106435366,-0.18062918,0.42773965,0.18389748,0.24058048,0.32961273,-0.43814877,-0.43228623,-0.2289595,0.31608754,0.33487993,-0.34254068,-0.3131173,-0.28451037,-0.058796525,0.5409082,0.32480377,0.2261166,-0.14056772,0.157597,-0.2523525,-0.16527885,0.7200235,0.67188966,-0.24182162,-0.2840154,0.24469258,0.53718257,0.19169067,-0.43031123,-0.18746911,-0.107755,-0.32503536,-0.18736888,0.26931655,-0.112786606,0.6080798,-0.05754716,-0.042373933,0.73235375,-0.28066033,0.053009924,0.06757913,0.15049043,-0.04973928,-0.52014935,-0.24100232,0.08178263,-0.5595595,-0.015243154,-0.35130963,0.67721856,0.090980016,-0.7009595,0.33991,-0.46244866,0.020131204,0.08932679,0.5328684,0.526609,0.5704509,0.29200312,0.6569841,-0.14380987,0.21930371,-0.03580773,-0.32817805,-0.07952494,-0.21586122,0.052583575,-0.37235686,0.19243461,-0.23598807,0.08198224,-0.0301493,0.5933999,-0.40222913,-0.20244329,0.25051638,0.86202437,-0.3072914,-0.15868099,0.6111427,1.3440163,1.0694654,-0.107006274,1.096587,0.20126882,-0.1484668,-0.10389233,-0.2736103,-0.62292266,0.1981364,0.3065013,-0.31091684,0.4151488,-0.13048795,0.004825858,0.2440454,-0.2273431,-0.050084617,0.026817117,0.37639993,0.2086734,0.06648984,-0.44422114,-0.22464599,0.0903293,-0.100868136,0.23273516,0.35650954,-0.5740357,0.16556934,-0.08213925,1.0485191,-0.13117655,0.029310625,0.1116461,0.70898116,0.30553746,-0.078942895,0.22958948,0.6321048,0.17324024,-0.16463582,-0.65756196,0.17307279,-0.5732674,-0.457586,-0.08208799,-0.51522005,-0.17567095,0.23588528,-0.34046194,-0.17609787,-0.014657772,-0.2535567,0.33950475,-2.6561785,-0.2144848,-0.13928819,0.31975916,-0.3257243,-0.2257112,0.05873015,-0.4934631,0.2334455,0.120146185,0.44380137,-0.44078276,0.50858253,0.705616,-0.59856665,-0.10710769,-0.627051,0.07684365,-0.29568288,0.7354791,-0.22437835,-0.017168788,-0.06661697,0.17531937,0.9498068,0.27010423,0.2692293,0.5445271,0.32210353,-0.013925355,0.4269633,-0.0064769615,0.6855253,-0.3332523,-0.22197665,0.35324523,-0.4286031,0.47801253,-0.055400636,0.12390719,0.6444164,-0.4814061,-0.84458286,-0.47840658,-0.2866249,0.9842664,-0.33990633,-0.47725472,0.16294517,-0.10952,-0.15311068,0.006371443,0.572547,-0.04327178,0.27707756,-0.46425295,0.1442257,-0.053121917,0.17945684,-0.014180515,0.20734447,-0.06711976,0.759009,-0.0079641985,0.54766375,0.12985688,0.2652983,-0.3227648,-0.33031052,0.10564584,0.81398106,0.30524057,-0.03614662,-0.10389535,-0.21758768,0.029667556,-0.22371355,0.058821622,0.66169745,0.7228668,-0.10944964,0.11427729,0.34894198,-0.025657954,0.014892981,-0.12063014,-0.35266873,-0.29126012,0.16136727,0.4452359,0.7276719,-0.13694617,0.38502482,-0.15042344,0.29103354,-0.2849589,-0.3695656,0.531423,0.51759213,-0.26650655,-0.15026802,0.6696163,0.63892025,-0.7421586,0.5461551,-0.6786471,-0.11993192,0.6953182,-0.27101266,-0.48010826,0.09152622,-0.26528832,0.046088044,-0.7224117,0.26530468,-0.3837748,-0.39370456,-0.20382045,-0.20421019,-2.8007064,0.22101298,-0.23657733,-0.120479695,-0.34856635,-0.04770147,0.18724035,-0.7085279,-0.4527257,0.1303877,0.21228467,0.5728219,-0.22927721,0.119119644,-0.29618055,-0.3239837,-0.16048685,0.44032103,0.0060154106,0.3574031,-0.41918027,-0.29563814,0.06482151,0.011371186,-0.47005197,0.16797918,-0.5362284,-0.31466866,0.040636208,-0.55940217,-0.14315757,0.55538327,-0.4372311,0.009062813,-0.20849106,0.17141159,-0.13017263,0.23568353,0.025690857,0.37718627,0.2810777,-0.1387174,0.100131854,-0.3805443,0.4934542,0.03173925,0.45823926,0.17802033,-0.02018824,0.023615006,0.4465788,0.5649376,-0.040719252,1.1656339,0.21540612,-0.2389057,0.41466972,-0.28334117,-0.39881423,-0.6570384,-0.23463117,0.041290063,-0.3419955,-0.60521466,0.055497248,-0.29135954,-0.8428564,0.6414114,0.071208626,0.55788225,-0.11173929,0.42592505,0.2939307,-0.21851029,0.030385444,-0.0055425605,-0.24718674,-0.48064226,-0.33011,-0.70456725,-0.44441417,0.20471637,0.5630648,-0.3433398,-0.07428042,-0.006243339,-0.49429247,0.038173717,0.08943197,0.1293465,0.25856054,0.45636266,0.16470711,-0.55258983,0.25704518,0.056051478,-0.069810584,-0.24430649,0.11054848,0.67046773,-0.7245754,0.7779116,0.40389407,0.10020665,-0.28952998,-0.61815125,-0.100335725,0.13855383,-0.08672873,0.6053075,0.357155,-0.9774882,0.59261805,0.17734043,-0.600176,-0.8203742,0.36340302,-0.12420066,-0.19381367,-0.40637764,0.5014944,0.23919685,-0.14301592,-0.08572573,0.2880194,-0.28388068,0.20320271,0.22043195,-0.20561783,0.2528468,-0.067133546,-0.461046,-0.81381893,0.15568802,-0.60872835,-0.3987924,0.45555958,-0.15420093,-0.11830197,0.29358652,0.28295395,0.47007376,-0.27978924,0.213655,0.06343598,-0.33295888,0.49881807,0.47661906,0.6450446,-0.36183086,0.43249512,0.119033694,-0.2708383,0.37625968,0.06442373,0.31671807,-0.048041306,0.41579157,0.004768454,-0.0637486,0.26994407,0.5471256,0.26983806,0.5732392,0.15853783,-0.22218052,0.4239699,0.03707945,0.12135513,-0.006905657,-0.62504643,-0.036732003,0.05251703,0.17111206,0.53451794,0.16532382,0.48312905,0.088496596,-0.07195163,0.040448543,0.22507904,-0.099987745,-1.2385886,0.26227006,0.1819124,0.9309062,0.45750782,0.2441513,-0.35117382,0.63300145,-0.30253294,-0.06235826,0.59499043,0.08908924,-0.45401222,0.69585156,-0.3357668,0.41395995,-0.18253404,0.036846347,0.21479514,0.03573198,0.5742533,0.97454,-0.16857164,-0.13078938,0.007607206,-0.24204066,0.06391505,-0.27543885,0.21323031,-0.24026391,-0.45916632,0.7610532,0.29779556,0.38961175,-0.11862709,-0.0998062,0.073990114,-0.26002368,0.2675337,-0.01295484,-0.115716785,0.047478233,-0.5378375,-0.18614417,0.641646,0.031249633,-0.003037086,-0.19796321,-0.20289442,0.14835241,-0.14647582,-0.052820545,0.099617116,-0.771464,0.05794231,-0.024773864,-0.7646285,0.38502842,-0.33248833,-0.09126023,0.15862545,0.0008439559,-0.355734,0.38256243,0.2670707,0.6652612,-0.01427473,-0.11826341,-0.24535717,0.04158066,0.1224619,-0.21420535,0.27821633,-0.42270067,0.13821347,-0.6901398,0.52787197,-0.3233751,-0.37032458,-0.2166105,-0.2599601,-0.19295979,0.62810814,-0.03009245,-0.16476451,-0.13375896,-0.20744535,-0.43257105,-0.29532406,-0.14848348,0.120520115,0.105650894,-0.24337055,-0.20638339,-0.3439002,0.009344073,0.3747327,-0.043020424,0.5000791,0.2248385,0.036897663,-0.22082236,0.06042334,0.17868105,0.36808622,0.051479775,0.15748368,-0.28854963,-0.29062697,-0.29118636,0.39189434,-0.10436478,0.11173015,0.22044183,-0.33205664,0.96760327,0.007003844,1.3972753,0.043463048,-0.5719069,0.07272632,0.76890814,-0.193645,0.093164556,-0.5009681,1.2037255,0.58542186,-0.1807677,-0.020485777,-0.65538305,-0.13025095,0.19055837,-0.5418583,-0.0983805,-0.086078726,-0.39168912,-0.12228605,0.17029902,0.24690022,0.13038865,0.007169132,0.063834734,0.13861229,0.27114004,0.4036682,-0.7125631,-0.23526922,0.35124603,0.2435925,-0.07541858,0.286326,-0.33483377,0.3845641,-0.89752746,0.31584284,-0.3718371,0.11953403,-0.37088424,-0.5633789,0.15381771,0.012554948,0.44903836,-0.40684754,-0.43123457,-0.10478987,0.379448,-0.0023568845,0.18616344,0.5731112,-0.25433052,-0.0055324617,0.06555089,0.67655176,1.1965454,-0.2634418,-0.1865294,0.23707458,-0.5478686,-0.8534054,0.21003205,-0.6183549,0.056646015,-0.060950108,-0.49329382,-0.5198186,0.23097447,0.19968535,-0.021531196,0.04811058,-0.6754529,-0.20086424,0.2562223,-0.2768187,-0.23480788,0.11201341,0.29795104,0.84547174,-0.2118118,-0.47941065,-0.15428708,0.26003996,-0.3566503,-0.56236804,0.003434007,-0.21227218,0.33403513,0.034564774,-0.29768306,-0.06907069,0.15643509,-0.557124,0.07490555,0.3091574,-0.3076642,-0.009584959,-0.16104811,0.06252319,0.73604405,-0.07523349,-0.052826066,-0.5246261,-0.5922931,-0.9562479,-0.67961746,-0.08788896,0.021518432,-0.049483374,-0.47608328,0.037838485,-0.4195316,-0.15805116,0.12002477,-0.7707439,0.44829077,0.06986611,0.57938915,-0.36052,-1.1579083,0.19505802,0.27336645,-0.014490063,-0.7946826,0.53165305,-0.24795693,0.9084176,0.16845027,-0.17596194,0.11490398,-0.62525237,0.14666373,-0.4780793,-0.109710105,-0.7395535,0.22552459,599 +705,0.5575402,0.07421418,-0.5964438,-0.3038337,-0.5781856,0.0008765009,-0.07794409,0.18751079,0.46188486,-0.3033107,-0.10312759,-0.043581966,-0.15509994,0.47486782,-0.08867256,-0.98723096,-0.027977003,0.40488103,-0.69442284,0.57954526,-0.44065318,0.69018406,0.14247891,0.4457536,0.16391625,0.2131364,0.44115862,-0.003927231,-0.11086823,-0.030115714,-0.27763727,0.056025513,-0.5769638,0.49771583,-0.033685762,-0.466589,0.035503175,-0.42686448,0.024636159,-0.73183036,0.3208072,-0.7084369,0.5587777,-0.10661848,-0.29864523,-0.10841654,0.18107542,0.24503341,-0.25208065,0.04002317,0.28207707,-0.2706136,-0.107713,-0.18408951,-0.3656961,-0.5159601,-0.51325524,-0.010148635,-0.37547296,-0.19459827,-0.26365048,0.3625085,-0.21532127,-0.09826799,-0.19895886,0.32198986,-0.240403,0.0051649055,0.23448539,-0.38094535,-0.15639935,-0.46173617,-0.17447184,-0.17515975,0.24927267,0.14543119,-0.37198442,0.34559932,0.19784172,0.60747606,0.3013337,-0.33585453,-0.2515558,-0.10550205,-0.09800349,0.50071436,-0.19877735,-0.12149833,-0.23224966,-0.06498292,0.29805022,0.061238583,0.15881398,-0.32052857,0.025317878,-0.1487321,0.027835902,0.16492793,0.43300942,-0.4277655,-0.22786424,0.45790365,0.3092416,-0.038013026,-0.030813495,0.16319095,-0.06928037,-0.47133097,-0.20702289,0.011818308,-0.01222179,0.40229586,-0.09611864,0.05220365,0.65832,-0.045826092,-0.11103118,-0.059101164,0.07155861,-0.0448602,-0.25427628,-0.18489884,0.37918547,-0.3670835,-0.17954598,-0.2740808,0.8972506,0.10179615,-0.6033701,0.33193848,-0.39872706,0.15584494,-0.0014808178,0.47374198,0.85973555,0.5325152,0.11416065,0.9352223,-0.5052239,0.24773012,-0.03171335,-0.08592547,0.24760808,-0.08976122,0.15570508,-0.54431725,0.23049879,0.05008085,-0.114606604,0.22233063,0.4123079,-0.6135533,-0.25551206,-0.088640176,0.6000081,-0.46338862,-0.007396494,0.87330014,0.9892326,1.1286502,0.17289284,1.4952252,0.455418,-0.2582604,-0.052499715,-0.27476758,-0.5198177,0.14168453,0.22251661,-0.16688244,0.23383135,0.091371074,0.20937552,0.4816413,-0.2317414,-0.15829948,-0.102531314,0.4066643,-0.21625724,-0.034082133,-0.56847,-0.4287185,0.10308305,0.086006604,0.13374229,0.3910723,-0.36309144,0.46235985,0.009420801,1.5517663,0.0002879592,0.1019233,-0.20834933,0.06917227,0.2820831,-0.44351408,-0.11134003,0.21075687,0.170012,-0.24451417,-0.41441706,-0.16524349,-0.409118,-0.4060192,-0.18158779,-0.27909437,-0.0099528525,-0.028648075,-0.19857986,-0.49339244,0.108065404,-0.3871462,0.33437082,-1.9389259,-0.23198766,-0.1890162,0.22610536,-0.0615773,-0.3901432,-0.4361614,-0.5457185,0.15228452,0.2469303,0.38524917,-0.45319888,0.21777447,0.14550155,-0.5124174,-0.28154713,-0.62346715,0.26252726,-0.011991198,0.33934003,-0.24012835,-0.20572871,-0.29968077,0.20442805,0.56750214,0.15650608,-0.07914074,0.33898604,0.5448981,0.21681723,0.40435743,0.22862405,0.8034198,-0.44771916,-0.16177975,0.37030074,-0.59014916,0.40495425,0.07993865,0.24626453,0.55048305,-0.703441,-0.7936166,-0.7701438,-0.24894994,0.9925511,-0.225501,-0.35125157,0.36112154,-0.10652547,-0.19708814,0.21598771,0.516207,-0.12978545,-0.06934518,-0.59355235,-0.17592151,0.059132252,0.15267631,-0.092746735,0.015086771,-0.37070316,0.6452898,-0.21157588,0.4182315,0.3193003,0.25321266,-0.18451905,-0.45168936,0.1056602,1.0252458,0.44901732,0.105636835,-0.08942056,-0.17138878,-0.24588141,-0.22419572,0.21268842,0.49011168,0.7090127,-0.11238972,-0.07173993,0.35442197,-0.10834457,0.0515588,-0.026927246,-0.30004933,-0.10891069,0.058251355,0.62518924,0.5381521,-0.067453094,0.1889753,-0.0063928184,0.36882356,-0.16274646,-0.6405308,0.70050085,0.97194284,-0.1698717,-0.35274842,0.7839035,0.21653968,-0.04025185,0.4756026,-0.55585206,-0.34259266,0.42516083,-0.07327929,-0.3130378,-0.14375676,-0.26855466,0.13705012,-0.9496222,0.4485295,0.07850445,-0.7117062,-0.613006,0.016534436,-2.934174,0.24142835,-0.11221388,0.09923501,0.05830211,-0.14551595,0.20026326,-0.60567385,-0.5477886,0.19340363,0.11078671,0.72934383,-0.0017664754,0.21798691,-0.093284026,-0.55079854,-0.16531342,0.23356797,-0.050009582,0.27563387,0.14502485,-0.28416044,0.25061578,-0.31922418,-0.49761683,0.047669567,-0.70869327,-0.5608764,-0.3574455,-0.7926998,-0.14459015,0.7722188,-0.4846821,-0.06302774,-0.34380156,-0.035687454,-0.0689535,0.18724276,0.20854871,0.23091015,0.27788776,-0.112806484,-0.23613892,-0.37402165,0.062782794,0.22884107,0.3053583,0.55481184,-0.24879692,0.20838448,0.47782707,0.775258,-0.12625955,0.76525205,0.20835258,-0.039660033,0.23038544,-0.3275239,-0.37079334,-0.57825416,-0.5158209,-0.38023093,-0.5688309,-0.31865564,-0.08991469,-0.40625307,-0.8932149,0.48697436,0.115731366,0.15494753,-0.12104392,0.23395255,0.2383085,-0.19290349,0.048404317,-0.22664595,-0.17812508,-0.4112258,-0.41388777,-0.47084224,-0.6773882,0.22470453,1.437245,-0.16411787,0.100313336,0.16482535,-0.26584002,0.119271114,0.059704103,0.06662148,0.15549962,0.39953694,-0.005067078,-0.51062834,0.42853943,-0.10701093,0.056089003,-0.4110524,0.32599148,0.644495,-0.5775103,0.5437038,0.369602,0.20125437,0.07324867,-0.53985196,-0.2541617,-0.025453985,-0.21901523,0.45479786,0.33337575,-0.4278507,0.49677783,0.13889672,-0.1961798,-0.81878704,0.049697995,0.01479893,-0.21143888,0.14175771,0.37496156,0.114756055,-0.067956164,-0.24613819,0.17926288,-0.5253259,0.23860179,0.21756554,-0.0016096991,0.41247764,-0.24075177,-0.51523566,-0.8012609,-0.060474195,-0.41991055,-0.4485616,-0.0807722,0.1820835,0.116868705,0.2180322,0.14503326,0.44636625,-0.3206708,0.175186,-0.21306388,-0.24874698,0.44473317,0.4514205,0.34970972,-0.48276404,0.4151819,7.13055e-05,0.09301718,-0.3380894,-0.02219627,0.5379025,0.21651967,0.23550683,-0.018753456,-0.17039435,0.09572768,0.60488904,-0.01731724,0.068236485,0.10002895,-0.42908823,0.20644471,0.21217245,0.10273127,0.016233059,-0.3239872,-0.117659144,-0.059103984,0.03393466,0.40260902,0.09705646,0.43629754,-0.05916065,-0.23173144,0.3435121,-0.02451982,-0.0420298,-1.2310035,0.3604032,0.035033043,0.69582236,0.62733585,-0.07965013,-0.14709854,0.5793691,-0.3053459,-0.006567995,0.2874215,-0.23102681,-0.2883697,0.44884026,-0.57071817,0.34660536,-0.18877012,-0.109042294,0.24203609,0.34548947,0.34501702,0.9047962,-0.09364472,0.07096478,-0.115216956,-0.16734146,0.11291114,-0.047336128,0.07783665,-0.56120586,-0.444936,0.80908877,0.20466627,0.30644006,-0.4127827,-0.07164713,0.09911658,-0.21155429,0.10205837,-0.18092695,-0.028658608,-0.007024889,-0.46169016,-0.14438623,0.5789811,0.078684755,0.045659903,0.13250247,-0.5119268,0.058174036,-0.21229032,-0.037430067,-0.059323218,-0.68971455,0.03591166,-0.42622897,-0.3435945,0.3630698,-0.38079813,0.22163394,0.17474288,0.20209083,-0.2612193,0.3352633,0.37516207,0.9533354,0.09577996,-0.11281061,-0.101223454,0.50747335,0.34507158,-0.41081128,0.15316471,-0.2804007,0.30279344,-0.7473291,0.44748023,0.025237756,-0.23755512,-0.032351397,-0.036523737,0.19781998,0.30309588,-0.40914005,-0.009922642,0.26264605,0.13375643,-0.29264086,-7.528296e-05,-0.40166393,0.18270478,-0.08533927,-0.17557001,-0.077113576,-0.12709834,-0.12841006,0.28779563,0.020476285,0.07055669,0.08990569,-0.18407337,-0.36314598,0.20383205,-0.017399788,0.29214928,0.16150005,-0.15156937,-0.33938548,-0.10912701,-0.46644053,0.3414211,-0.07130484,0.21477908,0.014513144,-0.35126173,0.8180966,0.3049878,1.3609579,0.081675574,-0.328032,0.12000383,0.64126587,0.039028488,0.05987595,-0.3658095,1.1068511,0.7148556,-0.25537667,-0.14317301,-0.3104665,-0.3954655,0.37621844,-0.43106237,-0.28956982,-0.02876329,-0.720925,-0.4674784,0.167281,0.14205192,0.038384635,-0.15286016,0.007276251,0.1288714,0.07155723,0.42545763,-0.499299,-0.07902153,0.1238488,0.2817546,0.24266252,0.3785567,-0.31264818,0.39814204,-0.9855777,0.3182171,-0.36514255,0.11640932,-0.23502873,-0.3346898,0.23411557,0.30575243,0.27220827,-0.40114468,-0.33936515,-0.31958663,0.75109255,0.044849474,0.21829937,0.8450013,-0.40026262,-0.06894263,0.13358828,0.3723163,1.3233432,0.06940881,0.08772295,0.3958947,-0.3797936,-0.5446104,0.1951603,-0.31720513,-0.08500131,-0.31506136,-0.46852005,-0.37727305,0.24900492,0.31825012,0.064826176,-0.028483527,-0.4952291,0.09800732,0.3350573,-0.24714848,-0.20197879,-0.21963295,0.19570233,0.62516606,-0.34557217,-0.71813244,0.079426914,0.18457681,-0.2557373,-0.7372046,-0.118117996,-0.2912486,0.57514745,0.18485291,-0.48089588,-0.1600822,0.10005946,-0.36416516,-0.022179522,0.32619315,-0.47994137,0.10241115,-0.39899084,0.01031601,1.0105474,0.30214673,0.4246485,-0.6326532,-0.4584542,-0.9173839,-0.5219911,0.13393356,0.13839418,-0.13854703,-0.6813042,-0.08440052,-0.15543967,0.042023018,0.14222899,-0.4583402,0.31804198,0.19393328,0.46130773,-0.15478942,-1.1947392,-0.019763457,0.30465555,-0.22381185,-0.42717463,0.44229332,-0.1905447,0.75949275,0.08218471,-0.09538034,0.27730888,-0.8172481,0.58752286,-0.42142776,-0.10415073,-0.5767798,0.08453059,604 +706,0.4205524,-0.1620592,-0.3067453,-0.15714,-0.1960001,0.065638475,0.118737474,0.6348384,0.3053904,-0.10352929,-0.11547171,-0.14175312,-0.10179516,0.057736747,-0.020510465,-0.46838638,-0.15799163,0.18622276,-0.40176985,0.55399525,-0.36355445,0.1368995,-0.24985419,0.46733108,0.1614587,0.30034104,-0.12584808,-0.06342907,-0.047831032,0.09148848,-0.07018915,0.2905485,-0.31091624,0.1781349,-0.11561061,-0.114643976,0.11140403,-0.27923182,-0.3331346,-0.63956654,0.25461432,-0.5766851,0.2650873,0.11892053,-0.1999104,0.07032031,-0.18274072,0.24273586,-0.32964408,-0.1911895,0.06324073,0.1832673,0.086985715,-0.1587517,-0.0697309,-0.2718838,-0.42775914,0.004024134,-0.1774402,0.012137592,-0.052578073,0.0711098,-0.22761336,-0.16065553,-0.0991934,0.4021916,-0.33242908,0.14545363,0.24856432,-0.012081639,-0.005147567,-0.51921594,-0.1600403,-0.1208905,0.15944156,-0.019745521,-0.2181328,0.26109993,0.24450256,0.31011412,-0.12395994,-0.13986836,-0.1275092,0.030714296,-0.043074526,0.42594498,-0.12483255,-0.40358716,-0.07170456,-0.025184264,-0.14424823,0.15053882,0.05548368,-0.26607218,-0.07220479,0.043656863,-0.1819708,0.10906684,0.35917643,-0.32094148,-0.27693236,0.38685006,0.610889,0.18941806,-0.12993574,-0.15718557,0.09168969,-0.43805137,-0.19131528,0.11407976,-0.26348346,0.52948064,-0.14447139,0.078534715,0.58434784,-0.09303735,0.009108697,0.06765757,0.28061005,-0.22451441,-0.36182868,-0.27795506,0.13574144,-0.3463419,0.10129956,-0.08823796,0.62271607,0.22750197,-0.5445502,0.26813605,-0.49671057,0.11261983,-0.117252536,0.3967566,0.76652247,0.29787996,0.25575662,0.5613108,-0.3058344,0.13006449,-0.045174405,-0.32593006,0.2768394,-0.12978947,-0.011920104,-0.49389675,-0.0053344048,0.09762184,-0.178669,0.012444661,-0.027042445,-0.50696087,-0.16744381,0.16609833,0.72772974,-0.21187069,-0.117986985,0.37525627,0.9423017,0.803902,0.05884191,1.0939981,0.17154764,-0.2759201,0.5378295,-0.3375653,-0.8229417,0.22467598,0.20548688,-0.45596346,0.22853844,0.14103734,-0.09107463,0.46212012,-0.40854615,0.14859556,-0.16188148,0.39660513,0.1419627,0.09914125,-0.31317595,-0.40976202,-0.1192934,-0.02496932,0.09104596,0.3370493,-0.21725552,0.06300516,0.05227629,1.8006343,0.16111836,0.039792504,0.122344084,0.5058,0.11133527,-0.18618383,-0.07242835,0.5339759,0.25635237,0.069058426,-0.51379544,0.17825614,-0.25479582,-0.40927458,-0.039998613,-0.23477626,-0.041708358,-0.06695961,-0.47056836,-0.18308581,-0.19365674,-0.11139126,0.53412294,-2.9691637,-0.0699929,-0.04785147,0.30246606,-0.37920687,-0.39509043,-0.16900595,-0.4599328,0.188813,0.3116135,0.4064883,-0.669331,0.19926207,0.19456665,-0.54124194,-0.13478325,-0.55296385,0.02001336,0.08952821,0.18587282,-0.023883043,0.13370939,-0.06747706,-0.04174119,0.21518442,0.104541555,0.08985,0.35125706,0.29829076,0.19228657,0.3023237,0.060789686,0.4360393,-0.2864688,-0.09889071,0.19167599,-0.5017275,0.46776894,-0.05869883,0.06645103,0.47845113,-0.31509298,-0.6138025,-0.4899411,-0.15346973,1.2300284,-0.2297313,-0.09259914,0.09698205,-0.6022858,-0.2820225,-0.16405913,0.42411458,-0.15839991,-0.3302088,-0.6929807,0.06691395,-0.09131886,0.33188802,-0.042180233,-0.032956563,-0.22428483,0.5626392,0.003457858,0.45732254,0.2790852,-0.0069817486,-0.15888357,-0.45680088,-0.03699119,0.4752952,0.26155722,0.13984129,-0.08206182,-0.052074358,-0.33860567,0.08321386,0.17042468,0.50169474,0.50908387,-0.114210874,0.082970634,0.3914438,0.052530866,-0.0663185,-0.09033457,-0.24248415,-0.1798701,-0.017075015,0.43789065,0.7751232,-0.3193113,0.24918792,-0.07382615,0.18974756,-0.26019108,-0.33948585,0.5586544,0.8414841,-0.15662505,-0.08050133,0.39420828,0.5970954,-0.28432205,0.2906511,-0.48757964,-0.09502686,0.39048225,-0.038293365,-0.25766176,0.07542213,-0.24257313,0.10948917,-0.7343717,0.14477122,-0.13232583,-0.27085,-0.7718035,-0.04085835,-2.5161016,0.0858679,-0.25807616,-0.16295911,-0.09045647,0.10881159,0.11073104,-0.6328611,-0.4787936,0.24330337,0.04127025,0.4625811,-0.064853385,0.055737957,-0.27344972,-0.30581492,-0.3450949,0.0035453576,0.20671114,0.31191066,-0.031406615,-0.4048839,-0.12112177,-0.08831707,-0.25669134,0.16881627,-0.6165443,-0.3400437,-0.057946406,-0.6479941,-0.17677997,0.63549745,-0.304725,-0.04037472,-0.12996583,-0.016193284,-0.12124798,0.2781837,0.10842114,-0.002299141,-0.005590416,-0.03441413,-0.15665007,-0.3372869,0.20232137,0.061566792,0.3642914,0.33059457,0.0122660035,0.18870357,0.4199556,0.5510385,-0.04117996,0.6620362,0.5488043,-0.121309,0.28032297,-0.19916616,-0.074305795,-0.24771173,-0.19860345,-0.1323505,-0.33196086,-0.38588732,0.13879351,-0.36259195,-0.641949,0.29576433,-0.07311321,0.036236487,0.21244206,0.047454424,0.6703529,-0.22160824,0.13596615,-0.025546538,-0.08022492,-0.5403259,-0.40941033,-0.4602969,-0.25394934,0.46975854,0.99344724,-0.30968225,0.027281253,0.076445416,-0.37400597,-0.074215375,0.13301545,-0.18553363,0.13516204,0.40546462,-0.117301,-0.5101422,0.35644156,-0.00093877316,-0.10981847,-0.49974662,0.13041429,0.49752668,-0.71091115,0.61119115,0.16814543,0.023573866,-0.1134216,-0.4373161,-0.3422376,-0.07363665,-0.18735678,0.28218552,0.28063327,-0.6417977,0.1917155,0.23612301,-0.14840849,-0.693239,0.45808107,-0.1303935,-0.31540602,-0.24387547,0.39597446,0.14277314,0.049688358,-0.10665745,0.14727966,-0.3419089,-0.087000355,0.30926323,-0.17862104,0.25546154,-0.17740948,0.13473429,-0.66253364,0.17196442,-0.41241074,-0.38527334,0.40147093,0.06825076,0.15606946,0.112411976,0.37989646,0.17280786,-0.17173617,0.023066796,0.16028643,-0.17678395,0.22469077,0.2818322,0.47720036,-0.431555,0.37508473,-0.012646205,0.17235373,0.0074301222,0.06818343,0.29178917,0.098159164,0.34845835,0.059786692,-0.22127606,0.24705337,0.7811137,0.06083731,0.37071684,-0.010012746,-0.027956787,0.23041138,-0.08926422,0.14751028,0.04154056,-0.56123227,0.04599974,-0.0969183,0.22637598,0.2772621,0.10580476,0.1830459,-0.08415369,-0.24967183,0.016736325,0.26333812,0.02797511,-1.0635939,0.29038608,0.24036404,0.77603424,0.3746916,-0.01586748,-0.08649623,0.5804729,-0.05631192,0.22115663,0.37864038,-0.22454967,-0.49350306,0.50672793,-0.60297257,0.44926578,0.0080641275,-0.049217883,-0.049734704,-0.048341148,0.28606427,0.6448523,-0.19296142,-0.15241441,0.010874276,-0.36756495,0.026404368,-0.2647765,0.21096182,-0.70593864,-0.2113053,0.45847505,0.53064084,0.25091666,-0.28638607,0.031573355,0.02656098,-0.10317132,0.18146235,-0.036879677,0.11106137,0.19163392,-0.7027772,-0.23235832,0.4855798,-0.3193454,0.12664312,-0.066045746,-0.110598914,0.23530719,-0.28356785,-0.017713616,-0.09103069,-0.66892445,0.121266,-0.13104233,-0.36357206,0.56757677,0.0026832544,0.2269377,0.20538047,0.10288632,-0.35454977,0.5165323,-0.06724961,0.8445091,-0.2005721,-0.062755436,-0.54581827,0.21826942,0.07795221,0.0007741646,-0.053589646,-0.37189645,0.035190836,-0.34825808,0.44261348,0.18440358,-0.19859324,-0.24210908,-0.21685992,0.05214949,0.54294074,-0.048068915,-0.19996516,-0.39912364,-0.22975883,-0.29954073,-0.099057235,-0.040305886,0.3218754,0.3086309,0.088750206,-0.08396717,-0.15618752,-0.18551543,0.32268107,0.14355117,0.2489906,0.33021578,-0.0886209,-0.12473763,-0.16205311,0.1330377,0.38472784,-0.04859772,-0.19182286,-0.30123645,-0.29058668,-0.34369597,0.28525627,-0.13236232,0.5220868,0.07176378,-0.09330202,0.57277024,-0.036149897,1.0451666,-0.01069494,-0.25823268,-0.056156296,0.54190344,0.06959781,-0.08390646,-0.42686048,0.7601656,0.41009504,-0.13736889,-0.17965704,-0.20820959,-0.14533171,0.27187532,-0.060443383,0.032371916,0.0039364924,-0.5876324,-0.09573931,0.08299582,0.19599177,0.19767635,0.05041937,-0.09248565,0.120356135,0.0019765818,0.21940175,-0.29753652,-0.14846097,0.19878265,0.24344946,0.16098548,0.32478854,-0.32536218,0.35477498,-0.43897453,0.14439148,-0.23943523,0.22027877,-0.30813742,-0.29799256,0.07662745,-0.009027784,0.34754992,-0.42393002,-0.4002387,-0.41150087,0.5293536,0.25514826,0.14456047,0.4789802,-0.18608175,-0.11761438,0.047612447,0.5077276,0.69688886,-0.12752904,-0.09665024,0.324153,-0.3237416,-0.6669374,0.363063,-0.1408423,0.23707643,0.098504,-0.034165468,-0.5677706,0.3262264,0.16332382,0.11879898,0.047093272,-0.6171472,-0.10686212,0.17329264,-0.21448271,-0.10755502,-0.24470097,0.12946948,0.75234276,-0.17826647,-0.30708873,0.019711448,0.20810717,-0.11797381,-0.31583077,0.030913262,-0.6856485,0.19408692,0.050004106,-0.26754493,-0.31813926,0.012815897,-0.35743573,0.26218864,0.06237108,-0.31818473,0.1422488,-0.14129266,-0.047607813,0.9193706,-0.009721314,0.18388823,-0.39997685,-0.42923898,-0.6127296,-0.48764846,0.370787,0.097751185,-0.09080239,-0.50352347,0.02257676,-0.01083854,-0.17623264,-0.15242909,-0.30321392,0.4865827,0.20143825,0.1416829,0.025797576,-0.8586323,0.053531118,0.07960778,-0.19779566,-0.51631933,0.33854356,-0.19244501,0.8423773,-0.039835665,0.06318889,0.18473631,-0.242475,-0.114041254,-0.2100198,-0.13053015,-0.54711574,0.09198086,606 +707,0.39145285,-0.21813066,-0.47650173,0.0025174986,0.15215217,0.09752135,-0.07173398,0.47080785,0.22729169,-0.4599621,-0.062143855,-0.32216915,0.036671855,0.43057644,-0.19253254,-0.3230336,0.04205855,-0.021973848,-0.39991018,0.40330407,-0.45893717,0.19924678,0.05663868,0.3949569,0.16034736,0.3233463,0.22795394,-0.17462625,-0.14916536,-0.27404034,0.04118413,0.07472832,-0.33691514,0.37762007,-0.09069061,-0.14493324,0.21410912,-0.41069746,-0.52626795,-0.66553026,0.25872582,-0.64522165,0.1772685,0.14674315,-0.11884297,0.056179818,0.04022093,0.17950581,-0.32813746,-0.21319373,0.15144752,0.061412178,0.026504664,-0.19487652,-0.05007251,-0.10889594,-0.3879049,0.07392621,-0.33895397,-0.194807,-0.21030356,0.14418305,-0.29867423,0.03650572,-0.13991138,0.479002,-0.3823476,0.040772017,0.06872116,-0.38217852,0.2293063,-0.5279951,-0.43431303,-0.060389068,0.1372054,0.008799881,-0.11353293,0.20739841,0.15437078,0.32576373,-0.034509327,0.14450066,-0.26397592,-0.31998587,0.36079195,0.4830808,-0.050714713,-0.56430733,-0.053717878,-0.11891627,0.06151486,0.0778225,0.20907417,-0.5067546,-0.15376468,-0.06838889,-0.34331954,0.19224915,0.5678208,-0.2760811,-0.14732678,0.19981398,0.31727824,0.16382948,-0.11260009,-0.14175364,-0.012209437,-0.450789,-0.14385563,0.003076567,-0.10213229,0.47195113,-0.07986982,0.42411754,0.6218213,-0.21738425,-0.0037643635,0.040946312,0.09416739,-0.19490239,-0.33060673,-0.11501341,-0.039851125,-0.22077097,0.0030586927,-0.18918365,0.9250384,0.27589658,-0.5677492,0.49767017,-0.42247164,0.14585426,0.01704027,0.6030757,0.42581046,0.23730366,0.39579093,0.629819,-0.4435785,0.050387915,-0.14602467,-0.36993524,-0.059029076,-0.07322097,0.16609089,-0.2547119,-0.04624451,0.22936326,-0.14740148,0.013887816,0.3482134,-0.3291167,0.0067256186,0.18576226,0.8063328,-0.2170901,0.0957427,0.54816157,0.9388968,0.8670619,0.1100368,1.1527009,0.04204674,-0.37219912,0.13733242,-0.2005015,-0.8955588,0.33946127,0.38275564,0.57917404,-0.053940687,0.13087437,-0.11879889,0.3278626,-0.46899077,0.1931127,-0.09418957,0.53814375,0.19327945,0.053339563,-0.28499582,-0.38052306,-0.1704461,-0.1362481,-0.006441639,0.14860997,-0.15140411,0.26947695,0.038394697,1.8811809,-0.17020294,0.16739652,0.19736488,0.56189144,0.124801144,-0.12491496,-0.06348653,0.4530688,0.18644848,0.03702482,-0.5954818,0.19334868,-0.1517395,-0.5003856,-0.056420386,-0.29294887,-0.14048265,0.08171614,-0.23357725,-0.15594536,-0.13236138,-0.34414726,0.35079002,-2.9158733,-0.2534158,-0.051261894,0.32298422,-0.27880353,-0.18699512,-0.09590356,-0.47358888,0.41199324,0.3687682,0.52431417,-0.72652113,0.08988368,0.459507,-0.27523878,-0.26110822,-0.548634,0.08492216,0.024021883,0.2692517,-0.0011430887,0.039168928,-0.27665088,-0.04637549,0.22328351,0.011746028,0.06629369,0.31205165,0.23928033,0.069614284,0.44961944,0.0347588,0.41196358,-0.35801667,0.044749543,0.31561285,-0.425491,0.29964516,0.004878693,0.118245676,0.36234173,-0.452487,-0.5406474,-0.4942481,-0.35223883,1.2548999,-0.2360265,-0.48895285,0.37962535,-0.36547723,-0.31132507,-0.27009863,0.4795157,-0.10118936,-0.10884265,-0.7766828,0.08712174,-0.16381058,0.35221392,-0.04492239,-0.114050336,-0.3143139,0.67819256,-0.07235889,0.5349141,0.3666979,0.0020649363,-0.32227919,-0.3405918,0.057383418,0.84884495,0.2989798,0.09673422,-0.06893931,-0.14576952,-0.24259117,-0.2736964,0.073568776,0.5445429,0.63524354,-0.0025602807,0.17802572,0.3244434,-0.056140907,-0.02630441,-0.06847758,-0.24413157,-0.17017816,-0.07779138,0.6557447,0.6496302,-0.23289442,0.31806943,-0.15498734,0.30445167,-0.112710424,-0.31734127,0.42738375,0.41795382,-0.114493534,-0.17702524,0.424191,0.38710743,-0.4297528,0.2565389,-0.4324045,-0.30693105,0.48173,-0.099731125,-0.4003021,0.3806814,-0.29889053,0.17687438,-0.87125814,0.28097066,-0.3106095,-0.41247156,-0.47918144,-0.16419147,-3.0796645,-0.016022168,-0.19957222,-0.2710546,-0.0726108,-0.008882882,0.037651993,-0.38989368,-0.47771567,0.090541765,0.09698307,0.4442924,-0.104851194,0.017295433,-0.116403386,-0.25269228,-0.42782655,-0.047024947,-0.060618557,0.42435122,-0.016600784,-0.37993607,-0.010442393,-0.16439143,-0.25653908,0.24634908,-0.44632837,-0.56089115,-0.04477292,-0.37322256,-0.51491636,0.59317845,-0.24723743,-0.04891102,-0.088048235,-0.08177516,-0.30106094,0.30714878,0.14146924,0.085353054,-0.10271395,-0.032843538,-0.21796623,-0.25035793,0.19815603,-0.045828912,0.30574635,0.37876275,-0.053534415,0.15269186,0.2873915,0.5481732,-0.034698837,0.6329311,0.26580015,-0.03492379,0.29677418,-0.3563175,-0.29244852,-0.3028056,-0.101358645,0.2688988,-0.33264357,-0.50569236,-0.10972068,-0.2533918,-0.49846223,0.41893637,0.13490807,-0.11011732,0.12999447,0.071380936,0.50437456,0.18261495,-0.041730028,0.13072923,-0.02659583,-0.77112234,-0.40487385,-0.7927611,-0.37501717,0.3270406,0.76866746,-0.23824467,-0.14457512,0.048562884,-0.43174362,0.019428972,0.062233474,0.015239805,0.14922997,0.42696598,-0.081468835,-0.58474976,0.53117925,-0.12120985,-0.26428267,-0.4550164,0.16932242,0.6889184,-0.73101354,0.5470432,0.13223389,0.20404895,-0.0950695,-0.2804887,-0.27029335,-0.13327655,-0.2032838,0.27685526,0.12883335,-0.5882453,0.39033735,0.35571772,-0.08143974,-0.7489234,0.24081549,-0.047494035,-0.28613696,0.043412667,0.36195886,0.03957941,0.08954319,-0.09985896,0.18685979,-0.38146874,0.26878172,0.33258608,-0.1688887,0.4597705,-0.21566495,-0.14299099,-0.5301559,-0.076232985,-0.4695142,-0.29578573,0.2977572,0.22036386,-0.035335906,0.02696531,0.118363634,0.39696726,-0.18718778,0.057743624,0.023319472,-0.020943156,0.3022545,0.34459612,0.5507299,-0.41643584,0.5928116,-0.039118055,0.008279802,-0.03331832,0.055198446,0.18948695,0.25351685,0.28798166,-0.099615015,-0.28465268,0.28952596,0.84487164,0.20502919,0.48380074,0.08117839,-0.015039123,0.379025,0.113246195,0.16085984,0.07296197,-0.5071213,-0.02280068,-0.17313583,0.25354224,0.32449192,0.23903894,0.38013744,-0.08401803,-0.37660334,0.020621192,0.34607512,-0.07196079,-0.87988937,0.4165818,-0.0013558039,0.6941539,0.61416173,-0.13622645,0.12649514,0.67372763,0.03416627,0.14235121,0.057137366,-0.05318654,-0.59865546,0.5814896,-0.55674326,0.45979106,-0.12779592,-0.011804732,0.050339878,-0.04943445,0.4075356,0.62740827,-0.1510365,-0.07779474,0.12642597,-0.21300608,0.022125725,-0.5259213,-0.03218887,-0.59374964,-0.40674365,0.36204705,0.46863806,0.22520535,-0.1851298,0.10485571,-0.02369055,-0.07967914,0.22472389,-0.12900434,0.11249856,-0.071353994,-0.79598373,-0.24632007,0.5826943,-0.020180285,0.20505309,0.027407307,-0.28889793,0.29556605,-0.094939485,-0.011436572,-0.12128579,-0.48257595,0.06316248,-0.23022017,-0.45131907,0.20177555,-0.039527223,0.4024722,0.25561708,0.020614633,-0.21726483,0.38390842,0.10423791,0.79713947,-0.19836149,-0.2168315,-0.4449329,0.030934265,0.13999914,-0.1769135,-0.05636773,-0.22447623,-0.14572114,-0.51046467,0.5623233,0.1560116,-0.017187906,0.05196563,-0.23017432,-0.09369279,0.60761344,-0.14486924,-0.04845095,-0.17844321,-0.15082887,-0.14500394,-0.081908785,-0.053811606,0.17085226,0.3628472,0.028326131,-0.012220942,-0.15270191,0.0025697579,0.20947662,0.056123503,0.24681844,0.28913382,0.10204098,-0.37252814,-0.15320419,0.056213554,0.43835053,0.23260242,-0.07779924,-0.14595367,-0.5076343,-0.30171213,0.29825544,-0.164924,0.3289429,0.1468939,-0.4058723,0.5964636,0.09089314,0.96690273,0.049024608,-0.08363542,0.15185556,0.4682079,-0.03887135,0.066545114,-0.37848103,0.7765033,0.4544547,-0.19043352,-0.16491748,-0.30615076,-0.030180344,0.13508366,-0.15356845,-0.06524752,-0.06491485,-0.50159985,-0.20759334,0.017737687,0.24688278,0.15310396,-0.11252535,-0.043980792,0.2145551,0.058710776,0.33756006,-0.36092183,-0.25677273,0.25128314,0.13626918,0.050788563,-0.012278814,-0.42745063,0.5467633,-0.56569135,0.19951919,-0.17935053,0.1013434,-0.09069916,-0.25807276,0.14708431,-0.06513761,0.36918932,-0.48442173,-0.38281283,-0.37320423,0.41310963,0.24607341,0.22242682,0.5329387,-0.10412554,-0.091489516,0.16591732,0.63393825,1.123995,-0.14362134,-0.05767582,0.38428178,-0.2795862,-0.5426896,0.2995915,-0.20509744,0.1370485,0.020734727,-0.19851948,-0.66388357,0.25207308,0.30910012,-0.05486061,-0.012524871,-0.5788106,-0.36955553,0.25315574,-0.4743582,-0.23402461,-0.56810385,-0.16051014,0.6256255,-0.3011449,-0.1200566,0.19111457,0.16165155,-0.42122012,-0.53427,-0.12392323,-0.42545822,0.3714334,0.023262732,-0.24464296,-0.36230367,0.16554826,-0.33687797,0.081858024,-0.15448584,-0.34646904,0.047422472,-0.2990915,-0.18468414,0.90812963,-0.18282866,0.16145553,-0.5041593,-0.4225075,-0.68632114,-0.36211586,0.7296412,-0.21053864,0.00691805,-0.40834618,-0.1254107,0.024023,0.034197196,-0.10611624,-0.28206697,0.46917862,0.078009754,0.32036883,-0.028514963,-0.7619054,0.26054317,0.07153439,-0.1176288,-0.52155626,0.5863864,0.0058124615,0.554979,0.091408335,-0.10431673,0.38011187,-0.47447363,0.05330475,-0.1896469,-0.30033937,-0.59022415,0.2705023,611 +708,0.57804865,-0.02166098,-0.4973394,-0.21916151,-0.29274577,0.30948955,-0.25735548,0.031367052,0.06434954,-0.53575003,-0.13006409,-0.2919039,-0.02008268,0.14791118,-0.13886085,-0.7080206,0.043108933,0.038501836,-0.43774968,0.25470307,-0.55787766,0.52994525,0.221002,0.19239591,0.026358124,0.2421194,0.28725135,-0.28828904,-0.31280357,-0.050188277,-0.22194752,-0.11533948,-0.94935644,0.29961938,-0.012839286,-0.3584824,0.23101804,-0.308399,-0.2527083,-0.55803835,0.23681362,-0.7884163,0.4185947,-0.03146886,-0.16813087,0.11874333,-0.15628433,0.31617075,-0.24254018,0.3856516,0.32011715,-0.24921052,-0.00904642,-0.30787408,-0.24097922,-0.75138545,-0.4636274,0.01830545,-0.5721458,-0.27661502,-0.42803782,0.2672454,-0.2339696,-0.008407684,-0.2733403,0.2552422,-0.3030682,-0.07623216,0.13244642,-0.21853183,0.14323834,-0.3459807,-0.10368944,-0.100377284,0.2507866,-0.22827218,-0.0048253993,0.16197155,0.30875334,0.43495867,0.033619154,-0.19454795,-0.09905476,0.033480413,0.038294103,0.5908478,-0.009866129,-0.32184702,-0.14481695,-0.094479054,0.15584111,0.03495758,0.13171507,-0.3918184,0.046304226,0.14204189,-0.28077757,0.40759844,0.5053865,-0.46438295,-0.10479854,0.3912377,0.3010201,-0.16991946,-0.054808017,0.11998542,-0.049508672,-0.3591592,-0.119498864,0.43760717,-0.039244868,0.5774812,-0.1486703,0.24056993,0.6892113,-0.2771415,0.008322496,0.013806779,-0.2024716,0.04585431,-0.07274319,-0.073781475,0.26217845,-0.56828797,-0.06596711,-0.39209315,1.0053344,0.20035678,-0.761181,0.4492398,-0.35252172,0.0601622,-0.03990929,0.5794484,0.4311514,0.565064,0.058481354,0.75454646,-0.84930104,0.06409201,-0.08813123,-0.48276997,0.053758834,-0.11617332,0.13039611,-0.2074735,-0.08004559,-0.11643105,0.024402665,-0.16670784,0.2763682,-0.26662126,0.078953534,0.17096183,0.69615597,-0.51733816,-0.08795697,0.6488966,1.027189,0.8815418,0.23189847,1.1476381,0.42476505,-0.22099446,0.00050521357,-0.2927453,-0.505736,0.24076787,0.40567,0.49651954,0.09721804,0.21888366,0.22641101,0.21905246,-0.23983653,0.16502398,-0.033312853,0.10270095,-0.05270227,0.005220065,-0.4192885,-0.1925415,0.10205936,0.08160358,-0.060738273,0.15263966,-0.15771511,0.35754442,0.18004632,1.3654977,0.07535674,-0.012800892,-0.011927467,0.47970882,0.094413824,-0.0863953,-0.03659419,0.20386678,0.25916794,-0.030080281,-0.5106362,-0.1218336,-0.21646476,-0.5279192,-0.2895222,-0.1979548,-0.017129362,-0.08246132,-0.44735494,-0.22537008,0.35043672,-0.3076697,0.50723386,-2.1675825,-0.18273273,-0.124037184,0.34032837,-0.38762537,-0.42602813,-0.041327894,-0.49009365,0.26675227,0.40388787,0.27455986,-0.67127365,0.47809073,0.20601171,-0.07150194,-0.21870813,-0.7156584,0.17601167,-0.24992622,0.22365674,-0.0077850106,-0.20153578,-0.36288568,0.12570944,0.6462081,-0.120708875,-0.0962776,0.09839822,0.41652364,0.1943286,0.6580439,0.31467533,0.4524647,-0.22338265,0.08659725,0.22723722,-0.36754262,0.13775972,0.20694907,0.22556254,0.206174,-0.65526104,-0.7027589,-0.78777504,-0.49709442,1.2141165,-0.37639925,-0.32997975,0.24719056,0.15970618,-0.22409171,-0.07538562,0.33439907,-0.042123042,0.09047783,-0.5964775,-0.10961814,-0.0147996545,0.26969567,0.008836541,0.018884636,-0.3197438,0.81204796,-0.25123838,0.4069538,0.37782845,0.11847932,0.07057314,-0.41700336,0.14902839,1.1313415,0.23892373,0.12865953,-0.28969973,-0.17835464,-0.25292683,-0.055120684,0.1361272,0.3900077,0.85261333,0.017849358,-0.121504016,0.44896406,-0.15868782,0.044911638,0.020655565,-0.4987164,-0.05568053,-0.11775964,0.66055334,0.51452184,-0.086282805,0.43237787,-0.37302038,0.23566201,-0.13243887,-0.23285645,0.42125127,0.7516925,-0.12816261,-0.1343028,0.41753393,0.470875,-0.34936026,0.33603674,-0.5464475,-0.46583384,0.53736186,-0.105397,-0.40902206,0.16186,-0.41415834,0.11889125,-0.9089706,0.48277557,-0.11690191,-0.575302,-0.29076964,-0.19437984,-3.420521,0.069047645,-0.13183492,-0.010401492,0.10727955,-0.30654418,0.232365,-0.5294677,-0.35649014,0.08762255,-0.020748597,0.5267161,0.16403161,0.25844002,-0.31737247,-0.1435201,-0.34933758,0.3214541,0.21638666,0.072524816,0.1635589,-0.29105234,0.23873076,-0.44693822,-0.31105882,0.07638343,-0.6539399,-0.56885946,-0.16771275,-0.55938333,-0.5451227,0.7660703,-0.540008,0.066565126,-0.14079206,-0.10989033,-0.28712502,0.41493285,0.19452861,0.096869946,-0.041062906,0.007550645,-0.21700999,-0.42562756,0.23445958,0.18511294,0.40429708,0.34087053,-0.07444111,-0.031197878,0.6268475,0.56254184,0.15924677,0.7120236,0.1587987,-0.15564848,0.25118378,-0.33175197,-0.29692668,-0.67612046,-0.39429995,-0.17489935,-0.3506816,-0.32990438,-0.00015089833,-0.3256229,-0.6609968,0.36380944,-0.009926755,-0.017681304,0.041380797,0.32319686,0.28577197,-0.15062013,0.013556146,-0.14241108,-0.0725966,-0.50166184,-0.539154,-0.6011083,-0.5859804,0.18635812,0.9567401,0.12127583,-0.30187747,0.042878468,-0.20444971,0.2004913,-0.042292066,0.16894668,0.12547877,0.548541,-0.1697088,-0.76438725,0.32952517,-0.1581466,0.03765224,-0.42134795,0.07049645,0.7978007,-0.76731455,0.4369918,0.37780204,0.22330707,0.072193064,-0.31745118,-0.3681423,-0.00436759,-0.34052217,0.34943184,-0.06582758,-0.7206749,0.4034142,0.2891145,-0.17279315,-0.51513606,0.5385897,0.078341395,-0.2455931,0.20346189,0.3743006,0.015546464,-0.17229909,-0.33055526,0.03356256,-0.6489563,0.22902766,0.5226293,0.17378251,0.26429722,-0.08058326,-0.2884114,-0.5194321,-0.20111267,-0.38811415,-0.41749424,0.07386105,0.16981576,0.077308446,0.24866651,0.20173147,0.3811779,-0.44521868,0.053038258,-0.20084634,-0.20669556,0.4759124,0.3110587,0.33278942,-0.5188358,0.6301933,0.018647524,0.14931029,-0.25728187,0.068491615,0.3579076,0.34540653,0.08498742,0.10250997,-0.15373431,0.13222615,0.670337,0.36037716,0.59026444,0.3870106,-0.21627103,0.40401953,0.29177397,0.0852084,0.08161455,-0.25872505,0.005511417,0.015608893,0.044673808,0.27752793,0.0019961423,0.23907915,-0.24902967,-0.08698216,0.20077361,0.045211334,-0.1961352,-0.71157813,0.29537457,0.19226232,0.3979689,0.3928801,-0.021627674,0.13194858,0.5040148,-0.36474594,0.03526468,0.061625168,-0.015065134,-0.332212,0.46821243,-0.52149326,0.35945857,-0.19775167,-0.0063615395,0.05135462,0.093404815,0.21559323,0.92001414,-0.13006549,0.113131136,-0.21299158,-0.17211086,-0.06868993,-0.41563207,0.26145986,-0.47429058,-0.2948877,0.7404398,0.25114977,0.26726437,-0.20897388,-0.0069026053,-0.023118895,-0.22804871,0.25524554,0.0050125537,-0.1948344,0.18715975,-0.7425009,-0.36807588,0.55937445,-0.028460823,-0.040972475,0.24862193,-0.30712938,0.432787,-0.21298034,-0.039818663,0.04377228,-0.4770486,0.01691982,-0.43444377,-0.43381703,-0.015514846,-0.13456811,0.33769542,0.08328238,0.041923173,-0.2174406,0.23818438,0.41573393,0.61817265,0.1384235,-0.30513936,-0.49164146,-0.1385244,0.273589,-0.3259186,0.12414006,-0.32939398,0.058346827,-0.6363458,0.38747042,-0.17525527,-0.081914775,0.06811977,-0.090745285,-0.045518342,0.5052184,-0.18840748,0.030326117,0.41444716,0.32229334,-0.06618599,-0.045307443,-0.3520495,0.078618854,0.05382728,-0.17901398,0.08473844,-0.19916914,0.013885129,0.3286545,0.21581925,0.19863194,0.10861368,-0.07553038,-0.30364048,-0.04102542,-0.19081476,0.36106154,0.2442953,-0.10259463,-0.29390994,-0.3192088,-0.061355665,0.2105841,-0.062157713,0.04609,0.07192281,-0.37452894,0.87092555,0.0046781027,1.2209681,0.11275777,-0.2986958,-0.045724623,0.4585044,-0.040600397,0.15495297,-0.5116862,1.084032,0.5495425,-0.111187935,-0.17604023,-0.3563142,-0.4094733,0.109303236,-0.19517139,-0.22359373,-0.077431366,-0.65337586,-0.25954518,0.13560419,0.2524416,0.067650676,0.20143539,0.1772601,0.19655949,0.09841653,0.50312275,-0.4553884,-0.07664284,0.13370822,0.08179597,-0.008535298,0.17749691,-0.2989023,0.45348355,-0.7955589,0.19595687,-0.41603518,-0.13031594,0.14123051,-0.28651237,0.20953366,0.16359687,0.41208172,-0.381136,-0.30024534,-0.24412066,0.6746942,0.14429428,0.4598958,0.6948796,-0.14798602,-0.07657941,0.1288914,0.48299152,1.2475317,-0.010947127,0.087718755,0.38791215,-0.44330108,-0.49867028,0.19310676,-0.1334648,0.07527004,-0.027423063,-0.45445538,-0.36242485,0.2595724,0.10068708,-0.10941814,0.18603677,-0.5039551,-0.22875999,0.5189135,-0.4134685,-0.4180121,-0.16887045,0.50272393,0.6223809,-0.43383443,-0.19757281,-0.03993305,0.34532684,-0.3551529,-0.37913397,-0.02991612,-0.36561716,0.38468316,0.15896177,-0.3559136,-0.12722181,0.27490136,-0.34386352,0.08368877,0.4394166,-0.45161188,-0.08210524,-0.27310437,-0.10040482,0.85662884,0.20700496,-0.04907706,-0.7614137,-0.40413687,-0.95975524,-0.5404118,0.35483316,0.29086515,0.047932107,-0.34103024,-0.119599395,0.01667413,0.03030203,0.09580176,-0.65297675,0.33379662,0.17452732,0.6069648,-0.07347587,-0.9808985,0.0030546372,0.1797426,-0.28623673,-0.58801025,0.48471212,-0.17193666,0.7787026,-0.101738654,0.111427225,0.16233693,-0.613716,0.27371818,-0.3839977,-0.05083189,-0.70675635,0.05524122,615 +709,0.51793617,-0.28434104,-0.5135078,-0.080555014,-0.24590334,-0.06622071,-0.13703953,0.55713,0.30296624,-0.29213244,-0.2107996,-0.22317266,0.10787232,0.2925939,-0.27040407,-0.62878907,-0.040389195,0.12695192,-0.46913987,0.5793421,-0.4225272,0.11152739,-0.0047320127,0.42183435,0.45510688,0.19221218,0.08446552,0.14348851,-0.26897207,-0.12450163,-0.13006131,0.33423248,-0.4126975,0.004810003,-0.3249845,-0.45809525,-0.16374573,-0.5911602,-0.32308966,-0.6945441,0.46751425,-0.8233627,0.40914166,0.17358582,-0.18400033,0.30290696,0.19262455,0.049991388,-0.2710013,-0.117230855,0.077681035,-0.10040136,0.1541639,-0.19696802,-0.19566998,-0.2376124,-0.7229918,-0.077045314,-0.53937346,-0.18118477,-0.21515451,0.013623609,-0.23523544,-0.02913203,-0.0076559004,0.75970924,-0.36105886,0.11827225,0.07574379,-0.14749192,0.088413715,-0.58980334,-0.33725753,-0.06882291,0.18758294,-0.093139805,-0.24516559,0.2171974,0.18232116,0.3450249,-0.23514105,-0.075091355,-0.58247733,-0.004817344,0.15273754,0.36830312,-0.09594439,-0.7498567,-0.15995063,-0.103065126,-0.025144044,0.20150656,0.1991382,-0.12862678,0.001425977,-0.01826067,-0.10172618,0.52027667,0.43684122,-0.38013193,-0.1985042,0.23154125,0.31923044,0.29604957,-0.15934607,-0.24128716,0.13677898,-0.632159,-0.096164465,0.013174562,-0.23956755,0.6820211,-0.067211024,0.35782704,0.46038407,-0.17944847,0.011184447,0.121889405,0.029008707,-0.11630356,-0.41244966,-0.28758863,0.2534532,-0.3355748,0.10657963,-0.15048088,0.734217,0.1308571,-0.7156529,0.3536042,-0.60053116,0.15404925,-0.009724534,0.3525998,0.69830555,0.35639292,0.43918937,0.60652155,-0.23136145,0.024027701,-0.17793117,-0.29832068,0.077260055,-0.1693136,0.06165842,-0.5337692,-0.13592972,-0.04551833,-0.0014231297,0.28908288,0.8014397,-0.45156989,-0.19344558,0.17358382,0.80658555,-0.16546543,-0.08970957,0.7904933,1.144275,0.96131635,0.042974796,1.0601156,-0.04808289,-0.19856013,0.3599313,-0.22268721,-0.6444841,0.25517514,0.15818392,0.013356814,0.20998254,-0.047401674,-0.019082628,0.33816844,-0.33823088,0.08898326,0.0024291254,-0.0057319817,0.33251423,-0.05052072,-0.3793511,-0.32316494,-0.2375814,0.10662282,0.21846558,0.3373174,-0.35153726,0.26831594,-0.14128527,1.6770134,-0.06906669,0.010996127,0.08212737,0.5808341,0.31795007,-0.11282202,-0.16507879,0.36316505,0.14889622,0.25641426,-0.59749895,0.20986702,-0.23096387,-0.42371795,-0.0019947565,-0.5024205,-0.3170842,-0.039093316,-0.51325613,-0.14640592,-0.08320747,-0.4472626,0.336201,-2.8634367,-0.11920417,0.092568636,0.42146996,-0.1548659,-0.41111177,-0.2621886,-0.40920463,0.4672422,0.30457112,0.3853933,-0.64185005,0.2525688,0.5445822,-0.5660314,-0.15162174,-0.47087017,-0.010933912,-0.03480675,0.40991357,-0.07595208,-0.029576324,0.20790586,0.36206546,0.58499324,0.14921817,0.2064186,0.26250225,0.43191686,-0.2648005,0.55762374,-0.21428563,0.39905664,-0.418896,-0.18151698,0.1906469,-0.46550295,0.2345449,-0.2598599,0.1656928,0.5688876,-0.4812639,-1.1318395,-0.5354097,0.14360288,0.97119373,-0.12618111,-0.34950966,0.33399242,-0.6656475,-0.31885755,-0.10967203,0.72116214,-0.14991686,0.027191928,-0.7389141,0.011744408,-0.12643151,0.09774384,0.07328352,0.05260207,-0.4117081,0.6943088,0.13268529,0.6262459,0.20009534,0.082480304,-0.49052402,-0.39490616,0.14094089,0.76374584,0.17661184,0.15851879,-0.20024714,-0.10456019,-0.22712047,0.039325934,0.11222898,0.66960686,0.43304765,0.007656236,0.24349743,0.2863559,0.1117464,0.0012751336,-0.14897448,-0.11742701,-0.13375814,-0.02813188,0.5299674,0.8152017,-0.20364478,0.3063958,0.06528633,0.24898288,-0.32346886,-0.35020024,0.5825245,1.2082387,-0.08984179,-0.27038172,0.56777865,0.5840017,-0.2655612,0.35223204,-0.43810984,-0.37038124,0.4319792,-0.19949624,-0.38329557,0.22778219,-0.39221162,-0.044896867,-0.68419003,0.07226806,-0.1457544,-0.25506642,-0.6713892,-0.25713706,-3.2337236,0.116038375,-0.18647856,-0.3334449,-0.2771725,-0.2458269,0.018452616,-0.7521302,-0.6761923,0.10826238,0.11574536,0.7573563,-0.25911948,0.15078494,-0.23974885,-0.49402273,-0.109381914,0.2885485,-0.02613252,0.49027875,0.034896806,-0.3639159,-0.051304635,-0.0482472,-0.46800348,0.028202537,-0.4087626,-0.26893175,0.042157643,-0.5043798,-0.33732015,0.7135464,-0.41050264,0.017553035,-0.15612325,-0.094058916,-0.045377966,0.32598197,0.13640265,0.25917473,0.08675497,-0.04597818,0.07522411,-0.13538584,0.12590282,-0.03297703,0.3783902,0.5567616,-0.03295306,0.24576375,0.47429526,0.6148313,-0.14188446,1.0924718,0.4489764,0.024964813,0.16370355,-0.1849241,-0.23205963,-0.62101406,-0.19488178,-0.021443954,-0.37213284,-0.44219616,-0.043325808,-0.35436615,-0.9246479,0.43994948,-0.06985423,0.2697791,-0.02197604,0.3577662,0.5603725,-0.39011425,0.028098537,0.0041537206,-0.05721837,-0.46460035,-0.2616591,-0.41894245,-0.38318208,0.01057229,0.735712,-0.27758697,-0.09267139,0.23565072,-0.23839961,-0.069531456,0.18394342,0.024198055,0.21481189,0.4031298,0.15956634,-0.5334197,0.5127773,-0.17905258,-0.18400805,-0.5458001,0.10941041,0.39882517,-0.57685035,0.66233134,0.4859748,0.04170941,-0.2589521,-0.42249453,-0.16951774,0.010908384,-0.04898793,0.3456499,0.3778782,-0.8093711,0.38413775,0.22795255,-0.045607585,-0.7763367,0.67203265,-0.06489981,-0.53143173,-0.26042563,0.39315218,0.12898128,0.06747179,-0.07001326,0.25185892,-0.42833048,0.117734,0.16904505,0.033067174,0.2984495,-0.2680791,-0.012575645,-0.71737015,0.17008251,-0.4683366,-0.22167048,0.40811312,0.104982056,0.27030283,0.2839318,-0.016902955,0.17929776,-0.22748852,0.120537795,-0.038654473,-0.11277339,0.35833597,0.38509354,0.62007046,-0.47584432,0.5179397,-0.0386677,-0.125439,0.24843144,-0.019647758,0.24210538,0.0032368808,0.57971096,0.08496761,-0.32863438,0.33111885,0.7741658,0.22269715,0.39481783,0.14287731,-0.1626289,0.2543249,0.11738312,0.21504712,-0.20448345,-0.61262393,0.08268455,-0.36183515,0.16200519,0.29818046,0.014317677,0.12037729,-0.12451768,-0.20082654,0.08165276,0.47154897,0.0007870014,-1.2737846,0.20581707,0.09265056,0.89333504,0.6635138,-0.0013852883,-0.01876369,0.58328533,-0.05425279,0.17283116,0.3384447,0.21522841,-0.43743393,0.5017736,-0.5806313,0.5857977,-0.13802852,-0.010923505,-0.12406659,-0.11651929,0.39396846,0.51293015,-0.09670072,0.014219126,0.16051237,-0.39123747,0.1286017,-0.38794532,0.21530475,-0.64871794,-0.13919619,0.7405847,0.6250336,0.3030668,-0.126276,-0.040138826,0.05767471,-0.15892738,-0.062290248,0.032464527,0.08563654,0.022118393,-0.8914588,0.050073184,0.48167187,-0.09743964,0.15388535,-0.030785771,-0.2885874,0.24497157,-0.15829006,-0.14622752,-0.090532266,-0.72845703,0.012099117,-0.35316926,-0.6300384,0.5984997,-0.13669974,0.2758458,0.32146904,0.09478013,-0.5059916,0.32384557,0.13618813,0.6791271,-0.18132934,0.161352,-0.38938153,0.096426055,0.13106635,-0.19348913,-0.29293224,-0.26865676,0.2513677,-0.38373536,0.43662855,0.049910802,-0.2508096,-0.23686147,0.031062406,0.20000437,0.6390243,-0.10324041,-0.25019956,-0.2496857,-0.13357595,-0.31674427,-0.12192651,-0.1073688,0.28716305,-0.08199025,-0.0050549367,-0.13446854,-0.11231494,-0.056202028,0.33901232,-0.11739959,0.5224935,0.38187715,0.22048555,-0.13282907,-0.18478987,0.21059488,0.695685,0.007014348,-0.1414149,-0.36479408,-0.5351973,-0.47159952,0.19292332,-0.045039617,0.3061664,0.37594035,-0.054959215,0.6539575,-0.066071704,1.0134131,0.12297387,-0.412916,0.19878957,0.4775104,0.003173576,-0.2419269,-0.26678598,0.95054996,0.39756945,-0.20887998,-0.1586496,-0.21963635,0.14731947,0.105462916,-0.18044598,-0.19259813,-0.09686036,-0.61041045,-0.115032434,0.12216161,0.24258131,0.29986674,-0.27120888,0.07782593,0.23993692,0.15749477,0.14897299,-0.45270663,-0.13071206,0.3719242,0.23542382,0.07788915,0.16867296,-0.4988143,0.32336256,-0.39424944,0.006671814,-0.42463714,0.2753167,-0.24579047,-0.20982282,0.27093711,0.14467119,0.45250893,-0.20581293,-0.25155658,-0.49328864,0.38971016,0.100192636,0.092556804,0.46903488,-0.15945819,0.036765695,0.011629015,0.617396,1.1793664,-0.15851042,-0.18711321,0.2727598,-0.39472884,-0.7210561,0.28654578,-0.6235417,0.1237346,0.12591021,-0.08889083,-0.6232789,0.15446854,0.10424228,0.13057604,0.049252417,-0.7108999,-0.30455548,0.2565622,-0.24676158,-0.16581082,-0.2967667,-0.1760884,0.5594873,-0.16022757,-0.20045972,-0.01476557,0.3638497,-0.044662613,-0.47870728,0.1286992,-0.43714207,0.24494894,0.09752289,-0.24946228,-0.23484315,0.043783657,-0.5052147,0.23589696,0.12806004,-0.33141503,0.12256173,-0.4015661,-0.05972602,1.1576998,-0.2110943,0.24956915,-0.23362105,-0.62015617,-0.92020214,-0.2886174,0.20700082,-0.0968273,0.05916629,-0.7142404,0.12241873,-0.108942814,-0.24632628,-0.19733664,-0.41434655,0.4541233,0.06357671,0.37325874,-0.056923654,-0.6762774,0.09854977,0.09882993,-0.34950924,-0.5750643,0.45965546,-0.016427461,0.8569587,-0.05097333,0.0386227,0.40162185,-0.4163561,-0.13085309,-0.12521362,-0.13096762,-0.43547165,0.029370103,625 +710,0.4313021,-0.12509766,-0.7152816,-0.32557887,-0.2692287,-0.007843971,-0.26436204,0.21580474,0.3738079,-0.607795,0.09315359,-0.35395476,0.14074752,0.21002755,-0.12983043,-0.6699002,-0.08274149,0.35385624,-0.46830565,0.6009122,-0.38867694,0.21783914,0.38300896,0.17282706,-0.01887835,0.15056394,0.25577927,-0.2621671,-0.12541892,0.0007766256,-0.008862798,-0.024690736,-0.7529221,0.15953325,-0.07552502,-0.3805385,0.12485213,-0.38306558,-0.06562774,-0.7886764,0.3505109,-0.92098516,0.5791863,0.10409783,-0.29151127,0.30685946,0.15619186,0.15277773,-0.18255037,0.058539774,0.100503646,-0.4362141,-0.46141323,-0.043686848,-0.34909594,-0.55106854,-0.7024159,-0.03844293,-0.67046386,-0.16128509,-0.40950897,0.077932715,-0.40476874,0.085182786,-0.22372419,0.5024558,-0.3700678,-0.13299721,0.12659043,-0.18469453,0.36390767,-0.44003758,-0.03947741,-0.12154048,0.11619821,-0.1222513,-0.26660225,0.2145657,0.22720554,0.7203026,0.034569208,-0.36568782,-0.25549972,0.013397061,0.020825468,0.46244815,-0.19978856,-0.36246797,-0.27797726,-0.13405496,0.33503228,0.27174535,-0.07479449,-0.4260146,0.06669639,-0.004176892,-0.386065,0.4240628,0.5099255,-0.40192115,-0.048369877,0.4592627,0.31402192,-0.049834747,-0.19451982,0.11074053,-0.06304164,-0.5884093,-0.24702424,0.32700223,-0.13853289,0.4856413,-0.15065497,0.07883909,0.55197626,-0.1534182,-0.14321329,-0.1589943,-0.05732115,-0.08120648,-0.1774979,-0.1983069,0.42334253,-0.57322395,-0.013445341,-0.5437089,0.83785224,0.037278034,-0.937262,0.40920117,-0.60675687,0.27628434,-0.23759207,0.75906914,0.87753236,0.68546236,0.30480972,0.7653195,-0.57659245,0.12486528,-0.0975783,-0.4459548,0.2129275,-0.016090969,0.39627632,-0.47898534,-0.036757775,0.12373231,-0.09225412,-0.080953486,0.7975765,-0.2660445,-0.22306967,0.1289772,0.67924076,-0.3794604,-0.06521057,0.6163402,1.1059222,0.83511645,0.22587942,1.2955581,0.4208355,-0.23463695,0.22767578,-0.04546942,-1.0078088,0.2503208,0.45439273,0.6648179,0.18454853,0.12428911,-0.035428885,0.33736846,-0.31623378,-0.18476343,-0.11317711,0.3162029,-0.23664662,-0.20826973,-0.2609803,-0.20195685,0.25035593,0.13852337,0.03470792,0.33149847,-0.098924845,0.40754658,0.25418842,1.5846204,-0.093884654,-0.028324114,0.08277381,0.4726662,0.22674522,0.035815142,-0.14509927,0.4537393,0.44530246,0.028036915,-0.62634206,0.1033493,-0.1871898,-0.53108937,-0.20641114,-0.36512756,0.096971676,-0.20201299,-0.305893,-0.21441285,0.045298513,-0.64839333,0.21895379,-2.3924558,-0.1431406,-0.098422095,0.33619103,-0.111195326,-0.26887318,-0.16078107,-0.47182938,0.65844417,0.45278135,0.44103515,-0.623536,0.41885343,0.5192037,-0.4420428,-0.030817417,-0.8906575,-0.06731525,-0.41588715,0.33302644,-0.0030973554,-0.3228567,0.037033174,0.23500326,0.576022,0.09512082,0.15300785,0.48256576,0.5578195,0.10075155,0.6945331,-0.054445975,0.49204466,-0.28343847,-0.18577561,0.23591766,-0.30930886,-0.11123017,-0.20671764,0.20288683,0.32664028,-0.67814773,-0.8849949,-0.5769122,-0.1782838,1.1123288,-0.5659705,-0.6047706,0.32306415,-0.11572051,-0.008618408,0.06840924,0.53938603,-0.2898493,0.08459385,-0.791069,-0.009916053,0.01633195,0.30650598,-0.0039634383,0.17929728,-0.44960758,0.7149743,-0.0817761,0.6685735,0.3861049,0.09776212,-0.25905448,-0.5246324,0.2652327,0.86731637,0.084311195,0.09359221,-0.20350266,-0.05204869,-0.13746372,-0.120463334,0.102600545,0.40112466,0.94492346,-0.15580732,0.026838215,0.39680102,-0.2921072,-0.08876486,-0.10052003,-0.5311468,-0.1737442,-0.11357495,0.46178278,0.5481098,-0.071030706,0.27679804,-0.12980433,0.37072837,-0.169582,-0.48163238,0.637202,0.89002573,-0.2115372,-0.12446086,0.62911254,0.5267168,-0.36775786,0.6326068,-0.6316521,-0.4612307,0.5259823,0.009373195,-0.44193026,0.24652703,-0.48125786,0.14728887,-1.0032088,0.21831734,-0.17006578,-0.39552307,-0.4083683,-0.050164003,-3.637943,0.13417952,-0.17500646,-0.080458276,-0.17077373,-0.052618794,0.34048957,-0.3455692,-0.6520511,0.09348032,0.19646396,0.5041399,0.032285713,0.08258099,-0.42050415,-0.22321104,-0.396668,0.14593242,0.064796455,0.18064506,-0.050342355,-0.5135674,0.01644836,-0.3096929,-0.29915702,-0.007059536,-0.47318867,-0.2460493,-0.18461224,-0.62788934,-0.61521935,0.61474115,-0.35691622,-0.00875747,-0.27002943,-0.07425548,-0.0017841321,0.29818386,-0.19379684,0.16040543,-0.13385546,-0.08740895,-0.07347127,-0.3100707,0.09124953,0.05270074,0.13391788,0.3368836,-0.19679922,0.008956511,0.5764241,0.5676378,-0.0043433583,1.0289147,0.50609183,-0.0034721494,0.2805122,-0.34685865,-0.026982533,-0.75925297,-0.14821133,-0.35413963,-0.5384009,-0.31549752,0.048003417,-0.39878094,-0.8584438,0.64325917,0.19722222,-0.006862292,0.12875077,0.43216074,0.3978997,-0.011089847,-0.019388732,-0.19974071,-0.3089916,-0.5445142,-0.28010654,-0.9231585,-0.4732645,0.041885618,0.9021815,-0.097826175,-0.18679713,-0.008939415,0.0074175275,0.10836604,0.23994154,0.07375324,0.42917892,0.4808313,0.058432616,-0.78319126,0.55250835,-0.014284534,0.10732897,-0.729539,0.16542175,0.58174074,-0.84838575,0.36435983,0.597838,0.15319279,0.039493177,-0.52181816,-0.2384052,0.0429702,-0.2284108,0.36214012,0.07543047,-1.0628862,0.76119554,0.23267832,-0.10163911,-0.93938696,0.43358234,0.046063423,-0.32898954,-0.028194804,0.3758021,-0.011175672,0.05900624,-0.3880009,0.077134095,-0.5688808,0.2427931,0.16309403,-0.033101182,0.5213544,0.057588294,-0.13763905,-0.79400957,-0.08589983,-0.61464363,-0.166291,0.2565983,-0.034702335,0.18369746,0.22746508,-0.10339642,0.5433152,-0.23203328,0.103606865,-0.19500819,-0.33108348,0.5253123,0.50138277,0.2535641,-0.47539315,0.7582604,-0.21253827,-0.11943478,-0.3761407,-0.087909,0.32065165,0.22073537,0.39022696,0.08277939,-0.32442582,0.33844596,0.8969934,0.15450987,0.3514066,0.27106944,-0.10995258,0.67815787,0.19402178,0.06321892,-0.20843203,-0.47715285,-0.18930453,-0.06126391,0.11049709,0.5142477,0.102344275,0.54948574,-0.16624786,0.10877897,0.049082413,0.12734975,0.013988804,-0.762903,0.39345437,0.22641958,0.48884642,0.86800313,-0.08634568,0.19725229,0.51387656,-0.4514052,0.16946298,0.26916996,-0.028805178,-0.3096075,0.5525716,-0.60963607,0.29621264,-0.18239261,0.0369854,0.17112319,0.1209699,0.41600865,1.0673716,-0.0021834213,0.16877426,-0.18972905,-0.13552088,0.37511408,-0.32839602,-0.16892594,-0.47139156,-0.37287888,0.63113964,0.19857931,0.41626537,-0.20709005,-0.100042105,0.18235916,-0.2663535,0.24661809,0.05788426,-0.20819698,0.084241405,-0.6267649,-0.2863231,0.7321408,0.34436518,-0.05192962,0.14584097,-0.37997204,0.3329046,-0.22478381,-0.2943215,-0.17469852,-0.67594534,-0.0059760353,-0.24319139,-0.3224047,0.7921565,-0.17757037,0.30322272,0.093927555,0.097032025,-0.2599173,-0.018495973,0.33352408,0.5569386,0.08968247,-0.3512328,-0.12408042,-0.26727587,0.25756186,-0.380379,-0.25772542,-0.1830225,0.034817137,-0.7324231,0.43904936,-0.27507624,-0.40730497,0.3556492,-0.21393402,-0.012182227,0.5081764,-0.2926567,-0.14060959,0.12437368,0.13462637,-0.14435244,-0.30980727,-0.33402282,0.21322486,-0.22861616,-0.013891106,-0.08096575,0.013690389,0.0573388,0.56450105,-0.051803496,0.1137542,0.2303097,0.41469222,-0.43090802,0.08659278,0.26925585,0.49789158,-0.0537984,-0.07476608,-0.22199184,-0.20169847,-0.26558486,-0.023359913,-0.14543563,0.24894145,0.19103715,-0.5839476,0.92837185,0.061152484,0.9828231,-0.04638385,-0.45318446,-0.031000074,0.54959387,0.06625741,-0.0012095983,-0.26905125,0.88201684,0.6266688,-0.07010338,-0.2600505,-0.5738302,-0.15094472,0.30779478,-0.14127217,-0.21295525,-0.10200735,-0.7762903,-0.39218587,0.3326076,0.3192492,0.18534933,-0.1158086,0.21089035,0.033369854,0.280857,0.35054857,-0.5719902,0.049275894,0.23801419,0.2564053,0.1409747,0.24989107,-0.26711038,0.20963313,-0.65919393,0.12947376,-0.4169674,-0.08252375,0.06891528,-0.26281908,0.19500226,0.10715044,0.32241532,-0.14901242,-0.3513263,-0.107150026,0.62664324,0.26043084,0.37500143,0.92116,-0.25349888,0.17783517,-0.0033287178,0.701758,1.3680637,-0.04583548,-0.03077242,0.32680827,-0.35201553,-0.7019319,0.22545487,-0.23052558,0.13968614,0.18016472,-0.3929025,-0.46422324,0.14044823,0.12819044,-0.34155238,0.17959124,-0.5954848,-0.3089903,0.33658203,-0.13479388,-0.27948615,-0.25012964,0.13738158,0.8747524,-0.3918204,-0.070013955,-0.041492168,0.21613446,-0.18916433,-0.62496245,0.05035249,-0.5492179,0.44465843,0.24339822,-0.4267085,0.21872486,0.17394818,-0.68097425,0.11402105,0.3438164,-0.32170025,-0.029821247,-0.4052744,-0.041913364,0.9408424,0.032967027,0.13776347,-0.4950115,-0.67221165,-0.95208,-0.15718223,0.428051,0.007233629,0.049055286,-0.42888933,-0.06041514,-0.14263679,-0.1765725,0.060984556,-0.5697299,0.34442037,0.048296772,0.5041993,-0.014469917,-0.855713,0.12342826,0.00067864475,-0.24044919,-0.48591056,0.58328605,-0.1229872,0.9369246,0.059322797,-0.001486604,0.3176241,-0.7554686,0.13608116,-0.3453954,-0.10969113,-0.68560517,0.009049745,638 +711,0.46990266,-0.24982783,-0.35446012,-0.124314435,-0.062383134,0.023174038,-0.04447324,0.78697556,0.30877072,-0.33955604,-0.30637276,-0.11766147,0.00092461245,0.29954085,-0.16125932,-0.3630196,-0.07887611,0.061648674,-0.22409551,0.55498195,-0.31416494,0.20769833,-0.11544895,0.3543732,0.35012913,0.2519847,0.054290447,-0.06670216,-0.07040247,-0.12893789,-0.17170206,0.03813958,-0.5204771,0.17421857,-0.22890517,-0.25772905,-0.080154546,-0.59675175,-0.45495135,-0.8172994,0.46408632,-0.9324313,0.47036836,0.0016214618,-0.22535434,0.255715,-0.018510956,0.1501515,-0.2728807,-0.19739595,0.12011675,-0.096029505,0.14369322,-0.06622874,-0.047308363,-0.2677419,-0.6272756,-0.034610607,-0.21135996,-0.1349375,-0.30506337,0.103858985,-0.44658607,-0.08784949,-0.1464872,0.4047198,-0.4673043,-0.04831448,0.18207878,-0.26377377,0.24664034,-0.6976694,-0.1810325,0.007481302,0.16192651,0.06857057,-0.07922169,0.43562728,0.039552134,0.38677123,0.05589542,-0.12969981,-0.34377015,0.08006997,0.05250111,0.5931255,-0.18898095,-0.7048601,-0.05266084,0.024531452,0.42199135,0.25012583,-0.0074907998,-0.12439291,-0.18473704,0.09010839,-0.12720586,0.38513356,0.70321643,-0.14837565,-0.3294801,0.36463034,0.5019162,0.24217921,-0.009484715,-0.043543104,0.041861676,-0.46047598,-0.13475032,0.15843436,-0.31465465,0.53895545,-0.11393755,0.27498895,0.6876881,-0.19742472,0.14849068,-0.06313976,0.052153323,-0.15077783,-0.38515738,-0.27288246,0.3042002,-0.30839396,0.3869565,-0.3032694,0.8777986,0.14335561,-0.7624724,0.4361054,-0.46130517,0.21059725,-0.05288942,0.62178683,0.6745114,0.42642885,0.4383761,0.88726074,-0.370882,0.052834567,-0.07904338,-0.33714822,0.019219521,-0.124893956,0.08227691,-0.33957255,0.07036069,0.2334815,-0.20568769,0.12227498,0.27712065,-0.5770516,-0.0598114,0.18991879,0.75566006,-0.28089792,0.10384205,0.869138,1.1057286,0.8892777,0.04476927,1.147697,0.18897794,-0.25731376,0.30195588,-0.29167712,-0.8383474,0.23916993,0.4223519,0.10885508,0.26418543,0.12781776,-0.15973642,0.31431058,-0.54632163,0.094856896,-0.19742005,0.22412325,0.071455605,-0.07639199,-0.55530864,-0.24416846,-0.12963447,0.025187029,0.074221484,0.22715849,-0.34818745,0.2736618,-0.011944057,1.6256815,-0.13492945,0.0264703,0.18139233,0.6928796,0.21622774,-0.1251125,0.057173967,0.32530868,0.4344095,-0.068555474,-0.5885951,0.11499706,-0.33817068,-0.5879524,-0.036520474,-0.35901797,-0.11043881,0.092864595,-0.2947449,-0.24738576,-0.19788319,-0.38276613,0.47621801,-2.701859,-0.12784961,-0.038388386,0.3686133,-0.3437203,-0.2855256,-0.058121763,-0.56798226,0.42291614,0.39408952,0.5520152,-0.80827993,0.1634722,0.51764876,-0.5901,-0.052314557,-0.6775181,0.074469976,-0.020820994,0.35185277,0.10018199,-0.037236597,0.13050953,0.035575476,0.65709156,0.41058975,0.118763834,0.33588374,0.3517533,-0.05215122,0.2849247,-0.21935037,0.4037429,-0.3087559,-0.024002176,0.34889814,-0.45797998,0.25177863,-0.27681363,0.20863888,0.40844086,-0.49046934,-0.68314993,-0.5735553,-0.25938797,1.2796909,-0.20434335,-0.6630647,0.33564642,-0.27706504,-0.08706416,-0.14697577,0.67409503,-0.25611016,-0.15087858,-0.6055976,-0.08570842,-0.25224814,0.06403558,-0.030685188,0.05531883,-0.3852401,0.87184554,-0.16022293,0.5173034,0.21436515,0.23020218,-0.2642493,-0.4812724,0.06299054,0.6590835,0.52364457,0.1387857,-0.13288394,-0.10559174,-0.18724772,-0.35234216,0.09754224,0.62311393,0.86559325,-0.067387305,-0.045760117,0.40754545,-0.058518514,-0.007769518,-0.021435391,-0.293325,-0.19891456,-0.08064061,0.58734,0.5533049,-0.3691109,0.23944257,-0.17246588,0.10977402,-0.17856114,-0.3289665,0.48684236,0.9630417,-0.23051564,-0.08175126,0.4559544,0.34558532,-0.25892255,0.32557008,-0.78881204,-0.23822452,0.45972124,-0.19247557,-0.5406761,0.11992042,-0.20088778,0.09251407,-0.817597,0.31317025,-0.19113328,-0.56156695,-0.5439096,-0.069225356,-2.780389,0.036075737,-0.28076866,-0.24486233,-0.23861864,-0.1979529,0.057889126,-0.5508424,-0.49166304,0.23690249,0.17387167,0.6071307,0.0057380972,0.12960541,-0.23444095,-0.10913718,-0.6349844,0.054151926,6.5946806e-05,0.49263498,-0.014832878,-0.30598342,-0.07554697,-0.0061346567,-0.6763417,0.08833803,-0.4794349,-0.3294748,-0.25347087,-0.54805154,-0.23389603,0.6242438,-0.27473363,0.022808006,-0.18066183,-0.08744461,-0.19129135,0.28314134,0.14630547,0.029618267,0.04478552,-0.09528187,0.23542903,-0.2952992,0.4298039,-0.0061366283,0.32407698,0.4053361,-0.31490642,0.13223848,0.50816447,0.587141,-0.17643033,0.8335037,0.45877072,-0.112776056,0.28866208,-0.2372124,-0.2019071,-0.48211467,-0.30280116,0.21385258,-0.3140085,-0.4793228,-0.22745368,-0.4499481,-0.8329604,0.30976772,0.007310087,0.6139379,0.07664617,0.057524674,0.6288634,-0.15297332,-0.010582392,0.054327708,-0.051303063,-0.64162314,-0.18124829,-0.65074956,-0.43716308,0.2088431,0.7935626,-0.11681052,-0.18455061,0.016099403,-0.3375674,0.021400185,-0.085983165,-0.11222721,-0.0606356,0.20210396,-0.14536698,-0.62826896,0.5214608,0.18341932,-0.18781835,-0.5476091,0.335487,0.4370545,-0.5343746,0.404514,0.16465694,0.02465587,-0.42490923,-0.58370155,-0.16219456,-0.199082,-0.07886529,0.31080276,0.09122084,-0.6172956,0.4311946,0.33923185,-0.22937004,-0.69491047,0.3344918,-0.10402502,-0.19708943,-0.12399681,0.19923027,0.15796845,-0.14895815,-0.14445823,0.26301187,-0.57408834,0.3859654,0.17591974,0.015870782,0.5477361,-0.1490783,-0.058169052,-0.7395954,0.022508917,-0.6655358,-0.09966187,0.3200836,0.1465958,0.034474973,-0.077726685,0.27405956,0.4053871,-0.37193215,0.11370708,0.019433083,-0.25510293,0.4914425,0.39450127,0.49066418,-0.46601766,0.59203714,0.081772715,-0.19743451,0.13234152,0.20008549,0.35880083,0.1376737,0.26816744,-0.04336464,-0.33810264,0.19253881,0.66313267,0.26694047,0.48503497,0.12500718,-0.15705715,0.35349515,0.068535,0.2928864,-0.056844182,-0.6580089,0.10207398,-0.29985005,0.04167301,0.52527195,0.2521566,0.24228397,-0.08647336,-0.23429474,-0.012340676,0.25494125,-0.19454327,-1.1511638,0.37835422,0.015964018,0.9173389,0.46890333,-0.21377341,0.023510002,0.7383263,0.048702937,0.24230601,0.37239754,0.059210174,-0.69389415,0.570055,-0.67528766,0.4796272,0.046300385,0.011094087,0.10033724,0.1638409,0.39400354,0.5333499,-0.20159322,-0.11392084,-0.084497415,-0.23318471,0.19025777,-0.40978178,0.2132521,-0.5816145,-0.30479443,0.44633335,0.44989422,0.3333903,-0.039525643,-0.039176844,-0.08794662,0.021757506,0.21552144,0.0028728002,0.053807326,-0.076498576,-0.7048158,-0.34145647,0.41485256,-0.058260642,0.15156633,-0.12951276,-0.20567916,0.21092139,-0.35060886,-0.12576768,-0.054271456,-0.7608543,0.14893042,-0.16635635,-0.38309574,0.3880346,-0.058519665,0.4401499,0.16028914,-0.05595753,-0.20565067,-0.08042513,0.2513308,0.86008394,-0.07886178,-0.27761075,-0.66713655,0.06980768,0.25060317,-0.32866722,-7.172273e-05,-0.0496975,-0.30246964,-0.45140296,0.42777875,-0.01662028,-0.20815776,0.2815661,-0.27765796,-0.013405858,0.72716177,-0.2260073,-0.13409042,-0.25987932,-0.20683455,-0.29335895,-0.15694486,-0.19496869,0.29678392,0.31576425,-0.057749506,-0.06389251,-0.20843734,-0.10217888,0.34631315,0.046141937,0.20248362,0.30629227,0.017663062,-0.32057503,-0.16137527,0.18306659,0.4345172,0.24198928,-0.13575846,-0.20326413,-0.5865011,-0.42515305,0.015294213,-0.08376021,0.39944845,0.16120216,-0.2737268,0.583932,0.065445796,1.0674922,0.17299975,-0.29836348,0.10616367,0.58064425,0.085680835,-0.0035015987,-0.29962704,0.8801107,0.60575175,-0.106739126,-0.03458617,-0.24019812,0.12572405,0.40699986,-0.20106696,-0.10738525,0.0501079,-0.6946522,-0.2426853,0.32248795,0.24274868,0.11464869,-0.044620506,-0.15339068,0.2472488,0.028404163,0.49848875,-0.27989742,-0.14273515,0.42567775,0.0032127316,0.20162226,0.059751272,-0.4533598,0.31098783,-0.5886562,0.2165667,-0.2779608,0.14225106,-0.32378754,-0.38341558,0.21586034,0.0117365215,0.5642483,-0.3682384,-0.5847045,-0.08008587,0.42905185,0.1938576,0.10801303,0.41553834,-0.25415552,-0.0099764,-0.0028742964,0.5736005,1.0404886,-0.16236559,0.13568519,0.38181144,-0.47649398,-0.76218975,0.4481489,-0.0860031,0.20042539,-0.017751263,-0.21965459,-0.563402,0.2083135,0.2581189,-0.17606892,0.066442244,-0.70824105,-0.41051027,0.18227635,-0.30368468,-0.1776843,-0.50007284,0.18338634,0.63272774,-0.39099935,-0.39355075,0.20741868,0.16803561,-0.12680301,-0.6165158,-0.00191084,-0.3013962,0.3229289,-0.07744757,-0.5037473,-0.1788844,0.108965725,-0.38337904,0.11605199,-0.104405716,-0.40458438,0.120844536,-0.33527163,0.10644878,0.9708027,-0.1844401,0.07147963,-0.7026506,-0.37524158,-0.9548334,-0.48266065,0.5035441,0.29243737,0.06799863,-0.635481,-0.029148601,-0.10029094,0.11180895,-0.26712105,-0.4373449,0.49629524,0.18115166,0.31987572,-0.13229749,-0.5624291,0.2318043,0.12537922,-0.034309644,-0.47110412,0.48528403,0.028208636,0.9658248,0.1597866,0.09285072,0.082129516,-0.6030016,-0.05462608,-0.14151002,-0.36524785,-0.66018355,0.34294584,640 +712,0.5892473,-0.14437553,-0.40120998,-0.3587014,-0.43316644,0.2564835,-0.18138105,0.25863066,0.337845,-0.46195635,-0.16624568,-0.0718216,0.010178236,0.49488872,-0.20492776,-0.9587104,-0.05916918,0.1837963,-0.66143095,0.35533735,-0.5815341,0.3863148,0.25644985,0.3172104,0.07282475,0.24427682,0.38776433,-0.104454674,-0.07937921,-0.09743464,-0.19037032,0.0119514605,-0.7221339,0.46325767,-0.03387088,-0.10875313,0.01657829,-0.44719803,-0.24967885,-0.6177339,0.23979743,-0.7987741,0.5578069,-0.00495437,-0.27655184,-0.077711634,0.2896442,0.22411264,-0.43032536,0.21138176,0.18831755,-0.33586723,-0.06190491,-0.22267577,-0.3752667,-0.5020112,-0.57637304,0.050786015,-0.6252192,-0.12508526,-0.32835162,0.2954669,-0.33382687,-0.00050524564,-0.07220113,0.46521804,-0.3564638,0.07740163,0.37107986,-0.2935622,0.12930815,-0.32024342,-0.20890948,-0.1822056,0.3579369,0.09021333,-0.32027566,0.39533693,0.3525172,0.4833329,0.15909435,-0.37207025,-0.19092312,-0.24947235,0.30741128,0.4173885,0.0055989143,-0.5170052,-0.3877161,-0.15163308,0.3228555,0.23073807,-0.020368733,-0.5160258,0.19468205,-0.04684923,-0.2700388,0.46905416,0.47024888,-0.38316303,-0.11563386,0.4038963,0.33431715,0.015368664,-0.1574482,0.16610728,-0.016163852,-0.7096628,-0.25796595,0.40838498,-0.01699493,0.52069396,-0.17784823,0.14136754,0.7727101,-0.27239892,-0.12443868,-0.21840884,-0.09541288,-0.10161221,-0.28845707,-0.04686022,-0.01276781,-0.40665022,-0.16370885,-0.2840212,0.9753587,0.10414282,-0.74536264,0.25256538,-0.5320444,0.14829375,-0.14537415,0.68888575,0.7506829,0.49087635,0.17062527,0.9338366,-0.5450217,0.06650514,-0.08050946,-0.4160433,-0.016165394,-0.18341634,0.07209413,-0.42749888,0.05214397,-0.012378912,0.11415969,-0.00443498,0.63641095,-0.2808495,-0.13028045,0.023976304,0.6994123,-0.45636413,-0.1294797,0.919773,0.98028505,0.977135,0.15553209,1.4716505,0.4751884,-0.22388604,0.010217657,-0.28568107,-0.53913176,0.24286151,0.24681476,0.16022484,0.22570314,-0.052837316,0.10553001,0.32257617,-0.46417114,0.041773625,-0.067072935,0.36372584,-0.06975316,-0.00896276,-0.46544248,-0.30037877,0.25521445,-0.011432336,0.2752221,0.29583645,-0.24424174,0.48801655,-0.05625556,1.1792365,0.15360935,0.09750088,-0.026629122,0.3056505,0.3019702,-0.05290006,-0.14985657,0.37782362,0.42904314,-0.18475294,-0.68087393,-0.069486745,-0.26560298,-0.35157618,-0.30300504,-0.5447559,-0.15398818,-0.10904069,-0.2920442,-0.2615374,0.097327724,-0.40499833,0.574925,-2.0891533,-0.3063203,-0.24656527,0.34545857,-0.21157953,-0.22013783,-0.4515047,-0.513271,0.49549943,0.35630623,0.39180246,-0.5431996,0.3767567,0.3770464,-0.24209358,-0.25219032,-0.6638458,0.05714445,-0.178449,0.2817999,-0.026295634,-0.2013371,-0.3450957,0.25775892,0.73829883,0.09304993,0.03546756,0.31807476,0.58902854,-0.021211404,0.6409563,0.02009639,0.62968,-0.35172898,-0.09070773,0.26540276,-0.39288676,0.27091524,-0.021828862,0.114375405,0.36990485,-0.6355023,-0.7814984,-0.7739807,-0.51446635,1.1982785,-0.5750716,-0.46710664,0.2658445,-0.02204639,-0.15195984,0.21401101,0.6675082,-0.15002912,0.14320005,-0.7108997,0.07868603,0.18819532,0.3049721,-0.18234117,0.13405688,-0.32768422,0.8125274,-0.31400818,0.54356724,0.18320674,0.2502264,-0.37001187,-0.49472317,0.14341682,1.0513688,0.277243,0.17320916,-0.15644623,-0.3606583,-0.31124517,-0.30351004,-0.00564345,0.7370629,0.7841196,-0.046367243,0.03619498,0.43115765,-0.28607818,0.0960636,-0.05536055,-0.38192898,-0.03922216,-0.09943059,0.65148234,0.49038136,-0.032721944,0.449101,-0.21291678,0.33953434,-0.3169586,-0.50927424,0.6099569,0.79833895,-0.22696987,-0.2567269,0.63313097,0.4696651,-0.35689008,0.44935232,-0.57498145,-0.54625785,0.7405802,-0.024212072,-0.40287983,0.07258199,-0.46371862,0.05654231,-1.01053,0.3150725,-0.060662653,-0.6060301,-0.40193045,-0.246909,-3.6287408,0.16474636,-0.10295972,-0.021373378,-0.20799376,-0.074585795,0.24312942,-0.4205877,-0.5472532,0.07081135,-0.05705786,0.65341496,-0.031976096,0.2676821,-0.33517697,-0.15412058,-0.2706331,0.14482631,0.022728233,0.35613397,-0.007318266,-0.30641106,0.2592108,-0.4387472,-0.45402798,0.1201028,-0.5611421,-0.55674434,-0.10895911,-0.48508924,-0.39923015,0.83126676,-0.6201409,0.09817702,-0.2671775,0.058827125,-0.1785753,0.36449793,0.11558461,0.30957416,0.21094945,-0.08748768,-0.34510374,-0.34966233,0.36161095,0.02144759,0.23746523,0.25348696,-0.06840027,0.06456096,0.4602486,0.5670887,-0.11145251,0.7872877,0.22249979,0.062464233,0.25528568,-0.33217907,-0.38699296,-0.51840204,-0.38392088,-0.1788086,-0.49694985,-0.47762972,-0.22556566,-0.35544574,-0.88483846,0.3762873,0.17801526,-0.019183429,-0.20993617,0.15223314,0.22175997,-0.097316705,0.029384898,-0.09873095,-0.267607,-0.54365146,-0.5589268,-0.60301656,-0.48571116,0.08392882,1.1230532,-0.071086116,-0.29885912,-0.084189095,-0.39256054,0.10091719,-0.014382646,0.1744782,0.17004949,0.2755391,-0.047381017,-0.80362266,0.47296765,-0.19573878,-0.04004466,-0.7328222,0.06386731,0.8369532,-0.70276797,0.62788194,0.45459396,0.2612445,-0.022168856,-0.4198362,-0.3363542,0.13393515,-0.15158845,0.5475131,0.10461367,-0.5516786,0.5853344,0.109029934,-0.05728505,-0.8369292,0.44575852,-0.0012597534,-0.189835,0.18238877,0.41927433,0.067544766,-0.13350241,-0.31689578,0.13564566,-0.5364619,0.3479296,0.34427595,0.1548225,0.47608778,-0.19898833,-0.19489948,-0.7031966,-0.29410756,-0.5931742,-0.3370272,-0.10002653,0.13357916,0.012881994,0.14843836,-0.06858997,0.3722878,-0.33995336,0.12755206,-0.08915309,-0.124954574,0.36584142,0.3242543,0.49189314,-0.4631451,0.6908884,0.06755185,0.16514008,-0.1855119,0.19193223,0.38294175,0.30029896,0.44090125,-0.10363983,-0.021425694,0.19520047,0.59875053,0.1454811,0.26560423,0.3984126,-0.24753274,0.4662037,0.19547704,0.12742437,0.052611608,-0.2374162,-0.21628979,-0.13604246,0.093273595,0.4210033,0.25997013,0.42593253,0.03814674,-0.10762914,0.28246278,0.056243714,-0.22601502,-1.4338322,0.34204796,0.2273938,0.582595,0.46500382,-0.11368031,0.0755534,0.55143726,-0.29435107,0.057600815,0.23988749,0.041835997,-0.24095863,0.5269029,-0.49270937,0.49931827,-0.32402337,-0.06236986,0.059756838,0.29430902,0.35962582,1.0340303,0.09689543,0.18805741,0.013351541,-0.2533685,0.18792708,-0.4188059,0.17252883,-0.6751525,-0.38747662,0.5769609,0.15802813,0.38285035,-0.27429527,-0.101836,0.08114045,-0.2323579,-0.10327704,-0.101533376,-0.21258637,0.082042344,-0.8555836,-0.28313607,0.4659684,-0.16175412,0.08475265,0.26078966,-0.2954821,0.18134774,-0.20929743,0.065666236,-0.059043817,-0.75248104,-0.31095225,-0.40565678,-0.43709293,0.15683796,-0.6414471,0.27360523,0.19543058,-0.033717398,-0.3163096,0.20226361,0.26703003,0.8392331,0.16787481,-0.29113835,-0.27927476,-0.055323403,0.41829997,-0.41716737,0.00032775218,-0.3433353,0.051959276,-0.6629553,0.5311792,-0.144596,-0.27237952,0.13703667,-0.09885537,-0.063582376,0.44623244,-0.2850424,-0.10236819,0.18732572,-0.04479464,-0.15595077,-0.037417952,-0.40714365,0.29212347,-0.03661755,0.033891458,0.16145119,-0.1437392,-0.09470128,0.29093367,0.056710042,0.28216326,0.38277495,0.07371952,-0.13291685,0.1325596,0.0040146527,0.43883294,0.25394642,-0.031484388,-0.2101418,-0.19249047,-0.25664082,0.419161,-0.21039897,0.021574227,0.13864228,-0.47245917,0.7218122,0.17897789,1.0886409,0.23288439,-0.3482394,0.102633245,0.54571784,0.17357913,0.17634603,-0.3532717,0.8824281,0.542541,-0.19749641,-0.22971341,-0.5263546,-0.11598775,0.33048952,-0.31534842,-0.33046675,-0.15741846,-0.69926304,-0.1864155,0.07592477,0.17127515,0.1378643,0.0437052,-0.11659749,0.042851813,0.24984536,0.5073541,-0.6201565,0.23767461,0.2885338,0.28522223,0.1494263,0.25142092,-0.18820238,0.41841894,-0.73493826,0.25898287,-0.35212305,0.13831021,-0.07092887,-0.20413774,0.2605364,0.12805884,0.3562765,-0.2954677,-0.22329892,-0.22274789,0.87734294,0.22938174,0.33654004,0.828822,-0.25070497,-0.26313952,0.15615003,0.6170045,1.4815037,-0.09679189,0.12567848,0.38059103,-0.30253595,-0.56413895,0.25653404,-0.4560782,-0.0036035501,-0.045325935,-0.5292151,-0.37615106,0.32852003,0.07535923,0.10725023,0.12782668,-0.4710526,-0.25859153,0.52280664,-0.1865721,-0.29783246,-0.2153953,0.31412226,0.47327676,-0.2691977,-0.28619,0.041233633,0.35160062,-0.301552,-0.6442102,-0.0632714,-0.39071047,0.3538918,0.11770857,-0.17651002,-0.2179877,0.07154013,-0.4170491,0.2348732,0.24744861,-0.3561451,0.046931062,-0.070318215,-0.17109202,0.9072574,-0.001857627,0.12693137,-0.6929855,-0.44916314,-0.9091853,-0.29141074,0.38846117,0.0980965,-0.12939762,-0.5004565,-0.2647425,-0.07001969,0.041794892,0.11065228,-0.5612052,0.31833854,0.095541514,0.48454726,-0.0073687905,-0.9241439,0.12312384,0.09871577,-0.35006955,-0.62859017,0.5403852,-0.16910975,0.7780675,0.04680912,0.08610817,0.19399783,-0.66709167,0.25555187,-0.2572676,-0.15703847,-0.685208,0.14712027,643 +713,0.32084367,-0.14680034,-0.72764355,-0.17724416,-0.42871663,-0.14537597,-0.021564212,0.7011375,0.3635851,-0.25464404,-0.13899274,-0.03782535,-0.19329569,0.40363836,-0.13528457,-0.7210677,-0.2134505,-0.042988636,-0.5831876,0.5308992,-0.25134534,0.28196853,-0.33117348,0.5567451,0.42970228,0.20466155,0.008725011,0.17788196,-0.020060072,-0.21622922,-0.013656827,0.28615028,-0.51674217,0.20464924,-0.37338865,-0.32137233,-0.11277992,-0.3977721,-0.35372072,-0.7843644,0.38829368,-0.582357,0.36161625,-0.02962889,-0.22751643,0.107204475,0.27198628,0.16801527,-0.08007422,-0.30878437,0.07977844,-0.0983369,0.096391864,-0.29154474,-0.5419926,-0.51682574,-0.56581795,-0.052489143,-0.5723486,-0.12519962,-0.24507426,0.091592275,-0.25041077,-0.17902385,-0.09627343,0.69788957,-0.32840186,0.17857304,0.29959542,-0.10131491,0.037270725,-0.67131335,-0.23968394,-0.11600493,0.06537047,-0.016840044,-0.36472648,0.53296757,0.058710042,0.06005954,-0.036783513,-0.288025,-0.3821511,-0.021692041,0.13631287,0.30385876,-0.36479318,-0.37560394,-0.032628063,-0.005196741,0.4119094,0.45697927,0.20401606,-0.18460883,-0.086996116,-0.08116032,-0.00048374213,0.665902,0.5357688,-0.06039925,-0.075996846,0.33136544,0.4051353,0.3066668,-0.28638893,-0.13986398,-0.12458082,-0.4502229,-0.13163224,0.24895811,-0.13883033,0.38871348,-0.039315738,0.033025358,0.62368816,-0.11793105,-0.01807388,0.11046652,0.08993809,0.17040561,-0.4680263,-0.086496636,0.26060653,-0.43679565,0.39347643,-0.16995965,0.6765694,0.35460678,-0.59470004,0.21607032,-0.68799555,0.14843348,-0.04004858,0.3807055,0.76248556,0.53605616,0.1616235,0.7189502,-0.20352767,0.2047582,-0.12675712,-0.10712572,-0.030121299,-0.33739808,-0.09731482,-0.42086995,-0.035339452,-0.29191753,-0.085585035,0.2201438,0.23683476,-0.464232,-0.35096577,0.28467262,0.88406724,-0.11631783,0.03387596,0.82936466,0.99012715,0.8968856,-0.069156736,0.6697578,-0.2042978,-0.18439604,0.33322796,0.018299699,-0.5937728,0.2956125,0.2968842,-0.25007313,0.13266002,-0.17465112,0.059002306,0.25467512,-0.3588414,-0.11504484,-0.16947725,0.25243276,0.34778294,-0.047715783,-0.23671794,-0.43196455,-0.08571667,0.015385637,-0.075494215,0.4606933,-0.24385327,0.2759951,-0.22113441,1.3698771,0.17435749,0.007176608,0.2867207,0.85336614,0.33546034,-0.2702297,0.040303223,0.34975353,0.108597465,0.23034772,-0.5783217,0.21399353,-0.40981087,-0.4429012,-0.025667645,-0.5009533,-0.27846757,0.062063158,-0.5770923,-0.19651969,-0.11258096,-0.10687273,0.56387866,-2.835691,0.019433241,-0.10761472,0.3657591,-0.2517389,-0.30570826,-0.04265868,-0.54090095,0.5664552,0.15849663,0.5383502,-0.3843678,0.12223606,0.4175823,-0.7186658,-0.020271663,-0.48451534,0.11724644,0.036075354,0.2778896,-0.12786716,0.028547296,0.1692512,0.028388243,0.6141583,0.124378406,0.09626475,0.4208438,0.35999715,-0.38997108,0.6111561,-0.28488642,0.44150975,-0.59751505,-0.22024243,0.3216113,-0.5819615,0.44633374,-0.04085847,0.07199491,0.62672275,-0.5534452,-1.0433676,-0.3842729,-0.05512252,1.1863883,-0.26953566,-0.42668313,0.24250828,-0.6327595,-0.042534914,-0.27847445,0.6842801,0.044285987,0.060828283,-0.47020018,-0.06798353,-0.13451715,0.13161363,-0.06747147,-0.09694116,-0.16242312,0.5619805,-0.05355213,0.4716411,0.23719954,0.20549837,-0.5659142,-0.50897783,0.07204281,0.48689264,0.3244651,0.086213306,-0.18109943,-0.20744991,-0.37310088,-0.12356795,0.22792567,0.8063842,0.5585137,-0.16141534,0.086366974,0.39513248,0.050745305,0.015226011,-0.19987026,-0.25195912,-0.40024722,0.18443817,0.60007286,0.8075727,0.09706958,0.39875224,0.20270084,0.32688972,-0.29934198,-0.4352565,0.275457,1.1415994,-0.20656888,-0.3978667,0.4363597,0.4937367,-0.30094188,0.39334553,-0.38696846,-0.3514533,0.66377157,-0.094188094,-0.63394994,-0.07987221,-0.23292837,-0.13205558,-0.57124114,0.14362505,-0.62159973,-0.48667014,-0.56309134,-0.18354617,-2.4239674,0.09855065,-0.23252806,-0.19552733,-0.27818435,-0.1699217,-0.018338352,-0.5604731,-0.6197338,0.06066286,0.13878366,0.7377764,-0.1834045,0.10826417,-0.42766306,-0.3016895,-0.29304677,0.2378406,0.4742896,0.46834323,-0.1415397,-0.2897518,-0.3081025,-0.0010212109,-0.48560196,0.03683304,-0.40858433,-0.23905611,-0.18262044,-0.6688114,-0.1130094,0.6247095,-0.39219195,-0.069739886,0.0429815,0.10533324,0.23493631,0.017243253,0.2448956,0.2996735,0.20500486,-0.18905331,0.20687246,-0.20876224,0.19444348,0.15540919,0.61655796,0.1279431,0.1412983,0.4042279,0.5383414,0.69592315,-0.17324477,0.87900823,0.35214233,0.12593475,0.40143046,-0.27625242,-0.42394778,-0.5364982,-0.081171274,0.24089548,-0.2640552,-0.320374,-0.0074308882,-0.35358146,-0.8957293,0.59676486,0.07307494,0.2860306,-0.07627914,0.14484684,0.599275,-0.3431244,-0.077789985,0.088553324,-0.024430353,-0.6555259,-0.33844566,-0.5394131,-0.47036436,-0.08909523,1.0665271,-0.2372497,-0.22047281,0.16798204,-0.36825708,0.106091425,0.24298818,0.010285272,0.078698605,0.28085706,0.13259004,-0.46329367,0.40886885,-0.041255593,-0.008931256,-0.5013004,0.49083132,0.54752487,-0.4801294,0.53177124,0.09932833,-0.00059713767,-0.4351167,-0.69390047,-0.0139107425,0.0039899074,-0.07413942,0.27352992,0.28621757,-0.7865137,0.27278182,0.114336364,-0.2312462,-0.7596338,0.548774,-0.13494761,-0.25795165,-0.18702294,0.40675718,0.3820974,-0.17634445,-0.12199478,0.37896478,-0.2693554,0.14212051,0.26181066,-0.055094875,0.028792597,-0.35401472,-0.14086531,-0.6783936,0.33678088,-0.50698227,-0.31413376,0.63841593,-0.12927178,-0.010359787,0.1034118,0.03627885,0.095721155,-0.10019211,0.17974265,-0.2250827,-0.41193148,0.49002874,0.42874545,0.7995485,-0.6019803,0.51062155,0.01859415,-0.05773612,0.5305025,0.29151165,0.3284841,-0.078182206,0.5610155,0.04216705,-0.19932547,0.03119023,0.743533,0.2407585,0.22177857,-0.09231086,-0.07861873,0.1800976,0.10037859,0.08107941,-0.26188377,-0.71663606,-0.00041175575,-0.15457596,0.05262872,0.3394199,0.04233677,0.17741486,0.043458343,-0.22509283,0.15392247,0.12721455,-0.08676626,-1.2393028,0.44755238,0.23833844,1.0444316,0.2719777,0.23715216,-0.19795388,0.71576285,0.033642605,0.0095807295,0.49047893,0.10673721,-0.38693196,0.4833203,-0.6431882,0.7983398,0.094202116,-0.045165163,0.13599929,0.19845684,0.6689745,0.6963545,-0.13574456,-0.06442861,0.14817287,-0.35286728,0.20662935,-0.41092312,-0.004739358,-0.5117079,-0.39365938,0.5394091,0.56511724,0.21196762,-0.2951657,0.036478974,0.019574692,-0.18781108,0.20258123,-0.17004156,0.0058435844,-0.08092625,-0.4728095,-0.10498575,0.41728136,-0.26482728,0.253295,0.045144673,0.060003903,0.32803148,-0.17081608,0.08385928,-0.12682775,-0.61188275,0.19429739,-0.3642686,-0.46446797,0.27037933,-0.27048072,0.33372423,0.32726339,0.013235251,-0.37058684,0.7253182,0.01797689,0.8687989,-0.47725323,-0.16510442,-0.461153,0.13734218,0.093542084,-0.26066482,0.094072215,-0.15823695,0.009490426,-0.36571458,0.3208525,-0.17497547,-0.4261534,-0.24239086,-0.1515204,-0.0023461087,0.5741546,0.06377813,0.010579278,-0.13143247,-0.30184218,-0.43813282,-0.34733883,-0.003636828,0.25307637,-0.15311982,0.08203959,-0.10975431,-0.22262461,0.19802295,0.2512755,-0.2744908,0.42681488,0.22024682,0.2105703,-0.11232356,-0.044760246,0.26253313,0.5576271,0.023977535,-0.006458292,-0.2921208,-0.16276136,-0.4827481,0.23969705,-0.19126743,0.56725514,0.1760463,-0.24269496,0.48884836,-0.23259942,1.1964854,-0.16466692,-0.4229423,0.22147247,0.46903056,-0.013079364,-0.20992804,-0.23440558,0.79397553,0.4077643,-0.024758,-0.045815863,-0.07067757,0.089721315,0.13578986,-0.31015044,-0.19838017,0.014982103,-0.4097818,0.026987057,0.16715391,0.20508698,0.35410994,-0.26648372,-0.2337742,0.19823524,0.14009134,0.08249199,-0.31474692,-0.18504395,0.2743232,0.28574,-0.090264134,0.09308731,-0.5444534,0.3365811,-0.36559412,0.31892917,-0.2876603,0.31452268,-0.27421027,-0.38932183,0.19274066,-0.15552776,0.44384214,-0.23250818,-0.21666566,-0.3964291,0.44398597,0.3088683,0.18729486,0.34722435,-0.24526462,0.07615921,0.017645914,0.60649806,0.7190449,-0.21516465,-0.25088638,0.066745386,-0.38733017,-0.5801325,0.2450769,-0.4653851,0.32320282,-0.03883553,-0.038735397,-0.45674002,0.16059992,0.15243459,0.102820866,-0.052435234,-1.023222,-0.14826928,-0.078895405,-0.2689697,-0.2960687,-0.5731758,-0.009763451,0.56006515,-0.14250793,-0.27013713,0.2180485,0.10403167,0.08195793,-0.3685682,0.22204432,-0.3150137,0.078518264,-0.14323577,-0.518488,-0.17308475,-0.07279788,-0.44866723,0.25367633,-0.19269317,-0.25631735,-0.016371341,0.13549627,0.16633493,0.873783,-0.21737693,0.3451169,-0.30133414,-0.66989577,-0.75033325,-0.35319865,0.20003143,0.19271943,-0.034862533,-0.55679065,-0.076458395,-0.14405102,-0.25177628,-0.21306203,-0.2659955,0.25608522,0.11987542,0.4738777,-0.29028493,-0.72238535,0.46031666,0.13220277,0.03838661,-0.46841767,0.18646039,-0.25425804,0.8717597,-0.0040653357,-0.027839322,0.27069977,-0.30928436,-0.0047939145,-0.13296705,-0.21075517,-0.29142863,0.1956674,651 +714,0.427815,-0.20564696,-0.5945682,-0.27511376,-0.46115765,0.12231786,-0.4213518,0.13973227,0.31082076,-0.50464225,0.013068516,0.010788097,-0.24196896,0.14223984,-0.28094223,-0.48982328,-0.022980634,0.05289817,-0.74152786,0.48489222,-0.6861505,0.21022132,-0.15548134,0.4293512,0.117033415,0.08511981,-0.022485128,-0.023164362,0.02770732,-0.13678524,0.038418815,0.26445344,-0.9087229,0.2956951,-0.21814407,-0.48521504,-0.006633832,-0.45874405,-0.399934,-0.72533077,0.46355075,-0.93516356,0.6754875,0.018000804,-0.2792285,-0.04481621,0.2606138,0.22847933,-0.26787955,0.118446,0.37036577,-0.20151336,-0.19008031,-0.18388756,-0.3278123,-0.4866339,-0.5912465,-0.023356767,-0.60877514,0.20280375,-0.087663226,0.375521,-0.112697855,0.084488854,-0.36413366,0.31088847,-0.52446604,0.13422142,0.023231186,0.11831433,0.18898128,-0.7336649,-0.28359458,-0.18612991,0.21814741,-0.17512229,-0.33528855,0.23451787,0.2863889,0.5696362,0.014090745,-0.11616014,-0.3781678,-0.07280504,0.18816233,0.33763152,-0.1580934,-0.1941545,-0.34313428,-0.13620967,0.54704756,0.38814786,0.12444774,-0.4616821,0.23305008,0.06273049,-0.2807979,0.75816405,0.53972584,-0.28140786,-0.24793394,0.34453556,0.55032265,0.23192056,-0.32978263,0.23417762,-0.11046291,-0.5622715,-0.27378404,0.4541926,-0.09920588,0.41604525,-0.12787154,0.122275315,0.66354424,-0.1327473,-0.12918407,0.12348436,-0.21982345,0.013922004,-0.28427613,-0.25026914,0.16994046,-0.5114783,0.17627645,-0.29615438,0.41589943,-0.07002352,-0.925359,0.24386023,-0.6994574,0.14088045,-0.020937327,0.7008454,0.8859323,0.6702381,0.20092426,0.7604219,-0.4114609,0.08751064,-0.14343014,-0.16846861,0.161407,-0.23951426,0.052358784,-0.43223512,-0.04727572,-0.35720384,0.0037175028,-0.08878532,0.6006627,-0.33716,-0.15669955,0.060795166,0.54155153,-0.36323783,-0.10766934,0.9132899,1.1273769,1.1647235,0.2394965,1.5019481,0.1717376,-0.05648497,-0.17019844,-0.14926219,-0.64351314,0.27876955,0.20097473,-0.112656005,0.34666398,0.14699572,0.21181811,0.47168902,-0.40841082,-0.115788616,-0.044920966,0.3180153,0.034347944,-0.13292228,-0.3533758,-0.17493285,0.24409896,0.15008587,-0.020262696,0.20888954,-0.24924158,0.3594875,0.34213513,0.8386968,-0.075428165,0.017470768,0.13710856,0.40759963,0.11952578,-0.14980991,0.14876698,0.19018452,0.39254028,-0.067843795,-0.6617509,0.018070795,-0.19213006,-0.34116715,-0.193834,-0.3299382,-0.31743115,-0.3992023,-0.32945377,-0.29833233,-0.000824534,-0.3357633,0.48038074,-2.3890016,-0.27030736,-0.20624174,0.2673531,-0.07159209,-0.3103434,-0.14257179,-0.3328436,0.4832412,0.24564272,0.40021294,-0.5722567,0.80300975,0.54361343,-0.6546074,-0.039042167,-0.8064378,-0.24420299,0.021659764,0.38179207,0.026498506,-0.108402744,-0.1943794,0.028060313,0.5926394,-0.058543563,0.07444439,0.3161761,0.7304836,-0.097415015,0.7948997,0.103791274,0.53306955,-0.4964651,-0.22628821,0.45078468,-0.54323936,0.43245834,0.11219402,0.10164464,0.5818973,-0.6714665,-0.9658712,-0.7313885,-0.493158,1.2203033,-0.16316198,-0.61415094,0.13662004,-0.45281488,-0.45284763,0.059113197,0.52881026,-0.23122314,0.012765845,-0.8434766,-0.24871093,-0.24264638,0.47966972,-0.117868975,0.09883853,-0.48356578,0.72579616,-0.053836666,0.51455796,0.4471811,0.07665249,-0.43115562,-0.3132089,0.09370139,0.8480085,0.50840634,0.082801454,-0.21159887,-0.31567365,-0.030289484,0.097021475,0.13275076,0.7539016,0.47412813,-0.09681474,0.16944557,0.44272313,-0.1243656,-0.035094704,-0.28465232,-0.2696104,-0.34031427,0.10333891,0.59382033,0.8353371,-0.05160653,0.3487248,-0.21808738,0.22803156,-0.2904781,-0.46007127,0.37643558,0.7359728,-0.024297921,-0.27824503,0.7093137,0.64312583,-0.30642375,0.5628865,-0.6625973,-0.38821074,0.3818043,-0.08135957,-0.45220667,0.0014613753,-0.5096859,-0.039406635,-0.8959503,0.16676322,-0.4738468,-0.5491881,-0.7127475,-0.26967436,-2.8064122,0.11242199,-0.17782725,-0.0703206,-0.23664334,-0.3181734,0.43199906,-0.41392362,-0.92128056,0.079315424,0.071411505,0.512635,-0.12030891,0.07306025,-0.33080384,-0.22003192,-0.30810192,0.27377066,0.34134957,0.26414093,-0.20277837,-0.4945967,-0.006503175,-0.3054303,-0.40254053,-0.21895812,-0.55987084,-0.4624683,0.065088555,-0.47455958,-0.20702913,0.6075938,-0.4520749,-0.22181763,-0.3539433,0.07064823,-0.07273484,0.427001,0.0707471,0.31093234,0.12062685,-0.014560044,-0.28120288,-0.18549515,0.23354258,0.12670885,0.083954506,0.39600325,-0.28149086,0.16218592,0.3401368,0.7884749,-0.124861166,0.9328038,0.24778165,-0.13417968,0.46232033,-0.1332774,-0.5334582,-0.77550685,-0.11876147,0.02304883,-0.45477343,-0.53486216,-0.017127734,-0.31551722,-0.8579514,0.5613908,0.05774866,0.04900032,-0.16700625,0.20351829,0.24777116,-0.10500564,0.110721976,-0.1469128,-0.22633259,-0.40784517,-0.67432076,-0.7786868,-0.52967685,-0.1895753,1.502317,-0.025112469,-0.007942473,0.44366506,-0.31525105,0.1490083,0.40681583,0.060737856,0.22448595,0.6267409,0.0069379164,-0.70030147,0.28761134,-0.13833801,-0.16542564,-0.45210993,0.08163628,1.0788885,-0.72969306,0.5759574,0.49647757,0.14219114,-0.070642576,-0.78375286,-0.19721413,-0.024672247,-0.306394,0.7264353,0.41245672,-0.75905406,0.5504016,0.28268725,-0.122850455,-0.79872715,0.7125247,0.012213373,0.022889834,0.08867902,0.48650756,0.21134414,0.009255494,-0.010274424,0.48782852,-0.26018447,0.46716467,0.2249665,-0.15266767,0.24307479,-0.09822475,-0.20106465,-0.66960394,-0.05063867,-0.2954612,-0.3378599,0.18683802,-0.20285313,0.1841108,0.22334972,0.20887396,0.4485423,-0.28390834,0.14138526,-0.23091467,-0.31231648,0.06231176,0.57896686,0.570307,-0.50313497,0.70458233,0.14525358,-0.1398967,0.0017576722,0.1687745,0.34592643,-0.019402932,0.41997942,-0.12630986,-0.040821772,0.17338838,0.92155737,0.21072194,0.29086587,0.08297034,-0.040824927,0.37138516,0.2078396,0.31953225,-0.25912297,-0.5277685,0.01878048,-0.10601865,0.21770154,0.38790148,0.026614923,0.32114357,-0.24236701,0.046852175,-0.02675377,0.2742543,-0.21979779,-1.549549,0.30299684,0.21501495,0.87070453,0.56639504,0.12685448,0.24416527,0.58119065,-0.47182754,-0.17053391,0.4880567,0.28968516,-0.26456854,0.49318403,-0.51194984,0.51062137,-0.13212873,0.0602118,0.17225884,0.18288812,0.5685362,0.93668747,-0.13711858,0.07767921,0.14444381,-0.230716,0.17128716,-0.3187303,0.03322065,-0.28684065,-0.29902336,0.9063889,0.6657501,0.45648062,-0.35463592,-0.08036905,0.09005802,-0.27006692,0.0640843,-0.104962505,-0.23684993,-0.26349944,-0.5753086,0.03958519,0.6071831,-0.02168886,0.006375244,0.17721096,-0.41596082,0.37478182,0.08589459,0.081646286,-0.04262569,-0.6775292,-0.2524044,-0.4246306,-0.34168404,0.12913676,-0.19812639,0.014649065,0.23229448,0.002986039,-0.18023705,0.26879048,-0.010127803,0.70341784,0.18570517,0.07470176,-0.13197762,0.06021232,0.23334914,-0.24713168,-0.062250532,-0.39900047,0.24177703,-0.56299525,0.4327232,-0.22903235,-0.31360728,0.05854257,-0.07424101,0.009370301,0.46477413,-0.23848952,-0.22957104,0.2257302,-0.009662573,-0.29635656,-0.2690027,-0.38217175,0.18220186,0.12458653,0.20601834,-0.06384586,-0.05035787,-0.1538261,0.5319804,0.19484565,0.31240925,0.43478855,0.08966525,-0.48649603,0.025025455,-0.15445049,0.68400925,-0.079849094,-0.08627052,-0.12825772,-0.2613765,-0.21942414,0.68330914,-0.11763012,0.13362494,-0.034857694,-0.4130929,0.73779106,0.12945716,1.2133468,0.01867806,-0.51825714,0.054118812,0.6320805,-0.36134312,-0.015059014,-0.34164315,0.8299757,0.52493984,-0.21247347,-0.08030547,-0.5451558,-0.11312454,0.008458807,-0.3481113,-0.21150443,-0.18090732,-0.7105148,-0.03076409,0.15698609,0.24912444,-0.010821447,-0.045838144,0.18162078,0.11763482,0.08277969,0.3467868,-0.55332005,-0.17524607,0.32299283,0.33763373,-0.09187888,-0.036405355,-0.31485966,0.33214852,-0.67799276,0.035605874,-0.58635294,0.085054524,-0.22935821,-0.20622729,0.19736934,-0.04030147,0.3013802,-0.32114485,-0.2438689,-0.21501762,0.57186687,0.17736365,0.4936805,0.740343,-0.18493065,-0.0054105553,-0.033662654,0.47618392,1.0230858,-0.3139895,-0.16158618,0.1663711,-0.4189294,-0.50464034,0.19395913,-0.8592497,0.089298695,0.29392368,-0.3616095,-0.17451476,0.2929648,0.04307795,0.37369582,-0.06730479,-0.777146,-0.08450977,0.4902546,-0.065772876,-0.26765043,-0.12608135,0.12561591,0.776652,-0.18680866,-0.23880126,-0.029632144,0.4229606,-0.3732605,-0.5905022,0.16529582,-0.47879165,0.45535183,-0.03067724,-0.18461367,-0.028709885,0.098267876,-0.52359855,0.096646436,0.39710286,-0.3238764,0.0033901287,-0.41987514,-0.07904548,0.95230114,-0.19214003,0.19165558,-0.52697814,-0.66655266,-0.7691535,0.039897844,-0.13564529,0.40271738,-0.13531399,-0.5283377,-0.06089193,-0.18780485,-0.20218319,0.10962193,-0.56987613,0.5807549,0.15425958,0.59995246,-0.2547484,-0.8545525,0.13304007,0.14417332,-0.08857513,-0.33553174,0.676625,0.06068371,0.6380281,0.09307451,0.09516914,-0.15123788,-0.69276595,0.46876633,-0.24867429,0.019367503,-0.92861724,0.053522266,659 +715,0.2629005,-0.22013369,-0.5764572,-0.0078095975,-0.3591549,0.017774425,-0.19700465,0.22860903,0.16991363,-0.16292867,-0.34826076,-0.21037824,0.1673688,0.66633797,-0.045814708,-0.48491457,-0.19615108,0.20633742,-0.8168775,0.4612593,-0.5350321,0.18436728,0.17781082,0.37320182,0.19952613,0.35107648,0.14799601,-0.060209136,-0.27320293,0.09569605,-0.32067007,0.1560439,-0.35581633,-0.049576804,-0.13162936,-0.3332818,-0.07865823,-0.47926566,-0.32034442,-0.6553307,0.24555302,-1.016288,0.53502667,-0.04125182,-0.022270491,-0.00387079,0.26286158,0.45469368,-0.3852409,-0.12722835,0.12640946,-0.34662464,-0.17427725,-0.37570316,-0.21166399,-0.1337726,-0.4810756,0.0051009655,-0.50466657,-0.36512983,-0.19132668,0.18315665,-0.2601559,0.11304795,-0.1647949,0.31882662,-0.40128094,0.124906436,0.3676926,-0.29152828,0.21758395,-0.47161502,0.07378204,-0.018930487,0.52608466,-0.1801599,-0.18495134,0.388405,0.32103473,0.33531216,0.09115697,-0.16360706,-0.353303,-0.14325133,0.21157616,0.48486054,-0.10779591,-0.25879398,-0.11983084,0.1722183,0.1911644,0.4791106,0.08659852,-0.19949704,-0.12539221,-0.27331412,0.06103049,0.25005654,0.4735195,-0.2685153,-0.47472033,0.2873469,0.7293715,0.32475904,-0.15329406,-0.20179272,-0.0034976625,-0.65865314,-0.18834434,0.11699825,0.04962725,0.5014519,-0.10286586,0.20588621,0.7943877,0.014173632,0.020846037,0.010801231,-0.051380213,-0.24789491,-0.2240218,-0.008396699,0.061093703,-0.34656063,0.102946386,-0.11337696,0.6017325,0.14752573,-0.704367,0.40238836,-0.7370117,0.20455647,-0.06457787,0.5629445,0.4824632,0.53221107,0.29431024,0.75856876,-0.29582956,0.3208659,-0.15279748,-0.47065833,0.07484532,-0.32934064,0.10057001,-0.57743394,0.02040901,-0.25124705,-0.1116406,0.15691032,0.24330561,-0.43383932,0.085577235,0.16881433,0.8985387,-0.35693997,-0.042587735,0.7994792,0.99679524,1.0620462,-0.033229437,1.2496244,0.21297964,-0.26173285,0.14150406,-0.37615693,-0.785493,0.22020473,0.3658783,0.04477168,0.31179953,-0.10354888,-0.105565615,0.33216128,-0.35291627,0.097639374,0.044503193,0.054500956,0.059571907,0.058151565,-0.53054965,-0.26063767,-0.1540435,-0.13079652,0.1451623,0.2259873,-0.12528878,0.6465578,-0.2048401,1.6933672,-0.035977755,0.19342111,0.1533375,0.50393003,0.14864923,-0.04870985,-0.29405248,0.23273185,0.40145335,-0.0040103015,-0.55405253,0.21814038,-0.27116185,-0.44938147,-0.16764188,-0.475874,-0.12690142,0.1323021,-0.39136806,-0.24611689,-0.0953002,-0.3274919,0.49858445,-2.8358583,-0.14542365,-0.062575765,0.36924106,-0.36229923,-0.2101209,-0.116798565,-0.4374474,0.35258147,0.17465559,0.54250395,-0.58862364,0.5154666,0.35975516,-0.58013827,-0.27279478,-0.6774186,-0.07046465,0.0998911,0.40626892,-0.036854077,0.0107389325,-0.021157457,-0.047716003,0.5942227,-0.18751372,-0.02137136,0.56241345,0.2688009,0.20472646,0.4428444,-0.05367369,0.6140412,-0.5377836,-0.22201443,0.31265008,-0.19503729,0.4479888,-0.11930021,0.14622745,0.5005401,-0.5864707,-0.8813753,-0.6973556,-0.28146845,1.0731617,-0.33057326,-0.46353757,0.35700193,-0.459226,-0.041894633,-0.039741013,0.5394361,0.037082996,0.09419023,-0.6580962,0.15067452,-0.041007422,0.30684128,0.042575654,-0.19328204,-0.38298142,0.6880487,-0.03368,0.5313795,0.39658484,0.3031572,-0.08683909,-0.37159377,0.14890946,0.5408569,0.16580948,-0.074055955,-0.08292045,-0.38262716,-0.055459864,-0.33323604,0.07481989,0.46344164,0.54175246,-0.037383575,0.1547344,0.27537155,-0.026873311,0.088173345,-0.16988891,-0.10652509,-0.027989874,-0.0058140205,0.4516993,0.9041738,-0.01710695,0.5861167,-0.24762592,0.4617367,0.002554866,-0.6218309,0.73180616,0.4724126,-0.10541093,-0.08860164,0.5787615,0.42207256,-0.47749278,0.42960614,-0.5273953,-0.24944547,0.5682984,-0.22903267,-0.48289296,0.2128124,-0.17299901,0.12543295,-0.88823706,0.22288114,-0.3350531,-0.48520038,-0.36357978,0.06552524,-3.159784,0.24194978,-0.33352783,-0.16966096,-0.20920083,-0.099402025,0.061476514,-0.6015471,-0.65609604,0.13789994,0.20885079,0.673912,-0.08613717,0.16271646,-0.23350818,-0.12363224,-0.18865189,0.10799274,0.15416299,0.34779012,-0.30344674,-0.38490093,3.870978e-05,-0.10561847,-0.62677896,0.21278015,-0.65013814,-0.35957998,-0.14103189,-0.45379162,-0.2469776,0.60937154,-0.30139235,0.012317951,-0.26149598,0.05696708,-0.1699784,0.23632163,0.10638566,0.2704975,0.28528732,-0.057268612,0.16192175,-0.2007615,0.41493437,-0.11382769,0.3090332,0.17789914,0.011078005,0.2674454,0.37473628,0.8462404,-0.30410576,0.8845042,0.45942947,-0.0073168734,0.19874305,-0.42055976,-0.25687456,-0.39882606,-0.20440179,0.18866092,-0.35259786,-0.6761144,0.0009299299,-0.23384324,-0.81656045,0.6413322,0.054706845,0.30401567,0.043294862,0.11953187,0.5802393,-0.3317354,-0.14976908,-0.1958186,-0.14024194,-0.6412541,-0.21773386,-0.53297174,-0.6928497,-0.12960184,1.1600568,-0.3216264,0.1913779,-0.024603102,-0.56626284,-0.08784146,0.21885978,-0.0029566241,0.4446783,0.34701774,-0.1634902,-0.7562656,0.46341148,-0.0017829514,-0.18935378,-0.5780195,0.23122893,0.68527114,-0.703859,0.53611684,0.2555701,-0.03323448,-0.16234162,-0.46360695,-0.24794659,-0.17381953,-0.13359858,0.3254802,0.20732531,-0.6154565,0.41943735,0.44056892,-0.35138816,-0.82072246,0.17152342,-0.07312763,-0.350647,0.1284391,0.2167585,-0.030597141,-0.09699071,-0.16450475,0.079787925,-0.34490675,0.31206197,0.24291895,0.10988403,0.036672648,-0.20020787,-0.2745388,-0.6365362,0.17513393,-0.47452185,-0.06446698,0.50191903,0.14632775,0.042282626,0.11284005,0.05364378,0.3790506,-0.3078559,0.095477946,-0.058989994,-0.40676388,0.09654401,0.34092653,0.34520566,-0.6203254,0.58235353,0.066228375,-0.31216648,0.059361037,0.034531076,0.49618956,0.05721935,0.4366739,-0.12341499,-0.280053,0.23539136,0.67496085,0.06022525,0.32486233,0.002056585,-0.010865035,0.3742377,-0.036340214,0.18528023,0.084665045,-0.48163652,0.19560528,-0.20499882,0.2093091,0.41681874,0.32540628,0.3898282,0.094312154,-0.16106609,-0.02270203,0.10550663,0.04510607,-1.072583,0.5221131,0.29333627,0.8597419,0.3727546,0.23851469,-0.20477101,0.8188716,-0.33582157,0.08184223,0.36123085,-0.08289312,-0.62654525,0.68642485,-0.8637342,0.5731959,0.010872965,-0.28081864,0.08854621,0.07189798,0.26059076,0.8179854,-0.24599963,0.011964379,-0.015224587,-0.13838533,-0.09485482,-0.47983173,-0.16141836,-0.5980271,-0.40080434,0.7425586,0.32843745,0.49064234,-0.11313444,-0.16275968,0.15822102,-0.0029351986,0.37992364,0.00037490405,0.23438302,0.11174165,-0.5861163,-0.16459234,0.534479,-0.11468681,0.38413593,-0.23349074,-0.2951734,0.10047965,-0.3454471,-0.12658288,-0.10711752,-0.5275001,0.22126426,-0.29889774,-0.6053296,0.29484084,-0.20672177,0.26109955,0.22187597,-0.021884646,-0.2311643,0.48423025,-0.16564457,1.0651821,0.13270403,-0.15227751,-0.2229175,0.2182853,0.23365505,-0.2542129,0.17347418,-0.21318604,-0.070106365,-0.36676466,0.5962502,-0.015322043,-0.53948617,0.22021466,-0.15867464,-0.040959734,0.5912369,-0.03199384,-0.15226337,-0.08161619,-0.20066026,-0.53056574,-0.11549095,-0.17048961,0.22197247,0.38283777,0.012122189,-0.09955173,-0.12456782,-0.021310082,0.5629461,-0.097673945,0.5971783,0.089868896,-0.0131148975,-0.23281449,0.02971823,0.15815929,0.45951456,0.14282776,-0.10847828,-0.4332557,-0.35225853,-0.26645908,0.19849294,-0.06426447,0.22743592,0.10565739,-0.20419714,0.7752993,-0.03252479,1.1848874,0.074647576,-0.23666614,0.19466083,0.3062704,0.012946314,-0.024681266,-0.4103561,0.85121655,0.53213066,-0.027814064,-0.059900127,-0.41675887,-0.042514067,0.33083308,-0.3150205,0.011724248,-0.010223348,-0.4374253,-0.3480155,0.18704213,0.16703738,0.32093576,-0.09490608,0.17311667,0.01673327,0.13932331,0.22201793,-0.39800078,-0.3251015,0.39873376,0.19608098,-0.08145202,0.13939567,-0.49646458,0.4854892,-0.50987685,0.19527976,-0.38891122,-0.038729813,-0.1656014,-0.36514333,0.18827067,0.058731403,0.29475725,-0.21496345,-0.30382088,-0.13777488,0.512325,0.2112669,0.13600987,0.6575723,-0.23355675,0.049174257,0.09649101,0.44266608,0.9388015,-0.52465785,0.008633483,0.27727434,-0.267127,-0.53995794,0.625515,-0.23620056,-0.20522751,-0.06363869,-0.28002626,-0.55728287,0.23826867,0.2554503,-0.015403528,-0.005164231,-0.50617,-0.10002662,0.18503758,-0.34603706,-0.2826305,-0.44383007,0.3148584,0.61442447,-0.074905984,-0.36548057,0.25772756,0.2161304,-0.21146514,-0.20750782,0.11094312,-0.19051829,0.10874233,-0.07108449,-0.31049544,-0.14984328,0.22717395,-0.34562382,0.04833583,0.021322517,-0.33162168,0.21074845,-0.22678415,-0.022701101,0.9146999,-0.40624985,-0.13435473,-0.531572,-0.51333183,-0.9457257,-0.46264103,0.37223566,0.04821729,-0.025343554,-0.5184399,0.11055161,0.00424132,-0.303247,0.055768803,-0.46028596,0.36260134,0.047960263,0.32461932,-0.3396301,-0.7456993,0.27494937,0.08310093,-0.013612454,-0.49255636,0.5293638,-0.019079057,0.7990402,-0.00024975606,-0.05220103,0.16671811,-0.34334758,0.15546516,-0.27929622,-0.20710865,-0.74039304,-0.05578838,666 +716,0.30494738,0.006913295,-0.6487917,-0.09470487,-0.103337795,-0.0056555155,-0.104893684,0.23501661,0.09470206,-0.4423706,-0.06192624,-0.061109625,-0.05609371,0.2742406,-0.18928453,-0.57099986,0.03269508,0.16728012,-0.3622845,0.21713367,-0.50908035,0.39106706,-0.0667417,0.1728421,-0.14980286,0.21720757,0.2516029,-0.1892007,0.046757605,-0.14729084,0.07320767,0.2849971,-0.5437577,0.38771945,0.044703897,-0.283888,0.07205827,-0.37757793,-0.44631073,-0.5747566,0.36122316,-0.7614721,0.4507567,0.24405307,-0.10913421,-0.044124402,0.1315361,0.2897433,-0.3060802,0.17440858,0.27159256,-0.16657053,-0.0896482,-0.22268552,-0.1497578,-0.1653566,-0.46898365,-0.02218419,-0.5685999,-0.06674092,-0.22812112,0.23325548,-0.37133268,-0.056982137,-0.26282027,0.26496178,-0.3904751,0.0053549362,0.23159912,-0.20346902,0.19463524,-0.3866655,-0.10736123,0.00017051055,0.19798444,-0.31047776,-0.18271974,0.24228351,0.13165864,0.4431977,0.041122913,-0.13424726,-0.18321824,-0.15129104,0.19821683,0.57762086,-0.24976079,-0.31578362,-0.15938625,-0.08755307,-0.055900134,0.21832587,-0.16292939,-0.3866202,0.061358433,-0.026049849,-0.1046033,0.27285445,0.61364335,-0.16933301,-0.17503351,0.37788233,0.4277612,-0.06954626,-0.027176132,0.18576966,0.13437127,-0.5393686,-0.36330283,-0.008230984,0.013694293,0.38824132,-0.050574765,0.40277487,0.73044306,-0.25448307,-0.055760648,0.12964112,0.08507312,-0.017334122,-0.30622783,-0.16879636,0.3054484,-0.4338142,0.102252826,-0.03825509,1.0105271,-0.038650237,-0.77626455,0.31362092,-0.49790478,0.06054358,-0.18379626,0.6717543,0.541359,0.40253797,0.05540822,0.84795976,-0.5585563,0.10490727,-0.007094035,-0.5826646,0.056073748,0.08909508,-0.046488386,-0.4066551,-0.18883258,0.27887446,0.06060206,0.040249083,0.2761235,-0.5626818,-0.088109955,0.038324155,0.75369805,-0.33313575,-0.025701366,0.45340538,1.0838838,0.7504171,0.08122574,1.0375348,0.24677035,-0.15931202,0.10590304,-0.24874347,-0.8823735,0.25655052,0.21861127,-0.3690255,0.12942372,0.17492335,-0.16889097,0.29112095,-0.4656873,-0.01744375,-0.21843848,0.29605606,-0.09989696,-0.1392708,-0.39202303,-0.15694387,-0.0013665227,-0.026851106,0.26253217,0.3682986,-0.31081533,0.12794198,0.050664067,1.5377138,-0.098715715,0.4099774,0.13092197,0.39776427,0.27965865,-0.009602987,-0.19183773,0.20885612,0.4094969,0.09387486,-0.5835442,0.16652346,-0.16079132,-0.54532796,-0.13085972,-0.28617096,-0.025733653,-0.23225117,-0.39518827,-0.110567205,-0.073979065,-0.4967947,0.4177522,-2.8215358,0.037011545,0.087816864,0.45911163,-0.1770387,-0.17722987,-0.21931149,-0.36492187,0.36491066,0.38408154,0.44210082,-0.56409645,0.35910195,0.610405,-0.26740542,-0.15525046,-0.5958876,0.18784057,-0.21763809,0.14000167,0.21301924,0.012737072,-0.11433887,-0.08134783,0.2970393,-0.2185854,0.08516429,0.27880928,0.3808382,0.15387648,0.37412736,0.029906806,0.504518,-0.5523959,-0.2508607,0.27612376,-0.4138169,0.1585261,-0.15568678,0.072385326,0.23899852,-0.40291178,-0.8749409,-0.53607345,-0.23195532,1.0955523,-0.25638598,-0.25416097,0.31120232,-0.14404172,-0.29178804,0.045354407,0.48426387,-0.23732,0.07974212,-0.7892276,0.15023616,-0.27592248,0.41036522,-0.04676831,-0.02244139,-0.5130224,0.4486952,-0.16157366,0.547098,0.3928307,0.16093346,-0.34732157,-0.5391842,0.12382461,0.93007416,0.1283913,0.18701823,-0.067392536,-0.043064874,-0.09771101,-0.06723714,0.1403502,0.6215967,0.77034706,0.034924824,0.15147324,0.352245,0.065280296,-0.006283934,-0.053975064,-0.40909517,-0.15632662,-0.032602426,0.58058524,0.6929171,-0.27468726,0.30439478,-0.14602658,0.36973298,-0.46372396,-0.3469319,0.47392827,0.64643604,-0.11574166,-0.2433208,0.6974869,0.5780337,-0.2629948,0.3884199,-0.6851504,-0.48073402,0.3312686,-0.20586263,-0.48633698,0.17695172,-0.35326985,0.13493967,-0.9734945,0.4526442,-0.22960673,-0.6294404,-0.49824575,-0.1948136,-3.6806047,0.20646736,-0.36139843,0.0028726505,-0.0040429556,0.10043047,0.25863403,-0.442474,-0.3349945,0.07701793,0.0709416,0.59248745,-0.006797706,0.09778369,-0.25021175,-0.054720815,-0.15203789,0.15899399,0.18644527,0.1596768,0.16857202,-0.5066641,-0.07888493,-0.19680335,-0.28699887,0.015411358,-0.5282698,-0.29610795,-0.0883716,-0.6703562,-0.536942,0.63007486,-0.44220206,-0.014029219,-0.3006803,0.09701434,-0.12613046,0.5405155,0.034543507,0.13461111,0.024474965,-0.16442434,-0.22457303,-0.22229253,0.46647856,-0.1463472,0.366707,0.4682639,-0.3100868,-0.09140411,0.46292418,0.4695948,-0.030102115,0.7484726,0.46261948,-0.13425292,0.25710064,-0.33699954,-0.18409,-0.47570598,-0.4316511,-0.074231535,-0.4250045,-0.4848058,0.047830287,-0.49488437,-0.77457684,0.6961746,0.013638964,0.05267001,0.018408675,0.11622949,0.32522207,-0.15261668,-0.24513772,-0.039923247,-0.06966947,-0.2799096,-0.29841238,-0.63700145,-0.44308996,0.0031330402,1.0650246,-0.19270478,0.04981212,0.07179784,0.00042588895,-0.14553915,0.13390891,0.1369789,0.38295788,0.4521254,-0.18505083,-0.5266065,0.53445584,-0.42203522,-0.17587644,-0.60457885,-0.048701745,0.66003215,-0.83414364,0.5841515,0.5061254,0.21775158,0.034757156,-0.5602173,-0.24177605,-0.041098516,-0.12005973,0.42669475,0.15603742,-0.8537761,0.48212045,0.32443824,-0.19762094,-0.70261836,0.44250357,-0.04003004,-0.28517452,0.024226364,0.34337145,-0.31601304,-0.03304825,-0.12494314,0.20681293,-0.3347883,0.3613091,0.05813769,-0.1977846,0.55259705,-0.2841088,-0.025755694,-0.4752308,-0.009655742,-0.6431592,-0.18217021,0.13820037,-0.055349715,-0.032682993,0.31026104,-0.22347978,0.45039588,-0.39320385,-0.022813309,0.061563935,-0.2958021,0.3123824,0.41319656,0.31740424,-0.42008317,0.6549714,0.0008504918,-0.05994767,-0.2500745,0.33661896,0.51265806,-0.046144146,0.617113,-0.20907107,0.0065133204,0.46051556,0.8112516,0.18681921,0.4554765,0.10984021,-0.010784548,0.16407968,0.20877872,0.22420979,0.08664779,-0.41430628,-0.024213117,-0.19187862,0.30337474,0.37656352,0.24551283,0.5922007,-0.19431199,-0.27065042,0.08794626,0.38735887,-0.082567364,-1.0477952,0.5955178,0.18348724,0.5477501,0.46207073,0.16214778,-0.018230494,0.43578073,-0.089237794,0.20969182,0.13260804,-0.100321665,-0.42095703,0.5764767,-0.60521996,0.4689874,-0.18616462,0.014331176,0.14359416,-0.12888804,0.43187407,0.7268032,0.15955965,0.12587208,0.06065299,-0.36641327,0.062249936,-0.31025416,0.36974204,-0.63336533,-0.24566159,0.6441174,0.57994866,0.26134002,-0.041325312,-0.10573928,-0.01565703,-0.012239981,-0.027503747,-0.089716405,0.16680548,0.0881067,-0.73382366,-0.24316296,0.56643164,0.1397821,0.06043958,0.0541091,-0.18697943,0.37774694,-0.338695,0.09267081,-0.10288207,-0.45228788,0.2212345,-0.25981468,-0.32466424,0.29198855,-0.42661873,0.42004043,0.17030114,0.0012475207,-0.4056219,0.3025079,0.18125564,0.6778008,-0.04883788,-0.23877107,-0.39312938,0.14693417,0.26307854,-0.2620344,-0.3235904,-0.3867845,0.004015136,-0.50905484,0.30066374,0.09313191,-0.21263434,0.24686076,-0.22237055,-0.0841593,0.58535933,0.0015725952,-0.15380031,0.09692742,-0.2884116,-0.23989886,-0.044177644,-0.2552993,0.25112686,0.24626073,0.060927026,0.04564545,-0.02691799,-0.24486431,0.13610281,0.088457696,0.3043714,0.35884666,0.2331747,-0.21410751,-0.06157277,0.09064979,0.6334423,-0.07362418,0.050590534,-0.27799237,-0.3895015,-0.142884,0.04741867,-0.19251591,0.27141786,0.17132053,-0.25090328,0.7332496,0.14693877,0.96435004,0.14610612,-0.14597903,0.047002032,0.47853068,0.10481803,0.019481558,-0.50343025,1.0738251,0.6595955,-0.24112016,-0.29340103,-0.1993944,-0.12639284,0.08300638,-0.20003244,-0.46443802,0.047041498,-0.68099785,-0.21796241,0.22090112,0.27461845,-0.020872382,0.041018017,-0.0528362,0.15137316,0.052898664,0.044301264,-0.6065358,0.01617366,0.28388196,0.41853082,0.09002623,0.14399722,-0.46304944,0.42806637,-0.55880386,0.06632879,-0.26950538,0.13692938,-0.22342494,-0.25525343,0.11557046,-0.097532116,0.4475922,-0.21577364,-0.011710034,-0.11585139,0.37364197,0.2741769,0.23330215,0.8342489,-0.24953564,0.06926091,0.08091591,0.57592905,0.9504833,-0.40985647,-0.1815842,0.5241158,-0.22134253,-0.7764518,0.18724276,-0.35623005,0.014171949,-0.17224771,-0.4496743,-0.25328365,0.34143984,0.07729583,0.10547613,0.076419786,-0.56927425,-0.048150145,0.2227609,-0.14540012,-0.1956577,-0.25037143,0.22971974,0.7757918,-0.2107095,-0.19711438,0.1450264,0.34029076,-0.1879079,-0.52170044,0.07456251,-0.3280821,0.24907741,0.14645094,-0.14745128,-0.15487115,0.0062988903,-0.32404533,0.2979506,0.27722505,-0.23134258,0.11096488,-0.21810254,-0.10113049,0.6941775,-0.2580546,-0.05972666,-0.65584236,-0.46781904,-0.9363404,-0.248415,0.4778942,0.09530052,-0.08035718,-0.41693813,-0.07780607,0.08369655,-0.20959836,-0.26805252,-0.21852449,0.45336708,0.005892671,0.3546354,-0.06923768,-0.9248848,0.091616884,0.19561052,-0.40655443,-0.61798567,0.603263,-0.16061017,0.77536213,0.026070787,0.038957044,0.43785605,-0.5767994,0.1057492,-0.24809025,-0.12012766,-0.9123026,-0.052107614,675 +717,0.44901937,-0.23810083,-0.33243436,-0.19963719,-0.36332014,0.05897934,-0.18632911,0.33903363,0.38993308,-0.2879418,-0.011399354,0.06114536,-0.039793357,0.43999636,-0.02119731,-0.65291184,0.056341674,0.1504446,-0.7684119,0.64479285,-0.4443464,0.40337974,0.036068875,0.41815993,-0.13090526,0.28476018,0.3417665,0.06981881,-0.064756386,-0.2315577,-0.13672002,0.019258562,-0.7445257,0.17940532,-0.32302904,-0.25518852,-0.08463042,-0.46113396,-0.20388772,-0.9050483,0.20929495,-0.83536077,0.5519424,-0.09903072,-0.26095998,-0.17335327,0.30983654,0.18254513,-0.24698997,-0.18401861,0.16765359,-0.40919602,-0.11066227,-0.5285364,-0.059872244,-0.44764578,-0.58746445,0.011373117,-0.6749539,-0.33389077,-0.09935728,0.33455694,-0.34996858,-0.13598497,-0.16315642,0.8044503,-0.2354987,0.10878961,0.32502052,-0.503276,0.15819599,-0.71496785,-0.09357435,-0.06228073,0.43832266,0.21791522,-0.36018065,0.53803474,0.4623472,0.40364715,0.26042336,-0.5178474,-0.33210725,-0.24779606,0.13655463,0.4843702,-0.33115658,-0.45063508,-0.21352535,-0.012017236,0.40144396,0.27583668,0.13077481,-0.19992846,0.18682423,-0.08169036,-0.11119881,0.9710181,0.60496306,-0.22027126,-0.23839119,0.20852445,0.5967104,0.10905301,-0.4066835,-0.05515059,-0.08443594,-0.60602534,-0.047654096,0.26147696,-0.06017013,0.5895825,-0.26376745,0.046311323,0.8914117,-0.17199905,-0.15883438,0.17045864,-0.030737072,0.21755864,-0.37947467,-0.055353515,0.41423115,-0.53041995,-0.2296854,-0.56866753,0.6082914,0.10825186,-0.76517284,0.50080895,-0.54689753,0.30638024,0.21048829,0.6624502,0.7516059,0.69355804,0.41986355,0.85937566,-0.13203913,0.009033226,0.32504022,-0.1666066,0.061108768,-0.528342,0.24162725,-0.41226673,0.17678617,-0.103420205,0.10179542,0.14725403,0.44196412,-0.8170299,-0.32897723,0.15366462,1.0397283,-0.14487137,-0.03336183,0.87582546,1.1115596,0.91021895,-0.15042317,1.3036608,0.20918605,-0.22769372,0.011946967,-0.05523886,-0.5843791,0.15636018,0.24264039,0.27284685,0.44843864,-0.19511782,-0.21283855,0.3463125,-0.4909598,-0.18665746,0.17986414,0.21485129,0.23447631,-0.06086835,-0.47169986,-0.13427219,-0.09346685,-0.14246295,0.35180786,0.2433754,-0.52740693,0.5923813,-0.079970725,0.7725314,-0.15091167,0.04873058,0.15335467,0.5460605,0.37465617,0.06929547,0.21775743,0.5657651,0.2740557,0.22137854,-0.4653281,0.25062996,-0.6684469,-0.31631932,-0.17869782,-0.42196152,-0.24332982,-0.06637753,-0.21081744,-0.3488804,-0.04973829,-0.3023984,0.27662435,-2.5679712,-0.36193916,-0.21975657,0.44769335,-0.21132669,-0.115326405,-0.15052103,-0.6299581,0.28683618,0.2641911,0.6124276,-0.7809849,0.24502724,0.49460727,-0.640496,-0.292112,-0.7913749,-0.10201267,0.046504892,0.6405005,0.20749182,-0.1931484,-0.1195536,0.079245456,0.89562094,0.27212504,0.106167465,0.6087952,0.4283309,-0.30841604,0.40425715,-0.1704031,0.5522205,-0.40939254,-0.22124287,0.3422415,-0.62183577,0.11261444,-0.21944307,-0.03469471,0.82720935,-0.3375759,-0.85930383,-0.52238166,-0.1587154,1.0527204,-0.0918512,-0.65637743,0.0799233,-0.15398291,-0.08940753,0.01773887,0.9788288,0.06237919,0.36331865,-0.5269681,0.014815282,-0.25152212,0.21935207,-0.07602528,0.0140881995,-0.31561667,0.8652159,-0.04562885,0.5044894,0.07528757,0.26038164,-0.57318234,-0.42025012,0.006650301,0.7700333,0.48316178,0.083318606,-0.006231606,-0.07428685,-0.234279,-0.44432595,-0.18783753,1.0153117,0.74650663,-0.20713204,0.012502566,0.5586078,-0.15268502,0.0791378,-0.065698594,-0.42369094,-0.2571539,-0.026900282,0.58282703,0.8577825,-0.2170469,0.45734113,-0.12752436,0.42012438,-0.09400421,-0.5614603,0.6989993,0.707153,-0.30015084,-0.009724099,0.43527296,0.35501152,-0.79281497,0.5943235,-0.65666854,-0.41278118,0.818572,-0.20466456,-0.56768835,0.084679775,-0.286944,0.120845675,-0.48076078,0.4676237,-0.3885019,-0.5283908,-0.44158223,-0.23542558,-2.6207163,0.2130243,-0.21256731,0.1428191,-0.64396775,-0.011093158,0.054825205,-0.5081127,-0.49077636,0.12729272,0.30842072,0.6375516,-0.30376408,0.15719287,-0.4419886,-0.30436856,0.07064058,0.5313041,0.11669159,0.24266985,-0.23764457,-0.18924151,0.04407001,0.012093468,-0.68521297,0.13739403,-0.7627639,-0.5171279,-0.17030281,-0.7487724,-0.151434,0.80670494,-0.5385527,0.071379334,-0.30885997,0.24744394,-0.0036139304,0.11577936,-0.01769675,0.23585191,0.2356673,-0.17160246,0.3315864,-0.2518593,0.51962835,-0.050322406,0.5726934,0.1601771,0.12703143,0.24590707,0.4494242,0.7518054,0.011936559,1.1658648,0.19478954,-0.091062896,0.41944772,-0.31009263,-0.4602595,-0.675223,-0.23896863,0.32263756,-0.4009984,-0.32508245,0.15429594,-0.3977381,-0.7869607,0.6763,0.0024171884,0.46893904,-0.056389883,0.67399156,0.42718613,-0.3734167,0.11730576,-0.0051991115,-0.18006429,-0.5587889,-0.116079,-0.7775241,-0.58347756,0.09132111,0.6081916,-0.24805576,-0.034186836,0.044865973,-0.29067698,-0.050223745,0.22022022,0.17869064,0.049984034,0.4931522,0.14938116,-0.651795,0.3040203,-0.21295439,-0.17531453,-0.4557627,0.50154525,0.71931785,-0.6632833,0.5240277,0.50069404,-0.060005344,-0.36391655,-0.5888233,-0.0697485,0.0656467,0.024634533,0.34234315,0.12865978,-0.8677902,0.5348871,0.13772438,-0.481561,-0.7398837,0.18756951,-0.26680237,-0.18586683,-0.19654809,0.5154506,0.16382357,-0.20179437,-0.17423008,0.17869417,-0.6005325,0.16219704,0.06780735,-0.016791293,0.58944213,0.06347292,-0.5044844,-0.8594852,0.05767318,-0.73970705,-0.31225368,0.5207672,-0.15902813,-0.044441663,0.24100828,0.103948,0.42834833,-0.046879265,0.20270589,-0.15503177,-0.41428667,0.46023512,0.48389465,0.41782254,-0.58073294,0.72294134,0.26999217,-0.11929954,0.18662493,0.07502752,0.4006812,-0.008178419,0.65545017,-0.041148383,0.02621498,0.14807789,0.5875776,0.18670091,0.50396794,0.28178403,-0.12693572,0.3255266,-0.13944052,0.33386964,-0.085252576,-0.60415936,0.12685966,-0.12878734,0.03638955,0.5285952,0.24711767,0.35155895,0.25591472,-0.31922057,-0.046866015,0.2218446,-0.104338065,-1.712699,0.3643084,0.26050824,0.9807062,0.192106,0.21769914,-0.3405964,1.043899,-0.1486331,-0.04035894,0.6973749,-0.06504094,-0.30937356,0.7927449,-0.81656617,0.5253838,-0.2021557,0.06471149,0.10295042,0.18856488,0.3739757,0.824719,-0.29644805,0.025249664,-0.04657875,-0.20557532,0.1776383,-0.42407635,0.3747417,-0.084108815,-0.49700734,0.5755888,0.13929592,0.3702857,-0.3197656,0.11842072,0.13288182,-0.17936246,0.38320777,-0.18390203,-0.23528692,-0.13912372,-0.53035885,0.0073905955,0.4580202,-0.11975391,0.2903809,-0.039433025,0.06852694,0.017680217,-0.1167558,-0.15917952,-0.09428457,-0.78785074,0.04005962,-0.24756797,-0.81776375,0.69007564,-0.30709168,-0.03182274,0.2485513,-0.02021392,-0.2774061,0.30570778,0.24074993,0.6687626,0.0075663878,-0.40480182,-0.26660627,0.04934444,0.014165897,-0.52270985,0.28561053,-0.2730086,0.12516603,-0.3895755,0.6559581,-0.33350345,-0.48916295,0.10416817,-0.30249432,-0.14295992,0.5571943,-0.22644672,-0.16160525,-0.010684004,-0.26197553,-0.18142912,-0.047116462,-0.17422684,0.31474236,0.25965798,-0.115949646,-0.22426248,-0.32680023,-0.24819605,0.48662582,-0.050463118,0.33398274,0.30244857,0.090839915,-0.24569415,0.20149678,0.38028258,0.55348754,0.21761928,-0.016287126,-0.30458674,-0.41821894,-0.49263456,0.27803883,0.014625361,0.23994645,0.2059734,-0.3632178,0.97236645,-0.13659123,1.308525,-0.01652928,-0.48437926,0.051236197,0.73948723,-0.093312114,0.16832733,-0.6026841,1.1010929,0.49147856,-0.23293811,0.1285515,-0.6426169,0.19395979,0.5969549,-0.4471296,-0.18791144,-0.043575965,-0.55834615,-0.40121943,0.20901799,0.14713465,0.20265485,-0.20734079,-0.01974403,0.1262995,0.14436477,0.32358584,-0.6574298,-0.00045230755,0.3129349,0.24561647,-0.2396705,0.11619762,-0.26711348,0.39758873,-0.8392613,0.32018882,-0.49081072,0.06297684,-0.19055833,-0.33672488,0.33813146,-0.12590274,0.3979969,-0.36147356,-0.48108244,0.074495114,0.31120598,0.18786089,0.075011276,0.6152301,-0.37523067,-0.121854596,0.3501386,0.73994255,1.4066983,-0.3262428,0.2039445,0.004454597,-0.6485767,-0.74593186,0.41220525,-0.43451265,0.06289603,-0.22540005,-0.48253325,-0.45855233,0.13019228,0.17239493,0.16662186,0.058215372,-0.7375987,-0.40946,0.11993523,-0.46441942,-0.15454076,-0.3593273,0.43873882,0.7105747,-0.17247738,-0.342673,-0.029788824,0.3050275,-0.22136417,-0.85260326,-0.014813295,-0.39521158,0.20042473,0.09992209,-0.30300066,0.0317228,0.09215872,-0.8311379,0.293031,0.3077612,-0.43878227,0.06257008,-0.096843235,-0.027911855,0.7138542,-0.16876386,0.010033681,-0.4956753,-0.6223132,-0.8750518,-0.5458101,-0.00032959535,0.16062102,-0.096035756,-0.5914115,-0.22574663,-0.22576159,-0.23675233,-0.020268746,-0.7007561,0.30932215,0.14412704,0.6816121,-0.4188226,-1.1609712,0.043471493,0.19303177,0.052670047,-0.7370189,0.30439037,-0.12705733,0.8121015,0.13344313,-0.10583475,0.088453166,-0.5194281,0.009264304,-0.40041763,-0.21458231,-0.7365889,0.18120511,681 +718,0.59824497,-0.18310545,-0.60231173,-0.0074821594,-0.25282642,0.024038063,-0.21043032,0.53671587,-0.04871463,-0.11201232,0.020334573,0.14090721,-0.10393175,0.36355782,-0.21655926,-0.73469895,-0.16400574,0.13203086,-0.6508666,0.7052272,-0.31442526,0.4344107,-0.3237354,0.49074796,0.1149844,0.31879103,0.08613868,0.09366305,-0.074599825,-0.058637656,0.020104285,0.17579198,-0.745088,0.13026455,-0.07105403,-0.26173145,-0.047563415,-0.20995428,-0.40753004,-0.73615557,0.2973044,-0.71868265,0.5588853,0.038464125,-0.34580204,0.3131685,-0.0545003,0.3090769,-0.41045076,-0.05300526,0.1257099,-0.037842736,0.028058758,-0.43315893,-0.17992304,-0.47899166,-0.53438807,0.004920244,-0.77833885,-0.31782502,-0.117818244,0.17034279,-0.29161966,-0.10713755,-0.21551174,0.11272354,-0.5273914,0.10816261,0.06587082,-0.13782293,-0.029586038,-0.5332583,-0.038893122,-0.0392832,0.29316235,-0.11070991,-0.12900928,0.3108101,-0.1163116,0.3665074,-0.024767151,-0.20309356,-0.40124482,0.01341364,-0.045187917,0.5552464,-0.21918303,-0.5391149,-0.14047036,0.12010668,0.25690883,-0.034501746,0.141967,-0.30245426,-0.07440008,-0.039874017,-0.028231863,0.41907504,0.5619649,-0.21136339,-0.12983403,0.59791064,0.52407455,0.28847495,-0.06976864,-0.13041556,-0.21599643,-0.31792864,-0.07084466,0.062977,0.042090673,0.37090218,0.15394846,0.33788556,0.52633506,-0.07535829,0.011120489,-0.2225522,-0.09998822,0.18025431,-0.07986942,-0.107468165,0.004977249,-0.24837765,0.30960518,-0.07033242,0.74689156,0.16725312,-0.60245997,0.573913,-0.5350738,0.13367638,0.102548376,0.54552597,0.6982963,0.491005,0.041088495,0.6626266,-0.36656916,0.17773598,-0.042899165,-0.36178684,-0.048313398,0.08658496,-0.120414205,-0.42202413,0.12132769,-0.03286267,-0.2043646,-0.030246612,0.4799198,-0.5812714,-0.105313934,-0.08989286,0.748714,-0.35802343,0.019711623,0.64714944,0.99850243,0.801027,0.002703678,1.0528768,0.51776326,-0.119791396,0.1694832,-0.4156475,-0.73986983,0.2575147,0.37550113,-0.23764548,0.6083883,0.07259273,-0.1453304,0.26802137,-0.13758458,-0.11504238,-0.2265026,0.53221554,-0.0009868696,-0.042038504,-0.3796695,-0.12533364,-0.014390467,-0.02690384,0.10091673,0.34440115,-0.36216456,0.1739677,-0.11540298,1.8918217,-0.08552602,0.13284071,0.12526163,0.7182648,0.35886672,-0.08683271,-0.07329734,0.55428,0.3739554,-0.08332998,-0.6561486,0.04451795,-0.42322153,-0.5551371,-0.10851726,-0.34923464,-0.16684167,0.063988574,-0.32301527,-0.17684102,0.23239206,-0.13852423,0.33233643,-2.5328472,-0.04653695,-0.08507085,0.40167353,-0.38688278,-0.47746685,0.011984282,-0.49779254,0.37464026,0.37435648,0.5122578,-0.4965885,0.28363568,0.33507332,-0.29119575,-0.08946814,-0.41093525,0.13544378,0.13920832,0.53825545,-0.3099059,-0.061043687,0.1877795,0.28148702,0.42713693,0.07612859,-0.06436098,0.4893215,0.40498596,0.008664956,0.16832073,0.03720218,0.49873224,-0.19248034,-0.13405147,0.47332242,-0.14727898,0.46415204,-0.120747924,0.11051775,0.15737692,-0.47218725,-0.9023378,-0.24295092,0.09500034,1.26044,-0.4543957,-0.3609675,0.14890002,-0.13013764,-0.10443999,-0.01706491,0.20116259,-0.21684358,-0.19421902,-0.4921335,0.14847219,-0.12987088,0.3868251,0.025350828,0.1506564,-0.32057574,0.54516226,-0.26925305,0.3772859,0.20275876,0.34324753,0.0005638416,-0.5520378,0.22392862,0.7245951,0.35191762,0.062322177,-0.16039921,-0.3041156,0.06476392,-0.1524702,0.10972379,0.56003594,0.6299857,-0.05134324,-0.017101366,0.3112313,-0.05819507,0.034432158,-0.20675929,-0.2647686,-0.2126033,0.0019180133,0.47909594,0.6984755,-0.2220804,0.6874425,0.007081981,0.30132288,-0.041662075,-0.4243849,0.4703522,0.79618967,-0.28331208,-0.12700197,0.31162423,0.34044176,-0.37943462,0.42952994,-0.65449643,-0.2476252,0.5947707,-0.2677696,-0.37598926,0.41004795,-0.23031399,0.052301362,-0.8796981,0.4136843,-0.05655207,-0.4029291,-0.5054575,-0.18722545,-3.185659,0.023317525,-0.29034755,-0.24985224,-0.064976215,-0.14535235,0.0018701416,-0.88383347,-0.59730893,0.07912434,-0.03285844,0.4252358,0.0018689942,0.17919165,-0.21825501,-0.32036334,-0.300225,0.2726591,0.002455598,0.42894605,0.060811136,-0.3394253,-0.24260037,-0.095055416,-0.25423378,0.11516468,-0.46534392,-0.37653548,-0.17989594,-0.72927946,-0.0316178,0.60265124,-0.33824268,-0.019710986,-0.30658627,-0.011073724,-0.13993126,0.32392886,0.35115412,0.13543466,0.31940287,-0.120647185,0.050078828,-0.44816664,0.22072403,0.15627186,0.36128983,0.38245267,-0.045757916,0.10366185,0.52643895,0.57796735,-0.09455856,0.57382387,0.3868357,-0.16777651,0.5194131,-0.4291884,-0.2864047,-0.75739014,-0.47141224,-0.07503324,-0.21835367,-0.5315265,-0.267386,-0.34637254,-0.80764806,0.368076,-0.28416058,0.42971742,0.051313877,0.27238518,0.5913543,-0.09355144,-0.008321663,-0.11681204,-0.067492135,-0.43302903,-0.20682122,-0.5582275,-0.5978092,0.43624693,0.74000466,-0.23932442,-0.23410557,0.03439551,-0.30336738,0.18350847,-0.25444412,0.11418967,0.24565493,0.32174575,0.09919764,-0.5261558,0.43160185,-0.13385203,-0.02202638,-0.547358,0.20325893,0.58115286,-0.69257694,0.16986902,0.14823489,0.2516404,0.1751975,-0.51878893,-0.11877926,0.33755347,-0.10122419,0.2627087,0.104948446,-0.698248,0.3284348,0.3738683,-0.30267784,-0.77761906,0.31160715,0.075314224,-0.36962926,-0.13400441,0.41030186,0.003938487,-0.037650876,-0.25711533,0.21696122,-0.4338913,0.06638299,0.22464107,-0.0632414,0.19983752,-0.0571514,-0.29204178,-0.58496594,0.2883792,-0.37008002,-0.4949552,0.16232255,0.105840996,-0.05123895,-0.10214304,0.12006138,0.47653908,-0.5580184,0.13868286,-0.02412323,-0.28226644,0.60443217,0.4458354,0.646137,-0.44285935,0.72992283,-0.0035067934,0.13356456,0.23802918,0.017653584,0.50263274,0.10036527,0.24064586,0.31551477,0.05764068,0.2289939,0.7627088,0.23481354,0.62279063,0.075203255,-0.34249827,0.07575809,0.24819565,0.16321042,-0.07669537,-0.30707467,0.071235746,0.26133838,0.08324869,0.525697,0.29810622,0.21663475,-0.14891526,-0.35266432,0.19394661,0.21684383,-0.18248028,-0.9036659,0.2869081,0.14600448,0.75222886,0.3659218,0.115623154,0.087570414,0.41363117,-0.1675525,-0.0038699966,0.26843297,-0.055262864,-0.59836495,0.4594315,-0.50380874,0.4946429,-0.16234687,-0.008685272,0.33574098,0.081536405,0.27004653,0.71842897,-0.05378679,-0.012294127,-0.032314174,-0.20601252,-0.2248431,-0.3710361,0.26394564,-0.40280026,-0.37978357,0.5914625,0.34723246,0.23663872,-0.23256472,-0.018764192,-0.08534903,-0.19953766,0.25405753,-0.12502028,0.017515274,0.11554404,-0.55460006,-0.5568158,0.5067558,-0.088270634,-0.031104323,-0.2912956,-0.09879092,0.30322236,-0.24378592,-0.048546113,0.19940509,-0.7873183,0.4207063,-0.32250008,-0.37213892,0.31505027,0.01431611,0.2331094,0.21152243,-0.08328669,-0.41882956,0.22038998,0.068388656,0.9343606,-0.0703677,-0.25829703,-0.3885826,0.23890811,0.31020164,-0.19940338,0.14777216,-0.27148345,0.103445254,-0.5617744,0.2555725,-0.07028539,-0.40950754,-0.09061387,-0.19912034,-0.09755402,0.4316963,-0.029718308,-0.16092007,-0.19789775,-0.20766786,-0.24715717,-0.17007579,-0.27593037,0.11026219,0.23606865,-0.3621474,0.03206642,-0.043462414,-0.08811922,0.4416393,0.07536183,0.34421736,0.56740195,0.21678546,-0.33320442,-0.13998392,0.31330222,0.54601735,0.12379299,0.17314145,-0.38757044,-0.56856126,-0.3587486,0.15306461,-0.4141574,0.12908897,0.3243609,-0.49124944,0.53880244,0.1507313,1.1543788,-0.1427197,-0.29078653,0.15770823,0.6205514,0.16424781,-0.026492098,-0.53454095,1.1491965,0.6101675,-0.13982137,-0.13285932,-0.15563907,-0.56599015,0.32463342,-0.3737291,-0.12114857,0.027946899,-0.43783617,-0.29102665,0.17188774,0.22130607,-0.060235582,0.055970397,-0.040848073,0.16091776,0.09491979,0.32042295,-0.5820478,-0.22737852,0.3643234,-0.09115733,-0.0064449403,0.111111626,-0.4683998,0.3990048,-0.44823366,0.121573284,-0.4511101,0.099221244,0.06294825,-0.38359576,0.15731335,0.20632234,0.4536152,-0.4336062,-0.52042997,-0.21914898,0.3710397,0.14457634,0.055438325,0.58904433,-0.31592545,0.17833894,0.080429316,0.46191755,0.8716977,-0.007093237,0.05393884,0.2745931,-0.4020926,-0.7029674,0.07517678,-0.1071715,0.2814508,-0.22052816,-0.2877278,-0.62662035,0.18657057,-0.010253622,-0.19433525,-0.06908531,-0.6289539,-0.17705539,0.18775868,-0.28884485,-0.268777,-0.37837443,0.14957505,0.9997349,-0.40550944,-0.3207051,0.15056267,0.11314922,-0.14245255,-0.5857995,-0.07569681,-0.28515622,0.19057035,0.110660106,-0.27738792,-0.29125342,0.23793307,-0.35877785,0.102818005,0.29820842,-0.4123445,-0.024530245,-0.065557554,0.008200508,0.9975608,-0.15596518,-0.21948603,-0.65737236,-0.43258366,-0.9625642,-0.71197563,0.5634298,0.15785052,-0.040957205,-0.8293055,-0.0026876559,-0.18707675,-0.05313278,-0.12924562,-0.45903903,0.31429747,0.16129223,0.5189832,-0.10644657,-1.0533615,0.24832295,0.21438977,-0.18395677,-0.808858,0.50445175,-0.21166888,0.7153232,-0.0028630358,0.0060543874,0.29557514,-0.6164525,0.10823516,-0.42184302,-0.09914088,-0.65737116,0.32275012,685 +719,0.2510369,-0.22313732,-0.31103665,-0.17537846,-0.32289645,-0.024375012,-0.06106052,0.35956624,0.17184423,-0.34956872,-0.2476699,-0.14419262,0.16363771,0.41944584,-0.20385808,-0.68419963,-0.08817943,0.078439064,-0.4914469,0.40285775,-0.69770473,0.20853609,0.17511009,0.22614299,0.16470279,0.40925238,0.47031957,-0.28475034,-0.16588746,0.004274116,-0.21156138,0.074152976,-0.5102896,0.28305012,-0.112873286,-0.23688577,0.09819117,-0.44988304,-0.291475,-0.6296899,0.12505007,-0.9119899,0.22573519,0.024320481,-0.06444891,0.050575994,0.13841747,0.24948868,-0.5454004,-0.0905741,0.24079601,-0.02688296,-0.038782872,-0.23258577,-0.05869082,-0.33896157,-0.45275453,0.006048816,-0.40028682,-0.37598732,-0.27164447,0.14600386,-0.36878207,0.018082261,-0.14958206,0.4246073,-0.47805008,-0.20710094,0.3563482,-0.19013691,0.16793357,-0.4037111,-0.042450488,-0.07270548,0.3261956,0.08961657,-0.10521887,0.48659346,0.37251705,0.2015791,0.29029402,-0.23433556,-0.23717014,-0.12767626,0.41281506,0.40160358,-0.13137427,-0.4810221,-0.22020276,0.12504874,0.0016878981,0.26468843,0.047116254,-0.23316073,0.00017455909,0.048222486,-0.36142096,0.37886047,0.52825236,-0.37129912,-0.3317792,0.28036717,0.56800956,0.054872613,-0.21785475,-0.0914689,-0.004852217,-0.57695526,-0.11566954,0.22459,-0.10841454,0.55014026,-0.21320406,0.071745,0.9148709,-0.18863963,0.034547023,0.003446533,-0.06288436,-0.30911475,-0.461976,-0.09549495,0.08827404,-0.5249318,0.040126223,-0.31270373,0.97353894,0.2896016,-0.7873256,0.5017392,-0.46804097,0.16509606,-0.21728815,0.5808875,0.4232497,0.4721343,0.36975902,0.8582437,-0.43149778,0.16496779,0.0012246737,-0.5775959,0.15906551,-0.34508082,0.11205109,-0.3623557,0.14503339,-0.07861857,0.08185896,-0.049066838,0.31851646,-0.5083302,-0.012542433,0.26618668,0.7886706,-0.3778022,-0.07775163,0.532148,1.0330062,1.0105306,0.15451244,1.1991436,0.4069384,-0.24043362,0.29273435,-0.32839563,-0.78356814,0.18086725,0.40201095,0.3252463,0.06280866,0.035506107,-0.053860262,0.23952597,-0.40169936,0.15539837,-0.22839414,0.3654241,0.19985856,-0.022596914,-0.42768383,-0.32881892,-0.03647482,-0.07104388,-0.034118626,0.15625691,-0.1327302,0.3477462,-0.041537993,1.4170464,0.06467033,0.03748128,0.0145231765,0.69958484,0.25139305,-0.03903406,0.06842624,0.4428839,0.3397389,-0.033395138,-0.59004325,0.25225288,-0.26204622,-0.53425395,-0.051263835,-0.418145,-0.082435295,0.15560836,-0.33761677,-0.15537849,0.074327,-0.20569175,0.5698214,-2.8207548,-0.22123863,-0.062719755,0.18397485,-0.32449487,-0.12422509,-0.09968155,-0.6039315,0.3047921,0.3336789,0.6055542,-0.6992019,0.46370733,0.49555254,-0.5369691,-0.14835057,-0.7422221,-0.08076379,-0.17509812,0.42916423,0.15602794,-0.012550657,-0.20026325,-0.029300997,0.6816613,0.107231684,0.17343578,0.35638177,0.25858897,0.24457805,0.5724823,0.14167672,0.59592533,-0.37683153,-0.043137785,0.2940102,-0.3714927,0.39908537,-0.03127322,0.04539597,0.5240556,-0.45444158,-0.96388507,-0.71359646,-0.44425297,1.0903034,-0.46259958,-0.30595288,0.26039955,-0.15722074,0.08839953,-0.033934638,0.33825928,0.023010671,0.1676462,-0.61865133,0.18886067,0.16665618,0.1082578,0.035417974,-0.08373928,-0.15320979,0.8523953,-0.08782098,0.5229237,0.1419832,0.1317084,-0.072460026,-0.3679775,-0.024428193,0.7309002,0.18209489,0.02738192,-0.19192956,-0.38219687,-0.030686663,-0.24700762,-0.014380822,0.4235218,0.74905026,-0.040459815,0.016516084,0.3995867,-0.07311824,-0.018268468,-0.09647106,-0.31048343,-0.080405354,-0.035969123,0.41691685,0.6933116,-0.21949449,0.45822436,-0.3571759,0.33306402,0.03657778,-0.5324044,0.62159723,0.5625053,-0.11507617,0.00802505,0.36004442,0.58661026,-0.518052,0.36003047,-0.5315001,-0.19492663,0.61449707,-0.19308259,-0.39450935,-0.0035714323,-0.20844497,0.05478074,-0.78542775,0.4808682,-0.31792015,-0.43180087,-0.37940824,-0.092988834,-3.94725,0.119628906,-0.21185635,-0.12569652,-0.10376016,0.014242048,0.21313128,-0.528676,-0.4016837,0.11407341,0.12976244,0.4984647,0.044155315,0.17119232,-0.31665727,0.08036743,-0.2934591,0.14233083,0.008136355,0.35685092,-0.14930329,-0.3220251,0.042558093,-0.24991193,-0.48295578,0.30441773,-0.63840383,-0.5048994,-0.0954337,-0.46615124,-0.42130387,0.6599567,-0.35192907,-0.021195428,-0.07543694,0.14440526,-0.40117806,0.2892184,0.14828008,0.085898146,0.053134326,-0.067946464,-0.07540159,-0.42491797,0.5207187,-0.0743666,0.5102721,0.25134894,0.07328511,0.028890189,0.5482069,0.4891434,-0.048430204,0.94792616,0.26464507,-0.12126275,0.23982921,-0.26121414,-0.14714393,-0.6212318,-0.29859817,-0.12702207,-0.3816039,-0.52634656,0.11659228,-0.3023143,-0.7023213,0.5431769,0.10963775,0.240603,0.028435498,0.054447766,0.4799399,-0.025412206,0.0909171,0.007772872,-0.08389688,-0.7732569,-0.28518474,-0.67607266,-0.4490385,0.10464554,0.8574859,-0.3060333,-0.14675313,-0.2933305,-0.51925075,-0.017525068,0.14767037,-0.06780898,0.31575233,0.42984965,-0.05738383,-0.6860695,0.53832823,0.0818274,-0.09074717,-0.33359084,0.13184136,0.6686586,-0.82062614,0.6673799,0.49266493,0.08233221,0.15723726,-0.35627657,-0.43148422,-0.21010774,-0.12904155,0.4097803,0.035218086,-0.791998,0.45735428,0.43074542,-0.6287572,-0.69201446,0.24524556,-0.16076598,0.003070891,-0.04005066,0.21855952,0.22287557,-0.16530807,-0.1638062,0.19280459,-0.5449406,0.25062984,0.17730424,0.0380604,0.4271372,-0.017735971,-0.31576142,-0.6606499,-0.16839713,-0.59122,-0.13866273,0.34971994,0.07311626,-0.17933288,0.11498021,0.14789186,0.4231974,-0.19248813,0.050189577,0.17703475,-0.3162845,0.40411574,0.3613626,0.2667588,-0.34888485,0.55329776,0.09847557,-0.0052241087,-0.0064591262,0.069252424,0.21959867,0.19797285,0.36961624,-0.07436219,-0.17191283,0.37820917,0.76184344,0.15912808,0.5744364,0.005048715,-0.15075636,0.6124629,-0.06222894,0.14957657,0.14089474,-0.44698197,0.081247576,-0.13990341,0.20217334,0.36471874,0.17656732,0.28715748,0.19018713,-0.13362023,-0.059603937,0.2797173,-0.011714311,-0.9079892,0.46158013,0.34020942,0.6966321,0.55692667,-0.14378354,-0.116065614,0.7996959,-0.20582223,0.2108523,0.3721741,-0.055578597,-0.6964757,0.69719625,-0.6895677,0.38822943,-0.28906217,-0.035024557,0.059014224,0.29043826,0.26059946,0.7366378,-0.28593075,0.023392636,-0.06769982,-0.2833544,0.08693066,-0.44093072,0.1481608,-0.41667464,-0.3764103,0.6021911,0.34239155,0.36210024,-0.06231551,-0.07697676,0.0016518029,-0.13272023,0.39909008,0.007089672,-0.09549089,0.1361997,-0.7154052,-0.37001392,0.5904361,-0.12105043,0.34228006,-0.17962581,-0.2956641,0.19273461,-0.342366,-0.08856834,-0.011757305,-0.49418706,0.073597535,0.06378427,-0.5877178,0.36560568,-0.24492407,0.24100263,0.24106935,-0.009467964,-0.14886756,0.1633083,0.08303402,0.77730435,-0.15089947,-0.3041246,-0.41926274,-0.076363645,0.24759156,-0.23429903,0.11214557,-0.3802246,-0.12229523,-0.45780066,0.69875264,-0.21486942,-0.43781278,0.13494486,-0.26874554,-0.1322585,0.6130941,-0.04183237,-0.16581805,-0.21410185,-0.046816103,-0.29807654,0.033978727,-0.21230626,0.24574082,0.28776148,-0.15713851,-0.07048033,-0.5256859,0.030391904,0.48504174,-0.14773412,0.32562175,0.050623056,0.040909,-0.2235476,-0.03334736,0.1694793,0.46336797,0.28061488,-0.019696208,-0.2541807,-0.17927274,-0.2266778,-0.008716143,-0.17257601,0.21734953,0.07967361,-0.3952615,0.7991749,-0.16099024,1.2787725,0.146464,-0.29383558,0.04717072,0.610239,0.12165295,0.1727106,-0.31304213,0.7483645,0.6535689,-0.12775666,-0.07271695,-0.72589004,-0.19207954,0.32641584,-0.16094662,-0.091737874,0.052568056,-0.59016645,-0.23313507,0.23861559,0.15687789,0.30113247,0.0064097047,-0.088657364,0.0050235963,0.11722754,0.48795697,-0.5262077,-0.17928013,0.15674305,0.26422244,0.049250938,0.13237908,-0.44507593,0.45592248,-0.6503244,0.28936276,-0.30943492,0.038429283,-0.41798654,-0.35151848,0.07800667,0.039645392,0.41584998,-0.092106685,-0.5503575,-0.015469919,0.592994,0.20696218,0.27001226,0.74632555,-0.16912058,-0.00047892332,0.13909224,0.533515,1.168188,-0.36303762,-0.13686131,0.3990248,-0.33724025,-0.8003433,0.5044835,-0.30369452,0.010274882,-0.09493208,-0.3870734,-0.5616874,0.26297152,0.26310351,-0.052119136,0.15412776,-0.53591126,-0.102565646,0.35086393,-0.34740588,-0.29832065,-0.30015218,0.41862628,0.6043407,-0.43790007,-0.1949719,0.09373184,0.17931375,-0.31106526,-0.41511518,-0.21127208,-0.26325694,0.31774393,0.095223255,-0.27693966,0.0061647436,0.18283336,-0.2861434,0.12758945,-0.018781938,-0.42672938,0.2224617,-0.06525279,-0.016489236,0.8465588,-0.14991361,-0.02463502,-0.77385074,-0.46626565,-0.8565655,-0.49643543,0.61976516,-0.0016370874,-0.0009049727,-0.43073815,-0.037706118,0.20938642,-0.24803814,-0.0244173,-0.7204386,0.41923636,0.03539389,0.37951863,-0.09848681,-0.82933193,0.09639464,0.11850027,0.08814179,-0.599107,0.5440003,-0.26680115,0.86716074,0.06896819,-0.101527005,-0.05701675,-0.24198611,0.003040213,-0.45267355,-0.3251428,-0.576284,0.14749998,686 +720,0.4522083,-0.15604001,-0.543619,-0.099018574,-0.26392826,-0.09199866,-0.3097502,0.020494195,0.21568339,-0.3026121,-0.35270378,-0.24185616,0.345012,0.6466122,-0.013991494,-0.82286966,0.014606201,0.2694108,-0.84936684,0.5893921,-0.5441915,0.3181504,0.3427201,0.30964786,0.092950456,0.29762286,0.38236004,-0.13603419,-0.2649911,0.036381245,-0.22295378,0.1315725,-0.7061234,-0.0019696308,-0.13105121,-0.5560407,0.0578506,-0.40037602,-0.2277719,-0.6918102,0.22825202,-0.9857972,0.4623229,-0.047849163,-0.064009026,-0.12449184,0.15658368,0.6058584,-0.29213154,-0.046360336,0.16515599,-0.38680202,-0.15064551,-0.2795405,-0.09620795,-0.15850845,-0.48536202,-0.07134437,-0.5274057,-0.47431153,-0.23115641,0.091669045,-0.32086486,0.23207417,-0.11401591,0.3785136,-0.4668143,-0.1459716,0.51359755,-0.1481407,0.45041546,-0.41062844,-0.06129221,-0.07970353,0.6153252,-0.1667343,-0.18192299,0.41737917,0.4102792,0.40543082,0.18767217,-0.37254637,-0.3020898,-0.19309846,0.33969948,0.62433875,-0.2007162,-0.3133807,-0.16529502,0.15027615,0.27769822,0.4270117,-0.0031304727,-0.2707315,-0.1124468,-0.0316068,-0.10391336,0.31225824,0.46184584,-0.25308397,-0.447855,0.095575556,0.6445265,0.20431505,-0.23571664,-0.13772787,0.0819198,-0.5633366,-0.13185142,0.37199005,-0.1668109,0.7118988,-0.057333272,0.19859566,0.9370463,-0.2774812,0.108065926,-0.37115738,-0.097601876,-0.25126305,-0.2816845,-0.16748835,0.24203569,-0.6752523,0.08371329,-0.30718005,0.87017095,0.19734503,-0.7688741,0.39225656,-0.58331925,0.21898519,-0.16702285,0.66314733,0.6017098,0.18025559,0.4728517,0.7393104,-0.33298433,0.34132883,-0.09908453,-0.66638035,-0.10829846,-0.24117653,0.29636532,-0.46810773,-0.00045825884,-0.091582626,0.06677031,0.3082004,0.3321977,-0.46397012,0.06683926,0.16988556,0.85260004,-0.36569154,0.049762394,0.65389496,1.0946206,1.0038618,0.099237055,1.2106525,0.48113486,-0.43909436,0.08327626,-0.23462985,-0.61266845,0.11230854,0.43654618,0.02944949,0.3308001,-0.08046986,-0.102699295,0.36700997,-0.42764887,0.09455217,-0.011455095,0.08487118,-0.028953386,0.042353056,-0.6972295,-0.24807684,-0.23228313,-0.16385573,-0.016048463,0.17927378,-0.048985485,0.62220377,-0.12699787,1.426139,-0.05746997,0.047678426,-0.027962932,0.51729083,0.21128827,-0.04309277,-0.16003157,0.22449853,0.38165304,0.016335877,-0.49351814,0.2101148,-0.33528173,-0.29034263,-0.13927718,-0.27395165,0.23932984,0.2770951,-0.44187486,-0.061008155,0.082649484,-0.19480896,0.45016208,-2.4453628,-0.32740653,-0.20901902,0.13119017,-0.33479822,-0.19033572,-0.13788281,-0.6702363,0.38310778,0.1268315,0.55152166,-0.7419824,0.4352377,0.36471242,-0.47995615,-0.16770639,-0.8504147,-0.266905,-0.03729982,0.31737205,-0.033290353,-0.19151746,0.01687291,0.22342819,0.6663964,-0.061583184,-0.0239986,0.58374023,0.27640226,0.24874394,0.6066285,0.0650577,0.6492535,-0.37901068,-0.18678896,0.34426662,-0.04497641,0.29234582,-0.22405267,0.24025449,0.54160917,-0.45869556,-0.9995088,-0.67022526,-0.5107069,0.9515408,-0.42431912,-0.5589165,0.18813016,0.13457638,0.04127387,-0.0020087613,0.49484628,-0.046112172,0.19480135,-0.7011028,0.16389726,0.03154244,0.20856203,0.16172951,-0.120108835,-0.29024768,0.6310981,-0.10028613,0.30103424,0.36126673,0.40303162,-0.0038670255,-0.3927563,0.18139139,0.93365926,0.2754104,-0.015247409,-0.3090759,-0.32778352,-0.18455115,-0.29113388,-0.031644203,0.26592633,0.98897654,-0.070361264,0.098022304,0.22833559,0.023600621,0.016869418,-0.17120937,-0.3307253,0.04493064,-0.05607674,0.5054475,0.68608,-0.053163297,0.6873716,-0.19427237,0.33221528,0.111991696,-0.519165,0.68321675,0.6913695,-0.038731173,0.01671532,0.38757846,0.302945,-0.5178597,0.51284844,-0.61986643,-0.19174026,0.75782216,-0.1999512,-0.38742495,0.30090594,-0.29310137,0.14435765,-0.90050465,0.36902937,-0.34933963,-0.23256661,-0.30473486,-0.0051723537,-3.8830378,0.31622404,-0.22689319,-0.13571855,-0.14968708,-0.11330835,0.16209921,-0.63597673,-0.5260588,0.29294658,0.13994443,0.7421065,-0.09301123,0.10199596,-0.13848248,-0.18035771,-0.118467286,0.049350634,0.2448985,0.21020284,-0.1558881,-0.46997052,0.10682274,-0.17867678,-0.6361892,0.26761484,-0.5976791,-0.5324191,-0.20222512,-0.5112392,-0.53402907,0.6569328,-0.33149564,0.11204866,-0.27717665,-0.0007957621,-0.2527188,0.41931993,0.16754302,0.29882175,0.06569424,0.07817434,0.08356113,-0.29505587,0.34419298,0.062462803,0.19357374,0.05036809,0.018432947,0.21846448,0.39736968,0.73857236,-0.047480013,0.8055286,0.4399903,-0.13286997,0.113675304,-0.3247688,-0.16533595,-0.67426056,-0.47715455,-0.094093986,-0.38191503,-0.6788982,-0.12632337,-0.3910058,-0.76885414,0.6691312,-0.07569882,0.3406556,0.061815783,0.27772474,0.41316003,-0.22780164,-0.015313128,-0.11796188,-0.08175206,-0.7176499,-0.20110525,-0.7325671,-0.6222286,0.01653227,0.67093235,-0.3694042,0.004378475,-0.03631266,-0.41708344,0.20126922,0.24607696,0.08949462,0.27404606,0.4303575,-0.09620982,-0.73384184,0.5144921,-0.0814563,-0.24012025,-0.62764513,0.16189578,0.7175677,-0.7762778,0.64157224,0.4116281,0.028962173,0.05075833,-0.40968177,-0.38127893,0.011830758,-0.292902,0.3302605,-0.03371908,-0.57090384,0.45188582,0.30820853,-0.44898683,-0.7231456,0.3278162,0.121157035,-0.34968954,0.070822395,0.2745292,-0.026259633,-0.05761876,-0.4017154,-0.056734398,-0.5248304,0.18236098,0.42172685,-0.023885999,0.12714006,-0.049311105,-0.24329185,-0.76291597,0.13179451,-0.38036716,-0.0126934415,0.3601464,0.026328294,-0.048394486,0.11862811,0.13126057,0.32156006,-0.34239992,0.13333625,-0.055246335,-0.519674,0.25043315,0.43277514,0.1420335,-0.44885033,0.6512695,-0.025336912,-0.4404373,-0.14903565,-0.033878747,0.39334673,0.13238534,0.30882627,-0.20017274,-0.37095478,0.27473953,0.6245779,0.083627634,0.48074192,0.20728189,-0.040052645,0.4465474,0.07842273,-0.0073617194,0.1684288,-0.298854,0.0072028306,-0.16070564,0.10233033,0.60168,0.3815074,0.3890667,0.10436999,-0.15635654,-0.008205514,0.1447679,-0.04982698,-1.0059127,0.4432329,0.2588836,0.7445259,0.48098695,0.037390035,-0.19521634,0.54568136,-0.41428745,0.14179662,0.28156084,-0.030945344,-0.48487192,0.91276956,-0.72060555,0.40778574,-0.09690463,-0.11718369,0.17838351,0.15057445,0.28791815,0.89027435,-0.2761712,0.084522605,-0.11832617,-0.09615359,0.031087808,-0.42625266,-0.10576415,-0.49422258,-0.48417285,0.7869699,0.2932569,0.4783063,-0.17496371,-0.044640753,0.05650923,-0.14935265,0.34208506,-0.10054293,0.16494118,0.21529219,-0.6314653,-0.25022107,0.5686455,-0.18054777,0.21451807,-0.20240869,-0.1835948,0.06541233,-0.18555458,-0.052183848,0.0012445783,-0.8964454,0.073812544,-0.40433455,-0.48243392,0.40727362,-0.22250588,0.27030468,0.21989833,-0.021870183,-0.056026094,0.44379514,0.101396866,0.86016697,0.098334655,-0.27847043,-0.24667703,0.18954812,0.38629687,-0.1396304,0.33448812,-0.25996843,-0.10441416,-0.50319254,0.7517309,-0.08719389,-0.25874287,0.17565559,-0.23760432,-0.021512091,0.5878405,-0.30434057,-0.010461644,0.11870836,-0.050212387,-0.41564772,-0.1163236,-0.35224056,0.074635416,0.33796936,0.06450571,-0.040647782,-0.017470658,-0.03833741,0.65335166,0.0011077684,0.5168669,0.13132542,0.07596653,-0.23335549,-0.040765043,0.06054636,0.3683883,0.16602415,-0.123466216,-0.56377554,-0.45208195,-0.2760856,0.058629908,0.013155064,0.25376314,-0.04639336,-0.19776312,0.9523077,0.020249905,1.1460662,0.09433726,-0.41379637,0.06272681,0.3793095,-0.19102216,-0.03994486,-0.47898337,0.8628038,0.4843846,-0.00910187,-0.07670344,-0.39584777,-0.10843475,0.3170798,-0.2208409,-0.008357167,0.085921094,-0.44508508,-0.59479797,0.2269863,0.2536768,0.13297097,-0.11466896,0.2582512,0.103578776,0.106410965,0.42081025,-0.658752,-0.26467627,0.31152564,0.23777682,-0.059549175,0.22855388,-0.26501262,0.46429628,-0.69869983,0.19129062,-0.607396,0.035922237,0.016770106,-0.42308462,0.24699156,0.15857014,0.34791374,-0.35265014,-0.22720355,-0.08128925,0.5637236,0.077821165,0.1468341,0.78823155,-0.31105614,-0.004298522,0.11665935,0.50050884,1.4605429,-0.58739775,0.08778189,0.37091562,-0.28099066,-0.49380955,0.47348186,-0.15173502,-0.022024632,-0.22081973,-0.4623428,-0.6706477,0.1611279,0.16659205,-0.09809403,0.1730739,-0.36206892,-0.16874918,0.35720444,-0.45597664,-0.342529,-0.42767996,0.41058257,0.5621314,-0.3010238,-0.26424626,0.13661204,0.20910168,-0.25329432,-0.31010595,-0.044733223,-0.0892448,0.33155856,0.12774967,-0.29637602,-0.09180526,0.22326067,-0.4651963,-0.118152946,0.09081356,-0.38546926,0.13625282,-0.15466252,-0.24369127,1.051504,-0.38595515,-0.26234648,-0.7190978,-0.5480488,-0.86533237,-0.6203642,0.5882699,0.08627936,0.1571038,-0.33653492,0.097339764,0.008450174,-0.0028417981,0.0840904,-0.36997354,0.2824166,0.15835483,0.47458982,-0.38867602,-0.78124213,0.17435619,0.11257135,-0.13557124,-0.6105085,0.48666206,-0.04482667,0.7778203,-0.015219594,-0.12713464,0.1649234,-0.25733224,0.05580489,-0.35292295,-0.16618465,-0.9119861,-0.060966037,691 +721,0.4954055,-0.0792452,-0.7114861,-0.0674158,-0.42634732,-0.24695206,-0.23791726,0.40889433,0.33897036,-0.36198527,-0.24969317,-0.20297633,-0.1043776,0.37728623,-0.23249578,-0.7396333,-0.03237539,-0.004191408,-0.5295024,0.79788405,-0.22582397,0.20472288,0.21475975,0.34844515,0.5633853,0.3423144,0.17674886,-0.0019399065,-0.03149736,-0.47199586,0.014776725,-0.04634943,-0.89115167,0.21353635,-0.32271528,-0.39408544,0.050742205,-0.6224422,-0.4647411,-0.9147283,0.4624735,-0.7827706,0.392887,0.14228581,-0.14800175,0.20907998,0.21364608,0.34510434,-0.052835252,-0.22262684,0.2530497,-0.01697124,0.0481876,0.021729091,-0.26537833,-0.2918376,-0.6833773,-0.055979446,-0.44898084,-0.039947066,-0.39373052,0.096315,-0.49242762,0.16688761,-0.26260534,0.62222695,-0.39029855,0.065636635,0.19106218,-0.20994343,0.17414138,-0.57027715,-0.3830748,-0.14065799,0.15542957,-0.058901805,-0.08557011,0.5625262,-0.038243648,0.19890997,0.09587805,-0.18141848,-0.24146846,-0.12297459,0.27377656,0.28369233,-0.08870348,-0.28051296,-0.1386021,-0.08546638,0.27868012,0.27000016,0.25268194,-0.19570781,0.0036425819,-0.006901727,-0.2310399,0.5590293,0.5264686,-0.15600416,-0.14433724,0.23989765,0.43146083,0.44883597,-0.15263842,-0.095163144,0.034679484,-0.56332666,-0.17821194,0.10599888,-0.27754,0.5488536,-0.13060161,0.16245125,0.6058315,-0.15906045,0.030607644,0.12281774,0.07765399,-0.045283712,-0.38294417,-0.24672614,0.36682022,-0.5101395,0.45481205,-0.23702887,0.9125896,0.21626729,-0.62144184,0.245523,-0.65797365,0.13194619,-0.053053737,0.45956007,0.66780657,0.4049938,0.30842063,0.73863536,-0.3742061,0.15341748,-0.15433834,-0.34519994,0.051786773,-0.1880242,0.16530696,-0.27563584,-0.18032655,-0.20223159,0.08153538,0.08262194,0.34969866,-0.3271802,-0.13838527,0.04689897,0.91827285,-0.10960185,0.0063620987,0.82783294,1.0639707,1.2700896,0.06008494,0.77348304,-0.07735132,-0.2028214,0.13526349,0.12064845,-0.7864452,0.29612067,0.29047757,-0.054819997,0.049453314,0.06837153,-0.075962864,0.323089,-0.4813137,-0.011694202,-0.15261434,0.2718098,0.05371652,-0.00463176,-0.23549491,-0.3600515,-0.113808855,-0.022958977,-0.034607545,0.36520007,-0.15092537,0.38699847,-0.038295623,1.3243407,0.050239943,0.07783406,0.19393921,0.69764113,0.1481552,-0.12027744,-0.008103992,0.14111057,0.288745,0.12442816,-0.61244094,0.03326998,-0.40504393,-0.3103304,0.07539622,-0.45245063,-0.27274844,0.043440793,-0.45822254,-0.17213471,-0.12869927,-0.2694716,0.3470389,-2.6293273,-0.005606312,-0.0906886,0.2827729,-0.3574535,-0.3292771,0.01171587,-0.7426414,0.5546271,0.19202463,0.54816747,-0.49431455,0.42203572,0.62926394,-0.70765567,0.07525864,-0.5318878,-0.17519763,0.11564414,0.32379824,-0.14042355,0.13649756,-0.028510282,0.029684216,0.46290842,0.40124738,0.09931393,0.29969925,0.41723728,-0.20929544,0.65171856,-0.14356183,0.40373766,-0.54911166,-0.033179693,0.4644182,-0.52752614,0.49230924,-0.4521381,0.09567134,0.60507625,-0.62537354,-0.92372143,-0.47965643,-0.2753498,1.2580857,-0.18252386,-0.60793686,0.31568548,-0.30420527,-0.0817959,-0.08467925,0.62135845,-0.07189219,0.02344302,-0.62438446,-0.0971491,-0.29565042,0.2367548,0.026743345,0.031793304,-0.34094477,0.7845169,0.14430457,0.55624956,0.25835037,0.20961833,-0.26327518,-0.44566947,0.30275702,0.7754066,0.40515798,0.023253085,-0.42974886,-0.2200021,-0.35909188,-0.23990437,0.036284093,0.7158703,0.55877936,-0.20150867,0.1493703,0.40147543,0.112692505,0.031376004,-0.11897564,-0.40743068,-0.28783473,-0.1473458,0.5259399,0.973717,-0.03443551,0.13159211,0.03219851,0.3431659,-0.21307103,-0.38885647,0.44443908,0.8190684,-0.09739142,-0.25998867,0.49656913,0.5828923,-0.19483764,0.5684903,-0.3013057,-0.43121094,0.44128326,-0.051661234,-0.55823696,0.067248955,-0.35760573,-0.07223888,-0.5484054,0.096288934,-0.46489233,-0.30586916,-0.5190696,-0.096055396,-2.755793,0.06714216,-0.22832698,-0.110336155,-0.3464896,-0.15365355,0.096142635,-0.5593755,-0.7999557,0.08079883,0.13937834,0.83438116,-0.20107335,0.14094943,-0.23750356,-0.2436316,-0.40578893,0.21940228,0.34472054,0.345133,-0.13868102,-0.3442333,-0.3154243,-0.13418122,-0.4433006,0.040479586,-0.37348044,-0.4301753,-0.16883191,-0.6014374,-0.29989317,0.68263334,-0.28820604,0.017352257,-0.022519413,-0.044447057,-0.14869809,0.07886301,0.23893353,0.37317866,-0.034260925,-0.14389701,0.07033311,-0.22406259,0.43016237,0.17250673,0.6128622,0.35398117,-0.070428595,0.19467065,0.4021424,0.6487669,-0.12787083,1.0531414,0.18640892,-0.09055603,0.24357483,-0.1801437,-0.5694225,-0.6533666,0.056881927,0.10660085,-0.2782275,-0.35220224,0.13309458,-0.29513237,-0.8346387,0.5552737,0.082884915,0.27204168,-0.07348686,-0.15443149,0.44793952,-0.21767847,-0.06467909,0.15956734,0.10575665,-0.58543915,-0.2714721,-0.6694594,-0.4063972,-0.16857934,0.779312,-0.21423556,-0.2114301,0.2562849,-0.28799498,0.21300404,0.0557897,0.03914673,-0.0839469,0.45688975,0.26742026,-0.648185,0.7444957,-0.112890676,0.063004576,-0.5083747,0.30659702,0.44346935,-0.6083141,0.5299846,0.31837332,0.032163225,-0.24675353,-0.59397423,-0.117952734,-0.24974574,-0.13850512,0.27348083,0.38050783,-0.6658587,0.25961024,0.02325977,-0.30647057,-0.7766553,0.5284297,-0.09224778,-0.37305295,-0.09559198,0.37723938,0.21521713,0.03621509,0.08063608,0.3160525,-0.20103934,0.2904844,0.24565312,-0.20858237,0.19191352,-0.29940322,-0.23353855,-0.6214155,0.24638997,-0.35646364,-0.3482877,0.43956062,-0.08004729,-0.08263774,0.16546954,0.28096583,0.20855647,-0.034484144,0.19123295,-0.16820823,-0.21832865,0.51971483,0.43608892,0.83870375,-0.53127277,0.6945315,0.14024006,-0.048958797,0.55621517,0.12001769,0.19638044,-0.15980762,0.39401075,0.189572,-0.2474683,-0.05917943,0.7841659,0.22874038,0.32781395,0.048410796,-0.06479071,0.36810017,0.09911985,0.0802464,-0.033836134,-0.92169225,-0.017951187,-0.16962689,-0.04841572,0.5972001,0.1119684,0.17224266,-0.0067069107,-0.16423652,-0.10795423,0.06071142,-0.19440402,-1.4402484,0.38444388,0.0739379,1.0153028,0.6766708,0.0066234926,0.08428182,0.6702118,-0.02929593,0.15775989,0.4089875,0.11277958,-0.44829333,0.5778171,-0.3749978,0.54191047,0.10411208,0.077549234,0.19047938,0.03474268,0.51802015,0.603886,-0.25448135,-0.13125776,0.030356,-0.4883508,0.1854461,-0.46677706,-0.064391054,-0.37521267,-0.27589795,0.62087315,0.68488634,0.1905114,-0.26316276,0.02239738,-0.14004754,-0.12032855,0.090206094,-0.012250613,-0.038629096,-0.042599976,-0.54277235,-0.16778564,0.5062039,-0.37466812,0.16555259,-0.07891921,-0.12479388,0.2738171,0.0011079747,0.061642904,-0.21070132,-0.82629144,0.13529152,-0.40437537,-0.3716442,0.032158013,-0.010247552,0.32348126,0.29835993,-0.006980918,-0.24937123,0.5892112,-0.022042971,0.6424066,-0.37318918,-0.2071185,-0.43108618,0.08421092,0.26464105,-0.15658364,0.035111573,-0.18203662,0.11891374,-0.39812675,0.44937122,-0.17608544,-0.22779237,-0.18890819,-0.10462865,-0.1390802,0.6200748,0.04156761,-0.07841114,-0.16148408,-0.14917836,-0.34630916,-0.29504997,-0.017101338,0.061421793,0.13986124,-0.060766555,-0.1569862,-0.17734377,0.2009968,0.23812744,-0.139671,0.40483186,0.19715595,0.089008,-0.46311834,-0.1818797,0.15593085,0.6017391,-0.009793263,-0.17167734,-0.34897715,-0.32462412,-0.5007546,0.5199579,-0.13514045,0.3763218,0.08331777,-0.1421907,0.53209525,0.13963428,1.140597,0.0065866527,-0.34403294,0.12555641,0.55858356,-0.18496396,-0.18099214,-0.3277656,0.863588,0.36007226,-0.24207608,-0.15582329,-0.4906541,0.12455331,0.0023403948,-0.25472608,-0.2033217,0.05525579,-0.36028415,0.09634007,-0.03706278,0.4222999,0.17931366,-0.28833205,-0.3175519,0.33777544,0.3005006,0.36742544,-0.49488991,-0.53105956,0.32510102,-0.029921345,-0.08408426,0.17570972,-0.5044038,0.39284435,-0.3785765,0.20198342,-0.34439272,0.19656716,-0.41131252,-0.32149073,0.22728205,-0.061242197,0.5461298,-0.49358022,-0.28590196,-0.42576507,0.3881524,0.31209114,0.28714162,0.680434,-0.16811135,-0.045774672,-0.07390321,0.7877956,0.78341186,-0.12293181,-0.04914609,0.23369192,-0.42349574,-0.5117196,0.060124394,-0.28667596,0.20659718,0.006097578,-0.20156723,-0.6156559,0.15274476,0.032269396,0.028245002,0.030322867,-0.9750105,-0.21095313,0.1868929,-0.2055754,-0.3943545,-0.4767175,-0.094697885,0.55681986,-0.11842512,-0.2691311,0.15420201,-0.038354572,-0.005463967,-0.54921556,-0.10028948,-0.2388959,0.17462085,-0.15214251,-0.3726053,-0.29617026,0.20609394,-0.48269886,0.24492034,-0.17238909,-0.29550645,-0.056620058,-0.13310859,0.109630466,0.9655925,-0.46051174,0.289054,-0.29881006,-0.57681954,-0.68189883,-0.42303464,0.3110572,0.028498769,0.03862866,-0.5410607,-0.28916165,-0.13879156,0.0952814,-0.13933402,-0.27449358,0.45246145,0.120770045,0.45999888,-0.14236249,-0.7906117,0.2654572,0.10336746,-0.10501607,-0.45057184,0.40317425,-0.069790795,0.71647,0.0803979,-0.051735166,0.15051536,-0.3912258,-0.06848745,-0.114471555,-0.0027184119,-0.3927328,0.2696573,705 +722,0.5911949,-0.35413978,-0.67656314,-0.011729882,-0.45889723,0.12720288,-0.5233584,0.24229428,0.27479738,-0.3435592,-0.14552918,0.1486965,-0.09380333,0.19721791,-0.05029334,-0.53761095,-0.16854127,0.20969811,-0.7805211,0.45377868,-0.4319987,0.3937958,0.042605978,0.41450164,0.16062142,0.24775778,-0.17440858,0.085569315,0.055416528,-0.3045471,0.13376491,0.20608854,-0.6869369,0.0828272,-0.34655377,-0.5715733,-0.106085315,-0.50932926,-0.27028844,-0.7650346,0.21284397,-0.83372855,0.78172404,0.019455548,-0.28708577,-0.10973577,0.13871376,0.3520824,-0.12070424,0.19387676,0.39505112,-0.25972268,-0.13478811,-0.37185276,-0.04983404,-0.28614438,-0.37812364,-0.11638471,-0.52945703,-0.060093597,0.057478283,0.2186025,-0.21695386,0.012603063,-0.34902653,0.22854097,-0.42529482,0.12000414,0.2663067,-0.052610524,0.31045416,-0.8681543,-0.037996586,0.021800641,0.4771166,-0.0020865821,-0.2979843,0.18302028,0.22467814,0.460159,0.09794827,-0.20468841,-0.21759978,-0.06269194,0.07527898,0.51554066,-0.29842076,-0.0016073355,-0.2224931,0.027021408,0.67174935,0.27717298,0.07861277,-0.30788553,0.12359493,-0.2360593,-0.0071211685,0.54651016,0.511098,-0.2002903,-0.1316432,0.08471613,0.6647333,0.6041666,-0.13046572,0.058304384,-0.02264741,-0.48774546,-0.1951814,0.17986885,-0.08411242,0.29786447,0.035387937,0.27811623,0.5233199,-0.033638284,-0.036348574,0.25099784,0.0020263286,0.047540035,-0.21729437,-0.32866624,0.2550593,-0.70674634,0.11534555,-0.37137258,0.46517196,-0.07349547,-0.72128487,0.33467716,-0.8155848,0.0071715494,-0.03470812,0.5664497,0.8792854,0.62901837,0.124738656,0.8299418,-0.23157032,0.11145957,-0.1313937,-0.0586425,0.053196806,-0.17310025,0.05187971,-0.48226908,0.096336566,-0.42385265,0.12943381,0.09251705,0.5054853,-0.60934806,-0.22422288,0.1706991,0.7039067,-0.2523929,0.23382658,0.86406446,1.0869697,1.0366391,0.14526585,1.1690427,0.23933126,-0.37129623,-0.21858515,-0.101040855,-0.7218028,0.28291973,0.39922053,-0.27528745,0.4707224,-0.13190451,-0.07813485,0.45705524,-0.41687855,-0.10414762,0.02232268,0.2213947,0.05926256,-0.19612744,-0.38184926,-0.071701005,-0.005117655,-0.025868008,0.05861892,0.27055416,-0.4556349,0.38399032,0.056113675,1.0895412,-0.3421966,0.02271042,0.0978607,0.19033456,0.3302043,-0.25546622,-0.035483398,0.24704236,0.62063086,-0.12856454,-0.68786114,0.23483308,-0.3764953,-0.25351068,-0.21141602,-0.12721263,-0.4269849,0.05009144,-0.5007888,-0.4321815,-0.0776405,-0.18559355,0.2963016,-2.4370775,-0.3183516,-0.060347285,0.43001807,-0.1874999,-0.32507798,-0.25132176,-0.4185785,0.29923576,0.08908992,0.42420498,-0.5104719,0.66134304,0.591308,-0.71891505,-0.19877894,-0.5728904,-0.13289176,0.21072839,0.3096577,-0.042092945,-0.21484232,-0.13920356,0.09025641,0.6845078,-0.123890765,0.082642235,0.50932324,0.60648125,-0.17129168,0.4527827,-0.094123654,0.5210105,-0.5559014,-0.29469994,0.45428964,-0.32141754,0.26989722,-0.15133919,0.10342272,0.6397858,-0.3987159,-0.85449374,-0.5416345,-0.10725303,1.1765239,-0.16669606,-0.6647823,0.0139869405,-0.58405936,-0.30094534,0.09939992,0.7028498,-0.09615544,-0.0269134,-0.8422935,-0.12367685,-0.27261335,0.25931776,-0.040041428,-0.08517302,-0.40252203,0.76189834,0.093179375,0.68410844,0.29288423,0.3094084,-0.020346714,-0.32487154,0.09752585,0.7783237,0.51020324,0.12774526,-0.30892685,0.036772277,-0.09547519,0.08513296,-0.059507515,0.7609705,0.6000676,-0.14309503,0.18445134,0.22906163,-0.033075936,0.14074597,-0.2896629,-0.29498267,-0.21225788,0.11960257,0.3651017,0.7782641,0.06891317,0.4755179,-0.13250653,0.2217675,-0.25551358,-0.6046419,0.6594407,0.55100656,-0.2735727,-0.1510809,0.5622213,0.5040399,-0.36605915,0.5989308,-0.73299986,-0.2867956,0.48295778,-0.20044996,-0.36703154,0.4358013,-0.41964495,0.3169235,-0.8788404,0.3273165,-0.6024911,-0.41260195,-0.58204854,-0.12031199,-1.9854035,0.38920182,-0.13656977,-0.01117445,-0.5555917,-0.34633937,0.44036838,-0.55116594,-0.7981419,0.08722332,0.27458385,0.66368353,-0.13641798,0.054829735,-0.09484902,-0.50701725,0.0068349103,0.3229631,0.27349246,0.2167528,-0.17593433,-0.20628269,-0.13304873,0.027023673,-0.33272326,-0.037606824,-0.632526,-0.47462657,-0.028761042,-0.25230834,-0.04867391,0.5236451,-0.35909384,0.037977118,-0.23092367,0.06567307,-0.06537801,0.24241808,0.055704415,0.28411868,0.16250221,-0.23414591,0.11549937,-0.2661413,0.4072378,0.0013995629,0.1558147,0.24799468,-0.16105278,0.24879558,0.38860592,0.77376115,-0.1965631,1.12998,0.383421,-0.14950444,0.40001196,-0.3644662,-0.48922032,-0.6282419,-0.07712039,0.15336493,-0.42806333,-0.5449783,0.15564601,-0.33923626,-0.81389356,0.523062,0.04723215,0.22287863,0.110333495,0.5325031,0.47564924,-0.2612868,-0.1505323,0.0067946683,-0.20451857,-0.32415283,-0.30307814,-0.6804393,-0.44592777,-0.22281338,1.152241,-0.31087434,0.2574647,0.2731241,-0.2254776,0.3132617,0.21084929,0.079347305,0.057862025,0.53041947,0.23247483,-0.586157,0.15411904,-0.05009701,-0.21467106,-0.50586617,0.190174,0.8113946,-0.69103825,0.45704255,0.39867088,-0.01396715,-0.26377204,-0.6147556,0.0807703,0.19260715,-0.2536078,0.5580982,0.38145286,-0.5953767,0.4462587,0.55456096,-0.3441653,-0.78629017,0.33687618,0.0013327805,-0.3306726,-0.30384344,0.38800937,0.09917349,-0.081347294,0.04577744,0.36241052,-0.36570853,0.30214658,-0.0145853115,-0.22311746,-0.0631729,-0.17608616,-0.34752655,-0.81972474,0.23972276,-0.5729573,-0.33894762,0.44403744,-0.17311737,0.15882652,0.25319755,0.434571,0.5404866,-0.34132355,0.14523098,-0.26722175,-0.32123607,0.31462896,0.5141619,0.37138286,-0.32554504,0.45936483,0.22545862,-0.20199493,0.2262472,0.23347941,0.4163648,-0.09370173,0.4853986,-0.23895751,-0.09384468,0.22622274,0.8657125,0.10151983,0.31751567,-0.0919387,-0.08132999,0.17829807,0.018157529,0.25480425,-0.16356991,-0.38432354,-0.059001062,0.034234848,0.11769143,0.552426,0.2738221,0.08233272,-0.115304515,-0.26893875,0.014026402,0.34450838,0.06836863,-1.40904,0.55677646,0.13590196,0.9518706,0.37696567,0.14164215,0.08128222,0.50282836,-0.12726344,-0.013200856,0.41127807,0.07937591,-0.3259083,0.5549772,-0.6414208,0.20653501,-0.20292066,0.10394998,0.112847365,-0.17845678,0.47068384,0.8837125,-0.20338629,0.04450921,0.060924727,-0.19076237,-0.17319737,-0.20768763,-0.08468197,-0.44034922,-0.4887717,0.9852159,0.37746164,0.53247255,-0.37798983,0.0007077925,0.118840806,-0.17159043,0.2604969,0.05891156,0.06678819,-0.0076713655,-0.42153835,0.081813246,0.5308394,0.041797932,0.02449164,-0.28502968,-0.4046964,0.14102203,-0.13402681,0.22613311,-0.03224412,-0.822493,0.10989387,-0.7452383,-0.6699235,0.2698145,0.13386303,-0.19108142,0.22444136,0.033703543,-0.080048166,0.47303337,-0.039490435,0.8156471,0.034011327,-0.1575459,-0.25292134,0.34399727,0.23104899,-0.28548077,-0.02038516,-0.19682533,0.3632212,-0.4072792,0.59619737,-0.13721357,-0.39901072,0.21476921,-0.04669273,-0.033338785,0.5687256,-0.25167757,-0.1971665,0.15343532,-0.14848374,-0.48488215,-0.37830713,-0.26929218,0.02957553,0.3652383,0.072992794,-0.26429054,-0.29167515,-0.22365211,0.49061635,0.16412526,0.5799059,0.52512544,0.07691279,-0.5032696,0.15410826,0.30699533,0.44597292,0.06250174,-0.13582171,-0.56960225,-0.55745876,-0.33813426,0.62495035,-0.13139313,0.22858664,-0.07835548,-0.29487276,1.1102958,0.10991435,0.965527,-0.018188788,-0.21350399,0.01291328,0.6346403,-0.40772963,-0.2253641,-0.5038686,0.85094684,0.61045015,-0.17712171,0.15951316,-0.30004138,-0.22507724,0.2167434,-0.49184275,0.1464095,-0.116584845,-0.6578475,-0.3692098,0.067323916,0.31769398,-0.106212266,-0.28255442,0.055388194,0.20524985,0.055053588,0.001191555,-0.7297313,-0.3589945,0.19077402,0.21842195,-0.24874566,0.14979483,-0.49800017,0.24947889,-0.7788089,0.08937478,-0.5409695,-0.005507366,0.055248603,-0.38448346,0.104499824,-0.06053555,0.11006764,-0.5462103,-0.26193103,-0.12219601,0.14716092,0.04806258,0.19440868,0.5528008,-0.26730582,0.105580375,0.15745163,0.62550133,1.0808463,-0.3541815,-0.071128726,0.3122315,-0.48148564,-0.55169785,0.19726685,-0.44932362,-0.030998083,-0.09400715,-0.33941796,-0.53677976,0.313822,0.15979594,0.21939278,-0.24875267,-0.8671147,-0.059749465,0.34758097,-0.2793847,-0.18452096,-0.2247383,0.14096166,0.73478186,-0.08326597,-0.35391235,0.016676486,0.44700396,-0.42545888,-0.4423683,0.2322935,-0.43259022,0.27850297,0.12763324,-0.29883254,-0.058774017,0.069993585,-0.7012682,0.048278477,0.27430418,-0.31298,-0.07495915,-0.3350518,0.13410926,0.8094936,-0.3471256,-0.24850717,-0.2425502,-0.55627626,-0.7906307,-0.2996759,-0.20844258,0.41538927,0.06942735,-0.74389374,0.2131571,-0.25408235,-0.27318484,-0.0009296353,-0.35506848,0.46215338,0.20807558,0.71800697,-0.48219875,-0.9671965,0.28310972,0.26175883,-0.26568592,-0.3907916,0.5105629,0.15062946,0.8866081,0.041925,-0.11369933,-0.1754292,-0.4727831,0.32052577,-0.21227987,-0.05604069,-0.95248544,-0.038519505,711 +723,0.298523,-0.015044625,-0.68726826,-0.12885049,-0.45439437,0.3378185,-0.35466462,0.07907583,0.19703916,-0.30588496,-0.016012678,-0.22798148,0.049942568,0.54633707,-0.043110803,-0.69617337,0.050349258,0.25692943,-0.6392212,0.22600533,-0.5500726,0.44505876,0.024323087,0.35613754,-0.065207556,0.30950844,0.31906444,-0.11658765,-0.14981195,0.0035855724,-0.22166927,0.22997902,-0.72457474,0.31953275,0.015134087,-0.46488577,0.0325768,-0.08517481,-0.18715283,-0.57708585,0.24038097,-0.83916676,0.48371536,-0.31958947,-0.36783308,0.07094849,0.057795487,0.4474792,-0.29787266,0.16794994,0.29520613,-0.3906502,-0.14591277,-0.2304847,-0.39135748,-0.63090867,-0.3905173,0.022713877,-0.62623954,-0.20539856,-0.30392793,0.39648262,-0.21089746,0.053970985,-0.16730994,0.19140953,-0.48951113,-0.021030609,0.258196,-0.33830076,0.11406161,-0.3485777,-0.17493857,-0.12545532,0.5600909,-0.12133508,-0.009451807,0.058547676,0.4079568,0.60483515,0.18958157,-0.21580066,-0.37448695,-0.20111537,0.28102753,0.5159186,-0.017677097,0.06251678,-0.31989956,-0.37362635,0.08870048,0.2411671,0.0029182457,-0.4699586,0.022929413,0.0049961554,-0.26447934,0.18996246,0.33914363,-0.5617397,-0.36645636,0.5015779,0.58275706,0.010608098,-0.2651645,0.2270012,-0.0025125844,-0.4900313,-0.21121743,0.28386736,0.062581494,0.6099109,-0.20951237,0.3715145,0.86001337,-0.15988249,0.08466517,-0.26774326,-0.09121297,-0.24988192,-0.15191747,0.10717824,0.129395,-0.4950924,-0.069060095,-0.14390345,0.6158732,-0.03727356,-0.6602843,0.44099873,-0.45740038,0.02633114,-0.2683403,0.6313807,0.67819273,0.31581062,-0.18081194,0.8752384,-0.50648504,0.07563936,-0.17078495,-0.4386249,0.16535076,-0.09437991,0.08378024,-0.41607168,0.13936259,0.10467354,0.157189,-0.041709542,0.44781813,-0.40895158,-0.08774051,0.026421657,0.5827998,-0.52257895,-0.078302585,0.79453593,0.9504081,0.88771087,0.07220857,1.6003045,0.5766937,-0.25490874,-0.1717546,-0.31782287,-0.43579647,0.11641259,0.22249728,0.25714976,0.24407178,0.18871957,0.17222008,0.60186505,0.012378106,0.12772626,-0.18966539,0.11290101,-0.10845295,-0.014559026,-0.37224212,-0.22938856,0.27908057,0.08939708,0.05552194,0.22069263,-0.088229015,0.5477471,0.115269646,1.4234399,-0.13573779,0.0970628,-0.17694455,0.24042922,0.14388624,-0.15740237,-0.08021738,0.17964461,0.25615126,-0.090902716,-0.50838506,-0.0022046475,-0.20980445,-0.5391787,-0.34185177,-0.34989807,-0.16247787,-0.10785984,-0.44278768,-0.08928064,0.28155252,-0.23813178,0.41168073,-2.3861327,-0.29142216,-0.22552808,0.14789067,-0.27755955,-0.23860429,-0.32764608,-0.46239343,0.3083129,0.42238793,0.35652888,-0.47487158,0.5726002,0.3651486,-0.22541107,-0.35019,-0.66839135,0.06323714,-0.11535348,0.32132256,-0.10205929,-0.2595307,-0.2570307,0.2027834,0.59541416,-0.266938,0.11183348,0.1581032,0.5496532,0.11678018,0.45099062,0.26928836,0.77642316,-0.30293658,-0.20785786,0.56547827,-0.397207,0.33558133,0.0065576984,0.27686208,0.31831694,-0.3798057,-0.9066888,-0.79327273,-0.36754328,1.1623496,-0.40005076,-0.5173487,0.22506557,0.102283254,-0.2825728,0.18315913,0.3544883,0.16718608,0.17771551,-0.74776256,0.15964761,-0.11667307,0.20461208,-0.12862657,0.07343589,-0.35085657,0.61486155,-0.23652537,0.26553714,0.5301155,0.32683533,-0.072178036,-0.24675696,0.113100655,0.95918024,0.24710988,0.09706863,-0.22478032,-0.40566042,-0.23220704,-0.2928524,0.06806532,0.4160047,0.6304601,0.09410202,0.21992296,0.26393378,-0.16859494,0.02176797,-0.15302218,-0.28699166,0.031146957,0.20272842,0.46781957,0.5482012,0.055267133,0.4741754,-0.14866517,0.14360963,-0.28852293,-0.64271647,0.5656216,0.5554071,-0.2293335,-0.226041,0.62800694,0.51450944,-0.45996714,0.40312296,-0.6041588,-0.42765233,0.52607936,-0.1503056,-0.42137715,0.08774029,-0.31362292,0.022472657,-0.8719861,0.16115086,-0.05677758,-0.53175926,-0.34571975,-0.2780046,-4.3604174,0.29547817,-0.058624275,-0.038097497,0.07341893,-0.21635844,0.46142828,-0.51520455,-0.5103156,0.059571024,-0.03990431,0.6055251,0.044815,0.14078826,-0.42678973,-0.058560636,-0.08842178,0.23933777,-0.0009480898,0.098344214,-0.04747983,-0.49658746,0.22070244,-0.46679607,-0.40619147,-0.08798301,-0.62297016,-0.4425643,-0.08379997,-0.36380294,-0.2890464,0.76002985,-0.6450017,0.017647224,-0.36751553,0.015992261,-0.32476467,0.44742516,0.20024434,0.13739693,0.3351827,0.014227627,-0.39892393,-0.39506274,0.1185238,0.044313055,0.076350264,0.49517256,-0.2339653,0.14165334,0.49074584,0.6611918,-0.04751279,0.6037557,0.11784606,-0.0843219,0.376004,-0.26512066,-0.15389758,-0.7065085,-0.48003387,-0.42303583,-0.54319066,-0.6392568,-0.22361849,-0.23120502,-0.7699965,0.58163214,0.22750789,0.10387499,-0.09285503,0.17982222,0.25902712,-0.18879986,-0.08759781,-0.22954069,-0.19825333,-0.47600478,-0.59543765,-0.68367606,-0.7503879,0.20961012,1.2074544,-0.14217228,-0.005929191,0.1805391,-0.4490684,0.060032226,0.29786456,0.27383092,0.051723022,0.42757097,-0.26334158,-0.76263195,0.4461028,-0.20606631,-0.018637188,-0.56651855,-0.055444207,0.7870875,-0.6684673,0.50718874,0.44779587,0.26375705,0.38409093,-0.40785143,-0.42029014,-0.024978079,-0.29675725,0.59864324,0.14354163,-0.69578445,0.46057191,0.151097,0.005530229,-0.64915174,0.48451474,0.06138357,-0.08380214,0.09380674,0.4393736,0.06880225,-0.063898765,-0.2623239,-0.012839689,-0.6044893,0.26213554,0.5170187,0.01099763,0.55253196,-0.12578422,-0.23566316,-0.57254,-0.25178513,-0.33177698,-0.14304067,-0.11351959,0.01334762,0.038496234,0.26197624,0.056148157,0.43049514,-0.6000795,0.124493666,-0.073844664,-0.26219016,0.20705792,0.44965237,0.3018215,-0.5721643,0.58396584,0.04378541,-0.054688863,-0.29347134,0.06127365,0.6002709,0.31464836,0.45875782,-0.11030522,-0.11854855,0.18476966,0.79051137,0.21096209,0.54119307,0.14876634,-0.33619136,0.29908818,0.2817121,0.1374858,-0.028908156,-0.20512104,0.047978923,-0.12125116,0.22932881,0.41536033,0.15372433,0.54500103,-0.048150975,-0.03633318,0.29967517,0.037591457,-0.07744224,-0.6939509,0.25775987,0.3921418,0.62030125,0.50601244,-0.072794504,0.044675827,0.35146728,-0.43639457,0.06455204,0.1393256,-0.08509271,-0.46331376,0.5616045,-0.6230558,0.3087211,-0.29313546,-0.1197282,0.30237538,0.19201387,0.28456295,0.88267094,0.007372549,0.19592318,0.060738586,-0.25003874,-0.015969148,-0.18282329,0.071203366,-0.5732507,-0.25164872,0.75234693,0.40531653,0.32673392,-0.3558386,-0.14326546,0.008485303,-0.05565869,0.08728123,-0.09065834,0.11941433,-0.08662963,-0.60348195,-0.3734778,0.5504313,0.04659631,0.14751925,0.17996153,-0.6225657,0.4084962,-0.2667189,0.005431815,0.020675374,-0.5369942,-0.07788041,-0.37416786,-0.50548214,0.34614402,-0.27772164,0.33537567,0.08592741,0.012819304,-0.26338255,0.29252222,0.011714311,0.8850618,0.21572474,-0.08549392,-0.2250634,0.039213043,0.45424703,-0.30644324,-0.15275644,-0.37845358,0.02363133,-0.47896722,0.30992332,-0.095791064,-0.14306706,0.2053036,-0.13264002,0.06307514,0.43392736,-0.044832144,-0.11172183,0.29783672,0.19672689,-0.32757586,0.118070126,-0.5263592,0.27775925,-0.124657355,0.07697832,-0.0024562431,-0.03841252,-0.12308775,0.21889885,0.08683545,0.054103997,0.3472238,-0.088137165,-0.29542968,0.009238165,-0.14883359,0.33185285,0.07207607,-0.050322197,-0.17327085,-0.46400008,-0.24523076,0.5118552,-0.0756267,0.033356167,0.11506227,-0.3730664,0.79491013,0.1910634,1.1480018,0.15006179,-0.4322427,0.26871198,0.41530785,0.09720179,0.2138645,-0.5265046,0.87857586,0.5481132,-0.24717866,-0.22857237,-0.40791062,-0.3822303,0.2844628,-0.30711606,-0.22338828,-0.062329214,-0.812497,-0.17420325,0.16524237,0.22282355,0.048147816,0.018817393,0.10511022,0.10266696,0.17484531,0.45540607,-0.62922984,-0.1760211,0.44430426,0.35619706,-0.21723829,0.16179863,-0.17314236,0.50997835,-0.8505974,0.073930904,-0.614617,0.016174283,-0.16032256,-0.25041157,0.30485076,0.19156075,0.33890015,-0.13032341,-0.30710417,-0.3065303,0.76979977,0.19669023,0.3594832,0.8513215,-0.2535991,-0.109984726,-0.06858463,0.3604963,1.1363304,-0.31994873,-0.017898945,0.5778333,-0.19896077,-0.5138885,0.20360468,-0.51517326,0.14213878,-0.004920075,-0.50011903,-0.2864785,0.42645153,0.123614974,-0.117235556,0.10837964,-0.39557445,0.095053345,0.3556627,-0.21197352,-0.35499433,-0.18858956,0.3897676,0.7065278,-0.41029838,-0.2621501,0.0339236,0.45159948,-0.41990164,-0.46051386,0.090808555,-0.2567385,0.5002744,0.2803524,-0.40137714,-0.030791782,0.27593768,-0.3507238,0.10611116,0.4690843,-0.23373798,0.21369937,-0.38171312,0.077348664,0.97507244,0.107096404,0.16904163,-0.7263899,-0.4943517,-0.96855426,-0.34398952,0.2910121,0.23972966,-0.061283,-0.3062968,-0.034084383,-0.17084503,0.07766008,0.25200745,-0.5134669,0.39423525,0.0758854,0.5905165,-0.06784003,-1.036497,-0.06257424,0.22678518,-0.30330056,-0.43905213,0.55091554,-0.5411428,0.7461165,0.114228025,0.11355449,0.21484734,-0.54394823,0.3954942,-0.37335655,-0.043772057,-0.91135436,-0.10351935,714 +724,0.41164654,-0.338689,-0.4000464,-0.18695916,-0.32854578,-0.06448952,-0.14552538,0.49138707,0.2920759,-0.4686167,-0.263801,-0.09343112,0.0076190555,0.31134102,-0.14147112,-0.6219544,0.011178464,0.27276656,-0.32483453,0.6185382,-0.42608607,0.27176905,-0.043672517,0.253901,0.39017093,0.29367453,0.044222374,-0.19616316,-0.045816198,-0.22883661,-0.16861609,0.22307365,-0.39846677,0.29574162,-0.081784755,-0.35130256,0.086960986,-0.551674,-0.3592239,-0.72914684,0.21794574,-0.79928464,0.37338597,0.06749392,-0.34199253,0.21617934,0.016063113,0.44256654,-0.25716922,0.05338282,0.2871954,-0.12542148,-0.07617774,-0.12407406,-0.08284512,-0.3723648,-0.49429578,-0.17169744,-0.23270504,-0.17299274,-0.3291221,0.08512296,-0.44194272,-0.08494795,-0.07481183,0.45662796,-0.49624032,0.21747662,0.2625077,-0.19807276,0.35923612,-0.5293901,-0.18120286,-0.14314483,0.310473,-0.16109355,-0.20147637,0.41187385,0.22919211,0.2671654,0.10190043,-0.09369819,-0.25538105,-0.026597427,0.31798363,0.5708159,-0.09363857,-0.30795747,-0.004659648,0.046239514,0.17146489,0.18630807,0.024430394,-0.25090724,-0.20321557,0.19291183,-0.31162056,0.19269003,0.4501813,-0.25859812,-0.15486918,0.40232342,0.5387444,0.21296875,-0.12801999,-0.030756226,0.08939075,-0.52773374,-0.22961389,0.07487227,-0.28423882,0.49321893,-0.24232769,0.22822364,0.77959216,-0.22187884,0.0037355055,0.033366963,0.20773187,-0.21701075,-0.18002129,-0.4657873,0.28376672,-0.39780936,0.19807467,-0.111425444,1.0112232,0.29990992,-0.5799641,0.26062223,-0.5806376,0.2082042,-0.31616938,0.42099798,0.55988735,0.4015921,0.45442405,0.7272829,-0.39257467,0.16190177,-0.013475794,-0.50113356,0.12629946,-0.306029,-0.05806468,-0.48595384,-0.12006144,-0.052610833,-0.20978436,0.1446496,0.3790366,-0.5625428,-0.011155658,0.123066776,0.8775767,-0.29898173,0.05217616,0.6415246,0.94203985,1.0392199,0.108689435,0.98935115,0.26413187,-0.3351631,0.07203062,-0.3040201,-0.711966,0.3179066,0.46970308,-0.29602093,0.21316406,0.23007645,0.10839757,0.39536682,-0.43304363,0.06430478,-0.32122374,0.16954948,0.1408096,-0.16930352,-0.5833062,-0.3227272,-0.25267172,0.175724,-0.18292353,0.21340337,-0.07903063,0.3316096,0.091229,1.7070554,-0.034613702,0.041064337,0.027201368,0.40555793,0.1911065,-0.27943593,0.008588617,0.36330193,0.4396858,0.07998378,-0.7217157,0.1788632,-0.22605754,-0.33791834,-0.16935928,-0.32227248,0.047559936,0.13616286,-0.4120514,-0.10189514,-0.026837949,-0.17086202,0.54269886,-2.57059,-0.15632772,-0.15608785,0.44367743,-0.24600363,-0.2551906,0.05020196,-0.46805224,0.2949374,0.2941267,0.62074864,-0.70284945,0.33648017,0.45566538,-0.69438815,0.025197286,-0.61338615,-0.2670119,-0.12859571,0.30413073,0.11340494,0.14894046,0.048091218,0.18422708,0.38512754,0.07274905,0.13592497,0.2725889,0.36596122,0.11858877,0.6607551,0.030775942,0.4985067,-0.19241293,-0.16930272,0.21263331,-0.28350517,0.27411053,-0.050257172,0.08701897,0.5523013,-0.38445583,-0.89620006,-0.7902686,-0.23116446,1.1422635,-0.17920925,-0.41755897,0.34216708,-0.21334478,-0.362907,-0.14143017,0.2323381,-0.066046596,-0.18436494,-0.8975205,0.0125915725,-0.054102127,0.14518535,0.14762375,-0.28813112,-0.43749925,0.79017645,-0.03170615,0.49153244,0.31927234,0.20556599,-0.030194364,-0.29954556,-0.060365062,0.81200016,0.40692848,0.12728752,-0.35075167,-0.20565653,-0.26075062,0.023723276,0.13736771,0.40436855,0.58351934,-0.21459392,0.01524451,0.31899917,-0.059639357,0.07462445,-0.14137483,-0.34794638,-0.03899197,0.0011426669,0.5169815,0.6188735,-0.1820592,0.42346847,0.023936365,0.33934104,-0.014877374,-0.47156778,0.2789702,1.0897498,-0.052297994,-0.32056645,0.52575564,0.5646236,-0.114338756,0.34808937,-0.5256982,-0.11794511,0.40310076,-0.17786333,-0.3518888,0.09983262,-0.3642065,0.23513684,-0.7966528,0.46004412,-0.261109,-0.6495521,-0.59387743,-0.072927445,-3.2785203,0.23589842,-0.36882803,-0.20640685,0.04924985,-0.0096510835,0.23984286,-0.76755977,-0.5089665,0.3112257,0.11417794,0.77100825,-0.06831197,0.07975586,-0.1868066,-0.17755435,-0.31187347,0.008888061,0.063301,0.33402088,0.13460296,-0.4922627,0.054453135,-0.03339082,-0.37226245,0.1841999,-0.6044844,-0.5632943,-0.20105842,-0.5745983,-0.42028677,0.59153503,-0.21580039,-0.04110786,-0.10452592,0.15582512,-0.22576927,0.2329727,0.1711693,0.0940844,-0.03391991,-0.01769085,0.0058131632,-0.28059876,0.33365932,0.057195526,0.410799,0.04445442,-0.061944988,0.049077366,0.6764123,0.5192347,-0.114996925,0.8744875,0.5931858,-0.24544922,0.071328886,-0.26744276,-0.3383039,-0.5396033,-0.35812944,0.050019566,-0.41005802,-0.47434556,0.02551838,-0.3375093,-0.81661975,0.62778723,0.07515225,0.11862298,-0.0030642003,-0.0039960006,0.5179371,-0.0663866,-0.08584098,0.12040591,-0.13804916,-0.6938001,-0.14351532,-0.61975247,-0.33083314,0.20451117,1.0425547,-0.3950176,0.118794866,-0.030482007,-0.41603667,0.05567705,0.10876933,-0.10521192,0.121379785,0.49593624,-0.12708345,-0.64198214,0.44571608,0.032490976,-0.08256463,-0.6904296,0.31115752,0.6376836,-0.5713982,0.50267917,0.35029703,-0.092298135,-0.04660034,-0.44637552,-0.3939444,-0.08815901,-0.16955186,0.39723,0.06528507,-0.5733122,0.3318895,0.30171984,-0.32994047,-0.62537533,0.53845906,-0.123076476,-0.24843517,0.0026323611,0.1886069,0.08445445,-0.059348993,-0.08765101,0.3703807,-0.35836184,0.33586815,0.25967395,-0.1506441,0.05696666,-0.14577816,0.041077234,-0.9232743,0.030505607,-0.31824344,-0.2028241,0.26412696,0.13183072,0.06788309,0.08744963,0.2823124,0.3862886,-0.22564481,0.076374836,-0.039906718,-0.38260448,0.4800272,0.4384346,0.42280373,-0.38806647,0.57175726,0.07997059,-0.07919517,-0.06888996,0.026592327,0.3764326,0.13529441,0.4455939,-0.034230947,-0.24561524,0.29420418,0.8411313,0.2349715,0.5982208,0.015203114,-0.06840916,0.11809957,0.10540957,0.25901443,0.019279866,-0.61017424,0.1335161,-0.1343967,0.13294142,0.42129976,0.20009759,0.27453858,-0.0700413,-0.4803568,-0.0124200685,0.11051758,0.08846232,-1.3016855,0.5000544,0.21608767,0.7727115,0.39951992,-0.023770185,0.014521516,0.78967434,-0.11705041,0.11527522,0.1982024,0.005357307,-0.53536075,0.410337,-0.746162,0.35471073,0.043165963,-0.07244898,-0.00154299,-0.07064615,0.43851164,0.6219674,-0.2264484,0.0010117659,-0.13462292,-0.4560258,0.16961296,-0.50571406,0.014454512,-0.68579537,-0.3789188,0.5349702,0.5679384,0.3773376,-0.075046636,0.012928502,0.05389232,-0.08706722,0.27272648,0.15706924,-0.036419954,0.15266067,-0.73627114,-0.12652276,0.4846728,-0.33848852,0.18298131,-0.17019469,-0.12756117,0.28827584,-0.11218886,0.03395325,-0.0813434,-0.70596,0.0020709587,-0.2062274,-0.41142184,0.48703486,0.11939342,0.37136218,0.17952545,0.024740381,-0.051729076,0.43020487,0.12771943,0.8460975,-0.017098345,-0.16022703,-0.4506892,0.09235703,0.13451461,-0.041662034,0.0775673,-0.3704922,-0.039431207,-0.6015437,0.43692163,0.0739771,-0.2782436,0.10305352,-0.20134561,0.017426085,0.5523196,-0.13468038,-0.17996462,-0.17651774,-0.15259248,-0.24935032,-0.24863885,-0.12076791,0.25935152,0.31446695,0.008094948,-0.17569536,-0.116973154,-0.10184263,0.46803153,-0.058816556,0.42869264,0.29960543,0.011336341,-0.23539479,-0.37035716,0.0742104,0.4016484,-0.060248367,-0.269309,-0.35223195,-0.5481491,-0.41491944,0.08507901,-0.108810216,0.47121158,0.022250572,-0.23185198,0.67863333,-0.1690797,1.1424421,-0.058737718,-0.4161344,0.090418406,0.5639852,0.13293241,-0.004260056,-0.23828664,0.7965809,0.57721734,-0.11661757,-0.04857699,-0.5956166,-0.10937624,0.14191686,-0.13963357,-0.045057885,0.15868849,-0.6033206,-0.19390163,0.2528741,0.14351906,0.20407845,-0.050027728,0.09441163,0.38438067,0.119066015,0.17984898,-0.3732568,-0.31299114,0.22275235,0.19843143,0.16266908,0.096294455,-0.5818671,0.377196,-0.34410477,0.13002159,-0.29311913,0.20342383,-0.29601,-0.2762562,0.24711147,0.075862974,0.34920913,-0.31581065,-0.32184616,-0.24739368,0.6278521,0.10244706,0.056590743,0.55458474,-0.2661967,-0.012899781,0.13220897,0.39142334,0.90100384,-0.34038737,-0.020226588,0.631332,-0.44817513,-0.53093886,0.29479754,-0.2118869,0.04087948,0.15281177,-0.3527985,-0.69365215,0.2564093,0.19578633,-0.033781327,0.18490306,-0.4957003,-0.17951499,0.29379922,-0.44313353,-0.181952,-0.36922115,0.16625386,0.4759771,-0.37957987,-0.50312006,0.056650206,0.12059694,-0.18775104,-0.32313398,-0.18206239,-0.3294017,0.30173284,-0.06341,-0.36085322,-0.28662187,0.038591843,-0.2584829,0.07366569,0.0465642,-0.3989234,0.14900658,-0.27033454,-0.054786112,0.90624434,-0.30525193,0.08074334,-0.7190341,-0.2820701,-0.73535275,-0.32960862,0.69052094,0.090989225,-0.08275625,-0.5941342,0.06363611,0.15788515,-0.07899232,-0.21819264,-0.4133901,0.48998457,0.1411298,0.31864357,-0.014890997,-0.8247441,0.21551822,0.06845699,-0.22990173,-0.67838204,0.58220774,-0.22435817,0.85970825,-0.039811037,0.19421402,-0.024538787,-0.22044145,-0.018526921,-0.2768466,-0.4772165,-0.72763675,-0.13929603,723 +725,0.3924449,-0.30882046,-0.43866438,-0.15347126,-0.23754069,0.0054624905,-0.16849032,0.668446,0.2826023,-0.36657155,-0.20527227,-0.0935448,0.114337154,0.4576643,-0.09402466,-0.40395182,0.011270487,0.22966638,-0.4981481,0.57113737,-0.38270837,0.111828655,0.003730673,0.5429002,0.45873362,0.22201635,0.0065861484,0.06562582,-0.2991622,-0.119269535,-0.29251024,0.36355206,-0.30294758,0.13957575,0.017039107,-0.2485582,-0.09892673,-0.59346294,-0.26635712,-0.8619624,0.24697877,-0.9134003,0.5665297,-0.041290645,-0.26200578,0.23091239,0.22077635,0.3209788,-0.32443592,-0.33377382,0.09007646,-0.19962837,-0.112774,-0.22203475,-0.086460195,-0.3326662,-0.60532117,0.102712266,-0.4318714,-0.1818611,-0.3299125,0.20489295,-0.26427835,-0.14482667,0.02826824,0.67098457,-0.40375417,0.15883453,0.19044818,-0.26657784,0.21521753,-0.58043545,-0.13590537,-0.12544706,0.19071428,-0.077296294,-0.4419965,0.24231412,0.38714522,0.27009693,-0.021570288,-0.21725509,-0.39531535,-0.038949627,0.09045665,0.40757275,-0.052787594,-0.5536964,-0.11693505,0.059546053,0.22923486,0.24064526,0.35592863,-0.23075536,-0.15648048,0.12262973,-0.10449273,0.45390546,0.37477547,-0.34650084,-0.13975866,0.40388396,0.566128,0.31663033,-0.19528624,-0.17651984,0.022938637,-0.56862664,-0.04976294,-0.01620825,-0.24656321,0.5845303,-0.22024173,0.26626313,0.59117424,-0.13246544,-0.06985887,0.28948718,0.19329055,-0.24146524,-0.2842427,-0.22341985,0.20085964,-0.4242533,0.14825799,-0.15248361,0.69139254,0.18616512,-0.59187126,0.3894127,-0.53484565,0.20817533,-0.20397274,0.37998727,0.69087565,0.452267,0.57207143,0.6026405,-0.2337521,0.025476446,-0.082013674,-0.43288648,0.17686266,-0.3222142,-0.046578843,-0.6460815,-0.026729865,-0.13579684,-0.13317282,0.21458834,0.46457216,-0.6631706,-0.14038761,0.21341172,0.8001534,-0.23436958,-0.3823543,0.85419095,0.926635,0.88213897,0.002069063,1.0891939,0.13286279,-0.17882875,0.29286197,-0.23558313,-0.6279576,0.37603414,0.3919803,-0.8182429,0.32930714,0.07099359,-0.006034888,0.46494314,-0.18896216,0.021734567,-0.15019625,0.0016189172,0.11269767,-0.174558,-0.41641495,-0.36103153,-0.1774804,0.0033110608,0.19670382,0.26454642,-0.3255402,0.51481456,-0.16778876,1.8965918,0.020025088,0.03403984,-0.043324906,0.3945997,0.25930667,-0.24090457,-0.17810756,0.58933663,0.29573774,0.2428302,-0.4733717,0.22559175,-0.28352645,-0.43837172,-0.0974911,-0.4490082,-0.024186896,0.011023799,-0.37160668,-0.16457671,-0.22756995,-0.29069376,0.43800205,-2.7710142,-0.2986473,-0.072666034,0.33371434,-0.27077755,-0.41577005,-0.056861963,-0.43524712,0.24360143,0.24689573,0.602176,-0.7237082,0.26700643,0.27471736,-0.7018155,-0.3031009,-0.7531348,-0.0846433,-0.03968238,0.31510928,-0.03538635,-0.067003936,0.14830953,0.021005373,0.5472616,-0.04418296,0.10253845,0.35081723,0.45663878,0.00071891915,0.49411738,-0.15114899,0.67981243,-0.19848092,-0.30099708,0.3151932,-0.31417722,0.49055746,0.12885568,0.1105659,0.59625906,-0.3294565,-1.0178759,-0.6939602,0.032870457,1.2203013,-0.28187177,-0.40656802,0.111014456,-0.52037543,-0.32251924,0.068882875,0.54438585,-0.008087268,-0.11764046,-0.77110195,0.022803482,-0.00527607,0.11802456,0.0028335957,-0.03554345,-0.34957945,0.6082016,0.04584792,0.4824254,0.22105438,0.23872375,-0.52001977,-0.39013666,0.04917385,0.82509845,0.35337785,-0.016126093,-0.17715184,-0.30256176,-0.5104095,-0.13236628,0.13212314,0.55960363,0.45664075,-0.060018834,0.16030826,0.3663206,-0.0021961606,-0.00039695547,-0.22037032,-0.18664494,-0.051216364,0.10682636,0.50941515,0.73694766,-0.17078103,0.70394254,-0.058727168,0.30177587,-0.030488748,-0.5384687,0.56240433,1.278077,-0.3095681,-0.3894842,0.63696665,0.28192604,-0.39008147,0.45411283,-0.4560619,-0.1904042,0.52443415,-0.124042764,-0.40384638,0.20737535,-0.25170138,0.23339517,-1.0065122,0.22653642,-0.22795361,-0.48415598,-0.5864203,0.10586096,-3.3218014,0.28034467,-0.3336164,-0.21946733,-0.21579869,-0.32104146,0.012507326,-0.85076594,-0.44425255,0.13115595,0.16700281,0.91009414,-0.2304992,0.06297381,-0.23820104,-0.39508688,-0.22173885,0.067841575,0.015921617,0.47312137,-0.20876664,-0.41794255,0.09922429,-0.016733047,-0.47974688,0.054533012,-0.7144977,-0.5392548,-0.09925882,-0.629027,-0.2465996,0.7032618,-0.38250253,0.007845698,-0.18613365,0.17222473,0.07307224,0.32908237,0.027383447,0.069302864,0.17399491,-0.035608467,0.08976586,-0.3302503,0.31045145,-0.024679817,0.27648222,0.33904582,-0.019785363,0.51521283,0.6569507,0.7431201,-0.17662174,0.9025227,0.55397505,-0.10484374,0.15238336,-0.3501438,-0.33327514,-0.42202875,-0.25335994,0.062461264,-0.45750076,-0.37360796,0.04440767,-0.2667259,-0.819479,0.6605107,0.04101018,0.25539476,-0.05540285,0.4168144,0.7734978,-0.24942559,0.028882321,-0.020516805,-0.23624788,-0.7746938,-0.16501954,-0.5254931,-0.59769577,0.23923062,0.82773185,-0.42503422,0.051194567,-0.018014984,-0.26588857,-0.019843366,0.11846136,-0.16104351,0.2959355,0.40416315,-0.20403549,-0.5794769,0.37398985,-0.094606824,-0.15538932,-0.47967118,0.41415337,0.6003126,-0.6218604,0.6252982,0.30126482,-0.0838023,-0.29509115,-0.4581421,-0.15310809,0.010141716,-0.04710751,0.4514374,0.26499644,-0.8282193,0.37193888,0.410763,-0.3240285,-0.76930416,0.53028595,-0.083546415,-0.116146326,-0.24571902,0.42153007,0.1707327,0.06555119,-0.3942688,0.07928936,-0.4354629,0.08103086,0.2702921,-0.074108616,0.30143097,-0.15175249,-0.118254036,-0.82868856,0.1256064,-0.49158967,-0.352385,0.43804085,0.22168818,0.21637987,0.17516367,0.19354722,0.26491335,-0.40145385,0.009566381,-0.10828984,-0.18630661,0.31373912,0.5016428,0.49172014,-0.5409486,0.51777464,0.040497426,-0.09470676,0.05276138,-0.14827706,0.42962074,0.1563646,0.39923745,0.1002972,-0.28518993,0.19812652,0.58168,0.042443983,0.45802996,0.1285451,-0.034200385,-0.028429164,-0.013443506,0.3521462,0.004609664,-0.6611882,0.15038563,-0.45519182,0.21851137,0.5930943,0.21627122,0.20965503,0.05849065,-0.47945088,0.011299271,0.070609875,0.19685808,-1.2332573,0.45398396,0.28145903,0.89982694,0.24740131,0.050962504,-0.094558306,0.86273515,-0.2223507,0.23022142,0.37020046,-0.084592536,-0.5230446,0.48211163,-1.0343877,0.48605186,0.023358844,-0.00899877,-0.03366353,-0.12061751,0.4384785,0.79104775,-0.25801438,0.028848972,0.06976055,-0.2940851,0.20936115,-0.5142189,0.03539519,-0.7443769,-0.30238774,0.57523686,0.50690913,0.4464161,-0.23547179,0.025174966,0.29006654,-0.1543797,0.23623969,0.07914873,0.26865312,0.011237149,-0.6766013,-0.08366371,0.44523138,-0.03717858,0.39891374,-0.10515261,-0.052027483,0.2902989,-0.2734117,-0.094878286,-0.17227474,-0.63464075,-0.15390915,-0.16867901,-0.66557825,0.60176754,-0.04597884,0.18550912,0.25264108,0.06773935,-0.19290906,0.60712725,0.052113973,0.9730577,0.05955368,-0.06326984,-0.44065952,0.44861585,0.082061134,-0.09338824,-0.092216454,-0.29144794,0.09237642,-0.56443983,0.5430186,-0.03790285,-0.46235943,-0.18280002,-0.0106787225,0.137213,0.5363211,-0.24590921,-0.20482522,-0.2516747,-0.33536178,-0.3252309,-0.18810548,0.034789775,0.37219444,0.26362696,-0.06072084,-0.27028397,-0.13725387,-0.16901657,0.26577216,-0.15066808,0.40377238,0.34664232,-0.0681891,-0.16977742,-0.19235156,0.3179234,0.5163392,0.007804476,-0.2582182,-0.38348833,-0.24491054,-0.43901184,0.07824542,0.02741276,0.48824495,0.1955054,-0.14352438,0.7039761,-0.18943161,1.3555597,-0.08196083,-0.5457997,0.11451031,0.5478121,0.054150123,-0.14021227,-0.28362253,0.86574876,0.39418375,0.008871,-0.051741187,-0.585658,-0.15131079,0.39624822,-0.20884529,-0.07792357,0.052116632,-0.5398318,-0.1860721,0.19323699,0.19084117,0.36992472,-0.12364861,0.16699086,0.33404428,-0.13171643,0.2211714,-0.3445706,-0.19375695,0.2430202,0.47130808,0.00069856644,0.10830384,-0.46345124,0.41985133,-0.53553486,0.1550699,-0.24954516,0.29950935,-0.25135234,-0.31065148,0.29974896,0.076085284,0.36595276,-0.3064409,-0.37675434,-0.2822379,0.5004891,0.21800658,0.062494643,0.5662338,-0.31546277,0.028079836,0.05701329,0.3743677,0.94627416,-0.197947,0.025096592,0.38675007,-0.2979386,-0.78990424,0.59448206,-0.47699437,0.2589911,0.10702278,-0.09451881,-0.6321869,0.21326503,0.31310794,0.1221424,-0.10702765,-0.5968915,-0.098547235,0.18973619,-0.28667566,-0.12872872,-0.36306316,0.023442008,0.36982995,-0.26586375,-0.45773584,0.011231496,0.09338037,0.10331844,-0.33396074,-0.20351022,-0.38982895,0.32093444,-0.020896861,-0.450408,-0.10519767,-0.005725104,-0.48389736,0.21434039,-0.03187631,-0.28202608,0.2806569,-0.24343385,-0.025460334,0.938452,-0.27096134,0.18855341,-0.39992282,-0.5213064,-0.58854395,-0.31227568,0.25280657,-0.16725995,0.036968842,-0.7261584,0.11548499,-0.10614496,-0.3493552,-0.14264432,-0.5156187,0.41816616,0.08834163,0.28276226,-0.036364354,-0.7374881,0.19282912,0.068934076,-0.07535153,-0.74347466,0.43008444,-0.18951249,0.90188587,0.033167742,0.15970494,0.38867763,-0.3212229,-0.13751489,-0.3029955,-0.23048316,-0.42596003,-0.15793292,726 +726,0.47906846,-0.17183383,-0.5691011,-0.12135541,-0.11975272,0.01692046,-0.08911881,0.34949854,0.3905303,-0.44127303,-0.08934736,-0.10523048,0.08739614,0.20868012,-0.2243889,-0.7850685,-0.08701476,0.3212155,-0.37761894,0.5085127,-0.52538234,0.17575444,-0.09282914,0.32801777,-0.12706994,0.22191194,0.31225067,-0.14271435,-0.17057785,-0.037310783,0.24111515,0.4331965,-0.80976105,0.14745738,-0.008312244,-0.27362254,-0.06606109,-0.35238045,-0.4969064,-0.92188394,0.5186108,-1.0307306,0.56342304,0.27114922,-0.17558323,0.26003677,-0.028719027,0.046249636,-0.33177325,-0.011308441,0.13450712,-0.3609038,-0.31341842,-0.28380492,-0.11339169,-0.20021406,-0.7790202,0.086320676,-0.51722157,-0.028253106,-0.29871908,0.14231035,-0.43483317,-0.030778326,-0.30331177,0.71907604,-0.43009165,0.0045894017,0.3961414,-0.21796513,0.24344507,-0.45234916,-0.16111296,-0.099614754,-0.011396353,-0.21724297,-0.3993605,0.19948873,0.3818016,0.3771341,-0.057667393,-0.38616583,-0.39139387,0.04782872,0.43485582,0.40553468,-0.29170462,-0.51995647,-0.073253736,-0.033110086,-0.057097122,0.127158,0.23991816,-0.4196623,0.001383433,0.20122752,-0.12603918,0.6255433,0.72514975,-0.1511485,-0.18547036,0.23955266,0.59066606,-0.012196938,0.03525052,0.039090954,0.06518499,-0.609123,-0.250747,0.1910908,-0.23604144,0.65116704,-0.265729,0.085079126,0.5904928,-0.45005795,-0.2008492,0.23451039,0.15369707,0.09821912,-0.438998,-0.29064095,0.6625272,-0.42855772,0.027488094,-0.2666611,0.80602163,0.13051769,-0.82478154,0.4377054,-0.55546325,0.3219752,-0.23450515,0.77865654,0.54369676,0.4291216,0.53752905,0.8351319,-0.52432126,0.037560485,0.08748459,-0.6073913,0.18917741,-0.24487719,0.034533225,-0.3564706,-0.13700326,-0.02647474,-0.2702351,0.07606056,0.47559148,-0.52310604,-0.10462333,0.02071122,0.621344,-0.29696527,-0.19747098,0.60584337,1.2430117,1.1281899,0.19481824,1.4690036,0.39018977,-0.16433305,0.0838089,-0.15615183,-1.150655,0.29940408,0.29868814,-0.4710081,0.44407794,0.12624271,-0.3021843,0.4417501,-0.5389407,-0.1904316,-0.1475336,0.3314745,0.0061193933,-0.23578899,-0.407276,-0.15778875,-0.007694861,-0.021803392,0.127556,0.27512124,-0.2665499,0.26339218,0.14349592,1.225487,-0.11364163,0.106249206,0.09297393,0.3565602,0.18835957,-0.042584416,-0.037500344,0.3189875,0.31607744,0.26814634,-0.65546286,0.07831783,-0.2352776,-0.56009203,-0.25360116,-0.30658552,0.1783372,-0.07080661,-0.43189886,-0.12508097,-0.16585207,-0.3958491,0.3875225,-2.393478,-0.11967142,0.069743454,0.4231946,-0.20035058,-0.27875984,-0.10736062,-0.50757086,0.27268866,0.31523862,0.44618896,-0.8042533,0.29944932,0.45473772,-0.59856546,-0.01155889,-0.82082516,-0.066974156,-0.23989871,0.28852856,0.13164848,-0.10128124,0.11305576,0.14554398,0.48954943,-0.003750549,0.03282983,0.37088427,0.47734106,0.017989708,0.34431207,0.020080786,0.4639362,-0.41665855,-0.4154584,0.35322732,-0.40742442,0.17345916,0.03819017,0.032536708,0.32742172,-0.43194205,-1.0557622,-0.5715039,-0.21094242,1.1984037,-0.35342214,-0.51611495,0.30729836,-0.17708352,-0.3549864,-0.011618426,0.4301174,-0.31215218,-0.085799545,-1.0124551,0.12388717,-0.16567755,0.24235685,0.011632121,0.065681554,-0.45202345,0.67658657,-0.20114239,0.37712172,0.42229426,0.20656437,-0.473718,-0.5959143,0.09766246,0.9924711,0.16517466,0.29369086,-0.2816756,-0.23346029,-0.08755748,0.009408212,0.043171883,0.56571794,0.8615255,-0.11680996,0.04837972,0.37615988,0.07690383,0.084083304,-0.21360016,-0.43930534,-0.084693834,-0.13296407,0.65556717,0.85824203,-0.41792992,0.23739092,-0.03639937,0.34218675,-0.003834399,-0.35866258,0.5384594,1.4146162,-0.07738287,-0.38608947,0.7754832,0.4417617,-0.65256363,0.5954963,-0.6232621,-0.21141694,0.36334884,-0.19281866,-0.45979038,0.2729377,-0.43969932,0.2453102,-1.0379124,0.548276,-0.26589277,-0.32283136,-0.53738314,-0.2306134,-3.977215,0.24715552,-0.37240034,-0.025231214,-0.19646849,0.022188503,0.23728868,-0.5597985,-0.62248987,0.19550191,0.09178957,0.52357185,-0.24389938,0.13862266,-0.0715371,-0.07634702,-0.19330499,0.22461827,0.30701756,0.28572398,0.13385506,-0.48745394,-0.0002741424,-0.113082916,-0.39620754,0.056691136,-0.5657983,-0.49972644,-0.09506819,-0.70105463,-0.5690619,0.64678895,-0.2834646,-0.16460833,-0.33664453,0.1983107,-0.050394855,0.45782802,-0.082019016,0.32578886,-0.0016525433,-0.032069642,-0.11092806,-0.031388637,0.3949989,-0.075723894,0.39165512,0.49634224,-0.42848015,0.0886126,0.55822456,0.7977017,-0.04181264,0.9240853,0.63384885,-0.026885109,0.2872308,-0.21306525,-0.24805562,-0.80371284,-0.3239377,-0.06513085,-0.53392184,-0.32101023,0.066555105,-0.40855402,-0.8366799,0.66532326,-0.16080731,0.23682864,0.093813896,0.44379684,0.5554887,-0.13617112,0.010866027,-0.1338065,-0.3109282,-0.5356333,-0.0964136,-0.64746994,-0.53487074,-0.070756055,0.9361751,-0.12709433,0.060420923,0.14067116,-0.014448909,-0.013494799,0.27816075,-0.025509605,0.25946912,0.48688242,0.096253745,-0.6207928,0.4070188,-0.17215618,-0.12505199,-0.7584107,0.1678002,0.5035902,-0.725579,0.8402598,0.4748205,0.114533,-0.051910464,-0.59647316,-0.43961242,0.15260619,-0.08484424,0.69391906,0.41748106,-0.9063917,0.49226087,0.4990369,-0.44268253,-0.68664736,0.5235066,-0.059165876,-0.18527696,-0.077553,0.5077719,-0.28405178,0.08603001,-0.15998714,0.25580692,-0.3990736,0.13050932,0.26582253,-0.068949334,0.45783025,-0.06174262,-0.14564168,-0.75445247,0.07644855,-0.62680346,-0.19855997,0.16243806,-0.030818395,-0.025910629,0.13452746,0.045231834,0.6172869,-0.2305117,0.06360424,-0.035505097,-0.4915393,0.545413,0.6190529,0.33768228,-0.4705512,0.65151066,-0.0033474439,-0.1795846,-0.34496564,0.014230563,0.5538137,-0.0074043367,0.41854525,0.33266163,-0.00067671906,0.35205618,0.78189343,0.13054189,0.7063289,0.24774401,0.060658075,0.34327918,0.123158365,0.33907765,-0.13104399,-0.58315456,0.03693005,-0.20249715,0.20430878,0.6315434,0.059933607,0.48895544,-0.259529,-0.33709526,-0.105423085,0.3484728,0.06595845,-1.2355542,0.44657245,0.146746,0.6583507,0.57478297,-0.04580261,0.09679083,0.46016905,-0.1916202,0.12526643,0.36533177,-0.080267824,-0.56109715,0.5757213,-0.6942804,0.19818467,-0.25340238,0.045179646,0.0422627,0.007663493,0.40894097,0.7489671,-0.042539403,0.023284338,-0.1289705,-0.18350346,0.2913659,-0.48278517,0.33145362,-0.40073982,-0.28012103,0.7813937,0.46871516,0.55017674,-0.25400972,-0.00041448898,0.23688713,-0.18251981,0.37053907,-0.08308925,-0.10858306,-0.069187,-0.723295,-0.24061608,0.6522834,0.3221938,0.03573338,-0.2043648,-0.20116708,0.30012333,-0.17979993,-0.2972596,-0.14521345,-0.70322156,-0.07142596,-0.17879952,-0.5196283,0.4833986,-0.27418897,0.1776217,0.2695588,0.10891633,-0.6602798,0.061945114,0.24250099,0.74066365,0.013842482,-0.21315248,-0.36024985,0.3309942,0.3026968,-0.1523067,-0.0306285,-0.34778574,0.069622755,-0.47340134,0.5607689,-0.16672571,-0.4494039,0.002115479,-0.029734502,-0.03704519,0.6942016,-0.39998564,-0.2780406,0.032787886,-0.10404767,-0.22021185,-0.31173876,-0.14186536,0.36881354,0.13316472,-0.24048768,-0.23463424,-0.070394546,-0.21785356,0.3873079,-0.020192526,0.17159532,0.40890285,0.246963,-0.4245439,-0.13127716,0.28802025,0.7403265,0.053187378,-0.26264623,-0.5629135,-0.50027454,-0.18657064,0.03411546,-0.06102154,0.300368,0.10535077,-0.3730645,0.9235484,0.14111695,1.2208622,-0.086797245,-0.3004184,-0.09640524,0.64635783,0.07404472,-0.27742055,-0.35256723,0.99760604,0.6064594,-0.35019472,-0.10781936,-0.5428494,0.09421056,-0.008889214,-0.17360163,-0.22859436,0.007572824,-0.753768,-0.08428614,0.19731413,0.4587868,-0.027654286,-0.016373284,0.2574432,0.19053353,-0.00020706654,0.31988138,-0.47224745,0.024929103,0.21977755,0.22071648,0.1202609,0.08467212,-0.32741782,0.27461684,-0.51889384,0.06652844,-0.3085601,0.11322523,0.0653194,-0.2913658,0.28845206,0.036214694,0.37766728,-0.33502176,-0.24680686,-0.2032424,0.37140802,0.1436281,0.04216925,0.90206397,-0.26617754,0.11020629,0.25858894,0.72329223,1.1706188,-0.15315117,0.04310211,0.24465689,-0.27709082,-0.9284878,0.42799821,-0.25514317,0.17433211,-0.22486566,-0.3331508,-0.84714156,0.068460725,0.16556822,-0.11636516,0.24179162,-0.58428013,-0.34484527,0.27426305,-0.37227204,-0.21256858,-0.28758055,-0.0028055792,0.7001925,-0.31862524,-0.27605444,0.0113764,0.14318044,-0.09624397,-0.5376309,-0.21389191,-0.38331544,0.26890916,0.14944795,-0.35885742,0.065610066,0.20568849,-0.49509305,0.25090224,0.3532179,-0.24260154,0.19830187,-0.22226693,-0.104614936,0.7498454,-0.2738046,0.17577061,-0.5392997,-0.7049628,-1.220041,-0.17189568,0.4637404,-0.08221992,0.031412248,-0.7804043,-0.034433313,0.1311205,-0.16466048,-0.11310451,-0.47399676,0.5037102,0.085769415,0.49014232,0.05407828,-0.7128755,-0.0677931,0.14494795,-0.22318557,-0.48838937,0.50419647,-0.0049083414,0.76143676,0.04115852,0.253316,0.26062986,-0.6501184,-0.031514622,-0.14867866,-0.24972357,-0.5857481,-0.10641929,729 +727,0.44933936,-0.1213932,-0.51631916,-0.15280971,-0.1518325,0.34448192,-0.2524888,0.4061635,0.12925729,-0.43443102,-0.035514787,-0.1370768,0.0135157155,0.23677276,-0.2843766,-0.48419985,-0.07198601,0.10122892,-0.4484722,0.32104298,-0.43888515,0.29843786,0.024273345,0.3800557,0.053315327,0.15313372,0.11863733,0.06539685,-0.107799895,-0.10820491,-0.082067445,0.24695495,-0.5813102,0.019932903,-0.2852723,-0.4015484,-0.1284949,-0.54322547,-0.3712996,-0.6258638,0.3823076,-0.94297594,0.64175737,-0.040052537,-0.2822234,0.3522201,0.08787795,0.13173844,0.035333373,0.049886253,0.0590385,-0.19549005,-0.061979063,-0.13692953,-0.52495193,-0.4082467,-0.7572488,0.10840244,-0.6276187,0.03634589,-0.15076171,0.14616439,-0.19321063,-0.0059205294,-0.015509372,0.31454468,-0.27055156,-0.11860904,0.1264562,-0.12331863,0.38788146,-0.5420242,-0.24443604,-0.0066419244,0.36206532,-0.32500905,-0.22521318,0.16017693,0.4327847,0.62195873,-0.21710227,-0.18539645,-0.3693375,0.13601011,-0.18479775,0.5339682,-0.23137267,-0.35379073,-0.2556923,-0.25587228,0.37569863,0.35526276,0.16057798,-0.193548,-0.010038225,-0.075988494,-0.28818214,0.40005922,0.5721905,-0.44754422,-0.2784796,0.4391481,0.54857105,0.1838596,-0.061657432,0.09261311,0.1035368,-0.70040756,-0.11658929,0.12850961,-0.1420815,0.5577855,-0.14689492,0.2781822,0.4291199,-0.13622588,0.0961,0.04009864,-0.05867217,-0.20137024,-0.15514095,-0.23103903,0.20161718,-0.4540459,0.031219423,-0.14798607,0.524562,0.17962208,-0.9225368,0.3752479,-0.56346995,0.107432514,0.15531056,0.46975115,0.7786902,0.5537581,0.13291048,0.59767544,-0.42756224,-0.06817228,0.03734819,-0.16008027,0.18553308,-0.13932648,0.008045946,-0.4796014,-0.1368049,0.09958636,-0.032617815,0.15477133,0.6209309,-0.5220466,-0.2360235,0.15747227,0.6831624,-0.21838805,-0.07873666,0.7463865,0.97130084,0.8660775,0.08168976,1.3275307,0.21365589,-0.11286272,0.11336943,-0.1139439,-0.82153296,0.27461752,0.35411447,-0.5969448,0.66558415,0.06764058,0.019464662,0.32644224,-0.21180257,-0.13259646,-0.062209137,-0.029625688,0.011066945,-0.06341072,-0.21886942,-0.3237724,0.10580016,-0.049241763,0.38426018,0.25356552,-0.2649451,0.477979,0.41478774,1.4959806,-0.13697447,0.19306047,0.07837416,0.31367403,0.2803241,-0.17885502,-0.22630908,0.26753965,0.35743588,0.12630375,-0.37643284,0.04040084,-0.115394905,-0.36863598,-0.18648076,-0.2614288,-0.29227158,-0.11798305,-0.39462245,-0.19292992,-0.08814668,-0.5118578,0.42881244,-2.8703005,-0.14926134,-0.20680024,0.47879732,-0.22391169,-0.4777334,-0.22632465,-0.4067623,0.49236524,0.44315487,0.20169616,-0.57901,0.25056416,0.49486607,-0.3657737,-0.1956954,-0.63547474,-0.076189734,-0.01634009,0.110753015,-0.010233751,-0.2185821,0.1699992,0.26682404,0.33781675,-0.00017361458,0.04914018,0.22816549,0.4884003,0.11052447,0.4765287,-0.25559717,0.48993662,-0.29597992,-0.24729599,0.49117565,-0.5205077,0.15875323,-0.103553966,0.21336724,0.46962595,-0.47431737,-0.70008117,-0.6068864,-0.22950217,1.264874,-0.14891909,-0.47532982,0.1594964,-0.2610578,-0.5206433,-0.19638015,0.6062881,-0.23755573,-0.04014028,-0.79680383,-0.2966485,-0.106532365,0.31988162,-0.13972794,0.13231577,-0.5603679,0.5034634,0.023185097,0.49732298,0.31650403,0.18055606,-0.44759163,-0.5318422,0.09021287,0.97235113,0.295557,0.19657761,-0.23374023,-0.08848484,-0.3034545,0.030855784,0.08858439,0.46834007,0.60977566,0.003574713,0.1652465,0.31010568,0.08782019,0.1686899,-0.15411459,-0.2771718,-0.19528128,-0.17227843,0.57154584,0.5648673,-0.072013505,0.17508571,-0.08490732,0.22751999,-0.29282433,-0.3471843,0.5507677,0.8991289,-0.18655406,-0.27869055,0.63006645,0.37889287,-0.47273874,0.43491876,-0.6728032,-0.34342235,0.41665882,-0.087606266,-0.4627566,0.3417738,-0.34254202,0.088499375,-0.7289381,0.19301063,-0.17469652,-0.23415834,-0.57798666,-0.12282663,-3.6414354,0.19521666,-0.054631624,-0.16912024,-0.18039936,-0.24753585,0.4582467,-0.49050206,-0.6613254,0.14376034,0.013324825,0.7076703,-0.18915507,0.092622384,-0.36032555,-0.41167024,-0.39212915,0.16828753,0.21623625,0.3333372,-0.003354256,-0.250371,-0.021468226,-0.28546014,-0.4370079,-0.023697555,-0.61532533,-0.42709064,-0.17701149,-0.50270027,-0.29415455,0.75872856,-0.41323566,-0.03971023,-0.29033765,-0.027010623,-0.16584004,0.34488958,-0.1088225,0.13061571,0.04998552,-0.17049193,0.024693178,-0.32827955,0.40486434,0.0008113338,0.098016396,0.4350415,-0.27203533,0.17858896,0.31806892,0.8037189,-0.02562411,1.0276685,0.2743659,0.050576467,0.38334516,-0.2942553,-0.21821691,-0.43570474,-0.059656337,0.06679426,-0.49157605,-0.35262102,-0.22705807,-0.32782957,-0.7212773,0.5322525,-0.10389756,0.24930438,0.059080288,0.4158862,0.45896658,-0.30291623,-0.003305238,0.015677286,-0.25549677,-0.24490239,-0.25164992,-0.6002029,-0.53923124,0.14772466,0.837524,0.022720357,0.10813015,0.26038244,-0.122706376,0.039354496,0.07294495,0.2264444,0.14086393,0.37398592,-0.04454014,-0.61507505,0.29230344,-0.20863436,-0.26427776,-0.6577835,0.005850205,0.70040596,-0.5867693,0.44843477,0.52973527,0.035726056,-0.22485317,-0.6415405,-0.14369589,-0.0023168141,-0.3016191,0.4463031,0.34296563,-0.8171504,0.48358077,0.39748493,-0.23647586,-0.67557424,0.5824541,-0.014133905,0.0120946355,-0.06322828,0.5415153,0.057249226,0.122527234,0.2704221,0.11631362,-0.47130257,0.25762564,0.26291186,0.07146774,0.50982714,-0.14119607,0.020542549,-0.5634473,0.04500136,-0.4699356,-0.32108387,0.3835928,-0.034541942,0.28494617,0.18307057,-0.016167382,0.46369252,-0.36298272,0.046443395,0.075578734,-0.15325525,0.21404745,0.4441802,0.6090879,-0.3172536,0.56905484,-0.12224201,0.07093934,0.120157115,0.11197579,0.48305112,0.14963438,0.35141584,-0.024849929,-0.28487045,0.2631898,0.77212816,0.1645615,0.27516386,0.15558568,-0.09100754,0.15872295,0.09150086,0.15194546,-0.12805496,-0.6024347,-0.11448525,-0.26947773,0.17416003,0.5093513,-0.07466399,0.22754025,-0.3047806,-0.21648645,0.011396467,0.23965192,-0.101443596,-1.3437394,0.15070488,0.17023574,0.7682674,0.30289346,0.09974255,0.038398508,0.46571207,-0.17576262,0.1939098,0.30995852,0.15911786,-0.46435884,0.5314112,-0.64829695,0.48696774,-0.003086943,-0.044157293,-0.008907495,-0.06986968,0.43133256,0.8734136,-0.0628353,0.1295849,0.14975837,-0.1639645,0.25258338,-0.3708482,0.12005176,-0.36320302,-0.084481426,0.6724522,0.42472264,0.388826,-0.3134041,-0.07458433,0.03159517,-0.15077618,0.08196619,0.0031936993,0.012454601,-0.30396894,-0.58646846,-0.1563796,0.45289296,0.3816168,0.18792304,0.20862137,-0.38585055,0.22708203,-0.23054144,0.048506048,-0.12128986,-0.806249,-0.14660636,-0.36324078,-0.585888,0.36178458,-0.09728737,0.07725178,0.33220723,0.082423285,-0.27322063,0.23181441,0.18022643,0.82470036,-0.018943707,-0.045053158,-0.36801016,0.17520775,0.21075934,-0.28682014,-0.16479439,-0.38372666,0.10964222,-0.31426007,0.23500459,-0.077089734,-0.3610676,0.062578194,0.060135666,0.115152635,0.6151592,-0.16913691,-0.12631357,-0.033523664,0.09670651,-0.31185755,-0.10567865,-0.22409445,0.22483529,0.16276829,-0.048445765,-0.058482632,-0.17170914,-0.23030998,0.23603803,0.16028646,0.4524179,0.6594423,0.26610062,-0.3077274,-0.043379527,0.051656045,0.65210545,0.014001828,-0.27982897,-0.44686276,-0.5640565,-0.22480297,0.574263,-0.118516296,0.1199447,0.11966204,-0.3416422,0.71239156,-0.10978149,0.8836819,0.009485816,-0.2800646,-0.08585686,0.45383865,0.031784695,-0.2103081,-0.5010536,0.963954,0.40302646,-0.19794035,-0.15485388,-0.119197525,-0.059146795,0.027216563,-0.32505104,-0.117654726,-0.1613829,-0.7338603,-0.14053243,0.09074129,0.1995302,0.24249734,-0.11396535,0.24865834,0.36984128,0.12915367,0.31300223,-0.36816818,-0.023092875,0.4113363,0.328502,-0.09149659,0.21780993,-0.30921596,0.2742088,-0.44011995,-0.16098095,-0.5542564,0.063568644,-0.07387139,-0.39400098,0.24023141,-0.026605729,0.41081494,-0.10420417,-0.33195975,-0.103806004,0.36350018,0.18882678,0.31619433,0.51044124,-0.11954016,0.041540705,0.008466787,0.5013338,1.1664555,-0.12372801,0.06832394,0.33056906,-0.34157988,-0.6568539,0.2208063,-0.55738664,0.4602909,0.03473278,-0.08580126,-0.12792243,0.2131922,0.14474298,0.16779962,0.026772967,-0.5917795,-0.36378655,0.2789748,-0.29413813,-0.14429912,-0.30704734,-0.008663159,0.615529,-0.24009076,-0.1552569,-0.06909824,0.55000645,-0.20106019,-0.6396774,0.06888123,-0.39323637,0.2507343,0.18373297,-0.39670566,0.05782377,-0.056577995,-0.47990844,0.32239833,0.14736484,-0.3648609,-0.09616889,-0.2722423,0.061684854,0.8439523,-0.22256662,0.009427234,-0.46031043,-0.67310303,-1.0789006,-0.272784,0.014234992,0.17822465,0.026590623,-0.53851795,0.061567064,-0.22580363,-0.101934835,0.026837055,-0.24090004,0.448206,0.15996327,0.69008553,-0.095300674,-0.76550007,0.01945877,0.028504696,-0.24696541,-0.6123233,0.65758073,-0.029838314,0.79209805,0.11774345,0.08754054,0.14997645,-0.5287683,0.12200984,-0.26859453,-0.1292313,-0.77820575,0.14440733,735 +728,0.30094963,-0.26222074,-0.67121017,-0.22815846,-0.37706617,0.03356555,-0.33428904,0.35495436,0.06553112,-0.19558647,-0.34543756,-0.013276665,0.08773908,0.20471907,-0.21087824,-0.56726307,-0.18973678,0.1746712,-0.66281533,0.39990705,-0.6696069,0.22381398,-0.020379672,0.37126988,0.17490402,0.3832445,0.22945626,-0.08336316,0.119793765,-0.0626438,0.038958304,0.3633867,-0.5441964,0.018129697,-0.1632089,-0.5410219,-0.003556944,-0.51033235,-0.1846305,-0.80184275,0.25377887,-1.1563743,0.4914149,-0.07479478,-0.24784888,0.05307353,0.28854674,0.27410316,-0.31051746,0.09305088,0.33494428,-0.03266286,-0.23108599,-0.16709386,-0.010277712,-0.32757264,-0.5161497,-0.007768053,-0.52782065,-0.28893253,-0.28982404,0.2395258,-0.3715824,0.05155135,-0.22933014,0.14786871,-0.530784,-0.14224914,0.19632575,-0.10811308,0.3095048,-0.6628942,0.008844774,-0.1169701,0.49640143,-0.1386903,-0.2702532,0.2299214,0.40181985,0.3381096,0.13092202,-0.24413037,-0.20671035,-0.06524694,0.11605585,0.45669466,-0.24280919,-0.3304647,-0.2283806,-0.017533816,0.54210544,0.45813942,-0.032393955,-0.25523916,-0.035993896,-0.076696426,-0.21848756,0.5144534,0.5443194,-0.27664876,-0.32203102,0.40310404,0.48627567,0.3140101,-0.30130398,0.104141675,-0.048633274,-0.5788653,-0.12475676,0.046121,-0.02091775,0.55342454,-0.21684954,0.25886893,0.8777789,-0.08441499,0.19924746,0.032458305,-0.07595377,-0.29808414,-0.24893387,-0.18401195,0.15578064,-0.5919392,0.18610862,-0.1808466,0.5379127,0.06567263,-0.8154266,0.51243055,-0.5762711,0.08354013,-0.20355552,0.6004623,0.6554395,0.3603296,0.3338328,0.78684866,-0.23591012,0.11715747,-0.14737006,-0.45186013,0.08280725,-0.11630139,0.019133367,-0.5591507,0.13419388,-0.12042645,0.2065758,-0.06810656,0.55727255,-0.51103616,-0.072646074,0.23028043,0.41816857,-0.46310169,0.0053650737,0.7263936,1.0357602,0.991979,0.16534828,1.2292037,0.24249932,-0.06565248,0.15581325,-0.19124563,-0.7250914,0.11681255,0.4011863,-0.20310314,0.32353115,-0.02802467,-0.024417518,0.41327065,-0.32509705,-0.024418388,-0.19065541,0.30682883,0.16990614,-0.092948325,-0.39155334,-0.16695823,0.11607682,0.084053084,0.1539424,0.22884831,-0.18712555,0.09364339,0.06664442,1.2752503,-0.1460632,0.06794368,0.15493491,0.60177433,0.32271412,-0.16781534,0.05183991,0.3675637,0.4585294,-0.08416783,-0.70767,0.24613902,-0.17863056,-0.4711804,-0.057248946,-0.3822788,-0.25993288,0.092513785,-0.5372127,-0.17873038,-0.03271853,-0.337908,0.47860637,-2.6715074,-0.2690001,-0.1347097,0.35030115,-0.19133155,-0.30989167,-0.17479095,-0.5878539,0.40931982,0.30431396,0.37961584,-0.60716635,0.59373367,0.5719382,-0.64336216,-0.14126766,-0.8100818,-0.047230165,-0.04796923,0.35715148,0.068963416,-0.17873207,-0.10730649,0.20933107,0.6737357,-0.017212097,0.16432141,0.43483543,0.42095187,0.20710792,0.6503671,0.032695897,0.5517641,-0.23651713,-0.20488605,0.36372072,-0.26834723,0.345957,-0.2723362,0.06633879,0.48182693,-0.53662133,-1.0550691,-0.6327868,-0.4438348,1.1858264,-0.2882586,-0.44416997,0.18468116,-0.22655402,-0.097588226,0.038372852,0.59597063,-0.16217476,0.013435919,-0.7914809,0.04401448,-0.18164809,0.09817325,0.1076456,0.0541203,-0.44351065,0.64381284,-0.009637292,0.7103045,0.20065475,0.1064848,-0.14381617,-0.3495383,0.08114966,0.6721283,0.3670239,-0.06112459,-0.16521941,-0.20253843,-0.1586658,-0.109685495,0.06166423,0.49966466,0.7360598,0.0014304771,0.2104889,0.23881868,-0.0063750446,0.08890955,-0.31236318,-0.15155122,-0.09726724,0.09650283,0.4437424,0.67598855,-0.1006207,0.32783434,-0.26860362,0.24271114,-0.0959967,-0.5949372,0.62634075,0.51138246,-0.094390765,-0.037326165,0.49058825,0.6544951,-0.32010645,0.5424954,-0.67467946,-0.18969157,0.67525494,-0.15156493,-0.4499586,0.103300944,-0.31040332,0.12863488,-0.67432874,0.3205956,-0.4152528,-0.33529583,-0.31556848,-0.19544496,-3.1648114,0.27587444,-0.15580353,-0.11475761,-0.34247133,-0.25752208,0.542873,-0.6335406,-0.71628386,0.13905522,0.12863128,0.62701476,-0.079178296,0.10398579,-0.32859707,-0.14956376,-0.07446658,0.24177739,0.08547911,0.2867064,-0.12414701,-0.36283273,-0.084864154,-0.0773183,-0.5348371,0.09542114,-0.5206226,-0.4239518,0.024620024,-0.44564915,-0.119230695,0.47786653,-0.33177856,0.03902779,-0.20918854,0.07608645,-0.2572109,0.30017975,0.0642207,0.16752397,0.15331222,-0.029584328,0.088577546,-0.23696652,0.54142773,-0.078095146,0.22407283,0.019580098,-0.08617938,0.12835443,0.46272293,0.66412663,-0.2712734,1.2965463,0.36871448,-0.07602861,0.2378101,-0.26201078,-0.2682673,-0.6567142,-0.2779826,-0.16816638,-0.48408478,-0.5139641,0.07665749,-0.2722533,-0.8648358,0.76699287,0.021232843,0.24562131,-0.015486887,0.24966685,0.37050793,-0.16575827,0.10969984,-0.16977333,-0.113508,-0.5605578,-0.27979535,-0.713215,-0.44960243,-0.13952221,0.9025117,-0.29631165,0.023253312,-0.12365723,-0.2404616,-0.058980126,0.0779066,0.041776456,0.36729538,0.43266127,-0.006212913,-0.70457894,0.3002501,0.036949936,-0.16847602,-0.41628516,0.0070198956,0.7200105,-0.69282585,0.5294763,0.46010238,0.051868882,0.05460717,-0.74168885,-0.25369903,-0.0686528,-0.26645935,0.6027644,0.30281448,-0.9308492,0.6249619,0.4227284,-0.34295863,-0.83165646,0.60545564,-0.055005986,-0.11608613,-0.19594209,0.21843235,0.07933792,-0.06965113,-0.23102914,0.24753079,-0.3499312,0.3452164,0.14729425,-0.10164636,0.44322395,-0.17950381,-0.23148154,-0.79019505,0.027405115,-0.5342535,-0.24544086,0.2456322,-0.14469692,-0.14594488,0.27605942,0.076187685,0.41157183,-0.40569815,0.10386087,-0.007824288,-0.30438974,0.050529625,0.47701105,0.3912382,-0.32327688,0.5460875,0.08769998,-0.15781333,-0.008615416,0.007266141,0.36936614,0.0016693748,0.4143781,-0.20559162,-0.20928845,0.3870742,0.8519959,0.188958,0.5036841,-0.07420687,-0.12712501,0.31805867,0.03066745,0.26054975,-0.029597832,-0.44336334,0.02067075,-0.09405967,0.20356049,0.5064194,0.18325934,0.29356375,-0.073847756,-0.13332216,0.0015274241,0.27413386,0.0019419744,-1.0488135,0.5066343,0.32405132,0.78575337,0.60732627,0.039812163,-0.047290437,0.5832541,-0.3942249,0.14863874,0.54361016,0.0777563,-0.54172987,0.5974921,-0.55342716,0.28587836,-0.21255453,-0.039820984,0.1544264,0.17083277,0.26233575,0.8160535,-0.100649476,0.1545736,0.02684048,-0.1340731,0.108542964,-0.2902395,-0.17658183,-0.33988577,-0.2935122,0.84666437,0.49312624,0.44846958,-0.14209302,-0.088122286,0.004167098,-0.24210742,0.11757425,-0.0008822359,0.050170634,0.05752148,-0.47538307,-0.16717781,0.53874075,0.37078905,0.1148036,-0.2980568,-0.522201,0.2413778,-0.30891842,0.08440844,-0.04314186,-0.67152625,-0.039305013,-0.3001743,-0.50888026,0.43167737,-0.07802833,0.07228691,0.26054174,-0.063505605,-0.0018641949,0.10339904,0.02367994,0.71559787,-0.016281256,-0.10419553,-0.2761586,0.024831388,0.30511886,-0.28646758,-0.06515071,-0.38686758,0.13550319,-0.5770975,0.62291324,-0.104544625,-0.38766354,0.24551743,-0.19983785,-0.16867265,0.5908501,-0.083826974,-0.17223555,0.07384082,-0.15529846,-0.40518263,-0.049596198,-0.37647322,0.08033809,0.16498111,0.05695299,-0.21188134,-0.16402355,-0.11037542,0.6073403,0.13111484,0.46098855,0.32486355,0.028065791,-0.35000247,0.052783497,0.14150514,0.5943156,-0.029736198,0.0035006541,-0.32432097,-0.42261785,-0.12991042,0.27938712,-0.0081658345,0.17284076,0.058825575,-0.15631191,0.84805816,0.11826011,1.0830327,0.048022285,-0.36805943,0.088261716,0.549633,-0.084708095,-0.07239871,-0.39099157,0.82672024,0.512085,-0.14342448,-0.04403868,-0.36547136,-0.23429057,0.34552768,-0.3295236,-0.014669051,-0.07497525,-0.71148807,-0.44793823,0.22855714,0.21487276,0.046194825,-0.042485774,0.0690934,-0.02159172,0.1878627,0.40393013,-0.6841662,-0.34620827,0.15669645,0.26133215,-0.20775042,0.14793459,-0.47163773,0.4580382,-0.62118185,0.04950241,-0.58682525,0.13106802,-0.22843385,-0.36392447,0.032192286,0.03127049,0.36606342,-0.11864647,-0.45453766,0.020884844,0.26899672,-0.040022884,0.3200838,0.4897838,-0.27554145,0.13164315,-0.00026830344,0.64006627,1.1267953,-0.25112584,-0.021812009,0.4690881,-0.44319832,-0.60371804,0.20536079,-0.4770057,-0.1155536,-0.013547132,-0.38289532,-0.28750736,0.24453983,0.24608418,0.072234675,0.028994871,-0.6587715,-0.18277623,0.36846274,-0.19452792,-0.18925801,-0.22837189,0.36114758,0.8601595,-0.4726322,-0.3065793,-0.0147989895,0.35591096,-0.23841998,-0.548582,0.09460208,-0.2241661,0.50975734,0.13597257,-0.35380203,0.026550008,0.088489786,-0.45760366,0.07012628,0.33298463,-0.26518834,0.08154419,-0.45397267,0.1639644,0.9635316,-0.22812122,-0.08597231,-0.4861748,-0.47771516,-0.9043651,-0.30939755,0.09415216,0.19904248,0.11614697,-0.46773052,0.21448098,-0.17428207,-0.23531479,0.05642896,-0.34422314,0.5018415,0.13279022,0.64199245,-0.30216473,-0.80083615,0.12673004,0.19296111,-0.12239114,-0.5107024,0.8029282,-0.14956507,0.90703094,0.12497949,-0.1839834,-0.19697335,-0.41904914,0.20718424,-0.4194973,0.03067149,-0.9212483,0.09336236,739 +729,0.5696865,-0.2069855,-0.55112034,-0.21149144,-0.42337063,-0.0766197,-0.11709587,0.42077082,0.36073413,-0.20158297,-0.3076707,0.063227914,0.08119873,0.37435108,-0.039471373,-0.8875367,-0.026566116,0.25420317,-0.66976106,0.54190606,-0.44487906,0.5175234,0.03739901,0.18870145,0.03931683,0.2911579,0.17475322,-0.093918435,0.08689998,0.029996442,-0.14111637,0.28773987,-0.7661893,0.33253935,-0.20723218,-0.4217052,-0.030813249,-0.35311365,-0.11960673,-0.6116453,-0.14722334,-0.7684024,0.6757855,-0.05885722,-0.28875127,-0.30698398,0.101723716,0.26679733,-0.3519734,0.22564353,0.27042574,-0.1549642,-0.22855559,-0.25679594,0.041621998,-0.73656046,-0.40762642,-0.16416304,-0.69199884,-0.1672534,-0.07384474,0.13414827,-0.34204024,-0.024352971,-0.061534368,0.16674429,-0.42193344,0.0048640827,0.41030917,-0.16118607,0.13845456,-0.4166158,0.02539107,-0.14429735,0.48136535,-0.06878508,-0.40896142,0.33739567,0.3998397,0.4773657,0.35378858,-0.38494205,-0.13702407,-0.12595896,0.06108158,0.42865035,-0.22290626,-0.3410786,-0.2855968,0.1283687,0.48965344,0.33587787,0.09630777,-0.14140782,-0.13650289,-0.08994064,0.11280731,0.2545616,0.45895293,-0.24519898,-0.3378414,0.3025813,0.574478,0.33195448,-0.097841136,0.20811036,0.03764604,-0.5270094,-0.21140875,-0.112792894,-0.0946381,0.5480535,-0.08990962,0.046632767,0.9473474,-0.16547777,-0.06158736,0.17275293,-0.066024594,-0.21556714,-0.2228805,-0.12526648,0.28596938,-0.73038864,0.018251158,-0.33324736,0.59536594,0.26073998,-0.70082504,0.37570164,-0.62288064,0.1267733,-0.07238803,0.6864556,0.82618654,0.62319064,0.23358239,0.71671385,-0.23886193,0.2370994,0.020376233,-0.38888747,0.24838671,-0.24381964,-0.14490724,-0.5771654,0.14704631,-0.05444583,-0.10410835,0.11320967,0.5171516,-0.6318459,-0.230325,0.27515206,0.6055785,-0.3365822,-0.19899948,0.7587575,0.9955378,0.9382815,0.05930466,1.3968283,0.38598138,-0.2548799,0.12949872,-0.12460453,-0.6670964,0.068662375,0.3202117,-0.52072495,0.65176404,0.00316464,-0.08025449,0.3241696,-0.37186685,-0.027990596,0.14941359,0.42063951,-0.2277747,-0.31440324,-0.5496945,-0.11951769,-0.14539686,0.0086598145,0.0020457138,0.48479408,-0.18557183,0.3737066,0.11750353,1.3189352,-0.07295471,-0.057089206,-0.034481056,0.29652295,0.3292796,-0.2531877,-0.116567865,0.44953978,0.36935857,-0.051607825,-0.5662798,0.17614831,-0.35098097,-0.46945497,-0.2185657,-0.3131698,-0.13826455,-0.025859952,-0.28647953,-0.20402035,-0.11150625,-0.23749977,0.5003147,-2.3552108,-0.27622825,-0.058724973,0.44639567,-0.29232603,-0.18744287,-0.16669147,-0.5455167,0.0630837,0.1892223,0.45951027,-0.7761845,0.52159774,0.54669875,-0.6387304,-0.2077918,-0.77340627,0.12582439,-0.052804615,0.46430352,-0.057171524,-0.18254958,-0.02435344,0.15416387,0.5687399,-0.002515559,0.1960226,0.4410175,0.42685083,0.12603125,0.41497824,-0.060773734,0.71325266,-0.26488388,-0.15987752,0.30751193,-0.19871685,0.4171661,-0.058327682,0.041435283,0.49513948,-0.5493091,-0.9891001,-0.63759434,-0.23932296,0.93037677,-0.41031855,-0.25926536,0.1827214,-0.19468322,-0.12595548,0.0651463,0.4540406,-0.06007294,0.23750831,-0.6705056,-0.08377552,0.015648732,0.07395603,-0.025243584,0.023690151,-0.32796907,0.79791063,-0.1359256,0.6373122,0.2895908,0.2784716,-0.08080302,-0.43783486,0.07260113,0.7849979,0.46004808,0.059988625,-0.1433816,-0.22720931,-0.28235295,-0.04586238,0.03793512,0.6741593,0.8607558,-0.15151985,0.0071141412,0.30192173,0.102622345,0.1838151,-0.14886051,-0.1189013,-0.06699031,0.21004327,0.3239085,0.93481433,-0.34674644,0.45269495,-0.1843393,0.40328577,-0.005990817,-0.6803304,0.61418366,0.7714287,-0.19880359,-0.019476043,0.5699427,0.35223535,-0.24895668,0.5343177,-0.67895544,-0.20240852,0.66746765,-0.13276969,-0.40041643,0.32702425,-0.26297525,0.30585247,-1.0424526,0.47210822,-0.33890778,-0.60067135,-0.47816765,-0.056400232,-3.005035,0.33106655,-0.20543535,0.035596773,-0.2526008,-0.07069396,0.43221045,-0.99273044,-0.74858326,0.16580415,0.18800828,0.6393782,-0.15098101,0.14262359,-0.23630427,-0.59952956,-0.11766322,0.24733016,0.013193598,0.25823057,-0.21906275,-0.4733634,-0.15751587,0.0611002,-0.44837093,0.153024,-0.5994845,-0.48281166,-0.08544976,-0.64989114,-0.102628,0.60873157,-0.4142515,-0.025007706,-0.13935901,0.041399583,-0.33944905,0.0770328,0.010801543,0.09591883,0.14756086,0.006713434,0.047903106,-0.25700516,0.38747132,-0.016461818,0.5423377,0.097104035,-0.31512716,0.12422998,0.63827175,0.5812508,-0.239417,0.9967797,0.3435264,-0.14392778,0.29802144,-0.18703185,-0.34981456,-0.743959,-0.4731299,-0.22723722,-0.56093514,-0.54763836,0.11853207,-0.34048393,-1.0088083,0.6202707,-0.034574773,0.4056622,-0.12748513,0.2745969,0.55932796,-0.2294726,-0.012308089,-0.18763274,-0.2379121,-0.5367943,-0.26625365,-0.6345238,-0.6509501,0.26109326,1.2493789,-0.41449302,0.18196991,-0.028626623,-0.0996027,0.11080097,0.039368566,0.07335938,0.13533613,0.45542637,-0.06965435,-0.58302057,0.34650186,-0.18301457,-0.15846553,-0.42133707,0.13709368,0.59506786,-0.9240811,0.565463,0.35655925,-0.02569695,0.26075587,-0.78374606,-0.08261152,-0.041393492,-0.1964173,0.43336704,0.29181,-0.71084285,0.41333124,0.37298945,-0.5914092,-0.6648118,0.35947788,-0.09229922,-0.18059331,-0.091778666,0.36550236,0.15398349,-0.14202751,-0.256374,0.35332835,-0.4489198,0.2037347,0.20697007,-0.19912902,0.20197098,-0.010375812,-0.35596198,-0.9267285,0.17635132,-0.4394258,-0.28562242,0.27513212,-0.011845978,-0.03724942,0.14526588,0.29480812,0.44571275,-0.58401,0.11701668,0.060914986,-0.5902739,0.4010321,0.5287065,0.4312452,-0.26565042,0.46929044,0.20200482,-0.14280623,-0.04108572,0.03608911,0.40947965,0.046027504,0.43231556,0.0035887407,-0.1716891,0.37882137,0.89927673,0.061729554,0.35348478,0.0696087,-0.07499977,0.26284623,0.12418553,0.30251104,0.0931867,-0.41980523,0.018927088,0.0518687,0.24555095,0.5770853,0.47582918,0.31634977,0.012741639,-0.12111077,0.17417838,0.20920914,0.11463681,-1.3470674,0.38140014,0.26695168,0.78282887,0.41821682,0.2829787,-0.18449894,0.39377677,-0.29188687,0.17217548,0.4146876,-0.077400714,-0.435538,0.7495619,-0.60587543,0.37705415,-0.17695038,-0.06791038,0.28890646,-0.008420481,0.39454016,0.9774599,-0.10044468,0.027042232,-0.09897652,-0.07328617,-0.029397221,-0.36134398,-0.03441841,-0.5320394,-0.24499318,0.95712674,0.39529765,0.35615075,-0.26174054,-0.070853546,0.085785426,-0.27017382,0.33489954,-0.13427149,0.120643534,0.045732655,-0.41408622,-0.20360534,0.53416324,-0.07108804,0.06924125,-0.31628388,-0.3624676,0.048380595,-0.20208976,0.14287224,0.027772363,-0.8439437,0.09001201,-0.5434481,-0.5727268,0.6012445,-0.096377425,0.036458276,0.2219772,-0.017086228,-0.14319307,0.2868857,0.060214676,0.8085006,0.054971304,-0.28046092,-0.35089114,0.35094145,0.34178102,-0.4072933,0.12175115,-0.42678452,0.27579132,-0.5974236,0.61445415,-0.0002784087,-0.35058883,0.1019021,-0.19323975,-0.07990478,0.4822892,-0.19141378,-0.25147384,0.11548673,-0.13366023,-0.49833775,-0.12422236,-0.34121898,0.21116343,0.17809698,-0.13352199,-0.08375224,-0.16524711,0.010528592,0.29687926,0.056246288,0.3699562,0.36985812,-0.1532179,-0.1391605,0.16533202,0.2950594,0.3492063,0.06981658,0.047053773,-0.569878,-0.33999908,-0.4098509,-0.032248404,-0.2293145,0.2844292,0.00028409177,-0.13360353,1.0334008,0.10795701,1.2734203,-0.021404313,-0.48072174,0.09986369,0.64003175,-0.13003637,-0.17872073,-0.47079355,1.2357908,0.6938699,-0.17246646,0.0033046375,-0.40862572,-0.29379278,0.37480405,-0.43039668,-0.20047572,0.109541826,-0.6100308,-0.3191732,0.26055625,0.13007256,0.008782299,-0.010083766,-0.0064697172,0.072338,0.04282707,0.21775325,-0.70085657,-0.24290179,0.092027776,0.37266123,-0.073547624,0.21093303,-0.3663407,0.39475724,-0.8011787,0.15414777,-0.49023598,0.18295905,-0.28768164,-0.57190394,0.14270924,0.12957807,0.212553,-0.3153507,-0.37649786,-0.08284791,0.4564699,-0.16642052,0.14491084,0.6960631,-0.35794383,-0.09702645,0.082698226,0.54724085,1.2935905,-0.27629995,-0.112767644,0.3318861,-0.5494927,-0.6097449,0.38182232,-0.46192935,-0.04463828,-0.2447696,-0.5293926,-0.62685925,0.2666834,0.18161097,0.22385424,0.19923164,-0.6932794,0.13439561,0.16703026,-0.41113853,-0.19738935,-0.1794454,0.3893811,0.9133216,-0.43232712,-0.44032237,0.061265595,0.174644,-0.20946282,-0.63274866,-0.13762559,-0.13371307,0.35688788,0.09857046,-0.26359898,-0.012577082,0.06654636,-0.3185476,0.10731798,0.39386448,-0.28067842,0.2405766,-0.3910178,0.006509439,0.9091116,-0.062278632,-0.11796535,-0.6034985,-0.5535945,-0.8629065,-0.59470993,0.032922648,0.34054375,0.08240864,-0.4851671,0.22610842,-0.09145541,-0.12845768,0.0930669,-0.36163378,0.48492196,0.237983,0.47544834,-0.31201342,-1.1181757,0.24164644,0.27759016,-0.13793764,-0.7699799,0.6318824,-0.2608561,1.0039614,0.12090878,-0.15175436,0.101112515,-0.59612215,0.22521186,-0.32053953,0.19889832,-0.69937956,-0.11086547,741 +730,0.34502682,-0.18893312,-0.43987247,-0.14202176,-0.29719287,-0.11495774,-0.108938105,0.29419956,0.3513989,-0.27198493,-0.33299538,-0.23775594,0.038002256,0.44007668,0.03004075,-0.83969116,0.056065354,0.29896978,-0.88524145,0.4972363,-0.5849229,0.3492544,0.32955104,0.25930893,0.06651393,0.40279356,0.25427365,-0.19964185,0.073150046,-0.061250273,-0.14061886,0.09547751,-0.65105444,0.12643637,-0.25662342,-0.30297232,0.06994205,-0.44809297,-0.22750837,-0.84395635,0.12435722,-1.017946,0.45601347,0.15693149,-0.18623263,-0.23949443,0.3492057,0.42454073,-0.4967724,-0.026285747,0.30260855,-0.40889332,-0.33351782,-0.42184147,0.08853997,-0.30418342,-0.6135091,0.06478633,-0.42643154,-0.2257031,-0.28833395,0.24113451,-0.41733298,0.02870191,-0.17960007,0.31850946,-0.35801652,0.1196546,0.41740197,-0.28289688,0.021372356,-0.49490628,-0.08488078,-0.14656748,0.56587136,-0.03930799,-0.33611032,0.4976107,0.37534556,0.61225045,0.37819785,-0.53047186,-0.11100424,-0.15680638,0.20669033,0.53117824,-0.2003734,-0.25628906,-0.07841523,0.07123555,0.36482093,0.47913587,0.045940023,-0.21672262,-0.16253108,-0.12838349,-0.081226975,0.26645538,0.54714346,-0.37181532,-0.47468802,0.26469252,0.55817044,0.11275812,-0.11156233,-0.14485613,-0.0040101456,-0.6577447,-0.17749563,0.05649685,-0.18691875,0.522755,-0.19295454,-0.044972144,0.9917538,-0.18694633,-0.10716271,0.055177514,-0.0078083645,-0.15918277,-0.3796193,-0.17217591,0.37684214,-0.5720271,0.025375733,-0.40492913,0.84709126,0.22005889,-0.72250134,0.34552786,-0.6587025,0.2984099,-0.04243072,0.7187005,0.7534354,0.42554376,0.57311183,0.8717886,-0.38305393,0.22329624,-0.02385696,-0.39194828,0.14048925,-0.33660376,0.32637292,-0.51423746,0.06468446,-0.2454662,0.059506793,0.09349025,0.45990497,-0.6685832,-0.10276531,0.21206562,0.67834365,-0.28838906,-0.10761947,0.6700605,0.9346203,0.97314477,0.014139111,1.3722014,0.4118427,-0.29415178,0.27488083,-0.29296127,-0.8192009,0.10244885,0.36773872,0.061814368,0.095337085,0.037159126,-0.02963178,0.45650366,-0.5306283,0.09227362,-0.06967513,0.26146248,0.020657154,-0.14870372,-0.2873909,-0.33592713,-0.11183376,-0.2500606,0.22428502,0.33847257,-0.26843506,0.22606048,-0.19688764,1.4580079,0.05770052,0.076002665,0.16912204,0.44964832,0.20215978,-0.17108813,-0.17880152,0.29751128,0.37480247,-0.08195953,-0.5044645,0.14895439,-0.47156766,-0.48143375,-0.2129433,-0.36290386,-0.07496999,0.14005814,-0.4268564,-0.28498414,-0.14381202,-0.3614807,0.5796376,-2.4261947,-0.3274215,-0.15914701,0.37270817,-0.32899746,-0.2029701,-0.25510642,-0.59937865,0.34001943,0.12861617,0.4847671,-0.70026267,0.45684382,0.46616328,-0.67682683,-0.3406517,-0.8239906,0.019958781,-0.10829335,0.37152004,0.09602455,-0.22460556,-0.20624688,-0.109693676,0.77163476,0.03134169,0.088397376,0.7186823,0.38759264,0.12301838,0.5727328,0.056110024,0.72741735,-0.47092703,-0.2792958,0.47402197,-0.39893314,0.54925287,-0.1250152,-0.048535507,0.6032443,-0.5046893,-0.98394686,-0.6673371,-0.4521166,0.9515384,-0.39864486,-0.3699005,0.19913235,-0.2210934,0.032300647,0.071283236,0.7783674,-0.037546735,0.2056698,-0.6240555,0.12988052,-0.007797457,0.23019892,0.043242656,-0.06342356,-0.33743298,0.7764348,-0.0806083,0.56093985,0.27900997,0.2087298,-0.23697218,-0.2685966,0.17651083,0.7512485,0.23949903,-0.14610602,-0.06551433,-0.40862542,-0.18203704,-0.55146414,0.0018751415,0.6772096,0.76897776,-0.24823347,0.07856279,0.37949392,-0.069355264,0.008575748,-0.07760095,-0.25790736,-0.07212848,0.16066901,0.5174466,0.95054847,-0.11826154,0.5308537,-0.18686983,0.5123302,0.10895967,-0.57606035,0.5670884,0.7384215,-0.06260658,0.079566665,0.53874356,0.43322638,-0.33780527,0.5885151,-0.59546065,-0.3822387,0.57397646,-0.13528243,-0.37010348,0.029371358,-0.31233647,0.1475129,-0.7092962,0.44660342,-0.37017542,-0.41211158,-0.40767926,-0.09860221,-2.9080114,0.32411474,-0.2937112,0.14506803,-0.20232901,0.13716401,0.17681453,-0.67077416,-0.44490072,0.104341336,0.3503407,0.7613094,-0.049828596,0.22274327,-0.2582886,-0.31755635,-0.14970496,0.2432033,0.04971791,0.34296507,-0.26648137,-0.32548845,0.03311462,0.0864751,-0.35441625,0.18743178,-0.79520416,-0.5572505,-0.18776105,-0.6007617,-0.35694832,0.70578945,-0.52749336,0.040798876,-0.24591842,0.035498213,-0.13178712,0.14387184,0.14240701,0.2130096,0.14734112,-0.075004086,0.03681507,-0.3437124,0.5899854,-0.043087184,0.5798986,0.22659001,0.06993261,0.20304023,0.43315843,0.6712039,-0.31380478,1.0246279,0.49240458,-0.038755205,0.12379173,-0.21164244,-0.29360443,-0.6031652,-0.3508566,-0.069687374,-0.48410255,-0.3853957,0.18246597,-0.20863335,-0.9488674,0.65874195,0.04276605,0.15002123,0.024210969,0.19860102,0.45773727,-0.17716518,-0.07540106,-0.19293918,-0.1495696,-0.6123401,-0.33275458,-0.6172259,-0.53992563,0.16108924,0.98323303,-0.39933544,-0.024287483,-0.06904822,-0.3656677,-0.091981344,0.18587978,-0.002328373,0.2572514,0.6809531,0.054081935,-0.68077314,0.46200722,-0.07049591,-0.020964704,-0.59472805,0.253174,0.5682235,-0.8914271,0.749841,0.3158852,0.026847899,0.12670125,-0.5816713,-0.33412403,-0.013226724,-0.17677172,0.23096976,0.15889443,-0.7531564,0.4319221,0.27689335,-0.60707766,-0.7993721,0.19000679,-0.11482675,-0.28468984,-0.016553957,0.33960116,0.08351116,-0.026702337,-0.20676853,0.23453243,-0.45085254,0.3153579,0.17520006,-0.056234602,0.024122348,-0.23336986,-0.36668223,-0.7822526,0.061880056,-0.5074161,-0.2938877,0.2796766,0.08525871,-0.14452045,0.30948612,0.33337766,0.261924,-0.41507313,0.2058374,-0.13977933,-0.5096782,0.17345475,0.38516405,0.37967485,-0.52811766,0.50022054,0.12010033,-0.18518694,0.10147843,-0.016373795,0.5023847,0.025106367,0.33121315,-0.2879063,-0.16562994,0.3209624,0.85510445,0.015410338,0.3441559,0.11502246,-0.021019045,0.3939486,-0.011909585,0.050369345,-0.07126354,-0.63586164,0.103427045,-0.046613462,0.17079602,0.52670836,0.40160003,0.3608169,0.18060622,-0.2529469,-0.03274123,0.21093258,0.030720124,-1.0080702,0.41452205,0.2441462,0.89849186,0.4172041,0.039464228,-0.27070343,0.8282082,-0.2521335,0.0915575,0.36893767,-0.33075765,-0.465706,0.78313476,-0.7329125,0.49103644,-0.11921176,-0.05542066,0.18386817,0.24604566,0.26878718,0.79187334,-0.39404202,0.060599055,0.0033027898,-0.17647995,-0.128788,-0.3649839,-0.015820393,-0.50376534,-0.5345699,0.94122404,0.36720392,0.5043429,-0.050190527,0.06276858,0.11134667,-0.25932166,0.2955201,-0.1033197,0.02446452,0.23607199,-0.45313752,0.038262963,0.6148117,-0.097873725,0.30814904,-0.08728131,-0.18235534,0.050446637,-0.47484714,-0.1674494,-0.17935467,-0.71717113,0.12379413,-0.2834954,-0.49520558,0.5478501,-0.19357857,0.25270143,0.37376964,0.036712352,-0.10700572,0.642418,0.067061536,0.92232597,-0.08381055,-0.3214916,-0.22014236,0.23677275,0.13377255,-0.29059118,0.2761122,-0.4081909,0.1499286,-0.63525707,0.6893832,-0.14919887,-0.519708,0.13253309,-0.33755413,-0.117796496,0.58310324,-0.20060469,-0.15993111,0.086894035,-0.33484146,-0.31205398,0.018122613,-0.249095,0.27607992,0.2352929,-0.006418393,-0.24702527,-0.40871614,-0.09035762,0.37707484,-0.039402664,0.2896554,0.056573026,0.034992807,-0.002602967,0.24786586,0.3268633,0.45566174,0.20862262,-0.0854366,-0.41792676,-0.21781562,-0.3982547,0.16156618,-0.060623493,0.32707694,0.041619148,-0.16157153,0.94337493,0.027984528,1.1889958,0.10169497,-0.314722,0.0055006226,0.5802977,-0.05236061,-0.02530251,-0.2745438,0.8841113,0.62019,0.01861764,0.010462981,-0.50991064,-0.116924286,0.45906898,-0.34975317,-0.06228725,0.05940517,-0.5795667,-0.46352684,0.18598613,0.18184862,0.1655584,-0.16770475,0.038470037,-0.028508846,0.13494653,0.3116744,-0.70880824,-0.33914587,0.19605376,0.34760535,-0.23858291,0.17600456,-0.40636823,0.5108512,-0.8046967,0.360627,-0.44096437,0.058631614,-0.26509726,-0.3037961,0.22874378,0.039829846,0.47662428,-0.4090994,-0.33463958,-0.050092217,0.44091007,0.1734778,0.19504346,0.78692156,-0.3592434,-0.13520017,0.08846637,0.60418594,1.2460867,-0.5191488,-0.007274554,0.2715517,-0.4472005,-0.66285217,0.6246096,-0.2995051,-0.18863136,-0.18701212,-0.56793565,-0.39715713,0.17781767,0.19391401,0.04206826,0.11024552,-0.64333415,-0.045691315,0.23859732,-0.31009886,-0.31834024,-0.32375064,0.46866274,0.8994503,-0.16091593,-0.39740583,0.27567628,0.1541764,-0.31893027,-0.38828436,-0.0014069447,-0.35361913,0.29937518,0.076840945,-0.27470595,-0.08405173,0.15611991,-0.5297341,0.10190062,0.27267486,-0.33650395,0.18461162,-0.15824138,0.048662305,0.9834684,-0.17201318,0.122651175,-0.5104058,-0.4394298,-0.82772636,-0.44945642,0.45060506,0.11850032,-0.1304519,-0.33064657,-0.04525433,-0.005346048,-0.26185122,0.11012379,-0.5740005,0.33473852,0.09496359,0.3645536,-0.34332693,-1.0590961,0.033078123,0.08963383,-0.18035883,-0.617974,0.3944303,-0.23636927,1.0449895,0.103899516,-0.2581244,0.031707194,-0.3849281,0.21126571,-0.32942963,-0.11773689,-0.6955938,-0.071450785,743 +731,0.60195154,-0.098461814,-0.6120564,-0.15019117,-0.19651511,0.0903313,-0.08543165,0.6298993,0.39579803,-0.40574753,-0.14859405,-0.14194955,0.08136304,0.053311888,-0.1627207,-0.59347045,0.07315384,0.26426938,-0.6082197,0.69891983,-0.29613978,0.34810355,-0.06607047,0.41855258,0.339666,0.2433316,-0.24677137,0.09360222,-0.3132186,-0.071511015,0.054936226,0.36138168,-0.51888084,0.06482893,-0.28406513,-0.19663492,-0.23667988,-0.43281043,-0.50438267,-0.82712704,0.16339518,-0.9763572,0.73093855,0.07165704,-0.33006254,0.03935896,0.30192003,0.18642198,-0.16392651,-0.03947017,0.15476848,-0.014446231,-0.102723725,-0.1583258,-0.31956023,-0.42833444,-0.52796555,0.07209025,-0.45644778,0.10627156,-0.19767848,0.23878813,-0.3662682,-0.13654655,-0.09477878,0.6905422,-0.2907116,0.314935,0.15252236,-0.04176466,0.29555702,-0.7032708,-0.3097647,-0.18223074,0.2140091,-0.17651765,-0.39288315,0.17254393,0.3885948,0.40302035,-0.012725282,-0.22338639,-0.2801738,0.10239796,0.051753584,0.33158973,-0.06936496,-0.44957477,-0.09838092,0.05395109,0.23134072,0.22635719,0.38860956,-0.31267947,-0.14592817,-0.17821842,-0.18253991,0.5215189,0.40477335,-0.18781868,-0.12831722,0.24848604,0.48520666,0.26047367,-0.16543058,0.16199687,0.002607318,-0.5881754,-0.03689353,0.19347245,-0.121538654,0.6217848,-0.23659192,0.019707501,0.6118623,-0.2718628,-0.2916971,0.416323,0.32168242,0.06891374,-0.35779402,-0.1802327,0.15581575,-0.45533335,0.043632645,-0.25424707,0.6595411,0.09130415,-0.6656174,0.059585653,-0.57828516,0.060309168,-0.07676225,0.47298628,0.77081954,0.42346463,0.17090115,0.63803416,-0.18025371,0.004045583,0.062909655,-0.25430068,-0.010574921,-0.25017542,0.10190383,-0.54688334,-0.07572006,-0.13097864,-0.27707317,0.1731108,0.56222194,-0.54558504,-0.33594972,0.13406779,0.76529634,-0.25748238,-0.29643345,0.89996433,0.95919514,0.839757,0.084355906,1.3466626,0.13804437,-0.20381814,0.15169755,-0.25036228,-0.77509433,0.39478207,0.03199172,-0.7635014,0.32152322,0.031336095,-0.124029726,0.19079755,-0.41164085,0.062508255,-0.23566273,0.33300176,-0.013221392,-0.16187403,-0.3803476,-0.38390192,-0.22159488,0.025871754,0.38570172,0.10355561,-0.2612348,0.4134895,0.04881082,1.3705714,-0.19019166,-0.14852327,-0.01867084,0.27543986,0.23292817,-0.25975662,-0.23004714,0.50520444,0.33278996,0.12589954,-0.52689993,0.13068733,-0.15718721,-0.26776853,-0.30115426,-0.3762849,0.00344027,-0.027502056,-0.4916008,-0.1895139,-0.27722237,-0.47716856,0.41954154,-2.5570345,-0.30701086,-0.09662156,0.43958429,-0.13905248,-0.38593322,-0.34917626,-0.4889723,0.25502986,0.1337387,0.48571098,-0.66141987,0.41549212,0.32268244,-0.60193324,-0.17308429,-0.7065982,-0.25835449,0.046141505,0.1360365,0.0026004757,0.09671196,0.055140093,0.10757889,0.39330605,-0.06333757,0.15012778,0.4566031,0.4529267,0.005873277,0.4322826,0.02313948,0.6915605,-0.17093737,-0.34034476,0.38946578,-0.40731966,0.26314318,0.093082935,-0.02314694,0.59257674,-0.42579067,-0.90804327,-0.63964945,0.01648442,1.1174928,-0.16262731,-0.33537653,0.17826721,-0.528892,-0.25981066,0.0962938,0.5537112,-0.1739267,-0.031009654,-0.933169,-0.16687177,0.008267084,0.27651635,-0.13669246,-0.0265405,-0.39672068,0.63463676,-0.07974381,0.44042698,0.30358908,0.2550099,-0.4312991,-0.59891355,0.052849844,1.1306858,0.34044626,0.12858365,-0.3911049,-0.17506878,-0.5855316,0.09888926,0.08696756,0.6887582,0.4536889,-0.11443727,0.26461273,0.27145115,-0.05363483,0.21552055,-0.07398576,-0.39225972,-0.29241878,0.15851921,0.50145185,0.64986163,-0.2942611,0.71923214,-0.20980476,0.33244604,-0.15273608,-0.5444186,0.5857505,1.2749915,-0.16150711,-0.42106077,0.73687863,0.39076313,-0.36485973,0.50684,-0.38439548,-0.36375916,0.35758626,-0.1190373,-0.26219872,0.39747843,-0.3591081,0.11049245,-1.1020317,0.25021788,-0.32135823,-0.52852,-0.51473355,0.030571938,-1.7343243,0.2051643,-0.1607283,-0.21724626,-0.19507502,-0.32594264,0.00036257965,-0.50781673,-0.6508923,0.12712668,0.13777983,0.60856664,-0.16828209,0.076445036,-0.051973086,-0.32613203,-0.17464899,0.13609932,0.26922953,0.42679685,-0.17564188,-0.39226356,-0.09404201,-0.12219989,-0.31679285,0.074031696,-0.7965785,-0.6127182,0.010644367,-0.7801391,-0.25090396,0.70344883,-0.2784128,-0.13387826,-0.21040395,0.078202836,0.24337228,0.31979626,-0.038764134,0.17780413,0.10498241,-0.1290938,0.034288432,-0.14077021,0.23075484,0.08435951,0.2751301,0.36083725,-0.073454194,0.4042174,0.45725563,0.67318225,-0.25413164,0.8577209,0.52708477,-0.053153,0.25277174,-0.14799634,-0.30492243,-0.45219502,-0.15286674,-0.1360101,-0.5785637,-0.31793576,-0.033366363,-0.37383208,-0.9351953,0.56508785,-0.10229667,0.05349825,-0.039242327,0.3360265,0.5501854,-0.0075288233,0.06996377,-0.17523599,-0.30234596,-0.50955427,-0.37636593,-0.48441586,-0.3878341,0.019414742,1.2161472,-0.35604388,0.18372495,0.07725851,-0.3581769,-0.0033535718,0.27556258,-0.100309245,0.09143608,0.7212241,-0.20669511,-0.4525646,0.19662215,-0.23251057,-0.14932677,-0.5300864,0.2631163,0.61905926,-0.59137905,0.76767695,0.25238025,0.0077673243,-0.33461383,-0.55716145,-0.17040612,0.070924565,-0.1509318,0.49095,0.34053606,-0.5589936,0.37155765,0.12619576,-0.21585158,-0.651529,0.5280503,-0.0947167,-0.29922712,-0.14348921,0.44990233,0.004338063,0.058582857,-0.27179083,0.22790667,-0.24250695,0.20840296,0.18345875,-0.21424752,0.08916409,-0.1959615,-0.08246316,-0.7819437,0.12990215,-0.44021225,-0.382427,0.20220569,0.17754142,0.09983303,0.23714049,0.21941134,0.280625,-0.42116892,0.015786223,-0.16265392,-0.24792764,0.21792112,0.29029095,0.5323837,-0.54665244,0.4867788,0.0062101106,-0.1996466,0.07471523,0.2855151,0.5377282,0.0135349315,0.29220825,0.25180715,-0.03764566,0.2577647,0.681141,0.023765666,0.3687093,0.064881906,0.013279887,0.04591888,-0.005243274,0.37596056,-0.14342152,-0.5159204,-0.05396619,-0.19478266,0.28531,0.45055503,0.17241003,0.3204912,0.0024522864,-0.6192697,-0.032319333,0.20381874,0.11225692,-1.5698981,0.24375758,0.2582724,0.9317666,0.34497026,-0.041859034,0.014604227,0.57498175,-0.14907722,0.096828304,0.29737514,-0.066340774,-0.4238493,0.47965607,-0.6974958,0.46184736,-0.07399085,0.0012265283,0.010212839,-0.0014234093,0.49167788,1.0066106,-0.20002726,0.04717431,0.12872921,-0.2729465,0.03319116,-0.46991268,0.15590352,-0.6298057,-0.18209933,0.71218777,0.57349575,0.24509643,-0.34476364,0.09177932,0.1609582,-0.19396909,0.16651258,0.081979044,0.094129674,-0.06662666,-0.7168135,-0.031102937,0.54724914,0.004195938,0.10178215,0.14747886,-0.024487926,0.21851614,-0.1091061,0.096721224,-0.17649935,-0.8202268,-0.25487202,-0.3962348,-0.39113334,0.36793363,-0.30142796,0.12185477,0.31042397,0.07216886,-0.26002762,0.6070314,0.28298458,0.8738794,-0.03301946,-0.058884904,-0.43903255,0.3632256,0.20583905,-0.12801994,-0.076677255,-0.2511458,0.16178626,-0.5720791,0.47320816,-0.08421198,-0.41779214,-0.15157345,-0.021522505,0.046021644,0.50902927,-0.19160435,-0.03521978,0.049771056,-0.22144222,-0.39910752,0.025603918,0.011064843,0.24829382,0.5059617,-0.3175948,-0.23388639,-0.07796569,-0.09675571,0.18418129,0.087662354,0.6071731,0.48750627,0.26227632,-0.20641604,-0.0037916256,0.4877912,0.685586,-0.090702586,-0.11115429,-0.3073034,-0.13792303,-0.35689545,0.3371042,-0.079186454,0.27453315,0.13119338,-0.16070963,0.8950028,0.20997474,1.3452672,-0.013127131,-0.46344388,0.11652761,0.46536165,-0.025196223,-0.07911352,-0.342656,1.0395982,0.42363212,-0.014196066,-0.14074956,-0.496908,0.01811292,0.041813593,-0.14509545,-0.1325474,-0.1453716,-0.55120504,-0.36178115,0.29809493,0.19728324,0.2101374,-0.09727531,0.22730407,0.3238614,-0.17242779,0.04573281,-0.57160944,-0.015081846,0.093569465,0.36138767,0.000113762915,0.19187358,-0.5063555,0.33988386,-0.59068376,0.051860396,0.015804114,0.28614205,-0.08774796,-0.3548067,0.13988294,-0.051555183,0.39661804,-0.60629904,-0.18979289,-0.40181106,0.59504455,0.09380247,-0.005304741,0.6484953,-0.27773076,0.1297411,0.1594476,0.46466225,1.0580466,-0.20602615,-0.06058791,0.3517259,-0.38982385,-0.7094437,0.33006734,-0.3405062,0.37156683,-0.2148285,-0.21857022,-0.63339496,0.3629483,0.11570842,0.15622209,-0.08723069,-0.43384907,-0.0891887,0.33712107,-0.24611782,-0.049575154,-0.24232425,0.011136679,0.47963715,-0.03415913,-0.45251825,0.14025718,0.1620622,-0.2359129,-0.5437346,-0.16526964,-0.36262947,0.25972006,-0.060221646,-0.27631438,-0.26246276,-0.0950589,-0.4515088,0.21335632,0.29566675,-0.23995283,0.13852312,-0.19608134,-0.26344818,0.9318896,-0.3347172,0.23722576,-0.36167362,-0.6206985,-0.6417911,-0.31115073,0.19352438,0.07292722,-0.16309491,-0.8134943,-0.07103538,-0.24655518,-0.32027933,0.09760376,-0.30739695,0.55228275,0.16984089,0.2209818,-0.2681978,-1.0334947,0.21873464,0.13703153,-0.23748685,-0.7748502,0.42961833,0.11626422,0.7432237,0.14386143,0.21209247,0.44622272,-0.44221908,-0.05656445,-0.14472707,-0.02732243,-0.6315888,-0.08151717,751 +732,0.36605385,-0.07047821,-0.4231753,-0.19114336,-0.34312704,0.31856316,-0.057599224,0.38753617,0.22529687,-0.47508067,-0.049141467,-0.16488677,-0.089361064,0.5145337,-0.22269095,-0.6534068,-0.1360067,0.071780205,-0.49916425,0.23202252,-0.6276538,0.3713338,0.122346945,0.38441557,-0.0070559797,0.22908054,0.21333951,-0.060046904,-0.019683229,-0.1403085,-0.26919606,0.13531162,-0.4422619,0.24745391,0.025167437,-0.3153729,-0.032587163,-0.43849242,-0.24122278,-0.6079085,0.5104258,-0.9316616,0.59404284,-0.13874239,-0.24240272,0.19476518,0.16111323,0.21932665,-0.33079892,-0.013438137,0.2661851,-0.09681901,-0.024009604,-0.16602021,-0.33890408,-0.4574084,-0.61927944,-0.030662814,-0.4371491,-0.10643533,-0.26809606,0.31332362,-0.21062733,0.22008477,-0.22941314,0.26991293,-0.3434753,-0.046343345,0.28037444,-0.2133974,0.12869605,-0.36187422,-0.17320994,-0.04176696,0.3025703,-0.019752942,-0.08994674,0.2869716,0.10052249,0.5719809,-0.07545031,-0.2238577,-0.24812691,-0.10115598,0.04388764,0.586808,0.016856786,-0.24964087,-0.2685182,-0.055742934,0.2646103,0.2997359,-0.008164967,-0.19196385,0.01603709,0.053476494,-0.3151632,0.30474615,0.35668835,-0.30943334,-0.36455742,0.4929332,0.43423626,-0.19575453,-0.12849054,0.096871786,0.07788114,-0.5666697,-0.3012047,0.1876227,-0.16873303,0.43654302,-0.13639343,0.25323245,0.80351883,-0.07382588,0.046652958,-0.2473694,-0.0109955985,-0.3278645,-0.28119028,-0.17750086,0.04870104,-0.32138887,0.069191806,-0.2928804,0.92022806,0.10244686,-0.737075,0.37512943,-0.5461436,0.044104233,-0.1155787,0.61853635,0.65702945,0.40172246,0.22122297,1.0062957,-0.6124111,0.08334002,-0.031320818,-0.35496384,0.0747926,-0.111474365,0.23826984,-0.4061592,0.022660967,0.25402895,-0.026727187,0.042151596,0.4898868,-0.40853596,-0.038419846,0.052120227,0.7214324,-0.39702708,-0.10015937,0.8179481,1.0209911,0.865133,0.04521248,1.2839679,0.27665016,-0.23783058,0.12787867,-0.3629468,-0.715043,0.20445892,0.34926274,-0.04687081,0.31967995,0.08099499,0.16385219,0.40742606,-0.36838472,0.081430785,-0.007932236,0.22747435,0.036217604,0.050245855,-0.39730486,-0.3370368,0.17927733,-0.055478495,0.39187363,0.29687068,-0.15823208,0.45419028,0.11685287,1.8981729,0.1400834,0.18197943,0.14876702,0.47275323,0.11017716,-0.051379602,-0.1884698,0.3248957,0.40585124,-0.16263543,-0.6198315,0.05889072,-0.20913242,-0.36312106,-0.119963065,-0.34508795,-0.20318127,-0.24357565,-0.32296214,-0.2359504,-0.10066162,-0.37748283,0.42740038,-2.5509667,-0.3298981,-0.20222344,0.27591583,-0.3855012,-0.36919257,-0.30784944,-0.605437,0.38222313,0.4002721,0.3723446,-0.61012673,0.47135147,0.41507524,-0.24766713,-0.18226074,-0.6458734,0.028737225,-0.03147816,0.19832039,0.0139535805,-0.10339337,-0.48415726,0.24693829,0.4048905,0.16551526,0.04139448,0.37956592,0.6281398,0.14195195,0.7261781,0.124527544,0.6137529,-0.38213328,-0.0019949009,0.4233508,-0.45984825,0.40881458,-0.02338735,0.08814885,0.46752408,-0.5004064,-0.73878413,-0.6637748,-0.45728686,1.1773326,-0.47154748,-0.23225667,0.16281027,-0.21846443,-0.405,0.0036605406,0.58710825,-0.1896045,-0.12352307,-0.69928145,-0.0094457315,-0.09690101,0.4309591,-0.0831968,0.022818675,-0.36245984,0.59340644,-0.17404556,0.7980935,0.28863576,0.06391635,-0.32589597,-0.28564578,0.054979388,0.8777463,0.28813055,0.08003838,-0.14309645,-0.25598,-0.3306029,-0.22487132,0.049372032,0.48108485,0.61109906,0.07585899,0.09463305,0.46727532,-0.2316555,-0.13087063,-0.10847828,-0.20264505,-0.1181964,0.036379024,0.53372556,0.6736982,-0.21919666,0.3144784,-0.23773359,0.33179575,-0.26514998,-0.38933513,0.4808197,0.3715809,-0.068069085,-0.15604495,0.6217641,0.5593935,-0.20826119,0.35460868,-0.63546604,-0.36952385,0.53050226,-0.05377183,-0.4386205,0.0009188973,-0.1695265,-0.07782427,-0.9782703,2.6482801e-05,0.0119927665,-0.4603149,-0.6367037,-0.27815273,-3.605469,0.006012268,-0.08776348,-0.09678585,-0.10370581,-0.043311037,0.28714126,-0.545844,-0.6947425,0.11877882,-0.020670317,0.627129,0.15943414,0.33122408,-0.35524845,-0.028854169,-0.2925164,0.078683525,0.1135091,0.33577463,0.057515923,-0.45919874,0.02593389,-0.23762217,-0.5101005,0.038978834,-0.511975,-0.520419,-0.00775398,-0.50786316,-0.3003978,0.7387637,-0.38785583,0.028924074,-0.23756133,-0.10984922,-0.20378791,0.2349507,0.14105476,0.043275457,0.05164195,-0.071611114,-0.0931882,-0.35433128,0.31364712,0.012866324,0.355515,0.2442631,-0.14885925,0.13632862,0.5104391,0.5731853,-0.068255074,0.6969131,0.19698946,-0.09937249,0.28401333,-0.118890196,-0.1868872,-0.57740754,-0.29843992,0.010642423,-0.39073202,-0.43886802,-0.22658388,-0.372063,-0.8371251,0.39625472,0.15767334,0.056376066,-0.16582035,0.10564722,0.33567566,-0.13618161,0.16886733,0.030025413,-0.20140512,-0.5666236,-0.5495218,-0.6618359,-0.40456507,0.3020993,1.3244598,-0.096216016,-0.19237378,0.04311524,-0.5669358,-0.045542147,0.08205014,0.16787992,0.31395906,0.52398944,-0.16806504,-0.63202405,0.45448068,-0.22599809,0.036878746,-0.53904366,-0.014489834,0.81307346,-0.6676649,0.38834286,0.2379285,0.21070814,0.07644307,-0.45922697,-0.25667542,-0.100854985,-0.16889763,0.49724466,0.26995108,-0.5434924,0.4707399,0.06785554,0.0027306539,-0.6823617,0.2979286,-0.042814773,-0.16528368,0.009975717,0.31435952,0.27187765,0.020003174,-0.18078102,0.18474929,-0.46499288,0.25099495,0.32271507,-0.00761873,0.40229324,-0.21278523,-0.024109308,-0.60791963,-0.18656246,-0.4257706,-0.2539934,-0.10123701,-0.024707962,0.057663396,0.14868066,-0.03785817,0.20392054,-0.27071258,0.09318915,0.119267784,-0.0854803,0.31402192,0.27514905,0.39777392,-0.46388334,0.5984472,0.03508522,0.16557345,-0.057274,-0.02701399,0.37761953,0.24920848,0.21777895,-0.09714218,-0.23606792,0.3299336,0.6945324,0.2543258,0.13724004,0.21753667,-0.20109327,0.44557592,0.08445898,0.015406697,0.037165537,-0.5152897,-0.035211407,-0.007720617,0.12085394,0.36202094,0.1942343,0.44922364,-0.031328093,-0.2110748,0.17677633,0.11847278,-0.41770875,-1.1495064,0.2656519,0.20608574,0.791386,0.4063504,-0.026813112,0.10667887,0.6362158,-0.4408776,0.14276792,0.33252555,0.027535759,-0.40796563,0.5210526,-0.39787403,0.5753909,-0.12168347,-0.0008404335,0.021908103,0.18103796,0.30602002,0.8925548,-0.116646916,0.034695975,0.11782791,-0.24026343,0.14023744,-0.25358567,-0.09738246,-0.6495743,-0.20922439,0.5419292,0.40762308,0.4401457,-0.23414057,-0.0747497,-0.039423373,0.00640078,-0.058764692,-0.09472474,-0.059438765,0.032790847,-0.77303463,-0.3462795,0.52285755,0.12147798,0.17781888,0.14010064,-0.478439,0.2658921,-0.22395918,-0.0625646,-0.044548534,-0.7219114,-0.25472677,-0.25564435,-0.40802115,0.12298153,-0.4053084,0.30516255,0.1608689,-0.02850749,-0.26610774,0.1037253,0.22415963,0.84171253,0.067683324,-0.21614522,-0.36360726,-0.059980944,0.2833071,-0.3881464,-0.075397074,-0.43102735,0.10860748,-0.5436212,0.43053213,-0.00664799,-0.30582666,0.109801054,-0.2595084,0.15055376,0.493824,-0.1245919,-0.0061079813,-0.082077876,-0.08601691,-0.3329373,-0.06268479,-0.4677401,0.21401188,0.030990321,0.11261564,0.105352946,-0.13230252,-0.08047449,0.35982385,0.18561623,0.17641361,0.29780504,0.023579927,-0.19593623,0.029676339,-0.12302362,0.49866098,0.035030738,-0.24065052,-0.28119776,-0.19835415,-0.1886772,0.6406161,-0.18150964,0.2068385,-0.001077182,-0.40493476,0.6739983,0.049312226,0.9032414,0.10994999,-0.3709636,-0.042952575,0.5521162,0.2021886,0.19580053,-0.24287888,0.7982582,0.49507082,-0.17792994,-0.30248916,-0.44551834,-0.13255112,0.3240748,-0.30630305,-0.111525774,-0.18930684,-0.80439,-0.19225915,0.20411688,0.07495504,0.2789191,-0.07018984,0.03894661,-0.06297943,0.12665173,0.5738041,-0.5312181,-0.10895427,0.41982406,0.2115802,0.13119973,0.19253223,-0.46978536,0.45536363,-0.58219707,0.22875959,-0.380421,0.08234524,-0.137801,-0.14380337,0.16850637,0.047319002,0.40547994,-0.31339708,-0.43335754,-0.22353154,0.77905715,0.34389925,0.28128475,0.845422,-0.19302727,-0.22957844,0.054954454,0.5821371,1.2047882,-0.1086978,0.14682394,0.27616537,-0.2994621,-0.50794095,0.1522203,-0.3203014,0.13012546,0.1248968,-0.32659367,-0.31666186,0.41669002,0.03781231,0.12986962,0.103978835,-0.40987617,-0.2853641,0.57165724,-0.2034454,-0.29100606,-0.26624075,0.08224659,0.62013113,-0.19441183,-0.21850039,0.103376776,0.4300265,-0.2853829,-0.56288934,-0.1125902,-0.49751288,0.38895878,0.067045525,-0.22623044,-0.086264774,0.04880097,-0.38533798,0.2570656,0.23154989,-0.40960482,0.043057892,-0.40065807,-0.17251427,1.0983001,0.032107286,0.0610855,-0.7475573,-0.35159257,-0.89728737,-0.4342652,0.29519737,0.026698956,-0.18104118,-0.33705884,-0.1815719,-0.07516419,-0.0611074,0.09725404,-0.53695965,0.38993156,0.22837827,0.42875582,0.01792762,-0.8748976,0.026695265,0.013150331,-0.24817906,-0.46531758,0.6551618,-0.07987897,0.71317714,0.044232465,0.13015498,0.17344464,-0.52757794,0.34988675,-0.35828775,-0.102516346,-0.7744828,0.12345934,754 +733,0.29086992,-0.2820068,-0.579842,0.05523086,-0.11208293,0.20043898,-0.35097986,0.24106055,0.022170441,-0.46445176,-0.030790605,-0.05601134,-0.102513276,0.1950252,-0.16374794,-0.39785025,-0.07611609,0.1237274,-0.5257372,0.3457299,-0.61159873,0.2689063,-0.08889227,0.15304643,-0.06032522,0.14899446,0.3032552,-0.10036607,-0.15787055,-0.20459749,0.09661825,0.097696945,-0.3351199,0.1947364,-0.14475273,-0.43454736,0.04282427,-0.33721372,-0.36371797,-0.6443856,0.3074048,-0.82028735,0.5412502,0.0661088,-0.25923762,0.21994697,0.0711165,0.17185679,-0.12222613,0.0022512882,0.1336625,-0.29633838,-0.25165358,-0.4217863,-0.12726215,-0.41304713,-0.48741156,0.119351834,-0.48870155,-0.10667579,-0.12038095,0.24253654,-0.45348632,0.098545365,-0.16164932,0.37068665,-0.2703739,-0.00993802,0.29626262,-0.1858793,0.14035575,-0.62062,-0.1334401,-0.06016591,0.18887243,-0.09120233,-0.1359879,0.15293829,0.07393611,0.5207082,-0.15551835,-0.14254989,-0.28097984,-0.173107,0.2697274,0.5387312,-0.1308152,-0.4372438,-0.17432974,-0.1411192,0.20836662,0.13876796,0.04650023,-0.22485389,-0.052499227,0.13003537,-0.34887922,0.26167628,0.5629803,-0.29431278,-0.0031218736,0.4438805,0.6174469,0.01162543,-0.088689014,0.03531023,0.09637497,-0.45090836,-0.1705251,0.116973765,0.003721957,0.49769485,-0.24435171,0.4984953,0.45628354,-0.2525338,0.0725331,0.1448302,0.049706414,-0.10123045,-0.20110594,-0.104186006,0.18667258,-0.48466775,-0.02408676,-0.21720567,0.8057967,-0.037988313,-0.6276702,0.39410654,-0.55221504,0.16835514,0.07957011,0.7340828,0.6226855,0.35197595,0.1414472,0.7793534,-0.35566542,-0.08232425,-0.110617034,-0.31244594,0.06778752,-0.06982673,-0.028831912,-0.4148771,0.070098385,0.21002391,0.14805031,-0.06605626,0.31621096,-0.48231572,-0.0745128,0.04045351,0.68907154,-0.21713217,0.065992326,0.6923891,0.97214985,0.7806584,0.081070535,1.2776023,0.31787217,-0.21496916,-0.03113885,-0.11113529,-0.86022437,0.23372006,0.28834167,-0.17391816,0.4094489,0.07260125,-0.22983877,0.46191522,-0.31053093,-0.12698027,-0.19671702,0.21275654,0.1270347,-0.17135397,-0.31299195,-0.1507071,0.03414649,-0.12607367,0.35963064,0.25440687,-0.26589394,0.3370245,0.104403384,1.2131584,-0.26669562,0.20342067,0.16660613,0.10602414,0.18985613,-0.17160764,0.07082739,0.39291912,0.2756332,0.11984563,-0.6463708,0.14756715,-0.17607191,-0.5666191,-0.2200679,-0.07731215,-0.14049977,-0.068966374,-0.37765902,-0.15864776,-0.23835382,-0.35005423,0.37279174,-2.7695718,-0.2246595,-0.16004084,0.29304856,-0.31103918,-0.37139577,-0.20782775,-0.40286037,0.2960747,0.33273533,0.40823144,-0.5946278,0.35945547,0.3510451,-0.47384706,-0.2531192,-0.6746339,0.06304121,-0.0515611,0.31364006,0.05863754,-0.2792528,0.06552848,-0.06079926,0.38046074,-0.26443025,0.12778378,0.2879922,0.4878895,-0.0077174744,0.21079087,0.039838728,0.5189066,-0.4826337,-0.27015617,0.37270498,-0.58020437,0.41141722,-0.02683668,0.17727968,0.33877817,-0.40245664,-0.70769894,-0.55954957,-0.19444071,1.3555989,-0.15195657,-0.5298776,0.06388342,-0.21881771,-0.41950777,-0.089520924,0.40586016,-0.19448641,-0.115358844,-0.8559411,0.09809191,-0.17127459,0.42874888,-0.050042905,-0.015608726,-0.35036236,0.61485547,-0.06400107,0.5384578,0.40054643,0.16303548,-0.42025968,-0.2837745,-0.017698558,0.93133026,0.50552773,0.18323709,-0.16415235,-0.20584433,-0.22868219,-0.22995487,0.15314163,0.5183432,0.6464664,0.03917753,0.14463824,0.3514752,0.050097935,0.031209083,-0.11690974,-0.21635386,-0.15084504,0.12737025,0.5938295,0.42344445,-0.25392035,0.26735237,0.032523267,0.2169214,-0.42753047,-0.41165775,0.51993906,0.76556313,-0.10287978,-0.32115147,0.5746586,0.5603867,-0.51133525,0.37368515,-0.61846644,-0.5009742,0.4354202,-0.13252157,-0.44990256,0.25626847,-0.3976142,0.25794995,-0.85816413,0.33887088,-0.40710232,-0.38450453,-0.7226737,-0.20583762,-3.230955,0.2823808,-0.2585015,-0.0961835,-0.2413645,-0.0014996299,0.3026684,-0.48587206,-0.46513778,0.104406625,0.11913793,0.59473026,-0.054866746,0.1001648,-0.20042016,-0.17597982,-0.1729469,0.18256393,0.07591828,0.15564339,-0.05953876,-0.3732181,-0.14388147,-0.1726397,-0.3066633,0.13004914,-0.42703688,-0.40443617,-0.14220732,-0.3824825,-0.28960493,0.594283,-0.45028284,0.010427268,-0.30356488,0.14025949,-0.20164499,0.4567421,0.10200293,0.16242589,-0.04808499,-0.14598078,-0.028709127,-0.2478937,0.25505173,-0.027447293,0.28772599,0.6012515,-0.24424379,0.13720591,0.35031393,0.61169565,0.025321044,0.8004768,0.24525213,0.049350936,0.3888084,-0.15836345,-0.1786477,-0.43119255,-0.2447055,0.17791282,-0.43245336,-0.38203046,-0.04692219,-0.22603995,-0.7291524,0.53433233,0.0030515583,0.014984972,-0.079762205,0.50929075,0.4875654,-0.07620022,-0.017589368,0.04468842,-0.1432363,-0.291527,-0.33539775,-0.6980042,-0.41053867,0.11766224,0.9171375,-0.19957839,0.18198313,0.18235137,-0.15615426,-0.12438543,0.19553192,0.13333026,0.16460146,0.45267376,-0.024916181,-0.6314217,0.42674476,-0.2930152,-0.30290273,-0.5590585,0.053962257,0.6442115,-0.58480746,0.45998514,0.5409019,0.26028168,-0.090482146,-0.52672714,-0.095131174,0.15072472,-0.2853467,0.3698068,0.31330284,-0.72123027,0.49942154,0.46201426,-0.15217318,-0.6525971,0.38631326,0.1542115,-0.017181598,-0.023570271,0.4816671,-0.1706381,0.02396204,-0.08858653,0.1313751,-0.37857673,0.27670753,0.15389219,-0.11178417,0.5094213,-0.19678956,-0.30434683,-0.50806195,-0.0034105342,-0.5692634,-0.14094414,0.2037878,0.0063222246,0.13696599,0.109555416,-0.028461121,0.45508906,-0.28486726,0.07690933,-0.045011528,-0.2189484,0.38872835,0.43139327,0.34025002,-0.43014085,0.726231,0.08894002,-0.07909342,-0.30308083,0.09607815,0.46345142,0.13182499,0.47564352,0.07765612,-0.04727867,0.283138,0.8921281,0.21186407,0.53217304,0.23728254,-0.05108372,0.15139759,0.021596802,0.08374635,-0.03284726,-0.42215064,-0.17768677,-0.14794974,0.32922286,0.41607806,0.07091452,0.5810241,-0.18861239,-0.21167602,0.0033071167,0.32993475,-0.15758643,-1.2052691,0.4186722,0.18048567,0.6958756,0.2872433,0.010210725,0.14836751,0.5567407,-0.10678674,0.18999097,0.2379962,-0.030246885,-0.5143244,0.6445055,-0.70618784,0.2631637,-0.110078916,0.057337943,-0.022246454,-0.08384848,0.37136972,0.689861,-0.054909404,0.07347952,-0.08055001,-0.2438681,0.17919964,-0.26322836,0.238641,-0.3592755,-0.23960432,0.66553587,0.40817386,0.37154514,-0.27472037,-0.0034893544,0.20273262,-6.41793e-05,0.24126591,-0.08987929,0.31522375,-0.16766927,-0.59175,-0.1969325,0.5261683,0.24913906,0.11086022,0.06500466,-0.2839817,0.30615166,-0.078392655,0.07424986,-0.098297045,-0.43231234,0.19326374,-0.32646105,-0.6288769,0.29282025,-0.29036018,0.22166292,0.3202434,0.02307183,-0.37061632,0.19080567,0.091874436,0.81272155,-0.14979908,-0.08242308,-0.30260053,0.20368245,0.31771672,-0.25969446,-0.200662,-0.2928622,0.16838568,-0.67637956,0.52786833,-0.19061224,-0.15139422,0.20617928,-0.10302593,-0.061594386,0.5509531,-0.30538177,-0.13189504,0.19698772,-0.16522624,-0.3074209,-0.20962617,-0.15859622,0.25983894,0.14016077,0.15990752,-0.1218876,-0.045429323,-0.28324866,0.15078467,0.041898813,0.1608963,0.5587943,0.26223826,-0.45327598,-0.142172,0.036315568,0.62378824,0.15902461,-0.13331409,-0.3307256,-0.6839794,-0.20252497,0.3110763,-0.037514143,0.30040687,0.103197865,-0.35736656,0.71618944,0.0034643784,0.9539373,0.013139362,-0.3622267,0.0071442174,0.5236277,0.041514937,-0.13323806,-0.29727697,0.8840171,0.45843422,-0.19899915,-0.06494487,-0.3256775,-0.012504564,0.1385472,-0.25410777,-0.13626331,-0.041276414,-0.7001557,-0.32652405,0.16274807,0.2789109,-0.0368574,-0.22315982,0.1247197,0.23823322,0.045075674,0.2692291,-0.4903671,-0.17917521,0.28116286,0.27377912,-0.018580444,0.110989004,-0.43621427,0.35361257,-0.7688672,-0.0075132963,-0.35806003,0.12982999,0.036703255,-0.2750759,0.15893973,0.1157505,0.29345348,-0.39331296,-0.27644542,-0.13576616,0.33276778,0.30356267,0.14448784,0.6722685,-0.18264714,0.008245707,0.10327916,0.55246377,1.0432845,-0.16119649,0.07938711,0.31059372,-0.38353345,-0.7460256,0.3395084,-0.50193524,0.15724947,-0.112399705,-0.32538164,-0.54536587,0.3281686,0.32907778,0.04688358,0.008259762,-0.6042604,-0.18853499,0.15327609,-0.42547792,-0.27071777,-0.32711586,-0.0320581,0.7152544,-0.13870206,-0.13151528,-0.05208725,0.48038325,-0.30266783,-0.5005193,0.06000551,-0.42512953,0.2811364,0.18030468,-0.124083474,-0.047554262,0.09574692,-0.46755087,0.27351427,0.12205373,-0.24722743,0.020136751,-0.3209902,-0.058675446,0.6658218,-0.22233714,0.14937727,-0.5588877,-0.51841646,-0.83921283,-0.3058546,0.30100894,0.07494717,0.15333432,-0.5905414,0.037375912,-0.01864318,-0.07451951,-0.04699012,-0.35922104,0.42920297,0.12197335,0.3106458,-0.114691205,-0.6614456,0.122071266,0.06335044,-0.13496555,-0.41541255,0.42381394,-0.113408394,0.7015982,0.07694304,0.061992984,0.34056756,-0.5706356,0.18693894,-0.1897975,-0.2994459,-0.8296303,-0.02479786,755 +734,0.4003681,-0.13969341,-0.5014311,-0.1870829,-0.27211338,0.16205679,-0.24317805,0.2329672,0.39670962,-0.017128736,-0.13948298,-0.033176973,0.18136083,0.39158055,0.059266303,-0.7058964,0.014368763,0.07159667,-0.6894578,0.42536157,-0.62031734,0.44134697,-0.09799779,0.34196982,0.09491667,0.48310313,0.23522337,-0.035496704,-0.09230758,0.032659493,-0.043823455,0.107124165,-0.41233987,-0.10348969,-0.057481084,-0.28459418,0.05507744,-0.29350534,-0.22784056,-0.6934785,0.33621013,-0.75152916,0.57982457,0.1323893,-0.26014006,0.016652051,0.16712452,0.36507878,-0.36047804,0.108419076,0.095787086,-0.111316204,0.0022717048,-0.37611932,-0.15060478,-0.37811425,-0.41964337,-0.06667674,-0.67090476,-0.427834,-0.10687806,0.14800161,-0.32764462,-0.087463126,-0.02536411,0.37741646,-0.33225992,-0.011926802,0.46664193,-0.28196245,0.38062543,-0.5890197,-0.020853642,0.033253323,0.51178354,-0.07715051,-0.14998564,0.2126907,0.37771592,0.36208698,0.23988232,-0.23076177,-0.4349648,-0.12508729,0.05968552,0.42805606,-0.2538086,-0.25571156,-0.19332926,-0.005579467,0.16215508,0.38319743,0.20866467,-0.05519316,0.056609247,-0.020199914,-0.11524986,0.59899867,0.5264604,-0.37082398,-0.4130201,0.25332844,0.61462796,0.094693236,-0.3580674,-0.048629284,0.037848286,-0.4940452,-0.15116991,0.04302237,-0.049305037,0.57276845,-0.11478794,0.17833464,0.7865204,-0.29593408,0.029515324,0.17829415,-0.044984896,-0.13426277,-0.2818056,-0.09408365,0.06844909,-0.63835114,-0.08655291,-0.22068664,0.541873,0.19935966,-0.6131094,0.41852415,-0.65310514,0.09607764,-0.12448827,0.45698336,0.69094497,0.30316606,0.21253373,0.7228304,-0.21189786,0.12831861,-0.013769774,-0.43594202,0.2477967,-0.25461382,0.1874841,-0.5711076,-0.06788537,0.0023670883,-0.06447853,0.24683064,0.40214634,-0.5245491,0.02065542,0.1412536,0.8706969,-0.32040244,-0.11638964,0.56266534,1.2421505,0.88607967,-0.14822802,1.0231436,0.35979912,-0.282026,0.17463778,-0.7030771,-0.48214605,0.1867658,0.27229545,-0.3723412,0.5382934,-0.18095364,-0.116928324,0.39433435,-0.24438024,0.09675987,0.16536818,0.2520406,0.21520904,-0.13017449,-0.40112475,-0.11672163,-0.03725674,0.01234852,0.29884684,0.21281464,-0.32764322,0.2641234,-0.20335685,1.1833456,-0.07165431,0.0790972,-0.09887225,0.65176433,0.30001104,-0.13343903,-0.11614393,0.4199575,0.14627434,-0.05065644,-0.6400147,0.35923272,-0.37609106,-0.27241546,-0.23928279,-0.46574217,-0.07258627,0.13405012,-0.32421127,-0.11393854,-0.15162092,-0.31032774,0.30904037,-2.9092689,-0.42193896,-0.0042612506,0.40741003,-0.304515,-0.18616779,-0.073395535,-0.5162779,0.19772807,0.27043182,0.4073071,-0.604948,0.48718983,0.5046096,-0.47738823,-0.31324413,-0.6276483,2.4213241e-05,-0.16961639,0.36146486,-0.006496292,-0.21048066,-0.12669645,0.22883771,0.6357613,0.10099126,0.12384359,0.33952028,0.33771393,0.01558517,0.3989014,-0.050877534,0.70521355,-0.21901542,-0.2529773,0.30373496,-0.26613733,0.08814255,-0.19337481,0.059518356,0.3714484,-0.28702286,-0.9402192,-0.617769,-0.05230933,0.928584,-0.17857169,-0.3383054,0.2083787,-0.40097153,-0.16212288,0.03626054,0.5684286,-2.5625412e-05,0.043840133,-0.65100586,0.122309476,-0.039606478,-0.0042266203,0.0632188,0.0026195066,-0.3354967,0.506647,0.0559331,0.4065506,0.21774861,0.32207888,-0.1136673,-0.355034,0.1455432,0.7122611,0.20155452,-0.02650845,-0.09724358,-0.26953572,-0.1061348,-0.120974645,0.03366315,0.43994105,0.7417154,-0.03759839,0.098043084,0.28308028,-0.22788852,0.121542014,-0.054123506,-0.33264843,0.08611603,0.10286982,0.43025684,0.78977174,-0.20990203,0.58077955,-0.12921487,0.27024263,-0.25074822,-0.5064136,0.7903178,0.49969026,-0.19724587,-0.15306756,0.49367744,0.35418174,-0.64291424,0.50052035,-0.71254313,-0.18488921,0.6525863,-0.3182651,-0.29071584,0.1685506,-0.17545612,0.1225221,-0.89362246,0.21976456,-0.2842622,-0.3560312,-0.148835,-0.028639318,-3.7002308,0.16468838,-0.27871272,-0.042140327,-0.13144824,0.0878056,0.29940075,-0.6857752,-0.48089164,0.1000943,0.24232799,0.63965046,-0.14218886,0.032164868,-0.17091648,-0.24069566,-0.083052,0.24850243,-0.05312086,0.29401153,-0.13523111,-0.5027531,0.2632129,-0.026627775,-0.6489709,0.1385621,-0.4810613,-0.401634,-0.112536624,-0.58686227,-0.24847333,0.6498177,-0.16611037,-0.03485734,-0.34487134,0.21322288,-0.12535825,0.4272709,0.005260073,-0.033603355,0.4065058,-0.017901301,0.18202418,-0.36470553,0.5144066,-0.09928966,0.45777035,0.20206223,0.034681145,0.19420657,0.49107453,0.5510046,-0.02204859,0.8263838,0.4612109,-0.008497799,0.19555987,-0.44532102,-0.16550027,-0.22118293,-0.507834,-0.057897784,-0.25926208,-0.60401845,-0.03617784,-0.37405506,-0.7444905,0.47715852,-0.068459265,0.42062983,-0.070278816,0.36162347,0.44205207,-0.27494317,0.028086148,-0.046763007,-0.2217099,-0.45692176,-0.00045650738,-0.58426386,-0.51701444,0.22373396,0.7849534,-0.51050985,0.2019781,-0.046528228,-0.20795646,-0.0738119,0.17810573,0.15922907,0.2383522,0.34640715,-0.16321784,-0.6163882,0.16130815,-0.18796983,-0.15268768,-0.5927963,0.029067244,0.654853,-0.65165937,0.5829206,0.34277692,0.13018528,-0.07144988,-0.40930155,-0.032611772,0.19241858,-0.14455566,0.47812197,0.097247764,-0.7984505,0.36769646,0.29798302,-0.5099293,-0.6419452,0.41826203,-0.063152775,-0.38952193,-0.24406478,0.27987438,0.17587624,-0.10036223,-0.17873493,0.17883693,-0.45332512,0.1872062,0.1933706,-0.0056173983,0.5836905,-0.109440565,-0.2921494,-0.6762308,0.099907234,-0.5442636,-0.13951267,0.2525602,0.1415238,0.20644648,0.21020643,0.27002886,0.36819202,-0.29269475,0.046109222,0.058136184,-0.44732875,0.21328002,0.3419724,0.27709788,-0.40528238,0.370734,0.0037399898,-0.2921328,0.16723222,-0.1512355,0.48961228,-0.0075053205,0.49330652,-0.008487628,-0.26546216,0.4373174,0.5694295,0.046241336,0.3318384,0.17516048,-0.13926338,0.21423295,-0.04496399,-0.054234207,0.018420931,-0.3780134,-0.06720137,-0.121966965,0.2564016,0.5274242,0.3912976,0.18055955,0.14550231,-0.33588812,0.07933056,0.24214515,-0.14748971,-1.2375247,0.36916828,0.36569405,0.7652709,0.37509727,0.22857212,-0.29510555,0.64775527,-0.2078945,0.07491093,0.5678256,-0.039618257,-0.504324,0.7708594,-0.6071068,0.5758041,-0.038442507,-0.1705319,-0.05798352,0.034967106,0.34432822,0.97115433,-0.1800588,0.07103329,0.07363646,-0.21853805,-0.14320597,-0.28176138,0.016845617,-0.660632,-0.18550238,0.6347371,0.29760492,0.2461386,-0.0801113,-0.13164224,0.14078683,0.024325717,0.31765726,-0.11893214,0.12284675,0.0018871289,-0.7008194,-0.18921944,0.34814718,0.23405388,0.1976815,-0.30487892,-0.13935614,-0.023547549,-0.3765298,-0.065381095,0.020421263,-0.53703105,-0.025763612,-0.14572857,-0.5301529,0.686307,-0.22495237,0.16366106,0.13719909,0.14343828,-0.16827816,0.5043179,0.080704555,0.6807107,-0.026900109,-0.19573775,-0.29900488,-0.007030865,0.24187341,-0.151618,0.06585164,-0.30831102,0.16728687,-0.51039505,0.67409545,-0.1458201,-0.35745034,-0.026817588,-0.20589945,0.037089486,0.6494272,-0.22969985,-0.21710865,0.013264014,-0.27641565,-0.4050914,-0.07111023,-0.1786051,0.21443534,0.20202239,-0.1409746,-0.29193753,-0.2993508,0.01187828,0.55854934,-0.070313774,0.44070345,0.27293846,0.044254567,-0.070680745,-0.054381233,0.3605793,0.32414415,0.12990178,0.04892119,-0.577342,-0.3880558,-0.21212286,0.18814936,-0.026004754,0.010278518,0.119288534,-0.18674634,0.84269524,0.0321584,1.4252173,0.16160403,-0.23444945,0.15749575,0.5302922,-0.069181606,0.04592885,-0.53132695,1.0005891,0.5345735,-0.23338619,-0.07680484,-0.5066736,-0.16009961,0.28516752,-0.38116595,0.016088393,-0.08295167,-0.75590146,-0.363836,0.31356496,0.13740799,0.14725071,0.06329625,0.29578453,-0.036108483,0.09307131,0.26295608,-0.59855276,-0.2898889,0.4100773,0.35005188,-0.0051358114,0.28197563,-0.42976373,0.47683045,-0.7146404,0.20849206,-0.31439108,0.052536998,-0.17057961,-0.5827275,0.18700539,0.1676938,0.23364718,-0.06688155,-0.44593653,-0.034268253,0.43847927,-0.030388126,0.10655481,0.5765295,-0.3846839,-0.12740421,-0.058913745,0.62519497,1.237419,-0.21501142,-0.0040693423,0.3274361,-0.3269448,-0.8715762,0.40869692,-0.33289212,0.013151187,-0.089037456,-0.3247767,-0.5863014,0.2813246,0.07350864,-0.015024075,0.042703986,-0.32006434,-0.362518,0.1388199,-0.3075377,-0.21380281,-0.15833817,0.3398027,0.73549783,-0.21743844,-0.13647538,-0.045802847,0.49412134,-0.25495642,-0.27189094,0.06298054,-0.103929296,0.39727238,0.14279653,-0.32312787,-0.03456879,0.22638631,-0.37821388,0.20626658,0.32877642,-0.3967516,0.106180735,-0.25351614,-0.18406758,0.80986434,-0.14953686,-0.001194931,-0.5035636,-0.47386667,-0.9328756,-0.41997895,-0.021545192,0.045039233,-0.16870001,-0.41619986,0.15569247,-0.019644896,-0.139264,0.15796588,-0.5800653,0.35191455,0.041829698,0.4401179,-0.317942,-0.8156615,-0.10284324,0.20258856,-0.2656929,-0.821529,0.636295,-0.17916764,0.9402328,0.15144995,-0.10097365,0.12421406,-0.20245443,0.14904618,-0.28599042,-0.23873049,-0.85409766,-0.087408274,767 +735,0.45263153,-0.20102233,-0.4351648,-0.11092388,-0.18231954,0.11590826,-0.2287694,0.4212764,0.13977706,-0.53675056,-0.14741005,-0.16596618,0.06070657,0.44290966,-0.19966777,-0.6054223,0.109076254,0.12496923,-0.40373972,0.5339193,-0.57047784,0.3288861,0.046725824,0.39857256,0.32198936,0.080406465,0.16959201,-0.07336627,-0.20602277,-0.36216864,-0.15759477,0.2143967,-0.35942486,0.012772787,-0.08102099,-0.37746227,0.02813368,-0.58034766,-0.3107192,-0.8884658,0.30422866,-0.8238967,0.72811836,0.07476579,-0.19390416,0.24118795,0.25445893,0.3805924,-0.12126342,-0.08524739,0.18405789,-0.2867966,-0.08095369,-0.361922,-0.19386347,-0.51255536,-0.7218678,0.015004135,-0.5443773,-0.40712303,-0.21205306,0.20266128,-0.37846893,-0.17992672,0.0383518,0.6200923,-0.4026977,0.028946092,0.22803122,-0.14316711,0.4389294,-0.6272204,-0.053439103,-0.07962573,0.2488901,-0.1640154,-0.25225526,0.20329963,0.4552601,0.35318327,-0.04510699,-0.28830355,-0.24905413,-0.059473917,0.078785054,0.49184275,-0.2505287,-0.57206243,-0.0027806438,0.031896956,0.35250574,0.29203156,0.33807886,-0.060681906,-0.09748812,0.24878223,-0.29521993,0.6468672,0.35883585,-0.39710066,-0.07019173,0.36819422,0.50071377,0.22132741,-0.16248454,-0.12463801,-0.0367462,-0.65722233,-0.20072205,-0.047329817,-0.4463759,0.5893805,-0.2672792,0.3855352,0.7042075,-0.24310128,0.0526401,0.1759732,0.088587165,0.019508123,-0.23286176,-0.29244903,0.27375054,-0.52930933,0.057755854,-0.18545829,0.7024927,0.19506563,-0.47021902,0.32435882,-0.63134265,0.18119973,-0.08218264,0.43207604,0.61604667,0.47824198,0.39715025,0.6246586,-0.3719517,-0.08269404,0.10031504,-0.3474747,0.1667681,-0.14707233,0.0048028138,-0.53070545,-0.114703625,-0.04829871,-0.0885822,0.15659197,0.44174212,-0.705794,-0.10629852,0.028217133,0.8742416,-0.2649034,-0.1295411,0.76622605,1.1000034,1.0536621,-0.040192273,1.1387929,0.20805219,-0.28678992,0.040969368,-0.13379556,-0.49262488,0.43934923,0.40442607,-0.7166924,0.44493058,-0.059883066,-0.08698273,0.37675703,-0.35365188,-0.13968235,-0.08083392,0.091315344,0.074462846,-0.30902088,-0.5156924,-0.22423516,-0.21753886,0.045040276,0.24645281,0.33075684,-0.2381696,0.36275938,-0.05011762,1.4019004,-0.064411685,0.12959118,0.12391495,0.35396278,0.28041404,-0.048893414,-0.009313767,0.41682035,0.37243238,0.28640202,-0.6202444,0.17784993,-0.2135897,-0.38369095,-0.07976658,-0.37114716,-0.0511918,-0.09436442,-0.42403543,0.022438267,-0.23161823,-0.29071453,0.3530596,-2.6734748,-0.36452764,-0.05837468,0.47552806,-0.15740559,-0.36738867,0.025419427,-0.36843687,0.42747858,0.17083064,0.52896035,-0.7129058,0.38664308,0.42555317,-0.62738186,-0.26423618,-0.7230275,-0.23930386,-0.11094703,0.33690736,0.066089734,0.01654977,0.20744249,0.2804879,0.53279406,0.04590911,0.24686135,0.2251747,0.45928714,-0.1925436,0.6625951,-0.08880852,0.59422755,-0.028895058,-0.27211228,0.32818228,-0.3610527,0.19192675,-0.08425306,0.13541177,0.45248523,-0.32596815,-0.9196631,-0.6939633,-0.20631504,1.1627972,-0.12816212,-0.394033,0.2206178,-0.33154643,-0.3466677,0.003778852,0.57749903,-0.18302345,-0.01936189,-0.79496104,0.028737834,-0.055093892,-0.011850252,0.08541444,0.07825799,-0.5010709,0.5550198,-0.06981147,0.3188036,0.29039592,0.28100938,-0.4762773,-0.4987456,0.0002401666,0.92881805,0.5199973,0.0149911875,-0.12802078,-0.13869783,-0.46638313,0.052700024,0.029910129,0.72154367,0.8223555,-0.11709128,0.09069629,0.27638647,-0.005174334,0.13115495,-0.15665469,-0.31011677,0.01200286,-0.088723555,0.5982951,0.6415225,-0.18568622,0.5694875,-0.051988088,0.34102827,-0.24284783,-0.5161418,0.509894,1.1784567,-0.29843995,-0.27189705,0.6984939,0.3654409,-0.24488407,0.3788547,-0.60485613,-0.2782481,0.5901385,-0.18086042,-0.49904367,0.23311175,-0.21242546,0.12061606,-0.9313031,0.42511994,-0.35240772,-0.5616277,-0.36116415,-0.0001480671,-3.5967467,0.25341934,-0.40355352,-0.17081887,-0.23260559,-0.064311676,0.33141544,-0.7710498,-0.52917457,0.0047202087,0.02720295,0.907389,-0.17868277,0.07409604,-0.20580758,-0.40883362,-0.13244149,0.24283248,0.099542566,0.35732958,-0.0892295,-0.40429047,0.08891311,-0.06188535,-0.5833006,0.12456726,-0.7008399,-0.64889425,-0.12730342,-0.51899993,-0.33563122,0.73410195,-0.22503391,0.10204477,-0.18344235,0.14395441,0.031000448,0.30515045,0.14185797,0.19637336,0.036364883,0.027228173,0.1665269,-0.2664634,0.2725127,0.07606055,0.32025418,0.28167346,-0.073479205,0.3268922,0.49830335,0.6225946,0.04094155,0.90903634,0.41443694,-0.04380554,0.21182369,-0.30737656,-0.40915248,-0.39289606,-0.34904703,0.0022315246,-0.3874318,-0.3918661,-0.15091795,-0.37711635,-0.8126391,0.64845854,-0.045255847,0.30321744,-0.16539706,0.53302354,0.6335652,-0.21524447,-0.05797774,0.11644831,-0.26489064,-0.5895684,0.11638828,-0.68618673,-0.5557508,0.04632507,0.6884688,-0.3329107,0.21249507,-0.037080165,-0.06430289,0.0073648323,0.1721004,-0.14200662,-0.024101194,0.47109714,-0.12726575,-0.7566122,0.40688735,-0.23579921,-0.17970583,-0.57730716,0.25235087,0.81271625,-0.5043425,0.5559802,0.5248401,-0.10750559,-0.3275641,-0.5561274,0.025358833,0.21901971,-0.28398746,0.38778785,0.19228615,-0.79292995,0.4047077,0.40034983,-0.42943498,-0.60434985,0.7823657,0.043714054,-0.3100667,-0.09146408,0.46789533,0.23022754,0.11745115,-0.2383483,0.33809802,-0.47528756,0.18616493,0.14551184,-0.06834253,0.22115758,-0.004730775,-0.13766733,-0.9668996,0.015415916,-0.5178133,-0.37313017,0.3095517,0.08698607,0.24410635,0.2943739,0.25850323,0.41289786,-0.40328422,0.14795256,-0.13144591,-0.27484444,0.42701337,0.63120675,0.48113558,-0.41954538,0.59302765,0.06587715,-0.082323514,-0.031115811,-0.009339016,0.46838024,0.045618113,0.58367574,0.061863247,-0.20768477,0.2855704,0.5157457,0.10827006,0.4578716,0.22953683,-0.062335394,0.0030799943,-0.0093999375,0.28986135,0.045602478,-0.66862065,-0.123250686,-0.18247572,0.13042504,0.6398036,0.1494548,0.22030783,0.023278087,-0.5228023,0.0062539736,0.17891058,0.039297756,-1.3680375,0.5501555,0.27305433,0.7524362,0.2676491,0.07295504,-0.052555885,0.55790275,-0.08521588,0.03878089,0.45847556,0.11528648,-0.5253758,0.6218375,-0.9492557,0.3678487,-0.07828753,-0.027631728,-0.22884025,-0.1821336,0.470774,0.90968,-0.20674965,0.005180272,0.0148479575,-0.31370276,0.2975543,-0.51798135,-0.016863765,-0.5285396,-0.32485154,0.5127149,0.59530103,0.35547546,-0.20577739,0.09694561,0.2995188,-0.1649181,0.3060589,0.0973254,0.19690663,-0.09080955,-0.68616474,-0.16350414,0.41335085,0.015643977,0.2216951,-0.099417806,0.052146867,0.19896783,-0.17992224,-0.12575755,-0.079191774,-0.6000968,-0.08885987,-0.4367565,-0.49060932,0.548903,-0.27105772,0.19209555,0.10665214,0.008247777,-0.10900486,0.26824415,0.14587082,0.61761975,0.104016796,-0.29263493,-0.2745147,0.3083574,-0.051750958,-0.2209274,-0.039114155,-0.16571523,0.20748681,-0.60277075,0.4832344,-0.122898415,-0.2910886,-0.1035999,-0.13127996,-0.015216387,0.46391872,-0.2545266,-0.13955861,-0.2548466,-0.33799535,-0.15911545,-0.35428238,0.09636234,0.2309177,0.28530714,-0.114336774,-0.20857292,-0.1020073,-0.2562569,0.35770628,-0.088711515,0.5856608,0.53823316,-0.016053949,-0.23758382,-0.31758526,0.37704223,0.4030438,0.018434336,-0.16386057,-0.44432443,-0.5068805,-0.32345822,0.1444545,-0.068257205,0.553684,0.044851966,-0.07010269,0.8784015,-0.0584554,1.316145,-0.1514169,-0.52989966,0.049101166,0.64094794,-0.09570433,-0.21791857,-0.3531469,1.083871,0.32077128,-0.12497687,0.0006725135,-0.43622506,0.008106791,0.2665995,-0.25174823,-0.18395105,-0.05475507,-0.4927294,-0.31402892,0.26841304,0.28209874,0.16116363,-0.11256183,0.09892754,0.4169851,-0.14318922,0.37217093,-0.5435075,-0.21645302,0.27771753,0.42295578,-0.046487316,0.07109738,-0.4124688,0.46970627,-0.48930895,0.09799134,-0.3201933,0.21053259,-0.10844182,-0.46905792,0.3506975,0.07039123,0.2368144,-0.27805603,-0.36578724,-0.11562621,0.29535836,0.17179778,-0.033519235,0.502596,-0.31091267,-0.038626965,-0.0073946486,0.6601552,1.2823315,-0.099601455,0.047611393,0.3896692,-0.50529873,-0.75607914,0.4082259,-0.40929487,0.17912666,-0.03811968,-0.261662,-0.6177043,0.20424856,0.21915817,0.16865672,-0.003345884,-0.5475568,-0.2536931,0.26002532,-0.4066771,-0.22168095,-0.24668995,0.16669711,0.48088965,-0.3268842,-0.37875304,-0.1743223,0.2648734,-0.19554274,-0.41322595,-0.0755429,-0.31710607,0.32591838,0.010061998,-0.41459355,0.04006233,-0.089759,-0.49173304,0.27581197,0.033920743,-0.2820625,0.21289611,-0.18833359,-0.09301415,0.73569286,-0.2937257,-0.040233,-0.40841553,-0.51524127,-0.600106,-0.4049028,0.22808519,0.009893353,0.038803358,-0.5816451,0.023827236,-0.09979118,-0.061464503,-0.048749328,-0.31772187,0.35611743,0.12624003,0.35702425,-0.12794924,-0.76112545,0.2125655,0.16858277,-0.19461474,-0.7316077,0.5225427,-0.17442928,0.85603404,0.08124955,0.14383392,0.27397615,-0.30434337,-0.09356272,-0.19633618,-0.27037567,-0.79719454,-0.019303368,771 +736,0.4166667,-0.21341227,-0.49210948,-0.108643405,-0.33039123,-0.09298774,-0.23772544,0.42585388,0.3732385,-0.3789009,-0.23189773,0.2420133,-0.09365216,0.2095299,-0.12720321,-0.33404365,0.283689,0.38706052,-0.7299291,0.8297461,-0.21638702,-0.047348756,-0.23320033,0.46811116,0.3345962,0.17447266,-0.2003168,0.19419822,-0.01912746,-0.2009185,0.03966175,0.4741716,-0.44671577,0.3798326,-0.24903758,-0.121746905,-0.2950737,-0.5169116,-0.5415593,-0.93209904,0.2259082,-0.8005707,0.42743486,0.027468719,-0.47448492,0.05264749,0.32427204,0.24269173,-0.18966007,-0.4056872,0.118596405,-0.10924983,-0.4938232,-0.16870941,-0.05183166,-0.30237105,-0.5955631,-0.14579305,-0.3679561,0.037000895,-0.43371934,0.25019893,-0.3085453,-0.024602206,-0.18194984,0.7833365,-0.27509233,0.33061808,0.22887534,-0.015542209,0.110089906,-0.81710845,-0.06402106,-0.19807495,0.47143665,0.24570507,-0.50710016,0.3752031,0.35857683,0.3486678,-0.12448966,-0.1151285,-0.24465291,-0.00067100616,0.23781766,0.25891563,-0.21676518,-0.4551972,-0.12205933,0.08580263,0.38609564,0.11330882,0.38086998,-0.22699004,-0.20676686,0.09328072,-0.10828082,0.5600207,0.4812372,-0.22528884,-0.016669104,0.2546187,0.6082485,0.448717,-0.2882689,0.04880267,0.040377297,-0.6403607,-0.083663374,-0.09136944,-0.19043885,0.5574744,-0.16775051,0.12404989,0.49777,0.018304734,-0.34687868,0.36910805,0.18992546,-0.01387111,-0.4307973,-0.5204793,0.35778698,-0.5646997,0.18590187,-0.10395535,0.45252806,-0.022201806,-0.7078511,0.23828891,-0.5456955,0.2224064,-0.043439023,0.47231263,0.8953086,0.54642236,0.5169367,0.62553203,-0.10501073,-0.08301413,0.026195662,-0.11492082,0.22783074,-0.33548313,0.14960054,-0.5576302,0.038590375,-0.16392758,-0.24215116,0.12826595,0.54967874,-0.46916947,-0.24589628,0.116290346,0.70561695,-0.098382965,-0.18578643,1.018719,0.9611011,1.0504239,0.2858249,1.0017331,-0.011605112,-0.10895148,0.11281316,0.18110797,-0.66306245,0.26610544,0.27006716,0.16855666,0.17162901,0.20469874,-0.018059459,0.54837984,-0.58556134,-0.061238024,-0.004868058,0.17567796,0.121535495,-0.2624222,-0.4185229,-0.37002823,-0.24177982,0.18277843,0.015288958,0.23275219,-0.08920389,0.36831492,0.121876955,1.2684581,-0.005420749,-0.06580392,0.0053253802,0.35142046,0.2308669,-0.30667976,-0.14812154,0.24705842,0.27322257,0.15863238,-0.5560728,-0.013163681,-0.22908854,-0.22874539,-0.24772644,-0.40608346,-0.33511165,-0.008516761,-0.2917441,-0.35380942,-0.17518769,-0.289898,0.4090919,-2.580816,-0.31436965,-0.15179212,0.46172854,-0.015513017,-0.24386838,-0.13799459,-0.53553134,0.46816248,0.20910144,0.6213079,-0.5785108,0.41305065,0.46743804,-0.81533337,-0.1744445,-0.74267286,-0.15174079,0.19966866,0.18489537,0.06762555,-0.15554348,0.20931289,0.24195257,0.4585134,0.25500253,0.21583048,0.6387586,0.37731272,-0.39546695,0.5146266,-0.21316518,0.50162536,-0.17743447,-0.2985778,0.22781536,-0.30986908,0.5845127,-0.12670173,0.03687013,0.77745605,-0.47285417,-0.9671596,-0.63725823,0.092528835,1.2806276,-0.12050606,-0.5197929,0.23905352,-1.0317041,-0.38665038,-0.083834425,0.7031602,-0.073960625,-0.17133024,-0.773994,0.022231111,-0.052077793,0.08814064,-0.14642125,-0.3543805,-0.45516807,0.8411185,0.050974146,0.58585876,0.29842195,0.070804216,-0.59220034,-0.36292413,0.12005436,0.7736881,0.500629,0.04988978,-0.30413705,-0.1703106,-0.41248003,-0.09412883,0.09497933,0.72150874,0.2080178,-0.26704338,0.2616893,0.37462157,0.06772752,0.00052688096,-0.23541568,-0.21209356,-0.30018833,0.042851128,0.6346099,0.9485191,-0.21402012,0.35046974,0.040408786,0.15736583,0.05403332,-0.48672664,0.49304646,1.0737952,-0.31543714,-0.409061,0.61209244,0.40516883,-0.25822103,0.4461921,-0.27168998,-0.14697333,0.40406826,-0.040771183,-0.33975083,0.063107,-0.5021414,0.1251529,-0.42984873,0.42554924,-0.5159875,-0.65596426,-0.4119863,0.0971232,-2.3392997,0.34563586,-0.3535143,-0.025042213,-0.38541207,-0.4554431,0.056758717,-0.50450075,-0.7443788,0.15635054,0.106527254,0.7681522,-0.29224873,-0.18478857,-0.105726905,-0.6283436,-0.057106677,0.031832002,0.111649275,0.42322123,-0.15080675,-0.3309711,-0.067532696,0.016479721,-0.26085973,-0.14860046,-0.5092408,-0.37203056,-0.11809681,-0.43797606,-0.09017499,0.62559617,-0.3544039,0.1059556,-0.35236135,-0.04587222,-0.11728602,0.18965398,-0.08143146,0.27199772,0.117382735,-0.10739805,-0.08570051,-0.020326082,0.08990502,-0.1074887,0.21709332,0.19030388,0.07852789,0.45129457,0.47975427,0.8055114,-0.33825848,1.2292231,0.66005635,-0.1806795,0.20661347,-0.0535117,-0.51490855,-0.50226575,-0.13949901,0.46439546,-0.5197987,-0.26068714,0.12426508,-0.38654104,-0.7287705,0.464109,0.05950026,0.10280306,0.14592166,0.10317259,0.56224686,-0.19002989,-0.04397098,-0.11462386,-0.25122735,-0.7408607,-0.12887064,-0.56656617,-0.27965504,0.11978822,1.0487225,-0.46222642,0.21896839,0.29272225,-0.28474757,0.04378217,0.3930022,-0.070188895,0.10551505,0.4488929,-0.13436419,-0.31409475,0.18520929,-0.21223377,-0.1889119,-0.43749344,0.50802904,0.6949651,-0.5848104,0.7831015,0.35370377,-0.103580914,-0.53283405,-0.73625636,-0.14073783,-0.09777531,-0.25636074,0.525236,0.5093479,-0.84392667,0.31872287,0.28642476,-0.27109396,-0.8856706,0.65712154,-0.18561839,-0.16774374,-0.13948129,0.45788032,0.18689746,0.03174803,-0.12496717,0.2947803,-0.37168223,0.1562174,0.15888306,-0.2483125,-0.27610016,-0.32335785,-0.081577174,-0.8251613,-0.05702389,-0.66866535,-0.27983713,0.40453413,-0.027012454,0.2022729,0.039343275,0.4423947,0.27437988,-0.3575281,0.18152753,-0.3272652,-0.31164426,0.38763663,0.53011936,0.6260215,-0.4756531,0.66274065,0.22275837,-0.14988641,-0.14583251,0.12836777,0.24017285,-0.05087552,0.5831007,-0.11946038,-0.064128466,-0.055138595,1.0364227,-0.055761997,0.28204423,0.06746138,0.09393017,-0.07448897,-0.06581951,0.42159155,-0.3493066,-0.65673894,0.25367916,-0.50753057,0.08768753,0.5405812,0.37960723,0.024556555,0.05050935,-0.4824338,-0.20087719,0.1639882,0.18291375,-1.7137258,0.5837295,0.3096452,0.8674438,0.54236794,0.13377362,-0.30956796,0.8785324,0.09223657,0.0011860842,0.46399534,-0.060091678,-0.36180803,0.5606852,-0.86636424,0.430432,-0.031119384,0.049854543,0.060647257,-0.009449595,0.36805648,0.6224333,-0.23398319,-0.0328006,0.043465193,-0.3590596,0.27610752,-0.4591264,0.0860204,-0.28499436,-0.5001987,0.64820695,0.54131424,0.6068947,-0.34589893,0.1307728,0.20004342,-0.2914366,0.28918007,0.098169595,0.02464861,-0.2933534,-0.6884997,0.15666309,0.37107357,-0.28505945,0.21894972,0.056728832,-0.022254871,0.22927316,-0.22488433,0.08625321,-0.16667846,-0.8053604,-0.14205942,-0.39425147,-0.5499711,0.52585894,-0.018051147,-0.024306847,0.30566955,0.042567432,-0.11229421,0.755129,-0.26268163,0.6605851,0.0544847,-0.019355224,-0.120934054,0.19968197,0.0199638,-0.2193912,0.08833434,-0.32866377,0.30287835,-0.5358342,0.51379585,-0.0130546,-0.44108465,-0.08160667,-0.07208957,0.042547263,0.3490456,-0.32579342,-0.268012,-0.17947604,-0.21650192,-0.2122925,-0.44911596,0.05054641,0.30234972,0.15852946,0.083294585,-0.22877842,-0.15861718,-0.20215313,0.17880811,-0.06616615,0.43296787,0.4664118,0.08850391,-0.2058112,0.09180804,0.37298915,0.6411461,0.13264647,-0.14188746,-0.44924197,-0.4231811,-0.61037314,0.20235215,0.17504996,0.46090952,0.19431949,0.04677569,0.5108491,-0.2612268,0.92883503,0.014812027,-0.36301777,0.10746108,0.37858197,-0.16286519,-0.17372939,-0.075875625,0.57618594,0.40894067,-0.009330566,0.07068761,-0.52890354,0.093687735,0.16622002,-0.17439087,0.033744548,0.043124575,-0.5107206,0.096876636,0.16519257,0.1751943,0.34612215,-0.23185371,0.14754957,0.3768454,-0.14759336,-0.021535872,-0.5024086,-0.17644599,0.39675638,0.19896,0.014675569,-0.02837406,-0.4228854,0.3821182,-0.4612217,0.028722553,-0.31342664,0.23516022,-0.19090237,-0.1985511,0.25901875,0.13901557,0.3346288,-0.27756542,-0.12423349,-0.23419942,0.5494284,0.25234547,0.07809103,0.5716895,-0.26328215,-0.076915115,0.23150103,0.5760173,0.7687785,-0.2615898,0.027571091,0.12556669,-0.4475411,-0.43963188,0.3883692,-0.53592545,-0.010458978,0.3342581,-0.19541885,-0.46930537,0.11761899,0.23938233,0.29902458,-0.07633572,-0.9668618,-0.2926769,0.082526095,-0.29975274,0.11477237,-0.2855449,0.036404572,0.42925212,-0.15151191,-0.41401657,0.017486297,0.085226245,-0.023432583,-0.5474808,0.11566133,-0.510614,0.20324318,-0.14007415,-0.5490434,-0.2853702,-0.14363356,-0.6136404,0.12084523,-0.0062574744,-0.2634451,0.13321002,-0.35806185,-0.072421126,0.99504,-0.35676274,0.33861452,-0.1753727,-0.5793865,-0.61078924,-0.109132245,-0.10040956,0.06081049,-0.0343489,-0.85448253,-0.20064007,-0.09862622,-0.009619374,-0.11976552,-0.36604473,0.5240641,0.11731256,0.37602827,-0.121648304,-0.9016816,0.3287209,-0.015782408,0.013577016,-0.46918586,0.4281967,-0.056484625,0.79597574,0.06461997,0.2354958,-0.06634005,-0.44542834,-0.13570534,-0.17624334,-0.22275941,-0.47803226,-0.08794982,774 +737,0.38792604,-0.13649614,-0.4770403,-0.028327383,-0.084887356,0.11644705,-0.35148907,0.32620904,0.07816532,-0.4866656,-0.2105535,-0.26213768,0.15325305,0.35647422,-0.21188122,-0.84297913,0.15185128,0.19702013,-0.6634371,0.6446739,-0.36452594,0.40859604,0.058809854,0.36916402,-0.066744134,0.2255388,0.3733988,-0.04921121,-0.11558624,-0.0121481875,-0.068256296,0.35231215,-0.7560005,0.17706957,-0.07435487,-0.38264757,0.09360879,-0.18119046,-0.24039102,-0.8243612,0.15072298,-0.82549596,0.54158723,0.21909745,-0.29613927,-0.059403174,0.13454047,0.5170073,-0.23036566,0.07741351,0.27694055,-0.18426092,-0.15876564,-0.2752498,-0.11971006,-0.64219224,-0.52190757,-0.008006224,-0.72158784,-0.29485765,-0.3783436,0.23654914,-0.13133158,-0.048898302,-0.14950877,0.42135164,-0.5132604,-0.1468073,0.37986997,-0.20845501,0.45224908,-0.5318587,-0.06483777,-0.13250022,0.36563522,-0.30978304,-0.3054845,0.102008015,0.35748672,0.47892797,0.13753925,-0.20004717,-0.201199,0.02726918,0.27786034,0.5432863,-0.28934604,-0.53464895,-0.17896964,-0.12804161,0.13663404,0.05583861,0.22934243,-0.50861555,-0.13511564,0.015855175,-0.11217442,0.31975794,0.5018572,-0.4934799,-0.2546959,0.1856539,0.60438854,0.03916616,-0.08592257,0.218565,0.08237279,-0.551242,-0.15885213,0.26354784,-0.08597272,0.6085913,-0.11935728,0.15861998,0.796958,-0.054545574,0.042860646,0.048784617,-0.079972014,-0.008190889,-0.083692536,-0.24184409,0.42488977,-0.40759033,0.05053214,-0.3832156,0.6429367,0.23010287,-0.6832667,0.32319063,-0.6039219,0.17215596,-0.038258925,0.6441082,0.6350199,0.30561095,0.25890848,0.7597654,-0.4606339,0.019892186,0.04652777,-0.35166022,0.12085148,-0.24172625,0.039652806,-0.39396983,-0.1297105,-0.058940686,-0.054410163,0.08975886,0.24436133,-0.63171965,-0.0016428187,0.07601927,0.78509754,-0.37629554,0.009814895,0.58750564,1.1803359,0.57529604,0.0925142,1.3521212,0.44856632,-0.2783907,0.11693848,-0.30595016,-0.56267047,0.25126192,0.39399055,0.21475366,0.3238754,-0.020836312,0.021928493,0.6225765,-0.5933975,0.17905809,-0.12311827,-0.016758094,-0.13163233,-0.29724059,-0.40551573,0.04705806,0.012464125,-0.12478447,0.10753456,0.23936184,-0.1551629,0.42744547,0.10483233,1.3456197,-0.08260712,-0.0064697266,-0.018838117,0.4613363,0.28038245,-0.06142533,0.13925788,0.27347845,0.46099043,0.038325146,-0.58752847,0.27759075,-0.13819262,-0.44722387,-0.22782412,-0.14551753,-0.026303722,0.20492734,-0.53609174,-0.06319152,0.20298195,-0.09532566,0.30288333,-2.333588,-0.15682217,-0.12866879,0.32608238,-0.16383958,-0.35306323,-0.09527074,-0.4466578,0.5176822,0.38099143,0.37157866,-0.6741863,0.5142908,0.49869892,-0.49577826,-0.14293689,-0.69905895,-0.04381407,-0.11949288,0.3464591,0.08755485,-0.13473518,0.12800096,0.26373228,0.48757207,-0.20759875,0.08843812,0.11721166,0.35135695,0.05088286,0.35533318,0.3386843,0.55077004,-0.18686628,-0.2611567,0.37176043,-0.27344698,0.23381312,-0.0027705522,0.059536677,0.26711825,-0.24800624,-1.004512,-0.7560889,-0.5200566,0.8440752,-0.10794893,-0.4780881,0.13924083,0.028764175,-0.18021232,0.14128643,0.6609436,-0.05109546,0.24164003,-0.88594276,-0.07348839,-0.065432325,0.28973582,0.1416501,-0.11331536,-0.61741406,0.62373966,-0.25288326,0.23608762,0.60510653,0.20097388,-0.22105673,-0.63834834,0.1544834,1.049238,0.2865061,0.21048209,-0.24874511,-0.2375817,-0.28558952,-0.014050731,-0.08174737,0.69805837,0.68426204,-0.068116665,0.14916322,0.12613776,0.051064905,-0.010472298,-0.3382351,-0.49091727,-0.073627904,0.15859428,0.6617091,0.60965693,-0.19409092,0.3748081,-0.1853732,0.3817405,-0.30150136,-0.49973807,0.79786915,1.23299,-0.19057798,-0.058174856,0.8258124,0.30757293,-0.22536561,0.47696385,-0.88062567,-0.40380085,0.46444637,-0.111540094,-0.480272,0.30603626,-0.30043453,0.24481544,-1.0087636,0.5435819,-0.43110734,-0.3433372,-0.62030286,-0.07419555,-4.0495114,0.20250306,-0.26056334,-0.034200326,-0.024225043,-0.110217795,0.33043388,-0.6334604,-0.4439947,0.23819517,0.07072219,0.3744083,-0.04235104,0.102217,-0.34011617,-0.11148822,0.045015913,0.37762773,0.24766111,0.17438364,-0.0622816,-0.5466823,0.21018958,-0.19461957,-0.36918515,-0.024530364,-0.6794399,-0.47171587,-0.36907145,-0.6672199,-0.3033908,0.5839705,-0.5997325,0.00491971,-0.23978956,0.07096992,-0.17979845,0.482139,0.27190545,0.25095528,0.022163097,0.05791643,-0.23399888,-0.2510553,0.035364166,0.17759767,0.06584306,0.46570486,0.011250645,0.20550981,0.41955858,0.5900395,-0.0038647263,0.7509651,0.5966594,-0.051310215,0.30677754,-0.30488977,-0.2737901,-0.6939697,-0.42588538,-0.4507233,-0.4337422,-0.62191427,-0.06942158,-0.45762742,-0.73791176,0.5796515,-0.0684666,-0.19528316,0.14504537,0.18377605,0.34047204,-0.3360132,-0.13329071,-0.19335689,-0.07632732,-0.5960503,-0.30727887,-0.5730291,-0.75067294,0.04793906,0.79190165,-0.12657882,0.04631629,0.1251185,-0.08925702,-0.089277744,0.3875406,0.094567485,0.11130619,0.6119039,-0.05609946,-0.69652593,0.5682805,0.015920121,-0.4771498,-0.8105478,0.3477814,0.53384614,-0.8148683,0.76297724,0.43428674,0.09413709,0.05985604,-0.3667398,-0.3701809,0.16738299,-0.29883906,0.5588312,0.055533193,-0.7059873,0.3620047,0.37854972,-0.29457933,-0.7417931,0.75037205,-0.086003885,-0.4550218,0.2572926,0.27728385,-0.09619837,0.117264874,-0.45468476,0.1888124,-0.49283546,0.09235747,0.40223992,-0.059804305,0.5612648,-0.2033458,-0.18385158,-0.8744878,0.07884503,-0.71652293,-0.25727728,0.08870388,-0.026286233,-0.17848054,0.35559937,0.13665034,0.4180238,-0.33340344,0.19546501,-0.18936239,-0.27386376,0.35352293,0.48030627,0.17039658,-0.3408149,0.65576875,-0.11371163,-0.115991905,-0.3970604,0.067012616,0.58560777,0.16865046,0.55083424,-0.03393038,0.027981978,0.25698796,0.7777428,0.11742333,0.6130702,0.23742819,-0.07271915,0.22000489,0.14520855,0.24688159,0.1698993,-0.39282057,0.04730904,-0.05355737,0.1561564,0.39765263,-0.02559772,0.39038152,-0.1464984,-0.52061415,0.13717665,0.2706653,0.23388813,-1.1405011,0.37137696,0.2569609,0.585962,0.5654004,0.0816871,-0.003181525,0.50415957,-0.40105394,0.074222006,0.17617938,-0.13827604,-0.5179564,0.546349,-0.777299,0.24901772,-0.24350008,-0.01204011,0.00087149325,-0.090362325,0.26400286,0.9721676,-0.19997527,0.15669106,-0.07014736,-0.01634976,0.05474753,-0.3960312,0.12214338,-0.36398757,-0.4633003,0.7910343,0.5307477,0.43845809,-0.33654678,-0.03082226,0.12674361,-0.18185839,0.10472481,-0.041743305,0.24301559,0.07091182,-0.5579305,-0.33659953,0.6832637,-0.23653635,-0.018841136,0.0030160958,-0.47185713,0.26724178,-0.109798275,-0.02663512,-0.13111493,-0.859883,-0.01326163,-0.47816318,-0.3966088,0.7130248,-0.27511713,0.20625949,0.26204967,0.06530894,-0.3152216,0.667366,-0.080708966,0.71532464,0.2819969,-0.11265496,-0.29426703,0.24772581,0.3755496,-0.2014603,0.01710945,-0.3261926,0.25393268,-0.50953,0.40124246,-0.026640378,-0.3362334,0.06280038,-0.13936277,-0.12627237,0.48059353,-0.2270158,-0.3504251,0.50330514,-0.17860797,-0.18098405,-0.32142428,-0.16373755,0.21284556,0.047752228,0.114593945,-0.01655184,0.0085555455,-0.22982384,0.41245493,0.25463113,0.3787587,0.56768906,-0.041379903,-0.4114941,0.09975172,0.16151828,0.4941333,-0.14130987,-0.15315317,-0.17702444,-0.73612106,-0.34790054,-0.14982629,-0.17997397,0.25217426,-0.00053287926,-0.19749075,0.84487873,0.162837,1.2695115,0.04376805,-0.46825832,0.3116479,0.49684447,-0.08244639,0.0041535357,-0.5294404,1.0150468,0.59339774,-0.03961146,-0.014612966,-0.115700096,-0.19862762,0.21523446,-0.2187302,-0.11810802,-0.060929917,-0.7550965,-0.17896062,0.32210636,0.4418718,-0.031138454,0.035736404,0.25872436,0.0835104,0.02303849,0.13629562,-0.76181644,-0.12286575,0.21691893,0.25617316,-0.081651144,-0.017924497,-0.26694843,0.6397402,-0.5042689,-0.102277055,-0.5532423,-0.08811756,-0.27613294,-0.3035516,0.12530547,0.08388303,0.3264217,-0.33340877,-0.10075081,-0.31397966,0.43380898,0.32373288,0.11810009,0.71622646,-0.17635141,0.12733132,0.021343268,0.5960812,1.1556259,-0.55798596,-0.045941755,0.5112553,-0.4370845,-0.5301978,0.2941913,-0.34184396,0.11762946,-0.1557444,-0.45631468,-0.6193319,0.15205954,0.13223074,-0.12686414,0.11563598,-0.7269984,-0.095354564,0.3523374,-0.47642216,-0.3287508,-0.24176165,0.51313895,0.8012431,-0.38746983,-0.3226183,0.08005658,0.2794506,-0.25674385,-0.51397157,0.0075075924,-0.2374784,0.440647,0.2787131,-0.44515926,-0.034325983,0.20122027,-0.49801093,0.0006676041,0.42112985,-0.36483353,0.19044341,-0.3001823,-0.070026904,0.9289788,-0.051146183,-0.085743055,-0.7314511,-0.54071695,-1.0322996,-0.4356592,0.5482147,0.29269826,-0.03681924,-0.56355035,0.07477133,-0.09667203,0.10158633,0.07879866,-0.24648863,0.47291434,0.09473459,0.67061305,-0.073305495,-1.0231297,0.04725268,0.196139,-0.06829657,-0.5095727,0.40164274,0.025735388,0.9961086,-0.026758125,-0.030067077,0.2519803,-0.63120645,0.13613775,-0.38473147,-0.110711895,-0.9026489,-0.009096969,790 +738,0.2081976,-0.42045578,-0.30018157,-0.17713822,-0.46210903,0.002199549,-0.38284317,0.28664732,0.21866876,-0.15680067,-0.15689825,0.054647252,0.030533511,0.38915285,-0.24310587,-0.5456796,-0.3538881,0.088920355,-0.5964991,0.6588602,-0.49061102,0.22333051,-0.19382562,0.4473921,0.15108368,0.36215967,0.3550711,0.10969253,0.062687986,-0.09368928,-0.027415363,0.23119985,-0.47528994,0.2588787,-0.24765627,-0.36224002,0.111393966,-0.475564,0.0002371027,-0.71355826,0.39776427,-0.7328701,0.5022999,-0.09464081,-0.21680114,0.18222205,0.54769886,0.21788876,-0.30651978,-0.119339705,0.19254072,-0.13738035,-0.10734149,-0.48632935,0.0033860619,-0.35400918,-0.46302316,-0.14823362,-0.68149334,-0.33796236,-0.14256893,0.26147947,-0.29252577,-0.050294086,-0.036236003,0.37205127,-0.3626249,-0.012825398,0.2308148,-0.21350019,0.14672567,-0.7600814,-0.10445944,-0.0077237007,0.43827057,-0.0062463353,-0.10833592,0.55641073,0.04431849,0.20124608,0.1866669,-0.3600769,-0.37680274,-0.36156267,-0.015281274,0.3535009,-0.18963616,-0.30833036,-0.2925665,0.0246516,0.25635412,0.41772044,0.08492256,-0.013100037,0.10785698,-0.2392669,-0.0478673,0.76233184,0.38702863,-0.016806204,-0.3727501,0.17174624,0.6074553,0.3056055,-0.41182092,-0.18723682,-0.068886094,-0.41383737,-0.24462198,-0.03198928,0.08048487,0.3001394,-0.1514723,0.26836106,0.750931,-0.1439707,-0.062498808,0.021363087,0.07801747,0.0012111389,-0.4283026,-0.27214253,0.24443682,-0.54816353,0.07241443,-0.31114835,0.52761346,0.109682076,-0.6214669,0.3071041,-0.6556692,0.09902726,0.050353903,0.5189433,0.5410431,0.53774023,0.3347742,0.80715466,-0.038489874,0.06304535,-0.10502274,-0.11379225,0.051743165,-0.32660535,0.16701882,-0.5401032,0.2682327,-0.21285473,0.26822758,0.06404407,0.30469948,-0.52547544,-0.18985489,0.2806379,0.6748089,-0.27350837,0.09971019,0.80247724,1.2139661,1.1753951,-0.101101875,1.0595921,-0.02596945,-0.23843028,-0.056329217,-0.1175106,-0.6377704,0.21929234,0.41367406,0.0070533934,0.45536885,-0.15663888,0.09708564,0.30221793,-0.44277096,-0.15427397,0.13712955,0.46341005,0.4013851,-0.014752372,-0.5045894,-0.16071358,0.068758,-0.00011596313,0.33097723,0.20711218,-0.1948003,0.32666257,0.020524066,1.2606237,-0.08845771,-0.01946301,0.21920456,0.65136534,0.29751417,0.045621064,0.123756394,0.41403368,0.22739506,0.16279373,-0.5179882,0.3023089,-0.32014135,-0.55463815,-0.08107611,-0.40736425,-0.27595437,-0.09073536,-0.19075195,-0.24717654,-0.21165857,-0.26028925,0.15800397,-2.8633063,-0.27694273,-0.108901456,0.31057915,-0.20920143,-0.07068643,0.07118782,-0.3810599,0.42544812,0.2915045,0.40143284,-0.48088625,0.4271213,0.75974333,-0.7140216,-0.067093,-0.5370405,-0.18567361,-0.099309355,0.74559987,0.1275128,-0.15970248,-0.24339986,0.41971922,0.6391725,0.20463617,0.20177604,0.45564836,0.41420272,-0.2765078,0.59967047,-0.0270629,0.432199,-0.49110076,-0.12816538,0.3478526,-0.5015717,0.14635263,-0.33844006,0.048833303,0.59064186,-0.42369205,-0.8866228,-0.5214427,-0.073801175,1.0199257,-0.14501128,-0.55402166,0.20262879,-0.46725085,-0.02933064,-0.07407181,0.4989528,-0.16176802,0.144589,-0.6418941,0.13975438,-0.15740536,0.15723583,-0.05467935,-0.0018208554,-0.652682,0.79858124,0.09499281,0.61284614,0.21729788,0.20395741,-0.4852072,-0.22707517,0.08494207,0.52703243,0.42603067,-0.029339217,-0.0023489497,-0.22067173,-0.05635103,-0.20623578,0.058487747,0.7371876,0.5313649,-0.0568754,0.27997473,0.33864278,-0.18104628,-0.011285846,-0.15569629,-0.12131907,-0.14091411,0.13368294,0.51291716,0.8314661,-0.088045835,0.32480064,0.040881082,0.465065,-0.11280557,-0.4495445,0.52952015,0.56615824,-0.14397758,-0.10724381,0.69508374,0.5180429,-0.36854208,0.48590198,-0.65136725,-0.30820206,0.78046423,-0.27111146,-0.47437197,-0.0024352623,-0.18588541,0.02047807,-0.60238343,0.21516524,-0.36989287,-0.3057935,-0.57191986,-0.25153637,-2.7350833,0.054569747,-0.1792126,-0.13671528,-0.50139356,-0.22589773,0.11519276,-0.7410875,-0.70682865,0.2541385,0.17639908,0.635099,-0.15887783,0.08792749,-0.2627671,-0.41813585,-0.038522117,0.38607088,-0.07371239,0.2063845,-0.1528412,-0.43582967,-0.118913166,0.0072936187,-0.73142076,0.09955177,-0.44561768,-0.350214,0.11046687,-0.6435007,-0.14195287,0.65390885,-0.24503905,-0.04025948,-0.31487894,-0.0016022279,0.019020753,0.056736164,0.082217336,0.16009004,0.3647356,-0.05432952,0.24176,-0.26163894,0.48326427,-0.008161857,0.43898004,0.04156065,-0.012629846,0.18440507,0.40133908,0.6105892,-0.27887142,1.1473327,0.34633714,-0.11486065,0.36862782,-0.29011628,-0.32010058,-0.53535414,-0.24143511,0.30374667,-0.21942538,-0.3753634,-0.06574158,-0.3012388,-0.7548647,0.7477871,0.04196763,0.4016163,-0.22080477,0.23154236,0.28207806,-0.2583628,-0.034435127,0.05722565,-0.15049936,-0.474616,-0.20600605,-0.6034601,-0.43602106,-0.1251955,0.68905187,-0.3364403,0.013724951,0.25286725,-0.32463706,0.20122266,0.16437332,0.13661565,0.30255383,0.36879247,0.29583234,-0.6254705,0.45779264,0.031770352,-0.11685658,-0.32744887,0.12058462,0.6100044,-0.6351712,0.44841224,0.3968374,-0.08002312,-0.34042037,-0.52874625,-0.04036264,0.052738097,-0.17439644,0.45246363,0.27319536,-0.9310669,0.58141166,0.11575275,-0.41528237,-0.6765343,0.3302386,-0.19436227,-0.33546856,-0.12630984,0.36466244,0.31684577,-0.050128307,-0.0930996,0.31761262,-0.26805618,0.21012737,-0.12410001,-0.0039457586,0.35492358,-0.040334012,-0.31400996,-0.77005386,0.10726759,-0.4956957,-0.36883977,0.41666666,-0.15703772,-0.25216302,0.20014328,0.11910199,0.33837286,-0.2784321,0.116934225,-0.01721693,-0.43415928,0.19006634,0.48411682,0.4123631,-0.40337107,0.4597521,0.10907933,-0.16824624,0.20253974,-0.20471555,0.36221042,-0.11915334,0.5628688,-0.10276706,-0.029050099,0.4532844,0.6693345,0.22361138,0.27330664,0.033124622,-0.106172755,0.4423863,-0.08251424,0.1989207,0.0016990167,-0.4423024,0.14403765,0.03138543,0.0070753004,0.4673465,0.290155,0.3867428,0.24501465,-0.2769979,0.027191909,0.19850866,-0.22987865,-1.4392571,0.31150377,0.23930913,1.0161121,0.5009097,0.13142921,0.002227201,0.7972052,-0.13894318,-0.12191558,0.57760817,0.1841581,-0.33307374,0.8431905,-0.4269991,0.5458669,-0.17253658,-0.12244408,0.049033985,0.0700715,0.39323714,0.6760321,-0.24202336,-0.0015834707,0.097518004,-0.18987519,0.106937185,-0.29547378,0.03892811,-0.1899928,-0.36279795,0.57280767,0.35006955,0.39116016,-0.22757635,0.10942503,0.11730768,-0.20935968,0.29811674,-0.13779055,-0.31370395,-0.04286544,-0.4957199,-0.050267898,0.47932693,-0.02395651,0.28531548,-0.2510513,-0.27762702,-0.0005395642,0.014961213,-0.0034318613,0.05011844,-0.63687265,0.15235922,-0.077693336,-0.53499514,0.6510525,-0.34371036,0.015598964,0.36387575,0.054110453,-0.1799944,0.1398936,0.14334607,0.5430375,0.054665584,-0.20833573,-0.18503366,-0.091024384,0.08174462,-0.3191722,0.23418361,-0.39493254,0.300033,-0.45919836,0.62317175,-0.17198688,-0.47607586,0.006237099,-0.3028845,-0.06740807,0.5430419,0.023042591,-0.08210557,-0.10829876,-0.17968628,-0.25528938,-0.27582008,-0.44701767,0.32402208,0.12060295,0.045690186,-0.26252848,-0.3064113,-0.27121168,0.64930177,-0.08503657,0.40600315,0.19569103,0.026695298,-0.20799288,0.2885422,0.16079427,0.5240014,0.0128811095,0.06576702,-0.29798275,-0.39377445,-0.3481149,0.5166846,-0.15121277,0.10533821,0.06243915,-0.30644247,0.90469486,-0.054229006,1.0902743,-0.06663558,-0.45121038,0.124623075,0.5404555,-0.2323235,-0.013159534,-0.3778119,0.848199,0.4828967,-0.2720943,-0.0528208,-0.5046319,0.066064864,0.40334246,-0.41259772,-0.086861186,-0.21451084,-0.4731666,-0.5314421,0.27453044,0.116383545,0.1074088,-0.18562023,-0.13477263,0.07137389,0.1923998,0.42509905,-0.568836,-0.09395656,0.2947509,0.009935713,-0.17018682,0.13602759,-0.48859823,0.39148316,-0.5912112,0.31707942,-0.5526137,0.14756249,-0.4590132,-0.2842675,0.051875595,-0.13629432,0.31450436,-0.32055137,-0.5352901,-0.123606905,0.15636796,0.06202839,0.17218593,0.38694194,-0.24461174,0.15292105,0.03545005,0.56094337,0.94438523,-0.33394873,-0.09254517,0.101470396,-0.5896359,-0.70791525,0.2530429,-0.441625,-0.12882987,0.064643286,-0.32481816,-0.5245593,0.19854857,0.19812125,0.22950587,-0.051369444,-0.5347649,-0.18993303,0.29828686,-0.29871148,-0.23051964,-0.15596806,0.11940844,0.7635297,-0.15837458,-0.25440544,-0.02250465,0.3950308,-0.25962797,-0.6311992,-0.034919932,-0.34344688,0.54285204,0.0049168766,-0.20208052,-0.24881032,0.103382036,-0.5787366,0.10283525,0.40367156,-0.2788332,-0.048675485,-0.12079351,0.106503434,0.842419,-0.23220521,0.09576954,-0.4406484,-0.50189006,-0.9590875,-0.34215906,-0.04929084,0.17398132,-0.019087724,-0.4481207,0.019348796,-0.27766064,-0.318608,0.14375296,-0.48341906,0.2396992,0.17291337,0.4874352,-0.40945,-0.9210033,0.20483392,0.1512905,-0.00041558192,-0.48134306,0.69828606,-0.12077885,0.6566442,0.104087405,-0.14689215,-0.11637434,-0.28317845,0.18173078,-0.20316178,-0.12665112,-0.57848513,0.12461587,791 +739,0.2612925,-0.3004743,-0.3780605,-0.104483925,-0.029050576,-0.040195886,-0.04161811,0.428784,0.12308241,-0.33488163,-0.17059883,-0.33696622,0.08463601,0.2000241,-0.12082373,-0.47130612,-0.24494277,-0.033995155,-0.44429412,0.5980798,-0.3489613,0.07920973,-0.029523104,0.3418534,0.19974183,0.3304189,0.0053112092,-0.14168976,-0.029541254,-0.21180776,-0.12434174,0.18808174,-0.66908497,0.0718403,-0.022264259,-0.11823415,0.00659883,-0.57059985,-0.55588275,-0.5932993,0.3828315,-0.9051039,0.4631845,0.13660023,-0.03952124,0.4634969,0.025139295,0.2908734,-0.345013,-0.06550128,0.18423972,-0.07250709,0.1177429,-0.19928718,-0.103329025,-0.15336484,-0.49370462,-0.041195825,-0.26413736,-0.4743119,-0.3246413,0.06416187,-0.40012103,-0.0945673,-0.13715698,0.5194807,-0.41676757,0.17182356,0.21488388,-0.14320746,0.39551023,-0.5916017,-0.21623626,-0.08769398,0.22478434,-0.21409567,-0.13992788,0.21564916,0.23581603,0.16225466,-0.080703735,-0.051800225,-0.2192011,-0.14607516,0.2890119,0.43945152,-0.18665045,-0.4231933,0.071293384,0.18032596,-0.23795591,0.22329752,0.10293133,-0.35766172,-0.24691504,0.032443002,-0.18700527,0.30282027,0.40684965,-0.15991277,-0.25855872,0.38420922,0.41034713,0.28953466,-0.061169066,-0.17473856,0.044377122,-0.5365407,-0.10514261,0.037261274,-0.28442395,0.5118586,-0.080178335,0.21804234,0.6818483,-0.14201106,0.06768811,-0.03231559,0.03796267,0.023442177,-0.39771622,-0.196819,0.19196709,-0.25063026,0.27106392,-0.016550424,0.6832174,0.17210634,-0.6027968,0.34062195,-0.5855776,0.19347073,-0.11151978,0.48821023,0.51387507,0.37860093,0.49002832,0.58610255,-0.46892774,0.105029896,0.0060780644,-0.42450854,0.06028563,-0.07426173,-0.12476078,-0.4581414,-0.12001885,-0.010145233,-0.13128726,0.11743914,0.16273928,-0.42887035,0.06851025,0.24466673,0.9747601,-0.21207438,0.018812578,0.5815088,0.9368147,0.867843,0.074288085,0.94054157,0.09516309,-0.26804832,0.3098496,-0.27675942,-0.81889397,0.24754895,0.40920323,-0.11309944,0.11939899,0.16311537,-0.005752059,0.22118014,-0.37133318,0.11460066,-0.2545163,0.14200065,0.29079315,-0.19659552,-0.37577146,-0.15712231,-0.22353598,-0.01857585,-0.14068134,0.012049451,-0.10911242,0.30392203,0.013312464,1.7547338,0.021167208,0.16928083,0.102274254,0.38762915,0.14558369,-0.057524838,-0.08458662,0.5245521,0.45049766,0.31160703,-0.6412927,0.26892757,-0.14965881,-0.31418616,-0.080222055,-0.40146822,0.044863723,0.03810531,-0.3224193,-0.09162081,-0.13218667,-0.19761041,0.40840164,-3.1604452,-0.04997174,-0.13967687,0.34598795,-0.2516114,-0.21755911,-0.00899313,-0.37422392,0.44556063,0.36513966,0.5222215,-0.5940961,0.19186133,0.40247154,-0.45622107,-0.16454765,-0.5320715,-0.16058579,0.07972579,0.42436355,0.025424829,0.16452636,0.059927013,0.094705835,0.36795026,0.004296156,0.049511578,0.22140357,0.4720341,0.04634089,0.6622001,-0.08129129,0.4225101,-0.10730395,-0.11738073,0.1914575,-0.17187275,0.30308962,-0.03284258,0.113376126,0.38633382,-0.359734,-0.7625393,-0.54881,-0.37099215,1.1849355,-0.32997125,-0.3126256,0.3473655,-0.28062293,-0.25259152,-0.16631392,0.38541287,-0.110478885,-0.0852762,-0.7875419,0.017860197,-0.10432946,0.27126202,0.0130402185,-0.16740161,-0.46359092,0.63703704,0.021743318,0.46736023,0.46805507,0.048285425,-0.20433642,-0.44973865,-0.07199193,0.7736474,0.29877248,0.11854447,-0.20960191,-0.1751175,-0.16451451,-0.027617987,0.09107339,0.51734173,0.5507794,-0.05507634,0.1729206,0.2694592,-0.0023668546,0.015988262,-0.15484905,-0.20113407,-0.097884424,-0.18857478,0.43442598,0.586844,-0.14602445,0.38728574,0.008243795,0.28159603,0.09485049,-0.32825544,0.3684311,1.0495436,0.003768499,-0.2277299,0.43345514,0.48380595,-0.2797193,0.26781872,-0.32202017,0.007298758,0.6912431,-0.26377475,-0.5579906,0.39770615,-0.24157262,0.00486704,-0.83566993,0.2955085,-0.19006616,-0.52145076,-0.6442748,-0.13476992,-3.6586206,0.119415,-0.36617753,-0.3582896,-0.12513843,-0.13335837,0.117525905,-0.58817136,-0.5328439,0.19978389,0.1041952,0.5169933,-0.1481747,0.13731557,-0.25534174,-0.017099926,-0.19215035,0.16798598,0.19295636,0.2227148,-0.041009232,-0.3799427,-0.22079875,-0.026954876,-0.46359614,0.13045731,-0.5005751,-0.32901156,-0.07995362,-0.56962556,-0.28705272,0.63451993,-0.21545385,-0.07280523,-0.11109035,0.056046642,-0.15985925,0.20794685,0.21647933,0.29766214,-0.09742455,0.008063988,0.042896233,-0.32815382,0.41644093,0.13220051,0.29245698,0.19739944,-0.07102074,0.18671156,0.27314714,0.51227033,-0.053954855,0.6629482,0.4891106,-0.1565412,0.17580599,-0.40413892,-0.3230829,-0.5479446,-0.30563626,0.096681915,-0.29821345,-0.5380614,-0.09229236,-0.32864243,-0.6578871,0.48057446,-0.015006075,0.012092984,0.012517883,0.237804,0.5656701,-0.10903972,0.008202901,0.07757068,-0.0778106,-0.61278325,-0.10754328,-0.4997401,-0.40279862,0.1576828,0.65474063,-0.21858412,0.0122640915,-0.07925717,-0.3840437,-0.033109125,0.050218936,-0.17500421,0.3706781,0.44183797,0.08965463,-0.5714644,0.5940432,-0.102587104,-0.29748142,-0.67118794,0.20106865,0.53327554,-0.6255239,0.67360216,0.23109637,-0.08116167,-0.1527256,-0.40336528,-0.3191343,-0.17691554,-0.1399782,0.19618633,0.061798472,-0.599268,0.33546337,0.3809052,-0.24636687,-0.665797,0.52195936,-0.058946483,-0.45724905,0.1842699,0.23285219,-0.036493316,0.029500447,-0.011633782,0.33434945,-0.26856154,0.14901859,0.20780791,-0.059667394,0.16044536,-0.009839837,-0.065733396,-0.7449655,0.22359775,-0.3403913,-0.26568353,0.41914865,0.1519709,0.13696197,0.09001584,0.055763815,0.36168385,-0.14419152,0.16142409,0.004054292,-0.20464896,0.26354328,0.3470278,0.35022166,-0.5110299,0.5162172,-0.02259039,-0.06896522,0.107026294,0.17957598,0.3563766,-0.029391233,0.27417448,-0.009171688,-0.1300188,0.23809136,0.69346356,0.16795278,0.5739776,0.036755506,0.06084367,0.42933792,0.053684626,0.18289599,0.0526941,-0.6118777,0.18837279,-0.15405777,0.10933757,0.36416215,0.16917625,0.20233907,-0.16311875,-0.3796961,-0.006657853,0.4781712,0.29406914,-0.85002553,0.35164642,0.17339411,0.7675564,0.4588577,0.061798133,0.079960495,0.67158043,-0.095829114,0.0528094,0.29494917,-0.010432798,-0.6389439,0.44208738,-0.6540124,0.41709563,0.07315372,-0.08779511,0.0067724036,-0.058832135,0.3447054,0.64349186,-0.23576975,-0.06730027,0.07517986,-0.23136953,0.16954415,-0.48581484,0.15837945,-0.36769882,-0.34497517,0.44782373,0.6282224,0.20369527,-0.073387936,0.0061790487,0.03765682,-0.16427715,0.14236364,0.10350147,0.014916379,0.06827012,-0.8275318,-0.16773823,0.45530114,-0.18116735,0.19073106,-0.13752328,-0.120237656,0.34277508,-0.20455424,-0.17468296,-0.056465857,-0.69077295,0.26286498,-0.2643128,-0.49651334,0.2618343,-0.084637366,0.38333,0.14023295,-0.041730396,-0.133948,0.38278472,0.04164412,0.9120649,-0.12930363,-0.13152288,-0.54534185,0.104348145,0.0853566,-0.10862308,-0.009381115,-0.35706207,-0.0034765233,-0.4683615,0.47344765,0.09618558,-0.2841313,-0.10402071,-0.22748241,-0.015276512,0.58634675,-0.07758518,-0.061836455,-0.1736169,-0.3043799,-0.23142369,-0.069429144,-0.05284054,0.2889733,0.28468663,0.09079779,-0.039053857,0.017976325,-0.25739977,0.475798,0.049840245,0.5900069,0.17265862,0.06018017,-0.14684899,-0.39176434,0.08126342,0.45707446,0.0061378023,-0.11946269,-0.09286886,-0.4475556,-0.28063905,0.17512967,-0.11140398,0.5313688,0.023643076,-0.17955428,0.58133096,-0.1410423,1.0117817,-0.024782836,-0.32386,0.13798054,0.5799787,0.042577166,-0.14192985,-0.28405386,0.83485794,0.59178674,0.026926251,-0.09700576,-0.23545696,-0.042219102,0.0755416,-0.14856964,-0.13037676,0.013722376,-0.43547207,-0.16486028,0.08635083,0.19521922,0.33952382,-0.08278788,-0.026918415,0.13115685,-0.06724044,0.20963243,-0.31064174,-0.19119644,0.22531915,-0.012597712,0.03718153,0.0058748964,-0.49396974,0.48126903,-0.2426599,0.10223205,-0.3027508,0.18530765,-0.17145556,-0.16431767,0.16829467,-0.13896227,0.45111534,-0.4085844,-0.24016167,-0.2423582,0.3952827,0.193065,0.1714329,0.60623467,-0.19516698,0.18675733,0.020044757,0.5813874,0.7590392,-0.2711453,-0.0405983,0.37503004,-0.4351473,-0.4815219,0.33906958,-0.20944333,0.22802247,0.007259587,-0.06301709,-0.48600012,0.20294847,0.10950764,-0.0022161007,-0.03825494,-0.5792344,-0.3310327,0.21178213,-0.3443808,-0.18214332,-0.39857382,0.16553608,0.731439,-0.30580643,-0.23362753,0.0708887,-0.02864614,-0.13952118,-0.30935323,-0.0663803,-0.29452732,0.25918356,0.021384465,-0.28896523,-0.14413717,0.021914758,-0.27968615,0.23653929,-0.10116168,-0.3465369,0.0206543,-0.05342799,-0.2116083,0.96798503,-0.32031456,0.01964135,-0.60490423,-0.4543576,-0.6699246,-0.33164537,0.7392005,-0.13573964,0.07205625,-0.51714957,0.022595946,0.012261345,-0.14490546,-0.27329424,-0.29061657,0.46115282,-0.006180259,0.44030303,-0.21191362,-0.666061,0.28414363,0.07521879,-0.15549403,-0.74759126,0.5535939,-0.024330208,0.50329727,-0.0049123904,0.14653526,0.28863943,-0.32628188,-0.31032243,-0.25919583,-0.32582605,-0.6322652,0.1214982,793 +740,0.44777218,-0.24677786,-0.48636416,-0.21677725,-0.35503483,0.32909012,-0.40264782,0.41743466,-0.012197399,-0.58576506,-0.14054416,0.10223996,-0.09800225,0.39509794,-0.24348983,-0.5704552,0.015281489,0.24918866,-0.5132228,0.42424172,-0.5707546,0.33554208,0.052481472,0.33268964,0.10119511,0.21967497,0.06920053,0.032250576,-0.14606136,-0.061408166,-0.021512967,0.30183986,-0.5927454,0.449832,-0.083741814,-0.26958635,-0.06073112,-0.44218272,-0.20574856,-0.6434384,0.14288789,-0.73494315,0.45835158,-0.16197146,-0.48748296,-0.01106436,0.07738555,0.26672262,-0.3880083,0.089217156,0.21859895,-0.16168642,-0.2846064,-0.26046944,-0.09921581,-0.4871837,-0.5351584,0.02721968,-0.6091064,0.010758505,-0.18552718,0.28347316,-0.17924558,0.08294474,-0.21030268,0.1485336,-0.48130453,0.042476714,0.28936768,-0.16940166,0.06331502,-0.5759668,-0.1583634,-0.21578282,0.2740118,-0.0038059307,-0.20418574,0.08754224,0.3832555,0.7213549,0.069205396,-0.1931584,-0.10986351,-0.14481798,0.34721744,0.44468406,-0.054571785,-0.2379769,-0.41180304,-0.16427001,0.38371155,0.13441831,-0.018629588,-0.48196852,0.043288454,-0.020164521,-0.23544417,0.27844328,0.38279852,-0.38142425,-0.063019,0.34409478,0.5689417,0.11732464,-0.14524387,0.27772215,0.027890772,-0.4412322,-0.27818087,0.2738548,0.108067796,0.58734167,-0.15827993,0.24780497,0.59046054,-0.033605747,0.05034956,0.0018955126,-0.07379342,0.00059080124,-0.2901367,-0.19855794,0.1346428,-0.4622904,-0.022960229,-0.24940978,0.65982056,0.113389306,-0.6001547,0.37065446,-0.48122296,0.10587224,-0.07039492,0.6003407,0.7990563,0.4183187,-0.070037395,0.8688506,-0.57036805,0.051644977,-0.182925,-0.16345622,0.022264678,-0.111618645,0.10339183,-0.4689429,0.23641366,-0.050550167,-0.016812338,-0.18583068,0.4591537,-0.37254927,-0.18921067,-0.111175284,0.43522936,-0.48238987,-0.020505257,0.9527007,1.0091369,1.0339314,0.21669485,1.5541458,0.37080145,0.08500917,-0.18908978,-0.12628743,-0.53913254,0.14978361,0.2682266,0.5646888,0.19920236,0.13411132,0.06997584,0.52237767,-0.2755763,0.17311741,-0.15479864,0.32549903,-0.091048986,-0.017388344,-0.36169177,-0.24920405,0.18044971,0.054718282,-0.044029865,0.291913,-0.22086252,0.49948066,0.14294943,1.2461369,-0.17874326,-0.041299462,-0.04412963,0.091828786,0.18655385,-0.20343623,-0.10913908,0.17491928,0.45803463,-0.20671052,-0.61209065,-0.09340877,-0.17737392,-0.49944025,-0.22255479,-0.34421355,-0.053040225,-0.32021222,-0.44467437,-0.048179187,0.12635551,-0.32582253,0.5554441,-2.1974084,-0.44229332,-0.3504379,0.32775396,-0.24371368,-0.4024232,-0.31686875,-0.31305748,0.47305724,0.28105992,0.35233575,-0.51878697,0.6078156,0.30307415,-0.31618148,-0.15089561,-0.73846555,0.033059247,-0.07602521,0.20772862,-0.0042257104,-0.3032977,-0.24180096,0.13425504,0.70818424,-0.14596978,0.09228587,0.3665729,0.5526917,-0.1063821,0.54715264,0.14567767,0.5521298,-0.393451,-0.1108631,0.43068296,-0.512715,0.5414823,0.064102545,0.26719853,0.29380408,-0.58615166,-0.721878,-0.86002,-0.5006301,1.2318431,-0.39516094,-0.38229164,0.098250695,-0.21565373,-0.31474292,0.15600434,0.4167282,-0.0031929244,-0.012444625,-0.88157046,-0.139815,-0.040800277,0.1561981,-0.10553773,0.15462501,-0.45472234,0.69489646,-0.24827531,0.59915245,0.61755186,0.21533273,0.12649593,-0.2138853,-0.024487834,0.9662444,0.5328148,0.020514717,-0.27049673,-0.29367658,-0.27214867,-0.20411721,0.03950949,0.6646709,0.61655796,0.057580207,0.10980192,0.29069218,-0.15223056,0.014425294,-0.22168079,-0.3655419,-0.1283308,0.20762242,0.6528261,0.5842781,-0.012609463,0.33218992,-0.2045131,0.20252919,-0.2149745,-0.5657415,0.35986108,0.70373714,-0.12245737,-0.13622269,0.6079508,0.46757036,-0.34214735,0.37878683,-0.5547596,-0.3929332,0.5234188,-0.016902072,-0.26821983,0.07075586,-0.38666075,0.020459335,-1.0456446,0.3818293,-0.31454185,-0.6330379,-0.5331197,-0.33307302,-2.5843318,0.2979849,-0.073055655,-0.05883191,-0.17279403,-0.3476933,0.43366453,-0.434325,-0.65974617,0.18677361,-0.027631879,0.5033958,-0.072029516,0.011567602,-0.31945705,-0.17988198,-0.06622151,0.14127979,0.024427176,0.31701902,-0.026099874,-0.32255414,0.0894932,-0.397504,-0.33762577,-0.03551013,-0.79855084,-0.49883586,-0.060580492,-0.4010873,-0.173615,0.7166951,-0.5055057,-0.078199945,-0.25535262,0.010829659,-0.26072377,0.42785138,0.107402414,0.2376175,0.23918988,-0.03923422,-0.3356066,-0.36486593,0.07305356,0.18231504,0.092162535,0.35227495,-0.24896976,0.26624987,0.5521252,0.67738366,-0.13606158,0.84513164,0.23806928,-0.019861933,0.3426266,-0.2439846,-0.29329115,-0.43500835,-0.40444213,-0.29392654,-0.5452975,-0.48706034,-0.118634544,-0.22766227,-0.87745374,0.38107792,0.12746558,-0.07916951,-0.11077844,0.2316672,0.23014523,-0.13352884,0.03201679,-0.1682145,-0.16717614,-0.5316918,-0.6130314,-0.6343517,-0.5943735,0.09318801,1.3498574,-0.13600455,-0.043152615,0.08199019,-0.4219753,0.11880991,0.2182439,0.1678219,0.020687938,0.38577646,-0.09273918,-0.63697445,0.20661439,-0.099442914,-0.23113619,-0.49052972,-0.012846053,0.9454494,-0.6085183,0.62600136,0.55257076,0.17734753,0.19019549,-0.6035604,-0.29460528,0.120189354,-0.26192778,0.6272658,0.19061872,-0.67448705,0.46988553,0.35743824,0.014203429,-0.77299446,0.5573377,-0.0997062,0.12545927,0.14592847,0.43138072,0.04539915,-0.020298103,-0.23671879,0.24384898,-0.47221628,0.32799795,0.47457367,0.041512344,0.30715436,-0.24814898,-0.32670137,-0.66136384,-0.32047743,-0.5985938,-0.24672024,-0.017102746,-0.056412704,0.018256346,-0.02261273,0.3358445,0.31652334,-0.5759372,0.17678162,-0.18652418,-0.4101558,0.24340893,0.53902984,0.40304178,-0.39512655,0.558217,0.09144003,0.19262491,-0.34713304,0.0121933725,0.39754993,0.2785063,0.37362406,-0.28826106,0.116968796,0.07398586,0.83587384,0.17147948,0.39322215,0.23839289,-0.3769961,0.24291007,0.2489633,0.3855572,-0.22758542,6.533586e-06,0.16976312,0.035193913,0.21021408,0.33217955,0.16052581,0.4202673,0.000120833516,-0.06274707,0.15051256,0.096132085,-0.080018476,-1.182618,0.4450793,0.14117338,0.6557516,0.48709407,-0.030852538,0.23377217,0.3591221,-0.2835758,0.027517276,0.22789611,-0.04343835,-0.38727424,0.57007015,-0.6484818,0.39633295,-0.31655267,0.07038765,0.20644814,0.15572777,0.5486998,0.78045595,0.05691071,0.087429896,-0.015088324,-0.17003304,0.0021923094,-0.41378826,0.051695272,-0.4567194,-0.34533486,0.7570865,0.5227022,0.44338036,-0.3282455,-0.047684684,0.20654596,-0.17175242,0.18721996,-0.1843244,-0.07528941,0.0058409134,-0.7005654,-0.17760047,0.5416585,0.01024889,0.08383051,0.15962985,-0.57095087,0.3378434,-0.19566797,0.12542973,-0.032156408,-0.8131682,-0.12901093,-0.56037104,-0.44295093,0.09150473,-0.3450632,0.16589154,0.22068824,-0.05986949,-0.19526751,0.2691271,-0.034683466,0.9607064,0.1264935,-0.29561588,-0.20014682,0.05706402,0.41963407,-0.34958777,0.044361897,-0.405302,0.2336161,-0.74121124,0.3855023,-0.1953461,-0.14915001,0.41152418,-0.16779166,-0.040167835,0.43327788,-0.2957551,-0.07165844,0.22981215,-0.08148416,-0.20545787,-0.072489224,-0.3843687,0.2574135,-0.032001194,0.09870443,0.030075233,-0.10494753,-0.037745878,0.36798456,0.31191042,0.09760956,0.3970817,0.008424094,-0.2830816,0.06998605,0.05589565,0.44866636,0.24413869,-0.15506957,-0.1432913,-0.41337878,-0.2721281,0.5966286,-0.25313517,0.13090411,0.019834403,-0.26778513,0.7714571,0.20336929,1.1758106,0.16700941,-0.3464409,0.147307,0.512851,-0.009063661,0.077321015,-0.23076011,0.7643105,0.40723854,-0.21770789,-0.03770972,-0.49448887,-0.36483228,0.22468734,-0.29676548,-0.14324456,-0.23566605,-0.79832333,-0.25564334,0.13796549,0.1912462,-0.14220378,-0.06836692,-0.025507988,0.09607407,0.13394627,0.4353857,-0.7010714,0.07388078,0.41704544,0.29565716,-0.03440826,0.08306158,-0.29499963,0.46774995,-0.8299333,0.19764203,-0.60000724,0.010819742,0.013369535,-0.24488783,0.15676333,0.094837666,0.334779,-0.35552672,-0.3843794,-0.3457939,0.60806364,0.3152296,0.1856826,0.7131535,-0.33679694,-0.08578864,0.16902381,0.48902336,1.028891,-0.25932133,0.1534634,0.35135671,-0.2950056,-0.43349984,0.14630824,-0.5174622,0.08249307,0.0012839391,-0.4082134,-0.51368034,0.33855137,0.24163121,-0.02479478,-0.0064027216,-0.60073656,0.054833375,0.37425238,-0.18908869,-0.27509165,-0.23945493,0.25952613,0.6252193,-0.35181937,-0.4412482,-0.017023334,0.39121792,-0.34626552,-0.55297184,0.14457665,-0.43691298,0.3921003,0.073070064,-0.253008,-0.049511734,0.10052848,-0.42139813,0.0040720794,0.2319799,-0.3030569,0.072828986,-0.21121255,-0.0021311687,0.94132555,0.054355953,0.28413978,-0.56756204,-0.5462646,-0.80564594,-0.3202004,0.20762847,0.27418366,-0.07675699,-0.5012069,-0.019274367,-0.1980057,0.017715545,0.24211465,-0.42842886,0.44487378,0.23896892,0.41114527,-0.13117944,-0.8227599,0.042630848,0.11744593,-0.2490008,-0.3363952,0.4468706,-0.20315269,0.69402534,0.022425005,0.055922296,-0.14239891,-0.6601035,0.41487628,-0.3367074,-0.08846006,-0.7227141,-0.056887884,799 +741,0.5468374,-0.009602492,-0.5603284,-0.28547338,-0.23318177,0.06904054,-0.31917825,0.31087846,0.20772217,-0.5760129,-0.17598918,0.001589257,-0.100754976,0.16193959,-0.31151026,-0.76078707,0.17861854,0.09914715,-0.44147184,0.63612854,-0.4525105,0.43421495,0.1567723,0.2522874,0.25539136,0.15632841,0.27588543,-0.07931893,-0.22860476,-0.37975115,0.03387238,-0.046159565,-0.6711273,0.2711499,-0.25983796,-0.13769688,-0.020324528,-0.55373347,-0.32889602,-0.7819554,0.3552825,-0.7959652,0.6400093,0.015979894,-0.23928334,0.2958126,0.337596,0.23606199,0.04965795,0.0619046,0.17008305,-0.09596865,-0.28488043,-0.104285,-0.42155376,-0.39298975,-0.82076675,0.038339507,-0.6529364,0.029003529,-0.31059313,0.29717126,-0.34611064,-0.15706207,-0.14801694,0.5286761,-0.35688967,0.046868004,0.055491544,0.028063565,0.30102444,-0.6378475,-0.32834467,-0.06195951,0.3305561,-0.32204077,-0.10360934,0.30821976,0.2637888,0.480828,0.060169164,-0.30927187,-0.25104278,-0.1819372,0.25209856,0.5128279,0.022810737,-0.30177543,-0.15942205,-0.21467653,0.36202976,0.2904931,0.21242197,-0.18778324,-0.12973088,-0.12715806,-0.27965823,0.5209634,0.41975886,-0.3224066,-0.16625813,0.54404104,0.41022772,0.281146,-0.13070749,0.2075185,-0.13238406,-0.6491565,-0.1254723,0.3441974,-0.22124921,0.4506814,-0.25113964,0.24731986,0.6405105,-0.121917926,-0.08314382,0.14358285,0.040990133,-0.032047752,-0.14278007,-0.15432344,0.22249818,-0.5257585,0.20567688,-0.3020535,0.67876613,0.03835785,-0.80987275,0.16616377,-0.639842,0.056526586,0.12207591,0.5096048,0.65899175,0.3984227,0.23446769,0.691059,-0.34986085,-0.03590596,-0.027524458,-0.33154508,-0.049717344,-0.15970686,0.21382998,-0.45804945,-0.16314651,0.05930887,-0.1186722,-0.07359721,0.72973907,-0.3534649,-0.12510316,0.11564353,0.5106331,-0.2599447,-0.06789002,0.9104215,0.97340715,1.2651119,0.17141898,1.4737496,0.15634884,-0.1343891,-0.09074648,-0.08150565,-0.839219,0.34588817,0.39019173,-0.4304379,0.46871454,0.07791049,0.06827601,0.16930221,-0.45341396,-0.19312146,-0.10228468,0.4471462,-0.070041604,-0.19231789,-0.32672867,-0.38152137,0.060825944,0.0067782197,0.36652476,0.17945752,-0.18460923,0.37539703,0.13855997,1.1902137,-0.17369932,0.13655718,0.20179875,0.37325397,0.23199654,-0.08667207,-0.1962252,0.29002544,0.3580411,-0.06666444,-0.6052148,-0.28536737,-0.28295028,-0.27821207,-0.24919608,-0.42384827,-0.187828,-0.13734798,-0.23786177,-0.19273041,-0.22721638,-0.7052285,0.40217164,-2.5685222,-0.24148726,-0.23565385,0.30857372,-0.21164735,-0.3558211,-0.23635341,-0.5779251,0.67226326,0.233662,0.45613664,-0.47621992,0.33930463,0.6096357,-0.5225752,-0.141291,-0.6602595,-0.12009927,-0.1387639,0.26501992,-0.11371271,-0.11553779,-0.041397996,0.21046308,0.43668634,0.17062455,0.10743619,0.4770544,0.51851094,-0.03860718,0.5529897,-0.01946774,0.5374009,-0.26024482,-0.121434376,0.3890837,-0.5189876,0.3377112,-0.32237768,0.04705419,0.59455776,-0.6615355,-0.70112133,-0.6169408,-0.5063129,1.2667868,-0.15294585,-0.37636426,0.08987819,-0.13670784,-0.30354664,0.053219117,0.5598821,-0.3422814,-0.030962292,-0.69440293,-0.1357677,-0.15335754,0.19808072,-0.16631398,0.28979436,-0.5856124,0.68263465,-0.061590478,0.49581653,0.10867742,0.21196507,-0.49206433,-0.5671971,0.16891135,0.9326879,0.4163616,0.1226129,-0.25693002,-0.082841344,-0.38345754,-0.26205808,0.034172907,0.57473874,0.6079232,-0.1444328,0.23108509,0.33465847,0.018801836,0.20131384,-0.110816605,-0.29195744,-0.30816513,-0.12350552,0.6812782,0.5558256,-0.027434628,0.31464925,-0.17219445,0.13450152,-0.2968221,-0.34754273,0.5491922,1.0310773,-0.14280818,-0.27055264,0.616029,0.46434948,-0.18671523,0.5524993,-0.46139616,-0.4604708,0.5664727,-0.11417078,-0.42681196,0.17987856,-0.3908238,0.025851231,-0.79357105,0.35161048,-0.3606195,-0.42409563,-0.2920246,-0.16570385,-2.5876389,0.10798114,-0.20900276,-0.09876024,-0.2751605,-0.19893345,0.12417109,-0.4524787,-0.8117365,0.16424164,-0.09579863,0.75548905,-0.18686152,0.09852226,-0.17812903,-0.35002697,-0.6044925,0.21304633,-5.731674e-05,0.5252702,-0.019660234,-0.15335491,0.1183646,-0.32687446,-0.40760815,-0.05155138,-0.45780718,-0.35186762,-0.12823358,-0.54778665,-0.40768117,0.63823044,-0.4633896,0.037299022,-0.26537684,-0.18539903,0.04855698,0.36910692,0.05907366,0.41359553,0.12015621,-0.04378197,-0.12899777,-0.26315227,0.5371071,0.05935975,0.21476497,0.48089406,-0.2375691,0.24650961,0.3211694,0.6609358,-0.1493604,1.0534972,0.18252674,0.0630509,0.27556208,-0.24634108,-0.2420618,-0.5977431,-0.13490838,0.12660542,-0.4259093,-0.46674177,-0.17301725,-0.3615538,-0.77117914,0.46100727,0.12857863,0.28213722,-0.1817756,0.14401773,0.24041088,-0.09756427,-0.06589209,0.06804585,-0.15809257,-0.30288374,-0.29473895,-0.7396322,-0.35271627,-0.078126416,0.9460309,-0.13853785,-0.092623636,0.16472703,-0.19808862,0.24860865,0.05652012,-0.0011152854,0.032707114,0.4470372,0.28778923,-0.71893764,0.49939442,-0.070784874,0.057102546,-0.46712893,0.121210165,0.7033347,-0.40828946,0.5633729,0.48080796,0.1467241,-0.3628691,-0.7181117,-0.057916768,-0.056224685,-0.25325114,0.4032941,0.30602384,-0.789327,0.6197806,-0.032501336,-0.21904233,-0.9072628,0.5956801,0.01609726,-0.05555636,-0.037146203,0.5676685,0.09152721,0.043720648,-0.14882363,0.3032664,-0.23163718,0.45299184,0.22109228,-0.034507222,0.47858122,-0.20993064,-0.25235194,-0.6709188,-0.077894285,-0.5177238,-0.40548304,0.04434612,-0.08677444,-0.07904072,0.2856654,-9.191953e-05,0.37855515,-0.37157074,0.19155894,-0.0066478206,-0.13744004,0.31441814,0.4036761,0.6410023,-0.4239254,0.7249264,0.097607665,0.03173039,-0.11580332,0.066024676,0.41320372,0.018671026,0.37935877,0.12227701,-0.10853347,0.12732898,0.6789378,0.19145547,0.34015495,0.30534142,-0.25147673,0.25995126,0.09618243,0.355597,-0.16459192,-0.6224515,-0.0682856,-0.2599016,-0.0018762648,0.5221256,0.023050813,0.23424342,-0.16014808,-0.2517222,0.010519066,0.0058508837,-0.29306737,-1.5452322,0.33693093,0.18065692,0.7920855,0.5999865,-0.07010264,0.1867356,0.58528113,-0.19015358,-0.041149028,0.3073289,0.041449137,-0.30667922,0.5714093,-0.5266527,0.42288134,-0.08948509,-0.060201235,-0.041411776,-0.010347921,0.426005,0.97242767,-0.20071587,0.03506648,-0.0799992,-0.32740995,0.32330927,-0.3540862,0.16422462,-0.37154734,-0.29494306,0.60219574,0.3268898,0.3342767,-0.186217,0.06385289,0.036324546,-0.25757113,0.053856656,0.09166216,-0.11807284,-0.17296004,-0.5124446,-0.22989902,0.5138311,0.1973492,0.13748412,0.2608717,-0.172503,0.1333521,-0.1457103,0.18338571,-0.16419671,-0.9790277,-0.24508408,-0.3656245,-0.33213583,0.037049726,-0.33592921,0.28580636,0.31683162,-0.014946909,-0.15793177,0.24899714,0.39263132,0.569749,-0.06933487,-0.23126651,-0.16001175,0.05991474,0.20311746,-0.30567738,0.13234507,-0.1482186,0.24214743,-0.5667597,0.36011967,-0.19169745,-0.27763045,-0.0103153335,-0.15420453,-0.12005333,0.48457688,-0.2535599,-0.016464842,-0.102449775,-0.18864146,-0.01289696,-0.08985134,-0.026663532,0.12331417,0.28174752,-0.23141244,-0.18764785,-0.008762479,0.006800789,0.1565517,0.016945275,0.2931414,0.40303707,0.20450959,-0.4852355,0.13517173,0.18663652,0.5844912,0.07705314,-0.081351355,-0.17564593,-0.2746744,-0.2536711,0.6084255,-0.1133049,0.07493161,0.08331618,-0.2530111,0.6679714,0.29415208,1.0142059,0.12286265,-0.34867853,0.0061867097,0.6127897,-0.13607608,-0.0621192,-0.28968093,0.9814163,0.3319759,-0.20202413,-0.05619856,-0.4558008,0.029740501,0.030301442,-0.32600576,-0.18539436,-0.034425803,-0.44002655,-0.21011546,0.1259297,0.15228656,-0.06023618,-0.1401466,-0.15516385,0.37083608,0.2642568,0.5477336,-0.6700853,-0.1131055,0.38035664,0.15580234,0.09675254,0.19768961,-0.22898594,0.27301285,-0.6516977,0.22039482,-0.026966158,0.2895339,-0.26512992,-0.3709744,0.28424397,0.13011304,0.5450997,-0.26500207,-0.5146142,-0.15420192,0.40983617,0.15394685,0.19551224,0.7212768,-0.23130395,0.02478645,-0.06750716,0.6099864,1.1440654,0.012029366,0.24081524,0.30861202,-0.3770925,-0.66030055,0.18631443,-0.51895106,0.25045228,-0.09515742,-0.45820287,-0.31955698,0.08094036,0.16328067,0.24682131,0.10423827,-0.6766423,-0.4027594,0.43581718,-0.099049,-0.21861185,-0.3166138,-0.20127524,0.52476937,-0.16832961,-0.3979384,0.12707151,0.069712915,-0.29340693,-0.63202477,-0.005327555,-0.2640506,0.34343246,0.0759044,-0.25253984,-0.03906373,0.019956836,-0.5022976,0.18605992,0.21986508,-0.2612511,-0.120027505,-0.38248903,-0.07139384,0.7478593,-0.28411385,0.2054726,-0.3598321,-0.5027088,-0.8191426,-0.24972725,0.1577416,-0.059337754,-0.045775954,-0.52583563,-0.18089245,-0.16501552,0.06631832,0.1591528,-0.41020072,0.32936206,0.23821022,0.39125046,-0.1574457,-0.9264883,0.21710362,0.10176308,-0.27589983,-0.46010515,0.5238792,0.0017571037,0.5342032,0.18977188,-0.07529907,0.039480966,-0.59359306,0.37608343,0.008866709,0.060562313,-0.5854555,0.25043243,808 +742,0.40474924,-0.3958546,-0.42288283,-0.18337648,-0.0515334,0.02660623,0.030511063,0.69505507,0.21536987,-0.5475938,-0.2512843,-0.22499345,0.033657655,0.44400626,-0.13510524,-0.5918036,-0.094062194,0.22634807,-0.4118027,0.46734828,-0.36523658,0.17039007,0.0036289578,0.49306935,0.25657368,0.20671812,0.122399405,-0.08670917,0.043548163,-0.06499512,-0.13941884,0.16084577,-0.4634666,0.1632467,-0.08315876,-0.2710071,-0.0069397045,-0.46470267,-0.45779037,-0.74749416,0.41255176,-1.0943034,0.5577992,0.056298368,-0.30361617,0.28424093,0.097373575,0.38459045,-0.45248604,-0.07464469,0.23562472,0.045077622,-0.015101469,-0.16110253,0.011742995,-0.47617948,-0.58521324,-0.06747721,-0.18471195,-0.17572564,-0.19010808,0.07256147,-0.37531838,0.08083714,-0.0739456,0.5051103,-0.5123885,0.0956365,0.360988,-0.25481227,0.4117152,-0.57320017,-0.24377885,-0.1121318,0.23876174,0.014124405,-0.20343259,0.32970503,0.20003693,0.4525476,0.0044182814,-0.21007587,-0.11845554,0.006977402,0.10830165,0.36942562,-0.1079183,-0.51329154,-0.036664084,0.022392621,0.219653,0.256216,0.1452639,-0.25406477,-0.09493332,0.056380685,-0.16796695,0.21631405,0.5429301,-0.17729671,-0.26620194,0.4271112,0.74042237,0.070384115,-0.07446548,0.04140332,0.043050863,-0.513735,-0.15346292,-0.1012436,-0.4095969,0.56918365,-0.18982564,0.2999365,0.7844106,-0.19119486,0.07500253,-0.1426133,0.043245777,-0.38344806,-0.45366746,-0.37076208,0.35712975,-0.3377535,0.23193488,-0.20620301,0.77942395,0.2962926,-0.60105836,0.38424838,-0.48001114,0.23099194,-0.23285216,0.57851696,0.64236546,0.41482022,0.42652327,0.8577441,-0.6688928,0.07435266,-0.001847501,-0.3900933,0.12783621,-0.16228148,0.05093141,-0.5386419,0.001113534,0.054196317,-0.11966408,-0.032209203,0.32763296,-0.6368821,-0.081842974,0.07505241,0.9448734,-0.31064886,0.05140509,0.70078945,1.0326568,0.92573607,0.0027839197,1.2011693,0.45399162,-0.3544594,0.36563018,-0.3492273,-0.7854963,0.2827485,0.513173,-0.12592512,0.3304126,0.07221901,-0.08427076,0.51168805,-0.5007112,0.15229356,-0.25602332,0.25349215,0.026707767,-0.19686565,-0.5399064,-0.12462597,-0.12620504,-0.05909055,0.1187472,0.2326768,-0.20867392,0.4332255,-0.04082988,1.934891,-0.10210621,0.16753854,0.11951665,0.44698033,0.07860184,-0.18271743,-0.09753154,0.42360777,0.6402372,0.16916166,-0.64685845,0.2019038,-0.30351874,-0.54518455,-0.15785143,-0.38664988,0.13296773,-0.20337678,-0.24559747,-0.10270949,-0.15161355,-0.316816,0.3378333,-2.7450328,-0.26639974,-0.30947334,0.45804593,-0.4318497,-0.18492797,-0.0027712355,-0.42907414,0.4634557,0.4023318,0.54015416,-0.7214791,0.34746742,0.4088855,-0.6133379,-0.12829942,-0.6286872,-0.019608919,-0.028074585,0.36865345,0.0640309,-0.0021374042,-0.037786093,0.10098116,0.3779184,0.07076992,0.12479127,0.26295528,0.44574553,-0.047977254,0.54596555,-0.12359504,0.566838,-0.34518418,-0.074455515,0.3350485,-0.34583682,0.2597292,-0.16355468,0.050992027,0.47287938,-0.37821823,-0.7144743,-0.72389036,-0.27249372,1.1377046,-0.37514284,-0.39632687,0.1551889,-0.32386845,-0.101936154,-0.118977994,0.42554012,-0.17080171,-0.07122581,-0.8607714,0.049503967,-0.112216674,0.17594407,-0.02916765,-0.119931735,-0.4493507,0.7404632,-0.09963496,0.6306373,0.3071946,0.1313112,-0.17966476,-0.34844002,0.054594297,0.82480013,0.35938895,0.017507078,-0.04188512,-0.15104681,-0.38829106,-0.078966185,0.13360557,0.5121164,0.7042029,-0.095459096,0.056884393,0.31596088,-0.10002769,-0.05015129,-0.16582456,-0.28160527,-0.15154468,0.022553355,0.519846,0.70664936,-0.32539448,0.3639263,-0.2517385,0.32370642,0.02764688,-0.50503963,0.5537887,1.0042832,-0.20429724,-0.24969569,0.64324963,0.40909582,-0.37425563,0.37086198,-0.65299916,-0.15048221,0.58321625,-0.17350191,-0.44842437,0.08318831,-0.1756152,0.19502321,-0.9636785,0.25207216,-0.17984797,-0.4835222,-0.6611738,-0.16458867,-3.119574,0.1543307,-0.41402858,-0.18489577,-0.11793689,-0.145821,0.22028612,-0.7443994,-0.5630322,0.22990233,0.08740734,0.6031686,0.034114398,0.1908097,-0.27284425,-0.078804806,-0.2617572,0.07299784,0.09278529,0.29157722,0.11923076,-0.569118,0.010970657,0.16304687,-0.51526093,0.11064082,-0.6840887,-0.44709137,-0.21195021,-0.61111635,-0.2686516,0.6025905,-0.120243736,-0.042145923,-0.12178362,0.07224259,-0.20795427,0.20344298,0.012632793,0.20256445,0.004178542,-0.084273465,0.061516207,-0.30640623,0.31281155,0.06834254,0.36132213,0.10130199,-0.20225081,0.15506122,0.5531749,0.6130248,-0.07960308,0.6334239,0.5477032,-0.09502257,0.23692761,-0.22933343,-0.2596493,-0.5927694,-0.39649498,0.046721533,-0.4181161,-0.5207452,-0.0037590677,-0.45204633,-0.8190595,0.51882863,0.11072337,0.26993242,-0.0012855896,0.15726727,0.6812292,-0.19879624,-0.030422641,0.035037298,-0.20383777,-0.6767789,-0.26368916,-0.6985217,-0.4068163,0.3317613,1.0796294,-0.23125678,0.0968666,-0.036404986,-0.38761073,0.093446806,0.11129283,-0.22960685,0.03402158,0.35919926,-0.13889949,-0.6575908,0.50297034,-0.013408652,-0.14891686,-0.70246655,0.2837293,0.57295555,-0.62870324,0.7361035,0.15750544,-0.07824635,-0.24585113,-0.48422092,-0.29862335,-0.17664917,-0.20525402,0.41414374,0.12931064,-0.54442424,0.31316298,0.49443606,-0.19217756,-0.6880801,0.4761057,-0.20454161,-0.32553148,-0.09186555,0.20473348,0.06456899,-0.032620165,-0.22442804,0.21999392,-0.45119736,0.32712018,0.18397504,-0.13625157,0.40230793,-0.084194556,0.087513246,-0.8834479,-0.026409227,-0.6190008,-0.22390677,0.3214924,0.14918564,0.07595149,0.11028618,0.10881799,0.36368588,-0.1567912,0.05153151,-0.0038483785,-0.3334843,0.37594885,0.42893556,0.31517428,-0.5521616,0.5981376,0.037844874,-0.020041283,-0.025610153,0.027362052,0.4557344,0.21415713,0.5013033,-0.1405681,-0.27126655,0.40202242,0.726454,0.09349736,0.534644,0.14213122,-0.09531144,0.25569546,0.10705478,0.16898078,-0.03898029,-0.6281896,0.20742115,-0.17896914,0.16464084,0.44851524,0.317248,0.3169304,-0.021459414,-0.44908693,-0.04915174,0.15548143,0.013964415,-1.252076,0.43430254,0.15107603,0.89694023,0.4070897,-0.06913927,-0.095868096,0.7686039,-0.10667809,0.072809376,0.34574032,-0.16870168,-0.5373513,0.5960632,-0.7551044,0.37150776,0.029777873,0.049811747,0.012292147,0.1317985,0.3335371,0.61267096,-0.18410851,0.013390309,-0.107324906,-0.34165472,0.2993789,-0.5056656,-0.0012997779,-0.65787435,-0.3634155,0.43850997,0.62578666,0.43037355,-0.18652748,0.025735948,0.08977527,-0.057007156,0.23008886,0.11149576,0.0030850081,0.14772387,-0.79598373,-0.2784806,0.44090572,0.034502897,0.28856087,-0.07704818,-0.34298193,0.33517164,-0.29498422,-0.05703429,0.015891047,-0.72744244,-0.038743414,-0.22205855,-0.37267402,0.51095974,0.01948392,0.24597715,0.1755525,0.0395699,-0.14428808,0.18211463,-0.14494917,1.0902848,0.08135792,-0.26601574,-0.5490174,0.1673,0.12670615,-0.186542,0.11714848,-0.424947,-0.10521289,-0.4786641,0.6187741,0.12713298,-0.3925524,0.15040144,-0.2941093,-0.04017299,0.7339107,-0.2091808,-0.12256912,-0.18541394,-0.34194645,-0.27010676,-0.27036723,-0.13738748,0.31423473,0.15991813,0.26694348,-0.06943853,-0.03152733,-0.22244498,0.6644527,0.12611046,0.35293347,0.41756102,-0.11778879,-0.19900206,-0.31660637,0.22639753,0.38871306,0.10319422,-0.3025475,-0.22738549,-0.66781557,-0.40835094,0.060439523,-0.11079518,0.55790794,-0.0026282186,-0.16402476,0.73156065,-0.0065238248,1.2692928,0.01701753,-0.28257135,-0.036049053,0.6870368,0.19913766,-0.018641792,-0.28657353,0.8972835,0.64991343,-0.025176821,-0.052760545,-0.44814748,-0.11140775,0.3436306,-0.23474891,-0.18041764,-0.043284018,-0.74456364,-0.37574452,0.14801186,0.29950303,0.38666108,-0.011065213,0.052938085,0.21713123,-0.117122665,0.46021363,-0.3675755,-0.25572497,0.28944653,0.21735671,-0.07207355,0.034444265,-0.48610482,0.3975727,-0.50171,0.18248683,-0.26510498,0.13387631,-0.14282657,-0.33685714,0.1908043,-0.044667576,0.34636414,-0.41983706,-0.45665535,-0.06789226,0.66337514,0.30953223,0.024261286,0.6328884,-0.31009957,-0.02248956,0.1998482,0.5892288,1.029004,-0.28640038,0.15548757,0.41122335,-0.5529193,-0.75302655,0.4535133,-0.05829924,0.29250443,0.03169928,-0.23961376,-0.56502044,0.37721047,0.13232976,-0.2824825,0.05119485,-0.5578964,-0.17440979,0.42442137,-0.30986023,-0.12782334,-0.3962817,0.12912777,0.39560035,-0.24580605,-0.3730881,0.18071839,0.22207697,-0.14158237,-0.515514,-0.3040008,-0.4868198,0.33162647,-0.014638303,-0.44542202,-0.08715105,-0.056242876,-0.44435006,0.23386247,-0.1096241,-0.35014072,0.11523015,-0.33389062,-0.1645191,0.904144,-0.06725271,0.03353373,-0.74396646,-0.12879127,-0.87870795,-0.24513958,0.5926438,-0.010797159,0.026120892,-0.5964635,-0.018973626,-0.032662123,0.032052256,-0.28721306,-0.35401806,0.37122884,0.15685152,0.51903194,-0.037626456,-0.8234815,0.25977653,0.09892889,-0.20981234,-0.66486037,0.6354484,-0.048161425,0.86338055,-0.08763549,0.19897042,0.2481659,-0.45352015,-0.14896037,-0.2731301,-0.37758186,-0.6213121,0.0462063,811 +743,0.51466024,-0.078416824,-0.40440667,-0.13466908,-0.27709866,0.046154834,-0.18316779,0.66535884,0.25702536,-0.45838314,-0.07236874,0.09400467,0.07748172,0.48180962,-0.27216738,-0.6357743,0.28193188,0.1687348,-0.4881835,0.75222516,-0.42305756,0.2625197,-0.036332212,0.3062923,0.20291585,0.26149884,0.18860322,-0.04429467,-0.22501372,-0.14217892,0.12552714,0.2386488,-0.4205254,0.24794716,-0.07305523,-0.3134368,-0.12625097,-0.34268925,-0.38474685,-0.9033077,0.24300912,-0.78683937,0.4737717,0.0152843455,-0.38511163,0.2625888,0.30865067,0.25218642,-0.08897778,-0.18005382,0.15873638,-0.058514796,-0.23311652,-0.25455025,-0.07429615,-0.7289795,-0.5583225,-0.006276719,-0.55672514,-0.1529453,-0.28400844,0.15199511,-0.28842342,-0.15261282,-0.015141396,0.45825502,-0.45004955,-0.074961975,0.31607512,0.025554959,0.29222474,-0.76466346,-0.15950267,-0.119389646,0.38062257,-0.029603729,-0.28013104,0.38746879,0.38589635,0.4335915,-0.07780576,-0.18139234,-0.29464504,-0.059569113,0.09510735,0.349115,-0.307807,-0.6349977,-0.09305627,0.014014253,0.32130036,0.028806873,0.32673818,0.03558991,-0.13736436,0.08906564,-0.30774465,0.5367069,0.49990955,-0.26585263,-0.17276178,0.33811378,0.44406635,0.21794449,-0.35256666,-0.006663249,-0.03373614,-0.6251119,-0.12023988,-0.035016343,-0.021550534,0.5166277,-0.2892589,0.20694147,0.67575,-0.16023342,0.018431537,0.2785071,0.111356564,-0.07336455,-0.10818216,-0.14425696,0.22422518,-0.48810944,0.014702723,-0.27032602,0.7070558,0.11135765,-0.62974507,0.29668847,-0.5129122,0.08480306,-0.15139082,0.48686793,0.8019229,0.3776579,0.24500586,0.66069764,-0.12525544,0.030524515,0.0021578441,-0.33712453,0.25840074,-0.3370372,0.13685432,-0.5635812,-0.015673308,0.13033298,-0.1407698,-0.0066369474,0.42935893,-0.6008918,-0.36035717,0.20917346,0.7522692,-0.23911865,-0.26596186,0.8991943,1.0440695,0.8989824,0.074063726,1.0821992,0.09504734,-0.12545766,0.16980012,-0.15569021,-0.5041292,0.37393263,0.23914154,-0.23161481,0.36622497,0.02722146,-0.12062572,0.3708873,-0.2782981,-0.11777597,-0.23955372,0.3043595,-0.02018079,-0.43341506,-0.48398036,-0.3246744,-0.19084947,0.025740776,0.22796851,0.27713442,-0.06660095,0.34370103,-0.16298914,1.3304163,-0.10053937,-0.15373044,0.02878317,0.55688643,0.21062818,-0.14608857,0.15958157,0.2366084,0.2696743,0.17521164,-0.5227562,0.17872092,-0.24516813,-0.64207804,-0.07460597,-0.44500133,-0.1387044,-0.07177176,-0.49135897,-0.0285287,-0.14325118,-0.20657147,0.411112,-2.8259523,-0.22776367,-0.07937692,0.30414522,-0.16740799,-0.30205962,-0.1702459,-0.4347896,0.4590223,0.35959175,0.5070312,-0.66299087,0.4097594,0.3627421,-0.6418549,0.017859317,-0.6598846,-0.049507353,-0.12524891,0.4610222,0.10475501,0.046299413,0.39925134,0.3690149,0.5004281,0.046168227,0.15494624,0.19706884,0.33276036,-0.2547739,0.41781557,-0.086986065,0.5027737,-0.19558781,-0.22518362,0.26186645,-0.46377712,0.24343626,-0.14719234,0.0663367,0.46629518,-0.35214582,-1.01656,-0.5302993,-0.017621366,1.0998199,0.0012146464,-0.5141642,0.12117383,-0.48819005,-0.20945089,0.06228159,0.51148504,-0.031810503,0.06048423,-0.81690156,0.013074527,-0.17980789,-0.16343683,-0.07189092,-0.0025823105,-0.46285284,0.79426235,0.03559187,0.4207594,0.027321156,0.1306276,-0.5169996,-0.5996959,-0.079110466,0.6467103,0.47121128,0.083055034,-0.13958886,-0.19917724,-0.48549572,-0.036837693,0.16556086,0.84080017,0.56601864,-0.06821267,0.08096317,0.2310071,-0.11717299,0.09635333,-0.057671245,-0.35022444,-0.076255545,0.08184653,0.56481564,0.64440733,-0.2157533,0.5433451,-0.08181871,0.31184483,-0.25586608,-0.52579725,0.54303277,0.87505186,-0.2407723,-0.23992044,0.6259463,0.514673,-0.20697674,0.42731556,-0.5482617,-0.4175747,0.4772715,-0.026928421,-0.27092144,0.16195749,-0.3985306,0.073936954,-1.0772175,0.47399804,-0.50029165,-0.5437378,-0.57417285,0.012710929,-3.1116817,0.24766509,-0.28783134,-0.1692617,-0.3146715,-0.13438214,0.11394609,-0.7221469,-0.6125078,0.15650478,-0.01176638,0.804476,-0.18027584,0.04291431,-0.18219599,-0.3609842,-0.16742516,0.19962265,-0.0154963,0.54437315,-0.22367954,-0.39265424,0.016795125,-0.1629842,-0.40652338,0.11418009,-0.73626935,-0.6254684,-0.17465554,-0.4812614,-0.24834329,0.7129351,-0.29422855,0.062925674,-0.31193,0.024665007,-0.19661924,0.3808839,-0.0013542542,0.060933057,0.16829687,-0.035505656,0.10032464,-0.18912974,0.21779957,0.048696317,0.57597816,0.54476684,-0.15557688,0.41659415,0.7085421,0.6433814,-0.066519484,0.9290484,0.41643712,-0.08252597,0.2957651,-0.25130183,-0.13755837,-0.39552578,-0.34361458,0.01899391,-0.26698673,-0.33808038,-0.18413533,-0.46814096,-0.8245713,0.5266998,-0.052953463,0.14864646,-0.18066798,0.30746734,0.51788914,-0.13310535,0.038691465,-0.04661177,-0.19964449,-0.70061743,-0.18059376,-0.55130905,-0.35752964,0.042673144,0.87165654,-0.34275812,0.023668515,0.01511477,-0.16203536,-0.020118194,0.17998937,-0.072494775,-0.07118848,0.29898697,-0.20063135,-0.7322741,0.5386072,-0.3324827,-0.105005585,-0.34542635,0.3459547,0.52225083,-0.49612588,0.5659195,0.57040226,0.10485871,-0.18480578,-0.54954267,-0.15911902,0.04061175,-0.14197122,0.4544643,0.17108862,-0.9118381,0.54526705,0.35748965,-0.4086576,-0.63726515,0.72663075,0.05551823,-0.19322494,0.04293772,0.346146,0.26436916,0.04436717,-0.42340183,0.29308134,-0.5557863,0.18853474,0.12355567,0.07311051,0.33995593,-0.050337676,-0.214248,-0.7370128,-0.0054897116,-0.58314365,-0.30867583,0.06926289,0.042530205,0.1884341,0.10578334,0.16105604,0.30907297,-0.42697626,0.13585946,-0.12905413,-0.40285146,0.4302093,0.48423004,0.5473737,-0.540276,0.6184909,0.11475451,-0.053705037,0.0054783775,0.08411391,0.41360855,0.23252124,0.5870384,0.29206228,-0.03923904,0.09807498,0.8899137,0.19357315,0.42025533,0.07859883,-0.17224362,0.0051055597,-0.035548724,0.36185038,0.052433014,-0.4839687,-0.08808151,-0.3461726,0.19879802,0.44962013,0.10948761,0.18664867,0.10501059,-0.3872123,-0.0601343,0.13369799,0.0629934,-1.6178266,0.60774237,0.3990895,0.77891403,0.47452626,-0.122757144,-0.0060174465,0.78411335,-0.070099436,0.18381485,0.42143238,-0.013833074,-0.43531588,0.59554577,-0.87519634,0.4593695,-0.12380014,-0.061937526,-0.17770965,-0.012891307,0.29706377,0.8576424,-0.1744447,0.13625439,0.10242793,-0.48837978,0.21151437,-0.44816542,0.08887687,-0.45725292,-0.20669569,0.63495857,0.5641731,0.20366932,-0.19813612,0.12172763,0.17626065,-0.09269883,0.22381423,0.015234278,0.1990668,-0.21888238,-0.6601215,-0.14135653,0.44604918,-0.19388571,0.2515094,0.069863796,-0.077167615,0.28592667,-0.06274075,0.023048254,-0.08418059,-0.7634261,-0.02049123,-0.28859186,-0.3477292,0.6336654,-0.39865002,0.28791714,0.27466768,0.06252523,-0.2504784,0.28380674,-0.11046931,0.5173976,-0.20441426,-0.24619693,-0.2602639,0.09459896,0.22559644,-0.28204176,-0.05837468,-0.14019749,0.16702172,-0.4110351,0.44581664,-0.09965715,-0.24262816,-0.15782793,-0.034543082,0.107395165,0.3491968,-0.1606929,-0.123623185,-0.08654422,-0.059597544,-0.19660565,-0.13341388,0.033048175,0.32488808,0.34053266,-0.2428923,-0.20559001,-0.06527107,0.044607952,0.27870294,-0.14322357,0.39421278,0.4806271,0.26127613,-0.30434462,-0.037939865,0.46438405,0.49645784,0.049821276,-0.092495404,-0.44593626,-0.2846406,-0.41548255,0.12320049,-0.08073389,0.2925104,0.1761458,-0.12710355,0.6924591,0.014439211,1.2734733,0.069850974,-0.4088596,0.14943269,0.39509347,0.05811924,-0.14408289,-0.29432318,0.9559272,0.477068,-0.2050508,0.045065816,-0.48463124,0.09336869,0.36342797,-0.18863432,-0.20677081,0.023641655,-0.5785806,-0.31369656,0.3488448,0.28275087,0.079691775,-0.16302559,0.06448802,0.27833298,0.047883905,0.26430315,-0.5847243,-0.24276191,0.2390823,0.3508101,0.06299447,0.08248803,-0.46179405,0.36166456,-0.76349056,0.11490048,-0.26520842,0.2102111,-0.17987204,-0.45877331,0.17891158,-0.008794624,0.43698585,-0.23143044,-0.35925227,-0.14307944,0.3843388,0.20958713,0.08612331,0.42731446,-0.28388247,0.0055752993,0.16535307,0.5222185,0.98988986,-0.25994173,-0.09232697,0.23306936,-0.30793503,-0.9008946,0.3945759,-0.33219236,0.45572382,-0.11447334,-0.23771389,-0.7637098,0.33674657,0.39082366,0.18148944,-0.13107215,-0.5341224,-0.19949618,0.22234756,-0.3878493,-0.3059879,-0.38721767,0.13058554,0.5266043,-0.32297686,-0.25909603,0.0195181,0.3007968,-0.19645551,-0.5555858,0.022817511,-0.32754532,0.26622194,-0.004022667,-0.36981136,-0.21424708,-0.14254418,-0.4179851,0.544749,0.25127017,-0.28673953,0.19341399,-0.38871428,-0.021454912,0.7685115,-0.31633803,0.1496102,-0.48181117,-0.44006366,-0.69287765,-0.45614734,0.12389566,0.17154214,-0.06839407,-0.6343003,-0.08567299,0.07484689,-0.20266122,-0.10681101,-0.28804466,0.4690006,0.10958385,0.09685474,-0.048473835,-0.822469,0.20570675,0.21541896,-0.050323863,-0.5504245,0.3444945,-0.1631102,0.9319192,0.16266258,0.120506965,0.20413703,-0.2720075,-0.023984717,-0.058154687,-0.17650715,-0.61008286,0.013557563,823 +744,0.5566217,-0.2635126,-0.49485427,-0.15586366,-0.2256692,0.20638353,-0.24861643,0.47290632,0.1915056,-0.7781067,-0.3348341,-0.04185438,0.03676864,0.38677114,-0.23859875,-0.6555465,0.13861391,0.18379545,-0.46438164,0.40058264,-0.42657068,0.28724453,-0.04238665,0.3755245,-0.13462625,0.30360994,0.087647356,-0.07077542,-0.05090477,-0.18253945,-0.12828006,0.29729903,-0.62250775,0.2567587,-0.10532386,-0.30567604,0.14748342,-0.4588506,-0.28838885,-0.66037804,0.094546326,-0.9398051,0.5676394,-0.08477211,-0.32334745,0.08059858,-0.041791186,0.19636822,-0.28878802,0.13233986,-0.1938474,-0.18695985,-0.3117154,-0.2697921,-0.082704395,-0.41170385,-0.45078033,0.08851673,-0.49871746,-0.10656889,-0.23813684,0.144131,-0.28455865,0.080976,-0.101612695,0.51683414,-0.38387993,0.13163617,0.2651506,-0.25763017,0.069827534,-0.66826683,-0.1876387,-0.039004,0.34013432,-0.20435563,-0.3499511,0.0008634512,0.3592563,0.58905977,0.027178498,-0.115534425,-0.18579625,-0.12413417,0.13446528,0.54004025,-0.06518668,-0.53896356,-0.21296388,-0.028860606,0.27417699,0.15603465,0.22156113,-0.16224514,-0.13404891,0.013460983,-0.29069567,0.23537701,0.53699374,-0.40738875,-0.094770364,0.32471296,0.58119637,0.11450943,-0.025270987,0.17925797,0.0458401,-0.4736918,-0.19989358,0.021451276,-0.19858152,0.6127463,-0.12893388,0.3769057,0.48159486,-0.22313097,-0.01130702,0.17519471,0.058376793,-0.074554354,-0.35170886,-0.053347234,0.31621423,-0.39029413,0.011903529,-0.22361559,0.83082145,0.2606444,-0.6312121,0.248696,-0.4338497,-0.05718387,-0.13989276,0.6078871,0.5071786,0.48386523,0.196304,0.746365,-0.50113606,0.09953092,-0.2520619,-0.22933657,-0.17220767,-0.019740788,-0.089479536,-0.35452044,0.18625799,0.13036281,-0.04011834,0.037953623,0.3441297,-0.6165062,-0.030755801,0.11270972,0.65886045,-0.37490353,-0.22734293,0.949606,0.96527493,0.69829464,0.092756584,1.3088088,0.21447508,-0.10024753,0.029823853,-0.023312889,-0.65909153,0.33530352,0.43527353,0.2230251,0.3221424,0.24597289,-0.18730822,0.44539645,-0.2817102,-0.16240853,-0.19575068,0.23971483,0.07090005,-0.014214034,-0.6614648,-0.09673001,-0.08399598,-0.07859777,0.1100377,0.211944,-0.248814,0.4818155,0.08588651,1.3927001,-0.1355649,0.14162916,0.026881557,0.31448576,0.26744145,0.001733365,-0.108212985,0.43392244,0.3171673,0.05654835,-0.6582643,-0.00874544,-0.097327724,-0.57653755,-0.19168207,-0.29790804,-0.1193022,-0.17812599,-0.45675534,-0.09940266,-0.099786155,-0.31625035,0.52023757,-2.5453389,-0.32053906,-0.15766588,0.5993134,-0.32968113,-0.36611798,-0.16578865,-0.341816,0.3199643,0.3322123,0.4618696,-0.4791807,0.45399383,0.43954733,-0.4565266,-0.2681309,-0.65378314,0.10665818,-0.018443704,0.35131356,-0.0009329273,-0.3057509,-0.082824245,-0.13365014,0.59217834,-0.035958137,0.13884218,0.2999875,0.4037731,0.069400735,0.26721394,-0.00405252,0.6595964,-0.37263218,-0.23054272,0.3210888,-0.36092263,0.41003186,-0.06486655,0.19107498,0.44077793,-0.44456312,-0.78720284,-0.77765596,-0.2518087,1.2660611,-0.2502696,-0.4924586,0.13181043,-0.38702202,-0.33783847,-0.007872939,0.48645094,0.039555207,-0.050459918,-0.8090226,0.10252893,-0.113286614,0.23775145,-0.0034585595,-0.0045725843,-0.47008926,0.6637528,-0.18820015,0.5286001,0.2640722,0.3083477,0.046228684,-0.2430164,-0.08519965,1.1093314,0.40005928,0.29472664,-0.24490558,-0.2651959,-0.29951087,0.13891517,0.0538866,0.6480514,0.6655983,0.10307983,0.045903765,0.23336992,0.14387321,0.11369908,-0.2599798,-0.22459468,-0.17868087,0.12133147,0.6352286,0.43209442,-0.25489992,0.4022683,-0.14492081,0.294329,-0.24196829,-0.40151274,0.3973578,0.6893154,-0.3244998,-0.3368277,0.71557134,0.55417645,-0.44812503,0.37385994,-0.78169924,-0.41604668,0.45415694,-0.15346019,-0.3415601,0.23907876,-0.23605765,0.3641046,-0.97899556,0.3286462,-0.3551536,-0.60160327,-0.3824334,-0.119671665,-3.53809,0.34752178,-0.10341929,-0.14945401,-0.09498359,-0.3309023,0.21876425,-0.50435835,-0.49048138,0.24250712,0.007718011,0.70026237,-0.10328613,0.21099776,-0.21485966,-0.29881155,-0.051809423,0.11999829,0.10415467,0.21226004,-0.0937639,-0.41636986,0.08388043,-0.16322081,-0.27350342,0.10570867,-0.639266,-0.5342536,-0.11751747,-0.5128035,-0.16210732,0.56350017,-0.3654224,0.05984309,-0.330421,0.24235518,-0.18245292,0.31341532,-0.17523998,0.17369464,0.06401744,-0.08199635,-0.09700486,-0.32689983,0.24295601,0.085725784,0.12362926,0.4065997,-0.28045517,0.12110877,0.5904662,0.56784225,-0.01893696,0.8566757,0.35764027,-0.06825461,0.3900619,-0.13765998,-0.4325679,-0.4974263,-0.36713517,-0.01924345,-0.505942,-0.36696517,0.07820663,-0.35808834,-0.871468,0.6653645,0.034279548,0.08803756,0.068802394,0.60952175,0.6929022,-0.17413422,-0.11828954,-0.005665944,-0.22311541,-0.5256735,-0.34896007,-0.525701,-0.29534847,-0.0062620686,0.9535623,-0.36247987,0.060272194,0.018967362,-0.1258496,-0.064388424,0.24757624,0.13733095,-0.035086777,0.5000092,-0.08307788,-0.58625674,0.3291283,-0.17991854,-0.48601988,-0.4107048,0.19122536,0.72787505,-0.8916226,0.5400613,0.4879704,0.10477002,0.055080276,-0.46355835,-0.18516651,-0.0033884416,-0.20165235,0.44231078,0.30495232,-0.9720357,0.44441906,0.35916793,-0.08273174,-0.74897677,0.55431795,-0.07509542,-0.26742664,0.026555676,0.3960346,0.098282665,-0.063464135,-0.31923902,-0.053021945,-0.41746515,0.30063975,0.22757936,-0.054169975,0.44451317,-0.29614213,-0.16562718,-0.84982264,-0.22172864,-0.5885201,-0.14875793,0.29677776,0.031657454,0.09618175,0.16782239,0.20223786,0.5148031,-0.6222417,0.028798819,-0.10847517,-0.37670738,0.42522982,0.49693573,0.39972416,-0.31540903,0.63881904,0.01720671,0.004517327,-0.16954398,0.14365241,0.57944864,0.027609257,0.4527615,-0.06430632,-0.18455864,0.1111639,0.9645432,0.07136534,0.57993644,0.21162829,-0.020591088,0.2606933,0.116611116,0.2556023,-0.009907539,-0.47373435,0.06832287,-0.17257176,0.048800036,0.45117134,0.34166887,0.37365377,-0.013236174,-0.2502588,-0.029064242,0.14843625,0.09701676,-1.0285573,0.24830996,0.074348934,0.72468746,0.2332446,0.06669909,-0.03173273,0.50159657,-0.08858511,0.1695539,0.25110814,-0.083897844,-0.40075704,0.35465476,-0.629572,0.484801,-0.20712826,-0.052958146,0.13258402,-0.10066835,0.43977657,1.0659038,-0.14147006,0.04442088,0.07199863,-0.20337814,0.11795141,-0.52179563,-0.1099943,-0.66062826,-0.23905292,0.7117274,0.5280973,0.5703056,-0.26297882,-0.044570748,0.21530178,-0.03504815,0.18393418,0.062381074,0.13100998,0.015465514,-0.566713,-0.27443212,0.56549656,0.21490741,0.103904724,-0.003845169,-0.26234186,0.39728865,-0.10460997,-0.10404229,-0.013143379,-0.49584293,-0.06759943,-0.5162563,-0.6691956,0.24969314,0.03602815,0.10206222,0.2872221,0.024023114,-0.28695622,0.27136308,0.08292714,0.9013248,0.1147031,-0.27582258,-0.5978016,0.20385668,0.42831025,-0.2802014,-0.017113594,-0.31304285,0.16045786,-0.7148336,0.37020683,-0.09041062,-0.22534297,0.21864669,-0.090319544,0.009787897,0.504678,-0.15231544,-0.20005406,0.1239237,-0.23317719,-0.32327503,-0.21077463,-0.2563866,0.2018501,0.1548083,-0.13080344,-0.054969303,-0.1744278,-0.0040334463,0.24442601,0.23059545,0.18880223,0.2920372,0.032879554,-0.2903625,-0.03472646,0.21029614,0.62513196,-0.23164949,-0.1598161,-0.25656417,-0.6305864,-0.37305596,0.119787216,0.06428142,0.22941747,0.17424004,-0.14599861,0.79676396,-0.026863547,0.9510661,0.055061523,-0.40079692,-0.002133718,0.51001793,0.048723478,-0.07417788,-0.37186053,1.0673243,0.48182684,-0.017273473,-0.056263823,-0.4708064,-0.08939798,0.1449911,-0.28907716,-0.19585985,-0.15602805,-0.5981401,-0.32192534,0.1521762,0.23989399,0.1928704,-0.0067956275,0.25485784,0.31230348,0.016759321,0.14634529,-0.75674,-0.06624903,0.31575534,0.25138742,-0.057135556,0.021004558,-0.35556495,0.3594621,-0.78842914,0.055153828,-0.34092653,0.09235497,-0.16199623,-0.3598135,0.19995275,0.07563658,0.37149376,-0.41616657,-0.42679405,-0.24345915,0.44939998,0.08817257,0.0030686306,0.5278361,-0.14934161,-0.017980708,0.03004253,0.64366966,0.9709205,-0.21107318,0.2851897,0.49486822,-0.22589129,-0.5967289,0.15786941,-0.43593147,0.2422185,-0.07349871,-0.119590335,-0.537146,0.309093,0.3642168,-0.01773093,0.029872198,-0.6345402,-0.101254314,0.27366713,-0.33850157,-0.12760177,-0.07089487,0.13247989,0.6816922,-0.19238597,-0.19366394,0.076222904,0.4031328,-0.17016372,-0.5516449,-0.17253274,-0.38661894,0.26127273,0.06940938,-0.29537863,-0.1835405,-0.08974542,-0.37399134,-0.01343673,0.28732762,-0.24570164,0.05403187,-0.3923559,0.092416376,0.7557612,-0.1186376,0.3076762,-0.52809036,-0.4478078,-0.84990335,-0.16572572,0.36598316,0.13828422,0.12849398,-0.49939245,0.10255924,-0.08492219,-0.14179176,-0.082247734,-0.42317083,0.5803899,0.16549928,0.5272172,-0.08875212,-1.0101737,0.21354127,0.13765925,-0.42701003,-0.47680086,0.40193456,-0.13112146,0.9316264,0.053507593,0.07981859,0.211033,-0.7239663,0.01184412,-0.23452313,-0.043126877,-0.7739723,0.0059659663,826 +745,0.47876438,-0.18223588,-0.491929,-0.17565392,-0.31188107,-0.07411852,-0.09620139,0.62497747,0.27674004,-0.26010495,-0.22490153,-0.14693382,0.096032724,0.3839648,-0.23117307,-0.33327672,-0.13307662,0.1859641,-0.46939284,0.44386667,-0.32632515,0.061695613,-0.06598174,0.5686352,0.23664959,0.31094414,-0.07842199,0.008408317,-0.023050686,-0.1997194,0.02020981,0.33172593,-0.49259514,0.044216894,-0.2493833,-0.4146694,-0.053531434,-0.6547244,-0.5098577,-0.7063784,0.35582367,-0.8073339,0.43324152,0.17828688,-0.2549458,0.32110196,0.21652876,0.41037148,-0.2180298,-0.2592308,0.12920769,0.06680573,-0.01844655,-0.0976882,-0.098843575,-0.2692472,-0.6172676,-0.04399666,-0.24836224,-0.09583827,-0.20803906,0.11337865,-0.18883762,0.14247975,-0.061565913,0.49886197,-0.3784189,0.116191186,0.1649833,-0.16646224,0.22454913,-0.4587372,-0.19757873,-0.07305381,0.33578414,-0.18169403,-0.24830748,0.21005608,0.115357205,0.27580473,-0.2366301,-0.052348394,-0.44079462,-0.07018424,-0.109876975,0.5592538,-0.11341942,-0.46911204,-0.047242753,0.049075928,-0.055736475,0.21160811,0.09271462,-0.15600154,-0.10766317,-0.09332474,-0.12925868,0.47793722,0.45563275,-0.1618212,-0.16186619,0.25912002,0.49091795,0.2310902,-0.22576849,-0.1522115,0.07920348,-0.6082749,-0.077577226,-0.16749851,-0.20539245,0.43838686,-0.015922956,0.35577968,0.5521871,0.029828187,-0.08155257,0.08086646,0.064862475,-0.03919422,-0.38496664,-0.30343848,0.37455592,-0.24511649,0.31092688,0.047535457,0.5729333,0.04785545,-0.8385842,0.31373447,-0.641849,0.09457019,-0.16808377,0.36440057,0.52020437,0.24306844,0.46102226,0.6213861,-0.13845634,0.15097381,-0.020029591,-0.21851943,-0.04880541,-0.08794944,0.06545748,-0.52664024,-0.048575755,0.077852234,-0.2096338,0.29848355,0.2972174,-0.48875505,-0.11776691,0.43085402,0.8957323,-0.21190381,-0.05432489,0.74446553,1.0284207,0.826707,0.07048896,0.89500165,-0.047458664,-0.2154839,0.3293533,-0.25675717,-0.7598864,0.27685335,0.33325437,-0.057656087,0.25131983,0.06927525,0.076144174,0.37566808,-0.3867088,0.05654293,0.018864898,0.041065756,0.34403706,-0.02596752,-0.5570917,-0.28250453,-0.19976027,0.056670092,0.17843863,0.13961568,-0.19531171,0.24453679,-0.044854973,1.8465677,0.08574895,0.035220407,0.2210785,0.58496326,0.21039207,-0.27864102,-0.27500322,0.2666067,0.19554816,0.18972643,-0.41274807,0.30753165,-0.13219415,-0.44825464,-0.08015405,-0.36666277,-0.20871744,-0.07420189,-0.4603459,-0.09610136,-0.14686787,-0.3292876,0.40881914,-3.0735147,-0.06615431,-0.14164196,0.31041035,-0.12305359,-0.31626764,-0.09948989,-0.378604,0.30657285,0.45672962,0.47661364,-0.5917838,0.4334324,0.48881027,-0.6471173,0.014138148,-0.53016704,-0.19370529,0.12606512,0.28668317,0.055808607,0.049660917,-0.06378949,0.29505408,0.27609503,0.119269595,0.069453545,0.25585032,0.3546509,-0.0071099857,0.6079691,-0.1808336,0.34331134,-0.27398205,-0.21098372,0.24290334,-0.4316106,0.18520547,-0.1533967,0.14967933,0.51926076,-0.47602007,-1.054519,-0.5162376,0.018957766,1.0291007,-0.1627682,-0.24422564,0.33676305,-0.73041546,-0.34954083,-0.0014505937,0.5437694,-0.09399006,-0.07314278,-0.8318595,-0.17377223,-0.28167436,0.18584163,0.028332118,-0.16030478,-0.48140338,0.6533927,0.025969861,0.55381405,0.22681616,0.06663253,-0.3808257,-0.35531425,0.0005386082,0.6309481,0.18525685,0.15427707,-0.23665474,-0.24069048,-0.38621548,0.021966819,0.13162185,0.6331422,0.4666188,-0.051106386,0.13591234,0.19369599,-0.0069013974,-0.059366904,-0.11303636,-0.14201397,-0.096324354,-0.024527458,0.5340694,0.7748582,-0.19883603,0.44936305,-0.07602856,0.3584293,-0.17995748,-0.24641539,0.31091243,1.0018367,-0.015118608,-0.4051169,0.7419191,0.6614494,-0.34461233,0.33363116,-0.59960425,-0.13011494,0.22724144,-0.066231444,-0.3809066,0.1782659,-0.2856587,0.12830777,-0.84720516,0.082059115,-0.09559569,-0.39158243,-0.61987686,-0.1731128,-3.0388455,0.13189395,-0.111439556,-0.31272697,-0.050540812,-0.23531672,0.061700225,-0.6340214,-0.76942927,0.21411875,0.05958367,0.71808565,-0.11844084,0.18357159,-0.18238999,-0.18627483,-0.22249049,0.2766967,0.15439613,0.40221235,-0.04487046,-0.50884575,-0.32817265,-0.05272991,-0.38413733,0.10465522,-0.6552613,-0.35733965,-0.0660143,-0.6028208,-0.08872637,0.5645295,-0.27790004,0.02044493,-0.16578147,0.011798041,-0.16620973,0.2136953,0.040405147,0.06845965,0.08381482,0.02266955,0.09218777,-0.22703703,0.41151127,-0.051527016,0.3971554,0.21350288,0.009499247,0.2817387,0.50739765,0.653397,-0.14653759,0.88372624,0.5197557,-0.0221547,0.13283649,-0.21835779,-0.22910342,-0.3791497,-0.12598255,0.020799749,-0.32934254,-0.32027707,-0.013380032,-0.43557295,-0.7030445,0.58808047,-0.06301687,-0.093462355,0.16897112,0.16792573,0.6049789,-0.2897222,-0.016397094,0.044695977,-0.06378116,-0.60798717,-0.2989526,-0.4263386,-0.33084407,-0.062303882,1.1195387,-0.22642271,0.032790657,0.11099616,-0.33602735,0.0013773653,0.275956,0.007985206,0.15771297,0.47220188,-0.06278188,-0.5131545,0.4680635,-0.32632974,-0.2619951,-0.51515836,0.19489346,0.31965834,-0.5514758,0.60409504,0.28049538,0.15339053,-0.28171894,-0.4699302,-0.29117352,-0.059645988,-0.13832761,0.43049464,0.3671091,-0.7836095,0.23360273,0.2559651,-0.08701824,-0.8059698,0.60377604,-0.08973764,-0.45278805,-0.1556743,0.23423216,0.051698063,-0.014012878,-0.101757124,0.1545905,-0.11392975,0.13954058,0.15448783,-0.052898057,0.23890553,-0.316201,0.16309763,-0.7119496,0.11485672,-0.29680106,-0.18818389,0.41275105,0.02410349,0.18740486,0.19337603,0.013275468,0.20065716,-0.24096921,0.010147319,-0.198867,-0.34182853,0.28142133,0.30139375,0.6041974,-0.51957977,0.4976298,-0.00030809926,-0.081302375,0.13328211,-0.065122776,0.34470505,-0.22411187,0.35228962,0.017690722,-0.23934871,0.19855088,0.7002483,0.19371264,0.2778179,0.06614602,0.037633557,0.2670342,-0.09544984,0.14575578,-0.04530897,-0.6455249,0.23647778,-0.37660253,0.09872143,0.3069258,0.08542255,0.14705913,-0.06168317,-0.43979228,0.033002708,0.22710595,0.111570634,-1.2422484,0.37060654,0.14551575,0.9952421,0.4633687,-0.008057954,0.014380505,0.7763711,-0.064583026,0.17506728,0.36360568,0.12645465,-0.32069695,0.49276623,-0.5634917,0.64945644,0.040210146,-0.11421357,-0.06939541,-0.18562292,0.45933965,0.66381556,-0.2268904,-0.0372376,0.17568523,-0.2857184,0.07670697,-0.29385784,0.032795534,-0.7564709,-0.09757973,0.6492675,0.63942236,0.33821347,-0.077596396,0.05244273,0.08128117,-0.01519658,0.11444022,-0.009044765,-0.03206988,0.10223206,-0.7673328,-0.025076417,0.43247062,-0.03166836,0.15634724,-0.028101103,-0.17377523,0.25495908,-0.12185744,-0.20541793,-0.1386383,-0.71380526,0.026822526,-0.31726158,-0.52414954,0.44008255,-0.06434424,0.24061956,0.22981074,0.037033454,-0.26950514,0.4295548,-0.035190728,1.0079161,-0.016313076,-0.013023446,-0.34453124,0.065743476,0.12129091,-0.16000889,-0.22612332,-0.5298492,0.15687165,-0.550837,0.475705,0.05858612,-0.48231924,-0.09739749,-0.011781381,0.22844015,0.5009454,-0.07009672,-0.22950552,-0.23523507,-0.042319354,-0.14455026,-0.061037343,-0.24638136,0.2935096,0.14786153,-0.17290941,-0.06892363,-0.050573286,-0.03475899,0.54105365,-0.088791244,0.61657935,0.3346091,0.21126707,-0.19781302,-0.13402954,0.15419945,0.6939106,-0.20801093,-0.28130755,-0.23661575,-0.32610735,-0.2729326,0.38533723,-0.08362488,0.47402138,0.25771236,-0.05595314,0.58434397,-0.10217608,1.0312098,0.06776124,-0.30372623,0.18508574,0.345393,0.0457912,-0.07562527,-0.36038172,0.7617055,0.42827865,-0.09894499,-0.15995291,-0.27972284,0.23843414,0.048342083,-0.09362193,-0.09519709,-0.08222687,-0.58113265,-0.060315408,0.1779775,0.2140313,0.3683707,-0.19318956,0.18241572,0.17295446,-0.041210715,0.18272458,-0.32947475,-0.15273851,0.2835243,0.2262415,0.057756085,0.07074991,-0.5901943,0.34146485,-0.32645944,-0.058555122,-0.4819256,0.23331884,-0.30728137,-0.311794,0.14524965,-0.059117243,0.4378575,-0.34750956,-0.21413377,-0.40202147,0.4718788,0.28593987,-0.0056440784,0.3659918,-0.21830764,0.10376457,-0.0026941162,0.5555793,0.77226424,-0.339014,0.056042906,0.22151041,-0.19951428,-0.38095936,0.18884636,-0.44931924,0.2745108,0.16103145,0.0012170741,-0.6715198,0.2500827,0.17304413,0.006044351,-0.03409829,-0.55303764,-0.18490021,0.25706407,-0.26975664,-0.10749348,-0.4267408,-0.005950556,0.5530242,-0.023663769,-0.18711948,0.1431129,0.14401878,-0.05936202,-0.39576536,0.14051345,-0.517438,0.20014538,-0.13127142,-0.43527257,-0.48813227,-0.026156357,-0.45441312,0.35909632,0.21401633,-0.29626498,0.08078825,-0.36540586,-0.07950383,1.1977997,-0.21439615,0.28266734,-0.3707627,-0.49876234,-0.8560915,-0.26353934,0.35807088,0.03923401,0.008154344,-0.56163466,0.086278275,-0.108215794,-0.39595082,-0.10818862,-0.31450287,0.36723253,0.089552574,0.53103006,-0.080031715,-0.9414148,0.1121714,-0.024894714,-0.39987448,-0.50311506,0.49135917,0.12314187,0.8066031,0.0126914885,0.23559068,0.2255076,-0.352696,-0.11131036,-0.084907584,-0.058914755,-0.6214774,0.15772592,827 +746,0.39844248,-0.044501368,-0.6767394,0.010239516,-0.39041153,0.17572825,-0.16945031,0.5264071,0.37180108,-0.37153906,-0.2360692,0.10268749,-0.1962977,0.43095148,-0.16732086,-0.59865063,-0.08127805,0.18793216,-0.54066217,0.9016613,-0.13826221,0.32983583,-0.070759244,0.46611232,0.2988366,0.36163995,0.09974864,0.055326305,-0.18420322,-0.41145724,-0.10212536,0.07729633,-0.53437424,0.40170133,-0.2793048,-0.2553028,-0.13553473,-0.44958988,-0.25473675,-0.7356559,0.3221684,-0.78765553,0.43561175,-0.10281999,-0.22397074,0.3061867,0.22392645,0.14038685,0.058176424,-0.20484422,0.051680293,-0.14255872,-0.106473595,-0.19768143,-0.3018325,-0.47221482,-0.50074756,-0.053753413,-0.48637426,-0.18052687,-0.22309044,0.16826107,-0.3962682,0.03290239,-0.17467324,0.6662753,-0.3405329,0.2163558,0.016235083,-0.2514141,-0.21975301,-0.57241493,-0.30378422,-0.045041826,0.3060603,0.16891249,-0.08778301,0.27343765,-0.010343694,0.10980951,-0.002269323,-0.12816119,-0.2778358,-0.24251641,0.2800727,0.5566791,-0.024162237,-0.37604067,-0.09044234,-0.13006797,0.2814641,-0.12206617,0.3011812,-0.14606652,-0.08551152,-0.27141428,-0.26002482,0.25513172,0.2942756,-0.19536504,-0.19421792,0.3059737,0.369737,0.4035791,-0.43709686,-0.15980117,-0.037317596,-0.33675623,0.009446831,0.096449256,-0.039760325,0.4794312,-0.13591178,0.32363558,0.49055684,0.010983426,0.06657459,0.012229496,0.24549039,0.0036637187,-0.13455209,-0.31189764,0.23631085,-0.430511,0.15787274,-0.19110616,0.78656375,0.12011099,-0.5806596,0.41029522,-0.49851194,-0.0078065787,0.09956878,0.3127902,0.679625,0.5149024,0.011539461,0.552118,-0.12723419,0.080100074,-0.006876338,-0.18322721,-0.12771338,-0.2887565,0.14237484,-0.44323653,0.08656265,0.031540476,0.04512123,0.05530353,0.45322222,-0.3334937,-0.35316703,0.075331256,0.84774196,-0.14038153,-0.10020283,0.81394666,1.0391076,1.0832072,-0.05241287,0.93309176,0.07324822,-0.3136357,-0.12636371,0.039615337,-0.59000516,0.26381075,0.24199373,-0.010209946,0.37229186,-0.10777176,-0.12480486,0.24750453,-0.3356614,-0.014265448,0.0007312802,-0.0073669506,0.23816174,-0.043369338,-0.38839632,-0.3909356,0.03521145,-0.009188693,0.38997272,0.29214257,-0.21680014,0.573568,0.17964366,1.5291717,-0.0769339,0.012218604,0.20307367,0.60862505,0.23808584,-0.26069668,0.10022683,0.2024532,0.36611468,-0.017318249,-0.5538862,0.15452152,-0.36918333,-0.51829374,-0.10462098,-0.45550358,-0.428572,0.11229296,-0.41125482,-0.27662712,-0.041580696,-0.112752214,0.33297765,-2.7336159,-0.020828614,-0.24306515,0.21070546,-0.2144946,-0.28279158,-0.17965876,-0.5451736,0.27906525,0.14940585,0.47527263,-0.41920802,0.4001369,0.5108904,-0.5920306,-0.14930405,-0.38554433,-0.111239396,0.12849638,0.45048273,-0.15722704,0.20224708,-0.07674213,0.19982876,0.40838096,0.05878786,0.09154639,0.47621825,0.3237718,0.035011776,0.4061514,-0.012062637,0.57229286,-0.42825648,-0.017721057,0.40969557,-0.54238117,0.5680101,-0.26780823,0.15212509,0.542084,-0.40529266,-0.8386058,-0.4889816,0.006854979,1.369123,-0.2816092,-0.58607864,0.15330629,-0.33590826,-0.32843164,-0.104855485,0.5365702,-0.12230158,-0.19742829,-0.5354535,-0.00827181,-0.116903335,0.35431096,-0.09197047,-0.14869255,-0.37129515,0.67570275,0.12234545,0.74084854,0.026705356,0.15032856,-0.15894626,-0.32332665,0.09335272,0.60065144,0.3434868,0.17926455,-0.19533181,-0.08657711,-0.45499432,-0.1711738,0.01927963,0.7341219,0.36478317,-0.007273085,0.097348414,0.15058431,0.048740342,0.26464537,-0.16813216,-0.32575417,-0.369407,-0.008840561,0.4594559,0.61287826,-0.11336957,0.4030338,-0.010564135,0.2957039,-0.21283568,-0.32185903,0.49560282,0.8596887,-0.21132821,-0.29471117,0.41115144,0.5941973,-0.28857425,0.33195716,-0.5320337,-0.36728626,0.41224,-0.07801244,-0.36326593,0.14743276,-0.26425108,0.09570419,-0.617411,0.20588925,-0.43000075,-0.521541,-0.4197105,-0.06285111,-2.535553,0.19653003,0.005965948,-0.2560562,-0.47892725,-0.16177177,0.10709739,-0.5664268,-0.59420353,0.14617997,0.14386812,0.67098546,-0.11926671,0.1022533,-0.24737868,-0.48476788,-0.3020086,0.30585235,-0.014072271,0.4286661,-0.29789448,-0.21806087,-0.17248419,-0.17069787,-0.2181183,0.062598616,-0.5747187,-0.4165429,0.009165702,-0.32402822,-0.12311491,0.5468903,-0.3972584,0.11200324,-0.20667213,-0.015184125,-0.2782933,0.049846716,0.01979319,0.14439766,0.07488047,-0.11971469,0.22964859,-0.2551433,0.37569302,0.14506578,0.4928137,0.3851507,-0.032130416,0.18977903,0.3918404,0.56232494,-0.08404667,1.0046769,0.06629085,-0.0804429,0.45309347,-0.15467325,-0.45382273,-0.46689504,0.02153248,0.28315517,-0.25741002,-0.40157744,-0.04742784,-0.30700466,-0.7557574,0.38578466,0.16656177,0.20240006,-0.035629056,0.28742185,0.44639,-0.12510888,-0.030362936,0.07774896,0.030018728,-0.497227,-0.45312193,-0.6410313,-0.4044105,-0.11423133,0.77200866,-0.26155803,-0.038166575,0.12565368,-0.5171009,0.0499165,0.39016092,0.16320269,-0.0071535204,0.5153757,-0.015493354,-0.6908313,0.6251514,-0.32728034,-0.00825713,-0.29657567,0.27392828,0.41209015,-0.6253676,0.4403934,0.30355263,0.038338516,-0.2969926,-0.42036444,-0.11689789,-0.17716892,-0.13289684,0.16706046,0.3893269,-0.7034617,0.2642073,0.0059769154,-0.17311965,-0.66869724,0.42694885,-0.047407206,-0.19423126,-0.14414114,0.44453353,0.15391174,0.03356381,-0.10854716,0.16039771,-0.36158064,0.23157723,0.09382708,-0.06770084,0.040007703,-0.1830068,-0.27149928,-0.60096157,0.2973851,-0.38865444,-0.45534527,0.32287252,0.05594526,0.13515422,0.17959116,0.109245285,0.25699097,-0.30280316,0.11195656,-0.19788915,-0.19106759,0.5107127,0.31939882,0.64646566,-0.49042395,0.6012663,0.088073455,-0.054326456,0.40406844,0.25638768,0.30466038,0.10161199,0.54099834,0.15144484,-0.21078348,0.008026586,0.8580458,0.31162307,0.29888743,-0.015299926,-0.16874823,0.3216313,-0.08240093,0.107384995,-0.026816074,-0.68033856,-0.2869774,-0.2538991,-0.011437899,0.55872655,0.0658545,0.25412723,0.014037178,-0.1844031,0.05929504,0.07317562,-0.17475222,-1.1589068,0.29232457,0.13451275,0.9931687,0.32428965,-0.054453947,-0.021960616,0.7487699,-0.09169547,0.17434429,0.24367967,0.17679071,-0.52187544,0.57495797,-0.4202112,0.45697477,-0.049654834,-0.026212169,0.22251011,-0.0636964,0.4727646,0.8117394,-0.1820855,0.043430652,0.026816647,-0.44325912,-0.04664839,-0.37412417,0.017878298,-0.5459311,-0.2679269,0.57961106,0.5375942,0.3781047,-0.2477754,0.12139774,-0.049350165,-0.15108074,0.11882607,0.10259853,0.148762,-0.05292364,-0.5346502,-0.05343596,0.5923865,-0.30028293,0.09322553,0.1852418,-0.33879125,0.3148206,0.058775105,0.082200564,-0.11755859,-0.682541,0.21156867,-0.29896787,-0.5670823,0.24984677,-0.14742365,0.13889678,0.3302655,-0.016393818,-0.13096306,0.43614405,0.20572457,0.65084594,-0.124898784,-0.0781583,-0.32873347,0.110116884,-0.017366659,-0.27498013,-0.12081526,-0.25441185,0.15506288,-0.3942345,0.3821523,-0.049294554,-0.15675654,-0.20256864,-0.1152141,-0.009063656,0.55965394,0.023808774,-0.06222169,-0.09650911,-0.020038446,-0.23970912,-0.2172224,-0.053020112,0.21489999,0.24160844,-0.2553457,-0.17550263,-0.0915207,0.060836628,0.12875599,-0.24398209,0.515019,0.4166716,-0.012348865,-0.4403318,0.031142367,0.3219247,0.38802788,0.058115356,-0.027329365,-0.33115885,-0.4217706,-0.47656572,0.6715939,-0.04335136,0.34414798,0.15034246,-0.17802133,0.59813344,0.025712462,0.7531092,-0.013495367,-0.31931055,0.30449608,0.5027025,-0.015519211,-0.13758421,-0.3212967,0.89608073,0.28785992,-0.025512954,-0.045256574,-0.46502084,0.038118463,-0.009271363,-0.3293721,-0.100801595,-0.04531,-0.4517298,-0.121630535,-0.014376705,0.16827218,0.26645842,-0.18646568,-0.019220127,0.28379074,0.2311946,0.21362112,-0.6213583,-0.34402257,0.2830488,0.01970447,-0.13241622,0.07586905,-0.56994635,0.31306747,-0.7107906,0.12996951,-0.2705946,0.20490606,-0.40674564,-0.3564588,0.27709422,0.21077181,0.3399372,-0.57785773,-0.2734505,-0.4572398,0.3874367,0.2295163,0.26224363,0.46521303,-0.16215454,0.036647778,0.1630067,0.61276144,0.76291496,-0.07479633,-0.003048594,0.30909592,-0.5039149,-0.50069255,-0.1124484,-0.31308362,0.45091197,0.05744603,-0.035895236,-0.68757606,0.25213152,0.25368664,0.1163413,-0.08894067,-0.6260927,-0.27952927,0.19396551,-0.3170794,-0.2372447,-0.37484887,-0.15478131,0.4255633,-0.146808,-0.32563514,0.014422426,0.18285824,-0.18143408,-0.54547083,-0.085660204,-0.2876201,0.24616553,-0.05626993,-0.30184883,-0.4130346,0.11279547,-0.49957788,0.29192817,0.092984915,-0.3695188,-0.057249006,-0.34326145,0.087418206,0.82666427,-0.21271823,0.14037797,-0.47564065,-0.5680524,-0.6502014,-0.6175759,0.09574875,0.18898283,0.059440143,-0.48017251,-0.075991794,-0.27366108,-0.18573287,-0.044357188,-0.33440134,0.3159743,0.17007293,0.31288937,-0.11104668,-1.0980902,0.27978075,0.009793951,-0.08342747,-0.36487994,0.25594273,-0.15026794,0.9179717,0.10311249,0.0530982,0.17486045,-0.44777682,-0.015381116,-0.12522456,0.0650299,-0.6028293,0.42495447,829 +747,0.32811433,0.022411274,-0.69021904,0.0064756344,-0.25107765,0.15160863,-0.43367812,0.15901388,-0.07588506,-0.36752993,-0.02768539,0.17649105,-0.15493096,0.113235965,-0.2627414,-0.67686087,-0.0142487865,0.112897076,-0.41283953,0.5506057,-0.45829502,0.41117862,-0.012059794,0.058280595,0.276794,0.17898844,0.28097612,-0.0029743267,-0.31181636,-0.63028777,0.12493161,-0.02469011,-0.5993796,0.2790279,-0.05981602,-0.39694273,0.13911715,-0.37616083,-0.35063827,-0.63993204,0.4121133,-0.7045117,0.537892,0.036853235,-0.24304055,0.19558181,0.050096802,0.18931451,0.009501595,0.05587008,0.2754559,-0.35720998,-0.14287642,-0.27683914,-0.31005824,-0.36185426,-0.5295269,-0.018324612,-0.7147035,-0.016248453,-0.34334093,0.28842768,-0.45231247,0.038936835,-0.41859382,0.45908812,-0.38921112,-0.1063031,-0.055979803,-0.04883277,-0.0026015318,-0.72658783,-0.27885807,-0.06017006,0.0085872505,-0.17438914,-0.034124877,0.22761263,-0.026492719,0.22476739,-0.022747748,-0.10944852,-0.26677138,-0.31668854,0.35186943,0.52147907,0.062703356,-0.1457271,-0.19711874,-0.19821963,0.38530165,0.17708246,0.081641674,-0.12031727,0.054096203,0.04779557,-0.32286474,0.53868496,0.6046126,-0.21686462,0.08594705,0.28563794,0.5061315,0.2753909,-0.15469788,-0.06082896,-0.12245842,-0.34872916,-0.08729148,0.2555809,-0.12285332,0.50241786,-0.12378303,0.32909286,0.5365966,-0.3959831,0.1148076,0.09759935,0.103948005,0.0812804,-0.17416109,-0.2932365,0.32619703,-0.5434649,0.21322414,-0.31759965,0.93489033,-0.015055264,-0.4800362,0.29557288,-0.59255725,0.09049814,0.056076985,0.750365,0.35220733,0.43623975,0.09580803,0.62945426,-0.32071516,-0.039007943,-0.15014371,-0.29976112,-0.1015205,0.10726009,-0.12038299,-0.22583607,-0.14377004,0.011462251,0.097302906,-0.14836198,0.5449045,-0.3230469,-0.08948373,-0.016010748,0.7271897,-0.34821394,0.015023291,0.76735777,1.3045655,1.0510657,0.00057468965,1.0408276,0.014558544,-0.14558595,-0.47059727,0.11965818,-0.66468626,0.34450802,0.4519613,-0.21880534,0.35445037,0.114060566,-0.29987636,0.3646595,-0.35828206,-0.26824814,-0.10195058,0.23830758,-0.06162123,-0.017360257,-0.3502073,-0.17723332,0.28460523,-0.104915746,0.23703124,0.28372172,-0.57453686,0.21228684,0.17063253,0.9156853,-0.22156644,0.09206119,0.16288656,0.37632635,0.15546998,-0.07248923,0.14766341,0.2779125,0.34055567,0.0034048648,-0.7446675,0.108264975,-0.32515827,-0.5083123,-0.16718125,-0.26328433,-0.19442067,-0.018586231,-0.38481325,-0.11424271,-0.05188472,-0.36311814,0.20598346,-2.5039973,-0.06407921,-0.19505684,0.32837218,-0.16492952,-0.33414635,0.09909951,-0.45341322,0.49827576,0.1749367,0.4900435,-0.35203838,0.45885512,0.5692847,-0.29786947,-0.08253812,-0.649685,-0.08979429,-0.059185617,0.57527673,-0.16065457,-0.09391041,-0.063509665,0.08551406,0.5383113,-0.08893208,0.17765735,0.3047167,0.33158097,-0.037491914,0.32724416,0.22474366,0.5079216,-0.4866716,-0.14107858,0.4814673,-0.44717944,0.3416825,-0.17835118,0.14408451,0.39797843,-0.27597392,-0.7245454,-0.38118413,-0.28220642,1.5342841,-0.372749,-0.635957,0.102946356,0.1193521,-0.32188085,-0.08280727,0.35907826,-0.2360635,-0.14114788,-0.54144067,0.023864944,-0.26638657,0.39002985,-0.14169337,0.28416097,-0.41552523,0.57532877,-0.06216679,0.49554852,0.277475,0.4972394,-0.22838186,-0.3138886,0.084449545,0.9866857,0.49777216,0.07491862,-0.31348088,-0.16489506,0.033436343,0.03788303,0.116864175,0.62314737,0.71813744,0.10132299,0.1738015,0.31395486,-0.10114734,0.16072893,-0.097029395,-0.47242415,-0.2958352,0.019261297,0.6941,0.36482456,0.17351954,0.39056313,0.12654337,0.16650352,-0.46250412,-0.34544685,0.4070666,1.013269,-0.22290963,-0.30970466,0.69525963,0.64883393,-0.39819404,0.58105886,-0.6477708,-0.26883304,0.49799743,-0.09072092,-0.36793804,0.15125714,-0.36196205,0.07962105,-0.60248905,0.409603,-0.47216728,-0.77238214,-0.608256,-0.39806777,-2.9192674,0.105792716,-0.31883866,-0.17879272,-0.30136782,-0.33029065,0.24747565,-0.58792853,-0.40538543,-0.010245717,0.12643734,0.599935,-0.1919727,-0.016135685,-0.23733613,-0.29468197,-0.23227297,0.29397297,0.29315704,0.108562574,-0.23993836,-0.22024263,0.052671667,-0.15752527,-0.29544827,-0.081805415,-0.3165291,-0.22068428,-0.06737931,-0.33130136,-0.20446979,0.6295191,-0.4061558,-0.037215866,-0.18608035,0.05356974,-0.030578313,0.31245503,0.10238473,0.29679868,-0.022878526,-0.26739973,0.0064464393,-0.43443733,0.32158646,0.16185108,0.4029802,0.4258059,-0.21844317,-0.060550198,0.41417748,0.37875068,0.15773249,1.0363917,0.1091677,-0.09810213,0.33063808,-0.18854761,-0.43052304,-0.6882733,-0.1865486,0.13277437,-0.3540789,-0.40740484,-0.21522151,-0.1536651,-0.9267942,0.5573762,-0.03464308,0.28571394,-0.16519707,0.5349032,0.21179631,-0.043062337,-0.2101226,0.037863377,-0.022723423,-0.21238978,-0.32309788,-0.8747648,-0.3284151,-0.23646094,0.82173896,-0.14369659,-0.09857396,0.16224886,-0.2794604,0.21298553,0.03680911,0.22141767,0.13966522,0.4018336,0.22138348,-0.5571562,0.42403904,-0.2980023,-0.08215989,-0.46422327,0.0186758,0.79181534,-0.55876565,0.26792508,0.5738019,0.15503103,-0.1872608,-0.51893115,-0.016478041,0.18038934,-0.15205655,0.50791,0.4264156,-0.8251038,0.532298,0.07337119,-0.14358988,-0.5681794,0.5556541,-0.004958704,-0.15818729,-0.1414172,0.4632112,-0.12368771,0.021863183,0.029836755,0.36371332,-0.15861705,0.22486192,0.21584016,-0.19521914,0.14307752,-0.2937399,-0.35830528,-0.47877863,0.21087016,-0.49958712,-0.27075562,0.14302118,-0.18097998,0.056356784,0.40015042,0.010388704,0.4992428,-0.30542833,0.11255769,-0.034570135,-0.2611307,0.56934744,0.5385799,0.54343593,-0.44788817,0.6646865,0.09272982,-0.1579949,0.17561711,0.16108689,0.49572027,-0.0562515,0.4519007,0.09928762,0.101640426,0.25879624,0.7639526,0.41958082,0.5966381,0.10704965,-0.19690259,0.20849451,0.101061985,0.23235932,0.010222962,-0.50683665,-0.1582342,0.077884965,0.11623221,0.6145483,-0.013153624,0.4115044,-0.1975925,-0.03939092,0.16778596,0.08600195,-0.31090453,-1.18518,0.49554384,0.11107529,0.5932221,0.39308378,-0.014223296,0.1859804,0.39615992,-0.24435568,-0.08468112,0.14858483,0.48741797,-0.34934658,0.48421156,-0.48088774,0.42620865,-0.11047962,0.12358609,0.012984147,-0.22876756,0.56069064,0.8793303,-0.18951191,0.11952638,-0.044654887,-0.25243473,0.064994015,-0.25564277,0.33057445,-0.38608503,-0.18718995,0.7865884,0.31661892,0.42585927,-0.1621885,-0.030284861,0.20212851,-0.070721544,0.19630463,0.00077600207,0.1695897,-0.16271386,-0.47167698,-0.32827997,0.49524057,-0.110969864,-0.053476755,-0.028727086,-0.23059723,0.25647485,0.14230686,0.120985046,0.039665367,-0.6836545,0.2593456,-0.3230788,-0.6213375,-0.037494563,-0.34869197,0.18651792,0.2632387,0.074202195,-0.4166549,0.12762398,0.40027523,0.5344781,-0.17744574,-0.08129243,-0.41335818,-0.01861101,0.31899655,-0.2053655,-0.04233229,-0.2835225,0.23628336,-0.71538293,0.3208722,-0.4617223,-0.31793836,0.00473878,-0.1724828,-0.2781424,0.6342923,-0.05415597,-0.13457361,0.26836383,-0.2646976,-0.16421154,-0.27584237,-0.065619916,-0.042360082,0.075068384,-0.27745983,-0.21031523,-0.03627769,0.056572206,0.13033843,0.08559927,0.26029235,0.42085934,0.1903664,-0.5406399,-0.2743359,-0.07254785,0.57741606,-0.113540426,0.080165915,-0.39253992,-0.6026422,-0.20991924,0.57171875,-0.26919177,0.18120703,0.11991927,-0.41342017,0.7106674,0.07038919,0.9742798,-0.0005987516,-0.47569367,-0.09029953,0.79357326,-0.05414261,-0.17664768,-0.32360724,1.1670128,0.30408844,-0.22958826,-0.21033962,-0.4867005,-0.18180619,0.013958349,-0.2706098,-0.25446945,-0.11827762,-0.38009724,-0.07947779,0.108759515,0.3422391,-0.17877664,-0.053726196,0.03174706,0.60780436,0.17641903,0.40150362,-0.6871902,-0.047784116,0.38130012,-0.02383974,-0.19846691,0.21017522,-0.51659036,0.27832678,-0.75792885,0.05218106,-0.2131934,0.17988569,0.012083017,-0.3320925,0.366055,0.043167397,0.3048038,-0.45703968,-0.20342547,-0.11905242,0.24161886,0.2779086,0.25061876,0.68511677,-0.1602917,0.22287409,-0.09210526,0.49894235,0.98054016,-0.057788577,-0.08357441,0.16255021,-0.57832146,-0.7435001,-0.050145112,-0.48485246,0.13456522,-0.15092935,-0.48724762,-0.5843049,0.3391643,0.07557749,-0.050038822,0.020449363,-0.6772678,-0.20156458,0.067755505,-0.21480574,-0.36462653,-0.2225133,0.001063168,0.8045544,-0.24722022,-0.28461093,-0.14573823,0.45382687,-0.22456673,-0.53372467,0.027282171,-0.39496863,0.32774585,-0.09918638,-0.07942497,-0.03215345,0.14709982,-0.40232027,0.16970904,0.24175246,-0.14153963,-0.23726486,0.026005318,0.18098886,0.4279362,-0.21988586,-0.050089248,-0.39853507,-0.60687375,-0.7159604,-0.5440756,0.0054406477,0.07545814,0.12782183,-0.5345547,0.03862667,-0.20776406,-0.03810899,-0.112152845,-0.48983112,0.3796268,0.2222248,0.48138043,-0.119546644,-0.9044307,0.1998792,0.013233721,-0.31362838,-0.48959744,0.48396096,-0.23239261,0.525952,0.12027787,0.0646363,-0.021921545,-0.5693077,0.3358497,-0.21652725,-0.1765615,-0.7163441,0.24966857,830 +748,0.3877919,-0.32045493,-0.29427102,-0.20586132,-0.18842432,-0.22387369,-0.07681875,0.583027,0.21970147,-0.4072994,-0.25000837,-0.1550462,-0.02387731,0.3003195,-0.13069198,-0.67263573,-0.15425783,0.20880279,-0.34655565,0.5220633,-0.4039793,0.18989556,-0.08174436,0.36424467,0.2347566,0.067390814,0.057877056,-0.23661104,0.064086735,-0.106361,-0.24109745,0.4805054,-0.43589833,0.14982884,-0.094905265,-0.26505768,-0.045554504,-0.5408328,-0.2719781,-0.9515326,0.38372695,-0.75192326,0.24435654,0.1989073,-0.2980986,0.39406717,-0.120738275,0.23023906,-0.3254137,0.07134776,0.13841325,-0.106443815,0.022519086,-0.12659547,0.0092558265,-0.23347682,-0.6084939,0.059167888,-0.10563184,-0.18699437,-0.16141853,0.20323928,-0.3532289,-0.10225247,-0.15483437,0.5454091,-0.40678474,0.04658934,0.17384055,-0.15922745,0.3204171,-0.5803684,-0.18741576,-0.16804299,0.23898707,-0.027987134,-0.15457891,0.30445555,0.26086164,0.3637076,-0.09145562,-0.18446292,-0.28520918,0.016594827,0.05204916,0.3577763,-0.14330214,-0.648133,0.039223187,0.009519264,0.029109292,0.13325521,0.047283046,-0.4473322,-0.27221224,0.06883974,-0.26478583,0.3877122,0.4466621,-0.22255124,-0.3194824,0.2771509,0.46922594,0.22174208,-0.050869428,-0.14298707,-0.01190686,-0.70367277,-0.080258235,0.12815447,-0.2603075,0.55061716,-0.21746686,0.23856552,0.6273645,-0.11196931,-0.13306652,-0.023790376,0.11885887,-0.066078536,-0.36772603,-0.32201883,0.3304976,-0.29235026,0.25476316,-0.20364405,0.98864925,0.109301895,-0.859915,0.37040645,-0.52318436,0.31477773,-0.21287936,0.59072846,0.56404376,0.38758177,0.46932486,0.71702635,-0.43679616,0.0014476455,-0.014841855,-0.34134468,0.010722239,-0.07017861,-0.18445747,-0.453728,-0.0103616025,-0.06407161,-0.09969035,0.083523855,0.20137654,-0.59637326,-0.0650971,0.041869245,0.70488137,-0.26869652,-0.033583824,0.7022493,0.8382644,1.1448355,0.103862,0.9972191,0.12247058,-0.14655222,0.33458328,-0.34674776,-0.8206049,0.29070094,0.304105,-0.12664968,0.032169893,-0.044401765,0.031040214,0.3649189,-0.4095408,0.046760302,-0.22528219,0.30903113,0.2024611,-0.115570635,-0.428659,-0.42632324,-0.12855607,0.112307586,-0.053800765,0.18842593,-0.21223491,0.23282051,-0.03691102,1.4525125,0.093768984,0.0114062335,0.108276576,0.4654404,0.13783291,-0.07436127,0.02430726,0.3179183,0.4566313,0.09017478,-0.6767738,0.21297154,-0.24000494,-0.5064069,0.026563283,-0.2790896,0.09075915,0.03346997,-0.35754716,-0.17555393,-0.2021313,-0.33217737,0.5309721,-2.634213,-0.20303807,-0.09382509,0.27157497,-0.17326976,-0.27005288,-0.093266875,-0.43664205,0.36944944,0.31590542,0.4891515,-0.75568545,0.24481773,0.40870592,-0.68319,-0.18118447,-0.7147751,-0.05988799,-0.03409081,0.3523104,0.12009366,0.21170448,0.030488024,-0.049986977,0.42576855,0.094277516,0.08690116,0.23286605,0.3409548,0.09657172,0.39669946,-0.08272065,0.4050267,-0.24959572,-0.12339478,0.17567253,-0.60245144,0.21202022,-0.05587388,0.09483528,0.5587461,-0.4899379,-0.77932733,-0.58252394,-0.28728634,1.2750543,-0.18747059,-0.37674582,0.41715115,-0.23643266,-0.071452506,-0.17658646,0.37690157,-0.23681197,-0.3213272,-0.77579916,-0.03577516,-0.044931073,0.30638254,-0.07078727,-0.20109114,-0.27366072,0.5583829,0.010980846,0.3156306,0.44936973,0.0348364,-0.40106323,-0.5695916,-0.111023106,0.7046241,0.27884498,0.06882183,-0.11395672,-0.1411898,-0.16619888,-0.0752598,0.13305861,0.52818066,0.7811126,-0.15169959,0.09189933,0.37150806,-0.011076518,-0.030632414,-0.13521266,-0.2142875,-0.041488048,-0.047163304,0.5372897,0.7660418,-0.252585,0.26473063,-0.095452115,0.2664463,-0.08212679,-0.29641372,0.534979,1.2896265,-0.14782672,-0.1556902,0.5344932,0.5007315,-0.3798521,0.4237789,-0.5221235,-0.059666608,0.46178925,-0.28477126,-0.46774483,0.03758641,-0.24118243,0.12688096,-0.75195843,0.3154506,-0.11644281,-0.40474895,-0.71427816,-0.009074972,-2.604659,0.15162691,-0.4049152,-0.22659768,-0.21896003,-0.10229635,0.042642806,-0.5294098,-0.54077643,0.10340181,0.23471148,0.585441,-0.05090322,0.12319643,-0.2749086,-0.10963358,-0.43851933,0.022844043,0.013358217,0.36196396,0.20760426,-0.4952747,0.06903873,-0.2126333,-0.37114292,0.14246272,-0.44272906,-0.3372273,-0.022301555,-0.6061583,-0.43042865,0.5686632,-0.17894319,-0.04249799,-0.15724304,0.038098074,-0.11562185,0.3186622,0.16577186,0.12739168,-0.11207254,0.019345481,-0.0130343605,-0.20429172,0.30419353,-0.036731787,0.17680332,0.3881828,-0.18353984,0.13754773,0.45866188,0.723979,-0.11895983,0.8524505,0.6188828,-0.06634804,0.22795552,-0.16834839,-0.2373812,-0.49832395,-0.32552704,0.07775232,-0.34381694,-0.42219397,0.0503788,-0.2541971,-0.74899393,0.41785035,-0.047360238,0.18419345,0.043466724,0.01756881,0.5721051,-0.10374848,0.1099674,-0.012562184,-0.1436731,-0.43072906,-0.19885129,-0.6726793,-0.2830456,0.16210835,0.9300712,-0.22058535,-0.039134577,-0.0387913,-0.29998425,-0.08144501,0.15900476,-0.19930363,0.25968352,0.22963484,-0.039065305,-0.6583506,0.48810384,0.13904826,-0.17460766,-0.3963461,0.24280247,0.5240689,-0.5352627,0.52240235,0.20537567,-0.10052934,-0.15501738,-0.6065273,-0.25879717,-0.07519733,-0.13002601,0.3494926,0.14517236,-0.54090464,0.45307624,0.42405832,-0.21982694,-0.7577396,0.34731495,-0.044838566,-0.43309656,-0.025198221,0.34832424,0.04888773,0.015585134,-0.10293896,0.22002088,-0.48400152,0.20008373,0.18637142,0.08255168,0.18432127,-0.074271925,-0.014607227,-0.88228375,0.017026471,-0.4309723,-0.2212785,0.33478248,0.17440912,0.028424181,0.07091619,-0.037759203,0.3886011,-0.14116001,0.10204939,-0.023830703,-0.049188,0.30696765,0.47552204,0.45538086,-0.40321591,0.5781298,0.17678696,-0.055313803,-0.04293196,0.0028843696,0.2916959,0.12167417,0.38193324,-0.11022311,-0.2572644,0.3026451,0.64112926,0.0956964,0.4438489,-0.047890887,-0.081405014,0.38973987,0.091232546,0.33454946,-0.06883431,-0.43169573,0.021524154,-0.15183128,0.105741754,0.46674237,0.0875503,0.3405525,0.011218016,-0.3918942,-0.043560922,0.30512545,0.02086693,-1.2110641,0.40024248,0.17763239,0.86221707,0.7060613,-0.07524841,0.021228759,0.67576444,-0.17291988,0.13660978,0.34592298,-0.0004650125,-0.5687598,0.6256422,-0.6706266,0.41169465,-0.060765944,0.0033234518,-0.09865671,0.03819014,0.31376442,0.47372642,-0.14191559,-0.06315193,-0.14518501,-0.36092874,0.28364405,-0.43030852,0.16566148,-0.44311193,-0.33460477,0.43014616,0.564972,0.25474387,-0.1707148,-0.019754572,0.21178454,-0.046024825,0.14507595,-0.03438247,0.0012428428,0.024414461,-0.7342638,-0.02325808,0.53109735,-0.05577223,0.037372127,-0.036029212,-0.24755533,0.22810483,-0.35370848,-0.18003327,-0.16303349,-0.67385805,0.06887409,-0.053810026,-0.28920522,0.48975378,-0.20984118,0.24093665,0.24282888,0.052484374,-0.3241434,0.07524335,0.09972135,0.7603142,-0.012926376,-0.16558418,-0.42115325,0.20871228,0.12297751,-0.1256941,-0.10865675,-0.119072035,-0.18600799,-0.34396803,0.52625304,0.103600346,-0.14484096,0.063678354,-0.128139,-0.047750887,0.5759272,-0.12510325,-0.1172559,-0.23421365,-0.17687154,-0.21083,-0.20470794,-0.17503849,0.42133623,0.2705872,-0.0017673866,-0.16086413,-0.14806274,-0.1927117,0.67717624,-0.021231445,0.3311732,0.17807955,0.028755363,-0.38660696,-0.21232532,0.050105877,0.42242038,0.119098574,-0.20569351,-0.22216953,-0.16232274,-0.34572,-0.01186624,-0.1487973,0.5430668,-0.076539405,-0.41076672,0.62903476,0.14047125,1.2522329,0.047410205,-0.27647394,0.10839018,0.5010819,0.033879887,0.022160295,-0.30130866,0.86741954,0.5327057,-0.22569558,-0.13891026,-0.29400972,0.022177907,0.18904355,-0.09481079,-0.095463045,0.02416911,-0.61046004,-0.28621924,0.21345884,0.21898334,0.1433461,-0.060142774,-0.1260177,0.25171122,0.07607806,0.5877789,-0.16779503,-0.07577492,0.10960584,0.21116763,0.18929537,0.05686438,-0.37684566,0.35914627,-0.45533594,0.33465284,-0.2416463,0.26505265,-0.35775694,-0.24228951,0.27244025,0.093368955,0.27918243,-0.3363234,-0.5162978,-0.23081245,0.539347,0.1229573,0.15706638,0.46450302,-0.34574872,0.15386778,0.0068045547,0.50469035,0.8986562,-0.15436147,-0.104979426,0.35923642,-0.37468782,-0.703184,0.42888567,-0.13240403,0.0053237355,-0.1651251,-0.14069541,-0.5246201,0.27642867,0.3275371,0.08917726,0.059615944,-0.67857254,-0.23733735,0.3646065,-0.37687805,-0.18936707,-0.34872216,0.24730743,0.6059711,-0.29116303,-0.5224132,0.04576474,0.043764196,-0.22657865,-0.51577914,-0.06685337,-0.5702472,0.32768345,0.14982282,-0.45656055,-0.1333203,0.07730871,-0.4706032,0.017445385,0.06343749,-0.26989385,0.08083599,-0.10365331,-0.16142677,1.0089059,-0.26013023,0.3648911,-0.5589041,-0.4136832,-0.884872,-0.14738987,0.75938004,0.18372943,-0.00036678405,-0.7141677,0.036621295,0.06486973,-0.41332272,-0.12222535,-0.36564952,0.45727172,0.13374224,0.27363995,-0.02830531,-0.66383463,0.014791085,0.19280455,-0.14586666,-0.47147936,0.42406756,0.07848411,0.8105673,0.0033681656,0.12182109,0.14368488,-0.25872046,0.10224025,-0.15621513,-0.28957605,-0.5445171,-0.010545345,832 +749,0.20133765,-0.07545114,-0.68413126,-0.12928554,-0.26805356,-0.17584808,-0.17553261,0.6802436,0.31869683,-0.29912886,-0.06696049,-0.10577522,-0.043785375,0.6668185,-0.28592333,-0.6392886,0.09612711,0.030656416,-0.46544883,0.5894194,-0.32279256,0.13545515,-0.15671268,0.5433145,0.25579327,0.27992412,0.046151392,0.050476816,-0.07432424,-0.15929939,0.085323945,0.30412254,-0.4013552,0.021207985,-0.17258857,-0.29587874,0.04309499,-0.43272966,-0.46855247,-0.8438418,0.32156193,-0.7558705,0.48512986,0.0382214,-0.3237962,0.13476077,0.27527362,0.4537479,-0.15367529,-0.27989888,0.15292045,-0.066599526,-0.005737642,-0.15676777,-0.40655696,-0.41623497,-0.5736384,0.048571434,-0.58238244,-0.19295035,-0.23606373,0.12240929,-0.33811718,0.00036409727,0.052012477,0.5110237,-0.47091615,-0.019215263,0.3202329,-0.12431781,0.31235796,-0.50296295,-0.18324447,-0.060406044,0.23982272,-0.13557789,-0.13885386,0.41418517,0.03467403,0.32361713,-0.08461087,-0.2246433,-0.45032597,0.009714897,0.09725181,0.40285873,-0.26199093,-0.4782157,-0.05742096,0.01692105,0.18344545,0.33122027,0.1581514,-0.13619897,-0.1355346,0.2269254,-0.14678866,0.4512695,0.59123,-0.094691426,-0.061364718,0.17674328,0.53692174,0.34045565,-0.24954574,0.024433833,0.0048892405,-0.6496217,-0.23421995,-0.22574475,-0.010645051,0.6550401,-0.05616526,0.30646625,0.62979627,-0.07843837,-0.072242886,0.10654155,0.022969475,0.059724662,-0.30613482,-0.058163088,0.25388893,-0.35718775,0.27524957,-0.10484875,0.5520719,0.13422069,-0.615235,0.32002264,-0.5804483,0.08385856,-0.053872652,0.49184692,0.58199537,0.48633355,0.38502708,0.7179025,-0.3813345,0.15513302,-0.07390526,-0.2733097,0.10236542,-0.3071861,-0.025528807,-0.4268433,-0.16882266,-0.09010252,-0.17281145,0.2786368,0.1487669,-0.5440487,-0.13088956,0.22670385,1.004969,-0.1739304,0.008345576,0.8695927,0.97347504,0.9707165,-0.098319165,0.9342883,-0.07914802,-0.12896222,0.27520198,-0.058563992,-0.8052796,0.2959666,0.30081302,-0.26135412,0.2988362,-0.09081283,0.079974815,0.5334032,-0.49378598,0.023018856,-0.13227405,0.24834622,0.10926676,-0.2533869,-0.40947574,-0.207937,-0.108073205,-0.017747484,0.055885587,0.3302182,-0.09113398,0.43849358,-0.17760111,1.5659605,0.020893238,0.06257881,0.20276079,0.64631975,0.2362984,-0.07547236,-0.18210846,0.19176611,0.10351796,0.24592239,-0.45748284,0.12755479,-0.32321894,-0.4712376,-0.080817476,-0.4081933,-0.1541532,-0.26346275,-0.59494984,-0.13971259,-0.16419882,-0.19293717,0.35325968,-2.8409843,-0.2139814,-0.081418276,0.28846362,-0.19823092,-0.24687687,-0.018342724,-0.36616328,0.5468402,0.28636456,0.5319609,-0.47041985,0.42690784,0.53096527,-0.5652778,-0.12356091,-0.53145874,-0.12831351,0.07816185,0.33067873,0.066947594,-0.011647976,0.09406637,0.27844578,0.41940588,0.03097303,0.040173035,0.20290129,0.42072275,-0.1797997,0.45319998,-0.11466527,0.43818635,-0.3985537,-0.21132992,0.27453855,-0.54141283,0.34814236,-0.10838974,0.16276413,0.33908132,-0.42765373,-1.0116035,-0.5450233,-0.11494211,1.0919865,0.04696665,-0.5179709,0.42029032,-0.6250778,-0.26530674,-0.10189472,0.51606375,-0.11614619,0.21473354,-0.77684623,-0.06313643,-0.30584532,0.08738459,0.020694604,-0.12097038,-0.34920514,0.56643736,0.010466477,0.32640678,0.4698016,0.10832525,-0.38566527,-0.44307584,0.0055387067,0.6628453,0.36893323,0.08990486,-0.19138272,-0.255702,-0.35506132,-0.19819608,0.059032567,0.59053886,0.70497555,-0.15402953,0.09034146,0.29228473,0.033730682,-0.07338765,-0.16348408,-0.36471403,-0.07306548,0.06708645,0.60486233,0.91865563,-0.2538964,0.34907436,0.10217316,0.4398773,-0.19367297,-0.36778927,0.43098375,0.7816902,-0.14916863,-0.38612545,0.6829026,0.529423,-0.30950844,0.42992666,-0.48886746,-0.3098144,0.4845255,-0.050096534,-0.5053369,0.17045179,-0.25812843,0.110364,-0.8548431,0.20202263,-0.34479234,-0.48104954,-0.61011606,-0.1786165,-3.2103734,0.05213125,-0.24712753,-0.24269725,-0.2003581,-0.056662466,0.052331284,-0.66657215,-0.8993943,0.06894557,0.024934752,0.786127,-0.19262174,0.035258822,-0.2321806,-0.33403683,-0.19327655,0.13712193,0.26131922,0.33166412,-0.04507367,-0.51212233,-0.36970183,-0.21287118,-0.6363554,0.108177505,-0.5814295,-0.41667587,-0.23607485,-0.66359526,-0.0007960063,0.72509044,-0.1878478,-0.04934201,-0.18707074,0.10344648,0.036193933,0.26762038,0.20779783,0.14887019,0.10824699,-0.038891308,0.27405494,-0.18594855,0.19323371,0.038228072,0.5724639,0.29056948,0.023481937,0.39236715,0.75164074,0.8143407,-0.18757719,0.8832457,0.4086238,0.009552569,0.25478727,-0.3164086,-0.3818104,-0.4120198,-0.37278828,0.24150005,-0.2892419,-0.32474962,0.0006290399,-0.37691244,-0.8218742,0.7407187,-0.055312976,0.098325215,-0.08029853,-0.04967285,0.37147897,-0.33729416,-0.12944281,0.034130383,0.022137014,-0.6647443,-0.2361975,-0.6141897,-0.5656352,-0.086880445,1.006886,-0.21275035,0.033393886,0.18141314,-0.36739784,0.035516184,0.09459035,0.06352966,0.055396087,0.24040483,0.053031437,-0.67283225,0.38845202,-0.3085212,-0.16036233,-0.5148484,0.2033565,0.6496829,-0.45569083,0.47712782,0.3682466,0.021535583,-0.20520848,-0.6727845,-0.12524782,-0.020952752,-0.042040862,0.39009413,0.19456142,-0.7466617,0.43263686,0.36877236,-0.33027557,-0.64895684,0.5185055,-0.21563156,-0.21686603,-0.11203994,0.38552797,0.13767602,-0.01802649,-0.2838895,0.2980259,-0.23514669,0.09119736,0.37816054,-0.088388436,0.3333804,-0.21591124,-0.035958007,-0.78588253,0.05424019,-0.5062795,-0.26815352,0.32844183,0.012338779,0.05122326,0.029755987,0.1528726,0.21350506,-0.34498942,0.09021522,-0.18244043,-0.36606297,0.3957663,0.44749025,0.71902937,-0.64259267,0.6500397,0.060164258,0.016715812,0.31032503,-0.034395657,0.49692884,-0.24671881,0.4307226,0.114092104,-0.021861415,0.10803909,0.8592418,0.14085798,0.35123953,0.1252055,-0.10526187,0.18748485,0.05078388,0.007450498,0.11694939,-0.6206007,0.21006542,-0.31044686,0.07321387,0.5685449,0.17384264,0.25641885,0.08003771,-0.48625457,0.07476009,0.1883612,0.036090955,-1.5771161,0.5217543,0.24022537,0.82494205,0.32684496,0.27724966,0.033484124,0.79348314,-0.0010996369,0.11193525,0.47447437,0.019073816,-0.53812766,0.54320073,-0.7376661,0.6263447,0.18814391,0.057908203,0.053329542,0.04863701,0.5667873,0.6857157,-0.06497066,0.01950667,0.16980228,-0.32572338,0.17155784,-0.51303154,-0.164586,-0.43233,-0.19734842,0.48854145,0.64552104,0.2419098,-0.18710984,0.052800205,0.25758883,0.009270404,0.26203525,-0.1950964,0.06648706,-0.13176678,-0.5161032,-0.15268539,0.43945444,0.021495122,0.25668043,-0.1325051,-0.008775537,0.30953965,-0.086040944,-0.18025912,-0.16572134,-0.66766137,0.17016652,-0.45287022,-0.5255728,0.34521836,-0.20757715,0.33092815,0.18612178,0.09359182,-0.44002965,0.73036605,-0.31747925,0.77794063,-0.18219215,-0.16723992,-0.14426062,0.1676378,0.25917152,-0.295916,-0.008653902,-0.35135847,0.1668213,-0.29719466,0.38850313,-0.16428629,-0.4340557,-0.08569161,-0.12522855,0.16515893,0.43968436,-0.26700166,-0.15247038,-0.11971578,-0.17047907,-0.1621301,-0.33645555,-0.04840718,0.32339412,0.16232806,-0.09884001,-0.15719087,-0.12878476,0.021178147,0.47583893,-0.25181657,0.36428878,0.38944003,0.06699208,-0.22844124,-0.15960601,0.1671275,0.601397,-0.04078519,-0.13108772,-0.44893157,-0.36650044,-0.45658728,0.34512997,-0.1329528,0.44744503,0.34004435,-0.18117179,0.61323065,0.123504326,1.2701861,0.035224494,-0.381128,0.26600224,0.44294488,0.12123638,-0.087368116,-0.3422751,0.83689606,0.41507736,-0.3888866,-0.14523473,-0.39052165,0.14917485,0.16780373,-0.20353658,-0.17082515,-0.08672344,-0.59458554,-0.08255206,0.33610263,0.29606026,0.2966618,-0.32022592,0.03418384,0.12202915,0.105138615,0.1835399,-0.39436594,-0.119417876,0.45840263,0.21872894,-0.05971888,-0.012133727,-0.6025604,0.37110043,-0.29080725,0.04005277,-0.2841141,0.27921125,-0.34506762,-0.38324922,0.13873205,-0.18569638,0.403987,-0.3271268,-0.22035037,-0.30551094,0.44497073,0.3526816,0.05102318,0.47737363,-0.27394506,-0.039826307,-0.07898405,0.604362,0.79336315,-0.30199987,0.011831359,0.27629504,-0.1884993,-0.6634209,0.12658095,-0.40679118,0.26815513,-0.1437442,-0.14211652,-0.7788564,0.16490534,0.1953345,-0.11469392,-0.04222492,-0.60125434,-0.20806943,0.09348537,-0.22460869,-0.25863177,-0.5286052,-0.0801639,0.51384014,-0.1160863,-0.3366285,0.24796306,0.20566805,-0.008962833,-0.39806682,0.08745839,-0.12676479,0.2603386,-0.021358628,-0.46658704,-0.18483712,0.0020300562,-0.4359516,0.30464488,0.17093134,-0.29178613,0.03020132,-0.1638212,-0.014731657,1.0390477,-0.23903844,0.4080293,-0.3488178,-0.5169306,-0.89704955,-0.38165548,0.3735983,0.120305896,-0.069769,-0.6814322,0.006478053,-0.07340254,-0.15015498,-0.098053165,-0.2507996,0.36605003,0.042240016,0.48290223,-0.31340873,-0.69288623,0.10797635,0.1358533,-0.23146598,-0.5191138,0.60779005,-0.077688105,0.76718134,0.007923986,0.12192956,0.2680031,-0.30198175,-0.06380589,-0.104591794,-0.19656643,-0.38057724,0.12616035,833 +750,0.5451335,-0.019092241,-0.5739606,-0.104259044,-0.2778795,-0.11617115,-0.30906492,0.41745886,0.3745169,-0.2614949,-0.1260756,-0.06071178,0.041664008,0.34833378,-0.033323288,-0.60925364,-0.09536266,0.2109665,-0.6638203,0.50676864,-0.54931235,0.30178395,0.011482,0.5366774,-0.11467229,0.2892378,0.1727991,-0.00050128193,-0.034523293,-0.029942347,0.02348423,0.28742677,-0.7423115,0.11954935,-0.18250953,-0.34838647,0.033958122,-0.45446613,-0.11906926,-0.68061376,-0.012417739,-0.77302676,0.63040674,0.17095917,-0.3036015,-0.16645986,0.22009657,0.29808787,-0.4063821,0.1971333,0.19642499,-0.05206869,-0.20848113,-0.3462258,-0.21703061,-0.58424944,-0.36631757,-0.06456319,-0.6142036,-0.2809691,-0.19627056,0.2817295,-0.18149346,-0.05603762,-0.23991984,0.29143855,-0.40974823,-0.043840863,0.29193652,-0.18175633,0.18965873,-0.5040356,0.0029680592,-0.121408775,0.32130414,0.100603156,-0.2955404,0.25275558,0.47430816,0.5829269,0.27516693,-0.27658617,-0.28623885,-0.1533858,0.20124143,0.29367408,-0.38883036,-0.29381981,-0.3081513,-0.107630566,0.30348647,0.41882282,0.21897835,-0.36400142,0.23869632,-0.014448483,-0.17566697,0.41645083,0.52764183,-0.448727,-0.28628266,0.16376558,0.6393025,0.27187568,-0.19500384,0.15245925,-0.022296969,-0.47367257,-0.25291634,0.09983286,-0.02161004,0.29594326,-0.086591706,0.07135581,0.7441173,-0.09588457,-0.10620124,0.073887505,-0.036996678,-0.08960902,-0.44019637,-0.24627678,0.22828096,-0.59144914,-0.008349135,-0.23427846,0.52494174,0.08305781,-0.7703692,0.3095703,-0.7415457,0.08736944,-0.07802708,0.5825415,0.84068084,0.5691256,0.3020991,0.8381179,-0.3674453,0.0921692,-0.06322658,-0.2785517,0.19269548,-0.30403855,0.117271826,-0.5280521,0.2308946,-0.13638732,0.020083042,0.10380495,0.4593163,-0.59322864,-0.23754331,0.39524025,0.89430076,-0.30775914,-0.13072342,0.6304919,1.232924,0.9871838,0.101517946,1.3339653,0.4092064,-0.26892582,0.16487029,-0.27241528,-0.6859808,0.17794225,0.45104745,-0.26201037,0.29585755,-0.18138899,0.062227312,0.31993037,-0.3299511,0.034143925,-0.02259879,0.3890527,0.16842291,-0.25325435,-0.3046653,0.019047793,0.09766313,-0.14112388,0.13070184,0.3163681,-0.2967038,0.21163781,-0.123458356,1.1553613,-0.11832519,0.12968454,0.045971274,0.5116189,0.39052424,-0.09835194,0.05069393,0.48350975,0.27811986,-0.06420366,-0.46531698,0.34605104,-0.3310099,-0.5355566,-0.057725843,-0.22578144,-0.1822229,0.15048908,-0.42289373,-0.17886159,-0.054738976,-0.14318174,0.40258992,-2.5577126,-0.28515232,-0.079010576,0.3159544,-0.23570201,-0.25840247,-0.21563624,-0.31220788,0.27709904,0.18470806,0.43542153,-0.46749213,0.60784185,0.587921,-0.51776505,-0.26398632,-0.5697357,0.05573301,-0.11118264,0.46578187,-0.1316885,-0.2925865,-0.12913933,0.21088345,0.72861016,0.07161368,0.2678315,0.5378564,0.4242702,-0.059698444,0.47586572,0.01253692,0.60701597,-0.3740124,-0.33670786,0.26032802,-0.3901518,0.25409424,0.023863481,0.057705007,0.57085645,-0.47561726,-1.1129243,-0.6629869,-0.22887428,0.93514943,-0.31718123,-0.4526266,0.2085626,-0.29426453,-0.1332772,0.22829737,0.58164096,0.12126536,0.20567106,-0.7758831,0.28770596,-0.08366036,0.2364199,0.050006848,0.059159867,-0.26969436,0.7777779,-0.095701665,0.6512369,0.3064697,0.21200365,-0.22941163,-0.34373173,0.053789534,0.9290664,0.34144,-0.014295559,-0.11362083,-0.26609397,-0.16814572,-0.21843185,0.12195657,0.5972709,0.7471729,-0.12119862,0.11063381,0.25421765,0.016521422,0.04557604,-0.18194617,-0.40550983,-0.116291836,0.2695469,0.27335244,0.66371024,-0.27239597,0.46489716,-0.1655748,0.28729013,-0.21600692,-0.56051004,0.71191853,0.5414616,-0.27860495,-0.044518955,0.6712647,0.46503448,-0.56436306,0.583936,-0.7899764,-0.2567619,0.4461044,-0.13358106,-0.42463508,0.22527887,-0.3160544,0.18177618,-0.8924092,0.34770107,-0.4305566,-0.3323038,-0.31761116,-0.23713945,-3.1869986,0.2991509,-0.117500424,0.042717263,-0.3216948,-0.0643966,0.41428667,-0.5878915,-0.7731866,0.10819379,0.1894529,0.47597063,-0.14958104,0.16441019,-0.26619998,-0.30198857,-0.13637166,0.33764368,0.104032986,0.2510531,-0.012556415,-0.382459,-0.13287094,0.07129065,-0.5258145,0.105760254,-0.63579494,-0.35140216,-0.20467259,-0.5212119,-0.09374441,0.5665321,-0.54519475,0.08112062,-0.31944275,0.15051065,-0.22589478,0.30305248,0.09520976,0.28073162,0.21322256,-0.06630896,-0.059683297,-0.23738518,0.23130694,-0.012235623,0.23761702,0.1402562,-0.095838346,0.10305248,0.4500968,0.8890623,-0.19324547,0.95383584,0.28069392,-0.23245849,0.40161273,-0.37707454,-0.20559205,-0.696421,-0.4133999,-0.29109973,-0.38758653,-0.48573992,0.2180168,-0.3093057,-0.8384342,0.5817142,0.02066196,0.310678,0.09560101,0.36892474,0.4224301,-0.30012205,-0.12739672,-0.16208237,-0.20948625,-0.6124991,-0.2500174,-0.6207049,-0.49749047,0.3084892,0.9189005,-0.33939725,0.07931647,0.064875096,-0.13396788,0.06729203,0.26569113,0.11658122,0.14218205,0.5704086,0.10228666,-0.6063846,0.1292657,0.06275673,-0.18040434,-0.565962,0.25082144,0.71765953,-0.95163167,0.8487904,0.2659876,0.187341,-0.01050509,-0.60861784,-0.2701245,0.10304849,-0.11211049,0.6094475,0.23688897,-1.0068517,0.4013027,0.6368085,-0.55006826,-0.73329663,0.28902647,-0.093069665,-0.09883021,-0.2584233,0.38766834,0.22108942,-0.15239576,-0.15399978,0.3207526,-0.4442899,0.23399507,0.12992924,-0.17083177,0.34518427,-0.16005525,-0.3366501,-0.8223039,0.05097935,-0.6482217,-0.35455805,0.35228527,-0.16303381,-0.22388,0.22766858,0.2354123,0.37460917,-0.26145434,0.20902522,0.016596574,-0.3984135,0.3640237,0.452582,0.3699187,-0.24895416,0.50904655,0.15431732,-0.31806052,-0.008008071,0.022542467,0.30776703,-0.10509924,0.3967877,-0.069439396,-0.16279767,0.35923192,0.6499478,0.09044867,0.38622475,0.055321082,-0.0345463,0.45621064,0.007621075,0.087151654,-0.07248225,-0.38496172,-0.045762602,-0.015805671,0.2170337,0.4673904,0.3778218,0.12729628,0.1600652,-0.108078994,0.012499461,0.2852967,-0.0047336724,-1.078753,0.39069876,0.16031271,0.83392656,0.5768107,0.06347652,-0.23093511,0.61115205,-0.14265361,0.021203332,0.4657653,-0.037591264,-0.4691815,0.7324734,-0.6301457,0.256957,-0.27138665,0.04431421,0.17693521,0.12040249,0.49783012,0.8571258,-0.16640083,0.02205825,-0.010965826,-0.084448166,-0.039684337,-0.18131968,0.07219201,-0.32367605,-0.46859604,0.8489063,0.33608928,0.4290508,-0.4108786,-0.14688186,0.16260011,-0.26421735,0.19989306,-0.15299727,0.0015232873,0.12157146,-0.37197164,-0.22982852,0.6462276,0.1955893,0.10247338,-0.087737136,-0.35125384,0.16394028,-0.28280523,-0.010273833,0.07548773,-0.5783071,-0.042103786,-0.3027491,-0.5497428,0.46659505,-0.014473705,-0.13468814,0.12370319,0.11618592,-0.06465228,0.56962115,-0.0625236,0.7124697,0.03870722,-0.2237965,-0.15641512,0.22835793,0.1056255,-0.24847497,0.049345758,-0.31162325,-0.025343575,-0.6096498,0.6118292,-0.101276174,-0.43350792,0.23777883,-0.08370919,-0.075608,0.4879419,-0.16109739,-0.31022966,0.052058097,-0.2951321,-0.38251993,-0.21077521,-0.1949543,0.27873573,-0.024198946,0.002835448,-0.13171102,-0.3217819,-0.16423506,0.46830213,-0.020746896,0.2192631,0.39389345,0.19030823,-0.2663134,0.15023495,0.27376702,0.41879824,0.09205316,-0.007355603,-0.14300968,-0.4976763,-0.43423033,0.046456516,-0.13004194,0.22267923,0.0938867,-0.3925143,0.97900784,0.13498427,1.3303267,-0.026663749,-0.3741047,-0.00245117,0.5280666,-0.18607427,0.0065873633,-0.3890036,0.87057006,0.76256996,-0.21485662,0.02013683,-0.517003,-0.29119813,0.22051191,-0.5430756,-0.06725682,-0.08672742,-0.72590375,-0.32557267,0.14134362,0.24320476,0.07164424,-0.060250357,0.13987456,0.08490651,0.06210752,0.3013075,-0.6497188,-0.2621252,0.21603711,0.512534,-0.100866064,0.05044718,-0.33804387,0.265223,-0.8213624,0.18448837,-0.48010466,0.07115932,-0.32321882,-0.5348491,0.036277153,-0.020609388,0.26900223,-0.21877326,-0.42677256,-0.01427055,0.42671487,0.046806075,0.11511051,0.7381394,-0.28976512,-0.022785535,0.13695966,0.54207015,1.1612915,-0.33591813,-0.19542393,0.34025797,-0.30920893,-0.7386315,0.37821978,-0.5968656,-0.057251792,-0.1077935,-0.48043635,-0.49101478,0.18726753,0.12462835,-0.032348495,-0.08613001,-0.6383561,0.020557614,0.25856632,-0.1376378,-0.1328783,-0.055169936,0.33651003,0.9623157,-0.2737016,-0.27344707,0.09065027,0.34039146,-0.35574138,-0.5883519,-0.09939223,-0.3863284,0.32940677,0.3064818,-0.3762713,0.09865616,0.061365385,-0.58732915,-0.013855373,0.26282027,-0.31458202,0.243656,-0.35764897,0.0045569954,0.7771409,-0.034656584,-0.039658573,-0.3869591,-0.5747249,-0.9612839,-0.2533912,0.2677744,0.11768882,-0.048594154,-0.557439,0.14354406,-0.1637999,-0.32832277,0.16612819,-0.4698652,0.25831458,0.078257285,0.66033256,-0.30597916,-0.97343373,0.11610855,0.2730501,0.12123306,-0.6783141,0.5607135,-0.18396422,1.0860903,0.03613825,-0.23065832,0.007914396,-0.5968185,0.18170181,-0.42821252,-0.028941255,-0.6048088,-0.01984295,834 +751,0.3024558,-0.14345345,-0.36237445,0.054663062,-0.17828281,0.079571635,-0.31098145,0.39965072,0.30615476,-0.4620025,-0.14300631,-0.3233953,0.03256344,0.30245438,-0.14598252,-0.59937716,0.052761417,0.17697228,-0.62744725,0.524141,-0.3739321,0.29880422,0.16720422,0.310629,-0.0726579,0.057195153,0.23012242,-0.14801146,0.19264163,-0.09221762,-0.00013955739,0.16865963,-0.78582764,0.24567135,-0.33651355,-0.43461707,0.16017789,-0.6089016,-0.53262794,-0.855662,0.32198027,-0.7978828,0.65620714,0.3929865,-0.10082364,0.10400099,0.09021847,0.36772186,-0.21762389,0.03524414,0.25544998,-0.2376252,-0.0011806213,-0.40718985,-0.22594555,-0.27579162,-0.63068956,0.09748824,-0.45436093,0.008025197,-0.29108948,0.24963456,-0.16166407,0.03898605,-0.17166358,0.42234242,-0.39168966,0.053515073,0.24706186,-0.2071111,0.46570382,-0.64113396,-0.021845102,-0.16507703,0.31056574,-0.43499535,-0.28422683,0.22505966,0.26562503,0.55629885,-0.041243132,-0.28459147,-0.23158683,0.09744824,0.14251265,0.4982701,-0.20239513,-0.5282973,0.026299072,-0.011136676,0.116184585,0.07588924,0.08889042,-0.44611084,-0.1254366,-0.23058695,-0.084919624,0.47298166,0.6836004,-0.36505702,-0.28910714,0.2313419,0.6796254,0.16294795,0.10532678,0.11151516,0.06942455,-0.7016183,-0.21648768,0.07582581,-0.2825229,0.4777717,-0.15878445,0.20413853,0.62932956,-0.09691548,-0.18308392,0.21722382,-0.12280235,0.052980974,-0.2241984,-0.27479425,0.32894677,-0.36736026,0.11742993,-0.25824726,0.6916293,0.2541596,-0.6977843,0.22721726,-0.69721985,0.20321208,0.1066755,0.5543554,0.5788876,0.59531265,0.27948156,0.871829,-0.5366559,0.12931904,-0.058207273,-0.24181388,0.13998124,-0.24949224,0.055275753,-0.3887238,-0.18595362,-0.28944433,-0.14417475,0.247042,0.24841824,-0.56031704,-0.059077825,0.16485223,0.79997975,-0.21745157,0.031346437,0.74292445,1.0038264,0.94965357,0.05407754,1.3639382,0.23409103,-0.24308611,0.093234666,-0.1073122,-0.8619057,0.2765381,0.34876654,0.07436861,0.17201479,0.114560716,0.00979275,0.40929848,-0.6956264,-0.012773241,-0.22430478,0.10546044,-0.005821118,-0.36626816,-0.24400638,-0.13565412,-0.10621865,-0.049060818,0.21695104,0.21680689,-0.22068399,0.30856034,0.15929678,1.2270983,-0.0014407497,0.09453594,0.09579469,0.35994127,0.30966124,0.07924971,-0.049973626,0.16975302,0.27530092,0.13092205,-0.57667124,0.12578826,-0.017099533,-0.38562787,-0.22173034,-0.14846052,-0.047303922,-0.029570542,-0.412848,-0.21243161,-0.0656682,-0.1795246,0.4286638,-2.5010228,-0.13876547,0.11824182,0.3991894,-0.19303305,-0.28900844,-0.16040275,-0.54127085,0.64231724,0.30092126,0.40294918,-0.7400497,0.3843392,0.52506185,-0.7615254,-0.10604771,-0.66697764,-0.13134922,0.042745676,0.24376018,0.29786363,-0.031831805,0.09038765,0.114689216,0.49264145,-0.13846298,0.038858574,0.2689282,0.49050567,-0.0668796,0.36951828,-0.029910726,0.5625816,-0.4771104,-0.28912002,0.5083076,-0.34930676,0.11818942,-0.15761405,0.013458353,0.4461227,-0.47356975,-0.969068,-0.77360344,-0.3094376,0.85463834,0.032392584,-0.42258245,0.12712294,-0.18567327,-0.21868967,-0.06016433,0.7865347,-0.11228049,0.11474597,-0.872209,-0.15352899,-0.1052172,0.42441082,0.05495315,-0.12739,-0.62908465,0.65848225,-0.032923676,0.30495846,0.62651974,0.14863183,-0.31583259,-0.5595473,0.10206643,0.83877784,0.27885097,0.18211314,-0.2944338,-0.14766718,-0.16512808,-0.008036444,-0.16630442,0.79103416,0.55792457,-0.22426976,0.028616726,0.23408347,0.21052696,0.1298087,-0.2810782,-0.37076995,-0.18738535,0.05614312,0.6387606,0.87698716,-0.25032094,0.056396767,-0.1294851,0.49016154,-0.20543051,-0.43472508,0.72778934,1.2134647,-0.07431719,-0.05332005,0.7326529,0.3007841,-0.19630536,0.5022495,-0.6175162,-0.5467578,0.40311053,-0.15678619,-0.50841963,0.29506114,-0.27862695,-0.0078832265,-0.76181537,0.3513196,-0.45227286,-0.32571566,-0.6545519,0.014897608,-3.3965793,0.24293217,-0.34068334,0.112984166,-0.16366665,0.048602104,0.1151782,-0.35411647,-0.5573504,0.2835198,0.23595619,0.5580434,-0.22495858,0.25269163,-0.28375444,-0.21798769,-0.38777953,0.28029102,0.28285983,0.14347826,0.049768236,-0.44504753,-0.08250684,-0.17114235,-0.31967145,0.0978458,-0.64108306,-0.21926561,-0.27464744,-0.5632817,-0.38091767,0.6731837,-0.45824617,-0.058621205,-0.21551703,-0.01214705,-0.053988934,0.34768316,0.04199995,0.19660242,-0.111272685,-0.07337026,-0.07003099,-0.067349195,0.36428392,0.12444652,0.10888402,0.36482954,-0.09110569,0.03660256,0.38516933,0.8021211,-0.17062873,0.9429074,0.39452422,0.037846167,0.34889892,-0.10557736,-0.46569267,-0.5314878,-0.14544985,-0.112553686,-0.3882782,-0.46027103,0.10690035,-0.46519873,-0.71718967,0.51774716,-0.025688943,-0.16654569,0.22264364,0.23636581,0.4164381,-0.4293865,0.024436556,-0.07578754,-0.21340516,-0.51507384,-0.21375522,-0.5588281,-0.56320727,-0.05728442,1.0920489,-0.059261765,0.09616877,0.20044602,-0.037871484,-0.048889976,0.2948267,-0.09454783,0.24382159,0.6527299,-0.003637222,-0.80926555,0.5979138,-0.028653502,-0.41343468,-0.68550366,0.41921595,0.6652405,-0.77762955,0.6824594,0.37728485,0.0068014264,-0.043371778,-0.5611069,-0.30708158,0.0020554662,-0.2009057,0.43001983,0.17438892,-0.6932929,0.36220407,0.28297532,-0.45032963,-0.7982078,0.5609405,0.06572976,-0.50515246,0.11799681,0.41067788,0.0056760726,0.07516423,-0.2154143,0.21596439,-0.30278483,0.37636536,0.15327889,-0.07754281,0.17728941,-0.22470053,-0.090528265,-0.85248876,-0.013408803,-0.57809347,-0.36486334,0.23107004,0.14320903,-0.1233426,0.15627858,0.10777332,0.46587133,-0.18225679,0.15863106,-0.17183271,-0.27944794,0.32762903,0.30594906,0.36530966,-0.4194746,0.6310413,-0.15254542,-0.2133952,-0.17995879,0.2526251,0.46670386,-0.09097731,0.4605028,-0.023999132,-0.009418139,0.32365793,0.7747571,0.11010531,0.19639191,0.05020792,-0.024640927,0.3721512,0.17384604,0.11386897,0.035159286,-0.6852669,0.22625223,-0.27980846,0.06116601,0.50825596,0.07391395,0.335254,-0.1946822,-0.4736728,-0.011350164,0.40981498,0.23314212,-1.0539215,0.22264692,0.10589591,0.80303,0.5358258,0.10993035,0.15093143,0.62101835,-0.15711334,-0.04849094,0.2672107,-0.03712827,-0.31289053,0.5200051,-0.6751138,0.369319,-0.04987675,-0.029986624,0.08520154,-0.078871235,0.31029564,0.9263972,-0.22320469,0.06338432,0.025354909,-0.120851465,0.042908356,-0.44083244,0.10742851,-0.39519817,-0.3816571,0.7704048,0.55867386,0.369875,-0.20670532,0.05313375,0.148004,-0.20062438,0.15038145,0.048086863,0.03464598,-0.044120345,-0.6288933,0.09953013,0.6812774,-0.021875607,0.12651423,-0.054371737,-0.2547572,0.30790144,-0.2853768,-0.17384185,-0.24553753,-0.8862705,-0.14230584,-0.47150058,-0.15229066,0.5310715,-0.102369785,0.29162204,0.30448556,0.16232938,-0.30940574,0.5406224,-0.030781802,0.7941317,0.21569674,5.371754e-05,-0.41645366,0.30948493,0.119363435,-0.23498178,0.06574322,-0.17471798,0.10833946,-0.40937102,0.425623,-0.024142586,-0.2678866,0.11987838,-0.08616496,-0.050826706,0.638381,-0.26372454,-0.22314739,0.2901119,-0.13148405,-0.17220828,-0.21265274,-0.15059341,0.2064724,0.29131156,-0.005600214,-0.06806799,-0.09181289,-0.22957699,0.4627668,0.07499523,0.45544484,0.29918316,0.1199814,-0.38080418,0.07757099,-0.00831919,0.64541245,-0.109021194,-0.23122412,-0.048613556,-0.6017916,-0.4000065,-0.07307872,-0.09913705,0.11748329,-0.041757636,-0.099858314,0.7788102,0.24052726,1.1505262,-0.073685415,-0.34774286,0.19652775,0.4478833,0.02532378,-0.1323893,-0.630961,1.053399,0.49337274,-0.12016089,-0.041163903,-0.19133282,0.113924116,-0.035886623,-0.21038836,-0.06716626,0.008143317,-0.6511474,-0.23534265,0.31336433,0.3413513,0.18535465,-0.11720505,0.14242037,0.27793986,-0.050364103,0.07982468,-0.6174142,-0.29116338,0.2886512,0.32958964,-0.052317917,-0.039535,-0.47720873,0.3994443,-0.39478174,-0.09771672,-0.3312268,-0.033258878,-0.39674044,-0.23982143,0.2383932,-0.116625294,0.3821861,-0.4610294,-0.31320626,-0.14113697,0.2884188,0.26579395,0.25797677,0.6632335,-0.12330063,0.075765185,-0.06834293,0.6750529,0.9775806,-0.5842037,-0.1515287,0.531264,-0.43558884,-0.43955657,0.35416597,-0.36421162,-0.031388145,-0.12140925,-0.17863461,-0.440029,0.17331325,-0.05779022,0.17491642,-0.11887724,-0.86359704,-0.1411334,0.45270523,-0.48328003,-0.33981782,-0.4141545,0.32769597,0.73341656,-0.14182237,-0.37482306,0.24587242,0.2284005,-0.32168505,-0.63858867,-0.025380492,-0.31268156,0.2069497,0.22731112,-0.3155988,-0.15384386,0.19387498,-0.65789413,0.085651144,0.069252774,-0.34965894,0.05219764,-0.33979255,-0.11486717,0.93720776,-0.3559341,0.14418499,-0.57757765,-0.5634212,-0.99469936,-0.26298752,0.6559439,0.29431075,-0.017169205,-0.62150866,-0.17205088,0.0056369076,-0.27154657,0.061464887,-0.18119612,0.47983837,0.087930426,0.6037077,-0.24882795,-0.9804698,0.13579991,0.11780889,-0.2076923,-0.52990156,0.39844593,0.32185686,0.9322554,-0.032407165,-0.055473067,0.44136745,-0.6203864,0.076118864,-0.32527834,-0.13927136,-0.7053563,0.06610025,839 +752,0.44597057,-0.3487859,-0.38750377,-0.10546681,-0.17697874,0.062443897,-0.31760454,0.568277,0.32759148,-0.56448275,-0.10819196,-0.10570064,-0.0614992,0.15663274,-0.09466295,-0.6441329,0.1265483,0.018252978,-0.491471,0.71965086,-0.50083345,0.2810052,-0.14599913,0.28577408,0.18442766,0.26611632,0.16025008,0.112871334,0.13725914,-0.05451015,0.065372124,-0.03184321,-0.42620105,0.31091675,-0.27558425,-0.5123148,0.13117594,-0.35801828,-0.4662466,-0.8541867,0.26569638,-0.6463105,0.5862992,0.021638999,-0.24793845,0.10802789,0.11364249,0.4109302,-0.2612345,0.08185817,0.14300863,-0.095755264,-0.023788564,-0.15432812,-0.27941975,-0.5910569,-0.46860653,-0.123032674,-0.45563066,-0.2801169,-0.14094886,0.24222524,-0.29270518,-0.10489294,-0.16109112,0.5539917,-0.48546675,-0.1327216,0.2742835,-0.09973567,0.20313047,-0.9185852,-0.33014405,-0.08766179,0.10113322,-0.04332942,-0.2584735,0.34038082,0.0969541,0.38803875,0.15428437,-0.17370635,-0.099843994,-0.13431484,0.055331785,0.5946508,-0.09809725,-0.23980355,-0.19218826,-0.14487658,0.3661037,0.168007,0.15117522,-0.35430205,0.09309047,-0.0017622411,-0.28834373,0.41245052,0.55191654,-0.33102766,-0.18677293,0.09936735,0.5824739,0.17076096,-0.24594954,0.102064446,-0.069931485,-0.3840756,-0.21031827,0.15767087,-0.052798536,0.4148855,-0.17179702,0.37655511,0.45243028,-0.1573026,0.18537919,-0.028676685,0.035888486,-0.03622272,-0.3659221,-0.4911266,0.35062996,-0.54266655,0.24723238,-0.4315082,0.5365931,0.22372842,-0.28837055,0.26175755,-0.5256577,0.076349154,0.032921672,0.52791506,0.77690315,0.25908226,0.19983871,0.76101977,-0.35911143,0.005384431,-0.08039828,0.11913383,-0.091355324,-0.1195724,0.29505017,-0.44707435,-0.056676902,-0.030259756,0.02283549,0.13931558,0.31488273,-0.56886715,-0.15925233,0.123403735,0.8446328,-0.2400411,0.24345255,0.8155075,1.3416593,0.8781891,0.007421395,1.2074319,0.4321278,-0.29850295,-0.023869194,-0.18449834,-0.48137525,0.1979402,0.37602574,0.3001619,0.28824055,0.09844327,-0.31572625,0.5804382,-0.49050763,-0.05335302,-0.15584995,0.043616597,0.05128829,-0.14437227,-0.47455317,-0.09648777,0.029519321,-0.13300836,0.17797206,0.20944087,-0.3311901,0.33254766,-0.083549194,0.8112881,-0.24021663,-0.073882416,0.1277444,0.57361025,0.28855446,-0.11767837,0.21350068,0.20724848,0.45755735,-0.058089834,-0.6549037,0.28961536,-0.34535614,-0.3991672,-0.1578959,-0.30648977,-0.17794646,0.07324968,-0.5011812,-0.25375974,-0.103015386,-0.12471425,0.15459314,-2.6999242,-0.34586424,-0.20429918,0.37517786,-0.13344964,-0.2558195,-0.08053573,-0.36758316,0.55303335,0.28988913,0.4594504,-0.5104437,0.4741698,0.5649616,-0.58398545,0.041314423,-0.57381016,-0.098443344,-0.08319202,0.45245644,0.06321129,-0.11192021,0.088666745,0.26522562,0.5781265,0.015867455,0.13051628,0.1611335,0.43388388,-0.32648566,0.33508873,0.05610188,0.49347907,-0.5347064,-0.16137563,0.31007275,-0.44629952,0.17706992,-0.3018071,0.15873139,0.566117,-0.28349793,-0.6939316,-0.5769767,-0.21046403,1.0290467,0.091868564,-0.5731263,0.07268231,-0.47557443,-0.2157366,-0.1468474,0.76256853,-0.06482499,-0.047150455,-0.72237265,-0.05770318,-0.12341015,0.11351877,0.08999845,0.05816755,-0.5812553,0.8482701,-0.056753658,0.4728405,0.37379107,0.29543197,-0.2177671,-0.36926624,0.10917965,0.4878756,0.5458556,0.21717459,-0.15734029,-0.035606265,-0.13895157,0.028028946,0.14108677,0.747131,0.6568269,-0.2214177,0.12391293,0.25463817,0.020947745,0.12702082,-0.27032205,-0.43150952,-0.26876563,0.24355537,0.50041527,0.2707592,-0.018278036,0.10060526,-0.02439588,0.21076657,-0.3822374,-0.4601157,0.4903239,1.0000865,-0.247969,-0.16134249,0.49638116,0.47100565,-0.12075615,0.46328095,-0.8155476,-0.38105598,0.39489397,-0.08813242,-0.37441522,0.07849479,-0.4081652,0.14110552,-0.83658224,0.33743307,-0.52835214,-0.4933958,-0.6876049,-0.25824264,-3.2594032,0.22476038,-0.37377247,-0.01984798,-0.2236904,-0.24244978,0.2935079,-0.5444568,-0.41713163,0.2988644,0.01950118,0.5818952,-0.0259776,-0.114586964,-0.32850665,-0.3108115,-0.35788426,0.18781258,-0.10357906,0.31592605,-0.023552785,-0.37243235,0.16171323,-0.017266925,-0.5398166,-0.047359534,-0.5253497,-0.19851485,-0.31889185,-0.60875475,-0.1815376,0.5946442,-0.19148317,0.1322311,-0.21694987,0.01027585,-0.13136207,0.37546495,0.18558781,0.2746912,-0.017527647,-0.044172738,0.023036055,-0.25333256,0.0772814,0.27367938,0.1082668,0.34732917,-0.115273386,-0.030968845,0.31197488,0.5661255,0.013241479,0.88469416,0.2724671,-0.10171269,0.5129839,-0.17175037,-0.33989444,-0.5152577,-0.45266804,-0.027880916,-0.23894164,-0.52307117,-0.056303903,-0.39808756,-0.6580144,0.4098538,0.052886106,0.2132187,0.18513654,0.3110595,0.379209,-0.19371851,-0.02295059,0.072476074,-0.026976297,-0.34873983,-0.33020562,-0.6533324,-0.5391668,0.093735024,0.77609104,-0.20836179,0.09378362,0.27255422,-0.24784502,0.09515459,0.35162777,0.10094671,-0.08005706,0.399766,-0.0392176,-0.617532,0.37735075,0.13571933,-0.3051095,-0.6135947,0.3683789,0.67352873,-0.6545282,0.6128958,0.30683783,0.069665484,-0.4153978,-0.49004358,-0.22090855,0.06369646,-0.2849215,0.4329931,0.039240763,-0.7114898,0.33316085,0.22308527,-0.1900915,-0.6907702,0.7256603,-0.090236075,-0.28710184,0.034682926,0.36457917,0.18981896,0.08310329,-0.1215617,0.3277783,-0.29062954,0.26909333,0.120705254,-0.06699438,0.51920897,-0.083010904,-0.084408484,-0.7052006,0.01153178,-0.6316774,-0.1895648,0.29477382,-0.13166912,0.08955535,0.25362805,0.011920198,0.34184724,-0.09275654,0.19681717,-0.18134683,-0.4583254,0.39392406,0.41991886,0.25276443,-0.22546552,0.70352143,0.037024107,-0.11537511,-0.069068044,0.29590195,0.33520702,0.22057009,0.6434809,-0.19492033,-0.091310054,0.11403137,0.9025891,0.2960127,0.38868448,0.1315545,-0.053215064,0.23728015,0.123602696,0.04941137,0.10698053,-0.24967244,-0.087599464,-0.22144292,0.25200891,0.3934158,0.0065938463,0.27567786,-0.07107298,-0.32378456,0.0077345646,0.27681637,0.04411114,-1.3349149,0.35766786,0.12992083,0.79779977,0.43184692,0.12698731,-0.26013067,0.47062048,0.08705267,0.005898751,0.24512036,0.08863216,-0.31382316,0.626324,-0.45161492,0.3900823,-0.08795253,0.062169526,-0.023928128,-0.07672808,0.529353,0.80424094,-0.2374693,-0.03931034,0.029849874,-0.2724768,0.077288866,-0.46337092,0.17173988,-0.33357114,-0.4029569,0.53604025,0.5077675,0.32125786,-0.30882385,0.02403593,0.0053895293,-0.14474581,0.1302378,-0.054593746,0.09018278,-0.18462484,-0.5956943,-0.18233758,0.40925968,-0.29913116,0.06709986,0.14041448,-0.3185733,0.14059983,0.1132176,0.1355761,0.117107004,-0.82376087,0.099867396,-0.32660568,-0.35352406,0.56546545,-0.17054719,0.20124935,0.32766873,-0.031135999,-0.18444887,0.37552974,-0.08012491,0.67072105,-0.034824204,-0.1661562,-0.399668,-0.0060166763,0.3442413,-0.31723896,0.13593996,-0.24573898,0.19492318,-0.5192921,0.5190221,0.066151254,-0.09759111,0.2906806,-0.13548523,-0.05761939,0.55204874,-0.18300197,-0.206899,0.18604572,-0.24546412,-0.30567595,-0.39524728,-0.049596127,0.26624358,0.056024905,0.3606925,-0.18766268,-0.2721317,0.048117336,0.3368191,0.19482501,0.18832889,0.4101658,0.06231784,-0.44188616,0.11640909,0.056962278,0.42912865,-0.11207753,-0.06931421,-0.06969898,-0.6420915,-0.4537974,0.10540729,-0.0866949,0.37977993,-0.017981797,-0.23840731,0.79294,0.15050325,1.0263944,-0.14495239,-0.4323917,0.09493317,0.65700257,-0.19669801,-0.030176204,-0.24621226,0.9338289,0.56657577,-0.051800694,0.010727768,-0.27690825,-0.018965263,0.29141444,-0.25205716,-0.14729832,-0.17059389,-0.7076301,-0.22992887,0.33285162,0.41341957,-0.075502,-0.04300103,0.13562606,0.2719317,0.04080069,0.34138563,-0.7520683,-0.18419005,0.3094128,0.13600752,-0.07070535,0.17277354,-0.34228188,0.3678524,-0.66958946,0.17776379,-0.34065452,0.041208666,-0.2426481,-0.3283803,0.26980448,0.002639789,0.41200414,-0.4898669,-0.38837022,-0.2819901,0.31096298,0.12301154,0.19268438,0.5614169,-0.13371992,-0.01274671,0.040211957,0.56718105,1.0444006,-0.21521385,-0.11787248,0.31480926,-0.6795384,-0.6019668,0.12052222,-0.33741543,0.04307052,-0.003044642,-0.2921593,-0.47253132,0.17221618,0.20281652,0.10336682,0.054432027,-0.66450024,-0.2702548,0.13507722,-0.41865274,-0.22342697,-0.39958674,0.26280215,0.58534914,-0.30059066,-0.1969423,-0.055002388,0.39212766,-0.2947927,-0.6552042,0.12940177,-0.29397088,0.47812277,-0.0008767247,-0.16853593,-0.19374742,-0.050651625,-0.4471522,0.041464202,0.0886091,-0.32595205,0.0030195438,-0.288957,-0.1672708,0.7040118,-0.08219899,0.10079013,-0.5476248,-0.52986676,-0.78981024,-0.47135532,0.28969103,0.46093014,-0.04719699,-0.5680948,0.08070871,-0.1338228,0.15015809,-0.027145097,-0.1386393,0.38894588,0.16185577,0.5441018,-0.10933207,-0.8647524,0.19591087,0.1578472,-0.10593875,-0.25090706,0.38072416,-0.009754405,0.898667,0.1244775,-0.027420044,0.08186034,-0.34856832,0.26857427,-0.27144337,-0.29884955,-0.7437048,-0.03164486,842 +753,0.38696644,0.0537536,-0.36227766,0.06936265,-0.09627478,-0.016592402,-0.18792571,0.13681544,0.25132173,-0.50558037,-0.36685625,-0.3766006,0.047983453,0.11099394,-0.16930349,-0.6632842,0.0005340668,0.18723664,-0.40491676,0.89932644,-0.23687807,0.556551,0.16687049,0.22598106,0.26136658,0.3964275,0.52176166,-0.071550384,-0.21799609,-0.052142043,-0.004582671,-0.17091945,-0.75639164,0.20735529,-0.3534417,-0.44035152,0.0015912607,-0.61346954,-0.5523326,-0.86583316,0.35894442,-0.87656814,0.4582392,0.1093264,0.03235432,0.21730152,0.16554919,0.3862065,-0.13202102,-0.044811763,0.12783402,-0.012173552,0.058790587,-0.15517512,-0.6056949,-0.24746796,-0.68575424,0.014290154,-0.36683705,-0.15464112,-0.34585956,0.062477347,-0.25397488,0.0135317035,-0.10968356,0.073593885,-0.6316467,-0.25365368,0.2949192,-0.22234155,0.11089395,-0.6388805,-0.29565448,-0.27628613,0.19560693,-0.38739568,0.032130573,0.5322829,0.20089601,0.4251304,0.1604101,-0.238914,-0.13439831,0.024023045,0.20757815,0.65013665,-0.14912659,-0.13560079,-0.0900166,-0.09688605,0.5877237,0.30378902,0.23168142,-0.22547904,-0.019855198,-0.32994902,-0.14677607,0.32650062,0.5814267,-0.23201217,-0.3984407,0.24707463,0.67886615,0.25626186,-0.10666117,0.032576486,-0.1260783,-0.27996537,-0.24379492,0.40418416,-0.25473085,0.5476188,-0.038905896,-0.055890404,0.7163131,-0.37508965,0.19166991,2.0384789e-05,-0.09944428,-0.12062876,-0.117442384,-0.2138199,0.49383467,-0.41766402,0.24707428,-0.42495522,0.5047913,0.35978776,-0.54886836,0.44671646,-0.6120596,0.17667617,0.14175305,0.7942845,0.57531273,0.27280584,0.4608862,0.83580106,-0.46980813,0.17102954,-0.11919455,-0.21756795,-0.046628837,-0.13365628,0.053657345,-0.27939427,-0.04875604,-0.034876864,-0.3444188,0.02826383,0.31847346,-0.64422727,-0.015251017,-0.1346848,0.68993,-0.3069189,-0.08340512,0.8252086,1.0813878,0.9588137,0.06633036,1.4645146,0.3873409,-0.2778734,-0.030518936,-0.3267631,-0.56015134,0.11510616,0.47725213,-0.39074707,0.6434005,0.2392501,-0.08842056,0.035654083,-0.54321605,0.06985566,-0.24875942,0.053658787,-0.178943,0.018563004,-0.35375646,-0.3414592,-0.1091951,0.03101359,0.3068396,0.24858025,-0.23755826,0.21669373,0.18718857,1.5507983,-0.013431733,-0.014202421,0.21941432,0.55805784,0.22356778,-0.08969641,-0.029629707,0.34808117,0.32578817,-0.07884441,-0.53154916,-0.033440147,-0.41071928,-0.3402353,-0.1365696,-0.33730757,0.13327853,0.15957157,-0.11327985,-0.018657446,-0.04619835,-0.45106778,0.5037051,-2.1848128,-0.18585123,-0.25129473,0.34515798,-0.28351778,-0.29609215,-0.37971914,-0.51480055,0.5229927,0.26171115,0.3592051,-0.6835644,0.13509999,0.66479516,-0.7528585,-0.104443185,-0.62774277,0.18179692,-0.114117034,0.3973789,-0.06774262,0.08040611,0.16438825,0.15775071,0.40388414,0.19415575,-0.017145528,0.35090148,0.5218719,0.10049497,0.4712394,0.2842015,0.44342157,-0.37934765,-0.1954812,0.586817,-0.401806,0.55778426,-0.24596158,0.01602565,0.4163281,-0.52628225,-0.72310245,-0.5426998,-0.7889957,0.9983393,-0.1424252,-0.5059783,-0.012738306,0.17984955,-0.069916695,-0.2216827,0.6398088,-0.29573697,-0.021695204,-0.580508,-0.21048339,0.051003125,0.2149284,-0.00073632825,0.2643274,-0.5479875,0.7235994,-0.22883788,0.20262307,0.29199558,0.35847062,-0.18178004,-0.59547055,0.2657854,0.8319452,0.4503446,0.087573916,-0.2408035,-0.23316382,-0.17443839,-0.29605624,0.011148792,0.43031633,0.7592469,-0.28712532,0.0020750384,0.56516165,0.16433099,-0.011805227,-0.16672502,-0.4092855,-0.23587006,-0.2044234,0.61650026,0.58810043,-0.28864706,0.2506271,-0.20240799,0.26602787,-0.079170465,-0.40381643,0.4559895,1.0600979,-0.15486155,0.03027346,0.51941836,0.34465247,-0.35233223,0.5749424,-1.0119622,-0.30004656,0.4903974,-0.055623464,-0.4924534,0.2276516,-0.18663393,0.004003346,-0.73143506,0.5212414,-0.21110779,-0.06870547,-0.49551594,0.041625556,-1.9616557,0.070006825,-0.3404735,-0.10134165,-0.17803563,-0.14743748,-0.18469238,-0.52343404,-0.6628894,0.34458795,0.0657821,0.42533132,-0.062717065,0.17634234,-0.27263921,-0.34077108,-0.4557092,0.23908314,0.30951816,0.49343997,-0.4634919,-0.31423488,0.056547496,-0.18476525,-0.56613576,-0.051595263,-0.5217416,-0.3297483,-0.4544767,-0.7300698,-0.25819933,0.6580562,-0.47291204,-0.050762,-0.25429422,-0.09724752,-0.061068222,0.3727114,0.37433258,0.28745073,0.16757672,-0.04786941,-0.074085556,-0.29051566,0.4903871,0.33372322,0.044068363,0.43079665,-0.25008252,0.1592255,0.11656074,0.61356163,-0.103126206,0.7539998,0.36342618,-0.27724102,0.36106735,-0.27450377,-0.30832735,-0.8113404,-0.41284806,-0.16678514,-0.23176321,-0.8738226,-0.20007579,-0.4282997,-0.7795674,0.534243,0.000686132,0.38036442,-0.053791825,0.1513439,0.45087308,-0.29195124,0.1299002,-0.019849231,-0.08479928,-0.51947886,-0.37347132,-0.7185182,-0.48363048,0.39347804,0.57107204,-0.128885,-0.24746059,0.2174205,-0.1964953,0.14219771,0.12774669,-0.007621592,-0.007228026,0.5538191,0.03667123,-0.5015361,0.56248194,0.31360328,-0.32698077,-0.6459141,0.35049403,0.7527634,-0.641614,0.64312416,0.37671998,-0.079643086,-0.11069936,-0.47216034,-0.28328118,-0.12343714,-0.24760197,0.24093515,0.078205556,-0.43376416,0.24537157,0.13373213,-0.38750556,-0.72489583,0.7713921,-0.05612909,-0.20576707,0.05719516,0.46912336,-0.06150073,0.07114954,-0.43860105,0.2111457,-0.3401955,0.14266488,0.3800489,-0.09295236,0.4723375,-0.08827007,-0.3444293,-0.8490327,0.5121292,-0.48653844,-0.33483604,0.243087,0.046953864,-0.2839864,0.30279994,0.31488153,0.36378703,-0.2260753,0.20252657,-0.041085456,-0.13356115,0.2326764,0.2947625,0.44769844,-0.4280521,0.6714449,-0.048345704,-0.16051602,0.12585285,0.11217614,0.28599647,0.027708054,0.03115047,0.25699103,-0.061058503,0.120325215,0.51101124,0.24366505,0.2247946,0.3337397,-0.10682117,0.41269785,0.18454851,0.29249835,-0.054904107,-0.4265073,0.13984941,-0.03734318,-0.15761775,0.38360772,0.17706409,0.28064793,-0.14545295,-0.3935808,-0.059507944,0.28090912,-0.2291557,-1.0011567,0.1456097,-0.04202728,0.6206325,0.64689547,0.015974667,0.21445201,0.4068116,-0.3698578,-0.07982181,0.34450373,-0.042790037,-0.45092183,0.49992326,-0.38094616,0.5172293,0.0030600291,0.08803265,0.1166044,0.12510231,0.27412075,1.0302584,-0.3800038,-0.050766844,-0.43420073,0.17888458,0.1762139,-0.37450406,0.49880654,-0.3044724,-0.5851494,0.726864,0.2117245,0.6055785,-0.05575057,0.0040098736,-0.0917445,-0.42770487,0.4044037,0.11649143,0.056528524,0.059250932,-0.595766,-0.24114695,0.567175,-0.5037385,-0.063115634,0.11533569,-0.0679565,0.05074845,-0.19490506,0.07513575,0.010346399,-1.1115137,-0.081246726,-0.34697026,-0.18655708,0.16080359,0.017804893,0.40665838,0.12526152,-0.1697065,-0.360435,0.46051592,0.25925538,0.8355955,-0.11397086,-0.35311514,-0.2733613,0.23838252,0.38720295,-0.25528744,0.37856337,0.054116823,0.17605278,-0.71440274,0.5490057,-0.07245053,-0.41363227,-0.12379926,-0.2790231,-0.38696787,0.5823464,-0.1176688,-0.24537688,0.07561461,-0.30531025,-0.15412265,-0.18428119,-0.16950217,0.08046989,0.32326862,-0.20266977,-0.02509855,-0.077701956,-0.07331051,0.45494393,0.16925438,0.22177836,0.1789082,0.19046673,-0.5221936,0.18719643,0.016607134,0.27350968,-0.06155932,-0.033068545,-0.06691037,-0.49699894,-0.47919142,0.3105091,-0.18596114,0.2925345,0.075927354,-0.11253416,0.6791003,0.18764463,1.258725,0.011723823,-0.41391817,0.08494775,0.69773716,-0.06059784,-0.22600073,-0.29926583,1.1944965,0.5513228,0.036645457,-0.15747693,-0.15060575,-0.19935352,0.15848035,-0.23804514,-0.07886701,0.11400532,-0.52353925,-0.34094244,0.16449052,0.4419514,-0.012620779,-0.07582043,0.072388425,0.226744,0.13262755,0.53046167,-0.43576968,-0.50512433,0.43790007,0.010813126,-0.14974247,0.18140496,-0.22164561,0.45907813,-0.45338833,0.31126043,-0.38825804,0.11028187,-0.13081071,-0.3733247,0.20328529,0.025239496,0.6733617,-0.5577705,-0.44729105,-0.3983312,0.3342087,0.14494576,0.2558298,0.69939435,-0.23060223,0.042309966,-0.26236385,0.7194014,1.2946061,-0.12852696,0.09446537,0.2180891,-0.6614857,-0.48189703,0.35011134,-0.37479213,0.022165481,-0.2623895,-0.40532568,-0.34735802,0.022917591,-0.009131642,-0.08387604,0.08028454,-0.79039186,-0.39392674,0.0785474,-0.14943613,-0.274888,-0.52101195,0.37172845,0.92193854,-0.1546424,-0.54534584,0.1874075,-0.089874856,-0.36867383,-0.6702559,-0.03922069,-0.07917063,0.38217402,-0.019281946,-0.13503914,-0.17484148,0.18009077,-0.3938278,-0.045883305,0.00036166265,-0.396786,0.011075556,-0.17448327,0.05836993,0.8085622,-0.22577229,-0.020294936,-0.47900063,-0.45034915,-1.0499456,-0.44405282,0.3683589,0.23830494,-0.08369747,-0.48310453,0.16091497,-0.24879386,0.20163749,0.14007378,-0.31426623,0.3270938,0.16981994,0.51549023,-0.411007,-0.9700568,0.1435779,0.010922615,-0.042221308,-0.6245383,0.37854245,0.14329672,0.5994605,0.1975083,-0.20962904,0.23469867,-0.583994,0.050993882,-0.331109,0.028805617,-0.72586036,0.21610586,843 +754,0.47065565,-0.11485429,-0.2605904,-0.14604276,-0.06283002,0.015143509,-0.18390578,0.49461254,0.29682344,-0.5108727,-0.041646883,-0.2785196,0.01901539,0.32494992,-0.2844805,-0.4944679,0.101237245,0.17885184,-0.32329035,0.5067795,-0.49722248,0.33096412,0.058320098,0.34230047,0.2924195,0.17271072,0.2565922,-0.114173524,-0.20074457,-0.2391327,-0.0982814,0.05352178,-0.37236926,0.17396615,-0.18592587,-0.3169832,0.016869549,-0.52298963,-0.38004854,-0.75668836,0.4666808,-0.7756721,0.43438846,0.056252472,-0.17609583,0.18053295,0.24106258,0.21694328,-0.19165649,0.015733004,0.09913938,-0.14418398,0.023868024,-0.100634284,-0.16756943,-0.2409748,-0.67540795,0.034124143,-0.3373749,-0.34603617,-0.38197342,0.12256325,-0.3504831,-0.04970698,0.067401275,0.65344167,-0.3838345,0.006427169,0.057874963,-0.1616901,0.161854,-0.6529782,-0.3076696,-0.10183597,0.25400165,-0.14674574,-0.1305394,0.31643993,0.23851976,0.44310263,-0.08114035,-0.09162068,-0.3586658,-0.17586543,0.11691365,0.5014571,-0.048823357,-0.64579195,-0.017044425,-0.07760735,0.03883735,0.16939647,0.25571865,-0.29704565,-0.028335005,-0.067748226,-0.34845066,0.43689397,0.58977574,-0.37538064,-0.19644257,0.28783023,0.4029699,0.089854546,-0.17897609,0.0043128454,0.08218548,-0.5194134,-0.16155218,0.09356443,-0.25610664,0.63377225,-0.11666421,0.36134258,0.48940542,-0.20653182,-0.007499571,0.021088572,0.076954365,-0.003860203,-0.26652426,-0.40624598,0.1720166,-0.40082836,0.074385434,-0.2369462,0.9464541,0.22974601,-0.77623665,0.41223642,-0.51714855,0.10642079,-0.06398967,0.4007294,0.58089596,0.3947048,0.53725535,0.683279,-0.46474472,0.0314123,-0.057721954,-0.35303319,-0.02208734,-0.3490429,0.12133872,-0.32512107,0.025558434,-0.019827183,-0.08451422,0.106278986,0.4350025,-0.30362135,-0.09148995,0.22815934,0.7818416,-0.22076409,0.04849624,0.7297926,1.0502784,1.1985368,0.010769069,0.918295,0.24593137,-0.29205295,0.25774187,-0.15121129,-0.66278297,0.26312822,0.30664897,0.15665524,0.05379688,0.023611885,-0.030930804,0.3541439,-0.43894702,0.086427525,-0.0879908,0.08934285,0.3441435,-0.08730778,-0.39855078,-0.3410525,-0.18351184,-0.06961242,0.17433926,0.2578219,-0.25570613,0.24311699,-0.019158583,1.681038,-0.0741127,0.073967725,0.13621327,0.7263199,0.24547458,-0.13758712,-0.01936047,0.1917572,0.2417213,-0.03631058,-0.6149303,-0.005066303,-0.19645357,-0.422823,-0.0837896,-0.40363795,-0.22920044,0.020845184,-0.48091525,-0.20418122,0.0032593906,-0.34133038,0.39768267,-2.9213088,-0.21429944,0.038582418,0.33014914,-0.24313119,-0.3166166,-0.09282612,-0.52713335,0.4922276,0.35650778,0.38887957,-0.6294502,0.24580456,0.55402744,-0.379107,-0.24714023,-0.6058138,-0.10584665,-0.16852403,0.22813895,-0.017153297,-0.083233394,-0.1320391,0.20306325,0.5209428,0.19721676,0.1331644,0.111147776,0.35794732,0.03344069,0.5267675,-0.1593187,0.43820888,-0.274427,-0.061806485,0.26842198,-0.50980306,0.05503834,-0.3238206,0.17004779,0.48861545,-0.48577225,-0.8365399,-0.7470255,-0.14395227,1.0553757,-0.06422956,-0.35346383,0.35240555,-0.3928305,-0.17750885,-0.20642437,0.695135,-0.06961623,-0.0105025405,-0.628728,0.052997634,-0.097267814,0.14905527,0.11129593,-0.037172448,-0.46333426,0.6341525,-0.03166478,0.6080691,0.33761886,0.16324146,-0.39135483,-0.41451687,0.021491515,0.8440748,0.20434883,0.26463157,-0.35736436,-0.045396917,-0.36194038,-0.16191167,-0.012893289,0.45303443,0.6682253,0.042771697,0.11339657,0.2323449,0.008393609,0.072134145,-0.02192412,-0.27570853,-0.061857,-0.016387293,0.6044198,0.5559705,-0.13967758,0.33846042,0.0025202162,0.08842251,-0.43105236,-0.25591677,0.54809755,0.9187011,-0.043020323,-0.25412086,0.60210717,0.3964154,-0.2109232,0.45866108,-0.570703,-0.27222168,0.4885217,-0.17140803,-0.39199096,0.23936528,-0.40343362,-0.019866614,-0.6678098,0.16944918,-0.18582156,-0.22509421,-0.51798713,-0.14551249,-3.3858545,0.076981835,-0.065843575,-0.2521364,-0.110013075,-0.13834634,0.11308242,-0.50069314,-0.54012614,0.26791674,0.075418994,0.76166016,-0.04665383,0.093330786,-0.2368021,-0.21705271,-0.48188034,0.11735388,-0.15912811,0.38380003,0.13914791,-0.35295397,0.090091586,-0.25935572,-0.407898,0.05068799,-0.34715384,-0.43034348,-0.12311756,-0.41035903,-0.52415717,0.74021965,-0.3734311,0.13633496,-0.1832354,-0.15276214,-0.14620015,0.26676065,0.19329245,0.15596318,-0.08304639,-0.086121954,0.011266481,-0.22245733,0.31256348,-0.07026473,0.16211642,0.38227147,-0.0022005988,0.032975562,0.40581796,0.6637235,-0.15313266,1.0055099,0.32138368,-0.070979886,0.21685298,-0.2919765,-0.314354,-0.36371034,-0.18129826,0.047640577,-0.31015328,-0.4855076,-0.07036189,-0.4047042,-0.6012975,0.3837283,-0.030104151,0.27929175,0.08130719,0.20774958,0.39954165,-0.14178543,-0.01961284,0.086633444,0.058725376,-0.567885,-0.30283788,-0.6116753,-0.45968768,0.13696447,0.79630315,-0.067783974,-0.11966345,0.08064038,-0.11380411,-0.13979964,0.028433075,0.029000567,0.1378311,0.32923,0.034456927,-0.761674,0.4343415,-0.10928618,-0.12033406,-0.5865707,0.185208,0.6108827,-0.574188,0.53834015,0.35411784,0.05344164,-0.2693286,-0.48419872,-0.3252065,-0.008741752,-0.103019744,0.38195136,0.12224785,-0.7969369,0.45050097,0.23912843,-0.21025237,-0.6814245,0.49675053,0.004718707,-0.3948134,-0.12529172,0.31907147,0.26278275,-0.02297915,-0.21641137,0.08737819,-0.5301232,0.18774536,0.18534066,0.100961775,0.29845625,-0.34603685,-0.15998888,-0.6836624,-0.123218976,-0.44263873,-0.3310948,0.16185156,0.15812427,0.3132666,0.42333654,0.00074877875,0.26525557,-0.16527662,0.11185102,-0.09003288,-0.09970084,0.32570103,0.30114156,0.4954804,-0.45623666,0.56619364,-0.10993444,-0.06547172,0.036789957,0.080079794,0.22292906,0.1702391,0.34348127,-0.106121175,-0.42761517,0.27662766,0.82968056,0.2755623,0.32902482,0.21395448,-0.15018041,0.35792205,0.17956558,0.09994666,0.22729832,-0.5780122,-0.019544981,-0.42387417,0.16794673,0.41377145,-0.019348392,0.33798864,-0.078782134,-0.39285067,0.061624352,0.2546892,-0.26338235,-1.1207727,0.27395394,-0.0044378457,0.8860306,0.58389324,-0.040745556,0.08998403,0.72096485,-0.07023214,0.22133633,0.30323026,0.008032954,-0.4131494,0.59657234,-0.5463563,0.4734634,-0.08465516,-0.09365919,-0.1595286,-0.059649907,0.42484134,0.4879332,-0.050688762,0.07871994,0.11017655,-0.2584544,0.22878835,-0.46362466,0.08456381,-0.4591713,-0.10603494,0.52732074,0.42361084,0.23130892,-0.012689132,0.059020802,0.06510744,-0.09081558,-0.13669917,0.08664063,0.0055610766,0.037111953,-0.6913092,-0.07665735,0.5809449,-0.13042036,0.13885145,0.0061228643,-0.12564445,0.24774367,-0.20023783,-0.09520487,-0.059341006,-0.68779814,-0.051949896,-0.24516204,-0.4601318,0.46828097,-0.13289586,0.28018445,0.21895266,0.13221797,-0.26732805,0.3347121,0.43336186,0.5263849,-0.15630037,0.0403613,-0.43821532,-0.04769065,0.088834636,-0.15999486,-0.20927423,-0.2561707,0.05354281,-0.47638035,0.39654306,0.0014347159,-0.12097445,0.059952717,0.05459945,0.070917614,0.7553918,-0.21743141,-0.013866063,-0.03483884,-0.15049958,-0.17316169,-0.13220027,-0.070182696,0.24000105,0.15907216,-0.15751992,-0.054342654,-0.15824579,-0.097257525,0.2548421,-0.07582916,0.49572748,0.17378367,0.10766257,-0.22091757,-0.20433332,0.019500732,0.54111266,0.092647165,-0.23889175,-0.27538475,-0.39101455,-0.28843865,0.48706782,-0.008853831,0.2221199,0.16102949,-0.32337755,0.651312,0.046001136,0.8908506,0.049874082,-0.43032134,0.13128072,0.43499973,0.05365532,-0.03100176,-0.32434937,0.81593317,0.41483152,-0.088435136,-0.11602917,-0.28203005,-0.010527776,0.07370574,-0.25272787,-0.17576137,0.037475105,-0.6046218,-0.20518282,0.22148679,0.27478662,0.18681985,-0.1639253,0.08209939,0.35087517,0.14915457,0.3394828,-0.3753721,-0.09999499,0.39809301,0.39120886,0.13290511,0.02428947,-0.3525626,0.3104416,-0.58811474,0.018091353,-0.32779095,0.20256527,-0.19109932,-0.22103272,0.29139498,0.21579051,0.4680423,-0.19489095,-0.37967202,-0.31349203,0.43650115,-0.029018788,0.18526986,0.31820768,-0.18869792,0.049315754,0.062112458,0.6086129,1.1219633,-0.15036032,-0.018103361,0.40046203,-0.32382938,-0.61814606,0.31912532,-0.3598654,0.20843513,0.12087532,0.017015548,-0.5434374,0.17090419,0.2936602,0.08104605,0.111751154,-0.47164935,-0.5555135,0.33026278,-0.279849,-0.259853,-0.33337396,-0.11010495,0.48148787,-0.23772581,-0.17877333,-0.055832826,0.3932479,-0.2224204,-0.6916185,-0.065697454,-0.27816996,0.35830706,0.12407183,-0.19024223,-0.19715492,0.06831116,-0.5462849,0.2026822,0.13309385,-0.39014333,0.06127782,-0.44849852,0.024479646,0.967217,-0.11916888,0.09786553,-0.3942373,-0.48073882,-0.8268073,-0.42670357,0.5813395,0.041958585,-0.017756123,-0.5216514,-0.11841134,-0.13099541,-0.0026894074,0.04116272,-0.44058177,0.4194229,0.1251159,0.3106084,0.020627715,-0.6675344,-0.15168858,0.057219386,-0.4175873,-0.44220445,0.4864086,0.102828436,0.92246467,0.049575362,0.038141396,0.22762981,-0.29986048,0.13158076,-0.24247995,-0.33721182,-0.57043594,0.22185993,863 +755,0.65355045,-0.026394458,-0.602476,-0.15418187,-0.24727169,0.21570924,-0.1563414,0.49831098,0.32286188,-0.38745245,-0.20109592,-0.10669789,0.06228812,0.551967,-0.17328279,-0.6562824,0.09686111,0.19161429,-0.44009545,0.49626243,-0.47863913,0.34041545,-0.06468121,0.33892462,0.16522077,0.27650663,0.23593174,0.09912631,-0.014365168,-0.0024443131,-0.31335303,0.20277889,-0.37645754,0.10262807,-0.07940957,-0.45547235,-0.105526686,-0.5657423,-0.42439908,-0.6922332,0.40154675,-0.81990206,0.5395428,-0.029638914,-0.14959455,0.062441733,0.26105165,0.37680238,-0.31058437,-0.0055856477,-0.013814087,-0.10876424,-0.074364685,-0.16699632,-0.2647169,-0.47997153,-0.6567038,-0.08922717,-0.42088413,-0.18790314,-0.29470026,0.07990739,-0.28566435,0.07572525,0.079521194,0.36153567,-0.3751241,-0.17940044,0.33624524,-0.20787518,0.14335053,-0.5129572,-0.107441135,-0.061684094,0.32113707,-0.11523783,-0.27247086,0.22633108,0.3616373,0.414804,-0.029368341,-0.15401688,-0.43930596,-0.14221361,-0.027804017,0.56670034,-0.10245573,-0.5996543,-0.27314955,0.116489284,0.1120406,0.34827965,0.08617438,-0.1276585,-0.026652588,-0.021420367,-0.30118102,0.45585153,0.49967334,-0.4287762,-0.27520525,0.35867113,0.4150316,0.086055905,-0.12336038,0.02015574,0.043398984,-0.58002025,-0.14276536,-0.10603951,-0.21092972,0.6001223,-0.20576048,0.2983232,0.6392407,-0.010308286,-0.029729761,0.0776904,0.01936061,-0.24454874,-0.28300223,-0.14161152,0.13992907,-0.34698942,0.22506021,-0.045909937,0.5790238,0.36015496,-0.6429112,0.36216205,-0.60847557,0.12931257,-0.15045026,0.3518117,0.7185353,0.37585723,0.13367592,0.88199675,-0.3865264,0.20273665,-0.1389562,-0.305432,-0.057845004,-0.10407345,0.06527598,-0.6621606,0.25585496,0.14218388,-0.005608877,0.33886915,0.40578353,-0.4469817,-0.1232495,0.20633186,0.88482785,-0.27717397,-0.11473329,0.8092836,1.0267383,0.95997745,-0.03907127,1.0220584,0.2563514,-0.2596703,0.16608045,-0.28360224,-0.7412725,0.24019688,0.3908656,-0.085372694,0.3731922,-0.004371423,-0.053766064,0.30571663,-0.3276955,-0.07708439,0.06640856,0.15242423,0.24359575,-0.1709151,-0.42733404,-0.13213575,-0.07460176,-0.014131661,0.33661482,0.28942698,-0.17483391,0.49520496,-0.015741508,1.6604676,0.03600227,0.05754733,-0.043248635,0.5922506,0.4372272,-0.099775024,-0.1763263,0.17853117,0.34326795,0.092764035,-0.47491395,0.14036892,-0.19072495,-0.42367223,-0.11975928,-0.32057407,-0.09586407,-0.13963486,-0.33572438,-0.09800681,-0.061295945,-0.2453467,0.43001848,-2.918809,-0.28315645,-0.1328211,0.35248905,-0.28914553,-0.41655684,-0.14949591,-0.4483146,0.4285378,0.39751217,0.48509583,-0.5690988,0.33616114,0.4100092,-0.6137522,-0.07768752,-0.5856374,-0.1045175,-0.006215122,0.35438913,0.034081485,-0.17954126,0.0079978425,0.3243542,0.4966887,0.0076003717,0.08647073,0.21700874,0.36717606,0.017332243,0.49939534,-0.25192267,0.70341706,-0.35852483,-0.053104334,0.26951826,-0.403976,0.19639444,-0.28490973,0.11189019,0.5165488,-0.4693685,-1.0736724,-0.6121174,-0.035442844,1.0115435,-0.21741918,-0.29640415,0.2206321,-0.52351385,-0.24883887,0.12846047,0.5165431,-0.115890115,-0.10463751,-0.7149173,0.029001107,-0.06306987,0.04974363,-0.039714452,-0.07452564,-0.4697692,0.59579825,0.066557616,0.5853968,0.14200044,0.26421657,-0.25600427,-0.38584167,0.021095006,0.80455387,0.2935917,0.15123664,-0.19317561,-0.10636445,-0.5805763,-0.18364738,0.12563159,0.64535743,0.65816087,-0.10549317,0.092764035,0.166399,0.15678763,-0.009095265,-0.13920087,-0.1895191,-0.050825562,-0.07708459,0.57999814,0.6163751,-0.2527382,0.45582283,-0.099022545,0.3835428,-0.33252752,-0.4499311,0.7623472,0.88134205,-0.14576691,-0.36398587,0.53933996,0.47622278,-0.23728873,0.40158427,-0.7440827,-0.43340078,0.4725873,-0.08870839,-0.29363427,0.054517206,-0.3130553,0.08013492,-0.92616993,-0.0539948,-0.28178203,-0.48090044,-0.4477145,-0.1781453,-4.0927577,0.08617164,-0.097491845,-0.15615775,-0.15026638,0.01957323,0.13577984,-0.51116735,-0.78605664,0.3139374,0.028063703,0.8876191,-0.17062484,0.29148304,-0.2072787,-0.1639699,-0.40289176,0.24128625,-0.0069491128,0.33029762,0.04722422,-0.46195012,-0.09004441,-0.07462482,-0.65058744,0.13784416,-0.6636946,-0.3890662,-0.10161464,-0.48024356,-0.11428574,0.681165,-0.32285118,0.045730233,-0.11408525,0.05014945,-0.265889,0.28120172,-0.031961028,-0.0219572,0.09682084,-0.16841295,0.2351528,-0.26887882,0.40104696,0.052612856,0.42162946,0.24519125,-0.09079381,0.19666499,0.50016904,0.72964156,0.10115577,0.8980455,0.36484128,5.8547237e-05,0.31570223,-0.38732117,-0.26190707,-0.30306605,-0.28862825,-0.10500565,-0.39138743,-0.49436635,-0.13019249,-0.50097966,-0.8012055,0.34070104,0.1393351,0.21990901,0.0479223,0.20349345,0.55023104,-0.34792134,0.115515575,0.031101657,-0.13875622,-0.4627978,-0.21616493,-0.46668524,-0.49759594,0.12157769,0.9576927,-0.20960453,-0.027439447,-0.20547731,-0.26730803,-0.14131556,0.30295298,0.113621935,0.1329543,0.42779812,-0.14317721,-0.66850793,0.5043797,-0.37872887,-0.2752703,-0.72702086,0.13250126,0.49278042,-0.6238798,0.509195,0.33603552,0.13237002,-0.1750707,-0.44339684,-0.17570604,0.03112953,-0.19022228,0.24298964,0.2283071,-0.75591385,0.39619783,0.29346272,-0.1998764,-0.7246736,0.6855721,0.052955188,-0.29438463,-0.1871803,0.22766916,0.3440324,0.04938686,-0.33546102,0.14193992,-0.41467652,0.22064827,0.15656629,0.14450124,0.5195013,-0.19380921,-0.056265943,-0.7286363,-0.14085387,-0.47561756,-0.1494064,0.26520908,0.08657228,0.3364821,0.13327803,0.048906606,0.31439516,-0.41945845,0.12504362,-0.1685795,-0.3407171,0.25563142,0.3163281,0.40192607,-0.4262638,0.6805169,0.019149417,-0.0052473387,0.21586564,0.01385631,0.37076253,0.05113828,0.61318016,0.25711757,-0.30748287,0.14717166,0.7151905,0.18884364,0.07192531,0.22169921,-0.101854764,0.22332844,0.020704636,0.026757548,0.17789957,-0.64874846,-0.03287142,-0.35898605,0.13972367,0.45169765,0.2430265,0.32743803,0.07823539,-0.38557273,-0.0054178145,0.14691299,-0.11191782,-1.4444906,0.44718167,0.2203644,0.93454194,0.39879182,0.0327787,0.011815162,0.55148304,-0.07993281,0.25779006,0.4254988,-0.1392763,-0.3224458,0.4637501,-0.65882325,0.60750645,0.11548679,0.0071129594,-0.09914921,0.08644119,0.48357356,1.0011971,-0.21658574,0.08805193,0.15677422,-0.38521236,0.27619487,-0.33957994,-0.28308967,-0.7218918,-0.14111155,0.7057717,0.51337373,0.3044244,-0.10665886,-0.06317348,0.13434294,-0.0020323717,-0.043169998,0.13132243,0.12276983,-0.09287533,-0.66982883,-0.28794596,0.42484745,0.25956747,0.2744052,0.103584245,-0.20501794,0.32254142,-0.081792206,-0.034404453,-0.09616817,-0.6614967,-0.087579384,-0.34211567,-0.43174097,0.51057345,-0.060804423,0.2871035,0.2251067,0.017520057,-0.16941231,0.46387774,-0.060146507,0.78462756,-0.026820842,-0.26145726,-0.3842078,0.088431865,0.19307111,-0.30550405,0.015865434,-0.2898557,0.026300477,-0.5011896,0.5966902,-0.026336381,-0.38158268,0.16862202,-0.06605008,0.0965294,0.47081274,-0.27951586,-0.17082033,-0.08261972,-0.10366351,-0.33549705,-0.17631482,-0.27450675,0.23059687,0.048357006,-0.04739087,-0.10837857,0.0521567,0.007612859,0.4392278,0.022236297,0.3488485,0.36148623,0.18136165,-0.25940517,-0.14120004,0.31012487,0.63909334,-0.11853155,-0.27976596,-0.25522014,-0.47542906,-0.44171426,0.1333302,-0.034105726,0.36613977,0.16097058,-0.14012244,0.38538477,-0.117707305,1.1118877,0.024793016,-0.3499443,0.08188773,0.46502966,0.05557786,-0.17109522,-0.3623336,0.9639219,0.43365347,-0.14227332,-0.1363716,-0.34030658,0.1833846,0.16685827,-0.21180354,-0.2229078,0.014821445,-0.629111,-0.33328372,0.1637001,0.114216715,0.45495576,-0.09992071,0.14756587,0.22291514,0.13592106,0.23678508,-0.43476874,-0.18113253,0.34353554,0.36475536,0.0021058137,-0.010021191,-0.4897315,0.304091,-0.47610262,-0.11826132,-0.26124054,0.18682307,-0.24368939,-0.38539892,0.3447404,0.24405655,0.25353307,-0.17163096,-0.40953657,-0.32418615,0.46575972,0.20333377,0.1119153,0.4232086,-0.19798917,-0.06636558,0.095262416,0.5635447,0.995341,-0.23431356,0.10916296,0.35437885,-0.4269765,-0.61224616,0.36299005,-0.26872355,0.37984753,0.13357696,-0.17177626,-0.7626307,0.33237913,0.04611602,0.15698512,0.17152801,-0.5005939,-0.31973502,0.21441433,-0.2916951,-0.34020963,-0.3608363,0.07834648,0.5888423,-0.17530563,-0.18915118,0.256558,0.24879983,-0.11023839,-0.6791289,-0.04242649,-0.27204242,0.31573975,0.07812594,-0.31217083,-0.23945695,0.0033123929,-0.48671958,0.41493797,0.03379753,-0.37415266,0.087737545,-0.49960387,-0.21944663,1.0348585,-0.3701237,0.2632621,-0.56779677,-0.4138778,-0.79153866,-0.25124085,0.42028475,0.004387158,-0.10810443,-0.6602137,0.006017096,-0.021676796,-0.0880295,-0.064073406,-0.32345027,0.39632827,0.045358904,0.40092593,0.082369104,-0.864774,0.10091399,0.08707828,-0.3624594,-0.50631136,0.46909487,-0.02399229,0.9331871,0.0417834,0.11575986,0.46143574,-0.50183177,-0.08318413,-0.18611765,0.018433925,-0.67972654,0.26029265,864 +756,0.4461004,-0.2574291,-0.4045904,-0.19726287,-0.1482038,-0.018312575,-0.08092617,0.55465454,0.34309906,-0.49957213,-0.2004142,-0.16932389,-0.043672122,0.27765706,-0.11359695,-0.63101894,0.012385146,0.19098407,-0.35547718,0.678898,-0.521562,0.2013267,0.05488266,0.43756735,0.24700148,0.00831306,0.25961626,-0.21103191,0.036769923,-0.10662318,-0.16021316,0.31641862,-0.45840576,0.1934421,-0.091453806,-0.40268803,-0.018618595,-0.4762134,-0.25410953,-0.8229285,0.27002195,-0.70983845,0.42631868,0.2984353,-0.38820022,0.1703368,-0.05312324,0.2705956,-0.37670282,0.05963724,0.079365596,0.012092517,-0.08414782,-0.121157795,-0.040110305,-0.16707389,-0.59935534,0.073745005,-0.36859682,-0.001958102,-0.21088299,0.14333938,-0.39940923,-0.16198233,-0.12545994,0.6255919,-0.45494795,0.0040648533,0.2562537,-0.2026659,0.3725348,-0.567615,-0.2974481,-0.13594566,0.15226294,-0.12169988,-0.35608035,0.22007425,0.3003037,0.5382628,0.0415579,-0.20703167,-0.37113005,0.0035696488,0.04655298,0.3369827,-0.12027018,-0.54166293,-0.15025987,-0.031132616,0.15178691,0.13181926,0.14726296,-0.33226946,-0.13499993,-0.03414893,-0.25484127,0.42009237,0.50860363,-0.293381,-0.18118261,0.2711539,0.48466232,0.109480515,-0.005018991,0.13017803,0.10050607,-0.6758518,-0.16625397,0.19954889,-0.31772706,0.53780705,-0.25180146,0.20948285,0.64462036,-0.105341874,-0.066799715,0.15224144,0.12270292,-0.13384034,-0.3795245,-0.31619167,0.37065905,-0.30793798,0.069124624,-0.2751882,0.91812664,0.03234049,-0.8190776,0.22983855,-0.5641608,0.1679609,-0.15858896,0.6660372,0.7102145,0.30777803,0.537459,0.7879005,-0.4409064,-0.012211511,-0.021617703,-0.316145,-0.019013882,-0.080160625,-0.12839581,-0.5047443,-0.0038087459,0.05802075,-0.10618797,0.07954792,0.4452191,-0.592383,-0.09230609,0.21785036,0.65834385,-0.24887463,-0.09199858,0.730983,0.99595493,1.1651995,0.1458228,1.0871838,0.27864486,-0.16868131,0.20210226,-0.31344464,-0.7546345,0.35147002,0.35954902,0.088344015,0.32841492,0.030355917,-0.0419263,0.32305494,-0.48093656,0.039899513,-0.22323605,0.17254885,-0.0010806414,-0.053217813,-0.5006713,-0.37670434,-0.16018894,0.042782333,0.039345603,0.14707094,-0.1829981,0.28788635,-0.013028173,1.5777013,-0.14105026,0.060270593,0.12865996,0.4520489,0.19174439,-0.12388183,-0.10429324,0.31667092,0.40151867,-0.014551639,-0.68419874,0.13824509,-0.14031288,-0.4499194,-0.09704773,-0.27728814,-0.0019022708,-0.13154101,-0.40388834,-0.14406496,-0.12957391,-0.5694816,0.4134372,-2.7179537,-0.19664747,-0.11815631,0.25334975,-0.24195123,-0.1832013,-0.20736033,-0.48714715,0.35944125,0.45827976,0.5105016,-0.8420556,0.36867934,0.4990738,-0.5782943,-0.109405234,-0.74809456,-0.123064265,-0.15551907,0.24432404,0.060604475,0.031347428,-0.042345222,0.1991559,0.49802348,0.11627349,0.14482114,0.2831972,0.3287094,0.01889282,0.5044705,0.051336758,0.38347656,-0.27460024,-0.19506662,0.35054496,-0.46408388,0.1909895,-0.048792936,-0.004015635,0.44388866,-0.52509284,-0.8917312,-0.6805204,-0.3029316,1.2596309,-0.24004793,-0.36615637,0.22391623,-0.18165174,-0.04579155,-0.12841564,0.52022016,-0.17145747,-0.17596349,-0.8833813,0.028564215,-0.023617927,0.33762395,-0.02864544,-0.113652535,-0.44089684,0.6978699,-0.023729287,0.5104118,0.41168663,0.15067254,-0.3098477,-0.49753782,0.0697351,0.9397681,0.31838208,0.18277518,-0.3451781,-0.1720069,-0.31110826,0.16813459,0.12295778,0.48534778,0.7633126,-0.20988637,0.1350672,0.41617492,0.075820915,0.01730423,-0.104824185,-0.22517855,-0.19888268,0.061604068,0.6398702,0.7212554,-0.21294767,0.2399203,-0.08085064,0.22349215,-0.102908686,-0.3447558,0.57135355,0.8550679,-0.019949757,-0.27393645,0.6120632,0.5686002,-0.28147233,0.45331654,-0.58909196,-0.23542263,0.35873172,-0.10048224,-0.33282757,0.10518852,-0.3962355,0.17453958,-0.9181344,0.29500082,-0.20586188,-0.30634454,-0.6281272,-0.04784619,-3.2449086,0.27291825,-0.27332097,-0.16780542,-0.1225346,-0.06735012,0.13864684,-0.53898853,-0.64645666,0.09593563,0.17131704,0.627334,-0.0132764,0.08840923,-0.28661203,-0.2091578,-0.35354137,0.12016162,-0.012460417,0.3252907,0.24343982,-0.45157015,-0.0021874583,-0.19294903,-0.31456864,0.05451472,-0.503944,-0.48403412,-0.147552,-0.68389666,-0.3749663,0.5682959,-0.21565741,0.028863417,-0.17606544,0.006667238,-0.03133691,0.33848858,0.058083877,0.072197825,-0.053814594,-0.095674396,-0.19502313,-0.17785603,0.19381998,-0.022419872,0.15767981,0.32862446,-0.21618043,0.21920255,0.550408,0.59562564,-0.2173989,0.72569597,0.5654009,-0.10131307,0.14853726,-0.10978257,-0.1255421,-0.519423,-0.29333517,-0.10385533,-0.41400832,-0.3994786,0.088762686,-0.26602483,-0.8523073,0.5152196,-0.111776285,0.19447596,0.083561644,0.16779849,0.54949313,-0.07033278,0.048549093,-0.08819025,-0.15508175,-0.41146368,-0.33000505,-0.74454755,-0.26922166,0.21606809,1.0610465,-0.3246523,0.1609323,0.1298658,-0.11424741,-0.10395626,0.18407306,-0.017283656,0.24986269,0.45240676,0.08341401,-0.50537795,0.4017289,0.050316457,-0.15930812,-0.4461951,0.17827593,0.5981771,-0.6029378,0.586313,0.31547314,0.030460583,0.027920635,-0.5670546,-0.3076356,-0.060631793,-0.1424327,0.47047326,0.24001628,-0.6654711,0.41055897,0.34731975,-0.1931784,-0.80652976,0.3810674,-0.08395186,-0.40728348,-0.100715324,0.31226116,-0.022536488,0.12599938,-0.15547019,0.20319249,-0.40188012,0.18165673,0.11359581,-0.16414419,0.31662443,-0.15674774,-0.0268776,-0.7533747,-0.0144344885,-0.63047653,-0.30822167,0.20471825,0.1315491,0.008037943,0.16221197,0.02459019,0.37532505,-0.12167554,0.047382135,-0.027852656,-0.15731582,0.35391173,0.5800657,0.41190207,-0.38221133,0.60333276,0.07346533,0.021123635,-0.31319046,0.03070852,0.32180336,-0.028234271,0.45677254,-0.11195008,-0.24459127,0.45472303,0.6767473,0.13414234,0.4901467,0.010813566,-0.039670065,0.3826935,0.07320137,0.25086015,-0.20588373,-0.44320723,0.02628426,-0.28639483,0.13698044,0.41930866,0.17311686,0.27342463,0.010916567,-0.30053857,0.070682034,0.27161887,-0.09227285,-1.1575143,0.2952727,0.18028277,0.7259298,0.7396912,-0.09992835,0.06787939,0.6297899,-0.26834655,0.09801919,0.32026064,0.009674168,-0.4784172,0.6688968,-0.60320497,0.38578635,-0.1832709,0.0016731918,-0.07592355,-0.06647844,0.401604,0.53634536,-0.13468918,0.020550195,-0.13498332,-0.30128792,0.07091131,-0.50362784,0.12534866,-0.6083101,-0.21314965,0.674078,0.6096331,0.3477292,-0.2061798,0.010949933,0.056037374,-0.10407495,0.10945309,-0.023182154,-0.09094512,-0.045827873,-0.78998435,-0.015229505,0.5319154,-0.026846446,0.16127242,-0.030185465,-0.2513439,0.10949172,-0.09053664,-0.12728937,-0.10734543,-0.6836834,-0.15325275,-0.2950535,-0.22161163,0.45704836,-0.3459922,0.25497767,0.21971366,0.11289569,-0.2979452,0.12493537,0.09022922,0.6996121,0.08823094,-0.1288895,-0.38282198,0.19558048,0.1364268,-0.12723994,-0.23417057,-0.24652314,-0.01555186,-0.4930968,0.4453454,0.17293288,-0.2425267,0.08880382,-0.07753154,-0.06309194,0.6356065,-0.14605829,-0.100020155,-0.11372277,-0.27632958,-0.23776732,-0.14584033,-0.1781906,0.36805552,0.16418847,-0.10983903,-0.05933288,-0.022136245,-0.101207644,0.51159847,0.10556621,0.30155614,0.29744422,0.09921355,-0.512302,-0.017665194,0.15219904,0.5833314,0.124373905,-0.17674352,-0.22320928,-0.27069065,-0.31769565,0.08946085,-0.20549652,0.36376226,0.05070362,-0.2544522,0.87308943,0.26109183,1.2252814,0.0065909633,-0.37505662,-0.06696398,0.47427735,0.052318435,-0.0054697786,-0.30160502,0.94997305,0.49044374,-0.19583075,-0.15650107,-0.39029577,-0.08947027,0.14882642,-0.19441845,-0.14708734,0.015346921,-0.6729606,-0.33581156,0.22673622,0.23732448,0.17867254,-0.12805822,0.014079497,0.18170562,-0.046261292,0.39046186,-0.2996705,-0.021027248,0.14749655,0.23175356,0.18055342,0.050400797,-0.43107656,0.34323943,-0.59926564,0.098825805,-0.23923436,0.16651358,-0.2764785,-0.26763424,0.29354084,0.087071076,0.35429347,-0.36223274,-0.32374543,-0.27548912,0.5909218,0.14487287,0.122851536,0.6708581,-0.27188018,0.15257543,0.08285473,0.47268465,1.1479132,-0.20672959,-0.14456911,0.35359028,-0.34689835,-0.672967,0.2839241,-0.3844325,0.109252185,-0.10932917,-0.36888486,-0.67807204,0.29041815,0.16795756,0.07837363,0.28198746,-0.6720848,-0.20040314,0.3829923,-0.30218267,-0.15591073,-0.32826048,0.06780377,0.5564964,-0.19138162,-0.4981815,0.07268643,0.16738357,-0.18751346,-0.6818567,-0.051197145,-0.42160618,0.301726,0.054735914,-0.33104375,-0.12887147,0.10434754,-0.43235797,0.0036857473,0.35945213,-0.2843826,0.136183,-0.36089438,-0.0702966,1.0031434,-0.16066067,0.2498009,-0.5284487,-0.37396383,-0.90628743,-0.18268728,0.8011819,-0.0035050923,-0.037440635,-0.6384675,0.0070277224,-0.02459822,-0.23518816,-0.115139775,-0.3415158,0.50415057,0.16248947,0.29291147,0.04253556,-0.72697884,0.1999952,0.06850476,-0.22041321,-0.59325594,0.46021098,0.054592464,0.94905853,0.06212791,0.042641215,0.23927683,-0.538054,0.102845795,-0.22177154,-0.24430513,-0.61285,-0.021179523,869 +757,0.38643676,-0.27282193,-0.576538,0.011148861,-0.23685251,-0.071556084,-0.2044688,0.36800736,0.2641115,-0.47068092,-0.14873503,-0.03886286,-0.005298209,0.32796243,-0.042923715,-0.47163847,-0.064024225,0.28877357,-0.48655,0.7778186,-0.29014695,0.08413558,-0.16541219,0.49118713,0.061050005,0.3096608,0.0571728,-0.043051325,-0.06800563,-0.07214535,0.17680416,0.26814002,-0.8037523,0.23774782,-0.06546961,-0.3241437,0.06404417,-0.37103578,-0.32797,-0.75328964,0.08583534,-0.7099875,0.5762595,0.1342178,-0.307614,0.16786382,-0.15804133,0.36732265,-0.3112269,-0.043479256,0.16462828,0.011088382,-0.12433147,-0.14619146,-0.085868195,-0.21250364,-0.5258075,-0.040332492,-0.3393521,0.0483654,-0.28122965,0.01046407,-0.34850687,-0.24013267,-0.10408772,0.6366996,-0.43630534,-0.012568325,0.25444075,-0.0033725272,0.41676214,-0.53234696,-0.03676198,-0.28649816,0.14231963,-0.2033022,-0.3125831,0.17673884,0.21651186,0.41942376,-0.07478692,-0.12893832,-0.2853011,0.0555828,0.3871222,0.35636234,-0.112877525,-0.34410244,-0.101673566,-0.010709522,-0.07167042,0.120866016,0.21562117,-0.41211334,-0.10632867,0.00427402,-0.02223611,0.33107564,0.46836612,-0.1370472,-0.13826789,0.22045414,0.7002822,0.2681432,-0.16720179,-0.040678732,0.08008854,-0.4898632,-0.24041308,0.08379751,-0.21920887,0.59762585,-0.18784444,0.19715089,0.5675277,-0.15501095,-0.23440757,0.11923942,0.0120100975,-0.010322809,-0.3426062,-0.36970058,0.4147693,-0.47274715,0.3802099,-0.040829126,0.47858793,0.2929087,-0.6986122,0.2693426,-0.5930339,0.16109425,-0.11005073,0.545618,0.723538,0.35215744,0.4217024,0.78954124,-0.5176803,0.1061935,0.02745819,-0.34058857,0.11397072,-0.15742084,-0.15101402,-0.53889877,-0.11461584,-0.08295286,-0.31192276,0.011475036,0.03014238,-0.49041998,-0.06798646,0.23020035,0.7165317,-0.21561721,-0.06215282,0.6219091,1.0869292,1.0391897,0.22319911,1.2669251,0.14110655,-0.17684203,0.1833506,-0.12570614,-0.8295011,0.2543146,0.38492393,-0.1246965,0.33694395,0.146874,0.04034676,0.6123961,-0.5679823,0.10976812,-0.17417742,0.33993164,-0.021429475,-0.26863283,-0.4753534,-0.15436706,-0.21371351,0.073484235,-0.21262869,0.20935914,-0.07460983,0.23628967,0.10400491,1.5333924,-0.16055888,0.06603742,0.115060166,0.4117886,0.23322494,-0.32011482,-0.23650695,0.31711662,0.4292928,0.22691661,-0.46210515,0.12653813,-0.13639596,-0.36091724,-0.105712295,-0.22374581,0.060619377,-0.031002581,-0.2960193,-0.18184185,0.017097564,-0.296149,0.51692873,-2.7169337,0.039892357,-0.07529789,0.35318258,-0.24776667,-0.28950804,-0.07893301,-0.32554516,0.40152076,0.34184998,0.47577918,-0.6722516,0.3167608,0.48765263,-0.66976917,-0.015981985,-0.6781752,-0.25537407,-0.062687986,0.34080264,0.14579202,0.13245176,0.03772766,0.25747854,0.43135265,0.03673716,0.10710362,0.21341212,0.16145737,-0.031039778,0.45982155,0.10619182,0.40211377,-0.2130314,-0.17352964,0.24857286,-0.22151569,0.31738552,-0.09417237,0.07618358,0.47205025,-0.35569125,-0.88834244,-0.73292947,-0.22065577,1.1104901,-0.14484128,-0.31213093,0.28266767,-0.5552783,-0.27390492,-0.042489387,0.3749285,-0.044518284,0.010188373,-0.94781363,0.06458388,-0.052221637,0.2742046,0.06482469,-0.11351147,-0.5937761,0.6017582,0.006788641,0.40407303,0.64088434,0.1578945,0.07434508,-0.40297222,-0.059743505,0.9317805,0.38497427,0.09257217,-0.34305206,-0.1411368,-0.3249081,0.17880018,0.05438171,0.43416235,0.69297975,-0.26831394,0.12237021,0.23209716,0.019988898,0.04564619,-0.12185109,-0.31891567,-0.033243172,-0.045252893,0.51013154,0.826903,-0.13595065,0.3584902,-0.052039407,0.15529118,-0.09575044,-0.4554863,0.6600123,0.9172927,-0.12903307,-0.19682892,0.62376046,0.49401143,-0.371965,0.5261172,-0.44347417,0.007871408,0.34278825,0.036141172,-0.32148784,0.08678666,-0.38743693,0.35198233,-0.91020465,0.3728798,-0.4251035,-0.5585907,-0.5016321,-0.11325802,-3.252972,0.32887334,-0.28849655,-0.18509248,-0.14077918,-0.05515343,0.36478618,-0.65470636,-0.66859555,0.2764748,-0.048509035,0.599336,-0.19104345,-0.117608026,-0.12921637,-0.4333744,-0.30265525,0.18995704,0.24776694,0.2610578,-0.015026226,-0.59636354,-0.2605034,-0.16464113,-0.4290209,-0.036224265,-0.58606666,-0.29665348,-0.19188404,-0.5876284,-0.26796934,0.6360798,-0.08882075,-0.052297253,-0.2567108,-0.00011730882,-0.09473275,0.28740317,-0.04031241,0.24509001,-0.012663671,0.0061975466,-0.12822428,-0.15519184,0.0021177302,0.05031275,0.12691617,0.2042525,-0.12367822,0.2721345,0.567824,0.8237943,-0.2496222,0.9697556,0.7786281,-0.20366882,0.2129897,-0.26286405,-0.25877017,-0.61894864,-0.40534478,-0.16704601,-0.40998718,-0.53971857,0.15267242,-0.2889064,-0.7801284,0.76284784,0.02563912,0.21342681,0.19042364,-0.028769385,0.46415168,-0.33638403,-0.101252094,-0.042166874,-0.1895446,-0.6422885,-0.20848638,-0.57341677,-0.40044215,0.1236394,1.0827061,-0.40321332,0.098859005,0.13740103,-0.32046416,0.18354271,0.26368183,-0.10562979,0.09889562,0.45524156,0.23481542,-0.5635833,0.3296564,0.040436737,-0.12683335,-0.6420908,0.27949265,0.76275563,-0.6331468,0.7338005,0.24817356,-0.110228054,-0.10990524,-0.5896425,-0.32732788,-0.03332236,-0.23590319,0.45457026,0.3248668,-0.81493056,0.18983921,0.39807114,-0.2706862,-0.67292523,0.6442317,-0.13318445,-0.19373606,-0.0940458,0.3371486,-0.16801713,0.060780928,-0.29589367,0.32653892,-0.28534296,0.0897598,0.36936876,-0.1572884,-0.022845205,-0.15557718,-0.031067688,-0.81762946,0.0662232,-0.5126282,-0.2086017,0.43656936,0.09164233,-0.058371656,0.083652884,0.40577012,0.28834504,-0.32295433,0.16183461,-0.17272152,-0.4159061,0.4423359,0.5987335,0.31614187,-0.2864586,0.6100529,0.006597434,-0.19185,-0.26864845,0.023978243,0.3819819,-0.061611913,0.38837445,-0.051481918,-0.12475158,0.0031200922,0.7245362,0.0012747967,0.5493826,-0.03253472,0.01809888,0.20211378,0.16714689,0.37362942,-0.0017484243,-0.45315212,0.266748,-0.21389452,0.16922775,0.2715717,0.15654701,0.2021119,-0.056555774,-0.39312384,-0.038242437,0.18396832,0.25371727,-1.423671,0.5446385,0.16347234,0.7340101,0.69270813,0.15079287,-0.051319104,0.6340528,-0.06912758,0.17348267,0.4582814,-0.14392287,-0.49707377,0.4208365,-0.7365828,0.34379512,0.069278315,0.027090427,0.058602657,-0.204642,0.43381497,0.8343949,-0.19898693,0.021154316,-0.14458156,-0.16195314,0.06281178,-0.37272522,0.10447923,-0.55407405,-0.45491442,0.65489125,0.64105946,0.50507724,-0.2776987,0.028338332,0.17792228,-0.089558125,0.2885532,0.073294386,0.09098614,0.20819491,-0.5880397,-0.11142925,0.47414458,-0.30199975,-0.0015872625,-0.14978136,-0.20141004,0.264297,-0.1764063,-0.042283025,-0.010670872,-0.78126615,-0.0955269,-0.432356,-0.30350512,0.6081878,-0.17186883,0.18681486,0.044658713,0.04896683,-0.21112162,0.5490978,-0.12018846,0.5916208,0.009832584,-0.0038489287,-0.22216323,0.29619166,0.17176726,-0.12697464,-0.0030061924,-0.2947219,0.106891945,-0.48143432,0.36048162,0.164317,-0.41482565,0.02534031,-0.17474915,-0.020794097,0.5791563,-0.119436875,-0.3566615,-0.053753827,-0.30158827,-0.19751358,-0.41309193,-0.07755875,0.38993958,0.15440185,0.042361088,-0.022475008,-0.0021575002,-0.016390113,0.26441202,0.20728216,0.30006218,0.2743302,-0.07872427,-0.45927054,-0.17580615,0.15186185,0.4309591,0.049414244,-0.22586186,-0.16424039,-0.4398679,-0.4879314,-0.087393954,-0.11126844,0.4847678,0.06073361,-0.13298097,0.7325678,0.28653625,1.1986117,-0.11004294,-0.39774,0.033536337,0.5031407,-0.028066112,-0.09946552,-0.35268694,0.8718293,0.48324144,-0.27636942,-0.112613216,-0.4132621,-0.16152675,0.102438085,-0.13181037,-0.012173369,0.0145496195,-0.6740874,-0.091021545,0.27935898,0.31342375,0.20060775,-0.16637413,0.12331946,0.19425748,-0.06505399,0.17709115,-0.37046117,-0.06057425,0.3723535,0.23954126,0.07611801,0.047247376,-0.3530532,0.270759,-0.4339456,0.056707166,-0.14525384,0.15173908,-0.2484394,-0.37931442,0.18178703,-0.047797665,0.41718096,-0.47699028,-0.24552606,-0.35807163,0.5322753,0.28264517,0.10253679,0.66817343,-0.24872929,0.025372963,0.03182241,0.38694313,0.80249333,-0.37338415,-0.054117974,0.4230059,-0.3104504,-0.5655072,0.17043771,-0.31388754,0.2642319,-0.1200348,-0.27932087,-0.73158073,0.1038338,0.07650717,0.0024978747,0.13060643,-0.73493415,-0.22049235,0.20442155,-0.24630645,-0.1081226,-0.24966274,0.050163325,0.5964161,-0.3042367,-0.52966845,0.056414723,-0.032285057,-0.11389963,-0.35487345,-0.15605897,-0.24283153,0.20994337,0.14229962,-0.497639,-0.109315544,0.092839554,-0.5184077,-0.022750936,-0.033731528,-0.28701302,0.10944777,-0.35580984,-0.11180456,0.9974805,-0.3341988,0.2294057,-0.25117022,-0.4826358,-0.84791535,-0.27194956,0.5280645,0.040429857,0.049465537,-0.5183448,0.18495652,-0.058038525,0.09382549,-0.014046685,-0.37314722,0.4253741,0.11097563,0.286972,0.01813161,-0.87051845,0.21106526,0.19576846,-0.042051055,-0.5520513,0.5216167,0.029344132,0.84999347,0.06483504,0.18659592,0.030220866,-0.5033744,-0.05406517,-0.1484206,-0.116167866,-0.5574931,-0.054141197,871 +758,0.44506678,-0.24129036,-0.6911946,-0.0507617,-0.35843387,-0.052944995,-0.17373851,0.62738967,0.25431138,-0.44259068,-0.15353559,-0.24412942,-0.13508219,0.5191915,-0.2328163,-0.4152603,-0.21390001,-0.016201628,-0.47372147,0.69908464,-0.23763332,0.16626245,0.117412,0.35663053,0.52252746,0.14136535,0.16059262,0.1624035,-0.22361477,-0.2833474,-0.047160722,0.07388925,-0.66616493,0.1528429,-0.33174482,-0.5543338,-0.20719422,-0.6828229,-0.2851788,-0.99100655,0.46236166,-0.95093346,0.42596823,-0.008850968,-0.25174636,0.19092487,0.35139477,0.29114553,0.015660264,-0.36490828,0.2236023,-0.12031254,-0.012632756,0.04164946,-0.42155716,-0.2636646,-0.60632807,-0.08328306,-0.37793973,-0.13912472,-0.15704833,0.1594924,-0.3741778,0.10456026,-0.21984838,0.7696671,-0.333867,-0.12820177,0.30402648,-0.05029738,0.30298615,-0.74776065,-0.27358526,-0.20351778,0.06955007,-0.09392938,-0.18535735,0.57439303,0.066556424,0.1810724,-0.028524546,-0.21705535,-0.33478612,-0.124518886,0.1045251,0.27762577,-0.20684844,-0.40434164,-0.14198217,-0.08259919,0.35495436,0.41290408,0.3269423,-0.2172367,0.120401494,-0.0049724486,-0.19888017,0.5225594,0.44459274,-0.22999822,-0.067500845,0.27817896,0.63271916,0.37701094,-0.23868242,-0.3056669,0.028187545,-0.509098,-0.07376147,0.24445216,-0.23165832,0.45920455,-0.09264057,0.19432592,0.49482253,-0.29895902,0.13108715,-0.024175782,0.11883836,-0.07529613,-0.6012103,-0.4242399,0.37962323,-0.47730687,0.41859674,-0.3456628,0.7284896,0.14927195,-0.48738366,0.24449581,-0.6883925,0.1698603,-0.029976066,0.4819435,0.71254116,0.39834923,0.31893393,0.77662456,-0.12921478,-0.09001687,-0.21792497,0.03391129,-0.117098734,-0.3547778,0.30869323,-0.40169203,-0.025820872,-0.2432584,-0.014703086,0.06851619,0.26938468,-0.45477566,-0.30796698,0.13435951,0.80917114,-0.13148645,0.09229605,0.88513595,1.0160761,1.193181,-0.039695557,0.7862024,-0.07606192,-0.21413714,0.20471478,0.09233642,-0.610551,0.32204264,0.41432348,-0.08307505,0.0893718,-0.06283596,-0.12906048,0.45815688,-0.37247616,-0.0021439607,-0.16636676,0.12883392,0.25474295,0.11503834,-0.34082508,-0.3307374,-0.10243205,0.013377208,-0.05618873,0.29886273,-0.20823413,0.30220965,-0.03811479,1.4142289,-0.14662863,0.106143884,0.32071528,0.5926116,-0.049242634,-0.29552713,0.05952062,0.109183155,0.096820556,0.07501068,-0.52568424,0.2473525,-0.37293264,-0.4539951,0.079572275,-0.46625233,-0.34891495,0.06458845,-0.5760914,-0.20591925,-0.15769999,-0.16054298,0.3776372,-2.7100134,-0.052135102,-0.16957599,0.20236367,-0.32810932,-0.43945485,0.089599736,-0.6398127,0.60028386,0.18975694,0.43453565,-0.41067314,0.20701903,0.5347952,-0.6496526,0.049039014,-0.66641164,-0.123345934,0.15663712,0.2549713,-0.16787942,-0.13473074,0.21768849,0.05870823,0.28628922,0.20963822,0.18645056,0.34008127,0.24820362,-0.22271205,0.6059005,-0.1125507,0.37727326,-0.7051964,-0.1262338,0.46387312,-0.5508969,0.39366448,-0.15191144,0.12619184,0.6655683,-0.61942583,-0.8253803,-0.57727504,-0.3050784,1.2295781,-0.21190095,-0.65776265,0.2392485,-0.40003034,-0.027842682,-0.27981803,0.6295737,0.047990542,0.014485698,-0.5868622,-0.006365744,-0.26925975,0.22247997,-0.1550193,0.08363759,-0.36626515,0.6843867,-0.029622091,0.5353964,0.39641884,0.093391106,-0.5270099,-0.43529928,-0.060652193,0.7615252,0.51283777,0.058008067,-0.1968467,-0.103821926,-0.5185645,-0.1837546,0.14318533,0.607659,0.6775725,-0.0065443562,0.19509116,0.29108825,0.012094855,0.101330414,-0.07813518,-0.35441992,-0.38272408,0.12697941,0.5905642,0.5532187,0.060441118,0.3990595,-0.04154891,0.17960149,-0.20018448,-0.4402634,0.20749117,1.007185,-0.30418885,-0.23787381,0.5375997,0.55619246,-0.3405096,0.49773863,-0.41755792,-0.46883604,0.4551773,-0.13325502,-0.6717073,0.09562905,-0.20697792,-0.008314848,-0.5258134,-0.10713459,-0.70635545,-0.23355825,-0.60011417,-0.21646707,-2.2670476,0.35096678,-0.056145243,-0.15534092,-0.23845533,-0.2700189,0.17026056,-0.6414616,-0.8027266,0.09469331,0.07890938,0.7703717,-0.16592321,0.0009893454,-0.27520037,-0.24431285,-0.3155287,0.23760271,0.18274738,0.30686614,-0.22334638,-0.3674564,-0.2290601,-0.037382323,-0.47239238,0.03832429,-0.5338142,-0.41850471,-0.27626193,-0.5166318,-0.4020239,0.6739823,-0.25735432,0.13435155,0.049853936,-0.09458201,0.06387024,0.04937878,0.23182514,0.5167682,0.063770406,-0.17050417,0.034767047,-0.18818349,0.06294782,0.246881,0.41614568,0.44361848,-0.14521183,0.48998627,0.40511227,0.8208255,0.04216935,1.0049125,0.21668312,0.0044520935,0.23914744,-0.14205094,-0.3293743,-0.57172686,0.08229024,0.12012669,-0.25996572,-0.44525582,-0.027723359,-0.21447116,-0.75934917,0.74806345,0.005459272,0.4094028,-0.07689439,0.2700338,0.5083977,-0.37002483,-0.005298801,0.041114565,0.1312214,-0.6612715,-0.33478525,-0.6591502,-0.5027938,-0.0102671245,0.85180736,-0.2713018,-0.08490066,0.30966023,-0.31559354,0.2224372,0.097237974,0.003085847,-0.15049645,0.42135686,0.13849679,-0.590161,0.5381885,0.09912114,-0.015469558,-0.41901156,0.47391322,0.6284023,-0.47573793,0.6076958,0.19820645,0.013788242,-0.64874446,-0.59068924,-0.027645264,-0.08789505,-0.28185743,0.34556866,0.36254328,-0.63561195,0.16697796,0.21700071,-0.10144412,-0.8115693,0.5010879,0.089114,-0.36347204,-0.12800139,0.38987908,0.34601548,-0.014278371,0.07364196,0.26467198,-0.25915077,0.18228628,0.33037594,-0.042144716,0.26123005,-0.3711417,-0.23941796,-0.4727607,0.4531338,-0.44670266,-0.26729175,0.54191107,-0.1419549,-0.13413857,0.36239132,0.21894374,0.23407364,0.06008701,0.18213604,-0.1531248,-0.27987263,0.48090914,0.45441166,0.6519181,-0.5467891,0.64808375,0.049104705,-0.19423291,0.33557656,-0.06295075,0.3543909,-0.013990306,0.5130088,-0.11672424,-0.34395888,0.040889814,0.6910748,0.1668707,0.36050415,-0.10687138,-0.06543254,0.10816402,0.058225192,0.13975248,-0.12700026,-0.80987513,0.03475178,-0.15040742,-0.11636876,0.54994667,-0.014169065,0.27464387,-0.018577393,-0.19033708,-0.006077707,-0.084048934,-0.35346413,-1.3648608,0.4816414,0.11224934,1.0692073,0.5806558,-0.07075795,-0.17052875,0.6501013,-0.12934457,0.09819715,0.40916803,0.14349084,-0.55127114,0.61563873,-0.47938046,0.5503489,0.053372804,0.0298433,-0.071099386,0.1125602,0.6539512,0.54926956,-0.30172294,-0.079264596,0.024651404,-0.2976814,0.31120417,-0.45237494,-0.067498565,-0.53451484,-0.34700972,0.515481,0.5431298,0.285821,-0.16711529,0.0068883416,-0.029695395,-0.130382,0.31032336,-0.01721667,0.11080156,-0.083640225,-0.3902899,-0.08167795,0.4507397,-0.4215759,0.16363427,-0.043512907,-0.29277852,0.12919234,0.14395723,0.04031805,-0.10434299,-0.77468884,0.21693197,-0.5549959,-0.4345453,0.08953249,-0.16797958,0.19586895,0.23991181,0.08225714,-0.24012038,0.5194877,0.114185885,0.7000317,-0.5427978,-0.0789181,-0.3582308,0.24193947,0.063536294,-0.10724917,0.18321855,-0.044259492,0.09900606,-0.4363337,0.5802651,-0.17685224,-0.35480303,-0.05500762,-0.1131837,-0.07378023,0.5952968,-0.05070218,0.049450524,-0.16042185,-0.18543953,-0.30443284,-0.33939713,0.037873797,0.119650826,-0.055284753,0.25409505,-0.19397466,-0.17386797,0.12721373,0.42917207,-0.12396038,0.3979306,0.4801437,0.19591318,-0.5727968,0.0074735973,0.12893069,0.6517086,0.04149615,-0.16243932,-0.38792166,-0.26139122,-0.33265796,0.47902447,-0.16581027,0.55088484,0.114869446,-0.19025205,0.84880215,-0.030784043,1.1239021,-0.10435842,-0.50142974,-0.10889912,0.47533643,-0.096531995,-0.26324338,-0.29824424,0.7850154,0.3571378,-0.112859815,-0.009925907,-0.2761202,0.07997641,0.3150036,-0.18756345,-0.14080025,-0.02861336,-0.46851012,-0.08119701,0.029135792,0.3793851,0.21744147,-0.37619796,0.019575957,0.42998186,0.114973545,0.33529934,-0.34955838,-0.16848141,0.26633975,0.17594443,-0.18779637,0.23982432,-0.5283297,0.3377729,-0.61081463,0.29927033,-0.39107817,0.22654735,-0.24336347,-0.34632385,0.14159863,-0.08225166,0.45896384,-0.2937851,-0.34444898,-0.24339673,0.43114752,0.25182343,0.1422136,0.5662599,-0.1457161,0.025093969,0.0020471124,0.6784919,0.9722353,-0.16656344,-0.13237886,0.0006939356,-0.34217983,-0.67865336,0.3082618,-0.29836428,0.13591978,-0.007916469,-0.06451337,-0.60759455,0.03044183,0.21593751,-0.13122264,-0.09669936,-0.889541,-0.22436915,0.120714225,-0.25474614,-0.2827605,-0.6105748,-0.07367664,0.43475887,-0.074907176,-0.32649598,0.0841205,0.21561462,-0.07462856,-0.51846784,0.051094867,-0.25753975,0.15885809,-0.12706167,-0.4521166,-0.11086834,0.1579348,-0.48512176,0.17594638,-0.28122026,-0.26912776,-0.06584852,-0.08206351,0.16084656,1.0661057,-0.08881542,0.22013003,-0.20739375,-0.5919295,-0.6416218,-0.42522258,0.16781078,0.0026388397,0.08949372,-0.58629984,-0.0142553905,-0.25349504,-0.055579368,-0.05542324,-0.16405998,0.40404022,0.12320647,0.48860946,-0.19561622,-0.6354542,0.44782272,-0.002130561,0.13981804,-0.28043988,0.34863186,-0.0032817882,0.80059755,0.14091939,-0.003464098,0.1111784,-0.41030914,0.08254468,-0.09394029,-0.08925912,-0.35809788,0.24356405,877 +759,0.50488985,-0.16454393,-0.5293517,-0.17000352,-0.2804147,0.11283132,-0.19164899,0.22966796,0.2953761,-0.22115152,-0.27858257,-0.071717896,0.17205404,0.40608552,-0.08338984,-0.9348218,-0.09683072,0.2184278,-0.7528382,0.31528282,-0.6920115,0.40532494,0.08465176,0.37255558,-0.037921224,0.31192365,0.31242493,-0.2703877,-0.001881847,-0.1477414,0.001709562,0.07089643,-0.7338455,0.188999,-0.11917861,-0.24860543,-0.053969033,-0.4819829,-0.29655758,-0.8223902,0.18812236,-1.1015633,0.48304027,-0.057529885,-0.14527997,-0.25594553,0.19936815,0.43873575,-0.45392036,0.26880074,0.23433624,-0.2729503,-0.2075465,-0.3408652,0.038843725,-0.42781323,-0.41618913,-0.09073082,-0.4661169,-0.29975873,-0.21805191,0.29973787,-0.42567953,0.030103339,-0.15775153,0.037750702,-0.45509374,-0.024919037,0.40287402,-0.32318053,0.27515322,-0.4272488,0.02883469,-0.111009054,0.5869647,-0.029324321,-0.21837792,0.43805504,0.37763426,0.41772333,0.31550005,-0.3164582,-0.09737485,-0.14134493,0.4304067,0.5564169,-0.22383429,-0.22813104,-0.29138714,-0.007046846,0.31268424,0.46296743,-0.03647619,-0.30726096,-0.05990433,-0.17113478,-0.12715667,0.48120254,0.5067518,-0.25251466,-0.4733175,0.38593844,0.6370714,0.3118057,-0.09104851,0.17280926,0.12177348,-0.6184031,-0.06707784,0.25833657,-0.016815342,0.43437943,-0.14848487,0.12874985,1.0361336,-0.30454525,0.054871082,-0.24763091,-0.16426541,-0.21858047,-0.3719996,-0.097563416,0.15488842,-0.53628254,-0.0765684,-0.26991266,0.7237438,0.3348997,-0.6453729,0.38772663,-0.58657676,0.2009686,-0.08672167,0.823376,0.6636678,0.31036207,0.31818193,1.0165786,-0.44096008,0.17596367,-0.014856293,-0.5425774,0.10046491,-0.28234753,0.15913388,-0.45449036,0.09080006,-0.14068995,0.14301008,0.012685271,0.5456363,-0.4427058,-0.13347921,0.031698607,0.752997,-0.43638816,-0.04188955,0.768663,1.0035214,0.80260336,0.08175176,1.3821406,0.49817038,-0.19579212,-0.016148897,-0.2823332,-0.8125706,0.19706582,0.32999313,0.021657284,0.3010598,0.05861008,-0.16492929,0.1803441,-0.5151123,0.06892106,-0.18485379,0.35175145,0.029694129,-0.06876951,-0.39869705,-0.109273836,-0.07618173,0.0131565835,0.3718505,0.17269666,-0.2423111,0.2852708,-0.08618906,1.3241944,-0.1490288,0.024156086,0.0024647932,0.54967844,0.29962462,-0.0051539997,-0.13136259,0.40174425,0.53422856,-0.11003124,-0.7101377,0.18064353,-0.20285495,-0.49114594,-0.08284019,-0.3213989,-0.14342757,-0.09893854,-0.24963096,-0.10238708,0.0109893745,-0.3351515,0.5498631,-2.3751843,-0.36613148,-0.092484936,0.3637454,-0.23432146,-0.09915709,-0.28957647,-0.50281394,0.34908274,0.23580784,0.5181509,-0.68815243,0.40880865,0.5599647,-0.50519025,-0.24905656,-0.7438758,0.04323358,-0.025244461,0.3957532,0.06595899,-0.06270509,-0.13152479,0.10114072,0.7678943,0.042002074,0.17570066,0.57075274,0.52909404,0.14089228,0.5712257,0.031315617,0.6981031,-0.2872933,-0.35178545,0.3737515,-0.41001034,0.39868677,-0.44366756,0.07745818,0.46821082,-0.34394816,-1.0925527,-0.6537354,-0.6041577,1.1052816,-0.40212804,-0.53147775,0.21104933,0.04355095,0.051297527,0.16357669,0.7422687,-0.12772274,0.20629069,-0.65877116,0.035722516,-0.09627259,0.176454,0.14613064,0.022031574,-0.23352772,0.78728706,-0.14952274,0.45848215,0.19394375,0.2137347,-0.12935421,-0.38662726,0.24029873,0.9127632,0.21158105,-0.012710436,-0.098868564,-0.33295992,-0.06676085,-0.3123015,-0.112751946,0.6662462,0.9047625,-0.1128799,0.099803954,0.34107834,0.009190578,0.031099655,-0.06692035,-0.2535115,-0.07303938,-0.08783539,0.45479548,0.8173517,-0.09405209,0.41140193,-0.33552557,0.25746262,0.02391649,-0.51816136,0.7594744,0.50570273,-0.19547534,-0.017306464,0.42761496,0.43321735,-0.42925632,0.5728379,-0.75039935,-0.31536564,0.67423207,-0.13679439,-0.44477364,0.26162207,-0.1956161,0.022183584,-0.80072397,0.40373814,-0.28308818,-0.45149463,-0.32617056,-0.15381287,-3.3714647,0.2803784,-0.21711275,-0.13899207,-0.47372425,-0.06872897,0.30941027,-0.44807333,-0.57098013,0.21702436,0.18497664,0.6508404,-0.034824196,0.1244918,-0.28023925,0.07652451,-0.09619357,0.15551153,0.059461173,0.34041616,-0.114113316,-0.35292667,-0.03199525,0.0041198637,-0.5219122,0.16777219,-0.69716775,-0.5704882,-0.0022181226,-0.48049784,-0.22281653,0.74285597,-0.7025417,0.06415132,-0.26432115,0.13881999,-0.34504122,0.346522,0.16300681,0.28955132,0.13379279,-0.12238769,-0.114476904,-0.20001896,0.65054893,-0.08907627,0.27615166,-0.03541163,-0.23453505,0.09685973,0.3617042,0.51696754,-0.21622899,1.0258685,0.19748658,-0.09499623,0.13334237,-0.32153624,-0.22791123,-0.72196126,-0.33755776,-0.081474155,-0.5587834,-0.6854983,-0.13878714,-0.3022396,-0.90074825,0.54331243,0.15757436,0.3100425,-0.09912639,0.19029823,0.33421662,-0.1407585,0.077431954,-0.13322505,-0.14782964,-0.5597294,-0.29086292,-0.5557134,-0.5009907,0.12225921,0.73680335,-0.35841992,-0.05894953,-0.07740052,-0.33862352,-0.06878535,0.03216789,-0.0795019,0.1721746,0.5430974,0.023949413,-0.6074574,0.46961787,-0.06831752,-0.1431382,-0.7398513,0.097741164,0.7142249,-0.889099,0.70105004,0.4562271,0.005270859,0.25924692,-0.49828145,-0.2809361,-0.15511261,-0.14432806,0.33811834,-0.068935186,-0.82606167,0.5597616,0.3247205,-0.5712887,-0.6936748,0.41108423,-0.114973456,-0.17471243,0.11223371,0.35683537,0.16864857,-0.06037806,-0.37535217,0.2033436,-0.44596407,0.37708193,0.06127242,-0.11865546,0.45331576,0.033559024,-0.5813237,-0.7657516,-0.046681546,-0.47364622,-0.27699023,0.2621609,-0.20512453,-0.16145024,0.11550697,0.23681863,0.43912455,-0.3763025,0.07460882,0.020507185,-0.40080833,0.13568267,0.45049095,0.47822702,-0.43327475,0.66053116,0.19491495,-0.23774458,0.22499411,0.19938253,0.53235984,0.17111863,0.44044983,-0.22587845,-0.052665032,0.2922689,0.91354597,-0.014204287,0.50663084,0.09566759,-0.24576777,0.49122518,0.15448959,0.2806733,-0.13448313,-0.42832822,0.166344,0.05826404,0.17970978,0.4325798,0.51731515,0.39742863,0.18423519,-0.16499138,-0.061703384,0.3725659,-0.07168204,-1.1266215,0.39681005,0.36867338,0.8178358,0.3293956,-0.1151056,0.06717504,0.58569694,-0.14328796,0.13142787,0.3766573,-0.16423838,-0.47647893,0.666319,-0.70439756,0.29202864,-0.2995361,0.030222306,0.3157614,0.35524148,0.4204973,0.8567832,-0.12669423,0.045554396,-0.16349055,-0.11141299,-0.084766254,-0.3311669,0.16792808,-0.457657,-0.44812113,0.7479123,0.4504586,0.35682958,-0.15088224,0.026523145,0.014110274,-0.23617122,0.1759871,-0.07898048,0.020655572,0.1906512,-0.6989146,-0.18388955,0.5695184,0.014097352,0.037243158,-0.140431,-0.24381536,0.13342085,-0.38629267,0.030226482,-0.08677114,-0.8014135,0.03858257,-0.3393079,-0.4092689,0.28440526,-0.19381224,0.21263528,0.28151008,-0.021707136,-0.12069383,0.2811341,-0.0073905266,1.060344,0.15361659,-0.55656564,-0.5559422,0.09546929,0.3241744,-0.4400601,0.04665061,-0.40038025,-0.017932829,-0.4069448,0.6424475,-0.32796142,-0.4101292,0.41715235,-0.41791227,-0.22507717,0.55923986,-0.14077748,-0.23077825,0.19331929,-0.37022063,-0.36952102,0.27629,-0.29671928,0.25921634,0.31139252,-0.10322352,-0.06644442,-0.22342198,-0.21628428,0.47470462,-0.06174544,0.42157158,0.24058221,0.14540918,-0.07272583,0.013425791,0.27802557,0.5693581,0.21937889,0.06656045,-0.2027026,-0.449621,-0.27089602,0.14945371,-0.19197315,0.19596142,0.088105015,-0.3320011,0.81499225,0.18800987,0.98618835,0.31041056,-0.38502425,0.1759807,0.56506944,-0.13529226,0.027012685,-0.5481399,0.8949554,0.5188246,-0.21787244,-0.0047441847,-0.5435846,-0.19100784,0.47246596,-0.4785647,-0.024888309,-0.095083565,-0.71491784,-0.49727422,0.2676349,0.16318448,0.1904545,-0.025369756,-0.025481822,0.07988365,0.19365095,0.52433276,-0.84405065,-0.27247328,0.18015625,0.25607532,-0.07849275,0.08913867,-0.20949635,0.52026814,-0.60680896,0.12198452,-0.5406407,0.120759405,-0.28594843,-0.31991082,0.1724208,-0.10267247,0.48854,-0.24406777,-0.49869233,-0.0014780256,0.3811909,0.19356214,0.20791116,0.6849293,-0.39825252,0.03813358,0.14116724,0.6509713,1.3647168,-0.548132,0.19778985,0.4920597,-0.40942332,-0.5128103,0.47228998,-0.42777854,-0.09438447,-0.1351324,-0.5945221,-0.5396075,0.30071095,0.15475792,0.1311517,0.1844539,-0.6432284,-0.056105394,0.32362863,-0.10988426,-0.33872733,-0.24083987,0.49637046,0.99136925,-0.35694605,-0.48196313,0.28787053,0.2676032,-0.43978184,-0.59877884,-0.07449167,-0.29000002,0.3444503,-0.04171054,-0.18224955,-0.024335958,-0.03095704,-0.49779797,0.20107096,0.21514997,-0.34579155,0.15899219,-0.0089021325,0.02381023,0.8613015,-0.27475855,-0.05413151,-0.8690872,-0.35284525,-0.9325123,-0.38751128,0.31583154,0.3211417,-0.017571606,-0.2741643,0.013991434,-0.14570038,-0.09043885,0.063744955,-0.7800401,0.37542835,0.07458269,0.6036578,-0.3179603,-1.0620599,0.14057069,0.118605174,-0.37448466,-0.85728234,0.5954183,-0.22161537,0.76814556,0.025040297,-0.12872015,0.05173727,-0.47460893,0.100642495,-0.42939156,-0.11871871,-1.0401073,0.23944257,881 +760,0.26586443,-0.016535621,-0.5182121,-0.20805505,-0.29732674,0.21980876,-0.312302,-0.03878878,0.34455016,-0.16169812,-0.1162911,-0.009563684,-0.053773362,0.4491956,-0.23313233,-0.9513601,0.13518898,-0.013897523,-0.54728466,0.3643279,-0.3370441,0.39300266,0.16310652,0.4818711,0.047063496,0.25354597,0.20995982,0.06443817,-0.10743503,-0.23840687,-0.15326168,0.2929408,-0.5311569,0.15868305,-0.0693273,-0.38329744,-0.06677393,-0.26617426,-0.29314494,-0.6403853,0.49952602,-0.80598694,0.56931734,0.07672504,-0.23106083,-0.15678342,0.28054932,0.12892225,-0.2765412,0.05999333,0.23747794,-0.36220935,-0.15983818,-0.106088966,-0.36879426,-0.47467673,-0.60614884,-0.023673791,-0.6105663,-0.124543376,-0.14188607,0.32053804,-0.2856375,-0.005311379,-0.124508254,0.30875066,-0.2543878,0.17741624,0.27072793,-0.4564757,0.0012001899,-0.5169523,-0.23547642,0.023870882,0.37202275,-0.048876606,-0.22807215,0.16718377,0.5258779,0.6178838,0.18001643,-0.2592673,-0.27366704,-0.25378606,0.1549487,0.56999177,-0.20651422,-0.34502938,-0.1976408,-0.08674427,0.46320403,0.28658843,0.030536365,-0.41603428,-0.0006932983,-0.14355703,-0.1179115,0.5256168,0.52064484,-0.33563474,-0.042656496,0.32418835,0.2209758,0.23023184,-0.22804877,0.25415075,-0.058265686,-0.52629524,-0.17377976,-0.034591395,-0.028572317,0.55628836,-0.09149544,0.2631716,0.6868943,0.043054298,-0.057653163,-0.044815842,-0.07627083,-0.0014685759,-0.22229382,-0.030968199,0.20377384,-0.3250392,0.119917005,-0.09055208,0.5141684,0.021624615,-0.9092313,0.35256228,-0.5323463,0.07781002,-0.01398468,0.6457554,0.82966816,0.33572516,0.20310618,1.026904,-0.54408157,-0.03998507,0.0704862,-0.38428056,0.010277975,-0.081489876,0.019018687,-0.4835285,0.17576057,0.03544803,0.21231422,0.3519713,0.36758277,-0.32246095,-0.10452617,0.10574537,0.76788604,-0.26595265,-0.02373788,0.89061314,1.0609231,0.78424674,-0.0056513133,1.3388727,0.22534722,-0.08662189,-0.15572762,-0.08857376,-0.5453197,0.13207015,0.32161793,-0.12819985,0.3600734,0.112731494,0.0010585842,0.4105759,-0.29398623,-0.1929167,0.04654204,-0.04545853,0.20059255,-0.099871054,-0.284752,-0.013779842,0.19771184,-0.004978001,0.16021736,0.13255818,-0.2978134,0.35373944,-0.034480486,1.011553,-0.040300764,0.14178747,0.09214588,0.32799038,0.2805104,-0.08347632,-0.03927948,0.23935214,0.3037894,-0.008074701,-0.52854675,-0.046096463,-0.24911691,-0.47567332,-0.20986438,-0.35276428,-0.45358178,-0.031905375,-0.25899434,-0.14031482,0.054456793,-0.38648033,0.48080364,-2.7307086,-0.28782302,-0.29550093,0.27764323,-0.12876406,-0.21536872,-0.2688865,-0.36288726,0.34935907,0.36495012,0.38084266,-0.6184912,0.3799849,0.456091,-0.38498878,-0.32893556,-0.49915048,0.0013883802,0.0041902075,0.40307996,0.03175253,-0.25286624,-0.19253384,0.26521876,0.74812734,0.10046367,-0.053325567,0.25257307,0.5877313,-0.13999303,0.47370228,-0.057236332,0.6619838,-0.22509506,-0.21661726,0.27596638,-0.53078455,0.35827044,-0.045913942,0.10180605,0.4228707,-0.29539034,-0.91780925,-0.5550748,-0.3702744,1.2599139,-0.37119272,-0.5343667,0.32190222,-0.122885905,-0.41605332,0.061095055,0.7942552,-0.14330222,0.13717738,-0.580247,-0.03717282,-0.27253938,0.31767416,-0.06344907,0.035867017,-0.37734583,0.8093304,-0.08571366,0.53449154,0.34092978,0.15374213,-0.27785224,-0.31555018,0.06774773,0.8922724,0.39094764,0.08769842,-0.11801267,-0.020000495,0.023595516,-0.34973258,0.06355692,0.9318637,0.4465143,0.08155607,0.13192672,0.26435944,0.06143337,0.019749692,-0.10733518,-0.4457273,-0.17905995,0.1234577,0.7054113,0.86703277,-0.19730495,0.36716878,-0.002625658,0.22159061,-0.0899639,-0.49142677,0.528201,0.74271965,-0.1147668,-0.30675438,0.70772374,0.3681417,-0.35662988,0.31635416,-0.6086858,-0.43094617,0.6116812,-0.0031274145,-0.5795778,0.31947392,-0.3426314,-0.117272295,-0.7232723,0.21543096,-0.108267434,-0.62481594,-0.41068473,-0.28018257,-3.8293648,0.11669832,-0.30088648,-0.05441687,-0.36819118,-0.12623021,0.2259249,-0.46794793,-0.6811593,0.06741168,0.13883665,0.3515837,-0.19515309,0.2276286,-0.2522752,-0.22555135,0.009446456,0.3356147,0.015760817,0.2336234,-0.012637377,-0.21333869,-0.14086545,-0.10940517,-0.44673985,-0.0018046453,-0.64077187,-0.5446736,-0.05974876,-0.5051428,-0.059275277,0.7262373,-0.73822266,-0.097112946,-0.42583132,0.047166817,-0.22727595,0.1651923,0.11402297,0.347172,0.10746314,0.09442889,-0.16809466,-0.15334117,0.36018687,0.15699056,0.35294768,0.38149422,-0.019365687,0.05599531,0.3973983,0.5745464,-0.13660572,0.89978826,0.19823262,0.08822293,0.34440917,-0.2352771,-0.44765365,-0.7217935,-0.2843805,0.10426628,-0.55452216,-0.4924226,-0.16113879,-0.29936007,-0.83997756,0.44851002,0.11257474,0.14921233,-0.23588115,0.29343545,0.43822795,-0.15858458,-0.029575301,0.0055234064,-0.19653963,-0.34288964,-0.37093413,-0.5329907,-0.5797011,-0.10636968,0.9985755,-0.17898189,-0.0017519078,0.16520251,-0.31517667,-0.08057522,0.061598063,0.40476844,0.016987223,0.5024858,0.089994505,-0.7596871,0.5180716,-0.5335902,-0.14960378,-0.615706,-0.10970464,0.7639376,-0.67516994,0.7481372,0.5314839,0.2462473,-0.06994895,-0.663215,-0.3112993,-0.08725221,-0.21213141,0.61590326,0.30661806,-0.5500831,0.51790446,0.124587685,-0.06277725,-0.6481038,0.5150002,-0.19879898,-0.25207722,0.14825305,0.5032117,-0.071108386,-0.19146988,0.25532296,0.21521536,-0.28014973,0.4049377,0.20182054,0.0036118764,0.47622287,-0.018525656,-0.34858686,-0.6430155,0.09761664,-0.44706675,-0.28617746,0.08725259,-0.046392083,0.20029028,0.14042756,-0.25443652,0.46584937,-0.39672107,0.20196556,-0.121069856,-0.20206524,0.15436564,0.54202455,0.43162835,-0.5595357,0.5823096,0.18353559,-0.14231464,0.18146946,0.1684994,0.5607245,0.14147322,0.41137555,-0.308011,-0.04242655,0.13742714,0.6741816,0.15456411,0.2012772,0.11482433,-0.10964791,0.37309152,0.14033608,0.09306737,-0.07996743,-0.50775844,-0.15197101,-0.1689932,0.17673641,0.3933099,0.24985123,0.43160313,-0.1547665,-0.26891372,0.24679478,0.18377136,0.09944209,-1.186454,0.30746394,0.13555847,0.8893971,0.344307,0.12389393,-0.027949674,0.5479496,-0.1687784,-0.014586996,0.46895,0.030540068,-0.34042275,0.5790339,-0.44787928,0.5014979,-0.19630477,0.048197433,0.14950086,0.23388276,0.2766442,0.87828815,-0.16856673,0.009351836,0.054186013,-0.3862052,-0.08995358,-0.41726843,0.14232546,-0.45830944,-0.46492803,0.6473688,0.55851084,0.23851076,-0.32577708,-0.035539273,0.0290791,-0.09349087,-0.17078583,-0.088296264,-0.024291933,-0.24841274,-0.7490146,-0.18797135,0.71416664,0.08916647,-0.019255606,0.058192033,-0.26213744,0.26410004,-0.17369758,-0.05624914,-0.11432317,-0.58180916,0.013339543,-0.4303138,-0.79446083,0.18198846,-0.35210794,0.23634195,0.26665455,-0.13306418,-0.22261332,0.39925548,0.12855464,0.8722074,-0.0870215,-0.11762762,-0.27419335,-0.09094817,0.19112168,-0.25656253,-0.28692344,-0.40648687,0.24476722,-0.4369822,0.47019035,-0.2671289,-0.19165108,0.016301192,-0.11844186,0.06590247,0.35506445,-0.1752886,-0.13557875,0.31280196,-0.10608235,-0.29852623,-0.051609866,-0.3978496,0.2395684,0.07724713,0.029097924,0.07122937,-0.25027692,-0.28544542,0.057939712,0.015209088,0.41271496,0.42030495,0.046761062,-0.1739302,0.07485587,0.046600483,0.53873146,0.19269392,-0.1026789,-0.105349466,-0.5790813,-0.3744221,0.5243937,-0.07709217,0.18107912,0.014763555,-0.45593327,0.697753,0.17358273,1.1795824,0.0663923,-0.47073427,0.030883243,0.60394704,-0.15044579,0.15564911,-0.29058093,0.99233097,0.6228424,-0.034507845,-0.1125576,-0.41971746,0.046934567,0.21254778,-0.38009235,-0.25037324,-0.06899924,-0.5498298,-0.13866965,0.026280155,0.16271432,0.052619662,-0.06551465,-0.03107767,-0.03127614,0.26257375,0.24834475,-0.71630895,-0.13455716,0.37112528,0.27278012,-0.09097452,0.0043979837,-0.32842514,0.42111868,-0.68834454,0.0033386166,-0.73978966,0.0873259,-0.22395454,-0.16387087,0.17731388,-0.17807521,0.36980087,-0.31309742,-0.11493946,-0.21262752,0.46215776,0.22424981,0.24330086,0.7189256,-0.27321702,-0.12612678,0.21771026,0.60509384,1.4572091,-0.23885058,0.0821757,0.20275919,-0.3412871,-0.4668455,0.03847098,-0.5995891,-0.029901706,-0.03384185,-0.25438255,-0.27759823,0.23284477,-0.058256224,0.1558722,-0.08282054,-0.6156733,-0.32708603,0.44398263,-0.21091072,-0.31483904,-0.2487777,0.17618355,0.78020185,-0.24658407,-0.1373063,0.08840942,0.36103648,-0.32149446,-0.6496308,0.36256784,-0.3067543,0.47013906,0.09365054,-0.29266986,-0.09663673,0.23292628,-0.5327376,0.27303636,0.3310331,-0.30726507,-0.029783305,-0.09506115,-0.12382787,1.0413026,-0.12891056,0.2881579,-0.7462483,-0.49259618,-0.90518516,-0.2746237,-0.08902323,0.27584058,-0.13275793,-0.5633571,-0.20207682,-0.24883248,-0.10513069,0.01968978,-0.4255937,0.3846958,0.12298015,0.8257048,-0.24400641,-0.9654435,-0.0063968827,0.093686834,-0.268596,-0.5230754,0.5490002,0.14858031,0.73812515,0.057860613,-0.0085821245,0.26602647,-0.6017242,0.27802658,-0.20108387,-0.24951302,-0.9245888,0.227595,883 +761,0.45448187,-0.18834403,-0.60018146,-0.13517891,-0.43239748,0.2763038,-0.30009145,0.36593866,0.41583565,-0.40538087,-0.22848704,-0.054232113,0.09078831,0.30747792,-0.19860482,-0.5200984,-0.07539966,0.1595503,-0.63798994,0.37792605,-0.44301268,0.31938776,0.15889215,0.36201847,-0.037030652,0.31663227,0.14643161,0.008087624,-0.09764982,-0.14781989,-0.23505391,0.17382513,-0.43443954,0.053727012,-0.21610355,-0.46520007,0.009804914,-0.4217779,-0.22023264,-0.6550575,0.1732595,-1.0718057,0.58777416,-0.024158249,-0.16022815,0.11836283,0.1646294,0.13936733,-0.23734048,0.028907351,0.08766972,-0.42035383,-0.20660877,-0.4538144,-0.30241042,-0.41597092,-0.38990885,0.047940936,-0.62438786,-0.2755438,-0.22297761,0.12860979,-0.26646322,0.15144798,-0.14312635,0.23835553,-0.15185148,-0.0984428,0.2167252,-0.34236303,0.09687598,-0.47550172,-0.103710584,0.022673164,0.35683763,-0.07476427,-0.2570271,0.29936406,0.16073205,0.5000392,0.09253542,-0.25516808,-0.43880036,0.0010523704,0.10592183,0.46793658,-0.25497335,-0.22678559,-0.28444093,0.16261618,0.508888,0.22900182,0.083636686,0.008982757,0.025536167,-0.16452135,-0.26052836,0.6190735,0.57831454,-0.4063004,-0.25361446,0.23338358,0.6369315,0.09001374,-0.17397928,0.06253198,0.00760401,-0.5282096,-0.113986425,0.013354549,-0.058353845,0.56922144,-0.11632352,0.12170808,0.57892257,-0.1254964,0.011191646,0.2095401,0.09188195,-0.08822978,-0.20817845,-0.16223104,0.27238095,-0.5786228,-0.14915378,-0.28439993,0.5929858,0.008660825,-0.7420867,0.44308117,-0.4088198,0.09113077,-0.058425225,0.48369706,0.5994622,0.65849185,0.27167866,0.86018986,-0.36791736,0.18050186,-0.19313982,-0.1577114,0.028950004,-0.29941532,0.09956258,-0.5281409,0.2676238,-0.06452539,-0.050089303,0.39403594,0.4716929,-0.6281257,-0.19779712,0.25206432,0.78364146,-0.2824323,-0.116092436,0.8062166,1.1159256,0.94808537,0.036604363,1.0735208,0.29661098,-0.24975179,-0.0712361,-0.13403644,-0.67279524,0.19267403,0.3308732,-0.17188662,0.4848649,-0.007501726,-0.078185864,0.16296802,-0.31048092,-0.13262679,0.11151622,0.14378585,0.10798423,-0.03973272,-0.48771498,-0.09448919,0.06771216,0.0003093481,0.37140256,0.23610929,-0.20503853,0.59071916,-0.007276558,1.1789868,-0.080128506,-0.013186655,-0.0156197185,0.44811246,0.31580755,-0.024202036,-0.081330985,0.46632883,0.15168218,-0.03644385,-0.49615705,0.10698537,-0.32347262,-0.27258366,-0.09185011,-0.3242142,-0.19493397,0.054063626,-0.13600366,-0.32878363,-0.05519742,-0.37160593,0.34162155,-2.6215832,-0.30187628,0.036237612,0.42990535,-0.17560223,-0.2813346,-0.31115583,-0.49767116,0.24416722,0.24958548,0.5397123,-0.5876233,0.30984926,0.49910238,-0.63522047,-0.21580465,-0.65659434,0.012031651,0.00078274193,0.43614307,0.1056474,-0.22889464,-0.097498216,0.17681812,0.64601314,0.12403914,0.08088191,0.6628169,0.49311697,0.12558138,0.4814143,-0.036875587,0.68924785,-0.52684975,-0.21389842,0.3497399,-0.3743939,0.37028933,-0.06638004,0.18457064,0.5206824,-0.3627658,-0.9421192,-0.50170493,0.045312844,1.359757,-0.2364031,-0.56687856,0.14089163,-0.27202743,-0.3422672,0.114742905,0.5626699,-0.0837702,0.07447204,-0.6817721,0.031632707,-0.018707417,0.19336154,0.07249113,-0.102409124,-0.20672299,0.6533005,-0.11647602,0.5394512,0.1487973,0.12258882,-0.23730813,-0.27395818,0.0658835,0.9928264,0.32049862,0.1296038,-0.1113757,-0.29930747,-0.16315335,-0.17680629,0.025328089,0.5828385,0.5466292,-0.03452088,0.037046067,0.36347267,0.085741356,0.068203576,-0.17250842,-0.14743412,-0.1422999,0.032007758,0.45465484,0.87589103,-0.20136632,0.33691075,-0.1410145,0.40107667,-0.09361443,-0.5835352,0.4918623,0.5716234,-0.24043535,-0.28755495,0.5701318,0.3432306,-0.53220445,0.5124953,-0.68848836,-0.5127795,0.4954438,-0.18001571,-0.40154272,0.2710487,-0.30354244,0.24630788,-0.6427119,0.25006106,-0.15471284,-0.3169585,-0.41845897,-0.07163088,-3.264114,0.2820145,-0.08499016,-0.059294045,-0.2585835,-0.09692201,0.16323583,-0.5114802,-0.62645555,0.04780199,0.18448171,0.5790471,-0.16500565,0.1971585,-0.22870176,-0.36497352,-0.10519664,0.23342991,-0.0025878274,0.28901538,-0.12636732,-0.35342222,-0.06830668,-0.02559814,-0.4440039,0.10332409,-0.6610089,-0.40608317,-0.07557395,-0.4808113,-0.13510261,0.47843134,-0.38417333,-0.015852602,-0.30639508,0.18872115,-0.03282039,0.05741525,0.0016454504,0.15415318,0.107202634,-0.116400085,0.23803766,-0.27634338,0.4433661,0.0017903561,0.2717921,0.33231768,-0.11021502,0.06729196,0.53683406,0.8102703,-0.17710194,1.0799989,0.20920141,-0.14123997,0.33316138,-0.06757809,-0.37092543,-0.56799686,-0.18173483,-0.023753222,-0.4740724,-0.31992757,0.22161764,-0.35582063,-0.9191023,0.63102883,0.06333354,0.25040123,0.031521305,0.59843963,0.6139585,-0.29011318,0.02437419,-0.18718632,-0.3191219,-0.58975667,-0.28006494,-0.5589271,-0.49090275,0.09948739,0.8608588,-0.32778233,0.31846327,0.04129263,-0.10348078,0.02837166,0.215635,0.14102188,0.3094855,0.5450655,-0.034779336,-0.5663549,0.2845847,-0.18467572,-0.19473816,-0.43068472,0.09497476,0.6047227,-0.76587796,0.44195506,0.4109478,-0.038421173,-0.038005523,-0.4771818,-0.101687685,-0.18733929,-0.10160046,0.35348722,0.27420107,-0.8013471,0.52461404,0.41975978,-0.5496544,-0.6866738,0.19078809,-0.16885789,-0.17674455,-0.10491168,0.3172758,0.08901077,-0.07956019,-0.16251339,-0.05178943,-0.3954743,0.23386994,0.045387607,-0.068050034,0.3365992,-0.12898865,-0.4426171,-0.8309835,0.07106411,-0.5724154,-0.26858187,0.3991475,0.018099498,-0.061881907,0.12826918,0.095557764,0.4160864,-0.3058572,0.0154484445,-0.07801955,-0.36440256,0.49343407,0.2890918,0.5264041,-0.3902686,0.5215619,0.0195359,-0.15599193,0.06960854,-0.14613973,0.47780573,-0.07917413,0.33064058,0.13275026,-0.20479536,0.17333482,0.7431205,0.07529108,0.34698042,0.19199911,-0.12679881,0.456965,-0.04944394,0.036432464,-0.112167545,-0.60817057,0.13275354,-0.30613977,0.10167872,0.4137786,0.27506214,0.3463933,-0.027987711,-0.15963426,-0.076663926,0.25286412,0.07551111,-1.1925199,0.16617166,0.12937789,0.7713922,0.22056343,0.19799702,-0.14707914,0.6423676,-0.23411387,0.17540342,0.466443,-0.019965071,-0.4488951,0.4626332,-0.52955586,0.47004843,-0.17662725,0.08302375,0.20288152,0.14760517,0.3559255,0.9321947,-0.2016243,0.055999856,-0.017530736,-0.15744019,-0.08502885,-0.33345234,0.01757579,-0.37920988,-0.35694757,0.7686129,0.25194278,0.61000425,-0.07725418,-0.11105359,0.026463678,-0.08627307,0.29190668,-0.018913366,0.1250604,-0.035263725,-0.5188625,-0.0168838,0.5701676,0.54995143,0.23885356,-0.25852042,-0.21829864,0.16072433,-0.14625901,-0.08464419,-0.1006769,-0.48682392,0.011927976,-0.19828993,-0.7219172,0.42711252,-0.1056898,0.023862066,0.24960548,-0.053122327,-0.120346315,0.23269628,0.07296904,0.76647305,0.15277545,-0.27396426,-0.36718464,0.22020887,0.20295006,-0.28281114,0.16935405,-0.31707323,0.20004278,-0.50996333,0.6128334,-0.34194934,-0.47417957,0.16680428,-0.2001209,0.08900197,0.53625983,-0.21071008,-0.19166653,0.022955857,-0.12444509,-0.46724778,-0.28977668,-0.20306693,0.21547511,0.22643143,-0.2825367,-0.16909331,-0.28363693,-0.024725337,0.44344583,0.09715671,0.40353516,0.18939129,0.0821844,-0.26853102,0.1788593,0.21273932,0.45331806,0.07126435,-0.13078019,-0.44558424,-0.47967127,-0.38575652,0.23257428,-0.06704087,0.14309064,0.12749784,-0.08409341,0.8898822,-0.21603976,0.9837979,0.042033654,-0.28683165,0.0025703083,0.61844325,0.020130713,-0.07521698,-0.3810353,1.0171205,0.5917993,-0.13366333,-0.021455096,-0.5508437,-0.08519371,0.28345075,-0.41512075,-0.097770855,-0.07713682,-0.5701036,-0.42839673,0.18738453,0.20825975,0.3645737,-0.2280766,0.3884819,0.07824599,0.060508635,0.21076983,-0.49652132,-0.3604713,0.29777473,0.26862082,-0.24119605,0.015240183,-0.4473567,0.29707938,-0.61355495,0.05057333,-0.4647333,-0.023205029,-0.12432737,-0.33439943,0.1399464,0.11328855,0.26067036,-0.3623317,-0.44818863,-0.053519405,0.30673188,0.10648476,0.08968146,0.4294329,-0.23504736,-0.14524086,0.18060721,0.5458883,1.1648952,-0.3376358,0.10177118,0.45486355,-0.3242342,-0.5661574,0.37399757,-0.24549259,0.09815642,-0.092086084,-0.3318017,-0.42812464,0.24618237,0.20233633,0.10585436,0.09909026,-0.63227403,-0.08396021,0.13856217,-0.4039903,-0.0955009,-0.1534357,0.1999006,0.6669471,-0.16411519,-0.3626068,0.054091748,0.43817294,-0.16361156,-0.6140732,-0.020341529,-0.20834193,0.27420002,0.27084425,-0.35501736,-0.034988508,0.18822053,-0.5603931,0.0092628915,0.1636278,-0.45121047,0.008968817,-0.45406187,0.17404729,0.74731064,-0.22403763,0.19730799,-0.5226859,-0.50908554,-0.934671,-0.32447827,0.09780128,0.13239248,0.04237133,-0.47659633,-0.004642835,-0.15017025,-0.29972485,0.07443938,-0.4747886,0.54800725,0.13557766,0.39136598,-0.3852927,-1.0146519,0.14504288,0.08571294,-0.19569996,-0.6215441,0.49539137,-0.053015344,0.79916394,0.075053796,-0.09914604,0.35081992,-0.60536,0.08097014,-0.32580888,-0.04086025,-0.66172796,0.01671913,887 +762,0.42199266,-0.13821255,-0.46356174,-0.1405729,-0.2028628,0.15984184,-0.15295817,0.60492384,0.15386908,-0.5073157,-0.09160706,-0.14345168,-0.07398497,0.52261305,-0.43137467,-0.4460728,-0.098373644,0.11104499,-0.3738186,0.39893097,-0.4470341,0.39919317,0.03495546,0.39098895,0.23106036,0.3225537,0.18335429,-0.11841922,-0.36173245,-0.36977813,0.020727703,0.019262027,-0.5500307,0.14786614,-0.32984418,-0.27936712,0.05754309,-0.64811164,-0.41067153,-0.721506,0.22649407,-0.7932244,0.6809647,-0.047250196,-0.23184739,0.19728881,0.2911479,0.2785277,0.07308878,-0.06569901,0.3721252,-0.115661554,-0.033605754,-0.017317222,-0.37474397,-0.4823402,-0.67366207,-0.021449635,-0.41863987,-0.16723996,-0.2501083,0.17638463,-0.19684157,-0.075720794,0.036498204,0.43312058,-0.3965047,-0.04170301,-0.031378433,-0.038578052,0.45923555,-0.56584924,-0.3160933,-0.05605026,0.27228734,-0.3691426,-0.036115758,0.35215044,0.20365223,0.3940482,-0.10292453,-0.13526686,-0.45601743,0.022414794,0.1409617,0.68593127,-0.37599394,-0.35778987,-0.10345569,-0.22838761,0.34212297,0.16253494,0.10186406,-0.35209042,-0.1614882,0.014963388,-0.27349257,0.4038889,0.47098124,-0.16000322,-0.037035994,0.48529193,0.3413297,0.21286082,-0.08361149,-0.038813148,-0.013709598,-0.4825648,-0.23090331,-0.018034771,-0.13013066,0.58550876,-0.1583611,0.4102854,0.6222691,-0.035652988,-0.04739407,0.06012305,0.23899494,-0.16916054,0.13576081,-0.3600512,0.08803945,-0.4871763,0.002897689,-0.039359257,0.6720181,0.20541754,-0.9273806,0.40577132,-0.5656375,0.051429715,0.13869078,0.3484589,0.5157595,0.50729126,0.25747877,0.6175865,-0.37318265,-0.0023276256,0.13403694,-0.25505778,0.21699923,-0.17206262,-0.0068744714,-0.51951015,-0.1629716,0.23544072,-0.12858485,0.043529313,0.37366757,-0.3950241,-0.065118186,0.1724983,0.80287623,-0.26931036,0.08142356,0.7199886,1.2153853,0.9874143,0.08962265,1.312749,0.07116673,-0.25345057,0.03610479,-0.19418485,-0.7906046,0.2544907,0.424228,-0.6407722,0.40954843,0.18515931,0.088775024,0.3895632,-0.39709342,-0.070954435,-0.16275324,0.17691046,0.04658282,-0.24072233,-0.48784298,-0.33156174,-0.05606114,-0.0055244793,0.014641927,0.21897449,-0.21762808,0.36473545,0.36975846,1.588025,-0.10834129,0.15658572,0.06616927,0.4257707,0.08722807,-0.15909089,-0.045315422,0.13249424,0.22130847,0.1162654,-0.42606196,-0.037561838,-0.16991566,-0.56362337,-0.10411954,-0.3111107,-0.2902808,-0.16653164,-0.44716564,-0.20884515,-0.1406718,-0.40112674,0.4487427,-2.7473373,-0.053255722,-0.09599483,0.36975873,-0.109252386,-0.4367989,-0.044090986,-0.42834777,0.6936605,0.29637378,0.52076244,-0.62510574,0.31781313,0.59006715,-0.46236256,-0.11773205,-0.58886,-0.09311126,0.030736921,0.19598466,0.052823786,-0.120985515,0.09875249,0.3439462,0.26988378,-0.09731073,0.18657735,0.26527855,0.3278235,-0.027902126,0.44273227,-0.17523733,0.51063406,-0.28082657,-0.15508899,0.24956425,-0.6323631,0.14730069,-0.149906,0.19596967,0.41316864,-0.48350203,-0.792364,-0.56306785,-0.31076956,1.0879653,-0.09102157,-0.29666626,0.3523153,-0.27345875,-0.52348363,-0.031663805,0.3264963,-0.2878647,0.071768716,-0.825924,-0.10383546,-0.15704568,0.17723121,-0.040507726,0.13451856,-0.5878055,0.6880284,-0.16650115,0.40535957,0.38164294,0.17728959,-0.4639371,-0.4232744,-0.006651046,1.0288984,0.57223284,0.15394965,-0.13470976,-0.14414245,-0.33193108,-0.3047113,0.08220099,0.40525278,0.716206,-0.032895006,0.030355912,0.18623391,-0.022986481,0.03792614,-0.062618926,-0.32271692,-0.029062161,-0.004126182,0.60777223,0.56445014,-0.2141038,0.28945324,-0.13777357,0.36144602,-0.19106907,-0.34282982,0.4486162,0.8269216,-0.038629726,-0.17089412,0.7697693,0.42448145,-0.22990447,0.49087194,-0.5631308,-0.4453316,0.4367706,0.0032327403,-0.5775851,0.17479672,-0.24185435,0.06678262,-0.8858398,0.54058486,-0.12069027,-0.48030588,-0.5144788,-0.19367181,-2.9335017,-0.023618784,-0.057946842,-0.35246998,-0.083950475,-0.09010247,0.1905321,-0.7579899,-0.75309974,0.08720911,-0.076986626,0.725731,-0.00047089046,0.10532176,-0.0040627536,-0.34753415,-0.3965604,0.21153678,-0.01893911,0.40791115,0.0782631,-0.42829177,-0.22031006,-0.31241384,-0.5799276,0.086460866,-0.6850945,-0.47862127,-0.15402396,-0.4227436,-0.37669343,0.73545486,-0.43622434,0.011747697,-0.25910994,-0.09646177,-0.30277106,0.4507543,0.16715254,0.18274087,0.028956423,-0.014081494,0.042261593,-0.347871,0.30505913,0.21487363,0.36993173,0.48751628,-0.17129827,0.3280006,0.5572032,0.8584865,-0.07388961,0.99858624,0.39049658,-0.13066015,0.23814462,-0.38326314,-0.29679418,-0.53735715,-0.3098957,0.112448126,-0.34899533,-0.3360268,-0.12340693,-0.38081935,-0.71017903,0.54668975,0.05085284,0.12714808,-0.09632739,-0.040968455,0.18348163,-0.17953461,-0.15996304,-0.034039453,-0.14171973,-0.5566631,-0.306063,-0.73449135,-0.4609772,-0.06452214,1.0036591,0.05860079,0.09075531,0.2651517,-0.2803934,0.17510238,0.029298764,-0.031045772,0.025686612,0.2428205,0.119823106,-0.69741714,0.50995666,-0.10562606,-0.0048956047,-0.53887993,0.023105025,0.73373234,-0.44016173,0.5156921,0.4915374,0.19312176,-0.18542624,-0.50361615,-0.23585807,-0.090206474,-0.24055497,0.40548176,0.15325826,-0.7495352,0.49918577,0.32512566,-0.32422787,-0.7308721,0.55161047,0.08109458,0.033898517,0.045021936,0.3468264,0.12796932,0.012269978,0.01786779,0.31828466,-0.32108945,0.38392913,0.30218276,0.12820768,0.41744468,-0.17639178,-0.16648445,-0.77110046,0.11053394,-0.31963497,-0.33691555,0.009728597,0.0049109343,-0.053725645,0.1290819,0.1196217,0.28048867,-0.5255924,0.18167995,0.07889027,-0.24595307,0.18526393,0.519511,0.59908,-0.31857732,0.5947105,0.00703689,0.021553122,-0.18614835,-0.18543826,0.46559852,0.21840233,0.18934822,0.16860853,-0.26988065,0.23732468,0.7459542,0.20177521,0.37407154,0.17809297,-0.26598948,0.22177656,0.10464681,0.15186508,0.10144312,-0.63653886,0.10423644,-0.106605604,0.010236878,0.48287874,-0.023757068,0.22098094,-0.1429865,-0.33495352,0.075988404,0.25387126,-0.19611219,-1.558633,0.3539476,0.10757171,0.77174824,0.5719945,-0.07954808,0.06629339,0.72829616,-0.2462344,0.043833997,0.35647795,0.021032682,-0.56069654,0.5657591,-0.7559358,0.34892818,0.0012164575,-0.018282946,0.00017727338,0.014753332,0.34844735,0.7545707,-0.081245884,0.14722429,0.023270901,-0.25183532,0.19170281,-0.42945164,0.2440487,-0.29739618,-0.19182189,0.591869,0.36262482,0.36811036,-0.170398,0.171019,0.037930492,-0.19670238,0.30120733,0.07927632,0.05224116,-0.26126096,-0.63978374,-0.2355668,0.62294894,-0.008496111,0.22244596,0.15853435,-0.3077243,0.17428468,-0.0645671,-0.03324672,0.02546951,-0.81624943,-0.033167128,-0.37708616,-0.3715673,0.3238497,-0.103447124,0.30205137,0.26396668,0.06288462,-0.22173151,0.31375557,0.35364974,0.7133106,-0.033135153,-0.17785318,0.06941343,0.16690312,0.16546907,-0.12662408,-0.028803643,-0.2818211,-0.009231723,-0.34426954,0.33866823,0.0149696665,-0.22339953,0.14717351,-0.16273744,0.16887826,0.465823,-0.23119281,-0.055988666,-0.11829584,0.10653642,-0.023598662,-0.16605908,-0.1610322,0.12633856,0.28827026,0.012741602,-0.07127008,-0.12041748,-0.18146256,0.2780877,-0.03969087,0.48673242,0.61953217,0.14399089,-0.6122789,-0.17170022,0.034164842,0.42061278,-0.0026477552,0.013680761,-0.32477725,-0.44520867,-0.2628469,0.2771509,-0.26638675,0.25741693,0.10277675,-0.31615904,0.64081573,-0.004972371,1.0886092,-0.01210154,-0.36831373,0.0017773142,0.5115604,-0.0845969,-0.09556888,-0.40064353,0.8911265,0.4081251,-0.27355412,-0.13450171,-0.42421213,-0.059356946,0.22338794,-0.16430408,-0.27201673,-0.06224199,-0.6901375,-0.3534014,0.2605851,0.12944399,0.030429102,-0.07358033,-0.03724432,0.43083775,0.16814001,0.5176289,-0.49104732,-0.106240936,0.44613874,0.2178028,0.05372363,0.028634993,-0.44329026,0.39158803,-0.390055,0.04632308,-0.23581854,0.20199409,-0.28916994,-0.40284982,0.103989474,0.04710454,0.42126685,-0.13094285,-0.47669697,-0.11486216,0.48572236,0.055552814,0.07658359,0.46389169,-0.17611621,0.10384011,-0.13429527,0.39532852,0.96395695,-0.21522944,0.17547446,0.40498713,-0.4204964,-0.4538421,0.13943541,-0.36443418,0.21354516,-0.08673651,-0.3458562,-0.5456915,0.23728797,0.30616662,-0.01342895,0.114967465,-0.3476515,-0.23731738,0.41723305,-0.32100254,-0.29148972,-0.34304273,-0.090456165,0.5959734,-0.45700365,-0.2209816,0.053553667,0.23896901,-0.25729975,-0.36048508,-0.008357497,-0.19482297,0.45241103,0.08896799,-0.5008759,-0.1635717,-0.07809197,-0.30502245,0.07690152,0.20464435,-0.3631941,-0.06542279,-0.27521265,-0.086330146,0.83211666,-0.10247484,0.10380007,-0.4819864,-0.49296442,-0.87331843,-0.45876122,0.26610035,0.1986863,-0.12523778,-0.6903654,-0.03292841,-0.07317592,-0.08288046,0.022869166,-0.31350276,0.37211052,0.19401935,0.38688084,-0.101404384,-0.64227784,0.15757892,0.14955123,-0.036061954,-0.4445116,0.6016875,-0.051968317,0.75081825,0.16036305,0.015837623,0.02178978,-0.5576529,0.25471961,0.0074601346,-0.20920442,-0.5945189,0.30683768,889 +763,0.4807566,-0.40984088,-0.48710448,-0.08241738,-0.35354185,-0.0013075242,-0.19323125,0.6205939,0.22049053,-0.6262122,-0.22957459,-0.17501146,-0.0014194146,0.100627296,-0.32901174,-0.30397618,-0.06401329,0.2983468,-0.3009916,0.571644,-0.2410066,0.26244742,0.11775613,0.32794878,0.36547488,0.1216374,-0.09813457,0.08873503,-0.075254604,-0.37278476,-0.11193395,0.29875717,-0.46883106,0.40262026,-0.35862386,-0.5075843,-0.02144687,-0.61340183,-0.49394223,-0.84384024,0.3070722,-1.0082202,0.7496027,-0.09577819,-0.39165798,0.077995606,0.32376453,0.28369045,0.13068105,0.055642027,0.2969271,-0.2357932,-0.040812995,-0.19911303,-0.23428085,-0.58374417,-0.63358176,-0.035160538,-0.38111994,-0.08131926,-0.41671324,0.3707975,-0.22739193,-0.11391346,-0.19024643,0.67694294,-0.4266874,0.14066245,0.12864736,-0.1295038,0.56002575,-0.76171976,-0.25571272,-0.061348878,0.1109968,-0.16120349,-0.31600195,0.17755398,0.35910177,0.46400756,0.04459176,-0.21547405,-0.3423668,-0.058973394,-0.00888299,0.54841775,-0.3358855,-0.2371281,-0.09102488,0.09382996,0.44322065,0.42098352,0.18447569,-0.28759602,-0.014120849,0.066262014,-0.22939652,0.48160955,0.54767936,-0.1818228,-0.07457893,0.23892051,0.52813995,0.10151116,-0.23228715,0.20294657,-0.107557856,-0.5503419,-0.12497342,-0.0398049,-0.24094994,0.5957722,-0.2222348,0.30018422,0.6287011,-0.19392933,-0.043565027,0.32297972,0.22876292,-0.1203136,-0.40619844,-0.47654402,0.32552433,-0.58962655,0.058077298,-0.1985076,0.74197257,-0.17919518,-0.519142,0.19518577,-0.6511605,0.09965363,-0.14665669,0.37209287,0.62457097,0.6230962,0.32223433,0.82925117,-0.29376253,-0.026387606,0.095568895,-0.22234614,0.09460551,-0.36883715,-0.0061182426,-0.5036096,-0.12058671,-0.26682347,-0.14010563,-0.07682022,0.7669131,-0.7774,-0.236962,0.1264635,0.9090481,-0.2426307,0.0055158986,1.0075332,1.1405509,1.2717931,0.09693908,1.1176865,0.26161763,-0.23153745,-0.08927098,0.004661734,-0.6096591,0.33489913,0.46874678,-0.11215173,0.13620672,0.17378396,-0.059414778,0.62152743,-0.5043286,-0.19351648,-0.31154618,0.04128591,0.100592844,-0.25063106,-0.6908699,-0.18586077,-0.07316326,0.20486125,0.028626762,0.18331172,-0.25235766,0.44741824,0.039542735,1.4068525,-0.22676834,-0.010659928,0.1868077,0.37750134,0.18728739,-0.24664044,0.10377726,0.12102453,0.385627,0.33533132,-0.45684907,0.0776608,-0.213507,-0.41455618,-0.20969948,-0.2880997,-0.19439782,-0.16282204,-0.49766195,-0.4043051,-0.1987765,-0.36412507,0.25044006,-2.4686244,-0.27274045,-0.20461163,0.43294826,-0.15622322,-0.45782655,0.24834186,-0.48556864,0.6248013,0.43069428,0.539421,-0.6772657,0.3419491,0.59747314,-0.5282666,0.006433771,-0.8152144,-0.16476974,-0.19024651,0.36081725,0.13963738,-0.20578788,0.08230514,0.022207508,0.54761547,-0.064826116,0.22789446,0.37448215,0.40822887,-0.31780034,0.5437434,0.07995284,0.5417505,-0.14203757,-0.32784107,0.45023552,-0.30424753,-0.01684535,-0.105229266,0.021777878,0.5411042,-0.5464902,-0.89490837,-0.9452802,-0.2063024,1.0379243,-0.059247274,-0.67898047,0.28009126,-0.49504244,-0.49881443,-0.034628153,0.5287623,-0.042020816,0.1576058,-0.9034555,-0.10875574,-0.14110146,0.114645466,-0.034285363,-0.17706913,-0.75187844,0.9466569,-0.22666542,0.46156585,0.43633074,0.38795295,-0.40044308,-0.5257392,-0.14277512,1.0567732,0.66074556,0.09720277,-0.30677626,-0.0016142565,-0.17286846,-0.11137654,0.20317411,0.6296906,0.6352803,-0.07496826,0.12162711,0.44331518,-0.017607931,0.08415655,-0.029589634,-0.49959707,-0.22682913,-0.064168096,0.71791965,0.72872216,0.0917151,0.5885918,-0.21752647,0.5628011,-0.17755798,-0.4970937,0.267536,1.2713027,-0.14911182,-0.5382707,0.8732049,0.46989873,-0.19081013,0.43230522,-0.6147578,-0.34475043,0.19163066,-0.20666203,-0.72564656,0.22235471,-0.3965738,0.22444381,-0.9134435,0.48096168,-0.32771567,-0.8495818,-0.66081196,-0.25963628,-3.0011296,0.363379,-0.38274643,-0.16943468,-0.16126712,-0.39281875,0.2701483,-0.62137675,-0.62004554,0.057858907,0.027900435,0.79571,-0.09064953,-0.019270202,-0.14583696,-0.45606804,-0.23761518,0.24725193,0.23764172,0.3089455,-0.12002222,-0.36878327,0.0018699307,-0.08255401,-0.5831794,0.013587149,-0.9188671,-0.68787485,-0.16931556,-0.5723038,-0.35633057,0.7293967,-0.2153346,0.058526892,-0.3974563,0.07017975,-0.011090453,0.20733452,0.071102075,0.3025014,0.10747996,-0.15225898,0.16550249,-0.26645902,0.14425509,0.050275568,0.36374962,0.22587395,-0.2535269,0.3574879,0.57154685,0.6848183,-0.2908521,1.2134387,0.6428891,-0.1566318,0.146782,-0.088958375,-0.4474538,-0.65053046,-0.2801479,0.2525919,-0.55573225,-0.27593544,0.1396046,-0.48942846,-0.81462026,0.7429713,-0.04085394,0.3794251,0.002325269,0.39968652,0.6079553,-0.22498855,-0.30310774,-0.007249383,-0.31563473,-0.573581,-0.27157247,-0.6056606,-0.621164,-0.22663032,1.1786114,-0.11810087,0.21870361,0.30362374,-0.15633672,0.07544514,0.14545101,-0.06937433,0.04929858,0.5761947,-0.27718848,-0.76587677,0.32953212,-0.16852869,-0.14245181,-0.5579708,0.4959796,0.850953,-0.57109016,0.5755666,0.44004643,0.20289429,-0.5332558,-0.613959,-0.11270222,-0.07141546,-0.24686477,0.67816836,0.36997956,-0.7348559,0.47039095,0.34215993,-0.1543525,-0.7407472,0.660171,-0.22468421,-0.22123593,-0.009933426,0.34011868,0.051751766,-0.011948178,0.015874583,0.2964647,-0.2985519,0.32418698,0.21357553,-0.13223681,0.11066718,-0.31440845,0.00600785,-0.825878,0.19044226,-0.58001494,-0.34933588,0.31103283,0.06260434,-0.013534193,0.31381336,0.1428093,0.49547905,-0.17844535,0.089402,-0.32515156,-0.5052279,0.4090503,0.5760489,0.5048813,-0.3985174,0.4723929,0.09216903,-0.23347656,-0.19706856,0.11911015,0.47653005,0.03877447,0.5320488,-0.12380899,-0.061979312,0.35237217,0.8214312,0.21774295,0.6470328,-0.05269356,-0.008034787,-0.022743229,0.13655263,0.38577354,-0.11534904,-0.7699481,0.13966714,-0.44031546,0.18199499,0.5082575,0.028359026,0.23837426,-0.22069822,-0.394248,0.033885412,0.15828753,0.14846438,-1.5567597,0.37871736,0.21472563,0.9737726,0.32446605,0.07135056,-0.17726296,0.8409167,-0.058173385,-0.03262911,0.42476007,0.19090632,-0.2897549,0.53914464,-1.0455906,0.33166158,-0.07431459,-0.009900708,-0.1640003,-0.10573024,0.57879364,0.8914286,-0.22642693,0.035196066,-0.022070093,-0.35093725,0.33095393,-0.48489827,0.2251145,-0.5291927,-0.4432104,0.8006619,0.52136165,0.44630894,-0.14869381,0.08545354,0.080610104,-0.18099976,0.3995922,0.1349167,-0.028017465,-0.3136749,-0.64379305,-0.13237442,0.40101144,0.0066515896,0.17934373,0.0024274725,-0.21005043,0.2840111,-0.096984714,0.08969646,0.087600976,-0.6276686,-0.06944968,-0.35757568,-0.51788354,0.5140768,-0.050625376,0.046123292,0.16701017,0.038439013,-0.18042406,0.23320507,0.066688605,0.83153343,0.15763211,-0.17989816,-0.26196858,0.0961389,0.11576119,-0.28144407,-0.12708825,-0.17946577,0.28961346,-0.6640166,0.42516953,0.023952693,-0.56080616,0.32798812,-0.106900685,0.0075459685,0.49425015,-0.21028045,-0.18967935,0.12993021,-0.050770577,-0.14937386,-0.29452503,-0.024506519,0.28029707,0.0915237,0.020027189,-0.14483775,-0.21543993,-0.36941716,0.50993353,-0.086908534,0.60967517,0.5213545,0.031999048,-0.3536084,-0.065177664,0.24387115,0.55469644,-0.16736275,-0.100271024,-0.17374937,-0.62394774,-0.36852866,0.25372145,0.06752013,0.47005087,0.14934936,-0.031101776,1.0263441,0.046080966,1.3246906,-0.034205027,-0.5021811,0.046120163,0.56198,-0.070588775,0.011156905,-0.41202527,1.0226109,0.6052125,-0.14843395,-0.026831407,-0.5732961,0.10740713,0.22153774,-0.16514541,-0.18495552,-0.0146250175,-0.80432945,-0.26337856,0.24567914,0.41767508,0.149053,0.02460299,0.15391515,0.5989638,-0.13402304,0.26461652,-0.40912098,-0.16720062,0.36056006,0.37846655,-0.19661973,0.06029968,-0.6009948,0.3062825,-0.42556885,0.12070867,-0.31546915,0.21649545,-0.17269564,-0.35311472,0.30507973,-0.22931258,0.4671305,-0.31229427,-0.2340455,-0.11889632,0.5731245,0.018433042,0.01566385,0.54937935,-0.30708778,0.07018216,0.081239395,0.534407,1.2374753,-0.40476003,-0.07606962,0.37298998,-0.55163795,-0.59619504,0.35085136,-0.322712,0.12013145,0.30141985,-0.3532055,-0.36013845,0.20433356,0.26959637,-0.05952659,-0.058446113,-0.4733977,0.02294318,0.31768417,-0.42276186,-0.10325669,-0.17866342,0.3336542,0.38412032,-0.26179945,-0.3954767,-0.08330894,0.4219151,-0.16311055,-0.49842924,0.11719862,-0.3605787,0.42554167,-0.027171751,-0.5622952,-0.19737762,-0.1624052,-0.48625815,0.09926675,0.23476307,-0.30469382,0.06891178,-0.41502947,-0.15478285,0.9379601,-0.20416927,0.022324782,-0.67881525,-0.43563715,-0.8451613,-0.36836258,0.1050078,0.21362628,0.02740502,-0.664758,-0.15515852,-0.2788807,-0.12323152,-0.09791844,-0.31089416,0.5471478,0.22288138,0.69694334,-0.28203514,-0.9006743,0.34620363,0.0588442,-0.15543896,-0.625983,0.77422655,-0.024969826,0.6657244,0.08599559,0.27506155,0.080565885,-0.43026653,0.10934593,-0.056723878,-0.4343983,-0.9781612,-0.2373074,891 +764,0.3616658,0.0254627,-0.3880445,-0.052233525,-0.2734767,0.09284214,-0.06000587,0.45664522,0.18339767,-0.4513067,-0.1044439,-0.035377137,-0.1635606,0.307941,-0.23610705,-0.6160908,0.05467885,0.047032017,-0.31318936,0.57580477,-0.2774894,0.6577542,-0.027935734,0.37694898,-0.07315118,0.18518981,0.15669933,0.0044720266,0.19259056,-0.37228358,0.0004227253,0.03337823,-0.8089677,0.31197459,-0.2099997,-0.4608099,0.28686598,-0.48886675,-0.2373084,-0.62093484,0.17624386,-0.5738953,0.8235241,0.16320957,-0.17276353,0.104850754,-0.03369744,0.30414316,-0.10278349,0.17268941,0.26576024,-0.12482696,0.09150367,-0.33100647,0.092284255,-0.34188792,-0.35329336,-0.11715141,-0.3815593,-0.3245905,-0.16287497,0.1983464,-0.11527296,-0.038007975,-0.2023181,0.27559218,-0.5907353,0.08334657,-0.01320449,-0.25974143,0.045077045,-0.70128906,-0.20690629,-0.023996238,0.22663198,-0.2821967,-0.060749695,0.2991718,0.058490273,0.43090242,-0.0031813933,-0.057867374,-0.038276024,-0.27103484,-0.1410814,0.596025,-0.29256913,-0.319974,-0.14726366,-0.016684573,0.42447457,0.01445287,0.18610588,-0.22050375,-0.11423587,-0.33757517,-0.10192391,0.339619,0.48761526,-0.3416618,0.13200289,0.2129783,0.478471,0.28802982,0.054542813,-0.028703423,-0.10443824,-0.39139065,-0.078074604,-0.13105315,-0.15845546,0.30284736,0.09901544,0.24277037,0.53504425,-0.13677892,0.07869895,0.09305897,-0.016867233,0.21045424,-0.075696535,-0.47419697,0.36574215,-0.35006392,0.216811,-0.17603335,0.57322943,0.0031020413,-0.43749806,0.25948963,-0.5331758,0.038325127,0.013980497,0.4510288,0.28417614,0.52590364,-0.05940012,0.71033317,-0.5818542,0.10082065,0.00082083617,-0.04218122,-0.134517,0.24923292,0.035038777,-0.30074602,0.15834676,-0.14417465,-0.15010183,0.12460712,0.0520756,-0.7211749,-0.033739604,0.22329995,0.7854211,-0.28847593,0.16847119,0.7262997,1.180085,0.8622784,-0.09118596,1.0620606,0.17444435,-0.19408926,-0.43769962,-0.012853971,-0.4661105,0.07533348,0.5102902,0.002074801,0.2681138,0.09883519,0.01572178,0.29978535,-0.5914621,-0.26717243,-0.14319062,0.58552325,-0.0074910326,-0.28740516,-0.44204915,-0.0127215935,-0.012911453,0.0010291499,0.08232654,0.2809399,-0.4794836,0.14179425,0.04526575,1.1731803,0.13554586,0.10236626,0.09603512,0.39852187,0.3177603,0.08094292,0.16239454,0.24327832,0.26442748,-0.037076775,-0.5148044,0.15321891,-0.27131608,-0.53873837,-0.069706246,-0.15544814,-0.2478314,0.026830755,-0.42407608,-0.23009513,0.0095127225,0.074698456,0.37828392,-2.4177885,-0.17672297,-0.16594617,0.47918895,-0.119481474,-0.30671012,0.0016249877,-0.101157576,0.41913173,0.4008137,0.3927264,-0.48292178,0.34477422,0.5844464,-0.36881542,-0.20795487,-0.35202214,-0.0446263,0.14302531,0.27293167,0.14792415,-0.111480795,-0.030478861,0.26640308,0.41915587,0.028549125,0.14723152,0.32607225,0.4106248,-0.26269403,0.3233403,-0.015336366,0.44326383,-0.21692075,-0.10389581,0.315085,-0.3651744,0.18066496,-0.34579998,0.040331814,0.32992426,-0.22075066,-0.6937238,-0.3096272,-0.10007168,1.0404962,0.047709983,-0.51870966,0.123527676,0.10275721,-0.24361423,-0.038903303,0.45165676,-0.31876278,-0.062162038,-0.6746533,-0.03365815,-0.26459596,0.44238046,-0.04747754,0.09266547,-0.64238703,0.63915026,-0.18068658,0.45661163,0.4970736,0.40582472,-0.14732984,-0.37029126,0.021591287,0.8220656,0.69950515,0.07203008,-0.18654655,0.06633754,-0.019970087,0.06780982,0.029243818,0.71766484,0.69343376,-0.10672284,0.0036526276,0.19434412,0.16277257,-0.027564071,-0.1814284,-0.34087563,-0.15906137,-0.017931608,0.4091604,0.5329697,-0.23896226,0.21693142,-0.12152194,0.3731129,-0.2018967,-0.3967221,0.34828237,0.26785487,-0.21858686,-0.032811046,0.6248372,0.40822983,-0.090513304,0.32549492,-0.7725817,-0.37610957,0.46865243,-0.045763418,-0.38646272,0.27517053,-0.3132703,0.09732514,-0.8620799,0.50894296,-0.31721574,-0.4239999,-0.57263935,-0.37416136,-2.1415503,0.07159981,-0.21730123,-0.040480264,-0.25895217,-0.32156086,-0.04139442,-0.74422413,-0.5944761,0.2964309,-0.070402935,0.4111476,-0.06946249,0.19943355,0.033955447,-0.5902795,-0.06866956,0.3940997,0.033587635,0.16937247,0.17638487,-0.21648332,-0.08737393,-0.0016679366,-0.42413533,0.10756711,-0.44628322,-0.25290948,-0.11814018,-0.46539968,-0.0894833,0.61762214,-0.2667132,0.12657012,-0.16178681,0.06048973,0.011287212,0.12086631,0.22803518,0.14166477,0.026069313,-0.06038084,0.039609518,-0.23614189,0.24638847,0.29148486,0.4132716,0.17547148,-0.18053685,-0.12030269,0.39710805,0.6176405,-0.12657571,0.64915335,0.17224585,-0.27441007,0.41354254,-0.25258172,-0.41622674,-0.54464173,-0.5326793,0.2547468,-0.26331124,-0.5923287,-0.051789444,-0.3824738,-0.5855809,0.49643344,-0.024049915,-0.0074982345,-0.04689012,0.2556555,0.23147374,-0.2904968,-0.14003538,0.012717201,0.068453416,-0.24661233,-0.27567214,-0.6034679,-0.25742725,-0.15828909,0.8525787,-0.24483699,0.07716697,0.304903,-0.0034714364,0.26379097,-0.000623593,0.14952874,-0.07180286,0.2576275,0.092607096,-0.53128445,0.43882403,-0.19301136,-0.24625836,-0.59331894,0.09179818,0.6355458,-0.59758973,0.27971345,0.38123852,0.08533262,-0.10843231,-0.44423854,-0.109375395,0.23246314,-0.24849519,0.2783346,0.0047005415,-0.4097174,0.3394081,0.29368168,-0.3232587,-0.6712837,0.4883409,-0.05434707,-0.52917737,0.14258514,0.3089089,0.2263245,0.033407595,-0.104111075,0.24972796,-0.28726766,0.367253,0.1860058,-0.11877717,0.45453852,-0.17645001,-0.2162269,-0.8481151,0.2164307,-0.45798445,-0.41733822,-0.08768828,-0.022088083,-0.2821297,0.26177898,0.22454883,0.44329116,-0.6031773,0.16780734,-0.2806886,-0.37729982,0.47780174,0.44154784,0.5044076,-0.10406731,0.5312749,0.079512686,-0.038574357,-0.01877717,0.04430314,0.47054386,-0.10065894,0.075794294,0.017257543,0.15126947,0.21216136,0.64084786,0.09791506,0.18748124,0.11789629,-0.27608955,0.19743422,0.16061953,0.15852962,0.08414871,-0.30942023,0.33067077,0.03151502,-0.11079454,0.40262428,0.36264896,0.15861504,-0.063000746,-0.3660924,0.06424335,0.3752724,0.093933925,-1.0316398,0.25876933,-0.11093721,0.78842187,0.47510162,0.254917,0.18362603,0.43924662,-0.07102445,-0.13446933,0.08625025,0.11586578,-0.18789479,0.3911308,-0.3760535,0.2622951,-0.04427451,-0.020775795,0.17697889,-0.17600836,0.36720482,0.69937855,-0.11596056,-0.022955088,-0.07015802,-0.12804732,-0.2063471,-0.35457242,0.25773236,-0.28631324,-0.3032145,0.61134493,0.24701871,0.15418516,-0.23520707,0.05433099,-0.04469133,-0.24401543,0.28192136,-0.10982016,0.028771244,-0.02357864,-0.19032834,-0.17342371,0.49322128,-0.2869274,-0.1477099,-0.264687,-0.24843924,0.14602245,-0.09742521,0.04967706,0.05482822,-0.7526076,0.29516056,-0.43603528,-0.062325127,0.2633004,0.04481005,0.29005855,0.024296353,-0.04578542,-0.09557596,0.4743342,0.1440243,0.6868524,0.055151388,-0.19617026,-0.20437646,0.32179627,0.1432884,-0.20530897,0.25278482,-0.18038484,0.19727223,-0.6011833,0.28694436,-0.11197127,-0.18752891,0.011303397,-0.33897984,-0.076279216,0.27278343,-0.047729455,-0.057530794,0.06515204,-0.3139553,0.13003089,-0.2697165,-0.44593745,0.14327744,0.19918774,0.02898219,-0.1506378,-0.17312871,-0.33131617,0.44309372,0.15546802,0.3461617,0.23632017,0.07332924,-0.5849097,0.09997916,-0.2863366,0.3905234,-0.21574871,0.05141657,-0.10281587,-0.65273607,-0.388597,0.30577624,-0.3691934,0.09689646,0.04748781,-0.13057175,0.8426208,0.47274244,1.2162944,-0.18592884,-0.43334058,0.06782843,0.709136,-0.18088843,0.03999549,-0.27125928,1.2623032,0.5050794,-0.12741916,0.019533511,-0.022122484,-0.122151025,0.17892449,-0.2652809,-0.10185269,-0.13715975,-0.42684343,-0.31880647,0.123460926,0.28598595,-0.15739202,-0.01836741,-0.11110302,0.3651063,0.0815117,0.25045705,-0.6912359,-0.065769546,0.32736307,-0.05039024,0.048336305,-0.03615223,-0.34668085,0.45322832,-0.5565371,0.1985865,-0.39406,0.09089918,-0.28114992,-0.21049537,0.06820577,0.059632327,0.29742992,-0.7247379,-0.4106884,-0.039411448,0.21182749,0.05484529,0.087714046,0.57391727,-0.20115791,-0.054511968,-0.2315297,0.5050384,0.8552045,-0.32879496,0.046862647,0.4864689,-0.54982144,-0.48403072,-0.053262074,-0.37146437,-0.151501,-0.34695297,-0.29495537,-0.54764,0.22713701,0.056997437,-0.108475395,-0.1407141,-0.6831579,-0.16086242,0.48400497,-0.23979068,-0.2152209,-0.33390296,0.27339843,0.8386573,-0.2108438,-0.4301501,0.051514048,0.356637,-0.32801676,-0.7507642,0.12811294,-0.3830202,0.50952744,0.13060902,-0.25737095,-0.49693415,0.064971834,-0.3767169,-0.006972258,0.28510833,-0.18195525,-0.03345349,-0.2315259,0.2524163,0.59135664,-0.0327156,0.06883211,-0.55730444,-0.39934254,-0.93574977,-0.35514405,0.43865854,0.4104726,-0.19548811,-0.78575045,-0.1214317,-0.3437926,-0.08329419,-0.19112664,-0.092986494,0.29722887,0.18723775,0.66231143,-0.37473577,-1.2007403,0.12352516,0.046260852,-0.3187484,-0.35450077,0.43648702,0.28322238,0.63086253,0.070024244,-0.22364837,-0.018321143,-0.61140466,0.34833643,-0.33967048,-0.090184554,-0.5480965,0.34899646,892 +765,0.45730764,-0.13988641,-0.64794403,-0.13000634,-0.11671428,0.08513566,-0.2248598,0.18586317,0.26868442,-0.5174976,-0.089782625,-0.11070751,0.08455295,0.34719265,-0.11712634,-0.742693,0.14389266,0.32443392,-0.50899494,0.5056862,-0.50649273,0.39550957,0.06839162,0.19608848,-0.048636172,0.12916747,0.2732473,-0.04328279,-0.06373722,-0.29122147,-0.008064669,0.017302994,-0.60928476,0.2285874,0.0015764832,-0.47657442,-0.0023593444,-0.3553549,-0.44614804,-0.8253752,0.26114404,-0.9014199,0.56621563,-0.029011132,-0.3298259,0.3418179,0.081985965,0.25171897,-0.19845955,0.07251408,0.09705159,-0.32920727,-0.37177467,-0.3357512,-0.2675557,-0.38439396,-0.6577107,-0.041229468,-0.5817824,0.11001739,-0.34343383,0.115017615,-0.5029173,0.28384194,-0.22022255,0.42511258,-0.23060766,0.032640237,0.2345087,-0.12358941,0.060827173,-0.35899633,-0.09444466,-0.12231907,0.06483274,-0.008162673,-0.35621136,0.36752015,0.29812983,0.53277683,0.03746684,-0.36470094,-0.31854314,-0.047854804,0.27314755,0.4700932,-0.08233543,-0.4330528,-0.20951508,-0.03234743,0.19193341,0.1292127,0.17953953,-0.31337997,0.08356815,0.17029317,-0.4416746,0.44581315,0.5887402,-0.2965321,-0.12574512,0.34819758,0.57607484,-0.1768431,-0.09368939,0.16751143,-0.10670435,-0.60024196,-0.23998755,-0.04193455,-0.22909704,0.6361171,-0.30583966,0.097227775,0.5791957,-0.35484773,-0.26886475,0.32874286,0.063978516,-0.17482303,-0.23107216,-0.2868241,0.5051761,-0.64012486,-0.010802975,-0.20932443,0.8822991,0.11087041,-0.73423266,0.4169828,-0.61620164,0.2713912,-0.14691314,0.7143933,0.6255316,0.6086028,0.3927737,0.74708396,-0.58466077,-0.036940493,-0.083917156,-0.5803694,0.20963739,-0.26258707,-0.044347122,-0.387393,-0.03461613,0.073391825,-0.26671344,0.02150948,0.6640201,-0.35291007,-0.09915678,0.0402259,0.76543045,-0.39642665,-0.18155043,0.80163074,1.117841,1.2359812,0.21566452,1.320013,0.49585077,-0.117854886,-0.07313322,-0.09139746,-1.0773654,0.33462998,0.20210099,-0.40481365,0.42357528,0.13603482,-0.09848769,0.35753638,-0.5087629,-0.20899323,-0.046178136,0.3719043,-0.010955696,-0.17271203,-0.43704844,-0.32276016,0.18470731,-0.0632872,0.25301564,0.46689188,-0.28299916,0.46871904,0.21367405,1.2910413,-0.10432386,-0.064302996,0.14039192,0.30287144,0.24594344,-0.16183956,-0.026163243,0.19736011,0.43917763,0.11885666,-0.63997084,0.006064876,-0.20122232,-0.522311,-0.21410066,-0.20544481,0.036085792,-0.26113746,-0.18760516,-0.3145352,-0.12838647,-0.46992227,0.46177387,-2.2924502,-0.25043216,-0.059303317,0.3105581,-0.0968483,-0.33170074,-0.108074866,-0.6168777,0.30358347,0.3038019,0.4631663,-0.7422097,0.45235273,0.5191492,-0.48790088,-0.0056195143,-0.67150086,0.03527591,-0.23346502,0.31743506,0.111551575,-0.03415664,-0.08672248,0.17704147,0.5823238,-0.13261418,0.1916354,0.45934722,0.45730355,-0.11647514,0.36772993,0.05334331,0.7144754,-0.4666856,-0.14194515,0.309079,-0.5272831,0.113459535,-0.091514125,0.1842993,0.39260116,-0.43225104,-0.82953954,-0.6279215,-0.16196333,1.3775623,-0.40244505,-0.5352049,0.24492596,-0.049758546,-0.23268096,-0.045490835,0.26762116,-0.40903282,-0.09895686,-0.7962367,0.14044635,-0.008661444,0.3199991,-0.16343972,0.04512476,-0.32124692,0.600285,-0.098442905,0.5330833,0.30916113,0.22340542,-0.32472324,-0.5431016,0.18727861,1.0399938,0.35025123,0.17390272,-0.38444933,-0.19729845,-0.17038496,-0.1472719,0.19858263,0.4258081,0.84376436,-0.19123824,0.11991611,0.36774394,-0.039904073,0.031873778,-0.07660016,-0.40105087,-0.07753876,-0.13709049,0.6156272,0.7797193,-0.17274903,0.3541778,-0.1432298,0.4317018,-0.16704136,-0.6075641,0.65399873,1.2726135,-0.2040439,-0.42066997,0.69587857,0.4884432,-0.40809816,0.7401364,-0.61397797,-0.42937627,0.38959825,-0.08393591,-0.39983308,0.14219591,-0.37554714,0.20623027,-0.837781,0.45260465,-0.16909193,-0.65177476,-0.44859442,-0.025157807,-4.0378046,0.17311716,-0.24859825,-0.075322054,-0.14009787,-0.06819362,0.25578067,-0.34093586,-0.7454884,0.21994737,0.21987364,0.77754027,-0.12572847,0.19522792,-0.17510106,-0.21713169,-0.395604,0.15918534,0.25243443,0.2064916,0.13827302,-0.48260787,-0.09823547,-0.2619592,-0.42465788,0.12708524,-0.73912716,-0.43886662,-0.09523886,-0.5818532,-0.61523944,0.66638255,-0.3531678,0.01989865,-0.3178756,-0.027463647,-0.09305541,0.40556198,-0.21300521,0.029290965,-0.058522563,-0.21269837,0.008808434,-0.18742186,0.3432892,-0.053158734,0.34625039,0.34564286,-0.24313919,0.045745593,0.46970206,0.7360457,0.04289146,0.8192978,0.3214807,-0.15375292,0.3105141,-0.15024765,-0.3066392,-0.6498111,-0.3057161,-0.052808695,-0.49328735,-0.34266546,0.033887096,-0.36085966,-0.9735594,0.553861,0.041978322,0.056774303,0.047652915,0.38915083,0.43305126,-0.10454646,-0.09862819,-0.042752128,-0.34242398,-0.44249514,-0.33430618,-0.9789811,-0.35715738,0.10597616,1.1527832,-0.033220217,0.01749778,0.018711096,-0.07994558,0.0567633,0.27909052,-0.009807756,0.2414057,0.57842666,0.017664222,-0.7102511,0.4439307,-0.37270573,0.017214097,-0.7158574,0.20481804,0.62570804,-0.77731776,0.46401304,0.5248096,0.15057112,0.019361576,-0.5000326,-0.28410816,0.044947304,-0.12345098,0.54748577,0.46277764,-0.94488645,0.5514269,0.3816813,-0.47237998,-0.71713835,0.35424134,-0.11864771,-0.13090077,-0.059822902,0.5086429,-0.17442349,0.09364487,-0.2223838,0.092947006,-0.44523513,0.2689872,0.25073385,0.04569377,0.123013146,-0.08456703,-0.072023936,-0.7109048,-0.15838696,-0.5726655,-0.09251937,-0.01051044,-0.027048746,-0.006783059,0.22322692,-0.09774857,0.36572087,-0.2686624,0.05095106,-0.053474206,-0.4632209,0.6793458,0.5588051,0.40565413,-0.3915456,0.7586981,0.07333123,-0.14840218,-0.18978928,-0.004099204,0.3360699,0.09386502,0.54158485,0.45305464,-0.014586554,0.32568452,0.7743861,0.23048991,0.54499173,0.30199003,-0.15062734,0.3055519,0.1528043,0.36889976,0.0060243607,-0.5332568,-0.0408194,-0.3262369,0.23806565,0.6700793,0.12149526,0.45914248,-0.063490495,-0.3932924,-0.019577738,-0.0025299971,-0.11286701,-1.4614056,0.47699574,0.15377879,0.5867994,0.58840156,-0.0050541665,0.21935837,0.52380776,-0.24161513,0.14635979,0.28584242,0.017139025,-0.34781796,0.64025474,-0.79138684,0.43962348,-0.19504033,0.14497161,0.016994072,0.10550892,0.39668688,0.9754441,-0.12793726,0.20819518,-0.11222387,-0.29676652,0.26173243,-0.43098253,0.15448588,-0.4455962,-0.3658333,0.82142216,0.30945268,0.5494092,-0.21747524,-0.10321239,0.10059753,-0.15776652,0.05079717,0.035818044,0.037386358,-0.24081472,-0.7195228,-0.12289678,0.6180159,0.26223555,0.18258892,0.07866435,-0.11851156,0.2300472,-0.2668129,-0.2272823,0.027763424,-0.692829,-0.15216725,-0.20081249,-0.49944514,0.15793514,-0.26685092,0.19695896,0.3353557,0.14687833,-0.52353704,0.018160177,0.15291156,0.60894173,0.055126853,-0.2338183,-0.18136604,0.16983296,0.28845838,-0.3495175,0.1866751,-0.309838,-0.059202358,-0.5465588,0.59866405,-0.23695086,-0.3561471,0.25593063,-0.14931203,-0.046186987,0.5679939,-0.30419922,-0.16464195,0.08231267,-0.02130623,-0.17066042,-0.37989727,-0.17933647,0.25489688,0.048849728,-0.19334687,-0.0037377293,-0.09542697,0.016891552,0.32909063,-0.12951526,0.23009516,0.36558563,0.10515426,-0.4239874,-0.067162685,0.117981665,0.6956581,0.053841487,-0.32004818,-0.50529826,-0.4618848,-0.18830983,0.08090366,-0.024841528,0.31518608,-0.013877513,-0.37356436,0.7750146,0.107312694,1.0899588,0.10395272,-0.39339602,0.012013912,0.62470275,0.13670625,-0.17655197,-0.19889075,0.97964346,0.5283957,-0.19606209,-0.26982838,-0.6772222,-0.07460194,-0.03641389,-0.2630917,-0.42188266,0.04990047,-0.67779094,-0.15899706,0.23555396,0.3228113,0.12310849,-0.07521907,0.3023072,0.514609,0.066216305,0.30442283,-0.48307472,0.024581987,0.3735337,0.19675589,0.1008278,0.069770426,-0.39204648,0.2335655,-0.68727237,0.07240919,-0.104794815,0.06061512,-0.017059969,-0.33057305,0.34238002,0.30377427,0.19271165,-0.47327912,-0.32133776,-0.1381217,0.5089778,0.176783,0.27981022,0.8055845,-0.23668233,-0.047689393,0.21014386,0.5642601,1.0248567,-0.050459724,0.029676042,0.20128441,-0.5391445,-0.77840734,0.51316255,-0.09789632,0.11419478,-0.052071176,-0.47168332,-0.7293993,0.3662268,0.10330104,-0.007733831,0.43900827,-0.52778095,-0.2368305,0.20654249,-0.34700316,-0.2734676,-0.35122225,0.14939652,0.57256407,-0.2909697,-0.31945917,0.060829803,0.2347494,-0.20662615,-0.53879344,-0.28547108,-0.48527497,0.33203924,0.07919412,-0.2361339,0.080502026,0.14593357,-0.43786418,0.3023837,0.24090448,-0.22187011,0.2543244,-0.25758392,-0.18391807,0.65348977,-0.3397508,0.12663108,-0.71790373,-0.6183126,-0.95184547,-0.2545935,0.5616052,0.06257811,-0.076922186,-0.58791035,-0.1769999,0.058858827,-0.273042,-0.049332783,-0.42549464,0.420109,0.10168694,0.3239573,0.03667812,-0.8436214,0.043536086,0.14883493,-0.2499641,-0.43012887,0.48504508,-0.13771118,0.8954576,0.13241805,0.1734558,0.31159097,-0.5843365,0.16791286,-0.12798157,-0.10363186,-0.5722039,0.012786072,896 +766,0.6074062,-0.048998628,-0.5170523,-0.037493806,-0.31044033,0.014882737,-0.2512493,0.33563295,0.33047375,-0.32866284,-0.23311043,-0.14385428,-0.09093285,0.31210762,-0.15651336,-0.6264318,-0.2040326,0.1504263,-0.40096062,0.8526773,-0.31116167,0.23314336,0.03468955,0.36730495,0.4324618,0.11238742,0.18054877,0.039566416,-0.22717796,-0.26351535,-0.026694454,0.20392457,-0.6091184,0.1813968,-0.18897645,-0.3979922,-0.09972046,-0.4956681,-0.3440037,-0.7856306,0.40580684,-0.74884903,0.36638606,0.041000545,-0.18311456,0.3546133,0.2287182,0.24406312,-0.088557094,-0.2074851,0.121750906,-0.108843125,-0.03252,-0.083643965,-0.38490814,-0.21864584,-0.7657355,0.03842873,-0.4218912,-0.20237572,-0.39787585,0.13489719,-0.38030815,-0.02315248,-0.22296308,0.65218854,-0.4918969,0.0749164,0.09179108,-0.0815672,0.091357715,-0.84198225,-0.35273913,0.0046180347,-0.025568824,0.033010583,-0.09509396,0.21310498,0.1604418,0.37526697,0.07646223,-0.23610497,-0.57552207,-0.110761076,0.3048384,0.5039987,-0.0005465654,-0.2001775,-0.19536726,-0.03174836,0.21013114,0.29648617,0.38624462,-0.13827549,-0.042005584,-0.13827087,-0.24533492,0.51068455,0.500168,-0.32614404,-0.36913416,0.32739693,0.53768444,0.31589526,-0.14371274,-0.15350525,-0.069335505,-0.49992365,-0.06293798,0.23629893,-0.38144302,0.59873116,0.0017399621,0.12627429,0.49204797,-0.15156434,0.13887547,-0.02066471,0.08358538,0.061271053,-0.49985048,-0.29573876,0.33989912,-0.33584183,0.32345244,-0.08536343,0.90516675,0.033115573,-0.69190276,0.28229147,-0.5786018,0.10021329,0.03863164,0.48116717,0.64572614,0.27384135,0.35220715,0.788017,-0.21189213,0.05705337,-0.12085493,-0.09817021,-0.14090785,-0.105177715,0.22700302,-0.49075097,-0.11673311,-0.0686612,0.0003119982,0.21416165,0.6050793,-0.32182658,-0.14576696,0.27476338,0.8728965,-0.13001516,-0.11027675,0.91043526,1.3146987,1.4313846,-0.01894217,1.0561193,0.112633675,-0.27398768,0.028844027,-0.24614851,-0.6611817,0.19247445,0.27505052,-0.16320919,0.22637922,0.036999933,0.004432889,0.43390396,-0.42616814,0.123574495,-0.10159986,0.10312564,0.2643066,-0.026342694,-0.5328283,-0.35135034,-0.08564564,0.052310072,0.008028181,0.26540634,-0.2791562,0.19139484,-0.04180292,1.4644196,-0.14602375,0.012228741,0.2655231,0.4239777,0.1526795,-0.2185812,0.09421674,0.22426862,0.27998206,-0.09553185,-0.6336802,0.112746805,-0.33261627,-0.40833044,-0.15292518,-0.43605006,-0.07192935,0.05888841,-0.37438518,-0.19369163,-0.19791172,-0.49701184,0.48241064,-2.9023683,-0.022168994,-0.07872859,0.26306474,-0.30236226,-0.32702163,-0.0075335894,-0.50853604,0.4758239,0.22090127,0.48131004,-0.46854395,0.26798704,0.45690182,-0.71212536,0.046924964,-0.649427,-0.24565479,-0.004399873,0.48408306,-0.10357718,0.06438328,0.052089408,0.21269442,0.5941567,0.2625292,0.24267401,0.4031514,0.37480038,-0.27621028,0.46247414,-0.11591785,0.4913855,-0.25153378,-0.16311568,0.42794168,-0.41998762,0.3962135,-0.3258667,0.16957569,0.50610507,-0.39859676,-0.9339524,-0.5243549,-0.340913,1.0148823,-0.2670453,-0.6653291,0.33088037,-0.22124122,-0.099612586,-0.061107066,0.5151149,-0.07891024,-0.25211784,-0.7306151,0.022095177,-0.09026054,0.140417,0.00012853972,-0.006884974,-0.43571588,0.85653746,-0.06097478,0.48108834,0.31989008,0.44946972,-0.2091603,-0.30405995,0.08944552,0.93168896,0.4011213,0.07881196,-0.34670416,-0.10077858,-0.26252386,-0.26379153,0.119593754,0.5525269,0.68161094,-0.15198506,0.14497769,0.34208748,0.05444291,0.06638359,-0.07373747,-0.31281117,-0.24750155,-0.07421389,0.45534882,0.7560107,-0.0064349542,0.39512414,-0.02051844,0.16091275,-0.2364038,-0.32356438,0.48503417,0.828462,-0.09103041,-0.3165228,0.58298934,0.5957173,-0.2562721,0.5708686,-0.44955567,-0.20392752,0.52995366,-0.18665077,-0.41670778,0.014622303,-0.48137188,-0.19871551,-0.6990038,0.21882893,-0.43144462,-0.41998482,-0.48218888,-0.20958057,-2.3580127,0.17563698,-0.3109489,-0.2504072,-0.1900027,-0.0954433,-0.09774494,-0.6765762,-0.7074655,0.11891334,0.14800376,0.6506924,-0.1489722,0.085713536,-0.19310245,-0.34138992,-0.43659866,0.08235006,0.07653374,0.44784096,-0.1392873,-0.31140438,-0.0009949964,-0.07409591,-0.35725623,-0.054543562,-0.47365955,-0.36219856,-0.11863144,-0.44321978,-0.18838233,0.6398278,-0.4093973,0.025703628,-0.2893138,0.015607363,0.00011468392,0.17830823,0.22112559,0.32298067,0.15781872,-0.11320378,-0.061955318,-0.23565228,0.43351904,0.13844317,0.4148496,0.61767185,-0.17153539,0.1950462,0.36506134,0.5252085,-0.08980259,1.0319308,0.43295747,-0.13338062,0.22759174,-0.18747255,-0.22220048,-0.7020737,-0.13203517,0.052818887,-0.37305367,-0.6407295,-0.20175669,-0.32659495,-0.86245483,0.44492647,-0.0322846,0.57508767,-0.053643517,0.20171738,0.4703901,-0.17642571,-0.021815883,-0.06903574,0.021456517,-0.38826662,-0.43573233,-0.6880704,-0.38015085,0.15052143,0.96047914,-0.15004133,-0.118415944,0.24793316,-0.3762291,-0.10935784,0.2071853,-0.07000014,0.010298527,0.47473225,0.3094458,-0.6318835,0.5062376,0.043445505,0.042454958,-0.45417303,0.18813199,0.45565712,-0.41306293,0.61708844,0.21688029,0.14673892,-0.118324265,-0.6230388,-0.23254374,-0.026499419,-0.12588619,0.31163967,0.39521253,-0.70722616,0.43496007,0.09340374,-0.25754994,-0.9214356,0.46698782,-0.08844723,-0.2684301,-0.047152616,0.40004805,0.25557238,0.034489512,0.014528293,0.2977721,-0.39052922,0.26691872,0.20431453,-0.104022816,0.173061,-0.13615663,-0.22225468,-0.73050684,0.14354132,-0.3607254,-0.36386007,0.22114362,0.12420352,0.062026437,0.374297,0.34064117,0.34230286,-0.15224046,0.27736542,-0.12159591,-0.15716611,0.4160164,0.39610225,0.79623264,-0.5040568,0.56979984,0.041159026,-0.17619416,0.14097062,-0.015487596,0.33005974,-0.07417968,0.37347955,-0.032913096,-0.19269124,0.12077452,0.6478434,0.20871855,0.34450597,0.061529838,-0.20288755,0.45947793,0.0044459244,0.10479513,-0.08781587,-0.70264846,0.022465605,-0.3069172,0.09093172,0.49751097,0.04133165,0.3126297,-0.11939727,-0.09561278,0.1057601,0.1992334,-0.27927023,-1.0423452,0.16522019,0.018384036,0.9421718,0.71125,-0.024268266,0.094718106,0.49511245,-0.18947461,0.04935371,0.4762804,0.03930848,-0.5062474,0.6251379,-0.561929,0.587668,-0.101309314,-0.020111639,0.012482194,0.07447608,0.51738846,0.68952334,-0.37241885,-0.15929915,-0.072387114,-0.4635573,0.09710583,-0.3174753,0.2667639,-0.5417472,-0.35379183,0.7704781,0.60655934,0.29299456,-0.17776097,-0.03205248,0.088694826,-0.16507241,0.13559881,0.009636523,0.04305923,0.032064978,-0.634502,-0.074614756,0.42410645,-0.4327474,0.049256746,0.0738195,-0.16355082,0.10919252,-0.11923982,-0.18542807,0.05193464,-0.79803556,0.010145079,-0.23879424,-0.39993078,0.21204615,-0.1493743,0.33594185,0.145935,-0.022400549,-0.26542094,0.25670263,0.17310493,0.5838029,-0.07781922,0.057253845,-0.28047058,0.09221314,0.038524583,-0.119872324,0.06129879,0.074101724,0.2495765,-0.6846026,0.5384115,-0.17066447,-0.2167746,-0.118329994,-0.22452694,-0.019323103,0.71400875,-0.18224144,-0.012866766,-0.3449927,-0.23045397,-0.26962727,-0.22042543,-0.028428402,0.14168221,0.085459545,-0.20743439,-0.12291492,-0.12331792,0.05673921,0.16300859,-0.037746347,0.36495337,0.23149487,-0.0025970845,-0.42577922,-0.19495402,0.15149365,0.42864752,-0.0061815013,-0.16387232,-0.26918587,-0.37042558,-0.3921504,0.40137476,-0.036051873,0.3696543,0.055459674,-0.19138663,0.7002998,0.16714838,1.1997378,0.02974411,-0.40304992,0.042486884,0.59570086,-0.17751104,-0.119070634,-0.2623618,0.9313479,0.46373132,-0.014706268,-0.12746271,-0.37973145,0.05402614,0.1879174,-0.24734871,-0.068456635,-0.017934404,-0.4301472,-0.0887376,0.08432312,0.22596033,0.08538026,-0.2651309,-0.050820485,0.27687886,0.12050017,0.4447279,-0.39499715,-0.33296674,0.35371727,0.15818323,-0.013300249,0.2101833,-0.37979856,0.3162257,-0.7043584,0.22326161,-0.19174653,0.14818023,-0.27515915,-0.15709202,0.4028428,0.1038354,0.49601313,-0.3718535,-0.35318455,-0.3116441,0.38577932,0.17306294,0.15753135,0.5212346,-0.19862773,0.014377682,-0.020623028,0.61441934,1.1029611,-0.102587745,-0.06822359,0.19548963,-0.40779817,-0.7499328,0.34073538,-0.38163647,0.07985409,-0.10919325,-0.24500205,-0.66305923,0.15490964,0.19352429,-0.043655936,0.18211061,-0.60238296,-0.34430602,0.038600214,-0.34150356,-0.23281462,-0.20218055,-0.071221195,0.7167617,-0.0994114,-0.39705357,-0.047701064,0.18569033,-0.08644143,-0.47999606,0.10559873,-0.32540953,0.28896528,-0.016755732,-0.30486575,-0.25205696,0.20342074,-0.4818344,-0.05141095,0.16637689,-0.29966673,-0.10747772,-0.37307817,0.007202066,0.90024275,-0.20394543,0.29405773,-0.37483466,-0.5652489,-0.75230896,-0.5156615,0.3940519,-0.03194727,-0.03805518,-0.5588702,-0.031391144,-0.33490303,0.018207647,-0.07226361,-0.46251327,0.4443305,0.12811746,0.34125122,-0.24881011,-0.62441766,0.10702447,0.09826912,-0.0813039,-0.48134944,0.30128404,-0.02792581,0.82594234,0.077003844,0.028095208,0.11635128,-0.50023204,0.1542864,-0.14826457,-0.20212676,-0.50921273,0.15079048,897 +767,0.52933306,-0.1416482,-0.53106964,-0.091046385,-0.13519487,0.013822055,-0.049563143,0.66676384,0.24945973,-0.5318075,-0.09349027,-0.29402196,0.1867711,0.53133196,-0.0816975,-0.656356,-0.042125337,0.20783871,-0.43007058,0.6371963,-0.3845668,0.3316952,0.035108328,0.41088942,0.25886866,0.34677616,0.03479685,-0.12992407,-0.32713282,0.101987325,-0.124865174,0.24769786,-0.65699476,0.03256735,-0.011283178,-0.36081696,-0.07081788,-0.37251604,-0.47168154,-0.62394226,0.34361818,-0.7885994,0.57103306,-0.038456276,-0.14237235,0.25359666,0.035791747,0.3333182,-0.3118815,-0.011921534,0.037005875,-0.005196617,-0.0049652066,-0.29231045,-0.407637,-0.6571658,-0.6009939,-0.027305167,-0.37067434,-0.22469807,-0.37117746,0.06534473,-0.3441496,-0.12281246,-0.05167071,0.39471644,-0.38565907,0.2591293,0.18951271,-0.028085778,0.31796265,-0.43721518,-0.28404433,-0.19219758,0.20394462,-0.27031514,-0.14024353,0.33005828,0.415848,0.36237377,-0.12221313,-0.0437114,-0.32523096,0.072298564,0.10501984,0.47071588,-0.31528118,-0.67067516,0.008676311,0.037227135,0.13145383,0.26701605,0.3467707,-0.2745766,-0.09135124,0.06578268,-0.32653058,0.46457973,0.4197709,-0.34447187,-0.4766709,0.39679688,0.3724388,0.11563527,-0.23487093,-0.041130725,-0.038808957,-0.48333457,-0.11024182,0.21199414,-0.21555567,0.57030004,-0.048235793,0.11673581,0.6829072,-0.26463622,-0.0070820334,0.020132972,0.04874653,-0.01927639,-0.27424273,-0.19427289,0.14081591,-0.3695877,0.09537632,-0.18075055,0.7837261,0.30150884,-0.81765735,0.42685163,-0.56786793,0.14351556,-0.10170877,0.39992332,0.6940629,0.40626925,0.16040061,0.6151914,-0.4982077,0.09550074,-0.043146227,-0.45311612,0.16077791,-0.16739868,-0.12897588,-0.56226736,-0.051672652,0.03529165,-0.25579002,0.1897309,0.44824404,-0.6152469,-0.20537789,0.12482806,1.0085437,-0.34651348,-0.23398592,0.74040693,0.9141957,0.73239505,0.033663385,1.3027552,0.30536312,-0.26350817,0.45545945,-0.5104979,-0.7556063,0.26351258,0.260686,-0.7091262,0.4144282,0.12755929,-0.1055632,0.121606275,-0.102812916,-0.0007316883,-0.0849356,0.1285648,0.00779615,-0.24948655,-0.35591257,-0.34556538,-0.25582406,-0.15278961,0.1790861,0.24140635,-0.28292996,0.29324052,0.028320324,1.8267039,-0.009983237,0.10107463,-0.080897935,0.6080985,0.27611503,-0.13871136,-0.11830138,0.50048196,0.43891463,0.29580086,-0.5992062,0.19564845,-0.3117084,-0.6140198,-0.12213487,-0.4450242,0.10784142,-0.0646065,-0.4546122,-0.083756156,-0.15336385,-0.28413457,0.5170317,-2.6359982,-0.2548262,-0.12863399,0.4334394,-0.2892819,-0.35299352,-0.18191454,-0.4211885,0.33055857,0.20508875,0.5163518,-0.7502965,0.3020857,0.28138983,-0.4205845,-0.23379542,-0.6160257,-0.0369593,-0.006668138,0.3710887,-0.24395452,0.24034742,0.26482645,0.1883151,0.40956226,-0.13267806,0.07557161,0.26429555,0.45792294,0.16237989,0.42676976,-0.12651986,0.6626581,-0.21612193,-0.23493136,0.14085633,-0.3472262,0.16511801,0.14477614,0.12939838,0.29128462,-0.4534387,-0.9759511,-0.48404026,-0.18594867,1.0223291,-0.33208498,-0.36440402,0.2923095,-0.25869334,-0.14725758,-0.14329942,0.53150445,0.005891392,-0.024027197,-0.7625106,0.08586796,-0.03506107,0.14682844,0.0004317004,0.07816002,-0.26118028,0.45030624,0.009824538,0.5162426,0.16072758,0.20090191,-0.40421754,-0.54582953,0.1338285,1.0275868,0.069342904,0.12622732,-0.073907696,-0.34826565,-0.38939416,-0.026300857,0.14170863,0.52895105,0.668787,-0.04709872,0.09372151,0.32080847,0.025703214,0.20495926,-0.10640126,-0.35792395,-0.13302289,-0.12964892,0.44795233,0.55318594,-0.40828106,0.78193134,-0.2295991,0.2629458,-0.12200082,-0.48419872,0.6487986,1.143904,-0.2680206,-0.19679686,0.5694352,0.3431989,-0.52909744,0.43287876,-0.4570681,-0.0996005,0.63923085,-0.15767524,-0.22111201,0.3640417,-0.1941043,-0.078828536,-0.9266007,0.3635529,-0.29464686,-0.47096184,-0.22391686,0.07096027,-3.8960302,0.1498321,-0.29485786,-0.31646186,-0.14961056,-0.056418963,0.1786937,-0.62940055,-0.49787605,0.21452448,0.16838983,0.70292366,-0.030693272,0.14254496,-0.2985398,-0.24579495,-0.2390797,0.11372425,0.16142686,0.37715212,-0.029820463,-0.475246,-0.16709223,-0.07201558,-0.47921765,0.16802791,-0.69285274,-0.42856294,-0.13077448,-0.7593756,-0.2723462,0.7779985,-0.36861122,-0.010657044,-0.23303369,-0.013375715,-0.18268088,0.2392656,0.009946619,0.128176,0.0879519,-0.031306837,0.12107145,-0.24855271,0.1838993,0.08333748,0.43897894,0.17441337,-0.16391708,0.08251421,0.57168865,0.6702388,-0.0028863412,0.7789014,0.6073829,-0.12189192,0.37133533,-0.3395471,0.022082053,-0.54945576,-0.4835976,-0.24294113,-0.29507694,-0.59768057,-0.18965171,-0.28632113,-0.72205997,0.58663464,-0.14615804,0.3580918,-0.06619202,0.30286005,0.5282908,-0.22073999,0.07485521,-0.14185116,-0.26259953,-0.64494324,-0.19094199,-0.54579204,-0.39722353,0.39511025,0.78435606,-0.19820179,0.03293274,-0.25935704,-0.28973705,-0.038169548,0.19197804,0.028110322,0.24222206,0.39083067,-0.28286383,-0.6643223,0.4619415,-0.23630343,-0.1851218,-0.6107451,0.28323135,0.5817655,-0.6317348,0.76314694,0.18237187,-0.069714636,-0.1693317,-0.36624634,-0.32050043,0.12631838,-0.11448013,0.23445328,0.09888576,-0.93705434,0.30622506,0.41975874,-0.38083073,-0.53577125,0.7648411,0.0048627947,-0.28081694,-0.105293974,0.27756622,0.16856946,0.05228152,-0.34828627,0.2624976,-0.5240016,0.23848622,0.280079,-0.10003304,0.20830916,-0.03727205,0.016513119,-0.7960742,0.11798501,-0.4501676,-0.20487414,0.34456795,0.20323507,0.15194973,0.08294109,0.061493047,0.27836525,-0.33599937,0.087010585,0.0428245,-0.2094342,0.40566108,0.3736624,0.43965337,-0.4736431,0.47413686,-0.026444813,-0.3068179,0.2756922,0.24541026,0.5326336,0.28818116,0.2737268,0.27639848,-0.3754881,0.31797716,0.69733745,0.20252196,0.49536562,0.13005875,-0.0904965,0.2932512,0.1605477,0.07833343,0.15339755,-0.367357,-0.0738357,-0.061373755,0.24169856,0.56070966,0.15575226,0.26169956,-0.14194092,-0.44011614,-0.03572618,0.23500364,0.13572666,-1.2261208,0.38473347,0.21023147,0.70700115,0.35939312,0.032347776,-0.13366447,0.5542258,-0.072302744,0.14098863,0.40524918,-0.06606483,-0.6088892,0.48799583,-0.6895231,0.40633774,0.0006258442,-0.04383209,0.1700715,0.11173526,0.3086719,1.0538176,-0.11464803,0.030253913,0.09571551,-0.26565057,0.106784195,-0.42852995,0.11378842,-0.57249016,-0.27767578,0.59822965,0.39871693,0.24068475,-0.23473631,0.04395277,0.1020868,-0.15190437,0.10174997,0.043543916,0.21548778,0.01536936,-0.70088035,-0.26355,0.61239237,-0.13987309,0.13882264,0.10950499,-0.1501722,0.3723162,-0.2983708,-0.09198051,0.06836519,-0.7408849,-0.061809078,-0.27935582,-0.38363,0.49366787,-0.17753047,0.38085926,0.15250562,0.020682981,-0.36847666,0.52079195,0.20088822,0.70276845,-0.14129485,-0.2739228,-0.4639772,0.1943282,0.24954136,-0.2140309,0.05080668,-0.21171682,-0.18195912,-0.57283974,0.403918,0.19320315,-0.18491855,-0.08187572,-0.096114404,0.1442312,0.524983,-0.06796372,-0.0797006,-0.13929422,-0.15011314,-0.24410091,-0.19329461,-0.026434751,0.27647105,0.26748732,-0.20203355,-0.050822716,-0.013987541,0.09710041,0.30494773,-0.091165766,0.46823502,0.3412894,0.39700383,0.07997312,-0.25258183,0.40098888,0.411384,0.112718455,-0.12733212,-0.26433548,-0.3148726,-0.37799314,-0.13224968,-0.1351977,0.4420734,0.08090015,-0.33238217,0.7136665,0.04915033,1.1784856,-0.02444624,-0.37541956,0.010735732,0.34626624,0.010935879,-0.07665756,-0.31352285,0.99246174,0.64468354,0.13045299,-0.16778898,-0.24150452,-0.2464576,0.17747028,-0.32683218,-0.33184546,0.09739256,-0.55609876,-0.27218392,0.23529068,0.14172693,0.30863872,-0.028286012,0.31503537,0.3116255,0.030525547,0.18336064,-0.4913936,-0.045246575,0.26392344,0.4901516,0.0659703,0.20857008,-0.44872564,0.39746433,-0.47819936,0.13953243,-0.18307152,0.21488787,-0.1373623,-0.4839548,0.2394478,0.13384336,0.43140417,-0.3127248,-0.36166483,-0.31977382,0.5587156,0.1049947,0.028758626,0.6148423,-0.2666024,0.044270165,0.054089885,0.5167029,1.07854,-0.15353003,-0.16868089,0.43793187,-0.5690318,-0.8383777,0.39129046,-0.10870823,0.35018173,-0.13638419,-0.086285844,-0.56029004,0.31278288,0.11505081,-0.07033083,-0.00037160746,-0.44386667,-0.3530666,0.21507232,-0.34134722,-0.31607148,-0.3004515,0.28792495,0.68398416,-0.3917518,-0.35277116,0.17752916,0.17549832,-0.112731986,-0.44625917,-0.2442492,-0.39678398,0.30114788,-0.0006847198,-0.38063306,-0.1552468,-0.045093272,-0.30010983,0.2671684,0.09690123,-0.38319686,0.22287062,-0.18915822,-0.31244186,0.90952015,-0.22635767,0.040596724,-0.57509464,-0.44045755,-0.7710918,-0.5700233,0.5084023,0.059992455,-0.07382962,-0.6150194,0.05629986,0.009239467,-0.20720442,-0.058966205,-0.3810209,0.36520463,0.04220206,0.24764313,-0.11965583,-0.9148398,0.16642621,0.23391843,-0.15270866,-0.919814,0.5478264,-0.2331174,1.0121592,0.018034546,0.18301322,0.56445,-0.40265766,-0.3647575,-0.2471514,-0.14981729,-0.6080591,0.15381703,903 +768,0.3814673,0.062906615,-0.51841414,-0.14141974,-0.20062743,-0.02283134,-0.05713276,0.5006672,0.327463,-0.4215233,-0.2985853,-0.10822652,-0.031863328,0.21698533,-0.084245495,-0.71385455,0.058425207,0.20570771,-0.4856322,0.5104383,-0.42644662,0.45188782,-0.049141094,0.34749812,-0.019251855,0.32044685,-0.07586132,-0.2204442,-0.13397726,-0.15118122,-0.2340562,0.3658495,-0.42780846,0.24478434,-0.095954105,-0.28121144,0.02776913,-0.37035692,-0.46531126,-0.75065064,0.34259313,-0.72967273,0.5077722,0.035100803,-0.23913607,0.024426881,0.051228836,0.3883416,-0.12755398,0.022221029,0.060677543,-0.065334804,-0.14640734,-0.2602728,-0.40088606,-0.26881886,-0.4578207,-0.04789236,-0.27316058,-0.09658722,-0.27415365,0.21308938,-0.31424236,0.009775137,-0.15776531,0.5175861,-0.42878163,0.3341697,0.22278121,-0.10639409,0.15736455,-0.5753877,0.010034836,-0.12714781,0.33949506,-0.28402308,-0.27688286,0.3465679,0.271972,0.46003377,0.034476105,-0.21540605,-0.29991052,-0.21184275,0.022367248,0.53114235,-0.2875324,-0.56935537,-0.038794316,0.13091747,0.08315475,0.39723247,-0.06916392,-0.22090465,-0.1332518,-0.03653725,-0.21251263,0.3483836,0.5875179,-0.06443757,-0.38339466,0.38060838,0.44425446,-0.042261302,-0.04334604,0.008138565,-0.034102768,-0.49673468,-0.22162507,0.02677044,-0.23691794,0.41323382,-0.16404067,0.20801279,0.6271719,-0.15110329,-0.16794108,0.1546873,0.041042108,0.12622264,-0.3471362,-0.1628388,0.12323059,-0.49299586,0.2633311,-0.07669612,0.8748921,0.20249547,-0.7382596,0.29336563,-0.55327076,0.07750359,-0.08966594,0.4662657,0.5385692,0.42872557,0.33704,0.691434,-0.39464384,0.1533837,-0.119507775,-0.47338766,-0.14434715,0.084852114,-0.021119293,-0.3822149,0.12429115,0.014008494,-0.22254053,0.22084998,0.27271992,-0.655815,0.008197426,0.009879296,0.90399414,-0.36691713,-0.23918924,0.7790171,0.77232367,0.8159972,-0.02645697,1.2586515,0.22789611,-0.29708257,0.36118263,-0.5217499,-0.759367,0.36444885,0.22468391,-0.37090948,0.09766698,0.07137884,-0.035073,0.1748027,-0.41207308,-0.14324169,-0.2897911,0.3013992,0.13948172,-0.06189337,-0.40842226,-0.2809049,-0.21977735,-0.07189925,0.295634,0.23234934,-0.22846593,0.32904482,-0.018751265,1.4980052,0.05518401,0.059659775,0.12856828,0.4144785,0.25187638,-0.014829709,-0.2235685,0.5037133,0.21875358,-0.03721195,-0.63785934,0.054317575,-0.31336117,-0.28067273,-0.07087641,-0.2733587,-0.024203297,0.027734088,-0.28479493,-0.31135383,-0.2938796,-0.2677673,0.60933787,-2.5900805,-0.16514198,0.034386136,0.48904622,-0.34646577,-0.4069867,-0.16585915,-0.6331471,0.37805086,0.16444565,0.55995214,-0.63753563,0.3721429,0.44251028,-0.54422146,-0.17840211,-0.5714522,-0.004283474,0.10579167,0.14143999,-0.11978546,0.014910304,-0.14527209,-0.25194716,0.4575538,-0.034852352,0.107498884,0.53949845,0.4293211,0.19656219,0.3345985,-0.082529016,0.6563435,-0.28519937,-0.1517621,0.21317345,-0.42509305,0.31288412,-0.18462881,-0.011751785,0.52969897,-0.5768317,-0.7656799,-0.691879,-0.3393697,1.00859,-0.11621543,-0.20893504,0.30350274,-0.3990317,-0.29044485,-0.11107417,0.51955575,-0.094578184,-0.11066547,-0.6736755,-0.0641257,-0.11936991,0.31086123,0.013585732,0.005356408,-0.2656859,0.5750051,-0.24930246,0.34970134,0.112846605,0.16773437,-0.42456877,-0.5747494,-0.03890942,0.8982585,0.3441472,0.24942812,-0.09251615,-0.3096064,-0.36530113,-0.2504881,0.036689974,0.7561526,0.80234826,-0.09597126,-0.049326167,0.3645562,0.05322593,0.06616478,-0.24689649,-0.25224596,-0.19567622,0.03740186,0.47478196,0.34892786,-0.2938852,0.5619406,0.01211588,0.4229357,-0.18514243,-0.3380341,0.3337789,1.0934854,-0.18258436,-0.35066617,0.6299607,0.20569786,-0.27715585,0.41479158,-0.5101647,-0.28496653,0.43393177,-0.2239557,-0.5499004,0.10119363,-0.15874705,0.09640638,-0.7692139,0.3179379,-0.2888351,-0.8111342,-0.42964175,0.06519563,-2.7111914,0.11828233,-0.25596973,-0.13341606,-0.04352277,-0.10282559,-0.19876997,-0.31299752,-0.60327286,0.29189152,0.12340326,0.5660581,-0.21172954,0.22752358,-0.04933874,-0.09223577,-0.421457,0.1741771,0.27648103,0.29378474,-0.04969029,-0.44302055,-0.028415803,0.067998976,-0.48956606,0.31220216,-0.63831073,-0.4251529,-0.12653798,-0.7905748,-0.20354953,0.72051406,-0.46320283,0.026892098,-0.26610672,0.010668452,-0.15523073,0.28325644,-0.07173823,0.19884263,0.07058024,-0.19805798,-0.021490455,-0.22858873,0.463642,-0.0017874837,0.43217924,0.22586188,0.0040343357,0.118956104,0.44332978,0.64149606,0.080515474,0.76825625,0.46590665,-0.094825774,0.32162946,-0.26561007,-0.31363103,-0.38533685,-0.26659173,0.039302807,-0.4606511,-0.32470828,-0.12451018,-0.5212577,-0.7890826,0.35884187,0.10320819,0.018659042,0.07351588,0.33822423,0.5232947,-0.04874015,0.10712286,-0.074251145,-0.07775961,-0.56119007,-0.24352802,-0.48973158,-0.36424506,0.33661225,0.9486768,-0.29004204,0.03888254,-0.14880411,-0.122406214,-0.14688136,0.19705266,-0.053901415,0.24676195,0.48270628,-0.32187927,-0.45912963,0.36382622,-0.0533048,-0.25715032,-0.5594217,0.25037703,0.6447698,-0.781412,0.70020765,0.23810603,-0.025049258,-0.023960825,-0.49015805,-0.36391765,-0.019379687,-0.24805737,0.28361413,0.24148777,-0.644379,0.33508906,0.36878803,-0.16321722,-0.83352405,0.4477803,-0.027129184,-0.4071342,0.0027696078,0.42141885,0.09024009,-0.05842062,-0.25557625,0.104018465,-0.18856548,0.20385228,0.16879252,-0.09680299,0.20139764,-0.35717678,-0.22184673,-0.9198283,0.05070194,-0.56787735,-0.20934187,0.30629966,0.14286293,0.056110676,0.13730717,0.188788,0.43999326,-0.33173588,0.063665375,-0.14613412,-0.30173016,0.29247972,0.34948972,0.4317902,-0.44236463,0.4299034,0.0071934415,-0.09264032,0.036097363,0.1851189,0.51607424,-0.13850345,0.44397575,0.19668,-0.28770158,0.2732774,0.8373651,0.20716517,0.3338761,0.048962116,0.10122771,0.1891165,0.041963197,0.10505768,0.17053328,-0.51017666,-0.1246626,-0.22014776,0.11470766,0.522663,0.32396466,0.22161815,-0.002649807,-0.4026779,-0.11831559,0.25161836,0.031216292,-0.9583773,0.42929128,0.1268314,0.84134746,0.39885888,0.124591365,-0.009446818,0.52147037,0.03941953,0.27978098,0.27462712,-0.18278407,-0.43243223,0.39104718,-0.65305096,0.55093265,0.013819016,-0.0052907295,0.07628837,-0.06772722,0.33092433,1.0643324,-0.13977972,0.017235288,-0.012892737,-0.1639437,0.20463601,-0.4913266,0.00013392247,-0.6700452,-0.308613,0.59324163,0.39066437,0.25410488,-0.05371546,-0.025842201,0.17866684,0.010390452,0.057986658,0.068346694,0.1287579,0.014567022,-0.4980157,-0.25727496,0.6271085,-0.0053845462,0.13510606,0.0812249,0.12177165,0.40649244,-0.1685056,-0.039529048,-0.11928547,-0.65032345,-0.01371314,-0.20755188,-0.29645243,0.19937855,-0.047207475,0.2319029,0.22998068,0.110005125,-0.47268915,0.38831836,0.2620546,0.7529831,-0.0406265,-0.17749152,-0.3687234,0.25470325,0.20143965,-0.24928233,0.17891055,-0.236722,-0.16141978,-0.7040848,0.50119126,-0.026633663,-0.37244767,0.07144504,-0.15930066,-0.059044525,0.4126221,-0.11701722,-0.11020335,0.087766096,-0.24090584,-0.30617076,-0.06353971,-0.16990052,0.180526,0.4469879,-0.11660138,-0.08936819,-0.16333672,-0.20604159,0.46930045,-0.0667374,0.3357945,0.19647385,0.23971604,-0.19570777,-0.12974606,0.1766393,0.61546034,-0.06894694,0.15444763,-0.058964465,-0.28676796,-0.25148982,0.13191582,-0.032198425,0.44154456,0.08016389,-0.36132473,0.6103697,0.08479501,1.0933862,0.045635503,-0.19994357,0.012319551,0.41393483,0.085838884,-0.051219422,-0.32414654,1.099649,0.4773008,-0.043047883,-0.09198561,-0.3523501,0.048685256,0.114555754,-0.07736582,-0.15028879,0.12627168,-0.46845546,-0.36060983,0.2592755,0.19421746,0.15786396,-0.014941573,0.043508057,0.22820646,-0.03871941,0.19347483,-0.47520095,-0.04188371,0.24980766,0.20506321,0.21371382,0.2270411,-0.47737783,0.3879597,-0.45344603,0.12419235,-0.1405654,0.2326157,-0.26025242,-0.32041502,0.2532453,-0.03138622,0.34225732,-0.27662557,-0.3624905,-0.3536,0.516092,0.16212688,0.14090763,0.5554694,-0.14967799,-0.012462282,0.050781514,0.6169723,0.87955374,-0.07316243,0.015830802,0.3569587,-0.37682182,-0.5418834,0.3794271,-0.18291084,-0.13144487,0.046811506,-0.14465627,-0.3955221,0.31139782,0.13687025,0.18525933,0.17313704,-0.5504579,-0.08853948,0.26177335,-0.3402244,-0.19035424,-0.36630514,0.4026903,0.8351524,-0.18603882,-0.188526,0.2375109,0.0013940334,-0.33725706,-0.5885835,-0.0865798,-0.30532214,0.25803515,0.037324097,-0.20906195,-0.2885005,0.041430257,-0.36323068,0.13185307,0.10834748,-0.27690837,0.1304496,-0.23115815,-0.24448362,0.7821875,-0.21313286,0.06781529,-0.5016743,-0.30663437,-0.7665118,-0.2867104,0.394542,0.20852995,-0.015271342,-0.7183911,-0.20212331,0.017147716,-0.27459285,-0.03083593,-0.3323831,0.4239136,0.13239841,0.3088494,-0.17460635,-1.0614101,0.2007213,0.2011453,-0.2718046,-0.6472664,0.37753862,-0.053395733,0.89131206,0.07136813,0.04597638,0.44439596,-0.37745878,-0.08294874,-0.22603191,-0.102572985,-0.75197375,0.032000616,905 +769,0.64875436,0.020265441,-0.28925794,-0.2736715,-0.24582277,0.12999552,-0.31390685,0.38258302,0.012548795,-0.6389298,-0.2467684,-0.17362037,-0.078177914,0.2434144,-0.2011494,-0.9894396,0.24928845,0.241258,-0.28781265,0.4064345,-0.652942,0.48392507,-0.16324168,0.362031,0.080419466,0.08666763,0.27188066,-0.11734977,-0.11475118,-0.25103053,0.07276354,-0.029717756,-0.50627816,0.12754749,0.15364623,-0.38937744,0.21661319,-0.25469717,-0.19284955,-0.7598,0.15569445,-0.7175257,0.6015405,0.107802354,-0.30493498,0.047368314,0.18073137,0.1272687,-0.16133401,0.4056163,0.2058433,-0.073453374,-0.05605261,-0.31782252,-0.13526572,-0.77123886,-0.4884874,0.056646697,-0.25060707,-0.17784339,-0.28068718,0.2644202,-0.22240904,0.041817132,-0.07744014,0.23150858,-0.44827086,-0.17663068,0.06841439,-0.21150248,0.24248838,-0.7589335,-0.32645556,-0.28576887,0.19526687,-0.03372904,-0.15944465,0.1308158,0.42401823,0.59405494,-0.008053752,-0.054514185,-0.090961106,-0.24121363,0.30453035,0.596784,-0.4188407,-0.5795464,-0.2074597,-0.29360807,0.22872931,0.16155003,0.18611544,-0.45260298,0.100293145,-0.014703012,-0.513645,0.23499472,0.60187316,-0.6745501,0.14079127,0.14810498,0.3353391,0.120193966,-0.052869048,0.23861977,-0.028898653,-0.567405,-0.27609587,0.12715451,-0.11377572,0.6045028,-0.19598016,0.040756684,0.41681355,-0.30619627,0.25777242,-0.051334407,-0.0407955,0.16657315,-0.30748823,-0.40155938,0.25739366,-0.36612046,0.0699742,-0.46184114,1.0437105,0.18253864,-0.5182696,0.39191136,-0.50995547,0.12883195,-0.12568791,0.49394864,0.50838816,0.3926495,0.108451515,0.6801067,-0.4095095,-0.11713655,-0.004370146,-0.04606426,-0.040296797,0.057277855,-0.16305314,-0.25157496,0.32998616,0.03614193,0.06558792,0.028519949,0.7146213,-0.3941369,0.069969915,0.2948259,0.86689633,-0.4402961,0.09333205,0.59980613,1.1263257,0.87755054,0.14115237,1.2556707,0.48295277,-0.13529834,-0.016515883,-0.017449535,-0.56515884,0.19423954,0.3991893,0.24743487,-0.016382337,0.20784079,-0.11580992,0.5677176,-0.53544366,0.08332124,-0.28667867,0.556588,0.07283567,-0.1876506,-0.32789218,-0.044429474,0.12836716,-0.15989031,-0.004926269,0.30393416,-0.3904198,0.1381788,0.020138323,1.1292012,-0.076020114,0.16272007,0.04651207,0.4698636,0.26961592,-0.0033727884,0.21526836,0.29534572,0.2864419,-0.13110612,-0.56652635,0.082876086,-0.2008691,-0.66755736,-0.2589852,-0.113365225,-0.0628311,0.20921366,-0.3944837,-0.19434272,0.14745435,-0.16489209,0.43286258,-2.0764062,-0.21922453,-0.18020783,0.36841652,-0.17370412,-0.43791363,-0.011508112,-0.38647667,0.6735396,0.4143345,0.29685482,-0.606869,0.5114929,0.52051425,-0.2571194,-0.17482154,-0.7514312,-0.09011333,-0.010923742,0.3163492,-0.03159132,-0.22931641,-0.20725435,0.22656973,0.54032797,-0.15334703,0.21212648,0.2232618,0.24248382,0.17076054,0.2831245,0.023697706,0.596721,-0.14520049,-0.19973148,0.2676228,-0.4405518,0.0795775,0.018138152,0.16077974,0.21569446,-0.60279995,-0.6935284,-0.9705724,-0.5951085,1.1414701,-0.10721874,-0.49264562,0.29609343,-0.03716207,-0.29012802,-0.042945173,0.41914096,-0.21163265,-0.07589042,-0.7419439,0.08469233,-0.08711782,0.3833962,0.07984397,0.05154862,-0.385634,0.8202535,-0.25033844,0.33514807,0.4710248,0.1977924,-0.28297612,-0.51399,-0.17872326,1.1889087,0.44506022,0.2332142,-0.16397533,-0.109832495,-0.32499593,0.081506014,-0.009710296,0.588161,0.7221542,-0.019445103,-0.0054811183,0.16117099,-0.058719154,0.036835466,-0.11021519,-0.53378737,-0.077892184,0.1074115,0.6534356,0.34067,-0.1902101,0.35151476,-0.23543121,0.36169797,-0.45547214,-0.22722226,0.5015585,0.9391613,-0.15369593,-0.12110991,0.762,0.5039744,-0.36315697,0.45341477,-0.7424136,-0.3440401,0.4272916,-0.1647355,-0.3160846,0.1622598,-0.5183632,0.13342501,-0.87185985,0.5024491,-0.4617604,-0.49696118,-0.6647732,-0.25114867,-3.8428004,0.30723295,-0.07771872,-0.11718849,0.023163516,-0.21318826,0.5653974,-0.40875947,-0.47413668,0.20163567,0.040413138,0.4719784,0.00804246,0.1959394,-0.35742947,-0.26684955,-0.31935266,0.1894481,0.035375245,0.2492592,0.102017,-0.4079947,0.23252527,-0.15246965,-0.24521941,0.092077985,-0.61994755,-0.5367361,-0.15016836,-0.41741973,-0.28256828,0.639993,-0.6967325,0.16121219,-0.40371993,0.022842344,-0.42954063,0.35942462,0.08422398,0.22999851,-0.18683611,-0.14280814,-0.28051788,-0.43521398,0.26567218,0.30932763,0.08884551,0.4161238,-0.12404156,-0.1011157,0.4131524,0.44757998,0.19283986,0.8516234,0.41799226,-0.09565498,0.40714204,-0.35163754,-0.23811802,-0.340857,-0.4520648,-0.19490427,-0.39820564,-0.48569605,-0.1482932,-0.28608662,-0.78273046,0.38907558,-0.119445324,-0.02228989,0.22464758,0.25778422,0.09544758,0.00020925816,-0.032147042,-0.0127468845,-0.01128168,-0.46708542,-0.32727462,-0.65352064,-0.35426432,0.23941776,0.9209181,-0.06670632,-0.012955813,0.19469163,-0.13970013,0.10431829,0.05390667,0.24187732,0.016847987,0.27490354,0.047311697,-0.8149346,0.3099454,-0.043588974,-0.252861,-0.6891309,0.21977851,0.8597812,-0.81442,0.5207586,0.38806745,0.19136246,0.09848487,-0.6032969,-0.36193207,0.13162822,-0.46945733,0.3970717,0.16452214,-0.8819863,0.46022475,0.3820998,0.04395141,-0.7861065,0.52517444,-0.056962784,-0.5107547,0.06835452,0.43072632,0.20023766,0.016526511,-0.24019442,0.3232991,-0.53135306,0.25516975,0.3323654,0.005502647,0.46581003,-0.31165978,-0.22540879,-0.80741763,-0.113411196,-0.6708677,-0.40782115,0.074811384,0.16281031,-0.034102052,0.40085417,0.19528484,0.48394746,-0.3525976,0.23912199,-0.11439563,-0.20151544,0.37521428,0.4273378,0.36959344,-0.26279712,0.6345471,-0.059179123,0.037928298,-0.26930445,0.1758909,0.35697952,0.032676477,0.38295114,-0.11094833,-0.042120613,0.30133474,0.7292923,0.19901496,0.5280952,0.20936564,-0.2074879,0.4248954,0.17380275,0.05131513,0.2213383,-0.45201316,-0.20307149,0.17365725,0.14129163,0.49692738,0.15421651,0.36008006,-0.2123978,-0.30064148,0.030096225,0.22423628,-0.04144354,-0.98485035,0.3066962,-0.028568331,0.66970783,0.8431893,-0.10125283,-0.028917097,0.48291963,-0.25302646,-0.09696604,0.16421655,-0.011989046,-0.36456558,0.3349076,-0.4624926,0.0837713,-0.38587424,0.117274776,-0.029338956,-0.0118460655,0.3792817,0.76933616,-0.006043065,0.14354931,0.12968706,-0.32343307,0.0656103,-0.28149793,-0.026815264,-0.5901937,-0.20707376,0.6524799,0.36145547,0.28279966,-0.29073778,0.013950891,0.09983897,-0.25338206,0.07542395,-0.00037033283,0.008318406,-0.18264112,-0.68478453,-0.43632352,0.6260194,-0.033191103,-0.07036435,0.22325942,-0.41037273,0.22546722,-0.11132686,0.11448535,0.13968505,-0.49641302,-0.005194508,-0.42882076,-0.36240867,0.249171,-0.09471769,0.18302038,0.22061592,0.12729003,-0.17391348,0.31754827,0.32168463,0.6107214,0.11973568,-0.24995266,-0.39478686,0.022486357,0.09220692,-0.22501312,-0.011031169,-0.3024902,0.06397386,-0.8200118,0.4759944,-0.09906112,-0.023668047,0.25018018,-0.12627338,-0.22165808,0.5183491,-0.26924798,-0.01904782,0.40385726,-0.15042713,-0.19898735,0.021058768,-0.22412711,0.21818858,-0.11551973,-0.020826403,-0.037145417,-0.2028798,-0.02227024,0.370647,0.11361347,0.19950086,0.6670016,0.09096129,-0.25447047,-0.17357925,-0.19056822,0.64299804,-0.14181556,0.09395434,0.0056221667,-0.8356333,-0.36101687,0.016426425,-0.26922095,0.15527678,0.08874615,-0.5209909,0.85657,0.21107146,1.212393,-0.04918212,-0.42754757,-0.14274469,0.615448,-0.14936016,0.13233724,-0.49099413,1.0725137,0.65546477,-0.2641671,-0.1286113,-0.24999817,-0.25719863,0.19981828,-0.21238524,-0.14213333,-0.026563952,-0.6795937,-0.3052383,0.08801662,0.33513314,-0.13823552,0.15623412,0.22140187,0.18046738,0.10742945,0.3423562,-0.59336096,0.10167311,0.3030954,0.33265263,-0.0044516004,0.11608637,-0.15974793,0.2585027,-0.7782565,-0.018580753,-0.4987777,0.009945126,-0.08677326,-0.30194905,0.19111712,0.23188779,0.18112113,-0.36855978,-0.1959103,0.010280586,0.6030474,0.035458382,0.23269749,0.54872316,-0.17823216,0.097115725,0.026282083,0.5376241,1.4433757,0.015502008,-0.12829106,0.3258774,-0.5129699,-0.7218271,0.23673582,-0.51587486,-0.021712514,-0.069665894,-0.5115693,-0.5546285,0.40793464,0.26723683,-0.1451858,0.03735608,-0.51770854,-0.24007908,0.3950402,-0.22853248,-0.3855987,-0.17364533,0.31254476,0.74424875,-0.50946605,-0.20560786,-0.14947885,0.45957857,-0.4691637,-0.78858054,-0.02790295,-0.46220785,0.5434219,0.41114756,-0.26603007,-0.10531605,-0.058205064,-0.39876464,-0.12142809,0.24022835,-0.46202967,0.19241406,-0.37898195,-0.037817605,0.75098187,0.061446276,0.06449394,-0.6244366,-0.64128184,-0.91731966,-0.45420885,0.6596838,0.3182873,0.00028245265,-0.51124567,-0.07563556,-0.13548979,-0.025742462,0.15588944,-0.25726277,0.58219254,0.21427168,0.682908,0.042150773,-0.74586225,-0.15757391,0.3058198,-0.30993706,-0.6611383,0.44859555,-0.20885475,1.1170766,0.042739954,-0.050921135,0.08915443,-0.5262651,0.35319504,-0.39160407,-0.32697004,-0.6855649,0.20797484,910 +770,0.23416077,-0.061994188,-0.6554382,-0.12728342,-0.3085221,0.21592313,-0.14307345,0.40491003,0.2570133,-0.28491342,-0.07390972,0.025698157,-0.0043242825,0.49690282,-0.13585685,-0.61502844,0.067196116,0.08697988,-0.3791801,0.35917658,-0.397645,0.3316971,-0.08781651,0.45632565,-0.007273197,0.26948056,0.037197348,0.02100974,-0.06015075,0.12766717,-0.12646806,0.6117268,-0.44014058,0.19178857,0.07188536,-0.30829242,0.019886484,-0.28501213,-0.44145057,-0.59412867,0.38976824,-0.79615176,0.5328122,0.055333808,-0.39458486,0.11724827,0.003273322,0.22805251,-0.3959595,0.048049226,0.21098804,-0.31745183,-0.09336933,-0.21213017,-0.3526669,-0.53703886,-0.57978666,-0.050927408,-0.5585546,-0.11914666,-0.30454746,0.23023854,-0.18819141,0.019595928,-0.22460607,0.17786294,-0.4568211,0.0553088,0.39029628,-0.28202194,0.06900745,-0.38943222,-0.10987818,-0.068087585,0.28204912,-0.045511365,-0.15786067,0.1534017,0.38854307,0.5571235,-0.0443422,-0.26877645,-0.44534147,-0.02987494,0.10124348,0.5076255,-0.11606283,-0.26086167,-0.213039,-0.032249514,0.1889191,0.20216878,-0.06392212,-0.3292996,-0.0082589835,0.016853146,-0.16481942,0.25700128,0.37375128,-0.43881485,-0.20327242,0.48183754,0.4840035,0.16946165,-0.1659643,0.13333711,0.06572035,-0.53277785,-0.21317975,0.05428441,-0.07832551,0.6323831,-0.019544354,0.19675389,0.6950757,0.07760833,-0.11427113,-0.16681267,-0.07456322,-0.039475977,-0.25135633,0.05317233,0.0632791,-0.3020744,0.1771589,-0.032731626,0.5716137,0.102455124,-0.6925612,0.39234585,-0.4631512,0.1096273,-0.11722152,0.5675412,0.7258918,0.39491814,0.14974712,0.91037714,-0.62356275,-0.05318696,-0.0743352,-0.42947575,0.11765324,-0.033569213,-0.009485809,-0.49522063,0.09209268,0.050384063,-0.0758088,0.1326522,0.295523,-0.31981122,0.010023222,0.073884405,0.6348801,-0.43136165,-0.1813897,0.61085737,1.0119764,0.85214204,0.026709804,1.266289,0.30350372,-0.00603508,0.037797105,-0.36347806,-0.57436985,0.132018,0.31649393,0.07418576,0.34171438,0.25090045,0.1389522,0.60846674,-0.07581043,0.061322965,-0.024815917,0.19786717,0.110739775,0.011013682,-0.4181137,-0.21092899,0.1272048,0.24428853,0.015253535,0.13548762,-0.14056522,0.34727895,0.15996996,1.5082917,0.00089673814,0.04721891,0.019087378,0.26769254,0.251432,-0.0643224,-0.18277934,0.27625805,0.34026605,-0.019225027,-0.42997605,0.105135985,-0.21526727,-0.40110344,-0.15633205,-0.22970806,-0.10554393,-0.1907174,-0.6094085,0.043304734,0.051826913,-0.2895115,0.60401255,-2.667966,-0.32324883,-0.20013149,0.32879475,-0.11508478,-0.3723027,-0.33087793,-0.34212697,0.26779526,0.38322374,0.32665217,-0.60132426,0.50922406,0.310533,-0.34561047,-0.11449497,-0.5934629,0.062613435,-0.10766531,0.32470343,0.15571219,-0.13328184,-0.14820778,0.28825933,0.68277466,-0.17765747,-0.10938756,0.21070692,0.50308764,-0.12432386,0.6188487,-0.087173775,0.6201769,-0.18669073,-0.21565653,0.40552637,-0.4180362,0.53016204,0.011552141,0.15936305,0.30465963,-0.29055592,-0.9037496,-0.58107984,-0.32208368,1.2349029,-0.30508846,-0.20717405,0.27776617,-0.38996178,-0.32135957,0.048882768,0.46056944,-0.029340914,0.025934,-0.75567627,-0.016663369,-0.21068665,0.07833391,-0.057930812,0.05681088,-0.26308843,0.72252023,-0.17863351,0.489246,0.5098028,0.13871789,0.085653946,-0.2949905,0.0076664113,0.71924007,0.40605348,0.15167704,-0.2501364,-0.28998896,-0.05784971,-0.03223646,0.12634234,0.57758987,0.47943237,0.035679743,0.07073595,0.26530245,-0.038603928,-0.17882262,-0.22862795,-0.24416715,0.09446711,0.16247836,0.5146334,0.9374541,-0.24485458,0.18688999,-0.16313706,0.11007186,-0.09209363,-0.54349446,0.34709483,0.62628937,-0.10254535,-0.24084865,0.61690557,0.46694726,-0.29967517,0.24786195,-0.5769889,-0.25237718,0.56373715,-0.15732005,-0.34436873,0.118897825,-0.373507,-0.13085721,-0.84228814,0.25209266,0.020144416,-0.5857797,-0.3871329,-0.16346046,-4.3036804,0.18255943,-0.19823432,-0.019740045,0.03139537,-0.072198875,0.35195228,-0.656839,-0.57226,0.12348815,0.087409936,0.39576927,-0.10550495,0.08140759,-0.37078002,-0.13590299,0.121154696,0.25108498,0.06496358,0.26408705,0.092390224,-0.46010223,-0.02217134,-0.40150994,-0.5150561,0.026270907,-0.638753,-0.36546496,-0.05449377,-0.4899264,-0.21078682,0.6853589,-0.5689971,-0.0671547,-0.30823892,0.1286264,-0.3329471,0.31754825,0.08310689,0.19903544,0.11215002,0.031090917,-0.14836748,-0.3489451,0.24159311,0.038412943,0.3055843,0.33440542,-0.09261762,0.17293984,0.68071485,0.62956583,-0.17742588,0.82097405,0.4350643,-0.0687018,0.20701891,-0.18721852,-0.22338563,-0.6665542,-0.53437936,-0.19476032,-0.4722614,-0.39882258,-0.12593627,-0.31250018,-0.79258156,0.44301572,0.065985866,0.0674222,-0.111911625,0.0355435,0.42897135,-0.40988106,0.024873588,-0.06782372,-0.2521032,-0.63137066,-0.49998617,-0.50024533,-0.6644963,0.17022575,1.1412978,-0.22104883,-0.010290593,-0.006796266,-0.34169355,-0.099888764,0.2370488,0.21946353,0.06582865,0.4264486,-0.16754714,-0.6481886,0.29852608,-0.29706222,-0.098511405,-0.606908,-0.08332797,0.63863385,-0.49728018,0.68715954,0.41378725,0.19329016,0.37029237,-0.6012388,-0.4978652,-0.039323248,-0.2046267,0.47974902,0.21829627,-0.702189,0.4230345,0.21349168,-0.21723725,-0.55172104,0.47118613,-0.18348886,-0.13984159,0.062432233,0.3276532,0.094675176,-0.07931498,0.0039004546,0.23033181,-0.3632118,0.31342417,0.34941864,-0.07039731,0.22455853,0.011891956,0.04020581,-0.6959296,-0.2848596,-0.32021955,-0.21968955,0.059991397,-0.016756188,0.06164916,-0.22007516,0.052822452,0.39700133,-0.4412786,0.09778741,-0.066750534,-0.2985172,0.220677,0.5040427,0.3496946,-0.3972022,0.50382245,0.08983498,0.1629584,-0.0553224,0.06512805,0.5088139,0.040757455,0.47072765,-0.20328686,-0.023709297,0.19590065,0.7528331,0.13151175,0.34605753,0.052655533,-0.2580565,0.34299976,0.18221428,0.10404645,-0.15216161,-0.27073333,0.19989647,-0.2512603,0.26217258,0.4807739,0.23877338,0.40998003,-0.14574978,-0.2268348,0.23038483,0.17833886,0.068407565,-1.0196689,0.31504232,0.1873158,0.6922217,0.3476944,0.1472722,0.101921946,0.48983324,-0.32169276,0.00059135375,0.49664184,-0.10536324,-0.51510173,0.43040422,-0.65574116,0.41456133,-0.18049134,-0.056296356,0.3233444,0.27779165,0.33626688,0.75769264,-0.058435135,0.00064635504,0.025428824,-0.2637782,-0.06258564,-0.30479577,0.05541298,-0.60635304,-0.3483463,0.5757536,0.77826256,0.40908575,-0.31238258,-0.106623724,0.096618846,-0.053278677,0.05257904,-0.24329111,-0.033140328,-0.07157768,-0.7076928,-0.123810135,0.5275551,0.11472754,0.022375057,-0.07747905,-0.38895658,0.37922928,-0.2416688,-0.12837254,-0.068400875,-0.54938984,-0.09431909,-0.4104461,-0.6510181,0.4127621,-0.38677725,0.32486093,0.19934297,-0.051687654,-0.21094571,0.39628527,-0.0635352,0.99682677,0.10163069,-0.09461068,-0.38753197,0.0627276,0.34735993,-0.1972507,-0.07809133,-0.42361477,0.17092143,-0.50944686,0.30536577,-0.19326662,-0.16208257,0.09259084,-0.24047214,0.17668507,0.5273982,-0.2016322,-0.287472,0.09856244,-0.0146792,-0.27558568,-0.12876667,-0.42779046,0.2823306,-0.13377512,-0.044913907,0.07433252,-0.15623449,-0.10701743,0.19756967,0.17965858,0.19505641,0.3065468,-0.07987707,-0.1782498,0.00018487527,0.050394434,0.50151324,0.14603385,-0.23952958,-0.31698152,-0.41828534,-0.3422858,0.15323125,-0.12710457,0.23186272,0.09229764,-0.27422264,0.7503681,0.16503301,1.2338084,0.2130271,-0.38302964,0.099608816,0.57002056,0.1617155,0.22167921,-0.40657595,0.73776776,0.5555904,-0.120755665,-0.18400048,-0.36240742,-0.14002272,0.13715225,-0.22350408,-0.17040403,-0.066885516,-0.9020503,-0.14731632,0.24708962,0.14070305,0.33300972,0.0104581695,-0.04531368,0.022451542,0.19707553,0.4124913,-0.41057572,-0.12367351,0.38440785,0.37879795,-0.058168486,0.11557121,-0.35870346,0.48152557,-0.53081393,0.040193934,-0.65759873,0.14280826,-0.25836352,-0.18824312,0.17962739,-0.124017246,0.31268597,-0.28937557,-0.25703523,-0.20604119,0.62282246,0.20960167,0.14399998,0.7185996,-0.2626796,-0.28355244,0.08400054,0.50197136,1.005606,-0.48863345,0.12265457,0.5172376,-0.165788,-0.5127968,0.09189104,-0.40118077,0.16844012,-0.080769815,-0.4090546,-0.44455698,0.3507468,-0.015753087,-0.04423555,0.046933915,-0.37990695,0.018167239,0.39686728,-0.2986892,-0.17079121,-0.17369798,0.19440658,0.6273129,-0.39525527,-0.5900025,0.14749435,0.3667625,-0.16308476,-0.49222836,0.1465557,-0.25248465,0.31318313,0.24532166,-0.4216612,-0.08052562,0.2854405,-0.3600613,0.014528362,0.35956976,-0.3505581,0.102593936,-0.30611253,-0.0005434476,1.238854,-0.08868311,0.3014645,-0.6584301,-0.43433028,-0.9344255,-0.2444395,0.3068226,0.17294192,-0.18145816,-0.40238905,-0.07073482,-0.012190869,-0.16167568,-0.042876557,-0.49821413,0.4527663,0.08390299,0.4446355,-0.14259219,-0.7973652,-0.13213243,0.1290036,-0.28010258,-0.39697793,0.57089525,-0.21352936,0.80295664,-0.08284115,0.12463506,0.16881102,-0.5076547,0.20398079,-0.3096774,-0.047304712,-0.7740256,-0.0947281,912 +771,0.13668847,-0.17989771,-0.58713263,0.046026066,-0.10506734,0.15121935,-0.4686609,0.256594,0.22621158,-0.47113067,0.17879318,0.07953688,-0.122851305,0.296719,-0.14236388,-0.7636864,-0.093925826,0.17359349,-0.5121006,0.8175077,-0.4602442,0.1784814,0.009538559,0.3273111,0.032202993,0.14075328,0.15653795,-0.19264592,-0.30570185,-0.12867962,-0.019632697,0.29812258,-0.26890624,0.43326774,0.05834198,-0.23175937,0.12403552,-0.27862334,-0.34626076,-0.81650835,0.26607463,-0.67252505,0.5290577,-0.026641242,-0.32141164,0.22345735,0.308187,0.22430651,-0.09905648,-0.16434506,0.1598302,-0.47114384,-0.6822542,-0.4604651,-0.31414744,-0.6143387,-0.63089085,-0.10183419,-0.64785725,-0.0305143,-0.2119469,0.38248938,-0.35948026,0.017521627,-0.24501108,0.55686474,-0.46466783,-0.06442742,0.11830531,-0.23186061,0.10792998,-0.85810983,-0.1753326,-0.020039538,0.1459125,0.36795843,-0.13023211,0.17426807,0.20873639,0.41981637,0.13585247,-0.3205214,-0.51937294,-0.23178719,0.35809025,0.38859436,-0.26240692,-0.2393786,-0.1845203,-0.123658724,0.29758203,0.14691976,-0.0726543,-0.2769875,0.09831648,-0.085032925,-0.36736166,0.27211335,0.51789945,-0.39390054,0.056067623,0.37591383,0.38792646,0.22082582,-0.33369943,-0.050485298,-0.119145185,-0.48003414,-0.05623734,0.16204812,-0.117578655,0.5046533,-0.1153221,0.29023033,0.35240218,0.04178917,-0.26188308,-0.058846857,0.10284298,0.18246533,-0.2044805,-0.14240237,0.23563954,-0.4362152,0.04974673,-0.36227593,0.71865475,-0.215007,-0.6213007,0.510558,-0.38318747,0.039814793,0.12574531,0.76315665,0.7113819,0.70048344,0.12740313,0.97260326,-0.430799,0.05139478,-0.21655843,-0.22576526,0.19428633,-0.030860106,0.37928993,-0.45524538,0.2358895,-0.08916196,0.008883478,-0.119774394,0.799536,-0.33811328,-0.16287269,0.05799313,0.76297176,-0.2923781,-0.11431912,0.6889748,1.1933255,1.0086765,0.16125153,1.1405078,0.35818723,-0.21261175,-0.3252037,-0.18140276,-0.8154119,0.3080721,0.22896744,0.22918595,0.16859528,0.13264778,-0.002684914,0.67842925,-0.1898982,-0.16768496,-0.20898408,0.40075538,0.006906129,-0.034128897,-0.45803085,-0.20264465,0.27630913,-0.12862046,0.4446063,0.28234065,-0.24285914,0.6445445,0.103626475,1.3787643,-0.32670376,0.1584498,0.16653281,0.24567956,0.18467301,0.12107185,-0.0023372374,0.38171107,0.32736397,-0.062055953,-0.6801281,0.13565212,-0.29361543,-0.54769444,-0.15181574,-0.2046834,-0.1226448,-0.12697722,-0.11639782,-0.356208,0.09379576,-0.47237697,0.20895617,-2.7904017,-0.15927908,-0.11274739,0.07944024,-0.0823362,-0.27524948,-0.089983515,-0.4221149,0.7070947,0.233751,0.46142638,-0.38687786,0.39687645,0.5737963,-0.5858257,-0.18720675,-0.7185346,-0.14601663,-0.17720453,0.56285894,0.022714991,-0.4382156,-0.15892312,0.03036026,0.6471894,-0.15234993,0.17036834,0.432325,0.3734957,-0.108610205,0.363599,-0.051533993,0.6934113,-0.30507186,-0.21374395,0.27875048,-0.36437193,0.38486364,-0.30803522,0.1823561,0.45627645,-0.2640185,-0.5988597,-0.35814413,0.074338004,1.2427298,-0.3926946,-0.66498506,-0.01272426,-0.22880028,-0.18384083,0.21616863,0.5181663,-0.12491916,-0.09147132,-0.67531896,0.011748176,-0.019060062,0.34763166,-0.092941694,0.20474546,-0.51223195,0.6564833,0.040166378,0.65441126,0.54424757,0.25652507,-0.38039196,-0.281139,0.041502394,0.822297,0.21763127,0.13998762,-0.3197091,-0.25193548,0.0051693367,-0.161155,-0.13889006,0.6022567,0.5574207,0.036419347,-0.027026312,0.33570635,-0.36383507,0.031162241,-0.2212082,-0.46103546,-0.27291805,0.15262106,0.50710434,0.56539,0.10194295,0.5302107,0.06854482,0.43027642,-0.21371344,-0.4713958,0.58792007,0.6467567,-0.35297972,-0.19335519,0.69298923,0.51771843,-0.14913127,0.54907125,-0.56301886,-0.38932434,0.39191964,-0.13580321,-0.44031417,0.15538679,-0.44984198,0.080954,-0.8997068,0.052190945,-0.44243973,-0.64162135,-0.8621801,-0.059287097,-3.1782975,0.07161224,-0.22901653,-0.095620565,-0.21305138,-0.10810934,0.21054904,-0.4600921,-0.5464931,0.09253058,0.36516184,0.2628915,-0.19779088,-0.17527731,-0.46714354,-0.18825099,-0.0875879,0.32049134,-0.027810883,0.13632053,-0.13204607,-0.5067489,0.14765443,-0.43516314,-0.14436378,-0.09450455,-0.5279697,-0.16831708,-0.011039012,-0.52110904,-0.370238,0.7165699,-0.6523548,-0.033886813,-0.48380405,0.22961777,0.17982458,0.2618726,-0.13379475,0.23388356,0.25600523,-0.19498524,-0.015456214,-0.24782069,0.14835948,-0.03944164,0.17011306,0.5497707,0.13379437,0.053462245,0.57140106,0.7010324,0.040486313,1.0871545,0.48349607,-0.16576959,0.2205682,-0.3105572,-0.10186366,-0.5749717,-0.12553647,-0.021311196,-0.4697246,-0.4568443,-0.07216811,-0.3188572,-0.78346455,0.70564216,0.19052924,0.060011305,-0.02822119,0.4720654,0.32758448,-0.11924016,0.06880255,-0.21416205,-0.15899302,-0.4425925,-0.40663078,-0.8632754,-0.49315643,-0.066958375,1.0152367,-0.2500396,-0.15294717,0.1677037,-0.47818425,-0.10118217,0.31284252,0.24554788,0.25630924,0.3192032,0.2765985,-0.7231188,0.47676343,-0.13724521,0.09708175,-0.51498795,0.22849727,0.6718419,-0.7252098,0.47490147,0.5136372,0.097316876,-0.10869738,-0.8023061,-0.22612807,0.2966758,-0.15277979,0.5336853,0.35840452,-0.69946617,0.75373256,0.317445,-0.18211725,-0.91142815,0.18022561,-0.24954152,-0.11698271,-0.007629688,0.51956207,0.11979438,0.23486987,-0.24779285,0.07576838,-0.480911,0.2832902,0.0076001287,-0.13961837,0.30563143,-0.20307428,-0.13041945,-0.8648077,-0.028010666,-0.47679046,-0.21245167,0.39835614,0.0951254,0.20194568,0.06639142,0.15691456,0.4170162,-0.3291468,0.12888172,-0.16799265,-0.2133785,0.35578114,0.55817217,0.2192029,-0.44867098,0.57618296,-0.11794118,-0.0020941955,-0.16431867,-0.05002649,0.39583635,0.19710436,0.5130371,-0.12058388,-0.048879977,0.20135999,0.983978,0.18978526,0.367615,0.05745451,-0.27954346,0.34113625,-0.062199276,0.13144125,0.015956145,-0.4111575,-0.18985325,-0.20179392,0.27092797,0.5160352,0.20419621,0.6564777,-0.11103185,-0.15256865,-0.047252174,0.14945203,0.15029833,-0.8095474,0.646011,0.14738041,0.6331471,0.5654944,0.22424911,0.08277651,0.69101685,-0.3820412,0.017011601,0.40886974,0.009125965,-0.2900334,0.5880751,-0.84864175,0.10979306,-0.1968921,0.1457545,0.22857645,0.07674168,0.48502022,0.9435317,-0.12618347,0.14834413,0.012170909,-0.23228787,0.13469918,-0.2057226,0.04454114,-0.15161976,-0.4177813,0.52020675,0.35478672,0.45856702,-0.21343888,-0.010246956,0.33077666,-0.075770006,0.3971397,-0.026975665,-0.008398359,-0.1354354,-0.50573236,-0.20803292,0.54308885,0.13718241,0.14206077,0.016443707,-0.21617801,0.46513602,-0.08554653,-0.25340578,-0.0072982437,-0.47413766,0.24263987,-0.15159687,-0.77027345,0.57766,-0.17750388,0.07978906,0.06391208,0.12925996,-0.28454548,0.1396669,0.005703651,0.77949595,0.06675622,-0.13281962,-0.07162829,-0.3194559,0.11739823,-0.23141888,-0.05743124,-0.19398744,0.31077605,-0.76267093,0.45133755,-0.5278472,-0.36282822,0.03360692,-0.2845084,-0.013414552,0.46486458,-0.36825892,-0.1633343,-0.017899577,-0.05459597,-0.19207767,-0.42278856,-0.38567093,-0.0054669483,-0.3499524,-0.025618961,-0.24345867,-0.15252744,-0.2627767,0.36102295,0.09168245,0.08345831,0.3176101,0.18768404,-0.4141159,-0.059695456,0.27962226,0.53499615,-0.07730515,-0.11539796,-0.29531804,-0.28107485,-0.38784328,0.31291822,-0.007178687,0.30471706,0.08656942,-0.5620223,0.85639614,-0.07589729,1.0895038,-0.010903358,-0.52147555,0.07565439,0.6078365,-0.018904746,0.19377872,-0.37751293,0.77612936,0.6009358,-0.07670903,0.021423506,-0.8443073,0.0003815431,0.4636169,-0.33685017,-0.05290321,-0.09213103,-0.69670653,-0.21141627,0.30899176,0.24174072,0.053828325,-0.12504338,0.040979378,-0.025342405,0.46862978,0.2255492,-0.46233404,0.107263215,0.47819236,0.09405173,-0.039167065,0.2023263,-0.2811448,0.24291672,-0.6439724,0.2254246,-0.463731,-0.0056043174,-0.10706313,-0.036929015,0.34635514,-0.026890341,0.16422628,-0.16147563,-0.3751752,-0.023549424,0.4355005,0.2647319,0.26341724,0.7712288,-0.22987741,0.085391134,0.1447522,0.6142541,1.1159263,-0.45588526,-0.058978003,0.15790811,-0.23820662,-0.7952777,0.14584936,-0.3452934,-0.05965381,0.0629566,-0.49081084,-0.58613116,0.13342835,0.068616375,-0.09812207,-0.014019717,-0.36416614,-0.1541854,0.2584561,-0.26258183,-0.10727252,-0.12552814,0.022350889,0.70750934,-0.33761984,-0.4920136,-0.10257328,0.3942943,-0.33407694,-0.55384606,0.17861396,-0.44310564,0.4155729,0.37647772,-0.31522462,0.021521516,0.21110035,-0.6778028,0.09463457,0.40638527,-0.29434225,-0.08365197,-0.32402003,0.2461477,0.816837,-0.17577018,0.17601317,-0.4689485,-0.5538466,-0.7708477,-0.2762679,0.059880022,0.0038648753,-0.115582906,-0.55487293,0.02294296,-0.37618065,-0.09786166,0.04336029,-0.7307719,0.45372418,0.06651092,0.44774157,-0.27516717,-0.939677,0.10441962,0.18755385,-0.05401065,-0.32198018,0.47676805,-0.23114412,0.8875951,0.04987057,0.18125857,0.22868927,-0.61642545,0.3597759,-0.3938328,-0.353226,-0.72849625,-0.03471787,914 +772,0.4235214,-0.30012378,-0.4511391,-0.01766689,-0.26355156,0.14559802,-0.09744671,0.49499363,0.30831286,-0.40423977,-0.28295296,-0.11248343,0.13106865,0.39307517,-0.20868029,-0.48064855,0.012137807,0.3050399,-0.42354122,0.54960036,-0.3661575,0.2307133,0.12415154,0.34634262,0.40505952,-0.0058145532,0.0001513958,-0.061042666,-0.33924216,-0.3421828,-0.46071383,0.22896484,-0.23603883,0.27646834,-0.07963332,-0.389262,-0.072112635,-0.5441246,-0.35635927,-0.7339477,0.22683686,-0.751934,0.5281545,-0.09287056,-0.22793151,0.1460182,0.31251937,0.3612641,-0.08953018,-0.13630931,0.20130971,-0.16312853,-0.10152699,-0.2446843,-0.3074949,-0.53852934,-0.6776759,-0.17283219,-0.2675235,-0.18764599,-0.19510746,0.32443902,-0.35072866,0.032424863,0.027669443,0.48236597,-0.30382773,0.23113999,0.13869397,-0.111340605,0.20613113,-0.67126185,-0.27758384,-0.028023062,0.16112797,-0.09173837,-0.33005765,0.22526997,0.46020338,0.23932849,-0.08482062,-0.11518073,-0.2614794,-0.15592432,0.09649977,0.66555625,-0.3077364,-0.54721165,-0.05800235,0.09835473,0.47266886,0.32114366,0.18753982,-0.31533054,-0.037416775,0.21272898,-0.36798513,0.41514322,0.24651766,-0.35545355,-0.03644373,0.30736688,0.32308847,0.16124487,-0.24362986,-0.20406379,0.014961334,-0.52439606,-0.03218514,0.20365074,-0.37561306,0.6358455,-0.19143926,0.31174314,0.57149625,-0.21389927,-0.052946083,0.18487048,0.2600737,-0.120238215,-0.32667425,-0.38604605,0.17454155,-0.4649966,0.11727778,-0.10876456,0.98776907,0.04880256,-0.572249,0.31379455,-0.6223952,0.07584903,-0.20659846,0.2490341,0.48049942,0.46315187,0.2940044,0.6742398,-0.37139133,-0.12909824,-0.07901691,-0.3162972,-0.12993647,-0.18504198,0.18034731,-0.5384584,0.027583249,-0.045931697,-0.08955094,0.31443012,0.5170992,-0.5927838,-0.23011255,-0.017089656,0.87483525,-0.30100453,-0.18849127,0.7986084,1.0448709,1.0521464,0.019067425,1.0670316,0.3187938,-0.21760684,-0.02548192,-0.11400983,-0.43984747,0.38201046,0.3700125,-1.0815431,0.16221759,0.04346744,-0.033674743,0.28189725,-0.25037855,-0.057343967,-0.15048432,-0.08477382,0.2218013,-0.15650068,-0.38795334,-0.4260348,-0.19414656,-0.018680014,0.14119364,0.24204026,-0.21631585,0.5364819,0.17838573,1.5243398,-0.084390655,-0.07919704,0.054756816,0.20574853,0.24328367,-0.0741244,-0.015190968,0.2516214,0.3225094,0.07335219,-0.4505994,0.11463433,-0.30607048,-0.34006265,-0.14009412,-0.15736529,-0.18943718,0.18274611,-0.37363705,-0.30052185,-0.1362894,-0.2420139,0.5395984,-2.7206607,-0.37430513,-0.056790728,0.30385244,-0.2036232,-0.5869462,-0.06648847,-0.58642584,0.39695483,0.018538503,0.57068163,-0.6336633,0.26178747,0.2878081,-0.6138712,-0.28783256,-0.7388653,-0.10950352,0.07929473,0.1692444,-0.023976097,-0.008196776,0.14083976,-0.008841212,0.5413424,-0.11083082,0.13455653,0.38162297,0.4456351,-0.093342945,0.56052303,-0.07994187,0.73769057,-0.17117518,-0.20424546,0.26185396,-0.42735556,0.34376848,0.06678062,0.18043351,0.6647911,-0.34048912,-0.76522255,-0.648409,-0.10304871,1.0325373,-0.14088185,-0.31296793,0.18319534,-0.35853162,-0.398255,-0.13758536,0.37392733,-0.11212291,-0.09265467,-0.75052065,0.034417767,0.063854866,0.093896955,0.021133631,-0.2055049,-0.20200147,0.5949973,-0.04909026,0.4245606,0.31569952,0.21792902,-0.44399226,-0.27541658,-0.104807444,0.88239706,0.5144143,0.12450673,-0.24118485,-0.08408319,-0.45975095,-0.08281803,0.09214912,0.4943266,0.5916528,-0.05556266,0.0528813,0.2947219,-0.0033179612,0.084093094,-0.08924428,-0.3862861,-0.06729072,0.0065279603,0.45020518,0.51872027,-0.018675685,0.7414993,0.08280253,0.44309264,-0.1429948,-0.5146834,0.44286457,1.3464062,-0.29566795,-0.4561235,0.5933266,0.33310825,-0.15647417,0.3351596,-0.4047275,-0.33362293,0.49988744,-0.1785958,-0.5247849,0.15621355,-0.27428088,0.100165404,-0.69804627,0.3839525,-0.31614143,-0.48067045,-0.38481063,-0.106616735,-2.4028816,0.2764633,-0.30952498,-0.14757627,-0.13224022,-0.23131885,0.006920081,-0.6623231,-0.48668283,0.1606341,0.28795996,0.71015745,-0.02959675,0.04519534,-0.028622326,-0.2548091,-0.08424293,0.12868387,-0.02620047,0.35925263,-0.028773006,-0.4118732,0.04805649,-0.06436612,-0.39173386,0.20196986,-0.7109136,-0.44443575,-0.05545921,-0.52117515,-0.52993417,0.7809354,-0.5497182,0.11946971,-0.13987805,0.14710023,0.05403935,0.26855147,0.09684534,0.095274046,-0.07679892,-0.029606186,0.19338916,-0.27191097,0.22530644,0.062364437,0.2659039,0.34097487,0.06531422,0.39764303,0.44159368,0.64478534,0.077351406,0.8594678,0.41102192,-0.108760685,0.08564322,-0.1753375,-0.46161515,-0.433752,-0.29148504,0.13932659,-0.4155078,-0.35059005,-0.13854629,-0.27935272,-0.67237335,0.5643664,0.15903424,0.16866867,-0.09597637,0.3779976,0.5744857,-0.28302997,0.07305508,0.076564424,-0.17777498,-0.5951296,-0.26442564,-0.5681158,-0.35114914,0.1749832,1.0952754,-0.33189502,0.19110394,0.020385921,-0.33079332,0.011314163,0.21278766,-0.14772996,0.043119576,0.42149937,-0.3922308,-0.6706992,0.28776997,-0.28625104,-0.18655106,-0.42822102,0.45872954,0.7730412,-0.5457555,0.5013826,0.42845318,0.0202115,-0.30609438,-0.36442822,-0.09851014,0.0826065,-0.18778917,0.37182057,0.25269726,-0.60969055,0.25034043,0.37522423,-0.31855172,-0.6149831,0.53023875,0.04085267,-0.31138185,-0.1780027,0.392378,0.35382217,-0.006488539,-0.055352155,0.08684875,-0.40873355,0.25668877,0.038598243,-0.028575612,-0.026120214,-0.19235413,-0.17211336,-0.8980131,0.122733936,-0.38432142,-0.37645784,0.2999658,0.12504321,0.2592034,0.23704435,0.07623445,0.2611295,-0.47897977,0.048188146,-0.13997093,-0.2964932,0.33599633,0.415023,0.49682486,-0.26443836,0.49125788,0.09030844,-0.15351914,-0.0003684117,0.031632457,0.40884268,0.25366843,0.40426606,-0.013891477,-0.27666062,0.36966795,0.68768936,0.121813536,0.34896952,0.04042798,-0.14228085,-0.16618453,-0.05386639,0.25524247,0.11516975,-0.5842767,-0.081343815,-0.39096242,0.11955197,0.5129684,-0.08660091,0.21945542,-0.104807205,-0.42121476,0.02700498,0.040226314,0.17322387,-1.1970071,0.4696374,0.2242476,0.8157782,0.30866763,-0.05579144,-0.13329403,0.69004565,-0.24640872,0.20364247,0.35767287,0.014855476,-0.33551788,0.47057045,-0.82567066,0.48488948,-0.042627737,0.018826861,0.0054041226,0.03282006,0.35026735,0.87530136,-0.23604153,-0.012909352,0.10734903,-0.4872058,0.12059419,-0.44525167,0.054500606,-0.71850514,-0.44400883,0.6873198,0.49064004,0.42207208,-0.14778982,0.034672365,0.24354824,-0.16518322,0.20579419,0.11390995,0.2238044,-0.10078209,-0.71273035,-0.035503928,0.42789766,-0.027777625,0.30235374,0.04485991,0.026760118,0.21737133,-0.15196422,0.05774832,-0.0873712,-0.5862814,-0.010685169,-0.3854117,-0.575581,0.446475,-0.25879616,0.10519728,0.2229103,0.06368239,-0.04337615,0.48487267,0.37939495,0.85004646,-0.02974088,-0.10225366,-0.25571287,0.28078163,0.022245921,-0.025305588,0.09330761,-0.15816863,0.13049135,-0.7114778,0.5711465,-0.10324281,-0.15604533,-0.028330078,-0.09618103,0.15754224,0.43180344,-0.26988935,-0.08807169,-0.21641353,-0.032629233,-0.20727803,-0.13573074,-0.05368305,0.2418358,0.39071178,0.116081126,-0.20982376,-0.3526953,-0.36845878,0.10524146,-0.15842159,0.48575848,0.33871153,0.07943102,-0.21536604,-0.24107185,0.09385408,0.4192742,-0.0132002,-0.2869101,-0.38766187,-0.3949644,-0.40266922,0.2047484,-0.0330435,0.4053197,0.037224695,-0.1163561,0.83077997,-0.22077672,1.2209531,-0.029639363,-0.378169,-0.072603896,0.4270624,-0.12148949,-0.10282489,-0.12694378,0.89601296,0.4850827,0.09629337,-0.07048565,-0.4643559,0.057907693,0.20054308,-0.23154886,-0.099224254,0.1197925,-0.41677624,-0.44938284,0.1800766,0.08433808,0.15720852,-0.08862233,0.107762344,0.51184785,0.02677201,0.21887878,-0.36479828,-0.09708995,0.22591121,0.37675107,-0.04598747,0.2933809,-0.46763223,0.33217922,-0.46698138,0.20612827,-0.34624916,0.19102618,-0.14868332,-0.14350048,0.28567642,0.21440798,0.21899632,-0.33094183,-0.27321735,-0.055080123,0.44413823,0.100233786,-0.045179807,0.4619308,-0.29680884,-0.15312946,0.02065494,0.50553244,0.9822194,-0.3467852,-0.12340387,0.41205978,-0.39788035,-0.4523474,0.4677195,-0.24261746,0.07948008,0.113989204,-0.090987355,-0.56171644,0.29380938,0.3947179,0.07751311,-0.080595136,-0.51762354,0.020592557,0.25131696,-0.42714706,-0.17154004,-0.24863304,0.3159324,0.27384374,-0.2807503,-0.3844035,0.059254467,0.18296146,-0.1002976,-0.2987472,0.004264992,-0.42440277,0.21605372,0.06462753,-0.24198912,-0.16376813,0.006995485,-0.47389752,0.020803057,0.10814951,-0.31851885,0.22497147,-0.20711423,-0.17973843,0.83316296,-0.25800386,0.122705825,-0.5776565,-0.29330096,-0.42744234,-0.5152716,0.26525503,0.106212124,0.00929395,-0.74969107,-0.13272788,0.05100971,-0.23531431,-0.09648728,-0.28916013,0.51999915,0.13138627,0.39257765,-0.1929761,-0.7826712,0.1500054,0.017243495,-0.059355512,-0.5891821,0.31870762,-0.13690211,0.78855455,0.042524572,0.015073623,0.50891787,-0.3327435,-0.07915003,-0.263917,-0.32951406,-0.70442927,-0.08976392,932 +773,0.5515579,-0.099528074,-0.6158635,-0.3929587,-0.2676689,0.20854884,-0.20820437,0.34287226,0.3867438,-0.3997663,-0.09555873,-0.0029612505,-0.07083308,0.32104543,-0.17087951,-0.9137253,0.15265135,0.22411579,-0.6934407,0.30089352,-0.4780636,0.36255786,0.014109208,0.29734087,-0.020966332,0.19254486,0.002182548,0.06091214,0.1443045,0.04345516,-0.21368282,0.1279412,-0.69447577,0.14449173,-0.042589802,-0.4166195,-0.12996474,-0.44046286,-0.2614101,-0.83233607,0.5130584,-0.8775886,0.5351077,-0.04923926,-0.43518803,0.11574335,-0.1446322,0.103878506,-0.41226262,0.0654592,0.1798536,-0.2109317,-0.11126088,-0.1190494,-0.2629656,-0.497101,-0.66172135,0.033718403,-0.41940907,-0.071356006,-0.2734988,0.17049639,-0.34935492,0.04251615,-0.32514888,0.38778433,-0.35074776,0.041906916,0.19092456,-0.19718647,0.019759191,-0.49348485,-0.073658675,-0.17556173,0.19220176,-0.035779588,-0.33218274,0.14613467,0.37161556,0.76086944,0.12102655,-0.37204272,-0.079112664,0.07834211,0.024313666,0.3888128,-0.25006023,-0.49489486,-0.20522235,-0.15408093,0.2963545,0.10253684,0.11922161,-0.4849076,0.0018669006,0.019638687,-0.2996832,0.3928076,0.6084321,-0.5186657,-0.16772754,0.4281076,0.41504022,0.00967611,-0.13866447,0.25999436,-0.045564897,-0.5890594,-0.4044972,0.16352382,-0.09772842,0.60756123,-0.21797313,0.17825016,0.65808415,-0.049557988,-0.038103715,-0.066912375,-0.09620566,0.0040889885,-0.35766375,-0.12408208,0.18000236,-0.5564728,0.1173163,-0.35333025,0.7413763,0.33979723,-0.88565814,0.47832453,-0.448782,0.18376344,-0.17788158,0.6194394,0.8674033,0.47527775,0.07517129,0.903792,-0.6649695,0.046062145,0.114361115,-0.3449586,0.08665287,-0.011515255,0.16448912,-0.4796278,0.18017925,-0.03312195,0.0155850835,0.04445805,0.33990496,-0.38902107,-0.2208499,-0.00652984,0.7131596,-0.41898102,-0.01298379,0.6897465,0.9117681,1.0411911,0.1302242,1.5975763,0.3689596,-0.13239184,0.1772264,0.012030995,-0.8037573,0.13460454,0.3308763,0.5806037,0.16973709,0.11046973,0.1519367,0.3523766,-0.2205848,-0.00075323763,-0.03008609,0.15269583,-0.029088827,-0.1861577,-0.2201896,-0.2286691,0.20409995,0.1936356,-0.11953679,0.3210258,-0.08806502,0.3964609,0.3109543,1.3154225,0.05851255,0.11737123,0.044032626,0.43863788,0.21996967,-0.27263615,-0.06364787,0.20502557,0.48327512,-0.14949171,-0.5712675,-0.028795429,-0.26703578,-0.40657154,-0.087613836,-0.34185892,-0.19637646,-0.077279314,-0.47906354,-0.20508605,0.044890072,-0.35316724,0.5237323,-2.2145495,-0.3061601,-0.1176699,0.33418816,-0.059776586,-0.379545,-0.23380738,-0.47526768,0.28416765,0.28458717,0.22780114,-0.7794455,0.40488422,0.46613222,-0.3820333,0.0018686423,-0.74168295,-0.11809338,0.0011966503,0.2912849,0.042003732,-0.09119313,-0.22010294,0.32873985,0.59807515,0.23421523,-0.021249212,0.3080103,0.54819834,0.016113387,0.52014494,0.018186565,0.6601659,-0.31170565,-0.08312193,0.31494635,-0.5753483,0.3643903,-0.04257563,0.2718351,0.48839903,-0.46915972,-0.7414516,-0.79538524,-0.40344986,1.2806085,-0.306939,-0.31780705,0.4913317,-0.14748889,-0.26565665,-0.10436451,0.5352198,-0.088478774,-0.11519364,-0.6179621,-0.12560664,-0.05831424,0.19813706,-0.13898923,-0.060177848,-0.31075758,0.8865316,-0.11166391,0.5607649,0.26719823,-0.014389198,-0.002173167,-0.44517496,0.076280706,0.9065169,0.42736262,0.17289501,-0.20016098,-0.08990001,-0.40160143,-0.040560644,0.060816612,0.6298914,0.7265163,-0.02673025,0.0020876504,0.2384472,0.075179964,0.048597775,-0.20483612,-0.3674841,-0.071830064,-0.074191764,0.42659774,0.58876216,-0.3262585,0.02039658,-0.17023805,0.029914673,-0.12925838,-0.5477756,0.6142712,0.9508871,-0.09606739,-0.18691455,0.48648483,0.22069469,-0.56904024,0.4526874,-0.57996315,-0.19822524,0.6037651,-0.005737064,-0.40113074,0.10996633,-0.3609812,-0.043657325,-0.73243207,0.34532234,-0.14989172,-0.5504574,-0.19432174,-0.14603749,-3.8911922,0.29910544,-0.06549054,-0.02675613,-0.3230337,-0.17687389,0.3885515,-0.32986993,-0.6059605,0.09030425,-0.04595501,0.5460676,-0.08145075,0.21925679,-0.22825839,-0.116657905,-0.44113016,0.104420304,-0.022381105,0.2537682,0.02084306,-0.22938214,-0.06414222,-0.24375965,-0.44034874,0.053391837,-0.68185055,-0.4665709,-0.12482051,-0.3928812,-0.23964915,0.62716365,-0.3990317,0.04589506,-0.30917817,-0.13765992,-0.47739586,0.34865877,0.03134369,0.06203447,-0.1943024,-0.03739734,-0.16565596,-0.2219926,0.1850593,0.093882136,0.35952193,0.33371463,-0.3349284,0.0981139,0.4729797,0.8420712,0.010281169,0.86294806,0.12097379,-0.0045243273,0.54061645,-0.014125537,-0.33483136,-0.69128996,-0.26450586,-0.16867755,-0.50916255,-0.2565193,-0.017006222,-0.41328943,-0.78582245,0.19566053,0.08526925,0.13100848,0.17241666,0.23391834,0.37230122,-0.12406197,0.16219491,-0.22544256,-0.32351434,-0.57046384,-0.47228146,-0.5697266,-0.48445606,0.26073474,1.1023458,-0.18837214,-0.11474133,-0.04553688,-0.21771577,0.17496324,0.24720527,0.17679718,0.13051699,0.4703085,-0.34463963,-0.66983914,0.44782254,-0.20377462,-0.04728357,-0.5908663,0.0030460174,0.67047757,-0.6272507,0.7085282,0.30202144,0.12587295,0.13869761,-0.6103135,-0.30592516,-0.09725107,-0.25523245,0.59803426,0.18951383,-0.7703349,0.51211923,0.2732923,-0.022417916,-0.67043334,0.39468992,0.0133016985,0.007521409,0.014850026,0.3733962,-0.14004919,-0.16228005,0.028250149,0.20035568,-0.549191,0.28668377,0.3898247,0.19746931,0.13230887,0.023393286,-0.13664554,-0.6071732,-0.1665908,-0.5802082,-0.19948174,-0.050056215,-0.06840621,0.20649682,0.060640637,0.106157035,0.55758244,-0.37758482,0.31492087,0.11322134,-0.35757717,0.4092442,0.40310913,0.42063016,-0.4826894,0.548537,0.06022721,0.07272743,0.038775966,0.1890897,0.4679382,0.39720842,0.4394315,-0.07461973,-0.041034248,0.1870937,0.88547397,0.2221566,0.28814682,0.08996049,-0.18294074,0.43897164,0.3259989,0.20027138,-0.0490825,-0.46944427,-0.08330447,-0.041057665,0.14645253,0.57895064,0.07847385,0.22304495,-0.14665984,-0.12087609,-0.007974058,0.072212376,-0.101432286,-1.2500125,0.16641596,0.2102307,0.7589564,0.52746373,-0.14549395,-0.04151488,0.2646295,-0.2918832,0.2972862,0.4779897,0.082426436,-0.4870811,0.4669986,-0.58092463,0.4177884,-0.14987916,0.08006019,0.341682,0.20460683,0.46764633,0.9670969,-0.08663066,-0.030762713,0.04218649,-0.23123527,0.19417746,-0.51188385,-0.044831477,-0.5110217,-0.29919514,0.6775011,0.5376101,0.22371545,-0.4384515,-0.034911074,-0.023023963,-0.07798534,-0.099399686,-0.07988251,-0.05699787,-0.19601037,-0.674714,-0.22930059,0.71871215,0.100631624,-0.12608832,0.080560975,-0.51893723,0.30718324,-0.28847423,0.07317869,-0.1551346,-0.8236669,-0.058762792,-0.33855245,-0.40332377,0.3418581,-0.22798237,0.15657578,0.35765675,0.036187604,-0.28229973,0.18389884,0.10637658,0.7431861,-0.004593762,-0.087863885,-0.480859,0.1439082,0.27025887,-0.38674986,-0.07044307,-0.3731224,-0.013594969,-0.5421523,0.42333624,-0.039147798,-0.16594109,0.30032885,-0.0031208396,0.14471044,0.5933602,-0.37007597,-0.15845402,0.03314295,0.151889,-0.19199361,0.012092022,-0.3140291,0.3424519,-0.0054551386,0.062796794,0.046433054,-0.14274035,0.04976159,0.21485019,0.1891974,0.20023043,0.37658823,-0.07757951,-0.38771915,-0.0026567394,-0.011494983,0.52114654,0.18880977,-0.19234984,-0.20573139,-0.25540137,-0.2907362,0.443885,-0.12604287,0.2616915,-0.05175584,-0.362473,0.6050902,0.19986765,0.9959215,0.12963209,-0.40963423,0.05709028,0.55286384,0.105060026,-0.020946672,-0.31557724,0.8101208,0.44593334,-0.1789538,-0.16909868,-0.33668217,-0.15318607,0.11601746,-0.20752598,-0.086369924,-0.07647391,-0.93184114,-0.03794033,0.075096115,0.27093875,0.2023534,0.03085373,0.015710918,0.1628155,0.14431117,0.5529834,-0.6757999,-0.08180474,0.12805691,0.21062693,0.04263145,0.086854406,-0.27951676,0.32005247,-0.75917584,-0.008218775,-0.50113535,0.000640527,-0.21673217,-0.41899714,0.14912106,0.06435773,0.25528696,-0.32172364,-0.40618637,-0.3681212,0.62373173,0.3083078,0.45170167,0.74897426,-0.24684905,-0.0046431995,0.24818999,0.46415395,1.0831965,0.0107781235,0.054103535,0.3428171,-0.41168234,-0.7053532,0.08379483,-0.396719,0.19642879,0.05818489,-0.1221906,-0.3589336,0.22374131,0.1823084,-0.09073491,0.20660426,-0.830174,-0.25156555,0.45315796,-0.1874996,-0.2728484,-0.31187597,0.2943954,0.8455936,-0.5253119,-0.31545618,0.12747392,0.28193432,-0.2420152,-0.74852854,0.08375576,-0.4565211,0.5259664,0.1726577,-0.42862982,0.039537504,0.0887499,-0.54523194,0.1846049,0.22018205,-0.33516195,0.014041323,-0.35636738,-0.10057053,1.0025189,0.18616024,0.17635599,-0.5536898,-0.5675432,-0.8800701,-0.35233214,0.24755576,0.30424875,0.08288811,-0.51718986,-0.17742833,-0.1655524,0.10040507,0.082020134,-0.35441458,0.44065985,0.13389371,0.47398785,0.03259173,-0.9937638,-0.00012592628,0.06498745,-0.24267492,-0.37098652,0.60282165,-0.16256817,0.7784142,0.0063465904,0.010570208,0.05477277,-0.754488,0.2706899,-0.58959997,-0.0050643133,-0.57757914,0.22106992,933 +774,0.6309437,-0.17951417,-0.5457561,-0.027444322,-0.1920278,-0.07251166,-0.23628531,0.42251232,0.42489865,-0.48023993,-0.20291328,-0.26522356,0.1260586,0.25865895,-0.22006318,-0.56279325,-0.05398003,0.22157647,-0.53726804,0.678223,-0.35005713,0.24634616,0.106956966,0.44134873,0.18419805,0.19340464,0.0981266,-0.005846991,-0.3016679,-0.23057629,-0.09202159,0.2450489,-0.79120314,0.012368679,-0.2818076,-0.47609183,-0.1837647,-0.5231025,-0.47757372,-0.84419954,0.252953,-0.90653807,0.65277237,0.15756585,-0.3090669,0.37914452,-0.1628244,0.16479531,-0.20079397,-0.051484987,0.07035459,-0.12041729,-0.15429442,-0.24181916,-0.20027281,-0.22564347,-0.6980493,0.10367206,-0.40622938,-0.028232766,-0.318485,0.031896785,-0.3024816,0.01358143,-0.0019913774,0.7177124,-0.33028105,0.11111769,0.15448236,0.068017356,0.30969912,-0.4940762,-0.17299876,-0.20955387,0.2407395,-0.26521206,-0.20348102,0.16325487,0.2048835,0.4998363,-0.08028854,-0.19202067,-0.36968228,0.19159259,0.21339546,0.34109715,-0.1333182,-0.70862126,-0.081167094,-0.0034639745,0.066611886,0.007303467,0.38152182,-0.3459709,-0.08455351,-0.04388732,-0.16403848,0.60848844,0.5095369,-0.3329825,-0.12281931,0.18571952,0.58131516,0.22179674,-0.016102633,-0.06018389,-0.026002783,-0.6931523,-0.20591237,-0.023777429,-0.2350765,0.6942511,-0.1610696,0.17978151,0.47726867,-0.25237125,-0.23357016,0.18119049,-0.094655305,-0.028956322,-0.20113853,-0.2518863,0.44819084,-0.3408806,0.18111151,-0.15065421,0.67409664,0.25871268,-0.82548785,0.3574263,-0.6792648,0.19332038,0.088439666,0.53195614,0.6624806,0.46644104,0.4025944,0.6602129,-0.43462855,0.0682177,0.053435225,-0.47558886,0.03279912,-0.28897613,0.021432532,-0.47693428,-0.20248684,-0.04608563,-0.34238523,0.1463079,0.45147833,-0.5516155,-0.023352034,0.095779255,0.7141091,-0.20545913,-0.21820052,0.9596929,1.1319573,1.1177971,0.1115513,1.2825873,0.2435715,-0.2498809,0.22801377,-0.2728361,-0.81605655,0.34339648,0.30865875,-0.6071384,0.5697072,0.15906535,0.0019540512,0.3865272,-0.4626365,-0.015113058,0.024688445,0.1299378,0.01788964,-0.080814674,-0.54655075,-0.28718823,-0.26515797,0.09030518,0.11024405,0.31759077,-0.1459541,0.28287366,0.14924107,1.4727517,-0.18696798,-0.014846804,0.07050132,0.42263225,0.19391258,-0.21073541,-0.25393584,0.28386158,0.21298991,0.14837871,-0.53202856,0.024536463,-0.08720891,-0.3513387,-0.16993658,-0.26409924,0.07112826,0.0068489085,-0.25298202,-0.23679315,-0.2180437,-0.47718588,0.43469495,-2.3975549,-0.16550647,0.028154602,0.36099818,-0.23514828,-0.48411077,-0.11076998,-0.5690734,0.26421818,0.277095,0.4717485,-0.74705607,0.26858878,0.52194965,-0.5851774,-0.26901495,-0.70908266,-0.18510954,0.0030589746,0.30119303,-0.035659138,0.030878829,0.15827304,0.20787011,0.43137115,0.13483153,0.112351924,0.2518982,0.4237957,-0.14900337,0.45985353,-0.03657641,0.44815806,-0.21989432,-0.12998854,0.43712837,-0.20884132,0.22488198,-0.19416378,0.17583863,0.44004828,-0.55520815,-0.87107307,-0.59499943,-0.11387029,1.2180191,-0.16147819,-0.506763,0.24288982,-0.3458155,-0.24077691,-0.06520243,0.542174,-0.0610807,0.06458522,-0.8482543,0.08019415,0.01579477,0.16164456,0.041323144,0.027625378,-0.46368805,0.67009825,0.018787824,0.33989435,0.55952597,0.2549992,-0.15967193,-0.66617835,0.20762128,1.1374015,0.22367351,0.23174077,-0.5315422,-0.21224786,-0.38409123,0.0930489,-0.1588645,0.5028673,0.675891,-0.14330308,0.11845226,0.2663258,0.18481387,0.20093773,-0.14712276,-0.271649,-0.13111888,-0.093303666,0.5528329,0.89681816,-0.25825906,0.4828563,-0.044756625,0.16037607,-0.17597015,-0.3524021,0.6703581,1.2894047,-0.17261957,-0.23732604,0.69777274,0.37260893,-0.35627124,0.52914137,-0.4785091,-0.2836679,0.33280137,-0.15032925,-0.42297876,0.3080627,-0.25265366,0.1927933,-0.91151345,0.31234974,-0.22082628,-0.33541864,-0.53937787,0.05998849,-3.2826293,0.29824623,-0.25909546,-0.20515302,-0.121570095,-0.18184243,0.10390489,-0.5866367,-0.70057577,0.1747563,0.031473987,0.70316327,-0.30438823,0.14270706,-0.052347124,-0.45500416,-0.2752593,0.18976201,0.27071312,0.38852435,0.04258662,-0.49994656,-0.13759255,-0.16616032,-0.35315132,-0.014725112,-0.53371656,-0.40510792,-0.12813455,-0.6302557,-0.29554525,0.70344317,-0.28101796,0.0829034,-0.32274422,-0.030912098,-0.09325095,0.3033048,-0.1335126,0.2839805,0.007549649,-0.011941339,-0.04127163,-0.12624682,0.17682287,0.096899256,0.20341113,0.36885756,-0.2799504,0.32949525,0.48870498,0.90686184,-0.06966433,0.9849546,0.5252383,-0.06500951,0.18515283,-0.20278054,-0.32186958,-0.6855379,-0.3274656,-0.0141048385,-0.38535696,-0.55799365,-0.13406986,-0.31159702,-0.8030562,0.6692288,-0.15904385,0.25094637,0.11774263,0.2253491,0.59923893,-0.2955217,-0.052796178,-0.15772769,-0.14874502,-0.6097806,-0.19577415,-0.59355795,-0.3890268,0.12041289,0.9595099,-0.19099139,0.07336453,0.18618315,-0.21612933,0.049251676,0.1064965,-0.02399713,0.026865661,0.4842513,0.15779641,-0.6473447,0.41907603,0.051345173,-0.16341724,-0.60071635,0.22201866,0.6238687,-0.6461014,0.63371044,0.30626976,-0.075267784,0.004763365,-0.49960232,-0.2883465,0.004993365,-0.18843222,0.44769397,0.45072657,-0.7188437,0.28579754,0.32873538,-0.31829935,-0.78138757,0.5923104,0.0858826,-0.28233224,-0.084115475,0.42589256,-0.016594378,0.1508686,-0.3184449,0.18420905,-0.32892925,0.22497548,0.297654,-0.11044449,-0.108962044,-0.15023343,0.039304394,-0.8933494,0.15457764,-0.51200324,-0.32052904,0.22729227,0.22675452,0.08097669,0.21172285,0.22617333,0.2325764,-0.38690358,0.09470483,-0.049678687,-0.3083634,0.48455268,0.5096902,0.4901157,-0.39660564,0.5797146,0.024480421,-0.12454402,-0.096785106,-0.1574538,0.39062464,-0.028950058,0.19771582,0.346615,-0.2656287,0.10604345,0.6060547,0.16209577,0.46186832,0.2611058,0.03863599,0.38530922,0.06466326,0.3595444,-0.07738293,-0.591309,0.05195484,-0.4132745,0.15188634,0.44289196,0.11133187,0.19063582,-0.19559255,-0.40571338,0.018745743,0.22473162,0.05118769,-1.2826384,0.12495096,0.14528304,0.69021004,0.760025,-0.048091613,0.054671504,0.585269,-0.087640636,0.12303548,0.45257425,0.07857696,-0.545213,0.5441312,-0.639395,0.39712632,-0.0505964,0.073189,-0.024251666,-0.1486183,0.27060792,0.72228426,-0.26460668,0.044826884,-0.13534616,-0.10908772,0.06434397,-0.50985545,0.1163058,-0.53034586,-0.22164124,0.85397935,0.46075124,0.43203098,-0.22842506,0.10629837,0.1385484,-0.16382283,0.1669694,0.12921122,-0.0054988493,-0.032736655,-0.7166704,0.080759645,0.5571063,-0.06452133,-0.0051645315,-0.13106848,-0.1960551,0.080055185,-0.37545982,-0.3301137,-0.13478644,-0.8643912,-0.21748754,-0.46317512,-0.38151214,0.47180727,-0.033218686,0.17159666,0.19070816,0.14042829,-0.3053067,0.33957675,0.1728016,0.6946657,0.23221014,-0.08187492,-0.2711464,0.32782632,0.18862931,-0.17282611,-0.09536866,-0.122178465,0.039668087,-0.47701403,0.4404604,0.021932181,-0.3117103,-0.09133332,-0.055557307,0.05972,0.664581,-0.19018275,-0.24875487,0.09236769,-0.1474327,-0.19342946,-0.2909548,0.046436742,0.34077257,0.2840668,-0.26615322,-0.038757287,0.001300179,-0.096070565,0.22462025,0.06466705,0.4506966,0.41110295,0.07954086,-0.3190379,-0.1788826,0.19468692,0.56153864,0.0743304,-0.26009205,-0.38271147,-0.4135751,-0.411106,0.088542625,-0.03274605,0.17214702,0.09230303,-0.103164636,0.6750899,0.27006772,1.1709952,0.029533941,-0.39741457,0.10386555,0.3662567,0.00071251165,-0.19637793,-0.42929113,1.1580316,0.36771843,-0.16865699,-0.11773329,-0.41994488,-0.01566465,0.15315312,-0.13362342,-0.061721005,0.008857338,-0.6351143,-0.098398834,0.25072196,0.33041185,0.11809135,-0.19685403,0.26580366,0.3505343,0.017390866,0.27015665,-0.4382117,-0.26017708,0.45060423,0.22566697,-0.002940563,0.1224286,-0.32717234,0.2793039,-0.38407263,0.007429577,-0.377898,0.08699449,-0.07881876,-0.300327,0.32838744,0.1763729,0.4129638,-0.45061603,-0.29704574,-0.4599363,0.5266405,0.025666429,0.0588043,0.49169824,-0.28059185,0.0015680927,0.036706313,0.5198767,0.98187286,-0.08771029,0.09015817,0.29578808,-0.3355775,-0.53885925,0.4724491,-0.28392637,0.22830957,-0.16584137,-0.13495442,-0.6980352,0.08279122,0.06864663,0.03882146,0.2650193,-0.77451396,-0.37224114,0.2829507,-0.38658327,-0.033439614,-0.2474121,-0.09807988,0.5600202,-0.2669518,-0.40163058,0.026576353,0.03821797,-0.06571592,-0.5232352,-0.1723145,-0.273958,0.13061555,0.25121623,-0.28701115,-0.18491386,0.16109553,-0.4783114,0.08573369,0.059530433,-0.3844125,0.046359863,-0.34933472,-0.13718988,1.0591274,-0.2700969,0.31487483,-0.32399565,-0.69711673,-0.96664625,-0.34400088,0.4198052,-0.08304889,0.09905942,-0.6497739,0.08789032,-0.15322748,-0.19606687,0.03206152,-0.44601992,0.3793774,0.1362525,0.36342147,-0.09314394,-0.8535365,0.17562366,0.16705987,-0.17707366,-0.6748164,0.46685347,0.22255689,0.8710644,-0.02632611,0.17469905,0.31683138,-0.62048304,-0.20424303,-0.058906868,-0.06620196,-0.5028647,0.11890142,935 +775,0.42399964,0.0885355,-0.44392565,0.052306466,-0.20977838,0.11492058,-0.31584293,0.22962403,0.33606288,-0.41624454,-0.28886122,-0.14368889,0.09251015,0.39785478,-0.0689964,-0.8073508,0.18943447,0.46330184,-0.3407284,0.66876507,-0.3911915,0.45619515,0.13703275,0.39036953,-0.114470825,0.17346361,0.23125099,-0.04037265,-0.21462026,-0.26584172,-0.021969428,0.24085206,-0.68054146,0.26798752,-0.31595087,-0.4906856,0.0030680436,-0.5566437,-0.35596293,-0.82624924,0.26653275,-0.64999396,0.77904534,0.1985778,-0.017133107,0.0676182,0.31192625,0.44044274,0.09810294,0.10217662,0.23871097,-0.29153797,-0.39528844,-0.26553375,-0.23937933,-0.1876222,-0.72208935,0.02729832,-0.45793942,-0.017760534,-0.34137058,0.19173248,-0.3522023,0.30164227,-0.12240632,0.37592214,-0.49956462,0.11733726,0.34239465,-0.20051232,-0.052344825,-0.5569465,-0.20155515,0.006438629,0.41253656,-0.28494325,-0.22791754,0.21328583,0.41899678,0.6444859,0.013482594,-0.36296478,-0.29736745,0.017695932,0.07644544,0.814288,-0.4553962,-0.34384683,-0.07750522,0.04602869,0.56781065,0.17555135,-0.09822583,-0.21173164,-0.029857563,-0.33702403,-0.03183454,0.23575331,0.59198296,-0.41802472,-0.21706636,0.21564086,0.40624025,0.08406182,0.02432643,-0.01898263,0.06983222,-0.56927395,-0.0767255,-0.30291387,-0.19526342,0.5634337,-0.07737759,0.1406995,0.543217,-0.071281776,-0.046117865,0.21600458,-0.03231877,0.28167465,-0.2688641,-0.34220314,0.42186773,-0.4366275,0.25395516,-0.3049463,0.6253656,0.21491274,-0.47172478,0.39417094,-0.65798676,0.20791231,0.22607924,0.5268208,0.6757255,0.42831537,0.39006087,0.65108114,-0.46018738,0.08594179,0.03143855,-0.115354575,-0.087737046,-0.07295601,0.29262722,-0.43117592,0.014078214,-0.0989615,-0.26993728,0.33008435,0.56090283,-0.5878115,-0.13585918,0.107650824,0.8790745,-0.23557684,-0.10389598,1.0851821,1.0849532,1.0287753,-0.0748473,1.3391279,0.4025163,-0.16703781,-0.28909495,-0.19539173,-0.6418655,0.015201406,0.2492864,-0.6631032,0.31946406,0.2671431,-0.26918522,0.66208225,-0.7758111,-0.33694732,0.106206164,0.17631009,0.059746027,-0.20364437,-0.63900286,-0.18301164,-0.052737474,-0.16646324,0.341702,0.527599,-0.20519862,0.38504198,-0.013106465,1.3316505,-0.0125684,0.07291549,0.13022867,0.20178065,0.35476077,-0.022941759,-0.041025795,-0.010528014,0.19337541,-0.07189095,-0.39216775,-0.09496234,-0.39431196,-0.24238676,-0.19585755,-0.013163557,-0.4214022,0.03874521,-0.2663997,-0.20996457,-0.1914364,-0.20447643,0.42656332,-2.363782,-0.34857193,-0.14426354,0.54461646,-0.16221306,-0.43649924,-0.09603992,-0.49154916,0.61049885,0.026077468,0.4366747,-0.66228807,0.38535702,0.41735792,-0.81791425,-0.37144896,-0.7460908,-0.08524149,0.007220346,0.17206922,0.12291899,-0.293793,0.17081195,0.11783253,0.5908482,-0.12625581,0.011652205,0.22186397,0.4855015,-0.10396501,0.24313387,0.094523326,0.73027027,-0.18208414,-0.4044994,0.34915417,-0.48151383,0.42389017,-0.34708676,-0.035581045,0.3887715,-0.3164737,-0.93758607,-0.55539155,-0.22360022,0.7426032,0.15725055,-0.4847206,-0.03461189,-0.23935471,-0.3425508,0.045339327,0.63340366,-0.39787146,-0.15352097,-0.7629231,-0.09313757,-0.042442285,0.08136987,0.029160304,0.18465193,-0.6993859,0.62004334,-0.255057,0.106337935,0.591812,0.49194655,-0.21183428,-0.48218182,0.07584739,0.9068112,0.46258256,0.19623032,-0.24175207,-0.15534973,-0.07602937,-0.30999982,-0.22634767,0.7931868,0.61042,-0.22674449,0.0021766196,0.28681776,0.26830447,0.11945788,-0.26134744,-0.48842424,-0.19920936,0.056773152,0.70978856,0.91591877,-0.27637514,0.37845582,0.0011738905,0.22908896,-0.20630336,-0.48036385,0.620486,0.8529542,-0.1858627,-0.03637235,0.5965889,0.17909463,-0.16850574,0.4045628,-0.75418115,-0.37110084,0.27512708,-0.07476668,-0.4463063,0.06843984,-0.22862515,-0.031463053,-0.782732,0.57617563,-0.33867824,-0.37687296,-0.6569827,-0.15079167,-2.5155954,0.1444511,-0.50856054,0.19208159,-0.19921182,-0.14831932,-0.12665533,-0.5399393,-0.71959835,0.36520752,0.007138556,0.59874636,-0.30799615,0.26287645,-0.170856,-0.4383496,-0.31755698,0.2702893,0.34019506,0.3840792,0.042117033,-0.27270806,0.107650906,-0.11452602,-0.43905413,0.09263565,-0.8258292,-0.34379798,-0.11855184,-0.52334017,-0.1701173,0.8092953,-0.4962069,0.16277803,-0.48764282,0.018335719,-0.25774246,0.30322167,0.142143,0.28725508,0.079173416,-0.118591085,0.025639135,-0.09449437,0.29230103,0.18702038,0.3237719,0.42598554,-0.15653881,0.20690808,0.26709622,0.77833873,0.24855894,0.85554814,0.41399446,-0.14298661,0.2055766,-0.4691777,-0.34452227,-0.45839623,-0.4884312,0.07408751,-0.51172173,-0.40993565,-0.21594521,-0.5968859,-0.7804359,0.49532253,0.055342417,-0.14293581,-0.13911907,0.21981147,0.39188495,-0.4172514,-0.12207349,-0.08704197,0.049694426,-0.44827652,-0.23193939,-0.44669655,-0.6576983,0.10396374,1.0967827,-0.20189986,0.2054539,0.14347216,0.00075543846,-0.004022463,0.25469673,0.08091015,-0.17821625,0.5875067,0.017852237,-0.7482232,0.28156874,-0.18195261,-0.44813168,-0.91166496,0.4418875,0.6603569,-0.69112706,0.79592836,0.67113507,0.1695558,-0.058527295,-0.52982926,-0.32334372,0.14462946,-0.28577182,0.19980842,0.13553305,-0.5081614,0.38293102,0.417058,-0.3410269,-0.84167016,0.54807,0.10919805,-0.5257541,0.12514335,0.4801357,0.2786549,-0.04314977,-0.026743092,0.39834264,-0.31897244,0.46753836,0.03666756,-0.31680283,0.6021191,-0.36349827,-0.3668079,-0.9666593,0.08332247,-0.49386084,-0.36032155,-0.0049980143,0.018830381,-0.015811294,0.08692457,0.23767328,0.37534672,-0.53860164,0.059768163,-0.20524646,-0.39375877,0.2307079,0.40566424,0.4603348,-0.32004112,0.65697837,-0.0011587602,-0.06793829,-0.070753604,0.08750657,0.43670338,-0.19505206,0.4277387,0.03287042,0.009970395,0.12243429,0.69256985,0.08626688,0.2014691,0.23728283,-0.06117979,0.2545378,0.0055347728,-0.008956989,0.10404145,-0.3723173,0.14047925,-0.30104142,0.020391094,0.44382188,0.26883233,0.3883042,-0.15634534,-0.47514516,0.000984247,0.16920942,0.08894026,-1.2899538,0.3184567,0.001627867,0.73569405,0.38659593,0.20432395,0.09395544,0.6049351,-0.19861911,-0.05711232,0.32864088,-0.13963877,-0.035066903,0.55939287,-0.6981362,0.369372,0.075408645,0.15979873,-0.004534515,-0.13998574,0.2074038,0.84028023,-0.26680362,-0.1327275,-0.2645389,-0.15158731,-0.08047227,-0.4112272,0.324995,-0.49042815,-0.3791228,0.9764801,0.38656884,0.35736942,-0.1539082,0.11460728,0.24885108,-0.25069728,0.07268433,0.10509239,0.20968741,0.03866736,-0.46831512,0.0936849,0.52387184,-0.11898331,0.018947918,-0.06755073,-0.14688112,0.27605188,-0.15776783,-0.11589351,-0.001957373,-0.864144,0.0116588175,-0.69698375,-0.32416043,0.45780414,0.016145825,0.20085393,0.13014266,0.066468194,-0.23899716,0.7043574,0.023374043,0.742896,0.23051421,-0.36784035,-0.029145498,0.32219866,0.22526854,-0.18449475,0.27073014,-0.17487851,0.37150875,-0.4866443,0.4727993,-0.043284103,-0.15184893,0.13232344,-0.22328909,-0.009438887,0.50227684,-0.3488146,-0.1980877,0.26223344,-0.3636726,-0.12998639,-0.21902712,0.010617664,0.19393612,0.3323341,-0.07191729,-0.16509172,-0.23686041,-0.553033,0.44829828,0.055685475,0.22430745,0.5361612,0.28293437,-0.3838518,-0.011676765,-0.0066668713,0.5548457,-0.25885132,-0.22250476,-0.29242995,-0.5958616,-0.46664983,0.3390155,-0.09447097,0.27564704,-0.08194796,-0.10961361,0.9033469,0.21224448,1.1527536,-0.021806322,-0.35132664,0.05238744,0.6553387,-0.11690057,-0.064355515,-0.2930525,1.2749712,0.53696215,0.015990496,-0.056099866,-0.36990598,0.17133999,0.28546175,-0.25363466,-0.14376417,0.079381,-0.5064838,-0.23057233,0.1981326,0.24754944,-0.052083142,-0.12420317,0.21346037,0.27257952,0.11650471,0.23343842,-0.7972644,-0.21282414,0.51139146,0.38160217,-0.15475951,0.19413622,-0.3524623,0.46164906,-0.38472974,0.08130508,-0.44559905,0.06482848,-0.13191421,-0.17273101,0.40840447,0.15331842,0.27486023,-0.52016956,-0.14277633,-0.23515353,0.23637229,0.3422187,0.06553428,0.63425964,-0.21428467,-0.17073932,0.032269288,0.60660994,1.2254217,-0.35215423,0.21383902,0.3687347,-0.36893824,-0.3658967,0.32790312,-0.19019443,-0.22503695,-0.09140983,-0.27321732,-0.6403091,-0.04111743,-0.06962904,0.07966847,0.0041544577,-0.61003774,-0.24122217,0.2340854,-0.3217661,-0.08034321,-0.33163518,0.2675304,0.8660349,0.0576026,-0.20774242,0.0831939,0.18042682,-0.25783646,-0.8144166,0.022763643,-0.39083752,0.20393728,0.22450915,-0.23076648,-0.30034068,0.10703704,-0.49068847,-0.06008194,0.21816741,-0.3179884,0.1131891,-0.2510522,-0.090072066,0.80335706,-0.35121286,0.40694886,-0.741949,-0.3838033,-0.91309834,-0.26002604,0.3543315,0.28865045,-0.105493516,-0.8720634,-0.18922623,-0.21641842,-0.23133853,0.025306582,-0.30700037,0.20873657,0.28997114,0.54688436,-0.36491722,-1.0061024,-0.008770557,0.029604547,-0.37916705,-0.34619468,0.2848709,0.42812246,1.0464685,0.037349798,-0.058180068,0.29943708,-0.44009045,0.08240586,-0.12431455,-0.20225371,-0.8451646,0.0004851818,938 +776,0.44681945,-0.4151649,-0.56475973,-0.10935107,-0.25229177,0.028870411,-0.4740299,0.35321897,-0.068991445,-0.6743054,-0.14823858,-0.08697879,-0.024248838,0.48706323,-0.14127408,-0.5950542,0.18343687,0.27771962,-0.6516653,0.59035873,-0.4997899,0.19688933,0.11900462,0.08284121,0.098062,-0.025081566,0.22821532,0.01885197,0.37241948,-0.08102829,-0.013736587,0.06674358,-0.61548287,0.23261727,-0.23842001,-0.56289244,-0.0056959847,-0.30854285,-0.29348856,-0.7476973,0.17110337,-0.96153355,0.52144873,0.17201588,-0.50993365,0.1174156,0.09424978,0.2425709,-0.067727715,0.21120797,0.15250112,-0.03880775,-0.27482432,-0.04292375,-0.16433421,-0.66230357,-0.5646458,0.04601016,-0.64290595,-0.14868164,-0.15841031,0.20878217,-0.37142113,0.10597543,-0.22518677,0.043908242,-0.3834353,-0.19015668,0.16946499,0.080281526,0.24781114,-0.52714527,0.057287134,-0.27650386,0.27335584,-0.2400936,-0.37323776,0.2006847,0.17855945,0.8080254,-0.0019404384,-0.2577349,-0.049236953,-0.012660852,0.28717402,0.46153685,-0.16260949,-0.29679477,-0.36656958,0.019139122,0.45137355,0.24595097,-0.012305558,-0.54694307,-0.07001183,-0.020335294,-0.40934494,0.413717,0.47361705,-0.3179955,-0.31830677,0.35243756,0.6926991,0.10844256,-0.14066377,0.3239052,0.0054103825,-0.5606545,-0.17796943,0.27133796,-0.12804922,0.37365362,-0.23735136,0.2820825,0.3576105,-0.20275512,-0.030886462,-0.021404611,-0.16162293,-0.17887019,-0.1472339,-0.3224214,0.20324367,-0.6876614,0.25682566,-0.39010996,0.7265386,0.19352359,-0.8572713,0.3839089,-0.63586134,0.15618804,-0.19431141,0.73324364,0.92004,0.29420418,0.06251621,0.65419936,-0.44003862,0.12099722,-0.32216066,-0.2752137,0.029341193,-0.28553173,-0.1122492,-0.518011,0.009539082,-0.24925604,-0.090222396,-0.26038107,0.7292022,-0.47385916,-0.22052199,0.085740566,0.61524665,-0.32957175,-0.03789268,0.7709392,1.012321,1.1105579,0.24649826,1.2206439,0.32222998,-0.08317955,0.097202554,-0.069852844,-0.7691877,0.30907437,0.5549273,0.6117422,0.37558156,0.043099284,-0.05244871,0.43149108,-0.43651742,-0.03528942,-0.34050336,0.2513604,-0.20512508,0.044634975,-0.4103002,-0.058775686,0.051619615,0.19262959,-0.091916524,0.28927422,-0.27193692,0.14456634,0.19689618,1.4883807,-0.3042158,-0.0416095,0.06300915,0.2997255,0.24799575,-0.31428754,-0.118312486,0.124391474,0.53452355,0.0055466155,-0.74366105,0.031306855,-0.17037216,-0.3467662,-0.28122312,-0.14525904,0.08170335,-0.16713764,-0.3750366,-0.04491265,0.02927388,-0.375337,0.39547378,-2.367722,-0.48852417,-0.14909518,0.3348931,-0.24432498,-0.4908747,-0.114708535,-0.3814731,0.4982827,0.3281468,0.4110542,-0.5920441,0.52226055,0.35958958,-0.47880194,0.023630679,-0.86376643,-0.15168859,-0.05359812,0.45590562,-0.07756432,-0.12546079,-0.16369277,0.2390647,0.5041081,-0.16485144,0.14150015,0.3617013,0.4207379,0.12048879,0.58761096,-0.045486443,0.43875158,-0.5278028,-0.23223859,0.52353925,-0.09771967,0.40700278,-0.11028034,0.18626364,0.35476902,-0.6920915,-0.8785508,-0.7946874,-0.5828556,1.3077654,-0.30623454,-0.36485144,0.18109155,-0.20015867,-0.18866454,-0.091471285,0.41541842,-0.16545725,-0.121408395,-0.8728767,-0.040811162,0.054488692,0.3746599,0.00909683,-0.13143028,-0.3533689,0.58693707,-0.1499047,0.45544153,0.4076959,0.20175138,-0.042053267,-0.38651678,0.054867312,1.1325957,0.43387216,0.12827595,-0.39432192,-0.29551476,-0.40755078,0.10536484,0.010899156,0.39995575,0.849224,-0.14472963,0.06997547,0.27467936,-0.037307106,0.04429078,-0.27475446,-0.338026,-0.07032628,0.28324935,0.61992264,0.36961064,0.031177392,0.41129833,-0.040143736,0.026338339,-0.2345925,-0.42863843,0.26655474,1.0361362,-0.11481038,-0.19507271,0.56712514,0.43963522,-0.1967706,0.58292955,-0.7843971,-0.31904566,0.1459752,-0.02980984,-0.31722662,0.28156057,-0.4944772,0.34034425,-0.9900054,0.3546268,-0.5340718,-0.3488876,-0.62109476,-0.18238078,-3.1196806,0.44618753,-0.029687634,-0.15116364,-0.082035184,-0.1938936,0.6683581,-0.37305334,-0.6643287,0.12090527,0.029016338,0.57847875,0.070967026,-0.020104386,-0.32142365,-0.2744982,-0.41089085,0.19681683,0.22212833,0.25686657,-0.19102472,-0.47829753,-0.1333188,-0.27253386,-0.1507862,-0.02466631,-0.6925977,-0.38330775,-0.18982461,-0.415501,-0.23562652,0.52734715,-0.2562888,-0.04347386,-0.22317782,-0.009918408,-0.027553381,0.45083243,0.1875472,0.07309022,0.16362087,-0.07304721,-0.31439167,-0.31678888,0.09270248,0.13492714,-0.02086655,0.22236589,-0.14824493,0.26250914,0.55285966,0.48303777,-0.25400585,0.83533734,0.5545786,-0.14426787,0.3811495,-0.15712386,-0.34475374,-0.57417065,-0.08274284,-0.26683715,-0.42768103,-0.5701338,0.016330512,-0.22807106,-0.7187139,0.59371865,0.014940767,0.021169428,0.10255599,0.41537535,0.3328718,-0.090524554,-0.076754145,-0.16193035,-0.17772263,-0.5491308,-0.5523635,-0.6521847,-0.52669495,0.08567715,1.1598423,-0.19952165,0.12496524,0.039038654,-0.11497749,0.08294879,0.12892042,0.010216151,0.28408062,0.49366167,0.09702572,-0.7161629,0.3573791,0.1169256,-0.013639963,-0.4829243,0.13206512,0.6330129,-0.6550485,0.37453857,0.35152626,0.10255264,0.09148427,-0.6796414,-0.091746874,0.2435934,-0.36784172,0.5103134,0.22737892,-0.9381351,0.54946256,0.31753772,-0.13923016,-0.7584663,0.5611378,0.12356232,0.027622882,-0.15675776,0.3134497,0.010032911,0.101632476,-0.33442086,0.4598989,-0.36800697,0.28629553,0.25030798,-0.11301732,0.18927394,-0.32156056,-0.15678881,-0.6764224,-0.0055828644,-0.66489786,-0.19044271,0.21136299,-0.10113992,-0.010835638,0.14107326,0.19265996,0.52493227,-0.28138658,0.12573281,-0.097607225,-0.36486033,0.23283114,0.6289987,0.4111244,-0.36317965,0.6900485,0.07335812,-0.21584529,-0.31437322,0.08621882,0.33954805,0.07629788,0.37638298,-0.11250259,-0.008371372,0.3956599,1.1469468,0.22074474,0.49144202,0.019358588,-0.10962452,0.26773706,0.15950729,0.088829234,-0.23260704,-0.41610262,-0.1118209,0.06222713,0.16880178,0.67860246,0.15230824,0.28436428,-0.17848459,-0.12904322,-0.03415456,0.15200552,0.04443002,-1.2787423,0.23594679,0.24895647,0.5232239,0.76799625,-0.07457602,0.2308382,0.35534498,-0.42065176,0.06844299,0.23157993,0.0010500596,-0.5239785,0.50577074,-0.7056204,0.34492555,-0.13462329,0.12146202,0.22476067,-0.07069064,0.52656996,0.8281014,-0.048192725,0.21396562,-0.020728858,-0.15558451,0.18949996,-0.26900026,0.017966133,-0.41014272,-0.37540454,0.72294456,0.5151953,0.4673304,-0.16341226,-0.07854454,0.08960538,-0.20394881,0.18503548,-0.17021649,-0.10021261,-0.18300864,-0.6014151,0.005469868,0.7527627,0.21786243,0.08555794,0.05579756,-0.40181917,0.33002874,-0.049717188,0.09789925,-0.0038889234,-0.9201653,-0.00042996727,-0.49184653,-0.09790272,0.42313597,-0.28199285,0.19258785,0.24875434,0.07457373,-0.23310898,0.24899231,0.05080323,0.72218996,0.1679952,-0.13918866,-0.32299584,0.05163241,0.1684263,-0.34125912,-0.113160305,-0.30158243,0.045189016,-0.8954979,0.53460723,-0.12922071,-0.35724303,0.4429922,-0.012467654,-0.046891175,0.6718743,-0.08407712,-0.16573665,0.071483225,-0.096066564,-0.2854151,-0.22099121,-0.019247394,0.33328804,0.04686896,0.06141373,-0.13423043,-0.0074849497,-0.05828288,0.5192041,0.13972646,0.31852025,0.4078536,0.25436798,-0.40298298,0.18238273,0.19789293,0.48273352,-0.05381656,-0.028237453,-0.096750624,-0.18837427,-0.29617378,0.15005389,-0.18409549,0.3369415,0.06982916,-0.2900113,0.7340208,0.23710878,1.1113402,-0.0042894343,-0.33210456,0.03527877,0.49352705,-0.03475352,-0.17196491,-0.41806954,0.7787014,0.5088751,-0.042181857,-0.10263073,-0.4919492,-0.4535219,0.12563182,-0.338558,0.0767287,-0.06464363,-0.7777891,-0.27477774,0.17958298,0.31352133,-0.0046432843,-0.1595178,0.12888788,0.19341734,-0.036292247,0.27124748,-0.4715307,-0.063125946,0.22436133,0.32216972,-0.110022396,-0.04473663,-0.5200168,0.28153676,-0.65497506,-0.00077039865,-0.4398604,0.13235837,0.08861291,-0.29784083,0.21645238,0.16683443,0.30856153,-0.25984114,-0.38593,-0.056931496,0.6278118,0.2234353,0.27469504,0.68511266,-0.41704607,0.26109287,0.0036004256,0.3590902,1.0242101,-0.3374534,-0.13733724,0.16490872,-0.3748466,-0.6179203,0.33862764,-0.5076745,0.26990655,0.22659317,-0.37885872,-0.47339025,0.3379879,0.20110911,0.043362882,-0.045164183,-0.6758273,-0.010145981,0.1812498,-0.12567177,-0.19964422,-0.33282107,0.094834715,0.8168335,-0.3403622,-0.44446167,0.092251614,0.28043798,-0.31658015,-0.6685062,-0.06232712,-0.3360926,0.23567086,0.23679362,-0.1389435,-0.005990975,0.111276895,-0.58706385,-0.05785968,0.29119927,-0.29320657,-0.03969677,-0.3483117,0.0030769156,1.0115353,-0.18273272,-0.2049503,-0.5735253,-0.616244,-0.70492613,-0.19339278,0.5562042,0.48051813,0.27381855,-0.4904575,0.1579205,-0.16674998,-0.029942453,0.1372555,-0.33481723,0.4527966,0.09400467,0.42374924,-0.050313175,-0.7837654,0.22982107,0.07581735,-0.12312348,-0.42138305,0.49735767,-0.16029105,0.84035736,0.084039174,0.034765158,0.084673434,-0.5912992,0.24592717,-0.21605536,-0.075558834,-0.83288,-0.0124137355,940 +777,0.5414034,-0.29187396,-0.48492938,-0.18283173,-0.27575257,0.28272635,-0.04783093,0.60284173,0.20971581,-0.15193993,0.015812894,-0.10090521,0.008303189,0.48744124,-0.041589893,-0.70353,-0.1195546,0.04443189,-0.62449354,0.32730582,-0.44746944,0.31546313,-0.10382271,0.46716124,0.1015272,0.34186566,0.07615352,0.09732726,0.11695364,0.21870448,-0.15898426,0.25764114,-0.5703259,0.054140504,0.02239306,-0.30412772,-0.16224636,-0.38091025,-0.3262804,-0.52577037,0.40467578,-0.69545054,0.5422525,-0.1778566,-0.40652987,0.18326932,-0.1539077,0.13375422,-0.47825903,0.010284694,0.20772758,-0.022664186,0.13509914,0.005993265,-0.18461339,-0.40136257,-0.54714525,-0.050712224,-0.48641247,-0.060315844,-0.14131509,0.11751737,-0.27055293,0.02256938,-0.06513841,0.31606042,-0.3581587,0.054457087,0.34219244,-0.23533684,0.23018925,-0.45271474,-0.091682725,-0.18514207,0.2370412,-0.093483336,-0.2258771,0.13033447,0.3727838,0.5347896,-0.092470735,-0.13443917,-0.2540135,0.20952933,-0.0713741,0.6016711,-0.030851604,-0.18717869,-0.35046944,-0.14005865,0.07688394,0.04179684,0.10963464,-0.35440108,-0.06588861,-0.039446894,-0.10921558,0.18489657,0.34466755,-0.3874799,-0.24921441,0.38126138,0.4869237,0.23830803,-0.042120907,0.17271401,0.05737514,-0.6285791,-0.23336846,-0.002346965,-0.051540844,0.5837039,-0.18808402,0.32193714,0.73582643,-0.020923348,0.13699828,-0.1670226,-0.0944029,-0.1842115,-0.28167135,-0.089889556,0.13020712,-0.35716695,0.09412698,-0.082131095,0.46838835,0.2346279,-0.8463577,0.37407142,-0.47824675,0.08918477,-0.1602475,0.47485238,0.9188125,0.3954331,-0.03257996,0.8330625,-0.5976974,0.029660206,0.1202189,-0.35681966,0.3476954,-0.042969253,0.023601161,-0.59411323,-0.0839009,0.17437838,-0.052008025,0.14293791,0.25324443,-0.5060718,-0.120473295,-0.04185572,0.5754147,-0.3610726,-0.2117245,0.6162964,0.90102565,0.8002202,0.024211653,1.2617582,0.29910094,-0.1640972,0.28110665,-0.30064282,-0.6157448,0.14212188,0.32794094,0.12526466,0.60889095,0.08210134,-0.06414897,0.5379529,0.07053598,0.08244698,0.048403203,0.016922494,-0.07134379,-0.18585855,-0.3514009,-0.28721416,0.10481025,0.052571084,-0.10279349,0.27026102,-0.2796725,0.38086668,0.19512646,1.7698922,0.06639911,0.09419597,0.011945675,0.2827605,0.24157077,-0.25073877,-0.28141534,0.31442994,0.4178826,0.09578942,-0.51766497,0.31311384,-0.111764774,-0.50898874,-0.07412654,-0.34437153,-0.23008196,-0.21933553,-0.6100624,-0.023013212,0.03310906,-0.22766942,0.46213335,-2.785773,-0.24024637,-0.12160066,0.36827692,-0.29594773,-0.35799688,-0.27592036,-0.25071377,0.07641487,0.50874263,0.34274894,-0.7189826,0.36465338,0.2679572,-0.36078814,-0.09900802,-0.48310485,-0.18708947,0.14878228,0.11635113,-0.11268295,0.034505542,0.003649794,0.44884926,0.51637834,0.01900418,-0.09726494,0.20683624,0.53960073,0.08422288,0.48394525,0.0053063747,0.5282661,-0.19556847,-0.11715314,0.40835983,-0.39695734,0.3373794,0.11131582,0.2499343,0.35939044,-0.36374468,-0.899459,-0.57220805,-0.31830075,1.2256334,-0.4035021,-0.2543547,0.23498361,-0.1365578,-0.2578721,-0.046923574,0.4438538,-0.016480394,-0.16739509,-0.77634394,-0.13773154,-0.052130178,0.22688964,-0.020135237,-0.041505676,-0.2331126,0.6297182,-0.0058293203,0.5582177,0.3984751,0.14481264,0.071127996,-0.56445825,0.08936406,0.6302192,0.32559088,0.22767133,-0.17178954,0.048028152,-0.25731856,0.118246004,0.1296694,0.459532,0.7142481,0.0764916,0.25826314,0.28926295,0.028142361,0.017538745,-0.030111028,-0.23678988,-0.029719405,-0.04376871,0.40841436,0.79002225,-0.30724138,0.2737892,-0.16419117,0.11343467,-0.17429979,-0.5624536,0.65365696,0.85480225,-0.21730043,-0.12323756,0.30822402,0.30098736,-0.34449452,0.32786167,-0.6293841,-0.1332263,0.4849952,-0.121499576,-0.23853882,0.30058515,-0.2569004,-0.031160366,-1.0031046,0.13035509,0.04634607,-0.29803762,-0.44062263,-0.13319013,-3.8546262,0.17800514,-0.15823385,-0.30752066,-0.18794395,-0.11662921,0.5205289,-0.72039616,-0.68713444,0.07891457,-0.045471072,0.5396636,-0.03850166,0.17212875,-0.3740702,-0.17050654,-0.1623001,0.18627074,0.105902284,0.31391206,0.10866996,-0.42882687,-0.13626072,-0.13494833,-0.5535409,0.079384595,-0.5859306,-0.5671108,-0.167015,-0.44781816,-0.13075279,0.65710026,-0.26706177,-0.100475624,-0.16819248,-0.041592777,-0.31861386,0.36433014,0.07909175,0.055485018,0.028309971,0.069614775,-0.12661296,-0.27387062,0.19283369,0.13293782,0.26333362,0.29755887,-0.28176948,0.18392897,0.64401424,0.650986,-0.04411375,0.5502637,0.38270423,0.01917217,0.40715155,-0.24979003,-0.11867054,-0.6099328,-0.26243553,-0.2658106,-0.40123194,-0.51313287,-0.18456878,-0.35621977,-0.81157434,0.2558603,-0.087371096,0.17256406,-0.01107817,0.1563176,0.49420038,-0.31665665,0.10768938,-0.057693098,-0.24901077,-0.52834195,-0.38146728,-0.5270251,-0.6300933,0.3842471,1.1093332,-0.17112626,-0.060245767,-0.052250262,-0.33452857,0.019315593,-0.038352575,0.15066266,0.18383534,0.18486819,-0.21114364,-0.7059049,0.43013003,-0.25846404,-0.15410699,-0.65034986,0.024059048,0.52936757,-0.5142403,0.5050452,0.21646562,0.12608257,0.1818373,-0.54054606,-0.24167325,0.031725228,-0.116741896,0.5363549,0.2988265,-0.61337346,0.41083467,0.20577511,-0.14786649,-0.52696896,0.5293007,0.01617633,-0.13373922,-0.050750785,0.25981307,-0.009714266,-0.041406844,0.00935909,0.17656612,-0.5289058,0.21473667,0.39923924,0.047809236,0.40362102,0.14614004,0.10620949,-0.5514539,-0.07369269,-0.41496673,-0.15571769,0.17280348,-0.02155423,0.38857645,-0.06513883,0.15304272,0.3637275,-0.3208939,0.10024476,0.11148059,-0.29748318,0.23908521,0.5016986,0.4041267,-0.4462994,0.38478342,0.019823859,0.17648548,0.2553176,0.17363968,0.49346623,0.4265246,0.21864134,-0.105757125,-0.13575037,0.19634192,0.6596471,0.10396635,0.29045746,0.08176903,-0.23836938,0.2635217,0.17146876,0.19724265,-0.15351209,-0.41418302,-0.018977843,-0.016856235,0.3155268,0.4805147,0.0885718,0.21681312,-0.19383945,-0.31380588,0.21087044,0.13096382,-0.026635386,-1.0763967,0.23009561,0.32640073,0.73508173,0.41796872,0.0065369513,0.052920163,0.22781955,-0.21476632,0.23201388,0.509407,0.004526762,-0.6044523,0.55267435,-0.5550085,0.40292642,-0.12303492,-0.10641094,0.19551522,0.21480507,0.4261341,0.8452019,0.024205161,0.04040154,0.1708734,-0.39839157,-0.089600295,-0.38183865,0.04464394,-0.74748874,-0.14077783,0.57417417,0.5408398,0.227492,-0.45731786,-0.103142075,-0.060286883,-0.111513495,0.07719595,-0.038405236,0.047966726,-0.09802704,-0.69040257,-0.44303843,0.5046133,-0.047136646,0.008536767,-0.040316902,-0.5135015,0.1189398,-0.16952607,-0.1364354,-0.034306843,-0.8693666,-0.03255334,-0.32242626,-0.527627,0.4431388,-0.0894537,0.088250235,0.17463714,0.03251829,-0.37173754,0.35134125,0.046909627,0.9406162,-0.052427173,-0.1221938,-0.55030906,0.22258955,0.39270127,-0.22557057,-0.31932878,-0.3992965,-0.006061534,-0.13863996,0.4239464,0.0798107,-0.18551207,0.104624115,-0.06970461,0.16802181,0.41080725,-0.24115291,-0.16954687,-0.10567402,0.026432395,-0.4102206,0.078636274,-0.40950865,0.3326267,0.15524796,-0.02443547,0.115768865,0.040615007,0.022305112,0.19795993,0.28581172,0.3024634,0.53339964,-0.113181114,-0.35938406,-0.10289614,0.16636251,0.39562672,0.096799955,-0.19829275,-0.5680693,-0.48714367,-0.31149906,0.24458303,-0.24251267,0.26334518,-0.038503535,-0.40313962,0.7005241,0.23886864,1.0959735,-0.068611465,-0.21812584,0.11637715,0.4113421,0.19956627,-0.09252139,-0.35294473,0.8688921,0.51923126,-0.15709901,-0.32248205,-0.081926934,-0.30947113,0.23715934,-0.28349292,-0.07006268,-0.2000892,-0.8448034,-0.14424962,0.16368856,0.1485912,0.14387348,-0.012866745,0.04350744,0.11468831,0.08270575,0.289096,-0.41595384,-0.18994966,0.2405749,0.28278166,-0.021932097,0.21806255,-0.4083126,0.44622883,-0.5654306,0.09787187,-0.5335096,0.0712545,-0.038637932,-0.2276539,0.09691828,-0.005203531,0.33906493,-0.24059154,-0.34578726,-0.4023081,0.63249457,0.20737761,0.370878,0.744012,-0.22018598,-0.086691275,0.1325888,0.46700874,1.1183095,-0.023062166,0.010863524,0.39977133,-0.3029838,-0.630043,0.0189829,-0.2804132,0.44958904,-0.16106743,-0.16742116,-0.4357788,0.36103395,0.06287434,0.09818191,0.066360705,-0.5821713,-0.25674558,0.4255096,-0.3242386,-0.27679074,-0.36531323,0.15298764,0.6454543,-0.4123203,-0.29553074,0.13902806,0.29071018,-0.15193847,-0.45535567,0.044549625,-0.49166125,0.25696608,0.1345803,-0.33484906,-0.065451115,0.0772064,-0.3417456,0.27625805,0.24196583,-0.26392132,0.04605089,-0.25679573,-0.14166485,1.0332605,0.04739976,-0.0792474,-0.7478791,-0.47579062,-0.9373775,-0.4339466,0.2820502,0.16810696,-0.1622982,-0.6191069,0.06846878,-0.09806288,0.042660985,-0.11184808,-0.3072317,0.5392312,0.10664903,0.4502578,0.050145403,-0.91059846,0.0360161,0.116913766,-0.4058684,-0.57328135,0.61969787,-0.10234405,0.64039654,0.06501717,0.05942836,0.17541605,-0.53431237,0.211607,-0.46222872,-0.06285615,-0.63799626,0.18569122,944 +778,0.4620255,-0.3336522,-0.38747963,-0.14516695,-0.27364653,0.0923826,-0.025304334,0.7525312,0.21343899,-0.14352667,-0.19283526,-0.1250948,0.1530096,0.51712203,-0.10478521,-0.43011,-0.057805378,0.09809502,-0.6587363,0.49454,-0.35267323,0.0063921395,-0.17785197,0.43838373,0.4078899,0.2495947,-0.06376739,0.13864547,-0.0133784,-0.035402756,-0.12652084,0.29492408,-0.27617168,0.21002564,-0.053292606,-0.2198422,-0.17275156,-0.6562749,-0.36370867,-0.7189557,0.5175917,-0.76828766,0.41705757,-0.10634501,-0.2115102,0.4898763,0.14235114,0.31200266,-0.320626,-0.32379696,0.14502588,0.061991308,0.0035472834,-0.1967192,0.05178293,-0.09963727,-0.49053332,-0.09486472,-0.27467564,-0.33787948,-0.25208634,-0.0052981805,-0.2846954,0.0664775,0.08392501,0.6500317,-0.35698277,0.27167416,0.18544905,-0.13554482,0.092649296,-0.6138266,-0.19784838,0.0053483224,0.3112421,-0.1006944,-0.26384044,0.38820055,0.24781606,0.12884717,-0.18916747,-0.07200415,-0.23680128,-0.07340648,0.07459148,0.5142117,-0.12972094,-0.6939188,-0.017384373,0.12494621,-0.019605644,0.26905677,0.25980493,-0.10225087,-0.2326054,0.04360817,-0.1632142,0.43545672,0.329361,-0.15662383,-0.18663722,0.40582812,0.49226445,0.30725527,-0.12493282,-0.24709596,-0.033198114,-0.56485265,-0.025931166,-0.1808917,-0.1958217,0.43222365,-0.093251295,0.32811072,0.6245361,-0.0057402113,-0.11024892,0.12890564,0.14541107,-0.13060649,-0.3635171,-0.2949714,0.18396963,-0.3593933,0.28675237,-0.013508008,0.6582568,0.28590736,-0.6196285,0.36900395,-0.5288063,0.14098826,-0.13739344,0.22912754,0.726842,0.39243367,0.29503042,0.60526025,-0.25723454,0.061769065,-0.16808893,-0.31763092,-0.029611556,-0.19554034,0.08723442,-0.60565203,0.023424588,-0.06790661,-0.15736485,0.18923858,0.15432447,-0.47720015,-0.088415846,0.12931028,0.81468934,-0.26395994,-0.120891996,0.86008996,1.0936083,0.9032142,-0.023192255,0.80767214,0.08214359,-0.19050018,0.4418387,-0.18588161,-0.64379543,0.25172764,0.4564047,-0.043291263,0.11018184,-0.10830032,-0.0015512086,0.33789495,-0.2544146,0.008938184,0.012336057,0.27258748,0.4476647,-0.12042691,-0.39851686,-0.36356786,-0.19148803,0.006088972,0.024127774,0.18354024,-0.14690992,0.49923265,-0.09721657,1.7816083,0.17438558,0.0764531,0.11851385,0.5401267,0.22728752,-0.264592,-0.373758,0.33791244,0.3892418,0.11924553,-0.60275686,0.40308857,-0.21858343,-0.38021776,-0.042133763,-0.5625463,-0.1821743,-0.022614025,-0.3092955,-0.17560251,-0.1489308,-0.118762165,0.44872338,-3.2687507,-0.19193453,-0.07233132,0.34267914,-0.21131057,-0.32831177,0.09657158,-0.43616915,0.41079757,0.2890731,0.5317541,-0.46617648,0.27423382,0.2708876,-0.7264821,-0.2221811,-0.45651194,-0.11670187,0.15684032,0.32672197,-0.1069539,-0.08170243,0.1063056,0.22960837,0.48773143,0.045818754,0.16023827,0.373743,0.33968312,-0.09135453,0.6126017,-0.4057255,0.5191308,-0.24739161,-0.10543333,0.120966986,-0.24698733,0.22374307,-0.21955885,0.13788454,0.5946398,-0.36714104,-1.0518993,-0.5632556,0.11855741,1.1618663,-0.25330368,-0.300283,0.37370422,-0.64131653,-0.05995264,-0.15888868,0.39963058,-0.028616332,-0.18761803,-0.6337238,0.13505092,-0.018699776,-0.09010513,-0.045292266,-0.28012672,-0.3837853,0.6126633,0.076435484,0.52709824,0.23192427,0.052338798,-0.3749884,-0.27740702,0.09123802,0.3681952,0.34547094,-0.010213063,-0.0066423784,-0.122580715,-0.36791593,-0.21662313,0.15155905,0.5249915,0.41356128,-0.028508268,0.30757868,0.12435711,-0.052348163,0.08443442,-0.1309641,-0.15515406,-0.13671125,-0.046035,0.4835365,0.668126,-0.111535564,0.64429945,7.381806e-06,0.16089013,-0.029426757,-0.41869995,0.535388,0.8805009,-0.1886184,-0.4285041,0.40762097,0.35905713,-0.1510007,0.24366692,-0.25599423,-0.063298024,0.6636188,-0.27909103,-0.37078416,0.12808064,-0.13203011,-0.049912576,-0.68183327,0.06725981,-0.32930377,-0.611992,-0.40523928,-0.07719779,-3.0338864,0.097256035,-0.17908737,-0.2984608,-0.2263284,-0.27889362,0.0036922486,-0.5999332,-0.58251417,0.29981977,0.08336219,0.8779498,-0.12963778,0.017918877,-0.14682773,-0.2969003,-0.28556368,0.08026947,-0.080080524,0.49321076,-0.023156065,-0.40258107,-0.046569373,-0.028672457,-0.6226212,0.13498323,-0.44802874,-0.2512191,-0.11237425,-0.5387546,-0.37340996,0.6634341,-0.18729459,0.11614284,-0.08954922,0.03000512,-0.080001995,0.21131016,0.031113936,0.12720877,0.087272644,-0.08271174,0.22608946,-0.20368645,0.24305223,0.06886157,0.39289874,0.117659084,-0.01223212,0.35649157,0.44335905,0.6939065,-0.059240304,0.7603314,0.4276388,-0.005151932,0.2842422,-0.3598803,-0.30550286,-0.27278602,-0.23915738,0.18017404,-0.296124,-0.36614484,-0.21523578,-0.4074282,-0.61689657,0.4324387,0.09711846,0.1936159,0.007236202,0.17727591,0.65745604,-0.33777648,0.088644296,-0.008962672,-0.055490196,-0.6747738,-0.0686721,-0.51546794,-0.38658148,0.100185394,0.7365329,-0.32699093,0.025202077,-0.10596996,-0.44890344,0.18966678,0.1715531,-0.13418707,0.34129253,0.17890249,-0.30116066,-0.6076256,0.38866812,-0.24485157,-0.2552857,-0.5482169,0.36884242,0.31434616,-0.41720062,0.6355343,0.16136946,-0.05743474,-0.39842063,-0.33641678,-0.119100384,-0.011036603,-0.18395633,0.19003569,0.2589506,-0.84286696,0.40813163,0.3939161,-0.22011214,-0.814268,0.5048171,-0.03774563,-0.3593661,-0.06303402,0.1712756,0.44719124,-0.00014650592,-0.3020299,0.14843409,-0.44073015,0.22358707,0.006031314,0.0055534793,0.17678261,-0.13301036,0.0017841,-0.64588267,0.0663406,-0.36064127,-0.27573916,0.31071785,0.15324256,0.27929145,-0.031295035,0.10844188,0.24309501,-0.25104374,0.10885258,-0.16226722,-0.34906787,0.19551413,0.44020584,0.44759914,-0.44181272,0.53174806,0.0027213509,0.016610801,0.31831792,0.011220806,0.28857735,0.16619538,0.41400072,0.07926467,-0.31905046,0.22103374,0.65293133,0.13043298,0.29512593,0.031616144,-0.026226558,0.010448864,0.019671323,0.21351221,0.100937255,-0.53197396,0.12607032,-0.28741857,0.10706796,0.5848037,0.18103038,0.04660966,0.012966385,-0.5129118,-0.05738216,0.20820533,0.03484703,-1.1860902,0.52227604,0.22992395,1.084044,0.36022732,0.010224302,-0.20414028,0.77072513,0.090475455,0.15354219,0.3072787,-0.012638152,-0.49396423,0.54366666,-0.90804,0.649627,0.09623839,-0.12367415,0.048005626,0.044878226,0.31724685,0.6140284,-0.18868293,-0.06605168,0.1390041,-0.43583834,0.2369047,-0.469012,-0.1850802,-0.62064964,-0.25058043,0.3543279,0.50853336,0.29157048,-0.1600356,0.05225003,0.15435672,-0.15377559,0.081903495,0.14145502,0.016366767,-0.034683388,-0.784422,-0.14413546,0.3332283,-0.0692245,0.39372367,-0.038823403,-0.034876265,0.29066837,-0.1713092,-0.0643834,-0.07301992,-0.62644136,0.15247776,-0.31163815,-0.42732388,0.43496567,-0.05975406,0.23441403,0.2554697,0.0629773,-0.1047393,0.57423955,-0.13479562,1.0121473,-0.17027651,-0.16106087,-0.3426369,0.13796307,0.08337101,-0.13392518,0.1075051,-0.3791322,-0.1678246,-0.41760942,0.6021069,0.08065455,-0.3084594,-0.10306204,-0.18991295,0.1813185,0.55615354,-0.21011013,-6.8293166e-06,-0.39880323,-0.28961036,-0.27313542,-0.32285628,-0.08150008,0.30867767,0.24174435,0.15542592,-0.12962396,0.003605939,-0.026625248,0.57180136,-0.1275699,0.5017081,0.21703003,0.13871692,-0.066954635,-0.27442712,0.30181462,0.4905681,0.07194873,-0.24418351,-0.48753884,-0.47574407,-0.32764876,0.13204397,-0.03474429,0.5411777,0.036752254,-0.06692138,0.4456964,-0.24932994,1.0506829,-0.00093575165,-0.3386407,0.23607701,0.45372853,-0.027645338,-0.15674004,-0.15038344,0.6755371,0.28385904,0.121453844,0.004822002,-0.31155604,0.042443596,0.31973416,-0.20584208,-0.08304921,-0.037247226,-0.43920198,-0.28888667,0.043298006,0.12801851,0.45172375,-0.19349553,0.039506946,0.28045604,0.05797885,0.13351148,-0.27478462,-0.1909357,0.33408102,0.18296582,-0.044213388,0.047189217,-0.5887724,0.4583373,-0.36727974,0.10399104,-0.25376394,0.23919128,-0.26452065,-0.23051938,0.23309955,0.14639364,0.31427124,-0.16457035,-0.39394924,-0.29924864,0.49481204,0.2427095,0.051819555,0.3667819,-0.23508745,-0.08471397,0.12761012,0.4728389,0.5064235,-0.17654863,-0.06051796,0.22389992,-0.44973162,-0.6236111,0.48437345,-0.07472068,0.31914705,0.20430185,0.22019173,-0.66556835,0.28098553,0.3065853,0.12579955,-0.17257258,-0.61390936,-0.28614515,0.31762916,-0.2987817,-0.14714424,-0.43812215,-0.042460956,0.44713226,-0.21905349,-0.23784201,0.1437988,0.11332765,-0.02206282,-0.31016794,-0.061801538,-0.4458211,0.27117598,-0.19824535,-0.32419878,-0.38686484,-0.034546643,-0.47337145,0.33827877,-0.33473304,-0.25956914,0.07946663,-0.12578672,-0.106188424,1.0379083,-0.29007137,0.2285352,-0.49470586,-0.4813035,-0.58723485,-0.3524616,0.41226763,-0.04699522,0.010728375,-0.7367169,-0.052794613,-0.07887439,-0.18327525,-0.21477446,-0.33251607,0.34617144,-0.012824496,0.2879058,-0.022016622,-0.73485315,0.37722155,0.016437503,-0.12979089,-0.58463866,0.34874216,-0.09502939,0.67655176,-0.0760464,0.14136289,0.19870354,-0.15849994,-0.21747945,-0.25671098,-0.24574691,-0.40024525,0.14854406,947 +779,0.30555272,-0.2786982,-0.5565662,-0.010603988,-0.2657715,-0.20521608,-0.044047438,0.67431694,0.08604646,-0.522303,-0.07800913,-0.23173569,-0.02996291,0.40411136,-0.24419403,-0.44363025,-0.17028926,0.15542604,-0.2244629,0.47320336,-0.25759217,0.22785218,0.023793302,0.4726916,0.062938675,0.29982743,-0.013154681,-0.0059377644,-0.29837218,-0.20604748,-0.050473254,0.17810924,-0.711715,0.025499392,-0.15021703,-0.6396455,0.081942745,-0.52550584,-0.30910528,-0.750347,0.23765662,-0.81302357,0.5517579,0.1497393,-0.19617778,0.20937075,0.1438422,0.4154352,-0.11394898,-0.021719387,0.17450668,-0.12510088,0.080808,-0.1986364,-0.38095394,-0.30038527,-0.5523237,0.087133236,-0.38915202,-0.35149992,-0.16514675,0.05569291,-0.32240206,0.040602203,-0.008301661,0.40658304,-0.45479077,-0.09193499,0.25616938,-0.23873717,0.3587874,-0.45770842,-0.086246625,-0.22997192,0.026761252,-0.46384394,-0.09276645,0.41218123,0.07850556,0.58003044,-0.0828847,-0.27853847,-0.48545074,0.1348431,0.011082409,0.35048887,-0.35903925,-0.4995815,-0.061301686,0.0151418215,0.20619027,0.24103469,0.25503537,-0.22002935,-0.05773479,0.09677581,-0.26383206,0.25358513,0.45322946,-0.29269853,-0.20667544,0.19401127,0.6391132,0.18058611,-0.0624935,-0.0048694517,-0.019806175,-0.35200408,-0.27859014,-0.07092133,-0.16219355,0.60773355,0.060624145,0.29176342,0.69348115,-0.26990414,0.07675007,-0.037292227,-0.10054514,0.021216769,-0.32670933,-0.36100787,0.42336434,-0.36042845,0.32660148,-0.083884865,0.6836427,0.23759955,-0.8495938,0.3948536,-0.5965973,0.0908951,0.022727827,0.4978997,0.41818315,0.64884883,0.4764077,0.59335285,-0.5020355,0.095606856,-0.15195307,-0.26108253,0.04952975,-0.20933135,-0.021343552,-0.3917551,-0.008007242,-0.07074057,-0.28925034,0.06590553,0.2083252,-0.62392205,0.0077680647,0.24294876,1.0055379,-0.24679321,-0.116423525,0.6316135,0.9620623,0.9351267,-0.025739614,1.1698006,0.095482275,-0.21753035,0.39478397,-0.10748721,-0.8500052,0.18157683,0.49388367,-0.22951151,0.35741812,0.17118405,0.08600506,0.5419246,-0.3910465,0.14475879,-0.19859725,0.08609818,0.05685819,-0.21338771,-0.41516507,-0.19601887,-0.11564464,-0.081856914,-0.26723883,0.35124862,-0.054801866,0.324158,-0.02342397,1.9718888,-0.018702853,0.18375383,0.14349006,0.64528316,0.017125975,0.08613371,-0.103754245,0.24666959,0.051794544,0.2954692,-0.31773362,0.1339137,-0.19982435,-0.62364125,-0.0938569,-0.2461448,-0.07250799,-0.17282456,-0.4896786,-0.17184687,-0.15045987,-0.14876188,0.3671746,-2.473769,-0.04404735,-0.06614138,0.3303227,-0.34182218,-0.4554568,0.092123955,-0.42703968,0.4785033,0.41298205,0.509302,-0.6731943,0.39932626,0.48203883,-0.4689861,-0.102689,-0.5661587,-0.13450941,0.0036118662,0.29825544,-0.05455361,-0.092826076,0.06773008,0.05023219,0.43369716,-0.16761567,-0.06321465,0.16821083,0.34815195,-0.0072775576,0.5521171,-0.2011461,0.3672175,-0.3878903,-0.25734657,0.35333925,-0.5095958,0.13635494,0.16955422,0.079889566,0.2951453,-0.557468,-1.0214084,-0.7170938,-0.4670847,1.0719854,-0.019268064,-0.34084004,0.39115328,-0.41767973,-0.24777505,-0.2825143,0.35914594,0.008357238,0.17793244,-0.78418064,-0.0151702855,-0.32601225,0.20953362,0.15721534,0.016903698,-0.48587015,0.5998182,-0.12559032,0.4992835,0.58782536,0.08951576,-0.3665612,-0.49705252,-0.031289354,0.9640523,0.37661013,0.24062452,-0.13978621,-0.22215329,-0.3457248,-0.03944208,0.05033608,0.38372344,0.93196255,-0.20565504,0.05256403,0.268964,0.045154355,-0.08681851,-0.17284335,-0.3249191,-0.08695315,0.17224255,0.49830362,0.61037624,-0.28495198,0.4322589,-0.14831915,0.5403516,-0.13326539,-0.42628348,0.23621456,0.70396966,-0.15314414,-0.067556396,0.6933423,0.52086455,-0.48714468,0.5486381,-0.6156064,-0.2272264,0.43588603,-0.16009484,-0.5402709,0.2647598,-0.24277122,0.11189897,-1.0091708,0.26750368,-0.32901594,-0.29951045,-0.63610774,-0.23626608,-3.256419,0.17091331,-0.22198783,-0.21946785,0.015968801,-0.1407738,0.14684604,-0.708697,-0.79738057,0.033292774,0.10285085,0.595893,-0.07583639,0.012335759,-0.2315286,-0.26120883,-0.2660509,0.16623253,0.36936358,0.17083813,0.0443994,-0.64893365,-0.35695145,-0.28845268,-0.56391436,0.07789688,-0.73143566,-0.4138772,-0.29087862,-0.79869944,-0.38624492,0.66956174,-0.2857471,0.07173797,-0.22970408,-0.083427384,-0.17540087,0.32878223,0.1361774,0.19598426,0.008362289,-0.062351044,0.03808696,-0.24169841,0.022965688,0.17767972,0.38985536,0.27349347,-0.22458445,0.22662497,0.63455254,0.9380766,-0.061613306,0.76880455,0.5991261,-0.24827674,0.48686022,-0.40619043,-0.35748595,-0.8037956,-0.370734,0.07399413,-0.33032593,-0.5115987,0.1961766,-0.3983188,-0.80389434,0.8833351,-0.113771886,0.059378207,0.081317954,0.22855149,0.43506587,-0.38254923,-0.17496936,-0.11859333,-0.001968118,-0.64336246,-0.3097224,-0.5164144,-0.5673883,0.03447903,1.1856788,-0.0119540505,0.051943786,0.2550311,0.03408698,0.11596779,0.15137775,0.042162813,0.11108235,0.42399758,0.048711464,-0.59315264,0.43106192,0.052365907,-0.11309297,-0.4623502,0.2376826,0.5584145,-0.7864999,0.54296505,0.19214028,-0.038869467,0.027272075,-0.54841757,-0.1303835,-0.08829293,-0.06168459,0.31343895,0.17989019,-0.76040584,0.26169455,0.70781493,-0.30558902,-0.7836708,0.3176964,-0.110592805,-0.274631,-0.1370016,0.29521468,0.1401858,0.022449017,-0.18303499,0.17676815,-0.41064242,0.096629456,0.48736027,-0.048880365,0.2761248,-0.14621554,-0.104453124,-0.89281696,0.42360395,-0.3922485,-0.27013236,0.39944208,0.029686065,-0.20334387,0.3412047,0.13573608,0.32631472,-0.20121591,0.017373582,-0.044986524,-0.36728376,0.38877508,0.39919728,0.49359387,-0.55274147,0.58575034,-0.061974987,-0.12165502,-0.088019334,-0.18564738,0.516931,-0.07442451,0.14308818,0.12052954,-0.33521253,0.2298632,0.79659724,0.11734501,0.5395627,0.019374022,0.023635488,0.26589817,0.27879512,0.07380401,0.2679373,-0.57046187,0.36818945,0.059476793,0.09911764,0.50697076,0.118865915,0.31484923,-0.15267166,-0.1671171,-0.062670305,0.24143878,-0.046817206,-1.1701052,0.33222535,0.10443126,0.8342024,0.55911785,0.33417588,0.14908956,0.70241034,-0.23131593,0.12676302,0.40869856,-0.11524259,-0.64154524,0.6412112,-0.5936886,0.5273199,0.1372266,0.03971099,0.042208195,-0.102574736,0.5936321,0.6671785,-0.15659246,0.009431945,-0.08275476,-0.11432049,-0.010345142,-0.5199085,0.042596035,-0.41498676,-0.23613669,0.6321163,0.40804517,0.30867055,-0.13419527,-0.04382181,0.12655202,-0.18220781,0.34883624,-0.17759481,0.040918224,0.049334545,-0.37902388,-0.24341632,0.6802485,-0.024797421,0.13341777,-0.1370449,-0.35092264,0.25030047,-0.04800248,-0.23349921,0.008781006,-0.6640076,0.16008925,-0.49624714,-0.26459342,0.3841674,0.14365496,0.19573918,0.13749285,0.10894179,-0.44285825,0.63633597,0.08142789,0.6934416,-0.08633285,-0.17005311,-0.14117303,0.34022665,0.11811658,-0.21737821,0.01882102,-0.1719901,0.09266916,-0.5142929,0.3620137,0.04071915,-0.4050673,0.08962314,-0.174621,0.0071943034,0.44204447,-0.062902324,-0.14931448,-0.090942875,-0.119314395,-0.1596538,-0.35342818,-0.092273474,0.33633834,-0.07990547,-0.11825721,0.0018443695,-0.20139037,0.04779776,0.6963335,-0.10255655,0.32690266,0.29236633,0.12364884,-0.5098032,-0.11682543,-0.043464303,0.50705934,-0.16886891,0.077062,-0.24638191,-0.34916255,-0.30227983,-0.03298823,-0.28178668,0.4824475,0.13628492,-0.4801917,0.8776295,0.17285237,1.458367,-0.10126127,-0.42665973,-0.025291044,0.3915313,-0.12108599,0.04254719,-0.43350407,1.1094123,0.57982796,-0.11842407,-0.23027182,-0.26952806,-0.17825545,0.15956523,-0.25218433,-0.12540701,-0.04989206,-0.5555481,-0.25972295,0.2741973,0.3763245,0.2423699,-0.085901156,0.22601968,0.21034148,0.07143371,0.17677332,-0.27062014,-0.15339667,0.47584504,0.25053674,-0.106025405,-0.06485948,-0.47733572,0.35873228,-0.4059201,0.25996906,-0.3323043,0.11383632,-0.21835232,-0.38327914,0.14533776,-0.059082493,0.3762145,-0.33906284,-0.3381439,-0.1638156,0.48892725,0.114277594,0.20211247,0.6534366,-0.29210597,0.1311525,-0.20379351,0.5088111,0.9254531,-0.18265373,-0.08935519,0.27942723,-0.16675243,-0.5460503,0.435578,-0.13730761,0.01857081,-0.13148911,-0.15041408,-0.56664413,0.13596544,0.28356594,-0.27821323,0.11147017,-0.50594634,-0.15896419,0.13756372,-0.4595909,-0.26391393,-0.4245081,0.17900573,0.70318234,-0.24350159,-0.3234525,0.25962383,0.2699251,-0.13183485,-0.25150442,-0.22273795,-0.1584467,0.23425943,0.18938072,-0.65210754,0.03509098,0.16211806,-0.33083364,-0.17170876,0.27010542,-0.33261207,0.08727844,-0.279961,-0.03424868,1.0011946,-0.014321694,0.16372475,-0.35626096,-0.5802132,-1.0030023,-0.33376652,0.59033763,0.24268572,-0.02191362,-0.5929927,0.007625291,-0.20274268,-0.34512183,0.01056689,-0.2945283,0.26735184,0.097104944,0.55433625,-0.31582177,-0.6283785,0.18616049,0.29817858,0.06200012,-0.55910563,0.5252307,-0.029474076,0.910406,0.08322646,0.010028582,0.47901428,-0.49478182,-0.08642746,-0.2693451,-0.22626819,-0.4626558,-0.056376807,954 +780,0.6949909,-0.11773289,-0.41583735,-0.019228967,-0.38013908,0.28399405,-0.32618877,0.28893808,0.041143224,-0.699907,-0.3555462,0.14678133,-0.15400821,-0.105881214,-0.30988222,-0.736977,0.10711694,0.13169524,-0.2639126,0.83393186,-0.43652982,0.37774655,-0.16996185,0.18673316,0.28306583,0.3705342,0.26754558,-0.06425632,-0.09136633,-0.47327995,0.17644487,-0.0049690465,-0.6739918,0.47188032,-0.08954701,-0.4502816,0.11916445,-0.40146655,-0.3401173,-0.73258656,0.42265394,-0.9204824,0.5073035,-0.0021971373,-0.26821515,0.15754022,0.2850096,0.12723075,0.1369541,0.038653255,0.15390211,-0.17383562,-0.058607683,-0.4291973,-0.2243438,-0.49277526,-0.557696,-0.0549802,-0.4275952,0.024530906,-0.35812286,0.2725149,-0.20927748,0.000212541,-0.31771293,0.016972143,-0.50355947,-0.010320475,-0.03455949,-0.032156054,0.04622917,-0.6722091,-0.2638119,-0.26495135,0.18927242,-0.048122432,-0.019166008,0.5120326,0.12378338,0.51319575,0.15592988,-0.22863261,-0.3142718,-0.16208938,0.44765678,0.48617914,-0.3861346,-0.22577451,-0.23265529,-0.2162706,0.7470633,0.3454752,0.14852849,-0.13346674,0.15521383,-0.10369281,-0.24007383,0.6257165,0.77736974,-0.46974605,-0.13486482,0.2653705,0.526117,0.10098905,-0.2535804,0.078612894,-0.10307048,-0.3285324,-0.40065092,0.23733616,-0.16452448,0.2804557,-0.20637536,0.085277595,0.47659022,-0.41100237,0.41613638,0.24609672,-0.123557165,0.04087483,-0.16771021,-0.30730283,0.35114706,-0.59599197,0.26409242,-0.5003854,0.8932673,-0.040494718,-0.62353545,0.45332056,-0.547985,0.12877963,-0.0033173584,0.68612,0.5961215,0.62488467,0.2182441,0.81583464,-0.21549733,-0.03158835,-0.108796306,-0.124138586,0.03742162,-0.044550594,-0.008070505,-0.2513043,0.09154768,0.024409793,-0.027228603,-0.1852625,0.6383832,-0.46352154,-0.21490662,-0.019504238,0.72359204,-0.34378174,0.052925825,0.7336271,1.1593759,0.88083637,0.044669714,1.1935996,0.13595237,-0.122022636,-0.2834385,-0.1260121,-0.63775784,0.23374686,0.43850005,-0.2512862,0.44221255,0.20992129,-0.04959344,0.19466877,-0.63871384,-0.12017281,-0.20136715,0.51379883,-0.098197505,-0.020212488,-0.4383449,-0.041236207,0.30290562,-0.1533168,0.346944,0.45229632,-0.559632,0.3361649,0.27163082,0.9746262,-0.09650113,0.13486472,0.1256207,0.6721448,0.20792834,-0.037555456,0.2712135,0.19131199,0.1555762,-0.20579672,-0.6816418,0.074962184,-0.30964854,-0.6970686,-0.14820133,-0.43195784,-0.28758913,0.25567466,0.022298392,-0.4005289,-0.0407452,-0.18518558,0.3490038,-2.3955255,-0.05177563,-0.2011934,0.30968446,-0.29448262,-0.41335046,-0.13294116,-0.6356027,0.52026504,0.15331332,0.43326804,-0.6816189,0.36765215,0.7966877,-0.6216093,0.09125536,-0.62389743,0.044803023,-0.16670778,0.53765523,0.020871427,-0.1035739,-0.06574877,-0.10299528,0.58817035,0.2301701,0.13122444,0.33252364,0.43872958,-0.04966841,0.36733568,0.065396756,0.390938,-0.47959453,-0.19591144,0.4897604,-0.3937802,0.5123874,-0.18466176,0.081483476,0.48553717,-0.59716135,-0.49845207,-0.798146,-0.47126308,1.2218788,-0.21647845,-0.7337051,-0.00073600735,-0.2614651,-0.2464044,-0.005782173,0.49873102,-0.30336654,-0.09358358,-0.60325277,-0.04697599,-0.25748476,0.39493662,-0.048256095,0.2439457,-0.41614324,0.9859506,-0.16452573,0.39119643,0.21317379,0.41531843,-0.28827146,-0.51649106,0.113267586,0.88147914,0.6108881,0.21156766,-0.3785437,-0.24889007,-0.053882103,-0.34211192,0.03714744,1.0379992,0.4765023,-0.15452436,-0.21552365,0.47642773,-0.13210429,0.034704376,-0.21993682,-0.3786492,-0.38156503,-0.16379555,0.71987957,0.620877,-0.15784726,0.2632775,-0.12008638,0.39884666,-0.36842126,-0.37867495,0.5113781,0.7132827,-0.21757743,-0.11333183,0.840114,0.7022957,-0.2993409,0.6210183,-1.0174146,-0.40144846,0.31520727,-0.13114713,-0.45999655,-0.033982478,-0.38230532,0.27794373,-0.609031,0.47431195,-0.5654177,-0.396514,-0.6867896,-0.03134887,-2.1381495,0.12763295,-0.24464947,-0.013592156,-0.2957698,-0.25394714,0.31086272,-0.6035632,-0.5063114,0.304291,0.13093087,0.518791,-0.023370806,0.03743328,-0.34938732,-0.41768953,-0.39071915,0.23301095,0.24912244,0.34132317,-0.4072707,-0.23822998,0.21234947,0.025512818,-0.084860794,-0.11967242,-0.4099812,-0.55583286,-0.2155575,-0.2892586,-0.18339978,0.5411657,-0.59128857,0.04608734,-0.2700721,0.024234973,-0.21069075,0.12462802,0.16471688,0.15382852,0.11910127,-0.13409221,-0.0068208505,-0.4634484,0.70495135,0.103009544,0.39909685,0.6201206,-0.26260367,-0.13319919,0.30562457,0.49786693,0.15627839,0.9425194,0.076529875,-0.27741084,0.34351143,-0.1244193,-0.5085591,-0.6784985,-0.11152457,0.08060905,-0.29081294,-0.46315098,-0.17522979,-0.43660927,-1.0080034,0.5198791,0.08301242,0.51771945,-0.18398945,0.46695608,0.39815617,-0.100907646,-0.087112814,0.1724936,-0.07761184,-0.63959825,-0.4144128,-0.73597974,-0.2353151,0.16309205,0.7837231,-0.06400813,-0.13307267,0.3908715,-0.22218545,0.14049993,-0.011493476,0.03106202,-0.020397572,0.5138818,0.121504314,-0.6091528,0.64453083,0.17938921,-0.047726993,-0.45242512,0.35915205,0.74442226,-0.6587893,0.21003488,0.47196245,0.07342977,-0.284516,-0.61505485,-0.049481906,-0.13505915,-0.2903735,0.44608784,0.41812235,-0.82054925,0.38838404,0.14284584,-0.15371102,-0.6828094,0.60122687,-0.056639366,-0.13965064,-0.062523715,0.5047901,0.19331002,0.039390363,0.10980134,0.4178992,-0.34911218,0.33832246,0.042860128,-0.051954113,0.28321308,-0.26196066,-0.46550962,-0.80851245,0.2456436,-0.6606074,-0.4170296,0.40954116,-0.0009200481,-0.061895683,0.3262525,0.37265846,0.5980015,-0.26601264,0.21903491,-0.08401636,-0.102149375,0.57066524,0.4011175,0.52182424,-0.4442083,0.7354565,0.17869195,0.01096979,0.20637694,0.26456988,0.3191009,-0.10453452,0.39652982,0.065405674,-0.045942947,0.0397216,0.7596268,0.46958044,0.3749554,0.12813312,-0.25326356,0.30672348,0.059690777,0.30471987,-0.0012368972,-0.7464232,-0.23141773,-0.035215102,-0.07157945,0.42405975,0.14035605,0.2942994,-0.17510591,-0.05459641,-0.019499917,0.04725879,-0.21508922,-1.2218922,0.15437937,-0.0053226626,0.727313,0.6472987,-0.19528945,0.20699373,0.6965781,-0.27423576,-0.014882023,0.4352284,0.16569728,-0.4411247,0.31514513,-0.42278436,0.23624992,-0.12692167,0.13956285,0.016749356,-0.1154766,0.3257995,0.8765907,-0.252474,0.091762856,-0.04579238,-0.34633777,0.10079081,-0.12919234,0.36989358,-0.44232163,-0.3308624,0.5875068,0.3912028,0.58983314,0.00051454856,-0.047217663,-0.20624854,-0.21302843,0.27650613,0.03678624,0.09249317,-0.24361323,-0.45556405,-0.32490832,0.5281027,-0.12968506,-0.0010999441,0.06705399,-0.2349651,0.24446808,-0.03596053,-0.09567864,0.00013985083,-0.6657854,0.11523194,-0.14495888,-0.38072756,0.1881966,0.059036914,0.18298642,0.24722873,-0.0683694,-0.08476036,0.20614961,0.32131135,0.4668855,0.06774413,-0.19334064,-0.4519872,0.13985373,0.16284825,-0.336895,0.1002812,0.030430097,0.3243238,-0.6836357,0.3941407,-0.23807767,-0.3455092,0.060997512,-0.20932968,-0.27515525,0.624493,-0.034610685,-0.20580666,0.09712553,-0.07025279,-0.32213253,-0.19593757,-0.16566974,0.09061667,0.063746616,-0.05847464,-0.21529484,-0.32363793,-0.12559494,0.17238998,0.13047062,0.20335929,0.43158516,-0.055337217,-0.5569203,-0.079674534,0.24702397,0.5516992,-0.009746606,0.17954943,-0.14490397,-0.6416159,-0.49273145,0.4324605,-0.14835654,0.099998474,0.10002002,-0.41092828,0.6187433,-0.20477279,0.97333455,0.046579566,-0.31028253,-0.12870303,0.72562313,-0.16592279,-0.021912782,-0.355652,1.0849102,0.50698715,-0.27039957,-0.06263642,-0.42152098,-0.07495262,0.1925337,-0.2009957,0.030537091,0.07849883,-0.63801104,-0.070495404,0.22467582,0.4687392,-0.12468959,0.0034052224,-0.08767304,0.2130664,0.21113355,0.6167915,-0.37399417,-0.54450166,0.47700214,0.091128975,-0.10795907,0.26386452,-0.29794216,0.17025137,-0.69248766,0.10933674,-0.6679419,-0.017180903,-0.13734078,-0.40434858,0.26664415,0.12024032,0.43748686,-0.49173197,-0.59930456,0.050032377,0.33267227,0.14733627,0.32246172,0.42737374,-0.068403706,0.008605827,-0.010039793,0.5127985,1.2230132,0.008114135,-0.08993937,0.19977225,-0.6509284,-0.84526545,0.2209222,-0.5363384,0.017648298,-0.023619175,-0.59186774,-0.30631992,0.22291125,0.058343153,0.07166035,-0.008779622,-0.8988958,-0.3067689,0.04528308,-0.27419335,-0.25062767,-0.21824318,0.26872033,0.8390278,-0.38193133,-0.31266072,-0.17601348,0.2505396,-0.40742347,-0.6513447,-0.057439223,-0.22192486,0.30444866,0.09402085,-0.16425923,-0.16901706,0.2116579,-0.50505424,0.046688113,0.2312701,-0.48920372,-0.022248112,-0.16490188,0.2891009,0.572086,-0.116879925,-0.045367368,-0.30629432,-0.5207484,-0.7743174,-0.41612688,-0.084603466,0.45595175,0.0566437,-0.44417027,0.025053611,-0.2498624,0.05369126,-0.046211533,-0.5521752,0.6354813,0.24158779,0.42958105,-0.046283416,-0.8337498,0.0943429,0.11458738,-0.011919599,-0.5943269,0.524564,-0.21381705,0.96891534,0.17036428,-0.006432171,-0.08200126,-0.7038953,0.26492456,-0.27158022,-0.1655865,-0.9038918,0.32193688,955 +781,0.61974186,-0.28734,-0.6573937,-0.15085295,-0.40634203,-0.11980861,-0.069573455,0.3249591,0.36055008,-0.26186788,-0.37049377,-0.020117998,0.10096594,0.3734159,0.03264141,-0.9271145,-0.1440447,0.35271257,-0.8372517,0.5827916,-0.50615275,0.27183515,0.0041227844,0.40526834,0.21799472,0.35196787,-0.071750626,-0.095036745,-0.109181374,0.2054355,-0.10547122,0.3162478,-0.3935789,0.07621439,-0.056687847,-0.26701096,-0.16176523,-0.51508266,-0.14995195,-0.7971488,0.19253452,-0.8743967,0.430345,-0.09353241,-0.2205179,-0.26050204,0.029293515,0.4168522,-0.37747076,0.0013827452,0.12904404,-0.07036187,-0.193529,-0.24081582,0.015432954,-0.15540758,-0.51400334,-0.037255935,-0.3997479,-0.15038994,0.10211043,0.08681852,-0.4135815,-0.026634078,-0.31554273,0.3991093,-0.4188581,-0.01799233,0.54736596,-0.12576903,0.101924434,-0.51438004,-0.06351663,-0.028970562,0.5125301,-0.044901725,-0.3303302,0.37450936,0.18803594,0.47929996,0.3739916,-0.27890885,-0.03976876,-0.0853825,0.17659368,0.5098513,-0.037705276,-0.37950695,-0.20694259,0.068031915,0.23788632,0.33695662,0.033309862,-0.3504226,-0.13736399,-0.18167026,0.02349892,0.25437647,0.4410149,-0.13438693,-0.35715288,0.3983897,0.7415057,0.34398195,-0.15833282,0.05734152,0.05732697,-0.648525,-0.191827,0.20411518,-0.041568305,0.4781101,-0.12133547,0.22277993,0.7419834,-0.12284495,0.040165856,0.09808254,0.036765512,-0.22965695,-0.49092242,-0.24442863,0.19525176,-0.5063792,0.13873285,-0.21696578,0.7402963,0.29747432,-0.71437335,0.37578928,-0.6280172,0.22683941,-0.07361495,0.72015643,0.87821555,0.26518625,0.30436257,0.6303407,-0.081821844,0.2722897,0.08175169,-0.50097823,0.00826986,-0.09683636,0.14701457,-0.5416634,0.14860977,-0.17423478,-0.041312072,0.13198186,0.43683177,-0.6404628,-0.17474549,-0.119420394,0.63283324,-0.3103457,-0.06429027,0.894071,0.9123561,0.88081205,0.09451545,1.4082776,0.3979867,-0.3168057,0.3428782,-0.55911964,-0.8072755,0.2218596,0.2219122,-0.42285368,0.53433603,-0.037120268,-0.22557321,0.4429661,-0.27454156,0.11132109,-0.10646344,0.34862715,-0.14207752,0.03407544,-0.63191885,-0.2753991,-0.18647835,-0.056763455,0.17416587,0.3219234,-0.32519266,0.40338972,-0.11329263,1.4526647,-0.10434224,0.06228988,-0.071140274,0.32530752,0.2173152,-0.30648354,-0.23716229,0.4684275,0.50862825,-0.18457443,-0.70815194,0.35693315,-0.32290787,-0.29806498,-0.18127514,-0.45462972,0.024439398,-0.13884367,-0.3970381,-0.16817664,-0.077255875,-0.33916774,0.38834792,-2.5299551,-0.37296283,-0.094313785,0.3794386,-0.2579615,-0.2898006,-0.23880926,-0.5193633,0.13857779,0.08993854,0.5573647,-0.6821867,0.5560316,0.45567846,-0.5947839,-0.16405055,-0.81492716,-0.049742654,0.182141,0.25880638,-0.056866206,0.061724994,-0.06556935,0.030135265,0.43728146,-0.033557918,0.082157135,0.5552276,0.41093272,0.24164368,0.38133353,-0.027190711,0.7098172,-0.31178346,-0.09909534,0.3147735,-0.24327111,0.31103617,-0.08834268,0.07159416,0.61834824,-0.47711006,-0.8819789,-0.5442151,-0.40494794,0.9828137,-0.48031828,-0.37187943,0.19453344,-0.23517159,-0.09308045,0.052842356,0.65395534,-0.09650861,-0.15393415,-0.76902825,0.03933141,-0.0073568914,0.20822929,-0.009760352,-0.051369723,-0.2378054,0.53182495,-0.019663077,0.5959021,0.19731314,0.3012523,-0.14737763,-0.42605972,0.20567568,0.6491622,0.1924428,-0.07820575,-0.113406435,-0.24875014,-0.16493446,-0.14158076,0.003433764,0.56834567,0.77305794,-0.046232894,0.12447843,0.34507707,-0.0067730406,0.17002593,-0.15450177,-0.15009686,-0.14739884,-0.06783176,0.41433054,0.76566374,-0.27722338,0.6758992,-0.27729222,0.25684616,-0.067304365,-0.59033966,0.6738845,0.6770454,-0.2712429,-0.13310957,0.53283656,0.35280862,-0.49340117,0.5229069,-0.55840236,-0.06071971,0.5793785,-0.17586859,-0.33508837,0.34070036,-0.1821797,0.26162362,-0.99325764,0.2713349,-0.32849705,-0.49516532,-0.45091337,0.13212568,-2.805297,0.29060096,-0.18427876,-0.13811086,-0.18882054,-0.14660218,0.15728961,-0.75300246,-0.616083,0.22299163,0.22196929,0.7056512,-0.1716579,0.0931625,-0.27761704,-0.30010945,-0.21276177,0.0646706,0.027805887,0.40026826,-0.25055063,-0.38878077,-0.083308,0.0062512984,-0.46473277,0.2161533,-0.8001938,-0.5240991,-0.09550463,-0.8118233,-0.17757472,0.6963214,-0.22077648,-0.104247294,-0.18079893,0.019014465,-0.2109049,0.36197442,-0.005542526,0.23040716,0.29299542,-0.016248813,0.05316957,-0.24870147,0.3429156,-0.07711827,0.38401935,0.12162574,-0.15055616,0.35603064,0.48736283,0.7180387,0.028060151,0.8267517,0.56506085,-0.09872769,0.23703854,-0.33251396,-0.26964617,-0.5263516,-0.37477154,-0.09342366,-0.39806038,-0.62805855,-0.06118265,-0.3693238,-0.84469247,0.5320593,-0.013787527,0.35511667,-0.113856874,0.16220382,0.62923086,-0.15338184,0.043066606,-0.12682523,-0.23567082,-0.48479974,-0.19756435,-0.694261,-0.48553684,0.22931466,1.0704176,-0.3771462,0.2234638,-0.2062914,-0.42796278,0.040615294,0.14892626,0.008709862,0.39702702,0.3579915,-0.19935161,-0.52792263,0.39650983,-0.11014472,-0.21369442,-0.44585815,0.08642511,0.60210115,-0.8007215,0.7174765,0.1338965,-0.050091267,-0.046193175,-0.46084034,-0.20190237,0.11634783,-0.21620676,0.40953782,0.28114098,-0.49981195,0.4707022,0.33101428,-0.2278296,-0.8149391,0.28919417,-0.11574303,-0.18410832,-0.13642329,0.37433994,-0.11760699,0.04389495,-0.3686915,0.07286179,-0.41609997,0.18563703,0.33059248,-0.23426011,0.13028684,0.036488798,-0.23783149,-0.7196773,0.14831306,-0.6083137,-0.15979427,0.36079186,-0.00025927907,0.18797605,-0.07821028,0.28518456,0.4477536,-0.41044363,0.023022117,0.10642608,-0.29536277,0.105151325,0.48915446,0.289612,-0.4576755,0.37592712,0.14491118,-0.118029,0.08028188,0.069855645,0.3741152,0.16504055,0.40247557,-0.12251957,-0.27322203,0.24447213,0.7808799,0.05209981,0.44481248,0.06303027,-0.091268465,0.21751015,0.02378844,0.3700321,-0.023403963,-0.31633568,0.04124966,0.18114427,0.21536018,0.5790467,0.4660645,0.36089674,0.036731668,-0.33765063,0.015537171,0.280599,-0.0044608023,-1.2900211,0.461635,0.28867376,0.8361842,0.5325808,0.10312362,-0.24355419,0.4558419,-0.20745167,0.22637479,0.35257497,-0.25669506,-0.5946283,0.7368422,-0.678745,0.47159898,-0.15502095,-0.06388189,0.15730268,-0.041067645,0.32402802,0.75180733,-0.16412984,0.05234079,-0.13349918,-0.10110001,0.012295282,-0.39403662,-0.0632182,-0.6051478,-0.31950697,0.64096355,0.43532383,0.31669638,-0.19398023,0.0011848853,0.17075601,-0.08378328,0.16539167,0.11377639,0.10228157,0.30647624,-0.64622504,-0.40693805,0.5432241,-0.23968643,0.06461761,-0.15609668,-0.35791916,-0.01485831,-0.20716132,-0.038541853,-0.07676195,-0.7935019,0.101529635,-0.34278643,-0.4996597,0.28663,-0.089557104,0.06840123,0.27209952,0.047934063,-0.31771642,0.41453993,0.023937276,1.0896138,0.057333782,-0.24461001,-0.36761034,0.31639534,0.33568698,-0.2840158,0.047984764,-0.392669,0.09675085,-0.40108812,0.7134224,0.12698518,-0.3853679,0.10931059,-0.19084051,-0.0059686312,0.42419836,-0.20987114,-0.12506706,-0.19759256,-0.16439949,-0.501813,0.050580934,-0.27291828,0.18274818,0.46123078,-0.0034706134,-0.06598903,-0.071563035,-0.0648057,0.7261886,0.07904546,0.47478187,0.4923269,-0.05171836,-0.15935619,-0.028448949,0.43149754,0.43767172,0.16574067,-0.03125761,-0.63210326,-0.29416972,-0.34258837,0.18452145,-0.096290775,0.34226182,-0.056024663,-0.12695873,0.86210895,0.1547001,1.2394553,0.036792535,-0.28906927,0.10866283,0.3933121,-0.15100549,-0.05792959,-0.4854409,1.0067861,0.36972097,-0.11001013,0.044546314,-0.52064353,-0.35440034,0.4551341,-0.26435637,0.006116796,-0.04380887,-0.48017782,-0.44783896,0.13855216,0.14418729,0.11459296,-0.066163585,0.044086438,0.0745254,0.03019461,0.11647458,-0.66787463,-0.15929581,0.08059735,0.21148852,0.045504753,0.2907899,-0.3794256,0.50039506,-0.7833399,0.26892048,-0.28988367,0.24033979,-0.047396783,-0.3772549,0.17828855,0.10882656,0.3599293,-0.33129945,-0.34900826,-0.33027312,0.6139563,0.052504696,-0.014958749,0.7517385,-0.31840977,0.117292404,0.34294382,0.6015923,1.2057064,-0.15498106,0.053552788,0.29367557,-0.33926848,-0.68691456,0.35105845,-0.21747765,-0.048095226,-0.21493313,-0.34139845,-0.70153576,0.29643565,0.13985628,0.12338427,0.17924947,-0.5223885,-0.13210899,0.23223804,-0.33466065,-0.116659455,-0.44671977,0.2877533,0.8478988,-0.24917075,-0.3313598,0.097723044,0.10038327,-0.27641943,-0.2961991,-0.09668911,-0.35482973,0.2588855,-0.11286728,-0.19651915,-0.25814888,0.107524864,-0.3375243,0.14354075,0.21372017,-0.2553009,0.3059294,-0.12332128,-0.19617844,1.0547054,-0.2041896,0.033894684,-0.69626105,-0.5137316,-0.8244387,-0.53392893,0.12782606,0.12814853,-0.048110656,-0.6203715,0.3224562,-0.029769646,-0.12697253,0.083010346,-0.3955413,0.39208126,0.114814796,0.30922502,-0.2584487,-0.9804773,0.2046594,0.15570985,-0.30268133,-0.68687886,0.5579868,-0.071503714,0.8330464,0.086469725,0.031102227,-0.04884762,-0.34120747,-0.015505075,-0.34342745,-0.0935949,-0.91168743,0.017145423,963 +782,0.48981428,-0.10195083,-0.6170635,-0.13873447,-0.45486948,0.13943693,-0.25906056,0.14484452,0.24277145,-0.095479965,-0.23635581,0.12400646,-0.23645757,0.24815185,-0.14638892,-0.832303,-0.06306273,0.13461645,-0.59994066,0.54432243,-0.19733427,0.33481672,-0.1456686,0.32389933,0.30093685,0.4236962,0.11946009,0.169118,0.17597404,-0.20731372,-0.026231894,-0.24000758,-0.7993236,0.3174949,-0.31583533,-0.40649027,-0.10333292,-0.55717814,-0.35936788,-0.7515718,0.5203475,-0.733546,0.6678756,0.2217384,-0.34679142,-0.1576907,0.20488466,0.17982855,-0.21537948,0.066833414,0.3414254,-0.42046982,-0.007816058,-0.14509597,-0.3316081,-0.43300244,-0.6484244,-0.20438609,-0.43248865,-0.013708844,-0.15758187,0.21901202,-0.237918,-0.013149202,-0.3299083,0.14688092,-0.4860069,0.094393805,0.20958665,-0.18710896,-0.12110192,-0.70630085,-0.21945883,-0.06829031,0.2784046,0.27459666,-0.15049051,0.48388082,0.08889522,0.5141172,0.29338473,-0.3130449,-0.3317909,-0.027031284,0.1260311,0.5310368,-0.1650835,0.31197786,-0.3649533,-0.22027662,0.61739296,0.45800135,0.050946347,-0.18775058,0.14339016,-0.32067835,0.03428706,0.36582512,0.60575074,-0.32292587,-0.047482304,0.21904948,0.3137379,0.3825063,-0.17838605,0.11410569,-0.10741076,-0.29675862,-0.3512356,0.16382025,-0.0932367,0.26642695,0.0038661389,0.14493527,0.48808149,2.6909205e-05,0.0764326,0.04509658,0.00884007,0.2747347,-0.25859514,-0.4001601,0.48723397,-0.5831179,0.5232309,-0.2429722,0.420857,0.1714286,-0.6148161,0.2842635,-0.6414408,0.1248848,-0.028692488,0.64625514,0.9620646,0.59903705,0.06800813,0.927634,-0.4299375,0.084486045,-0.068477765,0.05704877,0.062933214,0.0056451103,0.23396192,-0.41825074,0.14454032,-0.23300482,0.06621898,0.21655038,0.28686583,-0.16807468,-0.20647874,0.0640409,0.724404,-0.26092154,0.17285626,0.77736914,1.1540805,1.124771,-0.089792326,0.9595055,0.05500212,-0.21474622,-0.5298718,0.04399291,-0.6010638,0.061089627,0.30079386,0.15524699,0.47055465,0.2374541,-0.040157977,0.4041999,-0.39528185,-0.16847871,0.120611735,0.083053075,-0.044722464,0.0014617259,-0.5211116,-0.33416468,0.16525462,0.05153192,0.004832011,0.449259,-0.33960024,0.4947707,0.04442778,0.8693758,0.13041037,0.17483248,0.24230263,0.3804895,0.24553023,-0.28657013,-0.055133276,0.06970357,0.27800572,0.021721043,-0.5780891,0.060761515,-0.4371821,-0.32353354,-0.07145503,-0.42495066,-0.42770126,0.06802036,-0.33480978,-0.30954468,-0.06559871,-0.2878019,0.40897185,-2.460156,-0.058573678,-0.16407418,0.37982643,-0.26542157,-0.2982127,-0.14690813,-0.48909634,0.2573089,0.19508079,0.38242033,-0.3525629,0.3830126,0.3919946,-0.632661,0.11621192,-0.49175632,-0.17689255,0.17724122,0.28834864,-0.1265419,-0.13299619,-0.24040031,0.3694078,0.71898264,0.35491684,-0.07575223,0.31216547,0.43830007,-0.24223192,0.33164927,-0.082875624,0.5011205,-0.5521828,-0.22524033,0.44969752,-0.36778036,0.6118999,-0.3239383,0.09429167,0.4970979,-0.45703554,-0.703616,-0.3334665,-0.28675425,1.2651392,-0.35447386,-0.71610713,0.06322941,-0.37076572,-0.1843963,-0.05225784,0.5999065,-0.22099003,-0.1204681,-0.57478446,-0.18662442,-0.26111317,0.24257992,-0.03671101,0.1149042,-0.44866377,0.9074837,-0.097644314,0.63035935,0.2977754,0.27518314,0.16363968,-0.30458266,0.19482714,0.5216747,0.69769704,0.16688119,-0.29986757,0.053793445,-0.008576145,-0.30249023,0.20001027,0.9162407,0.5258275,-0.28981176,0.057889573,0.2703351,-0.062472012,0.10145338,-0.11069831,-0.40695965,-0.30548337,-0.059810344,0.50551057,0.8266522,-0.018522121,0.12946454,0.007961443,0.2757912,-0.22387585,-0.44731963,0.31666124,0.72052765,-0.093673915,-0.09660853,0.77144563,0.54091394,-0.21903545,0.5563653,-0.73830855,-0.3279045,0.62620896,0.0070499,-0.45546442,-0.102714725,-0.47008708,-0.039142154,-0.5975625,0.17452934,-0.31703794,-0.5202039,-0.51986206,-0.21659015,-2.5470095,0.09480412,-0.3283404,0.10019317,-0.32398394,-0.26973546,0.34040153,-0.6255094,-0.7113298,0.08884262,0.012365644,0.5803482,-0.2536912,0.13686039,-0.24150303,-0.36613384,-0.36560407,0.37809467,0.31601393,0.3255033,-0.23803157,-0.1592786,-0.07696463,-0.013836856,-0.40324387,-0.20708431,-0.4936219,-0.30932772,-0.06550897,-0.35298777,-0.1289964,0.46096438,-0.41412747,0.033123933,-0.21699014,-0.095716946,-0.19885734,0.053384762,0.2488011,0.35770175,0.1559445,-0.11966442,0.014728101,-0.19527122,0.44864517,0.23577353,0.46188635,0.37961417,-0.19449209,0.033424266,0.40121636,0.5909886,-0.17686193,0.9127988,0.13981919,-0.042953886,0.5051892,-0.2769644,-0.65485513,-0.87775195,-0.17660935,-0.015271164,-0.40542188,-0.57871455,-0.116653234,-0.31063426,-0.9795265,0.34315172,0.16465625,0.37861922,-0.14064763,0.06705849,0.3486897,-0.1941295,-0.08722997,0.033835616,-0.099801116,-0.35576457,-0.38359883,-0.572612,-0.5619779,-0.03531796,1.0423505,-0.07512415,-0.002870092,0.44188717,-0.34812626,0.20771544,0.11529572,0.24172728,-0.11051623,0.41060454,0.3084216,-0.5410644,0.536894,-0.07937108,-0.06346266,-0.6181153,0.09290891,0.66419655,-0.51673454,0.53361416,0.46925122,0.08655153,-0.0988378,-0.74590653,-0.15842925,0.05713107,-0.34408662,0.55885166,0.46450076,-0.47702202,0.40502024,0.08742457,-0.12527587,-0.63395,0.6698138,-0.05777273,-0.22888246,0.044417128,0.46332154,0.10881996,-0.054493062,0.4300882,0.44237524,-0.1989136,0.42915732,0.2820261,-0.09658524,0.2289177,-0.04098204,-0.2556661,-0.7265898,0.20965579,-0.5881228,-0.28888276,0.4033981,-0.03990615,0.120306656,0.06682355,0.4134046,0.49948865,-0.3754096,0.22025622,-0.19610515,-0.34645283,0.44888088,0.4460589,0.63797766,-0.5624136,0.5217939,0.15637079,-0.109675005,0.41077948,0.27228147,0.40148932,-0.050945446,0.30617467,-0.20702632,0.08466132,-0.25264248,0.5091405,0.27643454,0.02199948,0.073602565,-0.16202077,0.40833503,0.1715011,0.015958332,-0.18620968,-0.55894935,0.039073803,-0.035071455,0.08869234,0.5148522,0.13009265,0.20536889,-0.19215547,0.05027418,0.19406033,0.03381374,-0.31625062,-1.221908,0.30186462,0.10196385,0.83003145,0.45623285,0.1350626,-0.056283332,0.41092414,-0.20264731,-0.009191307,0.52734345,0.12096853,-0.37732235,0.39996618,-0.34538335,0.4509997,-0.1471546,0.015177942,0.3277694,0.21497592,0.6765932,0.6785604,-0.19130747,-0.03904068,0.056047477,-0.3138672,-0.12327143,-0.12964925,0.018597424,-0.55343914,-0.30120736,0.6542736,0.37893683,0.3596359,-0.44041947,0.016025709,-0.1928028,-0.16361842,0.16209173,0.00079916074,-0.07694324,-0.17008628,-0.39639318,-0.15969999,0.44867283,-0.37861302,-0.15360276,0.03836208,-0.22873856,0.066320725,0.028180229,0.10266225,-0.0487659,-0.8791081,0.19355941,-0.39857927,-0.3816485,0.29408485,-0.10978068,0.057409942,0.24471451,0.006660397,-0.22508715,0.38869402,0.017325806,0.73263156,0.05770951,-0.07781931,-0.32231152,0.1587031,0.2222604,-0.21564484,0.25925785,-0.1795195,0.32392126,-0.4055589,0.43741804,-0.31437498,-0.18399686,-0.03372339,-0.096758,-0.2022149,0.47539717,-0.11585545,-0.15235224,0.14966908,-0.043453496,-0.38533586,-0.3235486,-0.44463918,0.06273001,-0.08706053,-0.06306049,-0.24475725,-0.14760566,-0.106969245,0.1745668,0.10980061,0.12924555,0.29465312,-0.2339278,-0.41883084,0.10471532,-0.006305089,0.3572319,0.0039145947,-0.052223112,-0.320667,-0.43767932,-0.39863852,0.74607074,-0.2718116,0.21529852,-0.033065695,-0.14303243,0.7077145,0.12804976,1.0615544,-0.06565176,-0.4161282,-0.04250324,0.644002,-0.27642617,-0.123969026,-0.2541354,0.8770965,0.5447135,-0.1213313,-0.19175856,-0.2467087,-0.052673016,0.016503109,-0.37331775,-0.12836696,-0.054053657,-0.5991215,0.016184883,0.1389936,0.34204558,0.008147657,-0.11442803,-0.15596436,0.20400491,0.35919592,0.27473298,-0.41819617,-0.3829912,0.4963441,0.106724925,-0.16481815,0.19563077,-0.31304532,0.3364238,-0.75202966,-0.044435795,-0.7274678,0.040086802,-0.107218266,-0.40636677,0.2376453,0.030654807,0.344717,-0.5861912,-0.22836766,-0.17875552,0.25350952,0.26957506,0.35975164,0.59780073,-0.20577644,-0.15776516,0.03895577,0.5342642,1.038644,-0.2249387,-0.007716491,0.2641714,-0.4866975,-0.576668,-0.12053021,-0.48797697,0.04141305,-0.119218096,-0.32292894,-0.38877127,0.15915471,0.011849339,-0.037296984,0.16053563,-0.7959505,-0.21782812,0.075627916,-0.3149319,-0.29452896,-0.33627522,0.21180129,0.76547635,-0.11856886,-0.28045318,-0.011581751,0.28257042,-0.1257098,-0.5728966,0.4191605,-0.3900894,0.21843912,-0.14155814,-0.4580362,-0.12027106,0.3438112,-0.46258947,0.22585575,0.2824427,-0.31610376,-0.053698704,-0.29403633,0.1367088,0.96635306,-0.031438038,0.065640144,-0.3525612,-0.5417435,-0.8970266,-0.39293554,-0.16995311,0.40720198,-0.08897155,-0.49506298,-0.084222585,-0.46801198,0.015886787,-0.11454297,-0.30301327,0.3831088,0.25212446,0.5368329,-0.19205149,-0.85126156,0.21107887,0.18677571,-0.41229588,-0.18656412,0.54805416,-0.13503002,0.7438192,-0.00027021766,-0.08556089,-0.23136179,-0.65227973,0.5478557,-0.22987276,-0.050724488,-0.67097163,0.054445203,964 +783,0.3582496,-0.2447257,-0.5162185,-0.21936284,-0.18384813,0.15474437,-0.23914358,0.4285823,0.16426262,-0.44222167,-0.23145904,-0.3064537,0.098496914,0.20864843,-0.23019664,-0.47830296,-0.045512266,-0.0007757613,-0.4887409,0.6047729,-0.4011576,0.21083912,-0.00237276,0.39651543,0.21257654,0.22042114,0.15486431,-0.12428197,0.07932679,-0.26839298,-0.18326594,0.236649,-0.5468216,0.19794083,-0.14711672,-0.35669076,0.0730087,-0.47891515,-0.25295225,-0.6888545,0.34654438,-0.93092334,0.47324196,0.17811991,-0.31770432,0.40830386,0.19513883,0.22467826,-0.3529359,-0.110046916,0.0891981,-0.055883408,0.01986592,-0.16954242,-0.12836257,-0.2669078,-0.4796644,-0.06684343,-0.37193662,-0.27332926,-0.3415583,0.06354617,-0.27361786,-0.045059375,0.037271436,0.55593073,-0.44068295,0.10193952,0.24850136,-0.22794448,0.45285624,-0.5914763,-0.20773765,-0.10022569,0.4314895,-0.20145464,-0.1596929,0.12503038,0.3442084,0.32030663,-0.11603253,-0.081691355,-0.087838836,-0.21023569,0.11952551,0.41914126,-0.09678137,-0.47660595,-0.09360372,-0.15284213,0.15076627,0.27534434,0.24089848,-0.2943633,-0.18967634,-0.05915598,-0.34019965,0.5236598,0.36818585,-0.30912235,-0.092947885,0.35993928,0.4787129,0.3091787,-0.10887228,0.021500904,0.090224095,-0.6340793,-0.16632321,0.034453254,-0.24183501,0.61020184,-0.16481811,0.4086959,0.6169488,-0.06703256,0.01883115,0.007979357,-0.019146759,-0.23409447,-0.3981536,-0.26082635,0.26111466,-0.4035541,0.15532674,-0.11470998,0.7852399,0.106218815,-0.5663333,0.25993818,-0.57204944,0.13001654,-0.14598285,0.46629462,0.47213537,0.3787623,0.31129578,0.6845263,-0.47081405,-0.12985009,-0.019011699,-0.3491001,0.014097904,-0.08207394,-0.21293505,-0.4901737,0.03216453,0.047054432,0.16466847,0.10904893,0.33628485,-0.4275122,-0.05115625,0.19227637,0.865021,-0.24824198,-0.051396325,0.67413676,1.0277789,0.84023654,0.101491965,1.0257905,0.06464807,-0.25372493,0.049371563,0.041505877,-0.798482,0.3336701,0.5038688,-0.1664361,0.2638412,-0.018184781,0.017110558,0.2286579,-0.30921438,-0.019599667,-0.1384293,0.10378687,0.11608087,-0.08530033,-0.3238225,-0.19235435,-0.034254473,0.028477816,0.07072211,0.068062454,-0.08615044,0.3160316,0.16074984,1.3276832,-0.18307778,0.11138344,0.13754354,0.39317968,0.26508173,0.012652965,-0.13992125,0.43028787,0.36714506,0.23537041,-0.7095157,0.25642914,-0.10136063,-0.43502042,0.011516828,-0.34304592,-0.112024054,-0.040259995,-0.48996374,-0.014133293,-0.18846741,-0.20973803,0.4475633,-2.9170823,-0.11881015,-0.18314005,0.3828899,-0.18458723,-0.25222412,-0.04260585,-0.354843,0.5068405,0.36079276,0.46795648,-0.5850645,0.2976602,0.52761775,-0.5289731,-0.16842362,-0.5868998,-0.20015463,-0.074908026,0.33139026,-0.010180547,0.059016142,-0.032746386,0.30595973,0.38750523,0.06909592,0.19870742,0.25650543,0.48614928,-0.0069945683,0.65024704,-0.046298113,0.5033511,-0.22437106,-0.13479692,0.23900631,-0.24339423,0.2259703,-0.072105154,0.13489099,0.5012344,-0.4304533,-0.78971916,-0.6927185,-0.24648912,1.3140447,-0.38233906,-0.43184426,0.3046138,-0.27235126,-0.2385706,-0.0054718186,0.46727383,-0.116034865,-0.03724685,-0.8409253,0.1020773,-0.0028998577,0.23917247,0.07271724,-0.188078,-0.45525742,0.7606418,-0.0009806523,0.54403424,0.42683512,0.119450495,-0.24209836,-0.46416077,-0.075318664,0.7904483,0.4190075,0.076216236,-0.26258847,-0.18636917,-0.5109068,0.07751274,0.072885685,0.50071454,0.5552153,0.006901182,0.2420124,0.28554136,0.10398006,0.14329857,-0.21800143,-0.26575404,-0.16113135,-0.13593541,0.49588013,0.54298824,-0.0970178,0.17033452,0.06956141,0.2842638,-0.22413653,-0.52040446,0.59570986,1.0401145,-0.13782512,-0.27821118,0.6015596,0.62235904,-0.16367632,0.30481425,-0.541617,-0.27177247,0.63144577,-0.15606523,-0.5924982,0.19593228,-0.34955344,0.09365565,-0.8986263,0.12052221,-0.35752407,-0.29188567,-0.34898573,-0.021152528,-3.7624147,0.35121602,-0.2681185,-0.21718594,-0.40608323,-0.11181431,0.33323714,-0.5596454,-0.64924055,0.18793894,-0.0087502,0.72507596,-0.11860202,0.095643945,-0.2298598,-0.10661569,-0.1503635,0.09106075,-0.009299379,0.25615555,0.008804862,-0.45081636,-0.054080002,-0.026810113,-0.39837456,0.023487557,-0.39839047,-0.36640218,0.0458678,-0.5388936,-0.26937595,0.5426152,-0.3719552,-0.0026727777,-0.23158646,0.0799266,-0.22931115,0.17457357,0.03664722,0.21414599,-0.08020392,-0.033462305,-0.16472858,-0.36211315,0.2897066,0.023888435,0.09521666,0.018401759,-0.09037355,0.15429728,0.38039792,0.4640237,-0.11130471,0.835914,0.35318464,0.008444102,0.28071433,-0.1479043,-0.2972849,-0.5395987,-0.19636692,-0.034798805,-0.3360077,-0.4215908,-0.07602781,-0.29359773,-0.7200426,0.5757295,0.06492998,0.18200217,-0.02158777,0.25341237,0.46368644,-0.17432489,0.015884105,0.058341715,-0.13210085,-0.6465944,-0.13496715,-0.7031947,-0.2888908,0.0928474,0.5100942,-0.3601921,0.08789123,0.05480693,-0.29301456,0.06308569,0.17518257,-0.058612272,0.2751907,0.61154747,0.004443691,-0.69342697,0.51440203,-0.06835081,-0.1832322,-0.50243765,0.10873294,0.6560122,-0.6113694,0.5373797,0.4539965,-0.06988095,-0.26406887,-0.41093686,-0.23595971,-0.091180556,-0.35981324,0.3796113,0.20926505,-0.8371582,0.33306423,0.19739923,-0.10858075,-0.6974229,0.8366585,-0.030807715,-0.39001146,0.011562123,0.4012019,0.13875905,0.08846448,-0.1326085,0.23554006,-0.27546996,0.1768902,0.17220497,-0.09948404,0.2855955,-0.107731424,0.008105294,-0.76388615,-0.04659535,-0.52852124,-0.28202045,0.30794492,0.057206444,-0.017469142,0.1444124,0.09325531,0.35465083,-0.23716667,0.18336175,-0.069678664,-0.17801784,0.4252835,0.4785898,0.50577825,-0.35001785,0.677699,0.04428804,0.021452487,0.049819726,0.14171508,0.37290698,0.026023673,0.4943927,0.024411472,-0.17111316,0.4524656,0.5574211,0.2328679,0.41475406,0.16730705,0.06450641,0.33393508,0.108881146,0.19582677,-0.09958071,-0.64045215,-0.03149866,-0.37771723,0.074125,0.5172357,0.19320837,0.18944813,-0.025089474,-0.4492682,0.010064183,0.14378174,-0.0019426896,-0.90078,0.33984926,0.21915378,0.7552385,0.54931873,-0.12186343,0.1154325,0.6572398,-0.121642485,0.04972323,0.38843143,0.19078638,-0.5619765,0.6188192,-0.6614476,0.32210082,-0.15470804,-0.050440393,0.05950145,-0.03264869,0.4004045,0.7397938,-0.12087289,0.07376799,0.05367184,-0.40994072,0.2629275,-0.41343036,-0.10831237,-0.4812203,-0.24313515,0.4888878,0.6747036,0.40142104,-0.28828067,0.092715636,0.11072968,-0.15941899,0.0727392,0.1559317,-0.033642825,-0.14494002,-0.77120024,-0.10692819,0.5449088,0.17976093,0.15477291,-0.11297472,-0.28857386,0.32865286,-0.2921273,0.14482754,-0.14079401,-0.74368954,-0.058030963,-0.3911851,-0.48977682,0.32900268,-0.28986305,0.290157,0.24836956,0.015987864,-0.09869385,0.22836417,-0.06787997,0.7710565,0.08713767,-0.14620796,-0.40039307,0.024652123,0.13307196,-0.18864942,-0.039140962,-0.35512954,0.011316364,-0.49122894,0.39531326,0.020292997,-0.22314581,0.03464531,-0.19492985,0.027881883,0.5688857,-0.12780356,-0.031358358,-0.07869392,-0.11537605,-0.19372895,-0.21516183,-0.15253834,0.20902117,0.2033851,0.1424879,-0.21242854,-0.08726455,-0.22585215,0.19508164,-0.039431036,0.53770715,0.40036148,0.020665122,-0.23952898,-0.1851632,0.25700888,0.52121294,-0.021582833,-0.148141,-0.12033514,-0.59515315,-0.19230458,0.22284752,-0.0066650948,0.3606481,0.0886153,-0.11940229,0.7046534,-0.05082155,0.85788566,0.013397134,-0.44333646,0.035006635,0.54846376,0.0070390976,-0.20171905,-0.19782823,0.8312908,0.34967723,-0.13616563,-0.108826436,-0.3263502,0.015649837,0.018566608,-0.1227901,0.0055734445,-0.12830561,-0.50368494,-0.2950195,0.16104467,0.2917288,0.27242175,-0.06055627,0.01812963,0.22876707,-0.08414216,0.39507484,-0.5769628,-0.2592613,0.16702901,0.13670334,-0.00045823248,0.04684971,-0.42962816,0.47046897,-0.54131055,0.1081295,-0.45347378,0.15640329,-0.22573796,-0.18793803,0.16266641,-0.13647279,0.34582636,-0.43199286,-0.37770763,-0.28935054,0.39271286,0.20578612,0.12813273,0.5734126,-0.27143717,0.06997346,0.097141504,0.56679314,0.83969426,-0.12865992,-0.003992007,0.3473207,-0.51124865,-0.5357532,0.20667475,-0.48428413,0.3364065,0.05166115,-0.106371075,-0.42675394,0.24300933,0.24225706,0.1350084,0.042472463,-0.78941435,-0.25105864,0.45387208,-0.18392882,-0.24219278,-0.26674646,-0.044433508,0.44064587,-0.25827816,-0.2848332,0.02643589,0.12643194,-0.05699354,-0.61747044,-0.009349043,-0.3738734,0.30775687,0.14945085,-0.2785691,-0.18045355,0.05861103,-0.45947057,0.37598088,-0.05020626,-0.317754,0.0071745985,-0.25789714,-0.15798184,0.90305865,-0.34902424,0.03278088,-0.39512378,-0.44215077,-0.6628526,-0.24164772,0.59630144,-0.011428759,0.20602857,-0.41633365,0.12726915,-0.090976484,-0.074526034,-0.07696418,-0.27244553,0.49973994,0.16421254,0.54651386,-0.029223157,-0.7372296,0.29578498,-0.04238622,-0.23163532,-0.6440562,0.48157918,-0.104194164,0.6403767,0.036548574,0.08567602,0.22994551,-0.5153,-0.07348229,-0.15025067,-0.15779103,-0.56190044,0.13978729,966 +784,0.6353742,-0.36174712,-0.4481683,-0.16449608,-0.22282885,0.14298008,-0.1060357,0.65150666,0.28518882,-0.42917067,-0.07591847,-0.109771565,0.027858881,0.13873447,-0.09110636,-0.4308337,-0.13636343,-0.046538472,-0.48625645,0.50315213,-0.3696631,0.13299425,-0.22248635,0.37826735,0.37905425,0.29804727,-0.06336038,0.13841937,-0.08943459,-0.12539056,0.008022038,0.24313578,-0.42484474,0.14174801,-0.11709606,-0.28093678,-0.06706479,-0.46994466,-0.47249037,-0.7562813,0.35778812,-0.8325623,0.48387134,-0.0625509,-0.24055916,0.4423693,0.09770764,0.15313068,-0.105393596,-0.14379969,0.20861766,-0.044068728,0.07893722,-0.29761562,-0.19722942,-0.48674664,-0.5021628,-0.14323963,-0.359594,-0.39927483,-0.21145919,0.109260395,-0.35477012,-0.14818856,-0.10517326,0.79614836,-0.44432017,0.1490154,0.20070824,-0.17374884,0.2912432,-0.8095795,-0.24787156,-0.019994358,0.08435109,-0.08577918,-0.12670392,0.24012643,0.2677925,0.21066977,-0.13043216,-0.12979545,-0.3895122,-0.019067105,0.013393129,0.3506355,-0.18785708,-0.4757128,-0.048574008,-0.033522274,0.06758257,0.2522864,0.3882403,-0.19740163,-0.037069224,0.23488416,-0.37078422,0.4887945,0.4779533,-0.27429736,-0.1215548,0.32134193,0.5051932,0.22808653,-0.28956145,-0.2547701,0.0014391404,-0.42180347,-0.1283117,0.094918445,-0.25965458,0.447243,-0.1802624,0.3770261,0.6434367,-0.18572086,0.112635784,0.09483512,0.25042757,-0.09307603,-0.49256065,-0.24313109,0.17631736,-0.44852352,0.22658275,-0.22951628,0.6711145,0.10053134,-0.39350477,0.25045636,-0.51030606,0.07641978,-0.15348527,0.31765762,0.6263946,0.41870227,0.18298875,0.68147236,-0.4016393,-0.0069310847,-0.06932665,-0.20548485,0.08887572,-0.19516732,0.24549752,-0.53360224,-0.13844746,-0.035054795,-0.050527044,0.08356201,0.41024357,-0.45367447,-0.20300652,0.24339716,0.9182631,-0.20218897,-0.06488331,0.69200003,1.1773597,0.9027803,0.07268965,1.0614108,0.1973323,-0.25199828,0.32923552,-0.17118604,-0.5345704,0.3847346,0.4327729,0.017381366,0.20254923,0.026128251,-0.19819817,0.54421973,-0.17734027,0.03735015,-0.060821638,0.12288873,0.31775922,-0.11795959,-0.23584516,-0.22657299,-0.027828097,0.07831519,0.04216755,0.10911668,-0.25066856,0.23539758,-0.037096914,1.5553216,-0.13185081,-0.039829347,0.14272374,0.4723287,0.24108218,-0.21407071,0.17755127,0.36483458,0.33305183,0.29839185,-0.6140246,0.35852733,-0.26526105,-0.52177423,-0.045367327,-0.36124358,-0.08818182,0.018690888,-0.54884005,-0.12388298,-0.19153255,-0.15078512,0.323531,-2.8961425,-0.088882245,-0.1339915,0.3632537,-0.23725174,-0.42591974,0.13708702,-0.3952666,0.3644991,0.40079483,0.4697006,-0.6169369,0.3892977,0.5224834,-0.75621575,-0.026628705,-0.5316929,-0.09043404,-0.09218221,0.26306814,-0.039007597,-0.04562092,0.10615866,0.13560173,0.5052002,-0.01784033,0.17831914,0.37935835,0.4513706,-0.41211727,0.59100163,-0.0966645,0.40819308,-0.33882353,-0.18858227,0.3485796,-0.39920124,0.053922094,-0.14277488,0.18865323,0.54549414,-0.23912045,-0.8921111,-0.6461264,-0.09879257,1.1373564,-0.17580152,-0.61354923,0.22117552,-0.4702587,-0.335103,-0.07215531,0.56830734,0.038477167,-0.09847395,-0.69249654,0.18899938,-0.15658906,0.051368073,-0.025672125,-0.15301666,-0.48255917,0.84570634,0.05177273,0.5714926,0.23801063,0.18563487,-0.40881282,-0.27808526,0.031586643,0.6794589,0.43292242,0.10149189,-0.23214258,-0.003385679,-0.28341132,-0.023301344,0.19639246,0.63064057,0.48436955,-0.018207682,0.17819907,0.3036564,-0.08033248,-0.028748991,-0.1504821,-0.3082046,-0.15724656,-0.066613965,0.41438338,0.5783673,-0.024627833,0.3798083,-0.05910233,0.2684471,-0.22464368,-0.48976594,0.46101123,1.0536649,-0.20803311,-0.46342438,0.4163033,0.3861697,-0.26095942,0.3418737,-0.5307866,-0.19587396,0.4904849,-0.24356055,-0.45615909,0.14459656,-0.33270007,-0.08080807,-0.73336816,0.13211754,-0.4592426,-0.5425166,-0.51952463,-0.30473694,-3.644644,0.25814137,-0.37371212,-0.2404468,-0.27839202,-0.20539095,0.26150805,-0.71112293,-0.46563196,0.23816094,0.0618221,0.72990096,0.019671623,0.058697045,-0.31294104,-0.33958668,-0.24727413,0.24542609,-0.0038898725,0.28795928,-0.034218337,-0.40781006,-0.08329594,0.11696855,-0.49328217,0.033371612,-0.5858965,-0.42255467,-0.15624347,-0.52271533,-0.36702678,0.62077993,-0.17020765,0.08650426,-0.0926222,0.015464809,-0.14688821,0.36696097,0.07490868,0.18636332,0.06868817,-0.15114398,0.15183939,-0.34566095,0.22272435,0.031507578,0.3587348,0.30258977,-0.04028016,0.20517829,0.39358288,0.5482546,0.014577215,0.8952113,0.30074623,-0.09615235,0.38970155,-0.2011852,-0.23237848,-0.55671716,-0.27811533,0.10811683,-0.27219284,-0.3550685,0.0033058112,-0.367342,-0.6113691,0.42421335,0.025091382,0.32357562,0.18518387,0.37545064,0.6920691,-0.23571728,-0.113580815,0.09405189,-0.08419517,-0.52423275,-0.2853371,-0.5745503,-0.5436113,0.18129888,0.62258536,-0.1408456,-0.039279956,0.037111487,-0.19143285,0.068524085,0.1897339,-0.05733865,0.011339582,0.5164926,-0.15257862,-0.56134915,0.37547064,-0.17715663,-0.2189683,-0.53927445,0.39828587,0.58267534,-0.4435101,0.67181784,0.3482245,0.18067744,-0.3962091,-0.40528506,-0.052513056,0.042169742,-0.24729618,0.3967859,0.34873402,-0.98815596,0.27343187,0.3852604,-0.22232796,-0.6937386,0.6714433,-0.05326218,-0.3599502,-0.29633203,0.29856667,0.29434654,-0.017765332,-0.10423013,0.17681037,-0.47093248,0.120103784,0.06801797,-0.0045612226,0.26000267,-0.0025655557,0.0013299172,-0.5804345,0.11399077,-0.32158148,-0.39362603,0.38722187,-0.12404374,0.25276154,0.38482884,0.119761154,0.23933564,-0.12562543,0.12252894,-0.13225985,-0.29139507,0.3258171,0.37884748,0.44443014,-0.44919884,0.49607503,0.011357011,0.016556323,0.28553194,0.19469929,0.35137302,0.2831851,0.4998694,-0.017101673,-0.18537515,0.26154515,0.72203666,0.19726372,0.53317463,0.06519997,-0.13914293,0.107536405,0.020099644,0.15852721,-0.104111895,-0.6180354,0.11343474,-0.18023697,0.19462943,0.42012623,-0.043324288,0.22198258,-0.11690069,-0.3570186,0.0036215198,0.31683654,-0.05488173,-1.1891829,0.42267308,0.25310144,1.1014688,0.30704892,0.010191711,-0.24332994,0.73098874,0.12651482,0.077332824,0.3215063,0.15300551,-0.40582436,0.55546486,-0.7763306,0.3619823,0.03378332,-0.08443473,-0.14708169,-0.0906715,0.30537236,0.6835813,-0.2618221,-0.11868476,0.040838186,-0.50621486,0.33727977,-0.4050565,0.052252114,-0.5149068,-0.26131013,0.5047006,0.5655316,0.3693902,-0.20612107,0.015067222,0.008439536,-0.16837542,0.18118387,0.10091637,-0.015474117,0.06082581,-0.7503075,-0.26714805,0.2914593,-0.018124692,0.3172705,-0.11120571,-0.17673017,0.21697578,-0.085440286,-0.0712088,0.09784278,-0.6110085,0.08006174,-0.3336282,-0.56045747,0.48037514,-0.027695766,0.13917218,0.20126472,0.061088122,-0.17711264,0.3973511,0.056309912,0.8128301,-0.030137558,-0.087009154,-0.50156176,0.0023167317,0.05182167,-0.18351208,0.008654629,-0.27757293,0.14278021,-0.5592914,0.41881165,-0.0069193197,-0.33106253,0.09932284,-0.17648758,0.19304325,0.5643815,-0.23091157,-0.17274936,-0.183712,-0.083619066,-0.19914661,-0.38210014,-0.049574573,0.30022824,-0.062414028,0.1831292,-0.18465842,-0.16084382,-0.048376955,0.39893293,0.013310533,0.40087494,0.43173346,0.07065873,-0.13536304,-0.16098578,0.25681382,0.53771436,-0.056502484,-0.22863773,-0.3193951,-0.67957973,-0.40112412,0.19711448,0.09610688,0.49633953,0.040791743,-0.2416808,0.7791217,-0.21791855,1.0642705,-0.1198283,-0.39473873,0.086213745,0.49175692,-0.03936179,-0.0946804,-0.3145526,0.84015816,0.5346781,-0.015465517,-0.03169882,-0.24519965,-0.051933706,0.19522038,-0.19021851,0.037059896,-0.14797658,-0.7104077,-0.24328658,0.1179221,0.29072422,0.18334085,-0.07243866,0.13548651,0.39085463,0.016646005,0.3064717,-0.50489384,-0.23616996,0.19609584,0.21903451,-0.13071679,0.23043552,-0.50239295,0.3469192,-0.57256395,0.17450362,-0.33674127,0.17864285,-0.16868693,-0.18778585,0.24709791,-0.0656722,0.39229056,-0.24985217,-0.3654682,-0.22501773,0.37341765,0.18268713,0.09276439,0.5249306,-0.13619058,0.018483533,0.07788401,0.6872091,0.9920811,-0.04770346,-0.0077545503,0.22064263,-0.5608198,-0.6917867,0.32273644,-0.20380059,0.26670808,0.13534158,0.028864415,-0.45014817,0.23862165,0.21250135,0.066355094,-0.024783991,-0.6805718,-0.26865494,0.2881601,-0.41094986,-0.12219005,-0.23546861,0.09014322,0.3822553,-0.24954346,-0.13410114,0.0036681523,0.49056214,-0.032861657,-0.29197142,0.024417754,-0.5010437,0.3469399,0.014433161,-0.3068949,-0.2077695,-0.0898305,-0.48823473,0.29198915,-0.07550426,-0.3247475,-0.0024979848,-0.1728487,-0.094880566,0.7466061,-0.09793584,0.067000434,-0.5576262,-0.49558628,-0.6117688,-0.38713947,0.082920626,0.005325079,-0.006300032,-0.63719976,0.04155533,-0.20620361,-0.04435784,-0.21887805,-0.36135367,0.43912983,0.097451694,0.55934197,-0.084594406,-0.73592705,0.1725323,0.17457914,-0.08790602,-0.6078316,0.5249709,-0.19771081,0.7356832,-0.0929546,0.21520832,0.13830255,-0.33267385,-0.062230572,-0.26786518,-0.33037615,-0.6599087,0.038686972,980 +785,0.5776879,-0.2192989,-0.5475892,-0.15719675,-0.15818483,0.21227771,-0.16512355,0.34703457,-0.033438675,-0.6349197,-0.0840909,-0.24210832,0.02840418,0.3603784,-0.09213572,-0.5249039,-0.017308775,0.35206243,-0.46873933,0.50432324,-0.3240885,0.40957838,0.18274887,0.46337146,0.019330906,0.30908138,0.23143981,-0.06722856,-0.2233773,-0.2339361,-0.20474198,0.33335093,-0.5168894,0.15835282,-0.06302418,-0.5103885,0.024406565,-0.3596026,-0.09817072,-0.6986066,0.1848072,-0.9234899,0.3560793,0.041723944,-0.39119023,0.05858266,-0.001159723,0.19530994,-0.18996763,-0.03065903,0.22099338,-0.3358868,-0.20738673,-0.43422258,-0.100208715,-0.305363,-0.54414773,-0.032499075,-0.5467176,-0.1946384,-0.1827787,0.1708236,-0.19287308,-0.0016513237,-0.1396586,0.30591917,-0.46374238,-0.23281981,0.20512946,-0.2517936,0.20078167,-0.6482235,-0.19267216,-0.18763593,0.25225884,-0.33659217,-0.2663057,0.12498228,0.13160937,0.5670695,-0.061840698,-0.08294605,-0.5392631,0.029510017,0.002735945,0.5469153,-0.17457622,-0.26160216,-0.056083936,0.059676435,0.13764678,0.121130615,0.073562324,-0.22375861,-0.032595664,-0.14537835,-0.054119322,0.15674685,0.5226748,-0.32163298,-0.27488774,0.27564067,0.49504465,-0.02995481,-0.17452055,-0.047062222,-0.04359301,-0.39626485,-0.065109774,0.18041712,-0.14255139,0.65614045,0.08369282,0.19496639,0.5768992,-0.026105078,-0.054011934,-0.10252021,0.07304426,-0.13590859,-0.12832372,-0.13044712,0.48718527,-0.25489357,-0.0024878155,-0.37426996,0.73467565,0.082692176,-0.7316987,0.30713925,-0.36753288,-0.0063421866,-0.06611207,0.5615995,0.496006,0.38594598,0.09476941,0.67065597,-0.42082456,0.1437939,-0.1643625,-0.14085102,-0.1242429,-0.14625895,-0.038230997,-0.5248587,0.018670687,-0.072396316,-0.18120183,0.13947044,0.50117445,-0.677795,0.02342303,0.19159912,0.6062316,-0.36182302,-0.15887278,0.83976895,1.0607045,0.72558665,0.060594168,1.0494044,0.3471251,-0.3492048,0.024507906,-0.33034083,-0.58647835,0.10727199,0.31658766,0.040819682,0.2989236,0.18353364,0.011076189,0.47412932,-0.39370823,0.04436638,-0.2813449,0.03415019,-0.069508664,0.075087614,-0.5134749,-0.08998302,-0.047745917,-0.045040943,0.14809804,0.11428456,-0.30030364,0.47312513,0.120907895,1.8652155,-0.12715493,0.03814685,0.1739068,0.1666964,0.18053651,-0.009903452,-0.11257928,0.19407304,0.24138965,-0.015770784,-0.33733103,0.047694214,-0.26208344,-0.6353622,-0.21301787,-0.19947706,0.053147767,-0.049875114,-0.3602675,-0.1251,0.18367489,-0.44621548,0.29263568,-2.3087015,-0.015133033,-0.08203415,0.45983785,-0.19648212,-0.44051808,-0.13155004,-0.34351963,0.31670904,0.4676124,0.4141912,-0.534923,0.29678223,0.30646235,-0.40852973,-0.20049301,-0.5548478,-0.019935388,-0.0985574,0.35001674,0.036321525,-0.3018969,-0.0316635,-0.13988528,0.4452601,-0.2536709,-0.09172387,0.43688217,0.31521356,0.24946152,0.3337736,0.1591225,0.5887145,-0.2717536,-0.332843,0.47624367,-0.3535291,0.22107887,0.10262482,0.16812323,0.30157137,-0.40432182,-0.76553875,-0.73878056,-0.24321121,1.1862344,-0.038182683,-0.5162241,0.08759578,-0.109675296,-0.45441532,0.014087017,0.45023963,-0.14207612,-0.047511704,-0.8882821,-0.092622,-0.20786236,0.45932326,0.091556974,0.103623666,-0.62999445,0.6777435,-0.20782876,0.4485063,0.37107608,0.39108327,-0.2577519,-0.49077946,0.0023345351,1.137422,0.22660388,0.13408154,-0.22885889,-0.29530817,-0.3166254,0.028544988,0.17500614,0.5426379,0.76779705,0.13403887,0.006781069,0.30355126,0.056720372,-0.11819236,-0.23167178,-0.3270962,-0.15552542,0.15538114,0.63728863,0.4416899,0.0687728,0.60862106,-0.19679824,0.47397804,-0.08044919,-0.3753412,0.36928895,0.84744763,-0.12878753,-0.4018939,0.64405185,0.5047268,-0.3195306,0.43106553,-0.66860604,-0.43715352,0.17176369,-0.19863388,-0.37324625,0.27509788,-0.20826563,0.27542296,-0.9515683,0.2598355,-0.17162672,-0.45017415,-0.82806724,-0.20375457,-2.7051744,0.31860366,-0.035654258,-0.18236487,0.18749824,-0.2498231,0.066902585,-0.78164613,-0.38540396,0.10702271,0.05986353,0.70633024,0.024120651,0.20183006,-0.22390555,-0.39320734,0.1273238,0.38080153,0.23957351,0.21511522,-0.010310026,-0.40271333,0.1099658,-0.22220364,-0.19482954,-0.14148971,-0.6923545,-0.65818363,-0.105513826,-0.6645389,-0.031740002,0.6513444,-0.5934235,0.050795123,-0.276518,0.0093425,-0.061518326,0.21944875,0.14449954,0.3408253,0.22941653,-0.1861946,-0.06608717,-0.33072656,0.19649996,0.09475744,0.08893684,0.5660268,-0.21133533,0.38039768,0.48118275,0.5131104,0.004170468,0.7564617,0.64334077,-0.052898195,0.098247,-0.32855543,-0.305642,-0.7308537,-0.38523865,-0.148051,-0.56047523,-0.40708202,-0.033820346,-0.3953194,-0.7909426,0.7383543,-0.13352135,-0.122744665,0.19504414,0.5341672,0.5825285,-0.15660477,-0.18779217,-0.18055321,0.011071306,-0.31238782,-0.47556192,-0.5747722,-0.4940737,-0.10645223,1.1540761,-0.03177995,0.09439449,0.21805161,-0.10833906,-0.050444033,0.14904514,0.025662733,0.10339391,0.49337733,-0.025759725,-0.56193835,0.3225593,-0.1177262,-0.15800661,-0.48558462,0.26680842,0.45689452,-0.8218479,0.39361617,0.28404066,0.2287239,0.038214967,-0.48478478,-0.1937541,0.11414925,-0.23866668,0.3641324,0.04385278,-0.46594837,0.3746088,0.19788629,-0.035571393,-0.82116324,0.28131798,-0.009830307,-0.51323843,-0.022606455,0.32165006,-0.02568553,-0.06635989,-0.40500826,0.051455263,-0.22883826,0.12211655,0.3672643,-0.12540123,0.22488159,-0.4702695,-0.17468883,-0.8058004,0.27023557,-0.42158487,-0.33491054,0.31403553,0.04651651,-0.002700306,0.31595692,0.1347937,0.46465954,-0.39699763,-0.0064370083,-0.1386823,-0.15892641,0.36847395,0.36654657,0.2761666,-0.5357806,0.5145889,-0.0290615,-0.1140783,-0.34318766,-0.09911592,0.6424618,-0.016038455,0.21666087,0.04987561,-0.14801225,0.33110237,0.7104005,0.14997149,0.5978428,0.021435035,-0.23254275,0.1042558,0.038540144,0.17159009,-0.11779185,-0.39973348,0.2505363,0.024489125,0.036786143,0.4068093,0.09042632,0.5203927,-0.115427345,-0.3241495,0.25812733,0.19485845,0.017853044,-0.91210777,0.28256708,0.020100502,0.7951084,0.40489367,0.0005358228,0.10261022,0.55444103,-0.46514493,0.14621976,0.066882886,-0.30306807,-0.36442265,0.4021689,-0.6685269,0.28927442,-0.029513946,0.0045978473,0.016756978,-0.28151035,0.36884847,0.86978287,-0.1913093,0.23423958,-0.10077473,-0.021824049,-0.046293046,-0.2257294,0.052289035,-0.6013679,-0.3901893,0.79456127,0.41608253,0.5975083,-0.14825676,0.021928208,0.19035545,-0.19118793,0.15088679,0.08150624,0.18952039,0.13844106,-0.3853565,-0.22313818,0.5884604,0.17588042,0.1038038,0.14120442,-0.35807243,0.38112825,0.11728173,-0.098639965,-0.15478656,-0.48678732,0.03896801,-0.59661716,-0.39395747,0.38464645,0.0038669934,0.2546371,0.24042648,0.043150313,-0.37708429,0.41612548,0.35728252,0.9759255,0.17673437,-0.1528078,-0.33826143,0.34091708,0.33159631,-0.21526337,-0.103594795,-0.3282308,0.27676514,-0.73524106,0.2746299,-0.031848844,-0.45137754,0.04756262,-0.08021854,0.008300694,0.417297,-0.025777917,-0.15651552,0.13884519,-0.004231123,-0.214701,-0.027447939,-0.278643,0.115893,0.0049562147,-0.13875426,-0.15039629,0.09648323,-0.14569898,0.4289121,0.108245336,0.3259819,0.4629603,0.031155236,-0.48275504,0.05688739,0.21415046,0.546143,-0.10920607,-0.1631627,-0.21027118,-0.50557286,-0.4231256,0.27409667,-0.11803767,0.27375218,0.37766662,-0.27964145,0.7389618,0.06459284,1.1427362,-0.031733092,-0.40273854,0.03918991,0.45814222,0.029752888,-0.07067542,-0.41705638,1.1397427,0.64163107,-0.016686091,-0.049369328,-0.30122584,-0.11365982,0.24898261,-0.11962508,-0.09709144,-0.19617817,-0.76166576,-0.49088138,0.2118837,0.31177285,0.102598265,-0.056758247,0.30132625,0.20270322,-0.016425371,0.11511206,-0.35764366,-0.21325547,0.2553271,0.15832922,-0.103388675,0.10103853,-0.39753926,0.4429552,-0.62862754,0.046747565,-0.41410843,0.11405922,0.041387603,-0.21991825,0.19524346,0.035190627,0.3107538,-0.5233345,-0.25930575,-0.2548743,0.48447734,0.20104705,0.19702078,0.51400083,-0.1999909,0.11077852,0.057262234,0.3475668,1.1751908,-0.360133,0.13836312,0.3816781,-0.18400195,-0.42628366,0.21291174,-0.31757048,0.100440174,-0.16369207,-0.3344782,-0.5105034,0.31606165,0.24983208,-0.11441834,-0.006589037,-0.41432887,0.023494968,0.40797287,-0.3771916,-0.15946859,-0.18408765,0.24359336,0.5155746,-0.19042397,-0.3687345,0.12723556,0.24954261,-0.28792733,-0.50826234,-0.113189034,-0.39836755,0.36861277,0.25266138,-0.36383644,-0.10441494,-0.079597786,-0.36269352,0.10824597,0.5012529,-0.34543547,-0.037721835,-0.32976088,-0.104841165,1.0058019,0.019127287,0.12925288,-0.54791415,-0.4457927,-0.87701726,-0.48021448,0.45649704,0.15106402,0.013618322,-0.56596184,0.11273723,-0.3277381,-0.2842834,0.012884025,-0.37892348,0.36264628,0.24592683,0.5446614,-0.22454856,-0.91108286,0.18365978,0.17375173,-0.2875117,-0.58517534,0.34698275,-0.0003563991,0.72092575,0.008556062,0.1154723,0.52316964,-0.74601257,-0.04569694,-0.19844946,-0.09464249,-0.6855554,-0.017109655,998 +786,0.73479146,-0.272064,-0.34382078,-0.150361,-0.2869007,0.2271132,-0.013941988,0.5474164,0.20127398,-0.61993295,-0.39537477,-0.37784037,0.023185229,0.06332916,-0.30668348,-0.54260594,-0.08343447,0.15269195,-0.14866133,0.5603099,-0.45283648,0.523786,0.13582921,0.3401443,0.2475972,0.1713989,0.16439858,-0.18880089,-0.43511474,-0.39128718,-0.13509043,0.2566466,-0.6151062,0.16663757,-0.25643858,-0.53278214,0.080939025,-0.54107314,-0.42387602,-0.6782873,0.28108862,-1.1004357,0.50365955,0.10855621,-0.20281328,0.3046251,-0.11363074,0.04787731,-0.15687007,0.21040714,0.17587756,-0.2536101,0.11538315,-0.40287283,-0.40308055,-0.4866757,-0.5946118,0.0051488453,-0.34347787,-0.21314888,-0.21681662,0.058229584,-0.15878649,-0.15110113,-0.02725078,0.22220469,-0.5385589,0.09795836,-0.018769741,-0.044631302,0.28936398,-0.53577685,-0.2759837,-0.2879994,0.005938057,-0.34765565,-0.1253899,0.20914598,0.342679,0.40302768,-0.06114729,-0.0815557,-0.32748398,0.07144725,0.29756463,0.4989121,-0.15001231,-0.57699925,-0.17114998,-0.080198415,0.44454908,0.4501792,0.42094037,-0.22372377,0.024538843,-0.062350124,-0.4284846,0.41506943,0.6210192,-0.35166636,-0.20982093,0.28754535,0.38276526,0.26550296,-0.057995293,0.08793882,-0.053212594,-0.36106893,-0.22448511,0.15908866,-0.37501428,0.70458364,-0.15468271,0.088795,0.74685365,-0.34916124,0.20905112,0.10391829,0.111218445,-0.21679205,-0.22876419,-0.27470157,0.2836974,-0.42162874,0.2045743,-0.30839708,0.9454829,0.24529548,-0.62040925,0.33980212,-0.6149437,0.07432351,-0.15936701,0.5548701,0.31211212,0.56143695,0.31220886,0.67934006,-0.5955498,-0.08437866,-0.004972709,-0.3262687,0.030888328,-0.1928979,-0.14145704,-0.32051328,0.027780915,0.004967764,-0.18794644,0.011884476,0.61112565,-0.5386768,0.05133745,0.06258712,0.79512817,-0.3870031,-0.017852202,0.90528995,1.1174265,0.9890866,0.10929612,1.4417349,0.4263176,-0.26940468,-0.077674694,-0.1464445,-0.8616102,0.20717208,0.38322642,-0.8889575,0.38129926,0.20755476,-0.023234174,0.08207343,-0.43533888,-0.027242826,-0.27725124,0.07950673,0.01264964,-0.2065777,-0.4242196,-0.28024134,-0.25529233,0.07628758,-0.00343058,0.23476909,-0.3160272,0.27153054,0.2512296,1.6572732,-0.0070498437,-0.07435859,-0.0816127,0.5805657,0.26180208,0.13481976,0.11300092,0.4472761,0.2980821,0.061835453,-0.5166604,-0.0065963217,0.009517923,-0.6477854,-0.072367944,-0.23033321,-0.118351854,-0.1104291,-0.4072918,-0.15427874,-0.0849654,-0.24848413,0.53195757,-2.1255288,-0.03587826,0.00689845,0.4696802,-0.15308648,-0.38955823,0.07001782,-0.33043122,0.38912883,0.34705445,0.42512563,-0.9140749,0.3299671,0.7054665,-0.271501,-0.2517644,-0.53856224,-0.11549282,-0.09366352,0.27255973,-0.07804351,0.04338487,0.12907542,-0.12621984,0.52807194,0.088544585,0.2242387,0.1744811,0.5135762,-0.017302513,0.37290072,0.108211935,0.49406755,-0.10210195,-0.13263933,0.40848747,-0.42061862,0.362437,-0.031175384,0.10183501,0.44838914,-0.52590066,-0.67334086,-0.66421884,-0.54802704,1.1064576,-0.18785764,-0.40535927,0.24803585,-0.11692653,-0.43736246,-0.28869024,0.43971753,-0.2541917,-0.0335764,-0.72856635,-0.06440199,-0.048841257,0.0981822,-0.020673908,0.22334307,-0.2826561,0.7573853,-0.03917437,0.39928058,0.40848252,0.1830556,-0.23704512,-0.64814764,0.05961038,1.0859007,0.4778253,0.35483515,-0.29919645,-0.17417534,-0.22435696,-0.11242825,0.1962695,0.51014423,0.8231377,-0.08582586,0.020351574,0.29652622,0.13239998,-0.08498138,-0.1614265,-0.39465716,-0.049593538,-0.062095124,0.60249686,0.60285187,-0.337281,0.45381558,-0.28224388,0.5114022,-0.1744513,-0.425572,0.42917338,1.1201215,-0.13805923,-0.08515689,0.6527408,0.6092451,-0.56606096,0.47020665,-0.85859895,-0.24024649,0.39851525,-0.06591135,-0.43000197,0.30874634,-0.23032297,0.15822425,-0.934653,0.6096955,-0.021947077,-0.3212397,-0.56206447,-0.16244046,-2.7711604,0.10082698,-0.19909985,-0.2936443,-0.19107132,-0.35110614,0.10918387,-0.57495403,-0.70500594,0.04660195,-0.030894814,0.37324575,0.11770179,0.32213143,-0.14475568,-0.24977905,-0.25585696,0.1949172,0.01601398,0.33755228,-0.25064895,-0.52382046,-0.15834644,-0.18044157,-0.29671633,-0.048592374,-0.5762411,-0.5699141,-0.111762285,-0.50180715,-0.29833776,0.6534043,-0.4676725,0.027828922,-0.23405248,-0.14706384,-0.41581425,0.27053797,0.1828758,0.013212184,-0.053389106,-0.03438425,-0.027074764,-0.27779174,0.3236531,0.11194349,0.20276652,0.41272926,-0.28042483,0.060516685,0.38564298,0.65130126,-0.0023902468,0.85968786,0.1962141,-0.2565122,0.33851138,-0.32597294,-0.2793361,-0.7842739,-0.38445878,-0.12798156,-0.5132747,-0.6206035,-0.13129961,-0.41017047,-0.72375137,0.575988,-0.080450214,0.2980257,0.038039345,0.21541756,0.6145912,-0.04225864,-0.16531521,0.17692685,-0.16114114,-0.5771683,-0.35086665,-0.6784952,-0.21452378,0.2863309,0.8920302,0.015633151,-0.16000436,0.2850968,-0.19679673,0.06650388,-0.09570179,-0.20952363,-0.20115788,0.47153914,0.025194049,-0.67071176,0.52408296,0.20489502,-0.3103073,-0.4264703,0.08539343,0.8098471,-0.8388358,0.38970837,0.44915244,0.04589195,0.052464068,-0.39655796,-0.24992071,-0.17149341,-0.23076223,0.41779396,0.37029555,-0.65194535,0.3068119,0.51482385,-0.27042785,-0.7145872,0.6976239,-0.17115493,-0.1366754,0.020811727,0.33055958,0.13710356,-0.03609172,-0.11228513,0.3204575,-0.58939797,0.37619147,0.3895488,0.011170581,0.11795465,-0.07846389,-0.16316651,-0.99716455,0.30572778,-0.41520444,-0.49881124,0.23705971,0.036063243,-0.12997197,0.310981,0.3748395,0.3455249,-0.4485278,0.22155072,-0.05437729,-0.22288054,0.33804235,0.41620567,0.50723714,-0.36741892,0.65950024,-0.021126708,-0.0867427,-0.12017479,0.22814588,0.34797385,0.21581869,0.14189278,0.36365333,-0.30156037,0.32441702,0.73491555,0.31738535,0.53463715,0.25964746,-0.12518954,0.3668301,0.20718579,0.4524406,0.0027983587,-0.49338642,0.059577566,-0.09161507,0.14356105,0.31628653,0.10054326,0.27101016,-0.18379517,-0.26330528,0.028903587,0.4385867,-0.1294793,-1.2272719,0.09164548,0.06590355,0.74342614,0.61834437,-0.15148942,0.22252,0.4000505,-0.23262765,0.14439677,0.52653724,0.10178453,-0.63899654,0.54705733,-0.570303,0.26808578,-0.19727968,0.06605271,-0.12901144,-0.0056700804,0.42881155,0.8050565,-0.06174086,0.055060532,-0.09646853,-0.25572237,0.0054813325,-0.60654885,0.05314515,-0.36391667,-0.30176952,0.7045726,0.34716716,0.3955277,-0.17301746,0.067800544,-0.06212535,-0.22506885,0.27148557,0.1895883,0.11450377,0.0007616803,-0.6498225,-0.24960862,0.60101956,-0.2355141,0.025643164,-0.029455205,-0.35174856,0.28697228,-0.2643489,-0.1691354,0.11669403,-0.8296531,-0.088115655,-0.32962462,-0.5576532,0.24155302,0.18613161,0.13722011,0.23610991,-0.0707872,-0.3236956,0.08694842,0.54244405,0.6639194,0.011629532,-0.25646946,-0.3713621,0.28791675,0.2795308,-0.33323935,-0.13443094,0.049017325,-0.02030616,-0.53384745,0.5047334,0.015904153,-0.2998682,0.0152772665,-0.11981132,-0.083364934,0.54608476,-0.057751793,-0.3264493,0.13593374,-0.10069394,-0.19762027,-0.04818907,-0.20221107,0.20011032,0.21190043,-0.22670364,-0.06943161,-0.08067375,-0.07953454,0.24235143,-0.04591887,0.45649385,0.4265554,0.044699077,-0.44541702,-0.16211258,0.057038862,0.50256854,-0.06788025,-0.086851954,-0.03461044,-0.5603728,-0.2636893,0.03243662,-0.18525158,0.28802267,0.19371128,-0.46978053,0.816235,0.11910665,1.1180058,0.09206755,-0.35825288,-0.023711642,0.57503146,-0.016954875,-0.15039556,-0.38036394,1.237287,0.5264466,-0.2076592,-0.19976074,-0.30536178,-0.13537283,0.28497508,-0.24236496,-0.12183625,0.01055558,-0.7557089,-0.18327336,0.22062899,0.37238148,0.08267372,0.009820933,0.20846218,0.38941026,0.13957298,0.35267672,-0.44289193,-0.27894226,0.33926585,0.14065382,-0.058255076,-0.0069698915,-0.3711383,0.338088,-0.5723165,0.089104,-0.4121544,0.107029974,-0.19519718,-0.35272333,0.096327394,-0.06859676,0.33429933,-0.42277083,-0.4970341,-0.37863386,0.3146756,-0.021635205,0.20024876,0.4502547,-0.31212482,0.1700614,-0.09175094,0.4843928,1.3536233,0.011980474,-0.0077422857,0.43168047,-0.6128896,-0.68981504,0.41350973,-0.31154904,0.10845655,-0.09915784,-0.36486837,-0.603795,0.25184438,0.21086152,-0.005387999,0.24136156,-0.5545159,-0.08298615,0.50230324,-0.33559194,-0.27297404,-0.29403725,0.22065485,0.75595045,-0.42046115,-0.3134471,0.21420361,0.22493215,-0.45555532,-0.4324007,-0.1570559,-0.33877102,0.5031981,0.0035860986,-0.32933304,-0.014487301,-0.08763528,-0.36499846,0.059824374,0.21390784,-0.39521098,0.1631279,-0.41094744,0.04881059,0.9584009,-0.07836267,-0.065453194,-0.64459485,-0.5606194,-0.90626335,-0.516882,0.44256878,0.31426445,0.059246745,-0.40782574,0.12746805,-0.06628731,-0.08524867,-0.010015746,-0.35232353,0.5381887,0.24285157,0.5284238,-0.15290187,-0.8480812,0.2162621,0.20592932,-0.114728,-0.7334385,0.5817689,-0.17717369,0.75908226,0.10791707,0.035647407,0.24209774,-0.64769864,0.12698786,-0.12089991,-0.18558608,-0.6833115,0.20444894,5 +787,0.28517482,-0.3357441,-0.33735025,-0.037421416,-0.064576186,-0.079691134,-0.15000872,0.54744583,0.17414606,-0.21998398,-0.21176982,-0.22565763,0.0026701961,0.4626577,-0.19889508,-0.6738418,-0.21403277,0.09778335,-0.22980666,0.80088645,-0.38029003,0.102313764,-0.06016661,0.46789622,0.3249747,0.15945677,0.29155985,-0.007909782,-0.3397847,-0.2592214,-0.05367503,0.19724973,-0.59980786,0.19262116,-0.12973338,-0.2945762,0.0072931596,-0.5789712,-0.37959817,-0.78065795,0.41049913,-0.7955811,0.23741919,0.109918945,-0.13638669,0.50734115,0.106591344,0.13503017,-0.2865424,-0.21871053,0.09010967,-0.13466169,0.04907809,-0.18270318,-0.19224901,-0.1598035,-0.6937487,0.10087916,-0.24211352,-0.30483449,-0.32931992,0.15014213,-0.4776063,-0.017047843,-0.11542312,0.69940823,-0.45301244,0.010274229,0.12940578,-0.18145078,0.150789,-0.6267257,-0.34315392,-0.044767052,0.09151408,-0.066150784,-0.020682132,0.32086417,0.1523737,0.3035214,-0.12294373,-0.100692846,-0.614291,-0.056135103,0.22872026,0.5870423,-0.14246707,-0.78405786,-0.024472931,-0.046850383,-0.15259741,0.087974764,0.12378732,-0.17897268,-0.22344537,-0.029343048,-0.19864082,0.34503886,0.4489086,-0.22795106,-0.42031893,0.35356593,0.355806,0.30046543,-0.01622452,-0.3181536,-0.042106282,-0.7082316,-0.04197063,0.011177893,-0.15973395,0.7024103,-0.109999515,0.30395594,0.6354511,-0.07055923,-0.073364235,-0.091208644,-0.0026930596,0.016492536,-0.41773915,-0.112493634,0.3245249,-0.04480912,0.35422978,-0.14213888,0.913851,0.035411425,-0.7837593,0.49404845,-0.51207876,0.24384512,0.10357339,0.3997389,0.45644474,0.37711897,0.5641021,0.6069382,-0.31865066,-0.02707311,-0.09965205,-0.21249492,-0.10727233,-0.1189487,-0.00590988,-0.36717725,0.093848884,0.06906726,-0.09801977,0.14666274,0.45154837,-0.35831735,0.053162232,0.22629003,0.9038878,-0.14974982,-0.07408815,0.8073419,1.0274328,1.1965008,-0.0059129507,1.1078811,0.18395166,-0.1890949,0.23820925,-0.16312347,-0.8237265,0.19529307,0.37346315,0.23593287,0.20235054,0.007941944,-0.12467984,0.440796,-0.3940116,0.11143994,-0.2158209,0.18528838,0.4279441,-0.076329835,-0.43883872,-0.34830502,-0.12607533,0.09495159,-0.039595228,0.19768016,-0.12342936,0.33045477,-0.07728406,1.960576,-0.05407523,0.12357682,0.24058239,0.6058844,0.1314659,-0.06630239,0.090046324,0.32325727,0.17354596,0.078790575,-0.66975445,0.1312098,-0.24932325,-0.6195327,-0.013475671,-0.34205115,-0.19280829,-0.032968063,-0.5163029,-0.18553446,-0.2176194,-0.25711644,0.56163716,-2.959863,-0.038304698,-0.07293639,0.20170294,-0.3122835,-0.38278064,0.022967806,-0.47823653,0.5477197,0.42980328,0.58913016,-0.6189467,0.17521578,0.38447592,-0.4948738,-0.166117,-0.6056924,-0.03587496,-0.07117779,0.56611294,0.013762251,0.030181967,0.1204285,0.03365031,0.6057518,0.2181548,0.019092055,0.27854255,0.3328168,-0.08605859,0.43407163,-0.13786216,0.3652124,-0.19573314,-0.07332585,0.29407874,-0.5724781,0.42726007,-0.22138925,0.17279196,0.39312646,-0.36139426,-0.9527963,-0.5218952,-0.29653183,1.1156696,-0.18639903,-0.50532055,0.35914555,-0.20118429,0.037874777,-0.23734277,0.48924842,-0.27983525,-0.16902979,-0.72710425,0.065604575,-0.16008143,0.17536409,0.03100723,-0.09190428,-0.48255923,0.7786897,-0.010959762,0.51604104,0.4353387,0.13495089,-0.36127627,-0.45226955,0.026415078,0.59784395,0.28132382,0.1446648,-0.27296495,-0.19777878,-0.07828526,-0.25755396,0.039961662,0.5240306,0.46190807,-0.0518233,0.10782698,0.30636898,-0.0017203888,0.012749909,-0.051253695,-0.08581895,-0.19951086,0.022984704,0.63980836,0.9540834,-0.32286462,0.14674579,-0.14709438,0.22057463,-0.12881462,-0.20970546,0.47806492,0.9443677,0.0076948605,-0.24177003,0.45235744,0.68175143,-0.29307505,0.38665882,-0.34470046,-0.15339933,0.582816,-0.24442913,-0.4510359,0.09077132,-0.320173,-0.2030937,-0.7310884,0.36410734,-0.2114244,-0.3076663,-0.6912393,-0.21777599,-3.3683288,0.08591744,-0.32074866,-0.40563098,-0.15623869,-0.15382595,-0.12999131,-0.7044746,-0.58005756,0.13462245,0.09094918,0.49611878,-0.12685852,0.1905831,-0.22662778,-0.11798782,-0.3817347,0.09058297,-0.0698827,0.3933587,0.07459852,-0.30332413,-0.09543118,-0.22623806,-0.5838269,0.1353722,-0.44833723,-0.32233348,-0.120778024,-0.564967,-0.27923468,0.5853206,-0.45076606,-0.020470275,-0.19893561,-0.0955923,-0.3005978,0.38788223,0.2494144,0.24261802,0.019588368,-0.079850756,0.09457014,-0.14922398,0.33993617,0.021787962,0.34875083,0.6072655,-0.25986448,0.2227105,0.41684636,0.6359034,-0.13451692,0.820563,0.5349696,0.022776062,0.23708707,-0.3360125,-0.1751272,-0.548762,-0.24888015,0.22563948,-0.25362554,-0.5520292,-0.16603206,-0.36365637,-0.7864027,0.36406603,-0.12811036,0.17729008,0.02952441,0.011362642,0.47852483,-0.24831752,-0.012358949,0.036778472,0.2018948,-0.4948721,-0.36285737,-0.60132813,-0.49247566,0.055982172,0.78913754,-0.025818074,-0.26717836,0.080648996,-0.314507,-0.18542303,0.08125173,-0.08811557,0.10113692,0.2804164,0.27843842,-0.72479725,0.67155284,0.042396456,-0.1428713,-0.43127504,0.16032992,0.4146177,-0.39597082,0.6706764,0.3212616,0.12662604,0.021518042,-0.5173349,-0.35636666,-0.19153851,0.024169276,0.23780727,0.2418616,-0.6659304,0.42581904,0.16257201,-0.2988052,-0.8268401,0.2773357,-0.002681346,-0.33752856,-0.17500359,0.2645967,0.13927487,0.01798804,-0.0980129,0.27543935,-0.5129979,0.26223576,0.12982316,0.0835085,0.28921404,-0.1052422,-0.111973524,-0.6650587,0.10550526,-0.30473682,-0.3316588,0.20905568,0.19548507,0.06565238,-0.018024156,0.1094766,0.2682074,-0.30412602,0.16439296,-0.029277757,-0.111655645,0.30565122,0.41493902,0.6471118,-0.5641823,0.59987193,0.026415586,0.0874038,0.15684007,0.026940107,0.26600403,0.09878385,0.28016487,-0.023778215,-0.18091102,0.11882496,0.62770253,0.23733921,0.494023,0.057118,-0.2450325,0.6318326,0.07903533,0.24367678,-0.014282942,-0.6340497,0.26230606,-0.3029449,0.022257993,0.4880503,0.10988426,0.28912494,-0.09040172,-0.24456792,0.034255706,0.3929368,-0.16575639,-1.0154355,0.17280586,0.030718377,0.8655985,0.7516429,-0.09071437,0.1947639,0.75741154,-0.07852522,0.0786346,0.3466227,0.030652596,-0.6778517,0.6641314,-0.52845454,0.50314003,-0.03579696,-0.027266381,-0.0017177612,0.08968399,0.37566128,0.39357826,-0.20406418,-0.120546676,-0.1306345,-0.3460327,-0.0038395673,-0.4437728,0.286773,-0.38450205,-0.2422527,0.57066244,0.6963673,0.29531857,-0.16601415,0.030732328,0.113781214,-0.011447159,0.08356478,0.042068888,0.019450808,0.11798501,-0.82510024,-0.17724913,0.4955049,-0.3374195,0.20871247,-0.06860451,-0.25473753,0.28913918,-0.28972927,-0.32353207,-0.04731959,-0.76507753,0.2367713,-0.19644113,-0.50593036,0.2776368,-0.14956819,0.40953505,0.15763867,0.019744538,-0.42304578,0.11836904,0.14568654,0.9537594,-0.029766133,-0.11169273,-0.4022604,-0.05638343,0.09026244,-0.13484572,-0.12689586,-0.08552309,-0.18910229,-0.4429946,0.5011073,-0.020296214,-0.09732089,0.057206154,-0.16118897,-0.058298197,0.68945426,-0.1409364,-0.10698128,-0.29102418,-0.17234279,-0.17296094,-0.03992774,-0.012545968,0.346475,0.23155986,-0.08367094,-0.03539096,-0.03537332,-0.023044435,0.45642772,-0.064974524,0.31333014,0.17438494,0.100829504,-0.39257994,-0.16959123,0.006224195,0.53887457,0.20286842,-0.09932095,-0.26898864,-0.42874837,-0.32977417,0.23980665,-0.12776244,0.39066705,0.17576264,-0.3501095,0.49114648,0.1051923,1.1127274,0.10284534,-0.3640975,0.2766042,0.5047901,0.039417997,0.018343912,-0.26959231,0.8801248,0.3591622,-0.12844642,-0.099811316,-0.30644605,-0.0030759715,0.1542558,-0.2419884,-0.014000843,-0.025084222,-0.5151043,-0.1017434,0.15079303,0.14474978,0.20849794,-0.29980788,-0.17833793,0.22732763,0.13197272,0.47897515,-0.25354406,-0.2642651,0.41351172,0.12057862,0.13563606,-0.037772093,-0.44717205,0.39376667,-0.49083266,0.16243176,-0.2814135,0.18863273,-0.34586346,-0.10466883,0.28933907,0.08293822,0.46273425,-0.31510854,-0.3678999,-0.2800896,0.42121303,0.15651257,0.21472706,0.4674984,-0.20421283,0.04047293,-0.008999117,0.62336236,0.91239005,-0.21238534,0.034147914,0.37724254,-0.32596195,-0.60435575,0.33271024,-0.2029795,0.17126326,-0.15105735,-0.08031867,-0.8273413,0.1067788,0.22915296,0.027614126,0.036557425,-0.63148093,-0.37873104,0.29202357,-0.33147767,-0.22437535,-0.42041337,-0.011490047,0.7695735,-0.21900159,-0.37690043,0.113405965,0.086563654,-0.121917665,-0.52547026,0.108664714,-0.3769153,0.29222456,0.043217074,-0.3686843,-0.32545146,0.14729445,-0.42313674,0.06169967,-0.005702535,-0.31205398,0.00017693639,-0.4099799,-0.021141179,1.2235616,-0.24577475,0.44832766,-0.69344234,-0.46467507,-0.91322255,-0.3891457,0.74360496,-0.15630178,0.023591975,-0.6337623,-0.09652168,-0.051676977,-0.28927037,-0.14793152,-0.43017808,0.41751012,0.1627198,0.31484544,-0.18876536,-0.47543907,0.11146548,0.1425666,-0.050111305,-0.45981118,0.3972009,0.13992186,0.82506114,0.019870244,0.053685248,0.18189563,-0.4492089,0.055316553,-0.16487902,-0.31162533,-0.41864052,0.35399953,13 +788,0.66803795,-0.21863663,-0.5954934,-0.125796,-0.34637442,0.22472791,-0.1349184,0.69802994,0.21663089,-0.45793596,-0.17700827,-0.032248598,-0.20949024,0.3971896,-0.20616944,-0.74362606,-0.028875014,0.12881891,-0.31123868,0.8966057,-0.1551644,0.31997108,-0.2777755,0.46152994,0.2699401,0.307992,0.19480197,0.13096446,-0.11153064,-0.27543485,0.057391047,0.19748461,-0.7451058,0.23516959,-0.19209611,-0.47750917,-0.062429756,-0.38694692,-0.346186,-0.82662815,0.49945155,-0.92010957,0.6232254,0.15288283,-0.27069244,0.34217048,0.11628006,0.070651636,-0.13923961,-0.018565783,0.03384305,-0.16445841,0.1399465,-0.25103042,-0.27877322,-0.7612032,-0.70226234,-0.18885326,-0.4515631,-0.18541634,-0.07525989,0.22773902,-0.39739403,-0.02847918,-0.22165686,0.43542287,-0.41639695,-0.0070792288,0.21555497,-0.25732052,-0.07008156,-0.8125663,-0.43478677,-0.14966296,-0.007701099,0.12404894,-0.046865713,0.5504989,0.11964995,0.29388776,0.088661276,-0.24953537,-0.29489002,-0.23413043,0.12381513,0.36940265,-0.2529217,-0.57246876,-0.19270074,-0.09638772,0.47805488,0.17474622,0.31552517,0.01693357,0.01860909,-0.19366352,-0.16260734,0.50189185,0.57197154,-0.3233116,-0.22061302,0.37162766,0.3224479,0.21517813,-0.28187892,-0.13504456,-0.009957875,-0.36050224,-0.10846937,0.040091883,-0.31323949,0.73859316,-0.13940333,0.20855188,0.5874138,-0.24995363,0.113264896,-0.016759183,0.18069784,-0.10120324,-0.4417955,-0.37078318,0.3479224,-0.45884076,0.2701824,-0.39948237,0.7418797,0.29787755,-0.40037617,0.2775563,-0.61100405,0.08747215,0.027932672,0.45783707,0.53798336,0.5562369,0.08333078,0.75608367,-0.24515994,0.060912233,0.11008755,-0.06672748,-0.029494695,-0.5255621,0.11874154,-0.47864416,0.32868248,0.023133108,0.0060657016,-0.04596257,0.5957623,-0.49287185,-0.2945311,0.3136048,0.9599144,-0.261215,0.05574515,0.8185801,1.3430818,1.1326967,-0.13712241,1.1067439,0.10785058,-0.3303248,-0.09704768,-0.021028638,-0.85141104,0.16477357,0.3174518,-0.2683507,0.6136768,0.08505217,-0.2295603,0.20219336,-0.40261933,-0.12850262,-0.14073974,0.15366612,0.23301156,-0.09234631,-0.566457,-0.15015955,-0.05167818,-0.11843455,0.21756661,0.40492257,-0.2321366,0.4300401,-0.13640629,1.0818694,-0.15849037,0.12061635,0.18868446,0.83716756,0.28504854,0.07245911,0.45010749,0.49093655,0.31187287,0.103534736,-0.5479307,0.215374,-0.5029475,-0.5839281,-0.10969975,-0.35552302,-0.21449845,0.1133343,-0.27781367,-0.4123484,-0.11011207,0.07796854,0.21688326,-2.513428,-0.097556055,-0.26600328,0.2914041,-0.36980543,-0.22371222,-0.026470095,-0.5783058,0.4433249,0.35645422,0.3941675,-0.57441264,0.32257333,0.5334907,-0.51046205,0.10737028,-0.43757498,-0.058429226,-0.09212592,0.6763517,-0.17506225,0.016381884,0.13062818,0.20655914,0.49999595,0.24272804,0.27702188,0.14836954,0.3514825,-0.12732548,0.1822728,-0.08674288,0.52558726,-0.3964428,-0.064681,0.3910673,-0.5860426,0.4037323,-0.28593108,0.050226253,0.6936495,-0.44712067,-0.61371756,-0.53779507,0.14896365,1.0786911,-0.31480756,-0.824282,0.08855908,-0.26381543,-0.1433777,-0.21055473,0.33618245,-0.13328719,0.061257083,-0.62437373,0.0774527,-0.029337445,0.14319079,0.061701026,0.13743214,-0.40221623,0.7306211,0.14794534,0.5949743,0.17244045,0.31243184,-0.253325,-0.5155752,0.027620858,0.743639,0.5324987,0.058456093,-0.2595959,-0.018960714,-0.13385269,-0.33671358,0.1594223,0.74013805,0.52568954,-0.124938585,0.09908696,0.37904572,0.122880846,0.28681716,-0.07808277,-0.4352294,-0.36117396,0.05398597,0.55095214,0.684299,-0.37502024,0.25173157,-0.10418305,0.4043131,-0.15220304,-0.50241977,0.5623162,1.1874789,-0.22335692,-0.29689646,0.81987685,0.6062846,-0.67268115,0.5883295,-0.8018877,-0.2733883,0.6214016,-0.25950083,-0.4397936,-0.008499113,-0.33212766,0.0051113144,-0.79037875,0.33926892,-0.32973877,-0.20837663,-0.66730326,-0.26301882,-2.5910637,0.084674336,-0.3811395,-0.16518289,-0.45107684,-0.06858234,0.12685327,-0.81386644,-0.63569134,0.24662615,0.12696603,0.5809972,-0.10048928,0.20321862,-0.32343817,-0.26353988,-0.46863684,0.3230615,0.06406683,0.16780533,-0.10464827,-0.39172348,-0.0049041263,0.05129959,-0.3267952,0.036855906,-0.53662306,-0.19528514,-0.114338666,-0.5600473,-0.022357186,0.6905077,-0.14891581,0.011690135,-0.21863806,0.16396914,-0.20322466,0.011013604,-0.15139717,0.26642153,0.13476913,-0.18612947,0.32654986,-0.36772752,0.55674034,0.065484636,0.53493017,0.36972246,-0.26702598,-0.060118895,0.3850789,0.46635914,0.18142855,0.7967472,0.24097745,-0.13853712,0.4919047,-0.3570087,-0.37294593,-0.75454116,-0.28999642,0.18205146,-0.28077307,-0.61442167,0.09909443,-0.39906228,-0.9617324,0.5932961,-0.16073711,0.63249373,-0.046813652,0.26012912,0.55976194,-0.25877032,0.12091889,0.07710589,-0.03618301,-0.50151396,-0.2634643,-0.70385617,-0.2795074,0.1646922,0.76042724,-0.35726163,-0.24444528,0.1722786,-0.45024207,0.048101474,0.23147714,0.050322924,-0.26477662,0.5345954,0.2056355,-0.7312786,0.64520454,0.023327827,-0.039260063,-0.42718986,0.2668046,0.5316525,-0.86051345,0.5197672,0.5053451,-0.007809038,-0.45722005,-0.5896156,-0.1426167,0.071632825,-0.0767489,0.3233727,0.29537714,-0.68765944,0.2555689,0.16856991,-0.41426802,-0.65074915,0.6668022,-0.159638,-0.22082533,-0.18558986,0.48069847,0.21475947,-0.10716925,-0.09944042,0.350947,-0.41917157,0.21518214,0.07660329,-0.13138777,0.28460273,0.08754108,-0.18451184,-0.8496588,0.42392087,-0.64041144,-0.31610194,0.510606,0.027663613,-0.027165672,0.18315278,0.30877283,0.35675725,-0.33300683,0.3201219,-0.013857134,-0.40833628,0.56914395,0.2487384,0.6477554,-0.55310386,0.7233908,0.06080407,-0.068750896,0.3430545,0.21152222,0.34701857,0.28488913,0.7360837,0.24222179,-0.21331763,0.09041583,0.76391643,0.35634807,0.53181964,0.2645323,-0.20426734,0.27188894,-0.007982678,0.16283166,-0.103860974,-0.60998946,-0.28701273,-0.13942754,0.08437282,0.44152424,0.12482045,0.44443956,-0.047403287,-0.18289489,0.017943835,0.17749012,-0.07134109,-1.2962797,0.13843141,0.25830755,1.0047402,0.507908,0.022543589,-0.034636907,0.6423181,-0.14437722,0.027657678,0.5896521,0.17780967,-0.5210566,0.5286527,-0.3191637,0.3808516,-0.106423475,0.05632171,0.09663477,0.11057752,0.41944394,0.6731582,-0.24486046,-0.009108772,0.022282697,-0.5185832,0.14861952,-0.32414153,0.17232098,-0.42800805,-0.15712096,0.4817792,0.55628484,0.19337298,-0.20948492,-0.030805035,0.1355876,-0.05356586,0.30589226,0.13095458,0.015147656,-0.07306831,-0.6170378,-0.23307562,0.531116,-0.2598834,0.037569303,-0.04621118,-0.42253777,0.30944932,-0.115950964,0.011702764,0.09872975,-0.8300331,0.27275178,-0.007982726,-0.50329393,0.5881416,0.07542261,0.03896028,0.20111574,0.002039044,-0.29250923,0.09279444,0.082306236,0.59416556,-0.20949475,-0.23457634,-0.6546956,-0.16586448,0.05662803,-0.24792464,0.4315982,-0.11681304,0.15869369,-0.19229262,0.58753103,-0.010609533,0.040520016,-0.30736586,-0.24409938,-0.12048578,0.4657775,0.0069086254,-0.06731791,0.02507171,-0.058975402,-0.46331677,-0.20710975,-0.26990935,0.0571042,0.12568918,-0.035277408,-0.32672364,-0.219616,0.039896697,0.36781755,-0.01710861,0.23128456,0.42102256,0.102971755,-0.45989385,-0.08695904,0.32389554,0.44487333,-0.036103293,-0.07913446,-0.16673177,-0.7098115,-0.36565578,0.414198,-0.19538724,0.26421458,0.094645835,-0.32967964,0.8880939,0.06916133,1.211946,-0.13712026,-0.55537695,0.040902864,0.6427579,-0.10112039,-0.08382393,-0.37350282,1.186359,0.65804553,-0.16399579,-0.15210295,-0.4597137,-0.0029697816,0.11752387,-0.32766482,-0.15510003,0.0037796907,-0.5212544,-0.27594146,0.13694675,0.4096315,0.25148073,-0.1562979,-0.004098306,0.356563,0.41643262,0.39103493,-0.64245015,-0.53112274,0.27107364,0.06884941,0.024950242,0.23522316,-0.40399444,0.200437,-0.6681695,0.2539233,-0.35727584,0.0062358924,-0.23034006,-0.42924657,0.109335005,0.032520626,0.41451764,-0.39867875,-0.5301822,-0.19432636,0.3411183,0.08114185,0.1986206,0.43588528,-0.3359425,0.062281277,-0.0074247173,0.64197576,1.0380868,0.0705148,-0.07803584,0.08499733,-0.6388891,-1.0310092,0.19086532,-0.41630864,0.37929192,-0.20140028,-0.29608077,-0.85540074,0.33961606,0.07543143,-0.26244962,0.12268016,-0.68123597,-0.31389457,0.13044508,-0.32400313,-0.2663403,-0.3220589,0.081332944,0.7600662,-0.29313186,-0.14479254,0.008597185,0.35845664,-0.26589456,-0.766329,-0.113583006,-0.50762063,0.32142484,0.036950085,-0.20588098,-0.18016808,0.0552074,-0.5255651,0.3740851,0.2207578,-0.41869447,-0.11816306,-0.3510429,0.08247219,0.7744458,-0.15184905,0.042015474,-0.5666605,-0.5793637,-0.8958114,-0.7075642,0.18978328,0.16452152,0.08085489,-0.77662104,0.113624394,-0.20965713,-0.16194905,-0.14915557,-0.39672145,0.37641108,0.18422185,0.44900712,-0.012999207,-0.9030678,0.25608477,0.20578568,-0.037783105,-0.5926682,0.2712504,-0.25557017,1.1040407,0.13496196,0.067908034,0.08932149,-0.5233297,0.08346394,-0.20478709,-0.15403463,-0.6550849,0.14035149,45 +789,0.50238615,-0.26940906,-0.41880393,-0.23677891,-0.371515,-0.051980834,-0.14154199,0.5841127,0.35998037,-0.39449906,-0.1833356,-0.04780041,-0.040969256,0.5882514,-0.18796568,-0.38911977,-0.23201434,0.25734714,-0.5858237,0.5821874,-0.5057402,0.2669569,-0.0056962953,0.673515,0.4375939,0.23232989,0.12203447,0.07519526,-0.028764017,-0.46822596,0.04850949,0.0266178,-0.62161857,0.021891894,-0.2922974,-0.56846184,-0.06884002,-0.48921585,-0.5145613,-0.9626743,0.5417133,-0.8617995,0.568548,-0.16423069,-0.23468529,-0.0041394173,0.30300435,0.3696077,-0.13421047,-0.13816644,0.1500189,-0.22564703,-0.067331545,-0.24283527,-0.13238661,-0.32820904,-0.68655324,-0.19931078,-0.27772447,-0.10618927,-0.48802152,0.15153636,-0.47557512,0.103373386,-0.084589094,0.52692324,-0.39025518,0.16935039,0.07933373,-0.25766507,0.21444333,-0.58703595,-0.33013853,-0.1724943,0.1932232,0.101392984,-0.27890623,0.5574805,0.28317583,0.30271813,0.091923684,-0.22891031,-0.45540157,-0.008744776,-0.16347216,0.59008735,-0.10370574,-0.6392819,-0.17182846,-0.039542872,0.45675626,0.22458094,0.17768677,-0.19529735,0.06303061,-0.0034592152,-0.22603828,0.8747366,0.61058956,-0.059326347,-0.3075455,0.24529134,0.4156649,0.34623507,-0.17138337,-0.08482685,0.03904577,-0.5866983,-0.24562229,-0.23387194,-0.1958371,0.4162034,-0.08197514,0.29808196,0.7275238,-0.4136083,0.09411395,0.048270296,0.1731988,-0.19252189,-0.37028214,-0.52084774,0.3551263,-0.47814968,0.20235157,-0.35630643,0.93944246,0.09652094,-0.6140148,0.36634883,-0.5750508,0.07792994,-0.034076232,0.5442216,0.6741443,0.47884706,0.5024507,0.6000194,-0.21164507,0.10933278,0.09439453,-0.36062387,0.21000572,-0.2938198,0.18544865,-0.4426806,0.10411588,-0.18686731,-0.12886079,-0.026789024,0.6454278,-0.581825,-0.18892269,0.14542156,0.7112084,-0.2249953,0.212386,0.9181452,1.1436743,1.0857334,-0.008165941,1.2482734,0.27881953,-0.24489982,-0.0054027312,-0.10187898,-0.79780596,0.1913309,0.29248607,-0.78418565,0.3401886,0.07312885,-0.042862315,0.19791043,-0.54451245,-0.22891428,0.03254293,0.54737544,0.20258087,-0.27700508,-0.40278903,-0.35426387,0.0024853647,0.038160574,0.35991478,0.25128016,-0.32570413,0.4413043,0.08570481,1.582264,-0.25875553,0.0676997,0.019748868,0.797102,0.26272774,-0.1641041,0.06376796,0.18277448,0.29765382,-0.0592453,-0.5443031,0.14947571,-0.22053863,-0.22453994,-0.18033512,-0.40512407,-0.1658869,-0.01532713,-0.014789681,-0.39288136,-0.03020895,-0.20195962,0.35077175,-2.3964474,-0.110195555,-0.1358226,0.30865264,-0.25982693,-0.3233016,-0.04591517,-0.7010517,0.5239818,0.11596318,0.57280254,-0.7539225,0.2700702,0.9218382,-0.85882115,-0.06972713,-0.4846438,-0.17978065,-0.14051254,0.46711072,0.045691356,-0.2520732,-0.23909359,0.20209374,0.45972314,0.4147904,0.056455355,0.5053316,0.6370951,-0.31013685,0.80662936,-0.10065208,0.7440013,-0.3325279,-0.19634481,0.50412756,-0.4436039,0.03858632,-0.64076364,0.09547588,0.85335135,-0.37954494,-0.968631,-0.5334337,0.07182238,1.048426,-0.281069,-0.54225737,0.18731289,-0.49643353,-0.18835855,0.069570534,0.5360781,-0.28911072,-0.10534438,-0.7371986,-0.15022083,-0.12141817,0.26395535,0.10941473,-0.064505816,-0.47399423,0.6440641,0.02352721,0.5470278,0.087889455,0.1321308,-0.46006092,-0.36099717,0.20810924,0.7830186,0.3223358,0.102328,-0.2857794,-0.043486133,-0.37846628,-0.18716876,-0.16305993,0.71019095,0.7291918,-0.15191084,0.088446416,0.19589932,-0.12713422,-0.039389875,-0.20413578,-0.3910055,-0.2786188,-0.18972486,0.58488244,0.8927098,-0.25545195,0.3627111,-0.0044559785,0.3005445,-0.084228955,-0.49162388,0.7813473,0.8783825,-0.106108785,-0.2906593,0.7343626,0.39940155,-0.40006194,0.54001915,-0.64405537,-0.2387482,0.59234744,-0.12305608,-0.47798762,0.061793447,-0.25660717,-0.12098161,-0.63664323,0.20026578,-0.4013938,-0.4062437,-0.6037192,-0.12848513,-2.4455347,0.2002031,-0.030404193,-0.23489381,-0.21894442,-0.23035413,0.25752792,-0.5021402,-0.8040874,0.30123535,0.16745217,0.8791259,-0.07186816,0.002678762,-0.20289774,-0.4454778,-0.5108289,0.13267916,0.048592526,0.4310732,0.1488024,-0.50572383,-0.12379981,0.0063427836,-0.48129487,0.11227709,-0.48698935,-0.5235023,-0.10041374,-0.5406477,-0.2598717,0.7913951,-0.27518487,0.061569616,-0.2332194,-0.029371167,-0.09791559,0.21318829,-0.06628119,0.09289199,0.16684079,-0.16179165,0.2380415,-0.023967827,0.4461298,-0.06850795,0.3679526,-0.017920265,-0.0646556,0.06135383,0.31483695,1.0043999,-0.266386,1.2940083,0.30717012,-0.105437994,0.105266385,-0.16294509,-0.48609385,-0.60051477,-0.202843,0.35888818,-0.45069098,-0.16020541,-0.08615771,-0.5206639,-0.84107256,0.78090495,0.28180894,0.22324865,-0.015196796,0.17898794,0.4805561,-0.08859751,0.10023469,-0.070799075,-0.17853464,-0.63611823,-0.048279244,-0.74888325,-0.31512353,0.0979609,0.9939406,-0.32929313,-0.06424392,0.19796896,-0.48308346,0.15090652,0.07464015,-0.04537916,0.04485162,0.7101118,0.16437803,-0.56261,0.32242918,-0.12526302,0.11384198,-0.7479052,0.28260177,0.557905,-0.64934206,0.5580979,0.22177427,-0.01573622,-0.36154342,-0.5283387,-0.25102103,-0.09368237,-0.10992971,0.44053802,0.2507541,-0.78505754,0.41427338,0.044721942,-0.37265548,-0.729942,0.46446648,-0.023262039,-0.2896249,-0.31792915,0.34584,0.24239571,0.10162014,-0.20594734,0.25514933,-0.31898618,0.34269747,-0.064379014,-0.018308856,0.19207503,-0.22956721,-0.2759785,-0.8397499,0.21469481,-0.38487062,-0.5283731,0.30308905,-0.015677074,0.19616133,0.25258088,0.37015095,0.29913178,-0.3395283,0.11687072,-0.24397856,-0.3164684,0.52646464,0.36305276,0.57713836,-0.47226548,0.6697011,0.1684256,-0.27591574,0.16204071,-0.32608375,0.41069666,-0.00023137529,0.45402578,0.1351149,-0.33271602,0.25037372,1.0317019,0.11542976,0.24609448,0.082422115,-0.14669634,0.17196178,0.17019944,0.29907584,0.08778894,-0.7229144,0.11716507,-0.4204165,0.06279971,0.6155521,0.19964366,0.25511593,0.05536982,-0.46441033,-0.080302514,0.12291318,-0.2242947,-1.652482,0.33666834,0.2064523,0.9643933,0.41039896,-0.0030645505,-0.007109523,0.76704407,0.012649226,0.14152525,0.4703786,0.16541262,-0.20418252,0.54476166,-0.5823913,0.48618117,0.05566268,-0.008910261,0.11811327,0.089029826,0.4059488,0.75372165,-0.24899189,0.009699765,-0.08484001,-0.23349464,0.05171774,-0.41529465,-0.11157601,-0.42548513,-0.38629985,0.71121097,0.4825691,0.33422422,-0.14447851,0.08480757,-0.029834822,-0.11583123,-0.04705998,0.044115614,-0.16746302,0.07096261,-0.42210022,0.024272198,0.43678263,-0.06245047,0.10684627,-0.13862027,-0.18509561,0.15209804,-0.25514996,-0.015239379,-0.07984132,-0.9157884,-0.1723832,-0.23943269,-0.40113953,0.42496622,0.13474202,0.14442147,0.2094187,0.11409563,0.14511132,0.39433387,0.2091552,1.0099036,0.100174524,-0.040732954,-0.3195443,0.15954162,0.07647718,-0.35787773,0.19394828,-0.31821838,0.08031418,-0.49266586,0.655406,-0.104865454,-0.3472322,-0.03543042,-0.18566509,0.14978147,0.54703754,-0.20724791,-0.029230228,-0.24459714,-0.11960641,-0.108858615,-0.41243228,-0.30356246,0.21464562,0.19796653,0.015522018,-0.22167552,-0.119434476,-0.19873019,0.41774035,-0.03813501,0.3359129,0.38064292,0.24586678,-0.20278911,-0.12402841,0.13554516,0.9054521,-0.06036134,-0.2873133,-0.39284483,-0.4990095,-0.4049244,0.45061776,-0.06490499,0.3449174,0.10682312,-0.34242737,0.83368444,0.24694689,1.0029243,-0.06507364,-0.57920307,0.12639478,0.59941024,-0.0679202,-0.08542082,-0.54095954,0.9008708,0.17580342,-0.18965693,-0.095254324,-0.46162423,0.085434295,0.41012207,-0.28010237,0.028145919,-0.09256989,-0.6801707,-0.32928038,0.27493247,0.2592179,0.0135711385,-0.15073839,0.17510505,0.39810833,0.22959568,0.5427241,-0.5351717,-0.32438624,0.28738245,0.24603643,-0.07407854,0.2159798,-0.5302603,0.20682208,-0.40967456,0.15985756,-0.6024845,0.18568508,-0.25868022,-0.3432893,0.20008647,0.21635556,0.36951837,-0.45900366,-0.4993693,-0.17692284,0.41376483,0.15635829,0.16153401,0.5255948,-0.32928908,0.02610527,0.06260996,0.6599081,1.0030966,-0.008546904,0.04560508,0.30098134,-0.41527793,-0.5289734,0.3256653,-0.38085148,0.16655403,0.074670605,-0.2203058,-0.6310683,0.23498625,0.074517906,0.045736223,0.263809,-0.6740878,-0.48253104,0.4094689,-0.27491686,-0.14902459,-0.3952353,0.011920117,0.5742615,-0.20132823,-0.39162782,0.13871044,0.34634185,-0.057337243,-0.68746156,-0.22769551,-0.52013993,0.402336,-0.042810295,-0.3338566,-0.3222368,-0.16618271,-0.67202586,0.2321245,0.033902794,-0.47589254,0.07326971,-0.31934053,0.039579645,1.1623653,-0.3781133,0.17477256,-0.60011786,-0.34672093,-0.8149417,-0.23133159,0.3710024,0.018767968,-0.058927298,-0.8410141,-0.04880252,-0.28562805,-0.044671018,-0.0443136,-0.2876372,0.30821037,0.1791637,0.5533449,-0.06006524,-0.9497261,0.18203568,0.06511535,-0.4839803,-0.68929785,0.79812604,-0.02020295,0.9690652,-0.046592217,0.1076386,-0.048846077,-0.42858818,0.19316894,-0.31306508,-0.18565027,-0.51895386,0.4068599,52 +790,0.43715465,-0.24216722,-0.7398023,-0.16327138,-0.37106812,0.19870126,-0.32975903,0.29291037,0.45109197,-0.5252662,-0.051711816,-0.19084032,0.03476955,0.4124922,-0.17409225,-0.8486654,0.02433155,0.25949275,-0.6968455,0.7738132,-0.27056962,0.48803732,0.21621692,0.27545404,0.03613757,0.15490519,0.3451264,-0.29869533,-0.37067306,0.087345876,-0.00855808,-0.14587502,-0.37912166,0.24307506,-0.037852433,-0.23166835,0.2760925,-0.2975926,-0.34272185,-0.7764464,0.42639554,-0.8396506,0.6731863,-0.076973766,-0.23196892,0.119291656,-0.06836288,0.21575552,-0.19869171,0.06702695,0.120703764,-0.41643688,-0.5082314,-0.3223071,-0.27937457,-0.64873546,-0.62026334,-0.15331194,-0.64928645,0.021972923,-0.4318408,0.2027394,-0.3218834,-0.10622602,-0.016156971,0.49105677,-0.38565412,-0.11079997,0.1321022,-0.30347016,0.24059777,-0.8477125,-0.15569365,-0.031294864,0.24851198,0.20907311,-0.15080677,0.53383464,0.34054533,0.5007127,0.19289003,-0.31002346,-0.37377894,-0.12698694,0.3831196,0.3761247,-0.10762002,-0.55310035,-0.08959045,-0.100097805,0.37419152,-0.08016158,0.101112425,-0.32529283,0.07280621,0.07710599,-0.22889926,0.4912621,0.5093588,-0.21676867,0.16100088,0.4174058,0.40833697,0.14022298,-0.10569966,-0.10743564,-0.17122047,-0.52101725,-0.19979377,0.05611877,-0.22810094,0.7755154,-0.2137665,0.16221209,0.54029626,-0.07076109,-0.19158214,0.13283348,0.13789006,0.02216427,0.10568383,-0.09789518,0.36032942,-0.58349,-0.17666884,-0.42780367,0.62904674,0.155889,-0.7878122,0.35468373,-0.45818344,0.09659282,-0.11870428,0.6625287,0.7571068,0.7743523,-0.0044440925,1.008103,-0.47286713,0.13966355,0.01529377,-0.48074758,0.2090438,-0.11277881,0.29443836,-0.5619287,-0.10203865,0.09089091,-0.21706285,-0.0032332938,0.66514117,-0.30123612,-0.13200723,-0.020996107,0.8746898,-0.39289436,-0.20460589,0.5797062,1.1302563,0.7529113,0.066258125,1.43924,0.27064493,-0.45806864,-0.16172251,-0.2442772,-0.8375428,0.3165829,0.27389094,0.052568544,0.46645534,0.09621039,-0.044628058,0.4042375,-0.39343813,-0.11821136,-0.080182604,0.42424843,-0.05200617,-0.22952783,-0.443693,-0.17007808,-0.06655013,0.033022314,0.30656612,0.38620445,-0.023842266,0.51702386,-0.009424557,1.3598348,-0.04378836,0.0452688,-0.026723152,0.32143128,0.2795452,0.091682434,-0.1435615,0.35679388,0.37296793,-0.09027394,-0.62851703,-0.016643971,-0.40578023,-0.60921556,-0.30023026,-0.15026732,0.18009426,0.0078826295,-0.11270393,-0.28908336,0.0776173,-0.569406,0.31809768,-2.0698566,-0.19937159,-0.07712328,0.40244666,-0.13457878,-0.20939438,-0.23783521,-0.5718505,0.46939453,0.37471175,0.52960104,-0.5725422,0.31272975,0.6177729,-0.6390312,-0.237221,-0.44676766,0.029005425,-0.0029561769,0.38094223,-0.13041689,-0.48107925,0.06001799,0.07837799,0.546689,-0.03986669,0.06334696,0.45935702,0.43621543,-0.030469676,0.3556848,-0.204251,0.5405356,-0.26650453,-0.016078664,0.20725703,-0.28760847,0.24771757,-0.46491042,0.23846322,0.5502421,-0.44076428,-0.74646956,-0.36250058,0.028522486,1.2043008,-0.43322852,-0.5984662,0.22592111,0.25976324,-0.17066891,0.22028221,0.5106206,-0.18678473,0.034787606,-0.6654466,0.097703815,0.12383231,0.20034425,0.13965312,0.11229583,-0.44691488,0.5832366,0.026264722,0.5223901,0.40496215,0.36989462,-0.18555216,-0.43635607,0.3262861,0.9543348,0.18917787,0.16407843,-0.3016627,0.025576582,-0.40145817,-0.21285428,-0.055625085,0.40465376,0.89563084,-0.1048921,0.057172477,0.26036152,-0.14854287,0.08531212,0.028064495,-0.58533674,-0.24649303,-0.0013527138,0.42117724,0.8647898,-0.084014,0.42676213,-0.019114727,0.3596867,-0.13598238,-0.5389583,0.9536508,1.050999,-0.3023843,-0.12998152,0.6932034,0.16336653,-0.3022789,0.6824875,-0.71949786,-0.54564816,0.58825356,-0.09547905,-0.46354163,0.14433272,-0.3880987,0.085408844,-1.076549,0.41187432,-0.17565636,-0.41063228,-0.5959303,0.10456789,-3.1632805,0.11630296,-0.4109234,-0.09503964,-0.1715213,0.09519658,0.14230092,-0.5810148,-0.54151255,0.19731502,0.27873352,0.7143771,-0.029515183,0.061674833,-0.21026815,-0.31770355,-0.08174429,0.14191456,-0.050192893,0.19772618,0.012089153,-0.6949732,0.09275923,-0.32281855,-0.31930128,0.11202681,-0.40095642,-0.23235364,-0.3483437,-0.66008633,-0.4387703,0.69729334,-0.50456303,0.044878554,-0.25907955,0.17841922,0.13280953,0.28361943,-0.29268116,0.097581826,0.28977713,-0.12334174,0.13818176,-0.2318964,0.17688923,0.1687278,0.21048649,0.53963023,0.009815837,-0.047227368,0.6621485,0.72605544,-0.04112761,0.7338404,0.52194154,-0.013219204,0.19108824,-0.40233073,-0.2617859,-0.7175767,-0.43518594,-0.10854644,-0.41205832,-0.48424387,-0.01806282,-0.5087965,-0.9219672,0.6273308,0.10856632,0.08641106,0.17357723,0.3122622,0.447888,-0.29221603,-0.008597751,-0.189852,-0.2629985,-0.48204803,-0.29621157,-0.81392497,-0.51500887,0.0353222,0.9948109,-0.13012905,-0.18382698,0.082030036,-0.13832934,0.24232139,0.35136008,0.010997097,0.10095674,0.2934798,0.19515015,-0.9278543,0.57871395,-0.15651412,0.06237295,-0.6204424,0.03894942,0.4921186,-0.75689507,0.21073218,0.65450585,0.105905175,-0.057788193,-0.49896535,-0.34714246,0.19151516,-0.03119806,0.24819809,0.2408114,-0.70895195,0.5368339,0.17903388,-0.38931838,-0.9094804,0.2624456,0.0684009,-0.35444713,-0.06831881,0.46463332,0.022877524,0.0933006,-0.7259631,-0.010526583,-0.59177774,0.31811392,0.104277454,-0.11957606,0.38933113,-0.022345548,-0.28394952,-1.09139,0.013202113,-0.49606594,-0.092275105,0.2785169,0.1602593,0.25309494,-0.092491984,0.27445647,0.3404357,-0.5159794,0.035735223,-0.24450396,-0.401631,0.42639783,0.46810186,0.3420764,-0.49874875,0.54749423,-0.2362624,-0.20504557,-0.20931089,-0.031724244,0.48160183,0.4380953,0.26772776,0.35246328,-0.16451477,0.11006403,0.9096481,0.19281109,0.20975213,0.40522692,-0.39306664,0.41174075,0.039687123,0.45479226,0.07283452,-0.5923479,-0.11336216,-0.12608303,0.06655708,0.60108966,0.15871832,0.60288334,-0.134133,-0.38686618,0.060679078,0.1379373,0.2624435,-1.0040458,0.5000122,0.31693754,0.66266924,0.66453815,0.060749307,-0.030365646,0.586613,-0.15770605,0.24135892,0.20935589,-0.24130511,-0.48819074,0.4422814,-0.64405507,0.1245273,-0.19288723,0.021753952,0.17521884,0.037469853,0.45295516,1.0401173,-0.14548217,0.13713746,0.031449784,-0.029955959,0.112091996,-0.26978573,-0.07810266,-0.5692638,-0.42834315,0.57555443,0.17953347,0.29768276,-0.31427845,0.04471514,0.3258366,-0.21632677,0.43650642,-0.006866167,0.0038949896,-0.06928403,-0.585494,-0.30816138,0.44342896,0.2734489,0.020239927,0.0066123554,-0.048525702,0.14125471,-0.339255,-0.25294915,-0.116562605,-0.7341879,0.09093071,-0.35676286,-0.4493462,0.78896683,-0.103620894,0.2567494,0.18289427,0.15984742,-0.37527692,0.31826726,0.27276573,0.7326164,0.25222003,-0.46535793,-0.16555804,-0.24403657,0.2537646,-0.35792813,0.08630466,-0.01767529,-0.0066250213,-0.75081205,0.65701294,-0.32540625,-0.022413751,0.14257215,-0.47479585,-0.03214382,0.44541118,-0.18637614,-0.16228016,0.2507832,-0.03720324,-0.19006789,-0.3759254,-0.48450473,0.06825324,-0.13887091,-0.027495077,-0.22545283,0.06115681,0.008543819,0.37716892,0.041977208,0.016005656,0.3783085,0.05656879,-0.37512162,-0.13471545,0.36321017,0.50936896,0.08317677,-0.114697576,-0.44873393,-0.328024,-0.30576092,-0.07081171,-0.00816032,0.21582687,0.1518038,-0.3712161,0.7592456,0.14425935,1.0435461,0.063524045,-0.34165084,0.10579836,0.6579613,0.060210112,-0.058539633,-0.43003595,1.0731525,0.64182,-0.08984976,-0.090065815,-0.628015,-0.012366693,0.32648328,-0.27291206,-0.1524177,-0.17098038,-0.6395133,-0.5839024,0.31143978,0.3167124,-0.12329548,-0.26710406,0.16146903,0.09211186,0.39493647,0.22883831,-0.7107007,-0.14041375,0.44610998,0.05332938,0.17942508,0.3266692,-0.24175029,0.25014886,-0.68167526,0.116502605,-0.3161717,0.046453357,-0.002526991,-0.29876962,0.31567916,0.35724935,0.3208566,-0.3073655,-0.46092677,-0.2956761,0.5268101,0.23608871,0.3979144,0.809315,-0.41428414,-0.13340639,-0.10406429,0.6888425,1.2648653,-0.3379128,0.17615849,0.5232105,-0.6077292,-0.6361453,0.40145555,-0.3364385,0.10568788,-0.31504878,-0.44442526,-0.73550195,0.123633124,-0.07394724,-0.29342863,0.15146117,-0.49060258,-0.2651993,0.18520886,-0.34010616,-0.19746284,-0.17082989,0.03076478,0.66679114,-0.4912564,-0.37537792,0.09889933,0.3564994,-0.16228831,-0.41994974,-0.042990874,-0.3933121,0.3437232,0.31669155,-0.41875657,-0.13230295,0.11557433,-0.710269,0.21709031,0.262387,-0.42898986,0.03393702,-0.34403312,0.0639149,0.79202366,0.037933037,0.22404458,-0.41736627,-0.37706116,-0.9167964,-0.32737935,0.1287539,-0.11011493,-0.06087408,-0.6572606,0.15001924,-0.3023887,0.058966924,-0.12980433,-0.3422983,0.39757738,0.05584674,0.4954636,-0.19516546,-0.9609978,0.02847214,0.24661069,-0.34746432,-0.4613938,0.41496292,-0.2846589,1.0490972,0.010954052,0.0072531453,0.33633718,-0.836515,0.26679084,-0.338483,-0.22517163,-0.33752644,0.031290226,66 +791,0.36449492,-0.085535,-0.2809135,-0.10186988,-0.092374325,-0.06580245,0.018643063,0.47915027,0.34772825,-0.49784592,-0.33470142,-0.4186906,0.025759982,0.22295046,-0.118481904,-0.66229033,0.082569815,0.3808364,-0.45695484,0.7224814,-0.33469236,0.21301858,0.093224905,0.37579474,0.12895848,0.08283772,0.13120231,-0.182707,-0.32943007,-0.20798373,0.02266745,0.2652034,-0.74150556,0.2806823,-0.22058,-0.290121,-0.04169957,-0.5213627,-0.34870937,-0.9035943,0.30984527,-0.87585026,0.3561645,0.13547523,-0.18756779,0.3831618,-0.01218612,0.33898047,-0.18545254,-0.21626067,0.20616871,-0.1304652,-0.25500217,-0.26125985,-0.07372154,-0.19262893,-0.6051058,0.16609494,-0.10429215,-0.2444849,-0.43511185,0.13764404,-0.32760173,-0.011818421,-0.117570706,0.49913192,-0.36741123,0.08074967,0.19425905,-0.16133066,0.09699804,-0.5238368,-0.15211149,-0.20057799,0.14437647,-0.15542555,-0.21667866,0.36028942,0.29100132,0.5704284,0.042393375,-0.30440903,-0.29637262,0.09777939,0.2537263,0.45718133,-0.13767181,-0.3782048,-0.033150133,-0.02869322,0.06488148,0.095549785,0.21254836,-0.30646688,-0.15833145,-0.16781755,-0.10959185,0.14408034,0.5485904,-0.279623,-0.35335174,0.3365341,0.48848692,0.003980607,0.039082587,-0.11612735,0.052460562,-0.46259233,-0.20355844,0.06410501,-0.38326,0.61401486,-0.22278784,-0.014002358,0.61836153,-0.08916811,0.019466827,0.048720866,0.10611826,0.002654801,-0.48127094,-0.22411306,0.45955956,-0.4090966,0.18901934,-0.33284017,0.9312903,0.12755875,-0.72866243,0.44380474,-0.46239445,0.2515784,-0.04849984,0.5964685,0.60342366,0.4417143,0.5707961,0.6438298,-0.46907368,0.09888498,-0.1127719,-0.35584328,0.15898253,-0.28428975,0.227112,-0.37052977,-0.04093762,0.017944148,-0.2362502,-0.009882078,0.344316,-0.5297424,-0.07151782,0.27432534,0.7741179,-0.20989056,-0.21884696,0.71101123,1.063207,0.9724765,0.073274426,1.4456606,0.2803469,-0.20999467,0.3956333,-0.2872473,-0.82760626,0.17376347,0.22647302,-0.040300835,-0.06409222,0.33663276,0.008960937,0.46307382,-0.7132887,0.17360501,-0.24078226,0.20016058,-0.007113268,-0.05015133,-0.28715384,-0.35540804,-0.109078355,0.074492775,-0.006283494,0.326116,-0.19931227,0.17109412,-0.07682093,1.8389931,-0.06669419,0.045675308,0.10297802,0.4076164,0.012754239,-0.17549722,-0.08294929,0.27533218,0.12826717,-0.07456503,-0.4628861,0.021598628,-0.27952594,-0.56889415,-0.01754895,-0.1768335,-0.015253047,0.05448693,-0.34239826,-0.24046902,-0.14233595,-0.42787418,0.5796751,-2.3938282,-0.1503826,0.022655865,0.45657682,-0.36695397,-0.37999773,-0.1367083,-0.55281955,0.38088274,0.33872935,0.457487,-0.7802281,0.22399954,0.3615431,-0.6203182,-0.09695798,-0.72671366,0.10304602,-0.11500379,0.21231209,-0.004886642,-0.023011679,-0.079269625,-0.15757819,0.579061,0.16503973,0.12647828,0.4907378,0.2680752,0.094572745,0.33665252,-0.082688436,0.5450012,-0.30940565,-0.19625573,0.2047584,-0.5299406,0.531586,-0.101055436,0.07987056,0.47120675,-0.46633253,-0.72382975,-0.76999736,-0.5350334,1.0753217,-0.15143901,-0.4366916,0.29669127,-0.32634896,-0.101810455,-0.10581607,0.619292,-0.013218512,-0.123420574,-0.75942683,-0.12049288,-0.013624017,0.24454308,-0.031305544,-0.03327812,-0.40283856,0.85411316,-0.26155418,0.35988808,0.2961394,0.17263818,-0.25242174,-0.46484864,0.09256605,0.96508247,0.29993615,0.075777344,-0.22432877,-0.27898824,-0.43830273,-0.39106587,0.03662208,0.4679338,0.66118467,-0.19255699,-0.14990424,0.34892893,0.02915287,-0.061407954,-0.10815104,-0.35829875,-0.111784644,0.016046846,0.5691084,0.9082031,-0.29550466,0.40949893,-0.16210833,0.18839242,-0.092318885,-0.38287148,0.5249429,1.0791687,-0.045089144,-0.04705866,0.6499073,0.39042774,-0.33598462,0.44334564,-0.5599128,-0.2696637,0.32387567,-0.042069107,-0.49784955,-0.0033869569,-0.14652671,0.10188202,-0.79847217,0.5340275,-0.26077673,-0.57662606,-0.6433887,0.05716142,-2.7003193,0.10194242,-0.30003342,-0.14487906,-0.050735522,-0.086838014,-0.11927849,-0.5465712,-0.52915525,0.24359877,0.14257564,0.69443685,-0.1336502,0.21534617,-0.18164831,-0.1916704,-0.39861247,0.043006063,0.12741964,0.3646792,-0.019319987,-0.3935971,0.006448993,-0.0673954,-0.23351257,0.12600148,-0.7921383,-0.5368059,-0.3059661,-0.6757782,-0.39936736,0.5977211,-0.5901718,0.03791478,-0.27268675,-0.114311315,-0.29121935,0.39926788,0.11485579,0.18131346,0.078549035,-0.10694715,-0.28078404,-0.23836511,0.18183832,0.075584024,0.42553365,0.53237784,-0.25172052,0.17411649,0.40992832,0.68606234,-0.25272888,0.8317601,0.59789866,-0.16673557,0.18825491,-0.19320637,-0.10966337,-0.54973745,-0.20609076,-0.1515538,-0.38670194,-0.49786445,0.1093268,-0.3201295,-0.8101585,0.44816062,0.059595745,0.020890573,0.10583088,0.02047897,0.59835595,-0.10571466,-0.029350348,-0.24552268,0.02654051,-0.73106164,-0.49356008,-0.5562683,-0.5276022,0.34716985,1.0024658,-0.04834761,0.008806922,0.09064614,-0.09774346,-0.1008845,0.15785837,-0.2682642,-0.07970225,0.62661856,0.060334038,-0.5162665,0.5032711,0.2620175,0.023782125,-0.5334484,0.49705586,0.5174831,-0.6692417,0.82011694,0.23326226,-0.0044360235,-0.025439104,-0.54192847,-0.48005402,-0.30088425,-0.1519161,0.23040588,0.17621012,-0.75749844,0.29164872,0.45175442,-0.332175,-1.0218977,0.28487638,-0.19246823,-0.23336232,-0.012821093,0.33481392,-0.062022135,0.115882955,-0.20237042,0.25391448,-0.5395975,0.16258873,0.30484873,0.025945848,0.122517526,-0.31249076,-0.1420695,-0.8390303,0.06790836,-0.45140207,-0.28738967,0.15193225,0.2204111,-0.11867836,0.38918313,0.4806628,0.300146,-0.2708021,0.13255972,0.03333651,-0.32715386,0.2257024,0.41910014,0.5243128,-0.55253756,0.47298154,-0.057732582,-0.06050697,-0.21617816,-0.039340764,0.29086152,0.17357726,0.29953855,0.13080496,-0.2444179,0.18023498,0.8509298,0.14474063,0.46420422,0.2505063,-0.086049,0.5360761,0.066603154,0.30347818,-0.081999406,-0.690223,0.24577688,-0.21878207,0.13214634,0.25250313,0.25849596,0.27926552,0.004414546,-0.3998278,-0.15740885,0.16742991,-0.08661806,-1.0681187,0.26182714,0.05777305,0.8048231,0.7292265,-0.120114915,0.08038145,0.73870724,-0.017006801,0.17125721,0.22754698,-0.32270178,-0.51441675,0.5775375,-0.73508173,0.21126918,-0.024019802,0.004596044,0.036835935,0.14829175,0.30796826,0.5114184,-0.25944045,-0.027814187,-0.26188695,-0.15226518,0.10878047,-0.37197706,0.3778503,-0.5842655,-0.377259,0.78767705,0.5238882,0.33837423,-0.18698359,0.07375721,0.05626763,-0.16402422,0.22425778,0.089795105,0.0728958,0.33558357,-0.5693082,-0.10524047,0.57665586,-0.2791091,0.11784947,0.06044662,-0.15681367,0.09341649,-0.37352726,-0.3527174,-0.07916245,-0.8481708,0.0144618945,-0.09836405,-0.28074557,0.42321005,-0.025266627,0.24565826,0.16851062,0.12250593,-0.28906068,0.4340528,0.20406286,0.7764714,0.121293746,-0.21115546,-0.22037452,0.3358352,0.055579364,-0.19420516,0.15869434,-0.07929037,-0.09711937,-0.6646147,0.50613475,0.06381493,-0.3543034,0.079059474,-0.16018553,-0.013448869,0.60368705,-0.103552185,-0.16874383,-0.006763438,-0.21713348,-0.23031648,0.027907148,-0.039671168,0.39074478,0.1862673,-0.16426902,-0.13723683,-0.08012865,-0.13652319,0.33994296,-0.06620988,0.14667822,0.14167987,-0.071712874,-0.31385407,-0.059523493,0.14749433,0.57139415,0.04091726,-0.16108148,-0.060953915,-0.22409219,-0.43549916,0.04361167,-0.001970229,0.48824415,0.11776141,-0.27598408,0.66545254,0.12663737,1.1952132,0.118263446,-0.2540637,0.024304325,0.48094594,0.051569458,-0.08334354,-0.38756832,0.8614672,0.62639827,-0.10237018,-0.006955867,-0.35093817,-0.05113354,0.33667573,-0.09459468,0.103312224,0.13696022,-0.7178628,-0.15720746,0.1679403,0.38183156,0.12469343,-0.16580804,0.09473821,0.25021052,-0.025633067,0.39812326,-0.41401443,-0.23583059,0.3008299,0.3721778,0.23805802,0.11421103,-0.20690425,0.3954059,-0.7405582,0.2529216,-0.13665642,0.0107142525,-0.33481577,-0.2270446,0.277999,0.17753927,0.413837,-0.28769895,-0.3117615,-0.3481531,0.60326785,0.24649625,0.15825719,0.6192358,-0.21912499,-0.037981212,0.071163334,0.46323624,1.0825747,-0.103129596,0.070395775,0.28266355,-0.24742039,-0.61401576,0.7224007,-0.04863603,0.086813964,-0.09489442,-0.3546717,-0.7015504,0.10213765,0.29335672,-0.12125432,0.254737,-0.6849229,-0.13311383,0.1959766,-0.26335612,-0.23718888,-0.30031475,0.119314134,0.7409554,-0.09739581,-0.46577632,0.03895549,0.011273961,-0.31168753,-0.41771922,-0.19727068,-0.56501347,0.2061518,-0.02548082,-0.6454539,-0.115388595,0.13253115,-0.41160062,-0.07264578,-0.025785953,-0.3082077,0.13133015,-0.28810734,0.09692491,0.99819833,-0.097153425,0.42988446,-0.530706,-0.4720104,-0.8973978,-0.29040614,0.5376556,0.14735866,-0.113527276,-0.40319708,-0.13540888,-0.011039128,-0.17441596,0.06713178,-0.4516139,0.32952753,0.23186904,0.21149515,-0.10261929,-0.8924479,-0.017520836,0.24434163,-0.058621388,-0.42329323,0.2380601,-0.05025037,1.0268449,-0.07279547,0.0048630736,0.25064325,-0.4917308,-0.04920137,-0.13520871,-0.13522612,-0.4354143,0.056905616,76 +792,0.5502638,-0.23730938,-0.5114646,0.055038646,-0.3741103,-0.1860727,-0.44110242,0.24172576,0.4344165,-0.13936701,-0.3603684,0.05345365,0.08789206,0.2818191,-0.052618533,-0.60838586,-0.04135793,0.097622216,-0.9563145,0.8355899,-0.38738212,0.18999839,-0.030436033,0.6489045,0.050010324,0.36615968,0.16047429,0.040717706,0.10942819,0.021693567,0.08339157,0.26364744,-0.7088623,0.14381808,-0.38003573,-0.35537884,-0.099226035,-0.5820001,-0.21714556,-0.9552874,0.22594933,-0.949739,0.5439046,-0.0006697811,-0.18759727,-0.25489888,0.10110121,0.21768089,-0.20281695,-0.21100686,0.09896362,-0.25010258,-0.19472218,-0.31608668,0.14311981,-0.3649626,-0.40623346,-0.018921494,-0.4223701,-0.25164866,-0.07665378,0.085092835,-0.4032655,0.0030259714,-0.30816576,0.36975035,-0.3746718,0.19076605,0.5436656,-0.17777298,0.24177182,-0.7203238,-0.159869,-0.0112071885,0.5794928,0.04984056,-0.42406568,0.2805693,0.2758601,0.5351029,0.29922566,-0.24988951,-0.09134337,-0.10215596,0.23429506,0.57357186,-0.19925475,-0.37060916,-0.2987634,-0.0039876252,0.5100139,0.38568354,0.09348231,-0.09875134,-0.02220433,-0.1561753,0.12153009,0.44454262,0.5845468,-0.056374375,-0.32116225,0.034042638,0.5784278,0.6244334,-0.21772556,0.0028346379,0.067441724,-0.5852891,-0.1817634,0.015031676,0.036500458,0.5553706,0.013906983,0.4033736,0.7091473,0.020645618,0.049670696,-0.0007229398,-0.0993577,-0.18605451,-0.34353173,-0.075502284,0.34381258,-0.61848015,0.070626356,-0.33528113,0.44587278,0.12645695,-0.61563593,0.34193397,-0.56684417,0.2926658,0.062360276,0.6946173,0.9644065,0.34407362,0.5523264,0.807312,-0.16450925,0.20307289,0.12013487,-0.32165655,0.13419116,-0.42739215,0.2392761,-0.5187212,0.1253051,-0.092793174,0.20692013,0.06947623,0.30828622,-0.6294298,-0.25310588,0.08478582,0.6333216,-0.14394344,0.08180594,0.96231514,1.0464501,0.89462954,0.08874035,1.4450566,0.23493631,-0.24253456,0.0636112,0.087970875,-0.8601275,0.18323065,0.30898675,-0.20977771,0.54820263,-0.09256529,-0.22394033,0.6396355,-0.44487008,-0.09322246,0.05234563,0.13833468,0.026283225,-0.22105063,-0.670943,-0.21758425,-0.19751911,-0.07668198,0.082385145,0.27473873,-0.23608811,0.45239148,-0.11809132,1.1724204,-0.27458745,0.059998866,0.15213288,0.35956016,0.28818822,-0.2249512,-0.002182002,0.18809582,0.38268247,0.15963851,-0.6071567,0.290444,-0.3365158,-0.349781,-0.1640711,-0.34275782,-0.3453598,0.062726595,-0.5268669,-0.33311003,-0.21435821,-0.027794095,0.22445895,-2.5604355,-0.41879264,-0.29665664,0.4637175,-0.21053986,-0.08700853,-0.16411316,-0.44660679,0.17657602,0.18650277,0.6008988,-0.639395,0.36278903,0.4278339,-0.7861851,-0.14881115,-0.7199407,0.0060273907,0.28907248,0.48796108,0.07735661,-0.399089,0.05784549,0.20899421,0.6575482,0.1375264,0.20856512,0.46658453,0.6629023,-0.12201952,0.29432443,-0.1841007,0.5731961,-0.5535836,-0.24648635,0.45928046,-0.27962425,0.46835542,-0.25405896,0.141961,0.7166125,-0.4108487,-0.85749674,-0.37404636,-0.2030446,1.0465378,-0.2672931,-0.73639303,0.07534822,-0.59908736,-0.04175618,-0.051310897,0.85683316,-0.07590275,0.177392,-0.78039056,-0.02004105,-0.19205524,0.10694164,-0.038951125,-0.09599402,-0.35980824,0.84997773,0.03243436,0.5917129,0.32852975,0.2992613,-0.06260087,-0.45254517,0.23625498,0.68433905,0.4676657,0.1804014,-0.23836172,-0.09293757,-0.18536665,-0.29630733,-0.00068217516,0.78054,0.65603286,-0.13847017,0.22672981,0.26499698,0.1480692,0.15417294,-0.19289415,-0.09282115,-0.2965309,0.0017074844,0.5008401,1.0958635,-0.26684907,0.23562787,-0.15847947,0.28857425,-0.10518042,-0.50829846,0.7392486,0.5551221,-0.3285285,0.054484114,0.5114222,0.5029224,-0.576502,0.43698612,-0.7324858,-0.2972918,0.5792106,-0.043293115,-0.49921998,0.29509592,-0.31917998,0.26658726,-0.7264568,0.47673878,-0.45159483,-0.32092842,-0.50491494,0.07459953,-2.480355,0.3598149,-0.17673647,-0.06579106,-0.6966891,-0.21470559,0.213504,-0.6586787,-0.7491705,0.254442,0.08062049,0.72384876,-0.23843272,0.05925669,-0.2436315,-0.5693031,0.105836324,0.05723555,0.25944516,0.33415115,-0.33466434,-0.20809531,-0.17378123,0.15046571,-0.3545921,0.10198816,-0.6093047,-0.68275493,-0.16114067,-0.36490583,0.0337662,0.6027881,-0.3428562,-0.035063867,-0.42095825,0.020518253,-0.28617516,0.24843228,0.030838216,0.2670472,0.167688,-0.041721728,0.03989814,-0.16225277,0.44850883,-0.06123661,0.3706956,0.31849816,-0.11569344,0.4126407,0.44475067,0.7703805,-0.22679527,1.1622806,0.3719634,-0.08731123,0.30932948,-0.23184882,-0.41482988,-0.6497666,-0.291129,0.15453784,-0.40293506,-0.63590115,0.13174309,-0.3439459,-0.8674342,0.51754713,-0.0006621505,0.56157404,0.14935195,0.33190316,0.55873686,-0.24978893,-0.051597517,-0.035808373,-0.15511699,-0.67769235,-0.12800322,-0.6435576,-0.56880456,-0.05156834,0.7771776,-0.27836958,0.18262474,0.3830446,-0.4657195,0.055132944,0.16243117,0.029980706,0.01898084,0.4693071,0.22738671,-0.6241011,0.42738366,0.012630527,-0.4177482,-0.44236407,0.2786233,0.71991944,-0.73143786,0.6379173,0.46890786,0.052013967,-0.13798447,-0.52105606,-0.30171415,-0.0106716305,-0.19186066,0.44354296,0.38338462,-0.8267128,0.41130754,0.33902678,-0.32056907,-0.7958556,0.48582768,-0.11032558,-0.119549096,0.003951823,0.37984434,0.05306512,-0.03993425,-0.13293988,0.24922861,-0.4543304,0.2917915,0.15592729,-0.19608586,0.22414462,-0.04279365,-0.3636233,-0.6923316,0.22770305,-0.7480697,-0.20335923,0.58049035,-0.079855464,-0.089688756,-0.016920855,0.43073538,0.33566126,-0.39287722,0.12804256,-0.08289276,-0.4900972,0.27714035,0.59439725,0.3529404,-0.48165116,0.6519446,0.19261523,-0.12875594,0.36503646,0.26933393,0.316094,0.042089958,0.4517859,-0.29267284,-0.09118394,-0.06644305,1.044243,-0.0044238716,0.4137945,0.071723424,0.109547436,0.47434697,-0.027424388,0.29058793,-0.22156157,-0.5019563,0.050420504,-0.09258106,0.1508338,0.53427356,0.3793559,0.06404036,0.06115659,-0.24248321,0.049495935,0.43548298,0.10090389,-1.4646153,0.37186253,0.2554904,0.9476382,0.2966435,0.034628022,-0.18138145,0.6903248,-0.05310303,0.093063235,0.44581494,0.0060099214,-0.5683009,0.8455575,-0.57284063,0.36252752,-0.24071515,0.02187161,0.15203767,0.25601482,0.20829515,0.71026427,-0.29767677,0.009222894,-0.26388803,-0.18134616,-0.013445933,-0.36049318,-0.043119404,-0.2420007,-0.5691337,0.88638896,0.5565296,0.45337978,-0.4160048,0.1440656,-0.0018896075,-0.13818257,0.3905008,-0.08341529,0.02963976,-0.0058697513,-0.6535799,-0.06762852,0.5389691,-0.18159299,0.13417494,-0.3135107,-0.42630306,0.109889925,-0.23279919,-0.029593656,-0.086457394,-0.8693428,0.21098894,-0.65547717,-0.81977934,0.5831384,-0.113392055,-0.038792305,0.39601,-0.025221586,-0.09299025,0.45907354,-0.3636123,0.9074543,-0.0424639,-0.30264843,-0.3365158,0.2754039,0.3543749,-0.33767936,0.17005628,-0.32297334,0.36998478,-0.22324407,0.811229,0.08912888,-0.5058576,0.03836082,-0.07217472,-0.05720018,0.60866433,-0.20301096,-0.24232878,-0.05370438,-0.2741724,-0.3514397,-0.35623375,-0.24895732,0.17028765,0.32441393,0.1338485,-0.21772157,-0.28971744,-0.18071075,0.3847597,0.069517225,0.57518744,0.5088468,0.094967626,-0.30762196,0.17810126,0.5041013,0.50290006,0.22618453,-0.16676402,-0.5371329,-0.71071655,-0.51558036,0.31111655,0.00046204776,0.31354755,0.1554055,-0.12090939,0.89615965,-0.068581596,1.0277525,0.11501739,-0.3285518,0.13350661,0.55259126,-0.277707,-0.18851207,-0.4662415,0.9447778,0.4057518,-0.13648675,0.20393865,-0.3288981,-0.094236076,0.37961903,-0.3488598,0.19102068,-0.1627003,-0.55232954,-0.30936792,0.052586112,0.34283733,0.034576233,-0.2723976,0.100878626,0.020136962,0.005112806,0.1975575,-0.8058761,-0.5299266,0.26122162,0.05671975,-0.30225524,0.07381486,-0.39994553,0.3546009,-0.73442715,0.16200124,-0.7475269,0.14098215,-0.057498664,-0.45096207,0.14866251,-0.2155834,0.5044845,-0.6122973,-0.28520587,-0.17033117,0.1561573,0.31456995,0.07349188,0.58206946,-0.34777668,-0.04891287,0.26979187,0.7411534,1.1451749,-0.4607719,0.16355373,0.108663134,-0.5253615,-0.55578154,0.3130431,-0.41101512,-0.041324895,-0.28034428,-0.46251336,-0.6515469,0.053821493,0.1788029,0.12875551,-0.20386375,-0.9141722,-0.26981786,0.22913337,-0.40338528,-0.20287848,-0.41014218,0.19546898,0.7475608,-0.13804494,-0.27961516,0.051138084,0.1696731,-0.107373886,-0.50274485,0.10095646,-0.33144698,0.2589049,0.004998485,-0.37318718,-0.15221578,-0.054543138,-0.61228293,0.23225407,0.19539519,-0.42677364,0.07319951,-0.26969105,-0.061605457,1.1809214,-0.3590542,0.03126697,-0.43974924,-0.63612187,-0.88122606,-0.5129512,-0.15067564,0.34108296,0.1501653,-0.46114063,0.17877476,-0.058814753,-0.055469766,-0.06493687,-0.47576198,0.37568521,0.17224969,0.72434855,-0.48202667,-1.0311987,0.16635995,0.09529894,-0.06989946,-0.4993519,0.36523023,0.05721828,0.8203991,0.11161935,-0.053087488,-0.14598666,-0.5208996,0.012028933,-0.25037995,-0.123234116,-0.86926085,0.18674533,82 +793,0.4266479,-0.092675306,-0.73690957,0.17157833,-0.31836787,0.1267031,-0.44944534,0.25603953,0.542773,-0.17196488,0.0462686,-0.22660536,-0.10279038,0.044560418,-0.15826271,-0.44224384,-0.06925865,0.25161156,-0.49545622,0.6452313,-0.17737508,0.353516,0.14551537,0.35016885,0.24844857,0.2530385,0.045683365,-0.112219624,-0.17101735,-0.31848022,-0.04453737,-0.09328761,-0.6582667,0.29324043,-0.4964465,-0.23780537,0.07927232,-0.54409933,-0.5166865,-0.8426251,0.36770177,-0.83729315,0.6584058,-0.059289943,-0.19734214,0.07338729,0.19638969,0.26320824,-0.017033398,-0.109894775,0.24952023,-0.48899594,-0.31225765,-0.36825657,-0.43032017,-0.43194494,-0.47293344,-0.17252393,-0.34853712,0.1295968,-0.2858704,0.293061,-0.3483756,0.024900317,-0.13932627,0.12791367,-0.38893452,0.2980454,-0.019661367,-0.30365044,0.07944196,-0.74467033,-0.066497825,-0.09787468,0.105588794,0.26525623,-0.1714288,0.28734425,-0.07684357,0.3897768,0.06784837,-0.06920522,-0.37695444,-0.092520066,0.0729711,0.5873119,-0.17432685,-0.035407096,-0.12625788,-0.08247725,0.63776475,0.54257077,0.08203855,-0.19107099,0.12366294,-0.4467319,-0.30337262,0.48446402,0.71570545,-0.15397277,0.22905892,0.15756583,0.35126218,0.5784837,-0.20685546,0.070674025,-0.12953894,-0.27560613,-0.14516726,0.20236225,-0.16291389,0.4648377,-0.068108186,0.10809105,0.51662886,-0.189142,-0.019233892,0.21785204,0.24564616,0.13358438,-0.33277914,-0.33295628,0.46514687,-0.536316,0.08951189,-0.3958321,0.52176017,-0.056767613,-0.7062852,0.4134356,-0.5716073,0.1409191,0.14537132,0.6044306,0.62166077,0.72160023,0.20879386,0.99346095,-0.28776476,0.076061375,-0.11201308,-0.18448906,0.17200847,-0.07193107,0.36388135,-0.34295645,0.08741484,-0.040501725,-0.14815302,0.057597995,0.4996511,-0.25414205,-0.1487452,0.12995057,0.8870763,-0.26785988,0.264904,0.82285935,1.3418976,0.860461,-0.019874332,1.1415256,0.3025854,-0.2477346,-0.3512555,0.17982197,-0.9461463,0.111685045,0.25352287,-0.16896021,0.39853367,0.26779702,-0.29441556,0.19567424,-0.3950455,-0.18022837,0.05968659,0.16123804,0.019755268,0.06438718,-0.3532847,-0.33908656,0.081884906,0.039469242,0.21408723,0.25645864,-0.28672898,0.46716592,0.1560983,0.94150615,-0.18244879,0.00046558058,0.21822171,0.38671732,0.2684716,0.040190738,-0.027943397,0.3381509,0.25316456,0.009372051,-0.50860566,0.0005925248,-0.21560015,-0.22979249,-0.2119587,-0.23890603,-0.3141521,-0.06899425,-0.0231662,-0.4649581,-0.15381251,-0.35577974,0.4252384,-2.8667076,0.1203838,-0.08531237,0.34937572,-0.14046828,-0.117894255,0.04480429,-0.47999063,0.49638072,0.20111553,0.47930643,-0.48994443,0.21890336,0.7081364,-0.72249985,-0.10727176,-0.60624534,-0.16223769,0.023785284,0.34895253,-0.03590539,-0.15748756,-0.18278427,-0.104978435,0.37605274,0.15765311,0.16739981,0.4215691,0.6481996,-0.1641505,0.30583116,-0.18485819,0.59418774,-0.49251005,-0.14546277,0.4029689,-0.55601907,0.38039646,-0.4982051,0.11012892,0.62048453,-0.26757583,-0.5584026,-0.33739147,0.13966902,1.1920246,-0.43657675,-0.89931995,0.15560226,-0.28223062,-0.14025839,0.06548424,0.6429854,-0.15010941,-0.07141683,-0.5047992,-0.2751548,-0.1619596,0.31719133,0.037127297,0.14540453,-0.5064662,0.79940987,0.015145764,0.57796043,0.35667518,0.3121598,-0.24809958,-0.42456257,0.22547595,0.58044416,0.5188398,0.017064653,-0.22385621,0.03737545,-0.034462046,-0.45953533,0.04056188,0.83688134,0.5923249,-0.16530152,0.041219134,0.30496117,-0.23397838,0.19509304,-0.14667058,-0.48677397,-0.29614142,-0.11435791,0.52340126,0.7388441,0.13337,0.37082207,0.12523453,0.3440517,-0.13123982,-0.383943,0.4218364,0.5343024,-0.24330385,-0.14801736,0.59080833,0.5795626,-0.3002921,0.65735924,-0.7379342,-0.46594584,0.45000815,0.13327219,-0.65383166,0.42805278,-0.3607252,-0.09544731,-0.76574916,0.133879,-0.35924825,-0.52415174,-0.5663609,-0.23067534,-1.7843891,0.03683989,-0.29231796,-0.086554915,-0.4086968,-0.1223991,0.15297484,-0.23221321,-0.7058063,0.15065375,0.34279713,0.41012445,-0.20086443,0.16721694,-0.23498821,-0.25781655,-0.37057284,0.27356473,0.14442731,0.15499942,-0.21663891,-0.27799138,-0.13640763,-0.11875787,-0.07293062,-0.12600279,-0.59776324,-0.14208642,-0.06815204,-0.43106198,-0.23195118,0.6552086,-0.6035432,-0.11060747,-0.39868033,-0.021171361,0.081219964,-0.020953542,-0.15368252,0.14598106,-0.01238137,-0.109527506,0.025146151,-0.21550043,0.35400066,0.2211296,0.19160056,0.27288467,-0.06538392,-0.045030918,0.32371643,0.5223406,-0.18633883,1.1009384,0.21488011,-0.19641198,0.40551612,-0.23771356,-0.44440547,-0.5484584,0.01771685,0.15224443,-0.38694802,-0.4774231,-0.24444991,-0.31463197,-0.6999583,0.49384224,0.28116906,0.2780937,0.025653476,0.19698782,0.4378504,-0.023928842,-0.11122951,0.043967936,-0.15884055,-0.2979228,-0.1758772,-0.709646,-0.40214467,0.04215169,0.97805804,-0.22568022,-0.049719352,0.49420896,-0.42404175,0.0031920995,0.26435396,0.096607745,0.10351292,0.5671913,0.31798503,-0.49352324,0.46336234,-0.13098316,-0.060506046,-0.71975094,0.08884751,0.7412136,-0.8968074,0.27032375,0.5359177,0.005615654,-0.38478515,-0.633346,-0.10423506,0.1241199,-0.17938828,0.2689439,0.41395772,-0.615635,0.36182556,0.21635191,-0.19218105,-0.7944145,0.35076365,-0.08312494,-0.33755198,0.0003301526,0.49732006,0.022750458,0.04983646,-0.14928982,0.110815905,-0.3920786,0.4515196,-0.046118658,-0.16322514,0.17092669,-0.15150116,-0.20725118,-0.86300683,0.26249626,-0.3044297,-0.3037914,0.72789603,0.043075938,0.038376313,-0.00808239,0.38205504,0.34708616,-0.40724537,0.24029595,-0.46058783,-0.30087712,0.59369385,0.4997969,0.5583311,-0.5585765,0.61035365,0.03732482,-0.4615992,0.36136493,0.07361252,0.28873247,-0.061445806,0.42254066,0.11442856,-0.10679885,-0.03903268,0.723247,0.17757191,0.38268957,0.079432964,0.03655439,0.4350504,-0.061483145,0.08817253,-0.04188019,-0.7983965,-0.18470138,-0.31726155,0.24166064,0.41558087,0.2094953,0.60395825,-0.09089743,-0.15715623,0.013083135,0.12237602,-0.018426426,-0.9689026,0.2503626,0.096846856,0.7075481,0.60158545,0.04937459,0.044265073,0.73775417,-0.04036377,-0.07669207,0.3930767,0.1960032,-0.32825062,0.5650917,-0.6217422,0.46542716,-0.25212666,-0.005815834,0.36273274,0.20127307,0.69562,0.96037906,-0.31645334,0.0636001,-0.027390769,-0.20945121,-0.21864183,-0.18716611,0.093893856,-0.39770737,-0.4821109,0.7243243,0.22765326,0.45603344,-0.29170045,0.005550871,0.09978124,-0.016621208,0.43852344,0.19256121,-0.0912115,-0.16794765,-0.5018124,-0.1330331,0.6548467,-0.15306611,0.07298731,-0.008541564,0.028035417,0.38065276,-0.09891925,0.00902604,-0.001127561,-0.65797424,0.17317235,-0.3734639,-0.6085176,0.33422837,0.24715976,0.09186918,0.2024741,-0.0067152255,-0.026018212,0.23302813,0.2359825,0.8798869,-0.014601926,-0.29782602,-0.27105793,-0.022825705,0.16307448,-0.26974174,-0.17428195,-0.12452406,0.2694969,-0.4629899,0.41906187,-0.48354077,-0.34039494,0.15073727,-0.31420624,-0.17024384,0.57782644,-0.21349852,-0.10724968,0.21275496,-0.14485587,-0.3352692,-0.36050534,-0.5023307,0.0004164949,0.062968336,-0.090399124,-0.33678293,-0.20122619,-0.12323002,0.16621338,-0.058107983,0.33064517,0.3970501,0.27837667,-0.46694088,-0.03211536,0.16974945,0.60455585,-0.029622862,-0.09065799,-0.27317926,-0.45929375,-0.3551379,0.48881915,-0.008864873,0.23088706,0.0814927,-0.31405398,0.9644108,-0.054835096,0.8176498,-0.09520477,-0.25899243,0.22040707,0.641757,-0.17129505,-0.22209175,-0.5040905,1.025522,0.604894,-0.1019635,-0.03638734,-0.500355,0.014348696,0.18578677,-0.3306609,-0.14625193,-0.049374476,-0.56337243,-0.040926445,0.106215455,0.23360632,0.06466912,-0.12409202,0.1575786,0.32231915,0.24158277,0.124672435,-0.36369094,-0.2659696,0.5998581,0.14916457,-0.12965728,0.10309621,-0.27782208,0.2754856,-0.42923906,0.099101804,-0.79286367,-0.031001413,-0.06752051,-0.19516127,0.095870234,-0.27443537,0.30006793,-0.5372943,-0.30137956,0.041018203,0.2935389,0.35456228,0.34825692,0.44995868,-0.25182402,-0.06278605,-0.12540387,0.62151223,0.91079897,-0.36972797,0.05419308,0.12541471,-0.5733262,-0.51227456,0.26838106,-0.4406375,-0.09087157,0.061342407,-0.35783276,-0.41680622,0.25007072,0.030902142,-0.11347399,-0.29726413,-0.61801624,-0.22033815,0.026626846,-0.16276832,-0.237257,-0.33031195,0.03990679,0.8550733,-0.15464906,-0.40048885,-0.11355615,0.14301024,-0.29121166,-0.56254363,0.19139095,-0.3927642,0.27264038,0.007852777,-0.35656992,-0.10509622,0.2139417,-0.7340689,0.08109485,0.032805223,-0.3077936,0.08147266,-0.27986804,0.32313815,0.76883125,-0.1891228,-0.040842682,-0.33115235,-0.63399214,-0.8205569,-0.3173822,-0.1557599,0.32129017,0.09506989,-0.58362144,0.007581958,-0.42422342,-0.022701278,-0.041948408,-0.5210387,0.38894853,0.120586075,0.6319814,-0.4005085,-1.0654911,0.30974618,0.08545705,-0.45516142,-0.37391052,0.433609,-0.06442067,0.7849191,0.050442692,0.022825753,0.14699264,-0.5986742,0.26330718,-0.16868615,-0.2600018,-0.782306,0.22832082,87 +794,0.4844987,-0.2564008,-0.39991507,-0.34680143,-0.39469948,-0.15099339,-0.1814723,0.46810654,0.32807174,-0.35638538,-0.23139787,-0.032816943,0.104842216,0.42829552,-0.21665402,-0.5779124,0.06013508,0.23036069,-0.78116536,0.79556656,-0.29048857,0.21259741,-0.013525824,0.36220348,0.53173095,0.20194133,0.0069901845,0.18375337,-0.00049267214,-0.17448103,-0.1982622,0.4121503,-0.5512707,0.41370344,-0.07842258,-0.4257444,-0.1415002,-0.3429992,-0.3001399,-1.0296594,0.2516169,-0.9730423,0.36095405,-0.11024477,-0.45389223,-0.008128345,0.50023824,0.49979195,-0.23517506,-0.3582748,0.055906665,0.057054598,-0.1334101,-0.12794773,-0.057918966,-0.553163,-0.6132074,-0.16431227,-0.46618676,-0.2283756,-0.48922637,0.22279398,-0.47582927,-0.0051998645,-0.024555394,0.67087346,-0.49804354,0.2876153,0.22199653,-0.0006587903,0.35398006,-0.6397001,-0.27002728,-0.19404979,0.30315688,0.11443099,-0.54244524,0.5119215,0.5694613,0.17809726,0.039749295,-0.15996172,-0.31819457,-0.08734298,0.1912712,0.27258655,-0.09405405,-0.41729227,-0.16154924,-0.047036946,0.35322177,0.36118698,0.40023634,-0.3028796,-0.122716576,0.13668625,-0.2434702,0.40522507,0.34772587,-0.36963114,-0.22254205,0.40250716,0.623225,0.18618424,-0.3922646,0.08543087,0.046852652,-0.54387146,-0.1302662,0.06838856,-0.23933445,0.6575372,-0.32962698,0.17764439,0.707359,-0.08634445,-0.32554272,0.3041382,0.1859474,-0.37357894,-0.26414758,-0.33604786,0.24635948,-0.5071801,0.099393636,-0.20416404,0.7389469,0.17702289,-0.6586971,0.22355442,-0.6136301,0.29010394,-0.26787326,0.4699054,0.96906924,0.5986449,0.5714851,0.7396923,-0.3389825,-0.00076408684,-0.004952391,-0.4291195,0.2784458,-0.52723676,0.17683439,-0.54494417,0.12652157,-0.08205531,-0.19543643,0.13912626,0.5684181,-0.6027208,-0.24377717,0.16342048,0.72455055,-0.1839875,-0.22936964,0.8594453,0.8956211,1.1255397,0.24780309,0.93202525,0.15161215,-0.1697401,0.35811934,-0.0053649694,-0.6607062,0.39803573,0.39272866,-0.13711685,0.101940475,-0.025604999,0.0567608,0.59509957,-0.3475839,-0.022105359,-0.26903278,0.24172463,-0.013864939,-0.37897697,-0.38848543,-0.46444097,-0.16860558,0.08461022,-0.09099724,0.29725134,-0.014534722,0.656743,0.0060154,1.643772,0.19629247,-0.16935639,-0.0013240104,0.5156824,0.29204044,-0.35464886,-0.014933269,0.37609395,0.34434584,0.24355097,-0.61363703,0.26863566,-0.25430727,-0.38049862,-0.10346743,-0.58987707,-0.23327278,-0.011058249,-0.5554412,-0.4044247,-0.26739967,-0.20462199,0.5143414,-2.6742318,-0.27572566,-0.16703434,0.3903769,-0.10388139,-0.19295913,0.04914831,-0.57830596,0.4011066,0.36171642,0.59122163,-0.7350839,0.3450254,0.35312715,-0.8133332,-0.052548546,-0.65552163,-0.15708427,-0.011837379,0.43126222,0.08454791,-0.054418508,0.22364242,0.20122917,0.4703652,0.1424594,0.30315268,0.40705776,0.42453954,-0.31167087,0.6837001,0.0056617535,0.5965973,-0.118020214,-0.33497784,0.24368836,-0.38250223,0.22413771,-0.021920407,-0.039698023,0.8043199,-0.5465015,-1.1217097,-0.72682077,0.093310826,1.1428194,-0.36450514,-0.4819903,0.28890803,-0.5789478,-0.1542572,-0.044844594,0.5800559,0.017266467,0.008113402,-0.89837545,0.039514575,0.013768609,0.08006545,-0.08438748,-0.28997755,-0.34901676,0.8268418,-0.013073146,0.6370232,0.06162851,0.08339411,-0.6719599,-0.38813558,0.10908294,0.5560898,0.41828907,0.018136805,-0.3593488,-0.3159437,-0.60423416,-0.17345767,0.14624383,0.5957071,0.31195465,-0.28902134,0.29174516,0.4572929,-0.20621853,0.05023573,-0.19683981,-0.27870846,-0.1339273,0.041953724,0.45019725,0.9313677,-0.05032522,0.49810743,0.013760935,0.30726776,-0.066160664,-0.71309376,0.69042325,1.4107875,-0.29279685,-0.40048087,0.57731014,0.5583979,-0.1546409,0.50519675,-0.34880415,-0.1856523,0.506224,-0.019015083,-0.32367438,0.07238937,-0.39907274,0.1293252,-0.8694136,0.25749567,-0.5444489,-0.5461709,-0.5100879,0.094898105,-3.3237312,0.29053876,-0.19359004,-0.21252443,-0.25785676,-0.32052782,0.101128995,-0.91423887,-0.62931806,0.09581361,0.021257525,0.91526276,-0.22429018,-0.04827309,-0.16233568,-0.49520764,-0.16129921,-0.07428449,-0.11389962,0.57671523,-0.08791267,-0.46248326,0.009484655,-0.08885618,-0.5537407,-0.037702795,-0.60324234,-0.6384879,-0.15052576,-0.61486393,-0.43115243,0.7137998,-0.26948664,0.07746888,-0.2544351,-0.074854895,-0.012963976,0.19859828,0.18611626,0.11272079,0.149339,-0.08149679,0.01907902,-0.16637282,0.11387086,-0.19459645,0.3321711,0.2592054,-0.013063927,0.55853516,0.73958164,0.6208637,-0.12655896,1.0848153,0.5214739,-0.019106777,0.16292985,-0.19197476,-0.3490564,-0.53474534,-0.049944837,-0.1297948,-0.47118726,-0.21951713,0.060027923,-0.31265935,-0.809192,0.5933971,0.289148,0.3635418,-0.007915472,0.116359405,0.6333082,-0.05509934,-0.10079799,-0.11201301,-0.37903252,-0.76999503,-0.17079288,-0.7284465,-0.5601933,0.16433488,0.96965104,-0.37872216,0.0075834543,0.07842297,-0.20124388,0.111172676,0.36301008,-0.12527895,0.23257433,0.34774876,-0.21156089,-0.5432817,0.3343571,-0.12881167,0.046741497,-0.5961997,0.47628316,0.41049218,-0.40293363,0.5601626,0.34917498,0.041607324,-0.41476753,-0.5210698,-0.19040696,-0.1541613,-0.23648404,0.5679695,0.37156627,-0.80140257,0.34589937,0.45001444,-0.23657195,-0.71044064,0.74503374,-0.18602401,-0.20610158,-0.252483,0.30419537,0.34997296,0.15450478,-0.27050826,0.17706573,-0.42728814,0.13537346,0.24078386,-0.01208802,0.10708424,-0.060150307,0.041594703,-0.84865665,-0.0097645,-0.52635044,-0.2951324,0.16385995,0.08113659,0.049934596,0.14885752,0.17523463,0.22139275,-0.16390993,0.0007327969,-0.21951894,-0.2157699,0.35945725,0.521499,0.5631563,-0.48709008,0.54082733,0.23390496,-0.00797354,0.0713391,0.08645726,0.31272903,0.22654386,0.5972884,0.064558424,-0.2451545,0.12788819,0.7902592,0.09785042,0.53719527,0.027869517,-0.07513744,-0.011220962,0.10844773,0.5138729,-0.056558758,-0.58085227,0.12499236,-0.5545519,0.09775566,0.60795206,0.16799326,0.046136726,0.09197795,-0.5143066,-0.040685873,0.15648283,0.026979068,-1.8476347,0.49246982,0.44035563,0.88854164,0.6225241,-0.015145185,-0.22990231,0.9628132,-0.20954175,0.17042892,0.39710534,-0.012622379,-0.4127337,0.6761417,-1.2166907,0.39601883,0.0009227842,0.034635805,-0.01757425,0.21105726,0.35255966,0.713105,-0.24361289,0.09051835,0.11379609,-0.5048406,0.42056832,-0.49771354,-0.07890218,-0.57587886,-0.26818582,0.59609586,0.48960456,0.40297532,-0.31880853,0.12477436,-0.011986703,-0.2924988,0.18673551,0.05393992,0.10475993,-0.21259232,-0.6965545,-0.0924693,0.5047217,-0.29540107,0.47341838,0.020595536,-0.18719982,0.28481773,-0.17854227,0.017703384,-0.11241015,-0.7013548,-0.064018756,-0.24574023,-0.41407022,0.8615274,-0.05519511,0.25962862,0.3981677,0.004195268,-0.1537677,0.48345342,-0.18675368,0.70616883,-0.0794371,-0.13381153,-0.17801718,0.14259474,0.11817261,-0.14998674,0.15734817,-0.3173705,0.10293806,-0.4676837,0.510057,0.06879574,-0.4766235,-0.08990416,0.0037227508,0.097446956,0.48545876,-0.21469902,-0.20055096,-0.1864378,-0.09243549,-0.24519534,-0.41154602,0.013465573,0.46221137,0.12386078,0.18125378,-0.19478907,-0.199142,-0.076283224,0.29221827,-0.23435414,0.50397885,0.35799703,0.018928269,-0.31240383,-0.04949412,0.40530673,0.42570135,-0.016279751,-0.18076746,-0.31956136,-0.47101185,-0.62228596,0.16540337,0.0399762,0.5866573,0.15838028,-0.19333334,0.6945879,-0.2838579,1.3273519,-0.07872487,-0.59522665,0.20453353,0.5658768,0.0076792142,-0.17449264,0.05345251,0.6452231,0.53843755,-0.1642974,0.010112082,-0.6660947,-0.10298505,0.24372973,-0.18218048,-0.22329973,0.08684701,-0.60338044,-0.20887788,0.12535335,0.21483426,0.34993598,-0.12392923,0.065472834,0.4209646,-0.14151041,0.18783593,-0.31704167,-0.34759617,0.275622,0.35469034,0.030990401,-0.026267454,-0.48049614,0.4031889,-0.5572038,0.23015128,-0.31548086,0.42384422,-0.26787648,-0.38334116,0.13743955,-0.060355473,0.34091642,-0.1264103,-0.2719755,-0.19010043,0.77366614,0.2180623,0.09645081,0.70125866,-0.3309145,0.0744785,0.24886133,0.3623593,0.8627026,-0.36648488,-0.17159216,0.21953368,-0.52810276,-0.7276981,0.4550085,-0.4309082,0.35950884,0.21794331,-0.15280706,-0.7068987,0.1742603,0.37439904,0.21906404,0.015782038,-0.6650869,-0.18343277,0.21625789,-0.41129622,0.016705004,-0.42036653,0.093136035,0.27015686,-0.2426765,-0.34916767,-0.056762088,0.106828295,-0.06193229,-0.51450825,-0.014491983,-0.31318578,0.39969003,-0.13014933,-0.5145094,-0.14903872,0.056788485,-0.3772874,0.28242257,0.04209323,-0.22955586,0.3802943,-0.4561008,-0.04874141,1.0703284,-0.46224287,0.19177617,-0.43498266,-0.4948503,-0.55666053,-0.26722872,0.311904,0.041904863,-0.062473536,-0.70337933,-0.053358003,0.008145931,-0.19478673,-0.23974593,-0.47146237,0.589662,0.13918048,0.27459028,0.06137528,-0.80328006,0.274327,0.021466032,0.14441721,-0.726816,0.5107152,-0.29343894,0.7663949,0.1817884,0.24514522,0.10525151,-0.43914255,-0.021141589,-0.12851967,-0.36077568,-0.3250036,-0.15845378,88 +795,0.5800742,-0.35068226,-0.36859432,0.010900348,-0.33063084,0.17479974,-0.27079567,0.28402668,0.17053743,-0.6912506,-0.12842286,-0.080183886,-0.06850084,0.313151,-0.12834145,-0.6239112,0.05143529,0.1087724,-0.639868,0.76227397,-0.26358438,0.4330912,0.060309667,0.37087235,0.06410327,0.3841715,0.30853137,0.0053998553,-0.06340977,-0.17099245,-0.08053072,-0.04315563,-0.66061443,0.20879222,0.009070042,-0.39164272,-0.13022895,-0.33988583,-0.43691,-0.6535772,0.36300954,-1.1071411,0.33447337,0.12151777,-0.22925371,0.0055119894,0.030657133,0.07743655,-0.044597816,-0.058610234,0.026257524,-0.28819922,0.057206973,-0.5951855,-0.31496882,-0.6257827,-0.45160463,-0.06802409,-0.52936643,-0.36428428,-0.28633884,0.11523664,-0.37395346,-0.011323765,-0.14494988,0.097931705,-0.5380819,-0.067775674,0.29160815,-0.31554052,0.084118366,-0.62877965,-0.16468896,-0.23513128,0.054878037,-0.05203556,-0.1841582,0.29020068,0.15717968,0.6273374,0.056334216,-0.13192119,-0.20785487,-0.10241913,0.38463378,0.6534464,-0.16127963,-0.26253298,-0.40866825,-0.14857048,0.30303064,0.24631584,0.30640647,-0.5101424,0.052821737,-0.043667834,-0.20942952,0.28557816,0.59492856,-0.23206514,-0.10258871,0.276217,0.32808706,-0.023161525,-0.3152472,-0.08666053,0.005511731,-0.31435302,-0.10217223,0.17060657,-0.086941004,0.637012,-0.024552843,0.23866682,0.54599446,-0.17599094,0.21309036,0.01675796,0.043134544,-0.14644854,-0.28366318,-0.09952275,0.3648808,-0.37476102,0.11481032,-0.3717974,0.5883471,0.3050058,-0.6111629,0.48690006,-0.58510417,0.29591942,-0.06383353,0.5492929,0.57127005,0.4164504,0.035552192,0.90032846,-0.50811714,0.15534052,-0.027777592,-0.093883954,-0.056059584,-0.2795135,0.0976195,-0.3915803,0.16338255,0.15801488,-0.10357114,-0.04399899,0.5516512,-0.4274263,-0.2518824,0.045874994,0.75606894,-0.3461449,0.19004487,0.55168587,1.0257273,0.86595577,0.02412494,1.1660312,0.38142407,-0.28811708,-0.076034166,0.10064585,-0.8913219,0.09110492,0.4813726,0.32942775,0.48517874,0.15395878,-0.24909687,0.5133409,-0.37663293,0.011353602,-0.25621474,0.12939122,-0.054572493,0.024109378,-0.5325463,-0.06787587,-0.04391912,-0.07467029,-0.08737397,0.4128389,-0.32682893,0.41046786,-0.017423868,1.5486172,-0.27776954,0.12526019,0.14194764,0.5644451,0.2620822,-0.168243,0.21315609,0.4254581,0.27930358,0.03169767,-0.63554543,0.053107977,-0.2736379,-0.6154551,-0.18832922,-0.24949954,-0.25185832,0.12795384,-0.42762926,-0.23495753,-0.042152096,-0.19989522,0.1663106,-2.0696108,-0.1936909,-0.43296412,0.6020543,-0.5259415,-0.26987067,-0.08453856,-0.4227098,0.36504626,0.37608072,0.4577746,-0.6785988,0.22959268,0.5321458,-0.39990187,0.077083625,-0.59260917,0.094111055,-0.07774898,0.45711517,-0.13855085,-0.19320704,0.2680414,0.09239125,0.49470863,0.02396082,0.13014098,0.2651439,0.49592784,0.011643085,0.19770043,-0.10557475,0.58739144,-0.60606265,-0.14726968,0.5918036,-0.2951937,0.49314246,-0.1644058,0.07944434,0.46938646,-0.5905904,-0.5119767,-0.4897047,-0.23295273,1.0836339,-0.63024485,-0.7639273,0.08105316,-0.093110226,-0.17721899,-0.16165332,0.55264044,0.050341096,0.16447206,-0.8021435,0.20382096,-0.016141823,0.17841458,0.034877315,0.06878353,-0.26414943,0.84467155,-0.16666518,0.6323769,0.3570743,0.36124268,0.0015178621,-0.3868334,0.10871383,0.78787166,0.4433802,0.18749489,-0.21800786,-0.06254113,-0.331985,-0.43088612,0.2119406,0.512305,0.6571948,-0.13855372,0.07184114,0.30742508,0.17237745,0.0016561374,-0.27350655,-0.3480382,-0.18725532,0.052087728,0.67085594,0.71001196,-0.2667998,0.2152897,-0.0033737,0.13133597,-0.13011654,-0.5970431,0.44624963,0.9497637,-0.1954676,-0.10433801,0.6854393,0.52816623,-0.8856433,0.5025098,-0.92983264,-0.4449818,0.45670906,-0.0588707,-0.64937335,0.13074104,-0.3389505,0.31327146,-0.79353815,0.42232195,-0.40249896,-0.16187079,-0.5664775,-0.15965007,-2.491164,0.2794045,-0.33686042,-0.23585916,-0.17124157,-0.027229091,0.09019216,-0.70548964,-0.5191727,0.28062013,-0.06841915,0.5391955,-0.01425231,0.24477524,-0.3378499,-0.08273884,-0.27058318,0.16255131,0.07350503,0.37745616,-0.2706903,-0.31270495,-0.034217227,0.0007781883,-0.2728598,0.12792857,-0.6576484,-0.6151572,-0.22582243,-0.37072518,-0.16377157,0.50120443,-0.21903849,-0.01012585,-0.27504525,-0.16374846,-0.2324451,0.23832254,0.25580424,0.32813382,0.1289049,-0.024211964,-0.108929776,-0.37048233,0.19930041,0.13878296,0.15898164,0.35141277,-0.32448873,0.13534284,0.4930065,0.5998806,0.15905412,0.8243046,0.38057843,-0.0678416,0.4706262,-0.22195642,-0.47773433,-0.66462725,-0.35342023,0.044270143,-0.36608925,-0.6502549,0.07516155,-0.20041026,-0.8221372,0.5240278,0.03735675,0.32915872,0.18500476,0.28024855,0.48829398,-0.26871535,-0.2632179,0.031809434,-0.19548863,-0.75727445,-0.30826315,-0.7957716,-0.5525732,0.50789165,0.6428601,0.00028575957,-0.18113194,0.2490137,-0.33966717,-0.0560333,0.11304688,0.16058561,-0.022558764,0.37181938,0.15416953,-0.6879358,0.6120077,0.16696525,-0.15669711,-0.62665695,0.32457805,0.7307866,-0.7632074,0.44911444,0.39504275,0.18851574,-0.08234676,-0.46948186,-0.22920881,0.16138482,-0.36273614,0.20168072,0.22743024,-0.7757947,0.17928444,0.38366985,-0.23989761,-0.6896906,0.7207744,-0.0826575,-0.22422326,-0.16226515,0.3453215,0.055270206,0.10457239,-0.1349013,0.26697472,-0.68220854,0.28886595,0.40534428,-0.041826952,0.5461351,-0.17143877,-0.3338655,-0.6786647,0.32894635,-0.7447687,-0.18761347,0.3896806,0.024334505,-0.058045562,0.19308782,0.23702265,0.35502914,-0.22875643,0.12737225,-0.13090897,-0.29052362,0.59872586,0.39041623,0.5105724,-0.50338864,0.7931497,0.039863,0.0003507336,0.07696405,0.11408961,0.52451175,0.33116448,0.4298295,0.08429866,-0.0047004223,-0.014135294,1.0011019,0.35572815,0.55406696,0.43828964,-0.19833456,0.352378,0.17528196,0.0553142,-0.14884889,-0.52630156,-0.036845893,0.19022119,0.18457668,0.37949696,0.1005525,0.5096569,-0.16148567,-0.27272284,0.13745213,0.07721222,-0.030521182,-1.2656145,0.1406761,0.13511167,0.6356909,0.39822188,-0.07038781,-0.09197393,0.5814151,-0.27147225,0.15958448,0.27395287,-0.28248605,-0.56836617,0.5678904,-0.52838904,0.29256156,-0.31345943,0.037321154,0.14748363,0.30137295,0.47582874,0.74194026,-0.15272193,0.064366,-0.20208812,-0.32424673,-0.046065733,-0.31686002,0.11067697,-0.34657776,-0.5241695,0.63927484,0.40412667,0.36422434,-0.23654693,0.023578102,0.03885932,-0.05993138,0.33720434,0.011249085,0.12764706,-0.024917873,-0.5953693,-0.3018009,0.5475428,-0.14103828,0.015661417,-0.06645489,-0.16570778,0.43517157,-0.14593329,-0.31494233,0.12793736,-0.8538256,0.2440244,-0.5494091,-0.6515944,0.2142322,0.09168234,0.17076086,0.22227104,-0.06863566,-0.3677809,0.31527042,-0.015818616,0.97612566,-0.1304224,-0.2717422,-0.48624185,-0.053817492,0.21276337,-0.18801449,0.38339233,-0.09730154,0.13689323,-0.70188314,0.50120014,-0.17170723,-0.24154453,0.20595515,-0.1778998,-0.14065439,0.48638353,-0.09280294,-0.32125822,0.21570629,-0.18783726,-0.53874373,-0.28395477,-0.14733975,0.23053513,-0.025929233,0.12925142,-0.11364726,-0.107909776,0.06209143,0.4299884,0.1423651,0.30655622,0.5469897,0.20644201,-0.6508061,0.066046335,0.35428843,0.45666924,-0.12973534,0.10266098,-0.1322581,-0.80958015,-0.4466962,0.26376623,-0.21895091,0.45527077,0.12443882,-0.43750605,0.9704371,0.036958754,1.1220886,-0.051183965,-0.3511205,0.040627588,0.3708668,-0.080259025,-0.14136802,-0.39203605,0.9264242,0.716387,0.03405832,-0.15961303,-0.32139924,-0.30633214,0.24501024,-0.3644905,-0.005166819,0.03952412,-0.6492223,-0.2760514,0.02007608,0.36662707,0.0134623675,-0.12187887,0.3116009,0.21059173,0.09088194,0.2046774,-0.6215579,-0.46710858,0.3422954,0.20391373,-0.17349903,0.04341213,-0.22462213,0.36140168,-0.6753437,0.2353822,-0.38104013,0.05059284,0.15639107,-0.35442218,0.06871096,0.047932256,0.4445138,-0.53635895,-0.34107313,-0.24163587,0.5953323,0.22039855,0.17948854,0.5813273,-0.25541672,0.1578915,-0.029408654,0.63796943,1.2370868,-0.07291635,0.17263818,0.22908527,-0.57443565,-0.90164644,0.43771124,-0.18691641,0.360674,-0.100888394,-0.28943813,-0.58315015,0.09490872,0.18545492,-0.37373877,0.049064517,-0.6566047,-0.34916735,0.27446595,-0.43319976,-0.3218551,-0.44641185,0.18999928,0.5439989,-0.16908443,-0.10511246,0.021861454,0.27527568,-0.2710129,-0.4872545,0.04989311,-0.3822049,0.23151682,0.14250408,-0.37513757,-0.027756155,0.12740791,-0.5711174,0.08411827,0.100782216,-0.47431538,0.090851925,-0.2980384,0.018488526,1.0196959,-0.064212866,-0.1988594,-0.742086,-0.62867063,-0.9791358,-0.75069696,0.2541885,0.2763783,0.17405908,-0.49076995,0.11125652,-0.0015237182,0.26196405,-0.043794658,-0.4647933,0.38732228,0.19760786,0.57271564,-0.09734172,-0.7205902,0.19560963,-0.005518295,-0.09209788,-0.54235244,0.44131592,-0.12255671,0.9746135,0.18787692,-0.14770685,0.2511233,-0.7065194,0.09445357,-0.13966481,-0.3545424,-0.7354049,0.12786148,89 +796,0.61645675,-0.46041796,-0.55795765,-0.24016047,-0.15515983,0.16658138,-0.04867841,0.61398596,0.27644876,-0.5459471,-0.31489208,-0.091094255,0.1642821,0.24682052,-0.1962602,-0.70256716,-0.060228884,0.20509957,-0.43671283,0.40089998,-0.30289456,0.15013462,0.015561094,0.4759139,0.13283832,0.21090285,-0.016020412,-0.112800635,0.06956624,-0.0760076,-0.14842753,0.35704458,-0.45978224,0.35085323,-0.07605611,-0.2680423,0.010706991,-0.5758602,-0.34238485,-0.7600479,0.3427538,-0.9761131,0.5871043,0.014773983,-0.27123505,0.2356609,-0.029301265,0.08089068,-0.2971582,-0.11525831,0.1819912,-0.12593645,-0.15162586,-0.26568818,0.06922453,-0.45151123,-0.5096216,-0.023219317,-0.3646239,-0.100488156,-0.30851486,0.14066362,-0.41583833,0.089758985,-0.13450225,0.7072329,-0.33633828,0.21411829,0.20846646,-0.4298928,0.32190266,-0.6866229,-0.17410187,0.039572142,0.28472877,-0.03811495,-0.26226714,0.20083873,0.28817034,0.45086455,0.0696277,-0.1870627,-0.12843464,-0.08857738,0.073179565,0.47053862,-0.11719421,-0.6443674,-0.17106962,-0.026227832,0.23748744,0.050296456,0.14916895,-0.15958859,-0.14172484,-0.013466503,-0.10622382,0.3779192,0.5185393,-0.24563785,-0.21608399,0.42111573,0.57408804,0.070477664,0.022996834,-0.10193742,0.06985637,-0.59962827,-0.25613263,-0.13122578,-0.36953643,0.5318803,-0.27104226,0.46289432,0.7359268,-0.11457762,0.044786066,0.20344515,0.13316895,-0.13725847,-0.4497186,-0.22605316,0.34643316,-0.4095069,0.08778864,-0.22527158,0.868753,0.16891275,-0.5845193,0.258647,-0.5607837,0.14222948,-0.115801595,0.5606114,0.652472,0.57548684,0.2788268,0.7746506,-0.40954852,-0.0066826493,-0.03889361,-0.34975505,0.05700776,-0.14877695,0.12694293,-0.53153247,0.035682816,0.05162907,0.046209723,0.060130496,0.3945004,-0.6131505,-0.19511072,0.05388537,0.9360258,-0.24946393,-0.0682716,0.7938065,0.9328814,0.7361043,0.034718018,1.2766175,0.16377951,-0.2823563,0.13903213,-0.11076612,-0.84216046,0.42536673,0.44573727,0.035389856,0.27124968,0.087004185,-0.19111653,0.60118884,-0.4940776,-0.04364411,-0.1433722,0.21983181,-0.012336224,-0.17827117,-0.66609234,-0.12300242,-0.04489377,-0.020760221,0.22591944,0.26133266,-0.13648735,0.5924285,0.08249227,1.5739703,-0.10288521,0.20309646,0.15573679,0.24581285,0.17092358,-0.086761154,0.004369676,0.37246695,0.50779927,0.22037745,-0.5950535,0.24422789,-0.26973173,-0.5033844,-0.23533809,-0.30031982,-0.17276101,-0.15292458,-0.3703858,-0.13483441,-0.18373875,-0.1659255,0.3016024,-2.6042268,-0.2992032,-0.10078186,0.51321584,-0.3254047,-0.31387672,-0.17118846,-0.38495186,0.34967816,0.22401492,0.6582565,-0.6409903,0.42519274,0.43907332,-0.6867953,-0.12736508,-0.5537875,-0.010416265,0.06553271,0.32733446,0.09997979,-0.14725469,-0.101880014,0.002693842,0.5531606,0.094429456,0.07462646,0.35433188,0.52493113,-0.06265678,0.35717812,-0.18876581,0.60732156,-0.3382294,-0.16802531,0.2869602,-0.37845734,0.28627264,-0.23112719,0.12860233,0.574799,-0.33369693,-0.877564,-0.7258335,-0.051366225,1.1037556,-0.28155088,-0.48807678,0.1441287,-0.4888405,-0.3016927,0.011479452,0.4845651,-0.19842307,-0.0025766094,-0.8349101,0.13624293,-0.179686,0.15029642,0.033583302,-0.21754289,-0.57732993,0.92633086,-0.03178292,0.62531203,0.34318927,0.23010999,-0.16587497,-0.40775195,0.08341378,0.9537819,0.4404389,0.15382437,-0.12448808,-0.024563977,-0.3877298,0.03759392,-0.02971159,0.81693006,0.528869,-0.0112320585,0.022986533,0.23682117,0.034993242,0.0972262,-0.094021976,-0.28617272,-0.2858522,-0.045253932,0.6187656,0.7569316,-0.36651865,0.28382078,-0.24965079,0.3950609,-0.08763999,-0.45694283,0.6589206,1.040108,-0.23957483,-0.30301937,0.81391406,0.3270368,-0.30198327,0.32170087,-0.63079053,-0.380016,0.3836451,-0.23643081,-0.50902146,0.12953776,-0.12264239,0.22139335,-0.96181685,0.31947693,-0.2567245,-0.58326864,-0.53712153,-0.068925135,-2.9462101,0.24452145,-0.41140306,-0.1263663,-0.3869027,-0.13978465,0.16833031,-0.8002362,-0.5474242,0.26075545,0.071264625,0.7078936,-0.10600408,0.17363043,-0.13276516,-0.29538116,0.0664879,0.12805781,0.12596369,0.20590198,0.02775643,-0.43932787,0.045741145,0.19716938,-0.4497477,0.22031541,-0.73231727,-0.5379469,-0.112283446,-0.5847549,-0.2643019,0.62725586,-0.17305286,0.040871024,-0.16749966,0.2544058,-0.18118744,0.20126565,-0.19771236,0.1941127,0.0016357402,-0.049436558,0.18758857,-0.21745543,0.44992137,0.036385555,0.49970445,0.25337592,-0.3169217,0.12804957,0.6186231,0.59125364,-0.07692974,0.8746433,0.4946877,0.013287552,0.23718882,-0.07402977,-0.48021522,-0.57840943,-0.34539166,0.15869047,-0.4650136,-0.29778102,0.08592341,-0.45584893,-0.9437273,0.51225996,0.1334473,0.15882115,0.063206166,0.35275736,0.7656104,-0.2969043,-0.15344554,0.09626195,-0.22200714,-0.60801965,-0.22728837,-0.6308724,-0.42940697,-0.061238233,0.9877405,-0.30181575,0.19539249,0.025136886,-0.14097947,0.03937305,0.21809776,-0.10188133,0.07353028,0.5552431,-0.0572432,-0.72397995,0.5571038,-0.22611682,-0.29012504,-0.59804946,0.25123975,0.5039959,-0.719495,0.56666297,0.47016883,-0.09280628,-0.35422006,-0.45407927,-0.1505612,-0.09947685,-0.14447646,0.47911295,0.30125925,-0.6711804,0.39822423,0.31522223,-0.2247687,-0.8019877,0.50467056,-0.19147182,-0.3675413,-0.16885997,0.42070755,0.081201576,-0.079598814,-0.0843547,0.11069619,-0.39672056,0.40769497,-0.041770607,-0.18241991,0.41392943,-0.12922849,0.0652318,-0.8611439,-0.20263839,-0.72485065,-0.19289792,0.33251712,-0.004437283,0.21418042,0.095087714,0.071447946,0.4442339,-0.4136481,0.013777654,-0.07584164,-0.42735338,0.30622822,0.43923745,0.4929252,-0.4843911,0.5771503,0.116143025,0.002598564,-0.05787013,0.2131538,0.4911625,0.023097,0.5774979,-0.22782741,-0.18198843,0.2117082,0.8386266,0.072987735,0.49349245,0.123672456,-0.035541743,0.14444272,0.010044818,0.28559712,-0.10599953,-0.7360024,0.0011509011,-0.32691172,0.03578933,0.5380612,0.122956075,0.35892388,-0.16693139,-0.39041385,0.03133085,0.24218625,0.30267692,-1.3557087,0.4212863,0.19311953,0.95497435,0.2402069,-0.033804253,-0.1288883,0.81614274,0.030933836,0.13130033,0.3366849,-0.11983483,-0.45916668,0.6174093,-0.74189615,0.27387413,-0.116702974,0.06412833,0.039852846,-0.10900104,0.29924706,0.8027444,-0.1898105,-0.10358154,-0.07657063,-0.4487852,0.32552445,-0.51268595,0.06874592,-0.6404133,-0.2264747,0.60755664,0.66681415,0.38454416,-0.2593748,0.022635581,0.21539557,-0.0146226585,0.20100725,0.106332935,0.069499664,0.044198632,-0.83753973,-0.16201536,0.49440685,0.21536422,0.36006573,-0.085951604,-0.15761615,0.36028445,-0.21778542,-0.09835618,-0.12916426,-0.61718225,0.03471896,-0.4271276,-0.6660967,0.5383389,-0.01171944,0.08562996,0.15744622,0.12226955,-0.25771448,0.29452592,-0.062290013,0.9998005,0.22688407,-0.32553864,-0.4893731,0.17576139,0.16033205,-0.26087758,-0.04479435,-0.36214757,0.10102429,-0.5576181,0.5478142,0.028053612,-0.3284317,0.1869189,-0.20743327,0.073490314,0.5089664,-0.16923366,-0.11690989,-0.20829259,-0.14503352,-0.29852772,-0.31767654,-0.08005767,0.21692431,0.32495347,0.24724074,-0.20971294,-0.13543218,-0.343083,0.40763915,0.2676495,0.3583865,0.4416181,-0.0466308,-0.20424734,-0.17540692,0.3930955,0.49858215,-0.041678157,-0.32596555,-0.38008738,-0.6423937,-0.342844,0.12451607,-0.0254856,0.4028963,0.04220611,-0.022926465,0.80779904,-0.08857691,0.9259376,0.010249969,-0.33438182,-0.043861587,0.6333903,0.0835092,-0.057891935,-0.29681367,1.1059386,0.46900162,-0.06598795,-0.04652646,-0.5488635,0.061293423,0.2355767,-0.21506691,-0.108930565,-0.18016827,-0.6962976,-0.32361016,0.21109508,0.3568283,0.2443068,-0.07100671,0.05116639,0.2965679,-0.06745609,0.28825676,-0.6200686,-0.23048945,0.28468904,0.16472603,-0.022952681,0.17599046,-0.46478903,0.35354233,-0.6311611,0.17584342,-0.31859317,0.09898496,-0.32339427,-0.15909135,0.22435792,-0.044813734,0.38298646,-0.43300268,-0.42106447,-0.19653483,0.39081287,0.28121662,0.006789468,0.65397495,-0.2218486,-0.06316022,0.20260721,0.6140699,1.0285549,-0.22342853,0.30479738,0.4889412,-0.4078733,-0.6568773,0.29878744,-0.24878246,0.26184022,-0.005557651,-0.19069023,-0.6581936,0.32659414,0.1919288,-0.0016728739,0.009995244,-0.69163984,-0.18683958,0.30111814,-0.3881012,-0.05376482,-0.14190185,0.048460543,0.46995234,-0.22265632,-0.2931148,0.09227172,0.2953312,-0.063745014,-0.55851966,-0.20734668,-0.51398164,0.20344372,-0.038366787,-0.38641453,-0.14952444,-0.04674158,-0.45880246,0.24389225,0.037532706,-0.3004996,0.14367412,-0.3733244,-0.0990093,0.80659056,-0.07422546,0.1537071,-0.6486149,-0.2689487,-0.8015637,-0.3750418,0.38266015,0.034950152,0.072919995,-0.6285185,-0.07939301,0.001777033,-0.045202803,-0.27228522,-0.40466246,0.477582,0.17757763,0.5771463,-0.040402666,-0.8401472,0.20937197,0.052244544,-0.2117203,-0.6287882,0.52835494,-0.052977253,0.84292716,-0.0746473,0.16735947,0.25819874,-0.56046945,-0.23958308,-0.19617552,-0.21684234,-0.6876829,0.04551394,94 +797,0.22198999,0.1331043,-0.71064585,-0.19986522,-0.3244717,-0.093843795,-0.23143847,0.24392259,0.43887773,-0.16785808,-0.018061355,-0.053945333,-0.02068618,0.5487176,-0.12362116,-0.8443852,0.1801939,0.04904375,-0.62727326,0.2822285,-0.5889118,0.23640855,0.02366738,0.6123751,-0.10116038,0.30775157,0.3888336,-0.14000185,0.017260134,-0.1782999,0.092991866,0.3235668,-0.57793576,0.11142626,-0.06734515,-0.35857114,0.114391565,-0.37901533,-0.24164887,-0.6249055,0.35875142,-0.79607993,0.4368851,0.16206203,-0.33888683,-0.15653192,0.09640991,0.23744702,-0.2719341,0.062391132,0.31356338,-0.26698112,-0.03690252,-0.10249222,-0.19848005,-0.48981404,-0.565178,0.020490298,-0.641455,-0.30728102,-0.2997947,0.20384435,-0.25676537,-0.03836943,-0.23415639,0.46153107,-0.4421365,-0.06652128,0.19730179,-0.478309,0.14611839,-0.3479723,-0.16154419,-0.106597036,0.36149332,-0.04210642,-0.089762986,0.16252027,0.24178748,0.4443995,0.01569887,-0.10652373,-0.3412812,-0.11067607,-0.03259769,0.43961048,-0.21137142,-0.41079676,-0.17272931,-0.18068086,-0.01588644,0.17662847,-0.033481713,-0.35268125,0.028981103,0.079311214,-0.14307533,0.36138132,0.39775404,-0.3992778,-0.07416546,0.29398748,0.3036424,0.2069964,-0.27744678,0.18328737,0.033611123,-0.6347149,-0.29050842,-0.051524222,-0.032018792,0.5954397,-0.10700205,0.3277963,0.83503026,0.003464505,-0.0659796,-0.14180048,-0.19678752,-0.009400685,-0.14768386,-0.017066339,0.2515204,-0.36185372,0.12404955,-0.14968741,0.6716332,-0.010316301,-0.9787864,0.47612062,-0.5177093,0.031221414,-0.22619854,0.6583271,0.8074487,0.2679188,0.18774252,0.8478722,-0.6037186,-0.00022094448,0.13667175,-0.49014792,0.24236678,-0.0042303675,0.21729095,-0.46490037,-0.05873844,0.2224989,0.19989131,0.26423553,0.32222733,-0.41050902,-0.01115188,0.1603507,0.74984246,-0.33865035,-0.10016122,0.6951148,1.295166,0.8885687,0.10529927,1.3430414,0.25621364,-0.08694764,0.15722178,-0.16603445,-0.68340784,0.12751178,0.35148546,0.09511467,0.19608164,0.15295321,0.21947749,0.6010999,-0.29387867,-0.061158746,0.06357653,0.19131303,0.036817554,-0.14889936,-0.31193188,-0.26595604,0.13298279,0.13258465,-0.043964952,0.2805033,-0.23796403,0.35619387,-0.052482035,1.1553966,0.14651929,0.25271073,-0.032260075,0.57702106,0.14252637,-0.1578979,-0.17984642,0.20211013,0.24404104,0.097261526,-0.47459558,0.04501097,-0.30023655,-0.52451724,-0.21325032,-0.40053225,-0.12434306,-0.11401232,-0.3832337,-0.044958267,0.07387953,-0.33877632,0.41462365,-2.7213514,-0.08498206,-0.2336964,0.27275842,0.046648305,-0.19785576,-0.27545294,-0.42083773,0.42292118,0.522232,0.5338821,-0.56068224,0.5872562,0.4120132,-0.35074496,-0.15623875,-0.6402457,0.17246628,-0.15435886,0.33226848,-0.018967325,-0.20133509,-0.19552676,0.3211631,0.73675257,0.1390096,-0.07809934,0.025617758,0.45003697,0.030610358,0.5424934,-0.016689314,0.6171773,-0.28171965,-0.29153714,0.21222818,-0.5175327,0.2752402,-0.027711416,0.16191171,0.2854738,-0.4907011,-1.1363955,-0.6501985,-0.18525362,1.0976573,-0.25886583,-0.3828528,0.48129177,-0.07166157,-0.39969516,0.21159346,0.76974636,-0.22535898,0.12308162,-0.7030409,0.09457705,-0.21317284,0.282342,0.023175457,0.034135524,-0.54856104,0.6709697,-0.06267103,0.4776369,0.2794578,0.042107623,-0.29278687,-0.34860516,0.11547619,0.8533643,0.22073574,0.12401593,0.026880877,-0.15987268,-0.1103962,-0.14202374,0.09231931,0.77924806,0.57514834,0.0337368,0.1270586,0.2981056,-0.16125537,-0.043014903,-0.035387173,-0.36939248,0.06494188,0.18179683,0.5834906,0.7886202,-0.25327322,0.10344193,-0.021256393,0.42557654,-0.25874892,-0.41005075,0.41989803,0.44996798,-0.06540575,-0.20495151,0.6888642,0.64135695,-0.3907971,0.42288312,-0.57740474,-0.47927165,0.42284238,0.030003456,-0.4980477,0.010197431,-0.37657154,0.13033411,-0.8722432,0.33096594,-0.13725983,-0.8473738,-0.43232766,-0.22984733,-4.913692,0.1613619,-0.23269315,-0.046938103,-0.153917,-0.021080235,0.41409674,-0.5931079,-0.49605265,-0.14293645,-0.031851497,0.51267797,-0.15115233,0.1259108,-0.3135564,-0.27283478,-0.07648563,0.34788778,0.075362444,0.32189372,0.1463091,-0.2792867,0.086115815,-0.30500737,-0.37627158,-0.06133966,-0.58081955,-0.4742054,-0.109381825,-0.60985035,-0.2425213,0.7234359,-0.5350271,-0.03599085,-0.4240373,-0.031370018,-0.34498668,0.44150135,0.27597198,0.16976069,0.049051832,0.1709454,-0.36654794,-0.32894877,0.22451834,-0.01784155,0.39996347,0.387179,-0.0021356146,0.08519975,0.5656842,0.5674188,-0.018545775,0.88953835,0.19443786,-0.056548174,0.22897951,-0.37906012,-0.38810313,-0.80397016,-0.45146275,-0.17539017,-0.46008933,-0.4483557,-0.21408756,-0.37408677,-0.66872996,0.56189895,0.08467195,0.01872144,-0.02849706,0.13891353,0.22551262,-0.09790037,0.0103490455,0.018617189,-0.1387975,-0.55006295,-0.2184763,-0.657432,-0.64091754,0.011884277,0.9816368,-0.21107398,-0.0724652,0.21997339,-0.2751607,0.069785625,0.18756421,0.33826885,0.24340932,0.3630166,-0.18298133,-0.7566475,0.47336772,-0.5130641,0.000531435,-0.70334774,-0.04270635,0.7586367,-0.7757074,0.76041055,0.46944645,0.4029759,0.2577814,-0.47386804,-0.5294404,0.034369946,-0.183924,0.54101455,0.27969655,-0.84362286,0.48091507,0.07461777,-0.13733564,-0.648722,0.5592281,-0.21384211,-0.2745972,0.1886371,0.3910551,-0.030192515,-0.11731791,0.028382765,0.17764366,-0.36150396,0.30420318,0.2467047,0.07251448,0.6977325,-0.17119491,-0.081005,-0.5921323,-0.2621274,-0.50759536,-0.19584435,0.034974802,0.09581896,0.08841723,0.21613128,-0.13019376,0.3775407,-0.31577647,0.19068082,-0.11687064,-0.28160217,0.29952148,0.63746405,0.37515488,-0.51452,0.67845774,0.108435206,0.062266093,-0.12290996,-0.029679677,0.47885552,-0.026961451,0.500749,-0.1254981,-0.15195554,0.10216827,0.85570645,0.14210817,0.3413038,0.080572955,-0.03823709,0.39785638,0.1314535,-0.01566425,0.028414994,-0.50272065,0.08454541,-0.12418464,0.30943438,0.35766983,0.16835858,0.31630918,-0.028523276,-0.2380216,0.26334396,0.28695294,-0.0016658654,-1.0497884,0.46716404,0.2303458,0.5943358,0.60186696,0.09572195,-0.084661216,0.7052358,-0.22980483,0.09979832,0.23871474,0.054239113,-0.5302635,0.68796223,-0.49698877,0.47441506,-0.23176412,-0.11649542,0.15986641,0.19513178,0.33545056,0.78933454,-0.103200294,0.1387895,0.120595224,-0.27990568,0.05055198,-0.24385329,0.119570345,-0.5569126,-0.23436944,0.6674064,0.62083286,0.27449223,-0.34894797,-0.10015616,0.028386744,-0.080951065,-0.0014982609,-0.28350973,-0.062402517,-0.04725338,-0.859232,-0.18028508,0.6195919,0.060145896,0.050265487,0.17431748,-0.47254565,0.4139872,-0.088758916,-0.07349654,-0.07014594,-0.39264885,0.084934436,-0.22437797,-0.6383075,0.40279448,-0.3720849,0.4812338,0.07906123,0.09763739,-0.2647541,0.3620795,0.046340335,0.73473674,0.053901877,-0.09180113,-0.14401327,-0.020766186,0.26564565,-0.31334853,-0.3945888,-0.7065294,0.09199204,-0.44197264,0.3030764,-0.23238565,-0.30865398,-0.24349213,-0.030965209,0.17174608,0.43906534,-0.17267644,-0.25219384,0.22979093,0.091854185,-0.21016377,-0.057388466,-0.5692249,0.27262637,-0.06177536,-0.024273952,-0.08557073,-0.12328415,-0.11347085,0.30537495,0.02587212,0.27127874,0.30639967,0.11525515,-0.13487546,-0.032801375,-0.057385493,0.46652138,0.16746227,-0.02444761,-0.23026137,-0.45969343,-0.2848187,0.2800712,0.010242981,0.1552567,0.2931701,-0.33358097,0.49825454,0.23867173,1.211738,0.15612702,-0.26220277,0.20261829,0.46813384,0.06061773,0.1489343,-0.3394438,1.0340654,0.5524366,-0.3755816,-0.15610792,-0.520701,-0.1336836,0.07374623,-0.24721587,-0.31569687,-0.18949296,-0.7613246,0.030841598,-0.0039394945,0.3018346,0.22753008,-0.044585675,0.066306494,0.015530583,0.26811936,0.27622014,-0.52896005,-0.2323658,0.5346517,0.3381996,-0.08415983,0.10511515,-0.3017952,0.4874947,-0.63227636,0.06015609,-0.67735934,0.088929325,-0.3403362,-0.37809896,0.06619048,0.06931731,0.3976287,-0.069168635,-0.21144438,-0.21792667,0.672887,0.37000212,0.32449993,0.8142519,-0.18486111,-0.23010123,-0.048800096,0.63768065,1.2565732,-0.17089492,-0.0053198137,0.31995222,-0.15776812,-0.5777314,-0.10605439,-0.5712618,-0.15324445,-0.08764622,-0.38053593,-0.34391677,0.27542362,-0.04578659,-0.17247014,0.0551216,-0.38574418,-0.12908046,0.40347973,-0.13434958,-0.3510168,-0.37781525,0.31560373,0.7303762,-0.3986586,-0.25574967,0.016854504,0.32553706,-0.21673845,-0.60938054,0.0628618,-0.097917,0.4126192,0.2140146,-0.54233986,-0.12455621,0.3537589,-0.47418404,0.2942362,0.3099493,-0.32473293,0.08844178,-0.37392965,-0.06909549,1.1663948,0.094998725,0.26302978,-0.58983034,-0.5712233,-0.96125156,-0.24678652,0.22351192,0.13243456,-0.09870259,-0.39872375,-0.1620097,-0.10758793,0.009445767,0.073841095,-0.47435078,0.29509258,-0.017059509,0.68764836,-0.064745076,-1.019073,-0.06721467,0.14810199,-0.1941074,-0.5462622,0.51500887,-0.18667643,0.7994408,0.027260462,0.048018243,0.27996546,-0.490285,0.32662043,-0.3284137,-0.09842336,-0.65987873,0.16296066,108 +798,0.14415647,-0.30022344,-0.82338625,-0.1720907,-0.09647717,0.07851353,-0.21138817,0.5710449,0.30870143,-0.24412555,-0.20002478,-0.18224913,0.016669126,0.43902412,-0.13557804,-0.3027682,-0.27995035,0.13286535,-0.49578655,0.26469132,-0.4607019,0.02166004,-0.21391775,0.41780603,0.12541656,0.07287347,0.051859543,0.09066462,-0.039538283,-0.08084627,0.35669872,0.24463809,-0.63625365,0.06315688,-0.24865873,-0.43553343,-0.22236025,-0.44612637,-0.5006663,-0.71639234,0.5189311,-0.9013218,0.48089013,0.16413529,-0.16437425,0.59479755,0.10715872,0.18705744,-0.29137048,-0.1456033,0.1588233,-0.088810824,-0.10845124,-0.12559512,-0.23440246,-0.23318183,-0.6169712,-0.0077282214,-0.34498522,0.026094994,-0.29979947,0.03484156,-0.3622187,0.16572967,-0.21576925,0.36641407,-0.35665902,0.10768401,0.27300382,-0.053696226,0.34062943,-0.51028234,-0.21767952,-0.17492636,0.06902993,-0.2723821,-0.25803763,0.24294317,0.31916514,0.3093449,-0.34528708,-0.07735949,-0.30526218,0.006234283,0.07821654,0.4050988,-0.17306888,-0.3334296,-0.10960722,-0.24078684,-0.10257998,0.0991835,0.19870096,-0.26911476,-0.09669227,0.0953119,-0.2609341,0.3892456,0.42405534,-0.13096105,-0.25536278,0.36654618,0.5308875,0.3338679,-0.060746867,-0.16191787,0.028360812,-0.56291866,-0.21876104,-0.13520311,-0.16411911,0.5652751,-0.098352514,0.19373631,0.5302783,-0.21747877,-0.22902818,0.060305726,0.12014391,-0.092319466,-0.44905496,-0.34000745,0.43534127,-0.43658367,0.28637612,0.0036327417,0.4872509,0.0027841032,-0.68734,0.34138212,-0.64133424,0.11137023,-0.04503706,0.45439634,0.6105744,0.3976183,0.40787196,0.6420174,-0.29489493,-0.020175437,-0.094772905,-0.3474778,0.23556595,-0.21306263,-0.10679841,-0.45597884,0.04178684,0.14050657,-0.088491976,0.20796156,0.34755996,-0.2584461,-0.12644438,0.281805,0.6375887,-0.24483877,-0.05465587,0.5356851,1.1918826,1.0103396,0.08172505,1.182558,0.10752813,-0.26722056,0.2906849,0.0657037,-1.2316227,0.289749,0.25074366,-0.25483623,0.39281878,0.08635812,-0.0017165752,0.42524397,-0.5128223,-0.005042076,0.07259292,0.14567797,0.24405307,-0.24972929,-0.29456422,-0.41090226,0.04317255,0.017887076,-0.020180566,0.1911421,-0.14772373,0.08200073,0.12388263,1.5193082,-0.086076535,0.083537795,0.19478388,0.50094265,0.12662284,-0.24895518,-0.24681644,0.24350627,0.33573386,0.14547761,-0.56666166,0.3211548,-0.048377793,-0.5067552,-0.08510235,-0.38092732,-0.19081457,-0.058993507,-0.48436633,-0.12001131,-0.24182408,-0.35488176,0.3390505,-2.8801727,-0.057492714,-0.092968516,0.33378315,-0.09276136,-0.18271494,-0.21819393,-0.37241957,0.3566154,0.44461307,0.346241,-0.5362262,0.3165846,0.44536138,-0.5880683,-0.003316899,-0.5421846,-0.12431767,-0.0703441,0.14231291,0.041933417,0.005421365,0.10993602,0.31071267,0.38145646,0.021080628,0.18193345,0.41361836,0.42394933,-0.12176734,0.4281625,-0.15160303,0.5090752,-0.5151842,-0.24697757,0.2680998,-0.51679146,0.19860528,-0.18180875,0.046608955,0.48973227,-0.40376756,-1.0312883,-0.47974202,-0.0480073,1.3215898,-0.3908178,-0.4049615,0.30173078,-0.5780427,-0.33931795,-0.15100724,0.55870426,-0.18625571,-0.11401486,-0.9980271,0.023080379,-0.22962968,0.26512828,-0.084106766,-0.031841222,-0.46209225,0.59494853,-0.005144755,0.6869941,0.44315615,0.02565968,-0.4149252,-0.31879592,0.14876306,0.6097252,0.17412238,0.1738892,-0.34368277,-0.12525403,-0.3558941,0.086728334,0.20456617,0.3989303,0.41519165,-0.0694119,0.2750531,0.20037158,0.13721444,-0.009460777,-0.19692408,-0.13409372,-0.11364075,0.02734077,0.56844527,0.73879784,-0.16093765,-0.08464333,-0.061509073,0.2298563,-0.22309037,-0.41315213,0.39255646,1.0165769,0.037616476,-0.1896404,0.64706635,0.6940909,-0.47165182,0.5226059,-0.5112,-0.25330555,0.37627375,-0.13245226,-0.40958357,0.14910053,-0.41393343,0.044237673,-0.7930646,0.11342869,-0.17975827,-0.15648896,-0.5689288,-0.21518815,-3.2565758,0.20006232,-0.15462397,-0.30967677,-0.24862985,-0.08554823,0.29671046,-0.5017178,-0.8378394,0.100850515,0.036641166,0.79291487,-0.13683702,0.061528135,-0.24509566,-0.19823076,-0.29511064,0.11431831,0.21860029,0.3194163,0.01879388,-0.52455467,-0.27118838,-0.25605735,-0.39815938,-0.08473142,-0.33625913,-0.1424341,-0.00550509,-0.53329426,-0.43832302,0.4071926,-0.2225691,-0.072219156,-0.18954313,-0.04503554,-0.2001403,0.42682195,-0.050888095,0.21451026,0.0876492,-0.08037045,-0.014782645,-0.070950024,0.35546407,-0.018593958,0.28816494,0.38094845,-0.25837642,0.051999044,0.47160044,0.7105665,-0.08455775,1.0163118,0.527331,0.09977911,0.31330732,-0.12791418,-0.11280876,-0.48595858,-0.15793407,0.032503974,-0.45033133,-0.3118729,0.056042697,-0.3058129,-0.776958,0.5865521,0.015637329,0.14375226,0.17083704,0.11976815,0.37522873,-0.2088316,0.05756156,-0.07403877,-0.122626066,-0.39242625,-0.19152485,-0.60206383,-0.40754065,-0.09337298,0.9628187,-0.12218668,0.03200522,0.14858614,-0.19800436,0.1600938,0.3407984,0.06615186,0.30562696,0.5843715,0.107124686,-0.4395081,0.3618492,-0.18797249,-0.19429614,-0.66785884,0.026018882,0.4226873,-0.49257043,0.6984852,0.4890903,0.18067348,-0.117090285,-0.5580288,-0.33177313,-0.06337284,-0.28302863,0.43104616,0.5061044,-0.96005994,0.4185499,0.40790737,-0.263418,-0.73905164,0.75934553,-0.06072781,-0.0049378076,-0.097440936,0.33699086,-0.09957818,0.095055915,0.10224915,0.29209292,-0.2454285,0.15252122,0.16247737,-0.030665353,0.23396224,-0.1426586,0.24138354,-0.5209658,0.116680585,-0.4124894,-0.14870794,0.2546266,-0.08848981,0.11014799,0.18632405,0.0016958466,0.30919042,-0.22488661,0.06495292,-0.14418812,-0.40041557,0.46395698,0.43779492,0.5319352,-0.3920217,0.6291225,-0.08494654,-0.14621094,0.0021582816,-0.03961234,0.3689874,-0.13723935,0.4621409,0.16097338,-0.18689835,0.242797,0.7559182,0.20196019,0.23685347,0.04920538,0.06648456,0.23107924,0.109877855,0.2977487,-0.061352357,-0.6252509,0.06581717,-0.29884347,0.23871274,0.47059724,0.05977462,0.3331618,-0.29261076,-0.29315484,0.060049087,0.3343074,0.052819043,-1.2415365,0.29145548,0.10548713,0.8371482,0.73631305,-0.055210363,0.07343092,0.43162242,-0.14775343,0.0809018,0.4191055,0.0761571,-0.5459351,0.5431708,-0.65247303,0.53790915,-0.13045873,-0.03027915,0.10837024,0.020865342,0.5165674,0.63589376,-0.064889066,0.08465282,0.192572,-0.4193896,0.25606564,-0.3739859,0.22731946,-0.54787374,-0.13226514,0.65044814,0.55724734,0.44158706,-0.2768983,0.019080192,0.057934523,-0.2046342,0.065175734,0.040600546,0.046742443,-0.14063688,-0.80267715,0.011814539,0.46217504,0.21832488,0.10072321,-0.08094921,-0.4480339,0.28540364,-0.17232974,-0.12226152,-0.068030484,-0.64468926,-0.020291567,-0.38478756,-0.45481965,0.2987447,-0.13078439,0.28936115,0.3875527,0.08968479,-0.4190739,0.2517096,-0.08223091,0.8709585,-0.11245944,-0.17406464,-0.30460528,0.21556006,0.2586752,-0.13539326,-0.07469258,-0.44968334,-0.018933645,-0.25215968,0.53955406,0.027727582,-0.27319828,0.20055564,-0.07755051,0.16280209,0.66877675,-0.13264562,-0.07145084,-0.11760066,-0.06464996,-0.24759914,-0.29803804,-0.19819798,0.28435284,-0.024376592,0.12690906,-0.10996912,-0.021087011,-0.020128379,0.37679824,-0.020742754,0.32331502,0.49133334,0.21145217,-0.31789407,-0.1203232,-0.0122031495,0.7265975,-0.062639676,-0.35851762,-0.44285622,-0.39402613,-0.17182232,0.43672743,-0.07402684,0.37797,0.11040185,-0.2137627,0.51941466,-0.045367986,0.81697035,-0.038606834,-0.36789152,0.055095006,0.4843837,-0.021364497,-0.33719602,-0.35644647,0.5497782,0.38683596,-0.24200584,-0.25820398,-0.22401564,0.009488565,-0.17352493,-0.2427193,-0.1624014,-0.12582304,-0.7266906,-0.029064551,0.04651344,0.39201903,0.14603575,-0.20974775,0.32086498,0.27986482,0.031041643,0.19646321,-0.3199829,-0.12605499,0.29098043,0.16427767,-0.05313613,0.08013472,-0.4010503,0.30455118,-0.45964238,-0.14753927,-0.28718433,0.11106639,-0.16719763,-0.29917297,0.18470837,-0.15334417,0.35942528,-0.1810279,-0.02621798,-0.23122413,0.31802192,0.11925048,0.21966892,0.57152206,-0.21902962,0.119338214,0.12226441,0.5057009,0.69156927,-0.17287952,-0.018843174,0.17467324,-0.3291215,-0.60578835,0.3687694,-0.4660491,0.40195933,-0.08883572,-0.021584483,-0.6056935,0.27134955,0.17756309,-0.04156248,0.14481385,-0.76544553,-0.23966007,0.21411943,-0.31086153,-0.12140285,-0.3812747,-0.22447102,0.6101337,-0.14449129,-0.102124654,0.11489522,0.26146892,-0.059474647,-0.44362625,0.09641891,-0.39439902,0.22028816,-0.09373111,-0.37038526,-0.1627835,0.067672126,-0.41540876,0.37967005,0.01591291,-0.17957957,-0.040446598,-0.40729317,0.016027907,0.94170094,-0.23845953,0.21079777,-0.2791664,-0.6231984,-1.0410172,-0.10819011,0.38401926,-0.03580715,0.014060658,-0.5870192,0.07792484,0.055642355,-0.3283886,-0.23020439,-0.14547242,0.40993834,0.03181885,0.48845062,-0.021699468,-0.68944216,0.004506687,0.0849816,-0.16919948,-0.30625156,0.59412956,0.05389164,0.75165945,0.10809932,0.21175297,0.10617911,-0.50722617,0.15482917,-0.05579679,-0.00875816,-0.4426264,0.14230938,127 +799,0.48413393,-0.218581,-0.7071578,-0.070760846,-0.41831556,0.09670945,-0.25648674,0.20965737,0.2464792,-0.49668667,-0.14632176,-0.15610686,-0.009203737,0.405095,-0.20121533,-0.74567175,0.06024608,0.2581248,-0.61852187,0.17417264,-0.5877182,0.5147875,0.20984812,0.5162899,0.013713981,0.0731194,0.18241316,-0.0704752,-0.040216547,-0.10328424,-0.29676548,0.09510705,-0.5997314,0.22876406,-0.18696177,-0.52508974,0.11399513,-0.40470684,-0.3679792,-0.7379305,0.4630116,-0.8699203,0.64826936,-0.12735309,-0.42187676,-0.0858122,-0.017861864,0.33387208,-0.54612887,0.30020446,0.10848817,-0.33309087,-0.06123962,-0.18385702,-0.37141526,-0.29529262,-0.60982466,-0.010440049,-0.5624949,0.18179916,-0.21318053,0.32463288,-0.33695304,0.16346817,-0.20164575,0.17198618,-0.48856363,0.012319803,0.25161722,-0.12321228,-0.054599553,-0.55860907,-0.1828782,-0.17698209,0.28420162,-0.024657378,-0.23794818,0.18251128,0.18087101,0.6154528,0.17942564,-0.25825778,-0.31297174,-0.030862898,-0.22698523,0.62374884,-0.025567004,-0.17434709,-0.34085155,-0.11751477,0.50917774,0.30680266,-0.021846622,-0.2045942,0.088430576,-0.33608508,-0.2571182,0.40765557,0.5531866,-0.41977656,-0.09320571,0.37878636,0.44014192,0.10235455,-0.08415987,0.2883589,0.019130656,-0.6316338,-0.3035185,0.10355037,-0.003007561,0.7566244,-0.2872642,0.38941583,0.57826,-0.22187786,-0.06685009,-0.05344406,0.027255714,-0.13357809,-0.17264758,-0.27961856,0.28226486,-0.44798228,-0.05923338,-0.28869197,0.85961944,0.10541105,-0.74955374,0.3252577,-0.54370004,0.16541593,-0.04750067,0.7453758,0.6416191,0.53590137,0.21650036,0.9189358,-0.5784251,0.14410089,0.04538493,-0.30669215,-0.0017070895,0.0070513487,-0.08467257,-0.3718722,0.05980585,-0.16604495,-0.13947326,0.13765532,0.68786174,-0.36921665,-0.26977757,0.08148811,0.69110864,-0.48337913,-0.09048459,1.0221757,0.96864605,1.2218605,-0.036971275,1.4468621,0.45582315,-0.090853564,-0.43208823,-0.051769387,-0.6431016,0.1614141,0.21200784,0.21560912,0.34323943,0.30108222,-0.14662297,0.50972134,-0.2998716,-0.23041016,-0.19853242,0.1279362,-0.17071684,0.08644251,-0.57440066,-0.3044592,0.07267796,0.11352997,0.10209575,0.3150718,-0.20322709,0.5660158,-0.012933965,1.2082106,-0.048382055,0.13755299,0.0500202,0.39556193,0.22168124,-0.20381482,-0.054365586,0.099767245,0.47211123,-0.08748484,-0.7278817,-0.19300203,-0.2654318,-0.30894077,-0.30119526,-0.24136786,-0.044127252,-0.26241246,-0.3830829,-0.18523137,0.028532693,-0.32179543,0.41018105,-2.0950046,-0.28140703,-0.069078036,0.40475306,-0.18092911,-0.31725746,-0.30639896,-0.44469595,0.3754367,0.3857861,0.50719196,-0.63526326,0.56865066,0.47637978,-0.33038345,-0.09250646,-0.7781324,-0.019227305,-0.12909295,0.1709259,-0.044140633,-0.23341715,-0.24012214,0.017059753,0.66461825,0.026215231,0.062040687,0.12320125,0.6345172,0.07547494,0.6130461,0.17943086,0.6620372,-0.4155682,-0.19809186,0.34111428,-0.5836023,0.32949042,-0.16055238,0.08049228,0.52622414,-0.7626949,-0.88000137,-0.62296486,-0.18514393,1.2776109,-0.35622564,-0.42736506,0.23099904,-0.0960978,-0.28762996,-0.03718431,0.51165056,-0.23171942,-0.086442865,-0.60240096,-0.17757761,0.013130303,0.35065684,-0.09157956,-0.008190681,-0.41413522,0.68755054,-0.2729927,0.41781756,0.51610714,0.2793087,-0.07511213,-0.5133377,-0.04205243,0.74695843,0.28261587,0.19565631,-0.38061717,-0.20110218,-0.070493154,-0.07231774,0.10540786,0.5642914,0.7293148,-0.06729745,0.15610076,0.5484876,0.03278191,0.07527108,-0.084680796,-0.40470698,-0.32490918,0.0067237415,0.6790193,0.78112936,0.00049623224,0.31895956,-0.09194204,0.30287895,-0.17818125,-0.5097012,0.5358601,0.80432916,-0.15394552,-0.25927174,0.69935536,0.41453925,-0.47406697,0.4684439,-0.6374335,-0.36691606,0.39269444,-0.01573277,-0.4536287,0.17109735,-0.33929524,0.033987373,-1.0305452,0.2979358,-0.067006804,-0.6375626,-0.6001275,-0.23261511,-3.269101,0.349002,-0.37898865,0.06372583,-0.034185987,-0.36704293,0.13540235,-0.56434745,-0.6277662,0.18649739,0.11665547,0.4000229,-0.14403374,0.3114804,-0.37905538,-0.33640262,-0.3455108,0.088618256,0.29885367,0.24152885,0.06978363,-0.46156022,0.15388858,-0.24541157,-0.4314073,-0.026410341,-0.7352926,-0.398204,-0.09963577,-0.6006637,-0.23548527,0.8278977,-0.2793854,-0.11304451,-0.38818884,0.07965894,-0.1966237,0.24664895,-0.023695862,0.27383366,0.037086915,-0.19920664,-0.16554427,-0.20810276,0.18297608,0.030909324,0.085799344,0.19933538,-0.3072347,-0.05441512,0.4314845,0.6834573,-0.21077919,0.72279686,0.25115556,-0.011135233,0.14133851,-0.035942752,-0.4332842,-0.6274244,-0.32703364,-0.12052858,-0.61466295,-0.41399035,0.039602507,-0.4338232,-0.90356207,0.6295503,0.047900807,0.041418064,-0.026369134,0.40743533,0.47580895,-0.058427304,0.051411763,-0.028579958,-0.26696837,-0.35255995,-0.47686148,-0.68949455,-0.5580165,0.006506195,1.4765056,-0.2245522,-0.03668417,0.16820844,-0.2785938,0.10295829,0.2899984,0.10026578,0.11995556,0.43521723,-0.1647315,-0.6493548,0.32330927,-0.2672977,-0.14958231,-0.6515356,0.037934005,0.90524644,-0.7477171,0.6209018,0.54683375,0.14982599,0.061093282,-0.7726452,-0.34206772,-0.076093554,-0.0883655,0.6420502,0.22517705,-0.6524646,0.54963803,0.19273306,-0.24402086,-0.67783386,0.379614,-0.11375689,-0.45324397,0.15048257,0.47912765,0.012403806,-0.07438409,-0.27712628,0.111726575,-0.38464484,0.4093883,0.25991356,-0.08324336,0.2667935,-0.26563942,-0.26373208,-0.60384905,-0.15537989,-0.5129714,-0.01999706,0.079921596,-0.025750788,-0.016754806,-0.035492998,0.080081284,0.579894,-0.37879634,0.0657107,-0.25805867,-0.18650131,0.32615668,0.44743252,0.4282167,-0.6018594,0.6100742,0.13202311,-0.08685359,-0.070195146,0.24156076,0.4728601,0.07857267,0.4393022,-0.19339925,-0.06829064,0.13506687,0.6401209,0.19044395,0.47156882,0.34325644,-0.19280572,0.44083798,0.33386782,0.21040432,-0.0941895,-0.22991697,0.04383868,-0.15499483,0.13602698,0.37726438,0.16679187,0.5207748,-0.19069825,-0.06559508,0.14989607,0.113926284,-0.11220463,-1.0308293,0.14169301,0.11236161,0.6665902,0.37141857,0.0926001,-0.054688614,0.593924,-0.30614612,-0.12643875,0.27799392,0.18441708,-0.26938188,0.596845,-0.44099888,0.46991566,-0.3189924,-0.007609648,0.1353462,0.26055387,0.5275923,0.85054755,-0.023363715,0.049614727,0.013596616,-0.08909149,-0.1087259,-0.41572404,0.13954823,-0.5412033,-0.21758509,0.7157309,0.3005146,0.42139658,-0.34437594,-0.13314082,0.09936929,-0.16428845,0.042154778,0.035374347,-0.07731573,-0.1631035,-0.74174184,-0.16982067,0.5154249,0.14668529,0.20619315,0.124019206,-0.3340191,0.39018723,-0.12351953,-0.047748756,0.029733775,-0.77272326,-0.12546746,-0.456746,-0.41155812,0.09802708,-0.27787378,0.33651745,0.2959006,-0.02650703,-0.27532268,0.21505181,0.025818931,0.9848426,0.12065265,-0.09090086,-0.3811033,0.16364141,0.45778242,-0.3440306,0.028351525,-0.19503136,0.188339,-0.5021084,0.41383934,-0.09563557,-0.15025651,0.13312599,-0.05260623,-0.06779932,0.51079154,-0.1924054,0.013746209,0.3857576,0.05261439,-0.39016843,-0.10771153,-0.50154805,0.19851243,0.07125395,0.005317653,0.12444302,-0.13065735,0.011420873,0.5132708,0.16454142,0.32481262,0.29787078,0.027405528,-0.4352822,-0.043627977,-0.20572019,0.5569415,0.016749732,-0.26443878,-0.41344306,-0.539856,-0.08062142,0.41580728,-0.13368218,0.08528001,0.017433017,-0.27618197,1.0273534,0.32498607,1.1183141,-0.04246067,-0.31945452,0.08716229,0.69995624,0.1351208,0.12403896,-0.24009842,1.218417,0.64336175,-0.3074673,-0.257462,-0.42639843,-0.19515993,0.03674403,-0.37776694,-0.3511939,-0.16039114,-0.5499606,-0.09945258,0.22448057,0.30049738,0.1832165,-0.093846776,0.32431278,0.3739375,0.12981527,0.44701505,-0.62558967,-0.13234796,0.3756411,0.25194862,-0.026063472,0.14424837,-0.3744409,0.36745343,-0.70956117,0.15912168,-0.37676108,0.17975332,-0.017287448,-0.40839753,0.26733455,-0.038115785,0.2725104,-0.49250785,-0.18400602,-0.28989774,0.6701817,0.3642976,0.32001612,0.79952437,-0.32118908,-0.1430525,0.032299943,0.5283474,1.3092929,-0.20180011,-0.0026293893,0.3520927,-0.32330444,-0.56926566,0.17504983,-0.45336494,-0.10202792,-0.1681272,-0.3700266,-0.4899666,0.27373627,0.10704237,0.072310485,0.16750962,-0.5063587,-0.0033293988,0.4551835,-0.18086128,-0.15559712,-0.34760913,0.3746624,0.65600103,-0.15562014,-0.45489332,-0.049279302,0.3957093,-0.32226714,-0.6701948,0.08966172,-0.446673,0.42380455,0.07378062,-0.19176285,-0.13600759,0.15088308,-0.46387073,0.07473144,0.19151556,-0.2268997,0.1612508,-0.2838603,-0.050151143,0.947807,-0.0009513398,0.26556817,-0.75093025,-0.458048,-1.1309338,-0.20206942,0.37210777,0.3050962,0.031563904,-0.68418676,-0.056442548,-0.15693416,-0.15722801,0.028004626,-0.35072684,0.41387495,0.16191487,0.40804207,-0.09924232,-0.9460979,0.17041461,-0.006785234,-0.66471547,-0.4505415,0.6137869,-0.12469884,0.6933611,0.1473372,0.10932913,0.095462024,-0.55086917,0.39108256,-0.28842768,-0.26979628,-0.80444413,-0.1505021,130 +800,0.63322747,-0.23686962,-0.33810577,-0.14790703,-0.12589721,0.18432207,-0.18983392,0.43867216,0.27762243,-0.46143237,-0.34319806,-0.21322243,0.050149556,0.19728361,-0.17755719,-0.60296535,0.10990363,0.18390135,-0.355652,0.46986774,-0.4306835,0.2875452,-0.02428481,0.68162704,0.11405057,0.21436127,0.22620714,0.01700146,-0.31493402,-0.4205643,-0.1090386,0.4735718,-0.6983226,0.26267716,-0.29359755,-0.44906965,-0.049141515,-0.596569,-0.28461406,-0.7364482,0.13283378,-1.0145144,0.6070024,0.05447339,-0.23939298,0.30803123,-0.07806111,-0.031077852,-0.15068996,-0.033669997,0.004983256,-0.24351485,0.047744423,-0.2953507,-0.257977,-0.28240493,-0.5602011,0.10014369,-0.43320695,-0.17622982,-0.50365615,0.10859436,-0.27788267,-0.07059062,0.1443007,0.5713374,-0.42292118,0.2652571,0.004742076,-0.17556034,0.19115168,-0.3891395,-0.27888274,-0.24261063,0.21387893,-0.3453404,-0.2633946,0.16614088,0.32046673,0.4051442,-0.10871265,-0.110378854,-0.29440644,-0.057144735,0.09279812,0.5614233,-0.12339205,-0.7380534,-0.19597745,-0.13816702,0.17054272,0.05972654,0.29133168,-0.21993883,-0.07659612,-0.112266935,-0.26882258,0.58393335,0.46486616,-0.32316718,-0.27822354,0.24921514,0.35566804,0.05202058,-0.12890865,0.0025450934,0.12682031,-0.5096625,-0.15449397,-0.07851467,-0.077457,0.6672287,-0.11496696,0.38568512,0.6354573,-0.37520525,-0.049343992,0.097296305,0.044916596,-0.20850599,-0.19222802,-0.2418396,0.34736165,-0.38093862,0.04465298,-0.24647017,1.0013549,0.2313416,-0.76322144,0.3216149,-0.52168673,-0.11028135,-0.091780454,0.46105662,0.46554574,0.4370034,0.35081473,0.5545731,-0.40171215,-0.0704949,-0.009038019,-0.49727878,-0.038147677,-0.27306077,-0.067762226,-0.33435568,-0.07752537,0.09746516,-0.11688063,0.14875625,0.5544098,-0.5082492,-0.06588126,0.20065308,0.7079229,-0.3869281,-0.25902298,0.9744315,1.022012,0.85920143,0.075456314,1.2530751,0.35347793,-0.052188247,-0.00033231577,-0.07360241,-0.7370937,0.38740405,0.2880945,-0.5491994,0.29709634,0.16651101,-0.0732872,0.1835013,-0.37050557,-0.16600138,-0.18440627,0.14866649,0.107451655,-0.002094239,-0.49245998,-0.37007096,-0.030218268,0.020473788,0.292577,0.21141426,-0.32477272,0.5514565,0.07421651,1.5031937,-0.0341541,0.023717513,-0.13085054,0.6705151,0.26858565,-0.006651312,-0.1859713,0.3465933,0.24533038,0.08924662,-0.57135135,0.016405175,-0.080644526,-0.4216113,-0.20670716,-0.38159788,-0.057607513,0.006027907,-0.25537667,-0.15106778,0.009790228,-0.3446156,0.5105767,-2.6301167,-0.11288634,0.107751556,0.41546166,-0.16376977,-0.3743495,-0.18664587,-0.51764804,0.35604832,0.32706162,0.420781,-0.6057434,0.22977622,0.57479805,-0.3477629,-0.3673083,-0.59030986,0.16630505,-0.18871166,0.31946933,0.05004223,0.016220788,-0.10819142,-0.016415536,0.70427436,0.043105185,0.16273747,0.17437315,0.43597695,0.06563633,0.31168973,-0.03174084,0.6144547,-0.19595592,-0.28809428,0.40705395,-0.28062776,0.16693456,-0.31836018,0.16207401,0.48849893,-0.4438208,-0.8807399,-0.7649223,-0.26030594,1.1395171,-0.15415813,-0.4316496,0.053902835,-0.07652446,-0.296949,0.012519161,0.5072004,-0.2866269,0.050106887,-0.6306183,0.037357945,0.021523306,0.111964226,-0.0040196627,0.09699901,-0.4709996,0.48189768,0.008958645,0.26930818,0.20053624,0.3261695,-0.2483697,-0.62505186,0.23259918,1.1163362,0.25621238,0.22389932,-0.41542625,-0.21006113,-0.1895066,0.013788794,-0.02941746,0.5883846,0.65949845,0.0009873646,0.15636447,0.33568773,0.12412974,0.112057745,-0.0947214,-0.2819246,-0.13159646,0.0010401806,0.69846827,0.68875855,-0.20739035,0.44332853,-0.17522074,0.4320741,-0.21643583,-0.42694333,0.6060837,0.9771328,-0.20494378,-0.22865087,0.77094364,0.45571744,-0.46394768,0.42987236,-0.6833047,-0.38070926,0.4497324,-0.20972149,-0.4617664,0.25790638,-0.24743716,0.12536854,-0.82232314,0.42478248,-0.029499436,-0.5224332,-0.49309942,-0.04777882,-3.9393823,0.16060664,-0.14586693,-0.26292595,-0.18619685,-0.29029164,0.17844681,-0.5142154,-0.38158083,0.17606086,-0.0035933654,0.8311341,-0.09228613,0.21703869,-0.1741945,-0.2868407,-0.25200328,0.08041287,0.17773636,0.39238873,-0.054110277,-0.30557334,0.097937524,-0.2525867,-0.33033213,0.05815233,-0.4647263,-0.577048,-0.015116982,-0.65676725,-0.31646517,0.6768779,-0.49082884,-0.02034069,-0.32091537,-0.001046747,-0.15008946,0.39912197,-0.03698623,0.10777732,0.12588187,-0.010109906,0.07758018,-0.34757924,0.4665617,0.047877375,0.13316126,0.48364767,-0.28345945,0.21478014,0.48887035,0.40936217,-0.053782377,0.894084,0.36465302,-0.046111524,0.26892292,-0.3145051,-0.41977015,-0.51315814,-0.24257766,-0.04657859,-0.4914285,-0.33469787,-0.07731487,-0.28862992,-0.825896,0.6857452,-0.032767463,0.22247498,-0.10107714,0.3334136,0.49820065,-0.18124281,-0.07949752,-0.023301765,-0.0716509,-0.49602893,-0.34803,-0.5747941,-0.51896024,0.017187187,0.7619907,-0.16258569,-0.022902116,0.09221747,-0.003063942,0.0053122393,0.01024128,0.021781547,0.0629307,0.5348821,0.012875046,-0.76085377,0.43028644,-0.15435894,-0.18832551,-0.5612537,0.20034361,0.7527283,-0.8118163,0.46444333,0.5117741,0.06507662,-0.04946685,-0.42533574,-0.25548604,-0.12338557,-0.10028651,0.399376,0.34150115,-0.9603348,0.50192076,0.21351291,-0.29560283,-0.7861615,0.4964743,-0.018467383,-0.2755942,-0.022063322,0.39470363,0.15044515,-0.002337883,-0.2757387,0.19133301,-0.3788481,0.202493,0.009122789,0.014479227,0.41737887,-0.20438154,-0.052648474,-0.7115162,-0.073575504,-0.5587161,-0.49574825,0.13129327,0.12867738,0.05313869,0.38644662,0.041922156,0.29256386,-0.45531312,0.086747855,0.098939426,-0.2396158,0.34022263,0.4315547,0.6983792,-0.39699832,0.5891636,0.07079109,0.018419355,0.1300348,0.023351485,0.5002671,0.021887481,0.39850652,0.20934594,-0.20930225,0.18457831,0.77268356,0.20184381,0.61690545,0.12446061,-0.09267708,0.30272833,0.08354763,0.36203265,0.08543825,-0.5951201,-0.09148257,-0.40785193,0.101060666,0.5302379,0.22615527,0.27460644,-0.034896377,-0.42169046,0.13844952,0.114825524,0.012524165,-1.1432508,0.2098897,0.09733554,0.78680545,0.3544728,-0.054044712,0.09633329,0.6799945,-0.07881716,0.1839658,0.27680972,0.040116027,-0.4546561,0.5857913,-0.60610485,0.4262366,-0.12203737,-0.07567909,0.014299353,-0.12647404,0.30803436,0.7770135,-0.19512929,0.2274162,0.02809906,-0.182191,0.11696453,-0.63529867,0.25585455,-0.5243893,-0.10214186,0.7797281,0.53851753,0.24193633,-0.22031455,0.061851736,0.08368478,-0.053929668,-0.017482886,0.09722374,0.06292116,-0.0118924575,-0.73159593,-0.15299025,0.6937185,0.26418558,0.12740092,-0.068751164,-0.09655618,0.2710798,-0.22738199,-0.12487944,-0.03212614,-0.6661667,-0.04128234,-0.3360258,-0.5716472,0.49478117,-0.083506666,0.12274174,0.16346996,0.08050262,-0.2646956,0.33186123,0.43537435,0.69234353,0.2571229,-0.17053187,-0.3640779,0.23973124,0.37358585,-0.32742944,-0.18848269,-0.3032308,0.013474271,-0.5210606,0.22017519,-0.106167555,-0.4478949,-0.0018457124,0.09293156,0.09084833,0.5658658,0.12113852,0.016200176,0.113595076,-0.2090858,-0.4148074,0.07046252,-0.249672,0.22836442,0.30492836,-0.3978577,-0.111436896,-0.1319798,-0.17975299,0.2847425,-0.048199445,0.49908915,0.34644425,0.090780646,-0.25254464,-0.0987879,0.07155715,0.70467025,-0.03481105,-0.18734454,-0.27812675,-0.32060823,-0.29201522,0.27090612,-0.034845006,0.090420105,0.26625824,-0.33206466,0.6606454,-0.019008264,1.0181562,0.07716903,-0.44610605,0.19354074,0.4438688,0.034574736,-0.0547175,-0.4703822,1.2077551,0.2883539,-0.14239778,-0.28372845,-0.40515232,-0.037056025,0.0919804,-0.28488594,-0.2650455,-0.23330085,-0.71793586,-0.2609167,0.27023438,0.34254536,0.21348898,-0.06104197,0.25027913,0.38914815,0.029741758,0.4068085,-0.5682903,-0.14132182,0.41926143,0.406979,0.003590713,0.20290227,-0.29351962,0.37845743,-0.56725097,-0.007687012,-0.40227315,0.1566461,-0.3425138,-0.36422208,0.25805077,0.23548599,0.44504797,-0.26231062,-0.4991045,-0.332765,0.39345184,0.095744826,0.14054184,0.38307032,-0.20974104,-0.07087836,-0.18596907,0.47826982,1.170936,-0.07182161,0.21351047,0.5406586,-0.2443216,-0.527413,0.33728686,-0.3500248,0.31781173,-0.10433605,-0.18814135,-0.42573962,0.2907009,0.1320118,0.035715554,0.11675283,-0.5384187,-0.101408064,0.41308415,-0.12595437,-0.19353189,-0.23797925,0.04114646,0.55698186,-0.21823435,-0.25739312,0.12850194,0.340518,-0.15689889,-0.52392226,-0.23059237,-0.24099381,0.34287772,0.07116748,-0.31385818,-0.14731704,-0.13916847,-0.4788978,0.13515545,0.19745927,-0.39204633,0.08275617,-0.250914,0.13815407,0.9606841,-0.21351366,0.1028117,-0.4789168,-0.54219234,-0.9126475,-0.28879836,0.46452975,0.08285623,0.05019185,-0.5513522,-0.027719835,-0.13214691,-0.24700606,-0.08428657,-0.42177153,0.3279291,0.16215634,0.60125893,0.0010181492,-0.986406,0.14135605,0.20219664,-0.3108281,-0.8017292,0.40316805,-0.15923968,0.8829997,0.09151492,0.01258073,0.331762,-0.6017881,-0.13137095,-0.2701681,-0.16545027,-0.6367959,0.31754076,137 +801,0.43221655,-0.25019357,-0.43143913,0.0706752,-0.37111935,-0.029276466,-0.23935784,0.57134503,0.2585113,-0.3841648,-0.17827709,-0.25547972,0.030723602,0.26768258,-0.15247881,-0.09914252,0.033247292,0.16118734,-0.5429389,0.5996351,-0.32686114,0.25641534,-0.019025704,0.49882603,0.44903216,0.43147126,-0.021933874,0.2946218,-0.01541698,-0.18016784,-0.26299262,-0.19513898,-0.7123526,0.19714886,-0.3708454,-0.59348243,-0.12248165,-0.64327043,-0.56830496,-0.83161765,0.6486468,-0.9617675,0.5198768,-0.00893568,-0.17229472,0.29669914,0.30580142,0.42580295,0.009490694,-0.1873724,0.08659321,-0.09972197,0.3402004,-0.39179602,-0.124375015,-0.32115784,-0.54127085,-0.1569191,-0.40878233,-0.22397375,-0.19541408,0.1837792,-0.3210563,0.07686864,-0.108100645,0.45461473,-0.33024096,0.33678058,-0.013258715,-0.23102105,0.038228557,-0.5238454,-0.16631968,-0.110856235,0.24871321,-0.051244225,-0.12794857,0.40692914,-0.035015196,0.21491891,-0.18925802,-0.021639893,-0.33522883,-0.072047025,-0.07586082,0.5009574,-0.14990868,-0.50055027,-0.14049514,-0.08739707,0.46617457,0.24922584,0.32721135,-0.08731914,-0.06676194,-0.22424264,-0.13191068,0.5669356,0.5318602,-0.12645523,-0.17709374,0.27624607,0.687859,0.21143816,-0.37587634,0.03656669,0.14673452,-0.42697784,-0.11404506,0.007948478,-0.105895996,0.66690487,-0.055744004,0.39231643,0.45246553,-0.42916933,-0.030741593,0.21065712,0.17519237,-0.032446027,-0.15799804,-0.41487074,0.34658182,-0.31896117,-0.007588014,-0.2707548,0.5394109,0.12628941,-0.6302705,0.35415354,-0.7057721,0.04961482,0.109013855,0.36505738,0.57652265,0.6131513,0.41228664,0.7445747,-0.24132274,0.016808897,-0.2905689,-0.12306247,0.11386839,-0.30279323,0.20820306,-0.3674806,-0.08903261,-0.03188666,-0.15742777,0.042101685,0.47606003,-0.5209154,-0.12911926,0.07659324,0.6844112,-0.19809043,0.022500744,1.0085152,0.96193457,0.9493656,0.041459512,0.74717206,0.11215097,-0.12625496,0.045510728,-0.028836563,-0.77675986,0.216211,0.14687237,0.00045766434,0.5612343,0.0748225,0.1404217,0.14370322,-0.49167252,-0.006648836,-0.047770593,0.20677917,0.19285351,-0.070552275,-0.38735342,-0.34238863,-0.054053824,0.14087321,0.2542623,0.32353094,-0.354517,0.38935566,0.083102904,1.799727,0.14758605,0.09809148,0.2280345,0.8126197,0.295287,-0.43443534,-0.08692547,0.32613328,0.19653322,0.16311069,-0.57391423,0.13280226,-0.21244073,-0.40823862,-0.056864034,-0.39787412,-0.15807214,-0.24827276,-0.38185036,-0.3957092,-0.22039044,-0.21615808,0.33217385,-2.8940036,-0.11599871,-0.048457105,0.5565824,-0.32806733,-0.41815087,-0.12322316,-0.5738897,0.26072016,0.30191085,0.40284202,-0.70619553,0.42449674,0.54227114,-0.55122787,-0.068029754,-0.5369055,0.07037306,-0.03495678,0.30388793,-0.13086812,0.003846243,0.26467484,0.1631263,0.44775364,0.11381942,0.057880938,0.24162167,0.5422221,0.017634341,0.5600201,-0.06356559,0.2051516,-0.4770031,-0.13829626,0.37336078,-0.5901095,0.04156057,-0.21021755,0.124145925,0.63744515,-0.5433707,-0.7904064,-0.5665359,0.23595862,0.94464904,-0.13484257,-0.7103502,0.10277843,-0.6672628,-0.41949287,-0.32835063,0.61748815,-0.19254166,-0.04806942,-0.5211345,-0.21378545,-0.2936274,0.29042307,0.06645136,-0.083263636,-0.3116254,0.7751236,-0.04488367,0.5183835,0.14306866,0.13516794,-0.70519155,-0.530462,0.25571486,0.54663396,0.40355852,0.05948912,-0.14833592,-0.13911913,-0.2053122,-0.08373847,0.11297812,0.7071504,0.62597245,-0.17371424,0.23701783,0.4147396,-0.10716513,0.050234508,-0.26138887,-0.25974774,-0.338509,0.09877352,0.62891287,0.82245,-0.08961151,0.34258637,-0.022548534,0.26588494,-0.29628333,-0.543984,0.38130936,0.7653287,-0.073492475,-0.293587,0.41630152,0.60483027,-0.42564598,0.4284315,-0.7683282,-0.43563342,0.33622566,-0.100580074,-0.5144914,0.29117057,-0.22457911,0.12644152,-0.45613933,0.11059889,-0.11368775,-0.42012623,-0.5536923,-0.13362205,-2.0949757,0.11301752,0.030335188,-0.33345208,-0.11492625,-0.30130523,-0.012273818,-0.60258967,-0.56033987,0.22243802,0.10628331,0.9141054,-0.08029528,0.1510279,-0.2036617,-0.3988247,-0.47345996,0.21649873,0.19253434,0.39019454,-0.15429772,-0.41217032,-0.19031899,0.004051499,-0.58012176,-0.014538054,-0.38792738,-0.32320556,-0.28200498,-0.45479372,-0.36305654,0.5930895,-0.22685416,0.08899488,-0.34619108,-0.1846916,-0.03082143,0.34861585,0.10406992,-0.006772349,0.11726991,0.008790448,0.32500124,-0.2288049,0.25500485,0.015066594,0.3688712,0.3470912,-0.124680854,0.1732406,0.37049296,0.69476193,-0.05954883,1.0299801,0.21722424,-0.123937376,0.40519503,-0.05847907,-0.3599731,-0.36444554,-0.010641371,0.27157637,-0.30284417,-0.24086489,-0.22989173,-0.3779478,-0.7584365,0.44574976,0.1275299,0.3270407,0.08485388,0.47276488,0.5966707,-0.2072369,-0.04563946,-0.06045546,-0.20327957,-0.64702415,-0.38246524,-0.52038735,-0.37970462,0.2902677,0.8495192,-0.2966337,0.025911339,0.2353431,-0.30270723,0.059838813,0.18505232,-0.2293642,0.06381296,0.41277122,-0.23817702,-0.52856714,0.40707418,-0.29791373,-0.24429916,-0.5738629,0.2742715,0.5498385,-0.55827093,0.29388148,0.019578636,0.056776505,-0.4830365,-0.4776756,-0.02834247,0.07999812,-0.1927644,0.26957354,0.4487444,-0.8591097,0.24777704,-0.06778506,-0.34045827,-0.6611746,0.51410526,-0.04912473,-0.41527343,-0.52424353,0.30219635,0.18378703,0.034341816,-0.26250574,0.06419591,-0.44516423,0.11165679,0.19953074,-0.019844295,0.22099382,-0.13654484,-0.16802992,-0.56841415,0.3058408,-0.40030053,-0.2860968,0.46968865,0.06611159,0.14825608,0.33365414,0.09879386,0.18308552,-0.3429799,0.12766099,-0.10594559,-0.14126836,0.4853952,0.3464651,0.5835896,-0.58347094,0.5820431,0.16884239,-0.14693995,0.36897373,-0.0025270383,0.27182218,-0.09613732,0.30540028,0.08789251,-0.3193849,0.07245293,0.8337374,0.36032298,0.4474977,0.0044401684,0.010890226,0.103477396,0.090813,0.20764148,-0.013581794,-0.6840491,0.09099477,-0.33650294,0.0763433,0.47163352,0.064846665,0.3226035,-0.09138056,-0.27357307,0.08012412,0.20900856,-0.29413152,-1.4610858,0.08146923,0.121631615,0.95158917,0.5191662,0.002948304,-0.0456471,0.76183814,-0.052404653,0.17492068,0.27021146,0.28941098,-0.4583306,0.59226733,-0.632405,0.616573,0.05945086,-0.16141193,-0.048783284,0.076506175,0.4929601,0.6763563,-0.27285913,-0.05760358,0.06406385,-0.24260306,0.04619247,-0.39225593,0.19071573,-0.77561903,-0.29464957,0.6456184,0.3685108,0.45626035,0.0709121,-0.012334589,-0.07854978,-0.0931035,0.03319936,0.00024569035,0.12746851,-0.04008604,-0.66315883,-0.08055442,0.5332424,-0.07212711,0.12914258,0.06980031,-0.1115545,0.16537966,-0.12599045,-0.18069045,-0.07359638,-0.8970146,0.18466842,-0.27791455,-0.45820627,0.68406326,0.047858115,0.21725242,0.28328708,0.04185623,-0.23482496,0.3128044,0.3965989,0.59870845,-0.20479374,0.011680879,-0.4218975,0.2580028,0.124420725,-0.25040576,0.09177259,-0.013235201,0.08663404,-0.5160603,0.40835667,-0.040719375,-0.13744062,0.0026372473,-0.100654,0.07470193,0.7353532,0.06890609,-0.07418411,-0.026729828,-0.2334439,-0.22816773,-0.21731603,-0.25614598,0.21305592,0.17613375,-0.25735867,-0.034281913,-0.118326224,-0.07600004,0.41869593,0.018643558,0.5807669,0.23756933,0.2353841,-0.3693433,0.13373278,0.002749741,0.5986702,-0.06254535,-0.080245234,-0.38003477,-0.50523347,-0.4779539,0.5087246,-0.007602284,0.2382635,0.15048902,-0.07297533,0.98365325,-0.050332233,1.1587445,0.046070367,-0.35954773,0.36613917,0.5083279,0.009610668,-0.045351654,-0.4426696,0.87431747,0.32333183,-0.052730028,-0.10258532,-0.074425615,0.045057323,0.22629182,-0.3162213,-0.22118759,0.02463615,-0.52056044,-0.19061466,0.2221307,0.24683511,0.1575178,-0.26987022,0.17328985,0.55207676,-0.109011106,0.35285047,-0.3778635,-0.17729859,0.50067955,0.18718602,0.03996952,0.09023515,-0.47964525,0.30818275,-0.38857833,0.040084653,-0.48285052,0.27800414,-0.0067782104,-0.46833754,0.10031592,0.067869715,0.4951278,-0.47757474,-0.42661333,-0.2871935,0.47268116,0.1723149,0.2667449,0.24674685,-0.2232523,-0.048717584,-0.24500196,0.46255684,0.7342997,-0.30106947,-0.03346766,0.37530681,-0.46336177,-0.7622657,0.3665808,-0.31798533,0.26009542,0.08131453,-0.022612205,-0.3549784,0.24658917,0.28304413,0.06721667,-0.22116898,-0.7800233,-0.31603566,0.299027,-0.19887145,-0.12896846,-0.46352938,0.11840313,0.5092552,-0.06693391,-0.27130732,0.0770231,0.37424245,-0.13628255,-0.3794782,-0.013976905,-0.29829794,0.16414826,-0.19787128,-0.28667846,-0.2844768,0.24784613,-0.52892524,0.18278511,-0.06306664,-0.29323956,0.069469675,-0.24657564,0.022152072,0.978533,-0.22622192,0.0322499,-0.32224903,-0.5276529,-0.9435735,-0.38405037,-0.03467882,0.195804,-0.0021264472,-0.7017514,-0.10577756,-0.17229111,-0.30931625,-0.012159586,-0.38253602,0.46325448,0.1990099,0.37348923,-0.029885843,-0.80421656,0.16210182,0.11442507,-0.3441057,-0.53482497,0.58682543,-0.04619621,0.878345,0.19581725,-0.02995991,0.20820837,-0.5116373,0.101765156,-0.19683616,-0.03606379,-0.72145814,0.18883973,142 +802,0.4736614,-0.4135653,-0.37719646,-0.39644182,-0.19600224,0.07099403,-0.24809368,0.54363364,0.17821603,-0.6732175,-0.32665107,0.027459584,-0.20370658,0.2887254,-0.21943597,-0.8280806,0.05139764,0.29089165,-0.44319037,0.7276272,-0.33223757,0.27785143,-0.12765472,0.21854705,0.2501862,-0.010499218,0.19384825,0.21021903,0.15008877,-0.4635636,0.11658793,0.101180054,-0.28300592,0.4774063,-0.035013963,-0.44110408,-0.07329655,-0.19258241,-0.20668699,-0.8191676,0.26279178,-0.85031533,0.3535898,-0.17411004,-0.41697773,-0.03634131,0.23360781,0.17690659,-0.08512581,0.15024678,0.04989228,-0.08053725,-0.31091198,-0.19464476,-0.2425276,-0.5754164,-0.68152183,0.12699963,-0.28957537,-0.066439666,-0.10815525,0.394024,-0.26256475,-0.08820974,-0.3684086,0.7684538,-0.27911726,-0.057859167,0.19851755,-0.14191273,0.30666167,-0.6553339,-0.20638289,-0.08954564,0.24262704,0.0004348755,-0.33096132,0.1790772,0.2618222,0.6044591,0.011020889,-0.26203772,-0.19866014,-0.22928579,0.100842506,0.4449325,-0.2118923,-0.59357196,-0.24888285,-0.19803433,0.42447445,0.34026083,0.40220508,-0.3708643,0.13563572,-0.02247417,-0.32443717,0.5015783,0.61938584,-0.41691044,0.114414304,0.27484164,0.554908,-0.08688996,-0.27197793,0.18045855,-0.01871186,-0.6061474,-0.3000823,0.38668966,0.010614852,0.3425378,-0.29440126,0.21411389,0.28749445,-0.123196214,-0.03470848,0.21604355,-0.127421,-0.1099055,-0.42723277,-0.46437374,0.35970676,-0.4222058,0.081039704,-0.6246279,0.76110166,-0.052242015,-0.8040386,0.3608857,-0.44112325,0.25100923,-0.26100838,0.5804682,0.7838256,0.5289568,0.16006118,0.7814382,-0.19578552,-0.10541576,-0.17828172,0.0746331,-0.029197784,-0.18094623,-0.14088254,-0.45888937,0.033026744,-0.05166157,0.10445408,-0.07792479,0.65961236,-0.5080547,-0.28209195,0.15705802,0.8566614,-0.27762204,0.09390909,0.8751672,1.0675809,1.1475803,0.21543597,1.2174504,0.27763948,-0.053536255,0.039615434,-0.061414137,-0.581865,0.23156185,0.56184906,0.567563,0.07266665,-0.18219042,-0.096881054,0.5264325,-0.42636338,-0.02708154,-0.23709273,0.2638549,-0.12714858,-0.060163397,-0.46093348,-0.15307307,0.25114962,0.00045285,0.09278408,0.32268393,-0.30651045,0.55774164,0.07202123,1.1433028,-0.22049291,0.07888753,0.07516415,0.5142129,0.12327087,-0.36031243,0.30883786,0.003801922,0.49529088,-0.22029994,-0.60361934,0.25335908,-0.1486802,-0.49228707,-0.18540448,-0.37216893,0.031054607,-0.2733952,-0.302866,-0.34210935,-0.0070447563,-0.43171147,0.3421626,-2.4059927,-0.20062758,-0.27781546,0.22237442,-0.24749857,-0.4080135,0.06464601,-0.5181116,0.7695899,0.32112023,0.42066696,-0.5746748,0.401436,0.43990085,-0.5311814,0.06242995,-0.9585615,-0.017738923,-0.15396483,0.5024813,0.20035698,-0.11449412,-0.04584161,0.095712036,0.49369454,0.04606965,0.24209802,0.48115852,0.29249644,-0.2345789,0.49140847,-0.10059538,0.5198047,-0.5396531,-0.20153351,0.4155203,-0.48476708,-0.037207544,-0.011407122,0.17717534,0.49799815,-0.76854247,-0.6026917,-0.95660686,-0.6355794,1.2755253,-0.19911897,-0.713898,0.19203459,-0.31304368,-0.21579635,-0.039111298,0.8007396,-0.24967742,-0.07714621,-0.82416373,-0.102191366,-0.24647613,0.48821056,-0.19186532,-0.243939,-0.53302425,0.67957526,-0.15439211,0.4261547,0.3915458,0.20645559,-0.48541823,-0.4483726,0.009274651,1.1404324,0.44396126,0.091556646,-0.075497456,-0.0549739,-0.3997544,0.062437892,0.06948945,0.8900835,0.49042475,-0.098215304,0.031758573,0.46930978,-0.22002274,0.10034388,-0.14520462,-0.46720275,-0.46349716,0.12496028,0.8182071,0.4077581,0.27420732,0.3043695,-0.1237697,0.2748854,-0.4950408,-0.44654,0.4441085,0.80604535,-0.18462501,-0.37306273,0.78897,0.5660727,-0.20606871,0.44824076,-0.76727515,-0.45909628,0.33591452,-0.09581888,-0.5087339,-0.021952609,-0.49817804,0.37164256,-0.7494848,0.32285967,-0.6971404,-0.47396716,-0.65165085,-0.15278386,-2.8108892,0.24202526,-0.017478263,-0.1872126,-0.21032894,-0.3507739,0.5707622,-0.2788696,-0.47436634,0.06650955,0.10056751,0.762412,0.029755838,-0.14239551,-0.525154,-0.1738307,-0.32060686,0.21677661,0.039627474,0.30150226,-0.10826272,-0.4006963,0.12462599,-0.20354255,-0.37002078,-0.05741905,-0.7366349,-0.47229087,-0.2208277,-0.51954967,-0.3089878,0.5555729,-0.2236983,0.120320566,-0.3223684,0.011218789,0.011746119,0.110669285,-0.05183951,0.17854132,-0.01613576,-0.24706401,-0.12836194,-0.37944794,0.13502938,0.09262713,0.039588545,0.34330082,-0.25507304,0.21070777,0.39630786,0.5353752,0.0023119797,0.9779973,0.47571316,0.03732747,0.42283964,0.054712985,-0.20864837,-0.4164723,-0.06721238,0.08029672,-0.6311066,-0.2449547,0.075705,-0.24136691,-0.79924613,0.5222728,0.16032928,0.21351852,0.11029162,0.35108885,0.37023854,-0.09412918,0.10132081,-0.044466753,-0.2919295,-0.41388312,-0.48397338,-0.8427646,-0.413169,0.0038891237,1.1696924,0.084175594,0.06423435,0.11948592,-0.20612456,0.12306065,0.3249127,0.00703909,0.18722849,0.1546288,-0.051689804,-0.6282209,0.3778306,-0.021618938,0.1117843,-0.39429688,0.5366102,0.88098985,-0.5339512,0.32423583,0.32469192,-0.0054414924,-0.6578214,-0.61635345,-0.038032692,0.048541177,-0.1129087,0.4638025,0.3807143,-1.0029829,0.5656192,0.1707484,0.20321614,-0.8343957,0.5489836,-0.14107578,-0.084081866,-0.04678149,0.35650015,0.097752266,-0.049288,-0.30537978,0.2584095,-0.3898277,0.21942027,0.11078497,0.02740707,0.30674592,-0.33348575,-0.07726588,-0.84441644,-0.004884007,-0.91122514,-0.37375522,0.3393847,-0.17357814,0.12926538,0.39086106,-0.037878793,0.50664973,-0.020956332,0.24748783,-0.026168471,-0.33649576,0.49267206,0.6485425,0.24074781,-0.35797492,0.6639842,0.20871894,0.13953902,-0.48287198,0.19133,0.41811815,0.16066085,0.5860246,-0.3613807,-0.21084501,0.4524438,0.87852836,0.19253182,0.29636037,-0.10550698,-0.24049236,0.04016615,0.015923113,0.29194668,-0.14645462,-0.49712315,-0.19250703,-0.17425478,0.14762898,0.46590567,-0.08992106,0.47926092,-0.03054894,-0.30870816,-0.0026427854,0.07401014,-0.071539424,-1.4671243,0.33764258,0.1072804,0.8746206,0.6097567,0.027878946,-0.27120033,0.7470886,-0.28539005,0.08761609,0.32134447,0.062382013,-0.11372057,0.499463,-0.7077353,0.42299366,-0.11026821,0.13838102,0.010696232,-0.10612776,0.43812618,0.73278505,-0.06894968,0.28990427,-0.0918409,-0.31368393,0.3263812,-0.27439275,0.20419447,-0.48653507,-0.34251985,0.5848801,0.3827301,0.53861815,-0.31167236,-0.018645465,0.16942413,-0.006033717,0.024763584,0.009086999,-0.08530074,-0.434137,-0.5425022,-0.14140652,0.38674465,0.12115768,0.114131,0.26177958,-0.41220784,0.12080413,-0.040063065,0.1555496,-0.06945916,-0.46412468,-0.04805985,-0.25921395,-0.060910255,0.3266177,-0.41181687,0.094216645,0.26945034,0.086945355,-0.24644543,-0.098359756,0.1360947,0.642869,-0.027448693,-0.11833572,-0.37517938,-0.22420923,0.021817235,-0.42824554,-0.09583828,-0.24442632,0.048224498,-0.93357897,0.35482517,-0.034540534,-0.32733423,0.45717597,0.019946061,-0.08047189,0.53966355,-0.11350111,-0.2087541,0.26369336,-0.11574229,-0.11846372,-0.10061406,-0.06630673,0.4249387,0.02512387,0.4153442,-0.0685341,0.005252523,0.047695994,0.43048063,0.11457813,0.14691837,0.4632611,0.08754036,-0.38028374,0.2910172,0.026563196,0.6612327,-0.10911108,0.14452493,0.017178258,-0.43493965,-0.35518515,0.25893193,-0.12266179,0.42825437,-0.029023424,-0.3971977,0.62607294,-0.079994746,1.0047044,-0.09834796,-0.5120614,-0.11309449,0.47760323,-0.09197063,0.0077081122,-0.20356573,0.8352912,0.4450176,-0.2602394,-0.019410163,-0.31970012,-0.12459939,0.13937767,-0.09156642,-0.08563196,0.02211518,-0.67602944,-0.10256188,0.1733268,0.4109392,0.109754644,0.08155907,0.014148772,0.17566995,0.019507283,0.2946953,-0.4821402,0.23162653,0.19569276,0.2907066,-0.08262814,0.20077701,-0.34889284,0.05061611,-0.8315489,0.35121384,-0.3836716,0.02186045,-0.13495465,-0.27920517,0.37032115,-0.018165201,0.2508413,-0.29908746,-0.48086002,-0.12441205,0.5742522,0.097552665,0.36510062,0.73483723,-0.1991446,0.11095673,0.29330212,0.5784584,1.3089755,-0.18077254,-0.036218744,0.16538826,-0.506258,-0.9388686,0.22397451,-0.34840402,0.10289707,0.27196276,-0.41731402,-0.18095873,0.1466303,0.25126344,0.102050096,0.17441408,-0.57469887,-0.31465352,0.13259526,-0.25437936,-0.27296272,-0.3447698,0.1613049,0.29880795,-0.3623948,-0.5462566,-0.085403115,0.39581683,-0.32583776,-0.7270228,-0.040084135,-0.38550696,0.19023608,0.1078647,-0.44640318,-0.16819195,-0.24003987,-0.47510388,0.012228287,0.123005986,-0.27532926,-0.04439598,-0.28598905,-0.22957306,0.7229627,-0.07985507,0.057399243,-0.39253202,-0.64016896,-0.63615566,-0.31622735,0.26263228,0.31219187,0.03532359,-0.51580936,-0.05053589,-0.42646673,-0.05052198,0.13426717,-0.224804,0.53300685,0.24032515,0.5712877,0.054210823,-0.70303345,0.39297903,0.14023417,-0.05220716,-0.41068873,0.4687886,0.02193451,0.912869,0.085759364,0.06058469,-0.037698466,-0.67027885,0.3005354,-0.24657416,-0.29249904,-0.41072357,0.13492332,161 +803,0.374939,-0.016761223,-0.6923046,-0.14943753,-0.25818634,0.16213422,-0.4391514,0.21304804,0.17406172,-0.31922707,0.27548638,-0.5008337,0.11590147,0.37292865,-0.030446475,-0.74213225,-0.018666754,0.16942084,-0.3948854,0.4407684,-0.47979107,0.3381083,0.30613694,0.26134983,-0.24752907,0.25849923,0.35835803,-0.242132,0.096452855,-0.2832768,-0.24668203,-0.22198904,-0.6446367,0.09115925,-0.02679987,-0.45181766,0.34909463,-0.31341478,-0.22156596,-0.58912444,0.19139187,-0.7674885,0.5947282,0.11413578,-0.22121684,0.33500943,0.15315415,0.21507353,-0.21687944,0.29523644,0.28242525,-0.45140752,-0.16948564,-0.3515061,-0.35068345,-0.72836447,-0.68268126,-0.26966023,-0.6495426,-0.257667,-0.3057978,0.15719031,-0.39427516,0.09772802,-0.0995031,-0.024778595,-0.46885207,-0.14934164,0.097363256,-0.28576863,0.4369513,-0.4030427,-0.015138726,-0.23072402,-0.031169757,-0.08491335,0.008197278,0.112428874,0.16360885,0.62067014,-0.13842691,-0.17542414,-0.39665928,-0.022989234,-0.06628267,0.56907344,-0.16378397,-0.021876087,-0.16834716,-0.14261241,0.24489492,0.4615921,0.018833226,-0.111365415,-0.08601317,-0.28711268,-0.5120071,0.12659658,0.5004644,-0.510102,-0.063243136,0.40589568,0.39038023,-0.00934346,-0.13685887,0.24614471,0.033890206,-0.38777637,-0.1541629,0.03689282,-0.16588302,0.5962,-0.1792164,0.3656591,0.7192169,-0.116566814,-0.038800195,-0.13242306,-0.18038447,0.07079548,-0.034292087,-0.115679085,0.455798,-0.6599925,-0.036768865,-0.43533036,0.817136,0.09187316,-0.9098983,0.31353346,-0.5778041,0.089089096,-0.16163634,0.7528968,0.5057756,0.67885035,0.10078132,0.813545,-0.6446288,0.26083332,-0.18295585,-0.33298615,0.50816685,0.0430841,0.20257561,-0.48018393,-0.022936925,0.07407871,-0.23934318,0.067561865,0.74109936,-0.35866857,-0.059262257,0.2565774,0.77623135,-0.3853331,-0.0076064668,0.2319951,1.2341049,0.82318497,0.013199091,0.9883682,0.26205945,-0.30487582,-0.11399982,-0.030737743,-0.9154622,0.07070095,0.21810572,0.60095614,0.35355243,0.15824609,-0.06894504,0.29244876,-0.26955473,-0.038573865,0.117408775,0.071516685,-0.18921977,-0.20829535,-0.26131693,-0.20125592,0.058740813,0.016378794,0.06899623,0.44388512,-0.090558976,0.6368368,0.18596707,1.8427516,0.10437382,0.12788789,0.1697734,0.39629063,0.31371266,0.16765194,-0.13853142,0.3522936,0.25018445,0.22864206,-0.4932909,0.1354081,-0.05864847,-0.57673454,-0.2388921,-0.20283194,-0.05948439,-0.2950457,-0.29737535,-0.2826074,0.079108216,-0.39172944,0.357465,-2.4663448,0.011289115,7.8077115e-05,0.30539894,-0.17319627,-0.1215866,-0.010775353,-0.43088794,0.53793347,0.55307966,0.35963377,-0.5970458,0.42653403,0.70234376,-0.31220564,-0.058972817,-0.6791232,-0.21850501,-0.24626549,0.32134175,0.040481914,-0.31436267,-0.09760809,0.2728452,0.5523538,0.017642215,0.06577044,0.25425926,0.50425845,-0.041127335,0.6004204,-0.027261278,0.46593794,-0.2271524,-0.16618232,0.27834412,-0.37837806,0.1008948,-0.29898092,0.10298125,0.300854,-0.41855943,-0.9423682,-0.3375082,-0.03417551,0.9835221,-0.423838,-0.43289062,0.2593733,0.14952874,-0.09319985,0.0066412836,0.4444236,-0.08130917,0.050109264,-0.64350575,0.03224155,-0.10140253,0.4525713,0.22583087,0.03709024,-0.5378732,0.73340726,-0.10665226,0.7308504,0.47152686,0.04929586,-0.10709909,-0.48225307,0.112726055,0.79268795,0.21244043,0.22652598,-0.4048414,-0.044396788,-0.22839563,-0.1264757,-0.02157014,0.231291,1.0014293,-0.10893717,0.16915864,0.3843267,-0.23964025,-0.104857676,-0.11876614,-0.5370725,0.11043354,-0.07605662,0.56596416,0.7841985,-0.032073434,0.29233152,0.069833435,0.6191023,-0.26756993,-0.4569459,0.5866325,0.5869732,-0.123597465,-0.09457898,0.5648165,0.5314812,-0.30977857,0.5834338,-0.7970722,-0.56340176,0.510422,-0.04749101,-0.6271079,0.40964076,-0.2438708,0.020951495,-1.1003174,0.24646206,-0.2847758,-0.32964543,-0.57853836,-0.13243952,-3.7010238,0.16885096,-0.4072524,-0.15983856,-0.039527643,0.036379855,0.3302301,-0.6181764,-0.53552425,0.07472999,0.24331224,0.5295384,-0.104437746,0.15583898,-0.47465435,-0.17665143,-0.30885473,0.43489566,0.12504171,-0.043282658,0.07323208,-0.4777739,-0.017816754,-0.32079458,-0.22710097,-0.05458401,-0.3719231,-0.18352681,-0.16871691,-0.5514303,-0.42458108,0.6656954,-0.18332128,-0.037752505,-0.31669497,-0.022530504,0.0087258415,0.14245957,0.069052346,-0.041513782,-0.16790001,-0.116358906,-0.18184143,-0.37508062,0.10118646,0.06779092,0.28870657,0.2962517,-0.14829473,-0.17334403,0.57274747,0.33719411,-0.0027281374,0.8424072,0.3736215,-0.14516926,0.36412296,-0.40747097,-0.10716722,-0.58056045,-0.33814406,-0.25449222,-0.433252,-0.49047437,0.025881598,-0.37610164,-0.84868985,0.59799945,0.12976323,-0.05264592,-0.008821875,0.49304017,0.34052667,-0.23119886,0.0110879885,-0.054638013,-0.25504425,-0.42210373,-0.10769701,-0.84139705,-0.44021764,0.23884167,1.0407585,-0.19848466,-0.040435597,0.1388782,-0.022887858,-0.018819744,0.13656358,0.26497743,0.44471964,0.34111544,0.11451975,-0.6656197,0.6120527,-0.30797204,-0.044920295,-0.78652334,0.03522872,0.60582745,-0.9190848,0.12871717,0.548498,0.10108936,0.17953753,-0.710119,-0.06319066,0.101179294,-0.25649717,0.3466381,0.036121674,-0.9250147,0.561986,0.22663595,-0.28829798,-0.71241504,0.4636921,-0.041943427,-0.6436241,0.062775694,0.38646343,0.03256382,0.25912672,-0.4183394,0.1717607,-0.59353817,0.21000046,0.21486063,-0.21333236,0.5526447,-0.085535206,-0.122979224,-0.8116134,0.08347925,-0.42164993,-0.31399104,0.36224058,-0.05720502,0.031318773,0.27172723,0.14368504,0.470966,-0.4151523,0.06432647,-0.20652544,-0.35442838,0.561922,0.44056642,0.22453338,-0.40260625,0.77166957,-0.12195062,-0.20228136,-0.25051275,-0.16270769,0.45582342,0.00024443617,0.37242398,0.09691883,-0.35217357,0.27069744,0.8162896,0.16565259,0.3453411,0.2795324,0.0024551302,0.59726024,0.25926116,-0.20275791,-0.011614491,-0.43700185,-0.060693603,-0.16309504,0.17934649,0.51563144,0.08025185,0.63882977,-0.26508942,-0.008015096,0.07359674,0.28374708,-0.102959774,-0.6150975,0.18667047,0.23452455,0.4574864,0.7819276,0.08172113,0.10625347,0.64032084,-0.40139833,0.072439745,0.35735247,0.17950816,-0.31975904,0.7261676,-0.6821807,0.25181758,-0.15764882,0.012029569,0.23980393,0.050758492,0.5107225,1.0212258,-0.07634691,0.1652354,-0.06886748,-0.20832193,0.06105331,-0.27543768,-0.06311839,-0.26471364,-0.26183736,0.62636465,0.11082231,0.28734446,-0.11965492,-0.08505761,0.124984674,-0.049516603,0.4686626,0.08409522,0.08382207,-0.040603925,-0.36224505,-0.26236406,0.74208933,0.0393837,0.0067790947,-0.034283686,-0.21901977,0.46210122,-0.15318477,-0.15988488,-0.06908382,-0.54899687,0.17019685,-0.3249215,-0.47093463,0.7475498,0.03196909,0.29456916,0.108147375,0.1042628,-0.20890053,0.16277483,0.25695378,0.55097437,0.14852422,-0.3075677,-0.23125292,-0.14715305,0.21372949,-0.34799805,-0.037627667,-0.19905548,0.09937823,-0.6089255,0.40173277,-0.34328473,-0.39182162,0.07163031,-0.36317834,-0.06273054,0.5003117,-0.094927154,-0.10923645,0.18037264,0.016697414,-0.3776423,-0.29897,-0.3679035,0.15961237,-0.36126912,-0.17611589,-0.11135807,0.00081656873,0.15861757,0.53169256,0.025877101,0.15333977,0.25185928,0.19117993,-0.45720294,0.08695218,-0.12719283,0.40712595,-0.18792017,-0.0011404852,-0.31890026,-0.5271519,-0.21497838,-0.044583935,-0.21468426,0.29473397,0.15417348,-0.37384376,1.0843011,0.17960405,0.83635044,-0.09229412,-0.32587662,0.13292177,0.62966067,0.1508742,0.03896323,-0.42669377,1.0699822,0.7651417,-0.24482305,-0.36756912,-0.24738944,-0.31049547,0.22688113,-0.37497392,-0.22751819,-0.024725223,-0.82814914,-0.20885213,0.38071048,0.16899602,0.21044827,-0.16695367,0.37809762,0.20586443,0.2634505,0.21368808,-0.517834,-0.28418455,0.36681283,0.04285973,0.029590806,0.10231926,-0.26039234,0.34164855,-0.5121457,0.0058404603,-0.58417696,-0.049025018,0.17996228,-0.26076856,0.16590069,-0.066844344,0.13637236,-0.20101441,-0.3620343,0.050869618,0.38495374,0.4747635,0.59367543,0.840103,-0.2173521,0.12919632,-0.10799531,0.6035299,1.3869458,-0.37148944,-0.1026122,0.38143435,-0.35072926,-0.8286915,0.15696792,-0.32809153,0.08722896,0.024231195,-0.47587192,-0.49749604,0.23676209,0.085596085,-0.28649655,0.20857589,-0.4220678,-0.23586607,0.23944654,-0.33557138,-0.3589202,-0.24827635,0.2781013,0.87959975,-0.17947517,-0.18506582,0.089774214,0.2715069,-0.36710772,-0.7350733,-0.04773724,-0.43419623,0.39974698,0.42262682,-0.40678462,0.3712969,0.2419165,-0.58989054,0.10807005,0.42653427,-0.22066693,0.042502075,-0.6153973,0.13202554,0.8129867,-0.10567812,-0.36218724,-0.519144,-0.6821506,-0.89668185,-0.41494313,0.5210037,0.05137941,-0.014794994,-0.5051565,0.00089714926,-0.17449592,-0.06197171,-0.030586096,-0.4713224,0.38740036,0.067704655,0.5336487,-0.19500093,-0.90260047,0.20904994,0.06656567,-0.38899526,-0.6496441,0.5051355,-0.3512341,0.9155118,0.15804046,-0.134721,0.5368494,-0.6431539,0.39586392,-0.3970605,-0.23422253,-0.58742684,-0.061871976,173 +804,0.46526024,-0.10481372,-0.71177715,-0.046052556,-0.26146457,0.029456714,-0.2735314,0.44125322,0.21798266,-0.49189302,-0.25958654,-0.024236897,0.11190814,0.37681136,0.0036306356,-0.8114589,0.15892231,0.3791504,-0.8043983,0.7564063,-0.37908974,0.22199988,0.020912835,0.39447775,0.06344831,0.20031059,-0.03174932,-0.06930982,0.14516364,-0.17971706,-0.16759805,0.23538756,-0.7618173,0.22217107,-0.09826886,-0.5976341,-0.28227186,-0.30847517,-0.32631043,-0.9057136,0.21899374,-0.7648395,0.52908295,0.0045689493,-0.40218243,-0.15207994,-0.0394627,0.5456527,-0.031703208,-0.10335964,0.030483821,-0.16490665,-0.30098835,-0.24103896,-0.07585975,-0.34270218,-0.57129,-0.06174771,-0.5284092,-0.0572356,-0.22106583,0.20680487,-0.36712468,0.095334016,-0.19986981,0.66548413,-0.21097188,0.29613447,0.22770423,-0.090204895,0.30301425,-0.39237666,-0.07276901,-0.11420349,0.42748213,-0.22349228,-0.5438439,0.115287624,0.2660375,0.5121419,-0.04128426,-0.20115697,-0.14508495,-0.031697918,0.12884033,0.4411415,-0.029440517,-0.67626554,-0.18543983,0.11465288,0.16022146,0.13185282,0.09813007,-0.35549733,-0.09946587,0.008332382,-0.19703937,0.63197273,0.40549028,-0.2882612,-0.22466843,0.28594056,0.74962616,0.15790729,-0.14202292,0.021537656,0.090378255,-0.58440465,-0.16116515,0.026665194,-0.231396,0.60596204,-0.24042617,0.30862185,0.4942919,-0.014263536,-0.41434002,0.26746723,-0.069252655,-0.0057716616,-0.13623068,-0.24550712,0.37074265,-0.65571946,0.22728945,-0.3173647,0.75935644,0.28410688,-0.7229295,0.415094,-0.7480752,0.177157,-0.04354235,0.59629774,0.850063,0.42014384,0.17424488,0.63775235,-0.25843358,0.1050364,-0.09268608,-0.41752017,-0.005612632,-0.13118646,-0.0478871,-0.45765767,-0.027205685,-0.17983426,-0.19313848,0.042180512,0.36789897,-0.6819258,-0.2905454,-0.006425157,0.6296256,-0.23552148,-0.30274352,0.8670008,1.0161601,1.0549711,0.13276118,1.1206251,0.20300563,-0.2815005,0.10316757,-0.11989081,-0.7302358,0.35354447,0.16291988,-0.28472412,0.5108763,-0.050838154,-0.016598016,0.5099559,-0.2940702,-0.052216858,-0.07519085,0.28217116,0.07517723,-0.117410906,-0.31612512,-0.26256922,-0.08567048,0.03321133,0.21291459,0.35443756,-0.2011979,0.57743853,0.23582228,1.4268316,-0.00417191,-0.04427595,0.009366319,0.2470376,0.27106252,-0.3352224,-0.28603527,0.19809544,0.2949091,0.18408765,-0.69296473,0.14943841,-0.28363314,-0.2806538,-0.13173817,-0.26227084,0.010159105,-0.22511892,-0.36175823,-0.16967453,-0.22783864,-0.22824521,0.47373033,-2.4469976,-0.33810285,-0.16310911,0.3899761,-0.24635749,-0.41020086,-0.100257985,-0.529624,0.18933542,0.14900838,0.51453507,-0.7719726,0.5514547,0.4003164,-0.6815138,-0.027844643,-0.6735181,-0.09531832,0.072405614,0.200563,-0.08808436,-0.11266915,0.04120817,0.08794654,0.40217158,-0.18193795,0.0042361417,0.40848264,0.44057858,0.04157943,0.53273517,-0.09463247,0.60281664,-0.35871628,-0.13921948,0.37924543,-0.38826004,0.21859825,-0.023641964,0.015497242,0.50072575,-0.4470855,-0.887667,-0.7713242,-0.2698163,1.1419467,-0.31044662,-0.39670172,0.07823109,-0.42175627,-0.21856578,-0.11625614,0.6067843,-0.02189981,-0.12001046,-0.797142,-0.03895506,0.007006028,0.3982123,-0.03196756,-0.005963554,-0.4456607,0.53771836,-0.032951403,0.48376015,0.33041573,0.16162999,-0.36547676,-0.6202436,0.11880747,1.0151826,0.16129836,0.16239238,-0.36621404,-0.26612154,-0.5297501,0.24483971,0.05112366,0.88314945,0.6573319,-0.21862541,0.13044801,0.44008422,-0.020774746,0.09260581,-0.18440783,-0.2745746,-0.17736156,-0.0059509575,0.69178295,0.7319427,-0.21854465,0.5244429,0.024147466,0.23781954,-0.21050338,-0.4493651,0.5013465,1.3078898,-0.29339576,-0.49277148,0.4987056,0.27341595,-0.2913215,0.47288355,-0.5429666,-0.31946206,0.4793038,-0.08484754,-0.32058707,0.2308994,-0.26426995,0.38131145,-0.97504765,0.2821213,-0.6355748,-0.7018935,-0.59594905,0.12681764,-3.1267605,0.40948305,-0.07536234,-0.06598147,-0.26243368,-0.18465354,0.15603687,-0.45371556,-0.7844908,0.194139,0.118302524,0.9252983,-0.19645691,0.13969937,-0.2585276,-0.46398512,-0.26683053,0.33784142,0.40555882,0.26999742,0.010855014,-0.42420825,-0.19040783,-0.18024635,-0.2321822,0.09361428,-0.721672,-0.49347767,-0.057893794,-0.7187957,-0.26625526,0.6843152,-0.4177285,0.026235553,-0.18989389,-0.009900041,0.03271465,0.3299698,0.016481047,0.031563506,0.22399385,-0.089688994,-0.03714302,-0.280926,0.10388622,-0.0101104565,0.38275537,0.06272728,-0.09247569,0.50981784,0.63661975,0.9249816,0.17615835,0.93382406,0.5263319,0.001859804,0.24602258,-0.28775814,-0.42257372,-0.44458926,-0.0054316274,0.00860472,-0.37907466,-0.2934245,0.008467868,-0.26071557,-0.8620227,0.5088406,-0.050957758,0.040512115,0.089143336,0.51936144,0.6801889,-0.2329963,-0.0037977844,-0.13483706,-0.21078604,-0.50593585,-0.27430412,-0.55670685,-0.46480462,0.11377982,1.034759,-0.2623699,0.18383217,-0.0464434,-0.20318872,0.021571085,0.4957702,0.037856977,0.14544447,0.6750049,-0.27336404,-0.62466556,0.296602,-0.20659073,-0.22914977,-0.578095,0.3946974,0.62034196,-0.72839546,0.4858879,0.22471404,-0.07923932,-0.21455626,-0.47177896,-0.08159083,0.17523086,-0.24680783,0.26440942,0.36935103,-0.74976844,0.26711494,0.3558009,-0.09695309,-0.69919974,0.6185649,0.08584396,-0.33353844,-0.23707883,0.46354762,0.03406107,0.041039452,-0.26011726,0.08358052,-0.34153327,0.08861118,0.115855336,-0.21821487,-0.12472149,-0.077465184,-0.042151403,-0.8968468,0.21918112,-0.5862486,-0.25297946,0.31917554,0.09015735,0.3408803,0.1956956,0.21164508,0.32610175,-0.22035588,-0.014002991,-0.33328828,-0.3814318,0.29421586,0.5942799,0.2985105,-0.47245297,0.65467864,0.20896192,0.11202342,-0.010172267,-0.012199382,0.43077445,-0.110305704,0.66069,0.25266197,-0.25503492,0.06553282,0.659825,0.3147097,0.47484946,-0.04552229,0.21758161,0.14340676,0.12153002,0.35429308,-0.044232886,-0.4899923,0.038020123,-0.21707623,0.118040465,0.69867283,0.07442672,0.23699784,-0.059510496,-0.52250016,-0.06762403,0.17063372,-0.084407784,-1.5502354,0.52828234,0.41226813,0.82570815,0.45818806,0.113941275,0.08139986,0.58991444,-0.19905277,0.29546326,0.4111463,-0.03417312,-0.2617655,0.57131726,-0.86704665,0.6092772,0.08344459,0.011217372,0.049509782,-0.31190315,0.26678023,1.0392841,-0.29207304,0.0786651,-0.03797512,-0.21927553,0.10400933,-0.4633427,-0.0001634856,-0.69708616,-0.31700584,0.80507225,0.55828375,0.38741872,-0.4467866,0.056146603,0.19164948,-0.089752935,0.23032613,-0.063810594,0.110805415,-0.07536635,-0.5047119,-0.07022546,0.56013924,-0.19028479,0.12899579,0.16641134,-0.10801277,0.39635512,0.054026794,-0.11865141,-0.20998168,-0.7489888,0.012323543,-0.4138225,-0.26024136,0.56370866,-0.20886476,0.15955047,0.23774637,0.17272943,-0.41772154,0.5456336,-0.011795759,0.60491025,0.27335986,-0.23282313,-0.18471797,0.24658705,0.14593394,-0.2557363,-0.12605439,-0.3529676,0.011375765,-0.5896317,0.38993326,0.14722136,-0.3976719,-0.0066906177,0.030737877,0.087294884,0.43167904,-0.19630384,-0.20396905,0.08319486,-0.086887725,-0.22023277,-0.2149119,-0.103929244,0.22128558,0.28681722,-0.17685252,-0.1125665,-0.08734276,-0.16655317,0.3837599,-0.0854638,0.42235613,0.40273538,0.21638398,-0.21946728,-0.10457554,0.2499965,0.47204876,0.073462084,-0.24633378,-0.26550332,-0.29222143,-0.44886145,0.24654841,-0.093488194,0.52037907,0.017089054,-0.30261973,0.6536096,0.013234821,1.2129812,-0.12028509,-0.35240087,0.08680582,0.47092423,-0.00392036,-0.13295819,-0.37923825,0.96069884,0.25317892,-0.13035204,-0.10660389,-0.32883728,-0.07151029,-0.0092332065,-0.26701722,-0.1609063,0.12399858,-0.45565256,-0.12229558,0.18946165,0.31189904,0.26189607,-0.14387663,0.051144768,0.3631954,-0.10615774,0.17686212,-0.35465422,0.0045441785,0.3106254,0.29336682,-0.053047825,0.15947758,-0.38977924,0.35523042,-0.5780879,0.09207804,-0.40534282,0.19952528,-0.14657404,-0.50260776,0.36599696,0.24887562,0.2835373,-0.34401277,-0.29280055,-0.4005561,0.51680505,0.19554596,0.1838869,0.7137776,-0.15628235,-0.0047317743,0.16731162,0.4438084,0.77170676,-0.2530653,-0.22770219,0.27234823,-0.43002912,-0.5787859,0.33300653,-0.4181926,0.30896792,0.1624891,-0.18505462,-0.64667326,0.25742546,0.07733663,0.20745201,0.096677266,-0.86859304,-0.1895351,0.1396811,-0.4535904,-0.08440897,-0.39831933,0.17083894,0.4974769,-0.11379719,-0.22424895,0.08438128,0.13094518,-0.18302162,-0.5872584,-0.10920618,-0.53717685,0.18470268,0.057401,-0.4344945,-0.19404872,0.24886443,-0.5608223,0.17456193,0.23162986,-0.36480844,0.14222644,-0.2972339,-0.19370157,1.0110329,-0.38720348,0.12043377,-0.29626903,-0.5542506,-0.6433751,-0.2037164,0.3180947,0.08069525,-0.03929959,-0.8662403,-0.12224261,-0.12700212,-0.3255043,-0.04336043,-0.39634335,0.41368282,0.18189304,0.40418682,0.05094965,-1.0464166,0.2237951,0.12107518,-0.21254426,-0.6102149,0.28332207,-0.07143802,0.935198,0.069349065,0.2823988,0.44594812,-0.6480705,-0.08620707,-0.15031956,0.15762644,-0.685543,-0.055381328,179 +805,0.36307552,-0.48188505,-0.55787677,-0.05006011,-0.30998197,0.061343923,-0.22976987,0.42005745,0.36517325,-0.24900572,-0.29637745,-0.0024656851,0.09027579,0.43227604,-0.085056335,-0.47707224,-0.1615852,0.19340503,-0.90800875,0.5247078,-0.44116846,0.24018593,0.012777676,0.5453896,0.21362989,0.36948976,-0.0694877,0.00033040842,-0.15562868,0.0101079,-0.16808724,0.21329588,-0.28819564,0.15311605,-0.34072772,-0.36372194,-0.07157229,-0.55409044,-0.21894574,-0.7719647,0.24117081,-0.896365,0.41281608,-0.08587208,-0.17987792,-0.10990999,0.13562578,0.3263569,-0.43941274,0.012749898,0.14784779,-0.25885823,-0.124304034,-0.42996237,-0.108821005,-0.17269869,-0.43880963,0.014467905,-0.61379045,-0.20983405,0.111945994,0.1479901,-0.2507194,0.077390805,-0.1504556,0.3909777,-0.34698835,0.037473034,0.25702497,-0.22314803,0.118887536,-0.5427708,-0.10048329,-0.13896897,0.6621554,0.010564745,-0.31143963,0.19202852,0.019258827,0.34299496,0.12906967,-0.033075258,-0.39020595,-0.045917902,0.010708089,0.42244852,-0.036722675,-0.3000025,-0.22449452,0.00443319,0.3361118,0.3285865,0.18316269,0.0052715354,-0.10157832,-0.39843807,-0.049920764,0.39896145,0.52408284,-0.118168555,-0.2208517,0.26433957,0.70010585,0.22616434,-0.22287494,-0.13815863,0.15449262,-0.46065864,-0.12115151,0.16480136,0.118129365,0.502572,-0.15498655,0.36654124,0.68048,-0.0831125,-0.07394511,0.3166686,0.26299548,-0.23046567,-0.11683202,-0.2587407,0.20184632,-0.44850495,-0.106601276,-0.26609704,0.6334899,0.11165205,-0.6666587,0.30350313,-0.54466325,0.14829664,0.07368386,0.5633994,0.6583462,0.66592693,0.30151984,0.5801154,-0.1032238,0.27351937,-0.17156929,-0.20609212,-0.048543725,-0.2982944,0.038293574,-0.48199368,0.047742967,-0.23460786,-0.117695265,0.13828285,0.23626135,-0.40039766,-0.16747682,0.23868118,0.7687004,-0.25842905,0.008146058,0.9844044,1.0514184,0.93852407,-0.023770193,1.1212845,0.22548981,-0.27619907,-0.0099558085,-0.29624236,-0.75835544,0.2830234,0.19945087,0.010880251,0.31496838,-0.20954658,-0.122106604,0.36383566,-0.4275484,0.02547366,-0.021073157,0.07298247,-0.055271637,0.12819585,-0.549155,-0.4302788,-0.090252094,-0.041002158,0.15146005,0.31074923,-0.21116225,0.8087384,-0.11532954,1.2002219,0.017400006,0.12900381,0.05530333,0.5311151,0.15170075,-0.38998964,-0.26675072,0.3325608,0.4542651,-0.02450279,-0.652872,0.20829718,-0.35601643,-0.26661798,-0.2299252,-0.43277565,-0.23475103,-0.091332875,-0.39653122,-0.25912288,-0.1386187,-0.26732242,0.32204646,-2.9004104,-0.15970826,-0.06738346,0.2991434,-0.20767812,-0.19075735,-0.09934324,-0.60763264,0.16264264,0.1402138,0.5222369,-0.5766847,0.56318575,0.53431535,-0.55934256,-0.19212551,-0.7352967,-0.09269027,0.04940496,0.3829787,-0.020926228,-0.02644229,-0.11229285,-0.0680452,0.42151037,-0.12094157,0.14534287,0.58391976,0.37158772,0.17264505,0.40070787,0.00973096,0.5826177,-0.6956131,-0.22641182,0.29697433,-0.49724355,0.2978268,-0.09292061,0.1141826,0.7193659,-0.5351178,-0.807828,-0.5645597,0.10910604,1.2236485,-0.2137508,-0.4099582,0.08440582,-0.4567727,-0.24470067,0.008446634,0.6006294,-0.16331235,-0.03741617,-0.6599908,-0.12955785,-0.040245015,0.40591025,-0.033732913,-0.22794072,-0.3156648,0.5174852,0.06691125,0.47836974,0.20297569,0.26673725,-0.38948452,-0.31831047,0.18989289,0.7470445,0.29068872,0.09884571,-0.16745155,-0.27581692,-0.13024104,0.0354398,-0.005564188,0.60969657,0.5741716,-0.057892993,0.3098152,0.39885625,-0.059948664,0.18911104,-0.13613802,-0.15528844,-0.30054712,0.10745553,0.43069968,0.88120484,0.07445953,0.4824929,-0.14945708,0.33836278,-0.16836546,-0.58529884,0.663846,0.3725666,-0.15009928,-0.102232374,0.51875687,0.59382313,-0.4457613,0.4548813,-0.50334835,-0.40176797,0.4888177,-0.21893823,-0.4807122,0.2954333,-0.21483193,0.32941595,-0.92465204,0.28992102,-0.33354023,-0.66916484,-0.61809134,0.095038615,-2.5342076,0.17513423,-0.08588792,-0.2503282,-0.28349096,-0.22439058,0.09424428,-0.64764816,-0.55103654,0.12982725,0.2764674,0.7225626,-0.081302784,0.11590654,-0.2816514,-0.34612927,-0.22393768,0.14246337,0.25504032,0.32963774,-0.21875028,-0.38214707,-0.2178493,-0.09529825,-0.3065385,0.0861362,-0.7039311,-0.39254078,-0.115133174,-0.5640369,-0.22027718,0.5486564,-0.117744885,-0.084312685,-0.29875395,0.10569444,-0.0042643226,0.1642693,0.14180581,0.19334812,0.33305648,-0.19376232,0.16218686,-0.27825853,0.30220526,-0.0710236,0.2995368,0.1939257,-0.047158808,0.261951,0.45184007,0.73552084,-0.18991889,1.0513563,0.290899,-0.09527326,0.3248487,-0.29135728,-0.50842094,-0.3999475,-0.0454606,0.13667957,-0.396722,-0.46056107,0.08684346,-0.3489267,-0.8794953,0.5996347,0.043047786,0.15567292,0.044687778,0.4169536,0.61990213,-0.2382114,-0.008686185,-0.096073575,-0.14076053,-0.41059077,-0.1715674,-0.58577245,-0.45370165,-0.050163638,0.9796079,-0.30613664,0.29302797,0.13641891,-0.3753238,-0.01863969,0.37008473,-0.081905395,0.42045176,0.29661688,-0.05958948,-0.5318213,0.377786,-0.07583474,-0.11013844,-0.35293683,0.13342385,0.7053227,-0.7707443,0.48756632,0.4099989,-0.22717087,-0.27100155,-0.32123992,-0.17888461,-0.19813816,0.07634201,0.30804673,0.35625347,-0.7287156,0.39603305,0.23400605,-0.31018558,-0.78693324,0.18541966,-0.08884447,-0.2907145,-0.09033672,0.3178878,0.026182557,-0.023369124,-0.3262116,0.024720812,-0.14174609,0.2251123,0.1259668,-0.1609508,0.19657348,-0.19145328,-0.21009858,-0.59918106,0.095837474,-0.6996618,-0.0888525,0.58730656,0.06409419,0.05334571,0.09657026,0.040636253,0.29330435,-0.34012607,0.018943598,-0.088837594,-0.30796793,0.038575575,0.4011283,0.4997207,-0.49698368,0.57865506,0.21591474,-0.1570359,0.15291503,0.12971602,0.38966164,0.01869937,0.6059908,0.029804984,-0.2858347,0.3753147,0.717926,0.14933015,0.4903108,0.11505831,-0.048130322,0.20419516,0.011455932,0.29348293,-0.082555614,-0.29557237,0.14280905,-0.25262523,0.15052259,0.3872957,0.21589704,0.4840289,-0.01434346,-0.21435463,-0.015235364,0.21563102,-0.042618882,-1.38646,0.3393103,0.27420118,1.0307516,0.24689646,0.15841256,-0.2580882,0.9674294,-0.3450351,0.06665416,0.411939,0.032304317,-0.47795844,0.74426794,-0.73228794,0.63360745,-0.06135839,-0.10217222,0.16248192,-0.07843161,0.42155644,0.82713705,-0.1781546,0.035001893,0.13568844,-0.2949384,-0.018801322,-0.38849267,-0.041654978,-0.60586166,-0.24920423,0.7087837,0.20927906,0.4065937,-0.16085498,-0.00850017,0.050334517,-0.08498132,0.34652033,-0.028837243,0.15275294,0.010731672,-0.57694453,-0.15717496,0.4401944,0.0071362355,0.29112545,-0.20632668,-0.21202129,0.13085063,-0.19344972,-0.01542341,-0.0814074,-0.5495787,0.14620103,-0.40273514,-0.6135693,0.5520107,-0.077091396,0.13897176,0.32511592,0.029806962,-0.37580732,0.5764942,-0.06276991,0.89902335,0.05408145,-0.1957876,-0.2574958,0.2984257,0.34289542,-0.2769731,0.07118821,-0.41986713,0.08572116,-0.40894738,0.5474251,-0.1107653,-0.48800114,-0.07657053,-0.10982394,0.10443496,0.62868994,0.004277756,-0.12917687,-0.0051299483,-0.10218062,-0.54320043,-0.12149901,-0.3329155,0.23858233,0.5113357,0.08391412,-0.15264829,-0.1453606,0.10855779,0.5482823,-0.056762848,0.5487938,0.28826535,0.047970247,-0.23009323,0.14881647,0.20191844,0.52291673,0.107294224,-0.09317773,-0.56141937,-0.34888116,-0.35206565,0.30912694,-0.10017016,0.22161962,0.052245144,-0.07399897,0.9142604,-0.106045984,1.070146,0.08134045,-0.42290413,0.2546941,0.48258352,-0.05435745,-0.054746762,-0.42929587,1.0507463,0.32766515,-0.20399855,0.045276266,-0.500278,-0.10926113,0.22189343,-0.31693432,-0.18441705,-0.09165716,-0.43847314,-0.21433748,0.2176673,0.20162497,0.37020028,-0.18299842,0.20344682,0.15963899,0.041258875,0.060861606,-0.56532633,-0.20440382,0.36164376,0.19178851,-0.1611663,0.12054652,-0.49521646,0.43016466,-0.6647265,0.17209864,-0.36457762,0.17447768,-0.20726258,-0.61313206,0.19598271,0.14640388,0.322736,-0.5001194,-0.35078827,-0.29287165,0.5127844,0.22618783,0.16966265,0.48855448,-0.32007158,-0.030159488,0.108640075,0.4590701,0.8274744,-0.4201795,-0.060724467,0.31757903,-0.33792236,-0.691133,0.4001089,-0.41276634,0.10398826,0.050305855,-0.29004422,-0.5828685,0.32894167,0.28074488,0.2572836,0.019326182,-0.5256676,0.065086365,0.21250357,-0.27490622,-0.22245,-0.2959074,0.19009246,0.44103646,-0.14359845,-0.3594946,0.07319348,0.25444514,-0.334403,-0.18310094,-0.15931717,-0.27248582,0.166362,0.04153293,-0.35887408,-0.30176368,-0.07896947,-0.47933707,0.120403,0.11880431,-0.36730465,0.059145138,-0.25423846,-0.08296165,0.91152906,-0.3832368,0.10524962,-0.5218565,-0.5026959,-0.86272925,-0.38241026,0.25067452,0.12860058,-0.07597902,-0.61290646,0.1480356,-0.21194269,-0.36493537,0.03421603,-0.48566106,0.49505547,0.16019075,0.24327934,-0.27702728,-0.9620168,0.3485336,0.12959455,-0.3253775,-0.56166685,0.47088757,-0.05278362,0.7286075,-0.0029768895,0.13531174,0.20085007,-0.447194,0.034484338,-0.251161,-0.08235856,-0.592613,-0.089061834,186 +806,0.66361815,0.043847654,-0.6982226,-0.028268794,-0.08655733,0.19402355,-0.16673009,0.5024548,0.29160753,-0.5790163,-0.1801002,-0.17891054,-0.036470275,0.27098343,-0.14709453,-0.6402609,0.3180212,0.2990785,-0.5597796,0.4671965,-0.51725954,0.45469907,-0.16966839,0.4725242,-0.010999362,0.2430085,-0.02874502,0.16307357,-0.2066306,0.060237486,-0.061568778,0.20433705,-0.2675428,-0.118141465,0.07008481,-0.38494816,0.020168785,-0.21450768,-0.30521303,-0.68090653,0.2664643,-0.6709965,0.67995715,0.09245121,-0.33222583,-0.02431511,0.1811043,0.13758646,-0.21594326,0.11369786,-0.020994306,-0.13695823,-0.01872576,-0.2766275,-0.49417496,-0.3900396,-0.5418133,0.11564139,-0.5070978,-0.10607308,-0.23330833,0.17825644,-0.272585,-0.04223032,0.07477999,0.33530974,-0.30580524,0.1438848,0.17101623,-0.32955894,0.18987043,-0.61987346,-0.15206112,-0.0076287254,0.2874556,-0.2684891,-0.35139382,0.125107,0.33895373,0.58699214,-0.15256618,0.15477021,-0.4564086,-0.060029518,0.01083601,0.66788673,-0.2867775,-0.4872413,-0.18064465,-0.024595404,0.2371263,0.15274547,0.33136502,-0.29260394,-0.14046867,-0.22793996,-0.28476658,0.433751,0.50798166,-0.5197334,-0.11182525,0.39640796,0.59382564,0.12855631,-0.19765921,0.27830574,-0.021898627,-0.5518891,-0.26942644,-0.11358603,0.109234445,0.7057001,-0.1014091,0.32517585,0.39342606,-0.23568018,-0.032803398,0.23322688,-0.027359918,0.10336859,-0.29253078,0.070995316,0.109731674,-0.25112185,-0.05538876,-0.12875007,0.4711529,0.060700584,-0.74437875,0.41398355,-0.60660094,0.0582653,0.013448293,0.4521779,0.5727526,0.56541806,0.17287493,0.5687358,-0.41606662,0.07405,-0.14153115,-0.2000072,0.09355568,-0.06024733,-0.14998142,-0.5612791,0.13507268,0.07001691,-0.24087304,0.5474791,0.65264255,-0.49083233,-0.14992741,0.13016264,0.7467637,-0.38385007,-0.2811249,0.6918885,1.0897603,0.8170131,-0.10295924,1.1577847,0.20830555,-0.0043029026,-3.4078956e-05,-0.27244467,-0.76045966,0.29949573,0.21778035,-0.39598045,0.47720647,0.09332093,-0.13016725,0.37679848,-0.22102882,-0.033625662,0.065056846,0.23919438,0.08149562,-0.2719499,-0.38896403,-0.00013074279,-0.07087713,0.011486311,0.25923812,0.21183203,-0.32799017,0.5824825,0.0024354954,1.6030515,0.1305301,0.13334347,-0.06443924,0.48921728,0.36717525,-0.17222834,-0.13350528,0.44755706,-0.03793234,0.025650905,-0.43185782,0.038467154,-0.118097246,-0.54615635,-0.28999388,-0.2059291,-0.13938577,-0.18320058,-0.36262855,-0.23667921,-0.07294063,-0.368109,0.49203315,-2.7863894,-0.27875748,0.023746975,0.5439965,-0.1418935,-0.56845385,-0.22502895,-0.27084026,0.36299333,0.33723333,0.42819285,-0.6158519,0.523793,0.43427798,-0.5023324,-0.19397326,-0.49502757,0.067733295,-0.035706062,0.21948433,0.04775917,-0.025272042,0.16887371,0.1405786,0.45865428,-0.29330692,0.11286157,0.37136093,0.45573464,0.1329262,0.41026166,-0.12122374,0.63401884,-0.27651316,-0.16314629,0.3801051,-0.4879249,0.1020914,0.06378254,0.14233114,0.42647567,-0.3972648,-0.8455638,-0.65735877,0.1560568,1.0188036,0.008999395,-0.51085526,0.20438582,-0.678868,-0.6410661,-0.068172954,0.45973194,-0.19616811,-0.1078189,-0.8031594,0.005654648,-0.13021968,0.2504318,0.03789373,-0.18206702,-0.30335405,0.6123737,-0.0037555757,0.40277246,0.3434911,0.18551035,-0.48435363,-0.4157451,0.02887843,0.96849614,0.23474164,0.21344332,-0.2146879,-0.08329216,-0.43992567,0.096446596,0.0803216,0.6033417,0.41742507,-0.053062964,0.07072451,0.2912378,0.09555992,-0.027865447,-0.28038672,-0.177655,-0.16807555,-0.041436356,0.55257785,0.7833473,-0.38273898,0.33999708,-0.10238144,0.04349572,-0.41348758,-0.5166912,0.5650678,0.6926984,-0.23381086,-0.44528088,0.60509366,0.3036029,-0.5594929,0.39784917,-0.6251591,-0.38099858,0.46353707,-0.30610424,-0.2366877,0.35477504,-0.2902525,0.16298816,-0.9557109,0.10340592,-0.18861824,-0.40477905,-0.3979644,-0.03016244,-3.0072606,0.360492,-0.15262514,-0.23905315,-0.07059709,-0.13530625,0.08204684,-0.40827358,-0.54091054,0.11805918,0.100104965,0.58983856,-0.088570334,0.1853549,-0.1754563,-0.37028658,-0.2382363,0.15543576,0.040293876,0.4874955,0.107426204,-0.5384522,-0.0025538306,-0.16053692,-0.43475223,0.19631398,-0.65146166,-0.43082568,-0.10756233,-0.46172103,-0.20011185,0.5976884,-0.39973196,-0.044143338,-0.49853206,0.07354302,0.09916196,0.3049375,-0.047014147,0.10315505,0.07559421,-0.09260989,0.033517938,-0.23342896,0.2007355,0.028472856,0.13943361,0.57529265,-0.14901245,0.10262063,0.41938806,0.7135655,0.08269159,0.8153374,0.36769593,0.14560209,0.39518824,-0.28581598,-0.30554032,-0.27574834,-0.23535724,-0.009269071,-0.49893287,-0.34843564,-0.15429558,-0.4627644,-0.80059105,0.41383648,0.06589061,-0.03466886,0.082434304,0.65966827,0.45872536,-0.30754405,0.103290774,-0.091588326,-0.2057222,-0.44518626,-0.28802142,-0.52678204,-0.5427085,0.2409801,0.9804856,-0.30630627,0.18222249,0.034581657,-0.1269684,-0.15289873,0.22778028,0.121620215,0.26247987,0.2963692,-0.3571165,-0.5327932,0.26830494,-0.30475512,-0.45304367,-0.59760743,0.20002306,0.67335254,-0.57094383,0.5115958,0.2796265,0.02914158,0.13836773,-0.5090761,0.10991336,-0.051332425,-0.32040492,0.32973135,0.25244367,-0.9124894,0.43051156,0.3942007,-0.14708972,-0.631118,0.5607206,-0.063809805,-0.55921537,-0.18687983,0.38751134,0.20107459,-0.09128795,-0.57629687,0.10281532,-0.5028795,0.1858226,0.13610227,-0.0427409,0.4261774,-0.16868846,-0.2494997,-0.79997706,-0.12647432,-0.5776445,-0.25451317,0.24503577,0.19321197,0.29543284,0.11315924,0.06751793,0.41852093,-0.5119783,0.036669876,-0.16923623,-0.13418867,0.17431565,0.32148147,0.542167,-0.47494972,0.6072983,-0.012313242,0.10263523,0.057237294,0.1443286,0.5759672,-0.11272588,0.5068721,0.3308003,-0.2189889,0.19390596,0.62589335,0.0694649,0.3810196,0.1660595,-0.26158312,0.17412423,0.08345691,0.12076909,-0.08015436,-0.46000186,0.04503438,-0.26206592,0.15209289,0.57979566,0.11279454,0.42479792,-0.11641415,-0.3678843,0.110471785,0.30346817,0.12243745,-1.1790189,0.09676973,0.2444561,0.781557,0.3878958,0.13434893,0.07832342,0.4966599,-0.20631969,0.21844481,0.2897174,-0.08929193,-0.3654548,0.25311115,-0.57240695,0.5169856,-0.09823065,-0.06002638,0.15129478,-0.097637616,0.46161485,0.85283566,-0.10598753,0.19199516,0.2717835,-0.3450121,-0.052515764,-0.41375256,-0.014441535,-0.7565158,-0.09364044,0.64373046,0.49993506,0.34376478,-0.1974184,-0.10712352,0.31437275,-0.10903367,0.016689396,0.02693107,0.2956012,-0.33109444,-0.67058754,-0.17057526,0.52439576,0.38923123,0.12708658,0.17903902,-0.23130976,0.3455659,-0.12162169,0.008544554,-0.086036414,-0.47352073,0.050042797,-0.29653135,-0.5531797,0.42050323,-0.05153358,0.29362655,0.29059908,0.117153905,-0.2894101,0.7044993,-0.015757114,0.71235496,0.22026776,-0.10670149,-0.41710475,0.2567463,0.31595555,-0.23401497,-0.07470438,-0.21294932,0.14382695,-0.31846467,0.32445982,-0.009843458,-0.22904782,-0.066665165,-0.07660693,0.15091312,0.5503691,-0.21591671,-0.25389007,0.079106666,-0.09302368,-0.27937496,0.0007464613,-0.09404137,0.43117094,0.20568068,-0.23604609,-0.05219217,0.04400413,0.009192884,0.3490108,0.07123479,0.2668632,0.38332328,0.068027824,-0.30105606,0.0012941584,0.16023938,0.72914773,-0.13515075,-0.03635381,-0.07258708,-0.6182334,-0.43368316,0.10017771,-0.14961204,0.19986673,0.2809931,-0.06070735,0.80710346,0.21000005,1.3021489,-0.044565856,-0.23628205,0.16712034,0.34011284,0.06482551,0.008930889,-0.42896232,1.1047862,0.471982,-0.30992126,-0.20020331,-0.27822572,-0.2008236,-0.0006955266,-0.28332737,-0.17040046,-0.01816287,-0.69698787,-0.27902606,0.2678502,0.1447118,0.28912643,-0.14125152,0.4669228,0.26452953,0.006056588,0.070953526,-0.47128722,-0.25246665,0.29792124,0.42083797,-0.15496908,0.044743463,-0.43320724,0.39961863,-0.533647,-0.019667268,-0.29240945,0.13983165,-0.21638143,-0.29018652,0.2377128,0.16016215,0.20969154,-0.30856782,-0.2217315,-0.2379589,0.44902083,0.16254707,0.12881804,0.4642323,-0.14203997,-0.07581818,-0.011217167,0.5236743,1.0054287,-0.022123247,-0.1392346,0.5855644,-0.27737895,-0.85288507,0.24789476,-0.46976832,0.16971831,-0.13879889,-0.14852424,-0.4798464,0.36627886,0.112629116,0.11205455,-0.034468234,-0.4773266,-0.22113998,0.23417969,-0.43424773,-0.09126264,-0.22619434,-0.021612717,0.54828024,-0.22745843,-0.43086958,0.08160973,0.42117432,-0.2443883,-0.6396045,-0.003916671,-0.3331466,0.22519648,0.2649039,-0.3673152,-0.12121097,0.11223031,-0.40943226,0.067285605,0.21730351,-0.29423794,0.13439511,-0.53338796,-0.20570862,0.9292472,-0.23007597,0.3967569,-0.30328572,-0.6351915,-0.9253171,-0.2758527,0.20501524,-0.0014473001,-0.15027311,-0.78676385,-0.11052696,-0.2771641,-0.39157185,0.08196027,-0.061498255,0.6396899,0.10088942,0.21229273,-0.1701075,-0.96712327,0.076108254,0.25257614,-0.50913745,-0.81146604,0.5263795,-0.045538645,0.8646286,0.1086227,0.1694283,0.5985798,-0.51822925,0.13745692,-0.28831115,-0.13150781,-0.5210084,-0.07877285,224 +807,0.44415584,-0.25978157,-0.36992458,-0.16637297,-0.3478426,0.15238054,0.08399606,0.5977604,0.401767,-0.19049478,-0.17001791,-0.025314676,-0.015675718,0.5357148,-0.19455878,-0.797297,0.18124707,0.06001224,-0.39250198,0.5357175,-0.3217403,0.2915806,0.08085189,0.21970494,0.1258248,0.18506362,0.18532415,-0.013953383,0.123378634,-0.19917822,-0.044787597,-0.05469716,-0.5008761,0.35446584,0.11747851,-0.11447785,0.05645451,-0.3435613,-0.2162873,-0.69836956,0.26447758,-0.76381534,0.5355763,0.056859285,-0.32999614,0.28541026,0.16818672,0.12732154,-0.21860218,-0.12663837,-0.060977295,-0.015721252,-0.105387606,-0.10279518,-0.06444582,-0.50644535,-0.6363112,-0.10770196,-0.45046213,-0.095048666,-0.29445592,0.060224753,-0.39017963,0.062491614,0.056950048,0.5032534,-0.3482124,-0.053813726,0.35632244,-0.1333343,0.15376268,-0.64496845,-0.15184934,-0.06093083,0.2102242,0.17732374,-0.30636427,0.35591665,0.4847208,0.30016172,0.084062554,-0.23771147,-0.18573838,-0.16052873,0.23974757,0.37406287,-0.18403679,-0.48621812,-0.079616114,0.104334705,0.25003836,0.1726209,0.32194534,-0.021371624,-0.11500149,-0.011473765,-0.2969118,0.39371732,0.41331908,-0.4142159,-0.32306758,0.3603342,0.5297809,0.09071136,-0.109571956,-0.029693121,0.03418209,-0.622652,-0.15916151,0.043101598,-0.41363248,0.5483119,-0.24671881,0.10597078,0.7056906,-0.40603533,0.06015518,0.3435935,0.08468017,-0.14096273,-0.27050427,-0.18909656,0.20919293,-0.65431446,0.028943181,-0.26164064,0.8808182,0.23759256,-0.53860635,0.25183377,-0.452983,0.19959815,-0.23404145,0.44832322,0.7055951,0.42458367,0.33127442,0.6690251,-0.3617253,-0.015943313,-0.07514882,-0.37620953,0.29582667,-0.2715862,0.0985887,-0.42341468,0.043128762,0.18821977,-0.35576043,0.10780869,0.11525965,-0.5759937,-0.08627608,0.16059148,0.64966184,-0.12189039,-0.28908634,0.6100387,1.049635,0.8966883,0.11790341,1.1531066,0.11840729,-0.18722998,0.16460092,-0.024903512,-0.6787844,0.25541475,0.3264188,-0.2026885,0.4063824,0.043844555,-0.18347454,0.3135344,-0.45087084,-0.16577844,-0.11501646,0.7316331,0.171848,-0.3440059,-0.4328048,-0.29988816,-0.10759554,-0.0032013655,0.14954163,0.2993635,-0.14358443,0.36317077,0.049014777,1.0246361,0.034547616,0.05075842,0.024872294,0.44766355,0.24679752,-0.039991923,0.18594877,0.32806292,0.19918077,0.2026422,-0.6021698,0.08032017,-0.28499663,-0.4058125,-0.08488295,-0.40726027,-0.16695046,-0.027998766,-0.2886869,-0.3246772,-0.14418332,-0.08774433,0.6272375,-2.8756893,-0.18282808,-0.13265808,0.2859274,-0.21672325,-0.28295985,-0.023170277,-0.5343905,0.25890934,0.4102893,0.44558764,-0.75904655,0.14146884,0.43684697,-0.68572134,-0.17679715,-0.5982806,-0.016261637,-0.062321037,0.4059604,0.16783042,-0.11381904,-0.02942946,0.13090558,0.5227948,0.2502562,0.1280088,0.25982913,0.2511894,-0.2179275,0.3551264,-0.034481853,0.51257277,-0.058123272,-0.100403965,0.17190547,-0.32775322,0.5139641,-0.19115092,0.121690966,0.49695387,-0.16867326,-0.838226,-0.6459903,-0.24725847,1.2507786,-0.12234676,-0.39163938,0.20034629,-0.35110292,-0.22771196,-0.19310355,0.4727697,-0.14947988,-0.0029619138,-0.6148167,0.12206861,-0.027681718,0.049279567,-0.051389158,-0.12387138,-0.34060642,0.78315425,0.05241223,0.4134312,0.22923832,0.113134086,-0.23484047,-0.50122863,-0.057805195,0.6806392,0.5136483,0.08579531,-0.13628997,-0.22889036,-0.34840083,-0.14263915,0.1957674,0.57491976,0.5606833,-0.12339244,-0.05466622,0.17381518,-0.0838133,0.16888912,-0.0020979953,-0.19920643,-0.08836635,-0.0895574,0.50650257,0.815042,-0.35641873,0.32325765,-0.065450296,0.28463995,-0.12987897,-0.47659886,0.63442993,0.7238216,-0.20654309,-0.27542573,0.71200067,0.4194764,-0.27764788,0.4206569,-0.5157291,-0.1879654,0.5609999,-0.071588166,-0.25454426,-0.070726804,-0.3861364,0.0874433,-0.68172383,0.3962098,-0.27818322,-0.42542076,-0.3652295,-0.03939393,-3.1102083,0.100067176,-0.28602692,-0.050246567,-0.22246647,-0.113706194,0.22603814,-0.74428135,-0.5205504,0.27558675,0.076951884,0.69421744,-0.2408792,0.0057095475,-0.19642723,-0.39885107,-0.32926795,0.14327918,-0.15716372,0.2539132,-0.09474663,-0.31658292,0.18099587,-0.021981286,-0.3663561,0.20821619,-0.40002537,-0.58479244,-0.24571443,-0.33743823,-0.19106041,0.7499412,-0.36275566,0.010274221,-0.16589311,0.12589684,-0.1534032,0.25402758,-0.06235603,-0.025209414,0.11444208,0.052430093,0.104538314,-0.32505727,0.6071308,0.032932635,0.54175776,0.48690167,-0.19340579,0.17501317,0.74303466,0.5992057,-0.082113855,0.83233446,0.26662436,-0.19225888,0.38930002,-0.16151245,-0.26644877,-0.27977553,-0.32534453,0.1267299,-0.37985823,-0.2689877,0.021691272,-0.38586846,-0.7056721,0.39240822,0.1047479,0.2632116,-0.14333987,0.21295588,0.5687724,-0.27504823,0.056762308,0.06994007,-0.22364946,-0.7055952,-0.32356718,-0.5766534,-0.2256457,0.3591644,1.0368767,-0.41380283,-0.102225244,-0.11826078,-0.21982253,0.058284253,0.059332747,-0.11097586,-0.18677859,0.21967566,-0.10528479,-0.6653538,0.55317163,-0.1824253,-0.09373786,-0.57780784,0.18764357,0.41592988,-0.5839519,0.34259745,0.4466255,0.045042377,-0.077500455,-0.4920418,-0.121822156,-0.031104423,-0.19664772,0.2436756,0.3640969,-0.79476863,0.37833688,0.34172428,-0.3433967,-0.6250625,0.39323863,-0.07568523,-0.17378087,-0.18488358,0.3087331,0.3566375,0.047795665,-0.1264201,0.13139339,-0.5750465,0.18595624,0.25864384,-0.0034129329,0.41104388,0.18313546,-0.1060131,-0.76947314,-0.022033012,-0.49489534,-0.2155828,0.1604568,0.18046798,0.15603305,0.26150084,0.42015442,0.42123482,-0.35141823,0.13932721,0.013554543,-0.37411404,0.6034557,0.40116405,0.44141063,-0.36315107,0.62556916,0.05403727,0.07472035,-0.025364667,-0.03188476,0.46163955,0.055720445,0.43058372,0.2173645,-0.17988257,0.116838746,0.7414362,-0.04165271,0.18579918,0.11989709,-0.065845184,0.2211218,-0.09284949,0.2079718,0.30746818,-0.59932774,-0.120072484,-0.33553776,0.104596876,0.50385696,0.13012818,0.054503124,0.09078205,-0.34145865,0.010966308,0.12864487,0.056199294,-1.3493309,0.26121867,0.14418061,0.60826474,0.487751,0.0645167,-0.05330349,0.64016235,-0.113325395,0.18999784,0.46397284,0.0774369,-0.40175867,0.536634,-0.74812216,0.4917585,-0.12546147,-0.11382025,-0.13954414,-0.037745494,0.21846054,0.9216609,-0.18729241,-0.17353423,-0.009987779,-0.38642237,0.13652344,-0.4395227,0.025502557,-0.5778825,-0.31240776,0.45145822,0.24326222,0.29223517,-0.18157648,0.009154458,0.061101526,-0.066612475,0.2924802,-0.15041007,0.08169668,-0.11687594,-0.45789227,-0.16586232,0.42291936,-0.14138465,0.3179554,-0.13143042,-0.06730965,0.105322726,-0.21698563,-0.19821806,-0.048735112,-0.5739005,0.019880392,-0.12084368,-0.5769599,0.5449371,-0.24974991,0.18008149,0.18784516,0.11173358,-0.1593873,0.19361258,0.18880148,0.56630474,-0.13999842,-0.133916,-0.41697058,0.13250165,0.009668835,-0.19592597,0.14923991,-0.034073737,0.117366284,-0.37668145,0.5495569,-0.1530123,-0.22563612,-0.14081536,-0.31868708,0.008244338,0.39285764,-0.33418027,-0.16188712,-0.10047596,-0.3974917,-0.04841784,-0.2620268,-0.060237627,0.27464363,0.23947544,-0.0778267,-0.13477634,-0.31816584,0.027950972,0.053314555,-0.0041195564,0.15993166,0.3287461,-0.21831937,-0.32900643,-0.26204178,0.16708654,0.28625578,0.041620083,-0.2837486,-0.5328131,-0.5074098,-0.35333285,0.100266635,0.024848074,0.24840379,0.05778105,-0.23917092,0.6924243,0.02174913,1.1791376,0.00430427,-0.31270698,-0.017885327,0.6675317,0.052488577,-0.046474483,-0.17280789,0.8381564,0.5112236,-0.12349736,-0.11327064,-0.51786214,0.12493014,0.31023657,-0.13171008,0.020033116,0.10431748,-0.6194675,-0.22348939,0.31796652,0.21473503,0.07436994,-0.034270924,0.035823222,0.19768965,0.115844876,0.36123478,-0.5161307,-0.055425193,0.37442574,0.29802272,0.22775453,0.17061274,-0.36743286,0.30555347,-0.696908,0.1834218,-0.17802668,0.08155569,-0.20551087,-0.33269373,0.17509176,0.16987085,0.36580026,-0.3450594,-0.48880187,-0.21052234,0.5304182,0.08561096,0.13982825,0.4557407,-0.27993008,-0.27020052,-0.017922327,0.60921466,1.118868,-0.061954662,-0.003096126,0.21072058,-0.4413453,-0.8320298,0.46212876,-0.33336404,0.37167975,-0.07680569,-0.16869052,-0.6181414,0.2406553,0.29656926,0.11863634,0.15563576,-0.52800864,-0.47003865,0.09170473,-0.5872955,-0.12410814,-0.26855662,0.19018336,0.5961745,-0.2680072,-0.17091013,-0.04722688,0.3582667,-0.22411261,-0.45005962,-0.15839802,-0.20877905,0.33276415,0.02428875,-0.3061532,-0.15420283,0.11022691,-0.4180285,0.2554057,0.01547344,-0.26436225,0.30917633,-0.31452978,0.2559351,0.59729177,-0.099321626,0.13393915,-0.5849729,-0.4487145,-0.6716235,-0.31110376,0.23109972,0.012368162,-0.01211772,-0.5361543,-0.11420574,0.0321632,0.1998444,-0.1557232,-0.35797027,0.49463177,0.114382245,0.13021086,0.13058639,-0.8992851,-0.12674595,0.0073627434,0.06794201,-0.5451681,0.49899137,-0.24261941,0.95146537,0.15516187,-0.05485561,0.07486863,-0.39621165,0.1417016,-0.14564721,-0.2574053,-0.45423272,0.14515048,231 +808,0.3639386,-0.08790997,-0.5856405,-0.052128058,-0.44570437,0.13774048,-0.3535323,0.31812468,0.21908565,-0.24607123,0.07027935,0.11530473,-0.20293339,0.3723402,-0.24463753,-0.5847393,-0.06354282,0.03953086,-0.6678149,0.48855114,-0.50736016,0.2876692,-0.14571646,0.43926224,0.081457235,0.27609932,0.036000017,0.06385407,0.15782963,-0.3077058,-0.16319874,0.08105356,-0.72812796,0.49404156,-0.19488227,-0.3702043,-0.041128907,-0.43640196,-0.29875168,-0.72807693,0.18271162,-0.7161031,0.63014454,-0.044563245,-0.40383554,-0.07849388,0.13785864,0.3519664,-0.1943087,0.11171659,0.35066548,-0.32711294,0.055144217,-0.3218745,-0.31956366,-0.27134797,-0.42796862,-0.25003946,-0.62811494,0.009756943,-0.21509087,0.17982633,-0.29066506,0.053269964,-0.34063414,0.267328,-0.33419704,0.1671462,0.027219897,-0.21392708,0.18072522,-0.45034286,0.03889667,-0.06996513,0.29892114,0.01747694,-0.20466948,0.2955119,-0.055273697,0.30801895,0.15129994,-0.11753818,-0.25951216,-0.21979149,0.15304881,0.40113655,-0.0324066,-0.10438702,-0.3033287,-0.16040717,0.40593806,0.36539814,-0.12611449,-0.41218987,0.12599523,-0.2948343,-0.21341312,0.6349967,0.4858644,-0.16793187,0.06844419,0.3068096,0.51075155,0.3091746,-0.3613803,0.20002943,-0.07485739,-0.4240911,-0.30986372,0.23305285,0.06503251,0.30377233,-0.10573845,0.28445956,0.58421147,-0.117580645,-0.12974158,0.12977675,-0.137269,0.25003985,-0.32161197,-0.21072294,0.119895935,-0.55284125,0.29065618,-0.26668373,0.70212156,0.054173965,-0.805715,0.2018174,-0.68684053,0.0026522055,0.0006005193,0.62510556,0.623243,0.6930814,0.057761192,0.804869,-0.35435104,0.07917878,-0.19977792,-0.18309416,0.030869016,0.12191784,0.20789666,-0.37969112,0.039784342,-0.18425326,0.10212878,0.041945633,0.081058875,-0.1963448,-0.20948903,-0.02627013,0.68237144,-0.3548614,-0.003093044,0.95084333,1.1946324,1.0154083,0.051951658,0.9443958,0.09935961,-0.064589344,-0.38048902,0.03476951,-0.60147595,0.1790223,0.3502525,0.3452808,0.29212525,0.027015023,0.04699562,0.25671875,-0.31714118,-0.14752229,0.08723345,0.33794487,-0.030037364,-0.02404379,-0.30689913,-0.3866422,0.22643293,0.0876095,0.0052511245,0.26433533,-0.2914699,0.52068657,0.21742272,1.0203758,0.103151105,0.17265594,0.13524212,0.45148364,0.2537736,-0.20821172,-0.12063575,0.25565112,0.25401637,-0.029506018,-0.59232694,0.13076133,-0.26047552,-0.25194404,-0.029311523,-0.43312874,-0.15422131,-0.23403935,-0.35898924,-0.044525117,0.015783204,-0.3566126,0.4773594,-2.7893455,-0.1481878,-0.08294446,0.3074865,-0.1727398,-0.26538262,-0.2155902,-0.42697588,0.47496963,0.13937984,0.4739902,-0.45224658,0.6575768,0.4745777,-0.3276557,-0.039926022,-0.59919596,-0.13517244,0.114559196,0.2870753,-0.055635255,0.017829945,-0.23859929,0.26606575,0.59729934,0.03548896,0.037363146,0.2847234,0.4468347,-0.21023488,0.6719098,-0.033470143,0.5351427,-0.5592775,0.027412502,0.33902726,-0.59321004,0.39337206,0.045786604,0.16456454,0.49609217,-0.5892055,-0.8375063,-0.573683,-0.32955548,1.3132014,-0.3696011,-0.5967744,0.20081611,-0.2691165,-0.2668536,0.14640516,0.5525932,-0.117276765,-0.040931415,-0.5774165,-0.06596985,-0.27487627,0.4467217,-0.07889671,0.112737514,-0.34841025,0.6017489,-0.13482638,0.6808395,0.28418633,0.13458143,-0.1261005,-0.30457124,0.11341377,0.6889582,0.5474023,0.099742025,-0.16841395,-0.20812678,-0.12281722,-0.0978257,0.080300756,0.91315836,0.4852195,-0.14133526,0.05342045,0.3280683,-0.23863256,-0.0014131218,-0.2737835,-0.26673305,-0.24250974,0.13507862,0.5526673,0.6845607,0.12884958,0.24434054,-0.015955068,0.23843072,-0.30029762,-0.5129561,0.23098896,0.42966294,-0.06687043,-0.23836224,0.51968783,0.60870177,-0.17840172,0.45150927,-0.5231201,-0.42890128,0.47351646,-0.030663468,-0.4792688,0.21830471,-0.23039353,-0.05051364,-0.79393387,0.19904639,-0.5709304,-0.9787612,-0.40727708,-0.119862705,-2.9739351,0.09882462,-0.005357273,-0.16913237,-0.39796305,-0.30437392,0.28180692,-0.39074692,-0.668968,0.0669025,0.017733077,0.5838178,-0.17710479,0.09117047,-0.29494688,-0.21327122,-0.24396695,0.26589254,0.20281975,0.3295619,-0.22192271,-0.2241174,-0.23318666,-0.12591262,-0.5330571,-0.029390454,-0.49932623,-0.10601011,0.06295779,-0.37399897,-0.2353574,0.5350617,-0.4696207,0.09713715,-0.09483006,-0.098465495,-0.1442367,0.34884644,0.2928597,0.3048393,0.12906857,-0.121281065,-0.25072268,-0.34282422,0.11748936,0.10282167,0.22835182,0.33822426,-0.18598521,-0.01241536,0.3459266,0.74311,0.051016465,0.9351458,-0.15925401,-0.09266215,0.45075837,-0.33964762,-0.6141781,-0.5951168,-0.18414755,-0.0029023339,-0.2944758,-0.31925398,-0.19307081,-0.2938317,-0.8316386,0.32798877,0.34024286,0.07763109,-0.15173627,0.21805823,0.214548,-0.1655374,0.06191257,-0.018812457,-0.104692794,-0.47287393,-0.36568105,-0.6370758,-0.5605117,-0.012181121,1.0074464,-0.16155131,0.055372063,0.10796402,-0.34959614,0.21534155,0.22768979,0.18086706,0.19488685,0.36357746,0.0065151155,-0.428252,0.3930353,-0.25635758,-0.16140728,-0.47511944,0.13298917,0.9560936,-0.6000455,0.44997248,0.27823067,0.1184149,-0.24227972,-0.57116777,-0.09089351,-0.08040104,-0.1774606,0.40482116,0.22906756,-0.7755478,0.44885042,0.07422373,0.027988335,-0.63226825,0.44593355,-0.018863207,-0.22958435,0.12191603,0.52487636,0.103552856,-0.12445062,-0.007459432,0.20954412,-0.23916392,0.32560083,0.19453107,-0.0033552349,0.12538365,0.049709085,-0.21213043,-0.6278246,-0.12746917,-0.66465497,-0.28732434,0.29541162,-0.09985005,-0.051845476,0.012547205,0.0064986446,0.3972944,-0.35704038,0.2650167,-0.30570516,-0.16509996,0.42999032,0.47245553,0.49434268,-0.50101465,0.6442179,0.29987994,0.06669483,0.10836845,0.26006138,0.4003397,-0.15223368,0.4570315,-0.1367213,0.10956538,0.13799864,0.5223442,0.31177938,0.29106024,0.0890829,-0.010447949,0.38696364,0.10129646,0.31351438,-0.09066237,-0.41570863,0.16058709,-0.13078813,0.0855271,0.4505464,0.12571457,0.36695388,0.079638876,0.006214132,0.05644994,0.23089443,-0.4343934,-1.3914531,0.5027411,0.16421174,0.79026634,0.43820748,0.20940572,0.100136705,0.6922731,-0.24413025,0.021048315,0.30301854,0.26257285,-0.29029503,0.6572713,-0.55419797,0.47530404,-0.01464749,-0.029209673,0.24584156,0.08614843,0.59235704,0.8634682,-0.137776,0.010374869,0.015692601,-0.19475411,-0.00786839,-0.30220276,-0.008021717,-0.37708375,-0.46203718,0.5350129,0.35218915,0.49111006,-0.33120435,-0.080423646,-0.0001501441,-0.061115604,0.089568526,-0.14091061,-0.15271248,-0.16793735,-0.45593277,-0.18837707,0.6145815,-0.33863235,0.12975629,0.16196351,-0.20429938,0.35504678,0.21892376,0.08647847,-0.0043607564,-0.7477322,0.2339976,-0.394846,-0.22281848,0.08900366,-0.54367,0.32815903,0.2190605,-0.10188576,-0.1819123,0.33342662,0.24598868,0.64271677,0.032924175,-0.12015977,-0.19886017,0.19881074,0.117203556,-0.3049935,-0.09062434,-0.26237544,-0.02592936,-0.60976744,0.11493876,-0.2828691,-0.30107698,0.18062162,-0.106957264,0.049208302,0.50972605,-0.06838182,-0.16224277,0.09025404,-0.008315911,-0.3352196,-0.32735586,-0.34597662,0.19709067,0.17435856,0.09276304,0.07430318,0.014491449,-0.021816378,0.2593852,0.26646468,0.37933198,0.14026958,0.01673849,-0.3138435,0.039408024,-0.020330263,0.45004463,0.1455414,0.10656778,-0.048844393,-0.27526945,-0.273891,0.53170145,-0.28288817,0.23949455,-0.008026123,-0.3843687,0.71780235,0.023646077,0.9165711,0.028983995,-0.3859547,0.20541207,0.5445173,0.03373425,-0.04529633,-0.21078521,0.87971395,0.40901288,-0.220976,-0.027312348,-0.44204724,-0.2823894,0.04656383,-0.25444245,-0.23953456,-0.10697529,-0.46988496,0.068377964,0.17686558,0.2869228,0.036958124,-0.08643376,-0.25494778,0.25563613,0.058636088,0.35319236,-0.5158752,-0.02599513,0.35351777,-0.033914607,-0.019291801,-0.018708592,-0.3516283,0.38039017,-0.71943736,0.24032778,-0.6126943,0.018230474,-0.18896765,-0.16770174,0.18305485,0.04204269,0.20734598,-0.32953027,-0.23661493,-0.07820422,0.45489708,0.25251982,0.33847883,0.7152236,-0.20713349,-0.08394999,0.055811256,0.4330589,0.68796045,-0.22852981,-0.07116806,0.28960654,-0.3946507,-0.53368,-0.0038883735,-0.37903896,0.07189632,-0.004427125,-0.35840094,-0.17321469,0.26233536,-0.022852818,0.2094421,-0.020938454,-0.7442589,-0.033887297,0.21282929,-0.2601369,-0.31258014,-0.4285643,0.16820978,0.67857987,-0.18354899,-0.41509795,0.06124488,0.12074623,-0.22748917,-0.5407192,0.026562465,-0.17817135,0.104265966,0.011366378,-0.3558966,-0.05552895,0.48133698,-0.5001957,0.03227452,0.081469774,-0.30044392,-0.0030278538,-0.19397129,-0.08945622,0.8824217,-0.2312511,0.0557764,-0.37546477,-0.6007926,-0.6086877,-0.24824263,0.022818573,0.30843014,0.019783879,-0.58355194,-0.09880888,-0.36349872,-0.10600863,0.03547716,-0.38203022,0.3944285,0.16078417,0.4093893,-0.21009563,-1.0815308,0.34294024,0.25127718,-0.19892295,-0.36400533,0.48327455,-0.18074755,0.4472116,0.048624218,0.046158403,0.0046202443,-0.7304902,0.32525185,-0.25766298,0.025594631,-0.67193896,0.25357577,234 +809,0.21964554,-0.28227362,-0.482843,0.013751794,0.02459614,-0.026654245,-0.25895324,0.6054237,0.31187388,-0.2966067,-0.3044397,-0.13195105,-0.07856973,0.37422895,-0.17687981,-0.412482,-0.008759906,0.12094594,-0.25082514,0.5717358,-0.27618524,0.053426106,-0.012534936,0.47414434,0.23821743,0.09076238,0.16926579,0.112879865,-0.10878586,-0.16126658,-0.059215363,0.382768,-0.4175636,0.1473612,-0.44223085,-0.33837947,-0.13477623,-0.6556956,-0.4976621,-0.7626409,0.31601417,-0.8214143,0.45598245,0.08769097,-0.23706575,0.26448217,0.03146091,0.15754333,-0.07609554,-0.15266947,0.038974106,-0.20180541,-0.07784363,-0.01877963,-0.18859571,-0.17453885,-0.60113627,0.023864733,-0.42984918,0.008692701,-0.19452816,0.17331348,-0.34302345,-0.05664393,0.08840089,0.49529442,-0.37040356,0.031557575,0.08156844,-0.13083999,0.21422233,-0.6773827,-0.344744,-0.078325436,0.38431406,-0.17046528,-0.18034606,0.18634684,0.17711301,0.46646562,-0.23429756,0.004617249,-0.4436444,0.055820614,0.045484584,0.6266623,-0.2070998,-0.6865911,-0.10964054,-0.054277066,0.16390501,0.18195017,0.021354685,-0.12680879,-0.051370252,-0.1949652,-0.19879852,0.42580009,0.5382171,-0.13897507,-0.15603621,0.2459377,0.3950522,0.4644023,-0.13832536,-0.0331793,0.11094951,-0.6248713,-0.10302616,-0.20947309,-0.1803204,0.76003766,-0.104297124,0.40262413,0.37105343,0.016003335,-0.02628834,0.06259627,0.047745276,-0.20439868,-0.240436,-0.27512887,0.2747791,-0.33200866,0.3049402,-0.036686167,0.6056703,0.10234807,-0.727132,0.42824265,-0.4012716,0.17706394,0.05734312,0.5338164,0.77952605,0.24058478,0.5194758,0.69042236,-0.34953198,0.02040642,0.081070475,-0.23445934,-0.0069336295,-0.23614435,-0.13467866,-0.46122786,-0.06184717,0.034272105,0.060699493,0.3537053,0.4178481,-0.44196627,-0.16513604,0.3536822,0.8057053,-0.1090348,-0.009235665,0.7686467,1.1569347,1.0486773,-0.08143254,1.1207716,0.057055008,-0.22062378,0.13852562,0.092365086,-0.8423589,0.22708143,0.32563427,-0.119872905,0.30328658,0.11679254,-0.11043473,0.42406604,-0.5160907,-0.0592812,-0.117968984,-0.14621447,0.24116577,-0.15127142,-0.48051107,-0.184992,-0.15341358,0.04646786,0.07613122,0.2698321,-0.1863712,0.4405589,-0.05348596,1.4750015,-0.0595779,-0.05861729,0.112971164,0.5421855,0.26388538,-0.18432756,-0.056142177,0.25507855,0.36734983,0.09463004,-0.5266497,-0.00681976,-0.24190404,-0.31465372,-0.05442916,-0.2711459,-0.23592205,0.09423357,-0.31531823,-0.24438834,-0.156431,-0.3882077,0.4763951,-3.1279957,-0.15775819,-0.08313358,0.1845574,-0.15361744,-0.30572978,-0.26140884,-0.4182347,0.5437924,0.40662813,0.5015984,-0.5627375,0.03880747,0.42341623,-0.5652928,-0.13794005,-0.5479767,-0.053741198,0.027140781,0.4804124,0.17228232,-0.1431691,0.07646102,0.24475001,0.51282793,0.3023071,0.1118358,0.34421143,0.42129922,-0.10806664,0.23581243,-0.24644287,0.35867834,-0.39090946,-0.1846308,0.3905387,-0.31444564,0.3168397,-0.47050261,0.20410043,0.5362986,-0.37462536,-0.8126593,-0.5758627,-0.1241787,1.2635552,-0.027342834,-0.5151248,0.2696133,-0.43272552,-0.3239288,-0.21898215,0.77644986,-0.20402704,-0.053509522,-0.7187634,-0.1342411,-0.0722919,0.07725964,0.0021169707,-0.14954998,-0.5478401,0.64450616,0.080878876,0.36195898,0.47975025,0.090489,-0.24599327,-0.48568916,0.08832828,0.7432611,0.370916,0.2226821,-0.39176568,-0.014555818,-0.31896433,-0.0100459205,0.0055516423,0.5607732,0.5841524,-0.110129565,0.23194478,0.28093135,0.33447763,0.10643797,-0.108735375,-0.27617696,-0.2586902,-0.04293755,0.6413147,0.8649978,-0.20176655,0.10676362,0.064252906,0.100162126,-0.1555274,-0.2184496,0.53618234,1.0350643,-0.08829239,-0.31570005,0.6328959,0.46026012,-0.29959273,0.41044676,-0.54549366,-0.3042091,0.36067834,0.01602594,-0.62443894,0.20398183,-0.38656172,0.022335136,-0.7212639,0.10182709,-0.13400063,-0.32874814,-0.6535633,-0.11173547,-3.1320832,0.07373466,-0.1986805,-0.30925998,-0.28767493,-0.26083672,0.20709918,-0.39971498,-0.6087157,0.21714611,0.04436527,0.54008687,-0.19809346,0.034045514,-0.31237426,-0.39093986,-0.34878758,0.077119775,0.1290836,0.35784677,0.030485958,-0.37892914,-0.27429348,-0.29003355,-0.39274368,-0.046020467,-0.46854365,-0.26244125,-0.089876376,-0.4044931,-0.16465382,0.54516596,-0.38994455,-0.012391768,-0.2888029,-0.030731937,-0.15945838,0.19129854,0.049037512,0.1323785,-0.106042646,-0.16939257,0.056088746,-0.09838434,0.45840606,0.083284,0.1810105,0.40635493,-0.14369392,0.19159742,0.37332046,0.71049637,-0.37708202,1.1014323,0.5009933,0.03457148,0.22907078,-0.09645948,-0.27992937,-0.406654,-0.13973726,0.1724055,-0.42513156,-0.52430123,0.017936429,-0.3995172,-0.7836501,0.5217976,-0.116588764,0.37215984,0.12071215,0.08537365,0.5108335,-0.2626138,0.0021742533,0.007376107,0.03051725,-0.4443761,-0.33682773,-0.55677503,-0.5310984,-0.07695056,0.6731549,-0.19275011,0.10191231,0.311563,-0.31997627,-0.19605894,0.13763674,0.09419551,0.042320352,0.35028538,0.094951786,-0.7154939,0.5112203,-0.11517793,-0.2188195,-0.6010557,0.11798058,0.46529353,-0.56377155,0.71613127,0.51360685,-0.09194077,-0.3012242,-0.6238031,-0.31007996,-0.28474298,-0.18531992,0.32234588,0.36173713,-0.71630436,0.40221846,0.2339478,-0.1743568,-0.6863354,0.5208283,-0.055989195,-0.11970409,0.04087838,0.34878838,-0.024312416,0.06610246,-0.023844272,0.23390807,-0.15235622,0.28741595,0.0041265837,-0.058408562,0.33516538,-0.266255,-0.010434779,-0.5989898,0.12564187,-0.56444496,-0.24577598,0.37242332,0.1288206,0.19949055,-0.019424967,0.113981746,0.26484078,-0.23724282,0.09263575,-0.0970006,-0.23025633,0.23446767,0.47818354,0.6939021,-0.39792904,0.60502416,0.0017355854,-0.18010573,0.034556407,0.0839758,0.31101334,-0.012171361,0.35714248,0.003254056,-0.21038657,0.15554954,0.82120156,0.25524786,0.30168155,0.012543763,-0.02563087,0.44189158,0.111628674,0.1774437,-0.085291624,-0.6533554,-0.05162151,-0.5704884,0.16285141,0.45314622,0.042538125,0.20095284,-0.23339249,-0.23664378,0.022436911,0.30881867,0.19567966,-1.1389391,0.179842,0.12830256,0.8873046,0.42151126,-0.03700375,0.025945565,0.75319767,-0.0014735857,0.11537498,0.50779605,0.11193237,-0.47300777,0.50057083,-0.5553302,0.50255704,0.06442125,0.037287146,0.10532856,-0.14205875,0.4148191,0.60937005,-0.13429219,0.009340875,0.13507278,-0.22907068,0.023536017,-0.44217005,0.18434854,-0.4254926,-0.16455477,0.6148089,0.7169984,0.17141448,-0.20834094,0.052590568,0.00043349713,-0.06760082,0.016279718,-0.01642007,0.09950926,-0.29493165,-0.84711725,0.13572903,0.44796196,0.07077681,0.036475714,-0.055153325,-0.18942426,0.20488088,-0.16658217,-0.06974737,-0.20070155,-0.6953676,-0.06868353,-0.2962104,-0.516879,0.57624036,-0.14460938,0.31663898,0.2788839,0.1116691,-0.28610894,0.3276631,-0.19455247,0.82743263,-0.025608564,-0.0050300304,-0.35389265,0.05582379,0.21710652,-0.22303586,-0.2777044,-0.35621476,-0.14519612,-0.30156574,0.4670569,0.044133324,-0.22263145,0.11911573,0.01898739,0.07640191,0.65515405,-0.032502007,-0.06916621,-0.050168633,-0.044406414,-0.29963598,-0.17952351,-0.17064522,0.34085214,0.2504036,0.07763373,-0.18148798,-0.12515445,-0.17086339,0.24534963,-0.058741793,0.3660448,0.3417648,0.1048427,-0.18915212,-0.10878388,0.1339808,0.69596416,0.118413635,-0.25803795,-0.24983741,-0.51696116,-0.3797743,0.27743116,-0.06938747,0.38671803,0.2106639,-0.0832837,0.40957892,0.111045875,0.9060165,0.09223786,-0.41249064,0.15859209,0.48556533,-0.051666755,-0.18034202,-0.36340192,0.81759673,0.32167906,-0.08912226,-0.077569745,-0.27157316,0.21187903,0.026995482,-0.11914677,-0.11324254,0.015273272,-0.66062015,0.036958024,0.19322127,0.3101226,0.23393963,-0.13424969,0.056223582,0.2464621,0.0773397,0.21636182,-0.3643097,-0.25206387,0.41672292,0.24362469,-0.117847525,-0.036341056,-0.4015877,0.34299365,-0.44225708,-0.29995224,-0.42362344,0.14628112,-0.41452944,-0.36009452,0.21362366,-0.08818444,0.52314484,-0.2932609,-0.20755072,-0.3364106,0.30956924,0.2088935,0.14100459,0.28890723,-0.19963403,0.007465651,-0.00603137,0.46526286,1.018332,-0.3629379,-0.034695942,0.3549403,-0.23811941,-0.5434117,0.24278061,-0.56358653,0.39461938,0.07449674,-0.071837716,-0.5879683,0.077660464,0.054845527,0.09953638,-0.036041316,-0.6386753,-0.26469433,0.11459917,-0.11281233,-0.17176634,-0.39177546,-0.14984636,0.530461,-0.20800517,-0.4134868,0.049071044,0.3094655,-0.0990391,-0.6159366,0.18556829,-0.30665135,0.21099831,0.025186008,-0.36378184,-0.26261708,-0.06476948,-0.5864525,0.30256143,0.18389325,-0.31680235,0.021489287,-0.30172005,-0.07874727,1.0760652,-0.44298783,0.31548443,-0.3598975,-0.44854212,-0.81862444,-0.28776395,0.43237743,0.18313205,0.16744532,-0.5758417,0.109453104,-0.25250298,-0.083604336,-0.07385028,-0.24130225,0.4549179,0.114332296,0.44825277,-0.26170418,-0.6299284,0.22016345,0.006058616,-0.16986042,-0.47178555,0.4759995,0.18927467,0.937529,0.06350758,0.10106223,0.24093068,-0.44975662,-0.17636967,-0.10166901,-0.1801598,-0.50876707,0.19296311,238 +810,0.4996561,-0.08738481,-0.3903396,-0.25991443,-0.42596027,-0.19849472,-0.056433033,0.1380352,0.23700197,-0.2198679,-0.305723,0.0039916136,0.043275226,0.47265676,-0.13627775,-1.1260662,-0.04020175,0.2335455,-0.64105874,0.46787915,-0.6412947,0.4875622,0.2053051,0.13952011,-0.11989566,0.3846923,0.66803837,-0.3702536,0.07361406,-0.01925237,-0.22140515,0.08449406,-0.58514756,0.28443983,-0.016301423,-0.19872941,0.18594272,-0.14022048,-0.05793674,-0.75504845,0.2894428,-0.8457889,0.34198394,0.05943514,-0.11892319,-0.27604762,0.10497519,0.32924148,-0.46014038,0.14694308,0.26208436,-0.3354696,-0.23109019,-0.31673184,0.30222276,-0.39276877,-0.36945888,-0.09810131,-0.50373334,-0.4122651,-0.29613623,0.19098942,-0.50858986,-0.08170704,-0.011377196,0.3230797,-0.41891825,-0.2550288,0.3558706,-0.46812686,0.26001275,-0.560988,-0.028962374,-0.09062529,0.6441528,0.11451751,0.03327407,0.62646717,0.27752918,0.35330406,0.46251836,-0.4187962,-0.1889587,-0.23560233,0.20609702,0.48552665,-0.1894282,-0.59565324,-0.037269842,0.068657935,0.0637259,0.19320141,-0.11216891,-0.2433123,-0.08082827,-0.13596918,-0.058800172,0.46725282,0.53803927,-0.18579046,-0.1733485,0.32323432,0.47600642,0.042857114,-0.031044075,-0.126942,-0.008960863,-0.6223018,-0.22750689,0.12239369,-0.087976016,0.5297961,-0.28438368,0.13094221,0.87362975,-0.2377836,0.10452182,-0.054511372,-0.041594084,-0.29258233,-0.07283386,-0.2464829,0.22185093,-0.53802204,-0.08756187,-0.36652234,1.1151685,0.23383002,-0.65736246,0.5311556,-0.4629459,0.21346517,-0.17785978,0.7168233,0.58244467,0.38474658,0.21467237,0.895345,-0.4982581,0.16367505,-0.009508073,-0.5857573,0.09001658,-0.081631035,0.1616072,-0.43824625,0.09167042,-0.18853955,0.20646997,0.029168757,0.120077424,-0.5527905,-0.024010537,0.17838079,0.76549643,-0.43100145,0.12514378,0.5772819,0.9987052,0.82964164,0.11305511,1.2105273,0.4285766,-0.3669536,0.18711221,-0.35763228,-0.7492676,0.23616965,0.56972396,0.1690199,0.27346408,-0.13011618,0.002485114,0.2497062,-0.5684846,0.13246875,-0.214693,0.568487,0.036977213,-0.17774297,-0.6172902,-0.04813816,-0.02724316,0.057046443,0.20594959,0.3002136,-0.07956702,0.452749,-0.11262437,0.88094807,0.061277006,0.15157837,-0.088120304,0.59684724,0.37586233,-0.06781479,-0.07495352,0.34376535,0.48567453,-0.13892879,-0.6467497,0.1507364,-0.43350574,-0.3474413,-0.09679258,-0.3208437,0.03132559,0.4031588,-0.13814585,-0.30011037,0.09705881,-0.16865619,0.4333396,-2.3695645,-0.28337628,-0.20646441,0.19013923,-0.30625072,-0.046771754,-0.2195818,-0.58586556,0.35420093,0.3512608,0.53194577,-0.53710985,0.38774696,0.49747106,-0.50768256,-0.15555021,-0.6496745,0.081725895,-0.20277368,0.44178542,0.20720343,-0.2888598,-0.23925811,0.13501759,0.74771667,0.17421146,0.026837623,0.43535516,0.25613657,0.22230951,0.47937012,-8.498629e-05,0.5849057,-0.40600368,-0.23277931,0.24414551,-0.16490065,0.24050456,-0.45486662,0.07729071,0.40866604,-0.56959575,-0.99002105,-0.7308385,-0.40065917,1.1917826,-0.27368268,-0.48590767,0.3825473,0.2477088,0.16001487,0.20287849,0.48034307,-0.11420894,0.15142769,-0.6428686,0.06879719,0.09936895,0.14852186,0.2171217,-0.2373718,-0.44561592,0.7100765,-0.04448593,0.43188632,0.24600172,0.2552677,-0.24079819,-0.47251973,0.09648008,0.746068,0.2474731,0.012504091,-0.02159146,-0.22001915,-0.027532032,-0.2390036,-0.06256596,0.43849257,1.0530957,-0.10865816,-0.18278162,0.3430175,-0.101763956,0.22502577,-0.013925624,-0.30362353,0.00021197896,-0.043365452,0.4859316,0.59152985,-0.078073286,0.34892452,-0.15213874,0.43458807,0.0074348315,-0.48391628,0.8336286,0.72614366,-0.12631328,-0.0146440035,0.4447492,0.40039125,-0.3509318,0.59037894,-0.55787164,-0.49409914,0.61837083,-0.20214875,-0.39895284,-0.08876526,-0.3870784,0.1692837,-0.94500166,0.44725165,-0.5065004,-0.44457304,-0.47597918,-0.124773145,-3.718619,0.27179202,-0.33010355,0.09947357,-0.28981748,0.10461348,0.28776884,-0.77368754,-0.41482535,0.25626704,0.20295365,0.5966998,-0.019801473,0.17056692,-0.19824564,-0.10970638,-0.06569502,0.14627172,-0.09565433,0.22799444,0.050327796,-0.4421291,0.2373172,-0.052399393,-0.47317564,0.27429965,-0.511509,-0.46881643,-0.23306644,-0.6558277,-0.3352656,0.62571096,-0.39077926,0.04203826,-0.20367436,0.23883714,-0.29661414,0.15194647,-0.080854185,0.12854646,0.19527389,-0.14962474,0.011795069,-0.27789423,0.65135837,-0.07464159,0.44121483,0.00034852079,-0.15659997,-0.0711469,0.5992191,0.4188206,-0.18943107,0.92021805,0.3910202,0.030477742,0.16990294,-0.36236218,-0.2827687,-0.6525545,-0.60384744,0.15340413,-0.39487243,-0.48159686,0.020717278,-0.38398576,-0.9035589,0.5824688,-0.022350112,0.22837187,0.011505852,0.07310626,0.22699688,-0.09972965,0.027840294,-0.08336603,-0.12451434,-0.52737105,-0.074455686,-0.60827595,-0.38968804,-0.07973727,0.7449975,-0.37478307,-0.066922545,-0.1650611,-0.22440915,0.13346484,-0.08443295,0.101800285,0.27250987,0.29186025,-0.08892693,-0.7128379,0.5131267,-0.171308,-0.025732726,-0.56890255,0.06990942,0.5209061,-0.86169034,0.5558299,0.48578393,-0.047797408,0.09301893,-0.42962876,-0.30482903,0.005122771,-0.017796978,0.42872682,-0.074914195,-0.54548746,0.52265567,0.30369225,-0.56975955,-0.83418447,0.24084944,-0.06732077,-0.38085213,0.15783486,0.26662055,-0.0295765,-0.10480994,-0.37601873,0.046734314,-0.4792812,0.33898982,0.10490345,0.02962266,0.5118516,-0.061514314,-0.48790312,-0.8527263,-0.17560764,-0.47384867,-0.063601434,0.15453528,0.006680353,-0.21128279,0.022076309,0.09156547,0.44990468,-0.14206848,0.13793884,0.12467641,-0.47794497,0.25238407,0.39045525,0.2788237,-0.42381445,0.63920027,0.16957879,-0.21172793,-0.21516974,0.10940138,0.48197708,0.23486483,0.33116642,-0.14682066,-0.05287485,0.5216043,0.8263097,-0.01012909,0.34279737,0.039548665,-0.09697297,0.5867712,0.15806733,0.24069916,0.10721014,-0.34540856,-0.033656437,0.035292562,0.064400144,0.49062183,0.30822808,0.39914104,0.1734941,-0.25366196,-0.05144235,0.344287,-0.14108741,-1.0685833,0.5972802,0.27239475,0.6823538,0.48965678,0.03925652,-0.27302197,0.5995408,-0.17309372,0.13618286,0.14162947,-0.19892244,-0.44491592,0.75517064,-0.5489112,0.110681914,-0.17537825,-0.14760514,0.021587497,0.15443699,0.20992969,0.76973486,-0.052880198,0.07961547,-0.25202218,-0.14786778,0.038297955,-0.4057093,0.079248995,-0.42659223,-0.31940192,0.5200817,0.16495666,0.27016506,-0.1316204,-0.0825766,0.10371578,-0.084974885,0.31851128,-0.17260952,-0.026481649,0.23938783,-0.671021,-0.1990215,0.4774232,0.25037187,0.22665252,-0.17202614,-0.24858952,0.17425586,-0.34386936,-0.12203153,-0.17550306,-0.6068749,0.103156716,-0.11321265,-0.28734103,0.45422578,-0.21004383,0.28004763,0.22675556,0.055436373,-0.14839081,0.13342057,0.13100894,0.7368552,0.1581228,-0.37904856,-0.4076202,-0.03137323,0.18768673,-0.30652073,0.1485864,-0.34717473,-0.14971416,-0.45796064,0.66247344,-0.17354196,-0.18033655,0.24761201,-0.37989092,-0.22167571,0.4875908,-0.27624056,-0.06251826,0.23525433,-0.14932005,-0.24220932,-0.005788535,-0.48622823,0.18093859,0.31261358,0.11371913,-0.1999345,-0.25903204,-0.1501065,0.6618424,0.031171486,0.21766095,0.028168857,0.07259288,-0.17764594,0.058827013,0.23518805,0.5085675,0.22952473,0.10494272,-0.4324763,-0.41930023,-0.26094684,-0.23402129,-0.058849115,0.08919412,0.06819219,-0.38696957,0.6286816,0.23694186,1.2797041,0.21271408,-0.24779864,0.051211596,0.566415,-0.019735763,0.10059285,-0.33438203,0.95590687,0.6638813,-0.31773537,-0.06945182,-0.6022451,-0.048494205,0.33540615,-0.29195818,-0.05097152,-0.05741166,-0.5400364,-0.65705377,0.38211688,0.27752078,-0.026310617,0.08025815,-0.10336166,-0.13038908,0.23680007,0.5031144,-0.7679234,-0.26296487,0.2165329,0.071736835,0.24928679,0.16520321,-0.24089451,0.5540888,-0.76998883,0.18954976,-0.41064188,0.009412822,-0.36990604,-0.33632484,0.2446866,0.15992731,0.3998282,-0.19674444,-0.53477156,0.052742492,0.4598371,0.130304,0.17614289,0.7143481,-0.3226763,0.034537382,0.22241576,0.6683046,1.2181318,-0.34788188,0.05633557,0.2536279,-0.37819675,-0.53796595,0.46432844,-0.20731778,-0.28755412,-0.27943775,-0.63375765,-0.62142414,0.21162312,0.113871515,0.032690678,0.18851466,-0.52969104,-0.2065347,0.2803055,-0.43058422,-0.2967633,-0.16726267,0.66757745,0.6837606,-0.4353529,-0.37007987,0.15673985,0.30377117,-0.333006,-0.5841068,-0.17784084,-0.12722059,0.4424578,0.26637825,-0.23906334,-0.10659912,0.19366618,-0.40284276,0.11048754,0.23794878,-0.38320205,0.17160685,-0.15065464,0.010932659,0.7265119,-0.25549078,0.1220207,-0.87194085,-0.24503107,-1.0066893,-0.3248099,0.6775792,0.1524789,-0.019027626,-0.539041,0.010198821,-0.027886264,0.08792826,-0.011280924,-0.48928508,0.30392298,0.09196284,0.6369234,-0.11099684,-0.96426296,-0.022569729,0.17612892,-0.18129373,-0.5826864,0.49443483,-0.06195947,0.9736662,-0.003570035,-0.19504811,0.06236954,-0.5397945,0.17706896,-0.34432396,-0.23787618,-0.80878067,0.094067164,257 +811,0.4194357,-0.047383368,-0.59614724,-0.18387966,-0.42945597,-0.081390694,-0.24508373,0.061316382,0.32383463,-0.22671212,-0.093355276,-0.1604021,0.059323873,0.3726677,-0.12284392,-0.91276425,0.07365666,0.12806447,-0.74158174,0.42342937,-0.4297429,0.6358444,0.17878039,0.46757922,-0.08201424,0.21679695,0.23789589,-0.101647206,-0.043170977,-0.387614,-0.19229154,0.11395293,-0.95031637,0.36662543,-0.02942619,-0.39525998,0.093988575,-0.4634305,-0.17916463,-0.66726404,0.16599865,-0.66054314,0.7759808,-0.038386002,-0.33850646,-0.13106884,0.11496299,0.106652655,-0.17911176,0.2403115,0.30578786,-0.49137148,-0.04309835,-0.33400837,-0.37284935,-0.8088781,-0.6929113,-0.09267952,-0.63826495,-0.19501317,-0.28120938,0.2386157,-0.4756074,-0.112563394,-0.13542992,0.2868273,-0.30217806,0.34016228,0.2123611,-0.30550268,0.13959268,-0.4075022,-0.19915895,-0.25577927,0.26573446,-0.14683937,-0.44103518,0.23632492,0.44341448,0.39961854,0.10700535,-0.2930301,-0.16782552,-0.23836017,-0.11077269,0.54081553,-0.113157034,-0.35288095,-0.1529995,-0.09143445,0.42341208,0.17918813,0.22549514,-0.24611033,-0.2156495,-0.12164873,-0.09424663,0.4685279,0.43578172,-0.24797992,-0.18576527,0.48625788,0.10068219,0.11293474,-0.21959907,0.34173527,-0.0554726,-0.57733494,-0.20100439,0.061259568,-0.0377343,0.55564964,-0.37349907,0.23778377,0.77993745,-0.38755986,-0.2969912,0.12937726,-0.05922919,-0.06104635,0.0047195554,0.0008171995,0.37454143,-0.47713408,-0.12598358,-0.34693277,0.771591,0.23838836,-0.7176574,0.2286858,-0.5967118,0.19094367,0.07220365,0.696506,0.9218819,0.71044713,0.25153333,0.8345062,-0.37637118,0.15799433,0.3264788,-0.40498015,0.12447243,-0.2376136,-0.092552684,-0.45895496,-0.012479126,0.12172396,-0.13801982,0.22522736,0.4730247,-0.5832609,-0.1787038,-0.024086952,0.54942083,-0.33006534,-0.23877032,1.0519258,0.91340715,1.1155256,0.31465396,1.4873133,0.3658495,-0.09855288,-0.1978925,0.024932051,-0.6766651,0.15403171,0.16984259,-0.6825104,0.52060753,0.05925176,0.13349135,0.15348952,-0.39949653,-0.17952223,0.10406538,0.3365295,-0.09380114,-0.46086845,-0.476517,-0.25357038,0.075878076,0.18688758,-0.06844447,0.3534757,-0.03917076,0.7784415,0.16516133,0.96703297,0.13444285,-0.12578674,-0.05503371,0.3516704,0.3309882,-0.19378674,-0.15996133,0.3029952,0.3340378,0.16709606,-0.51406354,-0.21062584,-0.30379143,-0.5225672,-0.42638907,-0.23757303,-0.07158921,-0.41172585,-0.08993537,-0.42087734,-0.041240517,-0.29536283,0.44170845,-2.1366975,-0.10531763,-0.0424228,0.44460413,0.049834087,-0.28376988,-0.25983724,-0.5590277,0.24183445,0.33171776,0.5287904,-0.8311338,0.27378845,0.36960152,-0.5472299,-0.44196478,-0.7367463,0.078971624,-0.060149837,0.26237464,-0.044599857,-0.2716296,-0.047372907,0.22296603,0.6666643,0.012857924,0.012719867,0.27169117,0.59524816,-0.2105742,0.3822002,0.16902453,0.60291666,-0.11967641,-0.20610213,0.30601326,-0.5749224,0.13976292,0.21382655,0.054215174,0.47721168,-0.64508957,-0.8310859,-0.5049126,-0.15889579,1.1013463,-0.33052993,-0.3717552,0.17285137,-0.17196123,-0.3357009,0.10368368,0.5823064,-0.32968128,0.26211238,-0.5071065,-0.14342242,-0.009021829,0.31854972,-0.083419226,0.12884021,-0.46585393,0.75756216,-0.2419206,0.38861904,0.3531811,0.12052205,-0.62708217,-0.59780276,0.08801583,1.0445257,0.4646615,0.15515853,-0.20946892,-0.18311162,-0.4066472,-0.21018922,0.11129838,0.60019004,0.73110914,-0.28847435,0.11522859,0.46340504,-0.17000856,0.26653695,-0.06010297,-0.17913692,-0.040178545,-0.04647966,0.6594102,0.91448736,-0.054991852,0.63535863,-0.11912131,0.5314603,-0.06538638,-0.6515057,0.60553217,1.1556221,-0.1473627,-0.34780923,0.6216211,0.09391091,-0.32270193,0.47678736,-0.34805354,-0.43144897,0.69503874,0.005982049,-0.47293937,0.43945512,-0.33258983,0.26643816,-1.055377,0.650933,0.06764459,-0.75650954,-0.6563126,-0.07873448,-3.2155876,0.16197066,-0.16323505,0.010261744,-0.31652638,-0.2564607,0.17632441,-0.63093597,-0.53930485,0.034175187,0.058772504,0.679801,-0.28537586,0.20804016,-0.2226742,-0.70548326,-0.1996376,0.47169712,0.18201673,0.27168727,-0.08471259,-0.26542807,0.1632392,-0.3193579,-0.5996153,-0.13454904,-0.7120514,-0.6305372,-0.05980349,-0.77782726,-0.33582583,0.86603904,-0.45874432,-0.052129537,-0.3335495,-0.013434917,-0.06756955,0.29463187,0.12797889,0.12343911,0.037723254,0.10487651,-0.039090145,-0.08329025,0.054303866,0.11263243,0.46756482,0.40356073,-0.26822135,0.3036367,0.51003975,0.6689603,-0.16207393,0.9384207,0.29121205,-0.16243832,0.27503204,-0.29581994,-0.5518511,-0.75505084,-0.40156606,-0.07881764,-0.57475585,-0.3227655,-0.07357114,-0.15884428,-0.8342543,0.62071323,0.078187875,-0.06326554,-0.078320764,0.553128,0.2099461,-0.060367335,0.07229813,-0.2033257,-0.34864983,-0.3586562,-0.24434292,-0.75762177,-0.69262415,0.019555554,1.3367977,-0.1304685,0.04531287,0.1822496,-0.13737021,0.21886922,0.050071478,0.25552475,0.18277471,0.33230624,-0.06513197,-0.6375571,0.41270038,-0.34055352,-0.10607401,-0.51588917,-0.035505075,0.8485184,-0.69907093,0.44572064,0.36161432,0.11067275,-0.055302966,-0.5416727,-0.17201935,0.10118725,-0.21808128,0.38300633,0.2341786,-0.7509392,0.52020574,0.16220967,-0.31523374,-0.47686458,0.45429423,-0.04796647,-0.09989443,0.17935993,0.4596169,-0.016931176,-0.11119618,-0.33087516,0.29581463,-0.45924807,0.20968175,0.18334514,0.07892612,0.28363794,0.008055736,-0.47507298,-0.81725186,0.13657744,-0.43800822,-0.5443799,-0.12905966,0.12624653,-0.0075326175,0.29339656,0.1236892,0.37048033,-0.41460872,0.2029597,-0.20524664,-0.2775903,0.5234681,0.51348233,0.37168816,-0.47812834,0.7579641,0.2597305,0.058084566,-0.16690779,-0.123331696,0.47241235,0.07655845,0.38020393,0.31480214,-0.18799703,0.0035764973,0.7129391,0.17032288,0.43544182,0.25341824,-0.16321106,0.20589156,0.2031855,0.36796236,0.12170291,-0.37867472,-0.047553603,-0.09752673,0.09590912,0.40670753,0.15974335,0.30947456,-0.11472395,-0.22584064,0.1260689,0.14535235,0.15206322,-1.4268818,0.3181699,0.40812823,0.5910304,0.5213247,0.14425293,-0.0018773079,0.6475261,-0.3504839,-0.10299765,0.16405986,0.034910966,-0.34343693,0.6414955,-0.6592241,0.46537623,-0.21272208,0.044530407,0.120016575,-0.00718156,0.28567854,1.210396,-0.11475015,0.18814509,-0.011480804,-0.16070713,0.10671725,-0.5265178,0.15648355,-0.33795705,-0.2697076,1.0031134,0.10023739,0.3283436,-0.29070345,0.08464196,0.13029462,-0.22985037,0.27050683,-0.10655543,-0.026391536,-0.3344696,-0.50878674,-0.19520806,0.6708757,0.0225548,0.009074244,0.10832996,-0.2556401,0.36096475,-0.10202669,0.032884855,-0.11496103,-0.55491793,-0.056579757,-0.54990745,-0.6877373,0.36538383,-0.305007,0.26967767,0.36801305,0.043649774,-0.21185462,0.1696185,0.3530507,0.6243671,0.1329159,-0.31599826,0.048687916,0.32107034,0.22374006,-0.50832564,0.010501553,-0.27632645,0.28381285,-0.55850875,0.4334532,-0.20095278,-0.46596608,-0.18776815,-0.10786741,-0.011911143,0.16113564,-0.053006966,-0.09427909,0.47144115,-0.0046389005,-0.09047085,-0.20380168,-0.36560395,0.3722545,0.16052961,-0.28174865,0.025654132,-0.07315689,-0.14471921,0.20084985,-0.02364107,0.42576978,0.2946187,0.024651637,-0.4308723,0.18886472,-0.05473401,0.49368533,0.19056995,0.0051469007,-0.25848457,-0.3756077,-0.23473279,0.33220518,-0.16194691,0.23862426,0.21012795,-0.27328745,0.8990653,0.19558054,1.3373631,-0.068301894,-0.5815549,0.19198602,0.53807455,0.09594711,-0.08934853,-0.25010693,1.4799781,0.53929585,-0.3572775,-0.14001486,-0.4983329,-0.30578637,0.165754,-0.30535713,-0.47514296,-0.04119646,-0.68087715,-0.24484126,0.14425233,0.06346791,-0.011135836,-0.055446487,-0.013155547,0.30408636,0.09152617,0.15531369,-0.6624961,0.019280681,0.3548995,0.16802692,-0.09060213,0.114361525,-0.36623612,0.38613245,-0.6658525,0.35712442,-0.38488337,0.23094706,-0.054972295,-0.3744429,0.25209776,0.16649188,0.261807,-0.4100765,-0.26172101,-0.3047662,0.5810651,0.11553117,0.275661,0.7884074,-0.27781245,-0.13738662,0.04363958,0.5529277,1.4847131,-0.006875401,0.053200077,0.40788546,-0.4742163,-0.544015,0.26645464,-0.38928404,0.012132118,-0.21188492,-0.44133094,-0.52783376,0.1406448,0.08925312,0.27351877,0.15630805,-0.44836077,-0.1359172,0.2989428,-0.5520482,-0.22866912,-0.31477574,0.304616,0.75016737,-0.32958075,-0.5234795,-0.067923464,0.08912906,-0.30881485,-0.6952441,-0.024715463,-0.05467506,0.45231986,0.11123779,-0.3561875,0.036841303,0.21379405,-0.4828886,0.23963551,0.43811262,-0.37144062,0.08640593,-0.28468677,-0.095855676,0.83336586,-0.23060738,0.1734643,-0.50969595,-0.70425415,-0.8615772,-0.4668815,0.099557765,0.33213308,0.06291308,-0.74619204,-0.1815493,-0.004303848,-0.15896408,0.10588208,-0.5002869,0.38797727,0.2358994,0.54824424,-0.2704277,-1.2569141,0.18099642,0.25945306,-0.13128658,-0.7571502,0.5463787,-0.1173189,0.7223237,0.21084853,-0.029060883,0.46317366,-0.63928634,0.35846654,-0.06721794,-0.025724495,-0.5723732,0.055997167,261 +812,0.25515553,-0.1966867,-0.41208756,-0.29867846,-0.44896117,0.16726035,-0.23658586,0.44846526,0.20281525,-0.39290845,-0.14534055,-0.07544453,-0.019163245,0.18524718,-0.106972136,-0.49251947,-0.16229174,0.10499724,-0.59649247,0.43770227,-0.53005874,0.3961018,0.039102037,0.33738363,0.047330316,0.3063145,0.38851795,0.026233098,0.3069794,-0.23423259,-0.057445794,0.14420201,-0.6052608,0.39007154,-0.35891452,-0.40549326,0.19930522,-0.18604434,0.01857998,-0.5641493,0.15741472,-0.7879445,0.55007327,-0.043607872,-0.1797752,0.21583648,0.48406497,0.19162875,-0.19575675,-0.16643555,0.19095016,-0.19696437,-0.13795058,-0.25802588,-0.16624933,-0.50137097,-0.4236308,0.03364493,-0.650408,-0.35488272,-0.2973598,0.25934163,-0.30813023,0.04353041,-0.15686522,0.33366325,-0.33878002,-0.00509653,0.20161664,-0.3210859,0.18868856,-0.57188314,-0.07087914,-0.1510127,0.3510214,0.04133301,-0.0088805305,0.35698524,0.22995673,0.4691422,0.23221998,-0.2631529,-0.240876,-0.39896035,0.050212022,0.38333055,-0.1285689,-0.15601276,-0.31266734,-0.089440435,0.3227001,0.37257275,0.1061461,0.0038185965,0.111559935,-0.36165848,-0.2670711,0.6546822,0.38792896,-0.38301015,-0.45233586,0.22909625,0.66378444,0.09133182,-0.4001358,-0.039834145,-0.054809228,-0.43871906,-0.2433265,0.019179128,-0.06870059,0.28930524,-0.11028186,0.040586695,0.81995326,-0.12017473,-0.06246516,0.06304395,0.0020893465,0.013208471,-0.36279276,-0.035386577,0.19875242,-0.6654896,-0.07601982,-0.31590018,0.69513035,-0.015928933,-0.60565275,0.4199967,-0.650191,0.1401638,-0.0020372719,0.5158985,0.42960504,0.5100679,0.11277837,0.69386894,-0.19113411,0.014791623,-0.100010686,-0.09803928,0.17875095,-0.3746415,0.1135203,-0.37395713,0.46668157,-0.15366602,0.3241864,-0.07638976,0.2900935,-0.5969122,-0.1411301,0.51980114,0.76549023,-0.2625362,-0.12449023,0.5790239,1.0699731,0.9747662,-0.16962965,1.3169609,0.05684047,-0.18727557,-0.026403138,0.07861039,-0.53774196,0.1523277,0.36388174,0.24149406,0.22701347,0.01572486,0.07125244,0.23167036,-0.27896217,-0.15801115,-0.08437743,0.3118715,0.12010724,-0.03087213,-0.45715427,-0.27114165,0.34070656,-0.09081764,0.2702903,0.17652409,-0.1777054,0.35188735,0.039243665,0.912615,-0.051661015,0.16359015,0.21554606,0.4764043,0.18296526,0.073049225,0.061210405,0.3965486,0.1504835,0.16421093,-0.54175013,0.3149965,-0.34029174,-0.43712243,-0.087118186,-0.5244098,-0.39653865,0.07831807,-0.25030854,-0.33530334,-0.21571581,-0.2926648,0.25713035,-2.9152424,-0.2948067,-0.20301203,0.21799631,-0.2219008,-0.065385886,-0.06076728,-0.46174464,0.3033811,0.38293815,0.4547052,-0.46743786,0.39165553,0.7919113,-0.5287412,-0.29000777,-0.50636226,-0.13344811,-0.06183639,0.6570244,0.13880892,-0.18355553,-0.3816376,0.19456935,0.7216597,0.1344564,0.298242,0.42198193,0.417956,-0.11770066,0.59549624,0.0037095894,0.56677145,-0.4784684,-0.113492765,0.39444816,-0.39110804,0.2960598,-0.32622382,0.022452572,0.50555414,-0.39284006,-0.82530683,-0.5563696,-0.3554192,1.1912012,-0.190399,-0.3562484,0.10709492,-0.24042736,-0.084911235,0.005629744,0.42166606,-0.03748088,0.27020338,-0.5562854,0.1552409,-0.10388418,0.2245388,-0.083569825,-0.07712337,-0.46852192,0.94524837,-0.037773278,0.51720715,0.1458777,0.1994756,-0.20805354,-0.20575555,-0.033469822,0.8218918,0.50002354,-0.07382298,-0.2250719,-0.27892622,-0.2524632,-0.20252614,0.0046981126,0.6419479,0.6323516,-0.06323714,0.16961806,0.36067513,-0.054353457,0.07087094,-0.13090485,-0.18351395,-0.20373571,0.10623461,0.44798508,0.72722775,-0.071743764,0.16163029,-0.0669887,0.3555907,-0.14439386,-0.5230646,0.32200432,0.31372732,-0.043673858,0.038194917,0.87657523,0.6356322,-0.4083345,0.48534563,-0.75651664,-0.39122653,0.70942384,-0.27329934,-0.48171556,0.020072797,-0.28281954,-0.09736198,-0.63435966,0.19840634,-0.45864725,-0.40778527,-0.30289972,-0.22586574,-3.2956512,0.34063396,-0.15837342,0.030140469,-0.51113623,-0.08739019,0.21797194,-0.5883518,-0.6494088,0.09207957,0.2472726,0.45961905,-0.13740472,0.08042974,-0.35896996,-0.3764533,0.05958885,0.3444368,-0.074074395,0.09330537,-0.34086296,-0.2681431,-0.028391758,-0.10031054,-0.38962594,0.1765574,-0.50255495,-0.36209598,0.030700123,-0.37393725,-0.17253838,0.641599,-0.39260614,-0.018409438,-0.30754474,0.09094892,-0.11253264,0.056509193,0.019546192,0.17172682,0.29096678,-0.14160888,-0.052444693,-0.44978067,0.6438544,-0.018247373,0.49349287,0.1576597,-0.1345702,-0.07730196,0.3281935,0.4744433,-0.14302045,1.0385004,0.082750574,0.04123644,0.49757507,-0.13237204,-0.43938938,-0.5660792,-0.06626731,0.02255108,-0.34296545,-0.44835648,0.21971373,-0.2155125,-0.8151464,0.7242592,-0.07242813,0.28245082,-0.24442701,0.33906934,0.23172761,-0.21577843,0.009232941,-0.16024478,-0.0958815,-0.5104349,-0.3956289,-0.75629044,-0.43849155,0.049847152,0.9838298,-0.4315841,0.076019876,0.08742174,-0.09109185,0.2402876,0.28691366,0.31342146,0.23839836,0.62546104,0.16135652,-0.6565669,0.53062516,-0.039079923,-0.18919308,-0.22416604,0.21471684,0.63344926,-0.72930217,0.3689866,0.51057225,-0.02101705,-0.019445807,-0.59856755,-0.011633324,-0.12216226,-0.22074513,0.4794909,0.07038782,-1.046513,0.5133619,0.07863464,-0.41416702,-0.8123161,0.34105828,-0.25127482,-0.10242259,-0.27261522,0.32120243,0.3382772,-0.05070745,0.15624194,0.14831017,-0.38681853,0.16210797,-0.07129576,-0.038364545,0.45265317,-0.07361826,-0.28582242,-0.66716814,0.040759664,-0.5766093,-0.3555212,0.3342564,-0.20566587,-0.1977082,0.46784958,0.06197242,0.44641376,-0.14159708,0.1732239,0.18881333,-0.4327036,0.3809979,0.38936362,0.42016473,-0.3787069,0.55892557,0.12357711,-0.08000908,0.063147545,-0.111130476,0.38764933,-0.16187616,0.4684296,-0.18472885,0.029867344,0.39019,0.73044604,0.21328676,0.27474615,0.061495874,-0.04230622,0.42766532,-0.14782281,0.03625823,-0.030112125,-0.65894026,0.07586237,-0.023645878,0.02918312,0.46341094,0.18764639,0.46113953,0.11633899,-0.032722984,0.06273954,0.18646318,-0.20003681,-0.9361987,-0.031193087,0.15240227,0.8824312,0.40677294,0.21367896,0.010207255,0.78131104,-0.29160175,-0.062656455,0.52683824,0.098101676,-0.24027729,0.81199217,-0.39570796,0.41647515,-0.32023677,-0.068896085,0.059547108,0.119149365,0.44222435,0.9216407,-0.19335563,-0.069972716,0.025971415,-0.14859004,0.07912898,-0.36371335,0.16248824,-0.22622813,-0.1284614,0.65662974,0.3043009,0.31379178,-0.33216542,-0.02834489,0.064343475,-0.16255379,0.23211135,-0.18096708,-0.08109378,0.022245735,-0.28149247,0.042183246,0.4912665,0.24554805,0.30132654,-0.20058638,-0.40229544,0.1532195,0.057892084,0.11176769,0.053769868,-0.58790326,0.19194539,-0.026333908,-0.6471284,0.6005459,-0.15670164,-0.075202264,0.34892967,-0.105475456,-0.015524119,0.10401984,0.11447116,0.49440444,-0.028107742,-0.067382075,-0.31670555,-0.10842493,0.06537081,-0.3533591,0.15358424,-0.3888924,0.28602627,-0.5937108,0.48526993,-0.21253853,-0.5366456,0.10029838,-0.25574502,-0.14572714,0.44220492,0.1891769,0.035333563,-0.026851118,-0.2065342,-0.22318156,-0.1593493,-0.19737077,0.1986345,-0.0018329421,-0.1487787,-0.20727472,-0.32898927,-0.08001151,0.33654535,-0.013577677,0.2916932,0.19605888,-0.11710695,-0.2801852,0.38067952,0.03271612,0.36233974,-0.02070733,0.056124583,-0.1302252,-0.28784496,-0.24954556,0.57130235,-0.07959921,0.025966525,0.17520912,-0.30880928,0.80335885,-0.18383169,1.0273099,0.014276721,-0.37082878,0.15961947,0.6782561,-0.059616398,0.12852459,-0.40007272,0.867443,0.53644735,-0.20751162,-0.20133577,-0.4493189,0.010960023,0.1637164,-0.42130122,-0.10526329,-0.12928171,-0.53188556,-0.33482042,0.18044071,0.24402583,0.21620707,-0.10552464,0.032432564,0.16871877,0.14469649,0.6259678,-0.60143566,-0.27985516,0.24382329,0.26049435,-0.2677118,0.16417153,-0.3493434,0.4089702,-0.77856207,0.23586214,-0.471737,-0.088295996,-0.49632147,-0.22450064,0.054071482,-0.13452335,0.28260913,-0.20958717,-0.43484473,0.01662516,0.16532008,0.05704552,0.23558338,0.5678134,-0.29871318,-0.071713895,0.017246911,0.49908185,1.0074017,-0.24629152,-0.18269612,0.16958404,-0.35502282,-0.6236436,0.26311827,-0.5787378,0.084724806,0.06145213,-0.42748252,-0.15624748,0.30024707,0.39168668,0.021708885,0.1571597,-0.60719305,-0.12607016,0.12612525,-0.27243173,-0.20670378,-0.08149194,0.16593117,0.7785129,-0.21243478,-0.2133165,-0.10329809,0.43564382,-0.31272903,-0.8406102,0.01650542,-0.35853466,0.5198391,0.13383222,-0.14301375,-0.07075108,0.13353355,-0.5722836,0.15834947,0.40469286,-0.32813928,-0.027890896,-0.3970313,0.25928047,0.7806256,0.014584293,-0.14502841,-0.3917532,-0.5009942,-0.8980794,-0.41265365,0.06363133,0.17257781,-0.09724533,-0.15777259,-0.10358065,-0.2352478,-0.22560513,0.17847352,-0.47004166,0.20897694,0.15961818,0.5120968,-0.2955936,-1.0507402,0.060581367,0.19626057,-0.00021928549,-0.5678937,0.46153346,-0.25863716,0.7062046,0.22008024,-0.26665887,-0.029691659,-0.35197803,0.29505172,-0.3856841,-0.08145597,-0.58784634,0.14979358,268 +813,0.66734296,-0.29792315,-0.68798035,-0.14355241,-0.2187432,0.010019444,-0.075561054,0.3545662,0.4115931,-0.52918607,-0.05889061,-0.05817233,0.23897314,-0.016560277,-0.17249556,-0.4231286,0.12078485,0.22894807,-0.41787472,0.6476387,-0.34694767,0.1027318,0.067005016,0.35439026,-0.13025856,0.19385822,-0.09461259,0.03439927,-0.1390263,-0.035164174,-0.08146825,0.36773777,-0.74821883,0.29741958,-0.14461733,-0.20211278,-0.1387301,-0.37595537,-0.28168514,-0.83567053,0.22476391,-0.9861868,0.5332412,0.31124985,-0.43515816,0.028868387,0.13865441,0.26770815,-0.2640263,-0.057630602,0.10657299,-0.21878265,-0.16375762,-0.21458225,-0.12651004,-0.46625447,-0.648013,-0.040197812,-0.5445681,0.07501483,-0.20979585,0.21950941,-0.17053936,-0.09006715,-0.22608262,0.7096944,-0.29398015,0.02181676,0.2992855,-0.2797159,0.6656906,-0.66910386,-0.092315875,-0.21917601,0.07552355,-0.16184811,-0.6011173,0.06225084,0.37859464,0.59761524,-0.052180443,-0.28757405,-0.4699615,0.11122503,0.11925904,0.20008735,-0.17099734,-0.62854594,-0.16632175,0.011915331,0.13628203,0.16377448,0.2871449,-0.5273009,-0.019702235,0.07841512,-0.24582845,0.5273883,0.5569535,-0.36089277,-0.19917025,0.26422724,0.87073827,0.08671749,-0.10967403,-0.14605872,0.05620562,-0.6512959,-0.12500389,0.38405347,-0.32161835,0.7491212,-0.17895806,-0.0028653939,0.5219222,-0.33652863,-0.31512454,0.44451022,0.12441218,-0.028962672,-0.5962758,-0.3102879,0.38466525,-0.5030734,-0.013348843,-0.37965968,0.615936,0.0464965,-0.7329109,0.2614093,-0.51626456,0.089566864,-0.1285815,0.53928584,0.77269816,0.6117272,0.2804939,0.90673494,-0.541317,-0.0758395,-0.22860259,-0.33453688,0.35198462,-0.23016918,0.12798396,-0.50565785,-0.070765935,-0.13236736,-0.3276324,0.0731749,0.38873097,-0.6394691,-0.21767287,0.3027301,0.5842908,-0.1835882,-0.31901547,0.5982565,1.1408211,1.0345635,0.2693995,1.3677925,0.072377905,-0.10130942,0.16259561,-0.00852409,-0.8105552,0.38332787,0.316087,0.12934652,0.33115005,0.16933538,0.056944888,0.4326638,-0.4328513,-0.0048488975,-0.21918242,0.43733826,0.051454965,-0.15899156,-0.3861123,-0.17423137,-0.059450123,0.17486525,-0.062956,0.19348331,-0.29552516,0.12543696,0.1608757,1.3178042,-0.2964275,-0.03604106,-0.019557891,0.32979414,0.3287594,-0.13216701,-0.005932192,0.47274947,0.16726579,0.46525493,-0.5124721,0.04726556,-0.2174509,-0.4042265,-0.13164856,-0.29171282,0.099486865,-0.10025511,-0.4424139,-0.18558311,-0.046494175,-0.3443817,0.589523,-2.6563642,-0.08104221,-0.029770022,0.32985404,-0.32623965,-0.45945033,-0.10384368,-0.48931065,0.263741,0.34927547,0.5428125,-0.7734892,0.344595,0.3751203,-0.64388084,-0.05275948,-0.8144881,-0.21560758,-0.1661811,0.28101072,0.3173936,-0.19604214,0.098141044,0.16787875,0.55372167,-0.023318449,0.010761117,0.2809126,0.16828275,-0.21541424,0.6051037,-0.023003886,0.51423043,-0.24794875,-0.28727704,0.3722882,-0.47970644,0.23107727,0.19269802,0.060058344,0.55488724,-0.33601752,-1.0215048,-0.99096555,-0.009124239,1.0229836,-0.22486454,-0.5377791,0.07426169,-0.6068871,-0.5115497,-0.059900954,0.40022424,0.07563177,0.07027815,-0.9682732,0.0006566371,-0.08215789,0.51399344,-0.007284593,-0.08943677,-0.51343614,0.85339755,0.010565554,0.5258826,0.50047857,0.21906845,-0.46146348,-0.37217972,-0.07314595,1.1837198,0.30747995,0.16669677,-0.32277367,-0.13857335,-0.39485207,0.30141228,0.12529017,0.6879634,0.53359216,-0.17556441,-0.006306452,0.31926748,-0.11943152,-0.05332172,-0.045575332,-0.4510169,-0.25474086,-0.017003788,0.5411184,0.97541,-0.30418783,0.29008597,-0.12203476,0.2861967,-0.041222636,-0.59438807,0.685517,1.0851401,-0.15808432,-0.4502301,0.73549956,0.46547988,-0.4380933,0.61839384,-0.635153,-0.35454345,0.20346981,-0.07728114,-0.36672768,0.19469096,-0.5030687,0.22481062,-0.8251691,0.41792837,-0.39789057,-0.2985265,-0.5835394,-0.18685041,-3.0305092,0.38915506,-0.086389065,-0.075017504,-0.19354261,-0.05493878,0.1699814,-0.7180353,-0.63746834,0.13158834,0.14667094,0.5085427,-0.18656397,-0.15784012,-0.18282723,-0.44812676,-0.075938806,0.2683725,0.12566088,0.17957373,0.02052194,-0.5040005,-0.076339774,-0.06259187,-0.28203186,0.0838485,-0.734422,-0.577863,-0.17660461,-0.6144324,-0.41489485,0.7306908,-0.3692809,0.022641147,-0.21872075,0.11733063,0.14875081,0.27985758,-0.067302234,0.26318082,0.026985893,-0.015214008,-0.07589888,-0.23443882,0.009709935,0.08536935,0.09265951,0.5342485,-0.22514008,0.264025,0.6821043,0.8275363,-0.25773147,0.84873223,0.64019233,-0.046134915,0.25966635,0.012523711,-0.34988773,-0.6383666,-0.16004176,-0.102003485,-0.65495086,-0.067104526,0.19072656,-0.3393533,-0.79549474,0.60223025,-0.0025944065,0.028199509,0.165218,0.60720056,0.63520354,-0.45075926,0.036484342,-0.0036924034,-0.30185804,-0.53456247,-0.421427,-0.46947336,-0.27902135,0.0660558,1.0404825,-0.22721612,0.124214835,0.29270878,0.12827753,0.1742597,0.2618916,-0.046709526,0.057893377,0.65699416,0.067697145,-0.42868063,0.36454523,-0.17841537,-0.18090926,-0.5017765,0.5412416,0.54578876,-0.66149193,0.67217714,0.38113102,-0.021355035,-0.2753801,-0.6158766,-0.22914724,0.05687407,-0.18488626,0.5458135,0.38868967,-0.9212523,0.20679253,0.25387743,-0.22274087,-0.5867359,0.566575,-0.18774669,-0.4211378,-0.4552435,0.43302557,0.060893435,0.22579814,-0.24154234,0.14744236,-0.49485275,0.01516745,0.32304177,-0.03196935,0.22083814,-0.09514129,-0.069569714,-0.87457013,-0.011133577,-0.5949153,-0.37392488,0.5181847,0.040606398,0.117507644,0.18588586,0.1839183,0.4024117,-0.37512675,0.12167245,-0.10582922,-0.25825024,0.57509667,0.5093465,0.57964855,-0.5562583,0.49531397,-0.013941172,-0.03998199,-0.31131104,0.004541099,0.5216959,0.025058405,0.46844077,-0.0020578105,-0.038326126,0.33248857,0.70142823,0.08099394,0.39042425,0.03300979,0.04425313,0.14459261,0.06925821,0.34382543,-0.14712408,-0.62057847,0.2612917,-0.39336303,0.13386126,0.3524394,0.018954262,0.23007576,-0.034227256,-0.30548155,-0.1308678,0.33424306,0.08113403,-1.4853948,0.29372895,0.30965933,0.7840226,0.6283272,0.10109365,0.02907625,0.65697515,-0.17083369,0.19020343,0.2984614,-0.07558683,-0.30127493,0.550149,-0.8221505,0.46326497,-0.14303546,-0.001719296,-0.101212464,-0.26923436,0.41958317,1.0050378,-0.29193893,0.13109067,-0.116395004,-0.1401561,0.17112036,-0.5521973,0.12008426,-0.6090221,-0.48964572,0.7149417,0.46075293,0.7572022,-0.26754656,-0.09614595,0.16483861,-0.10294505,0.24305458,-0.19080837,0.036368325,0.18242204,-0.6753531,0.10613936,0.51607925,0.06298938,0.11894404,-0.12572816,-0.124822944,0.19251406,-0.014561787,-0.14170301,-0.11135521,-0.7026894,-0.17926876,-0.35148337,-0.34723726,0.73032445,-0.2348602,-0.010725384,0.14738162,0.060123812,-0.27534142,0.4781634,0.29867157,0.77288324,0.23393331,0.046403587,-0.546002,0.3483559,-0.011566904,-0.09610861,0.027491877,-0.288999,0.17254792,-0.5881818,0.36486563,-0.15626703,-0.58751196,0.0037041008,-0.031902496,0.19057679,0.65596443,-0.33317468,-0.42380178,-0.04892453,-0.19807325,-0.14755072,-0.1463827,-0.0013711428,0.33030188,0.06402423,0.026497401,-0.0980958,-0.15113294,-0.07606316,0.1802603,0.1774354,0.30163956,0.38815752,0.17702867,-0.4421327,0.13633005,0.1510207,0.6665346,-0.13532926,-0.20633669,-0.19668019,-0.37478605,-0.4753085,0.030492002,0.05875137,0.3132674,0.19574372,-0.15825723,1.0160861,0.05948494,1.4823428,-0.076220416,-0.3486645,-0.026894122,0.584278,-0.083589695,-0.026604056,-0.41922235,0.9839938,0.4486018,-0.20800997,-0.088534735,-0.48209152,-0.036704708,0.00788791,-0.15461524,0.12353476,-0.04483221,-0.7632163,-0.21738863,0.23945688,0.44408986,0.2659666,-0.13177209,0.1381832,0.33923134,-0.053546607,0.21529157,-0.45004225,0.10535377,0.19940609,0.42046392,0.022305219,0.12500823,-0.39931628,0.2995235,-0.56072,0.019414088,-0.2550329,0.11204943,-0.15658249,-0.2796334,0.2923046,-0.032877166,0.36396965,-0.48175207,-0.4186318,-0.17860979,0.5595281,0.24431546,0.09244258,0.8134992,-0.05849569,-0.06463169,0.09310884,0.51225895,1.0574998,-0.3921859,-0.060659643,0.28704345,-0.4453626,-0.73160815,0.2973673,-0.38362575,0.28259596,-0.010315935,-0.35669217,-0.5539411,0.17267872,0.19181556,-0.0411488,0.044706147,-0.6707017,0.041899323,0.21916099,-0.45417896,-0.03231789,-0.07327784,0.23515171,0.48237845,-0.16280304,-0.41297355,0.11058404,0.2888716,-0.06623327,-0.48813525,-0.23103024,-0.40290782,0.22495122,0.117506824,-0.4621748,-0.05718595,0.10681168,-0.66702765,-0.013070817,0.16523373,-0.20317914,0.26078248,-0.43660906,-0.14579095,0.8498602,-0.0386619,0.2590142,-0.39977947,-0.52372724,-0.85204935,-0.04613437,0.18146504,-0.10327328,0.020960242,-0.7326698,-0.08946928,-0.15858632,-0.104869045,-0.123468876,-0.30943432,0.71756434,0.13760161,0.39480445,-0.1511582,-0.9160586,0.20915298,0.18701184,0.13428394,-0.66211545,0.4255601,0.04086053,0.8423147,0.03260571,0.22764201,0.48231032,-0.7303602,0.05010371,-0.2483811,-0.10938952,-0.6844538,-0.0938208,269 +814,0.62466854,-0.17467098,-0.36381137,-0.16267124,-0.13292828,-0.14101972,-0.16904472,0.51446366,0.3377231,-0.43275285,-0.24754375,-0.28087926,0.08407062,0.27603224,-0.12754099,-0.7289093,-0.024919642,0.14204513,-0.45757368,0.5296087,-0.50353867,0.4028356,0.016097903,0.35252205,0.19071116,0.3343524,0.10659551,-0.05494404,-0.14555392,-0.27600658,0.007895728,-0.084589295,-0.67763335,0.14010838,-0.121623315,-0.4809812,-0.1325707,-0.63186485,-0.43260872,-0.775657,0.36322105,-0.86230594,0.5425108,0.1376939,-0.20608665,0.32739875,-0.041227683,0.25073987,-0.16228214,0.13129126,0.14361045,0.05544688,0.0187835,-0.18163736,-0.16552508,-0.28202644,-0.72043705,0.14889035,-0.30437222,-0.31165886,-0.30986366,0.11089623,-0.3908516,0.06833083,0.03544603,0.46449235,-0.33419958,0.12963408,0.085309826,-0.14394994,0.24014384,-0.5023878,-0.23368175,-0.050246764,0.27210602,-0.22706078,-0.2101901,0.23405273,0.098735474,0.46891,-0.043714833,-0.17233527,-0.36024654,-0.06657522,0.115488835,0.57805306,-0.15134108,-0.42474428,-0.027742976,0.06925357,0.17351745,0.078189634,0.2344501,-0.23512469,-0.21455006,-0.061821535,-0.3377124,0.44542703,0.65604347,-0.32422593,-0.34108782,0.38282552,0.46647266,0.11359451,0.013233635,0.09519703,0.055751085,-0.529505,-0.18488139,-0.08186984,-0.13674913,0.41379383,-0.17867184,0.3466333,0.66434485,-0.18047278,0.05193119,0.10882636,-0.047807544,-0.039783314,-0.13430369,-0.34205922,0.25994638,-0.35516396,0.13201238,-0.3092718,0.9149625,0.10549199,-0.8789704,0.43011543,-0.63132715,0.1878789,-0.0019468889,0.52195805,0.7343824,0.27013433,0.46919844,0.7451866,-0.3697505,0.03722597,-0.06815388,-0.29171035,0.13507219,-0.1979746,0.15760882,-0.46678004,-0.16620706,0.17789257,-0.2817983,0.31367436,0.420208,-0.41410804,-0.0036030586,0.22704656,0.77434736,-0.2611886,-0.005550603,0.81264144,1.0797782,1.2290459,0.18142498,1.1571913,0.20288368,-0.3215487,0.24437697,-0.43115857,-0.72579986,0.3674222,0.3457954,0.022631636,0.36812115,0.050779354,-0.028627358,0.2556418,-0.45297205,0.19517384,-0.042628895,0.16722552,0.12654684,-0.1633578,-0.42820367,-0.32256907,-0.28952056,0.044348095,0.13958402,0.20781802,-0.27682662,0.2724277,-0.0076111034,1.6410574,-0.051858947,0.038719755,0.004052773,0.52659845,0.10575231,-0.30037642,-0.08589532,0.050599594,0.4898812,0.05359366,-0.7062728,-0.025200313,-0.127971,-0.3257814,-0.18735804,-0.37559834,-0.07735147,0.008653666,-0.32064202,-0.20385742,-0.22622909,-0.48237142,0.31498915,-2.6864948,-0.29219666,-0.0010021074,0.41913858,-0.09280589,-0.3380569,-0.20908575,-0.5791526,0.40636587,0.40863252,0.46790454,-0.6454901,0.32233772,0.50887305,-0.57832026,-0.14769414,-0.7316415,0.16530032,-0.14381932,0.16751766,0.019547412,0.0071774223,-0.0450269,0.17618968,0.4553635,0.17345206,0.036865354,0.27829173,0.42143095,-0.060936723,0.5275709,-0.10282899,0.39928016,-0.087458275,-0.10657537,0.22408895,-0.43834043,0.0021290828,-0.27890137,0.16904391,0.39622116,-0.6600233,-0.8351753,-0.67255473,-0.27340993,1.1633979,-0.04428209,-0.39863643,0.41978648,-0.27498814,-0.3480188,-0.106259316,0.6058608,-0.17691243,-0.27094707,-0.74668473,-0.13438402,-0.1049413,0.14234768,0.021727404,-0.11454698,-0.54947466,0.71049196,-0.05200073,0.45047972,0.22704624,0.15580194,-0.08475224,-0.41105676,0.170623,1.1118474,0.33665502,0.19134527,-0.46115747,-0.1508201,-0.41675165,-0.1558624,0.05704367,0.49027,0.7251981,-0.16512837,0.08997389,0.25471762,0.13747026,0.058907498,-0.0863539,-0.13205975,-0.08034004,-0.12851296,0.66818887,0.79847425,-0.20332539,0.4219365,-0.12549625,0.19015495,-0.28513822,-0.30355844,0.6660095,0.81722736,0.062797,-0.28786218,0.57281214,0.26642075,-0.25709036,0.5899386,-0.54426044,-0.2508603,0.2831501,-0.18863487,-0.3405061,0.28500295,-0.34224573,0.10820412,-0.88340807,0.4047977,-0.050432414,-0.38548803,-0.46661785,-0.13241057,-3.161959,0.076980405,-0.095552355,-0.25217724,-0.14779384,-0.17013562,0.1665258,-0.5449248,-0.67368674,0.24867003,0.14314882,0.8698039,-0.09302781,0.1842426,-0.044461053,-0.27483776,-0.5829119,0.013448074,0.079001844,0.5164264,0.29229534,-0.19562449,-0.018595317,-0.08705574,-0.34806976,0.0597759,-0.40199742,-0.48011932,-0.19345044,-0.51984847,-0.39685822,0.65621173,-0.16928594,0.12553011,-0.2505305,-0.13016985,-0.22574066,0.3924938,0.03901334,0.029104972,0.04622079,0.03466473,0.12725402,-0.1377065,0.42401528,0.0073569543,0.34023073,0.41528782,-0.24759108,0.30669641,0.48763037,0.637014,-0.20976727,0.87770104,0.52476704,-0.016786143,0.110268496,-0.2792218,-0.08763391,-0.43518475,-0.33712342,0.02401209,-0.44150198,-0.46513334,-0.19816941,-0.31961006,-0.7257714,0.34427288,-0.059868127,0.16109045,0.087468766,0.17314748,0.3865167,0.111380555,-0.06834083,-0.0402852,-0.069594726,-0.46409306,-0.11387929,-0.72237676,-0.4349403,0.3364023,0.97610664,-0.12715481,-0.021427734,0.13455446,-0.09483108,0.042627454,0.079066865,-0.04364224,-0.023857147,0.39548254,0.049666498,-0.6668808,0.35873505,-0.12784117,-0.1707126,-0.7383624,0.15670575,0.66294205,-0.61214966,0.44494104,0.18984295,0.08047106,-0.08348546,-0.2918788,-0.23186083,-0.14636397,-0.17012094,0.2764959,0.102762915,-0.7160363,0.37637135,0.2585163,-0.25441423,-0.80922526,0.3558807,0.023738503,-0.39811173,-0.006535977,0.190585,0.14015819,0.11121389,-0.16473,0.1760572,-0.4287405,0.26409736,0.23265226,0.0012441179,0.3296258,-0.0628207,-0.081921756,-0.74657106,-0.115309514,-0.34301448,-0.3234669,-0.079889454,0.22163306,0.29305705,0.3180416,0.16995388,0.3710904,-0.24390705,0.18029375,-0.14252396,-0.20394814,0.3513708,0.27849147,0.4583324,-0.45200387,0.61565036,0.13531381,-0.09135971,-0.040943265,-0.09167632,0.34363547,0.02933151,0.19841714,0.09711987,-0.3092005,0.21333313,0.6245864,0.24309272,0.3634921,0.22462623,-0.104205914,0.29733673,0.11734662,0.20195095,0.05687636,-0.622152,0.04797725,-0.3232068,0.050060153,0.42775726,0.16001299,0.29618564,-0.08588529,-0.40696236,-0.029624276,0.24249434,-0.21586885,-1.3017913,0.3120745,0.025032332,0.83106667,0.69344896,-0.08451445,0.07795405,0.67820174,-0.12848152,0.118451186,0.10769778,-0.032689247,-0.44807947,0.54032356,-0.73359203,0.52514493,0.06653663,-0.0057477057,-0.14864771,0.0028817256,0.34481737,0.6251981,-0.08602518,0.10207021,-0.12641221,-0.15938921,0.06686697,-0.4796737,0.16792692,-0.59929127,-0.16776125,0.8235794,0.38948116,0.31596792,-0.03390785,0.116653584,-0.06036295,-0.07250147,0.011540013,0.054036256,-0.13753006,0.043743666,-0.7179932,-0.14461574,0.49463293,-0.049285233,0.11735288,-0.07326694,-0.20076077,0.08669891,-0.17424,-0.17710944,-0.08139068,-0.7073136,-0.007799434,-0.38802147,-0.40539503,0.33879617,0.011396021,0.32593223,0.28378078,0.07149785,-0.09019657,0.2247699,0.3253793,0.629093,-0.0038121268,-0.21341912,-0.25303793,0.38057008,0.14457472,-0.3071064,-0.11071804,-0.24162014,0.07696799,-0.5040545,0.4926068,0.05355571,-0.44546333,0.13911904,-0.060499728,0.09434769,0.60929817,-0.28203493,0.08395952,0.17705323,-0.32836178,-0.19300641,-0.11886569,-0.177377,0.35677636,0.32171246,-0.32446033,-0.018089399,-0.04656376,-0.1030185,0.44750044,-0.018053109,0.49110404,0.30928397,0.16731064,-0.32125357,-0.21365409,0.09183667,0.5372507,0.06428825,-0.25167918,-0.34084985,-0.4796978,-0.3740835,0.30353534,-0.0059860647,0.316509,0.08677909,-0.2766544,0.48551962,0.2293167,1.0484983,0.12338904,-0.37458804,0.25343737,0.37353468,0.040619433,-0.16236825,-0.40106758,0.9954457,0.4468534,-0.21726508,-0.16455881,-0.49169174,-0.09292845,0.13237907,-0.2562026,-0.17071618,0.083559126,-0.6745073,-0.481145,0.2767479,0.15125446,0.1396888,-0.12894756,0.29054818,0.1994618,-0.037344407,0.32413396,-0.3678311,-0.25494373,0.31725898,0.12016994,0.19869228,0.02406554,-0.47622204,0.29803288,-0.47117588,0.00060183805,-0.19985111,0.15488811,-0.08515888,-0.2894441,0.3482273,0.38597548,0.5288263,-0.41576,-0.5143669,-0.3619316,0.46629825,-0.02131997,0.18643107,0.4020457,-0.23425107,0.071826614,-0.012217847,0.6322438,1.2837783,0.04568285,0.29899478,0.48931184,-0.4389172,-0.5869991,0.26342484,-0.24268796,0.12747765,-0.020340623,-0.22114724,-0.60554165,0.13839644,0.19822903,0.1621926,0.33496633,-0.42906246,-0.5705026,0.22579509,-0.36029863,-0.16130893,-0.34833562,-0.0870136,0.7108431,-0.2262733,-0.2608126,0.10039488,0.1983353,-0.2336725,-0.5768204,-0.20285426,-0.2252049,0.35813567,0.0064769736,-0.22550392,-0.1935202,0.05849864,-0.3950447,0.12666689,0.022803625,-0.45696497,0.14841448,-0.49839482,-0.13942167,0.95702153,-0.241875,0.299786,-0.6191805,-0.56322974,-0.84968156,-0.40611264,0.55848956,0.0556203,-0.103734255,-0.5016597,-0.0576693,-0.09363987,-0.10898081,-0.012169163,-0.39644703,0.447688,0.1518919,0.304971,-0.07478572,-0.904854,-0.049034193,0.14948498,-0.35528743,-0.63689363,0.5392572,0.20677924,0.8120358,0.105632246,0.06410193,0.16178028,-0.47826838,0.08356655,-0.07454171,-0.14856483,-0.73613214,0.222365,273 +815,0.7007806,0.0012189249,-0.7173865,-0.2144735,-0.54488254,0.39059663,-0.14096913,0.23388274,0.303751,-0.5986899,-0.14872368,-0.19483294,-0.12991345,0.28249237,-0.15540107,-0.83663553,-0.06312791,0.14945501,-0.5717961,0.49844506,-0.28161627,0.51092535,0.22375633,0.47307006,-0.07836475,0.2812024,0.46195626,0.017332867,0.115966916,-0.34387502,-0.18497632,0.13557738,-0.81516117,0.25351214,-0.12873228,-0.35944173,-0.10419189,-0.35015163,-0.22018473,-0.79338455,0.38777152,-1.067067,0.7067881,0.075612426,-0.337926,0.034989282,0.14775531,-0.03289708,-0.1906523,0.12815042,0.26727295,-0.43032113,0.106807224,-0.3117687,-0.51485884,-0.606151,-0.5734544,-0.06878068,-0.5898429,-0.20567684,-0.49384603,0.22042139,-0.329851,-0.01724712,-0.4354742,0.35237226,-0.53042233,0.062037498,0.30724412,-0.52049035,0.31098258,-0.49853384,-0.212008,-0.215025,0.12951517,0.017690033,-0.11724925,0.24345876,0.16646971,0.69117594,0.20896481,-0.2368229,-0.25578335,-0.03565678,0.053646386,0.4835428,-0.1813642,-0.049433082,-0.2907549,-0.1890461,0.39862657,0.42824113,0.0833081,-0.36296138,0.16449249,-0.13054572,0.01482635,0.58699405,0.50148606,-0.44139895,-0.19515733,0.41309166,0.3315661,-0.065796554,-0.21560399,0.088678814,-0.13339196,-0.49879143,-0.13501722,0.25296962,-0.18979566,0.7758756,-0.1943572,0.0052286885,0.7955268,-0.2575851,-0.053089757,-0.28777504,-0.106798016,-0.076122425,-0.37151346,0.06938415,0.54355115,-0.41425672,0.03375426,-0.42970964,0.637556,-0.038622588,-0.7412529,0.2527052,-0.625691,0.12094132,0.015415405,0.71891385,0.60222894,0.56842774,-0.05005482,1.1014374,-0.7187502,-0.009538963,0.060467243,-0.32958403,0.13763146,-0.1326314,0.06616124,-0.4252781,0.24973707,0.028388053,-0.06739348,0.065348856,0.32958576,-0.31323022,-0.17887776,0.2743625,0.6469951,-0.3994504,-0.011045595,0.6883249,1.2761532,0.9782316,-0.060045194,1.3988293,0.20944746,-0.19718654,-0.14001527,0.11613843,-0.63697624,0.119085096,0.30801526,0.27747202,0.34474608,0.14797558,-0.109967135,0.19223738,-0.3307668,-0.19612998,0.053268105,0.1388973,-0.0622488,-0.08197912,-0.49133134,0.06963048,0.32409447,0.14262736,0.0195627,0.15466875,-0.20758806,0.43683156,0.1104621,1.047343,-0.06377285,0.21950547,0.21459936,0.48740435,0.29694542,-0.055523068,0.1591134,0.43630016,0.26545557,0.14161374,-0.48162958,-0.043245554,-0.37325558,-0.4776504,-0.16913445,-0.4809166,-0.11226263,0.08941728,-0.42355692,-0.16351642,-0.03132398,-0.29874265,0.3033428,-2.2374809,0.017330075,-0.17514582,0.2542617,-0.2504549,-0.2924489,-0.14431521,-0.67506886,0.4465039,0.4570285,0.34332561,-0.54548025,0.3770772,0.5137529,-0.43081915,0.043663938,-0.55650043,0.10330089,-0.0660871,0.50319165,-0.117912084,-0.34389842,-0.27447784,0.27421156,0.6958247,0.2692741,-0.03194244,0.26264116,0.46775898,-0.045200005,0.5338878,0.06512948,0.671525,-0.27401844,-0.18818939,0.6536143,-0.3291326,0.33142158,-0.22359748,0.018000817,0.45691392,-0.5201059,-0.8839638,-0.6865623,-0.43247208,1.36804,-0.54806054,-0.7251987,0.2280352,0.1777929,-0.1447593,0.022685481,0.5069748,-0.034056526,0.3220226,-0.6745744,0.01458621,-0.16276826,0.34386286,-0.03058806,0.19427545,-0.47907642,0.9060089,-0.11150479,0.4928944,0.46639013,0.22530659,-0.24721652,-0.6366373,0.023834802,0.8772586,0.38073167,0.12979761,-0.18312792,-0.05018286,-0.17467594,-0.28303874,0.15250523,0.788799,0.79271936,-0.112646155,-0.04878973,0.5056142,0.16623904,0.08555144,-0.079561375,-0.3361423,-0.23148288,-0.11108247,0.49622583,0.73159593,-0.19003654,0.08183418,-0.14212878,0.3818893,-0.06790947,-0.3952063,0.6097674,1.078836,-0.1486647,-0.25442752,0.8319847,0.39645097,-0.58644575,0.5364952,-0.7423732,-0.47463515,0.6875723,-0.13017972,-0.6093965,0.049620975,-0.22382253,0.086410515,-0.83829284,0.20396285,-0.15981525,-0.41841564,-0.40818223,-0.40745822,-3.803569,0.2361787,-0.34353587,0.08365656,-0.25006786,-0.10930309,0.2742845,-0.59567744,-0.57320255,0.032949165,0.0028249014,0.5036767,-0.19301873,0.3162507,-0.38899234,-0.20160569,-0.2547445,0.42562023,0.12710905,0.08780802,-0.09442133,-0.2584379,0.042841803,-0.037524607,-0.53609693,-0.07733555,-0.6006735,-0.48403072,-0.14800236,-0.5578214,-0.0454808,0.6542677,-0.42933515,-0.027555905,-0.2088203,0.17332695,-0.19970721,0.0881656,0.15947463,0.35993052,0.026320964,-0.020170918,-0.16383013,-0.33201876,0.3280275,0.22890408,0.41916263,0.31404975,-0.38229945,0.003889988,0.37086213,0.5244908,-0.038824588,0.89447135,0.16635115,0.045231763,0.3863821,-0.22178465,-0.5188009,-1.0583912,-0.17849386,-0.12330476,-0.5172104,-0.4870559,0.013878502,-0.4011966,-0.98471576,0.69121665,0.012798677,0.5083325,-0.09755809,0.437884,0.37867948,-0.34545168,0.06739935,-0.046602443,-0.22378297,-0.5773993,-0.44028524,-0.745629,-0.5831524,-0.037043642,0.9733289,-0.046134125,-0.0873465,0.26143113,-0.2513488,0.1871825,0.1667267,0.3008763,0.0072110393,0.67977357,0.24335057,-0.75955766,0.5235582,-0.051626664,-0.015892232,-0.66300505,0.29854998,0.66012126,-0.66541195,0.5553042,0.43153417,0.28649557,0.040674504,-0.6232734,-0.40283644,-0.07498551,-0.25729463,0.5877264,0.22696514,-0.68428105,0.4380777,0.015673677,-0.13566512,-0.6881068,0.64536625,-0.18260567,-0.3265304,-0.057409864,0.47086832,0.03518625,-0.06072263,-0.058470592,0.35868064,-0.47207907,0.18222453,0.32472837,-0.014264707,0.5472074,-0.13609336,-0.36543676,-0.734346,0.19196141,-0.6584006,-0.3858876,0.2552278,-0.027514039,-0.23837268,0.29476494,0.036842894,0.5409394,-0.048819173,0.40565935,-0.021324048,-0.23799141,0.66195446,0.44289598,0.5138164,-0.8217762,0.7806398,0.09415832,-0.07185497,0.079461955,0.23090631,0.6043405,0.07084909,0.36451888,-0.1743675,0.023940355,0.04248518,0.4143118,0.30690053,0.291634,0.22371906,-0.13072813,0.58826536,0.23308194,0.08156096,-0.21914636,-0.77183485,-0.12950884,-0.06910725,0.02808415,0.36728606,0.09318397,0.42488542,-0.060912084,-0.057719667,0.27078915,0.018038487,-0.22636567,-1.0275873,0.037324924,0.22502065,0.8327436,0.47636247,-0.016196271,-0.10950505,0.5807749,-0.36181727,-0.1402127,0.57692164,-0.02632291,-0.34046713,0.62449574,-0.48073325,0.2595142,-0.124781914,-0.04666133,0.25943518,0.4443036,0.31941357,1.015565,-0.24461724,-0.007726284,-0.17075141,-0.12824541,0.18315463,-0.4203978,0.10548634,-0.3670566,-0.41319332,0.6256389,0.37874636,0.33037254,-0.5457267,-0.17363943,-0.002226154,-0.15988512,0.23147209,-0.014010896,-0.08886445,0.032104198,-0.4719223,-0.20209968,0.51814026,0.096841395,-0.068925984,-0.113262445,-0.27890527,0.2670318,-0.12483078,-0.13271426,-0.07981181,-0.76649404,0.05213334,-0.36143014,-0.51059216,0.3790493,-0.27109152,0.28195375,0.21956389,-0.07019692,-0.1824261,0.057220846,0.14734556,0.7919554,0.07138327,-0.23195453,-0.4181734,0.18295085,0.18707605,-0.37312123,0.17805141,-0.23324287,0.12493336,-0.38405728,0.44639766,-0.2907413,-0.2568334,-0.040500533,-0.26557767,-0.1331064,0.37551904,-0.02248016,-0.049861137,0.3608359,-0.11166009,-0.50271255,-0.1251574,-0.2651556,0.003975501,-0.20042582,-0.11154717,-0.07623283,-0.08424157,-0.0644519,0.2731051,0.13769315,0.1379176,0.2015725,-0.19918619,-0.5028282,0.14326756,-0.06253591,0.45110154,-0.01664254,0.06412444,0.073401965,-0.6919821,-0.30122095,0.43131217,0.005836328,0.2547851,0.10306629,-0.40613678,0.83331347,0.36663413,1.0966444,-0.1474328,-0.3909649,-0.12136912,0.8082983,0.12732325,-0.075871736,-0.41871396,1.1814356,0.77356786,-0.146876,-0.1813211,-0.29643953,-0.06835961,0.023465818,-0.40893897,-0.21843262,-0.119124286,-0.56529397,-0.21679789,0.06417003,0.47339472,0.21100038,-0.11487013,0.031765178,0.17311887,0.2233436,0.50880766,-0.46958193,-0.48777533,0.32512382,0.14542058,-0.14965208,0.15302888,-0.19072314,0.3487024,-0.7402349,0.14182109,-0.4778525,-0.014090013,-0.155115,-0.26866612,0.103889436,-0.10051706,0.3401865,-0.40337446,-0.2996162,-0.19098973,0.50401956,0.22870326,0.29148352,0.79571384,-0.20456947,-0.05343449,0.07487449,0.49432692,1.4537352,-0.04321611,0.1849001,0.23776422,-0.55894107,-0.6389153,0.02401641,-0.4879494,0.22909914,-0.14996995,-0.51920074,-0.2460844,0.20195985,-0.14892018,-0.20828573,0.20827584,-0.712378,-0.24366768,0.33054805,-0.2776309,-0.27411175,-0.27952906,0.40198573,0.77443856,-0.27883253,-0.3718835,0.094400205,0.14754012,-0.33386615,-0.9903784,0.06832,-0.31047404,0.3920804,0.0010062853,-0.47989914,0.16062628,0.25953895,-0.5148798,0.21630502,0.34598804,-0.39817214,-0.02607531,-0.35236374,-0.056019276,0.9718079,0.10862071,-0.017311716,-0.5876335,-0.4814969,-1.1041542,-0.453034,0.1453665,0.06935096,0.07828552,-0.46902752,-0.18945341,-0.45596334,0.07377334,-0.0062986366,-0.4284834,0.33836445,0.26437733,0.8603727,-0.1385033,-1.0123729,0.12536424,0.14983469,-0.12546054,-0.5804957,0.43342957,-0.12419328,0.6714227,0.025252573,0.040061597,0.2520469,-0.8773914,0.37488317,-0.13518552,-0.15392074,-0.65596205,0.17878069,274 +816,0.41298103,-0.12337211,-0.7475688,-0.22263561,-0.39870918,0.093526065,-0.39986786,0.25470877,0.37886307,-0.3096392,-0.11243609,0.038532693,0.0040770844,0.28763,-0.14354764,-0.79887265,-0.02187092,0.23800516,-0.6720682,0.54809856,-0.36346152,0.2866092,0.17899752,0.36760625,0.07093784,0.28313342,0.26504114,-0.0040626875,0.05665471,-0.4157218,-0.2949454,0.28678116,-0.49675846,0.1458414,-0.12889044,-0.3931148,0.1412263,-0.39026085,-0.12113964,-0.7802291,0.18329304,-0.94091415,0.7682374,-0.006005837,-0.28532156,-0.118541926,0.44393086,0.35229203,-0.1339718,0.19185238,0.32839823,-0.54611176,-0.099285305,-0.51415294,-0.30414757,-0.6303596,-0.36402044,-0.17499618,-0.6530974,-0.17664142,-0.13626347,0.28452063,-0.32941714,-0.14782153,-0.33298394,0.20977592,-0.42876324,-0.066910185,0.46339425,-0.3696566,0.4217817,-0.53483635,-0.0039884397,-0.025031522,0.56003,0.027253568,-0.14963834,0.27294505,0.3700521,0.5789757,0.3583857,-0.30821905,-0.24945964,-0.47809628,0.22874095,0.5053425,-0.20513724,-0.20421036,-0.33517066,0.049750905,0.5794075,0.7146662,0.061416764,-0.22389102,0.12133219,-0.17436182,-0.110450245,0.8197322,0.6013865,-0.42008844,-0.27892226,0.28553572,0.53038865,0.29999784,-0.25731838,0.21141778,-0.092826866,-0.34539494,-0.21865956,0.14853565,0.0702968,0.46390542,-0.110285185,0.17217314,0.7550222,0.017654648,-0.06961594,0.14913154,0.016548946,-0.18169113,-0.3354423,-0.13420182,0.30890992,-0.7076991,0.101038545,-0.47273052,0.5715002,0.066391535,-0.5648136,0.34768713,-0.5805975,0.12500249,0.17361309,0.708328,0.7879161,0.68764925,0.14039792,1.1212419,-0.33394745,0.044625234,-0.08918645,-0.24941151,0.022787096,-0.2126873,0.28291237,-0.47697327,0.40955806,-0.16370346,0.23341863,0.121119894,0.5742474,-0.5608974,-0.28744328,0.358104,0.98974913,-0.29099336,0.08807536,0.89080507,1.108491,1.0924902,-0.1482292,1.2089853,0.09508413,-0.22575837,-0.37523127,-0.07814234,-0.6085045,0.18244511,0.5989978,-0.005922228,0.30416945,-0.2394415,0.028957734,0.25803724,-0.397396,-0.046589483,-0.038399484,0.32833126,-0.11965337,-0.32722148,-0.55007154,0.09954784,0.14568977,-0.16388577,0.29552695,0.34653464,-0.3760961,0.6042946,-0.19341756,1.0038041,-0.4131066,0.23730595,0.116797,0.45800677,0.43221262,-0.041763693,0.23929523,0.36692464,0.19928986,-0.18541552,-0.5117039,0.06640967,-0.52400905,-0.46184027,-0.19823976,-0.50225693,-0.41514876,0.05004431,-0.1959034,-0.13954593,-0.10228893,-0.24487162,0.25218558,-2.5842006,-0.28066695,-0.2887701,0.15788774,-0.36941457,-0.17769569,-0.04427914,-0.6551928,0.44811115,-0.023652056,0.65116686,-0.48526064,0.5914963,0.7108099,-0.5926618,-0.12586023,-0.7467758,0.11621734,0.02787014,0.51945156,-0.07156327,-0.43898904,-0.16882968,0.1520039,0.86894816,0.24488465,0.13639182,0.6457565,0.48342383,-0.060008723,0.26582342,-0.16467111,0.80551696,-0.46615645,-0.17912148,0.5099442,-0.2805929,0.31974664,-0.4696785,-0.05166751,0.675517,-0.6052928,-0.9455004,-0.66413844,-0.14227375,0.92323905,-0.41662994,-0.6080092,-0.031494364,-0.017389802,-0.20333135,0.25283238,0.7567741,0.008156717,0.2699521,-0.651401,0.017467445,-0.22324462,0.2607487,-0.022779679,0.007368932,-0.5652122,0.7900674,-0.025671871,0.6197796,0.22272663,0.28395975,-0.3284008,-0.3893695,0.05378997,1.0490981,0.562715,-0.014222096,-0.16513199,-0.23773356,-0.24906571,-0.23849572,-0.09612441,0.8866277,0.584093,-0.16050573,-0.063291505,0.46563336,0.022741223,0.090191774,-0.1860183,-0.44167468,-0.21399911,0.22054644,0.5001552,0.5940744,-0.058352027,0.39308295,-0.07136922,0.40527,-0.43846694,-0.6967848,0.852567,0.59764856,-0.30999115,-0.21535844,0.9059685,0.5794526,-0.43369523,0.700263,-0.7395859,-0.59723526,0.48067227,-0.265789,-0.5534523,0.1675101,-0.27148008,0.18948011,-0.73719543,0.034594845,-0.5663728,-0.58385605,-0.39950833,-0.0988968,-2.6045878,0.20809032,-0.17415303,0.078620195,-0.5772212,-0.08910362,0.34024903,-0.52563226,-0.8694075,0.0813544,0.34980235,0.6812579,-0.15994185,0.15286784,-0.25374487,-0.426805,-0.038701374,0.4376808,0.039303433,0.13199392,-0.24806286,-0.2981713,-0.111230224,0.16797227,-0.3731371,0.12358122,-0.63049656,-0.18988615,-0.16522576,-0.533542,0.025765916,0.5939438,-0.5806133,0.111590564,-0.41593257,0.217898,-0.1436191,-0.06909203,0.0048071765,0.3301395,0.21757887,-0.2818682,0.19492847,-0.21041067,0.4919822,-0.054858416,0.3666626,0.09531555,-0.16334239,0.092203595,0.34023428,0.6683967,-0.12153078,1.2533947,0.22521722,0.023265779,0.3732694,-0.33259335,-0.46460328,-0.76472235,-0.27920312,-0.0034552515,-0.57610464,-0.62465215,0.008178368,-0.29998037,-0.94234544,0.61082274,0.25368738,0.71720916,-0.13262953,0.5274064,0.39847192,-0.34137896,-0.0036877394,-0.0014831424,-0.17864482,-0.4973686,-0.18547106,-0.8387367,-0.4440465,0.149441,0.6760402,-0.33806232,0.019466402,0.25658584,-0.15950361,0.045284066,0.40128386,0.26896754,0.039796274,0.6893907,0.11109132,-0.6142078,0.28848234,-0.05030176,-0.004854093,-0.53606194,0.23352844,0.67979836,-0.685164,0.6045111,0.31859824,-0.005329887,-0.5326076,-0.69658947,0.02698384,0.10597768,-0.26646549,0.6671719,0.3577198,-0.7272146,0.4337845,0.21025692,-0.35122523,-0.73847437,0.31984735,-0.14535688,-0.27398002,-0.12493386,0.47151753,0.29997197,-0.16356453,-0.06476927,0.23069203,-0.38026378,0.34908366,0.21200375,-0.18380165,0.3961886,-0.22214676,-0.6441744,-0.8762761,0.00472944,-0.8888218,-0.35214877,0.3642485,-0.011714642,-0.1304649,0.29196063,0.13827656,0.489073,-0.25744188,0.31318316,-0.07319105,-0.3544736,0.4805175,0.5266729,0.39757863,-0.5060399,0.7463975,0.25401685,-0.38866505,0.04390532,0.18899961,0.49582806,-0.12153655,0.6455582,-0.1956581,-0.18585674,0.31149527,0.6928794,0.30962613,0.34238315,0.3676798,0.039420653,0.34186724,-0.084905244,0.13399726,-0.13134916,-0.60143965,-0.16310972,-0.20739417,-0.09535009,0.6509708,0.26531553,0.32103968,0.22332849,-0.10091295,0.0318862,0.15843636,-0.201388,-1.4337119,0.41345263,0.3689982,1.0227332,0.4361861,0.1793952,-0.23854147,0.6692422,-0.26080242,-0.0071980185,0.48259673,-0.09629199,-0.36673054,0.86495537,-0.5103035,0.27715686,-0.15882663,0.042819276,0.19234037,0.08703885,0.43162325,0.9541846,-0.16554506,0.12128656,-0.20388277,-0.2570599,0.07365418,-0.08772632,-0.034912236,-0.28055304,-0.6301263,0.6497425,0.31491446,0.5659385,-0.3318127,-0.10021607,0.014336452,-0.087637305,0.07441041,0.012895271,0.015642157,-0.117111154,-0.2370513,-0.17866515,0.5410337,0.2735365,0.12462976,-0.12310908,-0.32592276,0.20909922,-0.11202619,0.18228944,-0.05745773,-0.6528684,0.023299748,-0.48044014,-0.75020033,0.4825474,-0.043321133,0.012582955,0.068143845,0.040755488,0.085395336,0.39888978,-0.007382711,0.6011059,0.18496759,-0.23899852,-0.33687532,0.31047136,0.102053784,-0.30659518,0.13195123,-0.19948624,0.23037918,-0.6807251,0.52595854,-0.30023023,-0.5217561,0.29702833,-0.19926246,-0.18184783,0.5473251,-0.05130415,-0.18555135,0.29155704,-0.3257149,-0.5181007,-0.36908484,-0.32244542,0.077212386,0.042168155,0.10140253,-0.2931137,-0.10967436,-0.14522974,0.42359543,0.06078888,0.15535861,0.37500224,0.21576358,-0.2779204,0.28569826,0.23564106,0.58641213,0.23300253,0.2048825,-0.034690004,-0.61937755,-0.5166794,0.37510777,-0.17926304,0.20082866,0.077839054,-0.09833121,1.0108724,0.15166552,1.2135514,0.109345786,-0.50978214,0.048391223,0.72021085,-0.18643408,0.029448437,-0.45779637,1.183154,0.5949823,-0.08530333,0.08173082,-0.6024274,-0.036908817,0.26374283,-0.486442,0.023777207,-0.0024169683,-0.62304544,-0.41273323,0.27603164,0.20725183,0.24662483,-0.17454381,0.017379751,0.24300444,0.18742366,0.30173308,-0.68631697,-0.48051396,0.33498624,0.20267887,-0.23870124,0.08421304,-0.38773838,0.28938976,-0.93672925,-0.09339446,-0.536537,0.027666725,-0.22974499,-0.55978507,0.28418946,-0.26275393,0.17241098,-0.47885522,-0.42522725,0.099992335,0.27658865,0.13520657,-0.012053105,0.7474621,-0.17407827,-0.01453653,0.18822347,0.6343239,1.2099756,-0.3559307,-0.006259749,0.24194975,-0.6298856,-0.8857846,0.18103087,-0.7472165,0.022139013,0.10587004,-0.7753062,-0.3453773,0.19506,-0.062067404,0.016012596,0.061712313,-0.6141674,-0.04352948,0.30652192,-0.28203154,-0.19166468,-0.119728826,0.32382938,0.7565275,-0.059730694,-0.48245803,0.111166306,0.41788518,-0.40589654,-0.85006255,0.05127284,-0.074733905,0.30015948,0.108232595,-0.40304545,0.05704719,0.13337496,-0.7197202,0.049340744,0.349709,-0.3592459,0.097711496,-0.4186183,-0.09359869,0.8163946,-0.3330674,-0.1010929,-0.5394128,-0.4467328,-0.7321841,-0.38260853,0.040931065,0.15241018,0.05498913,-0.62851995,0.004710036,-0.47980985,0.0057980516,0.106692344,-0.32735708,0.45411953,0.08304848,0.70290357,-0.42709243,-1.0354785,0.33643898,0.2405989,-0.1354749,-0.66073143,0.58350044,-0.09855429,0.9524073,0.112284474,0.010304034,0.1470065,-0.79609203,0.16156285,-0.37484252,-0.023599394,-1.0512055,0.09608439,281 +817,0.40368327,-0.18667789,-0.7265353,-0.009778909,-0.29603556,-0.073436536,-0.34801182,0.74382406,0.2522354,-0.5739235,-0.06659732,-0.13519664,-0.007725516,0.37193704,-0.3147,-0.5096944,0.12826632,0.14585923,-0.67812246,0.42781433,-0.43263724,0.22506298,-0.032566182,0.5060305,0.22331254,0.2788922,-0.00887775,-0.10236158,-0.1495453,-0.19828804,0.021619355,0.04926211,-0.6343003,0.07108807,-0.2728722,-0.43003452,0.017042145,-0.52757484,-0.33817908,-0.8190537,0.30402982,-0.82369304,0.5048509,0.06645511,-0.3193574,-0.113260545,0.20992143,0.44044933,-0.09407177,-0.057734013,0.14372124,-0.08700053,-0.06470295,-0.24347836,-0.14570004,-0.40190545,-0.5733599,0.0816715,-0.48777366,-0.09184899,-0.20458572,0.21063764,-0.30781472,0.11917309,-0.09267666,0.51822263,-0.34707102,0.14050545,0.08330275,-0.17745359,0.27680504,-0.53156424,-0.077474765,-0.15484126,0.40530977,-0.30838475,-0.2391402,0.32651255,0.12351239,0.44347677,-0.05827993,-0.073283,-0.36177257,0.037780713,0.07055786,0.47749758,-0.24602337,-0.6015714,-0.06934994,0.046430845,0.30923906,0.129456,0.1704573,-0.34067667,-0.2009327,0.062820755,-0.29532027,0.5835387,0.55930424,-0.23907442,0.045414377,0.24241656,0.581146,0.35173023,-0.20931476,0.1085271,0.10402072,-0.7352516,-0.19586547,-0.09707641,0.0542172,0.68357307,-0.2700583,0.4907446,0.6380151,-0.1812287,-0.11872967,0.40741774,0.023132445,-0.02487582,-0.11241158,-0.22177887,0.22869885,-0.42957368,-0.009058595,-0.27146533,0.6221609,0.21192746,-0.78097224,0.36094794,-0.727627,0.05196176,-0.046574276,0.3780764,0.64441425,0.6249561,0.12926969,0.6461649,-0.36751357,0.06591331,-0.135161,-0.38267365,0.23014192,-0.24155438,-0.03086356,-0.31262562,-0.19177435,-0.10480955,-0.13936172,0.16608398,0.5120294,-0.55756086,-0.1086571,-0.068990074,0.8189445,-0.17325468,-0.12467765,0.8214504,0.9508867,0.92166394,0.056550223,0.928423,-0.09963278,-0.19065891,0.20208375,0.07761686,-0.8797993,0.46727213,0.36969993,-0.027228525,0.19529241,-0.025907869,-0.027326606,0.50141215,-0.3710643,0.026170665,-0.027896293,0.23048103,0.24439776,-0.26783705,-0.22808735,-0.35992232,-0.0070437365,0.011204283,0.0065473914,0.3130035,-0.11865231,0.3779119,0.009240453,1.5892801,0.03923772,0.14775956,0.13873513,0.62881017,0.1725008,-0.21883424,-0.20186864,0.04090626,0.09074751,0.3318078,-0.50058216,-0.109752335,-0.19598134,-0.5251127,-0.13461183,-0.21261777,-0.36107126,-0.2768893,-0.5900729,-0.11014921,-0.19554871,-0.21538146,0.35180962,-2.543793,-0.35520825,0.036688484,0.4799006,-0.25720614,-0.4940451,-0.1206607,-0.5311839,0.53621787,0.2706882,0.62712353,-0.7169154,0.6054832,0.47243738,-0.4763731,-0.22226728,-0.69023675,-0.05993642,0.14915635,0.1229603,-0.037230927,-0.045613438,0.19410314,0.014328837,0.40021026,-0.22578873,0.014905323,0.17556095,0.48759183,0.107067466,0.5294116,-0.24328601,0.53370374,-0.6074936,-0.202242,0.32402351,-0.51763403,0.12502334,0.016188726,0.123771995,0.4188025,-0.5579278,-0.9845169,-0.7011056,0.003211538,1.1569458,-0.026524508,-0.46337664,0.2924541,-0.46110705,-0.3172228,-0.14795655,0.69868153,-0.036882915,0.18733196,-0.8197245,-0.1290542,-0.22327924,0.3325126,0.10315164,-0.12697642,-0.46227577,0.5192354,-0.03252129,0.43817973,0.4299101,0.0571394,-0.5544109,-0.57003945,0.20161964,0.87112117,0.3106992,0.30163392,-0.12836662,-0.08022844,-0.51514554,0.1117241,-0.002275082,0.64369005,0.5863424,-0.0942264,0.13371675,0.2709953,0.045832265,0.07272575,-0.17626299,-0.45806408,-0.16302872,-0.0063068867,0.5947978,0.8974032,-0.1724124,0.37250233,-0.040713716,0.3205609,-0.3983592,-0.3434032,0.566796,0.70413655,-0.20328254,-0.31089225,0.43211088,0.4315257,-0.3431687,0.44944167,-0.52151436,-0.5753992,0.30102,-0.115778826,-0.51458234,0.22238159,-0.3042148,0.19993515,-0.7690613,0.36104593,-0.5079189,-0.49605155,-0.5444302,-0.092275836,-3.243304,0.2920495,-0.09241667,-0.19911976,-0.18122439,-0.14790517,0.09936774,-0.56270224,-0.83782965,0.1108891,0.028958699,0.8065967,-0.15645002,0.09261892,-0.23164892,-0.40855965,-0.27286938,0.0813361,0.4075404,0.34030905,0.053216893,-0.44783148,-0.30835217,-0.18960278,-0.4501873,0.13140991,-0.7037633,-0.53129816,-0.1636572,-0.5960031,-0.24578731,0.7648738,-0.3525548,-0.0012077764,-0.13375644,-0.09961498,-0.11131993,0.42635807,0.099443115,-0.024472171,-0.008476411,-0.005695045,0.122303076,-0.16649443,0.18228172,0.08668736,0.4455464,0.33552468,0.047670662,0.26168784,0.76011086,0.9982534,-0.1162489,1.0305098,0.2604381,0.07098546,0.40148976,-0.35423052,-0.5224743,-0.3166419,0.06489354,0.26669493,-0.34896883,-0.24508858,0.07571605,-0.35576773,-0.7855785,0.5013897,0.0130799115,-0.20249696,0.23589297,0.14403339,0.38347042,-0.162196,-0.114687495,-0.09473456,-0.06610427,-0.674963,-0.20280331,-0.56569296,-0.59622186,-0.05281781,1.0582551,-0.15864523,0.101497866,0.15467387,-0.13284507,0.046753973,0.13340352,-0.008963428,0.17507865,0.3531618,-0.2000879,-0.75242764,0.36370894,-0.39465335,-0.18246335,-0.45358694,0.18471141,0.7125233,-0.6835249,0.3568406,0.29189608,-0.07297418,-0.2540934,-0.46835867,-0.0861549,-0.079092205,-0.21988113,0.3462373,0.291563,-0.89386004,0.32437903,0.32577595,-0.33123574,-0.69102246,0.6099724,-0.0031966146,-0.23102833,-0.19963376,0.38048753,0.18977176,0.040598497,-0.3131808,0.20853817,-0.33987316,0.3007585,0.24675293,-0.1290469,0.36949,-0.21178706,-0.093572296,-0.72950935,0.003788218,-0.53943944,-0.2729583,0.35267696,0.19120026,0.13597095,0.11383861,0.100827605,0.21420218,-0.305037,0.02003964,-0.18880008,-0.21128349,0.34159708,0.47927102,0.7445318,-0.630147,0.64840597,0.08802188,0.067428015,0.25240883,0.046533775,0.3776174,-0.042078894,0.43104193,0.23107135,-0.060969215,0.119871475,0.9779613,0.2374248,0.42470917,0.039848942,0.0030937393,0.04237652,0.10117362,0.15806872,0.12378407,-0.8007472,0.10754082,-0.2103563,0.17264985,0.5543305,-0.014828811,0.27467483,-0.10760343,-0.4608418,0.014817246,0.28826255,-0.16447155,-1.7478074,0.530862,0.2775619,0.8027515,0.46147814,0.13105373,0.12929209,0.7718899,0.014095955,0.23418467,0.4195037,0.12861876,-0.56511706,0.5979797,-0.7536676,0.57735044,0.08245287,0.08210359,-0.014241665,-0.06297643,0.4325184,0.75034714,-0.052594513,0.20510353,0.10276428,-0.27736306,-0.034953203,-0.56917495,-0.12987217,-0.4892728,-0.06495944,0.7252441,0.5805485,0.2702836,-0.25408116,0.03258812,0.08979989,0.022332383,0.15385377,-0.13555141,0.16878843,-0.21224321,-0.7595754,-0.032478143,0.7000818,0.015181388,0.20744991,-0.008527714,-0.16018546,0.33106068,-0.05715209,0.032318905,-0.2532523,-0.7476294,0.066919394,-0.5744634,-0.40292716,0.31194493,-0.013315,0.25084898,0.2797731,0.1655352,-0.36727563,0.725723,-0.012653798,0.6195459,-0.10598689,-0.10036969,-0.2016011,0.29619333,0.19406693,-0.2742965,-0.11315569,-0.33933893,-0.054752585,-0.36018145,0.23826377,-0.0936986,-0.33297405,0.065600105,0.06493989,0.08829584,0.53904516,-0.1650446,-0.22711249,0.27438596,0.01242134,-0.14967474,-0.29713368,-0.05202396,0.25153103,0.4423802,0.0065619373,-0.15849482,-0.2049583,0.01035209,0.42848325,-0.15163447,0.5735691,0.5457756,0.25074834,-0.33709893,-0.19192976,0.091888465,0.6825754,0.118783556,-0.17708959,-0.5050877,-0.36036804,-0.358641,0.33228207,-0.036068734,0.33543786,0.19150616,-0.24971378,0.6019243,0.059205603,1.2574618,-0.0063776523,-0.25473937,0.25750586,0.24614899,0.014333914,-0.17646396,-0.43394867,1.0221409,0.35568228,-0.37627292,-0.057361722,-0.39264083,-0.0986839,0.031419836,-0.21786435,-0.25560915,-0.047837824,-0.6247471,-0.06837129,0.22121792,0.35249814,0.16497286,-0.3201503,0.08073826,0.39036712,0.033082444,0.03207959,-0.5952647,-0.17967713,0.4183235,0.40119746,-0.06975328,0.01712131,-0.59524363,0.33461228,-0.47850463,0.01731276,-0.37045798,0.18704991,-0.17702933,-0.45577797,0.18097566,0.15466557,0.34340152,-0.2918425,-0.35325336,-0.24987628,0.46843067,0.19845633,0.2214647,0.5966143,-0.1839542,-0.11736729,-0.09231181,0.55215144,0.70187443,-0.21891229,-0.11166948,0.4220712,-0.28577444,-0.63631743,0.24762516,-0.4246118,0.28557405,0.014822642,-0.080709346,-0.6204476,0.28659734,0.2020613,0.08541011,-0.17739673,-0.79175645,-0.18531479,0.3272513,-0.29037464,-0.34889543,-0.5123429,0.032838594,0.48306885,-0.15974157,-0.22128999,0.13205172,0.34825984,-0.10412896,-0.43635026,-0.0982872,-0.32912293,0.11989879,0.13839985,-0.3763517,-0.13127916,0.11821254,-0.4911828,0.29607674,0.017265609,-0.42648324,0.16647205,-0.21804465,-0.09338852,0.95901936,-0.22276302,0.25024292,-0.2697475,-0.50698024,-0.8084245,-0.32528904,0.22030127,0.24360009,0.0032327871,-0.7904957,-0.09215117,-0.048519332,-0.39003086,-0.0033950855,-0.24093656,0.5436907,0.12909018,0.5597405,-0.13176037,-0.8570876,0.13832222,0.18313037,-0.20536327,-0.603347,0.5039055,0.021574529,0.925883,0.030913144,0.07201094,0.44507197,-0.40207377,0.002847592,-0.14667545,-0.06882743,-0.5871229,0.12993604,283 +818,0.5070371,-0.42462504,-0.830434,0.03006535,-0.35535288,-0.13169046,-0.31133547,0.49371514,0.13396163,-0.4383136,-0.20194249,-0.20854759,-0.14682664,0.55623645,-0.19377781,-0.50605756,-0.06023687,0.36135805,-0.6720515,0.4408628,-0.17529993,0.31447515,0.13579513,0.37893224,0.15990457,-0.09878812,0.07409117,-0.0019637297,-0.3364379,-0.5069993,-0.059629444,0.022860885,-1.0948567,-0.0064116023,-0.3238164,-0.52582383,-0.22591835,-0.5556099,-0.21735553,-1.1137004,0.22561151,-0.9835953,0.74198604,-0.23064058,-0.3111739,0.062458295,-0.013442407,0.726525,0.0542212,0.12864797,0.20041735,-0.39234957,-0.20198016,-0.037889812,-0.26147053,-0.44886196,-0.69845635,0.1534173,-0.5052981,-0.06201284,-0.1402483,0.23860641,-0.39063573,0.115616985,-0.19872458,0.7143976,-0.37298346,-0.009249779,0.3419628,-0.037716296,0.5272421,-0.8363822,-0.026604118,-0.3148028,0.16802365,-0.27385035,-0.35012618,0.22036803,0.23514552,0.37385485,0.048192322,-0.24387668,-0.21702792,0.12809141,0.16998284,0.37195238,-0.088502206,-0.3743415,-0.09294632,0.19200438,0.58553547,0.09386418,0.23776178,-0.37846455,0.022421082,0.1670054,-0.24185002,0.494624,0.569107,-0.13308127,-0.12462964,0.19614603,0.8475728,0.34296823,-0.022561038,0.050285872,0.11022595,-0.50853425,-0.09109858,0.37730324,-0.15943329,0.63191646,-0.2689457,0.2222714,0.683464,-0.5753333,-0.1718118,0.2661009,-0.05254412,0.014896746,-0.12097586,-0.59774065,0.56478614,-0.4953736,0.22826232,-0.49028683,0.8352327,0.19949012,-0.835258,0.20884341,-0.7804811,0.14367153,-0.10778964,0.67463845,0.6958396,0.76238316,0.27685612,0.8157091,-0.23111264,0.1285114,-0.051023766,-0.4427576,-0.1492218,-0.5854068,0.023720047,-0.44653538,-0.42993855,-0.35489854,-0.43011317,-0.05107079,0.56398696,-0.79230714,-0.23022366,-0.12641005,0.62786365,-0.33102775,-0.1211352,0.9866187,0.8783732,1.3009156,0.23990393,1.1838734,0.4101243,-0.38323817,0.012259439,-0.07017902,-0.7890257,0.43565404,0.18605107,-1.0007175,0.50566524,-0.060116623,-0.06794586,0.40020618,-0.5707733,0.058146592,-0.2164387,0.10314631,0.06844291,-0.18330985,-0.35269538,-0.16790007,-0.08048567,0.11483583,-0.051997337,0.18716662,-0.21731107,0.70864445,0.17337625,1.2318635,-0.24332523,-0.07516892,-0.018952193,0.29271713,0.063903816,-0.32690975,-0.1815738,-0.01748087,0.48765656,0.26842913,-0.5563367,-0.0007799224,-0.15954624,-0.36881098,-0.48117757,-0.058900777,0.11552399,-0.32679904,-0.4245256,-0.28169337,-0.09251255,-0.32973373,0.457948,-1.8030814,-0.16289721,-0.14858235,0.32674935,-0.41489658,-0.4513295,0.03204629,-0.67624885,0.30357727,0.24976514,0.42356172,-0.71407527,0.31047866,0.39490637,-0.54343545,-0.05066107,-0.8522659,-0.3726089,0.07590928,0.23426056,0.21332578,-0.20801164,0.23930578,-0.0090013845,0.39266226,-0.24286918,-0.13049564,0.32845306,0.3835545,-0.04313126,0.5603094,0.014677305,0.5842036,-0.46411058,-0.25830254,0.5668165,-0.35884818,0.04166624,0.07172624,0.031453922,0.43960187,-0.460258,-0.842071,-0.9397991,-0.41325736,1.311234,-0.13585486,-0.69217616,-0.067394525,-0.031044057,-0.20919715,-0.15210585,0.37000403,-0.085095756,0.09949387,-0.8514721,-0.16659783,-0.12933348,0.46830258,0.038568832,0.057321787,-0.5564421,0.62988746,-0.15516388,0.07005508,0.68206304,0.27498123,-0.38576818,-0.7530845,-0.06612186,1.2076489,0.46099722,0.2002755,-0.48849428,-0.09213995,-0.45641986,0.12697221,-0.098216794,0.44460312,0.97471064,-0.16855001,0.049970407,0.29223076,-0.090650775,0.27555004,-0.16932295,-0.58513826,-0.2179073,-0.08746139,0.7213437,0.62870985,0.16680187,0.9115858,-0.20151997,0.29276696,-0.065876275,-0.538305,0.7051398,1.4520736,-0.281549,-0.39972827,0.40931138,0.22391273,-0.31821677,0.55139714,-0.6256892,-0.3276755,0.4050382,-0.081509225,-0.63035685,0.38099372,-0.2758781,0.3099412,-1.0819759,0.47674653,-0.608603,-0.5625634,-0.6729586,-0.11829021,-2.2331626,0.46502662,-0.14133431,-0.08569721,-0.20903866,-0.50141644,0.15058984,-0.5046758,-0.8117116,0.04869099,0.14778717,0.8518004,-0.10129544,0.065869816,-0.2633582,-0.51637363,-0.3455638,0.27691546,0.5529098,0.19863147,-0.06527868,-0.47457418,-0.013260146,-0.23199739,-0.43864226,-0.076547176,-0.8722729,-0.7618385,-0.3004387,-0.6337914,-0.4709324,0.7551484,-0.35188127,-0.016106794,-0.20104699,0.09095097,0.2662702,0.48213163,-0.10910654,0.22757779,0.18947053,-0.18678005,0.048289627,-0.1771269,-0.01729536,0.14536358,0.1129537,0.33343902,-0.3487763,0.5524673,0.70739704,1.2062671,-0.026935091,0.96955806,0.5872336,-0.15017182,0.17212649,-0.2769486,-0.54492134,-0.72207594,-0.124328524,0.17768978,-0.4130012,-0.32852113,0.095133275,-0.2027344,-0.83299494,0.83725023,-0.1263466,0.12047399,0.16742271,0.600168,0.4879276,-0.14818712,-0.07533731,-0.13313468,-0.16350563,-0.47286463,-0.42355514,-0.51319236,-0.7677074,-0.40622267,1.501412,-0.0032870322,0.098747455,0.12660243,-0.15687506,0.27250317,0.110317715,-0.13884936,0.08895966,0.30389002,-0.19554214,-0.80293256,0.07202398,0.037346315,-0.035371743,-0.80165356,0.38077024,1.0100332,-0.65333414,0.25607923,0.25864306,-0.20058125,-0.16789138,-0.50006074,-0.04390602,0.12803756,-0.32880065,0.36692134,0.26747802,-0.41532433,0.406202,0.39698872,-0.27744257,-0.84389704,0.37933126,0.19819635,-0.24093215,0.060615648,0.40979803,-0.035463523,0.021742085,-0.41380796,0.108492024,-0.36626127,0.17884983,0.4294332,-0.20784344,0.06641126,-0.15107362,-0.13400665,-0.86414737,0.3251238,-0.47240135,-0.3387922,0.38181818,0.07020105,0.15666252,0.4803541,0.3300185,0.41122806,-0.22184013,-0.13087909,-0.290085,-0.3381739,0.49459305,0.6078737,0.3840189,-0.5566223,0.61458856,0.09498348,-0.22938274,-0.06758002,-0.11074611,0.64271396,0.01916788,0.3229424,0.5734652,-0.31592143,-0.00684198,0.75154084,0.1198137,0.76120144,-0.0585454,-0.00992759,0.07341813,0.3020192,0.50610644,0.055432934,-0.7159367,0.104580194,-0.07100448,-0.02654717,0.54382145,-0.084124774,0.32635686,-0.1523314,-0.39911008,-0.114226185,-0.0012709498,-0.06256456,-1.6474361,0.56944364,0.28411722,0.7267976,0.31008363,0.05166233,0.13982032,0.6909385,-0.26109052,0.032183383,0.29439524,0.25320268,-0.3319499,0.5212347,-0.9686324,0.52559185,-0.11358126,0.05774683,-0.08987499,-0.05843793,0.5439926,0.9126697,-0.2535883,0.06937368,-0.24298869,-0.15432172,0.16952537,-0.5007974,0.09183874,-0.5990891,-0.29575673,0.9561561,0.39804104,0.41588882,-0.17790222,-0.018098282,0.14371806,-0.23711742,0.4250606,-0.038529918,0.11097213,0.04619363,-0.52032,0.090643175,0.56583303,0.07482869,0.102623284,0.056056377,-0.1437959,0.16462989,-0.13338922,-0.058178652,-0.17479686,-0.79023963,-0.07130626,-0.69632846,-0.33836016,0.21449481,-0.21851164,0.18544,0.25142232,-0.0047762,-0.43396845,0.40224862,0.35160747,0.9278736,0.105044305,-0.15014307,-0.12950782,0.4790086,0.2793055,-0.30215016,-0.004247745,0.14339243,0.00196745,-0.5131943,0.23902877,-0.15927993,-0.63396114,0.1899121,-0.043099612,-0.23924136,0.5986533,-0.33742788,-0.027631894,0.3564414,-0.17014128,-0.01002498,-0.24194014,-0.051100206,0.16930227,0.1735364,-0.17181742,-0.15924162,-0.09922683,-0.19172502,0.54952717,0.022051359,0.5449147,0.4829804,0.23924239,-0.6317976,-0.118067004,-0.011001016,0.7536194,-0.04519281,-0.19424224,-0.57135373,-0.3280093,-0.29370227,0.26651847,-0.0108330855,0.26509967,0.113770746,-0.54055226,1.05016,0.23152953,1.5048748,-0.028515661,-0.38161454,0.11447226,0.3888733,0.117866375,-0.12458822,-0.58225507,0.9538682,0.39108542,-0.12618881,-0.10480183,-0.41742447,-0.083257236,0.09056264,-0.23517245,-0.17482044,-0.066734575,-0.55676585,-0.38062397,0.4463885,0.3317082,-0.017434144,-0.14123188,0.26452968,0.5023467,-0.14877538,0.3049399,-0.37438044,0.13427863,0.3227754,0.30721614,-0.1798832,0.053270902,-0.45782447,0.25625247,-0.59414554,0.078277,-0.31952894,0.19095011,0.044188667,-0.2304116,0.32537702,0.22324379,0.3845806,-0.50128764,-0.29862416,-0.21214573,0.54700416,0.19570129,0.2888237,0.7628172,-0.3141489,0.06262358,0.058785807,0.47247794,1.2203268,-0.52142054,0.10516689,0.41625452,-0.18236364,-0.44496205,0.54707223,-0.2300573,0.14449741,-0.15610647,-0.18919046,-0.69169694,0.14167735,0.31739667,-0.039674554,0.04726863,-0.6095048,-0.026151896,0.526731,-0.4120084,-0.14132918,-0.48780414,0.2419572,0.42044434,-0.19027121,-0.6247837,-0.08848527,0.41426417,-0.14540367,-0.15271556,-0.22392415,-0.063881844,0.32477382,0.16585101,-0.40706757,-0.0128043005,0.21772873,-0.5731594,-0.066186585,0.072476976,-0.33399162,-0.033928506,-0.041805822,0.03569402,0.7308329,-0.4530206,-0.055224154,-0.37022033,-0.5240776,-0.92507553,-0.15460308,0.35476944,0.31181166,-0.015550974,-0.8845158,-0.12803544,-0.27954504,-0.2364837,0.12052688,-0.34257492,0.39733472,0.26600933,0.6714902,-0.1777281,-0.744889,0.44758675,0.100649394,-0.034347605,-0.62965596,0.41057262,0.14445165,0.66207093,-0.0061522997,0.28085935,0.34200802,-0.60772586,-0.036799636,-0.05132215,-0.15814854,-0.8153415,-0.103851564,290 +819,0.36213425,-0.025023798,-0.6125385,0.030315168,-0.057006586,0.026233843,-0.20279877,0.5108591,0.20497286,-0.32808903,-0.23116125,-0.2778111,0.04844464,0.44041443,-0.11664486,-0.3838496,-0.07991357,0.32980892,-0.52863485,0.5124971,-0.20876946,0.23950414,-0.091928184,0.4877378,0.09685429,0.25408563,-0.09318837,0.055930395,-0.24676658,-0.18850736,-0.05439983,0.39539894,-0.5308067,0.096891165,-0.19879349,-0.32880896,0.0053257844,-0.50134367,-0.32699716,-0.688859,0.2743464,-0.74520713,0.63600206,0.124800585,-0.18279944,0.19478838,0.1778117,0.3883128,-0.16040388,-0.1028006,0.2994277,-0.14462319,-0.031992476,-0.40977958,-0.33368912,-0.23813398,-0.47603187,-0.08805579,-0.46335253,-0.26525745,-0.23128824,0.16538681,-0.18680614,-0.028630866,0.09213972,0.3207161,-0.44037285,0.18624265,0.11468016,-0.103935815,0.34404936,-0.5329456,-0.23134471,-0.12230843,0.37841406,-0.35924956,-0.2032044,0.17783071,0.25994003,0.28467295,-0.25674653,0.048267733,-0.36411795,-0.050536763,0.26439154,0.5437487,-0.41403535,-0.41722456,0.010407339,0.1662638,0.12313682,0.45112,0.20223506,-0.33948848,-0.07447171,-0.0737808,-0.060993407,0.35624528,0.41034842,-0.21379153,-0.079823546,0.33848596,0.5519453,0.33871865,-0.09625453,-0.008843586,0.043043543,-0.4589095,-0.108082,-0.1535734,-0.3027533,0.6113833,0.03655002,0.23931503,0.5663884,-0.03552664,-0.14578204,-0.040986706,0.11052712,-0.10874626,-0.20373367,-0.2351817,0.24891119,-0.23501001,0.35766825,0.11610401,0.49435365,0.14906214,-0.7770235,0.388701,-0.6855611,0.0386188,-0.06621314,0.38147542,0.5951732,0.43827143,0.38320994,0.5959094,-0.46801722,0.12717576,-0.04359022,-0.24562299,-0.024518067,-0.0787713,-0.18123119,-0.64620644,-0.0138757825,-0.06651145,-0.19922882,0.46878502,0.3707501,-0.5584194,-0.040201288,0.19554198,0.9257706,-0.2866881,-0.13066457,0.72338945,1.0845336,0.7276039,0.027306026,1.0319772,0.110420674,-0.3124196,0.16852821,-0.13821821,-0.7814062,0.2508625,0.43547344,-0.85584116,0.34309983,0.25126985,0.07278207,0.3941444,-0.41010913,-0.031503145,-0.14198433,-0.04264742,0.04760563,-0.29816598,-0.34931004,-0.063040435,-0.18740012,-0.083756484,-0.054154824,0.24161403,-0.19751735,0.45934466,-0.027145743,2.0427659,0.025609931,0.08539465,0.07167317,0.22278975,0.27830568,-0.092787564,-0.25562742,0.6130097,0.23363344,0.16893263,-0.3274961,0.15239665,-0.15838677,-0.41808572,-0.09280467,-0.17483531,-0.035410088,0.069929264,-0.31367114,-0.10946459,-0.19726764,-0.19513857,0.5006922,-2.8443334,-0.11860707,-0.007016164,0.4098439,-0.1760261,-0.40415642,-0.1890117,-0.2126594,0.5100987,0.24949999,0.4849491,-0.51541895,0.1416067,0.31207064,-0.52093786,-0.28550532,-0.37652317,-0.008868356,0.14152388,0.18121254,-0.15024638,-0.067906596,0.1357545,0.06137689,0.34150365,-0.11599102,0.10693041,0.42604813,0.47048903,-0.029405525,0.4500433,-0.21488185,0.64519614,-0.1770041,-0.3933176,0.28036258,-0.2899467,0.30636445,0.037838295,0.121150404,0.410398,-0.3768648,-0.838732,-0.6160498,-0.12649114,1.0385869,-0.122324966,-0.33922994,0.19346993,-0.31286874,-0.36524057,-0.049975365,0.47166622,-0.12921312,-0.09591917,-0.9506166,-0.008587167,-0.020716354,0.19840266,0.055876303,-0.12226844,-0.45767453,0.51733387,-0.07067751,0.45554307,0.5019544,0.06355517,-0.35700056,-0.46161738,-0.0059138336,0.88789654,0.37296817,0.16199715,-0.12966889,-0.19757552,-0.4280952,-0.06975755,0.10183453,0.52937,0.6066912,-0.100693196,0.08077661,0.30036572,0.07711553,-0.037771363,-0.26965067,-0.2796694,0.066672795,0.019857025,0.40412995,0.6213373,-0.16129227,0.64533037,0.063681975,0.2196659,-0.045734685,-0.3438184,0.38743994,1.061439,-0.18981218,-0.43563685,0.5508645,0.28976312,-0.32128713,0.36851916,-0.42601606,-0.13845198,0.46612182,-0.09269019,-0.46233097,0.37266245,-0.22127531,0.12085789,-0.97785956,0.1411899,-0.2102798,-0.4077294,-0.57660955,-0.055042356,-2.9334514,0.16978948,-0.27862057,-0.2552709,-0.0795021,-0.13713907,0.025260257,-0.6026558,-0.73385555,0.106658846,0.03510827,0.48974597,-0.24023867,0.23635082,0.03735051,-0.42181373,-0.02045413,0.26806548,0.21402065,0.3709507,-0.07293615,-0.44856822,-0.3203012,-0.040049512,-0.3460239,-0.033116218,-0.6839648,-0.28073516,-0.09995774,-0.66793555,-0.07029729,0.61519665,-0.5471205,-0.026516952,-0.26767915,0.003742342,-0.019639453,0.1822362,0.2551839,0.22009452,0.11105489,-0.0664233,-0.009415376,-0.22964168,0.22391069,-0.0055348105,0.13846418,0.33888435,-0.092522465,0.37133017,0.32953668,0.79251647,-0.17116499,0.6800485,0.5909753,-0.14537908,0.14764757,-0.5060995,-0.3686773,-0.5367469,-0.3739616,-0.09150859,-0.42065546,-0.63045853,-0.15591767,-0.37228036,-0.80603033,0.5919451,0.056039453,0.07934874,0.10252646,0.3896345,0.52108526,-0.38130116,-0.06252687,-0.03867839,-0.07911753,-0.569758,-0.1569173,-0.47493243,-0.46178517,0.13639738,0.8895766,-0.2572159,0.13874169,0.19765486,-0.2492583,-0.01189061,0.15239482,-0.0066366442,0.16254212,0.43728665,0.016812095,-0.5109717,0.33571923,-0.08610038,-0.2904103,-0.7537609,0.19111876,0.5891676,-0.5876782,0.713427,0.36113557,-0.039528985,-0.11066265,-0.50602853,-0.13902023,-0.03253829,-0.20672745,0.3391362,0.26060343,-0.6284171,0.23962738,0.48591062,-0.29236045,-0.7536254,0.5728495,-0.022206912,-0.38726816,0.08826152,0.28518996,0.04261318,-0.14233917,-0.2846321,0.29515558,-0.19895113,0.27157322,0.20835978,-0.191236,0.14000593,-0.29947442,-0.18537718,-0.87142867,0.38506296,-0.40158084,-0.3498921,0.3894365,0.16176383,0.023513138,0.104168095,0.1917633,0.30306447,-0.47691464,0.14813185,-0.1528871,-0.1654181,0.1166257,0.36946845,0.43211612,-0.45030677,0.47034082,-0.14368518,-0.11960608,-0.027677367,0.17254597,0.5166676,0.01943458,0.28302157,0.14550954,-0.20719473,0.118909426,0.59743077,0.124870636,0.32608962,0.10079479,-0.10411823,0.053512543,0.13428293,0.17119555,-0.031415705,-0.5706658,0.2366981,-0.2706747,0.07808702,0.5230507,0.19431587,0.14853576,-0.14060988,-0.5256161,0.06084094,0.34813365,0.32786012,-0.9893996,0.44769338,0.11821634,0.7441116,0.3576521,0.21515249,0.15439476,0.49414515,-0.27747825,0.13242407,0.3773974,-0.09265866,-0.45841756,0.41521332,-0.7171536,0.38727584,0.08030359,-0.04179539,0.14810507,-0.085292585,0.45028663,0.81772166,-0.20474051,0.012992856,0.1387149,-0.19766413,-0.026090195,-0.33135647,-0.12556727,-0.54251814,-0.36467078,0.5738821,0.5319669,0.2901989,-0.20613258,0.053218562,0.087720744,-0.12751178,0.12375129,0.23881036,0.32808265,-0.00678462,-0.662381,-0.13752325,0.537752,-0.010385971,0.10401798,-0.079048775,-0.17968102,0.3931884,-0.115986384,-0.029429292,-0.08026684,-0.67670923,0.13025348,-0.43190753,-0.4090474,0.43678412,0.09050552,0.19516347,0.17627184,0.13025783,-0.17052396,0.8326816,-0.027999131,0.90082175,0.034059066,-0.17530365,-0.20532227,0.4706627,0.14542039,0.029416328,0.032509744,-0.37088242,-0.014167746,-0.5563735,0.52067024,0.17692547,-0.29941416,0.035848122,-0.09238279,0.11811548,0.55383855,-0.06255311,-0.1397713,-0.15158165,-0.30481806,-0.32709277,-0.3351567,-0.17496355,0.1610365,0.20222092,0.08831245,-0.23621465,-0.009880632,-0.33482477,0.24504025,-0.13881414,0.5028738,0.24936907,0.17815469,-0.20833246,-0.20495696,0.13412349,0.34110728,-0.09855753,-0.18675177,-0.1539218,-0.46484044,-0.4157186,0.016212344,-0.1673991,0.3842233,0.33149263,-0.111780725,0.64360136,-0.05039086,1.1620506,-0.007032613,-0.33948335,0.15665184,0.5624349,-0.08146626,-0.21860214,-0.27626818,1.019826,0.69239014,0.07929191,0.007851447,-0.17920835,-0.1447506,0.10678486,-0.21579976,-0.14903808,0.05192846,-0.4593114,-0.3285176,0.1845782,0.30627057,0.3009819,-0.1065771,0.20071225,0.27465343,-0.015120059,-0.072831675,-0.24740116,-0.40852475,0.2997463,0.27200958,-0.15559953,-0.088487886,-0.4721255,0.5163741,-0.32422736,-0.0007210523,-0.47626054,0.20130932,-0.17791347,-0.30692402,0.043373015,-0.17845084,0.3033028,-0.25770637,-0.11089351,-0.23086536,0.34531772,0.2740008,0.14120884,0.5131788,-0.27932456,0.16273883,-0.12135919,0.39188245,0.7524242,-0.36440346,-0.2229737,0.37198496,-0.2870001,-0.49363723,0.32521006,-0.40206036,0.18737392,-0.12584426,-0.110533334,-0.57806784,0.14187688,-0.050633103,-0.04594099,-0.28401694,-0.5929015,0.07406131,0.2365034,-0.23088185,-0.09817342,-0.33300674,0.09882376,0.67017716,-0.17774384,-0.38149843,0.20506053,0.053138178,-0.122998774,-0.45825663,0.053020414,-0.30596814,0.22574788,0.07429355,-0.3925984,-0.15171732,0.057980444,-0.35924658,0.114708744,0.07885241,-0.29756162,0.0948615,-0.3311228,-0.10681928,0.9403036,-0.375006,0.11666278,-0.34559178,-0.40525198,-0.6416397,-0.18239415,0.45331445,0.05210508,0.039490607,-0.7712249,0.17583442,-0.21662863,-0.28237066,-0.23208056,-0.19147955,0.4045483,0.12570646,0.4847766,-0.4118034,-0.83703136,0.22313611,0.1184207,-0.28441688,-0.6588305,0.44060853,0.05938831,0.8928562,0.00079812604,0.029217,0.5762405,-0.56233126,-0.082552545,-0.1674854,-0.17231846,-0.537211,-0.07476943,294 +820,0.60890645,-0.32464716,-0.7739196,-0.042022973,-0.3519751,0.08342034,-0.26782733,0.30684343,0.32056114,-0.3244687,-0.25291082,-0.12480041,-0.07207375,0.5769887,-0.26493958,-0.8056291,-0.14884152,0.12697174,-0.4956495,0.45390424,-0.6618393,0.04142191,-0.0673936,0.70638514,0.24324943,0.19198978,0.20444874,0.0211398,-0.097569115,-0.114788026,-0.12863648,0.37939727,-0.81547755,0.073812164,-0.12418779,-0.4769388,-0.02095232,-0.6309503,-0.33283412,-0.89252573,0.45656136,-1.0738918,0.7519307,0.16964929,-0.30651173,0.014506797,0.048137728,0.14775772,-0.34024176,-0.03534073,0.3697835,-0.38545498,-0.11958009,-0.24838711,-0.2983399,-0.5875457,-0.8507207,0.05216816,-0.43881905,0.1729011,-0.17833988,0.25839517,-0.32791412,0.19552368,-0.42886367,0.47150484,-0.54460245,-0.1300128,0.2421291,-0.20125528,0.15248336,-0.60013986,-0.345685,-0.16859059,0.18947811,-0.0023340385,-0.30101758,0.17114936,0.29316798,0.58413535,0.11890105,-0.4504815,-0.45778823,0.11006111,-0.10734067,0.3457332,-0.38359305,-0.6589714,-0.21830165,0.12898663,0.4855897,0.3854698,0.115183316,-0.16221228,0.17097668,0.18422641,-0.10646918,0.6586979,0.57864136,-0.21200745,-0.37320924,0.22771563,0.42592856,0.07019752,-0.20205943,-0.1403376,-0.011382879,-0.5795362,-0.2203104,0.2337835,-0.25910854,0.6118937,-0.14189653,0.1238058,0.8582466,-0.40815997,-0.112685025,-0.11962176,-0.07049152,-0.15750156,-0.28021094,-0.29281446,0.37578604,-0.46228477,0.27428004,-0.4191164,0.6959582,0.051252574,-0.9304778,0.31996214,-0.60039586,0.02459886,-0.045851607,0.7805931,0.87013054,0.4496483,0.628283,0.8222688,-0.45731863,0.13557298,0.024057483,-0.49112558,0.26088557,-0.14244877,0.20586796,-0.5400201,-0.1435527,-0.13075458,-0.24812084,0.06431176,0.683707,-0.4885814,-0.027177317,0.13436824,0.5743198,-0.33597216,-0.11868701,1.0554309,1.1897496,1.3060548,0.13432269,1.4060682,0.33623257,-0.22790985,0.13085295,-0.28198937,-0.5840896,0.3368683,0.29453108,-0.6558567,0.6273311,0.18400301,0.13305692,0.63032824,-0.5033917,-0.03258358,0.11603097,0.21033458,-0.027134508,-0.007906836,-0.698198,-0.26090598,0.0050991364,0.059367687,0.22458595,0.40637478,-0.299685,0.58803934,0.08720094,1.3537945,-0.066197656,0.16876692,-0.07445269,0.48410296,-0.025832264,-0.13487102,0.058540065,0.23154593,0.4548482,0.11733518,-0.62481725,0.012598925,-0.2976167,-0.30229574,-0.31383613,-0.35622954,-0.016571328,-0.30414122,-0.39922214,-0.049606886,-0.06434333,-0.36926922,0.3594521,-2.093802,-0.22126102,-0.09191161,0.2819776,-0.09296527,-0.57481486,-0.12095923,-0.5501216,0.3588612,0.34112358,0.41722706,-0.8384573,0.5854945,0.34397018,-0.8061776,-0.10246875,-0.86755323,-0.056012254,-0.22137026,0.48954841,-0.10074285,-0.29114506,-0.27450654,0.14052029,0.6783431,0.1642704,-0.10192954,0.10099095,0.80577546,-0.21571095,0.8301499,0.15951312,0.68953896,-0.36413822,-0.27311578,0.54535794,-0.3685657,0.54588,-0.10523906,0.032976884,0.50217944,-0.45691136,-1.1762443,-0.6470525,-0.42586946,1.0550605,-0.3015298,-0.38620126,0.07925861,-0.24959199,-0.52859354,-0.07836006,0.57192606,-0.30573407,-0.04364947,-0.90039676,-0.08347895,-0.18049999,0.18095684,-0.12705515,0.29451576,-0.56629103,0.7725708,0.023083022,0.411731,0.40583548,0.24446608,-0.3044299,-0.545561,0.080185466,1.0681478,0.35200396,0.14816833,-0.28314885,-0.19519792,-0.082204856,0.016452476,0.020428231,0.6698544,0.635786,0.025220199,-0.024236823,0.3386726,-0.1803153,-0.053942144,-0.2610239,-0.3684758,-0.2186157,0.10991603,0.7759097,1.0767014,-0.37273362,0.42317128,-0.24006897,0.5144179,0.06522563,-0.33125308,0.5363049,0.94272107,-0.036974087,-0.15633047,0.8144825,0.49259362,-0.44747415,0.58456105,-0.78649265,-0.21119541,0.46338686,-0.0782887,-0.49249396,0.037457585,-0.32004747,0.09450803,-1.11582,0.1392907,-0.17831624,-0.4989771,-0.81846905,-0.18113738,-3.5834484,0.18662687,-0.36959627,-0.062070042,-0.1003502,-0.2821913,0.5148705,-0.8934634,-0.7205842,0.11043197,0.059262518,0.6586467,-0.23283172,0.29155836,-0.25481352,-0.3035554,-0.15773161,0.28341624,0.32683805,0.2745041,-0.061701104,-0.42980313,0.27052078,-0.23574318,-0.43816498,-0.089203,-0.62899673,-0.6267466,0.0006457418,-0.61675483,-0.30643517,0.7824633,-0.33141848,-0.22269136,-0.29635534,0.12474991,-0.10522396,0.42944965,-0.08033374,0.13875094,0.24692936,0.020337781,0.051674336,-0.11754837,0.26411557,0.049245197,0.4303255,0.44018936,-0.17696936,0.23994197,0.62804866,0.76038265,-0.03406847,1.0022146,0.52078754,-0.051065475,0.0521818,-0.17484866,-0.49410442,-0.96822566,-0.46978477,0.11955812,-0.58230644,-0.36988592,-0.18925285,-0.39737776,-0.969053,0.8543355,-0.066086546,0.16203828,-0.1970336,0.33408263,0.5707934,-0.39438072,0.10735142,-0.088801205,-0.11528639,-0.5978558,-0.437048,-0.583236,-0.71753806,-0.16611932,1.2800429,0.05206408,-0.18583278,0.15183313,-0.32364088,0.13579513,0.11292964,0.06423534,0.20754509,0.72151065,-0.009925991,-0.7768895,0.45177498,-0.27983344,-0.15254004,-0.70279485,-0.04534595,0.7786649,-0.76093644,0.73270154,0.40099275,0.20775338,0.048341352,-0.6489976,-0.25045612,0.17994438,-0.059427682,0.7907891,0.47165546,-0.52814156,0.5276989,0.19035949,-0.23747413,-0.64041054,0.4732667,-0.013716601,-0.20600902,0.024495244,0.3854097,0.04121213,0.041346647,-0.23310655,0.30380353,-0.36648977,0.2864237,0.34021565,-0.060389757,0.2723162,-0.07340622,0.035313014,-0.8823127,0.14434597,-0.4410622,-0.38224137,0.19022052,0.06526873,0.18981715,0.2100312,0.11573091,0.3633598,-0.4588666,0.11291027,-0.2160747,-0.35170734,0.31792918,0.6215865,0.38703594,-0.6133057,0.73113054,0.11983133,-0.17626542,-0.0066815615,-0.12065381,0.48998547,-0.023853987,0.2872978,-0.05253656,-0.33505058,0.17208524,0.7716996,0.149175,0.49037778,0.1785013,-0.0053046294,0.42656156,0.061968636,0.31959954,-0.09639027,-0.62723345,-0.052226126,-0.10544022,0.08171876,0.5013582,0.08521827,0.28610155,-0.17092699,-0.18751945,0.32580853,0.23290652,-0.0045620003,-1.5729538,0.37954125,0.13050197,0.8453985,0.4276826,0.060121,-0.03685363,0.70500326,-0.5135197,-0.16858144,0.5547444,0.31550652,-0.44894513,0.59178025,-0.52837104,0.41566232,-0.33350262,0.06705937,-0.109827615,0.06285272,0.40747118,1.0269011,-0.40196228,0.03308467,0.04503128,-0.1023429,0.11331892,-0.40457225,0.08463287,-0.54309684,-0.3406391,0.94250244,0.48219696,0.54015213,-0.27974042,-0.16075876,0.16599977,-0.100864895,0.15148892,-0.13318025,-0.23271191,0.016500339,-0.7972348,-0.043759335,0.5413814,0.16915761,0.19474654,-0.027225846,-0.48392668,0.26535144,0.005089591,-0.30986133,-0.095169626,-0.6440653,-0.2739863,-0.39503157,-0.69542974,0.33996883,-0.35912654,0.26883015,0.29326925,0.098811485,-0.16402696,0.123977415,0.2488801,1.1186787,0.30270022,-0.08286036,-0.31065097,0.27329338,0.40848795,-0.34031406,-0.24857621,-0.34040228,0.34028175,-0.53055114,0.58750933,-0.21221733,-0.5160135,-0.18340869,-0.0813563,0.07321415,0.5435129,-0.25834134,-0.22641386,0.13734578,0.04297359,-0.27471963,-0.24924403,-0.5078387,0.20861828,-0.09026315,-0.07708327,-0.08976766,-0.055764865,-0.18764739,0.57439655,0.21134882,0.24653418,0.5757243,0.012456278,-0.25887027,-0.11239517,0.016510438,0.7027597,0.050043,-0.5190236,-0.47394577,-0.2870871,-0.41199186,0.41171542,0.10324446,0.14240174,-0.027288923,-0.40163937,0.7363181,0.12964489,1.3947077,0.07479211,-0.5515119,-0.095842905,0.6465928,-0.09084817,0.086890936,-0.44968033,1.1133122,0.5296474,-0.28987962,-0.14447545,-0.7383184,-0.04319107,0.41563037,-0.43240428,-0.16662787,-0.25791982,-0.83810234,-0.09552487,0.25164053,0.37121615,0.08993127,-0.051794767,0.24912888,0.15813105,0.22588646,0.57662797,-0.5116157,-0.17677324,0.4177499,0.16827428,-0.112761416,0.06984892,-0.29464298,0.36166617,-0.5731623,0.1461326,-0.6708998,0.18593061,-0.27625844,-0.33273605,0.2936205,0.05574158,0.47718772,-0.4145919,-0.24782509,-0.19634874,0.7696858,0.21614873,0.2960423,0.7847221,-0.27478436,-0.21158361,0.0679014,0.41941082,1.5496974,-0.30510256,0.27332607,0.24140473,-0.23849817,-0.5518642,0.37126866,-0.5524084,0.010942261,-0.03725426,-0.52372307,-0.5127039,0.17437029,-0.032921623,-0.036398094,0.050512474,-0.45954633,-0.13514769,0.6487187,-0.36667815,-0.08692518,-0.17722857,0.27254525,0.7155482,-0.37367043,-0.4713885,0.007765571,0.59388196,-0.1460309,-0.48657107,-0.18159242,-0.36890462,0.58612144,0.012573771,-0.2443444,-0.043901008,0.19403769,-0.43025926,0.1894546,0.2684354,-0.38157764,0.11843904,-0.3502805,-0.108794875,1.156094,-0.048130196,0.31015578,-0.70325404,-0.47110164,-1.0141298,-0.33207867,0.009306778,0.026135406,-0.10550783,-0.71730465,0.053730417,-0.13296427,-0.09521245,0.048081126,-0.56518906,0.41164997,0.04222418,0.76220495,-0.11316124,-0.84800357,0.07550198,0.24818327,-0.0973376,-0.4810445,0.8149669,-0.032944113,0.8392255,0.10363718,0.43006173,0.033535387,-0.6486792,0.18526672,-0.29172727,-0.21315008,-0.96896696,0.086249925,319 +821,0.5707794,-0.26846611,-0.35241222,-0.18668228,-0.29941195,-0.14802967,-0.2689481,0.442192,0.4854227,-0.2742309,-0.16595787,0.0251033,0.1947047,0.13076656,-0.17045532,-0.5946873,-0.22239937,0.05095409,-0.5832929,0.58390105,-0.67418617,0.22919695,0.03582695,0.3613622,0.080326684,0.40052018,0.13993098,0.04090224,-0.18350367,-0.16742928,-0.20203827,0.299294,-0.45991752,0.11144352,-0.14639969,-0.12270671,-0.012366359,-0.5277841,-0.3804913,-0.6991574,0.057137102,-0.8056225,0.35020176,0.18127239,-0.23360968,0.056095112,0.07151646,0.1387407,-0.44013548,0.02271534,0.027320763,-0.005228033,0.066499,-0.47628292,-0.20987111,-0.25251564,-0.53671724,0.014518219,-0.53237003,-0.26902208,-0.031429846,0.10023418,-0.3029993,-0.008881781,-0.2027065,0.69734293,-0.32115072,-0.07442533,0.29888085,-0.19839115,0.17313695,-0.49652767,-0.004613454,-0.1515837,0.23901992,0.057141006,-0.41771176,0.33491158,0.3440939,0.31450382,0.122525275,-0.23519003,-0.4167451,-0.20413126,0.17390668,0.31478676,-0.17503685,-0.55703974,-0.31120744,0.048716675,0.22724849,0.25601578,0.20576614,-0.13016981,0.20890681,-0.039844114,-0.41800138,0.7793346,0.50061905,-0.26350644,-0.28259745,0.29542962,0.5588703,0.16951245,-0.2828025,-0.14357564,0.022399416,-0.7182192,-0.20422234,0.26420823,-0.118771255,0.602421,-0.34890854,0.07365558,0.62846684,-0.1595767,-0.14206277,0.41774634,0.03874999,-0.06573612,-0.4834828,-0.2589109,0.25483486,-0.5938773,-0.062278196,-0.31179148,0.7241912,0.24019487,-0.7693345,0.5048019,-0.5352477,0.10283626,-0.10642239,0.56897426,0.64726835,0.5954464,0.43929386,0.68562603,-0.28295803,0.13466372,-0.008078198,-0.32539555,0.13195626,-0.2550948,0.19221918,-0.43513498,0.100335896,-0.03290425,-0.015429811,0.15570782,0.3325849,-0.43759397,-0.29478788,0.24914317,0.7562584,-0.18646343,-0.16247593,0.68106556,1.1142861,1.018291,0.041610375,1.0794016,0.22068906,-0.21816693,0.14180689,-0.23134239,-0.6784169,0.25886998,0.2690347,-0.39465848,0.34494272,-0.30889332,-0.101932265,0.17879386,-0.29987463,0.009088886,0.009957527,0.36744323,0.11045388,0.008027892,-0.46924886,-0.31168,-0.01529561,-0.07825646,0.17671633,0.3045718,-0.22129096,0.43677226,-0.14371157,1.0676702,-0.016823387,0.043831434,0.016059866,0.7241253,0.35771903,-0.115036584,0.03162129,0.6065789,0.24740398,0.18406059,-0.58245045,0.29692915,-0.2695789,-0.20097767,0.008728619,-0.4394745,-0.011827926,-0.07659118,-0.35396162,-0.06659407,-0.069926925,-0.23566456,0.41554686,-3.029811,-0.3080444,0.0017976165,0.24195826,-0.24368466,-0.21917176,-0.13434307,-0.5459732,0.27112377,0.22556108,0.6540287,-0.71113366,0.35250592,0.60006464,-0.5239215,-0.14572859,-0.72033834,-0.072815485,-0.04971528,0.43753323,0.086162746,0.03728187,-0.062323,0.15374354,0.6628875,0.14820075,0.23155606,0.30258504,0.44133702,-0.024052667,0.6632849,-0.07943326,0.557519,-0.4418317,-0.166851,0.24624227,-0.5224847,0.17868787,-0.06762449,0.06461791,0.6351678,-0.4119209,-0.920739,-0.47013697,-0.019742846,1.0851327,-0.39694476,-0.47805095,0.0837272,-0.37073886,-0.2908434,0.022588253,0.48698595,-0.038467746,0.03455772,-0.70906,0.12196853,0.014618824,0.20404501,0.021467298,0.005082602,-0.1862937,0.66026026,0.13579416,0.55381066,0.10715803,0.027348824,-0.49780592,-0.36186993,0.058557253,0.9061911,0.33035746,0.057304416,-0.17391296,-0.21926498,-0.16835435,0.0418257,-0.048116412,0.7083721,0.620632,-0.18010058,0.13675497,0.45595077,0.0014721999,0.149538,-0.07737806,-0.27045447,-0.11489455,0.038581345,0.4708209,0.97555,-0.22189917,0.4036608,-0.14002338,0.46630275,-0.072710425,-0.5584629,0.7659888,0.59964776,-0.20305832,-0.19182861,0.52603257,0.6052002,-0.5709422,0.57532126,-0.4910525,-0.20978783,0.5398988,-0.055180673,-0.4576334,0.30340037,-0.30391794,0.095822014,-0.7765262,0.3106002,-0.31970695,-0.30717716,-0.4223524,-0.05876343,-3.5351207,0.15199213,-0.19982304,-0.15447447,-0.37589,-0.0676885,0.121978484,-0.47909448,-0.6155125,0.14144228,0.20207565,0.5343219,-0.17844556,0.12179812,-0.23108603,-0.18146013,-0.15198854,0.20461376,0.11131936,0.2665788,-0.09460177,-0.36361918,-0.20335926,-0.05457716,-0.49283263,0.23808622,-0.6235717,-0.40081987,0.02463678,-0.6938161,-0.2782181,0.55947584,-0.22227003,-0.09427166,-0.20141612,0.17747454,-0.090068094,0.2248636,-0.0366488,0.22985362,0.03510209,-0.121592104,0.11798548,-0.2977393,0.3688971,-0.051642302,0.36312124,0.20376031,0.048100606,0.18589415,0.46276727,0.7643578,-0.046785593,1.0171193,0.14712097,-0.14060463,0.36579037,-0.1930439,-0.4050444,-0.5191128,-0.17652218,-0.10320098,-0.37198076,-0.30720374,0.09311495,-0.38521957,-0.76571685,0.5944759,0.09185467,0.18973754,-0.012291421,0.42156863,0.5534086,-0.22334337,0.17093806,0.0015210608,-0.1940551,-0.53795165,-0.06534829,-0.6748805,-0.2789133,0.25659055,0.6812108,-0.23875804,0.033620052,-0.017383054,-0.18381257,-0.13818638,0.21310394,0.010031412,0.36558148,0.4244727,0.023156619,-0.47351503,0.35640225,-0.10040333,-0.120310046,-0.36293843,0.12775724,0.87056726,-0.79130775,0.77791435,0.43690363,-0.0052640713,-0.28820968,-0.464327,-0.32073995,-0.048061747,-0.07750843,0.59621006,0.23627217,-0.97813636,0.37977222,0.35426724,-0.5426205,-0.6009722,0.39698818,-0.15931119,-0.2945986,-0.31556782,0.37026563,0.14505205,0.08309334,-0.16398783,0.1502787,-0.30611935,0.039324086,0.034863,-0.014949594,0.38823113,0.06290977,-0.29650608,-0.7016311,-0.15462382,-0.64832634,-0.32596332,0.46121702,-0.03245492,0.033351272,0.05999723,0.003822883,0.28709164,-0.13802491,0.061850328,0.123109855,-0.26914752,0.4308698,0.47315875,0.49610448,-0.42664874,0.5069049,0.25614882,0.0351229,0.08491548,0.00020331144,0.17816675,-0.08983564,0.5461343,0.1987855,-0.1555569,0.37820444,0.67592734,0.10771706,0.43994153,0.28195193,0.001474152,0.5157495,-0.1149933,0.21726853,-0.018813826,-0.5685188,-0.04358821,-0.23535259,0.22555475,0.30895117,0.15199341,0.19619167,0.07026168,-0.11702484,-0.14928417,0.3694372,-0.099490464,-1.3061123,0.33370414,0.27111772,0.7005523,0.454075,0.15345101,-0.20903926,0.839112,-0.169581,0.15283701,0.48788372,0.100452326,-0.48020282,0.68931836,-0.47835365,0.44978067,-0.20284466,0.12111765,-0.020429054,0.15522583,0.41517365,0.77839273,-0.30507597,0.048048258,0.066341706,-0.21560816,0.07898045,-0.48262715,0.17451298,-0.3245891,-0.34918308,0.65467364,0.24295749,0.36607206,-0.13680102,-0.11853554,0.114175625,-0.10625621,0.14248069,-0.038473524,-0.079179734,0.102607906,-0.73272985,-0.118257195,0.5477689,0.17183499,0.19122875,-0.22815971,-0.04463029,0.1216524,-0.21995415,-0.16191775,-0.053842854,-0.5303859,-0.001517574,-0.15545087,-0.65273494,0.46099785,-0.25078866,-0.0036623925,0.12997197,0.017936975,-0.25893787,0.32484955,0.0720484,0.6023647,-0.021928975,-0.15337911,-0.33065248,0.109554596,0.15542853,-0.19970441,0.017399818,-0.3403068,0.14353354,-0.48786512,0.5686708,-0.18028979,-0.53807473,-0.16923659,-0.023198595,0.07931062,0.54937726,-0.20232548,-0.30215064,-0.2397724,-0.2328276,-0.40323547,-0.19962727,-0.10584653,0.43523312,0.33983088,-0.07323936,-0.093867816,-0.3289691,-0.012476727,0.47783658,0.060697332,0.38589737,0.16335781,0.23095165,-0.21534331,-0.06787983,0.13002773,0.5667198,0.1311243,-0.1557895,-0.35584816,-0.1820517,-0.36622015,0.17903773,0.049895238,0.27618387,0.02551195,-0.31817716,0.77184314,-0.24836421,1.2311869,-0.058121342,-0.3318936,0.04010048,0.52510756,-0.1197724,0.060580138,-0.29570445,0.8960791,0.36685172,-0.2507439,-0.04601131,-0.78710586,0.03980141,-0.01736705,-0.3263317,-0.13673861,-0.062785335,-0.39175928,-0.14481188,0.2576441,0.21835762,0.368875,-0.053321052,0.21574755,0.10456584,0.07367201,0.3146787,-0.56645757,-0.13061796,0.28747985,0.30858377,0.027300471,-0.00461147,-0.34742287,0.19933647,-0.5777268,0.29789498,-0.3732265,0.129566,-0.34980586,-0.34890065,0.1318137,-0.015800526,0.30126542,-0.3935249,-0.55419344,-0.15626508,0.45045552,0.10062507,0.21504681,0.6139293,-0.21724202,-0.03623164,0.20387514,0.71213216,1.1013116,-0.20906389,-0.13849087,0.21459289,-0.39094532,-0.8352673,0.36459732,-0.3120432,0.2290643,-0.05621909,-0.24613833,-0.47764245,0.17520845,0.043684345,0.29683623,0.11304162,-0.66362095,-0.11511756,0.1810652,-0.24951506,-0.18720317,-0.2080038,0.19066608,0.64028937,-0.23848408,-0.32765272,-0.11340871,0.24960315,-0.23290052,-0.44040152,-0.20849377,-0.2402919,0.26293007,0.28045687,-0.21444036,0.021010915,0.055426568,-0.55361587,0.17182517,0.13898383,-0.3630909,0.17124896,-0.1568624,-0.21793605,0.76822895,-0.27155522,0.16713756,-0.41651857,-0.6761649,-0.7984132,-0.21924092,0.1083738,-0.13476236,-0.043482512,-0.57026964,-0.018574512,0.0022226796,-0.2328584,0.069687225,-0.49476933,0.48961556,-0.01852116,0.41634867,-0.26040536,-0.91928005,0.12193245,0.31088597,0.004919561,-0.7144778,0.51948184,-0.11189129,0.74559164,0.09578296,0.061034236,0.1413979,-0.42305598,-0.105710484,-0.35425702,-0.084934056,-0.5841547,0.12785096,333 +822,0.25476158,-0.1094178,-0.6950211,-0.13033952,-0.18008119,0.13865356,-0.2640089,0.37856397,0.03861251,-0.66222245,0.0089290785,-0.2752875,-0.14568739,0.17354834,-0.14796166,-0.57739884,-0.005749376,0.23050146,-0.3289893,0.76524967,-0.42612424,0.17126489,0.5229095,0.17236592,-0.041480195,0.0712705,0.34967616,-0.106648974,-0.17030473,-0.45338377,-0.083651714,0.08357238,-0.69535357,0.36279234,-0.16297327,-0.24595332,0.24289007,-0.28947583,-0.08132738,-0.7993788,0.048250783,-0.8998831,0.486509,0.0026749223,-0.37699497,0.3435718,0.2581862,0.048585277,-0.07991894,0.0144100385,0.21729481,-0.4378371,-0.3824931,-0.2501072,-0.39300922,-0.7024925,-0.5329239,-0.1834969,-0.48772526,-0.1616155,-0.34292403,0.15035138,-0.44675863,0.012061852,-0.47984496,0.34562492,-0.5040478,-0.08567283,0.052637067,-0.1417253,0.29688153,-0.65277725,-0.018688986,-0.154844,-0.12557875,0.2768691,-0.14261998,0.28646353,0.38209286,0.49518308,-0.0019297799,-0.18753637,-0.06064907,-0.3131381,0.1462835,0.37960157,-0.31303802,-0.22461021,-0.20540534,-0.18228577,0.50746703,0.6142877,0.053395066,-0.2158764,0.1748095,-0.18984117,-0.4524761,0.25482738,0.52424115,-0.24038915,0.026163762,0.3189884,0.15448594,0.08038718,-0.25293395,0.14018045,-0.12645476,-0.37023684,-0.12912683,0.33737707,-0.12030202,0.4726024,-0.036005937,0.073569804,0.69155437,-0.11734706,0.11219513,-0.07150431,-0.06597894,-0.052585647,-0.44087192,-0.3099467,0.46589446,-0.8378849,0.02642704,-0.5626773,0.6887424,-0.22865224,-0.7767949,0.306232,-0.4808217,0.06471505,-0.19212222,0.7464997,0.6249321,0.6770232,0.07108471,0.8714147,-0.4382198,-0.023328125,-0.22038521,-0.096960716,0.24000418,0.07177651,0.3099521,-0.35058674,0.03740074,0.007899329,-0.11336479,-0.20088488,0.39335904,-0.31471103,-0.31277558,0.2024525,0.80597514,-0.38236615,0.00036341944,0.49856755,1.2337013,0.8732662,0.12601475,1.1650809,0.32030615,-0.18758889,-0.1972572,0.32972163,-0.70546895,0.10000894,0.49745765,0.44814992,-0.022961637,0.068305105,-0.24529266,0.41611198,-0.22821842,-0.16476175,-0.21621476,0.23692967,-0.19935493,-0.14434786,-0.42196965,-0.1974958,0.16389383,-0.105519794,-0.0128831165,0.46659252,-0.11287755,0.49923047,0.25516894,1.3504158,-0.21428871,0.044997346,0.21192364,0.33784696,0.1529466,-0.014224701,0.23976481,0.45334098,0.3516558,-0.08766989,-0.5273281,0.2379746,-0.22833359,-0.6305646,-0.0595075,-0.48183298,-0.08098104,-0.24496908,-0.29584357,-0.20462257,-0.1077841,-0.4649888,0.26476616,-2.6084387,-0.0012758821,-0.2293734,0.14374171,-0.29121804,-0.18030906,0.02352115,-0.3891798,0.7319019,0.313113,0.44836316,-0.54488295,0.42120734,0.67432475,-0.1983332,0.046963964,-0.8729494,-0.21130145,-0.27244547,0.47761765,-0.095064424,-0.29117754,-0.016068816,0.021243116,0.70338774,0.24643324,0.32109246,0.37190065,0.40010038,-0.2690772,0.35802647,-0.020526528,0.61373895,-0.3377924,-0.18218513,0.13746552,-0.31422496,0.38074216,-0.25939694,0.15492527,0.4741834,-0.31711313,-0.41005465,-0.41754282,-0.33209717,1.1935071,-0.66718656,-0.674537,0.19230671,0.1739682,0.02702268,-0.13634093,0.5720983,-0.13630946,0.16370757,-0.5127535,-0.008071368,-0.09773055,0.3400537,-0.10531596,0.19872434,-0.39173308,0.8188023,-0.13847958,0.7253247,0.52165884,0.19276048,-0.3487948,-0.3193827,0.0015299817,0.8508244,0.40547776,0.012656915,-0.22295499,-0.12960567,-0.10682591,-0.22768807,0.14804296,0.636324,0.86955315,-0.08713106,0.064362206,0.33778176,-0.25807765,-0.095140256,-0.16506116,-0.63767415,-0.11106771,0.19347638,0.43925726,0.3744386,0.030793056,0.46490172,0.0345083,0.34519348,-0.31505296,-0.5193322,0.3071251,0.59480846,-0.23107804,-0.0723961,0.821707,0.7606707,-0.36575595,0.5546128,-0.64070517,-0.3798829,0.59269804,-0.08292795,-0.6967013,0.28836092,-0.23058385,-0.04497869,-0.7684538,0.14703505,-0.6146649,-0.5086475,-0.5188584,-0.05256459,-2.5876877,0.2542419,-0.20037991,-0.19350302,-0.31272623,-0.23784961,0.37867284,-0.41075826,-0.5397435,0.16325994,0.26017678,0.40245298,-0.018760601,-0.08287086,-0.40638718,-0.3399118,-0.010598862,0.31972995,-0.051395644,0.0010157848,-0.472236,-0.3980486,0.016055847,0.0025745258,-0.3024544,0.046197087,-0.49267352,-0.3940208,-0.14875247,-0.30911455,-0.22936516,0.6716244,-0.5358302,-0.013613584,-0.22328047,-0.014590498,-0.06712986,0.22493356,0.06406767,0.33201313,-0.2348241,-0.13808869,-0.0957944,-0.3967429,0.03272381,0.025698707,0.40667406,0.4067167,-0.21189575,0.045392554,0.5035663,0.490774,0.16695297,1.01713,0.20903015,-0.1207684,0.42437533,-0.14819334,-0.16285501,-0.73006153,-0.1197747,-0.14131683,-0.3673325,-0.40279898,0.08276337,-0.27710733,-0.6776485,0.67800933,0.34625217,0.08199886,-0.044913393,0.62772423,0.37760052,-0.11578863,0.009880826,-0.23924935,-0.16807795,-0.5592137,-0.30193663,-0.98067474,-0.36441913,0.14167584,0.8577635,-0.23048024,-0.23686959,0.10419971,-0.108173646,0.12610374,0.2140861,0.17677677,0.16397537,0.38723585,0.13630824,-0.7147978,0.6977388,0.15181883,0.0777772,-0.66740316,0.20760252,0.79122156,-0.7600562,0.41712785,0.52161574,-0.0007071197,-0.35983372,-0.8111717,-0.17499399,0.1081296,-0.194736,0.51836854,0.24613155,-1.0065136,0.51195866,0.30052865,-0.0014803087,-0.6985505,0.41459253,-0.25221604,-0.16856243,0.05829199,0.41237903,-0.021687618,0.14073516,0.015922084,0.08992093,-0.46506715,0.30415085,0.28091216,-0.19945748,0.46829474,-0.25588524,-0.14244054,-0.7800512,0.2777917,-0.5781681,-0.30946726,0.43053827,-0.19610412,-0.033299282,0.4771134,0.016611755,0.3895825,-0.21108705,0.2348814,-0.2482121,-0.38918567,0.63490707,0.47687754,0.43026552,-0.3610206,0.7769074,0.035869043,-0.3048377,-0.13083674,0.31109202,0.38954994,0.3294123,0.41208735,-0.32676023,-0.121078454,0.28616846,0.88902456,0.24285842,0.38007072,0.22141315,0.14853771,0.4230909,0.01963894,0.14602064,-0.05299555,-0.6150957,-0.20728463,-0.23312871,0.100161225,0.50341135,0.14932548,0.4997693,-0.07522278,0.1446571,0.025737813,0.17950737,0.0884361,-0.70990163,0.3313784,0.2241958,0.6108887,0.623506,0.06927816,-0.004722784,0.5511878,-0.38326526,0.20953031,0.3920842,0.18450217,-0.25621402,0.7916576,-0.697148,0.1511926,-0.19900943,0.15951277,0.084981196,0.02607719,0.4906238,1.0824673,-0.27179348,0.049664963,-0.099896275,-0.33925483,0.32330287,-0.21999459,0.06463956,-0.12883787,-0.6047004,0.45361838,0.14144722,0.33848774,-0.23470716,-0.16086744,0.22511458,-0.17336817,0.4371791,-0.003312568,0.027207606,-0.1444941,-0.28300187,-0.29921743,0.72431034,-0.11251631,0.17543583,0.03367095,-0.21168704,0.44149837,-0.09918946,-0.16718054,0.09099864,-0.6398772,0.25138658,-0.4049447,-0.64960426,0.46090436,-0.21787356,0.08442182,-0.006686432,0.0038060944,-0.11303956,0.016946608,0.28380224,0.44947073,-0.21365625,-0.22174436,-0.21599203,-0.20902438,7.0539616e-05,-0.37866628,-0.029908681,-0.016677383,0.10640836,-0.6993293,0.3601521,-0.4781185,-0.33094704,0.15727565,-0.14283516,-0.25767946,0.48995757,-0.094479404,-0.03751411,-0.10309147,-0.1525269,-0.29844382,-0.40614483,-0.15572406,0.23184407,-0.2803562,0.13484012,-0.21563756,-0.15185775,-0.00023208062,0.1643341,-0.0054317564,-0.008045803,0.34010413,0.22228368,-0.45746747,0.10031348,0.0056196055,0.40895247,-0.10428103,0.056030393,-0.16486281,-0.3508816,-0.28639254,0.10877827,-0.21686317,0.448447,0.09742426,-0.43177631,1.1401948,-0.13997042,0.8461825,0.049100194,-0.4386896,-0.13988197,0.5500126,-0.08080328,0.0143382205,-0.16533819,0.8281148,0.6706178,0.054727,0.008449872,-0.5149818,-0.17093657,0.5256259,-0.22224194,-0.2012664,-0.0013120522,-0.76284105,-0.066713594,0.1898063,0.36574867,0.07274269,-0.17337932,0.068345614,0.34328178,0.1970734,0.43243623,-0.55028564,0.08052619,0.23349774,0.1754273,-0.09392238,0.12769501,-0.3251996,0.23767602,-0.8106303,0.30719492,-0.52546984,-0.12966277,0.19294171,-0.1883566,0.06464921,-0.13619824,0.26203275,-0.12039578,-0.28526625,0.06357404,0.47063228,0.26789406,0.43583047,0.7520582,-0.20065916,0.14605549,0.04200073,0.5392572,1.3263569,-0.27443388,-0.27385107,0.15919496,-0.52829784,-0.9965935,0.17837518,-0.3621323,0.11378717,0.086969756,-0.5962482,-0.23755546,0.30687585,0.17985356,-0.38726756,0.08040962,-0.5132327,0.048086554,0.11898818,-0.30682537,-0.24927606,-0.33917335,0.23197965,0.82123655,-0.31774935,-0.19066758,-0.15743236,0.20444012,-0.4725883,-0.6930265,0.07357426,-0.46015653,0.34301963,0.12947495,-0.5209258,0.36616158,0.116821416,-0.60117227,0.17090903,0.12398253,-0.2146637,-0.08539203,-0.3058519,0.21969979,0.6540217,0.14091071,-0.44370928,-0.41985032,-0.73599,-0.5051055,-0.48089623,0.2387501,0.10864825,0.24522816,-0.52873784,0.088432826,-0.22178386,0.07486453,0.031113872,-0.4849328,0.41159964,0.2851101,0.48874307,-0.15369648,-0.83870906,0.16589251,-0.014458508,0.055259686,-0.4725987,0.5725243,-0.43252537,0.889514,0.1099622,0.0005075733,0.1784572,-0.66216296,0.38102254,-0.3709018,-0.30766448,-0.5827842,0.075113826,351 +823,0.2691832,-0.17276919,-0.3753003,-0.19889002,-0.1889699,0.17313732,-0.13141353,0.52076256,0.43970227,-0.4937714,-0.26271105,-0.08520921,0.08969369,0.28722167,-0.086360715,-0.6134738,-0.050489243,0.1239251,-0.42772707,0.53092474,-0.40023065,0.14574613,-0.12377206,0.37289655,0.20015757,0.1345947,0.00073530275,-0.100711636,0.061113477,-0.22400956,-0.024822697,0.39947197,-0.52347946,0.279748,-0.079472534,-0.34819257,-0.10991073,-0.50499374,-0.45707044,-0.6977353,0.3279189,-0.8100643,0.56493455,-0.015572146,-0.1786354,0.33002976,0.06771883,0.1910045,-0.070318595,-0.05707547,0.05557582,-0.21054675,-0.1809447,-0.029090896,-0.36161658,-0.388684,-0.6373505,-0.019845432,-0.45558187,-0.18208474,-0.45418707,0.10164002,-0.34393203,-0.14974844,-0.07295685,0.6336834,-0.41066512,0.08040773,0.22742124,-0.14225005,0.257586,-0.6751733,-0.12010608,-0.10146052,0.26527753,-0.24919884,-0.2761349,0.16836573,0.3178825,0.42417476,0.07739275,-0.06323197,-0.25579906,-0.11454066,0.4633359,0.4453701,-0.045643043,-0.45943534,-0.15560909,0.02627434,0.14415763,0.28195587,0.26444125,-0.15876476,-0.19550066,0.0567876,-0.24793105,0.6576748,0.35198328,-0.24413711,-0.48670164,0.30976978,0.51963115,0.2761293,-0.014605552,0.20816775,0.029781142,-0.51606864,-0.1871587,0.036895756,-0.2866542,0.3642011,-0.28046075,0.26276016,0.5529627,-0.25378114,0.07273633,0.135906,-0.027513603,-0.039697636,-0.42080918,-0.044802908,0.13819662,-0.6122875,0.28300488,-0.16256765,0.87572354,0.08015712,-0.6310766,0.29071602,-0.54719836,0.23582117,-0.069852725,0.61547136,0.77920026,0.25095233,0.2939533,0.72228676,-0.33329108,-0.002197494,-0.1214196,-0.42434236,-0.1372103,-0.18628453,-0.05018094,-0.4441572,-0.09988254,0.06363125,0.064192526,0.02924884,0.45272923,-0.56348485,-0.06433756,0.081672646,0.8239121,-0.20981842,-0.18898034,0.8696556,1.0059527,0.984698,0.08532142,1.3335367,-0.020711342,-0.08532754,0.09708891,-0.26057985,-0.7106018,0.24757718,0.29947478,-0.021393022,0.22350593,0.12924115,0.055211365,0.37173584,-0.50778127,-0.0074377707,-0.15529196,0.2506237,0.090367265,-0.22125228,-0.3978397,-0.18531425,-0.12451992,0.013301303,0.1762764,0.107194334,-0.14014833,0.38545752,0.10852214,1.0356232,-0.23059995,0.10199565,0.040136855,0.35729852,0.20203006,-0.20947307,-0.017682523,0.2567438,0.4544679,-0.007942383,-0.728995,0.14814857,-0.16696762,-0.29880312,-0.19535506,-0.39725447,-0.15149473,0.08051722,-0.24930249,-0.16426305,-0.25077417,-0.49777457,0.52906907,-2.808218,-0.23596977,-0.09044865,0.25008163,-0.12648691,-0.2541671,-0.05647242,-0.43679777,0.34990963,0.30180383,0.4681411,-0.5388026,0.3658111,0.615402,-0.57747525,-0.037114296,-0.73801136,-0.17759915,0.002994309,0.29297456,0.10376629,-0.0023170311,-0.13822763,0.01598542,0.54677826,0.1305083,0.18099512,0.4376109,0.2939587,-0.19541466,0.43202806,-0.18429695,0.5729096,-0.11007013,-0.18642752,0.31042424,-0.27823743,0.36331055,-0.3201336,0.09683573,0.48141214,-0.32832918,-0.7140084,-0.7131087,-0.5854236,1.2930351,-0.15967105,-0.39971387,0.41825798,-0.50918573,-0.27318284,-0.1449495,0.7097993,-0.1236175,-0.13617267,-0.7346421,0.074225694,-0.10649049,0.028970562,-0.059576362,-0.050343677,-0.4605308,0.7287748,-0.1199008,0.41360763,0.27110085,0.21915185,-0.23116489,-0.30848962,0.02163309,0.8779389,0.323006,0.23505391,-0.3413409,-0.18239777,-0.4822085,-0.08126195,0.0076638856,0.7094369,0.6096054,-0.055855066,0.16805567,0.30651182,0.061389077,0.11526683,-0.16661541,-0.19785126,-0.17240264,0.010127445,0.5117507,0.37359908,-0.21726836,0.4501698,-0.018008582,0.023174947,-0.19626725,-0.46917453,0.3898379,0.85412675,-0.2579871,-0.3028557,0.8010931,0.40399337,-0.22916333,0.38927105,-0.47231603,-0.18334071,0.54110074,-0.20886733,-0.51381767,0.081899814,-0.3607756,0.07533448,-0.9196238,0.24012887,-0.438957,-0.89411443,-0.32117182,0.009322226,-3.4899614,0.18527997,-0.26653063,-0.1317804,-0.35224602,-0.21947797,0.22026062,-0.32751593,-0.7052676,0.12539782,0.12016409,0.6682873,-0.24354093,-0.01573056,-0.1825528,-0.1920038,-0.2783458,0.13478947,0.04494901,0.31272492,-0.13599227,-0.2503177,0.02488161,-0.0033948321,-0.3277866,0.03860389,-0.46062288,-0.46284366,-0.02949071,-0.56551266,-0.18960948,0.65291303,-0.42182776,0.014104978,-0.36440822,0.06300821,-0.057523478,0.39586115,-0.08087924,0.19518328,0.115128435,-0.07591544,-0.14137019,-0.16685553,0.46098828,-0.027846724,0.3845601,0.43889514,-0.2147507,0.26487538,0.43465266,0.58560663,-0.0442856,1.0592369,0.4552718,-0.17010872,0.3010404,-0.16749436,-0.36293006,-0.53379804,-0.2590002,0.21667518,-0.48116744,-0.5583448,-0.2011435,-0.23588897,-0.8172743,0.41251794,0.049977437,0.44822812,-0.0041049547,0.15993927,0.47534677,-0.034939535,-0.00085357827,0.015304089,-0.18199383,-0.52017236,-0.3215362,-0.6576497,-0.37795487,0.13355936,0.8618179,-0.2624105,0.11940917,0.04285829,-0.41076735,-0.0458521,0.31222224,0.055634636,-0.019130426,0.435766,-0.04522301,-0.51502043,0.39412746,0.014690901,-0.20070733,-0.682348,0.14861052,0.61726326,-0.5875619,0.7457617,0.27292806,-0.02870331,-0.22730213,-0.45349693,-0.1864245,-0.24818261,-0.286312,0.40785122,0.32047972,-0.90798396,0.39917815,0.30556354,-0.022483448,-0.81282943,0.4738914,-0.10781319,0.018829936,0.008002485,0.3817579,0.2081105,0.09670683,0.06138298,0.22004934,-0.24493949,0.45400307,-0.021398028,-0.11224624,0.3173902,-0.083818056,-0.1393181,-0.7345913,-0.16799326,-0.64915246,-0.1397906,0.17912483,0.05459286,0.17063236,0.23443031,0.16011535,0.49020576,-0.10852852,0.15659478,0.05756257,-0.43612626,0.30948249,0.49663273,0.43399975,-0.31892627,0.63531464,0.1235893,-0.042167082,0.088634856,0.21924748,0.45845696,-0.036855143,0.5643876,0.014069587,-0.2668958,0.16038205,1.0459869,0.08980394,0.43136334,0.047480542,0.07349142,0.34678006,0.047423493,0.24668585,-0.114369996,-0.5916403,-0.018835843,-0.42870435,0.17692263,0.37833512,0.25796878,0.2755603,-0.0786491,-0.31938878,-0.03957908,0.22161533,0.08175179,-1.1235696,0.16233923,0.24740952,0.98090744,0.50163394,0.015568882,0.049025044,0.51445645,-0.027730873,0.12818046,0.4737154,0.12808669,-0.5461307,0.6327589,-0.7329591,0.5310903,-0.12810804,-0.09346012,0.10031066,-0.061743062,0.38185576,0.8575689,-0.26122764,-0.05645975,-0.018973842,-0.23120558,0.25649083,-0.5138084,0.062267322,-0.5440431,-0.17240427,0.6957515,0.6428923,0.31021246,-0.25632766,0.0121086165,0.09312538,-0.07334735,0.10463613,-0.03081317,-0.083071746,-0.11229553,-0.6806565,-0.075820304,0.38951755,-0.029957464,0.21143906,0.1139374,-0.19548805,0.20451386,-0.14505354,-0.15441193,-0.15403509,-0.60226023,-0.17184341,-0.20159447,-0.58958507,0.38560852,-0.31072113,0.1509258,0.2760562,0.0619926,-0.18708992,0.25553933,0.015439372,0.6842873,0.035382003,-0.029898183,-0.39355373,0.15597163,0.19316812,-0.20441294,-0.075613044,-0.1990143,-0.03207175,-0.62881064,0.31457523,-0.14098251,-0.45257068,0.2286704,-0.098131716,0.009045641,0.48872527,-0.064643346,0.016576363,0.05483977,-0.3637937,-0.24630344,-0.08719621,-0.073902994,0.2743559,0.10478143,-0.029341787,-0.18722296,-0.16792254,-0.12617038,0.07987986,-0.009418495,0.36188218,0.3240103,0.07476582,-0.21987449,-0.25721407,0.27812287,0.520829,0.037897702,-0.09152516,-0.08024782,-0.42368403,-0.28912652,0.19212835,0.04001023,0.39187065,0.053818136,-0.36965835,0.5758706,0.13717702,0.9437507,0.10884452,-0.31975922,0.120553575,0.42423105,0.053595472,-0.12725203,-0.32415178,0.84457797,0.3241139,-0.04534048,-0.08760601,-0.4014542,0.12517555,0.2578716,-0.08321703,-0.08534371,-0.030200884,-0.6579377,-0.14803106,0.33359453,0.22083616,0.14206715,0.020222805,0.0032836497,0.21764721,-0.08307821,0.38254324,-0.5154004,-0.15169556,0.29492828,0.20475936,0.10920326,0.11412374,-0.418113,0.30087543,-0.6032793,0.030159721,-0.087815665,0.11785654,-0.4361247,-0.19615488,0.33844018,0.049947213,0.54543465,-0.18770508,-0.43239787,-0.2847713,0.38917243,0.0110458685,0.14874427,0.5328035,-0.20703556,0.055173073,0.115276895,0.45827422,1.030858,-0.06684029,0.12721686,0.2706978,-0.35446683,-0.5952681,0.33268282,-0.4686557,0.29616427,0.06739005,-0.19546175,-0.3340524,0.19592296,0.19508588,0.0906406,0.2582818,-0.47138146,-0.32614592,0.06473134,-0.23372996,-0.12900719,-0.2433691,0.036238447,0.5876713,-0.30263144,-0.23921831,0.063457824,0.29135546,-0.25523707,-0.51842815,0.020829797,-0.12054909,0.19313234,-0.16247547,-0.4370668,-0.08213994,-0.03949993,-0.48886415,0.045878574,0.084379174,-0.29198512,0.10484606,-0.20386969,-0.07271165,0.7944836,-0.34823337,0.15529136,-0.45062867,-0.5535787,-0.7068949,-0.24162574,0.3268983,0.17861392,-0.07286513,-0.40737367,-0.023050815,-0.059699148,-0.022458896,0.14627516,-0.48493996,0.4635227,0.110706836,0.43142948,-0.0674377,-0.8170635,0.20132725,0.15482864,-0.014587606,-0.6972613,0.47209564,-0.08820506,0.72246003,0.14641432,0.0877069,-0.0010185441,-0.5267119,-0.043663505,-0.1835746,-0.15809543,-0.61997455,0.11229187,353 +824,0.49796352,-0.2697957,-0.46565452,-0.057399303,-0.32320553,-0.06773582,-0.073013656,0.75910234,0.38539127,-0.13349235,-0.1426747,-0.1340318,0.030845622,0.45705938,-0.15571368,-0.51465625,-0.04920579,0.123458564,-0.30633312,0.4149343,-0.4379114,0.23510075,-0.2227959,0.44311818,0.33624256,0.26956952,-0.16467358,0.11503833,-0.19825989,-0.12984815,-0.119140975,0.26000103,-0.20465636,0.05142348,-0.007955735,-0.30584118,-0.16164628,-0.6167524,-0.4233099,-0.6315591,0.49878109,-0.76906663,0.44812667,-0.031154731,-0.2413605,0.42101946,-0.04049708,0.31006882,-0.1092859,-0.15194018,0.047161847,-0.021949356,0.024048137,-0.2383095,-0.24549668,-0.29100838,-0.6499904,0.071913,-0.38131395,-0.28829315,-0.17405991,0.06322015,-0.28941652,-0.012467076,0.030949524,0.56402767,-0.45781696,0.23322405,0.0664604,-0.084551156,0.022430763,-0.58127326,-0.2107761,-0.013231501,0.23104751,-0.19888568,-0.21286552,0.23375398,0.2424895,0.22763185,-0.22607328,0.015973978,-0.50218886,0.073201425,0.032752022,0.61766076,-0.041207593,-0.7111912,0.045439884,0.09570092,0.17018147,0.22082944,0.2889962,-0.09452024,-0.14362767,0.02745375,-0.066759594,0.7054832,0.41021037,-0.17277904,-0.21569782,0.3585584,0.5400505,0.3474373,-0.100166164,-0.051146653,0.063927345,-0.572676,0.005029609,-0.15340576,-0.16904624,0.55167264,-0.03993765,0.34355783,0.5865841,-0.20456783,-0.004390154,0.1592397,0.009735807,-0.0124539435,-0.222784,-0.23096573,0.18059105,-0.32071662,0.14581905,0.05393141,0.65339595,0.16319533,-0.78641564,0.3820151,-0.5281492,0.12222937,-0.14077519,0.33736697,0.62021613,0.33349356,0.34496936,0.5224236,-0.18528523,0.17242877,-0.10149276,-0.3805376,-0.026835402,-0.16596562,0.013255581,-0.5492544,-0.13888873,0.05224975,-0.3556501,0.34153855,0.3073113,-0.4882872,-0.066318564,0.17364772,0.76953506,-0.23192157,-0.18357998,0.9090479,1.0927877,0.9179426,-0.043793615,0.8424914,0.075117774,-0.017055502,0.2183301,-0.46718502,-0.5190435,0.24570428,0.21153305,-0.48647928,0.4084607,-0.08582735,-0.032767404,0.37805733,-0.20626305,-0.02247504,0.0024596553,0.28539374,0.41151866,-0.2684879,-0.488894,-0.40035412,-0.21736646,0.15029591,0.21887648,0.32752058,-0.32223466,0.3155472,0.019806236,1.665182,0.12263385,-0.022684991,0.051961232,0.6342748,0.21928878,-0.24412835,-0.07966408,0.1940161,0.23444296,0.06763512,-0.57614857,0.23010091,-0.11798748,-0.5202549,-0.12731154,-0.35664964,-0.2147706,-0.12761883,-0.3558675,-0.13450018,-0.22420907,-0.3132678,0.5440176,-3.0485537,-0.20609732,0.06466586,0.37396464,-0.0070001483,-0.46438363,0.044091742,-0.37638426,0.23868383,0.26233038,0.4647933,-0.7472765,0.43747357,0.38410744,-0.64699596,-0.10631762,-0.4788425,-0.051989723,0.056714743,0.3458705,-0.021295292,0.14929228,0.31110632,0.22350782,0.45071545,-0.08017983,0.1093693,0.24015851,0.41182923,-0.11685765,0.35172603,-0.24293637,0.40797928,-0.07920034,-0.18675096,0.25926444,-0.3506042,0.19963944,-0.19988094,0.11289721,0.32488328,-0.2557876,-1.0048773,-0.43165198,0.12850721,1.0916387,0.064443834,-0.31877288,0.37974682,-0.60371363,-0.26392075,-0.23771052,0.44675672,-0.12705058,-0.3195714,-0.63664836,-0.08157284,-0.1493294,-0.06839814,0.028111314,-0.16536178,-0.3723533,0.5150328,0.0133991465,0.34618464,0.24973236,0.13859026,-0.46902883,-0.41662827,0.11038306,0.54764086,0.31980106,0.10581634,-0.22483365,-0.15395711,-0.28826064,-0.09373957,0.16346483,0.51692396,0.54673886,-0.03603532,0.15926027,0.14446758,-0.06297649,0.029860312,-0.18729119,-0.07464684,-0.06510341,-0.0016595721,0.57144076,0.7878882,-0.25473043,0.640493,-0.016872024,-0.010625879,-0.21930945,-0.33963332,0.47196245,0.90618616,-0.11932764,-0.3563546,0.5342173,0.45413843,-0.3176739,0.21586074,-0.4747746,0.07681464,0.4116434,-0.27194643,-0.3402544,0.25055906,-0.12883526,0.05135706,-0.7716965,0.22662741,-0.1562902,-0.58505756,-0.49600402,-0.05122937,-2.8433545,0.060083617,-0.17508547,-0.44902134,-0.10203407,-0.4002522,-0.14554602,-0.6539411,-0.63747674,0.21353191,0.13500936,0.66740316,-0.18477277,0.14975126,-0.09403339,-0.2668927,-0.2807697,0.12880905,-0.048817486,0.5408106,0.09641854,-0.24033551,-0.09942625,0.015427329,-0.57955986,0.16463907,-0.5045996,-0.39743498,0.010873179,-0.5532608,-0.21508242,0.6393408,-0.22085728,-0.017139146,-0.24680926,0.006664125,0.0022534777,0.34980264,0.0325763,-0.07486754,0.19975339,-0.009208153,0.39897725,-0.06997502,0.3320427,-0.024834173,0.46841803,0.23256075,-0.1254908,0.3265616,0.54755336,0.7591975,-0.034738783,0.83251333,0.40564713,-0.030465126,0.13627036,-0.27886444,-0.21087475,-0.2765948,-0.25680402,0.12022597,-0.3309441,-0.52429795,-0.21951097,-0.37511888,-0.76535124,0.4823006,-0.028781937,0.13318713,-0.009688401,0.26149747,0.6423211,-0.22922331,0.054339845,-0.021409651,-0.103089355,-0.57220274,-0.15593706,-0.5030086,-0.3359921,0.17963015,1.0074555,-0.27151665,0.045793284,0.09814021,-0.3857604,-0.09440596,0.083845936,-0.051037002,0.09090218,0.05484262,-0.30198538,-0.51497084,0.2902967,-0.22102128,-0.24365385,-0.54825014,0.0929643,0.48036528,-0.34201893,0.4438838,0.12282926,-0.031191962,-0.14225088,-0.4163442,-0.10735736,0.02006656,-0.14321879,0.41138592,0.35972607,-0.7783678,0.3814321,0.46680388,-0.20757847,-0.6029028,0.50887907,-0.078960516,-0.29448888,-0.19716068,0.20912488,0.45075202,0.0046360246,-0.2986335,0.22720008,-0.3888698,0.21531892,0.12732537,0.012049873,0.17602009,-0.08975639,-0.006009052,-0.7236514,0.091655254,-0.3082197,-0.31304705,0.084487,0.24733059,0.45727167,0.08431544,0.1340215,0.21010049,-0.4138324,-0.03667466,-0.054727633,-0.3063366,0.20766331,0.34061837,0.6395363,-0.39130113,0.50791556,0.0341555,-0.03363334,0.34534106,-0.08533224,0.42465147,0.0057396046,0.3078665,0.34056556,-0.372723,0.2090552,0.78966266,0.06925871,0.39745927,0.044847935,-0.08618707,0.12886417,-0.015808642,0.2874877,0.024241269,-0.46588445,0.16265717,-0.3384994,0.19522877,0.45018816,0.14721249,0.19939996,-0.09174181,-0.57688755,0.022014461,0.3286862,0.048856754,-1.4186772,0.22395511,0.2804916,0.90097666,0.29308683,0.10399425,0.046264518,0.7242346,-0.004468473,0.09063,0.33925986,0.2555693,-0.5713009,0.43583915,-0.7526204,0.6709285,0.02911075,-0.11567729,-0.0063048503,-0.07897058,0.3661619,0.4874555,-0.15414922,-0.1339942,0.09132215,-0.35150024,-0.11624241,-0.41951844,0.041156914,-0.7289927,-0.048689585,0.7410782,0.60810775,0.26435837,-0.050447453,0.055941958,0.22586083,0.03453346,0.01901052,-0.05883028,0.086624555,-0.069013566,-0.68861914,-0.09343252,0.35306755,-0.088283785,0.13835679,-0.23529238,-0.06830457,0.17022699,-0.24879237,-0.38049772,-0.07757486,-0.73438615,0.09281536,-0.12520288,-0.59210426,0.43390647,0.06004029,0.25561643,0.3036938,0.10385344,-0.2781426,0.403819,0.15010439,0.8931466,0.028133372,0.03740182,-0.41431764,0.19797187,0.14822932,-0.1006572,-0.15698941,-0.14225465,0.03452565,-0.34048045,0.39200416,-0.025960783,-0.41570878,-0.19723241,-0.12550397,0.26838478,0.5138797,-0.30377242,-0.16850972,-0.17157167,-0.3916181,-0.23108584,-0.1982183,-0.12432114,0.29135302,0.34842682,-0.37211564,-0.1293172,-0.09696916,0.0048046783,0.4414494,-0.051696867,0.56209964,0.265763,0.2283587,-0.09898021,-0.38199964,0.14950563,0.59253377,-0.0921246,-0.19344407,-0.56485647,-0.41535124,-0.20660956,0.2143333,-0.09335569,0.3211188,0.14199293,-0.13538875,0.55998534,0.1162134,1.1587653,0.07586279,-0.35801756,0.43514776,0.31593558,0.08997498,-0.16780365,-0.27644137,0.8703682,0.28539324,-0.11631227,-0.19829203,-0.36579645,0.058724836,0.20717601,-0.21306072,-0.04092129,0.06644249,-0.62729,-0.08244484,0.43916824,0.068653375,0.17587276,-0.18295647,0.2397996,0.3791226,0.015424263,0.27496907,-0.3909509,-0.105307795,0.28497696,0.24960436,0.15882643,0.11592519,-0.5766313,0.23223941,-0.37350821,0.09268231,-0.30639207,0.2679883,-0.20074786,-0.25216207,0.2229455,0.24555571,0.3777322,-0.24707793,-0.36274847,-0.367884,0.4404633,-0.019053617,-0.037717517,0.17495783,-0.28183052,-0.036937907,-0.08480538,0.40954754,0.85066414,-0.050922763,0.007511983,0.3096014,-0.3198575,-0.68704224,0.3786874,-0.22868319,0.21256213,0.030997908,0.10093135,-0.7287538,0.30951592,0.29863706,0.13492452,-0.047908485,-0.40998152,-0.3739173,0.21104665,-0.34248313,-0.1294021,-0.38881,-0.13913172,0.6571401,-0.19018905,-0.31970662,0.059811145,0.43177798,-0.07077828,-0.21280019,0.072385736,-0.32184994,0.24395542,-0.17386077,-0.2841204,-0.3714812,0.03211325,-0.32833865,0.20293538,0.08472663,-0.24003148,0.2145075,-0.22856021,0.03149578,0.92788935,-0.34682772,0.37329432,-0.5361583,-0.5686248,-0.8174775,-0.48682487,0.20098181,0.03122284,-0.07423713,-0.8321211,0.06267492,-0.031809587,-0.3081946,-0.05638581,-0.3966639,0.45537862,0.031091457,0.1511095,-0.091571964,-0.81826633,0.05498904,0.12232707,-0.40639758,-0.64034224,0.51507443,0.08025955,0.82418877,-0.0045207404,0.13866149,0.09680581,-0.21755636,-0.058518816,-0.22746907,-0.24838902,-0.45018658,0.17564897,360 +825,0.63092357,-0.26233086,-0.5572039,-0.011875686,-0.1920706,0.029617153,-0.10887793,0.59732527,0.43189347,-0.230915,-0.19048156,-0.08137605,0.018321106,0.48783693,-0.08478785,-1.0425683,-0.073550664,0.3671123,-0.6816693,0.8009626,-0.29693797,0.49744728,0.00082707405,0.3484477,0.31403777,0.19277339,0.066463776,0.10679678,0.014693886,-0.039266884,-0.08063974,0.20304102,-0.5754669,0.3068368,0.02164642,-0.5629028,-0.11586823,-0.43874252,-0.36573383,-0.8406283,0.2915106,-0.67190164,0.75857645,0.022381878,-0.3860651,-0.07923689,-0.2284816,0.48353612,-0.212601,0.08171246,0.037710946,0.015788754,-0.1507414,-0.31208786,-0.056924094,-0.52369404,-0.57833767,-0.059008975,-0.32014754,-0.025283104,-0.07798526,0.06584259,-0.27254897,0.1610524,-0.06964425,0.30750874,-0.37641263,-0.010308244,0.41787907,-0.11031693,0.054349024,-0.67099094,-0.20618069,-0.20811458,0.19772863,-0.14031433,-0.5180313,0.16183268,0.38848484,0.48663977,0.0489409,-0.24677818,-0.045537192,0.0307329,0.16317604,0.52089906,-0.25722882,-0.5651563,-0.30947128,0.07526729,0.73856086,0.0010143667,0.38426295,-0.35987607,-0.06304905,-0.16013172,-0.13398474,0.3398805,0.49919662,-0.31155416,-0.15331261,0.22511053,0.76288337,0.3383758,-0.046588067,0.13090284,0.065724365,-0.4846805,-0.04240105,0.05034332,-0.20753479,0.48482051,-0.19216645,0.089574136,0.6494623,-0.045246333,0.023453748,0.20033531,0.0490912,-0.29418933,-0.24301527,-0.29392365,0.41168466,-0.4303452,-0.04659452,-0.34422672,0.7065871,0.28319815,-0.4946077,0.35579506,-0.57988614,0.22389257,0.023823464,0.46007085,0.8764598,0.29106966,0.1324089,0.76496714,-0.3928473,0.0057053813,-0.04467095,-0.21118514,0.05132767,-0.102656834,-0.048029464,-0.5738104,0.043960575,-0.12337919,-0.33579364,0.37658063,0.49240935,-0.70202017,-0.191864,-0.12199137,0.5456028,-0.33423758,0.017185846,0.96989065,1.1615175,0.809318,0.050964158,1.709215,0.45216608,-0.31404325,0.12705848,-0.42407545,-0.7897094,0.1925038,0.42078057,-1.0748957,0.9002757,0.04120078,-0.03371794,0.39479935,-0.4512358,0.02631636,-0.084865965,0.15510063,-0.0434909,-0.44142988,-0.5469649,-0.15923904,-0.13011599,0.039676595,0.12788804,0.3173912,-0.4019575,0.47842398,0.20641737,1.2739067,-0.063858144,-0.18820113,-0.20996524,0.11034355,0.36994433,-0.36396465,-0.10945097,0.26814857,0.5172784,-0.1986192,-0.7034738,0.18035395,-0.247009,-0.30677706,-0.31959388,-0.04805386,-0.09346018,0.14317946,-0.24278958,-0.30204836,0.1277719,-0.145086,0.4429327,-2.1750906,-0.36439896,-0.04972981,0.39147338,-0.07970014,-0.41675273,-0.223803,-0.4530653,0.099583425,0.27538243,0.3625127,-0.7822082,0.320398,0.47430634,-0.7405606,-0.10440003,-0.6344217,-0.004550956,0.09273253,0.32266694,-0.00029864907,0.026426842,0.23536575,0.37814915,0.41342744,-0.056615192,-0.059131477,0.36731339,0.38669348,-0.11051998,0.28149715,0.2051851,0.66587895,-0.11805612,-0.2731662,0.40384066,-0.3344668,0.36462995,0.1260149,0.09700477,0.46405005,-0.29650247,-0.87972,-0.62482595,-0.1868804,0.8020263,-0.18434243,-0.41403452,0.111533165,-0.29305327,-0.45646015,0.07784333,0.5396959,-0.2759739,-0.33777258,-0.9738322,-0.20499907,0.015738292,0.1711151,-0.12247184,-0.15809765,-0.47357702,0.8657183,-0.11310104,0.3983018,0.35952652,0.3469946,-0.18695812,-0.65952694,0.2298897,1.0257066,0.5317599,0.103081726,-0.29212916,-0.022042671,-0.3763665,0.18758881,0.10076862,0.60639906,0.71073717,-0.19916458,0.03072876,0.27406508,0.11069086,0.07390739,-0.11376061,-0.12184181,-0.1725624,-0.06226032,0.50987226,0.79908735,-0.3465692,0.25480542,-0.23666419,0.32011652,0.0064694933,-0.7729473,0.92315865,1.2664161,-0.21273291,-0.35353398,0.77057844,0.19042736,-0.29550216,0.4609526,-0.59114575,0.012129396,0.47347426,-0.04478104,-0.21570058,0.4930338,-0.24149792,0.31999347,-1.0194143,0.40402427,-0.21055444,-0.41799447,-0.6124961,0.097768314,-2.6532402,0.22714292,-0.2430743,-0.19078101,-0.2219159,-0.12737553,0.2433393,-0.6536519,-0.7155251,0.19293725,0.12333569,0.506162,-0.08113495,0.017496416,-0.031703204,-0.49846384,-0.12793903,0.1877646,0.16650103,0.32835403,-0.050560232,-0.42729458,-0.0025865932,-0.17432006,-0.45580316,0.15401946,-0.8167862,-0.51192766,-0.20398752,-0.6589105,0.0054376223,0.66151065,-0.27110007,-0.0076395646,-0.1996079,0.029787928,-0.09180423,0.33818388,-0.02633777,0.019788822,0.1516227,0.0752889,0.07933048,-0.225913,0.17309777,0.15517879,0.38626638,0.27291062,-0.22068578,0.29334474,0.4934365,0.8728759,-0.11954459,0.805645,0.6113406,-0.108544976,0.1809821,-0.22035594,-0.3474873,-0.5603762,-0.40005198,-0.19830294,-0.5646314,-0.4080665,-0.20321141,-0.34655747,-0.91561365,0.37584925,-0.11545678,0.12018611,0.13114305,0.28974143,0.52967817,-0.18107855,0.101831496,-0.1617759,-0.28700927,-0.32506248,-0.19549674,-0.6271661,-0.49370775,0.41231665,1.3361186,-0.21000572,0.25492415,0.11676947,-0.38108444,0.17854036,0.11233013,0.019845089,-0.0011475185,0.4110445,-0.049180683,-0.46201053,0.2555413,0.024403164,-0.40270078,-0.73051447,0.21688236,0.53990453,-0.79057115,0.5971119,0.08903476,-0.13837434,0.09605983,-0.30312622,-0.07030653,0.09870546,-0.35669944,0.51047945,0.3775619,-0.3577867,0.3574767,0.46009067,-0.20235002,-0.6663416,0.38468647,-0.05135115,-0.27952898,-0.06736217,0.33037835,0.005477642,0.028371744,-0.19591145,0.27714685,-0.4002219,0.21177031,0.24324976,-0.18492758,0.060143847,0.014022008,-0.22606343,-1.008222,0.17954397,-0.4741381,-0.28609267,0.08543708,0.19286601,0.2661431,0.028885132,0.34185147,0.3683466,-0.4736025,0.19739546,-0.15127788,-0.371614,0.43290162,0.48024622,0.268909,-0.11774523,0.299074,0.018693307,-0.02244241,-0.12423036,-0.12533191,0.5718469,0.14293332,0.3784552,0.23748,-0.09171033,0.26552543,0.6516442,-0.06339815,0.27799436,0.1848297,-0.108835764,0.036542613,0.19038129,0.3280809,0.058874916,-0.42914426,0.00829788,-0.007418548,0.18939076,0.59284747,0.17296474,0.103072286,-0.25147983,-0.62601644,0.030515978,0.13514918,0.24249943,-1.6889662,0.2506696,0.17699397,0.65444326,0.5818005,0.10279242,0.010591269,0.27787313,-0.2047164,0.13252445,0.37557563,-0.14823575,-0.42247632,0.30918,-0.7332373,0.40306905,-0.026302144,0.06607295,0.11128404,-0.15741742,0.25890025,0.97838384,-0.28940618,0.020369371,-0.17617817,-0.12528986,-0.09629994,-0.42337617,0.00895523,-0.6446957,-0.39495274,0.8146479,0.42586294,0.33261093,-0.27897748,0.1267645,0.18484879,-0.16653427,0.1152864,-0.0051001343,0.24021317,-0.015352872,-0.46957144,-0.19942148,0.52458715,-0.22923303,-0.20645379,-0.2145981,-0.38063237,0.14787531,-0.12102544,-0.031644884,-0.103460036,-1.00451,-0.1398346,-0.47535387,-0.49490976,0.55262905,0.0588537,0.0543446,0.30054343,0.006646319,-0.2338742,0.6239541,0.06595289,0.9584608,0.12340853,-0.1292395,-0.15747134,0.63552445,0.20063019,-0.2747563,0.11128372,-0.08398253,0.31162336,-0.47961155,0.7548766,0.14020203,-0.4497641,-0.030342868,-0.060561318,0.13782717,0.3440541,-0.532432,-0.2940998,-0.02831024,-0.17233093,-0.104631625,-0.4091556,-0.24765413,0.19885744,0.35353315,0.016021306,0.019201657,-0.1306327,-0.0106098065,0.41954637,0.18418975,0.45485643,0.6956455,0.017815018,-0.5470016,-0.037853792,0.41514444,0.30137765,-0.045974936,-0.26147717,-0.4077356,-0.58714557,-0.62679124,-0.01903665,-0.18197699,0.29351643,-0.048692446,-0.26066005,0.82078,0.31878233,1.4235029,-0.041329518,-0.4733982,0.2095285,0.7788027,-0.09456036,-0.18844311,-0.31745175,1.1075782,0.4466165,-0.22840305,-0.109018736,-0.36032578,-0.24418141,0.34099352,-0.32318318,-0.036523163,-0.053835183,-0.65518665,-0.4520255,0.21586788,0.26673445,-0.046953723,-0.045507696,0.37495968,0.29280093,-0.17676233,0.10334021,-0.5832204,-0.072384395,0.1316482,0.20228986,0.12135989,0.24765484,-0.46232262,0.41220883,-0.6966684,0.072757535,-0.32823163,0.091212064,-0.03497711,-0.363122,0.1159559,0.29956213,0.1501316,-0.58799285,-0.3650012,-0.37099472,0.57151824,0.016547972,0.10880538,0.71201664,-0.2303927,-0.0860019,0.06604781,0.55030614,1.2616246,-0.14235188,-0.02868239,0.3413523,-0.4455308,-0.55054796,0.31849632,-0.3010507,0.1595599,-0.30689907,-0.27437288,-0.77289265,0.304014,0.056595024,0.1466673,-0.058385458,-0.6516178,-0.26066902,0.41249862,-0.41859016,-0.13731398,-0.44677505,0.12929875,0.5850162,-0.32425538,-0.63741606,0.12734044,0.23746854,-0.28103957,-0.6278839,-0.2102073,-0.3251656,0.4090351,0.1189942,-0.29758397,-0.13335097,0.0063693426,-0.44313732,-0.0057822242,0.17486174,-0.41465545,0.2590102,-0.26185128,-0.077813186,0.98221046,-0.12091244,0.3234244,-0.74150914,-0.5978232,-0.85534984,-0.53584045,0.45897377,0.29363683,-0.1200246,-0.95819086,0.040212706,-0.112354845,0.03454982,0.18312927,-0.09701834,0.5117522,0.11843252,0.61267525,-0.06957943,-1.1130534,0.18645586,0.25430152,-0.20067078,-0.77060276,0.47296035,0.121243395,0.9468386,0.12615912,0.04727447,0.11600316,-0.67254955,0.07982678,-0.28634873,-0.08121807,-0.77452105,0.16894405,366 +826,0.45149723,-0.16686709,-0.5143641,-0.19389842,-0.004983598,0.07874029,-0.30243346,0.840473,0.16895212,-0.38395953,-0.05519764,0.015207271,-0.052369326,0.3320572,-0.2454298,-0.66799474,0.047131438,-0.021495702,-0.35838607,0.5439169,-0.4847908,0.27925643,-0.093111075,0.44617745,0.1043131,0.25376248,0.34037402,0.2589077,-0.083007134,-0.16654304,-0.04891328,0.05935354,-0.52376956,0.29424474,-0.17505755,-0.23909168,-0.04131401,-0.40122545,-0.34994295,-0.7914288,0.38613388,-0.6593473,0.32677883,0.13710189,-0.33782864,0.09566507,0.27206036,0.12963921,-0.33272573,-0.08821422,0.11811521,-0.15811881,0.10016174,-0.14067246,-0.05288546,-0.6305843,-0.5843115,-0.08424715,-0.5491912,-0.051186223,-0.003303945,0.24551766,-0.42630032,-0.222807,0.023424553,0.62718314,-0.39775273,-0.40974155,0.35309944,-0.3355044,0.19196235,-0.85783035,-0.15920167,-0.10749822,0.1592498,0.042618394,-0.2159893,0.3725098,-0.046133026,0.339897,-0.057141673,-0.18877558,-0.20045245,-0.24095166,-0.043324042,0.4298834,-0.27446938,-0.60981315,-0.16214477,-0.09237704,0.3296979,0.1547412,0.26262623,-0.058461726,-0.11696026,-0.074444175,-0.19327205,0.5750341,0.62584215,-0.19223905,-0.012832627,0.3368189,0.6835165,0.20955026,-0.15732028,-0.024407187,0.03489698,-0.5551226,-0.21113615,0.012237226,-0.18915083,0.5191631,-0.22434963,0.3961633,0.5449373,-0.21412249,0.043669302,0.09727762,0.22328697,0.014922802,-0.21532117,-0.2933804,0.34736958,-0.45319572,-0.0690307,-0.32888398,0.7121115,0.244675,-0.60390776,0.3362633,-0.2996112,0.0465693,-0.055456463,0.66654795,0.8244133,0.42881238,0.3366952,0.94799787,-0.39300957,0.07810057,0.0117761595,-0.06639161,0.18619692,-0.25197813,0.12397834,-0.44742784,0.10922364,0.23054874,0.06603081,0.064072944,0.4806207,-0.5459285,-0.19897306,0.43232283,0.7028573,-0.19784975,-0.011255483,0.8428135,1.2069951,0.9858276,-0.011606932,0.8127702,0.027389893,-0.19663258,-0.012783219,0.16263323,-0.77928895,0.28312925,0.4347173,0.58945936,0.40837398,0.059794385,-0.03205648,0.40901506,-0.55023736,-0.11877516,-0.12035134,0.38979855,0.16157164,-0.08475397,-0.32405356,0.045645982,0.027810214,0.15853517,0.05657971,0.32184446,-0.25983086,0.30047998,-0.100205295,1.1855651,-0.12334295,0.091939986,0.1922574,0.52902937,0.2648996,-0.4210154,0.31131852,0.3603499,0.44339085,0.14011633,-0.57743275,0.06527435,-0.36844325,-0.6907764,-0.13075034,-0.33947793,0.04620916,-0.096587546,-0.45716718,-0.23752517,-0.086962104,-0.1140678,0.3355641,-3.0881793,-0.15099497,-0.23985629,0.2772629,-0.19821109,-0.21800832,-0.12361785,-0.49777338,0.5091849,0.5942836,0.4140779,-0.64576846,0.09733797,0.37194073,-0.45926058,0.016817546,-0.564405,0.065698035,-0.11262595,0.4873235,0.09710961,-0.2271276,0.07324994,0.47550288,0.50643235,0.22823347,0.22436123,0.10348272,0.382068,-0.31435552,0.26950905,-0.13284664,0.38766813,-0.43426713,-0.17315787,0.3135524,-0.6371333,0.1199914,-0.4876366,0.16073531,0.53744674,-0.17544909,-0.8256356,-0.5040781,0.12901208,1.2102863,-0.16040601,-0.7294685,0.13670413,-0.24733348,-0.1323835,-0.0908038,0.55614936,-0.17903852,-0.08970338,-0.6165952,0.08156046,-0.36988544,0.1392281,-0.07411951,-0.010831823,-0.53807807,0.81506443,0.00998396,0.51025295,0.33934188,0.08618816,-0.6239886,-0.37005875,-0.06058373,0.7842174,0.63031954,0.09928688,-0.19257323,-0.048990708,-0.1657508,-0.16450089,0.222151,0.7744995,0.81998825,-0.1048905,0.21539827,0.33827415,-0.07425539,0.05795771,0.09429663,-0.32637125,-0.26442686,0.25695404,0.7168676,0.59770304,-0.118171036,0.14932309,-0.0647525,0.16459651,-0.2634485,-0.47570714,0.39558005,0.7935167,-0.18536568,-0.3233962,0.560353,0.47902367,-0.22378969,0.6621671,-0.7086828,-0.4758842,0.49753428,-0.12516315,-0.34427705,0.13432789,-0.38629195,0.10238904,-0.75814277,0.27454486,-0.36538282,-0.60040396,-0.739454,-0.36580846,-3.2761047,0.20819353,-0.32654276,-0.13386686,-0.24153256,-0.18584792,0.21476442,-0.73757166,-0.5693023,0.1900676,0.0894249,0.71340877,0.018916365,0.017785585,-0.32482162,-0.3267688,-0.112868905,0.18697853,-0.017867932,0.21039951,0.07210681,-0.3238041,-0.101555966,-0.047094915,-0.39818358,-0.15256646,-0.40681243,-0.4728122,-0.25007865,-0.5164792,-0.079244606,0.6622832,-0.30735746,-0.032711364,-0.14677346,-0.01474001,-0.074977495,0.10181267,0.001829187,0.19922282,0.027623514,-0.10631671,0.055244815,-0.4288546,0.15425014,0.066771366,0.47029042,0.25833043,-0.1883791,0.12583716,0.6075552,0.5566645,-0.16294473,0.86403656,0.41817796,-0.05437538,0.29420897,0.03330676,-0.1152828,-0.52429277,-0.36536124,0.30229667,-0.47012004,-0.33504197,-0.14452045,-0.33201084,-0.87638515,0.46007586,0.038588624,0.58868855,-0.12119169,0.4433279,0.34091076,-0.25502762,-0.13978316,0.022325685,-0.13484356,-0.46630108,-0.20329838,-0.5987367,-0.35017335,0.30099872,0.80563897,-0.37956536,-0.12202326,0.20828335,-0.17046846,0.0138738705,-0.0022521715,0.079366855,-0.09960624,0.3290882,0.062004745,-0.587272,0.44030452,-0.2401657,-0.022148123,-0.50649786,0.0980992,0.40864873,-0.43376896,0.57349306,0.4372541,0.07772002,-0.3388139,-0.7582226,-0.09540657,0.06558597,-0.1332269,0.41850838,0.28776145,-0.74843025,0.5525573,0.086755864,-0.41001233,-0.63551563,0.48511043,-0.08227763,-0.20858096,-0.15921186,0.23165995,0.13619958,-0.027039543,-0.15424152,0.36615786,-0.2808631,0.23506917,0.1723709,-0.041493047,0.5912749,-0.083089374,-0.16002811,-0.58296067,-0.052309494,-0.7442048,-0.20650937,0.29483262,-0.18417907,0.053782433,0.08905974,0.04964316,0.35139474,-0.33904216,0.24090953,-0.0851384,-0.33953795,0.5177791,0.5677194,0.57845896,-0.5046219,0.6789887,0.16502474,-0.008933057,-0.05228362,0.012159526,0.48439702,0.12030822,0.43783227,-0.16077513,0.0012518564,0.20076223,0.77500194,0.27351654,0.40861008,-0.060548726,-0.071497925,0.08020388,0.053842414,0.27254006,-0.03575516,-0.6277633,-0.03712389,-0.23601979,0.053885013,0.45547438,0.18818922,0.39294425,0.11038057,-0.35603622,0.042959273,0.12461395,-0.0794894,-1.430953,0.4727893,0.21829616,0.9052105,0.3808786,0.0024271756,-0.04827286,0.6794769,-0.07426231,0.06434103,0.4004883,0.00060335424,-0.37444147,0.5707132,-0.70020944,0.50576735,0.029654743,-0.11087579,-0.07210955,-0.040487263,0.5909483,0.48661232,-0.20740636,-0.009790971,0.043475732,-0.22578955,0.18023473,-0.4094944,-0.057743043,-0.527482,-0.2800386,0.53157085,0.48010978,0.30588645,-0.04313883,-0.07193205,0.093827866,-0.06313628,0.053448807,-0.2430225,0.05545525,-0.18492673,-0.60903555,-0.25620496,0.4397478,0.037146453,0.13718212,-0.025596509,-0.20080392,0.11525094,-0.08400092,0.031971827,-0.02401062,-0.77171296,0.052691262,-0.21241431,-0.45932516,0.85617733,-0.30609128,0.23373759,0.24442428,0.008248996,-0.033667725,0.14558788,0.020142952,0.8103668,-0.2910532,-0.23026596,-0.5053516,-0.040328633,0.20452213,-0.29796037,0.020584038,-0.3081921,0.070778824,-0.45670247,0.41318926,-0.20344369,-0.08955252,0.26825702,-0.24536765,-0.060159955,0.58353657,-0.070893325,-0.034465168,0.034214765,-0.3924968,-0.0911906,-0.20249961,-0.36209884,0.23940723,0.03895251,0.105697244,-0.14153534,-0.15427549,-0.05557056,0.19249316,0.088046074,-0.02589638,0.4024636,0.042332824,-0.43140054,0.057415936,0.2462327,0.5203703,0.09396129,-0.14188635,-0.30541536,-0.6737926,-0.4761748,0.3366913,-0.13944836,0.2787434,0.2518625,-0.058463488,0.8142233,0.041626472,1.0872902,-0.026879543,-0.5889836,-0.1348445,0.69021916,0.043890476,0.015029204,-0.2994589,0.93279195,0.49464127,-0.037796848,0.049860377,-0.3972415,0.18929805,0.43881336,-0.13726634,-0.2785679,-0.21206611,-0.6474935,-0.20207983,0.46600845,0.2716014,0.2234204,-0.15608364,-0.07824074,0.4110558,0.11433811,0.3321019,-0.6375015,-0.07035343,0.25611153,0.10890916,0.020304346,-0.03587227,-0.40499285,0.29346192,-0.6820321,0.027658528,-0.3902665,0.25567415,-0.254649,-0.55192477,0.23191637,-0.14793281,0.5504345,-0.30687633,-0.3946992,0.05263135,0.3412937,0.32187402,0.1915753,0.38756704,-0.24605255,0.019299813,-0.07490186,0.48395917,1.0162364,-0.3357124,-0.012384196,0.38961026,-0.47799316,-0.96175575,0.101165116,-0.550697,0.15531622,-0.12879777,-0.3350666,-0.5466757,0.28945926,0.32879946,0.030944278,0.089440785,-0.5856591,-0.31660578,0.08691593,-0.21972097,-0.24682009,-0.3793203,0.07144338,0.73055935,-0.3368515,-0.3586733,0.12674691,0.5962663,-0.11472422,-0.71668077,0.14610212,-0.33105335,0.31064713,0.019800948,-0.27448663,-0.17013498,0.041166823,-0.46720704,0.4273905,0.1953181,-0.24643536,-0.0924415,-0.16723682,0.16285004,0.8444843,-0.05381917,0.30367678,-0.46431383,-0.320257,-0.7393515,-0.46892095,0.37633905,-0.018242663,0.05170003,-0.771811,0.030051127,-0.27352306,0.040224966,-0.2602393,-0.30358532,0.51286703,0.13568264,0.3808719,-0.06941333,-0.6933213,0.16668911,0.037326258,0.01402128,-0.4321381,0.36386633,-0.14846504,0.9543864,0.08972657,-0.050145924,0.022008449,-0.63858217,0.34951875,-0.3161757,-0.4042549,-0.57856363,0.27828076,370 +827,0.30907848,-0.39294997,-0.43636298,-0.22854419,-0.22407478,-0.10063062,-0.21873103,0.2504592,0.16866839,-0.35696593,-0.21475697,-0.3361809,-0.059684347,0.6703151,-0.25121453,-0.72135264,-0.03868786,0.185418,-0.52219886,0.83955735,-0.37746415,0.17703497,0.33324727,0.35345307,0.21607225,0.097409405,0.49551392,-0.07876418,-0.10750863,-0.15659352,-0.10667229,0.059610214,-0.8706514,0.22532655,-0.25506923,-0.37971473,0.06561538,-0.28778055,-0.46985975,-0.89223367,0.32175753,-1.0065039,0.50608784,0.18121886,-0.28725478,0.08416658,0.32682195,0.19151741,-0.18584482,-0.088937156,0.10028332,-0.1419449,-0.030334687,-0.0069440603,-0.18665385,-0.5430039,-0.79608303,0.05435351,-0.60700065,-0.27762544,-0.27934,0.22246428,-0.4105216,0.0075984946,-0.06767613,0.70201254,-0.5966124,-0.29286557,0.20585035,-0.096193366,0.6288424,-0.58595467,-0.19509935,-0.29369453,-0.0950435,-0.15057828,-0.12744687,0.35509205,0.3177502,0.38317132,-0.009761676,-0.3969262,-0.26054773,-0.06321262,0.1360066,0.44454047,-0.07018328,-0.5847659,-0.25747183,0.14802994,0.012807672,0.22351821,-0.055876583,-0.531956,0.07361307,-0.27190128,-0.21661122,0.47112635,0.54759234,-0.36779192,-0.35480273,0.092384376,0.3612008,0.136856,-0.12799564,-0.0655638,0.117069125,-0.5983489,-0.124843776,0.2618342,-0.37783194,0.7125853,-0.20044951,0.09987458,0.75137764,-0.28164676,-0.022648096,-0.119399995,0.033460107,-0.21000521,-0.1075213,-0.3683858,0.46713397,-0.5779913,0.12176696,-0.22229493,0.8095813,0.1485161,-0.6917823,0.21577562,-0.59750706,0.18010537,-0.11934925,0.60603946,0.7326772,0.2815393,0.6449943,0.6304882,-0.33752576,0.22569157,0.08275558,-0.42996383,0.2006098,-0.43810812,-0.04354036,-0.35452166,-0.19317968,-0.26828706,-0.19519466,-0.31876436,0.5114108,-0.6096551,0.08560421,0.15966208,0.87480736,-0.17566256,-0.15115198,0.61331344,1.1026434,1.1637887,0.07851285,1.3095431,0.40744007,-0.21420346,0.24946064,0.039737526,-0.8004233,0.38083628,0.6291538,0.14522552,0.37484884,-0.016493052,0.03840435,0.33828723,-0.717261,0.17550667,-0.40041253,0.31083035,0.12797292,0.03835811,-0.72549766,-0.36177778,-0.066015154,0.11718563,-0.060901117,0.28436592,-0.12089663,0.28899148,0.035780217,1.6382914,-0.17805262,0.121738315,0.15013413,0.60020906,0.18377894,-0.056234896,0.017529873,0.24538553,0.27253133,0.3452871,-0.67481995,0.10675343,-0.33199513,-0.40398595,-0.31660298,-0.37301478,0.2369871,-0.030954799,-0.5050564,-0.24111187,0.041734412,-0.3742241,0.48403963,-2.207467,-0.19061309,-0.17551184,0.06948849,-0.37796286,-0.1583148,-0.005313953,-0.47787547,0.57685506,0.52079266,0.5426396,-0.7712801,0.09965768,0.54806,-0.5726855,-0.022819469,-0.6706927,-0.15618828,-0.2310722,0.59368205,0.1106833,-0.19123976,-0.014066647,0.25428924,0.43983746,0.058610737,0.16758084,0.23930408,0.30650613,-0.07011801,0.44256556,0.048894692,0.27781403,-0.41167542,-0.17594413,0.4977529,-0.1328965,0.376116,-0.3457372,0.16208644,0.5219659,-0.75134295,-1.0232807,-0.6236577,-0.7013127,1.1409186,-0.36996314,-0.58311814,0.30951035,0.18449746,0.02138122,-0.08360133,0.5961633,-0.23634668,0.3415784,-0.73719853,0.013704021,0.08196629,0.22576888,0.099054754,-0.072284326,-0.45118448,0.7843656,0.020457076,0.102489,0.357924,0.333599,-0.4293621,-0.93246984,0.10754356,0.9957838,0.46119747,0.129873,-0.42638135,-0.24658291,-0.12481294,-0.17000179,-0.027536387,0.41827568,0.9793553,-0.16452146,0.095480226,0.27436888,-0.0648699,-0.023019241,-0.05369993,-0.42480478,-0.004354082,0.06788688,0.72096854,0.798801,-0.1990096,0.43653026,-0.21911184,0.431906,0.036460366,-0.47656956,0.47487366,1.295018,-0.05960214,-0.17496628,0.7520757,0.5202019,-0.43170223,0.6044493,-0.7375102,-0.45134577,0.46897283,-0.095400296,-0.6370338,0.19589572,-0.45389786,0.056035925,-0.91432804,0.51895547,-0.20488904,-0.26130196,-0.6856957,-0.18898274,-3.7137775,0.36404297,-0.2855653,-0.14533934,-0.14104837,-0.08713143,0.3226898,-0.6443415,-0.61256224,0.30761698,0.005018167,0.5132626,-0.11934361,0.1456338,-0.17325349,-0.227031,-0.2705878,0.30151203,0.31168392,0.23233359,-0.17878999,-0.5355234,-0.02873204,-0.29039335,-0.5072635,0.09301996,-0.6611313,-0.6642399,-0.46810874,-0.72186965,-0.40137252,0.6918332,-0.043134045,0.03650582,-0.17986305,-0.009123241,2.8789043e-05,0.2801461,0.30800137,0.4667364,-0.035904545,-0.088240646,-0.22880723,-0.18824898,0.32048467,0.02703487,0.31673887,0.38757387,-0.13983135,0.24627213,0.7155462,0.5851145,-0.26107812,0.8667958,0.7168614,-0.15799963,0.17732161,-0.100981824,-0.3320097,-0.6602228,-0.39802817,0.09680409,-0.32589737,-0.5195177,0.060869288,-0.23279332,-0.62235016,0.80043125,-0.17422302,0.32085222,-0.06611701,0.031487603,0.42530814,-0.32249957,-0.13880755,-0.16248083,-0.06675344,-0.69420034,-0.47294354,-0.71393156,-0.60602236,0.03752521,1.0035058,-0.056256324,-0.24082334,0.079993,-0.2939473,0.00576519,-0.07526266,-0.058125228,0.19147782,0.36457077,0.15906961,-0.9101282,0.6272673,0.2323969,-0.01711682,-0.42101946,0.37413415,0.7237656,-0.6742413,0.5752799,0.46361613,0.12573043,-0.20434983,-0.673932,-0.45162544,0.09689955,-0.26488984,0.44893932,0.094627716,-0.7637868,0.49552956,0.21082835,-0.64097214,-0.8919964,0.5886046,-0.096841164,-0.21164083,-0.049583506,0.51731217,-0.060567122,0.1520692,-0.45849583,0.27641836,-0.46053484,0.11629615,0.27628872,0.012928896,0.37021258,-0.2012077,-0.21986957,-0.8434885,0.20494421,-0.44586077,-0.40277842,0.32589287,-0.06277323,-0.37808502,0.33577514,0.012639731,0.37766218,-0.09098852,0.080234356,-0.04834209,-0.36435166,0.45450833,0.54733205,0.53798956,-0.51572984,0.7299836,0.054812323,-0.08789978,-0.26239216,-0.036563158,0.38340685,0.10797355,0.3526789,0.048993807,-0.042168453,0.31798574,0.88285565,0.15656962,0.6444629,0.26266375,-0.0038210948,0.36628306,0.00900285,0.12260753,0.039507296,-0.56688225,-0.0036835074,-0.25701797,0.06339007,0.5891097,-0.0941939,0.3817732,-0.19310562,-0.29305282,0.18454361,0.34869394,0.10348076,-1.213075,0.21018012,0.17522903,0.59570116,0.7323198,0.043556023,-0.0069415173,0.86791116,-0.31466463,0.029988103,0.45146748,0.13323462,-0.5663068,0.8036633,-0.70861006,0.38383052,-0.13362604,0.05085565,-0.14150046,0.2559103,0.36188698,0.7089241,-0.15295254,-0.047737718,-0.26347488,-0.18564594,0.21621484,-0.540093,0.32346895,-0.3073829,-0.5681074,0.6568065,0.4907359,0.13322873,-0.079539776,-0.06116295,-0.069029175,-0.18313412,0.40817067,-0.026275346,-0.11548557,0.06442162,-0.72803,-0.1050451,0.5557149,0.14411661,0.19388713,0.057066146,0.058728784,0.13841286,-0.3007269,-0.20317383,0.028172761,-0.9697558,-0.06476381,-0.39905754,-0.35247675,0.5741802,-0.6112371,0.24480677,0.009225105,-0.0156167,-0.63552564,0.07620182,0.09261272,0.7260254,0.1142743,-0.20075583,-0.21562712,-0.013677504,0.11969113,-0.2756802,0.06715586,-0.2690479,0.013457951,-0.68106,0.7468485,-0.14516486,-0.5090528,0.032388944,-0.14001675,-0.18992585,0.71167517,-0.050413072,-0.27833235,-0.12619282,-0.18391053,-0.11802914,-0.21233672,-0.03793506,0.31312472,0.2045223,-0.058947522,-0.17670906,-0.01023497,-0.025173217,0.62795836,-0.22203256,0.38757297,0.30768695,0.21300496,-0.37576437,-0.031741094,0.11940267,0.53038925,0.17093472,-0.038744528,-0.018477896,-0.285601,-0.32813475,0.003061076,-0.08902701,0.23243974,0.12213731,-0.3359793,0.9518666,0.16173786,1.3831749,0.006977121,-0.4535999,0.09354351,0.5036114,0.010977815,-0.10619768,-0.45170748,0.9582378,0.6696906,-0.115371644,-0.319227,-0.42401972,-0.05009063,0.27885965,-0.2426846,-0.065986715,0.024539294,-0.6778336,-0.3382819,0.23314519,0.4843603,-0.0012300014,-0.16148812,0.100694805,0.1650457,0.10421076,0.525478,-0.35276666,0.04168423,0.41387033,0.3309135,-0.012704412,0.21276076,-0.25644058,0.35504702,-0.5600961,0.17331143,-0.514853,0.22750835,-0.202909,-0.3759664,0.31461594,-0.016756365,0.58502406,-0.28302765,-0.12264276,-0.14049904,0.69559234,0.20829014,0.14074807,0.75091743,-0.30336222,0.17160143,-0.010085049,0.56835407,1.3055766,-0.6006631,-0.08813393,0.06399154,-0.24336658,-0.7276352,0.6691904,-0.5056712,0.21761853,-0.034087855,-0.37860146,-0.581863,0.124186784,0.108307295,-0.13914204,0.056142733,-0.5367173,-0.16566205,0.35631815,-0.22296107,-0.22466664,-0.5236802,0.22869761,0.49045467,-0.20043118,-0.35391286,0.1239602,0.15395771,-0.26116848,-0.64401144,-0.106312715,-0.27353606,0.29763278,0.12028333,-0.34255943,0.052235257,0.04278585,-0.5690215,0.079492025,0.20228177,-0.371737,0.03221177,-0.07932521,0.059692513,1.0773674,-0.33423916,-0.20049123,-0.70735407,-0.53544575,-1.1498666,-0.22093163,0.87681025,0.114736296,0.14750026,-0.5421476,0.15485537,-0.15169916,0.21243036,0.044871926,-0.50773984,0.30264243,0.07881489,0.59862006,-0.08962801,-0.75731045,0.1882879,0.10437769,0.11677904,-0.6372297,0.47356665,-0.12332487,0.8226056,-0.0044244477,0.0954772,0.23768596,-0.44729593,0.16794656,-0.17228025,-0.37678966,-0.70900106,0.19998892,371 +828,0.26363564,-0.10444322,-0.5769257,-0.20922524,-0.17679816,0.13084625,-0.4289472,-0.113573425,0.15387958,-0.46266463,-0.14526515,-0.19190587,-0.044894207,0.50493544,-0.09700615,-0.8302627,-0.27063212,-0.053076137,-0.4553859,0.49772015,-0.4899752,0.24732168,0.0770815,0.33265552,-0.018455481,0.28423822,0.3733828,-0.26726344,-0.11854198,-0.06850278,-0.15195619,0.28733465,-0.8168526,0.16543142,0.17678948,-0.39987993,0.12779139,-0.28468102,-0.19711995,-0.76630515,0.5207725,-0.9740855,0.6216312,0.09787033,-0.10088877,0.04497582,0.26440737,0.32251838,-0.18969357,0.18485759,0.36737934,-0.5143587,-0.059247147,-0.21415854,-0.32447544,-0.60575444,-0.7284872,-0.01707536,-0.6809347,-0.28257355,-0.2621911,0.31725854,-0.4786612,0.046989594,-0.28208598,0.40476927,-0.3833399,-0.3243637,0.31162444,-0.27587786,0.5470037,-0.47856054,-0.21907514,-0.17200458,0.36117443,-0.33613852,0.05872522,0.22487675,0.41825005,0.56889874,0.078144826,-0.22135895,-0.29545364,-0.101833306,0.30106544,0.47242022,-0.18819518,-0.32394272,-0.18790285,-0.049716055,0.18900554,0.4556282,-0.27339047,-0.36548495,0.14030226,0.1769625,-0.20553535,0.31114703,0.29039714,-0.41776428,-0.51988214,0.27819085,0.36072335,-0.012723473,-0.1243969,0.01309063,0.20023681,-0.5339637,-0.2092218,0.62347424,-0.15145016,0.5113831,-0.10668627,0.29266497,0.9200193,-0.15771592,0.0047085085,-0.49707213,-0.16793175,-0.17005973,-0.23483725,0.022480875,0.27449104,-0.53930724,0.18949513,-0.2511662,0.79699516,-0.08669859,-0.781799,0.21545202,-0.6642246,0.06656281,-0.13461791,0.857168,0.72182447,0.07663456,0.36832032,0.8737766,-0.51212245,-0.032869406,-0.038021367,-0.55361754,-4.009406e-05,0.040614445,0.025231093,-0.40407977,-0.037968915,0.04578486,0.14925571,-0.030347593,0.33147952,-0.40399346,0.27699766,0.07093161,0.801857,-0.38371563,0.043031286,0.6438213,0.96050006,0.93232447,0.06243692,1.4385881,0.21782674,-0.19959952,0.18838435,-0.49824128,-0.5487797,0.23732138,0.5228531,-0.17548436,0.32874003,0.051340748,0.15148284,0.5001243,-0.38001713,0.030228177,-0.15229174,-0.03360917,0.00069538754,-0.0074448236,-0.43749252,-0.18653661,-0.03826458,0.017804405,0.14325859,0.19200842,-0.14998804,0.55580664,0.17866527,1.2537065,-0.25902656,0.3511548,0.06731566,0.25382772,0.02863091,0.04388086,0.03420484,0.35204384,0.47766104,0.05413446,-0.7042168,0.0065976568,-0.33354864,-0.38103566,-0.28156167,-0.31219634,0.058444798,0.02763915,-0.47087345,-0.11130554,-0.03431188,-0.43222857,0.30529884,-2.3976133,-0.19052243,-0.30299485,0.13778208,-0.16501729,-0.3141988,-0.25798437,-0.5577252,0.45585606,0.46306476,0.36596504,-0.61097145,0.39575765,0.5656757,-0.37193063,-0.22400306,-0.68424064,-0.04612724,-0.22745074,0.40502426,-0.10727694,-0.28435284,-0.35688075,0.33615848,0.6168346,-0.031032493,-0.00703234,0.2551817,0.51381874,0.26721045,0.6404695,0.17102218,0.6105857,-0.2062919,-0.29861662,0.3997217,-0.20606877,0.30223915,0.067207314,0.042092633,0.33956409,-0.5135412,-0.9584972,-0.8039406,-0.87873346,1.0810784,-0.47062543,-0.31967324,0.30853352,0.12353003,-0.35891733,-0.053927105,0.6490138,-0.35891247,0.16217774,-0.8610415,0.18000148,-0.2627264,0.36950615,0.033085965,0.03861693,-0.49928188,0.558572,-0.15851985,0.16074018,0.48045754,0.11288903,-0.27914003,-0.5961929,0.077459395,1.1578428,0.25465512,0.18566854,-0.18082325,-0.2901206,-0.028765837,-0.0915971,0.10668977,0.36256528,0.73652935,0.12923567,0.17259087,0.34617546,-0.16991083,0.04777349,-0.16146298,-0.3180786,-0.027362509,0.12257373,0.5494725,0.4474628,-0.020966323,0.33711037,-0.0964623,0.18060885,-0.032187693,-0.3636903,0.5444229,1.0008316,0.035943016,-0.06862165,0.84702665,0.606109,-0.4425145,0.520019,-0.62185663,-0.34342453,0.6632026,-0.18872683,-0.63363427,0.06912902,-0.44120786,-0.00586023,-0.9738148,0.114469975,-0.24462934,-0.4149522,-0.51018286,-0.11445666,-4.4062924,0.18766485,-0.39406145,-0.23255853,-0.17329395,-0.22880019,0.5596345,-0.67708445,-0.6668367,0.112184845,0.13122474,0.43653154,-0.1768656,0.19579627,-0.39725092,0.09785526,-0.05615298,0.3134,0.36891744,0.014725651,0.060306504,-0.5042544,0.16839594,-0.30610967,-0.5404052,-0.012434085,-0.4831679,-0.51800966,-0.1462344,-0.58959,-0.47199497,0.72166777,-0.45364448,-0.1033136,-0.2512655,0.09226346,-0.108974196,0.5218553,0.24718527,0.33527064,0.10073625,0.06521894,-0.43294123,-0.25835857,0.35901678,-0.048399646,0.21573555,0.38369146,-0.15442966,0.23176102,0.3643717,0.51046944,0.15629753,0.8875084,0.51105374,-0.042773504,0.19145435,-0.37667462,-0.21664578,-0.94129425,-0.5316591,-0.23896022,-0.38621843,-0.7033368,-0.15955885,-0.3316746,-0.8324334,0.64921016,-0.12111244,0.20376302,-0.086854406,0.30919147,0.21419592,-0.1988657,0.043061525,-0.102033086,-0.12837328,-0.54020786,-0.38727692,-0.77605885,-0.70394516,0.013065268,1.0000948,-0.087944776,-0.0122231245,0.079004884,-0.4884011,-0.035769474,0.2993492,0.32124805,0.36579132,0.6811743,0.04920815,-0.7794803,0.47337088,0.029962068,0.00842655,-0.6156363,-0.15519762,0.78644896,-0.80152655,0.7186165,0.39516136,0.13271171,0.04585662,-0.43613973,-0.44050142,0.008906906,-0.35848364,0.5461344,0.24808191,-0.51788026,0.41181985,0.12492537,0.0075908103,-0.76497513,0.45350528,-0.015351675,-0.14990284,0.2209803,0.46705046,-0.14724554,0.08968961,-0.09124448,0.3113002,-0.28247583,0.27712217,0.3313779,-0.032534495,0.53075314,-0.13731778,-0.1673612,-0.7123762,0.19494434,-0.48566994,-0.23250253,0.04943191,0.032585364,-0.047147736,0.3253648,-0.21119773,0.5097505,-0.17019361,0.18857129,0.09109044,-0.32615653,0.11240044,0.501223,0.06688158,-0.4445097,0.80117583,0.07496381,-0.2311997,-0.3040978,0.11770156,0.48284325,0.13435064,0.3153855,-0.29556546,-0.36029562,0.37378028,0.68661374,0.15880239,0.44647726,0.25402543,-0.012960981,0.48677957,0.17035069,0.03740721,-0.071075365,-0.36400974,-0.10310497,-0.07024176,-0.019080793,0.4738616,0.1031669,0.5285405,-0.20813312,-0.16690612,0.24156465,0.33160427,-0.17681675,-0.780335,0.33380723,0.28702036,0.546665,0.6465788,0.02915132,0.09472983,0.5089159,-0.5293587,-0.11860173,0.37602195,0.25147116,-0.51757264,0.86835074,-0.4995965,0.28263938,-0.15208048,-0.042486954,-0.022518495,0.15742292,0.23301357,1.0967668,-0.20052786,-0.0024694402,-0.18470664,-0.032253236,0.18622096,-0.12613729,0.13495708,-0.49861237,-0.37748566,0.57188654,0.40352866,0.44162527,-0.21507667,-0.20571733,0.103937715,-0.058942735,0.13417661,-0.10983794,0.000928099,0.13216181,-0.6409759,-0.30760857,0.5807718,0.068029635,-0.0025620784,0.05017972,-0.4348874,0.19353043,0.00017076482,-0.1258849,-0.06849071,-0.6570699,-0.037236422,-0.46147737,-0.5523383,0.30895963,-0.7402268,0.36720097,0.1436881,0.041211527,-0.31764263,0.021912793,0.2524449,0.8699119,0.149845,-0.09983364,-0.29985693,-0.009812991,0.23586889,-0.19411038,-0.02225081,-0.37503853,0.065077655,-0.7296577,0.54708976,-0.15015425,-0.3726574,-0.037743647,-0.18761621,-0.070141114,0.4232738,-0.10964233,-0.077906966,0.22055583,-0.11048571,-0.24817686,-0.11160946,-0.4184607,0.19696581,-0.06931233,0.119612776,-0.12691511,-0.09825545,-0.26895502,0.52585584,0.11182255,0.09602228,0.2553464,0.040243983,-0.42566124,-0.077050485,-0.043947857,0.4533395,0.18015473,-0.05015539,-0.10257528,-0.44259873,-0.06848026,0.2663447,-0.054654937,0.2678896,0.028380485,-0.5372505,0.84222406,0.15557514,1.0394114,0.20963486,-0.40044406,-0.06657608,0.4974853,-0.018039053,0.08300879,-0.40528622,0.9430523,0.568681,-0.2053191,-0.21865447,-0.3824904,-0.1964361,0.18936105,-0.18050438,-0.02738001,-0.23859859,-0.79357463,-0.33243528,0.2150269,0.30836645,0.1783884,0.081057824,0.0903636,0.05503648,0.08399477,0.67722005,-0.5522225,-0.06553027,0.2127965,0.22603251,0.02925995,0.3101857,-0.21119408,0.60788,-0.6541286,0.23924641,-0.5860196,0.06302812,0.08287931,-0.22664537,0.22612941,-0.09793219,0.45807147,-0.10023055,-0.2180296,-0.16622923,0.7991707,0.09250487,0.27730256,1.0842062,-0.29630658,0.07283495,-0.069697864,0.42023864,1.5862554,-0.2344778,0.11632788,0.26571837,-0.18443692,-0.43762556,0.29581574,-0.469321,-0.013435234,-0.058660835,-0.6128071,-0.23171718,0.12387395,0.025631748,-0.07659928,0.08696561,-0.3591542,-0.26596734,0.54922754,-0.29405764,-0.3015156,-0.15693413,0.44052362,0.7972602,-0.39629355,-0.38880825,0.02619349,0.43336022,-0.34481385,-0.37945077,0.056819785,-0.26231384,0.47362694,0.29471514,-0.34454274,0.20332642,0.32082722,-0.3405331,0.008213538,0.45978656,-0.29788372,-0.010064691,-0.17384176,-0.21084587,1.1831857,-0.18086255,-0.0778107,-0.6598224,-0.33994094,-1.0237378,-0.3167021,0.44490144,0.23490278,0.088784985,-0.18083425,-0.008433993,-0.122034825,0.14026897,0.22237349,-0.6284515,0.42222133,0.10163107,0.7956009,-0.10061881,-0.72750306,0.03223002,0.18318294,-0.14059478,-0.58335716,0.37535933,-0.20788427,0.71312445,0.16884331,0.11684343,0.1402302,-0.442085,0.22994907,-0.33014354,-0.26702335,-1.1050473,0.019657055,373 +829,0.41962647,-0.24215575,-0.4231162,-0.07121038,-0.2287366,-0.026348716,-0.09918063,0.54684407,0.11272981,-0.25240216,-0.16269861,-0.21478426,0.08625043,0.41847536,-0.14124256,-0.41189805,-0.15663813,0.17687404,-0.50174457,0.4236226,-0.42373767,0.0318412,-0.045377746,0.4370391,0.15096708,0.29919618,0.017456122,-0.047366813,-0.14318216,-0.14622818,-0.21856058,0.23243602,-0.59346336,0.17192058,-0.08690069,-0.3421227,0.014468848,-0.6642474,-0.35128596,-0.64152855,0.25533667,-0.90524364,0.36868277,0.0062858663,-0.20923813,0.51585937,0.007966776,0.44105956,-0.24352391,-0.13004543,0.19492102,-0.1489572,0.12019012,-0.31985584,-0.06798258,-0.033087257,-0.36068806,-0.0771467,-0.17714667,-0.41450545,-0.31787464,-0.01503545,-0.30784228,0.042968046,0.04806937,0.29918584,-0.45723245,0.22935577,0.12633294,-0.2246209,0.2456451,-0.434618,-0.14471276,-0.11994123,0.306399,-0.30436492,-0.20347846,0.4192067,0.14369173,0.19146085,-0.13881211,-0.016526729,-0.2766452,0.0029722068,0.15939057,0.5991043,-0.25216365,-0.29050934,-0.004367826,0.024380123,-0.0009909669,0.23517215,0.07282208,-0.23687315,-0.19392188,0.0061786473,-0.21763448,0.17034025,0.3603343,-0.3101643,-0.20456219,0.35246134,0.59081346,0.17791522,-0.19185525,-0.2531718,0.016744621,-0.4763023,-0.106176965,-0.041785568,-0.16555937,0.5844604,-0.08584232,0.25319594,0.69694924,-0.22180438,-0.018907085,-0.08474958,0.04461323,-0.049734652,-0.27354947,-0.32794297,0.3174813,-0.28578413,0.18808158,0.005493954,0.73843384,0.20936291,-0.6691475,0.49695277,-0.6082843,0.14331114,-0.21299629,0.3390499,0.40763247,0.5994348,0.34554765,0.5719581,-0.48238218,0.16870148,-0.18225265,-0.38105965,0.14968969,-0.1304275,0.0804388,-0.45605895,-0.09904886,-0.017439136,-0.202457,0.30732566,0.08940182,-0.40916118,-0.0080032,0.23319013,0.7931904,-0.2707924,0.036672294,0.5573152,1.0824825,0.86735445,0.0292712,0.86926943,0.23903972,-0.21861525,0.32710195,-0.15022703,-0.71629435,0.2400593,0.5039503,0.035842817,0.14856005,0.20543201,-0.005293722,0.3360436,-0.34484127,0.043413386,-0.19690435,0.06101479,0.3033131,-0.08993742,-0.3978955,-0.28806928,-0.14138657,-0.01775009,-0.2693214,0.2512659,-0.13738938,0.40709043,0.09752182,2.041231,0.14419085,0.13093422,0.119496174,0.56882304,0.15111764,-0.064672105,-0.16006117,0.44609317,0.26857364,0.24052083,-0.4242293,0.29675904,-0.05893604,-0.4611107,0.00988694,-0.39383888,-0.006790817,0.076308206,-0.43238294,-0.08256304,-0.11049944,0.0022093505,0.53417397,-2.9519968,-0.098296724,-0.008013062,0.45320186,-0.25399894,-0.34805176,0.031130895,-0.4148133,0.31011865,0.32609007,0.5667159,-0.61298436,0.34424296,0.29831377,-0.58778685,-0.14197898,-0.53017396,-0.1590534,0.011248848,0.21076006,0.017715072,0.044240624,0.0005022486,-0.007502382,0.40062007,-0.054653924,0.015328073,0.2978033,0.35989463,0.05563861,0.62773156,-0.12642139,0.35774836,-0.35586998,-0.22125165,0.17805177,-0.21471472,0.22274369,-0.0660811,0.07684178,0.3786117,-0.25591344,-0.946544,-0.7279174,-0.17874797,1.276076,-0.30838308,-0.40965214,0.31000054,-0.27718756,-0.26625225,-0.20797984,0.29116192,-0.0067681274,-0.0650567,-0.7357388,0.047658045,-0.10821357,0.21332575,0.15430248,-0.29770836,-0.39263666,0.5654754,-0.14521827,0.49411932,0.42170724,0.012421156,-0.027746096,-0.19094509,0.027755693,0.67152375,0.24702889,0.1426653,-0.18438636,-0.20476924,-0.16603373,-0.07759546,0.08240603,0.3665718,0.53921217,-0.056744333,0.09411526,0.20878588,-0.11285583,-0.0040284446,-0.18071687,-0.21565163,-0.037027482,-0.07194232,0.530832,0.76630956,-0.07670797,0.38228163,0.02407361,0.27002907,0.04349551,-0.36420354,0.2768683,0.821743,-0.05544689,-0.19526684,0.3989013,0.5069907,-0.28427118,0.31092742,-0.44567463,-0.12590365,0.41918692,-0.17532992,-0.45924637,0.21736409,-0.16109604,0.108453095,-0.5869159,0.21444412,-0.35226965,-0.42936635,-0.42735913,-0.11748185,-3.3181257,0.24506299,-0.22737092,-0.36213875,0.079099126,-0.15277778,0.08166645,-0.7484047,-0.44448698,0.16958348,0.084291995,0.633064,-0.0959532,0.0052282587,-0.2849134,-0.2553893,-0.31952503,0.04592591,0.09282895,0.3170389,0.026194364,-0.41889644,-0.13569732,-0.059743565,-0.38754272,0.16124727,-0.66792226,-0.26287004,-0.054447968,-0.45406875,-0.40409002,0.5882842,-0.33378196,0.03746411,-0.06334969,0.011568014,-0.19947648,0.13281882,0.19783504,0.16389965,-0.05841024,0.028332775,0.062269967,-0.2620375,0.366596,0.077755064,0.30793598,0.096553765,-0.102279134,0.09168041,0.50368065,0.5702499,0.0037099272,0.76045924,0.43333685,-0.10054956,0.17431171,-0.42321673,-0.27551773,-0.49410942,-0.28862274,0.07399116,-0.2950208,-0.42550454,-0.08164534,-0.31354502,-0.6524515,0.5992548,0.021744633,0.010204424,0.10038275,0.20473723,0.5303719,-0.23625867,-0.1189301,0.019440634,-0.04512304,-0.7750456,-0.09364072,-0.54392976,-0.4069049,0.07841111,0.85875803,-0.26854846,0.15600246,0.025288343,-0.22437839,0.04185289,0.1493633,-0.23291962,0.25871027,0.48341295,-0.21848035,-0.59707505,0.30792853,-0.09638542,-0.32609764,-0.714909,0.41208354,0.49693406,-0.6731821,0.70853215,0.25681022,0.01438914,-0.0034513872,-0.42947736,-0.44878468,-0.15231293,-0.13196237,0.2239406,0.09310102,-0.77947974,0.226016,0.43144354,-0.38268974,-0.60090137,0.51560086,-0.106232785,-0.47771516,0.050658137,0.13081847,0.13828483,-0.10057708,-0.014387831,0.18316452,-0.4327244,0.27554372,0.19314058,0.018349776,-0.009806282,-0.08771237,0.061156314,-0.6615651,0.1970557,-0.14683096,-0.35609365,0.40188417,0.089273654,-0.019340781,0.146945,0.17583126,0.3040391,-0.2467351,0.07240299,-0.100941785,-0.31476724,0.43639624,0.3551928,0.45918655,-0.5211466,0.53574365,-0.037221164,-0.0445251,0.035840508,-1.6490618e-05,0.389464,-0.042416263,0.2966024,-0.12975852,-0.30354193,0.15575044,0.5055741,0.23637593,0.45534372,-0.10600128,0.054879773,0.2291594,0.14409834,0.1912388,0.07858941,-0.5958707,0.24038602,-0.19279158,0.08028663,0.47520903,0.13196409,0.20827074,-0.113540046,-0.34061074,0.01214428,0.23619036,4.9407285e-05,-0.9430244,0.41061744,0.1544214,0.73359674,0.40048265,0.05082062,-0.05309176,0.79325414,-0.14517182,0.108798005,0.16288428,-0.0020825714,-0.5412918,0.5373078,-0.75547504,0.45896408,0.19268398,-0.07650063,0.02612281,-0.002295509,0.32276446,0.50180084,-0.25798586,-0.078671396,-0.016362377,-0.4020164,0.0839909,-0.51701975,-0.024243861,-0.73070604,-0.24385327,0.44274127,0.6023697,0.35036543,-0.1436802,0.05788913,-0.0035325864,-0.09701892,0.2255677,0.10915189,0.14848013,0.2262553,-0.74618083,-0.06702434,0.63729835,-0.358958,0.25387067,-0.1327666,-0.18122248,0.45729876,-0.12079116,-0.1938078,-0.057521153,-0.5518167,0.3044514,-0.36668798,-0.2912588,0.35614172,0.1181913,0.28634346,0.16777702,0.029876495,-0.14126165,0.6164086,-0.03497117,0.9719487,-0.008684439,-0.2426774,-0.54815215,0.24814671,0.0420972,-0.0067120045,0.18949284,-0.38595986,-0.14040858,-0.39426923,0.35960928,0.0906279,-0.26561937,0.05950415,-0.1137265,0.05781843,0.67640954,-0.106326036,-0.14212856,-0.37984666,-0.15337278,-0.32723954,-0.25083992,-0.12550856,0.19206898,0.19439267,0.10306406,-0.04400715,-0.04308887,-0.12744214,0.55130345,-0.032922026,0.557801,0.07304668,0.07543903,-0.12665386,-0.32391575,0.015416066,0.4050922,-0.11716338,-0.155834,-0.3352814,-0.49146923,-0.20889823,0.17466158,-0.11329385,0.48813185,0.13753115,-0.017465798,0.692378,-0.31368807,0.9422929,-0.026361967,-0.26484752,0.24360116,0.48409274,0.07788659,-0.045205098,-0.2754085,0.79869866,0.532309,0.02479322,-0.075528495,-0.27371812,-0.20528036,0.03622684,-0.18019243,-0.09493139,0.06118913,-0.47566566,-0.14408019,0.10581293,0.19720592,0.47681007,-0.0642567,0.20323335,0.34267482,0.091436334,0.12289411,-0.21668117,-0.424257,0.29357502,0.23485851,-0.09308851,0.0578792,-0.51518273,0.44566572,-0.24349074,0.14514405,-0.45425358,0.110213935,-0.107945144,-0.20133658,0.1324011,-0.044272203,0.36415043,-0.2478661,-0.24857013,-0.14650021,0.46991834,0.28807762,0.2212904,0.5286606,-0.22335784,0.08268917,-0.0641278,0.4169136,0.6006146,-0.3513292,-0.1355988,0.4920117,-0.2949657,-0.47312275,0.33759192,0.02486004,0.044603035,0.072497346,0.08377299,-0.67079955,0.22342066,0.067678,-0.13404225,0.029425493,-0.6325214,-0.187819,0.3167042,-0.39740613,-0.2607101,-0.54417396,0.24968094,0.6469534,-0.27123895,-0.3165766,0.10799948,0.079679824,-0.08176511,-0.24138723,-0.11106271,-0.3471043,0.14686401,0.09217157,-0.36543342,-0.20221984,0.10207832,-0.259901,0.13493277,-0.07151113,-0.26745924,0.12944013,-0.31168035,-0.049918164,1.0259782,-0.2645416,0.023188373,-0.5538453,-0.39743993,-0.6942982,-0.33791542,0.5890601,0.0403035,0.00042966506,-0.441681,-0.07091777,0.059324462,-0.29465023,-0.31038198,-0.3376119,0.44714728,-0.0050350055,0.35831547,-0.16200985,-0.7154847,0.34460554,0.041040253,-0.09034085,-0.6090438,0.48470488,-0.107448466,0.8313079,-0.111156486,0.04720347,0.25475705,-0.22631657,-0.190396,-0.30166072,-0.33610806,-0.54443043,0.005555878,374 +830,0.24982458,-0.40945628,-0.41597423,-0.044439554,-0.04474616,-0.08159276,-0.18722029,0.61466116,0.12752877,-0.6263152,-0.33669296,-0.17554994,0.1347147,0.51251674,-0.25644943,-0.5393891,-0.1111199,0.1953137,-0.48595396,0.66275793,-0.36876956,0.13430424,0.15718968,0.46368885,0.060284484,-0.0040046684,0.38649294,-0.031968106,0.13534343,-0.11159209,0.08182072,0.21804857,-0.7298891,0.21355684,-0.14815246,-0.6900138,0.06241183,-0.56294674,-0.28530478,-0.76068753,0.26803753,-0.9634099,0.7927095,0.28971723,-0.34694242,0.045450386,-0.05403887,0.45302972,-0.3587514,0.13234241,0.16452666,-0.08639627,-0.057513148,-0.110717595,-0.08904773,-0.35793796,-0.58314383,0.11574483,-0.43780437,-0.014408509,-0.010009806,0.23512666,-0.15310252,0.15160252,-0.3373351,0.42489684,-0.6268112,-0.1974718,0.25363386,-0.09225166,0.5924177,-0.6713915,-0.15802474,-0.24217944,0.15736155,-0.39310265,-0.34757307,0.14455189,0.3862438,0.51489455,0.038823888,-0.29442585,-0.18038552,0.00094045204,0.039655637,0.47325668,-0.14788128,-0.6105147,-0.20691603,-0.02518343,0.3171099,0.1766665,0.114608325,-0.53667784,-0.09977746,-0.15106149,-0.20600252,0.24098007,0.49096295,-0.4181441,-0.199134,0.15755244,0.65978414,0.19758004,-0.06325481,0.09669549,0.076039374,-0.6259432,-0.18758993,0.21242593,-0.37509492,0.7153222,-0.17707582,0.21971522,0.5217867,-0.053994667,0.10944054,-0.054949608,-0.07265537,-0.33802995,-0.33188987,-0.50779057,0.5380602,-0.3425996,0.24259563,-0.42336106,0.6872743,0.11525056,-0.76558965,0.33236733,-0.6495521,0.072047345,-0.1721546,0.6370811,0.61062855,0.34282365,0.35131767,0.63818103,-0.3303138,0.14461814,-0.110669166,-0.26418188,0.055448562,-0.06694856,-0.20663448,-0.5033314,-0.07773133,-0.17308877,-0.14918427,0.07215737,0.52528006,-0.71913594,0.02785707,0.24600725,0.6870115,-0.28850293,0.0036327243,0.7082786,1.2477949,0.9382648,0.12695114,1.5504144,0.23104157,-0.24953596,0.024355173,-0.18960936,-0.6741271,0.21804784,0.603085,0.15166819,0.5244185,0.11765453,0.03773121,0.5155648,-0.62474626,0.14321204,-0.044382017,0.020449324,-0.14582762,-0.18965574,-0.51873046,-0.08041886,-0.0034578096,0.02256535,-0.053864274,0.17229252,-0.27153414,0.33029136,2.2192797e-05,1.5557429,-0.21327937,0.10184193,0.068727344,0.32227707,0.15080081,-0.15613098,0.10885372,0.3068212,0.60699385,-0.008326988,-0.56544024,0.13136421,-0.22947931,-0.61303574,-0.24623097,-0.13569205,0.056266963,0.06660915,-0.54327756,-0.046133686,0.11232375,-0.1822923,0.29954723,-2.4105318,-0.2635149,-0.28936592,0.2869514,-0.2582784,-0.3332085,-0.052223444,-0.32282546,0.57676905,0.49219513,0.4156301,-0.7465835,0.43993017,0.4725882,-0.50133115,0.014507587,-0.75373656,-0.16239347,-0.014264475,0.34449065,0.0039756745,-0.061078016,0.12243318,0.23771472,0.4282889,-0.122524254,0.090317756,0.16251452,0.31401515,0.08283996,0.41749716,-0.0029571753,0.5526115,-0.44975147,-0.25955164,0.37294018,-0.18444264,0.32673785,-0.050355047,0.13746469,0.39874184,-0.5300043,-0.91159177,-0.79397947,-0.68118733,0.84017444,-0.2711312,-0.475938,0.17942633,0.011591415,-0.26274776,-0.053539112,0.7018636,-0.18413782,0.06256551,-1.0663234,-0.12239971,-0.083993524,0.46285948,0.030542716,-0.094031475,-0.77456135,0.60716844,-0.0930034,0.44043866,0.8062399,0.2315671,-0.10760694,-0.63292044,0.026086519,1.0471433,0.37173513,0.16915971,-0.2570975,-0.145732,-0.27041715,0.24697097,0.089630194,0.42170978,0.78006315,-0.08774814,0.022733167,0.24492462,0.17066936,-0.03291543,-0.23074186,-0.39717066,-0.06345882,0.18519153,0.66870433,0.63706285,-0.27326104,0.21593587,-0.3362132,0.6412173,-0.096068166,-0.52044946,0.6200345,0.98796076,-0.04622275,-0.17614628,0.98954344,0.5030597,-0.4016315,0.5669091,-0.86868316,-0.14791799,0.43140173,0.0024790664,-0.38032266,0.2612092,-0.37960768,0.32975116,-1.2017223,0.35388517,-0.37255585,-0.17956126,-0.91866606,-0.18604994,-3.552417,0.2453389,-0.307832,-0.13794418,-0.059163403,-0.26795244,0.37520257,-0.83873844,-0.6518181,0.32846826,0.1786722,0.40485105,-0.1739968,0.13127713,-0.25066045,-0.25847098,0.0041689673,0.32205695,0.3969663,0.1120593,-0.10131901,-0.57968146,0.062509306,-0.104101025,-0.5318318,-0.009020095,-0.774502,-0.3229257,-0.22191077,-0.77653784,-0.25489083,0.5244382,-0.36072063,-0.15043165,-0.101657234,0.20045011,-0.044686932,0.44479287,0.15165293,0.34412405,0.08012411,0.071913995,-0.14877406,-0.1901354,0.17990251,0.19947775,-0.08907626,0.12269833,-0.23701508,0.26926404,0.46712446,0.7014563,-0.19823165,0.7747519,0.81508845,-0.024361035,0.17628737,-0.13012297,-0.25602293,-0.72891706,-0.51848096,-0.1331992,-0.45882866,-0.86779696,0.05615754,-0.23523499,-0.83716327,0.8419113,-0.18285452,-0.030157944,0.20089693,0.24567549,0.43707475,-0.34060225,-0.092731,-0.058876857,-0.1185532,-0.52804035,-0.48581252,-0.65231496,-0.5838774,-0.18817948,1.1819811,-0.09274045,0.25355202,0.24010508,-0.12775593,0.009950727,0.24962316,0.09634098,0.08657827,0.5139296,-0.04420775,-0.7342684,0.40387273,0.2895147,-0.50891596,-0.60586613,0.3223653,0.7345574,-0.76178473,0.66387343,0.24789996,-0.047588304,-0.2721012,-0.63463473,-0.3788283,0.14494397,-0.2696284,0.6633072,0.26643857,-0.56784636,0.42323363,0.35974702,-0.21722406,-0.9026939,0.616043,-0.16269831,-0.2771817,0.075113736,0.41167954,-0.25485685,0.15806833,-0.31450167,0.2602975,-0.38414836,0.09504893,0.32651034,-0.13630913,0.38751897,-0.30623665,0.11123756,-0.9641412,0.30365568,-0.52848023,-0.21392739,0.22089599,-0.007669285,-0.054761246,0.2876592,0.046930343,0.42153922,-0.28612134,0.23075408,-0.016673813,-0.4156387,0.25485682,0.61595124,0.22618848,-0.29770136,0.6075694,-0.09872762,-0.26365513,-0.44489563,-0.04238824,0.52613705,0.06037274,0.3991125,-0.20763223,-0.023113899,0.3788612,0.8509252,0.23109926,0.4083061,0.1928162,0.05849482,0.3013417,0.15720485,0.2269214,0.021116039,-0.5300536,0.06855241,-0.061914742,0.09636489,0.4695859,0.122028776,0.3755919,-0.22690201,-0.4283575,0.16075097,0.26373664,0.29398343,-1.1700615,0.23003815,0.0686682,0.6392718,0.6965122,0.12572691,0.023900678,0.58724636,-0.43039966,-0.012468462,0.39654934,0.07011499,-0.4049135,0.593934,-0.7155282,0.313112,-0.16036175,0.054336082,-0.050819125,-0.28796056,0.4426558,0.9014897,-0.149076,0.13244388,0.02553094,0.054297302,0.066949174,-0.4275445,0.018990526,-0.37842214,-0.46867976,0.7577136,0.5108534,0.47257033,-0.3330727,-0.04847899,0.28086808,-0.11749687,0.2611648,0.02962335,0.14524573,0.14554024,-0.53202385,-0.12642014,0.6960352,-0.04978181,0.038943138,-0.093689166,-0.47598645,0.1858807,-0.14121246,-0.19049962,-0.01049678,-0.9458651,-0.24924423,-0.46598974,-0.22351277,0.612398,-0.27211007,0.14596628,0.007041288,0.067101754,-0.253674,0.44935593,-0.070321575,0.9849084,0.37944195,-0.0143358195,-0.1744558,0.25305775,0.22948901,-0.085728556,0.13180979,-0.37170017,0.024404904,-0.6581485,0.504766,0.15342097,-0.43992576,0.021008397,-0.065050036,-0.055159424,0.4765923,0.022685358,-0.19153555,0.18563293,-0.16911477,-0.23525803,-0.4739059,-0.21044536,0.31765735,0.17393635,0.34480146,-0.07974874,0.027767234,-0.22615556,0.7543605,0.2377839,0.37521413,0.36089802,-0.01716187,-0.47287536,0.023283577,-0.09288671,0.45454368,-0.20923883,-0.27431688,-0.11275568,-0.61470985,-0.22613911,-0.104942046,-0.20858665,0.36787465,-0.087991536,-0.1642946,0.8118474,0.25402853,1.373959,-0.09023342,-0.60310227,-0.016141394,0.5288601,-0.051323224,-0.1605624,-0.45454872,1.0421034,0.5707924,-0.054491464,-0.13167079,-0.13680713,-0.09191513,0.15502451,-0.1394208,-0.073395975,-0.054647427,-0.79225564,-0.18447442,0.12402894,0.49176893,0.04805395,0.022921637,0.32451373,0.21018817,-0.06076966,0.23508193,-0.5490743,0.07362514,0.3300935,0.31060117,-0.02243931,0.07805491,-0.46183667,0.396657,-0.49801013,-0.010377844,-0.55545884,-0.050745994,-0.17455657,-0.28005472,0.15046857,-0.12945858,0.39671576,-0.45141935,-0.19383006,-0.15053457,0.59347826,0.12737413,0.16928507,0.7810159,-0.11706395,0.2481138,-0.05407236,0.52243495,1.290264,-0.6620548,-0.0903612,0.28979996,-0.41076493,-0.47704026,0.36591506,-0.4544654,0.10631446,-0.08209094,-0.33574283,-0.6142506,0.13098122,-0.07980866,-0.22311153,0.0015776964,-0.687555,-0.08514458,0.47921443,-0.3710222,-0.23664005,-0.40868306,0.30544528,0.65949565,-0.2041542,-0.64258796,0.06311899,0.26153925,-0.22967525,-0.6211542,-0.13255395,-0.26600575,0.371554,0.2063021,-0.39409614,0.0021469493,0.10871712,-0.46314645,-0.08523812,0.38173875,-0.3011459,0.11536176,-0.40077734,-0.16224729,1.0812137,-0.1492394,0.019510472,-0.73698425,-0.45280495,-1.1301248,-0.40194893,0.6603554,0.26738974,0.012399043,-0.5652336,0.22713543,-0.19449043,-0.091272146,-0.0019552708,-0.049779475,0.543733,0.15246168,0.8957963,-0.07513456,-0.7955957,0.23267214,0.045851987,-0.03169774,-0.5043845,0.4190618,0.22762226,1.0370563,-0.06694703,5.5852037e-05,0.1741606,-0.6508464,0.13377208,-0.27679026,-0.24487717,-0.80344445,0.049473394,393 +831,0.37134942,-0.3724428,-0.56502086,-0.047969237,-0.21196242,-0.03431101,-0.18209565,0.63821095,0.22500162,-0.29479423,-0.19985123,-0.051484853,-0.031784445,0.3910662,-0.17067462,-0.51248515,-0.26893464,0.3015379,-0.75360924,0.8022814,-0.36540118,0.1752457,-0.2822965,0.59889346,0.39053866,0.19252296,-0.20257998,0.1438277,-0.16783798,0.10164654,0.07252168,0.4137298,-0.51087683,0.12795506,-0.20302196,-0.43458727,-0.21125953,-0.46532485,-0.5520044,-0.8138554,0.39940917,-0.7495832,0.6858881,-0.11501571,-0.3040087,0.20173597,0.16893901,0.39870787,-0.123939246,-0.13389188,0.1471232,0.035903193,-0.04522403,-0.12256127,-0.29038638,-0.45742905,-0.7073118,0.032201495,-0.5570635,-0.05189644,-0.08545879,0.24645412,-0.30522594,-0.18499054,-0.06449043,0.6660172,-0.40367857,0.11915451,0.12366575,0.14689279,0.08293063,-0.6671112,-0.29802704,-0.15339462,0.38581228,-0.1557911,-0.25466654,0.25016478,0.23656048,0.27320346,-0.16097464,-0.09384155,-0.49230528,0.11843667,0.1005871,0.4565247,-0.08493966,-0.6208474,-0.07827092,0.1576883,0.10854753,0.13363259,0.39248034,-0.17691125,-0.07771634,-0.1174773,0.011712611,0.63635355,0.44462153,-0.22069462,-0.39919427,0.3841652,0.7435727,0.43200827,-0.22577085,-0.02096959,0.050185908,-0.6588702,-0.06251093,0.07657786,-0.1535036,0.5669935,-0.09886796,0.2878509,0.48040316,-0.10244733,-0.27117783,0.19651063,0.16261122,-0.11239711,-0.18486536,-0.38623643,0.3168771,-0.2603233,0.11766649,-0.041594177,0.54148746,0.14510506,-0.7573158,0.24987173,-0.64770275,0.16156682,-0.036623597,0.41747418,0.8976707,0.47434807,0.36678752,0.49803355,-0.017358614,0.1440473,0.07658094,-0.2775305,-0.07062683,-0.34350464,-0.12575297,-0.70948976,-0.11030483,-0.20969881,-0.12627454,0.13120554,0.55709773,-0.5646449,-0.1845762,0.19183202,0.8407459,-0.201136,-0.29414275,0.82298094,1.0292455,1.0864615,0.03387622,1.2266613,0.092536725,-0.2761283,0.20204979,-0.47098717,-0.83726543,0.28780255,0.18696956,-1.0770503,0.5481551,-0.05959777,0.062498618,0.46402514,-0.45020723,0.18876171,-0.19027399,-0.04968816,0.27494228,-0.25198781,-0.5041981,-0.4041431,-0.2826297,-0.001892969,0.19838111,0.27112392,-0.21060419,0.4590292,0.06006977,1.6967968,0.016335854,-0.05204567,0.060162142,0.6170189,0.16055132,-0.33647427,-0.090413034,0.13942854,0.4938196,0.103333734,-0.5172116,0.22189343,-0.18836556,-0.3766582,-0.29869595,-0.37993765,-0.12150881,-0.095015846,-0.3544949,-0.29099262,-0.16055042,-0.24924235,0.42988598,-2.591583,-0.18787408,-0.08738359,0.32414088,-0.18489568,-0.41406783,-0.20186673,-0.49074328,0.27143642,0.15263806,0.44366273,-0.5407794,0.5259152,0.33440757,-0.6860771,0.012714326,-0.6888225,-0.31127268,0.12596875,0.41731003,-0.14239171,0.20589788,0.46102276,0.30100915,0.31841156,-0.16933368,0.10170695,0.36824015,0.50796866,-0.06015703,0.5507211,-0.08898785,0.5151069,-0.26370117,-0.28768635,0.35972342,-0.45619783,0.23692827,-0.014231672,0.09082935,0.65654176,-0.5211748,-1.0647881,-0.45630467,0.17021966,1.1223603,-0.1737928,-0.34307685,0.12100784,-0.6381331,-0.2595192,-0.2540063,0.4680799,-0.23375987,-0.3034854,-0.9098537,-0.15401644,0.0013025211,0.26828998,-0.023955913,-0.07003481,-0.52628887,0.4399083,0.14445375,0.52706265,0.30015618,0.18561234,-0.5546797,-0.66694,0.024821743,0.76528305,0.24970238,0.13524254,-0.35451102,-0.20302628,-0.39491785,0.15648435,0.014023165,0.58256346,0.39641193,-0.13446185,0.29737598,0.27367344,0.015083708,0.20552675,-0.32279024,-0.264522,-0.34453735,0.1150889,0.4539084,0.79246706,-0.30773038,0.7481629,-0.072316445,0.03647719,-0.09162751,-0.42022637,0.58450925,1.451342,-0.23542176,-0.34481704,0.68818146,0.63718706,-0.33444273,0.40056124,-0.27670023,-0.13966799,0.5602787,-0.2824725,-0.30191913,0.22856928,-0.22078432,0.103974484,-1.0490571,0.21637857,-0.26141652,-0.42011228,-0.8286002,0.15538457,-2.7606392,0.101037204,-0.18249865,-0.2381636,-0.13391604,-0.42991844,0.0028330584,-0.6636091,-0.7695282,0.22060525,0.14627953,0.63394624,-0.24488378,0.07848767,-0.16411385,-0.37544417,-0.322333,0.10495859,0.40665463,0.4603095,-0.06563597,-0.6071995,-0.11399367,-0.13510497,-0.426651,0.052305102,-0.73945314,-0.30808637,0.038494382,-0.76353073,-0.31529322,0.6524684,-0.16895278,-0.07950788,-0.30235243,0.07012602,0.23911901,0.28410769,-0.12915057,0.19584769,0.22251685,-0.18570302,0.11996305,-0.015683472,0.20528953,-0.053634554,0.35114214,0.2652302,-0.11556015,0.48971054,0.6579481,0.9272744,-0.102603786,0.9404356,0.77279717,-0.12299124,0.220381,-0.21569736,-0.2450422,-0.59344417,-0.16229574,0.0917764,-0.46616852,-0.60621756,-0.044561192,-0.33356038,-0.8691351,0.67505527,-0.11266627,0.24209772,0.074589886,0.25265697,0.67727643,-0.14961886,0.1509365,-0.23505694,-0.17473173,-0.36970282,-0.32101113,-0.52507144,-0.48017165,0.03918721,1.3040787,-0.38907722,0.16705604,0.2093782,-0.48401883,-0.011457756,0.39555368,-0.0690193,0.20998888,0.45844916,-0.11083472,-0.5682002,0.33202943,-0.118450515,-0.12653334,-0.44809565,0.2046837,0.5719542,-0.54103464,0.55910444,0.2558411,-0.20566404,-0.38720286,-0.5170412,-0.2557337,0.059266165,-0.053966444,0.44155893,0.425733,-0.74090123,0.3703831,0.21039271,-0.4099058,-0.7563433,0.66058135,0.017109461,-0.25956976,-0.09615668,0.3363085,0.16932933,0.05708896,-0.43269196,0.28102353,-0.23220678,0.24449389,0.10753101,-0.14421022,0.025153616,-0.2182147,0.040757086,-0.8723237,0.33599052,-0.514095,-0.41645172,0.42868724,0.11274061,0.33581683,0.16657478,0.13302271,0.17394245,-0.36074305,0.016070588,0.009913783,-0.30632055,0.08782196,0.34434974,0.49574533,-0.594576,0.37592244,0.055755775,-0.22880207,0.08466863,0.16511224,0.44027892,0.094625175,0.49432993,0.29822728,-0.21909547,0.27940848,0.8241939,0.1554499,0.43289927,-0.05190918,-0.14409243,0.15717961,0.025789412,0.3573172,-0.18519217,-0.48082113,0.14556605,-0.17935239,0.33477747,0.6122396,0.14759918,0.29394925,-0.2507127,-0.48488393,-0.013001372,0.2704095,0.11261338,-1.6622219,0.28076234,0.38526925,0.9400986,0.4314367,0.15391785,-0.031742617,0.6330438,-0.18983887,0.08737304,0.502579,0.09118295,-0.5134763,0.5058766,-0.6602488,0.64032304,-0.009254538,0.042948347,0.018188754,0.0077490136,0.4188412,0.73868084,-0.16885817,-0.010491162,0.23571952,-0.29944602,0.021806696,-0.3022841,0.1262726,-0.5410343,-0.15915684,0.69623643,0.6682188,0.29696414,-0.2567081,0.10287851,0.17075415,-0.21540864,0.2212566,0.027183155,0.05720297,-0.12733312,-0.83566314,0.038152903,0.45727775,-0.25732228,0.0072886646,0.05450854,-0.21419275,0.22112496,-0.16810507,-0.025744775,-0.047091275,-0.870049,-0.13963845,-0.2737727,-0.3770943,0.56918406,-0.024082491,0.08590657,0.3851045,0.13398768,-0.46440527,0.46357703,-0.19270968,0.72324616,-0.012849897,-0.045506436,-0.32853606,0.20959993,0.15167885,-0.17258316,0.04927978,-0.39417568,0.059947822,-0.26082075,0.50233823,0.25836328,-0.39947185,-0.27046087,0.06911055,0.092502445,0.48486552,-0.10585416,-0.035214495,-0.21225436,-0.18080258,-0.2583082,-0.2880874,-0.110475264,0.29979226,0.49658194,-0.06059574,-0.19515814,-0.04342394,-0.0077109137,0.6333356,-0.024153432,0.5428226,0.5531194,0.31830204,-0.27477187,-0.14700665,0.3168089,0.64124906,-0.15378167,-0.18260889,-0.5146462,-0.32806465,-0.30650377,0.30414632,-0.1685593,0.42756283,-0.038257178,-0.22129446,0.62403536,0.04002026,1.2740074,-0.017571816,-0.5478998,0.19746776,0.4449592,0.13324134,-0.16203666,-0.45629692,0.92960185,0.29032543,0.061633814,-0.12545927,-0.47823206,-0.03703314,0.0128132,-0.22275595,-0.16047491,-0.022050649,-0.4989191,-0.16078639,0.3110652,0.17076135,0.25849178,-0.21162772,0.32501394,0.3702457,-0.007228171,0.15970428,-0.48569536,-0.15447329,0.16423772,0.28697917,-0.0111449165,0.051608723,-0.5459276,0.25080988,-0.39436194,0.084815465,-0.1922208,0.29427934,-0.2041023,-0.40049395,0.22466677,0.10644215,0.36169994,-0.30798805,-0.23918171,-0.35588264,0.53977376,0.10237795,0.09098903,0.46476987,-0.31381267,0.23046596,-0.0149417715,0.39908543,0.9969797,-0.20787656,-0.19636922,0.2056169,-0.3889514,-0.77512765,0.28343013,-0.33785176,0.34856096,-0.031726483,-0.060141165,-0.8292191,0.2677345,0.0791777,0.2613894,-0.2022792,-0.5770517,-0.21128917,0.3009807,-0.36857677,-0.10253135,-0.4526656,-0.09802959,0.5045066,-0.24118592,-0.44824114,0.0492554,0.1785713,-0.102283925,-0.31387517,-0.105663024,-0.5130497,0.23965414,-0.065914616,-0.4177257,-0.40688112,-0.1428498,-0.45721766,0.3037375,0.31854227,-0.26061568,0.15699394,-0.27154538,-0.24607503,1.2049123,-0.53480595,0.27266863,-0.38711488,-0.63707083,-0.87045336,-0.36529875,0.26689056,0.22638847,-0.09792187,-0.96864986,0.13828988,-0.07350489,-0.5303616,0.07752953,-0.32365927,0.45198348,0.09960105,0.26678246,-0.1902253,-0.7833266,0.2197151,0.13133046,-0.19343974,-0.5424766,0.57696337,0.07001797,1.0080436,0.0047267624,0.30847183,0.16865034,-0.29841352,-0.1518779,-0.15952201,-0.044721868,-0.5813524,0.0010746518,394 +832,0.18438314,-0.06712983,-0.5809528,-0.21488993,-0.15501611,0.2288882,-0.15135927,0.5084624,0.15331867,-0.27004355,0.07929175,0.034397196,-0.309916,0.5028694,-0.19410203,-0.8277963,0.047391083,0.08318346,-0.6949911,0.70816326,-0.34200284,0.2084527,-0.021396017,0.288065,-0.0403546,0.040855438,0.30402374,0.12816186,0.02450102,-0.27692798,0.060928714,0.099054106,-0.5935497,0.50201917,-0.025108814,-0.11603832,-0.05946973,-0.46083474,-0.07465526,-0.72987574,0.20760965,-0.49818072,0.5476856,-0.109761335,-0.4098389,-0.041630883,0.13963018,0.0730839,-0.18943523,-0.04976781,0.29526293,-0.17900622,-0.09843534,0.13037997,-0.30715105,-0.40979278,-0.5339238,-0.11149418,-0.57676834,0.0019692082,0.006599615,0.27420756,-0.4325721,-0.18142766,-0.42222556,0.42856088,-0.34260908,-0.25476673,0.34227738,-0.17748368,-0.10136857,-0.5563496,-0.118429266,-0.08188658,0.35109332,0.023933416,-0.23786145,0.32501897,0.18954231,0.48922548,0.10225574,-0.25918123,0.04283522,-0.3123758,0.28267053,0.565334,0.03827096,-0.38031313,-0.26932004,-0.07420012,0.39134526,0.26333484,0.15749295,-0.38653025,0.04120415,-0.16808026,-0.084696986,0.5289325,0.5186755,-0.46425757,-0.14537239,0.48176387,0.37439513,0.49367204,-0.148479,0.21819139,-0.17092031,-0.36150208,-0.3321624,0.2389266,0.01862449,0.41796878,-0.08701802,0.26706788,0.5376687,0.0613268,0.019737238,-0.1419345,-0.08766084,-0.06980487,-0.32201567,-0.18454774,0.26731125,-0.5418083,0.22226112,-0.34499124,0.5626964,0.1036839,-0.61728096,0.30085868,-0.44547284,0.1313203,0.09204636,0.66884446,0.897813,0.40200892,0.011788043,1.0382957,-0.38566634,0.08823362,0.12227172,-0.0521024,-0.054198157,0.1028049,0.08839828,-0.5184009,0.23482297,-0.0775537,0.12580557,-0.04733737,0.04968788,-0.5115883,-0.3008056,0.0801576,0.53628594,-0.25475755,-0.15661146,0.7383051,1.1464804,1.1527127,-0.1951914,1.408206,0.24283539,-0.1310515,-0.27888784,0.080707304,-0.4702022,0.13018638,0.43307352,0.37001,0.39773574,-0.145632,-0.026568627,0.48952642,-0.28450975,-0.092679,0.059473295,0.41021955,-0.0866432,-0.30446592,-0.49446234,-0.08944583,0.3235149,-0.1019708,-0.02523614,0.3248955,-0.30630806,0.4604396,0.04766051,0.94457144,-0.07125168,0.13975202,0.12175261,0.2193503,0.2631149,-0.30937788,0.11916822,0.26265308,0.34734425,-0.26462868,-0.52605754,0.01913821,-0.54188186,-0.40476468,0.004603175,-0.59295535,-0.37387395,-0.1398771,-0.41180226,-0.012932439,0.08421812,-0.13882798,0.4766958,-2.8600705,-0.32316795,-0.3949271,0.074186996,-0.28530025,-0.25127736,-0.3069765,-0.35711077,0.40026653,0.23630898,0.49034515,-0.3690492,0.3628818,0.4273822,-0.24710512,-0.002718995,-0.659853,-0.07359529,0.15811552,0.28248718,-0.13738602,-0.10264055,-0.1330464,0.40638566,0.53826016,0.33208042,0.0005390495,0.38099623,0.5736803,-0.18312526,0.31723967,-0.1482151,0.70058227,-0.44524977,-0.04375757,0.35437313,-0.35530952,0.8855877,-0.19821505,0.13080831,0.57170874,-0.27552694,-0.6441197,-0.29430056,-0.42915034,1.3088189,-0.4819571,-0.5090262,0.12803553,0.13918738,-0.09984138,0.010044728,0.5919503,-0.0034715533,-0.073123515,-0.41508853,0.07142341,-0.13390015,0.35011196,-0.30076298,0.1396216,-0.39144084,0.66643256,-0.12789577,0.7325156,0.36011398,0.22067387,-0.14746024,-0.3262232,-0.07493419,0.87126523,0.57648575,0.07840335,-0.18549187,0.0035352658,-0.4568572,-0.18246269,0.097082905,0.7547906,0.4222065,0.029495252,0.02069825,0.37816846,0.07123909,0.14893594,-0.13125068,-0.48193192,-0.2833201,0.19119294,0.6450115,0.49986354,-0.25347006,0.41847822,-0.0015051117,-0.15243581,-0.38634112,-0.4814707,0.3571451,0.44090188,-0.28546923,-0.18900484,0.5191029,0.3987763,-0.19786389,0.45812368,-0.61573213,-0.39595017,0.7136232,-0.04402082,-0.3906881,0.05612266,-0.24609514,-0.13636194,-0.7844658,0.2334563,-0.4091488,-0.67591596,-0.5831738,-0.24392502,-2.258521,0.08293036,-0.081728615,0.025282884,-0.31727633,-0.12717749,0.25244924,-0.545352,-0.7547167,0.026945377,0.0626932,0.4546033,-0.2134489,-0.02926541,-0.23940392,-0.4555668,-0.1968231,0.39983344,-0.024116153,0.15067859,-0.15210544,-0.19791378,-0.06540191,-0.039814617,-0.32224122,-0.031105697,-0.42911562,-0.37162986,-0.04771827,-0.2771759,0.13218419,0.6996166,-0.6420044,-0.048090708,-0.12532786,-0.05880397,-0.022979328,0.12815835,0.17891097,0.3873391,0.06877239,-0.19296461,-0.19063143,-0.28275296,0.15972482,0.24183655,0.37391075,0.5687481,-0.16785032,0.26387957,0.4570733,0.7513013,0.15368718,0.8087233,0.054028686,-0.027156321,0.49957252,-0.13943683,-0.31341562,-0.5790949,-0.3107157,-0.030062819,-0.43521392,-0.6557111,-0.040679455,-0.23651437,-0.7313318,0.25972912,0.31293347,0.54744315,-0.33979174,0.28349397,0.31806538,-0.32828906,0.17186548,-0.026463456,-0.07673304,-0.36633512,-0.44148663,-0.8121779,-0.46738687,0.24255683,0.97600365,-0.2424509,-0.15046597,0.10849575,-0.29609954,0.042616438,-0.015520061,0.22338259,-0.0066989907,0.16598941,0.07220559,-0.68281335,0.37046576,-0.11228093,-0.0060592196,-0.3832738,0.14383739,0.8013487,-0.33525726,0.41231132,0.28059295,0.14669432,-0.38376632,-0.7373304,-0.07367362,0.2334351,-0.19366185,0.44847807,0.21259844,-0.5411003,0.43437704,-0.049800485,0.057921153,-0.6731079,0.57011366,0.022130214,0.15632997,0.14039145,0.42165437,0.12176102,-0.07942265,-0.07492801,0.43836737,-0.41499528,0.4473387,0.4340383,-0.05235648,0.29113454,-0.09143051,-0.46963117,-0.50898594,0.0061129183,-0.7845885,-0.40385988,0.12932183,-0.020604754,0.045190502,0.1055071,0.09669223,0.4378706,-0.33478168,0.3775176,0.059385482,-0.31527236,0.6285531,0.51321363,0.35348645,-0.44080457,0.5853165,0.2224235,0.12439054,0.09014842,0.15933028,0.47964814,0.32187644,0.40824232,-0.36592352,0.08690397,0.019034922,0.63412005,0.22313166,0.1175842,0.12178128,-0.18303919,0.17613514,-0.0150873335,0.18303137,-0.18347822,-0.47696552,-0.112236224,0.09464743,-0.00877817,0.6182453,0.101961076,0.15909599,0.17952721,-0.15815991,0.225563,0.06307126,-0.3101006,-1.262937,0.50164646,0.13839763,1.0218638,0.3987882,0.12880588,-0.049416166,0.29216334,-0.3315651,0.15088388,0.5859609,-0.029396215,-0.44069877,0.73975587,-0.42903474,0.4054868,-0.2213778,0.08099454,0.23642659,0.14828676,0.4762728,0.8261259,-0.1777336,0.10479156,-0.21287994,-0.1984132,0.15011895,-0.28572068,0.17857839,-0.37682864,-0.49304876,0.48137307,0.34364557,0.25263593,-0.39257157,0.044214975,-0.049285535,-0.2702462,-0.035492495,-0.10582361,0.10565353,-0.1740197,-0.36786318,-0.2131287,0.5947024,-0.36056653,-0.06293275,0.023633962,-0.32184678,0.16609515,-0.0151405735,0.22318335,0.004422406,-0.75958306,0.046479475,-0.4204688,-0.43923387,0.11465907,-0.38590863,0.22154026,0.14676987,-0.06745768,0.013707439,0.34787127,0.0075179436,0.5661797,-0.22986268,-0.07601055,-0.3447934,0.24466574,0.12485134,-0.265001,0.09883708,-0.2896032,0.18549906,-0.4944847,0.27204344,-0.069353655,-0.38373888,0.01766622,-0.014735264,-0.13124497,0.37105858,-0.08775283,0.07798145,-0.077529244,-0.3595878,-0.18077195,-0.067087166,-0.3122038,0.24581821,-0.13181688,0.19638719,-0.14252336,0.061733667,-0.08490751,-0.034582987,0.2897421,-0.09055016,0.41463947,-0.0071446574,-0.59808373,0.19701695,-0.019180506,0.35105944,0.3386089,-0.09524839,-0.24842674,-0.28167087,-0.46306872,0.7181633,-0.32949227,0.23165183,-0.046960194,-0.36215624,0.6238647,0.18140002,1.2008247,-0.057672054,-0.4680606,-0.06787715,0.7639548,0.17802654,-0.100620955,-0.3009962,0.8572976,0.4009833,0.12711066,0.13382697,-0.34554777,-0.27265474,0.3243675,-0.18209119,-0.14029439,0.060231198,-0.5327765,-0.14526652,0.053276855,0.14560074,0.13910487,-0.22512893,-0.4214313,0.27929807,0.21197218,0.4832064,-0.67984366,-0.36063877,0.2249781,0.14833419,-0.055629462,0.1358218,-0.2870929,0.2811569,-1.1080198,0.28728625,-0.53337115,0.07009962,-0.13978498,-0.3634443,0.21828406,-0.10638691,0.42543432,-0.28087762,-0.32236442,0.050365325,0.4784191,0.33737317,0.22362001,0.7025277,-0.21361987,-0.0924552,0.14688653,0.47985652,1.0939852,-0.079533674,-0.14483668,0.16337754,-0.46501315,-0.79986596,-0.19341226,-0.6416228,0.3261766,-0.27711767,-0.4191654,-0.25681877,0.092151366,0.0016870102,-0.063619375,0.039660722,-0.711379,-0.12800327,0.26494902,-0.17304087,-0.25038773,-0.3899932,0.00078008574,0.7512997,-0.2822677,-0.38073203,0.05022199,0.1635502,-0.30991682,-0.8889396,0.23530205,-0.38915148,0.28708985,0.06736233,-0.38633373,-0.03661422,0.19496803,-0.5078211,0.28209224,0.2369823,-0.30566722,-0.18840735,-0.09737966,-0.14685506,0.8884974,0.05689943,0.014101602,-0.44651437,-0.55542284,-0.5209797,-0.44859013,0.15198143,0.16997051,-0.069717765,-0.70264345,-0.08264006,-0.37385657,0.16949125,-0.08140779,-0.2652891,0.22696143,0.16141123,0.45806623,-0.17639603,-1.0322412,0.19712871,0.033901054,-0.013112068,-0.31432977,0.37463066,-0.12969787,0.6645474,0.052838694,-0.061098233,-0.13345093,-0.8828977,0.3139643,-0.31018797,0.034353346,-0.4632957,0.44868407,400 +833,0.30118203,-0.5466114,-0.6223716,-0.15959503,-0.2136596,0.14784272,-0.32625034,-0.03915971,0.259436,-0.3898153,-0.2041363,-0.025330657,0.08365596,0.7168574,-0.19061832,-0.88016653,-0.17133999,0.2842042,-1.0814236,0.6935425,-0.3081173,0.24856287,0.33559847,0.4151021,-0.14379652,0.035273414,0.41615328,-0.14172088,-0.18913625,-0.17878236,-0.19498973,-0.23662686,-0.8489482,0.1188153,-0.20025587,-0.2790746,-0.03561036,-0.3031928,-0.03125168,-0.95831496,0.23150294,-1.0846306,0.5193068,-0.1052534,-0.14801703,-0.12771428,0.24984126,0.49500632,-0.5380429,0.074176595,0.1795689,-0.5119501,-0.4283557,-0.5652189,0.14523591,-0.6162846,-0.5051617,0.018589104,-0.73848915,-0.27356678,-0.069515124,0.2664306,-0.2978296,0.041334778,-0.2531505,0.5560077,-0.1921934,-0.20758174,0.39541626,-0.29100224,0.43593645,-0.6153168,0.012862886,-0.19624327,0.49487796,0.055724394,-0.24049926,0.3130531,0.24750434,0.49091938,0.3882185,-0.4196992,-0.1907217,-0.013334925,0.35793912,0.3726424,0.092731275,-0.6987855,-0.120552756,0.103595205,0.18766457,0.14401531,0.1244635,-0.4105134,0.0879002,-0.14076908,-0.104849994,0.5786038,0.6046647,-0.35936055,-0.3114908,0.12491962,0.76819324,0.23560505,-0.14120048,-0.07823471,-0.04334123,-0.6947098,-0.062486615,0.45477113,-0.10678199,0.7359292,-0.28110123,0.05737542,0.81935996,-0.21719736,-0.2953212,-0.062897466,-0.0934486,-0.15017007,0.05531917,-0.28695333,0.417326,-0.42520067,-0.16142319,-0.7016068,0.7526493,0.19444485,-0.8430802,0.3602631,-0.6104341,0.4071274,0.01770392,0.7193513,0.72554207,0.6070257,0.28572044,0.83122087,-0.3787959,0.12453375,0.077055715,-0.3919276,-0.052394092,-0.5069845,0.14315172,-0.3374673,0.0789536,-0.5141522,-8.597473e-05,-0.25310057,0.46753561,-0.5061224,-0.10815191,-0.12777734,0.6298597,-0.2976853,-0.033106368,0.7672028,1.0396787,1.1733685,0.20372982,1.4641422,0.50542265,-0.41802648,-0.101364404,-0.0458221,-0.713573,0.18650937,0.284167,0.2909719,0.4529165,-0.30689144,0.025326759,0.3910319,-0.62243795,0.1951658,-0.005969137,0.36526623,0.0323745,-0.092250295,-0.3840302,-0.06190728,0.039746407,-0.05982529,0.18773691,0.11746112,-0.17841959,0.72939634,0.06974552,0.9837592,-0.18545151,0.052145008,-0.015419312,0.25240955,0.30788532,0.14206704,-0.029359499,0.31603444,0.5742225,-0.068948634,-0.72939825,0.12810464,-0.397645,-0.3822306,-0.32286462,-0.24936444,0.012702187,0.008837636,-0.24434483,-0.3048023,0.20329332,-0.24900408,0.33349058,-1.9215728,-0.22436784,-0.26851586,0.2683716,-0.36353424,-0.056039672,0.056943834,-0.638276,0.32095528,0.31614593,0.4729596,-0.72735375,0.5666285,0.47305885,-0.44823977,-0.17933756,-0.7508056,-0.24926679,-0.068414815,0.5884534,0.017026743,-0.32631946,-0.11967492,0.07555705,0.7774647,-0.024775112,-0.041970376,0.7395293,0.35493755,-0.07074127,0.6244919,0.10628301,0.60792094,-0.57658154,0.00631695,0.4122404,-0.37654945,0.27435878,-0.16131759,0.09894096,0.5978499,-0.44488287,-0.8196098,-0.7102831,-0.2962378,1.3013417,-0.3661933,-0.6680357,-0.0056804814,0.34255275,0.08967137,-0.043064382,0.75626206,-0.074623756,0.37416705,-0.7154502,-0.030673578,-0.024354309,0.41680095,0.05014317,-0.027578846,-0.32988605,0.8844294,-0.10552192,0.49992085,0.32921538,0.35188577,-0.48634195,-0.6065212,0.30678305,1.1190994,0.17329247,-0.029179895,-0.07135942,-0.33684444,-0.14704873,-0.25006318,-0.22449301,0.5713234,0.9188035,-0.090503864,-0.008607651,0.3199087,-0.29265347,0.109598875,-0.10890609,-0.4357551,-0.07517638,-0.073806286,0.49959245,0.735892,-0.056817397,0.52925116,-0.4042479,0.4114686,0.078095265,-0.4869319,0.9181257,1.0679208,-0.20935495,-0.1256651,0.3213053,0.26662028,-0.56086713,0.6212803,-0.6380544,-0.5513359,0.812037,-0.18933141,-0.47359076,0.29714903,-0.24287541,0.2817159,-0.89612293,0.3905597,-0.41907966,-0.15543793,-0.6870635,-0.14726985,-2.951749,0.32378715,-0.2064979,-0.028219322,-0.49584332,-0.112809815,0.08449733,-0.37173864,-0.62154764,0.23636883,0.27849156,0.6631153,-0.045855854,0.26624337,-0.19783615,-0.12930682,-0.0750343,0.3834164,0.14398511,0.124618836,-0.22088946,-0.3252906,0.15532762,-0.1143187,-0.3503581,0.15107922,-0.6701414,-0.5034355,-0.22758032,-0.55944186,-0.40200695,0.7703031,-0.41924587,-0.030777127,-0.2179421,0.034139283,0.019093363,0.25216773,-0.006963114,0.29834154,0.28463206,-0.2135156,-0.04252633,-0.20845766,0.16116108,0.01282828,0.12573613,0.13820897,-0.26994407,0.21943349,0.3803045,0.89514464,-0.11604303,0.75136167,0.38100877,-0.014051318,0.2134005,-0.2736309,-0.52170044,-0.67227477,-0.25162736,0.012049596,-0.36947298,-0.4726027,-0.030241301,-0.3135955,-0.82565516,0.6647652,0.024592737,0.09019103,0.20462531,0.57091427,0.42433926,-0.23424001,-0.0029647846,-0.17990609,-0.17966656,-0.43572167,-0.37585476,-0.74801785,-0.44671974,-0.2275825,0.83783835,-0.096246004,-0.09228671,-0.040308278,-0.30268112,0.22637348,0.27085593,0.017216375,0.33808407,0.3903555,0.19973814,-0.7251509,0.4747622,-0.004884993,-0.15372872,-0.47296515,0.33626235,0.72865134,-0.8309763,0.39374366,0.42935157,-0.22608559,-0.055106323,-0.33181265,-0.15554178,0.039017413,-0.1737535,0.3169825,0.024542972,-0.46235904,0.50727075,0.28288063,-0.4209317,-0.93743515,0.15806253,-0.08692818,-0.42921543,0.04195505,0.3885769,-0.109148264,0.02534409,-0.545837,-0.0154179735,-0.6021024,0.115739666,0.24238272,0.0038955808,0.08513701,-0.17189366,-0.4079695,-0.8519774,0.21831791,-0.7249122,-0.2089517,0.3528591,0.17508219,-0.037445337,0.20948626,0.08943388,0.4839717,-0.23469968,0.07997111,-0.1500323,-0.27793643,0.33264473,0.60254085,0.16202994,-0.4885571,0.69287926,0.13596605,-0.2077622,-0.16829383,-0.039381977,0.45237303,0.32421604,0.44077078,0.14880009,0.07015652,0.357808,0.7441438,0.050967023,0.6776109,0.29286554,-0.23260318,0.46097314,0.020366112,0.39629507,-0.06884791,-0.35124627,0.18579824,0.13002925,0.10976824,0.4718989,0.17353421,0.46993482,0.13544875,-0.1682757,-0.053661942,0.3769599,-0.088230066,-1.343211,0.49319467,0.3274324,0.89261013,0.60163236,-0.014899393,-0.014326732,0.6486791,-0.3868327,0.030814812,0.27976528,0.025420552,-0.31628036,0.78028053,-0.5731804,0.19391344,-0.2781193,0.08676174,-0.026911953,0.14277779,0.13749366,0.97571343,-0.12798063,0.04711689,-0.24378651,0.09392587,-0.029717395,-0.44205216,0.14568047,-0.21430469,-0.75333613,0.71564704,-0.016737381,0.50772667,-0.35421702,0.06420031,0.036130387,-0.16345902,0.45792747,-0.11233238,0.008118595,0.21476448,-0.61471397,-0.08737254,0.5100935,0.009711432,0.09463217,-0.059444774,-0.22884612,-0.031540405,-0.17020868,-0.16602087,-0.13970293,-0.8487258,-0.08808506,-0.3564445,-0.4958897,0.47312403,-0.4341369,0.128288,0.28751025,-0.040670004,-0.42332065,-0.035081495,0.120785035,0.769463,0.3162099,-0.33615926,-0.28554407,0.087124385,0.21898328,-0.4430329,0.3758998,-0.23620683,-0.03399583,-0.6161158,0.6870992,-0.19933426,-0.4939233,0.27389646,-0.36399713,-0.36347055,0.675683,-0.3597568,-0.08070942,0.2661982,-0.22277623,-0.01832625,-0.27651736,-0.27271375,0.3086684,0.13825537,0.007901815,-0.08555332,0.007722477,-0.062711865,0.6411409,0.11853977,0.4345858,0.3402178,-0.046599507,-0.37117136,0.09233481,0.09426731,0.45326152,0.36881927,-0.118669085,-0.38782397,-0.6231614,-0.27009004,-0.022713104,-0.08368736,-0.00049177307,0.1364906,-0.3307945,0.9273274,0.22444604,1.2036237,0.18822443,-0.2473998,0.14191356,0.55079556,0.095487274,0.025783831,-0.54906434,0.92355293,0.43313503,-0.038912345,0.09736562,-0.54594857,-0.13143651,0.42047834,-0.351413,0.069045216,-0.09734789,-0.672113,-0.5570784,0.13933918,0.2805287,-0.15543495,-0.20718046,0.0013726801,0.17463566,0.03905948,0.48961604,-0.7163784,0.055079132,0.33368874,-0.034302913,-0.08000043,-0.012332712,-0.29373986,0.4341377,-0.71659535,0.14846377,-0.50445604,0.023568856,0.077423476,-0.20772922,0.2182076,0.20379257,0.12498126,-0.5235674,-0.48354957,-0.036081105,0.6755419,0.31969664,0.2651159,0.796187,-0.29658827,0.017105363,0.31286404,0.610295,1.4176589,-0.64204645,0.14802586,0.08958224,-0.39756978,-0.58039695,0.65446085,-0.1787806,0.03229584,-0.22451043,-0.51223546,-0.73314255,0.13368045,0.14774619,-0.059206277,0.19309461,-0.7626245,-0.2982702,0.67972344,-0.61101955,-0.22271395,-0.28216556,0.49781632,0.5257681,-0.19909944,-0.44816235,0.040831387,0.2522121,-0.42660776,-0.52413565,-0.20901231,-0.28461468,0.28956196,0.1923343,-0.2832506,-0.102954745,0.26305154,-0.81498146,0.14612062,0.14858897,-0.37548244,0.059333097,-0.031647455,-0.122592725,0.6849707,-0.33869055,-0.0888274,-0.6668089,-0.48651478,-1.0935222,-0.22420041,0.43864414,0.027845422,0.088461034,-0.74126524,-0.17993478,-0.14739406,-0.026373321,0.15649319,-0.48613977,0.30268905,0.17707258,0.55871516,-0.1656849,-0.9635811,0.2801409,0.012481585,-0.16417047,-0.47858366,0.39796874,-0.032616798,0.6303862,-0.08612466,-0.057521597,0.108083405,-0.7644132,0.05123816,-0.23048638,-0.17826231,-0.6225063,0.11456386,405 +834,0.41307178,-0.3016015,-0.78751546,-0.14961426,-0.27707267,0.25424647,-0.19615783,0.5745319,0.2609366,-0.73196936,-0.2489224,-0.077347815,0.05231856,0.29194286,-0.16899155,-0.52270025,0.00013493498,0.38677672,-0.47479343,0.40811595,-0.2979924,0.14563094,0.09737114,0.5436875,0.28392798,0.085639395,-0.13720815,-0.123135306,-0.17603791,-0.2855131,-0.19037716,0.3361275,-0.4080089,0.278456,-0.29467493,-0.6118714,-0.110997416,-0.41147575,-0.48384237,-0.75701886,0.16975026,-0.9870283,0.85464144,0.020508716,-0.43966952,-0.048145134,0.2647708,0.26734418,0.12782075,0.08648423,0.23414786,-0.2989342,-0.14490394,-0.26260397,-0.44911703,-0.6431742,-0.5855832,-0.093730874,-0.42822945,0.12377902,0.07636011,0.35148504,-0.29757285,-0.048814785,-0.2469893,0.35690156,-0.39507782,0.32264033,0.14207815,-0.13289745,0.2797921,-0.67326236,-0.3692402,-0.11811817,0.21719821,-0.13095525,-0.24546134,0.13600293,0.092528425,0.5524941,-0.0041288235,-0.090031564,-0.27804464,-0.00962481,0.09838635,0.62650853,-0.3136208,-0.14955966,-0.28002015,-0.037000615,0.3862296,0.23607974,0.23745406,-0.29344934,0.10358003,-0.19350497,-0.25551778,0.39803696,0.6107369,-0.20708607,-0.29048958,0.2533234,0.40570977,0.07887565,-0.3210092,0.11497489,0.06256137,-0.42070803,-0.07761068,0.048853476,-0.11335514,0.5362581,-0.114614844,0.3048127,0.39329323,-0.19242883,0.013398995,0.21184587,0.30507144,0.027401596,-0.42435697,-0.50470465,0.42711583,-0.53935605,0.010766474,-0.24934427,0.73494864,-0.04526782,-0.6280212,0.20046921,-0.56786793,-0.016209511,-0.10358432,0.48282728,0.55577475,0.39366186,-0.029262925,0.6575095,-0.13485764,0.013804778,-0.012408048,-0.014241626,-0.061385196,-0.35924363,0.23388658,-0.5791082,-0.045646995,-0.06627391,-0.050313745,0.14387709,0.64252657,-0.64708924,-0.49911204,0.23375231,0.9636949,-0.35183835,-0.110687785,0.8664349,1.1067692,0.8958187,-0.028752869,1.2021604,0.2770426,-0.24709038,-0.26107013,-0.16616607,-0.6546679,0.33896077,0.091059506,-0.55518264,0.361086,0.17095047,-0.14657168,0.47131944,-0.44126603,0.0323213,-0.36512208,-0.08207903,-0.014334996,-0.028234722,-0.5685279,-0.3152616,-0.09981284,-0.14351755,0.22883976,0.16006267,-0.447582,0.6093074,0.086069144,1.306591,-0.29416478,0.00069422275,0.09608549,0.3460668,0.06665868,-0.10161635,0.17871113,0.24698605,0.35954818,0.08321228,-0.45542097,0.017348707,-0.33284983,-0.3714287,-0.30456427,-0.16127995,-0.2468956,-0.003127632,-0.47798762,-0.32392564,-0.06020305,-0.29680023,0.26546878,-2.3447814,-0.26491967,-0.14376174,0.41482666,-0.27228543,-0.44379422,-0.3078204,-0.5017998,0.32642215,0.19285144,0.50922424,-0.5592892,0.559087,0.33559546,-0.43164656,-0.16061507,-0.80006474,-0.20093124,-0.09082994,0.15233774,0.027068308,0.011859134,0.15245833,-0.21596193,0.46033946,-0.26578006,0.14975417,0.272306,0.4884757,-0.058017895,0.27209416,0.14851505,0.6512213,-0.5483109,-0.24922371,0.42138448,-0.5753693,0.14266993,-0.12521932,0.14185886,0.57977563,-0.43169785,-0.6622257,-0.7812336,-0.24026245,1.1571702,-0.0639954,-0.5046219,0.03318261,-0.3200315,-0.41367468,-0.08077401,0.521154,-0.21267177,0.019006163,-0.81134254,-0.17921348,-0.08247938,0.17188315,-0.120665886,-0.026283868,-0.4181771,0.55607295,-0.15816681,0.4614644,0.47617027,0.33186245,-0.16174509,-0.35994014,-0.015927767,1.0349854,0.31972954,0.20119189,-0.3413159,-0.055916145,-0.39024183,0.12806807,0.07205343,0.54981226,0.60127616,-0.05395356,0.16080602,0.4624864,0.05459304,0.23144953,-0.08205556,-0.53791314,-0.33876798,0.20292914,0.54843724,0.45602885,-0.07460556,0.62570906,-0.14976856,0.55921596,-0.31062064,-0.48380914,0.20325428,1.2541689,-0.38321152,-0.48082566,0.81328326,0.5109305,-0.39107418,0.5353236,-0.80646104,-0.44920778,0.21905406,-0.083801515,-0.49727774,0.13759638,-0.20555843,0.3087834,-1.0215845,0.42108706,-0.29518715,-0.6788171,-0.6079801,-0.20930071,-1.6204447,0.30679616,-0.3185359,-0.09621834,-0.25273937,-0.3701179,0.24445917,-0.5271486,-0.41350856,0.037931174,0.16669983,0.55485535,0.01000008,0.11885438,-0.18746744,-0.3765031,-0.16296391,0.3987781,0.32283553,0.26433787,-0.21398921,-0.5029961,0.057767626,0.0630094,-0.1592737,0.115641505,-0.943927,-0.4805498,-0.005912623,-0.56839913,-0.26476875,0.70823735,-0.327095,-0.030299796,-0.305431,0.18080805,-0.051657956,0.16876818,-0.07114149,0.22691523,0.014092207,-0.20639147,0.086063124,-0.25843778,0.23040426,0.09064102,0.24780159,0.5214902,-0.14217055,0.22624065,0.44550633,0.5296424,-0.044747695,0.8520837,0.58476895,-0.13713221,0.20686038,-0.20630771,-0.3370668,-0.55836195,-0.20434071,0.17690347,-0.52935433,-0.42906857,0.012193498,-0.3821908,-0.9735767,0.714433,0.10989403,0.20293814,-0.026064435,0.4547012,0.60034555,-0.14529474,-0.13498582,-0.07757347,-0.13650203,-0.41274127,-0.5398331,-0.6738667,-0.48150158,-0.12881972,1.4868202,-0.15624276,0.35956702,0.32121944,-0.23770846,-0.044532508,0.5194058,-0.060270894,-0.20575665,0.6829532,-0.19387297,-0.6163478,0.2079304,-0.12438813,-0.18714094,-0.619824,0.35862145,0.70851165,-0.80657226,0.41556206,0.4752097,-0.030617507,-0.45152032,-0.5500222,-0.1317989,0.039970938,-0.22207838,0.55448073,0.270803,-0.35009933,0.23700239,0.2209916,-0.2040689,-0.55309874,0.44006243,-0.14024164,-0.31739685,-0.040135287,0.45766166,-0.012799243,-0.0053455927,-0.09067271,0.12196824,-0.27210233,0.43989384,0.07129781,-0.1898552,0.16510163,-0.3777006,-0.13674432,-0.79243773,0.14184205,-0.7185128,-0.3434881,0.3640896,0.04696365,0.24034637,0.40744886,0.14045806,0.3427666,-0.4433335,0.04085366,-0.27592474,-0.39809623,0.48339677,0.3086176,0.4094882,-0.4242493,0.5422459,0.08788409,-0.33772373,0.038469184,0.2326606,0.5956393,-0.011424969,0.4988831,-0.092683546,-0.160864,0.29018134,0.90738374,0.29352638,0.5054353,0.041890413,-0.1635801,-0.07359192,-0.03125496,0.14052975,-0.23633327,-0.4883997,-0.14607644,-0.3992988,0.2479112,0.466913,0.0747525,0.56916744,-0.15267597,-0.2037253,0.094322145,0.069934204,0.14214982,-1.3507805,0.1776576,0.16561586,0.85722286,0.13808517,0.0077199093,-0.089407094,0.62411654,-0.15918975,0.19722761,0.39925256,-0.068131775,-0.26723588,0.6155137,-0.6273393,0.387869,-0.13887414,0.1805296,0.0060431226,-0.15854631,0.49739423,0.8553369,-0.1320805,0.1263515,0.1282624,-0.3343245,-0.012078084,-0.31089804,0.22761138,-0.6840121,-0.22320545,0.806201,0.5943614,0.59947675,-0.20094042,-0.018324887,0.2931507,0.014124672,0.36965418,0.21629119,0.27156493,-0.050272223,-0.69772696,0.037798654,0.6072103,0.11078188,0.030964077,0.1873625,-0.31343052,0.29026666,-0.061998025,0.18964845,-0.0700606,-0.4115213,-0.12741075,-0.4540952,-0.51632625,0.4170444,-0.25646302,-0.0023975458,0.1962539,0.21580078,-0.20619595,0.30577964,0.08590194,0.8819682,0.12267947,-0.16248359,-0.37578273,0.28454545,0.25802392,-0.29152635,-0.10443934,-0.32208392,0.20537136,-0.4951252,0.38399723,-0.09537715,-0.15538044,0.105264574,-0.20504765,0.0026461494,0.47364795,0.00036268434,0.07459587,0.19448233,0.1875356,-0.524229,0.0064010173,-0.15184505,0.2684741,0.2744707,0.047546554,-0.2856975,-0.2027862,-0.14742355,0.2512455,0.03914519,0.4185636,0.60592085,0.12686133,-0.29049516,-0.07426807,0.25967914,0.6335528,-0.04400088,-0.1513045,-0.13627402,-0.5469853,-0.24898405,0.38489008,-0.17858417,0.31758365,0.18123262,0.032986462,1.0600108,0.01296404,1.1847938,0.04638807,-0.37832502,-0.003540665,0.47996387,0.086932965,-0.056473404,-0.28496498,1.1189156,0.55501,-0.030139035,-0.102879465,-0.4482486,-0.07959104,0.20616733,-0.20664203,-0.23637791,-0.078843094,-0.65609837,-0.19090398,0.31083488,0.30083275,0.19457929,-0.04065308,0.3768654,0.3230298,0.008819046,0.1916861,-0.69564635,-0.13669665,0.17510271,0.383906,-0.16487257,0.29080012,-0.43544206,0.27672827,-0.61221075,-0.031134807,-0.20173661,0.13597782,-0.08971543,-0.22910815,0.19021513,0.03768409,0.3437623,-0.63948137,-0.18642415,-0.1771097,0.47342828,0.1814682,0.029937305,0.56336707,-0.21280652,-0.050372645,0.10457484,0.54443353,1.2319192,-0.41644824,0.059908777,0.4850143,-0.47912553,-0.80825645,0.25158405,-0.44202673,0.18589222,-0.02093353,-0.33619848,-0.57492137,0.41734993,0.17166798,-0.16926081,0.06637996,-0.33902225,0.18945044,0.20607449,-0.2509043,-0.17765139,-0.2995715,0.2467679,0.29631048,-0.11000648,-0.40505576,-0.08064115,0.4650443,-0.22089891,-0.3274177,0.07300676,-0.4413302,0.20896429,0.155316,-0.3351383,-0.059514627,-0.24071027,-0.45531586,0.10965956,0.43745804,-0.29336298,0.13884343,-0.33297247,-0.079228744,0.65417594,-0.07992047,0.08914303,-0.63642603,-0.36562207,-0.72152585,-0.39171967,0.047152665,0.3269184,-0.071440876,-0.59603333,-0.03063599,-0.21837734,-0.4395094,0.0030759622,-0.34378576,0.543892,0.2202781,0.32446355,-0.21414852,-0.85779786,0.27339283,0.08663682,-0.26201132,-0.5110788,0.39106926,-0.115265556,1.0258886,0.14911303,0.16489793,0.2630957,-0.5754152,-0.053413883,-0.21605909,-0.23132975,-0.9100585,-0.3596723,408 +835,0.45053414,-0.12968606,-0.43032527,-0.08667877,-0.34911296,-0.16173112,-0.20125102,0.4814901,0.33572602,-0.1984907,-0.1649515,-0.061711233,-0.16920608,0.30436474,-0.15201536,-0.6326561,-0.14460324,0.075104475,-0.530755,0.80364925,-0.29602942,0.18582936,-0.060223695,0.4995667,0.25838736,0.340873,0.1485113,0.15508768,0.098144054,-0.29006362,-0.022031672,0.11624777,-0.5413442,0.28029084,-0.098686844,-0.2171356,0.019309515,-0.5106959,-0.3735455,-0.7478841,0.3547417,-0.6946196,0.3023201,0.06623758,-0.21847437,0.26434073,0.2880452,0.22658531,-0.1833943,-0.20015447,0.07344675,-0.016495334,0.05966306,-0.17146266,-0.14117329,-0.2660478,-0.5837718,-0.060795236,-0.4107958,-0.28261283,-0.36213407,0.14663316,-0.3837417,-0.0085680485,-0.15117148,0.5406888,-0.4122341,0.024083292,0.2718427,-0.21578614,-0.015779153,-0.7355535,-0.18184519,-0.058749873,0.25844917,0.15892369,-0.13563989,0.3311257,-0.051819026,0.092387356,-0.028838431,-0.11850527,-0.42691377,-0.13092521,0.04057621,0.44892302,-0.05490197,-0.297556,-0.024141813,-0.048082292,0.05152754,0.26706377,0.18222241,-0.014875382,-0.1197241,-0.265109,-0.24206477,0.2354135,0.4077607,-0.22525121,-0.18429703,0.3245487,0.402383,0.30933437,-0.23388807,-0.14429443,0.025869288,-0.5074816,-0.031735834,0.061292876,-0.14268313,0.4863936,-0.052360967,0.12007984,0.63790697,0.036112085,-0.10574204,-0.025206573,0.13826783,0.08455249,-0.44535318,-0.15656357,0.36542037,-0.26781544,0.31238577,-0.113827385,0.63991326,0.21814753,-0.567969,0.24123025,-0.50856805,0.061935153,0.013851009,0.43112326,0.5624628,0.43885565,0.37571922,0.67723674,-0.15474133,0.24054801,-0.20398033,-0.07536561,0.012124668,-0.18793811,0.074822225,-0.47783384,0.10613504,-0.12683462,-0.16141622,0.11016939,0.23716147,-0.41080585,-0.108448364,0.2938111,0.8020093,-0.16291411,0.0184531,0.6869505,1.0904828,1.0612577,0.03552113,0.6795421,0.022588203,-0.29482034,0.17170674,-0.14844944,-0.6441513,0.22283249,0.27936995,0.36025858,0.15324046,0.03325823,-0.0689654,0.29359555,-0.38299665,-0.066751726,-0.011522633,0.2028603,0.38737252,-0.018643787,-0.43770614,-0.35731182,0.012705256,0.00062051415,0.061032888,0.25925973,-0.23798136,0.3382958,-0.08191682,1.4589968,0.14677875,0.057468012,0.31108359,0.6363405,0.17325175,-0.234537,0.11355134,0.3741726,0.22575676,0.1287461,-0.5480903,0.27188066,-0.25232676,-0.45761228,-0.093904875,-0.39893183,-0.12395722,-0.091774546,-0.38038716,-0.19246785,-0.13310057,-0.11146123,0.5092799,-3.1013381,0.20238006,-0.13032922,0.24090302,-0.33750066,-0.18544406,0.13150196,-0.44261464,0.41885892,0.42513016,0.4003378,-0.4236132,0.30439842,0.51089895,-0.7554088,-0.05039029,-0.46146822,-0.14551426,0.04337482,0.47109663,-0.0852815,-0.009223759,-0.111897446,0.1433952,0.49355194,0.085995354,0.23440562,0.2904365,0.3480347,-0.14105599,0.56606156,-0.022343969,0.44530687,-0.40116358,-0.104341865,0.3068864,-0.6323262,0.3997828,-0.20815761,0.107710995,0.5233994,-0.33471832,-0.94417953,-0.32145998,0.09543737,1.1835542,-0.29088742,-0.5407383,0.25254574,-0.46855286,-0.025928995,-0.07552681,0.3292746,-0.08619788,-0.05643637,-0.6094027,-0.04743822,-0.13172697,0.29612598,0.011281774,-0.19478898,-0.44609714,0.78071696,0.10228857,0.53853273,0.12766625,0.11791158,-0.38324085,-0.31520253,-0.0078078485,0.5046384,0.33682916,0.045180917,-0.22643715,-0.121915035,-0.24936573,-0.1501232,0.19970094,0.66657096,0.32130912,-0.057876855,0.08646389,0.23290634,-0.14692396,0.012892987,-0.13914002,-0.12615874,-0.29092103,0.0670385,0.5625491,0.8714115,0.0874528,0.186974,0.08247944,0.41659904,-0.14988814,-0.39125332,0.3024076,0.86326295,-0.042142376,-0.30202246,0.46643496,0.69446295,-0.19135119,0.36419368,-0.4729942,-0.3020039,0.46884397,-0.05297023,-0.45044044,0.02159667,-0.2776619,-0.095701076,-0.5143369,0.07156682,-0.3914877,-0.52521396,-0.67763203,-0.17012925,-3.0113401,0.09152123,-0.15871255,-0.36025807,-0.24409036,-0.11128535,-0.0094388025,-0.661238,-0.6146072,0.15610938,0.14457053,0.69905496,-0.18291067,0.08408585,-0.30388233,-0.26420662,-0.30001536,0.3324484,0.104284085,0.3303227,-0.06559158,-0.36673012,-0.2512473,0.024939187,-0.3583497,0.09609148,-0.5771745,-0.23364985,-0.12811422,-0.52048063,-0.13099584,0.5922473,-0.32478037,0.051259298,-0.101489045,0.03424187,-0.15154476,-0.014006806,0.12714343,0.27448303,0.08036459,-0.17749697,0.031120569,-0.1991105,0.31604797,0.08052195,0.49342838,0.24554682,0.056979913,0.12524289,0.3975524,0.53096396,0.0158521,0.93810636,0.3369627,-0.011414922,0.2163157,-0.21353601,-0.26669797,-0.4396397,-0.11429875,0.22411354,-0.28782076,-0.29179588,0.010417628,-0.3381681,-0.7250417,0.44944742,0.13538752,0.06005727,-0.009134951,0.107161194,0.46411037,-0.2774953,0.059000175,0.13848592,0.095686086,-0.529485,-0.31007472,-0.45626426,-0.22945191,-0.07799927,0.9524625,-0.27622953,-0.11591199,0.055483777,-0.3770238,-0.122707,0.34806266,-0.0015807375,0.12509996,0.4018116,0.1783482,-0.6075373,0.58317965,-0.2198381,-0.07062544,-0.38070354,0.339559,0.38550022,-0.42415038,0.64115644,0.20855975,0.09432725,-0.30467358,-0.583992,-0.23386808,-0.04769157,-0.0015547549,0.2007512,0.37339702,-0.7052722,0.28938755,-0.012263906,-0.35416052,-0.72140455,0.3534322,-0.15095527,-0.5260315,-0.09912232,0.29268727,0.15863807,0.017580131,-0.2812769,0.27625751,-0.26199827,0.063168176,0.12795405,-0.031226685,0.12821941,-0.2071687,-0.10983666,-0.620506,0.11929528,-0.16486685,-0.29860738,0.47203317,0.010904876,0.109077595,0.15832518,0.12560277,0.23569076,-0.039790887,0.13797319,-0.27098164,-0.20193535,0.5333579,0.37656072,0.66243124,-0.55214685,0.5925985,0.11825154,0.063399956,0.2851027,0.08127191,0.2612558,-0.09590566,0.5831156,-0.030769527,-0.18859749,0.13520524,0.66957045,0.15549676,0.24058072,-0.06084068,0.00062366825,0.44021574,-0.17325298,0.1731879,-0.06887158,-0.66524893,0.11974918,-0.2679925,0.095454484,0.35918677,-0.010335515,0.24923348,0.038491957,-0.21969248,0.013872738,0.1378954,-0.098468326,-1.1427876,0.26623145,0.18366157,0.9820182,0.5277207,0.08978953,-0.017332753,0.91938514,0.021610491,0.029222438,0.2502751,0.20583083,-0.44369796,0.5097075,-0.54677063,0.65834856,0.040694147,-0.12495202,0.024383346,0.025743319,0.46062824,0.6813106,-0.24275148,-0.0953873,0.033959884,-0.46570408,0.020211577,-0.33993673,-0.034241676,-0.5017569,-0.3308518,0.6162874,0.5671909,0.32157367,-0.2249128,0.04566586,0.10388625,-0.09281653,0.14778362,-0.043070305,-0.115916185,0.013663036,-0.5375121,-0.114641674,0.3794193,-0.3222622,0.13392504,-0.01739595,-0.06265852,0.31601852,-0.036467124,-0.10948441,-0.09035424,-0.61340743,0.31729957,-0.23377351,-0.38966784,0.31610766,-0.08843261,0.32339874,0.17435805,-0.050822366,-0.26238647,0.53764635,0.02856788,0.87224984,-0.2278171,-0.01635614,-0.36762294,-0.13411772,0.008043289,-0.1423722,0.08513141,-0.31587875,0.20042665,-0.4685222,0.48995924,-0.13273999,-0.31376117,-0.21971919,-0.1502241,0.01689162,0.542326,-0.05918285,-0.21202187,-0.27095833,-0.15807115,-0.27094522,-0.2351812,-0.2162847,0.29586968,0.03303061,-0.0560413,-0.051784564,-0.017683335,0.20534097,0.41826093,-0.15222734,0.3484495,0.18637513,0.14791036,-0.45963082,0.0449139,0.031830996,0.60585564,-0.12774996,-0.049331564,-0.21102862,-0.50700647,-0.50499874,0.33926442,-0.09382743,0.5760402,0.0985831,-0.17296368,0.5906893,-0.0569372,1.0334376,-0.114846684,-0.4317796,0.21509741,0.5620695,0.010817919,-0.10222585,-0.1911603,0.81496304,0.43670988,-0.017838046,-0.09493134,-0.33506665,0.10308098,-0.040076975,-0.1685416,-0.09189197,-0.0194054,-0.44613084,0.014978233,0.101607054,0.10472044,0.34764683,-0.27161875,-0.07275844,0.17107171,0.19607021,0.19287372,-0.40969738,-0.15705319,0.3445319,0.011938234,-0.01613759,0.099482596,-0.55329037,0.3600154,-0.45923004,0.25356057,-0.323195,0.26410818,-0.3549888,-0.24696703,0.2007044,-0.08503776,0.42549098,-0.55394334,-0.21551013,-0.3062885,0.5219054,0.3825984,0.26481283,0.43341216,-0.1193239,0.08909758,-0.027868101,0.64828056,0.63323313,-0.30009645,-0.06439012,0.10061572,-0.4458553,-0.6258742,0.110033415,-0.3569757,0.16021663,0.08081104,-0.08518827,-0.63896185,0.22345285,0.18457107,0.1935529,0.059354197,-0.6932916,-0.20265387,0.0953004,-0.32641742,-0.25159395,-0.43188456,0.06524919,0.5254813,-0.0630799,-0.2813423,0.10078668,0.06751921,-0.068727635,-0.4836805,0.0077841133,-0.51183504,0.24878334,0.04476893,-0.31214762,-0.452999,0.03313761,-0.4445307,0.2609601,-0.01841312,-0.26619855,-0.056189165,-0.30268982,0.11099607,0.94430333,-0.27264252,0.3456602,-0.48574802,-0.48585665,-0.8034094,-0.30602935,0.3105545,-0.001881803,-0.05593048,-0.5376684,-0.19322588,-0.2360934,-0.25892267,-0.22156107,-0.43234196,0.3637983,0.0307986,0.30401558,-0.15564471,-0.87117416,0.30934033,0.05042355,-0.08927029,-0.44767824,0.22960506,-0.08524573,0.7857154,0.031298485,0.047793508,0.10363682,-0.30447567,0.04239772,-0.1586345,-0.069353454,-0.3849474,0.22316633,414 +836,0.33530164,-0.3668265,-0.560308,-0.0716576,-0.008330777,-0.035952155,-0.14190225,0.25662723,0.091609545,-0.52545446,-0.14971864,0.013052541,-0.044977665,0.38672987,-0.18467422,-0.55474573,-0.0748446,0.06941301,-0.40005437,0.77188486,-0.22754896,-0.019816542,-0.07141036,0.38745716,-0.015546153,0.21334712,0.42423794,-0.04514508,0.035072286,-0.14246412,0.04759693,-0.011636019,-0.63631743,0.31475073,0.0043343254,-0.32681143,0.11591091,-0.25312954,-0.32287517,-0.6195701,0.20233311,-0.8916807,0.48212886,0.09060731,-0.23665337,0.10917834,-0.07319447,0.29573122,-0.37664673,0.079117246,0.15776233,-0.1232101,-0.052071106,-0.17836785,0.17838643,-0.46848997,-0.43404052,-0.056769982,-0.33501792,-0.18801318,-0.15504967,0.15459968,-0.4063516,-0.11239711,-0.08459435,0.5436594,-0.5631226,-0.24123399,0.13219605,-0.3328179,0.48743233,-0.7378134,-0.122979976,-0.1804939,0.07696127,-0.2323528,-0.14541806,0.18144763,0.11752007,0.4913186,0.13129263,-0.08081331,-0.26528534,-0.04979269,0.29545656,0.43468747,-0.17032088,-0.6132651,-0.08723098,0.040477604,0.04758993,0.10240799,0.0018089911,-0.4297255,-0.11828113,0.19454534,-0.056055408,0.2055927,0.5338325,-0.29747894,-0.263696,0.30740777,0.52702415,0.027178338,-0.11370199,-0.11799207,0.022735955,-0.40628967,-0.24509054,0.09219226,-0.26703405,0.81993407,-0.13014312,0.33148944,0.7009208,-0.13737157,0.10902294,0.027450735,-0.055159543,-0.2566144,-0.313951,-0.2733886,0.41540432,-0.3416817,0.22297625,-0.27582154,0.6301109,0.103250034,-0.78950644,0.351805,-0.39627144,0.07563854,-0.29268923,0.65262383,0.5699473,0.23322432,0.19317158,0.851235,-0.59833217,0.021960557,-0.0051347166,-0.42417148,0.16136354,-0.04914118,-0.2382242,-0.52505416,-0.039663,0.118500926,0.039282184,-0.13360593,0.05551998,-0.5676088,0.001462996,0.20969616,0.71460444,-0.24805768,0.09954699,0.40844956,1.1262897,0.7791068,0.055710193,1.3884562,0.06446918,-0.22901022,0.10050406,0.041302115,-0.7632976,0.15166914,0.57201004,0.61386245,0.13898145,0.2141313,-0.13505018,0.51259416,-0.5517406,0.16862373,-0.26227683,0.48807546,0.029812893,-0.24622309,-0.48568952,0.052122515,-0.08711324,0.15449785,-0.15572475,0.15750816,-0.17452134,0.17303473,0.09212359,1.5791229,-0.28948715,0.24717538,0.073879,0.45349443,0.095689975,0.032699954,0.21253587,0.24678992,0.546856,0.22467737,-0.5511747,0.06598896,-0.1505236,-0.6075904,-0.17317384,-0.1993616,0.09218589,0.14904934,-0.4805878,-0.104643546,0.0144417705,-0.16668738,0.37135926,-2.7672796,-0.080187924,-0.31544286,0.30938128,-0.43360844,-0.23183538,-0.05406214,-0.27264696,0.5625208,0.55245376,0.5549324,-0.78585356,0.3261482,0.4128643,-0.34142664,-0.017468056,-0.6033659,-0.08097363,-0.13262963,0.5753611,0.21951592,-0.2920236,-0.03823096,0.1400752,0.43813226,0.06708279,0.044163574,0.1662366,0.09745773,-0.0030768712,0.4021354,0.02334652,0.5258111,-0.14918698,-0.109270655,0.295424,-0.11690325,0.2671028,-0.17732131,0.22130519,0.29593456,-0.24485652,-0.9591756,-0.85910916,-0.27388605,1.2413636,-0.25722829,-0.68196297,0.3415368,-0.09098274,-0.2448529,-0.09158663,0.2443444,-0.06710341,0.12987006,-0.93868166,0.22159147,-0.17194617,0.27419794,0.08101461,-0.19538528,-0.6959195,0.7752116,-0.04650423,0.53440666,0.7106995,0.21495783,0.048275203,-0.4011704,-0.046355028,1.0505432,0.48614255,0.009536505,0.0021730985,-0.091790594,-0.16213651,-0.1593163,0.26967648,0.586633,0.73827815,-0.041615974,0.094251156,0.22259027,-0.09679335,-0.0889692,-0.03992934,-0.29819787,-0.081953295,0.18349992,0.6132355,0.75342655,-0.22698373,0.3019797,-0.11512076,0.23427713,0.00936084,-0.42033246,0.6341673,0.7442443,-0.06418134,-0.16235982,0.60953397,0.45749107,-0.27075496,0.3965609,-0.7485876,-0.21910618,0.39600122,-0.01849381,-0.38383412,0.035135064,-0.5370106,0.29974985,-0.9724191,0.41422763,-0.393525,-0.42465994,-0.75384694,-0.4154749,-3.524975,0.12521727,-0.4845117,-0.21497114,-0.16095354,-0.18861187,0.4520432,-0.82877135,-0.41108298,0.3093131,0.08463049,0.43314,0.021799406,0.08657289,-0.26085553,0.06427891,-0.014548525,0.23052041,0.1449772,0.041873503,0.07116721,-0.49756444,-0.05820999,0.08636012,-0.42764565,0.1678945,-0.45550263,-0.41288486,-0.2597873,-0.38098314,-0.2514175,0.70923567,-0.2658334,-0.09841463,-0.14791004,0.05575956,-0.32086167,0.3459619,0.12102006,0.13734852,-0.036965366,0.13438685,-0.060264233,-0.2938974,0.07469636,0.04185394,0.29138052,0.22054088,-0.45685053,0.030504083,0.4685932,0.4134234,-0.23136972,0.69465643,0.8925125,-0.08493057,0.2249163,-0.11000057,-0.24515676,-0.60866165,-0.65770394,-0.08432913,-0.4241921,-0.5103736,0.09157578,-0.24092735,-0.8086366,0.46596718,0.015496075,0.09150365,0.12696548,-0.013812979,0.42354688,-0.22338152,-0.16211613,-0.0061544105,-0.11712861,-0.7231057,-0.3962046,-0.63050634,-0.48123083,-0.09384332,1.0343517,-0.14102037,-0.13332637,0.17446828,-0.29469594,0.03525974,0.2642242,-0.026326546,0.04792896,0.42157486,0.058626276,-0.7266709,0.5986369,0.06352201,-0.12853692,-0.7786005,0.1799928,0.51258683,-0.606327,0.4093791,0.29868862,0.035207387,-0.2066329,-0.48692688,-0.38337883,-0.14489795,-0.14057447,0.39320433,0.12937461,-0.6458619,0.37469888,0.28391334,-0.07787448,-0.596419,0.61621124,-0.07383811,-0.13945974,0.008238246,0.19988638,-0.03719804,-0.00024219106,-0.23072372,0.25374132,-0.44305018,0.29755083,0.34163293,-0.10178673,0.44082534,-0.044612337,-0.15464668,-0.71544546,-0.010626306,-0.57060474,-0.14347266,0.23717229,0.011588689,-0.016844235,0.07148398,0.052098114,0.4354014,-0.37427154,0.2092252,0.007773792,-0.44889057,0.44021568,0.47278103,0.27053562,-0.4605141,0.70223117,0.055715498,-0.1569275,-0.46423587,0.090209804,0.57729846,0.19328684,0.29402873,-0.31932887,-0.05924253,0.19361128,0.7629475,0.1473233,0.51775837,0.015715161,-0.002730896,0.35097682,0.09671999,0.17219125,0.11915609,-0.5561971,0.13035159,0.04572931,0.24267767,0.2821707,0.19760565,0.39146078,-0.04999408,-0.22588842,0.07257492,0.25433752,0.12907855,-1.0515827,0.42178378,0.23459323,0.7800563,0.6100778,-0.053414356,0.06902236,0.6368874,-0.16142279,0.14795387,0.27900976,-0.0995093,-0.55578667,0.65327144,-0.69206,0.298023,0.029444082,0.023120366,-0.014587258,0.049628492,0.22686402,0.69306487,-0.11886272,0.13221383,-0.24093919,-0.108407654,-0.09011236,-0.29515338,0.10334454,-0.34135357,-0.41244042,0.655055,0.555209,0.4355451,-0.18568386,-0.06917569,0.19727404,-0.04134219,0.34981653,-0.12335082,0.22316803,0.17492408,-0.59712225,-0.3030757,0.59186727,-0.12798828,0.13668096,-0.08071997,-0.26269814,0.2601607,-0.0022937257,-0.1357152,0.007819126,-0.54335356,0.19387865,-0.24916089,-0.20808727,0.8475497,-0.39921084,0.2690005,-0.0043740943,0.04308486,-0.13979535,0.15312888,-0.056114513,0.7796038,-0.015815655,-0.07162307,-0.5731521,-0.031449422,0.09851969,-0.057247538,0.032906104,-0.34951186,-0.08894632,-0.6915352,0.39395848,0.0038856443,-0.12356189,0.3168429,-0.32951277,-0.07508718,0.43091425,0.017104102,-0.2062978,0.20260091,-0.15861385,-0.23603976,-0.35065368,-0.19631682,0.33179972,0.11529541,0.33013645,0.022602806,-0.027761055,-0.16682518,0.22544676,0.29349837,0.10276965,0.2568262,-0.051105637,-0.32580957,-0.26588055,0.19010238,0.39416113,0.005992415,-0.010898262,-0.10155297,-0.8325732,-0.45415354,-0.2789512,-0.10528784,0.3548768,0.061259795,-0.19194879,0.5351822,0.23213972,1.2605268,0.025938155,-0.38062456,-0.090120584,0.6222354,-0.11521991,-0.049122553,-0.21533959,0.929061,0.7433026,0.0750347,-0.08856818,-0.37307587,-0.18756855,0.2729782,-0.11981038,-0.0157631,-0.024888838,-0.76753855,-0.34143057,0.27488264,0.34432808,0.045427185,-0.07501692,-0.10199863,0.13789472,0.063834086,0.26741728,-0.4969244,-0.13353288,0.3026159,0.21825619,0.021548659,0.1904789,-0.3853978,0.3853564,-0.52068263,-0.085145555,-0.29610264,0.077656515,0.033571158,-0.18803555,0.13305669,-0.111901365,0.44280002,-0.32887217,-0.27631953,-0.14885375,0.6698394,0.2517908,0.13228165,0.7840623,-0.14069119,0.024221092,-0.18737066,0.36092445,1.0708104,-0.49491537,0.15123188,0.33397838,-0.3063686,-0.68631977,0.2961898,-0.3191883,0.3419353,-0.14434105,-0.44111028,-0.5899392,0.17828846,0.09697463,-0.23087008,0.06719756,-0.671957,-0.36423385,0.12556979,-0.37990692,-0.19943243,-0.33481026,0.1501482,0.6573819,-0.389354,-0.349075,0.20866652,0.30245245,-0.09472451,-0.5867937,-0.032757122,-0.26872438,0.3495325,0.16828902,-0.5084296,-0.17153801,0.18130521,-0.40561923,0.07072649,0.09550025,-0.3185005,0.02682273,-0.2946745,-0.12056898,0.9705283,-0.04911373,0.17210932,-0.7268064,-0.28581432,-0.79906344,-0.4068384,0.4027001,0.24540393,0.013795223,-0.53634137,0.06374439,-0.069495596,0.31118393,-0.2588547,-0.33497834,0.4993575,-0.020663934,0.47754708,-0.13306434,-0.6619578,0.112130694,0.1556926,0.14520277,-0.42560253,0.4567894,-0.041788813,0.81619,-0.0013756308,0.13211331,0.12955476,-0.5291092,-0.09770876,-0.20731144,-0.3966445,-0.6951662,-0.0077561457,416 +837,0.36147222,-0.35028967,-0.46228337,-0.072776526,-0.0765855,0.24892731,-0.1755478,0.55909276,0.10223934,-0.5338808,-0.21737625,-0.1884361,0.06757313,0.6650375,-0.22310913,-0.40139404,-0.059348155,0.2154655,-0.69299674,0.5368156,-0.5152107,0.16980606,0.008884132,0.5675348,0.35075822,0.21959507,-0.027314106,-0.031823453,-0.48075727,-0.26281756,0.106505595,0.1839699,-0.41849998,0.17868944,-0.2885026,-0.35662904,-0.2556826,-0.6356163,-0.41853794,-0.82608026,0.30704924,-0.98909265,0.64216846,-0.0733156,-0.20609085,0.20228708,0.25382695,0.4767015,-0.18643558,0.0069456645,0.23873204,-0.06022605,-0.16251464,-0.20219499,-0.38146648,-0.30431458,-0.593701,0.10095542,-0.4724295,-0.15451808,-0.004705722,0.12486323,-0.14398123,0.039180394,-0.10707053,0.4288731,-0.47784853,0.11385697,0.114284426,0.1154573,0.3255086,-0.5257887,-0.29666817,-0.14537358,0.3768693,-0.26052058,-0.20383231,0.13919288,0.16112918,0.27153346,-0.20783634,-0.013150022,-0.29784873,0.03054261,0.26184577,0.53337365,-0.19909115,-0.59707415,-0.10887734,-0.023440802,0.3596836,0.2396702,0.24832587,-0.26854554,-0.010379334,-0.06501174,-0.20967591,0.45849028,0.47299588,-0.14007069,-0.22920232,0.38693252,0.49235925,0.2954757,-0.16834418,-0.10718878,-0.00425715,-0.55439687,-0.034924123,0.3331661,-0.09574619,0.5010442,-0.08178104,0.3030347,0.562938,-0.25101322,0.07237146,0.058806077,0.10651513,-0.11546894,-0.061407432,-0.40582845,0.1280325,-0.3124986,0.12031594,-0.24217278,0.6191212,0.18630265,-0.8054554,0.33298197,-0.5417481,-0.058315944,0.02799653,0.41806534,0.6713354,0.45327398,0.23952639,0.46354046,-0.1504973,-0.012744069,-0.20106815,-0.2552292,-0.13232583,-0.25727955,0.012379408,-0.5165415,-0.026148587,0.045330476,-0.3277462,0.018039228,0.635542,-0.47210607,-0.092708535,-0.05467224,0.7227728,-0.2680046,-0.11146625,1.0583817,0.9900444,0.9054148,0.14340247,1.2234498,0.2931252,-0.23800516,0.207388,-0.34619534,-0.64319915,0.35595682,0.30405614,-0.60711044,0.46876073,-0.04600802,0.06864434,0.24428236,-0.38536093,0.1828195,-0.16545452,0.0016308824,0.030581782,-0.072362065,-0.33987585,-0.40821347,-0.22412162,-0.06819786,0.23469321,0.24083018,-0.30227327,0.47003937,-0.002487858,1.7234708,-0.11876628,0.02558245,-0.11642515,0.51368976,-0.014232379,-0.22929372,-0.28188023,0.19292684,0.49131474,0.03230693,-0.5455,0.07313036,-0.09174443,-0.3962622,-0.1991332,-0.3383443,-0.11748961,-0.15944384,-0.4339927,-0.12798332,-0.14000623,-0.39885616,0.32012662,-2.6516972,-0.18234836,-0.07109717,0.3794277,-0.3122525,-0.44943753,-0.28053156,-0.46982273,0.44081393,0.16514748,0.42873988,-0.56213874,0.50408727,0.26197934,-0.5681339,-0.2235089,-0.6678533,-0.11408798,0.04027294,0.3452411,-0.1835335,0.14891173,0.24856551,0.07822461,0.3782272,-0.11323918,0.119463764,0.3558227,0.46701947,0.17974757,0.5148606,-0.1696306,0.5899193,-0.37288466,-0.15902565,0.3318213,-0.41236028,0.28919455,-0.12107196,0.18448426,0.45109335,-0.61521524,-0.87600213,-0.7996175,-0.3170924,1.2201116,-0.11941895,-0.3041562,0.10023334,-0.4648719,-0.37213853,-0.10597962,0.7234389,-0.12062863,-0.08166466,-0.75490874,-0.25543702,-0.060937632,0.23008795,-0.10505625,0.11726108,-0.48015133,0.35832608,-0.033884887,0.41549048,0.21277992,0.11680422,-0.35625562,-0.41633388,0.08884629,1.0068884,0.24861908,0.18866406,-0.08049906,-0.2728101,-0.52171034,0.015411426,-0.014589992,0.6520128,0.52696913,0.060935408,0.17252322,0.20102002,-0.09031976,0.23626797,-0.18291272,-0.28051147,-0.28634915,0.13171734,0.55094886,0.37511697,-0.0964321,0.8846963,-0.21773611,0.2919507,-0.27737883,-0.33132392,0.4417889,0.9486838,-0.19290869,-0.20507504,0.6943818,0.5315754,-0.36117497,0.43536067,-0.53276527,-0.38033947,0.38253883,-0.18156068,-0.38491395,0.3561319,-0.2247278,0.22148268,-1.0113505,0.2802724,-0.39478564,-0.4873464,-0.52401274,0.030244233,-2.6165564,0.16933203,0.0329481,-0.3882521,-0.16143586,-0.4042158,0.05301583,-0.5228961,-0.645189,0.167924,-0.020271989,0.7956133,-0.017852884,0.06404875,-0.23550205,-0.32517195,-0.20242687,0.09046644,0.15616387,0.58070546,-0.1982119,-0.49706396,-0.085865915,-0.32714757,-0.20904438,-0.012689586,-0.69177073,-0.52618635,-0.17182195,-0.54012316,-0.23851436,0.7431006,-0.31300303,-0.013690156,-0.19520533,-0.007299622,-0.14499031,0.4051591,-0.033578087,0.26909283,0.2882186,-0.24181515,0.117488,-0.15992047,0.2270034,0.16760947,0.21533884,0.4188086,-0.07224175,0.5413716,0.3903943,0.665085,-0.08482923,0.9571251,0.4876287,-0.16505705,0.22429311,-0.39678803,-0.17361589,-0.49563327,-0.14922711,0.049023822,-0.41635668,-0.6534867,-0.21540032,-0.33188593,-0.80715275,0.63549584,-0.040381588,0.14150411,-0.017023025,0.29693598,0.49666408,-0.13403334,0.09189424,-0.12441939,-0.050225765,-0.49375084,-0.2958052,-0.5416338,-0.37183383,-0.029414216,1.2033798,-0.030265436,0.13363114,0.11802036,-0.4145267,0.0901075,0.13185026,-0.07918519,0.01068301,0.31333938,-0.16904522,-0.62013704,0.35759518,-0.18676978,-0.17567773,-0.42459312,0.2700888,0.7967413,-0.56883854,0.59143895,0.39283165,-0.06460012,-0.31966665,-0.29829696,-0.14344364,0.009051929,-0.101849504,0.24931103,0.25444964,-0.6868897,0.37200046,0.34119055,-0.1826138,-0.8525017,0.55859095,0.013131182,-0.16568424,-0.048134733,0.37019798,0.20743747,0.05839849,-0.4955325,0.2563805,-0.4243208,0.32793555,0.23947053,0.0020869772,0.1561345,-0.2107348,-0.1495605,-0.83741635,0.22573519,-0.5176321,-0.32864356,0.368793,0.045367558,0.2953173,0.34211743,0.15882954,0.30839005,-0.49896303,0.028120646,-0.088257484,-0.22566342,0.092438616,0.3771639,0.45989183,-0.44440722,0.6079463,0.061862785,-0.093325086,0.017961195,0.046420053,0.42397705,0.14340156,0.400254,0.054898053,-0.41833082,0.28095075,0.8365826,0.30954158,0.39887825,0.0783967,-0.20813228,0.094231986,0.08104228,0.32327297,0.07210624,-0.49528828,-0.059634898,-0.11318431,0.113342844,0.3897008,0.06697155,0.284096,-0.04362753,-0.42048398,-0.033844028,0.13509433,-0.037122194,-1.3141135,0.41217938,0.06232362,0.74226624,0.4594265,-0.0024304714,0.05462794,0.61140203,-0.21380068,0.09836569,0.4138259,-0.085578345,-0.61797553,0.60999423,-0.7129157,0.5648691,-0.0034100327,0.061591774,-0.039227765,-0.1159828,0.5246349,0.8713452,-0.042639542,0.13120829,0.15180512,-0.2631711,0.17486703,-0.42271423,-0.0018315626,-0.69879436,-0.28829876,0.6863478,0.40735427,0.4998692,-0.0778774,0.046650544,0.10309234,-0.115407825,0.14794387,0.15176135,0.29182348,0.08806858,-0.8042528,-0.0695431,0.5047156,-0.029217025,0.1490503,0.15250298,-0.34536973,0.3267069,-0.19452988,0.019820148,-0.057768982,-0.8418923,-0.08518051,-0.5914832,-0.45729044,0.10892651,-0.173582,0.16436766,0.30692348,0.02143875,-0.2367162,0.4877883,0.2239006,0.8456035,-0.07695109,-0.27955464,-0.19490308,0.35682333,0.3397119,-0.2572968,-0.06666678,-0.16512902,-0.024801603,-0.5963433,0.42338133,0.023243926,-0.45793784,-0.06657078,0.020306163,0.10753638,0.6102889,-0.08956462,-0.039618988,-0.028495127,-0.334916,-0.27873728,-0.17422058,-0.13789578,0.24826832,0.42999735,-0.052923393,-0.11485674,0.07348907,-0.05598901,0.43126592,-0.08528378,0.56181175,0.5981313,0.25928542,-0.17259717,-0.15680705,0.11292878,0.5598256,0.03775306,-0.16281347,-0.3991412,-0.23529935,-0.32333592,0.39773098,-0.086162664,0.4375945,0.15183316,-0.32025546,0.5396289,-0.13424735,0.93803406,0.045300215,-0.3469925,0.14589624,0.3363441,-0.030574663,-0.16746758,-0.42062807,0.86219674,0.35139504,0.0033434331,0.022649286,-0.42548797,-0.16157383,0.25895542,-0.2769291,-0.26343942,0.0053297975,-0.51212496,-0.28111526,0.23589264,0.18149734,0.23800832,-0.1451693,0.3784156,0.19943862,0.07036758,0.16943836,-0.52288204,-0.08249289,0.4849856,0.37202105,0.028946325,-0.011118789,-0.4639224,0.28939387,-0.52309644,0.04012795,-0.11492163,0.17654686,-0.14556392,-0.40048194,0.2392615,0.25393242,0.35780036,-0.33448777,-0.39780465,-0.35328278,0.55248195,0.18342185,0.12792401,0.45711198,-0.31141332,0.08321486,0.082837105,0.59730333,0.9347866,-0.16395463,0.082315505,0.43065393,-0.37839222,-0.6643949,0.4194484,-0.3154485,0.35666633,0.02688774,-0.12053167,-0.59699565,0.31408677,0.3704879,0.084472,-0.13009435,-0.3652879,-0.19408311,0.39691177,-0.22841424,-0.25519246,-0.45840153,0.052126188,0.46622673,-0.27488202,-0.34070864,0.09348485,0.25788617,-0.3461,-0.31680703,-0.16437665,-0.30734387,0.27573493,-0.13049866,-0.4172682,-0.3003627,-0.20647116,-0.41390717,0.21622084,-0.0070452243,-0.43775022,0.055215564,-0.29041734,-0.21426387,0.95658296,-0.35948744,0.019222012,-0.29691067,-0.5009979,-0.7173676,-0.37010908,0.12613277,0.13619865,-0.12269289,-0.57929677,0.14228702,-0.1651472,-0.32876694,0.10413747,-0.36670926,0.34670186,0.07622239,0.36041972,-0.06693222,-0.76557165,0.36068392,0.14406013,-0.21038824,-0.60496277,0.47199082,-0.034650028,0.8978706,0.033991236,0.15316005,0.3355504,-0.4256055,-0.1737554,-0.00978089,0.013202999,-0.8120989,0.18314576,421 +838,0.3006641,0.03711903,-0.48590174,-0.16693991,0.06052093,0.04349509,-0.20053726,0.4215006,0.42587027,-0.319959,-0.30871126,-0.45778835,0.1399073,0.39716807,-0.118234545,-0.7782378,0.13174076,0.07342293,-0.5162337,0.63652706,-0.43312514,0.4289168,0.23573445,0.36910298,0.062908895,0.29791585,0.36791185,-0.081186526,0.029949853,-0.19919734,-0.1166658,0.016780207,-0.47892806,0.030525846,-0.27140728,-0.34381056,0.09221992,-0.62195945,-0.5259876,-0.70916337,0.33042482,-0.81488544,0.5557601,0.25245303,-0.06007127,0.14288181,0.13285062,0.20180283,-0.3268602,0.0113055995,0.090792395,0.028389243,-0.036473546,-0.007400453,-0.52920485,-0.2614905,-0.57758254,-0.019794753,-0.42907083,-0.30985415,-0.319896,0.017171822,-0.25404707,0.121324874,-0.035519708,0.37106717,-0.39232135,0.16035068,0.28001943,-0.26897427,0.22302486,-0.5262124,-0.19515349,-0.24533717,0.2348553,-0.32388034,-0.2042054,0.2601927,0.33913818,0.38236752,-0.07032012,-0.112131365,-0.19462049,-0.09997296,0.081088856,0.6308121,-0.21216445,-0.4638482,-0.16035277,-0.075606845,0.15142466,0.3393961,0.19007917,-0.34691134,-0.131808,-0.23265533,-0.35584787,0.4058216,0.52245665,-0.35905048,-0.31209084,0.27732095,0.27379763,0.26581392,-0.07006886,0.024776498,0.032843437,-0.59673494,-0.16572598,-0.026181787,-0.18471648,0.7000871,-0.064154156,0.14279902,0.6662485,-0.100281596,0.053477466,-0.071221046,-0.14673358,-0.15839039,-0.22673185,-0.13772605,0.21495736,-0.39460966,0.2402935,-0.20117116,0.6840742,0.31239507,-0.53937215,0.39690694,-0.60302514,0.21572717,0.03313082,0.44197333,0.6289042,0.28299144,0.29082635,0.6011455,-0.40376493,0.10106465,-0.02288269,-0.24635458,0.083242886,0.011514981,-0.053685922,-0.4344903,-0.1616803,0.16014087,-0.23014146,0.5580008,0.39552972,-0.44456613,-0.05158106,0.029457768,0.89683455,-0.20589232,-0.19060123,0.80323404,1.0912075,0.83178276,-0.014978959,1.3249929,0.24107341,-0.2109565,0.11334888,-0.16267085,-0.78290766,0.06789906,0.30488807,-0.47392678,0.26976943,0.07711614,-0.13353743,0.20563471,-0.34950662,-0.019143483,0.07351423,-0.08280045,0.034866404,-0.22761959,-0.2514468,-0.28576833,-0.16099657,-0.029994385,0.31977215,0.27528626,-0.12607712,0.4250044,-0.08189497,1.2882236,0.07151619,0.0349528,0.040475354,0.46607184,0.42933175,-0.03955479,-0.14680867,0.31712583,0.4145325,0.0020340334,-0.55528086,0.09354039,-0.19889294,-0.26121065,-0.038851526,-0.35497245,-0.21126322,0.12622485,-0.2939038,-0.020183353,-0.09403503,-0.24964382,0.32141343,-2.9004667,-0.22328125,-0.1237421,0.3573973,-0.10635957,-0.16465805,-0.24734674,-0.48057154,0.5542613,0.30180633,0.55820036,-0.57573336,0.2584491,0.49532893,-0.6042782,-0.2700857,-0.56104374,-0.035825204,0.027555672,0.2909661,-0.074614316,0.2036374,0.16363983,0.3819377,0.45629978,0.24640441,0.12294976,0.21188849,0.5853485,-0.028347686,0.41267386,-0.11991344,0.63400036,-0.18127711,-0.20004743,0.21837896,-0.370316,0.386225,-0.34109357,0.03814618,0.39762935,-0.36394706,-0.83601564,-0.4317008,-0.42910644,0.8950953,-0.18738933,-0.2871723,0.28765616,-0.29286125,-0.25404242,-0.07190783,0.9566204,-0.22948404,0.0850715,-0.68205327,-0.10320866,-0.023989573,0.19566838,0.055460382,-0.10339906,-0.4657003,0.5696243,0.020111052,0.4833363,0.3489875,0.121428706,-0.26932123,-0.5978493,0.20313956,0.93175673,0.22039665,0.19998603,-0.17045969,-0.1703093,-0.4495804,-0.068074234,0.06653298,0.61442137,0.46198186,-0.08112864,0.15109593,0.3008441,0.32866707,0.04856545,-0.08527724,-0.30774447,-0.032340225,-0.13450356,0.5448152,0.8449642,-0.36035,0.2291012,0.00024753343,0.4500247,-0.21119313,-0.47094774,0.73294854,0.8926013,-0.044921756,-0.1157128,0.5742247,0.34270915,-0.19501781,0.43924376,-0.50275415,-0.23549491,0.5580327,-0.089874364,-0.37219775,0.36836156,-0.20538878,-0.10915405,-0.9056389,0.25729764,-0.13157831,-0.12795849,-0.30305478,0.057861436,-4.1829047,0.046173353,-0.22587554,-0.23969108,-0.26251075,-0.06670704,0.06506271,-0.38455772,-0.696958,0.27227625,0.038449854,0.6024299,-0.27952766,0.18652473,-0.22064061,-0.22349168,-0.3091612,0.17612024,0.06560641,0.4050009,0.017042384,-0.40970668,-0.1611286,-0.10044994,-0.5892608,0.14208661,-0.49454522,-0.20675613,-0.1779656,-0.7364123,-0.15635398,0.73083496,-0.34687924,0.014821082,-0.22099257,-0.025965473,-0.17408828,0.23615919,0.2838288,0.19391806,-0.099855654,0.049404938,0.047852665,-0.09952211,0.35730043,0.24322219,0.20353746,0.20539403,-0.029884165,0.14469038,0.28783348,0.6295168,-0.101479255,0.7712055,0.35548273,-0.046290804,0.26443005,-0.2577341,-0.24178724,-0.55543286,-0.28784502,-0.09036163,-0.30840117,-0.65006363,-0.2016492,-0.30924007,-0.6963766,0.345373,0.07667586,0.13025013,0.05023709,0.06153378,0.3041465,-0.2257965,0.12149406,0.07055224,-0.013399561,-0.4391658,-0.12309507,-0.55575603,-0.3409494,0.3455243,0.6674202,-0.22369711,0.048125025,-0.0117563745,-0.12568106,-0.046177585,0.19488658,0.1498775,0.20456667,0.4194218,-0.12679733,-0.6031721,0.5276617,-0.19774397,-0.4336563,-0.760122,0.2557837,0.5523604,-0.7234724,0.75907737,0.3640891,-0.060372617,-0.12011305,-0.46810094,-0.36044577,-0.04271615,-0.082067855,0.18836771,0.14567617,-0.69118625,0.29109433,0.120233715,-0.2570332,-0.6633069,0.72343904,-0.079763226,-0.45650116,0.048160106,0.36239052,-0.04552408,-0.038545694,-0.17805599,0.16369547,-0.2544447,0.21155381,0.21628666,-0.076781146,0.49390182,-0.17668597,-0.058100987,-0.7710008,0.18126988,-0.4610599,-0.16077414,0.10587881,-0.016782552,0.0928468,0.10734322,0.059909463,0.17983238,-0.18084443,0.21445668,0.013964285,-0.21468814,0.35327852,0.335255,0.5768648,-0.24698128,0.63224345,-0.061019078,-0.111937605,0.22182511,0.24740012,0.35816967,-0.021157106,0.30775318,0.18927689,-0.3007606,0.10905069,0.62203246,0.14315337,0.060504425,0.33156547,0.016178856,0.36377835,0.11339363,0.002413607,0.14614101,-0.5843785,-0.14298598,-0.34737274,0.088848,0.45482412,0.1768146,0.12968771,-0.14250916,-0.54422766,-0.048605938,0.2864438,0.29428473,-0.9929301,0.17873871,0.06883578,0.71397257,0.4820136,0.102188975,-0.12582992,0.40162173,-0.102916785,0.20625223,0.28705612,-0.016065983,-0.4959365,0.5761228,-0.45965552,0.67613727,0.1162622,-0.011186537,0.07133666,-0.08409411,0.21273454,1.0931908,-0.14665976,0.03908459,0.045700505,-0.16337545,0.09780896,-0.53999734,0.009824793,-0.36294666,-0.36451873,0.75241774,0.35478342,0.13830306,-0.19236839,-0.03616123,-0.0214035,-0.124792,-0.13828665,0.03327547,0.20325382,-0.14924553,-0.7178295,-0.12846683,0.5732673,-0.16004519,0.097891726,0.0057589025,-0.19504671,0.30242833,-0.23974375,0.020026492,-0.11491404,-0.95505005,-0.12040484,-0.41055062,-0.3112228,0.29368275,-0.22188966,0.3790647,0.15290096,0.025066068,-0.2469464,0.69199306,0.07270222,0.7541997,-0.07805318,-0.16740651,-0.2589397,0.21970946,0.24548332,-0.22139935,0.017355464,-0.2591389,0.07475852,-0.44866154,0.42785537,0.094929196,-0.27663627,-0.14900061,-0.09021034,0.08516124,0.50455546,-0.12102225,-0.13580133,0.09116777,-0.2328579,-0.33887455,-0.056156006,-0.0770651,0.20082025,0.3940648,0.01838406,-0.06375743,-0.13716206,-0.12938237,0.17695726,-0.03388879,0.42129362,0.2558541,0.3308091,-0.1984818,-0.026302397,0.13586678,0.42905334,-0.0107509345,-0.12957035,-0.13774605,-0.5300775,-0.43021205,0.13595806,-0.13692683,0.3863761,0.106978394,-0.059486687,0.4607451,0.15417945,0.7997218,-0.00831614,-0.41940644,0.22482233,0.43782067,0.04745853,-0.2483862,-0.18757184,1.1533794,0.45761076,-0.059749704,-0.21848758,-0.12825309,0.026067153,-0.10231402,-0.24630593,-0.23253739,-0.051166583,-0.55193007,-0.07568375,0.14017843,0.28289452,0.41443935,-0.09479848,0.19431585,0.21669276,0.15288614,0.17821486,-0.7411461,-0.31476948,0.4105126,0.205557,0.11023811,0.16744912,-0.3737605,0.46240056,-0.37248802,0.076297544,-0.3668425,0.07624469,-0.32282126,-0.27650264,0.20787726,0.009900428,0.49910092,-0.4091781,-0.26747277,-0.48801443,0.3147692,0.16682953,0.22887324,0.6503103,-0.115021534,-0.049428344,-0.059758414,0.7009225,0.99728173,-0.16438179,-0.13724762,0.4632454,-0.4524599,-0.4343078,0.16346927,-0.4494451,0.17687605,-0.08284851,-0.0051694117,-0.5415231,0.104500614,-0.13516437,0.14521927,0.17844094,-0.73691624,-0.32087168,0.21480119,-0.16325879,-0.35045096,-0.5265897,0.1682623,0.70944005,-0.09263611,-0.18084757,0.25756308,0.015826354,-0.15384157,-0.7449599,-0.026993096,-0.1918151,0.3917303,0.13787618,-0.22709364,-0.07348836,0.05387071,-0.43483993,0.25927225,-0.06867989,-0.33693206,0.048285082,-0.36073866,-0.28255698,1.0315589,-0.3365477,0.06055669,-0.5051768,-0.5718051,-0.65518165,-0.5160827,0.62706107,0.058515895,-0.10687586,-0.5849489,-0.12820615,-0.1270197,0.1222535,-0.01008596,-0.11557368,0.41198516,0.07176565,0.4884572,-0.14190024,-0.9059295,0.15381323,0.0848755,-0.30800465,-0.70800096,0.3362942,0.09420872,0.72040826,0.0857295,-0.12732418,0.6150508,-0.47810593,0.03289619,-0.3458779,-0.025008053,-0.4782864,0.24480808,426 +839,0.40313807,-0.4503812,-0.38844034,-0.20038478,-0.3545233,-0.119619876,-0.18417384,0.3913255,0.40901175,-0.16982375,-0.22456543,-0.14937979,0.08076143,0.6196217,-0.19780298,-0.60329866,-0.20551904,0.138492,-0.8246326,0.53446615,-0.579121,0.101569176,0.02843109,0.6478316,0.12279434,0.0920192,0.2629954,0.023943752,0.12672399,-0.09586834,-0.09707453,0.4574871,-0.70040256,0.07430432,-0.2637898,-0.3693298,-0.13347577,-0.54094523,-0.28031406,-1.0656953,0.24390234,-1.1174997,0.60023075,-0.111219965,-0.28442678,-0.1362903,0.5518201,0.4359231,-0.45392978,-0.012186043,0.23895387,-0.29104626,-0.19472325,-0.23253757,0.010543197,-0.50906724,-0.6998516,-0.08934671,-0.5517542,-0.34232256,-0.26548368,0.33494052,-0.3799999,0.025631694,-0.21881811,0.5900088,-0.38934875,-0.05183484,0.42359623,-0.1304944,0.565099,-0.5456267,-0.0460151,-0.14856197,0.41111338,0.06099065,-0.53577584,0.40165827,0.49300894,0.11003544,0.17293413,-0.30406168,-0.28162715,-0.027282774,0.01845328,0.3036741,-0.25402394,-0.5285287,-0.1444932,0.16151504,0.4114213,0.6970537,0.07604602,-0.238355,0.040963117,0.05689111,-0.073208265,0.88245577,0.57259744,-0.13730653,-0.50034237,0.2116701,0.60583377,0.2140301,-0.31717524,0.05931821,0.076154366,-0.7164753,-0.06952574,0.2975799,-0.19115347,0.5096072,-0.25031146,-0.02548325,0.9566615,-0.27554515,-0.29109335,0.084369265,0.09312507,-0.24577975,-0.27905026,-0.32658496,0.36556473,-0.5030317,0.07565407,-0.42058828,0.7619781,0.07586919,-0.74905825,0.14402258,-0.7234084,0.26216128,-0.014766593,0.7035869,0.9434468,0.63138884,0.70557183,0.88207906,-0.04046495,0.23905085,0.037139546,-0.40631446,0.1544017,-0.5869985,0.14250204,-0.56489515,0.053979266,-0.24568802,0.026531557,0.15309107,0.58812875,-0.7081876,-0.2576472,0.23600312,0.68692714,-0.25461793,-0.15271406,0.7737184,0.88256335,1.1300414,0.10762579,1.1642538,0.44639525,-0.17281811,0.25318143,-0.20297277,-0.803566,0.30374566,0.281299,-0.68222475,0.31552956,-0.23217273,-0.004525905,0.23089129,-0.64391834,-0.034815338,0.01549852,0.38401818,0.290167,-0.1831367,-0.47550353,-0.12888806,-0.12515639,0.0076059154,0.201997,0.24929135,-0.24945356,0.5132933,-0.09757928,1.3239901,0.046651583,0.055247784,0.065776326,0.6324517,0.27919987,-0.058321446,0.0691741,0.381826,0.44471478,0.2419982,-0.5923167,0.31591424,-0.23521398,-0.37457785,-0.1289769,-0.4834052,-0.058286086,-0.012389779,-0.3497331,-0.31758234,-0.22219075,-0.10986104,0.45650733,-2.5666063,-0.25712317,-0.025025347,0.31138313,-0.23312749,-0.14945512,-0.15582682,-0.7108753,0.4531381,0.3511833,0.52480966,-0.6511806,0.38326105,0.50899655,-0.72029537,-0.16159871,-0.98089606,-0.2832177,-0.082864255,0.52821594,0.09111861,-0.18859096,-0.006052756,0.32148233,0.8617652,0.1559711,0.2243375,0.6172499,0.6169949,-0.104166925,0.86521626,-0.13948755,0.47083005,-0.43367946,-0.2876034,0.25915226,-0.4419056,0.16642551,0.0066803196,-0.069283344,0.8995505,-0.51536024,-1.3003627,-0.49965724,-0.12761463,0.91463304,-0.49375868,-0.57528496,0.24754083,-0.33658385,0.01784687,0.033235412,0.84300685,-0.11825784,0.20780669,-0.7933542,-0.033902675,-0.024589172,0.27402988,0.042894695,-0.1310512,-0.33369875,0.69589525,-0.09967188,0.42577282,0.109214075,0.11877948,-0.8309863,-0.68476933,0.09529742,0.78530526,0.28966105,-0.115754165,-0.18787716,-0.39354602,-0.11814954,-0.22424872,-0.1047484,0.7721477,0.7229247,-0.1727913,0.28996205,0.47669482,-0.27694222,-0.107676454,-0.33574653,-0.28817227,-0.18869591,0.08210551,0.66978407,0.87069035,-0.20386137,0.77920073,-0.20523976,0.35944238,0.041090798,-0.59287804,0.7724204,0.8780701,-0.1437539,-0.11277174,0.5674339,0.49709812,-0.41219243,0.5727278,-0.53677636,-0.3817784,0.76873416,-0.24290186,-0.64697224,0.19359465,-0.29419506,0.075520635,-0.7875745,0.2504642,-0.38478163,-0.35735145,-0.63463384,-0.10754921,-3.10011,0.21113782,-0.10139779,-0.23293985,-0.52491933,-0.16054727,0.177161,-0.66468924,-0.70033073,0.1860985,0.2862518,0.6610204,-0.18342014,0.15542673,-0.3804771,-0.08631915,-0.13335897,0.3171949,0.29792917,0.37960878,-0.0743075,-0.46178904,0.04368347,0.023279516,-0.6676635,0.112330765,-0.7293741,-0.5685058,-0.089901276,-0.7492421,-0.38694045,0.72808313,-0.4647968,-0.11987919,-0.28371117,0.2358848,0.16334467,0.3135879,0.13866241,0.26693165,0.22331555,-0.13223106,0.124432385,-0.09734646,0.42889297,-0.17499463,0.2451735,-0.006427283,-0.122188866,0.3509936,0.5593595,0.8496337,-0.15995397,1.1896195,0.6054829,-0.0040116482,0.15821867,-0.24487518,-0.35197592,-0.720071,-0.17673309,-0.16213088,-0.49411345,-0.33710727,-0.035824556,-0.30292043,-0.7865111,0.93397903,-0.017237728,0.34448043,-0.116618305,0.3325762,0.5554026,-0.16470863,0.11058563,-0.10425662,-0.24961787,-0.5084821,-0.1991949,-0.48184657,-0.677392,-0.17970896,0.8917689,-0.3271208,0.04897702,-0.14355788,-0.27802533,-0.06990502,0.24059387,-0.059750292,0.43127835,0.56706315,-0.007922833,-0.7511628,0.3722502,-0.024964178,-0.104614414,-0.74084574,0.40303087,0.78518075,-0.7906795,0.7445688,0.19272192,-0.05941397,-0.5060443,-0.6651411,-0.25702706,0.031490196,-0.11065915,0.5474581,0.1304987,-0.89082456,0.6882758,0.4480455,-0.6222276,-0.68863875,0.24884641,-0.19700246,-0.43851808,-0.033207797,0.29311383,0.1702624,0.07271131,-0.41262445,0.31450644,-0.39973202,0.14757508,-0.01319322,-0.047136564,0.38887823,-0.17999242,-0.2437545,-1.0323507,0.1871938,-0.62231755,-0.44316742,0.426386,-0.0023526002,-0.1646353,0.36262754,-0.17824419,0.31200972,-0.15345985,0.10559202,-0.14271021,-0.38945803,0.21697104,0.559004,0.32097557,-0.4759272,0.7188824,0.20203269,-0.343091,-0.065010056,-0.086908825,0.2935695,-0.054303348,0.57819086,-0.20250721,-0.25700602,0.40568328,0.6997799,0.015320365,0.6529176,0.046617907,0.06821527,0.29490992,0.014114599,0.2776979,-0.19801772,-0.58133614,0.16890936,-0.37118506,0.14165601,0.56170434,0.24232495,0.35690507,0.17730153,-0.24595912,-0.03492464,0.27851674,-0.04815604,-1.6614476,0.44181016,0.3660957,1.0593079,0.4292195,0.1225098,-0.027475381,0.92529327,-0.2692498,0.012343925,0.58274835,0.20681651,-0.32262692,0.91663057,-0.87068844,0.41979793,-0.24238144,0.022740424,-0.013347837,0.327004,0.4738458,0.88523865,-0.22439174,0.036584787,-0.09795693,-0.09390473,0.31306353,-0.47840914,0.14385004,-0.29713145,-0.5074065,0.6438685,0.36926386,0.50880605,-0.19923155,-0.023219155,0.07900085,-0.1662514,0.28669295,-0.09647102,-0.21463574,0.07113417,-0.63220406,-0.01261736,0.6364827,0.16893859,0.18732445,-0.19098113,-0.13144611,0.16669603,-0.18871953,-0.020406261,-0.11969352,-0.88947815,-0.1164907,-0.2072498,-0.55880564,0.7893183,-0.46957552,0.09517092,0.25963125,-0.010084261,-0.25764772,0.078731656,0.14157693,0.94801205,-0.019236708,-0.26750562,-0.24404915,0.05851658,0.13052498,-0.34351906,0.08730956,-0.4127083,-0.09561926,-0.38737187,0.58942443,-0.12664104,-0.6872197,0.10315021,-0.17142832,-0.03988422,0.6111124,-0.063307546,-0.07860358,-0.089194596,-0.41692758,-0.25609526,-0.19951351,-0.17710279,0.36721393,0.2393203,-0.057582293,-0.17295583,-0.07220588,-0.1529954,0.6911566,-0.19505446,0.49315813,0.41026223,0.32553008,-0.032414626,0.1565247,0.20502484,0.69755125,0.2746748,-0.11576951,-0.43327084,-0.39249966,-0.26932752,-0.03158356,-0.08170659,0.36491212,0.013644591,-0.43139789,0.94136924,-0.036384568,1.3437909,-0.022475548,-0.51643205,0.12255031,0.55147177,0.041787084,-0.042528585,-0.48707774,0.7782392,0.50153774,-0.0972004,0.1489899,-0.60334986,0.06979678,0.5200829,-0.39329365,-0.2603736,-0.11682612,-0.5280369,-0.38973996,0.2694055,0.18175316,0.22398424,-0.2335363,-0.07521615,0.14031558,0.016245976,0.53952754,-0.45016274,0.0323112,0.11673234,0.4376779,-0.048003603,-0.021927029,-0.4315907,0.3016579,-0.5332986,0.30213904,-0.63236624,0.3049269,-0.28706503,-0.29390103,0.14337488,-0.07087726,0.4623493,-0.08400708,-0.32712424,0.020910004,0.55630815,0.29147887,0.12624799,0.6863323,-0.28740373,-0.0044869557,0.16835235,0.58870804,1.4422178,-0.73298097,-0.031532988,0.24073581,-0.45532617,-0.7637794,0.744384,-0.29757264,-0.020746192,-0.0030340205,-0.5123338,-0.35852286,0.16538198,0.17403616,0.2943287,-0.16319413,-0.4969519,-0.17290811,0.49186638,-0.28094202,-0.15198165,-0.3877512,0.4572042,0.61550266,-0.17743821,-0.5048075,0.07138535,0.3364917,-0.2219999,-0.5183373,-0.07882441,-0.2967185,0.38632992,-0.0028115276,-0.33796015,-0.011685133,0.121021785,-0.69053674,0.1029641,0.02853325,-0.34228548,0.17388006,-0.24943167,-0.051651824,1.0243894,-0.45809212,0.006139969,-0.684194,-0.5022936,-0.9566024,-0.21526338,0.2788201,0.05999953,0.041336957,-0.6339918,-0.09393164,-0.057074185,-0.37508568,0.044650078,-0.55025536,0.39724755,0.12576462,0.497818,-0.29102194,-0.8474795,0.23632812,0.16726351,-0.047324717,-0.6650663,0.71865493,-0.1397196,0.81869936,0.014397167,0.13649784,0.18807583,-0.38209605,0.021854855,-0.26777756,-0.18203847,-0.85051996,-0.09696373,428 +840,0.32783356,-0.14121215,-0.80863315,-0.19212647,-0.34795097,-0.07910989,-0.4074962,0.13533454,0.40132746,-0.052700203,0.07182936,-0.09848285,0.033634033,0.52881104,-0.05934388,-0.91293436,-0.046712816,0.10141548,-0.7183413,0.5371384,-0.4738265,0.26756778,-0.3278687,0.5458364,0.2696471,0.25678626,-0.010623217,0.038536977,-0.082148604,-0.040225834,-0.17303903,0.3603249,-0.4349996,0.17099996,0.021018812,-0.28511444,-0.05854169,-0.2940679,-0.20786373,-0.7498687,0.35422418,-0.599468,0.6551707,-0.0861497,-0.374282,-0.092389785,0.30001888,0.38395348,-0.2988533,0.17016329,0.17996442,-0.25259998,-0.055832703,-0.1935,-0.4781233,-0.5321174,-0.6042631,-0.046075106,-0.8089991,-0.17027377,-0.21082897,0.2841814,-0.3348248,-0.17391771,-0.22513752,0.51341313,-0.3676982,0.17876285,0.27788952,-0.06210458,0.31988743,-0.4927437,-0.18678685,-0.11103027,0.37060586,-0.13294423,-0.4747287,0.25500885,0.4045259,0.28762245,0.09757918,-0.15548514,-0.29357305,-0.27519137,0.13163574,0.32066408,-0.089924656,-0.3868716,-0.34426594,-0.076472886,0.10768827,0.37247518,-0.064368255,-0.44898593,0.119787075,0.011776105,-0.048912365,0.5294847,0.37081003,-0.14151146,-0.4179039,0.27759323,0.3548975,0.22121316,-0.2022749,0.2624067,0.042073894,-0.4950552,-0.18733983,0.0967258,0.20165019,0.46898606,-0.06897301,0.31045088,0.6583452,-0.26553956,-0.1700495,-0.1349352,-0.07021574,0.009882431,-0.46192098,-0.18139331,0.06772641,-0.65643185,0.10357078,-0.18628877,0.5197167,0.07012891,-0.742888,0.2793183,-0.75954914,0.10718425,-0.045367163,0.6519857,0.9700165,0.4335269,0.2429489,0.76040655,-0.3544793,0.17149138,-0.024131685,-0.4177054,0.13148502,-0.08011644,0.1541066,-0.6389793,-0.14074285,0.0339983,-0.085521124,0.14883637,0.4091312,-0.57632875,-0.022076374,-0.045897532,0.71886325,-0.3810853,-0.11697819,1.0375754,1.1372632,1.0297323,0.03720804,1.3015872,0.34499952,-0.17563593,0.052936535,-0.23408179,-0.4233035,0.26103553,0.07893294,-0.33123174,0.47503698,-0.03891887,0.022205437,0.482114,-0.28800085,-0.08352488,0.09184656,0.26378372,-0.001402835,-0.2085286,-0.3339161,-0.25736594,0.1363455,0.045602545,-0.086301126,0.38029456,-0.26127,0.6127019,0.035428327,1.2689477,0.05054004,0.08683408,-0.1682371,0.46989822,0.23378591,-0.276758,-0.20536333,0.3218254,0.35840544,0.118543774,-0.5822745,0.014700632,-0.3425587,-0.32784572,-0.29469863,-0.4418123,-0.016462406,-0.3535439,-0.28125682,-0.17131619,0.021306323,-0.22044908,0.46070996,-2.676391,-0.2360789,-0.19736208,0.17743045,-0.07056721,-0.25730228,-0.1457852,-0.41004407,0.40883872,0.30990574,0.3471965,-0.45661506,0.48159358,0.47528902,-0.47709003,-0.15783225,-0.6742069,0.027180491,-0.048965532,0.32812056,-0.23635195,-0.0008553763,0.0053429133,0.25677904,0.6106294,-0.0608898,0.10561796,0.19915096,0.3637123,-0.023312578,0.47551313,0.05788344,0.66416603,-0.29572818,-0.18921797,0.29235217,-0.3539333,0.2916441,0.08081878,0.0595813,0.5803261,-0.56631553,-0.9653823,-0.5356793,-0.21900551,0.9645334,-0.31985566,-0.39184716,0.3405273,-0.3268158,-0.33022586,0.04582077,0.47199544,-0.056669395,0.10639358,-0.7479449,0.043334797,-0.013608803,0.22411604,-0.08587766,0.08036217,-0.4970862,0.3891109,-0.09468863,0.35795784,0.44308516,0.1675445,-0.44350263,-0.50457406,0.16587518,0.74915767,0.35848716,0.04785494,-0.14442939,-0.23252022,-0.16672574,-0.13064939,0.17319883,0.5796159,0.5799404,-0.070323385,0.29777256,0.33007726,-0.35913953,0.23153548,-0.13852699,-0.26289776,-0.068057254,0.27179787,0.56644183,0.6911908,0.11036533,0.6571892,0.05011657,0.17206798,-0.22877991,-0.6135851,0.63529724,0.9071357,-0.16652237,-0.41033086,0.6360393,0.42074904,-0.4060916,0.48527423,-0.33583546,-0.10451286,0.65632236,-0.16652803,-0.49692246,0.09632966,-0.2729173,0.040722,-0.9804418,0.20654249,-0.13787948,-0.80002016,-0.4343575,-0.026367769,-4.0432043,0.14341669,-0.2578001,-0.23617043,-0.1524966,-0.22651494,0.38600788,-0.46607995,-0.75410074,0.06513911,0.12757947,0.6309246,-0.22562988,0.015572533,-0.20652507,-0.31957218,-0.2740157,0.33741602,0.16000195,0.24625237,-0.05855288,-0.4119468,-0.017156659,-0.17783737,-0.64826506,-0.011878227,-0.45770562,-0.38812736,-0.052333966,-0.73540825,-0.18964799,0.8001767,-0.29297945,-0.159379,-0.37180722,-0.02850095,0.022039192,0.4277371,0.15493353,0.29645786,0.33116713,-0.02913248,-0.16053666,-0.19878499,-0.01063924,-0.043403387,0.22735365,0.26103184,-0.020051053,0.441378,0.42901823,0.74260616,-0.05823512,0.8365585,0.25534785,-0.09904013,0.34746668,-0.5012847,-0.41101936,-0.524951,-0.3950273,-0.20494771,-0.44079807,-0.5607094,-0.27726483,-0.36752465,-0.8299308,0.53239775,0.1297111,0.33141723,-0.22749883,0.22775328,0.23253055,-0.19481586,0.030673137,-0.19806664,-0.15283649,-0.45580444,-0.2537384,-0.6134386,-0.68332815,0.2117595,0.9838149,-0.33960596,-0.0019441334,0.10899782,-0.4545795,0.04942509,0.49985766,0.27416882,0.33193362,0.3503677,-0.050931826,-0.6518693,0.30893633,-0.1495343,-0.15174171,-0.6846681,0.09386295,0.9361908,-0.66629946,0.6226519,0.38420382,0.16632754,-0.24691863,-0.45582283,-0.19503753,0.15279539,-0.26345634,0.661809,0.38619804,-0.75721234,0.3822012,0.1014493,0.00047030053,-0.5865264,0.5708697,-0.07023962,-0.1763205,0.19321321,0.4313849,0.031697903,-0.10726962,-0.1952526,0.3856096,-0.2427668,0.2171429,0.22794133,-0.07317657,0.37049222,-0.0775599,-0.34033167,-0.7097232,-0.018632168,-0.6203138,-0.34624735,0.18059595,0.08274726,0.22479863,0.1814472,-0.029686704,0.2927879,-0.3867782,0.13515331,-0.17241216,-0.29039624,0.04533476,0.49938145,0.3343561,-0.5976079,0.6287923,0.1391457,-0.03160136,0.100563735,0.10550579,0.5014077,0.01937717,0.7612756,0.005374814,-0.2660673,0.24262583,0.74584395,0.13235384,0.47545874,0.13051736,-0.13250698,0.18055618,0.120205045,0.22911851,0.07613311,-0.15981276,-0.013152045,-0.21364002,0.25222918,0.5344222,0.10090735,0.35634816,0.0064708665,-0.21687436,0.30927572,0.15903954,-0.08656976,-1.4199991,0.58130056,0.4996511,0.71566063,0.5973009,0.22548616,-0.050321043,0.48132542,-0.30736747,-0.08008341,0.48234165,0.17783333,-0.4672083,0.70168227,-0.6512381,0.5960906,-0.074226476,-0.07115138,0.14889084,0.105940394,0.5025947,1.1180955,-0.14519116,0.21888232,0.14950027,-0.19668572,-0.011799921,-0.26002213,-0.06672376,-0.57507324,-0.35438752,0.7253851,0.41156888,0.2810956,-0.23916064,-0.16181423,0.22255497,-0.11861787,-0.062884085,-0.12597425,-0.008353104,-0.2467748,-0.5864132,-0.31496412,0.45590016,-0.16618407,0.11709121,0.089841045,-0.22108977,0.22022486,-0.12920593,0.0400022,0.04216826,-0.6874168,-0.04084873,-0.34783402,-0.54106456,0.56528366,-0.62729186,0.29337063,0.28343946,0.17687334,-0.34098253,0.51026016,0.023333317,0.7593424,0.040779304,-0.0808644,-0.06421036,0.16079135,0.3942795,-0.30746332,-0.20880377,-0.36665273,0.11491597,-0.6098087,0.40220198,-0.027266553,-0.42068088,-0.07097267,0.05204979,0.13978635,0.40854517,-0.17363025,-0.20572267,0.14697504,-0.13496771,-0.25891685,-0.26091745,-0.272779,0.3264427,0.03389463,0.100259,-0.094520666,0.04531299,-0.0802479,0.3550277,0.08833325,0.2752458,0.35165584,0.07781742,-0.16709392,-0.04694299,0.0063373647,0.45983467,0.14776237,-0.023548925,-0.13797532,-0.16249143,-0.33377767,0.33202097,-0.1809064,0.15135454,0.09683933,-0.47037062,0.8131544,0.20051564,1.2900367,-0.041328803,-0.4692192,0.2665235,0.35431468,-0.021631598,-0.02515187,-0.25962743,1.0712386,0.5746929,-0.18349732,-0.21015687,-0.56518674,-0.3646543,0.18000674,-0.3589141,-0.26288384,-0.13262533,-0.5899952,-0.10408121,0.2997261,0.16402988,0.16383314,-0.06307875,0.06507603,0.19862658,0.10558987,0.26678622,-0.6251959,0.111685395,0.29302707,0.37460145,0.027472207,0.13161021,-0.30411157,0.43364868,-0.64978933,0.21880513,-0.4326372,0.17248897,-0.3135475,-0.36426446,0.19053693,0.07938557,0.18393476,-0.12586592,-0.16406976,-0.38272485,0.71393937,0.14832516,0.19080073,0.8419624,-0.31618384,0.014650375,-0.02779339,0.3318117,1.0989479,-0.12514763,-0.26549426,0.31511527,-0.36812493,-0.72774357,0.19081752,-0.50512147,0.24134856,-0.021529237,-0.4186209,-0.31904668,0.17198877,-0.07525108,0.04243059,-0.1392061,-0.49497938,-0.083098896,0.26182362,-0.1814149,-0.32561448,-0.3397467,0.26222888,0.7223576,-0.32222047,-0.410249,0.043317214,0.3474786,-0.23383565,-0.5152723,0.12445328,-0.008263677,0.46622476,0.0510038,-0.39125454,-0.022102779,0.2561036,-0.4459417,-0.025629679,0.3542225,-0.19489424,0.18206233,-0.20099163,-0.30744195,1.0864341,-0.29313496,0.27686736,-0.58040965,-0.63051766,-0.84893703,-0.22631018,0.008117378,0.1493285,0.006884247,-0.6747535,0.14377165,-0.049433004,0.0011016031,0.14686094,-0.4896609,0.4131324,0.05173758,0.46697333,-0.10091462,-1.0797492,0.09833535,0.27927816,-0.2912254,-0.7106897,0.7075146,-0.31203702,0.6647506,0.16990499,0.22796382,0.25836775,-0.5926882,0.3048477,-0.18746763,-0.1674012,-0.685689,-0.05814408,442 +841,0.42296317,-0.052017223,-0.70880556,-0.03987619,-0.2345366,0.03712285,-0.24867964,0.580204,0.2869381,-0.4309534,0.029281782,-0.2975029,0.16177149,0.38377714,-0.025805587,-0.60385567,0.031196913,0.15334423,-0.58623683,0.5039192,-0.527541,0.3291439,0.23556478,0.21014036,-0.07312775,0.30452457,0.14180307,-0.27963218,-0.08210889,-0.17845489,0.022809312,-0.11499723,-0.6193334,0.17271858,-0.16647576,-0.27224028,0.18142955,-0.51511174,-0.2308327,-0.4553407,0.15757404,-0.7762229,0.44677982,0.14088723,-0.20987451,0.23751032,-0.07940657,0.30716205,-0.1379193,-0.03957927,0.18104608,-0.22877403,-0.46090093,-0.26894933,-0.19782679,-0.36300078,-0.65360874,-0.091828674,-0.5714206,0.009745588,-0.2974775,-0.09713483,-0.27861264,0.16696973,-0.00861762,0.02437373,-0.3418609,0.1400578,0.1369365,-0.23488365,0.11577002,-0.3566105,0.016029526,-0.036687598,0.31408733,-0.026226776,-0.18821818,0.36518797,0.24988787,0.49715194,-0.14570595,-0.0005223602,-0.25854912,0.011046323,0.103446476,0.64709824,-0.11407358,-0.22542489,-0.10003719,0.062954314,0.20090628,0.25248533,0.009563297,-0.19572203,-0.024902822,-0.08901552,-0.5400229,0.29990235,0.42078137,-0.3526781,-0.056800764,0.49668908,0.32054573,0.14930303,-0.11185545,-0.018257113,-0.04366648,-0.51725477,-0.16685532,0.05501124,-0.17417979,0.5007505,0.0196096,0.24089873,0.6007379,-0.12271532,-0.069117665,0.009928332,-0.06064483,0.02551321,-0.065887615,-0.09636378,0.29542252,-0.56026167,-0.17394502,-0.31972152,0.8313172,0.07452961,-0.93030024,0.45374337,-0.52306324,0.0094038285,-0.116275914,0.56244797,0.67217296,0.6663955,0.08268163,0.7604075,-0.6298675,0.15243433,-0.1845063,-0.5280841,0.46119216,-0.0010933504,0.29339278,-0.41857782,-0.100802936,0.27454266,-0.19766064,0.2777175,0.5185521,-0.41787782,-0.16449234,0.04928915,0.6023001,-0.31367722,-0.23204128,0.55674654,1.1806499,0.64042044,0.12428533,1.0957137,0.23502183,-0.18472119,0.1827334,-0.23042436,-0.8597725,0.13951705,0.26565143,0.050370097,0.272072,0.20354323,-0.14570187,0.29623893,-0.050092507,-0.09547899,0.100717865,0.32683447,-0.15579735,-0.18653363,-0.2549049,-0.4419055,0.018701242,0.00907598,0.103553504,0.5294815,-0.17205675,0.4783894,0.05814593,1.7457167,0.15224421,0.20723684,-0.03203569,0.38097063,0.2059433,-0.16095321,-0.31497797,0.34146252,0.26475415,0.09137287,-0.44297266,0.024933686,-0.13638616,-0.48184153,-0.044800628,-0.38507438,-0.030590782,-0.14984265,-0.23388696,-0.11599362,-0.023696415,-0.38635072,0.4756768,-2.915374,-0.16136265,-0.05658439,0.4538701,-0.16895944,-0.26530394,-0.16482499,-0.475304,0.31039384,0.34071663,0.5150088,-0.5434322,0.3452928,0.3685336,-0.5994572,-0.1474322,-0.60188156,0.06910961,-0.09612429,0.2348011,-0.10146699,-0.17021419,0.05776051,0.06663843,0.38509092,-0.06542458,0.05122673,0.35039982,0.6096911,0.17204493,0.50980514,-0.25053707,0.5921955,-0.39856216,-0.114972435,0.10574273,-0.3024095,0.38682786,-0.19743252,0.16279452,0.26834735,-0.32763898,-0.8646838,-0.25001144,0.065545805,1.1257414,-0.5098559,-0.2572073,0.26650274,-0.107820295,-0.27542827,-0.103215866,0.6516002,-0.04621954,-0.14038442,-0.579465,-0.020202776,-0.046209678,0.19528417,0.013157298,0.047408123,-0.32949343,0.5505418,0.109209895,0.67475575,0.3718406,0.010927807,0.01560162,-0.18423288,0.27496347,0.8864808,0.14108694,0.29062274,-0.24524494,-0.070943974,-0.3275832,-0.09906969,0.07500297,0.41890118,0.51650745,-0.030999178,0.08773434,0.28478086,-0.1588686,-0.028280007,-0.05352914,-0.4059545,-0.10432277,-0.1631476,0.5531573,0.9384963,-0.10967841,0.35810325,0.06326332,0.23668022,-0.24692816,-0.544076,0.567643,0.41628662,-0.105832696,-0.020105114,0.49189663,0.598533,-0.20876616,0.48630503,-0.4411644,-0.4873689,0.41379666,-0.1100199,-0.39484942,0.44575164,-0.21424349,0.11337263,-0.8371268,0.10123753,-0.2544264,-0.49014947,-0.40757465,0.16419573,-3.301053,0.22196639,-0.06776908,-0.25212917,0.023383088,0.118308835,0.16780673,-0.44952753,-0.41805875,0.19315831,0.24023162,0.6397651,-0.053516556,0.059886903,-0.3867544,-0.42280138,-0.21094382,0.16819459,-0.0090993,0.19257389,0.03392138,-0.46939826,-0.12568347,-0.2636378,-0.13217005,0.10938772,-0.51369643,-0.3113126,-0.08860776,-0.36936966,-0.46556982,0.6832726,-0.4746485,-0.125174,-0.07322814,0.010319288,-0.0028116603,0.18390198,-0.20908375,-0.10216906,-0.059227377,-0.08302527,-0.03530222,-0.43598256,0.3711563,0.0752311,0.519536,0.5266888,-0.078480415,-0.099617295,0.74905187,0.4392389,0.14578632,0.8737576,0.22058874,-0.10495844,0.22086291,-0.32395726,0.013752893,-0.48078927,-0.13248639,-0.35504434,-0.34919837,-0.33667135,-0.014026861,-0.30640325,-0.7206817,0.49815226,0.20727618,-0.08324965,-0.0032618914,0.4038304,0.32011762,-0.17987923,0.039625872,-0.1885312,-0.20781912,-0.43173054,-0.205746,-0.73187065,-0.38210464,0.40876773,0.90105075,-0.20538396,-0.0436035,-0.008551528,-0.21635734,0.05723447,-0.03927936,0.12418381,0.3044537,0.2923642,-0.13494171,-0.63549757,0.59369856,-0.31670627,-0.09338024,-0.7739193,0.0058440245,0.5167222,-0.77662396,0.2524046,0.48309544,0.027092883,0.25180194,-0.42744184,-0.20536186,0.112156786,-0.19285627,0.12105747,0.14883615,-1.0748521,0.42095575,0.21445839,-0.362155,-0.7155821,0.38339064,-0.10921329,-0.22195435,-0.08013772,0.21825172,0.19671036,0.10298443,-0.27930853,-0.0026170823,-0.60494214,0.27398035,0.17391519,-0.096458636,0.42720476,0.0699266,-0.066354305,-0.7163358,-0.12533227,-0.34258366,-0.13352425,0.48044315,0.10840899,0.34044066,-0.07390986,0.3138536,0.23148017,-0.548863,0.0058057145,-0.16542868,-0.30155605,0.6046373,0.46084538,0.44872975,-0.46854576,0.5915422,-0.08273322,0.05218019,0.029120097,0.04455598,0.3975263,0.1179016,0.15764335,0.24692304,-0.42535457,0.20394816,0.81925434,0.19155668,0.24884063,0.21146883,-0.024695838,0.39484215,0.054581165,0.08002991,0.06447878,-0.6418376,-0.112017386,-0.15460391,0.1738143,0.46588275,0.16313879,0.38038406,-0.19287701,-0.21487617,0.06727513,0.19690214,0.17860873,-0.7593619,0.38638362,0.17526847,0.36173224,0.5970351,0.017111504,0.051853534,0.641753,-0.2442503,0.20784055,0.22146599,-0.15953273,-0.45869482,0.5813555,-0.73402554,0.49445522,-0.027861044,-0.08665537,0.30133754,-0.14969653,0.42352363,0.95181733,-0.070109636,0.050471947,0.04327256,-0.3726921,-0.05270167,-0.23408665,-0.19424795,-0.64054626,-0.25467858,0.70645314,0.29084125,0.45520344,-0.015562098,-0.0031657096,0.07102046,-0.14600833,0.2660884,0.04265527,0.12566097,0.020064272,-0.62339497,-0.19298953,0.6968608,-0.008803246,0.20082678,0.110773884,-0.05592978,0.5179027,-0.25117335,-0.30316925,-0.15466118,-0.5402411,0.22520006,-0.33085996,-0.51462257,0.65008754,0.13434167,0.4453968,0.20878617,0.101091236,-0.20459844,0.5219212,0.22912216,0.8495304,-0.09735512,-0.4567324,-0.26555893,0.06772804,0.20151623,-0.2745225,-0.11036538,-0.28014678,-0.075822674,-0.6081229,0.25487968,-0.27274185,-0.25443485,-0.2265705,-0.093886115,0.20461905,0.42511824,-0.10137954,-0.0667735,-0.11631008,-0.017904684,-0.2822723,-0.21535511,-0.39135313,0.033787426,0.11724297,-0.13271281,-0.067128666,-0.06994586,0.11352361,0.25598976,0.008006036,0.19497938,0.08674107,0.23265012,-0.2014784,-0.15743405,0.24715507,0.51214147,-0.045573216,-0.11368352,-0.5928871,-0.3056483,-0.3212255,0.028223723,-0.046302553,0.34194255,0.18737829,-0.32898912,0.72123957,-0.1991849,0.7701526,0.057438314,-0.24236353,0.23382263,0.5050582,0.12944227,-0.1298341,-0.3458136,0.95785713,0.5188975,-0.15122853,-0.1776275,-0.540866,-0.26490805,0.05356242,-0.2738841,-0.33211628,0.09391681,-0.5777128,-0.14448595,0.17572713,0.17345269,0.2859966,-0.22095306,0.25776047,0.23719655,0.28136525,-0.038593963,-0.4486409,-0.34884632,0.24377875,0.2707614,0.12105731,0.12907135,-0.4400022,0.338199,-0.5617202,0.15600248,-0.31486753,-0.031193443,-0.048552092,-0.24581258,0.1479022,0.19960018,0.35691747,-0.32558027,-0.33154732,-0.082391895,0.44480625,0.30840242,0.4674919,0.73791915,-0.21617214,-0.23506431,-0.08352325,0.52878255,1.0754625,-0.2566785,-0.0542267,0.5971964,-0.35778335,-0.6470385,0.19774915,-0.1710182,0.28545165,-0.07088128,-0.298798,-0.37438235,0.23614155,-0.0170713,-0.13915215,0.06263074,-0.4685893,-0.12378082,0.16355814,-0.43414137,-0.42293334,-0.39888033,0.10308203,0.81404954,-0.32772863,-0.2059774,0.09178442,0.14060846,-0.2239012,-0.33685616,-0.07940218,-0.39719164,0.06623083,0.21731007,-0.33220115,0.02497004,0.23995824,-0.44238773,0.2626751,0.07391996,-0.33519658,0.023676356,-0.4522679,0.07678409,0.9947445,-0.1365603,0.025436094,-0.31028283,-0.57796854,-0.6978554,-0.4652665,0.2689091,-0.022041043,0.0034876342,-0.32935473,-0.060209442,0.006376141,-0.22139542,-0.27260423,-0.4884192,0.44864354,-0.03337876,0.24213803,-0.06465843,-1.0771533,0.10772303,0.044030298,-0.34969768,-0.63602537,0.36791983,-0.30062836,1.0368584,0.10368628,0.08369169,0.46049976,-0.59596163,0.08765891,-0.4248676,-0.0826981,-0.5206046,0.0722707,448 +842,0.6461529,-0.11692968,-0.62517256,-0.21784914,-0.21264414,0.35960105,-0.16800654,0.49234644,0.32534263,-0.37760186,-0.17044751,-0.16161726,0.04226749,0.55255824,-0.13929884,-0.858126,0.021294,-0.032687422,-0.39159,0.19244963,-0.74641275,0.3516817,-0.035351794,0.57224363,0.102099605,0.33106595,0.32323864,-0.00859492,-0.3981003,0.13762303,-0.121082425,0.29617777,-0.4605824,-0.037554562,-0.044611428,-0.4316825,0.054661036,-0.24892955,-0.32297316,-0.7022273,0.42654085,-0.96625835,0.5449589,-0.028565267,-0.4111537,0.1492524,-0.07204083,0.1541573,-0.29856214,0.100862116,0.20342481,-0.2646384,0.02502209,-0.27228522,-0.47133312,-0.7908845,-0.5971925,0.082893066,-0.5534316,-0.22126609,-0.29120815,0.27918062,-0.22582145,0.030852938,-0.18753654,0.22205722,-0.37071776,-0.21906237,0.40523908,-0.28023136,0.22267084,-0.3723527,-0.14477144,-0.1091427,0.22578174,-0.061547566,-0.112466566,0.12888461,0.38648164,0.642127,-0.0013573306,-0.19945775,-0.3726236,0.13681848,0.16827798,0.5243447,-0.23366976,-0.60310066,-0.40078446,-0.19593243,0.22432764,0.12826115,0.17517543,-0.23143673,0.2829943,0.32642925,-0.19946043,0.50371563,0.5687488,-0.3925643,-0.27776775,0.3949697,0.5634727,-0.06566115,-0.12971656,0.09445083,-0.06116088,-0.5769618,-0.21795712,0.15947883,0.022673195,0.7396958,-0.17201914,0.2274661,0.8703559,-0.14081691,0.13153593,-0.1750701,-0.09633859,-0.1920336,-0.16445784,-0.040380284,0.09114441,-0.40388528,-0.09674117,-0.28154576,0.7769776,0.26597133,-0.729873,0.49011073,-0.32703698,0.11381122,-0.12195516,0.6027723,0.63189334,0.2415687,0.16426836,0.95520824,-0.7959345,0.021055585,0.09055189,-0.42790642,0.1737317,-0.1849848,0.15341282,-0.32979903,0.14740764,0.14575644,-0.16186243,0.014395486,0.62321615,-0.5016223,-0.09168017,-0.018895427,0.8385742,-0.5557001,-0.20356049,0.72937155,1.094431,0.8585537,0.0027479727,1.542974,0.5656689,-0.2168296,0.13305669,-0.43102375,-0.59574944,0.36172888,0.2815059,-0.053778425,0.4392778,0.19890843,0.107913055,0.61398524,-0.15252255,0.053855956,-0.07550695,0.2368777,0.04382522,-0.11895424,-0.39875567,-0.056857605,0.13776524,-0.015751222,0.3235349,0.22277965,-0.27653968,0.42675424,-0.105113685,1.6674813,-0.1316368,0.031241506,-0.218774,0.42515612,0.19985045,-0.12556864,-0.02240479,0.3455352,0.2985334,-0.0013121702,-0.560492,-0.03082273,-0.33922216,-0.53531003,-0.29302308,-0.3862802,-0.07721744,-0.068104945,-0.37023333,-0.041469816,0.07633634,-0.27807644,0.4834857,-2.2116597,-0.3678908,-0.16802196,0.38806048,-0.2339197,-0.4064114,-0.22173695,-0.36392593,0.24326777,0.5799876,0.37207413,-0.67158175,0.35693732,0.30877402,-0.14374492,-0.16362242,-0.60149574,0.16765134,-0.1194397,0.46153903,-0.04436924,-0.23316194,-0.18996894,0.42747214,0.6331536,0.18420541,0.05213892,0.09724253,0.77367586,0.028733455,0.4710193,0.15669492,0.7107311,-0.2455409,-0.14721681,0.5328854,-0.6768108,0.44638622,-0.01925508,0.34693012,0.3337172,-0.5185345,-1.0277421,-0.77684873,-0.25303903,1.1418155,-0.27624083,-0.3940351,0.28276643,-0.11877168,-0.42681885,0.015647948,0.4338697,-0.13080075,-0.029544959,-0.85386306,-0.0671067,-0.0036809247,0.08054734,-0.059709176,0.24315028,-0.27440897,0.7316434,-0.22864544,0.32193124,0.26116827,0.16177468,-0.14238529,-0.54940313,-0.030381752,1.0280737,0.33364853,0.22659814,-0.16659276,-0.22138286,-0.29895917,-0.13683604,0.15318029,0.515906,0.8986294,0.19117542,0.055264186,0.32748428,-0.11772651,-0.18060589,0.00044321516,-0.4682819,-0.013759136,0.0075508556,0.6600232,0.75381607,-0.37084332,0.36569712,-0.31762594,0.35444525,-0.2529079,-0.41929957,0.6395035,0.8577559,-0.3108202,-0.15924098,0.635242,0.2601073,-0.6907219,0.51292676,-0.7758047,-0.3319423,0.6557979,-0.034678858,-0.47407508,0.06356703,-0.34954008,-0.016187442,-1.0838364,0.3386536,0.08808068,-0.56684196,-0.46383265,-0.27077404,-4.4372888,0.16273981,-0.16697401,-0.10641,-0.08567864,-0.07119086,0.36271158,-0.6274317,-0.56230164,0.021799749,-0.038832147,0.4461671,0.059042573,0.319542,-0.48070955,0.03239631,-0.22881205,0.25163004,0.16482951,0.27228367,0.027374068,-0.47385767,0.14635521,-0.37721792,-0.4234302,0.034915134,-0.61546594,-0.66034216,-0.19923873,-0.4790989,-0.22085941,0.77678066,-0.47992852,-0.07777298,-0.40771067,0.04379117,-0.35552844,0.42910227,0.07061424,0.045268606,0.22784609,-0.08717712,-0.10379502,-0.41308522,0.11351415,0.1298737,0.33523235,0.46436062,-0.21849544,0.10081446,0.67203206,0.7790799,0.07277699,0.6684994,0.2214927,-0.00047649443,0.36235118,-0.37478194,-0.10601765,-0.63995916,-0.5495529,-0.22446515,-0.53038245,-0.6459742,-0.2370062,-0.45360705,-0.82202154,0.3494602,0.01703309,0.23661543,-0.14065926,0.3392773,0.48325858,-0.20952213,0.035937514,-0.14191249,-0.2684758,-0.7259197,-0.4004139,-0.5340921,-0.8234647,0.4880711,0.935381,-0.11348482,-0.18129216,0.0054742596,-0.36972532,0.10843035,0.08322682,0.056530625,0.036970954,0.350029,-0.17423661,-0.72690123,0.40121257,-0.23446257,-0.10737654,-0.7172561,-0.11648149,0.82414055,-0.70930386,0.71175903,0.50889415,0.22930777,0.36782086,-0.46437764,-0.34985527,0.09500649,-0.16524924,0.6160762,0.22599381,-0.58788013,0.4746214,0.31240103,-0.16634507,-0.69078094,0.39794818,0.029492103,-0.106366456,0.09860661,0.42454028,0.06949078,-0.09951931,-0.39648852,0.1269617,-0.6042112,0.23279245,0.5553073,0.2586479,0.4594239,-0.09671497,-0.29365972,-0.66537017,-0.2288096,-0.59461564,-0.17052688,0.04273206,0.030750299,0.12673792,-0.02323846,0.10904261,0.40884113,-0.463473,0.15601662,0.091610186,-0.30325508,0.35061225,0.48402616,0.35891104,-0.54786927,0.42557105,0.097217225,-0.04965448,-0.0011617094,-0.02478137,0.5503008,0.42744246,0.33146688,0.20245339,-0.048112106,0.33404532,0.67718405,0.21072932,0.49884796,0.38046268,-0.42086568,0.36587867,0.26437172,0.20208776,0.05450428,-0.41767797,-0.07526436,0.042114988,0.25747198,0.42616722,0.16917461,0.35700512,-0.03938591,-0.1810884,0.28601316,0.05506146,-0.20691116,-0.92042345,0.21804023,0.23519528,0.7044327,0.38192573,-0.15631437,0.09751556,0.31973565,-0.22635464,0.13513285,0.36605525,0.05504181,-0.7148218,0.58862436,-0.5509373,0.2998725,-0.31184325,0.10784122,0.03557214,0.30542782,0.52894783,0.9317439,-0.02289736,0.09311381,-0.09432449,-0.09344485,0.08143835,-0.34907207,0.12126372,-0.6156152,-0.24482512,0.6343592,0.45089516,0.3989286,-0.2730018,-0.20061584,-0.0135495765,-0.0066219023,0.030694218,-0.21517341,0.08114689,-0.12810679,-0.86830693,-0.53114706,0.5508509,0.37234282,0.09687062,-0.04539506,-0.5395456,0.38758394,-0.34318212,-0.13335562,0.14935516,-0.6167969,-0.18289919,-0.2326281,-0.72518975,0.40343705,-0.28899738,0.18536325,0.26103902,0.08774996,-0.3920069,0.10219181,0.117000334,0.8762587,0.16278844,-0.27086642,-0.51610357,0.119333744,0.45874822,-0.49061725,-0.13223962,-0.43198428,0.032047484,-0.44233048,0.52525693,-0.04885775,-0.45449948,0.039372683,-0.18254876,0.072149046,0.54518855,-0.3868492,-0.26210627,0.3047277,-0.008075605,-0.19150357,-0.071200885,-0.35616156,0.28538898,-0.08898923,-0.14729412,-0.022285879,-0.096265465,0.04173219,0.33624876,0.15837581,0.18355854,0.59412414,0.072142646,-0.348024,-0.11069258,0.08967384,0.40068075,0.19154526,-0.18502341,-0.3513513,-0.585367,-0.3379279,0.15421005,-0.24251588,0.07122505,0.20574541,-0.4500905,0.7899187,0.1481746,1.3761716,0.14682426,-0.38470516,-0.04482514,0.6053011,0.22369987,0.16648829,-0.6266274,1.05053,0.52274674,-0.34380195,-0.20974214,-0.52703923,-0.40741596,0.37693286,-0.36911237,-0.14277564,-0.33464384,-0.9800842,-0.18016534,0.27422085,0.3579978,0.1329404,0.037133355,0.37731346,0.111111045,0.14168279,0.53597564,-0.5196384,-0.18557103,0.35105157,0.26580614,-0.07710827,0.018507808,-0.25538588,0.40088844,-0.69932896,0.017541463,-0.51469505,0.05154489,-0.058138404,-0.46146086,0.23105021,0.06505097,0.2817432,-0.35950637,-0.4066038,-0.2504898,0.7962883,0.40264452,0.3002684,0.6646106,-0.2506226,-0.24564202,0.16977102,0.5577689,1.580574,-0.10333664,0.24687566,0.44964418,-0.30082527,-0.74910396,0.30696753,-0.39209807,0.22328727,-0.18805617,-0.55153376,-0.5611967,0.3905177,0.17090963,-0.1908922,0.047280055,-0.3595145,-0.1476493,0.4325087,-0.4437991,-0.2791613,-0.18425727,0.24463056,0.7772861,-0.6198965,-0.34359264,-0.010237713,0.57569605,-0.40256128,-0.5442157,-0.038262192,-0.2830646,0.62888604,0.17576212,-0.39913702,0.04897939,0.0827174,-0.4119614,0.36065945,0.33166304,-0.43451008,0.19993202,-0.3486835,-0.14700407,1.0095433,0.20641679,0.04817618,-0.9701398,-0.3145707,-1.0763398,-0.39890042,0.1499334,0.13323738,-0.10557572,-0.43933627,0.028667452,-0.114827424,0.050470978,0.17829712,-0.6132206,0.4463495,-0.016683215,0.74273103,0.001834297,-0.994281,-0.201694,0.3118367,-0.32032105,-0.6916971,0.63456583,-0.34533465,0.75619966,0.12285773,0.2788315,0.31818378,-0.58324283,0.29036734,-0.47256526,-0.18216431,-0.8220169,0.20711039,457 +843,0.3635993,-0.31528375,-0.31806636,-0.12502895,-0.06681312,-0.079418115,-0.06491435,0.7151827,0.29666474,-0.48275304,-0.20388012,-0.07203819,0.0029575874,0.38116026,-0.07638203,-0.44215536,-0.019655282,0.22299655,-0.42752528,0.48243752,-0.4782711,0.1326068,-0.057572234,0.49738005,0.24056323,0.10706382,0.04384719,-0.09815142,-0.19216911,-0.16075122,-0.025102785,0.2922058,-0.4901563,0.30845463,-0.2675817,-0.40128875,-0.16767173,-0.8030606,-0.44071946,-0.7511861,0.22574656,-0.729902,0.4927794,0.0021619946,-0.20091183,0.23381376,-0.050522882,0.23170024,-0.20042832,-0.120734245,0.24243791,-0.0585487,-0.119763434,-0.00072916347,-0.094862126,-0.18620308,-0.6160129,0.06548538,-0.34302375,0.015088809,-0.32095546,0.08559764,-0.32445112,-0.068332486,0.031994563,0.4142375,-0.4218706,-0.06205109,-0.028512567,-0.024730345,0.3092815,-0.4842113,-0.1932121,-0.14647667,0.32803392,-0.26586023,-0.32317522,0.27871087,0.26416174,0.39054775,-0.13146032,-0.017980209,-0.2502557,0.12248274,0.18394864,0.60208154,-0.1923505,-0.6387957,-0.15126006,-0.0870007,0.12171022,0.18860507,0.025432209,-0.23433824,-0.09726692,0.012386878,-0.19410627,0.47322857,0.5369393,-0.12489218,-0.27863327,0.36255383,0.45031774,0.28976128,-0.06346089,0.010672058,0.09156537,-0.5862258,-0.16566825,-0.042818833,-0.21787398,0.47259414,-0.18101026,0.29791602,0.6446554,-0.13338147,0.054201275,0.14947772,0.046246413,-0.109280884,-0.19494243,-0.16638063,0.17419563,-0.45368817,0.23040032,-0.16744919,0.7883374,0.15374847,-0.7410593,0.37938473,-0.54023796,0.14092585,-0.109874964,0.5036528,0.84690934,0.30793762,0.4485396,0.6337326,-0.36806825,0.07924803,-0.021665744,-0.40946662,0.03119246,-0.27165768,0.017574051,-0.4980215,-0.21255386,0.03708598,-0.17060052,0.16789939,0.4475534,-0.5168516,-0.12825762,0.116341054,0.72587186,-0.2288961,-0.13419773,0.9774968,1.06844,1.0963894,0.024905002,1.2139114,0.14308184,-0.13143285,0.25452372,-0.22898443,-0.79584765,0.29131404,0.33555523,-0.11460888,0.07407963,0.1772887,-0.08606553,0.39747226,-0.60510826,0.010349358,-0.14885305,0.19177318,0.019574502,-0.14993559,-0.539887,-0.45521328,-0.26690516,0.08640926,-0.004295071,0.24342608,-0.28199044,0.4392732,-0.020781994,1.648171,-0.030211389,0.042415038,-0.10175339,0.58252656,0.15183644,-0.27243435,-0.2811034,0.13893451,0.46873245,0.04177658,-0.55317473,0.17399447,-0.18145446,-0.2855639,-0.050389152,-0.33720174,-0.106408656,-0.1435717,-0.39493135,-0.08048051,-0.037558753,-0.46182215,0.559717,-2.8758032,-0.29587683,0.0050209314,0.30089578,-0.14670646,-0.32182112,-0.19501863,-0.45544264,0.49243656,0.27971956,0.5878172,-0.6230073,0.2501367,0.4229865,-0.5991423,-0.12530543,-0.6946972,-0.10460528,0.03946564,0.3555689,0.09873643,0.097668566,0.10566327,0.021794787,0.5348813,0.13709699,0.11813123,0.25178578,0.39683926,-0.07300681,0.41301623,-0.15396397,0.54310495,-0.3186241,-0.19133711,0.29092526,-0.35401025,0.3190376,-0.41016972,0.13826859,0.45800304,-0.4567779,-1.0472254,-0.62008315,-0.34603086,1.170278,-0.09570793,-0.25180137,0.282949,-0.36133638,-0.16049995,-0.00741378,0.69024485,-0.15845752,-0.09277586,-0.7483194,-0.121550106,-0.026681691,-0.035725314,-0.07046413,-0.033162307,-0.5056512,0.53651863,-0.008219724,0.44059452,0.31054413,0.22436662,-0.21421759,-0.43534088,0.13169432,0.8825412,0.348946,0.21001054,-0.27222332,-0.049354147,-0.4202118,-0.09480729,0.0027081731,0.548628,0.64486223,-0.1050967,0.20579605,0.25249684,0.19831936,0.08404052,-0.052833606,-0.1795891,-0.21039887,-0.013299475,0.5962742,0.7574766,-0.11292698,0.51725966,-0.051321805,0.06424846,-0.21286444,-0.3872241,0.4923921,0.7719738,-0.115697734,-0.066028796,0.6240189,0.4591715,-0.061872292,0.41925952,-0.43455768,-0.3117056,0.37866583,-0.15833108,-0.4991496,0.16208975,-0.23839758,0.026396802,-0.86225414,0.36879525,-0.23734789,-0.7504938,-0.5718162,0.04506007,-3.11481,0.1239754,-0.15931764,-0.2807682,-0.12132612,-0.2712542,0.2038755,-0.5290111,-0.6007126,0.25294277,-0.012616299,0.77596515,-0.14195336,0.05979991,-0.2495591,-0.1659774,-0.45413804,-0.0052198023,0.0490322,0.45556578,0.07189641,-0.36415246,-0.08677465,-0.25364533,-0.46717033,0.08587727,-0.63321584,-0.47199655,-0.043666374,-0.52695626,-0.39032102,0.73502237,-0.30801752,0.02714228,-0.19273357,-0.010732651,-0.1837867,0.46398512,0.084907465,0.13623863,0.018821849,-0.18123977,0.039845586,-0.11946244,0.418296,0.1302296,0.21897954,0.3650274,-0.24002719,0.30200684,0.5288845,0.6929254,-0.23245107,1.0485889,0.5547174,-0.16900033,0.11095103,-0.30077112,-0.27164507,-0.41474044,-0.31595814,0.09047922,-0.4053963,-0.55489665,-0.11173701,-0.34029174,-0.84446317,0.44910645,0.058980092,0.32138792,-0.013896805,-0.14475642,0.3944234,-0.2445964,-0.0023776118,-0.091507934,0.0100065665,-0.52747977,-0.21641646,-0.6947155,-0.547938,0.082009815,0.98667675,-0.12695673,-0.016162673,0.14334835,-0.31693718,0.012905109,0.048759002,-0.1646752,0.06423869,0.2447031,-0.056905765,-0.7137067,0.4977902,-0.013613194,-0.13950478,-0.5861749,0.24710435,0.6439805,-0.57856506,0.53481764,0.46892658,-0.013457959,-0.120032676,-0.51102155,-0.30560485,-0.22905983,-0.06868679,0.31450534,0.22211313,-0.8569071,0.42802787,0.32278252,-0.29366845,-0.8233838,0.49689326,0.008090851,-0.036462646,0.022556761,0.3146645,0.1763181,0.021407137,-0.25301048,0.367771,-0.42387915,0.5809398,0.041760176,-0.015840987,0.29268834,-0.19621031,-0.033679496,-0.6950863,-0.038730007,-0.5830239,-0.26195264,0.18624544,0.087812744,0.19022517,0.13285163,0.1261748,0.256376,-0.30831316,0.07180204,0.0033703148,-0.3561726,0.1438656,0.5304268,0.613196,-0.3316126,0.6140347,0.105798036,-0.07921261,0.071614675,0.13802059,0.3278061,0.08705357,0.40470755,-0.069494106,-0.32156584,0.12003202,0.88228273,0.17876203,0.33219746,-0.041092686,-0.18753405,0.20485966,0.11659413,0.4067417,0.045756686,-0.5816106,0.11286188,-0.3684287,0.19732141,0.42822647,0.17469136,0.16736549,-0.029480522,-0.40531504,-0.046984717,0.26162422,-0.00427104,-1.5518737,0.50960714,0.28031817,0.9518607,0.48579112,0.03397273,0.063501574,0.7088435,0.009310037,0.13584848,0.39432564,0.017427072,-0.53982383,0.5652984,-0.8533945,0.5908039,0.012662083,-0.0025314193,0.052753255,-0.17070235,0.4415531,0.6232115,-0.1538292,0.08394074,-0.027185967,-0.30973604,0.19855703,-0.44828764,0.16960211,-0.65685785,-0.19780447,0.7249424,0.67156833,0.14423244,-0.08148653,0.06531957,0.022875557,-0.103579044,0.022679828,0.10018453,0.091531634,0.018589618,-0.89654493,-0.047721874,0.4913379,-0.14466985,0.24754329,0.033476487,-0.080856405,0.20448153,-0.26119173,-0.099999525,-0.08895627,-0.74278545,-0.1104289,-0.402526,-0.23145859,0.38489938,-0.25367704,0.30036458,0.20310558,0.12495468,-0.09439912,0.40852013,0.0705777,0.77503806,-0.007849147,-0.24570847,-0.39695215,0.28336775,0.21218853,-0.18790686,-0.16240981,-0.2167328,-0.18412836,-0.41681066,0.5203541,-0.031487525,-0.2972783,0.23431651,-0.051286813,0.104571044,0.567519,-0.059489056,-0.037485197,-0.15913509,-0.11950368,-0.28248814,0.053642858,-0.107940495,0.36441445,0.41928712,0.015992576,-0.09196654,-0.045382846,-0.24594255,0.34839115,0.0336782,0.40912804,0.24466719,0.18866281,-0.2740973,-0.19978328,0.25250453,0.5768519,0.062103868,-0.12945999,-0.29360434,-0.28574407,-0.38315263,-0.0074032843,-0.20303774,0.41419676,0.06727322,-0.0897102,0.43179384,-6.406506e-05,1.0238439,0.16247864,-0.36645913,0.18789184,0.44681087,-0.004226332,-0.21870889,-0.3877987,0.87451106,0.33892965,-0.1758727,-0.022097737,-0.3921446,-0.05560699,0.33541012,-0.2122035,-0.3638549,0.045903247,-0.71529096,-0.17189221,0.25118187,0.21423535,0.22478063,-0.08058824,0.008462508,0.4510335,0.04241531,0.2815331,-0.45504078,-0.22336411,0.40911487,0.4012799,-0.005266145,0.15714167,-0.35455287,0.32547605,-0.43808174,0.063882686,-0.1675244,0.1963477,-0.4464798,-0.34532967,0.26587796,0.22619112,0.49539974,-0.104796976,-0.382138,-0.24971318,0.44786,0.10100556,0.14858986,0.48164794,-0.28875193,-0.042100668,-0.054393813,0.3529614,0.89062786,-0.3239548,0.027879447,0.5473497,-0.22066064,-0.5003029,0.4136515,-0.3070616,0.34156188,0.014538705,-0.19715965,-0.6185393,0.24669844,0.05645923,0.057661917,0.1017315,-0.61581326,-0.08460379,0.2923527,-0.08749872,-0.29373398,-0.47925982,-0.015482977,0.5493984,-0.35277796,-0.45143282,0.21345524,0.17800517,-0.17811923,-0.5865176,-0.048293322,-0.42799103,0.14930119,-0.02691035,-0.4587845,-0.19471914,-0.16362451,-0.4308082,0.26517832,-0.084797055,-0.31445256,0.1319681,-0.20338076,-0.035860613,1.1151694,-0.35739723,0.3052142,-0.5112731,-0.4754497,-0.72019404,-0.249839,0.48484865,0.25705734,-0.18014045,-0.5589376,0.0051656864,-0.04352792,-0.1776856,-0.12698518,-0.43798876,0.4574122,0.08776284,0.35005483,-0.14754525,-0.7809749,0.2099812,0.20761992,-0.14405556,-0.62161094,0.43620014,0.07218022,0.7842862,0.06431954,0.11533982,0.15969527,-0.30428126,-0.16772467,-0.2047341,-0.12141351,-0.5358451,0.12019112,458 +844,0.4364792,-0.28320318,-0.6573085,-0.10535417,-0.31381926,0.13893674,-0.04878521,0.54235286,0.40872964,-0.6052756,-0.17745769,-0.12233957,-0.107887186,0.25627595,-0.013775479,-0.5613577,0.01582095,0.32925606,-0.5635332,0.40885735,-0.28975204,0.36553597,0.18758155,0.1319413,0.1855094,0.18185139,0.04562934,0.06636509,0.12832084,-0.33442476,-0.02713567,0.13046688,-0.5484266,0.36394337,0.0008092125,-0.35408762,-0.21864985,-0.55981857,-0.14489305,-0.6607453,0.39184403,-0.6987433,0.61104685,0.059658904,-0.2163914,-0.016366443,0.04683569,0.2793084,-0.06916193,0.052158743,0.28453878,-0.06252993,-0.18489362,0.05319706,-0.13302954,-0.3940544,-0.62737834,-0.04308701,-0.24685502,-0.2455401,-0.058566403,0.21799685,-0.25290063,0.10913101,-0.29415628,0.7709603,-0.28075758,-0.05454651,0.36531988,-0.23526816,0.15292247,-0.60898083,-0.025020929,-0.020852635,0.096791714,-0.16682255,-0.26565686,-0.015242338,0.26790997,0.64680886,0.108133115,-0.16374378,-0.15966074,0.015526245,-0.016394496,0.512379,-0.1856817,-0.32682022,-0.12693627,0.038487013,0.042180847,-0.0040249303,0.30680847,-0.4206089,-0.056638747,-0.18866324,-0.09372034,0.2988146,0.47417286,-0.17846388,-0.12529723,0.21488841,0.5945482,0.061337557,0.04340918,0.3480985,0.16079088,-0.41960564,-0.2730638,0.002812316,-0.14198388,0.34502456,-0.25254652,0.24377584,0.4459324,0.024437621,-0.09102025,0.15482213,0.063888036,0.13846473,-0.2707182,-0.3126838,0.3064585,-0.50567144,0.07171177,-0.1507272,0.7555155,0.12587275,-0.6406945,0.33478844,-0.5048563,0.11888287,-0.052592278,0.45481098,0.76523274,0.33099103,0.027884245,0.7351964,-0.2969834,0.18731642,-0.23100407,-0.047398087,-0.0771208,-0.04853506,0.08650739,-0.4521846,-0.044429656,-0.105383776,-0.40000042,0.052417535,0.41561997,-0.7397695,-0.1505675,0.14065166,0.68169194,-0.28556362,-0.066896826,0.8503788,0.9751906,1.0356342,0.11580518,1.3066401,0.34167704,-0.24520187,0.05298415,-0.22838049,-0.782188,0.1201968,0.24049282,0.23769112,0.3348457,0.07757242,-0.033504788,0.4948846,-0.67991114,-0.0014426237,-0.26908526,0.38718143,-0.061836123,-0.13090606,-0.4393929,-0.15766917,0.0226018,0.24911453,0.036457013,0.23325318,-0.30577114,0.20547183,0.14315365,1.514967,-0.33949903,0.068861075,0.07924502,0.14724769,0.09140897,-0.44578174,-0.17187376,0.11349351,0.5389934,-0.08253647,-0.64599365,-0.038920864,0.046012823,-0.32107353,-0.2885389,-0.13388278,0.035928156,-0.24031526,-0.3690124,-0.37163427,-0.13004327,-0.5103845,0.4083147,-2.464685,-0.048988853,-0.09977574,0.426069,-0.18234622,-0.39729533,-0.097648025,-0.4230961,0.19201617,0.3321171,0.29178536,-0.6961109,0.48695865,0.41000152,-0.59669733,0.13153733,-0.6145351,-0.0024507642,-0.026936622,0.25472635,0.057977196,-0.034512743,-0.15007228,0.25657296,0.25636742,-0.063491635,0.1736178,0.50620747,0.22877438,0.09251172,0.34534872,0.14102088,0.5686385,-0.33357143,-0.23345144,0.39795136,-0.23065066,-0.052616376,-0.15634792,0.013982604,0.2755945,-0.5745558,-0.7097003,-0.8486962,-0.27961257,1.0565494,-0.17412,-0.2198761,0.37100253,-0.40585354,-0.33901075,-0.05474304,0.4930745,-0.13754027,-0.19949551,-0.88822293,-0.12968707,-0.09165504,0.291173,-0.0076797195,-0.16678004,-0.7403596,0.81567687,-0.36985204,0.55185264,0.47580776,0.2150299,-0.25089088,-0.4367545,-0.037699718,1.2483674,0.5243389,0.15650016,-0.19399911,0.020481825,-0.43016353,0.032264534,0.039888084,0.75896806,0.88017017,-0.064615846,0.10397004,0.29090452,0.13138653,0.10524436,-0.15087287,-0.45967278,-0.20810503,-0.001029737,0.6210606,0.31965607,-0.025340289,0.46606854,-0.20061083,0.2863585,-0.1520972,-0.51770633,0.26523194,0.70400137,-0.10556245,-0.3902923,0.7232155,0.30627105,-0.12904786,0.41432175,-0.56536406,-0.15153849,0.2784426,-0.17733581,-0.44718006,0.41695073,-0.30733636,0.32712916,-0.8745231,0.49933895,-0.21436654,-1.0696431,-0.50321865,-0.16868001,-2.6489818,0.26038638,-0.14022501,-0.13080768,0.116161376,-0.27313492,0.15056463,-0.49466422,-0.7525658,0.27327552,-0.038304333,0.6695669,-0.023324018,0.12368029,-0.001398156,-0.3486553,-0.26105532,0.25393793,-0.008965931,0.16485642,0.121575475,-0.35553977,0.011362463,0.031835195,-0.25038978,-0.047562826,-0.89990926,-0.61288947,-0.093212344,-0.62109107,-0.17007451,0.5372584,-0.20038353,0.14885317,-0.28997838,-0.012833379,-0.15141308,0.19772293,-0.074119374,0.15142232,0.04955925,-0.04794183,-0.117417805,-0.0151324915,0.08173216,0.06979519,0.25649205,0.26333988,-0.1932292,0.37969086,0.41725945,0.82467985,-0.02556748,0.8702875,0.64733803,-0.14439338,0.19498597,-0.08033681,-0.18320866,-0.43352386,-0.23943567,0.050748598,-0.5781078,-0.40204564,0.07319477,-0.27604857,-0.8309515,0.44274735,0.1429652,0.1294544,0.21887426,0.0983119,0.46599552,-0.033947732,-0.05917569,-0.21426575,-0.19763552,-0.3986304,-0.23814298,-0.59891844,-0.25196767,0.19601083,1.4007844,-0.2191691,0.32726693,0.22655535,-0.23892719,0.13502644,0.15910709,0.07407581,0.13082565,0.59207267,0.025468903,-0.524387,0.12795267,-0.1440928,-0.04420371,-0.57021457,0.18681721,0.6589916,-0.6395492,0.57311255,-0.0408162,0.031143665,-0.38493538,-0.45651722,-0.10563948,0.12208605,-0.39600214,0.4436321,0.35395467,-0.58552283,0.39336398,0.20791323,0.013102755,-0.868488,0.21933328,-0.050568655,-0.08336705,0.010130018,0.2453537,-0.0709881,0.0016175011,-0.09935909,0.1918058,-0.19584614,0.24232365,0.18712282,-0.11207622,-0.1276228,-0.49288306,-0.06015859,-0.646334,0.060972784,-0.6535053,-0.25792286,0.05744003,0.05592838,0.19041611,0.4020721,0.08115702,0.41786954,-0.28840685,0.114905775,-0.04057937,-0.49857497,0.45798466,0.29257363,0.15066338,-0.32598415,0.47132602,-0.039903518,-0.0048183077,-0.3137747,-0.11979184,0.5527948,-0.104899615,0.31312093,0.066964686,-0.21670975,0.4554362,1.0342246,-0.02147991,0.35529044,-0.1210148,-0.002213766,0.10582381,0.104021214,0.10656127,-0.033454318,-0.5830919,0.05335732,-0.004568994,0.14011472,0.24437083,0.2710162,0.44493625,-0.2232374,-0.4946603,-0.0018462291,0.09183354,-0.044448163,-1.3529624,0.29500234,-0.034611944,0.7779827,0.6010032,0.18251169,-0.011681658,0.39694735,-0.11464194,0.21898471,0.17523652,-0.17756367,-0.2969415,0.3045043,-0.5285018,0.31833813,-0.057254136,0.0070280028,0.0040906467,-0.15735815,0.44276738,0.8069343,-0.201478,-0.034420826,-0.19654842,-0.23264122,0.025358269,-0.44232643,0.017893642,-0.7958495,-0.41363403,0.70674473,0.5262403,0.4713414,-0.11122342,-0.027162677,0.12605216,-0.034409788,0.10123038,0.06627509,-0.01597456,0.03205923,-0.5766533,-0.24889039,0.49641132,0.011338155,0.07011578,0.030076772,-0.43689048,0.1611361,-0.064865,-0.13104951,-0.22160721,-0.7656819,-0.08922288,-0.44662693,-0.2698803,0.3235836,-0.049864154,0.021641115,0.24055521,-0.0010916753,-0.32680622,0.30012405,0.29445454,0.71116066,0.0022748485,0.019619694,-0.036212374,0.44205233,0.088510506,-0.20224567,-0.024348937,-0.19810693,0.3084897,-0.79958373,0.46297368,0.19055013,-0.45502877,0.5044729,-0.0125157125,0.14734179,0.50844914,-0.21232845,0.0072936863,0.21078722,-0.40942457,-0.14209338,-0.3657702,-0.22314928,0.17841716,0.05173437,0.018134668,-0.07618775,0.03245281,-0.14256789,0.3780481,0.35966143,0.38011226,0.48327425,-0.001629124,-0.54368687,0.013746222,0.088810004,0.35854593,-0.022912046,-0.14880766,-0.2009896,-0.37999114,-0.361413,0.14068906,-0.096311204,0.41094315,-0.07847607,-0.12905863,0.869694,0.34047946,1.2294756,-0.090617985,-0.36980036,-0.08607439,0.498415,-0.060455907,0.027160563,-0.35871974,0.90740347,0.5019723,-0.007997549,-0.16294347,-0.35839486,-0.03859714,0.29887256,-0.024635958,-0.1715727,-0.057014663,-0.6505948,-0.32710275,0.3463484,0.20610125,0.03700312,-0.015573124,0.34650055,0.32314357,-0.24993174,0.1451217,-0.5152365,0.14310415,0.19621278,0.18089183,0.1877339,0.014538598,-0.5159637,0.20276849,-0.76486593,0.20770524,0.003316154,0.07418049,-0.08371966,-0.19884598,0.09803331,0.11975237,0.2746686,-0.47808048,-0.2998513,-0.25750008,0.6886406,-0.058967095,0.10703059,0.63671607,-0.30314347,0.0330305,0.07672935,0.5843429,0.9409322,-0.04726109,0.12784809,0.37804404,-0.29186973,-0.531951,0.21620023,-0.06007744,-0.09030813,0.008455341,-0.2758262,-0.5432749,0.16962312,0.29612583,-0.11295568,0.29193845,-0.43202272,-0.20373894,0.32754767,-0.3283917,-0.15130603,-0.28549722,0.19210088,0.58021706,-0.3441815,-0.36265305,-0.02055952,0.31418702,-0.35754856,-0.5116718,-0.18939276,-0.23077208,0.23882596,0.079766735,-0.37022945,-0.2605497,-0.014745593,-0.31750807,-0.20734842,0.23898156,-0.30800918,0.025382385,-0.34394494,-0.11320681,0.79317635,-0.07573531,0.17736042,-0.55659705,-0.4508277,-0.7995963,-0.390064,0.2801828,0.1486492,-0.089648664,-0.71325725,-0.097241364,-0.22553886,0.0024414163,0.124027275,-0.1267906,0.5724724,0.24657303,0.3800477,-0.18067628,-0.9393156,0.2693694,0.17842811,-0.26105478,-0.46948192,0.49671292,0.3036822,0.7450569,0.06457729,-0.03366803,0.14636914,-0.63176024,0.2474007,-0.13064015,-0.039689824,-0.7250609,0.14084633,460 +845,0.43468145,-0.32778743,-0.6378153,-0.07537391,-0.22286658,0.0014487902,-0.24980967,0.5680304,0.19973443,-0.23412816,-0.12468111,-0.26197764,0.104857825,0.5576377,-0.20768309,-0.7494345,0.008806233,0.1365617,-0.602349,0.36861277,-0.5255426,0.4077092,-0.064956866,0.48495516,0.09715178,0.20840067,0.19165371,-0.03115061,-0.032823235,-0.17069846,-0.06626991,0.10086295,-0.47331032,-0.1718897,-0.00080262247,-0.49247012,0.16798961,-0.32860032,-0.40202776,-0.7886472,0.48319232,-0.8533456,0.5444115,0.16255331,-0.40104005,0.12620278,-0.06729282,0.29299927,-0.36570486,0.1278951,0.13260199,-0.043319363,0.1448191,-0.34695137,-0.34313694,-0.59892464,-0.52529025,-0.10800981,-0.64593387,-0.22161657,-0.27916446,0.10475788,-0.38011912,0.06217432,0.06277213,0.03803088,-0.5180028,-0.086959004,0.23042472,-0.1464588,0.35289,-0.59240466,-0.16862762,-0.16540973,0.07589836,-0.054151442,-0.07151825,0.33539864,0.28367326,0.5181174,-0.1383204,-0.13962246,-0.23565096,-0.06611648,-0.10396841,0.58276826,-0.22462924,-0.5435249,-0.20286275,-0.06958641,0.30187944,0.29261252,0.112519376,-0.11663694,0.021125654,0.16163714,-0.36667967,0.36916795,0.49694154,-0.4120945,-0.11798153,0.38705316,0.3537395,0.3179913,-0.09228077,-0.1295821,0.0625107,-0.5474675,-0.22993092,-0.016065026,-0.3187267,0.5943188,-0.1491173,0.32775566,0.75516814,-0.2769083,0.25443247,0.0070634335,0.08230103,-0.26642284,-0.12689157,-0.26341763,0.17338397,-0.4920163,0.12798254,-0.22968914,0.7305677,0.2422501,-0.48936835,0.40759793,-0.6144001,0.20949109,-0.13114482,0.50198066,0.6246523,0.4342718,0.27711114,0.63921916,-0.35001037,0.028343031,-0.06839686,-0.23467867,0.41900802,-0.11466536,-0.13484725,-0.43848673,-0.07384939,0.10581652,-0.08066111,0.20254247,0.7310481,-0.7000818,0.0190653,0.038066614,0.81773585,-0.33839583,0.12395424,0.4978304,1.1405934,0.95738226,-0.10435811,1.166765,0.30637783,-0.34402764,0.18427734,-0.16099165,-0.8910801,0.3255132,0.43821657,-0.57311064,0.5628775,0.029623033,-0.11393402,0.43854782,-0.22367871,-0.06320438,-0.17491882,0.17535351,-0.0110611515,-0.15673833,-0.40472892,-0.23292035,-0.17871487,0.053756464,0.040957004,0.35970864,-0.34646836,0.21079904,-0.12510242,1.6096225,-0.060927648,0.079478465,-0.014804646,0.64376837,0.2846066,0.014734118,0.08511704,0.46053943,0.34493637,0.20925796,-0.81195,0.15103602,-0.32432714,-0.47822514,-0.18323769,-0.34125766,-0.03703774,-0.121746026,-0.57029897,0.0727072,-0.019028932,-0.20243323,0.26956603,-2.2692046,-0.32648847,-0.21148781,0.435339,-0.25432223,-0.30387792,-0.108122796,-0.32036915,0.45107567,0.3448635,0.48474565,-0.72574204,0.3058966,0.59507173,-0.4627348,-0.06865216,-0.5621698,-0.1423498,-0.15511791,0.2845238,-0.027363976,-0.18755007,0.13160504,0.33141991,0.5663989,0.023659488,0.23025428,0.118510485,0.62327987,-0.098898135,0.4175036,-0.12764682,0.49132648,-0.27142295,-0.17767431,0.28261948,-0.4708527,0.27174905,-0.23965698,0.14332752,0.42916545,-0.46184158,-1.0332993,-0.5392585,-0.040673513,1.2490892,-0.40313712,-0.4558861,0.3466197,-0.19190198,-0.19361897,-0.08894268,0.6041493,-0.17794447,-0.103881665,-0.8383789,0.16489233,-0.1552632,0.12661622,0.092876665,0.11307057,-0.21113239,0.64597183,-0.015749725,0.3381028,0.14303547,0.21579534,-0.1749232,-0.50349617,0.05121843,0.7044843,0.50453264,0.13066101,-0.11927682,-0.16582388,-0.39923653,0.08998406,0.11958472,0.38447914,0.81905013,-0.0054069213,0.18987362,0.2646994,0.050803095,0.0024577181,-0.29792282,-0.36380133,0.11342412,0.06307279,0.5963059,0.7518668,-0.2163213,0.35757485,0.060107056,0.27433398,-0.27117658,-0.48493174,0.5374944,1.1014739,-0.22829014,-0.024173537,0.60574466,0.5743809,-0.52365375,0.5823479,-0.8677711,-0.44730827,0.5071706,-0.13981093,-0.41277936,0.2520177,-0.29271165,0.117085494,-0.88158035,0.4052968,-0.1476142,-0.16358918,-0.52955943,-0.13329042,-3.837535,0.24645321,-0.34735635,-0.1507623,-0.14602792,-0.015776915,0.44834018,-0.86221343,-0.5805947,0.022199722,0.07169509,0.6678495,-0.0952257,0.07280054,-0.26572448,-0.44194445,-0.3434523,0.15565902,0.08627965,0.32777607,0.009513855,-0.56568843,-0.09377909,-0.18441482,-0.4966631,0.16960816,-0.6385654,-0.4770769,-0.19772714,-0.57492554,-0.22622709,0.73831797,-0.033591706,-0.031719875,-0.20536196,0.008323519,-0.1156345,0.24069785,0.22358716,-0.040516336,-0.076749586,-0.11804446,0.041198473,-0.33269867,0.19071741,0.062922634,0.30253816,0.18786968,-0.141952,0.015936106,0.7471269,0.66350365,-0.06524366,0.8670804,0.52813077,-0.1037642,0.26471445,-0.28832453,-0.31833476,-0.5163911,-0.41365895,-0.099099696,-0.3529618,-0.39060232,-0.18221445,-0.32233164,-0.75663805,0.5702872,0.06010686,0.38158128,-0.13352804,0.2829392,0.47674838,-0.09235714,-0.0928591,0.09329403,-0.16098152,-0.54107314,-0.119636066,-0.6624513,-0.3741612,0.46867982,0.8102947,-0.31446812,0.055401534,0.13385306,-0.11360752,0.115595184,-0.009673521,0.06486491,0.06779344,0.31446505,-0.0948151,-0.72686774,0.44875765,-0.075552665,-0.12939723,-0.72208714,-0.019126922,0.6934213,-0.7023893,0.3136761,0.44531405,0.16537993,0.03477857,-0.5419633,-0.0186238,0.24655561,-0.15507732,0.20395863,0.21164544,-0.7299984,0.34087434,0.36390457,-0.4410626,-0.4783372,0.7591321,0.004365807,-0.3577856,-0.17412753,0.41391388,0.22184277,0.13514672,-0.29428402,0.40873694,-0.57185614,0.26212138,0.29895863,-0.112461925,0.51526463,-0.013212125,-0.15267918,-0.8209025,0.22550605,-0.47366634,-0.3999587,0.26169524,0.036973383,0.11087588,0.2144966,0.17105883,0.3991252,-0.4430038,0.060322892,-0.071374156,-0.29101273,0.5168557,0.5464495,0.53157645,-0.32411674,0.74106294,0.055158705,-0.15457268,0.23820657,0.011373748,0.4326109,0.032844495,0.5213975,0.11744813,-0.2541832,0.38295457,0.8534271,0.103293516,0.34093884,0.16455893,-0.11150966,0.16676916,0.21280809,-0.04141204,-0.019778142,-0.4584596,-0.08299256,0.07142968,0.21280806,0.719248,0.1532297,0.29535303,-0.013991068,-0.39428496,0.19726408,0.28694776,-0.035986796,-1.334855,0.25851986,0.24334736,0.6642985,0.5016798,-0.0061913184,0.015834963,0.43824276,-0.12541576,5.0519902e-05,0.35788378,0.10078772,-0.6285989,0.7115574,-0.59648395,0.4082137,-0.1710322,0.04007521,-0.06478617,0.051377963,0.4333993,0.8129433,-0.07335081,-0.056339473,0.09332299,-0.39306298,0.002992183,-0.407168,-0.05659665,-0.5930199,-0.29213956,0.5034406,0.45451102,0.2635859,-0.20251285,-0.015140157,0.0021009545,-0.19811969,0.28268543,-0.06342112,0.043977547,-0.21623991,-0.7118148,-0.30787036,0.4636664,0.11828646,0.19066697,-0.10477164,-0.19970576,0.34882447,-0.28465092,0.07851851,0.11909708,-0.75541836,0.03410038,-0.56279,-0.60259455,0.35929433,-0.030630061,0.308725,0.20151426,0.031651437,-0.35701153,0.2917328,-0.07424768,0.88936776,-0.02161105,-0.32492957,-0.35389042,0.13559987,0.123230666,-0.2582234,-0.15526606,-0.29967955,0.096868984,-0.37268606,0.4704553,-0.12125028,-0.2091559,-0.089731865,-0.27810556,-0.033071984,0.4643226,-0.19702005,-0.3123853,-0.21902442,-0.13155837,-0.3380301,-0.33937135,-0.21878009,0.19002075,0.0751096,0.02704519,-0.16193524,-0.17362387,0.14148687,0.5735886,-0.0753211,0.30505848,0.5561245,0.30316907,-0.28853512,-0.26362953,0.26136085,0.5627782,-0.103973456,-0.04298061,-0.44789353,-0.6448752,-0.38976905,0.14935142,-0.32538182,0.47630307,0.215223,-0.3442336,0.8586676,0.097689055,1.1054982,-0.13796109,-0.34551477,0.04946643,0.7045744,0.009752795,-0.14722134,-0.42461395,1.0468912,0.5496555,-0.2517901,-0.3481935,-0.3371123,-0.29325712,0.3482984,-0.37957776,-0.20615955,-0.116542935,-0.7460905,-0.32858655,0.20272334,0.4512001,0.19021003,-0.04609414,0.25673983,0.21600562,0.20443778,0.25693157,-0.60154504,-0.3981553,0.34043404,0.23942153,-0.12412796,0.1311509,-0.40229404,0.43026295,-0.46142054,0.010997802,-0.42575562,0.19856791,-0.048993815,-0.514909,0.18897648,0.003361779,0.28450927,-0.30804113,-0.39385024,-0.19121878,0.4390413,0.13203983,0.21943177,0.5688741,-0.39610443,0.030927265,-0.10099503,0.71287966,1.1627444,-0.12244239,-0.11057352,0.45954534,-0.59248483,-0.87996656,0.34981743,-0.3354477,0.14416118,0.030238977,-0.34484783,-0.69608873,0.4083188,0.02335906,-0.062085103,0.13873766,-0.438761,-0.29695714,0.31199095,-0.30555347,-0.31476712,-0.4325179,0.20432086,0.6230083,-0.39270028,-0.18086445,0.090168215,0.444803,-0.16635828,-0.6073637,-0.12905051,-0.4495714,0.47878805,0.117934205,-0.3973503,0.1380776,-0.04589175,-0.48588145,0.15547948,0.26059085,-0.35628104,0.17642236,-0.3833324,-0.027417326,1.0398469,-0.19622523,-0.16527694,-0.6980717,-0.45744416,-0.7640919,-0.4159218,0.60224044,0.22531821,0.12004294,-0.678675,0.17501782,0.0061290674,-0.07401656,-0.15619296,-0.26748526,0.43631387,0.14550622,0.48798504,0.04705253,-0.66397625,0.15589847,0.10031108,-0.454891,-0.6642371,0.6472674,-0.30349913,0.8321271,0.16371413,0.09963576,0.23893769,-0.36027035,0.016467681,-0.27022693,-0.25439999,-0.7077131,0.19873774,465 +846,0.39498043,-0.1846466,-0.45923853,-0.048765987,-0.14194578,-0.25621954,-0.07456515,0.6306386,0.23242573,-0.3445705,-0.24152379,-0.19105506,0.04437296,0.4929615,-0.14326704,-0.65039915,-0.124863185,0.22396636,-0.47205043,0.63467216,-0.29675588,0.12653889,-0.05949043,0.52479464,0.15144731,0.13235414,0.19694877,-0.03475495,-0.021960616,0.06540939,-0.019790133,0.29414544,-0.5124518,0.12572,-0.110549115,-0.4476095,-0.12713324,-0.5577552,-0.42262658,-0.71396416,0.4257101,-0.7305996,0.5095436,0.19019906,-0.28204662,0.40148762,-0.115849115,0.2619875,-0.35138285,-0.17011636,0.033868033,-0.056694206,0.022683987,-0.31959477,-0.122723736,-0.13310438,-0.5984611,0.12477374,-0.34161362,-0.035141762,-0.32669127,0.13489772,-0.32293585,-0.115035415,-0.0031230499,0.47051588,-0.43773842,-0.107787974,0.1827846,-0.043037713,0.5250706,-0.55884856,-0.1472153,-0.20898652,0.18349324,-0.27816716,-0.21855848,0.40449348,0.13480304,0.45241866,-0.09973931,-0.15445496,-0.48638096,0.14539774,0.08214589,0.4710625,-0.23806633,-0.6764942,-0.031014303,0.10818762,0.061650634,0.21759538,0.20350654,-0.27205274,-0.11389816,-0.08951471,0.0071471133,0.426716,0.5365912,-0.1391356,-0.30552956,0.35558447,0.59854907,0.17648691,-0.05747639,-0.13052581,-0.010463144,-0.5674457,-0.22187693,-0.12179614,-0.24688238,0.64014125,-0.16304286,0.22148061,0.5544966,-0.11352697,-0.112430096,-0.034102768,-0.053670686,-0.018675208,-0.3512303,-0.3135691,0.45098162,-0.2359302,0.32910326,-0.11582901,0.6895118,0.23799467,-0.85873324,0.41358694,-0.5596879,0.21124025,-0.15920241,0.5728101,0.81413645,0.4470559,0.39100692,0.7352647,-0.44978634,0.12084105,0.0011402766,-0.46952057,0.07848633,-0.18906434,-0.14720415,-0.5407229,-0.14959306,0.036383193,-0.2686944,0.28311613,0.19319057,-0.5769201,-0.02908056,0.2213761,0.72896963,-0.27263775,-0.10002605,0.8134901,1.0975164,1.079846,0.021860063,0.9966143,0.1713868,-0.31935894,0.42895755,-0.43703112,-0.8524339,0.25845483,0.28617683,-0.31367728,0.30546036,0.09302575,0.03973156,0.39005423,-0.5555932,-0.03488308,-0.23339029,0.11957737,0.003278258,-0.23935981,-0.6231013,-0.19008346,-0.2511534,0.06399628,-0.0077764317,0.31302106,-0.1922629,0.42660832,-0.056663107,1.5396461,0.0038256745,0.09683678,0.043725315,0.5163861,0.21408796,-0.16081442,-0.20464808,0.32479212,0.31266996,0.124316074,-0.6252346,0.20838137,-0.15885915,-0.5373458,-0.06277185,-0.23859817,0.15485741,0.11202743,-0.31256,-0.15741819,-0.1530634,-0.33982202,0.46539295,-2.6925857,-0.18663247,0.057382483,0.37488472,-0.21610934,-0.30924854,-0.07699487,-0.5009017,0.5310425,0.3881999,0.5404802,-0.6870071,0.16474135,0.3275601,-0.5896196,-0.0649365,-0.59858155,-0.12359882,-0.050987486,0.36995038,0.018912008,0.06783143,0.28017202,0.21967228,0.4584471,-0.006420354,0.028275639,0.15401582,0.28266752,0.0024471283,0.25027663,-0.19725831,0.48987722,-0.33058056,-0.27945176,0.22434372,-0.21532829,0.16863938,-0.20696343,0.1434525,0.42661998,-0.43331861,-0.99289036,-0.5120856,-0.065751195,1.0456439,-0.110474795,-0.4136417,0.4139024,-0.34044215,-0.061683137,-0.16297852,0.48461214,-0.1116029,-0.21164648,-0.8309696,-0.048907865,-0.050464194,0.10994935,0.050046246,-0.13688916,-0.5233147,0.6125181,0.032633316,0.38099155,0.41536632,0.21544282,-0.27539012,-0.64042145,0.052416395,0.6563134,0.33302423,0.1542778,-0.2520872,-0.15632033,-0.28830048,-0.035245437,0.103936076,0.4346824,0.7631333,-0.11607329,0.044340704,0.34051895,0.05363814,0.081414595,-0.089763016,-0.24704766,-0.096317135,-0.11049963,0.6336004,0.9125492,-0.27678218,0.38316965,-0.091812246,0.3447611,-0.0654691,-0.32884148,0.6809843,1.2308904,-0.10923847,-0.19085068,0.61199605,0.41150025,-0.26936814,0.51568395,-0.57071024,-0.121716835,0.39358306,-0.18972683,-0.39216506,0.07699216,-0.28338555,0.17826729,-0.9864156,0.2009641,-0.23179038,-0.39535293,-0.82529974,0.0017228723,-3.3333256,0.15492627,-0.4745911,-0.26823676,-0.032958224,-0.17475446,0.09025067,-0.80898476,-0.57243526,0.25609842,0.16733404,0.6978747,-0.11882442,0.19359471,-0.20487015,-0.24775167,-0.2980012,0.061074555,0.26738653,0.3118092,0.19811754,-0.39510584,-0.04593696,-0.10486916,-0.4741961,0.046238143,-0.4804881,-0.30591905,-0.3184199,-0.6861925,-0.35560802,0.5441061,-0.2513503,0.06400014,-0.18152083,-0.106382035,0.01802564,0.3256715,0.07943214,0.28045708,0.12707542,0.025565654,0.15935378,-0.1891879,0.10740035,0.07706735,0.2733995,0.3279226,-0.27306178,0.21599068,0.64052004,0.8603063,-0.18568899,0.7309206,0.88907003,0.057028443,0.1580968,-0.34195653,-0.2606137,-0.6725807,-0.42005157,-0.052294344,-0.34568262,-0.69495463,-0.044130694,-0.4396303,-0.86581916,0.5905685,-0.110511065,0.36566505,0.1241061,0.09422789,0.5818946,-0.264726,-0.006078293,-0.042154253,-0.057972908,-0.5846706,-0.1742152,-0.5591596,-0.5797958,0.06944715,0.99216205,-0.13744037,-0.027709356,0.043070752,-0.1269703,0.03269147,0.16581191,-0.11440762,0.28132832,0.22182584,0.053517163,-0.6126373,0.5207824,0.21899967,-0.24386747,-0.6234016,0.2861567,0.46149072,-0.6200452,0.55305845,0.2343244,-0.12536815,-0.13974883,-0.6983094,-0.26401302,-0.009409882,-0.12794419,0.37931088,0.32584378,-0.78229064,0.4690121,0.48199877,-0.44369534,-0.8268588,0.45109963,0.035139408,-0.47128668,-0.05479008,0.122216485,-0.01956912,0.041728575,-0.36888623,0.32730582,-0.3581908,0.23036341,0.23633225,-0.008602497,0.26798937,-0.23803693,0.08562777,-0.89259404,0.28961632,-0.6260622,-0.1638547,0.30447838,0.2259513,0.09438595,0.04179198,0.21694076,0.3864732,-0.27946746,0.15827294,-0.06811127,-0.21657403,0.18038131,0.5078874,0.4225954,-0.49797478,0.51644963,-0.040159877,-0.17652436,-0.17669697,0.0011887898,0.47439042,0.00786445,0.32768974,0.040192783,-0.27733403,0.055407565,0.56857514,0.1765284,0.3386121,-0.040173445,0.035242874,0.3946497,0.11726737,0.35110986,0.00748088,-0.4414413,0.091558926,-0.22631784,0.1715643,0.46880743,0.16441129,0.32977495,-0.25162387,-0.43158078,0.0014184279,0.26486248,0.12206795,-1.3512353,0.4387599,0.29383263,0.804418,0.73842806,0.19965146,-0.045906752,0.70968604,-0.20933919,0.22486635,0.3382151,-0.0071049533,-0.69619054,0.51069105,-0.82364494,0.37297976,0.010632376,-0.12944268,0.05870758,-0.047849316,0.27875006,0.55717564,-0.21164858,0.097675584,-0.024623385,-0.15837018,0.100206316,-0.4074721,0.1282252,-0.7037615,-0.27047798,0.58771676,0.56830627,0.2550374,-0.18705185,0.02001839,0.15889832,-0.011065225,0.13999663,0.02064105,0.18382053,0.10555809,-0.60235643,-0.2362153,0.42641202,-0.040165823,0.13042311,-0.20729046,-0.19705468,0.094380535,-0.16272287,-0.38277373,-0.05835546,-0.7336922,0.074363485,-0.13465114,-0.18088089,0.6827233,-0.081338786,0.34304562,0.18225108,0.25680813,-0.36647078,0.2675622,0.022092521,0.8198983,0.12139321,-0.2153822,-0.28522506,0.28502956,0.20219582,-0.17021833,-0.039049152,-0.19392705,-0.08452516,-0.34678987,0.63318205,0.091319025,-0.22129607,-0.03234793,-0.05954552,0.06870352,0.624992,-0.14679138,-0.1671719,-0.12284794,-0.22739106,-0.32897407,-0.26396486,-0.13166448,0.32108662,0.26388392,0.046272904,-0.025240997,0.04951315,-0.06312236,0.6736052,0.047119632,0.37618995,0.21898745,0.121347345,-0.37221512,-0.27749744,0.16708319,0.3705939,0.045862336,-0.19384648,-0.2542024,-0.41936693,-0.36775216,-0.2318395,-0.09486374,0.4285945,0.07766176,-0.120034,0.527631,0.23464982,1.1619549,-0.030212333,-0.40320686,0.22319023,0.443656,0.012147297,-0.17295621,-0.31306514,0.948154,0.55720407,-0.16908377,-0.13861667,-0.15171246,0.017086783,0.18977256,-0.20440696,-0.19415247,0.053135555,-0.5816708,-0.28369698,0.28876892,0.2202369,0.29685256,-0.15866749,0.19637525,0.13315131,0.011360452,0.29425934,-0.24270584,-0.19158655,0.38856867,0.278308,0.10032063,0.12199665,-0.3295761,0.37411836,-0.3187071,0.03049565,-0.30900946,0.18367988,-0.22198947,-0.5519886,0.17435496,0.12313048,0.34312353,-0.060725633,-0.27967098,-0.26422378,0.4995595,0.14571242,0.13821702,0.56297797,-0.28103396,0.07650518,-0.10801635,0.30185822,1.0208479,-0.31288955,-0.11570728,0.2700191,-0.26503047,-0.69408154,0.456409,-0.12959006,0.15803866,-0.28915122,-0.12788415,-0.8098914,0.108927466,0.18161368,-0.021938095,-0.0013047172,-0.6271832,-0.27594283,0.18149066,-0.2993687,-0.19077568,-0.4253184,0.07733696,0.604233,-0.32551822,-0.41148105,0.20347631,0.07698164,-0.123678,-0.46160784,-0.10928873,-0.3642381,0.23025036,0.14726175,-0.5283381,-0.10611666,0.20302089,-0.3349729,0.113084435,0.036302228,-0.26801932,0.13454838,-0.41265082,-0.09265804,1.1038938,-0.3007794,0.22629388,-0.49778035,-0.46926853,-1.114575,-0.3240455,0.7242964,0.03583156,0.084474385,-0.80797696,0.11010436,0.011465128,-0.20150131,-0.15701781,-0.16466542,0.3007389,0.12968366,0.3065263,-0.08173359,-0.69131327,0.13388757,0.20965695,-0.03413689,-0.6362897,0.55495864,0.10343114,1.0766311,-0.025069088,0.15694602,0.3047211,-0.43022457,-0.058667164,-0.26001897,-0.3121992,-0.51847833,0.025583217,466 +847,0.47691774,-0.16193405,-0.48991284,-0.36763057,-0.32041317,-0.06409705,-0.32162353,0.19941531,0.26958537,-0.46059224,-0.09610996,-0.04108553,-0.021258041,0.2643075,-0.25772116,-0.73202634,-0.063091315,0.13891818,-0.8203034,0.4689678,-0.55755895,0.17026679,0.30905744,0.42433557,0.18163274,0.33976912,0.21620369,-0.065695435,0.1396621,-0.009571716,0.21112435,-0.20573954,-0.7982855,0.3038131,-0.17060868,-0.38437518,-0.03058925,-0.5547232,-0.39462313,-0.6775376,0.29182336,-0.7079921,0.44065842,0.17656517,-0.23905893,-0.37767053,0.072414815,0.23795736,-0.3507565,0.22871739,0.36562037,-0.2511568,-0.022578625,-0.084693335,0.10506507,-0.5336763,-0.4017261,0.06849151,-0.435563,-0.030326271,-0.10351621,0.15172297,-0.23787351,0.041241143,-0.11977816,0.42174998,-0.48258314,-0.2124893,0.11390203,-0.19752152,0.26183605,-0.50305015,-0.38446924,-0.14864543,0.23551226,-0.12024528,-0.31768563,0.3607117,0.12975313,0.5753326,0.20085645,-0.21759377,-0.056587335,0.09790907,0.06401277,0.48155892,-0.053444054,-0.31120345,-0.2704935,-0.14553373,0.28966972,0.10109773,0.054474384,-0.49431428,0.13712056,-0.008715575,-0.29909885,0.45368278,0.6548465,-0.32217965,-0.037830085,0.27225175,0.15550643,0.3000626,-0.19957201,0.20025969,0.0124542015,-0.45277128,-0.28309712,0.15766068,0.00048167506,0.71626395,-0.13415809,0.38567185,0.67124385,-0.097919285,0.02532879,0.0007315874,-0.018435394,-0.03165061,-0.17050529,-0.45171842,0.35946086,-0.6515536,-0.030464694,-0.36557746,0.6846792,0.16688013,-0.81706804,0.3406807,-0.6843143,0.15400527,-0.29763767,0.5686845,0.8592327,0.46122953,0.20649308,0.7415514,-0.5802516,0.08102374,0.08854952,-0.25680414,0.19044735,-0.14226125,0.24287541,-0.4012846,-0.23397724,-0.042492528,0.12415514,-0.075362094,0.42420062,-0.26655173,-0.12275771,0.12454891,0.6478134,-0.30703062,0.06907328,0.85117006,1.3699918,1.2096654,0.22813708,1.4427084,0.30563548,-0.16350166,-0.115650766,0.101365924,-0.62237537,0.19426809,0.31261957,0.6028732,0.25786898,0.16369309,-0.18528087,0.43738842,-0.6368362,0.17616822,0.02553535,0.26951385,-0.06637983,-0.06303206,-0.40788043,-0.1899507,0.070388086,0.12918414,-0.3577728,0.3088682,-0.13508649,0.26124164,0.05285876,1.0907363,0.11804745,0.039089963,0.036603525,0.6599221,0.14809406,-0.35130402,0.038416844,-0.008644484,0.42773843,-0.07791258,-0.6763191,-0.12915973,-0.30080685,-0.48225296,-0.25158313,-0.43258628,-0.18118958,-0.18575454,-0.5773232,-0.12970938,0.15552849,-0.29499164,0.2585598,-2.389139,-0.320107,-0.20488691,0.4520876,-0.14550287,-0.066591226,-0.20566891,-0.23774154,0.45892176,0.5303744,0.57858074,-0.6900387,0.67700726,0.5027484,-0.40094972,0.04325561,-0.65503156,-0.03833131,-0.11573679,0.05642764,-0.045088097,-0.21745495,-0.08712741,0.18174537,0.60370976,0.14796297,0.0591736,0.1334029,0.53173983,-0.044119965,0.78125995,-0.048922658,0.39159894,-0.41885352,-0.22481918,0.2538608,-0.5493802,0.13473295,0.03259032,0.19265594,0.5929082,-0.5716071,-0.98957795,-0.67077214,-0.33341095,1.1373171,-0.258289,-0.38365176,0.36307105,-0.07376455,-0.23696782,0.069738775,0.6991756,-0.28478137,0.17359103,-0.7912801,-0.052496895,-0.15388037,0.1558498,0.0017635425,0.06581962,-0.52584475,0.79613465,-0.027994903,0.5318726,0.48038152,0.15050842,-0.04791811,-0.44907987,0.26992658,0.83205026,0.44972563,0.10645195,-0.14492875,-0.012430511,-0.23027913,-0.077306814,0.18213822,0.67201835,0.77646303,-0.19028477,0.20497292,0.42804587,-0.23864198,-0.033268932,-0.06087561,-0.5067165,-0.128253,0.14762713,0.68943834,0.9626458,0.0014165143,0.19336838,-0.094940476,0.17130516,-0.29516134,-0.4067018,0.5493016,0.5135378,0.031733114,-0.0972051,0.5683226,0.48493552,-0.2835462,0.42441192,-0.55565745,-0.5181753,0.420041,0.1108905,-0.32841945,0.03588816,-0.5932355,0.11410882,-0.9574384,0.5757708,-0.19692798,-0.5624474,-0.59114295,-0.39263055,-2.89624,0.095203616,-0.30530217,-0.2459157,-0.22200137,-0.17988239,0.41987333,-0.6640334,-0.60228395,0.22119176,0.07810467,0.62896186,0.07495479,0.094279446,-0.21542925,-0.15746462,-0.37516102,0.21993844,0.13738339,0.2470904,0.1688165,-0.35237274,-0.0689295,-0.30107912,-0.41314316,0.085808694,-0.51428604,-0.56214064,-0.020643897,-0.48473728,-0.40623498,0.72646093,-0.18757649,-0.09281907,-0.17327201,-0.16453646,-0.3185631,0.34659806,0.24561436,0.16764264,-0.056290567,0.039940316,-0.39293876,-0.24644147,0.08224248,0.1462145,0.30612007,0.25642672,-0.3032178,0.09561028,0.54948956,0.48557582,-0.119367175,0.7231803,0.34694767,0.00962129,0.33621466,-0.26817125,-0.36001515,-0.6062063,-0.3169097,-0.100579955,-0.37283692,-0.3828317,0.06703718,-0.29024133,-0.78633875,0.35034943,0.11744008,-0.08308225,-0.056315064,-0.06056876,0.064162366,-0.008961335,-0.094320156,0.025407834,-0.023737073,-0.5480374,-0.32412234,-0.90858,-0.5086055,-0.17868656,1.1836501,0.025118887,-0.17424202,0.37283137,-0.37424707,0.28766987,0.114973255,0.05597956,0.03241073,0.31770945,-0.13526097,-0.79999703,0.3542961,-0.30996928,-0.13766527,-0.59479064,-0.0621351,0.900822,-0.6229483,0.55339086,0.5574348,0.25378242,-0.18334843,-0.5279575,-0.44816634,0.012516111,-0.05796976,0.5309575,0.063991405,-0.73498154,0.51158303,0.036701772,-0.2598603,-0.6652833,0.6035982,-0.05312908,-0.2468168,0.31399372,0.22639032,-0.09754904,-0.26989016,-0.15001887,0.52204496,-0.40752423,0.55493206,0.13954927,-0.040137917,0.5133371,-0.008544791,-0.28029022,-0.5381163,-0.12464375,-0.5806152,-0.26782915,0.06442665,-0.006590525,0.07893911,0.22021544,0.088871144,0.32580975,-0.19143985,0.24078561,-0.27279365,-0.40598145,0.26431462,0.6253472,0.4791766,-0.6174446,0.7717921,0.21114711,0.08172501,-0.35560703,0.11257068,0.28105506,0.31600082,0.22444735,-0.23134486,-0.052072663,0.0632864,0.84072924,0.30012825,0.41867337,0.39437357,-0.13099934,0.40581688,0.1646723,0.12534507,-0.14734526,-0.2929134,0.029268406,0.036282625,0.20729357,0.24494927,0.032937996,0.31905305,-0.11721227,-0.12653768,0.19283734,0.2190675,-0.19652705,-1.3245804,0.5148305,0.35494184,0.690947,0.7295406,-0.11902404,0.09608809,0.5978875,-0.15007307,-0.015027653,0.11691496,0.14845626,-0.39682198,0.63883203,-0.37758437,0.4310741,-0.16569753,-0.036788642,-0.025816761,0.08884738,0.46971107,0.6391126,-0.05283824,0.17165989,0.01890481,-0.24687111,-0.19716705,-0.44246793,0.14286968,-0.56210023,-0.3567975,0.84675485,0.39391986,0.14119692,-0.19132541,0.010006945,0.008044953,-0.19794911,0.26608768,-0.16351335,-0.38802004,0.11825833,-0.8261352,-0.22890943,0.62875545,-0.38019833,0.02895803,0.14318173,-0.26262796,0.19894056,0.078380145,0.061468836,0.026174719,-0.7049265,-0.0058275214,-0.54656076,-0.19649106,0.26503414,-0.53630894,0.19200593,0.19622485,0.02886797,-0.06304907,0.19969316,0.07389628,0.6738846,0.13025719,-0.28150627,-0.21871513,-0.20454359,0.25387678,-0.2512764,-0.17255329,-0.60133547,0.11997992,-0.52030534,0.47776887,-0.043966696,-0.053406674,0.22794724,-0.13054818,0.010539651,0.40016636,-0.27254003,-0.12316823,0.30827036,-0.012468721,-0.22447796,-0.055520177,-0.48635152,0.42212498,0.14189686,0.24815275,0.0028164138,-0.060233504,-0.002761364,0.37275597,0.34248912,0.3071349,0.3437979,-0.029598659,-0.47057533,0.091132216,-0.117271245,0.45789036,0.36301842,-0.19241233,-0.41393554,-0.37221393,-0.16111644,0.33944598,-0.21865262,0.110120974,0.08107524,-0.27430865,0.7389787,0.3182791,1.185531,0.008644273,-0.39299902,0.119223095,0.45568717,-0.1710751,0.11845579,-0.43503007,1.0025352,0.5288082,-0.16157539,-0.24643576,-0.5605847,-0.38989496,0.121358104,-0.30742317,-0.41774783,-0.18329547,-0.7336127,-0.10521028,-0.013558109,0.16158904,-0.10979119,-0.027885154,-0.04208744,0.19166203,0.19384663,0.27416393,-0.7969963,-0.121002525,0.27155074,0.20741095,-0.03154858,0.14874046,-0.416383,0.46614417,-0.69903296,0.20217091,-0.5418124,0.031852666,0.013663414,-0.30558074,0.18489797,0.029396117,0.5134842,-0.37202707,-0.19581799,-0.2248283,0.7746075,0.26241654,0.37679553,0.7190583,-0.26491746,-0.08362528,-0.040956616,0.50135756,1.3230695,-0.32613418,0.11348582,0.29584903,-0.35681364,-0.45161334,0.09856704,-0.5157133,-0.039913867,0.013262439,-0.35137174,-0.53061104,0.20820993,-0.09483933,-0.20547496,0.11291853,-0.74340314,-0.29624704,0.5101918,-0.14337151,-0.462381,-0.34811613,0.18597741,0.6181674,-0.35089457,-0.12465721,-0.03153787,0.32868484,-0.30490014,-0.5506454,0.07908874,-0.53685135,0.48725,0.0022784073,-0.24709213,-0.21644938,0.18473889,-0.49885634,0.28181934,0.26304808,-0.26331237,-0.024453903,-0.21290796,-0.1611551,1.2273185,0.16952622,0.3156307,-0.6635654,-0.48576844,-0.8167555,-0.4570388,0.18380986,0.42669192,-0.0698806,-0.46113205,-0.14670801,0.0040592104,0.03383918,0.0061823525,-0.5911127,0.5217686,0.11515385,0.60927176,-0.058513075,-0.87291175,0.09463922,0.08877188,-0.32371798,-0.30853906,0.5043893,0.05157691,0.85552263,0.081885636,0.08257197,-0.23757589,-0.6316754,0.39079043,-0.28709745,-0.2643647,-0.57175094,0.038079754,474 +848,0.3680927,-0.17802821,-0.5020959,-0.09681561,-0.083916456,-0.05829483,-0.21205862,0.4026619,0.20841344,-0.6391501,-0.26950482,-0.15919639,0.14847188,0.2844012,-0.2310756,-0.64751357,-0.069654554,0.16193981,-0.5556933,0.68544513,-0.42621616,0.15217979,0.07578818,0.42804572,-0.05539647,0.13183907,0.25967988,-0.1355461,-0.18885684,-0.08525142,-0.12396642,0.4569594,-0.37894592,0.13780497,-0.3004277,-0.33680508,0.10689247,-0.49968085,-0.06439202,-0.8550853,0.17104274,-0.82022476,0.26955178,0.113072306,-0.27125183,0.15104313,0.081318855,0.23200697,-0.25876242,-0.077595055,-0.040959407,-0.08123361,-0.25987023,-0.23712929,-0.19847143,-0.27743337,-0.50973815,0.032304283,-0.56395715,-0.10172518,-0.11154304,0.1724958,-0.26642358,0.0028044533,-0.1792212,0.7252848,-0.4026785,-0.101094484,0.15483202,-0.07780754,0.2890387,-0.59348804,-0.23093426,-0.19230944,0.30733195,-0.1941445,-0.2645487,-0.025192574,0.3024675,0.39617774,-0.07599529,-0.17757845,-0.32872,-0.12209172,0.17401473,0.4537361,-0.1814978,-0.6898916,-0.12435738,0.1254031,-0.08698317,0.19888408,0.12718195,-0.26445675,-0.03883365,0.011026424,-0.28891647,0.3890581,0.43154278,-0.43010652,-0.16140276,0.28725842,0.58660525,0.1184017,-0.22543307,-0.18703806,0.10443139,-0.58047485,-0.067829095,0.27441117,-0.26035655,0.6353659,-0.16035855,0.37036267,0.32464066,-0.12046385,-0.063895054,0.035866816,0.06502962,-0.09945768,-0.32891205,-0.19305593,0.32924494,-0.32863492,0.144157,-0.31417564,0.7577662,0.09985822,-0.7639168,0.29778728,-0.57171375,0.06886345,-0.105039574,0.4579043,0.6313531,0.261232,0.33997628,0.50248766,-0.2592369,-0.046441827,-0.26601493,-0.22334735,-0.2823026,0.03696199,0.17782788,-0.4021947,0.00915432,-0.0945876,0.006243492,0.018680537,0.19175164,-0.4677752,-0.21482146,0.18638472,0.7026705,-0.25134152,-0.27324256,0.7802126,0.96474665,0.86570734,0.15706451,1.0477813,0.0563297,-0.14543933,0.21794467,-0.22571822,-0.65235186,0.34697708,0.48739636,-0.016956776,0.20974962,-0.064872034,0.009345611,0.4768796,-0.3228402,-0.033066202,-0.16981514,0.057147533,0.18059689,-0.023630932,-0.36948848,-0.2499125,-0.15384872,-0.031266943,0.10373353,0.21383287,-0.1659232,0.17305861,0.10577831,1.3152114,0.0028357257,0.08811456,0.16976328,0.2479387,0.17987269,-0.0975701,-0.07831529,0.29538757,0.2093984,0.19929409,-0.5606661,0.11708444,-0.20533027,-0.39945015,-0.15565181,-0.31653416,0.030204332,-0.035486255,-0.4732393,0.019760981,-0.14664106,-0.46450686,0.48428893,-2.8248692,-0.15618971,-0.2124116,0.38695887,-0.33242828,-0.38454112,-0.17617404,-0.51763135,0.421855,0.3056482,0.5044339,-0.48701605,0.45514187,0.33276936,-0.5351357,-0.107011996,-0.72792363,-0.11625707,-0.07293781,0.31738058,-0.09219267,-0.06764362,0.016294496,-0.04474553,0.46451917,-0.022503927,0.06312462,0.29289564,0.41530475,0.08503589,0.51386297,-0.07541355,0.46877038,-0.4626012,-0.26796433,0.13744275,-0.44739556,0.35423616,0.08251255,0.14617541,0.5219975,-0.5275907,-0.9683178,-0.7245836,-0.3876989,1.2783278,-0.23663945,-0.3895078,0.15660828,-0.23477913,-0.28021362,-0.13820279,0.58389306,-0.013100128,-0.117115356,-0.7355346,0.099408895,-0.14491548,0.37204966,0.0040958,0.027392983,-0.42161146,0.5348225,-0.039235603,0.47889552,0.44609985,0.2188797,-0.409407,-0.31788647,-0.19277768,1.0557438,0.13949938,0.12165292,-0.15697162,-0.35040057,-0.4021742,0.27750865,0.09388695,0.74075985,0.5675491,0.014215897,0.11520877,0.33270726,0.104798265,0.15873285,-0.19236402,-0.32535148,-0.18757741,0.17124517,0.5752916,0.50631076,-0.15881954,0.4485104,-0.042029787,0.2691277,-0.26462778,-0.26594272,0.35145918,0.9674747,-0.09853941,-0.30646852,0.74094385,0.719539,-0.35167336,0.41874337,-0.5260508,-0.3572937,0.39678374,-0.25017175,-0.3767973,0.14686368,-0.3073516,0.16728765,-0.8747851,0.1449458,-0.48315677,-0.31545404,-0.5780743,0.0010515526,-3.424012,0.3827115,-0.109360635,-0.15555638,-0.13798217,-0.15910459,0.018431088,-0.65622485,-0.5783015,0.20994139,0.06746939,0.6809094,-0.122740276,0.13843288,-0.3075814,-0.4329826,0.04763906,0.2099222,0.25434333,0.26720157,-0.059416264,-0.43813968,-0.036172524,-0.116003335,-0.20152117,0.15492015,-0.5981397,-0.48090395,-0.11535943,-0.6537575,-0.28278923,0.54180837,-0.51031893,-0.0089074625,-0.18556423,0.09583602,-0.053083126,0.45567992,0.081845745,0.39932826,0.05941093,0.014935772,-0.13302918,-0.23409574,0.31011805,0.06778354,0.23541522,0.38932326,0.06325383,0.34955302,0.5845549,0.6039702,0.14760168,0.8936169,0.46552268,0.039246727,0.22717594,-0.21896766,-0.32471418,-0.59390926,-0.14267023,-0.058956314,-0.41429797,-0.37917015,0.019844458,-0.18190773,-0.6599408,0.69880223,-0.09909115,0.001403451,0.061128434,0.55974597,0.6587231,-0.23471898,0.025614897,-0.010047853,-0.054871585,-0.35463926,-0.2955975,-0.5357981,-0.3110038,-0.10788178,0.85357505,-0.25452772,0.053947877,-0.04939456,0.014128526,-0.10597712,0.2819809,0.14990559,0.25493518,0.5647495,-0.0056687393,-0.5365109,0.388611,-0.1608354,-0.22556917,-0.43479443,0.19930847,0.64636296,-0.7107871,0.63650185,0.42096996,0.04780018,-0.28461298,-0.53540236,-0.23372777,0.15430146,-0.22394316,0.33417436,0.33336282,-0.74318075,0.36351907,0.27256477,-0.04090199,-0.83145255,0.60773826,0.011119316,-0.43495902,-0.2496084,0.46472147,0.18653458,0.13097341,-0.10472986,0.061486024,-0.18590677,-0.036512237,0.20388897,-0.089826554,0.28353426,-0.36755848,0.010045166,-0.73890036,0.015098144,-0.49558416,-0.1934046,0.4605206,0.036387663,0.020382958,0.30146632,-0.0506373,0.36190984,-0.3248471,0.022556469,-0.10716281,-0.08263152,0.27927423,0.45790133,0.43004894,-0.43771216,0.55160224,0.0761954,0.0035238713,-0.2910907,0.0057200096,0.34161735,-0.093068264,0.46885642,-0.14533901,-0.2855583,0.38040745,0.6747206,0.16858149,0.46839082,0.021459272,0.08767029,0.25260928,-0.009002621,0.18485768,-0.09792581,-0.44267365,-0.01759786,-0.15373796,-0.027357524,0.42607614,0.01530686,0.30338442,-0.06630662,-0.2642001,-0.01427238,0.27547076,0.13692363,-1.0545596,0.36181214,0.07957124,0.8607734,0.5423514,0.008356363,-0.021922419,0.5241275,-0.23899902,0.13711514,0.3453258,-0.06966578,-0.45794976,0.6761485,-0.52976304,0.42854548,-0.15178262,0.015324754,-0.17590208,-0.22519304,0.4211646,0.9027171,-0.1841778,0.11527262,0.14193963,-0.19941129,0.12058446,-0.39560536,0.048696768,-0.5761337,-0.2674315,0.4982275,0.50425965,0.42288318,-0.2740592,-0.011326909,0.24211435,-0.12323973,0.22719419,-0.007071609,0.16106993,0.024796464,-0.6118535,-0.1447489,0.59738356,0.25148895,0.2800387,0.024563989,-0.14956535,0.3813567,0.07926197,-0.10836562,-0.0725881,-0.4563551,0.0034674257,-0.4729656,-0.44060907,0.36560142,-0.18868224,0.25128055,0.23655313,0.09356292,-0.414757,0.3636509,0.23272878,0.685023,0.030600289,-0.013199575,-0.34513053,0.18476315,0.14205872,-0.13200577,-0.08802409,-0.4675368,0.14861448,-0.76402706,0.42604887,0.06751121,-0.43613508,-0.20445114,0.07857543,-0.00295798,0.66916037,-0.0091582285,-0.13805912,-0.19121253,-0.17215236,-0.23363644,-0.18955682,-0.1457638,0.30662978,0.0639665,0.06781434,-0.14392199,-0.12541218,-0.11335526,0.47278056,0.0631947,0.312511,0.3522167,0.32387736,-0.4009056,-0.06123505,0.07694664,0.50238585,-0.084206276,-0.2816946,-0.257107,-0.32206288,-0.2652543,0.08800163,-0.016536668,0.35263705,0.14305891,-0.2731249,0.6468348,-0.07937608,1.1791633,-0.032992203,-0.31403407,-0.10018466,0.32840565,-0.106072895,-0.1626646,-0.2789586,0.85290784,0.35189542,-0.004644955,-0.09580579,-0.39918983,0.1500341,-0.029667,-0.14894325,-0.1393308,-0.01087334,-0.45258352,-0.23812751,0.03907764,0.25344074,0.20783354,-0.11652749,0.17713992,0.22548658,0.038902845,0.24920593,-0.3990078,-0.019840576,0.21123226,0.28630772,0.00030078492,0.10482761,-0.32196563,0.41027805,-0.58076704,0.18018985,-0.42460394,0.23148747,-0.21893483,-0.23339461,0.25763878,0.10446908,0.4271207,-0.22898181,-0.304901,-0.24874587,0.53885114,0.2531109,-0.008401553,0.4579518,-0.061605264,0.04808296,0.03822043,0.5878777,1.0280324,-0.23038262,-0.049731623,0.265932,-0.18498583,-0.64200646,0.23533864,-0.4564383,0.20225249,0.016241482,-0.116034426,-0.6439997,0.20018019,0.24539763,0.13053848,-0.047569346,-0.5365928,-0.21714692,0.23033683,-0.35180655,-0.17945059,-0.32306972,0.15749131,0.5608894,-0.17930917,-0.17932236,-0.099270016,0.113193505,-0.18600471,-0.5064929,-0.079776905,-0.38072324,0.19600303,0.16510856,-0.3093695,-0.14949168,0.07949004,-0.5001359,0.056138445,0.15466931,-0.3054588,0.049749475,-0.22840214,-0.10697479,1.0248339,-0.15210494,0.23264627,-0.28489563,-0.60403883,-0.701225,-0.17489605,0.44654128,-0.09915937,0.044123083,-0.59065443,0.13556875,-0.08597923,-0.33683276,-0.12920116,-0.33641073,0.3973249,0.0867643,0.5178963,0.02853328,-0.71267796,0.09669775,-0.0018144349,-0.105965845,-0.4077413,0.3202885,-0.031813707,0.8605363,-0.026618041,0.13049266,0.42361653,-0.4385073,-0.089540064,-0.15675153,-0.08760571,-0.5363419,-0.016362138,482 +849,0.4197061,0.008952935,-0.6930895,-0.16147007,-0.20514016,-0.17641716,-0.25315595,0.41071644,0.37900975,-0.59944814,-0.16221146,-0.35355556,-0.083976865,0.5962799,-0.33464238,-0.727158,-0.084249,0.1503193,-0.4343659,0.71046454,-0.3997393,0.2933941,0.05791081,0.5613304,0.26224828,0.16260162,0.40686712,-0.062427133,-0.17410457,-0.18328635,0.18518631,0.12888898,-0.6889948,0.10686004,-0.24344672,-0.7173235,0.053900737,-0.5236468,-0.23559736,-0.9238791,0.4597682,-0.89444405,0.585608,0.2842897,-0.2795212,0.07616768,0.451733,0.39879593,-0.12351749,-0.019349152,0.0935773,-0.026864627,-0.062416818,-0.06823699,-0.4652749,-0.56454414,-0.7872341,0.25727776,-0.41607985,-0.27244982,-0.2794682,0.22849013,-0.44358516,-0.02359199,-0.06343154,0.5334706,-0.32147592,-0.3024706,0.4514482,-0.18138091,0.41098198,-0.5527967,-0.26271304,-0.30373368,0.12963246,-0.2592089,-0.15834413,0.23545635,0.3409133,0.6612576,0.003934244,-0.35498548,-0.5455758,-0.0024848357,0.19246435,0.21799172,-0.3009236,-0.6105605,-0.17973489,-0.0053896704,0.1686186,0.33624926,0.3417846,-0.3112942,0.106870614,0.08177408,-0.33886895,0.4240178,0.5426601,-0.5077061,-0.3276129,0.31611872,0.5399456,0.3482908,-0.11493191,0.01582489,0.05558913,-0.6822732,-0.3541056,0.05000006,-0.24899305,0.7118395,-0.1489123,0.22274727,0.6334706,-0.21545269,-0.07344011,-0.065453894,-0.15960658,-0.23185135,-0.37797663,-0.33267266,0.35291854,-0.40749446,0.19144702,-0.33596477,0.7257107,0.14599682,-0.6564772,0.36814275,-0.80470127,0.19855334,-0.06656968,0.5231693,0.77800775,0.35713968,0.43765518,0.7228344,-0.44625005,0.015969634,-0.04697596,-0.30402434,0.13478439,-0.42047283,0.04582702,-0.3492745,0.047369216,-0.09515149,-0.1522033,0.09134385,0.47067627,-0.52144617,-0.07444259,0.3639566,0.85092664,-0.120654225,-0.08504478,0.80329704,1.01613,1.2048804,0.09548926,1.4238142,0.24986996,-0.31677637,0.3555216,-0.13116394,-0.93901634,0.3924161,0.31295744,-0.7481661,0.5107929,-0.011937936,0.18145086,0.5729504,-0.45194492,0.15558918,-0.42336038,0.21468915,0.14914323,-0.25812227,-0.24465953,-0.17874672,-0.108527504,-0.11436918,0.14475627,0.285947,0.043352153,0.15038247,-0.12314906,1.4782991,-0.17853846,0.14656365,0.08306701,0.40713045,0.2621218,-0.15059365,0.010668457,0.055695225,0.19902599,0.16362761,-0.55469304,0.05837296,-0.32857263,-0.51067674,-0.2518014,-0.316523,0.028420143,0.086722314,-0.50357866,-0.06252802,-0.19537552,-0.20092516,0.3021401,-2.3909209,-0.27935743,-0.123878054,0.05390334,-0.30226883,-0.3110532,-0.17794748,-0.5408693,0.6065014,0.3458269,0.35960403,-0.5726184,0.32702172,0.6560512,-0.54872304,-0.011341427,-0.73769593,-0.15291913,-0.17032908,0.39150998,0.0070418664,-0.28688025,-0.049880225,0.3319269,0.44148088,0.1803621,-0.018939978,0.063850276,0.611573,-0.1713835,0.69959885,-0.15179045,0.62459,-0.46803275,-0.3777516,0.45586035,-0.43726873,0.32889065,-0.07994852,0.11160687,0.47021106,-0.6399495,-1.114094,-0.7080485,-0.37264323,0.97815967,0.08689738,-0.5058949,0.28592843,-0.28738552,-0.17451723,-0.1208255,0.51724404,0.013742874,0.26721707,-0.94235444,0.10665991,-0.1704395,0.12725067,0.09484062,-0.013222158,-0.6146388,0.6961524,0.09152942,0.31414437,0.54871637,0.22543752,-0.43380055,-0.7028024,0.113119304,1.0626668,0.35594007,0.1822471,-0.45556894,-0.24605481,-0.5504579,-0.040094834,-0.006564399,0.39263737,0.7849417,-0.12299359,0.11661818,0.2957808,0.17610578,0.080892794,-0.123046,-0.47290096,-0.07614391,0.076716475,0.60184497,0.744853,-0.2559468,0.37167165,0.023224512,0.46887353,-0.3422438,-0.27754503,0.7662112,1.2326105,-0.033383425,-0.25124702,0.8461993,0.4752988,-0.30866858,0.7146179,-0.54113394,-0.39098713,0.34863567,-0.062000707,-0.5100766,0.16633876,-0.48298085,0.086525135,-1.1496662,0.31749263,-0.33543012,0.042236906,-0.8624308,-0.2559143,-3.614584,0.3427603,-0.3084226,0.04180521,-0.16330206,-0.016952349,0.42276883,-0.6078894,-0.9959312,0.10421201,0.07992903,0.9017484,-0.34738234,0.22654288,-0.17238365,-0.26771006,-0.29789314,0.17779781,0.27273428,0.30704135,0.06493336,-0.5597421,-0.15392424,-0.2935807,-0.40532413,-0.019934973,-0.59446275,-0.46124685,-0.3887289,-0.687212,-0.2611499,0.7119941,-0.40191534,0.0024885882,-0.2638254,-0.0087448405,-0.12215953,0.45860517,0.09716863,0.32720348,0.33956918,-0.107381366,-0.06831888,-0.16134748,0.07945591,-0.011545758,0.15561572,0.36246192,-0.20347561,0.4261305,0.5708956,0.94027835,-0.15244864,0.93652314,0.6475689,-0.056016874,0.2644502,-0.36713448,-0.36362147,-0.63772607,-0.37359467,-0.030606555,-0.41216543,-0.60385674,0.085281216,-0.32419816,-0.7940659,0.85407376,-0.1171977,0.22616607,-0.07108337,0.0070191524,0.35846713,-0.35878935,-0.09685969,-0.046240896,-0.10417149,-0.44989792,-0.4282963,-0.5010259,-0.5606676,-0.03945035,0.9821272,-0.07770989,0.039893534,0.33231303,-0.05906439,-0.0012570173,0.17042004,0.11956056,0.030672327,0.5580815,0.14873376,-0.7522096,0.4351885,-0.038019866,0.051411062,-0.6592961,0.23252113,0.64970595,-0.6338834,0.68621963,0.4999105,-0.019826418,-0.09476807,-0.65049744,-0.21051829,0.15443356,-0.1393184,0.41522446,0.27882382,-0.72759295,0.45128426,0.46693325,-0.35669228,-0.992692,0.68147826,-0.022239998,-0.22831923,-0.252588,0.44170296,0.22837047,0.16257913,-0.27448514,0.26226726,-0.37219962,0.04168449,0.29363456,0.017670337,0.38021278,-0.2806277,-0.17058659,-1.0347408,0.13402532,-0.57817155,-0.32747638,0.3070229,-0.00788489,-0.10596158,0.26765198,0.08985028,0.2767368,-0.21488136,0.22149892,-0.14272879,-0.18685515,0.32010934,0.46829298,0.5896683,-0.72001046,0.7066458,-0.0692474,-0.13400784,0.09157107,-0.10833335,0.47689936,-0.15452679,0.4480597,0.079184055,-0.2423537,0.16481057,0.8868165,0.07161015,0.3351073,0.22981568,-0.02890035,0.3380704,0.19983383,0.06271416,0.02764525,-0.68787503,-0.13767691,-0.24364167,0.16111414,0.4979544,-0.054549653,0.335421,-0.0799252,-0.43121707,0.047269534,0.114290945,-0.11770576,-1.2959641,0.31811574,0.16161765,0.894056,0.7683688,0.12786125,0.15974867,0.638351,-0.15377016,0.17212784,0.57023054,-0.0665605,-0.56969017,0.65520716,-0.48290667,0.35421476,-0.02876974,0.0015107145,-0.23417489,0.11652267,0.6218837,0.6019015,-0.22663665,0.22916764,-0.032386195,-0.21319933,0.16126077,-0.32014427,0.11133164,-0.33473957,-0.32291755,0.8206651,0.53778917,0.26640192,-0.23688538,-0.07057571,0.16584626,-0.16268152,0.09594003,-0.15017454,0.05100982,0.082003325,-0.6455774,-0.08559644,0.5864478,0.27633876,0.24698134,-0.06544028,-0.41866323,0.17925502,-0.254432,0.019783521,-0.104352176,-0.70130616,-0.1607227,-0.4651222,-0.48641655,0.54363483,-0.17426401,0.2627668,0.14843564,0.21260794,-0.36204383,0.42034706,-0.11871792,0.64823127,-0.14463158,-0.025226852,-0.2274433,0.36410034,0.18037944,-0.42657447,-0.21152677,-0.29022986,0.30150554,-0.5235664,0.5483082,-0.03266704,-0.36699247,-0.044173975,-0.06327019,-0.047707215,0.68003863,-0.29891577,-0.16101687,0.16099994,-0.22137773,-0.15941961,-0.186782,0.04433364,0.4326633,-0.028324386,0.033330362,-0.20986764,-0.15407205,-0.111937426,0.4631813,-0.12923305,0.20922165,0.54815334,0.150635,-0.3541893,-0.11908642,0.17619938,0.7226756,0.022924483,-0.3358387,-0.3277144,-0.34622812,-0.37999848,0.3261187,0.07244622,0.18278007,0.1669146,-0.46914014,0.63940215,0.42273495,1.3820043,0.046875507,-0.5135828,-0.026799003,0.4747205,-0.16257279,-0.29265746,-0.48054484,1.0062068,0.6435053,-0.22486703,-0.14466125,-0.4119152,0.16160071,0.09738044,-0.33304438,-0.13627727,0.04001561,-0.58413935,-0.26327464,0.2761127,0.45048425,0.14444475,-0.22339207,0.20289725,0.13814956,0.13953398,0.45996174,-0.45164025,-0.3347681,0.3013843,0.5130649,-0.034045275,0.048652917,-0.31268132,0.34154156,-0.6277662,-0.0074743927,-0.5271276,0.20827417,-0.26643276,-0.44017473,0.18266523,-0.08514738,0.2929655,-0.30726814,-0.29974708,-0.1485926,0.49902713,0.20412888,0.18366475,0.6869831,-0.26321003,-0.04534823,-0.061000567,0.72199994,1.2864287,-0.24365985,0.002136469,0.24333255,-0.019142816,-0.6196924,0.44168022,-0.7080769,0.26377377,-0.109585546,-0.28682292,-0.69977957,0.08067846,0.21434312,-0.16264628,0.053637173,-0.66844136,-0.29516098,0.11968521,-0.18908823,-0.20615588,-0.28657237,-0.070643805,0.5493472,-0.16360267,-0.34977826,0.13134374,0.33545592,-0.16563025,-0.5117508,-0.1711783,-0.22728886,0.3657867,0.30249116,-0.372646,-0.0306604,0.12179487,-0.64372736,0.18065463,0.18390667,-0.4071881,-0.101680376,-0.40283856,-0.09511182,1.1908921,-0.15851073,0.32719484,-0.35759392,-0.5041607,-1.062574,-0.26162672,0.5316008,-0.0022874575,-0.023994192,-0.652566,0.053076062,-0.15522878,0.05015863,0.14686792,-0.2966083,0.26124188,0.056745637,0.6839041,-0.16876169,-0.550635,-0.047635783,0.24016808,-0.07309022,-0.59906566,0.61383283,-0.11297759,1.0708766,0.0353693,0.0919801,0.38560346,-0.5107781,0.025256285,-0.16903867,-0.22622108,-0.65612906,0.16585834,490 +850,0.520342,-0.2658092,-0.71149826,-0.042771846,-0.5879007,-0.056008488,-0.096246965,0.3785757,0.15514563,-0.49668285,-0.21395816,-0.079818316,-0.011984487,0.14164646,-0.17352246,-0.30862692,-0.062651396,0.39094055,-0.77205586,0.61897314,-0.14964549,0.26729178,0.15878294,0.356113,0.2954142,0.09248778,-0.049624104,0.13472973,-0.030714171,-0.4771037,-0.047859024,-0.05945371,-0.9219084,0.07439216,-0.21435124,-0.59951967,-0.1453206,-0.6103785,-0.4569035,-0.95973897,0.43114412,-0.95015526,0.67767715,-0.08481363,-0.27047506,0.25034347,0.22072256,0.4240508,0.071554296,-0.09261825,0.33438882,-0.22349799,-0.14139092,-0.10558358,-0.018738827,-0.32063246,-0.6644415,-0.15325789,-0.43129587,-0.260253,-0.26540914,0.2535695,-0.37427536,0.07845341,-0.3084297,0.8508887,-0.42905512,0.40600267,0.11334545,-0.06566826,0.11836406,-0.7239402,-0.13500336,-0.18815927,0.3295369,-0.17943175,-0.16471003,0.29939595,0.21992809,0.22956878,0.10460534,-0.25018266,-0.23334736,0.016347952,0.05729741,0.50553393,-0.18664818,-0.23882794,-0.07782537,0.07521797,0.2629691,0.24788284,0.34818223,-0.1587636,-0.03884752,0.042610664,-0.07992603,0.8471523,0.4432211,-0.35266402,0.013933678,0.4174787,0.7464769,0.28156707,-0.243602,0.10220149,-0.135344,-0.51896596,-0.1391526,0.12770559,-0.29677233,0.4455899,-0.23041292,0.29154804,0.51742136,-0.2813084,-0.3639799,0.3997376,0.061439905,0.07066012,-0.19778742,-0.4421239,0.54101175,-0.628527,0.3652792,-0.19760782,0.6434215,0.035050254,-0.72742623,0.28722754,-0.6649964,0.25939295,0.061125796,0.5523723,0.7140949,0.55847836,0.31309298,0.74737245,-0.3277436,0.13204326,0.076957814,-0.3337066,-0.2701782,-0.37076083,0.13324328,-0.45684066,-0.014836639,-0.48355758,-0.15096574,0.0011316066,0.56545824,-0.64044744,-0.43521166,0.20307438,0.8210357,-0.20148681,-0.17186145,1.1494873,0.9169063,1.3280958,-0.0069330237,1.0532962,0.035583157,-0.14975798,-0.09425926,0.037400115,-0.604391,0.31606713,0.37588024,-0.020788796,0.07943753,0.123782456,0.08563437,0.4548775,-0.47931466,-0.1001299,-0.13574518,0.1778128,0.16376296,-0.24735199,-0.53372747,-0.1957118,-0.08980199,0.1646552,0.05745719,0.2763289,-0.23683472,0.43213263,0.19801068,1.3275372,-0.10489905,0.14927368,0.13591151,0.6027379,0.23217303,-0.27924457,-0.012172937,0.17831671,0.32140324,0.21596317,-0.5258543,0.08088184,-0.29985094,-0.4372361,-0.19249535,-0.35969564,-0.49924454,-0.08741468,-0.39461184,-0.39830813,-0.13558333,-0.44279385,0.33343327,-2.4889994,-0.21100879,-0.15751998,0.44294417,-0.1745234,-0.41926524,0.05324167,-0.6664286,0.35358617,0.21790437,0.6793744,-0.6577699,0.5128326,0.51211727,-0.8159016,0.19627966,-0.68788093,-0.21127439,0.039304744,0.23053907,-0.068803094,-0.13847528,0.0576638,-0.04120626,0.52643234,0.1898756,0.15612951,0.39500514,0.47975227,-0.20216607,0.8017002,-0.017350676,0.5064232,-0.41819975,-0.24671058,0.5571878,-0.31308636,0.21486188,-0.3676224,0.021931099,0.7408963,-0.57381684,-1.0611814,-0.6725464,0.03382786,1.2870256,-0.15810134,-0.6032328,0.21340346,-0.58271486,-0.23075263,-0.10160824,0.49784622,-0.06255526,0.016577335,-0.60313433,-0.1349973,-0.15829796,0.041228037,-0.05340628,-0.030796722,-0.625207,0.7465677,-0.15478538,0.53363734,0.23592453,0.19253348,-0.4917909,-0.3979597,-0.0027694304,0.8648353,0.5083235,-0.0020075936,-0.31374136,-0.13252214,-0.2868018,-0.15778744,0.028375706,0.74699074,0.4908948,-0.18190043,0.14585792,0.4341537,-0.014136613,0.19940864,-0.22024387,-0.34805164,-0.34859416,-0.13409854,0.60960805,0.6492029,0.014709805,0.7812063,0.014270608,0.07654638,-0.09798623,-0.62628937,0.39590684,1.0140544,-0.36391136,-0.5005501,0.6924572,0.30919418,-0.33154032,0.4758695,-0.40897623,-0.26487866,0.45606112,-0.049020942,-0.7307547,0.041227,-0.23920207,0.14741032,-0.5308487,0.19518411,-0.5764479,-0.7901376,-0.42315707,-0.27963343,-2.1318777,0.34768367,-0.34568986,0.09848402,-0.16573435,-0.4688889,-0.14255603,-0.43509424,-0.7726801,0.09317122,0.076063976,0.9162715,-0.19493489,0.12303389,-0.24429588,-0.43469325,-0.35888842,0.3132386,0.25444984,0.3956274,-0.17456406,-0.31258163,0.11880133,-0.036098417,-0.35963917,-0.17508478,-0.70783615,-0.46538067,-0.09552752,-0.5933187,-0.46134984,0.6390025,-0.19926326,0.21704586,-0.3445774,0.0036150722,0.15748487,0.10426576,-0.061465774,0.3003358,0.18647893,-0.19285291,0.12006072,-0.10812568,0.25138763,-0.0534465,0.4142822,0.16391653,-0.2623775,0.39008817,0.42782223,0.91332644,0.0080150375,1.1824275,0.333416,-0.19407529,0.29569834,-0.07656846,-0.43156245,-0.79213595,-0.12228539,0.2870216,-0.4845954,-0.55373996,0.16404088,-0.3326119,-0.9390021,0.80634004,-0.0067745545,0.42177102,0.052263767,0.5191385,0.6842404,-0.23430061,-0.13622765,-0.0598723,-0.24326496,-0.54995817,-0.20080298,-0.6653318,-0.5063523,-0.30582735,1.1752257,-0.46335712,0.023626527,0.23275608,-0.33588064,0.19851585,0.3194599,-0.1445522,-0.012645498,0.5529886,-0.15110162,-0.65340406,0.330663,-0.1977008,0.084128715,-0.6329227,0.45309448,0.64462346,-0.60524654,0.520236,0.3616519,-0.12432758,-0.46264783,-0.68016595,0.0316444,0.07998082,-0.2634363,0.44735715,0.36608526,-0.8374467,0.46709546,0.34168124,-0.14513026,-0.9543991,0.7175146,-0.0062193573,-0.49409485,-0.043573257,0.55061626,0.20937105,-0.070693545,-0.27611992,0.23782794,-0.40608212,0.40232623,0.038280766,-0.18946719,-0.03474586,-0.26467738,-0.37593773,-0.81444067,0.16529985,-0.6354923,-0.29227474,0.30534253,-0.079041354,0.058782134,0.5228193,0.3387543,0.41071928,-0.10098243,0.018735593,-0.4094727,-0.45179796,0.4595375,0.47155285,0.58708525,-0.62349415,0.6826981,0.094993465,-0.36610237,0.08285355,-0.0011371473,0.47716287,-0.13772124,0.63401663,0.27446225,-0.112865806,0.015067573,0.76522785,0.25777063,0.4563931,0.025511762,-0.038456842,0.038149346,0.13717079,0.5020166,-0.27494383,-0.81532127,0.20628984,-0.33012328,0.0055382303,0.5601179,0.009494926,0.16269475,-0.11936291,-0.33849752,-0.04282075,-0.0010365596,-0.19750232,-1.246848,0.36250302,0.3045836,1.0943075,0.5250783,0.040673006,0.01846253,0.8496143,-0.29302195,-0.028417692,0.33240503,0.063979074,-0.22914803,0.541265,-0.91126555,0.56627613,0.078921326,-0.05055231,0.06389579,-0.051458117,0.42410913,0.79168534,-0.21547057,-0.108680926,-0.15805756,-0.33550707,0.28890845,-0.4042687,0.14257605,-0.49052128,-0.24439223,0.8726804,0.575698,0.3188472,-0.25811523,0.1662835,-0.003386562,-0.25723782,0.24735884,0.114588894,0.048066746,-0.13569169,-0.51803035,0.072216325,0.4661555,-0.08197377,0.030482167,0.14569597,-0.13670526,0.391543,0.040418237,-0.021142036,-0.14234553,-0.8632006,0.09053004,-0.24092078,-0.350433,0.29875186,-0.037968498,0.21198839,0.3176055,0.0026882563,-0.17466597,0.31673595,0.021729177,0.55730134,0.014719139,-0.006025642,-0.24367958,0.28787157,-0.023545578,-0.16719688,0.21463831,-0.0634318,0.23102961,-0.62077665,0.4331747,-0.07064399,-0.53499234,0.17187603,-0.035697658,-0.07064516,0.57175344,-0.09311918,-0.09397164,0.041505467,-0.114243396,-0.14306176,-0.3621255,-0.07274213,0.14766796,0.07035775,-0.19729292,-0.3941517,0.019190183,-0.17273748,0.5121607,-0.030533478,0.49417457,0.17679645,0.051319867,-0.56264263,0.09202039,0.22744231,0.68031,-0.28856805,-0.10702872,-0.20207958,-0.27428532,-0.36358544,0.5130965,0.0075695417,0.3212644,0.052731026,0.097603254,0.77816564,-0.07291849,1.2768844,0.011915073,-0.33561432,0.07461143,0.56576777,-0.038342457,-0.25864306,-0.25250313,1.0124038,0.5263315,0.040681858,0.09583449,-0.41120687,0.07889414,0.14873473,-0.14984788,-0.118303336,0.13510005,-0.38372573,-0.075953774,0.14535423,0.29895115,0.2115082,-0.19963448,0.17882253,0.68126637,-0.13007341,0.17307079,-0.5931412,-0.40919027,0.390826,0.2349331,-0.2137479,0.04289932,-0.51052314,0.27720734,-0.6038322,0.22345708,-0.30316338,0.17422909,-0.28995946,-0.28037512,0.2564859,0.12949002,0.49223718,-0.24951144,-0.43715248,-0.17727064,0.3561237,0.3800098,0.04421547,0.57428384,-0.31800416,-0.010869493,0.10545873,0.31293663,0.6521382,-0.073328026,-0.16222993,0.12866066,-0.45703158,-0.74508214,0.544215,-0.41386577,0.15358488,0.22329189,-0.011604215,-0.37540996,0.17567928,0.18700503,-0.09520978,-0.020832727,-0.92225426,-0.05131994,0.30477703,-0.33135262,-0.004577182,-0.34980062,0.116042465,0.63483787,-0.13919967,-0.32816657,-0.13793826,0.2604795,-0.14755498,-0.56209475,0.0892168,-0.44424295,0.26135883,-0.17780845,-0.4560915,-0.23082662,0.036246758,-0.6063269,0.16951312,0.14207298,-0.28096363,0.12815751,-0.29245093,0.11214453,0.8342605,-0.30387908,0.14928927,-0.1888455,-0.52111083,-0.610653,-0.10508738,0.084987104,0.16458859,-0.02874249,-0.7656832,-0.23407543,-0.32794634,-0.3436929,-0.05370428,-0.47249314,0.39311504,0.14791656,0.46356666,-0.10077146,-1.0127312,0.35031286,0.018599981,-0.06963225,-0.44009387,0.44424388,0.08179615,0.7016174,0.03962819,0.16505136,-0.031358164,-0.46879444,-0.07151509,-0.067833595,-0.14404573,-0.5642708,-0.12608342,492 +851,0.46343616,-0.41619137,-0.5334911,-0.04582523,-0.2059081,0.033180084,-0.41266504,0.30400503,0.21699607,-0.35076296,0.028170833,-0.027866667,0.00012880564,0.26644698,-0.15996227,-0.5095085,0.043964665,0.12509392,-0.6371346,0.61034,-0.2502394,0.002171417,-0.27317557,0.45502925,0.12047485,0.24100764,0.005003271,0.11039164,0.02973693,-0.24606864,0.034425173,0.108069815,-0.7397359,0.267102,-0.040187757,-0.3620628,-0.12381408,-0.46765187,-0.516337,-0.8173032,0.32585192,-0.8673286,0.622765,0.024660408,-0.3239994,0.13093962,0.17525877,0.44434473,-0.1088445,-0.012281497,0.2596068,-0.21885307,-0.057211816,-0.23729807,-0.053971227,-0.4887713,-0.6762538,-0.04310869,-0.4591874,-0.24275239,-0.35620484,0.31877723,-0.4398429,-0.012640317,-0.19730055,0.74860185,-0.50354177,0.2694193,0.20060356,-0.079644404,0.480902,-0.65115136,-0.098038085,0.00019278626,0.28665486,-0.11013257,-0.22500987,0.11879108,0.2536586,0.30564234,0.03226876,-0.1712749,-0.2378589,0.05898133,0.07219868,0.42105618,-0.1867422,-0.34144488,-0.14350563,-0.007769257,0.09257553,0.14042164,0.2617413,-0.27394092,-0.08378158,0.24835563,-0.17645437,0.62975496,0.5526455,-0.34797788,-0.1993726,0.32182837,0.64089185,0.14774446,-0.33639184,0.12300553,0.09134787,-0.50706685,-0.15421908,0.12348837,-0.16385192,0.4826397,-0.26966572,0.42535236,0.73472095,-0.17297788,-0.22587956,0.20226765,-0.01257513,-0.04969449,-0.34574106,-0.22001529,0.20437978,-0.47303525,0.29161656,-0.28565535,0.76458454,0.09755877,-0.7600867,0.34548306,-0.6159964,0.24995913,-0.06314022,0.42919055,0.7737654,0.4846519,0.41152176,0.73950815,-0.35510036,0.08029193,0.04106042,-0.3625066,0.1776809,-0.3319828,0.0670861,-0.5938218,-0.17261016,-0.21713807,-0.107873686,-0.0031729538,0.4318676,-0.51340675,-0.08076424,0.3118243,1.0577928,-0.15638064,-0.121298514,0.91375417,1.1084557,1.1843578,0.0892089,1.0188146,0.25975254,-0.23432474,0.14478534,-0.1075446,-0.75351554,0.28852403,0.32085472,0.37628773,0.19146578,0.15984027,-0.034022693,0.6289808,-0.47994757,0.1092942,-0.17998771,0.13045973,0.21592279,-0.4636273,-0.3201755,-0.048023224,-0.07370349,0.045530308,0.024218261,0.119648,-0.16886361,0.49031413,0.07408923,1.5420517,-0.15562695,0.0488784,0.10033467,0.58218235,0.22995172,-0.3333731,0.038370788,0.07618651,0.38531113,0.30980897,-0.51695865,0.30236182,-0.19945621,-0.43626007,-0.24387419,-0.27361688,-0.2947319,-0.17135215,-0.45676115,-0.28027868,-0.09075758,-0.20032358,0.31028742,-2.8569298,-0.21270423,-0.1711816,0.357546,-0.06439507,-0.17167287,0.15164796,-0.4980588,0.45185533,0.35440886,0.4672196,-0.64999574,0.6252162,0.53507763,-0.6124859,0.08668393,-0.76832837,-0.21745062,-0.18905018,0.565708,0.18669651,-0.11848272,0.01837599,0.31024578,0.49370492,0.15846312,0.08240223,0.286142,0.44780335,-0.25230154,0.5658722,0.09666124,0.49863645,-0.14775172,-0.2191227,0.2414648,-0.39615682,0.05750808,-0.11031673,0.022551244,0.5301773,-0.323053,-1.0910935,-0.8042343,0.10052028,0.9403901,0.0121413665,-0.6622489,0.24534297,-0.42801142,-0.33209822,-0.030325308,0.51125026,-0.09328166,0.06546557,-0.85539764,-0.029545298,-0.30219343,0.22889544,0.048025925,-0.3168564,-0.71415824,0.9148715,-0.13822562,0.50021124,0.36102676,0.19747885,-0.40646517,-0.51467556,0.0052678916,0.8438644,0.35884842,0.08570842,-0.39070264,-0.191845,-0.20005314,-0.10637534,0.0046396516,0.595277,0.46340445,-0.14469723,0.23290907,0.3800199,-0.18445623,0.014897303,-0.12915127,-0.4194934,-0.17601834,-0.15643303,0.5797371,0.8308666,-0.11502046,0.4189744,-0.22065772,0.27233252,-0.14103599,-0.4590231,0.507496,1.1508747,-0.15043141,-0.5122412,0.59201056,0.3127133,-0.27241215,0.3575655,-0.5057221,-0.17155762,0.2776836,-0.12712757,-0.5613349,0.11191123,-0.4916577,0.042040367,-0.70832115,0.45197168,-0.39742208,-0.79985094,-0.6242239,-0.30626038,-3.7250443,0.31722477,-0.3646467,-0.18854026,-0.13861422,-0.18335326,0.23685052,-0.57972413,-0.5623389,0.1517592,0.056946233,0.8317762,-0.14730941,0.12612684,-0.2759514,-0.19054453,-0.49926463,0.2731675,0.24268062,0.20975114,-0.022387,-0.32688817,0.024546495,-0.10774497,-0.48698592,-0.024422375,-0.65907955,-0.49145696,-0.04933967,-0.47558418,-0.28711233,0.66201574,-0.13429323,-0.023180187,-0.50078845,-0.034283906,-0.1759916,0.4326795,0.12481771,0.03984176,-0.023246577,-0.12552826,0.07115733,-0.2855219,0.16032003,-0.08490765,0.42682424,0.25967908,-0.114581384,0.17611535,0.57091933,0.5731153,-0.023536662,1.0453686,0.52916586,-0.091037594,0.1920998,-0.21585245,-0.34193027,-0.62824243,-0.26289684,0.23409784,-0.49046817,-0.44943354,0.18818368,-0.47702408,-0.5887503,0.54927933,-0.049188714,0.18364494,0.15643124,0.3006802,0.52399445,-0.098217845,-0.20092504,0.009714666,-0.1981089,-0.49450204,-0.15368499,-0.5700622,-0.74598056,0.036052655,0.97552615,-0.18456827,0.13098292,0.31998095,-0.225622,-0.031517368,0.35613278,-0.23402606,0.095436335,0.52758676,-0.23708938,-0.70537883,0.2705902,-0.36425602,-0.16134161,-0.76070195,0.33135107,0.67132264,-0.4453325,0.72823113,0.40398395,0.19927652,-0.40511957,-0.511401,-0.026091957,-0.104281835,-0.24410348,0.45683596,0.17841573,-0.9063821,0.53753746,0.3857272,-0.21468906,-0.6630584,0.5641543,-0.06408065,-0.33676553,-0.06633223,0.30406716,0.046921562,-0.16079198,-0.29485142,0.38692394,-0.43485495,0.38842908,0.061273098,-0.11793,0.04676796,-0.0911181,-0.113757074,-0.63063025,-0.1642934,-0.5350903,-0.33478472,0.2111485,0.024201414,0.15051363,0.37785196,0.052714605,0.41470793,-0.15559644,0.0460823,-0.23191452,-0.36410654,0.29780403,0.51603407,0.49144375,-0.56787986,0.5740214,0.13247068,-0.08901992,0.14992142,0.15409757,0.4681623,-0.06992119,0.71120566,0.008774404,-0.047442097,0.123664945,0.85743254,0.176068,0.80698806,0.06613154,-0.17726319,0.27740696,0.113764465,0.36563635,-0.013047864,-0.679547,0.30612722,-0.31991342,0.29017854,0.42456737,0.037046563,0.3144534,-0.091571845,-0.39088318,-0.025648003,0.30480728,-0.013437018,-1.5597771,0.37570855,0.3558724,0.94366795,0.40420008,0.034075454,0.02236695,0.9020378,-0.016504154,-0.0020265777,0.3221128,0.23180752,-0.29838952,0.61502457,-1.0258936,0.28256017,0.04933014,-0.024400821,-0.054602932,-0.13350268,0.36749783,0.71365595,-0.241943,0.013254997,-0.14137588,-0.31780127,0.25645083,-0.48209608,0.2808678,-0.27864686,-0.28470936,0.70484525,0.7218087,0.3818756,-0.19435465,0.08658904,0.02168403,-0.062185418,0.078652956,0.13524163,-0.07925492,0.0178267,-0.7957802,-0.17136814,0.47280505,-0.16043425,0.24749935,-0.087727375,-0.17487304,0.3340297,-0.156047,-0.041410007,-0.059842408,-0.65209967,0.09098617,-0.1466032,-0.44566515,0.64101785,-0.015374725,0.21766834,0.241051,0.06363401,-0.14174102,0.37998128,-0.13290058,0.6023764,0.19153188,0.030022025,-0.42776036,0.024472052,0.13026355,-0.28574437,-0.10429289,-0.33880785,0.31004056,-0.47380546,0.39789262,0.040940244,-0.6336801,0.3000668,0.00594868,0.011340615,0.6648161,-0.2605625,-0.25930616,0.2198899,-0.08640623,-0.14420389,-0.29339787,0.049055066,0.27614114,0.1806974,0.0016750097,-0.119725145,-0.115529954,-0.21279943,0.45676574,0.11065712,0.5935686,0.55450344,0.027138317,-0.29476595,-0.23618281,0.14007105,0.6890221,-0.10156027,-0.2837111,-0.24875307,-0.7428369,-0.41940007,0.31651744,0.07537297,0.41390204,0.09151485,-0.20438255,0.6703569,-0.104909,1.2073326,0.015194446,-0.40472162,0.20139123,0.42550936,0.1001557,-0.047634836,-0.42899668,0.77601355,0.6196199,-0.19320162,0.0007875909,-0.4179332,-0.06560879,0.05766691,-0.1701535,-0.10173776,0.018268669,-0.7687702,-0.03704625,0.20154835,0.29290217,0.33851555,-0.19065881,0.15502602,0.476935,-0.13721412,0.102933645,-0.55687696,-0.15851663,0.38869748,0.35556945,-0.12361789,-0.038651723,-0.60623497,0.25955942,-0.38248512,0.1269208,-0.3949809,0.23438637,-0.10834528,-0.3236339,0.28738096,-0.13041908,0.3681194,-0.26713228,-0.10938164,-0.1117953,0.47862196,0.4765062,0.1430274,0.72557735,-0.20691466,0.031551372,0.12282276,0.559274,0.85327554,-0.34989873,-0.0855879,0.2900679,-0.35976994,-0.63736075,0.38089052,-0.2369953,0.1807824,0.16849244,-0.18248408,-0.58252084,0.09914061,0.17218183,0.036076378,0.011727077,-0.68639994,-0.29265866,0.255412,-0.4730517,-0.10793165,-0.22243236,0.13122584,0.6011185,-0.2331355,-0.124781586,-0.06349374,0.39988616,-0.14337581,-0.51258576,-0.053846404,-0.34792122,0.4620259,0.011042863,-0.51804775,-0.20000468,-0.0039871335,-0.5784947,0.18955976,0.22588438,-0.34303942,0.10584915,-0.32121763,-0.2368396,0.8531156,-0.4380573,0.061003704,-0.61797374,-0.38553837,-0.75207233,-0.10894898,0.19123806,0.15330751,-0.007387212,-0.6811579,-0.2759236,-0.17854422,-0.12199986,0.044696715,-0.6079064,0.42457876,0.06278818,0.5599506,-0.07680101,-0.7627065,0.18496944,0.12975466,-0.16203557,-0.66860276,0.7988685,-0.14345448,0.7440899,0.025699401,0.36915568,0.08019576,-0.3411223,-0.0046224445,-0.23585035,-0.3356665,-0.86430097,-0.057143062,494 +852,0.4993614,-0.52453095,-0.6405702,-0.19302619,-0.20565088,0.017973565,-0.23986216,0.293776,0.11151024,-0.47147074,-0.16933481,0.022182494,-0.0014487008,0.46190706,-0.14149065,-0.84546113,-0.08859652,-0.011795341,-0.48838553,0.4250857,-0.60410094,0.32896617,0.0039023906,0.48934996,0.099514484,0.33806786,0.20425999,-0.069855645,-0.12112283,0.062181797,-0.08554045,0.2238305,-0.7028679,0.19185303,0.22230999,-0.4561727,0.030653298,-0.43123963,-0.3083536,-0.65025336,0.32770675,-0.9053592,0.58898246,0.13211039,-0.35258362,-0.026130551,-0.21469301,0.30916944,-0.61188227,0.2903035,0.09373236,-0.24762322,0.005221226,-0.3435935,-0.23652351,-0.39729846,-0.6384265,-0.011516675,-0.5735945,-0.12580536,-0.04353434,0.10448303,-0.40063366,-0.040005505,-0.38246012,0.5406416,-0.609557,-0.19744629,0.24971366,-0.12763706,0.22559637,-0.565579,-0.18722223,-0.26036927,0.12879096,-0.1084793,-0.3880429,0.039679233,0.18453635,0.6754852,0.19256978,-0.31282035,-0.37244025,-0.035591196,0.24418916,0.51530606,-0.17088576,-0.45962515,-0.26870435,-0.03249641,0.28868547,0.23513447,0.054646295,-0.45512363,0.05599167,0.10860199,-0.17074454,0.54828733,0.5670833,-0.21303982,-0.30439812,0.27982673,0.5539916,0.040811434,-0.049316343,0.33350554,0.00839815,-0.46095213,-0.28991887,0.3894924,0.15611327,0.6487446,-0.19390722,0.27251697,0.79829246,-0.33247247,-0.021631658,-0.06433573,-0.13897012,0.088286005,-0.22321981,-0.31747425,0.2784065,-0.5165944,0.08384811,-0.39260408,0.78951234,0.19258142,-0.8873988,0.3003686,-0.48553458,0.19937132,-0.213893,0.8682526,0.71893173,0.4642385,0.25290382,0.70351344,-0.69385093,0.12440914,0.14666475,-0.37095556,-0.095794745,-0.10218493,-0.07919801,-0.37789688,-0.04459876,-0.19873166,-0.12458765,-0.13412966,0.4597012,-0.47380757,-0.02787424,-0.1828571,0.59744817,-0.43043885,-0.052605186,0.9886713,1.0376182,1.053196,0.098294295,1.2792009,0.45234847,-0.12750575,0.06281814,-0.21362258,-0.5772253,0.2684324,0.481956,0.22386025,0.55009407,-0.0024424095,-0.07218271,0.47801006,-0.24786146,0.16377948,-0.23263335,0.1502163,-0.092299044,-0.15404513,-0.56160563,-0.1100212,0.06965807,-0.037640862,-0.17289847,0.31311062,-0.18214393,0.6896911,0.021004893,1.4127522,-0.05519122,0.14291327,-0.09298015,0.4206419,0.20356452,-0.24814947,0.094800055,0.28936377,0.60199404,0.035607353,-0.8823538,0.04093905,-0.31551948,-0.6152709,-0.2713348,-0.399628,0.08763859,-0.3285258,-0.6020859,0.053506706,0.038547352,-0.27580357,0.23666398,-2.243103,-0.26643217,-0.06517772,0.32834914,-0.20216839,-0.35447666,-0.06654274,-0.42382732,0.25917366,0.48679557,0.43273187,-0.91326445,0.53088003,0.5058736,-0.31706628,0.00023096055,-0.8070574,-0.17593347,-0.18103445,0.32423195,-0.15452538,-0.06592751,0.06594856,0.09394977,0.67476934,-0.16259833,-0.057632234,0.045811485,0.5934177,0.011791264,0.61386496,0.22987634,0.5503816,-0.5000685,-0.086230434,0.42336652,-0.41567865,0.3324189,0.14110671,0.1775168,0.35985556,-0.6081373,-0.8931981,-0.70021635,-0.42651176,1.1646641,-0.36344823,-0.41901794,0.19832355,-0.16717225,-0.32030046,-0.24239628,0.3913689,-0.32744798,-0.029070335,-0.8584772,-0.0016644945,-0.10975248,0.20790692,-0.069435805,0.11516055,-0.26193854,0.6272358,-0.19972758,0.47488582,0.5677574,0.20866053,-0.12992065,-0.58634627,0.08783426,0.9393453,0.33852378,0.1765439,-0.28122172,-0.1992587,0.014022599,-0.002403438,0.105068445,0.5797402,0.93381506,0.021581432,0.110175826,0.3714129,-0.10922339,0.112595625,-0.2595029,-0.4107221,-0.28754863,0.22071011,0.62726736,0.62196296,-0.32507506,0.4936492,-0.12933217,0.25569096,-0.058161687,-0.45733523,0.59254366,1.1548194,-0.08504636,-0.21496814,0.6224411,0.4891955,-0.67249876,0.44138741,-0.72167593,0.042565748,0.5758803,-0.17143582,-0.42260575,0.19421445,-0.3493255,0.16459294,-1.0045431,0.40504026,-0.28789297,-0.6369382,-0.592029,-0.24390812,-3.5310354,0.26692203,-0.37137294,-0.24010836,-0.12825659,-0.42286345,0.24946052,-0.85417366,-0.5458463,0.27396917,0.13070856,0.37007606,0.015383795,0.12388459,-0.4006665,-0.061826333,-0.18316191,0.24437277,0.2203923,0.118504375,0.0015399456,-0.34988406,-0.033413846,-0.16997935,-0.57155484,0.08043623,-0.58061355,-0.6463675,-0.12423556,-0.615902,-0.34512123,0.73233265,-0.05684785,-0.124907315,-0.10675516,-0.03429011,-0.28366622,0.45179144,0.050648343,0.3099304,0.06526465,-0.06653326,-0.17145602,-0.30442628,0.09732163,0.06277903,0.4024664,0.24937749,-0.3943604,0.28254095,0.71475583,0.78373903,0.08747738,0.5378195,0.38612735,-0.044730738,0.29073706,-0.3467051,-0.3091301,-0.85047513,-0.47115585,-0.2823098,-0.5194978,-0.5570919,0.059948266,-0.32221723,-0.9128135,0.57973975,0.006307187,0.276064,-0.10030771,0.36848494,0.41130814,0.0053775706,-0.02347076,-0.22090203,-0.21537317,-0.53313977,-0.34711495,-0.79136634,-0.7571447,0.18114668,1.12166,-0.034005433,-0.09118051,-0.0040522516,-0.45873603,0.16426583,0.2941161,0.08768494,0.26535347,0.22753887,-0.16291584,-0.60638684,0.35441867,0.052136708,-0.28488764,-0.5447442,-0.121259846,0.8361657,-0.6990425,0.77850085,0.29911435,-0.055457886,-0.035320923,-0.62947315,-0.43090308,0.12582342,-0.017629514,0.6037068,0.1894297,-0.70631456,0.31511095,0.32995367,-0.074641235,-0.5960447,0.39525452,0.0036232274,-0.18999599,0.12584396,0.43901715,-0.08750826,-0.16058299,-0.16278672,0.31217018,-0.46914646,0.23367858,0.35878053,-0.06389292,0.30168223,-0.035371277,-0.26489946,-0.74830943,-0.0158338,-0.8227079,-0.11999971,0.2222532,0.02758702,0.22032027,0.0012089213,0.06429594,0.541764,-0.4445248,0.13434677,0.04333042,-0.39019442,0.26082093,0.55212426,0.16914056,-0.53812474,0.61929065,0.1830294,0.04521576,-0.051640898,0.35508272,0.45866346,0.29131585,0.44516048,-0.012040894,-0.0885605,0.2887354,0.8621581,0.3092618,0.7557278,0.38032636,-0.13356082,0.38059327,0.23362432,0.33458373,-0.15743934,-0.08641412,0.11370777,0.29027113,0.19075592,0.4806423,-0.039522085,0.5308934,-0.29364672,-0.09096133,0.2895867,0.26036057,-0.056853533,-1.1354244,0.24843115,0.22991507,0.63137406,0.54641944,0.08389958,-0.08352023,0.4226749,-0.39960155,0.005800287,0.3636265,0.13042101,-0.57749265,0.7800224,-0.5031924,0.35104966,-0.2265122,0.16202737,-0.028956363,0.06511859,0.4103371,0.7529022,0.022022093,-0.00022647779,-0.06298473,-0.06924351,0.013204694,-0.62775517,0.064645104,-0.470404,-0.30783102,0.794625,0.49576774,0.35691395,-0.08218012,-0.19045796,0.18520927,-0.06643113,0.29665866,-0.073752716,0.0132722035,0.049592227,-0.6177211,-0.3913047,0.5425258,-0.007377515,0.20436817,-0.05137968,-0.41703868,0.38427404,0.0059494376,-0.23274446,0.04854768,-0.6558129,0.12427407,-0.48907685,-0.54067504,0.3186442,-0.3999051,0.1378284,0.24298346,0.08776033,-0.5000604,0.06901966,0.04333785,0.8672678,-0.06366845,-0.22843993,-0.40840045,0.0701325,0.4156628,-0.34848508,0.100789316,-0.30658877,0.17527731,-0.62519664,0.42325506,0.0055918843,-0.4180862,-0.10420781,-0.050730154,-0.04084143,0.565515,-0.32959536,-0.30730549,0.10301901,-0.09005741,-0.28229442,-0.312084,-0.24976148,0.37070575,0.053724747,0.13268243,0.13665994,0.0396686,-0.0052458644,0.4611297,0.23835717,0.2568329,0.37316844,-0.10117433,-0.54165965,-0.1014267,0.12539828,0.35235667,0.24694002,-0.16173273,-0.3463802,-0.4906589,-0.18314809,0.17086244,-0.27485648,0.33512464,-0.010449062,-0.5640379,0.9491031,0.15452062,1.2930257,-0.036763106,-0.3961326,0.006306559,0.48066974,0.1146124,0.00092152756,-0.1642904,1.0058953,0.5741555,-0.19179118,-0.30819634,-0.5687682,-0.36809552,0.17608742,-0.30302432,-0.28485477,-0.099648595,-0.7261159,-0.09996287,0.26587802,0.14048503,0.17975198,0.056310367,0.14426541,0.13805097,0.013138414,0.38555232,-0.5847197,0.1218349,0.17462908,0.13755943,0.020893475,0.09332079,-0.4250014,0.32303914,-0.6940224,0.3825264,-0.4715338,0.17741273,0.086616315,-0.2834515,0.26371494,0.059113335,0.22483851,-0.4074115,-0.284589,-0.32738855,0.8359904,0.16048272,0.39079687,0.83127713,-0.3075176,0.15219049,0.13249806,0.43873847,1.4162006,-0.06608615,-0.10885068,0.32398906,-0.31419334,-0.78523713,0.2569466,-0.32204852,0.33324566,-0.19793268,-0.44329453,-0.62042063,0.15346353,0.17548622,-0.1185837,0.18738091,-0.53252214,-0.3244343,0.51283926,-0.4478674,-0.25187686,-0.38746095,0.2471602,0.70434374,-0.47150633,-0.31144688,-0.043369222,0.3767183,-0.29320085,-0.37050724,-0.028696133,-0.24355714,0.32352456,0.11080479,-0.35664198,0.080036364,0.2751111,-0.2846638,0.2011009,0.5507856,-0.32949972,0.13588591,-0.0946249,-0.4107801,1.0683262,-0.081864916,0.081457496,-0.56785005,-0.49161342,-1.0512761,-0.4415667,0.46336463,0.20626305,0.05736346,-0.87218803,0.21393521,0.035754096,0.08760336,0.012326658,-0.5123022,0.4895537,0.059185922,0.5368712,0.05066358,-0.8067798,0.082265735,0.22561389,-0.22916047,-0.55669504,0.67747086,-0.16796398,0.6900237,0.09077088,0.25338888,0.11768945,-0.6172897,0.20156397,-0.40437606,-0.38784918,-0.7195093,-0.0491136,515 +853,0.46489426,-0.080914535,-0.5603358,-0.01607945,-0.45637348,0.08908556,-0.26436177,0.044016838,0.38521352,-0.75172263,-0.3867313,-0.20551966,0.056307774,0.1923141,-0.18509795,-0.43364254,0.1748556,0.4596932,-0.6606428,0.4988626,-0.19012944,0.2641181,0.23063894,0.26206836,-0.01952676,0.08608926,0.37358892,-0.22377402,-0.3168204,-0.1538834,-0.11754706,0.20217796,-0.77856225,0.50253373,-0.47575536,-0.32173392,-0.0072146654,-0.5896167,-0.44256935,-0.73573565,0.21753854,-0.88243335,0.6038023,0.28327024,-0.23768939,0.056103896,0.24824683,0.10862449,-0.04261231,0.17465484,0.21968524,-0.48658827,-0.2683849,-0.29916972,-0.42565468,-0.5340615,-0.5896616,-0.0050404766,-0.2819147,0.182018,-0.2813431,0.20310038,-0.16047262,-0.047460306,-0.15438607,0.36836848,-0.21008527,0.13451049,0.26531217,-0.23376715,0.16443649,-0.6718289,-0.28138146,-0.017727332,0.424143,-0.012113555,-0.23064832,0.35057512,0.19576983,0.68962526,0.11399468,-0.3238023,-0.32918757,0.17151435,0.22325128,0.43001652,-0.33970594,-0.18625121,-0.24973607,-0.2716731,0.329667,0.31041396,0.09354269,-0.5253436,-0.012679678,-0.35184297,0.054911237,0.05773489,0.6586571,-0.31090614,0.0068746805,0.3483177,0.28474793,0.2169454,0.099553324,0.082379304,0.1161429,-0.52076274,-0.17792624,0.10878762,-0.1590911,0.72354037,-0.021502987,0.26434448,0.44119433,0.13356102,0.047438044,0.2885491,0.29458627,0.0523587,-0.17253953,-0.2719183,0.5270502,-0.64132607,-0.07574615,-0.3079477,0.76159424,0.0014789067,-0.6927111,0.24807817,-0.5106454,0.08854165,0.09024923,0.4909807,0.59468263,0.75402117,0.014966738,0.9606848,-0.69132215,0.0472503,0.012857415,-0.18665366,0.07484126,-0.18246438,0.22764957,-0.49222812,-0.12141687,0.025027692,0.12098161,0.035447884,0.613228,-0.30517924,-0.33783832,0.19334882,0.9060604,-0.25201973,-0.022665525,0.58435315,1.1401585,0.9788354,0.18903248,1.5388894,-0.0072895787,-0.13219666,-0.3103596,0.16310988,-0.9819463,0.25526282,0.22338028,0.042497616,0.12813662,0.39810362,0.018059308,0.2616624,-0.57643384,-0.14252296,-0.23102057,0.27633688,-0.113161355,-0.050904114,-0.27999,-0.3911244,0.03235189,-0.064794324,0.0008562605,0.29015294,-0.21404171,0.3385719,0.16080149,1.3648256,-0.320645,0.27970013,0.11882273,0.09532428,0.20559092,-0.19784229,0.004360378,0.12105187,0.15651761,0.012039016,-0.24365556,-0.11202011,-0.27928132,-0.4955304,-0.16677962,-0.08323633,-0.19176678,0.046653774,-0.37176636,-0.44686827,-0.14074804,-0.54765254,0.6512199,-2.2453876,-0.07589967,-0.1630513,0.5412848,-0.3218253,-0.18296646,-0.27713364,-0.52281183,0.51837677,0.18368463,0.32399395,-0.5439763,0.2422895,0.54591084,-0.578328,-0.16907929,-0.71551675,0.0968704,-0.055506814,0.110830724,0.0265795,-0.3514026,0.007447183,-0.11159446,0.29818112,-0.0069809607,0.14288606,0.4644545,0.4358708,0.10847229,0.25556374,-0.054175083,0.60609835,-0.6909468,-0.31206045,0.37369108,-0.48038638,0.2921957,-0.096880086,0.10572141,0.6683199,-0.5248725,-0.5227189,-0.73812073,-0.23407884,0.83112764,-0.25650468,-0.51873446,0.23231298,-0.14604937,-0.25423166,0.08191677,0.66606796,-0.041495055,0.2580029,-0.80864066,-0.17352879,0.019924039,0.28494594,-0.042050485,-0.12615202,-0.6553001,0.7910448,-0.009698613,0.5607448,0.6268596,0.3028841,-0.27517852,-0.30020997,0.12188426,1.004996,0.36885405,0.24371439,-0.28643677,-0.05198429,-0.3279193,-0.32074842,0.17714204,0.52182144,0.5699978,-0.3660129,-0.025262676,0.38761047,0.30034354,0.08513698,-0.14527698,-0.45281252,-0.26750633,-0.18114348,0.53210276,0.96619636,-0.058530796,-0.027107084,-0.23836224,0.31860077,-0.2664652,-0.42971873,0.6978461,0.9160096,-0.15142627,-0.19475032,0.7145017,0.54189533,-0.3171321,0.49634567,-0.7034827,-0.6649735,0.27364004,0.0046206363,-0.5829501,0.061549913,-0.38981676,0.22513403,-0.65547097,0.6720672,-0.32873434,-0.43710634,-0.59927315,-0.16533104,-1.7507143,0.26565364,-0.36301747,-0.027615448,-0.2086739,-0.044673342,0.0563546,-0.46766067,-0.5364134,0.3017448,0.009602994,0.6682985,-0.12741886,0.26870412,-0.20931412,-0.2663159,-0.47533345,0.19083948,0.10463367,0.19203442,0.022080516,-0.3960723,0.030484227,-0.12454957,-0.0843815,0.031953633,-0.8895278,-0.32276428,-0.2435946,-0.4890798,-0.4096608,0.6088092,-0.5524445,-0.028436167,-0.40381217,-0.022891497,-0.23442583,0.22978444,0.089727335,0.29387847,0.002704922,-0.24089484,-0.28212208,-0.20332426,0.3552821,0.17055173,0.1445942,0.70120215,-0.41180262,0.07748502,0.20294221,0.7574566,-0.27845147,0.92737675,0.2969319,-0.013705641,0.285651,-0.10696995,-0.46717462,-0.5616616,-0.16529745,0.021299222,-0.54177195,-0.32253495,0.16121288,-0.33162138,-0.7957905,0.60897803,0.22415133,0.15095507,0.12712573,-0.046708494,0.2796847,-0.46710315,-0.27374157,-0.047111493,-0.08082888,-0.39711538,-0.3982537,-0.6330051,-0.47210178,-0.0076304176,1.0754668,-0.105659746,0.16578595,0.6781318,-0.039883774,0.20365252,0.12022341,-0.15145242,-0.16818516,0.6783962,0.27476498,-0.62972504,0.5522768,0.10688049,-0.12395001,-0.58078915,0.4341909,0.5852459,-0.585213,0.7371262,0.61037654,0.13749798,-0.32548708,-0.7700227,-0.40729317,-0.3086619,-0.28522035,0.35533366,0.22403616,-0.7896617,0.27110016,0.31770965,-0.7098362,-0.8314062,0.43259302,-0.12159028,-0.20684119,0.16241784,0.42198125,-0.060501207,-0.008413166,0.2311673,0.2891141,-0.47239017,0.5595214,0.1327994,-0.031207347,0.2871298,-0.3120229,-0.49383664,-0.7499152,0.01292979,-0.4692813,-0.40572098,0.32028982,0.02832134,-0.17734228,0.25407416,0.38359413,0.3482376,-0.322956,0.1488853,-0.12460189,-0.17708498,0.3787446,0.315532,0.7049379,-0.42522183,0.5413931,-0.13885303,-0.036403816,-0.28904346,0.21832292,0.3186312,0.22849102,0.3884997,-0.23989932,-0.11172005,0.056751233,0.98504084,0.04741883,0.26667103,0.16760385,-0.050162327,0.30840763,0.23826714,0.18536274,-0.1173087,-0.79522616,-0.015196408,-0.4372847,0.090374805,0.27509904,0.020029379,0.34342656,-0.09815777,-0.19723046,-0.113595925,0.1017978,0.11990281,-1.5270268,0.30107477,-0.057876673,0.79333115,0.49804425,0.015057147,-0.1312614,0.7143955,0.0052443817,0.0890399,0.27054444,-0.27773845,-0.26565006,0.51681185,-0.5429511,0.14967549,-0.10963262,-0.062202673,0.062401142,0.055060238,0.33075714,0.7308932,-0.099045314,0.0069638393,-0.2592462,-0.33342686,0.19892804,-0.32529545,0.2865139,-0.4461052,-0.4996383,0.6929156,0.4171134,0.43475112,-0.4175663,-0.018594196,0.014516582,-0.15337233,0.21830434,0.25861263,0.042130377,0.06705863,-0.631347,0.1828109,0.6637067,0.18932365,0.034155365,0.10022005,-0.3173081,0.16455004,-0.3323743,0.022530103,-0.15426244,-0.9550707,0.087630056,-0.6273313,-0.20688975,0.23572855,0.10781617,0.05584355,0.21049552,0.052021146,-0.1520134,0.51057464,0.11125171,0.83902043,0.26768914,-0.18626618,-0.2547226,0.39258957,0.22002034,-0.17402194,0.37396002,-0.19636218,0.20385163,-0.52415353,0.37659335,-0.05005924,-0.040785324,0.42371014,-0.014425139,0.095285594,0.6017681,-0.037577588,-0.11368971,0.18443038,0.110530734,-0.3973572,0.004981642,-0.22509044,0.13860776,0.114387214,0.05895633,-0.14183067,-0.3335669,-0.28807297,0.06753692,0.1322214,0.3236408,0.36518702,0.085925065,-0.39612627,0.2773756,0.20503211,0.5889208,0.05433513,-0.17870636,-0.11503763,-0.38558844,-0.40337062,0.26209906,-0.040086415,0.117525555,0.07054291,-0.19847937,0.83474094,0.11844192,1.067824,0.17721815,-0.09756365,-0.09664213,0.57114416,-0.17067377,-0.20348053,-0.399546,1.0003939,0.75110966,-0.073875524,-0.020741686,-0.15290315,-0.004430771,-0.02332878,-0.27370223,-0.1911835,0.013797902,-0.7550661,-0.09635517,0.040866405,0.3326392,0.052912742,-0.26716563,-0.040285736,0.49654838,0.24805696,0.16019215,-0.6342507,-0.31459832,0.30224597,0.30864963,0.14581512,0.2888073,-0.32831055,0.42033625,-0.67349845,0.05373319,-0.31841996,0.027989013,-0.2286833,-0.32681745,0.15576322,0.08592079,0.4440948,-0.3906866,-0.13090356,-0.1522705,0.36935106,0.23304224,0.41916445,0.76356906,-0.04897285,-0.09084255,0.045003552,0.51515335,0.93093514,-0.4949402,0.096994184,0.497403,-0.46582285,-0.6509005,0.31229964,-0.48072314,-0.021643033,-0.22061078,-0.41284332,-0.39269698,-0.011224274,0.09085085,-0.104284674,-0.06427384,-0.8420165,0.08343502,0.3023015,-0.1777158,-0.370899,-0.19103883,0.2665255,0.47950792,0.048566118,-0.2493905,0.11260132,0.10974938,-0.2959933,-0.6647978,0.056953203,-0.5674863,0.21002771,0.13501437,-0.46325707,-0.14604479,-0.10729282,-0.5789389,-0.018849293,0.0023309987,-0.3142484,0.0114500625,-0.29038313,0.038688857,0.8089847,-0.027377367,0.28414705,-0.49172142,-0.42116585,-0.9721172,-0.18535225,0.10533663,0.2180149,0.016108578,-0.539222,-0.29063,-0.22805469,0.13413133,-0.034631494,-0.3758278,0.40240347,0.12376917,0.43609032,-0.23472027,-0.76739854,0.20556982,0.23956211,-0.22504096,-0.27197757,0.41881976,-0.047708612,1.0563544,-0.07734628,-0.086021,0.17484672,-0.74408406,0.29356137,-0.18216045,-0.09828276,-0.6095014,0.023467546,527 +854,0.5388405,-0.075732134,-0.4764496,0.007016465,-0.32325414,-0.109426044,-0.27000263,0.16492535,0.3157039,-0.113277525,-0.077779435,0.20048194,-0.15334095,0.24671477,-0.17374921,-0.6435368,0.016150564,0.22771466,-0.78536886,0.6888378,-0.3384409,0.46726775,0.007326757,0.33318058,0.0062987655,0.19966893,0.18106802,0.082417965,-0.08172019,-0.40350756,-0.051146436,-0.04159929,-0.7604533,0.122224726,-0.30137148,-0.30021736,-0.09551209,-0.5825315,-0.27449286,-0.80718565,0.29654595,-0.62248784,0.5730939,-0.11471126,-0.31750128,-0.08381504,0.11714617,0.31603715,-0.16327797,-0.12895481,0.27852836,-0.31140438,-0.056533486,-0.25293356,0.2623873,-0.22555894,-0.48701033,-0.060096722,-0.52323574,-0.069963686,-0.106180705,0.26068017,-0.4924581,-0.06810358,-0.3686925,0.3910657,-0.23616727,0.09986061,0.15867043,-0.23812938,0.088244855,-0.6975427,0.104463704,0.043997813,0.61965245,0.035550714,-0.07730386,0.54871887,0.046445712,0.33595785,0.12791218,-0.397163,-0.054352075,-0.117262565,-0.06634109,0.50317353,-0.32949418,-0.18111886,-0.12192479,0.18975289,0.57265586,0.2259124,0.073745206,0.17857255,0.06485763,-0.30768332,-0.017987708,0.7135572,0.5874261,-0.108998,-0.120851465,0.1834327,0.65608525,0.6123852,-0.08779774,-0.1288641,-0.11180731,-0.4521428,-0.14580405,0.037272464,0.012501205,0.32173154,-0.11107675,0.29830074,0.6729899,-0.11135411,-0.0697053,0.33057168,0.10260784,0.33468518,-0.05347131,-0.24024232,0.4397703,-0.75129825,0.14449733,-0.47585824,0.54595315,0.15419614,-0.7967711,0.39813003,-0.5203053,0.19308393,0.18142295,0.6496803,0.80592984,0.57467806,0.271149,0.829288,-0.34697947,0.21998377,0.061574757,-0.23853649,-0.03175093,-0.15660258,0.2320563,-0.41538915,-0.117238574,-0.35894606,0.032480616,0.06075452,0.109490074,-0.6462373,-0.41831768,0.07596731,0.7367337,-0.15810005,0.0756624,0.880364,1.1881894,1.0043426,-0.13366164,1.055265,0.016568413,-0.22853106,-0.25507924,-0.08081757,-0.5684135,0.2211235,0.36983028,-0.10588676,0.396407,-0.16465436,-0.22123636,0.21030836,-0.41346255,-0.26395866,0.032996383,0.39038578,-0.008305937,-0.03704716,-0.6037292,-0.23487872,-0.052479725,-0.0445123,0.13407107,0.39620385,-0.36175963,0.283325,-0.041884243,0.83349866,-0.042484034,0.14220822,0.09678468,0.4454358,0.30326062,-0.25638604,-0.065244265,0.23230113,0.44714704,0.04269721,-0.571657,0.24247587,-0.6676931,-0.2673428,-0.03999589,-0.33540976,-0.2714369,0.1081898,-0.17486073,-0.1844634,-0.080958106,-0.103977345,0.27102166,-2.8445394,-0.24047899,-0.015858674,0.4034734,-0.30328414,-0.25270948,-0.12852913,-0.5071723,0.25653085,0.05962189,0.5794241,-0.5087347,0.40637055,0.46135953,-0.6939295,-0.06691112,-0.58464503,-0.06247439,0.21326743,0.48469058,0.06989134,-0.21786149,0.0012392203,0.24663927,0.6508688,0.31023958,0.11443577,0.48487842,0.5206325,-0.045761067,0.3386213,-0.1306764,0.553158,-0.51786804,-0.100726545,0.3467209,-0.4358578,0.28739086,-0.37367523,-0.019470075,0.55885357,-0.33614933,-0.91409284,-0.35367227,0.07120843,1.2300369,-0.19858612,-0.71323586,0.01656405,0.11068779,0.028056234,0.08552089,0.5354257,-0.0030870736,-0.088120885,-0.48018384,-0.13360757,-0.27361596,0.19263814,0.007363303,-0.07477323,-0.40848923,0.67366296,0.008958782,0.5869205,0.09277666,0.4214641,-0.2561599,-0.37604108,0.16633117,0.7932593,0.4922198,-0.033097297,-0.16427372,0.029292053,-0.09625413,-0.13191609,-0.10648817,0.906127,0.68392867,-0.127187,0.04337576,0.36408463,-0.0744121,0.19735956,-0.019527191,-0.3941795,-0.3846432,-0.19198422,0.63878983,0.84169227,0.06908996,0.4977051,0.06852742,-0.05142938,-0.16429152,-0.5321736,0.5962417,0.4465573,-0.35034204,0.13524334,0.41446522,0.41313732,-0.27977583,0.4500076,-0.6332106,-0.3956875,0.6956437,-0.13703506,-0.5752968,0.17349453,-0.20537055,0.12400669,-0.4284731,0.53376514,-0.6405113,-0.8328366,-0.6226842,0.008472954,-1.3576895,0.25299013,-0.26697883,0.017164016,-0.5409212,-0.06560323,0.035674635,-0.6565481,-0.6390656,0.17139399,0.28799814,0.7488113,-0.29911312,0.08493381,-0.28944382,-0.4817386,-0.21553159,0.20992716,0.30441806,0.2604359,-0.07624942,-0.07732294,-0.16420893,0.1820445,-0.31797215,0.09735918,-0.49441376,-0.49118948,-0.10280342,-0.4573743,-0.16012542,0.69328433,-0.32947412,0.12702248,-0.23826742,0.13017386,0.0895231,-0.08051099,-0.02190273,0.29756093,0.1436598,-0.31681207,0.20645057,-0.22110361,0.55805534,0.17646794,0.6274225,0.06364221,-0.13159733,-0.026857957,0.52565026,0.77889746,0.1106222,1.1297666,0.12384259,-0.10187993,0.315697,-0.2688744,-0.45600548,-0.5835714,-0.21646039,0.3690498,-0.41589454,-0.4128606,0.028692508,-0.33467317,-0.8675086,0.5935978,0.08750505,0.57384163,-0.22857885,0.5197485,0.4530588,-0.40081254,-0.080682136,-0.016865104,-0.13446192,-0.3068143,-0.04313776,-0.8049963,-0.3677212,-0.1397547,0.6746073,-0.3992546,0.16703485,0.16478913,-0.17146665,0.26389447,-0.24320333,0.04116005,-0.07430562,0.19947542,0.1099867,-0.4909723,0.31453183,-0.08120961,0.04880173,-0.4862026,0.31712225,0.6763933,-0.58305883,0.41647196,0.40190268,-0.24861081,-0.26317206,-0.7215872,0.13099241,0.27106825,-0.11559514,0.08635215,0.28498366,-0.7222037,0.41393456,0.22338672,-0.40007284,-0.72044563,0.4069914,0.04078434,-0.40031755,-0.10670337,0.34561822,0.059532207,-0.084194005,-0.06908773,0.30482554,-0.4246582,0.5334135,-0.097776115,-0.20259254,0.09080567,0.0004244099,-0.40041065,-0.80928755,0.22999696,-0.7782077,-0.3800284,0.5299701,-0.10943258,-0.14085509,0.23996337,0.33780667,0.37480965,-0.37838283,0.12188217,-0.18741234,-0.38900352,0.5227886,0.4915069,0.6124273,-0.4940989,0.56592035,0.3460233,-0.21299589,0.48287663,0.0063131354,0.46804214,-0.12602079,0.48928866,-0.019812634,0.093347855,0.09037015,0.45709494,0.14709185,0.32111904,-0.07083708,-0.11107788,0.18636446,-0.08253374,0.4016985,-0.06148092,-0.48054203,0.09502286,0.026136583,-0.062946044,0.55086416,0.1425963,0.033888917,0.1072411,-0.36752418,-0.11377636,0.20041697,-0.27219114,-1.4221096,0.75142986,0.21615066,1.0535105,0.2672923,0.33956468,-0.13508116,0.7162742,-0.030390888,0.08217759,0.28014705,0.10231558,-0.3144592,0.6229761,-0.6600531,0.459214,-0.0024291675,0.047012016,0.18955827,-0.100613706,0.35710225,0.73662764,-0.21356289,0.011598177,-0.26618394,-0.18002494,-0.23237781,-0.33154103,0.34310493,-0.3698307,-0.3943317,0.6583786,0.25930178,0.25293496,-0.23735707,0.17158449,-0.17932224,-0.30643752,0.31393573,-0.08106138,-0.0587047,-0.04484059,-0.42357802,-0.012093355,0.4330018,-0.26525453,-0.046777368,-0.28836882,0.120132856,0.080891095,-0.098382376,0.025477692,-0.031087995,-0.83532023,0.32702333,-0.44105542,-0.28553087,0.22089016,-0.13552712,0.095760226,0.15039293,0.12392289,-0.13262758,0.31633142,0.14661002,0.4810854,-0.11787551,-0.46588492,-0.51820916,0.21163201,-0.016153028,-0.28960225,0.24064004,-0.08399775,0.13351886,-0.28214058,0.46375358,-0.23303115,-0.48642853,0.023266265,-0.18284942,-0.144324,0.48760387,-0.15761766,-0.1656164,0.021820545,-0.38553238,-0.2457213,-0.19840746,-0.20230366,0.12266763,0.49733236,-0.23961337,-0.13747092,-0.1425089,-0.31554404,0.4616791,0.13399495,0.44677857,0.4141465,0.2545546,-0.48878717,0.22737016,0.25035083,0.55074537,0.0609861,0.10325691,-0.6004756,-0.36266127,-0.45037642,0.72020334,-0.25288412,0.19226371,-0.12033522,0.030932268,0.9704311,0.05385765,1.1539025,-0.108954154,-0.22195147,-0.13049161,0.6410733,-0.20950365,-0.21633099,-0.5181369,1.084653,0.35780907,-0.11137983,0.19922237,-0.27091804,0.030697992,0.2997159,-0.29990044,-0.15403347,0.015043855,-0.41778883,-0.43091437,0.24882756,0.32951736,0.10708284,-0.19445582,-0.23119931,0.45252302,0.17155188,0.27329925,-0.7345248,-0.34518757,0.23487116,0.1372429,-0.24157834,0.24973206,-0.37876758,0.31357348,-0.73730785,0.25463408,-0.5523873,0.18986791,-0.1060715,-0.43594456,0.22431801,-0.04839888,0.40302786,-0.44565463,-0.47531453,0.090512075,0.030911619,0.31622994,0.09428963,0.4993688,-0.16882797,-0.015228194,0.18539904,0.6318125,0.9748549,-0.29897997,-0.045991093,0.123577476,-0.478542,-0.76356125,0.1632031,-0.34184575,-0.109566174,-0.20595759,-0.36043382,-0.46578574,0.19951141,0.09560878,0.2335844,-0.14898583,-1.0217983,-0.13604264,0.21680729,-0.32113656,-0.17436612,-0.38634527,0.32436725,0.7896655,-0.15396339,-0.38473415,-0.12496967,0.41181406,-0.23844163,-0.7016251,0.03433615,-0.48110488,0.15339395,-0.091080874,-0.34599257,-0.21415438,0.047233712,-0.6307195,0.21911614,0.13160495,-0.30503443,-0.099515595,0.105962075,0.24176194,0.6166389,-0.43939868,-0.042810958,-0.32957613,-0.44626746,-0.7727411,-0.2885402,-0.16120268,0.4559872,-0.067570806,-0.7406582,-0.0063821874,-0.38952732,-0.15163745,-0.15006721,-0.4053111,0.25205836,0.21491419,0.52809846,-0.49176225,-1.0646347,0.19637656,0.11185437,-0.1329139,-0.46283093,0.381997,0.15736824,0.6832836,-0.031957787,-0.11357864,-0.14569734,-0.45781025,0.20498566,-0.324543,0.03525586,-0.77891546,0.31981444,533 +855,0.28974363,-0.43786776,-0.64213127,0.0054681934,-0.36915472,0.06286543,-0.28493205,0.3188917,0.26290622,-0.3875344,-0.20417021,-0.099599384,-0.117679335,0.19166829,-0.17073892,-0.39179298,-0.20832683,0.24738292,-0.761658,0.6349954,-0.27548409,0.29308996,0.19391966,0.39922774,0.15550335,0.15434116,0.15394837,0.12541641,-0.13039784,-0.116763115,-0.14394489,0.26003966,-0.7773592,-0.014614898,-0.46351945,-0.37789008,-0.0065100216,-0.58744305,-0.37363574,-0.956754,0.35718468,-1.1307992,0.73375076,-0.08156783,-0.12214569,0.11178311,0.39210823,0.37285408,-0.057617094,-0.07726734,0.19251025,-0.427675,-0.060173783,-0.35981175,-0.28965232,-0.34135476,-0.5145985,-0.0057997354,-0.6200071,-0.17366238,-0.21339433,0.25694585,-0.33924493,0.025287798,-0.42924607,0.382224,-0.32620475,0.066635095,0.3484119,-0.15059443,0.33879933,-0.6910505,0.06975298,-0.09424462,0.35565105,0.061938126,-0.10248422,0.43617213,0.3279883,0.5046268,0.14401977,-0.34692708,-0.21953852,-0.17453612,0.32314026,0.5008082,-0.17747246,-0.29695037,-0.18256998,0.22649772,0.5993965,0.68333155,0.074816495,0.041476388,0.04587716,-0.17754011,-0.005174806,0.7557575,0.6172593,-0.3796421,-0.47864294,0.12388588,0.7819064,0.34622577,-0.1746161,0.008072714,-0.10281073,-0.4670565,-0.17240125,0.3479115,-0.2552289,0.689353,-0.21342397,0.040171083,0.7323796,-0.14061448,-0.08434937,0.064450115,-0.0017482663,0.02932004,-0.2727305,-0.13653842,0.40865973,-0.7404845,0.22665322,-0.35949823,0.48984084,0.059496637,-0.71907157,0.25881776,-0.5702446,0.27638265,0.33848062,0.5852638,0.7132306,0.7469101,0.37059128,0.94009835,-0.33040237,0.046708267,-0.0069314935,-0.3433138,-0.1321588,-0.37460807,0.1489918,-0.42880812,0.16501907,-0.51670724,0.028426135,-0.060641598,0.40382156,-0.6388871,-0.22972874,0.18514399,0.8933718,-0.20421839,0.09703223,0.94225997,0.91893506,1.2323366,-0.05928487,1.2952794,0.1046679,-0.23418415,-0.035721224,-0.056225937,-0.7865966,0.22058988,0.47426522,-0.06571376,0.37227324,-0.1571322,0.054524645,0.1996109,-0.5596878,-0.071784794,-0.07754093,0.19218333,0.10258164,-0.15363508,-0.5304878,-0.02473844,-0.15363818,-0.023004541,0.041445892,0.2818166,-0.15177247,0.68408424,0.075683735,0.85944957,-0.36470532,0.109743364,0.27513131,0.46109596,0.2821109,-0.09572342,0.08986511,0.39169183,0.36278853,0.20103748,-0.57891446,0.07123899,-0.57046723,-0.26564565,-0.28032133,-0.4181049,-0.3190077,0.1672883,-0.32751492,-0.41558233,-0.24828397,-0.22685595,0.35600066,-2.6005895,-0.16838504,-0.28148916,0.32451436,-0.41316128,-0.2610829,0.15543354,-0.72152084,0.26759943,0.15776886,0.5763397,-0.4633919,0.38836512,0.6081161,-0.80060226,-0.00040451685,-0.7420742,-0.19106455,0.09636215,0.5875728,-0.00048492601,-0.10243026,-0.0015266935,-0.017464058,0.7223859,0.32822087,0.18458958,0.6823342,0.66820544,-0.078422494,0.49948063,-0.1701569,0.5596368,-0.5996868,-0.17918126,0.5943509,-0.26266775,0.5751813,-0.3999246,-0.017037123,0.77811486,-0.49010196,-0.71640635,-0.52182883,-0.25421745,1.2435087,-0.25227857,-0.79631025,0.019644046,-0.2199973,-0.023217387,-0.18216263,0.5937043,-0.013729672,0.23956217,-0.5881104,-0.10296649,-0.28156468,0.2809103,-0.05454427,-0.101411164,-0.3438021,0.7990787,0.0005702488,0.40961275,0.23380013,0.22074789,-0.31747195,-0.462581,0.011960391,0.7229659,0.5940942,0.007497015,-0.22814906,-0.18056566,-0.162979,-0.28165194,-0.14288272,0.76496285,0.577612,-0.2743,0.08858345,0.47209522,0.1811034,0.16639972,-0.21777289,-0.40186235,-0.38388,0.032953966,0.5923801,0.7426493,-0.17287183,0.40479288,-0.10793871,0.202698,-0.108513236,-0.58034325,0.61857265,0.7969119,-0.2860845,-0.09141356,0.7656141,0.59271485,-0.5233132,0.58653885,-0.64389473,-0.26451018,0.75109315,-0.3874778,-0.74535745,0.1798969,-0.30063966,0.088947214,-0.5743679,0.15018211,-0.6272239,-0.35130918,-0.56599444,0.037549753,-1.9711194,0.1954153,-0.3401005,0.08454636,-0.4971697,-0.27019405,0.15384822,-0.38734022,-0.8798733,0.21497719,0.28488693,0.66473645,-0.23263343,0.11171979,-0.2291245,-0.40693748,-0.21969666,0.4500599,0.33980152,0.15844718,-0.4599112,-0.3293015,-0.07715412,-0.029167116,-0.36479056,0.092422724,-0.6191154,-0.40610436,-0.16010426,-0.3835374,-0.0760796,0.5939037,-0.32534268,0.086025864,-0.22476132,0.08648836,0.048232753,-0.05242144,-0.018975342,0.57165474,0.25842717,-0.31860423,0.21025805,-0.19215412,0.56669587,0.0033548698,0.38668644,0.1995027,-0.08531544,0.27171347,0.22516663,0.88530225,-0.1879191,1.1587371,0.2670298,-0.13783334,0.37680855,-0.10178428,-0.5625333,-0.82528406,0.014214146,0.20031266,-0.4234551,-0.69401425,0.083072074,-0.35218778,-0.8145709,0.75480336,0.041842286,0.86307734,-0.065330476,0.576606,0.5560235,-0.4066621,-0.044778924,-0.09256539,-0.25214994,-0.4837052,-0.32426247,-0.75811523,-0.5462374,-0.11238297,0.8062158,-0.23064731,0.029431678,0.21948342,-0.23582093,0.114033096,0.24758823,0.04236861,0.10430806,0.5875885,0.21739535,-0.63067967,0.3465662,0.2989391,-0.021972215,-0.55246145,0.4377799,0.50804263,-0.64369553,0.63899446,0.4178939,-0.19871478,-0.3836197,-0.7143035,-0.016648298,-0.10546881,-0.29830503,0.55122524,0.42068172,-0.65847504,0.41227743,0.26428285,-0.40526745,-0.9698412,0.28288797,-0.080806725,-0.41635442,0.0069441744,0.4172198,0.088567115,-0.04614639,-0.17824632,0.20329313,-0.30977586,0.28061378,0.15627043,-0.22603114,-0.055560738,-0.17967361,-0.47417638,-0.8581045,0.39911494,-0.6216673,-0.20995729,0.6962736,-0.13181126,-0.2589573,0.27720362,0.28070742,0.45104477,-0.023243865,0.1991501,-0.034244508,-0.52307034,0.50721973,0.5145862,0.4418559,-0.6243265,0.6853177,0.18355708,-0.50321907,0.27631336,0.20262444,0.3491163,-0.12971576,0.4872655,0.10321194,-0.27834353,0.16688855,0.77099305,0.2642508,0.5104559,0.19888614,0.10498631,0.5285764,-0.08325764,0.28526124,-0.28543308,-0.79031307,0.032761704,-0.118873,-0.0986014,0.5906406,0.105154246,0.28911954,0.0011142939,-0.0025213335,-0.18046923,0.11397499,-0.012638737,-1.3114694,0.12248849,0.18831353,1.1888977,0.45831943,0.35380745,-0.14559014,0.7913397,-0.34646225,-0.08824899,0.69782287,0.09854925,-0.5149161,0.80147123,-0.62868005,0.449531,-0.10138605,-0.052978273,0.1075929,0.11610886,0.3262881,0.9251668,-0.21323685,-0.16276488,-0.21348332,-0.17986172,0.30082622,-0.32543647,0.14685458,-0.25811577,-0.52890843,0.67952204,0.29602215,0.46885267,-0.3243825,-0.004726795,-0.016077045,-0.2305518,0.3665458,0.13457245,0.10908162,0.028112188,-0.2121476,0.18445659,0.49188837,0.113368176,0.14440836,-0.23013283,-0.27296534,0.101875804,-0.2371196,-0.091333,-0.10404267,-0.9048489,0.052554276,-0.42103776,-0.8871905,0.37151837,0.029806614,-0.07560875,0.2115798,0.025703616,-0.15550835,0.2351054,-0.10377586,0.7000664,-0.10321935,-0.15992284,-0.40203723,0.31253436,0.108414344,-0.24694173,0.42704698,0.07352037,0.27160707,-0.42062917,0.6042539,-0.26276416,-0.6024162,-0.033864077,-0.24926142,-0.28334585,0.7020337,-0.04418218,-0.11987088,0.015054042,-0.3341999,-0.5352189,-0.4999145,-0.1104685,0.14974599,0.23938413,0.012123828,-0.3268012,-0.16774939,-0.1700372,0.6642042,0.072550215,0.37921643,0.22992541,-0.035923433,-0.53294826,0.18648934,0.13584137,0.6041593,0.109290354,0.013494733,-0.2696984,-0.60999286,-0.38761532,0.4719511,0.02885962,0.37592432,-0.02717603,-0.097538024,1.1593335,-0.088668466,1.1161007,0.007810369,-0.31172928,-0.025462756,0.5931467,-0.16610599,-0.17934386,-0.5346028,0.90277857,0.51951855,0.032888252,0.1353875,-0.35790992,0.24839528,0.077967755,-0.32572684,-0.08799293,-0.011472236,-0.44881988,-0.34282187,0.18818569,0.33429834,0.31925392,-0.28522503,-0.06678758,0.36476746,0.042733908,0.3482157,-0.4726695,-0.7431925,0.41479635,0.10866346,-0.20218986,0.110640585,-0.39129272,0.32381627,-0.69859713,0.041376248,-0.51907456,0.04747656,-0.1545061,-0.4107778,0.1819808,-0.2519993,0.37227735,-0.4424442,-0.45598876,0.0058964514,0.2747902,0.26529258,0.12462645,0.5338704,-0.22968946,0.01180917,0.18792196,0.5962386,1.127682,-0.39448872,-0.10604302,-0.013604519,-0.6018027,-0.7221415,0.5360213,-0.48687768,0.06946382,0.038010333,-0.3593423,-0.32859668,0.09022268,0.09406135,0.051121917,-0.22020958,-0.8438864,-0.303508,0.2792116,-0.39589342,-0.07629528,-0.3077302,0.2876743,0.78202724,-0.045491133,-0.43040118,0.06261023,0.2527226,-0.35163307,-0.5565599,0.042642605,-0.24837027,0.16317774,-0.12084544,-0.4812627,0.062370364,0.18427129,-0.70703393,0.038565334,0.23694944,-0.3713342,-0.0956319,-0.30013525,0.10496905,0.8356343,-0.5625878,-0.2821806,-0.16065641,-0.6027782,-0.9032793,-0.26409557,0.05493185,0.13505785,0.08397177,-0.72547215,0.0017538866,-0.4835659,-0.098237,0.15213759,-0.45703176,0.40388575,0.08897393,0.5819741,-0.4054273,-0.8542967,0.34262824,0.12234748,0.12293301,-0.4876937,0.5604474,-0.07414506,0.80060536,-0.022768294,0.04149406,0.09212976,-0.79855686,0.07914802,-0.22401597,-0.107211,-0.86622065,0.081097536,535 +856,0.20015462,-0.11799073,-0.45342574,-0.017225707,-0.07266738,0.13536623,-0.14587136,0.35895947,0.039143916,-0.65271664,-0.10626748,-0.24754727,-0.04619819,0.037442744,-0.24171104,-0.27418527,-0.0722884,0.21493848,-0.47898343,0.21911745,-0.5285193,0.32085988,0.14795732,0.03817646,-0.14631328,0.13794313,0.26890162,-0.23812921,-0.18729667,-0.32222596,0.109641224,0.026846737,-0.7833051,0.28182033,-0.13302046,-0.3025603,0.03908384,-0.4007467,-0.46636328,-0.6946802,0.44376764,-0.88265353,0.5158794,0.118107714,-0.08744935,0.3029053,0.092026,0.31725505,-0.19208823,0.14231841,0.45712975,-0.098437965,-0.05551068,-0.18837143,-0.18847577,-0.16138966,-0.51249564,0.06043588,-0.4576054,-0.21775223,-0.4553114,0.26157248,-0.32775757,0.08086643,-0.27909073,0.32465017,-0.32409033,0.041353602,-0.03954682,-0.08378645,0.3236508,-0.5612709,-0.031829935,-0.12122267,0.106330134,-0.37355185,-0.038862288,0.30161405,0.14080143,0.5111595,-0.052766357,-0.017121777,-0.17615421,-0.075217985,0.14646068,0.49080595,-0.23989713,-0.34274018,-0.021803081,-0.13702302,0.047357883,0.07405925,-0.124425136,-0.3349005,-0.038746145,0.057119977,-0.3446149,0.3299424,0.6717561,-0.24081069,-0.18795045,0.3937485,0.49659744,-0.1052258,0.1403865,0.07714148,0.06864355,-0.54046625,-0.2793912,0.1481986,-0.17437617,0.39151493,-0.071492456,0.255448,0.6308744,-0.35661447,-0.008311641,0.1559667,0.095175944,0.08904624,-0.15264863,-0.30895117,0.2846934,-0.4980527,0.026717743,-0.24710111,0.94128543,-0.0072807926,-0.85051465,0.32478413,-0.48152336,0.055458248,0.038698778,0.63329774,0.45044866,0.5790518,0.15067412,0.7445128,-0.58866996,-0.010889645,-0.13655399,-0.34935763,0.09787475,0.009393573,-0.12288645,-0.17553179,-0.10765002,0.17452681,-0.12727605,-0.21831144,0.44807616,-0.3897836,0.016787728,-0.002112319,0.69940376,-0.3429903,0.07935217,0.513848,1.0518328,0.717459,0.20265524,1.4046768,0.095653795,-0.27943203,0.14933336,-0.17439759,-0.9903566,0.26428688,0.3094009,0.13431758,-0.015992701,0.2990763,-0.09733218,0.15304853,-0.5009926,-0.05462873,-0.3047774,0.25896212,-0.1028151,-0.11712936,-0.29011336,-0.17176718,0.1013318,0.05361761,0.116625905,0.15501922,-0.31938756,0.037293848,0.20543182,1.2529706,-0.2474044,0.33173195,0.21889721,0.32724044,0.07086306,-0.016900113,-0.13593693,0.24108303,0.395573,0.24393952,-0.6253636,-0.07118358,-0.13751866,-0.44709292,-0.12200529,-0.14683785,-0.06177522,-0.076858275,-0.29188862,-0.26088318,-0.14080155,-0.6226742,0.3122861,-2.5677593,-0.067696586,-0.064373404,0.47732508,-0.18637168,-0.24915652,-0.14609434,-0.4327083,0.53648466,0.43019542,0.46086392,-0.6734109,0.34976295,0.5276585,-0.3535377,-0.050041478,-0.57104474,0.049923908,-0.11266842,0.2707719,0.1300305,-0.16690218,-0.16263653,-0.045442265,0.29642656,-0.15284234,0.07133765,0.4075221,0.44365743,0.18352382,0.47551283,-0.04666409,0.45198694,-0.45125794,-0.20761962,0.27948707,-0.5138197,0.032068282,-0.033944268,0.16754736,0.23172492,-0.68316674,-0.83218235,-0.6833413,-0.51808816,1.3697819,-0.28516886,-0.3606054,0.46917662,-0.11297505,-0.34840932,-0.18788572,0.47320354,-0.16565253,0.09271645,-0.8675057,-0.05317059,-0.2481765,0.5337865,0.010847968,0.113711655,-0.53869337,0.6425515,-0.23913622,0.4211184,0.4440712,-0.03255752,-0.5296622,-0.44914934,0.061736804,1.2379532,0.26063907,0.25440654,-0.13665228,-0.16150375,-0.24430929,-0.067366086,0.01631798,0.4766527,0.7470019,0.059478845,0.04147862,0.27473417,-0.00016047557,0.036900375,-0.042860318,-0.38749966,-0.16328971,-0.11786459,0.65156645,0.40467775,-0.09538818,0.2244764,-0.111567535,0.21363513,-0.3102213,-0.27714503,0.3407255,0.6526327,-0.02372425,-0.2479309,0.6283936,0.49227104,-0.25621954,0.44928607,-0.5331703,-0.5667687,0.27588657,-0.22788316,-0.5247043,0.2882182,-0.35973784,0.11614274,-0.72776264,0.5385166,-0.31352594,-0.70003,-0.51622075,-0.19994695,-3.5556939,0.18286891,-0.21097668,-0.18457837,-0.063351065,-0.06884059,0.21383817,-0.3286747,-0.5108308,0.05029181,0.08542162,0.5182153,0.0029591906,0.033451468,-0.1980576,-0.043257892,-0.266069,0.24118741,0.2578575,0.12973036,-0.00403064,-0.38943854,-0.12388512,-0.17277716,-0.16688836,0.006882814,-0.5351679,-0.40776834,-0.07837827,-0.6559928,-0.4534019,0.7523864,-0.412631,-0.040429983,-0.23286788,-0.02019392,-0.14393948,0.45871553,0.10092089,0.18753518,-0.072226174,-0.22103477,-0.24452268,-0.14767526,0.5651395,-0.00786304,0.32315412,0.5061114,-0.41553497,-0.15132606,0.33293068,0.6041183,0.031134715,0.99317855,0.2603276,-0.18328495,0.26561037,-0.1886232,-0.19367194,-0.55778694,-0.12430539,0.061571747,-0.401216,-0.27854148,0.040712297,-0.40015602,-0.7006569,0.5359163,-0.12166223,-0.033801634,0.11342555,0.31011948,0.22355956,0.04086708,-0.19206937,-0.18078315,-0.09087625,-0.39750266,-0.3486173,-0.7267158,-0.2796772,-0.168703,1.1822997,0.061441142,0.13077502,0.14988597,0.020317161,0.111346535,-0.031686783,0.062077958,0.27827552,0.5070084,-0.05560891,-0.6135246,0.38559735,-0.197563,-0.08544803,-0.57699525,0.0510288,0.66344213,-0.67182285,0.53687257,0.4528388,0.13198969,-0.23599708,-0.4515591,-0.3312885,-0.067444265,-0.19851011,0.28936994,0.15186876,-0.81532437,0.412294,0.329803,-0.21458645,-0.73875403,0.48324445,-0.094917536,-0.09243282,0.13173287,0.4809425,-0.3094202,0.047600195,-0.11485708,0.24897473,-0.21545869,0.48179784,0.007514199,-0.073671386,0.50835836,-0.3422121,-0.22565621,-0.5619601,0.078998886,-0.4792877,-0.14512907,0.15054077,0.0037648405,-0.026426012,0.38744855,-0.11499258,0.5417201,-0.3050114,0.03819171,0.052641213,-0.22787617,0.36113456,0.3215407,0.3897055,-0.38513115,0.65570074,-0.013818492,-0.1375464,-0.46323195,0.18602057,0.41266093,-0.055775937,0.26885006,0.090362586,-0.097781144,0.46121225,0.9491101,0.3350583,0.59018564,0.16790496,-0.019301271,0.33889067,0.2287354,0.13898887,0.18810946,-0.6519757,-0.05089805,-0.0869908,0.12677474,0.30437407,0.06204322,0.38551185,-0.29653832,-0.2305996,-0.07142642,0.3978301,-0.13102658,-0.9761629,0.3650795,0.014637157,0.562005,0.5138561,0.02838993,0.16365838,0.5500364,-0.15960056,0.0610023,0.13560326,0.051501393,-0.46936318,0.5513758,-0.60030115,0.34075582,-0.14604832,0.03766923,0.094382055,-0.081881754,0.39316395,0.71659833,0.053723603,0.019426906,-0.13081867,-0.09984999,0.17746536,-0.3669277,0.33119848,-0.32876906,-0.27526724,0.7161729,0.25440294,0.25063702,-0.07093683,-0.024247602,-0.10383946,-0.14975804,0.09093539,0.034425814,0.073154785,-0.025871957,-0.73327583,-0.109211385,0.5330026,0.32753095,0.17394985,0.14918368,-0.21641405,0.36496785,-0.12826908,-0.06998919,-0.110129006,-0.5822385,0.07802217,-0.36226735,-0.24960943,0.033808265,-0.21945198,0.37568244,0.22755341,0.02097094,-0.52924025,0.17097561,0.47887626,0.5523014,-0.04565933,-0.27202925,-0.20652135,0.2132687,0.15639216,-0.21905775,-0.021696342,-0.2778233,-0.072855465,-0.76822454,0.35915998,-0.110433914,-0.23844905,0.37695834,-0.19519328,-0.04413739,0.587827,-0.011312445,0.014609297,0.31180567,-0.17217797,-0.12599783,-0.09812981,-0.17311333,0.13032325,0.30497053,0.06259606,-0.047797773,-0.029083215,-0.20394294,0.3432952,0.08767387,0.29303426,0.2975308,0.4057046,-0.32643732,0.0030984383,-0.12934011,0.6968043,0.038110066,0.07318299,-0.2145626,-0.39495358,-0.16138679,0.26827475,-0.06148382,0.22601992,0.18655439,-0.44265756,0.71260947,0.05132736,0.88341635,0.06414673,-0.1507663,-0.14357899,0.6154178,-0.03652099,-0.13490482,-0.36097836,1.0636332,0.66640186,-0.20232894,-0.19695874,-0.2945696,-0.06460601,-0.11517277,-0.12638429,-0.26095784,-0.058427524,-0.5899183,-0.17426002,0.27658916,0.48458803,-0.10230768,-0.013777991,0.20464306,0.27432212,-0.030616118,0.27709043,-0.5152065,-0.085182585,0.36265263,0.118032195,0.11586085,0.056513846,-0.40263176,0.3240571,-0.64924884,0.06476711,-0.077764116,0.0043327212,-0.06693469,-0.19471185,0.16316493,-0.0743046,0.4694178,-0.32474375,-0.17391682,-0.11379593,0.31011704,0.08067233,0.28367138,0.7437454,-0.11402128,0.1027577,0.07724401,0.49050128,0.8128777,-0.15307312,0.052815955,0.3037769,-0.3616457,-0.5371979,0.333653,-0.3395195,0.020672023,-0.075104594,-0.2976682,-0.09843924,0.34130704,0.17609428,-0.13840686,0.12981422,-0.640806,-0.15294157,0.34804937,-0.23359753,-0.21115895,-0.20570461,0.1669146,0.7192464,-0.24447481,-0.17972429,0.053353388,0.40384388,-0.42381844,-0.6555027,-0.22160548,-0.33838323,0.32023498,-0.026054442,-0.15177841,-0.027160773,0.10807835,-0.3157754,0.121610545,0.060987826,-0.3874353,-0.030210525,-0.25370625,-0.04738735,0.53542846,-0.059130568,0.04007113,-0.5283388,-0.44814038,-1.0192263,-0.08390388,0.44034377,0.12606372,-0.01183226,-0.4436883,-0.19406427,0.01717008,-0.17434096,-0.022893453,-0.42781746,0.46229926,0.08300731,0.48343673,-0.14598581,-0.81426096,-0.0028723974,0.07520025,-0.17998986,-0.5102388,0.52684873,0.10272917,0.7204351,0.08589971,0.09774166,0.25911525,-0.7744377,0.14116906,-0.12478729,-0.23815988,-0.73331946,0.06886034,551 +857,0.3283444,-0.1997674,-0.535592,0.013441605,-0.23627353,0.028263258,-0.27932993,0.23811512,0.4710455,-0.20147939,-0.25040725,0.040686686,0.09394077,0.6258913,-0.08085646,-0.65580624,-0.060902085,0.18576843,-0.75478905,0.5085261,-0.4277452,0.3046485,0.03201775,0.46872064,0.106885396,0.2286972,0.23536752,-0.023439536,0.054349948,-0.23867424,-0.1770157,0.34116805,-0.69083136,0.046171468,-0.3626,-0.17535739,0.013630261,-0.52137786,-0.340587,-0.9572725,0.3859578,-1.0398076,0.70010155,0.051297132,-0.09740728,-0.1012305,0.45263514,0.3191177,-0.35319147,0.008110632,0.27869436,-0.49913692,-0.24209988,-0.47929123,-0.29230884,-0.31520024,-0.5660096,-0.07207564,-0.6904664,-0.142237,-0.22617942,0.2975084,-0.39485013,0.080024056,-0.16326497,0.27190965,-0.3011246,0.17888586,0.33992466,-0.31707782,0.17233388,-0.63804656,-0.03607792,-0.09195235,0.6557396,0.0029180099,-0.33947682,0.5106793,0.43520752,0.44315138,0.18708754,-0.33262628,-0.22052854,-0.11275218,0.15972288,0.5231433,-0.35521755,-0.42571864,-0.1333067,0.12637545,0.53311306,0.5383837,0.07011578,-0.08226351,-0.005223438,-0.28954092,0.05686335,0.7193775,0.6420362,-0.13161252,-0.32237524,0.11288353,0.5923757,0.47489938,-0.1784383,0.0774788,0.008363289,-0.73156506,-0.18947963,0.0023704867,-0.087994814,0.4789064,-0.16436356,0.13699551,0.86883354,-0.018905744,-0.26112846,0.069287695,0.0023549546,0.043714385,-0.22449268,-0.21288395,0.39092502,-0.58960396,0.17635448,-0.4315482,0.44885966,0.15494432,-0.62925094,0.32419065,-0.5714237,0.22291376,0.14775813,0.8059856,0.7662215,0.5249297,0.5979844,0.93170375,-0.38219175,0.10534855,0.022284845,-0.407863,-0.01238133,-0.44536626,0.19253035,-0.42279908,0.2458119,-0.3495182,0.12086662,0.31552503,0.49411437,-0.5139417,-0.26180896,0.1604683,0.96784395,-0.25213727,0.03412422,0.7900386,0.90961283,1.1219511,-0.022579297,1.3122196,0.06933617,-0.25944883,-0.16927075,0.029363662,-0.7379158,0.21643536,0.26522824,-0.4941969,0.32566342,0.023231292,-0.019422397,0.25608462,-0.7303398,-0.29445496,0.11900743,0.15511754,0.1675945,-0.15852378,-0.47979447,-0.078002125,-0.1612376,-0.09764996,0.32934874,0.2327956,-0.32030946,0.6366376,-0.08115517,1.1968007,-0.12107285,0.060631543,0.22675978,0.4528172,0.2698327,0.03194626,-0.07572321,0.42832556,0.51595026,0.0432138,-0.601947,0.013717584,-0.49367237,-0.17033328,-0.146048,-0.3284342,-0.34959212,0.1631044,-0.024572799,-0.27822158,-0.21592952,-0.18923914,0.38197768,-2.5289614,-0.23053582,-0.051476877,0.39940074,-0.28581318,-0.09042302,-0.31059447,-0.63325477,0.3994788,0.04857148,0.510658,-0.57997006,0.25397635,0.5036476,-0.81419396,-0.33176658,-0.67992705,-0.15958251,0.09440502,0.56296843,0.19547935,-0.2830936,-0.24227126,0.16838859,0.83406544,0.2798307,0.01905612,0.7234972,0.67408794,-0.06385136,0.6986027,-0.21643694,0.6955711,-0.480348,-0.2853789,0.42514816,-0.3906615,0.45091832,-0.3849032,-0.03496657,0.64625615,-0.44304633,-1.0608386,-0.48469147,-0.121714264,1.1875656,-0.29627332,-0.57906085,0.07199139,-0.36900255,-0.013929526,0.017999893,0.8974034,-0.140492,0.2031991,-0.57347304,-0.190189,-0.17025669,0.27076244,-0.0064232647,-0.07288759,-0.32011023,0.6781176,0.037600625,0.37210914,0.2059675,0.13878417,-0.3867568,-0.4651865,0.11292177,0.8470547,0.3679534,0.07860843,-0.15229245,-0.1851153,-0.1682768,-0.4284943,-0.25607184,1.024552,0.6257892,-0.25007924,0.08595357,0.363659,0.15002991,0.110775165,-0.30030033,-0.3174725,-0.25391537,0.007897873,0.60062736,0.9876812,-0.19513881,0.35941327,-0.04481469,0.39815772,-0.03521159,-0.37988153,0.6118849,0.73329085,-0.25129023,-0.040647298,0.64565593,0.291384,-0.4638114,0.58155864,-0.5587369,-0.45473847,0.77762026,-0.19555305,-0.6228456,0.26487955,-0.27128705,0.015728846,-0.5603942,0.15728179,-0.32990253,-0.3620532,-0.51786757,-0.16598962,-2.7226927,0.20297796,-0.23990981,0.11472082,-0.6893447,-0.13424966,0.13342308,-0.38643053,-0.77224255,0.25981733,0.27224562,0.6001902,-0.2726157,0.18662679,-0.33725646,-0.29738232,0.047502134,0.2493695,0.27701196,0.31197497,-0.1733432,-0.3600948,-0.15169102,0.15283743,-0.3713993,0.062534906,-0.65231884,-0.35833266,-0.0025964875,-0.5506078,0.06390505,0.6684594,-0.61811084,0.00062170625,-0.32317206,0.19853538,-0.036274094,-0.01664459,-0.042693913,0.38930252,0.20388345,-0.27891305,0.22168086,-0.05790521,0.66103137,-0.05524872,0.4748372,0.06438818,-0.114734136,0.17305005,0.29352877,0.8512284,-0.37091437,1.2723385,0.38114524,-0.10873578,0.20026356,-0.23927684,-0.6196615,-0.56884915,-0.21341066,0.32998756,-0.5312908,-0.36335906,-0.027523851,-0.4142927,-0.99451303,0.70008403,0.025178978,0.34022543,0.0028660123,0.47019652,0.51482946,-0.32989982,0.029262641,-0.033242084,-0.1798452,-0.5356259,-0.2299376,-0.4853634,-0.6017472,-0.1298367,0.82449037,-0.33281365,0.19243197,0.24343066,-0.21461292,-0.013978581,0.23258133,0.09514312,0.11090746,0.6166282,0.2077498,-0.7575166,0.4404459,-0.205597,-0.23803164,-0.7706874,0.25655958,0.5431521,-0.7943215,0.7479436,0.5000279,-0.21625279,-0.12064504,-0.7786021,-0.20417662,-0.02232886,-0.084289394,0.40852165,0.2693182,-0.65850896,0.50446224,0.30522135,-0.685019,-0.7759622,0.26470435,-0.18147148,-0.44894782,0.12692353,0.47443953,0.15752335,-0.030535927,-0.05054285,0.19345272,-0.25008035,0.39320946,-0.046281476,-0.18496968,0.11827737,-0.20103914,-0.43051967,-0.8906636,0.18632226,-0.57990414,-0.32377172,0.4686624,-0.09262306,-0.17628674,0.07730743,0.22051442,0.34603497,-0.22248395,0.2268912,-0.26317698,-0.48245168,0.28338012,0.5244263,0.49710616,-0.46745816,0.6835284,0.17479666,-0.3647621,0.33477113,0.05793472,0.4268924,-0.26139045,0.43513942,-0.053083494,-0.09557516,0.25890544,0.846945,0.022752075,0.289041,0.03561163,0.03417858,0.46125463,0.06539088,0.23987205,-0.005353853,-0.69164306,0.013513644,-0.21226293,0.08945828,0.61512405,0.3797921,0.29356575,0.1205383,-0.26713625,-0.17506148,0.2569894,0.04454769,-1.395414,0.3917091,0.15963186,0.9382117,0.12401354,0.2786182,-0.028461596,0.8133634,-0.075401865,-0.055177424,0.6335699,-0.04800855,-0.3471006,0.67741364,-0.52849203,0.39409545,-0.113779016,0.086351246,0.19701123,0.21962433,0.30459228,0.9244835,-0.28775847,0.010720696,0.0014878213,-0.12974674,-0.12681024,-0.54014,-0.05791388,-0.2718447,-0.5601892,0.62828404,0.433769,0.4943982,-0.26550192,0.06548046,0.044931103,-0.17587315,0.18478799,-0.14991212,-0.06543784,-0.1188299,-0.603429,0.2958283,0.4638143,0.17597312,0.11847859,-0.30552864,0.06889223,0.28680474,-0.33315086,0.0866221,-0.2554085,-0.726978,0.05328167,-0.4620335,-0.7209936,0.41831946,-0.12377664,0.0330141,0.35333097,-0.01012827,-0.09675338,0.4210445,-0.037420865,0.9703854,-0.02172038,-0.42938784,-0.3350273,0.25322986,0.13545716,-0.38753676,0.2747402,-0.2738134,0.23129785,-0.42609894,0.65636164,-0.32198313,-0.41901827,0.051081788,-0.33486673,-0.09408861,0.5905123,-0.2113987,-0.07596437,0.10436552,-0.36245093,-0.43212524,-0.26698518,-0.33272633,0.17838265,0.33828273,-0.038401004,-0.31095576,-0.28314134,-0.43536758,0.37890497,-0.10235635,0.47615758,0.3126122,0.18669687,0.0072814524,0.19948621,0.23542435,0.8420186,0.16137713,-0.120960794,-0.42895046,-0.59558433,-0.49929282,0.37045315,-0.09256035,0.27375478,0.09783309,-0.10447058,0.8909867,0.08382663,0.9788889,0.0910666,-0.3633581,0.032015968,0.642582,-0.16395591,-0.14389168,-0.4242928,1.0221862,0.51501083,-0.11925471,0.10187168,-0.47890857,0.31965446,0.3084102,-0.43405965,-0.052059557,0.02571179,-0.50775576,-0.3279559,0.2860575,0.2312205,0.2812311,-0.2127905,0.06527739,0.06804282,0.09958079,0.27236652,-0.6474877,-0.3085991,0.31975642,0.19375002,-0.21100514,0.013785536,-0.42366147,0.44791898,-0.48905113,0.008495924,-0.7196076,0.11358089,-0.25248846,-0.2978523,0.26894698,-0.12595439,0.32805148,-0.6099462,-0.29246613,-0.109513305,0.17581661,0.27055895,0.16337727,0.5042958,-0.27531305,-0.14613391,0.24853878,0.66052204,1.134259,-0.5809099,0.13004525,0.29417622,-0.45230207,-0.57955617,0.4260185,-0.4811766,-0.122084856,-0.08133865,-0.5045312,-0.42010316,0.14213058,0.004440576,0.29270902,-0.006560882,-0.73172027,-0.1429876,0.25498495,-0.23430963,-0.1798427,-0.30588147,0.27380052,0.73963934,-0.012824375,-0.48116994,0.088651694,0.26084125,-0.29770032,-0.6749921,0.053306405,-0.24200183,0.27917174,0.09333411,-0.21002704,-0.20372574,0.023689678,-0.7161016,0.21568565,0.14770865,-0.4151651,0.011953925,-0.1719452,0.066016674,0.85396075,-0.5510543,0.03216082,-0.49770474,-0.5037508,-0.89770174,-0.29751846,0.14405325,0.17877276,-0.019982198,-0.728435,-0.10621313,-0.21345659,-0.21164994,0.101235695,-0.37564826,0.3813195,0.07915166,0.6172696,-0.612085,-0.9656897,0.13153885,0.13643692,-0.30477878,-0.621023,0.5507378,0.12567489,0.8248391,-0.044571567,-0.12863077,0.18801223,-0.46753287,0.010348052,-0.2515268,-0.11774939,-0.8566281,-0.0684521,557 +858,0.33907786,-0.13960437,-0.50341797,-0.09088147,-0.3813889,-0.3022633,-0.31075045,0.21167862,0.3523437,0.045321714,-0.2706943,-0.1250026,0.085516214,0.36675188,-0.17604677,-0.6106035,-0.0061023138,0.1640142,-0.71342945,0.66385674,-0.37931827,0.2850053,0.101528905,0.3687928,0.38740206,0.43783212,0.16004023,0.08818265,0.12912552,-0.28928152,0.05385053,-0.14361288,-0.84262484,0.081439905,-0.47284022,-0.30661544,0.17351037,-0.64146596,-0.44859543,-0.7992017,0.2833176,-0.91051954,0.5083198,0.07371169,-0.09239561,-0.2935044,0.23183976,0.35981503,-0.27695066,-0.07493139,0.23081069,-0.27336952,-0.094978094,-0.29203176,0.0007206599,-0.226104,-0.4718142,-0.087655164,-0.5657513,-0.33039057,-0.22003396,0.16641721,-0.3483715,0.15133074,-0.15879972,0.547412,-0.41441965,0.33552718,0.2521867,-0.2768545,0.11288025,-0.56767124,-0.13785826,-0.14435335,0.44527867,0.13524622,-0.17806011,0.5474926,0.08598993,0.14936478,0.16656618,-0.33037254,-0.21849942,-0.20508039,0.05848797,0.5789198,-0.047677007,-0.12995602,-0.18039541,-0.0075019896,0.28669038,0.26804027,-0.058290195,-0.2244252,-0.09469613,-0.24571566,-0.073459156,0.58270234,0.5815411,-0.08458104,-0.18530793,0.12647112,0.46841088,0.4426491,-0.39800987,-0.10928468,0.13750513,-0.50218177,-0.112350516,-0.027127007,-0.09024074,0.76797056,-0.09591179,0.010619174,0.8514218,-0.01817139,-0.19530219,0.003641059,0.1261,-0.011047636,-0.21176992,-0.29447687,0.33676776,-0.5150543,0.33415487,-0.24051535,0.66940504,0.2246231,-0.6416703,0.40038386,-0.6836559,0.120351344,0.020231927,0.4812583,0.6031427,0.47127494,0.49258086,0.68288,-0.17525572,0.29609504,0.012141245,-0.35954794,0.037370548,-0.24883716,0.22997506,-0.29794,-0.06436803,-0.2630745,0.12725507,0.16227879,0.5245622,-0.27735934,-0.09080416,0.39297402,0.9179592,-0.1900232,0.09544104,0.68809146,1.2060434,1.1521721,-0.056293353,0.7885792,0.05697022,-0.1896918,0.042504895,0.021329245,-0.7549818,0.12869309,0.21218388,0.08794723,0.20964678,-0.047302183,-0.004781475,0.35374367,-0.51455337,0.08589793,0.08190066,0.21874379,0.32074672,-0.051617566,-0.50041,-0.32638824,-0.11961647,0.0059394143,0.046963036,0.21700723,-0.24613583,0.24306388,-0.11803383,1.337565,0.124037325,0.0610057,0.21764058,0.82881355,0.3378272,-0.1961077,-0.054990783,0.36737943,0.33667752,0.16211687,-0.5324437,0.14145882,-0.41335663,-0.25438675,-0.13662986,-0.35206762,-0.23388255,0.10958269,-0.49669245,-0.22187042,0.00044325492,-0.2004056,0.38449728,-2.8465736,-0.19028436,-0.12868047,0.41692242,-0.15876694,-0.04449402,0.03313774,-0.57914346,0.17019232,0.2644821,0.57493967,-0.60757095,0.6089595,0.6537948,-0.5696924,-0.09225395,-0.56801325,-0.07280878,-0.007937183,0.4100864,-0.026017427,0.08427009,-0.16092758,0.23112917,0.8056395,0.2988502,0.16107687,0.55041915,0.43094194,-0.01541433,0.7266883,-0.07930892,0.45843956,-0.3944117,-0.14791489,0.35644138,-0.4304577,0.32398036,-0.31970528,0.05207756,0.6952998,-0.49773178,-0.9620604,-0.4947867,-0.050296903,0.9516154,-0.37695718,-0.46532285,0.3908368,-0.5530221,-0.029506743,-0.007947008,0.790292,-0.19894457,0.2871324,-0.4281009,-0.07880361,-0.18336378,0.23357886,0.106605805,-0.08165527,-0.3537198,0.8473463,0.08320466,0.6493642,0.233113,0.17954798,-0.10708328,-0.30374292,0.22716856,0.49951637,0.2500503,0.005999694,-0.3520095,-0.07033684,-0.12736326,-0.29724255,-0.04844441,0.72303724,0.64253736,-0.35614383,0.23114629,0.28184238,-0.06804828,-0.077345274,-0.115418255,-0.22534132,-0.046859983,0.086159825,0.39848268,1.2165767,-0.054784004,0.29356298,-0.08196547,0.46543726,-0.04787454,-0.44388637,0.44987914,0.58502555,-0.031734172,0.004685285,0.3272259,0.6042977,-0.43596005,0.44822732,-0.5774326,-0.22766693,0.68221635,-0.010158978,-0.41338494,0.18955278,-0.44678262,0.04497221,-0.5722434,0.31398168,-0.32096896,-0.51300615,-0.31376183,-0.29508138,-3.318103,0.12236025,-0.24572277,-0.100267716,-0.42704833,-0.041277364,0.22575748,-0.6296132,-0.5662906,0.13224356,0.29675943,0.7507429,-0.12128935,0.1151062,-0.327638,-0.32857165,-0.23483157,0.3987799,0.19562453,0.33857918,-0.23185503,-0.38760176,-0.23732917,-0.029604375,-0.47440204,0.17200224,-0.51528615,-0.38695803,0.032355737,-0.59362817,-0.4599237,0.4649241,-0.29081413,0.021067664,-0.23451476,-0.04923658,-0.32453954,0.061032128,0.09581836,0.18422861,0.12253627,0.023554875,0.24570997,-0.19500549,0.47809586,-0.071702644,0.50568146,-0.08868497,0.15684943,0.057801466,0.43493152,0.4351697,-0.42032805,1.1539093,0.33363983,-0.10595912,0.22606671,-0.13460194,-0.37436703,-0.69663095,-0.17393194,0.07490861,-0.20167808,-0.48914042,0.058216974,-0.32766506,-0.7144173,0.6063209,-0.028812269,0.20367885,0.16270308,0.025547503,0.34509435,-0.17937408,-0.09163233,0.08388006,-0.06294317,-0.523503,-0.16957861,-0.58577704,-0.5130153,-0.30323124,0.8937583,-0.26416144,-0.103209995,0.2170807,-0.5120825,0.090199776,0.23109193,0.12701832,0.2337486,0.56509805,0.16083057,-0.6586974,0.4175615,-0.26794013,-0.07319976,-0.564315,0.15901445,0.6081908,-0.8097043,0.6677766,0.2606232,0.16558664,-0.16991432,-0.6261017,-0.27451277,-0.05437093,-0.16251238,0.37154877,0.28310847,-0.96481556,0.3641177,0.013907808,-0.6873624,-0.72710514,0.34580836,-0.19871639,-0.502164,-0.15317781,0.30399624,0.07979837,-0.15483218,-0.020339916,0.34065482,-0.25923684,0.2531972,0.04582053,-0.20151539,0.11212909,-0.13121457,-0.20678349,-0.6500653,0.124400295,-0.31165096,-0.24704802,0.46736833,-0.16181229,-0.12720792,0.11214914,0.18822984,0.15969649,-0.10402894,0.105854,-0.110651575,-0.4453852,0.304863,0.53371483,0.60854894,-0.468276,0.616218,0.1156447,-0.14515413,0.26321954,0.11078143,0.12602954,-0.23927712,0.44443026,-0.044512253,-0.083194785,0.062363535,0.79679614,0.24569114,0.5270274,0.073276125,0.048503418,0.49017358,0.0032308921,-0.0131710125,0.06340966,-0.6260062,0.16010553,-0.26602855,0.074187204,0.55279154,0.2869848,0.27226087,0.0055577555,-0.14701438,-0.035406318,0.22578044,-0.16988198,-1.2617316,0.27443263,0.24466081,0.8938373,0.4898634,0.14813006,-0.21985197,0.86081725,-0.1966939,-0.016044216,0.43583456,0.16711627,-0.3193994,0.6992915,-0.45289245,0.6951421,-0.0369975,-0.19366415,0.32709238,0.09495545,0.5726071,0.64910847,-0.30773088,-0.14802179,0.135515,-0.2947273,-0.1144177,-0.35241297,0.01965093,-0.47496715,-0.3761269,0.80511826,0.5229786,0.28342196,-0.24450839,0.011584945,-0.15367655,-0.18793373,0.24863337,-0.13063532,-0.26519355,0.17551287,-0.6269964,0.027518844,0.60406333,-0.281963,0.17440887,-0.07174275,-0.20033985,0.23570351,-0.17313534,-0.022435738,-0.15592308,-0.8030278,0.20737155,-0.20398724,-0.57463264,0.5399112,-0.29303756,0.1697157,0.23751515,0.0061959177,-0.057845473,0.5406398,0.017918786,0.7216342,-0.08818028,-0.15292591,-0.29260194,-0.009380515,0.22887488,-0.20752935,0.12640812,-0.52443457,0.13699582,-0.54947525,0.5837677,-0.21668684,-0.30574137,-0.055957645,-0.14268745,-0.12900244,0.7678809,-0.022592494,-0.12455591,-0.016266057,-0.14461458,-0.40769753,-0.30726352,-0.35996637,0.17672175,0.22830267,-0.12973502,-0.16468075,-0.1883985,0.06979817,0.4616067,-0.1369621,0.7605286,0.0070392787,0.18734376,-0.08353323,-0.08548486,0.059785515,0.5936066,0.09312868,-0.13834488,-0.4803883,-0.38414046,-0.28552186,0.27841172,-0.00641893,0.27762112,0.12496754,0.022009691,0.86446315,-0.04309253,1.1557139,0.09704375,-0.35309473,0.3624433,0.52936417,-0.20396967,-0.0381187,-0.41536173,0.92037314,0.403625,-0.27024812,-0.22995788,-0.46787015,0.108232826,0.0032924477,-0.3368609,-0.048116386,-0.08135605,-0.37218443,-0.073575675,0.06832213,0.29879436,0.18174005,-0.18344645,-0.07094991,0.14738837,0.15847324,0.1788133,-0.5370441,-0.352447,0.45205888,-0.023790916,-0.12727964,0.052062873,-0.5221998,0.4552656,-0.48898697,0.24624439,-0.6562765,0.15656452,-0.40629148,-0.35866597,0.15715216,-0.06973538,0.42051712,-0.60567176,-0.08802236,-0.23512071,0.37530598,0.21717338,0.23647134,0.6272463,-0.1786746,-0.14370279,-0.09055037,0.74617845,0.96429294,-0.730725,-0.05036651,0.24698444,-0.47123718,-0.46658865,0.26105317,-0.4943427,-0.1284036,-0.050056856,-0.22869052,-0.6441713,0.085893236,-0.04506029,0.035196498,-0.050166845,-0.7566903,-0.18471913,0.29352263,-0.2633476,-0.27664393,-0.30452418,0.25661823,0.71664333,-0.046685237,-0.41008452,0.06027016,0.09105617,-0.09776876,-0.46792558,0.033015568,-0.20751189,0.28215632,-0.13723353,-0.34352055,-0.25597072,0.39783868,-0.6050332,0.070447,0.15820849,-0.3595903,0.14498794,-0.21309912,0.10440261,1.1350362,-0.50627786,-0.016584694,-0.4297628,-0.6448472,-0.89460474,-0.43544817,0.19775122,0.25343397,-0.030496141,-0.16654444,-0.10309732,-0.14690515,-0.26105133,-0.060684945,-0.5397424,0.39341238,0.0931414,0.51202893,-0.42638683,-1.0776672,0.07853652,0.11891975,-0.25575197,-0.5020603,0.52896595,-0.061771203,0.80905205,0.03762966,-0.023890072,-0.13672729,-0.28921178,0.16033803,-0.26494256,0.032162357,-0.63903916,0.15405728,562 +859,0.48200107,0.0021809042,-0.6145715,-0.19136804,-0.2533081,-0.15175608,0.005125334,0.62549156,0.30923533,-0.26852348,-0.15629894,-0.14982976,0.042206317,0.4307609,-0.1433898,-0.5414991,0.10931649,0.30316532,-0.5019536,0.54442215,-0.46095416,0.36717883,0.03344117,0.6099344,0.40217265,0.18581665,-0.03831787,0.15398024,-0.021969488,-0.25427997,-0.3161059,0.31791392,-0.49868402,0.12461803,-0.12863003,-0.39880502,0.040821414,-0.4555236,-0.39430746,-0.9045107,0.09233528,-0.56916183,0.574866,-0.055566058,-0.40351295,-0.19730626,0.4633505,0.46444583,-0.2199583,-0.04639332,-0.04793698,-0.033504836,0.048556965,-0.20399153,-0.4094982,-0.4634556,-0.59689856,-0.100160144,-0.46877614,-0.08147126,-0.33402762,0.2545477,-0.2990859,-0.095784985,0.0058359304,0.58086354,-0.2731268,0.15626891,0.08206991,-0.008675831,0.15019129,-0.5207758,-0.29466477,-0.19367218,0.0993801,-0.14594065,-0.45989326,0.30342177,0.23595482,0.21574517,-0.22438847,-0.14175077,-0.324255,-0.09900617,-0.30734167,0.5398553,-0.3215423,-0.5539347,-0.11601517,0.029040078,0.24944592,0.63299716,0.2880942,-0.132425,0.01900874,-0.011210263,-0.36274466,0.4281052,0.4092845,-0.37314996,-0.25002524,0.29096135,0.32284182,0.14354903,-0.30214763,-0.0014790446,0.040011063,-0.59905773,-0.16211806,-0.076689444,-0.17857683,0.5328539,0.032959815,0.14729317,0.6160593,-0.118628494,-0.24467109,0.18151605,0.21879031,0.016299346,-0.47464517,-0.40615845,0.29815164,-0.54059094,0.11352771,-0.097631745,0.7384772,0.10461276,-0.6950508,0.15655023,-0.6933405,0.037946317,-0.1486371,0.3583386,0.59894884,0.4478276,0.38254952,0.59726745,-0.3070782,0.0246673,-0.055942614,-0.17475943,0.04157042,-0.20228891,0.051711034,-0.50907046,-0.064447485,0.09111299,-0.21479662,0.4335592,0.53036743,-0.5381109,-0.3872359,0.2586099,0.80815053,-0.32964987,-0.29798952,0.66657233,1.0161492,1.0807484,-0.026803285,0.9055354,0.1633774,-0.17998107,0.18347764,-0.12772651,-0.5385268,0.24278027,0.23379236,-0.8269048,0.24208026,-0.052746225,-0.04818831,0.34380618,-0.1695729,-0.054314952,-0.035630148,0.13162737,0.08906302,-0.10765975,-0.43649194,-0.5560643,-0.08390541,-0.09431403,0.137202,0.34063685,-0.29253924,0.3811226,-0.05797283,1.7612771,0.16061157,-0.09415764,0.0909124,0.59106785,0.35843262,-0.18454303,-0.13925521,0.28748503,0.23461463,0.08668453,-0.40136588,0.15945044,-0.26519164,-0.3936267,-0.12015182,-0.41342553,-0.033369552,-0.25117084,-0.43735316,-0.25044617,-0.23237671,-0.27497724,0.57315993,-2.9049509,-0.1112532,0.05484577,0.30615094,-0.15270285,-0.52849865,-0.09477822,-0.5282701,0.39819348,0.1851501,0.4443777,-0.5439989,0.39718208,0.53831476,-0.5383039,-0.29573038,-0.6890333,-0.1317984,-0.035157595,0.13459428,-0.030125067,0.009410034,-0.08277861,0.15437703,0.57223815,-0.0051313937,0.12322555,0.39281297,0.33388296,-0.097897805,0.6785957,-0.036752965,0.58721894,-0.24038933,-0.22130118,0.23521674,-0.62241656,0.11727405,0.04373784,0.016764726,0.71632004,-0.5703691,-1.0386072,-0.5301871,0.04804385,0.8573416,-0.29887748,-0.089472346,0.41598487,-0.5388455,-0.25999215,0.012811247,0.6370689,-0.14693098,0.081889175,-0.5130608,-0.12609708,-0.022015354,0.21755813,-0.14740628,-0.09514421,-0.24162771,0.52852565,-0.032091677,0.51731414,0.054573815,0.1447346,-0.5773058,-0.4021574,-0.037303146,0.9435356,0.30257377,0.20722967,-0.18495543,-0.1939881,-0.63438874,0.05278046,0.17548132,0.6831255,0.7493823,-0.16821878,0.14794563,0.29636696,0.035071474,-0.03455325,-0.12979285,-0.33973292,-0.04861638,0.14116077,0.57401013,0.56505704,-0.0059120804,0.7001906,0.16606738,0.5010597,-0.33714664,-0.46610072,0.30196583,0.9912095,-0.25175813,-0.39177564,0.75853014,0.4960176,-0.25727844,0.47152734,-0.6164005,-0.42846498,0.6055266,-0.0355617,-0.3207299,0.22477005,-0.21376944,-0.008432806,-0.9084851,0.048229646,-0.3206614,-0.5405776,-0.42208302,-0.019003531,-2.9425533,0.32569212,-0.06112957,-0.15818138,-0.10823673,-0.13467272,0.06051207,-0.5966153,-0.52847713,0.0690509,0.19985704,0.8140497,-0.14959143,0.0014139563,-0.14085421,-0.45021543,-0.34176758,0.21919917,0.14053805,0.4135232,-0.04623286,-0.44643426,-0.15235959,-0.21721585,-0.50608665,0.15744783,-0.67575556,-0.5475495,-0.13064349,-0.8493889,-0.34982455,0.73701096,-0.39432588,0.06697188,-0.1540746,-0.022872373,0.06900125,0.15658762,0.21575846,0.06909337,0.03659576,-0.105951935,0.092085816,-0.29567906,0.10683658,0.036864918,0.4924328,0.12817067,-0.0055086613,0.3180293,0.62562615,0.6764388,-0.090368,0.94901323,0.3469068,-0.09630784,0.24784988,-0.2923806,-0.352072,-0.4170959,-0.10915748,-0.1386349,-0.25875196,-0.23677097,-0.1033667,-0.35353222,-0.66354024,0.6183165,0.06275052,0.2688795,-0.08380418,0.44508246,0.52233416,-0.24093223,-0.07673662,-0.12114366,-0.1892556,-0.43769893,-0.28647152,-0.5550992,-0.45923448,0.15750241,1.1510328,-0.412588,0.0061403713,0.069078706,-0.06316203,-0.026260234,0.29308692,-0.03701121,0.17225903,0.45641813,-0.29472694,-0.54083127,0.28471726,-0.3584926,-0.19092236,-0.52830344,0.29578647,0.63787895,-0.5967822,0.66525996,0.15078516,0.116355054,-0.27965513,-0.5614151,-0.07611143,0.23444963,-0.15249237,0.43483365,0.3114614,-0.97302085,0.33450374,0.290657,-0.39172506,-0.5817155,0.63425833,-0.045340087,-0.55655926,-0.41461623,0.4807581,0.324546,0.13251466,-0.11982524,0.15616788,-0.36748648,0.17281197,0.19479208,-0.0655712,0.20122094,-0.3527473,0.10753822,-0.79918003,0.35733774,-0.25376943,-0.52470416,0.35510674,-0.055533063,0.05021015,0.46255198,0.057490498,0.22795789,-0.44072703,-0.017888904,-0.28013182,-0.27081463,0.48985013,0.41708195,0.6443248,-0.32385388,0.569074,0.10703081,-0.16342038,0.06498044,0.08406957,0.35144734,-0.12435167,0.5505595,0.06368809,-0.38374305,0.3573265,0.48668396,0.13511221,0.21779908,0.13032503,0.17264622,-0.11599275,0.034750417,0.09652945,0.22948222,-0.5351729,0.008388202,-0.38681707,0.18090685,0.638051,0.08022218,0.13942946,0.09426406,-0.26353678,0.06781953,0.08903786,-0.13653187,-1.4163299,0.39053723,0.1884631,0.92998654,0.474057,0.22575788,-0.09738094,0.6256889,-0.17000504,0.26044777,0.34957537,0.14084816,-0.27258882,0.63542026,-0.6419928,0.7225879,0.017583018,0.024550488,-0.07873744,-0.07985247,0.6405832,1.0901198,-0.17146747,0.074097455,0.26189002,-0.29786935,0.18296434,-0.3501196,-0.09694827,-0.84156626,-0.2191881,0.6490125,0.48303393,0.33003232,-0.1263393,-0.13877797,0.16406424,-0.16825603,0.180676,-0.026638964,0.08622811,-0.023819834,-0.5296754,-0.057741046,0.59954685,-0.09944183,0.056243036,0.23782611,0.03444837,0.3674917,-0.09018248,0.1384583,-0.06321209,-0.60924643,0.049612958,-0.4161398,-0.45539021,0.42730293,-0.36670676,0.12672801,0.25179422,0.15788375,-0.28617278,0.5709126,0.3106033,0.7178939,-0.20205148,-0.12696746,-0.23596437,0.26257798,0.0070975516,-0.16121171,-0.05630302,-0.4023342,0.07284049,-0.58380866,0.4165757,0.13211201,-0.44731745,-0.22388236,0.06607282,-0.0070238397,0.39337143,0.0023152877,-0.12974797,-0.41026035,-0.20144837,-0.12139695,-0.19301444,-0.06558717,0.28772175,0.030217448,-0.14233278,-0.0049185134,-0.14018008,0.13435,0.34793243,-0.27155957,0.47597364,0.25131264,0.20028774,-0.20706157,-0.03645432,0.1320825,0.55913275,-0.23876412,-0.15927614,-0.318922,-0.004760901,-0.4602991,0.25366583,-0.12314042,0.551961,0.2022307,-0.254424,0.7839505,-0.073416084,1.2594881,-0.13319476,-0.46141148,0.11507376,0.6100981,-0.036120716,-0.05555442,-0.2979919,1.1442786,0.5340051,-0.07381743,-0.2418227,-0.40049025,-0.033574644,0.18773556,-0.32236502,-0.3508006,0.07754313,-0.49231216,-0.1801122,0.17500855,0.17539813,0.46380353,-0.07608023,0.18375826,0.58106834,-0.0028598506,0.17339875,-0.28127038,-0.014197116,0.20354868,0.40048108,-0.096406735,0.19668962,-0.49361503,0.34643683,-0.49977693,0.19952317,-0.37824854,0.3152294,-0.36035874,-0.44240868,0.21890318,0.08959759,0.30647913,-0.24703324,-0.24471207,-0.21012674,0.5458409,0.16741501,0.20985329,0.5305046,-0.27273598,0.0058891675,-0.10851574,0.5103124,1.0854573,-0.3316057,-0.36289212,0.44178668,-0.41425052,-0.6906288,0.2079066,-0.37706372,0.1996723,0.17841767,-0.20397002,-0.5613962,0.23626797,0.21696012,0.24769445,-0.055562317,-0.5501601,-0.048903476,0.17079578,-0.14221393,-0.14304426,-0.4220051,0.32726365,0.52982813,-0.10919046,-0.26749924,0.07607467,0.119747974,-0.09095186,-0.5771251,-0.01201811,-0.39969516,0.4067265,-0.021298388,-0.3993086,-0.17384432,-0.07521689,-0.5089087,0.23097181,0.24741435,-0.14257406,0.27381286,-0.36504436,-0.077638604,1.0501047,-0.2928867,0.07404333,-0.25170973,-0.55063194,-0.5020952,-0.45616433,0.38246512,0.008136444,-0.14821549,-0.7559014,-0.0028388996,-0.119395964,-0.3942745,-0.048469465,-0.2854847,0.31992385,0.09811439,0.39103726,-0.0040053427,-0.9900612,0.25627628,0.044564564,-0.38609254,-0.67373735,0.4877971,-0.18457323,0.92987126,0.15497571,0.087821,0.5584927,-0.32592404,0.028183505,-0.23507385,-0.068234794,-0.58878654,-0.068096064,564 +860,0.25823024,-0.0054817796,-0.31073985,-0.1282332,-0.53063196,0.098712236,-0.13768496,0.19586997,0.35281312,-0.3303991,-0.35753158,-0.2027952,-0.0614866,0.37524995,-0.059425186,-0.33439985,0.01843354,0.24748372,-0.9776656,0.41707468,-0.4511803,0.38925436,0.16358708,0.38680103,0.36891553,0.20716377,0.22657502,-0.06327938,-0.18544757,-0.12337165,-0.4871991,-0.04761679,-0.41724634,0.24545519,-0.35590878,-0.35562134,0.058256403,-0.6241742,-0.17073442,-0.7171857,0.19847433,-0.8835192,0.6049927,-0.13321559,-0.08705968,-0.19224383,0.6554646,0.3232893,-0.115042806,0.008796572,0.23295295,-0.23101492,-0.1635356,-0.28584042,-0.41337362,-0.33938995,-0.447675,-0.13953207,-0.5045246,-0.3512545,-0.24855019,0.24508882,-0.24257475,0.025078556,-0.04114282,0.3685042,-0.27051207,0.26527277,0.16135986,-0.25900757,0.020663058,-0.6120275,-0.08952093,-0.18964142,0.5366236,-0.019113556,-0.2736672,0.51202637,0.3696598,0.28516594,0.044417173,-0.18729381,-0.28534374,-0.2483632,-0.0043518147,0.5280309,-0.17077471,-0.22050191,-0.13002215,-0.049407925,0.48407856,0.5518082,0.14425395,-0.23416723,0.080054775,-0.2766187,-0.18956272,0.4528474,0.32641125,-0.29879698,-0.30342254,0.24311435,0.39687613,0.23265205,-0.32255694,-0.060955364,0.11597607,-0.51807886,-0.07614499,0.16039574,-0.1768011,0.50186205,-0.053271938,0.28908873,0.69612265,-0.17636389,-0.036957502,0.061385006,0.15183687,-0.1547309,-0.20964746,-0.3031436,0.12622581,-0.5347865,-0.07818857,-0.1185872,0.8007999,0.07941147,-0.5434696,0.3490232,-0.6021107,0.082380444,-0.034165602,0.3786324,0.68019223,0.59144366,0.353963,0.7577413,-0.17715369,0.14495932,-0.011536022,-0.14777309,0.0076204143,-0.3746791,0.3109347,-0.57546407,0.0053631566,-0.15438265,0.16140334,0.23710613,0.633457,-0.4011134,-0.26010242,0.23014982,0.8683292,-0.32194284,-0.22905111,0.68303823,0.9149451,1.0769244,-0.023926064,0.9189613,0.25986496,-0.26103437,0.091534674,-0.21474533,-0.6041346,0.15189706,0.24099092,-0.45646593,0.11002412,-0.13529317,0.0075673214,0.1327215,-0.35396242,0.037562262,0.03688248,0.11725026,0.16394554,0.06420192,-0.3415694,-0.5163624,0.017469486,-0.2062536,0.21933424,0.17720212,-0.39670947,0.37583104,-0.090989865,1.5993797,0.11880535,-0.0224234,0.022486366,0.6486918,0.18912964,-0.18481348,-0.30953345,0.27895167,0.20060772,-0.16484247,-0.46721926,0.18637036,-0.3449765,-0.2901685,-0.11037168,-0.4034435,-0.43979332,0.103204496,-0.25628152,-0.3194333,-0.06187545,-0.54581636,0.42891335,-2.7126179,-0.30161834,-0.0981748,0.34157494,-0.2531968,-0.24765997,-0.28986952,-0.6425767,0.30612472,0.006333865,0.48881778,-0.55897355,0.5132975,0.50634736,-0.5863978,-0.41563976,-0.7030992,-0.06475097,0.05423255,0.1434789,-0.13699414,-0.044013437,-0.04895998,0.12220549,0.6681755,0.06836963,0.1684355,0.53121966,0.449329,0.19090569,0.6902167,-0.13401768,0.7291228,-0.49599814,-0.21597487,0.31840268,-0.4123787,0.23775528,-0.20236863,0.07356844,0.83393794,-0.5167351,-0.79294854,-0.6472686,-0.23769474,0.8888264,-0.35085425,-0.349713,0.2178235,-0.4661909,-0.12578608,-0.024906596,0.92135566,-0.11419582,-0.01660107,-0.5062974,-0.023057967,0.03485409,0.28107682,-0.006200619,-0.08618826,-0.17954683,0.49253142,-0.025392896,0.7263984,0.10639852,0.15037341,-0.62482285,-0.22308187,0.1607898,0.844762,0.28436863,0.01671271,-0.06704881,-0.11589736,-0.42964792,-0.30168155,-0.0013750693,0.48225865,0.6750388,-0.05484884,0.16897255,0.43082008,-0.024846142,0.03192834,-0.15109451,-0.19121206,-0.09056631,0.05879778,0.3980206,0.54325,0.08014701,0.6848939,-0.15006067,0.3121196,-0.2936913,-0.52875346,0.5143781,0.32810012,-0.22363384,-0.04304226,0.5605584,0.5250395,-0.33987582,0.44225034,-0.6626106,-0.4356803,0.6832685,-0.117983945,-0.4771184,0.14468943,-0.29648054,0.18400635,-0.54449105,0.114556246,-0.2689784,-0.37618962,-0.2739122,-0.048024714,-2.2961445,0.17957099,0.020422151,-0.15493026,-0.21692352,-0.07380877,0.022508642,-0.46572125,-0.66261876,-0.00030629337,0.2006138,0.83510685,-0.079145044,0.17381698,-0.1552536,-0.343282,-0.21024977,0.26396397,-0.0299372,0.40136102,-0.21357785,-0.4741015,0.059035074,-0.08390174,-0.5543576,0.07392393,-0.7324784,-0.35631537,-0.08626909,-0.5572378,-0.40379074,0.69644946,-0.67790085,0.07189011,-0.37543392,-0.008642807,-0.08801717,0.14755936,0.20094447,0.14607418,0.093616486,-0.02344128,0.07430217,-0.2907093,0.44958344,0.021361709,0.41487584,0.16989489,0.28556547,0.31187382,0.33767867,0.7614173,-0.25764322,1.1703509,0.22137345,-0.16103469,0.18072437,-0.32595375,-0.26395097,-0.3540381,-0.06504988,0.10951666,-0.38876137,-0.46837226,0.12544698,-0.20759213,-0.7383867,0.6720876,0.15925832,0.28260037,-0.037292574,0.29894024,0.29613945,-0.32296786,0.11492121,-0.10109645,-0.120251335,-0.616961,-0.35808972,-0.51215655,-0.42289397,0.08553579,1.0218688,-0.437989,0.11648142,0.08561487,-0.44026437,0.0952655,0.11259979,0.022780886,0.3391533,0.4239421,-0.09070917,-0.70292777,0.24496996,-0.21263118,0.08307799,-0.43196118,0.15678422,0.7213092,-0.70009273,0.4357319,0.26313874,-0.075252414,-0.34425005,-0.45807353,-0.16661613,-0.15130274,-0.17811604,0.18998529,0.23074335,-0.7624492,0.40341768,0.15355451,-0.47634205,-0.7598405,0.2912147,0.049279016,-0.31992802,-0.10944763,0.31436434,0.3659153,-0.05054262,-0.16056736,0.15660281,-0.4011813,0.41154203,0.06318383,0.018528923,0.24967487,-0.3549117,-0.45070162,-0.7126245,0.2540785,-0.26520762,-0.44619927,0.4998012,0.045399535,0.12752524,0.4974135,0.15788046,0.1301911,-0.20900501,0.05109474,-0.06262896,-0.25388736,0.1426229,0.28870827,0.57996786,-0.41428447,0.535438,0.016309762,-0.11775548,0.32689187,-0.07163912,0.19353867,0.07971945,0.34846187,-0.10735322,-0.51255137,0.31924275,0.7831896,0.20412719,0.06895956,0.020685077,0.093402185,0.17159472,-0.07669,0.023453882,0.15561211,-0.59572184,-0.041159812,-0.33722243,0.19738452,0.41223285,0.18309946,0.30276465,0.08416191,-0.09203496,-0.038045865,-0.018836617,-0.18493421,-1.2303038,0.33713803,0.11118994,0.944393,0.406199,0.11228868,-0.24456763,0.8929077,-0.22233815,0.22497405,0.42072463,-0.061330978,-0.2582496,0.7283048,-0.49310076,0.73136187,-0.020287193,-0.043473843,0.14992349,0.09391647,0.37268457,0.95299417,-0.25250748,0.12455634,0.29408833,-0.2983587,-0.0002825459,-0.23410757,0.008699338,-0.68855745,-0.32707325,0.70102805,0.21219146,0.3521547,-0.12598458,0.032972354,-0.09392885,-0.25750068,0.1305412,0.05913195,0.10234391,0.00090964016,-0.57420117,0.14544316,0.52293545,0.0146642,0.1862278,0.011459991,-0.16772394,0.08863729,-0.29848436,0.13580243,-0.12961632,-0.67667454,0.14164111,-0.38782108,-0.5002505,0.31466812,-0.25059018,-0.020694142,0.17973834,-0.022564203,-0.03028071,0.74875516,0.47288653,0.69726664,-0.1476732,-0.07542882,-0.052025538,0.19896054,0.11331401,-0.27478704,0.24991226,-0.31104735,0.07458652,-0.6492066,0.6775937,-0.036158975,-0.4455247,0.11630996,-0.15945777,0.00028865537,0.5589015,0.07378987,0.005622556,-0.13772531,-0.13175459,-0.49607894,0.0103346305,-0.32941708,0.091230966,0.17317204,-0.03642741,-0.30745724,-0.31452474,-0.17896797,0.39253995,-0.24248414,0.5604293,0.19083823,0.21693122,-0.14988579,0.23133814,0.10524869,0.62236166,0.0569258,-0.007971545,-0.47920677,0.04516394,-0.27868384,0.49443832,-0.08905927,0.21384867,0.08776941,-0.4134059,0.8299207,-0.28918073,1.1124634,0.1524886,-0.3249514,0.02017796,0.4582343,-0.22423065,0.0475485,-0.23680288,0.7874656,0.42201528,0.06726069,-0.05548039,-0.33245608,0.014983982,0.34364796,-0.40507698,-0.26788193,0.08618095,-0.3817648,-0.2972714,0.14786811,0.08336113,0.35588503,-0.24299705,0.22773139,0.2863544,0.11021358,0.29314044,-0.42977008,-0.080676846,0.37224922,0.39469588,-0.12084353,0.1622778,-0.4926965,0.40841427,-0.7332695,0.15202507,-0.5074966,0.21112196,-0.40459976,-0.2684187,0.20977467,0.25601137,0.4292941,-0.15263006,-0.291073,-0.09353677,0.44021282,-0.026722157,0.31684825,0.5382977,-0.24534196,-0.08915051,0.008457974,0.5089197,1.0657443,-0.32209975,-0.05979239,0.23759699,-0.43315184,-0.644526,0.56857187,-0.4046204,-0.1247786,0.18212466,-0.28916597,-0.29679096,0.2849544,0.2818375,0.2634518,-0.12206372,-0.5066809,0.08727715,0.27398905,-0.17033845,-0.28714973,-0.35976687,0.24780197,0.5091956,-0.009010454,-0.19589283,0.0257562,0.4352012,-0.3153819,-0.49694106,-0.08846717,-0.20677757,0.30268937,0.059855524,-0.3644335,-0.27508694,0.007480444,-0.521754,0.08933615,0.056710023,-0.50877136,0.05130738,-0.20833533,0.04544274,0.97905344,-0.14644688,-0.1836407,-0.2575644,-0.5809434,-0.7220559,-0.37104496,0.05089773,0.18201791,-0.24972576,-0.37798914,-0.05062908,-0.20553267,-0.3981746,0.07186287,-0.428159,0.323356,0.19253449,0.38934532,-0.22662328,-1.0194508,0.13510185,0.11419168,-0.11598292,-0.5880143,0.4520227,0.016768664,0.980123,0.12828052,-0.2157924,0.2805545,-0.18390381,0.15260296,-0.3501719,0.022743225,-0.68834496,0.15041615,574 +861,0.30219248,0.032740355,-0.57263374,-0.113830246,-0.11907914,0.045354888,-0.35498407,0.42685422,-0.100812264,-0.7324199,-0.040941343,0.15494521,-0.24596278,0.4225045,-0.19803302,-0.21927615,0.11742101,0.14491847,-0.3810638,0.31527343,-0.5702026,0.3038402,-0.024952898,0.18863954,0.104591995,0.2236008,0.052614544,-0.05694942,-0.21632957,-0.40829337,0.073017746,0.006499062,-0.4530114,0.30511555,-0.1026449,-0.41034088,0.022606641,-0.44654906,-0.14235868,-0.6170375,0.23926197,-0.84487516,0.5220199,-0.01964905,-0.19399925,0.22936265,0.18397641,0.4123399,0.19468375,0.045400634,0.39578226,-0.21849303,-0.16685958,-0.032493677,-0.12442968,-0.68828315,-0.54211235,-0.078339,-0.5880217,-0.19897379,-0.21157949,0.21471597,-0.21438967,-0.073673025,-0.20329024,0.25657162,-0.3386298,-0.18928559,-0.053782914,-0.09864169,0.3958584,-0.9161554,-0.16350104,-0.078790374,0.3721765,-0.4509213,-0.14925498,0.26918682,0.4699284,0.43155074,-0.01620713,0.021750152,-0.41089502,0.004451657,0.12542991,0.49717107,-0.45949635,-0.30743745,-0.1172573,0.005266329,0.49177936,0.14262988,0.15379463,-0.46990478,-0.03556059,0.16055064,-0.37877992,0.37594652,0.3330767,-0.23336935,0.013186623,0.5264738,0.5211142,0.11425584,-0.17707695,0.1298602,-0.035741854,-0.45558667,0.03554021,0.31117454,-0.059826914,0.3441632,-0.05505633,0.3331989,0.5214701,-0.12571615,-0.078859486,0.20222266,0.045953017,-0.12512973,-0.048211206,-0.3082071,0.18918492,-0.502309,0.20649488,-0.18129091,0.7330806,-0.060495347,-1.1342822,0.28356692,-0.4511274,-0.052011877,-0.13823624,0.5203658,0.6357318,0.40174174,0.025357304,0.7199967,-0.5200818,0.06721691,-0.039672773,-0.24784416,0.1912853,-0.078132875,-0.1446269,-0.5309412,-0.068427846,0.03690228,-0.10239658,0.075964324,0.44600162,-0.501507,-0.009885441,0.18091191,0.53182554,-0.29778162,-0.09875361,0.6036437,1.1265198,0.7732788,0.2713559,1.1201756,0.043088824,-0.0560393,0.040609706,-0.2180811,-0.6285297,0.19215465,0.51911145,-0.39079273,0.2231725,0.23535101,0.20588326,0.27391094,-0.23792373,-0.20412649,-0.16483603,0.17188536,-0.13261057,-0.49972034,-0.38686523,-0.12973818,-0.012418668,0.07194845,-0.140785,0.056405827,-0.27355352,0.21523081,0.32363817,1.4574574,-0.32257915,0.14360307,0.10221439,0.28885296,0.06739842,-0.2939125,-0.07847848,0.06831955,0.38971683,-0.0815082,-0.38773453,0.015781537,-0.07574562,-0.65360117,-0.2304654,-0.116635,-0.19396593,0.083044894,-0.2519513,-0.107024044,0.05616991,-0.5213116,0.47657117,-2.8450756,-0.104746126,-0.25749773,0.35807535,-0.1731189,-0.5212898,-0.07466748,-0.22620846,0.5381376,0.37752545,0.4024895,-0.5151203,0.30565527,0.42257753,-0.4260827,-0.11133003,-0.6797776,-0.13639349,-0.09618566,0.23672338,0.13720475,-0.24978487,0.056053545,0.09865583,0.44352964,-0.24025255,0.30889595,0.40827528,0.14138196,0.08299465,0.5470144,0.0457962,0.5922776,-0.07783704,-0.3110715,0.34000096,-0.2819828,0.06238367,0.10270702,0.27983195,0.266503,-0.3506744,-0.8143241,-0.7571896,-0.50258887,1.1456159,-0.054500367,-0.43271694,0.40057445,0.04186408,-0.59549904,0.032951456,0.33652034,-0.20274425,0.004902164,-0.9949359,-0.15065674,-0.25376788,0.35955152,-0.08028152,0.088865936,-0.6157756,0.6574417,-0.21829696,0.43263006,0.46536162,0.23652224,-0.46776107,-0.2710885,-0.15703905,1.2499146,0.43738642,0.0048454055,-0.06511658,-0.12613557,-0.37221336,-0.13419199,0.23248135,0.31544128,0.4965012,0.04871805,-0.07520252,0.14306812,-0.18500853,-0.036116228,-0.0718621,-0.4345669,0.0039739385,0.12099355,0.5199103,0.2843349,0.09899839,0.68307227,-0.23972757,0.12622239,-0.2372822,-0.41364312,0.51535565,0.5334041,-0.1139498,-0.33636197,0.6085065,0.38967252,-0.07655604,0.3849618,-0.53380543,-0.26818025,0.34766114,0.14851253,-0.44020918,0.028400898,-0.386044,0.2336936,-0.96683645,0.38487282,-0.46716943,-0.7538455,-0.5239908,-0.19303997,-2.8579285,0.1278917,-0.055018764,-0.48985147,-0.09867165,-0.23130132,0.4457922,-0.6272373,-0.6602682,0.07122559,0.042390022,0.6562627,0.018676097,-0.09678813,-0.14294375,-0.22935732,-0.10345792,0.27955517,-0.016625373,0.12905662,-0.0123056695,-0.28027824,0.043513983,-0.07701044,-0.27086964,-0.041576713,-0.6927681,-0.38201916,-0.16233885,-0.39973387,-0.43049523,0.73857284,-0.71071297,-0.10525676,-0.22812855,0.069233805,-0.018586734,0.4986876,0.06881904,0.12612455,0.17673862,0.0014785329,-0.21984403,-0.25746855,0.15306671,0.07360981,0.35418466,0.484785,-0.3906902,0.26863578,0.6857503,0.7030635,-0.1135857,0.85993284,0.61710846,-0.13458182,0.08670653,-0.38421407,-0.08543498,-0.51128215,-0.27653953,0.018885583,-0.3716009,-0.4284943,-0.05402948,-0.21523339,-0.73603773,0.5581444,0.025550336,-0.13967298,0.042290423,0.29863125,0.16295333,-0.080199,-0.13248341,-0.05325463,-0.092687525,-0.4280475,-0.36929712,-0.70828027,-0.38542464,-0.17766844,1.1508147,-0.053917196,0.3459004,0.27878284,-0.25743428,0.11388747,-0.016451731,-0.039352044,0.054493535,0.27133128,-0.008467565,-0.6579959,0.17229952,-0.19498439,0.00632675,-0.53127545,0.06948486,0.83408546,-0.36245298,0.42350164,0.3689538,0.18042691,-0.17804962,-0.5497578,-0.07118143,0.03358864,-0.47061506,0.44842955,0.092624925,-0.6148403,0.54998475,0.41295633,-0.17806797,-0.592199,0.50427586,0.059063178,0.25995567,0.19625469,0.25358072,-0.046958435,-0.11620317,-0.08547137,0.25785816,-0.3602674,0.4800547,0.35749552,0.16458876,0.295434,-0.23599143,-0.16775715,-0.61076075,0.027787978,-0.22284858,-0.22642088,0.09569331,0.089551784,0.21152397,0.39008448,0.16906874,0.37241518,-0.52522594,0.20880015,-0.14403331,-0.16541065,0.11106884,0.51245826,0.4277824,-0.44437337,0.46757424,0.054595888,-0.16451637,-0.4469541,-0.195594,0.64051,0.1450715,0.08662363,-0.019542307,-0.1837612,0.25042543,0.8783253,0.21703386,0.3395227,-0.06983032,-0.2137001,-0.03527352,0.035341103,0.31229612,0.09697213,-0.6011966,0.102953255,0.084170066,0.12098982,0.4494268,-0.019191876,0.0693987,-0.26343146,-0.27054712,0.115300536,0.14929356,-0.07784876,-1.1396527,0.6253842,0.17368108,0.5377443,0.41624352,-0.025376013,0.22495466,0.7102804,-0.298569,0.13041945,0.050473947,0.05006258,-0.3309609,0.50602984,-0.7733233,0.21843176,0.061535086,0.0073364205,0.001087139,-0.18596244,0.27825856,0.952553,-0.19966526,0.25277588,-0.101893395,-0.22776377,-0.005410557,-0.18120147,0.080682404,-0.31809953,-0.26565534,0.8318951,0.40995106,0.3812758,-0.11596168,0.008968045,0.12113797,-0.063318096,0.17492028,-0.124299444,0.09550082,0.013585784,-0.39305198,-0.14758915,0.53736156,0.16548072,0.067119814,0.18062158,-0.37341914,0.36261442,-0.036380086,0.057944696,-0.13728614,-0.45951948,0.12314335,-0.19217055,-0.113657676,0.059666146,-0.32635266,0.21661772,0.101578765,0.045486737,0.031245759,0.39485064,0.39840722,0.6699627,-0.09311237,-0.016893512,0.011658654,0.07378573,0.012750402,-0.018718971,0.022954633,-0.36632323,-0.118819594,-0.78978604,0.27212057,-0.1731426,-0.2855055,0.24852371,-0.007114686,0.13563913,0.32590175,-0.26137912,-0.08902409,0.08415613,0.16815786,0.114032425,-0.2650918,-0.35761532,0.13387771,0.08237847,0.1248489,-0.24724014,-0.01429078,-0.36594677,0.13550262,0.18675031,0.55878896,0.36313602,0.21260695,-0.460695,-0.038872298,0.021330168,0.38534388,0.039557297,-0.112633966,-0.07331649,-0.2916304,-0.22958393,0.21694808,-0.18484557,0.26548836,0.13853733,-0.31433043,0.6515585,-0.040792663,1.3847398,0.013595429,-0.36757132,-0.024309248,0.37439954,-0.038446516,0.092106104,-0.18618685,0.80466366,0.5709358,0.040412765,0.09863452,-0.3588543,-0.38199767,0.2024188,-0.18846714,-0.118395984,-0.08553908,-0.7760691,-0.43426538,0.24271144,0.098027386,-0.20814924,-0.027577639,0.12349441,0.36697468,0.045598015,0.35474452,-0.4437271,0.05892547,0.2497197,0.3103014,0.024968931,0.028960312,-0.6372349,0.41333666,-0.7446491,0.108447455,-0.31023243,0.22652476,0.09933821,0.0050519607,0.048697796,-0.07204273,0.39331353,-0.115893126,-0.38132623,0.064821355,0.6904111,-0.002153312,0.25172064,0.5963605,-0.28150097,0.37798497,-0.08118294,0.23604345,0.88174987,-0.3134933,0.16205512,0.3744571,-0.12171636,-0.43027434,0.18870996,-0.41599107,0.120686375,-0.035528604,-0.36742368,-0.20040949,0.2846526,0.32676485,-0.012692906,-0.1108276,-0.48044404,-0.07404914,0.35713437,-0.4350067,-0.29667848,-0.19706553,0.1751446,0.54171723,-0.39719534,-0.5581141,-0.058444012,0.46365058,-0.22189458,-0.37519288,0.1398771,-0.19894798,0.37426028,0.14190818,-0.44273862,-0.15677114,0.05841777,-0.33154374,0.0013367584,0.1953785,-0.34482744,0.0340822,-0.20322023,0.04758664,0.6599709,0.06346003,0.05893289,-0.61920005,-0.44310966,-0.6823299,-0.2674261,0.10048727,0.28867948,-0.02207415,-0.6334181,0.018299228,-0.15954432,0.012072225,0.06075111,-0.37894812,0.5181883,0.10986873,0.5665858,-0.4139539,-0.65477103,0.08647397,0.21145372,0.22176386,-0.5570198,0.4619863,0.06256775,0.91646314,0.15630506,0.030639678,-0.03839536,-0.5441462,0.34540096,-0.08666662,-0.18639122,-0.8216209,0.06122795,582 +862,0.29806644,-0.05422237,-0.51852703,-0.0812731,-0.2624065,-0.08482114,0.07613993,0.5427373,0.38202783,0.016778419,-0.21389477,-0.12825187,-0.112879656,0.27716598,-0.010108518,-0.61563015,-0.21679907,0.35066864,-0.540158,0.55184895,-0.24899113,0.24221991,-0.006512634,0.5286308,0.20569499,0.21960258,-0.00859576,0.043324333,0.019535035,0.02224064,0.0030903418,0.27600458,-0.6705943,0.22099693,-0.22967172,-0.27626732,-0.24540143,-0.5367616,-0.47417966,-0.74744684,0.48459673,-0.6504323,0.6275274,0.09753261,-0.330138,0.1266718,-0.07692316,0.28011164,-0.18745433,-0.11915647,0.07121255,-0.084748805,0.026808077,-0.14396842,-0.21790709,0.06977204,-0.54658335,-0.013618104,-0.16269928,0.046385825,-0.08156943,0.12927142,-0.24272652,0.072144635,-0.17957209,0.5885444,-0.28026038,0.32058167,0.25408384,-0.012131549,0.17320581,-0.49262056,-0.09885349,-0.19075687,0.19435962,-0.08930323,-0.38340044,0.3724608,0.14922686,0.49196708,-0.14402367,-0.14961076,-0.16646299,0.21826208,-0.041872825,0.5057647,-0.3253956,-0.08253864,-0.12012141,0.04996911,0.18940298,0.251894,0.018930972,-0.36872903,-0.027729385,-0.2692935,0.13671587,0.13681905,0.4491253,0.045300346,-0.22393936,0.2112689,0.3021005,0.2379431,0.034304265,0.13394517,0.0047690845,-0.53576916,-0.22081584,-0.048401758,-0.2810233,0.57992536,-0.075710095,0.039055046,0.47316027,0.06807274,-0.12352889,0.018181294,0.27499226,0.1086031,-0.41200718,-0.3024587,0.3547237,-0.32868096,0.2591864,-0.05168357,0.52582985,0.19986022,-0.75203615,0.31944665,-0.6057432,0.21166086,0.006178595,0.479717,0.9805961,0.38611734,0.362703,0.81450623,-0.52512044,0.21575136,0.15566264,-0.24478216,0.12564217,-0.05715451,-0.030418262,-0.5303508,-0.20786428,-0.09764052,-0.44232735,0.2702125,-0.10315976,-0.52812284,-0.09480091,-0.058631677,0.67391664,-0.25677672,-0.038249403,0.8568523,0.9992117,1.0156474,0.06339091,1.1978167,0.17653792,-0.15350725,0.25195205,-0.1705914,-0.8926982,0.124248706,0.2516361,-0.67099494,0.39853796,0.12276716,0.087656535,0.37432864,-0.6366284,-0.019197961,-0.096428186,0.18791471,-0.05818973,-0.112557925,-0.4685382,-0.41651225,-0.07064372,0.14928797,-0.056635488,0.19996405,-0.2142061,0.45523167,0.080881886,1.44815,0.09859986,-0.061825063,0.07792909,0.16864729,0.16524823,-0.26573518,-0.350378,0.23604025,0.36764765,-0.012980133,-0.47261068,0.035850655,-0.13152398,-0.19912477,-0.1705234,-0.14543636,-0.0057988637,-0.087352455,-0.37009454,-0.37622377,-0.09644326,-0.32492122,0.55898094,-2.6123512,-0.09822162,-0.06664255,0.46260837,-0.18743901,-0.33320957,-0.30510294,-0.4191322,0.22938831,0.28239587,0.39238772,-0.5907456,0.08012802,0.15260671,-0.5989047,-0.07404975,-0.5996134,-0.12020755,0.26213336,0.08084076,0.005647067,0.18481505,-0.071577154,0.13165738,0.35295033,0.07477974,-0.01623126,0.28538924,0.39864993,-0.010204986,0.29674792,-0.077037066,0.50588924,-0.27575323,-0.18901469,0.37850308,-0.36447656,0.32000348,0.013025862,0.10372943,0.526388,-0.53551906,-0.6906869,-0.5396233,-0.30126488,1.1229295,-0.235355,-0.30767617,0.28497997,-0.58854336,-0.23593532,0.054624204,0.46941617,-0.15614486,-0.31557098,-0.8245477,-0.24515037,0.038169958,0.2788642,-0.011061902,-0.038628165,-0.32056847,0.61064345,-0.16469763,0.33302185,0.5434443,0.11619679,-0.14120252,-0.5835592,0.036130443,0.56855017,0.49019778,0.07411745,-0.19671667,-0.03765912,-0.21506213,-0.10090474,0.08642518,0.79457134,0.579398,-0.28088567,0.10953734,0.33552352,-0.024038194,0.044376567,-0.017956823,-0.25475565,-0.17060488,0.006739998,0.60307825,0.90027994,-0.18051231,0.2241826,-0.047928736,0.2731903,-0.010203577,-0.59954756,0.42561236,1.086068,-0.08886073,-0.25980422,0.58029586,0.22884925,-0.27062407,0.4268311,-0.48563334,-0.09506913,0.5518792,0.060009908,-0.41925204,0.030421535,-0.1921658,0.068281434,-0.9453135,0.26456597,-0.120551966,-0.6434235,-0.7105666,0.033180088,-2.2533538,0.06619302,-0.34668848,-0.037127543,-0.07827895,-0.08726106,0.12273321,-0.49629736,-0.84274673,0.1657746,0.08373344,0.42179716,-0.1572351,0.12082812,-0.05039801,-0.32876468,-0.23467036,0.13342677,0.43603835,0.28946528,-0.106704146,-0.39400387,-0.21518259,-0.13922401,-0.47247562,-0.049665857,-0.6167359,-0.5441602,-0.14372705,-0.83809525,-0.1356528,0.6011007,-0.3922193,-0.1763543,-0.21116537,-0.06702409,-0.120825656,0.21981756,0.03416792,0.30898866,0.091290854,0.005429335,0.03642528,-0.1356677,0.21969128,0.06999258,0.31253937,0.30404282,-0.20958996,0.3509216,0.44896033,0.81849915,-0.20682824,0.75348026,0.61759555,-0.021638542,0.12640576,-0.39047757,-0.3189117,-0.57446426,-0.26276657,-0.1944499,-0.39154348,-0.2625365,-0.10804441,-0.4286007,-0.9316154,0.42044544,-0.14711475,0.17498583,0.07616825,0.004393319,0.5027335,-0.18139625,0.12300986,-0.14947516,-0.2221998,-0.44570288,-0.32171035,-0.38086963,-0.571668,0.13207805,1.2090935,-0.018035015,0.14402874,0.15332936,-0.39765093,0.027096406,0.029114842,-0.09222958,0.2628158,0.52062017,0.021161282,-0.51583415,0.19791155,0.15340531,-0.14520341,-0.79342014,0.21312527,0.63622826,-0.5560749,0.763606,0.19471103,-0.03659608,-0.083870836,-0.65907013,-0.32763922,-0.008764337,-0.17319286,0.44241726,0.4138124,-0.39207697,0.33175656,0.1731919,-0.15283914,-0.7123863,0.3863947,-0.010410234,-0.19227774,0.040755782,0.34881195,-0.17631555,-0.059425574,0.121014304,0.42570308,-0.04590492,0.26798716,0.22322355,-0.10553219,0.032162715,-0.1616649,0.002099216,-0.79579943,0.24237688,-0.43538156,-0.34579146,0.31889763,0.102246635,0.105800055,-0.0041217827,0.3231163,0.3769972,-0.20409657,0.12760638,-0.17093533,-0.35083798,0.17748974,0.44361028,0.36217847,-0.4934592,0.39947894,0.021538762,0.09195647,-0.037669796,0.12584893,0.43533838,0.027357548,0.1624357,0.07945625,-0.18942113,-0.06058188,0.6006213,0.064601436,0.17561857,-0.081601135,-0.010519718,0.26719028,0.05693336,0.18020882,-0.1707837,-0.3735148,0.14816777,-0.15298383,0.16265507,0.3840104,0.15077265,0.19587462,-0.22331886,-0.4060849,0.11336588,0.15238042,0.18505575,-1.3299209,0.2599952,0.07602356,0.76184154,0.53927046,0.13550664,0.038864527,0.43522492,-0.23190403,0.115549,0.48568523,-0.076403685,-0.4806575,0.3877431,-0.6429285,0.5757816,-0.004272852,-0.03462248,0.14572361,0.1985784,0.37447092,0.7197462,-0.10291376,-0.04002404,0.0034736346,-0.18543018,0.018161252,-0.37501636,0.078541584,-0.60400057,-0.37587407,0.6551562,0.56921035,0.20727538,-0.34353817,0.014299248,0.055088717,-0.10344408,0.19610111,0.070821494,0.08311907,0.073445,-0.5828818,-0.1053962,0.56066513,-0.02101407,0.018818637,0.06676749,-0.080555364,0.3068305,-0.15601218,-0.18371934,-0.21254392,-0.8394777,-0.019496182,-0.3685896,-0.16427459,0.35477233,-0.27279556,0.1706144,0.175851,0.1584226,-0.5017537,0.40034226,0.10342241,1.0023832,-0.082815506,-0.052201647,-0.25908366,0.4400313,0.27869728,-0.12195533,-0.04471718,-0.2658442,-0.054319054,-0.36599728,0.423498,0.08129414,-0.25396767,-0.015571962,-0.037120596,0.07472003,0.42496383,-0.21729384,-0.0886813,-0.054700937,-0.14366364,-0.49792218,-0.20269948,-0.30260158,0.24433424,0.3527801,-0.12096426,-0.031169772,-0.056608107,-0.24746192,0.32938477,0.104414515,0.35014686,0.20434411,-0.018315932,-0.40997323,0.043108415,0.117726356,0.48626745,0.06645712,-0.22959213,-0.26639834,-0.12192931,-0.32678065,0.2528584,-0.17850685,0.3213149,-0.07694878,-0.211403,0.67105323,0.15844405,1.207705,-0.16580386,-0.21170773,0.042615533,0.43294096,-0.010693274,-0.17680752,-0.21026085,0.8354922,0.55469865,-0.07955713,-0.17308033,-0.19803806,-0.06240947,0.15649745,-0.084281705,-0.15462388,-0.006200368,-0.58660215,-0.24829167,0.11570669,0.16663796,0.122689806,-0.058746073,0.0018687894,0.055214416,-0.051796395,0.3095548,-0.13158496,-0.115815364,0.27737325,0.2549591,0.20492905,0.25358614,-0.3997675,0.3238913,-0.51708007,0.14143203,-0.46563855,0.14887573,-0.21175094,-0.28334916,0.06980697,-0.08582022,0.29536387,-0.3787448,-0.102692254,-0.44811532,0.62123424,0.16242243,0.1591992,0.6354302,-0.20030344,-0.048157174,0.1575883,0.375652,0.897281,-0.16976671,0.0038631558,0.15513825,-0.33389363,-0.52484137,0.28368095,-0.11857616,0.10726905,-0.21830247,-0.08837854,-0.5912454,0.06894422,-0.018798612,0.06823558,-0.17951535,-0.5943994,0.010131481,0.24364339,-0.22572558,-0.18950772,-0.43342936,0.08286085,0.55793387,-0.10584036,-0.5479091,0.20997758,-0.022095188,-0.1303455,-0.36183214,-0.0037956338,-0.39972606,0.13692349,-0.027574295,-0.52129215,-0.088775955,0.17087947,-0.3872436,0.08680221,0.052537393,-0.31069198,0.036948193,-0.076515764,-0.10211045,1.1473632,-0.2152931,0.23720586,-0.50837445,-0.5464278,-0.91965103,-0.27522472,0.3510208,0.25460568,-0.1101081,-0.7777162,0.037171762,-0.07008136,-0.1355055,-0.05466738,-0.27904478,0.40345648,0.24926585,0.39419362,-0.17996196,-0.80372477,0.071081705,0.15241322,-0.10762314,-0.44528905,0.40343583,0.1843967,0.7992955,-0.031027654,0.02859272,0.16454358,-0.49213228,0.18306541,-0.107091956,-0.16643889,-0.44850874,-0.060074586,584 +863,0.4182347,-0.33517778,-0.41119745,-0.120538376,-0.07484951,-0.24972771,-0.0031005342,0.410656,0.09491555,-0.22790892,-0.27822447,-0.0764984,0.15480642,0.5284175,-0.13091525,-0.90422016,0.004343102,0.23061197,-0.6923783,0.6479064,-0.5415634,0.17268586,0.047367115,0.27577913,-0.063210875,0.29078123,0.3953619,-0.06652901,0.12017136,0.22426212,-0.16130553,0.16507886,-0.49147078,0.18914084,-0.010705511,-0.31705448,0.019194087,-0.2834047,-0.13981128,-0.7533435,0.23857726,-0.75594735,0.44296494,0.025924757,-0.31457976,-0.15602352,0.16209514,0.29993972,-0.70014066,0.06929793,0.1183,-0.057771128,-0.14258035,-0.31366828,-0.10356471,-0.45060062,-0.6166273,0.027074195,-0.531414,-0.22760384,-0.10186999,0.18290623,-0.42201045,0.0012594858,-0.11465424,0.57278097,-0.39472106,-0.07016846,0.46641648,-0.049250294,0.12392262,-0.48970857,0.0057526506,-0.16447574,0.32745266,-0.07233497,-0.26977405,0.3967955,0.40165773,0.5441633,0.3465879,-0.35190406,-0.22449875,-0.21796887,0.1623285,0.37441158,-0.092377566,-0.7046861,-0.2175976,0.18952928,0.20842917,0.27992344,0.09149101,-0.20180695,-0.031102462,-0.23592044,-0.1386057,0.24830486,0.63954514,-0.22485423,-0.5133357,0.29776746,0.5541901,-0.06695048,0.03352205,0.1821106,-0.07438282,-0.5650882,-0.2524399,0.056470413,-0.19046666,0.61607975,-0.2719012,0.11642206,0.7671108,-0.1093461,0.05314778,-0.102011226,-0.16208234,-0.17908639,-0.48567414,-0.21042092,0.22632463,-0.41608825,0.028455695,-0.39603665,0.84099025,0.356752,-0.74752015,0.49854615,-0.55551046,0.2922946,-0.0982424,0.7665828,0.7253712,0.33971095,0.45362592,0.8540764,-0.40226588,0.26007056,0.19231468,-0.40223274,-0.11693037,-0.21026403,0.071194835,-0.5082159,0.21565336,-0.1635869,0.018786127,0.056850147,0.47484124,-0.67545456,-0.18135458,0.21121688,0.7796169,-0.37553498,-0.09569576,0.72039336,0.98383,1.0756115,0.15752554,1.4358956,0.59476656,-0.28345373,0.3504349,-0.42879733,-0.87461835,0.1285229,0.39512083,0.1933624,0.37527815,-0.14849392,-0.24347351,0.41415653,-0.47493935,0.055491615,-0.25073925,0.54540086,0.09650058,-0.18231861,-0.41735557,-0.12354112,-0.09491414,-0.25655577,0.030066958,0.33838138,-0.21548201,0.46169844,-0.08836795,1.232216,0.014235866,0.04085932,0.17010391,0.44830096,0.27423728,-0.09954607,0.073515765,0.5032828,0.4911472,-0.22343247,-0.7467594,0.079189435,-0.51289946,-0.5058486,-0.23329937,-0.2273407,0.028561525,0.10755501,-0.2117755,-0.27634463,-0.099916816,-0.29110327,0.48923185,-2.4146101,-0.38276088,-0.20348074,0.43819097,-0.44764015,-0.15902947,-0.17693909,-0.51137185,0.40927377,0.26631108,0.48350593,-0.73283654,0.48707592,0.35488343,-0.56188184,-0.054790527,-0.8388377,-0.026371652,-0.12781407,0.25039896,-0.079595104,-0.08543471,-0.0610525,-0.080710374,0.6470149,0.09355716,0.087109715,0.4729685,0.46741715,0.17842717,0.3683962,0.06481748,0.6569557,-0.5330476,-0.073359855,0.3320723,-0.41918626,0.2974978,0.11181697,-0.030173754,0.48550406,-0.7318533,-0.79778385,-0.6343747,-0.42757395,0.85288906,-0.414067,-0.25714728,0.24748415,-0.049753543,0.14036669,-0.12717432,0.52763546,-0.14276081,0.017802492,-0.6782053,0.23244004,0.18418427,0.23483473,0.085238956,-0.035354752,-0.2589504,0.7096073,-0.2630832,0.6163778,0.33359337,0.30745843,-0.24929889,-0.5369961,0.081735134,0.70524216,0.3349481,-0.045919035,0.023508428,-0.28211775,-0.091733396,-0.261557,0.055143017,0.4858096,0.8749323,-0.14213069,0.11137694,0.5116534,-0.10779222,0.054130346,-0.030198798,-0.2740331,-0.2004242,0.09691056,0.42057577,0.7129254,-0.36092344,0.5682219,-0.20834132,0.34719276,-0.09827057,-0.53032404,0.73975354,0.8025925,-0.24388969,-0.099089645,0.47092748,0.28071022,-0.550895,0.468262,-0.68348426,-0.16298555,0.81810784,-0.2012875,-0.32557496,0.051743235,-0.23088671,0.19640893,-0.9210214,0.55255336,-0.37015152,-0.38030156,-0.61964774,-0.08970889,-2.8928852,0.19049476,-0.518976,0.0027077298,-0.27031446,0.028409585,-0.064302005,-0.6975426,-0.71097475,0.36683878,0.2433347,0.34545326,-0.061440557,0.32701707,-0.23025881,-0.11791124,-0.3231825,0.21403472,0.14552014,0.23043899,-0.09668797,-0.5110406,0.055070806,0.19421673,-0.51535505,0.34121394,-0.6791327,-0.42061278,-0.16838862,-0.84202355,-0.3176612,0.58796614,-0.42109382,-0.077962056,-0.23208408,0.099474214,-0.23884244,0.20797914,-0.028961599,0.17411067,0.091584526,-0.14696857,0.106013454,-0.29975075,0.39217034,-0.06962163,0.36956963,0.0068364986,-0.13217336,0.09783254,0.45615816,0.68338555,-0.013214588,0.6086914,0.5880817,-0.051986497,0.32577515,-0.20896439,-0.09593645,-0.61962324,-0.5495538,-0.13633303,-0.42994884,-0.6423021,0.10903274,-0.37821254,-0.8166921,0.4194806,-0.13879877,0.31238294,0.065096974,0.23380114,0.47989956,-0.03756312,0.110490285,-0.14590769,-0.20444334,-0.55234414,-0.28174174,-0.6960712,-0.43570462,0.41135368,1.070784,-0.27852833,-0.061573952,-0.25694862,-0.37567952,-0.05881615,0.18728732,0.05164336,0.35934615,0.32203257,-0.05739287,-0.64979523,0.32851508,0.16013835,-0.2296416,-0.49585167,0.14687575,0.6122832,-0.8225102,0.7910977,0.17396224,-0.056060057,-0.003967704,-0.6829181,-0.37140873,0.18415125,-0.065514125,0.39659277,0.1351719,-0.6428091,0.4864944,0.44197738,-0.48550916,-0.89127,0.13336541,-0.073046096,-0.121247016,-0.07345932,0.4167242,0.007129202,-0.24737602,-0.41522503,0.2543964,-0.39662632,0.33008805,0.15926082,-0.2485578,0.19139016,-0.125165,-0.2860529,-0.802571,-0.012629469,-0.8333741,-0.028888648,0.29529852,0.11931515,-0.15799977,0.016671559,0.14334176,0.47094822,-0.29588887,0.21282487,0.16093178,-0.5095523,0.080268115,0.37749568,0.26513782,-0.41623285,0.57716405,0.13283546,-0.12144149,-0.055228252,0.11005559,0.38833785,0.22124904,0.38476077,0.017337106,-0.010956491,0.44554567,0.8335204,0.06144765,0.44196844,0.28219846,-0.088611804,0.455027,0.06348807,0.07732134,0.07949897,-0.26881698,0.0024283428,0.17814672,0.25377885,0.46503702,0.32295403,0.44500265,-0.012248696,-0.29824564,0.006611629,0.32580566,-0.08623326,-0.94844955,0.369694,0.21514231,0.8669808,0.52882606,0.08322448,-0.17737234,0.5236105,-0.17387027,0.1720016,0.4415383,-0.2178802,-0.42220712,0.76415676,-0.54677814,0.39444026,-0.37694624,0.088754006,0.0472112,0.34052753,0.2404827,0.7661479,-0.18013193,-0.036433514,-0.121464066,0.0031442468,0.09567129,-0.5238195,0.08474662,-0.36130115,-0.39883098,0.6481035,0.22296686,0.2511785,-0.176627,-0.014506561,0.21229601,-0.22866456,0.29498053,-0.058212806,0.029671907,0.16665697,-0.57331043,-0.39723694,0.63478214,0.22244696,0.27313295,-0.092511855,-0.31191334,0.10519647,-0.46240988,-0.20944305,0.0021534462,-0.603798,0.04883339,-0.1763457,-0.34528598,0.52449995,-0.28662685,0.19738014,0.37314427,0.121528886,-0.44298658,0.05522424,-0.069270015,0.80478287,-0.064533465,-0.28980246,-0.32355055,0.07470413,0.2994086,-0.28930864,0.44463563,-0.31149018,-0.15276584,-0.5531617,0.78622776,0.05930844,-0.49704853,0.16056328,-0.311317,-0.22527254,0.6477008,-0.20436697,-0.1342286,-0.009017299,-0.30505326,-0.4619545,-0.27033857,-0.18736519,0.34444132,0.23076607,0.18993992,0.031886905,-0.23198693,-0.064619765,0.5185121,0.14278117,0.28364065,0.17864305,0.16187277,-0.15022187,0.11644357,0.25602078,0.41257575,0.2219221,-0.114317186,-0.22136593,-0.41641378,-0.15313812,-0.34005037,-0.20749503,0.25763008,-0.11010196,-0.3904539,0.7261314,0.13055427,1.401628,0.01365303,-0.30761555,0.0444598,0.5587627,0.084440015,0.009831381,-0.18681693,0.96447915,0.67777824,-0.069586806,-0.06870434,-0.5000542,-0.3156813,0.501839,-0.27412617,-0.22202718,0.19192411,-0.510017,-0.56704706,0.31895807,0.07041689,0.0026107032,-0.058391754,0.023493549,-0.00017905235,0.05407561,0.31913477,-0.6420408,-0.10097653,0.11402133,0.29499704,0.14101256,0.2945698,-0.39837566,0.3352327,-0.7422931,0.36116418,-0.23597519,0.09500299,-0.08561227,-0.37658015,0.13634217,0.005855764,0.36489165,-0.32157204,-0.4618064,-0.05526642,0.63884014,0.19185431,0.27987447,0.71688175,-0.38303304,0.058043096,0.23309815,0.666894,1.4477566,-0.26249325,-0.1832216,0.047775757,-0.43419442,-0.9326164,0.7994334,-0.20312835,-0.1426377,-0.30477557,-0.37452248,-0.643785,0.21159174,0.10486084,-0.07962427,0.22360177,-0.5603848,-0.2471088,0.34003246,-0.3840529,-0.15613213,-0.21962583,0.49517593,0.7918668,-0.24532974,-0.2479006,0.15663281,0.14840348,-0.3271418,-0.60174817,-0.24271242,-0.33970976,0.28251448,0.17010055,-0.2876279,0.010845506,0.20752625,-0.48612586,0.16690178,0.03695935,-0.28398588,0.29304904,-0.09515198,-0.207702,0.8132917,-0.24982162,-0.062507756,-0.79781055,-0.45067516,-1.012076,-0.32198957,0.60723954,0.113620244,0.009703546,-0.6793687,0.10520762,0.1979893,-0.10354612,0.010793735,-0.41501617,0.3722479,0.121105395,0.3945017,-0.30959097,-0.8623398,0.06320662,0.108252585,-0.008140296,-0.6514204,0.40723756,0.0032562416,0.9515564,0.017709464,-0.14508194,0.11334852,-0.4812126,0.010189389,-0.37727872,-0.1802261,-0.5502694,-0.1117604,596 +864,0.3321963,-0.15222836,-0.39556476,-0.13505332,0.106330514,0.12167844,-0.06733379,0.65330106,0.1263629,-0.33364287,-0.006542951,-0.10255843,0.10209859,0.43208537,-0.24033268,-0.50085706,-0.0010432353,0.11371102,-0.31282553,0.631308,-0.31750005,0.01137608,-0.090946,0.44286665,-0.024022901,0.29352036,0.0350966,0.018070241,-0.3331759,-0.03045786,-0.120087355,0.4470916,-0.48267433,0.17088534,-0.06011073,-0.1095046,0.03546748,-0.3131913,-0.3698415,-0.6909326,0.25952956,-0.751303,0.4060854,0.036004778,-0.30989888,0.4915497,0.21536517,0.15784778,-0.32974297,-0.30187312,0.036262255,-0.2232088,-0.026446382,-0.38065124,-0.09399817,-0.49941912,-0.5557366,0.06597706,-0.38988018,-0.15196186,-0.22638579,0.08995227,-0.22842632,-0.031398278,-0.1251461,0.6367236,-0.41736576,-0.0021279156,0.2039485,-0.20197271,0.25913838,-0.6174198,-0.24233986,-0.016254196,-0.0028478552,-0.011067472,-0.19718541,0.3213925,0.29560697,0.38339487,-0.2005787,-0.13175501,-0.37200418,-0.029610166,0.14255951,0.40555215,-0.37509164,-0.79367024,-0.015648967,-0.03741872,0.0030042443,0.042549808,0.2275375,-0.108944915,0.04027472,0.18233341,-0.35124624,0.4491018,0.5862105,-0.46937302,-0.13651349,0.15798967,0.45478725,-0.004385469,-0.24740988,-0.31751874,-0.014668864,-0.47583485,-0.07249942,0.021701485,-0.48957467,0.5841517,-0.103031754,0.006117945,0.49403277,-0.15244393,-0.16266143,0.08396741,0.23819888,0.11976486,-0.44169894,-0.17220838,0.2292432,-0.23605354,0.0052370825,-0.20307398,0.70467615,0.1520561,-0.5422929,0.3410759,-0.347069,0.099465705,0.009948921,0.36065552,0.48453274,0.55369604,0.29088184,0.69582015,-0.40761152,-0.032644957,-0.05651617,-0.23632114,0.15749411,-0.19068043,0.012203932,-0.4711837,0.18853498,-0.053883642,-0.17046571,0.1493683,0.1414966,-0.4966104,-0.13850252,0.28683898,0.91729707,-0.2777454,-0.14480118,0.580515,1.10927,0.74519706,0.013590548,0.9312405,0.23925626,-0.15029146,0.38062218,-0.2076115,-0.6824236,0.2681494,0.35084596,-0.28933537,0.24471009,0.036915433,-0.08630774,0.49236956,-0.34767297,-0.03789642,-0.12917113,0.36835328,0.306526,-0.008197705,-0.49865803,-0.1824147,-0.13144825,-0.11992681,0.24989724,0.15272033,-0.18979758,0.3836554,-0.009958953,1.3510442,0.08442076,0.006623482,0.044884022,0.47824708,0.29168996,0.041107375,-0.004047712,0.50076365,0.17986786,0.14986181,-0.49214745,0.19741626,-0.20133899,-0.61134917,-0.06609095,-0.35164902,0.08858033,0.051058054,-0.47240117,-0.17715324,0.031175025,-0.11015543,0.33534387,-2.8106925,-0.046686824,-0.13881224,0.45381236,-0.3116981,-0.322679,-0.06113008,-0.40817067,0.34206614,0.32320413,0.5066394,-0.57280535,0.21260597,0.18757443,-0.5026954,-0.04459158,-0.510494,-0.15942316,-0.1747539,0.48346078,0.13596213,0.015986234,0.1885569,0.0783355,0.64018935,-0.13687958,0.17830104,0.2606357,0.27180114,-0.11660548,0.4165345,-0.15221836,0.58938295,-0.33200327,-0.1508033,0.23538353,-0.52450675,0.18454204,0.11187339,0.19208546,0.41973063,-0.2823998,-1.0356089,-0.56058073,0.13069613,1.3006972,-0.27493343,-0.58284515,0.18298252,-0.40099216,-0.25545767,-0.07516926,0.39062735,-0.088791795,0.022634313,-0.8185896,0.143673,-0.09159743,0.19101058,0.03484676,-0.020507539,-0.3162626,0.6618566,-0.12677439,0.44894123,0.33246434,0.075507425,-0.38816556,-0.3775957,-0.16289097,0.93900365,0.2719809,0.10793524,-0.06475892,-0.24248855,-0.18526131,-0.09630827,0.12504208,0.5627497,0.41616902,0.009807713,-0.0017071068,0.19926806,-0.08588349,-0.017487438,-0.097405374,-0.47710562,-0.1576183,0.008306503,0.6162775,0.69095165,-0.32066637,0.3141302,-0.23802312,0.34964725,-0.13444792,-0.46926108,0.49766722,0.9987922,-0.16944052,-0.3724672,0.7264189,0.6131647,-0.4453912,0.34729186,-0.5631097,-0.35342136,0.5181332,-0.20353003,-0.31613985,0.2042616,-0.27876577,0.07695343,-0.72437096,0.25880256,-0.37749398,-0.3527756,-0.554026,-0.11872086,-3.6257517,0.22415347,-0.29705665,-0.25053814,-0.2739013,0.04836579,0.102378815,-0.5862033,-0.37657547,0.24435662,0.13871454,0.4207205,-0.010417104,0.13046475,-0.2400857,-0.20586263,0.045829486,0.22324008,0.14106672,0.23972909,-0.10505318,-0.5421065,-0.15002684,-0.13211466,-0.47304752,0.2607359,-0.7781642,-0.48113123,-0.13977589,-0.63102907,-0.32505855,0.6047817,-0.41331577,-0.063975014,-0.17887026,0.14657886,-0.18336399,0.1686977,-0.07583674,0.27493268,-0.021306926,-0.05583558,0.23651321,-0.31474555,0.2520062,0.11818317,0.46444955,0.32678422,-0.018020004,-0.0058492622,0.5747587,0.63680995,0.08843661,0.8518779,0.59674716,-0.014713119,0.35872182,-0.21860236,-0.20112745,-0.503779,-0.35319805,-0.06238957,-0.37673786,-0.22160245,-0.015859762,-0.34691286,-0.67994094,0.57865316,-0.08354908,0.074425176,0.020655636,0.35586727,0.6357397,-0.31981948,0.049779523,-0.15297301,-0.18180095,-0.56561023,-0.3046724,-0.53072816,-0.35794553,0.10656792,0.7541607,-0.049606916,-0.017730681,-0.15481709,-0.24576366,-0.0061053634,0.09773617,0.023988986,0.18960293,0.4848237,-0.07524604,-0.66280675,0.43875346,-0.1654536,-0.24725436,-0.46236134,0.3071269,0.47439983,-0.58980685,0.8754556,0.4732387,0.008451874,-0.13864714,-0.4147296,-0.2677831,-0.010206307,-0.1383032,0.3513756,0.25729918,-0.92804223,0.34313604,0.28494287,-0.4544498,-0.63070655,0.42068323,-0.15867944,-0.31743166,-0.23515594,0.39038,0.040364124,-0.027632883,-0.14363128,0.104574084,-0.46988487,0.19117634,0.18838654,0.01815784,0.5040943,-0.1327852,0.05809726,-0.8331706,-0.051405746,-0.49618936,-0.26830545,0.4087403,0.13574244,-0.028703703,-0.057556406,-0.07963292,0.35140622,-0.3419023,0.10800075,-0.052544426,-0.31337783,0.40860328,0.40565333,0.5143478,-0.4090352,0.52845377,-0.028285764,-0.029391253,0.02590406,0.053329956,0.43406317,0.24210574,0.37834427,0.11751745,-0.065843865,0.3449514,0.6918356,0.12573804,0.6073352,0.090744376,-0.14319569,0.30647466,-0.027076446,0.053731397,0.06102854,-0.47925934,0.10528169,-0.108664654,0.1574005,0.5284908,0.04947916,0.4534441,-0.11583535,-0.27196681,-0.05579142,0.30005208,0.09898924,-1.2275192,0.26660302,0.07547362,0.8367576,0.30845323,0.08754367,0.00017052889,0.7618194,-0.1427209,0.085965425,0.3833842,-0.07515937,-0.46734643,0.59751874,-0.6455344,0.34884346,-0.19170642,0.005236762,0.03711081,0.1202265,0.2962282,0.81159097,-0.14709978,-0.06441563,0.1480007,-0.42068765,0.186502,-0.362883,0.120808445,-0.3828152,-0.37096593,0.4456884,0.61021054,0.39924765,-0.2392451,-0.027204439,0.19482438,-0.041006263,0.1996109,-0.00074345124,0.15593117,0.07713734,-0.85803956,-0.18668057,0.49890053,0.24896522,0.23304193,0.018955627,-0.21476488,0.41107377,-0.16096579,-0.22812836,0.00022497028,-0.4798118,0.10220083,-0.20832002,-0.54350984,0.48872194,-0.2465329,0.19788007,0.1150741,-0.04478268,-0.44168213,0.25315854,0.07459195,0.76423913,-0.06380577,-0.17078651,-0.56777686,0.042225916,0.074614696,-0.0853555,0.24552667,-0.42287782,-0.10302482,-0.30746374,0.3789934,-0.12684815,-0.21376158,-0.20282978,-0.11586419,0.091614,0.57961905,-0.21350093,-0.2232594,-0.28124988,-0.14634925,-0.22842942,-0.45631066,-0.033233497,0.2755981,0.09323895,0.09243444,-0.041960374,-0.12251884,-0.06313978,0.49726304,0.04746894,0.31530514,0.36780426,0.2606158,-0.19484459,-0.07530984,0.28581515,0.49219394,-0.07599031,-0.23191254,-0.26627383,-0.4777008,-0.3402206,-0.09211493,-0.14637429,0.40312386,0.19112796,-0.26011774,0.7745251,-0.24659838,1.1860107,0.023195246,-0.3857073,0.014779049,0.41108355,0.06937584,0.13926657,-0.32784125,0.7475836,0.50106347,0.012797254,0.0045697764,-0.4527807,0.0040864446,0.109407574,-0.17595439,-0.14468378,-0.041917723,-0.62613004,-0.36025926,0.25226894,0.27597204,0.39561927,-0.06125921,0.19130866,0.12619123,0.07920147,0.26573196,-0.35774747,-0.032887027,0.26934198,0.32328862,-0.039052963,0.02937504,-0.36932346,0.34190583,-0.3771095,0.06479915,-0.40562153,-0.033953357,-0.18076442,-0.29803154,0.16684236,-0.14322942,0.3788067,-0.35702923,-0.2022353,-0.12481183,0.54686207,0.17769547,-0.00028371313,0.48851624,-0.13362761,-0.07001098,0.20287709,0.5803124,0.9354065,-0.47037402,0.046417844,0.16986103,-0.35764527,-0.81552035,0.41523778,0.012325431,0.33459413,-0.0749089,-0.15264775,-0.7113715,0.18183704,0.1843077,-0.032060165,-0.11368982,-0.43056592,-0.20364387,0.30707958,-0.45803335,-0.121748604,-0.08812157,0.18770538,0.4782656,-0.2788209,-0.40301585,0.08735559,0.23571365,-0.116115354,-0.36280265,-0.10490253,-0.54777414,0.30700818,0.13379991,-0.34002265,-0.117727935,0.081162885,-0.44269863,0.18231916,0.06292445,-0.3352919,0.017291792,-0.22680211,-0.055909056,0.8121896,-0.15845172,0.29260793,-0.5983382,-0.53080577,-0.9242275,-0.3579093,0.46789145,-0.102323644,-0.046326384,-0.6502714,-0.006601624,-0.036887947,-0.22984,-0.17078441,-0.4496641,0.40526748,0.098118104,0.36927268,-0.035659045,-0.5024551,0.1809128,0.19212162,0.14508815,-0.58160806,0.3298858,-0.05650264,0.9818254,-0.115924954,0.19913864,0.36045098,-0.35525224,-0.25849602,-0.20792985,-0.2984034,-0.46522948,0.08188709,600 +865,0.3036689,-0.11303002,-0.66448903,-0.01171876,-0.13000956,0.048240136,-0.1914972,0.48459437,0.032081753,-0.42069492,-0.14079098,0.053344715,-0.09739033,0.30830956,-0.19730885,-0.5281081,-0.064076744,0.2570682,-0.21010478,0.19091918,-0.4647769,0.1289458,-0.1728373,0.37474653,-0.14805911,0.2813517,0.2640573,-0.029157361,-0.16155571,-0.26183018,0.26822937,0.3866031,-0.6568025,0.3371593,-0.07480037,-0.31203023,-0.025629165,-0.42959595,-0.39709315,-0.66290605,0.2209069,-0.8334472,0.45515075,0.23421562,-0.24314152,0.098839976,-0.08587255,0.25051722,-0.2659882,-0.02048312,0.33378074,-0.35978267,-0.19216625,-0.384389,-0.031900585,-0.23944682,-0.514626,0.02960966,-0.34934977,0.012501326,-0.22892584,0.20468034,-0.40296283,0.08551758,-0.2926521,0.23200174,-0.43539676,-0.14331299,0.25168338,-0.30966505,0.22195876,-0.42216492,-0.08303671,-0.18074732,-0.029864019,-0.34483957,-0.20694733,0.41213873,0.119433366,0.3919009,-0.1450418,-0.15079767,-0.31472138,0.074640535,0.21727604,0.5473955,-0.41278294,-0.33398938,-0.09689057,-0.1094057,0.13290137,0.056901466,-0.15583305,-0.33339438,-0.063547224,0.038978275,-0.07933027,0.06971354,0.6275626,-0.1549792,-0.054298315,0.37745407,0.4824398,-0.051421743,0.02372128,0.061728965,0.077213466,-0.4805584,-0.21836495,-0.12135456,-0.050887797,0.5299167,-0.06792794,0.14761685,0.67800087,-0.31108224,-0.08722151,0.045697857,0.05173916,-0.076606296,-0.30262873,-0.3707401,0.58959144,-0.4021372,0.056632232,-0.14092483,0.781279,-0.039263293,-0.90755653,0.519517,-0.44093505,0.061153695,-0.21149671,0.73150015,0.5036052,0.5762065,0.22714704,0.7941068,-0.5429742,0.066640384,0.03729922,-0.41869965,0.37293705,-0.19726253,-0.22372526,-0.32751957,-0.16018523,0.19736254,-0.28492236,0.17128699,0.40787208,-0.4364178,-0.07809732,0.18364145,0.6008544,-0.37836263,-0.029157007,0.40639952,1.1868849,0.71801716,0.053253204,1.2070872,0.23375602,-0.18115418,-0.030630022,0.031389453,-1.0226918,0.24485534,0.31521958,-0.2864624,0.15620242,0.4116834,-0.2753725,0.5654895,-0.59940463,-0.07076482,-0.15069069,0.14646356,-0.18980412,-0.13244312,-0.5183651,-0.29386458,0.087009095,0.016194701,-0.13593529,0.37372684,-0.34530053,0.36018738,0.13218564,1.4817868,-0.095203854,0.23134993,0.08928016,0.47612646,0.083411954,-0.13874388,-0.16264999,0.22559136,0.31004825,0.20158117,-0.40907732,0.12264988,-0.010770659,-0.6053414,-0.18760325,-0.2784701,0.12936974,0.041208435,-0.28908092,-0.102041006,-0.014768253,-0.3995416,0.44466472,-2.5347357,-4.2577583e-05,0.08286145,0.3349917,-0.1698159,-0.20200993,-0.2781185,-0.33085737,0.3571497,0.48995474,0.54777163,-0.52857953,0.25519928,0.4139694,-0.42089614,-0.07687909,-0.6300743,0.101674415,-0.21269627,0.09334039,0.11259783,-0.13000558,-0.012091547,0.009324257,0.49673736,-0.18143336,0.049257364,0.32177678,0.22700821,0.13361019,0.13597527,-0.05474713,0.55593306,-0.6569019,-0.48569098,0.32343623,-0.25242034,0.23342575,-0.112021826,0.121937335,0.28851035,-0.34350792,-1.1568708,-0.6338177,-0.32153252,1.2533373,-0.41086254,-0.3961794,0.347468,0.0648287,-0.38315806,-0.020104121,0.47513953,-0.30721924,0.040861253,-0.8877111,0.046058815,-0.19918944,0.41960335,-0.043049995,-0.098155916,-0.6237143,0.486536,-0.20449615,0.51820177,0.54875064,0.098668635,-0.18751855,-0.42523003,0.06544256,1.0343678,0.23365285,0.23933989,-0.1632085,-0.10532007,-0.037482537,0.08132493,0.14295167,0.36988893,0.7821787,-0.04366915,0.04635465,0.28598174,0.03521076,-0.18880707,0.03848954,-0.39939347,-0.020592531,0.06678107,0.6817396,0.7316049,-0.13472645,0.23641217,-0.13944013,0.40675858,-0.14902413,-0.37208104,0.42426348,0.6064858,-0.054852594,-0.20630027,0.80819494,0.48320198,-0.43661848,0.67701,-0.6887873,-0.43624234,0.2263398,-0.04133739,-0.482536,0.16218667,-0.31809822,0.2970954,-0.84422034,0.506622,-0.25971195,-0.73083687,-0.6932865,-0.2205184,-3.9296906,0.24131215,-0.36711147,-0.19507484,0.071399815,0.02879149,0.37759018,-0.63886666,-0.42308545,0.118840516,0.2129283,0.64932555,-0.09236911,-0.034849547,-0.30553472,-0.04588896,-0.12190354,0.12600736,0.5009166,0.10305395,0.021303708,-0.5340281,-0.1747436,-0.21712895,-0.2682571,-0.0054962435,-0.6526143,-0.30868658,-0.090875946,-0.58404344,-0.4079747,0.6516126,-0.5408325,-0.031378895,-0.13703637,0.14708756,-0.19514048,0.4021754,-0.035520446,0.23868722,-0.098972924,-0.14759225,-0.13562371,-0.15138133,0.50049525,-0.017416188,0.39904818,0.48886672,-0.4468511,-0.036503196,0.70332855,0.5635366,-0.0811188,0.90532416,0.6163164,-0.16279274,0.12515377,-0.26182604,-0.16435595,-0.59391284,-0.4310873,-0.046606038,-0.5145514,-0.3600153,0.13708888,-0.40109026,-0.9371397,0.7118078,-0.085001774,-0.08182732,0.04234715,0.07631875,0.29758796,-0.3037646,-0.28934368,-0.19324253,-0.14552194,-0.49430522,-0.3124885,-0.6285479,-0.54585433,-0.22017288,1.2987021,-0.13217573,0.256071,0.19658756,0.045668025,0.06505301,0.14153679,-0.051138017,0.24275486,0.5409879,0.06542295,-0.57933086,0.41791764,-0.31920096,-0.08661284,-0.72664493,0.15771647,0.67710376,-0.885863,0.70385057,0.53764063,0.116743036,-0.05750357,-0.6340267,-0.41680694,-0.0023135692,-0.051157225,0.58732665,0.15817265,-0.9768458,0.4665587,0.46478343,-0.5703288,-0.707321,0.46134838,-0.17550842,-0.11777834,0.099986255,0.36611962,-0.44279352,0.017472705,-0.15379865,0.24397278,-0.31892654,0.3186982,0.23512982,-0.08282957,0.53510857,-0.3090396,0.05810937,-0.6697487,0.07890391,-0.46699095,-0.15613216,0.14844811,-0.15778495,-0.25098947,0.14338602,-0.026719982,0.57136816,-0.3647702,0.0844261,-0.12524125,-0.42086673,0.53975564,0.48773932,0.44942704,-0.47904125,0.65427667,0.0107628675,-0.23798585,-0.46537873,0.039932523,0.6666251,-0.037198458,0.30241182,-0.13002294,-0.019839851,0.3575311,0.7480554,0.2776338,0.5940809,-0.06327947,0.04118209,0.18767913,0.25381655,0.3114753,0.063204065,-0.5330423,0.08358172,-0.19175516,0.23257954,0.42770007,0.09122431,0.5732178,-0.23973982,-0.15439214,0.16482252,0.29095912,0.07062668,-0.937771,0.63688827,0.11152025,0.49710953,0.44136527,0.18770744,0.047754515,0.70359564,-0.22633488,0.15224393,0.113289714,-0.0804537,-0.48506382,0.58730996,-0.7854149,0.31375235,-0.020574043,-0.023204066,0.18082972,-0.23611677,0.52128047,0.7469952,0.011829744,0.22657739,-0.031962074,-0.1076322,0.059316237,-0.28006837,0.35606566,-0.52153385,-0.38736427,0.8000121,0.49710885,0.41513315,-0.13435207,-0.060486186,0.0984207,-0.045798767,0.23990728,-0.14291129,0.11822429,0.05508932,-0.77804095,-0.15147094,0.6832736,0.1222214,0.036237556,0.007943784,-0.12884708,0.44051203,-0.16520023,-0.15319003,-0.026243677,-0.37334085,0.11627377,-0.33135423,-0.24270813,0.4096876,-0.2625691,0.34785843,0.11856992,0.093047075,-0.49876466,0.31703004,0.16882657,0.9245103,0.09538426,-0.28398076,-0.29024366,0.3279246,0.35364595,-0.14879365,-0.055524994,-0.5657109,-0.18264551,-0.5980285,0.31233677,-0.19783486,-0.3930395,0.4277344,-0.044585586,-0.022191694,0.64009255,0.0748055,-0.22886948,0.056019317,-0.013836051,-0.32846367,-0.19439308,-0.3265902,0.26308298,0.08152119,-0.008485138,-0.04300795,0.093167126,-0.08421039,0.28674155,-0.02195979,0.27813008,0.26497835,0.26789725,-0.27297428,0.016411027,-0.101723544,0.633979,-0.08467996,-0.032285508,-0.32929465,-0.37488103,-0.13766187,-0.011405975,-0.1851647,0.3982675,0.1782964,-0.19812839,0.65758944,-0.09891429,1.0464697,0.025783896,-0.34635293,-0.10347509,0.66110545,-0.025857568,-0.10584434,-0.39020815,1.1197363,0.6707596,-0.21828283,-0.12046239,-0.4515724,-0.2612069,0.040637296,-0.22938336,-0.44545078,-0.040753655,-0.6983729,-0.108343065,0.26601592,0.5171447,0.07850857,-0.004317502,0.24483776,0.37836885,0.16126657,0.004014328,-0.32896277,0.07481819,0.43864974,0.29246256,-0.028337091,0.08069406,-0.36271027,0.3716141,-0.66598165,-0.013265002,-0.3413702,-0.012161228,-0.16287501,-0.38713276,0.09850189,0.017903993,0.29648927,-0.20212443,-0.09146715,0.07392872,0.4327514,0.2941221,0.23323731,0.87977904,-0.21553417,0.12372196,-0.010309957,0.31457743,0.8113823,-0.564164,-0.10936916,0.42387462,-0.14155509,-0.7268519,0.33525327,-0.32657564,-0.036151607,-0.26105747,-0.47446474,-0.46909437,0.29824144,0.11983956,-0.310646,0.19177754,-0.52381545,0.20448698,0.1157904,-0.15461934,-0.2833881,-0.38882804,0.30419573,0.77192134,-0.23211281,-0.48902512,0.18377669,0.30052122,-0.24137296,-0.41186666,-0.06977054,-0.27291206,0.118427396,0.13107683,-0.42978606,0.077360384,0.07480412,-0.28337404,0.26741633,0.26257026,-0.21188231,0.24800992,-0.22655983,0.11071267,0.717985,-0.1305718,0.10707068,-0.6767729,-0.53392637,-1.034,-0.21835135,0.53781265,0.24301617,-0.07405002,-0.49552843,-0.05341978,0.017115304,-0.099357665,-0.29207912,-0.31010962,0.38154235,-0.08049816,0.4394932,-0.15479128,-0.7116192,0.066877685,0.08129164,-0.08862278,-0.44449687,0.49891743,-0.048680197,1.0137185,0.051477402,0.24330501,0.2645708,-0.6926816,0.044086933,-0.2588912,-0.273843,-0.57770824,-0.02869281,608 +866,0.3250694,-0.21379244,-0.40894437,0.030391486,-0.011176512,0.1001811,-0.16889091,0.6370739,0.17733683,-0.401652,-0.23100643,-0.103298165,0.09112045,0.5059193,-0.17327602,-0.17698753,-0.2070447,0.26528773,-0.49419084,0.513329,-0.3055896,0.059414577,0.036741227,0.5762904,0.0544133,0.1148631,-0.09997525,-0.05654323,-0.47507536,-0.3457234,0.32723925,0.35597205,-0.8946077,0.20755005,-0.42945853,-0.22757751,-0.19582461,-0.56745714,-0.49303997,-0.7481392,0.25968802,-1.0318019,0.6603802,0.10153946,-0.24707912,0.35615048,0.06924871,0.3714626,-0.20743006,-0.0559691,0.30946445,-0.1904159,-0.1895929,-0.21577124,-0.10322672,-0.27457193,-0.6378518,0.041206475,-0.3618678,0.00919046,-0.22272837,0.19242243,-0.1149118,-0.04168892,-0.13550323,0.35079136,-0.44599238,0.22852129,0.06895296,-0.016017133,0.50195557,-0.56810385,-0.21394338,-0.18988092,0.32173502,-0.22695462,-0.17663865,0.1781712,0.100757964,0.29585713,-0.28372416,-0.03208937,-0.36630404,0.2188463,0.13187902,0.41214404,-0.32708824,-0.5242365,0.07019981,0.02462042,0.26255357,0.06945453,0.116439015,-0.20455809,-0.08852974,-0.0723091,-0.09171819,0.38444033,0.53772956,-0.16404887,-0.23615782,0.32532576,0.5667353,0.37442622,-0.06601087,-0.19710195,0.0763449,-0.64834124,-0.04502772,0.15706104,-0.36408553,0.56379515,0.0044063944,0.102217264,0.6333181,-0.21009284,-0.018335901,0.2269277,0.13142164,0.05831762,-0.22352566,-0.3992909,0.31609327,-0.13998584,0.2477388,-0.17860866,0.5728718,0.07605522,-0.7200958,0.3101357,-0.5723246,-0.01839363,0.06256945,0.44935703,0.5956852,0.5551624,0.3370773,0.5850208,-0.28692883,-0.053545535,-0.12726669,-0.20450795,0.21407938,-0.221214,-0.0011754731,-0.4597082,-0.19782092,-0.0019194683,-0.32859024,0.026912464,0.51265746,-0.47844335,-0.066715784,0.25155586,0.7486511,-0.202208,-0.18379362,0.73620206,1.0915114,0.7888109,0.06608788,1.2745658,0.16063248,-0.15566769,0.23207144,-0.18116732,-0.72586536,0.3285959,0.2861397,-0.72020197,0.42219487,0.20743817,-0.050857335,0.19942307,-0.56023246,0.083936155,-0.14128353,0.0784592,0.08546903,-0.1700163,-0.3643323,-0.25390851,-0.14973389,-0.006807497,0.12795389,0.17440183,-0.19163032,0.20030363,0.088493,1.5975493,-0.14376147,0.059473287,0.07253062,0.4604477,0.022014575,-0.069651596,-0.2163284,0.3508129,0.40627208,0.30268273,-0.40704703,0.11573873,-0.09769956,-0.49439272,-0.10880748,-0.20210421,-0.12047999,0.02218456,-0.4531883,-0.20871878,0.009846811,-0.27112445,0.45253742,-2.7200992,-0.08783994,-0.050016865,0.47209612,-0.3410426,-0.38422903,-0.1914155,-0.3068902,0.45241165,0.28328314,0.46719095,-0.6475233,0.36796227,0.31044072,-0.5285993,-0.10138788,-0.56474423,-0.14695828,0.05756147,0.26634452,0.060698736,0.011852871,0.24638526,0.050122242,0.4280844,0.04653551,0.112220585,0.44928455,0.41352138,-0.1120706,0.5106905,-0.23591459,0.4448202,-0.33974776,-0.26975074,0.38905954,-0.44063804,0.32534438,-0.08601179,0.13440974,0.3663905,-0.37653884,-0.93070364,-0.7537244,-0.35134265,1.1597708,-0.116983086,-0.47275606,0.05978323,-0.45059195,-0.4102025,-0.019783432,0.6083507,-0.12568434,0.1948518,-0.9295926,-0.28860638,-0.20024295,0.3515806,0.0014028847,0.08150711,-0.5451351,0.6686284,-0.052057404,0.35089847,0.38945845,0.11229382,-0.2791834,-0.537329,0.06268046,1.0949577,0.18372571,0.15835361,-0.28060263,-0.29023352,-0.3795893,0.13143851,-0.10082505,0.66568106,0.34138325,-0.03667809,0.060009394,0.17367963,-0.100313045,0.03333665,-0.11979862,-0.3542439,-0.17881937,0.09980474,0.6359231,0.8762602,-0.13767642,0.44784704,-0.24857982,0.2534527,-0.029902125,-0.35898295,0.42012367,0.8702356,-0.16487838,-0.1908056,0.8576229,0.58235586,-0.29281533,0.4143571,-0.5559847,-0.52370316,0.25241658,-0.08820417,-0.4053248,0.2723073,-0.31129757,0.070146985,-0.94420576,0.33871317,-0.41085532,-0.36517346,-0.6433039,-0.037777226,-2.7145386,0.0959148,-0.062106162,-0.29097566,-0.17798431,-0.3044176,0.19699167,-0.5583293,-0.6237876,0.17120905,0.043269377,0.5379932,-0.12994267,0.14309382,-0.2650452,-0.27012557,-0.033884358,0.24642555,0.37398648,0.3581141,-0.16609247,-0.5051697,-0.2184066,-0.11378321,-0.16598158,0.05295365,-0.8978543,-0.5744459,-0.06951287,-0.6137796,-0.21347664,0.67324513,-0.6113486,-0.13766968,-0.17294687,0.096608125,-0.12676807,0.34389916,0.041597288,0.2734978,0.17566498,-0.1852531,0.06873905,-0.05872407,0.4788586,0.16201134,0.32856795,0.4170635,-0.3538288,0.3430291,0.394158,0.59552515,-0.31577882,0.9741087,0.62392604,-0.15605895,0.20445359,-0.25387183,-0.27027264,-0.521297,-0.17902374,0.049141586,-0.4647858,-0.45833156,-0.054875087,-0.3461244,-0.89181226,0.70470303,-0.30109718,-0.032512635,0.10586155,0.26348034,0.49773622,-0.31570157,-0.06556586,-0.14348625,-0.034966532,-0.48432183,-0.43570566,-0.46246782,-0.45068958,-0.21172965,1.1152356,-0.024776692,0.1167969,0.24107414,-0.34877586,-0.02016677,0.014054577,-0.07690206,-0.10971853,0.67298216,0.030643543,-0.56844515,0.34988996,-0.09392854,-0.19761632,-0.59351194,0.48381686,0.63136286,-0.6757083,0.725687,0.5239429,-0.07900443,-0.25191045,-0.5608061,-0.3526634,-0.18198164,-0.12460125,0.31563717,0.2413113,-0.7717059,0.26592475,0.30007383,-0.3958505,-0.77092505,0.6223795,-0.08458701,-0.24002711,-0.058838736,0.3837687,-0.16564734,0.06702164,-0.24077795,0.4439578,-0.31913397,0.3758111,0.061627563,-0.11214275,0.16781592,-0.16745567,0.039934438,-0.82925767,0.27133706,-0.2929344,-0.5196047,0.43836212,0.1228744,-0.030791065,0.275646,0.23205964,0.32833064,-0.45842567,0.015156779,-0.14632352,-0.3820534,0.27766314,0.3961446,0.6493406,-0.44617328,0.51846623,0.0029861107,-0.23775856,-0.03449094,0.020843059,0.520578,-0.12559168,0.31480187,0.05607589,-0.10267293,0.25106123,0.7651546,0.22318311,0.52872735,0.038490098,-0.06533141,0.24434227,0.03653233,0.23781927,-0.058218583,-0.80210376,0.16254832,-0.23489064,0.1325947,0.3141204,0.07536157,0.16013636,-0.13498074,-0.30780017,-0.07523409,0.17915718,0.18938439,-1.2945184,0.33838907,0.080198966,0.7571474,0.40231562,0.06070803,0.21327412,0.7867479,-0.1504129,-0.0286675,0.42197385,0.0049941144,-0.5336763,0.61867,-0.72662765,0.4245002,-0.037537806,-0.0057493695,0.010534803,-0.110894166,0.4013319,0.8083291,-0.167974,0.08429992,0.03103376,-0.22052413,-0.024505893,-0.3371012,0.32388374,-0.5926336,-0.33145994,0.7681959,0.6567367,0.5229669,-0.21334465,0.04459242,-0.0021567096,-0.1481212,0.31217602,0.015702704,0.1356635,0.2507665,-0.7719307,0.14740534,0.5097724,0.0375323,0.10962117,0.017668946,-0.20628156,0.26200762,-0.25959402,-0.14295687,-0.17167962,-0.8542262,-0.22203666,-0.60116434,-0.3337345,0.3214965,-0.15086816,0.114481814,0.06695122,0.022820937,-0.21014494,0.4329194,0.14951819,0.8470953,0.14573735,-0.32608068,-0.26432732,0.29216823,0.17165266,-0.1745734,-0.03977793,-0.34055126,-0.047310513,-0.48441318,0.30365643,-0.104353555,-0.37920988,-0.078185566,-0.11793027,0.14391197,0.5799795,0.06215642,-0.14113015,0.06290513,-0.2584739,-0.27238595,-0.14505722,-0.09517604,0.25097093,0.49785492,-0.074702404,-0.121727444,0.01869993,-0.16730995,0.3515077,0.009567283,0.5673482,0.52008885,0.21072544,-0.09450594,-0.05299579,0.123051815,0.7527965,0.022075513,-0.16168274,-0.39000514,-0.2733996,-0.29401466,0.397439,-0.11548481,0.2936756,0.24194606,-0.17102723,0.82104725,-0.011141092,1.061833,0.07164736,-0.19546163,0.09999418,0.48822835,-0.07594808,-0.14944299,-0.6291025,0.93917733,0.46986446,0.038532633,0.007517328,-0.29170495,-0.077521436,-0.0074075647,-0.177975,-0.08587592,-0.12970869,-0.6422186,-0.124047674,0.20697136,0.4151845,0.15579458,-0.10553509,0.25184587,0.18920834,0.04643166,0.26410875,-0.52009004,-0.09199015,0.41640458,0.39245245,0.031692687,0.10211315,-0.37345847,0.34427598,-0.46010947,-0.036957514,-0.40359834,0.009181191,-0.2182756,-0.39668122,0.22606425,-0.039388787,0.4414593,-0.42405042,-0.14970848,-0.15639241,0.42804226,0.089372866,0.11473306,0.5054643,-0.20581222,0.061836768,0.01515155,0.50196034,0.8839851,-0.5846732,0.14433347,0.3374314,-0.22552311,-0.5382332,0.53313684,-0.3571314,0.44067743,-0.05051264,-0.26385197,-0.5479118,0.2427577,-0.017614312,-0.034424704,-0.21192741,-0.6316199,-0.00994201,0.42163387,-0.22049518,-0.17489888,-0.27235892,0.14220779,0.589835,-0.05729488,-0.5057872,0.11172094,0.3572956,-0.2959044,-0.2730526,-0.050221372,-0.4991572,0.10608369,-0.1336426,-0.44920525,-0.2200932,0.028247783,-0.47303033,0.13069569,0.18991761,-0.42547122,0.065913185,-0.38078633,0.028590167,0.99790376,-0.29050523,0.18606722,-0.43028918,-0.4401054,-0.9369159,-0.2867581,0.20763403,0.19122379,-0.06543937,-0.5149308,0.059308052,-0.09673003,-0.26862165,-0.09608388,-0.46124968,0.42674533,0.15285556,0.5786658,-0.27087852,-0.7693167,0.19336939,0.08583936,-0.08167312,-0.609793,0.43080556,0.08779993,0.95551294,-0.08028483,0.2128865,0.22972143,-0.5685025,-0.27873465,0.017759606,-0.04449721,-0.7658759,0.104305685,614 +867,0.67172235,-0.22885726,-0.5560405,-0.09242806,-0.12949409,0.0523061,-0.07591549,0.45044836,0.21295452,-0.3751162,-0.26522282,-0.18008156,0.16536586,0.38672838,-0.23362322,-0.7552016,0.23343845,0.08250344,-0.45345116,0.46405602,-0.5843957,0.39891008,-0.031635087,0.38964447,0.028828481,0.22696362,0.31808352,-0.0041053495,-0.07414625,-0.25601688,-0.15477476,0.016941437,-0.7320221,0.07314614,-0.06456106,-0.49063146,0.11013857,-0.5140823,-0.18683793,-0.64360094,0.24003792,-0.7854025,0.6649409,0.14593998,-0.12602602,0.048553187,0.041448142,0.20756163,-0.3012143,0.17246477,0.048056502,0.001903514,-0.088795505,-0.22298914,-0.026811576,-0.6322878,-0.64515555,-0.024420992,-0.53701776,-0.098831475,-0.15037517,0.00012321521,-0.3322076,-0.01688838,0.1401509,0.18096389,-0.38795677,-0.017977258,0.17284255,-0.06994205,0.26958737,-0.4330525,-0.061273355,-0.09496512,0.31320846,-0.28659552,-0.30832267,0.14577584,0.3797088,0.43339518,0.04053825,-0.15919596,-0.25506592,-0.13308094,0.08477968,0.62914175,-0.028271973,-0.8844485,-0.2929306,-0.0333472,0.15238865,0.38470483,0.2591405,-0.035624355,-0.19011955,0.09594821,-0.23936538,0.43267092,0.47633457,-0.59661967,-0.22432582,0.40114152,0.48601198,0.22062023,0.024720466,0.024111249,0.13334967,-0.6970175,-0.3098917,-0.045582533,-0.1831373,0.7318794,-0.2520183,0.32664278,0.6714651,-0.34879017,0.08329748,0.17308724,0.039199933,-0.2926208,-0.07033964,-0.07929611,0.1730382,-0.53772634,0.071323834,-0.22898805,0.7979601,0.3033614,-0.7540899,0.30377153,-0.69152075,0.04956691,-0.1792583,0.4971533,0.66929525,0.4317049,0.21324718,0.79238343,-0.5000194,0.014610437,-0.175146,-0.52866864,0.14731622,-0.06977976,-0.18979721,-0.50969535,0.071124196,0.24920641,0.03466989,0.19485188,0.65199965,-0.6022082,-0.12279729,0.08591839,0.68615836,-0.3243998,-0.26067302,0.7672451,1.0336331,0.8852079,0.0959824,1.4791689,-0.022102961,-0.16756873,-0.047292184,-0.1373155,-0.73386145,0.2712259,0.30163893,-0.3393935,0.43827963,0.12682448,-0.10380862,0.3086817,-0.21965905,-0.03444871,0.008886397,0.3484279,-0.102558136,-0.37150335,-0.39407757,-0.23734476,-0.102056555,0.11131203,0.24802081,0.4253651,-0.24342914,0.31375182,0.038273703,1.7453581,-0.051309723,0.22142597,-0.06156667,0.4308047,0.4238132,0.011475298,-0.17374551,0.345909,0.3225186,0.4305729,-0.5242653,-0.043787602,-0.23416889,-0.5994319,-0.1744595,-0.3075336,-0.20899618,-0.24454826,-0.39955106,0.037986558,-0.032513734,-0.19055228,0.6955014,-2.6378062,-0.30672696,-0.1382215,0.35503528,-0.26086035,-0.5078963,-0.1855111,-0.391449,0.45156762,0.31077585,0.58853036,-0.84378386,0.39446223,0.34802485,-0.40034425,-0.19429009,-0.5707254,0.014123728,-0.010263736,0.29558456,-0.0047582276,-0.24882591,0.018980125,0.28222355,0.525347,0.028109467,0.060429946,0.11607477,0.4568183,0.08689097,0.57680625,-0.11167119,0.6256017,-0.1521577,-0.12790398,0.20958848,-0.28632104,0.55654746,-0.21565568,0.14755675,0.25743285,-0.3851638,-1.1227471,-0.54262835,-0.10096844,0.9615695,-0.26788697,-0.27257773,0.16060549,-0.3139979,-0.3533227,-0.08977517,0.4458821,-0.26777178,0.1314358,-0.7057468,0.10763705,-0.1275795,0.042502116,-0.019419273,0.05198696,-0.5613633,0.70580786,0.051198255,0.5070489,0.3534247,0.11909751,-0.26919523,-0.5381754,0.056470077,1.1201278,0.4768081,0.17146946,-0.10107537,-0.19329377,-0.5091321,-0.041580122,0.13386743,0.64998436,0.8082246,-0.110035986,0.06631162,0.22741288,0.24854235,0.036464375,0.019118274,-0.20361958,-0.022744209,-0.26368853,0.6503324,0.8104658,-0.46770188,0.57875633,-0.17695087,0.35222185,-0.27928302,-0.47110602,0.65000534,0.8883758,-0.18857877,-0.2519389,0.70996284,0.3566467,-0.38345328,0.4063355,-0.67097,-0.30993158,0.45963502,0.027504772,-0.225771,0.21489994,-0.31907454,0.11187628,-1.1083885,0.37632164,-0.22523624,-0.22370756,-0.40854737,-0.27929726,-3.9959195,0.23629437,-0.22037847,-0.04634908,-0.24173494,-0.15475388,0.17780535,-0.8205652,-0.71913487,0.21773131,-0.05618,0.805749,-0.16544661,0.3350676,-0.09476354,-0.45021668,-0.30923453,0.20618184,-0.07737406,0.29504043,0.06769648,-0.3430402,-0.0705866,-0.14159398,-0.48101854,0.17438757,-0.56875116,-0.56238085,-0.039743915,-0.49819472,-0.33386377,0.84076786,-0.29958165,-0.06576963,-0.07979467,0.0030519068,-0.13247702,0.27696612,-0.013864939,-0.11535398,0.017605713,0.0027565013,0.12760149,-0.24437521,0.16137643,0.06636111,0.41909027,0.27003938,-0.32239607,0.20234263,0.5010024,0.66122085,-0.07923602,0.723497,0.2940649,-0.1204733,0.30291572,-0.36287645,-0.2084152,-0.48547292,-0.5664267,-0.21468614,-0.5380668,-0.5228998,-0.15384862,-0.30586925,-0.8213524,0.6182623,0.12801072,0.17971891,-0.21867807,0.4310949,0.5127099,-0.22984679,-0.08118367,0.07672917,-0.23227112,-0.5511901,-0.21172063,-0.53999925,-0.37719738,0.18682034,0.90509033,-0.43340847,-0.00783094,0.06667915,-0.06925466,0.077376805,0.09216819,0.021837158,0.029316245,0.29318318,-0.054888368,-0.70571345,0.67784405,-0.37941727,-0.30901048,-0.6334341,-0.05612276,0.5844315,-0.68937445,0.37121126,0.52178675,0.07366806,0.24462022,-0.5956073,-0.011473556,0.14698517,-0.1958102,0.27482608,0.34920967,-0.829186,0.512631,0.35446763,-0.25344166,-0.64055634,0.78757143,0.043572735,-0.28253493,-0.18724556,0.31705365,0.37774873,0.038601056,-0.43789795,0.2788683,-0.6704965,0.3047631,0.19500333,-0.031164499,0.5155478,0.1329865,-0.24702804,-0.7766296,-0.043353636,-0.53880334,-0.29432502,0.22275461,-0.013325945,0.14464734,0.1150649,0.28925592,0.29316878,-0.8186715,0.17091496,0.046798382,-0.28949073,0.3398229,0.4608933,0.5874767,-0.4600565,0.5543153,0.051422764,0.115602165,0.13448577,0.08155334,0.5047391,-0.066945694,0.3859836,0.21808648,-0.2708563,0.16184983,0.7415549,0.11558101,0.29807353,0.33078578,-0.041178357,0.0517554,0.17051078,0.2945616,0.21191078,-0.5947477,-0.01303415,-0.046168167,0.16301781,0.57746994,0.30441085,0.20809126,0.040943515,-0.21090424,-0.07472147,0.36867806,0.034466583,-1.4410915,0.38665548,0.25291252,0.68452865,0.4966983,0.054124355,0.09488908,0.25680438,-0.20130654,0.1911994,0.2802948,0.06835101,-0.43143046,0.57949895,-0.6769473,0.43189895,-0.107649244,-0.025709828,-0.026798764,-0.17421383,0.42525664,1.0509876,0.0014473498,0.052252572,0.031194462,-0.24169636,0.10612022,-0.4405822,-0.09139514,-0.64360785,-0.115086,0.78776544,0.47625753,0.28784955,-0.13582191,0.020359334,0.12771,-0.10046884,0.039628003,-0.08571816,0.33530453,0.05792935,-0.67323303,-0.37003025,0.6512391,0.14288993,0.28700185,-0.107976995,-0.271434,0.37597963,-0.09734816,-0.054503605,-0.0014666418,-0.7638385,0.08735153,-0.45049158,-0.4591838,0.54111165,-0.22093783,0.14998828,0.22380714,0.09419621,-0.16280036,0.3921803,0.0884243,0.7168341,0.015210251,-0.2553862,-0.38833964,0.3441004,0.24599873,-0.34097922,-0.14664222,-0.2512058,0.25254604,-0.6398173,0.47289515,0.10996407,-0.37284562,-0.119728476,-0.035408173,0.043384463,0.4386036,-0.11728539,-0.22721075,0.0061246804,-0.22503655,-0.17930023,-0.24757588,-0.2750681,0.18633018,0.2973193,-0.08412737,0.04243527,-0.04006957,-0.16673927,0.28513765,0.10834304,0.3382745,0.41676545,0.11946597,-0.22800219,-0.29374543,0.23565048,0.54719263,-0.3146958,-0.16159044,-0.42321786,-0.60175055,-0.4226029,-0.023335734,-0.1905818,0.3387073,0.22269206,-0.09786165,0.59047896,0.17518282,1.2231674,0.13731124,-0.4313723,0.056838084,0.69439393,0.026491499,-0.20686269,-0.42186865,1.3540615,0.47224018,-0.3394055,-0.24150927,-0.2759434,-0.108002014,0.24263422,-0.3560029,-0.23098314,0.021602595,-0.5387009,-0.3403634,0.27015647,0.24963166,0.21039997,-0.08388597,0.033095848,0.36327472,0.08602912,0.21866238,-0.7087204,-0.28051093,0.31900716,0.41980556,0.036545563,0.09791901,-0.43279442,0.3625137,-0.60236806,-0.03197514,-0.39011252,0.27271992,-0.26617715,-0.43111432,0.22323568,0.18467398,0.40725288,-0.29510733,-0.47807357,-0.18796508,0.24497934,0.23015903,0.17311142,0.651287,-0.23254383,-0.06950254,-0.21517813,0.5204136,1.3059176,-0.14675952,-0.020258233,0.57793665,-0.3510855,-0.6846449,0.32006696,-0.47654918,0.31654796,-0.16647439,-0.31806415,-0.7585921,0.28219035,0.032599706,0.23479342,0.1635449,-0.7067669,-0.27577505,0.18366045,-0.2523875,-0.30807707,-0.31961817,0.18502259,0.98280674,-0.33950242,-0.17923056,0.14413111,0.22042648,-0.17444627,-0.6124285,-0.13670029,-0.22457747,0.35981438,0.05516478,-0.26726818,-0.12936445,0.034812737,-0.39109623,0.27785215,0.2523305,-0.27605164,0.29877377,-0.42877474,0.013940115,1.0104351,-0.30811268,0.1767798,-0.42407992,-0.46834937,-0.7554078,-0.4079754,0.29528302,0.023218244,-0.005066635,-0.5082899,-0.0059464574,-0.064350024,-0.10310823,-0.19554813,-0.23197426,0.50013214,0.105164744,0.37453339,0.13526396,-0.9734192,0.1449272,0.16258776,-0.3318947,-0.74204737,0.54371977,-0.22410615,0.8390785,0.13241193,-0.005726786,0.5049229,-0.6765973,-0.08063764,-0.29132104,0.25366607,-0.89516735,0.17792107,617 +868,0.4248058,-0.24971986,-0.7452274,-0.20822312,-0.075928636,-0.10626746,-0.36919376,0.07747961,0.17784047,-0.67987543,-0.039111793,-0.009790669,-0.10865935,0.21171309,-0.2099027,-0.74569225,0.11310021,0.2710066,-0.699728,0.834338,-0.43190345,0.30864528,0.04787922,0.1757614,0.06233242,0.23380609,0.49385062,0.06550242,-0.19676079,-0.37488067,0.26005343,-0.12883885,-0.5955669,0.5766737,-0.026220283,-0.55111456,-0.10598099,-0.3318216,-0.37751555,-0.7106878,0.33441916,-0.8952581,0.5496529,0.058095235,-0.18107896,0.135742,0.066830516,0.32189292,-0.17664905,0.27530155,0.14558856,-0.2683253,-0.3866159,-0.46724284,-0.09339265,-0.38404188,-0.5381782,0.04158056,-0.6789654,-0.048115153,-0.31909063,0.09591428,-0.33813143,0.14697883,-0.31571302,0.68354446,-0.3757132,-0.21995717,0.19785166,0.01978224,0.27713743,-0.76914716,-0.3368381,-0.22797072,-0.0016446585,-0.16021876,-0.29198268,0.25978068,0.01876475,0.5096819,0.19157624,-0.35225716,-0.13904457,-0.30184385,0.425192,0.3449109,-0.1313171,-0.44920504,-0.31395903,-0.16338414,0.12678248,0.20926835,0.24898507,-0.44546726,0.17864233,0.030961959,-0.4301232,0.54677194,0.5916646,-0.19410117,0.012284358,0.2298364,0.5694849,-0.20166455,-0.20344692,0.15597214,-0.19510937,-0.43243954,-0.4028989,0.18835543,-0.03669322,0.5288797,-0.30475143,0.27534035,0.42844924,-0.36599544,-0.2162565,0.2607278,0.08019499,-0.07218329,-0.39819777,-0.47176436,0.48353818,-0.6734648,0.019388974,-0.4830985,0.9780037,-0.09332297,-0.6968725,0.29389626,-0.5238202,0.13675,-0.050803978,0.77300215,0.55683815,0.42409858,0.101711236,0.8141825,-0.59529036,-0.0023262154,-0.16278465,-0.35260153,-0.28508133,-0.086172186,0.096874624,-0.2772527,-0.036446493,0.026734302,0.077420704,-0.121462055,0.64418733,-0.3742998,-0.26392487,0.009523955,0.71516484,-0.44932425,-0.011827539,1.0420516,1.4516373,1.2457502,0.27894834,1.4597164,0.2585052,-0.15650338,-0.50950116,-0.12940273,-0.89689803,0.35763565,0.3468449,-0.056183204,0.37985063,0.040401448,0.04429363,0.36407247,-0.527908,-0.120552875,-0.18144445,0.6346938,-0.23578902,-0.18712904,-0.2816714,-0.06722016,0.21581493,-0.08056169,0.13193937,0.3672432,-0.26229846,0.21800947,0.240104,0.84881526,-0.34129426,0.19716714,0.1379771,0.28540257,0.20487295,-0.11270734,0.1872375,0.061441332,0.40196827,-0.13368303,-0.78467447,-0.10646125,-0.32766214,-0.7282854,-0.3543136,-0.2265919,0.12655158,-0.08044907,-0.15855615,-0.15396462,-0.18164118,-0.44409016,0.17233711,-2.2030962,-0.2282146,-0.2235096,0.1656952,-0.2594414,-0.3043636,-0.0062689832,-0.481596,0.6324153,0.2883953,0.47607747,-0.587064,0.6348531,0.5894516,-0.30408815,0.16310738,-0.6695544,0.024805104,-0.34734926,0.34657755,-0.027992338,-0.25641546,-0.10511205,0.00070670247,0.49970254,-0.03953698,0.16349669,0.41509488,0.3134816,-0.13799907,0.49634728,0.26790866,0.6008069,-0.7023983,-0.14561728,0.32842693,-0.40490702,0.15756379,-0.18441583,0.12355914,0.35614768,-0.7099276,-0.6404351,-0.68633837,-0.31835356,1.3047472,-0.2603766,-0.65843636,0.11115699,0.090509914,-0.39804542,0.054934908,0.08882988,-0.2751133,0.037211712,-0.902186,0.19538514,-0.23492508,0.14879413,-0.13313933,0.076116964,-0.7229077,0.670669,-0.015143623,0.44873324,0.44903073,0.3149152,-0.49401262,-0.33561444,0.13304318,1.3168523,0.4211981,0.13215053,-0.17458482,-0.106416024,-0.15567355,-0.10737812,0.30610147,0.5692351,0.83643866,-0.038216855,0.057771433,0.5436252,-0.100790344,0.11710104,-0.060053665,-0.59225905,-0.26671156,0.026185205,0.75879043,0.39305153,0.0685701,0.38326654,0.039286632,0.32666454,-0.38959405,-0.3678335,0.6238903,0.9429345,-0.140961,-0.51135004,0.7590506,0.48182642,-0.38448736,0.65935344,-0.53099173,-0.54568714,0.27979305,0.04228246,-0.33233628,0.07118765,-0.5309417,0.33304736,-1.0369784,0.39550337,-0.59301305,-0.64029783,-0.60916615,-0.44254223,-2.884741,0.33508387,-0.35770857,0.041634742,-0.26612225,-0.20959277,0.26212314,-0.33895954,-0.641294,0.27699745,0.059439465,0.6532829,-0.007901554,0.12784058,-0.076846175,-0.13583827,-0.16077273,0.13174848,0.10625401,0.13066778,0.1540962,-0.45435905,0.10746759,-0.19490172,-0.32577053,0.039867837,-0.36632153,-0.3664507,-0.074248634,-0.68046856,-0.53966993,0.54169065,-0.27176514,-0.031701867,-0.319837,-0.112079106,-0.06442284,0.3493152,0.008079289,0.3026633,0.17982095,-0.23905693,-0.08018619,-0.313264,-0.07843362,-0.1317144,0.32573935,0.36029303,-0.4892892,0.060341615,0.20711704,0.7377272,0.14562918,0.632718,0.31374204,-0.19531949,0.36140737,-0.19299173,-0.38659716,-0.8175978,-0.39274737,-0.019760603,-0.33544192,-0.50217277,0.0032777488,-0.34803557,-0.918592,0.68852973,0.054204207,0.21635674,-0.059101265,0.42185712,0.12713884,0.14961405,-0.17761034,0.0039883927,-0.22335805,-0.3048395,-0.32419875,-0.92642856,-0.3252417,-0.10823908,1.0123723,-0.039651666,0.021564415,0.25778565,-0.1645413,0.16629006,0.384279,0.039892226,0.16311422,0.42406318,0.053501423,-0.54901934,0.36954522,-0.083991684,-0.12385374,-0.4964606,0.18623936,0.894094,-0.45474243,0.557008,0.6844623,0.23333336,-0.16786051,-0.50335324,0.023423618,0.2178555,-0.171019,0.67540526,0.41956398,-0.8450795,0.654175,0.34728345,-0.16939431,-0.8283413,0.5484217,0.102267705,-0.16922294,-0.051291395,0.50889677,-0.20409568,0.07763081,-0.30049664,0.32088825,-0.14928938,0.27180037,0.10485345,-0.1333359,0.37283015,-0.27200353,-0.41630498,-0.534181,-0.059568927,-0.72975516,-0.035044145,-0.07911015,-0.15849182,-0.041229066,0.25968608,-0.1644382,0.49177256,-0.18627836,0.29203036,-0.09768942,-0.47752407,0.5510275,0.57103544,0.26623538,-0.48892578,0.8006029,0.09336895,-0.15671422,-0.54957277,0.19728108,0.5980789,0.11392269,0.52315336,0.27088845,0.21818127,0.4884573,0.6556506,0.51578754,0.49923444,0.28775844,-0.047775913,0.18349154,0.17370705,0.39850926,0.04486716,-0.26159057,-0.27054855,0.07236525,0.17875625,0.33202335,0.02214007,0.62498873,-0.067956835,-0.28801593,-0.09968376,0.26375046,-0.35340324,-1.3989582,0.6669741,0.11949769,0.6495853,0.7399523,-0.13519742,0.18559074,0.34190592,-0.2781255,0.075253345,0.110391654,-0.040995862,-0.23106313,0.656014,-0.43607077,0.23208596,-0.14816363,0.16215426,-0.1282019,-0.07571436,0.51033324,0.83045554,-0.16852893,0.2962752,-0.24240516,-0.19554873,0.170433,-0.41236198,0.15535556,-0.23468168,-0.36340055,0.9331241,0.1863593,0.46296135,-0.14902616,-0.12370119,0.20836622,-0.094431035,0.110955656,-0.042849492,-0.107878864,-0.02760764,-0.67584276,-0.32104254,0.48278078,0.2879187,0.13776384,0.19227816,-0.1672744,0.29881236,0.1676292,0.1089584,0.070800856,-0.5804541,0.16499394,-0.12470296,-0.30553886,0.25377843,-0.5184865,0.023789681,0.255652,0.1155869,-0.42560366,-0.0873215,0.12211295,0.41257808,0.094846375,-0.29439476,-0.01439774,0.06692437,0.31386334,-0.24601026,0.1356671,-0.36056316,0.15268825,-0.93222016,0.5448724,0.027460193,-0.36952186,0.26118335,-0.19408135,-0.15983301,0.44845596,-0.3601346,-0.19009013,0.30643794,-0.08450786,-0.00351351,-0.4635422,-0.19978446,0.24446811,0.07249769,0.16835158,-0.14016028,-0.024732957,-0.01483797,0.36079502,0.060176726,0.03389254,0.28793937,0.34063217,-0.5731257,0.015033044,0.19878484,0.51443094,0.053456094,-0.05288419,-0.22268927,-0.42391506,-0.13733779,0.2442097,-0.12398728,0.13870569,0.05940335,-0.4667695,0.74501103,0.27246177,1.1146355,0.07854301,-0.3940784,-0.012835045,0.4987626,-0.14159189,-0.21050708,-0.11444952,1.0658242,0.64264864,-0.30418232,-0.19602178,-0.7882896,-0.036214396,0.083661586,-0.18126754,-0.38576767,-0.014699128,-0.5535436,-0.41944695,0.23624915,0.5029234,-0.15897934,-0.031865668,0.20384924,0.4573284,0.19789653,0.27867666,-0.6584634,0.039669245,0.20726629,-0.12120835,0.032581553,0.11723068,-0.50667125,0.22111996,-0.9036135,0.2047668,-0.06983799,0.04463464,0.039075155,-0.31920764,0.371634,0.22861083,0.17951693,-0.50548184,-0.30059674,-0.118773215,0.41592738,0.14700292,0.11349839,0.8037894,-0.19694386,0.22427945,0.13625811,0.3194809,1.1426512,-0.00950664,-0.11003546,0.03429308,-0.45105395,-0.873267,0.27037504,-0.37709394,0.030353954,-0.09775164,-0.51833385,-0.5906639,0.25257912,0.11602336,-0.14286943,0.38845685,-0.6534655,-0.18994527,0.21190323,-0.23209196,-0.3236527,-0.25116,-0.097874306,0.62387925,-0.23094857,-0.16494569,0.0055392087,0.37136436,-0.32522163,-0.63367575,-0.14843757,-0.33903107,0.5030146,0.10613811,-0.071923696,-0.0442667,0.1359802,-0.49766108,0.21066011,0.38848102,-0.18600018,0.096268475,-0.08731779,-0.076774426,0.51941305,-0.21410467,0.21994583,-0.43564788,-0.47007382,-0.8923054,-0.195751,0.313992,-0.01658071,-0.031671464,-0.67158294,-0.08813467,-0.12004992,0.1679194,0.13179228,-0.44151962,0.3947741,0.21358687,0.44744816,0.081754215,-0.8726831,0.18822956,0.20185502,-0.120572366,-0.3328332,0.467386,-0.11033102,0.61875564,0.058416266,0.16980062,0.18349005,-0.9078247,0.20331782,-0.19525748,-0.26927462,-0.6722142,-0.09301666,621 +869,0.22700723,-0.40521422,-0.41840506,-0.17476694,-0.20552798,-0.1338104,-0.33679783,0.6917226,0.072363354,-0.47570816,-0.2441176,-0.26704702,0.18620141,0.62175465,-0.26671052,-0.5981808,-0.108287245,0.21212064,-0.5523429,0.7089334,-0.3701867,0.11158935,-0.05789281,0.5282528,0.1621915,0.100178,0.08588316,0.2187459,0.19851828,-0.353081,-0.20421755,0.2917873,-0.6133383,0.02599711,-0.3154452,-0.8317414,3.431365e-05,-0.5272551,-0.2158957,-0.86496973,0.2660404,-0.9994127,0.79448014,0.25041717,-0.34301582,0.06229653,0.24846184,0.43324828,-0.21488793,0.03653483,0.10060584,-0.1368937,-0.009234023,-0.28894696,-0.26023704,-0.6479197,-0.72381574,-0.096830904,-0.5426991,-0.08782304,-0.030260682,0.25411338,-0.27726433,0.14545055,-0.19511212,0.39039746,-0.61084175,-0.077871524,0.2834805,0.0016626865,0.42592168,-0.5272338,-0.13498338,-0.16006017,0.24554245,-0.30754265,-0.28281578,0.34006193,0.1474572,0.36140123,-0.07851574,-0.27243814,-0.28832647,-0.02276376,0.037348267,0.6176348,-0.1641938,-0.67197466,-0.22091286,0.013839061,0.24210651,0.4731153,0.17171258,-0.24384479,-0.13245128,-0.02370636,-0.0535191,0.3851579,0.43156075,-0.31568274,-0.33208546,0.13210075,0.55464333,0.22243804,-0.18547387,0.034209292,0.10340861,-0.71834725,-0.22269003,0.07279334,-0.19378375,0.6678879,-0.19880848,0.23444045,0.5164608,-0.09611259,-0.19016308,-0.16260646,-0.0650445,-0.29244828,-0.16396482,-0.48066208,0.5148695,-0.36228576,0.3359243,-0.49128076,0.50616574,0.11021642,-0.6367262,0.2695516,-0.81725097,0.09729708,0.05270968,0.5856793,0.51490766,0.5085892,0.51790893,0.5877846,-0.23052247,0.10011462,-0.15186122,-0.21736377,-0.090827055,-0.23784094,-0.071822956,-0.45587453,-0.10680499,-0.103092015,-0.17879307,0.10761341,0.69535834,-0.65663785,0.023262061,0.19773082,0.78749704,-0.3036497,0.01578963,0.9919188,1.0530382,0.99403876,-0.022725351,1.3190159,0.07434426,-0.28769943,-0.046080787,-0.08466751,-0.7028486,0.17593913,0.4609845,0.058423895,0.5642858,-0.027852645,0.032878846,0.521653,-0.61541176,0.086271234,0.010179813,-0.024707109,-0.035577923,-0.2694111,-0.5397503,-0.049475376,-0.0094683645,0.028855095,0.19971664,0.2801621,-0.047698025,0.60615283,-0.0039722323,1.5764656,-0.081666,0.14757265,0.22975993,0.37660465,0.2323121,0.027532926,0.016627409,0.23547924,0.38253072,0.20343237,-0.5263842,0.12605038,-0.21593045,-0.57319605,-0.1395766,-0.23723823,-0.17897582,-0.13238126,-0.58496326,-0.22858821,0.0317741,-0.07098044,0.3681079,-2.4503164,-0.2646592,-0.170007,0.3044298,-0.19302337,-0.43299055,0.043785412,-0.42462087,0.65050524,0.5005322,0.4303167,-0.7757296,0.5897501,0.5162061,-0.6100412,0.05296768,-0.70351523,-0.22647546,-0.022518648,0.35689893,0.040933926,-0.06614778,0.2537954,0.3235918,0.5294085,-0.08993256,0.196088,0.22991471,0.4408138,-0.36028183,0.6148633,0.00060338277,0.40196598,-0.37568298,-0.18260121,0.33080286,-0.38846374,0.31980547,-0.06377131,0.12276604,0.538632,-0.4754034,-1.0266495,-0.59604764,-0.31819293,0.6701347,-0.098394305,-0.4599721,0.17754833,-0.4281468,-0.27610025,-0.2928773,0.7444537,-0.26002714,0.2829543,-0.90812284,-0.12007194,-0.2368174,0.31217596,0.02624618,-0.039982256,-0.6713729,0.7872389,-0.009991919,0.5466557,0.65278727,0.024822101,-0.49387202,-0.55006623,0.106933974,0.68672234,0.45062086,0.18223341,-0.27091694,-0.2700756,-0.30312523,0.1034647,0.014348224,0.5955583,0.6317508,-0.23411262,0.24277484,0.23254241,0.1056348,-0.05066152,-0.33125904,-0.2335909,-0.06032446,0.2648692,0.597127,0.832375,-0.2760352,0.38158914,-0.09128144,0.7105775,-0.18343993,-0.481595,0.2914956,1.2038366,-0.049542498,-0.13401417,0.9427553,0.7127308,-0.19477715,0.48783317,-0.81047875,-0.27464464,0.49123326,-0.043066144,-0.58421654,0.3062261,-0.23898678,0.20573293,-0.9841852,0.19562948,-0.3816041,-0.24769567,-0.9858675,-0.2778317,-3.3755782,0.25789222,-0.23607545,-0.23644686,-0.097376384,-0.39830008,0.20101668,-0.71456075,-0.81455356,0.33064386,0.07558389,0.5934368,-0.19352578,0.033995796,-0.29648483,-0.43639517,-0.15066208,0.35118738,0.20272063,0.29080975,-0.24493138,-0.6990368,-0.17064023,-0.18369828,-0.7013604,-0.017766831,-0.7319868,-0.25645858,-0.2127681,-0.6637925,-0.18915583,0.6212378,-0.04895697,0.09318775,-0.19022894,-0.12727924,-0.04156913,0.42937407,0.07574526,0.22465687,0.08291957,0.013755719,0.13546807,-0.13044868,0.11720718,-0.034581777,0.16293709,0.22862375,-0.17071815,0.28547046,0.39560866,0.73054296,-0.08404415,0.9184089,0.5905881,0.026182532,0.35601076,-0.18410398,-0.47057927,-0.75781536,-0.34867692,0.027502531,-0.44076845,-0.6535921,-0.17311786,-0.34521398,-0.8325515,0.8786046,0.024235612,-0.10045242,0.020129085,0.19755845,0.37204924,-0.4121084,-0.21866603,-0.09555674,-0.15232165,-0.41844198,-0.4065479,-0.6156253,-0.56324536,-0.29649875,1.1469411,-0.12174467,0.08553236,0.15048946,-0.080815054,-0.012194465,0.48808506,0.08472657,0.08697929,0.4862442,-0.0066591054,-0.71198463,0.61090654,0.078844644,-0.41077065,-0.6458529,0.22297585,0.52961105,-0.63748133,0.5908196,0.33660355,-0.06315472,-0.4014624,-0.6918478,-0.18298687,0.049583945,-0.27494282,0.62614316,0.38130245,-0.66962934,0.350565,0.3331379,-0.23458104,-0.683966,0.7614153,-0.20337117,-0.56503373,-0.06126076,0.41031405,-0.005704785,0.06735919,-0.28537536,0.33147413,-0.33517492,0.21614182,0.25397816,-0.028676376,0.23877186,-0.22391786,0.101232655,-1.1302906,0.24324365,-0.62087196,-0.31946298,0.25730133,-0.12373052,-0.054600615,0.38840815,0.08651116,0.29310372,-0.31157804,0.20466268,-0.16671412,-0.4366645,0.21840721,0.40544006,0.4161726,-0.40056053,0.6958847,0.07923178,-0.15598287,-0.22031462,0.00021173556,0.45713177,-0.11639566,0.61746365,-0.004015863,-0.29863486,0.2154585,0.9288071,0.28095576,0.44256303,0.38740218,0.11116745,0.12594295,0.0971202,0.21302414,-0.006269157,-0.5406628,0.07979755,-0.26745158,-0.018022278,0.5486381,0.057666954,0.2821881,-0.17082155,-0.4223356,0.00893347,0.30052507,0.21649642,-1.501276,0.065379255,0.27893403,0.82654,0.6559302,0.23322193,0.07887354,0.52833813,-0.46387717,-0.17453778,0.38789153,0.22800769,-0.39072105,0.8015034,-0.76613164,0.47909975,0.039931048,-0.01772844,-0.23277692,-0.26692775,0.44630733,0.77420324,-0.09447015,0.05352923,0.05454852,-0.11562862,0.23184943,-0.44496104,0.013360669,-0.27757147,-0.34496245,0.79795694,0.5817826,0.5642986,-0.24498224,-0.040793527,0.32854506,-0.13287781,0.15054673,0.13779803,0.30954263,-0.11183473,-0.5019869,0.03956449,0.6374294,-0.14857359,0.07219967,-0.028939828,-0.5299892,0.24643528,-0.0856136,-0.12550116,-0.10192749,-1.0096002,0.011526763,-0.5705472,-0.42519712,0.6306322,-0.17640877,0.1920187,0.29721788,0.17661272,-0.2602742,0.352038,-0.0827122,0.9369257,0.33773243,0.16170819,-0.046431053,0.17896855,0.21030276,-0.37325883,0.13245611,-0.16927592,0.18960457,-0.5413107,0.42934665,0.13841675,-0.45726255,0.10607773,-0.03403078,-0.038920134,0.38972214,-0.13934685,-0.33108357,0.07706418,-0.18954124,-0.1062564,-0.482888,-0.09560577,0.38563314,0.071296476,0.43775246,0.021973118,0.17583096,-0.17189692,0.777849,-0.03660338,0.38825044,0.396392,0.14661567,-0.43786803,0.15962805,-0.083990835,0.6013519,-0.3661643,-0.10785475,-0.12019709,-0.5697246,-0.45161292,0.09889128,-0.12002347,0.5030357,-0.054683384,-0.12459891,0.81169087,0.13076161,1.0649915,0.040065344,-0.5895925,0.19510312,0.5189107,-0.014878591,-0.20087437,-0.31940985,1.1052212,0.49331346,-0.18502362,-0.1755534,-0.24041687,0.010092762,0.16240185,-0.21873985,-0.12004506,-0.09131435,-0.55936867,-0.04330593,0.25003204,0.33075365,0.32047266,-0.17076279,0.33442017,0.44559625,0.047388364,0.28698862,-0.5036777,-0.05318168,0.47763765,0.18471074,0.036351413,-0.09247493,-0.44902658,0.38535795,-0.21990485,0.10297164,-0.61868215,0.12124103,-0.38210103,-0.30960134,0.23015095,-0.03462264,0.2159748,-0.3658804,-0.16695707,-0.19097133,0.3561891,0.29021597,0.15523025,0.66451687,-0.2577805,0.0843957,-0.06735712,0.39805925,1.0795156,-0.5915489,-0.15508322,0.3074945,-0.55313975,-0.5632224,0.45545873,-0.44451487,0.08619671,0.15201825,-0.26021066,-0.61067003,0.17130506,-0.021100193,0.08207961,-0.09345645,-0.6722749,-0.06741937,0.45447993,-0.38876596,-0.2458861,-0.5235351,0.23004688,0.77692884,0.002858496,-0.43787464,0.1476308,0.22093801,-0.31584647,-0.53351945,0.021974564,-0.275012,0.3954424,-0.066772275,-0.35935274,0.010014449,-0.111896574,-0.42238453,0.037692916,0.37525642,-0.35871613,0.16923511,-0.5931969,-0.122194886,1.2443713,-0.34454164,0.10881876,-0.5395601,-0.55704993,-1.0222101,-0.28802478,0.50776863,0.29356506,0.008631863,-0.70582026,0.15925698,-0.07746789,-0.27436686,0.06368375,0.05597417,0.3956093,0.20205878,0.7173316,-0.07554353,-0.69959134,0.24843533,0.11084107,-0.056436945,-0.34671172,0.631478,0.1423167,0.8274887,0.032049786,0.13017443,0.2538181,-0.5274179,0.1240476,-0.1316337,-0.15862885,-0.71447223,-0.06608072,626 +870,0.35702574,-0.20824464,-0.35261044,-0.18529737,0.013686091,0.04642023,-0.1809002,0.6944024,0.29491618,-0.5351984,-0.16944988,-0.21394463,0.042027023,0.2859977,-0.13150316,-0.5939576,0.0053628436,0.087819,-0.108688585,0.31886616,-0.53744453,0.3451576,-0.20149024,0.40794984,0.2502585,0.13944633,0.23327471,-0.19313496,-0.18310441,-0.19667022,-0.21990883,0.43730012,-0.2734445,-0.04444097,-0.15171461,-0.47074592,0.09762735,-0.4279643,-0.3468175,-0.70177656,0.4606001,-0.7715113,0.48198304,0.21904375,-0.23094086,0.24168392,0.033782665,0.17565675,-0.28056905,0.14544481,0.2009896,-0.13793656,0.0933372,-0.08819145,-0.2509464,-0.402625,-0.48405287,-0.00087397546,-0.49746108,-0.28361264,-0.24054389,0.14515057,-0.36459717,-0.17641897,0.08138909,0.29251072,-0.4503621,-0.21749611,0.02751281,-0.22405173,0.48146367,-0.71975094,-0.36832103,-0.11526355,0.2804161,-0.45497808,-0.12988476,0.23798394,0.30554998,0.51416856,-0.2071733,0.033533666,-0.51221865,-0.081795715,0.014107227,0.63032895,-0.29900494,-0.77577186,-0.09725187,-0.110402614,0.25331715,0.37987706,0.09584994,-0.093687005,-0.10878187,0.07320157,-0.38170087,0.32929063,0.5296715,-0.3538566,-0.29720482,0.2603912,0.30184707,0.2650933,-0.11416441,0.038792957,0.11802345,-0.5075928,-0.08677867,0.0376249,-0.20966744,0.6703375,-0.073134445,0.3837553,0.6518099,-0.20732503,0.31745437,-0.14415903,0.09554514,-0.13046342,-0.23099394,-0.34046963,0.14779523,-0.44010743,0.24091266,-0.18977635,0.9445345,0.15149505,-0.63832635,0.36855963,-0.52520084,0.08111666,-0.16651158,0.59469265,0.5321757,0.13115437,0.47381258,0.54207313,-0.43011498,-0.030239344,0.13689047,-0.21127026,-0.01751413,-0.06052335,-0.20262487,-0.40890214,-0.025190813,0.25701743,-0.003605922,0.2915387,0.52981764,-0.48653495,-0.00039801747,0.23993117,0.8316593,-0.3371122,-0.0029900868,0.60096294,1.1218033,0.9637231,-0.09141769,1.2677114,0.29666233,-0.3506713,0.17783314,-0.2427233,-0.72777766,0.23012936,0.3855119,-0.34827125,0.22687863,0.24087524,-0.07161248,0.36745432,-0.49612114,-0.06095388,-0.20944726,-0.044965684,0.09614816,-0.04350035,-0.59028953,-0.28032562,-0.14327495,-0.061606884,0.047994483,0.21628594,-0.2835867,0.258198,-0.06696344,1.4128361,-0.14091362,0.0662691,0.047659587,0.69244474,0.17551036,-0.020158418,0.064369954,0.4426616,0.43559596,-0.0031124402,-0.71469706,0.05102254,-0.29528055,-0.2988288,-0.14795803,-0.36728582,-0.09483675,0.30340227,-0.47828802,-0.17203788,-0.20435043,-0.3328198,0.40944996,-2.7905152,-0.15854219,-0.038893193,0.27890828,-0.18203478,-0.27621314,-0.08658842,-0.41870603,0.49167764,0.4384396,0.51341647,-0.6088808,0.11060515,0.5868849,-0.2696219,-0.20284583,-0.67279726,-0.13642134,-0.14830548,0.26757064,-0.011404197,-0.10022217,0.058295522,0.18251061,0.52487844,0.14921212,0.12140787,0.058754217,0.46224925,0.14727207,0.3797115,-0.025629437,0.5034394,-0.23558907,-0.23102665,0.2962543,-0.4399643,0.22597896,-0.1608737,0.07810507,0.36937034,-0.33643338,-0.92096704,-0.558636,-0.31464255,1.1914979,-0.03861619,-0.37019062,0.39623156,-0.16577792,-0.20129955,-0.23052764,0.61724335,-0.24443014,-0.10450823,-0.768688,-0.028431458,-0.084009975,0.15025042,0.1478783,0.009867151,-0.44792214,0.55427957,-0.023260677,0.31753394,0.41087213,0.13415149,-0.24033761,-0.53944844,-0.08054809,0.8861535,0.34952483,0.29415986,-0.21223794,-0.12739043,-0.19641592,0.07009167,0.14796762,0.36031273,0.86751753,0.04824863,0.21634561,0.31890753,0.07615141,0.12359018,-0.01478056,-0.37151143,-0.08411113,0.08339121,0.55669665,0.33683124,-0.24090451,0.38347042,0.0071865283,0.11303566,-0.43964696,-0.10713836,0.40803015,0.99976563,-0.09083775,-0.12492919,0.63889587,0.6165824,-0.3749063,0.4640135,-0.71125984,-0.25747576,0.6278443,-0.28337833,-0.50697434,0.17356162,-0.36876395,0.07829679,-1.0071908,0.28047016,-0.12845463,-0.38458297,-0.6752982,-0.16948612,-3.4981508,0.0365156,-0.35398865,-0.24909824,-0.13790645,-0.22549634,0.34418628,-0.6477923,-0.5041815,0.14741519,0.030738682,0.5276879,-0.030316673,0.040887218,-0.37579122,-0.22442578,-0.37510228,0.0869239,0.05796657,0.350423,0.15170747,-0.44803628,0.12240338,-0.09188882,-0.3542494,0.05158173,-0.4094771,-0.4527011,-0.05125296,-0.6096901,-0.25690377,0.7142954,-0.47612533,2.51246e-05,-0.20195602,-0.020525718,-0.18453759,0.35651425,0.23675358,0.21830218,-0.11651278,-0.020333083,-0.036567386,-0.2930067,0.38361105,0.07606575,0.125907,0.37644967,-0.1947798,-0.032094236,0.53149277,0.45859072,-0.061716724,0.8877616,0.5911907,-0.050536197,0.17706744,-0.43977585,-0.16647162,-0.5668047,-0.43126068,0.012728284,-0.32929066,-0.6098726,-0.21103711,-0.27432704,-0.8069906,0.54868793,-0.22206032,0.4979856,0.038600087,0.275165,0.3020865,-0.06370517,-0.035001863,-0.009848788,0.03556067,-0.5047098,-0.1558433,-0.67568046,-0.42305627,0.21658957,0.72199744,-0.29070774,0.07343615,0.2738408,-0.21338469,-0.11999903,0.029977,0.1186311,0.14993264,0.35943416,0.024580086,-0.73015255,0.3909646,-0.02127265,-0.20463772,-0.6884889,-0.08046831,0.5974838,-0.81215876,0.4752178,0.6492798,-0.02830709,-0.011092369,-0.5620339,-0.405118,-0.050339982,-0.07938043,0.26794654,0.11692074,-0.6000467,0.4524941,0.3070609,-0.18157715,-0.6859675,0.63662374,0.009221345,-0.40050742,0.09086796,0.34005412,0.16992839,-0.028884975,-0.07560933,0.28780824,-0.3650967,0.39535585,0.1837393,-0.09076027,0.61327285,-0.22236037,0.03357978,-0.7064491,0.17053418,-0.5667872,-0.053866494,0.19268191,0.10308635,0.11971727,0.2322148,-0.028557995,0.34973335,-0.37993848,0.09999826,0.032064795,-0.19353645,0.24486887,0.36193386,0.5482805,-0.31256023,0.5558513,-0.0038074404,-0.17645758,-0.0007357697,0.14012729,0.44783998,0.05175923,0.3385767,-0.10389469,-0.50784665,0.28686485,0.900677,0.3140287,0.462147,0.03179265,-0.04641262,0.3374807,0.31476897,0.119208604,0.14918108,-0.41626784,-0.19292043,-0.30944613,0.17470877,0.41142276,0.10246935,0.3763957,-0.20212056,-0.2906594,0.17963599,0.37828863,-0.019100964,-0.9087749,0.3421854,0.08104011,0.7419613,0.43233928,0.029290995,0.08060822,0.48365283,-0.13547106,0.06619273,0.49181786,0.109065354,-0.60336,0.6362641,-0.41865572,0.4787748,-0.13871773,0.04288676,-0.09214485,-0.16723351,0.4036592,0.6612668,-0.03629154,0.045403346,0.12287151,-0.35867286,0.07250547,-0.47106072,0.2298223,-0.6015584,-0.023498103,0.59792,0.4749105,0.11839867,-0.09404266,-0.009846219,0.12562416,-0.03566954,0.0070687085,0.0261346,0.105140306,-0.12571274,-0.8240824,-0.17606042,0.586807,0.06832328,0.03191073,-0.18878114,-0.22680847,0.32573316,-0.20523174,-0.01270629,0.00060051057,-0.5500702,-0.02125313,-0.38962147,-0.5011396,0.48280212,-0.2634202,0.40581954,0.22881985,0.10524061,-0.18529648,0.31675524,0.22548218,0.6481012,-0.1971017,-0.17992939,-0.53685004,0.021816865,0.36020637,-0.15816441,-0.33501896,-0.31491134,-0.034225307,-0.35148957,0.43341756,-0.09984374,-0.024650967,0.02120634,-0.23929107,-0.015397827,0.56554157,-0.14408301,-0.018960116,0.0076833665,-0.2271773,-0.26310423,0.011381954,-0.13591987,0.22924297,0.156182,-0.052667484,-0.2781245,-0.34171584,-0.20344162,0.32968882,-0.029619955,0.282065,0.37241268,0.15381815,-0.13951358,-0.29932407,0.050320413,0.44733143,-0.012404182,-0.03203976,-0.28809926,-0.5568707,-0.2867031,0.057249635,-0.250705,0.29702744,0.15660617,-0.3200531,0.73935443,0.04253379,0.8824474,0.062051523,-0.53283054,0.022383174,0.5638469,-0.09656357,-0.047952276,-0.2913967,1.0940998,0.5180669,-0.13856821,-0.22344379,-0.25944626,-0.04931668,0.24494426,-0.19496532,-0.17546912,-0.120508276,-0.66857386,-0.27349207,0.39750266,0.34554967,0.19683857,0.029965108,0.17519315,0.18128198,0.1904308,0.39211264,-0.58388305,-0.27017274,0.30874392,0.32332736,0.1743372,0.20455645,-0.30502966,0.41301224,-0.58486634,-0.07950928,-0.5033285,0.1538903,-0.32424197,-0.33486554,0.22901487,0.03546417,0.47188535,-0.17125864,-0.30633232,-0.21785472,0.43470132,-0.008454601,0.17045295,0.36583054,-0.27406546,0.00975686,-0.09363981,0.39816132,1.2066181,-0.16566564,-0.1949349,0.52063423,-0.30939847,-0.6057815,0.25320175,-0.53645176,0.045592308,-0.049293313,-0.18108411,-0.506998,0.23127373,0.19329302,-0.11480544,0.08072581,-0.3469166,-0.21687216,0.19382219,-0.19008677,-0.33774757,-0.32644728,0.08491242,0.6578098,-0.45450532,-0.21969122,0.014648825,0.52877194,-0.23743087,-0.65803987,0.11475384,-0.31790826,0.45988488,0.2787303,-0.3043542,-0.12355707,-0.040031765,-0.35952112,0.267196,0.29962125,-0.3574086,-0.019245172,-0.36017978,0.05020978,1.0139765,-0.09648872,0.00916855,-0.54740393,-0.32682464,-0.8015132,-0.38334,0.6951361,0.24622606,0.08495229,-0.5717922,0.24749513,-0.1853335,0.018866265,-0.12590064,-0.3303466,0.55260605,0.15377547,0.4563527,-0.15446867,-0.72807616,0.09044238,0.00028629228,-0.3771411,-0.5609029,0.5533461,-0.10338467,0.9614604,0.17913873,0.013657247,0.34587982,-0.28519732,-0.006042103,-0.2623601,-0.4084532,-0.80505484,0.025883049,627 +871,0.28476253,-0.29272214,-0.6586961,0.061589062,-0.5043722,0.062206466,-0.24787281,0.4132383,0.27185318,-0.19521976,-0.41791412,-0.15159772,-0.02760896,0.46334013,-0.14076556,-0.3794984,-0.23184772,0.23690014,-0.9113986,0.5049163,-0.4201922,0.25176653,-0.0021484394,0.53816,0.42812908,0.36090735,0.062339235,0.024738828,-0.4586011,0.09806994,-0.16848707,0.053354185,-0.55026394,-0.021900458,-0.34037828,-0.34898987,-0.17804694,-0.5170724,-0.3481697,-0.793026,0.36694634,-0.9694398,0.62918025,-0.26376125,-0.012169182,0.07601908,0.3109103,0.39478552,-0.28929994,-0.09160707,0.26067224,-0.24655704,-0.13369377,-0.19707523,-0.42016315,-0.29514095,-0.5160537,-0.084055774,-0.6310858,-0.16574173,-0.18211849,0.10582624,-0.25691876,-0.01725386,0.04198857,0.3586779,-0.438351,0.33145905,0.0989062,0.0735501,0.095447965,-0.5364916,-0.08389419,-0.26199678,0.5949182,-0.1775964,-0.29185244,0.49114904,0.2595456,0.08807526,-0.015485714,-0.069268025,-0.38830006,0.036057387,0.14529899,0.4407967,0.011716808,-0.40703678,-0.09525087,0.02342748,0.50878906,0.3990679,0.20657833,-0.17411572,-0.017127581,-0.2569197,0.022229375,0.7521954,0.4051461,-0.019748375,-0.29829973,0.3679324,0.71441597,0.4861038,-0.32382616,-0.25003627,-1.2040138e-05,-0.5855985,-0.09250023,0.1657208,-0.18070738,0.5106334,-0.04973412,0.24087413,0.8081818,-0.36023775,0.031448748,0.12823147,0.2529342,-0.1499234,-0.028159684,-0.25581774,0.12628679,-0.46568254,0.009215328,-0.10092989,0.42769256,0.17891152,-0.7132635,0.29182035,-0.65467435,0.120679736,0.009521879,0.47342992,0.7134857,0.70426273,0.5008507,0.628416,-0.04751569,0.29014698,-0.046704102,-0.42769837,0.055679142,-0.39047244,-0.032295775,-0.65018886,-0.17638819,-0.3906757,-0.2661174,0.12867175,0.5418996,-0.4257302,-0.08101777,0.020064453,0.74372154,-0.36233807,-0.20406991,0.87117624,0.99123985,0.88778955,-0.043264657,1.1624016,0.29186743,-0.25868425,0.18334766,-0.369939,-0.7288802,0.33690596,0.2617021,-1.2082311,0.5912028,-0.12604462,-0.06757461,0.04752603,-0.22727172,0.02262493,-0.059059348,0.11224848,0.1930813,-0.05153209,-0.1788336,-0.3633177,-0.18044905,0.018072665,0.1644804,0.2595699,-0.37626877,0.41548038,-0.057324678,1.5967368,0.07729929,-0.104399115,-0.0669707,0.73993427,0.1648281,-0.19627434,-0.37118992,0.49886373,0.3884678,0.14943624,-0.6166964,0.256542,-0.29392415,-0.443637,-0.23812963,-0.4101522,-0.25118622,-0.027874408,-0.32374397,-0.1822594,-0.15645736,-0.33192536,0.44192624,-2.4811332,-0.24180937,-0.030535122,0.39635095,-0.08510395,-0.23958881,-0.22448988,-0.49706045,0.2656676,0.12743534,0.50799274,-0.67322564,0.43632174,0.53762573,-0.6844565,-0.3415946,-0.65537536,-0.14219092,0.084669136,0.40279767,-0.2885125,0.067342885,0.26828638,0.053283036,0.5670894,-0.12197273,0.09032617,0.56898165,0.66264707,0.103774846,0.56893367,-0.056686353,0.58584887,-0.3477982,-0.25941524,0.26245594,-0.35455474,0.31963417,-0.15343797,0.10643216,0.7490618,-0.5379988,-0.97837514,-0.5058474,-0.102883376,1.068446,-0.25921205,-0.36374244,0.101977415,-0.6291116,-0.1243344,-0.08903625,0.70498705,-0.18722175,-0.08327041,-0.6546659,-0.07332379,0.0029080908,0.17039378,0.0892447,0.056511912,-0.16470224,0.5941935,-0.0043562204,0.3321235,0.14063783,0.18974149,-0.5823835,-0.48209575,0.30134353,0.66737264,0.12283859,0.055162553,-0.18621789,-0.30269945,-0.27738512,-0.15166691,0.11812202,0.44391724,0.5052074,0.0003134807,0.3223456,0.3355169,-0.14332075,0.024316542,-0.2745469,-0.23223482,-0.18986024,0.1860828,0.37280533,0.9334788,-0.123853855,0.88994426,-0.16718377,0.14647467,0.009549518,-0.6046323,0.8136711,0.86041874,-0.25326967,-0.16618443,0.47357428,0.52716786,-0.447705,0.44006643,-0.625427,-0.19799733,0.7244914,-0.21064542,-0.44387922,0.27078187,-0.1613644,0.027227625,-0.80614716,0.22641174,-0.29521778,-0.37606874,-0.38236102,0.12819166,-2.2296228,0.15342471,-0.1277199,-0.4536744,-0.32427427,-0.2199444,0.033125903,-0.6229311,-0.6502718,0.17567623,0.12758592,0.79295635,-0.07414394,0.1514238,-0.13407691,-0.37296608,-0.16506483,0.09839041,0.18243825,0.4671147,-0.32850304,-0.5617538,-0.09480634,-0.07366762,-0.5985692,0.065961964,-0.5317822,-0.35120964,-0.115008324,-0.65141886,-0.30992025,0.6861625,-0.5116692,-0.038107295,-0.23253171,0.094845146,0.092129,0.34682953,0.13001202,0.15473814,0.326313,-0.058543365,0.23336297,-0.17653692,0.39340022,0.03559268,0.2666386,0.057455804,0.030876277,0.46604526,0.36914423,0.88788825,-0.21308656,1.063563,0.3276874,-0.19108935,0.22438948,-0.32876042,-0.23216839,-0.58485764,-0.20273228,0.069522716,-0.34207654,-0.5151139,-0.0058802613,-0.35317957,-0.8741162,0.63716304,-0.12800126,0.26918048,-0.018764736,0.3609194,0.47011158,-0.3241354,0.07832948,-0.15016794,-0.15266536,-0.5494656,-0.29816878,-0.49429548,-0.5307787,-0.051331848,1.0243341,-0.33296812,0.039240256,0.005435427,-0.5456241,0.15585192,0.14324269,-0.20300543,0.31331494,0.16611783,-0.13698928,-0.6229895,0.22245729,-0.046265546,0.007687827,-0.55837137,0.1953597,0.6584453,-0.62848824,0.46902952,0.27658978,-0.18070002,-0.2931578,-0.40215275,-0.12748362,-0.08879694,-0.09530154,0.25247872,0.44826904,-0.7926383,0.3886492,0.19020641,-0.5214421,-0.73907495,0.4308138,0.038669754,-0.21726926,-0.08890126,0.31457096,0.19798954,-0.043843728,-0.6207456,0.17148608,-0.1823303,0.25585362,0.03655827,-0.04621007,0.01312833,-0.105101086,-0.36776876,-0.73345083,0.3824961,-0.20226157,-0.30875865,0.55219847,0.010385687,0.2062309,0.16658121,0.3189172,0.15591402,-0.27713677,-0.037391443,-0.12319633,-0.34357965,-0.027340084,0.38984442,0.5360162,-0.51790214,0.5135659,0.018319009,-0.30805346,0.41352287,-0.0049243444,0.35464695,0.13243832,0.32816446,0.3744751,-0.42403278,0.29490057,0.6917985,0.22541766,0.50135523,0.14010602,-0.09440426,0.21199779,0.026243245,0.39193416,-0.07084359,-0.49005303,0.18398185,-0.14451395,0.15326692,0.47707748,0.113793015,0.28107902,-0.032805115,-0.27669948,0.012802042,0.1380319,0.14895125,-1.5015448,0.23216777,0.35153428,1.0116833,0.35824975,-0.016038755,-0.11516293,0.82179576,-0.23482643,-0.008275342,0.62089187,0.13627595,-0.5603094,0.66098696,-0.6630971,0.6448292,-0.045140807,-0.065249644,0.21283613,0.08345276,0.36171404,0.91225106,-0.21890773,-0.03782138,0.22211762,-0.24636094,-0.08981439,-0.30973825,-0.020372232,-0.7315108,-0.30443016,0.78501487,0.2730128,0.34260508,-0.13671081,-0.070643015,0.025666445,-0.23821263,0.2366154,0.0679995,0.15680666,0.04875633,-0.66785336,0.03339532,0.40715012,0.04229437,0.26106223,-0.03231411,-0.22593047,0.08062837,-0.39837363,-0.04872681,-0.10014484,-0.91387254,-0.056164812,-0.21084283,-0.58989924,0.39739132,0.024607101,0.09561474,0.30913258,-0.0035872806,-0.3284691,0.666089,0.23064272,0.9066558,0.032680262,-0.17489706,-0.122312814,0.35468844,0.2917979,-0.2144094,0.18660973,-0.1845656,-0.09706775,-0.45742044,0.71566576,-0.03336237,-0.57765025,0.006532104,-0.20521636,0.08224826,0.5808318,0.02021502,-0.09237933,-0.22284405,-0.2402793,-0.5750117,-0.08582002,-0.29700992,0.118147224,0.45184803,-0.066242196,-0.313583,-0.00961676,-0.042252082,0.6160488,-0.16313118,0.64475274,0.29472655,0.29440188,-0.18730374,-0.16835727,0.17785303,0.68652034,0.10385878,-0.09931862,-0.6099276,-0.1811571,-0.34502256,0.36184415,-0.110001825,0.15590712,0.19763489,-0.34010717,0.81994146,-0.21488094,1.2196888,-7.331371e-05,-0.40054765,0.3380586,0.47319877,-0.023384163,-0.06748185,-0.37949893,0.8102601,0.34145334,-0.026664311,-0.11558596,-0.47413445,-0.09453404,0.30941823,-0.35206208,-0.25292265,-0.022821898,-0.45200154,-0.37692943,0.34171107,0.11813035,0.18014772,-0.18709175,0.24977273,0.29339057,0.08657459,0.16747338,-0.5081455,-0.20374669,0.3496044,0.3139551,-0.13238502,0.24118012,-0.41706967,0.43209028,-0.53715813,0.17603713,-0.3568648,0.24734606,-0.24801446,-0.3891511,0.13673772,0.31313804,0.42959437,-0.21488172,-0.2901122,-0.37478253,0.5418791,0.04234147,0.29059365,0.36628485,-0.3189355,0.11155996,-0.09797149,0.44839588,0.94355756,-0.38748765,0.06218639,0.30012745,-0.5135603,-0.6298744,0.5859906,-0.50128824,0.071079575,0.062218446,-0.12679623,-0.48983338,0.22512646,0.16521649,0.2807152,-0.14354058,-0.5715391,0.014387965,0.24078232,-0.17771254,-0.124737225,-0.2678477,0.1791352,0.675831,-0.17098849,-0.23826575,0.13608114,0.34257686,-0.19727986,-0.12216863,-0.09473645,-0.26339307,0.40376195,-0.15658306,-0.3715086,-0.21154113,0.008795033,-0.4865617,0.1347708,0.036639094,-0.4610741,0.086235255,-0.115235336,0.014735997,0.9328356,-0.47240868,-0.05256805,-0.3408337,-0.52853316,-0.81445307,-0.3042786,0.029448926,0.22778906,-0.15518199,-0.7258745,0.21366608,-0.17016791,-0.4713103,0.105541624,-0.6448939,0.29016647,0.08570961,0.2891827,-0.29978454,-0.9637027,0.24781375,0.20282662,-0.28642288,-0.7796877,0.55904835,-0.14343393,0.8542225,0.027594678,0.039915975,0.13021447,-0.21243131,0.02093924,-0.26907152,-0.0473603,-0.52199596,0.0672883,632 +872,0.45625365,-0.32920998,-0.45994094,-0.15675546,-0.26815042,-0.31285688,-0.3545424,0.15429084,0.2806734,-0.13558632,-0.27496317,-0.03213143,0.08588124,0.37356773,-0.13795625,-0.8434055,0.009786393,0.055828463,-0.92149574,0.67147064,-0.4801261,0.025901584,0.04383983,0.4844719,0.06479615,0.3612378,0.1033051,-0.062442858,0.193006,-0.13102098,0.099758625,0.41526207,-0.70469546,0.2296502,-0.20307584,-0.2042772,-0.033513464,-0.50770307,-0.3252327,-0.843898,0.06640833,-1.0854146,0.43829486,0.045347538,-0.23441076,-0.31157002,0.17509973,0.4585558,-0.28343865,-0.007418076,0.16034244,-0.1421319,-0.24423909,-0.3300266,0.29972643,-0.2940615,-0.4698322,-0.10919241,-0.3573117,-0.33426046,-0.22750182,0.1598229,-0.41864136,0.10623243,-0.2739232,0.50044835,-0.42699316,0.07268863,0.6445709,-0.120387346,0.46265724,-0.46289405,-0.041917145,-0.09222752,0.5981035,0.17390819,-0.38495812,0.36487722,0.31455877,0.3565657,0.28512263,-0.38241145,-0.08853217,-0.23392229,0.4078442,0.44605398,-0.10892051,-0.39203835,-0.29277822,-0.046935234,0.20904104,0.41071796,-0.0647936,-0.46683857,-0.049054265,-0.15536231,-0.088486575,0.6998522,0.5413,-0.094375946,-0.36506605,-0.0058706203,0.5857475,0.30023822,-0.2596489,-0.013266723,0.1657081,-0.6238059,-0.16950172,0.22446112,0.049829364,0.595077,-0.1825703,0.020261817,0.7766609,-0.11666956,-0.24664839,-0.035300944,-0.13723917,-0.236151,-0.4275236,-0.11099565,0.29780635,-0.6758635,0.13095894,-0.37471583,0.79548925,0.17255278,-0.7751007,0.29282355,-0.6663928,0.20684332,-0.044612635,0.73244447,0.74302655,0.3242257,0.5963101,0.6465321,-0.14592646,0.23942266,0.039555233,-0.649146,0.0551044,-0.32721615,0.3020293,-0.40971375,-0.049195874,-0.27716032,0.121774174,-0.09594381,0.18564485,-0.48019126,0.012035112,0.36906192,0.6850824,-0.2725697,0.12273999,0.7918994,1.2019194,1.0618314,0.24971712,1.1864687,0.33449212,-0.28422317,0.21901195,-0.08235536,-0.79013604,0.26586244,0.30139026,0.3178906,0.24295098,-0.13844031,-0.014807056,0.5101173,-0.5838747,0.015933646,-0.06557292,0.50772685,0.18083775,-0.22015704,-0.6190359,-0.109045126,-0.017477043,-0.10577645,0.0014593502,0.19878022,0.00836059,0.43265828,0.0025162846,1.0669008,-0.10989819,0.032150052,-0.0096986145,0.50347507,0.28687984,-0.2505822,0.0007738471,0.31516442,0.4334928,0.002815996,-0.71223277,0.22444868,-0.352141,-0.31903815,-0.105018176,-0.39488077,-0.04740277,0.13679767,-0.4342976,-0.16684927,-0.07157722,0.033232022,0.51354265,-2.7663867,-0.294656,-0.35307348,0.27202103,-0.21636444,-0.05724154,0.023022324,-0.54911214,0.16580969,0.2777289,0.6364469,-0.7572057,0.66341305,0.59262013,-0.6107674,-0.11587957,-0.75504786,-0.09457139,-0.0121411085,0.4578296,0.2854581,-0.17664783,-0.18103123,0.18450497,0.71315306,-0.012747002,0.22580345,0.4751679,0.37079403,-0.0133817,0.68012327,-0.027150631,0.50190955,-0.47100022,-0.120178424,0.31383,-0.18275626,0.30740476,-0.1486492,0.09591711,0.64120436,-0.44323015,-0.8965092,-0.6750861,-0.46952537,1.0198766,-0.39697155,-0.66069967,0.24103181,-0.2922514,-0.09988288,-0.0026542768,0.51810044,-0.0969306,0.39065084,-0.8030143,0.11499653,-0.1300201,0.21649034,0.023538055,-0.2085021,-0.43846917,0.69677114,-0.0825638,0.41917548,0.4190201,0.2138303,-0.07345179,-0.4162761,0.19176395,0.5865385,0.3028601,0.0057848,-0.38938627,-0.30876845,0.023411244,-0.20592152,-0.08531294,0.7316933,0.8379989,-0.26483887,0.14642568,0.32186428,-0.018194696,0.033934806,-0.06546433,-0.17950495,-0.07137119,0.02755031,0.56401354,1.0797523,-0.20286995,0.21607202,-0.23233084,0.40846348,0.19609247,-0.5507443,0.63210607,0.71352696,-0.051362563,-0.13269813,0.54050046,0.5637421,-0.52198696,0.56863767,-0.5378867,-0.0997985,0.5336073,-0.0017723888,-0.45265654,0.2387145,-0.4618021,0.23370098,-0.9556735,0.56849784,-0.5721448,-0.6237049,-0.41489932,-0.024481127,-3.2873032,0.3246633,-0.18223189,-0.17423297,-0.45540252,-0.096977115,0.22313829,-0.59834665,-0.6295524,0.3463273,0.23461486,0.5554838,-0.101902604,0.060373437,-0.18132047,-0.109594636,-0.031231755,0.27512613,0.23822959,0.24998373,-0.29423597,-0.40710473,-0.22032963,0.056155827,-0.41419443,0.36094984,-0.7170207,-0.64183545,0.023466168,-0.4744726,-0.33489302,0.5233812,-0.19249444,-0.020497063,-0.3209969,0.023165694,-0.34983036,0.25136772,-0.020299232,0.47984168,0.17475624,0.048968893,-0.036896437,-0.20910172,0.46274158,-0.09962114,0.42332578,-0.011852873,0.06943516,0.2853612,0.49695373,0.753809,-0.15424643,0.9604024,0.65066206,-0.010334303,0.1986862,-0.2599408,-0.42969143,-0.6877671,-0.3312334,0.022905847,-0.47926903,-0.47511372,0.07770375,-0.1265592,-0.73601216,0.6649101,0.042309504,0.29728207,0.03562926,-0.06861819,0.35704336,-0.16047801,-0.107266806,-0.09642867,-0.11963067,-0.7080068,-0.16863574,-0.8478424,-0.52205247,-0.13132629,0.73315364,-0.2359684,0.10687039,-0.0531085,-0.546479,0.019653171,0.39677417,0.028854774,0.19823861,0.43395385,0.1605514,-0.5513985,0.41635475,0.044706266,-0.35586867,-0.55126125,0.25833336,0.7056679,-0.8240301,0.87248117,0.3164387,-0.0032516893,-0.13213782,-0.59116983,-0.44629303,-0.044674307,-0.18293631,0.5533483,0.22669564,-0.74612856,0.41315725,0.27393737,-0.49903333,-0.7225464,0.36124274,-0.18088238,-0.2129473,0.041119855,0.24584298,-0.12799305,-0.11697638,-0.15313427,0.24895982,-0.39245656,0.27125773,0.12015983,0.0043685636,0.04134533,0.023746723,-0.24401967,-0.7606965,-0.122403264,-0.81247145,-0.17577784,0.4806613,-0.21093442,-0.14151378,0.008673325,0.13540845,0.3059502,-0.14770107,0.29179853,-0.0136823105,-0.4778315,0.20750105,0.5826554,0.2939918,-0.43598983,0.6377024,0.2676449,-0.20278762,-0.028571978,0.19366004,0.30566648,-0.11288479,0.57306945,-0.4112176,-0.025194952,0.23205967,0.9755357,0.07523259,0.64862114,0.0743303,0.10573607,0.5082373,-0.037265923,0.3734026,-0.080168396,-0.45582625,0.08769166,-0.18166037,0.15190062,0.47226742,0.29837754,0.31022552,0.17076522,-0.20557247,-0.086218245,0.4638894,0.065517455,-1.6568412,0.5075914,0.42312762,0.8277089,0.5944486,0.1628113,-0.15020289,0.824508,-0.31365818,0.08961829,0.4611734,-0.038465846,-0.4797431,0.8765733,-0.62146425,0.3230711,-0.16156442,-0.09597338,0.2006762,0.24330802,0.32647163,0.5908118,-0.281078,0.11013287,-0.1427229,-0.16620573,-0.017469535,-0.58641666,0.005738775,-0.13741745,-0.47392297,0.6902995,0.565742,0.5021879,-0.2533749,-0.062593974,0.19503231,-0.1513248,0.27226266,-0.18720447,-0.16041298,0.24831472,-0.5866098,-0.1549778,0.5960332,-0.1343065,0.2046454,-0.33488443,-0.29801634,0.12733987,-0.21305169,-0.3104436,-0.14770861,-0.87587804,0.12632765,-0.3173125,-0.57164127,0.68531376,-0.33801976,-0.010885075,0.3235562,0.015895814,-0.17390966,0.3323333,-0.26278964,0.86453646,0.14490543,-0.3259776,-0.30517456,0.010951226,0.24983232,-0.252581,0.1871782,-0.5591174,0.039499696,-0.447814,0.68648314,-0.03458002,-0.48412037,0.1383142,-0.1257066,-0.064897984,0.66753715,-0.14187397,-0.23612069,0.16418695,-0.1478609,-0.37544945,-0.24652904,-0.25215968,0.25176954,0.4168429,0.15585646,0.0026205182,-0.2502741,-0.022389093,0.6479276,0.03614493,0.582362,0.2606099,0.06444127,-0.27749166,-0.0036790792,0.35648704,0.47439972,0.20311725,-0.14580321,-0.2885063,-0.4438602,-0.33401677,0.049967576,-0.051951896,0.40355048,-0.0027950753,-0.27555943,0.94860095,0.065687336,1.2146926,0.14348756,-0.36570248,0.30708978,0.38578537,-0.047101203,-0.035473887,-0.48584297,0.8654762,0.47305346,-0.08051233,-0.12885582,-0.5373969,-0.016891018,0.14610772,-0.36688888,0.095044695,-0.10631627,-0.43093088,-0.27996475,0.20950168,0.29008883,0.105000675,-0.14603204,-0.06076766,-0.02816379,0.09623446,0.35208273,-0.7278072,-0.22494553,0.23771934,0.17421074,-0.018660078,0.119805634,-0.2919936,0.39437535,-0.52431875,0.27771452,-0.61282974,0.074729584,-0.3279096,-0.3835124,0.058241084,-0.20167983,0.41233262,-0.42178825,-0.23175763,-0.16366385,0.40746954,0.28156254,0.05285723,0.7199054,-0.18769632,-0.026290676,0.19831814,0.6907659,1.0679206,-0.676194,0.027852833,0.11252216,-0.3475363,-0.46649384,0.37585178,-0.31494653,-0.043133914,-0.109416746,-0.5790186,-0.7104614,0.023851091,0.056165367,0.054974888,0.07353276,-0.7540838,-0.28290537,0.4010532,-0.4424839,-0.21064179,-0.35941672,0.4162854,0.6176207,-0.22805063,-0.43828043,0.077766344,0.060598623,-0.28953815,-0.292978,-0.031413876,-0.17895158,0.28221005,-0.018288413,-0.43541226,-0.11324362,0.14724131,-0.46182838,0.016394645,0.17043127,-0.32754436,0.16754012,-0.13670503,-0.08791234,1.0917236,-0.38556948,-0.055853974,-0.630225,-0.5566656,-0.832458,-0.4415702,0.31470904,0.13523065,0.013472006,-0.2324592,-0.004229536,0.14300792,-0.08914584,0.015573773,-0.51059395,0.4008503,0.06252822,0.6211718,-0.17764693,-0.9875856,0.19873638,0.3611629,0.021269875,-0.7026537,0.6220787,-0.113406934,0.7945149,0.008030062,0.09357542,-0.12636046,-0.35193917,0.052926812,-0.2723594,-0.22917998,-0.8697637,0.08378938,654 +873,0.3415321,-0.111807145,-0.46890816,-0.10305547,0.0077611133,0.22316216,-0.14085248,0.6464804,0.23735468,-0.42937574,-0.18330272,-0.21301259,0.10139958,0.59121776,-0.1405121,-0.51410776,0.08936158,0.10581013,-0.40148166,0.3275254,-0.5215387,0.19534595,-0.036533475,0.38630605,0.2177558,0.21631734,0.2931393,-0.15492113,-0.21624543,-0.10988491,-0.26609662,0.38744196,0.006874293,0.11586502,0.13676389,-0.28055686,0.20427795,-0.40372565,-0.18262501,-0.6552177,0.41611543,-0.73797244,0.49961504,0.09545424,-0.17710318,0.30297574,0.27337483,0.3040469,-0.31042764,-0.14128043,0.08760846,-0.1253624,-0.11238722,-0.19637735,-0.27240542,-0.4680724,-0.45791182,-0.05158062,-0.32318047,-0.39661515,-0.32247567,0.06672363,-0.32740667,0.015997658,0.056455165,0.36137173,-0.44829646,-0.1496834,0.24013294,-0.25484243,0.14256348,-0.66299886,-0.23694064,-0.08153934,0.3604772,-0.12818997,-0.065849,0.26762697,0.45606112,0.4285501,-0.062108416,-0.08625562,-0.42309466,-0.23437162,0.19553764,0.47717705,-0.24520056,-0.6947493,0.019919118,0.04627649,0.19006349,0.23664872,0.29090786,-0.07520551,-0.1264656,0.19563496,-0.27127084,0.3143294,0.32636583,-0.4617145,-0.19661383,0.40069017,0.58150774,0.12902854,-0.17295085,-0.092915006,0.0035482373,-0.55881494,-0.083303474,-0.030935824,-0.28211662,0.5043841,-0.16045444,0.38978314,0.73471946,-0.019331262,0.10995021,-0.024372583,0.006667666,-0.32681242,-0.27012944,-0.22401433,0.019064112,-0.34558395,0.27874067,-0.048781503,0.7966814,0.22038515,-0.5486823,0.5190081,-0.54406273,0.068666965,-0.15613598,0.35999775,0.46310273,0.15931223,0.39060917,0.7003033,-0.44101927,-0.05426385,-0.048678815,-0.41201627,-0.018767966,-0.09977945,0.10765833,-0.5754246,0.2302327,0.09504637,0.0043097422,0.29176247,0.36687028,-0.54678047,-0.023837745,0.26656064,0.88757366,-0.35388634,-0.27806553,0.53796214,0.9796451,0.78112036,-0.055233713,0.9378069,0.22009587,-0.31644025,0.1697611,-0.32961747,-0.57865316,0.28524986,0.5413637,-0.4470851,0.19731796,0.12698065,0.081975386,0.4393003,-0.16499196,0.020050624,-0.16743125,0.068484604,0.27054664,-0.19612499,-0.38858405,-0.25406185,-0.095255874,-0.109859385,0.32137015,0.20750405,-0.15173484,0.29914513,-0.20355459,1.8145008,-0.055939943,0.14191371,0.11248494,0.3886982,0.21609443,0.072494954,-0.07420019,0.469484,0.34278706,-0.010792305,-0.61318964,0.1394738,-0.35088885,-0.5128284,-0.07258113,-0.41322318,-0.02180335,0.20392251,-0.28954256,0.017404003,-0.1826752,-0.23679759,0.51544744,-2.9079335,-0.24545793,-0.21239255,0.18223463,-0.31822345,-0.31749827,-0.1419722,-0.36988023,0.41934958,0.32432213,0.57982177,-0.58414525,0.22208796,0.31635067,-0.48791537,-0.2510282,-0.5675853,-0.120615244,-0.11520497,0.1021219,0.026147196,-0.18884952,-0.06681387,0.21015133,0.44826663,-0.06869385,0.11345438,0.27041644,0.39902496,0.06838112,0.5648523,-0.1292742,0.759804,-0.17399786,-0.20911281,0.33016753,-0.36862078,0.36382747,-0.0586556,0.23027097,0.3763716,-0.148948,-0.9546964,-0.61059666,-0.19134541,1.2338408,-0.20024325,-0.3112108,0.29434523,-0.17035453,-0.24414206,0.013525573,0.4736326,-0.09891456,-0.15974261,-0.75770754,0.24377348,-0.0465837,0.054744404,0.055858877,-0.07887143,-0.36364493,0.7541713,0.008227761,0.4620566,0.21162374,0.1176432,-0.2447133,-0.14829388,-0.091657996,0.6848181,0.36006948,-0.010563791,-0.06525115,-0.22880936,-0.48106536,-0.23938398,0.17246222,0.53267264,0.6018471,0.08724102,0.024822852,0.20515633,0.072722934,-0.016048407,-0.20744658,-0.2807018,0.034806725,0.09432023,0.532962,0.30544743,-0.34180424,0.55539083,-0.0966542,0.26795378,-0.3121167,-0.35318586,0.42572275,0.6755913,-0.30502447,-0.34924486,0.5597586,0.3545121,-0.2512014,0.26486295,-0.6527937,-0.15517206,0.69087726,-0.18767048,-0.48179054,0.0704344,-0.3026153,0.12513699,-1.0691894,0.1618825,-0.2624792,-0.33346924,-0.44575146,-0.08843682,-3.9087,0.17728305,-0.41063443,-0.13630974,-0.18518156,0.020054912,0.027883664,-0.88005614,-0.48853144,0.120284945,0.08103479,0.7478628,-0.12044939,0.054025646,-0.24939364,-0.22592379,-0.09107753,-0.055137057,-0.21131247,0.37852523,-0.003201152,-0.40182403,0.20905961,-0.015134007,-0.42740583,0.17114592,-0.49355724,-0.43247676,-0.2107706,-0.56921715,-0.24365945,0.6696128,-0.59070116,0.06197642,-0.28064054,0.171277,-0.18062355,0.32131597,0.15562767,0.07720943,0.059653062,-0.08048514,0.0671737,-0.38107535,0.3215028,0.010286818,0.32647303,0.4212623,0.08368345,0.07704011,0.54478276,0.6584636,0.031697303,0.73796463,0.37139794,-0.09742695,0.19045888,-0.4395719,-0.12497032,-0.37926242,-0.46969238,0.14620917,-0.37426865,-0.63211393,-0.27048346,-0.24671765,-0.6032872,0.46890852,0.19321801,0.23098046,-0.10026091,0.31809223,0.5292702,-0.23212576,0.03659514,0.13123436,-0.0996804,-0.6128474,-0.16497341,-0.6037779,-0.5064307,0.32471082,0.83529896,-0.39848733,-0.0012621483,-0.058059007,-0.3928577,0.030864215,0.038955327,0.100849174,0.2417329,0.454348,-0.34941474,-0.6492782,0.47074842,-0.22435951,-0.19049847,-0.531533,0.052876562,0.5994017,-0.5344808,0.61862427,0.382671,0.06927209,-0.07966144,-0.5129479,-0.2430771,0.10705515,-0.21891427,0.09152179,0.06252836,-0.6529694,0.38322422,0.4453386,-0.29945716,-0.6522003,0.50048095,-0.046700645,-0.28883848,-0.05484673,0.38292888,0.39389476,-0.02180385,-0.29997423,0.15910117,-0.42414618,0.299896,0.21770792,-0.0070419335,0.4030368,-0.18335803,-0.15023686,-0.79300433,-0.039171755,-0.49429795,-0.1996866,0.18298177,0.14036205,0.17235981,0.012411207,0.052936997,0.32453188,-0.57056713,0.17120595,0.008710275,-0.10011726,0.27846006,0.37714884,0.24253823,-0.4785097,0.6420697,-0.028086903,0.03758982,0.047368187,-0.1202304,0.4831103,0.12676644,0.45435953,-0.076387435,-0.23143542,0.40136218,0.8835351,0.16145098,0.3627286,0.09592947,-0.12800139,0.030788606,0.035329793,-0.03934916,0.1490437,-0.5252938,-0.064120375,-0.2370305,0.2573942,0.58094656,0.21732141,0.29184398,0.13754784,-0.39203343,0.061450306,0.21731813,0.044868577,-0.96018,0.5006299,0.18310823,0.8597931,0.2624159,-0.02222485,0.042615224,0.7006529,-0.2314499,0.23476334,0.17817688,-0.24853367,-0.6721706,0.64535785,-0.6895115,0.35332382,-0.11569882,-0.05261151,-0.024668679,-0.0361329,0.29783192,0.678554,-0.2821193,0.032136623,0.052450243,-0.22684467,0.21870065,-0.4108895,-0.12746446,-0.65157837,-0.26437595,0.40750113,0.61945724,0.28996328,-0.20260578,-0.021080425,0.14774714,-0.057762753,0.037477296,-0.065010615,0.31036755,-0.030944943,-0.754498,-0.30466652,0.384948,0.19162588,0.4187592,-0.096650295,-0.18499851,0.4226068,-0.2685776,0.10167566,-0.14065897,-0.33300284,0.07153263,-0.15118645,-0.60744643,0.30915222,-0.101505496,0.34028223,0.17079966,0.017349528,-0.024021482,0.39431038,0.013093705,0.8392188,-0.18395118,-0.114641696,-0.4689809,0.15398133,0.028318152,-0.13357377,-0.07492871,-0.32642198,-0.015798515,-0.5442218,0.517201,-0.023317276,-0.19455405,-0.02221418,-0.26860586,-0.015435129,0.58199066,-0.20974529,-0.055937555,-0.24230857,-0.37578276,-0.14289717,-0.14932095,-0.1820613,0.3193102,0.06207688,0.16688913,-0.25566387,-0.07130949,-0.17940359,0.26087186,-0.07851363,0.29250312,0.4998195,0.050202284,-0.20776576,-0.1935752,0.13273457,0.35377464,0.0053979107,-0.32147008,-0.36091337,-0.44511485,-0.28924787,0.17153941,-0.14040062,0.366887,0.18697743,-0.30173728,0.61859655,-0.1287374,1.2475631,-0.022099743,-0.40861857,-0.03467598,0.6622427,0.01946832,-0.0725423,-0.16568808,0.8335025,0.42699692,0.03993787,-0.10458827,-0.38497594,-0.022387346,0.38658917,-0.18235075,-0.038591545,0.05831835,-0.51333416,-0.38308167,0.30219975,0.20866509,0.35331622,-0.105181634,0.12162373,0.14993855,0.059471354,0.45785746,-0.37816063,-0.49336338,0.31358,0.34831476,-0.04711941,0.084297635,-0.44615686,0.43757153,-0.63232094,0.124030925,-0.39169088,0.21672058,-0.28245583,-0.16449,0.2426337,0.041669484,0.38875476,-0.22999735,-0.34560272,0.016770998,0.45018432,0.24823432,0.15846677,0.44171107,-0.2524635,-0.0885613,0.14559461,0.48317924,0.8577526,-0.22171576,0.16505592,0.45396277,-0.30729672,-0.6273503,0.44083166,-0.36581305,0.099814884,0.09012153,-0.21009529,-0.5170397,0.38346252,0.38665202,0.040771168,-0.057936776,-0.3627065,-0.21562459,0.3199058,-0.32926098,-0.25668472,-0.3963581,0.14383033,0.50967515,-0.3183156,-0.26894343,0.046230238,0.24932408,-0.16285197,-0.47614977,-0.020742932,-0.26648197,0.525399,0.09741646,-0.2760686,-0.25054362,-0.021211922,-0.4176662,0.30985123,-0.03355582,-0.32659313,0.2645253,-0.29612648,-0.020328304,0.863959,-0.10858309,0.008545312,-0.58414453,-0.28174987,-0.7081879,-0.36248112,0.6293264,-0.14670004,-0.080976814,-0.541902,0.09184683,0.06318136,-0.16032803,-0.10773035,-0.24124543,0.35385144,0.011972924,0.46249208,-0.057123583,-0.6367869,0.16277951,-0.01015084,-0.0902031,-0.5707224,0.43358326,-0.13955973,0.9147301,0.030191332,-0.009724597,0.3644912,-0.2309963,0.018651595,-0.30249783,-0.31903765,-0.6696367,-0.0019327551,657 +874,0.28977123,-0.15914561,-0.7651243,-0.06816841,-0.2092898,0.02311719,-0.2790474,0.6413251,0.37084833,-0.32142615,0.003775527,-0.17657264,-0.04228227,0.2553834,-0.08433438,-0.4806567,-0.15387644,0.18787986,-0.6140933,0.6520725,-0.3773416,0.01677308,-0.029108888,0.4323074,0.008452233,0.1724117,-0.124180295,-0.10081988,-0.014879058,0.062348366,0.045137327,0.27613816,-0.6000619,0.30147406,-0.18285589,-0.14533925,0.072797954,-0.48123214,-0.4019712,-0.7598893,0.14085479,-0.5193772,0.5367916,0.15599827,-0.28332046,0.1882789,0.10952588,0.16207673,-0.33843252,-0.05243786,0.2186629,-0.2058348,-0.3968564,-0.20687862,-0.24384145,-0.4619387,-0.6023529,-0.11486844,-0.50793856,0.08302937,-0.08510906,0.21206065,-0.3383416,-0.14505936,-0.07520335,0.67494553,-0.3459026,0.43791354,0.12408761,-0.13729714,0.32894674,-0.5227618,-0.09448409,-0.029270023,0.17157863,0.1197446,-0.3388145,0.2514368,0.049828943,0.34996605,-0.10656338,-0.056111615,-0.34152356,0.023325669,-0.10305665,0.40279093,-0.07734718,-0.28960246,-0.058577504,0.045711767,0.032076214,0.23878627,0.0013367087,-0.350093,-0.1492803,-0.31114945,-0.1516216,0.2961706,0.49923873,0.058930933,-0.075306475,0.40864834,0.27436697,0.3316082,-0.05331968,0.0116435485,-0.016554631,-0.6025422,-0.16091485,0.030147016,0.10066074,0.46456543,-0.031812895,0.3360807,0.5527955,0.11751322,-0.31018126,-0.024507971,0.055273753,0.12463174,-0.28899565,-0.27501017,0.32302022,-0.44135204,0.03164136,-0.14094414,0.63908756,-0.053903908,-0.9738777,0.34000465,-0.5590772,0.06336016,-0.0794231,0.607238,0.8234206,0.64029706,0.26832798,0.6430072,-0.21915646,0.20255719,-0.07101549,-0.32212862,0.38314882,-0.0068175495,0.22546077,-0.48223522,-0.17134511,0.0032482047,-0.23252426,0.13498305,0.3277188,-0.34179673,-0.18356866,0.3021343,0.8041895,-0.25954077,-0.15126063,0.49122128,1.1080999,0.77566904,0.0830371,1.1780634,0.158499,-0.101366185,0.15808426,-0.14579047,-1.0647446,0.32953244,0.11836878,-0.06648621,0.21309249,0.04680401,-0.23632713,0.3461549,-0.22378552,-0.1705391,-0.051598612,0.3010837,0.005988717,-0.09187893,-0.20637238,-0.3410057,-0.026495816,0.040448118,0.024845349,0.16823082,-0.08447716,0.4397587,0.08253876,1.683474,0.11266144,0.058992207,0.037993886,0.45747313,0.15215574,-0.08771876,-0.28551236,0.6481101,0.29590765,0.1792552,-0.5147884,0.211361,-0.09160561,-0.37589276,-0.099351294,-0.36213636,-0.08338991,-0.24476242,-0.21531607,-0.24921973,-0.15546651,-0.4598376,0.30668202,-3.0926094,-0.011931648,0.09895734,0.35994875,-0.110067844,-0.10414973,-0.16640966,-0.4221176,0.40597376,0.47115096,0.51303595,-0.4260666,0.2466106,0.48518562,-0.6159784,-0.11071992,-0.5465608,-0.05776502,0.007329618,0.3287113,-0.128298,-0.014634371,0.08383896,0.06612689,0.28652766,0.06388533,0.14477585,0.46385014,0.53092843,-0.052524645,0.44513062,-0.23507546,0.35630786,-0.44609225,-0.17479591,0.12010648,-0.308091,0.18879573,-0.15314147,0.05479556,0.551084,-0.5202159,-0.772552,-0.17838085,0.15043227,1.100642,-0.37241924,-0.24441361,0.28218368,-0.39678827,-0.16476025,0.08940678,0.6626727,-0.20370673,-0.10856684,-0.7186757,-0.17025559,-0.03104492,0.4143928,-0.05008186,-0.0069906763,-0.511107,0.5007296,0.06863541,0.6031055,0.4625547,0.085309304,-0.30065352,-0.59611607,0.08386388,0.64096624,0.22170608,0.20321189,-0.17579512,-0.14202413,-0.13965847,0.03880291,0.06130365,0.65788007,0.6255517,-0.18956833,0.26480654,0.39154693,-0.23775072,-0.018479593,-0.17476475,-0.31067976,-0.20850806,0.093027234,0.3998076,0.82695574,-0.12216425,0.40142635,0.107530445,0.4409841,-0.13730903,-0.4772048,0.46028543,0.7640619,-0.1561081,-0.22485363,0.53133494,0.5611024,-0.23745723,0.54918915,-0.40297344,-0.30669674,0.5995427,-0.10314577,-0.5311143,0.28822768,-0.38353527,-0.0046694204,-0.94851154,0.15402052,-0.07679228,-0.62316436,-0.75291705,0.0032309715,-2.6776228,0.09756746,-0.3095558,-0.26787248,-0.0909772,-0.059962858,0.13490246,-0.54357046,-0.56186396,0.25378773,0.23346396,0.44877255,-0.2265772,0.0054369443,-0.18086283,-0.22922231,-0.31064105,0.20771658,0.3005909,0.2748934,-0.015866125,-0.59977037,-0.20774865,-0.07587551,-0.24464254,-0.008966471,-0.46126357,-0.18278311,0.020300046,-0.8104613,-0.296665,0.5651036,-0.30058166,-0.16450824,-0.1632366,0.05269887,0.21969481,0.27915668,-0.11552516,0.17133419,-0.02450507,-0.036221206,-0.12765862,-0.25603506,0.16673534,0.031509973,0.2697174,0.41435492,0.02616998,0.07180963,0.44677433,0.5321031,-0.28196338,0.8295634,0.5224212,-0.051306855,0.28486922,-0.17724991,-0.072439946,-0.4913926,-0.090438455,-0.12131261,-0.4336392,-0.2903613,0.07107798,-0.32673904,-0.7976548,0.6645395,0.096274264,-0.04851967,0.112419434,0.16180266,0.41948307,-0.09747153,0.078757614,-0.23994915,-0.19580323,-0.40023378,-0.21367867,-0.72926164,-0.5118409,0.1978548,1.0613972,-0.30814546,-0.017644184,0.18962468,-0.39401725,0.023131175,0.25298357,-0.010302976,0.50358564,0.4111406,0.19561112,-0.6585663,0.45061672,-0.16045414,-0.014613588,-0.6411547,0.1644173,0.6163118,-0.83250755,0.47118452,0.41523513,-0.036131833,-0.27027857,-0.6352307,-0.2820473,0.016502792,-0.0786846,0.3667412,0.29902947,-0.9435022,0.45936248,0.1722281,-0.37225148,-0.86695796,0.28915533,-0.14728355,-0.3897167,0.13037695,0.22098638,-0.0400524,0.16488901,-0.31024057,0.1663546,-0.17128126,0.202522,-0.049412817,-0.18808556,0.40818688,-0.03470246,0.097131036,-0.7209306,0.06643322,-0.5000518,-0.26337376,0.5781304,0.003434196,0.08178099,-0.00608778,0.056941003,0.34671542,-0.27039155,0.074484624,-0.29878464,-0.28869408,0.3661377,0.5292862,0.42744994,-0.49399152,0.6348979,-0.0309138,-0.21177697,-0.033938903,0.10196266,0.28959063,0.011574735,0.36368325,0.059120204,-0.2055028,0.24107915,0.72950387,0.13877456,0.34827486,0.030016651,0.08275594,0.45131373,0.07803624,0.12925766,-0.18509434,-0.5997409,-0.08103893,-0.46085945,0.22952473,0.4492794,0.118659794,0.435414,-0.14528878,-0.16466463,0.022582196,0.2960147,0.28430235,-0.74324703,0.38419607,0.23816375,0.73186946,0.7124202,0.2310707,0.0014305314,0.75859445,-0.09135505,0.18213363,0.34361258,0.10271413,-0.47942245,0.6079507,-0.5679092,0.42655376,-0.18132348,-0.015122547,0.23650795,0.14841653,0.55411476,0.86369497,-0.12404761,0.020117542,0.114190914,-0.22491734,-0.026064023,-0.34842303,0.1348208,-0.45512548,-0.4159226,0.5051174,0.45577303,0.24054222,-0.25483063,-0.074538946,0.26086164,-0.14706336,0.24651772,-0.026504437,-0.15667647,-0.0409521,-0.7249503,-0.15157247,0.5946161,-0.0037536125,0.10943937,-0.017394274,-0.041703865,0.2953352,-0.19601439,-0.10966433,-0.08417308,-0.5985085,0.026764303,-0.23256122,-0.5538832,0.7313128,-0.2054909,0.20832582,0.2092592,0.09608966,-0.31014463,0.27464652,-0.0074011735,0.73288774,-0.052492183,-0.14206544,-0.14762048,0.016926622,0.28947136,-0.25423878,-0.18575086,-0.31116292,-0.09650131,-0.4983951,0.44566095,-0.14187117,-0.4446908,0.005079309,-0.09475258,0.020577287,0.41518375,0.07491438,-0.07171442,-0.038133953,-0.31617472,-0.4322629,-0.23547904,-0.3742539,0.261188,0.11257621,0.03823528,-0.075589515,-0.063566886,0.085003555,0.39389086,0.10363903,0.22257614,0.17291446,0.28713682,-0.3114658,-0.03227815,0.13385409,0.6614563,0.08549532,-0.06975537,-0.22096409,-0.1891644,-0.3029885,-0.068065666,-0.11722324,0.4008348,0.20698422,-0.45008746,0.6836946,-0.04018172,0.90665644,-0.08156926,-0.37041414,0.2630514,0.48275924,0.046111155,0.032230787,-0.35474598,0.86366576,0.5525909,-0.19226933,-0.18735301,-0.3668886,-0.089013726,0.18827055,-0.27241078,-0.28780866,-0.086719595,-0.54203093,-0.15590346,0.25563154,0.15837544,0.091852486,-0.18705739,0.027198264,0.075133204,0.0372557,0.057127777,-0.37929702,0.10497875,0.15722485,0.14818087,0.19887201,0.11209065,-0.4257431,0.3347338,-0.43062925,0.2530842,-0.41257223,0.09093613,-0.2850786,-0.13083686,0.103651285,0.020404072,0.34653494,-0.27731106,-0.21644203,-0.24276523,0.43193737,0.3036907,0.33051264,0.7391519,-0.25091112,-0.02418288,0.02238504,0.55455095,0.8552844,-0.47453323,-0.17071082,0.43884373,-0.24568017,-0.7461688,0.21733303,-0.3846395,0.10503012,-0.048558008,-0.3166154,-0.4151559,0.102315515,-0.025886545,-0.065280385,-0.028790394,-0.5997864,0.13428839,0.25343195,-0.19897598,-0.18647747,-0.2987193,-0.038023025,0.7748179,-0.24168682,-0.31715906,0.060121104,-0.040705096,-0.10096217,-0.44277707,0.07468174,-0.4311312,0.16520922,0.19292708,-0.49472126,-0.11372761,0.10847622,-0.5158034,0.1467052,0.05076137,-0.20293935,-0.067709126,-0.35003185,-0.099477135,1.0182396,-0.23233174,0.0715521,-0.36424586,-0.5608788,-0.76713794,-0.20656388,0.30585018,0.053822156,-0.025712663,-0.6685455,-0.021109462,-0.14811087,-0.2656707,-0.19146413,-0.36048138,0.5108147,0.075596556,0.30015507,-0.20221819,-1.0107796,0.21421377,0.1767503,-0.38647783,-0.6007256,0.46715608,-0.05833595,0.9318182,0.05824247,0.19467886,0.40039435,-0.60179085,0.15040801,-0.33730182,-0.32265696,-0.43331853,0.027788676,673 +875,0.6683114,-0.07156528,-0.7558418,0.06634938,-0.2201003,0.090909906,-0.25051656,0.34164783,0.32468817,-0.20051777,-0.2222095,-0.09405451,-0.08955228,0.31886023,-0.10471034,-0.9200392,-0.002502136,0.14615957,-0.46946323,0.9327378,-0.2986895,0.3742653,-0.09069976,0.36660722,0.31413028,0.3751255,0.19944371,0.015380353,-0.12730993,-0.4060992,-0.0025748834,-0.06740898,-0.82633656,0.17527722,-0.1867844,-0.44752988,0.049887795,-0.35403752,-0.46740755,-0.8436753,0.36302066,-0.8744765,0.4287072,-0.035201643,-0.23166446,0.2141803,-0.13344193,0.2978323,-0.122511506,-0.17391278,-0.046839166,0.043234337,-0.026296042,-0.14842613,-0.24203104,-0.51425976,-0.57987,-0.0025137477,-0.45525074,0.008625294,-0.27443475,0.11852012,-0.43807733,0.011820029,-0.19315952,0.2828364,-0.45251283,0.08698843,0.29553816,-0.0011297365,0.064393215,-0.53847796,-0.1792634,-0.25057033,0.20141101,-0.19006075,-0.13315882,0.3434256,0.27836433,0.23734117,0.1381223,-0.22292519,-0.2983782,-0.25145325,0.17155725,0.35920522,-0.18348098,-0.4273276,-0.35944557,-0.2449614,0.30120695,0.32983863,0.28694373,-0.06216384,0.06414787,0.06561177,-0.3422246,0.6142656,0.5654068,-0.4526271,-0.44654322,0.45682466,0.65947455,0.42123756,-0.14081797,-0.0445065,-0.0029799037,-0.35537937,-0.19536154,0.13067307,-0.20284148,0.6662006,-0.17877401,0.12513922,0.58966374,-0.46670637,0.13949446,0.0760453,0.058023077,-0.39060447,-0.3040525,-0.24519949,0.30480865,-0.5632053,0.27557793,-0.2731394,0.70402694,0.19647308,-0.5761108,0.27709925,-0.6840605,0.102676295,-0.15654586,0.6309412,0.7442482,0.3224623,0.18226679,0.85186607,-0.35880807,-0.02263236,-0.10012365,-0.38005427,0.13102698,-0.20480861,-0.07376226,-0.48819622,0.08159765,0.21101458,0.048183758,0.09795076,0.37695512,-0.47445,-0.3427362,0.1273095,0.5944175,-0.23681338,-0.22560668,0.7963112,1.2489924,1.1236285,0.014211294,1.2966213,0.2057498,-0.19594437,-0.019197613,-0.17600335,-0.90165305,0.19996631,0.31732813,-0.6266148,0.5410594,0.24532573,-0.06799016,0.32376012,-0.30768302,-0.060680974,-0.09780831,0.3482909,0.01745812,-0.18983865,-0.278769,-0.11913941,-0.04520217,0.048486978,0.31822082,0.32822308,-0.35532606,0.2927749,0.22031046,1.2540207,-0.10538288,0.02151451,-0.015549782,0.4968382,0.3097457,-0.19997291,0.06628787,0.41527125,0.34025475,0.058037996,-0.59729373,0.023092017,-0.46459362,-0.45215693,-0.10491627,-0.3239734,0.013840385,0.10027959,-0.15627141,-0.19682483,-0.13253443,-0.022834122,0.54361355,-2.5937464,-0.19554536,-0.16295813,0.14513007,-0.3306696,-0.33842936,-0.09087149,-0.60383964,0.36928663,0.22630645,0.51076216,-0.6603091,0.36661908,0.5052946,-0.7661657,-0.0025764804,-0.6850669,0.053994756,0.024920657,0.49638036,-0.14937307,0.03668512,-0.018693805,0.16478857,0.48788777,0.3268422,0.084206134,0.29894775,0.5087833,-0.07204058,0.34724978,0.14960478,0.5574765,-0.21515357,-0.225414,0.38988173,-0.28095365,0.81937313,-0.26796484,0.11155913,0.5449633,-0.29902118,-0.8772952,-0.6109387,-0.28620303,1.1406802,-0.33468008,-0.6227394,0.056198593,-0.06901089,-0.373667,-0.16079153,0.4402151,-0.2625039,-0.111995876,-0.50383806,0.016241074,-0.13585986,0.21425788,-0.057590634,0.1654901,-0.41911158,0.73309296,0.035577375,0.34778324,0.26946792,0.29693946,-0.18391041,-0.42087492,0.07985697,0.9467611,0.40147653,0.038758975,-0.40775165,-0.22448468,-0.400802,-0.15015247,0.2261173,0.59689534,0.723546,-0.2242444,0.024916293,0.36823842,0.24835175,0.074725464,-0.055662483,-0.37756172,-0.2672899,-0.30104178,0.60642684,0.8060681,-0.23447943,0.38226274,0.024493909,0.16856103,-0.26247993,-0.4860499,0.9223674,0.94655895,-0.2567693,-0.22671048,0.6016386,0.4368608,-0.5347002,0.68230027,-0.7098225,-0.18092348,0.42797294,-0.048860114,-0.21286464,0.047152292,-0.30114135,-0.03908831,-0.7970741,0.30877468,-0.19007576,-0.19145012,-0.47696432,-0.17294256,-2.72431,0.25362232,-0.21848385,-0.119742356,-0.27837804,-0.040424973,0.22364146,-0.6504324,-0.6988616,0.3543227,0.19958235,0.6756703,-0.19878392,0.18656768,-0.2019641,-0.43900236,-0.5733744,0.20430522,0.059912045,0.36979508,-0.25525436,-0.33896288,-0.02025075,0.04122224,-0.40750298,0.1129781,-0.32110298,-0.3356218,-0.20385341,-0.39938045,0.02651374,0.68843365,-0.35748902,0.05034579,-0.25898257,0.05164678,-0.11853055,0.17266344,0.008018658,-0.01478076,0.07687732,-0.014470766,-0.0046355426,-0.34588706,0.4252346,0.124234445,0.5216053,0.30387318,-0.23406129,0.10394654,0.43165183,0.62166977,0.07918047,0.91894746,0.36806914,-0.17059302,0.27146852,-0.096028484,-0.14848004,-0.6490338,-0.24144088,-0.17877878,-0.5076353,-0.6080594,-0.16734576,-0.20906945,-0.829853,0.39107326,0.15498978,0.6031682,-0.023504967,0.4415888,0.4920435,-0.28289938,0.11836237,0.009900074,-0.16563259,-0.4017059,-0.32027677,-0.61689544,-0.30718458,0.5045356,0.4966886,-0.47547033,-0.15945493,0.053195637,-0.42595658,0.15322311,0.10537216,0.07249651,-0.11820801,0.48210725,0.15226138,-0.51780176,0.6370881,-0.1585591,0.022544095,-0.72374266,0.11109382,0.5988632,-0.5893531,0.39859807,0.372425,-0.03277889,-0.05442487,-0.5903118,-0.08128264,-0.0128137665,-0.33825096,0.31452328,0.43532833,-0.86167794,0.33099964,0.03454068,-0.23100841,-0.6378711,0.8095031,-0.020529823,-0.092291325,-0.34272408,0.45845175,0.31315055,0.13028693,-0.2104903,0.34209725,-0.3285796,0.055932086,0.22710045,-0.24077184,0.37267807,0.10259069,-0.3745794,-0.75349885,0.28608784,-0.5655188,-0.28244802,0.30211195,0.026563695,0.035411205,0.19260477,0.49659005,0.30871382,-0.3985788,0.1749285,-0.07149408,-0.2750647,0.6344052,0.45545444,0.6901676,-0.41076365,0.6638524,0.10990253,-0.12535411,0.25679985,0.008473863,0.43340942,0.023549093,0.42150506,0.4300762,-0.16651194,-0.10721153,0.5934704,0.25692132,0.2849664,0.12275803,-0.069103085,0.17708234,0.15476437,0.31430116,0.14094333,-0.71273404,-0.07833377,-0.18868794,0.120922424,0.65595984,0.1887176,0.16418046,-0.025713623,-0.17167379,-0.022440305,0.019477911,-0.14823048,-1.226262,0.28228027,0.24281545,0.86101794,0.47259364,-0.21932952,0.12377175,0.2735531,-0.1680817,0.18507354,0.44686362,0.025475403,-0.46056828,0.5367644,-0.6296986,0.40742812,0.04557203,0.12932684,0.18138339,-0.041957896,0.38836208,1.0430838,-0.36869183,0.015291467,-0.25938594,-0.29567865,0.10285657,-0.3412366,0.26153037,-0.5066166,-0.2993497,0.6740341,0.47399864,0.32561728,-0.25789902,0.012099278,-0.06693756,-0.2532843,0.10493225,-0.12499008,0.22419886,-0.082913995,-0.55794215,-0.25601497,0.59608907,-0.25825277,0.11136516,-0.1473583,-0.26153997,0.25189817,-0.13272159,0.14432849,0.09214294,-0.876973,0.10389645,-0.059748325,-0.43984652,0.47122112,-0.048237424,0.19005497,0.1831535,0.02741872,-0.08702152,0.45452574,0.017376324,0.73811597,-0.04948637,-0.18433084,-0.45300928,0.25693452,0.15627056,-0.20480485,0.10432271,-0.103173345,0.22425187,-0.53145885,0.47028008,-0.020114943,-0.42653838,-0.2604625,-0.22219448,-0.081379406,0.51900005,-0.1348821,-0.17262065,-0.12031084,-0.20897871,-0.22357355,-0.15315706,-0.10989977,0.10248408,0.26303768,-0.22281201,-0.1647685,-0.18409066,-0.084061116,-0.018045425,0.08718521,0.19418176,0.45811924,0.13518716,-0.46849266,-0.3716801,0.28250352,0.47131315,-0.13254328,-0.21712454,-0.27509388,-0.59540355,-0.52135056,0.38847756,-0.07388361,0.39411172,0.022113904,-0.15957825,0.5776729,0.19256829,1.1866695,0.1065562,-0.39018336,0.0465837,0.8131586,-0.07130644,-0.1730812,-0.44880256,1.1450882,0.46499392,-0.29490316,-0.17707008,-0.30701947,-0.28900668,0.1397234,-0.2865859,-0.04946941,0.11849115,-0.4908924,-0.12936518,0.042837545,0.3285716,0.03038075,-0.02858468,-0.049383,0.4439179,0.30779305,0.40777364,-0.5824035,-0.530065,0.356542,0.07827604,-0.056146633,0.33542976,-0.3259094,0.25213474,-0.72274023,-0.00084931153,-0.35948256,0.19099362,-0.19884223,-0.47449198,0.14682613,0.16857499,0.5136141,-0.44163418,-0.60283226,-0.30183333,0.3089781,0.4042294,0.25638315,0.6028315,-0.1776492,-0.030681066,-0.1824698,0.5040583,1.0854542,0.020118931,-0.08165995,0.37997308,-0.64078933,-0.69717914,0.18594521,-0.4791299,0.48191848,-0.21606816,-0.30672863,-0.5899268,0.27594984,-0.14466506,0.09834719,0.11678315,-0.8175685,-0.32324496,-0.018029528,-0.08782595,-0.15651833,-0.23470068,0.16872793,0.9997259,-0.32745907,-0.35291162,0.0067026266,0.15534739,-0.15944733,-0.63541853,-0.13791305,-0.2381786,0.3295107,-0.08924762,-0.27139616,-0.07654216,0.16838337,-0.52007955,0.23550153,0.045645762,-0.30005154,0.1005164,-0.25267705,0.19013499,0.76098275,-0.27694324,0.13324761,-0.42514113,-0.5053862,-0.653426,-0.5488391,-0.03845948,0.05124103,0.11261185,-0.5106365,0.111266516,-0.1884923,0.107752085,0.047687728,-0.39870596,0.50127625,0.15900753,0.32865128,0.03247853,-1.1919156,0.043816913,0.06479373,-0.09954214,-0.73170537,0.54614395,-0.3030919,0.73051256,0.20111394,0.03817649,0.23013978,-0.66922355,0.0014541248,-0.259843,-0.016572842,-0.7064455,0.34036306,674 +876,0.3079712,-0.23691642,-0.5710659,0.07373459,-0.21657462,-0.34365174,-0.27458438,0.26375517,0.34275457,0.06033237,-0.43842745,0.1020081,-0.008988257,0.3932089,-0.067904234,-0.6339481,-0.05652453,0.22852032,-0.76777035,0.81061965,-0.18478571,0.19018118,0.12570857,0.5740747,0.13633649,0.2848605,0.20559151,0.01452748,-0.15107208,0.0036684896,0.20959984,-0.061947834,-0.7142684,0.0990537,-0.38462377,-0.18511419,-0.19492976,-0.4906639,-0.4426453,-0.9748098,0.23891322,-0.79125476,0.5603856,0.0070171854,-0.22173204,-0.26434982,0.10043753,0.27140346,-0.20365083,-0.17293465,0.099155664,-0.20153904,-0.1898938,-0.4386257,0.008422613,-0.26947454,-0.4497831,0.006245438,-0.52981216,-0.11357489,-0.043879468,0.07855462,-0.36296865,-0.08013985,-0.072385624,0.6818723,-0.35133842,-0.017561981,0.3541874,-0.116811335,0.26652417,-0.7642341,-0.055146676,-0.19315499,0.34378004,0.0045876005,-0.32930046,0.3835108,0.30321062,0.28163603,0.10659733,-0.19545,-0.27372777,0.09718121,0.18255568,0.433413,-0.3435568,-0.40112612,-0.14580591,0.10355855,0.36636138,0.12264252,0.21754839,-0.24211852,0.029241482,-0.18291508,0.13933848,0.6205767,0.5627298,0.07193891,-0.1745003,0.16046856,0.5049701,0.5741686,-0.21037346,-0.074244685,0.058086436,-0.5922183,-0.11100486,-0.031263463,-0.1707627,0.73566586,-0.075921185,0.046831354,0.7044389,-0.024762342,-0.22395869,0.19102687,0.08457064,-0.030721804,-0.1023766,-0.35381153,0.3227937,-0.39103475,0.11973936,-0.14966293,0.36537492,0.20123434,-0.7634682,0.30327544,-0.5557567,0.20623653,0.14458269,0.6247718,0.899836,0.50065106,0.49683166,0.7372531,-0.16684096,0.27889556,0.41008464,-0.30581012,0.12349376,-0.27888525,-0.19587445,-0.44852102,-0.25929642,-0.25242212,-0.29388914,0.18910642,0.31208667,-0.5368398,-0.07668472,-0.024591267,0.7108557,-0.10479,-0.0054473877,0.7254629,1.1975207,1.0060097,-0.010775715,1.2320306,0.230196,-0.14843677,0.02017951,0.0014603585,-0.8760465,0.20879388,0.28136128,-0.5584556,0.6176439,-0.10111604,-0.09919486,0.3631206,-0.71171826,-0.0070172944,0.09860277,0.20918871,0.08926326,-0.24454121,-0.52936,-0.17230944,-0.24826305,0.15855096,0.051856205,0.27878532,-0.2699886,0.3285916,0.034070533,0.94686085,-0.07040679,-0.1073694,0.083088316,0.56101495,0.28851005,-0.21016157,-0.20915274,0.31993833,0.46355006,0.050837915,-0.5274716,0.16971858,-0.3865373,-0.26481727,-0.23437546,-0.1720197,-0.038788002,0.18533139,-0.20345502,-0.38203397,-0.041428853,-0.2800406,0.27560937,-2.4368448,-0.14526975,-0.03404838,0.39054453,-0.20290871,-0.014455986,-0.23237543,-0.42947546,0.13837235,0.19510432,0.5384955,-0.6723383,0.26019013,0.52124685,-0.7637746,-0.10861423,-0.6404576,0.051688153,0.11128504,0.468087,0.16022952,0.0023595442,0.1637318,0.23325841,0.52881795,0.16633655,0.07660445,0.5777058,0.391246,-0.047214627,0.11154351,-0.10579602,0.4846946,-0.37942454,-0.23987235,0.40142512,-0.2855743,0.24215017,-0.25278842,0.12126715,0.60495496,-0.37126374,-0.74611574,-0.291465,-0.13575982,1.1465101,-0.1112169,-0.5337605,0.2226548,-0.31173217,-0.08373997,0.0013054336,0.80990267,-0.22704268,0.22243868,-0.75058883,-0.24987312,0.03355894,0.20675619,0.034598187,-0.0699232,-0.33610097,0.6341127,0.026926422,0.42607537,0.39717078,0.12880413,-0.3026086,-0.6902759,0.25775337,0.7677829,0.4557179,0.107027024,-0.17682724,-0.050451968,-0.24758805,-0.103068,-0.06653826,0.7043027,0.7669215,-0.23079783,0.08795997,0.26147458,0.057042193,0.08236774,-0.11635319,-0.29331282,-0.09691579,-0.099075675,0.5348041,1.1991048,-0.22850193,0.30299973,-0.13497123,0.287549,0.03479413,-0.38867736,0.83210915,0.93677694,-0.32682377,-0.11967269,0.4934219,0.23378456,-0.7225182,0.51222634,-0.60137916,-0.10964236,0.6820257,-0.012615765,-0.46096948,0.33745465,-0.32655177,0.30798802,-0.7713184,0.67084676,-0.30137542,-0.37068713,-0.6142138,0.011620413,-2.1373792,0.14751004,-0.3096178,-0.13854422,-0.5702194,-0.07828577,0.19575466,-0.46629778,-0.6961923,0.18540637,0.22372043,0.53161746,-0.25094542,0.031202724,-0.12973535,-0.42521492,-0.10847312,0.31346256,0.48963058,0.36462542,-0.30582586,-0.31429702,-0.22752158,0.070983194,-0.49242768,0.033305842,-0.6672421,-0.55370027,-0.26834366,-0.75052756,-0.08216255,0.61124796,-0.57170224,-0.021198258,-0.3331852,0.05265683,-0.046955496,0.1882916,-0.024121253,0.20560314,0.14704913,-0.05009612,0.26149622,-0.032397706,0.395638,-0.085437536,0.245753,0.11399341,-0.05695644,0.37657306,0.510148,0.9562566,-0.26683447,1.04065,0.5886218,-0.18397264,0.109568596,-0.25432393,-0.4572276,-0.58763385,-0.31048352,0.19521438,-0.24723993,-0.5271228,0.16721447,-0.385141,-0.83351874,0.538647,-0.21344364,0.3349916,0.30373785,0.21585906,0.45414308,-0.23346816,0.09105456,-0.07880733,-0.2096961,-0.4642091,-0.09547806,-0.55702275,-0.6124705,-0.15495043,0.8738666,-0.20879126,0.094637334,0.20592825,-0.5660066,0.11657276,0.09302553,-0.04268944,0.17243202,0.31704232,0.22241752,-0.63492006,0.21175589,-0.018333495,-0.17663856,-0.47978675,0.24602325,0.6935823,-0.71541405,0.56664294,0.4435844,-0.14963052,-0.3694919,-0.5478612,-0.17660911,0.033300567,-0.12963559,0.3356186,0.32452938,-0.57266045,0.43615913,0.24678989,-0.6884268,-0.7008818,0.44234565,-0.118659995,-0.18888475,0.03529566,0.38664302,-0.43696716,-0.042888407,-0.32320178,0.2744448,-0.12693007,0.2878932,-0.00498119,-0.1957315,0.068665236,-0.003753374,-0.31107846,-0.76462275,0.38129988,-0.6453671,-0.33071554,0.55693674,0.021331178,0.008404679,-0.18745513,0.4661213,0.4024547,-0.22062047,0.10880994,-0.18500233,-0.4044039,0.2853677,0.58252364,0.46326146,-0.35318145,0.613426,0.043169063,-0.12670112,0.16610682,0.06468872,0.26423082,-0.138363,0.3229812,0.21731372,0.011752934,0.089060895,0.73004454,0.0326943,0.44837582,0.15053849,-0.0973404,0.41670153,0.011901297,0.36647764,-0.15174542,-0.3968819,0.063646354,-0.27244684,0.08485661,0.55902535,0.27106056,0.03828987,-0.10897074,-0.43421462,-0.07889822,0.3571204,0.24559946,-1.3830014,0.4558488,0.2635167,0.7128482,0.3423591,0.15391697,-0.18603848,0.77509815,-0.08334494,0.020957813,0.5726249,0.12128808,-0.64941955,0.55785704,-0.54488724,0.44249853,0.03299204,0.019882971,0.19489168,0.04502147,0.27502307,0.8981981,-0.1361411,-0.03889508,-0.18183334,-0.09138638,-0.15228839,-0.504727,0.16336058,-0.30218527,-0.57980746,0.77619505,0.44490495,0.33270296,-0.23578806,0.10738338,-0.020032933,-0.19417758,0.50809646,-0.077328645,-0.1148965,-0.007478282,-0.69190973,-0.027314449,0.41128278,-0.051616084,0.017924383,-0.20742643,-0.073324025,0.09989828,-0.26482555,-0.1275999,-0.23526447,-0.9158275,0.06306519,-0.42386058,-0.46391067,0.60726786,-0.4127603,0.060135525,0.20036365,-0.0051520937,-0.46909806,0.4333836,0.056280836,0.75704044,0.04914513,-0.19519858,-0.055369437,0.35896957,0.2792007,-0.27521357,0.19199,-0.3468344,0.15906455,-0.38893995,0.6845563,-0.07312265,-0.47942498,-0.019432304,-0.14233144,-0.21476638,0.7059353,-0.26561978,-0.35577157,-0.078738995,-0.2884818,-0.29560807,-0.28563955,-0.35840976,0.24203533,0.4609631,-0.054979224,-0.19259508,-0.14041533,-0.15640955,0.4613938,-0.03954482,0.66192263,0.4997485,0.18752582,-0.37742543,0.011274661,0.27278715,0.5919357,0.4011445,-0.06369224,-0.6340535,-0.3878317,-0.41681635,0.08586237,-0.17086606,0.21015376,0.11026588,-0.20506263,0.7468805,0.019644542,1.2537816,-0.042997,-0.28889772,0.10094639,0.5156054,-0.26420996,-0.117667556,-0.4536657,0.95695734,0.5216252,-0.30206567,0.05686583,-0.361374,-0.010389794,0.2507545,-0.33815053,-0.018594662,-0.041853312,-0.5239425,-0.2760851,0.11763612,0.2697181,-0.031112121,-0.16600992,0.08670821,0.039162714,0.08176503,0.15498096,-0.53751594,-0.1525112,0.5084885,0.14387834,-0.13053288,0.0087234825,-0.43929222,0.3193257,-0.5536627,0.14507864,-0.5479171,0.23278217,-0.11415132,-0.62185806,0.1172778,0.065882534,0.5551637,-0.6069888,-0.2932308,-0.27836558,0.39487258,0.13150714,0.110568196,0.5768972,-0.40117383,-0.062336076,0.15618102,0.7686186,1.0339357,-0.48282918,0.05861138,0.0832806,-0.4929138,-0.57376504,0.43539336,-0.39542696,0.124080986,-0.44931817,-0.276561,-0.76152325,0.034100566,0.03209253,0.044423003,-0.1907522,-0.7398663,-0.31880644,0.18175565,-0.22343461,-0.1455233,-0.31674466,0.14225243,0.6062276,-0.23343867,-0.6306806,-0.032027673,0.13068704,-0.11568331,-0.29079485,0.06486232,-0.17355841,0.28630394,0.099252194,-0.33617732,-0.19415678,0.13808745,-0.6218905,0.2299832,0.16976668,-0.45628658,-0.046337306,-0.10614431,-0.07153214,0.78742456,-0.5032213,-0.030365458,-0.35477963,-0.56870645,-1.0408701,-0.4510052,0.07900857,0.3127741,0.021282094,-0.7235647,0.07994158,-0.12033335,0.028779471,-0.026049366,-0.48566136,0.39365482,0.043316856,0.63293993,-0.47147706,-0.9212747,0.11684221,0.1165185,-0.14778401,-0.6349831,0.48042527,0.30480844,0.8999724,0.082320474,-0.051283125,0.013999413,-0.47252902,-0.028727608,-0.17852159,-0.0660559,-0.58485466,0.192073,680 +877,0.45416996,-0.23679943,-0.2921313,-0.093043886,0.017355422,-0.15442318,-0.07822821,0.71212214,0.18799187,-0.48145917,-0.26142946,-0.14329146,-0.05461489,0.45728815,-0.120218694,-0.61446875,-0.13306028,-0.00251243,-0.16060881,0.5569617,-0.4006864,0.1762891,-0.052598074,0.51649904,0.17047071,0.2711515,0.29542172,-0.03801075,-0.16897686,-0.086900294,0.015773525,0.14521919,-0.50759894,0.3016861,-0.17310512,-0.3893635,-0.1216965,-0.45577297,-0.37877634,-0.63622576,0.23399131,-0.75570035,0.5012258,0.1502827,-0.20785828,0.3011075,-0.10433352,0.21861942,-0.31457654,-0.03137897,-0.05464897,0.12712644,0.08499533,-0.12459422,-0.11658618,-0.24099112,-0.47421655,0.15114452,-0.40834138,-0.17041631,-0.31031713,0.13682273,-0.25462756,-0.08960169,0.07659054,0.3418881,-0.429376,-0.20750089,0.1034992,-0.07746191,0.42184797,-0.47753695,-0.2720562,-0.15424214,0.14213789,-0.23489265,-0.15471652,0.27489218,0.2184732,0.45004606,-0.07251532,0.0238365,-0.29125777,0.01345743,0.22179072,0.5869076,-0.26406708,-0.7186408,-0.10729004,0.017414903,0.23387925,0.20797211,0.0692525,-0.27824074,-0.07758715,-0.009304722,-0.18151397,0.24557014,0.542998,-0.16097452,-0.37601507,0.3843721,0.4558924,0.13627122,0.016903758,0.07283217,0.137146,-0.44300053,-0.16483088,-0.090114236,-0.109214395,0.58752435,-0.04125261,0.38261077,0.60490483,-0.22168921,0.19906068,-0.078180544,-0.12595816,-0.17863534,-0.21442151,-0.2245843,0.13548459,-0.31055003,0.19128661,-0.19126661,0.75918657,0.16684626,-0.9104281,0.3512541,-0.4579551,0.07860959,-0.13762857,0.62159246,0.7576243,0.28424275,0.36476162,0.6650955,-0.46697426,-0.016268969,0.011446784,-0.38721824,0.0036720831,-0.13440494,-0.1980757,-0.48263052,-0.17662977,0.34674618,-0.19843256,0.27169743,0.28192976,-0.5930414,0.05474162,0.22562586,0.7390631,-0.28092292,-0.045665313,0.8306586,1.1308521,0.85557824,0.04669981,1.060427,0.3511169,-0.09347179,0.45576182,-0.36023116,-0.6735401,0.30429924,0.52299434,-0.3407105,0.32213676,0.046993356,-0.16829205,0.30548605,-0.57396156,0.117538214,-0.23337905,0.19155681,0.007459531,-0.24468982,-0.6037008,-0.21163239,-0.19919045,-0.015084569,-0.06724244,0.2239132,-0.27119198,0.30921736,-0.054304793,1.5499377,-0.055675417,0.1285988,-0.09114323,0.6884387,0.09731716,-0.3295277,-0.08743945,0.21307822,0.45463085,-0.008400763,-0.5714834,0.075244986,-0.13708563,-0.503236,-0.15710196,-0.34492052,0.07148811,0.12251978,-0.3526694,-0.13703774,-0.13526213,-0.3872958,0.5568835,-2.9892552,-0.3034707,-0.0666077,0.28993687,-0.2565155,-0.27527022,-0.108201005,-0.34700596,0.48597512,0.5466344,0.47227383,-0.63283235,0.07345375,0.38028887,-0.379709,-0.17446129,-0.6168348,0.2060468,-0.14794122,0.35539523,0.016976263,-0.03234108,0.14198531,0.2014993,0.509787,0.13230623,0.10816881,0.17151761,0.19390883,0.06973923,0.18005617,-0.12595315,0.43690053,-0.22179371,-0.25803337,0.2699958,-0.23568521,0.1685958,-0.14740129,0.1958024,0.2264385,-0.5235155,-0.91642475,-0.6595981,-0.51416636,1.1581329,-0.12275254,-0.41455686,0.42339364,0.023860896,-0.24383332,-0.11828879,0.5550363,-0.236826,-0.007829693,-0.7077894,-0.05061717,-0.046585947,0.14374529,-0.03547384,-0.06914327,-0.5420009,0.54479593,-0.11072875,0.34256855,0.39490178,0.31755424,-0.1728863,-0.62737685,0.14444375,1.0292096,0.39225283,0.18305282,-0.11403155,-0.18479861,-0.34885013,-0.06293628,0.22140104,0.3748212,0.9252959,-0.020533549,0.10242441,0.27835116,0.034321483,0.105884254,0.067998685,-0.21444435,-0.09653977,0.044311713,0.6421403,0.6006271,-0.27802444,0.482645,-0.29097542,0.17372407,-0.18703891,-0.30087662,0.70091754,0.66586787,-0.11465903,-0.19168407,0.63647836,0.45086932,-0.26496923,0.43209574,-0.69621056,-0.21263556,0.42486203,-0.13160282,-0.36853215,0.2010709,-0.32664534,0.2140059,-1.1670054,0.37014225,-0.20625897,-0.49933228,-0.63420415,-0.06693479,-3.5944073,0.07407413,-0.16814776,-0.41915646,0.0140873,-0.2839087,0.31565675,-0.63724834,-0.4890895,0.30697182,0.07104314,0.5827922,0.015263538,0.12252739,-0.16797708,-0.10411928,-0.44006678,0.040702436,0.17960383,0.38867483,0.117259,-0.32457975,-0.1262167,-0.088008665,-0.51712537,0.16290568,-0.4161192,-0.46120307,-0.30377492,-0.5491536,-0.22496851,0.6771875,-0.4145701,0.013167094,-0.2209053,-0.046872944,-0.215926,0.49150452,0.18752564,0.04563272,0.09163991,0.038066935,0.10217472,-0.2903245,0.37900475,0.11373479,0.32313475,0.44230327,-0.4173999,0.28590086,0.59070486,0.62223756,-0.24952446,0.6423742,0.6230234,-0.033031743,0.23256375,-0.38346276,-0.1317874,-0.41113937,-0.48525396,-0.06172496,-0.31447372,-0.58725506,-0.18246724,-0.33565405,-0.7788792,0.45164096,-0.1476921,0.45074686,0.01708438,0.08595737,0.38478696,-0.111745715,-0.059026863,-0.094507,-0.016064594,-0.59400636,-0.18840043,-0.63436043,-0.62621695,0.24873418,0.82982653,-0.07880008,-0.044020284,0.039896607,-0.1937893,-0.007193701,-0.12472143,-0.11591596,0.05864669,0.19264613,-0.06608241,-0.72229284,0.45122075,0.066514306,-0.27584445,-0.66274434,0.21694238,0.5494948,-0.5457732,0.38005129,0.225235,0.08046389,-0.04816701,-0.49045828,-0.32204178,-0.20092641,-0.11408768,0.32712522,0.13688004,-0.851621,0.47867465,0.33907762,-0.26100174,-0.7775619,0.4695263,0.010643569,-0.041569013,0.0063999393,0.105391055,0.0719648,-0.022586504,-0.2848478,0.31076238,-0.323651,0.30763283,0.20455603,-0.024538547,0.61820763,-0.10552928,0.04647531,-0.6388164,0.045683723,-0.53967303,-0.23282202,0.1633137,0.26820752,0.09994251,0.025795877,0.023684964,0.3461537,-0.29583332,0.13829228,0.07864564,-0.26700446,0.15847017,0.46820474,0.46609783,-0.3596244,0.60290116,0.07248253,-0.07719241,-0.2103257,0.045270666,0.439818,0.08960902,0.12025074,-0.10368616,-0.25772777,0.18657301,0.5503918,0.22667187,0.35965237,0.03800082,-0.04619983,0.34974506,0.11284534,0.22688657,0.15461674,-0.49077162,-0.019265393,-0.21682191,0.17121331,0.47808346,0.26711202,0.2841026,-0.14456353,-0.28718254,0.1051865,0.27454403,-0.0025555592,-1.263003,0.4839008,0.14650185,0.667037,0.6128904,-0.0127538815,0.020238748,0.6705642,-0.12976734,0.21268316,0.3261845,0.14710563,-0.6408735,0.5780076,-0.7763476,0.47776452,0.0759225,-0.056209892,-0.006611953,-0.06386714,0.32507423,0.674567,0.002596135,0.1944055,-0.05771807,-0.09651959,-0.025052508,-0.3466781,0.24763656,-0.6081616,-0.14986388,0.60824275,0.44873154,0.16665184,0.03550448,-0.025310388,0.08236355,-0.0706447,0.15880185,-0.18720293,0.17576082,0.043214973,-0.67703646,-0.29696992,0.47609878,0.054470986,0.17658336,0.004253956,-0.15739608,0.089172564,-0.22851257,-0.19572477,0.052586887,-0.57900256,0.047440697,-0.28145608,-0.21191414,0.48900655,-0.29001042,0.35841116,0.13409103,0.04725586,-0.10798967,0.074323624,0.17801784,0.76760143,0.008905132,-0.33823323,-0.39296946,0.16181007,0.26666167,-0.2175159,-0.11192278,-0.23477717,-0.32217464,-0.6833346,0.49079692,0.06429791,-0.25998148,0.22402757,-0.08337492,0.11793282,0.53544885,-0.08580128,-0.02234429,-0.034287345,-0.24983911,-0.26674768,-0.069582395,-0.19100793,0.38277158,0.36059913,0.037986804,0.06543437,-0.10923868,-0.12518898,0.3375373,0.11264149,0.41704628,0.24210377,0.16425957,-0.2878484,-0.24319692,0.06857876,0.32902882,0.24352382,-0.06373054,-0.23306926,-0.41347718,-0.34736133,-0.12698328,-0.18202694,0.274605,-0.01428225,-0.24767981,0.47360453,0.1668389,1.200595,0.039969888,-0.369879,0.22596379,0.42494464,-0.046065122,-0.06918383,-0.3787098,1.0486826,0.5476609,-0.12840764,-0.12736244,-0.35566702,-0.2221279,0.34390107,-0.24965824,-0.26322204,0.01354229,-0.64721704,-0.46293154,0.19646455,0.19575524,0.14538969,0.022165308,0.07644464,0.16285796,-0.04569511,0.45203748,-0.33237478,-0.06415274,0.38263357,0.3730308,0.09503761,0.150322,-0.46382043,0.38073957,-0.5479363,-0.030109545,-0.28398678,0.16380672,-0.14465462,-0.52695316,0.11909511,0.20054887,0.5528243,-0.10898143,-0.4993268,-0.17258215,0.63278747,0.04148854,0.12294803,0.5155211,-0.23763354,0.04234922,-0.13704261,0.32218137,1.1807303,-0.2366879,0.022026204,0.35339835,-0.2255549,-0.7013893,0.5055105,-0.28962788,0.43592438,-0.2301169,-0.26887774,-0.5347274,0.18818565,0.1411644,-0.13397856,-0.076331176,-0.4326842,-0.37969077,0.19736807,-0.23099963,-0.21162038,-0.44784808,0.019986475,0.6654431,-0.375093,-0.39368796,0.2253743,0.22666426,-0.23781745,-0.52855325,-0.0715513,-0.13483785,0.270537,0.09112122,-0.4322982,-0.25632453,0.08893857,-0.25242943,0.21231045,-0.078819275,-0.37446174,0.18644702,-0.2956287,-0.030796973,0.9959302,-0.23528288,0.15136968,-0.69556457,-0.46967682,-0.87588614,-0.56771964,0.6452262,0.24402791,-0.032244846,-0.5593614,0.21134804,-0.072422475,0.16681182,-0.14250661,-0.2540984,0.35355783,0.059720654,0.4924587,-0.08433369,-0.6651879,0.13623327,0.1819619,0.06266097,-0.6409465,0.47520122,0.118347995,1.0172673,0.0896483,0.074815,0.22356975,-0.6052768,-0.18388611,-0.18003708,-0.30762473,-0.63216835,0.30325523,688 +878,0.6111341,-0.12712997,-0.7436754,-0.1328441,-0.33919927,-0.25638342,-0.26745686,0.48693427,0.22442318,-0.49375165,-0.19566935,-0.13794874,-0.08605233,0.65092427,-0.24417849,-0.906159,0.13251673,0.32090205,-0.46718094,0.58078796,-0.5564901,0.2624887,-0.02104267,0.6300372,0.39071593,0.23830134,0.37116694,0.1020185,-0.27770594,-0.42733732,-0.077647805,0.05619095,-0.7437315,0.19180723,-0.20973015,-0.75740075,0.048741948,-0.5328416,-0.4121662,-0.93800306,0.37754452,-0.8261843,0.59264493,-0.112039566,-0.32280394,0.09241452,0.27712512,0.4812467,-0.22100161,-0.08505266,0.11615547,-0.09449023,-0.03510712,-0.15638046,-0.30832005,-0.39556536,-0.65143794,0.095651805,-0.44061562,-0.105946384,-0.27381852,0.19403286,-0.34940717,0.14874835,-0.07593424,0.6245833,-0.4012505,-0.080935664,0.39275208,-0.12758927,0.1677322,-0.53932,-0.17954282,-0.22692186,0.117419064,-0.031139208,-0.24303472,0.38464522,0.09470274,0.34517944,0.2099743,-0.38598558,-0.42936578,-0.13978261,0.111419775,0.45934007,-0.21302028,-0.5040214,-0.25303617,-0.045131575,0.20993136,0.22440465,0.26195684,-0.25696245,0.1407338,0.07906264,-0.38919938,0.61084,0.44400778,-0.36931658,-0.20626432,0.09057235,0.52281564,0.19777797,-0.2645814,0.054951686,0.18535282,-0.6802265,-0.30922374,0.03061904,-0.02638237,0.68280643,-0.16799362,0.25602314,0.8412532,-0.39295772,-0.112236165,0.04405415,0.0707478,-0.119981706,-0.55990046,-0.44002065,0.4328208,-0.55509424,0.14458714,-0.31616503,1.0106817,0.23599888,-0.62495327,0.27244714,-0.68410516,0.12412401,-0.24401122,0.49951085,0.5262856,0.3206863,0.41755596,0.74459577,-0.3147024,0.24234462,-0.0050762594,-0.43533078,-0.15115635,-0.18401597,0.17692764,-0.3415273,-0.010881166,-0.28120235,-0.023979226,-0.010086447,0.5168592,-0.50803703,-0.19715138,0.16460837,1.0206809,-0.31200418,-0.18115652,0.9356961,1.0679065,1.3441502,-0.001654475,1.2611371,0.42924973,-0.12759541,0.01942725,0.0059604845,-0.7281839,0.31207296,0.28581896,-0.46280766,0.24834915,0.07450851,-0.04290278,0.5564253,-0.43360198,0.08971617,-0.22940926,0.50934213,0.19474308,-0.15059738,-0.49628153,-0.31256756,0.020859934,-0.25526306,0.14678174,0.3282654,-0.106699504,0.4026629,-0.12791562,1.697372,-0.054530393,0.034140557,-0.0048710457,0.7270684,0.29910967,-0.064653344,0.0706861,-0.05047895,0.31067246,-0.005767832,-0.64941746,-0.105223894,-0.35262606,-0.3384502,-0.2912997,-0.38852763,-0.05489215,-0.08407816,-0.4380953,-0.32844165,-0.1378319,0.015589942,0.31563568,-2.2962914,-0.35405812,-0.059076626,0.20817618,-0.4133422,-0.33656478,-0.021020522,-0.7238273,0.66352874,0.2249365,0.55661273,-0.5839098,0.575689,0.5647715,-0.4732792,-0.0975058,-0.768534,-0.13354155,-0.095251866,0.3555374,-0.124790214,-0.20948057,-0.069922954,0.036981836,0.565784,0.016543671,0.07418808,0.21827824,0.48552808,-0.060224682,0.65715265,0.15671481,0.71138304,-0.61200076,-0.24887729,0.32789892,-0.47658026,0.2460016,-0.18262397,0.13767505,0.6394719,-0.49920675,-1.0078369,-0.7176654,-0.06364915,0.9689948,-0.12213173,-0.5262788,0.19960512,-0.11174067,0.02278932,0.0077333055,0.19366096,-0.09308135,0.073222,-0.59039146,0.05443782,-0.06735412,0.010386169,0.059510518,-0.010166541,-0.35838926,0.59400445,-0.1182476,0.11701912,0.4213461,0.3135161,-0.43557557,-0.5803329,0.087827615,0.96655464,0.29823765,0.22026896,-0.5570324,-0.24202244,-0.41437733,-0.24775128,-0.06659074,0.46114942,0.92229795,-0.24182884,0.14831787,0.4020617,-0.041988987,-0.03239323,-0.081805006,-0.6829603,-0.19452874,0.06902417,0.6509984,0.7420342,-0.10990431,0.71649593,-0.1037729,0.43500146,-0.2816677,-0.3517239,0.6608007,1.1380656,-0.24716824,-0.3717207,0.62653273,0.31251845,-0.43374622,0.6615899,-0.49139246,-0.2756141,0.48931846,-0.085003786,-0.32181552,-0.026599646,-0.2871221,-0.012925822,-0.86772794,0.30620733,-0.4532659,-0.22660752,-0.76108885,-0.49437344,-3.4335167,0.3387464,-0.31179094,0.10537494,-0.14312796,-0.16153409,0.20784009,-0.591151,-0.6735213,0.24095659,0.044176895,0.80499625,-0.034203425,0.29499185,-0.24151659,-0.2735705,-0.43885553,0.14890952,0.26739737,0.36001512,0.09064139,-0.5130958,0.021201387,-0.29634014,-0.5846929,0.062217563,-0.6141781,-0.45323205,-0.1966273,-0.7728538,-0.36111537,0.93456715,-0.37448576,0.10061034,-0.2922878,0.074318014,-0.20147265,0.3912411,0.089103304,0.19149482,0.16265939,-0.18062067,0.10040444,-0.3244066,0.022835886,0.08516902,0.4777002,0.1230197,0.061750352,0.28162163,0.6499152,0.8525584,0.1550274,0.8860838,0.5048518,-0.1392474,0.2782931,-0.33283815,-0.55300283,-0.49235976,-0.3315502,-0.05032895,-0.40252653,-0.4822637,0.06434085,-0.39494655,-0.8116233,0.8684624,0.07074591,0.100752346,-0.0033917725,0.2358525,0.4093895,-0.1626407,-0.15166254,0.014178206,-0.023143245,-0.6323717,-0.3956597,-0.5998346,-0.5630649,0.07364082,1.0457662,-0.14977987,-0.10022076,0.12281885,-0.40148067,0.09205407,0.26665327,-0.14521815,0.023630986,0.389523,-0.052503522,-0.79606384,0.29249966,-0.14906788,0.03878411,-0.7006069,0.23668265,0.8424177,-0.7299812,0.62173015,0.36955008,0.09364748,-0.11169866,-0.50999373,-0.20327848,0.13964379,-0.06730901,0.5688583,0.17788,-0.79497623,0.5504594,0.38846174,-0.44061586,-0.85946304,0.38007483,0.03406299,-0.36826715,-0.05322269,0.33855477,0.29446945,-0.00079652417,-0.3778509,0.16306317,-0.48927853,-0.06326851,0.2707896,-0.19246931,0.4074668,-0.32113698,-0.23247957,-0.7886146,0.04036222,-0.539785,-0.2861235,0.10746926,-0.03664094,-0.04134376,0.2983878,0.23006292,0.08473947,-0.23021646,0.07429643,-0.1599209,-0.288824,0.49176347,0.38232312,0.53161114,-0.62721294,0.6358545,0.09309531,-0.11038783,0.24760132,0.0037364562,0.43731928,-0.007537415,0.43523288,0.20396942,-0.096366614,-0.0062728724,0.7488449,0.14795323,0.6180948,0.18706803,-0.1322477,0.14099996,0.18386428,0.14787884,0.36421934,-0.5681713,-0.08710333,-0.15667649,0.20578186,0.6327222,0.13827819,0.4646155,0.18734397,-0.31913802,0.062329486,0.06209445,-0.34921417,-1.5562059,0.4252913,0.22777776,0.9055829,0.48316917,0.0024945997,-0.0117896395,0.7316949,-0.14788778,0.18384969,0.4502212,0.048578814,-0.38201013,0.69019777,-0.4991598,0.5811865,-0.07079464,0.14925109,-0.11381867,0.12775032,0.60780424,0.7891081,-0.19398205,0.041774526,0.051018637,-0.3211685,0.15373456,-0.5644638,0.09939083,-0.36164045,-0.17979617,0.882895,0.48560986,0.2871787,-0.17541252,-0.056022268,0.19148986,-0.09594969,0.07906606,-0.1940756,-0.11036587,0.036888264,-0.5290534,-0.25611982,0.5879821,0.11991047,0.25408164,-0.051162597,-0.14325921,0.3376683,-0.12015703,-0.01845251,-0.073428325,-0.8378524,0.019602507,-0.31697598,-0.53744566,0.4342977,0.008670797,0.24755894,0.16155319,0.0842346,-0.4298322,0.5355413,-0.063191675,0.61603814,-0.17790276,-0.15573364,-0.31866434,0.16605513,0.31178483,-0.3357412,0.06640544,-0.33042035,0.15916912,-0.5068404,0.3896061,-0.15857063,-0.33869871,-0.124748915,-0.09417194,-0.0216329,0.6241136,-0.19087245,0.09621356,0.11836654,-0.26185104,-0.220025,-0.23404156,-0.053808082,0.23137073,0.14126705,-0.11773274,-0.16112705,-0.26753286,-0.024199734,0.5092327,-0.23115265,0.24262714,0.40065014,0.2620686,-0.3018376,-0.3553972,0.030875312,0.5718785,-0.08887016,-0.18241636,-0.35334063,-0.35115132,-0.33497226,0.6087906,-0.059085656,0.25649944,0.08849114,-0.40066218,0.8694999,0.26878503,1.3524853,0.059711114,-0.5138503,0.15919401,0.51135427,0.014459029,0.08515335,-0.55311793,1.0046922,0.4767731,-0.31152725,-0.28473064,-0.61209756,0.024367189,0.2929221,-0.3066754,-0.36385798,-0.1117394,-0.44447994,-0.20836908,0.29511467,0.37124947,0.123031385,-0.17025109,0.21394837,0.44111407,0.1254111,0.52412933,-0.55621284,-0.12901188,0.45190024,0.39687085,-0.12212723,0.16097148,-0.5703648,0.2817752,-0.5010396,0.2293296,-0.5192509,0.2267127,-0.05271144,-0.41730785,0.30674294,0.16346776,0.33153018,-0.5299174,-0.18002208,-0.17013372,0.51507336,0.32563892,0.1956116,0.6878192,-0.325232,-0.114408456,-0.06822147,0.5200653,1.0733575,-0.2594132,-0.109890126,0.33946982,-0.16070189,-0.72797775,0.44713864,-0.33984908,0.11498201,-0.02454494,-0.32754156,-0.8075054,0.23933981,0.13566591,-0.15769565,0.21986194,-0.6400203,-0.17364107,0.19089197,-0.12895982,-0.2566273,-0.42357764,0.0981187,0.7154488,-0.18934657,-0.30504945,0.19241385,0.37009445,-0.0504618,-0.49081793,-0.16654082,-0.29388365,0.42451826,0.13509233,-0.20335211,-0.12555325,-0.032485414,-0.6194977,0.1452398,0.2661225,-0.3207173,0.068318106,-0.124409296,-0.079293914,0.8716872,-0.102575354,0.42690024,-0.44028965,-0.47960803,-0.9009482,-0.37072203,0.55929387,0.17427985,-0.006464675,-0.72238874,-0.06655408,-0.08912376,-0.11907998,0.26630303,-0.45546627,0.3440999,0.08886159,0.41143808,0.013532211,-0.84904236,-0.016926685,0.14656375,-0.32006207,-0.6284802,0.56025565,-0.29413822,0.926378,0.06055224,0.07593114,0.20333914,-0.32094678,0.056391966,-0.37570944,-0.3963503,-0.6218868,0.02366428,704 +879,0.7134196,-0.094970345,-0.3498417,-0.30214372,-0.1308375,-0.07667435,-0.121168174,0.63910973,0.31542078,-0.7093286,-0.34297904,-0.23705511,0.08278901,0.16366011,-0.31439194,-0.65205926,0.043155,0.13391693,-0.21326996,0.45643964,-0.4676638,0.31337985,0.09085845,0.23226035,0.03712176,0.113758765,0.23380804,-0.15562259,0.20964527,-0.18708783,-0.28805074,0.30304667,-0.6167931,-0.023246646,-0.16891752,-0.34838822,0.026401162,-0.43296131,-0.38384056,-0.7460218,0.37087378,-1.0109305,0.61354613,0.2688154,-0.27117822,0.43420568,-0.13678329,-0.012244607,-0.14967893,0.25555816,0.0041811294,-0.27770552,0.10322589,-0.18225895,-0.15445502,-0.49896088,-0.6552021,-0.025815144,-0.36097458,-0.28352025,-0.34677193,0.07651787,-0.45171127,0.0695482,-0.17466246,0.53715605,-0.44970012,-0.03793657,0.1526284,-0.25740266,0.30530724,-0.69622904,-0.24622934,-0.11345608,0.26068857,-0.16411693,-0.17233318,0.17231877,0.31510988,0.6971192,0.030606464,-0.21666522,-0.22534873,-0.009215574,-0.03150186,0.46798098,-0.20037375,-0.6144933,-0.073774524,0.09338361,0.25694495,0.18961328,0.13989042,-0.104583524,-0.17065538,-0.047323674,-0.3065556,0.48288462,0.56989676,-0.41946682,-0.29538554,0.22080553,0.40894046,0.17730705,0.09048197,0.1673692,-0.04162876,-0.6209166,-0.12088088,-0.0018252432,-0.4496174,0.7538298,-0.24968785,0.31639656,0.58844227,-0.10815843,0.13540502,0.06672355,-0.012396517,0.112052836,-0.3148594,-0.32176688,0.4271718,-0.48574045,0.24616957,-0.24580951,0.88475513,0.14358386,-0.6319874,0.3302857,-0.5066929,0.14732164,-0.25568914,0.59705824,0.61291593,0.4796939,0.35374272,0.8446889,-0.7458339,-0.03311365,-0.09076873,-0.36676303,-0.018092513,-0.016915655,0.06563969,-0.3061286,0.05053972,-0.019321034,-0.017706731,0.12332312,0.33544457,-0.479195,-0.07910461,0.26176623,0.7594977,-0.25760546,0.00987224,0.7554485,1.1132518,0.99741936,0.11450302,0.97223663,0.1288789,-0.23406601,0.15300627,-0.08682209,-0.83783466,0.37634477,0.5475231,0.31405658,0.2627593,0.11793247,-0.05152082,0.30581823,-0.44962016,-0.1756772,-0.27273974,0.25360703,0.13094954,-0.13672905,-0.66326827,-0.08887205,-0.09984747,0.09209605,0.06082425,0.21480574,-0.1928793,0.17897277,0.015247042,0.99520445,-0.06932517,0.15028821,0.17511916,0.4072535,0.2193706,-0.044132486,0.1569646,0.32436934,0.42360103,0.16122483,-0.6447188,0.051658552,-0.2752317,-0.5210141,-0.16931267,-0.34319106,0.12325514,0.15604135,-0.5238454,-0.1977403,-0.17092569,-0.24418713,0.3428948,-2.482436,-0.26443294,-0.059309017,0.47973135,-0.21521473,-0.2662987,-0.14167495,-0.5176258,0.4700153,0.3921651,0.5894994,-0.7607091,0.2527435,0.6603419,-0.45047083,-0.07560048,-0.6021212,0.0004666249,-0.1559239,0.30732992,0.16823155,-0.22380853,-0.057222035,0.12918837,0.6861574,0.2655729,0.0912532,0.11197242,0.45081738,-0.12965208,0.38095784,-0.24385238,0.49965134,-0.24609435,-0.17304349,0.31712085,-0.16380163,0.07554161,-0.44021618,0.18476748,0.42631027,-0.4321846,-0.87644285,-0.6122594,-0.22783859,1.4151073,-0.16380186,-0.57167894,0.46393514,-0.08370074,-0.16167875,-0.16847368,0.5349609,-0.20928484,-0.18105012,-0.7773202,0.045816537,-0.10305771,0.1504634,0.10773092,-0.061807375,-0.46935543,0.85018533,-0.074308775,0.46470413,0.40737787,0.2448501,-0.07583052,-0.43611896,-0.047267187,0.83980966,0.40161753,0.18813448,-0.2828725,-0.093874834,-0.19427447,0.160281,-0.018564133,0.6333234,0.8042688,-0.2101245,-0.049586464,0.19988646,0.25383273,0.10859584,-0.119815804,-0.3002158,-0.14820768,-0.15995422,0.44685718,0.644043,-0.33198473,0.15330982,-0.12665294,0.26281908,-0.19921486,-0.29784116,0.43788636,1.0797734,-0.15996432,-0.18264551,0.8220916,0.36446056,-0.2537982,0.43171728,-0.77498364,-0.31902775,0.4428468,-0.16738474,-0.42252156,0.19394927,-0.44298708,0.20009887,-0.8369836,0.3411698,-0.29832026,-0.32172433,-0.6298274,-0.1759535,-3.5811176,0.26379725,-0.41174832,-0.05936988,-0.18812935,-0.22026336,0.21010627,-0.77568895,-0.59602636,0.29142722,0.19644593,0.63980675,-0.054249182,0.13782226,-0.19520672,-0.39029536,-0.20308311,0.08512931,0.012933172,0.26674575,0.27549207,-0.36683908,0.12667133,0.02557831,-0.3216108,0.025421858,-0.48233366,-0.46449903,-0.113833934,-0.5662532,-0.4147861,0.5175386,-0.2764089,0.047899198,-0.20218545,0.046579573,-0.14212568,0.14220269,0.052301507,0.2526754,-0.02308703,0.08855047,-0.009551674,-0.17235535,0.39232278,0.053162914,0.20709562,0.37663198,-0.34852764,-0.23084687,0.53011286,0.56285137,-0.15402131,0.99682736,0.49667946,-0.064654626,0.2582712,-0.1320911,-0.33619544,-0.7027719,-0.41532293,0.00565284,-0.4293296,-0.4430976,0.016808312,-0.37061706,-0.7989114,0.5766445,-0.14388336,0.4433411,0.13539548,0.43081847,0.6273392,-0.23971854,0.011315753,0.07269502,-0.19316347,-0.51767635,-0.16450326,-0.71137804,-0.29982,-0.06923464,0.8182834,-0.19747108,-0.008583841,0.03720836,-0.05238195,0.026971733,-0.06408245,0.061868567,0.0046687922,0.46989274,0.08722815,-0.63504064,0.4709107,0.010195591,-0.15576981,-0.5874036,0.00058194995,0.45011887,-0.7328294,0.4643263,0.48014423,-0.07399284,-0.17529671,-0.68455744,-0.46769002,-0.07385258,-0.20462006,0.35813895,0.34901595,-0.74639314,0.431177,0.388566,-0.18853319,-0.78045607,0.4631964,-0.122723974,-0.58802515,0.047448352,0.32928973,0.17061615,0.14062656,0.11219791,0.20883483,-0.403711,0.30028287,0.24498528,-0.050298825,0.3919978,-0.13702887,-0.0024517726,-0.9321038,-0.05388704,-0.59666353,-0.20260827,0.29183385,0.08947656,-0.033657815,0.25141048,0.043261487,0.47336093,-0.32373407,0.19226341,-0.083223075,-0.20805895,0.5121365,0.3938208,0.48824143,-0.25013316,0.6567232,0.07080377,-0.1450385,-0.18395098,0.1712271,0.42591003,0.010099408,0.32289335,-0.046574175,-0.2740263,0.17187835,0.8264323,0.19318663,0.30198082,0.21805839,-0.028828016,0.51927704,0.24417424,0.1738125,-0.12389424,-0.56199795,-0.15383284,-0.33777305,0.0061027952,0.43096685,0.19775356,0.22862731,-0.2029739,-0.20359945,-0.0149834575,0.24751054,0.1319936,-1.0999237,0.13294953,-0.062298592,0.76002854,0.557702,0.13328831,-0.09531713,0.50768465,-0.0007530202,0.09255233,0.2943335,0.008213796,-0.4215848,0.4371985,-0.45643425,0.16447687,-0.20635776,0.019685768,-0.03760445,0.011028573,0.3031771,0.5969711,-0.092632495,-0.06631074,-0.1040358,-0.22139247,0.13528258,-0.4551796,0.13577749,-0.5467618,-0.18741255,0.60675937,0.47299156,0.3873525,-0.31729907,-0.009541289,-0.002941534,-0.091380574,0.071612425,-0.040661942,-0.012456882,-0.06356565,-0.59490603,0.0028935373,0.49592316,0.35306978,0.056153137,-0.264884,-0.30884355,0.15743864,-0.14603241,-0.2614779,-0.052841887,-0.67213565,-0.053913284,-0.4343704,-0.4258695,0.2778151,0.025815884,0.3078462,0.15480109,0.012930338,-0.2500327,-0.035255928,0.18423986,0.62489,-0.05617844,-0.12759866,-0.52965504,0.12599273,0.11071516,-0.20230223,0.014189755,-0.17778556,0.07872435,-0.47335362,0.5168539,-0.06252536,-0.13318123,0.11770492,-0.281626,0.008840029,0.59611994,-0.13202877,-0.12062857,0.013647123,-0.33777502,-0.3768524,-0.21630573,-0.17488734,0.29138687,0.026085878,-0.22686751,-0.1285137,-0.12117249,-0.22401853,0.397266,0.1784345,0.23894817,0.20554638,0.05910504,-0.22923471,-0.14126118,0.07642726,0.54612875,-0.053805068,-0.25307587,-0.23873131,-0.70500225,-0.26375997,-0.15051408,0.00034404793,0.3103153,0.05915889,-0.09418922,0.7269841,0.30125,1.0144633,0.014288922,-0.35918364,-0.18725355,0.53392,-0.22288603,-0.19121015,-0.1894002,0.9496781,0.5715063,-0.06644789,-0.058643907,-0.20840818,0.14819495,0.09599814,-0.15056863,-0.041454896,-0.0584607,-0.62045985,-0.26103997,0.36351228,0.36565414,0.20682152,-0.07205539,0.07281912,0.22801477,0.05895667,0.49241993,-0.4537057,-0.23539376,0.14874946,0.12932378,0.13724265,0.09458136,-0.27113768,0.34976792,-0.5682263,-0.011401738,-0.543847,0.07603095,-0.24670096,-0.20994604,0.3374641,-0.017626682,0.5153652,-0.37565005,-0.48550776,-0.22458987,0.30115518,-0.10026139,0.11472523,0.48707977,-0.17014419,0.0071027675,0.09142986,0.69248945,1.2866664,-0.103715695,0.23057474,0.32291344,-0.41244444,-0.6846157,0.34738874,-0.26394224,0.0765979,-0.13236813,-0.11485235,-0.50053924,0.2645814,0.26534942,0.045398954,0.21418203,-0.5355456,-0.42387095,0.26805863,-0.3103995,-0.16390467,-0.121408165,0.11729864,0.64667696,-0.324792,-0.24593578,-0.072157584,0.33617386,-0.1765163,-0.7078757,-0.027261471,-0.35792652,0.31296575,0.23560794,-0.32329226,-0.019527009,0.09395503,-0.52871233,0.026646933,0.117591105,-0.31380892,0.09864373,-0.4675788,0.07575285,0.89144254,-0.15570103,0.17785864,-0.47728088,-0.499409,-0.9523671,-0.18683524,0.7136598,0.18313916,0.19573082,-0.5064257,0.14479668,-0.15366818,0.03069959,-0.30209085,-0.17760502,0.5795447,0.16301683,0.51815516,-0.097267576,-0.7524602,0.011997809,0.03224488,-0.19928086,-0.43782791,0.54052943,0.22071512,0.90300757,-0.019888673,0.14305867,0.1274408,-0.5017563,0.09061825,-0.21854186,-0.14448224,-0.65297025,0.04426579,716 +880,0.56504184,-0.26428002,-0.33035088,-0.17986129,0.09818319,-0.16084628,-0.3438336,0.383062,0.026598861,-0.47307372,-0.37311184,-0.21348034,0.05902947,0.36659554,-0.14781825,-0.8263526,-0.05362912,0.11251136,-0.34322166,0.8264467,-0.35919094,0.2122746,0.0156822,0.4060632,0.2362638,0.19875474,0.42811725,0.036199734,-0.43914554,-0.31726933,0.043551743,-0.36569175,-0.9286998,0.06434122,-0.270176,-0.46369347,-0.056173414,-0.40254298,-0.32532743,-0.9267311,0.46008325,-0.9717479,0.4329706,0.079405926,-0.27793762,0.5336828,0.002757122,0.35238537,-0.19033486,0.1405916,0.019327164,-0.10674933,0.07438059,-0.30664322,-0.03259043,-0.31728122,-0.6982978,0.06208529,-0.39419702,-0.15442495,-0.4226927,0.08009264,-0.39793697,-0.029557435,-0.30101886,0.37957212,-0.54323614,-0.43538523,0.19090278,-0.11374658,0.42322755,-0.7785745,-0.292018,-0.22212307,0.022891536,0.02214151,0.14453939,0.34096003,0.163924,0.45272747,0.098555945,-0.24793518,-0.31054184,0.095359646,0.14148864,0.38398695,-0.1591636,-0.47430804,-0.07078263,-0.13116597,0.40658584,0.22805047,0.178883,0.015877953,0.0029901613,0.039241564,-0.1841466,0.36568108,0.55076045,-0.38551295,-0.34100923,0.18669803,0.56224346,0.11695119,-0.032511696,-0.18703322,-0.095666885,-0.3714681,-0.18257587,0.45094696,-0.58814055,0.7875677,-0.08165566,0.010104214,0.60033065,-0.44063547,0.2203841,-0.09223312,0.056803137,0.0077575245,-0.23089974,-0.38149354,0.5269302,-0.45487592,0.044557467,-0.6713517,0.8412599,0.16057627,-0.7355432,0.2817829,-0.5702171,0.21133971,0.00094397366,0.6815875,0.560647,0.41340056,0.43736053,0.66797143,-0.44184992,0.059548646,-0.074331164,-0.27532387,0.12783875,-0.1677326,0.09511488,-0.2937849,-0.11795161,-0.098537914,-0.23700915,-0.12677318,0.5693186,-0.50591654,0.10159576,0.15919805,0.7255458,-0.23967123,0.0700554,0.7279517,1.354463,1.1961075,0.026573138,1.1588436,0.44298387,-0.2599297,0.12553683,-0.3876592,-0.56101334,0.25511009,0.5227282,0.1611226,0.48625818,0.0566055,-0.19416092,0.34435606,-0.5471676,0.13496782,-0.23699357,0.044721663,-7.417798e-05,0.003238852,-0.38458169,-0.4115477,-0.11350588,0.15791596,-0.03619622,0.36701074,-0.2925505,0.16405766,-0.0023363333,1.3224467,-0.055656105,0.03305657,0.13441895,0.60713047,0.25152704,-0.19269563,0.1531143,0.30658245,0.32128724,0.083238386,-0.66716963,0.09653256,-0.4748703,-0.46459588,-0.21493524,-0.2625894,0.26768902,0.19188808,-0.42168203,-0.1488969,0.033598777,-0.38385758,0.2958391,-2.1420965,-0.11046209,-0.059011634,0.38721666,-0.39082107,-0.38358355,0.0045645884,-0.5720503,0.5557677,0.4379519,0.4888353,-0.6459242,0.23508723,0.51440257,-0.43738997,0.059720974,-0.64955205,-0.16140719,-0.2645702,0.51142436,0.06322292,-0.18723446,0.10558405,0.18287188,0.7899143,0.27439496,0.0767727,0.2029993,0.32784513,-0.14011295,0.38754895,0.23245317,0.31626293,-0.19252236,-0.16924286,0.35755852,-0.45378232,0.3844154,-0.1636752,0.12651418,0.3566339,-0.520022,-0.97331095,-0.8006792,-0.54342216,1.24163,-0.07363575,-0.8302081,0.16134505,0.4535456,-0.17428648,-0.058520067,0.47380635,-0.21867244,-0.0024738212,-0.6811171,-0.06933702,-0.08937988,0.25864294,0.24176764,0.16844732,-0.6764629,0.96384686,-0.12921387,0.15480204,0.23617476,0.37340513,-0.23757581,-0.60586697,0.110683024,1.2114908,0.48078704,0.08696913,-0.3612133,-0.31761068,-0.31069276,-0.1341078,0.1604713,0.4498522,0.9517124,-0.028574288,-0.031716373,0.28514722,-0.062217385,0.03092291,-0.08479437,-0.5556763,-0.2246599,-0.032034222,0.75540656,0.6439996,-0.009921859,0.3474227,-0.19761552,0.31922337,-0.19264789,-0.24208474,0.64094543,1.2366084,0.075389616,-0.030250588,0.6628055,0.54060966,-0.3624512,0.6923816,-0.8596589,-0.3934631,0.5215099,-0.22129957,-0.37591025,0.24748272,-0.3087544,0.004445096,-0.7293605,0.439618,-0.5431461,-0.10299494,-0.8005727,-0.108941436,-3.4126647,0.19606912,-0.2812507,-0.29422453,-0.14652714,-0.15709133,0.2649171,-0.79924923,-0.57443565,0.18145858,0.15441728,0.66826075,-0.037267517,0.21503718,-0.32133707,-0.34151673,-0.607757,0.19361623,0.3115678,0.2907112,-0.11638814,-0.21588002,0.28413662,-0.27736565,-0.37616763,-0.18669839,-0.42846715,-0.53772885,-0.5426485,-0.677428,-0.37628317,0.626443,-0.31051666,0.039706334,-0.20566641,-0.022745693,-0.10441499,0.49400592,0.27695438,0.21569659,0.15673392,-0.17576475,0.060313474,-0.4123137,0.22361173,0.26545212,0.20950979,0.6239434,-0.29565015,-0.029226651,0.43301487,0.4714336,-0.06228007,0.7803505,0.50563765,-0.13382648,0.18159239,-0.31748962,-0.28627622,-0.70923525,-0.37571797,-0.1575586,-0.25035027,-0.58196455,-0.119125225,-0.4232796,-0.8351443,0.45042852,-0.33390525,0.35962403,-0.010479701,0.45822254,0.42026138,-0.1856672,0.015589903,-0.105175644,-0.038527038,-0.48197377,-0.20523536,-0.7407808,-0.4405631,0.15197964,0.70517033,-0.041898977,-0.22159295,0.13103186,-0.13402648,0.16400032,-0.16002405,-0.23121409,-0.16087632,0.45783997,0.22655845,-0.66829205,0.39392146,0.33736858,-0.22485574,-0.57000226,0.3599185,0.6232765,-0.58863515,0.470842,0.4452504,0.12234994,-0.04572307,-0.6202163,-0.095838256,0.0855653,-0.08497783,0.26188335,0.32474864,-0.6864643,0.41755715,0.15719956,-0.24704552,-0.8378346,0.549173,0.02476926,-0.43900228,-0.10486793,0.355656,-0.1619228,0.11557921,-0.3854101,0.34946087,-0.6188963,0.11032017,0.4008913,-0.022427635,0.28049144,0.019905902,-0.17916864,-0.81496066,0.37317792,-0.5905035,-0.376806,0.37413788,0.21316051,-0.14535433,0.36299053,0.37898898,0.48089924,-0.22411136,0.213328,0.006523823,-0.21256156,0.58633536,0.46290585,0.45819834,-0.5380481,0.5287282,0.031700004,-0.31445524,-0.02969049,-0.15759511,0.3464055,0.060287118,0.20478071,0.16466142,-0.14939268,0.21435429,0.3409526,0.22129504,0.65876323,0.3090411,-0.007519815,0.44584584,0.052241772,0.34226513,-0.005633225,-0.522986,-0.0008491675,0.12685578,-0.10321781,0.42593512,0.007005289,0.3608947,-0.16134834,-0.24239586,0.12746552,0.36423588,-0.367522,-1.0339206,0.17934541,-0.02576862,0.8029652,0.93457884,-0.088846505,0.04506499,0.68971604,-0.27335957,-0.052971806,0.3772788,0.3619561,-0.6472454,0.70477957,-0.64466053,0.32092705,-0.08359919,0.00041747093,-0.22023441,-0.0035705466,0.38026595,0.7662339,-0.33572626,-0.057000175,-0.3829045,-0.0703784,0.16194208,-0.3592259,0.5189352,-0.39004615,-0.4094515,0.7315828,0.26972398,0.40953216,-0.026718894,-0.104763575,-0.010792524,-0.22829445,0.4347589,-0.0047748634,-0.0076975427,0.20561196,-0.67819715,-0.26607993,0.42945084,-0.28159383,0.10543198,0.025690848,-0.18268526,-0.01727879,-0.16382399,-0.22549069,-0.01341629,-0.9055242,0.060041886,-0.35998404,-0.2003829,0.401973,-0.24965046,0.29746985,0.13689287,0.007785145,-0.37098244,-0.11696967,0.4507127,0.6344531,-0.042951774,-0.2544999,-0.4852829,0.2920697,0.19732577,-0.3324119,0.20872398,0.0015649647,0.06293199,-0.71664613,0.65129876,-0.26215807,-0.253674,-0.1268486,-0.10600742,-0.28651896,0.8183832,-0.27441227,-0.16547604,0.041240077,-0.23454052,-0.23282565,-0.18533067,-0.039029032,0.09204415,-0.007098069,-0.1987368,-0.15555006,0.05239128,0.011186059,0.6258337,0.1164462,0.22911374,0.39110544,-0.009369795,-0.50694966,-0.14689963,-0.058909774,0.4439467,0.17443077,-0.10447845,-0.52127326,-0.5913936,-0.35064164,0.1795767,-0.016006196,0.20210437,0.07066723,-0.2435873,0.8510001,0.2065686,1.3412309,0.10401791,-0.39804545,-8.930763e-05,0.70803213,-0.17832167,-0.16873227,-0.50365907,1.1297301,0.5701405,-0.18518169,-0.12677571,-0.24794616,-0.07791919,0.17485283,-0.24950643,0.023771381,-0.034646336,-0.7493718,-0.28960487,0.19708174,0.49349153,-0.048921734,-0.1295266,0.13744795,0.35816178,0.20995569,0.54466337,-0.2581304,-0.3325186,0.49559283,0.037676882,0.024353495,0.19806974,-0.1826319,0.31940868,-0.71988577,0.18003927,-0.5057496,0.086438745,0.12419043,-0.5160077,0.34428975,0.084813856,0.4738834,-0.4150394,-0.43965206,-0.20219272,0.606765,0.1770962,0.30317342,0.51590586,-0.2848709,0.05411033,-0.0882681,0.7291882,1.5078692,-0.13846181,0.08398994,0.11762782,-0.36138716,-0.761116,0.5673453,-0.31755853,0.07356299,-0.2669526,-0.4626557,-0.60745937,0.2749655,0.13460824,-0.23625262,0.18428516,-0.6825159,-0.47196338,0.1001387,-0.28336892,-0.21360414,-0.33066207,0.2634165,0.8105922,-0.32825693,-0.4228027,-0.026037624,0.18836217,-0.23817484,-0.5169126,-0.15930773,-0.42418993,0.37449726,0.056616705,-0.32411483,0.060425565,0.2327938,-0.4755601,0.0512993,0.014675613,-0.41790447,-0.0727798,-0.23772933,0.16294658,0.76821685,-0.079105414,-0.09158959,-0.47570232,-0.50604177,-0.9427845,-0.44739744,0.57947445,0.0181901,0.036535166,-0.55757517,0.14877276,-0.38494006,0.27456886,-0.11947634,-0.66467285,0.3267212,0.20667733,0.60457724,-0.10881519,-0.54100627,0.16737337,0.21433872,-0.051129717,-0.5620811,0.36668417,-0.11499705,0.84924334,-0.020329192,-0.0034056653,0.18106775,-0.7063839,0.06534322,-0.23898083,-0.31023604,-0.6123926,0.19635399,740 +881,0.28626725,-0.22461474,-0.5470066,-0.22422199,-0.26713648,-0.11605403,-0.17150748,0.36445013,0.3904377,-0.17925721,-0.24140716,-0.11393613,0.10741057,0.3323984,-0.14592123,-0.7336232,-0.21371414,0.17188102,-0.8794443,0.598437,-0.57147336,0.26833454,0.22461861,0.286931,0.18827713,0.25559554,0.2298371,0.02666459,0.07482877,-0.15367268,-0.20606148,0.1691798,-0.41223666,0.20238025,-0.15278201,-0.3868597,-0.07646803,-0.5152163,-0.0024214287,-0.75147533,0.18608016,-0.872839,0.6652637,0.10374537,-0.22416759,-0.21879353,0.4151217,0.37546873,-0.29296747,0.06035344,0.24445534,-0.10153171,-0.16272669,-0.28122258,-0.1400512,-0.51023746,-0.5445024,0.12187835,-0.61814004,-0.2078983,-0.08206839,0.30469352,-0.22285569,0.051473964,-0.13086225,0.5304157,-0.28547335,-0.08559408,0.37401548,-0.17730564,0.27414903,-0.53663737,-0.07549441,-0.11336822,0.4181057,-0.0892337,-0.45393696,0.19543554,0.45295414,0.34090915,0.265252,-0.3537167,-0.3191791,-0.17857993,-0.15319894,0.32168412,-0.23438257,-0.3981932,-0.2737003,0.14632754,0.47035536,0.45886925,0.16689377,-0.29174,0.029937776,-0.1284511,-0.27077496,0.7328556,0.43195322,-0.39714137,-0.33268675,0.39911148,0.48265037,0.19226728,-0.2446344,-0.10905742,-0.044852298,-0.61969846,-0.1590506,0.1512612,-0.08772791,0.4443283,-0.15218888,0.07384223,0.71665686,-0.016603261,-0.1914394,0.27244782,-0.07469475,-0.29693273,-0.2419985,-0.15586801,0.24355693,-0.6586724,-0.10535566,-0.41900942,0.67171055,-0.11025679,-0.73101145,0.3522776,-0.6724417,0.14350685,-0.06953564,0.5880361,0.9211661,0.58088595,0.4247382,0.69506735,-0.18433523,0.070879705,-0.29091802,-0.25849357,0.15296541,-0.23125906,0.07256619,-0.68205285,0.042693418,-0.10741177,0.081355095,0.1723463,0.5974019,-0.4872901,-0.26709065,0.3332156,0.5559782,-0.25029948,-0.2908531,0.690497,1.0727915,1.1705495,0.05060512,1.2975472,0.18197274,-0.2219853,0.010926132,-0.3886744,-0.5974138,0.35597125,0.33118537,-0.57819206,0.49659395,-0.20898731,0.17095149,0.23893411,-0.26272935,-0.0019261712,-0.0122710345,0.3414472,0.028914591,-0.06512045,-0.42260984,-0.2955518,0.11664587,0.050489377,0.29468426,0.2250117,-0.2978964,0.3388233,-0.048940416,1.2832001,-0.0770991,0.03697085,0.10852874,0.4665996,0.3266475,-0.21166384,-0.0702159,0.3299367,0.26971483,-0.020486703,-0.4793038,0.25043035,-0.2761419,-0.4240781,-0.11940997,-0.3857778,-0.12258646,0.064433,-0.29129267,-0.23363326,-0.2339238,-0.48156628,0.4066973,-2.756627,-0.41153672,-0.21645463,0.23594709,-0.21792042,-0.3016454,-0.20238467,-0.5209007,0.33777335,0.2606557,0.50506204,-0.6626356,0.6688366,0.49925494,-0.6442426,-0.26953307,-0.76432234,-0.0034909844,-0.11530619,0.358645,-0.031351645,-0.22853385,-0.11615246,0.20549762,0.6754508,-0.024974281,0.11460793,0.52483445,0.38528237,0.029553572,0.6466508,-0.016938098,0.6484738,-0.2712516,-0.249328,0.35107318,-0.27573174,0.15188591,-0.03364561,0.029939817,0.65483683,-0.72687453,-1.0114379,-0.5995262,-0.11088309,0.9804244,-0.28870097,-0.32754502,0.113652684,-0.2585659,-0.2523706,0.19296838,0.6285442,-0.08875897,0.008136828,-0.7400623,0.066253625,0.011073257,0.24851108,0.04628865,-0.14490864,-0.4700582,0.70145065,0.012508909,0.66905946,0.22529407,0.2203349,-0.5780869,-0.3303477,0.17496608,1.052095,0.27012706,-0.04863499,-0.20583211,-0.3028694,-0.34692177,-0.10707011,0.13642268,0.5948007,0.5836175,-0.010819959,0.09483892,0.4863234,-0.14089122,0.018126288,-0.13411987,-0.20955978,-0.11482283,0.123998456,0.56111854,0.73125845,-0.06684541,0.66166306,-0.16683777,0.40835568,-0.19871962,-0.57778686,0.8006633,0.6453964,-0.0925425,-0.18189412,0.76270574,0.5245538,-0.22899051,0.5649677,-0.5333834,-0.39118254,0.4482832,-0.18536873,-0.43228474,0.15601832,-0.3434122,0.15381889,-0.9193614,0.081317745,-0.259219,-0.35476983,-0.47876844,-0.061253484,-3.036619,0.25257963,-0.099681765,-0.07228686,-0.26670554,-0.032286514,0.2603815,-0.76134807,-0.752285,0.061591163,0.25348982,0.6792963,-0.076518536,0.18381466,-0.15619387,-0.4305973,-0.066083394,0.2776476,0.024460107,0.24723762,-0.18466274,-0.37531015,0.02037821,0.01448375,-0.5363889,0.13257845,-0.68991786,-0.3238138,-0.012886806,-0.7517731,-0.28228238,0.56491816,-0.40330732,-0.058061976,-0.24736619,0.12819347,0.11326292,0.23977022,-0.040876526,0.09467425,0.28540966,-0.10537579,0.19302602,-0.18983275,0.36998698,-0.14251523,0.34616372,0.095689304,-0.040370304,0.328143,0.4839982,0.7251763,-0.19242652,0.98945695,0.43661252,0.05562726,0.12105236,-0.18740213,-0.17794402,-0.55160123,-0.24527395,-0.101899885,-0.44812003,-0.3599306,0.027866116,-0.12756662,-0.9692762,0.795312,0.091722585,0.25921702,-0.037383646,0.38851652,0.3917822,-0.17802112,0.18140012,-0.17064448,-0.26379302,-0.43520355,-0.24727201,-0.63389575,-0.42020023,0.091010034,1.0525223,-0.34123778,0.2030632,0.01748767,-0.1506329,-0.013805757,0.1642975,0.14925025,0.38478884,0.44718096,-0.17499894,-0.5598045,0.2154517,-0.13351704,-0.12439539,-0.3079219,0.26945296,0.777592,-0.6340507,0.516072,0.28849658,0.11172384,-0.3089993,-0.5820255,-0.12997933,0.07919123,-0.18595223,0.6356794,0.3180461,-0.8041435,0.57633215,0.4160844,-0.38309416,-0.8075352,0.4005972,-0.050462227,-0.25221696,-0.27879158,0.3688686,0.24794771,0.0016830564,-0.35034236,0.22275357,-0.29832536,0.115276694,0.0313394,-0.0978312,0.36337408,-0.13108845,-0.3913901,-0.80636233,0.15164892,-0.5633223,-0.4327229,0.3486253,0.15780784,0.017146775,0.32420692,-0.11185363,0.3787144,-0.34459016,0.15982582,-0.06657814,-0.22334568,0.1582425,0.39038816,0.33397555,-0.35461625,0.5000083,0.022546893,-0.0808822,-0.18795983,-0.2143534,0.44609237,-0.07255675,0.41991225,-0.1658359,-0.20794769,0.5892396,0.5890398,0.064337924,0.20632716,0.16627328,0.037620377,0.22774605,-0.022145666,0.20154274,-0.051285014,-0.44544443,-0.084843695,-0.12971698,0.13746367,0.5241099,0.2658749,0.24518925,0.054444045,-0.17110352,0.00017491977,0.13747878,-0.06004979,-1.313765,0.35460797,0.3331443,0.81070846,0.5652326,0.05378181,-0.21401651,0.7941654,-0.4642035,0.08835722,0.42725834,-0.031971898,-0.33837327,0.7146303,-0.65067804,0.40588555,-0.24399197,-0.05645114,-0.045936927,0.02071797,0.3031225,0.9711523,-0.28110236,0.10054064,0.02115637,-0.14359307,-0.007383103,-0.32891047,-0.035620224,-0.516251,-0.44617012,0.9472745,0.1877377,0.5337096,-0.23207796,-0.032592118,0.12257173,-0.12400498,0.2186592,-0.115101196,-0.089282274,0.12364966,-0.5381149,0.03827845,0.6152165,0.32908627,0.20219499,-0.10971209,-0.1820047,0.09758822,-0.10099089,-0.100613594,-0.17853542,-0.4935901,-0.06792634,-0.26136526,-0.46773982,0.5287139,-0.40143856,0.015916621,0.21887927,0.067968905,-0.05238773,0.3921851,0.19805978,0.5541838,0.16265689,-0.029042011,-0.15273996,0.20952566,0.008396084,-0.22063331,0.017670443,-0.48528895,0.193693,-0.71046036,0.6466715,0.005924868,-0.69892025,0.18863104,-0.13875116,0.080702074,0.5288122,-0.18715835,-0.13879174,0.118055224,-0.35652605,-0.2212921,-0.20494698,-0.24273236,0.3632504,0.18554713,-0.038102806,-0.23759957,-0.16428958,-0.08293802,0.46603176,0.032934297,0.46106446,0.27809685,0.10107871,-0.058568407,0.29939964,0.2013523,0.5063952,0.20174193,-0.06088124,-0.523125,-0.11358833,-0.2576889,0.11955916,0.0073857545,0.09019514,0.02118853,-0.22228843,0.8608311,0.026675263,1.4052097,0.008853704,-0.50898045,0.112610675,0.5403356,-0.11467584,-0.08805127,-0.37825742,0.90297264,0.51395977,-0.08311248,0.007491941,-0.6804982,-0.18131667,0.27924594,-0.41924438,-0.18672486,0.023592815,-0.6356864,-0.4883474,0.31701538,0.11792465,0.082585834,-0.1097393,0.13139035,0.030924683,0.105770715,0.32377622,-0.59028107,-0.019969612,0.13563396,0.27784967,-0.02679086,0.08795226,-0.5583822,0.33455077,-0.7939144,0.28823745,-0.32837328,0.15697126,-0.32861584,-0.41609013,0.19885711,-0.06569619,0.31907773,-0.21350186,-0.40109006,-0.055028643,0.5611033,0.016317388,0.1932504,0.6214792,-0.30209735,0.010136639,0.1477295,0.5729317,1.3450961,-0.34409395,-0.110148616,0.2031132,-0.40521368,-0.72723436,0.33991277,-0.36180368,-0.06201734,0.1314063,-0.46030894,-0.32110232,0.28120425,-0.016006986,0.24887522,0.091205396,-0.5505912,-0.10499573,0.18889605,-0.28577188,-0.15793826,-0.088435434,0.3533243,0.6279168,-0.1206763,-0.35713503,0.005576094,0.47734943,-0.18036611,-0.63400865,-0.12431123,-0.22090714,0.4317441,0.123575665,-0.17459811,-0.02858416,0.022312349,-0.52979535,0.02172789,0.3099781,-0.37620568,0.1947732,-0.3543667,-0.13760258,0.9622159,-0.15922584,0.10739233,-0.4742367,-0.57494795,-0.7765375,-0.29766232,0.03275695,-0.049952578,-0.0879941,-0.48970258,0.033732604,-0.14014693,-0.30059096,0.23921819,-0.50253487,0.47740662,0.08704301,0.48901424,-0.31237385,-0.9574817,0.15697728,0.15185426,-0.032248348,-0.7371171,0.6260594,-0.029718032,0.99303716,0.049343973,-0.07604881,0.13412437,-0.6392962,0.13644935,-0.29971367,-0.08074298,-0.7528227,-0.05530856,756 +882,0.5501302,-0.29499832,-0.7997012,-0.059677105,-0.3441426,-0.08621061,-0.23474129,0.76438886,0.36146072,-0.55728656,-0.27155027,-0.05562955,-0.193349,0.49650452,-0.30901578,-0.36763892,-0.026831975,0.23733337,-0.60443956,0.5240407,-0.2830086,0.23704989,0.108830534,0.6543435,0.4554721,0.047202136,0.016866246,0.22875535,-0.14519626,-0.44345236,0.040270906,0.28527248,-0.76660275,0.28470194,-0.39467096,-0.702044,-0.14337264,-0.7215176,-0.29291028,-1.0028026,0.3218408,-1.00397,0.7814545,-0.07026499,-0.48209378,0.023490084,0.18376203,0.3293096,0.012532148,-0.120108806,0.16778977,-0.10391333,-0.15220888,-0.14432655,-0.33282706,-0.19175208,-0.60244215,0.074847676,-0.33545038,0.17077316,-0.1761452,0.25431776,-0.14044806,0.27900222,-0.07578056,0.48809013,-0.36074793,0.05211374,0.087637894,-0.13394862,0.35053065,-0.67313856,-0.29330215,-0.30511823,0.2859947,-0.34741998,-0.5442261,0.4513453,0.1697069,0.5377274,-0.074371405,-0.21181774,-0.33824828,0.17247152,-0.14692664,0.36030185,-0.5385136,-0.43018675,-0.1677471,-0.01657268,0.7930533,0.21427192,0.1458927,-0.33437046,0.027183488,-0.18666661,-0.24805407,0.5268937,0.43584898,-0.24164647,0.00045109168,0.118403636,0.46727744,0.41015795,-0.14999889,0.11898834,0.024090732,-0.69065,-0.17448853,-0.06806572,-0.10199205,0.47956872,-0.035829287,0.22207116,0.5215857,-0.2674044,-0.22809722,0.36076674,0.18859641,-0.1518478,-0.24502082,-0.605619,0.5044497,-0.5570338,0.19367708,-0.20310418,0.65767485,0.17553307,-0.8836977,0.16823761,-0.61758405,-0.03250854,-0.0039984137,0.38076723,0.82967305,0.78426033,0.25632954,0.71347004,-0.28634295,0.058513153,-0.16238277,-0.06685401,0.11183307,-0.3625894,-0.29963717,-0.3996934,-0.1239659,-0.2931452,-0.27420542,0.30925536,0.54442215,-0.55554754,-0.19499142,0.10620418,0.5623714,-0.21954036,-0.018079937,0.98936033,0.93984884,1.0404358,0.1354965,1.2343636,0.042290032,-0.15807004,0.10750049,0.33805636,-1.0199047,0.46801034,0.454398,-0.79332256,0.41488075,0.009837349,0.07796341,0.2652907,-0.65821373,-0.16771561,-0.10507857,0.037196305,-0.04569983,-0.09948397,-0.44891474,-0.42848125,0.079283014,0.19795358,-0.09709387,0.3776478,-0.2979356,0.6623276,0.11023531,1.425663,-0.08868394,-0.07491142,0.0750185,0.5307967,0.15487625,-0.19767638,-0.31771705,-0.01146848,0.28247342,0.2264343,-0.48413542,-0.059508875,-0.16095008,-0.3381894,-0.18758738,-0.22968848,-0.2585764,-0.28357628,-0.3914174,-0.49873948,-0.06663352,-0.3543161,0.24364243,-2.19289,-0.20663603,-0.06847447,0.2982538,-0.24248946,-0.4910793,-0.37835148,-0.5066617,0.6158144,0.26399973,0.55910623,-0.5331251,0.28928486,0.4460517,-0.7139657,-0.09762754,-0.64990854,-0.031704288,0.09774315,0.18951863,0.003728124,-0.20979977,0.0010097921,0.07859378,0.5377485,0.015725533,0.0072744675,0.43847993,0.40700102,-0.058556315,0.471048,-0.23404486,0.5417124,-0.75463194,-0.38769293,0.47291613,-0.39667702,0.028440028,-0.13778898,0.13886596,0.6655836,-0.8188768,-1.0703505,-0.7428951,0.055443767,1.3278145,-0.10307864,-0.5439237,0.26292804,-0.59991604,-0.2204758,0.07606877,0.5340732,-0.27610898,0.078830354,-0.8359776,-0.2621806,-0.014264159,0.2220825,-0.04687147,-0.073681325,-0.42995152,0.48318422,-0.038374294,0.46932364,0.40189353,0.00047809383,-0.4686954,-0.65051717,0.21252258,1.0741137,0.50137895,0.290375,-0.30409357,0.069569536,-0.4831659,0.026136832,0.04229098,0.5506889,0.75451237,-0.12170557,0.054617748,0.23207204,0.11294036,0.02732479,-0.1865433,-0.32225862,-0.3537087,0.17885494,0.82436544,0.7252714,0.15402777,0.41404667,-0.080177106,0.5159748,-0.051180985,-0.48064947,0.5566165,1.0420967,-0.2171281,-0.44913885,0.88444257,0.43827263,-0.3112111,0.6489646,-0.50147194,-0.5756731,0.31403553,0.018921463,-0.553538,0.20156641,-0.40266943,0.24810743,-0.7269397,0.2673119,-0.40530238,-0.50447357,-0.63865125,-0.058372963,-2.2149317,0.27496895,-0.18959297,-0.12355975,-0.19565707,-0.44069925,0.3834313,-0.42703643,-0.91699165,0.052734118,0.023209816,0.9571964,-0.12999979,-0.03218317,0.0048758336,-0.44066295,-0.37691298,0.03259878,0.49347094,0.39691043,-0.009317249,-0.51942635,-0.23677981,-0.21622209,-0.4493638,-0.19584936,-0.7831809,-0.5500354,-0.10643947,-0.70911145,-0.2218471,0.6961019,-0.41962805,-0.00066748384,-0.121365346,0.082564995,0.05250467,0.28278244,-0.1898594,0.17541791,0.15793955,-0.18862696,0.22352688,-0.0560627,0.21765478,0.12271273,0.22895563,0.13641413,-0.28153107,0.5155503,0.7052476,1.1105012,-0.32448444,1.2354244,0.58713627,-0.031479508,0.14746954,-0.24690701,-0.6353645,-0.5939238,0.105001956,0.12913884,-0.5019325,-0.05249126,0.25616026,-0.3781731,-1.0146612,0.98494226,-0.05623087,-0.047128458,0.10031799,0.21457963,0.4095678,-0.35095406,-0.08765599,-0.13413464,-0.06308449,-0.46221042,-0.37079707,-0.57467633,-0.5487415,-0.3944908,1.4543427,-0.071038686,0.26298723,0.4046283,-0.07583956,0.27031744,0.1563914,-0.12299657,0.13460985,0.64877135,0.0030022338,-0.7382223,0.19878198,-0.20279115,-0.09488953,-0.54260063,0.34161142,0.6844644,-0.7381808,0.35292864,0.39303717,-0.03865764,-0.34671748,-0.5197199,-0.026640834,-0.10469089,-0.16457398,0.5292551,0.40365848,-0.7330305,0.50956225,0.46656606,-0.26896468,-0.9163387,0.4223604,-0.007909159,-0.16072784,-0.0984625,0.51638514,0.073502555,-0.08429965,-0.16076614,0.23490544,-0.22248407,0.29402456,-0.047412544,-0.12598813,0.19109048,-0.3724636,-0.0567798,-0.9034144,0.27182028,-0.5322852,-0.38469735,0.35427317,-0.06774848,-0.016148796,0.24668671,0.17592971,0.330558,-0.31047782,0.037920844,-0.32915968,-0.46397948,0.5183525,0.53389233,0.679246,-0.42914763,0.6305919,0.061750934,-0.1127507,-0.026523957,-0.090503804,0.45347032,-0.2025553,0.32201096,0.01211441,-0.30961785,0.16017492,0.7575248,0.22453974,0.32845,-0.053771228,0.038631424,0.068710424,0.23171826,0.37773368,-0.040608395,-0.7514115,0.07326419,-0.34038082,-0.083862185,0.67048067,0.14855777,0.19934554,-0.17519695,-0.3763349,-0.07281908,-0.06432644,-0.03410892,-1.7433435,0.48407117,0.006243333,0.8072777,0.45965865,0.17155845,-0.061151113,0.8323403,-0.12362108,-0.025299996,0.4583355,0.07758749,-0.30205438,0.48201323,-0.626913,0.7070916,0.06506781,0.12621738,0.09585565,0.016728014,0.6243648,0.937376,-0.09539792,0.20294033,0.15951385,-0.35591945,0.09067183,-0.4560574,-0.09265137,-0.45412692,-0.29478624,0.9733178,0.42908776,0.4371269,-0.25253972,0.065261565,0.16098273,-0.23526911,0.18946779,-0.030186912,-0.02047042,-0.34855554,-0.544904,0.20815443,0.62272435,0.3470631,0.14014721,0.044618946,-0.1298242,0.3474461,0.014298022,0.017561093,-0.2860414,-0.83758765,-0.15520756,-0.7747695,-0.3152081,0.241229,-0.10872086,0.07439137,0.26734856,0.12945977,-0.31167036,0.6505943,0.17550169,0.7525108,-0.047542322,-0.22700869,-0.011938115,0.4049666,0.13392,-0.35285416,-0.1658533,-0.25987688,0.03396882,-0.42613852,0.31844124,-0.093079954,-0.420518,0.23281759,0.108994566,0.07172995,0.35023093,-0.17863327,-0.0015782863,0.075730756,0.09921395,-0.31273764,-0.53578013,-0.30335346,0.08565495,0.184936,-0.016817212,-0.19672269,-0.19234316,-0.09646685,0.59759414,-0.12209157,0.4827172,0.4846377,0.2246776,-0.43707874,0.042888712,0.11528752,0.81191325,-0.12825252,-0.2434137,-0.52821064,-0.22170217,-0.3445219,0.39215228,-0.06328387,0.30932793,0.15491062,-0.33357084,0.7244746,-0.0064231507,1.0817081,-0.13743386,-0.43744788,0.007959385,0.4012312,-0.13957553,-0.2209161,-0.3498484,0.95508987,0.40866053,-0.29847673,-0.16149853,-0.5188003,0.11251547,6.273389e-05,-0.3068424,-0.19593722,-0.20221746,-0.5595776,-0.21119677,0.26924,0.3915247,0.3299216,-0.24964742,0.31476125,0.41916394,0.005621677,0.09022536,-0.31506225,-0.16528983,0.4345202,0.34584093,-0.208824,-0.008790622,-0.5461722,0.27298692,-0.54221606,-0.054442823,-0.3552666,0.14899999,-0.2557125,-0.35282823,0.23959333,-0.023542449,0.2924941,-0.34842148,-0.18410747,-0.22242396,0.56072074,0.02131041,0.17744763,0.5526813,-0.24001892,0.0011756172,-0.11826936,0.48063818,0.8205004,-0.16002552,0.080815725,0.24335258,-0.14880936,-0.339612,0.3052958,-0.3976287,0.30737984,0.14086038,-0.13523532,-0.423422,0.22300048,0.19014077,0.05451094,-0.07816166,-0.93251467,-0.0075847507,0.37908304,-0.12866054,-0.11712649,-0.51841503,-0.014357935,0.29414544,-0.054249804,-0.53564364,0.23343949,0.34232214,-0.046937782,-0.44723102,-0.08546666,-0.31770194,0.16364808,0.21480648,-0.5655479,-0.12104043,-0.05743842,-0.6434229,0.042667832,0.120687984,-0.40468845,0.019746976,-0.3587862,0.11704421,0.98842573,-0.19905104,0.40443566,-0.1307165,-0.6245394,-1.0176816,-0.05978049,0.30053118,0.3902811,-0.01917255,-0.88141614,-0.056628466,-0.3169249,-0.578819,0.074375205,-0.14151973,0.5289805,0.19490309,0.81411797,-0.2778664,-0.7270453,0.5257749,-0.015662244,-0.095504306,-0.32587793,0.4188868,0.23180483,0.85839844,0.02266545,0.04572451,0.38057676,-0.6645851,-0.094209455,-0.07276412,-0.11756014,-0.54394865,0.023466945,764 +883,0.19143824,0.0029545177,-0.5143583,-0.06805229,-0.080997206,0.0086718155,-0.15491705,0.25907633,0.020569637,-0.7418112,0.0058336356,-0.21903183,0.1040032,0.31768847,-0.14141634,-0.58709025,0.16714485,0.30548254,-0.3977389,0.2609787,-0.5293005,0.3150814,0.113782585,0.029461175,-0.2979574,0.16643526,0.32347748,-0.28329012,-0.04693122,-0.20309125,0.036840502,0.2124294,-0.67932075,0.37037602,0.17786543,-0.30705956,0.05141763,-0.21429758,-0.24921815,-0.6509704,0.2697966,-0.7830995,0.44238248,0.103567146,-0.1514284,0.08935714,0.1308154,0.3839352,-0.22924255,0.18221502,0.2700034,-0.35189512,-0.23020448,-0.28992748,-0.2107876,-0.31886947,-0.37848237,-0.05889967,-0.5756491,-0.292684,-0.35765028,0.18007441,-0.41394544,-0.014680435,-0.28764173,0.40159285,-0.3918383,0.04106976,0.17181103,-0.22551633,0.3721036,-0.36946595,0.011288461,0.014785434,0.21377401,-0.45109043,-0.17878012,0.234251,0.23679297,0.55837387,0.027077079,-0.08675174,-0.17047392,-0.25507963,0.40094578,0.6795134,-0.1945933,-0.43155566,-0.17586882,-0.055649925,-0.11646289,0.21767528,-0.13764691,-0.5524603,-0.042115528,0.11422759,-0.28574666,0.29699066,0.5282393,-0.22814357,-0.07353946,0.36208192,0.43887916,-0.21965729,-0.05893768,0.22891219,0.093420334,-0.56338054,-0.29778662,0.21461874,0.075677864,0.32551035,-0.13265051,0.3217842,0.6890053,-0.33582163,-0.046845973,-0.04643831,0.024927119,0.039195523,-0.3496431,-0.10015416,0.35389265,-0.63377696,0.014304896,-0.25262973,1.0857753,-0.062272448,-0.8243818,0.4124863,-0.48031798,0.042066116,-0.21614565,0.7566708,0.37229395,0.42967644,0.07177076,0.71797395,-0.65032464,0.12779218,-0.2274216,-0.6697591,-0.0054218546,0.02977853,-0.120280206,-0.28784153,-0.019656038,0.22624974,0.15823103,-0.091795,0.36473283,-0.45869836,-0.12837733,0.004128317,0.80914587,-0.43706107,-0.024625102,0.42091796,0.99561286,0.6932876,0.18458839,1.4066544,0.078203835,-0.21619384,-0.044172063,-0.11997294,-0.77924496,0.22947466,0.26657128,0.11744233,-0.0074152946,0.27621344,-0.16926236,0.30574408,-0.3213742,-0.061501905,-0.26723838,0.30778775,-0.15927398,-0.15036477,-0.32787,-0.058517616,0.12941886,-0.023540422,0.055977214,0.17783348,-0.21306555,0.23609824,0.10036739,1.5200691,-0.22905819,0.3575444,0.16279717,0.30311203,0.1535291,-0.008802131,-0.05817799,0.357407,0.36510363,0.14673601,-0.59300476,-0.024708895,-0.07088473,-0.6103044,-0.12600724,-0.3262881,0.06694936,-0.19904493,-0.38926768,0.013087829,0.025023868,-0.4911755,0.43845698,-2.6704338,-0.07629693,-0.019862244,0.39859393,-0.24601345,-0.17724384,-0.26043728,-0.31468105,0.45793197,0.3758371,0.5958782,-0.6242196,0.44910014,0.4343339,-0.20032065,-0.102276206,-0.6572806,0.13434143,-0.20717794,0.28441775,0.034492772,-0.15598498,-0.134636,-0.04214816,0.4274707,-0.39285776,0.06614327,0.30407324,0.28238508,0.30816546,0.41697276,0.017820854,0.44257668,-0.49078622,-0.20807384,0.22193259,-0.31232843,-0.020485321,0.07674664,0.12200009,0.093480416,-0.4202588,-0.90681314,-0.62831837,-0.44812799,1.0004317,-0.44966188,-0.40487745,0.42778516,0.115935385,-0.36285767,-0.08143964,0.3797338,-0.09360846,0.14357202,-0.88324815,0.2032912,-0.15858714,0.5072132,0.08269237,-0.075823426,-0.45410714,0.49947104,-0.24369824,0.47578764,0.5515119,0.02085792,-0.450078,-0.4575816,0.0061329044,1.2176296,0.006334821,0.29088488,-0.1456964,-0.1326512,-0.1271748,-0.055688057,0.12450298,0.5733015,0.8469288,0.096188165,0.05631649,0.416942,0.0364528,-0.10085019,-0.14280836,-0.42906198,-0.10975174,-0.13077898,0.61514705,0.3408421,-0.11436934,0.4070013,-0.07847228,0.22941963,-0.25104418,-0.38856295,0.39071092,0.8147252,-0.073831,-0.20075552,0.6061862,0.5618402,-0.35365084,0.39432845,-0.52923,-0.429044,0.46439597,-0.21426864,-0.43462637,0.28389212,-0.3977014,0.22698481,-0.9014346,0.46260083,-0.3596512,-0.75764155,-0.38391313,-0.19857223,-4.3413033,0.27167818,-0.28808877,-0.2163002,-0.061933775,0.07914213,0.1965944,-0.31713295,-0.32462582,0.058968198,0.13958687,0.52576,-0.060491737,0.1128849,-0.3898282,0.09063134,-0.035591442,0.21388905,0.15096192,0.034264684,0.021411398,-0.43515038,-0.17472823,-0.13496034,-0.33400583,0.12313304,-0.6055329,-0.3718674,-0.13264047,-0.6362019,-0.62825984,0.65140975,-0.5580724,-0.06703458,-0.24928375,0.079357065,-0.08889092,0.52244717,0.12564924,0.123129666,-0.15935744,-0.05772753,-0.27284274,-0.26056775,0.33193088,-0.038760874,0.2930901,0.43231884,-0.29432604,-0.13327712,0.49543676,0.43008718,0.2039731,0.7989359,0.29423153,-0.15262496,0.24839342,-0.33394256,-0.12839155,-0.6863673,-0.41030502,-0.14057551,-0.5025528,-0.31388822,-0.009621009,-0.27973086,-0.74705344,0.7229158,0.0055327513,-0.03838274,0.008590606,0.45315397,0.19571666,-0.02753477,-0.26378933,-0.15330069,-0.12387558,-0.4555724,-0.36190784,-0.7757695,-0.455184,0.020035654,0.9348199,-0.18311255,0.16651848,-0.0076007843,0.071739174,-0.056754667,0.26635233,0.15208636,0.42433223,0.4633337,-0.10809764,-0.568796,0.51941395,-0.29813752,-0.18615071,-0.6066691,0.05497474,0.65928626,-0.81677514,0.58424217,0.4253026,0.17807426,0.0017379125,-0.42552006,-0.29684404,0.05204296,-0.24382158,0.42405748,0.0836012,-0.8399091,0.49965528,0.50060546,-0.1057286,-0.6658017,0.41590512,-0.080998234,-0.21818143,0.10734876,0.4663082,-0.2503201,-0.03877911,-0.15647227,0.057319973,-0.45418414,0.28458834,0.1763721,-0.12899356,0.680219,-0.23952298,-0.2249114,-0.4773887,-0.11713666,-0.52713376,-0.073294856,0.09083938,-0.07608755,-0.061436307,0.38195372,-0.25786754,0.5467706,-0.24994235,0.02671752,0.007930954,-0.22791643,0.36683226,0.52557147,0.14542009,-0.44881842,0.6869824,-0.047672063,-0.036828395,-0.5977459,0.27632543,0.5825517,0.11859099,0.552198,-0.085423164,-0.13251828,0.44064614,0.8974659,0.3566668,0.6832795,0.09543613,0.047585864,0.2554278,0.28251973,0.15843146,0.22510625,-0.36049667,-0.009756575,-0.08797634,0.1889301,0.43669197,0.14626698,0.6517418,-0.1833124,-0.3330975,0.023553243,0.4414438,-0.11762414,-0.95502424,0.53606457,0.21584642,0.44631502,0.47271132,0.09154748,0.16889149,0.43765202,-0.16667344,0.29977897,-0.08931557,-0.17175715,-0.41190553,0.6442606,-0.7867945,0.2591862,-0.15298693,0.05332819,0.20938899,-0.1541375,0.32033053,0.7574547,0.11846942,0.11957175,-0.04934889,-0.19967718,0.21500237,-0.40472603,0.1963197,-0.31860444,-0.2979665,0.6058542,0.4624056,0.28302446,-0.23936372,-0.08194072,0.07624806,-0.05526333,0.07769571,0.032043505,0.1483682,0.12272983,-0.7055146,-0.33361295,0.6875017,0.20130949,0.030007198,0.16272113,-0.14528634,0.5239514,-0.11344224,-0.14925404,-0.00919101,-0.43253174,0.2988649,-0.23723674,-0.33840194,0.15025316,-0.32772896,0.41344497,0.12683332,-0.010333012,-0.5070012,0.38119063,0.39464244,0.6609995,0.11727503,-0.25206268,-0.31039163,0.06710323,0.2151862,-0.18030298,-0.12962146,-0.34048736,-0.08345375,-0.81607324,0.32250333,-0.016297817,-0.22628884,0.47122276,-0.059299156,-0.11018399,0.5218548,0.08666637,-0.09030261,0.2240632,-0.09607952,-0.18381767,-0.14740431,-0.18140991,0.16610955,0.11464167,0.10436594,0.005990992,0.08923956,-0.13254307,0.2308361,-0.030166546,0.17366214,0.1398496,0.37928542,-0.29087546,-0.0012432175,0.05573107,0.5629918,-0.083108224,0.047354598,-0.03271738,-0.4092275,-0.15363501,-0.16424003,-0.13368641,0.34705472,0.151464,-0.4396373,0.93059444,0.0641926,0.95754147,0.07673879,-0.27326158,-0.07024009,0.49882755,0.1105293,0.053139057,-0.3513722,1.0505409,0.6661196,-0.20637535,-0.28436896,-0.27270612,-0.17686518,-0.045914922,-0.2186396,-0.34298792,0.09273527,-0.516851,-0.2774721,0.3026936,0.46111655,0.062078595,0.008698548,0.07743395,0.27523708,0.034882776,0.034941483,-0.58895576,0.1876362,0.13474174,0.38678396,0.19330412,0.07299795,-0.36289778,0.44602096,-0.67624944,0.13277774,-0.23016052,0.00022388746,-0.03967753,-0.14813061,0.21358334,-0.037313763,0.30851173,-0.232081,-0.02619583,-0.11894729,0.3519853,0.2648435,0.23823838,1.0251057,-0.056644518,0.22346406,0.1505828,0.46919253,1.0412378,-0.33982718,-0.22405659,0.4916174,-0.33372033,-0.63241154,0.1705085,-0.2861052,0.024550894,-0.07515108,-0.51175445,-0.25229096,0.16320378,0.06316953,-0.1399271,0.18913032,-0.57463247,-0.006347418,0.27769798,-0.3206797,-0.373559,-0.30899158,0.37169656,0.64318943,-0.17542411,-0.23137371,0.07812903,0.29448035,-0.33533633,-0.6130858,-0.095003776,-0.3280778,0.26396587,0.10764023,-0.23111422,0.066763006,0.14203778,-0.32197967,0.12113094,0.2920202,-0.29970846,0.16631475,-0.1600581,-0.17779209,0.6322186,-0.17070915,-0.09527681,-0.714557,-0.42863747,-0.96279246,-0.21940385,0.69326764,0.10712912,0.09800493,-0.33923936,-0.20828016,0.061163913,-0.19105603,-0.12129412,-0.35692653,0.45369616,-0.015550184,0.44048992,-0.038515054,-0.8712497,0.1291679,0.26725063,-0.28658178,-0.55673033,0.46492323,-0.07809676,0.67738706,-0.008882775,0.1236221,0.49252808,-0.6240459,0.038361847,-0.288656,-0.24095248,-0.773875,-0.13620336,776 +884,0.46654415,-0.3897917,-0.5540022,-0.11958653,-0.10412725,-0.05734822,-0.3221345,0.27127096,0.18209922,-0.65916973,-0.27687928,-0.20611751,0.1287729,0.33311933,-0.2094592,-0.563933,0.122911416,0.16611,-0.3775154,0.54020166,-0.55368924,0.08952978,0.12079849,0.37177682,-0.06049937,0.12567171,0.30048507,0.051441163,-0.034221902,-0.3110649,-0.12677461,0.043451507,-0.86257833,0.19509673,-0.14080948,-0.570847,-0.07115794,-0.43650305,-0.3237689,-0.6879358,0.28649333,-1.1387855,0.41242492,0.086547375,-0.30229768,0.2018547,0.13954397,0.35422763,-0.19538136,0.060920894,0.07705895,-0.32949075,-0.041354354,-0.35319754,-0.014758766,-0.35213915,-0.5007421,0.039520506,-0.4385967,-0.1788642,-0.19967651,0.06868634,-0.2653309,0.23336722,-0.2037311,0.31259403,-0.4558114,-0.16580124,0.4507098,-0.17137198,0.4734583,-0.3664453,-0.12902209,-0.10797871,0.13503255,-0.21430774,-0.265478,0.14446513,0.1615358,0.52276605,-0.042783093,-0.1699996,-0.1050873,-0.05432613,0.2792434,0.43779135,-0.23222047,-0.4617912,-0.41055655,-0.15989752,0.12183344,0.16983151,0.10952676,-0.31136012,0.015033628,-0.10338076,-0.39100328,0.4161675,0.6124615,-0.37933314,-0.07137648,0.25334316,0.55886453,0.06931973,-0.23018913,0.062174525,0.15778026,-0.6222722,-0.26624882,0.16350175,-0.19261521,0.7135386,-0.251189,0.27902028,0.5688763,-0.21118538,0.033934508,0.14318709,-0.011808514,-0.20006554,-0.19854195,-0.29768655,0.48487115,-0.5496768,0.18530814,-0.3022946,0.8036377,0.2583537,-0.6125195,0.38701543,-0.5281574,0.20103581,-0.21637274,0.64859974,0.60986143,0.35481846,0.29153445,0.8033908,-0.59095633,0.11790743,-0.24435918,-0.23267679,0.08406714,-0.20687628,0.10485951,-0.33307245,0.011265566,0.002859195,-0.03799814,0.04787535,0.343999,-0.5350009,-0.10124791,0.18136357,0.67689687,-0.23314433,0.032629896,0.78463084,1.1753228,1.1231177,0.18905301,1.0980448,0.31776318,-0.1599257,-0.12247112,0.24180312,-0.69090587,0.24912907,0.39340675,0.45610538,0.1817834,0.253278,0.02173706,0.49376848,-0.511446,0.07140238,-0.18068661,0.3155059,-0.13342969,-0.028416684,-0.32250705,-0.1727676,-0.028870722,0.08285363,-0.09453299,0.3065066,0.058688883,0.617512,0.18892424,1.208528,-0.17183834,0.086090125,0.03956464,0.3648477,0.20069902,-0.17492366,0.041885603,0.05267115,0.48165667,0.0840937,-0.5526518,-0.033944104,-0.048748504,-0.4359374,-0.15875313,-0.24173777,0.016508058,-0.16571648,-0.5463235,-0.10063741,-0.027809232,-0.07918104,0.47996604,-2.73021,-0.10375633,-0.23749131,0.23831117,-0.27083084,-0.24344611,-0.13030107,-0.5240313,0.50933677,0.40031013,0.48937592,-0.7095895,0.47932792,0.4074587,-0.42459098,0.004985945,-0.8296421,-0.12406606,-0.2456706,0.31690723,0.1629365,-0.08916112,0.035708454,0.1401978,0.5275509,-0.02873838,0.30208337,0.12753855,0.30512926,0.013119389,0.51073664,0.13825563,0.48701477,-0.5236246,-0.16934283,0.4479724,-0.3715203,0.19416232,-0.24768656,0.16813238,0.41766596,-0.40767384,-0.9105882,-0.8206873,-0.34136668,1.1501561,-0.33285248,-0.62654734,0.18434303,-0.15412365,-0.28114685,0.01829953,0.34525323,-0.050648104,0.047898944,-0.86086226,0.023936652,-0.10772106,0.3077658,0.06359703,-0.22179882,-0.47557807,0.79785424,-0.19693823,0.34579912,0.5911606,0.1640573,-0.1675428,-0.29387715,-0.012059969,0.96331054,0.3710628,0.2015775,-0.30103174,-0.12550735,-0.23827223,0.034535225,0.116157055,0.6399741,0.8086501,-0.15020911,0.15483792,0.2988453,0.031450994,-0.07989337,-0.12119485,-0.43245658,-0.023335448,-0.0015698522,0.7802898,0.8596375,0.05770284,0.31414056,-0.14763391,0.29796574,-0.22210163,-0.6191141,0.44910178,0.638542,-0.057907913,-0.28345793,0.6845471,0.59927696,-0.2123713,0.5010279,-0.68641925,-0.5798463,0.318863,0.06926325,-0.41642264,0.236956,-0.4177643,0.33980313,-0.8157575,0.36157367,-0.49540067,-0.50752276,-0.5146435,-0.17919354,-3.8421762,0.39934182,-0.23372842,-0.15566127,-0.0658225,-0.2385674,0.38593683,-0.6184223,-0.45558825,0.34895155,-0.04107591,0.6326301,-0.033351768,0.08522451,-0.33778057,-0.07980517,-0.17112629,0.100987464,0.22363722,0.05859537,0.008474181,-0.4322369,0.04060178,-0.15930745,-0.23369056,-0.027942007,-0.656699,-0.49673605,-0.14030962,-0.4838822,-0.5380695,0.5151393,-0.32003602,-0.053756554,-0.2395368,0.016413152,-0.31968215,0.36141348,0.057499517,0.2540839,-0.19267286,0.0042999783,-0.13320921,-0.2673207,0.1068331,0.112667106,0.020299604,0.2905132,-0.27843517,-0.007713089,0.45909333,0.598443,0.035008248,0.8747291,0.5392906,-0.048475802,0.2955431,-0.018946597,-0.21664132,-0.5995284,-0.34219518,-0.2288912,-0.45347306,-0.5317596,-0.0041389987,-0.24119599,-0.687689,0.7550567,0.23757036,0.07548595,0.009575578,0.29949823,0.41674995,-0.23299085,-0.12448899,-0.035326164,-0.13192748,-0.6371438,-0.32555962,-0.7805175,-0.29028234,-0.0100781815,0.89624923,-0.21857099,0.10087329,0.1695898,-0.17962931,0.06999134,0.37904644,-0.08541716,0.06092554,0.6062929,-0.02259325,-0.7513563,0.47229037,-0.11134511,-0.30229077,-0.7438057,0.1588345,0.7609338,-0.7921342,0.68701744,0.6231293,0.065522805,-0.053135216,-0.57750607,-0.326665,-0.11424901,-0.4088105,0.40134814,0.26554647,-0.8669648,0.42267525,0.35708353,-0.30333626,-0.71580285,0.6294416,-0.054787476,-0.27441764,-0.033847917,0.23802245,-0.081760146,0.13141073,-0.122390814,0.066632874,-0.52834225,0.15473892,0.27054703,-0.041637905,0.10987239,-0.1441947,-0.052636266,-0.641122,-0.0828202,-0.60805017,-0.08907768,0.12698738,-0.1240441,-0.08371212,0.22084779,0.056166593,0.3857111,-0.28792262,0.16348644,-0.124975346,-0.3713118,0.42259455,0.5407247,0.357541,-0.42906496,0.7887593,0.08562238,-0.03339589,-0.28852132,0.02816579,0.52388424,0.06292734,0.42258272,-0.10630676,-0.10654276,0.11494348,0.87439984,0.16036464,0.6597062,0.040467534,0.22954708,0.3039215,0.27534345,0.23888607,0.10068462,-0.4629484,0.0014285768,-0.18867107,0.11032484,0.351029,0.14377208,0.5729723,0.011757473,-0.23761773,-0.0075822356,0.1675986,-0.05573422,-1.3202952,0.41960612,0.0687075,0.5985579,0.62053305,0.020302305,0.0047971536,0.5545574,-0.35450873,0.089096904,0.08640006,-0.0032644917,-0.36255932,0.4780011,-0.7689903,0.29138976,-0.17017566,0.03203006,-0.043990787,0.05324006,0.467852,0.7896159,-0.22483869,0.16532362,-0.08320389,-0.26224357,0.10987842,-0.47700652,-0.1503926,-0.5707664,-0.35628486,0.80725807,0.5983148,0.5719722,-0.1359703,-0.10619348,-0.01771341,0.0017832468,0.036929592,-0.024820372,0.08063519,0.023144953,-0.7448876,-0.22297359,0.6627141,-0.094287165,0.23227108,0.034413982,-0.31766835,0.40486047,-0.17603059,-0.1768192,-0.09398142,-0.72890323,0.0676812,-0.4745455,-0.30546367,0.5197951,-0.4125389,0.2914684,0.21343641,0.05722277,-0.12740426,0.19939487,-0.006108556,0.6720197,-0.035250206,-0.27256048,-0.39545774,0.20251215,0.33733058,-0.20909844,-0.04088208,-0.32589617,0.05704856,-0.64716226,0.3877089,-0.1661158,-0.18554282,0.3090242,-0.096941374,0.06444779,0.6811126,-0.114088304,-0.19384956,0.28251186,-0.21170896,-0.3337692,-0.31116915,-0.2127086,0.31957823,0.052654058,0.13256471,0.1251105,-0.0028093357,-0.08908057,0.33289194,0.12563562,0.34344852,0.42846978,0.09986061,-0.39709893,0.015366892,0.11921369,0.5418162,-0.12863529,-0.24020308,-0.23603112,-0.74265355,-0.31259227,0.10964503,-0.009481987,0.3836412,-0.07873813,-0.020492157,0.9754656,0.023239413,0.92367953,0.00043750057,-0.49174497,0.015453092,0.44967508,-0.07336373,-0.0633248,-0.3498471,0.8072221,0.3694115,-0.15013342,-0.044520218,-0.4457806,-0.021176739,0.07446516,-0.1178976,-0.19564192,0.0143891275,-0.67106587,-0.16670747,0.21468802,0.4545661,0.2794928,-0.07662523,0.3323653,0.2892693,0.0767636,0.27523196,-0.6200038,-0.20073126,0.35088396,0.33236423,-0.01277813,-0.0011443123,-0.21320315,0.33596,-0.43783927,-0.054694194,-0.46064317,-0.047443405,-0.10139706,-0.36202168,0.14179604,-0.12829867,0.34998927,-0.4886968,-0.109294415,-0.18422532,0.5281758,0.31112453,0.19924806,0.6258289,-0.17608659,0.07690821,-0.020922115,0.5703704,0.9850154,-0.48697436,0.0066505834,0.49167442,-0.24061692,-0.6549406,0.32585728,-0.1702435,0.16608584,-0.011897068,-0.34702668,-0.6098867,0.16454892,0.17132328,-0.065928504,0.39243925,-0.72935724,-0.09235307,0.31491908,-0.22782587,-0.30314866,-0.3811383,0.29460385,0.5847037,-0.24753869,-0.14648835,0.043290447,0.29067314,-0.20274007,-0.42553273,-0.10475283,-0.303216,0.37614393,0.19735324,-0.20239775,0.051462468,0.12977637,-0.45134652,-0.06463367,0.0944708,-0.17495285,0.11223415,-0.23611955,0.051504303,0.8708717,-0.30086067,0.12443427,-0.5783582,-0.59564465,-0.73136455,-0.16697109,0.60261637,0.07044404,0.08423098,-0.3104089,-0.013384561,0.014680182,0.117375456,-0.06997379,-0.3484254,0.5959591,0.067314625,0.39752102,0.14109944,-0.6167252,0.13779983,0.033534847,-0.056993827,-0.41428557,0.48949274,-0.12668163,0.8050181,0.10537866,0.062161714,0.19299483,-0.5267455,0.13604994,-0.22982483,-0.18510883,-0.8093717,0.024505323,778 +885,0.43499812,-0.14332442,-0.7215435,0.09860978,-0.3560361,0.12558384,-0.6023719,0.4177065,0.16628028,-0.47764692,0.16992813,0.13839728,-0.1951971,0.062040668,-0.2043242,-0.7543163,-0.18789189,0.243342,-0.3767283,0.57445806,-0.25606927,0.23397511,0.11808065,0.26185504,-0.04835798,-0.07238408,-0.10303881,0.05128653,-0.15357767,-0.48488927,0.041232485,0.08839741,-0.5271881,0.4203775,0.06037712,-0.44615448,0.258116,-0.4037551,-0.34589264,-0.6643347,0.27977374,-0.70354414,0.83171946,0.2139873,-0.39481923,0.076410174,0.04134571,0.28525934,0.12004668,0.28126755,0.44021937,-0.7514338,-0.29837525,-0.5207347,-0.48817575,-0.71062464,-0.5737791,-0.18277681,-0.42658815,0.31942952,-0.13581292,0.5070918,-0.15484531,-0.10471081,-0.43910626,0.16275255,-0.57059807,0.03503446,0.1328764,-0.040597234,0.37280944,-0.8210612,-0.12178058,-0.0056049204,0.14466803,0.14600585,-0.21876742,0.17612159,0.011946831,0.533999,0.105960436,-0.28980148,-0.42952147,-0.18770921,0.054789662,0.6483183,-0.43556198,-0.109900095,-0.44355837,-0.016144743,0.793338,0.4949772,-0.06045264,-0.14200783,0.023219263,-0.3730514,-0.11169223,0.49486244,0.60675234,-0.20624013,0.20902102,0.26660934,0.10698432,0.21255033,-0.31904274,0.16094534,-0.32716405,-0.3762915,-0.10375204,0.30407494,0.020142242,0.26052287,0.0802658,0.23123394,0.37130365,-0.05961016,-0.20936139,-0.078370504,0.074562915,0.27202165,-0.32999063,-0.2459138,0.5654458,-0.60809326,0.18575537,-0.53882074,0.6323069,-0.1526847,-0.6808428,0.34506738,-0.49397305,0.04896654,0.10976841,0.77413684,0.71938324,0.8452818,-0.10717329,1.0901034,-0.45412007,0.35284173,-0.23661725,0.009869501,0.14487927,0.15554005,0.11385476,-0.39482966,0.06593413,-0.20044248,-0.10215481,0.044178445,0.75313234,-0.5244774,-0.20364602,0.26469997,0.86798257,-0.27090663,0.101262905,0.76229554,1.1528648,1.078075,-0.12230181,1.0770515,0.21757834,-0.24315919,-0.5821702,-0.08260695,-0.6932089,0.19896756,0.49952182,0.20447688,0.37631962,0.21928883,-0.09188024,0.49458703,-0.2786158,-0.47329903,0.013925363,0.3990945,-0.2693543,-0.28778723,-0.6476155,0.14164622,0.08478058,-0.10269773,0.2155642,0.513101,-0.3236517,0.5820425,0.13653135,1.1258324,-0.4491063,0.21418233,0.33229482,0.0945017,0.32310688,-0.10217602,0.22492428,0.3262622,0.30407426,-0.21234338,-0.53747255,0.03159839,-0.22665977,-0.53102976,-0.15128,-0.002060175,-0.2835209,-0.09305465,-0.23191185,-0.2906771,0.07715874,-0.35074317,0.24734867,-2.3336341,-0.114099324,0.059921294,0.3148286,-0.13584928,-0.55888724,-0.13177387,-0.3778458,0.74501115,0.17373429,0.64054877,-0.2856035,0.37705323,0.39019394,-0.3791529,-0.030075839,-0.8359501,-0.13890459,-0.08291736,0.45506397,-0.058561996,-0.5680563,0.14008687,-0.17184235,0.67117673,-0.030917307,0.099928595,0.25139186,0.5366869,-0.2903202,0.3452886,-0.18176335,0.6887428,-0.33012366,-0.31459475,0.34562397,-0.29752138,0.45853505,-0.31897554,0.1628063,0.6476188,-0.4616929,-0.5687092,-0.2784454,0.0139198555,0.9002921,-0.22938068,-0.6559207,-0.07855556,0.04989801,-0.26756337,0.17416996,0.50302094,-0.1778562,-0.032375842,-0.5032796,-0.3547474,-0.19662143,0.37022963,-0.14512888,0.2654924,-0.63003224,0.5555959,-0.11599707,0.5382469,0.8486624,0.33696768,-0.056906313,-0.31741038,0.04248665,0.8658852,0.55520004,0.17773996,-0.48895776,-0.15773386,0.02503711,-0.015581111,-0.15932459,0.7037967,0.64062697,-0.21601813,-0.040882144,0.30885202,-0.35230467,0.03492638,-0.15461755,-0.60631853,-0.23196684,0.27022478,0.62034154,0.534831,0.14222346,0.60717005,0.17977206,0.33206967,-0.4746929,-0.36564374,0.35858855,0.6202638,-0.35695648,-0.24263479,0.83037,0.44448295,-0.04574275,0.7107894,-0.77823496,-0.39605975,0.3280455,-0.024163222,-0.54244745,0.4153814,-0.34290895,0.06384816,-0.9454158,0.19145536,-0.62624305,-0.8775945,-0.8978742,-0.23615062,-1.1471392,0.14341624,-0.40020004,-0.026444891,-0.27351713,-0.19309384,0.33706012,-0.50320715,-0.6932716,0.15406406,0.29052004,0.4126042,-0.1773846,-0.07070469,-0.27864984,-0.5276106,-0.0613725,0.5788508,0.27481565,0.033496562,-0.23480046,-0.36816755,0.035218358,-0.0013625572,-0.11721989,-0.123125784,-0.6619643,-0.05429397,-0.0029044233,-0.40788135,-0.04722644,0.70208865,-0.6520641,-0.06398239,-0.3046513,0.22001141,0.119359106,0.085971914,-0.19545932,0.367627,-0.0084634675,-0.3506013,0.033091854,-0.22567098,0.02173546,0.19358116,0.26247156,0.3142845,-0.2462743,-0.042493504,0.4582294,0.6513981,0.14652003,0.8688228,0.33499923,-0.14897068,0.23003745,-0.3345225,-0.19278257,-0.75951105,-0.27639267,-0.027305752,-0.5052138,-0.8343254,-0.16723372,-0.48118103,-0.8368201,0.61201304,0.106997855,0.11034589,0.019129897,0.81688166,0.25218603,-0.28406823,-0.13991208,-0.07604303,-0.12010071,-0.2539117,-0.36208442,-0.84911615,-0.43006957,-0.025648465,1.2886738,-0.2718281,0.038399275,0.4391718,-0.3642212,0.019154524,0.37924495,-0.0044077933,-0.099931896,0.2968883,0.4386654,-0.52593917,0.30942386,-0.06663906,0.006211281,-0.6295509,0.22446986,0.7576487,-0.7499778,0.3030844,0.5894762,0.19309019,-0.27876538,-1.0851709,0.010098909,0.54989344,-0.2546197,0.6098594,0.373418,-0.42448792,0.5028366,0.40517232,-0.107397854,-0.76092935,0.28501675,0.0022041302,-0.40707472,0.2572318,0.4684359,0.026685873,-0.062632106,-0.23248307,0.49565086,-0.41607532,0.584897,0.043850347,-0.28785846,0.087295555,-0.29736343,-0.3787091,-0.9612896,0.21368696,-0.8050256,-0.46819317,0.56853706,0.00719736,0.19582842,0.20346336,0.3989921,0.65102524,-0.5399836,0.17856891,-0.5759476,-0.41136727,0.5832219,0.572002,0.39146772,-0.42132545,0.5847413,0.06632698,-0.30514142,-0.05809587,0.2478662,0.58833325,-0.14091522,0.54031205,-0.32335332,-0.10076081,0.10671132,0.9727704,0.3459215,0.33399916,0.20675588,-0.04736189,0.101358734,0.07694313,0.16444708,-0.28087503,-0.41722372,-0.21230717,-0.11822173,0.04018551,0.6491393,0.1648846,0.47360513,-0.25481907,-0.0333934,0.09031307,0.08841094,0.11894896,-1.1019126,0.523043,0.21626176,0.6345816,0.410805,0.3946524,0.23131399,0.40551063,-0.32382587,-0.17247178,0.379737,0.15080358,-0.054279655,0.46038854,-0.61288583,0.09852648,-0.3163801,0.100337245,0.3346078,-0.11414373,0.7861753,0.9944927,-0.24061507,0.16029048,0.039170865,-0.27233362,-0.0894309,-0.041343022,0.08890965,-0.33668968,-0.50427413,0.8176343,0.14234641,0.4583486,-0.16339995,-0.0591121,0.44606113,-0.060629856,0.4464318,0.058492374,0.057367522,-0.06546765,-0.15903874,-0.20381379,0.61349773,-0.1247175,-0.253019,-0.04834312,-0.120252885,0.40037918,-0.051920384,-0.060643617,-0.021583056,-0.5746533,0.26333913,-0.68140966,-0.51149195,0.33718958,0.12954585,0.054883797,0.09693927,0.23289101,0.11676166,0.34273314,0.06192313,0.7667896,0.10379762,-0.31407833,-0.16790362,0.090415396,0.34722304,-0.32026878,-0.14704826,0.07722622,0.37768808,-0.8209069,0.32243606,-0.47439286,-0.3080327,0.20088993,-0.14747807,-0.29072842,0.32892188,-0.07167526,-0.24337976,0.38057378,-0.3261884,-0.34839478,-0.5186768,-0.36181858,-0.04324424,-0.23087166,0.07520909,-0.36721793,-0.029961308,-0.15378453,0.40182695,0.2978821,-0.068845965,0.38148192,0.2553773,-0.5044445,-0.0074358187,0.27252185,0.53000075,-0.13714324,0.03948206,-0.23270452,-0.5122896,-0.3923578,0.50935155,-0.1955565,0.43882504,-0.031115947,-0.39087668,1.153822,0.13182025,0.9379818,0.02896604,-0.5455323,-0.12732112,0.7334819,-0.20238554,-0.015110941,-0.4711641,1.2238063,0.8077703,-0.07271289,0.0012919307,-0.38574103,-0.106588244,0.28890648,-0.41014984,-0.023318762,0.0057941177,-0.61750555,-0.060186297,0.27119586,0.082759924,0.009570415,-0.2096101,0.07952767,0.31667686,0.27736965,0.006734515,-0.53440875,-0.18316476,0.37961808,0.21061854,-0.017776066,0.23828049,-0.35918975,0.015242974,-0.6013798,0.092633076,-0.5676955,0.045549154,0.06520765,-0.2336865,0.37522134,-0.16459204,0.0536261,-0.48795405,-0.26880363,0.12388862,0.23447634,0.2620521,0.29871407,0.6126589,-0.29295585,-1.7868975e-05,-0.1205599,0.42888108,1.1883745,-0.4398577,-0.09032037,0.29232585,-0.43179503,-0.7632136,0.001122276,-0.5882111,-0.05434111,-0.053235233,-0.65709907,-0.49077988,0.25591028,-0.117361516,-0.2594215,-0.17436528,-0.5913463,0.09948442,0.1628906,-0.28104207,-0.25965816,-0.08170354,0.12970418,1.0571774,-0.202991,-0.53998166,0.032449313,0.45689377,-0.45570922,-0.6544576,0.40835524,-0.433287,0.196491,0.17106509,-0.43613717,0.10668659,0.10289059,-0.6021419,-0.13092633,0.41239586,-0.20765595,-0.20694053,-0.29327154,0.28291973,0.7050257,-0.08561895,-0.11804819,-0.4817632,-0.45460543,-0.69030863,-0.49367616,0.017107695,0.31754258,0.22861338,-0.796542,0.040959943,-0.5487825,-0.13953814,-0.031680185,-0.3417749,0.47407582,0.11648762,0.4722092,-0.6286345,-1.0540086,0.3852073,0.13874745,-0.46217093,-0.43632475,0.33454588,-0.23781924,1.0441232,0.115999006,0.07131072,0.14704727,-0.82486343,0.3874997,-0.32976446,-0.16544776,-1.0820915,-0.016746148,779 +886,0.51957804,-0.12651952,-0.54782885,-0.13867673,-0.56650037,0.037111353,-0.23133415,0.29172477,0.27611056,-0.2125982,-0.08107572,-0.16482663,-0.07740155,0.41419208,-0.2218137,-0.85458285,0.06056057,0.34858665,-0.7381165,0.6411404,-0.47543836,0.3037334,-0.056728113,0.4158412,0.2605859,0.10874022,-0.03018871,-0.00053628784,-0.22064306,-0.1289492,-0.19605123,0.09467119,-0.8729841,0.52121073,-0.1784019,-0.47882006,-0.1626289,-0.42366162,-0.35075128,-0.80107385,0.22812258,-0.6630674,0.57964677,-0.19286664,-0.3405178,-0.06043766,0.3372555,0.5280615,-0.294991,-0.042926718,0.24900031,-0.35532984,-0.14245628,-0.32946387,-0.32772306,-0.61693835,-0.58768106,0.041899104,-0.535193,0.117351495,-0.2214601,0.25884527,-0.23954491,0.037724804,-0.20612796,0.41319513,-0.41783717,0.52874464,0.22400503,0.07434336,0.120316885,-0.4080759,-0.1902061,-0.2938138,0.2673792,-0.08593694,-0.47621107,0.42671624,0.452099,0.18561427,0.024894752,-0.28733838,-0.23886906,-0.08846422,0.1284611,0.41346863,-0.046348054,-0.33184198,-0.39996383,-0.03738113,0.44585657,0.28721467,0.085959874,-0.52995175,0.044262875,-0.107623935,-0.22213514,0.62657094,0.42678523,-0.19315185,-0.0996673,0.42545965,0.3340814,0.27754587,-0.2932857,0.030967807,0.0403966,-0.6343358,-0.15183903,0.40252456,-0.10543588,0.60704046,-0.29918203,0.07776622,0.70875984,-0.39051744,-0.32991698,0.115541406,0.056083318,-0.07768079,-0.32287955,-0.21926676,0.2020845,-0.57011324,-0.012103538,-0.13726138,0.8344977,0.22123128,-0.84411734,0.25379825,-0.70534045,0.19403236,-0.026287334,0.4278088,0.8477499,0.6547144,0.40425503,0.8240881,-0.454833,0.15052825,-0.001998509,-0.43287054,-0.022650898,-0.2338153,-0.10890257,-0.5040677,-0.009545823,-0.27552626,-0.09668088,0.057564646,0.46010518,-0.41484436,-0.21843183,-0.15517236,0.6297016,-0.4365655,-0.2936112,1.1517953,0.9790776,1.2762548,0.22453295,1.4314791,0.4829391,-0.013225938,-0.074088775,-0.10156438,-0.5988198,0.2818661,0.1367064,-0.8702902,0.31628105,0.0062146806,0.2023331,0.24980597,-0.15444146,-0.12689704,-0.003722747,0.43598607,0.0077773333,-0.20739977,-0.41184866,-0.4894644,-0.010930136,0.019455632,-0.14926404,0.32637945,-0.009041001,0.6303857,0.2274131,1.057156,0.16710423,-0.052615926,-0.14040513,0.36671543,0.25382367,-0.14177231,-0.20380406,0.23969398,0.24377947,0.110850476,-0.6542685,-0.058426123,-0.34630096,-0.34794426,-0.28093103,-0.27740493,-0.14533664,-0.18165548,-0.37500703,-0.3868105,0.006294551,-0.08575838,0.6726246,-2.2462988,-0.20445561,-0.0037568037,0.29467544,-0.18957354,-0.3693289,-0.22743328,-0.6221029,0.33960006,0.16654198,0.51217014,-0.7470123,0.3870455,0.33743146,-0.5100595,-0.25399226,-0.8359568,0.019573933,0.025191853,0.34078774,-0.19168384,0.0345728,0.11619403,-0.10277054,0.66059804,-0.13273461,0.10414786,0.24935983,0.45767602,-0.031360615,0.4657545,0.13758333,0.7558959,-0.4448603,-0.06992066,0.121183395,-0.40172663,0.4154552,0.17503452,-0.0008269188,0.746932,-0.63298696,-0.79857427,-0.62658685,-0.23620254,1.027527,-0.35430884,-0.28388467,0.11612291,-0.2536521,-0.21737589,0.027390605,0.32910606,0.033383377,0.044641357,-0.56985766,-0.09230751,0.061492175,0.15780704,-0.16152906,0.026213871,-0.16925484,0.7201001,-0.086040616,0.306757,0.4230206,0.1354726,-0.5276535,-0.5542212,0.10560119,0.8300577,0.27183655,0.1363075,-0.28301728,-0.32092264,-0.46914113,-0.14545391,0.21688895,0.5622404,0.5297064,-0.1861874,0.035993505,0.39432874,-0.25222942,0.14346343,-0.026354894,-0.3605262,-0.24297334,0.18314381,0.6104356,0.84706324,-0.12647386,0.70281506,-0.1799028,0.23417485,-0.25403914,-0.71045184,0.7483816,1.2509109,-0.24629474,-0.4542818,0.5630908,0.367462,-0.2894586,0.46226677,-0.25098136,-0.33990416,0.7254239,-0.004030938,-0.38543442,0.05071926,-0.35124567,0.08251054,-0.94495064,0.4506863,-0.39007774,-0.6615009,-0.4601687,0.032990467,-3.1150331,0.23760404,-0.19297184,-0.070742324,-0.14044437,-0.23555179,0.09997336,-0.6064876,-0.6859961,0.16432627,0.1442501,0.6563227,-0.062019795,0.13751227,-0.15418066,-0.3229847,-0.23345275,0.28622833,0.35990706,0.39731815,-0.11231923,-0.5308772,0.153599,-0.38385418,-0.54273707,0.007856786,-0.718025,-0.4206207,-0.14035411,-0.63450193,-0.39650837,0.728868,-0.6222706,-0.08966631,-0.22355293,0.009995447,-0.13032268,0.38176522,-0.051504727,0.22999686,0.13583595,0.048259627,-0.1587139,-0.24423742,0.12808013,0.11003371,0.3631258,0.4236832,-0.04937038,0.28857774,0.5970212,0.82012624,-0.048222993,1.025539,0.24931537,-0.14701594,0.24038452,-0.2023458,-0.41610873,-0.6009919,-0.29376617,-0.4552734,-0.45275006,-0.43527365,-0.062982894,-0.32932037,-0.8868421,0.5156042,0.19635405,0.11031497,-0.11139426,0.32168588,0.2752456,-0.2609816,0.18482053,-0.23036027,-0.32374164,-0.5043259,-0.50622106,-0.5588891,-0.6258026,0.15719324,1.3305222,-0.10520319,-0.11409161,0.08619821,-0.50316066,0.19202684,0.2443911,-0.17530495,0.18652661,0.22085817,-0.13364255,-0.71649814,0.31328672,-0.16058476,0.008579016,-0.47877824,0.35594654,0.9634642,-0.5124696,0.62644655,0.3496599,0.092824765,-0.072883986,-0.5314215,-0.22062106,-0.03925772,-0.2453547,0.6063735,0.28646824,-0.81659347,0.41613296,0.24237694,-0.3005921,-0.6801893,0.60763645,0.12609129,-0.121801436,0.039837252,0.40079466,0.15932085,-0.13815601,-0.23274231,0.32685736,-0.6057745,-0.006891094,0.11619934,0.03580058,-0.05657633,-0.06580842,-0.29586056,-0.7671843,0.04701711,-0.36708865,-0.35239795,0.16569567,0.12996952,0.040866368,0.13321717,0.32250154,0.21766867,-0.38665512,0.15581065,-0.34734908,-0.28990802,0.3562484,0.535131,0.44966635,-0.55383533,0.65360373,0.13166802,0.10031018,-0.038507402,0.17900282,0.44271052,0.22020657,0.42365384,0.14021038,-0.10341495,0.054653764,0.59373564,0.29852965,0.5590434,0.12296334,-0.11738361,0.10697633,0.2081132,0.4876448,0.07665894,-0.16908719,0.030578814,-0.2617626,0.12135446,0.41235685,-0.08374065,0.3161076,-0.06881902,-0.16507734,0.044646725,0.017940441,-0.048066903,-1.5945778,0.55591965,0.34794626,0.56823653,0.5757098,0.0053385496,0.073189326,0.6819089,-0.44026145,0.043822285,0.5255287,0.16105826,-0.24891551,0.5430382,-0.76710266,0.6263007,-0.25583777,0.060079932,0.15360515,0.28214052,0.3867239,1.1113483,-0.16087964,0.09180835,0.1117877,-0.3443699,0.20271112,-0.40455294,0.116579056,-0.55346924,-0.3124152,0.9953874,0.2944634,0.3013654,-0.32302904,-0.009191916,0.14220183,-0.100204855,0.16640663,-0.015568812,-0.061624855,-0.09163741,-0.6965785,-0.13164632,0.6461778,-0.26983282,0.08140138,0.22699505,-0.08778263,0.47925878,-0.2746198,0.06595179,-0.07017299,-0.83249444,-0.10934972,-0.42996156,-0.3949039,0.35459623,-0.47323355,0.16770208,0.122665055,0.09148944,-0.37029037,0.39405492,0.13943143,0.69078964,0.014691249,-0.13378255,-0.12653595,0.2628729,0.4671979,-0.22981149,0.15545554,-0.15233575,-0.12630835,-0.7212556,0.50892144,-0.18941705,-0.29983446,-0.051574882,0.13502279,0.068223216,0.5565761,-0.11785915,-0.2203213,0.04353242,-0.092554174,-0.27128825,-0.14019586,-0.24293447,0.28641596,0.37056676,-0.09148231,-0.026233234,-0.10222257,-0.038528696,0.27560404,-0.1546228,0.43109488,0.14682485,0.04607546,-0.30687007,-0.025953142,-0.057311933,0.5520629,0.22056507,-0.17401518,-0.21494788,-0.03423171,-0.29142395,0.3071588,-0.09759783,0.19289209,0.11097846,-0.37321708,0.8400023,-0.11718687,1.4088593,0.13972269,-0.48136154,0.2641552,0.3734543,0.037176292,-0.08513538,-0.25324723,0.95571727,0.50299615,-0.16291513,-0.069651015,-0.560853,-0.22265698,0.22536252,-0.27041924,-0.34967855,0.103072755,-0.45872986,-0.15191886,0.18465029,0.056381125,0.08453763,-0.15691312,-0.042832028,0.38231996,0.08783541,0.2937508,-0.45982075,0.13413383,0.2729607,0.39314374,0.22519629,0.17473543,-0.37440908,0.27127078,-0.74358207,0.40712366,-0.40679863,0.2517229,-0.28754094,-0.27786553,0.21558636,0.093441665,0.21647187,-0.18648623,-0.3075519,-0.36992523,0.6931146,0.18476033,0.22820465,0.90477926,-0.2941949,-0.18436311,0.13624796,0.42235136,1.002902,-0.32445452,-0.32197955,0.36559716,-0.38121763,-0.71431917,0.44195876,-0.45893374,0.058526617,-0.033946503,-0.29375055,-0.5862344,0.17779191,0.06797382,0.2951989,-0.0055936277,-0.73372006,0.15059383,0.32782796,-0.19803262,-0.38296947,-0.32107732,0.49399328,0.70958894,-0.35528827,-0.537154,0.12999496,0.0673122,-0.18042637,-0.3868319,-0.016482571,-0.25152242,0.3558174,0.10367224,-0.4001796,-0.056600522,0.2364012,-0.44424322,0.048760563,0.17444496,-0.24188411,0.17198472,-0.19771178,-0.11876606,0.96737367,-0.34137467,0.41200206,-0.54733956,-0.6471538,-0.8145282,-0.28859103,0.05850032,0.34757006,0.03419783,-0.6709712,-0.17511575,0.09851912,-0.36600915,0.1367641,-0.64826196,0.6122801,0.15229149,0.10427495,-0.02110284,-0.9738869,0.10607412,0.2363805,-0.039702654,-0.67587775,0.4559004,-0.3635707,0.8548365,0.19782715,0.12981409,0.14675455,-0.5932711,0.36109626,-0.29134375,-0.11483395,-0.53452,-0.0038784842,783 +887,0.42433453,0.10965278,-0.7235157,-0.13569754,-0.56342894,-0.048483957,-0.21842927,0.2150045,0.31662688,-0.0608235,-0.057522893,0.15303272,-0.19403009,0.4073415,-0.04882281,-0.95475894,-0.027754536,0.19546266,-0.71673733,0.5327232,-0.30899838,0.34420633,-0.12204301,0.43148944,0.10454998,0.18092062,-0.110569604,0.09334161,0.11693648,-0.26967877,0.110785805,0.007094905,-0.73249584,0.18683068,-0.039246596,-0.38702098,-0.057903226,-0.5207536,-0.45425132,-0.7111148,0.4807819,-0.69092345,0.6399881,0.13536352,-0.27688092,0.015265651,0.18821146,0.29276368,-0.14171563,0.03631995,0.383823,-0.5070086,-0.00028047213,-0.20055795,-0.14852391,-0.2553223,-0.5926359,-0.267283,-0.49626365,-0.04431893,-0.2516762,0.18861604,-0.34581867,-0.1214126,-0.46339846,0.47179428,-0.47273052,0.17385046,0.26123002,-0.18492137,0.1319672,-0.5706102,-0.1090297,-0.09977911,0.37727436,-0.0050263205,-0.34373644,0.5863487,0.07426072,0.30810907,0.025805548,-0.28554454,-0.2869281,-0.073124245,0.060266167,0.5774496,-0.31327745,0.027082175,-0.18202941,-0.042172182,0.35098734,0.27771086,-0.08039432,-0.25835085,-0.05826639,-0.13445915,0.07912778,0.6500711,0.44668886,-0.2544959,0.018454045,0.46764407,0.48520306,0.3924013,-0.24523754,0.026448593,-0.06825119,-0.54033655,-0.1553167,0.20807175,-0.16379595,0.26805535,-0.005445426,0.049756687,0.69170004,-0.1644552,-0.22594528,-0.07212073,0.08511124,0.4609857,-0.21283095,-0.23241675,0.41402233,-0.55561477,0.44756973,-0.18750751,0.67771274,0.11899959,-0.6364217,0.24307865,-0.65208936,0.16597255,-0.045498487,0.6930318,0.8416354,0.5320988,0.27947173,0.906157,-0.4340026,0.23237224,0.28347537,-0.27416846,-0.075541764,0.08538422,0.26927748,-0.46516395,-0.17524791,-0.36096182,-0.09983399,0.15780288,0.27310646,-0.36560178,-0.2313804,0.03923544,0.77189225,-0.27253902,-0.051210444,0.9004914,1.0347548,1.1261247,-0.08943117,0.7893478,0.04655799,-0.12630068,-0.34116688,-0.11003923,-0.49010873,0.15397996,0.340484,0.03069961,0.31760234,0.06677862,0.06751991,0.45566878,-0.4062489,-0.19006474,0.02263394,0.47593084,-0.03472903,-0.120548725,-0.52615917,-0.18449454,-0.045632333,0.09088122,-0.076611295,0.40846667,-0.30522713,0.2566245,-0.09789608,1.0432863,0.1850553,0.16473104,0.08059728,0.50663453,0.24692632,-0.24025579,-0.12900175,0.14406864,0.3173301,-0.037958246,-0.54981273,0.03845414,-0.42653492,-0.3072925,-0.17432934,-0.40052494,-0.31881937,0.027407631,-0.5019236,-0.16232474,-0.0056638047,-0.20705557,0.45402148,-2.4129775,-0.12151884,-0.08350312,0.3372022,-0.057242308,-0.34180072,-0.19710441,-0.48237872,0.41247365,0.1758892,0.53142256,-0.52941054,0.5619084,0.44959888,-0.5362641,0.10361707,-0.65113497,-0.18230493,0.21715778,0.21658134,-0.1413755,0.025598833,0.102318235,0.27236566,0.62903005,0.25195262,-0.057086542,0.2864764,0.4798603,-0.29191682,0.4833137,-0.036110535,0.57591623,-0.2453397,-0.19548558,0.37627697,-0.38730553,0.4075471,-0.27940926,0.0140402615,0.5565193,-0.5250692,-1.012072,-0.30312696,-0.15861318,1.0518755,-0.25498453,-0.5832333,0.24016963,-0.34358823,-0.2056212,0.031735834,0.6797002,-0.22903407,-0.04496269,-0.570884,-0.103653215,-0.25352982,0.19811134,-0.11260264,0.2598097,-0.41408315,0.7098337,-0.19533215,0.4518319,0.2843438,0.17586106,-0.23957486,-0.4398683,0.10471498,0.6330295,0.57267696,0.09281484,-0.2763081,-0.10412648,-0.1402571,-0.23891038,-0.0042180815,0.9525013,0.5559066,-0.18684769,0.06341525,0.3691676,-0.1404532,-0.06341955,-0.19343458,-0.3862207,-0.23263647,-0.023460725,0.5726356,0.8638628,-0.029332718,0.48995087,0.052164216,0.03314814,-0.17126572,-0.5446974,0.3765444,0.6354088,-0.13404681,-0.23032515,0.5796019,0.31526235,-0.15655772,0.4604118,-0.54460126,-0.21837085,0.604241,-0.12614435,-0.55810785,-0.07255033,-0.3391018,-0.039186504,-0.6547932,0.32151073,-0.4221485,-0.98835355,-0.45973304,-0.17756309,-2.639459,0.21064235,-0.37461242,-0.01939421,-0.22293031,-0.18146145,0.06102402,-0.6306405,-0.55201954,0.114787124,0.0447658,0.66858584,-0.20417476,0.14948872,-0.21432789,-0.33415365,-0.21074396,0.34691855,0.34373626,0.30040953,-0.06253631,-0.21369398,0.14194258,0.007517206,-0.54910034,-0.0843778,-0.41589022,-0.36063942,-0.06731149,-0.48980674,-0.21083193,0.69514847,-0.4253451,0.066220656,-0.26770386,-0.065101534,-0.047746792,0.22169833,0.29056162,0.4827493,0.12966427,-0.07431248,-0.07281439,-0.059191078,0.32481998,0.14094934,0.63300794,0.23645115,-0.011815551,0.18986666,0.5995387,0.76790816,0.058008805,0.9078062,0.323634,-0.11448487,0.16639079,-0.30413,-0.32224658,-0.80034,-0.44024745,0.0009292364,-0.47761226,-0.51272184,-0.060191315,-0.41254607,-0.91146445,0.44815812,0.05662517,0.25932434,-0.10355864,0.2710265,0.390306,-0.30580807,-0.048705976,-0.07827976,-0.09324866,-0.40126002,-0.27181458,-0.6629805,-0.4536147,-0.059264272,0.9833711,-0.31134465,0.01629667,0.26354071,-0.5045603,0.1598788,0.13900942,0.06753553,0.033227343,0.22757526,0.025679221,-0.50863075,0.37766328,-0.32278237,0.09318277,-0.7927522,0.17257945,0.72596806,-0.46988907,0.74024504,0.33278129,0.044770446,-0.23959029,-0.8161395,-0.28278232,0.22930269,-0.25755084,0.3946202,0.21647567,-0.63438153,0.2982748,0.007944738,-0.27415708,-0.68996054,0.58492845,0.06463943,-0.429111,0.20137249,0.4433777,-0.028225103,-0.28870004,0.1023274,0.6063719,-0.35980847,0.3990136,0.18099366,-0.05121829,0.085368596,-0.12391112,-0.30347246,-0.7229163,0.0667099,-0.6474621,-0.43973994,0.11561531,-0.045307714,0.12212968,0.11837059,0.36789623,0.3548348,-0.27299735,0.31322998,-0.36367488,-0.46560922,0.432193,0.47734046,0.5674434,-0.5086778,0.6944997,0.16898155,0.02799075,0.3495226,0.239074,0.6131219,-0.20552312,0.4724846,-0.082605645,-0.0042034686,-0.120452724,0.6845681,0.18603571,0.3228447,-0.022205314,-0.16732891,0.07239085,0.12669231,0.33078325,-0.13786852,-0.46880493,0.104649104,-0.017242143,0.054211836,0.5149392,0.24784012,0.20448191,-0.116078295,-0.10572495,0.1528276,0.13542032,-0.018508783,-1.4224125,0.7059245,0.38732255,0.95610315,0.39875722,0.16849567,-0.04201061,0.6282601,-0.2587013,-0.0034483671,0.4590249,0.014325812,-0.33456206,0.5515521,-0.6134785,0.5569007,-0.02553401,-0.003187808,0.27866018,0.17316818,0.40500402,0.6996515,-0.29199994,-0.042188123,8.8969864e-05,-0.42601535,0.01693368,-0.30037466,0.11154106,-0.52014023,-0.41543067,0.6709776,0.5792058,0.2275964,-0.24150597,0.029266,-0.08472249,-0.2097177,0.13555868,-0.12495921,-0.12513776,-0.1892276,-0.46294728,-0.19319099,0.35136208,-0.46003798,-0.12647519,-0.08835611,-0.021607267,0.31158698,-0.060076177,-0.005049641,-0.078065746,-0.841958,0.12644733,-0.37700343,-0.26544607,0.211255,-0.45895016,0.34425846,0.2804083,0.039282795,-0.14919849,0.44648838,0.04517135,0.696145,-0.053115945,-0.13437873,-0.31274983,0.17052643,0.18205673,-0.18434002,0.20439827,-0.31423596,0.18579455,-0.6754446,0.36896965,-0.4148152,-0.38302907,-0.26191172,-0.19623165,-0.041414946,0.38105503,-0.20438915,-0.20398365,0.073141545,-0.3414574,-0.3205918,-0.13196565,-0.26733494,0.09187838,0.09805594,-0.120253526,-0.17682248,-0.10579511,-0.14508893,0.2924988,0.08159446,0.28405926,0.2732299,0.1419657,-0.35721433,0.021789348,0.0379487,0.5151982,0.04331726,0.028682942,-0.3135986,-0.21915503,-0.33956477,0.59422916,-0.23480421,0.30871347,-0.0038528803,-0.20541598,0.77724665,0.19349028,1.184665,-0.014844258,-0.40475345,0.016473135,0.5824769,-0.11639886,0.04671229,-0.2947694,0.8546276,0.4581796,-0.086953096,-0.07375519,-0.32210946,0.010834704,0.28676996,-0.24905758,-0.23546362,0.013913701,-0.5166263,0.013037209,0.23748542,0.14608575,0.13308531,-0.19140156,-0.2717543,0.29924402,0.21594481,0.21096165,-0.6216545,-0.11868923,0.31308368,0.094866045,0.108617604,0.3084489,-0.31338182,0.3194762,-0.6965472,0.2952132,-0.52941275,0.16344447,-0.19300288,-0.276361,0.18587996,0.12597376,0.3936871,-0.26506698,-0.092790574,-0.11150143,0.3607346,0.37707326,0.23669495,0.6972448,-0.22011192,-0.11501164,-0.057452098,0.44765913,0.9635625,-0.17854668,0.01147072,0.28458259,-0.31253994,-0.7011666,0.08892878,-0.53738403,0.0036193703,-0.17957018,-0.3693535,-0.42873427,0.060973864,-0.0699608,-0.06669008,0.08636909,-0.77382857,-0.12429774,0.25575253,-0.29955882,-0.3037839,-0.36555967,0.33571196,0.8628374,-0.1409582,-0.33524227,0.07605163,0.25069305,-0.13826756,-0.45878422,0.48122966,-0.3106555,0.23091064,-0.1223573,-0.5496709,-0.06571107,0.29319584,-0.4438881,0.218004,0.29859295,-0.28787887,0.037147325,0.05059768,0.119425245,0.8143401,-0.23342896,0.2957855,-0.44996342,-0.53121114,-0.7805963,-0.34301946,0.050044622,0.25235754,-0.16712166,-0.77699167,-0.16023116,-0.23061377,-0.049244303,-0.09678966,-0.5223856,0.4248208,0.1897645,0.47406626,-0.19685501,-1.0773406,0.10699117,0.1447461,-0.30172917,-0.37913302,0.47359347,-0.051670957,0.77103657,0.099478476,0.00052812445,-0.07349389,-0.3809007,0.46032643,-0.29096052,-0.09054222,-0.5647079,0.061427653,798 +888,0.3724642,-0.11015139,-0.44059277,-0.23479451,-0.2799292,0.15087487,-0.1376146,0.30031124,0.45784783,-0.16695099,-0.0848433,0.04249211,-0.17016725,0.31943586,-0.17530848,-0.9129631,-0.02520591,0.021316377,-0.5210736,0.7059527,-0.3434868,0.32462662,-0.06835159,0.38789615,0.11529204,0.3304672,0.20770092,0.22432967,-0.15592058,-0.0010871986,0.10119173,0.34937108,-0.47151837,0.50917625,0.013154987,-0.10066003,-0.19850259,-0.3409361,-0.29408464,-0.78852767,0.46098614,-0.48338065,0.43729672,-0.055237073,-0.3843708,-0.21872109,0.26139596,0.14810438,-0.22587128,-0.09844214,0.21598284,-0.28357962,-0.23675601,-0.097674645,-0.27074143,-0.552953,-0.5606907,-0.09300365,-0.5658905,-0.15862639,-0.13552362,0.2911429,-0.29257438,-0.14146574,-0.1279248,0.7662353,-0.4338325,-0.058127165,0.5445878,-0.41209388,-0.031925406,-0.78440434,-0.25307158,0.0038537309,0.23378076,0.35134038,-0.20551199,0.62315065,0.27990267,0.3269234,0.105753124,-0.41355082,-0.42599723,-0.26408914,0.20548834,0.363969,-0.26463184,-0.39444184,-0.2607587,0.015421887,0.317935,0.17493875,0.20094419,-0.44078335,0.014864791,-0.14330782,0.056514632,0.47309434,0.4929256,-0.15930441,-0.17580128,0.3077426,0.35790595,0.22468393,-0.22930826,-0.0036545794,-0.1758296,-0.451659,-0.22080685,0.06308233,-0.023192724,0.30966046,0.02740509,0.16086584,0.7469761,0.03315659,-0.106536984,-0.020982185,0.18341602,0.12175671,-0.42380872,-0.053064402,0.28784811,-0.30251753,0.032008763,-0.18400855,0.55418724,0.095620155,-0.82990503,0.33113453,-0.47297665,0.022950329,0.067141645,0.596339,0.90722233,0.486825,0.2546215,0.9934302,-0.37068152,-0.012994249,0.14430638,-0.17900605,-0.014454071,-0.24368973,0.2860819,-0.6365023,0.07693175,0.10968229,0.037133586,0.14701961,0.3925633,-0.36014414,-0.3078436,0.093239434,0.85314417,-0.2562044,-0.14419001,0.6892875,1.0981473,1.0672113,-0.008968696,1.018118,0.10104049,-0.13458003,-0.10995144,-0.29684147,-0.38835728,0.27699727,0.2878884,0.031081775,0.41494516,-0.022439694,0.10373709,0.5790364,-0.28559348,-0.07148635,0.11960652,0.25352454,0.2215327,-0.0954816,-0.53055644,-0.3239617,0.28911647,0.11695609,0.038571443,0.33618554,-0.28298545,0.43688726,-0.24042888,1.1847005,-0.032614894,0.18482216,0.19401856,0.41468802,0.1164186,-0.33292744,0.009321973,0.1926231,0.22460853,0.01289132,-0.3699201,-0.022802128,-0.45719573,-0.43281758,-0.14074366,-0.38716745,-0.30074584,0.03549567,-0.28983283,-0.30318055,0.027621636,-0.32079396,0.44122925,-2.5310009,-0.03412191,-0.2195378,0.2976891,-0.23601907,-0.1890503,-0.19851409,-0.46911332,0.36903214,0.35788274,0.4670011,-0.5178916,0.20220192,0.44073534,-0.57313013,-0.17157996,-0.5112671,0.079443276,0.023775408,0.46152246,-0.026639849,-0.18862008,0.047391605,0.32902285,0.579448,0.34904358,-0.03542496,0.28619576,0.41112974,-0.25565428,0.3677889,-0.124298155,0.590051,-0.415643,-0.18253638,0.424965,-0.5892647,0.5434522,-0.27658376,-0.025580397,0.4973004,-0.30583775,-0.7770373,-0.44073287,-0.32888058,1.2501374,-0.39711997,-0.6378301,0.13825674,-0.14054786,-0.26103124,0.063056864,0.68939954,-0.110889144,0.18763715,-0.5416451,0.12934603,-0.121827245,0.13705117,-0.20630486,0.07175499,-0.6002832,0.7371494,-0.027332634,0.7250164,0.45163584,0.118063055,-0.47287917,-0.44489977,0.047699273,0.80581856,0.51401067,0.12034619,-0.037794214,-0.07930008,-0.024519311,-0.45509732,0.1546015,0.99788815,0.57176274,-0.05838744,0.13356222,0.28690758,-0.1549857,0.07992175,-0.09514159,-0.37321138,-0.26528862,0.25151265,0.71115357,0.77160686,-0.1973306,0.2769676,-0.07837549,0.1943805,-0.17117494,-0.47752246,0.39385414,0.49317834,-0.2647724,-0.29390973,0.67595553,0.41649345,-0.370984,0.44157135,-0.47453097,-0.43812957,0.6936653,-0.15816294,-0.60519737,-0.1531553,-0.3733867,-0.11251757,-0.70390743,0.2094623,-0.23748219,-0.7158148,-0.6115031,-0.22781198,-3.021499,0.1526819,-0.19963281,-0.04717678,-0.21731465,0.016558101,0.06123169,-0.74582386,-0.56011397,0.10913825,0.009038714,0.47867203,-0.07354214,-0.012242665,-0.2861773,-0.35597435,0.026114231,0.36287844,-0.033818502,0.27249154,-0.10130447,-0.29019746,0.038174357,-0.108234465,-0.5370996,-0.14778173,-0.6146969,-0.65551376,-0.0654609,-0.5714361,-0.08122959,0.7638498,-0.5972384,-0.08495512,-0.22339137,0.016195148,-0.028025324,0.23637356,0.11200101,0.4886311,0.27984768,-0.12834686,0.016527908,-0.25419605,0.36042586,0.14306633,0.6028711,0.51987207,-0.10283031,0.35246304,0.5948321,0.65560526,0.009470612,0.7935651,0.2009693,-0.16859369,0.26991197,-0.22565956,-0.21793257,-0.6243046,-0.37448815,0.26239574,-0.39920637,-0.38707554,-0.13583778,-0.28035718,-0.8505762,0.3715845,0.07032048,0.47095415,-0.26917884,0.03647155,0.3284458,-0.27444044,0.055686682,0.009381688,-0.0945032,-0.47548744,-0.41433716,-0.5194843,-0.7105157,0.31638166,1.09706,-0.2686728,-0.1326586,0.19142376,-0.42714718,-0.064941466,0.021842234,0.22424908,-0.20602004,0.14352871,0.08131592,-0.80723876,0.45157555,-0.15625098,0.11932522,-0.56072986,0.18889253,0.68215084,-0.30930066,0.85237366,0.43654218,0.20632608,-0.25275484,-0.7394096,-0.3298962,0.19959152,-0.13060534,0.6028907,0.43263766,-0.49750885,0.3408883,0.007590629,-0.43175793,-0.5841827,0.31049842,-0.13935284,-0.18555987,0.1684152,0.59808844,0.15070756,-0.31798267,0.071159415,0.45041433,-0.4029713,0.34152594,0.14950554,0.020015307,0.4969869,0.004899651,-0.24277788,-0.66508716,-0.036841493,-0.5448572,-0.25049153,0.18929864,-0.07399386,-0.04187287,0.12428907,0.18291223,0.36233744,-0.34510708,0.22024648,-0.039016563,-0.4801898,0.4522977,0.51790875,0.6324353,-0.4799229,0.5564038,0.12563725,0.098871835,0.043151367,0.17852479,0.6081845,0.3112732,0.38890287,-0.28139573,0.047930717,-0.026243383,0.5845464,0.20386581,0.20881586,0.014695813,-0.32824543,0.25391653,0.033546362,0.1709286,-0.14149828,-0.42918172,-0.10523111,-0.13254988,0.17275934,0.4829122,0.16725564,0.39407,0.010764927,-0.1760859,0.27121827,0.12022676,-0.052322205,-1.3726257,0.5825529,0.12364795,0.9477329,0.3194231,0.16433425,-0.21283542,0.6640886,-0.103441395,0.14025983,0.50073373,-0.13432278,-0.50144196,0.5640616,-0.47708428,0.6048948,-0.1348201,-0.026772305,0.21712475,0.2835184,0.39764795,0.665956,-0.1801923,-0.021169422,-0.052449387,-0.34733987,-0.017771035,-0.45800352,0.32337868,-0.47451666,-0.54076654,0.44550967,0.5410479,0.29468516,-0.3018837,0.039697584,0.08244082,-0.18106647,0.06932944,-0.26315695,-0.13501324,-0.08535049,-0.6883676,-0.20651035,0.39072895,-0.21186268,-0.07731557,0.06773987,0.054109853,0.18308187,-0.19061291,-0.12193682,-0.032471187,-0.6458845,0.08784202,-0.35867247,-0.72267026,0.42167512,-0.5617762,0.1310633,0.1540613,0.11008229,-0.28435078,0.40267882,0.10081089,0.9900481,-0.16456458,-0.16205217,-0.26785526,-0.11848461,0.16003634,-0.25603446,0.16051982,-0.31142744,0.21232867,-0.41081214,0.50435764,-0.28495336,-0.31622675,-0.060369197,-0.23858654,-0.021183357,0.47793365,-0.1730737,-0.17991751,0.042858228,-0.23968256,-0.32080022,-0.16663031,-0.47663736,0.3473704,-0.07474247,0.051204022,-0.11893668,-0.30698526,-0.10376456,0.1284317,-0.025266623,0.12003255,0.47180283,-0.07699987,-0.26737246,0.23953198,0.10873547,0.5141467,0.2959142,0.0053162673,-0.42698756,-0.27083167,-0.41585281,0.43167067,-0.18722439,0.17545967,0.13671641,-0.2709722,0.74895364,-0.051631987,1.1973726,-0.041496236,-0.45023355,-0.06904158,0.5093496,-0.059197236,-2.6357671e-05,-0.25351042,0.99993426,0.6469098,-0.025616655,0.012728766,-0.52843493,0.032733403,0.38635513,-0.37904787,-0.21678329,-0.12633795,-0.7445362,-0.1894098,0.23411442,0.12039632,0.08660423,-0.17792933,-0.3331846,0.06461694,0.40658128,0.16193382,-0.54396087,-0.014176737,0.2622292,0.33510184,-0.0019185245,0.106835164,-0.42149398,0.38375282,-0.8706186,0.37535524,-0.4498237,0.14335833,-0.4232006,-0.39376244,0.14984863,-0.110469855,0.48022866,-0.2846162,-0.270081,-0.2503136,0.5724029,0.289512,0.1978784,0.6907306,-0.20625119,-0.19337375,0.073751934,0.5991464,1.254609,-0.2299118,0.024480745,0.24918015,-0.44692507,-0.8312556,0.07018789,-0.47612265,-0.12209249,-0.17804147,-0.42759454,-0.45811093,0.1322956,-0.0102491975,-0.054906204,-0.08590606,-0.47225142,-0.20792882,0.21149512,-0.2899816,-0.2645003,-0.34893215,0.17111988,0.62799686,-0.14422582,-0.3926467,0.051302265,0.41895998,-0.24362199,-0.60237217,0.25497904,-0.20043059,0.40928492,0.031067938,-0.4189254,-0.20099688,0.18265946,-0.47601888,0.3428775,0.2225967,-0.3702742,0.047229648,0.024482826,0.051165204,1.0205176,0.089435376,0.31851855,-0.6080115,-0.5248552,-0.83573526,-0.49324524,-0.026153306,0.08012241,-0.32835296,-0.6159475,-0.13545339,-0.2947629,0.14095713,-0.026536876,-0.46547535,0.206738,0.1181973,0.5700167,-0.28586343,-0.7720472,0.0028159935,0.3016025,-0.040957402,-0.40232858,0.35516056,-0.12874503,0.8711748,0.09082528,-0.017022401,0.037951294,-0.7016503,0.35314706,-0.24656248,-0.27761635,-0.49138948,0.24442486,800 +889,0.57593626,-0.2969056,-0.3204511,-0.1750253,0.036240768,0.12829447,-0.111823596,0.59001493,0.4278498,-0.49875712,-0.16213931,-0.16444731,0.09974986,0.254851,-0.17967589,-0.6653155,0.0430893,0.08389237,-0.2873309,0.43124557,-0.63752085,0.12635282,-0.08112318,0.51725805,-0.018527979,0.09890362,0.18288745,-0.04424146,-0.13064332,-0.2166065,-0.21267943,0.33263716,-0.47456005,-0.0059300563,-0.24908046,-0.48844847,0.049086113,-0.5586955,-0.47763905,-0.7869015,0.4061626,-1.1188005,0.58808744,0.1705393,-0.22997569,0.4913105,-0.14137626,0.053529512,-0.15345049,0.02129054,-0.044583272,-0.22667117,0.10759872,-0.35557452,-0.20056134,-0.2910103,-0.55516833,0.09633401,-0.41609946,-0.15973376,-0.30615553,0.020961607,-0.39817682,-0.04630923,0.008782119,0.4814655,-0.40813276,-0.13189441,0.18242109,-0.15590718,0.37364855,-0.4700502,-0.24907015,-0.059707303,0.20798707,-0.28814772,-0.32061625,0.19687754,0.37037277,0.58789825,-0.04392918,-0.23912255,-0.37570342,0.1569126,0.040622007,0.52166355,-0.26198325,-1.0626062,-0.2798012,0.061655283,0.29645982,0.31827208,0.09630852,-0.047050875,-0.06709996,0.098129295,-0.24637093,0.74002343,0.6634473,-0.5249875,-0.26582086,0.263639,0.49295947,0.053151965,-0.084617965,0.01672242,0.052217644,-0.600429,-0.11146673,0.09481368,-0.21637072,0.672348,-0.25310186,0.36286703,0.6822779,-0.33215442,0.03084293,0.13534386,-0.008821438,-0.23973267,-0.31186515,-0.16216822,0.3786489,-0.46867666,0.034423616,-0.34618893,0.8582842,0.08699135,-0.75988144,0.33956516,-0.5251337,0.10158511,-0.15858927,0.67355114,0.5309176,0.41619897,0.54251367,0.7158677,-0.5937765,-0.04264954,-0.09979832,-0.39592287,-0.0742216,-0.19738571,0.05882393,-0.48644248,0.028829262,0.15689087,0.003546983,0.22062235,0.33083373,-0.57181126,-0.054911975,0.18073519,0.8922948,-0.2633866,-0.064397275,0.9344329,1.1705785,0.93392366,-0.02264676,1.2459292,0.3526419,-0.3210237,0.18695207,-0.14175424,-0.8333282,0.35843745,0.3081266,0.077189304,0.4206784,0.09616989,-0.045047294,0.23457499,-0.49401188,-0.14543451,-0.19111003,0.21857081,0.1325946,-0.13238318,-0.4596534,-0.05937411,-0.16501614,-0.10516816,0.24024145,0.19302581,-0.13685405,0.570887,-0.037961114,1.2038409,-0.01760836,-0.01458669,-0.12632465,0.53508013,0.1737023,0.21908599,-0.053151857,0.34385416,0.27246,0.2437361,-0.5807889,-0.021817923,-0.2327231,-0.45476758,-0.10154724,-0.2803401,-0.01996093,-0.048776284,-0.34471324,-0.17157145,-0.22893052,-0.23192392,0.39131466,-2.8378506,-0.3147157,0.06257829,0.36773324,-0.2487061,-0.29344016,-0.104196705,-0.4740089,0.50408256,0.43091226,0.53265464,-0.9379708,0.2919123,0.3915038,-0.49317536,-0.16218053,-0.6718653,-0.11339596,-0.050546512,0.46576074,0.11259543,-0.1612543,0.17358053,0.116547726,0.663374,0.20002262,0.06296388,0.19180696,0.7257119,-0.022307292,0.30582678,-0.0887543,0.5787435,-0.34577504,-0.21761286,0.30703956,-0.4512352,0.23561831,-0.16371143,0.16526617,0.49713764,-0.40968242,-0.9357999,-0.7013092,-0.10988519,1.1640472,0.036363255,-0.6394181,0.07562941,-0.3138046,-0.25811836,-0.18656528,0.46263206,-0.21529932,-0.0747298,-0.74274725,-0.0076992265,-0.11884428,0.018772563,-0.005220353,0.06052963,-0.37343374,0.7634737,-0.080996014,0.19140284,0.33420202,0.18237592,-0.40176025,-0.71337813,-0.020473251,0.89627147,0.28377166,0.3186761,-0.3234698,-0.11645617,-0.31767264,0.029777413,0.078954816,0.60078114,0.75925404,-0.07993743,-0.02572532,0.34388304,0.07852396,-0.06666348,-0.17131615,-0.3185161,-0.24346597,-0.12838715,0.7357702,0.76348567,-0.39102748,0.4229585,0.04436953,0.15951502,-0.26321718,-0.2507622,0.68454266,0.79845524,-0.091896065,-0.2687878,0.5645241,0.48483744,-0.38923967,0.38686025,-0.6341712,-0.44813862,0.3751196,-0.2100659,-0.4738861,0.22400886,-0.2984002,0.15678784,-0.92588335,0.34348503,-0.17985038,-0.42585054,-0.73804545,-0.034436733,-3.5352447,0.30981994,-0.29071054,-0.17661335,-0.24147336,-0.09186206,0.12126201,-0.4946929,-0.5297413,0.1946197,0.06115945,0.6610511,-0.08504236,0.23487616,-0.24291837,-0.1656696,-0.3151911,0.03834791,0.16722609,0.28554347,0.10441092,-0.34379187,0.038303643,-0.058766708,-0.460573,0.1966846,-0.485711,-0.4575574,-0.027454684,-0.46778992,-0.30622587,0.67574805,-0.25930613,0.062284257,-0.3356615,0.086164914,-0.11570228,0.4728533,0.0033702422,0.007085947,-0.04187877,-0.072899126,0.14536922,-0.21827863,0.38150212,-0.012431562,0.27370852,0.47597012,-0.3349564,0.060551625,0.5053961,0.7253688,0.060516506,0.84396607,0.3246822,-0.046258938,0.33996007,-0.18023454,-0.27592856,-0.5833195,-0.40705994,0.0923078,-0.49665514,-0.4459519,-0.08711285,-0.47371888,-0.7577717,0.57224756,0.0031454563,0.3138375,0.10823276,0.6942508,0.7367391,-0.18336427,0.11211777,0.056146245,-0.13578154,-0.48101103,-0.1764955,-0.56019014,-0.5032356,0.017450958,0.5992921,-0.18563877,-0.032414358,0.15208732,-0.13011418,-0.075566255,0.012120527,-0.0529583,0.077197336,0.27786037,-0.12829995,-0.75246555,0.45361337,-0.08612842,-0.28786492,-0.66348016,0.08155557,0.64341575,-0.69825345,0.55672187,0.5932841,0.01576575,-0.08378675,-0.46187124,-0.1702249,-0.09626184,-0.1855235,0.39398465,0.23764636,-0.7685378,0.57027054,0.47470567,-0.186563,-0.6572191,0.46447897,0.11471543,-0.41483817,-0.07363975,0.32103375,0.35238984,0.064893775,-0.17024,0.19421513,-0.586065,0.2504926,0.06380627,0.0346656,0.40539023,-0.029999927,-0.32166156,-0.8207447,-0.1554765,-0.69746524,-0.18796746,0.23209089,0.16899312,0.1410046,0.134552,0.009887199,0.4227679,-0.4150088,0.06843009,-0.06384576,-0.35646746,0.33076867,0.39400157,0.41651675,-0.36180314,0.6436156,0.09771872,-0.09714768,-0.010579243,0.025375372,0.54712933,0.078309,0.39322248,0.26550013,-0.27156717,0.26203874,0.80835444,0.20864911,0.48829687,0.18112266,-0.029346826,0.47173905,0.24593405,0.34243092,-0.023928126,-0.5658731,0.018269897,-0.3088652,0.12635423,0.40477014,0.082554825,0.28395626,-0.045263927,-0.32655582,-0.08097593,0.21281189,0.10915946,-1.3118175,0.18066593,0.16364262,0.83532286,0.22048242,-0.18507688,0.18994431,0.5568249,-0.055499244,0.10278676,0.40206948,0.008588341,-0.5420099,0.6165192,-0.6868682,0.29618442,-0.27042606,0.057898726,-0.05425213,0.06393171,0.39764047,0.63436306,-0.11654634,-0.011845805,-0.16034792,-0.2998447,0.14401054,-0.5316579,0.19288413,-0.53431964,-0.010911405,0.66025585,0.5406407,0.26749313,-0.15785976,0.027975475,0.09634856,-0.0034956213,0.09481908,0.024202505,0.08285003,-0.28565094,-0.8262375,-0.06787903,0.46925518,0.48321256,0.26172987,-0.19253194,-0.11624948,0.3279873,-0.18467446,-0.29966745,-0.13096996,-0.62757576,0.07110909,-0.29853252,-0.5978182,0.55320925,-0.053229555,0.30468455,0.3565495,0.16825087,-0.22143488,-0.007896532,0.1781439,0.7269849,0.05565405,-0.25402775,-0.5371445,0.14249486,0.32617137,-0.2560691,-0.15339303,-0.071147665,0.0012441576,-0.38193655,0.48472747,-0.15667473,-0.3307887,0.11822743,-0.12767293,0.10948617,0.6057376,-0.27740303,-0.09872263,0.0322765,-0.2816003,-0.38234493,-0.12854385,-0.08905417,0.3660663,0.31739444,-0.20361187,-0.14341773,-0.18521278,-0.36720476,0.42582312,0.09126226,0.23848243,0.2982182,0.14906757,-0.2138592,-0.12643468,0.16469854,0.6522509,-0.065429024,-0.24689175,-0.34503475,-0.49497175,-0.33507606,0.044973552,0.057451755,0.24010773,0.0861117,-0.3064337,0.7619299,0.02619666,1.0142117,0.14213644,-0.442976,0.011425242,0.6015365,0.028321764,-0.022802254,-0.49260926,0.971499,0.5678701,-0.25991264,-0.06670258,-0.3689684,0.1426623,0.27479395,-0.17410721,-0.16234228,-0.006575376,-0.6221055,-0.24711154,0.49465832,0.269913,0.26301304,-0.07371167,0.16370836,0.22589503,-0.01579362,0.3648746,-0.56599134,-0.24525507,0.25731203,0.26062647,0.048981164,0.06610412,-0.22996104,0.28919446,-0.53311974,0.064720765,-0.52981776,0.06822625,-0.22704048,-0.29520288,0.31547055,0.008536349,0.33689448,-0.32993153,-0.5434771,-0.0800432,0.28542435,0.1867897,0.09990717,0.42762855,-0.12619077,-0.084819905,0.023601705,0.49774852,1.3026434,-0.08342367,0.06716866,0.46632633,-0.14983444,-0.720753,0.5403672,-0.32485297,0.3505435,-0.06547972,-0.077087685,-0.5369289,0.34098402,0.3980606,0.16368474,0.0057533034,-0.57798076,-0.24703753,0.33274266,-0.32407483,-0.268797,-0.3412163,0.0152412355,0.6687022,-0.19098704,-0.26720446,0.08369067,0.40474162,-0.27075967,-0.68099564,-0.037891056,-0.43527094,0.31224778,0.11196548,-0.2110284,0.09775122,-0.07942372,-0.51414776,0.16567378,0.12859702,-0.40999642,0.031017438,-0.39076805,-0.0013130397,1.0062352,-0.3211134,0.3080763,-0.68505836,-0.3552872,-0.857842,-0.33950153,0.45149365,0.075344086,0.075579636,-0.62584776,-0.01905101,0.01931238,-0.26743212,-0.058232903,-0.3860518,0.5447168,0.15020812,0.54324275,-0.015988236,-0.64810574,0.15397593,0.11507997,-0.360325,-0.6107417,0.55740887,0.061558414,0.73441917,0.047404993,0.13935657,0.4835697,-0.5566581,-0.099327415,-0.2720812,-0.28424776,-0.73965335,0.10860226,801 +890,0.20315836,-0.398681,-0.5301761,-0.09140255,-0.23366226,-0.036314227,-0.3196697,0.14123617,0.26102844,-0.29815128,-0.0016279022,0.14969198,0.24205256,0.4796815,-0.11951847,-0.8276277,-0.018932616,0.20132421,-0.69522077,0.4347638,-0.7100416,0.13606109,0.009028311,0.39765486,-0.018413603,0.5178933,0.34049365,-0.08443371,-0.06997439,-0.0026374657,0.0681973,0.40267408,-0.4035039,0.15125151,-0.020285957,-0.36159548,0.07943177,-0.23960514,-0.2220877,-0.74006486,0.16663992,-1.076283,0.42671785,-0.02390792,-0.18276317,-0.14268193,0.3323195,0.5130963,-0.46667066,-0.005221758,0.21935081,-0.28841084,-0.24970531,-0.48215207,0.14918312,-0.39684054,-0.33165285,-0.037861835,-0.66969186,-0.47210646,-0.27840766,0.24903102,-0.3765645,-0.15183498,-0.1919933,0.37884912,-0.52889663,-0.15997152,0.55731463,-0.30077162,0.4621466,-0.5606205,0.022820583,0.017447745,0.54027486,0.08371484,-0.29311332,0.36606476,0.4775939,0.43070593,0.38040614,-0.38425767,-0.3236164,-0.2382325,0.4326752,0.40311155,-0.25207275,-0.38981226,-0.19333057,-0.058258638,0.102482624,0.31991553,0.027065398,-0.29202214,0.059933003,0.042574733,-0.16826923,0.567475,0.5665164,-0.23201776,-0.3815913,0.19248776,0.6606683,0.12717433,-0.30381846,-0.015261625,0.09470892,-0.43198323,-0.15818469,0.15195034,0.01599953,0.5456817,-0.23786771,0.18660723,0.9420817,-0.18986695,-0.046142265,-0.03399225,0.07206565,-0.36020687,-0.5119303,-0.090705246,0.16318972,-0.6941317,-0.026596397,-0.36692455,0.73377794,0.13053481,-0.60965276,0.4648458,-0.34288883,0.107297145,-0.11565406,0.73736,0.6945782,0.37931374,0.29395092,0.90500426,-0.30856088,0.14669245,-0.17146957,-0.597277,0.14061613,-0.29372132,0.33999,-0.44833913,0.19717652,-0.12990582,0.32656872,-0.04193263,0.36886528,-0.5032528,-0.070827916,0.20104897,0.8139262,-0.4130039,-0.001740242,0.6794502,1.1820148,0.91733664,0.13934243,1.2687746,0.30045047,-0.21968587,0.12278745,-0.33190903,-0.600029,0.19420594,0.4396441,0.54452896,0.14550425,-0.115929544,0.05344983,0.6218832,-0.41148424,0.081490606,-0.20817892,0.46787667,0.0968667,-0.19059102,-0.4926827,-0.017678177,0.060976934,-0.16482185,0.15371597,0.17042024,-0.17691767,0.43169105,-0.24015158,1.190308,-0.26380154,0.15925848,-0.111086346,0.6013584,0.18501697,-0.11101138,0.18481661,0.29167736,0.43230036,-0.09708885,-0.6591167,0.22349347,-0.36678544,-0.54870087,-0.08843836,-0.514641,-0.030134851,-0.025460431,-0.4496819,-0.11529239,0.046062738,-0.24893336,0.3243598,-2.8362865,-0.35983905,-0.17338724,0.30587384,-0.38229597,-0.06922925,-0.008417095,-0.5326678,0.38219285,0.27436182,0.56550556,-0.58779573,0.55630374,0.4866222,-0.53518385,-0.12734507,-0.6785679,0.027995596,-0.23542994,0.55540204,0.16317584,-0.2005045,-0.12953018,0.11198417,0.82917136,-0.057633057,0.2911974,0.46016216,0.23718084,-0.08504035,0.60105735,-0.061285272,0.6329361,-0.503399,-0.3008469,0.26163408,-0.35066092,0.29551002,-0.3875004,0.07170565,0.66536194,-0.3617232,-1.0031418,-0.7502293,-0.40687284,0.94126815,-0.47601476,-0.57705855,0.24081217,-0.18024778,-0.090307094,0.13531601,0.6208657,0.036025107,0.33911586,-0.70633674,0.22985594,-0.20893836,0.04919159,0.07336923,-0.08992052,-0.40524063,0.7896593,-0.075155415,0.48581526,0.20271046,0.26403314,-0.28576496,-0.20098083,0.044015024,0.74722046,0.16752023,-0.10249246,-0.05547018,-0.35181355,0.064915545,-0.24942751,-0.008292645,0.60712767,0.71224165,-0.028302943,0.16320463,0.21152325,-0.17665333,-0.07833032,-0.18748403,-0.39706847,-0.10716329,0.2885064,0.48628584,0.65487677,-0.07291215,0.38828743,-0.2712288,0.31900674,-0.08052058,-0.6718569,0.7177003,0.4619471,-0.120622136,-0.098733045,0.6323982,0.62648696,-0.5528219,0.59744173,-0.61997706,-0.21176362,0.62155944,-0.2885784,-0.36740223,-0.08611927,-0.23595679,0.089756735,-0.82993555,0.21879362,-0.5040991,-0.6511765,-0.34188363,-0.26689103,-4.155355,0.26235476,-0.1907677,-0.10614985,-0.29443967,-0.03851105,0.3659539,-0.58160573,-0.40442142,0.1697501,0.1516583,0.6537854,-0.05170709,-0.037297275,-0.3175913,-0.053850252,0.15413809,0.30292138,0.052884746,0.17497091,-0.2398657,-0.49480155,0.00037903586,-0.0023902704,-0.54222566,0.20897134,-0.64961046,-0.43567705,-0.13214491,-0.5838784,-0.38829994,0.5639634,-0.36095762,0.045951914,-0.25149885,0.18580116,-0.32669604,0.42883858,0.040610116,0.32702318,0.28847432,-0.1383485,0.072166316,-0.36981878,0.38961634,-0.05540819,0.3376267,0.14901145,-0.15110192,0.027001759,0.56248695,0.6529014,-0.08237891,1.190756,0.42014727,-0.13935958,0.2492067,-0.31108776,-0.24602608,-0.70485544,-0.52608293,-0.15008882,-0.456043,-0.56640893,0.09573565,-0.32222435,-0.7759835,0.79357356,0.24615467,0.46276072,-0.014201477,0.23169231,0.31438702,-0.13094269,-0.13383617,-0.09492394,-0.16358382,-0.62571055,-0.2908944,-0.6951609,-0.6111803,-0.015926406,0.49249077,-0.4256045,0.045119897,-0.15122287,-0.2662144,-0.11291233,0.34829715,0.03827257,0.22801025,0.530533,-0.026660493,-0.6453097,0.41689047,0.05064779,-0.049886625,-0.6379506,0.14106111,0.65484357,-0.7739157,0.84616584,0.35794342,0.16166174,-0.010275844,-0.37825218,-0.375518,-0.026554614,-0.18969285,0.58151954,0.22748804,-0.9668376,0.6285708,0.36776614,-0.47939453,-0.78203917,0.24816014,-0.17940052,-0.068688236,-0.074819244,0.29724893,0.08321511,0.025264012,-0.2284125,0.09638986,-0.6582787,0.22443353,0.18388559,-0.03667137,0.62808716,-0.16406485,-0.42522678,-0.8163678,-0.28995094,-0.6816941,-0.077679195,0.27276847,-0.180079,-0.15287001,0.34637538,0.11241489,0.33482578,-0.2526149,0.075476855,0.07743479,-0.47114527,0.20327835,0.57485455,0.22089426,-0.47720632,0.5557437,0.28290638,-0.16296245,-0.12345015,0.012533595,0.42014083,0.2017969,0.62886,-0.32299426,-0.06985397,0.3090251,1.0376836,0.036745906,0.6837,0.08034045,-0.15863785,0.37878156,0.004240366,0.20897491,0.050895225,-0.45145562,0.17907685,-0.17957635,0.15652697,0.49263167,0.44850114,0.48392987,0.31986874,-0.34110323,-0.05345364,0.31396446,0.053090822,-1.2491679,0.6218174,0.40368858,0.885341,0.46701476,0.10924896,-0.2901127,0.79048157,-0.3057743,0.049754616,0.36654723,-0.2682493,-0.41643927,1.006143,-0.8018016,0.291104,-0.14535254,-0.032314364,0.059876386,0.16383563,0.31968668,0.8089046,-0.07101382,0.13229513,-0.060089517,-0.21341504,0.07792335,-0.29771364,0.015033356,-0.2563642,-0.38977012,0.6294399,0.54186267,0.5551064,-0.15845238,-0.12331884,0.13104245,-0.11440629,0.23419957,-0.14266038,-0.05742379,0.12549762,-0.6103332,-0.2606363,0.5916235,0.30160403,0.33417952,-0.20355952,-0.2887747,0.24512112,-0.2089303,-0.2095453,-0.09919257,-0.57907873,0.1230581,-0.19994374,-0.6496894,0.6599213,-0.39737022,0.19684005,0.20207779,0.028582647,-0.07174151,0.2565836,-0.10571548,0.8367335,0.069746934,-0.30234483,-0.38820267,-0.14168875,0.25141206,-0.33725533,0.090754956,-0.474766,0.003981938,-0.40791455,0.6659271,-0.22371526,-0.4948078,0.3493257,-0.24413598,-0.11566875,0.5723845,-0.12518506,-0.16039571,0.2005074,-0.17447424,-0.4564325,-0.19263804,-0.32070494,0.29457274,0.077373445,0.22914921,-0.17188942,-0.24936716,-0.077992,0.7160632,0.08823005,0.36873415,0.18826587,0.0014489765,-0.1441347,0.09097745,0.32616603,0.5343907,0.095234714,0.11952692,-0.22575004,-0.39871153,-0.41170612,0.074742444,0.08293876,0.2663897,-0.02233319,-0.3260124,0.9825539,-0.07107352,1.1978463,0.2791504,-0.3495506,0.21633601,0.4853771,-0.08560433,0.14803804,-0.47966513,0.82617307,0.55403763,-0.09210541,0.053953737,-0.70741004,-0.16395468,0.39512137,-0.38264236,0.003184398,-0.15693222,-0.64115435,-0.5149099,0.39365926,0.2723096,0.25104034,-0.035921413,-0.02777937,-0.04537045,0.08689768,0.41742304,-0.84938574,-0.17085373,0.2288302,0.3761889,-0.10350595,0.064053856,-0.2398748,0.49107805,-0.71368957,0.24919951,-0.48751345,0.030889535,-0.3300512,-0.4127942,0.25113463,-0.12422084,0.4013995,-0.12381473,-0.41567993,-0.03791343,0.49158195,0.10163281,0.09862524,0.75800514,-0.17806798,-0.018908344,0.16464198,0.56142086,1.1103282,-0.6132426,0.029228164,0.31149253,-0.37407282,-0.65253323,0.4451449,-0.32858166,0.06333967,-0.031403054,-0.5574104,-0.48122028,0.1921824,0.21857113,0.047222476,0.07356667,-0.54163283,-0.20640314,0.34463063,-0.41054574,-0.22609647,-0.01539733,0.4663101,0.6276763,-0.31573954,-0.41982016,0.15834121,0.47922894,-0.32571757,-0.34692252,-0.07253563,-0.24021728,0.4497051,0.10377899,-0.47006047,0.01780559,0.1787606,-0.52398187,0.054957945,0.2479736,-0.29135093,0.16669111,-0.18166776,-0.010331161,0.8864155,-0.26363745,0.029392725,-0.80170727,-0.3632283,-0.9119808,-0.34675264,0.2374767,0.11275786,-0.022952214,-0.341491,0.12521599,-0.11912761,-0.1373143,0.12117505,-0.65822417,0.35503307,-0.043891832,0.63390666,-0.12514995,-0.8871894,0.23577763,0.33406296,0.08498194,-0.6797383,0.62109685,-0.42378986,0.9090951,0.006538227,0.0036351085,0.029653495,-0.3344225,0.11802218,-0.3903147,-0.27291283,-1.0219368,0.021097263,809 +891,0.4176611,-0.11601851,-0.86659795,-0.08379372,-0.14044361,0.16941978,-0.46953967,0.4054284,0.08056119,-0.5522943,-0.101920284,0.0985413,-0.071143605,0.21212576,-0.2627498,-0.44644955,0.15305223,0.3619802,-0.6134261,0.17709523,-0.5190786,0.28362918,0.017699208,0.24498445,0.05671573,-0.032281734,-0.076487154,-0.05159657,0.15253396,-0.5315526,0.19344819,0.17388208,-0.720341,0.2738464,-0.11073353,-0.5095288,-0.08973211,-0.34010267,-0.3646371,-0.86489064,0.37844792,-0.7662131,0.77709705,0.044104308,-0.22656071,0.12662086,0.066397004,0.27413455,-0.08459439,0.15419307,0.36070418,-0.25648254,-0.43197545,-0.28153765,-0.1172806,-0.1967386,-0.5507888,0.018312952,-0.45678055,0.11993313,-0.11182352,0.211752,-0.2707714,0.21474414,-0.3204365,0.44500646,-0.36829606,0.18486875,0.2327166,-0.007062619,0.14909406,-0.68840194,-0.10942737,-0.13342033,0.25475484,-0.20287102,-0.30360457,0.051118374,0.17445797,0.53495425,-0.14605607,-0.07541122,-0.15288064,-0.11155933,0.1987323,0.64735043,-0.16604756,-0.15623389,-0.10313934,-0.18823665,0.23086439,0.096260935,0.11085891,-0.32338008,-0.09495614,0.09077871,-0.4058497,0.5219795,0.513459,-0.34644032,0.09715251,0.29153106,0.5721533,0.28114298,-0.14831793,0.2614371,0.018279066,-0.6307846,-0.34231946,0.055076938,-0.09527934,0.26782408,-0.17401297,0.363933,0.49497762,-0.21403067,-0.33981562,0.30742803,0.1046646,0.063847154,-0.20617501,-0.54087824,0.41449073,-0.5184947,0.13792606,-0.2459362,0.8069703,0.06185103,-0.6763842,0.35562888,-0.75112957,-0.036517184,-0.13117087,0.741867,0.5404441,0.600504,0.100199394,0.7446187,-0.39991996,-0.023199616,-0.099507056,-0.22582002,0.019135406,-0.114586495,-0.042413633,-0.1648972,-0.06820733,-0.10890675,0.013886929,0.015447098,0.69462126,-0.41409096,-0.14656909,-0.07034797,0.575044,-0.42176542,0.11613915,0.71557707,1.170251,1.2103513,0.22553183,1.3273429,0.1316871,-0.2263201,-0.3200818,0.1575088,-0.9902516,0.3357519,0.26887885,0.028570652,0.24138536,0.15637377,-0.23590523,0.5030332,-0.40071368,-0.12597318,0.047178995,0.32490477,-0.11743891,-0.24133213,-0.3011395,-0.17104006,0.14355803,0.032523353,0.13607447,0.19752447,-0.3595904,0.17755969,0.36844477,1.0896981,-0.3475,0.12793113,0.08311231,0.14119922,0.18041961,-0.16100122,-0.084381185,0.17950858,0.46158782,0.00026952228,-0.57731277,-0.07967938,0.005667433,-0.31137124,-0.27503526,-0.09857616,-0.28884026,-0.16368553,-0.36229467,-0.30929807,-0.06332978,-0.2957174,0.2242089,-2.3503723,-0.17532055,0.062972486,0.3645376,0.019941092,-0.44473687,-0.2313058,-0.47390655,0.34382996,0.17512941,0.38715148,-0.518133,0.72559696,0.4826455,-0.44001222,-0.14056563,-0.6695824,-0.21558382,-0.03312303,0.019094542,-0.026027521,-0.062412303,-0.19195934,0.021325817,0.43702447,-0.27763337,0.1628471,0.40147164,0.37679625,-0.017255185,0.45617804,0.01846615,0.595668,-0.52358717,-0.12761217,0.34748587,-0.39842018,0.14838378,-0.20091052,0.19742781,0.37312928,-0.4900104,-0.7891035,-0.6598025,-0.048482448,1.3622926,-0.39032555,-0.3673326,0.2521126,-0.46945056,-0.45135078,-0.06562934,0.3475615,-0.26676047,0.00056215125,-0.8113062,-0.11450075,-0.18677904,0.3714613,-0.058032636,-0.020988027,-0.5232033,0.5860262,-0.07130287,0.65649164,0.4052268,-0.022261783,-0.19999842,-0.26613498,0.09515003,1.106887,0.36900035,0.21582492,-0.36725703,-0.13162605,-0.3709589,0.085834794,-0.1753952,0.6109628,0.7170112,-0.0367634,0.22378814,0.12857227,0.08947461,0.15215704,-0.28047654,-0.4124737,-0.0136935,-0.12152618,0.65151054,0.44663358,-0.08965016,0.14364825,0.0045608506,0.33920792,-0.376793,-0.4209236,0.2388587,0.8923049,-0.10238271,-0.4720846,0.7500662,0.47539267,-0.22729301,0.53170687,-0.5119522,-0.45695338,0.3211541,-0.12188842,-0.33105913,0.32324818,-0.4742116,0.20640416,-0.72919697,0.41332516,-0.4752206,-0.6339528,-0.26764312,-0.26655236,-2.7806098,0.290763,-0.23776639,-0.050140534,-0.280122,-0.1252628,0.38968587,-0.2451915,-0.7822284,0.009754022,0.1715798,0.62895846,-0.1802148,0.06269646,-0.06598579,-0.29882595,-0.37319672,0.24585575,0.114448644,0.21887429,0.010988511,-0.32011268,-0.059680343,-0.26434326,-0.039324965,-0.13505913,-0.5791647,-0.26809424,0.1962375,-0.4327258,-0.43513632,0.66163945,-0.43999946,-0.01761131,-0.21095026,-0.051789314,-0.024838038,0.43837762,-0.15805823,0.23671083,-0.20454818,-0.14907348,-0.13035835,-0.18642151,0.19953157,-0.1198245,0.0026307367,0.28842542,-0.2031805,-0.03558928,0.2023594,0.84922314,-0.060653552,1.1404322,0.24315785,-0.1923157,0.30657396,-0.039045047,-0.41510525,-0.51975965,-0.040858265,0.10831186,-0.49893388,-0.19370358,0.021012524,-0.37832198,-0.8457608,0.5394103,0.04451376,-0.25167593,0.09264651,0.46526185,0.25268272,0.0042961114,-0.08803564,-0.16481255,-0.115839384,-0.33829442,-0.25416884,-0.7287863,-0.23371439,-0.3304986,1.2960407,-0.21922183,0.15284465,0.25682738,-0.05386855,0.113467835,0.37100697,0.09027463,0.13460754,0.60347974,-0.028566306,-0.60784096,0.26872122,-0.4399955,-0.21744715,-0.65743655,0.08749927,0.7885856,-0.76538676,0.502739,0.54213935,0.16455323,-0.20984338,-0.67270637,-0.13565718,0.04649651,-0.28006077,0.6102432,0.37086344,-0.8323202,0.48272905,0.45116803,-0.2253934,-0.726458,0.48812413,-0.10513351,-0.13800395,-0.10424315,0.45866132,-0.18944304,0.10443747,-0.091593884,0.09952682,-0.28391677,0.42194185,0.013382892,-0.16879152,0.0019682248,-0.31194946,-0.034477353,-0.68157864,-0.014522503,-0.5594066,-0.1408147,0.093950905,-0.15975048,0.21690618,0.3285812,0.051474255,0.5494199,-0.29978657,0.09975786,-0.21380584,-0.39515278,0.42548907,0.49867535,0.3080038,-0.26429626,0.75822353,0.03687766,-0.19975595,-0.2855924,0.24730246,0.4780996,-0.15883298,0.5136049,0.077501304,0.028688716,0.32307693,1.0186427,0.18085784,0.49040103,0.12602784,0.036941003,-0.045310926,0.13584574,0.21089184,0.18961982,-0.5746048,-0.13127555,-0.108911216,0.20925017,0.7395849,0.07415542,0.48847497,-0.19351403,-0.22719587,-0.07016575,0.22176236,-0.019867728,-1.3296167,0.5248306,-0.008561085,0.76182747,0.49787697,0.023735056,0.22533052,0.3178225,-0.07140994,0.100981474,0.16719663,0.24435174,-0.3825809,0.527618,-0.63312405,0.33452368,-0.2706112,0.042977143,0.22227617,-0.22080566,0.6147005,0.7760883,0.044590484,0.07948463,0.09169605,-0.1533831,0.12030085,-0.45626092,-0.014584561,-0.44000635,-0.16131864,0.83922356,0.5688552,0.49486542,-0.36926198,0.06543977,0.17584914,-0.045043975,-0.0010396689,0.009431083,-0.02925242,-0.18404348,-0.62035125,-0.029955199,0.69577974,0.15681438,-0.09146631,0.07770106,-0.3705252,0.392306,-0.04218642,0.21098553,-0.2314992,-0.6184508,-0.14881812,-0.5480272,-0.5952555,-0.01909755,0.024016859,0.017774245,0.3591708,0.080658555,-0.3179354,0.3263069,0.12023904,0.61524934,0.11698715,0.04643308,-0.22771437,0.37918004,0.2648023,-0.108785875,-0.14540042,-0.417014,0.2920141,-0.6605045,0.3816023,-0.1341532,-0.27243996,0.2998759,0.113548756,-0.059726607,0.60820323,-0.28121912,-0.1187117,0.2501412,-0.1544876,-0.1371973,-0.43997216,-0.3372338,0.0135407895,0.23918867,0.0065027275,-0.19288476,-0.046119273,-0.15296704,0.16143519,0.089502834,0.31633338,0.5102058,0.25644508,-0.3672866,-0.1654022,-0.075153165,0.80716157,-0.16230239,-0.23151976,-0.4246051,-0.54851454,-0.16702987,0.68468875,-0.022433504,0.2262456,0.17240848,-0.22760844,0.7630305,0.25207946,0.8126629,0.129128,-0.24505003,0.06370693,0.60935545,-0.048120916,-0.22670561,-0.44898546,0.8615317,0.38507238,-0.281359,-0.104669325,-0.2935364,-0.19127351,-0.13449307,-0.28515586,-0.21166505,-0.10337681,-0.61811477,0.08326202,0.15608712,0.3606442,-0.06466159,-0.15193485,0.2861797,0.47822723,0.013918181,0.0010763481,-0.6079818,0.05681543,0.29778305,0.1466174,-0.121129744,0.047716975,-0.32622615,0.24443607,-0.63452864,-0.14592545,-0.2401669,0.02650351,-0.039687645,-0.3194324,0.16651799,0.14999884,0.139214,-0.49440527,-0.06555744,-0.08881005,0.24501748,0.14284788,0.29787496,0.74994606,-0.2726299,0.037409544,0.0441308,0.5801568,0.7983732,-0.16750203,0.061992835,0.3880075,-0.46805525,-0.5553525,0.14035578,-0.46446314,-0.05247717,0.0661555,-0.20961118,-0.47149742,0.3482838,0.21335496,-0.08239124,0.1822521,-0.8691883,-0.1445339,0.31108722,-0.15624534,-0.17395101,-0.15583353,-0.002948622,0.6573185,-0.21992816,-0.32715768,-0.060872566,0.34709117,-0.2807694,-0.53162533,0.0891185,-0.42712608,0.3013533,0.20429713,-0.07879121,-0.103817016,0.03672063,-0.5496916,0.07422495,0.20443374,-0.14715616,-0.03303009,-0.4873352,0.076935746,0.63058186,-0.307669,-0.036016703,-0.29226172,-0.7014635,-0.8317768,-0.025666356,0.20589466,0.16868065,0.06174152,-0.62630874,-0.1313018,-0.21749713,-0.14509635,-0.032458894,-0.27743602,0.58403826,0.07660024,0.49018195,-0.05184227,-0.8539416,0.20372403,0.121097304,-0.44031087,-0.32077882,0.50878435,-0.0068698623,0.7176013,0.13956448,0.13533203,0.128584,-0.6923926,0.28541324,-0.19646478,0.009620622,-0.889846,-0.061795946,814 +892,0.3109862,-0.002392888,-0.471386,-0.18875723,-0.1317261,-0.109850265,0.13750905,0.47171685,0.3425533,0.15049928,-0.16923542,-0.017914439,-0.051596776,0.57346183,-0.13906388,-0.8530466,-0.09407631,0.1403677,-0.65225315,0.5610188,-0.39651987,0.325464,-0.10289347,0.51068074,0.29056624,0.27086797,0.19667298,-0.042618286,0.05545118,0.12621559,-0.27917907,0.37516046,-0.580705,0.2054054,0.013713419,-0.22563134,-0.060457766,-0.36515045,-0.3521496,-0.74293804,0.50518686,-0.64855236,0.6507111,-0.11166135,-0.3583062,0.10334525,0.06881696,0.3304097,-0.55048686,-0.14267443,0.0052767894,-0.021715418,0.053105336,0.092742324,-0.2064529,-0.28169215,-0.6171176,-0.07151427,-0.48850223,-0.10084804,-0.2911233,0.15167524,-0.35912633,-0.12036812,-0.09677843,0.47382703,-0.4249598,0.20415513,0.2944593,-0.146907,0.1083023,-0.4183012,-0.11632424,-0.07914283,0.2643863,0.10317635,-0.31036064,0.44058552,0.41902518,0.35755086,0.06311491,-0.13406645,-0.10661196,0.045580838,-0.050151944,0.49815974,-0.11801069,-0.41048327,-0.20876312,0.09552428,0.23434855,0.29956487,0.07873074,-0.40557063,-0.003501296,0.103958555,0.0073256493,0.24059756,0.48351085,-0.15063684,-0.33194438,0.5275199,0.2059058,0.28439102,-0.19885635,0.22238106,0.019768728,-0.5063519,-0.22659881,0.019638628,-0.13153061,0.6067217,-0.077098586,0.23012221,0.82029176,-0.11650894,0.09696471,-0.1413492,0.069919825,-0.25279352,-0.2640535,-0.12723123,0.16768897,-0.48249903,0.123465024,-0.10545371,0.82732147,0.21980505,-0.8229131,0.31116557,-0.50121266,0.22747149,-0.27003738,0.5773112,0.9385031,0.31042668,0.41799188,0.81041336,-0.5518299,0.032830656,0.27089262,-0.557862,0.24846365,-0.10500831,-0.112266995,-0.5375967,-0.19310898,0.18950486,-0.07923216,0.18396373,-0.02726014,-0.49340343,-0.15092817,-0.09999768,0.66371995,-0.39585093,-0.12925938,0.8420863,0.97346467,0.8550275,0.011979676,1.2952644,0.3013661,-0.1850167,0.36062106,-0.26977122,-0.70813876,0.079204366,0.27228236,-0.9060171,0.4465491,0.03181426,0.06855099,0.3579425,-0.2476749,-0.026553592,-0.014462195,0.17990701,-0.149779,-0.22106701,-0.3866664,-0.29568443,0.0648052,0.14062403,-0.046804547,0.35485777,-0.22553217,0.51110655,0.09231665,1.4686288,0.2683331,-0.029895253,-0.08200941,0.40107846,0.23172313,-0.2455128,-0.22958072,0.32170108,0.58985114,-0.05433101,-0.5837062,0.029132793,-0.37131763,-0.32491186,-0.13339297,-0.42057905,-0.049483176,0.022352358,-0.3290353,-0.17680086,-0.011606827,-0.2227938,0.4846309,-2.8741245,-0.16889167,-0.09255516,0.28110075,-0.20491998,-0.20570499,-0.28638896,-0.43353948,0.1665984,0.4023367,0.3561089,-0.7643514,0.1899214,0.27998394,-0.41563657,-0.1803929,-0.5750454,0.006850645,0.11922037,0.3291777,-0.19901021,0.007791785,-0.02097609,0.26932225,0.5157184,0.26531947,-0.0072530224,0.12963478,0.46570876,0.07278478,0.36750433,-0.028344588,0.58135617,-0.020314068,-0.071710296,0.25033987,-0.18417446,0.4698956,-0.10730215,0.122706205,0.44184133,-0.48259208,-0.88064,-0.42615283,-0.24963085,1.188696,-0.5811642,-0.14803964,0.32925215,-0.22926508,-0.13649218,0.11476474,0.4329587,-0.16460429,-0.1809768,-0.6531506,-0.02452592,0.007557126,0.05802756,-0.049180627,-0.0067721927,-0.1571985,0.43717417,-0.07686031,0.528386,0.39953986,0.1691646,-0.2268774,-0.6652941,0.11626771,0.6371313,0.36982217,0.06778487,-0.12850635,-0.111109994,-0.36751625,-0.26462308,0.16029912,0.53286284,0.7708962,-0.06443229,0.14475922,0.33147463,-0.03705305,0.06698519,-0.03394197,-0.28497532,-0.06401706,0.03556775,0.43848157,0.7343991,-0.28460997,0.41022256,-0.033999752,0.19510044,-0.018044418,-0.65526,0.7883777,0.90134186,-0.21109958,-0.22627664,0.54374677,0.27700457,-0.25727496,0.39632115,-0.4294065,-0.012637173,0.7851469,-0.1276929,-0.32053128,0.13605158,-0.17242962,-0.052745953,-0.9725185,0.09309146,-0.11006808,-0.5077431,-0.42013064,0.11708262,-4.0668316,0.08957038,-0.31203738,-0.16815472,-0.25098813,-0.07278641,0.38735798,-0.7041006,-0.6756625,0.22280449,0.11298915,0.55481464,-0.07595777,0.1669961,-0.28988487,-0.23240674,-0.20818675,0.02501095,0.15451148,0.22422071,-0.023138842,-0.4865911,-0.1073666,-0.11031017,-0.6400202,0.09731451,-0.4498109,-0.5603089,-0.10985244,-0.7796114,-0.22586016,0.7653413,-0.33873656,-0.1732723,-0.16098541,-0.034491528,-0.23079018,0.2700609,0.06349535,0.129357,0.04860499,0.078770384,0.04063469,-0.25546533,0.26129162,0.025234714,0.5244918,0.20715255,-0.12657996,0.26691294,0.6290052,0.50393796,-0.16152997,0.67300075,0.4419463,-0.0491569,0.16273877,-0.37067834,-0.22920202,-0.6125748,-0.46197307,-0.35405204,-0.41786125,-0.3471928,-0.17969008,-0.4107205,-0.87845975,0.37471664,0.014851253,0.4740641,-0.16862442,0.07470403,0.40645924,-0.07690064,0.17313342,-0.13404758,-0.2728291,-0.6383858,-0.14987364,-0.6549384,-0.6825997,0.4357529,1.0635337,-0.29314333,-0.15523513,-0.1357449,-0.43290326,0.07031492,-0.029494345,0.013567097,0.3222396,0.24024518,-0.25176504,-0.7362237,0.3388665,-0.17149253,-0.057367127,-0.8079402,0.035897765,0.5299956,-0.52607566,0.5362215,0.13527042,0.055625755,0.0846867,-0.54390866,-0.35319242,-0.0076208613,-0.06626522,0.6028221,0.31795985,-0.6035735,0.43220064,0.2636497,-0.13098453,-0.5822621,0.49455383,-0.045145016,-0.03509532,0.11705986,0.26932126,0.019641012,-0.13753806,-0.0019770067,0.2983467,-0.4573263,0.30762485,0.28969762,-0.041519444,0.43807468,0.14215018,-0.13579613,-0.62664974,0.025748715,-0.5347087,-0.18830983,0.16644412,0.12430576,0.2823265,-0.03714228,0.11008855,0.32478884,-0.2612891,0.18997681,0.04737072,-0.22900121,0.28361598,0.5650435,0.37103423,-0.45063317,0.42801285,0.1619875,0.026790181,0.08481515,0.2257836,0.49964786,0.35961667,0.2463913,-0.024553647,-0.3292712,0.11218367,0.64245915,0.08511445,0.25298622,0.038299005,-0.056026686,0.23445283,0.15349732,0.27303082,0.28549862,-0.30644572,-0.100535594,-0.12093755,0.2583206,0.6199625,0.22542076,0.2206515,-0.031505823,-0.36479712,0.19800492,0.047930166,0.07214516,-1.231545,0.41437447,0.33419085,0.62759894,0.5116065,0.11128259,-0.14071685,0.44877517,-0.16188265,0.18791078,0.49873057,0.023344418,-0.60453445,0.6144555,-0.58717513,0.5500352,-0.0022258672,-0.055489153,0.20671809,0.29909113,0.25094908,0.9356931,-0.025240803,0.056250155,0.07816506,-0.28212443,0.088871785,-0.43726742,-0.051466767,-0.6231801,-0.18657623,0.58480567,0.5177557,0.098753504,-0.3218304,-0.113792084,0.010624598,-0.16760647,-0.117854275,-0.13134187,0.06460748,-0.1003611,-0.6068538,-0.395494,0.5364585,-0.008712356,0.14986058,-0.042875696,-0.17481367,0.32967445,-0.28637162,-0.12303165,-0.10252603,-0.7275955,0.008734484,-0.21253811,-0.3362707,0.54735774,-0.44160688,0.26778415,0.16063696,0.025533607,-0.32811105,0.25929776,0.01347511,0.82126474,-0.23359966,-0.12870233,-0.45667347,0.15051773,0.36944523,-0.19882274,-0.18400073,-0.39527178,-0.14546305,-0.39048874,0.30603558,0.05765788,-0.15304156,-0.19475758,-0.029269822,0.06017378,0.3511466,-0.26635155,-0.0522888,-0.20504348,-0.20522106,-0.4283793,-0.19924755,-0.3905253,0.20271973,0.256052,0.144158,0.047959175,-0.11033749,-0.21011531,0.118311204,0.101867534,0.2660211,0.20565607,-0.12773313,-0.15397857,-0.14792176,0.13892348,0.38722992,0.17838015,-0.17604987,-0.42818186,-0.19689447,-0.31744155,0.077360794,-0.17072707,0.2796741,0.020190204,-0.39316943,0.63862896,0.13715132,1.2288315,-0.037865967,-0.39347872,0.08575977,0.5525839,0.1779033,-0.04337409,-0.09368461,0.834811,0.6579674,-0.0738669,-0.25961718,-0.3625876,-0.30777326,0.40108514,-0.23976249,-0.21110551,0.0028687615,-0.5609363,-0.24515307,0.22071333,0.13430673,0.24664211,0.08437461,-0.2135822,-0.003949826,0.0899147,0.48544607,-0.41369355,-0.14035876,0.26493117,0.36287245,0.2755216,0.33024374,-0.41937232,0.45741442,-0.5909599,0.22618245,-0.418126,0.18213052,-0.27639458,-0.27663973,0.15553926,-0.026166603,0.33853865,-0.17540164,-0.26528478,-0.34485075,0.7517889,0.124235906,0.23535989,0.8022515,-0.34280407,-0.18622084,0.10740516,0.5061711,1.1113139,-0.117727615,-0.07567053,0.34987828,-0.29506662,-0.6973412,0.08477674,-0.30760577,0.30807766,-0.09733381,-0.21542017,-0.44133458,0.20257665,-0.106804155,0.08723655,0.023683736,-0.555978,-0.29286653,0.26782617,-0.24935682,-0.27857116,-0.43900928,0.033732194,0.63803715,-0.44012782,-0.47711754,0.10328188,0.09951925,0.03181666,-0.6077655,-0.052845586,-0.25544378,0.3422803,0.0799186,-0.4261223,-0.061170097,0.22036767,-0.3155187,0.30469963,0.2637227,-0.32059374,0.18094991,-0.08079747,-0.17577441,1.1309966,-0.18905164,0.043827515,-0.5963803,-0.49892545,-0.75536346,-0.40076122,0.30277374,0.20780641,-0.06333169,-0.82268256,0.08675235,0.05928004,0.14304526,0.019050142,-0.37038186,0.4053898,0.079336904,0.3741541,0.07912137,-0.84747714,0.016954193,0.17534308,-0.1029782,-0.6667064,0.61242014,-0.21958067,0.71839243,0.05865358,0.14373598,0.11006188,-0.47069648,0.0049848384,-0.44429398,-0.19101243,-0.5399528,0.19869559,838 +893,0.34229302,-0.33783957,-0.441785,-0.17192166,-0.2530645,-0.16279149,-0.15380774,0.33761922,0.51786596,-0.1361664,-0.2246143,0.09874486,0.13562258,0.31581149,-0.0749793,-0.63942295,-0.12467036,0.20154858,-0.7931638,0.6276062,-0.53280145,0.17844461,-0.030557461,0.33548784,0.24852069,0.28078058,0.07814728,-0.013851385,0.11227215,-0.059822876,-0.0904303,0.16888939,-0.55660826,0.27097252,-0.2595823,-0.24450736,-0.047115564,-0.47912994,-0.46626398,-0.70022696,0.16795617,-0.78172755,0.5276264,-0.0027385305,-0.2500423,-0.26019564,0.10905337,0.30342343,-0.4400308,-0.09316387,0.24329878,-0.10012544,-0.25784722,-0.23492563,0.030949712,-0.2404,-0.44667006,-0.026625114,-0.5461005,0.00044577816,-0.1741879,0.18926042,-0.3392807,-0.11570915,-0.2964508,0.59837914,-0.3652126,0.05003829,0.3081575,-0.08355489,0.17948098,-0.53830975,0.07792113,-0.11255946,0.42234,0.16173352,-0.48353252,0.3675735,0.22902273,0.4062264,0.377617,-0.30261835,-0.15223835,0.008551925,0.16391958,0.35163108,-0.09810752,-0.36679086,-0.355376,0.10694277,0.2876003,0.33928332,0.14989038,-0.19425707,0.027220448,-0.12816964,-0.14302133,0.7236273,0.6194603,-0.06483766,-0.24230988,0.2949053,0.40607223,0.47141647,-0.24879865,0.10552751,-0.022141388,-0.5592333,-0.26176262,0.020318458,-0.15214522,0.5286755,-0.29100803,0.15510523,0.6790249,-0.061252583,-0.23970091,0.3127649,0.021287233,-0.21855946,-0.4894544,-0.10143294,0.18163298,-0.707475,0.08909737,-0.26095954,0.6268361,0.15205896,-0.70407265,0.4509175,-0.5786155,0.27299723,-0.071049936,0.6622347,0.9088154,0.40057865,0.46046457,0.7639752,-0.30414483,0.112115115,0.04817402,-0.49464044,0.16541904,-0.24240905,0.038453963,-0.5053999,-0.007131142,-0.285761,0.050059903,0.036939766,0.20652993,-0.5269305,-0.20807756,0.2425179,0.78298813,-0.2276706,-0.17279375,0.8580861,1.2107844,1.1009785,0.02951896,1.2527407,0.10871657,-0.18476468,0.06873293,-0.30191,-0.7553318,0.22915077,0.25537878,0.0032867193,0.2889872,-0.046994668,-0.037400987,0.35339537,-0.4882063,-0.0780176,0.057683457,0.4086727,0.008534551,-0.12847714,-0.45887718,-0.23095222,-0.138228,-0.017524824,0.05599161,0.23430276,-0.3052279,0.29055843,-0.042075366,1.0581142,-0.08652543,-0.02177821,-0.051640045,0.5004251,0.30535606,-0.2870627,0.014034301,0.31185326,0.51207036,-0.034184333,-0.55696476,0.16730142,-0.38478354,-0.1659608,0.016851127,-0.39587113,-0.11156863,0.00032514334,-0.29837608,-0.14943123,-0.12097258,-0.32632646,0.3540125,-2.9452507,-0.35878488,-0.120633684,0.30241543,-0.22625327,-0.12253627,-0.035526127,-0.5344547,0.21611251,0.20172311,0.6026308,-0.59946394,0.6131425,0.5314026,-0.7242659,-0.06066243,-0.80221564,-0.13368565,-0.0066797137,0.55259454,0.2091593,0.11817456,-0.11468294,0.044470984,0.66814905,0.24733062,0.26153517,0.50202787,0.34354892,-0.13674438,0.5779576,-0.13196607,0.62532556,-0.3846328,-0.09393863,0.30107197,-0.2309217,0.34326276,-0.27586517,-0.016878763,0.69810486,-0.4590172,-0.822025,-0.48603368,-0.20213163,1.2192348,-0.27309838,-0.30717805,0.26111725,-0.42929783,-0.045139175,0.092589974,0.5865651,0.09950764,0.032363933,-0.6575075,-0.10281972,-0.030525826,0.09212389,-0.05895467,-0.21382527,-0.39292005,0.68684953,0.017566485,0.64763886,0.10441861,0.3088431,-0.22333162,-0.2567638,0.21635783,0.7336543,0.38437164,-0.07079023,-0.21569918,-0.16834086,-0.22442944,-0.07564878,-0.024523253,0.8244992,0.52447015,-0.32824054,0.15921181,0.51832604,0.06795559,0.11550028,-0.10990936,-0.26022592,-0.19633369,0.019734511,0.42481527,0.91773295,-0.09683279,0.3957119,-0.11749347,0.22387993,-0.0788059,-0.5969024,0.6477043,0.48564327,-0.23415567,-0.079426646,0.52105993,0.5060362,-0.30854526,0.5652669,-0.4576153,-0.20571728,0.47913384,-0.056558583,-0.3661084,0.08091123,-0.33290255,0.104884095,-0.7628892,0.28598443,-0.41504917,-0.6898799,-0.44855568,-0.008717624,-3.2027254,0.20950975,-0.2574725,0.026100228,-0.30810037,-0.07216427,0.28306672,-0.52192825,-0.67809016,0.27706465,0.2192849,0.5387121,-0.24677192,0.10597313,-0.22996545,-0.18381266,-0.334131,0.20997296,0.059044432,0.29748598,-0.24381661,-0.4014369,-0.17498113,0.02959016,-0.39371124,0.17201328,-0.69016165,-0.27123845,0.09496948,-0.71027875,-0.21609445,0.5966169,-0.215123,-0.11384413,-0.2859471,0.1965288,-0.18287714,0.24522704,-0.15167947,0.20773716,0.08032538,-0.116856605,0.092728935,-0.18100613,0.5370838,-0.08034249,0.4457992,0.09898523,0.031936124,0.19020104,0.563154,0.65313977,-0.31460682,1.0953976,0.46187854,-0.15139078,0.2840325,-0.16815044,-0.3670688,-0.47480556,-0.25893623,-0.065589756,-0.45306,-0.4251003,0.10347245,-0.26100752,-0.9008174,0.5836399,0.22052716,0.5066373,0.04111916,-0.06618124,0.5392327,-0.09775529,0.03290561,0.023905924,-0.25825945,-0.5692672,-0.12772737,-0.768838,-0.4109087,0.092999965,0.7927542,-0.36970294,0.16019076,0.016116252,-0.31339458,-0.039073315,0.16304995,-0.009250323,0.16459632,0.38221917,-0.12443154,-0.4748,0.24838041,-0.08802426,0.033277106,-0.48445258,0.31002644,0.72374684,-0.70234585,0.75926566,0.34191045,-0.07266229,-0.2424953,-0.6139538,-0.25829753,-0.03257625,-0.068966374,0.59644574,0.25546303,-0.9489062,0.45464385,0.2684118,-0.47391248,-0.71140796,0.40680984,-0.23707773,-0.013933902,-0.17766666,0.20689511,0.06113858,-0.02068832,-0.19534719,0.24159145,-0.3306725,0.42761707,0.026884055,-0.06339768,0.05543651,0.07707462,-0.28808695,-0.7911274,-0.17220925,-0.61021405,-0.20596862,0.43229803,-0.04157949,0.037603788,-0.040509503,0.32827923,0.34166446,-0.18784876,0.19360258,0.037502915,-0.49671802,0.27940822,0.5602478,0.49804088,-0.40582046,0.5475512,0.3397106,-0.25817242,0.2448283,0.17838065,0.25149557,-0.105503656,0.5396275,-0.09978137,-0.025985425,0.2872937,0.9410084,-0.003687878,0.40577865,0.06334829,-0.061958443,0.24756165,-0.016003894,0.3850131,-0.06639191,-0.6128053,0.05916834,-0.28924924,0.31373382,0.45679006,0.37038228,0.1295764,0.20641303,-0.4389678,-0.17850344,0.22025774,0.008010179,-1.551639,0.47973838,0.29572526,1.0011152,0.5312541,0.19806266,-0.25249138,0.78112483,-0.09922993,0.0663955,0.5598359,-0.041603837,-0.44217432,0.66614795,-0.6120092,0.5620304,-0.044067908,-0.0041907527,0.20750456,0.02874205,0.3762491,0.91733533,-0.20611356,0.119403005,-0.016359081,-0.11393639,-0.025382206,-0.49035284,1.9227466e-05,-0.3795831,-0.36013713,0.75493366,0.5219699,0.40076038,-0.23200583,0.027680708,0.039122306,-0.092695296,0.18095751,-0.03893563,-0.23291533,-0.03685322,-0.6692796,-0.094158806,0.49101844,-0.08536895,0.2283625,-0.27080402,-0.059719414,0.12013664,-0.23061687,-0.051344395,-0.11857926,-0.75434566,-0.16623558,-0.15399557,-0.3739899,0.49442843,-0.21303064,0.08516595,0.19960962,0.07211797,-0.1441629,0.4082823,-0.06902789,0.66314703,0.015680104,-0.13328452,-0.43559495,0.119696476,0.1999187,-0.21386819,0.08144765,-0.42460564,-0.02968208,-0.44219935,0.62090623,-0.0005723263,-0.5481333,0.05252527,-0.056074616,0.045886915,0.5624744,-0.073148094,-0.2529063,0.0014958804,-0.1996733,-0.5291569,-0.1301029,-0.1659652,0.26733908,0.38445416,0.0112069845,-0.1351505,-0.2866337,-0.060216546,0.3642238,0.023893895,0.48538554,0.26069483,-0.018529078,-0.14770481,0.05338115,0.35842422,0.63255656,0.15506716,-0.10043853,-0.26215774,-0.20082752,-0.41168055,0.09793198,-0.005742045,0.25856212,-0.14518659,-0.17162192,0.7234512,0.027003715,1.349306,0.068277925,-0.3165736,0.12700354,0.48569584,-0.06966441,-0.13259536,-0.46851525,0.8866859,0.48297134,-0.16820385,0.092471026,-0.7333162,-0.13805194,0.25788477,-0.23767714,-0.13216995,0.07899667,-0.54681057,-0.24639912,0.3207219,0.17136554,0.24912007,-0.04298837,-0.16614382,0.16685838,0.07301376,0.26185504,-0.6882712,-0.31758028,0.16731493,0.3904948,-0.054379344,0.10410279,-0.43296227,0.34371388,-0.6070879,0.12735355,-0.27522716,0.17148201,-0.43980756,-0.4660686,0.14145239,-0.054502692,0.4650899,-0.36199757,-0.43442023,-0.1464088,0.39911938,0.014325331,0.08453632,0.63746315,-0.32175612,-0.101610325,0.26640275,0.6070348,0.90443796,-0.4188194,-0.1284868,0.19682848,-0.51634485,-0.7057523,0.32140088,-0.31455085,-0.013913061,0.0101963235,-0.36220825,-0.49950215,0.2420528,-0.051576655,0.22425228,0.17165047,-0.77431256,-0.051051393,0.17384559,-0.25112876,-0.2045591,-0.20490646,0.21448976,0.6972966,-0.3208878,-0.47999218,0.100069426,0.10273931,-0.22905737,-0.57977253,-0.1554607,-0.30198544,0.27677488,-0.01583759,-0.38330165,-0.12970519,-0.06488982,-0.5317327,0.14826967,0.027050382,-0.281387,0.25226614,-0.020593137,-0.20827906,0.92594594,-0.31871566,0.15091866,-0.46310148,-0.5779224,-0.7169874,-0.268414,-0.058248866,0.25102976,-0.096098624,-0.5170159,-0.0038021207,0.008216579,-0.18095462,0.059114683,-0.53733355,0.48525694,0.035278246,0.40185046,-0.26780882,-0.99024504,0.21772937,0.2652472,-0.061564434,-0.7416083,0.55673,-0.11905112,0.7950924,0.08310688,-0.009684831,-0.12312722,-0.2853841,0.055437934,-0.34802762,-0.10005156,-0.72753936,0.073019914,844 +894,0.35313746,0.06724202,-0.6347367,0.08140942,-0.5102296,0.11913839,-0.22436558,0.26040637,0.33482718,0.0072579184,0.18406911,0.10586617,-0.38151255,0.30103722,-0.16559726,-0.8098027,-0.09690859,0.100015186,-0.6378106,0.45623946,-0.29824463,0.4437389,-0.13182901,0.36820826,-0.09354317,0.25549087,-0.04600385,0.12958924,0.010321866,-0.26919785,-0.10051185,0.29712656,-0.6966491,0.36988762,0.075365245,-0.30186883,-0.01174095,-0.32270297,-0.24372715,-0.71575445,0.27251637,-0.674735,0.7155943,-0.15800422,-0.3975296,0.19953413,0.015939096,0.13479547,-0.22958608,-0.032316644,0.17552726,-0.28187862,-0.012231837,-0.18696038,-0.30548742,-0.4805301,-0.41860273,-0.11719084,-0.62549317,0.13742262,-0.29393396,0.318704,-0.33349642,-0.09667599,-0.46847042,0.1679005,-0.26818076,0.17574997,0.2889692,-0.33100143,0.04092783,-0.46754912,0.019596497,-0.09897664,0.36569738,0.037751243,-0.18314928,0.29658812,0.24189258,0.39979103,0.0715274,-0.2545003,-0.34238967,-0.096086584,0.04113919,0.40722093,-0.23001058,-0.08407269,-0.2599804,-0.016782636,0.61212933,0.37773314,0.16214207,-0.08558307,0.00015865763,-0.19140081,-0.09298032,0.39904806,0.35906994,-0.40729105,-0.24700756,0.6014113,0.43450972,0.3296295,-0.16189511,0.2858565,-0.22161321,-0.34656644,-0.17511205,0.04828928,-0.007831007,0.2987322,-0.14671104,0.09251439,0.7150112,-0.098297305,-0.012899409,0.04093041,-0.23040684,-0.0010478199,-0.21559311,0.06404408,0.18713279,-0.45996055,0.1813013,-0.14663558,0.5383852,0.096885405,-0.6779552,0.23365915,-0.55912167,0.16837464,0.06967684,0.5740947,0.8107547,0.6687689,0.080751725,0.9969456,-0.47612843,0.09182169,0.12956847,-0.3462601,0.2634396,-0.025822828,-0.031300258,-0.44477972,0.17808492,0.08469232,-0.123993576,0.18357821,0.15188551,-0.5856669,-0.2244824,0.01644127,0.45977542,-0.2818772,-0.17414792,0.80336046,1.019641,1.0066496,-0.03328861,1.1840189,0.31701863,-0.067494385,-0.1929909,-0.03396898,-0.5857165,0.18172275,0.3424313,-0.38574454,0.5523891,0.055907022,0.00956427,0.27753785,-0.13603179,-0.27825573,0.044799965,0.42941284,-0.060069975,-0.37254548,-0.36116982,-0.050130542,0.27146843,-0.067952335,0.008999427,0.41315746,-0.10880873,0.5398897,0.29623243,1.0186657,0.028396547,0.1855696,0.071240306,0.27826166,0.3000754,-0.3048723,0.10298479,0.33246845,0.26822165,-0.1062595,-0.42547593,0.086663574,-0.3188824,-0.3692176,-0.15883137,-0.34511697,-0.26675034,-0.024804756,-0.2102127,-0.3040743,-0.09521258,-0.10392526,0.4161493,-2.5823128,0.064392656,-0.1972689,0.26378295,-0.18882896,-0.35611805,-0.14328073,-0.5009803,0.22620618,0.16012461,0.45727864,-0.5130363,0.33736685,0.42854074,-0.5080903,-0.14278686,-0.6471066,0.1439804,0.13310999,0.37805519,-0.20777534,-0.15566342,-0.08449767,0.054963898,0.5365197,0.15078102,-0.01623516,0.37125304,0.6552816,-0.16162921,0.25427863,0.039012995,0.7458406,-0.17252834,-0.22273022,0.52530587,-0.40823093,0.63973224,-0.15115963,0.010087669,0.5335694,-0.3405881,-0.8318708,-0.40043533,-0.07821511,1.4188968,-0.41594768,-0.49443784,-0.030314513,0.17315786,-0.31670582,0.1731086,0.28203312,-0.016469618,-0.060907554,-0.4726951,-0.12626274,-0.17420745,0.30682456,-0.06648236,0.12204676,-0.37868336,0.6581668,-0.16151346,0.52738065,0.23451401,0.20184487,-0.1928811,-0.5135021,0.047404964,0.73211545,0.45869613,0.087703265,-0.22593582,-0.20988657,-0.18041885,-0.19922149,0.133738,0.6343038,0.37183246,-0.1531651,0.110587604,0.3548809,-0.036305696,0.157066,-0.1753598,-0.33857915,-0.18953419,0.048815046,0.48193586,0.71870154,-0.12750666,0.3715631,0.021211928,0.1326695,-0.11927996,-0.58484286,0.5399797,0.5260631,-0.30048797,-0.3028234,0.6368889,0.35467485,-0.15280376,0.46096754,-0.43309116,-0.36691174,0.50113046,-0.19575854,-0.39324495,0.13484198,-0.13661923,-0.07941821,-0.596378,0.22453457,-0.40080723,-0.6311099,-0.37571335,0.0021104813,-2.5194087,0.097280204,-0.15842949,0.098650254,-0.33964944,-0.17264809,0.15163164,-0.62908804,-0.81613976,0.09228873,0.11859218,0.394955,-0.259243,0.11470399,-0.2549155,-0.49186006,-0.2722616,0.40251568,0.13345152,0.2597033,-0.15104838,-0.27976394,0.067372255,0.01857251,-0.35557207,-0.030715128,-0.58998424,-0.28378797,-0.007057158,-0.38970605,0.05509388,0.7427635,-0.7493324,-0.09683365,-0.3447791,0.0482306,-0.113514304,0.07128075,-0.060436275,0.17224227,0.19481523,-0.073209055,-0.021516135,-0.24240331,0.42402124,0.11446353,0.45655417,0.46757045,-0.27840427,0.07120619,0.5065567,0.6804312,0.048302457,0.8560893,0.0008730094,-0.10780362,0.36363232,-0.16878061,-0.252297,-0.7698752,-0.21426909,-0.029347867,-0.49005833,-0.47190228,-0.09422639,-0.370909,-0.8562172,0.45930722,0.17811787,0.37821195,-0.18762736,0.573081,0.41519532,-0.1501993,0.22500253,-0.10726521,-0.18149228,-0.41091296,-0.2681986,-0.63968295,-0.5366343,0.4714936,1.0530642,-0.38104784,-0.017172141,0.21551855,-0.2708973,0.08718556,0.051390957,0.12507685,-0.0219419,0.40993062,0.16030753,-0.5336387,0.25360814,-0.16585527,0.06491759,-0.44694814,0.15600516,0.6436231,-0.60595196,0.3669022,0.27742872,0.14093171,0.09019772,-0.79630023,-0.18303962,0.103186436,-0.26444578,0.550001,0.409651,-0.6040259,0.434401,0.21902014,-0.28591907,-0.5569766,0.3957595,0.0056201755,0.017405376,0.058371395,0.425303,0.21849166,-0.17111742,0.0897725,0.26429763,-0.47741327,0.34307232,0.16477425,-0.21584225,0.03872047,0.04677187,-0.49256435,-0.6755734,0.13956176,-0.41863048,-0.475276,0.13464937,-0.01108921,-0.06725826,0.052131563,0.22621827,0.43750763,-0.3062174,0.13689512,-0.13733979,-0.22632362,0.5623857,0.4192591,0.52094096,-0.48131755,0.55583483,0.19035666,0.03227497,0.19794846,0.029327968,0.5477609,0.099264346,0.38651857,0.0970093,-0.14936063,-0.01606098,0.6012984,0.15045136,0.06325365,-0.06734138,-0.17460132,0.14224993,0.14752983,0.34983802,-0.14224671,-0.5685406,-0.04415543,-0.06266148,0.031395283,0.6161565,0.20870261,0.21188648,0.03620482,-0.12009019,0.16673182,0.024644231,-0.23056285,-1.2894534,0.3268346,0.174855,0.78371304,0.41694626,0.19086225,0.14024873,0.56394476,-0.2944911,-0.06491346,0.51280195,0.04547289,-0.39818177,0.47632906,-0.5897748,0.4944509,-0.13315989,0.05761075,0.32008502,0.2131838,0.35518518,0.99377805,-0.15954103,-0.0081987055,-0.08285144,-0.26204407,-0.03614992,-0.095203824,0.22577035,-0.39491925,-0.25727606,0.62941545,0.38140178,0.36100277,-0.4618683,-0.008978954,-0.0774078,-0.24807633,0.06960876,-0.06283194,0.008515249,-0.17708902,-0.19854899,-0.18550521,0.61098486,0.016525984,-0.07113885,-0.16665004,-0.27242282,0.30032364,-0.20753269,-0.04371324,-0.050030816,-0.61901784,0.020285273,-0.33966517,-0.51050305,0.10189852,0.07049853,0.1283634,0.18952467,0.13486801,-0.08473473,0.3448976,0.08429734,0.63541144,-0.11908888,-0.09528681,-0.30380303,0.34369263,0.13931935,-0.18413483,-0.032308314,-0.22699307,0.21848501,-0.38321152,0.24596588,-0.29792616,-0.40824234,-0.18086076,-0.1725394,-0.01910544,0.30137837,-0.16762345,-0.1974291,0.10777233,-0.26117408,-0.4039557,-0.3221365,-0.29641804,0.013289981,0.13115294,-0.1486067,-0.14293665,-0.23842324,-0.1578017,0.023664564,0.09397968,0.14038244,0.29988465,0.03461827,-0.47208014,0.12441673,0.04759021,0.461771,-0.06156404,0.13005613,-0.23585276,-0.48745927,-0.454797,0.61215425,-0.2479134,0.2819055,-0.00786515,-0.39434114,0.720519,-0.05987666,1.1723613,-0.05350706,-0.41214898,0.08686312,0.6207021,0.09138621,-0.08648849,-0.27468404,1.0970881,0.57860845,-0.038413938,-0.028461128,-0.3834214,-0.36327243,0.14512919,-0.40940607,-0.032529622,0.07902897,-0.41467288,-0.059572835,0.18234873,0.08624491,0.06431863,-0.06910942,-0.14395268,0.15555917,0.19523233,0.3677999,-0.5878943,-0.5563331,0.26688007,0.26576006,-0.052414056,0.2198803,-0.31304967,0.29531947,-0.7944889,0.17747164,-0.46184537,0.06622309,-0.17681247,-0.26990134,0.19799496,-0.17097135,0.2565627,-0.34436098,-0.33374104,-0.117236495,0.4319069,0.2757947,0.2544674,0.74684834,-0.21769816,-0.089281894,0.026573235,0.43039712,0.9177305,0.0067623355,-0.19912088,0.23055476,-0.28504595,-0.65784043,-0.030172497,-0.53405815,0.17053902,-0.11349394,-0.4222125,-0.29285073,0.27437094,-0.09458544,0.18668449,-0.039548356,-0.7614849,0.021428386,0.29905176,-0.37491372,-0.21477847,-0.3325574,0.105501294,0.8622315,-0.25935233,-0.48885942,0.114536084,0.24080242,-0.2454326,-0.81287175,0.10214982,-0.20149688,0.2914547,0.0981166,-0.41097602,0.095332555,0.3135117,-0.44891128,0.18475239,0.38062933,-0.29274216,0.11344432,-0.2946951,0.14104524,0.68436646,-0.28296962,0.08793059,-0.5012189,-0.54346085,-0.8307856,-0.44593874,-0.1701439,0.22789662,0.035123225,-0.7515469,-0.07720005,-0.42803955,-0.08474189,0.07896714,-0.44127646,0.46515122,0.18438447,0.5068206,-0.27191827,-1.1541957,0.04860949,0.10875982,-0.073246345,-0.58880335,0.56750995,-0.1905737,0.7025587,0.065455705,0.040414423,0.17315018,-0.72744274,0.41546762,-0.27636108,0.04956316,-0.6531419,0.2684792,850 +895,0.4838986,-0.31513846,-0.39774475,-0.04729781,-0.20619977,-0.16515197,-0.034184296,0.72467756,0.3804036,-0.42644405,-0.24563706,-0.1883897,-0.039441835,0.48074737,-0.0903287,-0.40528357,-0.04493019,0.32605532,-0.42388368,0.5645409,-0.32328627,0.07076294,-0.028349236,0.6041642,0.035319418,0.08604491,0.1269946,-0.04356988,0.021450654,-0.29950616,-0.1015537,0.37622157,-0.77407855,0.31257984,-0.39732847,-0.46342218,-0.060792,-0.5454661,-0.37054488,-0.8228056,0.12176037,-0.82573,0.46528652,0.2310585,-0.37080035,0.31417346,-0.07884355,0.16018936,-0.39621934,-0.13611327,0.1806726,-0.23296745,-0.067434855,-0.3490356,0.044725467,-0.122522004,-0.6901429,0.07510935,-0.3077599,0.036786493,-0.3455598,0.14599262,-0.33347812,-0.08395395,-0.1751339,0.7759445,-0.3292388,0.16188334,0.20042945,-0.2052027,0.2353764,-0.4474186,-0.18800442,-0.20400566,0.13858128,-0.07946958,-0.48472893,0.20395958,0.01887246,0.5238718,-0.059523012,-0.12447066,-0.34801093,0.096859924,-0.035737902,0.39075956,-0.28398952,-0.649297,0.019184167,0.16125336,0.17487751,0.14509724,0.066380076,-0.17778593,-0.16091038,-0.14445393,0.029810267,0.4830813,0.4551486,-0.28517887,-0.27269733,0.33970943,0.5513394,0.12863392,0.038647246,-0.06856895,0.095134735,-0.76039433,-0.20794795,-0.110414565,-0.20102578,0.6447338,-0.20028931,0.34525585,0.61502665,-0.1979465,-0.3560661,0.13451457,0.18307151,0.0308182,-0.4662582,-0.38478482,0.66362906,-0.3767437,0.16015027,-0.27304587,0.7890811,0.14038251,-0.74992746,0.2125082,-0.5454768,0.19212753,-0.08664214,0.6074244,0.7594002,0.7236169,0.5704945,0.6692431,-0.3737942,0.059232403,-0.13723563,-0.2957644,0.079345606,-0.4475812,-0.13999262,-0.37785587,-0.079305924,-0.055119123,-0.13734163,0.18655436,0.28444147,-0.6984668,-0.2579629,0.43618774,0.44994068,-0.15549193,-0.077711076,0.8611122,0.9527121,1.2100917,0.09325683,0.9973552,0.10697148,-0.23488235,0.27904797,0.03497721,-0.8183243,0.31647536,0.2860769,0.028117875,0.13674663,0.06246933,-0.06542677,0.37513062,-0.5964108,-0.16649629,-0.18837889,0.12450257,0.07805983,-0.061496824,-0.6016807,-0.3477005,-0.22837645,0.117628366,-0.11843797,0.32492796,-0.21028619,0.4768921,-0.04844135,1.4249727,-0.03335492,0.09031295,0.25010362,0.42913875,0.14777443,-0.21472478,-0.147047,0.39305404,0.22388314,0.30950645,-0.46918154,0.047065523,-0.21398605,-0.503084,-0.07332467,-0.26080546,0.047530472,-0.0040855086,-0.38776538,-0.3495657,-0.24415052,-0.30047885,0.47640193,-2.6062925,-0.10196129,0.09188681,0.459793,-0.27842844,-0.28536996,-0.07375094,-0.5924806,0.42596936,0.35648513,0.60340023,-0.6763406,0.062097285,0.4368789,-0.790572,-0.13390431,-0.7319073,-0.05507647,-0.11926139,0.34507954,0.081424154,-0.13872279,0.0027555202,-0.027612321,0.522892,0.006661678,0.0991927,0.34514666,0.41904366,-0.16136378,0.4456992,-0.13283649,0.3803935,-0.67826843,-0.2949792,0.3923613,-0.3048317,0.18426554,-0.13351375,-0.030851254,0.57300115,-0.54193187,-1.0009629,-0.5707541,0.05045985,1.3180746,-0.13922279,-0.43885055,0.13502438,-0.49896744,-0.09277725,-0.14061213,0.5499404,-0.13444519,0.0030473967,-0.770405,-0.033132862,-0.003911262,0.29668364,0.012183267,-0.15148537,-0.56487167,0.7197444,-0.013405733,0.45486116,0.4175863,0.08062927,-0.38509187,-0.5959284,-0.05306776,0.7941101,0.30810353,0.20548685,-0.281882,-0.15957539,-0.16233161,0.25035173,-0.014503844,0.5796816,0.5258419,-0.21313995,0.11687534,0.3607582,0.16474448,0.058981802,-0.14512919,-0.17224193,-0.27874124,0.0013710359,0.6397569,1.0684186,-0.16974789,0.17396843,-0.10821992,0.27362975,-0.009802704,-0.40412894,0.49811673,1.2153642,-0.09444185,-0.26889947,0.7275901,0.53255624,-0.024672538,0.49991488,-0.4811217,-0.4114765,0.31805274,-0.28776506,-0.5150259,0.1082071,-0.22752674,0.1400831,-0.7907886,0.28653222,-0.2545894,-0.5088173,-0.912286,-0.0795644,-2.8475845,0.39022934,-0.41577432,-0.11018769,-0.15788907,-0.19337319,-0.014793686,-0.64427084,-0.49840125,0.26568803,0.29961494,0.6765364,-0.26684594,0.23699605,-0.25572568,-0.49447057,-0.24712777,0.059320062,0.17254601,0.29793113,0.117627926,-0.44859624,0.03546837,0.06688013,-0.31471244,-0.023919502,-0.6412696,-0.34592184,-0.17461596,-0.58880967,-0.36421368,0.6282165,-0.2970296,0.018395126,-0.1897403,0.024800545,0.11604201,0.14895312,0.002111045,0.24185656,0.061960384,-0.085533194,-0.12339123,-0.13565128,0.25152633,-0.034589037,0.28175342,0.3291665,-0.41969118,0.17103402,0.64465594,0.8274997,-0.2456946,0.96148634,0.75589734,0.019757971,0.177447,-0.0494377,-0.358446,-0.5989779,-0.17172654,0.014811191,-0.48843065,-0.19444251,0.261013,-0.37583184,-0.9144073,0.82712746,-0.10596948,0.14423822,0.088159226,0.33765355,0.755394,-0.3595363,-0.11732479,-0.039317206,-0.09223097,-0.5200288,-0.27937672,-0.5496964,-0.45404485,-0.07773151,1.141344,-0.26948294,0.16827594,0.16298337,0.0072393916,0.027935192,0.27175447,-0.257925,0.284896,0.5537365,0.123232506,-0.6056397,0.4782156,0.11472807,-0.19225836,-0.44253635,0.45541772,0.58377415,-0.69057244,0.5890568,0.31475803,-0.13277785,-0.18442076,-0.8179712,-0.38415012,-0.19700103,0.013888188,0.37690958,0.39184856,-0.86445594,0.44675946,0.29645982,-0.3502364,-0.93946654,0.3212515,-0.084517516,-0.56846017,-0.010970995,0.243111,0.12114359,0.017034808,-0.11672711,0.28869438,-0.2561008,0.24187748,0.07262803,-0.2151174,0.085684456,-0.329914,-0.0011657426,-0.94637203,0.1269794,-0.57896,-0.50675476,0.41735157,0.18706529,-0.123793684,0.20170414,0.09752092,0.41352597,-0.11905842,0.05668689,-0.29713202,-0.29011968,0.47292247,0.54944927,0.5301866,-0.53538436,0.6515577,0.094483845,-0.11523875,-0.29738316,-0.04830258,0.35164163,-0.17900144,0.5391855,-0.26368043,-0.28900072,0.13512714,0.546613,0.15887724,0.4057641,-0.07762697,0.18517531,0.41558954,0.14907427,0.36803487,-0.20819306,-0.6371271,0.21774842,-0.43922806,0.039814588,0.4642377,0.09665636,0.26267052,-0.13114731,-0.22512239,-0.025195064,0.18712403,0.124584645,-1.3610988,0.275008,0.13998543,0.8539789,0.6271712,0.06853008,-0.084491454,1.0487584,-0.13497595,0.05964735,0.3665397,0.07772092,-0.37068495,0.6582025,-0.86064005,0.41006318,-0.086760014,-0.045020718,0.04324017,0.04164555,0.39532098,0.5126677,-0.15715939,0.003436327,-0.047298353,-0.30211523,0.1228629,-0.46954522,0.27390188,-0.6395175,-0.30965424,0.807157,0.6213713,0.4186709,-0.29101446,0.01945969,0.114837445,-0.19268231,0.19558424,-0.007488484,-0.02733013,0.0983544,-0.687443,0.20850937,0.5481949,0.12674783,0.16674237,-0.1751443,-0.23164213,0.30011728,-0.19241536,-0.36222374,-0.22750938,-0.654979,-0.014715474,-0.36650148,-0.32050577,0.5585646,-0.09414369,0.28516477,0.26775208,0.13254784,-0.35892108,0.19986564,0.040261686,0.93177557,0.021965573,-0.17120688,-0.23992006,0.4088602,0.024257889,-0.15838963,0.011480659,-0.26541355,-0.039203864,-0.39578697,0.33793512,0.019780962,-0.28613904,-0.0051655746,-0.033858508,0.058463525,0.6231044,0.040834706,-0.104256004,-0.107958496,-0.26891193,-0.3883184,-0.23871402,-0.06120482,0.33557415,0.22534609,-0.079594806,-0.13214162,-0.12682208,-0.05467583,0.53678656,0.02607893,0.30519888,0.07683992,0.0957906,-0.2986709,0.15664583,0.03085724,0.58105904,0.06462737,-0.22675198,-0.21822153,-0.3563713,-0.49799657,0.012052705,-0.018389858,0.48449448,0.050979376,-0.01899239,0.8516154,-0.0102616,1.1011099,-0.14136313,-0.4227616,0.126923,0.5974779,0.0075681657,-0.13280797,-0.31161335,1.0202192,0.50907665,-0.104430705,-0.040939357,-0.2500944,0.07473838,0.032752305,-0.14053194,-0.29890954,0.047207084,-0.52623963,-0.10951228,0.21645899,0.2810439,0.35732985,-0.21775909,0.0018782517,0.2771114,-0.115885474,0.32814065,-0.23802269,-0.13233821,0.23175621,0.44212794,0.046909083,0.029973432,-0.3881797,0.35000005,-0.5530353,0.1439211,-0.34310624,0.22565542,-0.45622006,-0.32767108,0.27231494,0.12337917,0.45983553,-0.4562813,-0.30670905,-0.209689,0.46206853,0.2159868,0.14950062,0.6202648,-0.28000268,-0.078815274,-0.010704677,0.28122154,0.93659943,-0.49010015,-0.13391657,0.40341577,-0.23217863,-0.5864236,0.49050328,-0.2484104,0.18595822,-0.05710524,-0.20728588,-0.5596841,0.07899868,0.25033462,0.21519317,0.021925712,-0.8019755,-0.008209109,0.3520906,-0.25846797,-0.1028787,-0.33493415,0.09315469,0.47327504,-0.12360752,-0.54028153,0.18250048,0.105755866,-0.06875327,-0.5100226,-0.07346627,-0.49787745,0.086719394,0.12282255,-0.47035834,-0.13733836,-0.03770404,-0.5871032,-0.06821262,-0.02085498,-0.28860947,0.10861655,-0.49386367,0.014362897,1.0463293,-0.28238735,0.55240923,-0.3402978,-0.49377465,-1.0207895,-0.121769756,0.7151244,-0.024207732,0.14395244,-0.70249224,-0.057969093,0.023930343,-0.41490945,-0.23130198,-0.29698253,0.46485996,0.23013711,0.35298786,-0.14875543,-0.6835671,0.37480986,0.16913612,-0.08331333,-0.49143443,0.2439525,0.15422113,0.93729764,-0.06742259,0.13320358,0.27366433,-0.65732807,-0.08947428,-0.09554866,-0.19958133,-0.492061,-0.0834525,855 +896,0.5093909,-0.21647857,-0.5275784,-0.15787746,-0.47241855,-0.08791115,-0.2747427,0.28103164,0.35746565,-0.23174922,-0.36622146,0.02363482,-0.12937461,0.3775157,-0.17230624,-0.7439545,-0.18069406,0.14098819,-0.75974137,0.59585893,-0.32152244,0.31056848,0.01708962,0.240557,0.42261449,0.3659766,0.11635259,0.011840413,0.091370255,-0.19700007,-0.023274263,0.058641333,-0.703608,0.33396116,-0.15531458,-0.14517824,-0.07560603,-0.5273496,-0.39358458,-0.833597,0.2306674,-0.9262077,0.6180152,-0.12822215,-0.19199939,-0.22193564,0.32966185,0.44860676,-0.2669488,-0.023925826,0.32073978,-0.15023965,-0.2668871,-0.06622241,-0.049549516,-0.34945285,-0.6194069,-0.26566947,-0.653805,-0.19557379,-0.3698472,0.27972227,-0.29196241,-0.14688824,-0.31914717,0.43976834,-0.5376101,0.10567983,0.28335035,-0.025861396,0.43690586,-0.67067695,0.08405008,-0.2731204,0.4215536,-0.0629765,-0.25993982,0.50805634,0.2539012,0.24807608,0.3530215,-0.3135329,-0.25496653,-0.163838,0.3026484,0.21818875,0.022310555,-0.28854978,-0.3240334,0.049648717,0.49999666,0.4500154,0.14554109,-0.45608327,0.02193492,-0.07254567,-0.11543087,0.8993573,0.44676033,-0.030457241,-0.22233492,0.3076874,0.6399968,0.5826101,-0.31280324,0.037749663,-0.07054637,-0.4664259,-0.13991332,0.355688,-0.19850107,0.49195445,-0.0833943,-0.18279429,0.77229136,-0.25394198,-0.17958243,-0.021992497,0.043490637,-0.11588764,-0.13174447,-0.3223551,0.10248073,-0.56172484,0.28491718,-0.23741095,0.5532556,0.16251624,-0.7939485,0.22195534,-0.6710585,0.08793708,-0.009337172,0.70000666,0.7969007,0.64356935,0.37694302,0.8535447,-0.21792738,0.24347629,0.0032725434,-0.36213258,-0.099972725,-0.3793044,-0.06988368,-0.43213236,-0.15552624,-0.40415335,-0.11112326,-0.19981581,0.6304553,-0.50066406,-0.118263446,0.11436709,0.582926,-0.2636524,-0.077420734,0.79733866,1.1272511,1.154755,0.064124994,1.3440751,0.13883038,-0.26558912,-0.01800855,-0.27091065,-0.66039425,0.22472574,0.3492514,-0.20272106,0.38781595,0.006242866,0.05543895,0.17170306,-0.5712512,0.16506608,0.07593884,0.4338552,0.0752232,-0.14418273,-0.35965466,-0.1785137,0.036590815,0.20623215,0.13929848,0.21223621,-0.35630807,0.20928578,0.13396613,1.1766821,-0.2744394,-0.0724936,0.021402532,0.66694355,0.26438245,-0.10367209,-0.19568439,0.3262942,0.6324172,-0.038144797,-0.7822106,0.10508368,-0.30707762,-0.30390683,-0.2054683,-0.43805578,-0.20349753,-0.017556151,-0.23573184,-0.18356414,-0.046352725,-0.5098073,0.5270509,-2.36006,-0.32438326,-0.17612238,0.3131442,-0.4232264,-0.03892824,-0.038421795,-0.61692137,0.29438296,0.08486577,0.5943981,-0.6748469,0.6228513,0.65962046,-0.78819776,-0.16957057,-0.71178705,-0.12382903,0.037004456,0.5355729,0.035626844,0.073552154,0.025056908,0.20978172,0.6899629,0.21561898,0.15500927,0.66203517,0.45373273,-0.04883736,0.7502122,-0.06663468,0.6401423,-0.20323862,-0.09125439,0.48469868,-0.1866587,0.32236084,-0.43572244,0.0091514485,0.66347104,-0.63353926,-0.922558,-0.716252,-0.5620604,1.0757549,-0.42859137,-0.52974725,0.28827825,-0.39283717,-0.007744173,0.15172443,0.6547432,-0.1846658,0.2332,-0.6683571,-0.063146956,0.04285716,0.2639765,0.042087242,0.014775023,-0.51068354,0.87597847,-0.0749092,0.65837795,0.2130072,0.2380848,-0.3058816,-0.51080817,0.29802433,0.82044667,0.3696921,-0.0686399,-0.37440506,-0.14301933,-0.2608655,-0.15485175,-0.042966664,0.7612598,0.54487544,-0.17884134,0.08329003,0.35075736,-0.20035686,-0.023351768,-0.2094689,-0.32776636,-0.18362789,0.028652003,0.46983233,0.84373283,-0.07349671,0.652072,-0.22358851,0.055073734,0.052450877,-0.5414669,0.69476813,0.78010684,-0.094164304,-0.12601721,0.67816883,0.6357855,-0.27880463,0.6083488,-0.6348105,-0.2038542,0.7383539,-0.06537091,-0.5275013,0.21971567,-0.34886137,0.030773118,-0.70903367,0.29403272,-0.518377,-0.64677167,-0.24545877,-0.03591573,-2.4547415,0.1444931,-0.17249663,-0.19981106,-0.3796606,-0.113839746,0.27928463,-0.6712101,-0.84615797,0.23155479,0.15101159,0.7323399,-0.119996525,-0.02257683,-0.23362784,-0.307115,-0.15163572,0.29419288,0.059823975,0.34834722,-0.3557408,-0.43545222,-0.06160875,-0.034209535,-0.6895879,0.053971577,-0.484612,-0.4015158,0.0014487952,-0.6388381,-0.12595586,0.65730065,-0.49307612,-0.015056231,-0.17756683,0.09720406,-0.07573502,0.26665547,-0.042337317,0.3291249,0.29731032,-0.086129814,0.04911405,-0.039095584,0.583206,-0.013143112,0.2584072,-0.04691747,-0.123473145,0.24114628,0.4969213,0.674891,-0.33394837,1.2504896,0.47329482,-0.11961458,0.18910754,-0.12207287,-0.27325872,-0.7787323,-0.16793306,0.014301677,-0.47849616,-0.6434881,0.07890848,-0.21869166,-0.91582537,0.5901743,-0.045996,0.54582745,-0.007111589,-0.15373944,0.33956218,-0.22259694,0.117360406,-0.13137566,-0.25793144,-0.52715605,-0.41749787,-0.669689,-0.37381232,-0.29888782,0.9992382,-0.30982468,0.020512799,0.02910459,-0.5737855,0.20711704,0.14206299,0.029017195,0.18738677,0.36764503,0.1787769,-0.64930123,0.19543749,-0.044661324,0.21267574,-0.4327111,0.32720092,0.844024,-0.55995303,0.5710048,0.23474067,-0.013766791,-0.36082003,-0.6916341,-0.06039187,-0.039052725,-0.31867623,0.50960505,0.22110885,-0.7724262,0.36268297,0.039599072,-0.5856883,-0.8120343,0.67938036,-0.16323537,-0.10419193,-0.08245764,0.4067366,0.17714827,-0.043433893,-0.34357083,0.36450443,-0.18213134,0.27045572,0.12259837,-0.087920405,0.06437534,-0.09421877,-0.3051915,-0.9103791,0.19296275,-0.5258177,-0.3556864,0.3574234,-0.12335809,-0.0010351943,0.15566607,0.3563914,0.39743522,-0.23203336,0.15509556,-0.0069861,-0.517314,0.22595252,0.62693805,0.5607373,-0.41714072,0.56031865,0.20269288,-0.21890163,0.096969746,0.1136175,0.3723701,-0.18504769,0.44082963,0.09034318,-0.1549345,0.23551528,0.94343203,0.15568374,0.5152015,0.16647309,-0.23541999,0.35569465,0.049716245,0.51083136,-0.14581811,-0.7209904,0.09452969,-0.18206613,0.13051392,0.54292274,0.23482418,0.28947198,0.10799915,-0.24173473,-0.051481556,0.13984853,-0.120090075,-1.7397417,0.3990951,0.38273588,0.90479755,0.56425476,0.18238233,-0.037905704,0.6881415,-0.316106,0.025170362,0.5459428,0.13981505,-0.5134337,0.5375909,-0.6678872,0.46903706,0.05129094,-0.077759854,0.29198885,0.10658834,0.49155235,1.0029539,-0.24947983,-0.08012792,-0.030568326,-0.1855771,0.03664722,-0.3947399,0.17424488,-0.502931,-0.5896893,0.7721627,0.5073572,0.3908668,-0.13075462,-0.0078089857,0.04098976,-0.19165182,0.29018575,0.002426843,-0.2629029,0.06936783,-0.5436254,-0.076276824,0.52489597,-0.1326675,0.008681419,-0.112927,-0.062579624,0.042144593,-0.18156286,0.10246689,-0.002468365,-0.9946656,-0.21252312,-0.19833322,-0.31429267,0.17966503,-0.35116363,0.0854716,0.22066809,-0.120406896,-0.14763868,0.40295553,0.27299,0.6962113,0.21440391,-0.19558509,-0.26333848,0.009093697,0.22203211,-0.24422847,0.2334714,-0.116913445,0.05480017,-0.6466493,0.55480605,-0.23744363,-0.6473728,0.2256303,-0.33335122,-0.13737798,0.5693182,-0.04938781,-0.19120677,0.112136446,-0.38643312,-0.34280184,-0.17412455,-0.22797664,0.21006273,0.24468075,-0.08735078,-0.24266829,-0.08215516,0.041912127,0.38734755,0.05582228,0.5984486,0.16908729,0.098017894,-0.25713772,0.0040374002,0.2254887,0.54985064,0.29288572,0.06958661,-0.33189443,-0.3125994,-0.4714098,0.29443464,-0.05157836,0.23799126,-0.07999763,-0.22438495,0.8228603,0.13804431,1.2237159,-0.006608203,-0.42731485,0.1261537,0.6019642,-0.30993262,-0.0650897,-0.40364566,0.8298691,0.5420867,-0.13792562,-0.14338338,-0.59597874,-0.14259763,0.108190335,-0.3236714,-0.04200794,0.01391996,-0.50208116,-0.20057298,0.2710483,0.17918432,0.050996453,0.011183252,-0.13391383,0.2907319,0.24552377,0.48729038,-0.66139585,-0.06014141,0.2552745,0.18395846,0.09257921,0.087964036,-0.2999555,0.37826642,-0.6918075,0.3053763,-0.25771666,0.08042042,-0.4834355,-0.3482429,0.1603866,0.010332778,0.414682,-0.25652218,-0.38451532,-0.1972369,0.5197484,0.0363085,0.1449987,0.6835006,-0.33525327,0.18403338,-0.052856375,0.55125767,0.9666558,-0.503765,0.13485257,0.25611904,-0.61766106,-0.5140402,0.3867965,-0.57478356,0.062174007,0.014431812,-0.48962045,-0.48874855,0.14660524,-0.0009298722,0.17132886,0.15274435,-0.84657925,-0.118149854,0.26051423,-0.11926039,-0.2491685,-0.22945602,0.31225517,0.67716175,-0.25213504,-0.5963838,0.09992581,0.3089104,-0.28426746,-0.4287866,-0.055425603,-0.10521203,0.3511436,-0.31162244,-0.33663973,-0.1463763,0.097347714,-0.51787525,-0.0705267,0.19043346,-0.3748769,0.12520248,-0.09284606,0.007304162,0.795367,-0.4567252,-0.114556275,-0.49502096,-0.46393034,-0.83505875,-0.37935606,-0.08334631,0.2897856,-0.2110167,-0.4651338,0.0460168,-0.23926193,0.04660361,0.21467651,-0.7062071,0.47513008,0.18441999,0.49072376,-0.2787893,-1.0872589,0.2330013,0.19428039,-0.11447113,-0.69368976,0.7376153,-0.123593956,0.7714073,0.038475152,0.01389813,-0.3159538,-0.5121822,0.17975669,-0.13783526,0.049733877,-0.80544376,0.18491006,865 +897,0.31850654,-0.29451072,-0.43434796,-0.26529327,-0.31343898,-0.096464336,-0.3809519,0.28901616,0.14911143,-0.56379586,-0.16955006,-0.08726132,0.1793434,0.4735519,-0.16112912,-0.62833786,-0.018268377,0.098105304,-0.6136138,0.44868007,-0.7356511,0.3712928,0.26975667,0.1946929,-0.085550345,0.30365697,0.46949902,-0.27681157,0.18635722,-0.26697442,-0.30025986,0.10832521,-0.6014896,0.20055974,-0.1392705,-0.38461116,0.17791955,-0.41356865,-0.13869186,-0.6031969,0.1238462,-1.0143652,0.5332199,-0.0138253225,-0.11192756,-0.31253055,0.33803734,0.42709574,-0.19698705,0.18199103,0.12269288,-0.16988797,-0.15318,-0.2795787,0.020069214,-0.48492074,-0.35922208,-0.074178316,-0.65789217,-0.46578714,-0.27678788,0.22053456,-0.36534515,0.1314301,-0.08804544,0.12397774,-0.40063033,-0.029617956,0.3165673,-0.3431088,0.3653934,-0.5556552,-0.0010506337,-0.13619353,0.54691595,-0.019178309,-0.3282141,0.3055395,0.43287006,0.4791584,0.22824176,-0.15107588,-0.049045224,-0.38473842,0.3367602,0.63424164,-0.14703797,-0.45738378,-0.32833305,0.020744802,0.31453142,0.49433365,-0.100172974,-0.39149055,-0.061955947,-0.16284439,-0.36891544,0.53689486,0.44998154,-0.21078514,-0.28334537,0.16813545,0.48667482,0.21723312,-0.2516967,0.23458423,0.0631996,-0.6115312,-0.1799375,0.14453326,0.18109448,0.52149284,-0.27400562,0.33802214,0.8527193,0.0025149782,0.16917305,-0.07626181,-0.13410525,-0.29793575,-0.20733358,-0.03344828,0.059636086,-0.76631975,0.06589759,-0.38049945,0.9700965,0.17015357,-0.75605947,0.48828587,-0.6306754,0.21030562,-0.18078478,0.6116799,0.6442068,0.27755946,0.23635237,0.8046345,-0.33604693,0.14231409,-0.14329076,-0.565403,0.07803715,-0.27319425,0.082784794,-0.2802167,0.22177579,-0.0034195657,0.3580382,0.005203853,0.3767489,-0.47477213,-0.093049794,0.17891605,0.76928025,-0.29231784,-0.030326521,0.6722264,0.9247578,0.8221733,0.17688096,1.2586725,0.2154427,-0.14454365,0.057267327,0.058193784,-0.62900937,0.13822366,0.4990684,0.5211739,0.24803202,-0.08049848,-0.040983822,0.3159169,-0.3432202,-0.02032216,-0.07439018,0.39556244,0.093636625,-0.09687114,-0.5053101,-0.14953794,0.0069654584,-0.105192296,0.09347328,0.22185339,-0.106482685,0.48820677,0.018832356,1.1008685,-0.22304739,0.20226355,0.18884504,0.46969473,0.39931867,-0.19357629,0.111539565,0.46715847,0.42351198,0.003409962,-0.61158067,0.11222857,-0.20815045,-0.43016735,-0.09394296,-0.35767758,-0.25135958,0.21682496,-0.48936856,-0.0329071,-0.067559175,-0.108852245,0.48981062,-2.8050985,-0.40861514,-0.19800073,0.33975402,-0.28433034,-0.17524229,-0.17119946,-0.5212546,0.28552803,0.28733203,0.609089,-0.7496285,0.5638473,0.51221985,-0.34984538,-0.31251025,-0.77230763,-0.13718046,-0.11856133,0.3711065,0.13400958,-0.20153739,-0.22774756,0.06984582,0.63635474,0.0027433932,0.10626221,0.30078962,0.45930323,0.21755405,0.6911001,-0.13885961,0.5480307,-0.43511555,-0.099472314,0.3819398,-0.27956066,0.29181373,-0.16032639,0.09411185,0.43417498,-0.5643774,-0.8430085,-0.7853684,-0.53034914,1.0422748,-0.36318076,-0.43797484,0.26138845,-0.016686827,-0.16634175,0.04264906,0.69511026,0.0076892674,0.3547529,-0.73757225,0.16729432,-0.11247041,0.23068249,0.107070245,-0.22439633,-0.30409884,0.76429063,-0.0987457,0.7762284,0.28670317,0.13775969,-0.09567764,-0.35482594,-0.0029079542,0.823734,0.36609194,0.06584909,-0.21495105,-0.28603283,-0.2867351,-0.19837345,-0.027377715,0.6818364,0.7555749,-0.08162265,0.09512948,0.37207708,0.07310248,0.135513,-0.079669885,-0.121789716,0.021426499,-0.008676559,0.4666289,0.5208492,-0.180376,0.3380917,-0.18491502,0.36536917,-0.21998961,-0.4526595,0.6441438,0.4994819,-0.11233326,-0.005608514,0.50935936,0.54600954,-0.2868997,0.4151156,-0.6749375,-0.28077546,0.6310063,-0.09431244,-0.49976805,0.3127791,-0.31122625,0.16023766,-1.0008521,0.39669657,-0.50276715,-0.44498816,-0.37657258,-0.16867284,-3.806424,0.339159,-0.03402877,-0.101915814,-0.37555203,-0.05706017,0.3129935,-0.552942,-0.6080132,0.25419548,0.10513755,0.533511,-0.06453941,0.1487736,-0.433884,-0.1821058,-0.032277692,0.1642552,-0.12992077,0.13794196,-0.23250164,-0.23244719,-0.042950403,-0.06256061,-0.4276316,0.27828637,-0.5422387,-0.55427545,-0.0073099085,-0.440549,-0.34729218,0.6116987,-0.5117367,-0.041224197,-0.13675094,0.025840053,-0.45998845,0.25582483,0.08957478,0.21053386,0.029798135,0.06975672,-0.04696564,-0.39952672,0.5130918,-0.1036756,0.3152744,-0.02916324,-0.07413985,-0.0016618967,0.4775147,0.5392186,-0.15030356,0.99985546,0.21379292,0.036061194,0.28563875,-0.3399769,-0.3541112,-0.5184892,-0.20868333,-0.011216257,-0.29277015,-0.5169048,0.005208388,-0.14684002,-0.74902177,0.71514624,0.121838786,0.110478304,0.05785893,0.27541462,0.2137193,-0.03523071,-0.07475013,0.052787423,-0.124326736,-0.6704259,-0.21340616,-0.68791467,-0.48177752,0.095496476,0.6908787,-0.311925,0.030417072,-0.07632774,-0.17808904,-0.0530078,0.12554976,0.30139673,0.32592896,0.41039467,-0.1641668,-0.6921091,0.53934044,-0.1700836,-0.38162994,-0.38426876,-0.0036210418,0.7203045,-0.8263714,0.48621583,0.49022362,0.068005376,-0.003406922,-0.47697327,-0.36375895,-0.045160502,-0.24865909,0.37892547,0.051867966,-0.84984374,0.46877563,0.34298298,-0.27757773,-0.667064,0.4548819,-0.021223545,-0.17748976,0.022209292,0.28357714,0.15855694,-0.013877871,-0.13174392,0.06983196,-0.4182702,0.30481884,0.17295541,-0.012611563,0.4971099,-0.14267452,-0.31984994,-0.66142243,-0.16807596,-0.67596,-0.094610035,0.32542372,-0.019615792,-0.019632677,0.16563268,-0.10119909,0.3351616,-0.30271566,0.18241484,0.026030088,-0.25478512,0.2324229,0.43627658,0.25733662,-0.38973668,0.73604035,0.23461443,-0.08339163,-0.018225178,0.09726442,0.2699376,0.09769017,0.5372447,-0.35758233,-0.10266629,0.27964836,1.0894079,0.29203883,0.43507972,0.17588408,0.038707547,0.5266209,0.06879577,0.12956369,0.23238029,-0.42905176,-0.139804,-0.17791043,0.13746105,0.5283254,0.31967643,0.39697716,0.025953509,-0.27185234,-0.0058107018,0.31903827,-0.077856965,-1.1856962,0.35740343,0.31728396,0.6803016,0.49117267,0.04790337,0.008780201,0.663169,-0.2208957,0.21166198,0.19391131,0.021247467,-0.5272693,0.7684831,-0.5670435,0.3084299,-0.33979973,-0.040761426,0.098167844,0.034718603,0.3035891,0.7948704,-0.14326236,0.18033187,0.015640728,-0.18790881,0.033141017,-0.42576376,-0.12317719,-0.3372198,-0.35382333,0.6951292,0.39336443,0.40420866,-0.28007737,-0.041288,0.04360981,0.016288942,0.089767136,-0.12213531,0.0045162016,0.07471763,-0.52614975,-0.19944976,0.76691085,0.13291441,0.35178533,-0.13553171,-0.4527975,0.38586998,-0.047291707,-0.0033198919,-0.119124986,-0.52436787,0.14531915,-0.30949196,-0.6692529,0.32916394,-0.38828444,0.14746793,0.29738793,-0.06705133,0.023301216,0.33540773,0.036736965,0.77143383,-0.036334515,-0.19035982,-0.35390234,-0.022672072,0.26310107,-0.38434055,-0.049000755,-0.4907733,0.042888362,-0.5269702,0.5199409,-0.07004052,-0.25841454,0.2610891,-0.14043075,-0.03246074,0.5659292,-0.07654535,-0.16456068,0.30618027,-0.14652917,-0.42266366,-0.14387493,-0.21132486,0.2148609,0.33801448,0.07540239,0.022012621,-0.22855641,-0.11695925,0.29569277,0.11215525,0.5303814,0.18715252,0.06372299,-0.12776357,0.03521842,0.1644625,0.4132792,0.14296828,0.0002279083,-0.15874869,-0.5277247,-0.21129625,0.038888067,-0.0233874,0.26788023,0.15524948,-0.26574287,0.90513444,0.01374355,0.91796136,0.016300598,-0.34140942,0.17007864,0.39517894,0.011813889,-0.034558415,-0.34341606,0.874556,0.44007602,-0.044337224,-0.032744076,-0.48741683,-0.07218547,0.20395203,-0.32331058,-0.030786723,0.021048082,-0.59386045,-0.3728585,0.1653718,0.15566961,0.1509212,-0.17085071,0.025163615,0.0030732204,0.007828859,0.26691437,-0.7493511,-0.3101534,0.23091984,0.30352667,-0.0871509,-0.08021644,-0.3650584,0.43290588,-0.7274132,0.16541618,-0.6439535,0.124194324,-0.27351668,-0.32352647,0.09431975,-0.121583015,0.4064195,-0.28093898,-0.32000777,-0.08091848,0.44099775,0.06833761,0.29337236,0.6627212,-0.13224079,0.06627173,0.2002924,0.58321327,1.1322511,-0.48121667,-0.059060205,0.32487696,-0.42052785,-0.4860392,0.22365527,-0.3701272,0.06020869,0.08198213,-0.44605446,-0.39847925,0.24329704,0.20411943,0.16181383,0.03989956,-0.68077415,-0.3230346,0.2988452,-0.40652764,-0.36998582,-0.29729816,0.33341703,0.612088,-0.2642828,-0.23445801,-0.05134496,0.28561938,-0.34852841,-0.61631477,-0.16033716,-0.030201294,0.3547094,0.15691768,-0.09498095,-0.1385581,0.2731896,-0.5281722,0.073377684,0.09432449,-0.37738034,0.12892729,-0.20154166,-0.1896764,1.0341829,-0.26996484,-0.4013448,-0.63109297,-0.58616525,-0.80011576,-0.4687417,0.41499245,0.17099689,0.2429623,-0.21112959,0.074626155,0.07747839,-0.08325362,0.037638206,-0.40627623,0.4081227,0.08938094,0.6046122,-0.2101816,-0.95271295,0.16747934,0.16323724,-0.07515746,-0.65143317,0.5592614,-0.121346004,0.85670614,0.08179678,-0.11952243,0.088162415,-0.403386,0.12885372,-0.3788617,-0.06885708,-0.9902737,0.20472746,867 +898,0.59981364,-0.27212232,-0.48513746,0.010088347,-0.2122765,0.118010215,-0.095658146,0.62918764,0.5015588,-0.4369904,-0.4018906,-0.20032363,0.06839024,0.41861776,-0.21400249,-0.69639665,-0.02364474,0.22963186,-0.36167744,0.66576654,-0.22298466,0.40317276,0.3335795,0.32359865,0.110580206,0.13291562,0.27766493,-0.07995002,-0.12987907,-0.26809886,-0.18878074,0.22395955,-0.4848231,0.20078592,-0.37186098,-0.5258371,-0.09433749,-0.73001593,-0.42503777,-0.7331117,0.14083947,-0.9007483,0.6664336,0.13421537,-0.25718188,-0.012789969,-0.13604681,0.26085284,-0.25303027,0.13186178,0.07822227,-0.09873491,-0.04436977,-0.43831074,-0.24388148,-0.33614397,-0.63379115,-0.059574455,-0.36062637,0.12970905,-0.0016855797,0.041773364,-0.34663233,0.09382885,-0.08050611,0.2634529,-0.35488203,0.09910058,0.34669888,-0.2865136,-0.010315508,-0.6048203,-0.21256971,-0.14368282,0.15365522,-0.24495412,-0.39798734,0.3097476,0.2127657,0.56315666,0.041666348,-0.16526559,-0.2204476,0.08917153,0.07595394,0.51070946,-0.3876495,-0.5733429,-0.19097966,0.21143179,0.570705,0.18644387,0.14448418,-0.35451674,-0.038813096,-0.25479704,-0.20315476,0.33881998,0.5742538,-0.36591578,-0.09305241,0.30081883,0.33634248,0.23818974,0.09444117,-0.056498636,0.04018638,-0.6584841,-0.12895124,0.02962567,-0.30883107,0.5370448,-0.12983352,0.16389008,0.5024321,-0.06433903,-0.017089123,0.18156135,0.11064663,-0.22323905,-0.13375562,-0.35180536,0.41912827,-0.46215108,-0.0004894783,-0.24438144,0.6975427,0.25743186,-0.57763183,0.1687675,-0.50484395,0.22122061,0.04273392,0.383777,0.67482406,0.5724789,0.19009681,0.73071903,-0.49508438,0.039616566,-0.11038514,-0.28396386,0.18342078,-0.25282708,-0.13536797,-0.48887467,-0.09561604,0.005411605,-0.23456228,0.6022253,0.3924869,-0.57297313,-0.28026244,0.101199485,0.5669727,-0.26449662,-0.036771204,0.8826165,1.0684844,0.820951,-0.022603827,1.2199042,0.26786172,-0.21083605,-0.084178805,-0.18566424,-0.6131661,0.21566339,0.43886992,-1.1142868,0.5808161,-0.04110944,-0.07644873,0.3358388,-0.3984569,-0.20432164,-0.058143377,-0.16916431,-0.05084823,-0.2679999,-0.499724,-0.2510849,-0.25439048,0.24630082,0.17019413,0.36705044,-0.20996772,0.48566088,0.123248,1.2173009,-0.066476285,0.021413485,0.07923105,0.15920623,0.39629292,-0.12706487,-0.0016216437,0.12744884,0.3526961,0.07033954,-0.491464,-0.09479353,-0.16150872,-0.34651613,-0.07044873,-0.03451016,-0.11499978,0.12886043,-0.35142717,-0.2411583,-0.052911848,-0.1542118,0.4809319,-2.2234838,-0.20600045,0.006103487,0.52661264,-0.14453983,-0.43323827,-0.282537,-0.45637402,0.35244521,0.30453265,0.6028046,-0.75977796,0.12259308,0.42194155,-0.80082995,-0.26139733,-0.5652098,0.17012091,0.01195385,0.21193878,0.06683793,-0.08326142,0.3801168,0.04263257,0.51886815,-0.05254041,0.061777096,0.35053518,0.46104518,-0.09326714,0.3162031,-0.030062286,0.6001759,-0.4910599,-0.28882357,0.27363217,-0.41930532,0.38029662,-0.04531777,0.08239167,0.49644843,-0.49431446,-0.8838287,-0.5311111,-0.035238832,0.9812066,-0.14040278,-0.32203996,-0.054383595,-0.12960716,-0.42042688,0.025963895,0.7440751,-0.21142854,-0.09006443,-0.83982927,-0.2262938,0.061792564,0.21381833,0.051193375,-0.14423192,-0.41732123,0.67287844,0.041112993,0.50841695,0.5967038,0.20870608,-0.23711388,-0.6322395,0.17621505,1.0611402,0.5422718,0.32428688,-0.24541958,0.08883812,-0.22097701,0.19817372,0.09014552,0.5871544,0.6049361,-0.31793955,0.013418411,0.2719659,0.45655325,0.1131321,-0.0639812,-0.2681645,-0.2251035,0.0045886138,0.5748377,0.94218755,-0.26000747,0.11769054,-0.13036406,0.50157845,-0.16695644,-0.64881873,0.73939914,1.0717771,-0.08661467,-0.26608258,0.7679871,0.4800141,-0.02996637,0.4995028,-0.56696486,-0.4210581,0.13475086,-0.25382605,-0.43071344,0.47268304,-0.19205968,0.2629136,-0.90378183,0.48693243,-0.10863459,-0.32682118,-0.5540918,0.08323851,-2.5166488,0.25388134,-0.35021576,-0.17691995,-0.19207168,-0.14398648,0.01910767,-0.72285515,-0.60563374,0.3210318,0.14796285,0.6617361,-0.06315759,0.24817763,-0.086614765,-0.494802,-0.0066426047,0.19219457,0.24824816,0.34923574,0.084967546,-0.45734665,-0.16082601,-0.0057358146,-0.34983885,0.19256608,-0.8653372,-0.29942545,-0.1843298,-0.5830862,-0.123367906,0.55532783,-0.38487217,0.11581006,-0.03892793,0.1821507,-0.0817266,0.17498608,-0.043769073,0.06686744,-0.06907505,0.0638009,0.21691191,-0.12005957,0.394884,0.20040973,0.29237804,0.33901432,-0.3075967,0.08453041,0.49270663,0.8220565,-0.1511304,0.847311,0.56630343,-0.08793058,0.1434197,-0.020149747,-0.3910202,-0.55622005,-0.3816793,-0.10102048,-0.5122666,-0.27113286,-0.03292578,-0.42403194,-0.8729922,0.61836016,0.005237917,0.032001723,0.10593858,0.3007067,0.6778455,-0.46060014,-0.05211984,-0.05648518,-0.21388465,-0.37466773,-0.16487685,-0.6262236,-0.38498116,0.17285495,1.1897702,-0.18956922,0.28177652,0.22501855,0.015482266,-0.0175509,-0.029441252,-0.01750336,0.026766717,0.4810265,0.0024650942,-0.6277684,0.36084077,-0.015008976,-0.35086226,-0.6011624,0.36269692,0.6453994,-0.8355456,0.5023008,0.40789977,-0.009062198,-0.11040974,-0.43872055,-0.26087594,-0.0057718554,-0.24195202,0.35575482,0.30378643,-0.5568958,0.24706991,0.34197518,-0.5390736,-0.59742403,0.53040993,0.084035166,-0.47555736,-0.056440443,0.3230596,0.08605646,-0.022215137,-0.0065201395,0.09776238,-0.3024894,0.38423502,0.1307524,-0.1581388,0.12744083,-0.09648708,-0.08961936,-1.0680767,0.25547823,-0.5154186,-0.33360314,0.27812082,0.042065356,0.03240519,-0.14669529,0.17139716,0.39168575,-0.3948315,0.1645552,-0.19157982,-0.29114738,0.68833995,0.43199635,0.45322797,-0.15676562,0.5272084,-0.023459239,-0.09635988,-0.10688212,0.052969623,0.42881384,0.024535581,0.18953425,0.0013750097,-0.30278876,0.25454986,0.46103057,0.06754124,0.12044648,0.25576302,0.005842132,0.16252008,0.21009743,0.2343512,-0.12083503,-0.59975433,-0.020659596,-0.21182209,-0.011085455,0.48516288,0.045609366,0.19791062,-0.28687626,-0.48949078,-0.054566097,0.119250454,0.44194603,-1.4262894,0.23672497,-0.066994876,0.60870624,0.4272666,0.10022823,-0.12134663,0.5636994,-0.22327049,0.07688948,0.3520966,-0.14967178,-0.40770626,0.40118775,-0.5307847,0.52007526,0.024661863,0.12782831,0.086037755,0.057929445,0.2922592,1.0134293,-0.03717457,0.025675626,-0.08468572,-0.31679776,-0.13996094,-0.4958466,0.09890018,-0.5932911,-0.4502851,0.8422332,0.3411442,0.5795597,-0.25960633,-0.034718283,0.11743683,-0.21551652,0.2620081,0.11250556,0.22112316,-0.11121777,-0.5972853,0.0012760436,0.573111,-0.017164806,-0.004069239,-0.10793391,-0.18631129,0.31077513,-0.3406748,-0.15891756,-0.17916544,-0.8779278,-0.13969465,-0.6787428,-0.4423686,0.43072096,-0.0017273152,0.21368726,0.1481988,0.037455257,-0.19385356,0.59513116,0.2195761,1.140814,0.10585191,-0.3195335,-0.12116599,0.5040168,0.14811994,-0.18689264,0.08414831,-0.07019633,0.083805,-0.5375213,0.48072597,0.13162737,-0.18829615,0.07934555,-0.029910041,0.14564776,0.32748872,-0.29576942,-0.25028816,0.09346441,-0.042585056,-0.40464416,-0.33165792,-0.31175533,0.16712719,0.46201158,0.106291234,0.050334483,-0.11912011,-0.092927195,0.3770976,0.09866169,0.46081546,0.38386372,0.19338454,-0.51941043,0.04323687,0.15077592,0.48278078,0.018991878,-0.3307154,-0.4650676,-0.6054792,-0.52907544,-0.256215,-0.16066605,0.392248,-0.022951188,-0.06350822,0.79354554,-0.057467267,1.1798669,-0.15468027,-0.3827807,0.013089408,0.4764897,0.0034631987,-0.17167081,-0.19686395,1.3540112,0.6160213,-0.10309198,-0.005572463,-0.26133338,0.020742575,-0.0466851,-0.30882946,-0.21763986,0.06597472,-0.5263312,-0.3994687,0.24667858,0.1977431,0.09405425,-0.17568775,0.34735557,0.36631027,0.0781463,0.10905337,-0.5259303,-0.2803544,0.263574,0.31728038,0.12102023,0.10616497,-0.48944867,0.37542376,-0.49181247,0.03408671,-0.44778368,0.081000276,-0.20600669,-0.26476023,0.1920111,-0.010731657,0.31263015,-0.6664976,-0.31876335,-0.26455644,0.5070825,0.04098934,0.051808715,0.70616984,-0.19190641,-0.18864202,-0.03590138,0.6208887,1.11318,-0.3297883,-0.06562968,0.66949934,-0.4590322,-0.39837447,0.27984315,-0.16448458,0.0009199977,-0.20306869,-0.25485507,-0.7011278,0.1575081,-0.020772114,0.22072929,-0.044846535,-0.6631515,-0.00895311,0.347241,-0.42844358,-0.24699439,-0.48774377,0.46060053,0.48176146,-0.12844951,-0.67866635,0.093351044,0.08599613,-0.21832787,-0.42943475,-0.13334464,-0.33590293,0.09793506,0.24540251,-0.26342502,-0.064060524,-0.03735822,-0.48477292,-0.04758491,-0.10406011,-0.37096024,0.11939638,-0.47974524,-0.1384985,0.97499305,-0.3156073,0.36736527,-0.6705603,-0.52367085,-0.8797485,-0.5650371,0.6192642,0.2430401,0.04793923,-0.9029646,-0.06782713,-0.045878705,-0.18919677,-0.22499879,-0.059194107,0.48738268,0.20803756,0.46223363,-0.2694898,-0.75219697,0.35652867,0.16354853,-0.26970017,-0.546915,0.21461187,0.28440696,0.99001735,0.040409833,-0.026515454,0.62313193,-0.7349526,-0.11370831,-0.15448672,-0.16962051,-0.70568925,0.046620235,873 +899,0.5447156,-0.24667412,-0.52978086,-0.22105914,-0.3316753,-0.0604035,-0.13083002,0.35609373,0.3638678,-0.28234988,-0.06700965,-0.18012531,0.1460071,0.69255733,0.00039686388,-0.8607816,-0.09937795,0.21813618,-0.58463055,0.5597341,-0.4701549,0.44807723,0.043645512,0.3362092,0.4155899,0.20358574,0.14683618,0.053251278,-0.059959073,-0.13111077,-0.21237035,0.024217166,-0.5123814,0.13778467,0.031807512,-0.4399117,-0.045715194,-0.40649223,-0.5280948,-0.7119911,0.31825957,-0.81446433,0.5339404,-0.062654346,-0.37569952,0.14014919,0.2616007,0.30497828,-0.32602444,0.124972396,0.20397635,-0.021739177,0.0047879256,-0.029270416,-0.43838105,-0.4803821,-0.6227986,-0.040973812,-0.45828125,-0.2747151,-0.32223478,0.098021515,-0.36991358,-0.021925079,-0.111179985,0.43565896,-0.36261752,0.136755,0.26523772,-0.035836786,0.21180363,-0.489831,-0.13821636,-0.11791589,0.035580818,-0.11320015,-0.29615888,0.32347587,0.3095862,0.3111827,0.073198475,-0.30271605,-0.30159208,-0.08865765,0.042346608,0.6022263,-0.12726362,-0.26606658,-0.2862977,0.039864335,0.1198904,0.3022821,0.117661774,-0.49524418,-0.015150957,-0.14479952,-0.2676445,0.4432074,0.472582,-0.38703355,-0.30178717,0.3223754,0.3193162,0.21229155,-0.18302578,0.04861856,0.11056136,-0.5652793,-0.1329244,0.103646375,-0.09595127,0.5481264,-0.26161554,0.19720958,0.70028085,-0.2987741,-0.051219344,-0.051640112,0.21311475,-0.20239902,-0.36464942,-0.2041082,0.2382971,-0.58407336,0.077874154,-0.042353023,1.037129,0.23266621,-0.68357354,0.30208716,-0.6184784,0.1936354,-0.3339063,0.4450512,0.6724716,0.21003014,0.26298884,0.75484496,-0.3351462,0.16506241,-0.13225503,-0.39725327,0.16607612,-0.2471342,0.060950253,-0.56717724,-0.08708968,-0.00994955,-0.25346792,0.15748715,0.676893,-0.42923966,-0.20858027,0.15764277,0.8597844,-0.33544016,-0.11670657,0.65166336,1.0134815,1.1776239,0.06089678,1.2016157,0.41843486,-0.19476974,0.14057048,-0.2766566,-0.6929156,0.26157042,0.2940296,-0.47263667,0.33617723,0.04553869,-0.06252948,0.31508586,-0.15326308,0.04480816,-0.16600369,0.28012225,0.062015418,0.02393432,-0.5512541,-0.47573102,-0.10551715,0.18717612,-0.056002896,0.31322458,-0.26663956,0.2885812,-0.08083657,1.7251172,-0.07816448,-0.009089378,-0.0355678,0.5195779,0.30418828,-0.40913823,-0.19823651,0.2633463,0.4211364,0.0034929116,-0.58796376,-0.08264089,-0.30240697,-0.17400892,-0.2105126,-0.4403819,0.022555908,0.008875862,-0.42792282,-0.20469809,0.09485943,-0.3628118,0.5514981,-2.596276,-0.2351088,-0.05362807,0.221637,-0.3322675,-0.3898348,-0.20172839,-0.5033105,0.41264057,0.2503517,0.5324777,-0.49378684,0.20288502,0.46941772,-0.5183346,-0.1702195,-0.72662354,-0.11541764,-0.11355424,0.3991498,-0.10568634,0.03660627,-0.067969285,0.24210775,0.48550567,0.075736225,0.10769194,0.26894382,0.3722622,-0.071114846,0.5208258,-0.05670693,0.6910763,-0.2720867,-0.22466125,0.31139502,-0.13570648,0.23518474,-0.24711408,0.059395466,0.63820463,-0.53963417,-0.88067317,-0.5110067,-0.16239245,1.0731473,-0.3732901,-0.39491215,0.35376158,-0.27750948,-0.038199693,0.061261732,0.3417629,0.045950364,-0.051404435,-0.5699046,0.1360156,0.106931925,-0.049442876,-0.04224156,-0.1693003,-0.21286823,0.5479726,-0.04247406,0.11186182,0.18731713,0.26536444,-0.24527848,-0.50034046,0.13791548,0.983757,0.25190148,0.18693697,-0.465884,-0.19951133,-0.3740039,-0.08289415,0.18757115,0.29200712,0.83792263,-0.20914525,0.097456336,0.26849458,-0.064867,0.09949276,-0.011685121,-0.34520105,0.0057798275,-0.086031616,0.5424874,0.6391428,0.056548882,0.69138837,-0.037844192,0.2032717,-0.13792987,-0.56532687,0.519163,1.1822761,-0.08795241,-0.2812308,0.6231534,0.27653182,-0.24060477,0.45139304,-0.40530694,-0.25170752,0.41276893,-0.20736562,-0.30384475,0.24525607,-0.41736162,-0.04680394,-0.8457988,0.3543311,0.03231412,-0.4343545,-0.39026177,-0.17596936,-3.744379,0.33070529,-0.29112783,-0.10587361,0.09824563,-0.11319539,0.17941028,-0.47154927,-0.46176782,0.15458238,0.024814442,0.7435027,-0.15359728,0.22782719,-0.12812681,-0.2265143,-0.4371338,0.17294753,0.0041021407,0.5613293,-0.07253296,-0.46480402,-0.039942604,-0.2133347,-0.5381234,0.09555236,-0.620255,-0.41580042,-0.27136996,-0.75472593,-0.27205765,0.8390251,-0.058863048,-0.061302077,-0.24511541,0.034530938,-0.051277358,0.37121964,0.26759318,0.104072355,0.09931489,-0.01964207,-0.101371326,-0.36271572,0.26063856,0.10954448,0.3006309,0.30752316,-0.01407671,0.15600474,0.5890174,0.5147509,-0.1426252,0.8306317,0.5424625,-0.26953334,0.15161435,-0.21643026,-0.19446231,-0.44943002,-0.36699763,-0.2757052,-0.46639895,-0.48765013,-0.098422945,-0.31486186,-0.65907395,0.5924605,0.077307425,0.24476345,0.022481715,0.00871973,0.4266903,-0.10581977,-0.014281769,-0.13856146,-0.100509845,-0.60712576,-0.35220322,-0.484921,-0.40182245,0.43658733,1.0158052,-0.30732194,0.02140937,-0.056540024,-0.3437786,-0.23107712,0.10062329,-0.058166757,0.2348262,0.17011434,-0.044948947,-0.63262606,0.31572288,0.027207008,0.09153517,-0.5515681,0.26635927,0.7773795,-0.47265372,0.54897285,0.26747754,0.2317785,-0.08845872,-0.4977778,-0.4362329,0.21882892,-0.18859416,0.4573792,0.17204694,-0.8190045,0.45189047,0.2517846,-0.46170625,-0.7324725,0.5433082,0.019823262,-0.24358416,-0.15755281,0.29623264,0.10979787,-0.0007833329,-0.30891967,0.3314669,-0.44460043,0.289755,0.22035265,-0.021252831,0.34561905,-0.11450336,-0.22959524,-0.6128627,0.07572036,-0.3677974,-0.45365223,0.07906599,0.08387218,0.12845062,0.27038443,0.020284394,0.3046826,-0.32531264,0.10592982,-0.14453125,-0.30430132,0.4356736,0.25874335,0.5441635,-0.43703803,0.5785021,0.11473322,-0.10754889,0.118206955,0.10275483,0.43497106,0.19310816,0.36936,-0.025454143,-0.21782358,0.24174051,0.8354029,0.030494802,0.3662797,0.16837566,-0.13354273,0.0010845363,0.057195097,0.14850481,0.21501641,-0.4382724,-0.10576861,-0.45898476,0.26544586,0.45157278,0.11965046,0.2630805,-0.12169693,-0.38547835,0.21878624,-0.08671701,0.046552986,-1.3166904,0.24956298,0.22944279,0.64828426,0.52170986,-0.09200289,-0.18503849,0.6465067,-0.19846438,0.15812303,0.38309118,-0.11699147,-0.42660937,0.58121395,-0.8069854,0.6705818,-0.1027581,0.002405138,0.12786077,0.18995632,0.54510903,0.9102099,-0.20151168,0.051389664,0.089932285,-0.3841065,0.07217293,-0.3818921,0.17264116,-0.68619853,-0.39045402,0.70440674,0.28910923,0.24658579,-0.093509555,-0.0152631,0.068664625,-0.07510265,0.07192445,0.054809738,-0.05202963,-0.08002389,-0.72930145,-0.32857263,0.46409956,-0.076081954,0.19316234,-0.081141174,0.08847288,0.05968364,-0.35993266,0.112464584,-0.03930028,-0.75169516,-0.21336056,-0.40711212,-0.5220065,0.3673291,-0.27506277,0.29351398,0.11183196,0.016110338,-0.24814986,0.53191763,0.21798022,0.87467736,-0.12133924,-0.10480126,-0.34560052,0.07509914,0.21378922,-0.1338438,-0.047452565,-0.21742116,0.04058839,-0.69837046,0.560793,-0.08307075,-0.5188778,0.026922176,-0.0556306,0.07289869,0.6180574,-0.006910453,-0.11417844,-0.23595785,-0.1970529,-0.29778555,-0.14652668,-0.04687902,0.3248276,0.2977142,-0.34952208,-0.17277676,-0.2518667,0.047017083,0.26699612,-0.21885313,0.33740386,0.22219624,0.30979648,-0.13707347,-0.077763505,0.21299879,0.57971567,0.06425656,-0.05605783,-0.29927447,-0.09921598,-0.3894619,0.1816728,-0.08203286,0.38545656,0.1696003,-0.20257686,0.7307449,0.026718562,1.1590705,0.077770025,-0.39102432,0.13566193,0.3977808,0.20323622,-0.08229219,-0.39738503,0.98427993,0.62875915,-0.0033836514,-0.1953883,-0.48603544,-0.21776374,0.37238643,-0.2829379,-0.2426935,0.22801703,-0.5354332,-0.3137205,0.29767212,0.11815373,0.24312139,-0.09132422,0.18555962,0.3957028,0.18358983,0.31627566,-0.46451366,0.07955991,0.26766032,0.50306076,0.087992035,0.40840602,-0.5171336,0.3116102,-0.63741666,0.3328791,-0.20377277,0.27252883,-0.09155396,-0.23456813,0.33285555,0.22123487,0.4442153,-0.27585587,-0.38519642,-0.2107169,0.69678193,-0.010604829,0.13752496,0.6375708,-0.32673594,0.05745679,0.01857417,0.41185212,1.0895385,-0.23392008,-0.102935635,0.42317045,-0.33571982,-0.928181,0.5519194,-0.20120819,0.26261088,0.028230393,-0.33821857,-0.5567493,0.290098,0.109346636,0.035603285,0.16891766,-0.320225,-0.13897896,0.21451499,-0.088072725,-0.21793287,-0.3911405,0.20171177,0.48336664,-0.2101696,-0.36994824,0.213477,0.23798494,-0.17362805,-0.57619375,-0.05537586,-0.2133878,0.21424377,0.08871881,-0.30035666,-0.16357432,-0.113510825,-0.4639803,0.107687555,0.17054737,-0.29081914,0.11316314,-0.14149408,-0.14648674,0.9754979,-0.26224712,0.0562768,-0.7057869,-0.6134208,-0.7634663,-0.3722279,0.44239807,0.11475933,0.011853923,-0.6145318,-0.11942773,-0.029009743,-0.070419304,-0.043370992,-0.4915259,0.42146423,0.02911598,0.15309553,-0.072174266,-0.9151222,0.083518185,0.14796562,-0.3332082,-0.6784785,0.48685193,-0.26093304,0.8419257,0.07070354,-0.013222859,0.32710934,-0.28450996,0.10245639,-0.2226158,-0.31160918,-0.63878787,0.014802944,884 +900,0.33899626,-0.14302982,-0.7732234,0.1683225,-0.109181106,0.09593544,-0.51142913,0.42869008,0.23535788,-0.5352115,0.014184271,-0.15994985,-0.19386254,0.29118696,-0.14421052,-0.37674752,-0.015623544,0.34124812,-0.46085957,0.5985159,-0.342158,0.2789046,0.11101348,0.26515853,-0.10838898,0.14951551,-0.027065387,-0.17482053,-0.4112793,-0.23128001,0.1258505,-0.038980853,-0.65225786,0.24305032,-0.25603965,-0.43854618,0.22043066,-0.6040882,-0.31450555,-0.60512495,0.02765143,-0.8315032,0.6929113,-0.045657378,-0.33749846,0.28725377,-0.21830875,0.28888682,-0.1125891,-0.06725056,0.29490408,-0.3614693,-0.3631256,-0.5722658,-0.43060282,-0.3310493,-0.53779304,0.05161507,-0.5593652,0.1782767,-0.03560243,0.26922354,-0.031764466,0.15175006,-0.2283528,0.004736364,-0.41506615,-0.17197435,0.03800984,0.023960924,0.25602603,-0.7348636,-0.097366564,-0.1657406,0.16306728,-0.039987687,-0.2670575,0.1428233,0.23511368,0.458748,0.03634429,-0.12867157,-0.36954156,-0.003206869,0.2156967,0.4174621,-0.27555826,-0.089942634,-0.17288788,-0.05288588,0.6320581,0.12980838,0.15707108,-0.20199,0.06274889,-0.15424079,-0.54381335,0.18386485,0.5901842,-0.27449298,0.13872902,0.57816917,0.6365333,0.3280193,-0.18284295,0.13319102,-0.16642879,-0.36854228,-0.07531164,0.12145374,-0.19858158,0.6562227,-0.1038599,0.20093091,0.38190496,-0.25724724,-0.13845314,0.051377684,0.037739437,0.017421901,-0.13481258,-0.34262288,0.2498426,-0.40349934,-0.07119267,-0.33817494,0.5553989,-0.0014734672,-0.8259966,0.37124434,-0.46010232,0.009944547,0.052201975,0.6598873,0.68662286,0.91481906,0.16313134,0.7863164,-0.4616556,0.16850281,-0.19920151,-0.1457596,0.07730951,-0.093749255,0.061834857,-0.47419512,0.060629636,-0.012265116,-0.41040704,0.17243123,0.6941488,-0.49242482,-0.1419983,0.20742981,0.56288135,-0.32825205,-0.17547345,0.81410646,1.3037952,0.871525,0.16308565,1.2462691,0.4265376,-0.19594519,-0.28166524,-0.14185177,-0.77875155,0.119340755,0.3195902,-0.24156256,0.5994757,0.120211214,-0.17672366,0.3660914,-0.15193082,-0.1389681,-0.0136482185,0.34398293,-0.16209057,-0.19432513,-0.21491992,-0.080827735,-0.11519983,0.09079379,0.05999143,0.36858892,-0.19371122,0.5044234,0.24125396,1.2313732,-0.08850521,-0.03013244,-0.00027609244,0.22334607,0.2604438,-0.04464598,-0.17035995,0.42713618,0.3331327,-0.05333528,-0.44053152,-0.11505276,-0.21085864,-0.54406065,-0.19802131,0.09421859,-0.049035918,-0.2735469,-0.0683899,-0.32682285,0.095308095,-0.3939335,0.4542221,-2.388491,-0.19538693,-0.05955516,0.37045154,0.046355363,-0.3719211,-0.05010596,-0.37946868,0.49522874,0.31324485,0.38834497,-0.44842252,0.33617958,0.435032,-0.62345743,-0.1692638,-0.6686217,-0.010181072,-0.1009894,0.4515991,-0.075947754,-0.32139906,0.082068674,-0.17634042,0.44750476,-0.22255488,0.15914023,0.41559944,0.45886782,0.12820084,0.28730327,0.08519087,0.6708789,-0.23341234,-0.17147422,0.20909278,-0.510596,0.5529667,-0.09136864,0.26286995,0.40205577,-0.53086925,-0.6878512,-0.48531625,0.10823142,1.3786281,-0.23548062,-0.4686201,0.07119004,-0.2508823,-0.48941362,0.032105815,0.2792412,-0.20191498,-0.068981715,-0.7915611,-0.33622584,-0.0010536785,0.31874666,0.002948314,0.23425339,-0.39584717,0.4085729,-0.014982328,0.45450187,0.7239027,0.109628975,-0.09349596,-0.3487312,0.013697699,1.1497048,0.30723938,0.11044994,-0.3079596,-0.1489029,-0.23258887,0.060507786,0.12986316,0.23651643,0.7145892,-0.0114487605,-0.006689474,0.27593973,-0.09766933,0.03079229,-0.10167142,-0.49157897,-0.16657265,0.063021444,0.51630896,0.85581845,0.026340403,0.5388374,-0.14505444,0.34613648,-0.18802547,-0.5194244,0.49680963,0.72196823,-0.24919319,-0.2032727,0.6106004,0.3926719,-0.2698018,0.5778819,-0.59754634,-0.41042304,0.3164022,0.016005004,-0.34536514,0.45331845,-0.27611133,0.24794151,-1.0564092,0.2914403,-0.29990718,-0.58721596,-0.79557306,0.018537624,-2.1898792,0.19526882,-0.20284067,-0.20501195,-0.13332182,-0.26105353,0.20755619,-0.46714735,-0.6421531,0.26186943,0.36390674,0.3702712,-0.06771872,0.047257554,-0.21415989,-0.43683663,-0.16084658,0.31424704,0.14723383,0.13683249,-0.35939363,-0.53238255,-0.10748442,-0.3141059,-0.16723873,-0.08915999,-0.7578264,-0.18882167,-0.08552451,-0.39045605,-0.18693238,0.5897165,-0.60144264,-0.19462673,-0.38661686,0.14714423,0.10845545,0.29485562,-0.15803401,0.18376334,0.09405714,-0.21672918,0.030504843,-0.26398912,0.029597744,0.19123626,0.14614241,0.5580032,-0.1863637,0.068189986,0.51004636,0.8422,-0.11697403,0.9215674,0.5718715,-0.2558112,0.24347644,-0.30077398,-0.21253538,-0.6756809,-0.25660634,-0.23266362,-0.43115282,-0.54585123,0.054817498,-0.29394704,-0.8797013,0.7280762,0.051466763,-0.28483915,0.19643216,0.859468,0.42068973,-0.28015074,0.116844185,-0.2593589,-0.15785497,-0.40928963,-0.37974843,-0.8419152,-0.4358404,0.03273839,1.2912972,-0.22863829,0.12836513,0.38867983,-0.29478577,0.05005245,0.19830601,0.020353124,0.052760005,0.3089079,0.06679597,-0.64024496,0.31536508,-0.113714956,-0.23488583,-0.56660765,0.2049045,0.9239262,-0.8541859,0.26772067,0.69088334,-0.08512911,0.13779038,-0.63205165,-0.06302624,0.010104309,-0.2704102,0.34129962,0.3718382,-0.60955924,0.5138878,0.38945237,-0.3511002,-0.8493247,0.35679615,-0.06484566,-0.07074801,0.01886741,0.4454272,0.053134754,0.11454747,-0.4042152,0.017238617,-0.3781383,0.26353663,0.19617672,-0.15962096,-0.042826887,-0.08952141,-0.31038862,-1.037413,0.105499804,-0.41164568,-0.21364081,0.52583355,0.14525402,0.21954994,-0.16430892,0.3763984,0.41435492,-0.5986515,0.14544706,-0.26263073,-0.3517789,0.42879918,0.5096834,0.34157622,-0.32043314,0.52773196,-0.15566728,-0.27786815,-0.28796637,-0.08702854,0.5162082,0.014451042,0.13946994,0.20692877,-0.095351756,0.12313663,0.6883537,0.19438536,0.4046165,0.1636451,-0.118984215,0.29120323,0.13054933,0.37308946,-0.080455355,-0.47367355,0.04654391,-0.08811498,0.19753115,0.4200236,0.15300818,0.49226618,-0.23534936,-0.122697145,-0.09803373,0.16223763,0.3640289,-0.8154831,0.35600606,0.19445825,0.37822828,0.6280017,0.2397147,0.18473947,0.57444644,-0.45045146,-0.024769902,0.37385273,0.110187866,-0.4529426,0.39769706,-0.8424427,0.2458932,-0.1251428,0.19614144,0.35080758,-0.10282558,0.75665444,1.1317985,-0.19170938,0.07858472,-0.064843066,-0.06873206,-0.19260144,-0.20295906,-0.08592036,-0.2620162,-0.38971338,0.93921256,0.03471817,0.563469,-0.18435265,0.013987447,0.39064184,-0.23000221,0.6526738,0.074858606,0.16078667,-0.10687175,-0.44408157,-0.08848137,0.61017686,0.17783208,0.13420007,-0.013783996,-0.20372427,0.37901828,-0.23068468,-0.23154098,0.056933388,-0.5302755,-0.01897344,-0.40467405,-0.52671355,0.5384566,0.22319674,0.09094646,0.08798101,0.13355094,-0.09106338,0.4462932,0.02639381,0.82990235,0.12200896,-0.46658826,0.07323355,0.34104005,0.18397929,-0.22523253,0.055536788,-0.066044815,0.17828709,-0.8924642,0.44937038,-0.34967482,-0.41290593,-0.07274429,-0.16557148,-0.012845695,0.3340137,-0.23773761,-0.21640028,0.28950688,0.0016673555,-0.3151937,-0.47718742,-0.38266185,0.044362117,0.22906418,-0.08496783,-0.18818696,-0.091877185,-0.08049796,0.39713502,0.030178184,0.19701307,0.35047516,0.18033914,-0.49763694,-0.111436255,0.09897738,0.49520096,-0.044886608,-0.047030997,-0.4188663,-0.51705354,-0.2617312,0.059378546,-0.098359026,0.35231707,0.23920222,-0.24331407,1.0376135,-0.106494814,1.1445371,-0.091594875,-0.30684385,0.040634792,0.59104854,-0.0942534,-0.09194488,-0.47163454,1.1348935,0.67475516,-0.09836265,-0.05511107,-0.6402276,-0.3476219,0.08916483,-0.30820456,-0.17914683,-0.053472698,-0.6137574,-0.26122043,0.24269779,0.26738644,-0.11305088,-0.16841936,0.48475328,0.23981623,0.1053034,0.036953676,-0.46915743,-0.19124024,0.40001297,0.20591669,-0.08803299,-0.006188708,-0.41655526,0.27308086,-0.63488966,-0.018164491,-0.3506918,-0.050933268,0.059467256,-0.2869332,0.18627916,0.18937843,0.23162723,-0.5205385,-0.46042845,-0.041137513,0.45233312,0.115135185,0.31766742,0.60129136,-0.31167972,-0.09276116,-0.103140175,0.44222498,1.1282266,-0.40244344,0.036042187,0.30486438,-0.22625558,-0.6002367,0.32712883,-0.37867117,0.13230829,-0.09236947,-0.3775909,-0.635413,0.2712047,-0.002664869,-0.124119766,-0.05340598,-0.6433634,0.07963091,0.15591979,-0.35189447,-0.11233052,-0.21549864,0.14017412,0.87486744,-0.289682,-0.7547636,0.045742746,0.24648719,-0.51349217,-0.43502417,-0.090849966,-0.33063585,0.26628152,0.32866415,-0.415352,0.213762,0.26731274,-0.6547846,-0.10124358,0.1741947,-0.38460135,-0.07278348,-0.5067947,0.23016565,0.62967557,-0.19708925,0.20527662,-0.36747846,-0.6295747,-0.7194908,-0.20974644,0.007034769,0.08412861,0.039010767,-0.65243286,0.09203244,-0.2935331,-0.252029,0.041638978,-0.50248706,0.68739885,0.2238576,0.331275,-0.45734832,-1.025813,0.14600031,0.1354604,-0.15256254,-0.5021493,0.34012875,-0.20302467,0.8270586,0.041249912,0.12539594,0.4132454,-0.8310556,0.38769174,-0.27424824,-0.14022112,-0.634504,-0.0368209,890 +901,0.35403526,-0.09823213,-0.57052124,-0.13003004,-0.2964533,0.17557311,-0.3938241,0.38265264,0.055228706,-0.72656745,0.19809234,-0.28217122,0.0044537685,0.23708634,-0.036452074,-0.5987397,0.20149618,0.258602,-0.53165084,0.6897699,-0.57165515,0.12834662,0.2363698,0.13551994,-0.18319352,0.17393412,0.24886088,-0.24602084,0.008788973,-0.27560043,0.01036789,0.03301781,-0.5961186,0.53314704,-0.0048203506,-0.3178362,0.26647064,-0.31766665,-0.016238352,-0.62260705,-0.07295058,-0.81869745,0.5000725,0.09511418,-0.30246362,0.12891349,-0.004904906,0.28581437,-0.23813546,0.1739822,0.38258395,-0.4815614,-0.3781313,-0.45696244,-0.18209873,-0.65099746,-0.4509774,-0.13552584,-0.4927059,-0.06371436,-0.26908287,0.18584315,-0.19729583,0.06800796,-0.12396344,0.122299396,-0.42086005,-0.10228389,0.020129139,-0.35441002,0.25250262,-0.46983087,-0.019977054,-0.18968765,0.17117745,0.16158143,-0.25143656,0.27816495,0.2261945,0.6323221,0.1079432,-0.2680402,-0.11992782,-0.20888881,0.25008157,0.60006595,-0.1574282,-0.11912393,-0.27780998,-0.23235293,0.04311949,0.048959654,-0.059691545,-0.4347342,-0.0072585307,-0.22645585,-0.4316096,0.08416239,0.3857461,-0.50673527,0.09660444,0.37757826,0.3792189,-0.13377377,-0.19621104,0.040454928,-0.05951721,-0.5074476,-0.23927128,0.31622836,0.1083822,0.46841368,-0.008315834,0.16347711,0.6662771,0.06795007,-0.17228492,-0.17475109,-0.039999247,-0.009429176,-0.21703815,-0.23769026,0.31663752,-0.6572682,-0.18707085,-0.5779732,0.9564371,0.008816714,-0.9241781,0.4963294,-0.49161625,-0.09322048,-0.14784229,0.6961341,0.6067176,0.74810314,-0.12567872,0.8003126,-0.48873594,0.17030703,-0.32397023,-0.24658024,0.30895075,-0.026589742,0.3014907,-0.4192451,0.21164536,0.14845742,0.035037994,-0.17408375,0.73823494,-0.20784819,-0.12520039,0.30440387,0.70120853,-0.36347273,-0.03464571,0.45313355,1.2021762,0.641114,0.23490562,1.2725451,0.25770926,-0.26486805,-0.017141024,-0.017120458,-0.81052333,0.22958767,0.40856025,1.0296767,-0.12358699,0.21693452,0.020954618,0.44626155,-0.11032569,0.0107417,-0.1448278,0.2771481,-0.2521848,-0.18353891,-0.33740678,-0.2982227,0.07523251,-0.03197837,-0.032176625,0.42818627,-0.038392145,0.47557643,0.0052889325,1.8123993,0.013960605,0.21331894,0.101972334,0.31868982,0.1637296,0.005389318,-0.21869884,0.2536793,0.23671865,-0.039795436,-0.38996398,0.17223959,0.00047036633,-0.60951453,-0.027983835,-0.31987,-0.05431955,-0.13477136,-0.20788594,-0.25914755,0.28640845,-0.41529894,0.33956146,-2.484944,-0.08718919,-0.12671585,0.22637211,-0.22092664,-0.20786393,-0.22394651,-0.36858854,0.6329667,0.44389638,0.5031443,-0.45497462,0.5338351,0.48967743,-0.35193774,-0.10301294,-0.72125053,0.03876577,-0.27118316,0.38241234,-0.01262185,-0.36054087,-0.22212149,-0.034802724,0.60537434,-0.23171149,0.18501513,0.4118364,0.24976303,0.17616601,0.388176,-0.11284533,0.5448403,-0.37537375,-0.24403907,0.17445655,-0.38186768,0.351006,-0.23131734,0.25719157,0.34651193,-0.51032233,-0.7725482,-0.48095512,-0.2971582,0.99414235,-0.51138675,-0.43992448,0.25806138,0.14201865,-0.31835386,0.17848277,0.4237502,-0.05391567,0.17232783,-0.6367463,-0.08042813,0.17175086,0.50167423,0.07261657,0.06446957,-0.47602454,0.60389495,-0.09426433,0.74367374,0.4928943,0.00882345,-0.067133665,-0.18564576,0.15977158,0.9756017,0.101439394,0.24823375,-0.23623371,-0.18735512,-0.22812462,-0.097192205,0.015175288,0.41096184,0.71504664,-0.006183309,-0.06431646,0.33651367,-0.3426982,-0.19727826,-0.03304572,-0.54473025,0.010431248,0.20871729,0.4963329,0.5327147,0.16266273,0.31790683,-0.08918276,0.5695034,-0.24850188,-0.44175175,0.49631247,0.41407773,-0.14353736,-0.08071934,0.5246448,0.65784025,-0.24458261,0.6098626,-0.43852457,-0.5631004,0.2856737,0.023159439,-0.4692935,0.18708295,-0.4306508,0.2346719,-0.86940914,0.27608293,-0.42880055,-0.64622974,-0.6268361,-0.085236646,-3.6310422,0.23191915,-0.032872345,-0.24428642,0.1634441,0.062491626,0.3041885,-0.4728724,-0.29643106,0.15402648,0.24489331,0.56991315,0.04599136,-0.16186018,-0.41838375,-0.13619284,-0.07259489,0.26843712,0.039888065,-0.014917977,-0.13259272,-0.35141954,0.052524086,-0.39675882,0.03925866,-0.042726934,-0.72719026,-0.31880707,-0.21729898,-0.52973217,-0.49177673,0.6927975,-0.58963436,-0.05882634,-0.22636652,-0.012271664,-0.17012793,0.34634233,0.020414943,0.09248052,-0.10232406,-0.2722902,-0.3708761,-0.4643619,0.046219885,0.0707633,0.19199128,0.5817239,-0.084269606,-0.08121317,0.6516013,0.37965393,0.046146378,0.8187375,0.26923007,-0.1561142,0.29092988,-0.3817114,-0.09731501,-0.5917918,-0.24587257,-0.3470993,-0.42879686,-0.43794894,0.07971051,-0.36544505,-0.67461705,0.62161344,0.27522993,-0.46986413,0.21120398,0.36580873,0.18503927,-0.12639445,-0.026989976,-0.30047324,-0.0040090284,-0.51839715,-0.43342045,-0.72022706,-0.5544862,0.23129265,1.1039943,-0.16501223,-0.03698274,0.22848438,-0.09797705,0.07343796,0.29863086,0.0126255555,0.25102422,0.3960165,0.09897258,-0.73339295,0.64321285,-0.16833287,0.036629874,-0.5269709,0.23824652,0.5605542,-0.94391656,0.39603305,0.48383793,0.21796311,0.13661514,-0.5374057,-0.37408748,0.0972231,-0.24647129,0.34179714,0.037244864,-0.9597366,0.5505362,0.22929345,-0.21331477,-0.92012936,0.19509703,-0.23482953,-0.28186733,0.15693195,0.37618545,-0.087222345,0.10567071,-0.44721308,0.04869722,-0.70152336,0.16585466,0.19795947,-0.103908144,0.4827861,-0.15876801,-0.09901723,-0.6674414,-0.17999327,-0.4399607,-0.2239338,0.38010252,-0.034456823,0.13370748,0.2617015,0.2078347,0.3993169,-0.41109172,0.14225914,-0.16842872,-0.2600271,0.4746717,0.42365885,0.24834292,-0.47728953,0.5920921,-0.23282434,0.06445189,-0.5614662,0.00818187,0.41504678,0.2674069,0.32935077,-0.19798179,-0.0650536,0.16738671,1.0252799,0.21071875,0.35029736,0.19461425,-0.15106241,0.5716612,0.035098687,0.15356956,0.059111666,-0.44320002,-0.09197149,-0.013169289,0.16390239,0.28700328,0.122999884,0.6327787,-0.13632132,0.003132065,0.080406554,0.2647296,0.18734574,-0.5249993,0.48954293,0.17198062,0.37010124,0.86109614,0.024967998,0.09738036,0.7434554,-0.4096943,0.2790017,0.060761113,-0.21252431,-0.368517,0.5833671,-0.7367756,0.07744657,-0.2036166,-0.024329558,0.2613268,-0.16500506,0.49923134,0.8910627,-0.06369794,0.25977907,-0.071138196,-0.17591952,0.020959726,-0.22509623,-0.1734652,-0.33906412,-0.5051436,0.717611,0.24649465,0.48690498,-0.301436,-0.092197895,0.20403421,-0.0153322965,0.3172262,-0.0350441,-0.022691796,0.12653153,-0.49463424,-0.22385979,0.8321659,-0.0134031875,0.12108082,0.3115854,-0.27838954,0.52023745,-0.06258341,-0.23944974,-0.13817064,-0.5007707,0.2953626,-0.4164476,-0.291918,0.5949356,-0.09275081,0.34529778,0.07131127,0.11934212,-0.09131525,0.43836525,0.31596193,0.70045334,0.14516641,-0.29189292,-0.014903545,-0.08461901,0.09569493,-0.31351593,-0.17803927,-0.27485967,0.14665978,-0.9096373,0.3422093,-0.26640448,-0.31427887,0.25674775,-0.02409883,-0.018922018,0.4434118,0.045717616,-0.08414557,0.05806466,0.10548123,-0.30554488,-0.24532308,-0.40549386,0.1496079,-0.29235458,0.12697703,-0.09440968,-0.041392483,0.15225677,0.3770727,-0.0008463785,0.06980691,0.05541865,0.18751252,-0.31243008,0.17610429,-0.06698938,0.44493553,-0.08129609,0.010265201,-0.15795445,-0.0946511,-0.2640648,-0.043475527,-0.16622971,0.21608083,0.1265307,-0.54303604,0.8907933,-0.14280806,0.83080816,0.15098451,-0.3405924,0.13193624,0.4894599,0.019453267,0.11096696,-0.36023402,0.9605627,0.6893189,-0.11580872,-0.03595199,-0.50371784,-0.34887543,0.34187827,-0.24971263,-0.11048042,-0.122489594,-0.8162736,-0.23564868,0.22993998,0.37242934,0.081048645,-0.18380427,0.14158438,0.109813355,0.27077302,-0.065920606,-0.45625266,0.04675466,0.29226342,0.22018503,0.12224901,0.09966087,-0.29012612,0.30694377,-0.921138,0.16373965,-0.41560975,-0.22549449,0.12403903,-0.07909801,0.19537199,0.04169901,0.27699503,-0.14081036,-0.28057078,0.057958525,0.54688853,0.36001864,0.4836268,0.9837756,-0.21585262,0.04425894,0.0018339878,0.4495059,1.0913182,-0.35473147,-0.14189814,0.46702346,-0.22596703,-0.60955256,0.07310095,-0.23697837,0.0013732215,-0.09944477,-0.688245,-0.27770784,0.19712786,0.2457078,-0.3747178,0.035981666,-0.48810396,0.14637297,0.24093823,-0.26982114,-0.46203884,-0.21916904,0.16368149,0.9066272,-0.23121911,-0.35599503,0.033134192,0.108417146,-0.5241224,-0.53633815,-0.050780218,-0.4290445,0.27904415,0.41109964,-0.39428052,0.2454537,0.14579429,-0.62971705,-0.0055764965,0.22413345,-0.34967843,0.0028651368,-0.5021604,0.089859426,0.9138383,0.21200953,-0.060851455,-0.48184142,-0.6339045,-0.68052745,-0.31545377,0.48493275,0.021961376,-0.05253799,-0.2487321,-0.047465462,-0.1603286,-0.11119155,-0.01839869,-0.5017121,0.399948,-0.082451,0.4992236,-0.10769264,-0.92031604,0.14922374,0.2573696,-0.126822,-0.4331909,0.16585462,-0.47895694,0.9912786,-0.012288659,-0.001435419,0.33768272,-0.7710023,0.30394897,-0.58104503,-0.08232365,-0.61703736,0.001474157,893 +902,0.4407859,-0.17065947,-0.52726334,-0.2499839,-0.31617638,-0.060323372,-0.023894975,0.62391627,0.46554637,-0.018690139,0.07001531,-0.019605586,-0.143369,0.49638602,-0.16502474,-0.9298453,0.024050675,0.11926543,-0.62288064,0.4719104,-0.41628763,0.2613639,-0.17334183,0.55031884,0.17423661,0.14761555,0.029265516,0.06470439,0.28483462,0.000529622,-0.06285983,0.21939029,-0.46642253,0.33917025,-0.040301524,-0.24851261,0.029347016,-0.3820363,-0.33518836,-0.87066245,0.43518475,-0.56752235,0.57424164,0.08060575,-0.43897453,0.023680212,0.13284205,0.29610696,-0.45947334,-0.08706658,0.08887624,-0.08252866,0.07589533,-0.02659183,-0.35095248,-0.33940756,-0.6184843,-0.077971436,-0.41394138,-0.12862913,-0.25608328,0.1635767,-0.36165503,-0.11951826,-0.25945407,0.6479514,-0.2982712,0.14691253,0.37772608,-0.18467207,0.21278293,-0.44761062,-0.12949951,-0.093013845,0.09480917,0.18449199,-0.3515686,0.36496723,0.26857057,0.35340902,-0.09863508,-0.26011375,-0.23302011,-0.1406233,-0.06674292,0.3700695,-0.24644786,-0.2894683,-0.21315467,0.062530324,0.2377065,0.35548222,0.0035042565,-0.23253246,-0.017991006,-0.13512789,-0.1195394,0.5587395,0.45802274,-0.25714687,-0.29048893,0.30797634,0.23345439,0.20850806,-0.20750594,0.17586891,0.03774755,-0.57430345,-0.23153807,0.09238684,-0.1512205,0.46054807,-0.084735245,0.15189406,0.82446104,-0.14059468,-0.23218727,-0.0688681,0.11289088,0.038580667,-0.4297121,-0.3102267,0.19937742,-0.50457495,0.110747896,-0.15466343,0.8508079,0.14226007,-0.7668981,0.18132323,-0.58620423,0.10412393,-0.18632956,0.6009671,0.9395828,0.49466538,0.32835126,0.74726266,-0.45586523,0.10132912,0.06943036,-0.26118907,0.124034464,-0.10342121,0.09790298,-0.50939447,-0.034515966,-0.029050201,-0.07634547,0.17016138,0.0210488,-0.46682385,-0.21517245,-0.017749252,0.81758004,-0.2578661,-0.13740633,0.76958114,0.9604459,1.1058893,0.09670129,1.1140894,0.29079822,-0.095021784,0.23003049,-0.2302419,-0.62068576,0.19353946,0.16374932,-0.23198362,0.2428168,-0.05427386,-0.021651268,0.4723289,-0.2422529,-0.059698284,0.0019200556,0.30661973,0.052038927,-0.26463988,-0.41131893,-0.4824792,0.06857165,0.02195265,-0.03288595,0.36073926,-0.2969494,0.3056993,0.0393027,1.1978997,0.3469971,0.03874899,0.047688723,0.44748938,0.2529819,-0.27655426,-0.1911078,0.2896503,0.48140678,0.07356323,-0.5919313,0.2071228,-0.30917585,-0.18699916,-0.060388308,-0.44991302,0.028349796,-0.13528071,-0.4066658,-0.21006499,-0.15609972,-0.104913615,0.4105235,-2.8472373,-0.061427146,-0.09494736,0.12279234,-0.11257281,-0.12651585,-0.054629516,-0.49029422,0.24309766,0.39446008,0.35913268,-0.61880785,0.3745706,0.39546537,-0.54300135,-0.062773086,-0.6752258,-0.22474344,0.078028984,0.26786846,-0.078350194,0.21046853,-0.09618673,0.30023837,0.6269446,0.17971802,0.08060191,0.18821661,0.50410664,-0.10431097,0.52196985,-0.11089006,0.48389718,-0.3941156,-0.10795916,0.15591992,-0.5146363,0.43429065,0.121332705,0.11448478,0.61060184,-0.49058416,-0.9025533,-0.4103185,-0.17477208,1.2292653,-0.36537054,-0.26887476,0.39416078,-0.44020852,-0.16187745,-0.10346606,0.5325925,-0.101032116,-0.16069557,-0.62329376,-0.055425104,-0.021187032,0.29604566,-0.096277855,-0.12896618,-0.079746485,0.5116791,-0.047640193,0.5686782,0.20860833,0.11668384,-0.46092656,-0.5670552,4.3225784e-05,0.5518091,0.37950453,0.08922106,-0.0995048,-0.13928495,-0.18902801,-0.06238538,0.09870228,0.73527294,0.77069664,-0.13333087,0.12459018,0.41011062,-0.20626569,0.0248705,-0.08953912,-0.2576888,-0.15301119,0.06896409,0.4405035,0.7599612,-0.13842617,0.42165127,-0.05829147,0.20002896,-0.19132538,-0.4568931,0.5583397,0.8049666,-0.11481502,-0.23733978,0.5861445,0.35442278,-0.3429515,0.40024078,-0.45543823,-0.15740697,0.76043296,-0.1344185,-0.3903452,0.010695373,-0.28069147,-0.092615105,-0.94176143,0.37278402,-0.29377612,-0.64279324,-0.44529784,-0.021164,-3.9207084,0.16304593,-0.27365914,-0.21883963,-0.2622522,-0.033662777,0.28328404,-0.5674836,-0.59599835,0.15167391,0.20809229,0.5382839,-0.13686685,0.08794132,-0.38599655,-0.30843222,-0.307588,0.1653841,0.16412435,0.2860128,0.0031332572,-0.31628385,-0.05867328,-0.0539338,-0.5706336,0.084922455,-0.582863,-0.4033629,-0.09580805,-0.6758025,-0.16840875,0.821704,-0.25122812,-0.025110478,-0.17349319,-0.04539925,-0.13405125,0.33493087,0.19836225,0.25478983,0.06807104,0.018710986,-0.15518317,-0.31333736,0.20835467,0.042953607,0.49694657,0.16201766,-0.08054952,0.19295485,0.6395152,0.67469054,-0.0003350973,0.75923204,0.38320565,-0.07940954,0.3351028,-0.3709383,-0.38047218,-0.44640234,-0.24385363,-0.17211038,-0.33739635,-0.4015551,-0.07069711,-0.26934218,-0.81870526,0.3637413,0.031136194,0.25829682,-0.16990362,0.17882985,0.3555913,-0.16689889,0.17766671,-0.060548287,-0.21472692,-0.39840588,-0.28532287,-0.6634372,-0.3947183,0.31231955,1.0737575,-0.34110418,0.048446327,-0.07030691,-0.4015272,0.046970546,0.18464416,0.17639816,0.28558728,0.21590261,-0.20254202,-0.63867086,0.40382826,-0.19723749,-0.1264811,-0.68391186,0.07062445,0.820117,-0.5714434,0.76527596,0.12083172,0.015457928,-0.20738347,-0.6666436,-0.3442748,0.14843573,-0.017247101,0.52558726,0.29624248,-0.7054791,0.47534263,0.278765,-0.1496097,-0.6398664,0.4654919,-0.13314618,-0.32530567,-0.017028809,0.3858079,0.12380188,-0.08686149,0.06368526,0.35852483,-0.30284992,0.13229808,0.19498412,-0.07675493,0.23113339,0.055244416,0.057543218,-0.7066886,0.06415876,-0.67760205,-0.17356043,0.29018787,0.038175624,0.14259818,0.08981922,-0.06552831,0.2637817,-0.15122445,0.14073873,-0.013745884,-0.24411379,0.37803403,0.51116383,0.41410124,-0.34980765,0.5521601,0.12648283,0.07983923,0.24009494,0.271426,0.4536165,0.21189289,0.5244224,-0.21442668,-0.25969574,0.22342749,0.73640853,0.12489017,0.31941125,0.09841961,0.023112396,0.2044038,0.16385192,0.06983048,0.061647397,-0.24437343,-0.1472416,-0.14409716,0.23833914,0.53588265,0.09318664,0.22909577,-0.018255508,-0.28091618,0.1970384,0.234459,-0.06433637,-1.2927359,0.4324324,0.25004125,0.7938207,0.39726067,0.28223935,-0.19874598,0.6985416,-0.13751061,0.20147704,0.58403534,0.18181874,-0.47846428,0.6542661,-0.57157815,0.6721535,-0.019505316,0.0095566185,0.08344624,0.26532805,0.37954366,0.8079508,-0.096393645,-0.019641653,0.090298206,-0.3642056,0.108745135,-0.44246197,0.09996179,-0.52543306,-0.35404572,0.5067424,0.5101382,0.15279573,-0.35986912,-0.032825578,0.09703028,-0.082036965,-0.05363092,-0.17290907,-0.17395155,-0.16250119,-0.6196986,-0.2292289,0.45343232,-0.109615296,0.066763766,0.029913014,-0.14675735,0.29157078,-0.1027239,-0.044114094,-0.07560408,-0.7971544,-0.0108579,-0.27806285,-0.49608627,0.5408121,-0.49303687,0.2130708,0.20919792,0.045740705,-0.43280736,0.32832572,0.04715256,0.7386672,-0.24206881,-0.092886806,-0.3600937,0.10965911,0.1030537,-0.25186843,-0.06720417,-0.43780628,-0.02332819,-0.46053088,0.34554327,-0.080060326,-0.26869223,-0.23003155,-0.1253009,0.121987544,0.44509855,-0.2637918,-0.06042259,-0.25654456,-0.28937554,-0.38988647,-0.2232007,-0.28292468,0.2995053,0.102497436,0.0039103427,0.043963138,-0.13615239,-0.110066205,0.25217745,-0.07716604,0.27719593,0.3113372,0.067072086,-0.18282229,0.013287127,0.0027635198,0.40819708,0.1356333,-0.15387301,-0.39121106,-0.22231494,-0.19533002,0.19788122,-0.20167732,0.3011534,-0.08884362,-0.42792454,0.78159374,0.05395648,1.1496128,-0.11585525,-0.4066175,0.10494328,0.45163098,0.09062535,-0.018571714,-0.12682916,0.77195215,0.54250944,-0.07861995,-0.172702,-0.24806571,-0.116302334,0.26317027,-0.27691928,-0.28685912,-0.02570183,-0.63393193,0.049384754,0.22433466,0.10024353,0.2845836,-0.011703898,-0.22915141,0.04749153,0.23874015,0.3819003,-0.43735328,0.12787145,0.12456298,0.3924687,0.24169742,0.20471036,-0.4401184,0.3357924,-0.72129536,0.27976763,-0.4065087,0.17218496,-0.2505716,-0.28982124,0.08549816,0.06248754,0.31572095,-0.26655486,-0.19545062,-0.24512087,0.5970685,0.23624535,0.16002576,0.6667995,-0.23776908,-0.12025261,0.17303784,0.54798967,1.0268168,-0.09111759,-0.30064687,0.12112262,-0.35584155,-0.8964049,0.14453878,-0.39415208,0.1672256,-0.0852265,-0.10201314,-0.35767698,0.19989367,0.12962316,0.13145769,-0.004309498,-0.53674877,-0.36074963,0.4507903,-0.27599305,-0.36709538,-0.33402833,0.29421198,0.6180901,-0.19904667,-0.36459944,0.013584316,0.1990615,-0.1631425,-0.51502883,0.045419823,-0.42614743,0.3285273,0.018172491,-0.51378286,-0.018486291,0.09598645,-0.49716714,0.19956188,0.15072234,-0.29153,0.02388054,-0.06746817,-0.27223098,1.0288206,-0.1412699,0.082084745,-0.6313977,-0.5387153,-0.8409675,-0.3479508,0.4218396,0.26512748,-0.08349099,-0.78109217,-0.051411923,-0.033262096,0.025123915,-0.017760143,-0.4577539,0.41859105,0.11688641,0.27033907,0.102570124,-1.0090368,0.09160442,0.13387631,-0.16737403,-0.6412427,0.51377594,-0.18913858,0.8189427,0.057033617,0.051208694,0.19276147,-0.4143429,0.207209,-0.32081234,-0.30873248,-0.40196028,0.17370753,899 +903,0.37338868,-0.20687266,-0.43836305,-0.21011592,-0.46394494,-0.014422526,-0.42083475,0.16341294,0.32992527,-0.31740236,-0.22133927,-0.0034292303,-0.09009097,0.10813645,-0.17619115,-0.40451518,-0.10984359,0.10535882,-0.87414837,0.5850904,-0.5164202,0.3365513,0.16823316,0.504603,0.08857235,0.21477777,0.36755773,0.032844804,0.08115756,-0.40715873,0.00960809,-0.07875603,-0.7898539,0.2778835,-0.34686413,-0.41642675,-0.025967963,-0.70399386,-0.12392956,-0.85117555,0.32592916,-0.839323,0.60458857,-0.08701346,-0.23523076,-0.1828606,0.6754113,0.19123626,-0.09753748,-0.17032997,0.25203595,-0.33153844,-0.25143102,-0.2589518,0.13960983,-0.45139253,-0.52890337,-0.10113583,-0.52096975,-0.38854074,-0.24671936,0.35615888,-0.37711096,0.09362335,-0.15844579,0.7643867,-0.39645264,0.17386596,0.16736372,-0.24489321,0.19338417,-0.7563715,-0.13192378,-0.069733925,0.5746798,0.14715575,-0.15120932,0.44708595,0.27988887,0.38994554,0.19667141,-0.3853804,-0.24258143,0.033257376,-0.24559145,0.48033538,-0.15812615,-0.2339474,-0.117375135,-0.022391418,0.5699914,0.40488735,0.05311429,-0.049416464,0.10645783,-0.19819565,-0.19986065,0.79222804,0.52686125,-0.30638584,-0.08595332,0.16436231,0.33078894,0.4872358,-0.22238445,-0.078931354,-0.06036957,-0.69852734,-0.2438341,0.077410586,-0.09100965,0.3734981,-0.13050938,0.24091448,0.672786,0.027595945,-0.07666256,0.23081887,0.021648759,0.12161431,-0.14255372,-0.4263982,0.38456142,-0.58646876,0.089957945,-0.44159886,0.72925067,-0.14951253,-0.7039206,0.33929718,-0.61013085,0.15709175,0.14809512,0.5557799,0.91895455,0.745593,0.47499284,0.8735222,-0.043227863,0.025777036,-0.037566047,-0.1398703,0.21597524,-0.4265922,0.2894949,-0.3819891,0.02420717,-0.26965377,0.28101394,-0.0011376739,0.5691555,-0.59178036,-0.17110176,0.25336888,0.7734823,-0.106025435,0.10837301,0.747921,1.0446954,1.1089627,0.1472918,1.0095617,-0.032007735,-0.2372144,-0.008780186,0.18677671,-0.8032279,0.25898948,0.344321,0.041643303,0.20045447,-0.06893241,0.00017161667,0.46008906,-0.37890482,-0.19178323,-0.049943898,0.37797156,0.21674085,-0.14638765,-0.42404106,-0.42855784,0.13122503,0.048539992,0.1893849,0.23712273,-0.34262228,0.332567,-0.11734261,0.9771824,-0.09785235,0.08085767,0.24647407,0.53991455,0.30675098,-0.12601866,0.100386895,0.19173187,0.18550837,0.16089566,-0.63717353,0.2886875,-0.31019577,-0.26021257,-0.1613241,-0.4060793,-0.46280566,0.113794215,-0.41369793,-0.38478914,-0.22737904,-0.2943812,0.2090673,-2.654171,-0.23146307,-0.19192319,0.4327917,-0.21682619,-0.18005168,-0.04179247,-0.58043957,0.3491634,0.3082724,0.69987226,-0.5598657,0.44050947,0.60595,-0.8274072,-0.2271409,-0.62880754,-0.0728947,0.06550184,0.44375697,0.12160162,-0.4005653,-0.21931536,0.12213918,0.7440285,0.2501568,0.15115516,0.51568437,0.52510875,-0.13622062,0.6685937,-0.18907803,0.5103857,-0.34372985,-0.23124285,0.27629933,-0.54502314,0.043489683,-0.34744084,0.03216858,0.84016114,-0.59835154,-0.97933894,-0.56678265,-0.026135633,1.1813692,-0.0894446,-0.7113817,0.1084418,-0.5620996,-0.13850711,0.046128992,0.81059045,-0.16925271,-0.007972066,-0.61203593,0.020197019,-0.2409994,0.29899412,0.011787798,-0.12138909,-0.59007055,0.8803661,0.005075189,0.6025643,0.070052736,0.25903976,-0.6766255,-0.29845676,0.098537385,0.56806,0.60703033,-0.019496053,-0.25644353,0.055260662,-0.11014304,-0.3026602,-0.08435765,0.92718506,0.45793185,-0.099734396,0.22781722,0.40986907,-0.15517813,0.13222249,-0.14242692,-0.24200201,-0.41833544,0.13457012,0.6098122,0.8262701,0.057116628,0.3299807,-0.046027977,0.21197136,-0.30047712,-0.52720875,0.65391254,0.5555253,-0.2329876,-0.008992541,0.5056301,0.6292244,-0.2818043,0.5286327,-0.5687017,-0.48739043,0.4740665,-0.09948885,-0.5586627,-0.023336021,-0.42917708,-0.054521635,-0.50853556,0.31919196,-0.51241195,-0.5403249,-0.47876522,-0.13852602,-2.3021927,0.21518616,-0.24436726,0.049513314,-0.6240749,-0.24329282,0.2622061,-0.5305856,-0.7557869,0.105066024,0.2675867,0.74339765,-0.12177405,0.12205607,-0.21863031,-0.56874007,-0.09543881,0.21160476,0.12868063,0.2905458,-0.004242564,-0.20667839,0.032688428,0.056427762,-0.39390126,-0.031052867,-0.4637933,-0.48362327,-0.026362075,-0.5189427,-0.29403245,0.6338094,-0.3841568,0.069414295,-0.39365327,0.12515198,0.038920708,0.10889101,-0.0027939528,0.25163853,0.197263,-0.19954006,0.09606471,-0.1947302,0.4825851,-0.07057163,0.40690675,0.16629575,0.11573527,0.23711777,0.40276054,0.6622534,-0.20074435,1.2326708,0.21223791,-0.053945493,0.3575605,-0.17439888,-0.43323183,-0.70708066,-0.02229636,0.26692358,-0.34855697,-0.26882467,0.30145475,-0.28389376,-0.7809133,0.6023137,0.037700083,0.32799146,0.024407139,0.3569266,0.42363715,-0.10875541,-0.079423256,0.074846625,-0.12047104,-0.53674185,-0.26253542,-0.7592543,-0.32873818,-0.3086557,0.9926379,-0.21815455,0.107462354,0.33350268,-0.12217516,0.11775803,-0.07559169,0.056894746,0.118505515,0.4648699,0.32798266,-0.6140943,0.24585868,-0.196492,-0.06288785,-0.4744741,0.3993063,0.7680142,-0.6503708,0.5885547,0.57670003,0.09357139,-0.41631973,-0.66024435,-0.0055035003,0.08614763,-0.22461657,0.34405562,0.34413555,-0.7559244,0.5514326,0.15125987,-0.42810106,-0.85539246,0.3778837,-0.030023703,-0.3122432,-0.18392694,0.385777,0.37892005,-0.08225503,0.036606085,0.26277384,-0.4580623,0.4093441,-0.2531845,-0.073691584,0.28013366,-0.10968869,-0.42941907,-0.69787073,0.018092126,-0.6112666,-0.442773,0.38803756,-0.11661529,-0.012730156,0.3752469,0.19599535,0.3809737,-0.030897805,0.13336043,-0.1656445,-0.31846306,0.19825952,0.570218,0.48822224,-0.38072327,0.5330309,0.16079396,-0.0586873,0.1941924,0.16663383,0.1828825,0.0069106705,0.5028641,-0.2611136,-0.12268173,0.14032365,0.915102,0.1644409,0.28953508,-0.029227247,0.02736342,0.483315,-0.064779356,0.25194076,-0.16767712,-0.70878834,0.043703776,-0.19327855,0.054705698,0.50114167,0.058775783,0.24431606,-0.03193924,-0.10240557,-0.07358008,0.312462,-0.4988264,-1.1049753,0.43444267,0.30367973,1.0228674,0.52925366,0.1310022,-0.21925063,1.0615679,-0.09756004,-0.09808701,0.47514662,0.074715935,-0.31455374,0.71332735,-0.5947707,0.49492815,-0.20611812,-0.071894765,-0.06693061,0.20605087,0.19909795,0.6245566,-0.28701895,-0.013737778,-0.14553721,-0.2765824,-0.012539159,-0.2057231,0.17951716,-0.33643046,-0.4512743,0.8267286,0.25156096,0.32158408,-0.40161562,0.15927471,-0.10519991,-0.20522285,0.16669078,-0.015315689,-0.30908152,0.05742353,-0.5179761,0.10373425,0.44021654,0.008245637,0.2932408,-0.08540157,-0.1710283,0.017182777,-0.06644466,0.020670608,-0.08957801,-0.74511856,0.2077173,-0.30599248,-0.5541249,0.458889,-0.2737118,-0.16450699,0.27799344,0.10573679,-0.013952534,0.35442722,0.14741983,0.47701597,-0.16190249,0.026005983,-0.2174402,0.012770772,0.015058741,-0.37698314,0.16145672,-0.34197125,0.23861726,-0.5460803,0.6325082,-0.1698351,-0.41467324,0.26454177,-0.12066424,-0.06274183,0.53819436,-0.17380925,0.0718854,0.1172589,-0.25352776,-0.1728176,-0.24179454,-0.30867392,0.1505559,0.102565266,0.017486146,-0.22679074,-0.22615834,-0.33535132,0.51647574,-0.08099378,0.5115833,0.19055827,0.20805462,-0.335533,0.1799527,0.039845217,0.84355134,0.16925202,-0.057803024,-0.4815285,-0.3869492,-0.40330586,0.45381722,0.07372068,0.093252264,0.07375822,-0.2912683,0.8779921,-0.20118488,0.96927285,-0.22715282,-0.2650351,0.019015292,0.66080433,-0.15395765,0.06697079,-0.33170894,0.8892335,0.35182497,-0.06341223,0.119740725,-0.443259,0.12072003,0.24313855,-0.3511165,-0.08330835,-0.14197588,-0.46006235,-0.30482894,0.18717182,0.2272969,-0.07304784,-0.276293,-0.039111767,0.23385425,0.15691514,0.30022037,-0.6007561,-0.29068843,0.3217046,0.27556744,-0.16154602,0.13776745,-0.52760035,0.196927,-0.8650456,0.2724984,-0.6390927,0.04472821,-0.15709339,-0.2222191,0.22955902,-0.020317784,0.3977816,-0.33790526,-0.41526023,0.023635939,0.30932906,0.23245434,0.22947697,0.5938223,-0.21716557,-0.02319024,0.20261465,0.7445922,1.0703777,-0.3391964,0.09248834,-0.058132272,-0.5756013,-0.57595164,0.28726384,-0.3674188,-0.31782162,0.1380246,-0.23948763,-0.3871051,0.12592083,0.22506242,0.24376178,-0.11160881,-0.8975546,-0.26786527,0.3672622,-0.24529189,-0.1563855,-0.30328253,0.26928398,0.57284015,0.013408731,-0.14381778,-0.12832224,0.5610245,-0.15447827,-0.63451,0.1508912,-0.58516854,0.29999536,-0.073152915,-0.411141,-0.116536535,0.0028965871,-0.6225683,0.068644606,0.17629413,-0.4008861,-0.09110504,-0.25275144,0.115986355,0.7964887,-0.18455034,0.06430745,-0.298112,-0.62343,-0.92405796,-0.14524575,-0.037820697,0.22901623,0.013306181,-0.5373301,-0.208472,-0.22278242,-0.41107735,-0.016142005,-0.6143301,0.18581061,0.1914162,0.5637289,-0.4886985,-0.8539534,0.21753018,0.08907294,-0.054073155,-0.32442564,0.34184822,0.15571703,0.6754597,0.15444238,-0.1369883,-0.29745737,-0.4568744,0.23274462,-0.30724853,-0.19020866,-0.7580454,0.15286954,906 +904,0.17503585,-0.34584734,-0.7015689,-0.14277412,-0.3849735,-0.026464125,-0.38634896,0.27902016,0.034521505,-0.27110374,-0.21703659,0.07197166,-0.0050821207,0.2648256,-0.19612814,-0.4528922,-0.21949951,0.21103425,-0.83288604,0.5053921,-0.5489669,0.26790148,0.001198257,0.47067606,0.06339536,0.2656447,0.28768027,0.025830412,0.10273785,-0.18811469,-0.08454567,0.2934384,-0.5371013,0.25430182,-0.21959615,-0.62838775,0.029584214,-0.4575748,-0.019182742,-0.8476015,0.2800318,-0.9129389,0.56090504,-0.15425144,-0.2371978,-0.011118129,0.34965575,0.3743831,-0.17090571,-0.13479592,0.37273192,-0.13894634,-0.25584733,-0.35890555,0.06403326,-0.2470619,-0.3690339,0.010872508,-0.61821944,-0.32284883,-0.21788251,0.35262856,-0.2674615,0.06956344,-0.24299127,0.3547515,-0.41353962,0.07404568,0.0670605,-0.12323105,0.2630408,-0.61960036,0.09460921,-0.12702322,0.5430908,-0.15176491,-0.23382698,0.22543995,0.1286505,0.34258676,0.057548095,-0.17345947,-0.23211907,-0.16375408,-0.021213502,0.45921394,-0.25491512,-0.28683278,-0.14846192,-0.017973185,0.42927146,0.38320664,-0.0360095,-0.23639087,0.03359774,-0.25394103,-0.21507676,0.6401429,0.43174925,-0.2303877,-0.24146323,0.3383458,0.6174445,0.26342204,-0.32523245,-0.06615217,-0.047837455,-0.52844036,-0.13500714,0.118050836,0.115394294,0.4017334,-0.17404164,0.3896245,0.71235114,-0.03459452,-0.10621085,0.13001674,-0.0353025,-0.2076785,-0.14376928,-0.2728187,0.18153997,-0.563891,0.1482582,-0.23720114,0.7000496,-0.015788613,-0.9132164,0.46838114,-0.5699336,0.044619042,-0.060260523,0.5606257,0.55027145,0.62196034,0.17696774,0.7017348,-0.22975738,0.20153223,-0.1916318,-0.28996268,-0.058652263,-0.13684602,0.11140531,-0.47814667,0.16805644,-0.28654632,0.2340705,-0.047758486,0.23012601,-0.49115214,-0.15948214,0.22452547,0.637077,-0.347388,0.017772734,0.8186066,1.0010939,0.9688535,0.100531824,0.9617974,0.024240104,-0.16293858,0.0127625065,-0.012554675,-0.777375,0.20536841,0.45721066,0.16128632,0.16023491,-0.0991201,0.12264368,0.45677546,-0.25580904,-0.16265272,-0.19166107,0.2896695,0.12496519,-0.016737664,-0.35026208,-0.23330192,0.193835,-0.031773485,0.044554442,0.20645611,-0.23005497,0.4500548,0.15657325,1.3524374,-0.13703072,0.11305956,0.14285137,0.5135839,0.2159486,-0.1236398,-0.09995911,0.2523742,0.39747766,-0.02722498,-0.5832508,0.26622504,-0.21677692,-0.46990636,-0.061179694,-0.28182352,-0.3419167,0.012829469,-0.4649457,-0.30394664,-0.09408712,-0.2480495,0.31191155,-2.888921,-0.23607671,-0.07614759,0.2809632,-0.15716441,-0.36867675,0.0032049443,-0.5667283,0.4171522,0.23278524,0.52021706,-0.51265734,0.62779146,0.42220464,-0.5500539,-0.22986047,-0.7367067,-0.1076951,0.034396045,0.43377006,0.057513643,-0.09385156,-0.24795644,0.07457589,0.5831097,-0.14718087,0.15512626,0.4444908,0.3855028,0.14966221,0.5948655,-0.03621049,0.5769293,-0.5672003,-0.24283928,0.28545073,-0.38702166,0.20149408,-0.08513541,0.08969164,0.5546142,-0.6245665,-0.84961456,-0.73800546,-0.19771276,1.1968793,-0.2002788,-0.3814502,0.17067565,-0.37889862,-0.14453988,-0.00543197,0.46969032,-0.12220511,-0.010282661,-0.66533977,0.04416511,-0.18907662,0.37192702,0.038991645,-0.1554104,-0.4600173,0.61735564,0.020618105,0.6245666,0.271884,0.13416363,-0.30515692,-0.196719,0.09813207,0.61305594,0.28172353,-0.011311556,-0.1221591,-0.20537949,-0.18189968,-0.10061312,-0.02772677,0.66674066,0.54246694,0.051290233,0.2049082,0.25556538,-0.0872449,0.13277586,-0.29107907,-0.2362067,-0.1496847,0.16637845,0.4113483,0.52831036,0.07682275,0.40940443,-0.14229439,0.29080555,-0.1425566,-0.530003,0.5851969,0.48949352,-0.07570964,-0.10751889,0.50063425,0.6383362,-0.38574448,0.44829747,-0.5109592,-0.21425812,0.5095079,-0.25179014,-0.47486934,0.06633768,-0.23699994,0.13121435,-0.6541582,0.12856503,-0.60193205,-0.6284973,-0.44363737,-0.078890614,-2.9984293,0.27716303,-0.08006623,-0.2621433,-0.38797697,-0.2599115,0.25561535,-0.4951576,-0.6631847,0.048609685,0.236445,0.5798029,-0.02332434,0.054360185,-0.2718021,-0.21313643,-0.02294445,0.347442,0.1094375,0.22691023,-0.20564692,-0.3011422,-0.15730496,-0.071582936,-0.4270976,0.030987075,-0.5796007,-0.32931703,0.053258467,-0.47334608,-0.30356425,0.5211713,-0.2565132,-0.015852584,-0.24624902,0.001520291,-0.12495818,0.32142475,0.14902519,0.23014541,0.11742555,-0.12107152,0.12655802,-0.35152873,0.36303568,-0.103416175,0.23881464,0.08058306,0.035007868,0.24141036,0.35562694,0.7736173,-0.17168576,1.1796728,0.33186632,-0.050930675,0.37129855,-0.3178966,-0.54095477,-0.594118,-0.055187225,0.003502454,-0.29154798,-0.2894598,0.18681277,-0.19769521,-0.8252602,0.7924342,0.17344035,0.10318639,0.026037136,0.401672,0.3446213,-0.17847109,0.03092323,-0.13420409,-0.105329014,-0.5261643,-0.29903677,-0.718842,-0.47678736,-0.33723775,0.98771363,-0.29170647,0.18426718,-0.020867428,-0.21521349,0.06193685,0.22419001,0.12219032,0.4965857,0.4221151,-0.060125668,-0.62654275,0.34971294,0.027312418,-0.17272766,-0.34918645,0.1891797,0.67968196,-0.6229653,0.40181383,0.26232806,-0.014018538,-0.22898476,-0.62604976,-0.07350438,-0.10515106,-0.16218095,0.48468998,0.3193619,-0.94994706,0.55957764,0.4256592,-0.2835308,-0.8565088,0.36238825,0.050498847,-0.32322264,-0.18881802,0.28700283,-0.01867204,-0.11221566,-0.24211572,0.16311155,-0.30963987,0.2890032,-0.037316445,-0.07431553,0.22506136,-0.33322108,-0.22913544,-0.5663155,0.07197385,-0.6354953,-0.2734922,0.3616718,-0.03037708,-0.096077375,0.31060788,-0.06255341,0.36392632,-0.29780385,0.127966,-0.12396785,-0.35423395,0.013435721,0.45393372,0.29168865,-0.40128437,0.5297479,0.059236035,-0.1525734,-0.060586423,0.027994772,0.45080277,-0.076157965,0.40630364,-0.26844093,-0.17779505,0.35364607,0.9272416,0.20621085,0.43704364,-0.28858268,0.013048108,0.30334827,-0.01171298,0.25783458,0.10994825,-0.4583303,0.067535035,0.012310912,0.1158821,0.55760694,0.064706825,0.36039087,-0.008581544,-0.1506625,-0.031073553,0.22874542,-0.029782772,-1.0999082,0.5798848,0.27209747,0.89784145,0.51326257,0.18782811,-0.12454464,0.8671647,-0.4120612,0.100069545,0.40897587,0.07029113,-0.33007017,0.7722723,-0.6748781,0.39353418,-0.14432295,-0.108280264,0.26392674,-0.064961076,0.3269895,0.7895875,-0.19565193,0.09737182,0.042996615,-0.19144171,-0.0957332,-0.2896462,-0.17455769,-0.26918504,-0.32091412,0.78307825,0.458058,0.39818347,-0.27427745,-0.035108868,0.030636316,-0.08520895,0.16595863,-0.07098734,0.036875576,0.039364632,-0.36706778,0.0042531244,0.7154133,0.28242928,0.21728896,-0.25067607,-0.4333776,0.24880351,0.006748654,0.012975027,-0.13558485,-0.52919894,0.32709888,-0.30645877,-0.41472924,0.5795178,-0.19396318,0.0142324595,0.23104693,0.058337193,-0.031642526,0.34563997,0.06825038,0.55451095,0.071083754,0.06312609,-0.27460745,0.09916567,0.15750238,-0.24831742,-0.043557715,-0.43400046,-0.021777915,-0.60240215,0.48660812,-0.056340754,-0.50300646,0.25864545,-0.11706068,-0.032716002,0.65250427,0.05543219,0.036936592,0.08131411,0.036381785,-0.31053022,-0.29120937,-0.20325685,0.19193478,0.22549927,0.18010823,-0.28924128,-0.12302742,-0.19269444,0.6707272,0.103458315,0.623766,0.054227125,0.07629328,-0.35732308,0.15013301,0.021307299,0.5571623,0.037809312,0.018607581,-0.17982851,-0.24924026,-0.16266392,0.25995228,-0.027839882,0.14620964,0.1032272,-0.2207665,0.8563626,-0.050197188,0.96245414,-0.021683596,-0.29620418,0.21535306,0.48445585,-0.066836536,0.053775445,-0.40707257,0.7990815,0.4288076,-0.08737984,-0.025302896,-0.2646807,-0.16989662,0.14302124,-0.37240136,-0.0041892924,-0.12128663,-0.51497644,-0.43773124,0.23641928,0.20055556,0.09238991,-0.15714744,-0.008759816,0.08417189,0.06020445,0.26515713,-0.5679514,-0.11802834,0.19528024,0.20403564,-0.21300398,0.14628488,-0.48633957,0.4009516,-0.74665433,0.19386315,-0.5936548,0.15673648,-0.21344154,-0.3830175,-0.00066302717,-0.10696385,0.16605996,-0.14018308,-0.4421921,0.010378187,0.23222537,0.17084752,0.33577093,0.50573206,-0.23753352,0.19757748,0.045245234,0.4593346,0.6857628,-0.40803996,-0.20801629,0.2585477,-0.32674593,-0.5512857,0.2690722,-0.25894937,-0.07257595,0.068514444,-0.20639296,-0.18701701,0.23642081,0.30854955,0.13832839,-0.20017119,-0.7025962,-0.030335864,0.39341578,-0.1767519,-0.18705976,-0.2623236,0.33954582,0.72534674,-0.24271075,-0.3883358,0.036219716,0.4141043,-0.23114842,-0.5270061,0.09592139,-0.28149116,0.34553504,0.061802592,-0.38857785,-0.043230385,0.12008896,-0.52253145,0.04852949,0.259549,-0.26998517,-0.015870778,-0.310343,0.13118897,0.95580846,-0.29043978,-0.07624355,-0.30318505,-0.49749467,-0.7769721,-0.23366325,0.24618565,0.2638857,0.094806105,-0.45550752,0.09703815,-0.105452605,-0.40925106,0.14460324,-0.40246102,0.3676876,0.13194913,0.5691268,-0.32665786,-0.8467873,0.268867,0.22264552,-0.030183181,-0.45070148,0.5041772,-0.12448061,0.7944772,0.08608085,-0.14851542,-0.06564424,-0.45809785,0.19500871,-0.3964436,-0.032803617,-0.74234676,0.056464955,918 +905,0.2830985,-0.34855056,-0.37845054,-0.13836396,-0.07166735,-0.028341135,-0.16206764,0.6584767,0.045927253,-0.37221503,-0.1873707,-0.31918895,0.036939975,0.39727962,-0.10840008,-0.51398414,-0.1597143,0.08141615,-0.5162901,0.54102015,-0.34483898,0.053239126,-0.05372094,0.41956636,0.39398554,0.27903488,0.058232486,-0.07863466,-0.0983578,-0.22687846,-0.1190991,0.1433597,-0.61554396,0.3045957,-0.08844227,-0.09332154,-0.0635188,-0.62946016,-0.48000658,-0.7051635,0.29611382,-0.81688637,0.3626915,0.12448779,-0.12585662,0.29263663,0.22568047,0.36910498,-0.2583545,-0.1454276,0.29043892,0.022423124,-0.012169232,-0.15800503,0.03424572,-0.37966368,-0.5694201,0.0073209503,-0.24342103,-0.5383565,-0.20488296,0.20543809,-0.26655075,-0.069042124,0.008030142,0.7266386,-0.41018972,0.19153546,0.19479807,-0.14236312,0.31786874,-0.6558166,-0.25527987,-0.11963568,0.26731697,-0.09277898,-0.19069932,0.24884023,0.32575178,0.123660825,-0.14612718,-0.027396843,-0.094356455,-0.19299786,0.24927194,0.4494382,-0.19082348,-0.67168283,-0.0065178475,0.10972839,-0.055405717,0.096696556,0.1907661,-0.5702805,-0.27619803,0.062025014,-0.34024838,0.3847781,0.3445121,-0.10408863,-0.23272176,0.34552345,0.4716027,0.27532098,-0.18606178,-0.11950765,-0.012531522,-0.5830224,-0.024856046,0.00891821,-0.13941789,0.50099117,-0.15883557,0.25977054,0.7316447,-0.10534856,-0.17143638,0.07746946,0.09382134,-0.025730083,-0.39881405,-0.3346274,0.1514631,-0.30145547,0.18910265,-0.15129258,0.7792063,0.21318097,-0.73869294,0.3527346,-0.59695035,0.2207402,-0.122568816,0.4441551,0.6849923,0.38475823,0.43267003,0.56058997,-0.40017048,0.1223816,0.029305005,-0.40110663,0.108946264,-0.23093636,-0.16904481,-0.4886178,-0.011364897,-0.07869207,-0.043865066,0.10828421,0.29520962,-0.5642882,-0.022120014,0.09342783,0.9626191,-0.2243789,-0.03147633,0.5904819,0.85758835,1.069265,0.010304034,0.96768755,0.1263979,-0.2908842,0.41204223,-0.2777329,-0.739196,0.33162832,0.4204639,0.094877124,0.207087,-0.06535522,-0.02665553,0.34054407,-0.33963537,0.21936388,-0.20770468,0.14173199,0.33672276,-0.29541764,-0.38022423,-0.2779011,-0.12022679,-0.07664485,-0.11755333,0.025600294,-0.24722074,0.44336048,-0.070639335,1.750286,0.07363098,0.11663211,0.09940896,0.5332112,0.11861381,-0.2453196,-0.00990815,0.5454106,0.45277992,0.34987918,-0.46351242,0.2903919,-0.2544376,-0.44623676,-0.06953018,-0.44787255,-0.17212401,-0.035963196,-0.2619938,-0.1916004,-0.13498247,-0.10665398,0.44782138,-2.9975662,-0.166508,-0.2196601,0.2829611,-0.22460945,-0.18782575,0.025305254,-0.3827786,0.3992388,0.3886217,0.6101354,-0.59605974,0.29654035,0.3694903,-0.52795994,-0.2717469,-0.5482738,-0.0074426583,0.01279413,0.47594902,-0.072741546,0.055184823,0.028368458,0.13251399,0.5180369,0.00020088255,0.10096424,0.2960081,0.4378442,0.09313921,0.6297539,-0.119899474,0.38479328,-0.22789876,-0.14820272,0.27178597,-0.45662633,0.29755208,0.025364855,0.04797517,0.48411727,-0.40329528,-0.92449504,-0.6268139,-0.20098512,1.0787004,-0.3280361,-0.30276394,0.3316017,-0.37992707,-0.18203144,-0.15373766,0.40004167,-0.14217955,-0.0033690135,-0.76506805,0.017308736,-0.035410013,0.23344056,0.03723717,-0.25962463,-0.43861946,0.6457249,-0.02759699,0.43858984,0.3346441,-0.023876548,-0.47473896,-0.47033748,-0.07119563,0.88028914,0.29309538,0.08447528,-0.07361693,-0.15343122,-0.33138335,-0.12928842,0.12556197,0.6063909,0.4427185,0.018053642,0.18444197,0.28014985,-0.06668157,-0.01502952,-0.22128464,-0.26499316,-0.13356532,-0.0152456565,0.5651147,0.5977089,-0.11626843,0.50195414,-0.06171212,0.31301576,0.07198911,-0.41345295,0.45197856,1.130462,-0.026746439,-0.3725934,0.447479,0.4432713,-0.3165765,0.34146062,-0.35231963,-0.053046893,0.68731403,-0.25694665,-0.5936335,0.37808546,-0.19958687,-0.0149666965,-0.7838573,0.27762377,-0.24831675,-0.53052264,-0.6415878,-0.21539076,-2.9852803,0.14991964,-0.23675281,-0.45301422,-0.24066897,-0.041560177,0.10105565,-0.5984865,-0.40902996,0.14971988,0.060952794,0.61650574,-0.10585266,0.085342795,-0.21899408,-0.09965164,-0.3377477,0.1847683,0.045176487,0.28130627,0.023656866,-0.39901194,-0.071412206,-0.14863698,-0.48655602,0.117869474,-0.5093012,-0.42101955,-0.09950348,-0.52070665,-0.34704408,0.67578703,-0.3307484,0.036167957,-0.11341039,0.07901011,-0.1577618,0.23659122,0.26226074,0.1679162,-0.08328185,-0.013042524,0.00016380847,-0.3058711,0.32386142,0.012818457,0.4020119,0.24147503,-0.11417546,0.29152378,0.36533603,0.6790321,0.016202722,0.7338097,0.4507219,-0.052437514,0.34267876,-0.33007905,-0.29790065,-0.42713484,-0.24811791,0.16842882,-0.31167218,-0.48354074,0.02945236,-0.30225644,-0.6047805,0.40996572,-0.064671345,-0.068109274,0.022272259,0.20259582,0.5515944,-0.18177183,-0.029882148,0.02736637,-0.06619203,-0.62624997,-0.13064843,-0.5686547,-0.5355106,0.14461851,0.86069155,-0.2562864,-0.099064715,-0.13685636,-0.5050919,-0.012228116,0.25277755,-0.21914291,0.358984,0.31278214,-0.10934558,-0.75477546,0.44203737,-0.17734073,-0.33678102,-0.53156954,0.2717123,0.5781444,-0.5222601,0.71171635,0.22707379,-0.034139443,-0.24516475,-0.36167648,-0.2414825,-0.16622393,-0.2582625,0.28106442,0.08231603,-0.6108025,0.3294505,0.35323167,-0.25029415,-0.7051196,0.4105363,-0.0854039,-0.2804567,0.10078601,0.31731912,0.1399524,-0.036901202,-0.10529119,0.22286119,-0.3984714,0.13798606,0.16075586,-0.0037501454,0.20618725,-0.05341019,-0.056899797,-0.7471941,0.15537955,-0.36131665,-0.3886299,0.4835309,0.17178255,0.2046082,-0.018993502,-0.030760124,0.32585466,0.049180955,0.084091045,-0.13976987,-0.1798837,0.31743145,0.4644703,0.37517717,-0.57868564,0.5493864,0.06372369,-0.020483196,0.1503823,0.09593892,0.21910189,0.19935465,0.39393187,0.014344673,-0.26314187,0.24401908,0.690811,0.18512283,0.601293,0.11596588,-0.006273652,0.28654888,-0.05739985,0.18674664,0.1508333,-0.616694,0.023072824,-0.1701724,0.15363942,0.51299137,0.109776996,0.25394756,-0.14890516,-0.39396355,-0.0016495181,0.3673698,0.26514688,-1.1560036,0.46745703,0.2928051,0.9287236,0.4798578,0.006476074,0.014810597,0.8988347,-0.016790546,0.010199149,0.31814936,0.027365476,-0.68222624,0.5546498,-0.8505187,0.44933936,-0.027524948,-0.051021397,-0.005633384,0.064419515,0.4940853,0.57026225,-0.1968114,-0.06623839,0.05190423,-0.29289216,0.28641397,-0.5660091,0.25472537,-0.37261906,-0.3353615,0.4068925,0.6000704,0.20579238,-0.18556315,0.06554074,0.076935686,-0.22233248,0.1461872,0.016100561,-0.052335262,0.029280834,-0.94092983,-0.16038255,0.5214936,-0.26458237,0.32775494,0.16003491,-0.17610367,0.37854585,-0.18629234,-0.08661842,-0.11364464,-0.57670075,0.22981954,-0.09377063,-0.5513529,0.4414502,-0.13601969,0.21284492,0.25081238,0.011414657,-0.107318215,0.3896316,0.066090785,1.0694281,-0.18665159,-0.22048597,-0.38197646,0.21262453,0.07980361,-0.13280754,-0.09272241,-0.3416327,-0.108357064,-0.5160718,0.61183673,0.11465508,-0.37689766,-0.14677201,-0.14484145,-0.05579604,0.69017,-0.107857294,-0.1197291,-0.21224773,-0.2776928,-0.04727741,-0.049198765,-0.05550389,0.34744096,0.3069953,0.096141815,-0.12053757,-0.07683592,-0.22295402,0.52287465,-0.06913292,0.53196937,0.34143522,0.1480693,-0.32575792,-0.28886354,0.10274144,0.5080032,0.3090792,-0.18506481,-0.23542118,-0.40853497,-0.3627356,0.20053361,-0.07313117,0.5945804,0.15535207,-0.36987412,0.64024967,-0.2074461,1.2597713,-0.07813324,-0.39975056,0.23022904,0.56465054,0.105622105,0.026487073,-0.34635386,0.6391993,0.4697069,0.00021147728,-0.007550703,-0.35546616,-0.0312945,0.054387778,-0.15956692,-0.23816828,0.011542037,-0.59864193,-0.27177534,0.07426671,0.17040826,0.34859458,-0.12684469,-0.11631233,0.26134464,-0.13348368,0.28570345,-0.22787638,-0.079237044,0.18131618,0.22475976,-0.004557828,-0.12595688,-0.5998834,0.45763645,-0.36555302,0.15884243,-0.3323708,0.19225286,-0.21837719,-0.20918871,0.1818815,-0.056747615,0.36133492,-0.3252441,-0.288788,-0.2117585,0.66357654,0.194592,0.19632046,0.5752728,-0.25484505,0.07459853,0.032954264,0.52340466,0.8587578,-0.36277202,-0.11050445,0.39438704,-0.5153282,-0.61540014,0.3693092,-0.28546077,0.3174193,0.09103241,-0.0012658039,-0.47406983,0.16484794,0.2843791,0.07137938,-0.11060875,-0.6592969,-0.34512684,0.39128542,-0.35689092,-0.14446011,-0.39788136,0.107307054,0.5333473,-0.22269888,-0.23089524,0.008548354,0.062825195,-0.23564188,-0.3875793,-0.18174498,-0.42737797,0.46761265,-0.0132261915,-0.2233011,-0.21883272,0.019342208,-0.4786146,0.27662745,-0.18271148,-0.40090492,-0.008564572,0.021764256,-0.23881374,0.9246556,-0.24182324,-0.010264833,-0.5186865,-0.41384518,-0.70672727,-0.30064902,0.5991902,-0.12508999,0.072874255,-0.57801986,-0.14037819,-0.066395946,-0.27449414,-0.16794908,-0.39013764,0.35939166,0.039071076,0.47908196,-0.052689027,-0.82913715,0.28809282,0.17077339,0.026687214,-0.8776378,0.44665194,-0.08093656,0.6784618,0.03494041,0.2703193,0.27090728,-0.23630363,-0.15610966,-0.2571195,-0.28778288,-0.63576597,0.22824882,926 +906,0.5018525,-0.05673449,-0.40329766,-0.35623217,-0.3514842,0.12833655,-0.19576971,0.110070296,0.34679374,-0.5712886,-0.15429275,-0.04075982,-0.03990066,0.51649195,-0.22711174,-0.86644936,-0.017854994,0.06865765,-0.58266217,0.41394392,-0.56078166,0.22045851,0.040364567,0.43953958,-0.2951479,0.16831015,0.5162225,-0.04610609,0.07080113,-0.15063153,0.109286845,0.11320001,-0.87846094,0.30369362,-0.095465384,-0.25286007,0.012521054,-0.72034764,-0.09983573,-0.769196,0.4647638,-0.8798342,0.58686554,-0.0843052,-0.28219256,0.04668249,0.22240971,0.05408753,-0.12540048,-0.08680568,0.29676822,-0.33488014,-0.24292612,0.10998118,-0.35810176,-0.52958983,-0.696482,0.08103488,-0.65841246,-0.1955923,-0.3729564,0.17263901,-0.35709313,0.026286462,-0.20996828,0.63011175,-0.45697126,-0.12464592,0.36861792,-0.33400884,0.07900948,-0.5828487,-0.15568207,-0.15623952,0.31123504,0.0026606247,-0.18627568,0.50846684,0.34827176,0.6047493,0.21307676,-0.3949543,-0.20652825,-0.087103404,0.23702562,0.59899914,-0.022034913,-0.3339359,-0.26331472,-0.024945071,0.25727317,0.17170517,0.16798835,-0.27310136,0.10973292,0.12876879,-0.032619696,0.6983757,0.4949658,-0.42650792,-0.29777387,0.34367296,0.3815559,-0.032569867,-0.049836148,0.08414355,-0.10834048,-0.5414159,-0.33220056,0.11815251,-0.13173306,0.5558733,-0.079794325,0.05030054,0.8147003,-0.32946193,0.035266723,-0.20679307,-0.28043196,0.13530238,-0.34776023,-0.053794295,0.34224483,-0.39823022,0.06877771,-0.24984433,0.6001254,0.24031931,-0.8071313,0.34354195,-0.37161407,0.15473051,-0.027511701,0.7571895,0.7937191,0.48457217,0.4345092,0.9800944,-0.40305606,0.042702883,0.20220132,-0.20942074,0.0258782,-0.27286795,0.29467526,-0.28799823,0.2341003,0.095974915,-0.055533666,0.11669382,0.34573603,-0.4180824,-0.03906168,0.09696128,0.6551414,-0.27484378,-0.16342537,0.9460376,1.2720946,1.083795,0.09209916,1.6563493,0.14538775,-0.08276489,0.09783548,-0.021608269,-0.74479,0.13604361,0.46668682,0.6165018,0.4026148,0.08365974,-0.06302657,0.35626206,-0.5235765,-0.2728184,0.057400268,0.3599192,0.09573803,-0.18019366,-0.50255036,-0.11509272,0.23821227,0.0638923,-0.0052598887,0.3409516,-0.17712744,0.47226024,0.10013873,0.8551416,0.0060634017,0.11934296,0.034025554,0.33339584,0.12152806,-0.19959502,0.14499176,0.29206058,0.16553004,0.047506083,-0.6938978,-0.027260842,-0.5015406,-0.4851311,-0.34228912,-0.5147636,-0.119850494,-0.22514905,-0.16035849,-0.26345655,-0.15756893,-0.4173293,0.36072764,-2.3716106,-0.29409808,-0.3318182,0.4657692,-0.19282164,-0.2134224,-0.18516254,-0.64244175,0.41273132,0.43531027,0.5004081,-0.55206776,0.49763182,0.414986,-0.67968696,-0.11303604,-0.776789,0.07476213,-0.13812833,0.5200767,0.0046214364,-0.360144,-0.32294008,0.34515008,0.79233384,0.50524473,0.11124009,0.20604783,0.59238297,-0.14708097,0.502584,-0.17940728,0.56101775,-0.25840458,-0.05704094,0.45463374,-0.49104962,0.32083952,-0.37608054,0.033991043,0.6231667,-0.51509064,-1.0721421,-0.81901914,-0.57015496,1.1948539,-0.41430256,-0.6703143,0.45553008,-0.16335161,-0.11755362,-0.044158276,0.6168348,-0.11263477,0.20006716,-0.6401556,0.20156896,-0.20894052,0.02417934,-0.10391486,0.34533966,-0.5342428,0.7674942,-0.23013961,0.4828333,0.2624502,0.15980105,-0.1683942,-0.19124456,0.08028036,0.7405328,0.45621848,0.15191674,-0.14518747,-0.07698051,-0.15290941,-0.4240248,-0.06419466,0.94223386,0.6056488,-0.078394115,-0.036940813,0.20219187,-0.13686457,0.16799103,-0.11334634,-0.25849426,-0.2081757,0.075361975,0.71014816,0.6958151,-0.46035123,0.0445426,-0.11574253,0.3273411,-0.04339214,-0.49467853,0.35095808,0.71856815,-0.19240178,-0.020688688,0.790649,0.5396283,-0.5235297,0.531207,-0.64106965,-0.28586838,0.8491408,-0.003452748,-0.547381,-0.3071937,-0.24362762,0.014615645,-0.65934,0.2848099,-0.26741233,-0.7812632,-0.2163785,-0.23154251,-3.1796367,0.2346642,-0.26939812,-0.040886506,-0.21864821,-0.104997106,0.24616326,-0.5865357,-0.65091664,0.07260849,-0.04346584,0.5565268,-0.21261542,0.17685187,-0.3325549,-0.19974883,-0.19657142,0.32965985,0.033327308,0.34616065,-0.041161884,-0.2545164,0.105173804,-0.12477087,-0.6172337,-0.07504793,-0.5644217,-0.56865436,-0.19374482,-0.49863115,-0.20405316,0.76234895,-0.38835326,-0.124553286,-0.3110485,0.1330433,-0.2571742,0.2625716,0.007902329,0.41941917,0.087166406,-0.06730042,-0.1527294,-0.09976268,0.6704564,0.07327823,0.47227982,0.4020374,-0.25208318,0.19987448,0.42632294,0.67503715,0.038090236,1.0585493,0.29419354,-0.013898787,0.3686755,-0.15291485,-0.38924417,-0.8767622,-0.43515667,0.0704949,-0.44040796,-0.5529074,-0.07481861,-0.4655302,-0.886136,0.482874,0.08280229,0.34452948,-0.24320465,0.16168408,0.26110327,-0.32384428,0.12711243,-0.1287843,-0.052981537,-0.7004245,-0.34841123,-0.71251756,-0.6255448,-0.09501406,1.1271303,-0.063922316,-0.27319312,0.11045935,-0.27783272,0.11307507,0.13407399,0.27787575,-0.07110431,0.56729513,0.07603424,-0.82481664,0.44528142,-0.1339107,0.023289422,-0.6465898,0.25209594,0.6204348,-0.5536464,0.77888393,0.39675787,0.30509365,0.08158066,-0.6913007,-0.31098744,-0.05219284,-0.05648036,0.52058524,0.18428724,-0.9223809,0.5172624,-0.11077809,-0.31892908,-0.6277363,0.50703,-0.16641389,0.12141153,0.11784059,0.42462435,0.18765609,-0.19519329,-0.16722424,0.28277123,-0.51634896,0.4995997,0.2085315,0.18689401,0.72321194,-0.16361861,-0.4307791,-0.8257079,-0.20335943,-0.6064807,-0.22711396,-0.02660645,-0.1431879,-0.100133084,0.16489346,0.16089225,0.559799,-0.20495756,0.22671014,-0.06674672,-0.58094454,0.43673754,0.57180786,0.565782,-0.6582528,0.7480576,0.07394246,-0.08020016,-0.18044512,0.093832545,0.4563633,0.072510965,0.35811213,-0.04917055,-0.048320625,-0.109248705,0.7750995,0.18966268,0.23371327,0.22453894,-0.19714652,0.69859976,0.0006772007,0.2114247,-0.10624366,-0.73297507,0.10742852,-0.13133515,-0.06864341,0.48273805,0.22884321,0.39548168,-0.045296907,-0.13281389,0.12502052,0.085496984,-0.12868752,-1.4359903,0.14884531,0.18881983,0.8168791,0.51356804,-0.029750595,-0.0061029494,0.65751666,-0.16990001,-0.10764774,0.6068497,-0.05771904,-0.53831625,0.7204725,-0.5836404,0.57557166,-0.28521085,-0.06136164,0.12085771,0.30157885,0.42701736,0.90566796,-0.21082877,-0.102459095,-0.20000096,-0.12123954,0.30704808,-0.39345217,0.07716115,-0.4560542,-0.26030958,0.7458318,0.4760634,0.3039566,-0.24223296,-0.0010329945,0.21226732,-0.22050394,0.34706888,-0.1770215,-0.259217,-0.23690958,-0.7397242,-0.19107813,0.4546087,0.0005500267,0.15129666,0.20443535,-0.26674524,0.09508073,0.023089387,-0.26561803,0.0015825698,-0.78679687,-0.19206727,-0.28873852,-0.5905614,0.2441395,-0.33492768,0.16293709,0.27550742,0.097275674,-0.2855892,0.02099663,0.16197507,0.78314334,0.022572747,-0.18784648,-0.3693662,-0.041548807,0.31713852,-0.4521276,0.38563785,-0.29514447,0.15506199,-0.47181496,0.65005213,-0.22100186,-0.20359199,0.10324413,-0.10391903,-0.06680123,0.4760147,-0.15236114,-0.0041172574,0.19137055,-0.2260227,-0.1892374,-0.2213307,-0.39094117,0.28238004,-0.040406395,-0.06080231,0.047849264,-0.15921329,0.040097903,0.43346894,0.07795157,0.09146059,0.16368224,-0.070037834,-0.42186823,0.020882512,0.1166096,0.5910558,0.1342551,-0.092334926,-0.23368078,-0.41689324,-0.20194484,0.48113072,-0.06792232,0.12491011,0.009386569,-0.3725557,0.68688256,0.17523164,1.1931065,-0.031754013,-0.4385701,-0.032849755,0.79352903,0.05390358,-0.021949073,-0.45500383,1.0166119,0.4271501,-0.14277552,-0.15593497,-0.7706595,-0.11366219,0.26034224,-0.26574662,-0.24785154,-0.2630995,-0.77560145,-0.16935344,0.1315789,0.09782157,0.2004515,0.0013031512,0.072716124,0.014500921,0.23813121,0.5049211,-0.6033317,-0.24619631,0.4133215,0.1987866,0.05829124,0.12829672,-0.22058636,0.34766865,-0.7736418,0.22916079,-0.3964928,0.05566597,-0.26552406,-0.24040346,0.23380367,0.12220293,0.49390635,-0.026991853,-0.38175598,-0.07967052,0.4955388,0.09091214,0.27778164,0.824578,-0.2868372,-0.23359184,0.021515632,0.56636477,1.6268415,0.05433276,0.47416446,0.07056854,-0.43225527,-0.6446969,0.15804985,-0.51125985,0.06791598,-0.09609733,-0.26628464,-0.46677613,0.041200563,0.039464176,-0.18896861,0.21556467,-0.59463453,-0.4748577,0.24110109,-0.37921157,-0.19112617,-0.3863741,0.244989,0.93621427,-0.33451757,-0.25125733,0.13213019,0.3297375,-0.0623406,-0.8115087,-0.02300935,-0.20176506,0.38121262,-0.13660844,-0.41638395,0.01310607,0.18750282,-0.49031627,0.2056321,0.19422428,-0.38928714,0.07588766,-0.3479043,-0.026775578,1.0854625,0.13757871,0.3737372,-0.5975926,-0.669405,-0.99105865,-0.25499997,-0.12080321,0.0900474,-0.10951411,-0.2264276,-0.23454468,-0.049189508,0.10145578,0.042382002,-0.672694,0.21001768,0.057657544,0.60188466,-0.14819609,-0.8643856,-0.08580625,0.15857397,0.19135761,-0.50092655,0.32976386,0.027947113,0.70288706,0.17103465,-0.018970026,-0.15953855,-0.6262594,0.29031536,-0.3730807,-0.11888337,-0.43288672,0.2457627,945 +907,0.2352835,-0.23804252,-0.6472769,-0.11161259,-0.39294985,-0.045097966,-0.34566653,0.1274569,-0.096230656,-0.57613236,-0.11851693,-0.3336066,-0.054943834,0.5482524,-0.14048393,-0.54709285,-0.015317556,0.46599028,-0.58886224,0.26924625,-0.3637825,0.44794917,0.1997819,0.020352116,-0.11112997,-0.050602198,0.28734508,-0.18090843,-0.10787892,-0.50589657,0.010933474,-0.13879843,-0.9651162,0.29406604,-0.12032291,-0.68801713,-0.05455935,-0.28744414,-0.19481333,-0.85184646,0.18169184,-0.89981604,0.5829422,-0.19772291,-0.13757734,0.09950155,0.14834301,0.61174613,0.13757764,0.20607872,0.28409687,-0.4191883,-0.40535107,-0.14625484,-0.16028562,-0.45787242,-0.5175409,0.07525032,-0.61819625,-0.32043546,-0.41129133,0.124527,-0.40459427,0.19828296,-0.18853343,0.45441127,-0.16291492,-0.21366441,0.28888276,0.038563177,0.48363224,-0.5699993,0.086737126,-0.1726708,0.2657986,-0.46737787,-0.28214732,0.3427571,0.27379966,0.48307583,-0.03609797,-0.22600605,-0.19952375,-0.19867809,0.27324164,0.62228626,-0.09449208,-0.4123623,-0.12503886,0.025021456,0.33165446,0.04450661,-0.092998475,-0.4256628,0.04225442,0.16646862,-0.30368873,0.34575653,0.47574246,-0.11085733,-0.13137716,0.4602653,0.6127464,-0.039917585,-0.044039547,0.18890978,0.09597678,-0.4712509,-0.1809016,0.21041526,-0.039668825,0.4863739,-0.16107184,0.21640714,0.57326156,-0.4100999,-0.17968427,0.07551826,-0.059397385,0.0059765778,-0.05865111,-0.4754323,0.56995696,-0.76081103,0.08391888,-0.38316575,1.0647702,-0.014017392,-0.86517924,0.37941417,-0.6999776,0.16479617,-0.18072768,0.83933973,0.56666136,0.5985264,0.12768999,0.7018245,-0.38546443,0.09059899,-0.090925425,-0.4164712,-0.10341082,-0.41940704,-0.083460905,-0.3520579,-0.26676628,0.047063585,-0.13411279,-0.105998,0.56900305,-0.51975423,-0.2310362,-0.15833686,0.60300493,-0.46925655,-0.04534753,0.73856664,1.1771418,1.1034218,0.3088632,1.248442,0.2754493,-0.24723685,-0.28475317,-0.012747705,-0.789161,0.29202452,0.21583124,-0.55131894,0.19971772,0.09204218,-0.07471371,0.374261,-0.5752267,-0.050451655,-0.15884753,0.29943076,-0.2948044,-0.21070011,-0.27506098,-0.13073853,0.13647032,-0.023725217,0.09336099,0.31911102,-0.23379226,0.33209315,0.32952324,1.1276431,-0.15794186,0.15576555,0.14144395,0.08774356,0.0743188,-0.28153846,-0.041178625,-0.07406103,0.40603462,0.058907393,-0.55722123,-0.076528005,-0.10568786,-0.40467867,-0.43505827,-0.13085407,0.11971089,-0.11473558,-0.22208524,-0.21540909,0.13491465,-0.43888518,0.6383126,-2.028766,-0.13177024,-0.120659895,0.27178466,-0.2992156,-0.4163371,-0.099294364,-0.64918596,0.42261377,0.2742449,0.42811227,-0.64217174,0.3481063,0.25426638,-0.30975845,-0.15286501,-0.790782,-0.049289104,-0.2005909,0.12614302,0.13812645,-0.117995895,-0.08114519,0.07824595,0.48275694,-0.34815407,0.06588284,0.47251233,0.14206201,0.21652083,0.58332324,0.16051362,0.44033417,-0.36578846,-0.23580532,0.39226928,-0.21918829,-0.06912264,-0.016935175,0.16079581,0.22248013,-0.5659753,-0.8966577,-0.85709125,-0.5861762,1.1548539,-0.25780073,-0.70902896,0.10625257,0.2557875,-0.3684474,-0.064941645,0.35861382,-0.25242496,0.211235,-0.815633,-0.08556387,-0.17468846,0.55001813,0.0040515834,0.0058848686,-0.5840739,0.45358816,-0.35664478,0.23929538,0.5671547,0.2564971,-0.31228748,-0.5648807,0.11901084,1.4674224,0.32519233,0.081165224,-0.4131032,-0.09545169,-0.31736198,-0.02469024,0.052869588,0.36028424,0.9000918,-0.012208671,0.10556477,0.35694543,-0.045617018,0.056590408,-0.0672699,-0.5314257,-0.032760423,-0.18358482,0.7839369,0.32823095,0.29107344,0.7773319,-0.1072667,0.17264374,-0.2765763,-0.3442793,0.51598275,1.313659,-0.19514327,-0.31004384,0.5976183,0.39504996,-0.08415884,0.5285986,-0.6352693,-0.50940305,0.30834463,-0.06623272,-0.44666114,0.2517663,-0.3286388,0.28405735,-1.0169011,0.52599466,-0.42377886,-0.8860946,-0.59254,-0.123277314,-2.7243426,0.32502612,-0.1923443,-0.057073027,-0.05651961,-0.20118241,0.43996385,-0.3212547,-0.5538991,0.15025398,0.16382305,0.8364229,0.015623167,-0.027115917,-0.15817274,-0.15573634,-0.27428484,0.27170983,0.3670927,-0.049551982,-0.0073890015,-0.44527325,0.07972428,-0.3646524,-0.33559537,0.08259231,-0.55137295,-0.46144316,-0.30870947,-0.583499,-0.7266936,0.71878487,-0.67889553,0.0490115,-0.28938448,-0.049469765,0.10868245,0.4530368,0.05765623,0.14544265,0.048150185,-0.18735664,-0.16095752,-0.16211557,0.05596361,0.039366093,0.17603107,0.308819,-0.48078915,0.17705025,0.44948447,0.7199846,0.17877962,0.9200128,0.49307966,-0.16202319,0.052844662,-0.2917831,-0.17067051,-0.5893073,-0.228658,-0.14805917,-0.42432022,-0.3983856,-0.00950933,-0.27338335,-0.830105,0.79382926,-0.05409513,0.044014733,-0.058346983,0.44864264,0.25038144,-0.024436286,-0.22418946,-0.25417674,-0.1333648,-0.3920933,-0.42927146,-0.6836128,-0.60188144,-0.2216721,1.3420442,-0.049544077,0.15631877,-0.03278458,-0.02152122,0.17904373,0.1810875,-0.071392685,0.25587097,0.47396484,-0.14638692,-0.75834656,0.3221533,-0.2039537,0.10593265,-0.77192736,0.3489591,0.86630064,-0.6620338,0.26244816,0.53594416,0.08622033,-0.23004736,-0.5076592,-0.078206554,0.095678605,-0.35453597,0.26335707,0.107263945,-0.7532485,0.6298564,0.2932845,-0.26684645,-0.83227473,0.5136761,0.2311757,-0.16089787,0.1973499,0.36476687,-0.13880078,0.074883856,-0.29894271,0.25414833,-0.33513394,0.26977196,0.2941609,-0.08727645,0.2691668,-0.33545431,-0.10589576,-0.63560885,0.22306746,-0.4126674,-0.18534625,0.015285824,0.006349236,0.11403784,0.55618054,-0.005548189,0.46104625,-0.23569767,-0.040813725,-0.2803916,-0.49029768,0.46215448,0.603815,0.16491556,-0.42870125,0.779072,0.0542846,-0.142793,-0.73396844,-0.034083255,0.54691905,-0.033113334,0.33132067,0.272382,-0.21702544,0.1605469,0.7320544,0.40097204,0.6454771,0.0043279626,0.012387075,0.10490084,0.2373171,0.4366857,0.20969498,-0.5214102,-0.015071045,-0.22998212,0.028288553,0.52791125,-0.026720032,0.5236766,-0.23528688,-0.24142969,0.0018942971,0.02012656,-0.25150597,-1.4086828,0.69828886,0.2558252,0.5396743,0.5432911,-0.10390981,0.28727666,0.4857287,-0.27101287,0.1967923,-0.00082136196,0.042105448,-0.17427611,0.6605249,-0.9293217,0.3102652,-0.033016097,-0.05953437,0.051007837,-0.07843829,0.4003669,0.8581279,-0.07388566,0.25779176,-0.26624084,-0.16994731,0.2683677,-0.2538562,0.2801563,-0.56084067,-0.33716464,0.9692993,0.24690016,0.5116727,-0.15176994,-0.059817284,0.0826683,-0.2303931,0.19612221,0.011918393,0.07609085,0.013121098,-0.50067157,-0.16503339,0.64527845,0.10796425,-0.04004346,0.26445165,-0.12886089,0.27273402,0.040840466,0.0630442,-0.06491974,-0.57574385,0.1178197,-0.48763123,-0.15302616,0.17544962,-0.5105052,0.2817626,0.16111778,0.10152513,-0.39596447,0.18212843,0.63203764,0.70368403,0.1824751,-0.21510603,-0.07384505,0.13941927,0.26190788,-0.3413674,-0.08521152,-0.13899226,-0.07159902,-0.9074862,0.36659285,-0.20830375,-0.30329552,0.5748642,-0.051978197,-0.21017374,0.5507105,-0.16409652,0.12516193,0.5608459,-0.040050004,-0.046417225,-0.20883448,-0.11833707,0.1824855,0.045295034,-0.082949474,-0.07533236,0.12180314,-0.20677216,0.37840882,-0.067613825,0.31470367,0.2904021,0.27046338,-0.44169506,-0.02591391,-0.09274128,0.5681284,0.063992985,0.01887264,-0.38302281,-0.25776526,-0.19988029,0.16800939,-0.05875491,0.2607639,0.020788074,-0.45065615,0.871969,0.08620218,1.0670656,0.036103208,-0.37957326,0.03541653,0.451766,0.08399204,-0.06496427,-0.46857294,1.0428132,0.5316165,-0.10993717,-0.049900457,-0.40306222,-0.1594698,0.18933141,-0.1487024,-0.38631442,0.061272535,-0.5855492,-0.47107133,0.25737402,0.45428684,-0.14620247,-0.03884399,0.20812182,0.5308342,-0.1582031,0.22417994,-0.39788723,0.24353482,0.15897804,0.22820301,0.07243197,0.16085291,-0.2858399,0.27513772,-0.8899527,0.15544371,-0.20337264,0.08297202,0.202474,-0.20546412,0.2877324,0.5075268,0.20654988,-0.11872145,-0.21068867,-0.07183427,0.4949808,-0.00021576385,0.2657995,0.9463765,-0.25240245,0.17812747,-0.053472176,0.2801741,1.2618892,-0.41316056,-0.01642407,0.5098519,-0.40737438,-0.4925989,0.47203505,-0.33057365,0.05909313,0.042876672,-0.61462045,-0.29354942,0.18033506,0.109888844,-0.103331685,0.33029884,-0.6159064,0.00078231096,0.3659602,-0.34015712,-0.28836998,-0.44680452,0.27051356,0.5077235,-0.2317043,-0.4572772,0.018662505,0.43536386,-0.202094,-0.39494964,-0.049759578,-0.24852078,0.3159585,0.07359556,-0.198418,-0.027364016,0.2578136,-0.40969142,0.06260314,0.254508,-0.25286016,0.095858686,-0.20228238,0.06756572,0.70865613,-0.38340974,-0.1391009,-0.6186474,-0.4927005,-0.7967622,-0.29495028,0.4000105,0.37092185,0.025537023,-0.57929355,-0.14006831,-0.08205729,-0.0808035,-0.005081862,-0.41516992,0.2837815,0.23951079,0.4566873,-0.065560825,-0.90313274,0.23700254,0.04981917,-0.20148323,-0.4683112,0.4437952,0.023164034,0.7909624,0.050637275,0.22912721,0.31018403,-0.6709364,0.24449271,-0.07033905,-0.10311856,-0.8924293,-0.110199,950 +908,0.5601714,-0.21992618,-0.4925033,-0.2865319,-0.20425142,-0.12545921,-0.20218253,0.7356414,0.46201858,-0.048678335,-0.31483284,0.10510975,0.020352982,0.2732828,-0.11803248,-0.9750952,-0.008485754,0.11581352,-0.582751,0.7316394,-0.45140085,0.23461246,-0.16200106,0.45499682,0.082175545,0.29138875,0.22441947,0.25650924,0.089606136,0.04346391,0.11397307,0.34484157,-0.5607407,0.2276411,-0.22899461,-0.28750947,-0.17511235,-0.32389748,-0.057725057,-0.924081,0.07428452,-0.62708586,0.48182914,-0.014612204,-0.48976508,-0.06578777,0.16965495,0.12222733,-0.3827127,-0.13520809,0.03040435,-0.11324639,-0.25504085,-0.3158438,-0.02975218,-0.5508621,-0.5344138,-0.14817023,-0.53516865,-0.09466225,-0.089355744,0.20239174,-0.33305928,-0.17416297,-0.13323641,0.57229304,-0.31505787,-0.21575212,0.4434278,-0.1253428,0.19358271,-0.57016253,-0.08435887,-0.14637674,0.34726468,0.32700804,-0.21866657,0.286373,0.36274195,0.46346855,0.3077381,-0.36440682,-0.30237743,-0.18821026,0.12783979,0.2134934,-0.17876041,-0.35285902,-0.37897888,0.09405742,0.42540273,0.32912335,0.37728313,-0.012664606,0.017428791,-0.07035608,-0.103608705,0.72313094,0.5274587,-0.29577675,-0.30614397,0.27431977,0.728762,0.25483286,-0.32182768,0.018099913,-0.057861734,-0.4159485,-0.17648594,0.050355673,-0.13156696,0.5398292,-0.11091723,-0.03927533,0.80252224,-0.1286369,-0.13522604,0.20970695,0.13598128,-0.18818288,-0.4529166,-0.2689166,0.24666737,-0.45257306,-0.13769394,-0.4042491,0.48214224,0.08639407,-0.6308754,0.26577592,-0.44721827,0.22101896,0.07862468,0.54401225,0.8298301,0.47459102,0.34656549,0.6953015,-0.037872564,0.045166597,0.17451112,-0.18158017,0.21588385,-0.3469155,0.10810164,-0.4970391,0.19515729,-0.1897064,-0.053133678,0.19797571,0.43747675,-0.53459567,-0.3423603,0.20269497,0.71004766,-0.13551718,-0.1437735,0.7580185,1.2483101,1.1006471,-0.096085824,1.2247771,0.22226517,-0.105534874,0.04300892,-0.24710636,-0.5893945,0.2214437,0.3337469,-0.3156084,0.6548147,-0.20551391,0.014549832,0.3636574,-0.37057832,-0.09494292,0.18998308,0.52596396,0.094901085,-0.28591898,-0.6487765,-0.07896744,0.07140273,0.07919478,0.2696602,0.41169557,-0.19670041,0.39548182,-0.06425201,0.75533414,-0.105604924,-0.056824993,0.06694416,0.505035,0.30717614,-0.10983777,0.06465263,0.45541546,0.20407826,-0.06345332,-0.53509295,0.31895217,-0.3887818,-0.28982413,-0.019373283,-0.5042513,-0.18259609,-0.070609726,-0.22207554,-0.16935037,-0.14769506,-0.1628056,0.29949215,-2.7195647,-0.3475497,-0.20051439,0.2563393,-0.15736294,-0.020013396,-0.050984606,-0.5323355,0.2606486,0.2946015,0.49415493,-0.60440034,0.5511028,0.6121594,-0.5956381,-0.06286005,-0.7221017,-0.124657266,-0.07323062,0.6059949,0.09526292,-0.101471126,-0.06649738,0.5213704,0.7157266,0.42435285,0.28497604,0.6092013,0.38304064,-0.2609457,0.33458433,0.03020446,0.63513726,-0.17608292,-0.18847679,0.2659984,-0.48083684,0.37317872,-0.30617875,0.13017108,0.605779,-0.30169687,-0.8740916,-0.4372985,-0.09309701,1.1911281,-0.38422897,-0.4285107,0.12775846,-0.18357866,-0.084336035,0.108055204,0.63645554,-0.11142256,0.15332136,-0.6934615,-0.028134113,0.08990249,0.049390897,-0.10372745,0.019318681,-0.4782729,0.7440494,-0.09112412,0.51581365,0.07577985,0.28893104,-0.31895941,-0.4655905,-0.007835937,0.80698705,0.5231121,-0.17720532,-0.24849813,-0.23754644,-0.2661035,-0.08202003,0.048288148,0.7170861,0.6151046,-0.14747046,0.117328145,0.3474323,-0.028111437,0.12797318,-0.1281215,-0.26190194,-0.0842972,0.16453479,0.48424125,0.95306396,-0.30176488,0.2915908,-0.1475998,0.41279802,-0.21235877,-0.52005094,0.57773566,0.52812237,-0.3033113,-0.1632364,0.6265798,0.5427107,-0.5285062,0.7499678,-0.57473785,-0.30847248,0.57453924,-0.13520534,-0.35657915,0.174317,-0.27029943,0.06302807,-0.81627196,0.33529517,-0.4071804,-0.3487999,-0.51915985,-0.12617178,-3.0605948,0.26348767,-0.009618432,-0.10968598,-0.40111563,0.0076818913,0.36276817,-0.87550014,-0.81240875,0.021827957,0.12388077,0.63969195,-0.17103074,-0.12380549,-0.21673787,-0.6200275,-0.09322473,0.36333945,0.1066294,0.36782822,-0.10416695,-0.41872084,0.01354291,0.06715887,-0.5461599,0.07030707,-0.49585494,-0.50391823,-0.14121391,-0.62449,-0.07942376,0.5729241,-0.34921467,0.047040183,-0.35981444,0.1319011,-0.0144385,0.23357706,0.02383673,0.11198733,0.23365521,-0.13410856,0.18295836,-0.17929657,0.32280353,-0.04161669,0.46982506,0.2387814,-0.1326627,0.30158082,0.63448,0.60694355,-0.16821598,0.98027927,0.32399788,0.008737411,0.37585273,-0.23434572,-0.37191546,-0.49353823,-0.31613135,0.008422732,-0.28880435,-0.4578905,-0.008895397,-0.3619256,-0.89264864,0.46133247,-0.11170754,0.550559,-0.14986128,0.3304144,0.5269379,-0.20522797,0.10898469,-0.009855551,-0.36316285,-0.37183544,-0.23357208,-0.68764,-0.5394632,0.253937,0.68735653,-0.3709096,0.010360536,-0.083677895,-0.1966343,0.10521972,0.21224399,0.16985202,0.06776717,0.27010444,0.11771417,-0.43048736,0.27443323,-0.010054852,-0.07870407,-0.5515688,0.11056005,0.6481568,-0.7540112,0.6500361,0.3558797,-0.057031006,-0.25326833,-0.7151658,0.0004897515,0.1883357,-0.04639696,0.66365385,0.24905543,-0.82380104,0.48822102,0.11250564,-0.48522234,-0.6529288,0.3800938,-0.19668859,-0.07213231,-0.3146271,0.4435588,0.063476406,-0.038740505,-0.37308976,0.34567484,-0.36576727,0.056838423,0.20929058,-0.11818919,0.5010969,0.008821079,-0.10011243,-0.71873254,0.0015216371,-0.63076043,-0.3062125,0.38043118,-0.023545966,-0.010044803,-0.018603139,0.3190094,0.2712903,-0.27110323,0.31706688,0.11399835,-0.5457081,0.52188385,0.52508193,0.5759446,-0.24984993,0.42541894,0.23792945,-0.23405927,0.11398839,-0.120536566,0.31817913,-0.025614897,0.51831466,0.09330217,-0.03178972,0.31106904,0.42231992,0.010993473,0.44558263,0.25012746,-0.20775749,0.21604256,-0.15495168,0.28098252,-0.26447436,-0.49558532,-0.07233704,-0.122506104,0.14538285,0.50519675,0.29507825,0.19136149,0.20606048,-0.21620673,0.09779038,0.3212899,-0.112580635,-1.5974818,0.21855839,0.2838428,0.894938,0.4288799,0.244384,-0.32030773,0.472918,-0.1316427,0.09180337,0.6376186,0.11004096,-0.4984771,0.75421244,-0.57422256,0.40814397,-0.26049832,-0.085648775,0.045169767,0.12542808,0.48469892,0.8207715,-0.17678685,0.013220825,-0.12677632,-0.15074854,0.22719455,-0.3871977,0.26852044,-0.25278375,-0.3968811,0.61631787,0.3545549,0.26297653,-0.3536605,-0.09959755,0.14624566,-0.24786341,0.22907577,-0.15632677,-0.062843286,-0.04419209,-0.53836566,-0.13521905,0.34367073,-0.05101307,0.087094046,-0.14497776,-0.25231984,-0.04327932,-0.0031164635,0.03630082,0.094502725,-0.6883974,-0.14519952,-0.22137274,-0.4875749,0.6243129,-0.11955614,0.090395905,0.11002708,0.08716317,-0.2545586,0.14421006,0.049555957,0.573039,0.16287814,-0.12937182,-0.23674814,0.15101026,0.21717739,-0.31585503,0.077892005,-0.38590685,0.3399855,-0.3494699,0.59436685,-0.17819472,-0.620953,-0.134457,-0.17990911,-0.05376959,0.40915933,-0.23581557,-0.22301172,-0.20595837,-0.28240487,-0.27200133,-0.05413619,-0.11261951,0.33162805,0.052147854,-0.1345416,-0.22735791,-0.0009178966,0.047560513,0.5293487,0.0610403,0.30061093,0.7457016,-0.046363086,-0.36769733,0.20814812,0.39776543,0.32357565,0.26138237,-0.081435956,-0.622942,-0.42128685,-0.46524343,0.24631006,-0.123863526,0.038351227,0.050491884,-0.20690393,0.80578166,0.038701687,1.4201536,-0.048829872,-0.3742223,0.11456671,0.65151757,-0.17755301,-0.07117029,-0.4985133,0.9850314,0.51846427,-0.40579596,0.026144201,-0.6221716,-0.23306222,0.34959492,-0.43774548,-0.27064306,-0.14878632,-0.66155905,-0.26399612,0.16666435,0.17236477,0.17149496,-0.1850037,0.09315517,0.1957456,0.17741652,0.4003537,-0.71640396,-0.20442444,0.22931391,0.2564503,-0.04305576,0.107433915,-0.35253444,0.31605706,-0.85172874,0.16472425,-0.40574896,0.12577604,-0.16891284,-0.5937213,0.09154755,0.03912565,0.3193557,-0.3489946,-0.4784707,0.00835863,0.5159337,-0.05862248,0.058263537,0.46046472,-0.36595833,-0.044526022,0.2332396,0.6622216,1.223261,-0.16370404,-0.07444418,0.106335014,-0.51221085,-0.95856786,0.12932646,-0.5278347,0.22895788,-0.34500977,-0.5815897,-0.6498389,0.25467125,0.12088106,0.05067106,0.101613484,-0.40651953,-0.22507632,0.04442379,-0.36331913,-0.08591708,-0.07139367,0.1422084,0.69242555,-0.3399831,-0.36447445,-0.14631233,0.24619357,-0.1936245,-0.59935766,-0.08316368,-0.17257251,0.33714172,0.033479154,-0.2805465,-0.005748575,-0.067194395,-0.52958584,0.19900815,0.2513952,-0.24884248,0.17276978,-0.41790923,0.05259038,0.8219616,-0.01514382,0.028212627,-0.44114852,-0.58157665,-0.79548126,-0.4510649,0.15572435,0.034797907,-0.19802476,-0.69030637,0.13404232,-0.3144561,-0.06447921,0.19357596,-0.42058966,0.2549992,0.117850624,0.47286773,-0.21970432,-0.8675199,0.27924374,0.29756305,-0.0973891,-0.7438918,0.62063843,-0.29382437,0.6484738,0.12635131,-0.04310539,-0.12506162,-0.39657247,0.08126833,-0.39077958,0.00071618956,-0.5254312,0.15140669,957 +909,0.45361748,-0.2776729,-0.55918604,-0.087566435,-0.57913333,-0.11848114,-0.32050863,0.4054682,0.5068006,-0.1629646,-0.3344376,0.010997345,0.08898532,0.41728243,-0.14552546,-0.6749463,-0.08077086,0.40840173,-0.83651334,0.5891804,-0.35900185,0.4316174,0.12880222,0.40786198,0.18020207,0.12632959,0.10927721,-0.05095573,0.13958251,-0.4653518,-0.050481558,0.20784223,-0.7984999,0.1641867,-0.40255603,-0.6596943,0.009166151,-0.5466606,-0.13647752,-0.9193711,0.14719589,-0.77932614,0.77197033,-0.14772685,-0.27588013,-0.28569764,0.22128706,0.57786894,-0.09485006,0.16751562,0.38239434,-0.3271932,-0.15134515,-0.28916582,0.08859829,-0.42087007,-0.46903506,-0.23850374,-0.5042295,-0.0848892,-0.13852574,0.259663,-0.16685742,-0.09682237,-0.15199442,0.29049304,-0.27700832,0.13116054,0.24990588,-0.0584162,0.638855,-0.5939679,-0.009379496,-0.11521288,0.471687,-0.20275676,-0.25492534,0.47171664,0.3738151,0.4341174,0.29644445,-0.37917468,-0.14307332,-0.03797509,0.01039366,0.5625751,-0.37046647,-0.27002704,-0.26748517,0.012933691,0.60051346,0.37307307,0.031848412,-0.20294529,0.15540327,-0.24632138,0.022245914,0.6316297,0.43529558,-0.08546547,-0.11040867,0.055128384,0.46466413,0.5007634,-0.13075286,0.06065021,0.011819343,-0.52144706,-0.2570144,-0.008797944,-0.27913475,0.47565362,-0.15987866,0.15315586,0.86068374,-0.10138627,-0.12635075,0.26313332,0.1771909,-0.06336479,-0.09528301,-0.41378763,0.33920157,-0.8989651,0.12597458,-0.36629617,0.6524729,-0.0022767268,-0.7556675,0.22052033,-0.7657125,0.062471393,0.023715748,0.5217507,0.8254168,0.5156769,0.3147597,0.9276096,-0.15372688,0.19782312,0.08385554,-0.36060944,0.25900397,-0.27904686,0.002559257,-0.56489366,-0.21066575,-0.28134987,0.17008595,0.1727375,0.4490663,-0.79387015,-0.32085353,0.27872872,0.6555891,-0.31963453,0.16403349,0.8403136,1.1608654,1.1403947,0.07121471,1.4429835,0.104495384,-0.3678669,-0.04078682,-0.012308647,-0.73819846,0.29769334,0.39858127,-0.74821395,0.38090786,-0.10747788,0.017550161,0.36297965,-0.6220979,-0.22524054,0.109447785,0.3241847,-0.10693824,-0.40653285,-0.5518637,-0.3546126,-0.043551665,0.15079413,-0.05307712,0.27438748,-0.40214157,0.23045392,0.053935066,1.0458096,-0.20646794,-0.027709166,0.028881969,0.41330028,0.28331962,-0.09841309,-0.27039823,0.07719221,0.44599763,0.21922706,-0.48677993,0.060566466,-0.3380599,-0.31620714,-0.2808526,-0.11032996,-0.2515489,0.10587511,-0.3842602,-0.32859528,-0.09133039,-0.3097443,0.3997626,-2.10623,-0.30302617,-0.048371017,0.40769705,-0.25212693,-0.13262212,-0.18845916,-0.51293993,0.45868346,0.16281262,0.68254894,-0.7136054,0.4956679,0.5861063,-0.73953223,-0.12095225,-0.7536335,-0.20002502,0.1266021,0.27235642,0.2823312,-0.25470623,-0.09816996,0.16418509,0.7355175,0.046906278,0.22034037,0.5709645,0.41375133,-0.20932633,0.48068535,-0.120709054,0.56633955,-0.32610273,-0.24986826,0.36649418,-0.29393324,-0.033934753,-0.30349785,0.0025682747,0.689945,-0.64600426,-1.2213045,-0.60604775,-0.25806907,1.0630612,-0.23379205,-0.49240708,0.3383734,-0.16554262,-0.18151055,0.24530129,0.75321865,-0.16581558,0.2563808,-0.76693535,-0.1238605,-0.044911325,0.057814296,0.03671366,-0.12577641,-0.59996456,0.78292876,-0.075637855,0.49096403,0.23036069,0.33514294,-0.3253846,-0.41852632,0.075513445,1.1520743,0.5938832,0.04750346,-0.18875188,0.006192165,-0.382991,-0.026455695,-0.11989669,0.611474,0.87581235,-0.28524524,0.21090972,0.24110854,-0.025691202,0.082924895,-0.15299655,-0.42673326,-0.12050462,0.015959492,0.5876178,0.8010917,0.12510236,0.55466425,-0.18796122,0.360453,-0.07239311,-0.6309425,0.47927514,0.7928067,-0.14863399,-0.019878222,0.758594,0.37585792,-0.18700488,0.6177296,-0.6091039,-0.6143804,0.54181296,-0.06602954,-0.5854692,0.27827302,-0.30396214,0.24081166,-0.7278853,0.57994556,-0.5781913,-0.69988376,-0.43037876,-0.09703016,-2.5174897,0.3617877,-0.18424706,0.07735347,-0.40201116,-0.11844772,0.3001219,-0.6738701,-0.774923,0.064823665,0.18326688,0.8530853,-0.14615901,0.07557305,-0.053880427,-0.63150394,-0.18619801,0.31498507,0.2604414,0.24198209,-0.110235006,-0.60198885,-0.13257326,-0.064047106,-0.57358426,0.017431712,-0.7941933,-0.6632243,-0.040233303,-0.579647,-0.31599548,0.6965901,-0.4072722,0.15951249,-0.33880904,-0.01350839,-0.042442262,0.2329812,-0.04958023,0.11969075,0.09915811,-0.08283839,0.12857665,-0.07121583,0.45199144,0.12327448,0.27143803,0.046488732,-0.17863393,0.255599,0.55340546,0.7729885,-0.39307523,1.3817986,0.5128568,-0.22533493,0.12639146,-0.22214781,-0.43649206,-0.70830375,-0.30479226,0.017377196,-0.5007003,-0.3006393,0.06384202,-0.29026693,-0.95030195,0.76345485,-0.027851472,0.28586486,-0.033139534,0.07837606,0.29199067,-0.2831749,-0.20479967,-0.1947258,-0.2566426,-0.41309536,-0.085952885,-0.70397395,-0.4741405,-0.38291898,1.0958626,-0.41973045,0.2815041,0.24256597,-0.13670401,0.34229776,0.13542305,-0.07775068,0.05064556,0.5905354,0.16007471,-0.76939243,0.2588832,-0.0078656,-0.03882492,-0.5177224,0.14381093,0.8482985,-0.8184001,0.594026,0.44759393,-0.030998817,-0.16898991,-0.5867123,0.062286884,0.14792544,-0.29239202,0.5297081,0.21497953,-0.62010986,0.5752174,0.25125846,-0.51176745,-0.7924948,0.4828184,0.0154359015,-0.35077587,-0.108837724,0.5421887,0.17366166,-0.14417239,-0.18394077,0.47259712,-0.3727025,0.5938325,-0.046564188,-0.08034341,0.108150184,-0.086598836,-0.38063416,-1.0470716,0.27130613,-0.5433941,-0.3859433,0.2855842,-0.072603405,-0.31727597,0.41180253,0.43118286,0.455295,-0.44264945,0.110411495,-0.21281986,-0.61605906,0.39081153,0.4973794,0.41727972,-0.2998394,0.5124688,0.2509344,-0.4495561,-0.15591687,0.0074825287,0.57871044,-0.16895784,0.5455471,-0.14794092,-0.19255431,0.30721983,0.6727576,-0.03742118,0.29174006,-0.06751626,-0.008720696,0.08251376,0.12019587,0.27022338,-0.03177115,-0.51856714,0.072921015,-0.19521244,0.017322833,0.67508507,0.2921112,0.091470055,0.14025415,-0.3247117,-0.016771195,0.22384389,-0.07071117,-1.7870094,0.61826974,0.28990978,0.9141101,0.5798015,0.13603434,-0.0848883,0.5789216,-0.25437376,0.012480669,0.42800894,-0.005397459,-0.2873815,0.6949561,-0.80342436,0.31325084,-0.15887593,0.03830799,0.21564882,-0.11554924,0.49473563,0.94087106,-0.14040105,0.22272556,-0.04258192,-0.14470248,0.0040815673,-0.35711458,-0.00015952438,-0.54601854,-0.4848399,0.9515614,0.33876634,0.37678528,-0.2476091,0.13324875,0.10949859,-0.19056536,0.41430315,0.026146179,-0.054251324,-0.0071428814,-0.51596296,0.16589974,0.5726269,-0.08648013,-0.018981343,-0.16349667,-0.06035122,0.09175157,-0.21531124,0.18593156,-0.022732625,-0.8885409,-0.14571331,-0.7350159,-0.25465766,0.3862939,-0.16002692,0.069410436,0.22500764,0.10403854,-0.03224188,0.3864937,0.3562541,0.6252378,0.17559601,-0.35738632,0.05265501,0.35232663,0.19418202,-0.40991282,0.02534187,-0.20351678,0.09504217,-0.5659253,0.66067266,-0.048777003,-0.47205982,0.39839056,-0.1236386,-0.02898326,0.46073946,-0.11750511,-0.21805005,0.09900268,-0.053181548,-0.28961506,-0.23026066,-0.2808093,0.0008527686,0.37149835,-0.024830678,-0.17929499,-0.19955592,-0.24198948,0.41213784,-0.061251223,0.6926467,0.38042983,0.16177535,-0.32923266,0.2864679,0.283082,0.48051786,0.03004489,-0.015662232,-0.49484554,-0.30148038,-0.3760232,0.08505842,-0.1718868,0.22959034,-0.021025984,-0.05406946,1.107858,0.20737647,1.2512388,0.04963441,-0.4132134,-0.006812791,0.58969635,-0.40767118,-0.20096952,-0.57978904,1.1761923,0.53268546,-0.33299044,-0.024235362,-0.47854042,-0.060356364,0.30882537,-0.29842412,-0.14238068,-0.0075498275,-0.6514411,-0.5424455,0.23115478,0.39763764,-0.07467175,-0.16845606,-0.016387323,0.37524557,0.16336219,0.11003971,-0.7743833,-0.2359202,0.25570735,0.44177082,-0.12582192,0.24571633,-0.43904093,0.36673427,-0.7781832,0.14385007,-0.32930216,0.14836119,-0.36329496,-0.5690677,0.15592988,-0.024430426,0.28134763,-0.2960479,-0.3448964,-0.0051711746,0.29945347,-0.010254711,0.04164463,0.62242633,-0.32048306,-0.038621146,-0.014137884,0.5237784,1.2396075,-0.48114458,-0.07825627,0.4330815,-0.47665954,-0.58077925,0.32508996,-0.41864538,-0.25341812,-0.12602669,-0.64590335,-0.5247694,0.1605735,-0.03594506,0.13776736,-0.07137669,-0.5965144,0.23352404,0.41288415,-0.30034786,-0.26240978,-0.2024306,0.39373457,0.61312145,-0.22836219,-0.57800645,0.08266868,0.25338888,-0.3928244,-0.46031508,-0.04348262,-0.29182947,0.35709652,-0.027954085,-0.5874884,-0.09352991,-0.012803748,-0.61060226,-0.030084187,0.35733566,-0.3076836,0.0777932,-0.2033463,-0.05691421,1.0462761,-0.32198164,-0.03362848,-0.43531168,-0.464468,-0.7257164,-0.23532222,0.051430717,0.5063679,-0.01259537,-0.57597566,-0.060845446,-0.26796296,-0.18663175,0.08420261,-0.2395432,0.32170638,0.30426505,0.6497172,-0.56220776,-1.0889908,0.43026218,0.29742593,-0.23117043,-0.6311832,0.60011816,0.023242945,0.8080093,0.090382814,-0.04589851,0.1855666,-0.50503236,0.15075544,-0.11750925,0.03899144,-0.8491674,-0.018619316,967 +910,0.32833892,-0.43302998,-0.29686496,-0.091528915,-0.36435196,-0.22495215,-0.22058141,0.5654947,0.11469817,-0.26277402,-0.30850175,-0.048315298,-0.026558718,0.3789158,-0.07964219,-0.49989977,-0.16240849,0.32140023,-0.6869747,0.6137558,-0.5846142,0.070441574,0.055316094,0.5048075,0.014939678,0.2501835,0.39435804,-0.17632735,-0.027739376,0.01059556,-0.069038816,0.4101791,-0.66642606,0.14577508,-0.2366616,-0.39744273,-0.009635667,-0.56382865,-0.09241825,-0.8244011,0.08624493,-1.026452,0.4451182,0.08218273,-0.35588574,-0.1974201,0.15826388,0.32142177,-0.5382034,-0.024089968,0.27918324,-0.23785555,-0.2861614,-0.3282071,0.24155174,-0.34454167,-0.5710061,0.0368147,-0.34145072,-0.23547749,-0.09079141,0.28281137,-0.19014144,-0.056363355,-0.13603243,0.45337078,-0.5529526,-0.21096689,0.1317508,-0.19421954,0.123363376,-0.65178937,-0.009876651,-0.37383413,0.45551836,0.007065455,-0.28340632,0.47587338,0.26713964,0.42512956,0.2663295,-0.28204003,-0.30190927,-0.03666163,0.017855942,0.39602795,-0.37691417,-0.3151382,-0.28468427,-0.11766878,0.17250724,0.20092332,-0.05775137,-0.3187391,0.093479335,-0.27928957,-0.05584776,0.17127295,0.35512128,-0.33877465,-0.288295,0.20042975,0.5361429,0.2499628,-0.19353034,-0.19423842,0.13249378,-0.6807995,-0.19914703,0.087518595,-0.19351387,0.62218744,-0.13207477,0.026148856,0.8051483,-0.018634157,-0.062906645,-0.06038751,0.23111832,-0.16341817,-0.2736009,-0.43306008,0.44978943,-0.33785906,0.10513821,-0.29885414,0.7725723,0.19037944,-0.73379046,0.3652904,-0.6211182,0.096508585,-0.07616919,0.6491443,0.75551224,0.76039696,0.39850628,0.80913514,-0.21021004,0.17774747,-0.0574854,-0.22614433,0.1449129,-0.26193973,-0.09193877,-0.47283256,0.10140165,-0.17198308,0.010972805,-0.08219796,0.4598606,-0.61455876,-0.05276999,0.30791253,0.5964929,-0.310268,-0.09024625,0.64984226,1.0475689,1.0170425,0.06536923,1.3542051,0.44762984,-0.17573428,0.22414494,-0.044403702,-0.94308513,0.06746522,0.49736667,-0.084088035,0.24445839,0.039843407,-0.15948372,0.5904951,-0.56747276,0.09060672,-0.2243303,0.31582066,-0.084987335,0.0530339,-0.6028211,-0.25949702,0.06792014,0.023690274,-0.09214612,0.32489985,-0.2687957,0.23674019,-0.083167695,1.281056,-0.05420594,0.18302858,0.17401512,0.5169044,0.06852454,0.0147722615,-0.040078077,0.33240116,0.3678051,-0.056997288,-0.6111862,0.34006977,-0.32459876,-0.5858712,-0.09261528,-0.27509174,-0.11714014,0.17914535,-0.4231874,-0.34011236,-0.034344953,-0.23843968,0.42276272,-2.3464034,-0.16865481,-0.21669318,0.36392972,-0.2848679,-0.07497275,-0.15679199,-0.43239,0.2709715,0.31609955,0.6008981,-0.733592,0.43245748,0.505095,-0.64133984,-0.1396573,-0.7592673,-0.039504115,-0.1328326,0.3929541,0.056880485,-0.30212715,-0.08966118,-0.20942432,0.71620053,0.017111037,0.2112515,0.55235475,0.18239002,0.19425042,0.4887618,-0.055752385,0.5415881,-0.5637059,-0.45755553,0.29595745,-0.37923393,0.41935667,-0.031377386,0.062824965,0.6100034,-0.6658506,-1.0385798,-0.69856924,-0.3036919,1.0527607,-0.3771437,-0.46864638,0.25738773,-0.16793652,0.07952996,0.14498176,0.62896043,-0.06680005,0.15369101,-0.7384286,0.10189342,0.019163074,0.46297598,0.10489574,-0.054701854,-0.41121694,0.7837387,-0.1755848,0.57196516,0.4280094,0.12533139,-0.34068823,-0.45324838,-0.017727481,0.8542698,0.31222743,0.11412359,0.012258534,-0.35942551,-0.124081306,-0.2538487,-0.0123251425,0.56854516,0.8041255,-0.14463145,0.12709735,0.28929606,-0.030922651,-0.035991807,-0.2076552,-0.3285854,-0.17261894,0.38845766,0.46911398,0.8174205,-0.13853957,0.34610167,-0.25841066,0.4331201,0.1224888,-0.49904358,0.540885,0.67736155,-0.19295757,0.12633629,0.75860834,0.7599394,-0.45735574,0.5071936,-0.613618,-0.36137497,0.49534068,-0.11938461,-0.46503854,0.04485296,-0.3124336,0.3464497,-0.7173023,0.49280012,-0.49902916,-0.44426122,-0.81940633,-0.058629274,-2.9094822,0.27963766,-0.18143971,-0.038242955,-0.098118626,-0.06658976,0.4020492,-0.8476879,-0.5212799,0.21472,0.09962087,0.5137957,-0.0625625,0.04491586,-0.322862,-0.32209602,-0.064355254,0.34136453,0.32762292,0.23487073,-0.17332478,-0.56646985,0.09813396,-0.071744256,-0.3239889,-0.0068446547,-0.8130799,-0.4376522,-0.09450889,-0.79409057,-0.38637206,0.5626708,-0.518001,-0.014788661,-0.22143416,0.1223919,-0.29372135,0.230967,0.07317754,0.21315251,0.16742925,-0.12079173,-0.061585397,-0.18504061,0.3919119,0.03621472,0.101727396,0.066676535,-0.19829233,0.16755962,0.64470214,0.7531232,-0.24038804,1.296139,0.66851217,-0.18574472,0.19257379,-0.25660804,-0.2638114,-0.69482785,-0.3941177,-0.26163688,-0.3607161,-0.46156776,0.360038,-0.2139494,-0.9119527,0.93167067,-0.1616931,0.2024498,0.2201482,0.07510204,0.41024557,-0.30353975,-0.032205295,-0.18253513,-0.015862605,-0.5608955,-0.37250268,-0.682108,-0.5164409,-0.16357571,1.1715776,-0.26216236,0.14817382,0.22044103,-0.33651176,-0.12871341,0.08644453,0.0025248204,0.3416669,0.5779772,0.011804019,-0.7327896,0.29543898,0.11845199,-0.066428654,-0.30525163,0.21372636,0.6736264,-0.98915416,0.794202,0.300916,-0.08624455,-0.11164089,-0.6154701,-0.5628169,0.042919796,-0.10316514,0.4425132,0.09512699,-0.7913254,0.46840444,0.31587613,-0.6092294,-0.8688529,0.17465329,-0.2724611,-0.23102097,-0.04239915,0.39170322,-0.041179877,-0.0959798,-0.21441495,0.2338997,-0.41757426,0.3192694,0.055187777,-0.20133543,0.32439813,-0.3237046,-0.15973416,-0.91621685,0.13345575,-0.55036896,-0.28988716,0.5353162,-0.061283354,-0.3294803,0.21417247,0.26285326,0.278679,-0.2766033,0.07502333,0.06242296,-0.37406674,0.15001087,0.51300955,0.28369543,-0.27724653,0.55624753,0.10855526,-0.031763624,-0.34586826,-0.22698571,0.21493204,-0.04850912,0.3646325,-0.31556177,-0.199548,0.28818095,0.9183793,0.082594134,0.63570666,-0.004727222,0.032613155,0.59048635,0.09131217,0.24373777,-0.025268197,-0.5569826,0.14474876,-0.023305902,0.06807306,0.5225207,0.318794,0.39606515,0.028059125,-0.1345811,0.0066058487,0.16566081,0.07021459,-0.94056416,0.32430327,0.085953355,0.68390924,0.6915229,0.16712527,-0.3648415,0.79498214,-0.39365885,-0.039973095,0.5472321,-0.074870914,-0.5518088,0.76588804,-0.6883478,0.384636,-0.36498296,-0.045173883,0.16567685,0.0774042,0.44036007,0.6671386,-0.14264867,0.038200762,0.029759621,-0.13348983,0.042306244,-0.2891315,0.119370736,-0.3521212,-0.41883254,0.8844569,0.41607356,0.47767273,-0.19849235,-0.016514517,0.050573442,-0.23308754,0.50408345,-0.13936123,-0.090222664,0.17150815,-0.5842098,0.11437819,0.6730099,0.016983887,0.08884063,-0.03952245,-0.40268123,0.23113574,-0.18248005,-0.17773052,-0.08357907,-0.74491984,0.09369447,-0.37396994,-0.35743788,0.54723555,-0.25555372,0.15896395,0.19175589,0.10038647,-0.30941302,0.4768436,0.12466419,0.9538164,0.15999082,-0.20442213,-0.08559481,0.2563388,0.17003684,-0.18964891,0.11397856,-0.525763,-0.031205177,-0.62085545,0.5886557,-0.10897606,-0.4296813,0.20354263,-0.19436656,-0.07150581,0.50318533,0.0036391292,-0.21701078,0.014840168,-0.14167623,-0.47190297,-0.15017663,-0.3613499,0.29604375,0.14305855,0.19560926,-0.21241839,-0.3367957,-0.2760935,0.7389433,0.02178646,0.45326564,0.37083992,0.11884495,-0.14378597,0.12638669,0.16772431,0.5113445,-0.013454467,-0.08741162,-0.505376,-0.29645205,-0.18677996,-0.15432262,-0.052913412,0.4065484,0.09321085,-0.3168957,0.88851947,-0.083528034,1.2778119,0.022586199,-0.39769664,-0.02012235,0.61553186,-0.12822461,-0.048466694,-0.40709615,0.96130323,0.54802996,-0.15821593,-0.027227765,-0.55681264,-0.21018346,0.41320872,-0.3043621,-0.15780659,-0.11426098,-0.68721277,-0.4311413,0.17610498,0.32119328,0.12019536,-0.11428013,0.1036123,0.11015894,0.1301672,0.32321504,-0.46648434,-0.2077089,0.38015357,0.4198557,-0.087186635,0.22956741,-0.2745764,0.45968163,-0.73979473,0.32603192,-0.5875903,0.09060311,-0.36731753,-0.45717993,-0.024194425,0.01621706,0.2966958,-0.21910872,-0.28949055,0.030424438,0.55644226,-0.030803153,0.2951948,0.89103794,-0.27523747,-0.07520034,-0.03837418,0.56498057,0.9686498,-0.5586506,-0.07673794,0.1135433,-0.19290191,-0.5241074,0.60966617,-0.34697405,-0.16449384,-0.0357114,-0.44482458,-0.5975248,0.07627304,0.17921662,-0.14873104,-0.10069767,-0.66659826,0.1103855,0.35223362,-0.104008555,-0.13083693,-0.08471564,0.639801,0.7688699,-0.24210334,-0.5000847,-0.00087932375,0.2671232,-0.2065778,-0.41490868,-0.20513754,-0.49663773,0.32410344,0.27478993,-0.43185923,0.063265085,0.10628884,-0.46864775,-0.10887887,0.19813858,-0.2387499,0.24140124,-0.377553,0.13007168,1.0367097,-0.02999167,0.10227159,-0.41371343,-0.5838436,-1.1040813,-0.34648204,0.50108343,0.28679857,-0.009381592,-0.4030676,0.19935541,-0.14614414,-0.43125775,0.06687492,-0.55731213,0.4489204,0.17033285,0.5834859,-0.26504555,-0.6831088,0.097361185,0.26665244,0.11352714,-0.4238939,0.5381214,-0.13965574,1.1543599,0.022185251,-0.21434636,-0.010370121,-0.45353356,0.021324217,-0.39163753,-0.017468996,-0.6328524,-0.08298228,973 +911,0.3693706,-0.06257349,-0.35587645,-0.49281254,-0.2595562,0.05216668,-0.11744433,0.31654608,0.12815405,-0.35014978,-0.15572886,-0.12361895,0.03787744,0.6621446,-0.19342543,-0.88477606,-0.124255925,0.0037866507,-0.57959163,0.43208233,-0.64093095,0.31020793,0.16980255,0.39735484,0.023839653,0.21319415,0.41374683,-0.17756201,0.12356016,-0.1654459,-0.39773396,0.18091206,-0.62786186,0.2781035,0.22890599,-0.24305795,0.11292308,-0.41841197,-0.13224262,-0.72631764,0.31294617,-0.7598106,0.29574764,-0.10451526,-0.28676486,0.18212478,-0.13073398,0.37248436,-0.46631578,0.0611069,0.24623907,-0.39165652,-0.031132191,-0.18568571,-0.07147839,-0.58020437,-0.55536795,0.12672693,-0.5314474,-0.31593227,-0.26166153,0.12946443,-0.41965792,-0.037551742,-0.24246182,0.46005008,-0.39873013,-0.17592634,0.32003427,-0.16515155,0.18963355,-0.51004297,-0.18534255,-0.116809905,0.28850064,0.033531684,-0.18498166,0.27393582,0.52597713,0.4055889,0.18044287,-0.27336463,0.031408496,-0.29152545,0.3305634,0.4694353,0.022256598,-0.5775959,-0.21900566,-0.05928427,-0.039951336,0.21080263,0.063759856,-0.3892081,0.07675294,0.24534778,-0.42901587,0.34212014,0.40571904,-0.38985956,-0.12625961,0.29012445,0.4162618,0.060793355,-0.14940862,0.05269556,0.05133691,-0.5712576,-0.27685785,0.41198286,-0.25727528,0.55031174,-0.36232352,0.12977476,0.82381344,-0.18079008,0.09953252,-0.3680083,-0.077830456,-0.2762839,-0.22152118,-0.37078607,0.35855827,-0.54072326,0.123690926,-0.45775554,1.1040671,0.19471805,-0.7106984,0.40094185,-0.53171027,0.15746093,-0.26189163,0.6855316,0.79501754,0.33180276,0.23359685,0.9157627,-0.64537996,0.08259984,0.04100202,-0.4260459,0.10696883,-0.23465993,0.2262464,-0.37330154,0.026827574,-0.019973105,0.23649256,-0.07209081,0.17519283,-0.3860936,-0.073232,0.025034776,0.7009035,-0.42032337,0.02611778,0.8037526,0.94496155,1.0724903,0.22079206,1.3680487,0.472744,-0.34918392,0.09431585,-0.117610365,-0.53662235,0.21335685,0.52126014,0.3884622,0.07333511,-0.08176025,0.27023497,0.47040406,-0.4498876,0.21965063,-0.19048935,0.3878714,0.08052857,-0.12901758,-0.5198744,-0.3448279,0.15851356,-0.1082936,-0.02964291,0.31116042,-0.01809675,0.49848685,0.060378093,1.0836693,0.15076356,0.15778059,-0.14008667,0.38070086,0.23901677,-0.021390602,0.16411312,0.28984675,0.5640983,-0.08923897,-0.7954299,-0.036197826,-0.3011383,-0.46662378,-0.2526436,-0.47288594,0.11440454,-0.0014480948,-0.42908657,-0.03946212,0.18664436,-0.20727734,0.4687896,-2.1076899,-0.20115243,-0.28712875,0.24924964,-0.2445265,-0.31825063,-0.050869346,-0.5196232,0.48808572,0.40764856,0.43263844,-0.69157314,0.2299176,0.29147446,-0.25168815,-0.004485627,-0.80653024,-0.12245115,-0.23074812,0.23851609,0.056333918,-0.09110085,-0.26376763,0.18055458,0.7154034,-0.056634936,-0.08074033,0.0991661,0.3048519,0.120886065,0.64329696,0.11651436,0.67954606,-0.2595998,-0.026342267,0.2765253,-0.45316815,0.31757528,0.07200111,0.21334054,0.36048284,-0.53768635,-0.8131542,-0.8057355,-0.67958814,1.2480433,-0.52575725,-0.34033343,0.21979511,0.113185614,-0.17499042,-0.030167723,0.4252108,-0.2569411,-0.11864883,-0.64404887,0.11244232,0.122372955,0.17407028,-0.022115225,0.2141021,-0.2045603,0.693897,-0.14037289,0.38273856,0.3734363,0.06585806,-0.14984836,-0.4491047,-0.07176896,0.9671798,0.5018946,0.084712245,-0.19303496,-0.21625233,-0.26236007,-0.18364972,0.11721012,0.5274294,0.9887044,0.06461519,0.03816435,0.32711324,-0.20641907,0.014584847,-0.0017270545,-0.4612534,0.064171195,0.011893491,0.72004384,0.38021708,-0.12363657,0.4397935,-0.21082382,0.27800342,-0.20124392,-0.50502175,0.6727235,1.254471,-0.14448003,-0.14212865,0.46480095,0.5235962,-0.41216585,0.3402861,-0.5032975,-0.26767957,0.853045,-0.043270092,-0.4563187,-0.11259192,-0.38083684,0.07122407,-1.0335373,0.21262097,-0.173256,-0.5139566,-0.7136533,-0.16101485,-4.3315253,0.14670123,-0.1372179,0.05997016,-0.22577743,-0.16324367,0.40483233,-0.63532037,-0.56321996,0.15638362,-0.027584093,0.6217995,0.0076667047,0.16772993,-0.39336362,-0.06891144,-0.29664403,0.04595515,0.0035771083,0.23865019,0.11808411,-0.23064196,0.20933537,-0.39589903,-0.58968705,0.14012708,-0.5666054,-0.66737074,-0.31320795,-0.44887754,-0.44834304,0.8146799,-0.47207883,0.030182205,-0.04509385,-0.028863907,-0.26283613,0.41601384,0.25017253,0.3041719,0.0819208,-0.06654944,-0.28908744,-0.50067776,0.08489778,0.13092011,0.24583851,0.20685047,-0.020286635,0.0876036,0.6091654,0.7132134,0.05201286,0.689826,0.25527063,-0.052247822,0.3103321,-0.405701,-0.18842788,-0.72892666,-0.52353317,-0.1988377,-0.37576702,-0.6672411,-0.17288078,-0.29964763,-0.73356277,0.29257777,0.06564551,0.04780527,0.024774998,0.251426,0.3641158,-0.055594254,0.052939147,-0.13633983,-0.04741318,-0.72018456,-0.34966847,-0.7947286,-0.5714228,0.15314947,1.0153346,0.011109282,-0.29060653,-0.20446032,-0.3917717,0.06530633,0.08357644,0.21599911,0.29166603,0.2521912,-0.051724676,-0.9206815,0.4868957,0.01762561,-0.18595499,-0.7621359,0.018685153,0.91453266,-0.7685962,0.5064888,0.4699835,0.11461994,0.11099254,-0.29723266,-0.48846254,0.24402218,-0.30446067,0.47048533,0.0044625006,-0.4852241,0.5772005,0.22632565,0.046266943,-0.68501765,0.4211795,-0.08020918,-0.16714312,0.116407774,0.44577357,0.11081353,0.08368064,-0.15278643,0.120710194,-0.69502133,0.10918319,0.5054107,0.2804952,0.42373106,-0.12811,-0.2519286,-0.6123841,-0.18120317,-0.75669986,-0.21477573,-0.055252638,-0.0011158685,0.055987105,0.08726233,-0.03200775,0.31925896,-0.23630409,0.18989675,0.018968506,-0.19192655,0.39036253,0.5336079,0.069816135,-0.42356753,0.6944614,0.119817264,0.18515669,-0.31559947,0.06902581,0.3979636,0.48969188,0.35517988,-0.17951714,-0.18247981,0.24405164,0.8036692,0.21073417,0.48574257,0.24727298,-0.066235185,0.49286464,0.19981885,0.2176944,0.17279856,-0.23968518,-0.10437408,0.06950788,0.056979638,0.51940805,0.04859918,0.344206,0.034731776,-0.076964885,0.19907252,0.09551867,-0.19810408,-1.1463534,0.60318714,0.31892508,0.5448467,0.4897724,-0.13793813,-0.035206497,0.5360391,-0.48578277,0.15314461,0.3329554,0.058748018,-0.5938458,0.7953174,-0.7728491,0.38347208,-0.29884014,0.10524311,-0.085405715,0.30415925,0.46527204,0.78764075,-0.16487382,0.0886616,-0.058984492,-0.2933754,0.3439751,-0.51258487,-0.08256615,-0.44700134,-0.3537613,0.48269236,0.22946115,0.36622727,-0.33280802,-0.13621946,0.13301022,-0.1104849,0.110373974,-0.20213933,-0.09474146,0.011987816,-0.68685055,-0.5552362,0.52521914,0.07848612,0.2660551,0.20837076,-0.30051208,0.3707873,-0.22129874,-0.035413105,0.047682256,-0.73309284,-0.043955475,-0.25147954,-0.57183224,0.31941214,-0.7426374,0.32154247,0.2542827,0.10745665,-0.21485217,-0.041835517,0.19401099,0.683388,-0.062294897,-0.367308,-0.37038198,0.08332927,0.1488166,-0.4266053,-0.0082621975,-0.4159402,-0.06846928,-0.44594678,0.37182614,-0.13599204,-0.14762259,0.041685566,-0.18280281,-0.16875325,0.4985496,-0.48631087,-0.028018156,0.037024003,-0.17604357,-0.10793463,-0.044605237,-0.40901992,0.31493834,-0.011026382,0.19940753,-0.013211712,-0.12252257,-0.14172909,0.47635487,0.11992223,0.22307329,0.17855026,-0.16919585,-0.17797743,-0.25742918,-0.033884715,0.2104816,0.20807417,-0.27084172,-0.15083036,-0.26054308,-0.1689415,0.2238309,-0.15640683,0.2879364,-0.020923099,-0.5170056,0.631858,-0.026967352,1.2556719,0.14425825,-0.5337597,-0.034352448,0.5751565,0.07082124,0.06991657,-0.16313398,0.7143248,0.4748629,-0.08057943,-0.2790973,-0.6544583,-0.1345097,0.49927855,-0.22466648,-0.22839038,-0.0037079006,-0.6483371,-0.40068159,0.22345139,0.29081354,0.026424,0.154931,-0.15312217,0.0052030385,0.2248304,0.679075,-0.53213394,0.06727226,0.335286,0.13239715,0.121088974,0.25292626,-0.19658673,0.40637705,-0.76991314,0.29626927,-0.52268684,0.06448105,-0.047984023,-0.1493994,0.31521276,0.10601035,0.36865988,-0.22457777,-0.4088156,-0.11133338,0.7816927,0.38927016,0.38528696,0.75031835,-0.27765277,0.011937131,0.19563401,0.533436,1.4172145,-0.104383,0.20493329,0.25080314,-0.5206394,-0.5788517,0.2903164,-0.2164495,0.05860545,-0.06584505,-0.44873464,-0.51517123,0.16572735,0.16906284,-0.087436736,0.3212072,-0.3783807,-0.42197958,0.6439206,-0.43392506,-0.41387346,-0.35368967,0.4013606,0.5809057,-0.41343093,-0.39456752,-0.10686507,0.30764413,-0.28216723,-0.42046857,-0.09259498,-0.2877958,0.48570684,0.13923855,-0.35285327,0.22695772,0.3138224,-0.48105133,0.27863258,0.23048455,-0.451956,0.064384766,0.033717398,-0.09221101,0.93353707,-0.117694505,-0.015942072,-0.8813703,-0.58717984,-0.76767725,-0.3706956,0.8154997,0.090438746,0.035639744,-0.48901424,-0.05794166,-0.0046730936,0.036008466,0.05774704,-0.51001215,0.286805,0.25383958,0.4881992,0.1862271,-0.6674226,-0.07677418,0.0004845485,-0.026780069,-0.51145935,0.47327495,-0.30177394,0.58380884,0.004461779,0.097820014,0.00863117,-0.44710532,0.29070818,-0.34853688,-0.2265495,-0.74920946,0.24240823,979 +912,0.2057733,-0.11843746,-0.5424543,-0.08595695,-0.32560393,-0.0013450632,-0.28335056,0.5211661,0.29631782,-0.16633715,-0.3128949,-0.09184592,-0.0029398203,0.14753376,-0.19144915,-0.6838564,-0.119650505,0.24240667,-0.5304939,0.55357224,-0.35904422,0.21309173,0.11214443,0.26111504,0.051492035,0.20778902,0.237318,-0.112335265,0.047508772,-0.24023409,-0.09239545,0.3943901,-0.7461944,0.36677966,-0.3973695,-0.15837695,0.17027856,-0.40826583,-0.23238628,-0.74658984,-0.037982,-0.8033021,0.46609125,0.2507641,-0.26243567,-0.015142093,0.14489736,0.18386073,-0.3132757,0.045434397,0.27237636,-0.24583523,-0.104271494,-0.35888383,-0.09355392,-0.35076872,-0.36202583,-0.06181814,-0.52814263,-0.12635602,-0.18552119,0.12542568,-0.27588245,-0.053010896,-0.31521294,0.24679117,-0.3804319,-0.044736966,0.32706323,-0.34525082,0.31392995,-0.46762714,-0.033033907,-0.09961358,0.45200458,-0.010482629,-0.1384757,0.33341816,0.2516593,0.33134806,0.18490875,-0.29522505,-0.2115897,-0.19702683,0.23358627,0.32908627,-0.18280298,-0.1432388,-0.13112909,0.04534,0.3887693,0.56073564,0.06307711,-0.21778046,-0.10581917,-0.4334277,-0.12983595,0.47099915,0.5495312,-0.35675302,-0.10069934,0.30037418,0.5439884,0.35562778,-0.09074265,-0.095165946,-0.004477605,-0.5075815,-0.099111855,0.08820159,-0.0872795,0.47792348,-0.043200642,-0.098081835,0.70920986,0.008380125,-0.13787092,0.1847511,0.07167743,0.043499824,-0.3914143,-0.18463224,0.3758379,-0.6090581,0.16158994,-0.2853117,0.58685243,0.07144292,-0.6669937,0.31475118,-0.625109,0.13765974,0.10369747,0.4560993,0.49389067,0.63412833,0.36292472,0.8396032,-0.24189025,0.14171548,-0.06366531,-0.24243021,0.090655394,-0.14386122,0.032418203,-0.35224828,0.20862901,-0.29606786,0.13722947,0.08542559,0.10821942,-0.39247194,-0.17484552,0.5225687,0.84593457,-0.17099822,-0.0778104,0.538693,1.111209,0.9882962,-0.048477877,1.0467949,0.06951987,-0.12438526,-0.12141148,0.08609887,-0.78301764,0.11776515,0.5389406,0.043196242,0.16299592,-0.12347057,0.109346546,0.1354324,-0.34170362,-0.057610396,-0.023821443,0.34461316,0.081075676,-0.112778105,-0.37380755,-0.27631924,0.015735684,-0.08428481,-0.13365431,0.26376382,-0.0025358398,0.21650796,-0.053813767,0.97826976,-0.07154239,0.22179873,0.27764228,0.49155775,0.34682712,-0.0917294,0.07793436,0.5224535,0.081337355,0.080968015,-0.41274622,0.15884481,-0.39473262,-0.3753637,0.029108882,-0.3455391,-0.22797315,0.13157247,-0.5219206,-0.020979159,-0.0129393665,-0.172244,0.50684637,-2.9186776,-0.027376791,-0.18990119,0.31420848,-0.28726068,-0.14026396,-0.16454448,-0.53084093,0.2736143,0.19320817,0.6476129,-0.49232125,0.2991682,0.6442085,-0.5447406,-0.22793584,-0.63509625,-0.031958703,0.023460284,0.30427065,0.107447036,-0.04480948,-0.046454262,0.14074248,0.6142745,0.22161658,0.1644961,0.47757554,0.36025167,-0.04016602,0.4742701,-0.22421531,0.5424219,-0.40688953,-0.18531926,0.33753118,-0.3348311,0.505809,-0.09881192,0.041649073,0.6579046,-0.3908324,-0.82790637,-0.41781,-0.3774253,1.1839072,-0.46789935,-0.35808694,0.097225435,-0.08322201,0.016952733,0.109243006,0.54869586,-0.0018230528,0.3420142,-0.5312523,-0.009093533,-0.104983084,0.2960839,0.025879676,-0.108391784,-0.4439621,0.85862356,0.03167513,0.5637248,0.28746778,0.14125924,-0.06661276,-0.44792148,-0.047287796,0.7212364,0.45723686,0.02350741,-0.2180438,-0.2164637,-0.12547138,0.046611577,-0.052670848,0.6418628,0.43772867,-0.28930792,0.11468362,0.36486462,0.24581836,0.016277587,-0.16320173,-0.30977234,-0.10352897,0.08596005,0.39298463,0.9382549,-0.01047194,0.09415897,0.072198056,0.35758686,-0.15390365,-0.5191528,0.46882454,0.2353919,-0.0089814365,-0.07648498,0.48953757,0.77596515,-0.24344297,0.48569632,-0.5441641,-0.3868939,0.49404183,-0.22812754,-0.42171612,0.2722556,-0.29448083,-0.051452,-0.67665964,0.35172644,-0.45511305,-0.32892442,-0.33354533,-0.07624391,-2.8663514,0.25910506,-0.06988361,-0.027861616,-0.39617744,-0.030196123,0.16535826,-0.5313062,-0.6757269,0.09183506,0.22288716,0.39348868,-0.29280418,0.07507017,-0.2789413,-0.45842195,-0.045463245,0.47224703,0.06862076,0.23511557,-0.25434658,-0.33286017,-0.2496111,-0.009582977,-0.1861759,0.2603631,-0.5255291,-0.18032561,-0.044087812,-0.46591845,-0.037052844,0.41871762,-0.56324905,0.11892144,-0.016658338,0.20355736,-0.1436726,-0.11093982,0.20904547,0.27082714,0.056390632,-0.07861122,-0.02546713,-0.26441422,0.5557433,0.08873171,0.32460675,0.2616919,0.003680865,0.024231011,0.5089579,0.5469287,-0.40169394,1.1113847,0.12527958,-0.024002254,0.2892009,-0.17641456,-0.41415718,-0.6409512,-0.11896136,-0.010510936,-0.3574462,-0.40082774,0.20227043,-0.22388965,-0.762234,0.5491896,0.020230865,0.34210667,0.037586886,0.2313798,0.3711928,-0.4899535,0.06562797,0.05423892,0.013167765,-0.39827147,-0.24821198,-0.78552777,-0.32504117,0.10985541,0.8860516,-0.47206292,0.03460669,0.18021716,-0.101475745,0.10129038,0.076559015,0.11085126,0.09646169,0.6564947,0.29714102,-0.45668152,0.35437787,0.0026669155,-0.08876047,-0.32209542,0.17847633,0.53649443,-0.7908041,0.63091654,0.4152752,-0.06680923,-0.23591924,-0.7234499,-0.2217827,-0.005428955,-0.2132508,0.44666913,0.25707212,-0.8527279,0.2444247,0.0005661156,-0.6610465,-0.84503365,0.4505509,-0.16906051,-0.2699206,-0.03170164,0.3647736,0.06883519,-0.21273066,-0.013757326,0.2565765,-0.24831297,0.21865158,0.10334203,-0.1683176,0.22494917,-0.092102885,-0.17840715,-0.7963254,0.07730673,-0.4637154,-0.3653456,0.5116294,-0.10477638,-0.34917584,0.07172524,0.19525762,0.33667025,-0.2127375,0.26089528,0.0061690114,-0.31365865,0.68532497,0.43034968,0.55269635,-0.38309813,0.5297958,0.14668965,-0.1751939,0.029794177,0.21877809,0.29468173,-0.22755986,0.2627087,-0.20512725,0.027896902,0.23851424,0.5995819,0.26891515,0.1784807,0.09660388,0.053638827,0.4069248,-0.045582335,0.1312976,-0.2520409,-0.69021606,0.05351348,-0.25015986,-0.020734485,0.49894068,0.21814485,0.16814516,0.13819164,-0.05068864,-0.07180882,0.3646537,0.0146249905,-0.9416494,0.27115604,0.022018129,0.90095943,0.5264361,0.28183267,-0.089312054,0.65653414,-0.21946378,0.035569195,0.49501637,0.043703612,-0.3548216,0.71107286,-0.48007122,0.42791107,-0.1607294,-0.10211737,0.3485415,0.089647554,0.4197185,0.6649177,-0.19289434,-0.102404594,-0.08257577,-0.24138458,-0.09903708,-0.26897284,0.07892799,-0.33809772,-0.5354828,0.52895576,0.45662966,0.40446433,-0.3523331,-0.026159218,-0.114597134,-0.10168853,0.31367403,-0.042277377,-0.17085008,0.15797038,-0.38114664,0.062522404,0.7209217,-0.14042467,0.07327197,-0.2543205,-0.26546213,0.21297936,-0.24467213,0.07560202,-0.0840474,-0.820343,0.15404452,-0.38257775,-0.50015336,0.29303846,-0.14388056,0.11431473,0.07094561,-0.08679857,0.041399095,0.41705433,0.16327524,0.71377563,-0.06611229,-0.11553076,-0.3229172,0.25729838,0.026777165,-0.10752504,0.114156805,-0.37666336,0.20314205,-0.56188244,0.33412766,-0.18822141,-0.39656207,-0.026275987,-0.12710615,-0.14125194,0.6765272,0.041772705,-0.11203953,-0.081460916,-0.21765618,-0.45574942,-0.08226704,-0.37676835,0.11118419,0.24656515,-0.09506202,-0.18030758,-0.19980888,-0.06802758,0.31133345,0.03504822,0.2738224,0.008502196,0.08970558,-0.30011654,0.23410182,0.032851633,0.52283823,0.16359815,-0.00022217508,-0.08297032,-0.3200312,-0.36678913,0.09343812,-0.20838839,0.3091153,0.17581093,-0.065500714,0.917039,-0.06419875,1.1001968,0.0127516985,-0.38422227,0.09041327,0.52258587,-0.15338387,-0.07998327,-0.34858713,0.9689923,0.5485147,-0.10654831,-0.021935647,-0.22215043,-0.02944699,-0.034905028,-0.21550255,-0.010568194,0.044859905,-0.3799895,-0.11542552,0.14325099,0.30033746,0.19464444,-0.24730104,-0.21405001,0.18495631,0.2161028,0.16878557,-0.567986,-0.46337315,0.20403218,0.20380092,-0.119780384,0.021527888,-0.28573993,0.43638086,-0.72427034,0.12902106,-0.6743308,0.03605331,-0.3667802,-0.36775145,0.047718327,-0.15239055,0.45593867,-0.5263054,-0.37627587,-0.05927756,0.39179268,0.1332724,0.27017707,0.622518,-0.15059827,-0.02991943,0.0478657,0.5850148,0.83482546,-0.5652093,-0.2261671,0.4091524,-0.43270317,-0.58608556,0.18594839,-0.6737172,-0.030502645,-0.20519464,-0.4062135,-0.34491977,0.124882124,0.016174063,0.05055864,-0.0010663271,-0.75258875,0.18088596,0.2501344,-0.29234567,-0.21351828,-0.33781412,0.3423535,0.7813938,-0.12929736,-0.5731134,0.06583472,0.039102074,-0.2678749,-0.4990593,0.039120663,-0.2279628,0.044702306,0.08671569,-0.39554742,-0.04866153,0.26611972,-0.5013829,-0.064194806,0.042206425,-0.25457904,0.077311456,-0.23422082,0.13205712,1.0226328,-0.29243097,-0.1211125,-0.36174133,-0.5783463,-0.8325264,-0.34094942,0.40569222,0.046763923,0.07974473,-0.49969366,-0.09744861,-0.28146526,-0.27342346,-0.122584336,-0.33332327,0.3650202,0.112351805,0.5157035,-0.4285321,-0.97478575,0.39454606,0.14065816,-0.08228656,-0.55303353,0.34608185,-0.14513324,0.9019528,-0.016335957,-0.17844804,0.1623906,-0.5869631,0.1395009,-0.2870677,0.0762781,-0.55289394,0.24704663,986 +913,0.65272754,0.078889646,-0.9591426,-0.16901362,-0.33206287,0.0018424107,-0.40926448,0.43046883,0.4753697,-0.45619413,0.0784683,-0.10469226,-0.07683414,0.029381542,-0.085593484,-0.61435837,0.1800334,0.14552002,-0.4045614,0.5077069,-0.5149722,0.2447654,0.1648986,0.36494267,-0.092328794,0.289226,0.02422675,-0.17221713,0.14755256,-0.16295205,0.1022644,0.027346099,-0.62318116,0.10283383,-0.12495056,-0.15108088,0.10454383,-0.37350515,-0.3018975,-0.5800286,-0.016776001,-0.7737071,0.6809726,0.1657688,-0.19214265,0.20297892,-0.05250896,0.096773535,-0.054444194,0.17694719,0.37774572,-0.2468255,-0.47074258,-0.2086708,-0.3043467,-0.6579854,-0.65883946,-0.13112305,-0.6621972,0.072152115,-0.34709552,0.17401665,-0.3276926,-0.055869013,-0.19871932,0.22585131,-0.43814874,0.002330297,0.09888665,-0.15239699,0.2527859,-0.6516752,-0.0070550838,-0.057053268,0.2261873,0.09225384,-0.06648921,0.004165545,0.18028744,0.392428,-0.031760912,-0.19823153,-0.33321905,0.11326321,0.10732573,0.37596,-0.11805936,-0.11501173,-0.16109037,-0.044781398,0.4411517,0.34694836,0.16096039,-0.334267,-0.020187104,-0.06305951,-0.5164423,0.6126371,0.53802544,-0.5069926,0.21142252,0.57108617,0.46503678,0.38267985,-0.22796895,0.30096325,-0.14249586,-0.42166018,-0.10112416,0.15345259,-0.14168532,0.44283715,-0.075257294,0.24451832,0.70420855,-0.07597075,-0.008709858,0.3852875,0.017456662,0.2934898,-0.29631498,-0.051959846,0.3146033,-0.59053296,-0.06469903,-0.38666192,0.5086145,-0.30442822,-0.7806135,0.36730197,-0.49159408,-0.0152882235,-0.17533946,0.6681113,0.8381767,0.6142714,-0.0010022322,0.79751056,-0.48695013,0.092253566,-0.1335511,-0.25967303,0.34910813,0.067076996,0.45339736,-0.46745113,-0.071057506,0.025521858,-0.30388093,0.1303485,0.56474334,-0.29563433,-0.34080675,0.27730325,0.58780044,-0.2524456,-0.1049545,0.53093755,1.2890009,0.89716214,0.16654134,1.0119268,0.13601123,-0.036585514,-0.28708535,-0.09796675,-0.8206229,0.2531025,0.253998,0.162502,0.3708427,0.06849973,-0.042775597,0.33523884,-0.034378067,-0.14143953,0.05066237,0.33502832,-0.13145675,-0.3225056,-0.242175,-0.32846236,0.16107698,0.14751063,0.03958867,0.34952188,-0.19718938,0.23372371,0.1404351,1.0783274,-0.015015443,-0.09200931,0.031138167,0.28663456,0.27553228,0.034469683,-0.043606978,0.36606243,0.2144159,0.08110029,-0.2873886,0.16600014,-0.15186362,-0.5054491,-0.26656246,-0.3327228,-0.122776866,-0.3045316,-0.2083735,-0.013027355,0.02475422,-0.55606294,0.3112366,-2.703023,-0.062141526,-0.11283449,0.3489436,0.0749684,-0.18191433,-0.2422009,-0.37502265,0.27427343,0.2985574,0.5539047,-0.5184699,0.77125216,0.7004207,-0.64098734,-0.23482119,-0.614509,-0.063818425,-0.16256718,0.348258,0.1362757,-0.3015999,-0.008067216,0.16023202,0.5586128,-0.07106858,0.2350903,0.33339646,0.5957258,-0.20111167,0.637964,-0.058721915,0.4330703,-0.12010205,-0.16115819,0.21738629,-0.38457736,0.25542185,-0.3687781,0.0951682,0.2876682,-0.13829808,-0.8493708,-0.29311642,0.15295693,1.202483,-0.36776438,-0.5222626,0.1962039,-0.13356932,-0.36629176,0.21091163,0.4757475,-0.18352616,0.0653103,-0.80649376,0.026925089,-0.1003075,0.088602275,0.020080864,0.020241229,-0.41815183,0.75182796,0.024471551,0.53413254,0.45744562,0.1889218,-0.023951372,-0.19566762,0.15780272,0.99546653,0.29588345,0.12293708,-0.38257203,-0.1926717,-0.17150582,0.11242074,-0.037935395,0.5654445,0.4359618,-0.06789458,0.18450575,0.27287123,-0.1495672,-0.13591547,-0.39290616,-0.46393433,-0.08271118,-0.0034289882,0.47387123,0.9254691,0.003952086,0.3412887,0.1482572,0.21476264,-0.32582578,-0.55847853,0.36357486,0.360925,-0.1987849,-0.14341652,0.6488093,0.50378746,-0.27894282,0.54246134,-0.6112294,-0.45265818,0.31735626,0.07438803,-0.3702507,0.42966652,-0.4386411,0.03599019,-0.90162724,0.24310823,-0.47643638,-0.43275928,-0.4261916,-0.20989062,-2.797434,0.35551,-0.18462269,-0.11014539,-0.1711912,-0.014326721,0.25497743,-0.5132869,-0.60212594,0.050385933,0.17172976,0.5747755,-0.21620303,0.031453345,-0.269665,-0.56724995,-0.10194942,0.36800185,0.0024646719,0.2269253,-0.046301603,-0.43863937,-0.14729004,-0.07926652,-0.05131686,-0.03821657,-0.49227998,-0.11630491,0.0025357567,-0.36550424,-0.22314394,0.6138609,-0.32254907,-0.046579447,-0.18343991,0.159109,0.22482638,0.30505803,-0.12170348,0.05257477,0.009289692,0.06845954,-0.11675802,-0.16136922,0.21579368,-0.037570566,0.39235485,0.36690375,-0.010488282,-0.09388336,0.65583235,0.41106156,-0.13158141,1.0320095,0.07243513,-0.11446629,0.25585642,-0.1345306,-0.11765895,-0.67190605,-0.2958214,-0.19995917,-0.43057764,-0.26018813,0.05610791,-0.3074398,-0.8216036,0.5012923,0.13660972,-0.09652499,-0.045391083,0.5850572,0.5195147,-0.125629,0.0776505,-0.18235008,-0.121470034,-0.35753906,-0.26526332,-0.8705326,-0.27756628,0.22595586,1.1245676,-0.36667013,0.009328534,0.16051011,0.05080567,0.09730441,0.16128704,0.22522372,0.060911458,0.48376742,0.17766333,-0.6006776,0.31388423,-0.41688225,0.015286717,-0.74660397,-0.12703903,0.7376774,-0.82461065,0.20047228,0.5494176,0.07193225,0.088345975,-0.7259068,-0.17781818,0.21548219,-0.19875352,0.4511548,0.17569214,-0.9726162,0.5791716,0.26773483,-0.28480774,-0.71501607,0.6104431,-0.1769734,-0.26571086,-0.10335723,0.48843208,0.2236008,0.059363633,-0.32926944,0.088732995,-0.45614514,0.422236,0.07467646,-0.3220101,0.44536236,0.08074517,-0.1004403,-0.82809114,-0.18410933,-0.3864467,-0.35809696,0.38462698,-0.16750096,0.07128044,0.055295676,0.27036572,0.32670608,-0.5712215,0.14950062,-0.22726887,-0.2889515,0.64567566,0.4964051,0.4725561,-0.31221065,0.6357041,-0.032412063,-0.22374974,-0.00400576,0.011506294,0.3229058,-0.0363355,0.27976373,0.22739156,-0.16594379,0.17119354,0.7952595,-0.001305682,0.24630783,0.261892,-0.03787831,0.33233956,-0.04275027,0.17232366,-0.28031504,-0.5146421,-0.063209675,-0.28337777,0.28879544,0.42877725,0.0706437,0.5113745,-0.18504544,-0.09710569,0.006288891,0.37397555,0.3115436,-0.94968605,0.1776637,0.24582039,0.3221852,0.5508805,0.03512458,0.12306849,0.50126845,-0.17918311,0.20868564,0.3247545,0.115480304,-0.31951064,0.50639904,-0.6680209,0.25583407,-0.1515516,0.10391418,0.31707734,-0.052777365,0.54237807,0.8929607,-0.12873909,0.04501578,-0.10290844,-0.34305838,-0.2809819,-0.16582836,0.07133897,-0.38365546,-0.2803482,0.8308123,0.39043364,0.48298463,-0.21427566,-0.1004251,0.2196802,-0.1935041,0.2797099,-0.019647188,-0.104765855,-0.024996703,-0.545657,-0.09062075,0.52222514,0.20502038,-0.08441442,0.04873495,-0.057697218,0.2997783,0.0026818167,-0.124337375,-0.103390075,-0.42118314,-0.04669556,-0.5048254,-0.5678191,0.37904596,0.1330502,0.24889553,0.059456248,-0.07670245,-0.016864454,0.37614432,0.17183495,0.588955,0.010066609,-0.21905768,-0.25990307,0.07093111,0.053586025,-0.22936668,-0.22281706,-0.3339926,0.43829918,-0.58200175,0.3390549,-0.49236193,-0.46038982,0.050539628,-0.3651004,0.045705333,0.4897643,-0.17986125,-0.24100415,0.16352195,-0.096619,-0.18330322,-0.24668421,-0.35293174,0.22370408,-0.21774286,-0.3394209,-0.19172625,-0.13856778,0.051967144,0.14964603,0.2055128,0.066562824,0.4743118,0.33790898,-0.39641595,0.014231603,0.30844662,0.6965515,-0.16469054,-0.1783911,-0.5304857,-0.4451126,-0.33718553,0.18977414,-0.16265647,0.19122803,0.19511344,-0.27485827,0.9255338,0.104134984,0.93956584,-0.075038515,-0.29710048,0.20774432,0.56776,0.028663972,-0.11170936,-0.16995811,0.9567191,0.5370694,-0.30600753,-0.1599497,-0.554786,-0.27257475,0.038413078,-0.41364446,-0.022975901,-0.158107,-0.6687042,-0.051657956,0.29070365,0.18288286,-0.054842737,-0.25190398,0.34090176,0.23841743,0.17496127,0.029479668,-0.7787147,-0.18903255,0.25963786,0.23367846,-0.15393925,0.06614099,-0.30667987,0.34931806,-0.583489,0.04653422,-0.3410881,-0.053000987,-0.024715165,-0.20777471,0.12150794,0.040408526,0.3187148,-0.47493473,-0.414685,-0.06862343,0.2538475,0.23744135,0.2842081,0.6578705,-0.29809913,-0.24008457,-0.103816845,0.63950104,1.2465737,-0.24891375,0.083276756,0.45143422,-0.38134134,-0.842706,0.06756383,-0.6605975,0.12841055,-0.013467416,-0.45232013,-0.40973035,0.27016303,0.027795546,-0.046215486,0.14781787,-0.47108093,-0.060012665,0.118797846,-0.25098553,-0.24511524,-0.050277412,0.035956394,0.8917804,-0.28226033,-0.38838565,-0.09866512,0.31217337,-0.18684363,-0.46470964,0.028378695,-0.36960402,0.21929188,0.20059502,-0.08958583,0.17353898,0.02589707,-0.570767,0.18074144,0.2806622,-0.2147228,0.17274576,-0.3967236,0.235623,0.7912435,0.03819732,0.007202024,-0.13047749,-0.68189675,-0.6230025,-0.24974988,0.0037662685,0.057160515,-0.10465614,-0.45210397,0.01410386,-0.27330324,0.100377865,-0.0737408,-0.5714224,0.5143194,0.045146316,0.3488883,-0.4024124,-1.1953295,0.040128943,0.0957248,-0.4516735,-0.5832941,0.51237196,-0.17701048,0.8616188,0.11187547,0.014274567,0.017926598,-0.7186715,0.26815984,-0.40370488,-0.0551808,-0.4915407,0.014523874,987 +914,0.42239508,-0.41619518,-0.385811,-0.1150861,-0.04224274,0.23991686,-0.21762216,0.58215857,0.24838938,-0.4889524,-0.18996453,-0.33908328,0.034200054,0.4009827,-0.074305154,-0.46009287,-0.16300301,0.22398393,-0.4432123,0.43751982,-0.3197689,0.121604465,-0.09970695,0.5498874,0.13782741,0.20516913,0.05198277,0.05095281,-0.31366152,-0.21488781,-0.0506572,0.041569646,-0.534155,0.24526906,-0.19977714,-0.15044434,-0.09836706,-0.6373079,-0.32786885,-0.81077147,0.29677048,-0.97384566,0.60972637,0.10130614,-0.26705885,0.20130064,0.3605535,0.24480022,-0.29323694,-0.017161906,0.3685207,-0.2502478,-0.031255532,-0.09165803,-0.30346194,-0.46734276,-0.56126934,0.026367312,-0.2592672,-0.2794363,-0.19585504,0.24708843,-0.18522443,0.011677988,-0.059178058,0.56490606,-0.37699643,0.15845285,0.36766443,-0.34686056,0.43692198,-0.537215,-0.24257855,-0.16810028,0.2795747,-0.053936493,-0.24682975,0.22206956,0.3748499,0.3654836,-0.045156986,-0.12819998,-0.25771198,-0.06711921,0.20292504,0.45174214,-0.2504057,-0.4530389,-0.27033088,-0.22012039,-0.023445224,0.20234977,0.28048542,-0.26685324,0.007233826,0.011931722,-0.3717401,0.3166962,0.46344543,-0.23926382,-0.176494,0.3636403,0.57158923,0.20754321,-0.13324755,-0.13079906,0.14366192,-0.6000069,-0.17757277,0.19887726,-0.30787805,0.52954286,-0.15759152,0.2706795,0.6952691,-0.08788123,-0.107973136,0.011111389,0.12818955,-0.27791283,-0.56379116,-0.22861052,0.25060785,-0.35289446,0.2118452,-0.15122238,0.62360024,0.20817512,-0.510428,0.35503462,-0.56613225,0.13793765,-0.0116946725,0.38184395,0.64369744,0.4491874,0.38225213,0.82516783,-0.48392308,-0.10015103,-0.07099474,-0.1356979,0.13285899,-0.29679534,0.19461125,-0.545491,0.15010028,-0.0026618391,-0.09305922,0.1028074,0.5950322,-0.452081,-0.12294415,0.18753237,1.1058189,-0.19693892,-0.11532548,0.78379536,0.96303374,1.0139605,-0.044586223,1.4222571,0.2373793,-0.37884465,0.060922842,-0.06490705,-0.77268094,0.35291138,0.38186982,-0.37756371,0.19861977,0.19173966,-0.11834148,0.56774575,-0.25968918,0.16659279,-0.16074406,-0.11140829,0.16806985,-0.116940975,-0.3508869,-0.15254886,-0.082000606,-0.13945405,0.24460681,0.08388376,-0.30158758,0.49753156,-0.063186444,1.8331041,-0.24484594,0.11356803,0.082656495,0.3255708,0.1958258,-0.12385952,-0.029188251,0.5078335,0.32763547,0.27644566,-0.42937472,0.1619957,-0.2380622,-0.46222293,-0.0823577,-0.2673048,-0.13432513,-0.13122396,-0.30636773,-0.241334,-0.16722496,-0.2513053,0.3283515,-2.7898457,-0.20187627,-0.23236395,0.25296026,-0.30414593,-0.28831574,-0.13307433,-0.4081576,0.5258083,0.27716884,0.476369,-0.5195632,0.30729374,0.40859112,-0.60836285,-0.20443384,-0.47471237,-0.109584294,-0.040687658,0.30542985,0.009965385,-0.14985491,-0.076000504,0.17098336,0.5986207,0.107117794,0.21845241,0.46629402,0.55364424,-0.22861378,0.55097246,-0.20642318,0.6262751,-0.41910303,-0.23718621,0.29263353,-0.5748024,0.3461016,-0.102618545,0.15481089,0.5789921,-0.38906276,-0.87653184,-0.7531807,-0.2989432,1.02979,-0.23780866,-0.494514,0.13779068,-0.3670043,-0.38873652,-0.0020751853,0.7220359,0.01424702,0.20957433,-0.7984092,-0.01731419,-0.10178796,0.24743557,-0.011988692,-0.097154856,-0.46640626,0.94412184,-0.006170129,0.4978067,0.380903,0.06791099,-0.38542843,-0.33686936,-0.03233795,0.9896521,0.3184535,0.25542343,-0.1484326,-0.10997754,-0.5648041,-0.17122817,0.016520614,0.6053018,0.43316576,-0.030089637,0.14840376,0.30501023,-0.014792648,-0.01547277,-0.09197343,-0.35334477,-0.14541072,-0.07571911,0.52114683,0.5668907,-0.0654815,0.43061018,-0.2327982,0.44634604,-0.2275663,-0.46232986,0.50629634,0.9778538,-0.26237226,-0.26180223,0.6829737,0.3931084,-0.36229882,0.4552271,-0.6097359,-0.33774284,0.4592885,-0.102237485,-0.66674614,0.2229564,-0.29625067,-0.036684256,-0.8577523,0.16383426,-0.29907584,-0.4095731,-0.47941515,-0.23225848,-3.7798672,0.24858166,-0.13683403,-0.22893186,-0.21806206,-0.025042504,0.106932074,-0.5800047,-0.6450048,0.15802705,0.0066561997,0.746398,-0.14440553,0.20069599,-0.3146973,-0.22067071,-0.2995758,0.14738804,0.016728818,0.33272043,-0.12809588,-0.53195673,-0.06595171,-0.1280405,-0.4523375,0.03757159,-0.86462307,-0.38129592,-0.12091128,-0.63915807,-0.16565989,0.67396814,-0.40393028,0.0020790498,-0.27101794,0.07953378,-0.22131558,0.3950428,0.012314077,0.24143718,0.018435603,-0.3002455,-0.020863483,-0.15258865,0.3393786,0.12172792,0.15967402,0.32508084,-0.13180198,0.24456947,0.3399488,0.70987767,-0.10232952,1.0056517,0.30572483,-0.168572,0.33137548,-0.2450593,-0.16804963,-0.448485,-0.21625076,0.13722886,-0.5035701,-0.49231377,-0.012472426,-0.38000885,-0.75574136,0.5757427,0.114317924,0.14669612,0.111002654,0.2912006,0.41679797,-0.40287873,-0.01916382,0.005749198,-0.11744941,-0.5243379,-0.3479527,-0.5346606,-0.5109903,0.15548171,0.9183505,-0.05262977,0.13039242,0.16073388,-0.3543146,-0.10440195,0.2547476,-0.14295451,-0.04468755,0.41980255,-0.085333146,-0.75496745,0.5045657,-0.10860374,-0.20349564,-0.6361482,0.3629092,0.70631987,-0.57337457,0.88091415,0.50012684,0.11878311,-0.35170016,-0.49201962,-0.23365472,-0.18281443,-0.20004188,0.3754208,0.19995908,-0.7163761,0.29962555,0.45751682,-0.27152324,-0.73579913,0.54666984,-0.24330299,-0.15806328,-0.09545671,0.4862366,0.050438643,0.057019215,-0.2404998,0.2829375,-0.51722866,0.15953378,0.12365226,0.0061133206,0.44132194,-0.17020762,-0.14716923,-0.785731,-0.016434222,-0.50289625,-0.36360827,0.42221463,-0.01265724,0.086645216,0.3158724,0.11121968,0.27722374,-0.23584147,0.14766262,-0.14893667,-0.22799851,0.25374544,0.43324196,0.48070017,-0.5250643,0.67418975,-0.0019379109,-0.039686073,0.051500995,0.13937055,0.42097342,0.16045165,0.65980446,-0.081369996,-0.17941976,0.31915173,0.7358592,0.18709087,0.4976233,0.14708649,-0.1606489,0.1601006,0.12212209,0.24782366,-0.025967194,-0.7893653,0.10428091,-0.41088846,0.1765977,0.4208727,0.11005717,0.34451973,0.03633357,-0.32857653,-0.06622596,0.22047253,0.06671241,-1.1463461,0.3860949,0.17849547,1.0693866,0.34544942,-0.039299697,0.0148485815,0.78222513,-0.067720465,0.04045068,0.33352885,-0.080165066,-0.46540704,0.6372687,-0.8574111,0.3365365,-0.1587588,-0.037467178,0.04219964,-0.05202535,0.5723047,0.8164064,-0.1952961,0.050481766,-0.014863568,-0.17384124,0.35213003,-0.43607056,0.19984405,-0.49671006,-0.4157597,0.6406856,0.5573059,0.39715365,-0.38364443,0.08375924,-0.014170244,-0.11716219,0.10413306,0.20136802,0.09720149,-0.053613793,-0.9972293,-0.10495964,0.49232924,0.016299486,0.38301215,0.01801388,-0.28507784,0.32637876,-0.28592542,0.0071513704,-0.07376234,-0.7807782,-0.060629945,-0.3593317,-0.6125486,0.3479171,-0.022673344,0.12453868,0.15968934,0.00032912692,-0.19627042,0.5629916,-0.03815527,1.0496299,0.13026862,-0.0923442,-0.37956512,0.21729009,0.15879954,-0.24492241,0.06453028,-0.3419803,-0.06277164,-0.5708088,0.6116709,0.022676647,-0.54846364,0.2833158,-0.04336338,0.069277294,0.64478725,-0.13970561,-0.16483325,-0.15584126,-0.27402556,-0.25137466,-0.20382561,-0.07242525,0.37711868,0.13209695,0.14487375,-0.15963183,-0.0009987354,-0.22807728,0.30897728,-0.03025485,0.3806546,0.5703513,0.06141423,-0.31759933,-0.12369021,0.10276425,0.68569374,-0.034660775,-0.39627302,-0.13023718,-0.56259257,-0.4785134,0.3362111,-0.020515038,0.4682262,0.165873,-0.26661977,0.7195261,-0.112425126,1.1384401,0.07440678,-0.40174374,0.06751498,0.5931505,-0.0044303485,-0.13497327,-0.49039412,0.78712016,0.5300757,-0.07634044,0.017626164,-0.4303832,-0.03777019,0.26153648,-0.2089526,-0.08554233,-0.11165017,-0.7420514,-0.21813726,0.15895994,0.3435415,0.4273015,-0.17459698,0.13365178,0.4035976,0.03403992,0.2742751,-0.42355987,-0.20475249,0.37552285,0.37743977,-0.14915776,-0.002279232,-0.37206638,0.36678633,-0.54254127,0.15774785,-0.2962753,0.10284383,-0.41020885,-0.29617235,0.2587872,-0.06402647,0.38774264,-0.33132294,-0.32014665,-0.07772856,0.32691023,0.37114188,0.24102016,0.5606334,-0.16850837,0.049081773,0.176647,0.5497417,0.8726847,-0.44238734,0.09795723,0.3868061,-0.39163518,-0.7464374,0.4457864,-0.39111984,0.25707877,0.14786392,-0.2661422,-0.40113103,0.2684234,0.14954591,0.009649341,-0.048014652,-0.65968853,-0.02961865,0.39023098,-0.19350724,-0.17976807,-0.24864878,0.19175507,0.41785863,-0.10052973,-0.39711985,0.18126757,0.3418614,-0.17417018,-0.5971467,-0.1276852,-0.5251315,0.45945707,-0.014789547,-0.30426514,-0.085970975,-0.2340637,-0.57981294,0.22264862,-0.1480486,-0.37454247,0.12106963,-0.38994583,-0.23365188,0.84444684,-0.1784208,0.04003166,-0.48647282,-0.44812462,-0.80797726,-0.16486973,0.31691542,-0.037151173,-0.04663612,-0.42802384,-0.03868296,-0.19998503,-0.116531946,-0.013058625,-0.38935813,0.40553078,0.05878444,0.5946878,-0.07292505,-0.64103276,0.2021265,0.20757501,-0.12122369,-0.6708906,0.4934686,-0.13856058,0.7875002,-0.08295535,0.117141835,0.40471497,-0.5421373,-0.10426793,-0.24070399,-0.19959098,-0.67410916,0.12473234,992 +915,0.3732612,-0.2594817,-0.45764318,-0.019768171,-0.14950256,0.0030770202,-0.19008833,0.5999317,0.2910418,-0.3567654,-0.13344915,-0.1928504,-0.03673768,0.25746077,-0.11752691,-0.35475692,-0.16288733,-0.014024411,-0.40595445,0.5371534,-0.35310492,0.0610802,-0.15460594,0.56593996,0.22846417,0.19187546,-0.14963217,-0.003945112,-0.22813737,-0.16434671,0.022871792,0.46391663,-0.62955374,0.08950263,-0.2738073,-0.31310132,-0.14935647,-0.49605182,-0.45489538,-0.725163,0.3390173,-0.7782133,0.41468933,0.23040545,-0.17002524,0.40233198,-0.057035714,0.10646861,-0.21849477,-0.1287678,0.094521105,-0.15783612,0.06416687,-0.26903516,-0.17683096,-0.20216914,-0.61900896,0.066649474,-0.4329393,-0.20605408,-0.40118575,0.13018356,-0.31732175,-0.17524217,-0.10383745,0.5222801,-0.35843205,0.3239452,0.027218938,0.0349041,0.32066402,-0.5772261,-0.37220708,-0.1269878,0.28857273,-0.39578083,-0.22511618,0.20215075,0.1984232,0.2401946,-0.28609654,0.029458823,-0.4938693,0.08624222,0.11898449,0.43419638,-0.39516783,-0.69605184,0.052408297,-0.01451086,-0.036876738,0.15840803,0.17685735,-0.2904688,-0.10928928,-0.01843231,-0.102710664,0.597933,0.49081603,-0.1266859,-0.3316467,0.278415,0.4067544,0.32000247,-0.06448406,-0.31682557,0.10755557,-0.6293598,-0.051662784,0.13310297,-0.07184231,0.5681849,0.0472129,0.29144552,0.47214317,-0.27330884,-0.08279801,0.15614583,0.0040429533,0.12852706,-0.2423205,-0.1421902,0.20512517,-0.19197161,0.31938437,-0.12736917,0.7232284,0.075277105,-0.8669917,0.3133821,-0.66518253,0.022640595,-0.0286419,0.42197743,0.7261583,0.4133257,0.4121093,0.48114896,-0.3532544,-0.009399712,-0.06384742,-0.25448963,0.020908272,-0.23252924,-0.039670825,-0.4943253,-0.27288684,-0.044837486,-0.20748283,0.17217328,0.41940913,-0.48779926,-0.016355492,0.29041037,0.7591047,-0.16463389,-0.2028413,0.7669921,1.0693161,0.88597566,0.07525236,1.0476445,0.07437367,-0.20329382,0.45098937,-0.2632461,-0.7809295,0.26807275,0.13629414,-0.37226963,0.16673093,0.23458405,-0.012085984,0.21821345,-0.3949841,0.004504343,-0.055695403,0.038324624,0.24930553,-0.22007398,-0.26523867,-0.25566253,-0.2948129,-0.008745432,-0.008105472,0.25350782,-0.30620345,0.25232917,0.01757229,1.453723,-0.022452364,0.09788912,0.059157137,0.5740612,0.03742824,-0.23534946,-0.16059762,0.35181925,0.27585283,0.34751844,-0.6122768,0.19728482,-0.14173652,-0.46047118,-0.05344927,-0.371351,-0.23168588,-0.024832817,-0.526692,-0.09344985,-0.18158306,-0.27497503,0.5078297,-3.1057987,-0.0527186,0.056618404,0.33961204,-0.12116798,-0.3303285,-0.04245149,-0.38268325,0.41269493,0.28834572,0.38602623,-0.61562544,0.28628376,0.46982327,-0.50308007,-0.1805657,-0.54233706,-0.015652113,0.033261847,0.37870696,0.021221032,0.15311548,0.24760486,0.041592002,0.44712016,0.0018899838,0.13872364,0.18601872,0.56672513,-0.1892335,0.4313911,-0.16140811,0.3840042,-0.40127778,-0.28151095,0.24107178,-0.4315548,0.3531065,-0.08388489,0.09976655,0.4193212,-0.32704416,-0.9356629,-0.50456053,-0.19551682,1.0737334,-0.015805105,-0.3764607,0.24737792,-0.5222284,-0.2489732,-0.19280045,0.69409704,-0.035446446,0.06324521,-0.7631164,-0.045760084,-0.2832677,0.17577188,0.01975105,0.032710116,-0.40662536,0.64277434,0.09227052,0.33201817,0.410906,0.08449912,-0.45577502,-0.6062216,0.07765896,0.7302157,0.17443015,0.21618801,-0.23908709,-0.24502373,-0.09433856,0.06580923,0.10736713,0.7205258,0.35788998,-0.03521882,0.23536693,0.30232468,0.053992543,0.054242153,-0.15109669,-0.1947666,-0.19182622,0.07342985,0.5675342,0.96235347,-0.17525448,0.47443834,-0.0017250212,0.15597217,-0.23590492,-0.1821369,0.36550793,1.009307,-0.046109777,-0.20355837,0.6052249,0.6265808,-0.2613741,0.4033061,-0.44337454,-0.21440963,0.56887984,-0.21517538,-0.46728492,0.2529095,-0.27691543,-0.003728648,-0.8341079,0.3119471,-0.2713873,-0.4834675,-0.6910176,-0.00029408684,-2.9945533,0.109324515,-0.3011668,-0.27888364,-0.17623071,-0.23806024,0.09682119,-0.7193373,-0.4480505,0.118176274,0.0925312,0.56349725,-0.21471675,0.12524064,-0.26205882,-0.32474267,-0.12411791,0.17594086,0.31321463,0.32358962,-0.052448023,-0.3343914,-0.14759576,-0.05125634,-0.22331113,0.06494499,-0.4512709,-0.36274645,-0.096894465,-0.5501239,-0.34963647,0.6688075,-0.4251815,-0.16760506,-0.20381151,-0.048064787,0.0015991777,0.34863782,0.17773454,0.20731342,0.052325595,-0.07470977,-0.08394989,-0.23821647,0.35813951,0.041309025,0.35749725,0.57414633,-0.21343009,0.31652617,0.47413644,0.5231965,-0.06801218,1.0045904,0.54842114,-0.009239475,0.27042326,-0.3188858,-0.22288036,-0.58480126,-0.1747921,0.116813324,-0.35123298,-0.47371876,-0.035304904,-0.36428404,-0.6959703,0.5613727,-0.24575724,0.18515168,-0.0055018864,0.33344316,0.52058554,-0.27280363,-0.10823534,-0.135107,-0.037821937,-0.48224187,-0.30378282,-0.4040661,-0.5099662,0.0076522627,0.7164522,-0.1676053,0.06715719,0.24114467,-0.22504993,-0.040140066,0.14862591,-0.10914749,0.18348247,0.3017771,0.070650004,-0.6166106,0.5277588,-0.07157699,-0.22667068,-0.62733227,0.2191956,0.5183584,-0.62276596,0.63447917,0.3787172,-0.025756663,-0.101481974,-0.5199702,-0.17677534,-0.02624932,-0.019892097,0.2236378,0.344015,-0.8737928,0.34606746,0.32437623,-0.24820781,-0.74497336,0.6487179,-0.10920509,-0.34909606,-0.015129681,0.3154949,0.083036624,0.05431254,-0.07762939,0.3962039,-0.25526276,0.2860237,0.027601948,-0.07038766,0.069187485,-0.07075209,0.017430237,-0.5865634,0.36487472,-0.3946868,-0.3743215,0.45544073,0.13869546,0.18854226,0.3106884,0.16961372,0.25093088,-0.19263832,0.051504444,-0.13099374,-0.25876486,0.14539231,0.41479087,0.69550866,-0.51041305,0.4912772,0.104875624,-0.018782796,0.21347363,0.12348774,0.35962257,-0.23028915,0.4209241,0.09252801,-0.34826016,0.15156461,0.98885745,0.20148647,0.4987607,-0.065377586,-0.02444903,0.30526957,0.07529896,0.23549835,-0.123639196,-0.6089811,0.13324483,-0.34980837,0.18838625,0.3476461,-0.018917115,0.025608048,-0.30813077,-0.34812465,0.05484273,0.5048999,0.2043423,-1.1531565,0.21387182,0.09654089,0.89673567,0.48125315,0.04832072,0.11049303,0.6311982,-0.0077669225,0.08546207,0.44894242,0.067709826,-0.54729706,0.48877847,-0.7486003,0.5202442,-0.06395038,0.028602347,-0.031199744,-0.2603722,0.29688475,0.6523474,-0.28410962,-0.009758949,0.12196356,-0.4055711,0.016170979,-0.47757697,0.48601738,-0.5953929,-0.1523227,0.68019,0.70954347,0.22650321,-0.10829691,0.0048566037,0.17942636,-0.13316697,0.09142247,0.034740705,0.1461541,0.034174588,-0.77734756,0.07882292,0.6136151,-0.110545635,0.15532644,-0.1213975,-0.1022918,0.39878586,-0.3414563,-0.2619065,-0.11842259,-0.77485013,0.2136016,-0.45147762,-0.5516236,0.5049549,-0.13390066,0.33144906,0.34319985,0.19145364,-0.3515587,0.5195169,0.15828599,0.7486648,-0.033177715,-0.05083983,-0.38722983,0.09952245,0.2807159,-0.11186105,-0.27170387,-0.17307562,-0.0051980517,-0.4274795,0.28968468,-0.08480566,-0.25625083,-0.29140607,-0.017264301,0.17375548,0.6607919,0.060849886,-0.119572066,-0.107340015,-0.23754257,-0.3567225,0.104422234,0.039846033,0.28270134,0.27712783,-0.12339753,-0.11842939,-0.15570149,-0.16668825,0.25043708,-0.038275275,0.50921965,0.33328357,0.26282942,0.02120985,-0.20991255,0.15602343,0.6026913,0.040115554,-0.16964133,-0.25739798,-0.28010616,-0.3384806,0.2819148,-0.03530597,0.3652114,0.065846264,-0.33956432,0.5556703,-0.19467352,0.9525712,0.07456088,-0.33629692,0.23409732,0.3538336,-0.047112014,-0.15113302,-0.43173113,0.9673934,0.49041784,-0.06295464,-0.14015661,-0.057603955,0.02721688,0.06471268,-0.25657222,-0.13588801,-0.007962356,-0.55905837,0.1747305,0.24012107,0.3155463,0.21991153,-0.14465195,0.03886972,0.2648153,0.04858913,0.139565,-0.37991628,-0.1490465,0.30389178,0.30873662,0.10810394,0.09667497,-0.3865675,0.35321307,-0.35372424,0.05622394,-0.42327258,0.20602399,-0.3641392,-0.21932888,0.22188419,-0.029490089,0.52774966,-0.1618719,-0.20202573,-0.38297808,0.31121954,0.15969323,0.16227995,0.39802125,-0.21666728,0.102623515,-0.016427608,0.44486824,0.7144607,-0.28861746,-0.2068569,0.3254449,-0.3000245,-0.50215244,0.44215894,-0.50367665,0.19827087,-0.07924659,0.06159761,-0.37459612,0.1495195,0.14976822,0.13107549,-0.18854944,-0.75274724,-0.17533056,0.20576006,-0.24014287,-0.22576977,-0.19926663,0.04429674,0.74472475,-0.20427684,-0.20430104,0.08560866,0.32841897,-0.119945206,-0.29668188,0.15557714,-0.34821084,0.16869867,-0.06282865,-0.39752576,-0.25947985,0.10253314,-0.39757195,0.084541,0.07237958,-0.42876986,-0.020363351,-0.25961038,-0.04615888,1.0053388,-0.27525637,0.28443673,-0.35045418,-0.60013574,-0.79169804,-0.27845848,0.25188437,0.12085644,0.067295134,-0.59462047,0.04409079,-0.047211513,-0.39349318,-0.18567978,-0.47548398,0.4183134,0.043312464,0.485721,-0.2212705,-0.75277215,0.12046965,0.16482061,-0.14017613,-0.79636365,0.4393758,-0.058393005,0.85998005,-0.039965093,0.07902288,0.36345437,-0.3709596,-0.13610415,-0.10710905,-0.18166226,-0.6575021,0.07773427,993 +916,0.4653343,-0.24927996,-0.55132127,-0.22187072,-0.2580658,0.08227157,-0.18698357,0.60947174,0.10001111,-0.3665207,-0.22288947,-0.30599785,-0.040199593,0.33948097,-0.2930994,-0.3392171,-0.10095966,0.020946985,-0.47290584,0.4269951,-0.2902712,0.12543735,-0.0268767,0.43653518,0.42575052,0.15275389,0.016542705,-0.040603157,0.19413705,-0.40181115,-0.23237103,0.4226979,-0.47653466,0.090033725,-0.12287617,-0.6034386,-0.06340645,-0.5081892,-0.27334,-0.7749932,0.43886194,-1.1737049,0.6239144,0.09615009,-0.32478255,0.24790278,0.4332557,0.31380197,-0.03691444,-0.09809635,0.30269757,-0.043169,0.122120015,-0.0035386572,-0.25637448,-0.6129293,-0.59288144,-0.26032192,-0.28298903,-0.37482548,-0.48421076,0.10269768,-0.40118095,0.024018157,-0.058478035,0.3289755,-0.4586601,0.10166537,0.11519351,-0.13989368,0.48710147,-0.6936497,-0.28334785,-0.18551947,0.3476073,-0.33903924,-0.17925315,0.100456424,0.4657533,0.3134536,-0.20116065,-0.025557892,-0.1529595,-0.16236627,-0.17820735,0.51403683,-0.34274867,-0.5139126,-0.13885535,-0.051386762,0.36760083,0.5414045,0.0686444,-0.2278274,-0.050894216,0.16498986,-0.3039856,0.5751737,0.35666588,-0.48721734,-0.22899619,0.24599601,0.44114324,0.51620287,-0.20628358,0.025671037,0.095528476,-0.549335,-0.09379958,-0.011994735,-0.26013562,0.47534516,0.0018090443,0.36687186,0.8186504,-0.17780405,0.103461295,0.0032050067,0.011647826,-0.43764192,-0.31488773,-0.35736907,0.31627566,-0.4686575,0.55688834,-0.0052244933,0.75120527,0.014039939,-0.51334244,0.18896866,-0.74010736,0.014764038,-0.2922467,0.46404466,0.6274426,0.33480763,0.2583203,0.62684035,-0.39563057,-0.15052553,-0.07767021,-0.3200359,0.11059401,-0.18959522,0.08671963,-0.5455487,-0.0086480165,0.059411585,0.11969094,0.0032163777,0.59236646,-0.5328185,-0.10978925,0.15534121,0.8619654,-0.31108677,0.021784402,0.7225077,1.0308706,0.85924697,0.027143007,0.83999753,0.0022069432,-0.18263312,0.17516258,0.11362865,-0.67219484,0.34232304,0.59671724,-0.58537835,0.055418536,0.2136372,0.16047022,0.37036905,-0.28323352,-0.09582932,-0.17781141,-0.057997204,0.23660332,-0.1572687,-0.24716868,-0.17698242,-0.007217169,0.068028204,0.14167382,0.14420272,-0.24666227,0.22274542,0.2398122,1.5092125,-0.23459862,0.08708321,0.2176978,0.41977233,0.1081676,0.007927201,0.10442031,0.16133443,0.4817136,0.27668458,-0.6253946,0.33709368,-0.16335583,-0.46331427,-0.04032241,-0.36233553,-0.28239182,0.05879116,-0.531698,-0.09436799,-0.2809997,-0.27827471,0.39399946,-2.7817056,-0.1487638,-0.23241091,0.23945953,-0.0927838,-0.32970706,0.008010843,-0.43435943,0.5348219,0.32993567,0.40843973,-0.6294901,0.41005203,0.58567184,-0.5146064,-0.12950258,-0.63290876,-0.022698283,-0.08267765,0.2594109,0.07209821,-0.11861062,0.11896279,0.2562786,0.43188208,0.1792506,0.23279546,0.30052227,0.5213942,-0.31235936,0.8590014,-0.18130523,0.5024721,-0.16575877,-0.24885334,0.4227852,-0.18509904,0.15425241,-0.29764643,0.18447527,0.5733978,-0.32047674,-0.96021724,-0.77550125,-0.4181876,1.1948177,-0.28154764,-0.51673824,0.30131215,-0.16264749,-0.32563278,-0.04098715,0.6609488,-0.19011754,0.007903679,-0.7810011,0.11840086,-0.34879047,0.015465487,0.08043084,-0.12926464,-0.56169367,0.70673937,0.06277776,0.587276,0.27004668,0.005703379,-0.3727728,-0.44959986,0.04426995,0.71881634,0.45227727,0.0015500649,-0.08508031,-0.07711997,-0.329435,-0.10517545,0.19095683,0.65085846,0.575183,0.07479153,0.3179064,0.22170377,-0.037227932,-0.07300375,-0.21427625,-0.31468984,-0.05451803,-0.014108994,0.5057728,0.38527715,0.006854059,0.40879926,-0.056146167,0.3151639,-0.24645266,-0.4358382,0.31509203,1.1657044,-0.1963055,-0.31682387,0.81809825,0.5724563,-0.14314233,0.33163053,-0.6571982,-0.24883164,0.5915832,-0.107537,-0.7010208,0.13410085,-0.33858567,0.04901364,-0.8615152,0.037684713,-0.35522678,-0.439061,-0.41173553,-0.26345024,-3.5658739,0.30732623,-0.3791003,-0.18405534,-0.30260083,-0.30947837,0.419536,-0.5369489,-0.75570416,0.03795749,0.116856925,0.7963812,-0.07793422,0.013108081,-0.28588635,-0.09575274,-0.16660587,0.17368542,0.011580511,0.31111422,-0.06599286,-0.38666898,0.001140161,0.20968539,-0.39116496,-0.11548387,-0.50288767,-0.36898205,0.014397024,-0.4196049,-0.32799098,0.64428675,-0.49523112,0.014831946,-0.1898486,-0.051682364,-0.25762168,0.36564776,0.047684215,-0.049439907,-0.048375893,-0.061863974,-0.07147886,-0.3381767,0.47780335,-0.031022586,0.25661966,0.09021192,-0.15184882,0.21845908,0.28707445,0.2399768,0.086354226,0.9834928,0.40823615,-0.01811189,0.12413867,-0.28349364,-0.20635723,-0.5513834,-0.20620684,-0.022824414,-0.40957156,-0.52691877,-0.12750015,-0.22592354,-0.75646174,0.71013975,-0.06776795,0.35155317,-0.017233443,0.31521484,0.48034155,-0.15178514,-0.12397378,0.08754329,-0.11721789,-0.5819258,-0.17850804,-0.5409557,-0.43814227,0.0499077,0.6726426,-0.31704113,0.09837699,0.13849364,-0.22523151,-0.0032377325,0.20327702,0.08690651,0.10415086,0.5454417,-0.18365794,-0.74395025,0.5411681,-0.2154828,-0.07632746,-0.66910934,0.106114514,0.5608719,-0.66807634,0.42052287,0.40332776,0.09222293,-0.47179458,-0.5185974,-0.13685907,-0.052904118,-0.3947046,0.27303073,0.23124367,-0.863184,0.320307,0.4054344,0.049938463,-0.63280034,0.8495479,-0.073507674,-0.35276622,-0.012873814,0.3897689,0.31190464,0.08968736,-0.042627357,0.44718352,-0.34911242,0.3592114,-0.03395813,-0.11668403,0.38404286,-0.10089955,0.068464704,-0.7266704,0.24848507,-0.49877843,-0.3811696,0.33545104,-0.022972148,0.049311105,0.5319008,0.17080842,0.33769467,-0.33417308,0.20130825,-0.19466224,-0.18740667,0.2313025,0.43421772,0.5104567,-0.44585025,0.6930941,0.079651386,-0.028889786,0.19600277,0.13778669,0.44609472,0.050139867,0.63925153,-0.014298391,-0.39977646,0.40556127,0.8218294,0.19473667,0.37596598,-0.04941795,0.024827568,-0.0074155657,0.16066077,0.2709628,-0.040420663,-0.8017361,-0.06722908,-0.44356653,0.12156105,0.72503084,0.09464992,0.09513261,-0.10110236,-0.29931915,0.018524857,0.14220996,-0.07080895,-1.0272349,0.43784237,0.2288783,0.8357287,0.43580282,-0.07402247,0.032018684,0.6329838,-0.026950728,0.026570993,0.4339267,0.22973181,-0.341558,0.66389465,-0.81861115,0.31172675,-0.07517277,-0.10635283,-0.0879622,-0.032996092,0.29521248,0.7975502,-0.22910413,0.076468416,0.066929504,-0.36768883,0.23841096,-0.3637505,-0.015390169,-0.55066127,-0.17469901,0.6262648,0.77229804,0.30834717,-0.27240744,0.082743794,0.022496982,-0.052647825,0.011903719,0.12147722,0.10389995,-0.26320058,-0.7284304,-0.045648217,0.46460006,0.14394262,0.24030356,-0.1671014,-0.38054407,0.34638235,-0.047525205,0.22578582,-0.09641311,-0.72469026,0.0022786802,-0.42364419,-0.5518903,0.44368652,-0.24573869,0.39525938,0.25037774,0.0095782885,0.03431422,0.3123252,0.11488498,0.77316785,-0.083431974,-0.01994444,-0.5182585,-0.044446778,0.03519043,-0.14520824,-0.34526157,-0.23540148,0.09769762,-0.6189315,0.30536518,-0.11109971,-0.39740017,0.16299473,-0.28609237,0.03235168,0.5720671,0.020059131,-0.040671237,0.057745997,-0.13943496,-0.23644876,-0.23075674,-0.17636989,0.23735128,-0.14237858,0.2684233,-0.3475579,-0.10743277,-0.40591475,0.18562269,-0.09948892,0.6309129,0.6320792,0.10934201,-0.019707542,-0.22616783,0.12245918,0.63139117,-0.18232512,-0.22536196,-0.13906075,-0.64333147,-0.23627229,0.22203515,-0.019638311,0.5171759,0.083640754,-0.1611743,0.6199184,-0.15325499,0.8446928,0.09384825,-0.40627053,0.086630516,0.59006566,-0.056397352,-0.31017298,-0.21891402,0.8165173,0.43427905,-0.0033011923,-0.082587704,-0.14066401,-0.038673162,0.17569067,-0.13411446,-0.106937364,-0.087682255,-0.58889264,-0.24898104,0.17005643,0.36772949,0.15066026,0.019647576,0.053062357,0.35723054,-0.061016157,0.52681834,-0.4369154,-0.34049866,0.241904,0.34011304,-0.1467973,0.21266083,-0.44598296,0.50388455,-0.5044997,0.020614803,-0.7074846,0.1876521,-0.3102681,-0.15008157,0.1815285,-0.27801716,0.32890636,-0.14738074,-0.31264547,-0.079080164,0.34083235,0.2494263,0.15749836,0.49918985,-0.31725705,0.10325447,-0.071514376,0.53520435,0.79669976,-0.19144388,0.015741272,0.31476992,-0.45738783,-0.5926534,0.50043744,-0.48880655,0.1776528,0.297142,-0.057767674,-0.10026209,0.3821393,0.2564043,0.008975316,-0.071540356,-0.6940054,-0.05416334,0.35120374,-0.14528783,-0.19555022,-0.26932085,0.14888544,0.5588736,-0.36100575,-0.16362247,-0.06585035,0.47005904,-0.054197107,-0.5604047,0.09218607,-0.39100188,0.4791729,0.01819539,-0.34209776,-0.18213254,-0.13525823,-0.48379257,0.34022245,-0.006806764,-0.2994254,0.1709759,-0.31555206,0.07390244,0.895643,-0.21000452,-0.24697696,-0.48597372,-0.41972187,-0.6179425,-0.3149822,0.24801356,0.28611612,0.09945074,-0.28459233,0.17790867,-0.09324798,-0.058173683,-0.16294573,-0.20645891,0.4484666,0.14081493,0.7548086,-0.055762745,-0.7946125,0.18562655,-0.09659054,-0.0482352,-0.6125066,0.5679913,-0.1763166,0.66267985,0.03169918,0.09543677,0.10198461,-0.3474119,-0.049559418,-0.15057819,-0.27939972,-0.9444404,0.005531685,11 +917,0.39027205,-0.31621617,-0.5783094,0.06238926,-0.3988146,-0.02210027,-0.19525656,0.32306328,0.5647653,-0.1226885,-0.27206028,0.16599339,-0.08911921,0.41056472,-0.059038855,-0.4725394,-0.17813176,0.3373775,-0.9887722,0.38021213,-0.3824214,0.3376276,0.073574096,0.7527599,0.14684013,0.2944525,0.030066257,0.017664801,-0.06262774,-0.23032838,0.07048934,0.039236344,-0.6332049,0.03809792,-0.40651777,-0.4580615,-0.1598097,-0.46037996,-0.51792455,-0.89234984,0.45567977,-0.91232246,0.71317375,0.08794179,-0.18068787,-0.26174966,0.24200712,0.32185063,-0.23248257,0.041452587,0.34337887,-0.51617426,-0.0973645,-0.7142077,-0.1020005,-0.1994841,-0.38270286,-0.07364276,-0.3716215,-0.014757422,-0.061425567,0.21255141,-0.20012508,-0.11935241,-0.2634308,0.5449101,-0.26613024,0.26962292,0.19803548,-0.37148336,0.33621755,-0.7379641,-0.087796524,-0.04200314,0.450401,0.15285161,-0.4685705,0.48078212,0.014839693,0.33517534,0.114247195,-0.13439228,-0.39045802,0.14210083,-0.13719302,0.6412048,-0.45769396,-0.14911076,-0.06861839,0.09300737,0.52876884,0.291914,-0.0009274699,-0.045876253,0.12288602,-0.34486148,0.26393798,0.86685526,0.5787205,0.12022743,-0.0643195,0.11935234,0.44034335,0.5224942,-0.32005265,-0.13829812,-0.014070475,-0.6853946,-0.09641173,0.15763135,-0.0174791,0.532708,0.08482499,0.25472423,0.84270626,-0.06705784,-0.19813167,0.46178916,0.38287008,0.2160768,-0.08521015,-0.4780436,0.4010947,-0.42277336,0.002200842,-0.23939885,0.46191415,0.035639185,-0.53572965,0.305953,-0.6379066,0.1359452,0.13100931,0.54519635,0.6701843,0.8504479,0.3112158,0.795562,-0.12858868,0.14681025,0.11529903,-0.16996633,0.17300238,-0.26611093,0.10718102,-0.42729604,-0.14044572,-0.43271294,-0.07541313,0.32329762,0.6276222,-0.6280294,-0.25695837,0.030065913,0.9804781,-0.22232619,0.054871354,0.73486173,1.0246603,1.0766639,-0.11783283,0.9043912,0.03398256,-0.36925584,-0.28859007,-0.07629065,-0.81288713,0.24410066,0.14073692,-0.7498572,0.41340873,-0.0911629,-0.10073328,0.30284172,-0.6266619,-0.17608823,0.048510443,0.15420772,0.038083542,-0.014903361,-0.6322024,-0.34697312,-0.22606763,0.04649339,0.3945895,0.30305254,-0.58585167,0.38578627,-0.121879384,1.3607075,-0.12757264,0.03991353,0.14077534,0.45805836,0.18837994,-0.18296653,-0.007388237,0.21196751,0.4535614,0.040220488,-0.46774256,0.017700883,-0.32325652,-0.21619095,-0.19010872,-0.28168938,-0.3497114,-0.020442534,-0.34642345,-0.45206755,-0.02092343,-0.32470372,0.08937883,-2.293158,-0.23994341,0.116845734,0.63918906,-0.19343418,-0.075597264,-0.2560732,-0.48786744,0.292742,0.020515285,0.71489084,-0.61576086,0.48578998,0.5320374,-0.7450077,-0.1064765,-0.6145777,-0.07472775,0.20406364,0.21343789,0.09257908,-0.10888956,-0.09357346,0.045768145,0.6209232,-0.022554789,-0.024947925,0.6207749,0.6505421,-0.16894661,0.5188069,-0.3018668,0.6246226,-0.6568498,-0.33255768,0.40297815,-0.5336387,0.16048488,-0.39886466,0.026272291,0.7814133,-0.3814577,-1.0203959,-0.39711943,0.27819854,0.9747791,-0.21752836,-0.4859166,0.14196599,-0.6684485,-0.26077485,0.084043555,1.1018918,-0.20798635,0.06811357,-0.7207657,-0.32324794,-0.08380654,0.25515994,0.07761157,0.03327632,-0.3780712,0.7543635,0.043771833,0.47300968,0.15064754,0.23674335,-0.42310616,-0.3182983,0.2800063,0.7001795,0.4194759,0.15947524,-0.090803206,-0.032419357,-0.15629752,-0.1521645,-0.13898735,0.9974367,0.55277735,-0.23957287,0.11316822,0.37861776,-0.072297215,-0.16227435,-0.39379397,-0.20327902,-0.1860395,-0.034356236,0.577339,1.102655,0.07442188,0.36571,0.046145905,0.4375939,-0.18328136,-0.51785904,0.57797176,0.66859204,-0.28513393,-0.14825855,0.54233736,0.3798623,-0.48451585,0.45749187,-0.7161922,-0.49472797,0.53425956,-0.19446689,-0.42930433,0.29303476,-0.34638157,0.22443981,-0.4524068,0.30210355,-0.313033,-0.5391735,-0.6842856,-0.17601405,-1.4230918,0.1899177,-0.28525114,-0.17037672,-0.44733316,-0.07586145,-0.014962465,-0.5767805,-0.5706545,0.09018964,0.33352596,0.7400623,-0.0775997,0.18736406,-0.1074429,-0.47617486,0.06989025,0.13321456,0.36925545,0.34938708,-0.2091342,-0.44148958,-0.03603516,0.20933667,-0.45282477,0.0009130307,-0.7718597,-0.5906357,0.03970531,-0.5983067,-0.1803177,0.6256251,-0.41383,0.0060575334,-0.37455508,0.071750276,0.1383825,0.13736326,-0.03965011,0.18123406,0.107052214,-0.14902626,0.31577513,-0.07940367,0.55469567,0.070783876,0.31101885,0.022483757,-0.04889537,0.17480388,0.42510518,0.7934749,-0.22846244,1.2628284,0.47330996,-0.07991243,0.078723006,-0.32302022,-0.5545089,-0.46805885,-0.16936421,0.4126197,-0.48604405,-0.2686634,0.16915597,-0.4694381,-0.881984,0.65608054,-9.945306e-05,0.124896504,0.18453561,0.42926627,0.62624115,-0.285054,-0.116835065,0.034510985,-0.21489672,-0.3953369,-0.11534894,-0.5329835,-0.46698835,-0.33437058,1.178951,-0.2410283,0.2501198,0.33414394,-0.45923945,0.1247891,0.16148204,-0.20551997,0.13010553,0.58001137,0.051345114,-0.6175745,0.36285046,-0.21987191,-0.16301613,-0.6886208,0.28125426,0.75674117,-0.9560468,0.4651364,0.37527856,-0.23252869,-0.63202435,-0.5685235,-0.20761698,0.10817588,-0.059717346,0.35465145,0.26517847,-0.45334843,0.43195343,0.23684913,-0.640263,-0.67205936,0.1526642,-0.1452962,-0.6787568,-0.095114164,0.3857315,-0.01364068,-0.04887246,-0.2229589,0.35503176,-0.3382407,0.5247325,-0.2737912,-0.13699043,0.040871542,-0.3656251,-0.3472194,-1.0066129,0.37350005,-0.635127,-0.45548275,0.52878344,0.08786147,0.15739137,0.25084305,0.39033368,0.36059934,-0.18249017,0.021358518,-0.55456907,-0.43934906,0.29236242,0.42362258,0.58548,-0.42913616,0.62650543,0.1805314,-0.22388586,0.4103568,0.09428228,0.5205085,-0.25342783,0.52208525,-0.078946754,-0.1800831,0.20140834,0.89463973,0.15302187,0.319869,0.029845275,0.0027469478,0.27560183,-0.041288838,0.14389423,-0.1224329,-0.6638603,0.099878736,-0.3075731,0.05631067,0.53939176,0.3300617,0.19936953,0.0589174,-0.37635022,0.073164955,0.36647776,0.14173482,-1.5427787,0.46780184,0.30480182,0.9422039,0.17569403,0.30167583,-0.2207867,0.8993,-0.28195494,-0.000990253,0.39769933,-0.027787907,-0.36769524,0.6077604,-0.5815005,0.59415823,-0.17659193,-0.057677332,0.1332706,0.14236914,0.37561694,0.8870383,-0.20389853,0.056729242,0.06383489,-0.21856841,-0.24662186,-0.36400804,0.13634545,-0.61937386,-0.62112623,0.87105125,0.43498495,0.58059156,-0.20479316,0.16640092,-0.09060553,-0.17922406,0.32524216,0.037591163,-0.12190496,-0.07971501,-0.7575706,0.39533588,0.41562846,-0.07088241,0.07977658,-0.23530273,0.13750964,0.21502231,-0.061987247,-0.039046895,-0.31004623,-0.7558527,0.03614404,-0.6162007,-0.55099857,0.29586676,-0.17410849,0.111250706,0.27010298,0.040735506,-0.20596462,0.6114944,0.18687946,0.962051,0.09497714,-0.27496377,-0.26251185,0.50801766,0.24715918,-0.24488735,0.1261241,-0.28643447,0.28019345,-0.466813,0.69437814,-0.3329518,-0.43225154,-0.026367974,-0.204429,0.02594954,0.5760598,-0.22265282,-0.23485889,0.085072584,-0.38458955,-0.59810275,-0.22133654,-0.40056193,0.09151683,0.40622795,-0.018109603,-0.3854782,-0.32740334,-0.23357998,0.5798864,-0.10075231,0.7062781,0.55516183,0.2901393,-0.16201246,0.015935015,0.27638137,0.7652985,0.15898685,-0.11186215,-0.73427796,-0.3239856,-0.49516097,0.47581923,-0.14043695,0.1886192,0.17668891,-0.15967326,0.93122,-0.11389263,0.94718516,0.09310902,-0.20290169,0.14385703,0.66082865,-0.31384754,-0.026678223,-0.52987665,1.0186518,0.4159169,-0.2919289,0.09610888,-0.37662888,0.11251393,0.32826492,-0.49136165,-0.16088222,-0.11591604,-0.57721287,-0.22922641,0.20791164,0.31137484,0.18079506,-0.3657219,0.070948154,0.21331738,0.0258071,0.011818108,-0.60729164,-0.2639264,0.3986432,0.12925786,-0.2806235,0.14302683,-0.3874593,0.3941108,-0.29947546,0.0964133,-0.48703825,0.15837556,-0.21807393,-0.48378485,0.27939928,-0.06643944,0.24642305,-0.62472826,-0.15888928,-0.0846694,0.19887957,0.16337651,0.17507496,0.35309795,-0.28420568,-0.15293838,0.04084648,0.6516176,0.97204393,-0.4925214,0.16169253,0.35440892,-0.431192,-0.6264077,0.51015687,-0.29873917,-0.24667287,-0.1282348,-0.4225625,-0.4071965,0.21029264,0.0095068,0.21264444,-0.27378651,-0.7165013,0.03449787,0.42443788,-0.1472802,-0.20565878,-0.26593098,0.16183501,0.4321775,0.118832305,-0.40294302,0.03953961,0.3480645,-0.22138672,-0.17592405,0.13919193,-0.4390478,0.25930443,-0.071412176,-0.37300184,-0.2009597,-0.034914587,-0.743009,0.16148768,0.08290073,-0.49287063,0.0475311,-0.10389379,0.08051314,0.87344164,-0.33555266,-0.027667327,-0.33022845,-0.46421137,-0.9496189,-0.4153927,-0.08813758,0.44756538,-0.118643805,-0.7435734,-0.02224202,-0.06407028,-0.35611802,-0.05387892,-0.45884132,0.42832777,0.10458946,0.5539648,-0.5689245,-0.99808764,0.24532112,0.18945804,-0.6658981,-0.49177915,0.59434795,0.21563144,0.78037906,-0.045741078,0.017259013,0.09522638,-0.3561679,0.03979427,-0.28577527,-0.10787023,-0.861762,-0.0067627374,17 +918,0.57676417,-0.38611257,-0.3592069,0.030557405,-0.106888264,-0.04410633,-0.15854101,0.60573864,0.30957833,-0.4774587,-0.16524597,-0.30159697,0.05388786,0.4326124,-0.116642326,-0.5700424,-0.102258675,0.16951086,-0.41778556,0.6902926,-0.40745097,0.17858075,-3.846125e-05,0.4603349,0.2104938,0.06916091,0.10823281,0.027588041,-0.3048577,-0.037037995,-0.23853926,0.46240407,-0.5969083,0.13935558,0.008656252,-0.3563271,-0.13456264,-0.57935214,-0.08166329,-0.8110975,0.22354859,-0.7747195,0.52647686,0.061627604,-0.25506914,0.37157518,0.030676115,0.2103415,-0.19869703,-0.0043444904,-0.061877433,-0.07244503,-0.021270644,-0.3010762,-0.28314596,-0.32014903,-0.64500755,0.17362674,-0.4698086,-0.2577066,-0.30100748,0.14631711,-0.4119996,-0.17576037,-0.08362661,0.6295705,-0.42276537,0.13647245,-0.0022028575,0.015907826,0.41459656,-0.66096556,-0.24633004,-0.16191937,0.04213216,-0.3342256,-0.37928504,0.3560317,0.4674987,0.39541635,-0.107437685,-0.10585525,-0.5839662,-0.03832869,0.27056348,0.57360816,-0.20081034,-0.82906973,-0.19411477,-0.015753828,0.21356674,0.36649063,0.40798768,-0.43819663,-0.05526429,0.042634603,-0.25102845,0.6582032,0.495104,-0.27735975,-0.2754143,0.20315656,0.59213185,0.07957292,-0.035262853,-0.12179739,0.06335766,-0.5896967,-0.028632153,0.42942324,-0.349248,0.5455129,-0.18072993,0.17169909,0.48690823,-0.40990055,-0.09963649,0.09068993,0.08380267,-0.069898345,-0.4411496,-0.17561707,0.24231076,-0.3830412,0.096960716,-0.20230569,0.8733725,0.1692582,-0.7716914,0.3656471,-0.47053406,0.14850044,-0.032722905,0.5667521,0.69588524,0.42319953,0.5051925,0.65049684,-0.46677285,-0.0066594915,-0.12662391,-0.40554705,-0.3739278,-0.23100147,-0.005276062,-0.73870295,-0.14940338,-0.13147527,-0.13134629,0.20744243,0.534515,-0.63439393,-0.08488052,0.029947985,0.7718712,-0.28858548,-0.17125979,1.0013361,1.0402924,1.1064882,0.1263803,1.2018589,0.25671625,-0.27939624,0.32762185,-0.5338061,-0.68502444,0.32699755,0.3301354,-0.6913261,0.43528578,-0.051597986,-0.076949,0.22958253,-0.40985343,-0.014990646,-0.14482512,0.1790625,0.24865142,-0.33321488,-0.45309192,-0.20910622,-0.26066262,-0.006780706,-0.011384943,0.23020034,-0.26882038,0.357951,-0.013693273,1.4223477,0.0751492,-0.013092643,-0.036205564,0.43574592,0.257808,-0.062945984,0.020436259,0.47343948,0.3578603,0.23955783,-0.60140574,0.17537768,-0.28540027,-0.54409117,-0.17153555,-0.26155448,0.06308717,-0.06914397,-0.4359326,-0.2131216,-0.18756433,-0.42976934,0.6060056,-2.475365,-0.24643312,-0.027245093,0.2989418,-0.15643059,-0.38591754,-0.026575046,-0.5074947,0.44473922,0.22419706,0.45058087,-0.7642517,0.14461142,0.39186108,-0.43873012,-0.048883926,-0.68941855,-0.08784991,-0.04741675,0.37998632,-0.040869355,-0.0025311736,0.3379711,-0.13319865,0.7289757,-0.25382194,0.095808245,0.28688774,0.47907525,-0.07522829,0.35485017,-0.054093298,0.49523354,-0.3021885,-0.2534155,0.25773022,-0.46940517,0.16578178,0.25163734,0.13309906,0.53282744,-0.33789095,-0.9541601,-0.6791847,-0.3525784,1.0122466,-0.06970325,-0.57733256,0.3093651,-0.13604023,-0.31699744,-0.26423383,0.49371156,-0.11489568,-0.14021504,-0.81128526,0.048224613,0.041130457,0.12096251,0.00068350544,0.048537884,-0.20589113,0.7558181,-0.03975275,0.20121449,0.3679819,0.14456561,-0.7313904,-0.59619707,-0.0021343557,1.0844314,0.34098542,0.1446713,-0.15722138,-0.2619815,-0.23563026,-0.22093274,0.0936152,0.59338415,0.7832567,-0.10696921,0.14673714,0.3773824,0.047268346,0.04517878,-0.16597302,-0.28977865,-0.17161797,-0.021615712,0.57980293,0.51225096,-0.2943022,0.8285833,-0.081913665,0.06741247,-0.12031329,-0.46881685,0.6384479,1.1534734,-0.19128908,-0.38461846,0.49842253,0.42972726,-0.5702085,0.40335143,-0.4231842,-0.15301861,0.5917938,-0.15448724,-0.49250638,0.16654798,-0.22872216,0.07892776,-0.8258725,0.37701243,-0.38044044,-0.5971536,-0.5218376,-0.04898983,-3.2131653,0.25160047,-0.37778842,-0.2904126,-0.1142323,-0.2387877,-0.19327994,-0.624833,-0.47054628,0.17941327,0.26801547,0.669104,-0.15166183,0.10955166,-0.19702072,-0.3286687,-0.3374653,0.186387,-0.071199484,0.3208683,-0.06603826,-0.49081868,0.004363678,-0.0361506,-0.46613052,0.12627055,-0.6082932,-0.5704821,-0.17522399,-0.6399488,-0.55659777,0.7810822,-0.45609033,-0.0875919,-0.19590941,-0.04264262,0.07946125,0.5209881,0.059830524,0.15676701,0.07078931,-0.23136324,0.08637436,-0.21869694,0.16248155,0.0021774264,0.21510428,0.5432314,-0.2035995,0.4474266,0.47568187,0.77003425,0.14357637,0.83314264,0.5448187,-0.1901148,0.331123,-0.35500228,-0.08173364,-0.65050006,-0.4260495,-0.08343842,-0.5558823,-0.6124105,0.022227913,-0.21492372,-0.7245077,0.61069757,-0.20896946,0.36624536,-0.057603538,0.6648975,0.5566574,-0.11508405,0.033213224,-0.25710624,-0.16268545,-0.4198037,-0.27572954,-0.58991396,-0.49759015,0.24313106,0.8861219,-0.12200518,-0.044109102,0.030422766,-0.21207339,-0.19233336,0.1278351,-0.1290129,0.23955292,0.17826265,-0.13147831,-0.59246296,0.4371229,0.10038623,-0.2134456,-0.68533945,0.26036906,0.75151086,-0.60231656,0.5643979,0.062606074,-0.052925695,-0.1146364,-0.44528684,-0.22127308,0.00410793,-0.1360017,0.418495,0.19131947,-0.7449574,0.3897023,0.49349257,-0.15530132,-0.7603115,0.36872518,0.11771836,-0.33088413,-0.18341233,0.5099108,0.22198138,0.06408258,-0.30942962,0.29452407,-0.60042477,0.17669332,0.19969012,-0.09312391,0.1749105,-0.05966716,-0.24701883,-0.871566,0.19064459,-0.4354827,-0.32157868,0.36877096,0.2007487,0.0890233,0.28987905,0.09176321,0.32877672,-0.35654363,0.041724283,0.04514667,-0.12173914,0.05157175,0.5590449,0.42399576,-0.4162412,0.4829462,0.1441608,-0.092072636,-0.058177266,0.065562576,0.43805486,0.18037221,0.4635517,0.18335718,-0.39647806,0.35830072,0.7270193,0.071824096,0.657927,0.063758686,-0.149167,0.23193675,0.15011825,0.37247905,-0.044581417,-0.43885136,0.10562298,-0.04227172,0.11744823,0.561641,0.06130379,0.31252712,-0.116896555,-0.18233806,-0.0071311328,0.4246913,0.04606086,-1.4123362,0.37561035,0.21093582,0.78734094,0.47328746,0.06743658,-0.012625412,0.53123224,-0.34939304,0.11378078,0.37488982,0.115909696,-0.4906751,0.58907694,-0.80549204,0.43607283,-0.18848382,0.045256093,0.04442452,-0.03837366,0.40497324,0.7986752,-0.294472,-0.13277385,-0.003020498,-0.30041146,0.26178595,-0.55122966,0.18634838,-0.43762875,-0.2600199,0.69263476,0.47071883,0.21503267,-0.11783059,-0.019294636,0.32671395,-0.15291633,0.24607235,0.07972148,0.37074307,0.11262767,-0.77100736,-0.11248383,0.5790918,0.031184983,0.2264447,0.1172038,-0.0073317396,0.19203645,-0.18217911,-0.3068171,0.025909217,-0.65933746,-0.036418077,-0.14631997,-0.5338722,0.4478029,-0.08569899,0.20865455,0.21907832,0.14349177,-0.5842356,0.4449755,0.40634328,0.80735105,0.025331628,-0.1498579,-0.30511138,0.40422526,0.213894,-0.20871258,0.088722095,0.14190464,-0.18688358,-0.6332073,0.46347344,-0.008648268,-0.5112232,-0.035800055,-0.018606352,-0.026931781,0.6074316,-0.15704943,-0.23474546,-0.2142151,-0.30385447,-0.11973849,-0.28828675,0.057625934,0.45949954,0.092384696,-0.08064684,-0.075134344,-0.19257064,-0.042638537,0.28458592,0.054537475,0.3889982,0.16543895,0.320696,-0.4603218,-0.032316554,0.14328885,0.4711354,-0.007454482,-0.13964592,-0.18128766,-0.37714452,-0.4272704,-0.3403527,-0.060503688,0.4162351,0.14301473,-0.53188986,0.83667094,-0.009855398,1.5860015,-0.027429072,-0.41459674,0.069860294,0.46145448,0.0303398,-0.09062099,-0.36096472,1.0655081,0.45485032,-0.08913514,-0.10706326,-0.3442911,-0.022877103,0.28141677,-0.2357166,-0.26736787,0.0654659,-0.5729899,-0.35201228,0.23847555,0.10568228,0.23345485,-0.08668468,0.14462478,0.4528902,-0.07457267,0.20214285,-0.2579117,0.0070317117,0.08927031,0.55907476,0.1922421,0.21746536,-0.32040396,0.20482731,-0.6043196,0.29969057,-0.23832059,0.22279096,-0.18374799,-0.2780632,0.23039566,0.2256353,0.34336007,-0.11803436,-0.2772967,-0.2872058,0.5445313,0.149614,0.1693268,0.5171899,-0.2269815,0.10867064,0.07964445,0.36966628,1.2094535,-0.15659322,-0.28913975,0.21186198,-0.34275487,-0.78169435,0.71196556,-0.20582256,0.080555275,-0.07529663,-0.21003947,-0.6280111,0.035168167,0.17832163,0.14405113,-0.05274652,-0.52393854,-0.21527953,0.40671146,-0.40782169,-0.2580354,-0.34588373,0.33675778,0.641065,-0.25918218,-0.44764307,0.06313198,0.21492763,-0.38456982,-0.34156856,-0.13438118,-0.32428697,0.36917618,0.013189032,-0.35209495,-0.02570163,0.11170135,-0.5009256,-0.010907552,-0.050153863,-0.36654797,0.28425053,-0.20538577,-0.19345473,0.881171,-0.43577853,0.33962205,-0.57301253,-0.6087043,-0.9006742,-0.28619346,0.50152326,0.110155724,0.06865611,-0.76885927,-0.11950963,0.0012985454,-0.27610666,-0.068011805,-0.4596344,0.43556643,0.09161677,0.46740168,-0.10518979,-0.73859316,0.28142184,0.3871132,0.108408906,-0.79859674,0.43480852,-0.095409326,0.87253875,0.020976108,0.06754325,0.5466861,-0.5822745,-0.0764109,-0.18734188,-0.24473582,-0.50628245,-0.098309346,28 +919,0.36943275,-0.24521293,-0.5305809,-0.051618338,-0.31731045,0.09223142,-0.10210958,0.49013528,0.19558404,-0.2596907,-0.3140149,-0.36839056,0.03350949,0.34643635,-0.24877949,-0.24925843,-0.22961289,0.2309403,-0.61259913,0.5101184,-0.2889759,0.07221377,0.22053948,0.3804634,0.49661115,0.056780323,0.13118483,0.1530264,0.14628252,-0.31156892,-0.1483786,0.15365472,-0.44723547,-0.015938293,-0.36852616,-0.5654344,-0.14515969,-0.72528917,-0.4395976,-0.80976814,0.49882507,-1.0227729,0.61718464,0.05068442,-0.31325185,0.36331242,0.48908183,0.3480704,-0.050215982,-0.20780613,0.1534449,-0.24417943,0.09827187,0.043278337,-0.41657498,-0.21025454,-0.6140117,-0.09398424,-0.37965515,-0.19713706,-0.3309498,0.10607264,-0.37620106,0.15087141,0.004218302,0.42965043,-0.37055197,0.014742651,0.30045778,-0.2517901,0.2497643,-0.52705055,-0.2030374,-0.03291328,0.31121275,-0.19659692,-0.13463615,0.27092075,0.21927537,0.36388996,-0.17472933,-0.08237812,-0.30875042,-0.12692872,0.01610874,0.6785635,-0.090947874,-0.37866223,-0.12754732,0.1862048,0.35106048,0.58979625,0.28857037,0.040605698,-0.065058105,-0.09939249,-0.123133905,0.6380838,0.40317994,-0.5859499,-0.29030344,0.3566617,0.54525656,0.3851333,-0.14651138,-0.032093428,-0.042820428,-0.51150995,-0.07035962,0.052208032,-0.47648776,0.57704425,-0.14246112,0.287122,0.5574316,-0.17110057,0.016458642,0.038508542,0.058536377,-0.23515996,-0.27280846,-0.24248153,0.4294451,-0.47722128,0.37367907,0.08182729,0.77705675,0.14824954,-0.36275244,0.20136298,-0.6273611,0.2996793,0.026271397,0.37501782,0.65622777,0.38194466,0.45323464,0.8838553,-0.23938726,0.04934817,-0.10362596,-0.36486903,0.005986023,-0.2798305,0.1015028,-0.561431,-0.0380504,-0.024038337,-0.002314134,0.30355775,0.46072453,-0.5419854,-0.21901092,0.21041423,0.7991815,-0.1687016,-0.009910849,0.8709236,1.0707074,1.1245946,-0.11266677,0.9357632,-0.10529005,-0.28443223,0.097559124,0.05797634,-0.6606891,0.2731113,0.5609508,-0.55126303,0.40591142,-0.05728433,0.09507784,0.2652069,-0.5116802,-0.17100644,-0.06034098,-0.1812508,0.15957972,-0.008924892,-0.5009613,-0.16856699,-0.18469748,0.11344864,0.16992027,0.25021866,-0.10683287,0.4595789,-0.03351548,1.4331703,-0.17190991,0.059850443,0.2626869,0.54272896,0.21613628,-0.14026465,-0.08025215,0.40104952,0.2927541,0.24192381,-0.6065149,0.17392917,-0.29805386,-0.18260585,-0.060507976,-0.518568,-0.3022774,0.1510945,-0.2822499,-0.16996016,-0.43725812,-0.30251917,0.4344237,-2.9635496,-0.12042635,-0.18852767,0.33391058,-0.3203398,-0.35143343,0.123599075,-0.5789706,0.38516614,0.31274542,0.6082888,-0.5658281,0.20061742,0.5612007,-0.9119234,-0.088898204,-0.64085335,-0.21271086,0.089507274,0.31153,-0.025961464,-0.1169722,0.20291094,0.20381485,0.40945262,0.34235534,0.109587386,0.31145218,0.59607536,-0.26060545,0.7840032,-0.38922167,0.509101,-0.28130084,-0.112458535,0.28478947,-0.2487362,0.3967038,-0.5886427,0.043704584,0.79238415,-0.4231758,-0.972051,-0.5810757,-0.018738605,1.2704924,-0.35418046,-0.5217529,0.16668387,-0.3282603,-0.21069965,-0.27032778,0.63880926,-0.09404991,-0.14715539,-0.6885256,-0.016436046,-0.081723765,-0.028242566,0.01777745,-0.19047265,-0.4582307,0.71819425,-0.00944447,0.61151236,0.18575855,0.06111274,-0.30136317,-0.38199723,-0.020784318,0.66104895,0.55630845,-0.057216205,-0.32460278,-0.0885747,-0.54810154,-0.1482266,0.04230349,0.58165735,0.49714425,-0.14996423,0.19030382,0.3356412,0.11102578,0.15260425,-0.16935283,-0.29496047,-0.24656259,-0.31364793,0.56841606,0.62734777,-0.06936241,0.28375027,0.1943356,0.20598911,-0.13412789,-0.4843419,0.37315118,1.0878171,-0.17034239,-0.43319118,0.64747155,0.4456201,-0.0761732,0.432644,-0.46224576,-0.3506579,0.61761856,-0.23830682,-0.6679248,0.19670989,-0.20902723,-0.0710551,-0.7614898,-0.116211765,-0.36692002,-0.22564574,-0.39629564,-0.056234714,-2.7176354,0.28088376,-0.4015071,-0.16578232,-0.22762147,-0.29695523,-0.06051283,-0.42087972,-0.8134603,0.12804057,0.21627909,0.80524707,-0.33302295,0.17676017,-0.21117598,-0.35623464,-0.39035285,0.24060312,0.09460869,0.4142258,-0.23505668,-0.42947987,-0.14377202,0.08593528,-0.42155206,0.013715733,-0.4630498,-0.20858426,-0.10102273,-0.40052092,-0.16699563,0.6709838,-0.30916956,0.15733154,-0.101739615,0.01884939,0.05186696,0.07247139,0.013307664,0.12502044,-0.00962974,-0.07648038,0.2642552,-0.18316509,0.60301566,0.049055625,0.38991365,0.11621931,-0.039641682,0.33770657,0.2357309,0.48593512,-0.07031283,0.94141215,0.3047575,0.016408406,0.1419381,-0.13703194,-0.3385883,-0.5205487,-0.0408821,0.07433789,-0.3826995,-0.5139139,-0.23035984,-0.2776201,-0.7892078,0.6149484,0.14549412,0.5752908,-0.20660233,0.61558014,0.73532104,-0.42951107,0.05872741,0.18284778,-0.03623176,-0.59849304,-0.059678208,-0.5883315,-0.28062907,0.13401042,0.58293587,-0.3734227,0.09895463,0.16134882,-0.24698061,0.15237848,0.2767565,0.06665004,-0.022480749,0.72673,-0.0007199157,-0.60105187,0.4612784,-0.03265667,-0.09025492,-0.6641415,0.40399924,0.34067643,-0.49553013,0.47432345,0.39253223,-0.007315736,-0.30138513,-0.3919299,0.09072889,-0.20138346,-0.2759671,0.24544774,0.34102023,-0.65845287,0.3107549,0.036115758,-0.07439084,-0.82861614,0.67635703,0.006942619,-0.4859021,-0.059893813,0.27873203,0.38090333,-0.026104247,-0.16333221,0.19644183,-0.32194594,0.27918652,0.10787902,-0.12665276,0.2541014,-0.17477606,-0.17274895,-0.7792484,0.38041514,-0.40909547,-0.24616732,0.63689977,0.018730747,0.06391301,0.30540913,0.17342867,0.27801454,-0.10208546,0.16666377,-0.18136472,-0.22183639,0.5619181,0.5279259,0.5094131,-0.6971259,0.7065403,0.051842157,-0.34170857,0.31989858,0.10538824,0.39299366,-0.099121094,0.44514617,0.088187,-0.46961787,0.07128853,0.45514333,0.2789288,0.156247,0.16657104,0.165848,0.16435105,0.030373357,0.15186076,-0.20677948,-1.022796,-0.044266056,-0.49010772,-0.08368506,0.5638488,0.119009525,0.11522328,-0.070191555,-0.328722,0.035553653,0.04319571,-0.13319196,-0.9708742,0.11906678,0.13933307,1.0112242,0.5061129,0.04628031,-0.0060013155,0.6844197,-0.1596334,0.018680584,0.43775386,0.26204488,-0.33038348,0.60273224,-0.627157,0.69942975,0.16025604,-0.16496149,-0.02703427,-0.04194891,0.35305378,0.7695113,-0.33145916,-0.03773274,-0.04061024,-0.355426,0.2240929,-0.3515143,-0.13529573,-0.7642635,-0.23091358,0.60680676,0.4525472,0.32113984,-0.14366728,0.077722505,-0.021232039,-0.2314751,0.20959915,0.18226513,0.18241745,-0.043211665,-0.6634243,0.0986358,0.41868666,0.060122013,0.19036144,-0.017439894,-0.15402903,0.22533678,-0.101577066,0.030043678,-0.23036748,-0.78266233,0.0018883185,-0.4352745,-0.6258756,0.39847043,0.008638626,0.3839386,0.18113568,0.046003763,0.061893463,0.4005212,-0.02944734,0.9322237,-0.11180334,-0.08238847,-0.53002876,0.2300765,0.0072676484,-0.14747085,-0.0125445565,-0.1103803,0.21709065,-0.3625333,0.5472009,-0.046940263,-0.33241272,-0.10143032,-0.20526724,-0.0505244,0.5853544,-0.060731675,0.091052145,-0.12029915,-0.21157865,-0.3598098,-0.43675402,-0.10683644,0.10476882,0.14925157,0.13943674,-0.1926884,-0.021866795,-0.11463776,0.37834436,-0.26907575,0.43641624,0.18961026,0.0019925265,-0.26954305,-0.14276303,0.09293225,0.59560543,-0.14969738,-0.322888,-0.26091692,-0.60095197,-0.39774218,0.35562688,0.011768731,0.47871026,0.12925005,0.21719976,0.7051316,-0.13206077,0.985758,-0.07211203,-0.48765525,0.13248184,0.58465004,0.026719032,-0.34758168,-0.21886438,0.94792044,0.35762927,0.06798992,-0.0773695,-0.39942238,0.14644535,0.0076670377,-0.07834552,-0.1374949,0.0237136,-0.34362814,-0.43451074,0.12838767,0.24447675,0.4520755,-0.3157557,0.16580048,0.52760506,0.06420083,0.34808016,-0.30960256,-0.779718,0.35600263,0.1503167,-0.19717306,0.1382696,-0.6119297,0.40084276,-0.51966524,-0.08400006,-0.55583626,0.16217735,-0.18698539,-0.28785273,0.29169938,-0.06668654,0.49295834,-0.2777615,-0.37467453,-0.21246599,0.34642917,0.20076571,0.17479819,0.46804506,-0.29995137,-0.078150876,0.012546823,0.4710701,1.0271327,-0.19102818,-0.021967346,0.26217547,-0.45745096,-0.600793,0.3094921,-0.51580906,0.29117852,0.24797778,0.116653726,-0.42679837,0.15975726,0.061064433,-0.00012790343,0.04907242,-0.7696717,-0.32732388,0.050456807,-0.3134632,-0.098680146,-0.5468245,-0.051353637,0.50424814,-0.10496008,-0.28134155,0.14594804,0.17028776,0.11491526,-0.7208401,0.043305818,-0.23780021,0.14962913,-0.1756543,-0.36047208,-0.18835579,0.101209566,-0.52101535,0.2590516,-0.040757265,-0.2725021,-0.0018175759,-0.35228717,-0.05342187,1.0148177,-0.48442987,0.055966616,-0.2549062,-0.5138393,-0.66545737,-0.38245544,0.2570547,-0.093498826,0.12609954,-0.66244596,-0.054483283,-0.27727854,-0.20210028,-0.04286597,-0.14368461,0.3473376,0.13099402,0.46954262,-0.17323637,-0.7251759,0.4343111,-0.10058446,-0.13438047,-0.64313227,0.46966496,0.06096419,0.7507309,0.027556349,0.1576707,0.33916643,-0.5627962,-0.22857767,-0.06351905,-0.13593945,-0.57974666,0.034971364,34 +920,0.7010103,-0.1462217,-0.5236357,-0.18103208,-0.42684123,0.32289803,-0.27909076,0.065376945,0.24633765,-0.6551354,-0.07858631,0.024812417,-0.23501673,0.30173683,-0.21841711,-0.91917604,-0.14628161,0.10531383,-0.5735349,0.66581273,-0.43901014,0.39442304,-0.047737774,0.1690697,-0.18372796,0.3554764,0.5581359,0.041368257,-0.2345912,-0.17033881,0.09899692,0.018210893,-0.91283435,0.4412166,0.02628048,-0.24022557,0.08401474,-0.5138323,-0.03559363,-0.71042156,0.609657,-0.8449797,0.7625592,-0.12392651,-0.2542817,0.01500179,0.07327433,0.015206412,-0.13172513,0.13132602,0.18464284,-0.28686666,-0.16165105,-0.27531117,-0.28483498,-0.6181611,-0.7206586,0.07647165,-0.7536081,-0.2223854,-0.4381075,0.30129382,-0.3257989,-0.1623199,-0.28359434,0.6510532,-0.4463177,-0.23264576,0.04287283,-0.22788659,-0.02289653,-0.703651,-0.2681776,-0.16844903,0.24080883,-0.04514202,-0.014285732,0.2909344,0.35132197,0.5856297,0.36860406,-0.39480287,-0.25267145,-0.1545545,0.15715145,0.37074584,-0.05852187,-0.5761719,-0.34065545,-0.041307177,0.37362054,0.14817198,0.27762964,-0.32547665,0.24450098,-0.00066729565,-0.10649531,0.8961497,0.48556882,-0.4169471,-0.2173701,0.3003337,0.38695785,-0.2039392,-0.020849,-0.023230005,-0.06791496,-0.4876106,-0.28843993,0.21427794,-0.12664492,0.5881352,-0.23375203,0.14281116,0.56446034,-0.2476971,-0.06648935,0.053968657,-0.1583069,0.13414337,-0.11777,0.024876803,0.38899973,-0.50165755,-0.0062802355,-0.4849603,0.5285674,0.041124605,-0.70326364,0.28683308,-0.5089622,0.053184364,0.1659629,0.68892026,0.80369574,0.6128582,0.07648324,1.0480716,-0.42231578,-0.04898657,-0.018872792,-0.24520727,-0.07548297,-0.049987737,0.23724537,-0.45301706,0.24492235,-0.07704194,-0.04891536,-0.21435852,0.49964717,-0.54579586,-0.1569893,0.18224607,0.73231035,-0.36396244,-0.15371391,0.9837234,1.1676573,1.1133596,-0.088208325,1.6121787,0.21271853,-0.29970255,-0.14797081,-0.22573107,-0.5826835,0.24567851,0.5300205,0.2848686,0.61799836,0.0764611,-0.02306342,0.17395937,-0.4694009,-0.2734108,0.048420116,0.5319259,0.0076922397,-0.049589667,-0.44535848,-0.16295801,0.36836517,0.12319071,0.46300563,0.4183731,-0.43189862,0.48938343,0.061945867,0.8650308,-0.00393499,0.25494844,-0.06477396,0.3445889,0.284729,0.026992511,0.016359407,0.27421895,0.13221572,-0.05795494,-0.7666962,-0.13099092,-0.6165211,-0.31870574,-0.33519194,-0.37224245,-0.07477807,-0.13278623,-0.20350666,-0.31243593,-0.07674651,-0.5278211,0.28190523,-2.1978395,-0.43004036,-0.20905118,0.33968294,-0.3053138,-0.34535483,-0.14899291,-0.5441682,0.3892573,0.29294243,0.41705084,-0.6971543,0.34899056,0.37171564,-0.45708963,-0.16047917,-0.4824995,0.04344876,-0.24913374,0.52000445,-0.263961,-0.53138524,-0.33831462,0.2867347,0.7136352,0.3694152,0.010720369,0.28219917,0.56847763,-0.01723504,0.41127557,-0.014482052,0.5499897,-0.33919007,-0.08388924,0.39354116,-0.34213087,0.244171,-0.28266045,0.0056948336,0.50485986,-0.6943475,-0.72434443,-0.7074847,-0.3883344,1.2733091,-0.23510009,-0.6045056,0.040706705,0.24976026,-0.22124887,0.030556766,0.62053156,-0.20635672,0.04925817,-0.5879576,0.10220192,-0.054255355,0.13237752,-0.04635392,0.28007212,-0.6213758,0.7141789,-0.06563443,0.3817995,0.21676826,0.5481417,-0.29082575,-0.51011145,0.17136005,1.0952258,0.5384708,0.1779434,-0.19391018,-0.054018162,0.08529547,-0.4255007,0.05935173,0.89684147,0.6889647,0.1414754,0.061709426,0.43927348,-0.10755256,0.37895167,-0.09342542,-0.43960854,-0.43427172,-0.04167898,0.71969527,0.33623043,-0.28329974,0.26786125,-0.06350763,0.09896069,-0.16843486,-0.43326285,0.62340367,1.0250417,-0.19483319,-0.16180223,0.91905475,0.43919554,-0.6956061,0.66277045,-0.7560148,-0.4049792,0.6250301,-0.17473842,-0.48754814,-0.28346992,-0.41785786,0.012726066,-0.90602076,0.3052107,-0.28728756,-0.5186678,-0.46014768,-0.3443127,-3.1144896,0.19327205,-0.29741985,0.09749044,-0.23923558,-0.2093031,0.15005395,-0.7298741,-0.6128624,0.17085077,-0.11503004,0.7310621,-0.17699039,0.15756729,-0.16849594,-0.5304268,-0.22701901,0.28560466,0.1411822,0.1581335,0.03129871,-0.16470928,0.32687896,-0.23684758,-0.46371463,0.07782253,-0.44790372,-0.58651906,-0.3373749,-0.70258063,-0.17844516,0.77759796,-0.20677263,-0.13203612,-0.14047346,0.16632177,0.10688171,0.23821492,-0.059902553,0.36374864,0.36518097,-0.19009699,0.0033849748,-0.3245771,0.66004634,0.16972958,0.4813333,0.5837936,-0.31350133,0.30249482,0.44962415,0.67044634,0.2659565,0.89497906,0.09640505,-0.035898045,0.48845416,-0.34773868,-0.40141594,-0.95106584,-0.36924955,0.16170378,-0.52784705,-0.56096363,0.034431074,-0.39291623,-0.85275596,0.4655526,-0.08693166,0.68890876,-0.23367058,0.4097125,0.32588205,-0.18911277,0.1619627,-0.114478916,-0.20168924,-0.37524596,-0.28406703,-0.7142104,-0.5877136,0.10373158,0.8751259,-0.09823728,-0.27699244,0.13167857,-0.19034928,0.36439097,-0.012377099,0.35251236,0.037224825,0.4097108,0.1680956,-0.79423994,0.3754168,-0.12341339,0.08770882,-0.3842521,0.20082259,0.8753361,-0.691717,0.5091086,0.43339956,0.112257406,-0.16731788,-0.54700667,-0.28327072,0.3637084,-0.11591747,0.46352842,0.28415364,-0.8249662,0.43190372,-0.09723932,-0.26056206,-0.7495833,0.5098496,-0.08355778,0.088417456,-0.1188771,0.73783755,0.3766123,-0.055085335,-0.22197843,0.4411733,-0.56109995,0.36680192,0.09804778,0.020869488,0.62620544,-0.11671584,-0.581141,-0.737973,-0.07373867,-0.8463663,-0.4050012,0.15284444,0.05572872,-0.07079899,0.31582204,0.18760972,0.6116793,-0.45272014,0.24942929,0.049671184,-0.3567048,0.42484704,0.56654185,0.5029991,-0.59429103,0.6352996,0.01918963,0.124561734,0.0012751073,-0.01683265,0.54203945,0.26638424,0.30386865,0.1202815,-0.036900103,0.08151415,0.5333641,0.3210109,0.2987766,0.3841321,-0.26098946,0.57323766,-0.0017884509,0.2959835,-0.0837481,-0.611716,-0.18468508,0.21659492,-0.084515914,0.5683318,0.17578231,0.32056713,-0.19105352,-0.009313324,0.20101632,0.15247375,-0.3280567,-1.3699181,0.23072626,0.13082644,0.67887133,0.5202722,-0.033855364,-0.058510736,0.39607182,-0.20480208,-0.015153679,0.6089702,0.048649885,-0.34442845,0.6142747,-0.32898477,0.31414255,-0.26194584,0.11027174,-0.043533113,0.14317077,0.337152,1.055709,-0.1260377,0.016585412,-0.2224625,-0.040904976,0.19736153,-0.18805404,0.2549465,-0.43857872,-0.19049844,0.5844626,0.15074916,0.2712609,-0.19742586,-0.0736242,0.20235115,-0.16033904,0.37647584,-0.12994681,-0.12817521,-0.22485504,-0.39309743,-0.27783462,0.46106625,0.26279488,0.021579348,0.07055647,-0.20485415,0.14336425,-0.021366738,-0.23663673,0.0887734,-0.91465926,0.08520229,-0.15857431,-0.44033,0.29598236,-0.2763244,0.0059311446,0.1906841,0.07359702,-0.33787563,0.06472501,0.50912994,0.6177082,0.061828885,-0.2646396,-0.4305109,0.029861236,0.13109444,-0.5270546,0.39800665,-0.14957188,0.37768993,-0.55694646,0.6121564,-0.18735257,-0.18178257,-0.12903792,-0.09375313,-0.08363208,0.43101406,-0.11497993,0.09925208,0.2976031,-0.15539573,-0.17352362,-0.29479212,-0.4332062,0.11178967,-0.12403939,-0.025069498,-0.28112516,-0.20341371,-0.2030709,0.427699,0.32805663,-0.14839767,0.23270407,-0.011509012,-0.5773702,-0.05388514,0.11008964,0.45671985,0.060417697,-0.021875294,-0.20872305,-0.3225164,-0.27264902,0.44929808,-0.07845745,-0.09733098,-0.011204795,-0.43977526,0.67063105,0.34550288,1.3093301,-0.06455267,-0.3798764,-0.09096811,0.77403474,-0.15318848,-0.015846688,-0.4168546,1.4050533,0.5928712,-0.20876174,-0.22627497,-0.739431,-0.11466047,0.090339996,-0.46975943,-0.09647136,-0.28238076,-0.7025597,-0.37996924,0.28501996,0.29668304,-0.04764664,-0.052023318,0.06372247,0.25699776,0.23858705,0.67436886,-0.6839243,-0.2667081,0.41046456,0.1436641,0.13746718,0.44645873,-0.23407139,0.22307526,-1.0044408,0.314698,-0.27618992,0.086267605,-0.068277955,-0.39204293,0.34267923,0.27680916,0.3634827,-0.2235824,-0.6663079,-0.2444945,0.45249107,0.10492199,0.21701199,0.9066996,-0.24528736,-0.056075823,-0.088099025,0.48849848,1.6023113,0.3373122,0.2611675,0.041257054,-0.55155647,-0.8809237,0.19621207,-0.56327856,0.096509,-0.29393703,-0.39376494,-0.34183067,0.12915808,-0.16953392,-0.07528329,0.100691535,-0.498666,-0.4834933,0.26727605,-0.39636162,-0.08861274,-0.18333559,0.31626555,0.95867354,-0.32879567,-0.29304412,-0.045276836,0.5774105,-0.28263915,-0.9632609,-0.23571391,-0.20880713,0.5043504,0.053111706,-0.29580155,-0.07991901,0.26265976,-0.49559662,0.18612589,0.36822203,-0.32416928,-0.131962,-0.32427552,-0.054045394,0.8517744,0.1749488,0.30790257,-0.43180558,-0.60493624,-0.97333425,-0.46711075,-0.16369466,0.0035651543,-0.047403213,-0.71310896,-0.113300316,-0.40023363,0.054482125,0.096019395,-0.58178496,0.12650236,0.18226805,0.7749086,-0.18362702,-1.078827,0.073877856,0.27197236,0.072221026,-0.56549364,0.45709077,-0.12888782,0.6769825,0.28298077,-0.10444451,-0.12482956,-0.84756905,0.36159077,-0.41217926,-0.115495555,-0.60457134,0.17347641,54 +921,0.46532652,-0.2612812,-0.5616434,-0.2789171,-0.23261906,0.037294414,-0.22700123,0.20462751,0.3424595,-0.3861164,-0.27243087,-0.14855325,0.21924382,0.13793467,-0.12053799,-0.7436494,0.020918516,0.17215274,-0.79264885,0.36135724,-0.65563637,0.33418375,0.21705046,0.25093117,-0.030358959,0.37688872,0.2832398,-0.27315736,0.0111166565,0.016537601,-0.028111609,0.22138904,-0.71299005,0.06548814,-0.2744907,-0.39177704,0.032319754,-0.6135354,-0.30550072,-0.7585306,0.32711688,-1.1036285,0.5758126,0.15765776,0.055321597,-0.07678315,0.22716548,0.18202405,-0.40621722,0.20564723,0.19974166,-0.23428293,-0.13463913,-0.33935297,-0.089224175,-0.537092,-0.45230874,-0.08694743,-0.7491047,-0.3617587,-0.27398348,0.1353359,-0.32190284,-0.11090734,-0.03294493,0.30642754,-0.4205682,0.023955507,0.40064487,-0.2671378,0.41014624,-0.48755524,-0.009028359,-0.13793577,0.5771997,-0.16318399,-0.48792088,0.32411626,0.46057165,0.42919683,0.22038986,-0.22130409,-0.105806135,-0.06718382,0.2823951,0.505961,-0.12065969,-0.48903492,-0.29176834,-0.04445453,0.21759821,0.39479294,0.12625848,-0.34158966,0.08781617,-0.015082463,-0.31355307,0.6097016,0.66329193,-0.16043134,-0.33055916,0.19748689,0.34015292,0.3422011,-0.17540416,0.21384653,0.03812969,-0.63846934,-0.29276013,0.28942797,-0.07049294,0.66060406,-0.24810523,0.26387832,0.9112997,-0.3245584,0.18776374,0.059499387,-0.012382757,-0.23361334,-0.15749876,0.09193988,0.1265499,-0.7308807,-0.01853303,-0.40318662,0.6862705,0.29008773,-0.603839,0.42137402,-0.64385486,0.2110338,-0.20410009,0.59104705,0.83854336,0.31861764,0.32470343,0.73063827,-0.42081812,0.13628593,-0.06602585,-0.60777134,0.20249447,-0.20068437,0.019829296,-0.32669356,-0.07814714,0.0062856455,0.29352567,0.066520005,0.49248973,-0.54764616,-0.11230226,0.16799286,0.85829335,-0.35350272,-0.12300696,0.645487,1.0672238,0.7215742,0.25355792,1.4027294,0.2502715,-0.1851231,0.20433135,-0.025737183,-0.9115492,0.2692603,0.29992852,-0.25791568,0.33884907,-0.042503264,-0.14870419,0.09751672,-0.4612751,-0.031128563,-0.05463976,0.31597078,0.08360257,-0.123002656,-0.19387184,0.00035266037,-0.09838323,0.0023311106,0.08804596,0.12514967,-0.18807974,0.16756004,-0.027882023,1.0870446,-0.049442507,-0.03011461,-0.008305907,0.56815237,0.3431945,0.058966074,-0.064570166,0.5807795,0.46872061,0.16889422,-0.71461725,0.19792838,-0.18051195,-0.39585355,-0.09384329,-0.46171921,-0.122564696,0.045242038,-0.48376778,0.027108707,-0.000923872,-0.39083737,0.43521345,-2.6867263,-0.345475,-0.04595078,0.5136783,-0.25902075,-0.053569492,-0.3888529,-0.51434857,0.23625742,0.28626853,0.550776,-0.71125346,0.5081104,0.52122045,-0.47862294,-0.20514302,-0.7714741,-0.04316981,-0.12067164,0.31330964,0.061589673,-0.11051259,0.015283349,0.095141344,0.7289228,0.16739121,0.10199132,0.33753517,0.6116785,0.15250678,0.63889074,-0.18503295,0.5179882,-0.45709422,-0.18293294,0.27481976,-0.34974498,0.2133214,-0.14308923,0.038335934,0.58921695,-0.4856782,-1.0556171,-0.5995474,-0.41274574,0.9869116,-0.46333846,-0.33778393,0.21196173,-0.22676812,-0.10777685,0.05298336,0.8828022,-0.010259463,0.34452394,-0.7441955,-0.017461706,-0.022793304,-0.0413906,0.10302754,0.08571868,-0.27273858,0.68587166,0.04520532,0.5909149,-0.041116558,0.25450185,-0.32773122,-0.5694447,0.2606517,0.9362622,0.18498248,0.1018548,-0.11723442,-0.24643922,-0.34063497,-0.09400051,0.039228797,0.7413035,0.7420933,-0.1366127,0.3692125,0.4360915,0.15224132,0.071685515,-0.23534237,-0.187369,-0.1039099,-0.060870703,0.42109412,0.6904344,-0.20374455,0.3567419,-0.14518562,0.38691255,-0.23631282,-0.47305843,0.77483326,0.84034383,-0.10658519,0.07832564,0.35992935,0.51830983,-0.6282678,0.49587324,-0.64181846,-0.4385315,0.7692631,-0.079215296,-0.5178829,0.31493416,-0.3058735,0.1348057,-0.7749151,0.40183544,-0.20780586,-0.32953566,-0.2222033,-0.22925945,-3.9258993,0.18441604,-0.16018362,-0.16557914,-0.45951942,-0.0020807276,0.36006248,-0.5031303,-0.5316009,0.20148927,0.072363935,0.70894957,-0.22439003,0.19276558,-0.34833145,-0.06257996,-0.14639562,0.20333296,0.0547917,0.287692,-0.2299239,-0.3538885,-0.0052055987,0.09304831,-0.417963,0.19589639,-0.5889179,-0.51394844,0.028481988,-0.61460865,-0.24937001,0.57781166,-0.49485627,-0.17493536,-0.23164462,0.15388784,-0.29047486,0.46958846,0.16678025,0.17877735,-0.07885695,-0.068655126,0.06897233,-0.20207693,0.7258183,0.011591565,0.2970702,0.14869842,-0.09554229,0.082693435,0.50224227,0.43347368,-0.1437336,1.0366553,0.18371157,0.019759828,0.32053527,-0.2625478,-0.28168222,-0.62736976,-0.2135517,-0.21348737,-0.49710828,-0.59677327,0.07056963,-0.32587883,-0.8730957,0.5832856,0.07071679,0.3289208,0.0008228015,0.44397604,0.32993677,-0.07033194,0.06993239,-0.016518867,-0.20769934,-0.5254234,-0.12492042,-0.6488956,-0.4510117,0.19234748,0.50076586,-0.35757148,-0.0023651964,-0.035581663,-0.09685791,-0.0448904,0.08618183,0.0051292535,0.23475887,0.4534356,-0.07257431,-0.60811234,0.60421306,-0.15794852,-0.2761773,-0.5070495,0.0052280156,0.6649998,-0.9049158,0.687877,0.5193678,-0.02093793,0.017261397,-0.40940025,-0.36479548,-0.17949133,-0.15823025,0.34397566,0.01990845,-1.0140508,0.41271722,0.36578476,-0.51112896,-0.69803566,0.6349771,-0.15512432,-0.09573608,-0.08302203,0.32689396,0.1281923,-0.022993304,-0.21578236,0.2630507,-0.5291145,0.36776933,-0.04312712,-0.08046594,0.6571411,0.10522454,-0.4204079,-0.6903066,-0.012070867,-0.6268466,-0.13181463,0.42686558,-0.059438575,-0.07406884,0.35050336,0.053536512,0.37598085,-0.3177784,0.09915648,0.14482774,-0.34853786,0.14547625,0.6038097,0.4968948,-0.3982918,0.81240934,0.18199044,-0.19668397,0.38549206,0.22677976,0.29776624,0.18477851,0.53074604,0.08194206,-0.25128382,0.3542039,1.0200588,0.15364465,0.5950967,0.17882694,0.003503534,0.52446383,0.17159247,0.2052589,-0.0137142,-0.5193457,-0.12798432,-0.10290399,0.32118607,0.4052502,0.21336421,0.33838296,0.107933335,-0.1992558,-0.036098823,0.46698257,0.10855841,-1.1668673,0.2938824,0.42536813,0.73279935,0.42631677,-0.052442785,-0.027041912,0.39917305,-0.12809847,0.2143252,0.30609325,-0.20200366,-0.61628765,0.64188474,-0.4852495,0.3776088,-0.3840228,-0.014163952,0.078365915,0.24851602,0.27882585,0.9860798,-0.01550743,0.016161807,0.06314676,-0.23799664,0.17744263,-0.5366694,0.006428805,-0.3630712,-0.26081505,0.7637751,0.50629777,0.2374199,-0.23603879,0.0036119642,-0.0630611,-0.16429669,0.27200118,-0.033965755,-0.021043973,0.011593413,-0.8906346,-0.23655723,0.6765968,0.22280866,0.19455758,-0.21858115,-0.2151096,0.26300332,-0.18572842,0.12626165,-0.13794822,-0.7414421,-0.121889666,-0.3619648,-0.7376659,0.38797724,-0.1960163,0.19825631,0.3575538,-0.10917206,-0.22976846,0.4380414,0.073849395,0.71807486,-0.09880542,-0.33624285,-0.6551044,0.13070494,0.39768174,-0.42967522,-0.041216597,-0.47767326,-0.025053501,-0.3980086,0.72925955,-0.07693303,-0.433819,0.21181731,-0.19208024,-0.1252762,0.6402186,-0.062426616,-0.08005986,0.31332576,-0.18906479,-0.60086626,-0.0032104661,-0.41408366,0.25484324,0.32911098,0.0697156,-0.22655755,-0.26672724,0.0054630744,0.23884286,0.035560492,0.46356323,0.3842699,0.2804818,-0.07916081,0.020231497,0.4095213,0.69430876,0.12053574,-0.012507569,-0.28549263,-0.5026386,-0.33876303,-0.02522422,-0.10281904,0.15511698,0.19344582,-0.29872096,0.77992636,-0.050921116,0.9972471,0.17275073,-0.29229486,0.16693288,0.46695727,-0.06458004,-0.1699238,-0.48648036,0.89039344,0.55979115,-0.22197327,-0.04422047,-0.40782443,-0.1945962,0.22247349,-0.3404837,-0.15069912,-0.03990828,-0.73998904,-0.37580153,0.2223453,0.3099346,0.103938125,-0.15114556,0.004348928,0.046301637,0.07446397,0.2020287,-0.97787005,-0.3336043,0.10801442,0.39434594,-0.08490905,0.18615441,-0.19586878,0.5227647,-0.61123407,0.043749515,-0.59595245,0.10704401,-0.2892505,-0.47153023,0.046953883,-0.03538351,0.4987307,-0.10635571,-0.33979467,-0.21683016,0.31930056,0.10086263,0.44479808,0.54469186,-0.1893611,-0.08901936,-0.032263793,0.7568521,1.3167943,-0.28706425,-0.01502572,0.45696518,-0.5694549,-0.6763546,0.3237801,-0.54037017,0.15816604,-0.10238261,-0.49004218,-0.44931296,0.2692992,-0.042016745,0.17623772,0.14053513,-0.7552294,-0.100605816,0.23233718,-0.20959596,-0.4046428,-0.15540136,0.46110526,0.8134649,-0.3869936,0.020657105,0.1199025,0.22683428,-0.2904129,-0.51517504,-0.1277981,-0.32370877,0.37321833,0.07308638,-0.17041922,0.06257141,-0.014704057,-0.5725406,0.36067933,-0.019323431,-0.3235286,0.1415205,-0.102558166,-0.11840575,0.9491368,-0.30220604,-0.31804216,-0.71981186,-0.5308333,-0.91783065,-0.2718715,0.09621766,0.28974393,0.1306352,-0.28442624,0.09104955,0.09305375,-0.10249775,-0.05892615,-0.5790379,0.50301784,0.06987527,0.63667583,-0.3217872,-1.0642287,0.15071104,0.30041698,-0.3127145,-0.98390144,0.5556963,-0.21851072,0.7315721,0.04202871,-0.120271355,0.2243507,-0.357487,-0.07443257,-0.48710632,-0.0010608014,-0.7943933,0.053640887,74 +922,0.46140423,-0.08397564,-0.691663,-0.11277335,-0.5415775,-0.14461981,-0.21819182,0.53555006,0.2940511,-0.1547824,-0.10992663,-0.12389887,-0.06494926,0.48227975,-0.16491467,-0.96625227,0.04583427,0.30353022,-0.5936722,0.46308717,-0.45962617,0.32154214,0.14206195,0.63814694,-0.0087946765,0.034814175,0.22019497,0.29318187,0.06806294,-0.41765884,-0.09600819,0.2324378,-0.8995032,0.14458342,-0.18009819,-0.45494527,0.027955186,-0.47564843,-0.09994802,-0.9123563,0.33057725,-0.5880608,0.7169571,0.19133954,-0.34598467,-0.18677449,0.35273206,0.26030508,-0.2983072,0.008182541,0.3076891,-0.3859784,0.0021591403,-0.18507133,-0.35204136,-0.22015281,-0.79522645,-0.012660601,-0.49079037,-0.101816006,-0.29659137,0.27067378,-0.3396943,-0.012304821,-0.20696382,0.8081182,-0.36996773,0.030747198,0.20005661,-0.2328763,0.23303486,-0.55047536,-0.14522041,-0.13844174,0.059760597,0.031006726,-0.24145843,0.26437607,0.09774268,0.45954296,0.042211674,-0.33198297,-0.4971433,0.0683541,-0.057357874,0.5459068,-0.3569145,-0.2591476,-0.14025363,0.04661184,0.24823557,0.26912212,0.18932956,-0.21175641,0.072682984,-0.18143083,-0.10631467,0.45408443,0.43719128,-0.3693252,-0.12368629,0.09636205,0.29211742,0.031904187,-0.063198,0.16166086,0.03757809,-0.5919457,-0.28688592,-0.01964866,-0.14495525,0.5263907,-0.1441555,0.14892341,0.6887481,-0.14252158,-0.29818246,0.017678587,0.1179614,0.32753184,-0.32964915,-0.37880662,0.42734203,-0.41549066,0.09885531,-0.26365086,0.7091582,-0.0103494255,-0.86365855,0.20079617,-0.6332347,0.15677226,0.13967277,0.5223632,0.6760125,0.5208986,0.517142,0.9116905,-0.4162664,0.17702147,0.1783157,-0.049533747,0.09099798,0.009363088,0.22091703,-0.42170122,-0.0944535,-0.31696844,-0.16919911,0.25627562,0.44287965,-0.54392326,-0.14366402,0.22190356,0.8579729,-0.35389015,-0.10421648,0.86756325,1.2785783,1.3212823,-0.037068676,1.2995358,0.077160195,-0.07586513,-0.20996805,-0.05842864,-0.59599245,0.13954216,0.2220696,-0.1633852,0.4104499,0.068374746,0.027445467,0.60173404,-0.4918597,-0.20402378,0.08611409,0.335518,-0.074419506,-0.23677851,-0.637414,-0.41360572,0.16586097,0.121567324,-0.15227698,0.4071396,-0.20700537,0.54605275,-0.04067577,1.3876948,0.14061002,0.21583241,0.014500964,0.30894172,0.30834377,-0.11364398,-0.25166625,0.1289059,0.07513132,0.2330587,-0.40069115,-0.059546318,-0.32789195,-0.23088928,-0.18911186,-0.26278982,-0.02411306,-0.26537633,-0.43810672,-0.33146372,-0.042689964,-0.21825942,0.3175826,-2.248375,-0.04359332,0.09210684,0.30229107,-0.054231133,-0.4264437,-0.15578003,-0.45828447,0.5541413,0.3634098,0.3809902,-0.635775,0.43245223,0.3102281,-0.4377929,-0.11859166,-0.65150285,-0.15473728,-0.025146572,0.26595876,0.009404689,-0.25270128,-0.27984408,0.40599057,0.7449919,0.08840715,-0.04445794,0.24479146,0.47956392,-0.3850216,0.7436397,0.07442208,0.49209586,-0.24713121,-0.25262967,0.39811325,-0.6364429,0.15356968,0.0021544883,0.081624,0.39195508,-0.56200665,-1.1896305,-0.5979695,-0.038841102,1.1323044,-0.23804146,-0.35445073,0.29883745,-0.26187134,-0.3447007,0.11288602,0.63474137,-0.24733764,0.110503286,-0.6925307,-0.11650135,-0.10695076,0.35035855,-0.000839633,-0.056687318,-0.59479725,0.8139398,-0.22739358,0.2728144,0.53180027,0.18371485,-0.44043055,-0.5073065,0.04638802,1.0999984,0.5559477,0.064720176,-0.22461458,-0.048053686,-0.20121104,-0.015156364,-0.09996044,0.7438385,0.7815283,-0.20883287,0.11241576,0.32982695,-0.13087808,-0.03114794,-0.12702559,-0.46880445,-0.11596859,0.16064318,0.72223604,0.80011994,-0.096242815,0.3882704,-0.008559861,0.46674183,-0.06839711,-0.5607859,0.31421417,1.1452248,-0.08127777,-0.19894642,0.8121494,0.29933488,-0.32607457,0.47208175,-0.4106239,-0.34031293,0.4816227,-0.014315418,-0.39005688,0.14957945,-0.35828188,-0.12258697,-0.9308054,0.39382982,-0.25137922,-0.6037861,-0.547638,-0.28196633,-3.4586928,0.3290246,-0.28225428,0.0940713,-0.1594825,-0.19927599,0.10244088,-0.7284331,-0.7277884,-0.0899786,0.14228036,0.5421536,-0.2239456,-0.008904302,-0.12081575,-0.65226895,-0.2538439,0.44219935,0.33731622,0.19362618,0.18134524,-0.44292343,-0.10162295,-0.35431907,-0.6579994,-0.1532685,-0.67050934,-0.4542506,-0.16744934,-0.7238485,-0.30510274,0.89161664,-0.29387668,-0.085178524,-0.32655853,0.016577026,0.010892673,0.2395916,0.1665588,0.27712172,-0.0049720462,-0.024916975,-0.07345228,-0.15636307,0.04869474,0.10484728,0.47416928,0.38144162,-0.08043077,0.14759292,0.54965657,0.91889805,-0.19723922,1.027343,0.19315724,-0.081057586,0.2754672,-0.38152036,-0.4942392,-0.7647079,-0.35607958,-0.13307738,-0.52642244,-0.10039724,-0.003198537,-0.5038733,-0.78791964,0.67331296,-0.10918407,0.079317875,-0.020010991,0.51002336,0.27792957,-0.3312392,0.0016368493,-0.16889407,-0.13916668,-0.4375963,-0.273204,-0.59814936,-0.62729025,-0.13802567,1.3624848,-0.27030402,-0.03670279,0.1816011,-0.1927893,0.21404758,0.11393211,0.13706131,0.1332205,0.44694564,0.14694834,-0.65456605,0.29814646,-0.20821905,-0.114041805,-0.56626785,0.21350765,0.67775995,-0.6249583,0.87568396,0.27651384,0.19043571,0.14048393,-0.73079395,-0.20396987,0.21582824,-0.106084175,0.60818726,0.4047987,-0.7203704,0.51617986,0.13113855,-0.368803,-0.6745092,0.31835327,-0.080535315,-0.62642574,-0.094945736,0.42360595,0.054537773,0.003313834,-0.16176766,0.3334767,-0.3094507,0.30964586,0.2990668,-0.08294713,0.32804644,-0.24580258,-0.28753778,-0.7587582,0.06465573,-0.4781703,-0.5735167,0.03795954,0.102481075,-0.14330927,0.17800649,0.13857363,0.42846975,-0.41691133,0.21803637,-0.31706086,-0.25959012,0.487856,0.5777022,0.3909465,-0.5389024,0.57512087,0.063589685,-0.08648468,-0.24648142,0.065722436,0.50299174,-0.14437965,0.2532746,-0.11119736,-0.13618153,0.195195,0.44557726,0.05788165,0.31985244,0.14756547,-0.00052016973,0.21201953,0.16353363,0.047052503,-0.0440421,-0.46894178,0.22333501,-0.18069445,-0.0053218496,0.59016603,0.075468354,0.2181776,-0.085293055,-0.16699265,0.2341273,0.33440402,-0.16457482,-1.3913454,0.41518462,-0.008751672,0.7564274,0.64053655,0.2028192,-0.13285774,0.58487135,-0.409265,-0.13795543,0.48726502,0.2469461,-0.2657622,0.78074265,-0.5866813,0.45090115,-0.16485734,0.041692514,0.08707576,0.2033052,0.4810797,0.8377828,-0.11072655,0.060836073,-0.034052763,-0.13776039,-0.18884167,-0.41250277,0.040526215,-0.42607498,-0.34282213,0.73683524,0.3028634,0.29943705,-0.36176434,-0.073564455,0.11148617,-0.24050908,0.25748366,-0.20981096,-0.120684594,-0.058521662,-0.5189264,-0.028487975,0.5968984,-0.11068621,0.025092868,0.10358403,-0.17839566,0.27723023,0.061983045,-0.102360055,-0.021904672,-0.78552586,-0.11954883,-0.64559823,-0.3390879,0.3805184,-0.44409677,0.12752376,0.2505925,0.05329377,-0.27605617,0.30404213,0.25182793,0.6909792,0.05464444,0.062002376,0.014394782,0.5104765,0.071812704,-0.28683534,0.037969843,-0.3768171,0.26301193,-0.3986971,0.55470985,-0.056407962,-0.41083518,-0.17974462,0.015417874,-0.04759891,0.45926502,-0.31662586,-0.033350218,0.08490944,-0.06778345,-0.034966577,-0.32492074,-0.31575242,0.30707562,-0.15127362,-0.11666224,0.017485064,0.015928464,-0.15547124,0.47318137,0.046015106,0.23763691,0.3261447,0.017558716,-0.5785936,0.11512082,-0.24060577,0.49465334,-0.014354589,-0.19154243,-0.4047686,-0.26680863,-0.34588358,0.28421345,-0.21926723,0.16601384,0.054396186,-0.35304335,1.1363009,0.43662557,1.4042617,-0.0960527,-0.43020973,0.10792006,0.5981254,-0.050620124,0.033466157,-0.24732111,1.1543988,0.55528206,-0.40733165,-0.18134183,-0.41911933,-0.16039604,0.16017443,-0.3565718,-0.31762666,-0.17446391,-0.49822378,-0.16232306,0.33088362,0.27886084,0.17382012,-0.21994954,0.07763504,0.288019,0.14327937,0.33396694,-0.45396435,0.05007031,0.37894675,0.2117741,-0.07336697,0.11464921,-0.3312947,0.37733555,-0.71919477,0.31583968,-0.5138176,0.18479075,-0.14282155,-0.4868302,0.22368093,0.047009967,0.25008973,-0.3649892,-0.11718106,-0.15512826,0.5306477,0.23151225,0.14090584,0.80349374,-0.34327853,-0.03495724,-0.009031367,0.47146493,1.3127769,-0.26551604,-0.20696887,0.225911,-0.23938408,-0.6254588,0.17714487,-0.3617609,-0.22059064,-0.33339694,-0.42014924,-0.6491318,0.104812816,0.15944232,0.1387652,-0.063215524,-0.41572294,-0.14738518,0.5154819,-0.3013174,-0.16467948,-0.35068762,0.27150118,0.6467473,-0.11353597,-0.6088333,0.06093147,0.19063225,-0.07833648,-0.69682974,-0.014182177,-0.28773025,0.37609977,0.08003108,-0.38907745,-0.027805718,0.3859318,-0.49069282,-0.029685117,0.36599123,-0.1926539,0.17409015,-0.30363035,-0.08904343,1.0727376,-0.080218025,0.19057097,-0.3840822,-0.66862625,-1.0051365,-0.2783439,0.35772333,0.10250806,-0.06539306,-0.8014731,-0.15884948,-0.32749137,-0.2251368,0.06363373,-0.26612863,0.24662638,0.13707279,0.42756507,-0.28024843,-0.82384866,0.15448704,0.22445332,-0.2151764,-0.39918336,0.51834416,0.00022738088,0.7692999,0.0982338,0.0878324,0.2282938,-0.6571537,0.45638016,-0.18750057,-0.11299346,-0.5023596,-0.082639284,92 +923,0.5233723,-0.3948306,-0.5854034,-0.04004245,-0.3123252,0.13910992,-0.25980327,0.38369256,0.39585295,-0.25581485,0.011433319,0.24397126,-0.18332376,0.28084648,-0.12530357,-0.79652005,-0.013630271,0.16811404,-0.49243337,0.38592947,-0.43686754,0.26338682,-0.096555166,0.5059095,0.120367505,0.199712,-0.08535706,0.44638136,-0.09226373,-0.0024877624,0.066993244,0.03970368,-0.6427731,0.46313703,-0.13796581,-0.4276396,-0.36237192,-0.3976289,-0.2513709,-0.72298086,0.50334144,-0.761492,0.7680687,0.00298988,-0.564162,-0.5920824,0.10070169,0.19625987,-0.0998712,0.052364107,0.3107715,-0.31792918,-0.16724335,-0.36603785,-0.31604984,-0.69478935,-0.61935747,-0.06004338,-0.4969721,-0.16326372,0.24554096,0.5181375,-0.31747678,-0.06343207,-0.2503645,0.8656807,-0.35503948,0.08970652,0.097890265,-0.37384892,-0.1779746,-0.86064047,-0.29775512,-0.021476854,-0.009220156,0.20713373,-0.41078702,0.11324406,0.3061546,0.56575644,0.18773359,-0.46614942,-0.3700943,0.048266318,-0.022248589,0.46348146,-0.24490725,-0.110894434,-0.36297113,-0.13678855,0.55067575,0.029703587,0.22005934,-0.5738142,0.38238695,-0.03506193,-0.015966497,0.62861294,0.5837403,-0.4269678,0.08870042,0.18354988,0.42192984,0.070486195,-0.42565706,0.28649566,0.048529927,-0.39909944,-0.08414695,0.18079571,0.020265432,0.55120873,-0.20586644,0.22286485,0.64207166,-0.03753021,-0.19011784,0.15836763,0.1440857,0.12226577,-0.58416885,-0.38185528,0.2668265,-0.2647136,-0.108693294,-0.21052037,0.6881133,0.049021646,-0.8073328,0.3761014,-0.5291322,-0.04306225,0.056853544,0.43610018,0.98306173,0.7053786,-0.035347067,1.0701797,-0.37831822,0.05941849,0.34694883,-0.005136983,0.023262555,-0.36871812,0.219423,-0.5431019,0.084359415,-0.21749887,-0.13435073,0.03386003,0.80396104,-0.5117703,-0.28046182,0.06478744,0.7649475,-0.28588998,-0.005915624,0.9433868,1.3298955,1.2440464,0.19167255,1.2575661,0.3776929,-0.23708391,-0.21980776,-0.1305685,-0.62091833,0.16178967,0.14811347,0.01974652,0.48301104,0.08249872,-0.05160451,0.8797939,-0.39993975,0.06621862,0.06719255,0.15302762,0.2545155,-0.11100676,-0.69731516,-0.08419654,0.30162436,0.06941903,0.068904825,0.3008535,-0.49484798,0.4870856,0.019990217,0.9471416,-0.25385895,-0.018598396,0.18427008,0.34322184,0.26726726,-0.34162256,0.20445913,-0.050102662,0.3325226,-0.11505919,-0.40542552,0.038840637,-0.38556382,-0.53996426,-0.3700323,-0.09696622,-0.22335912,-0.32829806,-0.51412266,-0.52442205,0.075534694,-0.34170565,0.16238421,-2.1734102,-0.35469222,-0.21651816,0.4389961,0.01028913,-0.34018424,-0.09582236,-0.4076807,0.33397216,0.31752023,0.38750598,-0.6886213,0.51233506,0.4980016,-0.5821935,0.042499736,-0.6914196,-0.10207157,-0.19333722,0.47893956,0.03127101,-0.32152212,-0.15028095,0.13265136,0.88862056,-0.1277412,-0.1295645,0.2350292,0.4092289,-0.43767336,0.34734964,0.08844401,0.74904287,-0.38571566,-0.3941718,0.38671568,-0.8318198,-0.06866495,0.12494256,0.12260914,0.61889154,-0.49691942,-0.9168186,-0.7228798,0.00715531,1.1225601,-0.13017534,-0.59800106,0.15015927,-0.44424188,-0.4161007,0.08533844,0.7497191,-0.2210173,0.07309697,-0.67689043,-0.18813133,-0.087253414,0.23337965,-0.11340863,0.012324902,-0.5020619,0.80626017,-0.243652,0.5681994,0.49550125,0.21195069,-0.30607548,-0.507641,0.038155977,0.98780245,0.567826,0.22312962,-0.31529608,0.20134874,0.09587765,-0.16918968,0.044763114,0.81769663,0.47601974,0.014183963,0.0215767,0.3882027,-0.33742645,0.14269231,-0.09180794,-0.4304415,-0.2784096,0.36333206,0.6375613,0.7587164,-0.046477295,0.37343833,-0.15272255,0.2560852,-0.34194902,-0.46684682,0.53625864,0.93383443,-0.19341736,-0.6474546,0.6568422,0.30170262,-0.57160634,0.2998173,-0.56823355,-0.17863144,0.31606323,-0.20601302,-0.45350018,0.028299587,-0.5523587,0.13378443,-0.9195986,0.38816947,-0.17859755,-0.8620323,-0.833532,-0.5391967,-3.1785598,0.30681822,-0.43549612,-0.02702058,-0.24797425,-0.300786,0.28867376,-0.71268517,-0.6892299,-0.024412746,0.18938832,0.42173588,-0.02600406,0.06501402,-0.23884177,-0.39210176,-0.10532065,0.50424045,0.077908464,0.21217665,0.025571574,-0.32943746,0.15344611,-0.22004943,-0.5906715,-0.10768762,-0.96247095,-0.5813685,0.02215137,-0.72737783,-0.36505988,0.8228459,-0.48405704,-0.14526936,-0.51304823,0.14261971,-0.2379803,0.39012,-0.015303899,0.37845942,0.26882294,-0.1080149,-0.019351082,-0.25719243,-0.0011212013,-0.115794376,0.37114343,0.46134168,-0.19728635,0.22162522,0.5632758,0.9418633,0.21325792,0.952627,0.45475578,-0.14170533,0.3521282,-0.23012143,-0.3269797,-0.7954202,-0.23303626,0.16721806,-0.61534125,-0.4206703,0.12802766,-0.48263156,-0.7859218,0.42106506,0.0504395,0.09901385,0.18782654,0.4193186,0.4470461,0.021494204,-0.072776124,-0.084785685,-0.2438182,-0.291519,-0.5398144,-0.6449783,-0.76176435,-0.01848392,1.5840443,0.10746002,0.07471743,0.34768346,-0.4572891,0.012032514,0.5187444,0.2756586,-0.2212519,0.5098639,-0.028427027,-0.5893949,-0.060951483,-0.29722482,0.02094867,-0.42035455,0.03769441,0.93097043,-0.8160532,0.9183092,0.43903396,0.300168,-0.4108615,-0.71309155,-0.26132318,0.40177834,-0.1034807,0.7060183,0.53357816,-0.33424988,0.47081754,0.14112908,-0.057833754,-0.6518663,0.27658892,-0.12026019,-0.19011974,-0.25642163,0.5641388,-0.14128841,-0.3861268,0.10517479,0.49638376,-0.34888786,0.3292882,-0.062311016,-0.15983368,0.021127403,-0.115015216,-0.2530678,-0.73691463,0.082288496,-0.66147906,-0.44531587,0.05377078,-0.078249216,0.45975313,0.21758085,0.26807997,0.54908174,-0.19874239,0.21720429,-0.31373033,-0.4192376,0.3328586,0.5002878,0.30952635,-0.3715252,0.43820718,0.20543844,0.19134878,-0.16649291,0.18132561,0.55710053,0.253986,0.6380571,-0.26928023,-0.0560079,0.0731825,0.78799766,0.1666996,0.6093535,0.10054696,-0.2543753,0.0862987,0.103860505,0.20180587,-0.3906973,-0.3767208,0.05236644,-0.0685827,0.29126275,0.38529718,0.12339485,0.5348395,-0.31907848,-0.23214732,0.33204368,0.2812116,-0.14344889,-1.4154304,0.3366325,0.3523862,0.8318603,0.38587448,0.27722606,-0.1918344,0.50982195,-0.11983624,-0.020604594,0.67927754,0.004998112,-0.10870562,0.6230058,-0.6780467,0.59131336,-0.35932282,-0.0019358884,-0.03662938,0.18655863,0.27966043,0.63080215,-0.09896827,-0.12853071,-0.028791327,-0.31377515,-0.26720056,-0.569319,0.38216627,-0.53173757,-0.455414,0.9683232,0.51798254,0.3592066,-0.45447206,-0.034051552,0.17270082,-0.11913243,0.19663931,-0.04615258,-0.24124731,-0.09210339,-0.71743464,-0.2163685,0.510371,-0.16921212,-0.063801594,0.04156902,-0.2917639,0.22706838,-0.025619118,-0.17464353,0.09899671,-0.5512965,0.0556247,-0.37168667,-0.7177061,0.31892884,-0.16268644,-0.070362896,0.29426265,0.13994375,-0.38979533,0.26663366,0.16440453,0.83989733,0.13933292,-0.008988738,-0.15796901,0.061412524,0.10449522,-0.29758483,0.102362566,-0.3235815,0.61900187,-0.4547105,0.48720923,-0.27033582,-0.33996066,0.15895368,-0.06356381,0.059198186,0.42232946,-0.49292418,-0.23450522,0.10889301,0.09035086,-0.20670773,-0.31027314,-0.48580682,0.32993433,0.014411991,-0.008567861,-0.024939727,-0.29183415,-0.24143906,0.406645,0.21151467,0.31827462,0.7847305,0.06230873,-0.45494863,-0.016029608,-0.032788575,0.5788222,0.13573454,-0.1452973,-0.39501008,-0.5738076,-0.32415754,0.46845543,-0.09757198,0.2575104,0.053159032,-0.5753214,0.9581677,0.11782002,1.4733748,0.024812855,-0.5576203,-0.015045036,0.51602656,-0.15423451,0.25752237,-0.3727617,1.1235769,0.70385593,-0.1339656,-0.12697653,-0.5713798,-0.10812119,0.27062696,-0.34711924,-0.19570847,-0.18426767,-0.995616,0.017905176,0.1514149,0.23774476,-0.008113542,0.036553655,0.23890181,0.27700898,0.094296195,0.22310781,-0.6659839,0.2867191,0.29712963,0.53152144,-0.14930482,0.25846952,-0.49689934,0.12478396,-0.86500686,0.40750024,-0.6930774,0.060310606,0.036125608,-0.2614048,0.30245402,0.072541565,0.21949902,-0.40809715,-0.1491242,-0.22066651,0.74049515,-0.064175814,0.2316524,0.74907374,-0.26951304,0.024850857,0.21956526,0.5635222,1.5184323,-0.0852589,0.006516543,-0.075782366,-0.29623273,-0.78892416,0.16083223,-0.2994289,-0.023285292,-0.05137007,-0.2531285,-0.62820566,0.2648679,0.08999673,0.036864854,0.031016149,-0.36702347,-0.21289878,0.46865273,-0.57965964,-0.13141736,-0.18430644,0.08453714,0.57202303,-0.16803488,-0.32514745,-0.14283164,0.6570515,-0.34172833,-0.4704961,0.27306202,-0.55515695,0.55511457,0.043233942,-0.49679196,-0.17001435,0.1163985,-0.6236093,0.049106862,0.6055147,-0.3498433,0.029149087,-0.19473056,-0.11024526,0.96520406,0.22456044,0.45185593,-0.7781252,-0.6326862,-0.9906702,-0.08999042,-0.22524938,0.38758472,-0.08519902,-0.89985806,-0.25489438,-0.3437727,-0.16429904,0.1769556,-0.79062915,0.5098725,0.17068835,0.7417535,-0.17325516,-0.90013367,-0.061549496,0.40607575,-0.15643027,-0.29523683,0.41799104,0.05003746,1.0451999,0.105131194,0.14435326,-0.11051772,-0.7761168,0.63020444,-0.23095088,-0.31148374,-0.8766235,-0.108923584,135 +924,0.4229245,-0.33900726,-0.67501605,-0.2750705,-0.18961425,-0.09248219,-0.21503587,0.46021196,0.20505045,-0.6631212,-0.02758957,-0.32037318,-0.034669053,0.49122688,-0.12125749,-0.66042525,-0.025119878,0.18649612,-0.5861128,0.7585775,-0.45908108,0.24873066,0.3132606,0.25421575,-0.108100064,0.11576781,0.0960465,-0.116196156,0.23703896,-0.017156558,-0.06602627,-0.001439547,-0.5285574,0.102466896,0.1506523,-0.49804497,-0.020391317,-0.34179926,-0.25059164,-0.8197491,0.15058585,-0.8795147,0.6588596,-0.05139028,-0.4692085,-0.09497207,0.14594392,0.52736896,-0.27128544,0.116954714,0.14962767,-0.25783992,-0.4984555,-0.09900982,-0.32754958,-0.6253851,-0.809697,-0.2993411,-0.50521696,-0.034129903,-0.2979705,0.08634434,-0.42013073,0.074801534,-0.23721695,0.44371673,-0.5497272,-0.04275712,0.17700964,0.07535928,0.5741072,-0.79022425,-0.00068869715,-0.26700315,0.14434063,-0.0063828123,-0.37153742,0.23930931,0.36193955,0.7484951,0.07524988,-0.15444589,-0.25028992,-0.12818168,0.025801767,0.3839504,-0.09811501,-0.31648755,-0.20334913,-0.12762304,0.48940238,0.34406665,0.031597313,-0.47406188,-0.0074116886,-0.019412108,-0.3652154,0.26734924,0.5254888,-0.31791034,-0.12126379,0.25016937,0.59765935,0.114040375,-0.23106383,0.1700316,-0.035250243,-0.5812941,-0.21048619,0.22503094,-0.17794369,0.692041,-0.10950592,0.12572123,0.44869283,-0.055571783,-0.18088831,-0.20948035,0.0040762345,-0.15344511,-0.07603559,-0.5308989,0.42682543,-0.59837246,0.13100304,-0.49199197,0.7998673,0.08369989,-0.87596184,0.30290824,-0.57086813,0.15814422,-0.27888137,0.78415966,0.824601,0.704735,0.14478363,0.68941367,-0.4427884,0.123886675,-0.12689146,-0.290138,0.27293184,-0.16019934,0.3502448,-0.49940732,-0.23427248,-0.03219966,-0.33398396,0.011404777,0.8271202,-0.6031876,-0.1453198,0.08492572,0.5380011,-0.41177952,0.07174936,0.62204236,1.1539009,0.99954486,0.282987,1.3088535,0.5274621,-0.38626748,0.21945424,-0.06323603,-1.0015427,0.21431008,0.36077407,-0.16392007,0.3312088,0.11065929,-0.04893714,0.61825037,-0.6189132,-0.043895215,0.01868273,0.24030055,-0.2741377,-0.17483388,-0.560885,-0.26027903,-0.11035884,0.17037362,-0.07657986,0.43169966,0.0037468076,0.51222533,0.31776702,1.3876259,-0.1841202,-0.05079701,0.079898186,0.2935078,0.05582739,-0.2951928,-0.07804596,0.09447327,0.69521695,-0.02033064,-0.8574263,0.16932918,0.00203901,-0.3883527,-0.29032686,-0.3094114,0.10118062,-0.34639728,-0.3567191,-0.25676093,-0.041961767,-0.61714673,0.3619438,-2.128794,-0.19869636,-0.15132815,0.44790432,-0.18629013,-0.23440348,-0.05605184,-0.49627483,0.5116038,0.4273992,0.45496777,-0.6624757,0.5182199,0.66710526,-0.53675723,0.122397445,-0.94645464,-0.4042557,-0.070906155,0.23169738,-0.049787845,-0.32888523,0.28130764,0.24013701,0.40061834,0.017109936,0.16829218,0.37341717,0.44909078,0.00951627,0.6685612,-0.12547944,0.6179482,-0.38842687,-0.09092291,0.17962141,-0.06574119,-0.10652029,-0.34166613,0.20129348,0.49866918,-0.7092054,-0.8351007,-0.34600604,-0.3145582,1.0622833,-0.47831288,-0.47508323,0.39014375,-0.24485861,-0.20231777,-0.13321614,0.60067666,-0.09811917,-0.17580439,-0.8986234,0.056771126,-0.03754561,0.32852936,0.06167033,-0.0076464335,-0.6558462,0.4799511,-0.16215748,0.7147065,0.7366182,0.21703881,-0.08083312,-0.67962694,0.07645312,0.92369485,0.38673097,0.13738824,-0.3385763,-0.025772762,-0.24744608,0.10492038,0.13785104,0.27944586,1.0523502,-0.21610104,0.089255616,0.23149137,-0.4113616,0.0508374,-0.13430232,-0.61743003,-0.106432274,0.14694592,0.5827055,0.4860965,0.0062835068,0.5220147,-0.0987001,0.17845382,-0.15625082,-0.5702221,0.5487764,1.0032296,-0.26985043,-0.117077015,0.8320194,0.543733,-0.28488973,0.65413916,-0.62325287,-0.2124125,0.5558704,-0.0065068128,-0.42876807,0.3588698,-0.40434244,0.22849241,-1.3099297,0.20532876,-0.38672245,-0.7310388,-0.7525131,0.18519054,-2.8418047,0.3642501,-0.3114615,-0.19522533,-0.031542588,-0.20851618,0.47233045,-0.69540185,-0.72443825,0.34085453,0.22833766,0.5873079,0.08730702,-0.2118867,-0.38869902,-0.23366413,-0.18225275,0.21645862,0.25463966,0.15554295,0.0028955883,-0.64871264,0.086164266,-0.05972315,-0.29133657,-0.0502247,-0.64941144,-0.34715068,-0.29283407,-0.6369045,-0.46622828,0.86725885,-0.35494015,0.009524584,-0.2691271,-0.021875888,-0.017042678,0.46868974,-0.20771174,0.10647816,0.013478225,0.01367023,-0.03984603,-0.20012955,-0.19599663,0.20242411,0.10126689,0.25185448,-0.2612575,0.061838564,0.89021343,0.7765679,0.15114976,1.070968,0.8406427,-0.103613116,0.28244394,-0.26917624,0.010018148,-0.694304,-0.3288167,-0.33883238,-0.53235537,-0.58445466,-0.01488756,-0.25634897,-0.8230696,0.8098642,0.03921838,0.28632805,0.3133937,0.32276392,0.40056542,0.16145462,0.053255584,-0.35756725,-0.29166645,-0.5474319,-0.18081237,-0.8835363,-0.56081146,0.24113876,1.555497,-0.2185799,0.0066283885,0.09302483,-0.42321613,0.2723563,0.32691643,0.10188799,0.3651553,0.370726,0.16725592,-0.70466703,0.39560908,0.015215798,-0.070154935,-1.0385374,0.19038516,0.8426908,-0.8866789,0.16989523,0.29310653,-0.050010398,-0.3369095,-0.64272326,-0.23889925,0.16597113,-0.28541774,0.29786846,0.23412134,-0.7056185,0.5193732,0.24182779,0.0104880845,-0.9165882,0.6727652,-0.05182838,-0.33582625,0.30631292,0.30253875,-0.020799326,0.13774556,-0.5313528,0.2842991,-0.40691134,0.30959472,0.3731395,-0.16231944,0.26324904,-0.14515379,0.21991014,-0.9650891,0.03616083,-0.70965236,-0.06750761,0.4852656,0.10937424,0.30708927,0.26645595,0.21071194,0.33313015,-0.41603917,0.066538475,-0.22733675,-0.665009,0.602034,0.5524794,-0.033263005,-0.3019326,0.7637096,-0.12929754,-0.090301596,-0.38771343,0.048990604,0.42074582,0.18945466,0.34344435,-0.13129878,-0.46218264,0.18237086,0.9700189,0.3536621,0.32149398,0.19700502,0.1560337,0.4586903,0.27815565,0.041650962,-0.024918836,-0.36234948,0.03611332,-0.067560226,0.19402274,0.5237181,0.16006474,0.56582457,-0.26818094,-0.18706504,0.0035153737,0.060090028,-0.024577769,-1.1909022,0.6970129,0.15771121,0.37050602,0.9325376,0.12259648,-0.04710631,0.44691676,-0.50207037,0.08222672,0.41008055,0.2667266,-0.23143263,0.70598793,-0.8149095,0.35372815,-0.11212135,0.070964,0.06067762,0.15804686,0.5512939,1.1229583,-0.18415004,0.09282147,-0.094334796,-0.1819038,0.29427463,-0.39044,-0.29579723,-0.43226948,-0.5272464,0.69560486,0.07632855,0.5947829,-0.15238793,-0.12626354,0.2056181,-0.16972272,0.54383755,0.053904857,-0.041379824,-0.105011374,-0.56238693,-0.16132864,0.5877771,-0.14556505,0.025523055,0.12435425,-0.35723406,0.2504057,0.019469483,-0.19914562,0.05513337,-0.6947157,-0.1166034,-0.5926471,-0.4020879,0.70832545,-0.34522903,0.33478045,0.1650024,0.08790261,-0.20162684,0.1611319,0.15929909,0.7248272,0.09277826,-0.2696739,0.038020875,-0.23114003,0.2545661,-0.352283,-0.05562972,-0.074165724,0.05230039,-0.6995508,0.38384283,-0.1556564,-0.34579825,0.35579747,-0.23353286,-0.04515535,0.3685526,-0.3284095,-0.0042397217,0.22337785,-0.16616707,-0.028317945,-0.66379714,-0.23571625,0.14561242,-0.43326628,0.34409198,-0.1437898,0.019982368,0.03856791,0.60838914,0.21658182,0.16105895,0.5018064,0.30863363,-0.30971825,-0.07720936,0.041683093,0.48902476,-0.20213844,-0.28601244,-0.5367193,-0.4919307,-0.3304579,-0.17292944,-0.07443908,0.45912582,-0.17142032,-0.50776917,1.0458783,0.101685636,1.0316621,-0.17281355,-0.59807223,0.0062827873,0.44028103,0.01430408,-0.095151186,-0.21999793,0.85872537,0.69570905,0.071867846,-0.32718122,-0.5251494,-0.2452765,0.40220147,-0.24192776,-0.36907613,-0.043452162,-0.79718167,-0.31382638,0.3116239,0.22350918,0.04419547,-0.13319188,0.4593515,0.28920302,0.10669717,0.36805785,-0.6350504,0.15945436,0.23630069,0.084186554,0.16738331,0.19896737,-0.28781036,0.12223124,-0.66524047,0.15286131,-0.3522286,-0.044100057,0.2064328,-0.2508198,0.24020915,0.09539965,0.29624537,-0.112024374,-0.20188767,-0.06861765,0.80371934,0.0054140333,0.2987579,1.012911,-0.28842655,0.038410608,0.05895044,0.6767754,1.5282971,-0.21585733,0.005125815,0.22468868,-0.5478556,-0.5244749,0.32138908,-0.23132715,0.21014981,-0.015983336,-0.3936784,-0.6062487,0.045026835,0.15948011,-0.40967092,0.08727629,-0.3263334,-0.52248645,0.25284764,-0.52942455,-0.19644456,-0.44419166,0.15257551,0.64721245,-0.47697422,-0.15310708,0.01397523,0.35286844,-0.24075331,-0.53058565,-5.888939e-05,-0.3685311,0.2423247,0.29926676,-0.5164912,0.14684677,0.10507567,-0.59190977,-0.086331345,0.17667541,-0.4209491,-0.046729077,-0.50337845,-0.06949783,1.0801822,-0.060223937,-0.071334645,-0.5319769,-0.6781177,-0.68862087,-0.4584732,0.62039566,0.1264337,0.025612561,-0.6980645,0.1898758,-0.10340361,0.09928811,-0.037808593,-0.36500585,0.48374176,0.20886189,0.4435404,-0.12981261,-0.96209335,0.2578571,0.048319396,-0.024793733,-0.40587595,0.7253868,-0.06563046,1.0060216,0.21695946,0.11960424,0.13491227,-0.73167634,0.29810998,-0.20492953,-0.37759352,-0.7966803,-0.12080395,167 +925,0.13979922,0.124566704,-0.6746863,-0.038436357,-0.1389832,-0.067483395,-0.3517182,0.39526775,0.43423566,-0.2961157,0.21992573,-0.37414798,-0.07557663,0.4164994,-0.1436088,-0.72618955,0.18043691,0.16922933,-0.5767311,0.6573964,-0.3807406,0.26891664,0.03802906,0.21965565,-0.21582942,0.45435178,0.19229867,-0.3415612,-0.19698901,-0.03618264,0.10451984,0.08418039,-0.40032768,0.21324782,0.02693119,-0.0004800775,0.3448001,-0.43133813,-0.5149732,-0.6285296,0.3636286,-0.6443157,0.5649811,0.13171794,-0.21154124,0.2213831,0.20991017,0.27326962,-0.25621942,-0.05899304,0.24273919,-0.1431823,-0.25316313,-0.32427037,-0.39921272,-0.46242082,-0.47506922,-0.025559943,-0.63516635,-0.17038625,-0.4833849,0.14019698,-0.23577198,-0.037360772,0.05326337,0.19096288,-0.44625556,-0.038550947,-0.059012305,-0.2380114,0.21601027,-0.7336332,-0.020094378,-0.066057295,0.28052083,0.10707374,-0.09160328,0.4714925,0.25154606,0.3838382,-0.055078615,-0.031819463,-0.24206248,-0.34428564,-0.013880599,0.5487883,-0.2285976,-0.42519587,0.009493535,0.06749071,0.19107665,0.21967974,0.08355181,-0.3602478,-0.01242139,-0.22943644,-0.36862773,0.34644738,0.61658907,-0.24615811,-0.017031197,0.45669413,0.3947024,0.2596805,-0.07510018,0.15417315,-0.21280414,-0.48359105,-0.09382839,0.109550126,-0.059448633,0.7065081,0.092996664,0.21661654,0.5907519,-0.07419989,-0.14657964,-0.17284547,-0.0044090343,0.15689051,-0.16262358,-0.08008495,0.15448727,-0.6062408,-0.13631843,-0.23772377,0.70960134,0.022220036,-0.9727374,0.4995576,-0.32285005,0.077555366,0.034920394,0.6667721,0.6940258,0.5824836,0.265597,0.7400623,-0.4303337,0.2670665,0.031544495,-0.45663443,0.31535912,-0.04419295,0.17649116,-0.58049375,0.017609261,0.42204162,-0.23603825,0.21010776,0.47132027,-0.4852603,0.054006096,0.21148805,0.9497881,-0.3147787,-0.10130748,0.55511034,1.2096652,0.74978375,0.15846902,1.0729257,0.25197613,-0.25753024,0.24572511,-0.13358639,-0.9076479,0.17455457,0.23780899,-0.067497045,0.14313568,0.19287796,-0.20399927,0.15546674,-0.35983887,-0.12674548,-0.10515296,0.45261106,0.020446854,-0.17192024,-0.28198144,-0.26912987,-0.112433024,-0.059496284,0.2254558,0.3183223,0.045406453,0.47705147,0.0011120777,1.4514446,0.18899693,0.12625332,-0.034290448,0.6484303,0.21677364,0.15767342,-0.3645011,0.4797699,0.20497686,0.13720775,-0.50440717,0.07821285,-0.17642118,-0.36612603,0.05058377,-0.24838986,0.018522425,-0.024012523,-0.07878444,-0.21265212,0.010710743,-0.40285084,0.5524297,-2.9838989,0.0031758195,-0.048081007,0.29254943,-0.0070545403,-0.03018403,-0.09612599,-0.3466213,0.5358145,0.5808319,0.489018,-0.39422694,-0.020044386,0.43024242,-0.42531404,-0.16852583,-0.57897437,0.104819514,-0.029726606,0.3822567,-0.058330845,-0.26871425,-0.035935264,0.08155367,0.2609408,0.005011217,0.085106604,0.3082319,0.45688802,0.105002016,0.35016918,-0.1604066,0.48606387,-0.07581296,-0.12693813,0.03233156,-0.37499574,0.36693478,-0.21414037,0.2717645,0.42931235,-0.48201352,-0.72500634,-0.22361349,-0.032253325,0.9609711,-0.2979337,-0.36050832,0.41824293,-0.09354575,-0.14013973,0.003920279,0.62852293,-0.21573791,-0.005695717,-0.6396172,-0.0035689853,-0.00065719,0.32794815,0.097106814,0.019415699,-0.48063934,0.49686405,-0.007495902,0.59550786,0.41578093,-0.011638183,-0.33254805,-0.5758496,0.052271258,0.8139053,0.25990394,0.05001448,-0.112502225,-0.19859195,-0.39167917,-0.3069624,0.051769007,0.52173203,0.7448626,0.029261319,0.03666754,0.243393,-0.27464917,0.018210076,-0.022384597,-0.49706027,-0.16257359,0.06180879,0.64506173,0.6202274,-0.19431624,0.5186443,-0.0052878126,0.32848632,-0.028651325,-0.46044084,0.5413238,0.42994994,-0.20343615,-0.18481363,0.3753134,0.3703163,-0.28824455,0.6420093,-0.39381933,-0.26271197,0.5524962,-0.031796087,-0.6399174,0.42805716,-0.27028608,0.05546119,-1.0562454,0.2608547,-0.21889214,-0.6667456,-0.6220442,0.13326466,-3.59289,0.09661589,-0.22758912,-0.36430386,-0.019492984,0.1716602,0.06801105,-0.38288078,-0.41533157,0.1438328,0.28808495,0.44273683,-0.12442824,-0.10395542,-0.1383695,-0.18833695,-0.23275313,0.11915519,0.04326503,0.10701446,-0.0042708246,-0.39457658,-0.085495,-0.26528475,-0.31609964,0.023462761,-0.53024906,-0.11366957,-0.32518312,-0.7806372,-0.39426422,0.71571296,-0.58372426,0.012944829,-0.26860464,0.110013254,0.041797124,0.28839436,0.06993368,0.064495936,-0.13858503,-0.12390549,-0.04382237,-0.3653986,0.24674056,-0.06042236,0.44142914,0.54292315,0.07896861,-0.025166653,0.66627914,0.5684424,0.006345562,0.70803815,0.37750643,-0.101723954,0.2516849,-0.52026594,-0.038467098,-0.47836077,-0.46584472,-0.08152047,-0.32280418,-0.50684875,-0.13990775,-0.4569145,-0.6274801,0.56717724,0.10029174,-0.15707573,0.21657768,0.39065725,0.27787963,-0.092010625,0.12892751,-0.25150564,-0.11910773,-0.5969068,-0.07160404,-0.8239212,-0.5672105,0.39815226,0.89140373,-0.19174455,-0.09547483,0.082837544,-0.26876116,-0.008714866,0.048839007,0.033042222,0.39100683,0.13258614,-0.057163812,-0.83579534,0.6084543,-0.2541142,-0.094236515,-0.6605742,0.043772552,0.564893,-0.97269803,0.2899416,0.45062038,0.045984074,-0.071349256,-0.5279054,-0.4261746,-0.037769366,-0.15178968,0.24392273,0.08865661,-0.8766758,0.49922934,0.24745774,-0.38823137,-0.7743232,0.17036293,-0.16122827,-0.38133124,0.32397997,0.27574968,-0.00062771275,0.06626082,-0.6759824,-0.112281516,-0.49828383,0.26476747,0.02062477,-0.05344367,0.61578065,-0.08966954,-0.25985593,-0.88652706,-0.023315864,-0.39812672,-0.16461594,0.47833225,0.2132204,0.1959346,-0.06291357,0.22113891,0.35936084,-0.45787954,0.102941535,-0.11934779,-0.27147815,0.3591727,0.40614575,0.29066217,-0.46625596,0.6672191,-0.1879024,-0.044476524,-0.14749841,-0.012323639,0.45796338,0.053765524,0.23590842,0.18414493,-0.22329813,0.10594651,0.85798454,0.2351539,0.27248225,0.11956942,-0.034445725,0.56799257,0.08650263,0.09352649,0.3586705,-0.44747093,-0.15508175,-0.30984446,0.16354725,0.46014836,0.15240651,0.5750003,-0.16384144,-0.25083196,-0.017449232,0.37790462,0.3048559,-0.68673044,0.58202976,0.26332933,0.39556235,0.73649406,0.19769365,0.06847689,0.7894478,-0.15239908,0.23974538,0.21369423,-0.04019283,-0.6025037,0.4841945,-0.7452148,0.47442463,-0.09577372,-0.050333753,0.41355693,0.047366675,0.5861611,0.9880684,-0.106090635,1.50203705e-05,-0.012881285,-0.13755326,-0.046945825,-0.3314647,-0.1278675,-0.26853332,-0.4305421,0.51617754,0.2965208,0.1875877,0.013230595,-0.053505287,0.2410664,-0.059476983,0.40185606,-0.14213863,-0.00045487014,-0.09239089,-0.5723294,-0.2511155,0.6383166,0.03432196,0.1270457,0.13485347,0.15403853,0.44143668,-0.3127159,-0.24661422,-0.14071572,-0.3618415,0.3589306,-0.00012655692,-0.519895,0.7035621,-0.17759508,0.42860442,0.110951565,0.2440237,-0.16938566,0.44081813,0.3326101,0.6979628,-0.0958056,-0.45946008,-0.17002553,-0.11586111,0.15929466,-0.24616447,-0.08970188,-0.22172837,-0.06736416,-0.6734227,0.50185865,-0.37180033,-0.23903099,-0.16604601,-0.23239793,0.032054387,0.3411949,-0.12951855,-0.1009249,0.020302068,-0.16164589,-0.18354797,-0.2374294,-0.36946353,0.10446692,0.098974325,-0.032486796,-0.10588603,-0.07806527,-0.006887257,0.37945616,-0.13872266,0.18072097,0.061674688,0.3397298,-0.25058585,-0.13755625,0.14834565,0.49409503,0.11522278,0.013463692,-0.24302115,-0.26323286,-0.36792785,-0.23250169,-0.077651806,0.3178197,0.22298533,-0.53776145,0.8495646,0.0066228537,1.1018405,0.0018898601,-0.3377765,0.22050811,0.6255757,-0.005014734,0.02258802,-0.37585518,1.1692005,0.7144688,-0.22454804,-0.1259777,-0.4171158,-0.15370737,0.23769115,-0.29307842,-0.25823808,0.04591247,-0.58594805,-0.37218523,0.30333826,0.29420823,0.1181542,-0.117153615,0.19367494,-0.16583078,0.07696047,0.055787638,-0.46973908,0.02303998,0.38861647,0.12628299,0.14350921,0.14270988,-0.21885724,0.3648772,-0.5390472,0.115140565,-0.42273453,0.047744576,-0.0144866,-0.28585723,0.14658263,-0.027631732,0.5038774,-0.21628866,-0.31375834,-0.078953944,0.4150541,0.34577486,0.3367717,0.72809565,-0.21295047,-0.17805225,-0.08020993,0.6268089,1.0753849,-0.3174134,-0.07520412,0.3612027,-0.23277284,-0.6766059,0.16316152,-0.41189128,-0.01947326,-0.36838838,-0.24190168,-0.44138223,0.0033715693,0.13455044,-0.21501318,-0.19393574,-0.45419037,-0.12117722,0.09793091,-0.3237731,-0.31965664,-0.41717854,0.119739324,0.9267734,-0.3150129,-0.3700663,0.10504253,0.06395581,-0.25558627,-0.7243555,0.0095593445,-0.06155107,0.37308013,0.45171544,-0.44555804,0.03919584,0.38231122,-0.5348714,0.20187396,-0.0009845658,-0.39132768,0.059863392,-0.36083087,0.01923156,0.8105845,-0.15163423,0.13166319,-0.5577816,-0.6241305,-0.87170357,-0.3831724,0.3848112,-0.10370653,-0.06890113,-0.5906548,-0.09027617,-0.18302217,-0.07187972,0.015476167,-0.54052204,0.4296919,-0.079584144,0.5303927,-0.42624605,-1.1842132,0.09674559,0.1489193,-0.09100353,-0.64136285,0.46595994,-0.13128132,0.89164144,0.21988964,-0.059166428,0.56667244,-0.60095716,0.23919836,-0.43023527,-0.3153223,-0.45108145,0.21612872,171 +926,0.38648814,-0.47794646,-0.4301028,-0.22897682,-0.08732462,-0.072175615,0.011699328,0.82679725,0.22606984,-0.45549777,-0.24548383,-0.17564131,0.1336146,0.5350126,-0.16400361,-0.45648143,-0.105953574,0.29263514,-0.44550857,0.49942666,-0.41571036,0.003631635,-0.017043026,0.425837,0.2899213,0.16656703,0.23149873,0.0025774078,-0.06564326,-0.020790135,-0.24122621,0.21973683,-0.17024425,0.2511921,-0.028566653,-0.3420923,-0.013419761,-0.696862,-0.2644649,-0.8075228,0.4126477,-0.90771824,0.5049741,-0.015041059,-0.32417694,0.2985281,0.28587356,0.3416053,-0.31408307,-0.1664796,0.10534751,0.056603257,-0.1083133,-0.07044775,-0.16798206,-0.2985052,-0.6391466,-0.0859339,-0.13843222,-0.29200056,-0.26360682,0.1418551,-0.35393512,0.062076222,-0.0017351833,0.75801885,-0.3742036,-0.08758329,0.17709488,-0.23042928,0.2839733,-0.5902565,-0.119038254,-0.09535146,0.26582265,0.020263577,-0.27420276,0.19832917,0.3620909,0.36411887,-0.015766121,-0.17688006,-0.37785834,-0.079970434,-0.0706656,0.48899472,-0.17310871,-0.72667974,-0.18335861,-0.022723041,0.099636085,0.28334147,0.19788495,-0.20736875,0.03410016,0.12891102,-0.28651282,0.42036387,0.35866582,-0.37789953,-0.28377977,0.35511413,0.61099803,0.105849005,-0.07965367,-0.16658813,-0.023302251,-0.57766074,-0.1442617,0.009874896,-0.40837747,0.51421404,-0.20794812,0.37474182,0.5946305,-0.10071747,-0.13866316,0.018188309,0.13833077,-0.23545514,-0.453765,-0.44824123,0.34586582,-0.37539312,0.16835906,-0.033004913,0.6954648,0.16127141,-0.5178895,0.47129232,-0.5663446,0.16017853,-0.24999975,0.3530703,0.61352026,0.38513085,0.4264719,0.61401767,-0.35119975,-0.050239448,-0.04966966,-0.30490074,-0.16269115,-0.22046779,0.2492817,-0.60774285,0.20994519,0.0014489226,-0.10088008,0.13706201,0.33081836,-0.6191813,-0.17364107,0.24682221,0.7751216,-0.27804527,-0.19743334,0.88676965,0.9600922,1.1560607,0.06355346,1.0724416,0.2750897,-0.2614914,0.3128436,-0.27048293,-0.7045474,0.39823225,0.5552044,-0.1652696,0.12463599,0.030518442,0.049932145,0.60401696,-0.41356736,0.012836709,-0.14595847,0.11641414,0.20008983,-0.12571722,-0.67657304,-0.2639813,-0.10689266,0.04366492,0.12907173,0.21755533,-0.1357755,0.4104171,-0.05309731,1.6672158,-0.0343256,0.14481498,0.0955757,0.45624483,0.11800515,-0.109110005,-0.021030473,0.30054152,0.2804987,0.07598143,-0.5528073,0.22214542,-0.2837064,-0.36115193,-0.0836521,-0.32651404,0.00363215,-0.014777232,-0.36256817,-0.22388326,-0.22506122,-0.34347108,0.3868637,-2.8061078,-0.35872346,-0.23333463,0.294803,-0.2398656,-0.3860074,-0.019962223,-0.57886636,0.41255778,0.31367347,0.63147986,-0.62338746,0.3522338,0.29524133,-0.7013129,-0.11133935,-0.67484605,-0.12757283,-0.043249175,0.32232893,0.04316244,-0.037240256,0.03376685,0.15522914,0.52107644,0.12039568,0.16439304,0.35636255,0.3732237,-0.058004234,0.6415004,-0.18888734,0.55846786,-0.41758996,-0.24144012,0.17491859,-0.30304268,0.10611519,-0.1961987,0.11667256,0.5395553,-0.5147736,-0.9660746,-0.642073,-0.1278071,1.2796607,-0.2281344,-0.31530172,0.35421476,-0.48402917,-0.27599755,-0.20882273,0.43206042,-0.15656473,-0.08814626,-0.75716746,0.16478826,-0.030704623,0.01755293,-0.03706939,-0.15930837,-0.47092608,0.7033856,-0.13942929,0.54768974,0.29103482,0.12344053,-0.41291082,-0.29024336,-0.07340577,0.7517977,0.4051816,0.028118832,0.041836318,-0.10348816,-0.40208519,-0.13475123,0.05452266,0.48800424,0.6970162,-0.03376896,0.039532814,0.31186298,-0.020656187,0.11953092,-0.14138038,-0.28946185,-0.11034057,0.06701848,0.5579833,0.5186136,-0.26806608,0.5946982,-0.10368195,0.32479098,-0.09170079,-0.44887865,0.3811898,0.98871344,-0.2355894,-0.3872343,0.70122266,0.39534804,-0.3014254,0.3913867,-0.4832427,-0.17749485,0.45586732,-0.230313,-0.49934128,0.014111492,-0.20406985,0.14980358,-0.8399438,0.23233809,-0.26230004,-0.5136802,-0.4904622,-0.07612188,-3.6411965,0.29838163,-0.30697262,-0.15989512,0.009280183,-0.22464271,-0.003999908,-0.71701545,-0.71133935,0.27484262,0.06994589,0.7180769,-0.1287779,-0.0065366165,-0.17450081,-0.2568513,-0.1417666,0.06793043,-0.099542506,0.40796435,0.0895148,-0.5447204,0.059749473,0.081868194,-0.61684674,0.10657313,-0.8055517,-0.3953479,-0.109363936,-0.7249378,-0.44178838,0.6456439,-0.17925407,0.112293795,-0.17401594,0.123072356,-0.08453545,0.31330097,-0.15137886,0.14773689,0.060744416,-0.047039095,0.21940193,-0.14047603,0.22788233,0.0068306597,0.28127462,0.113863185,-0.11511138,0.3734935,0.67004484,0.82006836,0.051543485,0.85450417,0.58186984,-0.117752284,0.12689087,-0.21681276,-0.19284798,-0.37151182,-0.32454762,0.11625449,-0.43284446,-0.51127535,-0.09453039,-0.2982295,-0.6980384,0.6847732,0.17135082,0.38404778,0.0589022,0.14446686,0.6731231,-0.26623887,0.0604653,0.075327225,-0.18230034,-0.65201545,-0.13184398,-0.60899836,-0.44118282,0.22463487,0.9078058,-0.3113501,0.19229755,-0.0656834,-0.3445678,0.025158552,0.22357579,-0.017857598,0.28518653,0.3464537,-0.3742467,-0.671278,0.32061604,-0.13502182,-0.15569897,-0.43541232,0.31285077,0.5753605,-0.516089,0.6435308,0.2695947,-0.079352774,-0.54906696,-0.40105665,-0.259188,0.023487367,-0.1523048,0.44996214,0.23847857,-0.842433,0.39162856,0.467348,-0.2604238,-0.8142653,0.5024649,-0.14568323,-0.264904,-0.20222425,0.39758292,0.3287762,0.027902288,-0.27118248,0.17759962,-0.3698199,0.2415267,0.107329845,0.0019567609,0.41253427,-0.25200298,0.11090413,-0.8329124,-0.07992964,-0.68344074,-0.16218413,0.34861532,0.09808937,0.12394354,0.17520937,-0.11120088,0.31689948,-0.28839406,0.052932885,-0.022373639,-0.36209556,0.28903544,0.41125298,0.35331622,-0.41139212,0.59878176,0.05571337,-0.014616597,-0.14600791,-0.10476789,0.342911,0.1856658,0.51576686,-0.2201229,-0.38306996,0.33995023,0.6784044,0.13749015,0.30161402,0.027343668,-0.06443724,0.060941923,0.028530417,0.19264413,-0.0822958,-0.6120075,0.09341062,-0.29961634,0.16080171,0.5597241,0.14394389,0.2469237,-0.066679195,-0.4320514,0.04641296,0.06365546,0.017530657,-1.2884291,0.51809263,0.07193765,0.9365385,0.4330863,-0.0054040225,-0.16252142,0.729508,-0.12381942,0.21263704,0.39232433,-0.11798254,-0.49582207,0.62910414,-0.74387187,0.48979455,0.017576767,-0.01749056,-0.13431941,0.1260743,0.39495313,0.6076934,-0.25598508,-0.040360793,-0.033791926,-0.32235858,0.4254382,-0.4788231,-0.03576428,-0.7702717,-0.25270745,0.43687403,0.59394735,0.3734368,-0.15962797,-0.0011092763,0.13934514,-0.04385751,0.14116801,0.063280605,0.13132757,-0.043779906,-0.8614204,-0.1335772,0.4799874,0.3477787,0.35336563,-0.09978189,-0.23486476,0.2175348,-0.087272264,-0.057505056,-0.05065479,-0.64107156,-0.06893987,-0.21732482,-0.45773304,0.47571504,-0.0796838,0.23384666,0.16255356,0.092250586,-0.17177223,0.1845571,0.01927172,0.8703673,-0.048239633,-0.08081058,-0.30785733,0.12302636,-0.038005717,-0.05816902,0.22931914,-0.3767997,-0.08794483,-0.6372779,0.61516553,0.1621789,-0.4212164,0.0930254,-0.14430052,0.08582742,0.576897,-0.14309303,-0.052571937,-0.40359947,-0.17310631,-0.16102672,-0.42024377,-0.03503295,0.391119,0.087824315,0.26765665,-0.21103293,-0.11978791,-0.22830473,0.58875555,0.01145811,0.25354552,0.30888107,0.01852327,-0.15330099,-0.043081786,0.09532061,0.3644909,0.0276824,-0.41641057,-0.2589257,-0.3953107,-0.3082073,-0.0036342687,-0.0030865846,0.45845768,0.065863445,-0.16748463,0.5648462,-0.11916609,1.2646127,0.008697971,-0.4563349,-0.044674363,0.538011,0.07069181,-0.119796365,-0.14885336,0.7319426,0.5327281,0.0074380417,-0.084094375,-0.528758,0.028335083,0.39383334,-0.16142477,-0.12972735,0.07055918,-0.5523842,-0.40912744,0.21320143,0.14623408,0.3966099,-0.112306,0.22274445,0.49590242,-0.02025,0.3724395,-0.29934275,-0.1542636,0.29453078,0.38146222,-0.045562256,0.17106475,-0.48519287,0.2853425,-0.51614,0.2985117,-0.26777637,0.25135478,-0.40110132,-0.23409237,0.22747716,0.09961358,0.33462995,-0.13134359,-0.48429307,0.044415805,0.53238386,0.1249779,-0.040558454,0.48190382,-0.26412895,-0.060457934,0.20835209,0.41247645,0.8972349,-0.17459911,0.045376554,0.28400844,-0.34141913,-0.7307173,0.48793203,-0.03316057,0.26926118,0.1369372,0.03512049,-0.6630763,0.3032458,0.30491602,-0.12618564,-0.049718462,-0.43300742,-0.20439391,0.25475904,-0.32007855,-0.09332605,-0.3366429,0.14992231,0.3038497,-0.38020316,-0.32696843,0.02081769,0.20533237,0.0032725146,-0.47801095,-0.1663899,-0.44071484,0.3595751,0.06652158,-0.4496482,-0.18714601,-0.055157878,-0.45520505,0.14876775,-0.0362563,-0.2907248,0.24103568,-0.32258508,-0.20900078,0.99481124,-0.13100375,0.26578003,-0.41198432,-0.34995115,-0.849884,-0.3311228,0.53037494,-0.09935117,-0.00092380156,-0.7298813,0.06197153,0.018738683,-0.15203848,-0.11737456,-0.19388643,0.44414118,0.09932547,0.4704198,-0.0023498968,-0.65506613,0.11936179,0.07330071,0.032111134,-0.42660075,0.5283752,0.012511429,0.9079874,-0.026888313,0.075804435,0.26745847,-0.28699255,-0.19604011,-0.19404195,-0.3404442,-0.4847904,-0.03922293,180 +927,0.36098364,0.09176445,-0.43681848,-0.12030961,-0.2359662,-0.103101104,-0.124106534,0.2460999,0.52292365,-0.35445297,0.03428079,-0.39511964,0.15905653,0.38176116,-0.15287577,-1.008599,0.19965345,0.19890712,-0.55717796,0.8668812,-0.3827667,0.34618586,0.27543274,0.20513229,-0.1139432,0.21384087,0.5069482,-0.29491913,-0.114008315,-0.21707912,-0.0979543,-0.19831887,-0.67927384,0.3965853,0.09004034,-0.12491002,0.2153305,-0.43869683,-0.3695114,-0.74691415,0.23727113,-0.80203474,0.40723315,0.076612435,-0.199659,0.1059922,0.31697884,0.15730396,-0.31295395,0.05235665,0.09027856,-0.19708182,-0.37996188,-0.24614204,-0.41562787,-0.6948288,-0.69870317,0.0047772583,-0.5256315,-0.08183139,-0.5242339,0.10864067,-0.4831805,-0.0023146814,-0.03945465,0.6323744,-0.4216156,0.12215881,0.12823781,-0.28227997,0.31138572,-0.64131737,-0.08284223,-0.11092556,0.13844118,0.16311769,-0.18349515,0.26847532,0.45908824,0.44605458,0.098845966,-0.27580863,-0.27716076,-0.29489967,0.23283438,0.6085778,0.009739626,-0.62556934,-0.07658525,0.01525648,-0.0005705763,0.26895592,0.1769866,-0.51386,-0.02287711,-0.22701645,-0.34824398,0.48983687,0.5325058,-0.30756572,0.019372253,0.32786223,0.22616984,0.06531572,-0.08517128,0.23684883,-0.06973622,-0.6929718,-0.20931591,0.1825282,-0.20664138,0.7525665,-0.2785424,0.17662896,0.7055458,-0.19639544,-0.33871874,-0.13134946,-0.010568597,-0.08601266,-0.16767535,-0.07121289,0.38842565,-0.64766866,-0.22584423,-0.43938968,0.9902597,0.07049834,-1.0798632,0.36571386,-0.5773136,0.2178825,-0.18476175,0.5656452,0.69586426,0.54401374,0.412189,0.7386446,-0.49770126,0.13044612,0.15787932,-0.63015074,0.17803144,0.024330767,0.2062233,-0.473163,-0.054106656,0.1637354,-0.24922386,0.12531821,0.7449534,-0.2686516,-0.10995305,0.0062171547,0.8705536,-0.31803977,-0.15871556,0.57667804,1.1210781,0.82380027,0.26683044,1.4733624,0.24366356,-0.17541231,-0.11329109,0.06671315,-1.0232551,0.21182603,0.3446061,-0.20893389,0.09339481,0.08411431,-0.1212904,0.28836298,-0.40587494,-0.14058739,-0.18131919,0.56004405,-0.0823667,-0.34569666,-0.30369332,-0.31769717,-0.009339093,0.017925667,0.16610684,0.3649024,0.20179,0.54901886,0.07123855,1.3637838,0.15875582,0.12027721,0.15904249,0.45820618,0.35080585,0.13304305,-0.12238648,0.30423704,0.2930524,0.16184112,-0.55009115,-0.021875136,-0.1277175,-0.41142645,-0.20782705,-0.2379222,0.108284354,0.05817027,-0.08634294,-0.19109367,-0.16996704,-0.52836233,0.59652674,-2.3117118,-0.03521494,-0.11498458,0.32055244,-0.070616275,-0.037201215,-0.2518405,-0.6203436,0.7588985,0.45352602,0.5540614,-0.71181977,0.011584884,0.52385545,-0.58249056,-0.12182584,-0.72366065,-0.11454597,-0.12075073,0.3262367,0.021708738,-0.23054194,-0.017214065,0.21918474,0.4777609,0.012685347,0.18708062,0.47973493,0.507213,0.02078522,0.39594695,-0.14803928,0.5545892,-0.16432063,-0.14318602,0.10224562,-0.24486336,0.21600905,-0.35652465,0.0837024,0.41986597,-0.45212486,-0.87623864,-0.19191791,-0.060359057,0.99919534,-0.4063161,-0.49670523,0.42121297,0.15179038,0.005657865,0.084435195,0.58667845,-0.18440585,0.06920526,-0.7485042,0.17194825,0.27258646,0.116381794,0.1424366,-0.099249534,-0.4573108,0.5895326,-0.057122532,0.55753285,0.60844666,0.11947593,-0.40150395,-0.5570734,0.037124954,0.9807707,0.2791092,0.23335852,-0.37207812,-0.16800103,-0.439527,-0.30362803,0.057806607,0.5414873,0.83441633,-0.15158345,-0.03709233,0.39803174,-0.14734884,0.0057408484,-0.054116283,-0.52618384,-0.12333443,-0.179278,0.5665527,0.7022547,-0.18736218,0.5052739,-0.006327759,0.4059662,-0.0529804,-0.5270443,0.7363297,1.077078,-0.14543357,-0.20591019,0.6595494,0.26198718,-0.2850627,0.58940256,-0.22919577,-0.39654177,0.7090072,-0.0046962444,-0.60961974,0.36422107,-0.4282107,-0.09762797,-0.99659365,0.4917475,-0.2554901,-0.5633552,-0.60874635,0.03204151,-3.638237,0.28566465,-0.34481275,-0.18436922,-0.250495,0.121339686,-0.019294923,-0.39178115,-0.5067321,0.4229949,0.24998908,0.53226554,-0.21564583,0.31643394,-0.055981074,-0.04079957,-0.16620252,0.1548128,0.10993264,0.1448587,-0.082706556,-0.43807852,-0.08229649,-0.03677775,-0.3283169,0.1488175,-0.6439995,-0.44118917,-0.18681683,-0.8658165,-0.4484396,0.78617954,-0.5620501,-0.038499527,-0.41319796,0.010203827,-0.083435394,0.3730698,-0.18877536,0.14940752,-0.1937276,0.04002341,-0.18606824,-0.18655342,0.2769104,-0.1264455,0.34228957,0.38654968,-0.04285516,0.12156434,0.74635816,0.58631784,0.095764466,0.7545792,0.46245328,-0.09795812,0.11185867,-0.32438138,-0.17939514,-0.7553297,-0.31190193,-0.24561761,-0.4548548,-0.3905469,0.026876146,-0.35452524,-0.6594294,0.5637067,0.26514718,-0.16098537,0.05525614,0.15470152,0.25926378,-0.06907925,-0.014081248,-0.19965954,-0.29227343,-0.57127976,0.0392133,-0.8062342,-0.4690564,0.354782,0.89289767,-0.20666236,-0.31328124,-0.014758787,-0.2823222,0.04597682,0.14154547,-0.029290969,0.28629926,0.11153788,0.19007431,-0.7856533,0.5974403,-0.22237311,-0.052063953,-0.72260875,0.033411022,0.63798577,-0.78948873,0.4688171,0.5430878,0.019162904,0.014034748,-0.55907243,-0.49715388,-0.048355546,-0.09851181,0.3238308,0.13858499,-0.8229986,0.5931051,0.3215284,-0.32879636,-0.8593903,0.2774868,-0.10672965,-0.32842815,0.19594693,0.42817402,0.024867589,0.121614,-0.58074015,-0.06964727,-0.5663504,0.32319412,0.029030675,-0.020448565,0.48635438,0.037986234,-0.27532685,-0.9977446,-0.09382404,-0.59140795,-0.120297424,0.20199199,0.26025292,-0.012254227,-0.04379188,0.0938972,0.36639926,-0.36492598,0.24067798,-0.14728822,-0.269829,0.4300949,0.43537667,0.27073607,-0.47115317,0.77810836,-0.16250318,0.021061767,-0.12798233,0.14906055,0.44253644,0.3125447,0.27125266,0.19905001,-0.16700262,0.17090692,0.9463062,0.11838252,0.30708936,0.35453647,-0.015709369,0.58363783,-0.011900845,0.20858385,0.12652498,-0.51692355,-0.03588075,-0.24256429,0.04576721,0.57391316,0.1829805,0.545422,0.015339139,-0.333514,-0.03384254,0.31940743,0.1934009,-1.0817927,0.44050416,0.2462257,0.43564367,0.81368715,-0.052903548,0.028117944,0.7204093,-0.054525577,0.21183296,0.2446933,-0.07425333,-0.28634942,0.64387584,-0.74153274,0.27160916,-0.36164021,0.0017374889,0.21345125,0.34426007,0.3354162,0.9203616,-0.029413223,-0.015769381,-0.17423268,-0.20455714,0.026288938,-0.42980668,0.020571925,-0.2193851,-0.6120924,0.6342541,0.17330101,0.32404068,-0.21290532,-0.004063113,0.35349524,-0.12231532,0.3290849,0.0998828,-0.06821613,-0.15451813,-0.85890967,-0.33530986,0.62009996,-0.01345622,0.18508558,0.07163553,0.15100594,0.280449,-0.38523057,-0.22407085,-0.038936976,-0.64857084,0.012527184,-0.24328475,-0.57617927,0.6524537,-0.26267576,0.26078308,0.17825855,0.13547601,-0.32746685,0.06484825,0.35107183,0.57057846,-0.030308496,-0.23412432,-0.09051473,-0.2265275,0.22637029,-0.27874324,0.11353444,-0.032427635,0.0033045574,-0.6540997,0.56889987,-0.3959073,-0.30986527,-0.048747767,-0.27576783,-0.15239114,0.44016942,-0.27284127,-0.15922579,0.16495952,-0.2546406,-0.07920698,-0.2708452,-0.25509062,0.22274111,0.08791408,-0.04459953,0.013165853,-0.018640734,-0.014850985,0.27304867,-0.14919032,0.13641687,0.009792891,0.37901458,-0.45207673,-0.11606848,0.074156635,0.5405762,-0.049961265,-0.103166096,-0.19851507,-0.3301494,-0.22608684,-0.3715687,-0.09514204,0.15435459,0.18385592,-0.63661456,0.8475555,0.10344048,1.0016054,0.045586225,-0.3337003,-0.011607539,0.5325003,0.013867161,0.060992826,-0.15026222,0.97899854,0.7868917,-0.15455128,-0.32098854,-0.72471625,0.085180804,0.26247898,-0.2662347,-0.36484823,0.20701423,-0.44451904,-0.47989082,0.3257259,0.19351153,0.016066909,-0.15322852,0.030032368,0.19702005,0.17556281,0.28032622,-0.60136324,0.17223018,0.24820466,0.119771026,0.2739194,0.15845236,-0.33489293,0.2647914,-0.538498,0.21166204,-0.47329685,0.06592806,-0.012944481,-0.07785161,0.15926442,-0.019744456,0.46827623,-0.2604245,-0.36391398,-0.12066212,0.51356405,0.3185531,0.30188075,0.91982096,-0.28336942,-0.16199309,0.022935702,0.824805,1.4270126,-0.3167938,-0.012285164,0.3924413,-0.2991147,-0.54507446,0.28175718,-0.28250882,0.010956306,-0.23440933,-0.41683605,-0.54926217,-0.018480869,0.18652393,-0.05011267,0.1482573,-0.45479068,-0.29373148,0.2089523,-0.33913592,-0.29400593,-0.41523564,0.102206446,0.8545391,-0.4320469,-0.2406831,0.10116389,-0.15612869,-0.1597848,-0.60006624,-0.10191537,-0.05823102,0.3267134,0.43200094,-0.4137993,0.055521067,0.25126353,-0.5935838,0.24545175,0.036939915,-0.38183153,0.1460196,-0.15649255,-0.15896294,0.81953454,-0.2739646,0.18892771,-0.6103553,-0.6677567,-0.89694935,-0.3391606,0.5094811,-0.11605836,-0.01845162,-0.6087875,-0.112000085,0.13898093,-0.051122013,-0.03240268,-0.44609106,0.44530782,0.07496513,0.5193771,-0.17909098,-0.9787563,0.05632263,0.103259325,-0.126107,-0.68675315,0.4251772,-0.077426456,0.78345394,0.12041629,0.0509148,0.3835475,-0.7773396,0.13404503,-0.37392962,-0.37700444,-0.39332733,0.19078769,182 +928,0.18536185,-0.12377009,-0.547332,-0.27305153,-0.20106892,0.03625503,-0.17054555,0.56313473,0.17735156,-0.13060342,-0.21233243,-0.16274582,0.25698873,0.6285978,-0.20138621,-0.95095843,-0.09149785,0.11451232,-0.8978746,0.3446107,-0.47964624,0.28236735,0.20821767,0.34692314,-0.0058765467,0.051011488,0.54095995,-0.18038763,0.1626975,-0.30244863,-0.14546382,0.11194933,-0.6210431,0.0737244,0.041516867,-0.3730873,0.043736782,-0.5087488,-0.06410251,-0.7154804,0.10243232,-0.8700456,0.7120653,0.0294972,-0.33793458,0.0030599183,0.39602426,0.41248816,-0.29390186,0.09375518,0.18534018,-0.28452584,-0.16097344,-0.19171633,-0.21832609,-0.6556291,-0.4529665,-0.09427052,-0.61397034,-0.5032317,-0.21365346,0.11098283,-0.4490611,-0.044077918,-0.21705116,0.2497316,-0.4448785,-0.18094355,0.5654827,-0.27097,0.46094382,-0.58535486,0.018942205,-0.06345442,0.48873597,-0.03296949,-0.2409873,0.2902868,0.40071142,0.309034,0.21104132,-0.34046996,-0.052919436,-0.3659443,0.18264796,0.47410825,-0.040529057,-0.39825287,-0.14128843,0.14624794,0.43687075,0.6780889,-0.007796068,-0.22241539,0.033753928,-0.07457836,-0.19229035,0.7545736,0.44415715,-0.35891607,-0.3958644,0.335413,0.5770765,0.5556404,-0.13906509,0.10999205,-0.14464873,-0.6149327,-0.18207811,0.17704506,-0.08223888,0.46077615,-0.012432653,0.078628264,0.96161216,-0.18384638,0.011601404,-0.14182065,-0.030021884,-0.18799902,-0.32777613,-0.1319326,0.33845595,-0.6348118,0.019895123,-0.40154344,0.79376787,0.12409694,-0.66551054,0.35471305,-0.64694905,0.11959633,-0.036923822,0.6064901,0.73950475,0.44780874,0.20410468,0.91363776,-0.24583197,0.17950968,-0.11301665,-0.40319824,0.05727059,-0.053391982,0.14801322,-0.5385191,0.23089825,0.03636376,0.21781512,0.10037875,0.39104775,-0.76882,-0.16430458,0.14723821,0.7729797,-0.21497951,-0.05020683,0.7375193,1.042466,1.0336584,-0.044073477,1.2575752,0.18767977,-0.19280343,0.006849045,-0.09520919,-0.538447,0.2119337,0.6337252,-0.112889476,0.3084354,-0.3701662,-0.16581808,0.19654264,-0.23442918,-0.11154228,0.0789721,0.53551644,0.0365283,-0.38232848,-0.577195,-0.029641537,0.083072506,-0.25676894,0.15489583,0.34338662,-0.2005879,0.34614298,-0.11592806,0.7685612,-0.14703923,0.29308206,0.15432054,0.28796837,0.21902305,-0.05384134,0.081752665,0.3614537,0.3610916,-0.11600585,-0.6698091,0.27075282,-0.47833604,-0.42515498,-0.1246932,-0.4823637,-0.2268961,-0.015317545,-0.29417437,-0.03085277,-0.12579578,-0.1886836,0.4419814,-2.8732207,-0.4183354,-0.21660818,0.12779859,-0.2734136,-0.14141767,-0.07146189,-0.4928002,0.449211,0.29277766,0.64111483,-0.39106,0.3675564,0.41573906,-0.5461126,-0.3191145,-0.7185637,0.022416044,0.07818388,0.3223383,-0.14818576,-0.2600074,-0.04332368,0.18765177,0.7434121,0.24569435,0.16175318,0.43604252,0.41145542,-0.06831937,0.4262786,-0.321218,0.7280666,-0.4571579,-0.10831683,0.3479058,-0.20981814,0.44170445,-0.37535855,0.1345025,0.5773251,-0.26007497,-1.1527174,-0.46511605,-0.5297125,1.1045678,-0.5471327,-0.4001129,0.22276187,0.26633903,0.06862163,0.22330646,0.756286,0.046797182,0.2873986,-0.5397081,0.2312013,-0.09147202,0.16669716,-0.056033697,0.007839874,-0.39963922,0.7057442,-0.033827633,0.44029647,0.23880139,0.28508794,-0.17158791,-0.2712677,0.024642022,0.7390804,0.51682764,-0.11047008,-0.020291502,-0.18600959,-0.33178565,-0.18900941,-0.028379792,0.75202465,0.83070433,0.023719441,0.09273309,0.097105145,0.01663098,0.1772227,-0.13698862,-0.3444699,0.06363037,0.17248799,0.4682885,0.3740299,-0.08702397,0.61073214,0.00096371496,0.27877805,-0.27759695,-0.607873,0.67271906,0.3494707,-0.27325,-0.07153568,0.559369,0.4476627,-0.41584805,0.51952267,-0.6313366,-0.32993165,0.97001576,-0.22887263,-0.66255325,0.3640518,-0.08241529,-0.0066047367,-0.81671244,0.12779312,-0.59812415,-0.4700264,-0.23809429,-0.115838505,-3.4673507,0.33114243,-0.13717642,0.026072746,-0.50102085,-0.038829204,0.32144293,-0.54984623,-0.74352837,0.15118761,0.3659639,0.8125189,-0.23183922,-0.0067283185,-0.1582973,-0.32107097,-0.016147494,0.35229808,-0.13325381,0.09495606,-0.22699803,-0.30243987,0.05375835,0.18890266,-0.57889915,0.28495237,-0.57417464,-0.27022773,-0.1771664,-0.46004292,-0.115099125,0.7167431,-0.6992346,0.055626165,0.013238281,0.21367246,-0.086446375,0.057057682,-0.00049186294,0.44449702,0.16472246,-0.15075512,0.07299155,-0.25014424,0.5473651,0.1133683,0.46591905,0.081432395,-0.06500426,0.26740658,0.43596217,0.6080904,-0.04101659,0.99547106,0.10122185,0.039223645,0.32804993,-0.42705935,-0.24697852,-0.4953375,-0.3851391,-0.21485628,-0.40846446,-0.61551756,-0.15613867,-0.1260214,-0.6859918,0.5662403,0.12728849,0.5813885,-0.18726134,0.43519202,0.36659047,-0.35446057,0.011770075,0.032738533,-0.061464477,-0.4599964,-0.14037138,-0.75756437,-0.41365272,0.063933656,0.787496,-0.4880619,0.029657584,-0.27241886,0.006837715,0.11497771,0.16402443,0.06750758,0.12987764,0.38284457,-0.10318796,-0.71156144,0.38778222,-0.08132447,-0.2119897,-0.6267382,0.115641505,0.57772744,-0.7154774,0.5649167,0.31759927,0.022660814,-0.25961673,-0.54724425,-0.069957085,0.25735965,-0.1968234,0.39405224,0.12146859,-0.69664085,0.51392967,0.3801217,-0.32914984,-0.7169799,0.40028226,-0.047913328,-0.2805814,-0.110048525,0.37051705,0.3934191,-0.14409102,-0.18029644,0.25409138,-0.5662658,0.31704995,0.1472067,-0.054327384,0.6063726,0.023849936,-0.3819343,-0.8277422,0.06718059,-0.67115635,-0.29026863,0.33852106,0.02046053,-0.09413651,0.35238704,0.119164184,0.48342526,-0.31725308,0.16571447,-0.04483013,-0.4954563,0.39033297,0.51051325,0.21946985,-0.24759617,0.6510667,0.1825695,-0.23421817,0.14950007,0.08599514,0.5289331,-0.07722099,0.52633643,-0.31059512,-0.25546548,0.25444108,0.6006736,0.06885975,0.27654552,0.15733598,0.095962,0.21828924,-0.11637273,0.19293894,0.061210718,-0.4230729,-0.099418595,-0.18525667,-0.010444074,0.6028192,0.314126,0.14479351,0.279707,-0.17862271,0.087397486,0.25276002,-0.077201694,-1.0863079,0.59540653,0.22646561,0.92074203,0.50815713,0.15130945,-0.22085348,0.38219917,-0.14460242,0.14873035,0.491726,0.04031612,-0.43866575,0.90532684,-0.75657654,0.32715288,-0.2462789,-0.1875873,0.18403889,0.07045856,0.35545638,1.0652844,-0.20867215,-0.047980808,-0.046485517,-0.17203823,0.13766594,-0.17880286,-0.06567585,-0.47291934,-0.5152891,0.61504525,0.31177914,0.26824275,-0.3060147,-0.12464697,0.12586595,-0.08921974,0.15629269,-0.034951422,0.019179506,0.052012995,-0.30829847,-0.118385434,0.55709773,0.042782556,0.16455191,-0.20710573,-0.24033894,0.027680842,-0.18898211,0.11813828,-0.06261938,-0.7140274,-0.015586301,-0.41326284,-0.5943962,0.32653376,-0.5000815,0.26383862,0.113693096,0.07599086,0.042765345,0.25177768,0.07798612,0.7478104,-0.09813654,-0.32509306,-0.46142673,0.213837,0.065770574,-0.24255718,0.012583158,-0.19835351,0.09061832,-0.60179126,0.50842476,-0.17355384,-0.38311833,0.2668917,-0.24189897,-0.25828788,0.5448099,-0.042882476,0.023847163,0.07025495,-0.52301496,-0.29482073,-0.12036081,-0.21704465,0.18969072,0.11400431,-0.015367037,-0.24372788,0.010526695,-0.10635722,0.3228817,-0.014258832,0.21528187,0.29948118,0.053523064,-0.13478813,0.017791422,0.20246933,0.35604277,0.34537628,-0.006018433,-0.17900468,-0.41708547,-0.35070354,0.17946656,-0.23579957,0.18586282,-0.026724469,-0.097480156,0.9374759,0.2292654,1.0972703,0.055850193,-0.42483205,0.10658968,0.7391975,-0.15079157,-0.29955018,-0.4043431,0.9185634,0.5864038,0.009913033,0.12647371,-0.384079,-0.08212338,0.5281581,-0.42782447,-0.10944981,-0.029290676,-0.5765593,-0.49462014,0.1653778,0.0737,0.21434173,-0.16098215,-0.22064139,0.3054108,0.12197124,0.5154324,-0.7054595,-0.355384,0.11290507,0.32858542,-0.2135647,0.17420115,-0.35162264,0.46753997,-1.0724492,0.14297295,-0.51496065,0.055890653,-0.2163897,-0.43070403,0.13141425,-0.016658036,0.25055254,-0.18140365,-0.39613226,0.17898908,0.41709587,0.12935513,0.15152043,0.66082245,-0.27287358,-0.03348719,0.10939825,0.64191127,1.264166,-0.36504412,-0.17154975,0.31177014,-0.5224948,-0.8091942,0.47214982,-0.6694669,0.10519979,-0.21447836,-0.33970648,-0.27295563,0.27690652,0.12642747,-0.015202809,0.07326296,-0.5304049,-0.047785375,0.25703815,-0.31705052,-0.23184417,-0.35627058,0.3797364,0.9054295,-0.2141936,-0.39007196,-0.0019793361,0.388864,-0.34185502,-0.68570477,0.084313154,-0.087449655,0.3679357,-0.023907585,-0.3132263,0.072922155,0.17741786,-0.6003341,0.15636645,0.06498968,-0.23638101,0.095245406,-0.22276206,0.070566505,0.7751831,-0.28424472,-0.24349967,-0.4774042,-0.47253326,-0.65824723,-0.3045793,0.35914847,0.06496479,0.016100137,-0.4901928,0.18237859,-0.21084954,0.033199634,0.002491615,-0.27056918,0.2197071,-0.08547816,0.5189963,-0.33221123,-1.0287724,0.29268712,-0.027855776,-0.00990934,-0.68022823,0.505403,-0.28571603,0.81329197,0.010256538,-0.18481177,0.033337984,-0.5146565,0.25559482,-0.28205326,-0.12039859,-0.82248515,0.3026322,198 +929,0.38148507,-0.16403343,-0.56628686,-0.0935021,-0.5021137,-0.10930628,-0.08554264,0.560614,0.34076056,-0.24530534,-0.19358034,-0.022983974,-0.2985682,0.2114494,-0.12992388,-0.67579997,-0.072663955,0.4477023,-0.69406873,0.53505313,-0.31126478,0.04913594,-0.057179306,0.4290718,-0.031870246,0.071572594,-0.096556455,0.14764154,-0.030090652,-0.20897657,0.31033766,0.21371202,-0.9239525,0.48373273,-0.24903752,-0.27671087,-0.18126398,-0.6845118,-0.28067452,-0.8527512,0.28417876,-0.5527907,0.5644109,0.10744498,-0.34070495,-0.3046409,0.19782472,0.17216863,-0.14707188,-0.11642169,0.39971897,-0.1398815,-0.35983783,-0.015924508,-0.15617809,-0.14269668,-0.70747,0.034470882,-0.45820853,0.21739173,-0.09301155,0.2996399,-0.19035739,-0.09456446,-0.4113882,0.7839287,-0.46375915,0.1885426,0.22431412,0.14711998,0.2295596,-0.57405263,-0.107832216,-0.3538886,0.16987163,-0.04672109,-0.57150453,0.44603586,0.30848908,0.5587837,-0.03402631,-0.30057243,-0.27673152,0.20575537,0.14021243,0.391726,-0.34587938,-0.15663508,-0.14338753,-0.010964057,0.3213944,0.26966837,0.017705781,-0.44305107,0.1338631,-0.273153,-0.010493728,0.47635058,0.49983722,-0.09684685,-0.18513387,0.29465684,0.41836226,0.21387267,-0.013323751,0.1699099,0.13603117,-0.6620214,-0.33226484,0.31302407,-0.22612444,0.43611735,-0.19259387,-0.05436654,0.6518713,-0.12282142,-0.43237182,0.11261132,0.23224415,0.2518879,-0.30906856,-0.54322094,0.47669113,-0.48518226,0.19373713,-0.18084201,0.5426207,0.051020253,-1.0391036,0.19760355,-0.7565643,0.09996284,-0.0028050407,0.6279346,1.0509275,0.778928,0.41650257,0.8059679,-0.3058595,0.21520422,0.18726183,-0.091219634,0.11557527,-0.20500007,0.05873905,-0.44491225,-0.34004653,-0.41885507,-0.37900135,0.084193654,0.41915178,-0.5445495,-0.28014377,0.05370265,0.7346383,-0.2806591,-0.23476982,0.8819942,1.1625241,1.2266381,0.25115848,1.4799255,0.03566442,-0.11406441,0.069738016,-0.11462858,-0.9263435,0.22612526,0.19049063,-0.3018594,0.24072923,0.12938139,0.046659723,0.5327289,-0.71195215,-0.06671105,-0.123472475,0.37570545,-0.15285902,-0.070280194,-0.41188785,-0.42772505,0.039482024,0.03597556,-0.22002983,0.3937032,-0.11864621,0.37158403,0.12849024,0.9387278,0.09117483,0.13012443,0.117587395,0.17084683,0.10732401,-0.2684304,-0.3385131,0.2395411,0.20969701,0.04110624,-0.5967003,0.067582205,-0.33059165,-0.2457364,-0.26949483,-0.1618163,-0.05971111,-0.30197814,-0.345096,-0.42115366,-0.0060010445,-0.25793603,0.49168473,-2.141081,-0.11324267,0.035803784,0.3830283,-0.054784384,-0.26862705,-0.24727844,-0.5051117,0.41337326,0.2137172,0.5725154,-0.65167123,0.41179276,0.30729005,-0.7183131,-0.036503986,-0.8698736,-0.108072884,0.0884214,0.09573543,-0.08853919,0.031204028,-0.24425611,0.028545676,0.47267482,0.022870844,0.10937254,0.50720257,0.4371519,-0.020538889,0.37327355,-0.060647074,0.42042896,-0.50435597,-0.37774286,0.3233272,-0.43563727,0.3748984,0.07223683,-0.07621808,0.6348769,-0.6954947,-0.9210029,-0.71923465,-0.5263387,0.9991299,-0.22921439,-0.18418069,0.17837195,-0.62416637,-0.19405866,-0.028548243,0.64922106,-0.15202561,-0.046970066,-0.8271892,-0.28717962,0.14494146,0.5184375,-0.12254086,0.047799096,-0.41878936,0.6513295,-0.2559572,0.34306234,0.6426636,0.042861894,-0.6398906,-0.6738108,0.13278228,0.80735815,0.5456842,0.11644383,-0.24729644,-0.115608,-0.29052818,-0.009837595,-0.05403228,0.8517597,0.5592928,-0.30579168,0.075169295,0.4663347,-0.26786298,0.09003901,-0.20360284,-0.34450883,-0.33295125,0.0089197,0.6094962,0.8005609,0.018047772,0.38733646,-0.10400763,0.18157287,-0.00011255254,-0.4722594,0.39990455,1.0393215,-0.1764719,-0.23956423,0.78444237,0.41193935,-0.33213556,0.5125052,-0.44010332,-0.17039451,0.34569097,0.12757513,-0.4157189,-0.12761721,-0.38797104,0.18663901,-0.9073,0.52090716,-0.5051471,-0.8168682,-0.7979613,-0.016716236,-2.061126,0.19477202,-0.33389208,0.0017609055,-0.08131898,-0.21567431,0.27763864,-0.5530994,-0.827212,0.15681197,0.08909262,0.49934804,-0.20820111,0.1053926,-0.14345384,-0.42031842,-0.18116146,0.39631528,0.70723015,0.3006558,-0.0033137149,-0.4086934,-0.032561313,-0.281063,-0.353294,-0.22716756,-0.8073221,-0.59171253,-0.14741626,-0.95526373,-0.3325724,0.72001594,-0.52125835,-0.15566286,-0.19698097,-0.023828458,0.08139309,0.27412862,0.12931484,0.42750913,-0.027875386,-0.13071573,-0.41361457,-0.009680823,0.20284066,-0.014637343,0.17298488,0.4308077,-0.15728933,0.51206505,0.5680082,0.9231945,-0.15040445,1.0276965,0.55550456,-0.10879329,0.14328112,-0.24292308,-0.3322661,-0.7140287,-0.10441677,-0.23452897,-0.4683528,-0.36803588,0.254023,-0.45652235,-0.91880345,0.618834,-0.06788974,-0.12852322,0.23079894,0.11946089,0.30264872,-0.22163586,0.058218077,-0.34830818,-0.18498594,-0.39874098,-0.5902722,-0.656671,-0.6316295,-0.17446704,1.8166523,-0.08018537,0.12503968,0.30698967,-0.38983792,0.050795916,0.12668124,-0.15817569,0.17547627,0.42841384,0.26216373,-0.504347,0.089549996,0.038076185,0.027230626,-0.5698057,0.379483,0.86533254,-0.7376182,0.8368851,0.3237286,-0.083450936,-0.24885374,-0.83067954,-0.3841049,0.12121479,-0.22186762,0.55254537,0.37082988,-0.7399935,0.4171858,0.103832595,-0.39425784,-0.919023,0.47554156,-0.06171223,-0.048393294,0.13890827,0.43853852,0.021652712,-0.058049012,-0.16320866,0.5952897,-0.10721955,0.3420519,-0.07028243,-0.18111481,0.019191742,-0.41096982,-0.12446635,-0.8353842,0.1335107,-0.573354,-0.4876517,0.28700525,0.07291264,-0.09024886,0.24093547,0.50980383,0.43626326,-0.14046277,0.14209732,-0.29083708,-0.4688473,0.17256528,0.57283086,0.49318168,-0.3737898,0.57889783,0.03608865,0.0062706093,-0.33953813,0.15270714,0.31228474,-0.070570305,0.2794437,0.07784086,-0.07618472,0.020743402,0.9301016,0.11266823,0.39658755,-0.0001866384,-0.08585489,0.42951086,-0.032176927,0.3645252,-0.25441638,-0.5010073,0.095325775,-0.15142614,0.05877993,0.45690736,-0.013145796,0.16583626,-0.29998407,-0.29037923,0.05126447,0.18743557,0.23997688,-1.575201,0.44241562,0.08712968,0.6842595,0.70524734,0.15170978,0.025901074,0.7082427,-0.25820965,0.023247588,0.64604205,0.008734957,-0.25000712,0.45484307,-0.703797,0.5507443,-0.15324682,0.043142773,0.21880946,0.040613744,0.43612936,0.77236366,-0.080004595,0.12118824,0.035796225,-0.15766379,0.15821485,-0.26819485,0.25322434,-0.53762776,-0.44252107,0.79605204,0.5105621,0.331026,-0.30288947,0.017200138,0.07936413,-0.26833475,0.32513642,-0.0769414,-0.36167058,-0.07769528,-0.5260502,-0.09401669,0.7051011,-0.25401384,-0.0011009953,0.2602474,-0.078802325,0.27652708,-0.018539883,0.0100103235,-0.14351235,-0.9851116,-0.3233653,-0.64887637,-0.14239532,0.26982424,-0.50251174,0.019526029,0.13196093,0.23104735,-0.51740384,0.6007393,0.23501247,0.7008597,0.06848349,0.059167694,0.21041924,0.30425647,0.1994935,-0.20014256,0.12538098,-0.28145412,0.15453841,-0.59261686,0.56242794,-0.078715585,-0.42639494,-0.08816468,0.06481204,-0.09849275,0.4390252,-0.06647286,-0.16007967,0.06456887,-0.20920776,-0.29473355,-0.16731097,-0.26708066,0.31063703,0.1912828,0.11638225,-0.16533722,-0.115410835,-0.23947452,0.4937339,0.1892717,0.21590701,0.34641275,0.1516809,-0.5781553,0.07733124,-0.013182854,0.62240624,0.014810541,-0.21678708,-0.3682414,0.18508501,-0.18516959,0.31665742,-0.10027964,0.3670592,0.003093137,-0.48457956,0.9545923,0.22234932,1.2803477,-0.06559859,-0.35826316,-0.04704149,0.463014,-0.15482189,-0.15489559,-0.2752076,0.8515039,0.6493351,-0.22552441,-0.17795236,-0.38866755,-0.21322113,0.15292431,-0.15706943,-0.2733312,-0.08651,-0.7122141,0.057173252,0.24038324,0.23497868,-0.006705142,-0.19032536,-0.031878185,0.08277114,-0.107983716,0.09592509,-0.4026191,0.20397097,0.31264615,0.59689933,0.065668344,0.2038628,-0.21175328,0.40647122,-0.7684319,0.41763544,-0.36725938,0.101849645,-0.23503986,-0.28326824,0.043445673,0.08886793,0.26216888,-0.14220208,-0.1392665,-0.3209068,0.7440802,0.22456041,0.23582739,0.9352138,-0.26077938,-0.043343157,-0.026464462,0.4890684,0.87294096,-0.38013658,-0.20614992,0.055408403,-0.19725217,-0.46482122,0.4124399,-0.66287035,-0.060235653,-0.12801649,-0.20624839,-0.4944623,-0.012784478,0.19146647,0.19710898,-0.17553288,-0.75195104,0.25500843,0.43573388,-0.04497522,-0.1181539,-0.33037177,0.306266,0.8557444,-0.11596315,-0.4994601,-0.020242237,0.2624613,-0.20747961,-0.39063913,0.056503892,-0.6279978,0.1369218,-0.045974992,-0.43670645,-0.01077199,0.017927462,-0.47200254,0.042190325,0.2946822,-0.23486833,0.08091027,-0.12474439,0.0060378965,0.9807586,-0.053344704,0.37268278,-0.23311344,-0.669113,-0.99106634,0.08195592,0.12191666,0.47270393,-0.058089558,-0.6768582,-0.14659129,-0.111845754,-0.2678076,0.07864442,-0.5258486,0.47352713,0.22393483,0.3775569,-0.19222169,-0.8748722,0.09550223,0.2245631,-0.01627804,-0.32209295,0.45268822,0.07577453,1.0556295,0.070367545,0.03722987,-0.12984586,-0.5901698,0.312698,-0.27342656,-0.093762755,-0.39440182,-0.14659575,207 +930,0.34862882,-0.2425614,-0.72098863,-0.1476869,-0.2431171,0.19051394,-0.3216853,0.12851691,0.42616102,-0.50674146,0.042660255,-0.2904563,0.063643135,0.28780887,-0.13516697,-0.743252,-0.1565683,0.3660411,-0.22569782,0.33878836,-0.3720794,0.31126297,0.3287429,0.39136553,-0.13858347,0.049357966,0.3533312,-0.30912378,-0.16226928,-0.53338474,-0.059890684,-0.13509284,-0.7122247,0.2808654,-0.1669958,-0.18324834,0.24278833,-0.4286936,-0.39605153,-0.69961077,0.36759904,-0.95648444,0.8841164,0.13951449,-0.14883512,0.13885735,0.31946558,0.07688308,-0.02016993,0.27943724,0.35011554,-0.55030584,-0.5186556,-0.21056956,-0.34047413,-0.6243633,-0.6734205,-0.14601716,-0.49827892,-0.09744525,-0.49320272,0.34951243,-0.33999944,-0.009664568,-0.22676225,0.5218265,-0.31765854,-0.1655318,-0.12143776,-0.43815377,0.42866465,-0.7975985,-0.12805603,-0.07593956,0.007995096,0.11152923,-0.056589022,0.14321545,0.123359464,0.40492153,0.08281843,-0.24172892,-0.47184646,-0.04159784,0.12102905,0.56081814,-0.21112837,-0.39112636,-0.18816067,0.037172142,0.49989355,0.16775304,-0.0935013,-0.4162761,0.11980268,-0.23807034,-0.25386325,0.7129972,0.64343053,-0.20141731,0.26431262,0.31450847,0.17930041,0.29572532,-0.11976112,0.08212744,-0.04512506,-0.4446745,-0.0916395,0.13166666,-0.29363117,0.63571554,-0.13277403,0.06717292,0.62230617,-0.2041463,-0.012875303,0.017838685,0.14952634,0.0862785,-0.09776902,-0.253437,0.48858902,-0.4470621,-0.06745973,-0.58605295,0.8625828,-0.19345576,-0.81791615,0.33541694,-0.5770457,0.10936501,-0.21264262,0.7772757,0.5733636,0.8625151,0.15168108,0.88450885,-0.36286563,0.17136365,-0.02619247,-0.32727468,0.26024222,0.122389205,0.17345859,-0.45215848,-0.07335859,-0.18581416,-0.15324391,0.023921115,0.66106147,-0.3197587,-0.13968095,0.1750617,1.0198547,-0.34365046,0.0029593597,0.39727372,1.4878582,0.8108513,-0.015075654,1.4477787,0.13378328,-0.23954608,-0.49899703,0.12932533,-0.9504339,0.12720394,0.35222757,0.08272392,0.0941968,0.28075588,-0.02777818,0.34999874,-0.6014674,-0.2631617,0.008474719,0.35792246,-0.09044948,-0.14019077,-0.44036695,-0.10859155,0.32057732,0.1864626,0.23679656,0.33715156,-0.31500053,0.48957264,0.18635978,0.93511623,-0.2061634,0.08525772,-0.06733372,0.38459322,0.14960217,0.20703055,0.13583463,0.157745,0.39293683,0.06403015,-0.58458686,-0.022030098,-0.07610598,-0.4767885,-0.4523489,-0.1508054,-0.058903825,-0.12187858,-0.10351873,-0.3806546,0.13013405,-0.5218994,0.27161816,-2.3178353,0.043784786,0.04245899,0.42558458,-0.018005459,-0.23750778,-0.060291722,-0.40499738,0.77555466,0.3074076,0.5109611,-0.4503977,0.40828755,0.61118865,-0.43864536,-0.2520356,-0.67009884,-0.12591672,-0.3094847,0.5067964,0.08617518,-0.44719136,-0.13316402,0.25483286,0.6634762,0.20324607,0.23542951,0.21970691,0.47866553,-0.16596887,0.48023227,-0.060654357,0.6124697,-0.11994052,-0.23267795,0.15744658,-0.3076273,0.12931833,-0.5550714,0.068750136,0.39642698,-0.38641107,-0.7189457,-0.4353404,-0.03455268,1.1872772,-0.46090928,-0.9427671,0.2615476,0.2006252,-0.13437237,0.33441374,0.45911214,-0.3733301,0.12757793,-0.7341654,0.014312821,-0.122943096,0.29327258,-0.0024974414,0.10091709,-0.76363236,0.8881846,-0.17158224,0.5088184,0.6116443,0.36735937,-0.32291967,-0.6057985,0.23686689,0.98809916,0.4021354,0.03996418,-0.33502325,0.02369522,-0.086310655,-0.35115167,-0.040950473,0.72454095,0.9330273,-0.1060472,0.06348397,0.31307608,-0.3901045,0.023798162,-0.103132084,-0.745102,-0.17462236,-0.10651097,0.6845122,0.5526949,0.033403374,0.46047097,-0.05849582,0.7413304,-0.17705896,-0.33668897,0.6154773,1.0861739,-0.18963741,-0.1371785,0.97300756,0.52187914,-0.23908973,0.608551,-0.73209095,-0.5310212,0.45736617,-0.008985118,-0.7083841,0.17574495,-0.4631221,0.00055206905,-1.1403431,0.35961232,-0.20211996,-0.6841187,-0.6943293,-0.331226,-2.9034927,0.06247938,-0.54216826,0.046628322,-0.32154667,-0.0060899314,0.26995027,-0.41992322,-0.58523154,0.12678042,0.1975627,0.51134396,-0.16670987,0.18541393,-0.18703292,-0.11873138,-0.020717047,0.43412,0.2054957,-0.12634635,0.0047116983,-0.5339339,0.22637601,-0.21916999,-0.29070985,-0.12070658,-0.48144618,-0.1544807,0.051358998,-0.6744009,-0.31487882,0.5582779,-0.5562651,-0.16906959,-0.31321195,0.25340703,0.08602391,0.22955702,-0.24345355,0.35659006,0.09473465,-0.13842903,0.1423513,-0.17072493,0.22626644,0.15349928,0.16222285,0.44035622,-0.16240126,-0.13315701,0.620349,0.47653922,-0.16967875,1.0443372,0.4459035,-0.22058764,-0.0121054975,-0.3556735,-0.47195676,-0.6752624,-0.19220716,0.012733817,-0.46041203,-0.23502478,-0.01958432,-0.36553183,-0.8987066,0.67690253,0.21628116,-0.057783544,-0.037234303,0.29397365,0.26314905,0.0020529493,-0.06916228,-0.23748149,-0.11286106,-0.37926102,-0.14986916,-0.79383564,-0.33580273,-0.2774515,1.1117369,-0.06161434,-0.12278405,0.33362657,-0.16810133,0.14907669,0.15357676,0.066188425,0.21339975,0.5594869,0.3810875,-0.9266481,0.40357444,-0.27800408,0.14176339,-0.8866568,0.16353844,0.61413133,-0.8963747,0.32241714,0.76715356,0.20622416,-0.39362317,-0.688898,-0.27679077,0.2621741,0.010765564,0.40733662,0.02832946,-0.63927174,0.8606236,0.30200663,-0.20123424,-0.8063174,0.3927599,-0.0400085,-0.34356305,0.07917158,0.40998796,-0.033163562,0.1640541,-0.33405802,0.2319943,-0.2501074,0.56175405,-0.059402738,-0.05008799,0.4766537,-0.19693056,-0.16376938,-0.9851431,0.10049265,-0.3804289,-0.3157223,0.25403446,0.0031467623,0.058173403,0.27672604,0.08720712,0.41890147,-0.41796312,0.13756509,-0.28751996,-0.3508303,0.6185699,0.4806839,0.3617852,-0.39368182,0.8017463,0.034824505,-0.30090964,-0.2328319,-0.13892837,0.45120466,0.011934594,0.3946748,0.041842844,-0.14673692,0.18466191,0.8395168,0.06767017,0.34092474,0.17603672,-0.023087831,0.54555213,-0.092207,0.16955541,-0.09057468,-0.7415453,-0.19446464,-0.22056602,-0.023792136,0.42287654,0.28573787,0.74002516,-0.09106739,-0.11878573,0.07090823,0.040263478,0.087309435,-0.93963224,0.41028702,0.16891031,0.5344706,0.60924417,0.064310044,0.18385229,0.8034782,-0.30040896,-0.10416773,0.26516446,0.18245354,-0.18670025,0.60211486,-0.601307,0.16001818,-0.2676867,0.10544805,0.20459796,0.13680865,0.5011607,1.125624,-0.1267733,0.18046027,-0.054026898,-0.099761195,-0.011371165,-0.27931193,0.18610169,-0.23763813,-0.40030086,0.82357234,0.17870575,0.4111107,-0.17599483,-0.15503234,0.4211665,-0.12222524,0.41794488,0.12814215,-0.25611025,0.0034356334,-0.72473055,-0.18204013,0.5192632,0.38154414,0.019304514,-0.037382547,-0.09393323,0.3569438,-0.026820077,-0.25081024,-0.0325825,-0.5247241,-0.20457385,-0.382018,-0.59289324,0.31012508,-0.09010622,0.22513662,0.040726032,-0.043446336,-0.023338003,0.030472403,0.41282034,0.6571219,0.31680477,-0.3749015,-0.14936465,-0.28467488,0.16896053,-0.3116862,-0.16797315,-0.1563654,0.18831353,-0.6073607,0.4577734,-0.6369017,-0.34280097,0.3524597,-0.41548574,-0.21238221,0.39420292,-0.096669264,-0.08671873,0.6663393,-0.058570568,-0.211385,-0.34652594,-0.52717537,-0.024583517,-0.28824338,-0.11789942,-0.31985885,-0.16682325,-0.22983271,0.3266084,0.16349143,0.11069905,0.39590606,0.30899718,-0.41714647,-0.26841205,0.026604118,0.67702365,-0.28207806,0.05902525,-0.2637998,-0.50604796,-0.27279755,0.054789305,-0.12744409,-0.017249541,0.14405802,-0.4449596,0.85676,-0.029385038,1.0121169,-0.15386955,-0.47699234,-0.008757147,0.67202747,-0.1188255,0.024693608,-0.5173541,1.1608325,0.7854626,-0.19708386,-0.3257009,-0.9591828,0.12162199,0.40036538,-0.31586823,-0.38161704,-0.32853886,-0.69549775,-0.3481436,0.3490033,0.2983317,0.008818606,-0.04715886,0.2808158,0.2640154,0.26270536,0.3923009,-0.71277446,0.037360128,0.46325186,0.1792122,0.0096342405,0.22782773,-0.28283122,0.13746575,-0.4857089,0.1545222,-0.48428395,-0.10766497,-0.07562726,-0.20349954,0.24550605,0.004479414,0.13056467,-0.24434708,-0.19172853,-0.08230898,0.5682928,0.08590882,0.30199406,0.7170857,-0.15519439,0.052725777,-0.08332863,0.6289553,1.3841217,-0.36592302,0.29696968,0.30801082,-0.38442668,-0.55030364,0.25476804,-0.34281206,-0.19200724,0.041811977,-0.4630785,-0.62249225,0.16584063,-0.18803245,-0.27187067,0.186592,-0.22841696,-0.21614335,0.36650077,-0.19565023,-0.21138836,-0.043015834,0.046423838,0.6072285,-0.25612468,-0.13295613,-0.15890317,0.3264631,-0.31733704,-0.6961459,0.061665222,-0.36038625,0.4480677,0.2564611,-0.35639358,-0.0092502665,0.15468857,-0.6789912,0.025391113,0.2932162,-0.21275754,-0.022548482,-0.30625063,0.26461914,0.5751569,-0.20436253,0.09333501,-0.7015986,-0.56525785,-0.9548527,-0.039325118,0.0664197,0.1805657,-0.05321674,-0.78471684,-0.089419775,-0.31284487,-0.096374676,-0.17054339,-0.7156057,0.223497,0.09946448,0.7224709,-0.3200951,-0.8378912,0.21915509,0.13012472,-0.416286,-0.5533999,0.6764594,-0.023897069,0.8368173,0.13230024,0.019048238,0.1429697,-0.7319639,0.3187707,-0.11654537,-0.33873776,-0.73460096,0.20297828,216 +931,0.17526369,-0.118611075,-0.43132076,-0.2214375,-0.28477427,-0.06371226,-0.15470363,0.505992,0.34201252,-0.40631822,-0.20887613,-0.11543586,0.15957013,0.40206796,-0.14734426,-0.6324327,0.117709875,0.23750524,-0.44536182,0.6585632,-0.36156628,0.18504196,-0.03150668,0.27931213,0.39307973,0.31670514,0.007945093,-0.11599171,-0.18902382,-0.31050918,-0.07509236,0.3951589,-0.35649163,0.62769276,-0.1356494,-0.20792995,0.05504012,-0.5375711,-0.35888568,-0.79292446,0.07462288,-0.7459088,0.3759414,-0.044262853,-0.371852,-0.0032999455,0.53583854,0.35100374,-0.1038225,-0.16447009,0.17099375,-0.22850719,-0.18672103,-0.15779136,-0.2117962,-0.5466749,-0.57644457,-0.20247746,-0.393649,-0.3341775,-0.608872,0.24157186,-0.3965313,-0.20465331,0.019718414,0.60283816,-0.52465653,0.43393365,0.0851328,-0.18050598,0.24589801,-0.5731117,-0.19930352,-0.27526468,0.31669796,-0.17989358,-0.44759896,0.4861221,0.5016353,0.053643372,-0.01598596,-0.07822859,-0.33641765,-0.3693917,0.4490185,0.4913708,-0.07402962,-0.5002174,-0.093587585,-0.107026726,0.1678527,0.3326926,0.2479313,-0.33753574,-0.179288,0.07173734,-0.34037217,0.54727566,0.27359632,-0.23534909,-0.20812201,0.25755244,0.5815857,0.26308286,-0.35650662,0.025988542,0.09295952,-0.51834273,-0.1374996,-0.074050404,-0.28693944,0.5319207,-0.2690374,-0.0052795517,0.76543754,-0.26029208,-0.20565967,0.05067198,0.33130753,-0.16908377,-0.27379444,-0.27320126,0.2710575,-0.48899698,0.13116628,-0.060918607,0.81209284,0.15084675,-0.5466349,0.32644096,-0.6675911,0.112289645,-0.16879363,0.36903325,0.5743594,0.48533952,0.529211,0.5031224,-0.20420271,0.0695059,0.13910943,-0.37734553,0.26729205,-0.48793766,-0.040087763,-0.58409536,0.030998338,-0.06667514,-0.1714289,0.21503568,0.50836694,-0.51213694,-0.09108228,0.21791993,0.8817788,-0.2408954,-0.25301516,0.6904832,1.0249223,1.107359,0.12332807,0.9707195,0.14735575,-0.20747904,0.024760902,0.08417875,-0.5728404,0.2871644,0.40742198,-0.33905917,0.08481124,0.16125299,0.19716492,0.39671758,-0.3491255,-0.06694416,-0.078179814,0.33663824,0.14250304,-0.31075555,-0.4784384,-0.47167188,-0.24683051,-0.03129275,-0.13039224,0.3154682,-0.026046999,0.6123484,0.17339116,1.6412644,0.118900135,-0.023963284,-0.058695782,0.50694853,0.2680537,-0.20670106,0.030519776,0.47231314,0.0928464,0.23399638,-0.469007,0.19223776,-0.22909106,-0.33580735,-0.017997026,-0.5337336,-0.25091788,-0.001336561,-0.3129113,-0.15253948,-0.15184647,-0.16928948,0.61465055,-2.7480125,-0.10976785,-0.07380316,0.34885713,-0.026612906,-0.23113818,0.05740493,-0.48581523,0.39305124,0.2103056,0.668915,-0.65551823,0.18508019,0.5747969,-0.7102476,-0.23794135,-0.5305328,-0.2656601,-0.08954479,0.3427546,0.03467561,0.19705935,0.21806747,0.14965925,0.490767,0.041684527,0.27663505,0.3320916,0.30277303,-0.16999362,0.65303254,-0.062214192,0.59478384,-0.05444622,-0.2956838,0.25920668,-0.43364584,0.4265748,-0.06853464,0.08803756,0.74892104,-0.3403703,-1.0195683,-0.64089817,-0.24650253,0.97107106,-0.33048522,-0.39651147,0.39185134,-0.45186388,-0.30396897,-0.05219598,0.4631678,0.07608444,0.22041234,-0.7136467,0.038643833,0.012580774,0.12944265,0.037980914,-0.22632408,-0.38427565,0.80366975,0.054953158,0.4606763,0.21753,0.04849894,-0.6751716,-0.38186482,0.011543101,0.82020384,0.39386863,0.1286303,-0.30183855,-0.32931924,-0.58580405,-0.21265553,0.13531783,0.65069985,0.37584513,-0.26857898,0.14868157,0.37302455,-0.09689799,0.08592069,-0.1521505,-0.43317345,0.060131494,0.19546348,0.48703498,0.7998102,-0.2069624,0.63065153,0.13125896,0.30442107,-0.05057399,-0.595215,0.36680642,1.2243102,-0.092436716,-0.44789103,0.76237833,0.3717941,-0.28767997,0.45059967,-0.3855797,-0.1698424,0.6953606,-0.072420955,-0.48175433,0.027981723,-0.32487437,0.06927276,-0.7528244,0.4046454,-0.34105828,-0.68191075,-0.5141895,0.0008741211,-3.4757433,0.28004032,-0.09287741,-0.29009783,-0.09602508,-0.022355584,0.10426979,-0.8058775,-0.6409082,0.1815844,0.032005344,0.8023067,-0.23528747,-0.05561869,-0.19377719,-0.37807357,-0.066722356,0.19364247,-0.0018632412,0.4622912,-0.17762138,-0.49141702,-0.048700605,-0.06415264,-0.47543213,0.102716275,-0.5368152,-0.60051066,-0.20664263,-0.78654444,-0.30775878,0.7773966,-0.5408429,-0.0052107843,-0.13370779,0.12742537,-0.14826041,0.11128626,0.3226508,0.23086667,0.03775865,-0.0038082926,0.017902851,-0.18552142,0.34569943,-0.050744936,0.4244944,0.30463865,0.06560599,0.3117257,0.67943805,0.7386532,-0.11529685,1.0930051,0.36956614,-0.15759869,0.113525845,-0.31298873,-0.49243757,-0.49115896,-0.3006386,0.11261999,-0.41978976,-0.31932643,-0.07642606,-0.27257106,-0.7594356,0.7223633,0.16839825,0.16927162,-0.11723594,0.056284178,0.34945166,-0.13758065,-0.09878549,-0.1025073,-0.1804331,-0.7987911,-0.16958708,-0.59329796,-0.4976428,0.24194856,0.7892247,-0.46410915,0.099876665,0.02246513,-0.29031226,-0.026752071,0.36453012,-0.114936374,0.10479215,0.4818247,-0.09210324,-0.60287553,0.50996983,-0.16532977,-0.22505088,-0.55628437,0.4808497,0.6829853,-0.559808,0.64538294,0.38768956,-0.07153326,-0.33654737,-0.474352,-0.35944587,-0.1494521,-0.18405738,0.39131117,0.251301,-0.8411041,0.17789534,0.23737563,-0.5249026,-0.62425846,0.6886833,-0.2173328,-0.103086516,-0.08136778,0.42092946,0.19506198,0.04505429,-0.1479761,0.3241954,-0.33804312,0.16264898,0.2356084,-0.020687707,0.111473195,-0.20107864,-0.15338412,-1.002408,0.03731267,-0.37532148,-0.44327337,0.384387,0.040665966,0.03442307,0.20093927,0.18802786,0.21624042,-0.24180189,0.07290471,-0.12023737,-0.26792496,0.4021612,0.48454607,0.63670003,-0.4213812,0.59547395,0.16786303,0.079665296,0.07758251,0.079949506,0.27082595,0.12640128,0.6084942,0.11262257,-0.27659312,0.12715061,0.95213413,0.23987488,0.5280742,0.016401459,-0.060255397,0.04644161,0.016943855,0.35196775,0.1495863,-0.6575678,0.10551096,-0.49061635,0.117075875,0.6141553,0.12675768,0.20778097,0.08916065,-0.5494181,0.10257647,0.2748056,0.28792986,-1.5472916,0.51166165,0.33123544,0.92706853,0.37795562,0.19472603,-0.08152535,0.8561259,-0.16490275,0.16245122,0.32599476,0.07859147,-0.4567969,0.67243344,-0.9043486,0.5929833,-0.062888116,-0.03919095,-0.053668775,-0.03365369,0.41507205,0.8174385,-0.28265497,-0.058401596,0.16164479,-0.44968936,0.29412967,-0.55925816,0.11236167,-0.4170721,-0.40970194,0.6015573,0.6132084,0.36488488,-0.17169777,0.11317403,0.12868959,-0.17352547,0.20979346,0.10435278,0.10922458,-0.05545008,-0.69479126,-0.08758976,0.6588379,-0.3407236,0.3616487,0.04575086,0.13085285,0.41298988,-0.13014303,0.0873525,-0.06907255,-0.72914314,0.05100341,-0.25615397,-0.6559276,0.6468626,-0.20701951,0.14339325,0.15395346,-0.002960709,-0.061497297,0.7494524,0.18445323,0.72498965,0.07994963,-0.06454984,-0.1668158,0.14737347,0.11313858,-0.11090171,0.12918468,-0.3842864,0.10305774,-0.533458,0.43427172,-0.026390763,-0.50522876,-0.24921994,-0.08994809,0.056507107,0.4811822,0.049122766,-0.24357046,-0.21319653,-0.17689036,-0.21243763,-0.21302375,-0.04848151,0.29781997,0.22603394,0.023316002,-0.19198762,-0.16830207,-0.2958105,0.010818644,-0.33054522,0.5520771,0.35831213,0.035444953,-0.2434835,-0.17366572,0.12670302,0.3955759,-0.09863129,-0.17888866,-0.11954535,-0.30797628,-0.54366153,0.15899456,-0.1002882,0.5496884,0.16180521,-0.4191078,0.6922048,-0.3905091,1.2534012,-0.03957558,-0.61303574,0.28738537,0.43210995,0.02675374,-0.0337226,-0.17107543,0.83884275,0.49351108,-0.06355996,-0.07844572,-0.55652195,0.033170234,0.1786149,-0.20456795,-0.2565831,0.15225516,-0.563892,-0.05257939,0.30960804,0.21323456,0.3431091,-0.12568437,0.0079204,0.4817191,0.107699916,0.23543516,-0.50460076,-0.1644442,0.27828434,0.4295936,0.09592898,0.10253727,-0.4187841,0.41152573,-0.50802237,0.20119077,-0.5175383,0.25839984,-0.5714043,-0.32301468,0.18358497,0.085635185,0.460075,-0.22263032,-0.28269994,-0.31855378,0.5859148,0.07251268,-0.0050067375,0.5140129,-0.24066238,0.0339104,0.10882418,0.37473536,0.74562,-0.43434438,-0.29696777,0.44269636,-0.5345974,-0.5434248,0.4085044,-0.62106395,0.2681185,0.20921141,-0.17197704,-0.6060159,0.033830173,0.26286945,0.17244394,0.043469448,-0.5786343,0.019948525,0.15280521,-0.47495106,-0.17903961,-0.2697692,0.21943521,0.34376028,-0.30426157,-0.3923581,-0.023725716,0.026607232,-0.21108575,-0.4936797,-0.084297985,-0.20128976,0.40140188,-0.088149264,-0.38559315,-0.15225402,0.11625431,-0.43892834,0.1978531,-0.037441686,-0.29066756,0.295866,-0.18841483,-0.023413874,0.8839747,-0.3920804,0.010610467,-0.576199,-0.5241754,-0.5153172,-0.27508456,0.35373572,-0.05108221,-0.08727198,-0.6519506,-0.16741954,-0.04193546,-0.097508796,-0.13754466,-0.39812985,0.43616316,0.123756744,0.33354878,-0.027352648,-1.0386761,0.24987644,0.16002284,0.20285009,-0.937884,0.46113223,-0.42279485,0.88475764,0.09716952,0.11521708,0.24051355,-0.21258926,0.0151646575,-0.14916779,-0.42294243,-0.51925236,-0.022338657,284 +932,0.45674267,-0.15614991,-0.51215583,-0.08574081,-0.37183523,-0.0071070683,-0.078133516,0.7549631,0.37447822,-0.41047165,-0.28985608,-0.06317583,-0.017711418,0.43090516,-0.17138956,-0.67193115,-0.08487744,0.18267323,-0.29057038,0.5938557,-0.21202712,0.47417602,-0.16512363,0.42447472,0.37697947,0.29592654,0.19763446,0.16245954,0.07427433,-0.43394583,-0.24321595,0.15730889,-0.35357943,0.10921946,-0.1654364,-0.47884533,0.09386783,-0.45103845,-0.4861288,-0.8177237,0.394481,-0.95120376,0.7254007,-0.033372935,-0.2581855,-0.0041523306,0.03258646,0.39213753,-0.0011747751,0.07819741,0.062895596,-0.19042373,0.20662731,-0.2605224,-0.33228686,-0.45935717,-0.37794334,-0.26546976,-0.34696046,-0.27616602,-0.2555175,0.21875161,-0.29855892,-0.035141166,-0.41623536,0.2880664,-0.5013644,0.013598258,0.024603032,-0.3958514,0.048591528,-0.7815778,-0.1968542,-0.19659299,0.063133895,-0.08443523,-0.16484834,0.40943202,0.13140923,0.25359127,0.028756263,-0.095518805,-0.1004212,-0.22395667,-0.024817629,0.5581426,-0.0385751,-0.34642324,-0.19388212,-0.18913239,0.6517223,0.43713856,0.1390267,-0.16805613,0.016718723,-0.12608862,-0.28802767,0.5193004,0.5529448,-0.2230952,-0.060562443,0.346755,0.52912,0.26787785,-0.38760427,0.16104446,-0.07663846,-0.3021758,-0.0825771,0.0908335,-0.23149252,0.63242674,-0.07012859,0.20361558,0.71264493,-0.23130402,0.13425583,-0.09870765,0.10721325,-0.23931406,-0.36996824,-0.57323605,0.25453904,-0.5028051,0.54079384,-0.36157933,0.6965835,0.10736056,-0.22491856,0.34480447,-0.60414886,0.24906562,-0.117361076,0.57145846,0.37487802,0.3610164,0.08971057,0.7719389,-0.34626067,0.14514972,0.10111158,-0.0787384,-0.15641278,-0.027469011,0.19653298,-0.35184163,0.059882794,-0.0981294,-0.26092204,0.10296404,0.45401305,-0.531966,-0.20160462,0.12372882,0.9858207,-0.35060677,0.24722165,0.9145416,1.1953734,0.87885475,-0.20629936,0.99817294,0.10099912,-0.25844377,-0.32743207,-0.14663766,-0.5088674,0.09246254,0.47781742,-0.08168474,0.22182602,0.047188494,-0.097524576,0.32239944,-0.41185415,-0.17315093,-0.1093801,0.17747623,-0.011148854,0.010928848,-0.5678207,-0.15591837,0.02546777,-0.0468209,0.28240377,0.28871468,-0.45809668,0.31910256,-0.19787498,1.0028542,-0.006213573,-0.056644022,0.23018852,0.637424,0.29733917,-0.22947101,0.34921005,0.33775273,0.56315,-0.23334089,-0.5875089,0.30943364,-0.41169044,-0.42817318,-0.08519042,-0.34826726,-0.15508498,0.34862044,-0.5107018,-0.24545845,-0.13673234,0.08208186,0.18677917,-2.333539,-0.15338424,-0.29176056,0.3455362,-0.20854296,-0.23954965,0.12735839,-0.47445914,0.39648315,0.32621774,0.4642103,-0.6078999,0.4080845,0.77701896,-0.56975937,0.09574892,-0.81146246,-0.14230913,0.01306786,0.4044029,-0.03574994,0.064462714,0.067829736,0.18502134,0.55891854,0.22167388,0.17476498,0.31035808,0.37800628,-0.26248613,0.32051826,0.0722223,0.59666955,-0.26922733,-0.107518844,0.36963177,-0.45275316,0.36498415,-0.3771045,0.06299705,0.6042176,-0.28953704,-0.6225209,-0.46202815,-0.19728903,1.1888452,-0.30574548,-0.60744256,0.24185105,0.09551747,-0.13658242,-0.10157433,0.75348276,-0.21045643,-0.14105652,-0.53944755,-0.14949371,-0.14575374,0.27207083,-0.026064811,0.03741069,-0.2877083,0.6023708,-0.07699814,0.5518458,0.1861578,0.48931953,-0.2598686,-0.44289857,0.012354601,0.6494682,0.6089214,-0.03833723,-0.25105482,-0.13773522,-0.16919775,-0.06866314,0.018836765,0.61332875,0.7006451,-0.16584387,0.0391266,0.45793602,0.03113706,0.043246966,-0.23690605,-0.5063171,-0.17712528,0.090468615,0.40133455,0.4070754,0.045272555,0.2282044,-0.017384302,0.25378254,-0.33806425,-0.52250046,0.4759225,0.8932685,-0.38018742,-0.089846425,0.7764376,0.46873072,-0.39381656,0.48480302,-0.96936417,-0.08419835,0.5082966,-0.07308259,-0.7226832,0.17591152,-0.15296794,0.104155414,-0.8386929,0.3933382,-0.4905763,-0.63054943,-0.6184831,-0.27146694,-2.7655213,0.08758883,-0.37031573,-0.19334674,-0.16576576,-0.31954715,0.04966662,-0.7453055,-0.4990287,0.28138086,0.13510627,0.5709579,-0.10197194,0.02602783,-0.44133285,-0.31713244,-0.4238076,0.27111188,-0.056448374,0.34386665,-0.26317695,-0.28958717,0.15127645,0.1229903,-0.43881884,0.040214702,-0.52184826,-0.1522594,-0.13020729,-0.51601404,-0.17009076,0.7063169,-0.2143603,0.2185871,-0.20316811,0.006724863,-0.027110301,0.118225224,0.29997814,0.2685667,0.011619014,-0.048911188,0.10351996,-0.32958275,0.25380608,0.15313727,0.36700144,-0.010959959,0.011765501,-0.11882236,0.5053766,0.5601871,0.10110155,0.8720465,0.24089421,-0.07232481,0.3014166,-0.056134127,-0.31542018,-0.66683614,-0.3984846,0.03279672,-0.3151197,-0.65335435,-0.10838643,-0.22577009,-0.78021187,0.53525966,0.24250437,0.4522913,-0.0077539654,0.32261765,0.44224384,-0.21396503,0.020540418,0.07117728,-0.008130502,-0.44276783,-0.19376937,-0.8346388,-0.26629716,0.20028402,0.5672856,-0.3284272,-0.08543418,0.1925488,-0.38252306,0.16188237,0.23294443,0.15970841,-0.21603526,0.37138966,-0.18203083,-0.530723,0.36656657,0.0130386,-0.0747083,-0.7020133,0.26800784,0.7373388,-0.75187594,0.54779,0.24672385,0.00012571704,-0.5873365,-0.556066,-0.21297717,0.088019855,-0.27078816,0.4558163,0.1780459,-0.5736759,0.19081424,0.19504724,-0.11298385,-0.4766092,0.7740284,-0.18907498,-0.42221645,-0.07945945,0.377703,0.14613798,-0.036916174,-0.06467212,0.279869,-0.31293088,0.29990503,0.32192305,-0.14388345,0.30247042,-0.15400241,-0.061428484,-0.8914812,0.26002917,-0.59263855,-0.19672452,0.17646438,-0.07775727,0.01814328,0.35227582,0.15434024,0.31894004,-0.19646087,0.3158943,-0.088863246,-0.39235947,0.78420395,0.30415523,0.4455325,-0.12806058,0.72117907,0.25317731,-0.3049773,0.43933028,0.17964822,0.5056293,0.13465877,0.6367238,-0.03658025,-0.097478434,0.276597,0.70174104,0.3247329,0.4052432,0.12364486,-0.0643235,0.11611898,0.1627406,0.26066992,0.024745546,-0.5428865,-0.16829287,-0.21055609,0.07430149,0.5434987,0.21361512,0.3044513,-0.04251725,-0.33231437,0.09001466,-0.09453117,0.0017454028,-1.2175651,0.28911862,0.26860315,0.9755001,0.3339178,0.14834021,-0.19493271,0.49172965,-0.12994318,0.04479554,0.22973603,0.31556204,-0.37949362,0.462338,-0.46238822,0.42042568,0.07087792,-0.0415823,0.14418529,-0.05766754,0.373786,0.7011236,-0.24485259,-0.026331257,-0.112055086,-0.21324696,-0.014326882,-0.3870492,0.1927041,-0.40648535,-0.49676597,0.5179711,0.48443422,0.3009117,-0.35053816,-0.022314651,0.04112561,-0.056741823,0.16854304,-0.010919746,0.006209785,-0.08807559,-0.442593,-0.32719895,0.4469782,-0.3796024,-0.15075488,-0.26076657,-0.3499111,0.20956235,-0.07138392,0.19120187,0.04393866,-0.8535855,0.15716022,-0.1542887,-0.4606322,0.13039349,-0.024330692,0.25211623,0.06745883,-0.10294444,-0.19946323,0.35791707,0.1786293,0.90760136,-0.20848916,-0.11899281,-0.50276005,0.023677267,0.16208813,-0.17178501,0.22060975,-0.21888013,0.14759187,-0.46810064,0.15704289,-0.066088535,-0.39533672,-0.1226419,-0.3408171,-0.16144739,0.46528438,0.029514248,-0.18691947,-0.05051315,-0.22322316,-0.3771168,-0.23951702,-0.105332635,0.21769805,-0.050067402,0.14555062,-0.27279136,-0.16686875,0.07482069,0.22632283,-0.0058119134,0.40488634,0.55122143,0.04789792,-0.5345695,0.047538877,-0.1649333,0.48895016,-0.29125038,0.0037236756,-0.018886112,-0.62390083,-0.35972247,0.24883513,-0.21027136,0.46010086,0.11037831,-0.2642066,0.8558107,0.11979075,1.1782933,-0.1710648,-0.59313387,-0.020215718,0.7423738,0.0031941046,-0.09537428,-0.23849815,1.0876517,0.5373407,-0.12502427,-0.08400233,-0.28193653,-0.06101158,0.24058224,-0.18206276,-0.19217712,0.00059187954,-0.6688438,0.031372838,0.29350662,0.41041258,0.20033832,0.0878846,0.09914096,0.5750887,0.10163036,0.48613843,-0.75282156,-0.27429092,0.27188966,0.032298222,-0.04906304,0.13196969,-0.42939213,0.3368651,-0.5846279,0.23694994,-0.4934551,0.1124067,-0.19846968,-0.4179869,0.14454482,-0.09302045,0.43604594,-0.5132527,-0.5316303,-0.17331348,0.4407302,0.14660268,0.17502467,0.56866586,-0.12789711,0.12939677,-0.09218553,0.6287447,0.9370987,-0.17901851,-0.23964876,0.34954703,-0.6300843,-0.8629418,-0.055142257,-0.38323805,0.005257742,0.055216443,-0.28061065,-0.43085334,0.21864952,-0.008094018,-0.29959977,0.068048336,-0.6019113,-0.17652653,0.14505012,-0.22376746,-0.25619653,-0.45126536,0.396375,0.6549024,-0.2945282,-0.47346294,-0.19967417,0.29395926,-0.2801761,-0.66968316,0.033548806,-0.15348844,0.48113757,-0.08860315,-0.4167118,-0.19370036,-0.09671453,-0.43439895,0.06417081,0.049084697,-0.23336744,0.20786247,-0.19078363,0.12345675,0.71513015,-0.13345839,-0.24133882,-0.6789662,-0.4126149,-0.70449823,-0.46221906,0.4146836,0.36818418,-0.08327657,-0.75307995,0.034718994,-0.3867157,0.1332088,-0.13724566,-0.32300013,0.42684296,0.123475485,0.7850748,0.07106393,-1.0283806,0.20646586,-0.0115798,-0.20939945,-0.42524797,0.57256097,-0.010967038,0.7710663,0.10598395,-0.033360694,-0.1658737,-0.41506612,0.31575057,-0.35255063,-0.37106588,-0.6574238,0.2973847,302 +933,0.4684005,-0.29137334,-0.55873173,-0.17480673,-0.29207385,-0.2072631,0.046012904,0.70513207,0.5075603,-0.27191126,0.02975729,-0.11627386,-0.116190456,0.5752968,-0.10203159,-0.7368686,-0.09105702,0.34881762,-0.38353977,0.2786114,-0.6111765,0.14184888,-0.096349075,0.61587995,0.2162508,0.1406962,-0.09097897,0.12189257,0.14896433,0.13986804,-0.042627707,0.37210786,-0.46238562,0.18353371,0.088857695,-0.49682721,-0.06489174,-0.7732414,-0.29011375,-0.72510153,0.28541648,-0.58572364,0.7360155,0.13399781,-0.42667243,-0.18766755,0.03703135,0.3151584,-0.39186522,0.013378799,0.15452917,-0.20715694,-0.055483148,-0.16989422,-0.2900345,-0.13622384,-0.6129087,-0.08854243,-0.31630886,-0.134686,-0.0050230245,0.28083718,-0.25825632,-0.04088575,-0.3268095,0.85703295,-0.32257575,0.038635407,0.24185258,-0.2071888,0.2170313,-0.5967638,-0.13823716,-0.16526632,-0.019159412,-0.16389836,-0.528572,0.3029373,0.17277494,0.600894,0.023636926,-0.24805783,-0.4261319,0.14568487,-0.08545396,0.65884286,-0.4332982,-0.33809614,-0.2727548,0.1878832,0.23521805,0.2251042,0.14699258,-0.41532552,0.084115036,-0.0022281788,-0.13643998,0.5527413,0.5380192,-0.28202206,-0.2308155,0.16188668,0.32523528,0.122294694,-0.09142816,0.2148692,0.03785711,-0.58446884,-0.2839738,0.07716837,-0.13751024,0.46980068,-0.094217986,0.0053437245,0.6189314,-0.27574873,-0.25212085,-0.07853776,0.071629554,0.23453006,-0.73840994,-0.63231885,0.4749374,-0.36154887,0.15712357,-0.06476854,0.7025884,0.19925351,-0.8259119,0.33516127,-0.65449864,0.14652663,-0.1638642,0.48108226,0.8039862,0.49149665,0.40060616,0.8038423,-0.4643385,0.18895093,0.044157937,-0.108121015,0.03366648,-0.01518929,0.2465017,-0.51688427,0.0019254684,-0.3065899,-0.4114092,0.32692787,0.18969844,-0.62717086,-0.22142047,0.21691318,0.66842973,-0.3659371,-0.07923826,0.93348885,1.3700706,1.3820934,0.03268179,1.3316827,0.36231005,-0.19690591,0.14422789,-0.21975422,-0.7055715,0.19468194,0.3605456,-0.25036743,0.48718452,0.20692764,0.10949382,0.5670855,-0.4640091,-0.15730502,0.0037262847,0.22035237,0.19206543,-0.2210513,-0.63095593,-0.26034537,-0.06815311,0.0828995,-0.32809314,0.19615966,-0.31941512,0.26989582,-0.10177832,1.4802302,0.1445924,0.07735616,-0.03808002,0.4082805,0.23054697,-0.29658726,-0.019055061,0.19741063,0.32784116,0.019900708,-0.64304787,0.012822729,-0.26905367,-0.3384143,-0.23650561,-0.23229192,0.05264437,-0.2549567,-0.36923495,-0.28560722,-0.093157165,-0.2524941,0.37749472,-2.4919508,-0.27911937,0.056348767,0.47526643,-0.15461063,-0.47088557,-0.23992105,-0.2856949,0.17239295,0.2713796,0.48768607,-0.56205064,0.549176,0.30658114,-0.5905805,-0.07041297,-0.7998385,-0.09512837,-0.11744211,0.18059371,-0.045028534,0.05325588,0.10300341,0.16821271,0.6409537,0.08833312,-0.08380123,0.2262662,0.5217661,-0.09564831,0.7347631,-0.1323713,0.6421273,-0.38817313,-0.22344169,0.18820077,-0.568371,0.04843353,0.31971684,0.07256234,0.5709024,-0.59815204,-1.1213433,-0.6090257,-0.09808645,0.8907175,-0.21870667,-0.28506553,0.4489751,-0.6467616,-0.49794233,-0.23327778,0.35915878,-0.09465738,-0.1636406,-0.76239705,-0.05703058,-0.034960967,0.21242024,-0.029504867,-0.014477518,-0.3693148,0.650551,-0.24311529,0.47818175,0.6378618,0.15545917,-0.39311534,-0.37890255,-0.093010716,0.79094696,0.3523381,0.116555095,-0.14413337,0.07222123,-0.04363923,0.041565634,0.21050578,0.7600178,0.79463065,-0.2598935,0.060526513,0.42427263,-0.19013649,-0.021830462,-0.062539466,-0.39787605,-0.27742508,0.23038378,0.6137971,0.7196438,-0.23223153,0.4435444,-0.015161053,0.22731651,-0.027657455,-0.45133913,0.19405493,1.1018788,-0.099460416,-0.42787316,0.7048035,0.24916087,-0.4676635,0.44332924,-0.4775996,0.10672334,0.37967718,-0.16715872,-0.2847651,-0.018578572,-0.25722873,0.0049996595,-0.9637989,0.29524982,-0.060522977,-0.86206263,-0.5101168,-0.30571947,-2.9547057,0.27940968,-0.23537415,-0.08375972,0.14991984,-0.19161853,0.10127889,-0.7166164,-0.73928696,0.15178709,0.1105537,0.47626552,-0.14544672,0.03511825,-0.21504249,-0.33006558,-0.40676343,0.33221045,0.1188539,0.40223664,0.32805803,-0.45922998,-0.022987844,0.0102524,-0.6330178,0.052286502,-0.6199892,-0.32442173,-0.07228351,-0.8576244,-0.3588988,0.726323,-0.14203802,-0.12319484,-0.30148867,0.094482474,0.025647586,0.31183326,-0.09741575,0.355156,0.14162011,0.07028748,-0.080441125,-0.02802114,0.055837784,0.121420175,0.37741297,0.14806259,-0.2975798,0.16123877,0.7276032,0.99980354,-0.118253425,0.85336757,0.6259767,-0.18348356,0.20776488,-0.35719296,-0.20748311,-0.5946668,-0.45036194,-0.20886718,-0.57166153,-0.3532444,0.08828186,-0.38977537,-0.9116331,0.577483,-0.12581539,0.18687536,0.14224233,0.29775605,0.38077796,-0.23086353,0.08861787,-0.23546715,-0.19174576,-0.37576276,-0.371745,-0.5113094,-0.52298284,0.14619544,1.4938358,-0.2682323,0.14994396,0.18253736,-0.35994053,-0.055836216,0.28704378,0.0140809575,0.28764343,0.3326416,-0.14914784,-0.5278886,0.00912081,-0.06641454,-0.12532376,-0.5677827,0.18752284,0.83387065,-0.5939507,0.9777531,0.021589572,0.062009525,-0.16902776,-0.7230446,-0.4064989,0.2074946,-0.10927935,0.65699065,0.34669808,-0.81527543,0.3969178,0.3712467,-0.36899385,-0.7580065,0.318099,-0.11812368,-0.2515666,-0.20158137,0.3579898,0.19173583,-0.13065217,0.0032880849,0.37605304,-0.39482898,0.21993865,0.19473638,0.012172645,0.19389246,-0.19668697,0.040249344,-0.8979563,0.024887638,-0.5556717,-0.21167606,0.13273588,0.06872511,0.14784132,0.0847702,0.19995667,0.5097706,-0.31151542,0.19726568,-0.18372874,-0.38160935,0.30067846,0.5759547,0.2680747,-0.44401696,0.3794552,0.045373198,0.02182417,-0.2320221,0.033088397,0.41820353,-0.00027370453,0.28722584,-0.1407403,-0.3524502,0.1875113,0.67087597,0.07792946,0.30909908,0.025798379,-0.05669812,0.20757885,0.15029007,0.18744653,-0.15408324,-0.41921666,0.15652446,-0.050837215,0.3042258,0.50889975,0.09593748,0.23263845,-0.2412024,-0.17059487,0.2520386,0.21247075,-0.06300292,-1.3038765,0.3719311,0.04743785,0.842448,0.6314258,0.17524092,-0.17172866,0.36917254,-0.27473682,-0.03143932,0.5296479,0.042585872,-0.32701382,0.5680716,-0.6743067,0.7088915,-0.042158548,0.05781865,0.056498088,0.28971437,0.6571151,0.7683891,-0.19990115,-0.09522318,0.0075521288,-0.13371386,-0.04777889,-0.45590365,-0.03355814,-0.5528357,-0.37011775,0.8245936,0.49677238,0.32907888,-0.3196263,-0.15928258,0.26434895,-0.083825916,0.27663207,-0.088805206,-0.111077316,-0.16322842,-0.6910909,-0.18575674,0.63204294,-0.055949662,0.02419557,-0.02316366,-0.19840178,0.34109572,0.106958434,-0.30809548,0.095705725,-0.7153014,-0.19937268,-0.3348007,-0.36610377,0.42913237,-0.34365866,0.037742183,0.10883882,0.16525789,-0.333235,0.47109345,0.22470793,0.85717624,-0.1240725,-0.028565867,-0.18452364,0.31574714,0.147439,-0.037048634,0.16613303,-0.37524176,0.023886291,-0.5944898,0.5225663,0.08210312,-0.38491362,-0.005616952,0.13008128,0.18496136,0.43572375,-0.43025225,-0.11925828,-0.12940319,-0.1393133,-0.32333115,-0.46148387,-0.35499462,0.41196978,0.034263883,-0.09524382,0.039871678,-0.18384123,0.006845738,0.52527386,0.12339842,0.19752832,0.22168303,0.2082542,-0.39544696,0.07125763,-0.14938487,0.4025442,0.08067305,-0.22635311,-0.28456295,-0.22877236,-0.25264433,0.023518898,-0.15854454,0.3634127,-0.13197942,-0.4378009,0.9793241,0.20396072,1.5073792,-0.26927623,-0.34259808,-0.06782117,0.46867684,-0.0036099092,0.19296208,-0.29214457,0.946841,0.62901413,-0.089049436,-0.15180343,-0.53681856,-0.15461455,0.24457246,-0.30128786,-0.34351158,-0.033222828,-0.62058836,-0.2317633,0.24185148,0.08824194,0.24152108,-0.09934039,0.2575529,0.3213761,0.08824552,0.22380473,-0.3180072,0.14757767,0.20870915,0.56424606,0.22020245,0.19419442,-0.35221758,0.25715986,-0.6902191,0.45602047,-0.31456676,0.1953945,-0.18864042,-0.281745,0.19693266,0.106887795,0.22429748,-0.16199178,-0.1426993,-0.097277336,0.8636549,-0.07366944,0.088124745,0.7459343,-0.27804658,-0.07549624,-0.08470762,0.36838153,1.1529298,-0.10380993,-0.14510423,0.29438028,-0.27546895,-0.70676285,0.33054093,-0.18361984,-0.111909024,-0.1124589,-0.19654898,-0.64510614,0.06457372,0.061797317,0.022001771,-0.045806695,-0.42980728,-0.23925166,0.47112226,-0.3176678,-0.12918948,-0.2476533,0.2623286,0.6607867,-0.20096263,-0.59962225,0.17699738,0.2439076,-0.18312454,-0.40709546,0.025803728,-0.4899712,0.29502597,0.13121867,-0.5994211,-0.038054403,0.1788671,-0.4551992,-0.1836391,0.33258963,-0.21209721,0.27526376,-0.2504472,-0.36863652,1.1529698,-0.03135599,0.48932743,-0.6330962,-0.6341962,-1.1632211,-0.21008329,0.25544944,0.11742105,-0.11928842,-0.8584614,-0.010508001,0.025555177,-0.41128695,-0.036748055,-0.39046127,0.42610896,0.16255316,0.36879092,-0.22487141,-0.8002231,-0.05214174,0.2896128,-0.07725346,-0.4740731,0.53809804,0.0704624,1.0130985,0.07176748,0.05455676,0.18030314,-0.41149303,0.33934945,-0.29059452,-0.36738938,-0.5733917,-0.33199573,311 +934,0.48699734,-0.15204857,-0.5283776,-0.33265272,-0.29386157,-0.111268036,-0.24971765,0.3006655,0.11385885,-0.31478143,-0.090320796,0.058271326,-0.12133822,0.29327643,-0.13976392,-0.96642107,0.0036252195,0.017615847,-0.6046888,0.24890834,-0.6728853,0.3129936,-0.14212888,0.49405468,-0.07608247,0.3180094,0.2289386,-0.09552881,0.12595193,0.11125238,0.050528847,0.008556539,-0.759496,0.06410973,0.032554712,-0.5507219,0.055848204,-0.28262183,-0.32429722,-0.62170786,0.46495584,-0.83249915,0.59146565,0.14630443,-0.18399215,-0.041310597,-0.051106628,0.31149092,-0.46259746,0.22098373,0.19994988,-0.31092313,0.15082783,-0.23403831,-0.08600376,-0.54088444,-0.5182199,-0.09134929,-0.64237124,-0.23775506,-0.25504726,0.12942328,-0.41703942,-0.029935122,-0.19540295,0.40662393,-0.57004744,-0.0799618,0.061828986,-0.18936838,0.15902166,-0.59724516,-0.26781556,-0.14851694,0.22780372,-0.11991697,-0.066565424,0.28339627,0.12193504,0.39362496,0.14412391,-0.1678021,-0.38428438,-0.06272634,0.08393094,0.46986726,-0.14243823,-0.36881372,-0.25516328,-0.18435739,0.064895146,0.18778786,-0.025684685,-0.41567022,0.1850368,0.19245332,-0.25126046,0.55487275,0.60657763,-0.32022306,-0.25531223,0.19187689,0.17823619,0.15465023,-0.1719993,0.24547252,0.10720513,-0.39707005,-0.2859515,0.12974894,0.051931456,0.68317735,-0.034577765,0.38674298,0.8463374,-0.40521514,0.045368865,-0.23872484,-0.11671738,0.08984787,-0.03672125,-0.3659231,0.3251275,-0.58695364,0.08948128,-0.31325015,0.8365791,0.11505771,-0.6748528,0.38231027,-0.65892583,0.04128855,-0.20504655,0.62927413,0.6478743,0.24357294,-0.027507717,0.61142516,-0.56179714,0.096782304,0.17135817,-0.4438179,0.1627047,0.0828751,0.09318192,-0.27294415,-0.23348957,0.10913383,0.08524013,-0.08806645,0.2668986,-0.28877097,0.07547039,-0.09088523,0.80604476,-0.40828,-0.009850327,0.744368,1.3021961,0.91044146,0.06190673,1.201598,0.38818902,-0.16648383,0.09146518,-0.1548811,-0.6786079,0.1517352,0.24643454,0.18267728,0.35338396,0.25720736,0.037039794,0.4159973,-0.3797548,0.03735604,-0.08766974,0.42027295,0.00011853196,-0.09202984,-0.46057317,-0.0700921,0.13204876,-0.023571383,-0.16187568,0.30697736,-0.117707305,0.31948617,-0.006681117,0.9241827,0.18834096,0.21551366,-0.18670999,0.57554907,0.18037914,0.10915694,0.052725866,0.1684925,0.41384533,0.08765131,-0.7582789,-0.013815999,-0.4139536,-0.3801957,-0.3131909,-0.3973628,0.07891648,-0.028927885,-0.51520246,-0.11381579,0.09793227,-0.096860886,0.29957566,-2.5022466,-0.2231858,-0.12472067,0.48861915,-0.14769563,-0.1453378,-0.000420695,-0.44359243,0.3836197,0.47488782,0.4138857,-0.6958514,0.5720434,0.5282025,-0.2770575,-0.05487512,-0.5783261,-0.053078927,-0.07824253,0.42391205,-0.15633434,-0.09559619,0.019608086,0.10669693,0.51385874,-0.039389577,-0.043841127,-0.056522083,0.52258533,0.069794886,0.47830403,0.20709716,0.5313632,-0.48883334,-0.15167962,0.17167863,-0.38769034,0.21776561,-0.040206973,0.19586869,0.34243062,-0.4304528,-0.95193094,-0.53928494,-0.40289316,1.1497512,-0.26230648,-0.28207418,0.3412116,0.080566876,-0.274755,-0.13298477,0.46290568,-0.2949,0.075380094,-0.6581617,0.1438073,-0.15787688,0.18521386,0.17274891,0.12144353,-0.40804625,0.52472425,-0.08342417,0.23325486,0.42957917,0.28653508,-0.03764349,-0.5492645,0.16274758,0.6538851,0.2785883,0.22473632,-0.20555815,0.05155163,0.0961574,-0.17205152,0.16938989,0.54107225,0.87015975,0.03859931,0.2146234,0.29976684,-0.21642537,0.14517497,-0.025927251,-0.35418874,-0.12977694,0.20621191,0.6108629,0.56309855,-0.30565688,0.42678025,-0.02482171,0.24015497,-0.25349128,-0.27339745,0.53525376,1.0339915,-0.022955991,-0.06649694,0.617258,0.48349622,-0.6728339,0.42466918,-0.6431727,-0.2294377,0.67933387,-0.1296929,-0.48039106,-0.121641286,-0.40920028,0.084923916,-0.9870943,0.51542383,-0.26554406,-0.6638277,-0.59848875,-0.43663236,-4.342987,0.16236562,-0.5326372,-0.09072249,-0.20201463,-0.2746231,0.46659964,-0.7492851,-0.41649768,0.1568198,-0.03999347,0.5425054,-0.041770637,0.11586895,-0.37526628,-0.012625131,-0.29163322,0.18888053,0.29947492,0.16657294,0.2274325,-0.46505213,0.12224662,-0.14453769,-0.5603836,0.12744902,-0.3349947,-0.46536866,-0.020494344,-0.62854695,-0.2983934,0.87374574,-0.19843978,-0.16040371,-0.31122902,0.013042232,-0.37450245,0.6718772,0.10460165,0.19520187,0.05192125,0.020361114,-0.19035791,-0.44369012,0.31682408,0.17940688,0.4022145,0.39273632,-0.24687771,-0.10838847,0.60670066,0.59211665,0.23612413,0.5784724,0.16950521,-0.070831604,0.46054032,-0.44955757,-0.350146,-0.6609595,-0.5985586,-0.2093134,-0.34156382,-0.6858681,-0.02790567,-0.4236941,-0.80368525,0.450638,-0.22114849,0.32820818,0.014234874,0.21371503,0.13314074,0.076480284,-0.08688713,-0.198421,-0.04911227,-0.39173767,-0.279535,-0.70401263,-0.71385914,0.053367976,0.94424224,-0.20358776,-0.28425,0.046472486,-0.3785083,0.1493584,0.09272983,0.17100956,0.26288244,0.1577428,-0.06981099,-0.7663677,0.46239948,-0.16398026,-0.14020227,-0.7216642,-0.20583306,0.83872527,-0.8809988,0.4788867,0.4763562,0.07504597,0.15555719,-0.39853352,-0.46858728,0.13546051,-0.11969223,0.46007708,0.074442424,-0.84454864,0.38540956,0.1222239,-0.13404597,-0.4830903,0.6051225,-0.01564935,-0.30097878,0.1605441,0.40778396,0.0427688,-0.20398337,-0.012418861,0.41852617,-0.45916417,0.28708532,0.13680036,-0.0024035086,0.72693944,0.045569323,-0.18844245,-0.57370895,-0.00035275656,-0.6244657,-0.1192632,0.029616768,0.073495954,0.1888439,0.2440493,0.106234126,0.44042665,-0.367435,0.14553337,0.044777013,-0.3837351,0.19423622,0.51638985,0.30375874,-0.50881296,0.6511271,0.12265032,0.12440313,0.14952493,0.21686195,0.485631,0.29777792,0.38724935,-0.037832424,-0.10196807,0.045277044,0.8262834,0.33989784,0.7055516,0.3118488,-0.06765068,0.4621971,0.280562,0.11259453,0.049015865,-0.1912097,0.038301047,0.21599227,0.22563706,0.4735718,0.07231162,0.2918224,-0.16364327,0.06123111,0.29016802,0.465458,-0.11563904,-0.92406064,0.30972832,0.2823146,0.5906171,0.3681091,0.14078541,-0.08796816,0.34986356,-0.14802566,0.0053829146,0.43953618,0.26907778,-0.5268545,0.678459,-0.31159925,0.5032848,-0.26258832,-0.07603144,-0.042822707,0.045787886,0.2838975,0.6518546,0.0630676,0.08393418,0.078406945,-0.20302452,-0.09569166,-0.5817742,0.23513876,-0.4220504,-0.0009882125,0.6401684,0.5127511,-0.079720706,-0.26452786,-0.15674515,0.13240875,-0.03573462,0.17818584,-0.19323932,-0.0018352811,0.066817366,-0.6800472,-0.44826975,0.5078829,-0.060249567,-0.0277188,-0.017433036,-0.23335628,0.3420273,-0.019415706,-0.03948448,0.10735244,-0.7202986,0.3005634,-0.296721,-0.4398569,0.42119452,-0.44789886,0.3574773,0.21479945,0.08286698,-0.41784617,0.11688113,-0.00988737,0.63823164,-0.006782104,-0.114397176,-0.6127844,-0.107497305,0.35802352,-0.28071064,-0.009183981,-0.47468817,0.09115205,-0.41754723,0.5342894,-0.14156534,-0.05377045,-0.28598768,-0.14440283,-0.03246473,0.5057092,-0.19171454,-0.05798119,0.30320942,-0.03481016,-0.19491576,-0.07789647,-0.4298179,0.2877157,0.04848856,0.069664314,-0.003072072,-0.27974054,-0.103863195,0.4682724,0.22919522,0.15611881,0.40312883,-0.050034884,-0.34490535,-0.33325908,-0.039723862,0.34802532,0.104735136,0.0058015017,-0.3145841,-0.5402326,-0.13061838,0.13898191,-0.17214209,0.05544009,0.033485234,-0.5076361,0.5788162,0.24501634,1.1395446,0.10087853,-0.38775015,0.20450737,0.52732986,0.07205567,-0.011303788,-0.4205513,1.142646,0.60333705,-0.31793082,-0.37399882,-0.40861753,-0.44510376,0.24768944,-0.3146711,-0.3908777,-0.17042428,-0.69481486,-0.084415585,0.14105919,0.26877987,-0.23486666,0.13195425,0.056056477,0.14625496,0.26351276,0.47207195,-0.7480819,-0.1823952,0.30339718,0.1867848,0.13621391,0.49228308,-0.33154345,0.39123014,-0.69584316,0.20302577,-0.56691444,0.09017467,0.010310072,-0.43186933,0.17190494,0.26881772,0.30474466,-0.1665646,-0.29690182,-0.29607078,0.57433826,0.042881206,0.42411718,0.7335869,-0.31525514,-0.048080076,-0.15642266,0.38222292,1.217146,0.062519304,-0.13007018,0.3465196,-0.3799736,-0.676449,0.16239502,-0.52258974,0.12597305,-0.35616443,-0.2584357,-0.5284029,0.25951645,-0.005227934,-0.34725177,0.21754393,-0.50997806,-0.37287217,0.34423044,-0.17325416,-0.44180834,-0.2398751,0.44871542,0.888669,-0.5291702,-0.14227237,-0.19746538,0.4664871,-0.13648714,-0.41556224,0.09446179,-0.33383435,0.42318618,0.14874892,-0.27608338,0.03634053,0.2858396,-0.26796797,0.35825318,0.51527476,-0.33659166,-0.023666918,-0.103683166,-0.2539055,0.9421549,0.102702506,0.24559838,-0.65721107,-0.44340497,-0.9772217,-0.50140375,0.30791637,0.35136303,-0.03396988,-0.58584255,0.0839312,0.15179019,0.043740574,0.10829906,-0.50591046,0.39138162,0.060759403,0.62755924,0.10174901,-0.83625835,-0.25042808,0.3268925,-0.42793977,-0.59399337,0.6244956,-0.43617496,0.763455,0.1418099,0.07332907,-0.14417495,-0.34480894,0.33660892,-0.5050946,-0.36820966,-0.56473964,-0.014416584,326 +935,0.5411735,-0.15567102,-0.6589112,-0.29457563,-0.4206849,0.086046465,-0.20403558,0.19810863,0.3128853,-0.39570454,-0.19617496,-0.119758,-0.06808455,0.67960286,-0.1426956,-0.89746004,-0.074757785,0.3062692,-0.695828,0.45862067,-0.46363223,0.30750823,-0.019288616,0.3478111,-0.032857504,0.18270983,0.42232627,-0.14865914,-0.030752659,0.026813777,-0.18637796,0.23571903,-0.8981543,0.373915,-0.09539385,-0.59128934,0.05773268,-0.49519718,-0.07009415,-0.8159464,0.46296242,-1.04966,0.7481256,-0.23231025,-0.30515385,-0.22424412,0.109224536,0.42627394,-0.436669,0.03621536,0.22551216,-0.34283745,-0.3414006,0.05966477,-0.3178017,-0.7368008,-0.653189,-0.06438944,-0.67653364,-0.03629782,-0.24349612,0.34955117,-0.33966997,0.1443678,-0.2612778,0.23262939,-0.5813614,-0.18511558,0.34849703,-0.15822044,0.06102692,-0.47678253,-0.10471019,-0.19419235,0.36420375,-0.10825178,-0.34367216,0.10975129,0.43988237,0.6480726,0.306244,-0.3619657,-0.19820283,-0.041004643,-0.12609024,0.62965006,-0.10428598,-0.37938178,-0.36069894,-0.16436054,0.5707969,0.3029084,0.106217906,-0.33284912,0.1433445,-0.099980354,-0.08183456,0.3409347,0.43651304,-0.4681161,-0.33599746,0.5030752,0.48819628,-0.059070583,0.028124245,0.26924735,0.16055062,-0.5460422,-0.2971295,0.23466001,-0.20534617,0.6649808,-0.23852535,0.2306893,0.80427796,-0.37087795,-0.002052188,-0.13618064,-0.1194683,-0.38769677,-0.1636644,-0.16606863,0.3587257,-0.5713578,0.14670391,-0.23775409,0.85377383,0.19354105,-0.72859186,0.34625554,-0.4678373,0.0711574,-0.25813496,0.74957776,0.88681376,0.44359407,0.33501437,0.9273606,-0.4352972,0.21323982,0.0951937,-0.41425866,0.033925142,-0.19431911,0.07732706,-0.39671916,0.18585259,-0.10687104,-0.056596387,-0.099002175,0.5058035,-0.52179736,-0.112357356,-0.014663144,0.59939456,-0.43586895,-0.29511297,1.0540043,1.172361,1.1567096,0.08029512,1.8208531,0.49848214,-0.11251438,-0.104995534,-0.15143895,-0.71095175,0.15925354,0.44917735,-0.61824214,0.55598015,0.24406752,0.10889919,0.59707916,-0.43788147,-0.07580203,-0.049237076,0.37352931,-0.15183607,-0.045456782,-0.6855187,-0.1391322,0.22970785,0.055126455,0.11878974,0.43344575,-0.14306487,0.61719054,0.28886643,1.3069475,-0.117612354,0.17446715,-0.09456344,0.36666843,0.142614,-0.13578638,-0.042667314,0.074447066,0.4821675,-0.2426555,-0.67286325,-0.074548654,-0.45588982,-0.3534671,-0.40411374,-0.23408818,-0.052993163,-0.14834066,-0.19798446,-0.27863893,-0.11263835,-0.2940502,0.58088183,-2.0294142,-0.4577622,-0.23887682,0.24842396,-0.2782017,-0.25391567,-0.20407413,-0.61042607,0.1897996,0.31183386,0.40020418,-0.7658783,0.4786638,0.4920936,-0.55395687,-0.17561609,-0.8317505,0.12933642,-0.19677725,0.34861618,-0.119718224,-0.42175102,-0.25415632,0.03833192,0.621542,0.24818125,0.13104503,0.17012753,0.6192789,0.24675244,0.572892,0.109739296,0.8179861,-0.4879453,-0.18432043,0.48310173,-0.2606213,0.5789144,-0.13685268,0.108193725,0.50189155,-0.5630807,-1.0329428,-1.0126163,-0.56494826,0.99361444,-0.42603645,-0.46858874,0.21244216,0.08011162,-0.1657797,0.0822994,0.39596805,-0.051351354,0.06844374,-0.7377835,0.012791103,-0.033871684,0.23164457,0.046968445,-0.0012812669,-0.49220476,0.71498907,-0.28108996,0.3337138,0.547903,0.39086455,-0.08312492,-0.66562885,0.014070288,1.0248458,0.35119227,0.09299403,-0.29417765,-0.32569543,-0.21706319,-0.25824702,0.103424996,0.5493888,0.82665217,0.0022583387,0.06866371,0.45516586,-0.06575544,0.12394179,-0.055168286,-0.38113424,-0.260556,0.1773749,0.6167927,0.6897055,-0.294201,0.3791125,-0.24735178,0.19896245,-0.061201654,-0.5389567,0.75370955,1.1718948,-0.3325419,-0.22806558,0.94573265,0.31349608,-0.43508512,0.6226695,-0.8042951,-0.3542966,0.52077526,0.033551857,-0.55180573,-0.2579849,-0.35693303,0.13759352,-1.2623932,0.40432903,-0.22981639,-0.47750986,-0.5511668,-0.119413145,-3.7646546,0.2392651,-0.21069336,0.024120975,-0.03258056,-0.22315615,0.32197624,-0.8671776,-0.8078733,0.3686673,0.064642854,0.5112149,-0.15898436,0.39724302,-0.42030337,-0.2776846,-0.22773339,0.25240862,0.29198998,0.21196114,0.0062361793,-0.6017881,0.3993549,-0.06078988,-0.48653948,-0.0442456,-0.7088366,-0.48440057,-0.24306835,-0.7574739,-0.32712504,0.7719051,-0.4356931,-0.2099372,-0.39255905,0.20087542,-0.34613526,0.42997167,-0.042014338,0.21800429,0.14991613,-0.05547464,-0.28747937,-0.07588556,0.3600139,-0.00070483575,0.36118975,0.26687977,-0.39937326,0.1654088,0.70703596,0.6589124,-0.11152716,0.89253616,0.3924692,-0.10343209,0.2976896,-0.16079082,-0.28502342,-0.8911771,-0.53031963,-0.34601614,-0.59831375,-0.7400167,0.019851191,-0.32219413,-1.0700547,0.7966762,-0.05956328,0.4011409,-0.22367696,0.24633265,0.39890796,-0.2290028,0.15432729,-0.19726948,-0.1757303,-0.70621336,-0.5767985,-0.6532187,-0.6944495,0.19973215,1.4769943,-0.19668259,-0.015094784,0.22139241,-0.440882,-0.014325416,0.18847877,0.20900954,0.20939651,0.62847686,-0.13087574,-0.85233706,0.39554527,-0.09804019,0.15556282,-0.52486193,0.030209249,0.866715,-0.81067425,0.6368402,0.45217684,0.0025279631,0.2113277,-0.7204184,-0.47803304,-0.08982853,-0.15187573,0.58985895,0.29647663,-0.7736445,0.5561331,0.15148364,-0.27145264,-0.8767283,0.53915936,0.036318548,0.3183439,0.23942262,0.48777017,0.25474778,-0.16236597,-0.35475072,0.18312722,-0.5543459,0.37771845,0.20910081,-0.078216486,0.34651053,-0.20930332,-0.21146172,-0.90134126,-0.06517119,-0.5027075,-0.16280162,0.0136930505,-0.04944467,-0.025766963,0.16260771,0.22010836,0.4328871,-0.63782346,0.10570125,0.06227517,-0.34772283,0.23338231,0.5579836,0.3733536,-0.553309,0.6755375,0.049013797,-0.11311076,-0.23403572,-0.031446915,0.46039537,0.3796999,0.24963838,0.12151974,-0.18475685,0.12562652,0.89261967,0.14829168,0.37845144,0.21008569,-0.18523496,0.3911931,0.3017063,0.32585526,0.12294848,-0.46780244,-0.0867621,-0.06366749,0.07683944,0.50534564,0.2441659,0.56191677,-0.19576493,-0.14998488,0.1434613,0.15678972,-0.07113483,-1.181067,0.20651956,0.17686616,0.71829534,0.58401316,0.043018185,-0.06150316,0.46334392,-0.48599234,-0.017603248,0.5418508,0.13281612,-0.33410498,0.66159135,-0.5302159,0.33936653,-0.32396257,0.020238398,0.18908477,0.16729961,0.2777166,1.0683181,-0.0774118,0.006482574,-0.17772926,-0.028656244,0.1657173,-0.30907372,-0.05982606,-0.5593968,-0.18379173,0.94611454,0.5044891,0.29218394,-0.25209424,-0.15599209,0.059359964,-0.08454302,0.2230447,-0.118247084,-0.030821258,-0.032486346,-0.5354428,-0.14978558,0.734462,0.22691299,0.031078942,0.10561028,-0.55814624,0.3338404,-0.37670657,-0.00033000382,0.010735667,-0.83367765,-0.22364236,-0.2387247,-0.41913635,0.3993151,-0.3294721,0.22844185,0.12688924,0.020249784,-0.24622259,0.11545732,0.07626164,0.81764674,0.12826414,0.0017040778,-0.32314435,0.06508956,0.396319,-0.3967763,0.18091537,-0.33511364,0.070958056,-0.6422993,0.59121925,-0.043796804,-0.3551511,-0.009796739,-0.19417578,0.10649285,0.4796302,-0.18683648,-0.16850863,0.45344508,0.054337326,-0.40178367,-0.3242904,-0.51834846,0.19044115,0.12469309,0.14505859,-0.19302537,-0.14189193,-0.2512354,0.31579354,0.15184504,0.04192461,0.26712233,-0.045353174,-0.3013055,0.061703943,-0.061757505,0.5082573,-0.00080114603,-0.2938447,-0.30415583,-0.40244198,-0.0959888,0.1837793,-0.05752571,0.11713534,-0.08813263,-0.33722115,0.8063697,0.31123832,1.3865758,0.05368843,-0.58063906,0.053208087,0.75212216,0.016913814,-0.024316866,-0.39536026,1.2690614,0.60285765,-0.19933552,-0.27060997,-0.5739575,-0.3825033,0.45587617,-0.34205598,-0.23641492,-0.04655608,-0.72948354,-0.15397745,0.37697238,0.27439085,-0.019413663,0.03464466,0.3783448,0.14946304,0.19205791,0.67811435,-0.7204905,-0.30238658,0.2397613,0.4783573,0.13625546,0.30082953,-0.2251175,0.36815625,-0.8515168,0.119090654,-0.64226717,0.10040843,-0.22386785,-0.36711302,0.18282847,0.20332527,0.42339724,-0.18695927,-0.30916336,-0.18054882,0.8297091,0.1260024,0.25934276,0.9573177,-0.3272468,-0.071671195,-0.008807746,0.38050506,1.3702046,-0.24569394,0.027471043,0.2714506,-0.20452166,-0.68162197,0.523353,-0.64323366,0.060953878,-0.07120537,-0.5835633,-0.6194852,0.18528296,0.08686963,0.05993961,0.29728127,-0.6702926,-0.0744195,0.30242288,-0.31585115,-0.13551451,-0.11337225,0.3520801,1.0183495,-0.40446803,-0.5622671,0.070216365,0.46605358,-0.18180245,-0.80826765,-0.2019785,-0.16834806,0.5352757,0.1259823,-0.35849792,-0.0031305307,0.15641205,-0.43909785,0.14507464,0.48444223,-0.2597107,0.22909941,-0.29197228,0.042951766,1.0117072,0.068972886,0.28026536,-0.80156064,-0.49876958,-1.0554785,-0.39510706,0.09300684,0.30704284,0.027901674,-0.48534116,0.19046006,-0.12448685,0.12197863,0.28352782,-0.61834884,0.49156865,0.15149781,0.70339465,0.02192561,-1.1273528,-0.04796559,0.2046813,-0.021089552,-0.53138757,0.62553453,-0.2838474,0.9970797,0.10062218,0.06264632,-0.051546395,-0.6269689,0.3627846,-0.47578773,-0.050523818,-0.9306566,-0.07780352,329 +936,0.5089712,-0.31802735,-0.81285536,-0.20682365,-0.29452607,0.07975662,-0.1473373,0.42172706,0.13501471,-0.65249616,-0.21798259,-0.2847972,0.05220417,0.67694336,-0.21712185,-0.7668041,-0.2597593,0.006675777,-0.7933204,0.6561151,-0.25887898,0.3726556,0.26541138,0.057820473,0.38751885,-0.06923194,0.3473206,-0.1534562,0.23960294,-0.2584112,-0.25109485,0.0607006,-0.62222636,0.35602877,-0.13707577,-0.5584494,-0.034295067,-0.46312657,-0.4076164,-0.6552139,0.269895,-0.9714027,0.72563213,0.12111172,-0.20074853,0.13387933,0.28955087,0.27715552,0.02326136,0.13082029,0.2170879,-0.00272756,-0.115934655,0.008931914,-0.47972992,-0.66956633,-0.5966206,-0.14012267,-0.70306814,-0.33159125,-0.20044747,0.009095442,-0.511053,0.11407154,-0.21393909,0.22439796,-0.494203,-0.19629388,0.18747951,-0.10352809,0.23024407,-0.60448587,-0.19591166,-0.18394302,0.23665819,-0.22497354,-0.13830763,0.25163922,0.24521047,0.45665914,0.014143915,-0.23653898,-0.08516416,-0.24949893,0.3344573,0.66848016,0.27825207,-0.45137805,-0.2591832,0.22696833,0.54334855,0.5287321,-0.016438575,-0.5679088,-0.20055428,-0.27489215,-0.19003941,0.6920268,0.38394654,-0.4140751,-0.29992402,0.52610755,0.4840655,0.33309102,-0.14853162,0.35076985,0.037164833,-0.4951659,-0.10176954,0.24721192,-0.13575892,0.5338282,-0.1221253,0.3015721,0.6558775,-0.35690418,0.043090414,-0.01637836,-0.11398752,-0.321167,-0.12325997,-0.20843767,0.19664723,-0.6763786,0.125656,-0.19692746,0.9740564,0.15428205,-0.71941084,0.24950868,-0.6266636,0.09042222,-0.16428037,0.7411204,0.6750451,0.37150052,0.19027595,0.9154637,-0.4577261,0.19600926,-0.27311823,-0.5537977,-0.22267394,-0.10671973,-0.22958437,-0.6291146,-0.03476964,-0.12603325,0.10132161,-0.11453269,0.7274886,-0.46377876,-0.1607779,-0.00037315759,0.80958056,-0.35599157,0.0009166869,0.77731586,0.8675379,1.175701,0.042630874,1.208012,0.11831212,-0.25416312,-0.10277519,0.04766869,-0.7391153,0.29848278,0.54800487,0.06646553,0.41807374,-0.067028545,0.24469486,0.030550253,-0.5167547,0.08045252,-0.14865208,0.34391123,-0.11817396,-0.077076904,-0.6222904,-0.18710397,-0.12378072,0.068394035,0.109081514,0.3399801,-0.15270065,0.43658936,0.08031785,1.4801277,-0.41164753,0.07708077,0.090351835,0.33137554,0.26276758,-0.17930788,-0.04520152,0.3466376,0.6228476,-0.00927477,-0.85679555,-0.08850505,-0.29851523,-0.38829133,-0.22095229,-0.49646062,-0.15948203,-0.18601255,-0.3818743,-0.11366271,0.04668224,-0.49740943,0.40910873,-2.4505863,-0.24345079,-0.30087128,0.1994449,-0.34711444,-0.32998216,-0.18550168,-0.64865214,0.3565489,0.33326617,0.5473697,-0.57681024,0.2942024,0.72427374,-0.5085642,-0.05259125,-0.70106757,-0.0641088,-0.13681696,0.33216354,-0.16102456,0.05522256,0.10318902,0.31691912,0.48353577,0.007343498,0.06874954,0.3404844,0.6639417,0.00024080276,0.6288882,-0.10542581,0.6941955,-0.40345404,-0.024268262,0.49479502,0.12604915,0.43996623,-0.30501482,0.1920001,0.5782924,-0.5734293,-0.7027149,-0.45288822,-0.54864204,1.1256211,-0.58832526,-0.3804819,0.32559454,0.11329207,-0.009009329,-0.08736748,0.44916105,-0.02431749,0.06978618,-0.7290934,0.12079305,-0.048468564,0.027617766,-0.09834595,-0.0566434,-0.35837862,0.6350061,-0.11360223,0.53464925,0.16812977,0.18999147,-0.14557022,-0.46903965,0.1772307,1.0866385,0.5432255,-0.039960314,-0.43261385,-0.23035145,-0.49335355,-0.07754011,-0.0026217157,0.3875429,0.80618286,-0.10269313,0.045443013,0.27368897,0.109699704,0.14462832,-0.18808016,-0.28713462,-0.034619704,-0.08162724,0.5690387,0.32978654,0.014631605,0.7313804,0.045041595,0.17019354,-0.301095,-0.58836645,0.36716473,0.8383,-0.08172953,-0.35807037,0.80143017,0.60011166,-0.12146699,0.5006595,-0.63712096,-0.37952605,0.63630116,-0.35188067,-0.5625674,0.51506203,-0.35946527,0.16921511,-1.0088692,0.104431204,-0.24024068,-0.38382876,-0.2523985,-0.107367344,-2.4417634,0.27485254,-0.22704378,-0.16429879,-0.14258566,-0.19218569,0.17259659,-0.42656282,-0.76915413,0.1629843,0.06948177,0.7128401,-0.111290194,0.08273411,-0.0706646,-0.19602905,-0.34861383,0.36362875,-0.120130904,0.38475922,-0.07729836,-0.40194806,-0.030381268,-0.07251071,-0.3255578,0.1177638,-0.37421626,-0.42183,-0.05867893,-0.51953846,-0.17542611,0.68213534,-0.20516528,-0.03924211,-0.009657302,0.009902882,0.13841489,0.103481166,0.072530314,0.17708446,0.07120922,-0.1266798,-0.16366754,-0.26133844,0.4661626,0.10521603,0.27469423,0.29694036,-0.16313982,0.22372168,0.45231116,0.44480088,-0.1702357,0.83543456,0.3175692,-0.21743408,0.17737347,-0.11657598,-0.26630542,-0.6994943,-0.2991741,-0.05853246,-0.46288407,-0.76052403,-0.09268414,-0.20689778,-0.8639101,0.5890058,0.23679328,0.5304054,-0.21861662,0.29185763,0.39277804,-0.057548415,0.032104794,0.03443941,-0.23054615,-0.550209,-0.3712389,-0.82863426,-0.4141241,0.21274537,1.3462348,-0.4319873,-0.16930579,-0.14443474,-0.33853987,0.20674363,-0.026514774,0.19655548,0.29669115,0.28807366,0.13139838,-0.58684254,0.6636208,-0.0145792635,-0.029795371,-0.41604242,0.13754381,0.7929523,-0.6297568,0.04186642,0.30811036,0.02668017,-0.12855572,-0.5367015,0.039261293,0.19425505,-0.31816968,0.35178262,0.1927453,-0.6500529,0.4092271,0.21537885,-0.22729798,-0.9369251,0.60843986,0.07882141,-0.16959228,0.09032758,0.42333964,0.17791034,-0.057100818,-0.41157445,0.29651618,-0.37893394,0.3899902,0.34129024,-0.0804283,0.27761707,-0.29246598,-0.44531262,-0.7727314,0.13607243,-0.5170458,-0.2592246,0.24311072,-0.017631533,0.095690794,0.3287449,-0.0062744725,0.4822672,-0.35033613,0.14083366,-0.00042222303,-0.31461117,0.6591506,0.3819462,0.37161618,-0.33179387,0.763602,0.17582594,-0.14865552,0.064825945,0.2493186,0.45051393,0.016683893,0.28412586,-0.013536015,-0.36390302,0.4240893,1.1368527,0.14923412,0.18434663,0.31700325,0.013011336,0.08002459,0.16170023,0.1272039,-0.09016326,-0.59825224,-0.2206133,-0.14767553,-0.012478124,0.54079145,0.18254758,0.3427514,-0.142396,-0.21157217,0.07268929,-0.005941467,-0.016185122,-1.1870773,0.10889853,0.08401413,0.65839,0.6030371,0.1227672,0.08644556,0.34005582,-0.41260484,0.025679938,0.22732696,0.09895923,-0.37884703,0.67839384,-0.47431853,0.6012075,-0.20373407,-0.02126903,0.19538894,0.0548194,0.39212912,1.0104923,-0.16299285,-0.0091793975,-0.04359258,-0.30409572,0.21695064,-0.4659565,0.004526344,-0.65526253,-0.47460088,0.7401404,0.4073005,0.274843,0.09236274,-0.074186176,0.005859765,-0.09306658,0.09500484,0.08752572,0.019350886,-0.04909217,-0.5186268,-0.12112133,0.59168166,0.05647708,0.090502314,-0.043199405,-0.19307798,0.2780042,-0.13619484,0.083043694,-0.013799516,-0.8408321,-0.16697152,-0.6072248,-0.60502714,0.083737165,-0.28732368,0.28485292,0.24283212,-0.14078422,-0.103037335,0.10247434,0.3843154,0.77187574,-0.19303657,-0.2143878,-0.40954277,0.11098025,0.21158639,-0.28693178,-0.057093356,-0.087908745,0.13659881,-0.86515695,0.59058297,-0.057623457,-0.41907704,0.06784095,-0.26040748,-0.17829247,0.6009707,-0.06932576,0.00900792,-0.051349856,-0.41201115,-0.32865298,-0.23073682,-0.2569082,0.19445838,0.12881361,-0.11873818,-0.11131742,0.050369024,0.036863707,0.26062036,-0.0029669187,0.35407087,0.25083694,0.09979921,-0.4606892,0.051043645,0.17706752,0.54148126,0.014944294,0.108548634,-0.045136616,-0.29722306,-0.3359788,0.12291931,-0.21831228,0.3246553,0.16794632,-0.27048934,0.73526025,0.14307469,1.0372028,0.12845224,-0.49321443,0.14649326,0.53370166,0.12035446,-0.2862302,-0.17182961,1.0820167,0.6508058,0.044513825,-0.30872703,-0.52190787,-0.23400389,0.22253461,-0.31943858,-0.16900617,0.33836517,-0.39525613,-0.29080993,0.3515061,0.021985842,0.18570599,-0.31161642,-0.03470006,0.20905614,0.024818247,0.3495545,-0.6742637,-0.27747074,0.05994372,0.11563821,0.05791438,0.082409926,-0.5655164,0.41394737,-0.79631007,0.22746111,-0.25103667,0.17358145,-0.092048906,-0.03446833,0.29314366,0.15017357,0.52904356,-0.39333865,-0.4594424,-0.20123562,0.74149036,-0.03239083,0.19503213,0.7952085,-0.3077367,0.15353036,-0.035328757,0.5336807,1.2995689,-0.11457232,0.043745376,0.39903033,-0.56576496,-0.7471064,0.34089032,-0.7893278,0.50738716,0.06965,-0.28214967,-0.33313182,0.33562323,0.23309174,0.09571753,0.11966608,-0.6235446,-0.14945564,0.34534088,-0.2861984,-0.28328478,-0.4555362,-0.05440725,0.6632714,-0.24952866,-0.32653582,0.06726727,0.20886122,-0.28193483,-0.78914547,0.027734486,0.0324126,0.15407392,0.012642189,-0.16348846,-0.027746003,0.03817972,-0.4658108,0.03146269,0.16259342,-0.26395184,0.08477233,-0.2674325,-0.039631642,1.0377537,-0.4432887,-0.39937228,-0.5868929,-0.55419594,-0.768554,-0.39381483,0.62205166,0.092442185,0.201277,-0.6074738,-0.0030019013,-0.111808494,0.12632363,0.034995016,-0.3021033,0.51365733,0.0943396,0.3355086,-0.06320444,-1.1704866,0.40891477,0.054628752,-0.36686116,-0.6499204,0.52456343,-0.078377254,0.7301786,0.23067011,-0.034917142,0.35183853,-0.6515842,0.25626156,-0.17140085,0.022899134,-0.8263118,0.19419384,350 +937,0.6376568,-0.1266958,-0.86025375,-0.1667313,-0.20108327,-0.21506327,-0.30618224,0.61569506,0.1866024,-0.6133633,-0.14182673,0.019732475,0.004029323,0.25807813,-0.30295327,-0.60266644,0.19825964,0.12880082,-0.48593023,0.36395875,-0.5410373,0.21954961,0.118510135,0.5998411,0.36556098,0.19418277,0.14202927,0.0056024953,-0.24925388,-0.45146272,0.047101546,0.24455313,-0.61870015,0.20146535,-0.18468815,-0.56373966,-0.07369244,-0.52387315,-0.24613571,-0.87217194,0.16963015,-0.93734723,0.50953275,-0.053197697,-0.33518934,-0.043972544,0.32045925,0.49456587,-0.051327195,-0.056717332,0.24831098,-0.21650225,-0.24584116,0.021386618,-0.17123881,-0.47180787,-0.54302734,0.12193661,-0.39320326,-0.1142275,-0.3094156,0.22567138,-0.50730884,0.044446435,-0.23669897,0.4659743,-0.28956935,-0.29929343,0.29077053,-0.1568016,0.38562152,-0.53876734,-0.10180376,-0.184623,0.26302457,-0.33985087,-0.3099229,0.034560993,0.22295041,0.39261657,0.13099207,-0.2258818,-0.18923269,0.017436933,0.1262851,0.44995755,-0.21924797,-0.52978516,-0.2920409,0.094566576,0.2553585,0.32622957,0.09849808,-0.27599433,0.040431537,0.24339381,-0.3166832,0.6999315,0.41816247,-0.23408669,-0.042250928,0.13702425,0.29734635,0.4106024,-0.24409844,0.2267962,0.08440896,-0.6482633,-0.20564885,0.10893195,0.08681163,0.5018381,-0.16586265,0.4412938,0.81789875,-0.18726367,-0.045828406,0.40307617,-0.014616034,-0.20964298,-0.25837305,-0.26077712,0.29825595,-0.75984454,0.3445566,-0.27876914,1.0128227,0.0644751,-0.7035966,0.18690108,-0.65821165,0.05836694,-0.24859676,0.5671963,0.7547311,0.41746894,0.18701796,0.8017141,-0.35977545,0.07787089,-0.09924908,-0.5064734,0.012344653,-0.13737498,0.21856436,-0.44083786,-0.20734343,-0.072070025,0.11376477,0.07619274,0.41080332,-0.39074615,-0.3028576,0.14590448,0.76118016,-0.28391582,-0.11254751,1.0282043,0.89061224,0.9639833,0.21443714,0.9170345,0.07146701,-0.021420462,-0.04680976,0.2774718,-0.6721255,0.49248636,0.28677467,-0.19885674,-0.08656266,-0.041709676,0.05472562,0.6601502,-0.38611242,-0.08084268,-0.2414606,0.21228217,-0.09387147,-0.23052135,-0.46088088,-0.21350503,0.14754638,0.11193674,0.17010732,0.2360937,-0.011534518,0.57233447,-0.06661475,1.1288064,-0.16205448,-0.02499278,-0.07647473,0.5508066,0.10985238,-0.113143705,0.0076007084,-0.27876604,0.4018611,0.071789935,-0.478209,0.074698806,-0.14111827,-0.34709758,-0.19014816,-0.33703324,-0.24005832,-0.22682372,-0.5530277,-0.06050491,-0.18595861,-0.43617487,0.38129798,-2.6313958,-0.22555159,-0.10959633,0.09068302,-0.20932513,-0.37734985,-0.19919275,-0.57499814,0.730623,0.22035135,0.744602,-0.56425244,0.50857717,0.47263443,-0.5639156,-0.065082476,-0.81885505,-0.14918767,-0.08333971,0.3193645,0.23396832,-0.17948078,-0.16299157,0.03275223,0.70230526,-0.08578091,0.04400684,0.07898878,0.36288863,-0.28131688,0.7117011,-0.019961419,0.72803587,-0.5827487,-0.27884886,0.40816566,-0.33765143,0.10042636,-0.16568312,0.12932502,0.45640424,-0.49397984,-1.0798537,-0.7531017,-0.30014506,1.2942865,-0.1142009,-0.34043658,0.33010775,-0.30477107,-0.29873285,0.32343912,0.54753786,-0.19829105,0.17356569,-0.7655537,-0.01488309,-0.33661097,0.03372258,-0.108319044,-0.06541116,-0.53399426,0.60439736,-0.036027286,0.28694752,0.34151947,0.13429625,-0.32317308,-0.47168368,-0.011198381,1.1143479,0.38817587,0.22429118,-0.40415135,-0.072773926,-0.61348873,-0.031784836,0.057647314,0.7843122,0.88496435,0.03757544,0.14981355,0.2062695,-0.051161405,0.026513398,-0.08297077,-0.43937206,-0.24524342,0.023658244,0.6978905,0.5652098,0.15299836,0.5507307,-0.18128164,0.4893013,-0.23896341,-0.4288619,0.66031694,0.5908161,-0.20780925,-0.35293448,0.7820392,0.5149336,-0.033845406,0.49168625,-0.5353641,-0.5694043,0.3959752,0.06606024,-0.5911688,0.14383596,-0.46880838,0.24548583,-1.2050495,0.12981738,-0.6789741,-0.8450132,-0.46976936,-0.23310103,-3.6198547,0.32456455,-0.22767463,-0.07996345,-0.35408154,-0.31360272,0.29219168,-0.3960932,-0.70815897,0.018926365,0.01574956,1.0463939,-0.13651547,0.08141626,-0.25263163,-0.17854749,-0.24047233,0.098672085,0.28802758,0.23811017,0.03581917,-0.28352633,-0.08975475,-0.22487086,-0.5265351,-0.072729975,-0.8087141,-0.62099284,-0.00070104277,-0.45228264,-0.42676076,0.6417768,-0.37455264,-0.03945091,-0.1776256,0.039146617,-0.035271432,0.6037579,0.13062023,0.042709745,0.17800412,-0.036948327,0.06942697,-0.30079415,0.08007354,0.0914511,0.29766354,0.36126855,-0.13042176,0.34152985,0.61068803,0.85055995,-0.018135542,1.1216956,0.31801525,-0.050389852,0.21015826,-0.2947415,-0.6324263,-0.3964096,-0.1044401,-0.034986213,-0.4061909,-0.22079779,0.082273334,-0.27413815,-0.7747374,0.71046805,0.25029376,0.016673446,-0.18563937,0.34911394,0.3478484,-0.29160893,-0.22274238,0.03784961,-0.070326,-0.5522217,-0.21101926,-0.56639177,-0.71403044,-0.50239444,1.1065084,-0.17230095,0.2791315,0.04515846,-0.030500846,0.13129827,0.12817138,0.005493821,0.08807883,0.43047154,-0.1494168,-0.8028568,0.3755732,-0.4156019,-0.15018986,-0.69999397,0.2196683,0.8458933,-0.67890143,0.39757603,0.59784585,0.1841467,-0.24070325,-0.49953744,-0.112020016,-0.03228065,-0.1298827,0.48788702,0.27926943,-0.9122214,0.6637299,0.53610426,0.084365375,-0.7123365,0.63659036,0.19301344,-0.29525563,-0.051214717,0.41470882,0.06762517,-0.02886924,-0.1686695,0.3597285,-0.37790975,0.319718,0.0897336,-0.11523687,0.5613283,-0.2411428,-0.21893372,-0.569268,-0.009665695,-0.7208213,-0.32275584,0.13264082,-0.11450753,-0.0038584063,0.3614128,-0.103966124,0.34245327,-0.38881576,-0.006156378,-0.34690636,-0.32625648,0.28614518,0.679439,0.4652801,-0.5309222,0.8605166,0.23773375,-0.08151496,0.059728276,0.14614536,0.6009044,-0.13129176,0.6574399,-0.12245654,-0.10543304,0.053550765,0.98001903,0.0011472411,0.49014628,-0.05709349,0.07844227,0.0013735525,0.09032852,0.28213167,0.054984048,-0.6868998,-0.09409079,-0.5421036,0.13719188,0.5368511,0.044024084,0.35883087,0.021695338,-0.20205289,0.044737592,0.029307062,-0.12854493,-1.6194236,0.84616494,0.3521629,0.77695984,0.15099448,0.061469987,0.11223757,0.76900387,-0.18106434,0.23470503,0.19421753,0.14630906,-0.2822868,0.6009375,-0.8410016,0.5279431,-0.053207003,0.09895671,-0.049224116,-0.080276735,0.59570724,0.8183893,-0.17334707,0.23701324,0.056835912,-0.43000537,0.25489038,-0.42875358,-0.06828579,-0.5012712,-0.2072958,0.86089826,0.51949334,0.27126482,-0.23900089,-0.023763329,0.2241001,0.079663284,0.0026029618,-0.13220182,0.06653739,0.03748147,-0.66812444,-0.17127243,0.4444629,0.32559374,0.3585709,-0.063457325,-0.096378215,0.41529796,0.01762077,0.1518963,-0.2841368,-0.512911,0.04964707,-0.7013635,-0.45215356,0.2402427,-0.5959652,0.24588038,0.28563583,0.021427764,-0.03375903,0.34330985,-0.0220872,0.72283834,-0.08684499,-0.19808136,-0.32889712,0.21114501,0.27296627,-0.33759993,-0.4487035,-0.38823068,0.107460566,-0.49316072,0.20146655,-0.24771677,-0.59668154,0.3137448,0.0010652948,-0.02119726,0.36750194,-0.075693004,-0.0037243692,0.2524273,-0.15041353,-0.08039196,-0.22245806,-0.12799792,0.31584123,0.27517164,-0.03684401,-0.08189079,-0.14528647,-0.15127084,0.27662337,0.030846195,0.43660268,0.42873427,0.12152119,-0.42046392,-0.074169114,0.24899565,0.7223658,-0.12498551,-0.18008795,-0.3762743,-0.15431887,-0.3284458,0.19043283,-0.060984746,0.28717282,0.18002012,-0.15513149,0.6127685,0.083981685,1.0690193,0.06251751,-0.38901073,0.24225721,0.39895356,-0.19532953,-0.1619663,-0.4635062,0.9279945,0.2671845,-0.29266608,-0.04070907,-0.59610754,0.00935995,0.1463513,-0.16655217,-0.36979103,-0.08633385,-0.46589783,-0.18569335,0.37746924,0.47970784,0.16935903,-0.13222319,-0.016247392,0.35852757,0.017256064,0.33708555,-0.6315696,-0.03424794,0.19196044,0.46630457,-0.25051266,0.07829624,-0.5580792,0.32050678,-0.7172702,0.101946235,-0.44506186,0.30006745,-0.24255008,-0.28073737,0.2723402,-0.11484649,0.43747216,-0.34571794,-0.2520478,-0.05448518,0.3010602,0.35873246,0.22364436,0.6589041,-0.3069103,-0.04679406,0.1274841,0.54722476,0.9215074,-0.29584062,0.041963607,0.39043275,0.048509702,-0.43673185,0.3185466,-0.41268328,0.34141347,0.11586419,-0.3127086,-0.47198868,0.23483062,0.28811017,0.06265123,-0.044683598,-0.6015019,-0.08823776,0.41534746,-0.06372296,-0.35036346,-0.3905796,0.14902972,0.40893576,-0.099135034,-0.26605025,0.06038618,0.35771593,-0.05305999,-0.3512652,0.010089587,-0.10878564,0.19879656,0.07518529,-0.43773296,-0.11012013,-0.0561738,-0.5609034,0.25866315,0.12622762,-0.22404069,0.10737579,-0.114495374,0.026811618,0.9680809,-0.37881252,0.303819,-0.44749567,-0.4681641,-0.50901705,-0.20704263,0.26093596,0.1431657,-0.046875324,-0.5473538,-0.17289227,-0.10824435,-0.029012637,-0.012692484,-0.37124202,0.49325037,0.042779647,0.6260948,-0.09559026,-0.83979553,0.2205696,-0.070101924,-0.30635816,-0.5263772,0.4963993,0.09666107,0.6894813,0.105640404,0.15071443,0.32627535,-0.4967778,-0.07419088,-0.06587272,0.009934258,-0.9917124,0.033116058,365 +938,0.3878598,-0.23697208,-0.7560808,-0.22240216,-0.3888969,-0.041478023,-0.39649865,0.3147587,0.12915562,-0.3679042,-0.3982294,-0.10265458,0.2391973,0.4617985,-0.11690907,-0.7191696,0.2119775,0.4044766,-1.0130814,0.67787486,-0.7164018,0.3682739,0.23975077,0.38144988,0.060958266,0.27760088,0.46618843,-0.106236786,-0.07822712,-0.13396704,-0.1174161,0.11176183,-0.8013393,0.23481369,-0.20662369,-0.5727446,0.036705125,-0.5365686,0.08941009,-0.8696434,0.16510516,-1.0112517,0.6080397,0.04863042,-0.20527703,-0.32657358,0.35840005,0.4526839,-0.56146604,0.18388508,0.17714691,-0.39604786,-0.46962067,-0.31093925,0.011951962,-0.44588366,-0.6373972,0.07955952,-0.7416942,-0.30538443,-0.28921366,0.09135389,-0.26700214,0.1533949,0.06577966,0.24921495,-0.4928405,-0.15302792,0.119585685,-0.25868514,0.13835673,-0.545402,-0.0062796203,-0.3591073,0.71087563,-0.2083476,-0.44008273,0.6349865,0.48746058,0.48244238,0.29250157,-0.41825324,-0.13830568,-0.18957953,0.1748478,0.47785404,0.003033611,-0.46205598,-0.41193792,-0.16536579,0.42263296,0.43674266,0.117443606,-0.32271266,-0.067445174,-0.3245845,-0.21165037,0.40575027,0.57193494,-0.5126629,-0.27226242,0.3699174,0.5762089,0.2967557,-0.22206813,0.05791862,0.03374187,-0.7583093,-0.28744003,0.084040835,-0.10663957,0.62169456,-0.27476108,0.026576502,1.0112557,-0.16035928,-0.17915148,0.012001363,0.030139424,-0.3469227,-0.15010905,-0.26891357,0.32121992,-0.58117497,-0.060180567,-0.3772443,0.8085615,0.31714466,-0.7234091,0.43994868,-0.68886054,0.13736509,-0.16887902,0.66802776,0.8203409,0.52060884,0.51772404,0.8338356,-0.23253697,0.2004991,0.028707374,-0.43890473,0.112905286,-0.38202572,0.02848553,-0.5291342,0.25615746,-0.18807106,0.15472783,0.22839163,0.76960677,-0.44009352,-0.18244427,0.21214153,0.46973744,-0.37789962,-0.18336977,0.80159205,1.0673026,1.1541486,0.08688206,1.5341516,0.3978593,-0.23133044,-0.05467534,0.15537754,-0.8826923,0.18520314,0.38895255,-0.10709162,0.38459274,-0.0015023933,0.115690164,0.2685626,-0.49336156,0.10160358,0.010872559,0.42544606,-0.10604474,-0.1568017,-0.42525432,-0.23806962,0.24353462,-0.07197296,0.031552155,0.39055946,-0.062013734,0.5175311,-0.116037086,1.1907586,0.005141486,0.04081013,-0.09491174,0.6445801,0.37492812,-0.00080374425,-0.13026847,0.46529582,0.32622087,-0.05447607,-0.74887675,-0.0051933066,-0.4430499,-0.41470078,-0.14636606,-0.44126692,-0.1312051,0.0670781,-0.30849344,-0.25750196,0.14032349,-0.3349616,0.6032591,-2.307587,-0.38431007,-0.17581585,0.35357133,-0.16437201,-0.15053768,-0.4296654,-0.53593946,0.35888326,0.20543097,0.6395131,-0.66774374,0.5197883,0.4877966,-0.54473186,-0.3425563,-0.7408809,0.033061158,-0.178637,0.30071506,-0.03208595,-0.46280354,-0.15503551,0.051672403,0.86080205,-0.057004567,0.2110783,0.5860147,0.32397398,0.22671534,0.66590613,0.007502675,0.80521685,-0.5958731,-0.32381713,0.23275088,-0.39026144,0.4110491,-0.1954093,0.06855827,0.67267424,-0.77429765,-1.1769868,-0.69597465,-0.32155097,0.929884,-0.68561304,-0.4895109,0.20704287,0.12373755,0.091174535,0.22604136,0.6354193,-0.03720957,0.3081261,-0.62327117,0.024401354,0.14809927,0.3023369,0.14464271,0.06995103,-0.3128085,0.8238472,-0.1461059,0.67331225,0.30506343,0.15608256,-0.3981263,-0.51516825,0.2781181,1.0981001,0.25749025,0.06356366,-0.24912702,-0.4440067,-0.5545988,-0.46126565,0.027611287,0.4565837,0.830075,-0.1292217,0.20332886,0.23766023,0.015912237,0.058516968,-0.25202787,-0.34785405,0.046488818,0.10208678,0.57230896,0.78923357,-0.13083555,0.43975222,-0.12695977,0.50555086,-0.06774091,-0.64300126,0.79048383,0.7846073,-0.23796977,0.021554552,0.5542316,0.4892898,-0.5386024,0.77342284,-0.71676546,-0.6248073,0.720909,0.08810596,-0.31674093,0.24160375,-0.32643566,0.3219478,-0.85947853,0.3758166,-0.42898875,-0.12588225,-0.30974507,-0.16333094,-3.313584,0.48561695,-0.02240984,0.16127427,-0.31060046,0.004662655,0.1884851,-0.6997328,-0.7157975,0.18804522,0.15872315,0.7201839,-0.32453245,0.100043915,-0.31196406,-0.4815688,-0.07485613,0.34587488,-0.034996785,0.32499266,-0.15060163,-0.49152032,0.17041768,-0.13240567,-0.4920947,-0.0059898277,-0.79558414,-0.5314674,-0.16633761,-0.80947137,-0.3030462,0.6364286,-0.60088557,-0.008577073,-0.114039965,0.06744623,-0.23453626,0.06607444,0.038642243,0.3024256,0.06291758,-0.03322592,0.013871464,-0.24581103,0.3957486,-0.08215627,0.18746439,-0.11924615,-0.11199509,0.07602267,0.56642395,0.6695661,-0.29311648,1.1772107,0.3277176,-0.07709776,0.19728754,-0.3077013,-0.3011716,-0.64594454,-0.398198,-0.31283703,-0.5043005,-0.6018967,0.15412375,-0.1414159,-0.93644214,0.8381625,0.11416393,0.15396954,0.051377904,0.41529274,0.17042428,-0.21642455,0.027460061,-0.20542307,-0.16092165,-0.5838212,-0.29750234,-0.7789182,-0.46145403,0.038399242,0.91005534,-0.46790618,-0.12791617,0.023341803,-0.20219189,0.06591098,0.17798829,0.045477238,0.30516872,0.5195302,0.015380209,-0.8346433,0.41780195,-0.13815926,-0.11432552,-0.36184165,0.047591913,0.63803095,-0.94126207,0.6638978,0.5313566,0.014760955,0.10953698,-0.57215923,-0.23369789,0.0663753,-0.17142586,0.4770919,0.04114318,-0.96849597,0.623445,0.29294503,-0.64093703,-0.88430953,0.4589427,-0.11085358,-0.021898003,-0.030727327,0.4689206,0.12162048,-0.15824214,-0.55769056,0.021911843,-0.5619657,0.27156648,0.09178218,-0.03059242,0.4903941,-0.21899416,-0.46162987,-0.75871813,-0.058545467,-0.5364468,-0.19312996,0.2584864,-0.08968067,-0.151823,0.28501952,0.16583756,0.26776707,-0.48628035,0.19093294,-0.035438005,-0.3638017,0.27851832,0.4764817,0.39481962,-0.3885082,0.63568,0.11654013,-0.048617743,0.0063632294,-0.1557279,0.32071376,0.19917502,0.5027894,0.1357551,-0.1440602,0.17028981,0.75783044,0.21640204,0.4282618,0.3261825,-0.11264808,0.30422217,0.22793283,0.3548835,0.103186674,-0.4059694,0.060194492,-0.075673975,0.03854857,0.5938101,0.32816565,0.35584566,0.1697817,-0.18977575,-0.10336837,0.23819251,-0.036155127,-1.197276,0.5458799,0.25342077,0.62231314,0.5655725,0.12553807,-0.08527991,0.5728893,-0.47002304,0.013086501,0.30195987,-0.14345303,-0.37348825,0.7504946,-0.6217457,0.42297238,-0.3317973,0.053184744,0.23578629,0.2041515,0.40033987,1.0930908,-0.17181139,0.17934419,0.017650925,-0.043695446,0.18944122,-0.42278755,-0.190333,-0.30024338,-0.3254749,1.0512462,0.22998138,0.3988918,-0.24687782,0.001024297,0.046844736,-0.2848004,0.24197723,-0.043181613,0.16620807,0.13562304,-0.6356734,0.05527922,0.8440361,0.2389537,0.15998678,-0.008674234,-0.37020305,0.3845313,-0.321673,0.07491455,-0.18255988,-0.8041197,-0.054277387,-0.3600507,-0.57234246,0.48143092,-0.19055535,0.13743241,0.26127127,-0.037777845,-0.17907481,0.6221357,0.0793487,0.7232825,0.12126567,-0.33326447,-0.090189844,0.29326853,0.38748854,-0.4147162,0.18606086,-0.50596,0.03679975,-0.5209843,0.64773613,-0.12730622,-0.54069287,0.103620656,-0.08927498,-0.18614693,0.55171543,-0.10301059,-0.07977751,0.10971076,-0.094769955,-0.30353963,-0.2055915,-0.48942044,0.12749292,0.177654,0.08581226,-0.28981057,-0.11415741,0.026323937,0.41449106,-0.15931544,0.44016704,0.22442926,0.19317326,-0.19701004,0.26509717,0.13341357,0.608646,0.09575055,-0.14318845,-0.24784812,-0.26801765,-0.29368594,-0.03010726,-0.1032793,0.18239866,0.2308528,-0.15917255,0.83065015,-0.00073792716,1.2838949,0.04222499,-0.40732047,0.19775625,0.5776867,0.042930815,-0.16074233,-0.3108826,1.0870013,0.5020037,-0.31746206,-0.05852735,-0.5609688,-0.22499298,0.29295292,-0.35672522,-0.36976585,-0.05593356,-0.6559209,-0.55291575,0.26790398,0.32310084,0.26110613,-0.2549239,0.31532386,0.16768785,0.2699117,0.18324007,-0.8043661,-0.37787217,0.31116712,0.41960728,-0.15103608,0.1421103,-0.2865942,0.49099767,-0.9082687,0.18520388,-0.6088386,0.09219191,-0.28199747,-0.497546,0.109892584,0.043662723,0.29890835,-0.24571995,-0.31718618,-0.06317613,0.45424226,0.08209156,0.38294137,0.7755565,-0.27733448,-0.0956759,0.06440015,0.5467048,1.1993788,-0.43205306,-0.08840936,0.330214,-0.27223998,-0.6186645,0.44033882,-0.5879498,-0.05632758,-0.18915725,-0.5640276,-0.6535911,0.01357117,0.024995087,-0.0015966567,0.19431292,-0.81777954,0.027028143,0.2905144,-0.17244568,-0.27669916,-0.22640872,0.4250023,0.8754952,-0.27863026,-0.30845764,0.15339956,0.201313,-0.28261366,-0.69959265,-0.09821772,-0.2855687,0.5260039,0.18979074,-0.22999105,0.10264215,0.25695845,-0.62545794,0.12895916,0.2143827,-0.31398842,0.24400349,-0.3673955,0.11325943,0.9943966,-0.3012052,0.1158777,-0.3299035,-0.5868648,-0.9663875,-0.18672553,0.39124486,0.13145883,-0.023823934,-0.46854445,0.10479589,-0.113441296,-0.2973209,0.16853276,-0.50014514,0.42481068,0.047342572,0.51738095,-0.13960798,-1.1337304,0.25282988,0.2421164,-0.16592802,-0.81183165,0.45615652,-0.2708311,1.0946188,0.0674851,-0.22119536,0.18209243,-0.61174846,0.22163433,-0.4451151,0.28583968,-0.52959704,0.07400022,379 +939,0.433946,-0.119195625,-0.4921053,-0.057085373,-0.32679302,-0.21004061,-0.25874928,0.39942473,0.25271913,-0.072294146,0.19180638,-0.16967326,-0.14392978,0.57413906,-0.075377285,-1.0452224,0.00925089,0.103055835,-0.7576379,0.7653721,-0.44988206,0.25377938,-0.21745118,0.35857907,0.1912582,0.18713579,0.12555224,-0.15366274,0.20709096,-0.24053007,0.09357567,-0.030176379,-0.902038,0.22370343,-0.15995489,-0.2647091,0.17215453,-0.37856743,-0.6833966,-0.89267385,0.37621567,-0.5622221,0.4997559,0.16731669,-0.23786345,0.20961815,0.16393624,0.54839265,-0.26287538,0.010684892,0.31528145,-0.13928334,0.052737843,-0.1932937,-0.20671806,-0.6070333,-0.6451071,-0.16885568,-0.7184805,-0.30279472,-0.36071053,0.2855275,-0.49577674,-0.21624942,-0.110368244,0.452314,-0.52557707,0.21713771,0.1941208,-0.070922025,0.24605586,-0.6257328,-0.090437554,-0.1194922,0.031776436,0.053167637,-0.07814886,0.5513385,0.12551461,0.32051992,-0.06711128,-0.25119376,-0.24547528,-0.20348567,0.11348407,0.5599975,-0.14300384,-0.36286798,-0.16098265,0.1199969,0.068185315,0.17260857,-0.105202936,-0.51846004,-0.071122,-0.08236251,-0.17328459,0.6128205,0.5050677,-0.24768977,-0.40477782,0.3855867,0.43371192,0.5170757,-0.08185948,0.014996897,0.06291323,-0.475247,-0.10466959,0.16856529,-0.18536209,0.37209624,0.031896625,0.28321078,0.87333757,-0.21142846,-0.06907103,-0.14163472,0.19829582,0.16753612,-0.36417034,-0.23117803,0.1971578,-0.54820216,0.33265063,-0.10950744,0.99666846,0.052214216,-0.631554,0.31464356,-0.7173107,0.13421844,-0.017112168,0.5642379,0.6528172,0.34539545,0.30503342,0.74136925,-0.39595938,0.22930117,-0.026164683,-0.34240797,0.02780665,-0.17752336,0.22520533,-0.46179894,-0.20594558,-0.19959946,-0.00023564967,-0.07263473,0.31310186,-0.64671916,-0.19105512,0.15195945,1.0574435,-0.23141213,0.16346906,0.41525257,1.0327722,1.2500771,-0.075203344,1.2148736,0.3966045,-0.23517774,0.34339702,-0.2954826,-0.8425585,0.2353756,0.29924423,-0.16103727,0.32866934,0.07858991,-0.026094258,0.4342516,-0.4503458,0.07600356,-0.18179804,0.47561428,0.10438023,-0.18700486,-0.37731352,-0.20950828,-0.09916958,-0.01414968,-0.05573753,0.3538108,-0.43627885,0.0333232,-0.14446624,1.602618,-0.014989307,0.14084662,0.19421731,0.67247695,0.27010342,-0.02999581,-0.08518116,0.48684627,0.30978587,0.19283009,-0.78859746,0.12328731,-0.48525962,-0.25638297,-0.1885703,-0.30773515,-0.08112109,0.033751562,-0.40886652,-0.1450725,-0.16821441,-0.016947847,0.49942634,-2.5462215,-0.33322647,-0.16173464,0.30889314,-0.36140898,-0.15981284,-0.13593741,-0.4734646,0.49267948,0.24424754,0.5173137,-0.50798285,0.37674028,0.6132655,-0.6033043,-0.03431248,-0.5655591,-0.15660848,0.014168152,0.5868425,-0.0675838,-0.009472284,-0.028113311,0.23458098,0.5847048,0.09069078,0.131238,0.37657824,0.5866262,-0.10396168,0.53459835,-0.15507044,0.35909402,-0.37075785,-0.16251203,0.25457448,-0.39510718,0.46768942,-0.2734508,-0.002792716,0.59044015,-0.40028742,-1.044492,-0.32510307,-0.15625133,1.0058799,-0.32821512,-0.47607544,0.37022343,-0.057881773,0.06785241,-0.095485836,0.4640442,-0.12463972,0.14325204,-0.6168889,0.14983173,-0.2078442,0.35387343,0.0632675,0.0072237225,-0.24813908,0.6631407,-0.11320818,0.22190224,0.26538932,0.2391013,-0.38475198,-0.46928623,0.06107149,0.65082544,0.33010656,0.12353026,-0.24995016,-0.19580694,-0.21835676,-0.27360877,0.079907574,0.68670374,0.79509205,-0.23092085,0.17280546,0.36160916,-0.20047039,0.011090717,-0.2788061,-0.45191047,-0.02930299,0.14057396,0.48260844,0.8521168,-0.02878467,0.60168976,0.034132734,0.15699123,-0.2179514,-0.3732687,0.4107973,1.0522645,-0.20986448,-0.16978163,0.47438014,0.42218924,-0.4084421,0.5595425,-0.6606073,-0.3244026,0.6894112,-0.24418063,-0.46380377,0.086548686,-0.40393874,-0.25820896,-0.6364632,0.5425495,-0.45183823,-0.47162005,-0.53118515,-0.2514501,-2.8833337,0.21088682,-0.48067695,-0.07528681,-0.16874336,0.19556826,0.07823956,-0.6522561,-0.42586794,0.1666991,0.14372958,0.72662026,-0.17242077,0.21358271,-0.255137,-0.3109087,-0.46545088,0.21133451,0.033229675,0.26351136,0.045736313,-0.44714224,0.08159008,0.029891046,-0.36635953,0.059231922,-0.5593243,-0.3552895,-0.1413158,-0.6942333,-0.10655882,0.8109365,-0.3464081,0.02094577,-0.25606373,-0.010353581,0.0030396446,0.29391164,0.31809524,0.23423082,-0.00047278404,-0.057766918,-0.28562537,-0.34099105,0.2431686,0.015986634,0.44702914,0.2036498,0.042301048,0.0036019303,0.6151151,0.5641879,-0.004794262,0.9155134,0.3959472,-0.30760917,0.32367888,-0.30999807,-0.103888705,-0.54856676,-0.484752,-0.060069397,-0.30169562,-0.5360235,-0.11677668,-0.2786499,-0.6438472,0.5817513,0.011906168,0.35883555,-0.010759478,-0.04965302,0.3431856,-0.056036018,-0.13203627,-0.025390197,-0.13224429,-0.32481328,-0.3475078,-0.65017325,-0.4198224,0.523822,1.084174,-0.3940666,-0.206625,0.036423065,-0.2888516,-0.17846125,0.061475705,-0.0928055,0.2756456,0.28629336,0.26840815,-0.7316416,0.38487184,-0.032870747,0.06668586,-0.7793736,0.12731677,0.83358175,-0.6761976,0.63180757,0.13839386,0.15844855,-0.175946,-0.70063734,-0.2874486,0.21483727,-0.14838718,0.18300147,-0.020842364,-0.7167685,0.31387192,0.21115264,-0.6603302,-0.7981552,0.5579897,-0.08868072,-0.40957212,-0.018481864,0.43221417,0.32345474,0.011419047,-0.12291145,0.5495224,-0.33790606,0.2337638,-0.028326284,-0.22484417,0.34938872,-0.13870165,-0.2237277,-0.6838041,0.068889596,-0.34937224,-0.5753405,0.37893382,-0.013533755,-0.16228977,0.32865992,0.110095,0.32878783,-0.022845106,0.11742881,-0.110471636,-0.33720663,0.57616496,0.3844875,0.5931673,-0.5001981,0.7282579,0.10123153,-0.1387472,0.31917775,0.22696634,0.39603177,-0.06063156,0.6270829,-0.037107155,-0.031949017,0.14383943,0.93548197,0.19747171,0.56762314,0.0928378,-0.13913965,0.14556818,0.11491914,0.0055717095,0.040163502,-0.51361305,0.09219634,-0.15835091,0.10356229,0.6885668,0.14827342,0.25163934,-0.08904541,-0.4317695,0.11556984,0.27271846,-0.034993242,-1.3461627,0.3599541,0.20574325,0.7722303,0.44458216,0.17895229,0.07593587,0.7848613,0.06668921,0.023166437,0.3100708,0.08334212,-0.48205835,0.65756834,-0.7303093,0.54393446,-0.1852894,0.0708071,0.11844299,0.33250463,0.45739233,0.6383477,-0.30782703,-0.15294704,-0.15098943,-0.6053091,0.02676666,-0.2680511,0.5116648,-0.51184946,-0.61788106,0.42674103,0.7571234,0.058559474,-0.09848046,0.06664393,-0.05906938,-0.18761374,0.10373402,0.025202584,-0.29094225,0.19985951,-0.72765726,-0.012620238,0.52948385,-0.23749326,0.0773035,-0.066654444,0.12987748,0.32844165,-0.37259862,0.09116921,0.07340419,-0.80309397,0.14671355,-0.27642143,-0.3731435,0.29964554,-0.24823256,0.35390428,0.116194695,-0.008307883,-0.35257104,0.48454902,0.04016542,0.88372785,-0.27998415,-0.29120293,-0.4233391,0.087461494,0.09753496,-0.15517558,0.09445607,-0.411469,-0.1217723,-0.6555323,0.3159492,-0.25106916,-0.3009611,-0.17753276,-0.2633665,-0.13541101,0.6978851,-0.059389427,-0.14033462,-0.2766539,-0.5358835,-0.27842295,-0.13282599,0.019225864,0.29731205,0.20657654,-0.16441809,-0.30439532,-0.23771177,-0.14655682,0.2834663,-0.15155637,0.3695384,0.1574278,0.5020333,-0.17412828,-0.09998827,0.1715853,0.5867535,0.13135894,0.089952715,-0.1417024,-0.34659413,-0.49728444,0.40964186,-0.2813028,0.30240613,0.11629564,-0.41037214,0.95427614,0.21481696,1.2682018,0.03428265,-0.19558357,0.25017154,0.6221133,0.01893266,-0.08736627,-0.48382375,1.0193394,0.7104939,-0.05247076,-0.18191361,-0.21133782,-0.29694343,0.26546848,-0.39513782,-0.16246194,0.035978425,-0.5067677,-0.12506622,0.22795461,0.24550194,0.0895624,-0.20244938,-0.23209785,0.27802998,0.21774307,0.47288162,-0.5168911,-0.082257554,0.18440899,0.34592316,0.19484347,0.20707391,-0.3287905,0.3698614,-0.60452634,0.31621236,-0.22442287,0.22279787,-0.29151106,-0.18873411,0.24094233,0.03520466,0.38753927,-0.37632474,-0.21183725,-0.095449686,0.48130023,0.3045509,0.21369362,0.76905924,-0.36365092,0.0662675,-0.09452522,0.6278683,0.9389277,-0.5037739,-0.22855468,0.41516545,-0.4613967,-0.8720189,0.3570486,-0.52139604,0.03492565,-0.18491082,-0.42744473,-0.47527835,0.21938166,-0.059006274,-0.07941408,-0.063298255,-0.79441947,-0.061249994,0.34676802,-0.12732935,-0.2849867,-0.27446175,0.23652549,0.8729201,-0.06905465,-0.40977955,0.14425196,0.17125657,-0.16841511,-0.64368623,-0.015729029,-0.38690272,0.26450327,0.097926766,-0.23354338,-0.046277966,0.17535801,-0.6221634,0.048520323,0.19398232,-0.37413666,-0.1424203,-0.07293914,0.02666132,0.8476415,-0.49195388,-0.017685706,-0.6602297,-0.45087186,-0.82209307,-0.2930535,0.65497565,0.22593746,0.056935344,-0.6093692,-0.052654527,-0.06672546,-0.02489932,-0.10018455,-0.5704545,0.21380472,0.059312306,0.40646917,-0.3156452,-1.1776726,0.12236318,0.30056712,-0.2725799,-0.8752701,0.48439324,-0.34139106,0.76117796,0.07625151,0.029893762,0.11829307,-0.2575802,0.10488805,-0.356507,-0.25665382,-0.71765155,0.2451589,390 +940,0.6599548,-0.20711432,-0.69425005,-0.032104187,-0.23374046,0.12172841,-0.5006115,0.622955,0.25521508,-0.7266007,-0.08044751,-0.09884567,0.022789776,0.47624156,-0.25968012,-0.46698952,-0.051715255,0.30736348,-0.5487381,0.92425424,-0.19826278,0.37065098,0.14067979,0.38393107,0.36168724,0.19278711,0.3320063,0.21891555,-0.2614093,-0.30476353,0.08350777,0.25691056,-0.39959896,0.28523377,-0.35738072,-0.6668437,-0.1873038,-0.5246536,-0.13157582,-0.8160814,0.32564145,-0.9498667,0.8486199,-0.021612762,-0.25266755,0.07176209,0.3461873,0.35149992,0.034239385,0.11288788,-0.00973449,-0.03872987,-0.24603273,-0.2293272,-0.14653648,-0.7032017,-0.4908457,0.053782523,-0.52299404,-0.10880958,-0.06757606,0.19031717,-0.30253944,0.124827385,0.08643002,0.5999785,-0.3971639,0.0019393618,0.09975281,-0.023643393,0.30979797,-0.825683,-0.44371155,-0.089218564,0.39997673,-0.2831362,-0.070906125,4.4324183e-06,0.33284166,0.55305713,-0.123483986,-0.05691211,-0.47275102,-0.055744328,-0.021104895,0.43936223,-0.2639155,-0.690068,-0.18508743,0.1063513,0.36573842,-0.04531075,0.50531775,-0.18892193,0.013526391,-0.21905182,-0.31905547,0.43185046,0.40607417,-0.5236506,-0.2340259,0.29991972,0.515057,0.17852145,-0.19792518,0.12020464,0.017998142,-0.4048935,-0.10229156,0.08971122,0.01568721,0.5175893,-0.13950835,0.47183752,0.24333254,-0.05499899,-0.03272148,0.17309524,0.05849153,-0.28598955,-0.047262374,-0.3371007,0.28236726,-0.48283517,-0.1509932,-0.34133208,0.6025875,-0.025481893,-0.74376655,0.23813581,-0.6733969,-0.03204397,0.038959764,0.32571045,0.71477646,0.3619004,0.038108114,0.67264885,-0.16459599,-0.08979354,-0.19539024,0.008558891,-0.18049699,-0.39924982,0.023711862,-0.6839303,0.2210415,0.20449518,0.021321476,0.104494445,0.68490505,-0.48524484,-0.37698203,0.28473136,0.87778527,-0.14290586,-0.17662263,1.0107733,1.1110498,1.1021477,-0.029838694,1.2535129,0.20959538,-0.33020136,-0.16872287,-0.09090137,-0.57836604,0.39981362,0.40287447,-0.2685077,0.67328084,-0.017953236,-0.02519127,0.20057128,-0.28996593,0.05054793,-0.20616207,-0.09718582,0.15652992,-0.21499161,-0.45290306,-0.25130752,-0.10011547,-0.07690552,0.32108507,0.13049728,-0.12923445,0.5272524,0.12279907,1.4885098,-0.4288992,0.014832418,0.14523846,0.3657853,0.30278918,-0.2473368,0.026372107,-0.026227111,0.22260061,0.20042758,-0.3804631,-0.023389613,-0.1594691,-0.54239196,-0.30555734,-0.19031705,-0.18875675,0.17145418,-0.41468504,-0.1817822,-0.2057518,-0.28789243,0.28375885,-2.5514257,-0.30388805,-0.3058572,0.13599296,-0.2509675,-0.3316666,-0.3367034,-0.3047718,0.51309264,0.47139838,0.42726755,-0.50916886,0.4313254,0.3703991,-0.6278787,-0.1594201,-0.43798593,0.024355633,-0.06647821,0.34078053,-0.16671008,-0.46965578,0.28574908,0.2865493,0.41913554,-0.12846683,0.12607189,0.39588043,0.4227567,-0.116376065,0.310608,-0.09124045,0.46072024,-0.44877818,-0.36264694,0.640107,-0.3444959,0.26677442,-0.028323503,0.15427916,0.45827314,-0.654159,-0.9369862,-0.79926646,0.061094083,1.1720371,0.06551104,-0.69056153,-0.07811661,-0.28339112,-0.4282778,-0.030581713,0.5111092,-0.09315505,0.105182976,-0.9412693,-0.08414132,-0.10161831,0.18999009,0.0074467524,-0.13833237,-0.7098885,0.7791275,-0.0024562962,0.5512975,0.5013516,0.30905855,-0.5258306,-0.49298772,0.0061655315,1.1450535,0.57043856,0.14757964,-0.30065823,-0.11984847,-0.61205935,-0.036964092,0.19888173,0.5647192,0.644499,0.0750611,0.16460277,0.2804074,0.049194697,0.33611146,-0.028647033,-0.4088991,-0.39801013,0.34754202,0.60670877,0.39649117,-0.060757313,0.68194366,-0.098312564,0.34769222,-0.30267808,-0.39015332,0.6677277,1.0769411,-0.29794168,-0.5455161,0.73705655,0.5179918,-0.47219875,0.559486,-0.6298397,-0.5731639,0.090462886,-0.104467995,-0.40608093,0.37842348,-0.43963596,0.27717257,-1.1535609,0.16996811,-0.5453138,-0.080227286,-0.7190697,-0.19429411,-2.6463053,0.40254858,-0.036481608,-0.058866583,-0.30607587,-0.44918442,0.28301275,-0.6717009,-0.85892236,0.14509557,-0.01050812,0.86459833,-0.0758451,0.12728815,-0.04523586,-0.5629596,-0.004552401,0.30882794,0.0142613975,0.39671403,-0.109636,-0.5525871,-0.033490717,-0.1871272,-0.25093588,-0.10035977,-0.6325816,-0.46633303,-0.19380751,-0.5015717,-0.08439552,0.55913824,-0.42876866,0.08790453,-0.31311557,0.016639011,-0.11500976,0.34631455,-0.15266046,0.0142736705,0.26657593,-0.32010138,0.16029698,-0.13647157,0.12152959,-0.04524274,0.1694728,0.5519567,-0.3216318,0.5310932,0.37236795,0.6906852,-0.15234494,0.8012013,0.356388,-0.031221986,0.2721303,-0.23861562,-0.26994184,-0.48799333,-0.13957219,0.091044664,-0.4249401,-0.5397947,-0.06653913,-0.29519346,-0.78918874,0.77836555,-0.06352558,0.17086148,0.13505553,0.58669513,0.47616938,-0.22894841,0.024805225,-0.08497571,-0.11425085,-0.40625545,-0.35491073,-0.5746708,-0.47889173,-0.0015475967,0.8975095,-0.24179992,0.15023734,0.45047605,-0.037676256,0.17946734,0.37578297,0.23864026,-0.09316697,0.5847809,-0.10145183,-0.7124862,0.3207915,-0.2913089,-0.21540776,-0.45366678,0.23066348,0.38125613,-0.46766064,0.31212616,0.5775065,0.16448158,-0.26370108,-0.5080938,-0.048787203,0.14105177,-0.28862283,0.38848066,0.51806045,-0.7092298,0.46914247,0.335338,-0.16815744,-0.83172053,0.5691117,0.1811369,-0.12831345,-0.08346176,0.500246,0.43172243,0.0015430559,-0.329754,0.16230628,-0.3501519,0.28022736,-0.20727801,-0.047628842,0.29129812,-0.2889595,-0.41194603,-0.66262746,0.15773696,-0.5972159,-0.44349277,0.2847215,-0.008524745,0.03413159,0.20577708,0.03138031,0.3926921,-0.55223715,0.10965135,-0.25991994,-0.21014641,0.42714927,0.2830331,0.39543855,-0.53474635,0.54050213,-0.11409991,-0.088597395,-0.1969298,0.08182913,0.55317557,0.2911723,0.31469706,0.23503928,-0.233739,0.15289593,0.73270506,0.3059894,0.26595458,0.20980163,-0.16182938,0.187927,0.053333934,0.102470875,-0.08723467,-0.38634378,-0.34114438,-0.23593248,-0.036198687,0.51077783,-0.05100931,0.2875579,-0.21727018,-0.4349824,0.032495443,0.14016804,-0.011484764,-1.245151,0.21711001,0.09960823,0.7844419,0.5249741,-0.23098463,0.14130455,0.66999745,-0.18386702,0.07051236,0.2671697,-0.034251403,-0.51515007,0.6362193,-0.62770635,0.21517324,-0.059802547,-0.002204223,-0.09762411,-0.061272237,0.3251219,0.6823418,-0.08817088,0.29001227,-0.018693956,-0.18266453,-0.2227326,-0.24314499,0.08470941,-0.3803363,-0.13788487,0.8034775,0.3110117,0.44550782,-0.34146932,0.04693869,0.14453612,-0.16805117,0.24737997,0.14890546,0.27068326,-0.21791063,-0.57399994,-0.023804624,0.5896717,0.5203628,0.21686341,0.13372883,-0.5135019,0.25358784,0.10097492,0.05255309,-0.037317675,-0.6908279,-0.06690823,-0.6284988,-0.42541322,0.5272208,-0.24727002,0.03335434,0.3110629,0.14520416,-0.0987812,0.287862,0.079040416,0.66148794,0.03567398,-0.019718854,-0.115808725,0.3199448,0.14596678,-0.26187673,-0.27163073,-0.18778892,0.28886288,-0.6446887,0.47829658,0.065437496,-0.18597707,0.3155093,-0.02868742,0.08838526,0.50196093,-0.19649467,-0.058682546,0.36236078,-0.028195906,-0.17240584,-0.38706627,-0.18802188,0.2984021,0.15885304,-0.034753088,-0.24744558,-0.08493414,-0.22365604,0.22331086,0.005480273,0.37536347,0.5998771,0.33859974,-0.42831972,0.27104673,0.31112316,0.5268078,0.06561306,-0.18113305,-0.40125218,-0.6077029,-0.32349765,0.24609566,0.030574165,-0.037700772,0.20893188,-0.32862765,0.7852078,0.13298978,1.0398155,-0.036299035,-0.4690534,0.173558,0.3364149,-0.2999873,-0.33704314,-0.2143403,1.061926,0.6451355,-0.020234613,0.13162468,-0.38590318,-0.13553321,0.05441637,-0.3594363,0.026275726,-0.09208859,-0.66992986,-0.5023081,0.22637612,0.32106206,-0.057071235,-0.27586174,0.3531288,0.30342612,0.025770582,0.18222012,-0.52112174,-0.24650808,0.39492807,0.40199968,-0.12599869,0.19721292,-0.44587305,0.24041319,-0.9511141,-0.11485353,-0.46267784,0.25029364,-0.073540956,-0.29672122,0.23822089,-0.082174435,0.33916685,-0.4596276,-0.3950415,-0.27210596,0.41029721,0.070225984,-0.039262358,0.5000206,-0.20219584,0.08353474,0.032368865,0.4881302,1.117293,-0.2188644,0.055303074,0.25971198,-0.31729302,-0.59988856,0.29824993,-0.5950911,0.41780564,-0.112725824,-0.11390207,-0.63890654,0.31424564,0.43078518,0.18404074,-0.21697454,-0.5070429,-0.1277357,0.2953256,-0.32909295,-0.11217535,-0.31202915,-0.17254396,0.42839032,-0.040703706,-0.4214798,0.0410957,0.54373556,-0.19736028,-0.70004934,-0.12660839,-0.25631168,0.36502847,0.29050872,-0.1416018,-0.2443042,-0.023218004,-0.5361216,0.07869753,0.32835528,-0.4271477,-0.09173619,-0.5674738,-0.09110291,0.8418691,-0.07551206,0.38834754,-0.39025956,-0.48536193,-0.85021305,-0.28352094,0.27940074,0.12374928,0.20103164,-0.7499414,0.19286604,-0.42614946,-0.21321541,0.0793291,-0.20649758,0.34744257,0.16838853,0.5855379,-0.3337773,-0.7333019,0.21816729,0.15879753,-0.00074402854,-0.44637346,0.38173753,0.1524856,0.99542445,0.11022677,0.0503706,0.35680076,-0.8405689,-0.025858099,-0.004122001,-0.080987364,-0.7527465,0.025854541,404 +941,0.5076115,-0.35023946,-0.20874335,-0.08229304,0.09557371,0.16416693,0.011757135,0.72024924,0.46122846,-0.26861927,-0.17783321,-0.28630152,0.119913965,0.4590187,-0.11800382,-0.55824304,-0.19279465,0.14419205,-0.35319927,0.4256667,-0.5039384,-0.06363558,0.10269079,0.6703341,0.092464514,0.22142096,0.11944198,0.036303148,-0.3497221,-0.3040609,-0.009432558,0.42589462,-0.5639356,0.06954347,-0.27672547,-0.4050384,-0.20964375,-0.6737455,-0.38764656,-0.81206137,0.2577017,-0.9798084,0.43956822,0.2780101,-0.31772435,0.41804254,0.11749806,0.10045877,-0.29477242,-0.22649874,0.10439932,-0.22915958,0.036643144,-0.32860807,-0.19134527,-0.15055352,-0.64619887,0.022162838,-0.20684749,-0.05996721,-0.25217515,0.04098052,-0.3212425,0.017279593,0.02720862,0.62043524,-0.32762086,-0.008336875,0.24539155,-0.22735806,0.41365355,-0.38432646,-0.28071377,-0.12011693,-0.033851657,-0.20627743,-0.414094,0.19275995,0.36375463,0.3654374,-0.2641796,-0.13347858,-0.4314401,0.1666701,0.0047032726,0.57253623,-0.423684,-0.853603,-0.19484685,-0.10991133,0.028529463,0.29057574,0.108873755,-0.115044214,0.0053501367,0.13427414,-0.26199207,0.5974648,0.47873643,-0.28117943,-0.24551457,0.1658466,0.3421787,0.17820027,-0.10927246,-0.35102403,0.16665114,-0.6200446,-0.101161644,0.06998389,-0.40584117,0.61008793,-0.18257241,0.25008893,0.70846796,-0.28323433,0.047242034,0.16291101,0.093401596,-0.1564784,-0.4908729,-0.289904,0.38614228,-0.30656248,0.19737186,-0.29214442,0.7630312,0.037629534,-0.7019349,0.34612465,-0.56488353,0.12844227,-0.18123268,0.4667567,0.70409006,0.34631062,0.6713232,0.50144905,-0.4276024,-0.11868434,-0.090694316,-0.25904053,0.18412094,-0.33483526,0.16548266,-0.52126783,-0.19263583,0.22498664,-0.11521218,0.35919487,0.33198768,-0.6516521,-0.08743116,0.30201957,0.89699274,-0.1967962,-0.17991723,0.79638976,1.1478599,0.97743535,-0.016088445,1.1114388,0.2551368,-0.14904626,0.35622957,-0.17465371,-0.6264403,0.3249699,0.3464364,-0.7242088,0.3083023,0.029231494,-0.097851425,0.3123915,-0.43878946,-0.10441578,-0.017363267,0.13839771,0.19133784,-0.055100147,-0.53665984,-0.41651866,-0.18029283,-0.029317927,0.12587704,0.32214835,-0.2482817,0.37574932,-0.10887775,1.3970383,0.10111956,0.07265256,0.077067286,0.49869397,0.08045553,0.015531888,-0.114638835,0.31182498,0.20350236,0.23376603,-0.43340674,0.29553804,-0.25461718,-0.35395572,-0.009797928,-0.38629466,-0.053574726,-0.04734185,-0.3483075,-0.12778634,-0.18430279,-0.27297565,0.44863108,-2.9671197,-0.14550471,0.023497896,0.2697291,-0.25492528,-0.3984477,-0.077980325,-0.5513916,0.36018705,0.36488923,0.59866387,-0.7552128,-0.012399441,0.2986872,-0.5645261,-0.25637132,-0.6634214,-0.06768036,-0.047968343,0.3014751,0.124899,-0.1069869,0.12896855,0.107110076,0.62915426,0.19074363,0.14691716,0.22610006,0.38101044,-0.15639624,0.379525,-0.28304294,0.38338575,-0.41466486,-0.2418777,0.31680194,-0.54011464,0.23419929,-0.18758616,0.071233645,0.5287668,-0.17017184,-1.0702381,-0.6623159,-0.28546393,1.1594071,-0.1862573,-0.43899423,-0.0026292964,-0.28648233,-0.24758376,-0.097078495,0.7641441,-0.19678959,-0.005671826,-0.83840084,0.031298283,-0.12950853,0.15557212,-0.0075695217,0.06944495,-0.28231013,0.5987759,0.06124039,0.28159073,0.21761371,0.042378172,-0.5081926,-0.5367811,0.07267791,0.9574425,0.23583554,0.25035843,-0.15180263,-0.13558723,-0.25611943,0.04560463,0.021997713,0.59520555,0.4799302,-0.035693992,0.12072747,0.28066424,-0.007417744,-0.04469557,-0.10068686,-0.22239529,-0.17860635,-0.046901718,0.73552316,0.8562927,-0.2518505,0.30431554,-0.14764614,0.37192476,-0.14083852,-0.29990116,0.54788357,0.92416835,-0.032793615,-0.18981284,0.70908827,0.58616185,-0.40508983,0.46907815,-0.57585007,-0.39731562,0.4749358,-0.20481537,-0.52976525,0.18042043,-0.19138798,0.12518184,-0.76886386,0.19916467,-0.15613557,-0.28312498,-0.61049813,-0.032386873,-3.633195,0.2389485,-0.2208067,-0.41020852,-0.20161204,0.046878137,0.19387488,-0.54702497,-0.5313295,0.06367877,0.07668433,0.67136025,-0.15256423,0.09238484,-0.30877638,-0.23391284,-0.209105,0.019245094,0.20737432,0.3695234,-0.0031351934,-0.4128154,-0.039980482,0.013470542,-0.43771237,0.1422903,-0.6548234,-0.52823377,-0.1518709,-0.52273184,-0.324594,0.7226098,-0.4217431,0.007964605,-0.19837722,0.01915033,-0.11581977,0.42066842,0.24455337,0.0976054,-0.10300157,-0.025370417,0.16171287,-0.1945343,0.44985607,0.09814735,0.33645752,0.5842609,-0.20321707,0.3053851,0.54231745,0.6440888,0.13329878,0.92775023,0.48760653,0.031707004,0.14707294,-0.26918328,-0.17639638,-0.5255218,-0.26425925,0.038147867,-0.37078837,-0.2247301,-0.05779476,-0.38327178,-0.8356157,0.5885583,-0.13624601,0.22076736,-0.024667041,0.41322204,0.66404843,-0.45705768,0.06981986,-0.02923057,-0.13575102,-0.54786414,-0.15205325,-0.58654493,-0.37845972,0.10511141,0.6492982,-0.124316745,0.14034532,0.105743416,-0.1261449,-0.23124439,0.1033644,-0.1317635,-0.0018567063,0.47255784,0.033678595,-0.6688251,0.49277675,-0.048901033,-0.2621861,-0.64322615,0.3776311,0.5890391,-0.72501355,0.6681539,0.50014913,0.07066608,-0.23512922,-0.49183524,-0.33752444,-0.15706551,-0.007902276,0.24571896,0.28994036,-0.74108547,0.37480393,0.3937556,-0.33288375,-0.68658644,0.4647568,0.06888375,-0.4782299,-0.27303788,0.3699336,0.1599311,0.078344695,0.039288677,0.237075,-0.5233324,0.1448778,0.112772815,0.07114404,0.44485474,-0.06257841,-0.008017031,-0.7658665,0.25012556,-0.55443215,-0.4112352,0.3695788,0.15732646,0.1663713,0.37180164,0.07482355,0.25413954,-0.11105988,0.0018881437,-0.117974326,-0.22691607,0.28930762,0.5338787,0.58517045,-0.39599445,0.6421189,0.14492749,0.014973694,0.13504928,-0.060719576,0.46125433,0.014636598,0.45368993,-0.024448026,-0.42716444,0.18983509,0.71628743,0.15992099,0.41891745,-0.071316116,0.15227121,0.3363509,0.03975585,0.33270475,-0.03511584,-0.6546641,0.07271713,-0.4714329,0.15710515,0.50348073,0.061427828,0.13434882,0.011827344,-0.38955268,0.105830885,0.28383175,0.10957618,-1.3834649,0.35486397,0.1696576,0.8429443,0.46255264,-0.105702765,0.009302857,0.7990186,-0.15163273,0.23514418,0.5058423,-0.06182359,-0.5492458,0.7664963,-0.7690014,0.4780064,-0.12408001,0.035817835,-0.21262704,-0.03395753,0.32798383,0.6464457,-0.22678342,-0.03877984,-0.044844475,-0.44263223,0.16626166,-0.585174,0.34283754,-0.6567784,-0.1688795,0.69495374,0.6345327,0.32446477,-0.21524908,-0.000627221,0.038328867,-0.040637437,0.16917898,-0.0042539346,0.15477432,-0.0034629554,-0.912497,-0.07452088,0.5742515,0.022977652,0.30829173,-0.06865802,-0.012127074,0.12798022,-0.15708642,-0.300906,-0.15823083,-0.66494197,-0.005616589,-0.39093435,-0.44985113,0.55443174,-0.21202415,0.21958518,0.24383493,0.11092372,-0.32479417,0.29855874,0.24615383,0.8493814,0.090408474,-0.29192272,-0.39227116,0.34146017,0.14568084,-0.11676364,-0.1809379,-0.2744006,-0.056413304,-0.27316907,0.48027992,-0.1263392,-0.42111957,-0.08263791,-0.01444709,0.20449814,0.55418724,-0.07999742,-0.21314669,-0.35928926,-0.3945645,-0.31444937,-0.043517567,-0.044838548,0.38873526,0.28568527,-0.1025807,-0.045265585,-0.173038,-0.3442735,0.46287486,-0.06509705,0.36195806,0.42755747,0.17745383,-0.17669591,-0.12559056,0.23379244,0.54210436,0.031334564,-0.34145418,-0.47988293,-0.34063652,-0.42480794,0.056049194,-0.117248416,0.4784934,0.10661921,-0.2589572,0.81408274,-0.23847164,0.9848926,0.09188735,-0.36612532,0.029301655,0.4054669,-0.080702394,-0.06965704,-0.43393335,0.8426525,0.43285716,-0.17331909,-0.06754381,-0.28329527,0.09197517,0.27048904,-0.17730762,-0.23113535,-0.014360002,-0.7819757,-0.16164091,0.1867075,0.37217912,0.33070382,-0.09745017,0.15446411,0.20949163,0.037875235,0.43523324,-0.3518414,-0.055457674,0.31304285,0.48904133,0.017737947,0.18632135,-0.29665187,0.31757423,-0.43674755,0.061103996,-0.5622941,0.061054014,-0.34332952,-0.47475827,0.31753948,0.100438975,0.4322872,-0.19025232,-0.39514083,-0.13478743,0.35606864,0.20427586,0.042378332,0.5209443,-0.2230134,-0.029883178,0.086310424,0.5244804,1.2234005,-0.32114193,0.08584443,0.18589792,-0.2714696,-0.7547604,0.6462665,-0.13285315,0.39251944,-0.009351871,-0.020700509,-0.557884,0.17513698,0.18060623,-0.011146829,0.08324787,-0.49233177,-0.1286399,0.27185777,-0.30851784,-0.27862713,-0.40115455,0.14335427,0.4562029,-0.17582592,-0.21037906,0.13881993,0.34152785,-0.12581268,-0.39807215,-0.076096684,-0.5309995,0.18204632,-0.024747519,-0.45378572,0.035683706,-0.10643177,-0.4703987,0.18096437,-0.06789133,-0.30245462,0.10861833,-0.2779856,-0.06502631,1.0392745,-0.13763766,0.20416659,-0.632753,-0.4400884,-0.81290936,-0.2740851,0.49678734,-0.12513155,0.0066733225,-0.49892223,-0.019225923,0.07528725,-0.23177561,-0.19348422,-0.47378168,0.42466688,0.1057319,0.48844197,0.009210722,-0.6489875,0.09733874,0.16250935,-0.039756734,-0.6937137,0.34257224,-0.01048533,0.9466844,0.06652854,0.10421844,0.445278,-0.4589326,-0.22403346,-0.21696176,-0.28849518,-0.5820862,0.22115445,461 +942,0.41468373,-0.09196275,-0.55435437,-0.1214716,-0.11826503,-0.14683099,-0.15782227,0.2198779,0.35867888,-0.18709598,-0.3146702,-0.31576434,0.2846279,0.16742921,-0.06188257,-0.8114487,-0.06568711,0.14635652,-0.53191566,0.4527221,-0.60914856,0.35852468,0.33933425,0.33971366,-0.059890293,0.35047886,0.27039048,-0.29865685,-0.029888082,-0.11161339,-0.24424772,0.24371971,-0.7739017,-0.12531857,-0.21162567,-0.2036048,0.13977164,-0.5641339,-0.3500991,-0.70042455,0.24432544,-0.95734614,0.4606911,0.24878922,-0.0751344,-0.046024095,-0.020077862,0.28752172,-0.2931567,0.02662653,0.0906151,-0.34208474,-0.002066157,-0.44715604,-0.062127892,-0.18601812,-0.41633147,-0.03362689,-0.4822922,-0.2932989,-0.18071495,0.033155546,-0.3779434,-0.09779904,-0.16360193,0.42471418,-0.31878945,0.039113674,0.37039435,-0.33589777,0.32221738,-0.442227,-0.004224934,-0.17997502,0.43430978,-0.27508304,-0.30348292,0.3814306,0.32114103,0.39426127,0.14790478,-0.25982243,-0.07085142,-0.12632102,0.2391735,0.60797256,-0.17542592,-0.6130548,-0.0792402,0.21223901,0.14969274,0.38219917,-0.054610487,-0.27077445,0.014337759,-0.08198594,-0.2533697,0.5973839,0.6143032,-0.12527715,-0.35978687,0.11405497,0.36524916,0.27522066,-0.077755995,-0.19575585,0.062579446,-0.66874087,-0.118875355,0.23571433,-0.29303405,0.77097917,-0.11248409,0.031778913,0.89873886,-0.41248763,0.015608197,0.0329663,-0.046716347,-0.08079368,-0.27210048,-0.15339485,0.22060637,-0.5158376,0.09058625,-0.31688365,0.86081386,0.34391972,-0.69337964,0.3571451,-0.6287071,0.28249434,-0.14130239,0.70648015,0.5733765,0.3390687,0.6177938,0.707979,-0.39581358,0.24032404,0.1475097,-0.8223902,0.116772324,-0.09212711,0.17319344,-0.29933894,-0.18678738,-0.097293615,0.015006742,0.22908849,0.1777355,-0.50169545,0.018276805,0.16769662,0.8107839,-0.28385794,-0.015025312,0.46031407,1.0292039,0.8653759,0.07354442,1.0172328,0.35171145,-0.36108735,0.21806125,-0.08617736,-0.89967763,0.18938078,0.25277415,-0.5586364,0.3761939,-0.07591844,-0.11112602,-0.024085673,-0.50102943,-0.1379978,-0.04010065,0.30900174,0.16433102,0.08352267,-0.5772628,-0.25229168,-0.1917626,-0.12467872,0.15180658,0.123482466,-0.21440049,0.19983426,-0.016272712,1.2549942,0.002748232,-0.027571656,-0.0054207323,0.59438443,0.339283,0.08322363,-0.16882075,0.6369066,0.36253738,0.063966006,-0.58441776,0.15136792,-0.3388516,-0.2334256,-0.030703926,-0.38100398,0.17038852,0.19879875,-0.38602355,-0.011216239,0.016996296,-0.19339241,0.5392911,-2.644583,-0.15856415,0.021060353,0.39258865,-0.3251529,-0.09324595,-0.073048346,-0.5477039,0.12278008,0.22823748,0.5515657,-0.8286682,0.23999853,0.5073494,-0.34494156,-0.23731488,-0.7060643,-0.09566034,-0.099241406,0.25202683,0.17837568,-0.054371174,-0.030307604,0.18946391,0.57678026,0.14012839,-0.024455212,0.3882116,0.49627057,0.2632949,0.59634584,-0.093343996,0.617474,-0.25579283,-0.04988688,0.29167542,-0.18014918,0.16182432,-0.1883297,0.102228835,0.48048887,-0.19753915,-0.7737007,-0.44606903,-0.43852293,1.0528249,-0.6223246,-0.3435864,0.10966144,0.046761915,-0.0761227,-0.15014611,0.63806176,-0.16443335,0.07887698,-0.6650824,0.11843776,-0.007366663,0.3038946,0.15883376,0.070902795,-0.17557658,0.5874482,-0.01390318,0.35160643,0.34017518,0.22097798,-0.09067186,-0.5977724,0.2367058,0.826603,0.16281079,0.044081714,-0.2705638,-0.22862807,-0.025052048,-0.050094996,-0.10095399,0.6875002,0.9649733,-0.25697592,-0.008910465,0.36893636,0.14794411,0.059714172,-0.08184657,-0.34810868,0.03557866,-0.34976757,0.54960436,0.84653074,-0.29979154,0.43303186,-0.12721948,0.45608833,0.22614022,-0.4022708,0.55126613,0.8147377,-0.05074475,0.11878893,0.30470002,0.25987422,-0.5370075,0.42307436,-0.71529907,-0.082321525,0.8087146,-0.19771014,-0.4095373,0.46678594,-0.22663428,0.21422273,-0.9117601,0.6158185,-0.061930634,-0.046547867,-0.35950646,-0.07415092,-3.815584,0.12595716,-0.22275823,-0.15120345,-0.33480757,0.029296564,0.18481316,-0.45524025,-0.45994437,0.2608657,0.20650621,0.59331506,-0.14105724,0.16764012,-0.24992627,-0.22617526,-0.11401326,0.22587603,0.3175953,0.3138998,-0.110022776,-0.27828872,-0.05733393,-0.057353582,-0.3866719,0.3002067,-0.48100817,-0.50390106,-0.025627958,-0.74678934,-0.52845216,0.70726734,-0.32969484,-0.057585336,-0.124151014,0.09018517,-0.24200033,0.19451088,0.16286002,0.20765615,-0.1334762,0.22882175,0.20632638,-0.2905429,0.63656515,0.13414244,0.29295728,-0.15071115,0.12772328,0.028778953,0.38186315,0.52718383,0.04247505,0.88878196,0.3652195,-0.057634678,0.13163163,-0.35872358,-0.2335667,-0.5776398,-0.34129003,-0.0072112354,-0.31299734,-0.383937,-0.118051834,-0.34145296,-0.6811235,0.45698547,-0.22855577,0.28968665,0.21824785,0.42096394,0.56105524,-0.20279603,0.13118722,0.12779164,-0.16156918,-0.6184406,-0.058021355,-0.6859257,-0.36269614,0.021612173,0.474344,-0.25044155,-0.062303305,-0.13821992,-0.23636632,0.09452391,-0.13270348,0.075831935,0.32333955,0.5550867,0.009726779,-0.63680035,0.4642895,-0.05527141,-0.26960853,-0.6155989,0.052518193,0.70425725,-0.9492418,0.5282096,0.52604747,0.021719651,0.13868397,-0.3537662,-0.52611566,0.13976549,-0.19827953,0.20002404,-0.002688045,-0.6216044,0.3152712,0.1996573,-0.5531097,-0.61187005,0.43108085,-0.032857124,-0.53108513,0.044680197,0.3146233,-0.11276805,-0.107530616,-0.26893547,0.020957666,-0.4337597,0.14316799,0.22204114,-0.07987369,0.29330727,0.1892573,-0.16563457,-0.74304825,0.2173625,-0.48126495,-0.31595343,0.47908762,0.043276664,0.079224534,-0.0021680484,0.16388874,0.27770147,-0.26869386,0.066832885,-0.009487727,-0.3518072,0.47082683,0.538049,0.39591888,-0.35014957,0.60189193,0.06692076,-0.097745225,0.29810742,0.029242473,0.26485884,-0.12500918,0.14571701,0.17138341,-0.32031778,0.28771195,0.62744516,0.22828649,0.5100068,0.12503193,0.20650244,0.5644784,0.060926005,0.096098565,0.28051317,-0.59713405,-0.21263222,-0.07867039,0.1772799,0.49564803,0.37516487,0.22020365,-0.024268549,-0.30665037,-0.025352625,0.53365934,0.049967006,-0.88808995,0.31026408,0.17749232,0.6521399,0.41048443,0.15975332,-0.030025197,0.42605492,-0.24217692,0.21560341,0.28508332,0.09281384,-0.52609915,0.7161135,-0.37606642,0.446194,-0.18101634,0.04911323,0.07067147,0.044907644,0.20359187,0.92681557,-0.35340583,-0.031600896,0.024253286,-0.017648047,-0.0675049,-0.6400311,-0.0044783223,-0.43983018,-0.39932016,0.59330183,0.35103768,0.225725,-0.14387143,0.10490182,-0.038996067,-0.27425203,0.26006567,-0.154989,-0.065798976,0.32656497,-0.7976768,-0.08558437,0.59953827,-0.03966357,0.10801413,-0.3093643,0.002504327,0.15168843,-0.36158073,-0.22276597,-0.15455563,-0.7192139,0.077026,-0.27216253,-0.5463976,0.41437054,-0.2738833,0.29141644,0.22317825,-0.03998784,-0.15498972,0.39796802,0.35912216,0.899507,-0.06722627,-0.3870354,-0.602114,0.083060645,0.26067954,-0.19712353,-0.075372465,-0.44949257,-0.08786717,-0.3159276,0.6071389,-0.07526563,-0.33807823,-0.2438528,-0.23863024,-0.06614404,0.7737423,-0.14984424,-0.06812119,0.030247962,-0.21278638,-0.4012521,0.038438845,-0.33750665,0.19510213,0.5610616,-0.26677096,-0.0644934,-0.29199818,-0.28915465,0.42422426,-0.021715848,0.62834793,0.23344989,0.27233046,0.0065888925,-0.31566676,0.04962412,0.54229474,0.16518107,-0.16037582,-0.3867976,-0.2981759,-0.24568881,0.048675373,-0.08625417,0.19459246,0.010061459,-0.3467271,0.96450704,0.04279264,1.130672,-0.06600762,-0.27032995,0.029909855,0.4023741,-0.10190008,0.037134256,-0.4713744,1.0231051,0.4044379,-0.17036897,-0.17290027,-0.3330536,-0.08060198,0.05481175,-0.15160766,-0.027871989,0.033888187,-0.43338802,-0.46810588,0.28626013,0.34787026,0.17224862,-0.07028877,0.050695613,0.04675288,0.07701766,0.38195646,-0.5499669,-0.24490692,0.13194424,0.13522771,-0.031606294,0.16915782,-0.2547262,0.5003412,-0.42174625,0.06647516,-0.76952934,0.06809152,-0.13250014,-0.27667096,0.21505746,-0.14553542,0.45589036,-0.5817711,-0.30724066,-0.18586536,0.30763876,0.030643074,0.35094774,0.63685596,-0.11216123,-0.06331896,0.08429374,0.84275,1.40242,-0.36921835,0.0018304099,0.4316415,-0.46670654,-0.55770665,0.39700648,-0.27988508,-0.024275905,-0.2951224,-0.30643114,-0.6104589,0.09055045,-0.083010904,0.10934841,0.07261829,-0.5903828,-0.258372,0.3138783,-0.4306489,-0.2517041,-0.35514915,0.45214346,0.81211776,-0.2699087,-0.208111,-0.0071903286,0.07391267,-0.09990215,-0.50373155,-0.17926614,-0.15715672,0.29721078,0.123843886,-0.29027557,-0.20083322,0.32837793,-0.5480579,0.17063493,0.12813458,-0.43242761,0.19408153,0.13401024,-0.16860597,0.9092398,-0.3090979,-0.3502766,-0.6154711,-0.59996545,-0.96054214,-0.5265124,0.42534983,0.062921435,0.16953698,-0.40218914,0.050283004,-0.014091421,-0.2550759,-0.14354756,-0.45944998,0.3803039,0.0549363,0.716744,-0.3307141,-0.9966795,0.107012205,0.025318416,-0.30783927,-0.9282655,0.55419916,0.07059111,0.7267962,-0.009467423,-0.16390434,0.23477548,-0.16822395,-0.07160408,-0.3105769,-0.15781696,-0.82840323,0.082508974,483 +943,0.5318661,-0.24511266,-0.74447155,-0.111088865,-0.114138074,0.03133242,-0.35242602,0.326442,-0.020824768,-0.69648623,0.030616414,0.05486759,-0.02831491,0.21328668,-0.25868243,-0.71011686,0.08790558,0.083713524,-0.3907056,0.2758788,-0.5817414,0.11341102,-0.018735908,0.2564222,-0.19205818,0.14806326,0.35481453,0.044020113,0.004517157,-0.31082743,0.38519028,0.099469356,-0.6074958,0.44311878,0.1086227,-0.40637082,-0.071558446,-0.16507897,-0.40071356,-0.5559744,0.17691278,-1.0662344,0.63358325,0.13875502,-0.2989131,0.15332995,-0.121254034,0.16212767,-0.2489802,0.21980014,0.14391202,-0.2964473,-0.23891196,-0.38590917,0.07301721,-0.5697054,-0.47504416,0.12710327,-0.66589046,-0.121523835,-0.15616517,0.34050772,-0.36039734,0.14634328,-0.30971444,0.37054855,-0.38236627,-0.3023334,0.118870854,-0.19503999,0.2924693,-0.47173396,-0.21447612,-0.060421396,0.1281438,-0.27596337,-0.2801097,-0.07846237,0.072062925,0.5826712,-0.12009922,-0.16899997,-0.12219472,-0.07728066,0.50548846,0.51076895,-0.29707536,-0.665322,-0.37888715,-0.17053427,0.35333222,0.11017644,0.069221355,-0.44707707,0.066846006,0.16038495,-0.21673721,0.62703514,0.74854445,-0.41620922,-0.05210275,0.3136226,0.5271315,-0.10587526,-0.10231454,0.2487157,0.004761666,-0.44568816,-0.18138415,0.09913505,-0.003451369,0.548764,-0.042124446,0.33176553,0.5735295,-0.48171794,-0.015154773,0.23285326,-0.20471643,-0.15187424,-0.28745857,-0.18858719,0.29387745,-0.55986446,-0.08374755,-0.32613778,0.8339711,-0.006402108,-0.8341019,0.47849253,-0.36812484,-0.019199127,-0.18735419,0.78969646,0.5569872,0.47786185,-0.020254984,0.7564749,-0.5840862,-0.052038845,-0.14753594,-0.3674506,0.12472559,-0.11250644,-0.06902056,-0.29573515,-0.05886561,0.16708232,0.048060916,-0.2523984,0.6526978,-0.4554079,-0.030348886,0.10732202,0.5254741,-0.318057,0.05243277,0.70269656,1.4453024,0.8017216,0.23098673,1.2806331,0.31192872,0.06895693,-0.17253856,0.17599535,-0.8388013,0.2996829,0.50730854,0.36312893,0.32456586,0.1416055,-0.12823959,0.6608677,-0.39681676,-0.1297749,-0.14381877,0.502538,-0.15291482,-0.2642093,-0.42079258,0.20549712,0.31318298,-0.066120386,0.065948285,0.34302008,-0.42891595,0.27628207,0.23189844,0.99494684,-0.33911753,0.19811669,-0.060148988,0.24318056,0.11776003,-0.13328719,0.22841386,0.14391166,0.48786113,0.03562462,-0.6366661,0.11544938,-0.05973439,-0.80833155,-0.23363695,-0.12897575,0.022289168,-0.18430923,-0.41643333,-0.07155743,-0.0067470726,-0.3320669,0.36138317,-2.5649607,-0.250455,-0.089251906,0.34225857,-0.08791267,-0.38429716,0.020988367,-0.22233354,0.3936982,0.4836644,0.41041052,-0.5597778,0.6805842,0.34128243,-0.22090702,-0.14416002,-0.7314945,0.21881229,-0.32193375,0.5382032,0.08864179,-0.4350169,0.11579141,0.03641239,0.6649472,-0.2973699,0.10916907,0.13666983,0.29675913,0.020813037,0.33079073,-0.0773099,0.5775021,-0.5031337,-0.3080312,0.43085095,-0.35833287,0.15710586,-0.09696992,0.33377817,0.14496416,-0.3945981,-0.97323436,-0.66486365,-0.25830767,1.2185429,-0.20697221,-0.5951915,0.24355522,0.08402132,-0.42284384,-0.010234594,0.28205588,-0.18763013,0.28259695,-0.8091417,0.09629204,-0.29704994,0.26762822,-0.06414156,-0.03420128,-0.58866686,0.63254106,-0.14703494,0.4996599,0.55515635,0.2503411,-0.22255164,-0.36019892,0.14787255,1.188371,0.46511757,0.22282475,-0.09098256,-0.12712765,0.27191648,-0.017444454,0.15358135,0.6187695,0.8050131,0.12964618,0.09758286,0.1959318,-0.06719861,0.017388886,-0.10734425,-0.4783776,-0.09739917,0.23079781,0.78380734,0.5147841,-0.1659787,0.31812328,-0.18919978,0.3332001,-0.34405804,-0.35230073,0.51561254,0.61250734,-0.110419035,-0.4952966,0.7496515,0.52754116,-0.49648902,0.5376436,-0.8247691,-0.36465922,0.19406533,-0.12652922,-0.2652929,0.3464422,-0.4383622,0.41405356,-1.0763966,0.6434171,-0.5508333,-0.61568147,-0.5709348,-0.53249705,-3.9761076,0.2593648,-0.32633093,-0.1324464,-0.18653503,-0.22133207,0.522731,-0.53479916,-0.43919545,0.10032385,0.020584838,0.50067043,-0.07614317,0.039353024,-0.20442967,-0.120112635,0.15127963,0.3945947,0.11549282,0.080392145,-0.05744314,-0.23602585,0.0093584275,-0.13440652,-0.2969137,-0.03499886,-0.53399366,-0.37606448,-0.06965243,-0.28570873,-0.27236468,0.690093,-0.36685464,-0.1519688,-0.20797187,0.074359424,-0.31105283,0.6947868,-0.0068607223,0.1561345,-0.010170356,-0.046839204,-0.0738737,-0.39457372,0.18305661,-0.047068,0.39763406,0.43533066,-0.4870796,-0.061083756,0.5422117,0.46600133,0.12765852,0.74477464,0.20350231,-0.11850396,0.40266106,-0.22575597,-0.25056016,-0.5907226,-0.49447238,-0.0060706516,-0.5444445,-0.3844849,-0.15520854,-0.31563532,-0.80334437,0.7167092,0.0156135345,0.10841675,0.07046968,0.56976503,0.14231634,0.07903897,-0.2643665,-0.09170341,-0.16410933,-0.47779855,-0.45498466,-0.705834,-0.46269885,-0.14484693,1.0849975,-0.0155308135,-0.027918529,0.07080142,0.045740448,0.04248376,0.22047386,0.16146351,0.05129081,0.43002957,0.033644833,-0.6652769,0.29497808,-0.31312874,-0.28417343,-0.6404064,-0.101115726,0.62032264,-0.63744485,0.58376884,0.4888421,0.41014668,0.043249346,-0.43826154,-0.17025395,0.2603724,-0.109248616,0.6838877,0.32786843,-1.1130028,0.59544903,0.52329725,-0.20244637,-0.7472014,0.476649,0.026596654,0.13906993,-0.101538375,0.43500802,-0.2170463,-0.047982097,-0.28138474,0.24841617,-0.5503071,0.3089175,0.102917,-0.08582788,0.6241767,-0.16714941,-0.21314313,-0.51315826,-0.113150746,-0.6615797,-0.0684014,0.080689706,-0.21838027,0.12335015,0.21939507,-0.06393202,0.6259046,-0.3296382,0.1709184,-0.05291011,-0.47978345,0.3421663,0.69659877,0.29288688,-0.3536502,0.7017359,0.13826789,0.046506427,-0.43414584,0.21085744,0.6173353,0.18551077,0.34354916,-0.16959323,0.05004419,0.45137691,1.037778,0.3580945,0.75668436,0.22272073,-0.1675584,0.23980427,0.16111487,0.22127585,0.108790495,-0.422307,-0.09231014,-0.06696685,0.33232328,0.41008618,0.06276224,0.4409353,-0.27212662,-0.20524506,0.06128267,0.49424726,0.0597893,-1.3197169,0.42647693,0.1828468,0.5354083,0.42629144,-0.0025965518,0.20180832,0.21666841,-0.13568376,0.020471351,0.09492843,0.028862411,-0.38875178,0.68414056,-0.78115964,0.18525676,-0.21101,-0.0012051951,0.03429207,-0.09404471,0.33407107,0.7263046,0.0632866,0.2714623,-0.08591562,-0.13723603,0.048465088,-0.2581298,0.23450185,-0.23950242,-0.22131914,0.93400055,0.3849919,0.4809841,-0.25073615,-0.19153762,0.24963813,0.051570904,0.29770458,0.01911544,0.20717321,-0.15089144,-0.6225819,-0.30970925,0.67403406,0.3823824,0.061549794,-0.059629276,-0.3700166,0.36772376,0.02027341,-0.26659966,0.063747354,-0.4202808,0.08180775,-0.40949297,-0.68913406,0.41318738,-0.16334993,0.10175382,0.3030693,0.0035009126,-0.2655342,-0.07546152,0.049933173,0.68341184,0.12710749,-0.17420727,-0.3494717,-0.051500376,0.28240517,-0.27046764,-0.28118336,-0.4999595,0.12754622,-0.72611934,0.36607507,-0.25391924,-0.35491148,0.45508575,-0.055445258,-0.015015141,0.5484913,-0.2249869,-0.27292317,0.45892525,0.03598768,-0.27961606,-0.4595602,-0.17183174,0.16631044,-0.04190575,0.15676211,-0.01664142,-0.08200511,-0.15896381,0.18759294,0.23313557,0.21053891,0.51469564,0.24486643,-0.38421118,-0.15408613,0.06252914,0.568983,0.006222391,0.033703506,-0.23360105,-0.7805904,-0.1563142,0.00012423775,-0.043891773,0.13421626,0.06061952,-0.43888614,0.6237635,0.08926412,1.0134213,0.13133273,-0.29753688,0.09454077,0.6334005,-0.044525765,-0.13722219,-0.3076531,1.1650043,0.68275136,-0.14230235,-0.1206557,-0.4866079,-0.26374432,0.04079199,-0.34079847,-0.23104912,-0.103432246,-0.8297934,-0.1404131,0.1365254,0.47966897,-0.115142725,-0.031433284,0.30315658,0.3126965,0.10977509,0.05729051,-0.6548029,-0.02956211,0.41343707,0.37715366,-0.09521273,-0.05971625,-0.39546746,0.20463677,-0.75204545,-0.06243296,-0.39272708,-0.023822678,0.22462234,-0.25237587,0.11660092,0.082082294,0.24475622,-0.2305106,-0.21709043,0.18114394,0.518754,0.16126443,0.16293806,0.84911215,-0.05686581,0.0975322,0.0022043532,0.41544393,1.1772046,-0.29633895,0.033646896,0.25618723,-0.3407706,-0.87133354,0.25448477,-0.42410737,0.2567096,-0.06206597,-0.5892886,-0.5640586,0.2105944,0.14122313,-0.28818586,0.09457508,-0.6329458,-0.2833541,0.20981936,-0.4322957,-0.13632306,-0.18596016,0.069806054,0.83471733,-0.35129294,-0.18784119,-0.030406285,0.57106423,-0.49039316,-0.54569167,-0.00741536,-0.3257465,0.32289946,0.1256169,-0.31797585,0.13613068,0.17842427,-0.46520853,0.23759142,0.21059841,-0.17976092,0.041088287,-0.22184229,0.024522977,0.5164966,-0.060212586,0.09949145,-0.9038946,-0.6434407,-1.0193925,-0.4599012,0.16135551,0.26631087,0.12401747,-0.53441006,0.11416225,-0.18645038,0.1567696,-0.1735307,-0.5851876,0.4430066,-0.029975869,0.6784616,0.018049277,-0.6897302,0.15024582,0.16293646,-0.10739493,-0.5276199,0.5593239,-0.2561386,0.82113284,-0.040877078,0.054010466,0.1482696,-0.8343656,0.040003482,-0.20041813,-0.38184527,-0.92281747,0.0614527,498 +944,0.6610824,-0.4318547,-0.79166734,0.0822906,-0.582223,-0.1047054,-0.30484316,0.76651865,0.12916961,-0.60741574,-0.12019611,0.14108878,-0.29145402,0.10579144,-0.35336226,-0.4510149,-0.011327559,0.18612465,-0.48550603,0.4843971,-0.31452802,0.5331209,0.14094685,0.281946,0.32389224,0.03997545,-0.23442483,0.19308029,-0.02831346,-0.55991346,0.053750455,0.2267821,-0.74718374,0.3039012,-0.37114188,-0.7683092,0.026526345,-0.59006643,-0.21577907,-0.7849461,0.36953676,-0.7818602,0.75660384,-0.025466204,-0.6059902,-0.17734411,0.0302756,0.52482617,0.08577495,0.05950931,0.22355957,-0.18456899,-0.16288796,-0.22988628,-0.058418762,-0.34170282,-0.69093245,0.10153962,-0.5161529,0.0875488,-0.04747678,0.34609345,-0.31968403,0.1041127,-0.20510374,0.54716796,-0.37762782,-0.0041769133,0.122615926,0.05759928,0.31568202,-0.93206143,-0.04742131,-0.29160726,0.13682579,-0.37912264,-0.3085537,0.12541097,0.09612486,0.65334463,0.15151842,-0.12314867,-0.17654297,0.18388051,-0.23193568,0.40397942,-0.40110913,-0.28381765,-0.13924022,0.09775981,0.6128938,0.2794445,0.26672113,0.027985213,0.098148875,-0.110643655,-0.1841998,0.64247876,0.4167806,-0.2614031,0.18046567,0.007930869,0.73347586,0.24580704,-0.03736799,0.15608579,-0.005968511,-0.57153594,-0.26787513,0.00056456437,-0.23636952,0.49727115,-0.070591,0.3399463,0.46998912,-0.34972745,-0.08018858,0.66234684,0.21012536,0.011702841,-0.103737116,-0.659231,0.4533162,-0.6394244,0.07213765,-0.25412387,0.8474826,0.06356514,-0.6923923,0.029835511,-0.7051004,-0.04457982,-0.012632641,0.5061674,0.6046801,0.8752034,0.14841388,0.7490545,-0.35398793,0.015894849,-0.19246398,-0.090971686,-0.08343742,-0.19685169,0.009029966,-0.34066153,-0.26592368,-0.5194712,-0.2706982,-0.04684632,0.6187668,-0.779602,-0.19073986,0.04531548,0.6259112,-0.29492092,-0.13627546,0.9848175,0.99827707,1.2212809,-0.076447174,1.0433627,0.0652891,-0.14634305,-0.10755489,0.16615205,-0.6421953,0.41317606,0.48715642,-0.15460223,0.40936276,0.22914958,-0.001136811,0.5400646,-0.543205,-0.037335254,-0.17505866,0.13716637,0.015208479,-0.30479366,-0.5893971,-0.31524104,0.10553735,0.18845235,-0.0999697,0.4847422,-0.25950024,0.5867476,0.09516302,1.2060775,-0.24649125,0.15112342,0.2276505,0.34928018,0.039160527,-0.21022578,-0.14076129,-0.3224987,0.28569934,0.2720731,-0.59784234,-0.077368386,-0.111855745,-0.4040206,-0.29641116,-0.14264274,-0.35779336,-0.5061981,-0.59026676,-0.43485597,-0.17627412,-0.2707926,0.2960193,-1.9629265,-0.27391088,-0.09361625,0.46995065,-0.20816651,-0.6244674,0.045479264,-0.4623032,0.4008106,0.19506116,0.54332787,-0.6228802,0.6501925,0.58178675,-0.40040255,0.10200372,-0.70391685,-0.3431641,0.05710994,0.05768696,0.20564103,-0.29286873,-0.0175039,-0.20182584,0.557743,-0.34764272,-0.03066989,0.26216802,0.4389342,-0.27676365,0.7020693,0.010181709,0.5396271,-0.6643005,-0.42659238,0.66484857,-0.49211475,-0.06891909,-0.08245858,0.00058043003,0.41329768,-0.678629,-0.911306,-0.8152905,-0.25280637,1.3361126,-0.056359448,-0.4619686,0.08783645,-0.6834228,-0.39599323,-0.2029873,0.2895424,-0.13638228,0.087849975,-0.7668907,-0.32383215,-0.31000704,0.32574427,0.067825176,-0.100857854,-0.7258583,0.71316105,-0.07641976,0.3786745,0.49688908,0.11739481,-0.30135024,-0.53301877,0.07980058,1.1683503,0.6910934,0.20606862,-0.3693636,0.07391623,-0.20380996,0.41582146,0.021947784,0.7094068,0.7666531,-0.110450916,0.15025462,0.2230408,0.0015738715,0.14125295,-0.063537,-0.5723808,-0.35271966,-0.0027641682,0.8898976,0.8391049,0.11159749,0.43551895,-0.115209885,0.445871,-0.15250403,-0.4477029,0.34049243,0.97179693,-0.24382162,-0.42340127,0.85406685,0.6017683,-0.16986771,0.5758623,-0.5794819,-0.528108,0.18684587,-0.11471145,-0.44639805,0.29274487,-0.3286514,0.33149,-0.98508584,0.42233017,-0.74228853,-0.630115,-0.6182278,-0.23709202,-1.8238641,0.491975,-0.19826902,0.026903791,-0.05317416,-0.5098929,0.2051931,-0.6669209,-0.7961344,-0.034704708,0.15119566,0.71766335,-0.05081668,-0.09845979,-0.035015795,-0.7442539,-0.19697885,0.119934365,0.40480626,0.15196289,0.0065015717,-0.4363967,-0.019577948,-0.34265634,-0.3014537,-0.13440055,-0.90231186,-0.65133053,-0.08328199,-0.62552774,-0.4060826,0.8225651,-0.23282123,-0.043651395,-0.21555905,0.055570375,0.15512466,0.29456326,-0.25741503,0.0397846,0.069071025,-0.24946715,0.07558834,-0.14870375,0.079857446,0.178382,0.43707916,0.33943394,-0.46896428,0.32504025,0.84733987,0.933568,-0.16833733,1.1750985,0.5030539,-0.14385635,0.27368304,-0.16946357,-0.6427262,-0.618012,0.12402162,0.2663152,-0.50681597,-0.15310456,0.35785297,-0.33625612,-0.9310512,0.85471576,-0.20226212,-0.031150877,0.1255688,0.6097573,0.48306406,-0.2988309,-0.42893317,0.04155411,-0.2024185,-0.38732642,-0.42721912,-0.5408054,-0.49806872,-0.6329289,1.7786618,-0.18397747,0.37920886,0.46986458,-0.067446575,0.19768216,0.05827947,0.011402789,0.08771371,0.59075433,-0.21133779,-0.8095614,0.12603615,-0.22685537,-0.06643958,-0.30063033,0.21809706,0.78497255,-0.8378416,0.1296451,0.41327703,-0.020817501,-0.109329075,-0.6892826,0.1410702,0.18444906,-0.29078272,0.5450382,0.511933,-0.5656782,0.43143034,0.345904,-0.2840061,-0.76454985,0.52902454,-0.06637083,-0.41884154,-0.16049789,0.39482358,0.22992998,0.006036466,0.07778573,0.20638758,-0.40874565,0.48231384,0.027472723,-0.18474227,-0.21687722,-0.2777311,-0.24740265,-0.7903187,0.3343685,-0.5378125,-0.58447236,0.35767624,0.059309363,0.08643457,0.47522643,0.50161874,0.5208501,-0.32327202,-0.076787695,-0.34572232,-0.5450659,0.56824774,0.5512759,0.6430682,-0.49288788,0.5388911,0.17711458,0.04977006,-0.11272097,0.13792668,0.59587634,-0.48966244,0.37953168,0.049915258,-0.13342303,0.22159442,1.0765634,0.16061015,0.40407676,-0.10824654,0.008099556,-0.14610499,0.22125855,0.266798,-0.03268321,-0.69739825,0.054404322,0.027792638,0.048307624,0.6651757,-0.07578421,0.17918563,-0.28701356,-0.3225291,-0.09300835,0.17973928,-0.2104939,-1.7403547,0.4461137,0.089724965,0.8655657,0.35083297,0.370177,0.13766377,0.6353227,-0.32144636,-0.00089198624,0.427642,0.18585008,-0.15272653,0.5265227,-0.57549584,0.6347252,0.041152433,0.1397031,-0.068539806,-0.37717655,0.5718887,0.88887686,-0.18833952,0.07064881,0.010134664,-0.38140938,-0.16428326,-0.51652616,-0.07554401,-0.60594964,-0.123675585,1.0227557,0.46402597,0.41159552,-0.191948,0.028366674,0.16589078,-0.12266369,0.4606969,-0.20550914,0.048682537,-0.2480341,-0.33399305,0.19454727,0.6572683,0.1264926,-0.0064616124,-0.06039703,-0.11252118,0.28880182,0.08491146,-0.07932551,-0.18714686,-0.8466547,0.09864055,-0.7621019,-0.21203123,0.123685576,0.0058878334,-0.0851982,0.2926865,0.12563306,-0.35715985,0.46311873,0.04189417,0.5843908,-0.03041656,-0.07590899,-0.096555494,0.4547758,0.08764198,-0.31716105,-0.1916859,-0.13548519,0.45250985,-0.56719875,0.24447137,-0.13324484,-0.40631372,0.118195035,-0.046368983,-0.0946979,0.38953254,-0.20741655,-0.09142039,0.34334043,-0.01216754,-0.022856258,-0.34771794,-0.19459642,0.092336066,0.27966633,-0.19822446,-0.2506387,-0.34566176,-0.0344481,0.50798804,0.10443134,0.45327684,0.47722006,0.19845603,-0.47565463,0.039976254,0.14199246,0.7327333,-0.2732535,-0.0708746,-0.58251965,-0.22913092,-0.33790523,0.6297911,-0.1313821,0.33338895,-0.048445366,-0.35352919,1.1814541,0.4145827,1.3604579,-0.038607087,-0.3133427,-0.011319258,0.54603744,-0.34614763,-0.16168019,-0.4839814,1.2941773,0.38985175,-0.26062486,-0.12836608,-0.5182286,-0.041548092,-0.18065949,-0.34206226,-0.26911452,-0.100340255,-0.5821259,-0.1014739,0.43819606,0.46755487,-0.026515007,-0.17687038,0.21562615,0.576184,0.016866384,0.01788153,-0.41251087,-0.12334018,0.40840933,0.34146583,-0.28648213,0.029136397,-0.637622,0.26474944,-0.758033,0.07775923,-0.38137913,0.15439178,-0.20079578,-0.51092345,0.31348684,-0.1705113,0.30968726,-0.47617912,-0.28055122,-0.03819679,0.26094747,0.04004667,0.20342135,0.6265891,-0.35854125,-0.017233757,-0.25386813,0.3512522,0.8896647,-0.19030127,-0.23989083,0.18210465,-0.30894575,-0.5517234,0.28919217,-0.34809282,0.06429014,-0.0065753,-0.2650285,-0.52210593,0.29486415,0.40169457,0.097722076,-0.10571203,-0.77307606,0.10176389,0.5412868,-0.45478103,-0.2857179,-0.315021,0.17804004,0.64797443,-0.0577948,-0.32062104,0.0020701452,0.63697714,-0.17161523,-0.41208783,-0.0043179337,-0.35483673,0.17204365,-0.08570438,-0.34064052,-0.0928677,0.020469742,-0.5386498,-0.100015596,0.5198692,-0.34384358,0.0033674024,-0.19176155,0.15916711,0.8987076,-0.117452934,0.115329735,-0.16743508,-0.5169461,-0.9508438,-0.28768885,0.18081596,0.50979954,-0.07439233,-0.86741185,-0.14014763,-0.36550573,-0.4558201,0.051723924,-0.08479918,0.5256512,0.24639797,0.6136264,-0.28174993,-0.7989495,0.34444502,0.14395514,-0.1816053,-0.3277304,0.4897981,0.15252568,0.7985458,0.049757812,0.09622779,0.21548805,-0.6061947,0.19567494,0.028551238,-0.038278803,-1.0292283,-0.22610584,499 +945,0.59687823,-0.1423956,-0.5763544,0.01478908,-0.28555477,0.14058676,-0.18093139,0.5031454,0.38927662,-0.4573216,-0.30764884,-0.34465373,0.15015036,0.1212264,-0.18711735,-0.36248106,0.01984831,0.40293473,-0.5237313,0.49378604,-0.22961365,0.23872823,0.22021738,0.50849605,0.16563721,0.16242827,-0.083194114,-0.29472005,-0.334735,-0.52028775,0.14517832,0.19096018,-0.7816723,0.18310584,-0.4857664,-0.36421764,-0.00808825,-0.6386822,-0.5701896,-0.8036611,0.29413462,-1.0410256,0.71436524,0.22685748,-0.25561514,0.2821735,0.24562879,0.27408788,-0.031674694,-0.06565163,0.31654054,-0.30166376,-0.19003981,-0.31463355,-0.28332588,-0.41229114,-0.6622818,-0.009757403,-0.29500648,-0.021331359,-0.4329085,0.26486647,-0.29410133,0.07644855,-0.2908046,0.54410547,-0.37952426,0.42532614,0.08978078,-0.18437591,0.27082703,-0.54447716,-0.311296,-0.25543404,0.25988844,-0.06794423,-0.257218,0.2499632,0.15740927,0.377514,-0.118050985,-0.20959999,-0.3068403,-0.0018924583,0.09283912,0.5836516,-0.46248153,-0.40110156,0.04083648,-0.15055834,0.1083642,0.13845088,0.0953258,-0.23941694,0.037556678,-0.064419575,-0.287501,0.4647788,0.63122934,-0.27725837,-0.12399936,0.18355256,0.28313267,0.16848134,-0.14063682,-0.17741208,0.12144881,-0.57103103,-0.19772048,0.17213167,-0.34661025,0.66015506,-0.13173626,0.19086127,0.6129351,-0.31609195,-0.024056586,0.4279434,0.4050561,0.27954122,-0.37390473,-0.3525391,0.47438872,-0.584999,0.083354965,-0.45095712,0.9336977,0.047165968,-0.49952975,0.33086023,-0.7565325,0.09832616,-0.01542236,0.47897825,0.431231,0.6042824,0.23352566,0.53342795,-0.17353886,0.01669641,-0.0812229,-0.22027983,0.040543076,-0.27965605,0.31208456,-0.25297928,-0.16635956,-0.016459053,-0.18710035,0.12189369,0.4319765,-0.37527427,-0.2858393,0.25675297,1.0189077,-0.24735741,-0.2678424,0.8680195,1.1703657,0.873159,0.0889036,1.4829051,0.19057487,-0.27145633,0.017853223,0.022247167,-0.7646839,0.2875294,0.084030636,-0.73809165,0.053487007,0.2740278,-0.24645938,0.16086638,-0.5646426,-0.16983268,-0.2431429,0.20418645,-0.015262062,0.029670082,-0.5178194,-0.31429684,-0.30211946,-0.12979211,0.25282758,0.19062595,-0.2810454,0.25397962,0.12318111,1.0853778,-0.17703037,0.1063675,0.047661997,0.49961475,0.06296389,0.06236939,-0.015802365,0.2622639,0.30694816,0.38303137,-0.44153145,0.00019363924,-0.23938619,-0.30798313,-0.07385311,-0.1042254,-0.09536707,0.07969912,-0.48573226,-0.39158437,-0.17052966,-0.104033425,0.37264153,-2.4103234,-0.12989284,0.05995244,0.45642567,-0.24315782,-0.4049948,-0.21145396,-0.6370914,0.3507883,0.12966135,0.4857189,-0.6421928,0.28293726,0.43890998,-0.6345439,-0.17960669,-0.7334812,-0.20816995,-0.065311626,0.052206837,-5.1246447e-05,0.075117104,0.0451937,-0.20138092,0.46957967,0.048625264,0.13597962,0.40164745,0.43864545,-0.15460517,0.44977713,0.036093876,0.53322697,-0.5217187,-0.3200665,0.244918,-0.44717267,0.3590722,-0.16083446,0.07842321,0.59557366,-0.53781265,-0.8344234,-0.7927298,-0.06923411,1.1004989,-0.14239886,-0.46595934,0.12983602,-0.37922305,-0.37828684,0.013963011,0.67797786,0.016357226,0.2575072,-0.77596074,-0.20674853,-0.2815888,0.33899945,0.0546532,0.02623272,-0.44332626,0.7208281,-0.034434784,0.29355657,0.3909956,0.20716234,-0.31582978,-0.4566704,0.039698035,1.0948033,0.30572847,0.23219018,-0.320165,-0.2616344,-0.44138068,-0.07651432,-0.05924815,0.81341034,0.6297145,-0.16602302,-0.012674589,0.3566461,-0.009837478,0.25149986,0.014340153,-0.57814366,-0.29938725,-0.10999758,0.5153695,0.8924831,-0.08680063,0.30614007,-0.14316322,0.59548515,-0.13001601,-0.391108,0.3169309,1.1618327,-0.19920197,-0.12064446,0.9829846,0.4932701,-0.42704478,0.5389076,-0.5626393,-0.6060315,0.23297729,-0.10277202,-0.55143636,0.26591825,-0.27990386,0.08747525,-0.7894541,0.5677113,-0.27424708,-0.45293418,-0.4136535,-0.12794195,-2.7000604,0.36094174,-0.35776633,0.007992983,-0.20661329,-0.16090587,0.15324889,-0.4283539,-0.402919,0.26032817,0.18285526,0.65451527,-0.16775817,0.21714784,-0.17931424,-0.41810694,-0.18236518,0.29332954,0.41010398,0.2832717,-0.32424802,-0.4382211,0.04540348,0.065267034,-0.034159627,0.09905167,-0.9252228,-0.5152008,-0.14335151,-0.6658512,-0.43603772,0.6814387,-0.3976,0.036296308,-0.22808193,0.03051619,-0.20340417,0.2838115,0.0023454537,0.3375518,-0.04581274,-0.15184605,0.024525069,-0.23752676,0.57065964,0.10070632,0.4399184,0.27645954,-0.036072526,-0.018457808,0.34417132,0.4920165,-0.2126461,1.058387,0.36238506,-0.16902663,0.22853684,-0.15437669,-0.48023263,-0.6186505,-0.02932002,-0.114867754,-0.49292758,-0.18119453,0.06642695,-0.39723024,-0.80159736,0.71400493,-0.00888708,-0.010259702,0.13046242,0.33713037,0.40425873,-0.25767648,-0.20261914,-0.058590177,0.0036208087,-0.64400005,-0.21402402,-0.630047,-0.42302313,-0.10345899,0.85981935,-0.10189665,0.23309673,0.31398165,-0.20876512,0.04850533,0.21421756,-0.05462738,-0.06765184,0.95730036,-0.041452345,-0.67872024,0.55368036,-0.2697815,-0.06723599,-0.60678804,0.6145912,0.5192875,-0.8005955,0.81129766,0.78489107,0.07268144,-0.3346027,-0.43685502,-0.48334876,-0.12537421,-0.07552448,0.27800784,0.24668965,-0.94387835,0.19532771,0.26384652,-0.4394577,-0.7490788,0.6022534,-0.13816518,-0.46120557,-0.058317743,0.47404596,-0.06779668,0.09410114,0.028147524,0.32158113,-0.3603839,0.39185488,-0.07818102,-0.21802236,0.16656037,-0.21804671,-0.031584717,-0.8104737,0.2802261,-0.42572525,-0.4240795,0.4078867,0.09195732,-0.11110301,0.48293382,0.28671482,0.32796037,-0.35131022,0.10440647,-0.23790435,-0.32068187,0.5364058,0.35539582,0.6618009,-0.6143074,0.6932139,0.007223304,-0.39787188,0.14415275,0.25051624,0.48252365,-0.11439759,0.49635667,0.14390329,-0.121740416,0.09304447,0.8456135,0.219726,0.5598871,0.058501266,0.10599582,0.19752264,0.0806711,0.11651967,0.09847806,-0.81734484,-0.12251561,-0.446451,0.09280643,0.42506,-0.003176578,0.38711298,-0.17300078,-0.34469417,-0.06946675,0.12391796,0.22442746,-1.2838731,0.2172738,0.083724625,0.7868141,0.30505112,-0.047944188,-0.024095839,0.85813135,-0.0054716645,0.05402137,0.22775203,0.057599388,-0.31578892,0.66284335,-0.49439794,0.30422142,-0.21230197,0.100706436,0.06871665,-0.11398259,0.30642363,0.9473259,-0.22853531,0.034254495,0.11131165,-0.33587587,0.16032039,-0.4465342,0.39668074,-0.6423986,-0.27939448,0.7835543,0.50768065,0.4092225,-0.15880431,0.09648035,0.115613915,-0.17728795,0.2681738,0.047732476,0.08602223,0.17483903,-0.81233305,0.13484138,0.64882165,-0.10355339,0.13876317,0.08336855,-0.060960904,0.40423152,-0.314517,-0.0005680675,-0.17324184,-1.0123998,-0.13721825,-0.7627218,-0.5231141,0.27509722,-0.189197,0.09804566,0.09779243,0.103231356,-0.29698288,0.5308098,0.29648665,0.72270393,0.039713167,-0.25639024,-0.41743806,0.28116152,0.12723385,-0.1842369,0.029430855,-0.2548838,0.12249041,-0.5272939,0.3745985,-0.11202776,-0.14402801,-0.22448856,-0.11714708,0.030490112,0.5788698,-0.0149449,0.04742304,0.27952728,-0.06286337,-0.3638202,-0.1698377,0.0044805678,0.10366671,0.50041974,-0.0541775,-0.20985842,-0.35929298,-0.19951554,0.12156933,-0.017250983,0.5863917,0.4794976,0.32198307,-0.01743675,0.011289943,0.11187098,0.6517521,-0.22139154,-0.22475916,-0.3088216,-0.39043283,-0.29459846,0.45027235,0.05946946,0.34658182,0.2934871,-0.043728296,1.0367609,-0.059759423,0.9628618,0.06801062,-0.25153065,-0.0060995873,0.42765445,-0.28405073,-0.22320677,-0.44365403,1.1517434,0.5088775,-0.11068826,-0.10568767,-0.4355903,0.08912515,0.090871185,-0.14474668,-0.20517808,0.03072068,-0.5283347,-0.16091634,0.1645857,0.53502065,0.060330693,-0.18778385,0.29049218,0.3804042,0.048677918,0.31303704,-0.7828494,-0.20724021,0.44684884,0.42647526,-0.05046827,0.38061142,-0.3323269,0.39886856,-0.4779091,0.10482225,-0.3612441,0.0673927,-0.18800591,-0.39788094,0.14125322,0.018883927,0.5233869,-0.6183447,-0.057043508,-0.22198291,0.43743563,0.2522651,0.04960027,0.58553237,-0.21611987,-0.3203897,-0.007580073,0.6931885,0.9601349,-0.43346596,0.008983883,0.47321406,-0.3494477,-0.57602143,0.35572585,-0.3563071,0.11067295,-0.07068923,-0.17322992,-0.52968156,0.25032786,0.11807886,-0.077705495,0.022070317,-0.64549977,0.107564546,0.23809947,-0.20345551,-0.31324568,-0.077840194,0.3389176,0.54540473,-0.09786127,-0.24333325,-0.0010364272,0.25294635,-0.23515506,-0.37980774,-0.03817831,-0.5060671,0.10966962,0.04091444,-0.30478483,-0.26301062,0.02917505,-0.54138875,0.054397885,0.09089086,-0.35569692,0.12387867,-0.2051834,-0.020820921,0.62135774,-0.13503014,0.057159185,-0.4409343,-0.61030257,-0.90590453,-0.3380772,0.02729283,0.2086815,0.107890084,-0.48937356,-0.120736405,-0.047714677,-0.24877526,-0.03439444,-0.35786748,0.51361454,0.24907555,0.41319788,-0.30650976,-0.86025447,-0.07044292,0.08982837,-0.2131981,-0.70063096,0.2668338,-0.071566395,1.0588254,-0.018846376,0.13977498,0.47631833,-0.47768247,-0.15414782,-0.10104471,-0.13712639,-0.8356653,-0.04923031,559 +946,0.5335504,-0.47940782,-0.53678036,-0.14916216,0.016672673,-0.13496001,-0.09117677,0.8210806,0.31645492,-0.36511105,-0.26760226,-0.2652327,0.075405605,0.66012675,-0.06949621,-0.66344756,0.0487154,0.26444858,-0.52026314,0.7481466,-0.39180744,0.15226668,-0.04463575,0.48981667,0.26072675,0.39340603,0.14955455,-0.11691294,-0.196379,0.07823979,-0.04234005,0.0956727,-0.46505365,-0.030652784,-0.16366991,-0.4734084,-0.14122863,-0.53023183,-0.52725255,-0.8184048,0.296051,-0.8899068,0.6193447,0.060695324,-0.3413291,0.19494213,0.07334008,0.4080958,-0.4193327,0.026266104,-0.0049125,0.100966446,-0.02639739,-0.1661266,-0.2265036,-0.64497334,-0.66357607,0.07582159,-0.27691406,-0.022220904,-0.07929592,0.012628313,-0.3516036,0.013916644,0.03491296,0.40476924,-0.5063351,0.019106453,0.2685239,-0.106072165,0.21193595,-0.52689844,-0.3560713,-0.27776912,0.32542327,-0.06322213,-0.22934757,0.2610744,0.4368765,0.5800199,-0.049757328,-0.14360671,-0.30437967,0.096973725,0.04305039,0.5991965,-0.23499058,-0.77737653,-0.20666213,-0.047431782,0.34852856,0.14670266,0.33480185,-0.2591445,-0.059357252,-0.01688915,-0.35096473,0.37812427,0.5600035,-0.4051505,-0.25751448,0.32720307,0.48156434,0.2677748,-0.23455343,0.062921874,0.04843397,-0.5090211,-0.16563722,0.024883877,-0.24606484,0.8581448,-0.2533431,0.27235544,0.6715229,-0.15723892,-0.025561506,0.057841714,0.0769046,-0.28141716,-0.24602006,-0.33798045,0.33133787,-0.3177666,0.026245588,-0.2669365,0.64405894,0.35966328,-0.6706895,0.32298043,-0.57482344,0.31220138,-0.1814653,0.40215448,0.7109206,0.40193412,0.29401472,0.5722818,-0.37794217,0.055095494,0.1755569,-0.35888675,0.08047152,-0.26270312,-0.20579177,-0.5937798,0.19863376,0.22204265,-0.17818269,0.19487958,0.73287106,-0.6158228,-0.22356099,0.05191581,0.85054016,-0.25762737,-0.16177124,0.9682464,0.9448686,1.0969008,0.03639323,1.3829207,0.4719114,-0.26612532,0.29013866,-0.3297728,-0.88254637,0.24646765,0.37611207,-0.65689826,0.62839234,0.0007023107,-0.2442884,0.5401259,-0.2925832,0.06748976,-0.23299819,-0.101274915,0.065553434,-0.36107796,-0.5773333,-0.39921352,-0.27394345,0.038713466,0.15901622,0.27027166,-0.142002,0.4593128,-0.00020168045,1.7029877,-0.006571022,-0.011107043,0.019937364,0.71739376,0.16839193,-0.21806854,-0.030263739,0.26695308,0.51737034,0.17198052,-0.67539716,0.014261051,-0.2930958,-0.6428869,-0.16964155,-0.29903692,-0.06599615,0.07802967,-0.5347778,-0.24028358,-0.26471633,-0.062698156,0.36788273,-2.263115,-0.33015433,-0.31524917,0.5397016,-0.32690445,-0.28745213,-0.24742395,-0.3853656,0.25333416,0.41871712,0.58063835,-0.9622627,0.47244385,0.31263384,-0.5968783,0.03552562,-0.61471236,-0.15377563,-0.07458801,0.41865423,-0.14932369,0.003583919,0.4475973,0.16752501,0.4835451,0.103152126,0.20365883,0.3240867,0.4739561,-0.0033985486,0.26322058,-0.09614728,0.5780589,-0.27843294,-0.17379631,0.18748488,-0.42819852,0.1422618,-0.14492902,0.17268233,0.47010812,-0.68684393,-0.9988428,-0.5801354,0.056350384,1.1607347,-0.2601903,-0.46463454,0.18649782,-0.3133798,-0.23221658,-0.15784146,0.53275454,-0.1555923,-0.04910065,-0.95769143,-0.03856539,0.026963824,-0.07444433,0.014716185,-0.097759224,-0.21462923,0.6719954,0.046935562,0.54701436,0.25241697,0.18960375,-0.2304411,-0.6638826,0.08922216,0.8376261,0.3764384,0.2289938,-0.12578359,-0.23221599,-0.60828876,-0.08546542,0.21340461,0.39114368,0.70422083,-0.13656941,0.1095784,0.3990138,0.21012749,0.2454034,-0.13215876,-0.3598552,-0.29841363,0.007140127,0.6013964,0.8566509,-0.5762988,0.49666223,-0.15364324,0.18494043,-0.0027471618,-0.53980374,0.77803457,1.1412811,-0.30922368,-0.29556015,0.6882193,0.49853298,-0.59715027,0.5323547,-0.60993123,-0.27356455,0.3566869,-0.063342065,-0.29738402,0.29566777,-0.35681772,0.32238638,-1.0715063,0.44851044,-0.30532143,-0.16408409,-0.49745095,-0.008640966,-3.6034882,0.43784705,-0.32880434,-0.21938218,-0.31113642,-0.18571825,0.10175278,-0.7815845,-0.72102284,0.2928925,0.054363597,0.7273489,-0.022729905,0.1514623,-0.2758989,-0.3194044,-0.3048565,0.030140894,0.13142352,0.4786018,0.04462892,-0.68254703,-0.22238235,-0.030675411,-0.42944872,0.25351745,-0.84069306,-0.50840145,-0.11014816,-0.65697896,-0.3537777,0.60550404,-0.18531333,0.0811849,-0.23921989,-0.039109465,-0.3366269,0.39468578,-0.17558599,0.05631192,0.022053735,-0.07641663,0.20427479,-0.078729674,0.19953305,-0.050530933,0.45503023,0.08587087,-0.25950655,0.24284229,0.65014225,0.7948342,-0.029194105,0.74858755,0.7663451,-0.07550302,0.34670356,-0.21899462,-0.09690084,-0.5159811,-0.46587422,-0.08808423,-0.45227745,-0.65825444,0.04389495,-0.36519775,-0.9144078,0.5224741,-0.022842916,0.45345366,0.08685675,0.097419545,0.636844,-0.048894044,0.101275064,-0.16328268,-0.35192037,-0.65559494,-0.08323758,-0.77423745,-0.3997513,0.5093049,0.8475531,-0.20263553,0.05260018,0.05838656,-0.40769145,-0.04784386,0.27511004,-0.07511556,-0.016874898,0.30671015,-0.3493674,-0.8001661,0.3970949,-0.0956507,-0.27378055,-0.53308845,0.18489023,0.51328593,-0.71157736,0.7929213,0.41013864,-0.029411769,0.002765287,-0.5363782,-0.44666204,-0.06092213,-0.10294983,0.3324815,0.3505402,-0.8888481,0.34596923,0.44242936,-0.38725746,-0.6210863,0.82975936,-0.12959868,-0.060826167,-0.10381877,0.30998152,0.1529199,-0.12149321,-0.4086548,0.28891665,-0.5252264,0.30489942,0.2702584,-0.15147215,0.36994556,-0.0392836,-0.005308953,-0.9701923,0.063982576,-0.6275556,-0.1194864,0.3938255,0.14530845,0.26823303,-0.27170038,0.19192408,0.2461595,-0.3473693,0.15660642,0.013761184,-0.35961255,0.3913964,0.34743536,0.475039,-0.5008641,0.65461403,0.04510316,-0.17936529,0.16661173,0.18448947,0.44809473,0.4065132,0.41927183,0.25951192,-0.39915457,0.2857534,0.7816,0.3071435,0.4443163,0.32640374,-0.07081887,0.35938975,0.24799977,0.19818354,-0.089015,-0.43312645,-0.26741326,-0.1545496,0.2651122,0.6133397,0.22224626,0.42043492,-0.23066579,-0.38334426,-0.03783158,0.17564797,0.19289559,-1.5214137,0.23997559,0.35668924,0.7502617,0.5248682,-0.22972474,-0.094364114,0.52749354,-0.21370386,0.17361456,0.43719274,-0.024090929,-0.77073824,0.6722616,-0.5459728,0.4252691,-0.11578999,0.070311636,0.048042916,0.25483555,0.3050409,0.65949625,-0.031132845,0.054031182,0.02127256,-0.40902576,0.008867248,-0.47371358,-0.06835442,-0.63398844,-0.10062745,0.6751812,0.5017461,0.38426608,-0.26083025,0.05913677,0.10553408,-0.16155137,0.19590427,0.058504775,0.2452282,-0.10861272,-0.9600842,-0.1550054,0.521906,-0.06645174,0.27693808,0.1337563,-0.44760647,0.37806797,-0.30226794,-0.08796225,0.03987214,-0.8703428,-0.1699719,-0.3280047,-0.45170593,0.55327857,0.14206572,0.2526962,0.2803628,0.10368762,-0.48788893,0.23494096,-0.34304747,0.8409023,-0.22801374,-0.45966598,-0.4629157,0.13653885,0.3541268,-0.1892951,0.17795339,-0.35482457,-0.21778022,-0.43942964,0.6213569,0.3291279,-0.25267732,-0.012968648,-0.08146275,0.062143814,0.5567402,-0.39029816,-0.19127601,0.07339766,-0.09874806,-0.27410164,-0.3582341,-0.11267298,0.40963048,0.39198416,0.08477941,-0.19143124,-0.087590046,0.11355701,0.5333218,0.003947908,0.31308773,0.64464974,0.33503968,-0.2931175,-0.19687085,0.51404244,0.42669305,0.093742706,-0.31785235,-0.48515767,-0.7324774,-0.36785355,-0.19236611,-0.1547772,0.4748963,0.08396513,-0.25104943,0.8181667,0.060273565,1.3487236,0.06463163,-0.5820632,-0.020313136,0.47845563,0.0519145,-0.20252861,-0.21635456,1.0364845,0.6831332,-0.17168091,-0.22671801,-0.5328111,-0.24519318,0.20612575,-0.33549574,-0.2574619,0.13715924,-0.56350446,-0.42486325,0.16140951,0.23400931,0.38420218,-0.13863967,0.43304902,0.26863915,0.041105837,0.2607714,-0.56581765,-0.47156173,0.1968533,0.31857386,0.047101382,0.20698506,-0.46038055,0.2839603,-0.6024319,0.12181113,-0.28326187,0.2653574,-0.09898431,-0.57689685,0.2121916,0.04591838,0.45260173,-0.43470535,-0.46917212,-0.26025277,0.7108484,0.07320866,0.09272463,0.6089163,-0.43118897,-0.10295456,0.1081432,0.58140415,1.1542993,-0.14879297,-0.057619378,0.43373358,-0.44941643,-0.92330325,0.47073528,-0.12846205,0.61951566,-0.08641022,-0.112090655,-0.98493266,0.41158706,0.1866793,-0.15922242,0.06772679,-0.46364644,-0.39242095,0.3072417,-0.33865812,-0.21195477,-0.47791308,0.20000814,0.54531693,-0.4235038,-0.3702281,0.18852915,0.13485633,-0.15085755,-0.5096975,-0.17991771,-0.45846233,0.3413144,0.19718151,-0.36022905,-0.25832966,-0.21116844,-0.42717925,0.40826112,0.15708572,-0.32214394,0.3016048,-0.5819321,-0.35510752,1.1500373,-0.34880286,0.41808262,-0.54834837,-0.40988004,-0.9117395,-0.66805744,0.57230395,0.13420822,0.02893392,-0.81562144,0.18999995,0.1150012,-0.16078101,-0.06347721,-0.24743158,0.56642413,0.11120398,0.36729088,0.060587123,-0.73785025,0.110933356,0.106592625,-0.17110328,-0.719108,0.5110126,0.050271437,1.3043381,0.1559943,0.25105265,0.4561021,-0.51210076,-0.46008274,-0.2301507,-0.2613289,-0.64050746,0.020239623,579 +947,0.8037048,-0.12326792,-0.37064317,-0.19048482,-0.28422126,0.12661678,-0.26183823,0.5641649,0.39199364,-0.54897,-0.38457662,-0.23914677,0.0013268049,0.3917947,-0.2597335,-0.9597449,0.24265684,0.12479103,-0.3877198,0.6516674,-0.5113407,0.22597612,-0.32956278,0.417663,0.21602258,0.39659908,0.24625611,0.1199308,0.11710394,-0.3076452,0.26470086,0.02153324,-0.538229,0.25848845,-0.02160259,-0.41237324,0.0072636767,-0.5397314,-0.44946444,-0.80339885,0.3657665,-0.8212251,0.5635588,0.019013323,-0.1698073,-0.025995314,0.14141497,-0.07809878,0.12382162,-0.14015016,-0.10537613,0.03940915,-0.32698217,-0.21622299,-0.29394054,-0.7017092,-0.69032013,0.027602,-0.29764375,-0.13079049,-0.41540653,0.038579766,-0.48278219,0.0728235,0.075950466,0.52455467,-0.551766,0.11865311,0.12945794,-0.14386757,-0.12542643,-0.6309111,-0.3451586,-0.12189955,0.25871995,-0.082180336,-0.21530789,0.18049818,0.4653304,0.51274467,-0.036101278,-0.03985009,-0.2244137,-0.032849487,0.33153832,0.7508347,-0.11135778,-0.8441565,-0.1877336,-0.05950948,0.43289003,0.12257309,0.49387833,-0.30616382,-0.004122604,-0.011715575,-0.3343804,0.73475766,0.58866096,-0.5938604,-0.109537356,0.22181673,0.44324666,0.25238585,-0.2651203,0.27173844,0.048721693,-0.5589067,-0.26052824,-0.22130364,-0.07859891,0.53408545,-0.11821573,0.31145433,0.46515477,-0.4378522,0.08184126,-0.044500187,-0.22906183,-0.22009769,-0.26629803,-0.10478024,0.24948101,-0.2556348,0.15004815,-0.38124353,0.85388094,0.20545945,-0.6978973,0.36174735,-0.6170984,0.12742735,-0.04685688,0.58067334,0.70224124,0.36573735,0.55049634,0.58623016,-0.2351302,0.013443909,0.019429414,-0.32987946,-0.045644023,-0.13917015,-0.10977225,-0.31783116,0.23964292,0.10603959,-0.15221392,0.15502809,0.8939823,-0.47763625,-0.054774024,-0.003595168,0.89217377,-0.27248937,-0.21683007,0.81085515,1.1174319,0.9597908,0.11149334,1.4141338,0.2546829,0.001918958,0.054059993,0.13367414,-0.86119676,0.28579003,0.54275805,-0.16135551,0.40630814,0.21824323,-0.11206308,0.41649663,-0.48684558,-0.12684907,-0.07892942,0.4695385,0.32688266,-0.37380522,-0.4574617,-0.10160272,0.09902844,-0.041265424,0.30298474,0.21478137,-0.2564,0.26317504,0.022909435,1.5918903,0.06908763,0.004862097,0.060817864,0.68055683,0.30128404,-0.2317002,0.20996466,0.039325345,0.06948215,0.025735343,-0.656801,0.17129844,-0.18832515,-0.430645,-0.25079587,-0.29002833,-0.42510644,0.11609964,-0.120031,-0.27279055,-0.18742982,-0.0941044,0.46663362,-2.437995,-0.24118096,-0.099930406,0.40727612,-0.10767233,-0.41356304,-0.06789864,-0.43832615,0.3240945,0.2777184,0.39389923,-0.75914675,0.51596004,0.66073674,-0.65543294,-0.10008877,-0.6452101,0.16810374,-0.073140286,0.40713835,-0.026278816,-0.01538851,0.21404529,0.14649571,0.5541125,0.07146955,0.20753886,0.27233452,0.63284343,-0.05293161,0.37074935,-0.2636864,0.5718778,-0.0164528,-0.20218706,0.19738154,-0.25422856,0.23511477,-0.37420788,0.15275432,0.40624514,-0.4899516,-0.93698955,-0.68486667,-0.336522,1.0162796,-0.027305214,-0.62775534,0.2469614,-0.52323085,-0.4016692,-0.18891953,0.6199054,-0.4281678,-0.2500067,-0.66213703,0.08738118,-0.07319044,0.15178066,-0.011404883,-0.05413783,-0.5321036,0.69357324,-0.14164595,0.40326014,0.10644245,0.32343316,-0.22403361,-0.55691904,0.09628489,0.9206415,0.4643324,0.25524467,-0.34060392,-0.12404378,-0.44099805,-0.08757403,-0.029896235,0.9686509,0.42814767,0.032368097,0.05394785,0.15810795,0.1240362,0.08826273,-0.18651725,-0.23824745,-0.3287255,-0.11746542,0.6247957,0.8780356,-0.5437805,0.3250411,-0.019551711,0.03742909,-0.32891354,-0.42707622,0.45372698,0.8593652,-0.25602406,-0.27630216,0.5994141,0.38410243,-0.57034665,0.38747045,-0.76471883,-0.08190415,0.3878555,-0.03011738,-0.34052017,0.19380201,-0.28111613,0.09969643,-0.808219,0.4795618,-0.39918268,-0.38345587,-0.38029462,-0.017236942,-3.6225302,0.2920032,-0.05377495,-0.17566513,-0.27804613,-0.20516807,0.26747176,-0.43319356,-0.7487023,0.20266414,-0.07466144,0.8055256,-0.095274545,0.1895008,-0.24763714,-0.30868977,-0.30293006,0.09516833,0.062977724,0.59664404,0.005744392,-0.3093997,0.09393723,0.062441353,-0.3048031,0.16723976,-0.1779277,-0.6714367,-0.07375794,-0.17786044,-0.17016885,0.6887748,-0.5766331,0.06627195,-0.50933987,-0.059548978,-0.4147648,0.3277807,-0.06879273,0.020369953,-0.04703096,0.038949665,-0.11858437,-0.19697623,0.5641783,-0.042932566,0.5201056,0.5841047,-0.20462953,0.05513899,0.39483336,0.6144298,0.1867486,1.0193914,0.17932151,0.08759935,0.2654666,0.042228352,-0.3193835,-0.40448797,-0.35735103,0.23528719,-0.48225203,-0.4037278,-0.22007293,-0.4510331,-0.7094364,0.29576498,-0.014359073,0.3774974,-0.04812349,0.23451494,0.6356468,0.028972896,0.006627749,0.21065535,-0.15492569,-0.81390667,-0.19259797,-0.40762198,-0.4374277,0.37270078,0.8022291,-0.033712316,-0.070792235,0.1060565,-0.32885572,0.13850144,0.01706112,-0.025256569,-0.041584875,0.21744758,-0.12725194,-0.77170396,0.47822103,-0.3721593,-0.27471226,-0.75897807,0.2723808,0.63820404,-0.62197614,0.4338045,0.2692856,0.1701584,-0.046398092,-0.47827145,-0.022290533,0.020173918,-0.32100502,0.2552658,0.43968704,-1.1954789,0.3562333,0.15216045,-0.064678065,-0.71732134,0.6383987,0.08842332,0.01376675,-0.006027406,0.40516186,0.5182505,-0.051013518,-0.5778374,0.37944385,-0.5218381,0.28159896,-0.054619443,-0.004796597,0.12896757,-0.08055753,-0.15566826,-0.88677824,-0.16429041,-0.5149033,-0.27865,0.12944907,0.15628533,0.48764756,-0.030702634,0.32356635,0.43217075,-0.34196827,0.1772895,0.14649019,-0.38584653,0.2833139,0.5021574,0.56252104,-0.31215486,0.6643031,0.034979716,0.07261785,0.3160908,0.16123971,0.32068413,0.09655792,0.36337188,0.32528946,-0.20583218,0.06125861,1.2032148,0.09050346,0.38566485,0.1314088,-0.2759334,0.5336254,0.011492132,0.2995715,-0.011334446,-0.7565064,-0.17849563,-0.12663826,0.15716009,0.6286352,0.24349405,0.27194196,-0.24442948,-0.480886,-0.0032887838,0.27155894,0.094617866,-1.3890923,-0.10433856,-0.0589466,1.0119572,0.604451,-0.29720688,0.031511866,0.4425092,0.088154264,0.13753934,0.4451312,0.21578103,-0.41634056,0.36845815,-0.5073955,0.35309908,-0.20725523,-0.04826744,0.13963968,0.022381626,0.24119629,0.7803264,-0.1347417,0.00062994525,-0.0931052,-0.09817577,0.0027107922,-0.48360854,-0.044049457,-0.6229949,-0.015601724,0.71832174,0.6623592,0.36460713,-0.092301875,0.072289556,0.061285757,0.0018405609,0.044149738,-0.0075389636,0.079879574,-0.36966237,-0.7196066,-0.43191198,0.4031255,0.023555474,0.052491244,0.11285999,-0.36794224,0.17678393,-0.08373439,-0.19774471,0.12611245,-0.6862974,-0.2011446,-0.22909804,-0.57972044,0.32582033,0.1844895,0.10614974,0.4015772,0.06373401,-0.2845021,0.263135,0.2268812,0.76400757,0.06634975,-0.038737215,-0.5885229,0.055795833,0.32036301,-0.3077773,-0.020515388,-0.10678401,0.12008543,-0.6451083,0.41943872,-0.07633409,-0.4526644,0.24705482,0.034260865,0.10517247,0.58059514,-0.29772168,-0.090101115,0.28226247,-0.107665844,-0.13250247,-0.07529754,-0.09946032,0.23228806,0.02746011,-0.28383902,-0.09272612,-0.11247275,0.04701159,0.010040197,-0.00917157,0.33228853,0.624995,0.29544953,-0.2665351,-0.23631527,0.2351644,0.81806636,-0.03847357,-0.17830773,-0.28995305,-0.72781223,-0.51190555,0.034708478,0.018803434,0.1796331,0.10087021,-0.50189054,0.33403805,0.116348416,0.9339173,0.13746849,-0.46363112,0.20191585,0.5258965,0.017519344,-0.12163889,-0.49981976,1.0055301,0.31272793,-0.25905967,-0.081170626,-0.41044274,-0.10856583,0.1687081,-0.28568092,-0.067226365,-0.024165122,-0.72339594,-0.11617258,0.120112054,0.20393454,0.0083237775,-0.09531965,0.36250997,0.3090318,0.061661243,0.4373628,-0.67763406,-0.35788175,0.30773437,0.329399,0.021920783,0.16265234,-0.3065196,0.17044817,-0.6269467,-0.0071770605,-0.52148145,0.13705835,-0.17554499,-0.2819438,0.13917571,0.36053473,0.56876606,-0.28781483,-0.49484682,-0.2547336,0.49119046,0.04209623,0.24849753,0.44373444,-0.18070492,-0.07977276,-0.03338224,0.6429712,1.3378092,0.074245065,0.22199531,0.2825896,-0.57192177,-0.734248,0.47981232,-0.58738446,0.15733884,-0.0023520698,-0.029038608,-0.60769117,0.2366511,0.26266536,0.007912219,0.09831598,-0.5788619,-0.5601638,0.15411355,-0.32414687,-0.22226442,-0.3503145,-0.12130964,0.8033005,-0.42798263,-0.17105184,0.0029756264,0.49353448,-0.12634867,-0.74521023,-0.3091397,-0.32070154,0.38591287,0.03411046,-0.26216695,-0.51422673,-0.33830994,-0.50500363,0.13502774,-0.007838043,-0.3908582,0.2662145,-0.36222094,-0.00516348,0.81190544,-0.2912656,0.32476842,-0.59000164,-0.5932905,-0.7743911,-0.49496737,0.12716569,0.1394222,0.03359847,-0.5711394,6.785718e-05,-0.039955497,-0.007033749,0.009361169,-0.3857937,0.4711428,0.10240132,0.529438,0.03864788,-1.0581523,0.1526652,0.12533604,-0.21035342,-0.7422437,0.6250084,0.0031730263,1.1072516,0.13380441,-0.020992003,-0.029569643,-0.47777253,0.15038869,-0.29405922,-0.19587833,-0.5522395,0.42898738,586 +948,0.4759487,-0.35324124,-0.44202548,-0.22663608,-0.34515092,0.10785187,-0.06518855,0.5115873,0.13062452,-0.47690734,-0.18419565,-0.2018464,0.0069303378,0.39289942,-0.4394813,-0.55332255,0.10652501,0.2721366,-0.4629214,0.5071177,-0.2917278,0.33502167,0.16917115,0.34128615,0.2850075,0.18997516,0.17575583,0.20442963,0.032018732,-0.45848224,-0.25587028,0.15246755,-0.18348473,0.2668887,0.056751207,-0.38328856,0.098265894,-0.57825184,-0.15138277,-0.8173182,0.5323625,-0.88569623,0.62547106,0.03064348,-0.30957434,0.15151304,0.68818027,0.37681475,-0.008861953,-0.1641288,0.20057462,-0.120724656,-0.17525153,0.0039304276,-0.13225763,-0.4411642,-0.77380353,-0.07334106,-0.23875855,-0.40755063,-0.45219058,0.29657695,-0.41832924,0.13559951,-0.013664167,0.9119953,-0.4097248,0.010103929,0.1507296,-0.31779245,0.2789568,-0.76140803,-0.16019072,-0.030358948,0.34416425,-0.058548067,0.0018553503,0.2195639,0.4689354,0.3343774,0.007966042,-0.18736538,-0.38783824,-0.22575864,-0.17981216,0.6039598,-0.15809868,-0.5488574,0.043981377,0.050016835,0.27874926,0.3005923,0.35552305,-0.06973537,-0.13111533,0.08280995,-0.2949378,0.46480283,0.2796244,-0.4565263,-0.104798466,0.2594181,0.4253576,0.0012149405,-0.13504979,0.024565643,-0.010213983,-0.63004804,-0.13361156,-0.16363792,-0.31088737,0.34347072,-0.1124681,0.4457061,0.60123175,-0.083813675,-0.15663117,0.073835924,0.10339522,-0.11409462,-0.23039718,-0.429028,0.39083177,-0.4889325,0.21153736,-0.042725086,0.92346746,-0.089256644,-0.54465705,0.3414338,-0.5929739,0.12791844,-0.037579782,0.2920535,0.522728,0.35492316,0.4576772,0.6448798,-0.21360126,-0.08230693,-0.038923204,-0.37309694,-0.115377314,-0.17939077,0.21705656,-0.5731806,0.18264484,0.082225375,-0.03577721,0.111103036,0.6964624,-0.6244001,-0.106405474,0.10599206,0.8870658,-0.22911245,-0.20108858,0.8214722,1.0025357,1.0942205,0.08051053,0.90981805,0.06152541,-0.2710908,0.008058369,0.02506475,-0.37708524,0.39575005,0.6311663,0.02162209,0.14742452,-0.015513972,-0.00062105194,0.5919505,-0.30665562,-0.15421158,-0.11562486,0.21663886,0.15023206,-0.37566864,-0.62746257,-0.436151,0.07472373,0.015994001,0.32909977,0.33415967,-0.066792324,0.3487779,0.007701142,1.4620068,-0.062821575,0.24037045,0.21916388,0.30709317,0.14295182,-0.14978693,0.02652973,0.047593072,0.21333443,0.09189951,-0.5023647,0.20977598,-0.24793659,-0.44655752,-0.13925026,-0.37786058,-0.28172255,0.09046782,-0.39352304,-0.25808522,-0.26065817,-0.37005866,0.36208558,-2.5904465,-0.18242273,-0.24332489,0.12705818,-0.1959429,-0.4605424,0.053128053,-0.46361437,0.5825195,0.33790854,0.5602789,-0.5768348,0.46126062,0.39161003,-0.560426,-0.060106732,-0.57150644,-0.20817819,-0.13370313,0.20635079,0.13317038,-0.3992822,-0.06758496,0.38497946,0.5104451,0.14112352,0.08128983,0.38428828,0.3369737,-0.2188326,0.77853113,-0.15989421,0.5151687,0.0001615611,-0.21171193,0.33694768,-0.39217633,0.008333496,-0.27240753,0.1770681,0.6027536,-0.52286136,-1.0500166,-0.6675269,-0.23829955,1.2353959,-0.1270474,-0.45848006,0.41044232,-0.20414147,-0.28085187,-0.00017559528,0.64102435,-0.33586,-0.023494266,-0.7131911,0.13989006,-0.24012609,0.039533496,0.1062673,-0.32205322,-0.69754815,0.74242723,-0.14582461,0.749617,0.22888814,0.17346603,-0.60935587,-0.30759785,-0.07579132,0.9616701,0.5903515,-0.023747943,-0.18392433,-0.055246178,-0.4787769,-0.22987829,-0.031206625,0.6713378,0.593,0.085410446,0.14244944,0.15666904,-0.098870724,0.12112895,-0.14280905,-0.2832766,-0.06593404,-0.07372089,0.7154995,0.38267812,-0.1368545,0.46872905,-0.057539344,0.37371162,-0.20596133,-0.41299534,0.27083275,0.9385586,-0.12803435,-0.5383124,1.026724,0.4879957,-0.06338584,0.3000541,-0.5375706,-0.3383975,0.4990055,-0.23299627,-0.5820663,0.05503246,-0.37059364,0.05851557,-0.8344815,0.25955644,-0.35220107,-0.5832927,-0.5449465,-0.16992222,-3.5572188,0.3658521,-0.15810765,-0.19987124,-0.14530902,-0.27487758,-0.07198041,-0.69508815,-0.71821326,0.16158746,0.079624586,0.8842281,-0.15818335,0.08403817,-0.03427343,-0.44491255,-0.02674318,0.0793276,-0.20147921,0.35289872,0.04403395,-0.28586158,0.108203284,0.053568367,-0.567538,0.12493543,-0.57896465,-0.66200066,-0.21570277,-0.62660396,-0.40309438,0.6363659,-0.36180943,0.21513523,-0.32015762,-0.016047599,-0.0042516263,0.21892025,0.013686413,0.14069743,-0.014721897,-0.17533241,0.24364161,-0.1529533,0.3380862,-0.020148657,0.45265073,0.2594844,-0.11025043,0.2946764,0.64369947,0.7035043,0.0070350943,0.9863365,0.2802121,-0.032427546,0.080760546,-0.17299162,-0.26255426,-0.38185632,-0.19375534,0.34094456,-0.43401432,-0.32021818,-0.10032272,-0.2429112,-0.65639776,0.67209643,0.07859946,0.16837353,-0.16665222,0.44802257,0.44917583,-0.2897878,-0.043764036,0.099460535,-0.14333601,-0.57642096,-0.10929077,-0.6515602,-0.33546898,-0.17034769,0.98432803,-0.37402132,0.13879332,0.0027954795,-0.13330956,-0.007379001,0.16399293,0.15222909,0.11525152,0.4186273,-0.27787587,-0.7214188,0.5042762,-0.43336695,-0.13069902,-0.48742488,0.25282946,0.45746934,-0.4147273,0.46732095,0.37395105,0.1360954,-0.4698291,-0.5174995,0.026768183,0.22809395,-0.22181915,0.38275242,0.40989968,-0.6289198,0.4856817,0.26611507,-0.018533273,-0.8473044,0.44518754,-0.006683007,-0.42443034,-0.19011298,0.44803047,0.3974682,-0.0063818395,-0.27374724,0.16902305,-0.45520055,0.34517717,-0.08784041,0.015026716,0.33711407,-0.27685663,-0.08721972,-0.90960103,0.029857956,-0.6416371,-0.2470769,0.14327416,0.03863811,0.089263745,0.3245794,-0.12454503,0.41243,-0.5169661,-0.013698559,-0.16642264,-0.2671129,0.36137715,0.44186413,0.4172864,-0.48765782,0.668881,0.061467513,0.09982571,-0.19173717,-0.0585147,0.53124946,0.041573774,0.45505857,-0.24550754,-0.25721022,0.27974027,0.6542381,0.1257184,0.31148565,0.12972112,0.052597214,-0.08913205,-0.06437433,0.12356344,0.17443366,-0.66036725,-0.03145996,-0.40439847,0.017538108,0.6899397,0.07777247,0.21205445,-0.02930485,-0.43285105,0.10871745,0.12894093,-0.15082526,-1.3060282,0.4946303,0.11393666,0.9433235,0.45410138,0.0884057,-0.11773756,0.847423,-0.15928048,0.14421675,0.2675174,0.12687671,-0.2823857,0.6772577,-0.8338948,0.37216747,0.0068205134,-0.13016644,-0.23544441,-0.19715005,0.3100968,0.6634767,-0.19138913,0.048319876,-0.015624019,-0.37395546,0.12245858,-0.3481437,-0.09457931,-0.40753564,-0.32204887,0.5719726,0.41262817,0.3283806,-0.15003724,0.18510303,0.13529362,-0.091776565,0.1407024,-0.0029045343,0.022679122,-0.1283081,-0.5853668,-0.06843435,0.40382326,0.3057923,0.29080808,0.042213082,-0.12614101,0.1926633,-0.034592107,-0.1335926,-0.038382176,-0.61689,0.020423306,-0.36506703,-0.5130358,0.2727998,-0.26532766,0.17125179,0.16325554,0.01585538,-0.0660536,0.28632668,0.33434302,0.682814,-0.00037413294,0.018389551,-0.092854135,0.14583692,-0.120783634,-0.19487485,-0.1185096,-0.29165107,0.24337927,-0.75653684,0.4284788,0.03248867,-0.38199723,0.2454115,-0.19962749,0.024580467,0.35003614,-0.2946478,0.044710148,0.003742229,-0.2338532,0.067600556,-0.427302,-0.071947925,0.24213338,-0.052664116,-0.011754941,-0.10683634,-0.04092324,-0.34108132,0.37884504,0.009836704,0.47259247,0.43344498,0.0061262306,-0.31091428,0.07624269,0.010988111,0.47276324,-0.20915331,-0.30450413,-0.44605464,-0.4197302,-0.36479655,0.30182183,0.014833484,0.35573927,0.014587995,-0.22132589,0.82110304,-0.025032682,1.0409749,-0.07789517,-0.4846344,-0.08994262,0.42755172,-0.2153051,-0.062272374,-0.15700364,0.8595267,0.42066023,0.020055907,-0.023659784,-0.49469966,0.20442237,0.22719054,-0.09734582,-0.146717,0.048273865,-0.499521,-0.4344094,0.26610404,0.25871366,0.22349806,-0.24753796,0.19941324,0.5133623,0.009779936,0.44527432,-0.52494806,-0.13970166,0.21377373,0.34487313,-0.118724935,0.118720464,-0.513076,0.33759725,-0.7965136,0.2839835,-0.4057616,0.21890236,-0.26845476,-0.19809571,0.4310479,0.052823815,0.49525395,-0.2212454,-0.2810899,0.008726456,0.49312842,0.04048586,-0.079277724,0.49473622,-0.34017113,-0.047571205,0.16371478,0.6134972,1.1328651,-0.23082586,0.21008067,0.10065456,-0.3208376,-0.54698586,0.37505054,-0.1126378,-0.00023082712,0.27864572,-0.12990178,-0.42442292,0.2628537,0.44578534,0.13598658,-0.05361775,-0.40297887,-0.42186296,0.43181607,-0.52116054,-0.113378234,-0.29948154,0.06911168,0.21899681,-0.17073716,-0.13867426,-0.13516931,0.45743734,-0.13523795,-0.6016789,-0.113245204,-0.26458487,0.44023973,0.035904795,-0.46637908,-0.4220135,0.022569237,-0.45841074,0.1173786,0.19557005,-0.2602454,0.06980577,-0.3982069,-0.05743703,0.87021214,-0.14402679,0.10434318,-0.5208797,-0.314509,-0.7245147,-0.36404827,0.40801096,-0.15752797,-0.0911892,-0.7974387,-0.21245171,-0.2736789,-0.04641627,-0.09458064,-0.19889078,0.21892175,0.18541679,0.51843876,-0.034609903,-0.59210116,0.13704775,-0.12221971,-0.1306702,-0.39776212,0.52896225,0.16064143,0.7689302,0.05167483,0.016035013,0.18181568,-0.4094609,0.1307974,-0.08232653,-0.25712693,-0.69957894,0.06921481,592 +949,0.34195268,-0.2947987,-0.48586664,-0.041148815,-0.14109696,-0.10442039,-0.2562921,0.3771586,0.09083266,-0.4778846,-0.09373093,-0.21867876,0.047056124,0.23503846,-0.32381642,-0.8218512,-0.0033171503,0.24851522,-0.55381316,0.6885018,-0.46266288,0.07040899,-0.10905191,0.4413753,0.26405478,0.063154206,0.35566476,-0.19998561,-0.117264144,-0.42558575,-0.09819874,0.40963352,-0.77863026,0.5137623,-0.038374435,-0.3617605,0.13053142,-0.49292564,-0.21564072,-0.92428917,0.19107994,-0.90899736,0.4880586,0.17856152,-0.31828862,0.2890123,0.29500133,0.3134955,-0.35333064,0.087763764,0.24989223,-0.23106895,-0.18054114,-0.35775587,-0.049332906,-0.37221554,-0.49051186,0.059838735,-0.3786526,-0.2918001,-0.36096126,0.36238965,-0.31962574,-0.09397802,-0.05801077,0.6022993,-0.48229378,0.14284922,0.057857513,-0.21807376,0.34479138,-0.7357815,-0.1693737,-0.23455077,0.27113172,-0.2435738,-0.27627704,0.15670377,0.35619807,0.24627422,0.10758469,-0.122508734,-0.15172498,-0.29533455,0.2705713,0.4477735,-0.31476277,-0.8041288,-0.13540526,-0.0983196,0.101439625,0.18344112,0.17925833,-0.6057446,-0.1396538,-0.06644673,-0.30916336,0.5426086,0.4050371,-0.25075415,-0.19366713,0.20611845,0.4877411,0.2025887,-0.098763116,-0.049620498,0.060543787,-0.7025794,-0.17547102,0.29395697,-0.19679219,0.44897336,-0.20361151,0.22816633,0.7956997,-0.3463752,-0.08011531,0.13973597,0.14530541,-0.06998314,-0.51160073,-0.40008324,0.37753898,-0.49605644,0.20436606,-0.25361225,1.1295815,0.033700358,-0.6947861,0.28038523,-0.6939728,0.022278348,-0.24794032,0.52400583,0.3757157,0.4119104,0.28285244,0.63117814,-0.453522,-0.07535105,0.1277838,-0.46431875,-0.1183868,-0.11863067,-0.23102418,-0.43536803,0.056517676,-0.17471696,0.1740993,-0.035369396,0.44657257,-0.45465127,-0.039781414,-0.06786748,0.7593016,-0.39644718,0.005883271,0.7009788,1.1167158,1.0058125,0.26378065,1.4578875,0.0786847,-0.1714862,-0.09718652,0.13282229,-0.8754248,0.36505082,0.60892946,-0.53910583,0.031227736,0.11266158,0.10620988,0.32087106,-0.4230005,0.063430205,-0.3558788,0.42132872,0.023733051,-0.32474893,-0.28646228,-0.302614,0.11055576,-0.011148212,-0.18340403,0.13266426,-0.09200042,0.33751562,0.21371995,1.2313911,-0.1574966,0.09861324,0.103455976,0.33575833,0.25418276,0.07697799,0.110017516,0.39834413,0.44373825,0.13746077,-0.6555881,0.18126571,-0.0678027,-0.45591927,-0.20455457,-0.20594145,-0.031961527,0.11882263,-0.30445123,-0.20740904,-0.22340254,0.023318319,0.58077925,-2.4865224,-0.05349557,-0.19352742,0.31480083,-0.19858931,-0.28831273,-0.011430424,-0.4361398,0.6056455,0.27981722,0.56504005,-0.63826543,0.34945595,0.4736902,-0.55517364,-0.29564303,-0.68307555,-0.2622578,-0.17817162,0.62330395,0.07612117,-0.072509795,-0.08313918,0.03127697,0.5783446,-0.024180325,0.17101549,0.33862665,0.43080768,0.033900872,0.57691616,0.19628538,0.6049605,-0.27555415,-0.28021702,0.39657623,-0.29746583,0.25265923,0.09533532,0.021803632,0.4898877,-0.44358614,-1.0041037,-0.90308344,-0.36007246,1.0223836,-0.26130056,-0.52008694,0.2597717,0.11825559,-0.17475374,0.08926088,0.22426198,-0.106592156,0.1365202,-0.850079,0.09867857,0.058479037,0.2977707,0.17084417,-0.1835079,-0.57617545,0.74584585,-0.04833901,0.43363798,0.5675342,0.16204196,-0.45929363,-0.5332082,-0.074847415,1.2381275,0.38687354,0.15236478,-0.14223541,-0.1680335,-0.29500458,-0.1680616,0.098797075,0.7498712,0.65467405,-0.06426839,0.1223816,0.3409557,-0.13315088,0.08393279,-0.21919008,-0.493106,-0.23706824,0.104197,0.59151644,0.54509926,-0.112125084,0.45869264,-0.013348273,0.43474483,-0.021593923,-0.3924835,0.5749427,1.5008923,-0.12599124,-0.35499552,0.7384583,0.5795794,-0.26513377,0.3823408,-0.44585907,-0.36597157,0.6805172,-0.18499504,-0.49237338,0.1009989,-0.36145985,0.09761446,-0.94501567,0.4961333,-0.6321145,-0.49736518,-0.7087311,-0.21066743,-3.2768297,0.3292436,-0.5085953,-0.13022093,-0.36581343,-0.11222708,0.2604763,-0.6400026,-0.41983184,0.1547434,0.17950493,0.491205,-0.17476149,0.2886674,-0.22908086,-0.012031403,-0.06215867,0.17366561,0.1563318,0.057117984,-0.035797067,-0.39383557,0.09376658,0.119267724,-0.2581675,0.14369994,-0.69721913,-0.56618756,0.05653913,-0.5830032,-0.4163047,0.68217385,-0.6307073,-0.14936961,-0.06422593,0.09386351,-0.2552829,0.35968247,0.114155345,0.25121364,-0.10488909,0.019253438,-0.11251447,-0.31841823,0.38287175,0.0509889,0.21628651,0.07413226,-0.2570882,0.12259882,0.4284261,0.53370357,0.08851201,0.81051195,0.46987346,-0.0877208,0.22173166,-0.31977057,-0.5055275,-0.70137143,-0.41225395,-0.06182164,-0.4172536,-0.37725127,-0.011257941,-0.2800257,-0.7576287,0.6774215,0.138416,-0.035455108,-0.07766697,0.33144796,0.30653262,-0.006518884,-0.1106792,-0.0746476,-0.14207548,-0.5741304,-0.10362626,-0.6719627,-0.41047096,0.019596238,0.8796144,-0.38810122,-0.021146584,0.11166153,-0.3049715,0.048492488,0.2242267,-0.23652361,0.34138444,0.61981946,0.034359727,-0.70491827,0.5383546,0.015927374,-0.24060498,-0.52291465,0.19944693,0.6601286,-0.6631699,0.6386142,0.4831437,-0.02585308,0.05002339,-0.36257744,-0.13731562,-0.009512869,-0.20595446,0.5082995,0.18307662,-0.6897209,0.6078602,0.44397992,-0.21484135,-0.8354339,0.57339925,-0.023955248,-0.33849746,0.083789565,0.50182885,0.13034703,-0.05997403,-0.15487793,0.4382145,-0.38361323,0.34939867,-0.06854194,-0.17991652,0.12054365,-0.1615846,-0.21580702,-0.8318519,0.09014417,-0.5724581,-0.40371168,0.26982677,0.06676652,-0.21476096,0.2682484,-0.073059134,0.3568648,-0.34452918,0.20282143,-0.091260746,-0.26911655,0.39639112,0.5713441,0.36978543,-0.42082623,0.6030722,0.050357398,-0.0083478745,-0.20230232,0.24946551,0.42056894,0.10571547,0.49341413,-0.15235755,-0.020486714,0.4973357,0.70743024,0.17952631,0.68885875,-0.09047565,0.07245522,0.3229636,0.1816544,0.45943537,0.13173513,-0.6185484,0.04981682,0.0005192431,0.16714849,0.6149929,0.13625924,0.37558565,0.007719633,-0.43306157,0.010978439,0.374827,0.24588604,-1.1359614,0.46229994,0.26815173,0.6546989,0.6602421,-0.1744668,0.26272488,0.82672656,-0.10078283,-0.045477737,0.3628732,0.09406969,-0.38896644,0.5798659,-0.6853718,0.23455815,-0.39882565,0.029377175,-0.0923467,-0.058457576,0.2492906,0.68931216,-0.17210838,0.019963438,-0.07069835,-0.411943,0.1629199,-0.5811968,0.09663237,-0.20428146,-0.31641394,0.64667225,0.7129224,0.29145855,-0.27749676,0.03085971,0.30021355,-0.19737712,0.21841884,0.08011806,-0.040689234,0.11793933,-0.9338219,-0.08195728,0.7334041,0.04335371,0.15766735,-0.13133274,-0.20215009,0.57156426,-0.22004405,0.017968893,-0.16751233,-0.6195007,0.1181706,-0.26592222,-0.37140167,0.3832876,-0.30844924,0.1098038,0.25526515,0.051824108,-0.20173043,0.25861147,0.2264068,0.7828762,0.10445388,-0.13805038,-0.46371374,0.0895307,0.107593305,-0.14848495,-0.10283401,-0.34885094,0.03657283,-0.7725907,0.44865322,-0.14769278,-0.2617816,0.0887289,-0.16780023,-0.16739446,0.5368023,-0.016521601,-0.1032867,0.15698323,-0.16991693,-0.065877944,-0.32547048,-0.15662585,0.2509774,0.3283704,0.2789133,-0.12927018,-0.19007164,-0.5001066,0.32936442,-0.010768817,0.5744615,0.29137346,0.10330898,-0.16040218,-0.21313332,0.11437438,0.586899,-0.17956656,-0.094350554,-0.023774229,-0.5137705,-0.17916268,-0.04505122,-0.23234501,0.18831004,-0.00506064,-0.42670926,0.83834857,-0.07934788,1.2573453,0.06375451,-0.50224626,0.11785464,0.6122128,-0.0713065,-0.089837104,-0.29149464,1.0215095,0.57159,-0.09268682,-0.03813291,-0.55311257,-0.18100652,0.0068538296,-0.18160215,-0.05760256,0.040898442,-0.5047462,-0.41275576,0.21016861,0.32570276,-0.049223613,-0.0697526,-0.13640219,0.3152678,0.029181266,0.44373325,-0.64429307,0.017812403,0.095933706,0.22402762,-0.00808796,0.10064952,-0.5045049,0.53196925,-0.5640428,0.22313985,-0.49943846,0.17808022,-0.29745463,-0.052238606,0.11394871,-0.209828,0.3216293,-0.37825367,-0.21119738,-0.104991384,0.48057356,0.17085093,0.19286384,0.82029307,-0.29860634,0.27801073,0.0802191,0.5008822,0.94610506,-0.42105684,-0.16485348,0.421393,-0.43113545,-0.4207199,0.33063138,-0.3740308,-0.07768735,0.04867855,-0.30871043,-0.6462176,0.11394734,0.22345716,0.2050047,-0.057448328,-0.8565439,-0.07217575,0.49028328,-0.32986638,-0.30990767,-0.29715535,0.29082167,0.63047004,-0.42214498,-0.48786032,-0.018931838,0.04658167,-0.09573905,-0.6093212,-0.17281131,-0.4522158,0.5825676,0.19705757,-0.27731955,-0.18025075,0.15127648,-0.44150445,0.060630307,0.12422239,-0.28967464,0.03861581,-0.067553475,-0.17398807,0.83029026,-0.32272398,0.07817704,-0.6833832,-0.5090774,-0.68053174,-0.26232615,0.68643516,0.08973924,0.22531031,-0.625327,-0.08185838,-0.03704637,-0.20684381,-0.012607228,-0.48964694,0.53136206,0.06696944,0.76583457,-0.04094256,-0.7511125,0.17024198,0.28003526,0.05946429,-0.8183903,0.47376382,-0.059910417,0.6982656,-0.0050583887,-0.0010179338,0.2158606,-0.51203215,-0.0041834223,-0.35695404,-0.37799683,-0.7442951,0.04197322,603 +950,0.41211843,-0.15607926,-0.47161123,-0.15288071,-0.24370454,-0.21236633,-0.15624626,0.38315123,0.24206653,0.018989794,0.2087587,-0.3220966,-0.05677543,0.5484154,0.069185235,-0.9492224,0.07847778,0.24001956,-0.6635856,0.4766679,-0.4974204,0.17537497,-0.24104346,0.494316,-0.037069622,0.26365715,0.2410995,-0.15572414,0.10856001,0.06678739,-0.016542912,0.25667545,-0.73144764,0.10301983,0.13445807,-0.2930175,0.13679016,-0.28551835,-0.42380124,-0.72379786,0.12667519,-0.4472547,0.4630374,0.27016118,-0.3091986,0.11488702,-0.09149185,0.5509625,-0.3815141,0.093845844,0.19127974,-0.06525883,0.15882252,-0.38575935,-0.19142021,-0.42202428,-0.55668604,0.023506897,-0.6404829,-0.35614678,-0.14850444,0.10563822,-0.3567301,-0.21303254,-0.045159645,0.33751705,-0.4129597,0.20267668,0.37700903,-0.12524381,0.19589706,-0.33526665,-0.06328095,-0.0984957,0.10021362,-0.010847948,-0.20985356,0.3405276,0.066612385,0.3786751,-0.09691932,-0.1612292,-0.25158525,-0.021490475,0.020928198,0.7172432,-0.14742164,-0.28069866,-0.14710371,-0.0119152395,-0.28482604,-0.048797227,0.07869377,-0.60781485,0.028699728,0.04376068,-0.21422544,0.41909882,0.43071157,-0.46451676,-0.43060982,0.35385817,0.56304127,0.17136294,-0.1343349,-0.028368868,0.21868826,-0.5665262,-0.20048738,0.14680097,-0.12996624,0.36152768,-0.03185881,0.27476886,0.78188366,-0.253621,-0.02909655,-0.09442463,0.060360238,0.19419529,-0.31316206,-0.18868436,0.26844406,-0.44961292,0.009111093,-0.14775842,0.8497963,0.23808195,-0.6703949,0.5212359,-0.6853018,0.16018362,-0.19928603,0.52495897,0.69155425,0.22863096,0.22076502,0.52480286,-0.3814921,0.21133427,-0.06460252,-0.41357535,0.33737087,-0.12742795,0.22277997,-0.577939,-0.19075552,-0.11038043,-0.13210101,0.050533775,0.2806052,-0.5860692,-0.11541615,0.18988802,0.9948359,-0.31360877,-0.03173336,0.2102177,1.0288895,0.9127651,-0.06325156,0.9786033,0.45663044,-0.21600766,0.49398187,-0.4886777,-0.72239316,0.15822837,0.27819628,-0.26652768,0.46768397,0.04500849,-0.09762621,0.46730116,-0.14525115,0.20696999,-0.21935548,0.37959635,0.1837534,0.061761748,-0.2993228,-0.2985693,-0.09144511,-0.12332382,-0.100009464,0.39779463,-0.34933242,0.051934242,-0.14560457,2.0971909,0.15236232,0.15082711,0.046943925,0.72193414,0.23834354,-0.13153139,-0.19845852,0.4590868,0.17161714,0.19327493,-0.587266,0.30651826,-0.28412697,-0.36619776,-0.11104704,-0.3001026,0.13507734,-0.1245035,-0.46212494,0.046584968,0.080184154,-0.040600196,0.5443663,-2.6405087,-0.23550302,0.09127493,0.4605035,-0.31519318,-0.24927591,-0.19490057,-0.32562244,0.1127112,0.4023176,0.4633784,-0.58948654,0.59367853,0.4181004,-0.34452638,-0.1250363,-0.54527915,-0.04132676,-0.07115263,0.32884547,-0.0807607,-0.0010813231,0.034074727,0.2529055,0.3142359,-0.17703713,0.0021413767,0.25895578,0.3832939,0.18496938,0.40221146,-0.031863216,0.30480188,-0.34730604,-0.22782354,0.26106352,-0.27752677,0.23587795,0.0067736264,0.037343454,0.36196962,-0.1834898,-1.0246395,-0.3975112,-0.0603905,0.9585394,-0.44143477,-0.1594919,0.25273064,-0.11631984,-0.033149734,-0.16064501,0.24897575,0.055787142,-0.10532215,-0.6991318,0.22206949,-0.071456656,0.31414372,0.21190895,-0.055005584,-0.13104989,0.48836955,-0.07909222,0.1548335,0.25516975,0.18099453,-0.1670631,-0.48848403,0.16344275,0.67982966,-0.003916437,0.1521956,-0.22831091,-0.22056888,-0.11235457,-0.009580385,0.053581342,0.31112537,0.7989569,-0.16896936,0.09021434,0.41454637,-0.25883907,-0.091600396,-0.3087216,-0.4752858,0.14925107,0.08934424,0.499802,0.83566207,-0.16658163,0.55161947,-0.022570247,0.027534338,-0.16540915,-0.3852768,0.36533478,0.9388511,-0.18283202,-0.05137551,0.35187635,0.42197388,-0.626545,0.42204884,-0.68464476,-0.16032459,0.60669893,-0.2455031,-0.2670151,0.15226658,-0.21867366,0.02900085,-0.7406652,0.5961458,-0.19269952,-0.13112353,-0.58123356,-0.17629443,-3.832935,0.33018288,-0.30744007,-0.20324421,0.11352716,0.28877485,0.119591855,-0.66453195,-0.21061206,0.04929262,0.050043866,0.5057121,-0.1292146,0.21972452,-0.37161398,-0.26366445,-0.21462299,0.2138537,0.08028477,0.2832984,0.17425181,-0.45390186,0.06586149,-0.13039072,-0.24600679,0.23653013,-0.79509854,-0.41837275,-0.18489288,-0.7832971,-0.27844775,0.72675097,-0.20284532,-0.022972269,-0.2917888,0.0035207977,-0.11781669,0.47262174,0.30567124,0.042665698,0.022331,0.0057637203,-0.24181728,-0.43854332,0.092718795,-0.0018284415,0.44180024,0.21843149,0.13611864,-0.011008512,0.7897995,0.4746946,0.18895578,0.53656393,0.520317,-0.22251816,0.28527912,-0.4125515,0.030981584,-0.373042,-0.47162792,-0.19033824,-0.25913194,-0.49975178,-0.010720941,-0.2814512,-0.5016641,0.65247905,-0.1697414,0.06478394,0.17939347,0.19571644,0.38032663,-0.17719902,-0.109787315,-0.0666719,-0.124187894,-0.49123278,-0.18297166,-0.6313057,-0.5567451,0.7497997,0.8484028,-0.4113003,-0.098524526,-0.03357717,-0.16802905,-0.14677711,0.077584125,0.065753266,0.25432837,0.18358222,-0.12664284,-0.64179647,0.2865811,-0.12492239,-0.050536633,-0.72986245,0.07703497,0.77904683,-0.7267357,0.6361156,0.026550086,0.17419355,0.23838297,-0.41319713,-0.33017722,0.34341872,-0.123157784,0.16272664,-0.14693294,-0.7797477,0.26565886,0.4396958,-0.6180952,-0.6457425,0.4292388,-0.053995956,-0.45055148,-0.09302478,0.23881713,0.17348637,0.03112811,-0.3907008,0.29905903,-0.6585723,0.056105614,0.21634273,-0.10531329,0.4110758,-0.003135226,0.029943444,-0.5432979,0.06584911,-0.35361984,-0.5134382,0.3006178,0.13064776,0.081253305,0.307886,0.12920162,0.24232188,-0.16117775,-0.013253703,0.079384625,-0.18513441,0.47521695,0.437981,0.4149524,-0.5490939,0.53347117,-0.022340585,0.089913905,0.17687148,-0.06742913,0.38491222,0.03494534,0.36975124,0.14322966,-0.20216517,0.22802506,0.84237045,0.25896636,0.6563828,0.098151416,-0.019935422,0.32685068,0.054256137,-0.019305099,0.13950667,-0.27194393,0.014825425,0.15764295,0.3359829,0.59179735,0.16345789,0.30274776,-0.11502547,-0.49135092,0.12023151,0.38244885,0.07989465,-1.0421044,0.18507509,0.36714217,0.5569339,0.5323475,0.20289169,0.08581311,0.6168079,-0.15637921,0.13760221,0.14674239,-0.25243026,-0.668003,0.6629603,-0.62498534,0.499907,-0.18875322,-0.0091259265,0.029699434,0.049490735,0.31514466,0.45077142,-0.159356,-0.13699475,-0.105403535,-0.41631863,-0.19039312,-0.3869875,0.4465388,-0.5632672,-0.3306719,0.39052287,0.623554,0.10960722,-0.19704928,-0.033340253,0.038297597,-0.13675112,0.2502966,-0.09500055,-0.13447298,0.22024494,-0.79075056,-0.27627307,0.67970973,-0.39422658,0.053547528,-0.176119,0.107576415,0.34887332,-0.42837515,-0.20226689,0.03683659,-0.65732986,0.24071763,-0.12822194,-0.36521712,0.6320546,0.10047775,0.19937585,0.097433425,0.072473936,-0.36025518,0.6450077,0.051084276,0.7730898,-0.0204059,-0.10287185,-0.48067915,0.1592684,0.0041057114,-0.1060826,-0.06151452,-0.47379658,-0.032668218,-0.49797535,0.33106402,0.029839927,-0.2909259,-0.2126767,-0.14928247,-0.020458883,0.70302963,-0.09984701,-0.14510436,-0.34077236,-0.38696614,-0.2938727,-0.052649964,-0.05779113,0.2836084,0.13385591,-0.24937734,-0.042572424,-0.23321702,-0.12445646,0.6215126,-0.0067796707,0.37130177,0.3402684,0.45112723,-0.20764971,-0.22200957,0.11484866,0.43361044,-0.015399185,-0.044126164,-0.2777235,-0.118239425,-0.36743668,0.13125,-0.32444084,0.28742248,0.14924483,-0.5998743,0.8931628,0.09041163,1.3917384,0.017509267,-0.18882689,0.27958018,0.34924123,0.2590576,0.19048953,-0.59615195,0.93777794,0.6917996,-0.11668228,-0.3733261,-0.24953395,-0.6062748,0.2485753,-0.37774116,-0.16293867,0.11505723,-0.57266086,-0.16860789,0.2263956,0.27821,0.15025215,-0.14164992,0.112047486,0.13258623,0.14352816,0.14866069,-0.39497498,-0.09819169,0.15375605,0.50816053,0.10616877,0.273347,-0.38258684,0.44028953,-0.39882344,0.3509324,-0.51025325,0.086726636,-0.1193906,-0.21307902,0.19975573,0.21249677,0.38160193,-0.24638166,-0.25453663,-0.122038245,0.4861003,0.3143936,0.2408548,0.7690369,-0.19220167,-0.040521294,-0.0698719,0.53206515,0.8827433,-0.36192867,-0.36577204,0.4891817,-0.20395827,-0.9361385,0.33539692,-0.3229569,-0.07187354,-0.16761364,-0.33302638,-0.55241627,0.20260796,0.027081447,-0.06037918,0.011012581,-0.62275547,-0.1986175,0.1959558,-0.37926236,-0.24510002,-0.4085827,0.22734575,0.9311423,-0.30710307,-0.30027273,0.086574346,0.3218542,-0.11736769,-0.46780795,-0.1377504,-0.57279855,0.17690995,0.2729106,-0.23583741,-0.05965869,0.1129284,-0.41836455,0.09922966,0.28152773,-0.38230804,0.19493446,-0.011921059,-0.008444553,0.973242,-0.18076023,-0.06710827,-0.72239685,-0.5378361,-1.0075186,-0.43589133,0.7345921,0.13220674,-0.09994722,-0.5875983,0.04829488,0.15829249,-0.39644116,-0.11865913,-0.6313482,0.30601263,-0.018823607,0.20542021,-0.018559432,-0.93303895,-0.018370371,0.31290185,-0.30401677,-0.8781653,0.41258004,-0.3451286,1.077148,-0.0991547,0.058368444,0.23174238,-0.15583509,-0.06957403,-0.4940072,-0.4650258,-0.7168165,0.0349686,610 +951,0.62303275,-0.09682106,-0.6748648,-0.18741965,-0.68758255,0.20698069,-0.31987575,0.022289569,0.42176884,-0.52026194,-0.049931634,-0.3248845,-0.083246395,0.2437027,-0.3073003,-0.79609036,-0.012565266,0.32229063,-0.53228134,0.36913717,-0.38672316,0.385596,0.11618051,0.30734298,-0.23960747,0.15819573,0.12924843,-0.09698958,-0.0819965,-0.2519319,-0.0026193857,-0.037550177,-1.0249677,0.55861276,-0.32456812,-0.5301786,0.079664186,-0.53940135,-0.20059347,-0.5898441,0.43684253,-0.95240957,0.806451,-0.15548567,-0.10953713,-0.0906449,0.22540312,0.36526525,-0.13915218,0.2625388,0.21963467,-0.3649657,-0.11198339,-0.22772351,-0.48413637,-0.49036142,-0.6326031,0.046655167,-0.5350293,0.021332627,-0.24583411,0.3602868,-0.14210664,0.2729379,-0.24505797,0.05157907,-0.34878498,0.2720822,0.27982628,-0.125865,0.14799185,-0.42728502,-0.15655659,-0.115011476,0.28147027,-0.24441797,-0.2625059,0.30661762,0.2062313,0.7039758,0.21914119,-0.2718136,-0.32256722,-0.065576814,0.07226375,0.61265665,-0.11848171,-0.038894597,-0.46372202,-0.09983028,0.39705744,0.25673357,0.051421262,-0.3112671,0.23616624,-0.29614124,-0.28524217,0.6053869,0.5413983,-0.3935667,-0.18924569,0.42894182,0.46871567,-0.24337064,0.050056275,0.27825996,0.17288719,-0.5432901,-0.41873637,0.21055526,-0.14857484,0.44559687,-0.21415782,0.21099156,0.6562113,-0.2506084,-0.15549555,0.04442646,-0.09265859,-0.11220364,-0.21036862,-0.10863343,0.22882424,-0.6079493,-0.06835061,-0.25202802,0.88017267,0.08237037,-0.8172052,0.4575427,-0.6936431,0.19794728,0.008691118,0.49616614,0.63966006,0.64916176,0.13142481,0.94688135,-0.5855972,0.25540593,-0.1351828,-0.21376604,-0.013387192,-0.25565568,0.2281671,-0.38107443,0.23778263,-0.058442306,-0.020178087,0.0702312,0.63897246,-0.38007405,-0.19100012,-0.030284416,0.91900593,-0.48574308,-0.057901397,1.0378742,1.0872353,1.087636,0.09018639,1.6263305,0.32147315,-0.10796702,-0.2874466,-0.11163133,-0.84361684,0.20922647,0.2490666,-0.036572933,0.19690499,0.37377998,0.22252807,0.29510224,-0.2809628,-0.22255659,-0.07370193,0.31539658,-0.09694266,-0.08017797,-0.34974068,-0.27099216,0.11305303,0.047293246,0.06522903,0.420333,0.00023800405,0.57825,0.2301042,1.1567222,0.1029411,0.24540626,-0.04133348,0.24791361,0.15648274,0.028120099,-0.0757914,0.034222987,0.07500188,-0.0287448,-0.4758395,-0.091948204,-0.2560717,-0.23032285,-0.2649353,-0.03525936,-0.29097068,-0.28900412,-0.21014076,-0.4140772,-0.15505256,-0.35071155,0.6230802,-1.9379426,-0.40162727,-0.16278824,0.49778593,-0.20151268,-0.3646736,-0.23593432,-0.57017666,0.33402753,0.31192783,0.39959982,-0.4397918,0.66996664,0.41811106,-0.54085755,-0.05225648,-0.7084009,0.14733817,-0.093222335,0.15641531,-0.17390062,-0.36641037,-0.47947928,0.08150583,0.46917355,0.11001558,0.18825011,0.3299223,0.69073206,0.07871991,0.60165465,0.07079661,0.5361654,-0.63626146,-0.06575579,0.33055773,-0.5988613,0.275955,-0.038835015,0.030335952,0.58295745,-0.8858698,-0.87134206,-0.8864623,-0.44582283,0.83543664,-0.20780152,-0.41018727,0.23395209,-0.3344669,-0.39660132,0.021453792,0.32800958,0.039297745,0.11143887,-0.78018373,-0.15961064,-0.10506386,0.37182143,0.015784781,0.02521174,-0.4440641,0.6876663,-0.37124777,0.29200536,0.44687453,0.21484518,-0.21008658,-0.27375954,0.16243944,1.0427713,0.37526482,0.13763165,-0.28605893,-0.17434977,-0.22879194,-0.2190857,0.019041734,0.53618187,0.48700497,-0.17980823,-0.060229477,0.5180297,-0.17668293,0.13160156,-0.028846664,-0.39047515,-0.25560972,0.03521618,0.62400776,0.6899268,-0.056650337,0.24333547,-0.27986884,0.20749468,-0.31701833,-0.56790155,0.4199416,0.9789844,-0.0798915,-0.29417068,0.7722673,0.5395502,-0.33185577,0.5574708,-0.57525307,-0.49251243,0.21152438,0.09108124,-0.5662235,-0.21346043,-0.38026324,0.047088623,-0.94275343,0.23914424,-0.0615447,-0.7258012,-0.39106515,-0.34750798,-2.6579862,0.22816378,-0.14355473,0.0908508,-0.013092919,-0.12019786,0.11439329,-0.35720977,-0.8408914,0.1500595,-0.07191867,0.6021041,-0.124992564,0.4816247,-0.12628268,-0.16504063,-0.38139457,0.30413783,0.41233644,0.16778131,-0.104303904,-0.46465427,0.06260026,-0.28901494,-0.2738694,-0.046590425,-0.8497883,-0.30827478,-0.08921205,-0.53562635,-0.30976012,0.63504255,-0.42739585,-0.09840462,-0.51711965,0.0135711795,-0.31735396,0.31986752,-0.016713731,0.23308396,0.0816212,-0.23449282,-0.32909596,-0.27876306,0.384356,0.035189133,0.24267453,0.4213339,-0.45537966,0.052053176,0.3606967,0.72378784,0.14741379,0.9547877,-0.035507977,-0.16983381,0.31682163,-0.11650515,-0.4336365,-0.8148882,-0.18123052,-0.2774043,-0.5252831,-0.5049131,0.11576632,-0.5186594,-0.77297115,0.50004315,0.23184635,0.007185134,0.10512522,0.3865594,0.31889948,-0.36178267,0.07047914,-0.031358052,-0.2643247,-0.52731836,-0.59929186,-0.43079415,-0.517617,0.24174304,1.5485584,0.080979586,0.1279646,0.3318888,-0.16993882,0.145832,0.3133306,0.16067977,-0.0033080145,0.64977384,-0.02813756,-0.6001748,0.317755,-0.049467,-0.04052935,-0.590523,0.00022051009,0.72085303,-0.7550119,0.6573764,0.42094535,0.25849038,0.17520462,-0.50389713,-0.24072188,-0.24158353,-0.31942585,0.42779347,0.34775993,-0.747487,0.40852186,0.19245921,-0.30666742,-0.980241,0.35180032,-0.047622204,-0.14751373,-0.046436667,0.388515,0.5211142,-0.026583482,-0.12911092,0.21956429,-0.48311746,0.3549182,0.07162029,-0.039092127,0.25849745,-0.27279148,-0.39141515,-0.81100583,-0.25134948,-0.365667,-0.25046554,0.052831646,-0.10636438,-0.19153504,0.2201447,0.3838704,0.42606446,-0.39793682,0.1821084,-0.20561911,-0.3305963,0.18631147,0.39394206,0.55461085,-0.5201947,0.7225784,-0.07195567,-0.013109126,-0.289658,0.11150868,0.46161687,0.02986312,0.24975194,0.29641965,-0.116556734,0.10307003,0.7277775,0.23052764,0.14439608,0.19306192,-0.07804294,0.5967996,0.33093974,0.080866486,-0.14876038,-0.4623799,0.09353601,-0.040782224,0.042976834,0.22833146,0.019989235,0.43521413,-0.24917199,-0.09705966,-0.05269189,0.09795558,-0.25276384,-1.3482779,-0.05322807,0.061856385,0.75667214,0.53042626,-0.0075522335,0.19306701,0.6065066,-0.353984,0.03955946,0.4246443,-0.015384549,-0.08578081,0.522248,-0.51127124,0.40493917,-0.17577939,-0.009316363,0.3061233,0.35054192,0.4191839,0.92538947,-0.02034775,-0.030259132,-0.18758091,-0.17688729,-0.07886882,-0.16178957,0.006121023,-0.5069352,-0.1561126,0.9789406,0.349856,0.516247,-0.3660001,-0.13620356,-0.097044066,-0.11174268,0.20415574,0.12365057,-0.22537456,-0.17153439,-0.60191184,-0.020895194,0.69769067,0.23680286,0.21178623,0.2816941,-0.39324218,0.39159086,-0.13541295,-0.09602061,-0.04745426,-0.86300904,-0.1397184,-0.28609225,-0.2556691,0.24448375,0.04044758,0.123145774,0.1376861,0.12690014,-0.24123357,0.24327469,0.20771743,0.7848502,0.27173948,-0.117107674,-0.17012134,0.15555859,0.2627692,-0.37165645,0.28378043,-0.08685305,0.18037924,-0.6689451,0.5652445,-0.04903784,-0.31122738,0.22847666,0.040396083,0.1958146,0.5309853,-0.08743613,-0.067362554,0.4723725,0.18998146,-0.3365803,-0.15608735,-0.43723947,0.15553078,0.012894403,0.060007952,0.02230085,-0.11387629,0.046300076,0.45268852,0.06544334,0.100053474,0.09287975,0.18855995,-0.48232162,0.10058805,-0.25284252,0.46215114,-0.2157004,-0.13333903,-0.017993147,-0.3717563,-0.19513255,0.5878597,-0.022513991,0.12781821,-0.09722252,-0.4822521,1.0042168,0.1808675,1.1865374,0.031489313,-0.25144494,0.1639268,0.59904855,-0.09376259,-0.03896071,-0.29052445,1.2290932,0.6713597,-0.33665183,-0.22146125,-0.4263209,-0.24896465,-0.01232416,-0.3326188,-0.14101273,-0.12473857,-0.7232513,-0.14581423,0.22265099,0.31231245,0.003378142,-0.15030383,0.35225594,0.22323538,-0.020655058,0.2852043,-0.46171987,-0.19429404,0.39060405,0.422029,0.12650794,0.03932585,-0.25663927,0.27183774,-0.7740585,0.13593245,-0.31327876,0.064556785,-0.13631944,-0.22244835,0.08893159,-0.0086019635,0.26185295,-0.28418952,-0.25232324,-0.2941461,0.5043896,0.29687133,0.34163076,0.94663614,-0.24916857,-0.22995047,-0.046572104,0.48287717,1.0888662,-0.10521715,-0.0019220873,0.26288605,-0.4287196,-0.43853033,0.35694665,-0.5039405,-0.09593911,-0.048942782,-0.37813455,-0.43760478,0.07328102,0.15140277,0.10782747,0.12947468,-0.6553789,0.1259439,0.3965975,-0.20672904,-0.3036988,-0.08741481,0.29911342,0.9039314,-0.045607746,-0.35741994,0.084684275,0.3839402,-0.30474675,-0.6154559,-0.24271232,-0.35283887,0.4307741,0.1281357,-0.32314074,-0.032337207,0.16295949,-0.42995661,-0.09043319,0.22153383,-0.28434554,0.099684484,-0.54196215,-0.08022558,0.8390761,0.040717147,0.35171148,-0.6820074,-0.5956231,-1.076934,-0.09483798,-0.022828378,0.46485993,0.038467597,-0.4219786,-0.27352372,-0.21136309,-0.35348472,0.20908426,-0.7203541,0.33671507,0.19336958,0.47475365,-0.14962812,-1.0267104,0.1258671,0.27574918,-0.25429308,-0.42602423,0.42027786,-0.104270004,0.7833374,0.15888628,-0.09485196,0.13884313,-0.91141695,0.52870125,-0.18622403,-0.05649754,-0.71649224,-0.12065697,613 +952,0.2873601,-0.1408609,-0.3069825,-0.14160666,-0.20287031,-0.08528983,-0.08935505,0.72962165,0.29886281,-0.34750262,-0.2659151,-0.2331478,0.0039674803,0.49543822,-0.1902142,-0.25080442,-0.102775835,0.13257805,-0.21411176,0.79050237,-0.21499918,0.20342827,-0.027729945,0.39984962,0.532929,0.42439947,0.18817057,0.10089989,-0.06996056,0.029210264,-0.13769256,0.04450111,-0.34823057,0.16250673,-0.4480301,-0.3304982,0.050363347,-0.55227447,-0.61360973,-0.7828664,0.4685666,-0.89569384,0.4341407,-0.14682129,-0.1371879,-0.30841085,0.22992897,0.24013424,0.01071057,-0.20039867,0.017371917,-0.037797853,0.16134916,-0.10936176,-0.32126057,-0.6509621,-0.48001367,-0.09575625,-0.39459828,-0.22659835,-0.5244626,0.20066422,-0.37570927,-0.028879523,0.05273801,0.1332079,-0.5234785,-0.10015178,0.10444515,-0.3866811,0.2231639,-0.6853688,-0.31554928,-0.2972634,0.20870958,0.010257224,-0.17131065,0.6668814,0.17162585,0.30492422,-0.0018062429,-0.079091914,-0.36499804,-0.071735434,-0.06115581,0.6224501,0.011114321,-0.51863915,-0.14171176,0.10029678,0.70796394,0.44496682,0.20005278,-0.23737274,-0.05894393,-0.11708789,-0.18355408,0.42988777,0.77634674,-0.031259645,-0.27016932,0.22714776,0.34410658,0.5280046,-0.22041568,0.099238135,-0.024991881,-0.39268425,-0.19726147,-0.011529776,-0.13171418,0.814645,-0.042644575,0.27387974,0.8094862,-0.28988418,0.33367717,-0.09640882,0.24366838,-0.43916738,-0.33547533,-0.20614024,0.14201745,-0.3189336,0.2252541,-0.20823497,0.9336437,0.29186586,-0.6008745,0.41152093,-0.43661025,0.13278984,-0.03869475,0.50904745,0.60891765,0.3884842,0.3980795,0.6579024,-0.15486568,0.10054824,0.03682072,-0.36790276,0.09028812,-0.29641482,-0.14108132,-0.4377366,0.24060637,0.15180297,-0.08462424,-0.11906567,0.62887937,-0.55527556,-0.2514616,0.3048845,0.8374529,-0.22586727,0.14895053,0.72220635,1.0093122,0.91310483,0.02803534,1.2751678,0.16297184,-0.13654988,0.3713788,-0.057713076,-0.8471239,0.19897223,0.46136302,-0.45623586,0.45534983,0.1308342,-0.16338865,-0.012032401,-0.57882744,0.0057798843,-0.20745994,0.2994027,0.20684329,-0.14406869,-0.44546968,-0.23092064,-0.12566555,0.023864383,0.024576245,0.18534218,-0.3743424,0.44432983,0.01325441,1.5843303,-0.14198214,-0.02007851,0.1206176,1.2260039,0.27033356,-0.10940959,0.08848821,0.45477664,0.3479385,0.094062634,-0.50923103,0.036354087,-0.39845932,-0.44437382,-0.10524119,-0.43333843,-0.21260992,0.07429495,-0.20465612,-0.26661393,-0.1240371,-0.12828213,0.49841318,-2.856613,-0.06634158,-0.15836544,0.2944601,-0.3258341,-0.18049498,-0.041401125,-0.42967966,0.38928902,0.3598171,0.5977146,-0.73624134,-0.09974041,0.93630624,-0.61392194,-0.0026648857,-0.5312267,0.18867727,-0.09263741,0.5389687,-0.094123594,-0.10573903,0.021656418,-0.10022922,0.5182929,0.46157533,0.08505091,0.4106413,0.46726352,-0.060891215,0.4101305,-0.21300925,0.43141362,-0.36178273,-0.09229217,0.43245447,-0.39889735,0.35687244,-0.24904169,0.09116502,0.73764384,-0.4144216,-0.74812967,-0.4009545,-0.20057373,0.9188126,-0.40579054,-0.6045398,0.43833274,-0.38261816,-0.082407504,-0.17209773,0.45710737,-0.16437365,0.11017966,-0.50756514,-0.15905043,-0.1746568,0.20242314,0.04804291,-0.12175701,-0.16535799,0.64460284,0.043054506,0.5792153,0.16257627,0.14225739,-0.37116477,-0.55181813,0.09806171,0.32004923,0.38478547,0.12047806,-0.2589575,-0.08249801,-0.33504486,-0.28003827,0.22853123,0.61006635,0.8080531,-0.22549668,0.08910651,0.39324558,0.07466921,-0.021718329,-0.03308705,-0.34431022,-0.28605214,0.03605385,0.3996485,0.8426397,-0.4447293,0.2164278,-0.13986069,0.113030955,-0.11418869,-0.45496872,0.6517581,0.6909451,-0.19685966,-0.22608374,0.53308594,0.49135646,-0.5054189,0.41715762,-0.9451153,-0.02799744,0.60334784,-0.07619888,-0.62144667,-0.027419781,-0.39245474,-0.07012706,-0.8213411,0.17701934,-0.23500104,-0.41308367,-0.5535934,-0.042340096,-2.4692075,0.026404338,-0.17636786,-0.4704119,-0.10579521,-0.2558451,0.19813281,-0.5807228,-0.6448774,0.2468471,0.0715775,0.5999607,0.071431704,0.0006832047,-0.38280156,-0.29914075,-0.7262528,0.082897775,-0.009650501,0.5359204,-0.24602388,-0.5375152,-0.20176387,-0.14812969,-0.57690275,0.19706169,-0.35636446,-0.24439912,-0.43139312,-0.53530234,-0.18606974,0.57403797,-0.30596554,-0.0070040524,-0.12647058,-0.057211816,-0.22071005,0.24672645,0.15358807,0.023092605,0.16731882,-0.08722022,0.25865352,-0.23869367,0.54627174,0.051358853,0.44741067,0.18611836,-0.23264508,0.18773875,0.40419438,0.5709701,-0.39860037,1.0929834,0.2682541,-0.13876271,0.31012484,-0.19888921,-0.21510601,-0.64824575,-0.3271054,0.20194039,-0.39225549,-0.47727737,-0.09678292,-0.38905957,-0.7957744,0.6593294,0.14333372,0.66397816,0.23070721,0.0067715268,0.5059564,-0.18372835,0.0024227398,-0.07313165,-0.14513494,-0.7712834,-0.34826222,-0.7437746,-0.56812686,0.29998806,0.9637354,-0.22301164,-0.21241993,0.1419461,-0.55551267,-0.08064801,0.026343627,-0.08992881,0.09235596,0.30443364,-0.08225718,-0.6545953,0.35728145,0.19172114,-0.08500506,-0.43686888,0.16163589,0.33563405,-0.7373158,0.4649353,0.09905126,-0.1313548,-0.3904979,-0.61829126,-0.35944474,-0.46392286,-0.017553512,0.30875468,0.18252279,-0.77976185,0.24675404,0.032509957,-0.45714033,-0.6388307,0.5745957,-0.19849151,0.057035387,-0.35404694,0.30487064,0.19586273,-0.039476003,-0.2719844,0.27813718,-0.39455518,0.14407097,0.19731522,0.13893504,0.7049561,-0.16943434,-0.13491112,-0.7437559,0.34955224,-0.35023916,-0.22162919,0.5452756,-0.019289399,-0.021599818,-0.04896827,0.3126774,0.2986428,-0.27456763,0.2036121,0.0645227,-0.23690276,0.4849022,0.322305,0.7418382,-0.5417688,0.63942426,0.12847763,-0.24401383,0.14388198,0.037467077,0.25953338,0.18565351,0.37542096,0.12745942,-0.4450988,0.22693014,1.0577896,0.2909265,0.40615883,0.12066851,-0.1240372,0.369032,0.20741285,0.45498773,0.06157792,-0.72988987,-0.121454425,-0.4696208,0.14181441,0.58280987,0.17741688,0.31661174,-0.14528371,-0.18335976,0.042594627,0.18929738,0.10716259,-1.2468379,0.026337832,0.36640748,0.94991916,0.34259373,-0.060380016,-0.14423813,0.73089236,0.045231253,0.2675991,0.43627116,0.11425512,-0.55397296,0.5772986,-0.67825115,0.75585705,0.1244277,-0.16531624,0.27573484,0.2724497,0.5447195,0.60583144,-0.22566213,-0.17750506,0.09423217,-0.30854127,0.1700828,-0.47014377,-0.06317654,-0.4758241,-0.39331102,0.53563,0.5751726,0.15333068,-0.05758356,-0.042688467,-0.12777424,-0.08258942,0.36522475,-0.055257224,0.05289055,-0.24332474,-0.49724683,-0.326744,0.5400951,0.058514953,0.17567855,-0.17570291,-0.25348836,0.21414636,-0.2015088,0.081363134,-0.0012386766,-0.85087943,0.060317505,-0.027302714,-0.622282,0.4304389,0.14448684,0.224627,0.20353031,-0.0030911157,-0.109300345,0.45866802,0.010859045,1.0258149,-0.26661614,-0.11652774,-0.7327061,0.054402124,0.32833257,-0.3401601,0.34236178,-0.24050926,-0.30666038,-0.42155764,0.49645138,0.002613161,-0.20237398,-0.0044422257,-0.31797227,0.00048266622,0.6855492,0.21063891,-0.08474182,-0.25055903,-0.060819816,-0.529956,-0.35232735,-0.2969269,0.29131672,0.26404873,-0.10618667,-0.215836,-0.19738291,0.10749783,0.19953698,-0.0681421,0.26215717,0.17827262,0.13418284,-0.20505346,-0.0095768785,0.28653374,0.63747495,0.21797763,0.068834856,-0.010963678,-0.49293214,-0.5042959,-0.16848275,-0.12329087,0.3820565,0.33109638,-0.22214235,0.84999156,-0.07674259,1.1705652,0.14832437,-0.48093545,0.08790508,0.6969022,-0.023006849,-0.23470268,-0.51984364,0.98231786,0.3974804,-0.02005679,-0.1297454,-0.2124014,-0.0031268029,0.31933117,-0.2500241,-0.027561964,-0.022385152,-0.66226745,-0.096850894,0.21251492,0.22355609,0.24710417,-0.14004292,-0.2159103,0.22444247,0.09693576,0.4526138,-0.3413061,-0.51155335,0.37569588,0.3300358,0.103230715,0.16317323,-0.42814496,0.3720565,-0.60394937,0.2497922,-0.51202905,0.26423705,-0.50095487,-0.5322154,0.053603128,-0.11977176,0.72189945,-0.35537928,-0.5273836,-0.26307845,0.46038535,-0.03485359,0.32179493,0.4562648,-0.3099932,0.02610162,-0.21478514,0.47536123,1.0120238,-0.16644149,-0.2812778,0.3156745,-0.50473195,-0.71010023,0.602751,-0.7394842,0.46664,0.055102207,-0.14092268,-0.5938318,0.064694755,0.3368105,-0.05154054,0.041145016,-0.7072317,-0.52240926,0.030093215,-0.12972973,-0.0895422,-0.40218276,0.23851041,0.6239655,-0.30882323,-0.56611764,0.24194717,0.24805403,-0.040776394,-0.51501876,-0.07938399,-0.10336531,0.39203683,0.01706105,-0.45173776,-0.20922305,0.017999513,-0.45902774,0.32370755,-0.07920195,-0.54169476,0.11766627,-0.29471585,-0.00921141,1.2280415,-0.44836056,0.01121921,-0.52664566,-0.51258445,-0.90186113,-0.36965227,0.461603,0.24555133,0.061645508,-0.5797679,0.15405568,-0.3078316,0.17646275,-0.18985558,-0.550074,0.4614671,0.15898222,0.5268967,-0.18517591,-0.8358095,0.21332671,0.050378118,-0.07778083,-0.70789975,0.7051523,-0.23803343,1.1350205,0.13559394,-0.04332076,0.18847162,-0.4776901,0.040217493,-0.2606386,-0.25890788,-0.33944738,0.306193,618 +953,0.44553918,-0.2590806,-0.5135868,-0.062584065,-0.48091412,0.035316512,0.00899025,0.40238282,0.2347276,-0.29008693,-0.10655098,0.004047936,-0.10395589,0.29267323,-0.196265,-0.7688507,-0.14438777,0.2674494,-0.5992273,0.76594263,-0.16347009,0.26290333,0.0888797,0.42107075,0.22320575,0.21356039,0.026049966,0.01963461,-0.2164329,-0.0725698,-0.196281,0.0119069815,-0.81174606,0.47136948,-0.24035262,-0.37809497,0.01735723,-0.32480124,-0.34966576,-0.80496335,0.3638916,-0.6332653,0.70042634,-0.17889825,-0.4873772,0.073353246,0.10521958,0.31398186,-0.33035257,0.0030587912,0.06953145,-0.31049317,0.0018467036,-0.24079928,-0.29888085,-0.2832773,-0.561422,-0.12627842,-0.47830355,-0.050182126,-0.14037357,0.12847124,-0.4131649,-0.13631961,-0.23621134,0.5865707,-0.53244394,0.26221803,0.37020463,0.059305772,0.3926407,-0.6845852,-0.19949402,-0.20208521,0.01482988,-0.016290653,-0.25734362,0.49795142,0.1480949,0.43851125,0.09221175,-0.27799648,0.077668816,-0.14132999,0.17606604,0.35896707,-0.14061953,-0.16369237,-0.26713303,-0.12471447,0.43940875,0.41008523,0.051594928,-0.38724458,0.1724855,-0.15275677,0.03130499,0.25657132,0.39457753,-0.050071184,-0.20932601,0.18489467,0.39468324,0.21115676,-0.18539563,0.11937897,0.03838311,-0.34686887,-0.35895362,0.17535053,-0.28847378,0.5870693,-0.08877331,0.22753763,0.6752516,-0.27240133,-0.017507136,0.051311776,0.30920464,-0.105904646,-0.42857906,-0.2617946,0.21657468,-0.80345154,0.1977199,-0.36657837,0.61894894,0.20455338,-0.5558121,0.11963554,-0.6730532,0.19523558,-0.07965341,0.62717164,0.78073883,0.5887589,0.16960667,0.93696016,-0.5466244,0.06913432,0.2278728,-0.21872172,-0.04985274,-0.33257142,0.16296427,-0.55456656,-0.13483901,-0.11303821,-0.058674373,-0.21152896,0.054880455,-0.4887114,-0.24348569,-0.036976334,0.705783,-0.3690811,0.15633723,1.1072701,1.0963553,1.296248,-0.021690173,1.4633248,0.29140332,-0.28510788,-0.089304306,0.063390546,-0.66617626,0.1227339,0.43885425,-0.7645328,0.40629146,-0.0045845914,0.10246341,0.30624482,-0.41751766,0.16558744,-0.15348376,0.34147638,-0.1490104,-0.2122313,-0.5947773,-0.2698431,0.13156797,0.1967381,-0.2802473,0.2823716,-0.17892548,0.73207796,0.19561,1.15578,0.02422126,0.005995913,-0.089339264,0.29980582,0.2755346,-0.18158211,-0.04910244,0.1758093,0.45835292,0.17491645,-0.5285878,-0.0562816,-0.32534474,-0.38888758,-0.24761114,-0.2670694,0.15246853,-0.40966615,-0.29662234,-0.36019808,-0.123656705,-0.27608514,0.40349463,-2.3588986,-0.19539313,-0.26718462,0.13587326,-0.14917049,-0.14429758,-0.10300849,-0.43545446,0.35903594,0.33609724,0.34861004,-0.75625426,0.26777253,0.56196856,-0.589617,0.09483803,-0.5354293,-0.29367045,0.09099546,0.33281717,-0.055573657,-0.06618099,-0.0652241,0.07765773,0.67298913,-0.10095064,0.073515795,0.1831151,0.3036391,-0.2470971,0.3144358,0.13175727,0.43967497,-0.40419263,-0.079000235,0.35869426,-0.33252385,0.21141046,-0.050536264,0.13842212,0.6706016,-0.6275292,-0.50558627,-0.63536143,-0.4442644,1.1473597,-0.34870273,-0.52464575,0.22261772,-0.46781436,-0.17687486,-0.040833194,0.34078443,-0.11713336,0.061661743,-0.6587646,-0.05306523,0.0128698535,0.19773509,-0.038231436,-0.002478227,-0.27782068,0.6548384,-0.050248895,0.40894833,0.62807906,0.26082203,-0.265028,-0.48652717,0.030023368,0.8604641,0.6985193,0.07945902,-0.17469898,0.0063209045,-0.24701619,-0.24334575,0.21019417,0.48212606,0.8609899,-0.26301578,0.1514648,0.5153347,-0.18647613,0.14297135,-0.022111893,-0.5500527,-0.16971539,0.14133658,0.45077574,0.6750926,-0.07107659,0.41533107,-0.09790833,0.25685996,-0.04782953,-0.72455806,0.74919724,1.0747199,-0.23161998,-0.2548277,0.74101025,0.5108015,-0.5244922,0.58770347,-0.36832377,-0.20136715,0.71169204,-0.014833117,-0.5372901,0.00013325432,-0.388044,0.05378357,-1.1062613,0.2248786,-0.46315116,-0.63437057,-0.6960233,-0.09861097,-3.2017312,0.20601188,-0.3982177,-0.108596995,-0.30939656,-0.19207263,0.17845482,-0.58294815,-0.7282354,0.18777595,0.2102193,0.5290999,0.033912078,0.13417588,-0.10728474,-0.42435315,-0.31002218,0.17672205,0.16175891,0.021540523,-0.40496838,-0.6281917,-0.07651353,-0.27177188,-0.6306904,-0.08613659,-0.59259206,-0.44344798,-0.23960438,-0.78279495,-0.37924308,0.9114721,-0.07073597,-0.035141543,-0.26582098,-0.095189124,-0.105549574,0.28714085,0.01617887,0.2908182,0.12624635,-0.01131679,-0.043647457,-0.3571272,-0.06639142,0.22079195,0.404424,0.23996949,-0.31910574,0.3187079,0.5222858,0.73838353,-0.09578121,0.9218717,0.17849752,-0.2506595,0.46820256,-0.3205826,-0.42482662,-0.91998863,-0.41712734,-0.16851223,-0.43286783,-0.4282935,0.1388177,-0.30835184,-0.79293215,0.4494004,0.14630121,0.50733817,-0.13227068,0.15207444,0.38630608,-0.15312952,-0.053114176,-0.1968491,-0.32728812,-0.51015943,-0.25757667,-0.882959,-0.5868717,0.10374024,1.3308952,-0.013555416,-0.065722376,0.15915665,-0.539369,0.31971893,0.2678893,-0.11954248,0.1186518,0.3930851,0.031213766,-0.88830924,0.35514924,0.42349803,-0.053331826,-0.53938955,0.10850306,0.93482375,-0.6918271,0.5554768,0.28926837,-0.062438782,-0.2609327,-0.6081199,-0.109306164,-0.16915056,-0.20887698,0.6094001,0.33782756,-0.43219054,0.4077132,0.23300928,-0.108224414,-0.5797352,0.44339415,-0.08892114,0.056524266,-0.017892465,0.42703715,-0.09293067,-0.05069463,-0.10228415,0.42868984,-0.5106008,0.43280622,0.20308542,-0.13114366,0.1750573,0.062506475,-0.39396957,-0.8944107,0.16825281,-0.59098387,-0.31194627,0.30997035,-0.053999685,-0.1457732,0.09992836,0.24629603,0.3246248,-0.16151677,0.14464942,-0.13578334,-0.4941075,0.4767315,0.52842516,0.41910413,-0.48062542,0.7168036,0.19399957,0.0070862393,-0.28152463,0.2531923,0.3491458,0.5385209,0.4377929,0.044379905,-0.20537853,0.15835418,0.49743098,0.1974652,0.45664003,0.18728171,0.005554305,0.26413298,0.19418278,0.32503292,0.045201574,-0.16264772,0.17661588,-0.109542936,0.082904704,0.516523,-0.0062997057,0.3160667,0.02663402,-0.16251186,0.07849803,0.07256177,0.003818821,-1.4278592,0.37525558,0.34270337,0.76995444,0.70826566,0.04906893,-0.0036074668,0.5363087,-0.28249577,0.11166409,0.5027724,0.08749693,-0.32956594,0.75259596,-0.6826265,0.50542575,0.10711444,0.05203543,0.19052882,0.11778762,0.4004092,0.9353249,-0.10409799,-0.05145751,-0.1298344,-0.29676986,0.19923444,-0.4248391,0.012559253,-0.42338488,-0.47821015,0.5227653,0.46102762,0.29221448,-0.36604473,-0.045988306,0.15033631,-0.25300914,0.41354266,0.06946296,-0.043909546,-0.15013354,-0.51590985,-0.22115165,0.43603423,-0.2147766,0.16224109,0.22989774,-0.2190961,0.22878903,-0.05073329,0.0025500385,0.062819235,-0.86261404,0.03573549,-0.14303724,-0.29953337,0.5557589,-0.47628233,0.1625616,0.09256831,-0.023748307,-0.34937608,0.072543584,0.041777525,0.6515596,0.03840544,-0.30011633,0.040403973,0.28245136,0.24932688,-0.30385044,0.2618728,-0.0772455,-0.09242485,-0.5549813,0.51317334,-0.096342824,-0.19914137,0.18327112,-0.12689166,-0.082940504,0.40589234,-0.13406496,-0.07585609,-0.23539214,0.007815816,-0.30226347,-0.33616382,-0.3483059,0.24136502,0.11576185,0.2631628,-0.107777566,0.034721196,-0.069708355,0.359138,0.021964313,0.11593237,0.09327212,-0.24990441,-0.7101333,-0.037753213,0.04059849,0.23276724,0.17145425,-0.13496958,-0.081715174,-0.14401516,-0.28050458,0.20872016,-0.25433624,0.2743702,-0.035917245,-0.38599208,1.1061567,0.2038758,1.4122754,-0.058436085,-0.35391453,-0.10157636,0.54299575,-0.19165438,-0.04157325,-0.12242473,1.1857104,0.65200096,-0.105894685,-0.19641238,-0.5426525,-0.011483323,0.35078645,-0.20157628,-0.37839898,-0.063577205,-0.6573254,-0.36414817,0.23072915,0.26673123,0.05893677,-0.038034853,-0.1444325,0.41130266,0.12635258,0.40918544,-0.37820664,-0.039208435,0.36710748,0.1553703,0.07763935,0.30582038,-0.4105028,0.31552958,-0.7751097,0.39614782,-0.19475217,0.109717734,-0.27432668,-0.2939225,0.16031794,0.011890867,0.38358843,-0.39961395,-0.28090352,-0.35415515,0.6137744,0.15831405,0.22327846,0.94070905,-0.2805969,0.014086019,0.1592285,0.2148108,1.0696687,-0.12489009,-0.17290884,0.16135822,-0.59589285,-0.76765305,0.23653144,-0.24843735,0.11725409,-0.14195642,-0.38209847,-0.4579523,0.08221582,0.05690993,-0.0065075187,-0.017264841,-0.54765266,-0.075091854,0.3254188,-0.3145743,-0.2032054,-0.4021905,0.28434768,0.41709015,-0.228131,-0.33495757,0.10598004,0.12915999,-0.4084563,-0.55447215,-0.1274887,-0.33445692,0.38311443,-0.048980918,-0.4293339,0.13119787,0.23225184,-0.58880824,0.06552164,0.22545844,-0.3696237,0.014636484,-0.09774718,-0.27988026,0.99611247,-0.21164869,0.17081276,-0.50788313,-0.610504,-0.7091741,-0.29809645,0.35131642,0.40176746,0.15445615,-0.78462833,0.041260052,-0.19232507,0.20589618,0.08467873,-0.43636894,0.3156624,0.27344733,0.31016326,0.0483487,-0.7890266,0.28458503,0.25551146,0.06363239,-0.38603246,0.64297485,-0.16455571,0.6484716,0.123124786,0.10390899,0.15652299,-0.66760486,0.26080945,-0.10893993,-0.39873132,-0.3058569,-0.12619954,633 +954,0.53805304,-0.20323324,-0.6133332,-0.17397325,-0.10878301,-0.45849574,-0.14724192,0.36986178,0.28224406,-0.12305047,-0.24107747,-0.14721394,0.23920894,0.60035855,0.04400195,-1.1360235,-0.07985167,0.25979936,-0.75681,0.497264,-0.5604302,0.3326056,0.026201904,0.5669935,0.024808418,0.28669927,0.41533387,-0.12606274,0.15526068,0.0056484803,0.059471823,0.21414696,-0.92432517,-0.13584062,-0.104160115,-0.50105363,0.047239315,-0.3873085,-0.21869522,-0.81260735,0.33446538,-0.92182595,0.6254952,0.25164336,-0.19447304,-0.2338257,0.02538123,0.45521966,-0.4770422,0.12032668,0.19532134,-0.24361238,-0.10252297,-0.40848646,0.08560846,-0.2553387,-0.53924716,-0.029521532,-0.5532308,-0.43528292,-0.3007411,0.021143332,-0.4398135,-0.082484476,-0.1918971,0.4723405,-0.38737383,-0.36664736,0.5827711,-0.21444917,0.46384266,-0.51776487,0.009006912,-0.21404225,0.50040084,-0.2222949,-0.4056628,0.49792245,0.2317881,0.5083582,0.18901554,-0.4749808,-0.21220088,-0.120007254,-0.037287917,0.57035345,-0.31748188,-0.5695747,-0.09237253,0.1888012,0.32226777,0.3719675,0.097320706,-0.14631598,-0.07049421,-0.08228536,-0.019358808,0.6429401,0.67715263,-0.08153307,-0.5184361,0.14319767,0.4883975,0.19196701,-0.021088133,-0.03971936,-0.0073008793,-0.7284056,-0.32458007,0.10932979,-0.10274989,0.712111,-0.023804458,0.039038256,1.0491284,-0.24419442,-0.045372453,-0.16014074,-0.099704266,-0.0069469404,-0.3799511,-0.3820382,0.49542284,-0.55574995,0.13620363,-0.40113774,0.8488634,0.27418628,-0.80967623,0.41675946,-0.65594876,0.29328415,-0.12400909,0.8770012,0.87903345,0.4432999,0.75463,0.6868446,-0.3347449,0.39601573,0.41038772,-0.57943803,0.09015741,-0.26043227,0.10461699,-0.50269693,-0.02614441,-0.2296372,-0.12670326,0.36836138,0.32681367,-0.6354348,-0.07227366,0.30903298,0.6963834,-0.32149446,-0.0017245357,0.66256434,1.1985174,1.1654624,0.088235945,1.227286,0.4203908,-0.34480417,0.37577343,-0.33247635,-0.9030144,0.19914512,0.43593124,-0.019488357,0.5755271,-0.13614349,-0.16469756,0.43797234,-0.70323735,-0.084035255,-0.0018791611,0.35838264,-0.08973783,-0.32667488,-0.77717173,-0.17537202,-0.2239235,-0.27123883,-0.13638355,0.3236509,-0.19028373,0.41393492,-0.3850668,1.1886641,0.088616565,-0.06531483,-0.13954656,0.7597008,0.24241948,-0.19448987,-0.0461408,0.36151475,0.5750464,-0.029079385,-0.67242354,0.2560332,-0.4909593,-0.30693075,-0.18817239,-0.34980944,0.27793914,0.14036499,-0.3134118,-0.15106812,-0.040784385,0.046372246,0.37540257,-2.4837494,-0.33821613,0.025130343,0.41608608,-0.22796687,-0.034367457,0.040443335,-0.5236463,0.33748025,0.2280218,0.7199106,-0.7590582,0.46351758,0.4289748,-0.6239989,-0.011569809,-1.0329808,-0.114971586,-0.13341479,0.42832664,-0.0879905,-0.1703552,-0.019235404,0.3073204,0.7527244,0.03653669,-0.049273897,0.48146877,0.3735428,0.1671295,0.48498344,0.04835378,0.67134476,-0.39017087,-0.2717653,0.16763838,-0.1931215,0.2755191,-0.13838626,0.012814245,0.5740839,-0.5126345,-1.2214651,-0.41216803,-0.2105957,0.70888346,-0.41424197,-0.5039738,0.44485247,-0.136025,0.14572288,0.044602633,0.6465459,-0.17144454,0.0031048087,-0.72011197,0.0022143775,-0.034225456,0.2222649,0.17667995,-0.102915674,-0.45119628,0.45889524,-0.18118037,0.34781405,0.36182648,0.36421645,-0.31894076,-0.6535625,0.24383388,0.65945584,0.17346276,-0.04602324,-0.26088223,-0.4280206,-0.072209015,-0.21228296,0.063591726,0.6542086,1.265912,-0.30014428,0.061194908,0.46213457,-0.021934452,0.07028832,-0.1344712,-0.33203748,-0.1856768,-0.0026564517,0.5589673,0.9575052,-0.31564435,0.45624036,-0.1503172,0.3485101,0.25226167,-0.52668786,0.7816039,0.9259411,-0.01151264,0.07293777,0.5846763,0.30089763,-0.5986479,0.6462501,-0.6735241,0.087734945,0.74032503,-0.10137153,-0.27372253,0.3350004,-0.2981477,0.22851251,-1.3288633,0.524564,-0.30028132,-0.36747277,-0.7530032,-0.047488634,-3.9845116,0.27992222,-0.47868755,-0.013645958,-0.2734683,-0.015250092,0.310748,-0.9016655,-0.55383795,0.34232682,0.2719877,0.6820433,-0.052078295,0.07468524,-0.25006604,-0.2663223,-0.2027012,0.1748148,0.4421691,0.3686085,0.08472842,-0.32225946,0.09420566,0.09838598,-0.58524287,0.12972783,-0.68063843,-0.43985423,-0.21210599,-0.92019576,-0.4640847,0.68135977,-0.19013812,-0.06980016,-0.24858595,0.12664522,-0.16359144,0.2343782,0.1272498,0.3846945,0.116235845,0.016141826,0.27726945,-0.21290702,0.27050683,-0.042887226,0.47244826,-0.41016868,-0.25152805,0.168439,0.58171034,0.74165,-0.04634433,0.84793097,0.89758116,-0.0888024,0.15587112,-0.5117737,-0.24461669,-0.75660044,-0.6595747,-0.15507892,-0.39852953,-0.6446691,0.17723137,-0.36723897,-0.9084415,0.6715977,-0.27430028,0.4056138,0.17518313,0.39879486,0.49901035,-0.17869297,-0.031346764,-0.034251712,-0.15549289,-0.64531255,0.106597416,-0.73131555,-0.64744514,0.047511686,0.7025923,-0.37755013,0.07119717,-0.11517323,-0.30620745,0.17074287,0.11214077,-0.0054561873,0.41317508,0.44675577,0.021531366,-0.57557297,0.39017603,-0.02136374,-0.20937887,-0.6873075,0.22036114,0.59360504,-0.8400564,0.8727116,0.35920122,-0.06726683,0.06652333,-0.72809047,-0.45067823,0.3079706,0.085143454,0.3782585,0.06270218,-0.78157496,0.5531818,0.49066123,-0.76828235,-0.76387256,0.29847428,-0.10715909,-0.5413489,-0.01565186,0.20713948,-0.09948251,-0.042938806,-0.5591001,0.4050165,-0.39213368,0.11111215,0.15298599,-0.12174973,0.38941514,-0.06462968,-0.35548744,-0.8304556,0.37258938,-0.7048134,-0.10798344,0.44469088,-0.030141538,0.0057018427,-0.0027615374,0.3193543,0.38210887,-0.24773303,0.15052505,-0.021170443,-0.61425024,0.17679156,0.6277338,0.28153467,-0.4895593,0.61695886,0.16335559,-0.3725809,0.043549873,-0.008756334,0.5544706,-0.12048972,0.2353191,-0.10889284,-0.22891851,0.14563318,0.64460224,0.05518968,0.49006099,0.038169514,0.19616333,0.48395622,0.2394792,0.17405848,0.24638548,-0.2864916,0.0868282,0.17108168,0.26302674,0.6165505,0.39025345,0.23587547,-0.029341448,-0.39065713,0.0669033,0.42020446,0.013969848,-1.2374238,0.61391526,0.23924632,0.7795217,0.5855651,0.32966125,-0.27727792,0.7488889,-0.4140216,0.052816845,0.36971396,-0.047822107,-0.5809527,0.8012314,-0.61762345,0.46166083,-0.040621486,-0.105044514,0.07315908,0.18030308,0.3773414,0.69281715,-0.26281345,0.05962685,-0.117242076,-0.014956778,0.08465375,-0.4574304,-0.02107184,-0.3438958,-0.36582425,0.9122741,0.30033287,0.21735352,-0.020839868,-0.07102354,0.23770475,-0.27053565,0.4431081,-0.33068296,-0.07969911,0.34944448,-0.584282,-0.28950107,0.5385128,0.03195149,0.11038949,-0.38652232,-0.12575449,0.15648645,-0.20023917,-0.17071623,-0.004500675,-0.9354494,0.18064927,-0.44534734,-0.28043145,0.76993597,-0.27032974,0.24011822,0.2690601,0.13849694,-0.28717247,0.3849868,-0.08288726,0.8195583,0.043366745,-0.541706,-0.2989219,0.22732878,0.31488505,-0.31175607,0.31701264,-0.47807539,-0.06750048,-0.3786274,0.7518955,0.08701873,-0.43534514,-0.042390253,-0.22470564,-0.049575005,0.5143395,-0.2901804,0.08780221,0.19048695,-0.31989697,-0.39799264,-0.2834571,-0.28730524,0.34732324,0.35700348,0.026412953,-0.0980485,-0.1787309,-0.13027547,0.9816343,-0.072380714,0.53872985,0.24750684,0.20994264,-0.06566741,-0.058085226,0.29683754,0.43361986,0.15553512,-0.048156593,-0.6419134,-0.25221917,-0.19761428,-0.2354423,-0.22236696,0.34384874,-0.21697845,-0.22820307,0.91479546,0.20797895,1.351747,-0.12198344,-0.4418044,0.14778922,0.6875522,-0.22428204,0.0039984365,-0.5239021,1.1916112,0.55038047,-0.2738366,-0.099269725,-0.45771906,-0.19749618,0.27366838,-0.38767716,-0.21911444,-0.07309247,-0.53121996,-0.5263691,0.27105543,0.31669748,0.15719153,-0.09029856,0.18978786,-0.07790158,-0.028380187,0.2791076,-0.6506803,-0.23017521,0.11246116,0.24412332,0.06827115,0.20463477,-0.3333255,0.4388866,-0.6843495,0.33219627,-0.6251524,0.19192852,-0.013264352,-0.6231725,0.1320171,5.244667e-05,0.40255502,-0.33077326,-0.23333396,0.12152765,0.3213907,0.09893957,0.28473303,0.88189924,-0.40199268,0.11317585,0.1162757,0.5947292,1.4811879,-0.44241473,-0.15326972,0.2048381,-0.35668057,-0.5894423,0.45775744,-0.2391241,-0.09199974,-0.47693852,-0.49744728,-0.7922504,-0.050592676,0.028586805,-0.21714269,0.21593662,-0.61664313,-0.40083885,0.16126452,-0.3281059,-0.21663222,-0.30573443,0.6301576,0.8963177,-0.28864348,-0.45508072,0.18822242,0.0623204,-0.056462277,-0.48981592,-0.08818695,-0.26008078,0.3818905,0.11264808,-0.53758377,0.043036927,0.29253048,-0.47933042,0.16351794,0.21624951,-0.27609015,0.15768538,-0.1479171,-0.21709871,1.15357,-0.32632935,-0.13117205,-0.66357446,-0.48571768,-1.2560588,-0.53114915,0.6679727,0.120725326,0.029495122,-0.6509708,0.29411873,0.115146466,-0.12781118,0.014971271,-0.43582156,0.29752865,0.046703015,0.69465315,-0.38782266,-0.986655,0.1024893,0.15987973,-0.16586357,-0.91876674,0.6459201,0.14230949,0.98331606,-0.018204376,-0.046353135,0.11769698,-0.34598964,-0.0182231,-0.39949673,-0.21158189,-0.7068667,-0.17831683,639 +955,0.84500957,-0.3654858,-0.571273,0.047905143,-0.4199753,-0.17204519,-0.18318991,0.41993377,0.36417085,-0.42498854,-0.33623436,-0.07554309,0.07494989,0.08275355,-0.12791675,-0.49634263,-0.0643856,0.22413152,-0.78987634,0.96637875,-0.21303965,0.41252756,0.29702377,0.4464835,0.1277552,0.42733383,0.23524566,0.20829296,-0.0065181744,0.044358566,-0.06041478,-0.01998799,-0.6063971,0.3618983,-0.46006393,-0.3646495,-0.13132814,-0.42527798,-0.18810941,-0.8413769,0.180309,-1.0033501,0.47024518,-0.060952462,-0.29238173,-0.5314783,0.1279789,0.17046782,-0.30160806,-0.19882804,0.04115423,-0.3100907,-0.21241368,-0.7165691,0.09461565,-0.4317447,-0.45187148,-0.05638865,-0.49848482,-0.26271147,-0.0388929,0.30039787,-0.27264094,0.0032437472,-0.17404571,0.80911916,-0.25984162,0.01802308,0.5436582,-0.3032781,0.066332795,-0.7304313,-0.2542052,-0.17522687,0.26232478,0.32708934,-0.47235784,0.35131615,0.083896704,0.364048,0.40633252,-0.46397018,-0.19384147,-0.006525506,-0.00024539774,0.36842233,-0.18961939,-0.2714141,-0.18132788,0.10607683,0.39263117,0.42951047,0.26770848,-0.33540282,0.14697891,-0.40467432,-0.029730106,0.48274633,0.642241,0.044281363,-0.28895146,0.115205854,0.66072935,-0.010233435,-0.30503923,-0.24086428,-0.015649986,-0.41844404,-0.053425692,0.1590212,0.09700361,0.69763887,-0.10457444,0.17611155,0.6882376,-0.011745139,-0.058704898,0.31290317,0.30713475,-0.11014425,-0.5202594,-0.098305374,0.51519734,-0.49509487,-0.18582734,-0.5728762,0.7036529,0.046721973,-0.67652094,0.43264377,-0.6176749,0.061151076,0.1438577,0.49349278,0.7594551,0.57956815,0.40960532,0.8076059,-0.05432893,0.20577985,-0.09389289,-0.1300192,-0.13417679,-0.49922988,0.3264282,-0.36812142,0.2746335,-0.14507937,-0.02730362,0.016622717,0.4514756,-0.5682016,-0.52649504,0.44614756,0.8250984,-0.1282388,-0.099103,0.9103649,1.1736199,0.9193814,0.039318994,1.1103072,0.15473165,-0.16815816,0.21385075,0.015095743,-0.83180976,0.20833617,0.35890236,0.2125743,0.50061053,-0.13556793,-0.2772249,0.4663046,-0.42496002,-0.08015104,-0.025379466,0.33558527,0.15680018,-0.07821358,-0.64582473,-0.2854825,-0.060358897,-0.13765456,0.01888904,0.4156996,-0.1933137,0.39868096,-0.23867498,1.1823075,-0.10828161,0.10596874,0.35703027,0.55818224,0.37935588,-0.25830728,-0.020954989,0.47923848,0.08171511,0.12330305,-0.34420738,0.19978827,-0.48412278,-0.4907525,0.008285555,-0.23658966,-0.13052984,0.17587048,-0.5803093,-0.43728915,-0.11164019,-0.24959378,0.22008727,-2.6228678,-0.13934106,-0.13330348,0.54357505,-0.48826763,-0.21478952,0.08654283,-0.63840455,0.06783287,0.15018311,0.62280303,-0.6084084,0.2801561,0.5523679,-0.7537872,-0.16270116,-0.8040839,0.2277864,-0.1029747,0.40878427,-0.110956475,-0.2526929,0.03565719,-0.006147401,0.62588024,0.15641475,0.15425435,0.6827764,0.37657872,-0.122096606,0.27270177,-0.10506189,0.519486,-0.6305375,-0.2449378,0.33057186,-0.51451296,0.2513523,0.021309821,0.030897664,0.7998598,-0.5940378,-0.7173834,-0.5609123,0.034380946,0.87995046,-0.3814824,-0.59732336,0.045088258,-0.27099565,-0.07101994,-0.04049243,0.80372804,-0.054009024,0.32832053,-0.5829781,0.074504495,-0.059601296,0.24203539,-0.023357494,-0.24691053,-0.4985975,0.9371527,0.02207691,0.7255842,0.22659945,0.32566878,-0.41517648,-0.37346423,0.11538319,0.60254616,0.3317377,-0.0110267075,-0.09743764,-0.041143756,-0.18262973,-0.19873309,0.21218304,0.81140256,0.7100639,-0.16481802,0.16267727,0.39450514,0.00030892817,0.1419902,0.014276526,-0.22494961,-0.41249657,0.17059688,0.43433598,0.91808504,-0.17439665,0.2128158,-0.24911755,0.4960576,-0.17146812,-0.65878063,0.6389169,0.6108704,-0.18962461,-0.063394204,0.5633245,0.54694945,-0.64667106,0.5934271,-0.61730653,-0.4495881,0.556027,-0.10280816,-0.6632057,0.12604079,-0.27495593,0.27753153,-0.96715546,0.35231796,-0.3887456,-0.39248502,-0.6146872,-0.048016127,-2.312313,0.27852413,-0.26752484,-0.0032600977,-0.30450118,-0.14139737,0.007627265,-0.92031837,-0.43941107,0.34177145,0.22178084,0.6309399,-0.10549193,0.20192887,-0.25288212,-0.49809638,-0.12275324,0.34366223,0.16312428,0.31657112,-0.31868476,-0.41358623,-0.14883412,0.1449521,-0.46014175,0.15928279,-0.7808073,-0.61820793,-0.2705795,-0.7092531,-0.38861942,0.51444966,-0.15736637,0.05087329,-0.255519,0.04204066,-0.062276557,0.07073932,-0.022785328,0.45065725,0.24689035,-0.07896933,0.2368303,-0.47388554,0.2751995,0.012144209,0.49215004,0.28975716,-0.3195096,0.33571455,0.42189753,0.73742366,-0.26113585,1.0427307,0.26014608,-0.03056132,0.38535118,-0.1345572,-0.39576942,-0.76213497,-0.19001408,0.19796532,-0.35424736,-0.3750777,0.1937893,-0.4047168,-0.7863745,0.7181954,-0.023133676,0.5445479,0.06339831,0.50801826,0.5757686,-0.3621333,-0.14424615,0.008186362,-0.22380252,-0.60736984,-0.2809295,-0.62637734,-0.6194388,0.082172364,1.0169238,-0.24149624,0.039681986,0.24461742,-0.35498,0.1597657,0.19758119,0.043824382,0.049524155,0.621897,0.14031431,-0.4050476,0.40384626,-0.011182663,-0.18278876,-0.2701731,0.48914945,0.4575818,-0.7778128,0.78616697,0.3046728,0.14020151,-0.43663552,-0.5465486,-0.28465423,0.10236507,-0.029413491,0.50841635,0.5440465,-0.89090425,0.16698599,0.22570439,-0.56874907,-0.96044123,0.24864225,-0.18044244,-0.38728675,-0.29774097,0.4994006,-0.014779741,-0.20875864,-0.17232518,0.15091792,-0.4098691,0.074272685,0.12882224,-0.06370825,0.35031015,-0.075226754,-0.29965317,-0.7295913,0.28152367,-0.73176366,-0.25042105,0.6596849,0.022447325,-0.2397676,0.20847028,0.1741621,0.4437811,-0.13850862,0.19035487,-0.29631945,-0.42054322,0.48292992,0.43569204,0.5072001,-0.5441953,0.6440897,0.18377851,-0.25425026,-0.0073376787,0.22410497,0.38033298,0.079280406,0.43562782,-0.26989824,0.019421317,0.095681906,0.6517229,0.20033722,0.5058879,0.23751326,0.022896918,0.32983768,-0.071132325,0.31164172,-0.20231624,-0.63954806,0.10036006,-0.122881584,0.11831672,0.3956154,0.095642515,0.40618375,0.010914613,-0.20893866,-0.0022674582,0.3711792,-0.05322593,-1.3241225,0.20554477,0.19280772,1.0124409,0.3598454,0.13949904,-0.57342845,0.8069328,-0.110470936,0.25854608,0.32431805,-0.2096528,-0.43145683,0.8537554,-0.5027374,0.5608293,-0.21544673,-0.2141679,0.18525161,0.13471769,0.45743668,0.66731215,-0.20568047,-0.06427239,-0.1143123,-0.14272514,-0.08605793,-0.4014611,0.21836545,-0.3889046,-0.5562118,0.75819594,0.37378657,0.46093577,-0.34959346,-0.0445375,-0.057853356,-0.21415855,0.44099626,-0.1339647,0.027557937,0.26566112,-0.48672736,-0.16027914,0.55930626,-0.047329925,0.173958,-0.06860865,-0.1469362,0.024429088,-0.14961118,-0.017681729,-0.029463649,-0.87795866,0.24254131,-0.3754556,-0.60800546,0.42642835,-0.1857958,-0.055734456,0.2271872,0.05481905,-0.22412986,0.28803432,-0.012939618,0.95578665,-0.0035321603,-0.34474367,-0.3878341,0.28000236,0.08819547,-0.2920637,0.43129233,-0.34317482,0.2314949,-0.551148,0.63757384,0.060933437,-0.54457,0.026384912,-0.13967167,-0.1003336,0.71063703,-0.041092873,-0.20838672,0.025671883,0.012810393,-0.42417195,-0.1532083,-0.29235694,0.28753445,0.3072778,0.15793636,-0.07767706,-0.28719023,0.17180377,0.5522352,0.1670145,0.33129534,0.23141123,0.15229654,-0.24782857,0.42920053,0.2769924,0.53233635,0.21724032,-0.058204092,-0.35808966,-0.37070188,-0.46981,0.11622726,0.035473894,0.25971267,0.25061598,0.02218804,1.110217,-0.030919164,1.2288929,-0.058606353,-0.33506587,0.11867383,0.5936363,-0.22307421,-0.1268778,-0.51050514,1.2754916,0.65463424,-0.11369924,0.0861908,-0.37841588,-0.1270269,0.31783485,-0.44209945,0.04921148,-0.11038561,-0.5190403,-0.3355704,0.06423473,0.20602517,0.13577595,-0.27170783,0.07432533,0.2925038,0.066423014,0.06185918,-0.6599198,-0.1037072,0.1679696,0.23819852,-0.10754774,0.20833264,-0.43245742,0.37279952,-1.0534247,0.43007514,-0.5313381,0.15779948,-0.13154289,-0.5050089,0.081872694,-0.00054984743,0.6117832,-0.6178243,-0.3701783,-0.13952166,0.44571447,0.17809787,0.020528192,0.670717,-0.24994868,-0.04285395,0.15784799,0.6120447,1.1797179,-0.39242116,-0.0040291725,0.029738687,-0.62459284,-0.91028094,0.42408752,-0.20373812,-0.06866726,-0.35693625,-0.29606548,-0.7160364,0.09911487,0.27722555,-0.08781987,-0.10548322,-0.77615285,-0.07388312,0.05247437,-0.5381136,-0.15326281,-0.17553128,0.48351032,0.58893496,0.08782118,-0.42935008,-0.047844365,0.24500869,-0.14862368,-0.5032898,-0.13577296,-0.35511854,0.13351426,-0.06896818,-0.4541815,-0.33567464,0.15393467,-0.6388729,0.10208488,0.058170866,-0.29847664,0.080028266,-0.34915712,-0.1266138,1.1107974,0.0054202457,0.096695535,-0.52834356,-0.6772028,-0.9404638,-0.59547323,0.13335735,-0.03198589,0.2693257,-0.6151402,0.013689572,-0.3922467,-0.111660846,-0.11276283,-0.3389479,0.2652445,0.1435466,0.59556293,-0.53822196,-0.9946938,0.34557924,0.23519407,0.04585564,-0.45258057,0.29330322,-0.049605545,0.83292127,0.006434914,-0.061490472,0.14713436,-0.6819782,0.1380867,-0.2848737,-0.101247124,-0.651357,0.1045438,644 +956,0.21710028,-0.5110107,-0.48979387,-0.16708288,-0.19190134,-0.14616512,-0.14355081,0.58925015,0.3304486,-0.008847269,-0.23483635,0.04291961,0.129014,0.5809526,-0.18642563,-0.81344545,-0.27179754,0.08323652,-0.6452563,0.3123191,-0.5242274,0.048086036,-0.15763783,0.3686698,0.043453857,0.31380364,0.10734387,-0.11106448,0.1866077,-0.12528332,-0.25977,0.18331252,-0.30613402,0.1589403,-0.03182219,-0.103403874,0.10964294,-0.44715405,-0.32980594,-0.71015424,0.16059957,-0.97663516,0.4647893,-0.03629376,-0.25276306,-0.21745473,0.15561679,0.36279634,-0.3946365,0.016206928,0.27854168,-0.2615894,-0.17277935,-0.26467383,-0.12301976,-0.5771862,-0.42482805,-0.1806553,-0.40980452,-0.39235446,-0.043604385,0.11952476,-0.54737043,-0.10946712,-0.2726823,0.35352355,-0.38729277,-0.14624362,0.58567965,-0.4891282,0.362389,-0.47181642,-0.063636765,-0.045492474,0.49616775,0.19434732,-0.22133623,0.21501733,0.21851726,0.20351061,0.31359455,-0.21663703,-0.36797354,-0.38159588,0.3661474,0.6510212,0.0013409961,-0.44323558,-0.24771014,0.15181886,0.28596926,0.62609935,-0.009635378,-0.2316631,-0.02107426,-0.07644767,-0.21235873,0.65288186,0.5293195,-0.104773395,-0.25884125,0.33806401,0.44143298,0.322093,-0.2540326,0.12076721,0.05793823,-0.4227506,-0.17483632,-0.025301002,-0.12095225,0.48261416,-0.23135585,0.20161095,0.8975368,-0.14028107,0.079278514,-0.17526346,-0.093627885,-0.38467285,-0.51033884,-0.09752007,0.23538937,-0.51278365,0.2730393,-0.25955963,0.77328014,0.16213134,-0.59964734,0.30324206,-0.5259539,0.4097375,-0.09432446,0.5883898,0.5620734,0.48371106,0.4244732,0.9400911,-0.12927078,0.30749762,0.10336013,-0.5645079,0.095051855,-0.22200494,0.03601949,-0.42506582,0.29565847,0.054160263,0.12014162,0.15558574,0.14446922,-0.60568994,-0.048176624,0.29565275,0.9141954,-0.22635843,0.0923362,0.81765455,0.9565651,0.8975804,-0.029110195,1.1612908,0.26998568,-0.24758531,0.2167756,-0.29400948,-0.80705935,0.18068415,0.4071229,0.1984815,0.37907562,-0.2327611,-0.18267582,0.41828936,-0.46205667,0.06896209,-0.058026813,0.24189726,0.16227153,-0.28619358,-0.6687712,0.030624064,-0.099258296,-0.13671963,0.091190666,0.27448934,-0.1759751,0.55953753,-0.1336988,1.0980967,-0.09242363,0.14887014,0.15204753,0.5713176,0.24620663,-0.094413064,0.28822318,0.54227525,0.47764972,-0.033927776,-0.7802706,0.31712672,-0.37665316,-0.44891825,-0.13780053,-0.38069734,-0.2674065,-0.10450358,-0.3504098,-0.08838435,-0.14959139,0.012126782,0.4074603,-2.8929193,-0.2143168,-0.35474518,0.31284148,-0.3351373,0.060667,0.10301609,-0.52119577,0.1638301,0.32574424,0.69325024,-0.7207924,0.35030147,0.6596877,-0.686502,-0.088221125,-0.7264491,-0.03600903,-0.02890092,0.5485779,0.15756834,0.02182863,0.024453497,0.06999766,0.7528259,0.24204923,0.26312116,0.4126938,0.5327521,-0.08138743,0.42074624,-0.22972146,0.67516357,-0.3169408,-0.053141262,0.18443508,-0.28006652,0.3657737,-0.30089635,0.022642743,0.6129977,-0.26596463,-0.8645515,-0.32543787,-0.30916527,1.1323416,-0.54054874,-0.42354164,0.22400178,-0.15221262,0.035150897,-0.007842671,0.6482265,-0.009437734,0.08118013,-0.6170251,0.21092206,-0.19143902,0.085432045,0.040390253,-0.1778336,-0.2999196,0.7712301,-0.10420012,0.74094564,0.2810289,0.14577205,-0.13352326,-0.3372693,0.015131452,0.43521327,0.43437472,-0.11058144,-0.1534608,-0.26894835,-0.056080926,-0.28938425,-0.02246042,0.8455101,0.6649499,-0.2771711,0.075158365,0.3541773,0.056191422,-0.024360353,-0.07517769,-0.2492194,-0.099242084,0.09893865,0.42831343,0.7595894,-0.32129395,0.31548557,-0.07298761,0.27991194,-0.037361618,-0.6061531,0.65109444,0.4711819,-0.23639907,-0.10969107,0.5472719,0.51276225,-0.437449,0.42786282,-0.6829833,-0.013358398,0.75579107,-0.2472154,-0.6101072,0.2201531,-0.15349713,0.050320193,-1.0061898,0.22285038,-0.3502394,-0.63348407,-0.436947,-0.07060175,-3.5684366,0.06415944,-0.34655523,-0.30660218,-0.47828397,-0.028638504,0.2187966,-0.6540502,-0.76260585,0.2861223,0.25460938,0.47019625,-0.14687121,0.11268663,-0.40987265,0.03495296,0.003645691,0.32072794,-0.098855086,0.28058273,-0.19123554,-0.45461723,-0.10734894,0.27474597,-0.53688717,0.33225295,-0.65140605,-0.30364138,-0.043790754,-0.58547217,-0.051075697,0.54375786,-0.3980342,0.009960627,-0.052626207,0.22235017,-0.34534457,0.10657487,-0.0871218,0.30708548,0.17610413,-0.033505537,0.25437838,-0.15017737,0.5660608,-0.12187831,0.55058384,-0.03115861,-0.11861146,0.13512902,0.60989946,0.58910775,-0.2088068,0.95498365,0.4267537,-0.123604804,0.32397622,-0.22625071,-0.15497422,-0.5880709,-0.51401967,0.018868767,-0.40282252,-0.7181187,-0.002135797,-0.22082125,-0.7483485,0.52900934,0.17765476,0.57287556,0.057660673,0.120949194,0.5272556,-0.17286563,0.018549008,0.17887114,-0.12778665,-0.52631533,-0.07996371,-0.73689884,-0.47940883,0.26605642,0.84012204,-0.2570667,0.0009785945,-0.19082516,-0.5824886,-0.22865658,0.27097407,0.17901708,0.22791333,0.36979917,-0.004882826,-0.5362901,0.3901303,0.027322017,-0.13043952,-0.5345671,0.14349957,0.6938229,-0.7221594,0.7134726,0.23623894,-0.011807405,-0.35052958,-0.42328042,-0.33056936,-0.033754133,0.0017623956,0.49832115,0.17479181,-0.6173746,0.4273015,0.2613631,-0.47042057,-0.63249683,0.23972966,-0.26773158,-0.0246359,0.005399054,0.17742372,0.17977348,-0.26183775,-0.18862009,0.2574042,-0.33780175,0.24397029,0.15864919,-0.09631235,0.42628434,0.13040042,-0.13963826,-0.8961714,-0.09545751,-0.7639055,-0.049433485,0.46344146,-0.16424458,0.037653092,-0.07488132,0.038278334,0.25115147,-0.17795894,0.112491965,0.12406297,-0.41953275,0.4842222,0.5329828,0.22986904,-0.50625557,0.5998625,0.39127037,-0.22288066,0.15897958,0.21194205,0.37358618,0.028229333,0.63130915,-0.2654741,-0.117371514,0.21820536,0.93463236,0.19780521,0.5802216,0.2343564,0.014767867,0.42198867,-0.11194214,0.26228613,-0.096096404,-0.551962,0.05699488,-0.1711815,0.11337033,0.5242484,0.4766016,0.41580045,0.107690595,-0.284908,-0.009837794,0.32723033,0.09830236,-1.3699481,0.4229293,0.3436031,1.0352494,0.2737306,0.26872686,-0.19222897,0.8037104,-0.23157527,0.044676658,0.53295463,0.08099307,-0.56086123,0.79531115,-0.65784466,0.45155373,-0.089598686,-0.15541811,0.27839568,0.35835835,0.37574556,0.60851437,-0.13251473,-0.118763,-0.2058118,-0.2863069,0.04246768,-0.36916077,-0.0603828,-0.41075227,-0.48537177,0.5031943,0.6017144,0.3261854,-0.14627768,-0.091739126,0.11847043,0.07689551,0.2241304,-0.12355943,-0.18519458,0.077102415,-0.565301,-0.24819742,0.6130957,0.022437232,0.3316169,-0.38970262,-0.4384386,0.13265909,-0.26260284,-0.111209035,-0.012989716,-0.57782155,0.05409775,-0.13365628,-0.83270246,0.4654121,-0.20054103,0.22546245,0.123841286,-0.124669425,-0.09056535,0.054993305,-0.22363442,1.0391225,-0.17505664,-0.28364775,-0.521363,-0.0241215,0.16000949,-0.18971421,0.029816281,-0.41016462,-0.06640358,-0.29513356,0.45876637,-0.10943497,-0.5579052,0.19459438,-0.24033284,-0.13670133,0.58141834,-0.109684944,-0.21369225,-0.062051106,-0.37644842,-0.55556655,-0.22778769,-0.3609611,0.25678918,0.24850518,0.18561038,-0.121156864,-0.1028564,0.05393919,0.49305236,0.0034005968,0.36306164,0.24194184,-0.013733284,-0.18065745,-0.06826493,0.21921197,0.48229778,0.22332793,-0.042262845,-0.12739295,-0.5790562,-0.40576723,-0.13512439,-0.10638326,0.5496536,0.056956347,-0.29545763,0.8190495,-0.012235078,1.18982,-0.010923635,-0.5038345,0.16146308,0.6145558,0.05296847,0.085945815,-0.33740222,0.95886785,0.52289397,-0.05287033,0.013974374,-0.7351376,-0.040762316,0.4786793,-0.3226744,-0.034748003,0.038522426,-0.52737933,-0.2896041,0.31745094,0.030110516,0.36062118,-0.14801511,-0.119501464,0.024481183,0.10024469,0.43509814,-0.5697311,-0.39089143,0.17835212,0.19329333,-0.0066070124,-0.09905877,-0.40038022,0.40022346,-0.6115995,0.2259735,-0.51831937,0.16759925,-0.42180434,-0.15305421,0.21446423,-0.3291922,0.45692328,-0.37858915,-0.4525965,0.008126909,0.5012755,0.019110886,0.1192697,0.64375186,-0.30745667,-0.012521828,0.23865533,0.7506153,1.2258954,-0.61816007,0.1789775,0.3898494,-0.5942257,-0.7727881,0.35870486,-0.30690962,0.11885395,-0.023411041,-0.3871877,-0.59718376,0.22668332,0.089424044,0.09559655,0.23540455,-0.42954433,-0.28068125,0.30500498,-0.5079641,-0.26754436,-0.3188422,0.2900264,0.80391794,-0.27949217,-0.5745868,0.1232842,0.2097438,-0.14528783,-0.4476639,-0.0013558011,0.038166977,0.2827226,0.021350466,-0.4168658,0.04410521,0.072998516,-0.47219285,0.17413622,0.05974168,-0.30802718,0.3672458,-0.25564167,-0.23352534,0.96183324,-0.49041188,-0.08726423,-0.88926464,-0.4309902,-0.7878841,-0.54141086,0.33847857,0.097288184,-0.018911958,-0.5396833,0.11405382,-0.05046513,-0.1508378,-0.15931198,-0.51950175,0.46657676,0.0068653314,0.58079875,-0.32852614,-0.8913193,0.2893113,0.26985013,-0.043484602,-0.6832532,0.64440316,-0.14600392,0.9028885,0.0689085,0.12610592,-0.12835278,-0.4416936,-0.041303538,-0.26738933,-0.3178789,-0.8370531,0.3303577,647 +957,0.4672947,-0.12318829,-0.46576083,-0.0483901,-0.18329276,0.029541558,-0.030080687,0.6123914,0.3599162,-0.4739339,-0.327946,-0.4443475,-0.08634953,0.43622884,-0.16597709,-0.6503704,0.02801714,0.19190668,-0.6648846,0.64090323,-0.48307094,0.40244314,0.10902285,0.4661927,0.21729317,0.12024198,0.19468151,-0.110366754,-0.019483805,-0.1354646,-0.16794367,0.038458604,-0.47572067,0.27528402,-0.08837865,-0.42973423,-0.015704209,-0.59244233,-0.14093718,-0.8072439,0.39281493,-0.7398361,0.3928649,0.0913545,-0.2979762,0.25814387,0.14355235,0.3426154,-0.17839266,-0.027255088,-0.024308555,0.0047839093,-0.03842622,-0.25077343,-0.210261,-0.28686187,-0.7323923,0.1891892,-0.21360807,-0.24773206,-0.22322851,0.046401743,-0.3532709,0.18035239,0.10416703,0.31664887,-0.3009551,0.1147671,0.13018918,-0.21502899,0.008801059,-0.5344619,-0.3950306,-0.080485314,0.2646506,-0.23749675,-0.13742475,0.25975513,0.33341715,0.59360605,-0.11896899,-0.108093046,-0.25481468,-0.18544973,0.068368964,0.60360044,-0.17751569,-0.6331316,-0.06218797,-0.07488993,0.2347611,0.22413841,0.23681699,-0.23821133,-0.15199417,-0.34584737,-0.3517815,0.16642445,0.51581424,-0.35947183,-0.3373752,0.3009365,0.513238,0.099405356,0.14058429,0.13635124,0.09392467,-0.5651064,-0.1016844,-0.07112877,-0.40438625,0.5449981,-0.22730647,0.20256825,0.557704,-0.037058827,0.10259209,0.07658278,0.054348446,-0.22429754,-0.2963828,-0.23947121,0.24497706,-0.43807265,0.13968597,-0.2933234,0.9032724,0.33229694,-0.73671705,0.3630241,-0.64364547,0.22147027,0.04023662,0.4909383,0.7101707,0.1758725,0.4246749,0.6816655,-0.3973973,0.058141556,0.038690213,-0.20877385,-0.042053424,-0.258463,0.061140537,-0.4558718,0.16772081,0.13154739,-0.10040164,0.24984303,0.49773273,-0.48833266,-0.10023474,0.20480512,0.8274107,-0.2694607,0.005053997,0.8581892,0.9071333,1.1674514,0.050019935,1.4031314,0.31937936,-0.29901636,0.18985675,-0.23546691,-0.96663326,0.25249216,0.366558,-0.21965967,0.29745752,0.067798495,0.021286774,0.31226087,-0.6319037,0.07454226,-0.13635863,0.104957074,0.1266533,-0.11790137,-0.3429477,-0.47000942,-0.09162101,0.0046509113,0.18693356,0.3397196,-0.10350945,0.40393162,-0.017313974,1.6629704,-0.032847203,0.19333524,0.23363261,0.3727866,0.20154685,-0.25380117,-0.06863033,0.2520505,0.29204312,-0.089059524,-0.6904967,0.018334992,-0.2569702,-0.55581,-0.21115784,-0.22206426,-0.1612532,0.115881614,-0.21094021,-0.3528862,-0.27584296,-0.4247708,0.36538124,-2.4157114,-0.15341236,-0.2274444,0.33452064,-0.24984117,-0.3893979,-0.3035866,-0.5060909,0.37841618,0.4051571,0.39270118,-0.7838125,0.0973342,0.45148146,-0.5510875,-0.14178436,-0.6202924,-0.048744414,-0.018814765,0.031941555,-0.11188728,-0.063767485,-0.01926472,0.09092684,0.41944426,0.1356743,0.09516024,0.42822826,0.4330459,0.12736104,0.4146081,-0.064684,0.49590433,-0.34671852,-0.14077939,0.34659767,-0.5939961,0.21756333,-0.22941022,0.13020495,0.502912,-0.6401947,-0.7390846,-0.6598696,-0.3221537,1.2757142,-0.16226615,-0.46811536,0.28100854,-0.22950147,-0.13808651,-0.20280714,0.627521,-0.4087426,-0.30285013,-0.80999374,-0.038567487,0.02237249,0.22633377,0.02142712,-0.1287567,-0.3799503,0.81837046,-0.02070985,0.3803913,0.19916114,0.050388943,-0.39793712,-0.555385,0.16453736,0.964279,0.44356823,0.22565302,-0.26319215,-0.11433518,-0.6211806,-0.3518751,0.08751394,0.3215297,0.74945015,-0.13155438,0.04555227,0.3691281,0.14992493,0.24826384,-0.019602424,-0.2027288,-0.26085582,-0.13304262,0.6756674,0.7399374,-0.35086474,0.19286132,-0.1013763,0.23279019,-0.24917574,-0.3318865,0.7247293,0.92243844,0.008818134,-0.36083564,0.64473933,0.52860403,-0.32087466,0.41869137,-0.57756835,-0.434877,0.46481478,-0.04850801,-0.40129748,0.029990934,-0.32715526,0.108850546,-0.8222306,0.22095901,-0.13362113,-0.11851895,-0.6832715,0.028299851,-2.7091932,0.22613792,-0.258572,-0.13474375,-0.35609278,-0.023278935,-0.13783379,-0.4469161,-0.7767181,0.21903668,0.08739689,0.68683654,-0.0904656,0.22730042,-0.010731014,-0.3014409,-0.59469754,-0.030883472,-0.17149931,0.43039963,0.30527154,-0.35200477,-0.010032887,-0.1408684,-0.22904162,0.15116729,-0.50605386,-0.47890872,-0.22157167,-0.6085237,-0.3745085,0.5482382,-0.5705426,0.04133183,-0.23348904,-0.2190312,-0.2657424,0.3006467,0.13008705,-0.11819511,0.017315181,-0.15483277,-0.13020205,-0.26444957,0.32362553,0.015639933,0.29954612,0.39830047,-0.18643856,0.19544636,0.23148017,0.7226732,-0.10920021,0.65601027,0.35371402,0.017753506,0.25820762,-0.3350361,-0.03922884,-0.34688488,-0.12615922,0.0116301235,-0.35806444,-0.48129222,-0.0005911643,-0.2525165,-0.7249212,0.23268825,0.05107124,0.1350174,0.089041695,0.19290408,0.48069936,-0.008380628,0.022737037,-0.13560511,-0.046361074,-0.5791625,-0.37316027,-0.67409855,-0.22177698,0.4730096,0.9686601,-0.05897728,-0.033921883,0.09083626,-0.19778791,-0.045318767,0.12738995,0.0077403486,0.10515134,0.47670576,0.034668293,-0.70249075,0.47882202,0.04144279,-0.31551027,-0.59416157,0.1410779,0.48211735,-0.60974646,0.56786937,0.24143614,0.05833461,0.13979049,-0.4515002,-0.2666776,-0.15502724,-0.2392408,0.098361276,0.29352307,-0.557868,0.4038869,0.25913757,-0.0727598,-0.9502809,0.22161227,0.08359666,-0.25852555,-0.039172877,0.4589217,0.16546923,0.10674503,-0.21078648,0.12679364,-0.4999054,0.3161708,0.17418288,-0.010611513,0.30070797,-0.33008978,-0.18922311,-0.7526869,0.123722404,-0.48049676,-0.19729353,0.19996572,0.24693199,0.06760235,0.14209868,0.20440935,0.25637177,-0.3194183,0.16039819,-0.008235639,-0.038489655,0.10573241,0.34033874,0.53596395,-0.5113173,0.65720534,0.0829699,0.04656236,-0.024674892,0.047940113,0.28089485,0.22842659,0.24064918,0.20658241,-0.33268067,0.31104687,0.6255751,0.19292088,0.19341844,0.2533214,-0.07518646,0.43010694,0.16455115,0.10185929,-0.054846045,-0.56965494,-0.060532752,-0.25456843,0.14550729,0.52702457,0.12359419,0.3674844,-0.061794635,-0.2764967,-0.015676081,0.3169526,-0.24577393,-1.1087645,0.1720847,0.031513777,0.8097999,0.6747484,-0.17752632,0.27198705,0.5918934,-0.137291,0.20067258,0.3568106,-0.07698568,-0.47543058,0.67768663,-0.574876,0.42746115,-0.20972382,0.06545872,-0.052311126,0.15258351,0.29754725,0.5998752,-0.13329992,-0.03481593,-0.12182342,-0.30331525,0.072050765,-0.5035644,0.04362345,-0.5772079,-0.14389418,0.60961777,0.3197818,0.19013304,-0.1693268,0.10242807,0.008120585,-0.14455591,0.027965205,0.066752724,0.11544385,0.04630084,-0.7401112,-0.096896,0.5877591,0.0829357,0.289089,0.23090205,-0.29806045,0.1803482,-0.33894274,-0.0903233,-0.123121314,-0.80333996,-0.021391576,-0.17141925,-0.40801084,0.27054426,-0.06113225,0.20616116,0.35527658,0.16110164,-0.34993017,0.3143971,0.03807055,0.7477224,0.010874339,-0.2927907,-0.24283351,0.3620821,0.091452144,-0.276441,-0.0016197237,-0.18356639,-0.07135144,-0.4441021,0.7388985,0.20109606,-0.22221297,0.079002835,-0.20567422,-0.0009360869,0.6802266,-0.2802427,-0.09314141,0.0106139025,-0.20700131,-0.10275795,-0.17959881,-0.23967895,0.38418233,0.33037812,-0.011970899,-0.1412601,-0.096137,-0.133816,0.30418372,-0.06970212,0.31452253,0.26910657,0.096922375,-0.45779255,-0.012169946,0.13120092,0.49082705,0.05011293,-0.28924796,-0.13613339,-0.41846707,-0.31706464,0.43369853,-0.13371554,0.33844423,0.18230699,-0.36985752,0.56628805,0.32498989,1.0790483,0.06177855,-0.32058823,0.014981573,0.3955711,-0.0073279333,-0.16124167,-0.29563186,0.9188049,0.45288727,-0.18159066,-0.16989475,-0.28691027,0.04079484,0.23381463,-0.17360741,-0.076202005,0.1925541,-0.5612406,-0.5004149,0.12246392,0.22920108,0.14747977,-0.19713612,0.11213057,0.21577772,0.018026583,0.38647747,-0.33835763,-0.29746476,0.27170277,0.22024423,0.21081497,0.17240432,-0.39297864,0.31648102,-0.72587466,-0.0053877127,-0.29536223,0.10773511,-0.15807508,-0.33996168,0.22438727,0.23529743,0.43862975,-0.41344795,-0.39262086,-0.37823057,0.60636514,0.18709908,0.27661824,0.47935173,-0.28071395,-0.0008798299,0.16791497,0.59085625,1.1267432,-0.027464002,0.05279164,0.060704652,-0.29653767,-0.5940359,0.5026915,-0.26846787,0.1091702,0.080456585,-0.20496391,-0.77457964,0.24482927,0.2362136,0.15670905,0.18363996,-0.6011169,-0.48624334,0.38168576,-0.30366287,-0.17818585,-0.40227425,-0.063604526,0.5950344,-0.11401956,-0.25528786,0.10954884,0.17193861,-0.26970896,-0.69618183,-0.05386295,-0.4465514,0.34318605,0.19425073,-0.2153828,-0.29159418,0.18947569,-0.46819755,0.21165419,-0.009281695,-0.36316743,0.044957206,-0.4725646,-0.025888653,1.0209762,-0.19706783,0.34876245,-0.63149905,-0.47460678,-0.8884726,-0.42718726,0.73867875,0.022246247,0.13274217,-0.6316564,-0.18292412,-0.061374318,-0.115725584,0.13195789,-0.18172885,0.32084343,0.20424443,0.41346,-0.053527854,-0.67670375,0.06395798,-0.013281868,-0.19568811,-0.56274575,0.35471514,0.19606161,1.0231054,-0.0077547594,-0.0823839,0.3745383,-0.6678814,0.016506704,-0.18352284,-0.10164463,-0.5915633,0.13584167,698 +958,0.5468522,-0.3404453,-0.46790263,-0.18424898,-0.39009723,-0.07683622,-0.16318685,0.3335892,0.34566903,-0.2946072,-0.09867124,-0.18774134,0.0915016,0.50241065,-0.08491126,-0.86816716,0.091292694,0.23280536,-0.7915769,0.67255366,-0.47226638,0.3830262,0.08436782,0.26214507,0.10812988,0.3463412,0.294227,-0.09580738,0.053481065,-0.20554422,-0.08546469,-0.039940182,-0.8036667,0.37602702,-0.098921604,-0.35175863,0.12615098,-0.29239818,-0.393276,-0.67253894,0.25636628,-0.8482374,0.48971507,0.13789749,-0.37160376,0.1958831,-0.049233068,0.31027833,-0.37157786,0.16262402,0.19763058,0.03296477,0.051636767,-0.44022855,-0.14723442,-0.546315,-0.51354223,-0.118189484,-0.63129586,-0.3175631,-0.43670428,0.03667633,-0.30348217,-0.051560715,-0.11016779,0.32307538,-0.39748192,0.25193423,0.17942959,-0.24652252,0.27941436,-0.3344789,-0.08032431,-0.13908285,0.0453411,0.027763821,-0.17000347,0.43815717,0.07709576,0.493197,0.087858826,-0.16912067,-0.27879784,0.12327281,0.12839217,0.4564333,-0.069648355,-0.3988376,-0.22376728,-0.17981774,0.113500945,0.060630973,0.26970407,-0.5212137,0.01926784,-0.055273566,-0.27532974,0.44980496,0.39741182,-0.4570041,-0.24563313,0.28933594,0.35348102,0.08863568,-0.1425866,0.0095477905,0.049742464,-0.5215938,-0.3671529,0.019402536,-0.2673202,0.5119328,-0.21688014,0.23402292,0.8286949,-0.22972998,-0.026855767,0.12590875,0.1026931,-0.16785674,-0.20185882,-0.20529057,0.27070034,-0.63472706,-0.18170674,-0.34960458,0.82649916,0.06712377,-0.67394876,0.392892,-0.6226904,0.17001514,-0.28612158,0.49346477,0.7498607,0.554652,0.006216908,0.6332271,-0.6055403,0.06253118,-0.087421596,-0.4291855,0.5262875,-0.21405517,0.104354024,-0.45753428,-0.22277437,-0.013197682,-0.20861058,-0.004887226,0.5490169,-0.53189963,-0.14137276,-0.001809933,0.9011723,-0.34137747,0.08122611,0.505827,1.1447405,0.89412403,0.023336025,1.3060204,0.2593558,-0.24193062,0.2615633,-0.15243925,-0.9599131,0.23224331,0.35241207,-0.07284528,0.40049192,0.023162263,0.028672451,0.32668477,-0.27011922,0.012270689,-0.18053056,0.37144965,-0.22967547,-0.23229083,-0.3319577,-0.29781362,-0.03673656,0.19050537,-0.15196703,0.45491228,-0.26260552,0.19142757,0.04751637,1.7843632,0.09860241,0.064280495,-0.1577454,0.6522491,0.29371047,-0.17230736,-0.06863568,0.384071,0.21378246,0.23762174,-0.6211511,0.120316096,-0.1088083,-0.52965295,-0.15010233,-0.43903625,-0.05336565,-0.23609807,-0.5226044,-0.117214724,-0.0009450479,-0.14219846,0.31403938,-2.2659786,-0.09225405,-0.08044202,0.49030885,-0.25952563,-0.15708742,0.032211013,-0.3885555,0.10246772,0.3790617,0.5666142,-0.70460075,0.4983962,0.6596981,-0.50431436,0.038148057,-0.4414894,-0.0778476,-0.15193094,0.60552126,0.043232158,-0.008134999,-0.08281528,0.272584,0.4518038,0.031356044,0.2951778,0.27467412,0.5076597,-0.11542355,0.50006795,0.096161865,0.33137643,-0.2973251,-0.13304886,0.27237892,-0.2061769,0.12796998,-0.03626618,0.07696832,0.43600017,-0.43997338,-1.0250995,-0.55185837,0.07104385,1.0339489,-0.5034766,-0.51538694,0.3084256,-0.20548764,-0.19832349,-0.05560758,0.30926067,-0.06360504,0.117075205,-0.8355556,0.14671625,-0.10656543,0.1937478,0.12601177,-0.14157091,-0.37009183,0.8479958,0.10068963,0.40394124,0.03937798,0.17239565,-0.27810583,-0.39859352,0.35808343,1.0089904,0.32660386,0.18697701,-0.15979202,-0.1975133,-0.3509146,0.009010348,0.06506782,0.531612,0.7081421,-0.19459534,0.1749886,0.37661475,-0.19845547,0.02867692,-0.23054188,-0.42748335,-0.03683275,0.09627983,0.48457,0.9862204,-0.12754713,0.26197794,-0.052435935,0.43647158,-0.16402902,-0.62426513,0.56713676,0.8479271,0.009087812,-0.09974215,0.58218616,0.666069,-0.47297785,0.6147049,-0.63387513,-0.47883874,0.3491234,-0.057196315,-0.40405244,0.15798745,-0.30191657,0.21352538,-0.88046265,0.5514046,-0.2775136,-0.269549,-0.35390452,-0.21438928,-3.9211152,0.28785247,-0.1445368,-0.19032282,-0.06145023,0.12921259,0.38916752,-0.7142326,-0.3491949,0.085927926,-0.004585017,0.69410753,0.05168527,0.24783531,-0.23907462,-0.3351018,-0.24053578,0.29122546,-0.032631215,0.1874478,0.0041994127,-0.68686455,-0.30954525,-0.08197499,-0.347069,0.14576131,-0.68489033,-0.5069397,-0.17021026,-0.6535771,-0.2736023,0.6770723,0.10957604,-0.015838908,-0.18444228,-0.08056545,-0.22266744,0.30540723,0.07783867,-0.05568038,0.07148382,0.03260829,-0.15223579,-0.33555168,0.24291252,-0.023858856,0.6832843,0.2641811,-0.26147687,-0.049627826,0.76281965,0.40022343,-0.097362764,0.7790151,0.32381475,-0.14919223,0.38295308,-0.060819816,-0.32425764,-0.6769936,-0.39855766,-0.30746675,-0.3144855,-0.1600892,0.15275317,-0.3822958,-0.6773241,0.6660311,0.14758143,0.21917659,0.0062885988,0.055871964,0.37240413,-0.14111117,-0.26112828,-0.12730494,-0.31487578,-0.5688769,-0.19816126,-0.83313376,-0.39621344,0.45773107,0.87224525,-0.20066155,0.029645367,0.28513983,-0.0647482,0.17573263,0.10626392,0.028622156,0.021878053,0.4238003,-0.0055593033,-0.83420295,0.691424,0.0019034093,0.13732082,-0.48616496,0.10999658,0.6575382,-0.7216448,0.45445433,0.26378,0.19841506,0.24171497,-0.3474801,-0.20330618,0.053435076,-0.19525315,0.34725928,0.28092104,-1.0026468,0.26942945,0.31477463,-0.53559166,-0.5560623,0.61914647,-0.15397516,-0.25079846,-0.31034473,0.24580437,0.050418075,0.06303661,-0.2591804,0.3481131,-0.60752386,0.28298107,0.3282711,0.05733305,0.40164375,0.021694062,-0.10919173,-0.69449943,0.13322346,-0.42724296,-0.44049948,0.24562693,-0.045972034,-0.14173931,0.29986,0.27619007,0.31183904,-0.16727117,0.08663201,0.09893299,-0.38321438,0.76135135,0.477203,0.61719424,-0.50829893,0.59338003,0.12570082,-0.06904536,0.024879206,0.004058491,0.38996938,0.114028044,0.4788407,0.26703697,-0.14614363,0.47924498,0.8329206,0.19525805,0.5222499,0.16572694,-0.055555876,0.24287258,0.09709425,0.1334447,-0.001939508,-0.6104305,-0.039121117,0.10514916,0.27807713,0.5184977,0.08568854,0.27756146,-0.070136674,-0.48662385,0.090167,0.23905605,-0.0487751,-1.4909465,0.080281466,0.28449365,0.59502256,0.68820083,0.010223248,0.0034945228,0.681015,-0.04901966,0.12457094,0.17335017,-0.00051345606,-0.5685694,0.74028456,-0.57842565,0.3673109,-0.13587402,-0.07271352,0.09177944,-0.051169146,0.27594188,0.8253839,-0.021617074,-0.024144493,-0.043235257,-0.5264858,-0.06816621,-0.5155361,0.19935851,-0.5613401,-0.37457266,0.53977585,0.5427174,0.2587384,-0.17274685,0.021505482,-0.06363645,-0.20767374,0.25192624,0.020045714,-0.10669598,-0.03803068,-0.7974163,-0.18170029,0.64238125,-0.029238343,0.14885053,-0.13362509,-0.12597126,0.29992768,-0.35601556,-0.090500645,0.03622747,-0.752474,0.24269108,-0.34599927,-0.29211047,0.5844665,0.12034777,0.12817463,0.18004194,-0.008317045,-0.37542474,0.23482396,0.22629207,0.55986685,0.04046885,-0.16814397,-0.30984476,0.076178715,0.014943928,-0.30624238,0.07965458,-0.21264935,-0.024217801,-0.68036747,0.3463229,-0.00572809,-0.37042668,-0.03431542,-0.07454886,0.15440637,0.5456018,-0.060645558,-0.30386412,-0.10805502,0.059653815,-0.22829407,-0.27259144,-0.1662731,0.34475958,0.114433855,-0.028781867,-0.13894178,-0.1483262,0.21564125,0.42936373,-0.060198583,0.33804566,0.42022246,0.114937015,-0.37403682,0.03947483,0.39823312,0.532374,-0.02552046,0.16860558,-0.28076324,-0.38054693,-0.43110484,0.068578005,-0.19157149,0.42201415,0.08025733,-0.47659448,0.8853597,0.09256587,1.2401805,-0.058562193,-0.27240503,0.33831665,0.5440865,0.090035446,-0.038083427,-0.458792,1.0522208,0.68790036,-0.37851936,-0.2699084,-0.5666934,-0.30368316,0.081181146,-0.43449372,-0.224169,0.16899224,-0.8937407,-0.14423154,0.13464566,0.43587285,0.0425846,-0.09405398,0.23194315,0.30411407,0.07766961,0.17051898,-0.66523796,-0.35125276,0.17456983,0.31169805,0.11913662,0.15965901,-0.54680634,0.38395083,-0.5531477,0.23221731,-0.22512718,0.093736194,-0.31407493,-0.4480446,0.114351295,0.03857726,0.3187328,-0.5034022,-0.49037132,-0.25885606,0.5838339,0.09751093,0.25525537,0.857827,-0.30037445,-0.009062187,-0.04294739,0.45526755,1.0653802,-0.10847103,-0.21021494,0.44880217,-0.53386486,-0.95419544,0.21367854,-0.22089201,0.26373273,-0.018708505,-0.46865904,-0.6049946,0.37904575,-0.07472196,-0.02360021,0.1968609,-0.6913677,-0.13108467,0.19390275,-0.29341707,-0.37330854,-0.23931436,0.17438616,0.5978313,-0.4044402,-0.22055167,0.12130969,0.20348185,-0.19859575,-0.4960863,-0.40977895,-0.39323863,0.29791394,0.09163916,-0.3903832,-0.05057416,-0.0045723156,-0.33861458,0.15292396,0.22243828,-0.31850997,0.19820362,-0.37494043,-0.027012007,0.9662413,-0.08267262,-0.1130626,-0.5988845,-0.6282594,-0.9818661,-0.41737863,0.41304275,0.14980368,-0.058559027,-0.6136546,-0.03921774,-0.012267495,0.016212143,-0.081865005,-0.45272705,0.45080414,0.064564764,0.43288994,0.123920895,-1.0721836,0.1564422,0.42492083,-0.16434726,-0.8517735,0.62946326,-0.4031699,0.89514154,0.07719541,0.06703095,0.24029565,-0.58110607,-0.048368953,-0.25279716,-0.2295198,-0.50308055,0.20695871,702 +959,0.30197522,-0.25191367,-0.7716528,-0.3399669,-0.49627656,-0.09998874,-0.17538978,0.38496152,0.637958,-0.32353842,0.04899876,0.00033923172,-0.08889404,0.30828235,-0.18496841,-0.81936496,-0.016067602,0.36296657,-0.56062126,0.49058333,-0.5430976,0.20751481,-0.13563491,0.50369364,-0.0030854074,0.1479495,-0.10616093,0.09456381,0.050189123,-0.08156771,0.15696537,0.22663817,-0.8370556,0.5008474,-0.1322789,-0.5273724,-0.031943943,-0.5906094,-0.19990772,-0.7979439,0.39242813,-0.7218807,0.6934426,0.17957076,-0.3530508,-0.05051395,0.30760106,0.31629837,-0.22040273,0.004296067,0.37661374,-0.32214448,-0.26551902,-0.21816443,-0.45219672,-0.49340937,-0.69130015,0.06129838,-0.72422355,-0.1174785,-0.06076907,0.35845363,-0.20829411,-0.17111653,-0.561325,0.63904816,-0.5370276,-0.026087213,0.1645361,-0.15434179,0.18958558,-0.60978264,-0.20242724,-0.22110444,0.11421481,-0.1637035,-0.57371706,0.29405618,0.4552582,0.52370745,0.16914049,-0.45129558,-0.42619792,-0.0011168827,0.009772995,0.35174504,-0.37682617,-0.37222525,-0.4210557,-0.018528372,0.4188131,0.32755154,0.18812178,-0.45177123,0.3670076,0.033660192,-0.2754308,0.95519584,0.5543827,-0.36901167,-0.409589,0.22428054,0.44162562,0.00013228437,-0.2293842,0.18115875,-0.027804457,-0.52906036,-0.36997145,0.3100166,-0.14410214,0.4533784,-0.23077251,-0.099333614,0.7533785,-0.29550695,-0.47257873,0.23746052,0.02126713,-0.07644995,-0.65299433,-0.34642488,0.39368123,-0.60661405,0.04037098,-0.31038463,0.69410634,0.037608758,-0.94195956,0.2512588,-0.8322472,0.14169346,-0.11109144,0.63390833,1.0802325,0.6223523,0.4312549,0.8181683,-0.34983495,0.15864195,-0.03916129,-0.2191236,0.31785765,-0.318101,0.15695773,-0.5339083,0.11989199,-0.31037328,-0.21468724,-0.04013833,0.5412081,-0.5256274,-0.2138543,0.21806067,0.66562265,-0.2719785,-0.29507133,0.96852785,1.3397053,1.2944183,0.23321773,1.5830636,0.27525538,-0.26717472,-0.087591596,-0.14510295,-0.7953241,0.31712687,0.26908728,-0.36239493,0.33721325,0.1307014,0.3382517,0.5727605,-0.4751566,-0.16093554,-0.08902209,0.47741076,-0.1467206,-0.15494694,-0.39526084,-0.32567614,0.25693065,0.16102491,-0.028161937,0.5142217,-0.31127957,0.2861761,0.16940276,0.7676414,0.027903723,0.063246846,-0.15446296,0.3791963,0.2323452,-0.20799126,0.08685504,0.20879102,0.10054686,-0.09426104,-0.6006253,-0.018428065,-0.46850708,-0.31899107,-0.28959042,-0.30463284,0.01526128,-0.46972978,-0.45314923,-0.45446855,-0.08793039,-0.308196,0.47643825,-2.124961,-0.38394,-0.04960873,0.2072003,0.05778149,-0.31713417,-0.102039605,-0.54958856,0.46997395,0.24076647,0.39787465,-0.633481,0.8320539,0.46694595,-0.83475894,-0.0045297146,-0.8380843,0.08425809,-0.2570578,0.40832475,0.047371443,-0.20133571,-0.3183162,0.033647414,0.6887014,-0.11467839,0.13612574,0.3271854,0.5829963,-0.253298,0.5198311,0.16771673,0.6897935,-0.344948,-0.44439992,0.24328652,-0.38931835,0.24445452,0.0072320374,-0.0020240925,0.6289095,-0.6236082,-1.0978184,-0.8259339,-0.37124664,0.9388365,-0.10220335,-0.32168543,0.10237749,-0.36946508,-0.43254957,-0.025815869,0.5738053,-0.009306387,0.026355483,-0.8064015,0.01643953,-0.06190494,0.30141824,-0.106946774,0.16611521,-0.5109392,0.82202506,-0.18585992,0.31426084,0.38521835,0.14234227,-0.66359,-0.27349588,0.14987503,1.1095276,0.45409644,0.02780475,-0.31720018,-0.2371645,-0.08061159,-0.11114779,0.120260864,0.67715406,0.5355644,-0.19751334,-0.0018139671,0.57752377,-0.2764211,0.10393767,-0.23531918,-0.39548674,-0.2635521,0.2283975,0.6512528,0.7247686,-0.24019493,0.2891529,-0.12412994,0.25874084,-0.09693031,-0.5334833,0.5238005,0.8840193,0.011831885,-0.35407466,1.0078386,0.54003614,-0.565766,0.64986396,-0.535719,-0.15986982,0.3710313,-0.11195285,-0.4593706,-0.29940608,-0.42809907,0.042248346,-0.9455294,0.39053753,-0.3996393,-0.68024766,-0.46596515,-0.27195895,-3.3893557,0.37499788,-0.1785111,0.25203708,-0.051719356,-0.27223408,0.2962099,-0.7664004,-0.88693994,0.14985922,0.24007192,0.5874414,-0.36143097,0.084137194,-0.1383975,-0.39381444,-0.25795567,0.32825726,0.22606836,0.25885934,-0.023238426,-0.45273498,0.22965866,-0.25661275,-0.55705905,-0.10474814,-0.84083426,-0.36600924,-0.112591386,-0.9677667,-0.43911093,0.7346187,-0.44322455,-0.271224,-0.39773157,0.122051425,0.007468454,0.491885,-0.15672724,0.4207854,0.28186715,-0.078392975,-0.29520938,-0.08540756,0.11488616,-0.20700814,0.34016943,0.39511976,-0.27619234,0.36309063,0.6555312,1.0214267,-0.009008977,1.0121582,0.449038,-0.069011666,0.38192835,-0.15999986,-0.31426647,-0.88782173,-0.44128543,-0.2693875,-0.6158133,-0.4063713,0.15475056,-0.29427373,-0.9718163,0.66049266,0.12030011,0.051688597,-0.04279665,0.40961125,0.23204142,-0.26245916,0.06382532,-0.3650343,-0.28651774,-0.4989727,-0.4790043,-0.7485114,-0.4973686,0.009229356,1.6198857,-0.1592413,0.08980239,0.33713248,-0.20744504,0.24293917,0.49064925,0.08573467,0.17687832,0.65233666,-0.0658056,-0.52209383,0.07969964,-0.09604757,-0.0055862884,-0.38371798,0.2721699,0.9398644,-0.68579733,0.8844421,0.45637482,0.25234395,-0.14346606,-0.7695068,-0.31271145,0.20880246,-0.22537754,0.85825175,0.43162063,-0.9437571,0.63308996,0.2879186,-0.30288482,-0.9639208,0.41772616,-0.12905839,0.09556231,-0.23016228,0.58634716,0.3308131,-0.0052972515,-0.15470733,0.61185646,-0.41201618,0.26613194,0.10684312,-0.10772998,0.13952875,-0.31285238,-0.34529456,-0.89682925,-0.13518466,-0.70793873,-0.3985054,-0.035193454,-0.19120635,0.07592037,0.47497046,0.20418476,0.46637785,-0.26896912,0.13405755,-0.2143826,-0.53713375,0.15885569,0.54981655,0.2891244,-0.49597692,0.6490817,0.20167242,0.03998554,-0.4739621,-0.029852184,0.505188,0.10227792,0.6250979,0.091595575,-0.17430222,0.20589656,0.7830115,0.10704086,0.43328476,0.090606146,-0.12486562,0.14677121,0.151338,0.46458083,-0.2660272,-0.41733292,0.2421784,-0.106936164,0.065694384,0.53375417,0.06956487,0.33936298,-0.13666874,-0.19746245,0.09701955,0.16615783,-0.10276642,-1.8558681,0.34049454,0.2871945,0.78788966,0.79426044,0.21719462,-0.013721363,0.6775961,-0.40556479,-0.14754535,0.52345204,0.13165893,-0.22808002,0.49211285,-0.709275,0.5134864,-0.28550565,0.08212829,0.0857887,0.15491003,0.4114416,1.0225555,-0.19265546,0.08393316,-0.11410386,-0.04722241,0.23565604,-0.30999726,0.103008695,-0.47628143,-0.4160516,1.098974,0.45945656,0.43488207,-0.39629936,-0.04398844,0.2565622,-0.17895374,0.14430048,-0.040181268,-0.32426608,-0.1713924,-0.6926279,0.028346745,0.818968,0.20331368,0.06659455,0.16155222,-0.35145906,0.36101276,-0.08701617,-0.027909702,0.06404252,-0.67612547,-0.20243311,-0.21966648,-0.33302557,0.5364672,-0.34202918,0.0798412,0.15234175,0.2391889,-0.2098925,0.2887949,0.255646,0.5727886,0.25603372,0.055284176,0.10268133,0.24676158,0.1074996,-0.32484514,0.14431392,-0.2846491,0.27153385,-0.6808453,0.6282723,-0.062245682,-0.5166963,-0.029255455,0.09211432,0.13899994,0.41076204,-0.2524355,-0.15294272,0.12418259,-0.06535515,-0.067647435,-0.32718402,-0.3319123,0.28537992,-0.19383463,-0.007279916,-0.22874023,-0.18946376,-0.144456,0.57674795,-0.06711598,0.021295788,0.35839912,0.16677016,-0.3448315,0.15281147,-0.10681477,0.58143574,-0.13879007,-0.19490248,-0.049464893,0.043298393,-0.2642637,0.29766658,-0.013816237,0.18207116,0.07208278,-0.3754654,0.85029644,0.17411469,1.6549412,0.10388,-0.6747177,0.10230322,0.5916188,-0.22820124,0.083650306,-0.28922126,1.000779,0.6622839,-0.26682016,-0.22239019,-0.82565445,-0.16289221,0.10582668,-0.25697327,-0.22095923,0.030553339,-0.936849,-0.17766242,0.31113583,0.23129264,0.09816575,0.0008853728,0.22136673,0.22520815,0.14060643,0.3336871,-0.67931914,0.0989221,0.37073898,0.55739784,0.077400275,0.11773383,-0.26423025,0.19458117,-0.8281395,0.3852855,-0.41606915,0.116290815,-0.31451437,-0.2720585,0.19284977,0.06496784,0.36878303,-0.067701034,-0.20050946,-0.1752368,0.693734,0.0009975217,0.2207792,0.88173676,-0.40104148,0.033788037,0.11356082,0.45159882,1.1848258,-0.21055375,-0.30991313,0.23618712,-0.32270855,-0.7032978,0.26253656,-0.7460573,-0.08416701,0.083109766,-0.3024933,-0.38586682,0.21889119,0.049701452,0.095478415,0.10152843,-0.60664177,0.16318236,0.40872926,-0.13832547,-0.12915792,-0.07507467,0.31531918,0.8697628,-0.38938782,-0.5900856,0.15725118,0.451552,-0.23296018,-0.687976,0.07887826,-0.55365527,0.53615457,-0.04416826,-0.53031784,0.15596214,0.14312787,-0.48594266,-0.0651455,0.6703616,-0.29696342,0.19648375,-0.46970704,-0.11498794,1.0947489,0.07794204,0.7424145,-0.42968836,-0.6627282,-0.91755575,0.057283618,-0.2158019,0.21745925,-0.17036682,-0.63278157,-0.16216572,-0.051729206,-0.3744114,0.35534838,-0.7052354,0.42633712,0.10199428,0.60911447,-0.11939969,-1.0388317,0.045461286,0.40056297,0.088466756,-0.41094944,0.53769433,-0.17443958,1.0677345,-0.019036181,0.046170615,-0.15791777,-0.6980589,0.53791046,-0.4705902,-0.06136867,-0.62691283,-0.19363976,720 +960,0.27539346,-0.4561863,-0.45330182,-0.14884257,-0.16706015,-0.06973816,-0.18449688,0.5960006,0.2587521,-0.23967405,-0.13144924,-0.30254447,0.07230399,0.40466443,-0.15762,-0.44509488,-0.19961096,0.1404946,-0.53303105,0.61442304,-0.27023786,-0.07678681,-0.3114488,0.44554988,0.32000914,0.3706536,-0.11867917,0.042778492,-0.11680731,-0.23229598,-0.20337147,0.1954491,-0.5436878,0.21498471,-0.09256583,-0.08478533,-0.08534882,-0.7025758,-0.6386589,-0.620017,0.2585139,-1.0049114,0.49889585,0.17246924,-0.1688518,0.1983541,0.2756035,0.24000931,-0.3167061,-0.13022117,0.29370585,-0.15220459,0.03606827,-0.3108283,-0.29304454,-0.40981427,-0.47691917,-0.21664204,-0.29484302,-0.42297745,-0.4217335,0.07782397,-0.30632532,-0.035000943,0.0050993618,0.6652882,-0.45333716,0.44541338,0.17275019,-0.17004639,0.21918206,-0.5618889,-0.18054676,-0.12785432,0.23818554,-0.14370638,-0.2980032,0.298431,0.1702013,0.09684773,-0.17916211,-0.0012919361,-0.29230368,-0.1979025,0.27100435,0.5528959,-0.15438543,-0.56203884,0.012419838,0.052586067,-0.22763854,0.27241853,0.14806989,-0.47922114,-0.11971796,0.07591825,-0.07891798,0.56762457,0.37848932,-0.023734044,-0.11097245,0.28679675,0.44605646,0.30482206,-0.26784006,-0.13984413,0.098575786,-0.53360516,-0.12430113,-0.01817726,-0.15530866,0.6080637,-0.10201896,0.18498144,0.6048305,-0.111393645,-0.21011992,0.097849004,0.05002167,-0.0570676,-0.3640916,-0.15943259,0.28607094,-0.2089122,0.27434787,0.004050396,0.6083143,0.25664586,-0.6517554,0.40366924,-0.61590636,0.23172288,-0.09693611,0.4479089,0.6940426,0.47774127,0.5184714,0.60114247,-0.31855345,0.24780248,0.109050184,-0.4107459,0.13471794,-0.28268525,0.010197,-0.6009707,-0.102706045,-0.15276664,-0.13401876,0.22167712,0.42961243,-0.43099403,-0.011708135,0.3378381,1.1541255,-0.19835873,0.044434786,0.73390573,1.0994763,0.79610306,-0.046625808,1.0208023,-0.011043307,-0.25238886,0.36063942,-0.046201706,-0.83789724,0.26443842,0.38909826,-0.14914638,0.13559856,0.20209788,0.06256037,0.35754213,-0.5427878,0.14469413,-0.08881989,0.04079517,0.35941574,-0.2817918,-0.42176282,-0.08878922,-0.24208283,-0.029247366,-0.017796336,0.09503224,-0.18681464,0.6549199,-0.009627765,1.9695302,0.15044892,0.041362904,0.040604834,0.6843958,0.120905355,-0.18288635,-0.0062907417,0.5056042,0.17141019,0.25468433,-0.44409475,0.28084376,-0.16522992,-0.41307995,-0.12547038,-0.44713247,-0.24269797,-0.06407429,-0.33442315,-0.25952175,-0.16023764,-0.1062422,0.4407756,-3.063423,-0.028852792,-0.11573476,0.42032477,-0.07198718,-0.26567715,0.05297455,-0.41042945,0.40950754,0.340488,0.5823907,-0.665752,0.25447312,0.43920222,-0.57268137,-0.22298121,-0.4942753,-0.06482217,0.06688089,0.5433514,-0.048417687,0.0101536065,0.18672985,0.2690228,0.41973498,0.17284259,0.2129322,0.41929254,0.50970566,-0.15997157,0.65957046,-0.17360134,0.389793,-0.18120338,-0.22845294,0.18733606,-0.31212586,0.3148156,-0.03990483,0.089077204,0.5978818,-0.44592163,-0.8517443,-0.60451883,-0.053669084,0.93580383,-0.1866724,-0.54906887,0.29214838,-0.6202811,-0.24664563,-0.18205261,0.6895518,0.022568054,0.07126364,-0.80147165,0.0032578816,-0.13693063,0.18866946,0.053074136,-0.25600785,-0.48657724,0.7933977,0.0025168548,0.56653255,0.3393028,-0.06236081,-0.4679063,-0.47718734,0.06614467,0.60266477,0.25627425,0.17218289,-0.19526888,-0.17352258,-0.28891438,-0.23117161,0.009692144,0.7107005,0.35600033,-0.17524387,0.20429382,0.33221424,-0.13005643,-0.14051731,-0.21543576,-0.22860573,-0.10775514,0.04648241,0.43687162,0.82989955,-0.1258186,0.49602917,0.013753536,0.3744066,0.06687112,-0.30861482,0.28233653,1.2694682,-0.09300206,-0.44546083,0.43043077,0.63443464,-0.38168794,0.35752735,-0.3624287,-0.06372475,0.5329241,-0.065432124,-0.7016559,0.36233762,-0.18108319,0.018782942,-0.6138289,0.1627111,-0.13436888,-0.7049518,-0.68373555,-0.2360621,-3.5365913,0.15597205,-0.2773968,-0.45555055,-0.09314311,-0.17840418,0.029363692,-0.62278616,-0.6114754,0.20306325,0.03299304,0.54596,-0.20712085,0.08304939,-0.23046924,-0.049787,-0.15545344,0.2641212,0.22948171,0.35867584,-0.19732514,-0.4974414,-0.36567804,0.009164878,-0.48661795,0.030568289,-0.70317554,-0.28526774,-0.05981586,-0.69406503,-0.17400867,0.6815899,-0.30259514,-0.106979206,-0.35057318,0.029364131,-0.13405873,0.16768862,0.24722219,0.17944895,-0.127266,-0.06297309,0.05763185,-0.23931265,0.22035833,-0.008035633,0.47367314,0.17680925,0.040987406,0.31352732,0.2720769,0.59644,-0.077600844,0.83643204,0.4513589,-0.10105768,0.23812047,-0.25459364,-0.2335098,-0.4613868,-0.27016836,0.16680239,-0.45700186,-0.530588,-0.07836618,-0.41240683,-0.6887203,0.45916808,0.09966564,0.048569392,0.17086549,0.076945215,0.5864032,-0.13601631,-0.08420097,0.022393221,-0.136272,-0.69889396,-0.18501228,-0.44625387,-0.5138129,0.16764016,0.7518324,-0.2126974,0.07251482,0.21798147,-0.4923108,-0.1008009,0.42306277,-0.17788845,0.2775102,0.411506,-0.08076023,-0.61125046,0.39414436,-0.18454951,-0.23709507,-0.7111814,0.40140608,0.49824288,-0.5902545,0.8971649,0.20663266,0.033265408,-0.39848632,-0.31664917,-0.3357079,-0.40764225,-0.068596594,0.32953623,0.2447992,-0.7333699,0.22977538,0.26212072,-0.15112498,-0.5841522,0.56169087,-0.2333632,-0.37744448,0.085479945,0.19802247,-0.0034441839,-0.013200497,-0.15129782,0.39934948,-0.24235953,0.20496124,0.15509552,-0.0036890453,0.11607237,-0.08312083,-0.12592334,-0.72106194,0.112968184,-0.3639574,-0.40038937,0.44509342,0.058667313,0.13701287,0.108794734,0.043710556,0.15717982,-0.09339286,0.08701248,-0.13127194,-0.34682667,0.23379742,0.4501814,0.62313014,-0.62987506,0.6211132,0.06048986,-0.10137477,0.3091758,0.13295569,0.24266766,0.0908366,0.48943225,0.22574963,-0.14628054,0.12628435,0.86554545,0.23953395,0.58346266,0.1000717,0.13797973,0.2571866,-0.03474922,0.16020466,-0.035147797,-0.7326124,0.2914252,-0.4743837,0.19636863,0.34501755,0.20008378,0.25560215,-0.11963945,-0.4463441,-0.024398988,0.39720333,0.2910663,-1.4095963,0.35166097,0.30058756,0.9113355,0.3244828,0.10212958,-0.06367483,0.9135658,0.062147032,0.0034297137,0.42489377,0.099648066,-0.49613392,0.5041617,-0.70688087,0.44430408,0.092141025,-0.07845351,0.058130346,0.025150197,0.36118534,0.6463223,-0.23417763,-0.16825952,0.10491243,-0.2505925,0.14419764,-0.55159396,0.12131465,-0.38262376,-0.32513416,0.52913,0.72163016,0.32290822,-0.1643727,0.083262414,0.0101001095,-0.20163964,0.080137156,0.1302236,-0.14632693,-0.057452705,-1.0263054,-0.010628533,0.5027845,-0.3106232,0.2284564,-0.0834457,-0.056489263,0.4242486,-0.18872947,-0.18788747,-0.11893411,-0.68711096,0.1676309,-0.25305614,-0.6423064,0.5614813,-0.008776524,0.26192567,0.18727528,0.039694645,-0.19194533,0.68549234,-0.04389054,1.1231312,-0.0037276202,-0.076859504,-0.4473531,-0.024023306,0.18193808,-0.11698601,-0.001011946,-0.47824895,-0.0034883455,-0.549489,0.44035938,0.07438037,-0.5299524,-0.011226719,-0.07543453,0.08959249,0.61071736,-0.04375063,-0.26506707,-0.07478496,-0.17864864,-0.35847858,-0.17328966,0.00093961303,0.38513353,0.23404837,0.14760302,-0.11038776,-0.029597439,-0.20834993,0.4665598,-0.11465094,0.5928771,0.30867922,0.18191256,-0.097861536,-0.2551416,0.06201562,0.67118114,-0.03757452,-0.096421555,-0.07273483,-0.54442924,-0.42405102,0.1565432,-0.036555465,0.6130865,0.25235584,-0.20011388,0.42860925,-0.2315559,1.182856,0.018618481,-0.43783024,0.29971,0.51068336,0.12702155,-0.12403024,-0.23098755,0.76794434,0.5785676,0.04746087,-0.028736364,-0.36835384,0.01547589,0.1544875,-0.08808224,-0.16224724,0.014115805,-0.6461018,0.03322042,0.22197485,0.22573766,0.49294835,-0.18390408,0.114759095,0.2218109,-0.16097409,0.0074173375,-0.31660262,-0.19221759,0.30402577,0.028362973,-0.0013841038,-0.049452838,-0.5788597,0.42562434,-0.17527896,0.060170542,-0.47282392,0.19403262,-0.34348595,-0.099574976,0.1672489,-0.21083091,0.3905614,-0.28976718,-0.10520198,-0.36602834,0.54459405,0.23330455,0.10516913,0.5396087,-0.17229287,0.16141377,0.0069805044,0.49969718,0.76748884,-0.38951454,-0.087120675,0.33215868,-0.51601136,-0.4823968,0.323827,-0.3039281,0.16558112,0.25630826,0.04914184,-0.61310804,0.1885088,0.019531988,0.031717952,-0.009695023,-0.7183806,-0.17128742,0.20058307,-0.24520636,-0.14841263,-0.39473674,0.023967884,0.56052107,-0.1972095,-0.19020882,0.11452599,0.06512852,-0.09602538,-0.3371266,0.04035296,-0.27972502,0.28694776,-0.1580513,-0.38731134,-0.26478308,-0.12773667,-0.32515806,0.31556016,-0.03319572,-0.35185674,0.19279355,-0.10670545,-0.42373314,1.0442277,-0.3731515,0.1091116,-0.5375626,-0.5086355,-0.6704444,-0.26018998,0.28618166,-0.07218574,-0.021686923,-0.5685879,-0.11461652,-0.044769134,-0.2175578,-0.18772869,-0.42934468,0.46461618,-0.020700349,0.59486747,-0.2352729,-0.8785983,0.30396658,0.16325511,-0.072520226,-0.84971434,0.66678584,-0.16120078,0.7024582,-0.030334987,0.2671475,0.3215336,-0.33198872,-0.303134,-0.21805133,-0.30523193,-0.56994116,0.15815337,785 +961,0.40925896,-0.3596358,-0.36296168,-0.21710919,-0.07743738,-0.05560792,0.047086123,0.78767085,0.14591989,-0.47957724,-0.18927383,-0.21026196,0.085715815,0.39282465,-0.03487983,-0.34573454,-0.059230093,0.19670753,-0.46529454,0.48807847,-0.3668049,0.069022425,-0.1253952,0.3330743,0.42768183,0.32523778,-0.09189129,-0.11557546,-0.10957673,0.025926612,-0.058650993,0.024676431,-0.45253074,0.23906294,-0.08454831,-0.26018724,-0.14279205,-0.65682733,-0.4308799,-0.6654197,0.37667224,-0.6567074,0.3641796,0.09082666,-0.2713687,0.07950766,0.08807168,0.5812504,-0.4989937,-0.11908495,0.25057176,0.17172508,0.025914095,-0.002506806,0.03686439,-0.34007034,-0.51643807,-0.106553465,-0.23188914,-0.4076112,-0.21277636,0.09272299,-0.28050113,-0.082376696,-0.0768931,0.67950594,-0.49122617,-0.048755523,0.11559809,-0.039178815,0.22520648,-0.69322217,-0.2609198,-0.124637194,0.34027353,-0.13274048,-0.27158353,0.32169774,0.28204226,0.24197458,-0.046763264,0.00027799743,-0.16271913,0.043854233,0.17718744,0.40576676,-0.19254154,-0.47431234,-0.09651532,0.10653882,-0.084825106,0.19641589,0.31264699,-0.38985088,-0.09466913,0.17132764,-0.2932855,0.34282914,0.4384712,-0.2798095,-0.12737566,0.42486933,0.6570268,0.24532509,-0.14899588,-0.046304047,0.07908693,-0.45686215,-0.1685664,0.16050215,-0.28127706,0.6116645,-0.055862818,0.2162219,0.64174503,-0.109453656,-0.05746044,0.00648427,0.15983368,-0.049747575,-0.441618,-0.4887214,0.27714568,-0.41440964,0.13266255,-0.18949576,0.72510266,0.26740715,-0.6749704,0.3911184,-0.54539585,0.17337786,-0.25578788,0.35531387,0.84508014,0.28260583,0.30687335,0.7292711,-0.39671442,0.08200597,0.0758815,-0.27751157,0.19981839,-0.30521673,0.034464303,-0.515653,-0.08429513,0.028564246,-0.14637579,0.026199596,0.32414246,-0.6480296,-0.12299815,0.2429563,0.84789586,-0.24145178,0.017287552,0.6517551,1.1075892,1.0702069,0.15418006,1.0342726,0.09757538,-0.3855589,0.54321146,-0.2777507,-0.73359627,0.27426785,0.47390655,0.14064218,-0.066668205,0.14551352,-0.033741083,0.6194589,-0.5006831,0.35244912,-0.2022019,0.037515864,0.11876462,-0.1961647,-0.51722276,-0.23909189,-0.1977017,0.03817685,-0.29960775,0.18038821,-0.23546213,0.1422822,-0.0641084,1.8044881,-0.0032360987,-0.001200527,0.08680217,0.5413776,0.0300819,-0.38643247,-0.11729198,0.41020137,0.5646387,0.19405127,-0.670862,0.15983619,-0.23944965,-0.3564383,-0.004651254,-0.4366783,-0.12671314,0.054448996,-0.4991159,-0.19743074,-0.15824498,-0.18499255,0.40937254,-2.8720057,-0.18349561,-0.11934963,0.495182,-0.24919368,-0.2911829,0.060419485,-0.45070457,0.3859414,0.4268286,0.5667247,-0.6145398,0.37027967,0.353799,-0.6825088,0.08149632,-0.7026978,-0.16848403,-0.0388022,0.27097782,-0.053137876,0.011530388,0.18077427,0.08293697,0.46654025,0.1504006,0.21275555,0.34491614,0.3145283,0.022847308,0.7199884,-0.14634784,0.5364732,-0.36110318,-0.11540571,0.054245222,-0.42609873,0.15224172,-0.020215876,0.098221585,0.50658506,-0.5970651,-0.97514397,-0.6919048,-0.2550616,1.1391095,-0.28834975,-0.26516208,0.46137226,-0.6162527,-0.21363464,-0.30860713,0.5986069,0.11343015,-0.149626,-0.8043953,0.024659062,-0.04405553,-0.009316165,-0.021818053,-0.2512253,-0.45403764,0.751824,-0.107616805,0.625782,0.41688225,0.06450128,-0.15064892,-0.31185713,-0.044823233,0.7825657,0.32439283,0.12508993,-0.07366849,-0.09643814,-0.6391319,-0.06956963,0.18640018,0.5089295,0.7040322,-0.10016637,0.16738392,0.36708143,-0.03816454,0.034536038,-0.051822368,-0.40644142,-0.21488333,-0.07125151,0.46331128,0.59315264,-0.126216,0.47774938,-0.060429875,0.16710071,-0.101109646,-0.3421655,0.43118417,1.0376555,-0.14296308,-0.31974533,0.41896954,0.5021795,-0.22176765,0.35688207,-0.37018108,-0.0787437,0.49164695,-0.1636454,-0.44964877,0.10447263,-0.31128195,0.099317595,-0.8363174,0.37080333,-0.48326775,-0.558662,-0.5977034,-0.11153872,-3.3031816,0.2667628,-0.30071643,-0.29008958,-0.046239268,-0.15330333,0.0048431675,-0.7215426,-0.5700004,0.24806218,0.010635897,0.81180954,-0.07929086,-0.049133096,-0.22478175,-0.32216975,-0.3254224,0.039759938,-0.007433179,0.36009708,0.04397699,-0.4908951,-0.03862941,-0.022274602,-0.423166,0.082566544,-0.6553138,-0.3995102,-0.16695581,-0.65773726,-0.40372676,0.8122063,-0.23666936,0.07529188,0.015644394,-0.028637296,-0.10623955,0.18311238,0.08105301,0.25551656,0.000741899,-0.16341805,-0.048687577,-0.23324715,0.08284599,0.1631558,0.53531134,0.044806864,-0.06256798,0.23034811,0.60101527,0.6084567,-0.11326828,0.8189522,0.70569575,-0.23812899,0.19136597,-0.3345261,-0.14952964,-0.49156895,-0.2861643,0.029321779,-0.39700687,-0.60664624,0.0663275,-0.35246745,-0.6165749,0.33026057,0.035109617,0.2872815,0.2161059,0.1140987,0.5286394,-0.024924356,-0.05905455,-0.103410155,-0.032239433,-0.70262206,-0.0298626,-0.65634686,-0.42925748,0.41072732,0.97977865,-0.26262596,0.037114117,0.11181747,-0.40126038,0.14628512,0.19505788,-0.23684727,0.22482486,0.26059264,-0.21228161,-0.6170001,0.32831457,0.052003503,-0.17521253,-0.5339539,0.35665724,0.47168735,-0.6739754,0.83194715,0.20723276,-0.17493473,-0.3832712,-0.4508481,-0.32581395,-0.03867539,-0.19508506,0.3101707,0.04936862,-0.7725325,0.21154809,0.41752216,-0.21585317,-0.768791,0.71050644,-0.24170847,-0.17497127,-0.07781992,0.2528078,0.21548519,0.004796185,-0.18201596,0.3759529,-0.5468185,0.18144941,0.19004427,-0.06658161,0.20086451,-0.11180303,0.04289896,-0.7809196,0.085608125,-0.60255694,-0.10812009,0.5014189,0.12720369,0.29003766,0.13233326,0.36991775,0.29203948,-0.10039141,0.13828681,0.03393332,-0.35719907,0.36886653,0.40419218,0.38625678,-0.54382885,0.46764895,0.07682684,0.0064988793,-0.05284109,0.12726732,0.22815484,0.22556166,0.45621052,-0.13893138,-0.36477518,0.20753254,0.7738289,0.2570694,0.51727194,0.119116284,0.016360663,0.046456132,0.077026434,0.18017873,0.046385504,-0.6761072,0.20299004,-0.08389024,0.2035879,0.36892632,0.1226258,0.15835428,-0.16096155,-0.3722103,-0.04812801,0.41456458,-0.04039849,-1.2185284,0.5890812,0.18134119,0.91110283,0.62456137,-0.025309004,-0.20748848,0.62716407,-0.09577816,0.1906517,0.33573493,-0.13753293,-0.64828247,0.6244643,-0.8036129,0.54392403,0.036687966,-0.02502525,-0.06334919,-0.08999106,0.47901887,0.5195272,-0.16906375,-0.04204187,-0.039383825,-0.30875632,0.24461631,-0.49398568,0.17534159,-0.74840087,-0.2268897,0.56695,0.52338237,0.2175991,-0.120588474,0.06905582,0.054167926,-0.28884643,0.25157693,0.08588195,-0.056024157,0.17524906,-0.9323422,-0.19896998,0.3808854,-0.38394013,0.2611368,0.037375845,-0.17568572,0.29566202,-0.118747585,0.027150141,0.013623354,-0.6874484,0.11958747,-0.3094811,-0.2891967,0.45912826,0.070617676,0.3552662,0.23387045,0.11849663,-0.1743984,0.49570704,-0.1161895,0.8348528,-0.22665697,-0.22666143,-0.5007894,0.087247066,0.12308073,-0.10358491,0.085219555,-0.4614604,-0.07448129,-0.5886082,0.58081776,0.27849498,-0.2764303,0.024110902,-0.08527703,0.05035808,0.6107819,-0.16303845,-0.023805825,-0.2221633,-0.19433628,-0.19494504,-0.27850455,0.03539867,0.21655677,0.17683712,0.3295442,-0.09527891,-0.11647168,-0.102813356,0.4704235,-0.034666196,0.4697933,0.27563816,0.09877778,-0.22234,-0.2538084,0.23794986,0.3414149,0.12632619,-0.22512193,-0.26190996,-0.43087605,-0.46929252,0.03447238,-0.13850969,0.65927494,0.014375668,-0.15947038,0.57351816,-0.20610029,1.253564,-0.011652226,-0.38898277,0.07594523,0.5966389,0.011354823,-0.17226419,-0.19693547,0.8209879,0.6201184,-0.037348274,-0.052934643,-0.39835688,-0.18064035,0.28169423,-0.11903457,-0.20811372,0.11603583,-0.63021857,-0.14105925,0.1646158,0.27645424,0.4771206,-0.0804833,0.14964396,0.39242518,-0.12386691,0.08665859,-0.36300376,-0.3624047,0.18407798,0.18314494,0.07210091,0.085808426,-0.52933127,0.4002013,-0.5248708,0.24600625,-0.117035195,0.14778525,-0.18935484,-0.35347077,0.1736895,0.06755197,0.45935294,-0.1636114,-0.31417906,-0.23458925,0.5830484,0.15968798,0.18870729,0.6545878,-0.19674753,-0.027701521,0.08228392,0.4229863,0.8567908,-0.13381633,-0.2523534,0.25413302,-0.41594782,-0.7773264,0.36798888,-0.3421118,0.28228265,0.1895882,-0.07261357,-0.65363127,0.17237239,0.2568242,-0.1972966,0.05970477,-0.71657795,-0.3782326,0.24602894,-0.25125104,-0.15664607,-0.47079408,0.17641874,0.6269289,-0.4121953,-0.24356928,-0.041027952,0.17115332,-0.085371345,-0.43280593,-0.03835496,-0.5812512,0.21977884,-0.08650672,-0.4447983,-0.21718301,-0.036342572,-0.30669242,0.3250233,-0.15916078,-0.37932244,0.15907548,-0.24038024,-0.29868576,0.9631619,-0.102042526,0.22974926,-0.28322393,-0.4022962,-0.6851408,-0.42453936,0.47385588,-0.02528675,-0.07463903,-0.682379,0.09284496,0.037420217,-0.039247002,-0.20825343,-0.412335,0.5421753,0.111682154,0.35451138,0.033607688,-0.72868866,0.2724475,0.13907632,0.009553715,-0.6969734,0.49182975,-0.15068026,0.92123795,0.06124818,0.19554447,-0.009832145,-0.34948504,-0.19172621,-0.25043735,-0.32892677,-0.45158932,-0.016711874,819 +962,0.48022735,-0.31263334,-0.54866743,-0.11054576,-0.29562524,-0.08888834,-0.2365637,0.85166794,0.14825796,-0.5868873,-0.28402153,-0.1671702,-0.084020965,0.5250971,-0.52083135,-0.58488506,-0.0019068365,0.041767165,-0.35446164,0.5185465,-0.40790513,0.2287054,0.007033412,0.45605373,0.30158323,0.22079648,0.11791213,0.03397033,-0.18278939,-0.32247025,0.2396,0.07719488,-0.8301693,0.17008245,-0.31182313,-0.50811094,-0.04557453,-0.6743846,-0.42728645,-0.9101433,0.3459568,-0.8984023,0.5571575,-0.1115288,-0.32201177,0.008850721,0.20679626,0.45329267,0.061110735,-0.116664045,0.22494811,0.02683202,-0.0823451,0.08202822,-0.048964415,-0.45288622,-0.79237866,0.051602397,-0.43276092,-0.14072388,-0.21658078,0.2554072,-0.44173527,0.19918485,0.055725466,0.45940265,-0.4936529,-0.17213295,0.16656847,-0.013367349,0.27312472,-0.6580462,-0.17362756,-0.14528352,0.16154648,-0.21105026,-0.11531108,0.39992416,0.24671982,0.4767167,0.022434901,-0.21237785,-0.29318377,0.014647088,0.1465273,0.55731314,-0.2074173,-0.6133932,-0.11721497,-0.012988105,0.38915253,0.07113735,0.10884946,-0.107007675,-0.08633122,0.21225996,-0.3819374,0.5171906,0.53633577,-0.20440817,-0.10306161,0.23516545,0.6330968,0.40943357,-0.117097385,0.04824965,0.07835605,-0.6048666,-0.24593778,-0.12767865,-0.2550484,0.6912592,-0.20234539,0.3708272,0.67937756,-0.348675,0.09928929,0.27349266,-0.021502353,-0.24964935,-0.13196383,-0.29763815,0.21017376,-0.47333553,0.17661957,-0.2898696,0.7778569,0.18949333,-0.74207854,0.32722485,-0.61478704,0.05290284,-0.06711821,0.45297033,0.68607295,0.48247325,0.49259022,0.6575905,-0.20145911,0.007070704,0.0028873777,-0.3794769,0.30411524,-0.3113361,0.06633207,-0.38235903,-0.13405748,0.021500498,-0.14835088,-0.16854435,0.4912342,-0.5985567,-0.052130222,0.0063228826,0.8378229,-0.2660379,-0.057373825,0.8324044,1.044904,1.0724494,0.20300585,1.1149158,0.006578673,-0.17613684,0.2971159,-0.01256823,-0.8428005,0.44709107,0.4639083,-0.36365232,0.4113696,0.08667548,-0.0017905235,0.54180604,-0.54399276,0.042730335,-0.034364667,0.36827695,0.19267386,-0.3266016,-0.41067058,-0.19478382,0.06900692,0.12256992,-0.06496065,0.3408439,-0.04349978,0.4219685,0.15853293,1.4262925,0.007191409,0.05651979,0.05369158,0.51618284,0.021056293,-0.090486504,-0.09966745,-0.08824479,0.17768297,0.27775645,-0.51701415,0.115429334,-0.19535437,-0.56711227,-0.1287808,-0.29466966,-0.32138354,-0.29956883,-0.48844728,-0.111759044,-0.22667494,-0.12649404,0.25535372,-2.4716506,-0.23668355,-0.17603232,0.34268335,-0.27238283,-0.52767235,0.04247974,-0.61673784,0.51105314,0.3770155,0.5422442,-0.72832054,0.5519268,0.5040461,-0.5751546,0.04797152,-0.5724337,-0.22122802,0.046027098,0.39905217,0.17262843,-0.09799621,0.09371207,0.30901954,0.37678546,0.0009663213,0.14715762,0.08737033,0.48921144,-0.1811118,0.6037001,-0.22195616,0.4235213,-0.36119336,-0.12817231,0.46601486,-0.5814922,0.2622596,-0.17759424,0.15037583,0.3890855,-0.53027743,-1.0137502,-0.741752,-0.4176223,1.2415274,-0.043339897,-0.32667196,0.26840627,-0.3869935,-0.28248042,-0.17888665,0.38284466,-0.172847,0.101838425,-0.9531605,-0.0829235,-0.2925324,0.036489256,0.07570886,0.015774649,-0.4892873,0.7612177,-0.10621676,0.291467,0.3046735,0.05853523,-0.3771289,-0.50794584,0.072990365,0.8992803,0.5474668,0.24700724,-0.33374724,-0.13310987,-0.5755705,-0.05203197,-0.06395134,0.62465733,0.79507464,-0.095546246,0.038022865,0.09492696,-0.056974605,0.08072502,-0.18302688,-0.44014457,-0.094434716,-0.021805264,0.733477,0.857671,-0.34961888,0.33046433,-0.16412543,0.3652655,-0.12408176,-0.36262766,0.45752338,0.69934386,-0.047541857,-0.20331854,0.6914456,0.6412485,-0.33790362,0.5215748,-0.52656764,-0.5105402,0.3948512,0.027210461,-0.54062533,0.11058534,-0.38213474,0.21985413,-1.0521455,0.45868674,-0.537208,-0.31670582,-0.68818456,-0.18258025,-3.4017432,0.14869978,0.025322147,-0.35838196,-0.15391995,-0.15106788,0.27874932,-0.7795066,-1.0677778,0.14909893,-0.112946436,0.72524,-0.090146,0.12066839,-0.16086307,-0.37211597,-0.30578187,0.21951832,0.32636267,0.35807124,0.15829307,-0.48789856,-0.24345103,-0.33772948,-0.38141146,0.14737685,-0.7137277,-0.887122,-0.1755169,-0.5056981,-0.19174132,0.77580625,-0.16723245,-0.11350536,-0.09829421,-0.07240353,-0.22006096,0.48802623,0.18146177,-0.011251523,0.023252875,-0.11342957,0.28571314,-0.28439558,0.3583029,0.1483087,0.6341538,0.5090411,-0.14842747,0.4914139,0.7994527,0.8402611,0.037992314,1.0349143,0.28584257,-0.0026184672,0.16928965,-0.2547715,-0.39376107,-0.46966216,-0.14167285,0.035745677,-0.36281037,-0.2315581,0.06254331,-0.38546208,-0.83097875,0.62452227,-0.10242358,0.020326294,-0.016509715,-0.10122204,0.26807415,-0.13931064,-0.09565589,0.04623777,-0.022715092,-0.6682154,-0.34577033,-0.6892689,-0.59070885,-0.16222343,1.011674,-0.023020048,-0.026465328,0.043796904,-0.16389467,0.097348996,-0.0015505444,-0.086073324,-0.13689603,0.36760533,0.04399494,-0.8336277,0.47247553,-0.14409173,-0.07197959,-0.6087823,0.07127935,0.6337502,-0.63190055,0.33022618,0.48702306,0.14573711,0.06021334,-0.49790394,-0.024623942,-0.082417935,-0.1591095,0.34926635,0.25248754,-0.6498484,0.37933147,0.3269943,-0.35613474,-0.7063455,0.6548754,0.016794968,0.01075995,-0.20749567,0.32768533,0.22187072,0.10348234,-0.23106419,0.38201046,-0.40654027,0.22602268,0.24085855,0.02607047,0.44711658,-0.05166957,-0.09697118,-0.8691547,0.0077374172,-0.49219358,-0.34460914,0.26915744,-0.054821517,0.028648783,0.12100666,0.48591903,0.22537242,-0.3813763,0.0054172617,-0.0327767,-0.36099693,0.4607667,0.6161956,0.73080534,-0.494175,0.5622587,0.17305389,0.17506018,0.16728811,-0.11648657,0.47696722,0.031647217,0.32290268,0.3740781,-0.15305905,-0.016114695,1.0106711,0.22286168,0.591922,0.1139739,-0.12648441,0.16549875,0.071158975,0.21423556,0.059116866,-0.8341865,0.073166534,-0.050286043,0.009235361,0.6273202,-0.022502786,0.2264134,-0.046579596,-0.34131253,0.008908767,0.34678182,-0.092026025,-1.8642613,0.49274436,0.18192159,0.71207947,0.5888495,-0.078343265,0.3478452,0.7064827,-0.054468013,0.08366073,0.5440503,0.2013853,-0.64766926,0.5916876,-0.67667025,0.5338116,-0.018120164,0.013983196,-0.13100189,-0.04246809,0.47919732,0.70721763,-0.11960518,0.13078426,0.025824076,-0.34760717,0.07398335,-0.6040151,0.01661882,-0.37443352,-0.05458168,0.78215957,0.70105726,0.22862796,-0.116813205,0.08174289,0.041952875,-0.056646656,0.3075455,-0.1120928,0.011197939,-0.12398834,-0.73584646,-0.23254232,0.6803563,0.05009762,0.27767083,-0.13455433,-0.23079419,0.20363578,-0.042445336,-0.2253261,-0.054768242,-0.86598724,0.103212506,-0.51482236,-0.54726166,0.34425414,0.05962579,0.25039834,0.23290285,0.14586806,-0.4068093,0.3068841,-0.013762658,0.59357375,-0.10457024,-0.26356313,-0.17002493,0.17049727,0.2652886,-0.37274057,-0.15948184,-0.2669432,0.13461713,-0.16914037,0.48438227,-0.1362866,-0.43467614,0.039806113,-0.08946225,0.027106266,0.42916143,-0.22483067,-0.101642445,0.047128532,-0.016962625,0.012791357,-0.27023175,-0.12691565,0.25080332,0.23731782,-0.19300622,-0.112468,-0.18140258,-0.10599586,0.61749315,0.008424564,0.4347349,0.73850024,0.14243874,-0.65587586,-0.27230543,0.072126344,0.76283973,-0.05413536,-0.22328566,-0.58474904,-0.38722897,-0.28898457,0.40454915,-0.23275295,0.36798537,0.24494332,-0.5143575,0.5839758,0.19771658,1.3366737,0.1285738,-0.40393475,0.18425259,0.40639532,0.052796874,-0.16111471,-0.52794915,1.0010754,0.40464133,-0.42485774,-0.17177881,-0.5873381,-0.009551704,0.04070451,-0.20151792,-0.26555943,-0.03261992,-0.7433653,-0.20574483,0.35521373,0.3800526,0.032690037,-0.22082004,0.043210283,0.29645598,-0.022763748,0.5179821,-0.49355382,-0.23954368,0.4267494,0.26749623,-0.035122532,-0.04332865,-0.52076703,0.31548175,-0.5196984,0.043781463,-0.47977683,0.17494689,-0.2821431,-0.51899874,0.23736173,0.022929348,0.50024104,-0.15822841,-0.461998,-0.23656473,0.46814057,0.17597394,0.12468717,0.52015877,-0.14808689,0.028881943,-0.044310387,0.61538815,1.0702409,-0.20333542,0.21532327,0.2165688,-0.34187528,-0.49305093,0.2142847,-0.40008155,0.37326643,-0.09758219,-0.20997071,-0.8864237,0.17761415,0.2138218,-0.032722153,-0.07429708,-0.5295425,-0.40808746,0.34903497,-0.4150754,-0.32832766,-0.42954415,-0.032175876,0.68297505,-0.39097396,-0.18319511,0.015031121,0.32261264,-0.0990096,-0.405999,-0.2638037,-0.18166198,0.31101063,-0.042240344,-0.42500117,-0.102152914,-0.0042722225,-0.4253437,0.20991054,0.21654326,-0.47112954,0.06951893,-0.21732527,0.05396495,1.0339127,-0.116028816,0.24171066,-0.49602348,-0.41697234,-0.9055389,-0.28790405,0.383315,0.21038762,-0.07130699,-0.57606626,-0.13851187,-0.063190244,-0.17310056,-0.1081877,-0.46190417,0.4397127,0.113995545,0.66537774,0.03142288,-0.65333617,0.05438998,0.22687839,0.021630807,-0.63079983,0.6380597,-0.09510097,0.88366216,0.08668525,0.17733736,0.022073628,-0.47531813,0.0045303325,-0.09973383,-0.08703295,-0.7388035,0.3436048,835 +963,0.63242704,-0.31933212,-0.3014843,-0.06439713,-0.1270359,0.09157341,-0.35944468,0.44814098,0.11112494,-0.5848563,-0.244626,-0.03168893,-0.12161258,0.49200583,-0.28788283,-0.6881945,0.112648614,-0.010997582,-0.4647871,0.9576143,-0.4485136,0.35268462,-0.10855926,0.60163444,0.11069921,0.281367,0.35306504,0.30597395,-0.15130669,-0.34249535,0.14216965,-0.049881045,-0.4698185,0.38139632,-0.072929315,-0.3269978,-0.07395074,-0.20975652,-0.16397682,-0.96222585,0.49876165,-0.9826601,0.512706,-0.25886595,-0.48458382,0.09056044,0.27373272,0.03723284,-0.34451574,-0.07491277,-0.14774552,-0.17970915,-0.07621761,-0.62564754,-0.064142235,-0.3416403,-0.4688973,-0.0023587488,-0.37481558,-0.25504282,-0.17734517,0.2674903,-0.42010596,0.009670761,0.07053102,0.6984761,-0.44170657,0.13180926,0.0475814,-0.32397294,0.15169714,-0.8018913,-0.34396446,-0.12461361,0.18081836,0.15688743,-0.3263754,0.38215914,0.09677363,0.275749,-0.19201349,-0.049503747,-0.09291548,-0.2740038,0.10385167,0.5261581,-0.333875,-0.6730244,-0.20117775,-0.37614822,0.32803583,0.14460514,0.3336318,-0.189823,0.051742744,-0.15507421,-0.33925423,0.36904222,0.6480765,-0.2646353,0.06574325,0.069136195,0.5111892,0.012588772,-0.3563666,0.01394646,-0.09472249,-0.45599157,-0.16186684,-0.10812116,0.10116451,0.66356045,-0.09629475,0.41326064,0.42747784,-0.3596944,0.0035652085,0.21701545,0.06798846,-0.049550727,-0.17561568,-0.31819597,0.31184375,-0.28574657,-0.071066685,-0.6594792,0.6070335,0.16334023,-0.5078137,0.40509546,-0.36023548,0.076009005,0.042730514,0.5805425,0.67075276,0.7000062,0.18782906,0.58804643,-0.3186131,-0.096545175,-0.03685471,0.10518145,-0.099030845,-0.27352664,0.1268787,-0.36086175,0.2668311,0.12534261,-0.004057288,0.06855574,0.55157846,-0.49394616,-0.15820137,-0.12605686,0.75110173,-0.31690085,0.30036175,1.0871131,1.2273148,0.90044236,0.03979883,1.2882832,0.31410515,-0.09605206,-0.15224975,0.1907258,-0.589811,0.17527503,0.43710604,0.30424857,0.31976035,0.010273408,-0.16386431,0.4631662,-0.41990444,-0.24849115,0.05400635,0.72036785,0.2920831,-0.17288722,-0.46678674,0.14871262,0.2999014,-0.09536708,0.18023546,0.45110244,-0.24125227,0.6859157,0.13834035,1.2641598,0.03129165,0.042287983,0.21215329,0.55055636,0.20371984,-0.15673643,0.33389306,0.21746884,0.2583049,-0.011241588,-0.45649108,0.19888383,-0.1293651,-0.73985654,-0.13470712,-0.32525155,-0.1703148,-0.19302759,-0.24373291,-0.4048569,-0.044768218,-0.027466005,0.0673312,-2.6040037,-0.2701957,-0.22771153,0.41882184,-0.19760089,-0.25606024,0.012507211,-0.34500572,0.6859295,0.4459872,0.39357397,-0.59828556,0.18294168,0.6104998,-0.4749876,-0.039200414,-0.606353,-0.010663307,-0.084367655,0.6726934,0.007217212,-0.27385294,0.035208117,0.19245663,0.46171874,0.015594837,0.095395856,0.23274404,0.304486,-0.22943777,0.19020139,-0.077381164,0.4655277,-0.47704965,-0.1272759,0.35890272,-0.63034827,-0.06267701,-0.11758518,0.15200777,0.40771905,-0.5487632,-0.5997263,-0.8220469,-0.0014014569,1.2400597,-0.036263093,-0.98160225,0.25676474,-0.35524833,-0.38644293,-0.1683328,0.5386638,-0.27818838,0.041468333,-0.6201948,0.058485433,-0.23016073,0.37931922,-0.07014542,-0.03488528,-0.5385528,0.7901058,-0.029707193,0.3573967,0.24635263,0.24736066,-0.64245504,-0.48463285,0.13425301,0.8337511,0.565324,0.14556716,-0.11429725,-0.13651562,-0.23957224,-0.2941562,0.022761406,0.98721695,0.6041527,0.07667872,0.14324746,0.24481899,-0.36236498,0.07250888,-0.15724967,-0.3457515,-0.22141665,0.24110556,0.82458264,0.64498454,-0.055045225,0.18204767,-0.012020967,0.46297437,-0.37288237,-0.44088018,0.4405507,0.7390017,-0.23985456,-0.39687243,0.5687889,0.44902793,-0.6189698,0.36391908,-0.6515804,-0.41462696,0.62920195,-0.19367786,-0.45457858,0.20397286,-0.3318378,0.28321525,-0.6034843,0.46618178,-0.42035624,-0.50050086,-0.6415279,-0.20699553,-3.178902,0.13375086,-0.105729155,-0.33633068,-0.36790955,-0.30846745,0.20587163,-0.5717932,-0.3750974,0.16586633,-0.009760693,0.6020877,-0.078647844,-0.017194418,-0.32575706,-0.5449579,-0.14643763,0.28578424,-0.08625692,0.29960087,-0.11228237,-0.344759,0.03209163,0.06226395,-0.52793795,-0.028884178,-0.39747956,-0.6621095,-0.15937735,-0.28224602,-0.07276352,0.7487002,-0.28677246,0.07150822,-0.43635333,-0.1060755,-0.2259652,0.20696817,0.20806317,0.21649216,0.084257066,-0.106219746,0.26451617,-0.45905387,0.11727513,0.12596127,0.3037728,0.594106,-0.35292506,0.086857654,0.28277215,0.70348704,0.23107634,0.91741747,0.056171622,0.036928117,0.6555915,-0.30245927,-0.55448,-0.31267592,-0.22499298,0.26414958,-0.33002874,-0.120534584,-0.2537923,-0.3789082,-0.5792862,0.5185174,0.0026212065,0.20748113,-0.083084464,0.5044469,0.386401,-0.08480525,-0.17039515,0.08203318,-0.18221149,-0.58054024,-0.20960125,-0.6539571,-0.564364,0.08520331,0.6683748,0.090366654,-0.078304835,0.17170992,-0.20625149,0.049368914,0.18069702,0.16042362,-0.099079534,0.08413613,-0.0067856205,-0.7985252,0.5988465,0.047906753,-0.32747877,-0.61184365,0.2492365,0.7990524,-0.5963647,0.4230669,0.21118179,0.15917271,-0.4649848,-0.38432896,0.06427994,-0.055380818,-0.30423257,0.25930884,0.32494405,-1.0193399,0.40949708,0.36229217,0.1457715,-0.49687764,0.46791524,-0.07164589,-0.4170089,-0.17290045,0.5044229,0.16320612,0.066394985,-0.2697604,0.30198452,-0.58393013,0.17412418,0.020750197,0.036066964,0.60349464,-0.15806478,-0.3134474,-0.78319323,0.041208964,-0.724593,-0.39557818,0.22201404,0.12168474,0.16476168,0.20880912,0.12477515,0.5179506,-0.27054393,0.19815904,-0.25444317,-0.33159935,0.30056143,0.55099446,0.45879367,-0.29270566,0.7504959,0.12055575,0.08763168,0.031231446,0.07212002,0.45377114,0.089093566,0.5399927,-0.15100735,-0.11860576,0.16771415,0.88427466,0.37311402,0.6228688,0.13744141,-0.29656547,0.21481067,0.09265476,0.18948168,0.14159675,-0.46926564,0.08530379,0.08665811,-0.006471597,0.50679123,0.1223757,0.3972481,-0.01739318,-0.37094685,0.03120236,0.113288835,-0.052280184,-1.3804629,0.17116837,0.15479037,0.9057997,0.52995086,-0.15701346,-0.12055945,0.58817166,-0.08561473,0.08547345,0.30578268,0.06869165,-0.35807943,0.5894583,-0.63982886,0.47007382,-0.12558469,-0.03055918,0.052429236,-0.05461681,0.31396687,0.64021057,-0.12026464,0.10594464,0.059377454,-0.38178504,0.14750814,-0.5315437,-0.07768247,-0.23645009,-0.24019207,0.42306206,0.42190114,0.3855655,-0.3111126,0.066880874,0.1902855,0.008513272,0.3155675,0.028399164,0.15437654,-0.4728637,-0.4953439,-0.29068145,0.44925344,0.010520166,0.28413314,0.18869656,-0.18895549,0.19249044,0.14339161,-0.01709329,0.0128701115,-0.5381907,0.22779612,-0.37440443,-0.476841,0.5874167,-0.06410304,0.13177758,0.34884608,0.007080525,-0.30320334,0.113129266,0.14835571,0.55517524,0.13997255,-0.22452573,-0.4330923,-0.014995775,0.19203697,-0.44550982,0.14918503,-0.17772387,0.0033293853,-0.4397602,0.2878726,-0.12925762,-0.20381604,0.048800383,-0.029125659,-0.010069652,0.5072847,-0.09274587,-0.12904896,0.0659114,-0.08565991,-0.16284432,-0.263105,-0.11511422,0.28259385,0.10392085,0.24197572,-0.004800646,0.013472861,-0.080197014,0.34386903,0.076937445,0.24668288,0.53606445,-0.100403376,-0.3676564,0.12784292,0.10671938,0.62798166,-0.051410988,0.15039323,-0.1661553,-0.8795326,-0.4813662,0.40368527,-0.056530226,0.20849681,0.17222764,-0.39226457,0.81121707,-0.02201926,0.8066531,-0.16436031,-0.40837944,0.1080291,0.5648037,-0.137748,-0.0630596,-0.33442843,1.0037621,0.48271248,-0.39113614,-0.036418095,-0.27141258,-0.15360726,0.35443687,-0.27108818,-0.24117184,-0.21027479,-0.7203844,-0.2818127,-0.014577285,0.28140828,0.041057106,-0.12540342,0.12743029,0.43072045,0.13479061,0.2524178,-0.5319485,0.1633306,0.4636318,0.06033447,-0.21112488,0.12656154,-0.28054923,0.14308672,-0.645537,0.14435655,-0.55464005,0.050318424,0.09750945,-0.565921,0.22645336,0.09338021,0.18983859,-0.41987717,-0.38829386,-0.2333005,0.2947247,0.23989703,0.23736101,0.34027502,-0.074074395,0.022745263,0.13206269,0.50640494,1.1089431,-0.036596384,0.08565417,0.03766227,-0.74275345,-0.931747,0.20160604,-0.19929792,0.2996227,-0.062544726,-0.23364978,-0.721328,0.19274908,0.39682645,-0.09362061,-0.13456494,-0.59231526,-0.5712106,0.14045548,-0.48323643,-0.2703585,-0.35563657,-0.018812688,0.40809023,-0.2587243,-0.05605613,-0.20905067,0.39391172,-0.39223433,-0.7715811,-0.23232959,-0.32927552,0.45457622,0.1367411,-0.32443914,-0.2318367,0.1275544,-0.4821044,0.10926005,-0.053338483,-0.39980602,-0.014573455,-0.4181919,-0.015333002,0.62954605,-0.11293923,0.34284362,-0.6429113,-0.61882377,-0.8056481,-0.42549294,0.26726493,0.19158007,0.17915395,-0.7586103,-0.1378194,-0.2631264,0.09188895,0.01536274,-0.19783908,0.37419227,0.15614243,0.48178566,0.019785322,-0.7630732,0.25243342,0.15265597,0.06111795,-0.5981274,0.47018605,-0.15963982,0.7515501,0.10616751,-0.09211287,0.18283176,-0.60768676,0.30654272,-0.11838035,-0.37883675,-0.41407079,0.32893193,853 +964,0.32994053,-0.32601985,-0.68925,-0.108085066,-0.22537942,-0.00056348066,-0.29785827,0.4195629,-0.05518171,-0.65739864,-0.117693424,-0.25311536,0.036785066,0.26206458,-0.15737228,-0.40713158,-0.0052591343,0.39520738,-0.35631981,0.32687104,-0.598939,0.14775814,-0.09805334,0.3119836,-0.12981482,-0.011165956,0.2350583,0.13063598,-0.3143287,-0.35875353,0.056171324,0.022818977,-0.6312301,0.11260235,-0.27923566,-0.58163375,-0.05195156,-0.4083545,-0.30212176,-0.7815046,0.23571959,-1.0529568,0.50276583,0.12261221,-0.31682283,0.30650538,0.29987213,0.49767768,-0.16486736,0.06438113,0.16846485,-0.43809253,-0.21528362,-0.48856008,-0.2688368,-0.39149228,-0.6438889,0.008510157,-0.5621914,-0.18561763,-0.22979806,0.2528107,-0.26217714,0.14519006,-0.40720892,0.72276425,-0.39998987,-0.08511103,0.19831905,-0.0584682,0.30657712,-0.48489615,-0.08725393,-0.20294094,0.010973632,-0.13864961,-0.36986864,0.3175051,0.13025579,0.4190936,-0.23238039,-0.2982612,-0.37725547,-0.12929355,0.31576717,0.4692062,-0.15080684,-0.35845372,-0.18313676,-0.0499496,0.065035865,0.24451803,0.065161854,-0.2921215,0.13978527,0.17151037,-0.3340614,0.39398968,0.7120867,-0.34007645,-0.15947331,0.27916878,0.5619909,-0.2183539,-0.3417075,-0.051842425,0.006937715,-0.4573556,-0.22134042,0.27955878,-0.21932377,0.5991269,-0.21250567,0.19724026,0.44424745,-0.47467557,-0.21445245,0.009264068,0.15525346,-0.022471653,-0.40112373,-0.60276026,0.62554604,-0.6225794,0.06781314,-0.43094072,0.91225815,0.017003251,-0.5418854,0.44868603,-0.62516063,0.15777023,-0.064156845,0.7215146,0.477471,0.66814834,0.56813455,0.57526356,-0.4083695,0.00981099,-0.17298761,-0.31019375,-0.012246748,-0.391346,0.1732954,-0.3475789,-0.02501723,0.031614866,-0.26509145,-0.15173076,0.63374525,-0.36548215,-0.18285853,0.28472212,0.6421743,-0.39703313,-0.015574493,0.7578608,1.2640084,1.2193545,0.25998685,1.2301425,0.33451173,-0.23310119,0.026047034,-0.008588123,-0.7609597,0.3069549,0.24127604,-0.055677067,0.29121506,0.13102423,-0.0073140045,0.47056153,-0.6252226,0.03993295,-0.11816297,-0.015592748,-0.011099295,0.03309023,-0.5089954,-0.12182348,0.20339184,-0.18354706,-0.0065569934,0.4252599,-0.27099776,0.3567835,0.044403244,1.398341,-0.14857823,0.111453004,0.25261375,0.38886738,0.042316366,-0.14171483,0.056157406,0.26487368,0.24091482,0.19876672,-0.47494212,0.085387774,-0.17716128,-0.6171017,-0.21739005,-0.34005907,0.050641872,-0.15575545,-0.56603235,-0.14660296,0.03909136,-0.3970395,0.32882383,-2.4793625,-0.1873493,-0.21051644,0.4223585,-0.32088664,-0.41421345,-0.04229848,-0.6657916,0.52240807,0.44201633,0.3034076,-0.52420974,0.48572978,0.3353717,-0.34001276,-0.06442966,-0.9172693,-0.03975952,-0.3889345,0.32586476,0.06090342,-0.25862953,0.012170618,0.015617398,0.6203402,-0.20402546,0.050867006,0.34670532,0.30049452,-0.09224582,0.6119156,0.12666956,0.40370786,-0.73291034,-0.30456054,0.24661385,-0.48721984,0.10986195,0.12297149,0.05898342,0.48464572,-0.686297,-0.9731213,-0.6589399,-0.2206471,1.1443849,-0.2924082,-0.45644283,0.28309786,-0.3776266,-0.36316803,-0.35956314,0.4108135,-0.05682852,0.096921615,-0.856604,0.09206696,-0.07997494,0.42199385,-0.094986156,0.112987705,-0.49996215,0.5663298,-0.3447956,0.51385695,0.5423979,0.13061365,-0.53714776,-0.34582242,0.017968625,1.0703979,0.27533656,0.16066656,-0.37909558,-0.23896547,-0.065871365,0.010844604,0.13423902,0.45341098,0.6860375,-0.080329604,0.14683706,0.40055266,-0.1622992,-0.034650803,-0.16002831,-0.45665666,-0.12517564,0.09179937,0.7357327,0.49846995,0.01460348,0.51578856,-0.1446135,0.40493232,-0.43558103,-0.2852841,0.25371858,1.1186094,-0.07647154,-0.2828419,0.7384621,0.6475887,-0.57109886,0.63949,-0.59657866,-0.34818757,0.24795757,-0.15983698,-0.5641134,0.18819016,-0.28093874,0.28738356,-0.6102591,0.40925702,-0.2932069,-0.633966,-0.7580378,-0.33669007,-3.5125747,0.4113118,-0.070741355,-0.13690633,0.09023524,-0.32419336,0.19075607,-0.55412066,-0.5239959,0.19721346,0.14233272,0.7391756,-0.07058433,-0.10023501,-0.46971127,-0.32863474,-0.2550493,0.32197192,0.35285,0.15756248,-0.070239335,-0.48046485,0.124758765,-0.30576232,-0.39466724,-0.13440607,-0.7030051,-0.30151328,-0.25675094,-0.6022047,-0.6399961,0.73446006,-0.31971332,0.08365297,-0.32243744,-0.05494733,0.07431236,0.48510763,0.051699992,0.26255763,0.044288475,-0.14408892,0.029038755,-0.2397542,0.06170962,-0.0069462997,0.1549337,0.53049845,-0.20306717,0.10772758,0.5093448,0.7303383,0.041255567,0.9968905,0.5026459,-0.07091835,0.2529651,-0.2636653,-0.17621954,-0.72636133,-0.204742,-0.08332945,-0.56485546,-0.3398239,0.075291984,-0.18657543,-0.8657951,0.91461927,-0.16108671,0.025199635,0.09522371,0.6530619,0.44403365,-0.14640655,-0.22366033,-0.080313794,-0.05251666,-0.44233367,-0.4535966,-0.6666104,-0.45476544,-0.20558992,1.2783984,-0.013461042,0.022745533,0.07100078,0.04255766,0.09335084,0.39357522,0.04251287,0.2672044,0.5944038,0.0035218596,-0.535688,0.23972225,-0.20408791,-0.14910007,-0.70203215,0.337258,0.8555519,-0.6975415,0.62263894,0.51067173,0.20824355,-0.4219794,-0.588737,-0.29720554,0.16677962,-0.17328623,0.6343139,0.3231614,-1.1704751,0.44730127,0.33522394,-0.29606816,-0.7905268,0.53692836,-0.13569261,-0.28837085,-0.1053309,0.44727552,-0.11904457,0.04233021,-0.10603042,0.3154978,-0.40890026,-0.019544471,0.34961894,0.017699081,0.32474333,-0.42734215,-0.038306475,-0.6497169,-0.0044213803,-0.5822851,-0.22097021,0.2375575,-0.07183129,-0.047742363,0.581252,-0.077145144,0.38398123,-0.1939507,0.07411465,-0.14142272,-0.36582738,0.59015703,0.48171538,0.27364987,-0.51274645,0.7783937,0.038276896,-0.14274964,-0.5532976,-0.12257255,0.42738074,0.01565264,0.6125678,0.006281923,-0.30546653,0.39422598,0.84979683,0.41999817,0.9370697,0.2507144,0.016757255,0.08597546,0.18248858,0.2803763,-0.087151244,-0.52206826,0.060086425,-0.25144002,0.19057666,0.34482822,-0.07825007,0.4718954,-0.21330835,-0.0675973,0.061638866,0.0055755754,-0.16774227,-1.2870321,0.4732112,0.17129332,0.56360364,0.48856086,0.11515394,-0.017793475,0.48273352,-0.43493098,0.03550498,0.18818945,0.14434324,-0.27115992,0.6627603,-0.744594,0.37535745,-0.26689863,0.023919605,-0.21884204,0.096064895,0.48061648,0.72673863,-0.15044715,0.2302183,-0.10832309,-0.16616565,0.45225474,-0.36736754,0.33564255,-0.50075984,-0.39951056,0.8950365,0.35361046,0.6387976,-0.13402009,-0.1519849,0.15141365,-0.069209784,0.19931608,0.07269298,0.16224042,0.04279592,-0.75209904,-0.07247357,0.5967691,0.14771795,0.08412309,0.19477533,-0.2978578,0.30425677,0.091101795,-0.13102768,0.10751939,-0.57318056,-0.00026650864,-0.31314948,-0.4845672,0.3893264,-0.26097444,0.21781336,0.22424527,0.079507396,-0.5944548,0.24552868,0.48733672,0.62981796,0.060140956,-0.05899193,-0.18118836,0.18455319,0.15527253,-0.23551041,0.12923673,-0.3653806,0.15403804,-0.6278168,0.43574783,-0.18826352,-0.52802926,0.24665666,0.019961156,-0.1393494,0.780335,-0.049375165,-0.06219137,0.16967171,-0.19076537,-0.13506623,-0.37069666,-0.09610344,0.34647945,-0.20115282,0.03964434,-0.0023514656,0.04558344,-0.0018094019,0.6353209,-0.059039537,0.15052775,0.4295909,0.2815015,-0.39855564,0.06264489,-0.2980933,0.7621044,-0.07495146,-0.20771493,-0.30542448,-0.3242612,-0.16427118,0.152714,0.054136015,0.30319926,0.24273323,-0.2880716,0.9764035,-0.16803643,1.1069596,-0.04345194,-0.4679118,-0.12170289,0.39171764,0.09022946,-0.17884251,-0.33294886,0.9114385,0.53216386,-0.09333858,-0.15694359,-0.49955025,-0.041402925,0.10454245,-0.18217677,-0.43409264,-0.030000823,-0.6921947,-0.042852428,0.25701356,0.35939693,0.24624725,-0.18423901,0.5674057,0.41361472,0.04068966,0.22359218,-0.22149864,0.21558131,0.4390583,0.34822056,-0.08058229,0.015762405,-0.30316913,0.25051016,-0.6610083,0.01611612,-0.30834323,-0.019771999,0.11621124,-0.2742917,0.2590556,0.21894468,0.2632608,-0.21446119,-0.09110131,-0.052446615,0.5247457,0.24029852,0.3029657,0.7030914,-0.14905216,0.21089363,0.051314343,0.507628,1.3323659,-0.2750925,-0.07956174,0.21924391,-0.273737,-0.8845619,0.38603947,-0.30952978,0.17932248,0.05350785,-0.32744625,-0.598918,0.12932605,0.19870782,-0.37063786,0.26100835,-0.41008255,-0.13378982,0.18733273,-0.3393947,-0.21731333,-0.35546485,0.18518664,0.52532274,-0.14260326,-0.2687159,-0.17024164,0.44129306,-0.2368399,-0.34368724,-0.10742066,-0.4451326,0.21918158,-0.0023741939,-0.33543566,0.23941053,0.008153265,-0.5313698,-0.042427965,0.267433,-0.21227235,0.20778441,-0.38421962,-0.06419143,0.81627184,-0.092924215,0.10130839,-0.43369523,-0.6516527,-1.0931332,-0.11069414,0.4165717,-0.12317798,0.1123159,-0.5758498,-0.00015197018,-0.021608148,-0.20796515,-0.07780926,-0.4668504,0.3037713,0.20604537,0.47953895,0.06691592,-0.6047501,0.14984156,0.088579826,-0.19507183,-0.25233987,0.61781865,-0.08221532,0.87272716,-0.019530607,0.22624828,0.261701,-0.5229425,0.25517377,-0.15465023,-0.19163913,-0.60741216,-0.18543124,876 +965,0.6327385,-0.58186966,-0.54289645,-0.19913769,-0.116998814,-0.13614665,-0.03265053,0.61175025,0.11631749,-0.52286065,-0.27771482,-0.23877282,0.17185411,0.22529039,-0.23589009,-0.51242834,-0.0819169,0.23918295,-0.35500115,0.6287998,-0.2394116,0.05112137,-0.10197845,0.5192551,0.43033937,0.34561375,0.003910108,0.020890214,-0.25330737,-0.15415023,-0.095325656,0.1722797,-0.70527595,0.07317316,-0.20092975,-0.3842803,-0.027956974,-0.5678448,-0.43781233,-0.7505772,0.10832986,-0.9878782,0.564947,0.15364237,-0.43346235,0.26188165,-0.045254495,0.32876185,-0.42566517,-0.07994388,0.22246055,-0.12048283,-0.03029456,-0.3038199,-0.04087181,-0.54793596,-0.6084818,-0.14109395,-0.32476756,-0.32747298,-0.17209224,0.04820076,-0.32744035,-0.018602436,-0.11034396,0.7393518,-0.613182,0.055374417,0.1335127,-0.0826729,0.40754578,-0.5660148,-0.21687931,-0.23525342,0.13801464,-0.14438845,-0.27434742,0.21236467,0.12492439,0.30729264,-0.061776318,-0.1444169,-0.27893814,0.047383036,0.113830924,0.3488343,-0.17114319,-0.47650605,-0.11472391,-0.10474736,0.12600054,0.3012301,0.36298257,-0.23724361,-0.09963042,0.19689964,-0.1541803,0.41962042,0.51355445,-0.15835305,0.044557337,0.14895684,0.60365015,0.23313765,-0.20137306,-0.07449501,0.034856353,-0.49850035,-0.2766557,0.053347528,-0.3283226,0.9290068,-0.12698902,0.19344664,0.7269037,-0.25971115,0.010051662,0.07712399,0.1604312,-0.15879078,-0.4018794,-0.55609363,0.46702355,-0.3709115,0.20460391,-0.33931527,0.76932806,0.24763368,-0.50478625,0.2400526,-0.6013496,0.18900609,-0.16743493,0.590215,0.4772713,0.542998,0.5557573,0.43939564,-0.44961688,0.13312934,0.21863914,-0.35513887,0.17229104,-0.26496002,-0.0873071,-0.48782063,-0.16048168,-0.1753092,-0.31229603,-0.15533453,0.61207455,-0.54152846,-0.03545654,0.2410778,1.0012611,-0.3076162,0.018899966,0.72293985,1.227159,0.98688334,0.046063587,1.1248139,0.3135142,-0.3384559,0.15298663,-0.027039148,-0.7437987,0.29920667,0.46744567,-0.23197006,0.41136482,0.18680254,-0.18728824,0.506187,-0.5374574,0.1422175,-0.06591877,-0.027791072,0.034329534,-0.17767352,-0.7883639,-0.19738597,-0.24149412,0.0017560233,-0.3821782,0.36941954,-0.25552502,0.38604262,0.05557613,1.812793,-0.025021486,-0.063997254,0.03840315,0.591042,0.06315256,-0.20632796,-0.020074774,0.49437717,0.45421678,0.3648019,-0.5117416,0.21001972,-0.20072564,-0.42287815,-0.26401475,-0.4325485,0.047030553,-0.10353636,-0.5530453,-0.1325679,-0.14182429,-0.0381852,0.21598949,-2.3145177,-0.055228267,-0.25498828,0.60885453,-0.18231887,-0.31460255,0.27576414,-0.48866245,0.21092682,0.3879388,0.51071286,-0.7625462,0.46131992,0.6249058,-0.5569778,0.012638915,-0.6760997,-0.3687533,-0.11522266,0.46553758,-0.11722922,0.13112797,0.18975852,0.29979733,0.56142676,0.040262286,0.23172717,0.24273413,0.47274953,-0.2945307,0.7062821,0.14882009,0.38752472,-0.123545215,-0.11731913,0.21363544,-0.24229355,0.14597268,-0.017135559,0.115283616,0.5287828,-0.52395636,-0.8907324,-0.6032301,-0.09590264,1.0753764,-0.39576122,-0.39082897,0.2914039,-0.4128814,-0.33093038,-0.23748296,0.39136934,-0.13512994,0.04146916,-0.895615,-0.019634973,-0.060101423,0.084269226,0.015615822,-0.0627547,-0.54101396,0.75681823,-0.07143393,0.56609225,0.5297529,0.23279892,-0.19449963,-0.57142234,0.04352279,0.993685,0.4615847,0.09290979,-0.43268117,-0.15563774,-0.24241239,0.18301448,0.12691112,0.48577994,0.851969,-0.22614585,0.22522198,0.36401433,-0.067848824,0.001014211,-0.19508745,-0.38074028,-0.16484803,-0.06534929,0.48845342,0.8553917,-0.19037575,0.48552325,-0.17410123,0.586514,0.025075424,-0.4190176,0.2533624,1.302856,-0.15884128,-0.19915856,0.7913132,0.68354183,-0.52496165,0.5141457,-0.6285595,0.0017820813,0.48037606,-0.1975789,-0.504795,0.44510955,-0.30533898,0.22426048,-0.99170077,0.50312316,-0.11477674,-0.48176992,-0.70790076,-0.2495097,-3.3828013,0.29908422,-0.48410398,-0.37134856,-0.014931072,-0.36079594,0.28174275,-1.0823284,-0.517678,0.25403154,-0.004529235,0.72532743,-0.031986754,0.052854713,-0.35361665,-0.4346213,-0.17775719,0.15691449,0.2584268,0.22983836,-0.18368864,-0.62490976,-0.06185678,-0.016747849,-0.37245008,-0.030907894,-0.65585226,-0.56391865,-0.1778641,-0.65109617,-0.3137045,0.6627716,0.057234243,0.0947712,-0.1346402,-0.054217257,-0.058892503,0.099757,0.19421583,0.38742554,-0.13234176,0.0056248903,0.11834648,-0.28695107,0.053834643,0.13206433,0.5100243,0.051464316,-0.10207903,0.21329886,0.594249,0.5205378,-0.17132916,0.94754845,0.68556696,-0.26147035,0.22022893,-0.13731344,-0.44597006,-0.773652,-0.54044205,0.00011089715,-0.4269678,-0.4065525,0.071699075,-0.38271588,-0.7343664,0.78911644,-0.11318786,0.3313968,-0.018671155,0.27688113,0.7013406,-0.24958615,-0.32522666,0.026756173,-0.16985002,-0.7343131,-0.104063034,-0.8221741,-0.5372912,0.242849,0.8393104,-0.22338496,0.06340032,0.12989502,-0.30652082,0.24784683,0.1705151,-0.16734606,0.019722028,0.6171437,-0.010041849,-0.66931987,0.5488905,-0.025101228,-0.21829389,-0.5236309,0.20471649,0.69243515,-0.74035394,0.74707884,0.3869651,-0.12950474,-0.18604998,-0.6377793,-0.31515282,-0.14685588,-0.09166169,0.53607386,0.34331945,-0.810726,0.19111495,0.27805954,-0.35735872,-0.71813726,0.8270826,-0.19321309,-0.38975012,0.018660514,0.32722792,-0.032991704,-0.025319178,-0.25894374,0.43521512,-0.29238972,0.16444184,0.5430271,-0.1379505,-0.07323183,0.09379785,0.22213699,-0.9574686,0.27521726,-0.52858347,-0.37448347,0.41606483,0.02724389,0.043788828,0.24742633,0.34737456,0.25167274,-0.31075895,0.112318486,-0.044760644,-0.4842704,0.61016536,0.5488212,0.49554205,-0.47999507,0.54806566,0.031651307,-0.09973485,-0.03139571,0.00714094,0.38275796,0.07245247,0.42917702,0.10353823,-0.22428797,0.2116047,0.7053069,0.31213987,0.89363,0.2625907,0.13101472,0.15703364,0.19958873,0.37185314,-0.023397792,-0.7112976,0.2967419,-0.02657504,0.12979928,0.46026945,0.03949146,0.29929313,-0.21714574,-0.32047734,0.113264635,0.28843093,0.2178877,-1.3060037,0.2588789,0.22179207,0.7318345,0.59367585,0.13126408,-0.19241124,0.56723297,-0.22465649,-0.016485013,0.4302933,0.3456309,-0.665107,0.6451567,-0.7029075,0.38659468,0.036409102,0.05639023,-0.16620497,-0.21116619,0.4096505,0.6978991,-0.14384681,-0.021781344,-0.10154574,-0.3051832,0.17713343,-0.69388676,0.0042518754,-0.4966079,-0.37754527,0.6059976,0.6121841,0.4217695,-0.18964724,0.019547137,0.08200333,-0.2822075,0.4273407,0.12732957,-0.09798017,0.09249315,-0.91943353,-0.2687357,0.42399818,-0.4310489,0.036125444,-0.24780846,-0.28104234,0.15350576,-0.12197903,-0.18695645,0.16551228,-0.84016997,-0.06811053,-0.5175765,-0.58025426,0.6023211,0.07976047,0.13714837,0.122168966,0.012558862,-0.1980651,0.17986245,0.06379271,0.9523062,0.12320461,-0.15523142,-0.37095964,0.13029775,0.27903935,-0.1994006,0.23050858,-0.4232416,0.25623143,-0.6023724,0.46707848,0.18258335,-0.5475988,-0.21880794,-0.15244642,-0.011543593,0.5683124,-0.11231577,-0.30126113,-0.17570604,-0.023999594,-0.20245808,-0.37894067,-0.06523058,0.31754598,0.04399422,0.09131189,0.039861474,0.033431336,0.13350427,0.67187905,0.020585256,0.5717203,0.60606533,-0.15418248,-0.30961877,-0.26689816,0.19363494,0.47355548,-0.06603403,-0.23262487,-0.46032503,-0.7636969,-0.3416125,0.018953241,-0.18458614,0.62402445,0.18407029,-0.039360363,1.0251384,-0.10492523,1.3558645,-0.13958901,-0.7330835,0.07901168,0.7116476,0.017061938,-0.057496134,-0.33053428,1.1174945,0.5149824,-0.18224502,-0.27302706,-0.5465218,-0.13476968,0.25512275,-0.13402626,-0.30951774,-0.062020086,-0.7053495,-0.07792606,0.12608136,0.4511941,0.29530457,-0.0729133,0.42769873,0.51135087,-0.0809705,0.35813242,-0.5244367,-0.2422811,0.28054225,-0.008295959,-0.12937674,0.16927713,-0.44805372,0.3591628,-0.44846848,0.08307944,-0.4284407,0.15429941,-0.009949554,-0.47993672,0.20680016,0.028846644,0.45746925,-0.5426056,-0.19282652,-0.3152354,0.5767489,0.10125765,0.17884456,0.6086001,-0.38587245,0.114942096,-0.052536014,0.5645599,1.3507833,-0.24128708,-0.021352334,0.3926945,-0.66036284,-0.83296037,0.32626107,-0.117624424,0.27685767,-0.016071992,-0.37093413,-0.8220696,0.18884693,0.14796957,-0.2823769,0.19481164,-0.6109504,-0.21058828,0.29170325,-0.45202497,-0.1144149,-0.29609632,0.24062118,0.53016025,-0.34766808,-0.29778585,-0.1179067,0.09556469,-0.09942604,-0.20770726,-0.24050131,-0.45744693,0.35745108,0.0028787742,-0.53404087,-0.118354924,-0.24094075,-0.3360941,0.21045755,0.1910983,-0.31730163,0.17123675,-0.21434823,-0.2834813,1.1504956,-0.07359522,-0.13227654,-0.5304638,-0.5617637,-0.8792997,-0.5516652,0.5075474,-0.026900204,0.07376338,-0.66495633,0.182184,-0.0329154,0.0047636684,-0.2104674,-0.35006478,0.4996207,0.2060276,0.58279645,-0.03894459,-0.9000111,0.29687083,0.20653628,-0.27682704,-0.7737019,0.731716,-0.23314372,0.8979114,0.0117712375,0.29307035,0.12169585,-0.43834054,-0.14046727,-0.27326238,-0.37963483,-0.65126747,-0.12838486,904 +966,0.51283455,0.047634482,-0.7131455,-0.11897061,-0.12860051,0.074475236,-0.22474386,0.56146723,0.23452386,-0.4463816,-0.041753147,-0.10128891,-0.111233145,0.2645516,-0.31196883,-0.34824973,0.10540328,-0.040834047,-0.42324695,0.36747533,-0.35068145,0.22467151,-0.083221845,0.60349256,0.1661358,0.11292644,0.17324565,-0.001290305,0.06050794,-0.44400856,-0.18315794,0.31726906,-0.3242752,0.032092366,-0.17562532,-0.37993324,0.11434808,-0.43287346,-0.26537,-0.6066876,0.25458422,-0.6687658,0.7615228,0.24698,-0.13608856,0.27308428,0.3548117,0.11134944,0.13501887,0.07454113,0.2210113,-0.2649189,0.14173812,-0.3986909,-0.37470883,-0.63868326,-0.47373727,-0.06077514,-0.5773506,-0.39215764,-0.22629458,0.20089792,-0.3874215,-0.18708138,-0.0029757728,0.4227567,-0.38763058,0.21888895,-0.016381817,-0.2802511,0.1579786,-0.6802904,-0.22998919,0.03109648,0.33339527,-0.2635932,-0.14743237,0.0147427805,0.24116787,0.39385584,-0.293565,0.048380807,-0.2570864,-0.27290285,-0.11536252,0.5429872,-0.28533742,-0.4003129,0.049510274,0.18286972,0.34746474,0.43565634,0.15878926,-0.10157513,-0.12770091,0.075500965,-0.24176551,0.7233063,0.5095205,-0.25226822,-0.0827064,0.30052993,0.5075055,0.4622468,-0.17195775,0.097284384,-0.15299183,-0.47061977,-0.08385476,-0.0695085,-0.062127534,0.31170914,0.04729968,0.5891728,0.65147907,-0.14782499,0.06289845,0.13677263,0.031588554,0.07819572,-0.1337574,-0.26594248,0.13665026,-0.37277758,0.32883742,-0.14884157,0.6801576,-0.0032434342,-0.5026613,0.27710548,-0.6187791,-0.15782224,-0.06505411,0.45298517,0.47047156,0.38038597,0.080417864,0.6102822,-0.44818297,0.020821387,-0.0023648413,-0.35903865,-0.039582077,0.05873588,0.01679501,-0.53230315,0.0272677,0.00026741216,0.07710146,0.2584505,0.4369934,-0.60029167,-0.25260058,0.14575268,0.99277824,-0.29111254,-0.09016573,0.64858913,0.9911663,0.6516994,-0.09571788,0.6804848,-0.022260936,-0.13100821,-0.14748031,0.07419971,-0.5769258,0.4112818,0.4933705,-0.6184461,0.29822844,0.13164109,-0.06928653,0.21296786,-0.10895278,-0.18928455,-0.12868512,-0.034910023,0.21036428,-0.31421176,-0.19590741,-0.08859441,0.05376829,-0.07215767,0.31562638,0.095334,-0.43545607,0.38566026,-0.19472513,1.3488567,-0.04120368,0.097012594,0.16078232,0.4834572,0.24378985,0.15223919,0.14467882,0.4415774,0.35613707,0.3423262,-0.48990104,0.28144532,-0.32062533,-0.43523338,-0.09325032,-0.3090341,-0.18829384,0.025634868,-0.3948658,-0.060622696,-0.14612323,-0.15254392,0.30081758,-2.8293397,-0.1916624,-0.13012187,0.34680316,-0.055400718,-0.30028418,-0.18718792,-0.3140477,0.39483443,0.24267823,0.5176524,-0.41662663,0.3935419,0.59689516,-0.41600963,-0.30366996,-0.45458984,0.08676109,-0.077338256,0.13738099,-0.019166114,-0.068526976,0.093388416,0.09606188,0.56539685,-0.13096307,0.062029075,0.3150671,0.6575361,-0.29263103,0.519272,-0.18629263,0.5422563,-0.29041404,-0.22063805,0.4589071,-0.32083416,0.12347825,-0.10579989,0.13138543,0.45327094,-0.20130616,-0.97852135,-0.41394174,0.06350482,1.2811544,-0.16928601,-0.4798145,0.13228188,-0.15827326,-0.46225882,-0.003600008,0.56592184,-0.24514543,0.08357889,-0.67712075,0.053169586,-0.25943312,0.11601847,-0.01631129,-0.037262928,-0.3950063,0.55265135,0.119669676,0.54308516,0.15773025,0.23968115,-0.3661669,-0.29656306,0.05923145,0.7581677,0.4585581,-0.0075240512,-0.15807496,-0.013716126,-0.19072095,0.06572901,0.18158776,0.9131736,0.54980206,0.010082204,0.17702504,0.23431374,0.0762136,0.0070416927,-0.24373315,-0.20146443,-0.18870376,-0.1198704,0.46647042,0.35700098,0.026058467,0.5283956,0.096710704,0.36224923,-0.48998,-0.34615496,0.22766541,0.74504584,-0.3376365,-0.47427896,0.5298987,0.26442796,-0.37519512,0.2839677,-0.74363035,-0.23302117,0.6480686,-0.1082649,-0.68426615,0.17865577,-0.26755235,0.03121055,-0.90857315,0.1357129,-0.388554,-0.51113325,-0.4518752,-0.32761002,-2.7798197,0.1806617,-0.32515794,-0.19089971,-0.42921868,-0.25502253,0.07481848,-0.622733,-0.51901937,-0.01770907,0.15068947,0.6745675,-0.13271374,0.07124997,-0.20693588,-0.46917343,-0.11784779,0.16056672,0.087225825,0.2807941,-0.017237436,-0.2138214,0.09078724,0.124792196,-0.3303653,0.018341897,-0.3069181,-0.3081748,-0.016411625,-0.3831094,-0.165649,0.74163246,-0.41276324,-0.0349744,-0.24935536,0.15204261,0.072585486,0.28565168,0.17322487,0.076526254,-0.0011194755,-0.05395776,0.09052839,-0.46479318,0.34718364,0.018237859,0.3759966,0.35048202,0.044446465,0.07396327,0.37128752,0.33215308,0.09220919,0.71889627,0.042234834,-0.014600348,0.36573964,-0.3346422,-0.36874294,-0.43864918,-0.2857891,0.3054104,-0.4060613,-0.43826172,-0.15454867,-0.26930785,-0.71798706,0.45582467,0.014424768,0.30667531,-0.23357163,0.8180208,0.4866619,-0.20378542,-0.19549274,0.28814223,-0.19267721,-0.49607047,-0.19212666,-0.5099006,-0.43844783,-0.053646628,0.6853162,-0.46196496,0.13342236,0.08624515,0.038347717,0.1523352,0.14093299,0.09831124,0.09640319,0.33713877,-0.27792242,-0.58192897,0.4796838,-0.47690314,-0.237223,-0.66937727,0.049064398,0.68891615,-0.6619256,0.2860864,0.33894718,0.07192401,-0.2519916,-0.60299605,0.06430007,0.15844876,-0.1511818,0.111170575,0.104011804,-0.79070765,0.298481,0.37946108,-0.11503637,-0.44814214,0.68277085,0.055054795,-0.56177175,-0.036292564,0.4783531,0.398721,-0.01607436,-0.17322697,0.12452947,-0.22348183,0.37312773,-0.095791645,-0.062940195,0.39100778,-0.1194099,-0.17853257,-0.61149067,0.21229033,-0.541739,-0.46887735,0.37529954,0.031620957,0.22205152,0.42886078,-0.06465333,0.34921995,-0.54831433,0.2316106,-0.3084466,-0.13242216,0.4243723,0.32583869,0.41961747,-0.38015556,0.54430413,0.12163936,-0.05926472,0.55456024,0.21488124,0.541281,-0.13641006,0.44228113,0.018177388,-0.25324634,0.235076,0.8107164,0.1803048,0.28337535,0.036584094,-0.0666562,0.023560232,0.082640246,0.116339535,-0.14420423,-0.5420859,-0.101855166,-0.26722595,0.07754108,0.67160845,0.09025857,0.16195408,0.037390355,-0.3061526,0.10678756,0.5111659,0.07560952,-0.9011126,0.35760844,0.21107148,0.8740807,0.024877608,0.19378246,0.0287292,0.57502043,-0.09320145,0.0650467,0.24874915,0.20616363,-0.37173396,0.48382246,-0.5554895,0.41368207,-0.08035669,-0.08782404,0.018543793,-0.29788655,0.316815,0.79716486,-0.21865474,0.08019796,0.07616287,-0.25039855,0.10928497,-0.4631028,0.048052963,-0.43824318,-0.19117156,0.61861396,0.624968,0.27075258,-0.28798538,0.02522012,0.07372435,-0.054537967,-0.14212851,-0.037107978,0.18425137,-0.25276476,-0.54444414,-0.054768864,0.4197669,0.3424261,0.115581006,-0.11357973,-0.10246208,0.45413503,0.07582135,0.23822817,-0.09366366,-0.35372284,0.16132511,-0.18968846,-0.69256854,0.30380797,-0.13360526,0.30687082,0.23757623,-0.035148904,0.107384466,0.5791578,0.06548352,0.6431293,-0.12562115,-0.045119047,-0.6116329,0.3074157,0.012577813,-0.1958744,-0.19776407,-0.26843426,0.29193947,-0.45308083,0.25631455,-0.22653985,-0.2751721,-0.10466699,-0.23750392,0.006034133,0.429272,0.0069471356,0.013555896,0.11818163,-0.2931021,-0.2430807,-0.15429169,-0.21173026,0.27020577,-0.11607406,-0.066288285,-0.21573974,-0.14578702,-0.36279377,0.06643884,0.05211751,0.46707714,0.32232654,0.15650398,-0.07697508,-0.067071795,0.069735765,0.6089305,-0.10613739,-0.1437978,-0.111174606,-0.666427,-0.32059553,0.34993237,-0.14102902,0.19492811,0.33830047,-0.10540173,0.66251266,-0.050041724,1.0410101,-0.047402147,-0.22183873,0.07526632,0.6847784,-0.07067729,-0.1759991,-0.22417398,1.1005839,0.5269697,0.08907574,0.009562007,-0.138201,-0.1494479,0.072437115,-0.3647144,-0.07671559,-0.13464083,-0.4794524,-0.30063763,0.19236897,0.24726056,0.15364061,-0.1656137,-0.038290534,0.30175185,-0.025085362,0.19348803,-0.5161434,-0.4353031,0.2697527,0.19884911,-0.31413257,0.07197427,-0.4504997,0.37486008,-0.432771,-0.010443839,-0.5578404,0.19575511,-0.18055469,-0.20676047,0.18733296,-0.1051269,0.2838426,-0.39224595,-0.35604703,-0.0033164432,0.021099104,0.28697166,0.19670819,0.3745897,-0.20830698,-0.04831301,0.002335453,0.50297374,0.8955816,-0.08753792,-0.09027633,0.49313384,-0.4795243,-0.6890368,0.12138243,-0.71708244,0.0974951,-0.09233563,-0.14058413,-0.03422487,0.3594427,0.20292044,0.0711138,-0.18040021,-0.635066,0.015697425,0.24305023,-0.21308881,-0.22274493,-0.3195696,0.06500938,0.66176814,-0.23953246,-0.13121888,-0.1398705,0.5077444,-0.07459924,-0.52493864,0.09352665,-0.22509311,0.3859521,0.12551112,-0.16809629,-0.27291358,-0.071750194,-0.54450876,0.42360276,0.12596464,-0.17192578,0.07461294,-0.21087165,0.10930445,0.49746695,-0.29735693,-0.19950819,-0.3703373,-0.46640882,-0.5915712,-0.24911283,0.12661518,0.036587417,0.037023615,-0.6584862,0.117560655,-0.1500865,-0.27969006,-0.26027158,-0.1942483,0.29408476,-0.06642025,0.6079508,-0.27583605,-1.0407051,0.2708029,-0.08727955,-0.42046747,-0.72331196,0.35736045,-0.07780074,0.60976964,0.036181785,-0.037253466,0.27213967,-0.4525428,0.09687529,-0.39321712,-0.19112045,-0.8668924,-0.01996268,908 +967,0.44238234,-0.34718844,-0.5392932,-0.2041743,-0.21466017,-0.16583458,-0.24309577,0.42883074,0.32792354,-0.16554861,-0.2039463,-0.034506526,0.22359963,0.46817428,-0.1348245,-0.6529674,-0.09818392,-0.02590145,-0.57215345,0.63689065,-0.45315552,0.34039852,-0.011535439,0.26288894,0.3716399,0.45797917,0.13824588,-0.15482713,-0.021228248,-0.21019767,-0.03623452,0.106317475,-0.7627735,0.19548626,-0.35039726,-0.33464983,0.10372307,-0.52948993,-0.42369998,-0.8084268,0.15474203,-0.9740566,0.58015245,-0.056767236,-0.11339109,-0.058147408,0.12428904,0.42731836,-0.43467024,0.05621754,0.2118606,-0.09464862,-0.09650319,-0.21641137,-0.221988,-0.38207456,-0.51081795,-0.20918733,-0.7434239,-0.28458703,-0.33961886,0.076904185,-0.3861654,-0.10125101,-0.13292956,0.28387597,-0.59199494,0.08802893,0.17829861,-0.14115326,0.34650552,-0.48139098,-0.04711355,-0.18864313,0.3948659,-0.11918753,-0.21791525,0.41396296,0.31103316,0.20797259,0.12717189,-0.2840408,-0.25089228,-0.22232094,0.28021902,0.53005415,-0.01023125,-0.5894531,-0.3293266,0.14327067,0.28630224,0.5578782,0.15042341,-0.50789285,0.029635035,-0.109387904,-0.21828853,0.7738648,0.5845347,-0.19237381,-0.2716973,0.37848967,0.5530472,0.52128667,-0.2433392,0.05370202,-0.023509948,-0.48854607,-0.14430319,0.1847815,-0.19363286,0.77798,-0.054390308,-0.04673456,0.86690325,-0.19564065,-0.07833706,-0.046431065,-0.028999375,-0.26594567,-0.36251113,-0.05176073,0.058677413,-0.62282825,0.36191294,-0.25329503,0.68441206,0.30847988,-0.82600874,0.48257542,-0.5653766,0.13588221,0.032297947,0.5643247,0.52470267,0.46446553,0.36930764,0.9067179,-0.3275303,0.24409026,0.031508394,-0.58735794,-0.17160663,-0.25370735,-0.09600557,-0.41961357,0.10213336,-0.057181384,0.06733175,-0.07132107,0.5004457,-0.39568788,-0.15794848,0.25620556,0.8634466,-0.37637627,-0.104223065,0.8779822,1.1341895,1.0406426,0.007862318,1.3221928,0.15396847,-0.12965892,0.10983689,-0.11235377,-0.7632643,0.092386745,0.4569031,-0.22775736,0.2105999,-0.02520536,-0.011359437,0.05930743,-0.3622645,0.05852851,0.113155864,0.5116825,0.1373656,-0.28028172,-0.36079475,-0.09410074,-0.03187261,0.037990972,-0.07006819,0.15392183,-0.3524309,0.16523758,0.042723253,1.3165941,-0.15197521,0.005850537,0.116944976,0.7459937,0.29121575,-0.08973923,-0.06684875,0.5595677,0.51932037,-0.08908506,-0.78285044,-0.0058459584,-0.4800491,-0.4763729,0.018548848,-0.31718442,-0.22578959,-0.037596997,-0.314907,0.15415335,-0.07971459,-0.26722506,0.72792745,-2.6791086,-0.37136194,-0.26302043,0.30766156,-0.38623,-0.124356456,-0.080178745,-0.4859154,0.36545533,0.2285979,0.5956705,-0.6785112,0.49741372,0.5362815,-0.5553967,-0.047176298,-0.6324033,0.0016024654,0.03327229,0.4736394,0.0032708251,0.103761666,0.006034233,0.099339984,0.86125636,0.2314309,0.2429433,0.5566702,0.48426282,0.07192559,0.62793756,-0.19155149,0.62625325,-0.32114565,-0.011206567,0.31968638,-0.2943468,0.5340437,-0.28630504,0.124203674,0.55526316,-0.47779274,-0.9891544,-0.5242695,-0.5545343,0.99197143,-0.54023385,-0.48895204,0.38365415,-0.09241115,0.03207066,0.0337229,0.64731765,-0.013639894,0.25688493,-0.52642,-0.028329724,-0.12421945,0.03728554,0.023061378,0.07480201,-0.16557862,0.85990906,0.009301603,0.6651546,0.31130898,0.15720673,-0.1665933,-0.33819398,0.25657752,0.76153475,0.37218368,-0.10533606,-0.27167702,-0.1481056,-0.21735393,-0.33882925,0.09520037,0.72682226,0.79665923,-0.29683936,0.056422368,0.3811983,0.15983061,-0.008358354,-0.15895526,-0.36882523,-0.0833428,-0.07604831,0.38268632,0.7986166,-0.2399703,0.614249,-0.30660966,0.060188305,0.03879058,-0.5472594,0.56931645,0.5745915,-0.22021975,-0.11672742,0.2836204,0.5450805,-0.5485989,0.56874496,-0.5242531,-0.057368625,0.8599498,-0.15270087,-0.46515933,0.26935452,-0.31708014,-0.09401748,-0.9124279,0.3175279,-0.29886225,-0.5682501,-0.05455506,-0.16512989,-3.1262445,0.15313147,-0.08378113,-0.22301084,-0.5549723,-0.015637165,0.116581224,-0.5492246,-0.93816274,0.328598,0.1754712,0.54187053,-0.12769532,0.14654471,-0.29514846,-0.058207795,-0.19166708,0.27387294,-0.08035426,0.34699926,-0.30136478,-0.40154517,-0.30851856,0.10537165,-0.68465984,0.279364,-0.55752796,-0.34970692,-0.044935223,-0.80967903,-0.12508106,0.5468578,-0.52363724,-0.08770242,-0.07684792,-0.030674024,-0.38949403,0.12050295,0.1366651,0.23990026,0.0478182,-0.08258379,0.08329146,-0.27155182,0.5297762,-0.017265799,0.38086155,-0.22166458,-0.19163942,0.013524017,0.3776744,0.5996959,-0.22388038,1.224183,0.1986874,-0.117615126,0.36047757,-0.27167967,-0.24221095,-0.89257044,-0.40584078,-0.23393846,-0.3600802,-0.69569904,-0.0422048,-0.19632055,-0.8108751,0.53659725,0.23168169,0.6167539,0.054538425,0.16351576,0.34888184,-0.22400211,0.068089396,-0.049236044,-0.06262045,-0.5376443,-0.28663853,-0.6837644,-0.4689431,0.19284667,0.6419701,-0.3067579,-0.18294317,-0.19844346,-0.4357724,0.08223217,0.16776238,0.07027591,0.2981389,0.5088078,0.06958928,-0.6355339,0.3375968,0.09126841,-0.12246737,-0.5049463,0.07805737,0.7647322,-0.6960011,0.8083094,0.20630838,0.03952033,0.018549794,-0.6652677,-0.15513967,-0.056084014,-0.10182684,0.2502809,0.032108024,-1.007545,0.39578837,0.34294403,-0.6122498,-0.7974195,0.63827,-0.0791669,0.05343851,-0.12890019,0.36639234,0.34958404,-0.23146774,-0.35434064,0.263011,-0.32364836,0.34577143,0.06507345,-0.19254127,0.152461,0.11729691,-0.4184983,-0.85985184,0.049058285,-0.45420015,-0.17357534,0.35587958,-0.24142309,-0.17967194,0.023620032,0.32037136,0.2748629,-0.39879036,0.14874618,-0.054691255,-0.44667074,0.35276562,0.50852466,0.49788934,-0.4213007,0.7076401,0.28279507,-0.15656155,0.30871543,0.26995662,0.34732273,-0.03478034,0.35270125,0.27421507,-0.060105205,0.16431281,0.8782477,0.28498724,0.6041093,0.30112812,-0.16035953,0.36714697,0.23494434,0.29562646,0.05291568,-0.4904904,0.16839188,-0.096827984,0.1082514,0.5534117,0.30444148,0.30150363,0.15645711,-0.2006049,-0.1681999,0.41477445,-0.052752208,-1.259515,0.3389261,0.25426427,0.84619063,0.5261001,0.15868813,-0.006048192,0.37169316,-0.073733866,0.0035486235,0.5619866,-0.009150657,-0.56313,0.7151283,-0.62618643,0.4021621,-0.09987909,0.073875844,0.38496226,0.27298835,0.45073786,0.94737583,-0.2443607,-0.111826874,-0.13773333,-0.070889704,-0.047853634,-0.41996014,0.06419352,-0.34227875,-0.4991497,0.86199325,0.5620798,0.35391062,-0.060859416,-0.110021956,0.0077069295,-0.19845909,0.14520808,-0.013412771,-0.054567575,0.0028548485,-0.63732886,-0.2653885,0.6965107,-0.04950945,0.07112944,-0.20072174,-0.18528566,0.38855952,-0.37737033,0.094645314,0.04326384,-1.0156612,0.08682457,-0.17111216,-0.46104977,0.21428071,-0.120890975,0.20247053,0.14139934,-0.059513472,-0.137733,0.29160535,0.07172835,0.95963365,-0.086357735,-0.29105315,-0.30206835,0.08789127,0.28692397,-0.30453002,0.18350388,-0.27575013,-0.20572992,-0.5542358,0.5660087,-0.0969001,-0.4289367,0.11242816,-0.29804942,-0.18996137,0.6707993,-0.052945927,-0.19794936,-0.12508768,-0.3259802,-0.5081994,-0.25952718,-0.23209824,0.21673483,0.34578416,-0.068713896,-0.07287712,-0.099978715,0.09801883,0.29773042,-0.06888764,0.48181096,0.12435122,0.17343968,-0.0665144,-0.11402193,0.3484065,0.44956034,0.2728445,0.0004947009,-0.062352523,-0.23044586,-0.39681414,-0.04532502,-0.16762462,0.35218918,0.026736693,-0.29188415,0.7173927,0.123485476,1.3015915,0.07473211,-0.4612685,0.20259327,0.68106055,-0.24594821,-0.066474885,-0.40205514,1.0814555,0.65485454,-0.14822078,-0.03616434,-0.57612574,-0.17522009,0.31691426,-0.37539205,-0.07376022,0.1466818,-0.34545854,-0.21699828,0.24269728,0.24495818,0.16240965,-0.110700935,-0.15027766,0.22737475,0.17132382,0.4576663,-0.7629549,-0.2696709,0.19419679,0.25487986,0.12069594,0.008000309,-0.27505013,0.32337278,-0.6980918,0.2866308,-0.49440488,0.057526555,-0.4342825,-0.4234622,0.15676744,-0.04401362,0.37099406,-0.27151257,-0.41740313,-0.20853972,0.40471762,0.018940398,0.21129256,0.6253897,-0.29305384,0.004470904,0.038661607,0.6535607,1.0366927,-0.40277436,-0.03292599,0.4682102,-0.665254,-0.71695095,0.4006216,-0.45432308,0.18452138,-0.07037933,-0.44498947,-0.6082501,0.24231838,-0.13704816,0.043226145,0.11375336,-0.79328865,-0.10243575,0.346626,-0.13664913,-0.34115627,-0.11399,0.32861307,1.0825824,-0.35606918,-0.4736062,0.21239094,0.0120460335,-0.28634927,-0.5910837,-0.04648386,-0.049154803,0.29581425,-0.10766372,-0.2820055,-0.12356958,0.26788935,-0.5153215,-0.0274482,-0.0032971988,-0.38203153,0.1709521,-0.06516634,-0.11604491,0.97012305,-0.5309201,-0.14304763,-0.77564925,-0.52580893,-0.7369473,-0.3847108,0.11942003,0.19436298,-0.003412637,-0.39180744,0.23818198,-0.06555296,-0.15774661,0.116979904,-0.58179927,0.40127438,0.13654368,0.5505834,-0.3523038,-1.1809319,0.23628344,0.34453905,0.0064638094,-0.8724607,0.55527675,-0.06695459,0.7076709,0.08635875,-0.073316485,-0.030721588,-0.44765395,-0.10238615,-0.39588073,0.08920557,-0.7561958,0.38374278,948 +968,0.51555395,-0.28385356,-0.50615996,-0.16052166,-0.090637445,-0.20424475,-0.15345901,0.76518816,0.32478857,-0.57692385,-0.14191695,0.05495231,0.0071867923,0.45390692,-0.20624612,-0.7133647,0.05149508,0.20841517,-0.4504554,0.35789463,-0.41579673,0.09332269,-0.13130236,0.56062263,0.34770724,0.06562649,0.09839359,-7.346543e-05,-0.24551186,-0.17565925,0.07557985,0.29648638,-0.5224097,0.1447547,-0.3726443,-0.4234932,-0.122289084,-0.658688,-0.46433118,-0.9559527,0.3960724,-0.73701876,0.64001584,-0.04643009,-0.286847,-0.10006833,0.4029682,0.25989068,-0.24545604,-0.10792455,0.16773094,-0.20110153,-0.21836501,-0.061217383,-0.36632988,-0.36227563,-0.7291083,0.083564766,-0.44229028,0.06317533,-0.12098077,0.24171089,-0.55207926,-0.055173956,-0.09230259,0.8593393,-0.30214024,-0.110987835,0.44023636,-0.273713,0.21937226,-0.77737516,-0.13014412,-0.091775365,0.16071974,-0.0127202,-0.33803943,0.4167739,0.20249623,0.5301149,0.07984144,-0.38271257,-0.41666594,-0.00080322137,-0.038809236,0.5181961,-0.30378515,-0.59070116,-0.17632762,0.044811673,0.34212705,0.33979732,0.07742122,-0.17662336,0.17276514,0.13117144,-0.23087949,0.8423242,0.7077779,-0.18847565,-0.014192984,0.2162815,0.3727585,0.2935804,-0.17632204,0.05641042,0.16862796,-0.6552853,-0.23655137,0.07148609,-0.239192,0.54810804,-0.14546567,0.24607314,0.7537867,-0.29287627,-0.007355888,0.20144968,0.26796493,0.12217125,-0.49743846,-0.49516508,0.3924349,-0.5789592,0.31139967,-0.2677721,0.7985142,0.17864734,-0.4392195,0.28825244,-0.53604925,0.20291534,-0.07168281,0.60262513,0.7629786,0.42906666,0.53848743,0.93232197,-0.4082017,0.02781214,0.03798813,-0.18861237,-0.017573453,-0.30328152,0.22316116,-0.3310037,-0.08720593,-0.10906705,0.017081304,0.13676123,0.36976144,-0.66384685,-0.33055574,0.15739413,1.0414214,-0.16630322,0.002618546,0.9057066,1.1353118,1.3065044,-0.09918747,1.2413585,0.11929097,-0.29044375,0.09366693,0.10149687,-0.7698906,0.34799206,0.24694914,-0.40479985,0.13049413,-0.044012602,-0.13200426,0.6720079,-0.71182615,-0.03994353,-0.12769407,0.24977177,0.17568482,0.0047275317,-0.5957787,-0.1571437,-0.15694569,-0.12515324,0.15816778,0.3196282,-0.31117308,0.49390328,-0.23054184,1.1870328,-0.130103,-0.003463447,0.096366055,0.5636449,0.19778539,-0.16923904,0.05718446,0.04191742,0.5077568,0.05645633,-0.5836446,-0.07647962,-0.4911769,-0.2601613,-0.10773595,-0.45431623,-0.11089563,-0.028040735,-0.371968,-0.39930332,-0.23184747,-0.30858988,0.22394957,-2.5941045,-0.24272646,-0.16180442,0.32934788,-0.34785035,-0.21379705,-0.19024134,-0.6118131,0.65087914,0.17603867,0.67323744,-0.5333601,0.3963853,0.47715986,-0.8280056,-0.05024012,-0.8156298,-0.14749868,-0.007568175,0.31842205,0.16106172,-0.3141025,0.022078648,-0.0426631,0.88449293,0.20030063,0.12604155,0.27812597,0.4644458,-0.3006415,0.50337297,-0.26597282,0.6024458,-0.7383819,-0.2050829,0.2355814,-0.6528211,0.05325693,-0.41379052,0.02993795,0.6405351,-0.5059614,-0.9909918,-0.7051063,-0.02456686,1.2269105,-0.11505943,-0.5974951,0.3272228,-0.5276886,-0.047905054,-0.03106562,0.8031722,0.08550165,-0.07306682,-0.6284994,-0.09198821,-0.15531994,0.044126544,-0.026201867,0.04120382,-0.30961326,0.6876413,-0.1061918,0.253571,0.27047274,0.26390895,-0.52952886,-0.33257055,0.021629186,1.111375,0.43951952,0.26837417,-0.20721349,-0.051411882,-0.42923605,-0.3491372,-0.177005,0.80905515,0.8205246,-0.21631923,0.14678352,0.4570738,0.024943752,0.1241848,-0.09681606,-0.6191923,-0.3471279,0.10243365,0.79644376,0.67586136,-0.0006311102,0.4941413,-0.055025853,0.30705255,-0.31267488,-0.2835306,0.5570477,1.0624156,-0.31562006,-0.2698851,0.86423564,0.36478862,-0.37252054,0.6739078,-0.54209155,-0.5643081,0.53599864,-0.17492619,-0.70659965,-0.018907065,-0.3820363,0.10682416,-0.7121626,0.2575925,-0.4100317,-0.6194225,-0.42176753,-0.34158608,-2.9517066,0.10592062,-0.41289207,0.06510531,-0.32370383,-0.21809453,0.121999905,-0.4743908,-0.77437,0.21118775,0.15508416,0.8290485,-0.26579145,0.17282167,-0.39043933,-0.31937912,-0.30052313,0.110879414,0.31537417,0.32475913,0.12380907,-0.42304116,0.10188972,-0.021869998,-0.5218185,0.01317459,-0.8109024,-0.49396375,-0.1994258,-0.7874424,-0.26816732,0.8776572,-0.26890704,0.049888674,-0.15586047,0.23503913,0.038019966,0.3070439,-0.017261205,0.30264512,0.030374305,-0.22831224,0.17983235,-0.1600035,0.4373193,0.17367233,0.4444191,0.335372,0.054434873,0.2100688,0.7583391,0.8689266,-0.16655152,1.2549329,0.52197576,0.036024086,0.27844608,-0.17583683,-0.5343733,-0.5347545,-0.28755382,0.19364251,-0.53524005,-0.22239326,0.13469046,-0.45160952,-0.94465566,0.7829619,-0.03480817,0.2985533,0.045917474,0.23620997,0.53418833,-0.3189609,0.060382184,0.018187052,0.05868206,-0.4420374,-0.16270219,-0.7056099,-0.53261507,-0.123149395,0.98346883,-0.24270357,-0.09097069,0.10871989,-0.15379487,-0.005758841,0.13526247,-0.0439949,-0.03256876,0.45761302,0.035127167,-0.6555434,0.22960113,-0.2209601,-0.10608551,-0.69523233,0.39245623,0.8595037,-0.7573604,0.8182783,0.39314812,-0.08400757,-0.61603165,-0.67931026,-0.19980635,-0.096944764,0.02670127,0.49021557,0.16860224,-0.8198229,0.49791366,0.47389123,-0.3635607,-0.86257786,0.4013983,-0.20979981,-0.044269346,-0.02288044,0.3369846,0.19926849,-0.08459462,-0.13454936,0.27962184,-0.4656627,0.35236865,-0.005402473,-0.13146758,0.53790224,-0.21482435,-0.20628966,-0.9030474,0.022527196,-0.80757976,-0.2353258,0.49820158,-0.101656824,0.050893947,0.21069899,0.099944904,0.23421821,-0.07465053,0.039182134,-0.22631587,-0.33830345,0.53335565,0.5808826,0.55984396,-0.51057965,0.6907915,0.15424241,-0.18899131,0.102475435,0.06738266,0.4211655,0.015025448,0.7154599,-0.12626588,-0.12342452,0.12698078,0.97264063,-0.01476989,0.4700597,0.09610427,-0.017890371,0.0053779106,0.10043469,0.0752343,0.20878229,-0.8447047,-0.08844226,-0.34531522,0.14525042,0.62392914,0.15220998,0.42851207,0.06585906,-0.3410691,-0.14316644,-0.012324032,-0.18612257,-1.7682036,0.6598578,0.113496326,0.94766116,0.14301148,0.22772108,-0.2463766,0.85997427,0.0930388,0.13176237,0.52380127,-0.05179639,-0.3802704,0.68097866,-0.69806266,0.71336305,-0.13083173,0.14933972,-0.17000084,0.15981865,0.5390386,0.88024217,-0.20833626,0.058835246,0.0033257792,-0.38405865,0.3526325,-0.65231997,0.08240939,-0.46577442,-0.31426027,0.5378044,0.5868551,0.29151657,-0.1607653,-0.011275144,0.23649582,-0.10318342,0.16124378,-0.030732729,-0.23498653,-0.07514818,-0.81320953,-0.006843223,0.50729537,0.054481506,0.3456133,-0.011789262,0.19679956,0.40063456,-0.05047715,0.020342438,-0.14869303,-0.723573,-0.22621289,-0.50147665,-0.71924984,0.3309557,-0.10632215,0.19080104,0.21605574,0.011527217,-0.4371728,0.5237209,-0.092996694,0.8054331,-0.30652186,-0.33963406,-0.4726198,0.1568333,0.13687067,-0.4063076,0.06325981,-0.3809021,0.121645935,-0.42333403,0.4989585,-0.26118794,-0.4980481,0.037463058,-0.15907085,-0.06900229,0.6645909,-0.1918209,0.19795808,0.027601806,-0.44231704,-0.29086348,-0.49735433,-0.109496444,0.24631771,0.1121753,0.15264702,-0.1985579,-0.33700818,-0.2568355,0.43297416,-0.09773534,0.1923222,0.6032681,0.25440022,-0.22458762,-0.101925105,0.1703438,0.98103654,0.1254827,-0.24670133,-0.5390611,-0.38168314,-0.41691783,0.20245433,-0.050435122,0.45309752,0.12542032,-0.23478328,0.7557202,0.09163539,1.2267141,0.116967134,-0.3067014,-0.03454787,0.5752068,-0.036428437,-0.010868024,-0.50968146,1.0009451,0.42478874,-0.1998745,0.0062246206,-0.7305052,0.15100151,0.2829301,-0.23304228,-0.4634491,-0.021975571,-0.56848395,-0.2817975,0.48121837,0.3829037,0.2706558,-0.21135662,0.14862747,0.35420564,0.17673796,0.47291192,-0.6891046,-0.0056893,0.45279217,0.39663896,-0.061831877,0.17341818,-0.44107673,0.32952073,-0.5029608,0.16172034,-0.31602478,0.21326314,-0.27377084,-0.40730035,0.37729314,-0.0680907,0.57664603,-0.32753047,-0.31532538,-0.071491696,0.37816074,0.2585286,0.11980154,0.68877155,-0.2599449,-0.2223247,0.2150499,0.89048785,1.1827542,-0.26017192,0.09554016,0.2582634,-0.3243762,-0.78159505,0.42038143,-0.37834823,-0.019037947,0.032265242,-0.31746694,-0.6002662,0.19283889,0.06837153,-0.18995437,0.2113831,-0.6189175,-0.35387653,0.114183575,-0.17376214,-0.249043,-0.36137164,0.15505038,0.4761342,-0.20058197,-0.42551842,0.036652118,0.46438703,-0.01841212,-0.69834954,0.038756393,-0.46090487,0.20533128,-0.0112151345,-0.36209872,-0.011358217,-0.20424318,-0.7101774,0.20476769,-0.08810587,-0.3889944,-0.0060669915,-0.099491924,-0.07160408,0.75270593,-0.18935555,0.3521581,-0.4007239,-0.44747475,-0.9671371,-0.19732744,0.22878402,0.20835337,-0.116160415,-0.8048439,-0.24716407,-0.17480065,-0.101459816,-0.04016829,-0.4148245,0.45525905,0.10406778,0.5731588,-0.20630623,-0.73792547,0.1980358,0.19116296,-0.14232942,-0.51834816,0.38356832,0.1273378,1.0462201,0.086291075,0.051226508,0.17823206,-0.3763335,-0.118346326,-0.2498892,-0.46271762,-0.61246526,0.020687722,978 +969,0.43785745,-0.21529947,-0.54181105,-0.14853336,-0.19912711,-0.23195566,-0.23009335,0.8508484,0.4205599,-0.27069312,-0.04425769,-0.123405054,0.06539181,0.35413525,-0.190318,-0.28298795,0.13974658,0.0820749,-0.4710825,0.57639617,-0.31939974,0.030009221,-0.085095115,0.72454137,0.3503667,0.25165877,0.09437551,0.23266172,-0.08328212,-0.350347,0.016081369,0.17654024,-0.60418123,0.2648795,-0.25702888,-0.3617566,-0.003575038,-0.6054974,-0.50302243,-0.8430614,0.422629,-0.8219473,0.42710254,0.24148408,-0.23223084,-0.0039198454,0.46173707,0.2906767,-0.21150349,-0.18522273,0.08191243,-0.06521416,0.15417208,-0.2711991,-0.11860022,-0.3372598,-0.50348574,-0.08142347,-0.50901896,-0.13861145,-0.2952061,0.23927735,-0.32732624,-0.15906115,-0.025127292,0.7504472,-0.2705164,0.054135323,0.21855456,-0.21778613,0.4319712,-0.5919777,-0.26821557,-0.11512013,0.16759814,-0.08420014,-0.38885653,0.31151992,-0.0037338166,0.10608061,-0.32047638,-0.06917512,-0.2415722,-0.048762094,-0.2524387,0.4643947,-0.32241443,-0.7411389,-0.027026892,0.12904955,0.2343794,0.31209007,0.40273705,-0.21766472,-0.033300307,-0.16106142,-0.23671713,0.67545104,0.6303208,-0.028830517,0.07381869,0.19150032,0.23657025,0.20493048,-0.35443684,-0.01647441,0.12748593,-0.5025521,-0.11921049,-0.17503013,-0.10816951,0.590086,-0.1302951,0.35519555,0.63903606,-0.19372052,-0.23718505,0.26053336,0.33427516,-0.051633105,-0.4078369,-0.3913318,0.3098574,-0.42248031,0.13199683,-0.12610391,0.68211275,0.11561856,-0.66698265,0.1873536,-0.5545082,0.04079279,-0.12939523,0.43036234,0.79398227,0.48521683,0.4313021,0.71157974,-0.3047841,0.11337224,-0.14774007,-0.21807188,0.21288306,-0.25044325,0.1430967,-0.44963607,-0.27340794,0.06629947,-0.15107045,0.27987948,0.36072376,-0.50944686,-0.26029179,0.2683899,0.8414688,-0.17164384,-0.0604584,0.8568585,1.2961339,0.955617,0.08697964,0.7002367,0.04521703,-0.15812558,0.18124223,0.2485833,-0.903652,0.30216014,0.16414925,-0.24188274,0.17100574,0.06937297,-0.021740489,0.27868107,-0.5669355,-0.16507243,-0.07146334,0.4372201,0.079256944,-0.12804066,-0.24733725,-0.33098078,-0.020969234,0.17754981,-0.017052835,0.18429424,-0.12544331,0.43209207,0.0054788073,1.1873623,0.081051596,-0.017213903,0.08369237,0.86346334,0.24607368,-0.2528726,-0.052896943,0.27021664,0.3955762,0.21278192,-0.577148,0.16924988,-0.16904268,-0.4015835,-0.11487095,-0.40612993,-0.0139457425,-0.10670157,-0.4879238,-0.24505593,-0.2382266,-0.092045136,0.31816623,-3.1849787,0.0013200749,-0.018807525,0.32384032,-0.027993621,-0.1489247,0.17837831,-0.42559117,0.53763634,0.46277758,0.49018288,-0.6443186,0.23514758,0.42045403,-0.6441034,0.034915198,-0.6514456,0.057441536,-0.14460176,0.3695757,0.00964143,-0.03568616,0.2586574,0.31605232,0.4020131,0.18365265,0.26502237,0.2315474,0.41462812,-0.14602049,0.34522593,-0.16990374,0.28944552,-0.49490005,-0.22860499,0.13460456,-0.6420673,-0.026101394,-0.30934152,0.004398197,0.63005936,-0.3917786,-1.0347114,-0.38590145,0.25507495,1.0511708,-0.18446727,-0.62181616,0.26678827,-0.515317,-0.13943352,0.018369026,0.6719843,-0.15291432,0.18268242,-0.7044067,0.009491909,-0.28554803,0.07871874,0.010145139,-0.21810393,-0.4324056,0.7003443,0.115809895,0.3716273,0.25903553,-0.07283569,-0.8348635,-0.4299405,0.17176615,0.5565429,0.42519665,0.10881638,-0.11649975,-0.052839085,-0.30276233,-0.041382097,0.23633552,0.75864226,0.66521543,-0.16665526,0.4269122,0.36376813,-0.17525946,0.042692862,-0.11292717,-0.38368416,-0.22105981,0.17393261,0.74083036,0.8279469,0.026390754,0.47268888,0.010096639,0.2547748,-0.27249533,-0.48200914,0.63582826,0.82394403,-0.07202098,-0.3750958,0.61641455,0.51328,-0.26614836,0.47309148,-0.4990032,-0.4523883,0.5001093,-0.030823566,-0.49293405,0.16095313,-0.2926719,0.1180486,-0.77159995,0.11382327,-0.3957116,-0.59712005,-0.5945784,-0.18833143,-3.1148407,0.1421353,-0.26821625,-0.31447902,-0.296739,-0.36843356,0.24489266,-0.50622773,-0.48513606,0.23463902,0.110381335,0.89828455,-0.10327783,0.08745343,-0.1526153,-0.3253245,-0.41295883,0.07354794,0.20156574,0.40106973,0.07008536,-0.46139434,-0.1911801,-0.023663597,-0.542903,-0.022077555,-0.40863073,-0.3683255,-0.20057307,-0.68223834,-0.37949914,0.50691223,-0.17130233,-0.056526493,-0.21663937,-0.041129276,-0.040615287,0.42661163,0.09492123,0.04375427,-0.008048193,0.018389119,0.20014682,-0.2634045,0.15895614,-0.04284475,0.3900172,0.17376278,-0.017344277,0.18488897,0.4582497,0.660004,-0.16102761,0.93483543,0.392789,0.009192619,0.33718494,-0.15108274,-0.3163851,-0.31530383,-0.11457367,0.11871856,-0.37803277,-0.27694044,-0.014154077,-0.37916365,-0.6774925,0.506439,0.09921358,0.23214854,0.051610053,0.32861048,0.43557504,-0.14005324,-0.04423265,-0.087429516,-0.10435241,-0.62649536,-0.16687435,-0.53688097,-0.23665403,0.039917324,0.7540777,-0.2835918,-0.109406784,0.13860309,-0.20833713,0.0991903,0.34482732,-0.17620349,0.12262566,0.3558211,-0.14227691,-0.6999063,0.35127556,-0.29644844,-0.1931862,-0.671709,0.23892854,0.53195316,-0.5742545,0.70377845,0.19034769,0.15789637,-0.60770833,-0.5770914,-0.21242858,0.033867463,-0.20793776,0.45423096,0.50056815,-0.9856035,0.47981253,0.24212432,-0.40488723,-0.61666435,0.59043276,-0.0031111294,-0.41647664,-0.27915907,0.18973039,0.11294825,0.036942307,-0.35911292,0.21295781,-0.29167172,0.2063583,0.006245591,-0.1302472,0.37272254,-0.1281413,-0.071631916,-0.41734105,0.21882986,-0.5571496,-0.3428415,0.3730713,-0.04452901,-0.00095185364,0.26516283,0.04863299,0.19754046,-0.12513235,0.14365618,-0.36707962,-0.22556743,0.2824342,0.5381178,0.5485421,-0.53792864,0.69432664,0.16149867,-0.12504865,0.1120704,0.17126824,0.35812587,0.15220554,0.41105536,0.11988661,-0.34435594,0.16608201,0.7121659,0.12669411,0.47453868,-0.15045033,0.24428263,0.04305296,0.10395167,0.20128718,0.21506095,-0.5354687,-0.107157595,-0.5188248,0.13322736,0.39673653,0.094150044,0.31621453,0.13429157,-0.3913824,0.059420053,0.29025576,-0.0637705,-1.555379,0.5447191,0.38085464,0.9170631,0.43465713,0.049972057,-0.27226996,1.0350333,-0.03908658,0.029373683,0.24649468,0.2689092,-0.34395325,0.6315456,-0.83715034,0.6126355,0.04630402,-0.11461022,-0.23240696,0.06746539,0.40471983,0.78859067,-0.22077504,0.008301788,0.23831515,-0.42427835,0.009879806,-0.48096982,-0.076231115,-0.6120004,-0.29965106,0.59088904,0.49529693,0.3249591,-0.13468315,-0.040509615,0.13003339,-0.09867115,-0.08147928,-0.036308024,-0.032843627,-0.07651766,-0.7452618,-0.13060512,0.5010834,0.005817351,0.26268017,0.114241965,0.028214758,0.34790042,-0.0747442,-0.008236137,-0.09827206,-0.6983401,0.027236192,-0.2654611,-0.41877174,0.78192544,-0.45974243,0.2941401,0.29867554,0.21741596,-0.1746471,0.34349772,0.053198203,0.7221351,-0.24324061,-0.16817378,-0.30885878,0.10163097,0.19449665,-0.1676547,-0.27752697,-0.25906178,-0.13638236,-0.53961533,0.43064946,-0.16286626,-0.12053284,0.061045192,-0.14820613,0.092202395,0.5831037,-0.062827274,-0.1091047,0.16416727,-0.3785383,-0.18084826,-0.23246263,-0.26696688,0.38286668,0.04981087,0.059643593,-0.08278746,-0.08625367,-0.07538487,0.27879205,-0.13721406,0.39867136,0.29503644,0.38811266,-0.232095,0.04905851,0.06439007,0.706506,-0.06521723,-0.07976344,-0.24333392,-0.48441017,-0.45323142,0.05109767,0.0050356416,0.30948153,0.09933967,-0.10150168,0.8238558,-0.11420096,1.017574,-0.10849187,-0.48931134,0.26174468,0.43466628,-0.13746256,0.01993512,-0.22765207,0.8313347,0.3944707,-0.11441298,-0.004559587,-0.30471915,0.08708647,0.2413115,-0.21206756,-0.38288733,-0.043087635,-0.5256415,-0.14210482,0.4001545,0.36139432,0.22132276,-0.06625866,-0.0029071977,0.43475953,0.04981248,0.28169134,-0.6037571,0.026405519,0.24924435,0.3949913,0.12038222,0.08652854,-0.48249733,0.2839276,-0.47807267,0.09021208,-0.40620658,0.31955102,-0.37244904,-0.52571493,0.02294919,-0.09310841,0.4985384,-0.43203732,-0.16400507,-0.2807736,0.5489886,0.24639668,0.17658249,0.43335372,-0.3621769,-0.0003968938,-0.12825555,0.5085547,0.67610687,-0.34114197,-0.3133594,0.31086913,-0.37053248,-0.8310023,0.31811938,-0.42671862,0.13378285,0.052024208,-0.027612321,-0.50843835,0.1908319,0.30810794,0.14738943,-0.16118604,-0.5952976,-0.26795065,0.29755655,0.05437957,-0.3033432,-0.4038418,0.124754235,0.4566596,-0.11225209,-0.1985967,0.19517232,0.243194,0.06672688,-0.47485122,-0.048229016,-0.35901058,0.3661419,-0.07869523,-0.37451646,-0.28545883,0.07467659,-0.42716464,0.3867879,-0.26657307,-0.20092084,0.054142438,-0.12277821,0.0075341137,0.8178976,-0.42172834,0.19480433,-0.46137398,-0.5338879,-0.69204086,-0.16598572,0.37983048,0.01996335,0.06743336,-0.8521404,-0.13581939,-0.039226327,-0.14584446,-0.16711609,-0.30049372,0.35715845,0.09450826,0.33592203,0.049441587,-0.7621,0.32968166,-0.04937085,-0.04338907,-0.6674345,0.532786,-0.06427366,0.7388605,0.059430633,0.0005910085,0.197364,-0.43527937,0.14147153,-0.16596673,-0.34632123,-0.42390004,0.11673846,999 +970,0.46003637,-0.16567045,-0.67007965,-0.16974756,-0.21101014,-0.1594577,-0.27668777,0.7732242,0.050914686,-0.4916192,-0.42406082,-0.118549086,-0.015549749,0.5217188,-0.20944528,-0.5555681,0.059235215,0.3058947,-0.6955105,0.29559523,-0.42072588,0.3222664,-0.080084205,0.4722415,0.12596639,0.1941849,0.0786701,0.042102575,0.1528044,-0.10543959,0.08263488,0.12129297,-0.5651076,0.14476644,-0.22165212,-0.6805968,0.074751884,-0.6210568,-0.30641204,-0.7739979,0.38736778,-0.7504811,0.7062357,-0.012879582,-0.27899855,-0.009419012,0.14498745,0.53041947,-0.1356797,0.021363799,0.083960906,0.1016943,-0.089725316,-0.03199369,-0.070236504,-0.31963858,-0.67263424,0.14279985,-0.32706562,0.033636205,-0.1508166,0.18978599,-0.2672931,0.2943233,0.024873804,0.3147065,-0.35002232,-0.0053945095,0.06998883,0.06553167,0.23319216,-0.7040429,-0.074820876,-0.09598054,0.5680518,-0.4053933,-0.24024348,0.16383174,0.265894,0.6191317,-0.10324423,-0.07992086,-0.26521212,-0.09837971,-0.39272353,0.7538985,-0.1781005,-0.4908591,0.010649944,0.048878234,0.21432877,0.29554528,-0.04788223,0.03794144,-0.1695613,-0.30905694,-0.2496239,0.31288892,0.53498256,-0.36637062,-0.28260082,0.4713618,0.69256914,0.23269287,0.028230637,0.14698112,0.09501864,-0.7133832,-0.24767947,-0.28057718,-0.1981401,0.44651335,-0.14191537,0.7471445,0.43208137,-0.031699996,-0.041022114,0.20116791,-0.035292983,-0.012947733,-0.08409222,-0.5401243,0.3166101,-0.3126758,0.2594338,0.045764167,0.6220437,0.15853946,-0.8507973,0.14895874,-0.6132597,0.013886874,-0.09426662,0.51138246,0.6530857,0.39093563,0.29123467,0.7741567,-0.2724269,0.17334785,0.014353519,-0.100803114,-0.21523686,-0.039632667,-0.055536926,-0.43309826,0.12344853,0.03134008,-0.15026553,0.3957526,0.38068146,-0.58386356,-0.15357304,0.109577455,0.83374625,-0.26728302,-0.14834067,0.8457425,0.8889335,1.1040801,0.052317105,1.1578054,0.1625729,-0.26658297,0.1662119,-0.17269298,-0.867493,0.39832982,0.4286368,0.13986103,0.42169818,0.067930594,-0.069554664,0.513324,-0.5392296,-0.011648612,-0.072414435,0.118885994,0.1531937,0.020203263,-0.59830433,-0.25312278,-0.2526837,-0.0581594,0.12106991,0.20904139,-0.11943878,0.27726132,0.04171755,1.5462792,-0.011972934,0.047173455,0.09387137,0.44409022,0.18191297,-0.3659354,-0.25294012,-0.08150782,0.23813191,-0.043293715,-0.75539374,0.12300998,-0.19137475,-0.4158698,-0.33462203,-0.15212396,-0.1422933,-0.14344685,-0.30398393,-0.36850753,-0.30414438,-0.25475493,0.42007342,-2.623104,-0.37487784,-0.12269741,0.5304131,-0.3980108,-0.4749872,-0.26899648,-0.44715247,0.44925493,0.40820807,0.57655096,-0.53167313,0.4635829,0.32542023,-0.57741535,-0.0750721,-0.76809186,-0.10093467,0.18131544,-0.044038795,-0.06271,-0.10246129,-0.14176819,0.08114286,0.36244157,0.049953766,0.10472345,0.42544803,0.49199766,0.12660363,0.4851783,-0.29430696,0.46896094,-0.5320722,-0.18718383,0.19281091,-0.5969842,0.11082194,-0.34081924,0.15379919,0.55473125,-0.79253834,-1.0581456,-0.6990747,-0.07998705,1.1544263,-0.12333038,-0.29000193,0.27362227,-0.4619884,-0.1364732,-0.12534864,0.5606877,-0.37295943,-0.22467665,-0.7509993,-0.34672934,-0.19939016,0.3154822,-0.0077396706,-0.050253294,-0.5572616,0.478656,-0.19332923,0.41611964,0.31896043,0.26583132,-0.1429477,-0.45214695,0.00022348762,0.7122451,0.47890526,0.23766284,-0.31200448,-0.14217834,-0.5912037,0.088007405,0.09210623,0.5034467,0.75104344,-0.03851856,0.2213895,0.3018257,0.07962094,0.11300848,-0.13292012,-0.28708655,-0.21270294,-0.014600563,0.59184134,0.5742653,-0.11744144,0.47994432,-0.01687713,0.15798353,-0.37436542,-0.28089052,0.40915623,0.9163941,-0.14428595,-0.24462616,0.73373127,0.29838815,-0.21869135,0.45309076,-0.7429956,-0.45075536,0.29826537,-0.0196244,-0.33103848,0.06405389,-0.18828069,0.20125529,-1.0219259,0.26029474,-0.32536232,-0.4758121,-0.67069024,-0.07691856,-2.1511664,0.2669583,-0.06419905,-0.09479008,-0.09824665,-0.4109773,0.06756546,-0.49808803,-0.86522216,0.30249354,0.060143016,0.7317046,-0.19058363,0.1855,-0.078444384,-0.3677341,-0.5762094,0.05742777,0.40732312,0.41208673,0.20526138,-0.49162617,-0.05562214,-0.056654096,-0.4450124,0.14110424,-0.633548,-0.38855797,-0.13183773,-0.6841652,-0.13798483,0.6775986,-0.18880136,-0.018349674,-0.25428692,-0.030911688,-0.06373303,0.33224458,-0.057620913,-0.04675598,0.084175535,-0.19535704,0.04283584,-0.14216737,0.41782898,-0.012706017,0.29516393,0.16213909,-0.2512905,0.2336472,0.58997023,0.72278607,-0.111110285,0.8381648,0.5607902,0.02213653,0.21518476,-0.19981465,-0.30241528,-0.11560384,-0.16018668,0.047711432,-0.3546752,-0.4448327,-0.06767224,-0.4794437,-0.8695921,0.3452205,-0.16382077,-0.038040303,0.18032318,0.33434725,0.46398625,-0.06441563,-0.1051592,-0.0470975,-0.0496838,-0.47881794,-0.38444424,-0.5006107,-0.3752219,-0.027382607,1.4174106,-0.2639063,0.17266122,0.015061013,-0.04870199,0.0024415613,0.16318148,-0.18692282,0.111300305,0.403546,-0.17816843,-0.6739742,0.37609595,-0.27585977,-0.4033943,-0.6396648,0.06669442,0.5047611,-0.60680753,0.37556022,0.4238378,-0.015308261,-0.17894812,-0.6466676,-0.13869874,0.08363461,-0.28767186,0.20393498,0.31800658,-0.7271215,0.49553546,0.2174209,-0.16082864,-0.8933271,0.76477575,0.08591914,-0.31029445,-0.08969688,0.3152148,0.18235631,-0.087381616,-0.29804847,0.10765843,-0.10987477,0.35915264,-0.0077770473,-0.11310724,0.43558782,-0.46493942,0.084660314,-0.76478153,-0.030294582,-0.6540687,-0.054011475,0.24140134,0.048228584,0.17761166,0.19308189,0.24788491,0.40397677,-0.47229385,0.016895823,-0.26030636,-0.3276303,0.14943814,0.33156312,0.49803132,-0.5207435,0.58184755,0.0132607175,-0.1545781,-0.004352319,-0.013398051,0.3635219,-0.24982819,0.3286878,0.07625528,-0.19362617,0.02371583,0.7590477,0.2737148,0.07032343,0.05775587,-0.0088103395,0.15961418,0.11344167,0.13676527,0.05159406,-0.46243072,0.017015394,-0.32752925,0.044555783,0.63892114,0.17830284,0.20836075,-0.19108419,-0.320276,0.007763301,0.1946539,-0.07475276,-1.1568851,0.44980788,0.033022195,0.87278444,0.50302964,0.063071236,0.2595745,0.5934814,-0.09388826,0.26630214,0.30475843,0.17883725,-0.24973091,0.6160755,-0.5148309,0.73146623,0.11281345,0.015041625,-0.15182538,-0.0017312944,0.46818584,0.7742539,-0.06007091,0.104813054,0.060656983,-0.1325121,-0.00024746655,-0.34686646,-0.13201961,-0.8074862,0.022010688,0.801167,0.40016955,0.18113038,-0.08179385,-0.028351218,0.11139146,-0.043579042,0.13068779,-0.030407554,0.14464906,-0.10255524,-0.6064447,-0.028586287,0.4341744,0.23599282,0.16090682,0.04199589,-0.24671099,0.34572437,-0.023042407,0.11598365,-0.0362687,-0.8424207,-0.13523398,-0.54424125,-0.17198573,0.19534658,-0.066991135,0.21522374,0.31317398,0.16612923,-0.32147494,0.34323555,-0.124347664,0.7702327,0.08546809,-0.16921258,-0.38337484,0.22937231,0.2590902,-0.2612007,0.045724403,-0.40954477,-0.06113826,-0.5772253,0.551878,0.21371698,-0.2936489,0.35367203,-0.06079916,0.017359126,0.43694624,-0.13628237,0.08169473,0.13243085,-0.08833645,-0.19609152,-0.19161336,-0.31897658,0.29892454,0.3203838,0.12639575,-0.10478232,-0.045225393,-0.061055064,0.72712916,-0.059828974,0.43514124,0.32771525,0.2761592,-0.4210392,-0.118287586,-0.0021296293,0.60625213,-0.107504144,-0.3178814,-0.3516976,-0.45005733,-0.15188578,0.4314921,-0.11624755,0.36555335,0.1525933,-0.12455497,0.3830879,0.2219868,1.0346508,-0.038409065,-0.20740196,0.084696606,0.4247485,-0.049035996,-0.2840787,-0.38723785,1.02475,0.39465013,-0.11375674,-0.11256905,-0.19821289,-0.025291178,-0.009387118,-0.1744251,-0.23072433,-0.10842774,-0.4827159,-0.40413037,0.19552289,0.15601775,0.07888486,-0.17396347,0.15049754,0.31621093,-0.09351649,0.23329571,-0.41792804,-0.19729015,0.3378694,0.2873964,0.04722352,0.1500414,-0.5836529,0.34602255,-0.6814481,-0.016040122,-0.35574558,0.26629123,-0.10055946,-0.36918288,0.18375885,0.20888312,0.4024304,-0.3037203,-0.31944078,-0.1272336,0.49242878,0.21158549,0.30770963,0.43900934,-0.28073162,0.09573936,-0.140274,0.50047696,0.87598515,-0.16237684,0.07897396,0.29058224,-0.18220861,-0.48522362,0.3514452,-0.4933055,0.17147133,0.02991938,0.023219252,-0.60494655,0.3581763,0.18949099,0.0846835,-0.06584686,-0.6620548,-0.3577024,0.12948504,-0.25340715,-0.1638454,-0.5205111,0.08138785,0.70708835,-0.0046801297,-0.25554544,0.13369635,0.330516,-0.13184601,-0.6226186,0.1907794,-0.57617605,0.21337008,0.06709801,-0.28073493,-0.46659818,0.015942955,-0.46330953,0.32605976,0.08463525,-0.2587077,-0.0073693423,-0.5162831,0.04745543,1.0122595,-0.23629944,0.2657495,-0.38312998,-0.38809663,-0.8477384,-0.11143877,0.48535043,0.38917118,-0.013366118,-0.78856283,0.11961558,-0.14634031,-0.41092673,-0.016331118,-0.115543865,0.44385687,0.15851527,0.47770777,-0.18849592,-0.88042736,0.09363316,0.02001114,-0.5311832,-0.29768157,0.51504403,0.30510548,1.1475219,0.08047571,0.09518891,0.15556201,-0.48863012,0.10753395,0.005099139,-0.058511328,-0.697187,-0.012970725,10 +971,-0.057643574,-0.14572653,-0.5093993,-0.049719196,-0.12182089,-0.089450344,-0.16710655,0.6396051,0.15733443,-0.4013616,1.4197826e-05,-0.27596885,-0.057852495,0.4131361,-0.15312397,-0.55610335,-0.20730166,0.29222026,-0.67414033,0.6197014,-0.44499937,0.056441866,0.020185411,0.33113942,0.1079584,0.14507933,-0.018458176,-0.028499853,-0.034910988,-0.1358054,7.7039e-06,0.1789721,-0.3103157,0.33221954,-0.033104487,-0.19032745,0.11086748,-0.39052638,-0.2700223,-0.5947369,0.16268459,-0.6213505,0.3625927,-0.07596738,-0.24102196,0.3427735,0.2355767,0.3883009,-0.21070966,-0.23422937,0.157758,-0.14125004,-0.4475495,-0.15005007,-0.4766596,-0.20711012,-0.56371564,0.009120503,-0.25736117,-0.05284409,-0.2325711,0.01672158,-0.29416677,0.036364336,-0.17955033,0.47729865,-0.32918444,0.15519246,0.16924444,-0.03784241,0.19173504,-0.65033346,0.012323132,-0.06344406,0.1559407,0.024066176,-0.26809937,0.2290822,0.22629225,0.38187099,-0.21117035,-0.03711771,-0.31472445,-0.32809857,0.019704778,0.477475,-0.04982657,-0.21087256,-0.15159905,-0.0061827423,-0.021915877,0.29421467,0.037253365,-0.39412802,-0.11638343,-0.18061168,-0.44494948,0.20612581,0.38761362,-0.20786002,-0.19747679,0.43989453,0.46522897,0.316341,-0.2736512,-0.14001384,-0.13464376,-0.568175,-0.12122922,0.18876357,-0.048133366,0.4884015,-0.10940441,0.16943443,0.40969285,0.053057086,-0.20532684,-0.08670403,-0.006189823,-0.163589,-0.34842706,-0.24871282,0.29123813,-0.38608474,0.16569564,-0.19669934,0.6501695,-0.09270587,-0.89720803,0.47403616,-0.5427619,0.18596247,-0.12890945,0.575976,0.63263404,0.53105766,0.310085,0.59404886,-0.28068474,0.13783808,-0.19269472,-0.28027806,0.088778615,0.108247295,0.20425399,-0.49245915,0.12850389,0.022716511,-0.1311135,0.059493005,0.29115278,-0.423671,-0.06850915,0.16515201,0.6496364,-0.31542316,-0.21145408,0.6105476,1.1128975,0.92813474,0.1294422,1.154574,0.1913596,-0.19726875,0.23397365,-0.21284619,-0.886216,0.13527408,0.24785414,-0.06597738,0.17005248,0.07162662,-0.040487837,0.42410856,-0.055775743,-0.09625568,-0.205066,0.2707992,0.034476656,0.07227577,-0.25765845,-0.4356695,0.0703045,-0.092581786,0.008646563,0.24300185,0.022554198,0.5077868,0.2013968,1.8062146,0.12864749,0.15572992,0.10518954,0.35125235,0.05674506,-0.11298349,-0.21430998,0.3488149,0.22515912,-0.001112485,-0.6528581,0.30733237,-0.09229998,-0.4338583,0.01777244,-0.34573707,0.0001329422,-0.27394456,-0.23003808,-0.2031457,-0.15623829,-0.43554682,0.46655124,-3.0930042,-0.015862262,-0.15792878,0.13755754,-0.25783998,-0.32206798,-0.07493782,-0.39807016,0.56707406,0.30510268,0.51079744,-0.4355051,0.31672066,0.3862753,-0.6722298,-0.13625653,-0.71959245,-0.0810117,0.05153046,0.29097003,-0.21084051,0.049394194,0.059297703,-0.0707074,0.21706727,-0.07521121,0.1328656,0.47437105,0.406602,0.045693982,0.5700158,-0.24709396,0.56106126,-0.29985946,-0.096876815,0.026343185,-0.2700783,0.34038797,-0.15614207,0.12752469,0.49309254,-0.477777,-0.6681889,-0.24213147,-0.26989576,1.345795,-0.49072805,-0.3270964,0.18347085,-0.25007173,-0.13774915,-0.21372876,0.44241184,-0.09356271,-0.4331972,-0.6779567,-0.023810893,-0.12106244,0.4784673,-0.08903398,-0.0027795925,-0.41227865,0.3852211,-3.582239e-05,0.55562294,0.5311851,-0.018628165,-0.39131436,-0.28144288,0.034073494,0.5391923,0.1977685,0.031665664,-0.21949601,-0.2508625,-0.36546943,0.014067614,0.12749064,0.43556795,0.46972194,-0.112951174,0.10056245,0.36069608,-0.35016093,0.024741769,-0.25079814,-0.33310464,-0.2525611,0.055256654,0.5411304,0.5688709,0.07085474,0.50433457,0.04392054,0.06637393,-0.21546099,-0.43292752,0.43805447,0.6490086,-0.1741643,-0.23750606,0.48185506,0.5764376,-0.3419125,0.37440398,-0.28032503,-0.12126267,0.60752285,-0.0466618,-0.34768683,0.2423242,-0.24227984,-0.07674181,-0.9994227,-0.09932648,-0.3987903,-0.49235764,-0.81155455,0.14530769,-3.0894744,0.16212094,-0.09571217,-0.31198207,-0.06789838,-0.20784657,0.064895876,-0.25712922,-0.6134282,0.18233833,0.32043973,0.44048738,-0.07237951,-0.12070416,-0.32081473,-0.15744145,-0.24439505,0.09327314,0.038808726,0.31415746,-0.14620826,-0.52538127,-0.060812376,-0.32603726,-0.3290607,0.10357511,-0.52706313,-0.0643159,-0.05384345,-0.7472651,-0.33256105,0.67873836,-0.44170156,-0.056324005,-0.17661777,-0.057749342,0.07307421,0.3227609,-0.12140568,0.1390079,0.09135196,-0.06302108,-0.17992647,-0.31660473,-0.05539902,0.058978647,0.24122521,0.34592193,0.049457036,0.19131418,0.49271423,0.7764927,0.1338487,0.92803085,0.4961875,-0.016524086,0.2921667,-0.32315856,0.17957063,-0.41460043,-0.07809968,-0.23458739,-0.3504251,-0.50712746,-0.07214701,-0.13587224,-0.6050803,0.5902667,0.34384274,-0.15164483,0.07646404,0.35407037,0.40949672,-0.04806315,0.25046176,-0.17433447,-0.20294006,-0.43869275,-0.36229572,-0.7096838,-0.2965181,0.16941252,0.87210286,-0.11959922,0.024668526,-0.07208059,-0.42187533,0.013216895,0.29543865,-0.03730632,0.4803222,0.19574182,-0.007025468,-0.50081915,0.46611285,0.06724333,0.0004511714,-0.55664265,0.3275481,0.6735729,-0.61264735,0.45820504,0.22090557,-0.08045815,-0.329933,-0.56322914,-0.24864988,0.03105005,-0.32331356,0.08903344,0.3144675,-0.87562275,0.4872489,0.34076336,0.0516964,-0.835063,0.4248499,-0.07322421,-0.22171903,-0.09140491,0.23689508,0.19621836,0.3155659,-0.30731243,0.15897247,-0.43331632,-0.021729821,0.09224311,-0.0037107854,0.23534803,-0.13999665,0.058096677,-0.7197243,0.17595978,-0.4452904,-0.23188761,0.5576123,0.10266845,0.30350488,0.01857093,0.07573342,0.26643604,-0.1394163,0.047772247,-0.18196781,-0.16022769,0.17803039,0.46972913,0.15402749,-0.568231,0.52953184,0.021488875,0.17929156,-0.018376421,0.009045154,0.3197158,0.14925571,0.26591113,0.07381539,-0.3734564,0.1510106,0.7082902,0.27561018,0.20938906,-0.024837326,0.11705755,0.44287968,-0.14438766,0.11310425,-0.0062072515,-0.47000456,0.0625384,-0.07511707,0.18714404,0.48984447,0.20009927,0.46196723,-0.13404766,-0.21193019,-0.009613737,0.122347966,0.09421384,-0.5774235,0.5723348,0.2484645,0.63042897,0.824567,0.021717776,0.17957693,0.7330984,-0.29418334,0.24694915,0.43779677,0.0051194774,-0.40787244,0.56934226,-0.65346175,0.53335226,0.030923147,0.0052220374,0.17052576,0.11364822,0.4917553,0.8509058,-0.23460951,0.030178586,0.05661596,-0.20119724,0.10382652,-0.24413309,-0.14070782,-0.41240102,-0.38679606,0.3787589,0.25328678,0.52522826,-0.1858562,-0.040664293,0.27138487,-0.045309365,0.29489484,0.072329275,-0.06414938,-0.1291739,-0.56471014,-0.26447767,0.627914,-0.16357227,0.2515487,0.13168655,-0.25872356,0.37015945,-0.060356498,-0.16250472,-0.03650926,-0.55623037,0.08319604,-0.12532079,-0.4803768,0.5938398,-0.22972047,0.31957585,0.15264894,0.07979337,-0.2844521,0.24351844,-0.01318118,0.8552367,-0.06289092,-0.18457665,-0.042316973,-0.04942907,0.13311553,-0.22004882,-0.15961617,-0.23526478,-0.07576808,-0.60078937,0.3580827,-0.15917686,-0.5155867,-0.04993845,-0.01032604,0.01718797,0.509589,-0.036866236,0.04137537,-0.2991208,-0.30211353,-0.19198695,-0.355606,-0.2462605,0.24398908,-0.11690603,0.18046588,-0.080416076,0.10695364,-0.091357365,0.53620183,-0.047391247,0.13236111,0.18545654,0.27978313,-0.3076908,-0.04856112,0.05172509,0.44412294,-0.080226175,-0.25021368,-0.05668353,0.010189056,-0.31329685,0.32465628,-0.10036502,0.5098152,0.029873382,-0.55338866,0.5998225,-0.1053348,0.934955,-0.12443503,-0.31008682,0.115441106,0.4254536,0.11262522,0.0075028725,-0.2663937,0.7433104,0.47007793,0.03577592,-0.18535869,-0.5824227,-0.16290793,0.19718897,-0.14285721,-0.27240798,-0.024975155,-0.44226646,-0.19725488,0.11325435,0.10092111,0.25880003,-0.14332704,0.010156041,0.1880336,0.20359762,0.40044928,-0.23409677,0.08421454,0.24107626,0.095430955,-0.024835372,0.1478927,-0.30996478,0.31373808,-0.6083746,0.3378294,-0.26947,0.106228724,-0.24654898,0.010363236,0.13077667,-0.1353205,0.22977784,-0.022417564,-0.3228099,-0.13952416,0.5213243,0.2493395,0.34207356,0.8404068,-0.2552616,0.12350045,0.044237174,0.48635578,0.8683051,-0.23983559,-0.31835654,0.25821725,-0.2852236,-0.5845829,0.20931287,-0.20642844,0.15116401,0.1520308,0.059509255,-0.39339906,0.10853281,0.2400283,0.015374494,-0.038924582,-0.46369654,-0.119855024,0.12545554,-0.38396916,-0.17263556,-0.46227694,-0.090502664,0.7574888,-0.28170627,-0.23264518,0.03911394,-0.086851284,-0.16168785,-0.44649523,0.106375694,-0.48233977,0.23654544,0.14860499,-0.49185172,-0.025361145,0.14149782,-0.5225344,0.055669308,-0.011841434,-0.20153275,-0.006339559,-0.3109024,-0.07103564,1.0641999,-0.2800628,0.18968563,-0.3302789,-0.6073303,-0.5929407,-0.20932141,0.30342156,-0.14308223,0.068244025,-0.50373447,0.009127599,-0.16192286,-0.38617495,-0.050798703,-0.34559268,0.43290004,0.051762115,0.093869,-0.117568806,-0.94620883,0.31663764,0.032006845,0.026716199,-0.35827738,0.58509696,-0.20961697,0.90100944,0.095926754,0.10972508,0.20886955,-0.4555261,0.13535371,-0.2119761,-0.30216998,-0.47746617,0.047940344,107 +972,0.34400243,-0.215309,-0.35711065,-0.18712172,-0.17149445,-0.1908216,-0.3114403,0.47895297,0.26434797,-0.34511486,-0.33917996,-0.06950353,0.1479085,0.5129544,-0.2625776,-0.43626028,0.04775242,0.06121563,-0.64337367,0.50784576,-0.44557008,0.15217194,0.22894831,0.4220008,-0.007219578,0.31391293,0.48579472,-0.0013629913,0.22619939,-0.3043583,-0.2118152,0.25131187,-0.7437572,0.056062263,-0.31672308,-0.35562336,0.199819,-0.5676769,-0.08753164,-0.88031626,0.250096,-1.2440329,0.60666066,-0.13658285,-0.16819893,-0.11398591,0.34369808,0.1599537,-0.28853136,-0.24709897,0.10896587,-0.26030836,-0.26075664,-0.30590186,0.07217773,-0.54044753,-0.5277447,-0.0055683106,-0.50473416,-0.35327607,-0.4633425,0.23705296,-0.39058456,0.23755908,-0.15844603,0.35678357,-0.5452983,0.040369444,0.31582183,-0.33107334,0.50009567,-0.62392724,0.019036178,-0.124381125,0.5418443,-0.0039303065,-0.18870643,0.48541206,0.5450467,0.59330624,0.2340945,-0.34278077,-0.3642498,-0.21387395,-0.049133487,0.60280854,-0.21395257,-0.44482166,-0.21881768,0.17217726,0.35126907,0.54000187,0.08813506,-0.16047077,-0.033837117,-0.18280683,-0.22171402,0.68213415,0.7091461,-0.2758439,-0.27027887,0.15113191,0.5869194,0.17728679,-0.18604922,-0.05594318,-0.038849384,-0.5521141,-0.20215921,-0.21343951,-0.23011348,0.7182414,-0.103922166,0.0687681,0.8792812,-0.06490159,-0.0026860684,-0.0030254095,-0.10914715,-0.20660457,-0.30979082,-0.025919914,0.4217072,-0.6248212,0.052731086,-0.38324413,0.6271299,0.0005915724,-0.79197633,0.5080681,-0.4160615,0.233783,-0.083752684,0.6211084,0.6148166,0.48598605,0.5949667,0.84627724,-0.4129331,0.037490357,0.053340625,-0.41071177,0.108070016,-0.3964696,0.28872856,-0.4481412,0.22577834,0.015576839,0.2607574,0.10538708,0.37133336,-0.6073426,-0.16922323,0.5320972,0.9576216,-0.2082129,-0.14669858,0.7984556,1.199876,0.8815649,0.014205757,1.349119,-0.017206993,-0.21604404,0.21714573,0.17548402,-0.7994108,0.15883262,0.62337875,0.23776111,0.31920266,0.09703827,-0.00497759,0.2881901,-0.52642,-0.18279675,0.00035413803,0.32387337,0.31130344,-0.21660845,-0.7099771,0.03199787,0.0622993,-0.05165423,0.014900821,0.24930565,-0.13757665,0.26023197,0.010732603,1.1937532,-0.05118672,0.15095551,0.14936492,0.5191143,0.18317476,0.13739729,-0.023669621,0.35655662,0.18464577,0.18485157,-0.5071279,0.2949711,-0.3445212,-0.40061584,0.016508307,-0.40138063,-0.210464,0.12854543,-0.3168048,-0.11282827,-0.18110302,-0.12053032,0.28903842,-2.7696366,-0.27314886,-0.20486817,0.4447413,-0.29092798,-0.0072249114,-0.008661521,-0.52266514,0.30614072,0.28228745,0.6708573,-0.8542137,0.40266562,0.6572572,-0.6347408,-0.118426904,-0.61472875,-0.045304727,0.12165189,0.524214,0.3206268,-0.44865614,-0.14791135,0.26737207,0.8885627,0.36970973,0.33538046,0.57834053,0.5887035,-0.19370179,0.5921582,-0.36742148,0.61369383,-0.352215,-0.15117696,0.22956327,-0.25791705,0.4108439,-0.40797773,0.09248873,0.5365406,-0.506426,-1.1247475,-0.68412036,-0.4500266,1.0857056,-0.34462905,-0.6580558,0.26422176,0.013638166,0.060510613,0.05764655,0.7842399,-0.11546028,0.40013242,-0.74567807,0.119400665,-0.3015214,0.1602934,0.09345383,-0.08324255,-0.40894866,0.855673,-0.099035844,0.6412717,0.31673756,0.16132636,-0.27388814,-0.33600903,0.09659493,0.77683485,0.47790346,0.021070814,-0.229091,-0.14960971,-0.2513042,-0.397051,-0.06923455,0.8904114,0.88269293,-0.23714533,-0.0066677304,0.22875527,0.20477429,-0.009314354,-0.07595659,-0.31470847,-0.17143485,0.09862738,0.46407884,0.9179181,-0.44185486,0.12411143,-0.15589781,0.47007233,0.09019391,-0.40113878,0.4350422,0.35364476,-0.22693601,0.07990287,0.7825998,0.50239575,-0.41040283,0.51993144,-0.7150071,-0.5173406,0.67045397,-0.08052269,-0.55612576,0.102448046,-0.21413453,-0.053622685,-0.746417,0.39691824,-0.46250877,-0.41739082,-0.11353338,-0.107630655,-3.3977165,0.2613995,-0.081369996,-0.056926638,-0.49770063,-0.14133231,0.19083074,-0.74145776,-0.92897236,0.2493422,0.15105508,0.46867585,-0.12692942,0.10050883,-0.3134882,-0.30411938,0.04495299,0.2919718,0.063317955,0.2513202,-0.21027803,-0.489611,-0.2817346,0.17027113,-0.45953655,0.29945794,-0.6051656,-0.532742,-0.19510612,-0.52798474,-0.11151767,0.57250655,-0.5171177,-0.022172052,-0.3464717,0.19503719,-0.40438884,0.037462633,-0.039242934,0.1785382,-0.00462524,-0.1938512,0.18796852,-0.19543734,0.62418836,-0.06314706,0.5291214,0.11669831,-0.08747561,0.037769347,0.5561982,0.8365448,-0.24770078,1.2670157,0.35783488,-0.1314111,0.2467258,0.013499081,-0.32233554,-0.81393707,-0.3799457,0.101538755,-0.54720914,-0.5092323,0.2798125,-0.32261693,-0.81866187,0.7288412,0.01169914,0.54428905,0.06057186,0.3177994,0.40418544,-0.34843293,-0.12609491,-0.026496524,-0.111970805,-0.8870897,-0.23420635,-0.7092511,-0.47602695,-0.17246039,0.66174877,-0.2574494,-0.0054293782,0.13098691,0.05834527,0.0728455,0.12959437,0.25750226,0.13084331,0.51989853,0.13885048,-0.77921045,0.5521411,-0.001947099,-0.14068823,-0.48609573,0.19322775,0.38730577,-0.8663517,0.6402527,0.40725088,-0.015093371,0.026749115,-0.7158357,-0.40353498,-0.17403084,-0.19047526,0.41251713,0.17270307,-0.9959491,0.48087472,0.29613525,-0.6026327,-0.7091511,0.3550485,-0.34907803,-0.058992952,-0.07665704,0.3441773,0.21686144,-0.19591707,-0.04036646,-0.051875334,-0.50972503,0.34303296,0.0015454709,0.07880974,0.45569307,-0.023732971,-0.30228573,-0.9367021,-0.12526032,-0.61198735,-0.12051697,0.4193132,-0.23606691,-0.4246549,0.10863829,0.18398423,0.37327448,-0.41688824,0.21611658,0.091681376,-0.5956046,0.323934,0.6219365,0.4910818,-0.41002375,0.58820343,0.13948488,-0.31379333,-0.11478088,-0.03056166,0.363883,-0.10853672,0.28051683,-0.22499755,-0.0031142994,0.24888368,0.8888132,0.21273854,0.3813769,0.08912398,0.06575036,0.5541606,0.0063844323,0.21280794,0.110305786,-0.7070948,0.26080117,-0.2494059,-0.09611754,0.65441287,0.26271486,0.18734847,0.13920927,-0.14345619,-0.12491801,0.40401095,-0.12284286,-1.2062136,0.26932684,0.115042016,0.9392732,0.39823574,0.15384609,-0.14568423,0.73501027,-0.08639418,0.10995011,0.6380178,-0.04676978,-0.5124845,0.88424224,-0.63923556,0.27854323,-0.1852403,0.0045663686,0.15813299,0.31763855,0.26099116,0.7943936,-0.28569174,0.014745844,-0.19850992,-0.07801489,0.03296369,-0.5086797,-0.08675248,0.021911483,-0.32096064,0.6246809,0.48208198,0.44382066,-0.20878963,-0.0051711337,-0.098127455,-0.15493432,0.27913463,-0.20893851,-0.12808286,-0.056530714,-0.4478828,0.04916971,0.640799,0.3228714,0.27873763,-0.34108981,-0.29173866,0.20883206,-0.11578195,-0.26441103,-0.0349061,-0.82367915,0.12105961,-0.23758993,-0.5165514,0.6312982,-0.02453644,0.04645742,0.25847194,-0.04364624,0.017877746,0.25349343,0.09979026,0.690163,0.034598015,-0.17984152,-0.43755913,0.0712461,0.17204544,-0.33565426,0.31420708,-0.39061612,-0.026872087,-0.4228314,0.6300121,-0.21057479,-0.48443618,0.24976508,-0.25589222,-0.017352143,0.56992114,-0.014086962,-0.080145426,-0.06761036,-0.23304597,-0.2698349,-0.37388855,-0.29692993,0.24584499,0.06711268,-0.0022285103,-0.13256018,-0.2759574,-0.3403504,0.4481104,0.021727705,0.37375516,0.19519868,0.10882131,-0.11992943,0.2533423,0.15974432,0.7023777,0.06172661,-0.07041218,-0.2473152,-0.58733934,-0.3982526,-0.06439398,0.019897792,0.30004615,0.14258003,-0.08083037,0.7574888,0.011118789,1.1414511,0.12887335,-0.37565714,-0.09007009,0.6795099,-0.2658458,-0.07677306,-0.44112596,1.0940294,0.5836938,-0.101673104,-0.009050598,-0.52465534,0.11088268,0.3618024,-0.3162272,0.016373921,-0.047624577,-0.6413297,-0.45363826,0.19591734,0.25103834,0.08090548,-0.12413788,0.10541318,0.052499123,0.07586036,0.4806486,-0.6269541,-0.51102364,0.22453614,0.15572727,-0.16401836,0.041422985,-0.2791123,0.42506784,-0.59280884,0.1584272,-0.83834493,0.026061874,-0.39675862,-0.3215531,0.0887535,-0.33058015,0.60620683,-0.20159736,-0.3392241,0.14287841,0.16682667,0.22866273,0.08989328,0.52595776,-0.24113293,-0.051435173,0.08734991,0.746061,1.19314,-0.6119355,0.23064518,0.13779284,-0.4073902,-0.5117403,0.37604752,-0.42459854,-0.15257215,-0.14347418,-0.40606576,-0.5512321,0.11366744,0.2443273,-0.049403407,0.10202885,-0.69693625,-0.30334556,0.13627425,-0.36029026,-0.16727237,-0.21804032,0.44328427,0.8343584,-0.26652694,-0.30724087,0.11755592,0.27856356,-0.1360687,-0.79608774,-0.16250801,-0.19181743,0.36349744,0.08952974,-0.43980366,-0.036289036,0.07139601,-0.43861523,0.1010882,0.2097455,-0.3004188,0.18768677,-0.48509678,0.06596745,0.9647152,-0.19529729,-0.023480058,-0.66360044,-0.48519078,-0.84685695,-0.33299664,0.28370914,0.11532588,-0.020494008,-0.25980958,-0.15013826,-0.19998172,-0.16711369,-0.07560621,-0.41644192,0.3370063,0.017133554,0.83067924,-0.4513268,-0.89488447,0.13119106,0.3060773,0.26648855,-0.6072401,0.5912508,0.0240103,0.826914,0.00076364574,-0.09832591,-0.04687188,-0.45243567,-0.01922085,-0.3830579,0.08246754,-0.6750231,0.16466299,118 +973,0.37371594,-0.09779442,-0.33349797,-0.09053819,-0.40293407,-0.020285327,-0.0021999045,0.72096264,0.4784422,-0.61344826,-0.46265164,-0.2441123,0.05705775,0.5372437,-0.35101217,-0.7027739,0.15246099,0.23538227,-0.1284513,0.6476799,-0.24001303,0.5592756,0.21036705,0.4241143,0.17709267,0.2742918,0.30791602,-0.04247739,0.20900905,-0.3529641,-0.17716989,0.32617092,-0.6876237,0.5982584,-0.35353744,-0.54416484,0.3119205,-0.7889849,-0.42333025,-0.7052604,0.24142797,-0.8654606,0.793082,-0.021053657,-0.14003272,0.028089106,0.17279617,0.06566089,0.11846237,-0.009740109,0.00399791,-0.031523444,-0.20553374,-0.032111,-0.38358226,-0.8044756,-0.66401833,-0.013711643,-0.4424262,-0.064229086,-0.48014516,0.25018778,-0.2851264,0.053160787,-0.017104369,0.54924715,-0.42781997,0.25791052,0.039240252,-0.16185562,0.18883081,-0.62123716,-0.28525084,0.0020414093,0.065795645,-0.24083178,-0.09562664,0.45368236,0.36088338,0.52480984,0.16087815,-0.20057127,-0.15345463,-0.07367671,-0.084864005,0.7266854,-0.008364325,-0.5801188,-0.18616697,0.08820264,0.4437394,0.19309388,0.26889363,-0.27414936,-0.19232702,-0.3089428,-0.3619967,0.6588421,0.52333605,-0.34637433,-0.2854522,0.35539833,0.21633255,0.20100553,0.053533096,0.13994792,0.0912859,-0.63144284,-0.2604769,-0.28424644,-0.33689523,0.6838778,-0.11771135,0.44898286,0.6658581,-0.15913582,-0.0019975186,0.16053383,0.15169232,-0.32978645,-0.1356062,-0.21435404,0.31265497,-0.45679754,0.06508684,-0.16554795,0.92038727,-0.052779026,-0.60309285,0.305932,-0.58126783,0.087428704,-0.11268089,0.5143479,0.6113086,0.4970337,0.4518547,0.7334608,-0.47152406,0.076831676,0.059597623,-0.47266167,-0.15133435,-0.33916536,-0.114465736,-0.42312583,-0.084524795,0.084155805,0.14162627,0.22897586,0.47384197,-0.7809316,-0.2586666,0.29052097,1.1091386,-0.22287016,-0.29186946,0.93025637,1.2148079,0.951964,0.05259158,1.4414771,-0.06255837,-0.084342316,-0.20028722,0.018565763,-0.6462099,0.2873056,0.43976888,-0.25139305,0.31645185,0.12766156,-0.049841244,0.29300374,-0.5235015,-0.31051776,-0.11784878,0.35247424,0.053824365,-0.25429392,-0.75024545,-0.21657686,0.00036148727,-0.013589472,0.31901428,0.38952655,-0.25428277,0.37941736,0.15104565,1.0687876,0.006321433,0.10268189,-0.013244713,0.3634339,0.29087144,-0.11138545,0.08092808,0.10598278,0.20706448,0.113409914,-0.49053258,0.052202307,-0.33205286,-0.348094,-0.16166818,-0.30107138,-0.3158652,0.24061875,-0.31991023,-0.22963187,-0.179674,-0.18316983,0.52265704,-2.4370456,-0.28816244,-0.18580961,0.40149552,-0.17797616,-0.27703804,0.117291406,-0.44777194,0.40800577,0.41754523,0.5643541,-0.64629394,0.29154664,0.7238871,-0.76475286,-0.27466613,-0.44490847,0.05528409,0.11343124,0.41211575,0.09561219,0.011407795,-0.08045198,0.0075272294,0.57987434,0.17071182,0.21820407,0.41154855,0.63085186,-0.25176615,0.27975136,-0.04611037,0.54047453,-0.257603,-0.1187943,0.22882803,-0.31187227,0.4345842,-0.39540648,0.025074994,0.64497626,-0.5552459,-0.8880676,-0.5942416,-0.48353872,0.9737015,0.0765785,-0.3481307,0.22346893,0.025891736,-0.15600187,-0.07716898,0.79111797,-0.19355917,0.03129673,-0.56039166,-0.056785524,-0.014380145,0.07732089,-0.07932918,-0.27026552,-0.40965635,0.6163474,-0.02029185,0.3712247,0.35095206,0.42727226,-0.4920803,-0.5003557,0.19494864,0.9410828,0.67491233,0.22321515,-0.31792971,-0.07951024,-0.3898535,-0.0767442,-0.106005296,0.72654784,0.60763675,-0.21205935,0.052004438,0.3850034,0.42550245,0.15817043,-0.09576029,-0.42108002,-0.25792417,0.022549186,0.5186382,0.6395017,-0.45759225,0.23597315,-0.18065739,0.33836773,-0.15872757,-0.44691795,0.47537532,0.9870968,-0.24906471,-0.080232225,0.93592244,0.44568673,-0.2535762,0.47415894,-0.67050016,-0.4718259,0.33402202,-0.024433207,-0.48768526,-0.00029594303,-0.15687072,0.06628337,-0.9613183,0.5150508,-0.09499802,-0.6637368,-0.4176392,-0.14106205,-2.527859,0.26026747,-0.20338936,-0.008380106,-0.19044703,-0.17584802,0.013479674,-0.6792432,-0.7091165,0.4429725,0.09792368,0.5570848,-0.24892953,0.2258708,-0.06608741,-0.5419547,-0.20758423,0.28984353,-0.023344422,0.32292348,0.05766625,-0.45889148,-0.094770975,-0.02524047,-0.5623634,0.15053307,-0.6088499,-0.46028534,-0.32024124,-0.7251717,-0.074168146,0.73625314,-0.38193554,-0.034749042,-0.25754485,0.26400802,-0.10781336,0.07860911,-0.0732823,0.09601784,-0.02742461,-0.14635208,-0.0062565566,-0.112256035,0.73420155,0.14682797,0.5404048,0.32773745,-0.15723595,0.002758318,0.6490777,0.6398014,-0.21872795,1.0929645,0.17936713,-0.22052515,0.35155994,0.11683104,-0.5043291,-0.61019075,-0.39064372,0.17372537,-0.48823333,-0.45779067,0.1707326,-0.24111858,-0.77030414,0.62940794,0.10729803,0.44039184,-0.10953133,-0.09469849,0.40730038,-0.28215224,-0.0810827,0.035579935,-0.06895722,-0.6583551,-0.43065658,-0.650966,-0.37083295,-0.050456453,0.79800427,-0.21330228,0.123858854,0.1416564,0.08098446,0.10820389,-0.021836648,-0.006893861,-0.16282704,0.3369344,0.0042807283,-0.8129282,0.56182206,-0.1023909,-0.17211692,-0.58055264,0.25006565,0.62828624,-0.6470806,0.42963964,0.3402023,-0.08630611,-0.21610999,-0.65766156,-0.38629067,-0.121041834,-0.13686648,0.35588342,0.27216306,-0.8611433,0.37894878,0.19623336,-0.37701574,-0.66745126,0.65235865,-0.19514683,-0.086195245,-0.047046807,0.35988456,0.48890465,-0.03416605,-0.07609932,0.1913155,-0.28634468,0.5164281,-0.14080827,-0.08888702,0.43426722,-0.2233232,-0.13099222,-1.047841,-0.009687388,-0.49900776,-0.26461238,0.15190527,-0.13551274,-0.39933792,0.16408095,0.25758865,0.39429468,-0.31365862,0.16100991,-0.004793915,-0.49693942,0.37218717,0.49516597,0.7522417,-0.19797671,0.6211756,0.04121096,-0.097880356,0.043967664,0.2138381,0.4284779,0.045007244,0.31630906,0.005944514,-0.1351035,0.15530261,1.0516593,0.08635993,0.32920602,0.16767745,0.035511754,0.31751615,0.022227686,0.21471003,0.08905734,-0.64632004,-0.020924812,-0.47518897,-0.16784772,0.6013593,0.10328255,0.24989256,-0.18493435,-0.38570413,0.050519414,0.17432228,0.33994368,-1.2970355,0.1412745,-0.025822747,0.8385502,0.4065966,0.08804081,-0.08411376,0.70117056,-0.0012393385,0.046550017,0.3975908,0.15465227,-0.4099776,0.61159396,-0.4866775,0.3734241,-0.10734844,-0.101726815,0.1953207,-0.00042507052,0.26896483,0.9934044,-0.19033861,-0.026446585,-0.087382376,-0.18878397,0.0057257116,-0.52010345,0.28684667,-0.327398,-0.25563866,0.68931913,0.49069214,0.2067819,-0.23055844,0.012649464,0.049314328,-0.16284823,0.09056629,0.037202287,-0.06991321,-0.20796041,-0.4551403,-0.040389214,0.63796353,0.18076678,0.14419279,-0.08528191,-0.1729547,0.18760894,-0.0786308,-0.099559106,-0.0028774827,-0.9773563,-0.22188373,-0.29802483,-0.53688115,0.48735732,-0.0036245107,0.17589776,0.052763246,0.097014286,-0.20095627,0.39197916,0.34852615,0.73417455,0.19769317,-0.07258014,-0.313986,0.18005054,0.17680554,-0.39253503,0.23302475,-0.20482874,0.04624571,-0.63690543,0.38915128,-0.0059201093,-0.3629958,0.15481904,-0.13907735,0.07105915,0.35922846,0.1356546,-0.10121691,-0.03197859,-0.29709917,-0.16480115,-0.21269818,-0.20745406,0.330442,0.13408032,-0.08807012,-0.04264437,-0.24431887,-0.32060128,0.13720357,-0.04058131,0.31720835,0.11334063,0.09585172,-0.37097055,0.050801743,0.0130444765,0.63985556,-0.21713479,-0.1815871,-0.009669209,-0.35633266,-0.546765,-0.238767,-0.001978776,0.15143834,0.052657295,-0.22417362,0.7469678,0.27825448,1.2065022,0.040769182,-0.4003039,0.018171053,0.5862851,-0.042138208,-0.20059994,-0.33114576,1.3751246,0.5440408,-0.076315776,-0.17091282,-0.47019997,0.13286704,0.1858866,-0.32994598,-0.37530106,-0.03220723,-0.6143138,-0.16802818,0.2608425,0.29139012,0.006965846,0.008410722,-0.03314369,0.49243003,0.034534637,0.55113286,-0.7226881,-0.35475895,0.1272692,0.42664528,0.15910065,0.13545969,-0.5612249,0.33266732,-0.69901836,0.32173878,-0.4026173,0.20976333,-0.79293877,-0.33975214,0.18628183,0.08975866,0.58531463,-0.3817141,-0.48911533,-0.2983423,0.40430307,0.0025546073,-0.04346848,0.5241524,-0.21542855,-0.12652054,-0.110065006,0.7180921,1.2052265,-0.45757517,0.018826222,0.5392439,-0.5860323,-0.5384531,0.16289198,-0.6134503,0.12980232,-0.053155296,-0.22668341,-0.58257115,0.15280645,0.042677958,0.06056998,0.0015298903,-0.52574855,-0.21308343,0.18998954,-0.2829522,-0.16021805,-0.21634829,0.31974703,0.59105897,-0.1844531,-0.48092642,0.18310325,0.3163473,-0.13062751,-0.86205167,-0.17662486,-0.058272887,0.38883534,-0.1512389,-0.31537387,-0.37237817,-0.30757275,-0.41601676,0.03633866,0.12799594,-0.22839043,0.1798763,-0.41375393,0.0882345,0.73127764,-0.1969159,0.30644053,-0.8591088,-0.41124612,-0.84420645,-0.5299481,0.46394855,0.504639,-0.15659423,-0.68508255,-0.14591393,-0.22020388,-0.017252589,-0.21973062,-0.2234621,0.2808708,0.13171616,0.58017814,-0.27878577,-1.3175911,0.18679103,0.13318332,-0.17822984,-0.62855273,0.5119201,0.09483922,0.8728628,0.22792229,-0.12469725,0.17267075,-0.58127606,0.093740344,-0.25895658,-0.09695512,-0.6091549,0.34885955,150 +974,0.29161325,-0.25178176,-0.27319366,-0.1230528,-0.2251178,0.017650312,-0.35908818,0.4845251,0.08226917,-0.57103455,-0.22102126,-0.33101588,0.100861825,0.4700535,-0.2591243,-0.5906677,0.05987046,0.29058537,-0.40967274,0.4618327,-0.53767854,0.4168026,0.16471708,0.42087895,-0.2270397,0.21662363,0.5641359,-0.09534596,-0.021555591,-0.3005374,-0.10349083,0.2217898,-0.8825339,0.30032277,-0.18849108,-0.65457124,0.20681195,-0.65856034,-0.11605177,-0.73416436,0.4173891,-0.9967766,0.7422519,0.4199132,-0.15747397,0.14268214,0.17221019,0.384728,-0.22889356,0.11198105,0.3824771,-0.19325832,-0.037323005,-0.48157305,-0.124788225,-0.3488731,-0.6558678,0.14585885,-0.3723893,-0.16041133,-0.43028355,0.25882256,-0.15266769,0.14121714,-0.2144142,0.07835905,-0.6662115,-0.18931821,0.12860183,-0.32973808,0.3270639,-0.44187897,-0.10354034,-0.2522761,0.38689038,-0.5371491,-0.14732453,0.30167985,0.20668073,0.6510541,-0.01950089,-0.28520226,-0.37980223,-0.05546411,-0.04344985,0.66212,-0.28500602,-0.72985816,-0.055962883,-0.10458825,0.2345591,0.23347084,0.054565053,-0.24988195,-0.09300162,-0.39634895,-0.17920902,0.46270877,0.5063918,-0.6485482,-0.35726172,0.2747763,0.503629,0.017573109,0.13630769,-0.17519625,0.030386578,-0.8365656,-0.2869102,-0.024016678,-0.32387364,0.4951237,-0.07966162,0.30779332,0.80877984,-0.116838254,0.0010358393,0.011580318,-0.261021,-0.22778864,-0.07764818,-0.2776218,0.44135126,-0.27799863,0.11976566,-0.36870617,0.8580906,0.033708148,-0.628641,0.37283128,-0.64808524,0.06738709,0.13909201,0.51344573,0.34780562,0.6547421,0.33173826,0.70753205,-0.45432663,0.12808827,-0.08339687,-0.2761071,0.10462512,-0.109275386,-0.058838435,-0.28232232,0.10576985,-0.07616576,-0.1522018,0.17011812,0.620379,-0.5370821,0.077500165,0.20386143,0.7224088,-0.40295655,0.0128830075,0.91809636,1.01562,0.8730749,0.0694848,1.5190881,0.28187814,-0.13330242,-0.050178457,-0.06821059,-0.79993695,0.19124945,0.5983793,-0.112727165,0.33975437,0.16395947,0.17076655,0.41119084,-0.6111658,-0.23303321,-0.24244554,0.09424911,-0.05309509,-0.1782366,-0.4878695,-0.13295825,-0.0058832616,0.045193322,0.29867834,0.43149287,-0.12398144,0.3414939,0.00532074,1.4394728,-0.03925892,0.21271029,0.061981343,0.5440922,0.21885629,0.13918783,-0.0664199,0.110547826,0.22881901,0.08022138,-0.4932111,-0.07749919,0.021130547,-0.4614204,-0.14134264,-0.009729405,-0.25141793,0.12311041,-0.3109244,-0.21152177,0.011088753,-0.03768441,0.4530429,-2.2552907,-0.10850326,0.02062577,0.38694713,-0.28756684,-0.44289857,-0.16350476,-0.45064902,0.7444998,0.42436904,0.53169763,-0.7359973,0.36964214,0.5252163,-0.74010134,-0.18810399,-0.6293973,0.055115283,-0.1422781,0.26979014,0.1565789,-0.27797025,0.07099705,0.071963266,0.5081619,-0.018460507,0.10658522,0.15552227,0.7033779,-0.10192952,0.58262014,0.102708474,0.65003943,-0.30750087,-0.3460881,0.3558541,-0.41750392,0.2828199,-0.40085727,0.01139692,0.29896235,-0.7200605,-1.1425784,-0.74940336,-0.30262145,0.80424917,0.0364318,-0.43986887,0.2168406,0.021213692,-0.2697627,0.016933689,0.68221915,-0.2190793,0.122058466,-0.9136651,-0.016978756,-0.11567545,0.32221442,0.06991561,-0.041209944,-0.8070322,0.73707855,-0.13438186,0.20829575,0.7006506,0.12714767,-0.41598353,-0.60582626,0.28272942,0.85622615,0.3410527,0.13265856,-0.24231982,-0.24227719,-0.10118611,-0.13795574,-0.07619396,0.7155969,0.5283531,-0.12744352,0.0037691533,0.2446353,0.17330216,-0.0076399804,-0.28485602,-0.21689455,-0.17526856,0.11479261,0.73809695,0.81784487,-0.32215303,0.010227772,-0.28190055,0.5629517,-0.16611029,-0.432729,0.7090663,1.0204693,0.027014047,0.076600626,0.84575003,0.61962247,-0.07522627,0.5582825,-0.66015637,-0.50928736,0.23660424,-0.20222922,-0.4120759,0.09989921,-0.25309175,0.049830966,-0.94374734,0.3882802,-0.31469485,-0.15791112,-0.7884089,-0.14867073,-4.2994404,0.2515626,-0.30303058,-0.04495288,-0.049382478,-0.2087708,0.014820993,-0.59645784,-0.5660294,0.3385406,-0.053357333,0.5079604,-0.14266093,0.2986739,-0.24042264,-0.26998663,-0.1711326,0.29128242,0.1783559,0.269683,0.01786005,-0.5504936,0.020601388,-0.29107934,-0.38177353,0.02551123,-0.75933135,-0.11521055,-0.33515632,-0.7205352,-0.17369677,0.69128,-0.4301104,0.0074020503,-0.22449279,0.1008243,-0.43485194,0.5268405,0.047808032,0.13361666,0.11377041,-0.09255053,0.09922572,-0.118660256,0.3977383,0.077980265,0.08392602,0.28366846,-0.13561411,-0.025394749,0.3088112,0.7906562,-0.118959084,0.93240803,0.44877377,-0.045685165,0.2306647,-0.24073096,-0.46588326,-0.58681154,-0.36864942,-0.17166439,-0.40168104,-0.56636876,-0.070565134,-0.37548083,-0.7384974,0.7526573,-0.044293918,-0.3146417,0.061660003,0.28723592,0.21866366,-0.47277027,-0.12183614,-0.05610574,-0.021896005,-0.6138505,-0.32033718,-0.54366755,-0.38004366,-0.08399287,1.0211333,0.07640553,0.1368864,0.26825428,0.18827197,2.0372867e-05,0.15254822,0.070972875,0.110197484,0.5665495,0.10071764,-0.9524624,0.7539175,0.028312897,-0.35723767,-0.6245729,0.3133158,0.5299766,-0.72254074,0.6126342,0.48578906,0.021095056,0.14727512,-0.44945726,-0.46260422,-0.008782631,-0.1453003,0.39615136,0.11721015,-0.7093714,0.43322736,0.4884862,-0.3953917,-0.90158284,0.5379816,-0.026045155,-0.5364753,-0.017969728,0.40864983,0.018306136,0.06392523,-0.35147208,0.21802847,-0.49809903,0.40151295,-0.03305135,0.07637988,0.470996,-0.3291852,-0.21265075,-0.9665596,0.02715299,-0.48753467,-0.3757761,0.02613635,0.07706032,-0.21069881,0.26149315,-0.016132712,0.3766658,-0.49251089,0.24867344,-0.053067602,-0.21881822,0.18029961,0.23934373,0.54055893,-0.45651355,0.69934785,-0.061321665,0.005617368,-0.30464047,-0.046551704,0.46449718,-0.16401193,0.25256124,0.0039327266,-0.08399409,0.29247147,0.8343813,0.24330792,0.20439346,0.180621,-0.003541261,0.36050895,0.19481027,0.09254678,0.22653142,-0.5721965,0.20244277,-0.2094202,-0.1133876,0.37551716,0.047525268,0.4288311,-0.26508713,-0.27694207,0.060814656,0.4121813,0.1844234,-1.0645857,0.1389871,0.07980606,0.72219306,0.5867692,0.15840037,0.287999,0.74153805,-0.34926397,-0.12242991,0.16203931,-0.06706005,-0.389054,0.6048894,-0.47712988,0.39037046,-0.028055971,-0.09889569,-0.020223552,-0.14918177,0.21384016,0.84677124,-0.14482419,0.12130387,0.027708376,-0.12498732,0.064638786,-0.3645175,0.17754288,-0.30845445,-0.25171274,0.90584886,0.36543405,0.5083648,-0.12955295,0.047653638,0.13265567,-0.063976035,0.047109984,0.06288513,0.14121374,0.13535544,-0.63337135,0.19202848,0.7202284,0.1633537,0.12923144,-0.06640558,-0.43914604,0.38249928,-0.3108674,-0.27905232,-0.12521613,-0.94144285,-0.07544117,-0.5263612,-0.17995556,0.32189712,0.11592784,0.26983887,0.19614299,0.16494918,-0.17709303,0.4207763,0.017183412,0.9747435,0.35436425,-0.021122104,-0.23659499,0.2868129,0.19011433,-0.33817795,0.19609486,-0.1644322,0.021114012,-0.63912654,0.36033052,-0.063636556,-0.30333892,0.24321112,-0.16685668,0.010555747,0.5093037,-0.18915229,-0.146368,0.37172875,-0.15620849,-0.1583156,-0.35277602,-0.21926436,0.278538,0.29872474,0.25740525,-0.026296306,0.04944873,-0.39646593,0.73712623,0.07153923,0.4325308,0.2262805,0.2368814,-0.37142974,0.07933991,-0.27152833,0.60232633,-0.21297356,-0.16397658,-0.20482488,-0.6021546,-0.45348293,-0.022210801,-0.084888086,0.097704366,0.007084371,-0.12285147,0.6279082,0.18257864,1.0468303,-0.0030813874,-0.3395963,0.21910386,0.62946326,-0.08289254,-0.062619105,-0.44418994,1.3805637,0.46047768,-0.16765155,-0.066263996,-0.22060302,-0.04040586,-6.151199e-06,-0.38491812,-0.089967795,-0.060159046,-0.6660676,-0.23301895,0.32179466,0.44242612,0.07528237,-0.16280004,0.35883665,0.24750724,0.19468744,0.2930323,-0.6426442,-0.37102038,0.55491817,0.3086482,-0.052693546,-0.007604039,-0.3613649,0.47826853,-0.35435495,0.0772752,-0.63909996,-0.01178354,-0.29568657,-0.1663385,0.122215554,-0.042196583,0.070094936,-0.40638837,-0.2582666,-0.15566906,0.2687382,0.19817111,0.2922961,0.6259688,-0.17331739,-0.0046023903,-0.20894139,0.62876886,0.90721893,-0.4679144,0.008099305,0.51738244,-0.30041012,-0.2573629,0.3556137,-0.30355945,-0.13811496,-0.15254508,-0.13500816,-0.42821997,0.2275979,-0.078008644,0.052907027,-0.012059498,-0.84801614,-0.12603362,0.49520817,-0.32512212,-0.31789836,-0.3518569,0.42229065,0.9496676,0.04819884,-0.37017232,0.26603454,0.23094305,-0.29388076,-0.73693335,-0.20888798,-0.3419644,0.2836786,0.17821482,-0.26558205,-0.20802906,0.12339256,-0.5960721,0.02239626,0.1355634,-0.3328317,0.19628778,-0.5553622,-0.030172214,1.0117676,-0.2511878,0.3030942,-0.6670464,-0.47866398,-1.2025287,-0.22176628,0.86417407,0.27309236,-0.049127832,-0.63887256,-0.0803416,-0.10949619,-0.27571535,0.04121895,-0.22459646,0.28419074,0.10266203,0.7609475,-0.23913565,-0.8148409,0.14584777,0.19547157,-0.17406969,-0.4318931,0.40577698,0.23177285,1.1045799,-0.053346418,-0.22505574,0.47455508,-0.7204767,0.119289055,-0.22680569,-0.098750114,-0.8827182,0.14785503,225 +975,0.41386852,-0.46429324,-0.30077338,-0.40011406,-0.27096158,0.0229173,-0.25464663,0.37066412,0.47176045,-0.16975972,0.10139263,-0.21862416,-0.037415046,0.5900839,-0.22488663,-0.9165595,-0.054773666,0.071173936,-0.6322956,0.5149453,-0.48383817,0.03000093,0.027740855,0.428856,0.034117162,0.06680885,0.20798627,0.110737205,0.2684332,-0.23675565,-0.15086,0.22840425,-0.8324685,0.38198853,0.022463301,-0.40425944,0.0057462426,-0.49031916,-0.23040166,-0.9178146,0.5004657,-0.95763314,0.6380294,0.04492875,-0.3850885,-0.20560579,0.4854308,0.3175209,-0.36022735,0.08240766,0.3429917,-0.34179506,-0.12026085,-0.105397,-0.6915101,-0.79122275,-0.89965093,-0.03833178,-0.58064103,-0.23087159,-0.27660623,0.43010482,-0.3930313,-0.0010015636,-0.35733482,0.6766404,-0.4484709,0.07616518,0.30982348,-0.23236163,0.4796098,-0.48828062,-0.25854725,-0.14214592,-0.12227478,0.060907733,-0.6017867,0.35832077,0.68863577,0.42428797,0.15568799,-0.29595843,-0.3715062,-0.118696906,0.020898039,0.55539066,-0.2128819,-0.5689518,-0.35266054,-0.010521573,0.5197395,0.5483093,0.20347229,-0.581495,0.25143614,0.021472951,-0.24636273,1.0204803,0.51507956,-0.33569008,-0.36764747,0.2113039,0.2324349,-0.23901984,-0.33393317,0.25767392,0.11052247,-0.533507,-0.19575796,0.5898758,-0.28313276,0.48359722,-0.25405362,-0.07269581,0.830664,-0.3871768,-0.295479,-0.07640858,-0.0641388,-0.0043500187,-0.46870786,-0.31320834,0.27423546,-0.45970282,-0.043906845,-0.42646924,0.8325731,0.047435593,-0.8915334,0.08107183,-0.6202103,0.27243027,-0.2313383,0.8029974,1.0132434,0.6799392,0.6694621,0.9272326,-0.4630031,0.16669452,0.22624417,-0.3495552,0.13447425,-0.49414596,0.11835875,-0.4638432,0.089128755,-0.26356727,-0.16380104,0.05875539,0.7211327,-0.43872756,-0.13800947,-0.015769884,0.9039469,-0.36877084,-0.14409478,0.97139645,1.0920933,1.0813862,0.34411678,1.2518361,0.40242243,-0.13706432,0.40678686,-0.2259285,-0.8154572,0.251957,0.2772511,-0.39187965,0.33691064,0.01485883,0.21431693,0.45614552,-0.43216935,-0.17649272,0.049060266,0.2812456,0.2422318,-0.2678992,-0.408233,-0.2222888,0.19426537,0.10224466,0.017280335,0.20759034,-0.27791774,0.65881044,0.2856446,1.048759,0.046885524,-0.124217175,-0.007832527,0.59379274,0.08389328,-0.23374347,0.23793045,0.26135033,0.4860517,-0.031700917,-0.80859727,0.2184391,-0.34001946,-0.34096965,-0.30008295,-0.48195633,-0.014392158,-0.31367865,-0.25639245,-0.40733337,-0.2684784,-0.2032021,0.41663426,-2.1329312,-0.09506868,-0.2331613,0.3863709,-0.04908865,-0.076143645,-0.14036036,-0.6766952,0.42674765,0.5282952,0.37999257,-0.86670905,0.41315213,0.46531686,-0.58205664,-0.024300952,-0.9791298,-0.08325334,-0.34278235,0.39133546,0.02960509,-0.16182545,-0.22204804,0.20475137,0.7993506,0.2730674,0.24673471,0.2847814,0.69742405,-0.264479,0.66098344,0.05702739,0.5179009,-0.20923099,-0.13216272,0.13469233,-0.7406054,0.12519534,0.18792653,-0.08665085,0.7485794,-0.6841513,-1.0789635,-0.7676775,-0.49625808,1.1015295,-0.47007942,-0.58561856,0.39996845,-0.1216799,-0.2483222,-0.08137617,0.7454161,-0.39405358,0.18700895,-0.794295,0.030828407,-0.021363974,0.4396797,-0.13539878,-0.022407765,-0.22070317,0.7150909,-0.284518,0.5029503,0.18744947,0.04821049,-1.0165603,-0.7539056,0.13436285,0.8082778,0.32414192,-0.02274453,-0.15249786,-0.38228345,-0.076850094,-0.3818892,0.03230728,0.72121036,0.6654603,-0.2511689,0.09545872,0.6035019,-0.5199424,-0.031937283,-0.12517133,-0.40807754,-0.23672327,0.13217965,0.59266144,0.6554983,-0.16718537,0.27408254,-0.18791012,0.40149552,0.011090897,-0.51611805,0.6073986,1.3549244,-0.106419325,-0.33495706,0.6154068,0.4678318,-0.61021304,0.5117138,-0.48454323,-0.18029526,0.69852704,-0.031573806,-0.68754005,-0.20353742,-0.4523743,0.0017671495,-0.98745805,0.45599723,-0.30487853,-0.66674197,-0.6168047,-0.27392942,-3.8737125,0.09472289,-0.26662454,-0.17335004,-0.44608036,-0.06069987,0.3804941,-0.47587585,-0.69562435,0.211885,0.25389767,0.39755583,-0.060745668,0.24225,-0.45035404,-0.011780572,-0.4219101,0.32874203,0.26715595,0.37703538,0.05167999,-0.38470626,0.17085212,-0.0912507,-0.6575231,-0.014521575,-0.87981856,-0.7310592,-0.19432887,-0.9507133,-0.46509796,0.7137991,-0.4776217,-0.14260791,-0.32621473,0.09522605,-0.11981708,0.6251191,0.16614266,0.24191932,0.07604716,-0.09411474,-0.2164135,-0.13661651,0.2693429,-0.06161341,0.46994948,0.162936,-0.10995315,0.38793534,0.676973,0.68728864,0.14235607,0.9056031,0.45905384,-0.029049207,0.30012983,-0.13897288,-0.3094735,-0.78459907,-0.3084461,-0.0893649,-0.46427822,-0.25829792,0.0026075006,-0.33936492,-0.8143419,0.5143764,0.1490613,0.22740635,-0.043618537,0.41548428,0.26222923,-0.009911758,0.2251577,-0.120074704,-0.37828603,-0.6292826,-0.5238887,-0.7190596,-0.6786054,0.3776976,1.1166369,0.1153592,-0.27694097,0.10807333,-0.3367401,0.023654163,0.45563594,-0.07625925,0.30896968,0.46548238,-0.08970429,-0.7266838,0.41965732,-0.041072886,0.10002051,-0.7804597,0.15684307,0.7353546,-0.6609158,0.7898674,0.21334167,0.29762426,-0.40282845,-0.5462657,-0.39195698,0.16294307,-0.1766897,0.6295501,0.26522088,-0.85403764,0.6173032,0.19321117,-0.2296752,-0.63502234,0.32540607,-0.21427381,0.03400681,-0.071651116,0.42252642,0.33596808,0.0016709536,-0.31005913,0.44276938,-0.5216876,0.12301606,0.07967057,-0.035314582,0.29702097,0.07234206,-0.21329018,-0.87577426,-0.06542956,-0.67652655,-0.256638,0.09541844,-0.12949638,-0.020406682,0.34497696,-0.06970744,0.38038006,0.15027995,0.18056433,-0.18320742,-0.28079244,0.1877563,0.600561,0.41049784,-0.42925835,0.73226655,0.26085466,-0.08595599,-0.08771132,0.049709283,0.4441308,0.3718134,0.5804882,0.17186694,-0.32439527,0.11196437,0.80360794,0.09244353,0.5830904,0.10214529,-0.093476966,0.5787635,0.19438972,0.24484459,-0.18938231,-0.5345689,-0.093165904,-0.25204438,0.16314285,0.5744505,0.1252974,0.5162362,-0.09354305,-0.1935369,0.13765085,0.22022445,-0.34324592,-1.5179336,0.22603497,0.41594929,0.746112,0.61865973,0.040141366,-0.09954812,0.76536715,-0.4097678,0.011849415,0.73817384,0.34000984,-0.30847943,0.67330354,-0.70375735,0.4629911,-0.37823516,0.14963162,0.060001813,0.528074,0.27034396,0.96982497,-0.10086347,-0.009838295,-0.03522265,-0.2573992,0.4340089,-0.45529142,0.21483925,-0.29892868,-0.45044184,0.70972323,0.30244297,0.4147707,-0.14725909,-0.060858995,0.2349782,-0.055847026,0.11448836,-0.2084606,-0.5774783,-0.12025305,-0.6794348,-0.17128138,0.6601659,0.15288796,0.17302242,0.23215458,-0.3921873,0.19384038,-0.027410025,-0.3264513,-0.045998167,-0.7042813,-0.29893923,-0.10749736,-0.4844831,0.5547314,-0.56080294,0.23596077,0.31658912,0.08067779,-0.512714,-0.080154456,0.28971398,0.6997427,0.008229929,-0.16413327,-0.1731073,-0.25262815,0.20863397,-0.47745448,0.17066434,-0.24199545,0.11055714,-0.5823732,0.6047736,-0.18787995,-0.6851428,0.03161625,-0.14754276,-0.047744613,0.50824213,-0.40677696,-0.17209436,0.22776763,-0.15243629,-0.09915459,-0.33448574,-0.30847225,0.53948456,-0.19167486,0.043671153,0.07578496,-0.19843672,-0.09389223,0.596528,-0.09559539,0.30453172,0.38509095,0.27848646,-0.21275052,0.12783217,-0.13521159,0.66770315,0.15160416,-0.31060132,-0.07954671,-0.23648436,-0.2777825,0.14442748,-0.07851167,0.40021738,0.038089402,-0.9021614,0.8170813,0.0742661,1.348778,-0.043875176,-0.7415315,-0.037483603,0.6554303,0.04752346,0.020634968,-0.33218542,0.8585461,0.7100004,-0.22976366,-0.19960587,-0.6767022,-0.21516538,0.38718742,-0.32237187,-0.2412359,-0.10985397,-0.9380187,-0.122114226,0.22705114,0.12148607,0.095113985,0.008826489,0.13968854,0.043177307,0.0389872,0.5148423,-0.6278128,0.34093744,0.17119794,0.5023615,0.16700095,0.040095888,-0.31592387,0.19235268,-0.6627201,0.32869163,-0.5263123,0.22722778,-0.19085726,-0.2745791,0.17798905,0.0015220642,0.34212255,-0.03263779,-0.12246553,-0.13254032,0.9252361,0.23137864,0.49982262,0.9494211,-0.2793214,0.03841998,0.20947978,0.66050303,1.7678852,-0.18104331,-0.023986463,-0.13129947,-0.4696319,-0.7485589,0.45868626,-0.48144847,0.003816846,0.16034117,-0.33991545,-0.25216365,0.15504497,0.1672703,0.07899471,0.18862909,-0.45245904,-0.4148644,0.38599166,-0.38884968,-0.30003667,-0.17599279,0.3083295,0.7264096,-0.18487045,-0.3880794,0.059961896,0.3480347,-0.15336542,-0.5045363,-0.115111396,-0.41951767,0.46790257,-0.047932822,-0.46406382,0.111832164,0.08875017,-0.48416686,0.25166246,0.22584641,-0.30107313,0.21295612,-0.09623488,-0.12302933,0.89197075,0.038057238,0.20550999,-1.0664282,-0.4917062,-0.92977464,-0.14566368,0.25909513,0.23215461,-0.17945243,-0.71551687,-0.24677905,-0.027542844,-0.13864572,0.19323973,-1.07624,0.53703773,0.13903566,0.6978451,0.08007118,-0.8228801,0.012663543,0.31351677,0.11402744,-0.6934551,0.6259011,-0.25143355,0.83225834,0.06309907,0.19709647,0.100820675,-0.47270852,0.24648246,-0.25020412,-0.5103598,-0.66710836,0.06898245,229 +976,0.25454345,-0.38206726,-0.5430808,-0.23411474,-0.19402823,-0.0040979087,-0.052266814,0.7367414,0.12974882,-0.30746692,-0.14964613,-0.26068592,-0.13253494,0.272796,-0.27472478,-0.18888596,-0.13626947,0.27825955,-0.41721782,0.25200528,-0.44429618,0.29444307,-0.0806718,0.3535501,0.19176151,0.043853384,0.24987802,0.14392403,-0.09097141,-0.39148706,0.114579156,0.037237402,-0.5150574,0.29714274,-0.26642266,-0.53590834,0.04351793,-0.63168085,-0.37940907,-0.7936164,0.29127622,-0.8144369,0.6068908,0.06913078,-0.37093335,0.02061289,0.3150328,0.37531546,-0.10837658,0.031287055,0.28219765,-0.03721422,-0.03148525,-0.15647754,0.003939605,-0.30155912,-0.52791023,-0.07987105,-0.19215655,-0.057069976,-0.099828124,0.2079734,-0.31137258,0.2314126,-0.18756084,0.7120336,-0.38828617,-0.115266465,0.016561087,-0.054795872,0.33668032,-0.5608736,-0.20053951,-0.21722922,-0.042937957,-0.08102366,-0.23146553,0.39695016,-0.01416108,0.29405332,-0.29169255,-0.11199224,-0.19271488,-0.10988994,-0.17066464,0.5433328,-0.10097011,-0.3760601,-0.04767243,-0.12229911,0.21876375,0.053494237,-0.0057110777,-0.11102325,-0.03620132,-0.097519375,-0.34776628,0.36355937,0.5589963,-0.3032744,-0.0050797,0.25723186,0.4905525,0.075056516,-0.078005984,0.043784693,0.08356164,-0.59944797,-0.28783053,-0.18926767,-0.2033706,0.63099325,-0.1695464,0.36052135,0.4874963,-0.22581294,-0.14388639,0.1391995,0.34985152,-0.10684462,-0.24505575,-0.80297184,0.50477266,-0.49783796,-0.17264375,-0.18934989,0.94141513,-0.05261285,-0.6558255,0.3457098,-0.6136882,0.037937492,-0.15298912,0.5186127,0.3681133,0.6947955,0.383976,0.6411713,-0.2657445,-0.0075468896,0.12137027,-0.19992734,0.13282253,-0.32853433,-0.13426727,-0.33847886,-0.044737995,0.14961818,-0.16368338,0.02447623,0.4990948,-0.44015652,-0.20208366,0.2258128,0.6386236,-0.3382485,0.12382617,0.56285214,1.3333248,1.1206585,0.12528867,1.0504045,0.07662522,-0.2820988,-0.028481677,0.13389464,-0.9660598,0.26645917,0.31386805,-0.16762719,0.2632672,0.18491352,-0.113721706,0.4536546,-0.6834136,0.027047152,0.004692179,0.3466193,-0.04848774,-0.029378753,-0.65755767,-0.5021473,0.14142978,0.08229013,-0.080453396,0.3356491,-0.24190345,0.15585418,0.104596004,1.4640064,-0.09301416,0.07517024,0.09189664,0.53952557,0.12245884,-0.35908532,-0.09787334,0.10565394,0.2699854,0.19788113,-0.44515887,0.16859135,-0.016685594,-0.4684043,-0.1122602,-0.2595951,-0.00512335,-0.29980177,-0.4999846,-0.25450486,-0.070893094,-0.31290582,0.34816512,-2.5877125,-0.08034853,-0.051529717,0.41318908,-0.14861561,-0.31723318,0.02704762,-0.46291023,0.35886863,0.57448375,0.47780013,-0.6772384,0.39033395,0.53182876,-0.4310263,0.018392703,-0.64218646,-0.24163342,-0.06438698,0.22340429,0.10798404,-0.09064124,-0.04098501,0.31029618,0.39381212,0.010460635,0.1193314,0.30254242,0.30492884,-0.06942808,0.57090867,-0.04451924,0.33362997,-0.5898602,-0.20351581,0.20425217,-0.6038334,0.02681675,-0.046158694,0.10636804,0.5036043,-0.6545018,-0.93973315,-0.5170795,0.026507366,1.344549,-0.3250421,-0.31293535,0.31256709,-0.31478786,-0.35105214,-0.11252898,0.45229214,-0.31593117,0.029641401,-0.8309725,-0.1189355,-0.15068923,0.46764427,-0.10487215,-0.045605075,-0.5909399,0.56553996,-0.16262442,0.68817765,0.48894167,-0.012790352,-0.66062605,-0.5365337,0.008968107,0.89334583,0.5364355,0.15629455,-0.32499242,0.012354267,-0.39620826,0.06567061,0.1701497,0.39999074,0.8793955,-0.099152066,0.24369116,0.35985488,-0.107568964,-0.013300655,-1.3653934e-05,-0.34191465,-0.04239855,0.099186994,0.7301334,0.60045874,-0.08231935,0.20066532,-0.09849094,0.49097633,-0.33613873,-0.36381045,0.31816068,0.9380349,-0.0564973,-0.24429682,0.75491923,0.73574924,-0.28144732,0.5408926,-0.51320016,-0.43324608,0.2898473,-0.03305862,-0.4571845,0.26695022,-0.258967,0.15585463,-0.8963324,0.44789806,-0.19136688,-0.5036154,-0.78951967,-0.29523414,-3.1833014,0.21425065,-0.061720025,-0.31423038,0.10822652,-0.22127743,0.29065642,-0.6034694,-0.69687736,0.061145745,0.12751588,0.6806675,0.027801162,-0.11449371,-0.18508002,-0.23357186,-0.36355218,0.2544455,0.23619516,0.25952095,0.13044772,-0.61177313,-0.21919155,-0.3634204,-0.47642308,-0.025536457,-0.63583946,-0.553469,-0.09719081,-0.78860354,-0.4720502,0.7266078,-0.022227418,0.018037831,-0.1685529,-0.0740723,0.031459726,0.28152114,-0.002243191,0.1123908,-0.1163488,-0.16681674,0.029570555,-0.11637209,0.1961402,-0.02000294,0.41769704,0.28857622,-0.24735078,0.02799816,0.68212473,0.6631584,-0.20371553,1.0179703,0.30500454,-0.113264754,0.139426,-0.03017124,-0.24052444,-0.44644326,-0.16229275,0.014712816,-0.5143217,-0.1187489,0.11209111,-0.2840641,-0.8531926,0.66427004,-0.05293218,0.017039502,0.095595345,0.2442698,0.21536846,0.025931578,-0.11988817,-0.16846737,-0.08583887,-0.41101098,-0.3031307,-0.7865567,-0.20145097,-0.09339776,1.3726715,-0.15647689,0.13024053,0.19415846,0.07429327,0.19079712,-0.020988781,-0.07351838,0.3047459,0.40144944,-0.08537785,-0.62801516,0.35315838,-0.3458088,0.008358538,-0.38672996,0.11755409,0.63065237,-0.5675313,0.35299546,0.3657394,0.0895558,-0.3521969,-0.650771,-0.22000845,-0.012694013,-0.1501496,0.70276636,0.26378983,-0.84451735,0.4503182,0.21720871,-0.3398975,-0.71321285,0.53506124,-0.14101668,-0.26819146,-0.21721056,0.34733108,-0.14116473,0.13255617,-0.1791411,0.30573037,-0.3203698,0.2095391,0.10205004,0.025801789,0.4518458,-0.32456142,0.11082311,-0.63283956,0.02537331,-0.4593791,-0.33507392,0.13900463,-0.08227874,-0.17948562,0.4636527,-0.0679034,0.3603569,-0.26939544,0.0032188415,-0.07590234,-0.32425418,0.6679041,0.4817253,0.4805119,-0.38497895,0.63954115,0.05630386,-0.15242305,-0.53316885,-0.12966928,0.333554,0.039791394,0.34817585,0.06656475,-0.16979082,0.4870401,0.6681511,0.32840458,0.503559,0.028784249,0.055200864,0.06819476,0.13842385,0.32746848,0.119549915,-0.5077223,-0.0045639575,-0.3069528,0.1822783,0.42435232,-0.050042056,0.35926193,-0.2691564,-0.24972606,0.17434683,0.21006016,-0.396219,-1.3302718,0.4665262,0.044374492,0.68049836,0.6446245,0.1007182,0.11574235,0.6513226,-0.14961821,0.08184961,0.267999,0.40265578,-0.39829734,0.72509295,-0.57880986,0.562834,-0.10191526,0.012274114,-0.13241313,-0.10978861,0.51568997,0.57962865,0.06460102,0.16566579,-0.015383279,-0.23292932,0.100153044,-0.43998942,0.2675243,-0.5534216,-0.20270932,0.75321704,0.32388726,0.31693918,-0.11958493,-0.075828254,0.085686125,-0.16531952,0.28604132,-0.04263836,-0.09570557,-0.11108675,-0.74532425,-0.06494222,0.57015616,0.062107217,-0.037838217,-0.030858194,-0.23865089,0.13168366,0.079503134,0.04441517,0.08742495,-0.6823146,-0.09390004,-0.31193766,-0.23811834,0.37125653,-0.26407337,0.13316922,0.2128601,0.13646445,-0.418804,-0.07086208,0.44754377,0.547964,0.031172806,-0.015014112,-0.077114396,0.13353607,-0.06512317,-0.1860036,-0.007246101,-0.4865881,0.12332535,-0.45008707,0.4984459,0.007250863,-0.41319808,0.21158615,-0.06570713,-0.05066939,0.48313516,-0.0036744834,0.044972785,-0.083904505,0.0014386416,-0.017025892,-0.33896652,-0.27195585,0.27553284,0.07025913,0.023598442,-0.023456369,0.037730217,0.06069777,0.57980615,-0.12941907,0.39835805,0.42601553,0.059672266,-0.52822936,0.029378995,-0.46360832,0.70469224,-0.1097631,-0.0900268,-0.4890345,-0.25041643,-0.13191293,0.3156326,-0.17631598,0.34857076,0.08567437,-0.21146159,0.83775425,0.1480566,1.0952461,-0.14420156,-0.40738067,-0.07979052,0.6427236,-0.035668276,-0.13058202,-0.35550776,1.098232,0.46239337,-0.30258173,-0.26200575,-0.3937326,0.023258865,0.138456,-0.13608034,-0.5148305,-0.18872419,-0.74827397,-0.10986658,0.20428224,0.39975703,-0.03997399,-0.059630107,0.32772297,0.5925343,-0.025409097,0.31150037,-0.28296724,0.17809269,0.4165523,0.10434451,0.03738105,0.011156544,-0.54669636,0.21890974,-0.65981805,0.11829944,-0.30276138,0.13853736,-0.07837254,-0.40634727,0.023095557,0.093332455,0.23864086,-0.38282022,-0.16724166,-0.037282597,0.48743087,0.07886616,0.26600856,0.63612497,-0.24506679,0.14587338,-0.034306962,0.3634693,1.0313625,-0.3370673,-0.15316117,0.2549554,-0.36551946,-0.6905787,0.21901853,-0.3243321,-0.0007312894,0.03205862,-0.26648208,-0.57295394,0.30497652,0.30107445,-0.042946257,0.15459211,-0.55987847,-0.08988921,0.32877344,-0.23145965,-0.16474703,-0.52901244,-0.05882225,0.40277824,-0.16691044,-0.43411598,-0.12223033,0.35628337,-0.26274452,-0.5620781,-0.06649399,-0.5188362,0.26950222,-0.07741751,-0.3223295,-0.10904577,-0.035347663,-0.4340435,0.21871957,0.23216352,-0.20558289,0.1059523,-0.31661686,0.01509403,0.9662162,-0.012182847,-0.0031435401,-0.498604,-0.56185555,-1.07398,-0.18086687,0.58180887,0.09476167,-0.06301583,-0.6718019,-0.05525583,-0.16586098,-0.2570719,-0.21611877,-0.2342942,0.4307889,0.19165215,0.4067894,0.04667272,-0.746168,0.14881745,0.08275457,-0.20769677,-0.22474173,0.7773798,-0.0014951795,0.88355225,0.08686118,0.16512461,0.17504142,-0.54604363,0.28366318,-0.053846717,-0.23404074,-0.44855723,0.114226006,267 +977,0.30270267,-0.22076301,-0.6189473,0.14926556,-0.17274523,-0.18966845,-0.09590276,0.7959539,0.40552926,-0.19913363,-0.29734918,-0.12748644,-0.27541453,0.3970728,-0.07241086,-0.28980315,-0.38153383,0.31560233,-0.4212714,0.68298304,-0.12951788,0.20565715,-0.12247894,0.6605643,0.3843236,0.26793593,-0.26943463,0.15677586,-0.1166201,-0.31529796,0.12669301,0.41031557,-0.4728244,0.40231714,-0.25671688,-0.43502292,-0.2241638,-0.67856276,-0.5142509,-0.77147037,0.24770863,-0.790959,0.65192235,0.084886745,-0.33371258,0.21515858,-0.20305291,0.29214764,-0.098060176,-0.109171964,0.25643715,-0.052190423,-0.20220017,-0.34664375,-0.19484481,-0.08442042,-0.4006177,0.0641029,-0.18408492,0.02727561,-0.17834297,0.19680844,-0.13251123,-0.08759144,-0.17190008,0.624777,-0.47048873,0.09255152,0.021569718,-0.03528756,0.2754859,-0.7208342,-0.2884654,-0.19589068,0.05538894,-0.2654732,-0.33181608,0.17157844,0.06364829,0.3157216,-0.16742826,0.109820664,-0.5285181,0.09713211,0.11066727,0.513218,-0.35965988,-0.49089193,0.084746845,0.1867263,0.38207474,0.14922129,0.17104083,-0.4148222,-0.10203304,-0.26688078,0.1123267,0.33548945,0.5486258,0.13012102,-0.109762296,0.31072095,0.47567,0.4217588,-0.02630642,-0.048858978,-0.019726684,-0.49480146,-0.025907898,-0.25999492,-0.22429495,0.5755531,0.08255319,0.18189634,0.5308258,0.017910969,-0.17578329,0.23393509,0.2559988,0.121306755,-0.290284,-0.3605376,0.30848366,-0.14148639,0.29657242,0.09328227,0.48282972,-0.10626966,-0.8606348,0.3183192,-0.56649923,-0.03634771,0.0132066365,0.4072093,0.68479896,0.53219473,0.3948111,0.66986334,-0.26891333,0.117462896,0.08895446,-0.17435999,-0.1350691,-0.091905825,-0.3577898,-0.61960906,-0.21388903,-0.18317477,-0.45357442,0.3527437,0.36301047,-0.6265572,0.0004144013,0.1856519,0.6991911,-0.24124098,0.018109512,0.9163747,1.1578156,0.97683734,0.1009233,1.040815,0.05190422,-0.27917105,0.11276581,-0.28197667,-0.72021925,0.19688377,0.35673317,-0.75451267,0.36861467,0.13605925,0.2028995,0.37023354,-0.6134646,0.00044805408,-0.2181211,0.1268613,0.13748926,-0.25108463,-0.64757764,-0.29595095,-0.19406529,0.23889904,-0.20960769,0.33209544,-0.298194,0.20952332,0.051739026,1.625267,-0.1484901,-0.0783536,0.13041314,0.3384114,0.03093117,-0.31791544,-0.099038735,0.107467495,0.25284064,-0.11989101,-0.47728163,0.0048719915,-0.016481891,-0.46471724,-0.24044223,-0.041742682,-0.1638005,0.008424776,-0.32106647,-0.45334035,-0.18347962,-0.3899375,0.5565176,-2.59132,-0.029822985,-0.05196839,0.33755627,0.019497449,-0.46292764,0.026717972,-0.14367788,0.40979567,0.30898222,0.5118865,-0.5621885,0.09110691,0.4942804,-0.66669565,-0.1623046,-0.46798334,-0.03239942,0.19720729,0.30385393,-0.03161588,0.061345387,0.11203964,-0.20340152,0.3790105,-0.07015221,0.13551737,0.5832106,0.34821597,-0.19803487,0.18867114,-0.10097512,0.5630902,-0.26747185,-0.42267293,0.42185515,-0.22547965,0.2610256,-0.21860214,0.06621106,0.4726185,-0.48012704,-0.8196584,-0.55112606,-0.09079864,1.2175156,0.019074077,-0.5374434,0.469683,-0.5905503,-0.41570598,-0.09183719,0.5326061,-0.22538039,-0.17139752,-0.95652187,-0.16538826,-0.129013,0.24495402,-0.08616358,-0.21469721,-0.57774216,0.7442376,-0.022097915,0.28397712,0.6598114,0.20463257,-0.39000627,-0.5552582,0.11743001,0.9987712,0.5724441,0.19381489,-0.1714578,-0.038400866,-0.28158605,-0.029338788,0.19654219,0.62890166,0.52215594,-0.18197943,0.17837603,0.20515785,0.033242792,-0.039196488,-0.25749817,-0.15963969,-0.18630637,0.20398936,0.54398304,0.80827254,-0.14721712,0.58278954,-0.14582632,0.15486154,0.116367295,-0.2942496,0.33197927,1.0038058,-0.15795232,-0.508759,0.6181942,0.5794867,-0.25465012,0.40036505,-0.43190044,-0.057451874,0.2462533,-0.10477483,-0.4825533,0.27054948,-0.25428694,0.137073,-0.89508,0.32133502,-0.20381093,-0.83482516,-0.74573505,-0.022087798,-1.8708279,0.21439426,-0.33377305,-0.3973039,-0.14566013,-0.33303845,0.007344377,-0.6810832,-0.8494853,0.12639761,0.07450078,0.5056664,-0.10757003,0.08503419,0.21708632,-0.37124467,-0.046839394,0.18154056,0.21303454,0.34894764,0.023406547,-0.46814197,-0.34400672,0.025423557,-0.38653773,-0.1025156,-0.8039255,-0.33188498,-0.09943463,-0.70018375,-0.08163136,0.49373856,-0.49444956,-0.0467997,-0.30117166,-0.03309893,0.0049256743,0.13831834,0.030184459,0.15142366,0.22921613,-0.05346313,0.12741894,0.1076742,0.1370761,-0.00019754768,0.2718869,0.28967825,-0.2530299,0.41705623,0.39515296,0.9129421,-0.46902323,0.87496746,0.85025024,-0.24619141,0.072689146,-0.3493914,-0.26364493,-0.5387064,-0.2901848,0.1786824,-0.46474448,-0.52772367,-0.007877481,-0.29915985,-0.89551175,0.665531,-0.109972894,0.05285596,0.28978705,0.053867597,0.49439946,-0.19199203,0.013011667,-0.13756166,-0.04834137,-0.44696265,-0.31496114,-0.5211009,-0.39356047,-0.075319424,1.3975092,-0.0440032,0.20399356,0.43459326,-0.37037283,0.07989882,0.15303285,-0.18246107,0.07918112,0.4207944,0.0445681,-0.56403106,0.12194184,0.17237154,-0.10261308,-0.5626483,0.26022774,0.72434384,-0.51020753,0.67127144,0.07751302,-0.1347261,-0.21861973,-0.5821464,-0.19510281,-0.16112499,-0.2893228,0.5245315,0.47553486,-0.49811706,0.34202957,0.42412573,-0.26290748,-0.8985301,0.28712326,-0.06347017,-0.13115138,-0.047844447,0.27932057,-0.11181512,-0.09271226,0.031096166,0.52358985,-0.050747644,0.4055608,0.080615684,-0.24555309,-0.26136827,-0.35063475,0.030716557,-0.94248545,0.5017021,-0.22569835,-0.40872687,0.24896026,0.25550288,0.14862081,-0.055252276,0.34117502,0.41883516,-0.3269426,0.10983026,-0.3011067,-0.40926307,0.15401785,0.42873096,0.6111764,-0.38810858,0.42567787,0.0026372462,-0.17394291,-0.22865506,-0.08042766,0.5456252,-0.20678806,0.1742096,-0.012864068,-0.25436032,0.19405054,0.6548564,0.16487479,0.40173763,-0.23572822,-0.013203105,0.10199189,0.085073456,0.31546384,-0.16930383,-0.6588727,0.36997557,-0.345573,0.10847793,0.30302006,0.27710375,0.17191657,-0.31568474,-0.532195,-0.038974848,0.27487448,0.3540365,-1.3194425,0.42804036,0.14778784,0.8041746,0.5951282,0.24836175,0.18145049,0.7047471,-0.081322886,0.039450057,0.4379216,0.06171156,-0.56807494,0.30852705,-0.76840156,0.4749865,0.17341043,-0.008089364,0.21416697,-0.14015353,0.46177554,0.6917782,-0.22996917,-0.057888776,0.10114577,-0.26764667,-0.31835097,-0.36494908,0.06344317,-0.67690545,-0.47921228,0.8202387,0.66905785,0.2768576,-0.07485413,0.06855549,0.24263553,-0.03552719,0.28735158,0.08934732,0.07921406,0.07227193,-0.58435047,0.14820807,0.49070144,-0.098472275,-0.086786814,-0.15459765,-0.22593784,0.23153472,-0.08445184,-0.2563519,-0.10063998,-0.69373703,0.061310492,-0.5175457,-0.33065495,0.19097343,0.074567616,0.14450026,0.06058824,0.1340333,-0.2515617,0.58912647,0.15184547,0.9371437,0.0876853,-0.09577666,0.043260522,0.5308049,0.14573081,0.029528266,-0.11784413,-0.17945406,-0.1589956,-0.61573476,0.37587467,0.07217071,-0.46125436,0.11980514,-0.03607369,0.16137244,0.40850696,-0.13427147,-0.24405709,-0.072586045,-0.32826224,-0.24422567,-0.3935448,-0.2490286,0.31259048,0.33871153,-0.029287804,-0.14616136,-0.092346236,-0.14775512,0.42978683,-0.07927437,0.63862115,0.2994381,0.27081895,-0.35024983,-0.07528577,0.17701039,0.5274076,0.03239072,-0.072043344,-0.24045832,-0.30028296,-0.45330983,-0.047408592,-0.18839277,0.5011848,0.14660445,-0.16179048,0.68208826,0.19552186,1.3309797,0.004110202,-0.30171674,0.21561317,0.47605997,-0.20622799,-0.19732976,-0.22852746,0.9668209,0.59532535,-0.051672686,-0.01878149,-0.28788632,-0.07875742,0.2356712,-0.195738,-0.15341493,-0.08432339,-0.65081984,-0.15147603,0.29267743,0.29214102,-0.008675933,-0.11275707,0.16200522,0.2716751,-0.16970274,-0.008781677,-0.15363467,-0.102722704,0.39748782,0.23767479,-0.002400446,-0.11593536,-0.6314426,0.30879968,-0.50948185,0.0356257,-0.25421667,0.2052451,-0.35289168,-0.30751982,0.09691523,-0.054073382,0.3856233,-0.3559731,-0.122816466,-0.32778403,0.6241647,-0.17103049,0.0069992035,0.33717698,-0.40109196,0.20170085,-0.10761396,0.21545449,0.6483084,-0.36133313,-0.08394027,0.2589867,-0.12767771,-0.25058317,0.35106504,-0.25760418,-0.022993337,0.04421516,-0.07421805,-0.7033861,0.09005718,0.1214062,0.096605554,-0.3591244,-0.63032216,-0.07677375,0.30238757,-0.20031957,-0.024369448,-0.32612842,-0.17976953,0.6487926,-0.09596736,-0.70433533,0.1582695,0.074194446,-0.2770633,-0.23131022,0.105625644,-0.38056713,0.21632382,-0.12822986,-0.576424,-0.41820994,0.11784853,-0.34931335,-0.056243617,0.10445938,-0.34599385,0.021253377,-0.36732882,0.107814,1.035338,-0.24539714,0.5493891,-0.39745015,-0.60220987,-0.90197545,-0.27631247,0.5224079,0.22514208,-0.13186684,-0.9401415,0.08476186,-0.28811964,-0.20061472,-0.1141784,-0.13224584,0.48538175,0.19117396,0.54704773,-0.50656193,-0.8028841,0.47531638,0.27674404,-0.0742351,-0.5348644,0.5604002,0.38366356,0.9139946,-0.07520707,0.21150765,0.11969022,-0.61884993,0.01537385,0.12798546,-0.22281972,-0.5429152,0.06150139,352 +978,0.58248997,-0.5155177,-0.5585042,-0.1554834,-0.3319211,0.017544592,-0.3825368,0.43781447,0.30907288,-0.3994363,-0.36382157,-0.15031426,0.0874148,0.09693818,-0.33297044,-0.47944522,0.003825891,0.113105975,-0.56621444,0.33693317,-0.60867286,0.30204067,0.18471673,0.39897582,0.26333687,0.12564333,0.07995675,-0.057871204,-0.03149035,-0.362859,0.09382935,0.24052659,-0.71901685,-0.087249495,-0.4768942,-0.4892025,-0.05199235,-0.8033346,-0.1663771,-1.0403335,0.20132756,-1.1264834,0.52908075,0.09159803,-0.4129359,-0.1611573,0.30996767,0.16866931,-0.247996,0.06757979,0.23071893,-0.06047826,-0.21243432,-0.12411158,-0.20514226,-0.43436328,-0.6616068,-0.031235963,-0.5401629,-0.31204364,-0.2527091,0.26898843,-0.3309181,-0.019972168,-0.36705953,0.3952282,-0.4490127,0.045977622,0.036221363,0.07393761,0.6262288,-0.73566866,-0.21228144,-0.2634518,0.37258285,-0.16805485,-0.55575454,0.32987916,0.71520174,0.31088734,-0.07365684,-0.16729248,-0.29056698,-0.10303788,0.09434132,0.5243702,-0.419043,-0.47661978,-0.22684553,-0.042703133,0.63441527,0.72416174,0.060323514,-0.222439,0.12613788,-0.1385059,-0.31553602,0.75909626,0.65461016,-0.367728,-0.24204187,0.12808831,0.56094074,0.47915727,-0.37999958,-0.084767185,0.076876394,-0.8018511,-0.13705638,0.39586583,-0.23573379,0.71735406,-0.2249206,0.31234708,0.72023743,-0.31434923,0.111448765,0.30945134,0.060052186,-0.15346469,-0.2547549,-0.38405538,0.25277805,-0.76141393,0.11048633,-0.47124052,0.7452787,0.07701273,-0.8034981,0.3520397,-0.7028133,0.19545497,-0.17491788,0.5585547,0.8245352,0.5152381,0.4524657,0.7806853,-0.124490544,-0.019626806,-0.0139942765,-0.37369198,0.32457188,-0.35468313,0.16454132,-0.3908654,-0.07679907,-0.3124276,0.07456128,0.10887375,0.77936286,-0.6221072,-0.2402137,0.13728765,0.53229153,-0.28944892,-0.061083723,0.781175,1.0762863,1.1044587,0.27403915,1.2961781,0.24973798,-0.2482458,0.23060937,0.08487896,-0.7653177,0.35018867,0.27621096,-0.89657706,0.25957397,-0.199368,-0.17422771,0.30762714,-0.3836074,-0.08949001,-0.016162958,0.13224736,0.12657216,0.015652765,-0.571693,-0.37246782,-0.039052747,0.11476196,-0.030061115,0.28583536,-0.2238111,0.18493369,0.04416847,0.9543439,-0.1414309,-0.048155405,0.07973595,0.46333194,0.11015254,-0.14833371,-0.0036985637,0.2992398,0.40704888,0.16282572,-0.74002105,0.2299453,-0.2732069,-0.20034692,-0.00014373063,-0.42896265,-0.30365664,-0.013829028,-0.554158,-0.23263498,-0.18024111,-0.17410183,0.471222,-2.532937,-0.31899324,-0.09188224,0.29862416,-0.17253436,-0.32683724,-0.20879528,-0.55872965,0.35228592,0.18822198,0.6058821,-0.76579064,0.32704094,0.7510699,-0.61968935,-0.17150493,-0.9397398,-0.35427552,-0.037236415,0.3689428,0.123974666,-0.13906305,0.17467925,0.11151884,0.7669672,0.2419084,0.2371666,0.30975726,0.87087315,-0.113387324,0.7536417,-0.20331244,0.38946286,-0.42813396,-0.38079327,0.18882275,-0.4528067,0.31387696,-0.0702965,0.027270153,0.7118818,-0.58609235,-1.1898801,-0.6292645,-0.38558847,1.2110037,-0.30912894,-0.5848368,0.2220501,-0.33679584,-0.113047935,-0.067360155,0.8330914,-0.036501296,0.14278528,-0.8340004,-0.10319202,-0.12635441,0.09129818,-0.012358924,-0.0098244725,-0.33598965,0.76187336,-0.02987414,0.45204955,0.13395867,0.027980745,-0.47061223,-0.5851701,0.13085334,0.94880754,0.400106,0.06104473,-0.31518552,-0.23527725,-0.45173937,0.085132346,0.076802984,0.7036923,0.8526537,-0.09815043,0.36623025,0.36318356,0.05428084,0.10717245,-0.23283009,-0.37433428,-0.22333923,0.012873101,0.6145911,0.7745815,-0.02522102,0.40834093,-0.14227271,0.12280446,-0.17368291,-0.4374237,0.5727363,0.9499313,-0.18181233,0.10106345,0.6792774,0.5986222,-0.53644526,0.5886021,-0.61325896,-0.30996674,0.5525382,-0.1298786,-0.55675936,0.33862552,-0.34269303,0.1064497,-0.7757219,0.45979613,-0.53030956,-0.19178078,-0.44365054,0.012700248,-3.1960728,0.4753852,-0.06887099,-0.019453824,-0.49027044,-0.36122918,0.40141815,-0.5384201,-0.8144541,0.11438437,0.10637965,0.707974,-0.29364967,-0.007348135,-0.251419,-0.4951474,-0.13888457,0.22037145,0.2540563,0.4049727,-0.286736,-0.38756305,0.07456623,-0.07413669,-0.3664286,0.07027016,-0.65544975,-0.77066886,-0.035237007,-0.48864836,-0.34824783,0.70456576,-0.4439655,-0.060413145,-0.11898255,0.15568523,-0.020460587,0.4138237,0.059917856,0.36170852,-0.09861286,-0.034536436,0.10289303,-0.016251069,0.62237245,-0.09084515,0.14030018,0.22327396,-0.1046807,0.18169901,0.6062525,0.7809586,-0.16518314,1.4507278,0.27157903,0.043708228,0.21066587,-0.22706954,-0.4575158,-0.6592939,-0.007733959,-0.14761986,-0.4588353,-0.39545098,0.18565437,-0.10181258,-0.74351984,0.7461983,-0.13404587,0.42584544,0.01782621,0.6077029,0.35039523,-0.12041736,0.06322132,-0.1029249,-0.18774691,-0.5034326,-0.29300943,-0.6994477,-0.34530076,-0.13293992,0.8456483,-0.38165075,0.020329619,0.059867937,-0.06712863,0.11928346,0.022770975,-0.029775506,0.21421805,0.43408594,0.06410129,-0.72825205,0.3268986,0.07711452,-0.1260691,-0.48259658,0.16571645,0.8755144,-0.8925851,0.633817,0.54577935,-0.15477669,-0.28285646,-0.6878928,-0.16500756,0.14402635,-0.30602926,0.61067414,0.19857588,-0.9508754,0.49349517,0.6118819,-0.40166536,-0.7066512,0.827592,-0.07060613,-0.11010505,-0.38437217,0.43698162,0.22539859,0.04307879,0.018539742,0.3735049,-0.46182862,0.35978943,-0.14813253,-0.031561956,0.22875309,0.0028969229,-0.083321504,-0.7900177,0.26697877,-0.5906455,-0.31099427,0.52650255,-0.06732385,-0.018500831,0.5345098,0.17947158,0.45255914,-0.35354486,0.030778294,-0.10182357,-0.35286897,0.24722195,0.5952231,0.51634705,-0.40338683,0.6298608,0.33009464,-0.28612804,0.31600326,0.06905739,0.28099936,-0.0536075,0.42666483,-0.15233728,-0.38370094,0.25712112,0.88955724,0.13873808,0.6455963,-0.06408814,0.12325704,0.30909923,0.17912552,0.37086418,-0.1402466,-0.65975654,-0.12642172,-0.27729294,0.1587917,0.55530584,-0.009763909,0.11232369,-0.025679385,-0.13186865,-0.066433616,0.49953598,0.045609795,-1.3879391,0.29070044,0.15811504,0.88144445,0.5792725,0.041510504,-0.057553727,0.54513335,-0.27651757,0.06859597,0.7262269,0.41423398,-0.51806885,0.76865166,-0.5674574,0.4022309,-0.50070536,0.18804781,-0.056229286,0.11590133,0.41033572,0.95762175,-0.27219272,0.051443357,0.08779316,-0.35209784,0.060502566,-0.47651085,0.24389467,-0.38466376,-0.26468423,0.9479103,0.46652904,0.3396774,-0.16869906,0.02162965,-0.004341171,-0.26923004,0.32511792,0.03908817,-0.03421718,-0.01983245,-0.803316,0.20445009,0.76829165,0.23319674,0.02181903,-0.18566492,-0.2610987,0.20439911,-0.25402912,0.22870848,-0.076182075,-0.8878813,-0.16731188,-0.6415823,-0.68147665,0.30461273,-0.170549,-0.027421664,0.3752852,-0.005393248,-0.23200937,0.35894006,0.31919074,0.6119093,-0.12985548,-0.13477382,-0.33426142,0.21765096,0.24753308,-0.24956593,-0.24721572,-0.2304401,0.18650971,-0.35412616,0.66222894,-0.21862635,-0.5864188,0.0015159845,0.009242264,-0.15998007,0.77013093,-0.14765744,-0.12479456,-0.117927566,-0.07901556,-0.24241671,-0.17071733,-0.11397624,0.18703267,0.27138987,-0.13547057,-0.34683627,-0.3642547,-0.06679928,0.3329482,-0.1651713,0.6105212,0.60413283,0.34606206,-0.23740582,0.14812787,0.07799255,0.69606704,0.032972954,-0.21980497,-0.75416607,-0.21103103,-0.26040268,0.26170284,0.040365897,0.37339193,0.16551343,-0.3530765,0.9818114,-0.12995449,1.059192,0.043445177,-0.44523796,-0.01755861,0.52789366,-0.27451625,-0.23226133,-0.3577088,0.7913976,0.53449446,-0.33710146,0.010891649,-0.4344894,-0.1132102,0.18808493,-0.3662786,-0.12868538,-0.19113375,-0.58571947,-0.074019894,0.16019535,0.39194906,0.18463561,-0.11897153,0.19880785,0.3332333,0.089588985,0.44389915,-0.6766529,-0.28110623,0.0316655,0.60235536,-0.18183081,0.1953672,-0.23800921,0.28962496,-0.6705705,0.21990657,-0.73139524,0.16851345,-0.22352739,-0.45715818,0.018346088,-0.0873846,0.378198,-0.13580741,-0.31947255,0.031956147,0.36526334,-0.040981613,0.32060662,0.5983442,-0.23400351,0.03338954,0.031688638,0.7001654,1.3563786,-0.3604119,-0.28331703,0.20453861,-0.36181682,-0.7820616,0.5355045,-0.6522838,0.012289846,0.069546215,-0.24498609,-0.3461046,0.11271523,0.23950395,0.3383112,-0.25150225,-0.7656708,-0.19032073,0.46274084,-0.13738635,-0.1759392,-0.2813148,0.39619377,0.58669037,-0.3795625,-0.21195713,-0.36465412,0.39222825,-0.16307986,-0.44869298,0.056680508,-0.49822393,0.34086072,0.11840383,-0.3359622,0.038963728,0.1344032,-0.59386104,0.14995794,0.042615317,-0.32166824,0.13573922,-0.31606725,0.11255572,1.0112087,-0.28748626,-0.23955217,-0.29187983,-0.7097847,-0.7706811,-0.19595799,-0.03888315,0.3596117,0.13189521,-0.4342204,0.17685589,-0.1226604,-0.4115215,-0.07673846,-0.5394689,0.45563078,0.1010319,0.5835811,-0.2809784,-0.80110437,0.21843472,0.24187675,0.0038047596,-0.56545,0.68075293,0.019487465,0.78495777,0.17165212,-0.058407366,0.025410105,-0.37856606,0.073310114,-0.15268013,-0.05826179,-0.8885721,0.022545625,418 +979,0.76107115,-0.33354887,-0.6878814,-0.25452816,0.0043636216,0.061218195,-0.3302631,0.8232317,0.36436856,-0.4662754,-0.3061758,0.03907133,-0.042215984,0.62280107,-0.2581543,-0.75841445,0.15727416,0.21948063,-0.39896402,0.48067442,-0.45183268,0.27424437,-0.16797063,0.6385861,0.16299847,0.21131417,0.12721296,0.046425402,-0.011177635,-0.2608758,0.04838066,0.35665274,-0.531115,0.13551936,-0.17568554,-0.4349026,0.025590574,-0.49319673,-0.30447993,-0.88811433,0.30808347,-1.0481827,0.84242535,0.0583152,-0.30615482,0.13830428,0.10470903,0.101464294,-0.26697105,0.06298722,0.07324226,-0.07249192,-0.07477914,-0.2859618,-0.26614136,-0.7520963,-0.47823173,-0.062955186,-0.32651058,0.038876675,-0.34956545,0.124001145,-0.34143656,0.049589496,-0.12360398,0.33035713,-0.5364504,0.03829226,0.11501509,-0.17043371,0.026695762,-0.7160897,-0.29178184,-0.15600617,0.22688088,-0.07324906,-0.28535706,0.13258441,0.34416825,0.55067414,0.023281792,-0.24951248,-0.28912959,-0.04470015,-0.19543484,0.49356842,-0.44594917,-0.64348996,-0.22078443,-0.14344418,0.56029886,0.17340544,0.3094582,0.021491861,0.18077321,0.16440812,-0.35131636,0.5991965,0.63011134,-0.44040775,-0.063975275,0.2871391,0.269671,0.4381064,-0.20844486,-0.06697458,-0.00010195039,-0.5405618,-0.25667766,-0.16128683,-0.3263805,0.702354,-0.06946546,0.2806061,0.61038077,-0.10804232,0.037742157,0.26886225,0.26498747,-0.11974915,-0.25498864,-0.5219434,0.3198513,-0.48108858,0.25426108,-0.335541,0.87099046,0.22280276,-0.40746206,0.291326,-0.50453675,0.019934729,-0.24285977,0.44926682,0.6229442,0.56107783,0.19604044,0.6299086,-0.46283206,0.027663594,0.06828056,-0.19644889,0.22756943,-0.28343195,-0.024998346,-0.416642,0.374948,0.04745242,-0.053753734,0.265599,0.82883036,-0.44700733,-0.3019634,0.3409379,0.9972084,-0.33464226,-0.03504865,0.8648211,1.2064121,1.0059295,-0.045864914,1.243735,0.32672006,-0.2282494,-0.04305157,0.15046509,-0.8765324,0.41638032,0.45356828,-0.5874554,0.45351687,0.19167952,-0.19541505,0.5205971,-0.41202703,-0.3403534,-0.16031143,0.3003194,0.039209895,-0.19341554,-0.71802247,-0.1398088,-0.031900357,-0.061023116,0.3506616,0.34142983,-0.23127356,0.30168867,-0.13754562,1.1517813,-0.2272801,-0.037717454,0.02394698,0.70013744,0.29107812,-0.04517481,0.38629627,0.042595237,0.5642801,0.0726527,-0.70378363,0.21703184,-0.3264979,-0.51073015,-0.11001159,-0.3724157,-0.037574865,0.17619045,-0.52581865,-0.31118608,-0.110335864,0.13539279,0.15710986,-2.2011828,-0.18227808,-0.15521458,0.54517156,-0.2174205,-0.38004476,-0.13414271,-0.40837446,0.5482746,0.25563842,0.51681584,-0.6105675,0.4675506,0.44637638,-0.54876566,-0.0625054,-0.7225623,-0.08235377,-0.16307874,0.39555678,0.14147356,-0.25817862,0.16511779,0.09013806,0.7557828,0.19834426,0.31578547,0.3288295,0.61881196,-0.29279202,0.27164418,-0.19827786,0.7391446,-0.3509359,-0.22836447,0.30417198,-0.4805495,0.14168124,-0.46540552,0.22636211,0.52144676,-0.57834613,-1.1274776,-0.6395138,0.23437342,1.3231552,-0.1279957,-0.6905333,0.15777494,-0.23534298,-0.3376526,0.03589834,0.53219485,-0.2292699,-0.1551706,-0.8211651,-0.06958101,-0.19518504,0.02879783,-0.013614145,0.13659194,-0.36960858,0.68601054,0.023625914,0.48145208,0.09358826,0.32495227,-0.1510875,-0.48285574,0.009481487,0.82517165,0.54841363,0.17328921,-0.20749989,-0.17171887,-0.26082486,0.026597396,0.11545249,0.8257141,0.7088741,-0.13421886,0.044113494,0.15039071,0.15431046,0.20959921,-0.08896743,-0.5516224,-0.31944138,0.10838944,0.65054494,0.6279726,-0.3209692,0.14258851,-0.1100831,0.43199334,-0.33875102,-0.3493195,0.56507224,1.2488817,-0.42327124,-0.20241506,0.86407566,0.35659337,-0.43878046,0.5756332,-0.86346817,-0.5101024,0.36015952,-0.0460855,-0.34649295,0.04760475,-0.3380536,0.1735132,-1.003236,0.38453954,-0.49666348,-0.44088715,-0.49972385,-0.22702244,-3.6957119,0.26078492,-0.28197774,-0.13634655,-0.44448757,-0.30150804,0.45344287,-0.7263861,-0.7104238,0.16352043,-0.015445677,0.7324864,-0.14644569,0.14468685,-0.30732673,-0.44311935,-0.23792624,0.052220292,0.12932728,0.46109754,0.077161,-0.49655432,0.11756353,-0.023069937,-0.351383,0.061868764,-0.7828541,-0.3921109,-0.13751571,-0.6209365,-0.13781531,0.6919366,-0.26381117,0.010760257,-0.3692044,0.26551536,-0.5370556,0.35102007,-0.22867303,0.14596407,-0.07163367,-0.23937015,0.3086532,-0.25036603,0.40265623,0.08898175,0.41364416,0.26441392,-0.32932058,-0.16845435,0.5894524,0.6160768,-0.07499508,0.99458426,0.52525395,-0.058457177,0.43192416,-0.16729233,-0.3499663,-0.4918375,-0.47798938,-0.024776183,-0.5280254,-0.389141,0.041383795,-0.52626723,-1.0200789,0.5156878,-0.06973629,0.4971025,-0.016152669,0.23193395,0.6190909,-0.15089394,-0.10577662,0.04221902,-0.08079006,-0.54800934,-0.10216445,-0.62957394,-0.39054865,0.014983076,0.7607673,-0.18022144,-0.007841313,0.19691172,-0.14996548,0.12418165,0.12664992,0.014516002,-0.25118724,0.61362666,-0.05809685,-0.85180223,0.397092,-0.28472415,-0.14041206,-0.6325384,0.2746243,0.48453036,-0.7522296,0.69172144,0.65025914,0.06718791,-0.19690295,-0.6646942,-0.3430817,0.056385987,-0.07314896,0.35810146,0.23240311,-1.1132221,0.42300463,0.51208264,-0.43110055,-0.5295738,0.69212395,-0.077261545,-0.21828754,-0.17477489,0.50372607,0.15225784,0.0052844523,-0.16012457,0.28611404,-0.5568978,0.54376346,-0.01941717,-0.06470199,0.3520357,-0.07712868,-0.047408655,-0.84291077,-0.00977386,-0.6819855,-0.3315422,0.35118464,-0.027084216,0.24204655,0.031993292,0.252796,0.3941078,-0.5558108,0.21926601,-0.24636261,-0.47198382,0.5228762,0.5479879,0.641657,-0.39166126,0.62782556,0.16127424,-0.28429803,0.32461375,0.2657841,0.44978252,0.08553614,0.5517651,0.06104193,-0.105569504,0.13246484,0.89182776,0.2210784,0.43475938,0.11985467,-0.11618004,0.34372798,0.19119683,0.041043967,0.05138098,-0.5205325,-0.23820587,-0.26489657,0.09307994,0.7076658,0.19632569,0.29458532,-0.039429985,-0.1924413,0.006311202,0.07243003,0.13549203,-1.4000612,0.34711814,0.08716114,0.8372998,0.27481657,-0.004775393,-0.13687015,0.5328943,0.04382139,0.036748875,0.39833325,0.021877874,-0.44730163,0.657668,-0.42496553,0.22773671,-0.22705793,0.06743524,0.00873515,0.16493931,0.38216943,0.89543074,-0.031172097,0.11048603,0.09222296,-0.38110894,0.09235612,-0.5534919,-0.06793509,-0.5562042,-0.098782256,0.6949595,0.58834195,0.41757688,-0.4105513,0.013672042,0.08142565,-0.049196135,0.1161958,0.044099636,0.13524568,-0.12811033,-0.89257944,-0.016553547,0.6263242,0.16942212,0.15479906,-0.04793928,-0.3817929,0.39158133,-0.1786246,0.07445023,0.08082893,-0.71326816,-0.15560913,-0.5544112,-0.56266916,0.43003696,0.120294645,0.10898368,0.22256951,0.13784409,-0.14247201,0.052193295,-0.124595165,0.73328316,-0.13775012,-0.3924558,-0.6964018,0.06791736,0.2340425,-0.35735354,0.018874586,-0.3357772,-0.017594362,-0.3562084,0.40079445,-0.039268147,-0.112666905,0.083953835,-0.13483328,0.07978262,0.51136047,-0.2968301,-0.07491088,0.14401838,-0.12283883,-0.46324173,-0.40087795,-0.21405277,0.29649252,0.15934888,0.06083698,-0.31339258,-0.2217947,-0.07411294,0.3916299,-0.0043887035,0.2852305,0.69831693,0.2604316,-0.05403299,-0.13391913,0.37317905,0.7254583,-0.08861059,-0.3418988,-0.43987423,-0.77054876,-0.43157583,0.15028316,-0.1079849,0.32237613,0.1903816,-0.14113069,0.67287105,0.10614057,0.9962284,0.019379342,-0.48260736,0.018503105,0.7370756,-0.0929242,-0.10255227,-0.4808529,1.1825413,0.56080973,-0.1353104,0.020163335,-0.4497335,-0.059444536,0.24522085,-0.33925933,-0.22783999,-0.20770828,-0.87100714,-0.26444104,0.23769519,0.3868738,0.20805533,-0.015735906,0.35609922,0.44679037,0.28226763,0.35976738,-0.78514135,-0.41292697,0.29206362,0.28619486,-0.08870681,0.21210656,-0.43588978,0.13057463,-0.5850906,-0.1371415,-0.47849727,0.24617608,-0.17862919,-0.55649203,0.29474768,-0.12621717,0.34497645,-0.4706233,-0.33927137,-0.0876385,0.37309995,-0.010974282,0.13643956,0.42646867,-0.30353186,-0.022094551,0.11468472,0.73179924,1.0603579,-0.061592102,0.2656073,0.41938406,-0.5490657,-0.9115345,0.18885782,-0.22855778,0.3029531,-0.1219453,-0.17404456,-0.69487435,0.4142068,0.1522939,-0.09612067,0.13181055,-0.58719933,-0.16824222,0.23405898,-0.14547619,-0.23051906,-0.24287276,0.087376855,0.62411183,-0.37498024,-0.24312058,0.08211042,0.508157,0.013663804,-0.7603016,-0.08967814,-0.55541545,0.4920053,0.1212009,-0.37896657,-0.27647287,-0.26133233,-0.53165543,0.4076189,0.22633728,-0.3588973,0.19075216,-0.58899534,0.09721885,0.75802964,-0.20283797,0.23945908,-0.7038445,-0.5633706,-0.9378582,-0.4831645,0.35527217,0.29579014,0.06603722,-0.76139647,0.18189995,-0.0050913664,-0.16234276,-0.24091025,-0.29020727,0.40627307,0.011122468,0.5236806,-0.06552081,-0.7427475,0.18599558,0.1184745,-0.29442316,-0.5038971,0.50410306,-0.19810739,1.1512175,-0.012286427,0.14129779,0.077940024,-0.61522305,-0.14777678,-0.23170403,-0.21209475,-0.86231315,0.17823504,536 +980,0.25146565,-0.36239854,-0.46195096,-0.17846766,-0.030383293,-0.038663693,-0.14251819,0.60467017,0.08071542,-0.55977243,-0.29627043,-0.23407285,0.066041134,0.5829401,-0.19931321,-0.4372336,-0.08424716,0.036948893,-0.46307644,0.43159837,-0.46095222,0.21861713,0.17253987,0.37726778,0.23958106,0.25667542,0.35697597,0.17047718,0.20813587,-0.2859998,-0.30024034,-0.14760461,-0.33646128,0.054200433,-0.027144387,-0.71718293,-0.1734325,-0.4854104,-0.22499737,-0.5637577,0.49921948,-1.1099613,0.45546237,0.015346269,-0.16491331,0.16454454,0.3034156,0.38559538,-0.0378892,-0.031251557,0.09656974,0.11370997,0.22648223,0.049811803,-0.20767908,-0.6719302,-0.607261,-0.006629196,-0.3630274,-0.38002688,-0.031628285,0.114696644,-0.41344985,0.2723577,-0.02605618,0.30011505,-0.3764512,-0.3970302,0.34434038,-0.26757368,0.5623962,-0.68408227,-0.17326185,-0.13325848,0.05226478,-0.17401382,-0.16875824,0.0366466,0.31785268,0.47127628,-0.19306785,0.024639254,-0.1683627,-0.22315283,0.0039616586,0.53784484,-0.11389546,-0.44393507,-0.17793298,0.09860934,0.23374113,0.27292278,0.36928526,-0.23672815,-0.021434875,-0.05565951,-0.48663402,0.2978006,0.45024213,-0.38383925,-0.2094402,0.325099,0.69800746,0.16371588,-0.1774627,0.16328962,0.11864607,-0.40190515,-0.16346039,-0.13461745,-0.13192126,0.74220717,-0.20137219,0.50364596,0.47221413,-0.14475393,0.29181308,-0.13719226,-0.11439254,-0.56266844,-0.088630185,-0.30495346,0.15950361,-0.54049,0.13224006,-0.15436341,0.68119097,0.18972512,-0.6210319,0.41559115,-0.4491225,0.15006527,-0.20722468,0.41996813,0.6493941,0.15628079,0.15296581,0.632965,-0.3659001,-0.03181108,-0.3245522,-0.18209164,0.10554123,-0.10517621,0.04810431,-0.5896927,-0.008960945,0.40967494,0.012899597,-0.05722496,0.59813035,-0.54094684,-0.030906623,0.184329,0.8332197,-0.26030633,-0.1530753,0.7897295,1.1822182,0.9764759,0.19803278,0.95892274,0.15985918,-0.21533923,0.061662674,0.010924434,-0.70094544,0.17120898,0.5150702,0.2160147,0.5223998,0.09066653,0.14176263,0.54494536,-0.38419345,0.3169902,-0.15465288,0.25976148,0.073010944,-0.100018665,-0.32513303,-0.066341646,0.06294809,0.08663825,0.027362537,0.27235827,-0.083625935,0.5492647,0.11738205,1.6098287,-0.22932334,0.16196625,0.028331721,0.44042388,0.08241896,-0.40713596,0.11875558,-0.09945594,0.6318799,0.00047674478,-0.5615265,0.08124201,-0.052179825,-0.5593338,-0.2508977,-0.26402816,0.08153734,-0.09460066,-0.4242534,-0.18437462,-0.16299477,-0.22523698,0.25812417,-3.0541427,-0.22008014,-0.36111024,0.2682073,-0.31470677,-0.34892654,-0.07668745,-0.45646495,0.5008044,0.6099874,0.3032151,-0.7582136,0.43905106,0.28174287,-0.31623527,-0.012971786,-0.6819671,0.11633494,-0.15565397,0.3746521,-0.004777658,-0.093678616,0.09545787,0.41635942,0.4022603,0.043399468,0.2588596,0.1680002,0.34392446,0.09070216,0.42480263,-0.12445531,0.47148308,-0.16749242,-0.10267912,0.27506557,-0.23630437,0.057430785,-0.36618072,0.25923425,0.3277903,-0.43718886,-0.66205525,-0.7080142,-0.37738746,1.1897832,-0.32453924,-0.50519043,0.20983887,-0.2777659,-0.27111688,-0.12392092,0.5380029,-0.26526585,-0.10016801,-0.8172328,0.08877921,-0.26912856,0.1377155,-0.060359783,-0.32956594,-0.4909719,0.6870039,-0.087008275,0.43054813,0.4218976,0.16767006,-0.24018745,-0.32327288,0.049709253,1.0030338,0.52499044,0.07412461,-0.20601669,-0.08097871,-0.6124064,-0.19578381,0.32838738,0.4497052,0.8770156,0.05616992,0.23105642,0.24465004,0.0650012,0.0025896549,0.0014468462,-0.25802687,-0.0038978006,0.075740784,0.7061713,0.31781274,-0.101489164,0.51368177,-0.19863081,0.1573227,-0.30687958,-0.5023764,0.5060366,0.6360158,-0.0821475,-0.2536915,0.6462416,0.5854733,-0.18799944,0.43528676,-0.6599348,-0.314481,0.3737895,-0.02372005,-0.3472527,0.20387907,-0.42144394,0.2452313,-1.0558549,0.11604321,-0.2641372,-0.5077899,-0.67449147,-0.29413858,-3.6810029,0.24186301,-0.045708794,-0.38862675,-0.033386398,-0.4845708,0.42744023,-0.60769576,-0.76995873,0.29024988,-0.022613788,0.6906186,0.035256676,0.035009008,-0.20564842,0.026508782,-0.32213774,0.0021779598,0.010449916,0.29175797,0.15339115,-0.42168155,-0.09352004,-0.13852815,-0.4669262,0.096406356,-0.5456158,-0.5343258,-0.3078894,-0.4429717,-0.30043173,0.59080845,-0.24727666,0.027278492,-0.23654528,-0.16640729,-0.21570782,0.4231971,-0.0021898418,-0.016026502,-0.05004553,0.059437342,0.086974606,-0.29156655,0.0702867,0.13395925,0.24956533,0.25277615,-0.20853579,0.29060578,0.53533983,0.65141165,0.02607106,0.6429986,0.5553969,-0.015204499,0.25329894,-0.19566508,-0.048588417,-0.31867254,-0.2982521,0.0023973763,-0.4900961,-0.7084067,-0.23453279,-0.20380493,-0.7404719,0.40862298,0.10799199,0.27756304,0.1889734,0.2721776,0.3387161,0.10035913,-0.017762896,-0.16833699,-0.114141144,-0.726946,-0.3803521,-0.68072724,-0.35748744,0.28378028,0.9569088,-0.1333141,-0.057980895,-0.01836977,-0.2053746,0.09231975,0.12983456,0.014093732,0.09742623,0.22504883,-0.22058907,-0.75415576,0.37873903,-0.17092246,-0.21587129,-0.6526051,0.043790765,0.45885658,-0.609529,0.29001933,0.16693126,0.12675422,-0.28252262,-0.39151436,-0.13737163,-0.04793901,-0.43186814,0.2999757,0.19431607,-0.7086452,0.4594244,0.30452102,-0.0070779147,-0.6755818,0.548213,-0.04621318,0.021126425,-0.22816613,0.14291403,0.16925508,0.13764688,-0.19976917,0.045249242,-0.40091118,0.17655928,0.26914915,0.084024236,0.57173884,-0.17064103,0.060973454,-0.49057484,0.15102243,-0.596001,0.013570631,0.061663527,0.045418065,0.27627704,0.3714901,-0.1205284,0.26659966,-0.36558825,0.212751,0.02940548,-0.21026659,0.19994621,0.36015505,0.14652462,-0.4771615,0.7069659,0.12805484,-0.0050783753,-0.2908144,-0.04486268,0.3694432,0.36612505,0.19531626,-0.0800946,-0.3177886,0.22674341,0.92455447,0.22564058,0.29654917,0.034609426,0.1073875,0.15278979,0.0769481,0.038303513,0.19982278,-0.5264274,-0.10808619,-0.26596937,0.092132896,0.47617406,0.17438999,0.46398455,0.010688079,-0.44045967,0.05279116,0.0826319,-0.19128682,-1.2302033,0.31819692,0.21581419,0.66851056,0.6567126,-0.10798297,0.028066855,0.46024346,-0.3640132,0.24032016,0.25778276,0.10192846,-0.4716088,0.5480753,-0.75848776,0.493308,-0.019654462,-0.054971587,-0.20923634,-0.02314666,0.40733385,0.80473155,-0.14659278,0.2051394,0.0524307,-0.19726494,0.087720715,-0.36915112,-0.2278914,-0.65865177,-0.1927174,0.7494503,0.2806104,0.43973747,-0.020316636,-0.071292005,0.09419592,-0.001557681,-0.072523125,-0.08344648,0.20953634,-0.19854863,-0.58968216,-0.35944614,0.5180296,0.23056214,0.17555487,0.13632715,-0.55525845,0.19976725,0.053011365,-0.11703117,0.09470331,-0.7692485,0.02106909,-0.21449736,-0.37149283,0.47899145,-0.38023692,0.29712147,0.18092579,0.025171164,0.07265536,0.09985517,0.11690112,0.68000954,-0.07209325,-0.10040627,-0.41472167,0.043143004,0.10909231,-0.18103197,-0.17036077,-0.3280405,0.06720707,-0.6371404,0.49101108,0.15419355,-0.22132988,0.3317132,-0.13214473,0.06377424,0.4720746,-0.163684,0.16079195,0.34600535,-0.2706767,-0.075044826,-0.23981848,-0.1900035,0.41549674,-0.17927521,0.13606687,0.08313281,0.013730327,-0.19115594,0.26006573,0.14765489,0.34857607,0.41830772,0.019830292,-0.38829094,-0.20123956,-0.088417515,0.3442195,-0.06535942,-0.27372947,-0.20581654,-0.7011366,-0.33602294,0.2138646,0.014942378,0.37424374,0.036925543,-0.08403344,0.52530587,0.18145624,1.0500834,0.01296849,-0.5281436,-0.052318476,0.42800212,-0.036613256,-0.12926188,-0.19019283,0.7113983,0.43092126,0.014468759,-0.13731341,-0.31790385,-0.138254,0.41510803,-0.09619165,-0.27930713,-0.054992937,-0.6185856,-0.3846688,0.19084981,0.26594394,0.11475314,-0.0014808982,0.43198252,0.19907334,-0.17651248,0.46003932,-0.52178836,-0.12001421,0.3770507,0.17854603,-0.009352893,0.0003406167,-0.39072633,0.3019372,-0.621173,-0.12554218,-0.33900762,0.14303368,0.06258216,-0.35945314,0.22727661,0.06794651,0.41208172,-0.2569406,-0.35723227,-0.1113631,0.6339697,0.039190307,0.2656964,0.47666678,-0.21335849,0.15029716,-0.0782964,0.4468503,1.1928475,-0.17043826,0.11126516,0.3616547,-0.36212796,-0.7341191,0.38705525,-0.23974738,0.37413326,0.11592597,-0.2201829,-0.5388762,0.4618104,0.35150686,-0.22980814,0.23647055,-0.30715448,-0.50497496,0.22698197,-0.31993353,-0.32340586,-0.4768513,0.04428351,0.43668857,-0.2640402,-0.1001639,0.03839059,0.5078451,-0.17363098,-0.49738225,-0.16818154,-0.10475986,0.356692,0.16838457,-0.26837784,-0.09580114,0.19244345,-0.31477657,0.16188869,0.03253244,-0.29172903,0.10256374,-0.42495552,-0.15615645,1.0134465,-0.1547524,-0.14616272,-0.6636546,-0.42484665,-0.5164844,-0.56602585,0.4971016,0.10549915,-0.035481397,-0.49427122,0.010575402,-0.026489545,0.12617418,-0.052016426,-0.1197175,0.5438965,0.06704782,0.5613714,0.1666486,-0.49223357,0.055591308,0.028340992,0.025434593,-0.43259087,0.7088851,0.019461792,0.7887747,0.15545525,0.07288001,0.14524925,-0.46404523,0.1705465,-0.15683095,-0.23857732,-0.7843734,0.21565488,537 +981,0.6565766,-0.58204496,-0.79244345,0.04423376,-0.0980864,-0.02889831,-0.4810275,0.5529793,0.19451687,-0.2944923,-0.28679264,-0.10757612,0.023162957,0.835745,-0.08603004,-1.0231092,0.042402614,0.1285729,-0.88607883,0.95980245,-0.34721,0.36601952,-0.16835335,0.58768594,0.35529917,0.37234554,0.4188997,0.2290061,-0.16222708,-0.069297515,0.06875036,-0.22102384,-0.54160345,-0.010601473,-0.0147138415,-0.50394565,-0.17986047,-0.39119112,-0.44306487,-0.8955762,0.5286554,-1.0159135,0.49647933,-0.048240006,-0.44526806,-0.02211957,0.092024215,0.5128347,-0.26678032,-0.05126194,0.023669403,-0.1114594,-0.1047539,-0.26094276,-0.2949582,-0.675012,-0.64989644,-0.090033434,-0.8133329,-0.18091753,-0.128299,0.15308604,-0.43983236,0.069224596,-0.030771494,0.042104185,-0.6113881,-0.528725,0.39610296,-0.28754395,0.14239581,-0.5730325,-0.07266308,-0.18110548,0.27099293,0.04709331,-0.09180322,0.21425319,0.1549572,0.4886852,0.1774482,-0.16102487,-0.26467177,-0.13813245,0.15983579,0.5791303,0.11240274,-0.72024643,-0.36557752,-0.0077948645,0.5143735,0.20943153,0.31991854,-0.27850437,0.01266654,-0.0039784787,-0.2035534,0.5477377,0.46324676,-0.5138884,-0.15874417,0.5426463,0.5941254,0.534016,-0.134666,0.22208276,0.049039103,-0.40716544,-0.18796867,0.066482484,-0.22059445,0.6780467,-0.0060156793,0.50482905,0.66628313,-0.22276978,0.25190488,-0.10821241,-0.052270006,-0.37388998,-0.09327233,-0.14677683,0.23492952,-0.41358313,0.12566231,-0.18978675,0.5593882,0.29756218,-0.42721176,0.53637016,-0.58487475,0.27250713,0.038161002,0.621766,0.81401074,0.37064347,0.26963705,0.8201745,-0.15762678,0.052993994,-0.060720444,-0.18120176,0.200524,-0.24704342,0.10291525,-0.51822585,0.27610308,0.18444924,-0.11128887,0.096082136,0.8848467,-0.52317303,-0.19384946,-0.15673816,0.71380836,-0.2786499,0.13978882,0.90333635,1.0607669,1.0029784,-0.013694435,1.4093807,0.5103174,-0.21935213,0.06891111,-0.11440476,-0.89470613,0.17033759,0.5465203,-0.22973366,0.973303,0.105542615,-0.20507622,0.51219726,-0.3076402,0.106045224,-0.0913322,0.14609678,-0.19350488,-0.115955696,-0.66684026,-0.1469241,-0.039649017,0.034273367,0.27384096,0.4362022,-0.40100947,0.32136148,-0.05894959,1.6392901,-0.34498507,0.13043807,0.017975831,0.7050716,0.43518767,-0.17498021,-0.2704814,0.4365631,0.4880247,-0.084360614,-0.81035244,0.13202575,-0.43442154,-0.40624428,-0.20768781,-0.324912,0.0027176081,-0.05883004,-0.22374758,0.013998792,-0.036236312,-0.28778315,0.2727217,-2.1707606,-0.6373487,-0.3180066,0.52088356,-0.3204367,-0.22264926,-0.07683508,-0.37357548,0.4108838,0.34290054,0.55654967,-0.7110585,0.3038655,0.44236094,-0.6310387,-0.016926004,-0.4643084,0.16114089,-0.036899816,0.7649784,-0.31133297,-0.38732567,0.19298653,0.42150822,0.41981784,0.085731976,0.027293187,0.3664179,0.48560467,-0.13535173,0.2113466,-0.17047642,0.609223,-0.44333926,-0.17825334,0.32214722,-0.3330191,0.7051923,-0.33423874,0.22570725,0.3979668,-0.56439525,-0.9247532,-0.35392344,-0.17083816,1.0602463,-0.601081,-0.5507253,0.13552853,-0.19909282,-0.13831453,0.025661957,0.67190176,-0.16197744,-0.11686947,-0.6872901,-0.0047931285,-0.11560981,0.20095265,0.00049526617,0.16066971,-0.2670231,0.83217317,-0.03588519,0.45533282,0.16486208,0.41002837,-0.23390241,-0.5097215,0.2937709,0.80853826,0.6082472,0.103968546,-0.21720889,-0.22624464,-0.46048313,-0.5166691,0.16534843,0.6712092,0.93457156,0.022709353,0.05026292,0.20954962,-0.12096095,0.09733029,-0.23671618,-0.30808946,-0.053742446,0.09319894,0.61360455,0.7428226,-0.19130412,0.58445126,-0.105549954,0.2467784,-0.15101482,-0.49395117,0.8047396,0.99950874,-0.37718242,-0.063067205,0.54370266,0.4550901,-0.6005472,0.76447046,-1.065932,-0.34798956,0.5622861,-0.06545673,-0.45897263,0.41308492,-0.32340875,0.3110014,-1.141448,0.2967055,-0.21110544,-0.20695758,-0.4748518,0.05710253,-3.607196,0.25780258,-0.19782324,-0.2747318,-0.30963588,-0.14637022,0.22178419,-0.75840193,-0.9197737,0.0934924,-0.053575765,0.8116247,-0.1937577,0.21229109,-0.228888,-0.49549204,-0.30403042,0.115159035,-0.046755236,0.5369242,-0.16749991,-0.47046262,0.031228323,-0.0035387338,-0.48486692,-0.044023644,-0.8237152,-0.42155433,-0.4057645,-0.7568618,-0.089938074,0.6406921,-0.098339394,-0.024463495,-0.3068897,0.015932733,-0.23261213,0.44773823,0.11811032,-0.04997263,0.2458344,-0.08444466,0.14592114,-0.26244053,-0.010702714,0.031594787,0.3847344,0.23894349,-0.33800155,0.28958303,0.6396004,0.7191376,-0.04166134,0.7496166,0.47583634,0.00031681656,0.34827214,-0.22761889,-0.31147033,-0.43633097,-0.3364637,-0.23642509,-0.36183578,-0.68449056,-0.5249573,-0.2771049,-0.8198687,0.430593,0.17848423,0.64963824,0.06453069,0.3162504,0.5277239,-0.1517405,0.021053303,0.14163385,-0.3505749,-0.6273568,0.039730404,-0.6814911,-0.66449386,0.6583883,0.5590948,-0.2203147,-0.1951524,0.17381394,-0.4261365,0.07664124,0.03231888,0.14933464,0.0100914715,0.25199035,-0.020019222,-0.65753686,0.57223,-0.27176747,-0.24774604,-0.6199187,0.058201253,0.63659024,-0.66788054,0.29194793,0.31191525,0.14518422,0.0049932124,-0.43228874,0.06365365,0.27386734,-0.018992841,0.25940615,0.2735507,-0.6919626,0.36952272,0.23398407,-0.36010423,-0.6980717,0.69172513,-0.010985164,-0.038023062,-0.38685954,0.52061796,0.06835692,0.09287943,-0.66640383,0.25082007,-0.65454304,0.035832368,0.3859085,-0.03410187,0.54435146,-0.13173504,-0.36953112,-0.6323546,0.21041605,-0.7368024,-0.11232176,0.5302971,0.043546353,0.15157327,-0.2365547,0.31220135,0.30841032,-0.5524722,0.1264913,-0.08032235,-0.34604612,0.58612037,0.630324,0.48584142,-0.4848435,0.7518834,0.059716392,-0.0066513717,0.16561463,-0.09130365,0.48397884,0.19975224,0.49236307,0.32601717,-0.10473589,-0.016329665,0.8455982,0.15521199,0.40734857,0.27075595,-0.21813521,0.15267491,0.31501704,0.30724177,0.21067524,-0.44848472,-0.1129754,0.08561518,0.10659826,0.7433906,0.36815703,0.31052923,-0.012416986,-0.54172385,0.19171907,0.22330853,-0.15792312,-1.441098,0.37244847,0.39318147,0.678744,0.4973089,-0.074868366,-0.060509406,0.5110942,-0.19389287,0.03462626,0.34019467,-0.044091463,-0.8138447,0.7489854,-0.7093024,0.53570616,-0.2624141,-0.03132015,0.14324327,0.26219946,0.45809278,0.8080572,-0.10225359,-0.06810145,-0.1461645,-0.25651568,-0.110333025,-0.25272077,-0.042350274,-0.47729135,-0.47800606,0.5522543,0.4975776,0.21932125,-0.03835942,-0.006962558,0.008741085,-0.12781553,0.39478025,-0.11824,0.2827509,-0.12389429,-0.753548,-0.50528026,0.42238802,0.063984066,0.25906712,-0.09515935,-0.20047359,0.23820396,-0.112629935,-0.04588159,0.049801815,-1.0494926,0.1302959,-0.5210799,-0.5602825,0.34280863,-0.026626289,0.35422397,0.19091702,-0.035881393,-0.3002322,0.37622896,-0.12983318,1.0579865,-0.094373085,-0.5316151,-0.43272948,0.32627854,0.35497582,-0.43045887,-0.034764785,-0.29877397,0.04341898,-0.6628243,0.70169,-0.15828517,-0.36792874,0.14642194,-0.31710857,-0.06315595,0.5201514,-0.39376777,-0.32622877,-0.019474406,-0.2915361,-0.39563176,-0.48709282,-0.27946815,0.057371162,0.09280278,-0.06794038,-0.25433114,0.17626476,0.10638748,0.58746517,0.047578227,0.36423534,0.7312075,0.35281748,-0.3089262,-0.22222643,0.6482026,0.55166984,0.17676817,0.071687035,-0.43096113,-0.70456946,-0.68513936,0.085223064,-0.17844498,0.24375069,0.2586341,-0.286578,0.6958781,0.24898596,1.2013857,0.021672273,-0.52752036,0.41383296,0.76531786,-0.0764191,-0.31760025,-0.45863762,1.1884172,0.5114846,-0.19128087,-0.09392907,-0.31828454,-0.53387356,0.49486572,-0.5190318,0.033585448,-0.023681536,-0.7189308,-0.2556625,0.2006001,0.3982817,-0.000268507,-0.12603126,0.237149,0.18907934,0.030795107,0.3435487,-0.5922932,-0.46582612,0.4841447,0.05660342,-0.16794555,0.014473555,-0.35041803,0.5195585,-0.89886254,0.09736412,-0.6079858,0.20965724,0.11636369,-0.6289607,0.13483196,0.13919832,0.56504166,-0.50807256,-0.47188625,-0.28385732,0.4967479,0.231005,0.11329211,0.6565777,-0.3600405,0.06367211,0.016793514,0.7084833,1.2563002,-0.059405725,0.27943182,0.14911203,-0.45330054,-0.9240862,0.34760886,-0.5204587,0.3591347,-0.30167946,-0.37057462,-0.9744633,0.2530947,0.012862897,-0.19980565,0.059722953,-0.62605846,-0.4628238,0.05712496,-0.23974268,-0.33194065,-0.53356,0.095974706,0.8478011,-0.3773684,-0.49944657,0.2789951,0.26009348,-0.08508731,-0.76002514,-0.12910447,-0.11746971,0.28782386,0.13422163,-0.44703072,0.071336955,0.15381983,-0.5545533,0.2017138,-0.058170922,-0.50374734,0.2517658,-0.41685924,-0.03087405,1.0912116,-0.25905314,0.0073820325,-0.8496884,-0.6556029,-0.9061183,-0.7386579,0.37006155,0.095847294,0.21119651,-0.6963607,0.3192502,-0.15511082,0.48529577,-0.022159642,-0.54407316,0.415759,0.07642922,0.6045034,-0.120514475,-0.865358,0.18924622,0.1891896,-0.1373372,-0.83495903,0.44614345,-0.252433,0.92898905,0.20454177,0.073594764,0.10993016,-0.6861824,-0.10043786,-0.31690758,-0.07758514,-0.6756034,0.38324013,648 +982,0.78115743,-0.20043102,-0.6339289,-0.055416755,-0.26226947,-0.07364375,-0.22086899,0.3570228,0.28860697,-0.38117573,0.009401793,-0.065911695,-0.15246353,0.5517284,-0.04681799,-1.0164798,0.12106632,0.2094647,-0.68849695,0.7486137,-0.22913122,0.6219919,0.028327653,0.526312,0.07328572,0.37208128,0.38225195,0.25114167,-0.1466476,-0.25152183,0.0515182,-0.5301539,-0.6011678,0.15611541,0.16288741,-0.35991055,-0.07222895,-0.33272266,-0.6289295,-0.76412404,0.49840102,-0.77029717,0.87682974,-0.0053079724,-0.3656199,-0.13863136,-0.12481992,0.26221943,-0.086144865,0.029472673,0.32880554,-0.023565745,0.009752998,-0.49955583,-0.206629,-0.6852113,-0.49809867,-0.10384758,-0.5762937,-0.24307708,-0.5545513,0.24556327,-0.49481806,-0.19670203,0.07599507,0.34314507,-0.43004218,-0.08510054,0.00016577244,-0.33936542,0.13074617,-0.71710014,-0.067755364,-0.22362056,-0.020760138,0.12672059,-0.10253763,0.35981488,-0.062122248,0.64175487,0.19104071,-0.34238964,-0.3308459,-0.039630864,0.09312962,0.73992825,-0.14066446,-0.43696165,-0.31804842,-0.02330687,0.45400444,-0.038773835,0.28920716,-0.33032545,0.10814208,-0.016292829,-0.13331635,0.8183408,0.5650742,-0.32732323,0.15112586,0.40799913,0.38377994,0.22068027,-0.08809104,-0.024491012,-0.17873123,-0.445728,-0.16114664,-0.19635575,-0.38585043,0.5808638,-0.10765457,0.21510096,0.79358405,-0.25171936,0.074920565,0.30452618,0.1716394,0.10499026,0.009950864,-0.3322063,0.38370258,-0.321592,-0.07343286,-0.2681935,0.61447275,0.26151207,-0.5257455,0.51158655,-0.51296985,0.1107067,6.54012e-05,0.5551611,0.6840917,0.3810072,0.18877093,0.9985315,-0.45031995,0.13204707,0.16250756,-0.14899297,0.10448219,-0.116736725,0.23220436,-0.4781806,0.03284215,-0.08755283,-0.35209996,0.1587357,0.7317213,-0.5898521,-0.2084847,0.05555613,1.0495193,-0.32547456,0.18326262,0.61669165,1.1993216,1.0137455,-0.16538152,1.3270836,0.304388,-0.4127698,-0.12589574,-0.16120836,-0.7136812,0.15520795,0.37390703,0.16732042,0.52811944,0.14717987,-0.1094684,0.31110775,-0.47827855,-0.08188398,0.07917288,0.4894343,0.0015597388,-0.23814256,-0.82909966,0.0048945965,-0.10688664,-0.0384385,0.25047058,0.56363934,-0.58273476,0.0737822,-0.18940327,1.5113503,-0.2690233,-0.034925673,-0.027373109,0.63418514,0.30153924,-0.24895081,-0.007919133,0.42885008,0.28339106,-0.10267562,-0.5944604,-0.06472434,-0.44683218,-0.18300557,-0.34759337,-0.24351475,-0.013726878,0.14335926,-0.17791487,-0.29530618,0.03130321,-0.23000221,0.051978987,-1.9757643,-0.44845334,-0.16178277,0.5907736,-0.30138078,-0.21729557,-0.158622,-0.55474627,0.3231918,0.30440956,0.6716674,-0.5909823,0.3593158,0.5295542,-0.54035956,0.014352804,-0.48218575,0.09238531,-0.024723217,0.606896,-0.15468149,-0.31758818,0.12614538,0.30198732,0.4645475,0.21163306,0.041556858,0.3819438,0.49072313,-0.2263438,0.26110277,-0.088531815,0.72457343,-0.2640049,-0.13949177,0.41102868,-0.35878348,0.123218834,-0.624036,0.06221785,0.50172883,-0.5506469,-0.7952662,-0.47669354,0.080971956,1.0812702,-0.43525138,-0.8019947,0.3003064,0.10956691,-0.23681775,-0.010677931,0.384331,-0.019969791,-0.008636939,-0.6879724,0.09109594,-0.10649707,0.1632587,0.0754964,0.077060185,-0.34252754,0.99893063,-0.13742557,0.4161539,0.14969595,0.524237,-0.14444944,-0.38412362,0.4228918,1.1481879,0.5705767,0.11509086,-0.16045281,0.15785728,-0.3342202,-0.4785776,0.012391353,0.53481436,0.8367367,-0.119377635,0.04134498,0.24094006,-0.08019143,0.07718661,-0.13279736,-0.5166664,-0.1334599,0.09611919,0.69959444,0.8306775,-0.27913028,0.52739894,-0.11342646,-0.015851904,0.008798408,-0.546822,0.6861953,0.89078283,-0.2062861,-0.1561228,0.5286189,0.20648351,-0.7516013,0.7267839,-0.88037646,-0.34484252,0.4818471,0.05347594,-0.3674732,0.3256966,-0.32253736,0.27001926,-0.77876157,0.448577,-0.09001326,-0.43190432,-0.31210238,-0.34825325,-2.562194,0.22953112,-0.37381893,-0.1200736,-0.048570476,-0.096971504,0.049750943,-0.6565302,-0.63316566,0.073935814,-0.037242465,0.683474,-0.091042,0.2463288,0.012375474,-0.48159045,-0.25502467,0.2648211,-0.016839897,0.4675437,0.05735294,-0.44447166,-0.05479165,0.06313293,-0.5382868,0.009239611,-0.8209747,-0.4350349,-0.36593658,-0.76019496,0.0085962,0.9131012,-0.105467856,0.11367903,-0.30865547,0.0428815,-0.18253878,0.22093192,0.048301898,0.12123792,0.0736219,-0.12479951,0.19886573,-0.27154738,0.26547664,0.21014616,0.58664286,0.23456016,-0.08482208,0.055268943,0.6049394,0.77820015,0.16520646,0.8878342,0.386172,-0.09598365,0.2233297,-0.20262766,-0.45050803,-0.49944896,-0.48490506,0.022080189,-0.39730343,-0.56459105,-0.08592274,-0.42896694,-0.8670106,0.49418682,0.08013295,0.4596335,0.2113982,0.27044982,0.44835362,-0.13371557,-0.12926374,0.05043,-0.31013852,-0.59781873,0.031770967,-0.69372547,-0.38644665,0.45218483,0.70189726,-0.11347951,-0.15234834,0.17607594,-0.23665643,0.078645304,0.046552442,0.15111649,-0.23771927,0.30060074,0.22997531,-0.6621833,0.2845672,-0.2492772,0.14074458,-0.66232467,0.15650293,0.56896347,-0.72637975,0.35447,0.028290045,0.2369527,-0.24545722,-0.44546652,-0.16439594,0.34231284,-0.04399474,0.24960876,0.12416847,-0.61152184,0.2952371,0.14796756,-0.47974926,-0.6017398,0.46204752,-0.0026020347,-0.3863626,-0.3714728,0.32087487,-0.016965527,0.08388277,-0.53470576,0.30287126,-0.5583109,0.36603326,0.2306798,-0.09702835,0.6135457,-0.07217358,-0.49869585,-0.73602605,0.22981901,-0.6928512,-0.50485694,0.25388354,0.25530484,0.18461673,0.07215016,0.48062158,0.49029654,-0.37272924,0.062676564,-0.16442809,-0.50884664,0.69957465,0.37441093,0.4946739,-0.53031313,0.60930896,0.0861402,-0.12514775,0.08861153,-0.2321188,0.55471194,0.09285999,0.42849436,0.3479294,0.080085345,-0.020861909,0.82379895,0.24171023,0.31322607,0.39321855,-0.23674026,0.2646564,0.08503161,0.07546345,0.07705531,-0.5739447,0.055102576,0.13742384,0.059508014,0.61599725,0.33012873,0.31300515,-0.12995133,-0.5877377,0.15213762,0.047237627,-0.17550506,-1.7867393,0.26827058,0.18800555,0.6402643,0.37639716,-0.1156281,-0.25808793,0.7307721,-0.010668511,-0.034094352,0.35934213,-0.20567942,-0.5625663,0.4748643,-0.55003995,0.41352957,-0.13944814,0.106690094,0.15215087,0.22110465,0.30788398,0.81535137,-0.17731567,-0.054775525,-0.14963916,-0.24302487,-0.11471076,-0.3642526,0.25517267,-0.5062668,-0.4212466,0.6797031,0.25573286,0.09149868,-0.15463927,0.10169085,0.06735932,-0.120243,0.4101724,0.042906646,-0.09711872,-0.14725943,-0.68418384,-0.30634156,0.39260513,0.031626593,-0.028369427,-0.10318524,0.20726462,0.16571641,0.0042395713,-0.16575493,0.08936142,-0.89922106,-0.15118803,-0.43570232,-0.3646128,0.3769016,0.18144423,0.15056708,0.04927223,-0.06477384,-0.31596702,0.5160028,0.3208155,0.72140884,0.0890521,-0.24643102,-0.47632447,0.18454754,0.049814295,-0.26228216,0.34478748,-0.21469542,0.15351124,-0.6484558,0.6274413,-0.29743513,-0.24954076,0.13211887,-0.33798784,-0.027564052,0.5434868,-0.27431625,-0.15036628,0.047116213,-0.5204224,-0.2843479,-0.29844916,-0.10605142,0.009933186,0.006298566,-0.22510424,-0.100626506,-0.1844095,-0.00047867297,0.39711696,0.09402515,0.2830507,0.4717462,0.30901632,-0.4417285,-0.05803039,0.34413114,0.6004498,-0.038352005,0.1752548,-0.31519264,-0.5867076,-0.64597225,0.27782002,-0.16178744,0.23804164,0.120019734,-0.40007696,0.9098915,0.43891373,1.4022238,-0.13482128,-0.31808084,0.1780153,0.769708,-0.08607992,-0.116342604,-0.63796735,1.2942388,0.6663915,-0.042534813,-0.20080867,-0.51924646,-0.33340007,0.41497716,-0.6130269,-0.06428482,0.010047132,-0.69353855,-0.29626268,0.16715859,0.32127845,-0.033514995,-0.047153346,0.29014665,0.3411214,0.24390376,0.258691,-0.72564185,-0.3315304,0.4441409,0.14086941,-0.03812868,0.19480637,-0.32734632,0.35014683,-0.6607021,0.14492154,-0.1514248,0.04660842,0.17804559,-0.6100739,0.17888162,0.3095886,0.4414746,-0.5737956,-0.50363815,-0.22564802,0.52211106,0.04402799,0.024862424,0.62224215,-0.2523715,0.06763433,-0.024921149,0.61432475,1.4007638,0.110005304,0.28320867,0.15328433,-0.5473751,-0.9938137,0.32728523,-0.32398504,0.109420225,-0.35646957,-0.34134617,-0.87978554,0.22950777,-0.23161773,-0.26519734,0.20155752,-0.4982788,-0.57957965,0.20667505,-0.35665822,-0.21074605,-0.29154688,-0.006714529,0.7916523,-0.30088794,-0.3718218,0.11792791,0.5125657,-0.17938375,-0.8808212,-0.15230386,-0.29924774,0.38054878,0.05021636,-0.4611215,-0.079433635,0.06504047,-0.55387574,0.10545541,0.096196175,-0.47697893,0.10187368,-0.26361066,-0.069201216,0.7040287,0.0072543025,0.19600508,-0.75600684,-0.6616162,-0.9768798,-0.630703,0.10874224,0.27451423,-0.06310924,-0.86214525,-0.10719933,-0.450082,0.37950948,-0.0010462075,-0.54580015,0.21810067,-0.054662384,0.5912283,-0.17564511,-1.2302393,0.11892428,0.186307,-0.24173729,-0.7707982,0.42975673,-0.08761506,0.95279276,0.23235865,-0.1214036,0.045576576,-0.63297516,0.042792358,-0.16005948,-0.31810832,-0.60470784,0.39093566,697 +983,0.22060208,-0.12573859,-0.35307154,-0.15060346,-0.05137354,-0.35931024,-0.050344527,0.7688403,0.22205296,-0.57425344,-0.2291017,-0.24889188,-0.019584268,0.56558645,-0.27558112,-0.42603606,-0.041819602,-0.080651686,-0.37689006,0.3146006,-0.38890827,0.036858432,0.14287686,0.4058608,0.36293295,0.1321998,0.25187606,-0.11486761,-0.07548366,-0.22608516,-0.10981192,0.042050708,-0.5917306,0.00880346,-0.27588457,-0.49919662,0.0059797703,-0.71669465,-0.3988509,-0.7537209,0.4985919,-1.1925905,0.38217986,0.078951456,-0.09097118,0.19640201,0.4272511,0.2717242,-0.111148,-0.30485576,0.15345618,0.041852556,-0.03934027,0.1801272,-0.36416325,-0.3572636,-0.5882732,0.006329575,-0.22630195,-0.27524564,-0.43772477,0.0236152,-0.4246394,0.15378758,-0.08352039,0.454331,-0.37483364,0.08536027,0.18239322,-0.15232717,0.3438844,-0.5527824,-0.19138813,-0.19942422,0.18964025,-0.3387829,-0.15893641,0.4487649,0.35988146,0.32994264,-0.19159098,-0.08067681,-0.32097608,0.1272905,0.019247213,0.45505962,-0.45031905,-0.5920683,-0.07785054,0.11425638,0.16250908,0.35602504,0.21387509,-0.22494368,0.03192375,0.2824862,-0.43546963,0.5907038,0.52134216,-0.12674138,-0.07283355,0.09057904,0.2680117,0.34546998,-0.19751343,-0.13688523,0.074873134,-0.53851295,-0.07923804,-0.07459344,-0.15007582,0.6643202,-0.031027371,0.29295072,0.8037184,-0.31190228,0.28634992,-0.07219984,-0.199828,-0.1285533,-0.49207455,-0.10822551,0.29917368,-0.55424625,0.44702396,-0.10890255,0.69633967,0.16325828,-0.6310425,0.46890265,-0.5853471,0.21743575,-0.30465052,0.35500315,0.6396195,0.26838195,0.41950154,0.6929513,-0.5281038,-0.032472186,-0.152379,-0.35834756,0.15151858,-0.22873595,0.2723822,-0.18600228,-0.21950865,0.05519148,0.0021959245,0.14596643,0.33444467,-0.47798795,-0.053875368,0.11495225,1.0145395,-0.21038058,-0.14175329,0.7488383,1.0924528,0.8416904,0.08738786,1.0259142,-0.019893682,-0.20344344,0.51813346,0.20285098,-0.87672204,0.23943599,0.55981225,0.10358224,-0.17174797,0.20683303,-0.0487056,0.366482,-0.45574045,0.04076271,-0.2647807,0.088377856,0.39416325,-0.112336814,-0.28050128,-0.2186718,-0.20414312,0.0030762136,-0.14603208,0.19687891,-0.07926263,0.16586186,-0.1407575,1.576942,0.11198576,0.15177214,0.16459776,0.7492923,-0.079615675,-0.095589325,0.057594836,-0.18454008,0.4008643,0.25189924,-0.49579805,-0.004579914,-0.2706379,-0.3637539,0.040708683,-0.3315343,-0.19664612,0.097191796,-0.48070487,-0.09912579,-0.13608086,-0.23463258,0.44064337,-2.8226352,-0.100281045,-0.24690302,0.2984348,-0.23940459,-0.3349348,-0.12632683,-0.5807996,0.73305017,0.37057728,0.6101177,-0.67042667,0.3889834,0.40995893,-0.4936851,-0.018939376,-0.69940454,-0.033029355,0.05972544,0.21565068,0.018686756,-0.06923961,0.2552028,-0.06680141,0.50534546,0.38742837,0.060968697,0.2517674,0.5248464,-0.1316168,0.763862,-0.4341402,0.3576278,-0.38593888,-0.1388325,0.2220592,-0.4703966,0.10038866,-0.25163937,0.17849483,0.40449792,-0.5740305,-1.0049322,-0.75977147,-0.566857,1.2216476,-0.047817007,-0.48184568,0.6022562,-0.28315,-0.074166015,-0.327047,0.9024557,0.037486337,0.14858934,-0.66133773,0.064067684,-0.342848,0.10811891,0.003795764,-0.08882628,-0.28118926,0.69170445,-0.07282354,0.35085234,0.34523332,0.030143758,-0.3999842,-0.32897455,0.09631573,0.6811964,0.34524524,0.13693663,-0.16541627,-0.045894682,-0.48471817,-0.33282253,0.091781326,0.5394944,0.683305,-0.042082172,0.1355075,0.20724344,0.08130252,-0.053074576,-0.09057545,-0.4682599,-0.24566627,-0.0823553,0.65823716,0.5982557,-0.13565907,0.28734773,-0.12243812,0.27115744,-0.12993607,-0.26868832,0.24785654,0.8064626,-0.08080609,-0.1722779,0.5104991,0.39894924,-0.27370143,0.34993568,-0.448586,-0.29379028,0.38151875,0.0048431023,-0.746699,0.0010667115,-0.3201491,-0.048154406,-0.5853887,0.24276736,-0.5045394,-0.39020973,-0.35214898,-0.24735133,-3.8398461,0.23776731,-0.19911873,-0.2604839,-0.23353784,-0.26432928,0.23491387,-0.4428834,-0.73728245,0.105590045,-0.00048244596,0.74100673,-0.01494046,0.0028538047,-0.34626722,-0.07597935,-0.31356025,0.025885344,0.28712416,0.3713475,0.0091766985,-0.39812127,-0.35961038,-0.098345384,-0.60201275,0.14164962,-0.61965287,-0.49640292,-0.22955814,-0.60323614,-0.40246263,0.76851976,-0.30438986,-0.032929577,-0.025782043,-0.09242176,-0.3231887,0.50882703,0.1747677,0.21005301,-0.16049816,-0.06006656,0.014120078,-0.112735905,0.49908876,0.12742801,0.5084066,0.25219324,0.014732805,0.23990974,0.52117354,0.68948096,-0.076647684,1.0112087,0.33673275,0.0053814957,0.2827316,-0.3714034,-0.2775576,-0.5698695,-0.073376425,0.06714767,-0.34727937,-0.294831,0.10563801,-0.3869169,-0.610036,0.6793131,-0.035474263,0.13628468,0.16837645,-0.081817,0.31889346,-0.030712882,-0.05275485,0.16702846,0.13772032,-0.8153943,-0.2672829,-0.61949044,-0.5597812,-0.17705046,0.6892985,-0.0559557,-0.13107133,0.08434047,-0.21407875,0.14317085,-0.008317774,-0.03501776,0.023734152,0.37175393,-0.18693036,-0.68472517,0.5518936,-0.2344136,-0.08264478,-0.65276015,0.21068959,0.51069856,-0.6603226,0.6913421,0.31123787,0.014036867,-0.36137035,-0.51845944,-0.34711468,-0.4101463,-0.111969136,0.11152949,0.08003713,-1.1172273,0.3165765,0.49448997,-0.13408862,-0.57833934,0.4575862,-0.08019038,0.0077203275,-0.03842283,0.26625526,0.2176688,-0.05976262,0.111419514,0.18708982,-0.42136973,0.29486445,0.17697127,0.03053056,0.6146437,-0.18453816,0.042805333,-0.5737324,0.14488605,-0.38679177,-0.1464361,0.30925292,-0.105209604,0.05047109,0.1894165,0.105943605,0.16521466,-0.11615318,0.14444116,-0.22655106,-0.30849153,0.2566334,0.44888544,0.6402377,-0.57832664,0.68368065,0.040081825,-0.084362395,0.40256986,0.20556085,0.31887618,-0.007369739,0.2401156,-0.012211353,-0.37457237,0.075539075,1.1517938,0.17510174,0.4471684,0.014706677,0.0134547595,0.26290476,0.13304928,0.017733954,0.2165906,-0.81303024,0.019580936,-0.26537672,0.11543344,0.5995576,0.14659165,0.10445336,-0.124270424,-0.259636,-0.14356296,0.09512825,0.06895398,-1.3534544,0.49072176,0.07831002,0.95255387,0.29499903,-0.20351371,-0.017703589,0.69009674,0.1255571,0.25760296,0.3864246,-0.020657426,-0.5717069,0.66413486,-0.5486973,0.6136174,0.108108684,-0.06356378,0.011281507,0.21013756,0.42811975,0.6145499,-0.16045181,0.018243505,0.16611312,-0.20458412,0.27189565,-0.5387614,-0.11112465,-0.26741964,-0.12901035,0.54098594,0.66078454,0.14466111,-0.20002434,0.034776047,-0.123436175,-0.098471604,0.07441055,-0.24246371,0.014472658,-0.17017707,-0.77294,-0.22244315,0.5647564,-0.08314981,0.4219255,-0.05693091,-0.077933714,0.37045282,0.0006972298,-0.06063523,-0.15361953,-0.73674566,0.0044062375,-0.46488112,-0.46459883,0.18662731,-0.083834544,0.37806374,0.19996934,-0.007154256,-0.29193443,0.51346314,-0.06795245,0.61504716,-0.6049569,-0.1374294,-0.6834308,0.029388363,0.18462136,-0.23863769,-0.08765267,-0.2452178,-0.19669059,-0.43213338,0.462188,-0.050680846,-0.4148814,0.098586224,-0.13075192,0.024143647,0.6061034,-0.063275866,0.065308094,0.24591938,-0.061799884,-0.18098831,-0.22379903,-0.069480404,0.26988414,0.14395824,0.2466939,-0.11124866,-0.31023055,-0.11763805,0.39293176,-0.08938937,0.41086954,0.30612648,0.37592155,-0.2759717,-0.1969035,0.13563639,0.7646119,-0.022154415,-0.2682938,-0.27422807,-0.37748262,-0.2393935,0.28421903,-0.0035557388,0.5294918,0.2734836,-0.37523133,0.35097477,0.036355842,1.0274106,0.19258727,-0.28077757,0.012738395,0.37145475,-0.08383848,-0.18774076,-0.25364214,0.5446495,0.4325531,-0.14147095,-0.09349753,-0.2740803,0.12140305,0.22616379,-0.12277098,-0.28608814,-0.02869466,-0.67148626,-0.05949226,0.16823226,0.41113433,0.14357689,-0.089854784,0.08521517,0.1954231,-0.0015737221,0.3260006,-0.49436107,-0.25935444,0.2934844,0.2894969,-0.1196778,0.20917797,-0.45942435,0.3363035,-0.43650618,0.124328695,-0.55378425,0.21906838,-0.2659739,-0.30292717,0.05548668,-0.28979102,0.6950653,-0.05275766,-0.2496992,-0.14949164,0.34472805,0.17551914,0.31175613,0.45462292,-0.13730209,-0.0917424,-0.12507506,0.76702243,0.9766146,-0.17452306,0.11382101,0.2307066,-0.1907771,-0.41684994,0.31183103,-0.2500322,0.2818254,0.12305083,0.17965467,-0.43798476,0.13987978,0.21135128,-0.2808478,0.1156592,-0.6849699,-0.42765903,-0.014846265,-0.08182867,-0.38840872,-0.578213,0.11808519,0.5531545,-0.3440252,-0.034015097,0.19681847,0.290977,0.035262674,-0.29226714,-0.02877282,-0.1860398,0.26704222,-0.03221205,-0.5174061,-0.09992021,-0.11306238,-0.38185257,0.3421023,-0.29684648,-0.35313454,0.12827733,-0.02373889,-0.0707051,0.9401659,-0.112019,0.21331699,-0.49667326,-0.5867871,-0.77057475,-0.3459477,0.39795038,0.3534742,0.10935569,-0.32942954,-0.11272726,0.158689,-0.016311098,-0.06913014,-0.15301049,0.46520013,0.015001433,0.6619722,-0.22324657,-0.5256586,0.09226699,0.027308166,0.015942525,-0.48784018,0.50256515,-0.020557094,0.8863591,0.051345564,0.011479723,0.079472445,-0.11886094,-0.3026142,-0.1491451,-0.35523728,-0.5162457,0.22382498,725 +984,0.4712224,-0.11027461,-0.7904708,-0.3885621,-0.6198593,0.17914236,-0.3270732,0.47385246,0.15292756,-0.7315499,-0.14839938,-0.3366181,0.045405347,0.6036334,-0.32326582,-0.42172417,0.09292362,-0.16738226,-0.9550249,0.37069568,-0.7330084,0.53629625,0.4488655,0.32648054,0.47265977,0.05569647,0.057495452,-0.18517998,-0.0890311,-0.038737297,-0.23656118,-0.0016095638,-0.6999468,-0.29565865,-0.17729993,-0.6280259,0.14986135,-0.63689625,-0.1557996,-0.7726556,0.23387913,-1.1546333,0.8530513,-0.097815186,-0.19395149,-0.05886078,-0.0020861328,0.19794771,-0.041940082,0.47205728,0.18766208,-0.1318395,0.056333385,0.028366983,-0.010890472,-0.7066138,-0.8028485,0.012922463,-0.85375345,-0.31034622,-0.10667713,0.14923479,-0.46124023,0.3477581,0.1538352,0.25021917,-0.63175976,0.05840359,-0.20030804,0.18233614,0.5894296,-0.31539762,-0.09194182,-0.026216973,0.27462646,-0.4377615,-0.23000231,0.1696795,0.51566344,0.4875391,-0.23943253,-0.3407641,-0.11829649,0.033662558,-0.28626147,0.94329774,-0.072937176,-0.49573216,-0.2020565,-0.18334278,0.6997946,0.6274014,-0.0997325,-0.5681164,-0.14842686,-0.061698835,-0.6070614,0.67366993,0.44541407,-0.67183876,-0.43729657,0.49671012,0.25097427,0.56347066,0.036792327,0.28655574,0.12391454,-0.72615176,-0.2870001,0.22232619,-0.06043,0.5596601,0.057324905,0.5659261,0.77160585,-0.45204037,0.036246173,0.11662801,-0.2500059,-0.12317332,0.3551527,0.013371998,0.2702447,-0.6929184,-0.07161608,-0.40423498,0.65321857,0.2418025,-0.74142706,0.41865548,-0.81038696,-0.053462632,-0.23037854,0.4685958,0.6971148,0.65393376,0.31197983,0.806742,-0.39755905,0.067869574,-0.26845342,-0.35274798,0.1495868,-0.32364637,-0.0064751627,-0.58465594,0.023095936,-0.037222885,0.03418058,-0.11275333,0.69287455,-0.5200341,-0.13788864,0.23590612,0.77282536,-0.43614346,-0.012362877,0.9505116,1.0386314,0.6013953,-0.0049579083,1.1457794,-0.03997419,-0.07774758,0.13831548,0.0021992684,-0.4390881,0.19712105,0.44771177,-0.5106347,0.72552574,0.10862295,0.109737374,-0.053273596,-0.16853385,0.16514584,0.16271837,0.028214514,0.1489789,-0.20392644,-0.4106678,-0.28439814,-0.06820197,-0.089142,0.038559757,0.30228266,-0.55162656,0.1526516,-0.020706242,1.6756277,0.10018752,0.09075172,-0.22680703,0.5848807,0.13032505,0.016094709,-0.21982236,0.09617726,0.23368172,0.084331915,-0.5045763,0.19491401,-0.091616794,-0.5758158,-0.19001517,-0.49161234,-0.3114614,-0.23893961,-0.51696074,0.13805468,0.05799464,-0.34210345,0.5104195,-2.5459757,-0.68167573,-0.14192715,0.23926874,-0.26244622,-0.27379245,-0.1751079,-0.46010533,0.18776424,0.46462393,0.58812416,-0.9278018,0.53817165,0.5716909,-0.47711197,-0.2925095,-0.7119557,-0.25305068,0.1618237,0.083945215,-0.22879732,-0.41050196,0.012864763,0.37878233,0.6639403,0.010569465,0.28129157,0.19915465,0.7108335,0.26158005,0.8334938,-0.26600808,0.66571987,-0.34094635,-0.12593672,0.32806587,-0.11946623,0.37179774,0.041507952,0.22554156,0.400779,-0.34435457,-1.1391203,-0.8260206,0.07307178,0.7028768,-0.37432528,-0.28624445,0.26096722,0.2924744,-0.050678354,-0.07203759,0.6058908,0.10327947,0.06792673,-0.5494435,0.05582587,0.02665084,0.12641029,0.08479671,0.11873591,-0.18527845,0.48943663,-0.092016295,0.30913574,0.32354522,0.26761407,-0.3670027,-0.32802114,0.47933593,1.2758777,0.4745296,-0.019310366,-0.32195586,-0.23231478,-0.4133029,-0.22441618,0.1447591,0.23077467,0.98045236,0.044199433,0.39314494,0.07788037,0.023238683,0.038922008,-0.3330845,-0.27905065,0.1781054,-0.0014556065,0.45403165,0.6084053,-0.53382605,0.85244197,-0.2809727,0.039536048,-0.20266512,-0.38737363,0.62270653,0.31455165,-0.033360306,-0.04613515,0.6516248,0.20871392,-0.4330439,0.42647964,-0.67188454,-0.38956577,0.845544,-0.009006327,-0.19567263,0.35847273,-0.23432119,0.30316693,-0.9940957,0.29358527,-0.2132067,0.055618048,-0.30311906,0.06971873,-3.7856135,0.24151006,-0.21066031,-0.09779893,-0.24833247,-0.18514359,0.46991935,-0.6609828,-0.9464735,0.008004582,-0.031126317,1.0311137,-0.36361226,0.27134237,-0.124674655,-0.3817366,-0.4386035,0.41980964,-0.15041319,0.30635318,0.24152307,-0.60034525,-0.10695543,-0.24236934,-0.70207256,0.21931931,-0.45077142,-0.74509746,-0.024942387,-0.44177717,-0.3205746,0.83519423,-0.08714412,-0.113099955,-0.00593026,-0.018784206,-0.10226709,0.35578275,0.2754053,-0.26329565,0.06162833,0.0032064677,-0.1261609,-0.30520254,0.60404295,0.0857007,0.3766914,0.28264138,0.12742876,0.17819135,0.5146406,0.60357296,-0.16555437,0.67512643,-0.017289871,0.097082034,0.35417607,-0.48401013,-0.14410657,-0.46072617,-0.27269146,-0.27814406,-0.5739216,-0.72111195,-0.004610306,0.018862117,-0.8323882,0.63657236,0.09577081,0.28853744,-0.22265223,0.6082564,0.4392867,-0.19966087,-0.16439193,-0.21341462,-0.17525145,-0.5947538,-0.28481704,-1.099028,-0.4104572,0.1564423,1.17682,-0.48065013,-0.03844966,-0.4037055,0.09766545,0.22226992,-0.06811832,0.3097055,0.21059434,0.30817342,-0.32430047,-0.8379432,0.3425556,-0.21174781,-0.12943776,-0.4147281,-0.28923255,0.92197114,-0.8486573,0.34805518,0.33861703,0.18445459,-0.028873015,-0.4854649,0.025969302,0.2088633,-0.4739983,0.27391076,-0.065865055,-1.113745,0.49937478,0.37487516,-0.23813455,-0.71291196,0.83018434,0.2719556,-0.27936092,-0.13285881,0.37124914,0.5117923,-0.05484892,-0.5544221,0.34072602,-0.71509135,0.45410147,0.15089762,-0.015006614,0.4583497,-0.040049054,-0.3377332,-0.7723128,0.10463603,-0.46119684,-0.40565085,0.13388002,-0.03807041,0.16771367,0.3053381,0.03387344,0.2724188,-0.75359726,0.14920303,0.22017784,-0.023129862,0.17270373,0.55629295,0.29340407,-0.4307421,0.52347726,-0.1549658,-0.36375389,0.13900939,0.086599015,0.42286772,0.11528318,0.0742103,0.13997468,-0.5317973,0.21679457,0.8494829,0.3031059,0.27547145,0.49137205,0.07153599,0.3056087,0.10676261,-0.04826335,0.14551672,-0.5799188,0.013806403,0.24411516,0.06235032,0.7685657,0.20568562,-0.025242735,-0.06711409,-0.2803267,0.14067152,0.3308196,-0.20060797,-1.079256,0.24998799,0.31675395,0.5948931,0.72106487,0.15430681,-0.17587098,0.2142258,-0.21872051,0.009856677,0.5124004,0.20255375,-0.5923538,0.73841107,-0.64102215,0.50002587,-0.32889324,-0.061842203,0.04926427,-0.18128112,0.32157314,1.0185616,-0.10840689,0.06517645,0.2593624,-0.3177117,-0.14312138,-0.2262835,-0.1949264,-0.4325657,-0.110009864,0.91794217,0.29641438,0.06395538,0.0051311255,0.11457069,0.11871517,-0.13233376,0.18568298,0.27745694,0.29541162,-0.121475436,-0.37065798,-0.047879785,0.83121985,-0.13537632,0.16181548,-0.20598729,-0.3495005,0.09443073,-0.013434654,-0.058409624,0.049782388,-1.0406427,-0.11743889,-0.59345585,-0.62245905,0.43443346,-0.059926283,0.21248296,0.25188702,0.09028232,-0.064632155,0.7260276,0.5535147,0.5307356,-0.07917668,-0.1401291,-0.42192602,0.30756372,0.18215704,-0.4066636,-0.26077506,-0.2573156,0.042098682,-0.6350134,0.79582304,0.0988276,-0.5076126,-0.0071526347,-0.050817955,0.080212764,0.7833603,-0.0460796,-0.030772299,-0.19050616,-0.27158642,-0.13898529,-0.53084147,-0.10956492,0.14621389,0.36392647,-0.24545333,-0.09508073,0.031283118,-0.2584986,0.2850124,0.0505144,0.57187235,0.47425288,0.16498896,-0.1956099,-0.17280145,0.1132376,0.73261344,0.23438148,-0.19602177,-0.44399127,-0.11088711,-0.020854484,0.31721425,-0.1344218,0.24572758,0.23964241,-0.34606072,0.931105,0.10979843,1.3290739,-0.06807333,-0.39391702,0.11065384,0.5837135,-0.20622483,-0.25969392,-0.47892523,1.3812814,0.53430974,-0.15867987,-0.24048123,-0.16803698,-0.53237617,0.3043394,-0.4966627,-0.12681785,0.0721979,-0.6505621,-0.20777707,0.32528955,0.13944843,0.103572205,-0.33335933,0.25582287,0.5198077,0.1516,0.28472644,-0.81503475,-0.48634267,0.39415216,0.51117164,0.10110972,0.38440388,-0.48846188,0.44077927,-0.8116372,0.15512906,-0.83628625,0.16997793,0.1475929,-0.3773801,0.118150964,0.2817519,0.24487555,0.09806403,-0.31361642,-0.019140387,0.49110308,-0.21371889,0.3100264,0.71586865,-0.1885498,0.10759705,-0.47674266,0.5312211,1.6504962,0.14894141,-0.17514057,0.58938754,-0.53629404,-0.61165935,0.5176369,-0.6804935,0.08878063,-0.1021343,-0.34722963,-0.4756276,0.28095496,-0.03216814,-0.05821365,-0.08077922,-0.7563585,-0.34643397,0.5060481,-0.0692983,-0.30722466,-0.2957922,0.30932492,1.1683853,-0.29137334,0.04487429,-0.004379569,0.50460017,-0.28762895,-0.37360346,0.03016882,-0.25300807,0.5378992,-0.0059755505,-0.38624683,-0.037449125,0.2463646,-0.41973576,0.37922502,0.024568558,-0.2841321,0.10320182,-0.12736782,0.18071337,1.3916733,-0.08912399,-0.2806275,-0.41483337,-0.861348,-0.760141,-0.5698905,0.21487837,0.20605603,0.07164795,-0.4644429,-0.055276126,-0.0028006197,-0.49775305,0.029592201,-0.27854294,0.42065293,-0.0166833,0.39872962,-0.02106688,-1.1125646,0.042865492,0.22214799,-0.36567903,-0.7842063,0.76512074,-0.33375055,0.9131552,0.08378379,-0.15611055,-0.08841364,-0.33682665,0.2689403,-0.45650452,-0.0006445527,-0.78331596,0.13911249,748 +985,0.6239834,-0.31138325,-0.54459643,-0.30978924,-0.29800305,-0.033313464,-0.22618827,0.5994357,0.21644135,-0.6225697,-0.20601301,-0.1504614,-0.063422084,0.30688286,-0.28624654,-0.6354602,0.099618934,0.21674797,-0.4558038,0.35000232,-0.5842536,0.20101666,-0.031926975,0.6697912,0.3666552,0.12657237,0.2928021,0.041074645,-0.095545866,-0.45549306,-0.095996216,0.27283645,-0.5201743,0.32925344,-0.18281384,-0.529354,0.09916197,-0.703155,-0.34997168,-0.8650977,0.18318693,-1.0441678,0.7209197,0.20895469,-0.34309578,-0.11201684,0.36929947,0.19228968,-0.17852025,0.1894679,0.22850963,-0.23677726,-0.19500855,-0.20896468,-0.4414146,-0.3771165,-0.82875454,-0.057224892,-0.3376398,0.14304043,-0.2750778,0.2836748,-0.19928052,-0.024512948,-0.1433123,0.5281123,-0.43360916,-0.1437478,0.015104294,-0.16316733,0.34714487,-0.7189702,-0.41594237,-0.25346795,0.25139928,-0.21506485,-0.3013607,0.34405708,0.35670853,0.4895238,0.021866104,-0.23221858,-0.30925494,0.0018472441,-0.23138909,0.6012843,-0.2761,-0.31523067,-0.31212568,-0.3278202,0.47558618,0.38556385,0.13576777,-0.28321552,-0.08422638,-0.20154317,-0.4057536,0.5236849,0.52087164,-0.39992708,-0.06039275,0.34973767,0.1830981,0.1656763,-0.12616745,0.14954355,0.06559909,-0.69767964,-0.22301602,0.26931962,-0.21138163,0.5957037,-0.16115594,0.42904958,0.6215451,-0.2697276,-0.15185769,0.15534453,0.30765814,-0.27688736,-0.22806577,-0.7825045,0.42792717,-0.54814893,0.119101144,-0.21465759,0.9971697,0.05941516,-0.77798116,0.25107446,-0.6056539,-0.07137199,-0.10497699,0.50910234,0.546683,0.5481268,0.43834916,0.5930307,-0.3272249,0.060699385,-0.048111375,-0.18761529,0.16080317,-0.2170068,0.09929047,-0.32538265,-0.14019822,0.019047294,-0.15306203,0.101169825,0.92832315,-0.35912317,-0.09079703,0.38539514,0.5868174,-0.37056518,-0.0858989,0.6821852,1.2202522,1.2132741,0.14531705,1.3432795,0.24579005,-0.21910945,-0.06864047,0.19700405,-0.93134403,0.44710866,0.42269272,-0.3852657,0.42056313,0.33701307,0.10641606,0.33457646,-0.56667143,-0.1861556,0.024956886,0.17398998,-0.10866042,0.06363021,-0.6825738,-0.55841315,0.046120446,-0.25056782,0.121435,0.18425669,-0.25618663,0.5370556,0.12571034,1.2642684,-0.13429293,0.07201311,0.09427704,0.5755993,0.1441848,-0.15786402,-0.20508376,0.07967826,0.43306294,0.02542072,-0.49849278,0.051187824,-0.13783455,-0.2633277,-0.29143754,-0.42512003,-0.009632018,-0.08203981,-0.36408052,-0.44040504,-0.006556475,-0.3991746,0.377255,-2.3699634,-0.047064688,-0.20355268,0.3755836,-0.12009927,-0.41342434,-0.22049475,-0.52177656,0.6720034,0.29918975,0.4829544,-0.6546372,0.42248636,0.6947117,-0.4744711,-0.16337506,-0.9428757,-0.18931174,-0.22868612,0.19224812,-0.10902558,-0.18333301,-0.05582859,0.079944,0.6613111,0.094109096,0.12528536,0.3181495,0.31310382,0.024170315,0.73515385,-0.052224435,0.56442595,-0.478198,-0.34598595,0.22304673,-0.5868074,0.080205776,-0.21838781,0.1357789,0.7734152,-0.5536483,-0.92833835,-0.6878248,-0.27369404,1.2384117,-0.4702677,-0.29875678,0.21064043,-0.08599036,-0.41591406,0.074148335,0.46351075,-0.4200477,-0.03851381,-0.6825614,-0.24518767,-0.043737,0.38676715,-0.010816229,0.04583315,-0.54294443,0.55724204,-0.16382305,0.4599716,0.24201293,0.13774052,-0.52646434,-0.711645,0.07011415,1.0555408,0.31801006,0.17553052,-0.3172105,-0.16214672,-0.20942655,-0.038348902,0.058518577,0.46794343,0.73521334,-0.15148261,0.26913175,0.4605101,-0.06529875,0.06889637,-0.11848961,-0.42262167,-0.24371633,0.123052455,0.80261356,0.49841136,0.14055547,0.2310632,-0.12519217,0.56742036,-0.26485485,-0.37767643,0.46817937,1.0702524,-0.0616947,-0.25120658,1.0880643,0.47966558,-0.21573511,0.5833262,-0.7778263,-0.51808643,0.29363364,-0.025714982,-0.3903349,0.14217785,-0.35724682,0.1460079,-0.97832185,0.50576687,-0.11852424,-0.42571825,-0.5527333,-0.16372745,-3.4630115,0.2425056,-0.2973772,-0.19859034,0.023778427,-0.40137324,0.38841304,-0.65462226,-0.6057602,0.1667763,-0.005723089,0.80587196,-0.18468502,-0.09661601,-0.3046492,-0.38391814,-0.5220349,0.12845889,0.21364586,0.5266221,0.21153513,-0.46791792,0.41289273,-0.18879879,-0.35403126,-0.12678976,-0.79896164,-0.4712057,-0.10746057,-0.8721846,-0.54000396,0.8179449,-0.39845628,0.0123945875,-0.26558805,0.06514813,-0.049983166,0.46777543,-0.15144911,0.3419,-0.10076251,0.015804678,-0.10384403,-0.18840474,0.3665765,0.08028629,0.13244683,0.27992645,-0.17864278,0.026071157,0.7164601,0.6574707,-0.27243364,1.1109107,0.49803662,-0.004138641,0.07391427,-0.1874151,-0.33141524,-0.4996609,-0.3248846,0.008343118,-0.5247962,-0.13993192,-0.030693293,-0.28121135,-0.8987166,0.8946999,0.008559918,0.14809832,-0.06698639,0.19999628,0.305362,-0.017164875,-0.02807256,-0.12361832,-0.06561466,-0.37358606,-0.37743396,-0.6520499,-0.39071578,-0.15343645,1.009247,-0.21469621,0.072006464,0.33241668,-0.18416496,0.16240573,0.0032740019,-0.027009014,0.1464524,0.604727,0.11886792,-0.73838586,0.32487082,-0.30855185,0.035327025,-0.4634478,0.31992513,0.8207096,-0.7929026,0.58036566,0.5729106,0.20309095,-0.39239606,-0.7207597,-0.3633461,-0.11472795,-0.10540839,0.66646475,0.29109487,-0.89993894,0.65216273,0.23684868,-0.38875094,-0.73121977,0.5688663,-0.18793365,-0.2572661,0.07527286,0.5168954,-0.05743891,-0.055196565,-0.15462737,0.18209179,-0.32469788,0.3199432,0.14586267,0.090266764,0.5793581,-0.22219682,0.101943925,-0.74562913,-0.028769016,-0.58849895,-0.48926616,0.2960498,-0.09467729,-0.03400321,0.41544026,0.022990916,0.33222693,-0.45730868,0.03127677,-0.05375331,-0.19641365,0.39584017,0.6043956,0.59339315,-0.33482003,0.5954486,0.0550857,0.11393972,-0.2746422,-0.08623121,0.4545676,0.09919335,0.37596846,-0.20907025,-0.38893637,0.3035182,0.77989113,0.26249897,0.56170285,0.19027248,0.07163544,0.1303119,0.1606412,0.3504068,0.102050744,-0.6702228,-0.15445805,-0.42570525,0.14369936,0.5494176,0.027494496,0.27909872,-0.22207999,-0.16736881,0.14088745,-0.040724955,-0.09943645,-1.3810515,0.35168105,-0.020477712,0.51934373,0.37369853,0.014802228,-0.110850796,0.83957654,-0.26705095,0.07006804,0.18915646,0.31141528,-0.28308454,0.74953777,-0.50100744,0.5157679,-0.11846932,-0.13905457,-0.2208915,0.07065816,0.45804453,0.9302355,-0.13517587,0.21250291,0.16934495,-0.33419567,0.05099191,-0.5223203,0.20401981,-0.5294143,-0.31490117,0.6892149,0.3409831,0.43300754,-0.19399054,-0.045310877,0.07182113,-0.1521837,0.08588536,0.061122973,-0.22102217,-0.18185404,-0.7467891,-0.1498442,0.6675984,0.3290823,0.14243484,0.18665144,-0.23483698,0.19374885,-0.014271337,0.13501549,-0.10505755,-0.84381104,-0.29902798,-0.44613925,-0.44277972,0.16806573,-0.2939076,0.12815931,0.27088094,0.04960314,-0.078009024,0.31097943,0.54798776,0.7986108,0.08305331,-0.10020001,-0.2653783,0.086084075,0.2455227,-0.24656351,-0.083471395,-0.47803658,0.14957401,-0.578258,0.16675521,-0.041341342,-0.3897365,0.044370987,-0.012447203,0.008388514,0.4791209,-0.0926418,0.1462019,0.13375804,0.04943461,-0.26590222,-0.17085022,-0.31501,0.1827775,-0.010791147,-0.04710591,-0.12204037,-0.20688911,-0.085748896,0.35284072,0.066304475,0.31053358,0.6176352,0.11220054,-0.2547771,0.1509164,-0.21314415,0.82104385,-0.16597849,-0.29838124,-0.38205686,-0.29966655,-0.15816358,0.3436583,-0.09278709,0.1483705,0.07668227,-0.3852057,0.8626642,0.012849679,1.0038198,-0.052288987,-0.44941893,-0.1332972,0.55917954,-0.19445372,0.049925577,-0.30219793,1.0057896,0.48905563,-0.28941655,-0.22252174,-0.52120864,-0.21263003,0.21448894,-0.25640544,-0.41446242,-0.20092432,-0.5527047,-0.1450778,0.2619305,0.15915795,0.09430568,-0.022770545,0.32945153,0.5497403,0.16113718,0.53151494,-0.6758393,0.10985477,0.32318765,0.3432332,0.010622834,0.31626543,-0.36015457,0.36915883,-0.7357436,0.21262316,-0.409005,0.16793655,-0.23701987,-0.34577513,0.2649883,-0.02183261,0.5641107,-0.26578474,-0.13135621,0.026518803,0.589743,-0.09399672,0.38721552,0.75750494,-0.27349168,0.01947191,-0.20059612,0.42790037,1.2055775,-0.20611551,0.17645764,0.4809104,-0.22621855,-0.683217,0.16925362,-0.4133645,0.05132228,0.0594957,-0.32549083,-0.29097944,0.27292272,0.34489548,0.06723029,0.25946316,-0.46917313,-0.14963719,0.4850045,-0.05120002,-0.27993435,-0.3136012,0.0023914934,0.38506415,-0.30250558,-0.42724138,0.010108016,0.31904024,-0.14781097,-0.4798401,-0.01315185,-0.4356737,0.3239517,0.1997716,-0.33335045,-0.09959326,-0.2582541,-0.37461177,0.0027284264,0.25245124,-0.3299522,0.07147976,-0.2834434,0.022764826,0.87467563,0.009423053,0.12797837,-0.5869472,-0.57179534,-1.0560648,-0.27267098,0.3566197,0.28152472,-0.13758543,-0.61771023,-0.030209148,-0.11909075,-0.2449811,0.013462581,-0.37352678,0.42937797,0.19350079,0.61382705,0.092186734,-0.7829574,0.15320483,0.0734449,-0.1969181,-0.41519728,0.57662547,-0.12610355,1.1518826,0.052822668,0.0064946115,-0.104325294,-0.4438362,0.40614325,-0.21324226,-0.33285052,-0.69604415,-0.05497586,885 +986,0.22558287,-0.35619357,-0.48139936,-0.097176254,-0.17115876,0.22614221,-0.28611663,0.3838581,-0.040728975,-0.52117676,-0.12545383,-0.43953562,-0.0900429,0.39549,-0.12504475,-0.3646968,-0.11095252,0.37818098,-0.40335646,0.028642213,-0.4504165,0.31836444,0.044583134,0.24297862,-0.020291101,-0.03585445,0.16791537,-0.15830001,-0.067990825,-0.6620806,0.23919356,0.06720571,-0.8471311,0.33780712,-0.079577565,-0.5298723,-0.0058246613,-0.6300561,-0.34684643,-0.77373946,0.21397348,-0.94298756,0.6204528,0.010820903,-0.14156431,0.27762684,0.0952929,0.5522963,-0.053046454,0.23500538,0.43780175,-0.44344082,-0.18516427,-0.11870819,-0.32119116,-0.40601355,-0.54659545,0.003136009,-0.2865183,-0.18114714,-0.2932902,0.18004404,-0.27637267,0.088287786,-0.17639214,0.18608591,-0.39834917,0.031999446,0.19402345,-0.11096595,0.42220673,-0.53106266,-0.110952735,-0.15772621,0.19050579,-0.5654663,-0.25205788,0.25916696,0.27258706,0.34414834,-0.30608386,-0.00924167,-0.20368087,-0.08648255,0.29965842,0.78060734,-0.025626456,-0.03972756,-0.07659713,-0.18211961,0.12389666,0.12573597,0.017827045,-0.36223102,-0.019139037,-0.031527143,-0.35488537,0.34668195,0.5401622,-0.26591522,-0.124034785,0.4072419,0.52012414,0.23044638,0.0037864447,0.23496492,0.13969095,-0.4026699,-0.18464735,0.351438,-0.07343204,0.27823877,-0.071498536,0.21448395,0.69325817,-0.45041108,-0.10410973,-0.052403677,0.09531538,-0.14631362,-0.15515435,-0.53381884,0.5443288,-0.53604525,0.1823279,-0.2236214,0.9909123,0.07315508,-0.64289904,0.35449687,-0.7324935,0.0049793096,-0.25377318,0.681979,0.3025712,0.49986893,0.1832196,0.61359954,-0.4585007,-0.0076364996,-0.06215931,-0.32082915,-0.082665876,-0.41529852,-0.14005245,-0.22026965,-0.034428798,0.08613836,-0.09308006,-0.12119428,0.4580688,-0.39319712,-0.088664874,0.032842338,0.63085014,-0.4253036,0.0012305558,0.6930967,1.068439,1.000034,0.27847666,1.3283956,0.40708536,-0.31405252,-0.2271873,0.15640199,-0.98231184,0.26381856,0.39555365,-0.24716961,0.20774558,0.34371296,-0.054534502,0.35225207,-0.58688337,-0.025975674,-0.11650698,0.034949146,0.026508266,-0.114174604,-0.39899,-0.23609968,0.0072094337,-0.03176368,-0.096970454,0.20023017,-0.29185635,0.25472352,0.27793062,1.3356853,-0.19184528,0.105597734,0.06777163,0.34083542,0.0076654493,-0.16255596,-0.1123049,0.03418953,0.49447235,0.0783308,-0.5213439,0.12183255,0.07922542,-0.4262394,-0.31495434,-0.171687,-0.08521334,-0.096667826,-0.28724998,-0.2563581,0.048487507,-0.32205087,0.461409,-2.3387313,0.03121909,-0.18407565,0.38330287,-0.13030423,-0.32266432,-0.19639938,-0.4701206,0.39422768,0.37741083,0.38627502,-0.51548094,0.41883296,0.47749668,-0.3714476,-0.115547225,-0.751818,-0.10361435,-0.11627157,0.060252327,0.15351732,-0.02415577,-0.07188488,-0.091741085,0.47621274,-0.38942713,0.12406679,0.3745908,0.37769508,0.17140213,0.51934874,0.032969963,0.5261594,-0.48183203,-0.3057049,0.34048656,-0.33814248,0.1797032,-0.026546676,0.13007183,0.2526955,-0.5518112,-0.91509753,-0.7527541,-0.68913937,1.2778916,-0.35464147,-0.36532038,0.18998562,-0.013027577,-0.46951133,-0.16908579,0.46330777,-0.2671316,-0.09544598,-0.8006159,-0.11162646,-0.16869727,0.48172277,-0.077625796,0.12501337,-0.6016631,0.3986732,-0.31623057,0.44972223,0.4412442,0.12612447,-0.18417169,-0.39162353,0.016766276,1.1629791,0.30972663,0.21961577,-0.47219896,-0.2219162,-0.20772998,-0.039295502,0.07637012,0.44766188,0.8246611,-0.006941813,0.17416383,0.2164078,0.031849608,-0.00013149083,-0.14108238,-0.37052363,0.028568983,-0.010795015,0.6733159,0.18910956,0.2091178,0.48380488,-0.13203903,0.30120152,-0.17050058,-0.29939443,0.18770996,0.9395423,-0.04462639,-0.23427346,0.65311974,0.5224215,-0.41167426,0.44633394,-0.58779,-0.26827267,0.36053142,-0.107670166,-0.44466734,0.33806497,-0.3829572,0.22057274,-0.9259122,0.45787382,-0.27493843,-0.74031335,-0.56078374,-0.23956399,-3.189685,0.11626855,-0.08760224,-0.1386115,-0.13847648,-0.2225085,0.419918,-0.27564737,-0.61158395,0.18310821,0.023818552,0.7253165,-0.07467542,0.038034033,-0.33496314,0.04008303,-0.2842401,0.20188753,0.37350768,0.16354153,-0.13493797,-0.38533783,0.066550896,-0.27326477,-0.19670585,-0.11003735,-0.7227066,-0.43675628,-0.046503894,-0.6702973,-0.5574712,0.7996394,-0.61960095,-0.08582838,-0.22744524,0.06337997,-0.19560328,0.5812191,0.08247266,0.09964696,-0.11102609,-0.14975597,-0.16158679,-0.2017852,0.3029591,0.027814731,0.07441089,0.31948072,-0.30191773,0.035715092,0.5245865,0.555321,0.010317778,1.0096223,0.32934362,-0.12744983,0.20712678,-0.29599872,-0.14454785,-0.5203391,-0.10803149,-0.12617636,-0.60660315,-0.5380992,0.04580742,-0.18612668,-0.6863293,0.73393357,-0.051491916,-0.17569914,0.10926243,0.36450952,0.25395292,0.025973529,-0.12875275,-0.13626951,0.017233562,-0.34643614,-0.35793695,-0.69055593,-0.50644726,-0.100490615,1.2668698,-0.0744011,0.1294076,0.22208019,-0.26516265,0.18100269,0.19740991,-0.062315203,0.11399822,0.5995015,0.13314314,-0.68071634,0.37159094,-0.20838492,-0.11208423,-0.7851295,0.18990341,0.838665,-0.80642354,0.38792682,0.36967978,0.13981152,-0.082397625,-0.3867531,-0.20734325,-0.014662472,-0.30674392,0.30618733,0.053462088,-0.82199305,0.4085776,0.4740345,-0.33004367,-0.7080795,0.5187385,0.032799132,0.03646612,0.2437819,0.3594633,-0.22491741,0.023725849,-0.056254577,0.32072252,-0.36410135,0.31342202,0.1267008,-0.031766843,0.15624662,-0.23707208,-0.08958875,-0.6300994,0.12951498,-0.30502352,-0.21101184,0.12097224,-0.117260896,-0.005254829,0.5949533,0.062277578,0.40674883,-0.28266025,0.025505293,-0.19746771,-0.3219774,0.26544264,0.37620166,0.24369296,-0.43399745,0.7842313,-0.002687639,-0.18468976,-0.36332172,0.040501483,0.5231988,0.031741202,0.30874452,0.08322896,-0.2432777,0.2608424,0.98346865,0.3113184,0.6776464,0.004529631,-0.017553616,0.17626038,0.2767234,0.37200266,0.102691576,-0.50598216,0.05275036,-0.0496027,0.14942381,0.41683537,0.101382695,0.38383645,-0.23322001,-0.2680486,0.007141733,0.159991,-0.12177062,-0.9972456,0.42658305,0.034241192,0.6336629,0.49343076,-0.010512757,0.44491968,0.5506014,-0.21518517,0.08643943,0.07441259,0.07224204,-0.3568274,0.6196128,-0.6690582,0.32409927,-0.22144946,-0.008426863,0.09752922,-0.043912638,0.60166514,0.70665026,-0.08016767,0.16662228,-0.028234744,-0.16691837,0.10689964,-0.41641188,0.3221292,-0.4414102,-0.22018167,0.76991093,0.4851547,0.47440353,-0.21986818,0.04242998,0.015629983,-0.15676925,0.20200245,0.08738748,0.032930706,-0.025297591,-0.623915,-0.10637261,0.77897865,0.08255772,0.01930536,0.06911613,-0.34084848,0.43999583,-0.057909895,0.087313905,-0.048544664,-0.71176374,-0.11962233,-0.58537596,-0.43063775,0.005887312,0.011777079,0.22431234,0.28277656,-0.02003708,-0.3804371,0.24656768,0.53404796,0.7472848,-0.014634972,-0.20940442,-0.33285433,0.20358412,0.21126394,-0.21588245,-0.1602638,-0.2546191,0.042601276,-0.7136037,0.38257635,-0.23776165,-0.48081166,0.53448546,0.010035828,-0.094823934,0.6896615,-0.11520101,0.18408814,0.39228922,-0.32536522,-0.15345046,-0.12656932,-0.31002694,0.048073106,0.084368385,-0.06007147,-0.11086488,-9.691716e-06,-0.2630556,0.24446961,0.000115466115,0.42244664,0.44876376,0.28161415,-0.40664497,-0.08995192,-0.39878526,0.7061008,-0.20819724,-0.18552765,-0.25700518,-0.38300127,-0.065802,0.4834845,-0.05560457,0.4030561,0.1014059,-0.548895,0.8048326,-0.09261276,0.8037262,-0.010092522,-0.36258242,-0.008426649,0.5719939,-0.118275665,-0.16078277,-0.4630041,0.81387645,0.60648793,-0.10474342,-0.19571415,-0.23364373,-0.22920522,0.0940956,-0.26039964,-0.2495363,-0.12534443,-0.6533214,-0.19367291,0.2374877,0.3669479,-0.038370878,-0.115910515,0.48209754,0.47544318,-0.024968887,0.18506157,-0.503654,0.13921754,0.31706384,0.33203468,-0.029761812,-0.05230997,-0.26849878,0.26257682,-0.64374995,0.01665094,-0.33566156,-0.0018531621,0.061297834,-0.13438027,0.1660541,0.07933588,0.2380877,-0.27205095,-0.16398866,-0.035136867,0.30065146,0.08699076,0.42602438,0.82345504,-0.21426506,0.36213484,-0.010804313,0.52928936,0.9612502,-0.30426183,0.0580137,0.5248574,-0.35773113,-0.40617442,0.56762916,-0.35168707,0.088328324,-0.03210781,-0.33607706,-0.24335721,0.23964718,0.3374075,-0.095284775,0.24344711,-0.48789388,0.08202596,0.34271413,-0.32754472,-0.4148698,-0.4701982,0.17073259,0.7229064,-0.14522386,-0.37097302,0.049133968,0.50628483,-0.3740737,-0.30554435,-0.10744681,-0.28846574,0.34483874,-0.06640975,-0.33012345,0.076142445,0.04758629,-0.34048954,-0.058141343,0.13648507,-0.2948354,0.11223586,-0.31188694,0.23613322,0.6569369,-0.35907832,-0.15359099,-0.71125996,-0.5989913,-0.9228757,-0.2273182,0.5426346,0.36362118,0.044677574,-0.29649195,-0.041324146,-0.088971354,-0.28992283,-0.054960914,-0.48313046,0.3358847,0.06579679,0.5477005,-0.036057223,-0.88850373,0.13413362,0.11156634,-0.39104968,-0.4162503,0.48272333,-0.062935874,0.74392295,0.077209845,0.10958467,0.1474689,-0.52226293,0.23523703,-0.08813675,-0.091073245,-0.85585517,0.06336002,927 +987,0.61333513,-0.37083572,-0.6810285,-0.05817715,-0.4062241,0.22033894,-0.2707597,0.82629883,0.43039012,-0.5768033,-0.20648205,-0.12711126,0.11445663,0.40104398,-0.12136312,-0.81960535,-0.16082004,0.2817415,-0.4739046,0.6924756,-0.22277796,0.32747298,0.08004588,0.68159235,-0.24829233,0.2134829,0.22901538,0.0983151,0.47930264,-0.5281834,0.12887129,0.11430027,-0.93413603,0.33393472,-0.21282458,-0.4557736,-0.05062399,-0.47341698,-0.10943844,-0.94655323,0.27910316,-0.9595612,0.86485356,0.20063034,-0.27362275,-0.05533018,0.021266494,0.24469474,-0.15148588,-0.035846528,0.17457673,-0.25976124,-0.24677643,-0.4022573,-0.09049398,-0.5312003,-0.59285057,-0.28273723,-0.28807837,-0.12258802,-0.31187373,0.2144548,-0.15582803,0.13407396,-0.48460454,0.39279318,-0.6381772,0.0213426,0.15329358,-0.39403802,0.29215568,-0.6625283,-0.13752005,-0.1417484,0.080887616,-0.2566122,-0.2676775,0.20059016,0.13065577,0.52569854,0.28485245,-0.35519847,-0.23305288,-0.018007815,0.15359147,0.5158076,-0.065521345,-0.4317451,-0.29345888,-0.22852147,0.14954789,0.17758997,0.34602085,-0.65265,0.104202524,-0.33861518,-0.17818128,0.73283803,0.4608013,-0.5279673,-0.043641903,0.09820823,0.69749856,0.27776486,-0.058869462,0.08149885,-0.015115125,-0.43285617,-0.20272975,0.044535436,-0.11734362,0.356576,-0.18499187,-0.02925397,0.46737647,-0.14509842,-0.25339285,0.16645858,-0.1216708,-0.05313276,-0.56218904,-0.29933697,0.5673072,-0.31947285,0.34831843,-0.5368721,0.83678037,0.09660275,-0.42348552,0.3869368,-0.7684245,0.08206575,-0.07323404,0.58756095,0.5390028,0.5888895,-0.054566126,0.857798,-0.41825604,0.17695452,-0.082388,-0.22389701,-0.055320013,-0.1812514,0.05275507,-0.2873502,0.16751742,-0.16459242,-0.14163116,0.017404113,0.59280074,-0.57388824,-0.23981567,0.24830358,0.9926149,-0.28268093,-0.02040267,1.0918808,1.3140053,0.82044125,-0.023784656,1.446168,0.17129582,-0.23253174,-0.050533254,0.13831034,-0.8867661,0.09947836,0.52892095,0.24150765,0.34270376,0.115484,0.08138587,0.46152195,-0.5926215,-0.16195175,0.017508319,0.3743011,-0.028330004,-0.32918903,-0.67325914,0.14369078,0.18948916,-0.010669005,0.04249795,0.3248158,-0.37097248,0.28819615,0.07463592,0.9771242,-0.19406448,0.16858023,0.093192235,0.365242,0.30491108,-0.1259068,0.08232701,0.17507428,0.19150485,0.0681261,-0.58776885,0.29469615,-0.035243295,-0.51589155,-0.07855481,-0.2920615,-0.20663476,0.20534281,-0.3544133,-0.24549091,0.03500828,-0.07569295,0.27979022,-1.9112905,-0.014043832,-0.06441277,0.507553,-0.21877523,-0.396249,0.21803364,-0.5525101,0.42950606,0.37376615,0.53371996,-0.5836522,0.3998422,0.76022226,-0.6822524,-0.009150016,-0.56534207,-0.06988426,0.029160073,0.37707415,0.076250866,-0.26421908,-0.1122389,0.27465355,0.6515275,0.22315279,0.23214898,0.43132383,0.30636564,-0.41415206,0.41256666,-0.0024519116,0.8421999,-0.42539835,-0.27035642,0.41719905,-0.14309977,0.28288183,-0.43031082,-0.04403047,0.46162587,-0.2989283,-0.9844993,-0.876717,-0.40641093,1.0339897,-0.24992153,-0.69856644,0.1999131,-0.15042333,-0.22966449,0.21375473,0.61993706,-0.23520163,0.13134159,-0.77095956,0.18762231,-0.2319706,0.5129569,-0.032031458,0.021420788,-0.8652927,1.0844761,-0.2840132,0.56000084,0.55354786,0.4423183,-0.07119392,-0.58300716,0.16800985,0.90415275,0.57794785,0.22762981,-0.30785054,-0.1023,-0.29048198,0.09073856,-0.06109377,0.9298666,0.71527517,-0.20875952,-0.058291573,0.20898995,0.060572494,0.071969256,-0.17169489,-0.53933334,-0.30330944,0.09642906,0.52343905,0.6028862,-0.25844494,0.06589945,-0.26688874,0.6008574,-0.1815016,-0.49243027,0.56590086,0.95376253,-0.3426305,-0.15228471,0.9295271,0.416715,-0.3314579,0.7287053,-0.8279794,-0.26724872,0.3801338,-0.08658148,-0.4897291,0.15268715,-0.26972398,0.19288483,-1.0512321,0.16766551,-0.58936375,-0.6507573,-0.36741787,-0.27222648,-3.3075607,0.34917533,-0.049633417,0.042544622,-0.45498523,-0.20455165,0.15913096,-0.7935508,-0.7932513,0.1473801,0.074710846,0.46081418,-0.09565696,0.15938851,-0.32632443,-0.48853454,-0.119893074,0.5643989,0.14105408,0.12269459,-0.19350225,-0.4659067,0.024397489,0.20225301,-0.3652984,0.01510697,-0.95580447,-0.18637307,-0.21614201,-0.62502575,-0.06796566,0.6065922,-0.58261555,0.08109339,-0.21634889,0.20748219,-0.2965893,0.24975209,0.03808489,0.22200231,0.25025386,-0.03173868,-0.16317216,-0.114613414,0.2766359,0.22557895,0.3278826,0.310923,-0.2822374,0.10502602,0.4528635,0.873522,-0.087648086,1.1004077,0.24304,-0.101796046,0.3910504,-0.07074897,-0.5873953,-0.86913854,-0.2748925,-0.060481478,-0.47080785,-0.5600937,0.033355333,-0.40746027,-0.7562292,0.46724844,0.13155015,0.22601485,0.18995687,0.16970934,0.50717336,-0.35166973,-0.19771606,-0.11087289,-0.0776093,-0.6811434,-0.28462583,-0.5978587,-0.56500727,0.03705467,0.95717144,-0.15001035,0.15676963,0.431417,-0.15215096,0.21784373,0.21495923,0.124204494,-0.18341088,0.7759563,0.50114167,-0.63952154,0.45510215,0.12385621,-0.21775396,-0.80032825,0.66693914,0.49145803,-0.9311202,0.67995614,0.16856533,0.10979811,-0.07789087,-0.4608837,-0.3315783,0.18999043,-0.26895753,0.4872829,0.26868558,-0.7315511,0.21745273,0.24974677,-0.023883473,-0.8947371,0.58823097,-0.23967123,-0.35277066,-0.1785787,0.62621063,0.08538888,0.005735281,-0.1020421,0.21362679,-0.47066402,0.11857466,0.18340775,-0.042342536,0.34269947,-0.23493533,-0.015992021,-1.0645176,0.23492697,-0.67130667,-0.3853612,0.13814697,-0.12881193,-0.48059878,0.2284523,0.2422308,0.41127452,-0.18913063,0.46255088,-0.23518236,-0.39846817,0.68849933,0.4463336,0.45895758,-0.23045854,0.7833516,-0.029111873,-0.11689297,-0.03334161,0.054996885,0.4327084,-0.13851902,0.51286143,-0.023038471,0.1568416,0.033040874,0.7315935,0.21080181,0.21401596,0.12395634,0.094602,0.46222815,0.08054639,0.34577566,-0.08409428,-0.7860001,0.2578903,-0.09796533,-0.1962461,0.5488027,0.25251907,0.3570004,-0.12238133,-0.3973042,0.067608126,-0.006172502,-0.09758959,-1.2923545,-0.009973859,0.066643484,0.83219844,0.73717433,-0.04005301,0.0035482794,0.39805967,-0.1316254,0.13285974,0.39680704,0.01007129,-0.24382135,0.4901146,-0.7736075,0.22320497,-0.16139317,0.098811366,0.36951318,-0.09499087,0.33973712,0.99462223,-0.27279136,0.055713534,-0.162536,-0.07231815,-0.08215558,-0.42250818,-0.004044992,-0.28109002,-0.5106503,0.76949704,0.55999756,0.6013433,-0.54082847,-0.072812855,0.072945006,-0.20959099,0.1747722,-0.10276087,-0.054998927,0.124053836,-0.36490673,-0.14160092,0.6857025,-0.13886614,-0.13564987,-0.08509888,-0.49188286,0.2992015,0.0070533515,-0.10625322,-0.05907923,-1.0234302,-0.15522137,-0.49816275,-0.3286501,0.33256045,0.061249554,-0.03651779,0.18433376,-0.010035345,-0.06362786,0.38971764,0.18375455,1.0549333,0.38797423,-0.11523068,-0.47472963,0.38791895,0.21555777,-0.28275377,0.2010874,-0.30220348,0.03279239,-0.46613884,0.15790442,-0.15394142,-0.7110535,0.15171811,-0.039945908,-0.11029343,0.60109293,-0.00027947425,-0.3050414,0.23723392,-0.1761713,-0.095476136,-0.37567288,-0.17017287,0.25866532,-0.11856662,0.18058872,-0.19713466,-0.16094215,-0.2361053,0.16937122,0.3104108,0.34619972,0.50200784,-0.08122437,-0.48128456,0.25312468,0.14893709,0.4541315,-0.29540905,-0.02181322,0.18406466,-0.7540836,-0.57423156,0.0061519505,-0.15315795,0.27582636,0.13307701,-0.16707563,0.77879316,0.33052358,1.3927714,-0.28953063,-0.6385058,0.29248074,0.7581058,-0.18340027,-0.053634237,-0.5166872,1.4264635,0.5122127,-0.12092663,-0.006673624,-0.29549465,-0.23109174,0.26663035,-0.23118457,0.06419657,-0.08984871,-0.72297204,-0.003011477,0.13828799,0.4593727,0.07378094,-0.05084616,0.17775764,0.27722278,0.03368888,0.3714346,-0.6839016,-0.17036676,0.22890231,0.0837587,-0.07330549,-0.0667604,-0.2326976,0.25666124,-0.62545455,0.12043693,-0.5564331,-0.19536617,-0.2511671,-0.19628902,0.07150869,-0.14820698,0.2922836,-0.52734435,-0.37751535,-0.18527259,0.4046269,0.26470822,-0.042141076,0.9053396,-0.12742473,0.07366912,0.16378674,0.5831775,0.9859605,-0.24697761,0.05581416,0.145371,-0.60231435,-0.5675042,0.008496952,-0.2835832,0.028623605,-0.12737978,-0.34984362,-0.6791218,-0.003480068,-0.062658705,-0.30633038,0.19590302,-0.72211766,0.08914216,0.45523047,-0.43962127,-0.17008273,-0.17725763,0.50786144,0.95997727,-0.1268669,-0.47046185,0.21750955,-0.016037028,-0.23925261,-0.90852296,-0.21645033,-0.21428546,0.2282696,0.16697478,-0.5910187,-0.27864242,0.14098829,-0.5292316,-0.13194934,0.2411859,-0.3173671,0.23555732,-0.46626148,-0.22761936,0.98200923,0.022510504,-0.015032237,-0.8688938,-0.7192103,-0.88246804,-0.3688843,0.45422903,0.108350754,0.07670853,-0.6252708,-0.02317674,-0.51617604,0.015873885,-0.10100105,-0.17213798,0.43158466,0.31852713,1.0023994,-0.15261893,-1.1931264,0.44293195,0.2597212,0.1682618,-0.5967924,0.3486152,0.08174029,0.8492777,-0.014862528,0.010756336,0.11505358,-0.87005407,0.11649964,-0.18148185,0.06211143,-0.9112077,0.40624747,937 +988,0.61249304,-0.19665167,-0.8522091,-0.043778487,-0.24296054,0.161942,-0.24101862,0.43948022,0.43319193,-0.35652152,-0.42117676,-0.07619542,0.05022005,0.09568981,-0.14547288,-0.7313519,-0.101359546,0.28928262,-0.66859925,0.46719098,-0.16631344,0.25021425,0.10392475,0.6270949,0.09328775,0.1875016,-0.14477043,0.057518095,-0.16505888,-0.05796534,-0.095273085,0.34847155,-0.51975965,0.26291662,-0.32413077,-0.31144154,-0.2143391,-0.62877846,-0.25270393,-0.6862226,0.29097968,-0.7912275,0.68072546,0.1875056,-0.3777594,-0.21015659,-0.09200314,0.19105932,-0.22161928,0.14689314,0.12930943,-0.24205676,-0.17603703,-0.22710769,-0.40849608,-0.09910141,-0.5706121,0.027134588,-0.39248258,0.19132032,0.09753048,0.17712186,-0.36128783,0.019237686,-0.29765517,0.3764562,-0.24436697,0.13527668,0.46230274,-0.19956748,0.21190977,-0.46953171,-0.15751477,-0.10798129,0.45116144,-0.015315065,-0.5219988,-0.049720924,0.17785227,0.6281625,0.027420009,-0.11563356,-0.2122548,0.08465471,0.10758934,0.51954067,-0.06780344,0.014242873,-0.27104256,0.004009998,0.3802547,0.4016468,0.12599833,-0.33837304,-0.04934449,-0.3768266,0.0746425,0.2563267,0.42568326,-0.031223923,0.0068822624,0.27213067,0.43889618,0.302667,0.030972917,0.24622913,0.14888301,-0.66195613,-0.24375448,0.15896657,-0.038498018,0.64296186,-0.13096449,0.30257696,0.5164916,0.034312874,-0.066795014,0.12028035,0.16901839,-0.021074818,-0.2971117,-0.15980558,0.39847466,-0.4956422,0.083692595,-0.2716382,0.3808834,0.083394326,-0.6691492,0.27666456,-0.58740014,0.20301738,-0.031170428,0.6152681,0.95921814,0.35231027,0.030187493,0.82959634,-0.32520312,0.051647563,0.0013201416,-0.14264421,0.0823089,-0.058332287,0.051300205,-0.51864636,-0.19050686,-0.025500815,-0.19131543,0.31273392,0.2507502,-0.34312803,-0.31754574,-0.17133126,0.64430356,-0.22894469,-0.09324317,1.0099627,0.98237896,0.7867713,0.116090275,1.419211,-0.016311537,-0.16743112,-0.13145205,0.075055696,-0.8207108,0.28917426,0.16444163,-0.45481986,0.58983773,0.078980125,-0.10474306,0.41788405,-0.38885516,0.055972107,0.045218922,-0.12374699,-0.1901543,-0.013314104,-0.58304113,-0.3686598,-0.05512443,0.119616225,0.06630913,0.24571447,-0.07668481,0.53345865,-0.005032009,1.1519113,-0.09948413,0.088310234,0.061293066,-0.10882026,0.23306179,-0.31785637,-0.31175637,0.27829581,0.39938492,0.08311932,-0.4920269,-0.030874813,-0.17222895,-0.14395973,-0.21424031,-0.18063542,-0.09648068,-0.25579163,-0.43582636,-0.1601855,-0.1169129,-0.40857857,0.32040268,-2.4685903,-0.30569515,-0.12580717,0.44736218,-0.22151804,-0.37188607,-0.46912473,-0.4095865,0.25163627,0.2527556,0.40584913,-0.5946446,0.29037327,0.26219717,-0.5229704,-0.14396529,-0.70934963,-0.01205875,0.18838081,0.03608951,-0.049661033,0.073822044,-0.114711426,0.15086468,0.41083008,0.061409015,0.057300113,0.4240767,0.53897905,-0.10235368,0.19871381,-0.08878423,0.5459491,-0.4918167,-0.20525834,0.35616463,-0.37740692,0.43604356,-0.03946531,0.11406618,0.5097377,-0.5935512,-0.47857475,-0.5163282,-0.35119322,1.1833811,-0.37904674,-0.25544947,0.14757952,-0.5426585,-0.4617743,-0.0051974403,0.8450388,-0.11077031,-0.032490365,-0.866913,-0.38966203,-0.06785543,0.27624542,-0.14078522,-0.02936486,-0.45044646,0.5828804,-0.038868725,0.49075556,0.5355273,0.16425292,0.06162583,-0.44771728,0.2700513,0.89309835,0.49338573,0.24118114,-0.33881527,0.100092255,-0.3509496,0.25127906,0.07609219,0.7033676,0.56301844,-0.18859383,0.17280476,0.3566958,0.09859754,0.15196247,-0.05272957,-0.19986896,-0.24825346,-0.15543154,0.63079906,0.92899865,-0.15517926,0.11276518,-0.013263121,0.36623636,-0.21722904,-0.5004126,0.55924225,1.0659177,-0.16195174,-0.24179013,0.82944995,0.4226387,-0.3808972,0.45573348,-0.47953027,-0.33370957,0.33403215,0.06378205,-0.43046004,0.30216455,-0.33369634,0.26835814,-1.0601233,0.19275752,-0.10876372,-0.48803204,-0.55816925,0.014796227,-2.3554385,0.29988465,-0.26901764,-0.2158746,-0.28852862,-0.3056876,0.26570374,-0.42986298,-0.75876456,0.1462737,0.06298755,0.5202314,-0.37768096,0.1678343,-0.054549556,-0.5479527,-0.075422384,0.15318353,0.5103668,0.29346707,-0.15250537,-0.2705285,-0.3345619,-0.11105935,-0.26315492,0.029245328,-0.7320042,-0.56426203,-0.10292612,-0.55124557,-0.012836456,0.55686015,-0.32463485,-0.25382432,-0.18257847,0.07896145,-0.023143638,0.22617301,0.03279794,0.28547773,0.13844167,0.017663652,-0.16747025,-0.12360792,0.3157486,0.16593984,0.18969296,0.33349356,-0.2646464,0.4008437,0.3719979,0.7292102,-0.3026523,0.8530053,0.31052965,0.10969981,0.15455034,-0.069931425,-0.6244805,-0.48490867,0.013724526,-0.12632975,-0.5580902,-0.39431867,-0.1562581,-0.49732047,-0.99811536,0.34995213,0.11231907,0.03883056,0.1517683,0.41268522,0.4936511,-0.22350895,-0.007934904,-0.12314482,-0.23999667,-0.36851034,-0.4089415,-0.47469172,-0.4514247,0.1524057,1.1889203,-0.14852498,0.25042352,0.22317187,-0.35648283,0.031739455,0.252983,0.1357874,-0.015201437,0.57700527,0.1410409,-0.3568632,0.45679992,-0.019977186,-0.25577047,-0.6645974,0.008459973,0.6470436,-0.7413548,0.71251154,0.3609897,-0.07139962,-0.1591328,-0.5164375,-0.31241146,-0.062788464,-0.15453836,0.60720235,0.49779397,-0.509263,0.21266484,0.06647222,0.00023030341,-0.665112,0.5744087,-0.14945576,-0.1988151,-0.040229063,0.41853613,-0.31602556,0.06361653,-0.054409195,0.13067819,-0.109680966,0.2544991,0.23647761,-0.16376755,0.09746552,-0.14711407,-0.025912398,-0.7279882,0.15042095,-0.70319295,-0.26956606,0.4451787,0.13936432,0.122525096,-0.0003241837,0.38359565,0.43475446,-0.45733365,0.11836754,-0.24157366,-0.28069296,0.33706254,0.45816556,0.56403595,-0.5080609,0.48908672,0.074514225,0.039446764,-0.039565515,0.28868857,0.37672848,-0.070808396,0.3625263,-0.009320974,-0.099662304,-0.04017646,0.7137028,-0.021868825,0.23841324,0.33345333,0.08859575,0.23813012,-0.01605446,0.27014452,-0.27888843,-0.5356525,-0.10299411,-0.324452,0.06776561,0.33022824,0.06871069,0.20245068,-0.19306111,-0.24502496,0.04142426,0.31772295,0.17357926,-1.2247326,0.26031938,0.14911577,0.61232674,0.44964004,0.08551721,-0.057902914,0.3936994,-0.16488521,0.1958654,0.4468699,-0.10252557,-0.37990957,0.51466936,-0.41401115,0.4635333,-0.120033994,-0.060340635,0.13514993,-0.08007814,0.42726773,0.9009119,-0.03233501,0.006295231,-0.020065363,-0.1446399,-0.14667264,-0.41916448,-0.07018709,-0.66427594,-0.2734418,0.7259571,0.550189,0.4774271,-0.4973263,-0.01871572,0.062679246,-0.058298785,0.18591395,0.12191532,0.12510312,0.041860256,-0.7441527,-0.043626342,0.6016959,-0.0121137705,-0.030889463,-0.0031130076,-0.22654895,0.20896801,-0.13477764,0.04871627,-0.16303992,-0.8508218,-0.19477186,-0.73091215,-0.591154,0.11427809,-0.21253495,0.12851544,0.23138742,0.02954499,-0.36622754,0.50351554,-0.1125768,1.1875482,0.11522736,-0.04516809,-0.40530878,0.5578966,0.31067768,-0.3200831,-0.21185103,-0.21102445,0.20932138,-0.3547162,0.44461012,0.06289545,-0.3521995,-0.08264863,-0.0072600124,0.024014875,0.44310722,-0.16840652,-0.11482592,0.27915913,-0.02647087,-0.4238391,-0.1762328,-0.39059234,0.14544754,0.3366789,-0.051326692,-0.123809434,0.048698746,-0.07395731,0.20202427,0.25571793,0.23179789,0.49099857,-0.10526744,-0.32169172,0.04492746,0.27799782,0.57050365,0.1324836,-0.2940435,-0.32849997,-0.38379294,-0.36930832,0.527203,-0.043785617,0.26018834,0.10007497,-0.13049057,0.84747255,0.34366965,0.9173713,-0.017310595,-0.20404053,0.11418243,0.45788902,-0.12816484,-0.3403605,-0.26292807,0.97371036,0.3669843,-0.21990342,-0.0941743,-0.34232083,-0.14726985,-0.10345918,-0.1842058,-0.036841188,-0.14965285,-0.67401636,-0.096611395,0.111754954,0.30761236,0.106702186,-0.12264397,0.20913796,0.26245746,-0.091932334,0.035897188,-0.50581163,-0.19074535,0.3077647,0.17685464,0.07076552,0.13512306,-0.36170945,0.43409118,-0.6915235,-0.0035416603,-0.5303684,0.11252884,-0.011251926,-0.36547524,0.06807496,-0.09613441,0.28459707,-0.572189,-0.15621446,-0.4404499,0.4351224,0.19158117,0.26260647,0.7258171,-0.19804649,-0.10250275,0.18880104,0.6296686,1.1064746,-0.16722342,0.076329716,0.43560272,-0.24896061,-0.60364324,0.053354718,-0.42015186,0.23721778,-0.23212019,-0.35563952,-0.6653727,0.09011762,0.010697931,0.14832172,0.013429684,-0.5455803,-0.11685802,0.27936,-0.20716831,-0.19164908,-0.35728717,0.005828035,0.5716826,-0.007095176,-0.52664727,-0.03332139,0.114331245,-0.16085966,-0.33382288,0.03433801,-0.26376367,0.01654091,-0.005185726,-0.338548,-0.04574656,-0.009122947,-0.47965842,0.14083835,0.15459889,-0.2953844,0.17165525,-0.31577268,-0.33267412,1.1311743,-0.16505174,0.10164289,-0.37795514,-0.61357176,-0.8099502,-0.26607254,-0.039213084,0.22038336,0.16035834,-0.71439636,0.02738497,-0.22419052,-0.00935114,0.01053227,-0.14399609,0.4681135,0.2172664,0.59234333,-0.15938762,-0.8849551,0.20615935,0.10542451,-0.5440198,-0.50403845,0.41326776,0.14218685,0.7466277,0.012370895,0.09595038,0.16298154,-0.66635567,0.11569681,-0.06881661,0.023407374,-0.64366794,-0.092973426,958 +989,0.3077379,-0.8225179,-0.5726567,0.007373041,-0.1732082,-0.04983467,-0.38709602,0.4071464,0.19453385,-0.20238805,-0.13108125,-0.13556953,-0.06677808,0.7791251,-0.21755162,-0.6162446,-0.3125584,0.083918676,-0.72732484,0.79874206,-0.31055748,0.07551468,-0.031093273,0.55880994,0.47915134,0.06320906,0.04510158,0.16012008,0.0503153,-0.33901536,0.02421083,0.11290252,-0.7299653,0.25528845,-0.25502428,-0.45710984,-0.08865567,-0.68286544,-0.5203933,-0.8402289,0.37832284,-1.1510655,0.7455877,0.022871494,-0.25976756,0.046585534,0.058977794,0.28870422,-0.046035655,-0.035195928,0.17323324,-0.018531376,0.02880947,-0.23459132,-0.29866743,-0.44818798,-0.60692215,-0.017428365,-0.6385601,-0.27628273,-0.14457819,0.24132696,-0.6367362,-0.012690725,-0.09838413,0.4704779,-0.53064054,0.10828833,0.0015349805,-0.03212279,0.18818717,-0.5942179,-0.22141925,-0.13507509,0.18702982,-0.15666716,-0.24016008,0.1617638,-0.0345402,0.25453767,-0.22318813,-0.13102166,-0.29181772,-0.11561541,0.18225428,0.74118984,0.11594608,-0.69057596,-0.26789045,0.26467592,0.35591027,0.17188624,0.0749989,-0.4732732,-0.12585802,-0.17196025,-0.07882239,0.8610735,0.5048574,-0.15485807,-0.42501324,0.41090098,0.5590845,0.6028457,-0.18767723,-0.10496533,0.15014976,-0.5769415,-0.013284525,0.28911728,-0.10815517,0.5580543,-0.04048351,0.45708972,0.66404116,-0.35470796,0.10968522,-0.028996017,0.051440097,-0.32169968,-0.13842459,-0.2526729,0.2537458,-0.33658746,0.28192517,-0.29708347,0.77584726,0.068501174,-0.7398437,0.29732996,-0.6615446,0.1660949,-0.036113624,0.7081772,0.82412875,0.49096638,0.34782276,0.58716285,-0.06547473,0.1642812,-0.17874336,-0.37336743,0.03232529,-0.39883074,-0.15636328,-0.5553812,-0.256512,-0.116738044,-0.14034705,-0.06513762,0.7641999,-0.4938863,-0.24819979,0.00412541,0.892392,-0.1509219,0.029696226,0.97363615,1.0452284,1.1375487,0.072345264,1.227598,0.17676876,-0.12090763,0.1435605,-0.026966041,-1.0425897,0.37890247,0.48137274,0.16976313,0.70704854,0.0607121,-0.0651824,0.4841029,-0.59744567,0.08806289,-0.23308472,0.17525837,0.2664017,0.03937728,-0.5639744,-0.1476487,-0.17680812,0.17734833,0.009241158,0.28232208,-0.48933735,0.4225692,0.2106152,1.8414621,-0.16798222,-0.021749157,0.022585785,0.6975666,0.12728345,-0.17125246,0.0048426627,0.41829854,0.52678573,0.21200386,-0.8436116,0.24034896,-0.27248773,-0.36071426,-0.24391568,-0.2801196,-0.06673023,-0.34392875,-0.3577676,-0.065292075,-0.13657022,-0.2387712,0.43711066,-2.5692265,-0.3530407,-0.101481795,0.36739856,-0.33755952,-0.41330537,-0.03892138,-0.44851318,0.49246877,0.32268888,0.65566087,-0.74359024,0.21141663,0.5462569,-0.69404095,-0.19225898,-0.7430705,-0.023654884,0.019784201,0.75707567,-0.11703309,0.1107008,0.239083,0.19166724,0.59034765,0.08670971,0.101759896,0.40789086,0.6830428,-0.025187317,0.5323203,-0.18257709,0.3327252,-0.47786245,-0.17531696,0.40819246,-0.29052496,0.42517647,-0.2445068,0.17953335,0.6111963,-0.4778737,-1.0131204,-0.4972202,-0.32321876,1.0439937,-0.397877,-0.547484,0.16009423,-0.109661505,-0.3179438,-0.3066801,0.6345007,-0.3951446,-0.0424469,-0.80468833,-0.042040814,-0.13939145,0.21852478,-0.103385985,0.023835182,-0.3165262,0.5322897,0.00818793,0.29236656,0.21471572,0.24292645,-0.432525,-0.70259607,0.2794908,0.7389684,0.41141734,0.09126967,-0.33061385,-0.16825107,-0.07193661,-0.13576359,-0.13790241,0.67623985,0.70385104,-0.13017428,0.23866911,0.38462964,-0.16449222,-0.05321915,-0.23888712,-0.1355958,-0.23696828,0.2842783,0.6428407,0.9436356,-0.0991206,0.68184954,-0.085862465,0.07764681,-0.04319106,-0.3924972,0.44463557,1.065341,-0.15564175,-0.36182874,0.43921408,0.6082546,-0.5923055,0.4917222,-0.601544,-0.1356394,0.52638066,-0.17137797,-0.6627288,0.40818372,-0.23256716,0.08834137,-0.9356201,0.3936225,-0.17763157,-0.4870437,-0.8048379,-0.104691125,-2.069566,0.11006117,-0.2947364,-0.48692784,-0.29132593,-0.27638954,0.20606256,-0.6593499,-0.7215158,0.1355664,0.16191287,0.6264065,-0.23589873,0.16628608,-0.19624665,-0.289056,-0.28581545,0.19508383,0.25329003,0.366808,-0.13571496,-0.51408446,-0.18331371,-0.014992595,-0.48142618,0.14883071,-0.7122112,-0.4469479,-0.07978984,-0.65400296,-0.14236055,0.7042176,-0.03741648,-0.13349949,-0.21074665,0.092569076,0.07700344,0.47629756,0.13848917,0.122386396,0.11756823,-0.07328317,0.08350561,-0.15535791,0.34357893,-0.04517869,0.25046164,0.33158278,-0.28520378,0.5344202,0.7016448,0.547537,0.051298987,0.9371891,0.5198371,-0.18644226,0.19990206,-0.12378013,-0.30224335,-0.5998155,-0.2602604,0.1987879,-0.3932019,-0.59544384,-0.28201205,-0.1857123,-0.8756609,0.72114104,0.035480667,0.38084102,-0.08812876,0.33036464,0.47546786,-0.15155305,-0.12750404,-0.007817966,-0.10311134,-0.4234619,-0.42977914,-0.68079925,-0.5307699,0.09778668,0.93783265,-0.15006362,-0.14333448,0.094893664,-0.49919575,0.04180547,0.17875998,-0.06136606,0.23112674,0.36102793,0.19771573,-0.71201503,0.58828557,-0.07040469,-0.16075236,-0.72849625,0.12162373,0.7254667,-0.5868303,0.32504433,0.18465789,0.06287581,-0.39978623,-0.43952674,-0.010466492,0.08949154,0.0031223192,0.22030869,0.29439068,-0.75835,0.5200496,0.25842512,-0.35409823,-0.6346098,0.55286807,0.040798247,-0.01965471,-0.1691987,0.3541022,0.121563196,0.04244377,-0.37447459,0.53386307,-0.17116234,0.2387098,-0.08245708,-0.08370938,0.29288077,-0.14631805,-0.2675106,-0.7515332,0.3106594,-0.4947164,-0.41012865,0.57313,0.069257185,0.16144885,0.16414757,0.1115949,0.4076189,-0.35585135,-0.03249471,-0.11258952,-0.29842314,0.37136698,0.5599373,0.6904879,-0.6113868,0.64459383,0.15759033,-0.09522125,0.3398048,0.07685399,0.35264555,0.0006444931,0.42096034,0.13219614,-0.2424657,0.18782702,1.0874727,0.255283,0.6072747,0.11353643,-0.13572522,0.2998151,0.15138772,0.27187848,-0.18846127,-0.6548268,0.051359355,-0.21292737,0.05994904,0.65668666,0.12421538,0.24757953,-0.27110013,-0.4044857,0.039619274,0.12220627,0.20189723,-1.5671355,0.15970373,0.29097757,0.7868336,0.3340873,0.08017975,0.33722943,0.717131,-0.19672461,-0.07261703,0.42970496,0.22238874,-0.6979187,0.65060586,-0.76627064,0.6215924,-0.05834667,0.08138916,0.1764955,0.16128305,0.52146864,0.6545926,-0.34439144,-0.10590048,-0.16100413,-0.34291568,0.0007148713,-0.50019276,0.41041332,-0.546353,-0.53058887,0.69642437,0.71620685,0.2235496,-0.021069322,0.032199483,0.08853134,-0.17171106,0.27359074,0.048083447,-0.098192915,-0.16912556,-0.91993284,-0.0879153,0.59643745,-0.00785408,0.08740339,-0.17169105,-0.007771671,0.31933412,-0.17322448,-0.135363,0.021233622,-0.9208582,0.06384413,-0.4654483,-0.66627485,0.25111896,-0.21829596,0.19285746,0.21660313,-0.06660519,-0.46536645,0.3109432,0.08698309,1.1058899,-0.09301128,-0.22835286,-0.4304533,-0.03912943,0.25929183,-0.32041344,-0.04610895,-0.20866278,-0.05158657,-0.6474988,0.62707067,-0.15937746,-0.4848237,0.06724378,-0.23884101,0.0527362,0.7342581,0.08560936,-0.15156882,-0.13654803,-0.410345,-0.39122233,-0.395012,-0.094558015,0.27996996,0.2824968,-0.08373717,-0.14060588,-0.04984356,-0.14266753,0.48712254,-0.026951153,0.52735656,0.47448856,0.4039755,-0.18495266,-0.22548358,0.19440134,0.6652076,0.14929777,-0.099767074,-0.26622996,-0.46104974,-0.4515739,0.26074076,-0.14987147,0.40399393,0.059209663,-0.46925825,0.76763,0.13809124,1.115771,0.034057982,-0.49240357,0.39162058,0.6169828,0.038357116,-0.22459897,-0.4937996,1.0276998,0.51716095,-0.055475432,-0.17053832,-0.5878709,-0.28009453,0.3585353,-0.37660939,-0.039203584,-0.12692845,-0.43556228,-0.007242358,0.22088793,0.20293415,0.13693957,-0.26527685,0.018371407,0.34043807,-0.019857,0.339461,-0.5316003,0.029028391,0.28967422,0.16968292,-0.035576038,0.0355879,-0.555611,0.37133107,-0.49582607,0.20766935,-0.48214293,0.35467553,-0.1587805,-0.17566316,0.24650426,0.052509677,0.4915523,-0.50401,-0.32394537,-0.20749009,0.47957927,0.2503767,0.17282769,0.6023277,-0.29271856,0.24556093,-0.093704,0.55900896,1.1220131,-0.32805943,0.041343458,0.2574833,-0.5003725,-0.70516837,0.46238384,-0.50763834,0.45812225,-0.03723728,-0.026451314,-0.76032406,0.28427076,-0.011306155,0.16899236,-0.16513136,-0.5761113,-0.24117413,0.33471662,-0.24018395,-0.23549402,-0.47444472,-0.14938398,0.6253904,-0.09790872,-0.5016246,0.08953603,0.33058232,-0.16711597,-0.43041143,-0.019197237,-0.28427854,0.12451039,-0.09306984,-0.3066066,-0.16250929,0.06831476,-0.6264362,0.046071038,0.01349399,-0.37458324,0.030976683,-0.09043411,-0.07897724,1.185704,-0.5989253,0.008190644,-0.79341704,-0.63983905,-0.82105845,-0.3292213,0.37637743,0.22319598,0.23646507,-0.77766067,0.1622596,-0.036432695,-0.1882084,-0.12004441,-0.583394,0.417309,0.012760852,0.42990512,-0.3726334,-1.0061201,0.44021624,0.025706116,-0.1147954,-0.7958693,0.6518799,-0.04380413,0.7854687,0.09283526,0.25623798,0.10874311,-0.58653057,-0.2334096,-0.08287187,-0.29501495,-0.7733036,0.30781856,962 +990,0.3079358,-0.09560775,-0.35384285,0.035303734,-0.10528431,-0.013219324,-0.022698034,0.69088256,0.30916446,-0.5077301,-0.23700798,-0.47601375,0.07743781,0.45498443,-0.09575472,-0.48970428,0.22071795,0.30102283,-0.47363386,0.4671958,-0.47567782,0.35816604,0.11767944,0.5832579,0.1725375,0.15514836,0.26317543,-0.1866249,-0.36761728,-0.21303777,-0.1748556,0.28000697,-0.49835473,0.26738578,-0.30896094,-0.46415567,0.06399224,-0.621885,-0.08125995,-0.6341604,0.094791904,-0.74883157,0.43160954,0.11838858,-0.10462823,0.1460149,0.21096687,0.27371517,-0.17556152,-0.068355754,0.08133869,-0.21113494,-0.06638749,-0.41116962,-0.28811008,-0.30133572,-0.55830514,0.14401236,-0.5148279,-0.12446753,-0.42992085,0.065128475,-0.2268391,-0.17272055,0.22337031,0.36113968,-0.39852715,0.04392276,-0.12369285,-0.22051635,0.10848212,-0.34515512,-0.29113102,-0.14517887,0.3071695,-0.28702518,-0.27864066,0.35980296,0.31435052,0.3783904,-0.120431975,-0.037312657,-0.41821456,-0.01265018,0.0926312,0.6700591,-0.13995452,-0.5909068,-0.07567815,-0.08611819,0.10128276,0.2483408,0.24371836,-0.29540572,-0.05322078,-0.024535745,-0.31525165,0.40327215,0.2939379,-0.46445927,-0.33170712,0.40151328,0.31718537,0.16483,-0.114876725,-0.09275204,0.088153645,-0.5294845,-0.14920579,0.033413395,-0.20889282,0.64001584,-0.007267189,0.38664752,0.6314779,-0.40992588,0.023010395,0.059304476,0.16341922,-0.27282655,-0.09778073,-0.19422713,0.24757648,-0.42152795,-0.10212679,-0.18246257,0.9147299,0.12766019,-0.6201335,0.42383736,-0.638198,-0.028653149,-0.12081598,0.35065037,0.6379504,0.4409793,0.3613262,0.47172588,-0.37662303,-0.0326856,-0.14971061,-0.43269572,-0.03133381,-0.25956622,0.1231007,-0.5628675,-0.1193073,0.35475606,-0.006178379,0.33374655,0.48801175,-0.5817165,-0.17622453,0.22398277,0.7528698,-0.24979961,-0.39603692,0.8072182,1.0867946,0.868019,0.11622791,1.2121124,0.13939354,-0.16526286,0.2771652,-0.13337834,-0.67689204,0.3333653,0.3016779,-0.8981848,0.24778712,0.24743882,0.19427384,0.17471577,-0.38610923,0.059254974,-0.05764549,-0.015594056,0.10589148,-0.107328035,-0.24914098,-0.44874707,-0.1869134,-0.17868811,0.1910675,0.41965985,-0.24124496,0.2659166,-0.11911829,1.7342968,0.21977265,0.11754505,-0.15822046,0.66390383,0.19890149,0.021459216,-0.2428625,0.41367784,0.12092233,0.22387233,-0.4239471,0.14252636,-0.21343541,-0.53393674,0.0287139,-0.31781608,-0.17137456,0.027125712,-0.36495328,-0.14132383,-0.09531238,-0.48731905,0.5991826,-2.822819,-0.25482145,0.0993054,0.40848047,-0.2525095,-0.41278514,-0.31824285,-0.43612522,0.32552037,0.2960456,0.51240504,-0.6507007,0.15733738,0.3624925,-0.45702738,-0.4568061,-0.49498257,0.24349038,-0.10616509,0.17837867,-0.12184346,0.019979488,0.17498784,-0.1622616,0.5127827,-0.14431997,0.05081749,0.3308188,0.45901266,0.1343178,0.38795263,-0.09073848,0.523329,-0.41624528,-0.35148388,0.20997667,-0.51359856,0.38667795,-0.022860652,0.0945324,0.35800737,-0.3763305,-0.9835928,-0.60322505,-0.14811328,1.0018399,-0.13683519,-0.18338947,0.16623275,-0.13216938,-0.22835073,-0.1619555,0.69584244,-0.11369666,0.097079575,-0.59274757,-0.016709274,-0.06367288,0.21532385,0.052613128,0.11633664,-0.2706845,0.3765288,0.04898613,0.40192556,0.12588933,0.16805215,-0.6775936,-0.5033833,0.22317496,1.0340146,0.23227696,0.2425681,-0.19467871,-0.2001454,-0.51404345,-0.22910157,0.19115141,0.58261836,0.56643516,0.012772853,0.13414223,0.39115557,0.13770285,0.03266234,-0.14608575,-0.21627541,-0.09845364,0.10834283,0.6106583,0.74783766,-0.11736312,0.73821,-0.019553477,0.23143668,-0.36175057,-0.2811013,0.5459305,0.77308834,-0.11079035,-0.08780516,0.5534067,0.46727237,-0.47896242,0.46471533,-0.4584783,-0.5336707,0.42356825,-0.17508522,-0.2949184,0.19569822,-0.2356875,0.13044871,-0.88439333,0.29530632,-0.12878856,-0.42196503,-0.45494613,-0.02741382,-3.4551861,0.18411514,-0.06637565,-0.1967796,-0.01846106,-0.036436476,-0.10680425,-0.5523697,-0.2988202,0.11362324,0.080921456,0.8537186,-0.13768137,0.20896387,-0.24911317,-0.55725557,-0.27914795,0.07075504,-0.045120254,0.4711917,0.14506924,-0.4332304,-0.008368629,-0.19654484,-0.2795033,0.062615596,-0.6872957,-0.5247531,-0.19674549,-0.5703967,-0.53558797,0.7765054,-0.79671234,-0.031656247,-0.09876998,-0.040286746,-0.032178517,0.58539534,0.22694404,-0.09766505,0.10407659,-0.050351955,0.039142095,-0.3384231,0.39325827,0.061204474,0.35453188,0.59197223,-0.03582079,0.33848554,0.63864946,0.6289623,-0.11616719,0.76056087,0.33144206,-0.18494834,0.2647715,-0.38327146,-0.1399117,-0.48561326,-0.2736966,-0.21613792,-0.45296448,-0.44950682,0.048167776,-0.20796867,-0.7506976,0.5999118,-0.016695078,0.2574869,0.017302442,0.44224972,0.436632,-0.26023933,-0.103305124,-0.06483955,-0.031317066,-0.5088784,-0.37756258,-0.5433318,-0.46662372,0.38764256,0.67421216,-0.31913012,-0.062846355,0.22528657,-0.04278906,-0.114689335,-0.017253641,0.0014956177,0.05971422,0.39502275,-0.14462891,-0.6146989,0.5047269,-0.2826024,-0.13084629,-0.52900666,0.29730096,0.6073068,-0.82143295,0.42703447,0.34984216,0.059041403,-0.006636369,-0.21889582,-0.29981634,-0.13070314,-0.01799582,0.10927341,0.10629623,-1.0161146,0.3472758,0.35619402,-0.3488059,-0.7390477,0.5101688,-0.08156507,-0.20618281,-0.28307953,0.41188645,0.3714981,0.010835031,-0.2680061,0.119319916,-0.714193,0.20942731,-0.037104093,-0.013084051,0.54933137,-0.24336267,-0.116132304,-0.7104326,0.14828865,-0.32114553,-0.43822104,0.3017463,0.24128565,0.040961098,0.48463017,0.124120116,0.12818244,-0.46877342,0.021028036,0.010352311,-0.025250817,0.1585871,0.36304814,0.6946566,-0.43417415,0.5851859,-0.049894944,0.11415968,-1.24692915e-05,-0.0056295274,0.30408484,0.16628177,0.37148827,0.1142238,-0.5408026,0.19204596,0.6979744,0.22890782,0.41596764,0.06000172,-0.06163317,0.07308824,0.15610267,0.2949069,0.20376721,-0.5752264,0.14150189,-0.41498417,0.0933609,0.5276811,0.122435644,0.2585078,-0.024514556,-0.32827112,0.05633559,0.2980025,0.06539793,-1.0347188,0.42399865,0.15872595,0.67001283,0.35238153,0.028037941,0.18267992,0.6845647,-0.16952267,0.34674612,0.27755818,-0.15258236,-0.4503684,0.645558,-0.74084395,0.6028216,-0.1359859,-0.15473412,0.024675477,-0.11497768,0.34452468,0.739395,-0.1132368,0.041030053,0.15020753,-0.31230396,-0.022895742,-0.40238434,0.28750053,-0.72846556,-0.14321437,0.6771579,0.59487355,0.23793884,-0.17118141,0.069999285,0.029435555,-0.12752953,0.151593,-0.029819733,0.3405835,0.15760976,-0.7372457,-0.06497922,0.6904843,0.17741151,0.2237761,0.20002136,0.0047550797,0.34057644,-0.1473591,-0.15289685,-0.08419469,-0.7320617,0.07443381,-0.2940806,-0.5409044,0.52223814,-0.0037678003,0.33746552,0.3022736,0.09874064,-0.1670855,0.84598476,0.55179715,0.6709548,0.05029722,-0.26361778,-0.39984024,0.4806254,0.14098345,-0.15536436,-0.17360938,-0.24948025,-0.10292001,-0.51257855,0.25262377,-0.012696227,-0.25368953,-0.25133356,-0.005672296,0.07959471,0.58964145,0.19702668,-0.026887637,-0.17953187,-0.2896738,-0.15310663,0.091426946,-0.18110359,0.29508582,0.13053527,-0.2599817,-0.1818609,-0.27675578,-0.2278771,0.025562376,-0.24021511,0.30186814,0.2088217,0.2138265,-0.15285489,0.045792174,0.060733687,0.4358148,-0.03421101,-0.18743765,-0.21151015,-0.039822906,-0.4752651,-0.07694025,-0.063405596,0.18505815,0.3996441,-0.35368335,0.68256533,-0.12241123,1.0914605,0.1120054,-0.2581915,0.25286758,0.330703,0.030327965,-0.14953312,-0.4316427,1.1623213,0.42928308,-0.14928854,-0.23290884,-0.27902746,-0.19905517,0.28729516,-0.36126572,-0.52611506,0.08011012,-0.63341403,-0.28099066,0.20481852,0.19409415,0.27622908,-0.11095697,0.12545553,0.48365515,0.09555725,0.2093682,-0.4461349,-0.24241838,0.35542536,0.69744235,0.04215785,0.2761226,-0.2706264,0.46251068,-0.7551004,0.1301937,-0.4024642,0.18323596,-0.5916201,-0.496404,0.23921311,0.42443413,0.5039422,-0.030328596,-0.34791434,-0.2575243,0.33069235,0.110831186,0.2220231,0.42260146,-0.22480397,-0.1943104,-0.23610303,0.302028,1.0110028,-0.2334847,-0.29205373,0.5677914,-0.24656133,-0.6058444,0.50201035,-0.46906558,0.24767935,-0.07917818,-0.15677896,-0.5170865,0.14070329,0.17943123,0.09215893,-0.13567582,-0.46518594,0.100175306,0.2627023,-0.21095824,-0.35366416,-0.39319173,0.1336445,0.6285859,-0.21166237,-0.32518202,0.18930969,0.26184395,-0.21557252,-0.4288383,-0.15850383,-0.36396402,0.25543875,0.055475898,-0.33950546,-0.09218129,0.03746759,-0.4709975,0.14456932,0.01677283,-0.37277693,0.19947056,-0.3786428,0.11037654,0.94358426,-0.106517576,0.2776162,-0.3535836,-0.5233058,-0.7849141,-0.4035066,0.485516,-0.03485591,-0.032016467,-0.59153795,-0.018055404,-0.07135175,-0.4546401,-0.06062017,-0.46112648,0.30913225,0.121481776,0.35373825,0.018521184,-1.0106684,0.0756845,0.16209626,-0.16110262,-0.8200102,0.30743235,-0.24857359,1.1966503,0.037949722,-0.12735327,0.70783556,-0.38810536,-0.15784839,-0.31864804,-0.009338307,-0.48739845,0.061951526,970 +991,0.6667027,-0.39776924,-0.48975402,-0.41191292,-0.5178265,0.22602181,-0.07271506,0.38303798,0.35669532,-0.5957305,-0.03581663,-0.2611118,-0.05647871,0.3145047,-0.43973055,-0.96061647,-0.120224975,0.032547846,-0.34911457,0.16001162,-0.5953106,0.20305459,0.1925595,0.43027562,-0.081300035,0.1961193,0.44323173,-0.030606296,0.041525256,-0.32959837,-0.15654035,-0.14513025,-0.84354514,0.4206562,-0.115329266,-0.44556838,0.26582393,-0.6565312,-0.17637399,-0.66508853,0.48017102,-0.8001267,0.812819,0.043581612,-0.16830638,-0.044623185,0.18545981,0.057929624,-0.051601768,0.3039526,0.087654404,-0.23930474,-0.018787872,-0.21457128,-0.3852597,-0.7117806,-0.85205925,0.014013764,-0.60402983,-0.26315364,-0.34126526,0.3592284,-0.34490854,0.041235182,-0.093630835,0.72316116,-0.2639476,-0.22695665,0.15087946,-0.20568177,0.2822231,-0.47998208,-0.3566982,-0.021884883,-0.10086228,0.04140424,-0.2380079,0.21110144,0.18970372,0.51056516,0.12684567,-0.38253748,-0.1223158,-0.00058474543,-0.15966763,0.67075735,-0.27525905,-0.46885738,-0.28867695,0.042077113,0.23870406,0.19684154,0.053998698,-0.15840176,0.31339744,0.2458839,-0.4592971,0.6290281,0.5466916,-0.56538284,-0.22435017,0.0041858973,0.18029724,-0.30877095,-0.008784538,-0.030297631,0.056550987,-0.50062585,-0.3872599,0.3615334,-0.23357102,0.60302514,-0.24729152,0.23060784,0.7682781,-0.41259775,0.024802392,0.007522419,0.042459436,0.021647895,-0.20506163,-0.36270434,0.29972464,-0.57678616,-0.20447683,-0.6349487,1.1470968,0.09002385,-0.65294677,0.2927374,-0.6313659,0.02160416,0.011060724,0.7030152,0.44482622,0.48484507,0.26973432,0.81166697,-0.37182075,-0.13372959,0.054320145,-0.23380156,0.24018416,-0.21449924,0.44187203,-0.19147739,-0.060760707,-0.00030167104,0.055887986,-0.09388161,0.7541271,-0.48795882,0.09236531,0.19349849,0.90411454,-0.3924719,-0.01785689,0.57320166,1.2911866,1.0240481,0.15569848,1.5358714,0.13109271,-0.26947504,0.12443614,-0.17330953,-0.34222037,0.43663877,0.5167223,0.50295514,0.37015432,0.102927364,0.073299594,0.51166815,-0.4929436,-0.14812584,-0.022173706,0.2542855,-0.035325143,-0.17903732,-0.6124713,-0.42133632,0.30715942,0.1413741,0.16986904,0.25843105,-0.3866362,0.25586545,0.078718886,1.1027415,0.054627694,0.20786855,-0.009396523,0.42600375,0.004834929,0.13153347,0.11520424,0.10432373,0.11844784,0.1617766,-0.6064558,-0.00926668,-0.35994723,-0.3338499,-0.2952761,-0.35242206,-0.16311961,-0.25260273,-0.5171844,-0.19338365,-0.13379331,-0.358082,0.22691989,-1.9249226,-0.35954022,-0.024887526,0.34999096,-0.25446832,-0.4316276,-0.15025152,-0.5835322,0.30308658,0.48768607,0.30784065,-0.6687318,0.5905949,0.40635028,-0.35129172,-0.010643935,-0.7631765,-0.013653303,-0.2622373,0.4725322,0.07597181,-0.5082326,-0.54769313,0.4164731,0.7975458,0.2475626,-0.14769077,0.14257649,0.5739082,-0.110667706,0.75888026,0.10606809,0.4655053,-0.338837,-0.088945605,0.32401136,-0.58106124,0.092031226,-0.03497969,0.16893059,0.46555632,-0.76018393,-1.1095159,-0.81524485,-0.5662829,1.1930001,-0.35397297,-0.31785065,0.28710896,0.061912227,-0.50315845,-0.109814525,0.45415202,-0.2994414,0.19270954,-0.69019705,0.07384587,-0.07834278,0.23413654,0.0193698,0.2242574,-0.45332655,0.80538046,-0.2988307,0.3645967,0.09221788,0.2446026,-0.4371058,-0.51234686,0.1947746,1.2476265,0.5232304,0.24762528,-0.21716805,-0.041977856,-0.17303695,0.1231281,-0.059600033,0.63360125,1.0057989,0.1423082,-0.11318581,0.31023008,-0.3707901,0.042253215,-0.035956483,-0.47161865,-0.18558629,0.15945786,0.8490733,0.3949241,-0.22301622,0.12883231,-0.22348776,0.3959525,-0.47376508,-0.20922568,0.37237653,1.1201495,-0.01940011,-0.1560178,0.8302969,0.5541757,-0.6356595,0.5264236,-0.815193,-0.49611846,0.4366354,-0.043022808,-0.5332364,-0.12860234,-0.38696232,0.10344406,-0.9567593,0.4209692,-0.06995553,-0.6302382,-0.55147713,-0.52495545,-3.8877006,0.3227966,-0.15503258,-0.03794206,-0.02830186,-0.0782983,0.41460246,-0.54824644,-0.554946,-0.07196511,-0.08673867,0.5077756,0.15681416,0.058203258,-0.11629237,-0.3937826,-0.3804082,0.2811417,0.091684446,0.07642,0.08985411,-0.3605985,0.3025652,-0.47075063,-0.52599084,0.13114317,-0.44937125,-0.67285395,-0.11278012,-0.5131907,-0.42862573,0.9979205,-0.09146129,0.11753132,-0.23560306,0.05397891,-0.11622274,0.40335575,-0.041207325,0.15275341,-0.09082079,-0.22004554,-0.052627433,-0.32389703,0.35597867,0.08535623,0.617622,0.48906708,-0.23943193,0.06655951,0.68901813,0.5245827,0.17523529,0.8957368,-0.16255091,0.031594805,0.28586602,-0.21272412,-0.24362418,-0.73637116,-0.3253425,0.10580482,-0.45726854,-0.21931484,0.04580765,-0.38007194,-0.62689996,0.43353352,-0.15221024,0.11705641,-0.05717994,0.5500215,0.32071114,-0.11983297,0.045752812,-0.066379234,-0.30317348,-0.41927043,-0.44501644,-0.71740264,-0.3411482,0.15753475,1.155399,-0.016009817,-0.28273502,0.023743004,-0.022740161,0.16416936,0.10897647,0.10765655,0.006269574,0.48926944,-0.14906749,-0.8990024,0.27772194,-0.13113053,0.05433333,-0.39094493,-0.05634784,0.88126576,-0.8298413,0.68470925,0.36233497,0.51676494,-0.006969446,-0.33118984,-0.19296975,0.2618584,-0.16050193,0.4791345,0.11052289,-0.7226413,0.5265022,0.012769906,-0.0915872,-0.71193177,0.38118047,-0.0966007,-0.32562977,-0.36394674,0.54204696,0.31413382,0.040697575,-0.22418837,0.3681127,-0.67492944,0.19557819,0.26178488,0.3276425,0.43687448,-0.26129696,-0.120682165,-0.748978,-0.3695508,-0.55075395,-0.39374068,0.08691139,-0.03199511,0.0050603747,0.45777887,0.15771757,0.5139382,-0.30864826,0.1779329,0.06257684,-0.48938742,0.5252514,0.5518652,0.39492172,-0.32649344,0.5505096,0.11556437,0.17098406,-0.44175816,-0.0032492399,0.4122436,0.2217898,0.15702431,-0.05771617,-0.26589033,0.42378289,0.8383724,0.17543377,0.45832175,0.41753173,0.013919769,0.48037797,-0.03345124,-0.06926891,0.028045485,-0.57249236,-0.12051655,0.17334864,-0.09908373,0.4405387,-0.11577995,0.28089148,-0.04510647,-0.038375746,0.22567204,0.44649142,-0.4571566,-1.3183196,0.19514646,0.18781178,0.6408335,0.6196645,-0.046087,-0.06836055,0.44652653,-0.30244213,-0.07638734,0.5810203,0.3256677,-0.19532773,0.8369422,-0.32994628,0.4156769,-0.29769453,0.10632358,-0.2781722,0.09948079,0.4409186,0.9340211,-0.043289326,-0.066117376,-0.15200202,-0.16318682,0.18174222,-0.47120804,0.26166204,-0.52998483,-0.12988655,0.71885186,0.24259798,0.37901023,-0.2249271,-0.06824557,0.07343595,-0.15124185,0.3517774,-0.04479482,-0.39956924,-0.054880477,-0.90204203,-0.14566998,0.65389884,0.3199447,0.13534331,0.21655238,-0.27417582,0.08027084,-0.0044631124,-0.20325765,0.074223354,-0.7554449,-0.18238619,-0.46048746,-0.4932185,0.27824697,-0.3640935,0.09199037,0.28265095,0.20177618,-0.2433575,-0.2406116,0.5610686,0.5336639,0.20011194,-0.41550368,-0.3597579,0.0040504546,0.0070982156,-0.500538,0.027935114,-0.27452374,0.3856048,-0.69612896,0.5127286,-0.14516039,-0.3861175,-0.0122513715,-0.08787312,-0.04852407,0.5097421,-0.36845288,0.08560197,0.054647736,0.08980747,0.0049582245,-0.003433609,-0.30156508,0.23087266,-0.3410284,-0.20419244,0.007179439,-0.27286035,0.09192475,0.6621182,0.41905302,0.080686815,0.3708229,-0.08309467,-0.34259278,0.037540473,-0.43888584,0.56548274,0.08113097,0.003452158,-0.3184776,-0.22590785,-0.12727988,0.41034502,0.051485814,-0.07117024,-0.13010284,-0.7023171,1.1334534,0.12548852,1.2717263,0.032851376,-0.27533287,-0.114831924,0.6866422,-0.11367919,0.0990867,-0.48311132,1.1843504,0.56936336,-0.36622232,-0.45868483,-0.65874225,-0.12784985,0.17294115,-0.36536166,-0.27672583,-0.37343425,-1.0185537,-0.18994056,0.285927,0.51656145,0.10791765,-0.018081272,0.28943905,0.3115558,0.08575277,0.72458047,-0.66721404,0.016026998,0.33862716,0.24926576,0.25789404,0.32235432,-0.2488431,0.2059128,-0.8468009,0.35493702,-0.40541905,-0.009097236,-0.017539626,-0.48858556,0.3079081,0.18580991,0.27489215,-0.18901713,-0.28230175,-0.058350027,0.68262756,0.12975922,0.2542534,0.84409666,-0.23780577,-0.13435987,-0.0882872,0.5255311,1.6788113,0.2317841,0.18029141,0.07455216,-0.48868093,-0.7338333,0.2429409,-0.5536138,-0.1904336,0.08857324,-0.4766704,-0.41824594,0.27240863,0.3852759,-0.1262381,0.20946357,-0.24116698,-0.44189626,0.64460385,-0.4429199,-0.28372318,0.08879089,0.28555623,0.7479416,-0.31117803,-0.05586788,-0.17437407,0.6350311,-0.2905258,-0.6380051,-0.18066773,-0.3614357,0.60939306,-0.019691253,-0.38706693,0.0324261,-0.046803214,-0.48232883,0.045155585,0.46525088,-0.40299425,0.014240821,-0.36643457,-0.20036976,0.8492633,0.30857855,0.04299667,-0.75335616,-0.40460953,-1.1284909,-0.33168417,0.13880807,0.083248675,-0.10328649,-0.3965779,-0.25112748,-0.13269022,-0.086311884,0.124648556,-0.55402786,0.064657494,0.056325376,0.7261652,0.017734628,-0.86866856,0.18033953,0.21564963,-0.13876657,-0.4703072,0.64327,-0.2691483,0.5928393,0.05496446,-0.0014263391,-0.10568537,-0.69280994,0.3205815,-0.35949963,-0.17506835,-0.8816902,0.128867,991 +992,0.66166264,-0.43905726,-0.6052342,-0.09265026,-0.18846497,0.28831106,-0.26524162,0.5187489,0.20000248,-0.6958007,-0.32140446,0.013938576,-0.1229528,0.31272423,-0.30913246,-0.44093233,-0.14865316,0.08547083,-0.685799,0.701931,-0.19157322,0.1987866,0.03304199,0.34213176,0.4247454,0.24469236,0.17582288,0.062093545,-0.04486977,-0.3371398,-0.04940536,-0.29324418,-0.65918595,0.36940214,-0.4344473,-0.39297396,-0.16669051,-0.7468637,-0.401897,-0.8680693,0.35995084,-1.0797526,0.6940479,-0.065985635,-0.22251293,0.07717077,0.121524855,0.29131833,0.0673771,-0.012936413,0.24284144,-0.06981921,-0.0028288842,-0.09947636,-0.2645848,-0.2663835,-0.7269204,-0.10457675,-0.44198352,0.07176799,-0.11927404,0.09650359,-0.30195034,0.03934569,-0.17123757,0.5257828,-0.39157262,-0.04269699,0.13516736,-0.15437213,0.43644905,-0.698786,-0.27678415,-0.04364807,0.4393654,-0.18415049,-0.057200294,0.21667814,0.010450035,0.3477835,0.10985939,-0.19928423,-0.3346598,0.021861427,0.14266375,0.46064416,0.037748348,-0.16714227,-0.30362636,-0.115506604,0.68815964,0.3564877,0.13098195,-0.37518263,-0.006075026,-0.3289057,-0.10277816,0.65473783,0.6228625,-0.086783424,-0.08669892,0.4047196,0.68581355,0.35116237,-0.1150054,-0.030875802,0.0008890495,-0.39190835,-0.20554395,0.42887902,-0.1503578,0.4232622,-0.120318696,0.24797495,0.4006711,-0.19520581,-0.013293299,0.33081517,0.18503815,-0.28114194,-0.004545465,-0.45446473,0.32599124,-0.5330276,0.17965873,-0.46932077,0.7588485,0.091152385,-0.9385107,0.26642495,-0.5832691,0.075034045,0.20181918,0.5211155,0.68561566,0.5439318,0.030936662,0.9106263,-0.28773293,0.095002666,-0.13320166,-0.22735457,-0.015228438,-0.18082812,0.104725495,-0.5004972,-0.2724505,-0.024597203,-0.05085229,-0.21730156,0.37718698,-0.38577282,-0.4125883,-0.02847394,0.6443995,-0.2522911,0.16840021,0.95100576,1.1309191,0.9269148,0.11244647,1.281567,-0.10341612,-0.27550915,-0.19472705,-0.16755685,-0.87008154,0.4285615,0.31015188,-0.32874078,0.7717148,0.073299125,0.15293176,0.1304463,-0.521423,0.09984903,-0.09128497,0.1729987,-0.24257293,0.11687976,-0.54713,-0.45264387,0.007622838,0.13808343,0.2762645,0.2090543,-0.2512135,0.43176222,0.32912812,1.3145926,-0.36409396,0.22100517,0.12619765,0.43272185,0.10349462,-0.16888115,-0.26657835,0.1515481,0.4785379,0.09554714,-0.5223533,0.10795655,-0.121272825,-0.26416948,-0.13744889,-0.39117506,-0.15682188,-0.1639045,-0.18789022,-0.079004504,-0.27736652,-0.7565898,0.24809685,-2.4704108,-0.15481874,-0.15950415,0.40146118,-0.49920464,-0.28072724,-0.16544336,-0.5672564,0.48047733,0.24032691,0.46899194,-0.6161157,0.35044274,0.66263217,-0.58454776,0.07439085,-0.59793216,-0.1080729,-0.0025948018,0.4511841,-0.011551207,-0.10618514,0.07094289,0.4096643,0.38719052,0.29993922,0.099609375,0.46002093,0.42732725,0.04577586,0.5162869,-0.10584577,0.40407056,-0.48468548,0.0018681601,0.34738332,-0.48011866,0.12324731,-0.2619319,0.22022429,0.5486309,-0.6750274,-0.45457926,-0.6303172,-0.31060338,1.3427039,-0.3739241,-0.54965746,0.014967266,-0.20722571,-0.32425177,-0.08282907,0.6067168,-0.36810392,0.073105775,-0.75810784,-0.38299438,-0.2175239,0.35326132,-0.06628455,0.14514004,-0.77709013,0.69399804,-0.05522763,0.62444144,0.32411218,0.27435362,-0.27743426,-0.49866533,0.28747043,0.977132,0.53522146,0.064223304,-0.27271515,0.007824814,-0.4142694,-0.043162882,0.061784625,0.6789015,0.6668886,-0.19995423,-0.050736587,0.4281335,-0.0999581,0.33044544,-0.063149214,-0.40468273,-0.46975765,-0.09856184,0.6239008,0.5652459,0.010597503,0.27655464,-0.13722274,0.2507549,-0.36356756,-0.3292231,0.675162,0.7432084,-0.17174128,-0.28184095,0.6713022,0.5479496,-0.26444504,0.57771426,-0.6829409,-0.34742147,0.29055625,0.022846157,-0.61901647,0.23055954,-0.25157598,0.29839548,-0.9127817,0.21054327,-0.42114776,-0.48048234,-0.52500576,0.06718313,-2.0878968,0.14700468,-0.12678818,-0.35181093,-0.35033664,-0.29888123,0.1572409,-0.6048646,-0.8104738,0.2798741,-0.08706047,0.7927637,-0.08078467,0.07206604,-0.13684082,-0.44890085,-0.4955542,0.19952507,0.06100591,0.3844537,-0.12613514,-0.2802712,-0.09939269,-0.09916212,-0.37061954,-0.03196333,-0.5720914,-0.3667887,-0.20706244,-0.6675687,-0.37562996,0.62393534,-0.12516592,-0.013084319,-0.19048227,0.007913893,0.04418995,0.4638227,-0.06606686,0.28537565,0.2590149,-0.28268808,0.06556736,-0.12707938,0.38111883,0.18409558,0.23095004,0.41799498,-0.41203722,0.34879938,0.41634983,0.8114077,-0.072843835,0.8602109,0.23481897,-0.104405805,0.35384703,-0.3085001,-0.4782055,-0.5027281,-0.049498785,0.21686044,-0.3841023,-0.43794426,-0.21614878,-0.24192336,-0.91649187,0.4377432,0.2226009,0.5258926,-0.024551356,0.13217938,0.49323636,-0.03142901,0.053925622,-0.00844084,-0.2225655,-0.43208537,-0.21616678,-0.70602095,-0.33862203,0.054510463,0.84715205,-0.091122285,0.21521664,0.29956573,-0.3570351,0.4174296,0.03728026,0.0642758,-0.054050278,0.3057058,0.21078233,-0.48098612,0.45695096,0.15626444,-0.11741636,-0.46518523,0.25678188,0.9162982,-0.50634754,0.40091237,0.25267485,-0.10631974,-0.71336573,-0.5298388,0.10931133,0.009850049,-0.07893242,0.32450065,0.38482746,-0.59169877,0.28465325,0.11771176,0.037228465,-0.7522877,0.67238295,0.012695776,-0.14879715,-0.12774917,0.59777683,-0.015801072,-0.04456325,0.0348942,0.16906996,-0.305636,0.2428166,0.17630407,0.004952973,0.34770894,-0.11515812,-0.17620333,-0.7973487,0.2462533,-0.78715706,-0.16910365,0.527073,0.06485429,0.0043833377,0.18788962,0.1794242,0.3629048,-0.3355391,0.2685631,0.035801377,-0.20231406,0.45580617,0.41480976,0.5287514,-0.4884122,0.47498608,0.10877703,-0.021510303,0.06885572,0.14744952,0.43018237,0.16325662,0.2431953,0.03845657,-0.22135803,0.118329905,0.47949442,0.30120865,0.33847532,0.23834357,-0.022995522,0.11305752,0.10833498,0.4527811,-0.28407854,-0.7903619,0.022503257,-0.035225984,-0.104141615,0.265548,-0.026106268,0.1856423,-0.17214063,-0.38123688,-0.07560634,0.17049168,-0.34592617,-1.4952619,0.3179761,0.13838659,0.7647244,0.39637935,-0.018302932,0.07473327,0.5809663,-0.1627912,0.21781917,0.31681257,0.13786218,-0.48829108,0.5083455,-0.4963625,0.44003925,0.13119265,-0.045164682,-0.027799796,-0.13767758,0.39196077,0.7857641,-0.15559027,0.0029275685,-0.22903499,-0.24822387,0.06642981,-0.4066801,0.28556228,-0.5288402,-0.42080402,0.60783756,0.3593406,0.53768235,-0.07251498,0.0041098474,-0.1370976,-0.081184946,0.3437666,0.10825884,-0.034021966,0.050613426,-0.7198932,-0.11231766,0.28850633,-0.015518224,0.07370058,-0.026085097,-0.17706116,0.017560259,0.0045009553,0.09659323,-0.022594359,-1.1304651,0.06592016,-0.3736895,-0.20367172,0.03548334,-0.3135037,0.15183334,0.18715768,-0.16561708,-0.21332045,0.12537923,0.3483165,0.7057503,0.09353855,-0.19988477,-0.40284324,0.22521563,0.13512579,-0.28775397,0.13967682,-0.018939376,0.09459303,-0.4716429,0.24546047,0.059551775,-0.51361513,0.19599423,-0.16861928,0.014470262,0.80172795,-0.0953051,-0.020001601,-0.026640683,-0.057659052,-0.22446966,-0.2049882,-0.23690858,0.102831244,0.32182983,0.004868096,-0.07841999,0.06449177,-0.17075051,0.275748,0.36734223,0.5901536,0.5969374,0.07699593,-0.620727,0.07133659,0.17078848,0.4343834,0.19109218,-0.12243547,-0.3890132,-0.4416915,-0.4650902,0.5329238,-0.11313865,0.20485592,0.10571854,-0.028193105,0.67333347,0.050835203,0.9507904,0.047911488,-0.30411947,0.0014045,0.5626393,-0.07295178,-0.3287595,-0.4383226,1.1264608,0.48370814,-0.24854684,-0.053441633,-0.37153408,-0.14173767,0.07343421,-0.28197172,-0.12903732,0.020011375,-0.6069977,-0.25750026,0.19351871,0.22851832,-0.09705434,-0.20791188,-0.08960671,0.52519697,0.10548429,0.5024853,-0.51265633,-0.07639821,0.36597276,-0.13154514,0.1309512,0.26522082,-0.5382803,0.17770998,-0.7166911,0.22031322,-0.34005585,0.19734046,-0.14953366,-0.42110515,0.1937951,0.04669714,0.51443064,-0.46475387,-0.55692774,-0.17970341,0.41601866,0.10872233,0.17815922,0.5927369,-0.17945682,0.22629806,0.0701633,0.47766042,1.0049372,-0.03131751,0.26345944,0.24274102,-0.49023324,-0.74829936,0.016696783,-0.3159749,0.4567728,-0.19544958,-0.2871253,-0.41298074,0.25806805,0.13697858,0.043355115,0.07852618,-0.7612727,-0.36406586,0.31283173,-0.24792945,-0.18334684,-0.405006,-0.12492429,0.48935977,-0.08639847,-0.43534058,-0.086647436,0.17421757,-0.12313707,-0.47417125,-0.1894739,-0.1871753,0.07391742,-0.09821047,-0.42313272,-0.1278185,-0.016205799,-0.41115847,0.064016186,-0.136251,-0.38598794,-0.06544376,-0.17759626,-0.162786,0.8478735,-0.26457727,-0.014297152,-0.30857,-0.49381813,-0.8094263,-0.42829123,0.013556624,0.085150264,-0.0125121595,-0.6914198,0.10099103,-0.418711,0.16659507,0.04882874,-0.3479873,0.39839706,0.23614898,0.63207245,-0.09246204,-0.9035495,0.5021986,0.13379805,-0.15070382,-0.5634321,0.729627,-0.04998662,0.57467353,0.12245921,0.07473238,-0.07440969,-0.83421624,-0.009074444,0.039690457,-0.11056165,-0.7649575,0.33720097,997 +993,0.39756665,0.27731147,-0.78607666,-0.08212136,-0.47397792,0.0643737,-0.38434187,0.015433874,0.40972868,-0.35787094,-0.10491148,0.0065601934,-0.12078697,0.27522588,-0.12174919,-1.0797276,0.093802996,0.14281395,-0.5328403,0.38705003,-0.5165094,0.5372785,0.17836574,0.66937137,-0.031363327,0.41609526,0.36667764,0.08685541,-0.19070475,-0.7058481,-0.1272395,-0.034163754,-0.57891,0.27625903,-0.08235865,-0.45687425,0.060658474,-0.51077294,-0.25281948,-0.610625,0.45349038,-0.7087534,0.5884344,0.063107684,-0.2613454,-0.42770597,0.5557721,0.22943984,0.06989898,-0.038619194,0.41655982,-0.7134083,0.05868584,-0.60086304,-0.5784041,-0.7303596,-0.4888862,0.038439017,-0.5879333,-0.38121355,-0.23515317,0.32024425,-0.22212774,-0.09334389,-0.18315399,0.60662025,-0.325762,0.18242046,0.15393801,-0.61323714,-0.07184017,-0.6293938,-0.2493234,0.034586623,0.33540595,0.110724114,-0.28869092,0.21635702,0.017105414,0.38879156,-0.032956976,-0.44437426,-0.49967474,-0.0990732,0.028166719,0.58779544,-0.34503564,0.09192559,-0.28306735,-0.026212467,0.7337361,0.3003205,0.09226999,-0.18913095,0.10278647,-0.24667501,0.04396734,0.79019696,0.43239552,-0.38328907,-0.045283,0.20253496,0.17014685,0.2945252,-0.29356372,-0.122157656,-0.1786784,-0.48543262,-0.11498531,0.39366037,-0.05458888,0.29339096,-0.0975239,0.09967011,0.82466006,-0.2731552,-0.13650991,0.22171512,0.11248937,0.51308906,-0.024505382,-0.051088855,0.58198905,-0.41570267,-0.17880245,-0.35261896,0.7376846,-0.11370405,-0.6218419,0.18361354,-0.6526778,0.07748392,0.050828025,0.6858849,0.510802,0.51113725,0.14851822,0.8162026,-0.28942347,0.24289761,0.23301476,0.015516692,-0.10049742,-0.1491425,0.09785321,-0.44642618,-0.0929553,-0.0032783416,0.03435472,0.48951107,0.4909704,-0.5004966,-0.30814442,0.19186811,1.086699,-0.18079121,-0.14467455,0.78197604,1.4016739,1.0015036,-0.23563512,0.94348377,-0.039416656,-0.19039512,-0.7035248,-0.083616085,-0.29680017,0.1541267,0.2131444,-0.35417998,0.57953084,-0.14293998,0.08951315,0.16420904,-0.12333766,-0.2647109,0.14428028,0.27268493,0.06745389,0.026619239,-0.724828,-0.55767035,0.27738452,-0.14730878,0.45871434,0.6350984,-0.4727068,0.74176455,-0.3262193,0.66726047,-0.024223315,0.34703028,0.17565928,0.41966882,0.15329748,-0.10158054,0.046712533,0.21560329,-0.18370311,0.19654962,-0.3783007,0.016664615,-0.5372001,-0.29281956,-0.303668,-0.35459366,-0.36449188,0.07027421,-0.15487462,-0.41713634,0.029529534,-0.2204793,0.2141408,-2.2448685,-0.011656238,-0.12099758,0.49479347,-0.14108217,-0.42059472,-0.22561598,-0.32806224,0.33869383,0.22167632,0.7559386,-0.35912845,0.005596724,0.33401075,-0.56198967,-0.35493046,-0.5590951,0.27712318,0.111937575,0.6837106,-0.3149954,-0.28657576,-0.064982295,0.1624995,0.71484774,0.30254883,-0.03106561,0.3056937,0.6166683,-0.30668414,0.34471425,0.08949745,0.61427635,-0.48515898,-0.44540945,0.38589042,-0.74362206,0.53807443,0.009062956,0.05560206,0.4232045,-0.3042888,-0.9321654,-0.22733273,-0.036000032,1.1570857,-0.2330842,-0.87615466,0.0031322737,0.28814858,-0.35967016,-0.012868378,0.6794202,-0.12486626,0.3557572,-0.4184338,-0.009169953,-0.39751616,0.42496905,-0.08158979,0.07450088,-0.27227658,0.7215774,-0.17518504,0.15739149,0.23875353,0.25117412,-0.79649425,-0.44290555,0.18158752,1.203698,0.37336925,0.14568734,-0.16308793,-0.076185465,-0.09179035,-0.461039,0.16435513,0.8094418,0.7177091,-0.14251763,-0.033096127,0.6023586,-0.2668153,0.052841112,0.06479587,-0.51150954,-0.25829205,0.11870527,0.9582096,0.7143102,0.053023834,0.5992052,0.17904358,0.43532255,-0.31317538,-0.3817607,0.3327773,0.52486134,-0.24980743,-0.44595745,0.71920025,0.34429723,-0.6750702,0.5781633,-0.6766704,-0.733487,0.5768238,0.039311565,-0.6406052,-0.0915551,-0.34165165,0.11137177,-0.6051771,0.6636174,-0.09526406,-0.85771745,-0.4978801,-0.2905622,-1.4484204,0.3172012,-0.42678395,0.037789274,-0.23132092,-0.092072755,-0.0065180194,-0.49038887,-0.59703594,-0.04086657,0.11841917,0.7087403,-0.39549005,0.11292675,-0.22962104,-0.45281267,0.05784158,0.63279927,0.40105045,0.35111856,-0.10618479,-0.0467826,0.2982794,-0.13532332,-0.32862788,-0.24798353,-0.6282324,-0.732758,-0.06477001,-0.7563925,-0.11919979,0.9783589,-0.79645854,0.084720425,-0.4088713,0.30148485,0.17372243,-3.4557448e-05,0.3401991,0.45254612,0.2903267,0.03649278,-0.05665018,-0.24931727,0.28740188,0.18419822,0.63855445,0.46366602,0.23249102,0.21259615,0.27968037,0.8180987,0.3175491,0.8208535,-0.18664037,-0.1076143,0.11109568,-0.44796085,-0.5628538,-0.6458271,-0.27099946,0.2983259,-0.4550299,-0.49910274,-0.14588925,-0.5003481,-0.89694893,0.75536245,0.24821281,0.23177259,-0.2954701,0.623928,0.36509612,-0.3375929,-0.0918506,-0.017449796,-0.07213302,-0.40612432,-0.24992882,-0.74762726,-0.44290555,0.044890437,0.6884725,-0.13196252,0.013792263,0.49259287,-0.22049874,0.013438514,0.07775593,0.07004734,-0.1382726,0.31756642,0.25713432,-0.45333713,0.2994567,-0.43765712,0.15362503,-0.47350132,0.11467976,0.75111634,-0.5817702,0.5323647,0.66892684,0.110993,-0.410307,-0.674462,-0.25061518,0.2606374,-0.055743296,0.3809172,0.25881276,-0.41754162,0.41816428,-0.022243394,-0.26672694,-0.5662255,0.38016546,0.0053087687,-0.3700253,0.18273842,0.64978844,-0.012740678,-0.15119869,-0.15742654,0.3400499,-0.39489576,0.21151347,0.10332769,-0.095778,0.35944,-0.1903302,-0.6499897,-0.82549274,0.28387964,-0.6671157,-0.43325287,0.41787633,0.08112207,0.11278471,0.34369087,0.20858015,0.44340694,-0.16767073,0.18096942,-0.38980275,-0.31790844,0.69838035,0.3575604,0.7406788,-0.7448201,0.6259326,0.1637319,-0.13503094,0.40053135,-0.0489311,0.56742024,-0.10378325,0.3631036,0.05032232,-0.09370711,-0.22380723,0.31648198,0.2899215,0.31315288,0.18996535,-0.019055042,0.25280118,-0.0111497305,0.08944878,-0.08902796,-0.5842525,-0.043967623,0.09222497,-0.108671404,0.38224703,0.08347164,0.35080406,-0.12874252,-0.033200547,0.39465165,0.17922606,-0.32395124,-1.064888,0.633578,0.3080874,0.63979995,0.033258326,0.2791771,-0.30287138,0.8214821,-0.18942456,-0.2036143,0.39121518,0.16744155,-0.40563756,0.5895618,-0.46164003,0.7726411,-0.30208862,-0.039944906,0.016247451,-0.055062827,0.35159948,1.0049623,-0.20982003,0.091427155,-0.1582021,-0.36693573,-0.22431943,-0.38528836,0.4298179,-0.42190024,-0.4318701,0.8615558,0.11017993,0.29456663,-0.27515405,0.12627941,0.13823026,-0.10367153,0.20847511,-0.06619109,-0.005047911,0.08421431,-0.5677087,-0.10807119,0.4273092,-0.31117058,-0.10378425,0.19120935,0.18309474,0.21228693,0.096841685,-0.10256008,-0.21316713,-0.4915584,0.14381617,-0.5034292,-0.7188088,0.0069800583,-0.4079429,0.120467715,0.16990809,0.04726659,-0.24074653,0.5062134,0.5122059,0.6222694,0.14250077,-0.25270307,-0.41115883,0.119533285,0.10361171,-0.2340748,0.1602919,-0.32592598,0.4935557,-0.5911615,0.4948084,-0.609743,-0.45634657,-0.5397597,-0.38711923,-0.05935702,0.34825653,-0.030107941,-0.10453165,0.3205507,-0.38996607,-0.13847998,-0.11067556,-0.46482384,0.23631126,-0.11726883,-0.4522564,-0.37368283,-0.17955539,-0.48407376,0.10404926,-0.13869946,0.38551474,0.378173,0.20574069,-0.3052882,0.2360379,-0.12801073,0.4966257,0.07239012,0.21523608,-0.29251805,-0.37031898,-0.47654215,1.0137758,-0.054750342,0.12528415,0.21384008,-0.20631537,1.0269027,-0.15406847,1.3147321,0.0059945583,-0.34274173,-0.08033866,0.64921385,-0.08047338,0.0015672842,-0.35126567,1.5639795,0.380495,-0.16312689,0.004263419,-0.55758953,-0.062150173,0.24731046,-0.42207587,-0.41797632,-0.228341,-0.3690035,-0.052292302,0.23316973,0.18752111,0.15838706,-0.2196939,0.13231237,0.29260984,0.31249702,0.14665967,-0.5763614,-0.29295403,0.50368565,0.20459527,-0.19232069,0.15082465,-0.2320367,0.36967564,-0.78055525,0.39801747,-0.7315871,0.23157723,0.015773641,-0.6350033,0.22277771,0.10541018,0.37625155,-0.5364892,-0.08452935,-0.25083074,0.20686984,0.503126,0.15714547,0.6016743,-0.24359639,-0.07815831,-0.11540866,0.5764604,1.5112481,-0.059823718,-0.13779579,0.0574533,-0.3094112,-0.80426353,0.13243651,-0.63433266,-0.32694215,-0.1762482,-0.5236935,-0.2600395,0.19689684,0.013012052,-0.11553572,0.052801184,-0.60770226,-0.05901226,0.10391839,-0.24400115,-0.30612236,-0.2803964,0.36175746,0.73156345,0.028206421,-0.36260697,0.04238091,0.51170015,-0.17490667,-0.6276795,0.3568836,-0.3337813,0.20235175,-0.18218537,-0.38572183,-0.051696308,0.040548906,-0.2694809,0.2839897,0.3892533,-0.26974952,-0.035936147,0.028120093,0.2391351,0.44965082,0.00851904,0.3620493,-0.41055727,-0.6069392,-0.9410538,-0.37138268,-0.3401929,0.08157296,-0.093507186,-0.49440315,-0.38699234,-0.5475285,-0.16751832,0.061952896,-0.5250487,0.16849233,0.15430555,0.59620106,-0.65958595,-1.0770626,0.23968904,0.2563463,-0.36252198,-0.44150767,0.23728459,-0.24978751,0.7060531,0.119367786,-0.16867574,0.24400398,-0.65125585,0.33923706,-0.28081048,-0.2890399,-0.86653507,0.24538289,25 +994,0.57579285,0.39263284,-0.6241644,-0.46179184,-0.50873446,-0.04027979,-0.27067104,0.15748627,0.3711079,-0.37041405,0.09770458,-0.13215324,-0.07449428,0.31293836,-0.24493249,-1.0964175,0.20656958,0.16650735,-0.5325617,0.07808598,-0.44073492,0.51349366,0.10460528,0.56313515,-0.19041902,0.47157633,0.4140873,-0.20561759,0.054047104,-0.42206472,-0.0203025,0.012871299,-0.7337308,0.3874849,0.059697773,-0.23945257,0.06307718,-0.40550447,-0.078235306,-0.48788008,0.2528404,-0.7633672,0.65399265,0.08392179,-0.32752603,-0.5223586,0.35105467,0.1800056,0.07044698,-0.029108904,0.4670955,-0.62778777,-0.11934572,-0.18306941,-0.17307538,-0.8106103,-0.3657483,-0.37014544,-0.62300134,-0.3713863,-0.5383497,0.2756843,-0.47274384,-0.20913237,-0.14658526,0.4141433,-0.5079924,-0.057169292,0.25536057,-0.6738021,0.25628394,-0.40825498,-0.1277581,-0.09153928,0.3330209,-0.081256405,-0.27198157,0.36227125,0.36082304,0.35990313,0.11222887,-0.29013455,-0.14215122,-0.31954664,0.29042217,0.7024331,-0.37025234,-0.21182685,-0.29467005,-0.09448079,0.24462551,0.1221489,0.16995281,-0.4275807,0.24487288,0.10588297,-0.00299916,0.8500166,0.51514304,-0.30876514,0.05845029,0.4159586,0.12911293,0.19837734,-0.14224154,0.39915144,-0.13193876,-0.46229732,-0.25762984,0.053592525,0.023218526,0.40025288,-0.08087497,0.15890795,1.1289351,-0.31019974,-0.05049205,0.12686388,-0.10517331,0.365934,-0.13194078,-0.05784583,0.44722047,-0.58681786,0.05775408,-0.2946383,0.8787167,-0.0139818,-0.79038674,0.31308544,-0.49993473,0.011580007,-0.15072621,0.8896024,0.71403706,0.50304806,0.11746921,1.1801171,-0.5599861,0.23706873,0.3771642,-0.35259682,0.11579479,-0.051433418,0.4673571,-0.42910558,-0.014880139,0.08455389,0.18325353,0.28563812,0.35260856,-0.5443529,-0.31205192,0.1630952,0.91037726,-0.40715513,-0.2120393,0.95773125,1.2484515,0.7533131,0.006349004,0.97315246,0.14602868,-0.26953682,-0.22988752,0.10098382,-0.38412887,0.24759786,0.30702493,0.18693548,0.10601635,0.020852739,0.16641444,0.34499547,-0.34188306,-0.32921445,0.047759183,0.45801437,-0.017956667,-0.40608862,-0.66828114,0.029457608,0.39186805,-0.027080558,0.121831566,0.39216074,-0.3799101,0.40397966,-0.21558481,0.7432883,0.12902345,0.18075234,-0.060736783,0.60339564,0.116050616,-0.3521954,0.14367123,0.08811601,0.11538262,0.028119395,-0.44998196,0.075528204,-0.35344198,-0.5793956,-0.28793138,-0.4817159,-0.20420162,-0.29752403,-0.023368742,-0.16665046,0.093294196,-0.24811918,0.33693266,-2.1673138,-0.18451054,-0.2634863,0.51774323,-0.13315378,-0.21609075,-0.15847342,-0.4125922,0.42652068,0.22546095,0.6616042,-0.405197,0.51319915,0.54502136,-0.56819165,-0.25107855,-0.5861108,0.17378299,-0.017195616,0.43421203,-0.11263561,-0.3727768,-0.05965908,0.33167943,0.8455838,0.45623302,0.0935765,-0.03678753,0.6244301,-0.2075718,0.526811,0.04501239,0.73993236,-0.16225305,-0.22919999,0.17320259,-0.6057161,0.17012517,-0.41443357,0.08477494,0.3479053,-0.330672,-1.2060131,-0.5252574,-0.4425198,1.0448856,-0.44391173,-0.7367007,0.39068332,0.327287,-0.36208034,0.30834442,0.62674016,-0.15779927,0.3596586,-0.53860545,0.17960078,-0.44844946,0.08562132,-0.100354336,0.26252067,-0.5697678,0.78476185,-0.3801741,0.47172785,0.08294442,0.33595717,-0.5771211,-0.26897117,0.18132883,0.9681718,0.49777567,-0.05682183,-0.067549795,-0.050765462,-0.24347371,-0.5642178,0.14879285,1.0582422,0.9355797,-0.03171201,0.03631947,0.35230854,-0.2650443,0.103769414,-0.01164589,-0.63564396,-0.090079695,-0.14423212,0.8399482,0.53826076,-0.03350304,0.55456144,0.08450356,0.12740067,-0.26988202,-0.63000596,0.4056246,0.42551315,-0.18489467,-0.2543242,0.81531626,0.18851279,-0.6178006,0.6282522,-0.66667783,-0.5570177,0.5497945,0.041378524,-0.67505634,-0.15766723,-0.30954015,0.076899946,-0.69133556,0.46128824,-0.14911398,-1.3466865,-0.022820227,-0.32792777,-3.0787992,0.19031426,-0.26892853,-0.0022674368,-0.23991673,-0.18047036,0.2428466,-0.41265473,-0.6692032,0.038860198,-0.035119906,0.7619801,-0.19607629,0.1434018,-0.18475357,-0.279489,-0.05313997,0.5777078,0.012158599,0.2466401,0.056837585,-0.16461343,0.27100176,-0.1789036,-0.5830886,-0.01016687,-0.5209252,-0.85214996,0.07950504,-0.7055326,-0.18467799,1.0181078,-0.68639827,0.06443389,-0.27123967,0.17165099,-0.16022396,0.22899383,0.15144597,0.49890667,0.17788874,0.039720163,-0.24170811,-0.06002128,0.3122683,0.11610893,0.8627029,0.1781525,-0.12135865,0.11111244,0.68666625,0.5566951,0.20679706,1.0986606,-0.12233644,0.049862046,0.13706793,-0.28018463,-0.36619616,-0.68073666,-0.562975,-0.013317453,-0.66778183,-0.4816209,-0.0799602,-0.40300357,-0.9082507,0.3780894,0.29079577,0.39782676,-0.325205,0.11387987,0.20280671,-0.36377886,-0.1837417,-0.036281984,-0.059247177,-0.6223468,-0.07638862,-0.83368725,-0.55590713,-0.015006672,0.79421735,-0.2586211,-0.060942307,0.040797856,-0.25665373,0.17508917,0.068811856,0.23547132,-0.102068216,0.3806692,-0.071736336,-0.83320165,0.30850717,-0.6526064,0.26157096,-0.9144388,0.07278742,0.78582674,-0.54354936,0.66623414,0.5778442,0.28255188,-0.3115414,-0.7233772,-0.27164456,0.14662191,-0.13255882,0.5820904,0.052228026,-0.60219306,0.46955532,0.016144838,-0.17290431,-0.49285418,0.70139277,-0.03891565,-0.04679576,0.3472978,0.5296482,0.13396332,-0.23850553,-0.38179955,0.35931933,-0.648632,0.57722926,0.24142939,-0.0078007644,1.0404968,-0.1588028,-0.5562652,-0.8205823,-0.40438235,-0.8001878,-0.31051928,-0.040398,-0.2346006,-0.040400464,0.42736304,0.3293172,0.39266777,-0.4136237,-0.053284306,-0.3233012,-0.49852085,0.5257313,0.558529,0.61373925,-0.70468193,0.7500071,0.36942276,-0.22807969,0.06390828,0.06270815,0.73328453,0.013833786,0.5015759,0.011222088,0.0074777505,-0.2328963,0.7026419,0.21340401,0.2643752,0.19095014,-0.17007726,0.43167603,0.08952211,0.31397098,0.18671864,-0.6990216,0.0049856603,-0.31557202,-0.05203134,0.5267073,0.41317046,0.40710604,-0.05217061,-0.19259869,0.34588507,0.16243425,-0.2142933,-1.4391541,0.85947156,0.48603976,0.81360704,0.28216106,0.01614184,-0.048271805,0.62145954,0.0042843157,0.08061377,-0.038152907,-0.08102888,-0.28058988,0.5869276,-0.66049784,0.48229223,-0.16200973,0.102007926,0.27498358,0.06618112,0.4541502,1.1898907,-0.09636601,0.11747476,-0.09353235,-0.24952242,0.03722406,-0.24250595,0.18623847,-0.36849737,-0.3144561,0.92870957,0.36320552,0.12703565,-0.12776217,0.049162567,0.1330964,-0.19066885,0.027026024,-0.094106376,-0.32173163,-0.033667445,-0.71255374,-0.3565061,0.5749077,-0.089617014,-0.025057957,0.15820463,-0.16171384,0.42331254,0.12611914,-0.09063937,0.03295754,-0.50869846,-0.113888025,-0.43302807,-0.49250582,-0.0035169125,-0.37478665,0.27029455,0.20673858,0.04212807,-0.007926173,0.3690656,0.3925658,0.5604155,0.27822304,-0.51958686,-0.56003153,-0.23444642,0.26732767,-0.43301338,-0.03289014,-0.46116626,0.230948,-0.6111107,0.5716293,-0.48072544,-0.3349873,0.07334781,-0.28415427,-0.017799335,0.32608417,-0.23838824,-0.10703871,0.28754702,-0.33006388,-0.12605771,0.0808423,-0.49659517,0.11277975,-0.17501378,-0.3547348,-0.14874251,-0.13367067,-0.349346,-0.07258526,-0.050699573,0.11915472,0.36062938,0.17108127,-0.24942255,0.17930113,0.098569624,0.61184394,0.0060473285,0.22950009,0.12889722,-0.4175825,-0.525475,0.59361106,-0.11933812,0.17711255,0.24293727,-0.153138,0.7088328,0.16325861,1.2573098,0.05045565,-0.34423432,0.037948117,0.58303803,-0.093516946,0.05429436,-0.34397012,1.3887826,0.61298996,-0.03539993,0.016826043,-0.83400536,-0.18866628,0.4016071,-0.35417107,-0.5199834,-0.21622702,-0.9629608,-0.101458974,0.1927857,0.13292319,0.13975558,0.046602126,0.029306611,0.32319042,0.31202137,0.19723265,-1.0318229,-0.13818748,0.15637872,0.45569822,-0.05692431,0.067015395,-0.15161173,0.4237901,-0.88394535,0.36060527,-0.54090106,0.061235562,-0.30538908,-0.43283147,0.08590684,0.015182164,0.44498095,-0.09518424,-0.1380284,-0.07687959,0.4630511,0.42362595,0.13153413,0.95591384,-0.17129117,-0.16281933,-0.04899483,0.47325504,1.422895,0.16168065,0.17258963,0.5063843,-0.3310565,-0.6992732,0.1848726,-0.61804557,-0.25669336,-0.15231746,-0.54058343,-0.09186987,0.1822592,-0.12688719,-0.1981079,0.08832199,-0.36893016,-0.30109954,0.208439,-0.28582305,-0.35117352,-0.16190985,0.29064375,0.83133507,-0.18102472,-0.17269225,0.02990136,0.3839536,-0.37374353,-0.94452393,0.20236324,-0.13440578,0.48394755,-0.23916271,-0.57139754,-0.07408657,0.015041782,-0.47926924,0.42844453,0.32091957,-0.22396408,0.21575348,-0.06263876,0.038791075,0.6265319,0.20929578,0.29419383,-0.6862242,-0.5268376,-0.93063015,-0.24649042,-0.41482237,0.15173395,-0.20242566,-0.42799604,-0.25232068,-0.4286128,0.28900862,0.005236202,-0.8413091,0.08809164,0.025491923,0.7686743,-0.2576883,-1.323286,0.09993516,0.33284405,-0.068818465,-0.49363428,0.5271208,-0.15285106,0.86408544,0.19372559,-0.058212537,0.060859993,-0.50933933,0.37486643,-0.21177876,-0.1931147,-0.71045285,0.12275168,26 +995,0.55699563,-0.6950253,-0.67488045,-0.15226059,-0.3026416,-0.12844613,-0.41190624,0.5516479,0.053594403,-0.32936826,-0.39628664,0.011113799,0.06724204,0.6881106,-0.16064517,-0.6782664,-0.19009805,0.07057956,-0.8136681,0.85614884,-0.43238553,0.16600464,-0.010240038,0.5013626,0.39161775,0.18978818,0.45579427,0.12800436,0.248451,-0.2033941,0.25991896,0.106607355,-0.71999955,0.31896168,-0.26314992,-0.6094769,-0.24042463,-0.75794774,0.09987615,-0.884205,0.07895878,-0.9283421,0.38615614,-0.0011434588,-0.4102519,-0.2956701,0.3585497,0.4525355,-0.26524767,-0.00052795146,0.37447673,0.023988105,-0.3604616,0.09762202,0.08914571,-0.40148452,-0.6461557,-0.1910927,-0.7178198,-0.24085575,-0.05331788,0.11919562,-0.322807,0.021280117,-0.28229028,0.31627384,-0.52856594,-0.39206123,0.29339048,0.09017591,0.3912333,-0.711358,-0.18955234,-0.35845575,0.51363546,-0.036761932,-0.41286775,0.286816,0.3660103,0.47034448,0.31502363,-0.29163033,-0.33874738,-0.2669124,0.43066365,0.5169554,0.13373148,-0.35022154,-0.5591947,-0.14798686,0.3396891,0.40313685,0.1517474,-0.48130915,0.032655902,-0.29432705,-0.13539986,0.7154521,0.38433135,-0.26938853,-0.32057285,0.2777964,0.8944461,0.7173362,-0.38832647,0.14689143,0.06623479,-0.59940314,-0.21753147,0.33153474,-0.05687494,0.547868,-0.16173322,0.11604447,0.7139933,0.13360305,-0.11407578,-0.048333935,0.038459398,-0.43834293,-0.40069753,-0.5369895,0.29009566,-0.50742126,0.40957597,-0.31619507,0.7272961,0.15426067,-0.9139335,0.35672247,-0.68407845,0.25614148,-0.011329048,0.59575,0.79840046,0.3554128,0.39915565,0.8606144,0.020472076,0.23759812,-0.11375848,-0.13115498,-0.0819278,-0.44631338,-0.073144995,-0.6599725,0.3315039,-0.39010713,0.1971948,-0.11419389,0.6754955,-0.3850257,-0.32239687,0.18728249,0.53787917,-0.23656909,-0.04258379,0.8549943,1.1117793,1.5539304,0.19754162,1.2585839,0.2086873,-0.25110298,0.08316839,0.00014599826,-0.88667035,0.18325312,0.47905242,0.27221256,0.51380944,-0.2228276,0.059284847,0.57499796,-0.42641538,0.290968,0.17333817,0.38511452,0.10273846,-0.18623513,-0.6639544,-0.2390696,0.08023385,-0.10373202,-0.1520586,0.3424704,-0.08748559,0.34104148,-0.008918153,1.2510338,-0.30720317,0.018468112,0.08366121,0.44744137,0.23519972,-0.37525862,-0.21708538,0.11012917,0.50165963,-0.16627005,-0.8461952,0.27983665,-0.36435002,-0.40206343,-0.070563205,-0.37694004,-0.2862632,-0.13602132,-0.50461173,-0.01430833,-0.02507117,-0.35875526,0.37901673,-2.399098,-0.37386015,-0.40163916,0.18523921,-0.26443753,-0.14457351,-0.22979842,-0.45829624,0.44591337,0.21796146,0.70859957,-0.5790788,0.6444143,0.6247245,-0.70016235,0.006102403,-0.73191494,-0.1879596,-0.011400592,0.5003415,-0.049146313,-0.08472614,0.13668767,0.5296935,0.7939462,0.16084148,0.2642709,0.6488914,0.39312556,-0.018562084,0.7282517,-0.1889047,0.501252,-0.8004592,-0.17136094,0.23188268,-0.35430688,0.5306496,-0.18043776,0.14751299,0.7871266,-0.7667348,-1.1444613,-0.63973385,-0.64249027,1.063975,-0.5201544,-0.40281704,0.30530643,-0.14271706,0.12713245,0.13978454,0.6324241,-0.08219153,0.19573489,-0.64750165,0.006260026,-0.023936847,0.115530305,-0.09110204,-0.037532493,-0.44604662,0.9907609,-0.14681236,0.8303633,0.5519229,0.28470004,-0.17580634,-0.3708503,0.1805533,0.7134441,0.43027574,-0.018741956,-0.4276151,-0.14286363,-0.527288,-0.21280149,0.19153064,0.5703981,0.7691168,-0.28078198,0.24341877,0.20648678,0.05983682,0.089920595,-0.33729568,-0.33320615,-0.20652722,0.09138134,0.43967745,0.7518391,-0.11375186,0.32657456,-0.12977536,0.053769484,-0.13093401,-0.59433293,0.5493158,0.5848122,-0.25765947,0.084664606,0.6048546,0.72714674,-0.41938603,0.72996414,-0.6940274,-0.14115724,0.7663074,0.012115585,-0.36167207,0.19635968,-0.5166787,0.14865144,-1.1482991,0.1551841,-0.7432038,-0.39090002,-0.36819956,-0.0823759,-2.4026058,0.5098779,0.20896322,-0.2185318,-0.46170828,-0.09817477,0.21423185,-0.8835796,-1.2334197,0.28439558,0.0014020404,0.72433025,-0.33384255,-0.037880883,-0.2901051,-0.37692448,-0.1254109,0.40061158,-0.12328974,0.4712811,-0.21739198,-0.47106832,-0.057522163,0.02230876,-0.6060341,0.053459823,-0.6902856,-0.67427504,-0.10218503,-0.72673935,-0.26376092,0.5063166,-0.5643636,-0.09039564,-0.053465813,0.011870629,-0.21349488,0.2868602,0.06858183,0.42379862,0.19351083,-0.044190794,-0.1163498,-0.11130299,0.20997937,0.0193182,0.072526306,0.08449942,-0.22691737,0.27116367,0.7117149,0.89908767,-0.23583671,1.3333703,0.3591998,-0.0862135,0.2731198,-0.29569182,-0.105904736,-0.7583214,-0.27842987,-0.35887253,-0.37907255,-0.9944634,0.18884046,0.06257975,-0.8008177,0.6539552,0.100615144,0.50209755,-0.015664915,0.030789945,0.13471545,-0.18726413,0.063982196,-0.06730571,-0.14166856,-0.50859237,-0.4413498,-0.7249072,-0.54712933,0.004376332,1.0007554,-0.3189061,-0.14864731,-0.025146408,-0.56053066,0.22733876,0.25178927,0.02277506,0.34800196,0.32879755,0.27149218,-0.57900023,0.29303756,0.049127273,-0.1723563,-0.25488666,0.13017851,0.8198087,-0.6105975,0.7250518,0.30961567,-0.13167368,-0.26211846,-0.78771484,-0.15135215,0.20872556,-0.08144638,0.48550287,0.2215536,-0.8385656,0.5152788,0.35221767,-0.33713314,-0.9434208,0.7104258,-0.0795239,0.094135314,-0.24759547,0.5173484,0.17458399,-0.07069217,-0.405501,0.43583792,-0.31678098,0.20452087,0.18744291,-0.09663471,0.18338148,-0.09194191,-0.13993722,-0.77785534,0.056889575,-0.7375622,-0.17772667,0.5565288,-0.15059833,-0.17637768,0.23442872,0.28493214,0.29837433,-0.48840135,0.2475057,-0.034900177,-0.5361098,0.43323478,0.5999824,0.29968974,-0.29473975,0.56203973,0.23902996,-0.022884097,-0.031966764,-0.0062968964,0.16394655,-0.13170674,0.5519662,-0.1460477,-0.09166327,0.06117175,0.74877673,0.18874735,0.4989412,0.10614101,-0.2206865,0.3263723,0.22892506,0.57837176,-0.3122071,-0.4032385,0.30361447,-0.09457192,0.057206526,0.6633408,0.1375579,0.21454078,0.20672561,-0.044937715,0.06598774,0.31670123,-0.19887942,-1.6586514,0.48285213,0.16820158,0.8933701,0.9065707,0.08627624,0.024459004,0.34823155,-0.45633513,0.068773076,0.69441825,0.17239764,-0.4353958,0.87063605,-0.6763841,0.44867957,-0.34988892,-0.038778618,0.1842073,0.1601492,0.54194736,0.8308427,-0.17024463,0.0490759,-0.2255345,-0.1498252,-0.02538183,-0.41074467,0.1183057,-0.34790057,-0.5533375,0.96799684,0.58848554,0.60554576,-0.19094096,-0.03543079,0.00026269755,-0.19450468,0.28048736,-0.1279141,-0.1511864,0.15222815,-0.6389277,0.00055827695,0.8441654,-0.28046063,0.115291014,-0.23487899,-0.6908499,0.11681715,-0.053354412,0.18874034,0.11582449,-1.2565455,-0.06436649,-0.41517374,-0.4463351,0.287699,-0.40253592,0.08798541,0.31693134,-0.11442104,-0.25563312,0.24170364,-0.029234346,0.7904713,-0.08674923,-0.15470186,-0.021406017,0.15819234,0.30711898,-0.27055827,0.16264331,-0.25680828,0.13905773,-0.44403183,0.6352964,0.041427713,-0.74620897,0.26871586,-0.12900102,-0.16851118,0.7089127,-0.077469364,-0.08597147,-0.20299429,-0.2183668,-0.34643358,-0.32164946,-0.2788192,0.3065161,-0.12939398,0.15015447,-0.16150258,0.06461612,0.30099618,0.44332,0.15178981,0.5935427,0.49353826,-0.034483247,-0.50168717,0.33750105,0.21829194,0.3585426,0.18189138,-0.03033834,-0.3840697,-0.1628852,-0.41117728,0.1349039,-0.3440147,0.22494173,-0.021835646,-0.31372285,0.65974176,0.110642955,1.387058,0.10119779,-0.54695296,0.21097569,0.5105079,-0.20101754,-0.21237022,-0.37024292,0.90464795,0.63964707,-0.27825594,0.011390518,-0.42745027,-0.31715208,0.2759613,-0.34833238,-0.04197167,0.05816465,-0.5253992,-0.2448118,0.07623288,0.20076562,0.09286331,-0.39624307,-0.11445403,0.27157634,0.080268554,0.47463274,-0.86364245,-0.25620347,0.0054273605,0.21701902,0.055830583,0.104366034,-0.31198496,0.27293763,-1.0918461,0.5059732,-0.589069,0.20325972,-0.32877016,-0.3733064,0.09027785,-0.019710727,0.4534006,-0.1357413,-0.3744572,0.02080504,0.51303184,0.09789922,0.13802081,0.7795579,-0.37134683,0.19555208,0.27142447,0.5478593,1.2062266,-0.50622946,-0.13874143,0.19952464,-0.47126898,-0.7193421,0.29642093,-0.41067755,0.088654846,-0.22140378,-0.49121127,-0.6870896,0.021749517,0.15274458,0.103465796,0.14983176,-0.8243919,-0.028805401,0.34603155,-0.302361,-0.21759492,-0.4096074,0.108948685,0.75601065,-0.2950126,-0.5754988,0.018987026,0.14699513,-0.1613608,-0.5036206,0.07438876,-0.14726196,0.31403124,0.08122393,-0.48348093,-0.062919304,0.18395393,-0.54951596,-0.13322133,0.037754018,-0.2624005,0.04461945,-0.39902905,-0.09585078,1.2388066,-0.348869,-0.06875959,-0.3851873,-0.61610514,-0.7292254,-0.3081531,0.363084,0.05657421,-0.04715954,-0.41460487,0.37070835,-0.17096798,-0.24039772,0.049520094,-0.40220833,0.47529972,0.17428194,0.4709779,-0.1742348,-0.9786937,0.3950163,0.3596219,0.1803988,-0.53077084,0.6001863,-0.1332471,0.8384085,0.113591194,-0.13664688,-0.42859694,-0.8607597,0.2708394,-0.13092227,0.30322492,-0.6575873,0.19006926,83 +996,0.4566279,-0.55835706,-0.18446064,-0.040800467,-0.102245964,0.09463768,-0.15945905,0.520599,0.3593894,-0.64645237,-0.03564771,-0.16134946,0.015578032,0.5025933,-0.15469384,-0.3779875,-0.3616322,0.2822193,-0.4713303,0.83315235,-0.26939723,0.17527336,0.00324191,0.7204508,0.26880917,0.17463702,0.120798096,0.0853257,0.0032465095,-0.5981981,-0.03368906,-0.2936206,-0.7277941,0.31623223,-0.1433546,-0.50237405,-0.0791056,-0.75712186,-0.35770735,-1.0227033,0.49089208,-0.9365213,0.5089783,-0.020615008,-0.15152389,0.2618873,0.23288584,0.28584284,-0.0036805389,-0.20458935,0.2598657,-0.42557144,-0.016515533,-0.35624114,0.06569797,-0.12019686,-0.6230172,-0.12014357,0.016433494,-0.44159082,-0.2879503,0.27692753,-0.42456317,0.12441422,-0.19985561,0.9548382,-0.30491796,0.18236534,0.019694302,-0.45318425,0.17321037,-0.7767597,-0.35715258,0.02146751,0.028353916,0.12883581,-0.17899862,0.40975296,-0.06830795,0.3834964,-0.009967844,-0.22854008,-0.37394637,-0.12945564,-0.12356954,0.66991127,-0.13365681,-0.4655304,-0.1422754,-0.09497944,0.04247764,0.2565291,0.33852595,-0.30161542,0.06526173,-0.1895026,-0.16382922,0.6435401,0.6565869,-0.03680475,-0.1145902,0.16173762,0.51677144,0.11467365,-0.17502207,-0.19085154,-0.034416582,-0.4912724,-0.18994941,0.032247227,-0.33045584,0.41836742,-0.23480412,0.24079466,0.6010882,-0.19845314,-0.010255079,0.16519573,0.36245394,0.22816621,-0.73825496,-0.61179614,0.68432975,-0.3415481,0.32465923,-0.61110044,0.8710379,0.1135593,-0.5600594,0.45551622,-0.6220777,0.18013473,0.03440833,0.54768986,0.41540235,0.5760131,0.43010274,0.8975349,-0.41032186,-0.0020347568,-0.09343571,0.06762804,-0.30098367,-0.4369647,0.43594873,-0.3799032,0.14760491,-0.121190496,-0.0021887189,0.113210596,0.23797809,-0.6015803,-0.24997228,0.32293415,1.1666609,-0.14898327,0.46409157,1.097086,1.1725619,1.5351348,-0.057319395,1.0083599,-0.05147416,-0.37399173,-0.15866,0.019488348,-0.8941386,0.18461384,0.3414989,0.50702935,0.061358504,0.12181011,-0.12288153,0.49589026,-0.63306314,-0.046092127,0.09969494,0.43547255,0.38687074,-0.14165887,-0.6467463,-0.23629862,0.003645271,-0.09745783,-0.03374188,0.31510177,-0.28075328,0.32837766,0.008379976,1.4407542,-0.28074175,0.2365275,0.283551,0.62291104,0.049013667,-0.3906446,0.21042189,0.18460427,0.27662933,0.049694404,-0.5854486,0.29370582,-0.1813346,-0.53568095,-0.13878924,-0.20096394,-0.25208807,-0.027411334,-0.24160814,-0.5584017,-0.27524972,-0.041786484,0.061594352,-2.551532,-0.028044403,-0.118137754,0.44223008,-0.39696917,-0.2669696,0.41353348,-0.5673773,0.47901317,0.2676621,0.45761648,-0.6890952,0.051190786,0.68081886,-0.730335,0.032769892,-0.67392117,-0.25585195,0.015402164,0.48313108,0.03851355,-0.20349342,-0.17012279,0.03001409,0.39619976,0.45695633,0.18907298,0.47098577,0.2866336,-0.19448449,0.4222199,-0.21357399,0.4206135,-0.5513735,0.032210346,0.29306644,-0.69287765,0.07157213,-0.48206636,-0.04435647,0.71158475,-0.44662607,-0.49615023,-0.64509857,-0.042077795,1.1721117,-0.1610541,-0.9261968,0.14190432,-0.21077377,-0.17281397,-0.31277126,0.586794,-0.058958847,-0.1576451,-0.6828282,-0.017376145,-0.34521797,0.30107063,-0.115627766,0.041603506,-0.6912211,0.9394974,-0.0140549205,0.48389244,0.43764693,0.16394936,-0.5513806,-0.29866335,0.072533995,0.81043464,0.44909567,0.20936614,-0.30491188,-0.04647447,-0.38660735,-0.39941227,0.0042085615,0.7085074,0.66600853,-0.23877543,0.1912255,0.26790157,-0.15315929,0.17119677,-0.17494184,-0.32307082,-0.32261053,0.054079965,0.59057575,0.6266915,-0.14759067,0.17647542,0.04473333,0.059932914,-0.28944507,-0.45454413,0.3365847,0.85529685,-0.2319321,-0.32186508,0.57807374,0.4499842,-0.53599507,0.5548413,-0.49078152,-0.32064837,0.57948315,-0.08084924,-0.7279079,-0.0762711,-0.22949508,0.047155116,-0.6260215,0.091968745,-0.3460263,-0.44147077,-0.6887974,-0.24179323,-2.042669,0.28096485,-0.21916026,-0.23165613,-0.33370474,-0.23632066,-0.09361908,-0.49893406,-0.70972425,0.42938995,0.17291826,0.65043473,-0.15752202,0.25484362,-0.20657697,-0.21222074,-0.6037227,0.28260377,-0.06674942,0.19108115,0.15129675,-0.29183972,-0.051627878,0.1851577,-0.5748929,0.036946114,-0.6474429,-0.39861885,-0.19771011,-0.64457047,-0.4801374,0.64961934,-0.11566308,0.19597608,-0.2716589,-0.1826325,-0.15203923,0.1818667,0.17793164,0.24543776,0.20445378,-0.23331414,0.058728524,-0.15714383,0.15750866,0.05645374,0.19314569,0.3576044,-0.27462536,0.22060587,0.16619486,0.91156936,0.16170359,0.9815968,0.21557349,-0.1643176,0.32883033,-0.401967,-0.27574402,-0.57682276,-0.0554725,0.40821564,-0.2928648,-0.45049566,0.04255673,-0.3345812,-0.53007674,0.5928845,0.20869552,0.43103865,0.16199411,0.2877721,0.42564,-0.19683093,-0.12336123,0.046445712,-0.019465737,-0.5179209,-0.23102845,-0.7784077,-0.33548352,0.1472159,0.6441421,-0.16575494,-0.079612255,0.4065432,-0.3783897,0.045522265,0.2496858,-0.1430316,-0.2120491,0.5328684,0.40361962,-0.7472883,0.43692714,0.35279614,0.03725232,-0.51126194,0.5689213,0.58429134,-0.5682347,0.6899792,0.10515193,0.012935261,-0.72543,-0.53164124,-0.16996193,0.0059785377,-0.25426257,0.16601548,0.21539295,-0.6597573,0.33551073,0.29441118,-0.19217771,-0.825526,0.063872784,-0.064904705,-0.64429075,-0.1979891,0.4133813,0.22333759,0.1097246,0.16086584,0.15952837,-0.64071727,0.37709725,-0.047213264,-0.036131416,0.3632102,-0.16963707,-0.1656026,-0.69610745,0.2753768,-0.56997156,-0.26698023,0.41366148,0.062085517,-0.16251683,0.5968699,0.31757092,0.43636778,0.098232776,0.15471049,-0.3713662,-0.36008802,0.5374271,0.426239,0.46475717,-0.5919297,0.77129024,0.12441483,-0.26081848,0.09147534,-0.13618733,0.42487356,0.12827052,0.4914187,-0.12649606,-0.20700438,-0.06882686,0.5996252,0.36691308,0.5395158,0.021211458,-0.027429167,0.46463293,0.074523956,0.16869247,-0.1449499,-0.7485195,0.29799998,-0.27669686,-0.088855535,0.43029657,0.058843188,0.41170698,0.00815307,-0.3494091,-0.11740952,0.08206527,-0.38497096,-1.521399,0.32830298,0.15862915,1.1528072,0.75545985,-0.11922574,0.086793594,0.93307686,-0.109904654,0.09487849,0.40953597,0.05090573,-0.47202766,0.6747922,-0.724662,0.43178704,-0.090274505,0.0008666565,-0.024961762,0.08825743,0.50778955,0.45470428,-0.19072433,-0.1950669,-0.281201,-0.25222903,0.1199739,-0.45040172,0.23279484,-0.3994413,-0.3153431,0.5392532,0.58119303,0.41321877,-0.26202694,0.14724873,0.113294125,-0.07998827,0.1610718,0.17771572,-0.31983054,0.16146487,-0.51849437,0.04914351,0.5741434,-0.26003087,0.016993228,-0.0031644627,-0.24722306,0.19559394,-0.16739129,-0.26200652,0.028838567,-0.8740046,0.25276,-0.27942634,-0.36202943,0.20159732,0.069266096,0.12692527,0.21433,0.14871836,-0.19878918,-0.06268216,0.379864,0.72351044,-0.09187209,-0.20394844,-0.26480278,0.1314308,-0.048330244,-0.1783581,0.38627255,0.033892922,0.07700205,-0.37796077,0.5589628,-0.08585528,-0.21848606,0.15682213,-0.18227236,0.01663433,0.86136574,-0.06356128,0.06345899,-0.11488005,-0.3121446,0.016023874,-0.245272,-0.13883652,0.32145008,0.036896855,0.13886225,-0.1269585,-0.17762859,-0.28602988,0.5875762,0.064074956,0.32201126,0.2810329,-0.028760247,-0.5924236,0.18130694,-0.16514453,0.62715596,-0.10096068,-0.06479853,0.08372215,-0.47139487,-0.5506389,0.74507934,-0.034560494,0.3812628,-0.035253268,-0.29436022,1.0155559,0.250604,1.0216798,-0.09302902,-0.3392321,0.13349849,0.53460014,-0.1849079,-0.064906925,-0.54454815,1.0027013,0.5924583,-0.15132357,-0.0011059443,-0.27940124,0.19153446,0.53466964,-0.26356396,-0.00017104547,-0.050013144,-0.72258514,-0.35892412,0.18686682,0.21254188,0.028563049,-0.27348366,-0.058772452,0.60540515,0.039965015,0.38952336,-0.41758028,-0.08477888,0.37356827,0.0782776,0.0980517,0.11640644,-0.43257815,0.1851031,-0.62591934,0.38931963,-0.30152142,0.063810885,-0.28820792,-0.1646547,0.21436323,0.08848658,0.40989944,-0.47273588,-0.5537004,-0.108618155,0.22829808,0.13508022,0.050304852,0.5587424,-0.12897176,0.07356965,0.19887531,0.5419359,0.8534373,-0.08136216,0.2512056,0.09841264,-0.67526937,-0.89091957,0.40950915,-0.0009644429,-0.106440715,0.05809611,0.044704754,-0.7549785,-0.036987565,0.3129849,-0.20917805,0.10849786,-0.70780087,-0.59064484,0.36919415,-0.40167105,-0.22353435,-0.32887453,-0.12557322,0.62787133,0.008519013,-0.25377983,-0.0094052125,0.19668502,-0.29909003,-0.7701437,-0.06611661,-0.5650772,0.3762615,-0.18191385,-0.5814298,-0.39284778,0.19409074,-0.6184759,-0.07563844,-0.096953,-0.29226846,-0.14883396,-0.43913108,0.052720957,0.9123218,-0.09312202,0.3433769,-0.71297646,-0.588465,-0.74147725,-0.28980446,0.41301557,-0.08358701,0.14333756,-0.6681442,-0.23524468,-0.42241123,-0.0831957,0.0045972597,-0.4879715,0.31282696,0.17316392,0.4760029,-0.25884762,-0.6415539,0.38692534,0.16009745,0.007957141,-0.26564556,0.5300977,0.1281153,0.67882836,0.013434751,0.007443872,-0.07156403,-0.7162187,0.25497445,-0.036664836,-0.3417791,-0.61681694,0.30336377,692 +997,0.3226612,-0.33320132,-0.6281918,0.08433208,-0.21837534,0.2526346,-0.3293374,0.45423663,0.11870519,-0.44908005,-0.022094063,-0.29250893,-0.050463457,0.23448361,-0.11898056,-0.48694694,-0.121304475,0.37601304,-0.31271946,0.4687368,-0.1812971,0.11729138,0.19682151,0.45398247,-0.29420772,0.04358083,0.09423205,-0.17956607,-0.021439185,-0.0683057,0.28087014,-0.14401756,-0.9141283,0.3423541,-0.20836757,-0.38553986,0.2685621,-0.5991843,-0.32329294,-0.5956052,0.13055795,-0.9128933,0.72434384,0.14458744,-0.20918663,0.06421003,-0.26453835,0.031570673,-0.16226637,0.011749221,0.40059954,-0.40712237,-0.3487305,-0.316244,-0.14041367,-0.50604075,-0.6901955,-0.04057473,-0.43201077,0.3120706,-0.22581376,0.14182526,-0.26646173,0.029548274,-0.05997537,0.20085788,-0.5756163,0.099806175,-0.035418604,-0.11956635,0.3071832,-0.5253198,-0.08118117,-0.20192379,0.246072,-0.14043519,-0.1347205,0.07861963,-0.042247634,0.70884776,-0.05822002,-0.045146305,-0.3186271,0.24402434,-0.069570236,0.57951695,-0.03246567,-0.2581869,-0.025295397,-0.120833516,0.12246421,-0.16238648,-0.21694078,-0.18175411,-0.08450263,-0.41780457,-0.23711589,0.2700769,0.58817744,-0.31171957,0.018271737,0.41664574,0.77037454,0.31592792,0.11120061,0.013982634,0.06724116,-0.4811344,-0.16656452,-0.00028157898,-0.27379376,0.7483205,-0.11074887,0.43899918,0.5758408,0.07077234,-0.15785381,-0.122507915,0.021364296,0.12642524,0.075986,-0.38348734,0.61118186,-0.17329155,-0.122593336,-0.17297658,0.5527771,0.08564341,-0.8352454,0.45854208,-0.41861638,-0.027452005,0.0750186,0.72178125,0.47125328,0.86031806,0.053595092,0.8302852,-0.58568835,0.16579127,-0.06491195,-0.3045871,0.34635827,-0.013924162,0.27715644,-0.36881793,-0.098021716,0.008432726,-0.4210564,-0.05294492,0.7626969,-0.4988551,-0.111803085,0.08780941,0.6234958,-0.2952267,-0.1812922,0.4161781,1.0027354,0.76927143,0.14274976,1.2277111,0.18145424,-0.21167381,-0.25004354,-0.034449194,-1.1729898,0.10183292,0.22074825,0.2332161,0.46181938,0.3991738,-0.15151079,0.49809435,-0.53007483,-0.1857157,-0.028076045,0.4896946,-0.13572685,-0.028816786,-0.4652654,-0.12089177,-0.064219065,0.07322792,0.02469237,0.44600594,-0.06686573,0.32502788,0.19405428,1.872861,-0.0050164857,0.1434223,0.091394804,0.30029076,0.15976498,0.09779021,-0.4086226,0.281728,0.17586488,0.21608472,-0.46899876,0.14377788,0.061656296,-0.63322735,-0.23011763,0.0330886,-0.16114296,-0.46354872,-0.1996319,-0.26316562,0.13717067,-0.45814997,0.297946,-2.275334,-0.14376463,-0.049502227,0.67741704,-0.33950055,-0.3022312,-0.2191857,-0.21516806,0.41952062,0.51650023,0.533788,-0.60360724,0.38534826,0.5379132,-0.5631802,-0.08349382,-0.5696032,-0.116508216,0.17771682,0.16989666,0.037737064,-0.4340609,0.19921078,0.03739341,0.01380037,-0.20076445,-0.058381062,0.3588035,0.7372527,0.16323453,0.43768248,-0.33992657,0.3436167,-0.53800803,-0.082790114,0.27327338,-0.36770344,0.5262363,-0.46400186,0.13454999,0.28338343,-0.38281336,-0.8411802,-0.30642658,-0.14749902,1.0326376,-0.38792086,-0.3364454,0.08573161,0.15563826,-0.4360103,-0.023223711,0.4965006,-0.30891985,-0.113324195,-0.90587944,-0.15983932,-0.17960428,0.5793898,0.13458759,0.2670649,-0.7433455,0.60280925,-0.048499532,0.5067764,0.8337125,0.162996,0.11631187,-0.4697387,0.20000319,0.8627584,0.27398145,0.35174683,-0.51137555,0.09787598,-0.05010805,0.16929682,-0.23035349,0.48879877,0.602884,-0.20157287,0.045297995,0.33479077,-0.046354696,-0.10524216,-0.28108066,-0.50978667,-0.18257779,0.00088437396,0.66277236,1.1584302,-0.2821519,0.19625899,-0.13631386,0.17634168,-0.3293799,-0.36370718,0.5633228,0.37498027,-0.21727209,0.013736127,0.4706566,0.37780347,-0.40961626,0.47250473,-0.6673417,-0.5828658,0.28089836,0.025731346,-0.43733898,0.2734144,-0.270622,0.051171802,-1.0402353,0.4118309,0.009385109,-0.5085562,-1.0284595,-0.13907641,-2.0949345,0.15958926,-0.17008938,-0.21276076,-0.011630075,-0.09134085,0.13549049,-0.58362496,-0.7102816,0.41147774,0.08421115,0.32622918,-0.09759304,0.2516388,-0.30945736,-0.31291616,-0.20259957,0.24148387,0.4670244,0.1013043,0.12023927,-0.6025806,-0.13610303,-0.16580333,-0.06696962,0.031504378,-0.60416806,-0.1465715,-0.10531816,-0.52209044,-0.1973184,0.65899163,-0.54703456,-0.14027636,-0.34408164,0.007965167,0.0042148135,0.21922694,-0.18141145,0.041014835,-0.005933649,-0.20178334,-0.22821504,-0.08333084,0.23338816,0.12122533,0.13481587,0.5895684,-0.32167578,-0.024115954,0.68498254,0.7226591,-0.03913208,0.9328571,0.37417197,-0.11470628,0.26843345,-0.28702033,-0.099887066,-0.6397798,-0.17175385,-0.18044007,-0.5753291,-0.44118255,0.1439271,-0.33023086,-0.8512999,0.5820359,-0.067262225,-0.22187525,0.23978692,0.37861216,0.25628287,-0.28096637,0.04450681,-0.1693969,-0.2085967,-0.44177186,-0.5619926,-0.5237182,-0.38566768,0.010221415,1.2117401,-0.07119339,-0.0511004,0.34412357,-0.18395121,0.10562739,0.013204336,-0.034997582,0.13410215,0.4271875,0.36669022,-0.6792243,0.46367392,-0.10159377,-0.08223554,-0.70962423,0.020430548,0.73666817,-0.8610575,0.20815526,0.4383086,-0.042602252,0.13550024,-0.67697644,-0.40115812,0.09067146,-0.1400764,0.11101612,0.20589703,-0.56671834,0.3711416,0.18932655,-0.35521835,-0.89615005,0.41928795,0.015045926,-0.38849008,0.14775313,0.3509858,-0.116484456,0.09031342,-0.53895396,0.19517542,-0.31528315,0.37176564,-0.010068668,-0.41983736,0.51413983,-0.22586271,0.02865845,-1.0124985,-0.053035457,-0.27698243,-0.2950544,0.4869566,0.073279195,0.023377905,-0.054035127,0.5729525,0.43711576,-0.73107475,-0.1640046,-0.20541614,-0.39747536,0.3433827,0.4456717,0.47581154,-0.5822007,0.5693978,-0.12196954,0.06454395,-0.18318318,-0.1330502,0.4570587,-0.13977607,0.055106293,0.15205969,-0.122927986,0.089958996,0.9233391,0.26578882,0.41725838,0.2922993,-0.15228456,0.6060531,0.15175274,0.24302308,-0.30456358,-0.6025722,0.38096538,-0.05583396,0.12201635,0.26035255,0.08951998,0.46978426,-0.4170258,-0.07611328,0.11532964,0.47408634,0.2832235,-0.7340594,0.3238678,0.07506417,0.55708176,0.6730229,0.15741122,0.38541186,0.60996765,-0.18343891,0.18971348,0.32751778,-0.022228308,-0.3246597,0.44033676,-0.5192883,0.1751638,-0.30389488,-0.008494311,0.39464748,-0.10611844,0.5521308,0.8068841,-0.03938369,-0.01131604,-0.18616633,-0.047494605,-0.24378936,-0.27633068,0.15096712,-0.54897285,-0.31996316,0.7331679,0.45238835,0.33181566,-0.2650951,0.014355198,0.11165318,-0.20462853,0.4421899,0.17824203,-0.056118548,0.16998357,-0.61424965,0.026625939,0.85787386,0.17676836,-0.120578796,-0.073913515,-0.27234292,0.4323982,-0.20914038,-0.28799665,-0.10574892,-0.9407489,0.1026288,-0.53910685,-0.24498834,0.5447925,0.3455568,0.32436025,0.10474434,0.01828205,-0.35553142,0.43538225,0.18565835,0.98328644,0.39170447,-0.34475198,-0.3158774,0.048915427,0.2897395,-0.19197315,0.10923711,-0.114747554,0.16268188,-0.38630855,0.34604204,-0.15406315,-0.2911569,0.20971009,-0.3075933,0.09307768,0.5957155,0.121783465,-0.051202025,0.05659106,-0.13395223,-0.19670238,-0.15867776,-0.5628531,0.19537663,0.014534818,-0.01679311,-0.073162675,0.13090245,-0.28101742,0.62211007,0.4765021,0.08697737,0.49725035,0.15699261,-0.5351664,-0.04113554,-0.21034677,0.6784907,-0.05799393,-0.21585536,-0.41884702,-0.631821,-0.26518077,0.32386923,-0.23597015,0.06882989,0.09434489,-0.4642175,0.8854268,0.31092113,0.9339797,0.049247093,-0.18810754,0.21131986,0.64538586,0.045411136,0.11249909,-0.6065657,1.2373308,0.5897362,-0.18665454,-0.17940326,-0.15325147,-0.37331048,0.04850923,-0.2971334,-0.3001998,-0.16886245,-0.8270995,-0.09811637,0.2476782,0.1359275,-0.20311396,-0.1877487,0.16028698,0.25297597,0.13735007,0.087705486,-0.66800815,-0.19253899,0.3723769,0.11738525,0.1505474,0.059411842,-0.22142966,0.35528675,-0.38759652,-0.009677897,-0.6435529,0.07896121,-0.08060201,-0.26052383,0.10279766,0.13119218,0.37135515,-0.43230146,-0.32909986,-0.026287006,0.36417645,0.39058936,0.27278644,0.66777825,-0.18961406,-0.07988049,-0.038530774,0.5379996,0.9642737,-0.6116317,0.301409,0.6634376,-0.34067357,-0.5229993,0.32474187,-0.28599274,0.14018056,-0.39088956,-0.20075828,-0.54224694,0.19557951,-0.0072273016,-0.26894516,-0.27603748,-0.7056881,0.014270451,0.60001975,-0.32539216,-0.14067888,-0.11589345,-0.16536058,1.0437486,-0.11817908,-0.4466926,0.14191523,0.25854892,-0.33991635,-0.55908376,-0.09518549,-0.58716434,0.15902723,0.27292597,-0.35171926,-0.0792543,0.24471444,-0.6028831,-0.05204112,0.23641337,-0.30885404,-0.08466535,-0.5265943,0.30802998,1.0559608,-0.010661019,0.089905106,-0.4168213,-0.42766723,-1.0458881,-0.073878855,0.44530213,0.23065287,-0.15259027,-0.47096756,-0.06443106,-0.3568368,-0.33425125,-0.17246562,-0.582164,0.44301644,0.12792856,0.43804845,-0.23573624,-0.9585264,0.19402266,0.067445,-0.4267887,-0.383718,0.44275248,-0.025491156,0.9112481,-0.11947355,0.10427252,0.25785744,-0.8933502,0.12710959,-0.21632229,-0.14140116,-0.63007045,0.097754344,772 +998,0.43493503,-0.09905829,-0.58263934,-0.0689099,-0.260718,0.03987533,0.15705337,0.81913793,0.4617213,0.024292722,-0.049894504,0.029540747,-0.1482425,0.29664788,-0.023657821,-0.61507237,-0.0784638,0.07001223,-0.39458996,0.6130882,-0.2427571,0.25030524,-0.32327864,0.6106838,0.33194378,0.37143156,-0.079423085,0.23448646,-0.14698353,-0.37004387,-0.1264443,0.12684771,-0.6998662,0.32801354,-0.052678093,-0.18000671,0.14967959,-0.37720406,-0.40340096,-0.57203054,0.23492807,-0.6603376,0.40586448,0.07821731,-0.07567279,0.101643026,-0.0023965603,0.09523606,-0.21162593,-0.23484097,-0.08623694,-0.039368693,0.21981163,-0.4537663,-0.4349345,-0.49005297,-0.47514024,0.013192609,-0.56357837,-0.19343913,-0.42763445,0.1391235,-0.26441494,-0.272028,-0.093601406,0.6481223,-0.2704752,0.43430558,-0.06281307,-0.2103981,0.06579533,-0.4865994,-0.15018308,-0.078117564,0.15700376,-0.047027454,-0.2545095,0.3197887,0.11549288,-0.09554404,-0.014458746,-0.17155418,-0.51218176,-0.01403245,-0.1941921,0.32412505,-0.02320221,-0.5193161,-0.03745476,0.19594505,0.14110973,0.36970353,0.35214207,-0.07888218,-0.03678843,-0.060710035,-0.12627587,0.96031404,0.33565617,-0.3609262,-0.261773,0.56180704,0.35668254,0.13045457,-0.23156862,-0.25325477,-0.13616097,-0.4757539,-0.15934038,0.19345897,-0.26048186,0.49178118,-0.13846946,0.08252885,0.5737326,-0.32984105,-0.27190566,0.27235416,0.10564799,-0.054969527,-0.43788302,0.077280544,0.25586766,-0.47235632,0.22492185,-0.04872848,0.849785,0.14307308,-0.5586843,0.2278569,-0.7552885,0.058683015,0.027591944,0.373326,0.5431777,0.68222535,0.15100867,0.7593171,-0.3830459,0.102362074,-0.22874875,-0.5203027,0.23049155,-0.20804167,-0.18828474,-0.5203372,-0.041604392,0.16374926,-0.2460509,0.34124973,0.2920251,-0.5561452,-0.32871613,0.58465606,1.0048021,-0.16326974,-0.43221533,0.6894893,1.1721169,0.9395941,-0.08940079,0.84857434,-0.25885326,-0.14450234,0.41274318,-0.14474541,-0.7090199,0.2850614,0.15211105,-0.55723035,0.33903915,0.01918695,0.050472047,0.05594208,-0.18896224,-0.017838486,0.025472175,0.5762774,0.27394712,0.04201609,-0.04783167,-0.4888594,-0.0908283,0.0928209,0.32111806,0.339189,-0.13539739,0.19552156,-0.18218535,1.4959154,0.20604044,0.10875858,0.10344117,0.92401165,0.42945725,-0.061506104,-0.026900798,0.67480016,0.058186334,0.4857434,-0.46183494,0.27118063,-0.38913685,-0.43941453,0.07173209,-0.39669722,-0.08751802,-0.0040282086,-0.4054368,-0.25763902,-0.1726339,-0.14525339,0.7781583,-2.993023,0.18521202,-0.09269063,0.39988112,-0.29926226,-0.45992184,-0.008800603,-0.48374507,0.15350688,0.26310402,0.5138072,-0.6005209,0.059567567,0.39400604,-0.6322442,-0.18153328,-0.3946529,0.40123984,-0.08997249,0.51353645,-0.15941373,0.11665394,0.14055932,-0.08359256,0.80665445,0.27503124,0.14680341,0.45538116,0.29019028,-0.3670627,0.6354198,-0.092221834,0.58078235,-0.30828393,-0.18060821,-0.027085092,-0.60008174,0.58299524,0.023703411,0.080897555,0.5915402,-0.3545093,-0.9820642,-0.3242234,0.16335028,1.3395276,-0.3247761,0.01881501,0.17185551,-0.32744357,-0.28037074,-0.21719666,0.5236677,-0.21395105,0.0829639,-0.21195523,0.046005897,-0.17842971,0.23663545,-0.03940673,-0.14591253,-0.212343,0.6302156,0.12304175,0.29846078,0.014745042,0.12656417,-0.7901813,-0.63885397,0.09830996,0.6306382,0.3367184,-0.028926127,-0.16676874,-0.25647974,-0.39126605,-0.10024588,0.3295923,0.905835,0.4528455,-0.21390852,0.09478749,0.5211614,0.080693245,0.047045246,-0.07057983,-0.29266018,-0.32447273,0.06923129,0.43355104,0.9601258,-0.007929027,0.60506535,0.09696873,0.18368125,-0.3074751,-0.50268275,0.57479584,0.78303725,-0.27522376,-0.34851626,0.4103283,0.45818853,-0.565883,0.40777254,-0.42119676,-0.27177808,0.5414201,-0.14633,-0.42771864,-0.019549578,-0.10732232,-0.44209823,-0.8368415,0.08952826,-0.43707892,-0.58170795,-0.32940513,-0.09719607,-3.7053528,0.18248427,-0.24138933,-0.28703997,-0.14938997,-0.11061427,-0.24669218,-0.643135,-0.4310909,0.12718436,0.14954247,0.5445932,-0.2583374,0.20632279,-0.31333655,-0.38458985,-0.65331745,0.48936927,0.23122749,0.42771834,-0.07594142,-0.33379358,-0.13230832,-0.031527326,-0.47461307,0.15109646,-0.4934207,-0.07246483,-0.15229265,-0.98608595,-0.1740628,0.73069525,-0.34858805,-0.04074741,-0.12896776,0.21985616,0.17817678,0.07043134,-0.1861038,-0.051308714,0.2268143,-0.2077089,0.10708968,-0.4335987,0.22443576,-0.058845013,0.76016974,0.13375485,-0.03466413,0.19765642,0.47983712,0.5151298,-0.103128456,0.79948944,0.1378938,-0.14511895,0.3515126,-0.065824725,-0.07766885,-0.55179715,-0.1740843,0.04129667,-0.24280322,-0.41355252,0.111585446,-0.37072974,-0.7356129,0.5534227,0.14524461,0.50295687,-0.031372406,0.5191221,0.64995396,-0.38193995,0.12100359,0.013980205,-0.047630783,-0.5289059,-0.24890026,-0.45871046,-0.27978754,0.46344882,0.5005201,-0.5158616,-0.3543812,0.094613194,-0.26202106,0.038357675,0.18616498,-0.18907602,0.056247685,0.38662115,0.0372129,-0.46123832,0.38639072,-0.20992792,0.06184178,-0.60134065,0.51901853,0.48274624,-0.7079698,0.60927284,0.11241095,0.054007936,-0.3864901,-0.48836297,-0.027197119,0.002731964,0.00025046477,0.20701809,0.37183616,-1.2530277,0.18645473,0.15669149,-0.42591333,-0.634917,0.60821724,-0.21968925,-0.23911458,-0.51487595,0.40836257,0.46295327,0.04108006,-0.40491128,0.18963532,-0.3045889,-0.017192677,-0.02006286,-0.09894599,0.06532664,0.07303366,-0.19670494,-0.65631145,0.27981597,-0.4423408,-0.38114014,0.69549704,0.054729998,-0.0774388,0.12019413,0.18645848,0.08574135,-0.16135901,0.19135627,-0.08247337,-0.35360232,0.6328145,0.3563664,0.8402404,-0.5695976,0.50181067,0.20153923,0.05587782,0.39316875,0.21788111,0.36948714,-0.03762573,0.5262793,0.48101872,-0.39114904,0.17302701,0.37473333,0.14617217,0.40639055,0.098400116,0.14154747,0.04292074,0.06905417,0.32376295,0.009319164,-0.7554773,0.09880294,-0.3908664,0.07774973,0.3306666,0.034264177,0.04809562,0.13657549,-0.10720721,-0.0022883909,0.10968934,-0.07176326,-1.0574473,0.27696386,0.17132513,0.8815309,0.3523485,0.16549107,-0.17643909,0.82315326,0.07219203,0.10529198,0.5015154,0.25414696,-0.3826247,0.49957097,-0.80428594,0.8496993,0.27791604,-0.09935712,0.18936832,-0.108519554,0.42319095,1.047822,-0.25147727,-0.288878,-0.0375253,-0.25347942,-0.03429912,-0.3950941,0.32552394,-0.6378467,-0.27006865,0.5198079,0.44320872,0.23975676,-0.15373632,-0.14030448,-0.010430237,-0.12710606,0.08027834,-0.16008997,0.15917382,0.17963779,-0.5274964,-0.13304496,0.49499044,-0.054238252,0.23940788,-0.006595336,0.1864778,0.544331,-0.24367797,-0.14174132,-0.02963107,-0.7494844,0.32934284,0.11862853,-0.5050046,0.47667125,-0.30777115,0.37012726,0.22215506,0.1212613,-0.27212334,0.55230635,0.3582595,0.75192285,-0.31426358,-0.1801091,-0.5893757,0.34874967,-0.028988076,-0.10922392,0.22955215,-0.101973385,-0.21263471,-0.60580516,0.08439183,-0.16286571,-0.564301,-0.51920825,-0.18002395,0.034020633,0.66437906,0.11822731,-0.18305036,-0.34253758,-0.37718162,-0.31852978,-0.1285241,-0.05391913,0.28269702,0.02153087,-0.14289229,-0.05710553,-0.183666,0.17107856,-0.0838224,-0.08729971,0.33802706,-0.065415174,0.1367939,-0.20722017,-0.1669086,0.2689959,0.5897646,-0.27288455,0.15317512,-0.018502362,-0.21242633,-0.5693413,0.003298793,0.033754624,0.49095923,0.07641205,-0.3259065,0.41186875,-0.1543584,1.370656,0.0066183684,-0.40064213,0.30283275,0.74466884,0.20203696,-0.09218802,-0.3656243,1.3785957,0.48506272,-0.15119074,-0.19306678,-0.26455423,-0.2120301,-0.034057595,-0.36777022,-0.24622996,0.12579961,-0.36086494,0.10776363,0.23699123,0.18327643,0.2964375,-0.020357795,-0.20742781,0.54356486,0.092319176,0.18152384,-0.34476274,-0.22037956,0.13523328,0.43519568,0.06890762,0.10227548,-0.4137208,0.19905035,-0.63342094,0.4127804,-0.12426183,0.3373223,-0.48047292,-0.52943206,0.14278539,-0.09462628,0.5761486,-0.33863807,-0.44219422,-0.47149014,0.35018945,0.33969948,0.3353356,0.60495436,-0.26003417,-0.16453516,-0.074343555,0.40598607,0.7007662,0.099584125,-0.455369,0.28460562,-0.5644698,-0.8051828,0.35267687,-0.34834915,0.23014088,-0.14408752,-0.010398883,-0.262775,0.27315196,-0.034904823,0.23141195,0.09691333,-0.85916996,0.017324708,-0.039190218,-0.083144836,-0.15899451,-0.2261366,0.24043596,0.9331118,-0.05485695,-0.5362553,0.30044383,-0.032666728,0.07638412,-0.4307991,-0.15211904,-0.36999264,-0.067460716,-0.07900191,-0.45291555,-0.35847753,0.051606834,-0.5549042,0.18996562,-0.28796554,-0.28051388,0.27905813,-0.09181823,0.0527455,0.6249302,-0.43832514,0.21972781,-0.34134537,-0.7244289,-0.50815666,-0.33106127,0.17896849,-0.19231327,0.0026092902,-0.57539415,-0.049069922,-0.36431944,-0.44474274,-0.23004058,-0.47260126,0.20958859,-0.039553583,0.21264651,-0.085733235,-1.2009139,0.43592447,0.22430673,0.09662599,-0.9560662,0.20675212,-0.49113777,0.6871876,0.00090380386,-0.0025846194,0.45841676,-0.5129151,-0.051927842,-0.2536291,-0.055096727,-0.46359196,0.28266728,305 +999,0.06896128,-0.60805863,-0.1960318,-0.2034314,-0.0144265,0.12871203,-0.05929203,0.53725505,-0.07680579,-0.37844583,-0.4815363,-0.2966729,0.107821256,0.76444155,-0.08015049,-0.5316976,-0.39612478,0.16511449,-0.55779845,0.23755527,-0.5522176,0.14325525,0.20975573,0.40466356,0.37461635,0.32782465,0.5332184,-0.1331385,-0.040063404,-0.12243548,-0.120494686,-0.29698503,-0.4000504,0.14627156,0.008450586,-0.5294247,0.026189543,-0.7372309,-0.20427279,-0.7346057,0.40098524,-1.024542,0.34869298,-0.29072562,-0.043535925,-0.14136903,0.06266048,0.54282963,-0.23383754,0.040455,0.38814273,0.012889989,-0.05380246,-0.018599458,-0.2197364,-0.18837622,-0.55434185,-0.08341643,-0.27280492,-0.6125608,-0.09365702,0.15113041,-0.32010466,0.106708124,-0.078820825,0.22283186,-0.39199403,-0.43220785,0.4584356,-0.10891288,0.54562217,-0.56559527,-0.23240496,-0.021009307,0.41910338,-0.23666674,-0.017469881,0.41441756,0.36334887,0.30051982,0.23494947,-0.1173174,-0.016599245,-0.118643075,0.17172532,0.78556424,-0.064681105,-0.4447308,-0.12685704,0.03690335,0.16147198,0.4077791,0.05240581,-0.38886198,0.03569254,-0.04529448,-0.34079257,0.242042,0.5203975,-0.033661872,-0.3407722,0.27237046,0.55088353,0.18126956,-0.09935614,-0.20226403,0.029442519,-0.4237343,-0.118963614,0.28798664,-0.16490118,0.6293051,0.05219186,0.40737927,0.9006918,-0.22441344,0.327927,-0.46339095,-0.07066807,-0.40700948,-0.45415735,-0.3043717,0.18373136,-0.4220906,0.19805738,-0.26313943,0.92805225,0.22005484,-0.6940864,0.604475,-0.4542546,0.21301351,-0.14061314,0.62568337,0.35887653,-0.009691864,0.31779438,0.8791908,-0.2300134,0.09364627,0.04584892,-0.28767812,-0.21859561,-0.24897072,0.2952761,-0.54668915,0.023707762,-0.040231787,0.14913748,-0.0770651,0.22823924,-0.5941354,0.03115028,0.20455314,0.8997009,-0.4256292,0.16171692,0.6495725,1.203094,1.1205801,-0.024092969,1.4778324,0.43541124,-0.42895204,0.25703335,-0.5367571,-0.69302267,0.2003319,0.65853554,0.4380541,0.32988113,-0.049251333,-0.3641742,0.45154357,-0.5673156,0.42958277,-0.16464424,0.24815874,0.12629119,0.12930614,-0.7164541,-0.23630601,-0.1666319,-0.17264707,-0.06463463,0.032807335,-0.30383813,0.20837557,-0.35515264,1.7748917,-0.13939783,0.03860865,-0.02624609,0.6094543,-0.15488812,-0.26964706,-0.20273852,0.20345974,0.8094899,-0.22065184,-0.6218365,0.3716371,-0.25479662,-0.38280797,-0.08519015,-0.32259464,0.10429236,0.07575046,-0.22799662,-0.06291756,0.117288575,-0.46956939,0.42486614,-2.8242302,-0.38716853,-0.42611116,0.07650467,-0.48756278,-0.14663121,-0.17628679,-0.48139822,0.42076236,0.3031815,0.4729454,-0.5520454,0.48854986,0.48580372,-0.15208109,-0.07201587,-0.77066064,-0.057028692,-0.0033284314,0.29280853,-0.0043309405,0.068339154,-0.22283673,0.072812974,0.5187361,0.2251624,0.112659335,0.6529293,0.34964964,0.17995515,0.6036564,0.07222695,0.43117878,-0.40104374,-0.0066391937,0.1256394,-0.21559937,0.18223068,-0.34405744,0.10852441,0.4128582,-0.6939944,-0.6727806,-0.7087305,-0.92191184,1.013421,-0.43683475,-0.33186424,0.49897003,0.22300129,0.10223237,-0.17879787,0.6679105,-0.15570597,0.054680064,-0.63985634,-0.020480461,-0.07217605,0.12210302,-0.06954693,-0.027084187,-0.4552464,0.58645463,-0.25622943,0.49458992,0.19038488,0.23472406,0.08495365,-0.17775047,0.10630162,0.79655343,0.19782686,-0.15263906,-0.06807983,-0.09568688,-0.3889017,-0.5067184,0.18861803,0.4814548,1.15373,0.023660472,0.11136155,0.3584657,-0.15259384,-0.039881706,0.001122117,-0.2717933,-0.14577761,-0.11141447,0.5322983,0.158668,0.016209677,0.7118061,-0.5282711,0.15734862,-0.11153419,-0.32333246,0.35543305,0.09617146,-0.16956577,0.073462136,0.39938554,0.43099934,-0.43988585,0.39518192,-0.6844032,-0.057592466,0.77467954,-0.198714,-0.6295544,0.16994795,-0.10206496,-0.06593911,-0.9545188,0.4393656,-0.2936365,-0.6133407,-0.3523676,-0.20005043,-2.9282684,0.19864672,-0.04874549,-0.53906864,0.020166643,-0.11218949,0.28877413,-0.6459894,-0.6395443,0.22058296,0.09456089,0.5827467,0.11268907,0.028552257,-0.21858355,0.17390941,-0.34607124,0.10109556,-0.014891788,0.27158973,-0.083776355,-0.45867297,0.010189112,-0.09584441,-0.74114394,0.3419724,-0.8044009,-0.60967875,-0.23681743,-0.6848476,-0.47357914,0.81295943,-0.24157827,0.07981844,-0.13349986,0.061391015,-0.2642622,0.46615392,0.07029565,0.40112042,0.13489386,-0.122619666,0.2518893,-0.28618157,0.43958956,0.12851371,0.45176962,-0.18629523,-0.1818919,0.34846833,0.385513,0.67917037,0.12936963,0.835486,0.6245309,-0.251409,4.245341e-05,-0.5406885,0.17871732,-0.5008904,-0.42390773,0.047958724,-0.31462353,-0.926005,-0.0009786636,-0.1789968,-0.57161033,0.5351501,-0.0072295777,0.37651992,0.025910616,-0.077638306,0.15016112,-0.0291548,0.10251211,-0.043559525,0.14453672,-0.46722892,-0.23546049,-0.83287406,-0.54023767,-0.023909964,0.5833484,-0.144912,-0.06459862,-0.1503624,-0.86822844,0.37264055,0.033358622,0.02766122,0.18663935,0.15088847,-0.13770524,-0.7600459,0.4369542,0.19756539,-0.016823001,-0.660316,0.14618456,1.0725113,-0.62907636,0.67395586,0.16898367,0.058654316,-0.34403643,-0.27761713,-0.2812078,-0.20411357,-0.19892655,0.14857432,-0.2598164,-0.54485047,0.40720975,0.47010797,-0.34331393,-0.67822903,0.22569078,-0.07900178,0.052573428,0.10244727,0.17149594,-0.042277962,-0.13442227,-0.3899295,0.20510292,-0.44054553,0.47382632,0.23148467,0.16345808,0.5702051,0.06967156,-0.16131803,-0.4929009,0.14390305,-0.45346612,-0.09514974,0.37670505,-0.077732265,-0.16070043,0.33575442,0.08987191,0.2753327,-0.2771875,0.047097757,0.119593985,-0.56840205,0.03761755,0.32933533,0.06716721,-0.4179137,0.5607018,0.10816704,-0.21546076,-0.046034694,0.027083863,0.32585245,0.29339463,0.23913006,-0.5208535,-0.44189703,0.40115455,0.66918766,0.29627573,0.7192365,0.25478208,-0.12850472,0.4312968,0.024805203,0.1926443,0.10382384,-0.32502735,0.12872572,0.12360506,0.07666283,0.36234918,0.19671208,0.400427,0.070490666,-0.29289612,0.037134256,0.14196123,-0.23160276,-0.9236571,0.55741817,0.22437452,1.0365815,0.36462566,-0.08852665,-0.14917809,0.64930964,-0.1029447,0.14312902,0.3702914,0.075866684,-0.6957043,0.9128953,-0.5030354,0.48186544,-0.0510299,-0.11905141,0.07633623,0.18232574,0.35058194,0.7595394,-0.19474933,0.060739227,-0.27304208,-0.0057344586,0.019784674,-0.4491494,0.46330705,-0.5983345,-0.56754804,0.44548827,0.41694158,0.24174055,0.045869567,0.022967631,0.025126569,-0.14615406,0.31166214,-0.025646754,-0.2191145,0.36885202,-0.85689443,-0.5092666,0.5015539,-0.0028159022,0.26736298,-0.14693551,-0.32724592,-0.05932287,-0.23694189,-0.022153996,0.1860478,-0.831745,0.0010163402,-0.1970214,-0.28416154,0.105336145,-0.30124483,0.33286116,0.1206413,-0.1197878,0.05690795,0.044225574,0.21909657,0.988299,-0.18027306,-0.37146765,-0.30992258,-0.054634348,0.22285515,-0.29463604,0.40232414,-0.29048717,-0.30260545,-0.6485846,0.7191764,0.12931871,-0.62550455,0.5440296,-0.25245267,-0.1814331,0.6344017,0.030642897,0.37048274,-0.26288116,-0.3252251,-0.19997221,0.25707522,-0.3951717,0.17846732,0.097226605,0.19728972,0.053749323,-0.11693484,0.022931412,0.7404856,0.08189085,0.5748864,0.30399996,0.22731572,-0.2141167,0.04425575,-0.17890337,0.4699371,0.46227106,-0.037828427,-0.27540118,-0.27752715,-0.074158564,0.26158616,-0.29267684,0.43299574,-0.21934941,-0.4464559,0.6167851,0.09297731,1.2797134,0.15871486,-0.29677305,0.019712305,0.58079535,0.002456326,0.15590602,-0.61582124,0.8282748,0.58316123,-0.119086035,-0.030976646,-0.3785208,-0.27292886,0.74199456,-0.2660616,-0.24689376,-0.040850848,-0.63515717,-0.57171947,0.21909495,0.21240291,0.097800545,0.21941178,0.045128677,0.11137062,0.00021269172,0.83936125,-0.6046965,-0.09875548,0.14341933,0.13798513,-0.058865786,0.21204722,-0.4660996,0.31234503,-0.8161042,0.53246707,-0.3068748,0.085263684,-0.12223193,-0.33036128,0.07297988,0.06883794,0.769142,-0.13042955,-0.54190063,0.053904865,0.51319623,0.022723764,0.1130237,0.6973832,-0.22850177,0.10453066,0.230289,0.5433488,1.4771554,-0.38385016,0.3254512,0.44390285,-0.61302686,-0.67688227,0.5975439,0.063225254,-0.069374144,-0.19393688,-0.39370307,-0.4484206,0.3180361,0.22191966,-0.37829322,0.17491539,-0.3562411,-0.4210546,0.4010754,-0.19670488,-0.34659347,-0.44786823,0.44743901,0.52514625,-0.38060609,-0.40911436,0.17056204,0.4503666,-0.4702627,-0.3348113,-0.14162534,-0.3304479,0.3791782,-0.18993148,-0.41359153,-0.30440122,-0.16486448,-0.32130745,-0.12318398,-0.16345209,-0.5132695,0.113735415,0.06204719,-0.24582468,0.899596,-0.18741636,-0.365823,-0.9797009,-0.3962797,-0.9050964,-0.53713834,0.5816224,0.17387861,-0.3052203,-0.18868808,0.16628072,-0.009122156,-0.07644837,0.13691214,-0.34631187,0.2687271,0.075682804,0.4873145,-0.35378867,-0.81018347,0.2820143,0.090768486,-0.09134899,-0.5959328,0.78036714,0.058990933,0.645406,-0.05346742,0.042899877,-0.25829208,-0.15230197,0.14405501,-0.2067025,-0.18020888,-0.88875335,0.28274745,848 diff --git a/tutorials/zero-shot-performance/embeddings/synthetic_geneformer_embeddings.csv b/tutorials/zero-shot-performance/embeddings/synthetic_geneformer_embeddings.csv new file mode 100644 index 000000000..461caee60 --- /dev/null +++ b/tutorials/zero-shot-performance/embeddings/synthetic_geneformer_embeddings.csv @@ -0,0 +1,1001 @@ +,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767 +0,0.35852987,-0.21421257,-0.5082455,-0.07557819,-0.2717296,-0.046913315,-0.17160329,0.62672967,0.20821519,-0.36085624,-0.12240076,-0.2373073,-0.019471364,0.4476611,-0.13190477,-0.52289677,0.005088069,0.045875534,-0.62035394,0.49004474,-0.36717847,0.043673873,0.033167396,0.5337162,0.23451903,0.23550662,0.027586734,-0.07896665,-0.22919114,-0.1494146,-0.0018862442,0.32234845,-0.6470248,0.061529923,-0.24004515,-0.27710667,-0.11289547,-0.62836283,-0.31815663,-0.75342643,0.245698,-0.8391985,0.4552621,0.010651823,-0.17050849,0.25619063,0.14882308,0.37925386,-0.23864624,-0.2619833,0.18028742,-0.19878775,-0.11678218,-0.03336237,-0.23164108,-0.16154546,-0.6375107,0.22528999,-0.45815718,-0.16676314,-0.27613074,0.09936805,-0.2935198,0.04353342,-0.043522518,0.49668935,-0.42555183,0.05965003,0.3732496,-0.18043153,0.18441351,-0.47438297,-0.07960652,-0.20799018,0.19148259,-0.31335515,-0.27983984,0.37289268,0.23708674,0.498062,0.0053665796,-0.20504813,-0.35923514,0.100230776,0.04818035,0.46448332,-0.17679529,-0.4236625,-0.13040404,0.092667505,0.14605764,0.1974096,0.11294488,-0.25068817,-0.19547294,0.004709697,-0.098300196,0.40639353,0.48354676,-0.24269746,-0.16598988,0.16089405,0.59455466,0.31644538,-0.04994458,-0.025399057,0.09972062,-0.61006,-0.15458116,-0.0065665683,-0.034901712,0.50248617,-0.07909846,0.20163707,0.6307613,-0.21504714,-0.06680083,0.08555327,-0.02965091,0.012216274,-0.31239203,-0.15491556,0.3178152,-0.39461213,0.27747044,-0.14101951,0.609749,0.2713639,-0.7044452,0.36484382,-0.5113159,0.21385041,-0.07900966,0.44957986,0.7336626,0.5395524,0.45989183,0.69219166,-0.32560363,0.2340628,-0.14737228,-0.35397214,0.17151575,-0.32719615,-0.10907666,-0.43921915,-0.0473968,-0.2244622,-0.14761224,0.2212726,0.16717274,-0.58418745,-0.0054649794,0.12265134,0.9429278,-0.14444304,-0.14620765,0.91213775,0.8948079,0.9774156,0.0037960252,0.9995383,0.081382275,-0.17344688,0.40148753,-0.09241107,-0.79748493,0.31779397,0.32477218,-0.21265142,0.20961386,0.040076826,-0.14884557,0.6139469,-0.47081614,0.051973917,-0.19269432,0.019845966,0.1443173,-0.09972604,-0.38984865,-0.22869545,-0.13827747,-0.058908843,-0.07361946,0.25611866,-0.08374249,0.5349876,-0.19572869,1.7083514,0.025058,0.17300579,0.031277053,0.65828586,0.10424292,-0.14710875,-0.2447,0.12289012,0.23619753,0.22018744,-0.45184323,0.09286175,-0.20013529,-0.36202106,-0.082233764,-0.39810884,-0.07018452,-0.12834066,-0.4743538,-0.18727106,-0.1573364,-0.16054052,0.3973789,-2.7825809,-0.092058815,-0.013196579,0.3101617,-0.27401587,-0.31114605,-0.11416725,-0.50616115,0.46389845,0.28244987,0.5251516,-0.58482647,0.36139956,0.30665252,-0.6003221,-0.086744264,-0.7000169,-0.10933725,-0.01479598,0.3320495,0.015918072,-0.08760296,0.13040014,0.06615327,0.56667995,-0.087042,-0.004855325,0.17492229,0.4330656,0.10184202,0.48262602,-0.18056388,0.58637756,-0.47347298,-0.32545233,0.28539184,-0.2888145,0.30409607,-0.042861264,0.089299455,0.4913608,-0.42636955,-1.0284902,-0.59471184,-0.13036293,1.2141595,-0.17197777,-0.38714778,0.34882036,-0.45084083,-0.14364815,-0.03551638,0.46654767,0.07671605,0.030774005,-0.720837,-0.09302758,-0.13598947,0.10146491,0.007747714,0.01731683,-0.40135625,0.5053133,-0.121768,0.23985912,0.5059706,0.1595287,-0.24236774,-0.53446895,0.1494827,0.79186237,0.26832575,0.10851414,-0.28202647,-0.27767146,-0.3613736,-0.17143092,0.037914556,0.4694675,0.68648976,-0.052590836,0.17062464,0.2531895,0.08111814,0.0382788,-0.17824148,-0.32133728,-0.20401856,-0.021328917,0.6257246,0.80285454,-0.105349384,0.41095,0.047955237,0.38351974,-0.051984992,-0.44472092,0.4790865,0.8772223,-0.16575052,-0.28938618,0.4838157,0.3671135,-0.24646215,0.5163334,-0.4409481,-0.2431758,0.38901138,-0.1139733,-0.5280659,0.19975744,-0.28189963,0.14150691,-0.9138864,0.27700704,-0.28932628,-0.3520334,-0.6507911,-0.11114371,-3.4041317,0.120884575,-0.23811089,-0.13886738,-0.0743052,-0.09185222,0.081783056,-0.5932658,-0.61430067,0.09286586,0.07068177,0.7767568,-0.19323087,0.049549613,-0.22185214,-0.24845484,-0.38043737,0.08895346,0.37542483,0.38326886,-0.005172634,-0.45754296,-0.20460661,-0.26314986,-0.5001597,-0.03282799,-0.6741115,-0.40062162,-0.25400332,-0.5342658,-0.2824158,0.69047797,-0.29233736,0.06557308,-0.18126278,0.050960336,0.037184358,0.30677027,0.16409205,0.15415065,0.15115315,-0.095216274,0.05301695,-0.21964723,0.20766197,0.12271638,0.34695354,0.37042445,-0.03922855,0.3481186,0.592852,0.943667,-0.190412,0.9222148,0.55266094,-0.027792875,0.28178132,-0.38056836,-0.32257426,-0.43975416,-0.16236138,0.085030146,-0.4773971,-0.41665205,0.18615976,-0.36009684,-0.8747397,0.7054073,-0.063724145,0.03603877,-0.0037498316,0.16089328,0.60294527,-0.3460886,-0.11095394,-0.09118026,-0.0009955327,-0.61761665,-0.24611518,-0.43359548,-0.72620416,-0.07509403,1.0168316,-0.17809702,0.06655235,0.05907832,-0.1759964,0.03699513,0.052764136,-0.061231267,0.19844891,0.373784,-0.07748253,-0.6683351,0.47742695,-0.1639878,-0.17212394,-0.6045584,0.3409216,0.5497869,-0.659094,0.61943126,0.33630842,0.021004265,-0.19195591,-0.510083,-0.23516132,-0.13777253,-0.11043296,0.3327506,0.05850791,-0.7888833,0.39423743,0.45495814,-0.37217343,-0.8074238,0.37709108,0.020798746,-0.16944711,0.04934748,0.32254758,0.106690526,0.00015028616,-0.23220351,0.18133564,-0.38203785,0.122186586,0.28788692,-0.08237784,0.27877337,-0.31383547,-0.18468246,-0.67998254,0.1741653,-0.4154375,-0.30663013,0.3813524,0.12199309,0.062004115,0.070637256,0.1714645,0.3027863,-0.16997705,-0.0088823475,-0.16431178,-0.3208644,0.2669779,0.49267966,0.5397101,-0.595609,0.60183454,0.06571566,-0.1055074,0.179281,-0.042728543,0.4557767,-0.08248653,0.32163286,0.105355404,-0.21827014,0.1016039,0.8252695,0.06995479,0.4673477,-0.067154504,-0.0742215,0.18488051,0.15958166,0.13638894,0.143151,-0.6354755,0.16438083,-0.17437261,0.24007517,0.42747465,0.15334447,0.36577553,-0.06719879,-0.2691957,-0.014763415,0.06846536,0.048051015,-1.4080641,0.35846463,0.23364757,1.0019648,0.3265723,0.12563682,0.0810319,0.8120348,-0.17307596,0.15462966,0.4351671,-0.1322731,-0.5567985,0.54807395,-0.79945105,0.639084,0.1918897,0.008680028,0.11918228,-0.0460124,0.5832197,0.6354703,-0.21541895,-0.057069197,0.040169977,-0.26770326,0.2396595,-0.53309786,0.08523631,-0.45573866,-0.23262297,0.6415722,0.5761653,0.26325536,-0.17267331,0.0071468037,0.15268575,-0.07668133,0.21462587,-0.033202093,0.084191516,0.009145307,-0.61840236,-0.13346218,0.5679427,-0.10728487,0.2562238,-0.113128796,-0.12978461,0.2310974,-0.199944,-0.17744945,-0.2352448,-0.6812897,0.013974544,-0.47269756,-0.43848523,0.36247593,-0.047327466,0.3421239,0.24038619,0.06623384,-0.49062756,0.687019,-0.1809069,0.9047827,-0.16180745,-0.21918978,-0.38831574,0.34008986,0.2938174,-0.17228581,-0.04639437,-0.2888412,0.06793148,-0.36442515,0.32349622,-0.15648825,-0.50942284,-0.020611579,-0.021472719,0.08055806,0.5464415,-0.12836768,-0.01086684,-0.012343312,-0.23510142,-0.36434492,-0.1504065,-0.06422248,0.23340505,0.25427434,-0.08527276,-0.14148301,-0.15394889,-0.0998307,0.53896934,-0.017387072,0.41646135,0.31230685,0.06183513,-0.28754112,-0.18952173,0.2348617,0.6611923,-0.069020085,-0.25605613,-0.4023421,-0.27018687,-0.36251366,0.18637225,-0.13660458,0.45235723,0.117809914,-0.32946962,0.7018991,-0.0072814464,1.312881,-0.0272875,-0.43670556,0.20735115,0.43930048,-0.04821741,-0.052693352,-0.4937976,0.92010766,0.37839037,-0.11609553,-0.1286872,-0.37324366,0.006963118,0.21791612,-0.24265017,-0.20653799,-0.056381416,-0.5087669,-0.10627768,0.24754736,0.3141065,0.3445758,-0.23729374,0.009225086,0.17463459,0.021976693,0.140202,-0.373257,-0.19914576,0.3033414,0.36478695,-0.07949176,0.08514978,-0.48346218,0.4048394,-0.3114684,0.059049044,-0.29273346,0.22590917,-0.21693373,-0.30564144,0.28749526,-0.08790091,0.4115722,-0.33975124,-0.29543468,-0.3283071,0.4218214,0.29033664,0.19630763,0.6041275,-0.28623375,-0.03346907,0.062205095,0.52246976,0.81114185,-0.28170225,0.014253521,0.32024786,-0.06964619,-0.48870242,0.45309952,-0.27832964,0.2576748,-0.108006,-0.10356839,-0.6856925,0.1344535,0.14155337,-0.034988485,-0.06935929,-0.64306694,-0.13577406,0.20815231,-0.22202414,-0.284648,-0.5276857,0.008372796,0.61967,-0.13961855,-0.26854992,0.24165884,0.19226973,0.007988667,-0.40381482,-0.082041375,-0.22282659,0.10700525,0.08978513,-0.5643037,-0.07328473,0.0608361,-0.5252878,0.15786196,0.050977714,-0.2911066,0.049716983,-0.10921212,-0.019390147,0.9387369,-0.28561345,0.35513973,-0.47478575,-0.513146,-0.9543426,-0.3046104,0.4822649,0.070447475,0.043781407,-0.6678965,-0.03710165,-0.20288242,-0.30677977,-0.052346405,-0.49166667,0.35474586,0.061244022,0.36213705,-0.19351985,-0.6305058,0.24790902,0.10619981,-0.12269654,-0.5704042,0.4904651,0.076360054,0.81617224,0.10733033,0.16438945,0.44852144,-0.38379413,-0.24986883,-0.18403314,-0.102278,-0.5122573,-0.049635526 +1,0.39863238,-0.273572,-0.42505965,-0.11031544,-0.27156526,0.101832494,-0.20953748,0.25599176,0.0735204,-0.25725704,-0.38905454,0.034310006,0.14080906,0.38182884,-0.11651803,-0.6582459,-0.14412515,0.11437214,-0.7206662,0.41838297,-0.46793494,0.33624718,0.18360958,0.36085218,0.058530863,0.49295953,0.2939244,-0.13946961,-0.09398083,0.07988773,-0.14484712,0.07990845,-0.5958654,0.27426735,-0.25857994,-0.24809732,0.03778364,-0.34441242,-0.21278521,-0.5799447,0.10596241,-0.92089003,0.52403736,-0.12014156,-0.09864149,-0.009881432,0.09525741,0.25663617,-0.5241462,0.106645,0.14450379,-0.15791616,-0.13395524,-0.3170874,0.08455301,-0.34772086,-0.32250282,-0.050496202,-0.61618835,-0.18679254,-0.11205334,0.103072986,-0.2572232,0.0650766,0.0062198364,0.35349473,-0.4084323,-0.031195292,0.28595987,-0.30284542,0.10200938,-0.565977,0.05794124,-0.026037479,0.5874664,0.023080194,-0.10455578,0.33172697,0.2051337,0.41156387,0.26905197,-0.19210696,-0.20366849,-0.13563575,0.21251605,0.47049326,0.0148717975,-0.36838287,-0.26557276,-0.011147612,0.32647038,0.18432386,0.048443522,-0.11826121,-0.11634935,-0.19896473,-0.11999158,0.31393155,0.44855022,-0.29480156,-0.2669064,0.34810874,0.6103649,0.129971,-0.097051725,-0.094815016,0.07621501,-0.49358264,-0.14199486,0.12987591,0.046100616,0.48321372,-0.047904797,0.33472136,0.75186926,-0.18038456,0.11413305,0.0045523155,-0.021730449,-0.32089493,-0.14823672,-0.02444466,-0.0020016644,-0.37669072,-0.16173391,-0.2100315,0.7620962,0.07616083,-0.70379597,0.32236218,-0.46695226,0.083896734,-0.08417434,0.6051133,0.49964944,0.49440724,0.14528778,0.72121716,-0.34452063,0.14090618,-0.092549086,-0.48010784,0.039230082,-0.17453055,-0.06546699,-0.3987902,0.079596885,-0.07906985,0.08877273,0.013417418,0.3990512,-0.42906982,-0.051273953,0.09747814,0.75955975,-0.3758587,-0.12964238,0.689465,1.0566626,0.772982,-0.092140086,1.2017707,0.37730592,-0.16798313,-0.033106446,-0.36822933,-0.57471514,0.20465146,0.40810183,0.063385494,0.37460586,-0.076419316,-0.14665079,0.34552303,-0.33885768,0.07757723,-0.055272777,0.2934052,0.10272702,0.12080987,-0.5184246,-0.1900593,0.012227918,0.015246908,0.25436562,0.21886618,-0.21253444,0.49377728,-0.062074807,1.3679742,0.05158615,0.20647292,0.038395245,0.4963732,0.31431785,-0.052498724,-0.16143224,0.31632662,0.38964605,-0.16270778,-0.69629616,0.19307253,-0.33801252,-0.4474519,-0.22947769,-0.38627824,-0.15094557,0.11476708,-0.3934181,-0.2002336,-0.0009247192,-0.2830493,0.4120572,-2.7252414,-0.26094064,-0.093524896,0.45402694,-0.45901588,-0.17605159,-0.2457351,-0.5360395,0.20952356,0.2599654,0.50232565,-0.581574,0.5530147,0.4764922,-0.43541998,-0.3266969,-0.5540187,0.066010356,0.020786704,0.3591047,0.037934158,-0.22196914,-0.19977765,0.009962671,0.6160224,-0.10317315,0.12913968,0.5355776,0.30861267,0.26683316,0.38089746,0.012689642,0.5366942,-0.37470087,-0.10298324,0.3129706,-0.23323472,0.38050112,-0.1937075,0.098536395,0.4451365,-0.45682186,-0.82651436,-0.6941822,-0.32661125,1.1738796,-0.3294461,-0.38902798,0.10354824,0.018784964,-0.07075448,0.12900276,0.5237667,-0.12322923,0.11742433,-0.6832886,0.11019652,0.066030025,0.3343757,0.087332025,-0.08958254,-0.3190084,0.67188084,-0.12252311,0.66563046,0.18309177,0.47498518,-0.030713337,-0.37129858,0.1299567,0.93101263,0.28415674,0.005734759,-0.088219866,-0.28191283,-0.1842836,-0.09677468,-0.08488757,0.5051986,0.69774735,0.010340861,0.14355433,0.374723,-0.098613635,0.060089912,-0.07550158,-0.19249527,-0.15453193,0.07447947,0.3819777,0.7071749,-0.11309153,0.4432704,-0.33154193,0.36844066,-0.14843157,-0.55292994,0.85531723,0.42675072,-0.2550969,0.0073331213,0.5010447,0.4258632,-0.44336128,0.42692414,-0.67816025,-0.46588558,0.6039832,-0.22894728,-0.37513873,0.18527818,-0.21073452,0.22772013,-0.8728197,0.38515335,-0.23026255,-0.34457412,-0.41628566,-0.14606336,-3.2181013,0.14401378,-0.1251834,-0.1474211,-0.24243827,-0.08840787,0.24148941,-0.6891543,-0.4037507,0.16652568,0.20595993,0.63180786,0.056931585,0.2535019,-0.24696364,-0.115579024,-0.1083133,0.10623516,0.12892742,0.26600507,-0.096060276,-0.4594736,0.07318372,-0.07608005,-0.4560105,0.2634405,-0.43546417,-0.44803503,-0.12792107,-0.39133862,-0.23549329,0.5848063,-0.31934997,0.12124391,-0.25273934,0.1980678,-0.24381016,0.22877277,0.028401505,0.11243452,0.16886221,-0.13144265,0.15272914,-0.34563354,0.621865,-0.05069574,0.31341076,0.28720507,-0.092982925,0.030901859,0.54471385,0.4114196,-0.17622042,0.811729,0.29505768,-0.04371155,0.27994013,-0.20197354,-0.34126097,-0.5109938,-0.3343093,0.05492851,-0.34880516,-0.47205025,0.06377335,-0.33123994,-0.9645378,0.52603185,0.021226542,0.2195997,-0.056871917,0.30024657,0.48717877,-0.17014728,-0.041902985,-0.06818432,-0.14388704,-0.529167,-0.35292712,-0.66708046,-0.39871696,0.018313587,0.9396835,-0.36785072,-0.021541098,-0.18414159,-0.317799,0.011198674,-0.02548188,0.058711164,0.25200042,0.28447887,-0.06678581,-0.68493235,0.49177504,-0.11485696,-0.15217409,-0.46842614,0.085379325,0.6322929,-0.7945195,0.2873058,0.44131353,-0.038109463,0.06372365,-0.3770337,-0.123567946,-0.1750791,-0.07259835,0.3297348,0.15717523,-0.72945976,0.51500076,0.16313522,-0.380114,-0.7500424,0.20918791,0.059118625,-0.2296047,-0.022874832,0.21908714,0.08072265,-0.19067241,-0.35237426,0.009315951,-0.4730385,0.33187804,0.12184818,-0.10663712,0.5398627,-0.16918112,-0.24370594,-0.63230485,-0.1272938,-0.5146562,-0.08681435,0.309403,0.12752487,-0.021614019,0.03693318,0.0028613487,0.4712279,-0.3723752,-0.019839333,0.13703701,-0.22610752,0.24216366,0.34347448,0.46168542,-0.35919255,0.50823957,0.078575775,-0.14699332,0.1567595,0.09030235,0.3777633,0.22052003,0.29022846,-0.09441755,-0.07298078,0.34743777,0.604705,0.08778469,0.4534213,0.114877686,-0.28536394,0.421078,0.009987741,0.10364906,-0.017109636,-0.33769864,-0.0083570825,-0.027576884,0.08808332,0.4821219,0.42442703,0.37268564,-0.00870119,-0.21343589,0.047270656,0.12924226,-0.03613037,-0.93544525,0.3482452,0.2337579,0.8055239,0.3524537,0.046263523,-0.19568014,0.6633674,-0.2804518,0.19162318,0.23482691,-0.005626274,-0.48028,0.6468097,-0.5015535,0.46044272,-0.14480723,-0.17153557,0.11799973,0.054707963,0.14046787,0.8974284,0.033896882,0.07101183,-0.0029541627,-0.18515565,-0.07153869,-0.34202388,0.04920596,-0.55535764,-0.263445,0.73163444,0.24515724,0.3534101,-0.12585457,-0.14438382,0.028631046,-0.15315612,0.2999727,-0.08054719,0.15228336,0.09204694,-0.5688541,-0.36075693,0.49706745,-0.027756363,0.17443576,-0.16106476,-0.25330988,0.06694684,-0.2320318,-0.020995455,-0.04844915,-0.56774473,0.0152695095,-0.28339434,-0.37441233,0.32032737,-0.2049969,0.1694571,0.15424134,-0.0855899,-0.25397205,0.25446948,0.14490283,0.794293,0.19527404,-0.31977087,-0.45333418,0.03745153,0.41127983,-0.32542756,0.13229147,-0.39991835,-0.05741722,-0.50500786,0.63630533,-0.11891121,-0.23297584,0.20903768,-0.29012045,-0.038238984,0.5491907,-0.0022294351,-0.15821746,0.08565588,-0.041894894,-0.49846077,-0.02707845,-0.44117805,0.14354646,0.34196573,-0.034552317,-0.06413106,-0.22104444,-0.0331235,0.53215986,0.08276609,0.41740724,0.29825434,0.0067322636,-0.26845992,0.034786787,0.22243692,0.44717938,0.19558798,0.028362658,-0.5754324,-0.47277483,-0.30559975,0.0126961125,-0.14893699,0.030104158,0.074027516,-0.20547625,0.7962743,0.039269477,1.0507278,0.18043056,-0.21381375,0.1175412,0.5485863,0.042171873,0.12317855,-0.4240849,1.0732104,0.59503144,-0.11544638,-0.087404355,-0.39427176,-0.23584107,0.28041354,-0.3715736,-0.16411391,-0.14312407,-0.5909063,-0.48613772,0.19580677,0.1578883,0.035135113,0.009452651,-0.021253254,0.020187667,0.15484874,0.33478686,-0.7095265,-0.19996567,0.2865085,0.15706892,-0.03421034,0.29016808,-0.44716167,0.5292513,-0.6843303,0.06879928,-0.38548556,0.176074,-0.09269256,-0.4120596,0.14334224,0.1954236,0.42219567,-0.36425966,-0.52593803,-0.19510259,0.5417152,0.020358844,0.19843303,0.58386344,-0.24453963,0.033554655,0.0453755,0.592228,1.1737021,-0.29348373,0.087489046,0.4026915,-0.4205799,-0.6431249,0.31259054,-0.36196858,-0.012643673,-0.25700757,-0.45634767,-0.49202308,0.39114258,0.18833189,0.068895526,0.111725844,-0.5813592,-0.14203937,0.26197177,-0.2904956,-0.15354612,-0.11730518,0.29819116,0.62841976,-0.2942416,-0.16540751,0.12560149,0.31059012,-0.2222412,-0.4225962,-0.2299392,-0.30343676,0.20487905,0.17325208,-0.18054414,-0.20313573,0.088970505,-0.32933873,0.059311543,0.1391996,-0.37769574,0.03747895,-0.16315429,0.12021746,0.74775493,-0.07230694,-0.010242773,-0.6974209,-0.3749446,-0.91243464,-0.49316505,0.31000543,0.2095644,-0.053366426,-0.50644714,0.037978493,-0.09508221,-0.09680111,-0.013643826,-0.55864155,0.38252956,0.07884494,0.40918282,-0.25449824,-0.8724977,0.09124816,0.10228886,-0.30167308,-0.558204,0.5847507,-0.08737576,0.8607982,0.031209975,-0.14745148,0.12705623,-0.57622576,0.035543535,-0.41525427,-0.100697145,-0.6432126,0.008452156 +2,0.6058696,-0.009347899,-0.4321522,-0.2778716,-0.4641142,0.10259865,-0.26650864,0.041819137,0.3296782,-0.31691402,0.05357182,-0.12753187,0.04816172,0.47952223,-0.16366217,-0.89477795,0.15055166,0.20957755,-0.5828438,0.27973944,-0.6167325,0.44676757,0.1707107,0.25276133,-0.0026590307,0.18589664,0.2976239,-0.12498249,-0.04399254,-0.17766021,0.034133818,-0.015106456,-0.71695536,0.21853903,-0.07112758,-0.4644014,0.087096535,-0.51121473,-0.31716534,-0.55303365,0.2575709,-0.74899113,0.49272925,-0.038294595,-0.26377302,0.062666014,0.07556074,0.42242455,-0.22579943,0.14509614,0.12895793,-0.36270857,-0.14331634,-0.11443852,-0.29654366,-0.43314308,-0.5981704,0.020032806,-0.6367579,-0.13232312,-0.40689155,0.25573877,-0.33340475,-0.017483745,-0.043848872,0.30814758,-0.337405,0.046029065,0.35300255,-0.23724361,0.16714568,-0.23420255,-0.20025346,-0.12169246,0.36477962,-0.09264479,-0.26437017,0.30106753,0.42017168,0.48096004,0.18562365,-0.34954458,-0.18005213,-0.15728116,0.053531613,0.7063565,-0.13030766,-0.21553648,-0.35147232,-0.07631575,0.23772693,0.21784154,0.0045473897,-0.41856378,0.06711047,0.16207044,-0.31266308,0.49723414,0.5065364,-0.46855968,-0.14937124,0.34303817,0.35594827,0.04868049,-0.045856792,0.22214219,0.047861207,-0.554923,-0.2830707,0.24258433,0.09554179,0.58515835,-0.12129136,0.21967933,0.73157847,-0.32890722,-0.06365546,-0.069624424,-0.16916369,-0.0016648769,-0.25780421,-0.08029228,0.24360107,-0.6254301,-0.08911024,-0.27707335,0.9158169,0.2409736,-0.8644987,0.46708798,-0.58155745,0.15988946,-0.19371161,0.600539,0.77207977,0.35706946,0.19870755,0.70074147,-0.57827675,0.21828726,-0.08878745,-0.48045376,0.13940258,-0.13212009,0.18710746,-0.39658356,0.08043645,0.027782751,0.016771723,0.10801971,0.3502481,-0.4049662,-0.08374568,-0.08714269,0.6763302,-0.43132344,-0.09369848,0.9592141,1.0378834,1.04538,0.16817716,1.4176282,0.52499473,-0.15380771,0.07904478,-0.21547095,-0.48874903,0.12602101,0.30350593,0.101585336,0.1837945,0.20709093,0.0039469856,0.3384116,-0.22036695,-0.12051221,0.020325964,0.30790487,-0.15407589,-0.049719453,-0.597122,-0.30993956,0.10279751,0.026790997,-0.06291335,0.41003373,-0.18336432,0.4553278,0.09394076,1.2691069,0.095551565,0.06158424,-0.20191118,0.36540487,0.2601638,-0.22558202,-0.22420819,0.09122044,0.27537194,-0.09419246,-0.53876495,-0.08685016,-0.2822464,-0.25510678,-0.28144854,-0.39864334,0.035987176,-0.16779526,-0.3202398,-0.07636547,0.08532877,-0.33594507,0.64707464,-2.4839623,-0.39178148,-0.032300033,0.36402926,-0.14189097,-0.29678735,-0.14689626,-0.58607864,0.3145531,0.31673452,0.38609666,-0.61973864,0.40841824,0.33554527,-0.31859833,-0.29528496,-0.8650318,0.021730209,-0.15197983,0.25232446,-0.12951235,-0.09080408,-0.194465,0.23211493,0.731883,0.034944944,-0.004106351,0.07223939,0.40262723,0.07815493,0.6047388,0.10031142,0.62653786,-0.24593702,-0.18630205,0.25710306,-0.23847923,0.28358465,-0.1046604,0.15911542,0.3600463,-0.5246393,-0.8908878,-0.69227105,-0.4119127,1.1373062,-0.3740855,-0.37420934,0.26454934,0.081883736,-0.1345432,0.041574784,0.4053122,0.043766737,0.047517896,-0.54418224,0.11693765,0.04053119,-0.025614215,-0.05674381,0.18405195,-0.31982136,0.59746784,-0.3394391,0.29842123,0.32217264,0.30482492,0.014622961,-0.3827674,0.19591066,0.9613424,0.2435437,0.109278746,-0.23284487,-0.33919182,-0.2052856,-0.21969448,0.06801047,0.45814487,0.8955759,-0.05141469,0.11134652,0.40011173,-0.190479,0.22399881,0.0791984,-0.3495531,-0.022552509,-0.1304113,0.62365,0.5669912,0.024299424,0.43628582,-0.11325619,0.10559923,-0.15687779,-0.4774545,0.4798334,0.7309656,-0.23588453,-0.16666918,0.54366314,0.2761338,-0.30614814,0.46698257,-0.5120188,-0.23533256,0.5911297,-0.0012787239,-0.34650594,0.06605207,-0.32394943,-0.0049598366,-0.9403515,0.46841264,-0.09290565,-0.6516567,-0.22360162,-0.0993471,-4.110858,0.26071742,-0.12931035,-0.06484168,0.061586864,-0.2142789,0.35365412,-0.46051043,-0.4389952,0.12620626,-0.03548629,0.65761715,-0.15716438,0.21372442,-0.34363338,-0.16541053,-0.4109021,0.17566037,0.12234897,0.28187853,0.008517759,-0.2225789,0.2362539,-0.45510128,-0.51984435,0.099872656,-0.5881262,-0.5109607,-0.09412212,-0.44524235,-0.5308894,0.88494444,-0.3839329,0.025682671,-0.36654577,-0.03913958,-0.27849963,0.46770597,0.12509911,0.12701748,0.055699773,0.061546665,-0.30134597,-0.39134064,0.39010996,0.14463556,0.27672836,0.34561083,-0.20788436,0.1601458,0.60557836,0.5467708,0.09592239,0.6861225,0.19451205,-0.048899166,0.2340421,-0.3985992,-0.19469701,-0.591638,-0.44085482,-0.36284587,-0.47928572,-0.4905899,-0.20056894,-0.3319673,-0.7295739,0.4638939,0.06756426,0.06518081,-0.2331749,0.21885101,0.29864857,-0.19846983,0.0006002709,-0.09758147,-0.19667901,-0.5746228,-0.35803133,-0.6665255,-0.62891257,0.25816777,1.0454596,-0.1851646,-0.011277258,-0.095529266,-0.19058728,0.18298987,0.09110524,0.21605645,0.14802702,0.39930704,-0.1555917,-0.70597744,0.29330984,-0.32887602,-0.11481087,-0.6372591,0.12773229,0.7364628,-0.62526006,0.54788125,0.4234031,0.27957642,0.21688983,-0.46697998,-0.3004391,0.078637876,-0.218151,0.50983447,0.05874557,-0.8613127,0.5391927,0.23454131,-0.19919078,-0.6515202,0.5922617,0.077211894,-0.08083155,0.1447164,0.3516027,0.22006524,-0.07712083,-0.11485882,0.20544638,-0.65816116,0.35409886,0.33817106,0.10146532,0.41515952,-0.06556462,-0.24324942,-0.5801662,-0.264133,-0.4672512,-0.2743983,-0.034710407,0.06340194,0.14360197,0.1854309,0.20364197,0.43455526,-0.5005383,0.06838802,-0.06431467,-0.32159665,0.3613116,0.5561839,0.45724827,-0.43352905,0.57251376,0.053223945,0.059800923,-0.21649064,-0.0040938174,0.5013285,0.20538066,0.27074176,-0.033663657,-0.18256414,0.013988967,0.59631336,0.16037811,0.34362602,0.24005553,-0.13588418,0.33072644,0.24714826,0.13675308,0.2188627,-0.13847755,0.0058937436,-0.0675426,0.13450916,0.4314348,0.18787266,0.27840862,-0.09384819,-0.2087345,0.13851455,-0.0674175,-0.16856413,-1.2893698,0.29761034,0.20731282,0.49788707,0.4506409,-0.022370653,0.05018026,0.49845535,-0.25650954,0.06355916,0.34222487,0.057354588,-0.21813305,0.5495305,-0.69751227,0.5879601,-0.15414338,0.08104162,0.18799217,0.15719306,0.35929725,0.92797893,-0.090038255,0.1752443,-0.13789542,-0.2509735,0.057208598,-0.35362878,0.102136016,-0.55143464,-0.15700367,0.79454523,0.30858088,0.27251473,-0.20995538,-0.06861709,0.1282069,-0.13077743,0.11828072,-0.00083202124,-0.08210676,-0.039197564,-0.635747,-0.34237072,0.60045844,-0.19093339,0.04949125,0.11823023,-0.2024389,0.26984218,-0.21454038,-0.01033995,-0.013996713,-0.70227224,-0.1605133,-0.44294325,-0.35180554,0.2536095,-0.45764595,0.2652179,0.15812835,0.023884399,-0.25616974,0.2180551,0.2673659,0.847562,0.030383144,-0.34427366,-0.32117224,-0.002326199,0.38309446,-0.3184627,0.021069279,-0.24169922,0.10534392,-0.6655798,0.43869135,-0.21534903,-0.17470002,0.021002522,-0.031181829,-0.011149533,0.42826837,-0.3015971,0.040957756,0.13448516,0.022611966,-0.24556038,-0.016756508,-0.22872151,0.14171639,0.07276417,-0.1896606,0.15948413,-0.21605618,0.08625839,0.27401203,0.08982624,0.23331083,0.113304295,-0.014072333,-0.18611611,0.01366485,-0.14114435,0.27839497,0.008689796,-0.121088155,-0.47368807,-0.12563726,-0.11916561,0.3148063,-0.08006348,0.020851118,0.08265139,-0.31987593,0.7830105,0.032673534,1.1971253,0.1993912,-0.369333,0.17857711,0.4502643,-0.04887302,0.03124699,-0.35173398,1.0005686,0.52815735,-0.12775892,-0.2606216,-0.54387885,-0.37865475,0.24390122,-0.3256057,-0.35348126,-0.0074995374,-0.59051543,-0.21671762,0.08036523,0.09975498,0.117169745,-0.049094982,0.076998435,0.26603064,0.13297643,0.48065025,-0.60920376,-0.036063068,0.2981895,0.41926318,0.061356064,0.3238778,-0.27591652,0.38233835,-0.6869167,0.18450868,-0.44684213,0.09647701,0.00608535,-0.29146072,0.25221404,0.2359551,0.29717645,-0.092423156,-0.31642607,-0.12275352,0.60062164,0.16933462,0.19067006,0.81819314,-0.32799673,-0.25112882,-0.020434638,0.34801355,1.3149902,-0.09313183,0.060946804,0.45374757,-0.2763275,-0.50880444,0.26151183,-0.36193228,-0.028983181,-0.09146146,-0.23558652,-0.5026846,0.24524136,0.12818092,-0.054249592,0.19760896,-0.49179977,-0.20973442,0.2892101,-0.25421298,-0.4045295,-0.30977988,0.3858181,0.69094497,-0.43679208,-0.33809352,0.011986213,0.22278294,-0.21605322,-0.5595956,-0.01569954,-0.16383922,0.30756027,0.105479375,-0.37828058,-0.12688133,0.26330703,-0.30604914,0.02740957,0.36275476,-0.22953586,0.12961617,-0.17371735,-0.069198325,1.0799098,-0.045971334,0.22802809,-0.7377202,-0.60977757,-0.892965,-0.39836296,0.16624829,0.28300807,0.03250331,-0.35056072,-0.09748063,0.11821677,-0.029464126,0.13022436,-0.61687976,0.2824559,0.093301274,0.36517993,-0.02775045,-0.9698428,-0.054793037,0.16464235,-0.26231256,-0.6715189,0.55214655,-0.21007837,0.79930156,0.15312438,0.07471643,0.09206115,-0.47041157,0.2962641,-0.38619575,-0.14542988,-0.6445386,0.014669026 +3,0.42515898,-0.1567503,-0.34909266,-0.2250879,-0.054117795,0.058973845,-0.059497602,0.36686566,0.17119867,-0.554357,-0.20148963,-0.24076986,0.12554793,0.29781628,-0.34085575,-0.91402787,-0.106521316,0.12642623,-0.2670089,0.5891684,-0.42302614,0.35866314,0.029808393,0.10335498,0.0004410652,0.29012865,0.29976812,-0.30298856,-0.39072257,-0.07887215,-0.12288023,0.44212216,-0.52751744,0.17434885,-0.016205018,-0.22621974,0.094745584,-0.42764282,-0.41924095,-0.76436603,0.29557276,-0.8917357,0.41585782,0.17910911,-0.004049503,0.27813154,0.0029857617,0.019714935,-0.26425773,0.1706561,0.08152076,-0.082242176,-0.11376819,-0.15365694,-0.4056556,-0.5547032,-0.66122437,0.13404188,-0.33255386,-0.34934172,-0.17416325,0.11997131,-0.4088671,-0.14838132,-0.11564095,0.4035033,-0.49387836,-0.048604615,0.24721281,-0.085114166,0.19773293,-0.6029084,-0.32915622,-0.1994536,0.16789037,-0.4954631,-0.052993186,0.19805796,0.42802766,0.46204054,0.051296372,-0.18195003,-0.28926304,0.022501977,0.32826847,0.5818357,-0.34564817,-0.83927834,-0.10176949,0.13253905,0.15833338,0.09626949,0.12653027,-0.35971716,-0.051364206,0.15603939,-0.34451205,0.42822626,0.49673426,-0.3801081,-0.26491216,0.2805373,0.35973945,-0.027046273,-0.096986406,0.0015103221,-0.06725198,-0.5023276,-0.17226723,0.45792153,-0.15810555,0.6174522,-0.21246631,0.18958634,0.634263,-0.47321162,0.165807,-0.082147315,-0.04457069,-0.09310529,-0.17787634,-0.20122069,0.18839614,-0.37203312,0.21724503,-0.20511185,1.0184655,0.35336787,-0.8652357,0.39439386,-0.56766456,0.2224442,-0.13450098,0.6241736,0.29968202,0.24372926,0.3870064,0.55333036,-0.519606,0.07229281,-0.05176809,-0.48719832,-0.23264448,-0.046968963,-0.10459741,-0.3319112,0.08069785,-0.010527945,-0.06415927,-0.14353393,0.5069579,-0.4931486,0.016997214,-0.037964728,0.77288777,-0.4171054,-0.13954781,0.7001991,0.9002753,0.91774184,0.10647451,1.3293178,0.45062155,-0.209696,0.10002101,-0.5210176,-0.70637006,0.29863426,0.4960899,-0.56761956,0.24515916,0.06877648,-0.07788043,0.08006798,-0.32847497,0.059079316,-0.50442314,0.1568062,0.110335544,-0.020696832,-0.45024192,-0.17065045,-0.050395012,-0.050228532,0.22174254,0.05995495,-0.20605828,0.12004778,0.11754273,1.4299653,-0.13373497,0.007523491,0.05630559,0.42158747,0.15578038,0.22108838,0.112379804,0.3831116,0.4373389,0.12740138,-0.6825845,-0.08927751,-0.22031267,-0.5787914,-0.15399227,-0.26253635,0.068001054,0.06452692,-0.38824257,-0.13582337,0.006026733,-0.39757445,0.5387587,-2.2428288,-0.16290396,-0.17759845,0.27180105,-0.24605489,-0.39771712,-0.16282889,-0.39808157,0.326112,0.2899515,0.44714525,-0.81315386,0.32989424,0.40761292,-0.27565092,-0.10010863,-0.7247388,-0.022648709,-0.16821066,0.3428079,0.00041090065,0.12909485,0.16585721,-0.06913931,0.4923793,-0.023095636,0.023674872,0.25644737,0.42718756,0.2639863,0.41053817,0.15447924,0.520966,-0.17067896,-0.14936854,0.33920956,-0.31749916,0.18139113,0.07435271,0.10765167,0.11459768,-0.5344622,-0.91599977,-0.7483373,-0.6518646,1.3458651,-0.225768,-0.31933016,0.226346,0.1642336,-0.17863856,-0.22632265,0.27333724,-0.3335852,-0.067911774,-0.77558243,0.099140376,0.045500323,0.17325518,0.07499992,0.20430909,-0.2960227,0.67893577,-0.27928331,0.26250184,0.35523617,0.15802477,-0.1879912,-0.58002484,-0.06975376,1.1683567,0.22158106,0.17353612,-0.10093866,-0.36883456,-0.1078988,-0.073114015,0.06645454,0.48116794,0.7854688,-0.024456583,-0.05720857,0.44169456,0.07204758,0.15357126,-0.23200567,-0.41796604,-0.12779877,-0.05925228,0.59584695,0.14479941,-0.36829087,0.5258916,-0.22433384,0.39675742,-0.0046604024,-0.27341557,0.42197964,1.354351,-0.20425265,-0.24648967,0.5949583,0.48117527,-0.4533157,0.30481544,-0.6831928,-0.1869317,0.44317305,-0.25387695,-0.35080808,0.38564065,-0.32557422,0.12141358,-0.9815273,0.50277746,-0.26037934,-0.33566368,-0.39358842,-0.08100414,-3.7743764,0.14554,-0.43310654,-0.26709443,0.011624419,-0.07933734,0.09135933,-0.54137903,-0.5441208,0.21145883,0.07869117,0.3526201,0.020169573,0.24225599,-0.1466658,-0.023798106,-0.3146801,0.15920965,0.018860973,0.3477551,-0.07678286,-0.475899,0.16543773,-0.18276533,-0.3251781,0.27834398,-0.6378377,-0.5760817,0.0340493,-0.6952307,-0.5125148,0.6222215,-0.46736974,-0.028553527,-0.20961991,0.081377655,-0.3714934,0.43954885,-0.01703775,0.28813714,-0.13587011,-0.05277011,0.013265165,-0.115642466,0.566069,0.07724655,0.2584539,0.29675525,-0.2119568,0.10897167,0.5322495,0.45485628,0.24855591,0.7086792,0.5950167,-0.0807501,0.2385722,-0.3141851,-0.088672474,-0.7033818,-0.51408863,-0.0018238104,-0.38505876,-0.5944568,-0.150677,-0.31186527,-0.758849,0.54373795,-0.2131272,0.10917016,-0.022780318,0.26591504,0.5583425,0.09722642,0.17919217,0.006472927,-0.14851148,-0.44359568,-0.25458205,-0.69626415,-0.2717489,0.11156556,0.8137299,-0.107483074,-0.2214686,-0.12999783,-0.266854,-0.06804986,0.037320115,-0.02382503,0.25273806,0.4719165,-0.12806782,-0.86275446,0.39104506,-0.052471254,-0.22846518,-0.38909,0.16441195,0.7468723,-0.87109345,0.661525,0.3644288,0.0912296,0.040267807,-0.39285976,-0.46157366,-0.028652139,-0.27133214,0.30181974,0.092368916,-0.6410914,0.49673337,0.4933663,-0.22357567,-0.6965185,0.54723793,0.16951157,-0.21983245,0.13407055,0.4179518,0.11156077,-0.081308894,-0.290125,0.29649562,-0.46341902,0.36541444,0.20157552,-0.017131846,0.24303426,-0.0018571776,-0.2056396,-0.75635517,0.06954288,-0.4704108,-0.3994018,0.14520839,0.14745656,-0.08500433,0.16457668,-0.08671255,0.5029181,-0.31951746,0.023546187,0.17220101,-0.17321569,0.14351362,0.33741426,0.30737692,-0.37169155,0.5524363,-0.102754965,-0.04257036,-0.08783904,0.15080395,0.4648876,0.24566022,0.17488848,0.21918161,-0.192165,0.47860926,0.7169623,0.24219392,0.6337058,0.1484033,-0.10504316,0.5346205,0.15350547,0.09665064,-0.07910558,-0.3443603,-0.18530783,0.1499004,0.07036235,0.44442436,0.09032362,0.44788486,-0.22244233,-0.3958248,-0.082134046,0.28580585,0.037581682,-1.0276212,0.26626205,0.022502385,0.6460875,0.6116126,-0.16675392,0.16733009,0.4345819,-0.279896,0.107178226,0.39468926,-0.103265114,-0.643852,0.47449574,-0.40891713,0.2679407,-0.22289136,0.16289029,-0.10414056,0.19069569,0.16890056,0.95413023,-0.075236164,-0.023499493,-0.10565661,-0.1635091,0.14606068,-0.52212274,0.28609383,-0.45409408,-0.18900433,0.57431877,0.4522413,0.3300121,-0.07505496,0.0069547687,0.09730645,-0.17975691,0.27095687,0.05281386,0.095070824,0.07361173,-0.809665,-0.3444142,0.80976415,0.11074098,-0.022765096,0.022084204,-0.32175776,0.40223557,-0.12400421,-0.114514105,-0.0026088862,-0.59457624,-0.110241905,-0.17087437,-0.4453333,0.1543118,-0.17958252,0.3048182,0.29049122,-0.09243755,-0.440321,0.011761537,0.394578,0.5514447,-0.12725395,-0.38248575,-0.49787518,0.04673756,0.3259571,-0.1292949,0.023353457,-0.08359191,-0.049429115,-0.54685366,0.56343746,-0.02192213,-0.3381721,0.0032194233,-0.18850829,-0.18931256,0.5558496,-0.1356484,-0.010489435,0.014374178,-0.118827336,-0.26981562,-0.05962408,-0.08965523,0.17713341,0.31374773,-0.22262059,-0.048935,-0.2379993,-0.1187489,0.4213289,0.014657135,0.3075449,0.4231786,0.34337524,-0.39104223,-0.28494665,0.14233747,0.4390051,0.1035574,-0.10082586,-0.15670505,-0.37272498,-0.15893814,-0.22903347,-0.25677535,0.19570774,0.052849777,-0.685723,0.75720143,0.11104759,1.3191789,-0.020967295,-0.24831173,-0.21295816,0.45226353,0.09204389,0.12065169,-0.2838075,1.108079,0.55237603,-0.0065874136,-0.18426694,-0.4901059,-0.1385716,0.0945776,-0.12653616,-0.26366588,0.11317647,-0.5588113,-0.5992769,0.31682867,0.2470265,0.026380774,0.16539901,0.16483101,0.13957126,0.06818858,0.6125125,-0.5641576,-0.06415016,0.051246226,0.25087345,0.20559905,0.20293346,-0.4132315,0.31478527,-0.40004683,0.22134934,-0.15350524,0.17543444,-0.065917626,-0.16399327,0.22122517,-0.042968955,0.5148567,-0.3347584,-0.467063,-0.14807048,0.61631656,-0.12783375,0.09066464,0.63500684,-0.21215703,0.20086119,0.056588013,0.7563592,1.387,-0.01988964,0.06758605,0.34672868,-0.32020304,-0.6727656,0.37511784,-0.100875184,0.11037568,-0.10903808,-0.19036879,-0.5609559,0.23153001,0.22635548,-0.039094087,0.19243965,-0.35245174,-0.32319066,0.3898431,-0.39076173,-0.28814816,-0.28791195,0.33431652,0.8257961,-0.5873317,-0.22381867,0.036069777,0.1098945,-0.31999376,-0.54004204,-0.17710637,-0.32381195,0.4821417,0.20242819,-0.12549534,-0.12851194,-0.013010764,-0.2217628,0.0816875,0.3213765,-0.40942815,0.12595853,-0.051914968,-0.19758508,0.81035763,-0.19601056,-0.0657223,-0.66879964,-0.41760108,-0.9711539,-0.39764327,0.71437305,0.115133695,-0.044907805,-0.58543676,0.062252674,0.19197583,-0.24359182,0.038847033,-0.48731497,0.4648728,0.09306416,0.5007306,-0.08558107,-0.6982091,0.14496213,0.1299846,-0.030846275,-0.6092954,0.535517,-0.081090204,0.80279285,0.041851915,0.008913485,0.33179423,-0.3536447,-0.12825094,-0.21181448,-0.2872031,-0.73683524,0.11966784 +4,0.443805,-0.34984604,-0.54177845,-0.06778514,-0.27440813,-0.11081444,-0.12182994,0.3305448,0.29875264,-0.11133403,-0.2566531,0.12255074,-0.09610592,0.39969245,-0.07567973,-0.8430162,-0.17277773,0.29881606,-0.86845046,0.71823037,-0.46147698,0.42229584,0.13321398,0.29390123,0.050285775,0.23266728,0.13634065,-0.006304992,-0.07020875,-0.15676372,0.06180271,0.04473565,-0.5691623,0.28014472,-0.14184144,-0.37519678,-0.1100512,-0.4237049,-0.22344258,-0.8374856,0.27180356,-0.8200102,0.64240706,-0.08338689,-0.24555305,-0.13026036,0.13184047,0.3712981,-0.371233,0.051845312,0.32611975,-0.16653886,-0.36976427,-0.23032644,0.20553434,-0.41138932,-0.5427596,-0.06969359,-0.51779,0.0010761534,-0.0859079,0.25807497,-0.29705933,0.098973885,-0.27871862,0.3830647,-0.41412732,0.019718958,0.28170872,-0.023502022,0.07402492,-0.602893,0.10621558,-0.15522698,0.45561734,0.03815582,-0.33355328,0.37159246,0.35511497,0.4286047,0.29019094,-0.31144714,-0.14404488,-0.0014536828,0.066486515,0.40297982,-0.2199349,-0.36242983,-0.119782925,0.21014749,0.5984382,0.25225335,0.14258696,-0.22795267,-0.076743565,-0.2326762,-0.03271074,0.55003947,0.58834964,-0.19605374,-0.2214805,0.4501691,0.46894404,0.29352826,-0.024978569,-0.058901787,-0.09023634,-0.5828511,-0.19319889,0.10826712,-0.104528345,0.54783297,-0.16866057,0.111732736,0.6484114,-0.107587084,-0.2695861,0.15797327,-0.06562201,-0.08454609,-0.20329584,-0.3471754,0.29218724,-0.5325661,0.025861373,-0.39933035,0.61998624,0.109855704,-0.85222197,0.3285591,-0.5743141,0.15787195,-0.072961636,0.7082239,0.88614464,0.6828915,0.22784315,0.7880622,-0.294738,0.24210857,0.02706028,-0.38045582,0.073178925,-0.18402256,-0.100740485,-0.5264953,-0.002819108,-0.34117118,-0.17481089,0.13269503,0.40256187,-0.63014877,-0.24085544,-0.032928802,0.56868106,-0.2862704,-0.12139385,0.9871036,1.0004605,1.1294343,0.16095679,1.2061098,0.3500951,-0.19267742,0.01369427,-0.3705395,-0.7738549,0.2442974,0.30876145,-0.2568684,0.4333658,-0.06481352,-0.08307685,0.341933,-0.34887984,-0.17424473,-0.11504738,0.39878908,-0.069177516,-0.3073032,-0.30677494,-0.12961076,-0.008476696,0.03852127,0.039171,0.29004636,-0.23086762,0.45745808,0.07498254,1.1061089,-0.14231822,0.029344933,-0.010160087,0.25021598,0.30151907,-0.30377755,-0.111590885,0.2726334,0.522056,-0.08630676,-0.6736482,0.16819918,-0.4594654,-0.46997574,-0.19832458,-0.108115815,-0.11633842,0.09549241,-0.35069826,-0.29796377,0.033423793,-0.09951433,0.4451916,-2.5015354,-0.33423635,-0.16556264,0.44993386,-0.26811495,-0.20010647,-0.010703291,-0.51596016,0.39288568,0.104738355,0.5087324,-0.7920107,0.65259606,0.2791245,-0.66975003,-0.15672931,-0.7654982,-0.03416651,0.094401546,0.40901068,-0.016987631,-0.026216421,-0.00168487,0.06272137,0.59416705,-0.061773565,0.13834395,0.6321763,0.5074381,0.035867453,0.3712024,-0.034863625,0.72371644,-0.42826286,-0.14785452,0.3098099,-0.34767637,0.42741606,-0.03742242,0.05644747,0.6133181,-0.6284753,-0.85346174,-0.5582698,-0.16236508,1.0060656,-0.26545617,-0.38456264,0.19026934,-0.30393776,-0.1596829,0.04579727,0.46827865,-0.22690476,-0.07079869,-0.7541572,-0.045364566,-0.018130269,0.2714828,-0.07034213,-0.11076845,-0.35748497,0.7467829,-0.099259056,0.5718921,0.33574295,0.3498251,-0.39020494,-0.4222642,0.079427205,0.7131228,0.503769,-0.076153465,-0.10404278,-0.16301452,-0.13341692,-0.05185161,0.088136606,0.6601719,0.55423695,-0.11295331,-0.008274888,0.28558564,-0.11690613,0.07004479,-0.14802177,-0.1513255,-0.20707515,0.032407966,0.42078575,0.88867337,-0.12300219,0.59330255,-0.17023274,0.27492923,0.07143646,-0.6929162,0.7156364,0.6184121,-0.26168764,-0.13093407,0.5164632,0.2107376,-0.10355925,0.5180438,-0.5234146,-0.22663581,0.49983093,-0.1386724,-0.3343521,0.16958252,-0.22518349,0.17792661,-0.77211887,0.50330174,-0.53876036,-0.55489415,-0.60097635,0.07017262,-2.6001112,0.25826505,-0.27349487,-0.083470725,-0.31553108,-0.0927739,0.26450196,-0.7636122,-0.738392,0.24156703,0.3583424,0.6129457,-0.08064033,0.13914669,0.025762673,-0.40394992,-0.13296916,0.29298028,0.1846977,0.232828,-0.07946717,-0.39290807,-0.19324888,0.07659681,-0.47717986,0.120551236,-0.56251436,-0.5254292,-0.05596701,-0.6376395,-0.19569243,0.68047297,-0.30164057,-0.00693469,-0.18094337,0.0601029,-0.09495652,0.118199505,-0.028866228,0.277654,0.14134802,-0.23565693,0.24395251,-0.12955837,0.30692333,0.011686106,0.40741116,0.1503642,-0.15094323,0.31403086,0.5154998,0.7808313,-0.2695805,0.80210066,0.6227214,-0.121198654,0.18430576,-0.11629016,-0.42369124,-0.64350086,-0.41531903,0.0926775,-0.45421267,-0.42362887,0.15356341,-0.3898379,-1.0410691,0.4479272,-0.04249386,0.21535842,-0.017238757,0.18531151,0.4412234,-0.15126263,0.087814845,-0.15176125,-0.2593333,-0.3587081,-0.27063277,-0.6450558,-0.4540944,-0.038212955,1.2795953,-0.25989124,0.20198894,-0.08859669,-0.27570575,0.13967228,-0.06255867,-0.08786757,0.22347607,0.24070178,-0.12576017,-0.60335416,0.31581494,-0.15586302,-0.09243335,-0.5075313,0.37047818,0.7016533,-0.57023394,0.52127236,0.2980523,-0.106865235,-0.15213081,-0.7405649,-0.084700994,0.17545196,-0.1592904,0.4465477,0.27910945,-0.73694927,0.49806675,0.32727972,-0.52650285,-0.78304845,0.280278,0.10417851,-0.26904464,-0.1287641,0.34633487,0.117014065,-0.15383725,-0.3330875,0.4601243,-0.30448455,0.35383043,-0.01307869,-0.24611366,0.060608607,-0.17497213,-0.3744204,-0.81201756,0.17642792,-0.6165136,-0.20291097,0.32465944,-0.0038312376,0.1547073,-0.052376866,0.25509536,0.54592806,-0.4706702,0.18157108,-0.0051161177,-0.47427914,0.23001477,0.5670287,0.37311822,-0.3005516,0.32727858,0.19161479,-0.19090499,0.026528835,0.10308372,0.54807556,0.071742766,0.29748058,-0.010844682,0.043303855,0.34004933,0.8853909,0.08302448,0.27866465,-0.06814565,-0.25239035,0.23265973,0.015655216,0.38076234,-0.15768838,-0.37046078,0.052901182,0.26907524,0.11668988,0.5823587,0.29479617,0.23699905,-0.051146444,-0.32045624,-0.07644721,0.11991747,0.101686105,-1.2979718,0.5842966,0.18131621,0.9551102,0.51301473,0.21114753,-0.1212132,0.67791575,-0.29966733,0.062195394,0.33296177,-0.119092636,-0.37875694,0.4451711,-0.71322757,0.32087448,-0.02380016,-0.019052727,0.2639361,-0.035284333,0.22063425,0.77948666,-0.15839954,0.03369807,-0.044766936,-0.052744243,-0.10960772,-0.33690712,0.016899185,-0.44392422,-0.4384663,0.92937285,0.28964043,0.30032095,-0.14418276,0.0332584,0.1675214,-0.19620578,0.18508814,-0.099334136,0.071898736,-0.0054119057,-0.341708,-0.10090289,0.52372986,-0.03810731,0.12292739,-0.2267796,-0.22137806,-0.06952502,-0.2535611,0.0075555616,-0.10726238,-0.8463529,0.17313814,-0.37218043,-0.2293082,0.31048536,-0.21321766,0.088132516,0.22345768,0.102892585,-0.23755537,0.3497928,0.0796419,0.7728265,0.07517525,-0.12176384,-0.22211795,0.34777644,0.20057906,-0.27152342,0.34279045,-0.3496355,0.009224913,-0.5664443,0.65254515,0.00016906964,-0.4334434,0.18990946,-0.16037385,0.04341719,0.40618414,-0.3782036,-0.24227452,0.17526361,-0.11647829,-0.36593026,-0.16227196,-0.2508697,0.18099825,0.5311183,0.21092646,-0.1063142,-0.19333093,-0.18278392,0.5473571,0.21859516,0.5151671,0.37459165,0.051107194,-0.3724193,0.08041128,0.2638936,0.46366912,0.30436698,-0.06633722,-0.685136,-0.34771913,-0.36413142,0.0902553,-0.140324,0.19567822,-0.17709926,-0.25689435,0.8081736,0.18239631,1.2307364,-0.030685663,-0.30388644,0.01817195,0.61100894,-0.09693252,-0.1062436,-0.30500767,1.0182246,0.68443435,-0.088824384,0.055744763,-0.463902,-0.20794581,0.35683814,-0.43451783,-0.08644681,0.050032623,-0.59088707,-0.3486466,0.25604126,0.06494629,-0.10756616,-0.10833331,-0.06897782,0.15748262,0.08190302,0.13850185,-0.67062104,-0.10537064,0.13181427,0.21070156,0.0022293436,0.14740226,-0.5462312,0.2675479,-0.7330137,0.225153,-0.32957488,0.19734608,-0.069005154,-0.38126424,0.13495263,0.07396597,0.17872773,-0.4089467,-0.42832035,-0.057321697,0.49323848,0.043619495,0.16359986,0.6182462,-0.303749,0.0684078,0.21678652,0.5194877,1.1007833,-0.3724619,-0.08675154,0.1829268,-0.46326947,-0.6570412,0.3918376,-0.20602994,-0.06398616,-0.28748205,-0.3253974,-0.5596893,0.3526829,0.17831981,0.24417876,0.0024694162,-0.7928308,0.04796159,0.34304303,-0.2992638,-0.1821288,-0.23594114,0.28462905,0.77682245,-0.32165766,-0.45245823,0.20555942,0.3094984,-0.21649145,-0.44526622,-0.12213495,-0.30806133,0.18840013,0.15620883,-0.3639696,-0.19573666,0.049523983,-0.40255922,0.10070071,0.1304345,-0.30025196,0.15617552,-0.21871595,-0.0115100015,0.78570575,-0.2904952,0.06460782,-0.5708436,-0.47880608,-0.9408618,-0.39549622,0.18807529,0.31303352,-0.10072415,-0.883708,0.08857863,0.011623106,-0.15469371,-0.004784039,-0.41578564,0.44603077,0.17173086,0.39325833,-0.33132964,-0.94656056,0.17708293,0.22396556,-0.12578312,-0.47332913,0.5937339,0.04902684,0.8797048,0.044125598,-0.027305828,-0.028502371,-0.5740775,0.09125571,-0.33544612,-0.13294557,-0.60683197,0.023256037 +5,0.73479146,-0.272064,-0.34382078,-0.150361,-0.2869007,0.2271132,-0.013941988,0.5474164,0.20127398,-0.61993295,-0.39537477,-0.37784037,0.023185229,0.06332916,-0.30668348,-0.54260594,-0.08343447,0.15269195,-0.14866133,0.5603099,-0.45283648,0.523786,0.13582921,0.3401443,0.2475972,0.1713989,0.16439858,-0.18880089,-0.43511474,-0.39128718,-0.13509043,0.2566466,-0.6151062,0.16663757,-0.25643858,-0.53278214,0.080939025,-0.54107314,-0.42387602,-0.6782873,0.28108862,-1.1004357,0.50365955,0.10855621,-0.20281328,0.3046251,-0.11363074,0.04787731,-0.15687007,0.21040714,0.17587756,-0.2536101,0.11538315,-0.40287283,-0.40308055,-0.4866757,-0.5946118,0.0051488453,-0.34347787,-0.21314888,-0.21681662,0.058229584,-0.15878649,-0.15110113,-0.02725078,0.22220469,-0.5385589,0.09795836,-0.018769741,-0.044631302,0.28936398,-0.53577685,-0.2759837,-0.2879994,0.005938057,-0.34765565,-0.1253899,0.20914598,0.342679,0.40302768,-0.06114729,-0.0815557,-0.32748398,0.07144725,0.29756463,0.4989121,-0.15001231,-0.57699925,-0.17114998,-0.080198415,0.44454908,0.4501792,0.42094037,-0.22372377,0.024538843,-0.062350124,-0.4284846,0.41506943,0.6210192,-0.35166636,-0.20982093,0.28754535,0.38276526,0.26550296,-0.057995293,0.08793882,-0.053212594,-0.36106893,-0.22448511,0.15908866,-0.37501428,0.70458364,-0.15468271,0.088795,0.74685365,-0.34916124,0.20905112,0.10391829,0.111218445,-0.21679205,-0.22876419,-0.27470157,0.2836974,-0.42162874,0.2045743,-0.30839708,0.9454829,0.24529548,-0.62040925,0.33980212,-0.6149437,0.07432351,-0.15936701,0.5548701,0.31211212,0.56143695,0.31220886,0.67934006,-0.5955498,-0.08437866,-0.004972709,-0.3262687,0.030888328,-0.1928979,-0.14145704,-0.32051328,0.027780915,0.004967764,-0.18794644,0.011884476,0.61112565,-0.5386768,0.05133745,0.06258712,0.79512817,-0.3870031,-0.017852202,0.90528995,1.1174265,0.9890866,0.10929612,1.4417349,0.4263176,-0.26940468,-0.077674694,-0.1464445,-0.8616102,0.20717208,0.38322642,-0.8889575,0.38129926,0.20755476,-0.023234174,0.08207343,-0.43533888,-0.027242826,-0.27725124,0.07950673,0.01264964,-0.2065777,-0.4242196,-0.28024134,-0.25529233,0.07628758,-0.00343058,0.23476909,-0.3160272,0.27153054,0.2512296,1.6572732,-0.0070498437,-0.07435859,-0.0816127,0.5805657,0.26180208,0.13481976,0.11300092,0.4472761,0.2980821,0.061835453,-0.5166604,-0.0065963217,0.009517923,-0.6477854,-0.072367944,-0.23033321,-0.118351854,-0.1104291,-0.4072918,-0.15427874,-0.0849654,-0.24848413,0.53195757,-2.1255288,-0.03587826,0.00689845,0.4696802,-0.15308648,-0.38955823,0.07001782,-0.33043122,0.38912883,0.34705445,0.42512563,-0.9140749,0.3299671,0.7054665,-0.271501,-0.2517644,-0.53856224,-0.11549282,-0.09366352,0.27255973,-0.07804351,0.04338487,0.12907542,-0.12621984,0.52807194,0.088544585,0.2242387,0.1744811,0.5135762,-0.017302513,0.37290072,0.108211935,0.49406755,-0.10210195,-0.13263933,0.40848747,-0.42061862,0.362437,-0.031175384,0.10183501,0.44838914,-0.52590066,-0.67334086,-0.66421884,-0.54802704,1.1064576,-0.18785764,-0.40535927,0.24803585,-0.11692653,-0.43736246,-0.28869024,0.43971753,-0.2541917,-0.0335764,-0.72856635,-0.06440199,-0.048841257,0.0981822,-0.020673908,0.22334307,-0.2826561,0.7573853,-0.03917437,0.39928058,0.40848252,0.1830556,-0.23704512,-0.64814764,0.05961038,1.0859007,0.4778253,0.35483515,-0.29919645,-0.17417534,-0.22435696,-0.11242825,0.1962695,0.51014423,0.8231377,-0.08582586,0.020351574,0.29652622,0.13239998,-0.08498138,-0.1614265,-0.39465716,-0.049593538,-0.062095124,0.60249686,0.60285187,-0.337281,0.45381558,-0.28224388,0.5114022,-0.1744513,-0.425572,0.42917338,1.1201215,-0.13805923,-0.08515689,0.6527408,0.6092451,-0.56606096,0.47020665,-0.85859895,-0.24024649,0.39851525,-0.06591135,-0.43000197,0.30874634,-0.23032297,0.15822425,-0.934653,0.6096955,-0.021947077,-0.3212397,-0.56206447,-0.16244046,-2.7711604,0.10082698,-0.19909985,-0.2936443,-0.19107132,-0.35110614,0.10918387,-0.57495403,-0.70500594,0.04660195,-0.030894814,0.37324575,0.11770179,0.32213143,-0.14475568,-0.24977905,-0.25585696,0.1949172,0.01601398,0.33755228,-0.25064895,-0.52382046,-0.15834644,-0.18044157,-0.29671633,-0.048592374,-0.5762411,-0.5699141,-0.111762285,-0.50180715,-0.29833776,0.6534043,-0.4676725,0.027828922,-0.23405248,-0.14706384,-0.41581425,0.27053797,0.1828758,0.013212184,-0.053389106,-0.03438425,-0.027074764,-0.27779174,0.3236531,0.11194349,0.20276652,0.41272926,-0.28042483,0.060516685,0.38564298,0.65130126,-0.0023902468,0.85968786,0.1962141,-0.2565122,0.33851138,-0.32597294,-0.2793361,-0.7842739,-0.38445878,-0.12798156,-0.5132747,-0.6206035,-0.13129961,-0.41017047,-0.72375137,0.575988,-0.080450214,0.2980257,0.038039345,0.21541756,0.6145912,-0.04225864,-0.16531521,0.17692685,-0.16114114,-0.5771683,-0.35086665,-0.6784952,-0.21452378,0.2863309,0.8920302,0.015633151,-0.16000436,0.2850968,-0.19679673,0.06650388,-0.09570179,-0.20952363,-0.20115788,0.47153914,0.025194049,-0.67071176,0.52408296,0.20489502,-0.3103073,-0.4264703,0.08539343,0.8098471,-0.8388358,0.38970837,0.44915244,0.04589195,0.052464068,-0.39655796,-0.24992071,-0.17149341,-0.23076223,0.41779396,0.37029555,-0.65194535,0.3068119,0.51482385,-0.27042785,-0.7145872,0.6976239,-0.17115493,-0.1366754,0.020811727,0.33055958,0.13710356,-0.03609172,-0.11228513,0.3204575,-0.58939797,0.37619147,0.3895488,0.011170581,0.11795465,-0.07846389,-0.16316651,-0.99716455,0.30572778,-0.41520444,-0.49881124,0.23705971,0.036063243,-0.12997197,0.310981,0.3748395,0.3455249,-0.4485278,0.22155072,-0.05437729,-0.22288054,0.33804235,0.41620567,0.50723714,-0.36741892,0.65950024,-0.021126708,-0.0867427,-0.12017479,0.22814588,0.34797385,0.21581869,0.14189278,0.36365333,-0.30156037,0.32441702,0.73491555,0.31738535,0.53463715,0.25964746,-0.12518954,0.3668301,0.20718579,0.4524406,0.0027983587,-0.49338642,0.059577566,-0.09161507,0.14356105,0.31628653,0.10054326,0.27101016,-0.18379517,-0.26330528,0.028903587,0.4385867,-0.1294793,-1.2272719,0.09164548,0.06590355,0.74342614,0.61834437,-0.15148942,0.22252,0.4000505,-0.23262765,0.14439677,0.52653724,0.10178453,-0.63899654,0.54705733,-0.570303,0.26808578,-0.19727968,0.06605271,-0.12901144,-0.0056700804,0.42881155,0.8050565,-0.06174086,0.055060532,-0.09646853,-0.25572237,0.0054813325,-0.60654885,0.05314515,-0.36391667,-0.30176952,0.7045726,0.34716716,0.3955277,-0.17301746,0.067800544,-0.06212535,-0.22506885,0.27148557,0.1895883,0.11450377,0.0007616803,-0.6498225,-0.24960862,0.60101956,-0.2355141,0.025643164,-0.029455205,-0.35174856,0.28697228,-0.2643489,-0.1691354,0.11669403,-0.8296531,-0.088115655,-0.32962462,-0.5576532,0.24155302,0.18613161,0.13722011,0.23610991,-0.0707872,-0.3236956,0.08694842,0.54244405,0.6639194,0.011629532,-0.25646946,-0.3713621,0.28791675,0.2795308,-0.33323935,-0.13443094,0.049017325,-0.02030616,-0.53384745,0.5047334,0.015904153,-0.2998682,0.0152772665,-0.11981132,-0.083364934,0.54608476,-0.057751793,-0.3264493,0.13593374,-0.10069394,-0.19762027,-0.04818907,-0.20221107,0.20011032,0.21190043,-0.22670364,-0.06943161,-0.08067375,-0.07953454,0.24235143,-0.04591887,0.45649385,0.4265554,0.044699077,-0.44541702,-0.16211258,0.057038862,0.50256854,-0.06788025,-0.086851954,-0.03461044,-0.5603728,-0.2636893,0.03243662,-0.18525158,0.28802267,0.19371128,-0.46978053,0.816235,0.11910665,1.1180058,0.09206755,-0.35825288,-0.023711642,0.57503146,-0.016954875,-0.15039556,-0.38036394,1.237287,0.5264466,-0.2076592,-0.19976074,-0.30536178,-0.13537283,0.28497508,-0.24236496,-0.12183625,0.01055558,-0.7557089,-0.18327336,0.22062899,0.37238148,0.08267372,0.009820933,0.20846218,0.38941026,0.13957298,0.35267672,-0.44289193,-0.27894226,0.33926585,0.14065382,-0.058255076,-0.0069698915,-0.3711383,0.338088,-0.5723165,0.089104,-0.4121544,0.107029974,-0.19519718,-0.35272333,0.096327394,-0.06859676,0.33429933,-0.42277083,-0.4970341,-0.37863386,0.3146756,-0.021635205,0.20024876,0.4502547,-0.31212482,0.1700614,-0.09175094,0.4843928,1.3536233,0.011980474,-0.0077422857,0.43168047,-0.6128896,-0.68981504,0.41350973,-0.31154904,0.10845655,-0.09915784,-0.36486837,-0.603795,0.25184438,0.21086152,-0.005387999,0.24136156,-0.5545159,-0.08298615,0.50230324,-0.33559194,-0.27297404,-0.29403725,0.22065485,0.75595045,-0.42046115,-0.3134471,0.21420361,0.22493215,-0.45555532,-0.4324007,-0.1570559,-0.33877102,0.5031981,0.0035860986,-0.32933304,-0.014487301,-0.08763528,-0.36499846,0.059824374,0.21390784,-0.39521098,0.1631279,-0.41094744,0.04881059,0.9584009,-0.07836267,-0.065453194,-0.64459485,-0.5606194,-0.90626335,-0.516882,0.44256878,0.31426445,0.059246745,-0.40782574,0.12746805,-0.06628731,-0.08524867,-0.010015746,-0.35232353,0.5381887,0.24285157,0.5284238,-0.15290187,-0.8480812,0.2162621,0.20592932,-0.114728,-0.7334385,0.5817689,-0.17717369,0.75908226,0.10791707,0.035647407,0.24209774,-0.64769864,0.12698786,-0.12089991,-0.18558608,-0.6833115,0.20444894 +6,0.49967554,-0.005362355,-0.6118299,-0.27165684,-0.4953663,0.20572762,-0.24548474,0.22578453,0.16468816,-0.3453899,0.03548696,-0.104678914,-0.075576656,0.30582023,-0.08109404,-0.7132856,0.17395552,0.21218468,-0.6500741,0.2984099,-0.4356563,0.36247054,0.017008387,0.3494233,0.07854388,0.3197039,0.11613001,0.033480525,0.004532084,0.037185904,0.06950168,0.47524303,-0.650784,0.20785652,-0.066062674,-0.27756476,-0.070365265,-0.29195654,-0.25790867,-0.66109216,0.17554556,-0.65317136,0.4432887,-0.12611257,-0.41143787,0.10662028,0.05420567,0.26035193,-0.30329394,0.059724636,0.3105045,-0.3310727,-0.12816486,-0.18212628,-0.31442496,-0.5899411,-0.55462325,-0.09759769,-0.598287,-0.034139518,-0.34691587,0.23075333,-0.27763534,0.011871703,-0.08357443,0.31303388,-0.42434475,0.16674796,0.21036468,-0.24077483,0.1010745,-0.2757076,-0.048432652,-0.14292343,0.23184894,-0.011427492,-0.39566663,0.26283634,0.30947676,0.5023751,0.1081518,-0.3123825,-0.27223673,-0.10433073,0.07026782,0.48998684,-0.1051659,-0.06541465,-0.29077026,-0.10340719,0.34018895,0.0795486,-0.046950556,-0.44997507,-0.04579874,0.081937015,-0.18287416,0.25852892,0.53218436,-0.39013046,-0.20201299,0.36708623,0.46526256,0.05841674,-0.2734253,0.2928254,-0.12355547,-0.5346539,-0.17279331,0.13526635,0.052733954,0.38223782,-0.18802404,0.0363396,0.8467388,-0.109256335,-0.12704869,-0.09159507,0.06955048,0.052865017,-0.24094158,-0.04655762,0.1491521,-0.596253,0.05390094,-0.0903944,0.80206585,0.08880526,-0.843006,0.3568372,-0.4791901,0.105778486,-0.12758088,0.5796051,0.9558332,0.42935967,0.14690891,0.78943056,-0.33755904,0.12103118,-0.039854724,-0.3732579,0.22343211,-0.23098126,0.030242205,-0.45948762,0.16318269,0.045117315,-0.11752468,0.15563214,0.37274402,-0.42685205,-0.09337937,0.042363405,0.5421042,-0.47091305,-0.060143877,0.61747575,0.8688613,0.96077645,0.15819281,1.3636032,0.42177,-0.09027512,0.27270097,-0.29431972,-0.49983618,0.15622143,0.26667714,0.25456092,0.2053937,0.21298058,0.24447447,0.5807333,-0.2533812,0.0048441067,-0.012838532,0.14053106,-0.029407183,-0.07695156,-0.42785913,-0.26389673,0.23283845,0.15075794,-0.14922777,0.33950165,-0.15282679,0.43297005,0.18230218,1.3133161,0.14327243,0.045958318,-0.01934874,0.40961403,0.19480784,-0.20006402,-0.11563788,0.31515485,0.35911828,-0.104961395,-0.3667811,-0.040561438,-0.18014571,-0.41960248,-0.23071319,-0.50055146,-0.09258161,-0.17569862,-0.5674071,-0.12745059,0.1824502,-0.2972738,0.44968855,-2.4381156,-0.2787866,-0.13076422,0.26278707,-0.044974007,-0.34808594,-0.475378,-0.49367478,0.18182169,0.31313372,0.35284412,-0.5848787,0.5115042,0.3050934,-0.40299547,-0.18206589,-0.6481279,-0.08117361,-0.12577671,0.3339816,-0.034701683,0.051705487,-0.1287741,0.34471327,0.7314905,-0.16037497,-0.07772742,0.17060639,0.3375886,0.034313098,0.5770011,0.22318923,0.62283146,-0.22200648,-0.2477369,0.3198641,-0.39291078,0.27059165,0.19638215,0.13447754,0.42899632,-0.3826832,-0.93998927,-0.5677449,-0.27915996,1.1832378,-0.45168427,-0.2712835,0.28325146,-0.22233725,-0.29903185,0.03019403,0.35613823,-0.061225414,0.18144354,-0.68425417,0.059518553,0.01569872,0.13825205,-0.09281495,0.1275664,-0.12908565,0.67228115,-0.2142255,0.38107485,0.35584408,0.123643495,-0.047893003,-0.5580463,0.06642834,0.8486676,0.30353236,0.14009301,-0.21750611,-0.24121654,-0.17185478,-0.17525624,0.24585271,0.49517328,0.5533418,-0.0043423474,0.1457467,0.2834507,-0.15886882,-0.03411776,-0.19002748,-0.29822925,0.013018411,0.09954755,0.62087524,0.6142378,-0.17277665,0.40807867,-0.16438176,0.16693807,-0.09667182,-0.5815406,0.39763397,0.9441662,-0.20101064,-0.26684523,0.4298333,0.3593739,-0.37241372,0.35184643,-0.55521286,-0.27441925,0.549268,-0.110405296,-0.39108774,0.08380042,-0.342058,0.06541626,-0.82531697,0.37229586,0.05138555,-0.71330565,-0.49330303,-0.1584171,-3.6018813,0.13680035,-0.095471725,-0.15956903,-0.03922618,-0.22423929,0.3112175,-0.5095421,-0.44229412,0.021748144,0.013857922,0.52199167,-0.045789026,0.026910502,-0.3656268,-0.3917981,-0.13929325,0.21914712,0.11856086,0.3391727,-0.087850735,-0.3983205,0.14152488,-0.34929356,-0.49638754,0.020830475,-0.6749504,-0.5901474,-0.08733734,-0.43761918,-0.2831269,0.68742687,-0.49680248,0.02200938,-0.25374037,-0.044068377,-0.25598523,0.2943203,0.2492247,0.1635048,0.08818822,0.15912095,-0.1225985,-0.3291925,0.14259338,0.10827776,0.28123617,0.40275332,-0.06566627,0.17659225,0.79182976,0.5829097,0.058602672,0.83400047,0.34784225,-0.0827799,0.21651131,-0.30586982,-0.20195201,-0.7148187,-0.34983233,-0.41143653,-0.4629817,-0.34339547,0.00047251582,-0.3053046,-0.8194623,0.4812474,-0.027233332,-0.03883186,-0.13179767,0.20580378,0.3634124,-0.11289996,-0.035653263,-0.080223,-0.3235162,-0.51348996,-0.44281304,-0.65163267,-0.71523356,0.15749882,1.3055425,-0.16588247,0.028208494,-0.10738071,-0.26995575,0.08570935,0.21575068,0.17701446,0.23570098,0.40426767,-0.17394826,-0.6623713,0.3216309,-0.27735612,-0.07759088,-0.6369814,0.045342278,0.692608,-0.6879519,0.5385511,0.3016315,0.20039377,0.09444763,-0.63675404,-0.28435907,-0.05393315,-0.2569352,0.62158865,0.1944685,-0.6963811,0.51785874,0.044662762,-0.22111279,-0.5718675,0.49710685,-0.1404776,0.017568173,0.14060435,0.33707774,-0.0287686,-0.2126229,-0.045089733,0.31847894,-0.45081335,0.2856677,0.4182711,-0.028154392,0.29491964,-0.09616865,-0.0747643,-0.6198287,-0.341707,-0.472893,-0.29544255,0.03074488,0.06415415,0.08407713,0.056196257,0.0039694253,0.3906714,-0.240115,0.11696774,-0.19424263,-0.31842005,0.40257192,0.49622613,0.3971979,-0.32878023,0.5601886,0.12377044,0.13840695,-0.08287,0.09757414,0.52311766,0.12636992,0.3905362,-0.1588464,-0.13805646,0.0662667,0.73935986,0.2847243,0.26976317,0.064434156,-0.18207091,0.2574387,0.2198072,0.11074944,-0.1297325,-0.18490025,-0.08631824,-0.09899032,0.26202214,0.28543413,-0.01324698,0.41010493,-0.13296884,-0.20833966,0.2903448,-0.0048172586,0.063283265,-1.3760532,0.32039905,0.29444072,0.5568278,0.33857912,0.082870625,0.08723843,0.54006636,-0.35300183,0.025727639,0.439813,-0.06939554,-0.2951909,0.51186657,-0.7448341,0.5461654,-0.13549134,0.04498659,0.18612619,0.31729975,0.33583742,0.92122626,-0.109733485,0.11244135,0.019851856,-0.3743492,0.1859251,-0.32018888,0.07603615,-0.54733574,-0.33168337,0.718444,0.4287817,0.28255355,-0.3794652,-0.10776289,0.0059647504,-0.17438118,0.046105705,0.013161626,-0.03567162,-0.07424469,-0.59163517,-0.29116747,0.5613277,-0.08175066,0.023952581,0.16504055,-0.33281717,0.36350042,-0.019356199,-0.03865262,-0.13024946,-0.49696213,-0.12745196,-0.24768458,-0.5467142,0.48439962,-0.35399604,0.25735858,0.3143845,-0.003938061,-0.27887663,0.4236471,0.15382417,0.6821108,-0.042212322,-0.25718448,-0.23890084,0.15898773,0.34536332,-0.21514206,-0.09565331,-0.4124058,0.089422524,-0.53586715,0.22854842,-0.3449408,-0.28532907,-0.0042917877,-0.1219526,0.05341818,0.3441096,-0.07180983,-0.15756556,0.04552698,0.113076374,-0.22751433,-0.072072774,-0.288765,0.26967356,-0.09339531,-0.14957713,0.00927715,-0.22039026,0.065118626,0.34021658,0.077097856,0.27429047,0.23777527,-0.14060569,-0.30901486,0.05686866,0.07654264,0.332224,0.100266576,-0.12065505,-0.29252982,-0.24311782,-0.33112603,0.2663098,-0.1422636,0.1674806,0.14700903,-0.41827238,0.9416137,-0.11139108,1.1973822,0.07857083,-0.34336737,0.23135486,0.47435346,0.124287575,0.18440802,-0.20276418,0.71803653,0.5833611,-0.08514167,-0.33716658,-0.37122908,-0.20541109,0.12508476,-0.28167358,-0.26015347,-0.06395945,-0.8014374,-0.15534179,0.039241403,0.113043256,0.2849952,-0.12571132,-0.09345791,0.15358649,0.029140122,0.39418134,-0.48036346,-0.0067601986,0.28969473,0.353092,-0.079099655,0.16236186,-0.2591653,0.44551122,-0.6346402,0.15774435,-0.41884387,0.10982862,-0.21723917,-0.1793473,0.18853456,0.07867865,0.31189555,-0.22181332,-0.16523449,-0.3201408,0.72201145,0.13757926,0.26886398,0.6656977,-0.24009591,-0.16452512,0.20156574,0.26465347,1.1809131,-0.11094239,-0.016140597,0.41730332,-0.23471574,-0.43843138,0.08114388,-0.3842622,0.13777637,0.017095994,-0.3918228,-0.30035174,0.28742275,0.1025006,0.003893081,0.10672169,-0.4230918,-0.07221669,0.43691304,-0.32763818,-0.26843104,-0.27281472,0.26835158,0.5427482,-0.4553655,-0.33260253,-0.0056955814,0.24706645,-0.37550652,-0.5268498,0.13298887,-0.32882315,0.40704384,0.1701825,-0.49471256,0.12347385,0.33637187,-0.32504568,0.046024792,0.4946233,-0.29467407,0.03031219,-0.26655227,-0.008360803,1.1012633,0.08746097,0.13178606,-0.54489505,-0.52393115,-0.96246237,-0.21902467,0.32535917,0.31396142,-0.03431168,-0.512465,-0.16097519,0.02097328,-0.15317829,0.07689078,-0.5686791,0.3978987,0.19292054,0.35524845,-0.04570064,-1.0531404,-0.0922676,0.1004909,-0.171832,-0.56533647,0.5367769,-0.27266103,0.83696526,0.20323251,0.16627976,0.13712296,-0.4648018,0.30344394,-0.33543432,-0.041838434,-0.7178791,0.06450989 +7,0.2614745,-0.019233406,-0.4816751,-0.17611119,-0.4058563,0.05030082,-0.1432229,0.34655297,0.26998806,-0.26255795,0.042727087,0.025702557,-0.08578718,0.2822681,-0.24314703,-0.7273008,0.10097357,0.18101378,-0.64158577,0.45926154,-0.4560178,0.3666661,-0.17002758,0.33771974,0.056437366,0.26373088,0.0270614,-0.026515337,0.112497345,-0.0022240798,-0.056592267,0.3613356,-0.35828632,0.26579055,-0.058456652,-0.22962376,0.01900121,-0.35952178,-0.3639269,-0.71530116,0.30659446,-0.4800077,0.4924711,-0.055463124,-0.43110314,0.16968913,-0.032255847,0.24125203,-0.3865387,0.043007154,0.21241342,-0.10809307,-0.0995102,-0.13355714,-0.26588517,-0.36231232,-0.44275787,0.0007608533,-0.5890309,0.03047468,-0.30556306,0.19323209,-0.29861984,-0.063718654,-0.20399147,0.31584024,-0.43280366,0.13839397,0.18128252,-0.09193397,0.037704013,-0.37234247,-0.051885962,-0.15575224,0.2059889,-0.085029505,-0.2553067,0.17164713,0.23321387,0.47729868,-0.00086783565,-0.2106313,-0.25328973,-0.06264532,0.04099586,0.3506392,-0.07948939,-0.23927797,-0.24201012,0.13785173,0.14779015,0.20943451,-0.15529843,-0.3311453,-0.07286808,-0.021281762,-0.2996376,0.45318255,0.44055864,-0.33413282,-0.1721828,0.4267359,0.415767,0.26270744,-0.31106707,0.17116234,-0.07231627,-0.4174778,-0.35286316,0.073432036,-0.031842414,0.46991542,-0.11838558,0.21016067,0.7247673,-0.09563212,-0.1376819,-0.004275358,-0.050291784,0.035421956,-0.16752367,-0.18246533,0.09200333,-0.4790884,0.151925,-0.07938907,0.7512686,0.10423642,-0.92836565,0.36946216,-0.480591,0.118290424,-0.19159393,0.58911353,0.7963949,0.4572611,0.2501185,0.7112891,-0.52755195,0.18069264,-0.0057518193,-0.4169346,-0.037979424,0.02367603,-0.099520594,-0.5587928,0.10406659,0.008430858,-0.03513803,0.021174384,0.039778177,-0.32610255,-0.13972804,-0.04876465,0.6774286,-0.3859658,-0.17918916,0.790322,1.0147442,0.9630978,0.14426921,1.1490155,0.27417478,-0.007697324,0.05161092,-0.33505592,-0.52834785,0.2245244,0.2600673,0.03113741,0.29089403,0.1590814,0.1947953,0.39829192,-0.11790419,-0.041117348,-0.159743,0.29503992,-0.06514258,-0.11608158,-0.3612185,-0.33499625,0.17193025,0.15636039,-0.09932906,0.27726173,-0.13904886,0.23170286,0.2147941,1.1864792,0.2471635,0.010272447,0.0057058604,0.3670517,0.16100264,-0.20751701,-0.16043131,0.31610367,0.3802332,-0.025459746,-0.55264354,-0.00980356,-0.2028797,-0.31597266,-0.10617172,-0.30618703,-0.0015515486,-0.19009088,-0.479777,-0.07667664,0.07314251,-0.21936356,0.62024856,-2.7876215,-0.19995397,-0.08217765,0.28379086,-0.16837575,-0.26417577,-0.14425404,-0.38986906,0.33842182,0.35763356,0.3453034,-0.5410777,0.664888,0.19555712,-0.484398,-0.03951401,-0.6522667,-0.056706633,0.08866228,0.4073414,0.0449277,-0.03859785,-0.07189242,0.21952061,0.5990268,-0.067425765,0.049246173,0.21717685,0.57654214,-0.054329615,0.509487,0.10701715,0.4780031,-0.21335743,-0.06792057,0.27496856,-0.3573809,0.4242534,0.12992501,0.08180979,0.37199974,-0.5314234,-0.83270717,-0.4966736,-0.29581484,1.2316278,-0.25912935,-0.3402875,0.24845845,-0.2315448,-0.28809512,-0.05977034,0.2971103,-0.049555056,-0.21968536,-0.6441591,-0.0011980097,-0.030537626,0.2035265,-0.100813374,0.083512135,-0.16618824,0.6435806,-0.083978646,0.5234764,0.3727168,0.14875844,-0.11661012,-0.27780235,0.10260795,0.6719054,0.3636926,0.07049696,-0.22815691,-0.19967543,-0.15913172,-0.038797993,0.16891202,0.6078766,0.5127609,-0.029509788,0.02948929,0.2928339,-0.23638959,-0.028391456,-0.25072357,-0.18729596,-0.07266151,0.11017154,0.59975743,0.64522624,-0.19097398,0.37903377,-0.035879437,0.07868735,-0.09182561,-0.49622682,0.3614865,0.7075972,-0.052532636,-0.30375227,0.42978248,0.3970309,-0.19429107,0.27968213,-0.3369902,-0.18262705,0.5667051,-0.15816341,-0.29180616,0.119846135,-0.2663084,-0.004069664,-0.8928093,0.3104889,-0.1513072,-0.7525931,-0.47842348,-0.08462096,-3.6526225,0.2191454,-0.122886226,-0.11187038,-0.07422548,-0.161158,0.2336915,-0.49316132,-0.56073,0.14945807,0.14402008,0.4770789,-0.07426117,0.06113232,-0.2490388,-0.2748272,-0.24080744,0.16636893,0.0777619,0.3239434,-0.0621381,-0.30405658,-0.05180835,-0.23355117,-0.48622847,-0.01485218,-0.5078429,-0.4122289,-0.031647436,-0.495657,-0.2426874,0.6924291,-0.35787004,-0.0625684,-0.23150365,-0.06658487,-0.18561764,0.44479617,0.17129119,0.25449958,0.010633477,0.06947096,-0.12518726,-0.38397697,0.26239213,0.04183501,0.25612625,0.25129324,0.060169145,0.19685036,0.6502847,0.6644952,0.069839224,0.7237222,0.26879027,-0.19964738,0.35867387,-0.26358077,-0.34733158,-0.66391724,-0.3190215,-0.30452737,-0.359999,-0.32120705,-0.099031165,-0.36934012,-0.71445876,0.29328203,0.05645379,-0.00028645992,-0.00809013,0.24071662,0.3756517,-0.05623389,0.12790239,-0.049209427,-0.24395357,-0.42255655,-0.4542335,-0.57031566,-0.4267812,0.11960385,1.0485082,-0.17608815,-0.014540854,-0.014419059,-0.21035652,0.03417957,0.07621252,0.25102845,0.37179253,0.14987792,-0.24164733,-0.6345416,0.34696394,-0.15513021,-0.09745132,-0.66611874,0.015427237,0.7189175,-0.5574824,0.61224717,0.28073877,0.17241427,0.17060016,-0.63188666,-0.31575045,0.06699525,-0.17529391,0.5019864,0.23323473,-0.7396581,0.5639065,0.30287477,-0.04144264,-0.58975893,0.5671395,-0.112914704,-0.16470976,0.06709163,0.3125801,0.18266755,-0.12026267,-0.016851481,0.19957511,-0.3304803,0.22663762,0.25104302,-0.04143041,0.20324716,-0.034336742,-0.030521575,-0.62845695,-0.23347549,-0.58745897,-0.20644093,0.021875659,-0.022739407,0.13969104,-0.056677066,-0.06611706,0.3439668,-0.29809675,0.16371511,-0.11698716,-0.25520262,0.1868997,0.48216388,0.31771645,-0.41425693,0.57022405,0.072223835,0.25843498,-0.043097593,0.1566762,0.48004463,0.08738379,0.41059884,-0.07481752,-0.095634565,0.12023094,0.82952225,0.21029158,0.34654012,0.06989882,-0.11515341,0.25176626,0.17040174,0.21777931,-0.10576652,-0.14567712,0.07222292,0.04379309,0.22959144,0.37107405,0.07686894,0.1879954,-0.14008935,-0.18252526,0.12257622,0.18708633,-0.02864658,-1.2194474,0.4851181,0.34823975,0.68275577,0.35881606,0.0784479,-0.02932239,0.56955975,-0.25721496,0.10623164,0.39809716,0.0019583304,-0.4468547,0.4324323,-0.59613186,0.6021314,-0.0761158,-0.078921966,0.18911959,0.18573815,0.29700607,0.82202834,-0.15709712,0.04507649,0.077624485,-0.2903558,-0.031104548,-0.36882514,-0.017187564,-0.4351142,-0.31722406,0.65710145,0.5276803,0.3109209,-0.33272398,0.026463313,0.07793355,-0.19236925,-0.0057121227,-0.14049648,-0.091670066,-0.1086485,-0.5393189,-0.20104338,0.5037462,-0.095415436,0.07812011,0.08485301,-0.20603329,0.4129096,-0.06862155,0.014325524,-0.08050695,-0.57888234,0.0029744825,-0.22767061,-0.38523716,0.36496308,-0.22817558,0.33179802,0.15993387,0.11840836,-0.34190413,0.35753518,0.051257778,0.68174094,-0.07695828,-0.081604384,-0.3204523,0.055252638,0.23459087,-0.16331914,-0.19628827,-0.38279405,0.039743524,-0.62770766,0.30135906,-0.26501527,-0.31144714,-0.112025246,-0.08980713,0.13043055,0.3786008,-0.20790829,-0.193892,-0.01391023,5.697409e-05,-0.21850702,-0.16796298,-0.2737106,0.32172993,0.09596279,-0.051598854,0.0058604437,-0.12809321,-0.106222026,0.3228467,0.12480737,0.22420844,0.2449417,0.11409235,-0.22040175,-0.06400223,-0.097779274,0.39505985,0.041348603,-0.06317089,-0.24366896,-0.14945579,-0.2376148,0.28365326,-0.22210354,0.10892406,-0.009854897,-0.33305493,0.6507034,0.049474455,1.0527943,0.04605975,-0.17896062,0.16361451,0.44670343,0.16983981,0.042898912,-0.22637312,0.621824,0.5223324,-0.06374326,-0.16435996,-0.37343132,-0.14857669,0.06739534,-0.22290736,-0.2561747,0.031014534,-0.6514892,-0.14423925,0.14989635,0.109302536,0.16743039,-0.03950615,-0.18304911,0.10853601,0.23164542,0.38357577,-0.4433958,-0.017770013,0.21411571,0.14797375,-0.012373046,0.08028645,-0.3900587,0.44032922,-0.5946699,0.13580994,-0.3187812,0.14585534,-0.1969571,-0.18405816,0.15632153,-0.018468857,0.2859576,-0.20285913,-0.22122113,-0.31783444,0.63087326,0.1903836,0.119468644,0.6224887,-0.18940134,-0.063636504,0.10865031,0.4461202,0.8957405,-0.114280194,-0.19656743,0.3234583,-0.19975628,-0.44815916,-0.0046316665,-0.43946293,0.08436589,-0.0056629223,-0.18528035,-0.32838613,0.32209522,0.13197741,0.068271965,0.014978703,-0.61536825,-0.07237422,0.3615173,-0.26820722,-0.3191881,-0.29362896,0.3189296,0.6814874,-0.31478375,-0.3620897,0.012705215,0.2129392,-0.20267104,-0.5120423,0.12996478,-0.28321847,0.31684828,0.07964298,-0.41042143,0.019816926,0.22444372,-0.38358232,-0.0137834465,0.3599991,-0.30521375,0.0977031,-0.14038672,-0.081337884,0.90768397,-0.13741986,0.33967456,-0.5926396,-0.54138094,-0.75110084,-0.30960763,0.19592044,0.27482083,-0.13315532,-0.58662087,-0.04310361,0.037700024,-0.15451345,0.013576265,-0.48747382,0.4698569,0.08888401,0.27274826,-0.045464396,-0.94036496,-0.08376514,0.04303968,-0.34706828,-0.42316172,0.57697177,-0.32146898,0.6227722,0.008546743,0.16528249,0.0046624583,-0.40173733,0.32574162,-0.47390455,-0.16696411,-0.54716706,0.08912746 +8,0.41878605,-0.12981805,-0.6071095,0.09124798,0.029166736,0.33944348,-0.37968343,0.10310221,0.35892323,-0.5084502,-0.026677363,0.10665892,-0.053024657,0.033289354,-0.09889098,-0.44219765,-0.039899033,0.20894095,-0.62727535,0.57934415,-0.2373465,0.4859683,0.06604207,0.14908883,0.08439495,0.18039273,0.30975562,0.14966422,-0.14278424,-0.35909182,0.15887128,-0.35290498,-0.8290453,0.32688457,-0.22729972,-0.42469615,-0.16880168,-0.5442252,-0.50509936,-0.76654494,0.5563178,-0.8888994,0.75525975,-0.0071246577,-0.17581438,0.21879974,0.17031734,0.2241604,0.043705747,-0.07231857,0.2418425,-0.1595393,-0.11126823,-0.29833087,0.01859206,-0.39796337,-0.593654,0.13638812,-0.4573609,0.15512046,-0.22699587,0.30879116,-0.4542252,0.21109523,-0.33780172,0.24317218,-0.089112505,0.053297784,0.20796475,-0.25638175,0.02043337,-0.5335783,-0.11817375,-0.01814886,0.16426738,0.08273627,0.019449564,0.40263456,0.04655882,0.5632268,0.09190375,-0.41517183,-0.16734919,-0.032242272,0.18984453,0.5892103,-0.18003069,-0.12044271,-0.2957338,-0.23393387,0.5675377,0.008631587,0.21594231,-0.11962282,0.052908596,-0.08951616,-0.19680537,0.533889,0.80498165,-0.28230974,-0.009866785,0.43707994,0.6068033,0.032741245,-0.012203088,0.19891573,-0.15966712,-0.31146744,-0.23199321,0.10634521,-0.18707886,0.4875881,-0.2782157,0.28809375,0.35563204,-0.23703986,-0.026398364,0.33855024,0.051969133,0.117656365,-0.23322996,-0.17782077,0.48030412,-0.6144114,0.034195106,-0.6305873,0.49636582,0.010658504,-0.88054216,0.5102566,-0.43810552,0.27109239,0.33028302,0.6896317,0.74406314,0.6464878,0.1529042,1.1648034,-0.5124628,-0.14991972,-0.0778223,-0.22180207,0.07506069,-0.3095885,0.09290885,-0.32748443,0.16037615,0.20750983,-0.01853726,0.08389271,0.5025574,-0.50618386,-0.3781702,0.049383063,0.8179798,-0.20354487,0.13517019,0.950559,1.1658579,1.0735366,0.09383775,1.212945,0.09458523,-0.20479546,-0.43636948,0.043112095,-1.0345727,0.1989488,0.30782816,0.08758728,0.6626282,0.20199397,-0.16258694,0.21783671,-0.51097023,-0.3060937,-0.03138456,0.17614606,-0.09046929,-0.20263101,-0.35020763,-0.08043526,0.18081824,-0.19866182,0.4495463,0.34521616,-0.44907755,0.36320668,0.26574203,0.9177757,-0.27768296,0.1168545,0.2978985,0.12416237,0.28820413,-0.36145622,-0.0026609302,0.060790412,0.36289194,0.0764621,-0.54906535,-0.025839526,-0.35774472,-0.51080287,-0.26728398,-0.05475178,-0.25880533,-0.13245156,0.008472131,-0.40779212,-0.2543294,-0.42976382,0.2795371,-2.6028056,-0.2609351,-0.19597243,0.33679444,-0.32460153,-0.38056836,-0.08003701,-0.5276059,0.41756278,0.24280955,0.3978097,-0.627902,0.22349699,0.2984531,-0.60456824,0.006206054,-0.5289355,0.031321757,0.060551938,0.47764334,0.18209876,-0.4782111,-0.1573363,0.22192056,0.53558755,0.19208142,0.036506023,0.50313824,0.5703691,-0.14290896,0.10723334,-0.07282429,0.56129223,-0.60445094,-0.18208137,0.631935,-0.8143835,0.35221747,-0.31228754,0.04404008,0.39764294,-0.44822466,-0.5667142,-0.42923453,-0.07254927,1.3873061,-0.26008573,-0.8159947,-0.009217519,-0.08688075,-0.26287812,0.02534217,0.5113511,-0.11048091,0.05681108,-0.51728076,-0.12198104,-0.3471877,0.21415915,-0.19195586,0.03328594,-0.46551073,0.89318305,-0.13775484,0.61154044,0.31891054,0.28284577,-0.5008565,-0.25945774,0.12246307,1.073104,0.6677538,0.17951027,-0.24539438,-0.046263173,-0.25942847,-0.61530125,0.07903288,0.81646097,0.6158334,-0.10372048,-0.069270805,0.36349818,0.08357479,0.24952489,-0.044037376,-0.35664514,-0.43911397,-0.13281825,0.73339915,0.54509366,-0.21001348,0.08982917,-0.053784166,0.15032853,-0.41148794,-0.3262337,0.6181601,0.8248166,-0.19638315,-0.2600653,0.7069274,0.3586973,-0.36283046,0.69882977,-0.7094605,-0.63856924,0.24204694,-0.030890537,-0.51039857,0.18550189,-0.3696591,0.17070678,-0.5606908,0.33895352,-0.3208938,-0.39499328,-0.51180977,-0.18677378,-2.2780187,0.22723015,-0.21365984,0.14947416,-0.4573113,-0.07405605,0.1743106,-0.28751564,-0.8085117,0.27564368,0.10172899,0.7746887,-0.18695675,0.25088078,-0.17241806,-0.3583072,-0.4523513,0.22881156,0.14399162,0.22029106,-0.14122623,-0.09737502,-0.37778983,-0.1675201,-0.3541889,-0.07248017,-0.5182593,-0.33198527,-0.24721694,-0.38632196,-0.2367066,0.58985496,-0.29608202,0.065650865,-0.3300171,-0.059841078,-0.07076678,0.20700932,-0.017077563,0.2271731,0.13615488,-0.49466294,0.19630122,-0.14438103,0.44202667,0.07420258,0.43793377,0.53563154,-0.48792142,0.036506943,0.29344204,0.9052349,-0.076115064,0.91675335,0.10988516,-0.15834716,0.46101457,-0.09806557,-0.32301748,-0.6146847,-0.03905736,0.3933442,-0.40152618,-0.36653122,-0.08432853,-0.2939469,-0.88368374,0.49554238,0.19353107,0.5277722,-0.104134135,0.5133134,0.3350153,-0.13216215,-0.09581307,-0.05414919,-0.28847864,-0.28616425,-0.33038586,-0.63128763,-0.27399507,0.01063201,0.80409616,-0.056446984,0.099676244,0.4433074,-0.01488416,0.13783264,0.12807952,0.20528287,-0.190084,0.458691,0.23275432,-0.62439597,0.39757758,-0.15578602,-0.06533639,-0.575351,0.34417692,0.5375639,-0.38830215,0.4216927,0.5201305,0.11260922,-0.35695794,-0.7226878,0.13299991,0.06772893,-0.18130524,0.39849204,0.40944302,-0.7743881,0.49356258,0.38706625,-0.26871294,-0.6460728,0.3413676,0.06107653,0.0066851927,-0.21085158,0.53909576,-0.122972384,-0.037399277,0.030858673,0.16907552,-0.31384978,0.37197974,0.039026078,-0.06492758,0.33157665,-0.23628306,-0.51234275,-0.62534374,0.1972054,-0.84861016,-0.049018975,0.18621613,-0.04773052,-0.11456506,0.19318812,0.19501916,0.55837536,-0.5089538,0.09747099,-0.11583308,-0.395819,0.62441856,0.47108957,0.3648173,-0.57262576,0.62391514,0.19519448,-0.21328513,0.028529404,0.04452094,0.51179665,-0.10171464,0.3086642,0.22264308,0.21646954,0.005170125,0.53506047,0.25656036,0.35636762,0.2541915,-0.20541722,0.21668969,0.008540795,0.2387684,-0.008465433,-0.7111407,-0.08288671,-0.118146695,0.07594059,0.5538833,0.15323387,0.45136613,-0.15207301,-0.24581257,-0.1837131,0.021174513,-0.33838812,-1.5462531,0.4274449,0.0880593,0.83074254,0.42263016,-0.013478209,0.13057189,0.6087498,0.034975145,0.018744716,0.30718178,-0.18018526,-0.43443605,0.54599214,-0.67984235,0.24868305,0.01478661,0.11376922,0.1746243,0.070036635,0.52296585,0.8390795,-0.12994057,0.03568919,-0.26680604,-0.21615966,0.1364572,-0.32129744,0.4867145,-0.3655116,-0.27536327,0.8117964,0.12529022,0.50374436,-0.20741734,0.122835845,-0.013072174,-0.13619587,0.30769157,0.04979362,0.18800622,-0.32226673,-0.40935203,-0.115270734,0.45790675,0.2612767,0.10510393,0.032035563,-0.09543273,0.06402034,-0.20520331,0.0937992,-0.07324737,-0.89276254,0.25443438,-0.45666328,-0.48751682,0.15735584,-0.061626717,0.22367375,0.29909492,0.070270404,-0.3006987,0.07221953,0.17284735,0.59363437,-0.15848933,-0.31159252,-0.35662296,0.21865508,0.17028308,-0.49516055,0.26683658,-0.095736094,0.22672178,-0.5002278,0.66950065,-0.16415559,-0.23747268,0.3625989,-0.23920721,-0.124073654,0.590083,-0.3207655,-0.085405745,0.25947505,-0.21126121,-0.2472408,-0.44886795,-0.20384704,0.18296383,0.25585106,-0.15178584,-0.15197887,-0.13426386,-0.36289898,0.11247274,0.20449585,0.15984505,0.53771883,0.07792879,-0.5538031,0.17844875,0.09815501,0.59869397,0.09494574,-0.066835515,-0.47831842,-0.634334,-0.40938362,0.8382499,-0.0035792028,0.19999316,0.042898417,-0.15902402,0.6845449,0.06618044,0.8187355,0.10295682,-0.24261989,-0.16390303,0.7634588,-0.038322095,-0.25773653,-0.43865123,1.0500405,0.54216737,-0.22169238,-0.037935838,-0.36344564,0.20270337,0.13416871,-0.27495623,-0.093989134,0.074151084,-0.74107164,-0.2363596,0.12738682,0.3883056,-0.018247902,-0.25611204,0.040814452,0.43645403,-0.0001674753,0.27835083,-0.45849654,-0.2881098,0.64042175,-0.061987393,-0.14427939,0.015700959,-0.5240902,0.16461045,-0.7704438,-0.027552862,-0.27263618,-0.0046525644,0.011656564,-0.5105161,0.36788467,-0.06718468,0.20760092,-0.61359185,-0.41906276,0.13601701,0.10332073,0.3488765,0.24232961,0.57055986,-0.18095376,-0.015892081,0.18669827,0.55828273,1.0777298,-0.06900798,0.30129725,0.053009115,-0.5344837,-0.8551136,0.29760715,-0.21072228,0.22274446,-0.12442107,-0.4205907,-0.56993747,0.31945962,0.13295487,0.13521126,0.10609876,-0.83854735,-0.5830604,0.077959724,-0.394433,-0.21785298,-0.3504905,-0.07230342,0.83612883,-0.025543464,-0.2945142,0.02824557,0.2948088,-0.32650742,-0.90748227,-0.060028452,-0.35365027,0.17585085,0.016972564,-0.23140517,-0.19690108,0.13062105,-0.555301,0.29932514,0.11593565,-0.41859004,-0.096662685,-0.45468503,0.08013023,0.44171557,-0.27777195,0.18972206,-0.372306,-0.5487792,-1.0074433,-0.5307982,-0.091008596,0.24337088,0.063943096,-0.5939292,-0.19731887,-0.5015147,0.07238377,0.036819313,-0.48251536,0.35004255,0.2403957,0.52529454,-0.26892874,-0.77695847,0.015620374,0.13994747,-0.18723743,-0.3308627,0.50234556,0.068959564,0.64086944,0.12527071,0.029127887,0.16639702,-1.0984534,0.23126319,-0.13818058,-0.030894807,-0.75339687,0.2633825 +9,0.50849724,-0.36780077,-0.46201676,-0.17997314,-0.44357806,0.06040158,-0.41297927,0.3304576,0.32103652,-0.31871483,-0.22854535,0.1757577,0.062152594,0.43418038,-0.18074353,-0.5442007,-0.1141921,0.21400881,-0.66240203,0.5423376,-0.52822214,0.2750311,0.09843367,0.40666598,0.3004858,0.39437866,0.29355988,0.08775619,0.026685141,0.017657561,-0.022135228,0.26542592,-0.47490776,0.088169985,-0.19284274,-0.394498,-0.12661907,-0.45181274,-0.17648757,-0.81626713,0.15926698,-0.9280983,0.5133592,-0.20090486,-0.31062448,-0.20932211,0.34762174,0.36456788,-0.32387525,0.15868026,0.19581577,-0.1631602,-0.2673679,-0.2931153,0.002417978,-0.4611915,-0.5123801,-0.08334892,-0.5540419,-0.06329785,-0.13722706,0.306963,-0.30560887,0.048210863,-0.17120686,0.2556395,-0.4788705,-0.10519039,0.27278087,-0.10216146,0.20127507,-0.57030964,-0.09062263,-0.18509185,0.4030031,0.13243903,-0.335236,0.32169676,0.27838692,0.43071654,0.3094831,-0.21610144,-0.30427963,-0.09987138,0.22704391,0.3851604,-0.22846685,-0.16652729,-0.3777688,0.026563987,0.595019,0.3660854,0.031766508,-0.19178845,0.008010838,-0.21417265,-0.19754057,0.49573302,0.45260465,-0.26281267,-0.23264915,0.23540455,0.5418348,0.21834795,-0.2959565,0.17592078,-0.006243963,-0.5373712,-0.14789951,0.17018746,0.024902053,0.42490208,-0.172434,0.16888899,0.6578538,-0.070420176,-0.07350424,0.06339988,-0.03834012,-0.2503227,-0.31247088,-0.2772137,0.15408242,-0.57232785,0.014631838,-0.2193533,0.59559,0.103531085,-0.73706466,0.26473108,-0.5051384,0.2601768,-0.028538715,0.6046151,0.8333515,0.55331707,0.26147038,0.9220813,-0.19423014,0.20532988,-0.15247762,-0.29977265,0.08883336,-0.31097174,-0.03802186,-0.56038326,0.25868767,-0.2522232,-0.06896789,0.16006503,0.68162626,-0.52579105,-0.14078589,0.14851324,0.64162207,-0.39111003,-0.019562088,0.9034894,1.0449728,1.2135623,0.09126777,1.1648542,0.3728028,-0.057032675,-0.124089815,-0.18200749,-0.5938716,0.2427869,0.43366927,0.040534616,0.48980695,-0.07728936,-0.095723584,0.39312243,-0.5111186,-0.09624271,-0.05636964,0.22230534,0.11703184,-0.048426725,-0.50484246,-0.2037196,0.05761312,0.07408473,0.1413712,0.20639284,-0.22521168,0.6332171,-0.050762862,1.1569092,-0.09023295,-0.0019987086,0.12296615,0.45866907,0.31626153,-0.23386641,0.010730177,0.25743997,0.53661513,-0.1714362,-0.57708484,0.14396694,-0.30393034,-0.39804235,-0.16393954,-0.32444254,-0.14667167,0.08356957,-0.4570281,-0.3720189,-0.0321283,-0.25720596,0.3781035,-2.46462,-0.2767554,-0.1577115,0.29337746,-0.198298,-0.26133025,-0.22647811,-0.5216199,0.27625287,0.2740586,0.428921,-0.62248844,0.55261135,0.59445536,-0.6426994,-0.031585798,-0.8686824,-0.12557513,-0.10463966,0.46136606,0.09541363,-0.17867778,-0.058256567,0.20816243,0.8141788,-0.039356284,0.2345238,0.52833056,0.32205662,0.08926959,0.55236006,0.095667526,0.5995436,-0.397278,-0.26537266,0.43501166,-0.29006425,0.17267051,-0.20913419,0.06128272,0.5975244,-0.47272882,-1.0141244,-0.6096679,-0.122192934,1.2983029,-0.3094815,-0.45533925,0.12224132,-0.25461757,-0.08981145,0.16393653,0.5315459,-0.19386336,0.1438905,-0.7970691,0.05452349,0.05831919,0.13889316,-0.06380755,-0.12914611,-0.4060982,0.6681987,-0.14627819,0.6009195,0.28915265,0.31685883,-0.15485232,-0.5125625,0.05481324,0.8319944,0.45290068,-0.0619466,-0.20969006,-0.30457884,-0.08029914,-0.09116289,0.0722186,0.50542367,0.6229646,-0.06367509,0.2655084,0.39985722,-0.09021674,0.052810315,-0.19661665,-0.1778507,-0.1337372,0.11740264,0.51987386,0.7634678,0.016028367,0.3752738,-0.28282943,0.3290841,-0.016915679,-0.6838238,0.58892334,0.68092084,-0.29506713,-0.19382185,0.6242154,0.5069098,-0.28218564,0.52958053,-0.6487363,-0.36397073,0.43869373,-0.11054977,-0.35256752,0.20525032,-0.37709865,0.33029106,-0.7849119,0.412877,-0.38556024,-0.37420005,-0.4906104,-0.16860127,-3.2041502,0.19142936,-0.15266924,-0.16664627,-0.2459489,-0.25908732,0.37774128,-0.6083111,-0.6201992,-0.05752587,0.20361581,0.57373166,-0.07483351,-0.022673648,-0.2339761,-0.35581404,-0.14849563,0.16831088,0.08962866,0.3919425,-0.09810765,-0.52495646,-0.043875877,-0.12226607,-0.4902937,0.032108154,-0.62845886,-0.5059878,-0.092778824,-0.27917185,-0.2935794,0.50777566,-0.28055882,0.06568496,-0.36139327,0.13720328,-0.059710428,0.18821985,-0.021979854,0.24611464,0.13129094,-0.09206821,0.14486471,-0.24556938,0.4413315,-0.14292218,0.1329843,0.24225841,-0.13299179,0.24930735,0.56720537,0.6094081,-0.39621708,1.097002,0.50199366,-0.07618101,0.13830402,-0.13444184,-0.35804093,-0.5617122,-0.2914312,-0.07785497,-0.4980057,-0.39697573,0.019953549,-0.3283843,-0.92503524,0.642304,-0.06539882,0.43032974,-0.111764185,0.20418236,0.4467678,-0.1115652,0.027070608,-0.12858543,-0.36607903,-0.4813227,-0.39051223,-0.7114286,-0.59237236,-0.089806855,1.0607785,-0.30168587,0.16296028,0.01735118,-0.34706718,0.057711594,0.17514223,0.04843191,0.22841288,0.38183075,-0.008610353,-0.6604292,0.3063258,0.023929633,-0.011955664,-0.47493148,0.19328961,0.611437,-0.72893673,0.44222373,0.40760535,0.014048021,0.0039976053,-0.58301115,-0.15407178,-0.13274352,-0.1487623,0.7434645,0.28934184,-0.852376,0.6540009,0.2551664,-0.4772162,-0.62864286,0.34578592,-0.049766917,-0.17762402,-0.11300005,0.29359508,0.03158756,-0.11160983,-0.23205401,0.1688939,-0.3634964,0.45034453,0.14534688,-0.10114919,0.25149506,-0.19533513,-0.27327177,-0.7810435,-0.1118404,-0.6165346,-0.25820592,0.22826274,-0.038228713,-0.033867233,-0.029192552,0.01170246,0.44689548,-0.3257864,0.020566106,-0.029515514,-0.3327375,0.34979782,0.5103506,0.34779748,-0.2393079,0.54417515,0.20490125,-0.22722171,0.09721362,0.015278019,0.38501298,-0.016940944,0.41676366,-0.19184464,-0.098545074,0.34941483,0.5025939,0.124601945,0.36855322,-0.00045021623,-0.28297806,0.36360714,0.01638702,0.18029834,-0.183572,-0.3257311,-0.06364472,-0.17282136,0.21003191,0.53403544,0.3376903,0.4514341,0.021484418,0.0006295033,0.017255172,0.11911556,0.037226517,-1.4682816,0.38209322,0.20529485,0.7465254,0.45304674,0.040865168,-0.20122057,0.6348937,-0.41470608,0.046644613,0.5133958,0.09949933,-0.39268193,0.6983501,-0.63239217,0.5032034,-0.17134981,0.074556045,0.18308528,0.21608907,0.47649646,0.8300611,-0.0622764,0.20095688,-0.0751513,-0.19149387,0.01984973,-0.24637304,-0.024169035,-0.38118201,-0.41698903,0.79547703,0.33345157,0.5470823,-0.16047809,-0.092989996,0.07857939,-0.18863675,0.3608235,-0.037848048,0.063475855,-0.16148688,-0.4637569,-0.12899488,0.51453507,-0.020614747,0.16785501,-0.025352526,-0.3638397,0.028792407,-0.19034211,0.042414233,-0.019913316,-0.5629136,-0.26599807,-0.26656145,-0.3903932,0.41825563,-0.31703094,0.018443175,0.21622221,-0.051770408,-0.1743086,0.029097028,-0.026971906,0.80290544,0.0034039356,-0.256813,-0.18034637,0.12862661,0.33789253,-0.29346192,0.1706336,-0.23684189,0.16416003,-0.56276125,0.53686464,-0.25865898,-0.50428236,0.40215707,-0.16116522,-0.087773964,0.5347377,-0.10229673,-0.20405208,0.13874198,-0.07905716,-0.41176295,-0.26536018,-0.3402454,0.26299405,0.18103945,-0.11153153,-0.10459742,-0.23461628,0.103387274,0.65825784,0.05908042,0.43977204,0.3442824,0.080268174,-0.39602062,0.16653827,0.26737064,0.507093,0.1522363,-0.01507771,-0.5344641,-0.5102652,-0.32587013,0.029145181,-0.17514275,0.14040777,0.022810586,-0.2509861,0.9339027,0.027800925,1.1773891,0.023882784,-0.42318344,0.08204538,0.51621026,-0.12053561,0.05865391,-0.26525253,0.88415617,0.6716775,-0.22540094,0.003531565,-0.7087377,-0.23226647,0.3226286,-0.38870746,-0.12301478,-0.080020435,-0.6581702,-0.43310136,0.18481342,0.12703402,0.14203686,-0.13480538,0.09287604,0.22098112,0.028603882,0.4307949,-0.59797007,-0.26765794,0.23128185,0.3171373,-0.17804247,0.14251705,-0.55824554,0.33258,-0.65694714,0.035812005,-0.3407886,0.25064322,-0.15487629,-0.4130283,0.15883607,-0.056406073,0.2618971,-0.33827546,-0.4834199,0.041045394,0.5134321,-0.07499908,0.108191304,0.55905986,-0.35032168,-0.0027931407,0.13195829,0.4337505,1.3135896,-0.43083063,0.09159039,0.3308742,-0.40328416,-0.6953854,0.33823323,-0.39573783,-0.07732355,-0.053532492,-0.4623373,-0.45914024,0.31691706,0.09484462,0.15557945,0.041266426,-0.3992839,-0.08086916,0.35152906,-0.19561559,-0.19043638,-0.24269642,0.32374975,0.45264027,-0.34764495,-0.5130745,0.008295663,0.34309885,-0.23487474,-0.46402967,-0.09314613,-0.13486578,0.3225189,0.29286987,-0.29479286,-0.10859849,0.04360352,-0.46958387,-0.00882639,0.28867596,-0.2673627,0.15905014,-0.31958443,-0.015564721,0.91831374,-0.3058759,0.034154817,-0.57457626,-0.50275004,-0.95461065,-0.41589218,0.1816194,0.3214535,-0.0069652954,-0.6623019,0.081433,-0.19956239,-0.24095678,0.096587546,-0.49332398,0.50119966,0.15244034,0.38106665,-0.28791016,-0.7268764,0.14661926,-0.0113855265,-0.12376048,-0.4583455,0.6951822,0.019394279,0.93554723,0.21614791,0.007731933,-0.0059272517,-0.5187215,0.12861013,-0.29664558,-0.08560322,-0.8272759,-0.0731909 +10,0.46003637,-0.16567045,-0.67007965,-0.16974756,-0.21101014,-0.1594577,-0.27668777,0.7732242,0.050914686,-0.4916192,-0.42406082,-0.118549086,-0.015549749,0.5217188,-0.20944528,-0.5555681,0.059235215,0.3058947,-0.6955105,0.29559523,-0.42072588,0.3222664,-0.080084205,0.4722415,0.12596639,0.1941849,0.0786701,0.042102575,0.1528044,-0.10543959,0.08263488,0.12129297,-0.5651076,0.14476644,-0.22165212,-0.6805968,0.074751884,-0.6210568,-0.30641204,-0.7739979,0.38736778,-0.7504811,0.7062357,-0.012879582,-0.27899855,-0.009419012,0.14498745,0.53041947,-0.1356797,0.021363799,0.083960906,0.1016943,-0.089725316,-0.03199369,-0.070236504,-0.31963858,-0.67263424,0.14279985,-0.32706562,0.033636205,-0.1508166,0.18978599,-0.2672931,0.2943233,0.024873804,0.3147065,-0.35002232,-0.0053945095,0.06998883,0.06553167,0.23319216,-0.7040429,-0.074820876,-0.09598054,0.5680518,-0.4053933,-0.24024348,0.16383174,0.265894,0.6191317,-0.10324423,-0.07992086,-0.26521212,-0.09837971,-0.39272353,0.7538985,-0.1781005,-0.4908591,0.010649944,0.048878234,0.21432877,0.29554528,-0.04788223,0.03794144,-0.1695613,-0.30905694,-0.2496239,0.31288892,0.53498256,-0.36637062,-0.28260082,0.4713618,0.69256914,0.23269287,0.028230637,0.14698112,0.09501864,-0.7133832,-0.24767947,-0.28057718,-0.1981401,0.44651335,-0.14191537,0.7471445,0.43208137,-0.031699996,-0.041022114,0.20116791,-0.035292983,-0.012947733,-0.08409222,-0.5401243,0.3166101,-0.3126758,0.2594338,0.045764167,0.6220437,0.15853946,-0.8507973,0.14895874,-0.6132597,0.013886874,-0.09426662,0.51138246,0.6530857,0.39093563,0.29123467,0.7741567,-0.2724269,0.17334785,0.014353519,-0.100803114,-0.21523686,-0.039632667,-0.055536926,-0.43309826,0.12344853,0.03134008,-0.15026553,0.3957526,0.38068146,-0.58386356,-0.15357304,0.109577455,0.83374625,-0.26728302,-0.14834067,0.8457425,0.8889335,1.1040801,0.052317105,1.1578054,0.1625729,-0.26658297,0.1662119,-0.17269298,-0.867493,0.39832982,0.4286368,0.13986103,0.42169818,0.067930594,-0.069554664,0.513324,-0.5392296,-0.011648612,-0.072414435,0.118885994,0.1531937,0.020203263,-0.59830433,-0.25312278,-0.2526837,-0.0581594,0.12106991,0.20904139,-0.11943878,0.27726132,0.04171755,1.5462792,-0.011972934,0.047173455,0.09387137,0.44409022,0.18191297,-0.3659354,-0.25294012,-0.08150782,0.23813191,-0.043293715,-0.75539374,0.12300998,-0.19137475,-0.4158698,-0.33462203,-0.15212396,-0.1422933,-0.14344685,-0.30398393,-0.36850753,-0.30414438,-0.25475493,0.42007342,-2.623104,-0.37487784,-0.12269741,0.5304131,-0.3980108,-0.4749872,-0.26899648,-0.44715247,0.44925493,0.40820807,0.57655096,-0.53167313,0.4635829,0.32542023,-0.57741535,-0.0750721,-0.76809186,-0.10093467,0.18131544,-0.044038795,-0.06271,-0.10246129,-0.14176819,0.08114286,0.36244157,0.049953766,0.10472345,0.42544803,0.49199766,0.12660363,0.4851783,-0.29430696,0.46896094,-0.5320722,-0.18718383,0.19281091,-0.5969842,0.11082194,-0.34081924,0.15379919,0.55473125,-0.79253834,-1.0581456,-0.6990747,-0.07998705,1.1544263,-0.12333038,-0.29000193,0.27362227,-0.4619884,-0.1364732,-0.12534864,0.5606877,-0.37295943,-0.22467665,-0.7509993,-0.34672934,-0.19939016,0.3154822,-0.0077396706,-0.050253294,-0.5572616,0.478656,-0.19332923,0.41611964,0.31896043,0.26583132,-0.1429477,-0.45214695,0.00022348762,0.7122451,0.47890526,0.23766284,-0.31200448,-0.14217834,-0.5912037,0.088007405,0.09210623,0.5034467,0.75104344,-0.03851856,0.2213895,0.3018257,0.07962094,0.11300848,-0.13292012,-0.28708655,-0.21270294,-0.014600563,0.59184134,0.5742653,-0.11744144,0.47994432,-0.01687713,0.15798353,-0.37436542,-0.28089052,0.40915623,0.9163941,-0.14428595,-0.24462616,0.73373127,0.29838815,-0.21869135,0.45309076,-0.7429956,-0.45075536,0.29826537,-0.0196244,-0.33103848,0.06405389,-0.18828069,0.20125529,-1.0219259,0.26029474,-0.32536232,-0.4758121,-0.67069024,-0.07691856,-2.1511664,0.2669583,-0.06419905,-0.09479008,-0.09824665,-0.4109773,0.06756546,-0.49808803,-0.86522216,0.30249354,0.060143016,0.7317046,-0.19058363,0.1855,-0.078444384,-0.3677341,-0.5762094,0.05742777,0.40732312,0.41208673,0.20526138,-0.49162617,-0.05562214,-0.056654096,-0.4450124,0.14110424,-0.633548,-0.38855797,-0.13183773,-0.6841652,-0.13798483,0.6775986,-0.18880136,-0.018349674,-0.25428692,-0.030911688,-0.06373303,0.33224458,-0.057620913,-0.04675598,0.084175535,-0.19535704,0.04283584,-0.14216737,0.41782898,-0.012706017,0.29516393,0.16213909,-0.2512905,0.2336472,0.58997023,0.72278607,-0.111110285,0.8381648,0.5607902,0.02213653,0.21518476,-0.19981465,-0.30241528,-0.11560384,-0.16018668,0.047711432,-0.3546752,-0.4448327,-0.06767224,-0.4794437,-0.8695921,0.3452205,-0.16382077,-0.038040303,0.18032318,0.33434725,0.46398625,-0.06441563,-0.1051592,-0.0470975,-0.0496838,-0.47881794,-0.38444424,-0.5006107,-0.3752219,-0.027382607,1.4174106,-0.2639063,0.17266122,0.015061013,-0.04870199,0.0024415613,0.16318148,-0.18692282,0.111300305,0.403546,-0.17816843,-0.6739742,0.37609595,-0.27585977,-0.4033943,-0.6396648,0.06669442,0.5047611,-0.60680753,0.37556022,0.4238378,-0.015308261,-0.17894812,-0.6466676,-0.13869874,0.08363461,-0.28767186,0.20393498,0.31800658,-0.7271215,0.49553546,0.2174209,-0.16082864,-0.8933271,0.76477575,0.08591914,-0.31029445,-0.08969688,0.3152148,0.18235631,-0.087381616,-0.29804847,0.10765843,-0.10987477,0.35915264,-0.0077770473,-0.11310724,0.43558782,-0.46493942,0.084660314,-0.76478153,-0.030294582,-0.6540687,-0.054011475,0.24140134,0.048228584,0.17761166,0.19308189,0.24788491,0.40397677,-0.47229385,0.016895823,-0.26030636,-0.3276303,0.14943814,0.33156312,0.49803132,-0.5207435,0.58184755,0.0132607175,-0.1545781,-0.004352319,-0.013398051,0.3635219,-0.24982819,0.3286878,0.07625528,-0.19362617,0.02371583,0.7590477,0.2737148,0.07032343,0.05775587,-0.0088103395,0.15961418,0.11344167,0.13676527,0.05159406,-0.46243072,0.017015394,-0.32752925,0.044555783,0.63892114,0.17830284,0.20836075,-0.19108419,-0.320276,0.007763301,0.1946539,-0.07475276,-1.1568851,0.44980788,0.033022195,0.87278444,0.50302964,0.063071236,0.2595745,0.5934814,-0.09388826,0.26630214,0.30475843,0.17883725,-0.24973091,0.6160755,-0.5148309,0.73146623,0.11281345,0.015041625,-0.15182538,-0.0017312944,0.46818584,0.7742539,-0.06007091,0.104813054,0.060656983,-0.1325121,-0.00024746655,-0.34686646,-0.13201961,-0.8074862,0.022010688,0.801167,0.40016955,0.18113038,-0.08179385,-0.028351218,0.11139146,-0.043579042,0.13068779,-0.030407554,0.14464906,-0.10255524,-0.6064447,-0.028586287,0.4341744,0.23599282,0.16090682,0.04199589,-0.24671099,0.34572437,-0.023042407,0.11598365,-0.0362687,-0.8424207,-0.13523398,-0.54424125,-0.17198573,0.19534658,-0.066991135,0.21522374,0.31317398,0.16612923,-0.32147494,0.34323555,-0.124347664,0.7702327,0.08546809,-0.16921258,-0.38337484,0.22937231,0.2590902,-0.2612007,0.045724403,-0.40954477,-0.06113826,-0.5772253,0.551878,0.21371698,-0.2936489,0.35367203,-0.06079916,0.017359126,0.43694624,-0.13628237,0.08169473,0.13243085,-0.08833645,-0.19609152,-0.19161336,-0.31897658,0.29892454,0.3203838,0.12639575,-0.10478232,-0.045225393,-0.061055064,0.72712916,-0.059828974,0.43514124,0.32771525,0.2761592,-0.4210392,-0.118287586,-0.0021296293,0.60625213,-0.107504144,-0.3178814,-0.3516976,-0.45005733,-0.15188578,0.4314921,-0.11624755,0.36555335,0.1525933,-0.12455497,0.3830879,0.2219868,1.0346508,-0.038409065,-0.20740196,0.084696606,0.4247485,-0.049035996,-0.2840787,-0.38723785,1.02475,0.39465013,-0.11375674,-0.11256905,-0.19821289,-0.025291178,-0.009387118,-0.1744251,-0.23072433,-0.10842774,-0.4827159,-0.40413037,0.19552289,0.15601775,0.07888486,-0.17396347,0.15049754,0.31621093,-0.09351649,0.23329571,-0.41792804,-0.19729015,0.3378694,0.2873964,0.04722352,0.1500414,-0.5836529,0.34602255,-0.6814481,-0.016040122,-0.35574558,0.26629123,-0.10055946,-0.36918288,0.18375885,0.20888312,0.4024304,-0.3037203,-0.31944078,-0.1272336,0.49242878,0.21158549,0.30770963,0.43900934,-0.28073162,0.09573936,-0.140274,0.50047696,0.87598515,-0.16237684,0.07897396,0.29058224,-0.18220861,-0.48522362,0.3514452,-0.4933055,0.17147133,0.02991938,0.023219252,-0.60494655,0.3581763,0.18949099,0.0846835,-0.06584686,-0.6620548,-0.3577024,0.12948504,-0.25340715,-0.1638454,-0.5205111,0.08138785,0.70708835,-0.0046801297,-0.25554544,0.13369635,0.330516,-0.13184601,-0.6226186,0.1907794,-0.57617605,0.21337008,0.06709801,-0.28073493,-0.46659818,0.015942955,-0.46330953,0.32605976,0.08463525,-0.2587077,-0.0073693423,-0.5162831,0.04745543,1.0122595,-0.23629944,0.2657495,-0.38312998,-0.38809663,-0.8477384,-0.11143877,0.48535043,0.38917118,-0.013366118,-0.78856283,0.11961558,-0.14634031,-0.41092673,-0.016331118,-0.115543865,0.44385687,0.15851527,0.47770777,-0.18849592,-0.88042736,0.09363316,0.02001114,-0.5311832,-0.29768157,0.51504403,0.30510548,1.1475219,0.08047571,0.09518891,0.15556201,-0.48863012,0.10753395,0.005099139,-0.058511328,-0.697187,-0.012970725 +11,0.4653343,-0.24927996,-0.55132127,-0.22187072,-0.2580658,0.08227157,-0.18698357,0.60947174,0.10001111,-0.3665207,-0.22288947,-0.30599785,-0.040199593,0.33948097,-0.2930994,-0.3392171,-0.10095966,0.020946985,-0.47290584,0.4269951,-0.2902712,0.12543735,-0.0268767,0.43653518,0.42575052,0.15275389,0.016542705,-0.040603157,0.19413705,-0.40181115,-0.23237103,0.4226979,-0.47653466,0.090033725,-0.12287617,-0.6034386,-0.06340645,-0.5081892,-0.27334,-0.7749932,0.43886194,-1.1737049,0.6239144,0.09615009,-0.32478255,0.24790278,0.4332557,0.31380197,-0.03691444,-0.09809635,0.30269757,-0.043169,0.122120015,-0.0035386572,-0.25637448,-0.6129293,-0.59288144,-0.26032192,-0.28298903,-0.37482548,-0.48421076,0.10269768,-0.40118095,0.024018157,-0.058478035,0.3289755,-0.4586601,0.10166537,0.11519351,-0.13989368,0.48710147,-0.6936497,-0.28334785,-0.18551947,0.3476073,-0.33903924,-0.17925315,0.100456424,0.4657533,0.3134536,-0.20116065,-0.025557892,-0.1529595,-0.16236627,-0.17820735,0.51403683,-0.34274867,-0.5139126,-0.13885535,-0.051386762,0.36760083,0.5414045,0.0686444,-0.2278274,-0.050894216,0.16498986,-0.3039856,0.5751737,0.35666588,-0.48721734,-0.22899619,0.24599601,0.44114324,0.51620287,-0.20628358,0.025671037,0.095528476,-0.549335,-0.09379958,-0.011994735,-0.26013562,0.47534516,0.0018090443,0.36687186,0.8186504,-0.17780405,0.103461295,0.0032050067,0.011647826,-0.43764192,-0.31488773,-0.35736907,0.31627566,-0.4686575,0.55688834,-0.0052244933,0.75120527,0.014039939,-0.51334244,0.18896866,-0.74010736,0.014764038,-0.2922467,0.46404466,0.6274426,0.33480763,0.2583203,0.62684035,-0.39563057,-0.15052553,-0.07767021,-0.3200359,0.11059401,-0.18959522,0.08671963,-0.5455487,-0.0086480165,0.059411585,0.11969094,0.0032163777,0.59236646,-0.5328185,-0.10978925,0.15534121,0.8619654,-0.31108677,0.021784402,0.7225077,1.0308706,0.85924697,0.027143007,0.83999753,0.0022069432,-0.18263312,0.17516258,0.11362865,-0.67219484,0.34232304,0.59671724,-0.58537835,0.055418536,0.2136372,0.16047022,0.37036905,-0.28323352,-0.09582932,-0.17781141,-0.057997204,0.23660332,-0.1572687,-0.24716868,-0.17698242,-0.007217169,0.068028204,0.14167382,0.14420272,-0.24666227,0.22274542,0.2398122,1.5092125,-0.23459862,0.08708321,0.2176978,0.41977233,0.1081676,0.007927201,0.10442031,0.16133443,0.4817136,0.27668458,-0.6253946,0.33709368,-0.16335583,-0.46331427,-0.04032241,-0.36233553,-0.28239182,0.05879116,-0.531698,-0.09436799,-0.2809997,-0.27827471,0.39399946,-2.7817056,-0.1487638,-0.23241091,0.23945953,-0.0927838,-0.32970706,0.008010843,-0.43435943,0.5348219,0.32993567,0.40843973,-0.6294901,0.41005203,0.58567184,-0.5146064,-0.12950258,-0.63290876,-0.022698283,-0.08267765,0.2594109,0.07209821,-0.11861062,0.11896279,0.2562786,0.43188208,0.1792506,0.23279546,0.30052227,0.5213942,-0.31235936,0.8590014,-0.18130523,0.5024721,-0.16575877,-0.24885334,0.4227852,-0.18509904,0.15425241,-0.29764643,0.18447527,0.5733978,-0.32047674,-0.96021724,-0.77550125,-0.4181876,1.1948177,-0.28154764,-0.51673824,0.30131215,-0.16264749,-0.32563278,-0.04098715,0.6609488,-0.19011754,0.007903679,-0.7810011,0.11840086,-0.34879047,0.015465487,0.08043084,-0.12926464,-0.56169367,0.70673937,0.06277776,0.587276,0.27004668,0.005703379,-0.3727728,-0.44959986,0.04426995,0.71881634,0.45227727,0.0015500649,-0.08508031,-0.07711997,-0.329435,-0.10517545,0.19095683,0.65085846,0.575183,0.07479153,0.3179064,0.22170377,-0.037227932,-0.07300375,-0.21427625,-0.31468984,-0.05451803,-0.014108994,0.5057728,0.38527715,0.006854059,0.40879926,-0.056146167,0.3151639,-0.24645266,-0.4358382,0.31509203,1.1657044,-0.1963055,-0.31682387,0.81809825,0.5724563,-0.14314233,0.33163053,-0.6571982,-0.24883164,0.5915832,-0.107537,-0.7010208,0.13410085,-0.33858567,0.04901364,-0.8615152,0.037684713,-0.35522678,-0.439061,-0.41173553,-0.26345024,-3.5658739,0.30732623,-0.3791003,-0.18405534,-0.30260083,-0.30947837,0.419536,-0.5369489,-0.75570416,0.03795749,0.116856925,0.7963812,-0.07793422,0.013108081,-0.28588635,-0.09575274,-0.16660587,0.17368542,0.011580511,0.31111422,-0.06599286,-0.38666898,0.001140161,0.20968539,-0.39116496,-0.11548387,-0.50288767,-0.36898205,0.014397024,-0.4196049,-0.32799098,0.64428675,-0.49523112,0.014831946,-0.1898486,-0.051682364,-0.25762168,0.36564776,0.047684215,-0.049439907,-0.048375893,-0.061863974,-0.07147886,-0.3381767,0.47780335,-0.031022586,0.25661966,0.09021192,-0.15184882,0.21845908,0.28707445,0.2399768,0.086354226,0.9834928,0.40823615,-0.01811189,0.12413867,-0.28349364,-0.20635723,-0.5513834,-0.20620684,-0.022824414,-0.40957156,-0.52691877,-0.12750015,-0.22592354,-0.75646174,0.71013975,-0.06776795,0.35155317,-0.017233443,0.31521484,0.48034155,-0.15178514,-0.12397378,0.08754329,-0.11721789,-0.5819258,-0.17850804,-0.5409557,-0.43814227,0.0499077,0.6726426,-0.31704113,0.09837699,0.13849364,-0.22523151,-0.0032377325,0.20327702,0.08690651,0.10415086,0.5454417,-0.18365794,-0.74395025,0.5411681,-0.2154828,-0.07632746,-0.66910934,0.106114514,0.5608719,-0.66807634,0.42052287,0.40332776,0.09222293,-0.47179458,-0.5185974,-0.13685907,-0.052904118,-0.3947046,0.27303073,0.23124367,-0.863184,0.320307,0.4054344,0.049938463,-0.63280034,0.8495479,-0.073507674,-0.35276622,-0.012873814,0.3897689,0.31190464,0.08968736,-0.042627357,0.44718352,-0.34911242,0.3592114,-0.03395813,-0.11668403,0.38404286,-0.10089955,0.068464704,-0.7266704,0.24848507,-0.49877843,-0.3811696,0.33545104,-0.022972148,0.049311105,0.5319008,0.17080842,0.33769467,-0.33417308,0.20130825,-0.19466224,-0.18740667,0.2313025,0.43421772,0.5104567,-0.44585025,0.6930941,0.079651386,-0.028889786,0.19600277,0.13778669,0.44609472,0.050139867,0.63925153,-0.014298391,-0.39977646,0.40556127,0.8218294,0.19473667,0.37596598,-0.04941795,0.024827568,-0.0074155657,0.16066077,0.2709628,-0.040420663,-0.8017361,-0.06722908,-0.44356653,0.12156105,0.72503084,0.09464992,0.09513261,-0.10110236,-0.29931915,0.018524857,0.14220996,-0.07080895,-1.0272349,0.43784237,0.2288783,0.8357287,0.43580282,-0.07402247,0.032018684,0.6329838,-0.026950728,0.026570993,0.4339267,0.22973181,-0.341558,0.66389465,-0.81861115,0.31172675,-0.07517277,-0.10635283,-0.0879622,-0.032996092,0.29521248,0.7975502,-0.22910413,0.076468416,0.066929504,-0.36768883,0.23841096,-0.3637505,-0.015390169,-0.55066127,-0.17469901,0.6262648,0.77229804,0.30834717,-0.27240744,0.082743794,0.022496982,-0.052647825,0.011903719,0.12147722,0.10389995,-0.26320058,-0.7284304,-0.045648217,0.46460006,0.14394262,0.24030356,-0.1671014,-0.38054407,0.34638235,-0.047525205,0.22578582,-0.09641311,-0.72469026,0.0022786802,-0.42364419,-0.5518903,0.44368652,-0.24573869,0.39525938,0.25037774,0.0095782885,0.03431422,0.3123252,0.11488498,0.77316785,-0.083431974,-0.01994444,-0.5182585,-0.044446778,0.03519043,-0.14520824,-0.34526157,-0.23540148,0.09769762,-0.6189315,0.30536518,-0.11109971,-0.39740017,0.16299473,-0.28609237,0.03235168,0.5720671,0.020059131,-0.040671237,0.057745997,-0.13943496,-0.23644876,-0.23075674,-0.17636989,0.23735128,-0.14237858,0.2684233,-0.3475579,-0.10743277,-0.40591475,0.18562269,-0.09948892,0.6309129,0.6320792,0.10934201,-0.019707542,-0.22616783,0.12245918,0.63139117,-0.18232512,-0.22536196,-0.13906075,-0.64333147,-0.23627229,0.22203515,-0.019638311,0.5171759,0.083640754,-0.1611743,0.6199184,-0.15325499,0.8446928,0.09384825,-0.40627053,0.086630516,0.59006566,-0.056397352,-0.31017298,-0.21891402,0.8165173,0.43427905,-0.0033011923,-0.082587704,-0.14066401,-0.038673162,0.17569067,-0.13411446,-0.106937364,-0.087682255,-0.58889264,-0.24898104,0.17005643,0.36772949,0.15066026,0.019647576,0.053062357,0.35723054,-0.061016157,0.52681834,-0.4369154,-0.34049866,0.241904,0.34011304,-0.1467973,0.21266083,-0.44598296,0.50388455,-0.5044997,0.020614803,-0.7074846,0.1876521,-0.3102681,-0.15008157,0.1815285,-0.27801716,0.32890636,-0.14738074,-0.31264547,-0.079080164,0.34083235,0.2494263,0.15749836,0.49918985,-0.31725705,0.10325447,-0.071514376,0.53520435,0.79669976,-0.19144388,0.015741272,0.31476992,-0.45738783,-0.5926534,0.50043744,-0.48880655,0.1776528,0.297142,-0.057767674,-0.10026209,0.3821393,0.2564043,0.008975316,-0.071540356,-0.6940054,-0.05416334,0.35120374,-0.14528783,-0.19555022,-0.26932085,0.14888544,0.5588736,-0.36100575,-0.16362247,-0.06585035,0.47005904,-0.054197107,-0.5604047,0.09218607,-0.39100188,0.4791729,0.01819539,-0.34209776,-0.18213254,-0.13525823,-0.48379257,0.34022245,-0.006806764,-0.2994254,0.1709759,-0.31555206,0.07390244,0.895643,-0.21000452,-0.24697696,-0.48597372,-0.41972187,-0.6179425,-0.3149822,0.24801356,0.28611612,0.09945074,-0.28459233,0.17790867,-0.09324798,-0.058173683,-0.16294573,-0.20645891,0.4484666,0.14081493,0.7548086,-0.055762745,-0.7946125,0.18562655,-0.09659054,-0.0482352,-0.6125066,0.5679913,-0.1763166,0.66267985,0.03169918,0.09543677,0.10198461,-0.3474119,-0.049559418,-0.15057819,-0.27939972,-0.9444404,0.005531685 +12,0.44488475,-0.25743976,-0.5159148,-0.0924605,-0.33708933,-0.1578853,-0.22091955,0.1717604,0.18874766,-0.059151586,-0.19924363,-0.1609756,0.2139729,0.5024792,-0.12988383,-0.7563636,-0.103032134,0.16504161,-0.8180517,0.5290792,-0.5772398,0.15623781,0.16872048,0.45626247,0.15885755,0.4627964,0.43618077,-0.17189834,-0.065994054,-0.03917748,-0.12686405,0.30873892,-0.65183514,0.017021,-0.24162439,-0.3001286,0.11559164,-0.51059324,-0.23736218,-0.77736795,0.112789676,-0.97569686,0.48854688,0.055306066,-0.06470038,-0.10284632,0.2816316,0.3544372,-0.4329535,-0.043381818,0.20634297,-0.26804593,-0.13552722,-0.3153532,0.06297776,-0.5137368,-0.52577275,0.0035678367,-0.5254624,-0.3062913,-0.26507047,0.16590089,-0.35872206,0.058769148,-0.12187108,0.4156165,-0.45966625,-0.04136545,0.41700116,-0.24738552,0.21534367,-0.44792625,-0.05388614,-0.09824133,0.46306476,0.0631884,-0.19781561,0.4604408,0.3085706,0.38818875,0.31659746,-0.38857454,-0.25077063,-0.19133233,0.24674839,0.45778263,-0.1533126,-0.4853353,-0.1890519,0.057254013,0.24670582,0.39139727,0.0143709285,-0.19291404,0.030550273,-0.016749699,-0.10034949,0.4644925,0.5596006,-0.24079739,-0.36265284,0.20599145,0.5036919,0.20895928,-0.13510971,-0.17640899,0.031490874,-0.55324763,-0.19267918,0.10960892,-0.02360731,0.62762886,-0.1333949,0.027437815,1.0398839,-0.26239523,0.06274049,-0.28302664,-0.08335173,-0.3046785,-0.3022504,-0.14006743,0.19627823,-0.6183519,0.07944288,-0.30987433,0.79093075,0.19245474,-0.6609511,0.3682669,-0.53412145,0.20058806,-0.07817704,0.6101855,0.67737365,0.34367672,0.53818107,0.6372023,-0.30648342,0.26166365,-0.064141944,-0.5892427,0.1706055,-0.3096679,0.17359611,-0.4263458,0.01781152,-0.15735605,0.112726875,0.012736698,0.48570016,-0.60669106,-0.005460207,0.2929358,0.702979,-0.35912234,0.012733754,0.70561284,1.107064,0.9923254,0.027231162,1.2280993,0.42603454,-0.2284515,0.14954518,-0.27011764,-0.71690696,0.16650121,0.39915022,-0.124428354,0.28439584,-0.08664869,-0.08909921,0.3879238,-0.55161864,-0.012015752,-0.07305443,0.2646555,0.121153265,-0.017152289,-0.48689488,-0.18608329,-0.04570628,-0.07898912,0.1176319,0.29853287,-0.20007804,0.52934676,-0.13683988,1.3766366,-0.0068005524,0.073868655,-0.009255541,0.568177,0.26040405,0.0026366392,-0.035174575,0.39200726,0.4026481,0.13684267,-0.5231424,0.22857358,-0.40316808,-0.475019,-0.1835238,-0.41298848,0.061408963,0.25234684,-0.38628796,-0.08485183,-0.03996931,-0.0951642,0.37159857,-2.5546448,-0.12691669,-0.13249286,0.19963779,-0.2068949,-0.16674389,-0.032150585,-0.5793542,0.26953787,0.21870072,0.5312027,-0.6559433,0.4268551,0.4106553,-0.58555454,-0.09300017,-0.8039849,-0.06959612,-0.13299103,0.6044838,-0.05164906,-0.1448571,-0.09168479,0.1069509,0.85149926,0.084741496,0.22956705,0.38782835,0.3199676,0.21193251,0.6247614,0.14312604,0.5815474,-0.35852814,-0.24812476,0.4202637,-0.11390481,0.41060412,-0.29349527,0.108704545,0.5574036,-0.48468742,-1.0515413,-0.60974866,-0.39721304,0.98651886,-0.44617072,-0.5077446,0.218474,0.009410492,0.102068596,0.02176289,0.4861995,-0.20878226,0.16418676,-0.70587504,0.18593264,0.019250603,0.11318811,0.14739823,-0.002465728,-0.33694735,0.71653205,-0.008019726,0.42489105,0.2839547,0.31171212,-0.12889996,-0.55296,0.18505754,0.84515846,0.3034834,-0.03178374,-0.17563719,-0.34450895,-0.07614377,-0.30190912,0.0522206,0.4852788,0.8988369,-0.07112694,0.17277388,0.26496196,-0.0064680814,-0.00052698754,-0.12432917,-0.22197244,-0.048534114,0.07176395,0.52738565,0.8362961,-0.1807759,0.33371094,-0.28624943,0.46777326,0.18290654,-0.5754454,0.68832886,0.88079035,-0.14985721,-0.00070737995,0.55308443,0.5606731,-0.45886272,0.5240081,-0.6351825,-0.29540828,0.73628783,-0.13761382,-0.37867984,0.1514124,-0.31079742,0.16523856,-0.90300155,0.4032478,-0.27040762,-0.36796603,-0.5035728,-0.17590724,-3.8938599,0.22536455,-0.34000522,-0.11128793,-0.3058875,-0.13866791,0.35806936,-0.76292163,-0.3834504,0.16408774,0.1850019,0.6711964,-0.043699574,0.15727705,-0.25238526,-0.17217344,-0.10920241,0.21128988,0.29019126,0.2737299,-0.17692584,-0.42113164,0.10113869,-0.062504455,-0.5126633,0.18453234,-0.56468827,-0.4754337,-0.20287876,-0.47168928,-0.39883816,0.53887963,-0.331773,0.051765125,-0.19914196,0.056065816,-0.27541223,0.23627901,0.16917048,0.24134251,0.05151392,0.006482768,0.11410583,-0.3443995,0.43702164,-0.047271665,0.41378388,0.11555826,0.06353695,0.13867925,0.42299953,0.5671052,-0.23999065,0.9787634,0.5357228,-0.0046091946,0.081523724,-0.31183517,-0.20714691,-0.7559919,-0.5453406,-0.15732126,-0.42841104,-0.5748001,0.03349606,-0.30667964,-0.84784317,0.6996171,-0.108504444,0.39017102,-0.15573022,0.13165241,0.46092662,-0.2610367,-0.09629267,-0.065165654,-0.1484395,-0.70096916,-0.2225306,-0.7155596,-0.6599166,-0.003128322,0.7761211,-0.28638813,-0.06799737,-0.10643298,-0.32470486,0.046144538,0.11410675,-0.03716719,0.3136436,0.5368561,0.054282445,-0.7633909,0.66550434,-0.020476889,-0.042407107,-0.5112448,0.12314057,0.518061,-0.8512961,0.62072456,0.46568674,0.11384462,0.10708384,-0.4869002,-0.40718967,-0.05175806,-0.07447931,0.5451528,0.15855926,-0.8039342,0.60912377,0.30736452,-0.5725624,-0.7643468,0.29959214,-0.049017157,-0.28221413,0.16298488,0.23845963,0.07028384,-0.07695839,-0.35710976,0.19629882,-0.5395705,0.26649016,0.30070382,-0.032410458,0.28397655,-0.10711949,-0.35126528,-0.70849055,0.045016542,-0.53808033,-0.2018741,0.35685,-0.027101435,-0.18098345,0.05287822,0.08233958,0.386959,-0.2880789,0.16415943,0.05175185,-0.37590796,0.25336775,0.5005967,0.34962818,-0.54315394,0.6503928,0.14798476,-0.32212448,0.062372565,-0.0268941,0.36447638,0.09790412,0.38735646,-0.12418597,-0.195715,0.30931646,0.6622786,0.062363822,0.50393033,-0.0048015704,-0.031579886,0.57510847,0.08882242,0.08302238,0.0721008,-0.42689505,0.014273056,0.06947092,0.14977394,0.5266523,0.33883196,0.36682206,0.09920411,-0.07705409,0.05763266,0.2542652,-0.0016808748,-1.1416361,0.44197452,0.21771163,0.7544033,0.5260322,0.04388769,-0.2667018,0.77918065,-0.31839314,0.025025893,0.43096873,0.11228547,-0.518973,0.7707107,-0.6476638,0.29613924,-0.25143096,-0.03828914,0.09784428,0.1702088,0.24872202,0.77336746,-0.24397454,0.07181382,-0.06374551,-0.1960351,0.08804111,-0.4089522,-0.013400348,-0.34880155,-0.41357175,0.8278906,0.40102616,0.34461215,-0.1682817,-0.17818438,0.05845988,-0.25291535,0.32638586,-0.058243923,0.04688618,0.19511083,-0.61639,-0.17684866,0.60440046,-0.11571162,0.31103882,-0.19937862,-0.3236834,0.03085432,-0.30044705,-0.12897159,-0.030488063,-0.7207041,0.008514969,-0.24413334,-0.58153033,0.57774377,-0.34768817,0.20212583,0.2759469,-0.002958265,-0.29291922,0.2086744,-0.010632225,0.86611927,-0.0297036,-0.32471484,-0.38714072,0.172698,0.36574447,-0.27868405,0.12653707,-0.4157843,-0.072160676,-0.4687947,0.6733204,-0.22747017,-0.49327543,0.074265644,-0.25663778,-0.09561456,0.63530326,-0.09481926,-0.1972831,0.11857352,-0.12910552,-0.3661119,-0.18719734,-0.2648484,0.22307713,0.18358265,0.040123906,-0.117796466,-0.20860699,-0.1327017,0.6016828,0.017990736,0.5610987,0.2052018,0.033947244,-0.19328226,0.029768197,0.14954476,0.43419102,0.19078234,-0.14493658,-0.47978336,-0.43833402,-0.37498823,-0.17385517,-0.115672275,0.1900445,0.11967729,-0.23148426,0.892514,0.006158336,1.3582842,0.08774768,-0.41884467,0.13996206,0.6643744,-0.18369956,0.09953223,-0.4518243,1.0107684,0.55579084,-0.18036844,-0.11392665,-0.5004913,-0.02297307,0.39936525,-0.3825984,-0.10735285,-0.0431636,-0.4889595,-0.47089368,0.22315498,0.31368148,0.17574312,-0.055790298,0.013273632,-0.0094692055,0.13048619,0.6050332,-0.6619469,-0.3177495,0.19390598,0.2814942,-0.12554498,0.264306,-0.34783784,0.49321336,-0.57294464,0.114028454,-0.54865974,0.122082405,-0.24117388,-0.45911723,0.08063619,-0.08147655,0.39502177,-0.3113902,-0.36937076,-0.016848309,0.5493138,0.07302175,0.18948461,0.77495843,-0.29604232,-0.048687767,0.085322134,0.59006685,1.3576273,-0.5854671,0.04436978,0.26266637,-0.37453616,-0.5682282,0.50053954,-0.32683647,-0.17760153,-0.24697353,-0.5711933,-0.58739305,0.17063332,0.16310981,-0.098650776,0.10116312,-0.5642483,-0.08777164,0.31934845,-0.27304617,-0.29256713,-0.23538975,0.4519913,0.66352737,-0.38516852,-0.30513573,0.15289684,0.181524,-0.17046307,-0.5154508,-0.2653232,-0.22470754,0.36122748,0.1827969,-0.3305601,-0.04370706,0.21172696,-0.46203053,0.1337159,0.085835524,-0.34376088,0.16878082,-0.12497196,0.0072327494,1.020096,-0.31676042,-0.04598902,-0.75599074,-0.44852227,-0.99039626,-0.5175731,0.49984464,0.08635678,0.15585874,-0.3757055,-0.011848986,0.03339591,-0.024246557,-0.028152537,-0.6345339,0.2998174,0.047980685,0.6354549,-0.2436607,-0.8657661,0.0057941596,0.2240677,-0.009880892,-0.6480777,0.62058896,-0.10280671,0.92372906,0.063602105,-0.03676086,0.16372545,-0.37532052,-0.025440868,-0.46542442,-0.18305343,-0.8467359,0.070683666 +13,0.28517482,-0.3357441,-0.33735025,-0.037421416,-0.064576186,-0.079691134,-0.15000872,0.54744583,0.17414606,-0.21998398,-0.21176982,-0.22565763,0.0026701961,0.4626577,-0.19889508,-0.6738418,-0.21403277,0.09778335,-0.22980666,0.80088645,-0.38029003,0.102313764,-0.06016661,0.46789622,0.3249747,0.15945677,0.29155985,-0.007909782,-0.3397847,-0.2592214,-0.05367503,0.19724973,-0.59980786,0.19262116,-0.12973338,-0.2945762,0.0072931596,-0.5789712,-0.37959817,-0.78065795,0.41049913,-0.7955811,0.23741919,0.109918945,-0.13638669,0.50734115,0.106591344,0.13503017,-0.2865424,-0.21871053,0.09010967,-0.13466169,0.04907809,-0.18270318,-0.19224901,-0.1598035,-0.6937487,0.10087916,-0.24211352,-0.30483449,-0.32931992,0.15014213,-0.4776063,-0.017047843,-0.11542312,0.69940823,-0.45301244,0.010274229,0.12940578,-0.18145078,0.150789,-0.6267257,-0.34315392,-0.044767052,0.09151408,-0.066150784,-0.020682132,0.32086417,0.1523737,0.3035214,-0.12294373,-0.100692846,-0.614291,-0.056135103,0.22872026,0.5870423,-0.14246707,-0.78405786,-0.024472931,-0.046850383,-0.15259741,0.087974764,0.12378732,-0.17897268,-0.22344537,-0.029343048,-0.19864082,0.34503886,0.4489086,-0.22795106,-0.42031893,0.35356593,0.355806,0.30046543,-0.01622452,-0.3181536,-0.042106282,-0.7082316,-0.04197063,0.011177893,-0.15973395,0.7024103,-0.109999515,0.30395594,0.6354511,-0.07055923,-0.073364235,-0.091208644,-0.0026930596,0.016492536,-0.41773915,-0.112493634,0.3245249,-0.04480912,0.35422978,-0.14213888,0.913851,0.035411425,-0.7837593,0.49404845,-0.51207876,0.24384512,0.10357339,0.3997389,0.45644474,0.37711897,0.5641021,0.6069382,-0.31865066,-0.02707311,-0.09965205,-0.21249492,-0.10727233,-0.1189487,-0.00590988,-0.36717725,0.093848884,0.06906726,-0.09801977,0.14666274,0.45154837,-0.35831735,0.053162232,0.22629003,0.9038878,-0.14974982,-0.07408815,0.8073419,1.0274328,1.1965008,-0.0059129507,1.1078811,0.18395166,-0.1890949,0.23820925,-0.16312347,-0.8237265,0.19529307,0.37346315,0.23593287,0.20235054,0.007941944,-0.12467984,0.440796,-0.3940116,0.11143994,-0.2158209,0.18528838,0.4279441,-0.076329835,-0.43883872,-0.34830502,-0.12607533,0.09495159,-0.039595228,0.19768016,-0.12342936,0.33045477,-0.07728406,1.960576,-0.05407523,0.12357682,0.24058239,0.6058844,0.1314659,-0.06630239,0.090046324,0.32325727,0.17354596,0.078790575,-0.66975445,0.1312098,-0.24932325,-0.6195327,-0.013475671,-0.34205115,-0.19280829,-0.032968063,-0.5163029,-0.18553446,-0.2176194,-0.25711644,0.56163716,-2.959863,-0.038304698,-0.07293639,0.20170294,-0.3122835,-0.38278064,0.022967806,-0.47823653,0.5477197,0.42980328,0.58913016,-0.6189467,0.17521578,0.38447592,-0.4948738,-0.166117,-0.6056924,-0.03587496,-0.07117779,0.56611294,0.013762251,0.030181967,0.1204285,0.03365031,0.6057518,0.2181548,0.019092055,0.27854255,0.3328168,-0.08605859,0.43407163,-0.13786216,0.3652124,-0.19573314,-0.07332585,0.29407874,-0.5724781,0.42726007,-0.22138925,0.17279196,0.39312646,-0.36139426,-0.9527963,-0.5218952,-0.29653183,1.1156696,-0.18639903,-0.50532055,0.35914555,-0.20118429,0.037874777,-0.23734277,0.48924842,-0.27983525,-0.16902979,-0.72710425,0.065604575,-0.16008143,0.17536409,0.03100723,-0.09190428,-0.48255923,0.7786897,-0.010959762,0.51604104,0.4353387,0.13495089,-0.36127627,-0.45226955,0.026415078,0.59784395,0.28132382,0.1446648,-0.27296495,-0.19777878,-0.07828526,-0.25755396,0.039961662,0.5240306,0.46190807,-0.0518233,0.10782698,0.30636898,-0.0017203888,0.012749909,-0.051253695,-0.08581895,-0.19951086,0.022984704,0.63980836,0.9540834,-0.32286462,0.14674579,-0.14709438,0.22057463,-0.12881462,-0.20970546,0.47806492,0.9443677,0.0076948605,-0.24177003,0.45235744,0.68175143,-0.29307505,0.38665882,-0.34470046,-0.15339933,0.582816,-0.24442913,-0.4510359,0.09077132,-0.320173,-0.2030937,-0.7310884,0.36410734,-0.2114244,-0.3076663,-0.6912393,-0.21777599,-3.3683288,0.08591744,-0.32074866,-0.40563098,-0.15623869,-0.15382595,-0.12999131,-0.7044746,-0.58005756,0.13462245,0.09094918,0.49611878,-0.12685852,0.1905831,-0.22662778,-0.11798782,-0.3817347,0.09058297,-0.0698827,0.3933587,0.07459852,-0.30332413,-0.09543118,-0.22623806,-0.5838269,0.1353722,-0.44833723,-0.32233348,-0.120778024,-0.564967,-0.27923468,0.5853206,-0.45076606,-0.020470275,-0.19893561,-0.0955923,-0.3005978,0.38788223,0.2494144,0.24261802,0.019588368,-0.079850756,0.09457014,-0.14922398,0.33993617,0.021787962,0.34875083,0.6072655,-0.25986448,0.2227105,0.41684636,0.6359034,-0.13451692,0.820563,0.5349696,0.022776062,0.23708707,-0.3360125,-0.1751272,-0.548762,-0.24888015,0.22563948,-0.25362554,-0.5520292,-0.16603206,-0.36365637,-0.7864027,0.36406603,-0.12811036,0.17729008,0.02952441,0.011362642,0.47852483,-0.24831752,-0.012358949,0.036778472,0.2018948,-0.4948721,-0.36285737,-0.60132813,-0.49247566,0.055982172,0.78913754,-0.025818074,-0.26717836,0.080648996,-0.314507,-0.18542303,0.08125173,-0.08811557,0.10113692,0.2804164,0.27843842,-0.72479725,0.67155284,0.042396456,-0.1428713,-0.43127504,0.16032992,0.4146177,-0.39597082,0.6706764,0.3212616,0.12662604,0.021518042,-0.5173349,-0.35636666,-0.19153851,0.024169276,0.23780727,0.2418616,-0.6659304,0.42581904,0.16257201,-0.2988052,-0.8268401,0.2773357,-0.002681346,-0.33752856,-0.17500359,0.2645967,0.13927487,0.01798804,-0.0980129,0.27543935,-0.5129979,0.26223576,0.12982316,0.0835085,0.28921404,-0.1052422,-0.111973524,-0.6650587,0.10550526,-0.30473682,-0.3316588,0.20905568,0.19548507,0.06565238,-0.018024156,0.1094766,0.2682074,-0.30412602,0.16439296,-0.029277757,-0.111655645,0.30565122,0.41493902,0.6471118,-0.5641823,0.59987193,0.026415586,0.0874038,0.15684007,0.026940107,0.26600403,0.09878385,0.28016487,-0.023778215,-0.18091102,0.11882496,0.62770253,0.23733921,0.494023,0.057118,-0.2450325,0.6318326,0.07903533,0.24367678,-0.014282942,-0.6340497,0.26230606,-0.3029449,0.022257993,0.4880503,0.10988426,0.28912494,-0.09040172,-0.24456792,0.034255706,0.3929368,-0.16575639,-1.0154355,0.17280586,0.030718377,0.8655985,0.7516429,-0.09071437,0.1947639,0.75741154,-0.07852522,0.0786346,0.3466227,0.030652596,-0.6778517,0.6641314,-0.52845454,0.50314003,-0.03579696,-0.027266381,-0.0017177612,0.08968399,0.37566128,0.39357826,-0.20406418,-0.120546676,-0.1306345,-0.3460327,-0.0038395673,-0.4437728,0.286773,-0.38450205,-0.2422527,0.57066244,0.6963673,0.29531857,-0.16601415,0.030732328,0.113781214,-0.011447159,0.08356478,0.042068888,0.019450808,0.11798501,-0.82510024,-0.17724913,0.4955049,-0.3374195,0.20871247,-0.06860451,-0.25473753,0.28913918,-0.28972927,-0.32353207,-0.04731959,-0.76507753,0.2367713,-0.19644113,-0.50593036,0.2776368,-0.14956819,0.40953505,0.15763867,0.019744538,-0.42304578,0.11836904,0.14568654,0.9537594,-0.029766133,-0.11169273,-0.4022604,-0.05638343,0.09026244,-0.13484572,-0.12689586,-0.08552309,-0.18910229,-0.4429946,0.5011073,-0.020296214,-0.09732089,0.057206154,-0.16118897,-0.058298197,0.68945426,-0.1409364,-0.10698128,-0.29102418,-0.17234279,-0.17296094,-0.03992774,-0.012545968,0.346475,0.23155986,-0.08367094,-0.03539096,-0.03537332,-0.023044435,0.45642772,-0.064974524,0.31333014,0.17438494,0.100829504,-0.39257994,-0.16959123,0.006224195,0.53887457,0.20286842,-0.09932095,-0.26898864,-0.42874837,-0.32977417,0.23980665,-0.12776244,0.39066705,0.17576264,-0.3501095,0.49114648,0.1051923,1.1127274,0.10284534,-0.3640975,0.2766042,0.5047901,0.039417997,0.018343912,-0.26959231,0.8801248,0.3591622,-0.12844642,-0.099811316,-0.30644605,-0.0030759715,0.1542558,-0.2419884,-0.014000843,-0.025084222,-0.5151043,-0.1017434,0.15079303,0.14474978,0.20849794,-0.29980788,-0.17833793,0.22732763,0.13197272,0.47897515,-0.25354406,-0.2642651,0.41351172,0.12057862,0.13563606,-0.037772093,-0.44717205,0.39376667,-0.49083266,0.16243176,-0.2814135,0.18863273,-0.34586346,-0.10466883,0.28933907,0.08293822,0.46273425,-0.31510854,-0.3678999,-0.2800896,0.42121303,0.15651257,0.21472706,0.4674984,-0.20421283,0.04047293,-0.008999117,0.62336236,0.91239005,-0.21238534,0.034147914,0.37724254,-0.32596195,-0.60435575,0.33271024,-0.2029795,0.17126326,-0.15105735,-0.08031867,-0.8273413,0.1067788,0.22915296,0.027614126,0.036557425,-0.63148093,-0.37873104,0.29202357,-0.33147767,-0.22437535,-0.42041337,-0.011490047,0.7695735,-0.21900159,-0.37690043,0.113405965,0.086563654,-0.121917665,-0.52547026,0.108664714,-0.3769153,0.29222456,0.043217074,-0.3686843,-0.32545146,0.14729445,-0.42313674,0.06169967,-0.005702535,-0.31205398,0.00017693639,-0.4099799,-0.021141179,1.2235616,-0.24577475,0.44832766,-0.69344234,-0.46467507,-0.91322255,-0.3891457,0.74360496,-0.15630178,0.023591975,-0.6337623,-0.09652168,-0.051676977,-0.28927037,-0.14793152,-0.43017808,0.41751012,0.1627198,0.31484544,-0.18876536,-0.47543907,0.11146548,0.1425666,-0.050111305,-0.45981118,0.3972009,0.13992186,0.82506114,0.019870244,0.053685248,0.18189563,-0.4492089,0.055316553,-0.16487902,-0.31162533,-0.41864052,0.35399953 +14,0.31714576,-0.43155608,-0.46576712,0.086364046,-0.3016712,-0.038225446,-0.2300445,0.5779172,0.11410383,-0.42458767,-0.09172891,-0.074535064,-0.123573594,0.23337854,-0.17535369,-0.18052292,-0.05302074,0.104425244,-0.3948682,0.6745303,-0.23508765,0.20835455,0.012003465,0.25712565,0.37904248,0.3600784,-0.15778926,0.17149165,-0.12028874,-0.32010144,-0.089165516,0.22163367,-0.5790292,0.35300273,-0.23081267,-0.34219438,-0.19491413,-0.51651806,-0.31728145,-0.78533494,0.19134752,-0.8946587,0.3914852,-0.0037710879,-0.39218324,0.28013638,0.4218712,0.42427644,-0.09746992,-0.229954,0.2761093,-0.10576582,-0.060778163,-0.26726478,0.06378076,-0.31293622,-0.5887328,-0.09538489,-0.35549554,-0.18563756,-0.2695599,0.27426362,-0.24842772,0.04350457,-0.155954,0.6144373,-0.43839625,0.18691264,0.11326326,-0.28354684,0.184046,-0.78417504,-0.10511349,-0.12634064,0.24754153,0.033212516,-0.1838944,0.26545128,0.20682122,0.14706406,0.06840467,-0.097120956,-0.5018339,-0.0974857,0.0906526,0.37331167,-0.27033174,-0.23596695,-0.049742687,-0.022326436,0.28286394,0.17472135,0.14747462,-0.3758103,-0.09452839,-0.030682411,-0.2798365,0.27255177,0.30244967,-0.21531369,-0.084955685,0.44594368,0.63834465,0.27027804,-0.2894613,-0.13491742,0.004511595,-0.47772264,-0.056378838,0.15299176,-0.15650925,0.41475087,-0.08462608,0.15941298,0.61916673,-0.08445094,-0.10573781,0.10931814,0.18501379,-0.009171703,-0.38591626,-0.3340363,0.33514723,-0.33782315,0.19600675,-0.07007997,0.61939514,-0.016232815,-0.598979,0.27429575,-0.56485385,0.12958314,0.07180722,0.1855643,0.6513747,0.7290779,0.25537327,0.7530603,-0.22226684,0.042525,-0.2129632,-0.22808647,0.24982429,-0.23371305,-0.059101902,-0.5023325,0.16077553,-0.05449118,-0.09695416,0.10233839,0.50648606,-0.53655505,-0.0674669,0.14493199,0.66684014,-0.14582877,-0.057282828,0.74189717,0.97822464,1.1179867,0.15679826,0.8633527,0.12922202,-0.18633434,0.1472583,-0.0023355144,-0.6058286,0.2797106,0.45078823,0.23486741,0.19589719,0.1358085,0.06816288,0.50398815,-0.14281748,-0.015010067,-0.14630008,0.16447116,0.26492476,-0.13442434,-0.43665972,-0.3579722,0.025700977,0.16418777,-0.00517241,0.1620355,-0.15130118,0.3261387,0.20896891,1.7060678,-0.21921417,0.10721244,0.29102594,0.34179473,0.28533673,-0.354676,0.061427824,0.39913845,0.17776132,0.27944854,-0.483588,0.15850504,-0.19097662,-0.5704674,0.009800447,-0.29759732,-0.18346946,-0.07163615,-0.50779265,-0.2807525,-0.095101036,-0.23398484,0.5049038,-2.818238,0.053610187,-0.14408755,0.3362181,-0.23260233,-0.501998,-0.021184755,-0.36572486,0.4293268,0.30538195,0.51699936,-0.5630106,0.31044367,0.34641132,-0.79861695,-0.08985378,-0.51537424,-0.09476638,-0.07059489,0.46139663,0.0779562,0.035494383,0.10593749,0.032854836,0.49222305,-0.09794382,0.0941274,0.46075338,0.30356565,-0.26300594,0.62845993,-0.096094534,0.42083067,-0.29116985,-0.30140296,0.3356406,-0.5218905,0.16376117,0.09667999,0.21696244,0.5896469,-0.45567125,-0.9402154,-0.6906595,-0.04826176,1.1566248,-0.2145553,-0.51624644,0.2622581,-0.5469524,-0.35979488,0.0017924862,0.4869081,-0.03556416,0.062176134,-0.7402128,0.024619818,-0.17198081,0.21337965,0.06833445,-0.27005726,-0.5112459,0.9390984,-0.07012393,0.65742594,0.30412254,0.089258656,-0.4126313,-0.32037416,-0.10079213,0.7619628,0.6148675,0.10262394,-0.1431844,-0.1394407,-0.25721213,-0.17792848,0.2616168,0.58675396,0.23365399,-0.119622394,0.15215805,0.23027405,-0.14277048,0.08989101,-0.23469,-0.22935227,-0.11927999,0.11928214,0.5542039,0.67014503,0.04106965,0.28203297,-0.01635042,0.35666314,-0.0030744672,-0.56952286,0.3923466,1.0543458,-0.07694234,-0.38310838,0.52514666,0.5362763,0.043218546,0.28228483,-0.41144544,-0.30740026,0.33799788,-0.21886896,-0.4802024,0.1825992,-0.32938766,0.0049928767,-0.6532683,0.19146135,-0.46162024,-0.604132,-0.5900217,-0.11367637,-2.9442163,0.2663868,-0.17388384,-0.24472697,-0.20975325,-0.2704623,0.19222103,-0.70301855,-0.53905505,0.16114543,0.14453878,0.6092259,-0.21066524,-0.04236603,-0.24583735,-0.370578,-0.22268924,0.33835584,0.0067074415,0.42317486,-0.10052388,-0.3686044,-0.09510959,-0.010096763,-0.50841415,0.032315336,-0.7269035,-0.356212,-0.120965,-0.5691306,-0.41652146,0.6237801,-0.41774654,0.06530895,-0.12704088,0.07316768,-0.15516257,0.2320226,0.046750765,0.05306673,0.15288533,-0.07601828,0.075305395,-0.18424733,0.2217244,0.09640823,0.25197005,0.26344076,-0.20786092,0.20371415,0.59705245,0.73798895,-0.2952266,1.0460193,0.4154974,-0.16770904,0.35089377,-0.15006445,-0.33021697,-0.5530446,-0.24033895,0.03644851,-0.29912868,-0.25719625,0.031270705,-0.378519,-0.776815,0.5855737,0.06479722,0.07333504,0.015996844,0.32621628,0.53411645,-0.28527737,-0.13659067,-0.042663064,-0.15765938,-0.59123456,-0.31553817,-0.47263846,-0.5272227,-0.025179787,0.96959984,-0.33641738,0.05589944,0.15168153,-0.34894985,-0.034795184,0.22743322,-0.07600359,0.13285819,0.44742227,-0.05394117,-0.52401626,0.4808292,-0.18747523,-0.17874555,-0.3806119,0.56869495,0.5728749,-0.5579144,0.5742647,0.2924471,0.08238018,-0.29836974,-0.4864017,-0.013031299,-0.085946,-0.23965904,0.42546034,0.42978913,-0.79111284,0.3325453,0.33746275,-0.29634613,-0.7026597,0.49385062,-0.1402139,-0.19724157,-0.29065758,0.42064553,0.25955877,-0.026920905,-0.06292076,0.17877732,-0.45202824,0.25413743,0.17007165,-0.082904875,0.1380168,-0.18090487,0.032248583,-0.82124525,0.10926153,-0.4220101,-0.32683378,0.44492513,0.061568327,-0.022296263,0.08862978,0.041248415,0.33199096,-0.15754081,0.07883129,-0.2927813,-0.20551758,0.44029266,0.5163329,0.43858173,-0.40553957,0.5655693,0.12105986,-0.06997942,-0.014978937,-0.051927984,0.34409872,-0.015486794,0.4551676,-0.114085265,-0.100119,0.18233685,0.5086986,0.17032878,0.44464293,-0.10846214,-0.07415305,0.072143115,0.047884528,0.2717549,-0.12184841,-0.7725791,0.23596723,-0.3445925,0.073765345,0.5975974,0.0973679,0.25671038,-0.10438486,-0.28041193,-0.089454785,0.21550988,-0.026701884,-1.232432,0.38671142,0.1789439,0.8500829,0.49551013,0.048689958,0.075548686,0.89622396,-0.09416838,0.026805477,0.2942347,0.09880285,-0.51391345,0.51359516,-1.0669981,0.482665,-0.04403966,-0.049424924,0.07946213,0.02918108,0.5115513,0.5853072,-0.19916987,-0.0019261794,-0.007892771,-0.4160905,0.13688584,-0.34229988,0.14552154,-0.42337054,-0.4503966,0.67529184,0.52426875,0.63003075,-0.21048461,0.03534099,0.053844247,-0.17815824,0.33257082,-0.012850476,0.07433315,-0.071533374,-0.66425455,-0.022053609,0.5622686,-0.15161593,0.23842978,0.051726613,-0.26643416,0.4707233,-0.07102812,-0.0069483006,-0.021048317,-0.6372984,0.20363565,-0.26525837,-0.380078,0.39448363,-0.04555721,0.2297199,0.15185936,-0.035322066,-0.13418834,0.43115404,0.16327524,0.9411685,-0.054294676,-0.013089836,-0.28259543,0.22118865,-0.05235952,-0.082787886,-0.07036749,-0.27367276,0.036471065,-0.71898025,0.2707531,-0.085644566,-0.24641684,0.16150853,-0.091914766,0.0679482,0.5564949,-0.15267392,-0.25188044,-0.15910485,0.043492027,-0.16786766,-0.5003033,-0.16186722,0.2303284,0.027699133,0.09710554,-0.07957214,-0.18086179,-0.15027264,0.34099862,-0.048195276,0.47546488,0.31875148,-0.027654698,-0.31749764,-0.07380321,0.21130796,0.3857554,0.02197728,-0.0536622,-0.22401486,-0.5719101,-0.5402334,0.16643748,0.06385705,0.53155947,0.14454257,-0.114300095,0.79077095,-0.36371025,1.1854073,-0.03173283,-0.47036806,0.15737215,0.51042193,-0.10483465,-0.10212309,-0.29675633,0.76649135,0.59571457,0.0031271833,0.041451115,-0.5266045,-0.09702883,0.15291417,-0.18302895,0.0120517565,0.053175468,-0.6287617,-0.21211784,0.069155805,0.17368683,0.09751817,-0.16827162,-0.024066355,0.40214294,-0.000740096,0.20863383,-0.29669496,-0.2891709,0.31872076,0.26915088,-0.12194721,0.008462305,-0.60289,0.4574468,-0.5703443,0.20553185,-0.36583376,0.18670973,-0.31068134,-0.14291045,0.2310441,-0.15347192,0.37900993,-0.34464693,-0.3095952,-0.081888676,0.6157452,0.052040916,0.098539814,0.6108057,-0.31231576,0.07888239,0.021224977,0.45172125,0.63795036,-0.47920308,-0.05648934,0.30930543,-0.42346737,-0.48910233,0.3607923,-0.17166682,0.19301333,0.28377536,-0.09616625,-0.44373345,0.27151722,0.28298992,0.09402078,-0.1674609,-0.6861587,-0.019720068,0.21174791,-0.45369497,0.009531056,-0.25068027,0.17742583,0.39740378,-0.37306002,-0.6117384,0.057118744,0.066492096,0.049481962,-0.41456434,0.023326298,-0.3616343,0.29551333,0.022445632,-0.34605113,-0.2839084,0.22464588,-0.48144108,-0.085596904,-0.105852224,-0.24164116,0.10150809,-0.4051458,0.043394912,0.8134718,-0.21456274,0.1643608,-0.45271495,-0.506907,-0.7577738,-0.3211477,0.24695535,0.08820223,0.13623442,-0.75093967,-0.006675226,-0.2612001,-0.29947147,-0.193397,-0.4627238,0.49695584,0.14241247,0.37993884,-0.24225426,-0.7329482,0.31884226,0.15737705,0.14343692,-0.4556783,0.43715218,-0.09208427,0.7808298,0.10483885,0.116614185,0.1794674,-0.49684262,-0.082777955,-0.102780424,-0.21784137,-0.6429008,-0.08427716 +15,0.56892955,0.1350213,-0.46374968,-0.13639,-0.11054366,0.09072101,0.000116212024,0.32999703,-0.004201307,-0.5944929,-0.3824834,-0.29351565,0.016282989,0.2683215,-0.23223297,-0.6955685,0.16895346,0.14786026,-0.3820137,0.5305149,-0.4155392,0.37787884,-0.027857082,0.34019402,0.1137057,0.31412807,0.32123327,-0.19617535,-0.1424446,-0.19439149,-0.03491452,0.050203674,-0.39276102,0.2527608,0.112313576,-0.30127224,0.10914983,-0.23918223,-0.41130766,-0.59204197,0.21341157,-0.84476936,0.40248108,0.067666225,-0.23932043,0.14667754,0.07738708,0.15716253,-0.24844769,0.073203646,0.24182712,-0.13976294,-0.11442014,-0.34579253,-0.13045712,-0.6888705,-0.45507288,0.09429144,-0.17512076,-0.21899037,-0.46282735,0.09793736,-0.28414547,0.024069538,-0.10432471,0.15695181,-0.566454,-0.055820566,0.2088467,-0.28002435,0.10337145,-0.61292976,-0.2789621,-0.13878812,0.18601152,-0.1298024,-0.13689393,0.31008306,0.24156776,0.5248965,-0.003000268,-0.089651294,-0.26833695,-0.14865066,0.29730862,0.6414723,-0.3325386,-0.5100714,-0.08393768,-0.15031807,0.1394008,0.06010936,0.12454226,-0.3154852,-0.07647039,-0.13334383,-0.29054716,0.1492252,0.57371986,-0.5881528,0.0012585266,0.3333164,0.3481769,-0.052791696,-0.19979899,0.04759511,-0.09020006,-0.45217636,-0.15715715,-0.07215339,-0.100043125,0.6685848,-0.07127948,0.11387082,0.5925108,-0.22705813,0.2557784,-0.021003842,-0.27898672,-0.104421414,-0.055150826,-0.09373379,0.17168392,-0.2930347,0.13459715,-0.35276327,0.87154645,0.027340727,-0.58932686,0.48257288,-0.42661697,0.15303119,-0.06109818,0.50788885,0.42462203,0.38680807,0.23380078,0.6240493,-0.4893559,0.02067693,-0.03520986,-0.31584764,0.13820006,0.061313383,-0.20076588,-0.44368228,0.102300406,0.12792705,0.003863573,0.027927289,0.4785542,-0.3939776,0.045874152,0.28731364,0.74655837,-0.35594797,-0.055771105,0.5443873,1.1975515,0.8190598,-0.020052183,1.1866003,0.3941059,-0.13933805,0.06361329,-0.2838651,-0.5622828,0.17439799,0.49005148,0.5192898,0.10702284,0.27397078,-0.015780734,0.5096382,-0.53858316,0.17930757,-0.25033626,0.31437507,0.08815998,-0.19665071,-0.4636399,0.008065628,0.077991046,-0.061137665,0.053408258,0.39040524,-0.20062985,0.37218115,0.04468041,1.6091472,0.09526156,0.15015057,0.028468292,0.5510273,0.1313027,-0.06679227,0.12103746,0.25819546,0.17175332,-0.061263647,-0.3725792,0.1011801,-0.16489804,-0.76935357,-0.19845316,-0.30053124,-0.18365529,0.037488528,-0.44033045,-0.082590856,0.13135733,-0.19807352,0.38416934,-2.7049332,-0.057563275,-0.23647371,0.2015824,-0.165071,-0.34595403,0.057148844,-0.3514905,0.5846033,0.4913873,0.46540788,-0.56928587,0.44822937,0.5157832,-0.37026945,-0.058589865,-0.58184874,0.016425593,-0.11324561,0.49576405,0.16351168,0.020692255,0.03129523,0.02430345,0.47814777,-0.20226799,0.09117676,0.1543381,0.27570492,0.17004827,0.36313948,0.09917307,0.52561,-0.1517552,-0.14743532,0.24818501,-0.18861532,0.41708905,-0.10072448,0.14344963,0.15487285,-0.52825147,-0.67629826,-0.7914174,-0.43161985,1.0831891,-0.11294309,-0.49071804,0.36362672,-0.14199577,-0.25492284,-0.058455456,0.42524645,-0.21531653,-0.0017673586,-0.77256924,0.0661354,-0.25868288,0.13786876,-0.0061206827,-0.008654682,-0.48221564,0.80682147,-0.14920832,0.42811912,0.44328675,0.111050494,-0.19184354,-0.3273851,0.06039675,0.92059815,0.3276814,0.1970038,-0.3213231,-0.21922286,-0.24214864,-0.12982707,0.15557651,0.59688646,0.51739645,0.072515965,0.00978307,0.16720466,-0.14846244,-0.21838714,-0.22176707,-0.13140376,0.030020222,0.07138585,0.73236996,0.76965463,-0.15979011,0.2812369,-0.26117036,0.4021461,-0.35249344,-0.44691247,0.32985234,0.70921856,-0.053063303,-0.16514124,0.66341126,0.7098554,-0.2627643,0.29442978,-0.6197077,-0.33189312,0.44423106,-0.25599533,-0.3791513,0.12664032,-0.44256237,0.16482092,-0.88691217,0.4687485,-0.21813877,-0.5850411,-0.5534109,-0.19448635,-3.6989517,0.19026123,-0.27520308,-0.22466215,0.07622935,-0.15139921,0.35859627,-0.51727057,-0.3248248,0.0705858,0.067031436,0.51756185,0.06861819,0.07992101,-0.37444067,-0.19261374,-0.111627094,0.26397964,0.0611575,0.3440453,-0.14226736,-0.4177665,0.08133868,-0.15605508,-0.2597198,0.033078495,-0.6201512,-0.6197672,-0.22195257,-0.14310057,-0.20373188,0.55491364,-0.52908814,0.027870229,-0.24964054,-0.08310629,-0.27670264,0.2031022,0.25949588,0.24229898,-0.11952187,0.060680747,-0.13982163,-0.44593415,0.4022191,0.114977516,0.41319245,0.5387212,-0.15980099,-0.024253467,0.48010403,0.44390795,0.03292556,0.749515,0.42276272,-0.08159985,0.25540167,-0.1984583,-0.23532286,-0.54484946,-0.43316582,-0.116224535,-0.43992022,-0.49685213,-0.16145362,-0.3553398,-0.69746333,0.40453586,-0.046272993,-0.102915846,0.0017550843,0.06290086,0.28472838,-0.22275506,-0.1470807,-0.0025359818,-0.009042384,-0.59190696,-0.41366318,-0.57970476,-0.454181,0.083241716,0.99444485,0.032315936,-0.04971404,0.006272137,-0.26217276,-0.03664904,0.11083094,0.09513172,0.067319855,0.24669722,-0.056973524,-0.75322247,0.66616535,-0.045030493,-0.16369703,-0.64183027,0.26200372,0.5420367,-0.6384672,0.48965573,0.43205568,0.121326685,0.14089522,-0.52217597,-0.3432083,-0.175599,-0.36404905,0.30987564,0.16386828,-0.9771338,0.36786416,0.32297662,-0.11179062,-0.7149089,0.49087292,-0.13006267,-0.5402121,0.21154396,0.15675534,0.07623272,-0.17038655,-0.25067922,0.3241434,-0.50318664,0.28170317,0.3262324,0.038602542,0.35900375,-0.16615649,-0.0048682177,-0.67269695,-0.079649016,-0.47836477,-0.184973,0.07005952,0.111316696,-0.030908018,0.1777338,0.11169165,0.4048615,-0.23183282,0.15905164,-0.107250094,-0.22033134,0.32996845,0.46145126,0.49584875,-0.4377966,0.6990423,-0.048281822,0.18159561,-0.20843199,0.15814283,0.553238,0.004632843,0.41982475,-0.19080465,-0.051908594,0.2075051,0.95503384,0.297749,0.58717114,0.21782207,-0.27791792,0.39354473,0.05561175,0.13677435,0.10924651,-0.4624415,0.05299694,0.003567636,0.17958744,0.3587089,0.012504752,0.43557867,-0.20846261,-0.26401544,0.05356008,0.2771508,0.1841379,-0.9322285,0.30711904,0.23725376,0.71292645,0.52163666,-0.08540291,-0.040770292,0.7030236,-0.3074802,0.07011159,0.23377919,-0.06468409,-0.45933595,0.34288105,-0.5310339,0.3665704,-0.116650395,-0.07462597,0.081201084,-0.07384839,0.22731447,0.7257619,-0.2031634,0.107728735,0.19081722,-0.41666397,0.024460793,-0.28682128,0.06846343,-0.5973191,-0.28682604,0.6760874,0.60573775,0.24641491,-0.026614785,-0.06866842,0.035946164,-0.0818808,0.074746445,0.035960555,0.19786794,-0.06969569,-0.6159506,-0.39519256,0.5121541,-0.123448715,0.17406437,0.06273622,-0.35595927,0.16151057,-0.24026452,-0.11355793,0.045680404,-0.40652266,0.15554273,-0.3668995,-0.31444073,0.4406628,-0.27004224,0.42163792,0.12206297,0.05889403,-0.15881048,0.3611305,-0.043910086,0.6122225,0.13754496,-0.272535,-0.44903582,0.015529045,0.29013896,-0.24751791,-0.10962743,-0.283545,0.09776646,-0.6545001,0.23860715,-0.1323525,-0.26000857,0.09408192,-0.14083074,-0.0130909635,0.5696548,-0.017511921,-0.25449377,0.18690325,0.055254787,-0.23382087,0.19023636,-0.15736385,0.30162886,0.002061316,-0.029137237,0.011905764,0.022171235,0.100154586,0.23341165,0.08062359,0.2644819,0.39898777,-0.09452778,-0.2544872,-0.14158313,-0.004774528,0.63546455,-0.10740267,0.124778666,-0.00511258,-0.71660703,-0.3824328,-0.054096997,-0.26937205,0.2603465,0.23101674,-0.2277061,0.658584,0.030317709,1.1443865,0.13062759,-0.3731777,0.10171192,0.59753144,0.032263048,0.16553028,-0.39096698,1.0863196,0.6133667,-0.17553453,-0.19529592,-0.20681348,0.010039636,0.26179373,-0.14834605,-0.27195635,0.05199799,-0.7321731,-0.05025851,0.15080322,0.40757936,0.16669962,0.02996317,0.06949369,0.071446225,0.17919533,0.32772484,-0.43751764,-0.19585061,0.36886352,0.22071366,-0.15322421,0.07531287,-0.29754663,0.39518723,-0.61460286,-0.0344161,-0.36327904,-0.11356183,-0.23347063,-0.34713477,0.18543205,0.082765855,0.3813835,-0.31890178,-0.15429795,-0.115878046,0.5527052,0.15303512,0.25595573,0.501466,-0.069486454,-0.053773012,0.0066392412,0.37812668,1.1618674,-0.31244496,-0.00081574917,0.48909074,-0.44638607,-0.5606986,0.24473305,-0.31383422,0.07995169,-0.09497522,-0.4613605,-0.49614826,0.30334356,0.23243997,-0.25168493,0.081790075,-0.5693612,-0.20522316,0.24319763,-0.3484199,-0.3940745,-0.29378912,0.2439973,0.61205655,-0.3690087,-0.22341573,0.0021971804,0.34923843,-0.38239056,-0.6119588,0.05078081,-0.26477024,0.27811044,0.24884759,-0.45438364,-0.14974536,0.1095177,-0.27230987,0.09581368,0.19788125,-0.4482978,0.13220993,-0.5169011,0.09152417,0.76326686,-0.036948353,0.22958732,-0.66854125,-0.44319528,-0.9346401,-0.57295287,0.69231755,0.22015102,-0.10699259,-0.40963188,-0.21035211,-0.08299322,-0.008413153,-0.065077536,-0.28327134,0.57919216,0.10383898,0.3196617,-0.03622498,-0.82739,-0.00962994,0.14739858,-0.22776733,-0.59970313,0.48482826,-0.1608218,0.9677691,0.03766436,0.1513406,0.28500548,-0.44267854,0.23123002,-0.3378945,-0.2225432,-0.63142234,0.13474317 +16,0.48036602,-0.06444775,-0.40228122,-0.06683991,-0.42656282,0.40786928,-0.032705452,0.24565366,0.027458416,-0.7044058,-0.0037058082,-0.073839866,-0.32939267,0.035550233,-0.16433868,-0.063515514,-0.10851226,0.04035761,-0.52682096,0.6808529,-0.20817201,0.43725199,0.08647963,0.11219144,0.0032195193,0.14063881,0.20059694,-0.05130094,0.13989484,-0.40835407,-0.2219541,0.023147073,-0.70020837,0.43233484,-0.094505236,-0.4270733,-0.009917698,-0.3986516,-0.2515073,-0.67718846,0.3103471,-0.83070606,0.59476703,0.11124999,-0.25727743,0.24117999,0.1515613,0.056888323,0.23213185,-0.08965521,0.3511133,-0.12059974,-0.034521926,0.05253648,-0.16702214,-0.3963682,-0.47802034,-0.034927584,-0.39706865,-0.3079365,-0.25636786,0.18723217,-0.33063132,-0.15793364,-0.30669212,0.48031187,-0.34588665,0.0054860157,0.05834424,-0.2292168,0.21095255,-0.79128695,-0.03493582,-0.102749825,0.23041753,-0.16751823,-0.106789224,0.36934635,0.17735077,0.5331785,0.09335234,-0.18868038,-0.24581262,-0.24370703,0.069367595,0.470006,-0.12861547,-0.20090629,-0.15523812,0.009610886,0.24517448,0.16734518,0.1826628,-0.23949933,-0.024769796,-0.03682779,-0.060795337,0.49950835,0.42964298,-0.27322632,-0.093246974,0.4210265,0.62067735,0.050821297,-0.08707635,-0.08278109,-0.16705711,-0.335463,-0.20347843,0.25730827,0.02074637,0.371458,-0.09134163,0.3327932,0.38236737,-0.28761992,0.02525219,0.039284077,-0.027313564,0.083467014,-0.24788018,-0.09421761,0.3669301,-0.56874144,0.23934783,-0.29878882,0.6621459,-0.092020445,-0.6450018,0.30517343,-0.33232307,0.0041992166,0.07082748,0.584434,0.51100934,0.46956566,-0.15151678,0.85277325,-0.37261432,0.0018793835,-0.11368458,-0.08743326,-0.12423082,-0.16029692,-0.027148928,-0.48141828,0.15816288,-0.024070919,0.10405094,-0.21399236,0.14532366,-0.5643319,-0.23011588,0.30169934,0.7378339,-0.24592996,0.07696312,0.72382516,1.1007978,0.98428667,0.022459146,1.012087,-0.076391995,-0.2799634,-0.09743452,-0.05652135,-0.5509473,0.18139507,0.41073474,0.716526,0.20373347,0.11358235,-0.08812516,0.2756808,-0.5162805,-0.17496654,-0.35926682,0.24782059,0.07710572,0.026092228,-0.37146768,-0.0534966,0.047111697,0.09691287,0.15932007,0.14166866,-0.44349527,0.19336574,0.06434439,1.3289312,-0.31875578,0.12004024,0.1557939,0.3325824,0.021719748,-0.12898953,0.1215258,0.32402086,0.4126537,0.14391597,-0.4347305,0.122026205,-0.32044855,-0.44321457,-0.09409245,-0.29172674,-0.2460021,-0.03887636,-0.47946027,-0.3248429,-0.023941278,-0.40728372,0.37404567,-2.8302367,-0.109058216,-0.2841081,0.23561628,-0.27340135,-0.36352983,0.0032073047,-0.50604624,0.5482279,0.350144,0.32383636,-0.40155554,0.28084424,0.47805935,-0.47812486,-0.07420193,-0.50070715,-0.13832991,0.020860776,0.39291725,0.057618827,-0.13208227,-0.04554112,0.056792967,0.469492,0.028672848,0.18816675,0.33611584,0.3516226,-0.06738845,0.50218296,0.04996497,0.50472873,-0.3760702,-0.07158842,0.4273024,-0.19724382,0.25309947,-0.25118804,0.16700587,0.47497758,-0.3548569,-0.5984107,-0.7803994,-0.33703724,1.2875016,-0.24133375,-0.6531445,0.19532108,-0.3072738,-0.19694436,-0.17594686,0.40886375,0.03354038,0.00036352448,-0.6007331,0.1263344,-0.15453747,0.3821017,-0.15950008,-0.0016522834,-0.57744503,0.6961945,-0.028235441,0.7635689,0.3111603,0.29558393,-0.17985483,-0.27549985,-0.07291226,0.8965796,0.5390054,-0.016907582,-0.22932829,-0.004803302,-0.1953471,-0.06665097,0.19144788,0.70069313,0.6473629,0.03390533,0.029053988,0.31597376,0.11256818,0.12347344,-0.1776624,-0.23850237,-0.31367353,-0.14265019,0.49208114,0.17444743,0.07401057,0.3657871,-0.20075662,0.17670573,-0.2603019,-0.4372192,0.29826188,0.6218103,-0.21408783,-0.15540214,0.6216812,0.6203004,-0.22759965,0.32938427,-0.7047239,-0.37617916,0.5305287,-0.22729649,-0.5901109,-0.005133229,-0.3361187,0.040382095,-0.58617336,0.26160648,-0.35681304,-0.81576115,-0.44211105,-0.29264477,-1.8470947,0.16956179,-0.1898042,-0.093485795,-0.15822324,-0.3736647,0.20507608,-0.41642475,-0.44714123,0.10859471,0.055623926,0.6529166,-0.12597622,0.03142823,-0.2197862,-0.15269925,-0.27694795,0.24665406,-0.02906766,0.07038129,-0.22505224,-0.21361254,-0.028103765,0.0669062,-0.3198773,0.012469081,-0.5168854,-0.3243011,-0.20723674,-0.27507356,-0.20807956,0.68654215,-0.22576581,0.13723196,-0.10596831,0.05392744,0.120695814,0.15043034,0.06626544,0.34296033,-0.003456352,-0.19236127,-0.08359613,-0.37535587,0.53753155,0.12924449,0.3731784,0.3700932,-0.28203943,0.24035719,0.30481228,0.49922228,0.0040119207,0.9112266,0.2502387,-0.21566632,0.38193926,-0.13293378,-0.21024255,-0.65180075,-0.14552762,0.21216333,-0.42499426,-0.44750902,0.23366912,-0.2530803,-0.7898793,0.5016587,0.10000972,0.29912207,-0.09821986,0.3288626,0.34085098,-0.36489055,-0.00051122904,-0.07866453,0.011946963,-0.43690416,-0.50877464,-0.58655703,-0.4049559,-0.17940095,0.96372044,-0.3112441,-0.016039042,0.26307243,-0.121426806,0.2862853,0.08031506,0.14368305,0.025515398,0.37091964,0.0860707,-0.65759385,0.55907536,-0.11958325,0.043571718,-0.41067314,0.4684372,0.53654134,-0.56114364,0.1740284,0.21404004,0.10310999,-0.49815232,-0.6002378,-0.024000833,-0.13869835,-0.30661038,0.3630834,0.08467746,-0.68880135,0.28023976,0.18382256,0.05214978,-0.6972002,0.46022397,0.03830157,-0.15580858,0.12856843,0.31487268,0.19258933,-0.054050658,-0.031300236,0.18816186,-0.4866946,0.41182116,0.16372585,0.00022099273,0.5012332,-0.19848163,-0.39565444,-0.58235747,0.1446367,-0.5839639,-0.2766319,0.33172584,-0.023984393,-0.09955346,0.59802806,0.10171865,0.5071346,-0.17024468,0.20522235,-0.006624644,-0.2804161,0.49187544,0.31520918,0.41791898,-0.4546998,0.51012313,0.0142409885,-0.07940512,0.0051313853,0.1779463,0.48269272,0.10461482,0.42598447,-0.2380532,-0.012061334,0.17947778,0.9142457,0.16924135,0.23863442,-0.07392544,-0.12169148,0.23435004,-0.07459366,0.23904587,-0.0317235,-0.79746336,0.036797054,-0.07404983,-0.03997228,0.39103884,0.1421022,0.20067246,-0.09142069,-0.033595417,-0.041407205,0.0059600896,-0.06281936,-1.1526123,0.32061052,0.13147643,0.9557758,0.29518658,0.04549346,-0.053261578,0.56559396,-0.19127516,0.122216165,0.19527595,-0.022276146,-0.19320825,0.4659454,-0.5401966,0.32978612,0.061662424,-0.09290082,0.13107291,-0.10829973,0.35083437,0.7869572,-0.28255743,-0.084651746,-0.15564044,-0.3066798,0.17794192,-0.26783496,0.289864,-0.49754325,-0.38601765,0.5202028,0.41976005,0.3609459,-0.1326145,0.016011545,0.09966334,-0.19880772,0.27998605,-0.031104283,0.052771725,-0.11028481,-0.29533443,-0.045469724,0.43132845,-0.2321666,0.035170574,-0.08705177,-0.27987558,0.1187192,0.16558564,-0.023954209,0.048095576,-0.7334911,0.32587066,-0.19951597,-0.26443097,0.28153983,-0.2113191,0.09513936,0.07865308,-0.028670518,-0.11420329,0.22639577,0.21318659,0.5110319,0.0406175,-0.008406528,-0.60130703,0.0843019,-0.08691069,-0.2023875,0.21530756,-0.055693183,0.17479645,-0.64234257,0.3098844,-0.15673327,-0.2745376,0.23953056,-0.20145763,-0.016330734,0.42064252,0.07574218,0.031989705,0.062881395,-0.21123222,-0.2527555,-0.16530772,-0.1366533,0.14343716,-0.005978855,0.03292845,-0.13336007,-0.18283142,-0.17318203,0.27624053,0.26896128,0.2891747,0.1253651,-0.093717635,-0.5971255,0.1316684,0.05103162,0.44356918,-0.26017237,0.015699944,-0.012122785,-0.40867382,-0.39167842,0.44502625,-0.092688836,0.37310615,0.07827906,-0.14932404,0.8092105,0.099891864,1.1928848,-0.10039253,-0.42530414,-0.18134348,0.6470726,0.010940467,-0.036289267,-0.30161676,0.8750542,0.5236119,0.054198246,-0.08409185,-0.21478668,-0.0117164,0.18898189,-0.19754133,-0.028392341,-0.091535866,-0.63370603,-0.2985157,0.1151913,0.24460462,0.023610856,-0.09580984,-0.13312724,0.25419152,-0.023514763,0.30498633,-0.4287935,-0.09119392,0.2314599,0.09459227,-0.027411034,0.21797027,-0.42182437,0.27650607,-0.6576363,0.113894515,-0.026561435,0.05952559,-0.091965795,-0.09697242,0.17615478,-0.11908823,0.38610086,-0.21593383,-0.41447887,-0.062026374,0.28143817,0.1864051,0.17171207,0.6058281,-0.21330966,0.14614865,-0.101574115,0.38487062,0.99793303,-0.073712185,0.06609257,0.13579126,-0.47321182,-0.562116,0.12623715,-0.24011748,0.13395841,0.08466125,-0.20835122,-0.13287722,0.24425714,0.30636707,-0.09026696,0.08997451,-0.8477666,-0.1200287,0.037482075,-0.3513871,-0.19038437,-0.3624929,0.25062642,0.5459742,-0.12805362,-0.35606068,-0.014964961,0.4126298,-0.25125003,-0.718886,0.14004637,-0.4731155,0.18477334,-0.1118841,-0.41193908,-0.29067364,0.09710407,-0.47919878,0.06110862,0.121763825,-0.34190375,-0.124932356,-0.20990051,0.093296945,0.71842766,0.056218024,-0.016668703,-0.2771408,-0.47227806,-0.7546398,-0.4483294,-0.0036519233,0.2932088,-0.09017519,-0.4911093,-0.14548661,-0.4033362,0.056785088,-0.14923702,-0.25348768,0.37597114,0.20151663,0.36566767,-0.24463908,-1.0451344,0.18884012,0.13174547,-0.05910366,-0.29378623,0.32791477,0.11328191,0.6376712,0.15219712,-0.027116682,0.10694678,-0.5744621,0.2639939,-0.20515724,-0.01758129,-0.75566965,0.08970086 +17,0.39027205,-0.31621617,-0.5783094,0.06238926,-0.3988146,-0.02210027,-0.19525656,0.32306328,0.5647653,-0.1226885,-0.27206028,0.16599339,-0.08911921,0.41056472,-0.059038855,-0.4725394,-0.17813176,0.3373775,-0.9887722,0.38021213,-0.3824214,0.3376276,0.073574096,0.7527599,0.14684013,0.2944525,0.030066257,0.017664801,-0.06262774,-0.23032838,0.07048934,0.039236344,-0.6332049,0.03809792,-0.40651777,-0.4580615,-0.1598097,-0.46037996,-0.51792455,-0.89234984,0.45567977,-0.91232246,0.71317375,0.08794179,-0.18068787,-0.26174966,0.24200712,0.32185063,-0.23248257,0.041452587,0.34337887,-0.51617426,-0.0973645,-0.7142077,-0.1020005,-0.1994841,-0.38270286,-0.07364276,-0.3716215,-0.014757422,-0.061425567,0.21255141,-0.20012508,-0.11935241,-0.2634308,0.5449101,-0.26613024,0.26962292,0.19803548,-0.37148336,0.33621755,-0.7379641,-0.087796524,-0.04200314,0.450401,0.15285161,-0.4685705,0.48078212,0.014839693,0.33517534,0.114247195,-0.13439228,-0.39045802,0.14210083,-0.13719302,0.6412048,-0.45769396,-0.14911076,-0.06861839,0.09300737,0.52876884,0.291914,-0.0009274699,-0.045876253,0.12288602,-0.34486148,0.26393798,0.86685526,0.5787205,0.12022743,-0.0643195,0.11935234,0.44034335,0.5224942,-0.32005265,-0.13829812,-0.014070475,-0.6853946,-0.09641173,0.15763135,-0.0174791,0.532708,0.08482499,0.25472423,0.84270626,-0.06705784,-0.19813167,0.46178916,0.38287008,0.2160768,-0.08521015,-0.4780436,0.4010947,-0.42277336,0.002200842,-0.23939885,0.46191415,0.035639185,-0.53572965,0.305953,-0.6379066,0.1359452,0.13100931,0.54519635,0.6701843,0.8504479,0.3112158,0.795562,-0.12858868,0.14681025,0.11529903,-0.16996633,0.17300238,-0.26611093,0.10718102,-0.42729604,-0.14044572,-0.43271294,-0.07541313,0.32329762,0.6276222,-0.6280294,-0.25695837,0.030065913,0.9804781,-0.22232619,0.054871354,0.73486173,1.0246603,1.0766639,-0.11783283,0.9043912,0.03398256,-0.36925584,-0.28859007,-0.07629065,-0.81288713,0.24410066,0.14073692,-0.7498572,0.41340873,-0.0911629,-0.10073328,0.30284172,-0.6266619,-0.17608823,0.048510443,0.15420772,0.038083542,-0.014903361,-0.6322024,-0.34697312,-0.22606763,0.04649339,0.3945895,0.30305254,-0.58585167,0.38578627,-0.121879384,1.3607075,-0.12757264,0.03991353,0.14077534,0.45805836,0.18837994,-0.18296653,-0.007388237,0.21196751,0.4535614,0.040220488,-0.46774256,0.017700883,-0.32325652,-0.21619095,-0.19010872,-0.28168938,-0.3497114,-0.020442534,-0.34642345,-0.45206755,-0.02092343,-0.32470372,0.08937883,-2.293158,-0.23994341,0.116845734,0.63918906,-0.19343418,-0.075597264,-0.2560732,-0.48786744,0.292742,0.020515285,0.71489084,-0.61576086,0.48578998,0.5320374,-0.7450077,-0.1064765,-0.6145777,-0.07472775,0.20406364,0.21343789,0.09257908,-0.10888956,-0.09357346,0.045768145,0.6209232,-0.022554789,-0.024947925,0.6207749,0.6505421,-0.16894661,0.5188069,-0.3018668,0.6246226,-0.6568498,-0.33255768,0.40297815,-0.5336387,0.16048488,-0.39886466,0.026272291,0.7814133,-0.3814577,-1.0203959,-0.39711943,0.27819854,0.9747791,-0.21752836,-0.4859166,0.14196599,-0.6684485,-0.26077485,0.084043555,1.1018918,-0.20798635,0.06811357,-0.7207657,-0.32324794,-0.08380654,0.25515994,0.07761157,0.03327632,-0.3780712,0.7543635,0.043771833,0.47300968,0.15064754,0.23674335,-0.42310616,-0.3182983,0.2800063,0.7001795,0.4194759,0.15947524,-0.090803206,-0.032419357,-0.15629752,-0.1521645,-0.13898735,0.9974367,0.55277735,-0.23957287,0.11316822,0.37861776,-0.072297215,-0.16227435,-0.39379397,-0.20327902,-0.1860395,-0.034356236,0.577339,1.102655,0.07442188,0.36571,0.046145905,0.4375939,-0.18328136,-0.51785904,0.57797176,0.66859204,-0.28513393,-0.14825855,0.54233736,0.3798623,-0.48451585,0.45749187,-0.7161922,-0.49472797,0.53425956,-0.19446689,-0.42930433,0.29303476,-0.34638157,0.22443981,-0.4524068,0.30210355,-0.313033,-0.5391735,-0.6842856,-0.17601405,-1.4230918,0.1899177,-0.28525114,-0.17037672,-0.44733316,-0.07586145,-0.014962465,-0.5767805,-0.5706545,0.09018964,0.33352596,0.7400623,-0.0775997,0.18736406,-0.1074429,-0.47617486,0.06989025,0.13321456,0.36925545,0.34938708,-0.2091342,-0.44148958,-0.03603516,0.20933667,-0.45282477,0.0009130307,-0.7718597,-0.5906357,0.03970531,-0.5983067,-0.1803177,0.6256251,-0.41383,0.0060575334,-0.37455508,0.071750276,0.1383825,0.13736326,-0.03965011,0.18123406,0.107052214,-0.14902626,0.31577513,-0.07940367,0.55469567,0.070783876,0.31101885,0.022483757,-0.04889537,0.17480388,0.42510518,0.7934749,-0.22846244,1.2628284,0.47330996,-0.07991243,0.078723006,-0.32302022,-0.5545089,-0.46805885,-0.16936421,0.4126197,-0.48604405,-0.2686634,0.16915597,-0.4694381,-0.881984,0.65608054,-9.945306e-05,0.124896504,0.18453561,0.42926627,0.62624115,-0.285054,-0.116835065,0.034510985,-0.21489672,-0.3953369,-0.11534894,-0.5329835,-0.46698835,-0.33437058,1.178951,-0.2410283,0.2501198,0.33414394,-0.45923945,0.1247891,0.16148204,-0.20551997,0.13010553,0.58001137,0.051345114,-0.6175745,0.36285046,-0.21987191,-0.16301613,-0.6886208,0.28125426,0.75674117,-0.9560468,0.4651364,0.37527856,-0.23252869,-0.63202435,-0.5685235,-0.20761698,0.10817588,-0.059717346,0.35465145,0.26517847,-0.45334843,0.43195343,0.23684913,-0.640263,-0.67205936,0.1526642,-0.1452962,-0.6787568,-0.095114164,0.3857315,-0.01364068,-0.04887246,-0.2229589,0.35503176,-0.3382407,0.5247325,-0.2737912,-0.13699043,0.040871542,-0.3656251,-0.3472194,-1.0066129,0.37350005,-0.635127,-0.45548275,0.52878344,0.08786147,0.15739137,0.25084305,0.39033368,0.36059934,-0.18249017,0.021358518,-0.55456907,-0.43934906,0.29236242,0.42362258,0.58548,-0.42913616,0.62650543,0.1805314,-0.22388586,0.4103568,0.09428228,0.5205085,-0.25342783,0.52208525,-0.078946754,-0.1800831,0.20140834,0.89463973,0.15302187,0.319869,0.029845275,0.0027469478,0.27560183,-0.041288838,0.14389423,-0.1224329,-0.6638603,0.099878736,-0.3075731,0.05631067,0.53939176,0.3300617,0.19936953,0.0589174,-0.37635022,0.073164955,0.36647776,0.14173482,-1.5427787,0.46780184,0.30480182,0.9422039,0.17569403,0.30167583,-0.2207867,0.8993,-0.28195494,-0.000990253,0.39769933,-0.027787907,-0.36769524,0.6077604,-0.5815005,0.59415823,-0.17659193,-0.057677332,0.1332706,0.14236914,0.37561694,0.8870383,-0.20389853,0.056729242,0.06383489,-0.21856841,-0.24662186,-0.36400804,0.13634545,-0.61937386,-0.62112623,0.87105125,0.43498495,0.58059156,-0.20479316,0.16640092,-0.09060553,-0.17922406,0.32524216,0.037591163,-0.12190496,-0.07971501,-0.7575706,0.39533588,0.41562846,-0.07088241,0.07977658,-0.23530273,0.13750964,0.21502231,-0.061987247,-0.039046895,-0.31004623,-0.7558527,0.03614404,-0.6162007,-0.55099857,0.29586676,-0.17410849,0.111250706,0.27010298,0.040735506,-0.20596462,0.6114944,0.18687946,0.962051,0.09497714,-0.27496377,-0.26251185,0.50801766,0.24715918,-0.24488735,0.1261241,-0.28643447,0.28019345,-0.466813,0.69437814,-0.3329518,-0.43225154,-0.026367974,-0.204429,0.02594954,0.5760598,-0.22265282,-0.23485889,0.085072584,-0.38458955,-0.59810275,-0.22133654,-0.40056193,0.09151683,0.40622795,-0.018109603,-0.3854782,-0.32740334,-0.23357998,0.5798864,-0.10075231,0.7062781,0.55516183,0.2901393,-0.16201246,0.015935015,0.27638137,0.7652985,0.15898685,-0.11186215,-0.73427796,-0.3239856,-0.49516097,0.47581923,-0.14043695,0.1886192,0.17668891,-0.15967326,0.93122,-0.11389263,0.94718516,0.09310902,-0.20290169,0.14385703,0.66082865,-0.31384754,-0.026678223,-0.52987665,1.0186518,0.4159169,-0.2919289,0.09610888,-0.37662888,0.11251393,0.32826492,-0.49136165,-0.16088222,-0.11591604,-0.57721287,-0.22922641,0.20791164,0.31137484,0.18079506,-0.3657219,0.070948154,0.21331738,0.0258071,0.011818108,-0.60729164,-0.2639264,0.3986432,0.12925786,-0.2806235,0.14302683,-0.3874593,0.3941108,-0.29947546,0.0964133,-0.48703825,0.15837556,-0.21807393,-0.48378485,0.27939928,-0.06643944,0.24642305,-0.62472826,-0.15888928,-0.0846694,0.19887957,0.16337651,0.17507496,0.35309795,-0.28420568,-0.15293838,0.04084648,0.6516176,0.97204393,-0.4925214,0.16169253,0.35440892,-0.431192,-0.6264077,0.51015687,-0.29873917,-0.24667287,-0.1282348,-0.4225625,-0.4071965,0.21029264,0.0095068,0.21264444,-0.27378651,-0.7165013,0.03449787,0.42443788,-0.1472802,-0.20565878,-0.26593098,0.16183501,0.4321775,0.118832305,-0.40294302,0.03953961,0.3480645,-0.22138672,-0.17592405,0.13919193,-0.4390478,0.25930443,-0.071412176,-0.37300184,-0.2009597,-0.034914587,-0.743009,0.16148768,0.08290073,-0.49287063,0.0475311,-0.10389379,0.08051314,0.87344164,-0.33555266,-0.027667327,-0.33022845,-0.46421137,-0.9496189,-0.4153927,-0.08813758,0.44756538,-0.118643805,-0.7435734,-0.02224202,-0.06407028,-0.35611802,-0.05387892,-0.45884132,0.42832777,0.10458946,0.5539648,-0.5689245,-0.99808764,0.24532112,0.18945804,-0.6658981,-0.49177915,0.59434795,0.21563144,0.78037906,-0.045741078,0.017259013,0.09522638,-0.3561679,0.03979427,-0.28577527,-0.10787023,-0.861762,-0.0067627374 +18,0.3198788,-0.19417654,-0.4986742,-0.08629727,0.06717421,0.18904835,-0.21208255,0.45551637,-0.0483187,-0.50172293,-0.1523055,-0.14000437,0.0035159588,0.44135463,-0.2011985,-0.60555667,-0.05489007,0.0082280915,-0.6001049,0.62348384,-0.37048462,0.22039102,0.027487239,0.2587578,0.12330296,0.2221988,0.13214001,-0.27925083,-0.12791394,-0.1524468,-0.12808195,0.12908222,-0.41570064,0.015508238,-0.17540668,-0.2946559,0.005652241,-0.27832767,-0.31444862,-0.6122084,0.22671299,-0.74808186,0.38008195,-0.04719033,-0.23295327,0.39820778,0.057704728,0.32535598,-0.3498222,0.025343394,0.1390975,0.014108608,-0.04974084,-0.2059831,-0.18690605,-0.6013342,-0.50909984,0.0400625,-0.4137721,-0.27023897,-0.078600995,0.06572318,-0.33839452,0.055806138,-0.19441456,0.34573066,-0.46297905,0.0014737527,0.17678365,-0.07680668,0.21931116,-0.5087257,-0.16834621,-0.1259884,0.16602132,-0.0687434,-0.032690205,0.0927135,0.2557449,0.46058014,-0.13560478,-0.014227142,-0.21685524,-0.15316598,0.18209341,0.4408484,-0.12454093,-0.51331335,-0.07222232,-0.024909882,0.09007635,0.01987787,0.053364564,-0.24318632,-0.15008251,0.03881859,-0.48401126,0.19269113,0.37198958,-0.41757762,-0.40106937,0.38314274,0.52468365,0.20396192,-0.25938594,-0.08581369,-0.041325387,-0.33076143,0.0027825653,0.13931176,-0.19407402,0.546876,-0.15215711,0.29681996,0.59550995,-0.1055706,0.17615186,-0.13366453,-0.09899041,-0.1460504,-0.16321276,-0.2363843,0.04623631,-0.29929075,0.15346405,-0.27080873,0.78143597,0.12325084,-0.6679508,0.40132958,-0.5115648,0.13305148,-0.052130125,0.5201157,0.5341777,0.21568419,0.10053166,0.45666617,-0.34053293,-0.016897658,-0.20599064,-0.24498844,0.0921711,-0.0021839063,-0.117964156,-0.45460054,0.056758635,0.15671021,-0.061415125,-0.1100833,0.2615641,-0.47197065,-0.06391165,0.046858814,0.8266601,-0.3117367,-0.10573185,0.4965247,0.9784086,0.91606075,-0.0011165519,1.1608853,0.27662036,-0.16470481,0.19770685,-0.42357513,-0.68287003,0.1898324,0.305145,0.24034677,0.33014092,-0.0020275393,-0.1326659,0.33643487,-0.18998334,0.15659158,-0.24262549,0.13431133,0.12194671,-0.0035122077,-0.22712652,-0.24559307,-0.003228267,-0.087746225,0.17534615,0.13230355,-0.19942814,0.3102941,0.088155,1.6130577,-0.037675697,0.17915006,0.113829605,0.31215012,0.11737779,-0.017569592,-0.0011415859,0.41953245,0.45468348,0.061734613,-0.6046523,0.21568036,-0.264816,-0.5427122,-0.05523952,-0.34357452,-0.08279102,-0.050373513,-0.54192734,0.043245576,-0.074551776,-0.20075569,0.25659508,-2.8392174,-0.12814112,-0.25927132,0.28510344,-0.29442388,-0.23879178,-0.1503384,-0.37125635,0.36051783,0.33225593,0.42664182,-0.526264,0.507636,0.3136881,-0.3248888,-0.15353197,-0.5574481,-0.109641805,-0.046208,0.45231828,-0.077957734,0.20822906,0.1549895,0.09281559,0.38919845,-0.16060568,0.12514456,0.26989573,0.33168158,0.12125471,0.38520148,0.16834341,0.49315214,-0.2370534,-0.03551706,0.19683637,-0.3207588,0.34523338,0.026228232,0.18058003,0.28856558,-0.32034317,-0.7791784,-0.5625126,-0.30632147,1.372309,-0.29063126,-0.30178487,0.18935302,-0.07146287,-0.28735548,-0.20801684,0.338592,-0.1315329,-0.13071926,-0.780971,0.06555054,-0.16617028,0.3018905,-0.046475198,0.053883534,-0.2555286,0.608131,-0.050941482,0.57990867,0.2659551,0.17168456,-0.046491094,-0.29959202,0.016579533,0.9199593,0.25796056,-0.0025888581,-0.14307426,-0.23455541,-0.37235874,0.04946392,0.1681791,0.47273323,0.6171993,0.17021443,0.08032982,0.21161605,-0.07532653,0.06621288,-0.1627254,-0.24274397,-0.046099346,-0.017991876,0.4777171,0.44147488,-0.31385696,0.40596676,-0.13032085,0.3980829,-0.13672939,-0.3994037,0.47770527,0.7858726,-0.20861572,-0.19496945,0.46148932,0.52905023,-0.32869437,0.28722987,-0.53193015,-0.15557528,0.5409275,-0.3082144,-0.27461237,0.33512956,-0.289513,0.12336743,-0.8778821,0.23620449,-0.39683193,-0.3172711,-0.50828356,-0.083366,-3.5039008,0.18178706,-0.17357586,-0.32589638,-0.14594685,-0.11486697,0.31526136,-0.6323186,-0.4952674,0.04878855,0.11773224,0.57298654,0.07542947,0.15630884,-0.30531913,-0.19160177,-0.22796462,0.1916372,0.08110919,0.27473944,-0.101570144,-0.3983437,-0.050600607,-0.16610084,-0.34900683,0.19364037,-0.45947647,-0.4411726,-0.10059675,-0.35602078,-0.25789794,0.5226535,-0.2660514,-0.01172753,-0.11161211,0.0025584758,-0.20801185,0.3204366,0.15956523,0.16326143,-0.0529096,-0.03960871,0.026459916,-0.3185798,0.18648027,0.10640058,0.31431085,0.44476852,-0.03341911,0.15809868,0.41347134,0.47256014,0.09686084,0.5742873,0.45849302,-0.1062037,0.2946035,-0.25523916,-0.12957482,-0.5021688,-0.22777684,-0.14760056,-0.25103143,-0.56771374,-0.17816207,-0.1892126,-0.7075043,0.35286856,-0.08949513,0.05692625,-0.08883443,0.28209314,0.50371623,0.012378327,0.066122375,-0.002522107,-0.0145034455,-0.396996,-0.3315918,-0.6944379,-0.25218773,0.13319555,0.88763416,-0.10425309,-0.0105694095,-0.17068808,-0.22338311,-0.07711876,0.14400987,0.14659153,0.21497099,0.39214125,-0.2208967,-0.67598456,0.5788792,-0.2215306,-0.29857597,-0.3991476,0.061188944,0.6007776,-0.5937668,0.48969823,0.3651559,0.033803765,-0.078925356,-0.34751147,-0.12801714,-0.026816837,-0.2776014,0.22258335,0.095839165,-0.6068529,0.32320398,0.33840364,-0.085509375,-0.5734405,0.55989265,0.007190585,-0.36786416,0.06600528,0.34251055,-0.045596395,0.030121772,-0.17691013,0.17046623,-0.4475333,0.15683974,0.2587559,-0.06554194,0.24877523,-0.14937435,-0.028692741,-0.560579,0.027747747,-0.4500585,-0.25175035,0.27823278,0.09896158,0.25543123,0.11483299,-0.121701084,0.34575084,-0.21731596,0.12900464,-0.048239328,-0.06609645,0.32849228,0.4002855,0.32528323,-0.34306228,0.5739524,0.030110836,-0.031381197,0.10850022,0.12328284,0.44962117,0.17544495,0.39543998,-0.010566241,-0.2680356,0.38634452,0.6111692,0.3263012,0.52648413,0.06472851,-0.27250674,0.30032045,0.04457348,0.022297764,-0.065838,-0.3288972,-0.17656495,0.05589432,0.16351512,0.49988994,0.05326241,0.3840316,-0.17975336,-0.15475447,0.04294251,0.18825081,-0.084512584,-0.96247476,0.40443358,0.16962455,0.7667815,0.45385557,-0.085955426,0.046393726,0.5072585,-0.2663927,0.1322554,0.29829445,0.06872388,-0.67245495,0.62388366,-0.57054245,0.3779896,-0.05228417,0.06743904,-0.022728026,-0.050099183,0.24634865,0.8605329,-0.19378288,-0.008047589,0.014903605,-0.3573264,0.18250911,-0.277353,0.08167578,-0.39828107,-0.31055892,0.46998712,0.5019227,0.2788439,-0.20217682,-0.013505117,0.045168247,-0.029928211,0.15179081,0.0847934,0.23766646,-0.04598208,-0.62987316,-0.34457552,0.53020155,-0.25620395,0.1958311,0.11631309,-0.35557225,0.35824347,-0.110610805,0.012683709,-0.053665005,-0.48499906,0.05603586,-0.18874653,-0.41718665,0.28617537,-0.329897,0.3352806,0.14782408,0.024164625,-0.34030125,0.14787951,-0.07589148,0.52784187,-0.13249503,-0.21197873,-0.40102056,0.10462185,0.1891567,-0.1687941,-0.015957618,-0.25344452,0.009809987,-0.5626239,0.35084254,0.04170188,-0.27248082,-0.06481852,-0.2460861,0.028617399,0.49894232,-0.094932646,-0.065710686,-0.09558902,-0.116669826,-0.2519803,-0.09186164,-0.08046678,0.23782413,0.108498685,0.017479248,-0.077295795,0.06575046,-0.015770905,0.38513675,0.009084032,0.42015913,0.48817018,0.21193634,-0.32762393,-0.2853741,0.15631543,0.30563042,0.13512418,-0.1645916,-0.2576763,-0.553381,-0.21743569,0.22330745,-0.18901409,0.4751735,0.1857592,-0.32720953,0.64263064,0.0020121078,1.0125827,0.023533825,-0.294009,0.050413005,0.47096145,0.09873622,0.013335536,-0.30556583,0.7262442,0.42421642,0.03502292,-0.1346852,-0.21476147,-0.20405611,0.0072209197,-0.19155025,-0.23395425,-0.0525218,-0.5217144,-0.3493515,0.11541,0.23281187,0.26473796,-0.025077263,0.06813196,0.1750814,0.078895845,0.4150256,-0.4101347,-0.18684149,0.21734628,0.05136644,-0.083149165,0.15035538,-0.47974166,0.39504534,-0.5933692,0.043911893,-0.16781959,0.09583733,-0.055455558,-0.27272326,0.19931942,0.0028597831,0.3166249,-0.3541092,-0.37144855,-0.279796,0.5194033,0.18672441,0.15726538,0.6660484,-0.14019425,0.053572915,0.12775527,0.57545364,1.0146929,-0.18571065,-0.02257696,0.3256857,-0.402417,-0.6788909,0.13022436,-0.2111169,0.33735552,-0.011585397,-0.15437286,-0.43392113,0.40140316,0.12798026,-0.07986718,0.06938246,-0.4715458,-0.31649482,0.35847953,-0.34239623,-0.25882584,-0.26691303,0.15901822,0.578222,-0.40179294,-0.257582,-0.04344273,0.21371046,-0.27907765,-0.5256373,-0.11934164,-0.40066913,0.35441336,0.23687705,-0.18239406,0.030587226,0.06943067,-0.3785891,0.26241344,0.21907955,-0.37242144,-0.029289505,-0.27142805,-0.1457338,0.8680205,-0.19411321,0.05961592,-0.48772278,-0.4570479,-0.6917952,-0.5255402,0.5845014,0.05191343,0.04260341,-0.4448881,0.0748748,0.020713652,-0.12286744,-0.046719182,-0.31560162,0.41729245,0.14590408,0.23160006,0.046613455,-0.6902648,0.08346748,0.0038633824,-0.12118823,-0.5909443,0.51043415,-0.070747286,0.68621975,0.07484631,0.11501215,0.32074103,-0.40448716,-0.08747773,-0.26058605,-0.13608098,-0.6938697,0.13439764 +19,0.49934393,-0.24427715,-0.48407307,-0.13663301,-0.31459793,0.09762552,-0.034383837,0.44843483,0.20333113,-0.36280823,-0.10205736,-0.17418839,0.11372471,0.22912833,-0.061342772,-0.6171644,0.0007729848,0.2806286,-0.55661964,0.5708997,-0.39249548,0.17925741,-0.094573826,0.33800286,0.21387464,0.25607887,-0.014277484,-0.19128257,0.008534614,-0.1760221,-0.23256704,0.3535759,-0.4756271,0.15528342,-0.1097965,-0.19397432,-0.021895504,-0.46819407,-0.36677277,-0.67494017,0.31959412,-0.7362362,0.3829651,0.0072054765,-0.19209853,0.33360374,0.056861408,0.30657816,-0.28915083,-0.19903418,0.30101174,0.019796813,-0.09326508,-0.15499742,-0.014600659,-0.35623488,-0.4729762,-0.08553798,-0.267994,-0.3003747,-0.28146908,0.07534426,-0.3371333,0.011294151,-0.09457766,0.5757571,-0.36254227,0.2445034,0.2241221,-0.14228147,0.17010808,-0.46894428,-0.027804732,-0.065028,0.36075455,-0.13769995,-0.22918826,0.26508325,0.32564843,0.24875611,-0.054332517,-0.12373107,-0.17763217,-0.113232456,0.12678733,0.5058903,-0.16787083,-0.60460526,-0.07196563,0.060193446,-0.2278787,0.123276636,0.10152816,-0.4264369,-0.1532639,0.10786767,-0.23162499,0.39968678,0.33420303,-0.29052612,-0.24791886,0.2673677,0.49146912,0.29016745,-0.15532757,-0.025597285,0.040878184,-0.5193821,-0.1458231,0.050728396,-0.1497869,0.46412545,-0.1419565,0.256332,0.7673575,-0.07272816,-0.09642687,0.09187795,0.030646654,-0.13348296,-0.3068692,-0.1719842,0.23365006,-0.4324536,0.24192439,-0.06890071,0.8181616,0.18551685,-0.67973244,0.4796297,-0.63788426,0.112927094,-0.17274208,0.36409894,0.65727526,0.22377287,0.2740354,0.55003047,-0.37670368,0.02701974,-0.060254447,-0.53805834,0.02498549,-0.06984422,0.059754364,-0.5453366,0.05621044,-0.06099016,-0.07015848,0.03832485,0.20027654,-0.47369638,-0.13768029,0.16283208,0.8733495,-0.31348902,-0.09790143,0.6238001,0.9472589,0.9147831,0.06330079,1.0415642,0.13613933,-0.26814553,0.31436,-0.17315441,-0.70796984,0.2486976,0.3717992,0.25798485,0.07699146,0.13882619,0.083073325,0.40512857,-0.23343469,0.06530869,-0.09093008,0.19945058,0.1782704,-0.07976565,-0.4108872,-0.30114725,-0.118173435,0.0660602,0.08135428,0.06753309,-0.13435178,0.39227197,0.15597199,1.7972214,0.026430022,0.09483054,0.068842314,0.42517567,0.24857451,-0.09707325,-0.18919493,0.3919583,0.35916778,0.14126389,-0.5030265,0.23542842,-0.14488322,-0.3978677,-0.08688914,-0.38963285,-0.2283273,0.0079068085,-0.39028803,-0.07432961,-0.0915701,-0.1968058,0.5025045,-3.0476847,-0.14847693,-0.09101035,0.3224796,-0.18663651,-0.31502578,0.004050644,-0.47458532,0.17701915,0.22848926,0.48101857,-0.6683172,0.48061758,0.3337983,-0.47235993,-0.12219674,-0.50473505,-0.19203101,0.055936288,0.34503806,0.061413623,0.13202816,0.026462412,0.1953208,0.41882223,-0.015480348,0.07675091,0.20072085,0.38112718,0.031513803,0.67889404,-0.07436053,0.5233504,-0.14575757,-0.108318835,0.2201144,-0.16860224,0.28599027,-0.044221725,0.09358867,0.48944762,-0.30478272,-0.7949871,-0.68086076,-0.14423308,1.0191139,-0.3169271,-0.18214951,0.3125825,-0.44191977,-0.2863356,-0.039501783,0.28429997,0.036113795,-0.09881829,-0.7149521,0.11854647,-0.032388855,0.08590526,0.029737763,-0.22042471,-0.3983008,0.765242,0.03999366,0.62027997,0.3325343,0.07767601,-0.1965642,-0.34902754,0.021569984,0.65054226,0.23754305,0.1290677,-0.10823827,-0.14899065,-0.35238793,-0.006589047,0.044363983,0.60458356,0.5197752,-0.023698013,0.16852301,0.26622808,-0.020972256,0.09178685,-0.15528044,-0.23607127,-0.030702667,-0.18714496,0.44948405,0.5913916,-0.20783368,0.4341051,-0.00537453,0.3324602,-0.12840863,-0.3836816,0.44687164,1.0449755,-0.14261273,-0.28199005,0.4147101,0.4216736,-0.21901368,0.25423986,-0.41939524,-0.076831646,0.5070244,-0.24724182,-0.3524895,0.28068373,-0.24843471,0.09501317,-0.7564596,0.21777739,-0.17987885,-0.58394724,-0.40369755,-0.15324338,-3.6047814,0.21508186,-0.2579797,-0.1708245,-0.14727905,-0.014432192,0.1271228,-0.6021435,-0.49148354,0.13864939,0.069275804,0.6235747,-0.07716436,0.11549722,-0.24441138,-0.20518301,-0.11349057,0.13949837,0.057624795,0.3272508,-0.10940192,-0.36482346,-0.04054036,-0.024132859,-0.34107175,0.09539615,-0.66328996,-0.4666614,0.021179114,-0.5705617,-0.3163084,0.65848416,-0.27290446,-0.004457585,-0.16854505,-0.039460946,-0.26537272,0.267889,0.14359413,0.1338083,-0.13837,0.0758395,0.033937182,-0.3438241,0.26253337,0.0072219926,0.31404725,0.16033024,0.023353685,0.16685675,0.46651882,0.5686603,-0.06172518,0.8530512,0.40245745,-0.10239053,0.24074928,-0.2567711,-0.34777293,-0.46270669,-0.31340683,0.06639685,-0.32288128,-0.43259132,-0.1365511,-0.3223943,-0.55656904,0.44508654,0.068734966,0.060161058,0.07500865,0.049123503,0.53365654,-0.23358454,-0.011302781,0.084558085,-0.14598857,-0.64516234,-0.17828801,-0.59136933,-0.4410496,0.14215101,0.8486653,-0.27007934,-0.004024756,0.0068309624,-0.40892914,0.06459867,0.18481807,0.033558853,0.3474908,0.47789133,-0.22680269,-0.57153165,0.57552254,-0.2508095,-0.2737545,-0.49128118,0.19702314,0.53948253,-0.64337605,0.69264114,0.24377593,0.06417422,-0.1509709,-0.3653179,-0.22688685,-0.034718625,-0.18796507,0.3552135,0.19240595,-0.7350663,0.33511153,0.3295868,-0.18672186,-0.70476574,0.56174904,-0.074164,-0.32644606,0.024921954,0.2536823,0.066348255,-0.039120186,-0.14810117,0.211555,-0.4284078,0.18838494,0.11972187,-0.076868944,-0.034563884,-0.16771518,0.06458,-0.66276425,-0.09922574,-0.3392233,-0.26358944,0.20705785,0.036895037,0.20581453,0.09067372,0.006557043,0.26603714,-0.2938156,0.096598595,0.03152058,-0.24110462,0.31412193,0.39095,0.36283714,-0.40967765,0.50861824,0.0027420481,-0.043430746,0.06125581,0.11997219,0.37184462,0.102654226,0.50158876,-0.06644145,-0.16999076,0.26431724,0.9759799,0.14089979,0.46025142,-0.021970289,-0.064748526,0.18347563,0.02430105,0.25955757,0.14093822,-0.6746541,0.08971027,-0.17673787,0.2125333,0.45671108,0.09820579,0.15058818,-0.038293686,-0.5014722,-0.023171136,0.1908867,0.15809312,-1.2361608,0.42525586,0.21970135,0.86134875,0.39697257,0.056659207,-0.02370927,0.66374004,-0.11930822,0.1587626,0.26905313,-0.10226463,-0.5523234,0.5429697,-0.66946316,0.4261478,-0.11798501,-0.106873125,0.047096837,-0.09300869,0.27030322,0.6599649,-0.22131577,-0.017949639,0.055862196,-0.37269497,0.18321104,-0.46102905,0.008579151,-0.44998068,-0.28077686,0.49758127,0.73619807,0.3198661,-0.23262952,0.11712638,0.07543667,-0.09351514,-0.0031460572,0.08292511,0.030044874,0.06051967,-0.8113947,-0.15603603,0.5832161,-0.15636286,0.24448316,-0.123297736,-0.17727624,0.396865,-0.11661736,-0.076049194,-0.14376254,-0.6718409,0.09653784,-0.3041262,-0.527731,0.62029725,-0.020283593,0.21040146,0.21672545,0.022382034,-0.12756224,0.51388085,0.15274352,0.83862877,-0.061548505,-0.012773623,-0.5464276,0.017667007,0.059107468,-0.12051259,-0.19391544,-0.46474534,0.008923433,-0.4928517,0.40157136,0.09124366,-0.32549718,0.014938775,-0.08706519,0.08742947,0.5618622,-0.08992537,-0.12930945,-0.12261728,-0.051448833,-0.26365432,-0.15687118,-0.03842419,0.23822628,0.22368692,0.04084234,-0.12483266,-0.14123283,-0.2192104,0.37143925,0.06067891,0.5975997,0.35983706,-0.02203521,-0.096811466,-0.18233956,0.38369685,0.43311882,-0.080911845,-0.1567595,-0.30915037,-0.38102484,-0.35503998,0.1990477,-0.025306635,0.40710175,0.04043339,-0.17372634,0.6815123,-0.19445318,1.0256037,0.112455435,-0.2852526,0.30086434,0.46005222,0.0514297,-0.00080904167,-0.29315588,0.765527,0.37849432,0.048005316,-0.20028931,-0.27770615,0.012357394,0.097588986,-0.17031911,-0.07703201,-0.030167166,-0.5049436,-0.16261019,0.1478142,0.199021,0.32266998,-0.08445403,-0.028772546,0.2764102,-0.07161629,0.19131282,-0.4077402,-0.23782478,0.23959915,0.18870682,0.02265507,0.09904304,-0.4170955,0.4586439,-0.33896658,0.12910937,-0.37633508,0.22077808,-0.3556987,-0.11818988,0.10172693,-0.020731179,0.33754244,-0.29163456,-0.23223399,-0.29082388,0.43806833,0.25149032,0.06830673,0.52288383,-0.20412925,0.016338617,0.1582748,0.52485335,0.6638498,-0.2400917,-0.10832871,0.41031533,-0.4394721,-0.41805345,0.31058356,-0.14876722,0.11259452,0.11502588,-0.09171927,-0.5550405,0.2933883,0.23411971,0.065542586,0.007212817,-0.6397281,-0.13714303,0.41552356,-0.35024825,-0.24377419,-0.24091782,0.16558628,0.5831726,-0.32934913,-0.28153664,0.08082798,0.0039171698,-0.06551151,-0.567663,-0.077371866,-0.43149564,0.3371636,0.025925461,-0.25101763,-0.15085249,0.061973877,-0.39845005,0.1909776,0.024168829,-0.35915887,0.13270408,-0.19847417,-0.1444604,1.0285596,-0.12090548,-0.044867888,-0.64656574,-0.41351902,-0.6364575,-0.4495893,0.45757928,0.050934814,0.080087475,-0.43595663,-0.06949656,0.07146356,-0.1542703,-0.1605366,-0.34942433,0.43868962,0.063559376,0.36923018,-0.06801726,-0.9099571,0.21453151,0.08351581,-0.16669875,-0.6254645,0.4111751,-0.15123698,0.7197518,0.023112353,0.086867616,0.251341,-0.25441763,-0.19775629,-0.3358477,-0.17990804,-0.74797785,0.05878628 +20,0.31794685,-0.01037313,-0.39937732,-0.32618397,-0.30779946,0.20888808,-0.08883622,0.18959989,0.16105205,-0.32859743,-0.11707541,-0.094066225,0.033459567,0.2629714,-0.29703963,-0.8106551,-0.08670086,0.029161043,-0.49537206,0.33766276,-0.5164772,0.48448008,0.13684483,0.33103803,-0.0039607286,0.25888687,0.35596824,-0.19561034,-0.29445884,-0.13661961,-0.26750532,0.31125054,-0.6959423,0.15769725,-0.10919845,-0.25565135,0.122773185,-0.325046,-0.24795623,-0.6569829,0.28742594,-0.8240501,0.47911477,-0.07545852,-0.28146434,0.2244696,0.19736628,0.12691164,-0.4100976,0.20564261,0.08694891,-0.35188824,0.007933965,-0.11136419,-0.29782522,-0.5441766,-0.49017954,0.052011278,-0.63209087,-0.2997775,-0.2979102,0.17223695,-0.37422928,-0.017195573,-0.24297489,0.23929618,-0.51343125,-0.031714126,0.14607993,-0.13677552,0.20149258,-0.39618272,-0.15183899,-0.07301687,0.17965111,-0.16990061,-0.1918117,0.35388163,0.29094464,0.4411975,0.034172274,-0.32454377,-0.17141068,-0.15825292,0.17223927,0.4023879,-0.09369263,-0.42363268,-0.25476116,-0.034174867,0.22414772,0.24972701,-0.13842094,-0.34278843,-0.04527458,0.05579426,-0.100655176,0.15343618,0.4687695,-0.36168212,-0.25957096,0.34480602,0.17757574,0.13615635,-0.18566473,0.20509544,-0.04115942,-0.42087895,-0.2670148,0.24297303,-0.11427726,0.64430785,-0.050761692,0.12228185,0.76228744,-0.26622283,0.21891376,-0.17426613,-0.0047338866,-0.11512348,-0.15934166,-0.14567533,0.05766853,-0.544893,-0.06299924,-0.24195729,0.90753305,0.16188225,-0.8057499,0.26469412,-0.47226658,0.07091848,-0.22065139,0.606382,0.6294965,0.34214693,0.23200367,0.82880527,-0.64517033,0.092510656,0.06448132,-0.41757354,0.023585528,-0.11337468,-0.12119033,-0.44205016,-0.01686468,0.17532888,0.11894179,-0.07586605,0.26193425,-0.28638357,0.041775,-0.20212787,0.71518993,-0.44294822,0.050192375,0.74909365,1.0376608,0.8921379,0.1438208,1.4037048,0.36187893,-0.11061971,-0.072037995,-0.1640911,-0.463093,0.1484694,0.41970322,-0.08276874,0.28576732,0.038981613,0.13417526,0.28222805,-0.40120474,0.20186695,-0.005930679,0.2719823,-0.15583524,0.03064873,-0.3962366,-0.19924268,0.23295297,0.15561526,-0.1304036,0.18069637,-0.08684016,0.44327238,0.19321974,1.3353083,0.07694981,0.08486678,-0.10210812,0.4413017,0.28542447,0.03190484,-0.0015087798,0.34562466,0.3469875,-0.07022342,-0.5570532,-0.0876744,-0.21828455,-0.50635314,-0.29485968,-0.5222804,-0.0010330677,-0.14492717,-0.43547273,-0.13807002,0.17195892,-0.3194633,0.5243218,-2.4446545,-0.08029424,-0.14168927,0.26495788,-0.2104331,-0.24476928,-0.2238746,-0.39857048,0.42571473,0.41679227,0.30495262,-0.6788555,0.27577603,0.39088088,-0.14560297,-0.23392986,-0.65726817,-0.08134786,-0.18874943,0.4707889,-0.004860161,-0.0627397,-0.17372409,0.25680822,0.60448706,0.057058945,0.017632008,0.0062530227,0.34565467,0.08862158,0.57406104,0.23836263,0.5810672,-0.043001074,-0.0014644172,0.430373,-0.35785252,0.27834973,0.12446499,0.2023829,0.3440665,-0.5025904,-0.7161421,-0.6084595,-0.53165936,1.1946852,-0.47456324,-0.42264935,0.33658212,0.12929067,-0.16433723,0.02359637,0.32418597,-0.12964995,0.18667072,-0.6236445,0.004834899,-0.00896338,0.07442298,-0.04916014,0.19772418,-0.17209703,0.6033847,-0.21288511,0.36227006,0.4296676,0.2582718,-0.07395081,-0.6261256,0.1744881,0.9313661,0.5206897,0.036182754,-0.058931198,-0.26830438,-0.1565283,-0.24000779,0.2786554,0.49508098,0.92187387,-0.012143014,0.0322764,0.29370236,-0.22209662,0.05593899,-0.058935862,-0.3412475,0.153101,-0.03920868,0.5720558,0.4868859,-0.16236377,0.47373492,-0.18945654,0.41658688,-0.11271062,-0.41757223,0.5179774,0.89855856,-0.09971559,-0.14982584,0.48645905,0.502873,-0.34246022,0.34414786,-0.6815028,-0.15528432,0.8332646,-0.03588828,-0.38315225,0.18795842,-0.295335,0.07978297,-1.0984513,0.40287495,-0.03154663,-0.48912847,-0.5251954,-0.28534958,-3.652745,0.04286576,-0.20370428,-0.13309199,-0.08627303,-0.13227402,0.36003053,-0.589657,-0.538644,0.10058597,0.026720762,0.38540915,0.06112976,0.14306924,-0.30824292,-0.07532281,-0.27135462,0.20245597,0.08174942,0.16606116,-0.25026548,-0.39314228,0.07619332,-0.32467598,-0.50954473,0.02622648,-0.37042558,-0.6674133,-0.10096966,-0.45351,-0.29118693,0.8086195,-0.36195755,-0.15893479,-0.118616804,-0.09510705,-0.28912994,0.34473717,0.34802595,0.20255911,-0.0043595918,0.11155777,-0.077264346,-0.38088965,0.17681296,0.15463021,0.21506514,0.3724517,-0.19266401,0.14174402,0.51372045,0.3506441,0.012870997,0.6387829,0.19363928,-0.17345372,0.34419027,-0.5501952,-0.37206855,-0.8003704,-0.4761365,-0.28804722,-0.32421795,-0.4147508,-0.2355814,-0.35526472,-0.77868164,0.4561209,0.061179064,0.17770626,-0.2596182,0.19573665,0.2629517,-0.032724347,-0.02646976,-0.2297238,-0.20453928,-0.42956072,-0.42634672,-0.7617012,-0.5935657,0.02523863,1.02135,-0.074676156,-0.2717345,-0.06779151,-0.18652302,0.07410089,-0.119733736,0.15920669,0.3038139,0.25944477,-0.16020012,-0.73598236,0.5731338,0.07681023,-0.14570943,-0.6026503,-0.16430919,0.70923704,-0.6757991,0.445669,0.43904838,0.23109044,0.14488292,-0.55584085,-0.20986089,0.029757403,-0.21039607,0.6305547,0.043293275,-0.54708505,0.4917752,0.20054314,-0.1648596,-0.6821642,0.6240742,-0.052913643,-0.25293195,0.17032105,0.3247823,-0.06868772,-0.066451624,-0.038936317,0.3212277,-0.568966,0.33617103,0.5176345,0.09107149,0.5141669,0.017893706,-0.3497297,-0.6177943,-0.090022534,-0.46328014,-0.26636878,-0.02972645,0.12767598,-0.05529843,0.18699881,-0.042724997,0.47168088,-0.4403032,0.14764784,0.048581608,-0.21455559,0.3531825,0.44980156,0.33824715,-0.371009,0.666289,0.16337882,0.11684148,-0.2716018,0.14428392,0.4931567,0.3842493,0.14774553,-0.047232464,-0.18556392,0.2598819,0.659906,0.21402368,0.47724006,0.21525505,-0.24875024,0.37375784,0.24570511,0.15513438,0.15097904,-0.1300438,-0.14581552,0.016619712,0.09006015,0.2742485,0.0967733,0.40094343,-0.003675472,-0.11623942,0.29236692,0.13425143,-0.04604113,-0.98307866,0.21995558,0.18435833,0.5298469,0.6097056,-0.014086697,0.1797419,0.3833508,-0.41372007,0.011368893,0.3370722,0.16107102,-0.46918717,0.6686476,-0.5437839,0.4383005,-0.19909726,0.002443865,-0.004367605,0.20143558,0.29959822,0.9768935,0.0051630884,0.10129702,-0.065466814,-0.24011561,0.1618605,-0.29501283,0.12045781,-0.3532062,-0.297903,0.60377127,0.3579011,0.17343321,-0.22077417,-0.1533215,0.093795165,-0.15824606,0.27167696,-0.094533116,0.08611137,0.039045215,-0.5878239,-0.48245192,0.55319285,-0.07616617,0.039951302,-0.015388334,-0.27043188,0.28806794,-0.09628542,-0.06454455,0.008950926,-0.5205746,0.019572496,-0.35943416,-0.4761994,0.42885804,-0.6782719,0.34292412,0.15049414,-0.05028424,-0.2471449,-0.101237945,0.33270273,0.5132512,0.04521647,-0.27103347,-0.31415796,-0.12624896,0.30798262,-0.32880938,-0.15955764,-0.192026,0.16932654,-0.53246194,0.31448615,-0.23606893,-0.14175838,0.044141915,-0.19448295,-0.11262153,0.31684837,-0.23181427,-0.23616433,0.1821484,0.09690246,-0.32469636,-0.03563892,-0.30925876,0.29033107,0.017377708,-0.039011832,0.120613635,-0.08118073,-0.17488825,0.38052773,0.039311048,0.32574093,0.21333724,-0.25919598,-0.4927732,-0.07589873,-0.12740241,0.22979234,0.08536733,0.117431596,-0.19046691,-0.2520991,-0.18854606,0.2098918,-0.30617085,0.084293365,0.1242702,-0.47221076,0.88686407,-0.014058126,1.1566292,0.11945976,-0.32021123,0.048956797,0.5167865,-0.059348486,0.06352488,-0.22762886,1.0387928,0.7763401,-0.07350014,-0.27899858,-0.39566517,-0.13025461,0.30124658,-0.1754762,-0.2963518,-0.079775594,-0.6842032,-0.3116395,0.10537668,0.16870764,0.122785844,0.12899622,-0.17572246,0.07299064,0.18246117,0.58936346,-0.512333,-0.019358907,0.3388518,0.14378732,0.11279696,0.14146453,-0.27787468,0.47854733,-0.61139894,0.20961261,-0.4330417,0.0042834273,-0.19399491,-0.260728,0.19450025,0.020896506,0.21118617,-0.21349186,-0.2272118,-0.32645983,0.59579706,0.050643593,0.32980013,0.72294945,-0.24515787,0.07311688,0.10095336,0.41329738,1.4008571,-0.10577894,0.033013124,0.37429988,-0.44235092,-0.43515855,0.2039788,-0.41994548,0.051206823,-0.10246879,-0.3935402,-0.4518988,0.2528351,0.110940956,-0.010931933,0.014861859,-0.48348957,-0.20638506,0.46891174,-0.2617645,-0.30790013,-0.2762615,0.25049078,0.7282295,-0.42725623,-0.2188982,-0.014096152,0.20892823,-0.3516119,-0.56555337,0.08122576,-0.18304262,0.5234891,0.09622454,-0.30613875,0.21115363,0.4017382,-0.32027096,0.13912067,0.56301993,-0.3907147,0.012306869,-0.077063695,-0.04221758,1.0386958,0.041467894,-0.041276284,-0.7595349,-0.5283352,-0.9007003,-0.36557767,0.35763153,0.2934621,-0.008744284,-0.4922708,-0.009285048,-0.040009946,0.08581597,0.04076959,-0.5730815,0.34827954,0.12190937,0.5253468,-0.008416394,-0.7599289,-0.14128587,0.031564303,-0.15676051,-0.51743525,0.67313254,-0.30713594,0.5301063,0.06493582,0.033770885,0.2188327,-0.5641796,0.30688792,-0.25865206,-0.26865575,-0.60195756,0.0963423 +21,0.49253038,-0.16972096,-0.5960495,-0.07489516,-0.1556792,-0.07462828,-0.19572523,0.11783446,0.31340268,-0.24126188,-0.2840167,-0.10911455,0.17723492,0.43294504,-0.07303596,-0.7499197,-0.14997058,0.08250829,-0.63047355,0.41397768,-0.5055087,0.27921948,0.17155372,0.3258745,-0.08039764,0.32995746,0.365078,-0.24561715,-0.1583617,-0.031623524,-0.09463649,0.2849043,-0.7631375,-0.06765951,-0.22272184,-0.24500637,0.003871773,-0.5493052,-0.25861087,-0.8206218,0.1709287,-0.94407475,0.55664444,0.09883787,-0.00047209646,0.06288817,0.2113364,0.18063717,-0.4351764,-0.014267357,0.15697126,-0.20999844,-0.25430393,-0.26716632,0.0067550326,-0.46309325,-0.49022698,0.04159059,-0.6184891,-0.21580303,-0.16603932,0.016920881,-0.33694598,-0.006286059,-0.21939568,0.27408618,-0.4004261,-0.13841905,0.543898,-0.18937972,0.36019215,-0.5815468,0.022790814,-0.07185344,0.515149,-0.11192808,-0.21610959,0.2745742,0.4440954,0.48009995,0.22666316,-0.29979283,-0.15549989,0.045762528,0.30454922,0.45487818,-0.07035019,-0.5224815,-0.11371891,0.25386614,0.248638,0.45169216,0.0056029386,-0.2505459,-0.028999703,0.0010443628,-0.113681994,0.42467895,0.6342862,-0.28797707,-0.40109068,0.20508845,0.61395884,0.36538687,-0.016247954,-0.11495148,-0.016039586,-0.5819634,-0.16882363,0.23455755,-0.11506621,0.53782004,-0.16094236,0.13821656,0.7365204,-0.24396196,0.02294517,-0.17069766,-0.18833026,-0.20243053,-0.18813358,-0.06330804,0.28660032,-0.527751,0.12000734,-0.27675933,0.5610699,0.28801987,-0.76829845,0.38233715,-0.5908136,0.27587566,-0.07425231,0.662131,0.733047,0.3030519,0.47263446,0.7713582,-0.38540787,0.22066459,-0.0074761934,-0.61216956,0.13584743,-0.2603481,0.09760381,-0.38545138,-0.03843521,-0.172774,0.033639822,0.10689462,0.14352128,-0.63550615,-0.04951519,0.101719655,0.71210295,-0.27448997,-0.09364348,0.6920027,1.0412453,0.8821532,0.14995153,1.3353785,0.36809096,-0.2603244,0.17516506,-0.21632075,-0.76791745,0.18081965,0.33569542,-0.4250795,0.45994785,-0.08284272,-0.09325925,0.28209606,-0.39336067,0.011272061,-0.033548538,0.28392068,0.056748264,-0.15299408,-0.49869353,-0.106572516,-0.28011853,-0.056259092,0.17389798,0.21018577,-0.09532908,0.23755524,-0.017415812,1.2578346,-0.14471309,0.06979154,0.042658336,0.36041853,0.37032205,-0.11095136,-0.059444718,0.43485817,0.43417758,0.029053982,-0.63261986,0.16912426,-0.300328,-0.34633946,-0.15750647,-0.33791938,0.018771097,0.15426017,-0.25037178,-0.06994524,-0.09070698,-0.223018,0.5111483,-2.6100218,-0.2113944,-0.088275656,0.361294,-0.3775434,-0.16389307,-0.08510469,-0.5501525,0.2447214,0.22409277,0.4857628,-0.7458307,0.40037957,0.36340243,-0.6099796,-0.2503743,-0.6863733,-0.014244122,-0.027543932,0.4159041,0.040758975,-0.19717304,0.039683666,0.17647734,0.6715961,0.11896274,0.021632893,0.44068697,0.60115,0.15987237,0.44125006,-0.08147137,0.58310986,-0.2709696,-0.11451352,0.4418592,-0.19875881,0.42643073,-0.23124962,0.12861963,0.41727582,-0.4215243,-0.9642162,-0.5043237,-0.40179357,1.1820599,-0.35319433,-0.45446354,0.02266683,-0.19221582,0.0027929246,0.018360475,0.627503,0.057873935,0.17020439,-0.7268318,0.09351083,-0.14100268,0.13294473,0.10460862,0.08081194,-0.35653517,0.6676408,-0.0723796,0.4402363,0.37396044,0.3686637,-0.058019944,-0.5397336,0.09825994,0.9134794,0.2724996,0.032981258,-0.08522467,-0.26705784,-0.06908318,-0.14350079,-0.026570728,0.5915136,0.82515866,-0.030642483,0.0026084238,0.26892346,0.10468609,0.11610822,-0.066787355,-0.22780745,-0.009869904,-0.12168191,0.47618967,0.886094,-0.38283497,0.46473816,-0.24058442,0.3183813,0.0260278,-0.4602151,0.81995755,0.8511185,-0.1896954,0.042323563,0.39428854,0.31519392,-0.49217933,0.50234044,-0.6969204,-0.2342376,0.70342463,-0.24668762,-0.3867696,0.30357623,-0.25917897,0.11265943,-0.98681253,0.39193973,-0.21384238,-0.007784975,-0.37000003,-0.01971428,-3.7167568,0.23370545,-0.24221835,0.00052416325,-0.3956788,-0.074096985,0.2717367,-0.6400073,-0.5845901,0.26524764,0.15105353,0.5691857,-0.094016075,0.2653926,-0.3173022,-0.23883487,-0.12517147,0.226204,0.27264145,0.30040446,-0.18166177,-0.28130624,-0.010838368,0.028832078,-0.3743321,0.16897996,-0.47203898,-0.49934652,-0.19349764,-0.52021325,-0.13073178,0.62541664,-0.36119694,-0.05357639,-0.11989103,0.16835307,-0.2699936,0.20499031,0.05470591,0.32466236,0.10144089,-0.04211023,0.15893354,-0.30860576,0.5243741,0.049835954,0.376046,0.115792416,-0.03830498,0.18890503,0.41778058,0.7262215,-0.17286769,0.9074725,0.4523031,0.044573706,0.23550925,-0.34654242,-0.2784225,-0.72326756,-0.4525263,-0.10683833,-0.37163192,-0.6158119,-0.08066195,-0.34036604,-0.8454677,0.5155571,-0.06054776,0.47260216,0.052308265,0.376381,0.58864623,-0.27980354,0.068127625,-0.06581952,-0.16286151,-0.662684,-0.14959428,-0.5761204,-0.45457023,0.12950823,0.6217928,-0.2762418,0.08513789,-0.026737468,-0.16853103,0.060313217,-0.14256564,0.08614421,0.24950658,0.4550216,0.0799555,-0.64977646,0.5143457,-0.0068871165,-0.33787712,-0.6392153,0.24603201,0.58033746,-0.76239395,0.6843318,0.5116435,-0.0315736,0.1967992,-0.57616013,-0.32619673,-0.0026862642,-0.17201121,0.34231362,0.13719152,-0.74852145,0.4623972,0.42219463,-0.43766448,-0.74473464,0.43199316,-0.015218316,-0.338376,-0.036373843,0.276677,0.19170544,-0.03897931,-0.29324105,0.0919741,-0.4714458,0.16226389,0.21575907,-0.07553581,0.33368686,0.017904034,-0.3014972,-0.8179632,0.17135003,-0.5666057,-0.13514948,0.45304376,-0.0031665307,0.066914394,-0.06331489,0.16925195,0.3753578,-0.35393882,0.13797672,0.06612826,-0.39306363,0.32928365,0.503118,0.34890392,-0.48048243,0.57887775,0.11883877,-0.30128697,0.22119316,0.103448555,0.39121294,0.09534804,0.16805784,0.065265074,-0.23618643,0.21412516,0.7001633,0.024151871,0.43569332,0.1500238,-0.010877303,0.58008,0.088602625,0.20961936,0.009579122,-0.5152114,-0.07385691,0.102655604,0.1461281,0.50568354,0.4495094,0.22198008,-0.046927657,-0.134534,-0.0025762224,0.38236123,0.11918924,-0.9228524,0.36735684,0.17425565,0.80356437,0.44316006,0.030919354,-0.11848868,0.49849734,-0.21152022,0.14262573,0.41575125,-0.0956494,-0.6654971,0.6765545,-0.5714329,0.25390476,-0.18170218,-0.031283595,0.040833056,0.18922925,0.18476997,0.89854324,-0.21484646,-0.057254408,-0.1494789,-0.03577515,0.088853054,-0.46797237,-0.12212087,-0.3161199,-0.41708627,0.72379273,0.3063723,0.42856744,-0.26649705,0.022585707,0.021185394,-0.16897866,0.20990397,-0.07868494,0.119891934,0.15127787,-0.6331377,-0.29799077,0.46209773,0.09629988,0.20639467,-0.35697514,-0.23988266,0.09632911,-0.46087292,-0.1265038,-0.093912646,-0.767018,-0.07343221,-0.29701993,-0.67327434,0.49031082,-0.10531547,0.21033196,0.27235636,-0.008747603,-0.16580893,0.319728,-0.079702154,0.9726805,0.09276468,-0.33750686,-0.5174434,0.16140267,0.30625278,-0.24165212,0.08139815,-0.32645717,0.08152239,-0.38332716,0.6804229,-0.13014857,-0.43440464,-0.0031725976,-0.28170517,-0.08589206,0.6724939,-0.28888366,-0.13480417,0.19081815,-0.29998374,-0.4093757,-0.16138391,-0.23263457,0.1620239,0.35413912,-0.02413204,-0.08663169,-0.22992513,-0.25936526,0.47427052,0.11440805,0.46798983,0.3293496,0.03269647,-0.15332055,-0.18251553,0.31204686,0.318664,0.22236733,-0.16658743,-0.52343154,-0.60851675,-0.38944206,0.024263365,-0.035981886,0.16305898,0.11014564,-0.20616539,0.7422949,0.070786364,1.1284145,0.09542946,-0.26731217,-0.013808795,0.45379168,-0.057128463,-0.09296537,-0.5032955,0.86186,0.56160516,-0.06597159,0.052053485,-0.36260816,-0.1676627,0.35370278,-0.3658994,0.0936022,0.0757403,-0.57149637,-0.465077,0.19085442,0.23502465,0.019956188,-0.080113694,0.07130364,-0.019573927,0.11917887,0.3902135,-0.66193587,-0.4350075,0.29862124,0.17106213,-0.13068779,0.06874844,-0.33721343,0.4828669,-0.48078585,-0.01562242,-0.49715975,0.10486446,-0.13589749,-0.30881357,0.1591943,0.047161132,0.39504054,-0.42999068,-0.39988178,-0.12591729,0.3292666,0.102830954,0.13305183,0.57815,-0.28345293,0.019395564,0.1843495,0.7438255,1.2713159,-0.43597388,0.055465367,0.33738247,-0.3791303,-0.5576811,0.4595633,-0.3698573,0.017501265,-0.32084867,-0.45302194,-0.62336147,0.22228377,0.1911445,0.058265563,0.1577367,-0.6437971,-0.25283742,0.2645703,-0.48607048,-0.20505682,-0.2801766,0.4409721,0.91938627,-0.41489717,-0.276299,0.08624612,0.12267412,-0.058274705,-0.47243088,-0.09358377,-0.19564463,0.2209497,0.22563004,-0.2611209,0.01689929,0.16380027,-0.50728756,0.20896003,0.12498748,-0.34274715,0.0615325,-0.09361004,-0.11588214,0.8688094,-0.30059996,-0.17381072,-0.64781684,-0.50954944,-0.9911994,-0.5442143,0.22400095,0.029849734,0.22029757,-0.41025558,0.16625288,-0.04611981,-0.10524634,-0.026339918,-0.55998,0.3215806,0.114374585,0.6124913,-0.24254291,-0.8205843,0.03438466,0.16732796,-0.16285524,-0.6541515,0.55350006,-0.07224131,0.85867697,0.03912809,-0.12494596,0.14871527,-0.48725557,-0.06562923,-0.3873143,-0.13135086,-0.8687913,0.07946745 +22,0.53981423,-0.36364862,-0.41150182,-0.07321387,-0.12788092,0.10316655,-0.15245341,0.47414976,0.26408046,-0.5435808,-0.092735834,-0.3016553,0.042083833,0.111442804,-0.15388489,-0.38065335,-0.04317641,0.08336072,-0.32916605,0.44559404,-0.6245381,0.2611863,-0.110870875,0.32133403,0.08698478,0.27493083,0.06064129,-0.14975367,-0.28458557,-0.18600814,0.037912913,0.31820327,-0.56255305,0.12256767,-0.19233212,-0.30767563,0.018560413,-0.476633,-0.43648532,-0.74074656,0.34223124,-0.93314874,0.29794118,0.23410423,-0.19767427,0.19674999,-0.09517566,0.22248647,-0.2702308,-0.013530595,0.16233018,0.019153606,0.035914734,-0.28513205,-0.09149362,-0.3238188,-0.5699856,0.14674331,-0.36713725,-0.23868594,-0.26308873,0.15225723,-0.42054382,-0.054087702,-0.18310969,0.35140324,-0.42913902,-0.036373954,0.17013018,-0.23413302,0.30006433,-0.70705163,-0.38431293,-0.111828536,0.24718206,-0.2885936,-0.21894662,0.12825345,0.46377724,0.49380594,-0.06336594,-0.0046924236,-0.40130207,-0.002493056,0.22589947,0.42378828,-0.18532532,-0.6891064,-0.1289596,-0.060850143,0.1823996,0.273927,0.15420803,-0.25253406,-0.048032936,0.12850556,-0.3805908,0.4595824,0.5554333,-0.4429022,-0.20984842,0.310413,0.5338036,0.2695251,-0.08110575,-0.12755261,0.07395764,-0.5521863,-0.17163302,0.19412804,-0.21024612,0.49914137,-0.1599119,0.33415678,0.59080607,-0.41605112,0.17233953,0.119918674,0.015723508,-0.13751453,-0.25846782,-0.037337847,0.14790589,-0.2903487,0.06646688,-0.16287357,0.8107948,0.22331217,-0.56398654,0.3592348,-0.6174947,0.20215791,-0.09076763,0.60699046,0.62722534,0.36086032,0.41707084,0.71960443,-0.42472413,-0.0816479,-0.14725988,-0.36489102,0.08489506,-0.23413382,0.10596781,-0.34301513,-0.08579289,0.07016431,-0.12195846,0.013764943,0.6914407,-0.6031383,-0.07315348,0.10486771,0.710316,-0.20641683,0.0067505976,0.7419304,1.0056845,1.039563,0.10960372,1.3426888,0.21802813,-0.21436909,0.2640687,-0.3440457,-0.7903615,0.33255145,0.3076097,-0.08220477,0.17982945,0.057797212,-0.05434527,0.2464188,-0.35417563,0.05922949,-0.19531044,0.37118775,0.23598163,-0.023435025,-0.4013244,-0.33906752,-0.19726826,-0.06587892,0.11358857,0.18323825,-0.11518541,0.2196618,0.11906673,1.6064422,-0.2719097,0.22548272,0.13586356,0.531657,0.17969753,-0.09479063,0.075581625,0.35657546,0.24941438,0.19408257,-0.6636311,0.09585117,-0.23217313,-0.56463975,-0.07670833,-0.27575678,-0.2979667,0.2026965,-0.37260643,-0.18364215,-0.22494903,-0.32017282,0.48263547,-2.7032926,-0.31317785,-0.13859564,0.5374549,-0.3404646,-0.41073406,-0.11250684,-0.51441264,0.40083286,0.3281643,0.5178392,-0.80217713,0.15991798,0.6030001,-0.5658316,-0.18524566,-0.5992012,-0.029387195,-0.08815503,0.2681165,0.047969148,-0.13407083,-1.6900209e-05,-0.19838579,0.3454474,0.041041348,0.16373883,0.17505345,0.505664,-0.12474669,0.50870013,-0.04209322,0.4484582,-0.28513077,-0.26923218,0.45313218,-0.43814257,0.35468516,-0.12713145,0.12118505,0.4779136,-0.62330437,-0.84338844,-0.67733985,-0.39409035,1.1587616,0.04741313,-0.50736296,0.25395358,-0.36264214,-0.33454865,-0.30645904,0.5382009,-0.056671564,-0.21133573,-0.9057306,0.011675257,-0.25569618,0.20520546,0.045867965,-0.011657985,-0.33419478,0.762526,-0.017783472,0.36006176,0.3607248,0.040317755,-0.3641071,-0.52399576,-0.045034524,0.9781923,0.36443248,0.20565906,-0.25897062,-0.3197061,-0.2813868,-0.06097022,0.10414072,0.50920033,0.5807587,-0.05714583,0.08674952,0.3219501,0.04029108,0.08359453,-0.1923385,-0.20637785,-0.15945135,-0.05001744,0.6663717,0.69618064,-0.27952665,0.40784857,-0.038030256,0.11817345,-0.240276,-0.34867778,0.46931472,0.8805943,-0.09704566,-0.079392515,0.5885448,0.5578293,-0.39890704,0.36177906,-0.48644322,-0.40501064,0.40036535,-0.29466796,-0.46689838,0.30905488,-0.34532514,0.12852032,-0.72556084,0.33556157,-0.49501595,-0.13734755,-0.60978425,-0.115826026,-3.3913522,0.24166939,-0.23699358,-0.06413347,-0.13296911,-0.13474765,0.2237533,-0.5789365,-0.60577357,0.24726805,0.026737355,0.59121513,-0.18754466,0.07861241,-0.36964637,-0.37001213,-0.41460675,0.06539512,0.171839,0.40588096,0.025087925,-0.38907745,0.15834302,-0.16734979,-0.22639036,0.090939686,-0.45277697,-0.63237655,-0.1882672,-0.5193689,-0.48297507,0.7628543,-0.2243087,-0.0004667227,-0.119025275,0.0417033,-0.21206056,0.39867643,0.09804715,0.11164216,0.0416764,-0.07784438,-0.10661324,-0.2552538,0.3813076,-0.027442057,0.22809379,0.51401937,-0.297946,0.17583257,0.40620583,0.54940027,-0.108928844,1.0157965,0.3583133,-0.11217099,0.29559448,-0.16578534,-0.28080705,-0.53468096,-0.20415947,0.19569278,-0.46835282,-0.5338119,-0.118616,-0.36871478,-0.62199676,0.59859264,-0.11937113,0.20398997,0.10253975,0.37533358,0.60797113,-0.048150294,0.019962775,0.03565056,-0.052717246,-0.6288439,-0.28550196,-0.6830111,-0.4602141,0.3345568,0.7577317,-0.24537556,-0.060281757,0.27186102,-0.27784348,-0.14981955,-0.0652657,0.043290235,0.05399324,0.4239006,-0.051778276,-0.5516252,0.44611338,0.0098214885,-0.17250623,-0.5219394,0.18252708,0.8022404,-0.747218,0.61036384,0.43168995,0.06439871,-0.08553568,-0.41861784,-0.22765692,-0.026509136,-0.33306408,0.2691363,0.20043507,-0.82663375,0.4260478,0.43848497,-0.16460046,-0.83125836,0.61678857,-0.045300905,-0.24007232,-0.107346684,0.41891846,0.29032627,0.13144708,-0.05470117,0.39376956,-0.5809542,0.25073904,0.22401024,-0.19907254,0.38112494,-0.061269548,-0.28416213,-0.7444839,0.05791411,-0.4550808,-0.2765531,0.3719343,0.16184847,0.060137987,0.20925806,0.29317248,0.52051294,-0.29450208,0.07228604,0.08344913,-0.07172946,0.20057164,0.32999727,0.6974456,-0.47300038,0.57526004,-0.023980213,-0.06062264,0.028824743,0.018374847,0.33072802,0.17182483,0.37931225,0.14551269,-0.3264116,0.22647902,1.0739989,0.09946127,0.47198442,0.09093501,0.000116091505,0.27154148,0.2168006,0.31714168,-0.048170622,-0.7147,-0.0109729655,-0.058361273,0.16774327,0.400965,0.17872144,0.25203,-0.25463137,-0.31497303,-0.086091004,0.3887644,0.018032065,-0.977918,0.21482538,0.025948064,0.8110802,0.56279427,-0.035574004,0.15041126,0.558885,-0.10678306,0.07823238,0.33831167,-0.011005998,-0.60597664,0.4745495,-0.5886246,0.4415526,-0.16730286,-0.008005302,-0.12678571,-0.093543954,0.35335493,0.7457848,-0.11432955,-0.10339562,0.03031221,-0.27086383,0.22975087,-0.4383771,0.08613967,-0.61183226,-0.13513692,0.61242306,0.56108975,0.34567493,-0.1746375,0.037661728,-0.031161722,-0.112284,0.30326974,-0.08198357,0.1479633,-0.009132734,-0.81213623,-0.07629154,0.55925137,0.27564552,0.1774575,-0.057661466,-0.30799034,0.34634942,-0.19271861,-0.067801625,-0.14092559,-0.64848125,-0.09771877,-0.43892795,-0.5489334,0.38012302,0.08337195,0.28755844,0.28066558,0.11788641,-0.22159688,0.2505901,0.10179769,0.7846932,-0.16294609,-0.1815252,-0.6499834,0.16248845,0.24267724,-0.2195834,-0.08544889,-0.15286916,0.0957779,-0.5422007,0.5775235,-0.035326175,-0.19412139,0.028610192,-0.17786926,-0.032237783,0.7767462,-0.26460847,-0.18705122,-0.07957308,-0.22204535,-0.40500778,-0.049380027,0.05196557,0.16685145,0.3671598,0.004598223,-0.15144786,-0.26721615,-0.17698497,0.2662827,0.15675323,0.28641826,0.47092357,0.21439113,-0.2936074,-0.19146334,0.19694439,0.49874672,0.01766937,-0.17956275,-0.32294226,-0.61029845,-0.3929884,0.25478193,0.028030455,0.31771606,0.06336855,-0.4115191,0.6460524,-0.083748326,1.0552214,0.05476374,-0.30634516,-0.017404843,0.5220484,-0.1122988,-0.16427967,-0.5056439,0.9693849,0.49069077,-0.26108032,-0.08597498,-0.30584028,-0.10932222,0.14149305,-0.3038054,-0.014816981,0.017805131,-0.7051385,-0.24218719,0.24265245,0.3006551,0.018484341,-0.13505219,0.21078196,0.20909277,0.2166841,0.37649775,-0.53853214,-0.46106845,0.29068676,0.44504282,0.024954991,0.2188805,-0.2067249,0.4322604,-0.5496273,0.19729386,-0.3966262,0.12542258,-0.1200177,-0.30050695,0.23022798,-0.040124573,0.38898975,-0.3216593,-0.51453847,-0.32696354,0.2856088,0.14647235,0.23443006,0.560138,-0.23342115,-0.042336974,0.09215875,0.7073389,1.1691319,-0.011252834,-0.105307296,0.46495312,-0.25897908,-0.60980237,0.5635773,-0.45670694,0.17984335,0.008106117,-0.091887146,-0.4859411,0.30199233,0.31500992,0.024377447,-0.029599804,-0.7588752,-0.15586983,0.2493663,-0.49903983,-0.1440478,-0.31515053,0.057050522,0.9228938,-0.3304383,-0.1714417,0.033113003,0.42396858,-0.31818703,-0.5313786,-0.045779493,-0.45245203,0.30041462,0.00983285,-0.15408915,-0.037290625,0.067482345,-0.4487265,0.12053737,-0.0016382749,-0.39216596,0.122272186,-0.36513376,-0.07356516,0.9635012,-0.27282122,0.34093857,-0.3694619,-0.49747145,-0.76175433,-0.29232767,0.4626207,-0.008807347,0.079445824,-0.4696557,0.087522306,-0.018312356,-0.11290128,-0.11827678,-0.51782167,0.50490993,0.06445987,0.5260438,-0.12583901,-0.73033303,0.09851691,0.24726513,-0.13701639,-0.56723875,0.5765308,-0.08029652,0.80338603,0.16266169,-0.091629036,0.31037152,-0.45033833,0.014056389,-0.2076649,-0.25687006,-0.86304104,0.082180314 +23,0.29131007,-0.21512082,-0.5725359,-0.15163204,-0.027232977,0.15923594,-0.21887194,0.20112197,0.033616878,-0.60983866,-0.024663601,-0.23103304,0.1326638,0.30406013,-0.06732305,-0.43337297,0.16992232,0.101699114,-0.586698,0.38791737,-0.42363247,0.26183435,0.12684889,0.18987608,-0.051132876,0.23791811,0.26366642,-0.19542177,-0.24006774,-0.16411869,-0.07989009,0.057877295,-0.5226545,0.0434767,-0.1963081,-0.25571436,0.043831524,-0.5224975,-0.41517848,-0.69537765,0.12522073,-0.7346826,0.46906948,0.19283088,-0.20588587,0.13559304,0.007388166,0.3892133,-0.123707935,0.25928122,0.28434035,-0.24320719,-0.05485732,-0.17104626,-0.45649752,-0.3869464,-0.5930281,-0.0032752412,-0.50448596,-0.18415453,-0.02548016,-0.006315925,-0.26774755,-0.051983375,-0.14428475,0.26018023,-0.36911228,-0.28778037,0.33040622,-0.08464081,0.57074565,-0.4770288,-0.19879344,-0.10549467,0.38744804,-0.38614607,-0.16114971,0.251896,0.4641593,0.57291275,-0.108175956,-0.09567867,-0.24801339,0.07609891,0.40664005,0.6133999,-0.20343985,-0.20737909,-0.06781238,-0.08276187,0.14721425,0.2360126,0.13131735,-0.44594568,-0.14046314,-0.031630587,-0.14047047,0.043063443,0.4342548,-0.20822416,-0.11533417,0.28531665,0.5242271,0.07105052,0.0032390314,0.07206285,0.001413473,-0.5231027,-0.20808871,0.4688172,-0.23576662,0.5255357,-0.05117471,0.16377462,0.5400394,-0.074151956,0.039954126,-0.02585512,-0.10466944,0.004050008,-0.06892211,-0.2557648,0.21887828,-0.49075207,0.10212143,-0.27914688,0.6469664,0.2837161,-0.9833268,0.3701052,-0.4099796,0.13082628,0.030148562,0.57128066,0.6165191,0.3840819,0.1007669,0.6619279,-0.70381695,0.2064519,-0.081009425,-0.3389834,0.09927455,-0.07075667,-0.036791276,-0.6047468,-0.23289105,0.028793769,-0.1645033,0.13541028,0.26306686,-0.38181928,0.050799314,0.19947553,0.733895,-0.30543151,0.09352072,0.5766307,1.0375214,0.83702594,0.24168447,1.3168577,0.22035062,-0.30522582,0.13969137,-0.28768352,-0.79232186,0.26344505,0.4491612,-0.31625715,0.38317207,0.049370952,0.10911749,0.27566957,-0.38714293,0.11824596,-0.09597127,0.07245497,-0.19254376,-0.34855253,-0.25776547,-0.26929477,-0.13055293,-0.036038365,-0.09755975,0.1171297,-0.13028052,0.44312456,0.17332672,1.5895269,-0.26434493,0.108810626,0.013409346,0.22676659,0.14548512,-0.18396132,-0.21001045,0.2674525,0.38212064,-0.049675547,-0.47147068,0.07284402,-0.09064127,-0.34660706,-0.23773777,-0.10012347,0.15531075,-0.064720534,-0.35165638,-0.071919486,0.017510245,-0.48038,0.5726829,-2.698784,-0.04868916,-0.17457989,0.3072627,-0.3005611,-0.4117295,-0.18092255,-0.36443976,0.56014615,0.35777277,0.313031,-0.6596206,0.23303832,0.30454877,-0.35278028,-0.117582254,-0.66983616,-0.08464199,-0.06217709,0.13753597,0.09050308,-0.16807568,0.03870857,0.2315894,0.27160698,-0.25728178,0.09219786,0.20733516,0.26629514,0.31640694,0.38133714,0.047054905,0.62588733,-0.21317005,-0.22620836,0.2934871,-0.3634696,0.26070395,0.08670628,0.15406778,0.3391838,-0.44730344,-0.6299409,-0.74746627,-0.643551,0.97713745,-0.18545581,-0.23903862,0.29329437,-0.038891222,-0.46235064,-0.10561466,0.45093852,-0.17301962,0.057348114,-0.90719384,-0.22856402,-0.011068001,0.23033024,-0.055228025,-0.007526372,-0.51698405,0.62063164,-0.12204639,0.4586568,0.39961383,0.117111936,-0.11745872,-0.43898082,0.041013148,1.1732818,0.31589285,0.1818004,-0.12725113,-0.20811962,-0.3625109,-0.16882779,0.0856633,0.31855273,0.86772025,-0.15215956,-0.0686685,0.19307634,0.05459941,0.06074477,-0.13869998,-0.35180134,0.020039946,0.0057805693,0.54266405,0.37919027,-0.11537952,0.31498814,-0.1407014,0.25601953,-0.1079881,-0.39223334,0.4722238,0.9406509,-0.06295136,-0.16595681,0.42281502,0.39385104,-0.29820147,0.42532563,-0.54682714,-0.3035273,0.36662412,-0.09770187,-0.39220074,0.2817363,-0.39183447,0.3449483,-1.0304967,0.4024822,-0.47282034,-0.28958994,-0.49335235,-0.07081627,-3.0776672,0.093202315,-0.15045728,-0.2811508,0.105678424,0.026669042,0.27393577,-0.55018,-0.59508944,0.12396811,-0.017162824,0.6467244,0.030962829,0.0427211,-0.25590393,-0.15015353,-0.43632588,0.18782316,0.20756963,0.18214022,0.044158988,-0.3156273,-0.06605579,-0.33835366,-0.3657227,0.026580598,-0.6677943,-0.43030962,-0.4064202,-0.41085306,-0.47801003,0.6060151,-0.45302233,-0.053298358,-0.1669608,-0.009334244,-0.17488196,0.43465716,0.2426631,0.31336397,-0.030196896,-0.08271207,-0.22778787,-0.26776394,0.15171352,0.1888688,0.08663607,0.4713659,-0.20292799,0.16557476,0.29755026,0.8019829,-0.19974642,0.49046227,0.5813594,-0.16394292,0.2719383,-0.36200616,-0.09620051,-0.49258777,-0.42144457,-0.11074356,-0.2917544,-0.65390664,-0.21884982,-0.38686696,-0.7383041,0.31099775,0.043695636,-0.02442059,0.09189786,0.19015901,0.24988492,-0.207032,0.025340637,-0.090046726,-0.09984876,-0.40344232,-0.2865863,-0.62247914,-0.5997343,0.1627338,0.96153057,0.026752995,-0.019392302,0.21603906,-0.17653587,0.12899812,0.12367393,-0.04253826,0.18239887,0.35266623,0.15890782,-0.5539065,0.46022484,0.09319278,-0.27780437,-0.60693234,0.14194238,0.600697,-0.6139446,0.6620881,0.36349177,0.033215918,0.01256881,-0.4901576,-0.21639405,-0.0004525355,-0.29757124,0.3216085,0.046222057,-0.5746419,0.38989535,0.38134,-0.24841152,-0.6305437,0.4058098,0.16425829,-0.17917821,0.19102395,0.38776568,-0.21966071,-0.037828974,-0.13808589,0.2679145,-0.48549768,0.22444497,0.60478413,0.04188289,0.13087355,-0.15602186,-0.16897629,-0.64873505,0.10783814,-0.4902269,-0.19863984,0.3284348,0.11072836,0.07134609,0.117121145,0.15578778,0.45401597,-0.31999347,0.22176398,-0.015115485,-0.24122646,0.2325988,0.33893475,0.23694675,-0.36287627,0.52071637,-0.12301683,-0.14259246,-0.3270549,0.012960915,0.6033087,0.33141088,0.12681624,-0.048928805,-0.28827974,0.28424782,0.74769306,0.17659566,0.305597,0.14378573,-0.035543256,0.15392895,0.12060239,0.09951569,0.10084695,-0.378756,-0.03703379,0.065186374,0.17269155,0.26717743,0.06077073,0.35060793,-0.17336228,-0.24987973,0.019367056,0.18962823,-0.020025095,-1.0115567,0.4613774,0.105486594,0.5722677,0.56671035,-0.00837312,0.11156445,0.39983112,-0.37438157,0.15198374,0.15910986,-0.25451842,-0.5327343,0.38564175,-0.61181885,0.29218993,0.08319887,0.03523946,-0.0012963371,-0.0950168,0.39499897,0.853502,-0.22386004,0.16177824,-0.17495047,-0.078277126,0.16425623,-0.42175156,0.021243999,-0.33368567,-0.41697735,0.7160301,0.2894983,0.43787208,-0.11284928,-0.029302862,0.16661759,-0.09885388,0.23169544,-0.039935265,0.17973658,0.05537021,-0.46314272,-0.2466103,0.5186096,-0.08309943,0.0020000297,0.17937489,-0.2944878,0.19880593,-0.13974033,0.109099016,-0.15663637,-0.6782557,0.094435,-0.48146445,-0.1605121,0.33985776,-0.1149841,0.30318007,0.20382066,0.152757,-0.20000675,0.59538025,0.21366735,0.7916374,0.040785793,-0.1572164,-0.21114771,0.31685108,0.26196438,-0.14868796,0.1310027,-0.21683703,0.038513083,-0.65877575,0.4857102,0.044908535,-0.21519719,0.1914467,-0.14979675,-0.035423644,0.58307976,-0.3709207,-0.11683494,0.10538059,-0.012295784,-0.17009263,-0.1597366,-0.2363878,0.2338203,0.19757119,0.06408841,-0.042485457,0.13922589,-0.07304727,0.3567801,0.20102295,0.38635287,0.3841063,0.09144179,-0.52184623,-0.048868384,0.086064056,0.3999412,0.15747866,-0.0685995,-0.25222358,-0.40064678,-0.29289976,0.047503505,-0.25047207,0.2865491,0.062715635,-0.21179911,0.64831954,0.13934702,1.1694745,0.018220663,-0.35801145,-0.11976539,0.41609496,-0.07476408,-0.083866276,-0.39320678,0.8718928,0.6338674,0.0059928596,0.06820194,-0.13811858,-0.21763363,0.13194628,-0.04317325,0.018189413,0.053933356,-0.6742162,-0.45117992,0.22790487,0.16182603,0.05958566,-0.09070511,0.07146601,0.1835544,0.0035609582,0.18150887,-0.46300474,-0.119038865,0.35817042,0.11854325,0.04780111,0.2325799,-0.40878457,0.35256514,-0.55499953,-7.257717e-05,-0.19571106,0.070803806,0.089412555,-0.29036322,0.17267916,-0.03514717,0.23389919,-0.29703587,-0.1745453,-0.05067681,0.66238296,0.16915934,0.35401177,0.7949602,-0.19952528,0.2402605,0.046755787,0.447882,1.0711596,-0.2669212,0.06186823,0.38060278,-0.21840413,-0.5593452,0.26245612,-0.30097562,0.197098,-0.20992719,-0.44203267,-0.41803822,0.26472768,0.17936563,-0.01683529,0.07837621,-0.44977078,-0.17369692,0.3428324,-0.4503205,-0.3588803,-0.33224416,0.25949886,0.6423017,-0.2937041,-0.30240855,0.2490131,0.11637233,-0.4429976,-0.3323094,-0.003495408,-0.14082232,0.17801584,0.22730747,-0.34547213,0.031646438,0.058805842,-0.2625894,0.12575646,0.17490593,-0.38730797,0.019492017,-0.20905267,-0.11023019,0.7914476,-0.26857314,-0.10820718,-0.56879574,-0.5198088,-0.71227294,-0.395605,0.5980937,0.03927883,-0.02626239,-0.4930999,-0.008063857,0.027268235,0.14654562,-0.062016908,-0.20507479,0.4444749,0.107795276,0.42619377,-0.24986376,-0.5824348,0.10977312,0.13559708,-0.14947526,-0.5626962,0.46461496,0.084954664,0.7701383,-0.01172332,0.020087805,0.37694058,-0.52697027,0.12506679,-0.2985008,-0.05235077,-0.699772,0.06524434 +24,0.38959673,-0.16391477,-0.40309334,-0.16938281,-0.08042521,0.22584017,-0.07481403,0.34004498,0.036707804,-0.7383763,-0.26458633,-0.3102288,0.07293996,0.0991734,-0.3300142,-0.41867626,-0.117788315,-0.0054008435,-0.44251043,0.4152652,-0.35515273,0.3161379,0.22280653,0.27420112,0.21587516,0.17905606,0.28617176,-0.30913755,-0.16457932,-0.22783914,-0.20212562,0.24066482,-0.46071243,0.061793603,-0.12333885,-0.3934959,-0.0071381377,-0.4942823,-0.27729437,-0.7257086,0.41594598,-1.0961726,0.4609515,0.13431022,-0.010425268,0.38946393,0.116402,0.18456747,-0.11970905,0.0914758,0.20506257,-0.04401241,0.07574861,-0.14144915,-0.17723829,-0.37624598,-0.5267053,0.009359077,-0.33990258,-0.47300434,-0.34830812,0.09243429,-0.4133332,-0.08367752,-0.070539586,0.57002735,-0.44437784,0.08015826,0.11808555,-0.21772085,0.42867792,-0.6164559,-0.18570279,-0.10535893,0.37192565,-0.42711356,-0.08371293,0.031623732,0.46868366,0.3021537,-0.05464169,-0.032966275,-0.27973375,-0.13246034,0.11390303,0.4722404,-0.09731544,-0.645663,-0.016660823,0.08238165,0.10047865,0.24213482,0.1855151,-0.31799617,-0.12002105,0.050817635,-0.3211245,0.5159388,0.38205132,-0.47589657,-0.22791775,0.34743303,0.44952282,0.10589792,-0.058013394,-0.12658253,0.066296324,-0.52719694,-0.08545518,0.2808824,-0.21664833,0.5576905,-0.1169406,0.5068278,0.65259355,-0.28773227,0.18995728,0.038364884,0.008214629,-0.0843734,-0.17080715,-0.17241047,0.25879577,-0.3499483,0.11564334,-0.19966006,0.8638397,0.045012075,-0.6378508,0.3380635,-0.52044207,0.044500828,-0.16724798,0.48285314,0.35912955,0.3709367,0.18296486,0.60833895,-0.5581003,-0.092074364,-0.091115505,-0.46837646,-0.11170694,0.027357426,0.0063698567,-0.4350918,-0.09921629,-0.019290136,0.09284372,-0.049260065,0.28967652,-0.465068,-0.13056262,0.053596295,0.7986073,-0.29704756,-0.09864512,0.6792996,0.833954,0.7087095,0.040069398,1.1265541,0.20906542,-0.27246702,0.12041589,-0.22848353,-0.7347568,0.39928192,0.5377399,-0.41908896,0.1505163,0.078037456,0.06747715,0.15938647,-0.29429248,0.016804732,-0.32441413,0.028289188,0.13471155,-0.031477105,-0.36757028,-0.24319169,-0.11410063,0.071686186,0.21921143,0.11021476,-0.20349187,0.26189244,0.17928168,1.6860712,-0.13383134,0.24475804,0.097948186,0.2606857,0.1904203,0.11076461,-0.040319685,0.31523672,0.4180859,0.30545455,-0.62105054,0.21469408,-0.17548588,-0.4895704,-0.14156224,-0.31427068,-0.13780037,-0.028399624,-0.48082268,-0.07884412,-0.10538383,-0.4311268,0.42550057,-2.7444165,-0.2064845,-0.16847607,0.40095404,-0.3336578,-0.2987987,-0.10981589,-0.3899755,0.4414983,0.3091852,0.5506946,-0.6707841,0.2834463,0.5097297,-0.37443924,-0.2550716,-0.61077636,0.061198335,-0.11908049,0.23276758,0.03981138,-0.023319837,-0.024590803,0.041684214,0.4019624,-0.04598802,0.06733411,0.18704557,0.6041647,0.24092112,0.6485938,-0.091903,0.5110985,-0.12744972,-0.19128415,0.2587215,-0.23252736,0.16642563,0.025033249,0.22369565,0.40729067,-0.4040314,-0.7683183,-0.72354424,-0.49766928,1.2201343,-0.28645283,-0.47777265,0.26512125,-0.03360077,-0.2921818,-0.15294503,0.4761794,-0.12818179,0.032389496,-0.8101585,0.12854365,-0.15634057,0.23659772,0.010394246,-0.05077918,-0.45228055,0.6026135,-0.08275644,0.4728526,0.36344248,0.24290203,-0.35552424,-0.40921754,0.059391774,1.0548062,0.29142857,0.066954546,-0.0886693,-0.09180447,-0.2974739,0.13484243,0.0421604,0.52091223,0.6626688,0.16914023,0.10848415,0.26596692,0.0036578511,0.0981124,-0.17756788,-0.26624122,-0.101183325,-0.16879739,0.52205426,0.38140118,-0.17888477,0.6107557,-0.19379602,0.34431335,-0.2594533,-0.373224,0.43614656,0.95497954,-0.14012685,-0.19693913,0.6016188,0.42588013,-0.36094794,0.13630083,-0.566726,-0.285072,0.606617,-0.31510755,-0.56934017,0.26097175,-0.22648318,0.103914455,-1.0499352,0.3450386,-0.2578728,-0.32380205,-0.41581774,-0.018563144,-3.4852998,0.15118222,-0.28466046,-0.23647237,-0.14386629,-0.18667778,0.14207724,-0.6167469,-0.48867494,0.12407842,0.09837267,0.6978562,-0.023498526,0.25707084,-0.17845058,-0.07459076,-0.033718467,0.13348,0.04005212,0.15759078,0.032753564,-0.37901258,0.03936914,0.056947265,-0.43499333,0.16292745,-0.5753412,-0.5627905,-0.025308149,-0.47153598,-0.42823407,0.6893629,-0.27917883,-0.034918744,-0.07112608,0.07629823,-0.115487225,0.39759943,0.10829401,0.18890049,-0.05838959,-0.00089367654,0.05998045,-0.2961961,0.5014196,0.04546303,0.15693313,0.2827714,-0.22257556,0.18339302,0.37453717,0.37590078,0.12668554,0.7362137,0.39939877,-0.10022698,0.22565563,-0.35660747,-0.338646,-0.5724627,-0.29082385,0.12868336,-0.3827287,-0.52364594,-0.17505465,-0.2737131,-0.643814,0.62720406,-0.09146927,0.22753176,-0.076119445,0.54255,0.58159757,-0.12914366,0.0023831176,0.10808746,-0.15290396,-0.5153747,-0.19670725,-0.586173,-0.41274217,-0.049877226,0.6841367,-0.18833661,0.08511254,-0.09727533,-0.121579185,0.015766809,-0.051665742,0.005400362,0.2935828,0.49554652,-0.16981268,-0.67363095,0.663797,-0.19611512,-0.23271634,-0.5835484,0.066078134,0.77389556,-0.61890674,0.45976698,0.3984577,-0.09124798,-0.34446284,-0.32325906,-0.1750442,0.049635295,-0.2624761,0.2088298,0.17299189,-0.6058013,0.3504591,0.38507175,-0.008663891,-0.62704444,0.62664455,0.08824936,-0.47182435,0.025652183,0.3784272,0.09892397,-0.03747105,-0.16008314,0.13877891,-0.40723655,0.23721504,0.1278988,-0.061297618,0.51009136,-0.1103134,-0.07880974,-0.71094584,0.14317958,-0.42792732,-0.266925,0.38271824,0.1481499,0.13206293,0.5107929,-0.17346312,0.46217135,-0.40363076,0.020096745,-0.04328901,-0.06891444,0.22842595,0.3614406,0.30829796,-0.4549951,0.49738884,-0.07219652,-0.071960635,0.03926774,0.22311082,0.4657504,0.10564469,0.29000074,-0.096917994,-0.39737755,0.42006323,0.7310046,0.18815616,0.43130192,0.089850344,-0.00035597727,0.28340447,0.048297547,0.20738338,0.04016324,-0.6007895,-0.087825164,-0.12143298,0.0798949,0.39627558,0.06696303,0.26318526,-0.22242397,-0.41641915,0.026576761,0.28032023,0.2219016,-0.7789945,0.39064604,0.029016908,0.7763647,0.3006583,-0.0684176,0.05351108,0.636314,-0.16926514,0.19543648,0.22463912,-0.07321183,-0.4923248,0.5504964,-0.57767093,0.23753263,-0.039286926,-0.062201563,-0.089119785,-0.06621916,0.27180088,0.8426851,-0.13594855,0.05920119,-0.019278454,-0.2977947,0.21523465,-0.38212088,0.17079021,-0.5401437,-0.23138006,0.46733114,0.5073036,0.25469226,-0.081095345,0.05625336,0.07256103,-0.15787941,0.17652176,0.18224365,0.20632058,0.0074902615,-0.7321607,-0.16766739,0.5903978,0.2296372,0.18434732,-0.14965667,-0.08440506,0.3627626,-0.09897493,-0.031188993,-0.09977746,-0.58036506,0.0139332265,-0.41954768,-0.5005726,0.22873405,-0.25712037,0.26164916,0.13814856,-0.12416157,-0.20284067,0.26576394,0.4764779,0.63988185,-0.030171476,-0.18881734,-0.58076674,0.096636385,0.09379016,-0.09181265,-0.1444309,-0.2127004,0.13746499,-0.6332477,0.403607,0.0033485019,-0.20520085,0.079357974,-0.17835757,-0.07362814,0.5956626,-0.04265158,0.049199224,-0.0531235,-0.22512205,-0.19321857,-0.104481466,-0.17571017,0.21590108,0.26311573,0.001927126,-0.120165125,-0.18054944,-0.52517766,0.28429917,0.1277314,0.614505,0.4018391,0.1492669,-0.22176728,-0.23753908,0.15031086,0.44889596,-0.07964994,-0.16625316,-0.23132467,-0.5379046,-0.16820295,0.09939922,-0.06909895,0.2637704,0.085141934,-0.2140953,0.8066892,-0.15709947,1.0527837,0.08760489,-0.38951162,-0.100559935,0.4901641,-0.1016933,-0.17990834,-0.31354406,1.0865958,0.62370557,0.06539202,-0.0690715,-0.1941414,-0.081979275,0.08408335,-0.17608343,-0.1863529,-0.003544702,-0.47323975,-0.46452028,0.16131124,0.27315018,0.078563415,0.020111639,0.05754502,0.26842245,-0.053232074,0.4885596,-0.53753793,-0.18084182,0.15939993,0.28176516,0.004477868,0.24939528,-0.36490074,0.46983954,-0.53020626,0.1338858,-0.4434482,0.22746779,-0.052186176,-0.13471302,0.23822229,-0.058889948,0.44799095,-0.2826892,-0.42698172,-0.19976936,0.36362046,0.14271076,0.07874204,0.49137777,-0.11665922,0.1886947,0.04223652,0.6122528,1.1435176,-0.13617009,0.13484593,0.39540055,-0.4076508,-0.61401975,0.37912816,-0.31907687,0.21402901,-0.025451733,-0.056288794,-0.33083922,0.26122794,0.2680482,0.040296152,-0.1551113,-0.48461148,-0.25818124,0.48051903,-0.31561133,-0.22105831,-0.30871958,0.15255354,0.49225852,-0.24709767,-0.15253255,-0.08021276,0.28217837,-0.2290926,-0.5209014,-0.08431739,-0.420787,0.35986328,0.13737614,-0.34414476,-0.07332793,0.06643895,-0.3615216,0.1542258,0.02504147,-0.4021289,0.034994338,-0.11180059,-0.011522627,0.87610316,-0.082564645,-0.22095563,-0.6137469,-0.39790884,-0.82669044,-0.34579313,0.49758947,0.04355932,0.020443128,-0.46347564,0.07911576,-0.016080664,-0.16118789,-0.17915824,-0.32089895,0.39625633,0.11364957,0.6296884,-0.10121342,-0.8579252,0.0590637,0.05918522,-0.2360575,-0.6654958,0.5649496,0.028902348,0.69480765,0.024442334,0.06616633,0.43120924,-0.4515887,-0.16680536,-0.21487048,-0.28817672,-0.86785513,0.036874894 +25,0.39756665,0.27731147,-0.78607666,-0.08212136,-0.47397792,0.0643737,-0.38434187,0.015433874,0.40972868,-0.35787094,-0.10491148,0.0065601934,-0.12078697,0.27522588,-0.12174919,-1.0797276,0.093802996,0.14281395,-0.5328403,0.38705003,-0.5165094,0.5372785,0.17836574,0.66937137,-0.031363327,0.41609526,0.36667764,0.08685541,-0.19070475,-0.7058481,-0.1272395,-0.034163754,-0.57891,0.27625903,-0.08235865,-0.45687425,0.060658474,-0.51077294,-0.25281948,-0.610625,0.45349038,-0.7087534,0.5884344,0.063107684,-0.2613454,-0.42770597,0.5557721,0.22943984,0.06989898,-0.038619194,0.41655982,-0.7134083,0.05868584,-0.60086304,-0.5784041,-0.7303596,-0.4888862,0.038439017,-0.5879333,-0.38121355,-0.23515317,0.32024425,-0.22212774,-0.09334389,-0.18315399,0.60662025,-0.325762,0.18242046,0.15393801,-0.61323714,-0.07184017,-0.6293938,-0.2493234,0.034586623,0.33540595,0.110724114,-0.28869092,0.21635702,0.017105414,0.38879156,-0.032956976,-0.44437426,-0.49967474,-0.0990732,0.028166719,0.58779544,-0.34503564,0.09192559,-0.28306735,-0.026212467,0.7337361,0.3003205,0.09226999,-0.18913095,0.10278647,-0.24667501,0.04396734,0.79019696,0.43239552,-0.38328907,-0.045283,0.20253496,0.17014685,0.2945252,-0.29356372,-0.122157656,-0.1786784,-0.48543262,-0.11498531,0.39366037,-0.05458888,0.29339096,-0.0975239,0.09967011,0.82466006,-0.2731552,-0.13650991,0.22171512,0.11248937,0.51308906,-0.024505382,-0.051088855,0.58198905,-0.41570267,-0.17880245,-0.35261896,0.7376846,-0.11370405,-0.6218419,0.18361354,-0.6526778,0.07748392,0.050828025,0.6858849,0.510802,0.51113725,0.14851822,0.8162026,-0.28942347,0.24289761,0.23301476,0.015516692,-0.10049742,-0.1491425,0.09785321,-0.44642618,-0.0929553,-0.0032783416,0.03435472,0.48951107,0.4909704,-0.5004966,-0.30814442,0.19186811,1.086699,-0.18079121,-0.14467455,0.78197604,1.4016739,1.0015036,-0.23563512,0.94348377,-0.039416656,-0.19039512,-0.7035248,-0.083616085,-0.29680017,0.1541267,0.2131444,-0.35417998,0.57953084,-0.14293998,0.08951315,0.16420904,-0.12333766,-0.2647109,0.14428028,0.27268493,0.06745389,0.026619239,-0.724828,-0.55767035,0.27738452,-0.14730878,0.45871434,0.6350984,-0.4727068,0.74176455,-0.3262193,0.66726047,-0.024223315,0.34703028,0.17565928,0.41966882,0.15329748,-0.10158054,0.046712533,0.21560329,-0.18370311,0.19654962,-0.3783007,0.016664615,-0.5372001,-0.29281956,-0.303668,-0.35459366,-0.36449188,0.07027421,-0.15487462,-0.41713634,0.029529534,-0.2204793,0.2141408,-2.2448685,-0.011656238,-0.12099758,0.49479347,-0.14108217,-0.42059472,-0.22561598,-0.32806224,0.33869383,0.22167632,0.7559386,-0.35912845,0.005596724,0.33401075,-0.56198967,-0.35493046,-0.5590951,0.27712318,0.111937575,0.6837106,-0.3149954,-0.28657576,-0.064982295,0.1624995,0.71484774,0.30254883,-0.03106561,0.3056937,0.6166683,-0.30668414,0.34471425,0.08949745,0.61427635,-0.48515898,-0.44540945,0.38589042,-0.74362206,0.53807443,0.009062956,0.05560206,0.4232045,-0.3042888,-0.9321654,-0.22733273,-0.036000032,1.1570857,-0.2330842,-0.87615466,0.0031322737,0.28814858,-0.35967016,-0.012868378,0.6794202,-0.12486626,0.3557572,-0.4184338,-0.009169953,-0.39751616,0.42496905,-0.08158979,0.07450088,-0.27227658,0.7215774,-0.17518504,0.15739149,0.23875353,0.25117412,-0.79649425,-0.44290555,0.18158752,1.203698,0.37336925,0.14568734,-0.16308793,-0.076185465,-0.09179035,-0.461039,0.16435513,0.8094418,0.7177091,-0.14251763,-0.033096127,0.6023586,-0.2668153,0.052841112,0.06479587,-0.51150954,-0.25829205,0.11870527,0.9582096,0.7143102,0.053023834,0.5992052,0.17904358,0.43532255,-0.31317538,-0.3817607,0.3327773,0.52486134,-0.24980743,-0.44595745,0.71920025,0.34429723,-0.6750702,0.5781633,-0.6766704,-0.733487,0.5768238,0.039311565,-0.6406052,-0.0915551,-0.34165165,0.11137177,-0.6051771,0.6636174,-0.09526406,-0.85771745,-0.4978801,-0.2905622,-1.4484204,0.3172012,-0.42678395,0.037789274,-0.23132092,-0.092072755,-0.0065180194,-0.49038887,-0.59703594,-0.04086657,0.11841917,0.7087403,-0.39549005,0.11292675,-0.22962104,-0.45281267,0.05784158,0.63279927,0.40105045,0.35111856,-0.10618479,-0.0467826,0.2982794,-0.13532332,-0.32862788,-0.24798353,-0.6282324,-0.732758,-0.06477001,-0.7563925,-0.11919979,0.9783589,-0.79645854,0.084720425,-0.4088713,0.30148485,0.17372243,-3.4557448e-05,0.3401991,0.45254612,0.2903267,0.03649278,-0.05665018,-0.24931727,0.28740188,0.18419822,0.63855445,0.46366602,0.23249102,0.21259615,0.27968037,0.8180987,0.3175491,0.8208535,-0.18664037,-0.1076143,0.11109568,-0.44796085,-0.5628538,-0.6458271,-0.27099946,0.2983259,-0.4550299,-0.49910274,-0.14588925,-0.5003481,-0.89694893,0.75536245,0.24821281,0.23177259,-0.2954701,0.623928,0.36509612,-0.3375929,-0.0918506,-0.017449796,-0.07213302,-0.40612432,-0.24992882,-0.74762726,-0.44290555,0.044890437,0.6884725,-0.13196252,0.013792263,0.49259287,-0.22049874,0.013438514,0.07775593,0.07004734,-0.1382726,0.31756642,0.25713432,-0.45333713,0.2994567,-0.43765712,0.15362503,-0.47350132,0.11467976,0.75111634,-0.5817702,0.5323647,0.66892684,0.110993,-0.410307,-0.674462,-0.25061518,0.2606374,-0.055743296,0.3809172,0.25881276,-0.41754162,0.41816428,-0.022243394,-0.26672694,-0.5662255,0.38016546,0.0053087687,-0.3700253,0.18273842,0.64978844,-0.012740678,-0.15119869,-0.15742654,0.3400499,-0.39489576,0.21151347,0.10332769,-0.095778,0.35944,-0.1903302,-0.6499897,-0.82549274,0.28387964,-0.6671157,-0.43325287,0.41787633,0.08112207,0.11278471,0.34369087,0.20858015,0.44340694,-0.16767073,0.18096942,-0.38980275,-0.31790844,0.69838035,0.3575604,0.7406788,-0.7448201,0.6259326,0.1637319,-0.13503094,0.40053135,-0.0489311,0.56742024,-0.10378325,0.3631036,0.05032232,-0.09370711,-0.22380723,0.31648198,0.2899215,0.31315288,0.18996535,-0.019055042,0.25280118,-0.0111497305,0.08944878,-0.08902796,-0.5842525,-0.043967623,0.09222497,-0.108671404,0.38224703,0.08347164,0.35080406,-0.12874252,-0.033200547,0.39465165,0.17922606,-0.32395124,-1.064888,0.633578,0.3080874,0.63979995,0.033258326,0.2791771,-0.30287138,0.8214821,-0.18942456,-0.2036143,0.39121518,0.16744155,-0.40563756,0.5895618,-0.46164003,0.7726411,-0.30208862,-0.039944906,0.016247451,-0.055062827,0.35159948,1.0049623,-0.20982003,0.091427155,-0.1582021,-0.36693573,-0.22431943,-0.38528836,0.4298179,-0.42190024,-0.4318701,0.8615558,0.11017993,0.29456663,-0.27515405,0.12627941,0.13823026,-0.10367153,0.20847511,-0.06619109,-0.005047911,0.08421431,-0.5677087,-0.10807119,0.4273092,-0.31117058,-0.10378425,0.19120935,0.18309474,0.21228693,0.096841685,-0.10256008,-0.21316713,-0.4915584,0.14381617,-0.5034292,-0.7188088,0.0069800583,-0.4079429,0.120467715,0.16990809,0.04726659,-0.24074653,0.5062134,0.5122059,0.6222694,0.14250077,-0.25270307,-0.41115883,0.119533285,0.10361171,-0.2340748,0.1602919,-0.32592598,0.4935557,-0.5911615,0.4948084,-0.609743,-0.45634657,-0.5397597,-0.38711923,-0.05935702,0.34825653,-0.030107941,-0.10453165,0.3205507,-0.38996607,-0.13847998,-0.11067556,-0.46482384,0.23631126,-0.11726883,-0.4522564,-0.37368283,-0.17955539,-0.48407376,0.10404926,-0.13869946,0.38551474,0.378173,0.20574069,-0.3052882,0.2360379,-0.12801073,0.4966257,0.07239012,0.21523608,-0.29251805,-0.37031898,-0.47654215,1.0137758,-0.054750342,0.12528415,0.21384008,-0.20631537,1.0269027,-0.15406847,1.3147321,0.0059945583,-0.34274173,-0.08033866,0.64921385,-0.08047338,0.0015672842,-0.35126567,1.5639795,0.380495,-0.16312689,0.004263419,-0.55758953,-0.062150173,0.24731046,-0.42207587,-0.41797632,-0.228341,-0.3690035,-0.052292302,0.23316973,0.18752111,0.15838706,-0.2196939,0.13231237,0.29260984,0.31249702,0.14665967,-0.5763614,-0.29295403,0.50368565,0.20459527,-0.19232069,0.15082465,-0.2320367,0.36967564,-0.78055525,0.39801747,-0.7315871,0.23157723,0.015773641,-0.6350033,0.22277771,0.10541018,0.37625155,-0.5364892,-0.08452935,-0.25083074,0.20686984,0.503126,0.15714547,0.6016743,-0.24359639,-0.07815831,-0.11540866,0.5764604,1.5112481,-0.059823718,-0.13779579,0.0574533,-0.3094112,-0.80426353,0.13243651,-0.63433266,-0.32694215,-0.1762482,-0.5236935,-0.2600395,0.19689684,0.013012052,-0.11553572,0.052801184,-0.60770226,-0.05901226,0.10391839,-0.24400115,-0.30612236,-0.2803964,0.36175746,0.73156345,0.028206421,-0.36260697,0.04238091,0.51170015,-0.17490667,-0.6276795,0.3568836,-0.3337813,0.20235175,-0.18218537,-0.38572183,-0.051696308,0.040548906,-0.2694809,0.2839897,0.3892533,-0.26974952,-0.035936147,0.028120093,0.2391351,0.44965082,0.00851904,0.3620493,-0.41055727,-0.6069392,-0.9410538,-0.37138268,-0.3401929,0.08157296,-0.093507186,-0.49440315,-0.38699234,-0.5475285,-0.16751832,0.061952896,-0.5250487,0.16849233,0.15430555,0.59620106,-0.65958595,-1.0770626,0.23968904,0.2563463,-0.36252198,-0.44150767,0.23728459,-0.24978751,0.7060531,0.119367786,-0.16867574,0.24400398,-0.65125585,0.33923706,-0.28081048,-0.2890399,-0.86653507,0.24538289 +26,0.57579285,0.39263284,-0.6241644,-0.46179184,-0.50873446,-0.04027979,-0.27067104,0.15748627,0.3711079,-0.37041405,0.09770458,-0.13215324,-0.07449428,0.31293836,-0.24493249,-1.0964175,0.20656958,0.16650735,-0.5325617,0.07808598,-0.44073492,0.51349366,0.10460528,0.56313515,-0.19041902,0.47157633,0.4140873,-0.20561759,0.054047104,-0.42206472,-0.0203025,0.012871299,-0.7337308,0.3874849,0.059697773,-0.23945257,0.06307718,-0.40550447,-0.078235306,-0.48788008,0.2528404,-0.7633672,0.65399265,0.08392179,-0.32752603,-0.5223586,0.35105467,0.1800056,0.07044698,-0.029108904,0.4670955,-0.62778777,-0.11934572,-0.18306941,-0.17307538,-0.8106103,-0.3657483,-0.37014544,-0.62300134,-0.3713863,-0.5383497,0.2756843,-0.47274384,-0.20913237,-0.14658526,0.4141433,-0.5079924,-0.057169292,0.25536057,-0.6738021,0.25628394,-0.40825498,-0.1277581,-0.09153928,0.3330209,-0.081256405,-0.27198157,0.36227125,0.36082304,0.35990313,0.11222887,-0.29013455,-0.14215122,-0.31954664,0.29042217,0.7024331,-0.37025234,-0.21182685,-0.29467005,-0.09448079,0.24462551,0.1221489,0.16995281,-0.4275807,0.24487288,0.10588297,-0.00299916,0.8500166,0.51514304,-0.30876514,0.05845029,0.4159586,0.12911293,0.19837734,-0.14224154,0.39915144,-0.13193876,-0.46229732,-0.25762984,0.053592525,0.023218526,0.40025288,-0.08087497,0.15890795,1.1289351,-0.31019974,-0.05049205,0.12686388,-0.10517331,0.365934,-0.13194078,-0.05784583,0.44722047,-0.58681786,0.05775408,-0.2946383,0.8787167,-0.0139818,-0.79038674,0.31308544,-0.49993473,0.011580007,-0.15072621,0.8896024,0.71403706,0.50304806,0.11746921,1.1801171,-0.5599861,0.23706873,0.3771642,-0.35259682,0.11579479,-0.051433418,0.4673571,-0.42910558,-0.014880139,0.08455389,0.18325353,0.28563812,0.35260856,-0.5443529,-0.31205192,0.1630952,0.91037726,-0.40715513,-0.2120393,0.95773125,1.2484515,0.7533131,0.006349004,0.97315246,0.14602868,-0.26953682,-0.22988752,0.10098382,-0.38412887,0.24759786,0.30702493,0.18693548,0.10601635,0.020852739,0.16641444,0.34499547,-0.34188306,-0.32921445,0.047759183,0.45801437,-0.017956667,-0.40608862,-0.66828114,0.029457608,0.39186805,-0.027080558,0.121831566,0.39216074,-0.3799101,0.40397966,-0.21558481,0.7432883,0.12902345,0.18075234,-0.060736783,0.60339564,0.116050616,-0.3521954,0.14367123,0.08811601,0.11538262,0.028119395,-0.44998196,0.075528204,-0.35344198,-0.5793956,-0.28793138,-0.4817159,-0.20420162,-0.29752403,-0.023368742,-0.16665046,0.093294196,-0.24811918,0.33693266,-2.1673138,-0.18451054,-0.2634863,0.51774323,-0.13315378,-0.21609075,-0.15847342,-0.4125922,0.42652068,0.22546095,0.6616042,-0.405197,0.51319915,0.54502136,-0.56819165,-0.25107855,-0.5861108,0.17378299,-0.017195616,0.43421203,-0.11263561,-0.3727768,-0.05965908,0.33167943,0.8455838,0.45623302,0.0935765,-0.03678753,0.6244301,-0.2075718,0.526811,0.04501239,0.73993236,-0.16225305,-0.22919999,0.17320259,-0.6057161,0.17012517,-0.41443357,0.08477494,0.3479053,-0.330672,-1.2060131,-0.5252574,-0.4425198,1.0448856,-0.44391173,-0.7367007,0.39068332,0.327287,-0.36208034,0.30834442,0.62674016,-0.15779927,0.3596586,-0.53860545,0.17960078,-0.44844946,0.08562132,-0.100354336,0.26252067,-0.5697678,0.78476185,-0.3801741,0.47172785,0.08294442,0.33595717,-0.5771211,-0.26897117,0.18132883,0.9681718,0.49777567,-0.05682183,-0.067549795,-0.050765462,-0.24347371,-0.5642178,0.14879285,1.0582422,0.9355797,-0.03171201,0.03631947,0.35230854,-0.2650443,0.103769414,-0.01164589,-0.63564396,-0.090079695,-0.14423212,0.8399482,0.53826076,-0.03350304,0.55456144,0.08450356,0.12740067,-0.26988202,-0.63000596,0.4056246,0.42551315,-0.18489467,-0.2543242,0.81531626,0.18851279,-0.6178006,0.6282522,-0.66667783,-0.5570177,0.5497945,0.041378524,-0.67505634,-0.15766723,-0.30954015,0.076899946,-0.69133556,0.46128824,-0.14911398,-1.3466865,-0.022820227,-0.32792777,-3.0787992,0.19031426,-0.26892853,-0.0022674368,-0.23991673,-0.18047036,0.2428466,-0.41265473,-0.6692032,0.038860198,-0.035119906,0.7619801,-0.19607629,0.1434018,-0.18475357,-0.279489,-0.05313997,0.5777078,0.012158599,0.2466401,0.056837585,-0.16461343,0.27100176,-0.1789036,-0.5830886,-0.01016687,-0.5209252,-0.85214996,0.07950504,-0.7055326,-0.18467799,1.0181078,-0.68639827,0.06443389,-0.27123967,0.17165099,-0.16022396,0.22899383,0.15144597,0.49890667,0.17788874,0.039720163,-0.24170811,-0.06002128,0.3122683,0.11610893,0.8627029,0.1781525,-0.12135865,0.11111244,0.68666625,0.5566951,0.20679706,1.0986606,-0.12233644,0.049862046,0.13706793,-0.28018463,-0.36619616,-0.68073666,-0.562975,-0.013317453,-0.66778183,-0.4816209,-0.0799602,-0.40300357,-0.9082507,0.3780894,0.29079577,0.39782676,-0.325205,0.11387987,0.20280671,-0.36377886,-0.1837417,-0.036281984,-0.059247177,-0.6223468,-0.07638862,-0.83368725,-0.55590713,-0.015006672,0.79421735,-0.2586211,-0.060942307,0.040797856,-0.25665373,0.17508917,0.068811856,0.23547132,-0.102068216,0.3806692,-0.071736336,-0.83320165,0.30850717,-0.6526064,0.26157096,-0.9144388,0.07278742,0.78582674,-0.54354936,0.66623414,0.5778442,0.28255188,-0.3115414,-0.7233772,-0.27164456,0.14662191,-0.13255882,0.5820904,0.052228026,-0.60219306,0.46955532,0.016144838,-0.17290431,-0.49285418,0.70139277,-0.03891565,-0.04679576,0.3472978,0.5296482,0.13396332,-0.23850553,-0.38179955,0.35931933,-0.648632,0.57722926,0.24142939,-0.0078007644,1.0404968,-0.1588028,-0.5562652,-0.8205823,-0.40438235,-0.8001878,-0.31051928,-0.040398,-0.2346006,-0.040400464,0.42736304,0.3293172,0.39266777,-0.4136237,-0.053284306,-0.3233012,-0.49852085,0.5257313,0.558529,0.61373925,-0.70468193,0.7500071,0.36942276,-0.22807969,0.06390828,0.06270815,0.73328453,0.013833786,0.5015759,0.011222088,0.0074777505,-0.2328963,0.7026419,0.21340401,0.2643752,0.19095014,-0.17007726,0.43167603,0.08952211,0.31397098,0.18671864,-0.6990216,0.0049856603,-0.31557202,-0.05203134,0.5267073,0.41317046,0.40710604,-0.05217061,-0.19259869,0.34588507,0.16243425,-0.2142933,-1.4391541,0.85947156,0.48603976,0.81360704,0.28216106,0.01614184,-0.048271805,0.62145954,0.0042843157,0.08061377,-0.038152907,-0.08102888,-0.28058988,0.5869276,-0.66049784,0.48229223,-0.16200973,0.102007926,0.27498358,0.06618112,0.4541502,1.1898907,-0.09636601,0.11747476,-0.09353235,-0.24952242,0.03722406,-0.24250595,0.18623847,-0.36849737,-0.3144561,0.92870957,0.36320552,0.12703565,-0.12776217,0.049162567,0.1330964,-0.19066885,0.027026024,-0.094106376,-0.32173163,-0.033667445,-0.71255374,-0.3565061,0.5749077,-0.089617014,-0.025057957,0.15820463,-0.16171384,0.42331254,0.12611914,-0.09063937,0.03295754,-0.50869846,-0.113888025,-0.43302807,-0.49250582,-0.0035169125,-0.37478665,0.27029455,0.20673858,0.04212807,-0.007926173,0.3690656,0.3925658,0.5604155,0.27822304,-0.51958686,-0.56003153,-0.23444642,0.26732767,-0.43301338,-0.03289014,-0.46116626,0.230948,-0.6111107,0.5716293,-0.48072544,-0.3349873,0.07334781,-0.28415427,-0.017799335,0.32608417,-0.23838824,-0.10703871,0.28754702,-0.33006388,-0.12605771,0.0808423,-0.49659517,0.11277975,-0.17501378,-0.3547348,-0.14874251,-0.13367067,-0.349346,-0.07258526,-0.050699573,0.11915472,0.36062938,0.17108127,-0.24942255,0.17930113,0.098569624,0.61184394,0.0060473285,0.22950009,0.12889722,-0.4175825,-0.525475,0.59361106,-0.11933812,0.17711255,0.24293727,-0.153138,0.7088328,0.16325861,1.2573098,0.05045565,-0.34423432,0.037948117,0.58303803,-0.093516946,0.05429436,-0.34397012,1.3887826,0.61298996,-0.03539993,0.016826043,-0.83400536,-0.18866628,0.4016071,-0.35417107,-0.5199834,-0.21622702,-0.9629608,-0.101458974,0.1927857,0.13292319,0.13975558,0.046602126,0.029306611,0.32319042,0.31202137,0.19723265,-1.0318229,-0.13818748,0.15637872,0.45569822,-0.05692431,0.067015395,-0.15161173,0.4237901,-0.88394535,0.36060527,-0.54090106,0.061235562,-0.30538908,-0.43283147,0.08590684,0.015182164,0.44498095,-0.09518424,-0.1380284,-0.07687959,0.4630511,0.42362595,0.13153413,0.95591384,-0.17129117,-0.16281933,-0.04899483,0.47325504,1.422895,0.16168065,0.17258963,0.5063843,-0.3310565,-0.6992732,0.1848726,-0.61804557,-0.25669336,-0.15231746,-0.54058343,-0.09186987,0.1822592,-0.12688719,-0.1981079,0.08832199,-0.36893016,-0.30109954,0.208439,-0.28582305,-0.35117352,-0.16190985,0.29064375,0.83133507,-0.18102472,-0.17269225,0.02990136,0.3839536,-0.37374353,-0.94452393,0.20236324,-0.13440578,0.48394755,-0.23916271,-0.57139754,-0.07408657,0.015041782,-0.47926924,0.42844453,0.32091957,-0.22396408,0.21575348,-0.06263876,0.038791075,0.6265319,0.20929578,0.29419383,-0.6862242,-0.5268376,-0.93063015,-0.24649042,-0.41482237,0.15173395,-0.20242566,-0.42799604,-0.25232068,-0.4286128,0.28900862,0.005236202,-0.8413091,0.08809164,0.025491923,0.7686743,-0.2576883,-1.323286,0.09993516,0.33284405,-0.068818465,-0.49363428,0.5271208,-0.15285106,0.86408544,0.19372559,-0.058212537,0.060859993,-0.50933933,0.37486643,-0.21177876,-0.1931147,-0.71045285,0.12275168 +27,0.5533228,-0.40894133,-0.5923264,-0.24056841,-0.21911699,0.03586492,-0.25075474,0.6646557,0.19635631,-0.4853088,-0.1797122,0.05646748,-0.024080876,0.35920265,0.0154700875,-0.56281525,-0.0037446665,0.35498646,-0.6640653,0.5251803,-0.39369744,0.16040958,-0.07940073,0.64388144,0.29449093,0.25272897,-0.11867808,0.029960118,-0.15168874,-0.081575885,0.013847397,0.33798987,-0.37735957,0.28115824,-0.18558449,-0.41550696,-0.29132405,-0.60439557,-0.41776758,-0.7423645,0.17995985,-0.7717961,0.6139508,-0.10497458,-0.4089771,0.013359157,0.05777602,0.48066708,-0.31456202,-0.032130823,0.15176545,-0.018159198,-0.30408147,-0.10615325,-0.09527263,-0.17449497,-0.59290755,-0.05450757,-0.33763042,0.079725794,-0.07877839,0.27922666,-0.19996366,0.106882825,-0.112706356,0.5974721,-0.39883798,-0.06685254,0.16431192,-0.10812301,0.36091608,-0.4748398,-0.1197976,-0.16804123,0.36910912,-0.15584596,-0.4308252,0.19357787,0.16494806,0.49115038,-0.062211607,-0.078305155,-0.35180503,-0.012312779,0.043324653,0.5059213,0.03211805,-0.5144403,-0.22673443,-0.036389105,0.18918014,0.19686519,0.1580554,-0.22641745,-0.1825501,-0.18967155,-0.09701499,0.36719117,0.4405003,-0.18806976,-0.08624126,0.31359354,0.63794875,0.12782852,-0.16346754,0.035352595,0.09333288,-0.59079003,-0.19770709,-0.03255826,-0.21213466,0.40287665,-0.13191846,0.33870074,0.42177275,0.034841035,-0.19432637,0.2549281,0.11021193,-0.025831103,-0.33120662,-0.39536947,0.2959553,-0.40380806,0.16472432,-0.24354944,0.4836577,0.23767152,-0.7094959,0.3092791,-0.46402022,0.063679665,-0.084709086,0.40355074,0.79966205,0.46092382,0.13849793,0.7664732,-0.21490526,0.10604984,-0.0474538,-0.09482109,-0.10308986,-0.21875867,0.063896134,-0.6209828,0.05540591,-0.13315384,-0.2321058,0.15644334,0.4615,-0.56423676,-0.16233467,0.21513884,0.802407,-0.29399613,-0.037470516,1.0232155,1.0152301,0.9891274,0.039525032,1.1542877,0.2438676,-0.31755683,0.1349394,-0.31560275,-0.71623933,0.37505376,0.36293015,0.18742102,0.3031262,-0.043907147,-0.06806204,0.55764043,-0.40755108,0.026438741,-0.07264574,0.033831157,-0.04484689,-0.029802024,-0.66194606,-0.34024078,-0.15731524,0.06506029,0.16122526,0.14731985,-0.27652663,0.63976395,-0.067751735,1.6409429,-0.080536924,0.06511155,-0.01008442,0.35098445,0.20602721,-0.3773422,-0.4056784,0.21226525,0.3953495,-0.048078492,-0.5941276,0.13735889,-0.17324565,-0.2611733,-0.29933375,-0.34468383,-0.029454857,-0.20981766,-0.38289055,-0.16073059,-0.03941711,-0.4001118,0.39004612,-2.5923085,-0.3540621,-0.1622928,0.3220165,-0.30965102,-0.4443288,-0.10243152,-0.4082724,0.34730127,0.2577876,0.63049877,-0.5337183,0.5158081,0.3937551,-0.62382823,0.059358083,-0.6425798,-0.2729124,0.09415608,0.16494487,0.03498544,-0.03081683,-0.032644793,0.12919283,0.4184289,-0.106130615,0.0972011,0.40712982,0.20764907,0.067743436,0.45724642,-0.0679077,0.6712373,-0.54045856,-0.23678233,0.3028943,-0.4326315,0.14391613,-0.13680974,0.1707235,0.6307351,-0.6543173,-0.922586,-0.8580155,-0.17311181,1.1235404,-0.18527542,-0.25605184,0.18189071,-0.70921665,-0.36880848,0.10412781,0.52291876,-0.12291944,-0.06243249,-0.8664941,-0.24045603,-0.02661943,0.32981807,-0.16951202,-0.14546323,-0.60574985,0.48190138,-0.056398228,0.5251836,0.32496855,0.20338401,-0.19111562,-0.3893729,0.03318236,0.9096493,0.3525998,0.18681644,-0.27983466,-0.1637875,-0.56831723,0.17879055,0.028083857,0.6017084,0.5866961,0.0006987269,0.12923637,0.2816203,0.033279598,0.15100034,-0.078547746,-0.22221228,-0.29859167,0.22249971,0.66115123,0.5629319,-0.052661553,0.57383025,-0.11171791,0.395371,-0.17333843,-0.46503463,0.44077396,0.9178543,-0.21216896,-0.5161308,0.75244606,0.43288502,-0.22621424,0.48428038,-0.54546916,-0.3157232,0.20688674,-0.052576296,-0.32888317,0.20236538,-0.31055164,0.3928246,-1.0946852,0.12810636,-0.42902324,-0.82491106,-0.65518284,-0.08602698,-2.9035916,0.24532501,0.08362438,-0.28109238,0.05595678,-0.2615907,0.12992369,-0.5372528,-0.79530555,0.27828372,-0.02309802,0.8990322,-0.14929543,-0.046634518,-0.14077197,-0.36222488,-0.31331545,0.18329129,0.23171535,0.36068565,0.097285144,-0.5482411,-0.246053,-0.18371758,-0.36508545,0.037228093,-0.8474544,-0.45454347,-0.10675208,-0.6433029,-0.12775192,0.6123842,-0.10741147,0.047616348,-0.17671707,0.088063434,-0.019812485,0.27404374,-0.071741804,0.17213152,0.26177922,-0.25241315,0.047048286,-0.124729104,0.13615258,0.09822833,0.17866285,0.113461405,-0.167322,0.40704444,0.6165475,0.92960835,-0.18353814,0.891519,0.5336611,-0.057765245,0.22344151,-0.28249544,-0.3826884,-0.27281532,-0.015527684,0.06727762,-0.48995447,-0.45307687,0.022648748,-0.4607095,-0.9014797,0.51793665,0.0426329,0.014640973,0.16635387,0.14570402,0.5436087,-0.29111946,-0.032514308,-0.24515864,-0.1030152,-0.43345338,-0.35375756,-0.55469507,-0.46295932,-0.03724242,1.3758155,-0.20850253,0.23416355,0.0703808,-0.43713468,0.04804682,0.38844806,-0.03660563,0.16912542,0.42084795,-0.15675949,-0.57758266,0.29118553,-0.15623893,-0.22230522,-0.508697,0.325228,0.6268399,-0.63355434,0.6809115,0.29267767,-0.06252175,-0.49451664,-0.50628686,-0.16602758,0.038736757,-0.16991061,0.50436634,0.24644886,-0.6657039,0.35976475,0.2723066,-0.14916357,-0.80816674,0.48684612,-0.032724444,-0.13309158,-0.1897494,0.39771155,-0.04188114,-0.012093567,-0.29452717,0.16608694,-0.1532524,0.23380607,0.16951694,-0.0092471745,0.04891344,-0.44197404,0.09283816,-0.76254654,-0.1329282,-0.6819518,-0.18485086,0.40315595,-0.025160488,0.27573332,0.08443405,0.13426705,0.3572461,-0.33526498,-0.010138225,-0.26625317,-0.4875233,0.25398067,0.42913342,0.412765,-0.46703207,0.6260628,0.06937021,-0.12641397,-0.19663168,-0.013705895,0.5365897,-0.1023884,0.58826464,-0.037220575,-0.19846597,0.18162738,0.8124268,0.25954416,0.29930094,0.024457918,-0.05842615,-0.10137923,0.043816563,0.30159342,-0.08031735,-0.45401397,0.14886865,-0.24215081,0.17483383,0.34601718,0.14631364,0.3342145,-0.10874827,-0.29973304,0.04663173,0.09601934,0.032243308,-1.5756085,0.53561795,0.26887706,1.0617633,0.42169836,0.07122162,-0.111059085,0.71287507,-0.18057297,0.155113,0.3374472,-0.17828694,-0.37882283,0.51851255,-0.73585993,0.612198,0.13368732,-0.0004468973,0.04692413,-0.33033815,0.6581922,0.8946762,-0.2258324,0.16029695,0.09615775,-0.22796114,0.11398744,-0.38191715,-0.19228356,-0.72831506,-0.25189322,0.7657635,0.5551511,0.40179527,-0.15019774,-0.05927652,0.29657784,-0.02630989,0.1489048,0.1019357,0.18496092,-0.013995464,-0.6574593,-0.09357795,0.37955564,-0.008018927,0.1682748,0.19192013,-0.11524929,0.18791558,0.008128141,0.058496237,-0.15111855,-0.67088276,-0.14445506,-0.47532716,-0.242654,0.39205888,-0.16412728,0.16986166,0.20591666,0.10819094,-0.21728815,0.61406577,-0.107820675,1.0450792,0.19486094,-0.14926825,-0.18480165,0.3239298,0.23016731,-0.27437666,-0.046580657,-0.435064,-0.018852536,-0.67736685,0.5090757,0.100095116,-0.5021627,0.28987753,0.024714626,0.17334546,0.45693696,-0.20542775,-0.17696404,-0.023733368,-0.042990573,-0.30113915,-0.16992377,-0.23478486,0.32183948,0.27784225,0.08420222,-0.12402714,0.12952633,0.027466664,0.6950026,-0.024954213,0.46801165,0.34254706,0.16278015,-0.2834698,0.014115453,0.2697948,0.61590225,0.0063952003,-0.18921486,-0.230268,-0.2591307,-0.4537675,0.29238892,-0.09279798,0.44603893,0.037229877,-0.04346941,0.6026014,0.07176034,1.1165183,-0.048825502,-0.3967004,0.17058149,0.50331974,-0.07414648,-0.10894971,-0.45057222,0.92956924,0.261023,-0.1498786,-0.1046698,-0.5236136,0.0067596207,0.09435233,-0.16912396,-0.26394537,-0.103939325,-0.5740496,-0.25600857,0.22352117,0.2262081,0.4306249,-0.1390729,0.25217688,0.36293843,-0.07106553,0.08871988,-0.37234586,-0.01933526,0.38336533,0.29287496,-0.034867767,0.07675632,-0.50302595,0.27093703,-0.63191956,0.017631888,-0.15528785,0.17630187,-0.22400977,-0.55053574,0.27735373,0.24180728,0.19669428,-0.3620965,-0.27777058,-0.33837205,0.63629496,0.17333056,0.00572656,0.47498754,-0.28245813,0.05038951,0.22080693,0.39666763,0.70983446,-0.28961673,0.09774454,0.34173286,-0.2597914,-0.48929417,0.35129797,-0.40198877,0.42486855,0.22647089,-0.30622515,-0.8467896,0.3227188,0.20288962,0.004842584,0.09658359,-0.5956613,-0.094863445,0.3142696,-0.13190803,-0.12750585,-0.39694065,0.0012950989,0.36285037,-0.095490746,-0.40585804,0.30560958,0.13727556,-0.28416026,-0.40174997,0.023452153,-0.42558828,0.1631341,-0.06568693,-0.4863078,-0.32382208,-0.11874997,-0.50243664,0.22880639,0.14795342,-0.32436174,0.15232986,-0.43711838,-0.23966265,1.1075813,-0.2861578,0.36175394,-0.45556968,-0.46187162,-0.7652482,-0.31957287,0.5086459,0.11007354,-0.16677158,-0.80610406,0.09935718,-0.18976498,-0.20237142,0.050421212,-0.2462759,0.42728445,0.1102239,0.38396665,-0.040040474,-0.88602674,0.2771045,0.115342766,-0.3216659,-0.5607646,0.3976185,0.13386843,0.9385204,0.03948122,0.28785926,0.32325083,-0.56338984,-0.18041772,-0.10321213,0.03643503,-0.5505048,-0.032789204 +28,0.57676417,-0.38611257,-0.3592069,0.030557405,-0.106888264,-0.04410633,-0.15854101,0.60573864,0.30957833,-0.4774587,-0.16524597,-0.30159697,0.05388786,0.4326124,-0.116642326,-0.5700424,-0.102258675,0.16951086,-0.41778556,0.6902926,-0.40745097,0.17858075,-3.846125e-05,0.4603349,0.2104938,0.06916091,0.10823281,0.027588041,-0.3048577,-0.037037995,-0.23853926,0.46240407,-0.5969083,0.13935558,0.008656252,-0.3563271,-0.13456264,-0.57935214,-0.08166329,-0.8110975,0.22354859,-0.7747195,0.52647686,0.061627604,-0.25506914,0.37157518,0.030676115,0.2103415,-0.19869703,-0.0043444904,-0.061877433,-0.07244503,-0.021270644,-0.3010762,-0.28314596,-0.32014903,-0.64500755,0.17362674,-0.4698086,-0.2577066,-0.30100748,0.14631711,-0.4119996,-0.17576037,-0.08362661,0.6295705,-0.42276537,0.13647245,-0.0022028575,0.015907826,0.41459656,-0.66096556,-0.24633004,-0.16191937,0.04213216,-0.3342256,-0.37928504,0.3560317,0.4674987,0.39541635,-0.107437685,-0.10585525,-0.5839662,-0.03832869,0.27056348,0.57360816,-0.20081034,-0.82906973,-0.19411477,-0.015753828,0.21356674,0.36649063,0.40798768,-0.43819663,-0.05526429,0.042634603,-0.25102845,0.6582032,0.495104,-0.27735975,-0.2754143,0.20315656,0.59213185,0.07957292,-0.035262853,-0.12179739,0.06335766,-0.5896967,-0.028632153,0.42942324,-0.349248,0.5455129,-0.18072993,0.17169909,0.48690823,-0.40990055,-0.09963649,0.09068993,0.08380267,-0.069898345,-0.4411496,-0.17561707,0.24231076,-0.3830412,0.096960716,-0.20230569,0.8733725,0.1692582,-0.7716914,0.3656471,-0.47053406,0.14850044,-0.032722905,0.5667521,0.69588524,0.42319953,0.5051925,0.65049684,-0.46677285,-0.0066594915,-0.12662391,-0.40554705,-0.3739278,-0.23100147,-0.005276062,-0.73870295,-0.14940338,-0.13147527,-0.13134629,0.20744243,0.534515,-0.63439393,-0.08488052,0.029947985,0.7718712,-0.28858548,-0.17125979,1.0013361,1.0402924,1.1064882,0.1263803,1.2018589,0.25671625,-0.27939624,0.32762185,-0.5338061,-0.68502444,0.32699755,0.3301354,-0.6913261,0.43528578,-0.051597986,-0.076949,0.22958253,-0.40985343,-0.014990646,-0.14482512,0.1790625,0.24865142,-0.33321488,-0.45309192,-0.20910622,-0.26066262,-0.006780706,-0.011384943,0.23020034,-0.26882038,0.357951,-0.013693273,1.4223477,0.0751492,-0.013092643,-0.036205564,0.43574592,0.257808,-0.062945984,0.020436259,0.47343948,0.3578603,0.23955783,-0.60140574,0.17537768,-0.28540027,-0.54409117,-0.17153555,-0.26155448,0.06308717,-0.06914397,-0.4359326,-0.2131216,-0.18756433,-0.42976934,0.6060056,-2.475365,-0.24643312,-0.027245093,0.2989418,-0.15643059,-0.38591754,-0.026575046,-0.5074947,0.44473922,0.22419706,0.45058087,-0.7642517,0.14461142,0.39186108,-0.43873012,-0.048883926,-0.68941855,-0.08784991,-0.04741675,0.37998632,-0.040869355,-0.0025311736,0.3379711,-0.13319865,0.7289757,-0.25382194,0.095808245,0.28688774,0.47907525,-0.07522829,0.35485017,-0.054093298,0.49523354,-0.3021885,-0.2534155,0.25773022,-0.46940517,0.16578178,0.25163734,0.13309906,0.53282744,-0.33789095,-0.9541601,-0.6791847,-0.3525784,1.0122466,-0.06970325,-0.57733256,0.3093651,-0.13604023,-0.31699744,-0.26423383,0.49371156,-0.11489568,-0.14021504,-0.81128526,0.048224613,0.041130457,0.12096251,0.00068350544,0.048537884,-0.20589113,0.7558181,-0.03975275,0.20121449,0.3679819,0.14456561,-0.7313904,-0.59619707,-0.0021343557,1.0844314,0.34098542,0.1446713,-0.15722138,-0.2619815,-0.23563026,-0.22093274,0.0936152,0.59338415,0.7832567,-0.10696921,0.14673714,0.3773824,0.047268346,0.04517878,-0.16597302,-0.28977865,-0.17161797,-0.021615712,0.57980293,0.51225096,-0.2943022,0.8285833,-0.081913665,0.06741247,-0.12031329,-0.46881685,0.6384479,1.1534734,-0.19128908,-0.38461846,0.49842253,0.42972726,-0.5702085,0.40335143,-0.4231842,-0.15301861,0.5917938,-0.15448724,-0.49250638,0.16654798,-0.22872216,0.07892776,-0.8258725,0.37701243,-0.38044044,-0.5971536,-0.5218376,-0.04898983,-3.2131653,0.25160047,-0.37778842,-0.2904126,-0.1142323,-0.2387877,-0.19327994,-0.624833,-0.47054628,0.17941327,0.26801547,0.669104,-0.15166183,0.10955166,-0.19702072,-0.3286687,-0.3374653,0.186387,-0.071199484,0.3208683,-0.06603826,-0.49081868,0.004363678,-0.0361506,-0.46613052,0.12627055,-0.6082932,-0.5704821,-0.17522399,-0.6399488,-0.55659777,0.7810822,-0.45609033,-0.0875919,-0.19590941,-0.04264262,0.07946125,0.5209881,0.059830524,0.15676701,0.07078931,-0.23136324,0.08637436,-0.21869694,0.16248155,0.0021774264,0.21510428,0.5432314,-0.2035995,0.4474266,0.47568187,0.77003425,0.14357637,0.83314264,0.5448187,-0.1901148,0.331123,-0.35500228,-0.08173364,-0.65050006,-0.4260495,-0.08343842,-0.5558823,-0.6124105,0.022227913,-0.21492372,-0.7245077,0.61069757,-0.20896946,0.36624536,-0.057603538,0.6648975,0.5566574,-0.11508405,0.033213224,-0.25710624,-0.16268545,-0.4198037,-0.27572954,-0.58991396,-0.49759015,0.24313106,0.8861219,-0.12200518,-0.044109102,0.030422766,-0.21207339,-0.19233336,0.1278351,-0.1290129,0.23955292,0.17826265,-0.13147831,-0.59246296,0.4371229,0.10038623,-0.2134456,-0.68533945,0.26036906,0.75151086,-0.60231656,0.5643979,0.062606074,-0.052925695,-0.1146364,-0.44528684,-0.22127308,0.00410793,-0.1360017,0.418495,0.19131947,-0.7449574,0.3897023,0.49349257,-0.15530132,-0.7603115,0.36872518,0.11771836,-0.33088413,-0.18341233,0.5099108,0.22198138,0.06408258,-0.30942962,0.29452407,-0.60042477,0.17669332,0.19969012,-0.09312391,0.1749105,-0.05966716,-0.24701883,-0.871566,0.19064459,-0.4354827,-0.32157868,0.36877096,0.2007487,0.0890233,0.28987905,0.09176321,0.32877672,-0.35654363,0.041724283,0.04514667,-0.12173914,0.05157175,0.5590449,0.42399576,-0.4162412,0.4829462,0.1441608,-0.092072636,-0.058177266,0.065562576,0.43805486,0.18037221,0.4635517,0.18335718,-0.39647806,0.35830072,0.7270193,0.071824096,0.657927,0.063758686,-0.149167,0.23193675,0.15011825,0.37247905,-0.044581417,-0.43885136,0.10562298,-0.04227172,0.11744823,0.561641,0.06130379,0.31252712,-0.116896555,-0.18233806,-0.0071311328,0.4246913,0.04606086,-1.4123362,0.37561035,0.21093582,0.78734094,0.47328746,0.06743658,-0.012625412,0.53123224,-0.34939304,0.11378078,0.37488982,0.115909696,-0.4906751,0.58907694,-0.80549204,0.43607283,-0.18848382,0.045256093,0.04442452,-0.03837366,0.40497324,0.7986752,-0.294472,-0.13277385,-0.003020498,-0.30041146,0.26178595,-0.55122966,0.18634838,-0.43762875,-0.2600199,0.69263476,0.47071883,0.21503267,-0.11783059,-0.019294636,0.32671395,-0.15291633,0.24607235,0.07972148,0.37074307,0.11262767,-0.77100736,-0.11248383,0.5790918,0.031184983,0.2264447,0.1172038,-0.0073317396,0.19203645,-0.18217911,-0.3068171,0.025909217,-0.65933746,-0.036418077,-0.14631997,-0.5338722,0.4478029,-0.08569899,0.20865455,0.21907832,0.14349177,-0.5842356,0.4449755,0.40634328,0.80735105,0.025331628,-0.1498579,-0.30511138,0.40422526,0.213894,-0.20871258,0.088722095,0.14190464,-0.18688358,-0.6332073,0.46347344,-0.008648268,-0.5112232,-0.035800055,-0.018606352,-0.026931781,0.6074316,-0.15704943,-0.23474546,-0.2142151,-0.30385447,-0.11973849,-0.28828675,0.057625934,0.45949954,0.092384696,-0.08064684,-0.075134344,-0.19257064,-0.042638537,0.28458592,0.054537475,0.3889982,0.16543895,0.320696,-0.4603218,-0.032316554,0.14328885,0.4711354,-0.007454482,-0.13964592,-0.18128766,-0.37714452,-0.4272704,-0.3403527,-0.060503688,0.4162351,0.14301473,-0.53188986,0.83667094,-0.009855398,1.5860015,-0.027429072,-0.41459674,0.069860294,0.46145448,0.0303398,-0.09062099,-0.36096472,1.0655081,0.45485032,-0.08913514,-0.10706326,-0.3442911,-0.022877103,0.28141677,-0.2357166,-0.26736787,0.0654659,-0.5729899,-0.35201228,0.23847555,0.10568228,0.23345485,-0.08668468,0.14462478,0.4528902,-0.07457267,0.20214285,-0.2579117,0.0070317117,0.08927031,0.55907476,0.1922421,0.21746536,-0.32040396,0.20482731,-0.6043196,0.29969057,-0.23832059,0.22279096,-0.18374799,-0.2780632,0.23039566,0.2256353,0.34336007,-0.11803436,-0.2772967,-0.2872058,0.5445313,0.149614,0.1693268,0.5171899,-0.2269815,0.10867064,0.07964445,0.36966628,1.2094535,-0.15659322,-0.28913975,0.21186198,-0.34275487,-0.78169435,0.71196556,-0.20582256,0.080555275,-0.07529663,-0.21003947,-0.6280111,0.035168167,0.17832163,0.14405113,-0.05274652,-0.52393854,-0.21527953,0.40671146,-0.40782169,-0.2580354,-0.34588373,0.33675778,0.641065,-0.25918218,-0.44764307,0.06313198,0.21492763,-0.38456982,-0.34156856,-0.13438118,-0.32428697,0.36917618,0.013189032,-0.35209495,-0.02570163,0.11170135,-0.5009256,-0.010907552,-0.050153863,-0.36654797,0.28425053,-0.20538577,-0.19345473,0.881171,-0.43577853,0.33962205,-0.57301253,-0.6087043,-0.9006742,-0.28619346,0.50152326,0.110155724,0.06865611,-0.76885927,-0.11950963,0.0012985454,-0.27610666,-0.068011805,-0.4596344,0.43556643,0.09161677,0.46740168,-0.10518979,-0.73859316,0.28142184,0.3871132,0.108408906,-0.79859674,0.43480852,-0.095409326,0.87253875,0.020976108,0.06754325,0.5466861,-0.5822745,-0.0764109,-0.18734188,-0.24473582,-0.50628245,-0.098309346 +29,0.5744159,-0.09790284,-0.55421394,-0.1683615,-0.2648726,0.26215482,-0.19753933,0.40958047,0.092023775,-0.44664985,-0.23455903,-0.12578803,0.0384131,0.24484813,-0.22963113,-0.6725585,-0.055940293,0.11572716,-0.6871136,0.8115297,-0.26072496,0.42531446,0.021241415,0.23742571,0.26813465,0.45229656,0.23828085,-0.14853774,-0.22807698,-0.14648134,-0.1436432,0.0065196957,-0.70229495,0.18850201,-0.3655627,-0.40713978,-0.06434706,-0.38269722,-0.40180147,-0.72350675,0.34052306,-0.87881786,0.5057091,-0.084097326,-0.15656327,0.27498242,0.1891109,0.29438117,-0.2746287,0.039723083,0.095978394,-0.110002734,0.100569755,-0.31869775,-0.20522644,-0.6306572,-0.52303267,-0.008149825,-0.6055975,-0.1740463,-0.3201133,0.11823083,-0.32354546,-0.0249599,-0.20497847,0.43016815,-0.4929767,0.13030136,0.06072314,-0.03631465,0.018814623,-0.60738707,-0.14245644,-0.100514695,0.22018415,0.0009253491,0.041552994,0.41139212,0.0596105,0.35528964,0.13987124,-0.16265768,-0.3218314,-0.17135724,0.16364677,0.33969855,-0.08154678,-0.50712115,-0.0865281,-0.010594089,0.3926535,0.23378244,0.20662323,-0.09890978,-0.10714811,-0.25925764,-0.20878312,0.3775727,0.6402408,-0.34875554,-0.292153,0.3544448,0.4710644,0.1613015,-0.2617832,-0.023894455,-0.105562255,-0.35734582,-0.08306942,0.32009047,-0.21010646,0.57049155,-0.13202843,0.22448564,0.60844254,-0.2862261,0.18840125,0.028620707,0.023675889,-0.061725415,-0.053027548,-0.1761077,0.14778145,-0.46400076,-0.004240334,-0.41206828,0.70929974,0.14686742,-0.579638,0.2333138,-0.53263193,0.1749071,0.132403,0.49110177,0.6142393,0.5283506,0.08545785,0.7442268,-0.17940079,0.10802376,-0.2091618,-0.25642926,-0.051586434,-0.12388077,0.033329014,-0.4090625,0.15431897,-0.009995684,0.009792827,-0.12339948,0.5267654,-0.46004254,-0.11653754,0.064335935,0.84149235,-0.28758538,-0.03400603,0.86607003,0.99429345,0.90296096,-0.009388866,1.1724836,0.24720539,-0.3102001,-0.0067176875,-0.3121172,-0.5984019,0.23785692,0.26789325,-0.032049023,0.45874882,0.102435976,-0.059204705,0.13586293,-0.44916546,0.042741872,-0.2804394,0.15959755,0.11966482,0.06637788,-0.22727232,-0.41936842,-0.03456437,0.058737718,0.30598336,0.19424406,-0.19901402,0.34440643,0.011082216,1.4641355,0.08523446,0.1605477,0.14107452,0.6346773,0.23018546,0.029246137,0.058116626,0.3583579,0.3758874,0.030453138,-0.5980985,0.030075844,-0.39719605,-0.6095215,-0.101719245,-0.44477683,-0.21052247,0.047362637,-0.45798457,-0.16500238,-0.0869796,-0.25692296,0.34427506,-2.5531127,-0.047839973,-0.22311138,0.402188,-0.40633088,-0.2718544,-0.27866927,-0.5206853,0.5026214,0.34164995,0.5232915,-0.57305676,0.41660953,0.45571324,-0.5682707,-0.011484478,-0.4802763,0.020113457,-0.0022611134,0.5768044,-0.22114411,-0.07461503,0.17072117,0.08562957,0.5370342,0.0092378,0.09751486,0.30371562,0.41307297,-0.010393687,0.42454842,0.06465247,0.45188767,-0.37835938,-0.09852403,0.36341703,-0.43986052,0.31188822,-0.18103155,0.15362898,0.46866956,-0.68916094,-0.8331274,-0.6201391,-0.08117978,1.0582143,-0.36809987,-0.5427731,0.08456972,-0.17273876,-0.11008296,-0.2046771,0.4694187,-0.08991389,0.021626767,-0.6363493,0.054593384,-0.13220479,0.22036918,0.01674755,0.17430201,-0.43593526,0.842561,-0.117799416,0.5408988,0.13312505,0.31444886,-0.29722726,-0.53665733,0.17898935,0.8538726,0.56333095,-0.03510427,-0.26034814,-0.34888554,-0.3329161,-0.21647383,0.16753718,0.634409,0.5942228,-0.07923269,0.060817048,0.33592716,-0.11626683,0.23576143,-0.18975443,-0.3264981,-0.2517693,-0.11924501,0.5794481,0.5410691,-0.1653737,0.42858443,-0.063068464,0.41811132,-0.24440287,-0.44171214,0.5490304,0.9130514,-0.19149102,-0.29758346,0.37173903,0.6389213,-0.28785887,0.47657582,-0.6360769,-0.5349165,0.48864096,-0.2489284,-0.33700654,0.34642467,-0.25868985,0.03242874,-0.72778934,0.23662251,-0.4079227,-0.3021109,-0.50267595,-0.08504318,-3.1597936,0.12078377,-0.2779001,-0.19326311,-0.26612675,-0.2636682,0.036149852,-0.6133582,-0.5153544,0.09645416,0.110870756,0.7213057,-0.08198837,0.19485635,-0.17638269,-0.34815466,-0.39475608,0.24033971,0.094455175,0.36793527,-0.29423028,-0.34256607,-0.028710939,-0.12822834,-0.31266242,0.09664756,-0.4629543,-0.4011916,-0.22958098,-0.47160512,-0.29738516,0.56732935,-0.1666942,0.12536037,-0.22707573,-0.01912713,-0.1448375,0.27891564,0.15584953,0.19398257,0.22028983,-0.106274545,0.17669848,-0.3260791,0.37020564,0.05245735,0.44657716,0.38098305,-0.25662446,0.13395679,0.32606336,0.48104817,-0.035317674,0.7280476,0.29335067,-0.14344402,0.40435958,-0.22154075,-0.3392939,-0.6309518,-0.23470402,-0.06026779,-0.29263127,-0.51965255,-0.15402302,-0.40852857,-0.9151324,0.40174535,0.012878362,0.3049563,-0.10845996,0.3253683,0.62937045,-0.09943694,0.00856561,0.025766125,-0.09156157,-0.3646437,-0.25221884,-0.7182406,-0.35872364,0.05774278,0.8773619,-0.17359942,-0.15120785,0.027642554,-0.16672355,0.0656967,0.10478336,0.17947812,0.101414986,0.49520248,-0.09903254,-0.62746316,0.6930982,-0.13900742,-0.29608464,-0.4424552,0.2924911,0.56824255,-0.637893,0.43693265,0.42936626,0.017831698,-0.19102004,-0.42065272,0.035866737,-0.11581834,-0.22078091,0.27575678,0.19212219,-0.60600454,0.34250057,0.03635747,-0.2708059,-0.79037833,0.738502,0.013775978,-0.49133506,-0.00916183,0.39333084,0.09274116,-0.052039005,-0.25562587,0.114145756,-0.49168935,0.29953495,0.25047186,-0.042145543,0.4522718,-0.20316423,-0.2915387,-0.66703415,0.17639719,-0.51595855,-0.29639345,0.40503353,0.20559666,0.11021086,0.05073971,-0.07771613,0.46953404,-0.3407281,0.2251516,-0.07676817,-0.17283991,0.4330901,0.31574598,0.5156256,-0.54800016,0.6909579,0.010209076,-0.13680412,0.24205515,0.26681858,0.33195764,0.09325464,0.35948545,0.20495936,-0.22236544,0.3024519,0.6293278,0.41594136,0.48167706,0.20272443,-0.31202677,0.41883734,0.09396481,0.12332369,-0.059159167,-0.48932582,-0.118491374,0.0063813105,0.085347846,0.37372434,0.13409507,0.401506,-0.12492572,-0.0015756972,0.013391927,0.26898646,-0.21325895,-1.1916925,0.25694564,0.2077755,0.8518598,0.39436305,0.024672203,-0.0328791,0.64164674,-0.17704707,0.09860278,0.29378107,0.065196134,-0.458135,0.50905645,-0.48178786,0.5346061,-0.031466864,-0.03642783,0.051850572,0.1515153,0.30376762,0.87756926,-0.14797544,-0.06619862,-0.06424546,-0.4119777,0.16204911,-0.25724438,0.1341558,-0.51290596,-0.3051368,0.66980284,0.27581596,0.32045454,-0.05066841,-0.036593728,-0.034031242,-0.16721883,0.23529255,0.13282569,0.25938845,-0.04483951,-0.6836552,-0.3571536,0.4477994,-0.47411713,0.16561209,0.24199533,-0.31804365,0.2512575,-0.04969371,0.06535293,0.0034987405,-0.6967466,0.10467811,-0.24287811,-0.25426722,0.40915334,-0.24594818,0.38931853,0.24809873,-0.120209165,-0.4356076,0.1874885,0.22855724,0.62589246,-0.1719127,-0.31069613,-0.54380673,0.15709792,0.26816052,-0.36411265,0.09781337,-0.1422973,0.16092384,-0.5954881,0.43418792,-0.1002334,-0.20240499,-0.034976337,-0.28084984,-0.14655896,0.6153487,-0.11250268,-0.07788108,0.04916017,-0.030513633,-0.37842193,-0.20110178,-0.17228304,0.12347555,0.38468456,-0.07670036,-0.16161981,0.031546637,0.13366266,0.4559651,0.027771037,0.39855057,0.3379988,0.14583525,-0.42796266,-0.0014965683,0.29651555,0.36059487,0.09363204,0.072066024,-0.26613536,-0.5592104,-0.39058292,0.24850105,-0.16291656,0.14879975,0.26310825,-0.19931722,0.80401146,-0.07966313,1.1766536,0.12766692,-0.33805364,0.15914671,0.53908885,0.077986315,-0.022253968,-0.26681197,1.1565449,0.62619704,-0.031727474,-0.14046039,-0.32712793,-0.024614174,0.088936485,-0.3027189,-0.21607696,0.1192311,-0.39600798,-0.36531776,0.08488563,0.23857999,0.100313246,-0.1361376,-0.015518751,0.322354,0.20536794,0.39785528,-0.530894,-0.4461704,0.35172474,-0.035701994,-0.024977867,0.24181922,-0.41807166,0.39933145,-0.6495377,0.011697687,-0.20173678,0.1166365,-0.018594094,-0.27377838,0.30085656,-0.001199156,0.40348792,-0.4807366,-0.4582705,-0.2855623,0.44581193,0.09510201,0.17493072,0.5682482,-0.23415598,0.0751726,-0.060146663,0.6412414,1.1378777,-0.15184063,-0.066187166,0.35175028,-0.50980365,-0.7438508,0.15178552,-0.34074843,0.249271,-0.090973966,-0.3368545,-0.44955567,0.37673336,0.14195056,0.022712998,0.065280706,-0.73647845,-0.29930204,0.34578,-0.3135044,-0.20869699,-0.32115528,0.20399533,0.75650513,-0.27666384,-0.26400182,0.060457934,0.21063331,-0.19593516,-0.7663936,-0.0932837,-0.33568716,0.26801473,-0.073284864,-0.22429562,-0.13768338,0.18954125,-0.42865294,0.19787735,0.05262795,-0.32212967,-0.06897758,-0.31791127,-0.009855837,0.81296587,-0.24033685,0.11804302,-0.41775045,-0.46212247,-0.88625515,-0.39096665,0.1944967,0.15217906,0.11480258,-0.6660136,-0.038354486,-0.108418405,-0.038773514,-0.08538851,-0.3140606,0.37159172,0.24407232,0.33503798,-0.12356556,-0.8611858,0.26375273,0.057287727,-0.23886296,-0.5747103,0.48290324,-0.2137884,0.76281774,0.15520063,0.044866726,0.30768338,-0.68916786,-0.030777976,-0.23173173,-0.08560411,-0.6965866,0.15317607 +30,0.6006928,-0.10688633,-0.49413982,-0.06441079,-0.2945624,0.23441546,-0.07499377,0.28999996,0.15501894,-0.43251368,-0.081774354,-0.45338133,0.07418711,0.36142144,-0.11166052,-0.7536372,0.07599913,0.0011825593,-0.444402,0.29084983,-0.63772386,0.5179695,0.16554287,0.3566663,0.025081413,0.32188708,0.4146717,-0.14041202,-0.32087135,-0.03074945,-0.24004248,-0.012706531,-0.6421525,0.16519149,-0.09945739,-0.34491467,0.19587454,-0.29967874,-0.32430577,-0.65329593,0.3294694,-0.90428257,0.54820544,-0.11558525,-0.3484826,0.14694177,-0.0052029747,0.20319669,-0.255848,0.221103,0.21439679,-0.19143997,0.17848735,-0.2498167,-0.38367516,-0.81618446,-0.52388316,0.089355685,-0.5869852,-0.3002959,-0.20958737,0.13558571,-0.29581514,0.07253994,-0.2571884,0.20091756,-0.39902538,-0.07161212,0.28828502,-0.20783755,0.27687374,-0.47189403,-0.2728022,-0.15162088,0.11615318,-0.031227171,-0.11398705,0.23153333,0.39818463,0.57821476,0.022366693,-0.1272694,-0.3307299,0.066077836,0.0904338,0.5266958,-0.090655975,-0.23578055,-0.27665013,-0.025320102,0.06713048,0.23206258,0.15965824,-0.27546674,0.061942883,0.13165227,-0.16853735,0.25188166,0.44468045,-0.4729219,-0.34927347,0.31871754,0.42123017,-0.004200446,-0.125487,0.1896862,-0.052557807,-0.39450374,-0.22506222,0.10213431,0.038832102,0.69498813,-0.23461042,0.28719667,0.8836273,-0.15312505,0.09019459,-0.26758868,-0.09658863,-0.18391813,-0.20024745,-0.024651978,0.16077396,-0.5030282,-0.12475014,-0.24545029,0.68647194,0.27441138,-0.73432785,0.53136504,-0.41952613,0.078395806,0.017163265,0.5310008,0.6038702,0.28276962,-0.03189529,0.82426065,-0.69061035,0.037281815,0.019663854,-0.5006337,0.16170362,-0.15836655,0.011091626,-0.4478652,0.016609043,0.35902682,-0.08262955,-0.102249615,0.5083223,-0.43159994,0.05451485,0.009801371,0.7443829,-0.45299658,-0.039199267,0.69291633,1.0230974,0.93979305,0.04366644,1.4686047,0.3801988,-0.2715945,0.2550426,-0.32173678,-0.4899893,0.13860722,0.35663518,0.06445738,0.5150198,0.20298174,0.063416526,0.3613663,-0.03294858,0.18117552,0.019543082,0.10386232,-0.09164281,-0.20596576,-0.5265542,-0.22363193,0.08608309,0.07203746,-0.025351439,0.21320646,-0.07692466,0.43142954,0.04702591,1.6320819,0.021734532,0.1364189,-0.025437614,0.43305963,0.24961351,-0.119973324,0.03914719,0.3060997,0.25772378,0.20343426,-0.44062838,0.040909015,-0.34271878,-0.670788,-0.19818117,-0.3717751,-0.07878236,-0.3037128,-0.44902828,-0.119261675,0.14976296,-0.26172093,0.35031253,-2.4059575,-0.24781418,-0.19305588,0.27042264,-0.25850406,-0.3598462,-0.15349343,-0.4226834,0.23829386,0.555472,0.30440548,-0.6397658,0.32650405,0.42332092,-0.25248918,-0.12596463,-0.5753387,0.10080033,-0.09730746,0.52283037,-0.10307374,-0.29117158,-0.16229096,0.19791731,0.5911671,-0.07074937,0.029045863,0.051700424,0.56853646,0.10534304,0.49198195,0.21443565,0.5830361,-0.13726558,-0.027040413,0.45099968,-0.43579182,0.3790421,0.19118237,0.31082115,0.39597702,-0.47671032,-0.7733465,-0.62054175,-0.44294786,0.98146206,-0.24391924,-0.2539113,0.24177636,0.1384701,-0.31729418,0.006091501,0.34863234,-0.016410617,0.16404614,-0.69865125,-0.044793207,-0.0091720475,0.10890127,-0.068491675,0.15432368,-0.32806876,0.84437543,-0.084585674,0.33667263,0.33621174,0.14872313,-0.1645688,-0.4373564,0.06477077,0.95180935,0.3659865,0.16422436,-0.09416355,-0.16981871,-0.27923837,-0.19994502,0.15802662,0.3996969,0.91016906,0.07704631,0.06120686,0.2177564,-0.047386955,-0.000105016996,-0.049376708,-0.25141332,0.12403696,0.047732983,0.5455161,0.5990757,-0.32711536,0.57530296,-0.2726638,0.38551715,-0.25924832,-0.48589203,0.5045668,0.826435,-0.13701849,-0.15479292,0.43820468,0.34961602,-0.5911363,0.408305,-0.67115974,-0.32669702,0.5824762,-0.0548835,-0.4048303,0.23474261,-0.3329951,0.08600301,-1.0271772,0.35276487,0.077532835,-0.4609875,-0.5610291,-0.40432927,-4.1246705,0.2703495,-0.14269552,-0.0680794,0.019121503,-0.091437526,0.4091352,-0.63010776,-0.48075143,0.021647532,0.013825849,0.46166798,0.028751865,0.304882,-0.32123303,-0.23593284,-0.30224958,0.28580198,0.085752174,0.19836392,-0.02115637,-0.4712453,0.08438688,-0.42580646,-0.46904278,-0.05010116,-0.63487667,-0.6722849,-0.23773922,-0.45917624,-0.33896974,0.78195524,-0.28552586,-0.0013313422,-0.20256522,-0.10260092,-0.33591548,0.45201278,0.20700522,0.010908501,0.013826191,0.07922374,-0.16530713,-0.42869553,0.08727193,0.133198,0.4529598,0.5254869,-0.2883322,0.11863935,0.5245459,0.63460255,0.07172942,0.6094863,0.02503115,-0.12136246,0.54059595,-0.26256764,-0.15094145,-0.8923129,-0.45611617,-0.2795362,-0.46454543,-0.67501587,-0.17228372,-0.44664547,-0.6639053,0.38937193,-0.011159931,0.21346429,-0.1225301,0.33621305,0.3638453,-0.25459695,0.027441934,-0.13799122,-0.20675816,-0.56917673,-0.6061548,-0.71527374,-0.7184211,0.27873355,1.045796,0.14293922,-0.24383494,-0.021313688,-0.21181181,0.03997113,0.03396118,0.21457945,0.054972004,0.21182741,-0.18006866,-0.80496204,0.56448233,-0.1533042,-0.08515438,-0.49469835,-0.16623004,0.73662347,-0.67119884,0.48063496,0.38970646,0.32166514,0.21992,-0.3936875,-0.256219,0.06829495,-0.3106053,0.60545814,0.110839896,-0.5749394,0.40883902,0.29162937,-0.18398547,-0.5372733,0.5374187,0.018655747,-0.14791791,-0.032980423,0.28607056,0.08738078,6.75789e-05,-0.21324894,0.21139245,-0.70897704,0.11317098,0.599266,0.20798732,0.47680953,0.064144276,-0.22059014,-0.7145678,-0.10327201,-0.30089423,-0.27577248,0.073959045,0.114038095,0.081774995,0.18465273,0.12675597,0.41558543,-0.31956932,0.1483845,-0.03135899,-0.2204094,0.30464193,0.43746594,0.24111702,-0.56324947,0.51355237,0.025010195,-0.00048179287,0.008112745,-0.070702784,0.40945253,0.4590457,0.26128218,0.1351373,-0.18648104,0.268766,0.8487711,0.23471001,0.5942424,0.36526388,-0.35763255,0.32085112,0.2613184,0.16742636,0.043285284,-0.33405206,-0.0578238,0.13464276,0.14404763,0.37106514,0.006159625,0.22204264,-0.14101999,-0.052662116,0.29728666,0.2531406,-0.05037439,-0.7785197,0.15709604,0.34784827,0.55381215,0.46545115,-0.0501476,0.016198397,0.30153367,-0.3640799,-0.0044020116,0.32592422,0.0047573745,-0.60852915,0.61241245,-0.5079355,0.28935385,-0.2595999,-0.085712746,0.075257145,0.13403033,0.381243,0.9763192,-0.092093,0.111764774,-0.029221764,-0.22070177,0.050676007,-0.36787072,0.19032525,-0.31926784,-0.15190646,0.71175236,0.4169676,0.19513796,-0.26824397,-0.0875288,-0.10228548,-0.19570288,0.21899302,-0.050325412,0.02776211,-0.079481244,-0.7414235,-0.41717646,0.51341057,0.09745181,0.08739101,0.120162725,-0.56235397,0.28337446,-0.11674092,-0.022633774,0.10247086,-0.69303674,-0.006231887,-0.29170135,-0.746191,0.46117878,-0.037358005,0.27225068,0.20569253,0.056840513,-0.31894502,0.07732073,0.15462759,0.7523497,0.118064865,-0.21500123,-0.3332835,0.08337886,0.37893677,-0.41075334,-0.13566348,-0.2841982,0.25491706,-0.5260012,0.5534271,-0.018343465,-0.19192187,-0.052622862,-0.09465032,-0.0039540743,0.38201657,-0.30945402,-0.20192309,0.07442601,0.22828959,-0.18192804,0.037938815,-0.40327936,0.2526668,-0.07681892,-0.21099462,0.113866374,-0.017918918,0.07582295,0.35976407,0.17752664,0.1283574,0.36080816,-0.09332293,-0.5738565,-0.02577568,-0.067412145,0.40150753,0.13718398,0.0182227,-0.19785751,-0.48970526,-0.31420583,0.29128674,-0.10812374,0.06794979,0.2097074,-0.49230507,0.8347894,0.1563326,1.3359861,-0.0043760412,-0.3595415,0.010013374,0.52335155,-0.023577392,0.04733525,-0.5014896,1.111799,0.73496526,-0.26971865,-0.28771666,-0.25297302,-0.3001716,0.29070514,-0.3739784,-0.21293034,-0.1474093,-0.87252873,-0.15369532,0.106773816,0.27148834,0.0821531,0.094385706,0.19515644,0.094957605,0.081167884,0.5274069,-0.5070572,-0.3660093,0.30957475,0.24706706,-0.05299244,0.07400077,-0.36553958,0.5613612,-0.67820674,0.23547387,-0.46326584,0.0008402414,-0.07905274,-0.34257698,0.17781855,0.089306906,0.28978327,-0.3388324,-0.44426018,-0.37962002,0.5623307,0.14693488,0.3655715,0.66714907,-0.22680569,-0.108647786,0.1264594,0.43993086,1.4901068,0.11463,0.01524743,0.43982127,-0.42348367,-0.7125142,0.21760818,-0.40923148,0.17579456,-0.23471282,-0.48534697,-0.44744393,0.3787591,0.19227907,-0.13117419,0.08477032,-0.40279183,-0.18935399,0.46396634,-0.39492205,-0.38923666,-0.26267532,0.34842375,0.7439321,-0.489652,-0.20433614,0.007574635,0.32951242,-0.520696,-0.5563797,0.0138520645,-0.2565636,0.6762414,0.14472191,-0.3162977,0.11682414,0.1773746,-0.36733222,0.183864,0.46850678,-0.50354934,0.10321976,-0.3790032,-0.28443798,0.94433147,0.18197997,-0.08689395,-0.77566147,-0.52479017,-1.0790188,-0.500684,0.24289453,0.14445837,0.044576194,-0.39137763,-0.08832477,-0.08532737,0.07760058,0.069234185,-0.47476482,0.38672796,0.09852003,0.6502868,0.0031604257,-0.9152109,-0.10120205,0.24372236,-0.26621392,-0.58806133,0.64473474,-0.24310233,0.63515484,0.11592587,0.15889981,0.24848118,-0.6396095,0.3294828,-0.34989622,-0.08213004,-0.7257305,0.05420339 +31,0.31048667,-0.10620646,-0.43306655,-0.07459927,-0.084665075,-0.07329586,-0.036448937,0.66060644,0.11307001,-0.4009104,-0.2172517,-0.04182216,-0.11888974,0.3269131,-0.10886268,-0.5626508,0.04775403,0.24373667,-0.26704615,0.53778845,-0.5269705,0.31245878,-0.09446066,0.28244054,0.1566603,0.24376538,0.034906182,-0.2556794,-0.04942077,-0.020513095,-0.28405496,0.48953453,-0.24319752,0.1697537,0.062232018,-0.43103904,-0.053031147,-0.33180904,-0.2597936,-0.66273755,0.30614457,-0.6524192,0.36309943,0.04203038,-0.26058123,0.28102958,-0.1514251,0.2613171,-0.25204355,-0.042181905,0.18388234,-0.0041315374,-0.04044273,-0.17672116,0.000728676,-0.3130566,-0.60890764,0.037704222,-0.33860096,-0.072922915,-0.19122054,0.2262631,-0.4349473,-0.073385656,-0.034021184,0.2518096,-0.49111477,-0.13807756,0.074455746,-0.12351648,0.18912107,-0.6992185,-0.18346503,-0.080519564,0.2783241,-0.25496185,-0.09313573,0.28688976,0.33782637,0.45568582,0.034244403,-0.118241236,-0.34365135,0.044199586,0.03920004,0.56501114,-0.28686675,-0.4955831,-0.069548495,0.03386061,0.20269328,0.06954607,0.019477112,-0.22494048,-0.21987642,0.1345054,-0.29202312,0.1768855,0.46727446,-0.31795886,-0.40202862,0.43865788,0.4968882,0.09849807,0.007129527,-0.041935984,-0.064931326,-0.51817703,-0.111521214,-0.03885408,-0.2711723,0.41249827,-0.13947247,0.30664366,0.6425603,-0.029578106,0.19067171,0.073547766,-0.044892542,-0.123038374,-0.18952698,-0.19432674,0.19635841,-0.31933162,0.2392485,-0.08249296,0.8754123,0.10665776,-0.8502891,0.4371739,-0.45928568,0.11494963,-0.16940263,0.6107556,0.6299442,0.2715285,0.32287452,0.711774,-0.5411045,-0.0070535955,-0.022151526,-0.40596676,0.05750055,-0.011247997,-0.13573067,-0.5496175,0.041142646,0.21501541,-0.0443699,0.1961352,0.32467046,-0.7207912,0.016200492,0.08785884,0.62642914,-0.35699588,-0.10854261,0.66090554,0.9267251,0.9473975,0.01417704,1.0756857,0.17708237,-0.23286861,0.39730138,-0.5739218,-0.6774404,0.28086793,0.49426872,-0.27890572,0.18728957,0.13954374,-0.059439227,0.45722425,-0.31865945,-0.006955367,-0.1908851,0.103984304,0.034122773,-0.108686246,-0.4605474,-0.3878763,-0.1644825,0.047114868,0.08320796,0.32396692,-0.24171709,0.30475932,0.04392262,1.7237017,-0.052232977,0.13020031,0.08774216,0.4187489,0.09595155,-0.100284494,-0.12795907,0.2995996,0.4238053,-0.074142985,-0.56637335,0.10698596,-0.23470682,-0.5195599,-0.060833566,-0.18664446,-0.04583809,0.21551976,-0.37416604,-0.17686209,-0.12704149,-0.3665894,0.46886066,-2.7415936,-0.18990429,-0.095249385,0.30323452,-0.29480854,-0.44365087,-0.20992014,-0.46782523,0.38270232,0.34607476,0.6006203,-0.6506639,0.28463882,0.25597918,-0.4890142,-0.14415498,-0.609332,-0.0653766,0.0077126324,0.18758829,-0.012049641,-0.010434077,0.12888822,-0.13586973,0.4087491,-0.005258496,0.0021861035,0.36493367,0.24697652,0.2720209,0.2810224,0.06752586,0.5375691,-0.17652358,-0.18744189,0.22493964,-0.28788865,0.2727771,-0.1978896,0.1971711,0.36541304,-0.47643808,-0.85593927,-0.6110642,-0.35782588,1.3478355,-0.17900573,-0.24885274,0.40505356,-0.14251786,-0.17306818,-0.18790714,0.38401905,-0.2851477,-0.2781464,-0.80570644,0.044146802,-0.1547702,0.15542994,0.05647478,-0.17436275,-0.440928,0.55306286,-0.09200318,0.49871862,0.3266307,0.19450632,-0.14478253,-0.4168206,0.014283139,0.9095836,0.3090304,0.13820376,-0.105058596,-0.11116375,-0.34789017,-0.0927521,0.16725841,0.35209173,0.7143848,0.058304913,0.06300401,0.36993012,0.116984025,0.063329026,-0.1597642,-0.28377318,-0.091657594,0.133806,0.58757615,0.6074486,-0.2869902,0.42948583,0.002720505,0.09316723,-0.120137945,-0.43952164,0.52762944,0.7814733,-0.1563507,-0.14028165,0.5653969,0.46006715,-0.13507722,0.40602794,-0.55352455,-0.25317866,0.36457494,-0.2837098,-0.35341975,0.09725877,-0.2899316,0.17675558,-0.85227054,0.25382447,-0.2546409,-0.5045651,-0.51367015,0.10112997,-3.304197,0.16927901,-0.39402443,-0.26400656,-0.053755715,-0.13600144,0.18930772,-0.7293738,-0.48324382,0.14325103,0.17252067,0.55524296,-0.0537987,0.011864474,-0.22251384,-0.20384462,-0.308544,-0.010918226,-0.036055896,0.36087814,0.22751379,-0.41807276,0.0632091,-0.05975948,-0.3256709,0.16466564,-0.4642343,-0.3900797,-0.11953438,-0.643815,-0.33055422,0.64122295,-0.46862543,0.036474757,-0.181382,-0.030247826,-0.18130316,0.4027712,0.053673822,0.068799935,-0.01667592,-0.011512073,0.02646779,-0.2413315,0.3645108,0.07379744,0.28743884,0.47753188,-0.21264221,0.16710363,0.60392773,0.6013372,-0.15965725,0.8493821,0.62031007,-0.13923874,0.17209934,-0.31532687,-0.14370838,-0.5561427,-0.4368668,0.046089277,-0.36575463,-0.51183605,-0.074788816,-0.37529275,-0.861071,0.44238853,-0.035740294,0.24852313,0.066757694,0.04871972,0.47912973,-0.06694431,-0.005308094,-0.13448368,-0.034333073,-0.5410501,-0.20124197,-0.71806175,-0.42906114,0.26447916,1.0263127,-0.28746554,0.012653149,-0.035914037,-0.19176747,-0.08352533,0.017008957,0.00033389375,0.12551028,0.25257662,-0.16971834,-0.6700424,0.43491876,-0.017573697,-0.10962633,-0.4693437,0.11331771,0.44900066,-0.61955,0.49146733,0.24465129,0.0063371933,0.1289131,-0.5674319,-0.28378528,-0.13661817,-0.19279231,0.31535128,0.19924138,-0.5846806,0.32871932,0.4778088,-0.19617875,-0.74505985,0.33656073,-0.07333729,-0.19814745,-0.05614511,0.26511434,0.13001339,0.029774755,-0.08926841,0.062763676,-0.48240057,0.47800416,0.2014034,-0.106227785,0.38357055,-0.19749771,-0.0059010247,-0.78409857,0.039537787,-0.54539055,-0.15916674,0.16218534,0.19324173,0.14325362,0.047537234,0.113235064,0.38795426,-0.33052298,0.06855537,0.1841779,-0.12295132,0.14380725,0.39822945,0.490895,-0.3784663,0.47959086,0.034278784,-0.073494144,-0.23624101,0.041895024,0.45758745,0.09750286,0.24755408,-0.0842965,-0.32335502,0.31277892,0.82119113,0.25645673,0.35512277,-0.11884037,-0.12849572,0.16409056,0.03018298,0.17863399,0.13822904,-0.45940349,0.013636275,-0.054673985,0.23034628,0.58521944,0.17945395,0.2402013,-0.18499902,-0.3346391,0.06288996,0.2652082,-0.026159497,-1.02575,0.5343413,0.23924369,0.7463032,0.56620795,-0.006824136,0.02437046,0.5564226,-0.23558778,0.24084964,0.24897368,-0.13930959,-0.67954767,0.58633256,-0.73367023,0.3805677,-0.01681867,0.02831438,0.05583171,-0.14264415,0.28013825,0.66779834,-0.1243811,0.017676326,-0.093770236,-0.26548418,0.007778665,-0.3218052,0.039455533,-0.6060208,-0.12868546,0.5585175,0.5670863,0.27276012,-0.107374065,0.009425988,0.084981255,0.0065898667,0.068225734,-0.022133969,0.20508316,-0.06914335,-0.58175457,-0.26020917,0.47713497,-0.12736043,0.10922984,0.034789972,-0.21640676,0.19990891,-0.2865667,-0.14335938,-0.11090893,-0.45638335,0.13976619,-0.0991321,-0.21768573,0.43326595,-0.07685049,0.27831239,0.15647508,0.12271835,-0.16544344,0.26551467,0.06523712,0.70927644,-0.013705533,-0.20389582,-0.39984724,0.23875938,0.16286983,-0.06605658,-0.083276,-0.21557982,-0.10555197,-0.46222988,0.42678502,0.06779109,-0.128953,0.1211157,-0.11024336,0.020353535,0.49000877,-0.109716244,-0.104004435,-0.0005157819,-0.13824807,-0.26208827,-0.1168594,-0.25758365,0.19277433,0.2751846,0.0963976,-0.12170148,-0.12830596,-0.2556922,0.4391125,0.07968083,0.24618043,0.19373809,0.11488153,-0.27842748,-0.27273935,0.13410392,0.3099671,0.060526617,-0.11971072,-0.2725464,-0.43634585,-0.40185565,-0.011388989,-0.14009264,0.41585514,0.06239162,-0.24666539,0.55602705,0.14781228,1.132849,0.10471801,-0.2406524,0.026410818,0.46420103,0.054085713,-0.015901098,-0.28399214,0.985444,0.598481,-0.10371557,-0.10064106,-0.33350295,-0.1814134,0.30371284,-0.17318083,-0.047602296,0.052855697,-0.6520083,-0.42539388,0.2635824,0.2369776,0.010061349,-0.0005960831,-0.021422245,0.17270008,0.1644014,0.34199432,-0.42487213,-0.32672802,0.2802126,0.2168732,0.08003019,0.2625799,-0.3905669,0.45394972,-0.49174693,0.08313879,-0.22301127,0.13418953,-0.2634303,-0.27830505,0.23208585,0.09770254,0.43641666,-0.12436298,-0.38903776,-0.17983668,0.56037307,0.011439488,0.11045706,0.46960512,-0.34437975,0.0026392569,-0.028103847,0.3800138,0.98976034,-0.18473285,-0.029921012,0.49707538,-0.24903029,-0.5750439,0.3447884,-0.19535066,0.078778,-0.11357632,-0.2713374,-0.4221953,0.30634263,0.17647734,-0.032617502,0.105348736,-0.5061831,-0.23327112,0.13183784,-0.33438858,-0.2477464,-0.2686406,0.24754788,0.7320899,-0.50599515,-0.52091736,0.20702553,0.23194383,-0.13797016,-0.5570894,-0.02667305,-0.35838187,0.2564276,0.1950937,-0.37362245,-0.16594452,0.1725178,-0.3153196,0.10105069,0.2165533,-0.35104477,0.17630757,-0.33394983,-0.017677357,1.0238615,-0.2029683,0.2570713,-0.62549716,-0.3032159,-0.7943154,-0.50351244,0.6439517,0.2258091,-0.05943467,-0.66869164,0.16491161,-0.03569847,-0.16431347,-0.20659655,-0.3014818,0.4961856,0.14848047,0.277238,-0.10024214,-0.68718106,0.1386449,0.090445094,-0.0090891905,-0.5556902,0.45511377,0.054773487,0.8959325,0.12450691,0.046753485,0.22301282,-0.3330415,-0.060995534,-0.36472055,-0.28356007,-0.75547504,0.034269057 +32,0.4372309,-0.23207778,-0.5129313,-0.1505107,-0.3634494,0.22991809,-0.20210837,0.42830157,0.13887508,-0.44921246,-0.21464333,-0.24415077,0.050682355,0.27401868,-0.15017961,-0.37812823,0.0374734,0.23365864,-0.6975457,0.6355338,-0.31056368,0.14427702,0.18788977,0.33175665,0.23579076,0.12245113,0.17191654,-0.06309888,-0.08664267,-0.21743742,-0.34948164,0.22004306,-0.5177804,0.2804833,-0.23115024,-0.25012013,-0.038990825,-0.47206828,-0.40999436,-0.756197,0.24700302,-0.78854036,0.4353037,-0.20303614,-0.29390508,0.27218565,0.12297985,0.33031616,-0.11275032,-0.10072221,0.19491717,-0.23626986,-0.11313645,-0.13503897,-0.16626176,-0.42969012,-0.5224517,-0.050794378,-0.3405571,-0.24559972,-0.31661418,0.23586594,-0.2224473,0.12518609,-0.1300094,0.6589022,-0.4155468,0.22492318,0.2207923,-0.15420291,0.27590397,-0.69979304,-0.0258227,-0.10319634,0.27178735,0.06357276,-0.236632,0.3138563,0.31705773,0.3260627,0.08432958,-0.23138657,-0.28587154,-0.071928084,0.15571845,0.42014134,-0.05255979,-0.36748397,-0.14844249,0.022432012,0.21609217,0.15601234,0.1374452,-0.38278893,-0.10259365,0.09377084,-0.17703564,0.34630516,0.5432007,-0.28921926,-0.11883723,0.30603582,0.59142107,0.245034,-0.19415747,-0.14202738,-0.110766865,-0.51791596,-0.19859843,0.0520715,-0.27180564,0.60554236,-0.2252023,0.23310392,0.6609244,-0.080559984,-0.11082033,0.022976499,0.03607942,-0.1178181,-0.1990046,-0.12887916,0.16988936,-0.49232006,0.09014026,-0.1091098,0.75131094,0.13940585,-0.619661,0.19557634,-0.5455241,0.15753233,-0.016299518,0.4129727,0.6850104,0.5048944,0.21845385,0.6754938,-0.36893606,0.092702724,-0.059605733,-0.42031306,0.027477909,-0.2230806,-0.07632838,-0.6181169,-0.0045621274,-0.24601297,0.0642831,-0.032763507,0.5009018,-0.53682446,-0.11739376,0.06702504,0.81155324,-0.2941447,-0.035550874,0.6791706,0.8862041,0.96365243,0.04529369,1.0891742,0.20958701,-0.29116097,0.09191421,-0.15757328,-0.5334169,0.3759012,0.37447718,-0.03742246,0.14454725,0.022061951,0.08205789,0.4629951,-0.4660792,-0.045932673,-0.24005772,-0.054731622,0.11269383,-0.0950674,-0.43939856,-0.2863617,0.12859625,0.16398406,0.15905231,0.212034,-0.176273,0.49327126,0.23951003,1.5837617,-0.115931265,-0.021881377,0.14812535,0.25443166,0.19749963,-0.14307642,-0.043921556,0.3704277,0.4284556,0.124675386,-0.51894575,0.08929976,-0.27168787,-0.3806136,-0.18221422,-0.28426227,-0.15046415,0.11505049,-0.4963499,-0.18789458,-0.07483339,-0.28424478,0.37749383,-2.4825358,-0.1980811,-0.14580518,0.2926217,-0.21185361,-0.34600747,-0.0137704825,-0.5785228,0.31419253,0.30736163,0.3937756,-0.6629387,0.39200196,0.32618165,-0.64063597,-0.07039616,-0.56401914,-0.19529976,-0.027792852,0.42745212,0.073642105,-0.06735709,0.12693559,0.15384407,0.56446993,-0.09523867,0.10953885,0.4035327,0.43114972,-0.042142063,0.67469305,0.0016474864,0.58258194,-0.2733943,-0.18208002,0.43177256,-0.23982508,0.18164806,-0.09238567,0.14077498,0.5553805,-0.41662636,-0.7917117,-0.7547205,-0.16375701,1.2136562,-0.34062874,-0.4911096,0.27738336,-0.25323418,-0.25486034,0.00053487107,0.42825833,-0.08759057,0.0892176,-0.73456055,0.07579522,0.019897258,0.12278686,-0.06501098,-0.23633432,-0.44901434,0.850123,-0.069813296,0.4778953,0.31231117,0.18145242,-0.23211499,-0.5017984,0.08117761,0.8216889,0.48437595,0.042035,-0.27217236,-0.106719226,-0.3988256,-0.04959669,0.06303328,0.5284824,0.551958,-0.016870832,0.13909666,0.17864785,-0.016667321,0.057846792,-0.2878376,-0.2822064,-0.07948586,-0.13480723,0.55991215,0.52296734,0.010285179,0.43747845,-0.046397552,0.36134842,-0.105519526,-0.5781068,0.5203756,1.163941,-0.31076044,-0.32713172,0.40155298,0.3501656,-0.10142489,0.30780274,-0.56800795,-0.39739126,0.46387473,-0.19139859,-0.5054603,0.1376415,-0.25406107,0.15484998,-0.65780413,0.2388403,-0.16686596,-0.6132312,-0.59103405,-0.015613914,-2.618363,0.38196728,-0.28171706,-0.14879587,-0.27473024,-0.16369757,0.20415077,-0.43907714,-0.41536286,0.121916085,0.10547449,0.57459337,0.0040394417,0.09362882,-0.2507271,-0.22244097,-0.21851435,0.14629921,0.1417814,0.2892748,-0.15538353,-0.4770467,-0.030531565,-0.17608525,-0.45617104,0.122057706,-0.5933149,-0.4638554,-0.20812918,-0.29377383,-0.36030617,0.6431498,-0.3355685,0.09037874,-0.18767326,0.08472754,-0.06804906,0.15092103,0.032126665,0.12291039,0.03420359,-0.11086586,0.06835878,-0.3147095,0.24242058,0.07685274,0.18565477,0.22939374,0.0014640794,0.24064125,0.39038175,0.669186,-0.20855945,0.8898593,0.40895367,-0.022656789,0.23849061,0.0014334865,-0.31466457,-0.47804478,-0.1598322,0.17693797,-0.4778808,-0.37982392,-0.0045533846,-0.33525327,-0.64299005,0.47161236,0.0063450616,0.107324064,0.08658267,0.27231425,0.65518135,-0.36067355,-0.02890056,-0.05483272,-0.25032422,-0.54843646,-0.40890923,-0.66226006,-0.56220794,-0.041718878,1.0362958,-0.124124244,0.009864751,-0.09632212,-0.41621494,0.1186669,0.14626573,-0.059898887,0.1543822,0.46605104,-0.37966758,-0.6626912,0.53465796,-0.17702618,-0.15378545,-0.46670833,0.36055273,0.53733355,-0.4697307,0.37103873,0.33902308,0.039085872,-0.13136266,-0.45671934,-0.046575144,-0.11330163,-0.41373324,0.4336121,0.22091453,-0.68615997,0.4201279,0.14154473,-0.23235506,-0.7518496,0.45517564,-0.051991668,-0.2078114,0.06373639,0.34053254,0.102888905,0.009058364,-0.22853692,0.083572395,-0.46864423,0.29120955,0.22332497,-0.016565211,0.03726612,-0.2491993,-0.07850542,-0.762863,-0.042663552,-0.51625186,-0.2333469,0.2833715,0.11894145,0.18068157,0.15561472,0.10836558,0.39644387,-0.25721416,0.1192495,-0.10613086,-0.35016975,0.3929536,0.4469218,0.39430454,-0.40729463,0.62032557,0.0069580884,-0.16114286,-0.11448521,0.10618294,0.4325308,0.15273571,0.566653,-0.10944089,-0.16396742,0.33272237,0.72504807,0.24160983,0.456304,-0.029231261,-0.22024202,0.20223878,0.040100034,0.2293569,0.061372798,-0.6833876,0.037448674,-0.31754005,0.15502983,0.5512435,0.014491947,0.34024185,-0.075605296,-0.3451854,0.077381685,0.081993945,0.007827661,-1.2584392,0.27893564,0.2789406,0.9850306,0.33420476,-0.0710575,-0.071988575,0.67612857,-0.2161557,0.12997907,0.37593034,0.058791835,-0.3938042,0.4613928,-0.88495857,0.32565767,-0.13840127,-0.049393877,0.18373555,-0.0794754,0.35333234,0.82676625,-0.22808504,-0.01840937,-0.011549483,-0.3660257,0.30313376,-0.40847346,-0.014169665,-0.55022466,-0.45911705,0.5917398,0.5332233,0.3783074,-0.2701212,-0.025206698,0.042493347,-0.29556218,0.16564083,0.1548065,0.057649445,-0.13002479,-0.6600508,-0.100252464,0.38154423,-0.11325857,0.20652068,0.06807203,-0.05554557,0.15651251,-0.10561442,-0.006643085,-0.09870675,-0.67078537,-0.08005247,-0.28752196,-0.37321803,0.48800874,-0.1861383,0.14870773,0.25891447,0.07244025,-0.19772467,0.33313704,0.028238507,0.8264308,0.2508187,-0.063913696,-0.33727875,0.19175293,0.13191625,-0.21107608,-0.036088523,-0.28834558,-0.02081654,-0.54765767,0.39410916,-0.041887697,-0.3261172,0.13908708,-0.20577759,0.02602597,0.5462966,-0.08289389,-0.1237524,-0.101665616,0.1515426,-0.1366055,-0.22056001,-0.04140006,0.19711864,0.15398893,0.1519829,-0.10067034,-0.024199745,-0.2231038,0.42066544,0.04837872,0.44719034,0.38937074,-0.17898795,-0.32193998,-0.13345063,0.08851056,0.4714344,0.06821024,-0.1420807,-0.29474628,-0.45427394,-0.3461485,0.20626704,0.08931467,0.31220776,0.100829996,-0.1198665,0.77250093,-0.10880824,1.2134569,-0.021458037,-0.3274693,0.04608492,0.4564154,0.1434157,0.05657905,-0.3645843,0.6797279,0.39176413,-0.003673322,-0.1530489,-0.32853332,0.068508595,0.17834796,-0.11024614,-0.085930735,-0.06021137,-0.6271931,-0.3158404,0.19825335,0.2744836,0.24260625,-0.07190124,-0.01891003,0.40648124,-0.07214431,0.4169232,-0.42041454,-0.27650663,0.32009628,0.078518994,-0.1175519,0.1290759,-0.50484496,0.42856956,-0.45553732,-0.08358943,-0.29453874,0.10687768,-0.18396549,-0.2598697,0.3356949,0.011719002,0.40484804,-0.41253904,-0.22948326,-0.266443,0.5399789,0.24611795,0.20607425,0.5105691,-0.24131186,-0.05821434,0.080239184,0.45739326,0.93512744,-0.34914094,0.049264178,0.33422107,-0.45069516,-0.4922032,0.4337721,-0.25764504,0.071219206,0.15101063,-0.2413212,-0.31784552,0.35059014,0.24145225,0.02385176,0.053435177,-0.73151696,-0.08366235,0.5103437,-0.39650142,-0.15136904,-0.22479726,0.20644277,0.30537683,-0.3184487,-0.3697558,-0.048404194,0.26676154,-0.23331083,-0.51382536,-0.07814933,-0.34871554,0.25983062,-0.020900892,-0.27208203,-0.055889018,0.049219977,-0.46021965,0.20280018,-0.00094492995,-0.36238593,0.06063593,-0.1943345,-0.071788505,0.8236433,-0.20938133,-0.018123893,-0.4842232,-0.36455512,-0.73408824,-0.4004791,0.27898204,0.13023642,0.06344488,-0.6065912,-0.16745818,-0.17165983,-0.106663294,-0.06485026,-0.22826211,0.4298362,0.14943463,0.46884385,-0.0518118,-0.79008913,0.36228493,-0.011644781,-0.07216482,-0.51820487,0.51809543,-0.0728359,0.70607233,-0.0070755463,0.22243899,0.17298312,-0.45304725,-0.104519844,-0.23460996,-0.18912959,-0.70022684,-0.0013838691 +33,0.28611264,-0.045588456,-0.6601573,-0.09215849,0.01502285,0.17182139,-0.28146034,0.5144429,0.1307881,-0.40398115,-0.01702707,0.080952756,-0.1362218,0.21988402,-0.32696593,-0.51045316,0.085225396,0.06024388,-0.4507398,0.37343648,-0.42840952,0.24556476,-0.15114962,0.20053647,-0.12589838,0.1866342,0.23158763,0.09755587,0.1083341,-0.28990364,0.33914688,0.22611207,-0.66944337,0.27895048,-0.16447753,-0.28114033,-0.04250504,-0.3253732,-0.41118643,-0.7434131,0.26251376,-0.80922294,0.57306474,-0.007300817,-0.4036865,0.3960629,0.27352205,0.17598683,-0.1982103,-0.19060972,0.12017162,-0.06959026,-0.36240003,-0.16648835,0.035836086,-0.31589717,-0.48977518,0.06912727,-0.51924413,0.083594054,-0.39281705,0.20954292,-0.34718192,0.27014765,-0.24743032,0.36445755,-0.40498215,-0.14294931,0.16354752,-0.07992069,0.24678388,-0.44468027,-0.09214806,-0.063183576,0.23985913,-0.005330966,-0.061941784,0.2614406,0.12711391,0.42164236,-0.21329951,-0.103898875,-0.20159823,-0.16293874,0.118529126,0.48422697,-0.24470761,-0.2721905,-0.045822464,-0.09691242,0.3343837,0.09299052,0.08816891,-0.07535825,-0.0670793,0.12471198,-0.3790386,0.32831118,0.56543547,-0.36253107,-0.015282675,0.4658937,0.58446014,0.06528182,-0.03510295,0.15426,-0.06469373,-0.44464457,-0.23324347,-0.1398413,-0.1818534,0.4769315,-0.048241753,0.2881418,0.53575224,-0.15598583,-0.035003994,0.3157097,-0.0058813393,-0.014187849,-0.18061253,-0.23678383,0.2432748,-0.43266723,0.05841944,-0.23979566,0.6204436,-0.12645718,-0.73466784,0.4244614,-0.3720559,0.086979166,-0.046212114,0.63678837,0.7175791,0.63606507,0.1369082,0.8789259,-0.5273823,-0.21464072,-0.06707467,-0.28374243,0.35783678,-0.18601784,-0.023608737,-0.34867877,0.004530797,0.2982055,-0.05982646,0.18749124,0.28410432,-0.44576278,-0.10623335,0.08187667,0.62176216,-0.20792459,-0.024132691,0.74692374,1.3533758,0.93867743,0.19196051,1.0001153,0.055497758,-0.085206784,-0.20148802,0.14612073,-0.9781651,0.2501458,0.37303,0.09362502,0.2853468,0.116137706,-0.10411307,0.44417593,-0.5178217,-0.24676356,-0.0016232178,0.53288436,-0.09728925,-0.24965762,-0.3701896,-0.15999912,0.29245317,0.06642214,0.17986466,0.37090585,-0.22970611,0.32868415,0.24454531,0.8591039,-0.059876613,0.13928157,0.20439078,0.28538805,0.13464016,-0.23944512,-0.003264913,0.152076,0.26757532,0.15720709,-0.54369134,0.11505875,-0.13762699,-0.4311489,-0.1567865,-0.31102097,-0.01639534,-0.21851608,-0.25807902,-0.21924207,-0.23330887,-0.31791827,0.3418915,-2.8365176,-0.17486414,-0.21680523,0.2766635,-0.074659035,-0.13613781,-0.038594764,-0.43278176,0.4331096,0.42473084,0.42458266,-0.5519305,0.48033333,0.45160118,-0.4625196,-0.007640288,-0.54483443,-0.02424867,-0.027342508,0.3724176,0.18472229,-0.1771319,0.008350221,0.2899283,0.3885584,0.022887945,0.14240576,0.30345872,0.3403301,-0.17648305,0.27566078,-0.17261837,0.49374706,-0.37120965,-0.18584412,0.322069,-0.69978994,0.24632171,-0.3363897,0.13566203,0.24633066,-0.38817802,-0.841179,-0.5516461,-0.1556007,1.5492821,-0.27018026,-0.6597185,0.107868195,-0.14285852,-0.352762,-0.04053569,0.3674578,-0.2718611,-0.0340203,-0.85749656,0.08166012,-0.34396964,0.28054315,-0.165074,-0.049698435,-0.53196084,0.65931916,-0.0901425,0.6709953,0.2916733,0.12800075,-0.42993638,-0.30157697,-0.011465659,1.0357486,0.6784164,0.10442774,-0.12693591,-0.11947604,-0.20210545,-0.18335792,0.14966148,0.74244654,0.49937394,0.08607061,0.17062292,0.25480053,-0.0069438657,-0.00027818634,-0.08589783,-0.33975995,-0.09647115,0.09139326,0.71404135,0.6391062,-0.26316884,0.059033062,-0.018113706,0.27074564,-0.28270167,-0.42248896,0.41561854,0.45323408,-0.06232634,-0.2609964,0.72142655,0.59030944,-0.16542605,0.51490057,-0.5674009,-0.57360935,0.23977147,-0.07973427,-0.22237632,0.17184165,-0.29119352,0.10411239,-0.7344066,0.391405,-0.4271628,-0.79708266,-0.4961874,-0.042458452,-3.1104035,0.04361393,-0.07523081,-0.121510014,-0.3261199,-0.093316756,0.35397515,-0.44816086,-0.7549022,0.0070752734,0.09876262,0.6356273,-0.1277444,-0.06528611,-0.09323232,-0.3583353,-0.20016289,0.12006117,0.23421417,0.24220756,0.054110922,-0.3580117,-0.2598477,-0.28769,-0.33901978,-0.10426049,-0.34613118,-0.4382167,-0.13452639,-0.34586936,-0.1825095,0.6167688,-0.3527926,-0.0073516737,-0.29155648,0.020549534,-0.090073936,0.35752928,0.04085488,0.14356701,-0.026685545,-0.24454212,0.10825158,-0.33354574,0.495669,-0.030466259,0.43610147,0.44439527,-0.33795893,-0.0019169336,0.5912809,0.5691181,-0.08327002,1.0329101,0.10388624,-0.07667721,0.37991598,-0.15589556,-0.3090246,-0.42443487,-0.1500229,0.23820797,-0.34685224,-0.20134772,-0.026319297,-0.34843698,-0.83202994,0.4693173,-0.027883004,0.24290441,-0.18743397,0.3244948,0.29215446,-0.018698262,-0.10868655,-0.19519949,-0.157866,-0.45411536,-0.28919703,-0.81820476,-0.36768538,0.012593044,0.96709126,-0.11475844,-0.012048084,0.16570441,0.10917136,0.16345993,0.04921406,0.21805796,0.0643668,0.3496418,0.106278926,-0.64456546,0.39061838,-0.25467372,-0.044742387,-0.6408304,0.05581768,0.48838475,-0.5989593,0.3361509,0.48471928,0.17518005,-0.028991185,-0.72341084,-0.08850336,-0.06783008,-0.23076572,0.4530636,0.3558572,-1.0902123,0.6244468,0.36471635,-0.27411312,-0.59379494,0.5037175,-0.1117472,0.11384256,-0.010015974,0.41724703,-0.011951355,0.019880982,-0.064395264,0.19108321,-0.34362918,0.32051337,0.16382283,-0.1718927,0.5489714,-0.26034886,0.0026559418,-0.5220048,-0.08322878,-0.5965145,-0.07798466,-0.058988035,-0.16452307,-0.14757007,0.18313466,0.068450615,0.46190885,-0.40156028,0.089965455,-0.08251275,-0.35918996,0.47886416,0.55354726,0.5075515,-0.36385533,0.7101006,0.1873743,-0.03746714,-0.19414097,0.014944205,0.46349475,0.003380512,0.34811532,0.1647714,0.06340706,0.23699385,0.8244792,0.16515169,0.33477384,0.06438237,-0.12524644,0.20363666,0.049076274,0.14588788,0.10236541,-0.56638235,-0.060423907,-0.3391012,0.13303365,0.55676407,0.17658156,0.39603487,-0.087062925,-0.313319,0.062931634,0.23701873,-0.21967179,-1.3816744,0.47263706,-0.0046461085,0.6809563,0.38667658,0.08659156,0.10911063,0.5810571,-0.10602085,0.06862248,0.25506586,-0.019124731,-0.45053992,0.651051,-0.86779225,0.481832,0.042650536,0.03929681,0.14370142,-0.041595016,0.42082736,0.7442324,-0.034238517,0.16869868,0.058574576,-0.30929285,0.2124864,-0.36988208,0.15909846,-0.258845,-0.22709168,0.627807,0.4289923,0.47037113,-0.26987612,-0.018195044,0.021555573,-0.19390449,0.20179224,-0.11390884,0.13922289,-0.34159952,-0.45319417,-0.14176014,0.45435122,0.21201529,0.1509175,-0.06059203,-0.104113966,0.240132,0.02379377,0.07457463,0.007246467,-0.52802426,0.10847884,-0.35525757,-0.38487074,0.2472345,-0.11235301,0.25900137,0.263391,0.06023033,-0.3424118,0.085172705,0.077769116,0.5779983,-0.05122706,-0.24428302,-0.19654736,0.15078592,0.16026203,-0.27236497,-0.018066676,-0.39901888,0.11426859,-0.46860936,0.42296457,-0.38542286,-0.35480398,0.2480833,-0.17717694,0.013823757,0.42691943,-0.27659413,-0.11449296,0.013635506,-0.11765304,-0.18840814,-0.39536387,-0.20002827,0.0587711,0.07141857,-0.058293976,-0.09138464,-0.13291083,-0.1704634,0.15454096,0.09179624,0.16406378,0.5438466,0.024460059,-0.4683237,-0.013960628,0.024322303,0.58662456,0.031749465,-0.10110913,-0.476558,-0.6396008,-0.36829174,0.45453116,-0.028546821,0.22607344,0.1268328,-0.17125331,0.5042762,-0.01935548,0.75727326,0.11334122,-0.27024487,0.045336504,0.70471126,-0.02860415,-0.19842988,-0.21550342,0.86258656,0.5173837,-0.2042251,-0.06610553,-0.5118543,-0.02018017,0.10961296,-0.20422395,-0.27911618,-0.046397455,-0.86198723,-0.14821993,0.13214605,0.4139603,0.04889321,-0.13275836,-0.03260732,0.33157083,0.22039758,0.13375495,-0.4596663,-0.14288369,0.5190244,0.09874598,-0.17646316,-0.061668772,-0.34773305,0.19426724,-0.6424438,-0.1035832,-0.2927177,-0.0017166688,-0.12653975,-0.4644775,0.15742208,-0.0018182168,0.24435924,-0.22533189,-0.27712232,0.16368225,0.26775783,0.23700966,0.15415166,0.5864599,-0.14099035,0.019227443,0.12747526,0.5000609,0.85247934,-0.16023342,0.106721014,0.10344183,-0.41035435,-0.78164315,0.13019894,-0.3463839,0.3125629,-0.13020323,-0.37147692,-0.56632435,0.36679834,0.19900614,0.0024980397,0.07125473,-0.45454848,-0.21228816,0.08219561,-0.41031355,-0.21274918,-0.3717562,-0.1028963,0.5345806,-0.17642856,-0.19228008,0.07440085,0.38833237,-0.20082997,-0.5773498,-0.048854902,-0.29739365,0.25331125,0.030811597,-0.38596252,-0.0052962303,0.09643707,-0.36313564,0.382174,0.21938442,-0.24403447,0.0525778,-0.3885116,0.14753269,0.5717649,-0.20769209,0.14144193,-0.51698875,-0.5920138,-0.81786036,-0.32583874,0.3472843,0.21354786,-0.036240127,-0.61589277,-0.08588183,-0.27720627,-0.017285805,-0.15045235,-0.38355243,0.36779326,0.16163523,0.36972588,-0.07067612,-0.7250918,0.013241436,0.027003665,-0.055602446,-0.26380068,0.64288723,-0.13415888,0.64633346,0.10014378,0.14186025,0.14944175,-0.6015075,0.19472817,-0.1106976,-0.070011415,-0.47834498,0.1714449 +34,0.36943275,-0.24521293,-0.5305809,-0.051618338,-0.31731045,0.09223142,-0.10210958,0.49013528,0.19558404,-0.2596907,-0.3140149,-0.36839056,0.03350949,0.34643635,-0.24877949,-0.24925843,-0.22961289,0.2309403,-0.61259913,0.5101184,-0.2889759,0.07221377,0.22053948,0.3804634,0.49661115,0.056780323,0.13118483,0.1530264,0.14628252,-0.31156892,-0.1483786,0.15365472,-0.44723547,-0.015938293,-0.36852616,-0.5654344,-0.14515969,-0.72528917,-0.4395976,-0.80976814,0.49882507,-1.0227729,0.61718464,0.05068442,-0.31325185,0.36331242,0.48908183,0.3480704,-0.050215982,-0.20780613,0.1534449,-0.24417943,0.09827187,0.043278337,-0.41657498,-0.21025454,-0.6140117,-0.09398424,-0.37965515,-0.19713706,-0.3309498,0.10607264,-0.37620106,0.15087141,0.004218302,0.42965043,-0.37055197,0.014742651,0.30045778,-0.2517901,0.2497643,-0.52705055,-0.2030374,-0.03291328,0.31121275,-0.19659692,-0.13463615,0.27092075,0.21927537,0.36388996,-0.17472933,-0.08237812,-0.30875042,-0.12692872,0.01610874,0.6785635,-0.090947874,-0.37866223,-0.12754732,0.1862048,0.35106048,0.58979625,0.28857037,0.040605698,-0.065058105,-0.09939249,-0.123133905,0.6380838,0.40317994,-0.5859499,-0.29030344,0.3566617,0.54525656,0.3851333,-0.14651138,-0.032093428,-0.042820428,-0.51150995,-0.07035962,0.052208032,-0.47648776,0.57704425,-0.14246112,0.287122,0.5574316,-0.17110057,0.016458642,0.038508542,0.058536377,-0.23515996,-0.27280846,-0.24248153,0.4294451,-0.47722128,0.37367907,0.08182729,0.77705675,0.14824954,-0.36275244,0.20136298,-0.6273611,0.2996793,0.026271397,0.37501782,0.65622777,0.38194466,0.45323464,0.8838553,-0.23938726,0.04934817,-0.10362596,-0.36486903,0.005986023,-0.2798305,0.1015028,-0.561431,-0.0380504,-0.024038337,-0.002314134,0.30355775,0.46072453,-0.5419854,-0.21901092,0.21041423,0.7991815,-0.1687016,-0.009910849,0.8709236,1.0707074,1.1245946,-0.11266677,0.9357632,-0.10529005,-0.28443223,0.097559124,0.05797634,-0.6606891,0.2731113,0.5609508,-0.55126303,0.40591142,-0.05728433,0.09507784,0.2652069,-0.5116802,-0.17100644,-0.06034098,-0.1812508,0.15957972,-0.008924892,-0.5009613,-0.16856699,-0.18469748,0.11344864,0.16992027,0.25021866,-0.10683287,0.4595789,-0.03351548,1.4331703,-0.17190991,0.059850443,0.2626869,0.54272896,0.21613628,-0.14026465,-0.08025215,0.40104952,0.2927541,0.24192381,-0.6065149,0.17392917,-0.29805386,-0.18260585,-0.060507976,-0.518568,-0.3022774,0.1510945,-0.2822499,-0.16996016,-0.43725812,-0.30251917,0.4344237,-2.9635496,-0.12042635,-0.18852767,0.33391058,-0.3203398,-0.35143343,0.123599075,-0.5789706,0.38516614,0.31274542,0.6082888,-0.5658281,0.20061742,0.5612007,-0.9119234,-0.088898204,-0.64085335,-0.21271086,0.089507274,0.31153,-0.025961464,-0.1169722,0.20291094,0.20381485,0.40945262,0.34235534,0.109587386,0.31145218,0.59607536,-0.26060545,0.7840032,-0.38922167,0.509101,-0.28130084,-0.112458535,0.28478947,-0.2487362,0.3967038,-0.5886427,0.043704584,0.79238415,-0.4231758,-0.972051,-0.5810757,-0.018738605,1.2704924,-0.35418046,-0.5217529,0.16668387,-0.3282603,-0.21069965,-0.27032778,0.63880926,-0.09404991,-0.14715539,-0.6885256,-0.016436046,-0.081723765,-0.028242566,0.01777745,-0.19047265,-0.4582307,0.71819425,-0.00944447,0.61151236,0.18575855,0.06111274,-0.30136317,-0.38199723,-0.020784318,0.66104895,0.55630845,-0.057216205,-0.32460278,-0.0885747,-0.54810154,-0.1482266,0.04230349,0.58165735,0.49714425,-0.14996423,0.19030382,0.3356412,0.11102578,0.15260425,-0.16935283,-0.29496047,-0.24656259,-0.31364793,0.56841606,0.62734777,-0.06936241,0.28375027,0.1943356,0.20598911,-0.13412789,-0.4843419,0.37315118,1.0878171,-0.17034239,-0.43319118,0.64747155,0.4456201,-0.0761732,0.432644,-0.46224576,-0.3506579,0.61761856,-0.23830682,-0.6679248,0.19670989,-0.20902723,-0.0710551,-0.7614898,-0.116211765,-0.36692002,-0.22564574,-0.39629564,-0.056234714,-2.7176354,0.28088376,-0.4015071,-0.16578232,-0.22762147,-0.29695523,-0.06051283,-0.42087972,-0.8134603,0.12804057,0.21627909,0.80524707,-0.33302295,0.17676017,-0.21117598,-0.35623464,-0.39035285,0.24060312,0.09460869,0.4142258,-0.23505668,-0.42947987,-0.14377202,0.08593528,-0.42155206,0.013715733,-0.4630498,-0.20858426,-0.10102273,-0.40052092,-0.16699563,0.6709838,-0.30916956,0.15733154,-0.101739615,0.01884939,0.05186696,0.07247139,0.013307664,0.12502044,-0.00962974,-0.07648038,0.2642552,-0.18316509,0.60301566,0.049055625,0.38991365,0.11621931,-0.039641682,0.33770657,0.2357309,0.48593512,-0.07031283,0.94141215,0.3047575,0.016408406,0.1419381,-0.13703194,-0.3385883,-0.5205487,-0.0408821,0.07433789,-0.3826995,-0.5139139,-0.23035984,-0.2776201,-0.7892078,0.6149484,0.14549412,0.5752908,-0.20660233,0.61558014,0.73532104,-0.42951107,0.05872741,0.18284778,-0.03623176,-0.59849304,-0.059678208,-0.5883315,-0.28062907,0.13401042,0.58293587,-0.3734227,0.09895463,0.16134882,-0.24698061,0.15237848,0.2767565,0.06665004,-0.022480749,0.72673,-0.0007199157,-0.60105187,0.4612784,-0.03265667,-0.09025492,-0.6641415,0.40399924,0.34067643,-0.49553013,0.47432345,0.39253223,-0.007315736,-0.30138513,-0.3919299,0.09072889,-0.20138346,-0.2759671,0.24544774,0.34102023,-0.65845287,0.3107549,0.036115758,-0.07439084,-0.82861614,0.67635703,0.006942619,-0.4859021,-0.059893813,0.27873203,0.38090333,-0.026104247,-0.16333221,0.19644183,-0.32194594,0.27918652,0.10787902,-0.12665276,0.2541014,-0.17477606,-0.17274895,-0.7792484,0.38041514,-0.40909547,-0.24616732,0.63689977,0.018730747,0.06391301,0.30540913,0.17342867,0.27801454,-0.10208546,0.16666377,-0.18136472,-0.22183639,0.5619181,0.5279259,0.5094131,-0.6971259,0.7065403,0.051842157,-0.34170857,0.31989858,0.10538824,0.39299366,-0.099121094,0.44514617,0.088187,-0.46961787,0.07128853,0.45514333,0.2789288,0.156247,0.16657104,0.165848,0.16435105,0.030373357,0.15186076,-0.20677948,-1.022796,-0.044266056,-0.49010772,-0.08368506,0.5638488,0.119009525,0.11522328,-0.070191555,-0.328722,0.035553653,0.04319571,-0.13319196,-0.9708742,0.11906678,0.13933307,1.0112242,0.5061129,0.04628031,-0.0060013155,0.6844197,-0.1596334,0.018680584,0.43775386,0.26204488,-0.33038348,0.60273224,-0.627157,0.69942975,0.16025604,-0.16496149,-0.02703427,-0.04194891,0.35305378,0.7695113,-0.33145916,-0.03773274,-0.04061024,-0.355426,0.2240929,-0.3515143,-0.13529573,-0.7642635,-0.23091358,0.60680676,0.4525472,0.32113984,-0.14366728,0.077722505,-0.021232039,-0.2314751,0.20959915,0.18226513,0.18241745,-0.043211665,-0.6634243,0.0986358,0.41868666,0.060122013,0.19036144,-0.017439894,-0.15402903,0.22533678,-0.101577066,0.030043678,-0.23036748,-0.78266233,0.0018883185,-0.4352745,-0.6258756,0.39847043,0.008638626,0.3839386,0.18113568,0.046003763,0.061893463,0.4005212,-0.02944734,0.9322237,-0.11180334,-0.08238847,-0.53002876,0.2300765,0.0072676484,-0.14747085,-0.0125445565,-0.1103803,0.21709065,-0.3625333,0.5472009,-0.046940263,-0.33241272,-0.10143032,-0.20526724,-0.0505244,0.5853544,-0.060731675,0.091052145,-0.12029915,-0.21157865,-0.3598098,-0.43675402,-0.10683644,0.10476882,0.14925157,0.13943674,-0.1926884,-0.021866795,-0.11463776,0.37834436,-0.26907575,0.43641624,0.18961026,0.0019925265,-0.26954305,-0.14276303,0.09293225,0.59560543,-0.14969738,-0.322888,-0.26091692,-0.60095197,-0.39774218,0.35562688,0.011768731,0.47871026,0.12925005,0.21719976,0.7051316,-0.13206077,0.985758,-0.07211203,-0.48765525,0.13248184,0.58465004,0.026719032,-0.34758168,-0.21886438,0.94792044,0.35762927,0.06798992,-0.0773695,-0.39942238,0.14644535,0.0076670377,-0.07834552,-0.1374949,0.0237136,-0.34362814,-0.43451074,0.12838767,0.24447675,0.4520755,-0.3157557,0.16580048,0.52760506,0.06420083,0.34808016,-0.30960256,-0.779718,0.35600263,0.1503167,-0.19717306,0.1382696,-0.6119297,0.40084276,-0.51966524,-0.08400006,-0.55583626,0.16217735,-0.18698539,-0.28785273,0.29169938,-0.06668654,0.49295834,-0.2777615,-0.37467453,-0.21246599,0.34642917,0.20076571,0.17479819,0.46804506,-0.29995137,-0.078150876,0.012546823,0.4710701,1.0271327,-0.19102818,-0.021967346,0.26217547,-0.45745096,-0.600793,0.3094921,-0.51580906,0.29117852,0.24797778,0.116653726,-0.42679837,0.15975726,0.061064433,-0.00012790343,0.04907242,-0.7696717,-0.32732388,0.050456807,-0.3134632,-0.098680146,-0.5468245,-0.051353637,0.50424814,-0.10496008,-0.28134155,0.14594804,0.17028776,0.11491526,-0.7208401,0.043305818,-0.23780021,0.14962913,-0.1756543,-0.36047208,-0.18835579,0.101209566,-0.52101535,0.2590516,-0.040757265,-0.2725021,-0.0018175759,-0.35228717,-0.05342187,1.0148177,-0.48442987,0.055966616,-0.2549062,-0.5138393,-0.66545737,-0.38245544,0.2570547,-0.093498826,0.12609954,-0.66244596,-0.054483283,-0.27727854,-0.20210028,-0.04286597,-0.14368461,0.3473376,0.13099402,0.46954262,-0.17323637,-0.7251759,0.4343111,-0.10058446,-0.13438047,-0.64313227,0.46966496,0.06096419,0.7507309,0.027556349,0.1576707,0.33916643,-0.5627962,-0.22857767,-0.06351905,-0.13593945,-0.57974666,0.034971364 +35,0.39797255,-0.11220067,-0.57722735,-0.24562782,-0.48370212,0.086108215,-0.35746977,0.2348191,0.29992616,-0.3305756,-0.2569161,-0.24906777,0.18743426,0.31099054,-0.05720145,-0.70458424,0.15297304,0.3552092,-0.7565742,0.32717085,-0.6244695,0.4185848,0.15710226,0.43957442,0.18172738,0.37345928,0.25016886,-0.06998248,-0.082131274,-0.1492465,-0.2536855,0.14174426,-0.5209823,0.021902302,-0.29651967,-0.4720248,0.10162126,-0.44692978,-0.062328998,-0.8000182,0.14137991,-0.98157626,0.53363895,-0.044001997,-0.23981097,-0.16903411,0.5184727,0.30921227,-0.45670876,0.25313595,0.18335755,-0.38449982,-0.2535386,-0.48429665,-0.28761598,-0.5188912,-0.5574851,-0.19669078,-0.55843794,-0.35758007,-0.18968041,0.27791047,-0.26271385,0.10890524,-0.055751618,0.26701772,-0.37324733,-0.016213706,0.32238102,-0.3571248,0.09039916,-0.48356915,-0.036570396,-0.123593606,0.5921643,0.07864182,-0.23667358,0.35966456,0.41113868,0.5246289,0.28910863,-0.26784986,-0.39293692,-0.26058796,-0.06120469,0.53796315,-0.12744766,-0.183875,-0.28838503,-0.1816512,0.35296285,0.5049013,0.014067107,-0.086422905,0.04029135,-0.32215637,-0.16585176,0.43343204,0.5133326,-0.43964446,-0.28636706,0.17715016,0.54140306,0.018572252,-0.32186922,0.09380691,0.16968364,-0.6313098,-0.24844159,0.04907397,0.045917787,0.5536406,-0.13622223,0.066555284,0.7661854,-0.05237677,0.038640976,-0.051504456,0.12817748,-0.1743496,-0.40659383,-0.28453556,0.33589894,-0.55251884,-0.11829701,-0.39098135,0.6678614,0.08039444,-0.5487702,0.48959133,-0.616246,0.061427884,-0.074873455,0.55838645,0.6322575,0.38006634,0.2769219,0.8179332,-0.20029303,0.23071964,-0.09540342,-0.27668113,0.121562704,-0.27827498,0.3376905,-0.42686364,0.3420468,-0.22741278,0.08322504,0.32324106,0.7345705,-0.43574816,-0.25878322,0.35373095,0.89005876,-0.3646816,-0.059777625,0.6299759,1.0483739,1.1728287,-0.079750136,1.2960429,0.41616076,-0.31403944,-0.2029229,-0.12557222,-0.56849635,0.1401217,0.19530566,-0.08807344,0.24957822,-0.1077576,-0.07571916,0.34556806,-0.323484,0.0034907688,0.01849262,0.19047913,0.09153095,0.11705831,-0.49975127,-0.20664747,0.12992097,-0.070447475,0.47614992,0.27969033,-0.30147383,0.4127812,-0.26613453,1.4720991,-0.05376864,0.07113419,0.23779385,0.5193784,0.37684706,-0.17566817,-0.04261684,0.4113981,0.17146803,-0.1372622,-0.5435255,0.09763791,-0.4016894,-0.2700316,-0.21949029,-0.40409258,-0.18764012,0.037700973,-0.42641932,-0.32824802,0.017236412,-0.36925462,0.38218307,-2.4353075,-0.37471014,-0.15463202,0.41465107,-0.23561452,-0.20982471,-0.5203525,-0.534927,0.35090506,0.106470056,0.5124043,-0.50941896,0.5584667,0.6344892,-0.5164102,-0.361887,-0.6902421,-0.011832494,-0.18877584,0.17958471,0.023707481,-0.40697446,-0.26969653,0.119243145,0.67139906,0.010752697,0.18751042,0.6474156,0.46978092,0.21508947,0.664867,0.04719525,0.6268105,-0.42914233,-0.27757305,0.3582186,-0.49281856,0.16508238,-0.20339431,0.12709872,0.71708894,-0.6017462,-0.99225795,-0.7047269,-0.096714534,0.8813655,-0.36863822,-0.6163541,0.084667616,-0.16670305,-0.18351103,0.20625709,0.7723472,-0.06135507,0.25944206,-0.6953138,0.08748814,0.04440065,0.2986205,0.10961339,-0.0040628817,-0.40775138,0.70479214,-0.18093036,0.47632602,0.08879215,0.24111421,-0.38278395,-0.23985133,0.10499439,0.89424163,0.13242105,0.059732113,-0.22354446,-0.28682846,-0.24605069,-0.27905992,-0.04054087,0.6170066,0.7170848,-0.20412898,0.16095644,0.4354931,-0.06409593,0.08380615,-0.16760461,-0.28552052,-0.08275115,0.13475358,0.5348728,0.79915625,-0.0030090695,0.4287454,-0.22677723,0.5490858,-0.3920747,-0.61678654,0.5440005,0.62548965,-0.20642884,-0.11142396,0.5438474,0.4909948,-0.6019348,0.60817695,-0.8056473,-0.5286562,0.5042108,-0.18569177,-0.42330676,0.1780307,-0.33906782,0.24344124,-0.6529767,0.16626072,-0.19578153,-0.31611106,-0.45173308,-0.33310336,-2.9522905,0.3334403,-0.04514139,0.08435827,-0.23460759,-0.075652845,0.30587906,-0.52356744,-0.5619185,0.08332589,0.23596287,0.73581374,-0.081875555,0.1855091,-0.34160584,-0.35712713,-0.15396605,0.30579227,0.006030078,0.31341556,-0.052981,-0.46256483,0.08293799,-0.019488137,-0.45690867,0.051722784,-0.73263544,-0.4644775,-0.088084474,-0.6361894,-0.3491481,0.6068544,-0.55614144,0.09471896,-0.37065023,0.10716375,-0.19106875,0.017932901,0.1466468,0.24997407,0.18709286,-0.14321494,0.22336677,-0.21549273,0.4323858,-0.12817457,0.2502256,0.13745862,0.09806083,0.0032362158,0.34589735,0.67168164,-0.23171768,1.1204362,0.2310401,0.011683964,0.20208819,-0.29170275,-0.29282507,-0.45466515,-0.31412128,-0.14335403,-0.505041,-0.384968,0.0058789025,-0.32060513,-0.85035646,0.7394718,0.054271843,0.24963917,0.025495112,0.4212007,0.39714986,-0.30203244,-0.058063462,-0.059599824,-0.12635861,-0.38058096,-0.2693848,-0.72033626,-0.5430755,0.23326617,0.97806895,-0.3837046,0.07898005,0.13498607,-0.18806031,-0.0023288017,0.35143763,0.1933658,0.22884059,0.66276836,0.008071088,-0.6271511,0.25439608,-0.2811639,-0.14627862,-0.59972006,0.14251274,0.7225422,-0.89110476,0.70781195,0.5072057,0.07962256,-0.20997477,-0.5181067,-0.23216587,-0.011092415,-0.23799445,0.40207213,0.12278696,-0.8202001,0.41748813,0.21640667,-0.5468616,-0.7436374,0.2043834,-0.21456665,-0.33108887,-0.12389346,0.40273842,0.27355677,-0.1261985,-0.19515419,0.01964378,-0.4527079,0.2543693,0.13655171,-0.07874218,0.514615,-0.23046957,-0.3569813,-0.77344966,-0.12735373,-0.45691025,-0.29269168,0.2886674,-0.07003938,-0.03903451,0.37846866,0.055268984,0.34004456,-0.2571994,0.074556574,-0.20910607,-0.27099082,0.2521689,0.2450342,0.45784223,-0.42315677,0.658535,0.016967379,-0.2425968,0.11926126,-0.032999154,0.3562539,0.042173427,0.6119156,-0.20139845,-0.17967036,0.3028556,0.7116474,0.18207575,0.46642727,0.26760596,-0.06196582,0.30259842,0.073381156,-0.05951488,-0.10819466,-0.4520659,-0.020102564,-0.33902976,0.18206836,0.52631193,0.2207873,0.52187455,0.113869995,-0.111179754,0.030520616,0.22241364,-0.37612152,-1.1251352,0.23218727,0.26272878,0.8708481,0.3533312,0.15260457,-0.32215744,0.60327125,-0.19239958,0.16449703,0.34530416,-0.07459772,-0.33920696,0.7975904,-0.5024104,0.4610853,-0.30435684,-0.069809094,0.09641704,0.20123771,0.41797277,0.82261854,-0.09853714,0.09198889,0.011192741,-0.20277621,0.022639852,-0.252787,0.084642425,-0.4514372,-0.36096317,0.8430053,0.37593862,0.4847214,-0.16990305,-0.15482217,0.014872755,-0.16989629,0.13471286,0.008297732,0.08704743,0.1337884,-0.5912813,-0.029274046,0.5610344,0.10846488,0.19148847,0.039442554,-0.3569361,0.20532015,-0.21564132,0.22493488,-0.08540491,-0.67971647,0.015992014,-0.3543568,-0.59108937,0.51336914,-0.117589876,0.08089293,0.18069285,0.05351563,-0.07937626,0.37080938,0.13570566,0.78316885,0.08509931,-0.16566047,-0.17542681,0.2044099,0.2734695,-0.34660733,0.1368638,-0.46751112,0.19628789,-0.6553358,0.6141436,-0.20253134,-0.44847167,0.30465147,-0.086785905,-0.08380599,0.5437896,-0.15239675,-0.040572014,0.152393,-0.15742522,-0.46497992,0.031314198,-0.45808363,0.18813089,0.09044993,-0.11934969,-0.25040683,-0.19049941,0.062189046,0.53334785,-0.087601885,0.3626839,0.37403548,0.2955467,-0.0847753,0.29731968,0.075140804,0.6955165,0.050639458,-0.039139714,-0.40733194,-0.4002852,-0.26568532,0.4546263,-0.0839934,0.17608148,0.16545175,-0.28877637,1.0783043,-0.025713142,1.0858797,0.0747613,-0.3762253,0.09302902,0.5149488,0.10207906,0.0527014,-0.37216404,1.0768036,0.5838085,-0.2565147,-0.06907041,-0.34143475,-0.13837855,0.38618916,-0.42359117,-0.1786177,-0.086513035,-0.69832104,-0.44817767,0.30007404,0.32622454,0.25648946,-0.2552362,0.42692775,0.093950786,0.19825247,0.2815456,-0.7075773,-0.29689506,0.28283325,0.42582148,-0.16339302,0.22483198,-0.28853515,0.3263141,-0.7977434,0.09303951,-0.65416473,0.04608289,-0.17353882,-0.48333898,0.19685364,0.21434556,0.34601104,-0.37345988,-0.30329192,-0.1088162,0.49451712,0.16932064,0.22293904,0.61397564,-0.2745194,-0.1240374,0.092050314,0.71014875,1.4004188,-0.45980594,0.02795296,0.45180196,-0.4515556,-0.7634385,0.32337168,-0.5389858,-0.12590139,0.006431639,-0.5786885,-0.41170275,0.26510268,0.14580235,-0.0018018186,0.14127992,-0.44620323,-0.000106774845,0.26499608,-0.19794115,-0.20957616,-0.13662575,0.43443763,0.58782387,0.019539138,-0.31480363,-0.018280277,0.39769384,-0.37760845,-0.5890666,0.08977066,-0.3850488,0.37236336,0.17084478,-0.2625715,-0.023041992,-0.01391171,-0.59150285,0.08907977,0.17519954,-0.35080928,0.1932911,-0.4085934,0.08673591,0.8799792,-0.04013588,0.015276661,-0.5048512,-0.5306989,-0.953087,-0.23930615,0.29900283,0.06288673,-0.017631318,-0.3319321,0.08172734,-0.23035452,-0.39124373,0.22277552,-0.42320046,0.36820114,0.22935078,0.44167078,-0.3087289,-0.96614397,0.08289779,0.10760776,-0.4448266,-0.6288859,0.53686374,-0.13951103,0.9311494,0.1528348,-0.08314938,0.14177233,-0.39310697,0.42694232,-0.42329562,-0.06338383,-0.80089164,-0.1458661 +36,0.4338906,0.051807947,-0.4702287,-0.27103922,-0.3137801,0.19133355,-0.12325311,0.29022613,0.24990477,-0.27922854,0.037046064,-0.15964788,-0.12528887,0.3298804,-0.088876724,-0.70420104,0.07620961,0.1482368,-0.74648625,0.5479071,-0.49603906,0.36717898,0.06042134,0.39337394,0.08178457,0.23849702,0.17835213,0.02580815,-0.008586345,0.024136733,-0.09608332,0.29300788,-0.5899709,0.07227706,-0.05809217,-0.17321555,-0.09886539,-0.37281367,-0.20547199,-0.6616285,0.27109078,-0.5167661,0.49974987,-0.056766413,-0.4467596,0.05236034,0.1703694,0.30361468,-0.37400818,0.020328857,0.25118208,-0.10364438,-0.040384125,0.014397414,-0.31889427,-0.50117385,-0.6149228,0.07762458,-0.64386165,-0.14854379,-0.22451262,0.24437688,-0.2762899,-0.01247677,-0.080150284,0.58528453,-0.3260054,-0.05242671,0.21860169,-0.24099398,0.04712295,-0.4082994,-0.14328419,-0.11681488,0.27609128,0.097992115,-0.16751757,0.13391739,0.35556442,0.5707358,-0.041054536,-0.2439709,-0.20701462,0.0046735923,-0.013078707,0.48919147,0.020569468,-0.2078679,-0.24357082,-0.012921802,0.035691563,0.13996467,0.070754,-0.39661723,-0.0155816395,0.053127903,-0.27253225,0.3184388,0.3691759,-0.5347761,-0.27830693,0.39682052,0.44068477,0.11156297,-0.2328508,0.23255159,-0.041212924,-0.51058215,-0.28495756,0.22870718,-0.084348015,0.43375188,-0.107095085,0.21000578,0.70858544,0.009111341,-0.16127163,-0.07533574,-0.068995886,0.04599803,-0.19255129,-0.043426637,0.112118796,-0.41224056,-0.06690697,-0.21915977,0.6784995,0.02046762,-0.871139,0.31807798,-0.48348716,0.099149905,-0.11712532,0.5122997,0.90316325,0.30249855,0.11339567,0.8821097,-0.59907895,0.06193317,-0.03439846,-0.21461463,0.08121907,-0.07906803,0.093465194,-0.6201557,0.05100545,0.15246235,0.012275314,0.06453484,0.24838762,-0.4181467,-0.1826378,0.05989917,0.7696509,-0.33172074,-0.22429729,0.63624597,0.9457268,0.9184831,0.14530583,1.1460437,0.26548904,-0.12464909,0.17438148,-0.4879035,-0.5639431,0.18771172,0.26206815,0.24104628,0.3337455,0.056838002,0.10361778,0.4546381,-0.21840464,0.20715979,0.02130353,0.11784594,0.09232577,-0.06651523,-0.28071153,-0.3161622,0.20790288,0.007615002,0.08308949,0.21046829,-0.20056547,0.33882496,0.030712893,1.468513,0.2302053,0.09832232,0.099617735,0.37794188,0.280311,-0.22071438,-0.23233318,0.32452267,0.36393294,-0.050715048,-0.44909292,0.029118475,-0.2527369,-0.35627607,-0.17653595,-0.3703241,-0.001088957,-0.089572094,-0.50049865,-0.108442426,0.007150857,-0.41899034,0.5273892,-2.8549702,-0.18557432,-0.11411392,0.22916263,-0.20502461,-0.27681255,-0.34468162,-0.46571797,0.26176178,0.5038226,0.3104045,-0.50497127,0.55907834,0.24202485,-0.28624976,-0.1381962,-0.5967162,-0.16342306,0.0064513367,0.29290977,-0.1286783,-0.043089908,-0.29069665,0.45511264,0.60781914,-0.008149131,-0.0053703943,0.2885293,0.47792026,0.012194046,0.6664358,0.15065292,0.45932972,-0.11349082,-0.13211507,0.29489428,-0.52574736,0.29331398,0.21857847,0.14866383,0.4115199,-0.49508223,-0.871287,-0.51841414,-0.12035124,1.1361165,-0.3843996,-0.20345983,0.28207678,-0.14571482,-0.28964177,-0.02091033,0.52691317,-0.10100018,-0.00847114,-0.68983203,0.041234683,0.075467266,0.20843248,-0.10463951,-0.03198417,-0.29923192,0.532687,-0.08635307,0.6163873,0.26851645,0.09248861,-0.24742985,-0.47599757,0.035688963,0.9948482,0.31414187,0.101526015,-0.08441749,-0.1546749,-0.44726995,-0.07736925,0.18407895,0.44432607,0.5748178,0.114122435,0.26707643,0.3717151,-0.30092934,-0.0039062263,-0.107157424,-0.3018275,0.011516932,0.12322311,0.4818569,0.53046095,-0.16959123,0.48076713,-0.08203336,0.12513617,-0.18650764,-0.5021463,0.60732114,0.6386022,-0.108305715,-0.25612342,0.50255007,0.4030272,-0.23048037,0.35831723,-0.45557246,-0.38137582,0.6373789,-0.099500194,-0.32004443,0.16341661,-0.28152326,-0.037412483,-0.9331961,0.12422535,-0.030327085,-0.41238168,-0.43871263,-0.18819278,-3.8195298,0.14285837,-0.045612846,-0.15377112,-0.083569504,-0.08491972,0.31097594,-0.44063658,-0.60407764,-0.028389424,0.0888103,0.60495496,-0.06588823,0.1834387,-0.2826851,-0.21582103,-0.2975523,0.27962592,0.100609474,0.40488386,0.07477582,-0.3670625,0.06929481,-0.3407014,-0.4692749,0.026185745,-0.45917228,-0.47680098,-0.12493615,-0.4647643,-0.30563885,0.6686936,-0.29069197,-0.06577525,-0.32097894,-0.052101653,-0.026861278,0.42787254,0.26473853,0.18100283,0.062682025,-0.057397183,-0.18808013,-0.39763227,0.15545471,0.07598397,0.2638612,0.3900252,0.088860795,0.289637,0.58223337,0.5558999,-0.08295819,0.6287974,0.2653876,-0.001913621,0.376123,-0.3071643,-0.20114341,-0.57410353,-0.28141725,-0.3821558,-0.3721444,-0.44748524,-0.18414326,-0.35894945,-0.7606689,0.3675696,0.034022503,0.016120426,-0.14916314,0.26975983,0.2523066,-0.19911154,0.101942025,-0.17448902,-0.2623502,-0.37570113,-0.43757847,-0.5821102,-0.47967216,0.23763178,1.0509928,-0.20926188,-0.1149325,-0.032204263,-0.21061464,0.044349257,0.0056381305,0.24260876,0.28473213,0.2973464,-0.14782855,-0.6346676,0.37361035,-0.32430524,-0.05393018,-0.677012,0.043096147,0.5517389,-0.5233511,0.58631855,0.1514864,0.23058596,0.04824637,-0.5633937,-0.25425944,0.06843867,-0.23692776,0.6330464,0.15139292,-0.7115134,0.44135872,0.19106695,-0.05441595,-0.6517069,0.49830163,-0.09913016,-0.23657842,0.046672072,0.26799685,0.07102583,0.005560676,-0.18719152,0.17621242,-0.5202905,0.20157054,0.34441814,0.0667747,0.578102,-0.14503,-0.20040412,-0.445873,-0.17120221,-0.51990813,-0.280407,-0.0073770084,0.16341977,0.14759427,0.10129873,-0.23599045,0.31215325,-0.28264531,0.25462034,-0.0046503665,-0.047685616,0.41345394,0.41234866,0.34180918,-0.48314747,0.50365,0.010980191,0.09781129,-0.056871925,0.087278605,0.4632858,0.268024,0.30485058,-0.055181384,-0.13711776,0.33827603,0.46701035,0.17398764,0.2756349,0.2211299,-0.1947845,0.29188472,0.0314889,-0.0036427935,-0.12905052,-0.30141976,-0.06367359,-0.011910828,0.27339944,0.43575,0.025763962,0.3103448,-0.03251312,-0.11341495,0.2058484,0.13945937,-0.15732583,-1.0013882,0.33815235,0.28567028,0.6902062,0.5461469,-0.036907606,-0.026631586,0.5328463,-0.3211692,0.13097441,0.34672928,-0.00803421,-0.52154183,0.52940124,-0.5576636,0.6077582,-0.25470823,-0.08129372,0.13763046,0.22712873,0.4145234,0.89494973,-0.082941025,0.07559211,0.050254412,-0.26690245,0.12731591,-0.23176594,0.09746565,-0.6011865,-0.26444763,0.5864831,0.35621834,0.27635399,-0.44826317,-0.033843696,0.02739818,-0.19635971,-0.024754087,-0.13133635,-0.042413816,-0.112614885,-0.6811142,-0.35761124,0.54885685,-0.04393526,0.021263557,0.19791289,-0.286112,0.2802611,-0.13634859,0.058612093,-0.044055,-0.59325475,-0.13740005,-0.24149552,-0.47001076,0.425943,-0.4493876,0.21230377,0.12684079,0.024418075,-0.4717024,0.38579097,0.15662827,0.64886814,-0.029616006,-0.06636254,-0.2841758,0.06722423,0.19249259,-0.26361433,-0.1732531,-0.49342868,0.12075461,-0.5961355,0.39173222,-0.07787393,-0.38166755,-0.09964445,-0.028616067,0.072613545,0.40485066,-0.14994152,-0.029825438,0.069319114,-0.037742306,-0.16521598,-0.057108257,-0.3335676,0.4547465,-0.039600305,-0.1451068,0.079887435,-0.010209775,0.029140918,0.29564768,0.06282929,0.2118393,0.23044942,0.081716396,-0.32768393,0.19424771,-0.005620424,0.30718374,0.17641261,-0.12322463,-0.26144063,-0.20520161,-0.3162135,0.3232006,-0.1777573,0.12421603,0.029375887,-0.43687692,0.7174226,0.15006964,1.1324288,0.109969266,-0.24470308,0.06574383,0.49375495,0.23928563,0.15407705,-0.24678166,0.66298175,0.53763396,-0.12455692,-0.2381294,-0.32579595,-0.25298458,0.0970322,-0.29737064,-0.30033153,-0.12987722,-0.651262,-0.15376125,0.0420161,0.12311623,0.27343372,-0.07433859,-0.13210776,0.1524424,0.11144527,0.3156147,-0.40879303,0.044972625,0.29549995,0.1861586,-0.015004602,0.16735741,-0.37968558,0.43522352,-0.7679848,0.17656676,-0.2354301,0.12297762,-0.05252901,-0.28843084,0.17908487,0.08986779,0.2631557,-0.21030453,-0.26319462,-0.2505992,0.7230033,0.30363116,0.29523292,0.78495544,-0.2629486,-0.10814573,0.06551425,0.42523864,1.2237877,-0.036182903,-0.1745115,0.19865973,-0.21239202,-0.67591393,0.06465976,-0.39976606,0.1996106,-0.067018114,-0.32380947,-0.23366883,0.2744204,0.122534506,0.073077045,0.0126287555,-0.46173713,-0.19766006,0.43851689,-0.15003671,-0.2434234,-0.2914025,0.23355412,0.5966156,-0.27196106,-0.33066884,-0.010748538,0.30353132,-0.139838,-0.6854161,0.0722493,-0.3007884,0.36643675,0.16870792,-0.28936067,0.014214584,0.21915239,-0.48689678,0.16539463,0.34627628,-0.34312525,0.014832628,-0.2896642,-0.25907734,1.0938861,0.08588246,0.21627754,-0.5030659,-0.5654923,-0.9055271,-0.295177,0.3547378,0.014043275,-0.10641421,-0.53633523,-0.17490552,-0.13843568,-0.056183744,0.10994838,-0.47433552,0.3786318,0.089498475,0.31664744,-0.043583773,-0.8498983,-0.09138629,0.07302448,-0.26493147,-0.49506253,0.54342556,-0.060690485,0.65232044,0.06771652,0.120875806,0.262364,-0.6365645,0.29245102,-0.44556606,-0.047268603,-0.5123792,0.11337895 +37,0.62143964,-0.3350552,-0.5960008,-0.22986771,-0.3550237,-0.0045161527,-0.26430294,0.4151058,0.3776929,-0.20709899,-0.19622803,-0.02805177,0.05044423,0.19057173,-0.014975027,-0.6870808,-0.2303135,0.15409063,-0.79443055,0.67258847,-0.5091475,0.436252,0.091781445,0.3213896,0.08224033,0.45627248,0.10483287,-0.15431292,-0.028689865,0.020079294,0.0496969,0.2764552,-0.66246045,0.1845458,-0.27091596,-0.29990435,-0.087417535,-0.41900447,-0.16683592,-0.7486799,0.051820096,-0.80588704,0.5603972,-0.027244793,-0.3130039,-0.26179254,0.105592534,0.25547698,-0.47977975,0.22755517,0.34262273,-0.15102163,-0.14020115,-0.40088564,0.08304475,-0.41195196,-0.49465513,-0.12355761,-0.6022206,-0.12539752,0.123038664,0.25569624,-0.2411816,-0.050662503,-0.22955483,0.51435685,-0.3049202,-0.13536906,0.4046192,-0.24607582,0.20867148,-0.5131555,-0.103297494,-0.083344474,0.42705384,-0.0613456,-0.37857252,0.22945309,0.25428626,0.5321206,0.3219402,-0.35011995,-0.2617994,-0.042813446,0.03486991,0.4242703,-0.20042601,-0.44549465,-0.30394953,-0.0483531,0.33495933,0.19785075,0.024560101,-0.30441168,0.034723934,-0.23742418,-0.017587502,0.48668987,0.5132667,-0.22078887,-0.3431271,0.2932966,0.61327165,0.09062997,-0.20743337,0.04768711,0.062906936,-0.6209659,-0.14234,0.11064633,0.011176491,0.3915068,-0.14350528,0.13400552,0.7937707,-0.054232128,-0.12755696,0.25979045,0.01868829,-0.080472946,-0.36199272,-0.26400745,0.36419615,-0.5549276,-0.10953461,-0.44353676,0.57716095,0.11747307,-0.62889165,0.27302733,-0.6325906,0.09637017,0.009730196,0.6067397,0.8490554,0.45164955,0.168809,0.724761,-0.30528754,0.29927355,-0.044316847,-0.31143856,0.22545895,-0.34482506,0.20811656,-0.54908365,0.064405724,-0.20709495,-0.079758406,-0.018995745,0.42235714,-0.73607326,-0.31389058,0.151723,0.62675804,-0.33438683,0.058067463,0.81617534,1.0585299,1.0291016,0.067967504,1.2401391,0.37538165,-0.25608116,0.08386923,-0.3707673,-0.7472941,0.25718933,0.24425074,-0.38823527,0.45218465,-0.17749567,0.03169233,0.44564325,-0.31247255,-0.0002861917,-0.0035566508,0.35923845,-0.017643448,-0.06261805,-0.4749397,-0.20488809,-0.022312645,0.12708135,0.15132608,0.28139544,-0.33059344,0.37066433,-0.012535469,1.4066354,-0.24900836,0.020297615,0.21587129,0.27911004,0.3249523,-0.3287096,-0.08908713,0.3784009,0.42468292,-0.020758374,-0.55003697,0.18649188,-0.34371933,-0.3449899,-0.19024706,-0.24850437,0.0026014566,-0.056911103,-0.46209776,-0.29801512,-0.11344058,-0.24840806,0.27590066,-2.5385556,-0.17580488,-0.1739521,0.4415547,-0.22264622,-0.22647084,-0.11217675,-0.589065,0.13491563,0.26840925,0.5426959,-0.6412946,0.5037772,0.49873483,-0.6553108,-0.17014013,-0.709635,-0.016934363,-0.07866117,0.44146416,0.08420734,-0.17849198,-0.052139316,0.07834714,0.6763079,0.0097979065,0.16162989,0.48876914,0.46830347,-0.01568861,0.49320975,0.096094675,0.52909595,-0.49072006,-0.2443301,0.4903761,-0.46970713,0.07035268,-0.036911443,0.025392795,0.6337288,-0.59636706,-0.86309075,-0.59706384,-0.114421144,0.9327455,-0.23848043,-0.38571262,0.036218714,-0.28441906,-0.15155473,0.09326684,0.65673614,-0.15998046,0.09304491,-0.83182347,0.01836579,-0.07428732,0.035660427,0.018425675,-0.012653013,-0.42137954,0.729143,0.0068470975,0.650304,0.2806811,0.23539132,-0.24058232,-0.49799487,0.1460569,0.99733967,0.24717757,0.04044082,-0.1011589,-0.13837348,-0.13939044,-0.016873768,0.08338134,0.61545855,0.7526855,-0.12554543,0.2329511,0.39833164,-0.07023592,0.122063115,-0.1237589,-0.25990373,-0.18524192,0.12458239,0.4240715,0.8563042,-0.14334147,0.40571797,-0.22109309,0.46522102,-0.22379328,-0.6287734,0.6451972,0.79723984,-0.17309189,-0.09756681,0.54210377,0.38264874,-0.2778631,0.5925311,-0.5966539,-0.39095995,0.43742827,-0.250575,-0.3120537,0.23808466,-0.26529855,0.4086992,-0.8933464,0.42390478,-0.3065651,-0.45780748,-0.6520193,-0.21827322,-2.1372688,0.28831494,-0.15019022,-0.0034802516,-0.24505034,0.03727464,0.30354616,-0.7700342,-0.47523358,0.19995897,0.1384916,0.5918621,-0.06551547,0.12547249,-0.338467,-0.4481706,-0.023498476,0.399673,0.18469064,0.35278335,-0.07810931,-0.5027589,-0.08064114,0.17228346,-0.36687815,0.07896237,-0.67848974,-0.5820486,-0.09251603,-0.7196214,-0.16879974,0.6014522,-0.3099089,-0.0036347706,-0.14973643,0.06308763,-0.07851391,0.1859929,0.07398565,0.22300304,0.1768343,-0.022890864,0.12847543,-0.29202828,0.35420552,-0.022810929,0.40269852,0.21895227,-0.20655116,0.17824522,0.394879,0.6000767,-0.27261418,0.96687895,0.41921458,-0.014791974,0.1734607,-0.22004405,-0.35230145,-0.5983285,-0.35166016,-0.04149721,-0.4070779,-0.40592623,0.082152285,-0.39149094,-0.938732,0.64263153,-0.009966512,0.31843528,0.022580694,0.29314983,0.5359431,-0.18939233,0.023885412,-0.1278917,-0.15513282,-0.37880903,-0.1521075,-0.6393462,-0.5198908,0.17896797,1.1892235,-0.31537044,0.15126151,0.006506443,-0.27603132,0.060411762,0.008102084,0.03383491,0.26198563,0.51691467,0.035159994,-0.53701246,0.33514568,0.029302763,-0.23348661,-0.40281528,0.1632845,0.6489678,-0.7720444,0.5955908,0.34013134,0.10742305,-0.035468895,-0.6173098,-0.12409798,0.11263338,-0.09568455,0.5570193,0.23089026,-0.59116036,0.46696466,0.3348879,-0.47068462,-0.7507032,0.25606713,-0.11294373,-0.2948407,-0.10292575,0.35045657,-0.020493574,-0.013211266,-0.3250627,0.40635923,-0.31385952,0.17965229,0.16266403,-0.24826522,0.21216281,-0.10589231,-0.36385927,-0.70978814,0.062119007,-0.6736304,-0.34047106,0.4222422,0.022477308,0.06882242,0.1115865,0.11235343,0.42449632,-0.21697448,0.14791937,-0.06837756,-0.38268307,0.3833926,0.39458376,0.3075053,-0.4486155,0.52737695,0.16922398,-0.27026206,0.01352868,0.07207843,0.49993172,-0.016639639,0.43437043,-0.12281554,-0.072634205,0.42120215,0.72277284,0.15013386,0.4771258,-0.031538233,-0.15503229,0.21181978,0.11445143,0.16605572,-0.14601578,-0.3467364,0.058872335,0.13149936,0.28385633,0.3968049,0.17400824,0.4010174,-0.06149297,-0.25970128,0.07937326,0.25504777,0.009394288,-1.4706782,0.23609018,0.25973803,0.9081755,0.4906456,0.11175438,-0.19539504,0.49467078,-0.30152404,0.14048596,0.35157463,-0.24694349,-0.40999857,0.6834148,-0.5727239,0.36375856,-0.16613026,0.019732405,-0.029536294,-0.025044588,0.36943546,0.7530524,-0.14366703,0.07422034,-0.06566128,-0.11289532,-0.1201114,-0.3127044,0.1338219,-0.42079327,-0.36597088,0.8324163,0.29330254,0.4228436,-0.29187518,-0.07898403,0.10547098,-0.1565163,0.23194641,-0.052612655,0.11397584,0.17272407,-0.5078906,-0.14814693,0.4713805,-0.05602307,0.088511564,-0.17930956,-0.26449886,0.04884022,-0.19613126,0.03077642,-0.19887587,-0.5791991,0.038919926,-0.47450674,-0.31595516,0.57611126,-0.075614564,0.065800056,0.1886542,0.16808105,-0.26846436,0.30138296,0.03469278,0.82178843,-0.015569659,-0.2952447,-0.39225656,0.18470407,0.2294484,-0.3627887,0.026318677,-0.4368309,0.12676579,-0.67715347,0.58820045,0.062805675,-0.5528698,0.16065326,-0.20506458,-0.022836851,0.5632716,-0.1357401,-0.22819091,0.2392478,-0.042076197,-0.39327067,-0.071495056,-0.25889015,0.20854491,0.38644442,-0.0025010894,-0.21591626,-0.19002466,-0.1466534,0.5698915,0.13708551,0.4445582,0.47668132,-0.0107930815,-0.2510871,0.30527985,0.4175059,0.34677848,0.2547782,-0.13431473,-0.5748584,-0.44825605,-0.46433467,0.12870163,-0.20404425,0.27932397,0.01290125,-0.24678494,0.988017,0.022099193,1.3217678,-0.0135932285,-0.31961256,0.076570906,0.60451293,0.049597654,-0.035322133,-0.33604828,1.1185604,0.662522,-0.15008834,0.07668404,-0.31046295,-0.19894879,0.2757625,-0.34329197,-0.07649358,-0.16052474,-0.702196,-0.46684197,0.2927949,0.22968188,0.07621584,-0.2892903,-0.018785112,0.056049936,0.12153916,0.19375175,-0.66308963,-0.17353593,0.005317517,0.24923848,-0.09810551,0.26312816,-0.50837547,0.3247835,-0.6660457,0.22790423,-0.38766572,0.16602169,-0.11006138,-0.33487275,0.17186455,-0.07378467,0.34270012,-0.49898586,-0.48595467,-0.16064088,0.4401728,-0.019731427,0.10065057,0.63386256,-0.34870175,-0.08857418,0.30211937,0.5873029,1.2866591,-0.31325132,0.009571489,0.3081134,-0.41528037,-0.7383433,0.2498239,-0.25662902,0.013227582,-0.22329564,-0.561246,-0.3872626,0.28661245,0.1602269,0.13866547,-0.0001301368,-0.62074596,-0.10386656,0.4070495,-0.42160797,-0.14265203,-0.19842029,0.31168938,0.75726444,-0.23951456,-0.4150031,0.030781103,0.19633135,-0.23280483,-0.49465102,-0.1812182,-0.42174488,0.25193915,0.22380885,-0.22978266,-0.040938556,-0.010360805,-0.4748195,0.2334571,0.28752595,-0.37866578,0.06079173,-0.2677742,-0.16660962,0.9652784,-0.00920995,0.11691144,-0.53565526,-0.47304398,-1.0137919,-0.4130462,0.24037936,0.08205433,0.09496399,-0.4991239,0.10367739,-0.15761957,-0.14608483,-0.0016576211,-0.41363904,0.43532068,0.22486739,0.4456014,-0.34393126,-1.024131,0.12338947,0.35351762,-0.21699238,-0.68334043,0.48803347,0.032758556,0.89577,0.09427833,-0.0005524556,0.20185103,-0.58223844,0.061218563,-0.3135763,-0.10366019,-0.7988654,-0.08438061 +38,0.47101194,-0.12984045,-0.612298,0.049877048,-0.4224376,0.052932203,-0.14775448,0.24579516,0.33359152,-0.34713975,-0.20072137,-0.17349789,-0.23309115,0.13713342,-0.006745326,-0.2661282,-0.20437048,0.26154688,-0.565204,0.7981492,-0.12034104,0.22184119,0.017916467,0.46101812,0.48272514,0.2787254,-0.17921111,0.1030078,-0.30370268,-0.36911133,0.10940377,0.13236739,-0.4655632,0.28719926,-0.3395273,-0.27793244,-0.10835887,-0.6707857,-0.36546883,-0.7930302,0.28231376,-0.7952768,0.54575527,-0.015166367,-0.22670613,0.28733495,0.2725113,0.50017965,-0.07462959,-0.18942854,0.23362719,-0.1429155,-0.123178735,-0.08265029,-0.21505019,0.049727183,-0.55620444,-0.003770635,-0.101536274,-0.112040214,-0.24112606,0.26681736,-0.23226117,-0.021380117,-0.16362654,0.72949463,-0.47996825,0.38847956,0.1842694,-0.175267,0.11055051,-0.75585383,-0.20030467,-0.08003216,0.17945066,-0.08726978,-0.018517597,0.23582087,0.022956612,0.35658628,-0.057560198,-0.13519153,-0.4447001,-0.04527792,0.16629067,0.42666164,-0.15757108,0.089593895,-0.17950316,0.014536926,0.22467725,0.25468284,0.39724016,-0.31280828,0.014221023,-0.18372713,-0.02761442,0.26648527,0.33220538,-0.15371601,-0.1298329,0.2877731,0.6480841,0.34766364,-0.13734417,-0.15590183,-0.03618396,-0.362169,-0.05085198,0.13080284,-0.31388023,0.4625319,-0.0076829004,0.0085583795,0.36960414,-0.07713564,0.001446013,0.10055447,0.22289379,0.17027661,-0.35131058,-0.38360167,0.39708784,-0.3973774,0.23532237,-0.0346367,0.48541063,-0.044869576,-0.5202659,0.30730763,-0.5803274,0.19047582,0.05496897,0.384938,0.6087157,0.40285823,0.42399308,0.7458514,-0.29531723,0.1271393,-0.13708015,-0.12405174,-0.07860953,0.011447327,0.111721836,-0.532354,-0.06640391,-0.20102921,-0.27262586,-0.023185713,0.32601577,-0.57568437,-0.11858863,0.26586142,0.85427135,-0.16901648,-0.06773401,0.8302547,1.1448901,1.2502767,-0.011611492,1.012438,0.19585778,-0.26668182,-0.044872105,-0.3355225,-0.5509206,0.23942494,0.2503148,-0.33562157,0.22621843,0.20100005,0.025168985,0.5641356,-0.39371076,0.12351852,-0.22795847,0.05482644,0.23240876,0.0077504343,-0.46149492,-0.2602814,0.057804324,0.07850672,0.057009798,0.21907274,-0.30604506,0.115467854,0.04541381,1.7772037,-0.17969295,0.03646088,0.21531089,0.15598263,0.024309134,-0.2462778,-0.15575147,0.39160588,0.14370176,0.033010066,-0.43638155,0.05749952,-0.33454427,-0.31199536,-0.14141883,-0.20149328,-0.046480715,0.04249016,-0.3031557,-0.24404344,-0.22405782,-0.48722556,0.5205149,-2.5972083,0.01675084,-0.16451046,0.37433085,-0.39144257,-0.4758787,0.046782825,-0.3292944,0.22996128,0.24538934,0.4395143,-0.49829102,0.31550732,0.4234583,-0.8606809,-0.15215047,-0.503213,-0.15934911,0.05764442,0.1995398,-0.10407216,-0.048240032,0.048102967,0.11117671,0.34852242,0.07591987,0.11235924,0.5854678,0.38190514,-0.056232695,0.5275408,0.09558851,0.44991803,-0.21088015,-0.2968838,0.4855394,-0.37261456,0.349242,-0.05652654,0.041499022,0.48145366,-0.404521,-0.69419277,-0.5787558,-0.16160242,1.1550319,-0.19508424,-0.575777,0.12322911,-0.4028586,-0.34156278,-0.058074296,0.40591654,-0.026522292,-0.08247666,-0.91850656,-0.088386424,-0.11304806,0.2672073,0.024272455,-0.03256433,-0.57563084,0.82389927,-0.14046161,0.58099425,0.4821685,0.3074054,-0.1790211,-0.181723,0.06700646,0.8207676,0.45375314,0.020944582,-0.2749537,-0.07886578,-0.3913595,-0.15592349,0.14972866,0.419906,0.5013062,-0.16400051,0.041191068,0.20830038,-0.15449773,-0.010921882,-0.14880398,-0.3022662,-0.18355381,-0.045238633,0.5275982,0.68834877,-0.022956202,0.49617547,-0.001159106,0.3065248,0.0019838607,-0.43058687,0.21225548,0.94871587,-0.19744848,-0.43200538,0.55452365,0.54786557,-0.31722015,0.48808333,-0.45495012,-0.14130726,0.30996472,-0.10371423,-0.63090485,0.032750938,-0.38137534,0.17158297,-0.59285146,0.34627756,-0.36472774,-0.38198885,-0.55313694,-0.12140234,-1.1327454,0.35341576,-0.3288034,-0.1607995,-0.033800192,-0.08304857,-0.15428136,-0.6081019,-0.75457895,0.055050384,0.13855052,0.59590495,-0.19504848,0.063429154,-0.058964185,-0.4998307,-0.283309,0.14637382,-0.0025215617,0.42053747,-0.10871059,-0.39447597,-0.09238189,0.024769792,-0.21238327,-0.11170574,-0.75694275,-0.3484649,-0.17605188,-0.5248889,-0.19955744,0.51409686,-0.39501768,0.058004033,-0.31907782,0.022861669,0.092356004,0.1370897,0.06598562,0.29100385,0.2111678,-0.09401516,-0.03063098,-0.15787573,0.4055288,0.17461887,0.20010865,0.37025326,-0.08841901,0.24479768,0.344003,0.7817263,-0.18344262,0.80995667,0.45946127,-0.27338353,0.23893392,-0.24539039,-0.28903183,-0.6308467,-0.13919008,0.11044786,-0.39689246,-0.3876783,-0.06723706,-0.3253002,-0.82611984,0.58947754,-0.03866508,0.24045062,0.051114175,0.20116128,0.602615,-0.26397696,-0.08505731,0.031745218,-0.11852231,-0.46103683,-0.28230458,-0.5232606,-0.37932736,0.14983328,1.1229382,-0.3069022,0.13363637,0.35156327,-0.41752976,0.0081282435,0.14548601,-0.1373771,0.01494731,0.65598327,0.07782427,-0.45892826,0.21230245,0.17618808,0.0969921,-0.4844854,0.45076194,0.6741366,-0.37120277,0.70657814,0.2196766,0.14247933,-0.15259124,-0.658649,-0.18716863,0.06747981,-0.3555853,0.34998187,0.3727126,-0.50793463,0.15202749,0.22316715,-0.2174901,-0.8720131,0.47333136,-0.078208394,-0.2738809,-0.16818237,0.48196444,0.036739368,0.070294484,-0.055228945,0.24177107,-0.32329515,0.24340104,0.25906795,-0.18156125,-0.06817927,-0.3462627,-0.18086906,-0.864231,0.30627707,-0.30059186,-0.5152983,0.3818771,0.12264921,-0.15158984,0.25368887,0.44407114,0.38725454,-0.17000905,0.10016068,-0.2990966,-0.20245668,0.43916592,0.5019081,0.544967,-0.54627657,0.46916822,-0.08808445,-0.06732028,-0.1471512,-0.08522917,0.37838045,-0.12027305,0.20470843,-0.0130366,-0.15047039,0.035839222,0.3946421,0.13036661,0.35049847,-0.064458266,-0.11571678,0.10020246,-0.007847599,0.16151358,-0.3596812,-0.7000422,0.28998914,-0.16700909,0.0783213,0.34999678,0.04186042,0.19961308,-0.07729211,-0.43059593,-0.062048238,0.07966728,-0.16607061,-0.9657144,0.25778666,0.010833348,0.87151057,0.6046356,0.03600469,0.03719443,0.551627,-0.11510229,0.014481604,0.37718242,-0.065328054,-0.51451147,0.34158984,-0.63575965,0.44042438,-0.01504973,0.008830019,0.034897212,0.006944354,0.52800477,0.6313338,-0.32006767,-0.08065096,-0.22157438,-0.28974676,-0.007996516,-0.31175217,0.3468027,-0.60939616,-0.51014435,0.5732006,0.60360146,0.49895635,-0.26709694,0.06521984,0.076954536,-0.39767307,0.41260865,0.099884555,0.07780344,0.25138494,-0.600712,0.016452849,0.36479682,-0.32276806,-0.13332355,-0.01520685,-0.03863396,0.0665531,-0.16283394,0.009099648,0.030117946,-0.8369675,-0.007019094,-0.28712773,-0.31047532,0.06784348,0.07630567,0.08174503,0.05214841,0.027527815,-0.19938925,0.5720061,0.04648694,0.9622137,0.017625403,0.05706817,-0.16502981,0.35443968,-0.04670987,0.03671264,0.12569429,-0.13543303,0.19872892,-0.7091719,0.58570755,0.062085163,-0.37105784,-0.09636482,-0.1423601,-0.11823427,0.5889596,-0.20600541,-0.2121625,-0.20780401,-0.2127924,-0.13001418,-0.24349035,-0.038541835,0.12302961,0.10712288,-0.20582353,-0.20419025,-0.08336093,-0.215468,0.3821451,-0.03533861,0.44849578,0.34104252,-0.04156961,-0.6090603,-0.047043223,0.11505188,0.42072052,-0.15815076,-0.19411412,-0.21261056,-0.40165517,-0.40728608,0.5451525,-0.07218842,0.37102562,0.059361525,-0.08327688,0.90056515,0.16014782,1.3736877,-0.08240997,-0.29640964,0.06149528,0.5653969,-0.021920191,-0.10685668,-0.3702968,0.80658585,0.5205631,0.022298558,-0.0204945,-0.40503576,-0.18941103,0.17041814,-0.14779806,0.068631716,0.03471023,-0.40486726,-0.30766663,0.04891894,0.30824882,0.06650164,-0.19982664,0.09352247,0.37011766,0.016106347,0.25384417,-0.29281634,-0.37461478,0.27627143,0.2600749,-0.011816606,0.14834473,-0.4871431,0.41032162,-0.6479539,0.21863239,-0.16437767,0.16615292,-0.23933281,-0.24155259,0.21792495,-0.007650622,0.42125535,-0.55538535,-0.19261768,-0.26406017,0.39567438,0.27502897,0.03474876,0.6462735,-0.25755078,0.024274658,-0.0023527571,0.48922652,0.88530403,-0.15615681,0.029814979,0.19604433,-0.38682795,-0.52796793,0.23627909,-0.29773265,0.02762616,0.027257511,-0.2291347,-0.5869527,0.19715115,0.12763603,-0.199645,-0.17681481,-0.6692441,-0.18040118,0.33137995,-0.3464665,-0.044845056,-0.22540368,0.0066695595,0.5324019,-0.0034012794,-0.5990181,-0.060436692,0.023707883,-0.14250137,-0.38134116,0.056983147,-0.4758349,0.27440092,-0.0802238,-0.31590346,-0.34431186,0.12424577,-0.39439914,-0.1263131,0.04889064,-0.1912948,0.047335207,-0.32238072,0.03351766,0.8339033,-0.12395441,0.16707675,-0.3310769,-0.43693605,-0.8079649,-0.20476332,0.1077688,-0.11021091,-0.017548975,-0.6634332,0.0149855865,-0.45625868,-0.11651259,0.005298241,-0.28347835,0.3664779,0.24672952,0.34064072,-0.49486452,-0.8182419,0.23762633,0.11630335,-0.1414133,-0.43386826,0.3715732,0.12013261,0.7383543,0.0171572,0.036053803,0.1354463,-0.5748348,0.16425346,-0.11140002,-0.09764765,-0.53502417,-0.024128338 +39,0.23723601,-0.31741157,-0.51863974,-0.21602903,-0.1855695,0.025513934,-0.13345776,0.3043798,0.2945879,-0.16280945,0.017805714,-0.15707418,0.0390466,0.48277953,-0.0786963,-0.6817081,-0.20151179,-0.010012343,-0.5163501,0.58149564,-0.42385176,0.2762663,-0.17462642,0.24304909,0.27178928,0.4069634,0.14967002,-0.13867308,0.11445839,-0.0018374095,-0.039061207,0.10254162,-0.49132007,0.11920854,-0.03768372,-0.3421883,0.085700385,-0.3844723,-0.5447943,-0.6371633,0.47668678,-0.82894033,0.56386817,0.093615256,-0.2733864,0.27112362,0.22494327,0.3021899,-0.33021304,0.058911324,0.21170451,0.20261875,0.14710349,-0.08846049,-0.34439608,-0.56014097,-0.6040052,-0.0021314071,-0.57692426,-0.26634443,-0.29227957,0.09289983,-0.3727186,-0.09741732,-0.037480555,0.10593177,-0.50701797,-0.014219591,0.18978573,-0.12064503,0.2583117,-0.5009316,-0.09211388,-0.07902546,0.08481519,-0.21761315,-0.060546644,0.41813564,0.070918046,0.3543814,0.0052529573,-0.18861665,-0.27232566,-0.113527626,0.06188459,0.46548197,-0.15201347,-0.30115297,-0.23113738,0.13934635,0.20864597,0.28152344,-0.12690388,-0.31383073,-0.022867521,0.021504452,-0.09542832,0.46191677,0.44924495,-0.32410467,-0.40712392,0.4362915,0.4141299,0.22473416,-0.056083344,0.071959384,0.17912666,-0.42733952,-0.14570688,0.089444876,-0.21326797,0.3440434,-0.04286991,0.22421516,0.72587305,-0.2221423,0.21034104,-0.09177439,-0.084885955,-0.21482325,-0.24709867,-0.102372766,0.11056205,-0.5069687,0.26931265,-0.08576283,0.84936917,0.0976118,-0.6823789,0.3253983,-0.65288156,0.14563319,-0.25323355,0.6408587,0.7821236,0.15687965,0.3022836,0.72657406,-0.34438026,0.19604233,-0.120080695,-0.5027436,0.32880118,-0.11754906,-0.113061,-0.6706953,-0.09956079,0.13831261,-0.09530962,0.07177631,0.47896773,-0.49359798,-0.05865018,0.17661054,0.9499918,-0.29381093,0.079490885,0.45394012,1.0021559,0.8475411,-0.0021340125,1.2450842,0.24904037,-0.22642507,0.4135952,-0.5716339,-0.8766519,0.22382896,0.43662247,-0.37467167,0.3720904,0.13496384,0.13905749,0.22379883,-0.39999786,0.12992978,-0.20334196,0.31050327,0.04530175,-0.0072946046,-0.43152764,-0.19209117,-0.0911744,0.05227252,0.18339866,0.26923192,-0.3151507,0.06404987,0.015730321,1.7644706,-0.16166535,0.1499337,0.09565416,0.5613585,0.26325205,-0.13503274,-0.14810051,0.37479994,0.47959545,0.050409075,-0.70262563,0.21784078,-0.28760192,-0.41860044,-0.16019453,-0.42615703,-0.047699623,0.019036083,-0.3122779,-0.055266403,-0.029753773,-0.44025066,0.3939566,-2.8608623,-0.12164876,-0.14083073,0.23053044,-0.3311507,-0.1176573,-0.1313314,-0.39636838,0.44267422,0.4429301,0.4163407,-0.5355333,0.22047265,0.64799404,-0.5533806,-0.0054508355,-0.47061428,-0.033550207,-0.11043039,0.5655752,-0.056967326,0.002569891,-0.12529936,0.49235246,0.2897122,0.12470555,0.10678708,0.35209534,0.44452852,0.11473232,0.3063143,-0.067906536,0.4216817,-0.17514008,-0.21801092,0.33397192,-0.16397358,0.35739473,-0.10358273,0.15404174,0.38325214,-0.45740348,-1.0038518,-0.52038735,-0.36341742,1.030193,-0.3372853,-0.30833203,0.401893,-0.3611267,-0.13546422,-0.112912536,0.49504873,-0.1701952,-0.16308157,-0.7953519,0.17031655,-0.18463963,0.16565546,0.122129515,-0.009564941,-0.30902955,0.6380415,-0.044514094,0.3682121,0.11185185,0.040263914,-0.17911185,-0.39558363,0.119921915,0.7259715,0.3679072,0.09424185,-0.24323867,-0.26746315,-0.19844256,-0.22218587,0.049164873,0.434005,0.8170439,-0.050856348,0.024057444,0.26769862,-0.25233084,-0.025963545,-0.15839726,-0.22016133,0.03895799,0.043851018,0.46325588,0.5161981,-0.088013224,0.43907323,0.003236069,0.14925933,-0.21291365,-0.39835328,0.484071,0.75310576,0.087525286,-0.16864027,0.69703424,0.60826993,-0.28669143,0.53531396,-0.7409493,-0.12707046,0.46282944,-0.22995909,-0.40582854,0.15697318,-0.4138379,0.044890944,-0.93689847,0.22875403,-0.09783486,-0.3659236,-0.37544954,-0.10444586,-3.7245374,0.14927444,-0.27182415,-0.27554253,-0.16346142,-0.017908482,0.49152344,-0.5779662,-0.61961544,0.14710881,0.07767132,0.70404065,-0.0026898568,0.14530146,-0.18351197,-0.11941065,-0.36424637,0.14627448,0.0372653,0.30487525,-0.019472856,-0.5037655,-0.1697482,-0.05846131,-0.40819496,0.13671216,-0.5160901,-0.36370367,-0.22841246,-0.7378843,-0.07263062,0.6052323,-0.10922316,-0.10048839,-0.2880089,0.04666076,-0.09417677,0.3561603,0.25622928,0.08164982,0.14871684,0.024034735,-0.07684328,-0.3167896,0.467009,0.0025374019,0.46933997,0.35297912,-0.090670936,0.14337257,0.5750462,0.4050671,-0.14588578,0.7074458,0.5953571,-0.17682728,0.21259154,-0.23005135,-0.16238227,-0.50766903,-0.39644894,-0.2782071,-0.31291935,-0.5283191,-0.24557616,-0.35518634,-0.78472286,0.5538099,-0.039623592,0.41301364,-0.019681403,-0.06255894,0.40075234,-0.022118052,-0.026830005,-0.022183742,-0.23749122,-0.40899545,-0.26525268,-0.57531774,-0.39479524,0.5136484,0.97425616,-0.2839809,-0.08423188,0.06476196,-0.26254943,-0.18369819,-0.039058384,0.08369867,0.41515413,0.42653793,0.12183338,-0.62680274,0.5307575,0.06448081,-0.018586388,-0.51429486,-0.009678107,0.5230115,-0.59882903,0.47115898,0.15582058,0.12487265,-0.009507399,-0.4912546,-0.17595206,0.078321464,-0.18053912,0.38559306,0.22306725,-0.81352425,0.3855664,0.26012465,-0.30192447,-0.74542207,0.48234856,-0.032992575,-0.2627406,-0.18099426,0.23718295,0.05781922,0.035610676,-0.11708157,0.43008703,-0.26976895,0.30112785,0.17661852,-0.08984613,0.46397576,-0.17562817,-0.1359716,-0.62372786,0.11850143,-0.37175024,-0.2951283,0.32750013,0.015780669,0.12251329,0.16067736,-0.036356654,0.35726264,-0.34845978,0.08902417,0.11633983,-0.2807306,0.36826575,0.38650683,0.456269,-0.36606672,0.5546437,0.0050251232,-0.1268515,0.15682319,0.07554588,0.47088617,-0.032692246,0.29240027,-0.013785133,-0.21900108,0.39867738,0.94613266,0.09322552,0.37621593,0.021887949,-0.09206944,0.24479148,0.068641074,-0.10611253,0.06266431,-0.5560207,-0.12936503,-0.06762089,0.22208947,0.36202717,0.20438808,0.23762989,-0.15732247,-0.32761967,0.15966463,0.24343158,-0.05515149,-1.0927793,0.24445917,0.23475745,0.59834313,0.5845473,0.013189531,-0.024866374,0.70247585,-0.15323287,0.09157748,0.42586216,-0.0071955966,-0.6263292,0.5869511,-0.55618125,0.5834044,0.0245165,-0.07013343,0.0764927,0.13469249,0.29996544,0.84059644,-0.1240638,-0.08900615,0.028568882,-0.31311563,0.16257557,-0.19219524,0.19648936,-0.6171707,-0.31990668,0.48255965,0.58908135,0.17345181,0.03966478,-0.0500783,-0.04958064,-0.020276723,0.10205193,-0.01759785,-0.12293197,0.023707118,-0.7800588,-0.29264075,0.40730408,0.13999228,0.13499582,-0.19153151,-0.14087102,0.19271299,-0.32425025,-0.054303177,-0.05341351,-0.68181,0.07347288,-0.22854519,-0.4150883,0.5394169,-0.36310437,0.302407,0.08362213,0.015930153,-0.30989265,0.349865,0.10283006,0.78234303,-0.13055107,-0.09485397,-0.4316889,0.044548906,0.16559717,-0.17521238,-0.17614794,-0.3576744,0.015683692,-0.7649187,0.52869225,-0.09604122,-0.45652348,0.043189764,-0.24069493,0.1188895,0.4467736,-0.016405033,-0.25694457,-0.31410423,-0.29113153,-0.31048265,-0.16701987,-0.22797336,0.19049074,0.15893942,-0.19563405,-0.18847407,-0.14136547,-0.1435934,0.41888678,-0.082543865,0.3372418,0.3915825,0.22019264,-0.11786776,-0.09477374,0.33533397,0.581548,0.0020444302,0.11677925,-0.16224912,-0.28590012,-0.32371476,0.16512798,-0.23875104,0.35989887,0.14533305,-0.3796098,0.5879732,0.05737812,1.0979252,0.0740587,-0.2810766,0.114315234,0.5294451,0.14586109,-0.13105632,-0.40842313,0.8460855,0.7085969,-0.05082411,-0.23252045,-0.40218294,-0.15087602,0.26614684,-0.3089957,0.016617142,0.022069873,-0.72906774,-0.22116736,0.38993073,0.29084063,0.11869938,-0.032855473,0.09792212,-0.05812156,0.087042876,0.38738126,-0.4492634,-0.10334941,0.27420202,0.10286784,0.23394845,0.26776022,-0.5500474,0.37185276,-0.5402545,0.10372203,-0.3140906,0.18062589,-0.1981521,-0.31888103,0.18807562,-0.07525751,0.48182303,-0.19481403,-0.42152703,-0.29527208,0.5670741,0.09094851,0.11979391,0.6992677,-0.28553337,0.2521016,-0.108475655,0.4939251,1.1204472,-0.1825179,-0.04679946,0.25681263,-0.3238719,-0.8511787,0.24457504,-0.45835397,0.21959308,-0.057945963,-0.24291739,-0.35808864,0.25046295,0.07814404,0.08993174,-0.06882334,-0.44580272,-0.28962997,0.16765057,-0.13628168,-0.2644073,-0.38190416,0.072012104,0.80514234,-0.28227562,-0.2258994,0.15454045,0.35520172,-0.14379017,-0.5556449,0.00021986548,-0.21718827,0.2746054,0.052439187,-0.33132,-0.08911614,0.054752257,-0.3729237,0.23817798,0.24034779,-0.37016127,0.061491627,-0.20902443,0.013209838,1.0267149,-0.26486605,-0.064291276,-0.7341065,-0.43100378,-0.94328505,-0.36132902,0.5854522,0.14265035,0.036897037,-0.4242531,0.22421573,-0.009362056,0.16205469,0.025383115,-0.5215066,0.43400222,-0.0014618177,0.46963173,-0.1132526,-0.9478339,0.16495815,0.105837785,-0.30415684,-0.7506767,0.6960042,-0.33484605,0.8257475,0.12643518,0.07939366,0.1384463,-0.35937613,0.057028327,-0.36639068,-0.28975603,-0.85127044,0.19708978 +40,0.413376,-0.14857484,-0.6249626,-0.08067673,-0.27434894,0.3011815,-0.34049076,0.18195432,0.11729793,-0.58347756,-0.06263754,-0.27754936,-0.15766248,0.14473629,-0.005999746,-0.4768649,-0.20599246,0.32515845,-0.7272269,0.6701456,-0.38489768,0.31170025,0.384423,0.12084119,-0.15381879,0.10335718,0.06813598,-0.24982058,-0.17196336,-0.26222837,0.023602527,-0.12749639,-0.5704857,0.38818333,-0.20847043,-0.3293338,0.05729505,-0.4129996,-0.24571368,-0.70445544,0.14150688,-0.68105406,0.656024,0.120544754,-0.26214826,0.21168967,-0.0044153533,0.19876562,0.0054591657,0.092424266,0.36775443,-0.3272216,-0.5142849,-0.39015993,-0.25076494,-0.46602026,-0.60734075,-0.04977119,-0.5118874,0.06733085,-0.015814686,0.3067742,-0.17173344,-0.13198796,-0.25232258,0.45675427,-0.32780755,0.07883005,0.109292954,-0.20336641,0.19196956,-0.63423496,-0.0060288827,-0.15540284,0.11509702,-0.020933663,-0.17248923,0.038779147,0.039915085,0.7204437,0.07066861,-0.18602389,-0.18799524,0.047241457,0.09819751,0.44578373,-0.12915944,-0.0030053179,-0.03742265,-0.08932042,0.38052103,0.08190542,0.11522787,-0.41801167,0.028685471,-0.2993529,-0.35337517,0.24214874,0.53940797,-0.24043986,0.059058126,0.50579655,0.3636512,0.10967031,-0.16357055,0.006796849,-0.13458495,-0.3669229,-0.049519096,0.4041652,-0.09630955,0.5552509,-0.096734494,0.27443942,0.38527665,0.033062946,-0.20884858,0.17325792,0.016338404,0.122635484,0.05351611,-0.16431107,0.37909192,-0.52511215,-0.118849024,-0.52583957,0.59092206,-0.13861097,-0.872079,0.5044424,-0.4879331,0.022415435,-0.024247544,0.66227967,0.8184837,0.62812793,-0.120480545,0.9144691,-0.47584164,0.106742226,-0.3950875,-0.18579645,0.16991572,0.16963218,0.29726785,-0.49030384,-0.17733099,-0.09558453,-0.25263304,-0.2362686,0.59693706,-0.42623833,-0.2303895,0.08939753,0.5857198,-0.26211402,-0.0818921,0.71324146,1.0287077,0.7774819,0.21834736,1.2638278,0.36599082,-0.27560467,-0.13420935,-0.29981807,-0.7357848,0.21930799,0.20514724,0.41444293,0.1457118,0.10659705,0.0058532753,0.35501882,-0.24999198,-0.07135677,-0.27151746,0.16529217,-0.2545374,-0.0047251624,-0.1510564,-0.12472468,0.09132719,0.019712625,0.22913279,0.16089468,-0.24147715,0.23097517,0.28979272,1.6130854,-0.18916525,0.08900125,0.1103884,-0.16217308,0.19748695,-0.072099015,-0.11391496,0.31191623,0.2288638,-0.09296041,-0.47673368,0.036997434,-0.12738517,-0.56672865,-0.20456208,-0.06676216,-0.058315415,-0.34536484,-0.30683085,-0.2674685,0.07286739,-0.72259176,0.2822859,-2.5638433,-0.29953247,-0.0069368044,0.39873627,-0.273828,-0.36523122,-0.10151943,-0.3546976,0.6175198,0.2466813,0.3461159,-0.63249534,0.58554935,0.38532767,-0.455608,-0.1958674,-0.6922683,0.06384544,-0.05486016,0.32572138,0.029258879,-0.2609758,-0.09518298,-0.122089,0.30274254,-0.29596668,0.049939577,0.5199244,0.488906,0.1371,0.30468163,0.03857545,0.55018616,-0.2954304,-0.22545023,0.4765879,-0.32591993,0.18399422,-0.09898294,0.20471402,0.36331895,-0.4133938,-0.43885198,-0.64799684,-0.16557841,1.069258,-0.23513293,-0.44240066,-0.0061418414,-0.10450063,-0.33562738,0.06788694,0.51556736,-0.09688158,-0.17524926,-0.8313593,-0.25289127,-0.038725205,0.5373198,-0.036179364,0.17654,-0.4321427,0.6308157,-0.057623707,0.5668249,0.59733754,0.24560761,-0.2751585,-0.17716233,0.29326996,1.0545155,0.3177155,0.034891985,-0.18997717,-0.2510184,-0.14774169,0.02078158,-0.040022936,0.48155054,0.6435843,-0.016251957,-0.10957443,0.43972003,-0.23245764,-0.051098086,-0.28709528,-0.3856006,-0.17637137,-0.06245214,0.42269418,0.5819566,0.18702255,0.593813,-0.08719449,0.3830342,-0.15961371,-0.44902766,0.49440953,0.7198656,-0.16747381,-0.1316023,0.33928666,0.38539746,-0.19266978,0.53148913,-0.57514584,-0.38301545,0.15730263,0.025647538,-0.4138257,0.35743856,-0.31585345,0.28247336,-0.9307655,0.32207662,-0.191066,-0.42515135,-0.76753384,-0.032871805,-2.0610325,0.16322406,-0.18196693,-0.026897682,0.037252847,-0.117327906,0.13901494,-0.4217782,-0.5466736,0.016491093,0.28698698,0.5301441,0.12716623,0.20241459,-0.14510079,-0.36681122,-0.10376366,0.4346646,-0.039388258,0.10006794,-0.13157503,-0.2622749,-0.072182626,-0.34097573,0.0082706455,-0.09799077,-0.6574036,-0.28562132,-0.110398814,-0.43019262,-0.31603733,0.64095116,-0.3942413,-0.06341062,-0.32288638,-0.0038428982,0.27897814,0.25840554,0.20421867,0.14660266,0.07693814,-0.10723664,-0.1427138,-0.3260642,0.10961895,0.06819215,0.04059536,0.65500957,-0.072580844,0.28144532,0.32034752,0.6147998,-0.048401874,0.833178,0.47628433,-0.081939556,0.25083658,-0.19367531,-0.083772354,-0.59517354,-0.1185311,-0.2361395,-0.49718508,-0.31002468,0.04634412,-0.28651094,-0.78173983,0.42823952,0.22915736,-0.15110208,0.246128,0.5823449,0.50743496,-0.14227177,0.088034734,-0.24391665,-0.31376833,-0.27086937,-0.4905129,-0.8144675,-0.33836094,-0.047811642,1.2467494,-0.0075916806,-0.030003624,0.26426914,-0.14478976,0.040579233,0.0043649874,0.13064082,0.13097566,0.4111565,0.103767544,-0.5464493,0.40394866,-0.085838586,0.031065647,-0.5302916,0.30022362,0.8138849,-0.6522861,0.12578799,0.38845742,0.13617381,-0.12281907,-0.5530636,-0.115979545,0.20849821,-0.3037821,0.26158813,0.09974139,-0.52519184,0.5561374,0.28888226,0.007852221,-0.9257418,0.17509769,0.06582164,-0.38267213,-0.058264744,0.38520387,-0.024370614,0.06600979,-0.31371212,0.21677954,-0.37150404,0.2860994,0.10805824,-0.24463387,-0.00597713,-0.28929153,-0.26781633,-0.76460016,0.105558716,-0.40132982,-0.4094416,0.2764554,0.1366644,0.24940303,0.34561634,0.26003075,0.45869344,-0.46220866,0.15866414,-0.24267322,-0.17082281,0.33125067,0.41860715,0.28344563,-0.3382761,0.5067865,-0.19970217,-0.10862505,-0.3303272,-0.012260823,0.37465218,0.0904829,0.05108246,0.13313475,-0.07690627,0.29815826,0.7191954,0.067658335,0.24133795,0.06212611,-0.34426436,0.3483496,0.040884245,0.23349787,-0.36051908,-0.55020535,-0.19784327,0.08552793,0.27506843,0.30670148,0.088576764,0.5254816,-0.24944833,-0.18335561,-0.03951982,0.09098593,0.14286773,-0.67571044,0.34308738,0.10672331,0.6810876,0.59835696,0.039337937,0.2011966,0.4869259,-0.43830472,0.14994213,0.18819806,-0.30047545,-0.32664916,0.38765654,-0.62571126,0.027110223,-0.14161082,0.029561218,0.16362089,-0.11959832,0.39877266,0.9267667,-0.16617304,0.17018503,-0.14538637,-0.16380736,0.023762917,-0.273058,0.042306535,-0.46085003,-0.49775326,0.70408595,0.22028814,0.459268,-0.2898831,0.052073166,0.24989204,-0.21750031,0.46825328,0.14399341,0.18326643,0.12344432,-0.3683451,-0.11023987,0.70373756,0.03395335,0.06263211,0.15456657,-0.27494666,0.1782233,0.0031189919,-0.12892127,-0.20916656,-0.61605436,0.07963668,-0.46998724,-0.32964543,0.44524983,0.027781157,0.19222072,0.12772006,0.030221997,-0.2056537,0.27318203,0.4131679,0.6998933,0.22279827,-0.09683361,-0.02585449,0.08867404,0.099951714,-0.20939788,-0.13681994,0.04240203,0.25830173,-0.7827785,0.44224054,-0.15594174,-0.39064282,0.247932,-0.22080322,0.02779669,0.5276866,-0.09160972,0.022035027,0.26810473,-0.0854999,-0.330175,-0.16783524,-0.28133726,0.23146158,0.04340807,0.06533502,-0.2449475,-0.031606443,-0.21667005,0.3094076,0.26838976,0.22373642,0.40094578,0.1519131,-0.59417397,-0.032961804,0.23626325,0.32112586,0.06377344,-0.045463137,-0.2288376,-0.15498392,-0.382491,0.2805603,0.0039135017,0.12011936,0.06277221,-0.46954188,0.8830468,0.22836466,0.9634525,0.060786407,-0.16279931,0.05871037,0.42230323,-0.0308091,-0.002748706,-0.4475097,0.9152925,0.66316473,0.08179114,-0.047477294,-0.3060794,-0.17860538,0.27819145,-0.18750323,-0.016172325,0.022582889,-0.85584044,-0.4539736,0.1791367,0.16397946,-0.16760737,-0.21329369,0.12337422,0.07855361,0.016938707,0.12080871,-0.5324659,0.0040099104,0.3428398,0.10994939,-0.09706931,0.23347855,-0.40386397,0.33438027,-0.62629354,0.12281652,-0.26864088,-0.03434328,0.19188581,-0.016670406,0.12947878,0.11581969,0.08955755,-0.33799475,-0.45194754,-0.16880642,0.4816305,0.1561025,0.36285383,0.75750446,-0.23688337,0.14318071,-0.027227037,0.5234141,1.1980236,-0.28565073,0.08062816,0.27926704,-0.39009687,-0.5697366,0.15048738,-0.30779588,-0.019149622,-0.11840861,-0.33028564,-0.273777,0.3695195,0.03712214,-0.14446887,-0.052213132,-0.5516816,0.0069094617,0.37183225,-0.27596474,-0.19664374,-0.18025367,-0.04698873,0.7372761,-0.24537954,-0.32747617,0.007554738,0.24299963,-0.49601373,-0.44887882,0.12739493,-0.5358283,0.16168621,0.35279453,-0.20494716,0.17184952,0.069814526,-0.5682572,-0.036935624,0.27256182,-0.38068804,-0.1898714,-0.40672773,0.13930371,0.792683,0.04972617,-0.09242266,-0.28808162,-0.5909963,-0.63143003,-0.44329053,0.035941817,0.1371975,-0.037618365,-0.668382,-0.0172986,-0.31558648,-0.17478769,0.043341443,-0.45167258,0.502457,0.22245973,0.4686756,-0.37347183,-0.96709454,0.15317583,0.1533308,-0.2709246,-0.39849085,0.42555434,-0.0012384971,0.8762586,0.007814201,-0.067971475,0.37788773,-0.8934408,0.2643746,-0.3705288,-0.10388199,-0.67069954,-0.006134029 +41,0.5811227,-0.08411075,-0.5846306,-0.08817162,-0.48351565,0.2234381,-0.47091478,0.23104432,0.26361206,-0.5776421,0.18241633,-0.19601238,-0.025480857,0.23299721,-0.15667245,-0.39610004,-0.16065969,0.28628948,-0.45872444,0.5637519,-0.34104863,0.3766318,0.3682559,0.1976588,-0.13119704,0.09866396,0.11089875,-0.20091464,-0.2672312,-0.38431007,0.06622707,-0.0016729023,-0.7832717,0.37454754,-0.15088366,-0.47978354,0.18772367,-0.45849642,-0.17855693,-0.60192066,0.12387973,-0.7134856,0.7102269,0.058462795,-0.292761,0.13681646,0.035770535,0.31147408,0.0097378325,0.13237958,0.42456707,-0.4316372,-0.55983204,-0.2247615,-0.2465167,-0.52945715,-0.7815998,-0.1423479,-0.52658373,0.15959065,-0.2670045,0.38454315,-0.21348725,0.024314959,-0.074265204,0.34570557,-0.39675036,0.15094396,-0.03590225,-0.19973119,0.20834541,-0.54380643,-0.13894032,-0.14572784,0.14202721,-0.032129187,-0.20738773,0.11911235,0.15333362,0.61483425,-0.015053781,-0.2765027,-0.44834048,0.16414738,-0.19832124,0.67579347,-0.32582965,-0.19996105,-0.16870432,-0.123451635,0.46109053,-0.03686903,-0.11082784,-0.36757833,0.068296656,-0.2277235,-0.46795985,0.41254774,0.45797554,-0.57547,0.049381487,0.39698032,0.30842718,0.036241233,-0.16737427,0.027678678,-0.076978005,-0.3968512,-0.08999936,0.21447192,-0.1433564,0.3818131,0.015611148,0.34999147,0.39210632,-0.16356413,-0.24456279,0.15939876,0.020502005,0.1456827,-0.09521789,-0.318371,0.46625522,-0.6845669,-0.08620871,-0.3912876,0.82519203,-0.14133999,-0.89939827,0.4257064,-0.5340403,-0.097125545,-0.00077113084,0.5949542,0.66096836,0.8060413,0.0063787997,0.7318443,-0.36947876,0.01653853,-0.26153827,-0.16599713,0.30991346,-0.11623105,0.39275867,-0.5153019,-0.19866082,-0.024916185,-0.22812937,-0.12214763,0.8151662,-0.4386064,-0.09800279,0.261484,0.6374735,-0.2914517,-0.02850707,0.6681914,1.2497804,0.88791066,0.16310592,1.1648835,0.31511274,-0.16003653,-0.16337924,-0.16749355,-0.6919652,0.2216867,0.36341313,0.24347307,0.18539901,0.3179805,0.032686375,0.3907318,-0.1317211,-0.23718973,0.035791814,0.2071537,-0.15260006,-0.11755566,-0.34746012,-0.33424452,0.15703149,0.035804085,0.06902424,0.35281923,-0.23656127,0.28169006,0.31650236,1.5151561,-0.086988285,0.083752215,0.21794327,0.04370431,0.13021,0.06400629,-0.14692894,0.058476992,0.22914015,0.09886117,-0.35268298,0.10063387,-0.0756901,-0.50864166,-0.27249482,-0.08720426,-0.085089885,-0.25139382,-0.29699844,-0.25571457,0.08265841,-0.5899274,0.38524628,-2.4716713,-0.118087426,0.03753469,0.3801618,-0.06897292,-0.44791487,-0.12193557,-0.46909338,0.60413045,0.33994988,0.42545968,-0.44563502,0.5546735,0.37787572,-0.54825425,-0.2115535,-0.7774462,-0.12553188,-0.21568179,0.33731428,0.073064156,-0.4192166,-0.12640703,-0.12515043,0.494138,-0.17231815,0.1441534,0.3500858,0.47578675,-0.09804142,0.49484703,-0.051975224,0.44189262,-0.32370955,-0.26534012,0.35307533,-0.35361257,0.11122321,-0.18703006,0.20963791,0.36337477,-0.53471357,-0.801864,-0.5165913,-0.06325088,1.1640831,-0.19151543,-0.49870178,-0.01941264,-0.07430101,-0.2830514,0.08421921,0.42660615,-0.07280823,-0.07240329,-0.69637537,-0.101544276,-0.08650703,0.38525248,0.048004832,0.21279773,-0.52764714,0.6266222,-0.09103311,0.49905533,0.608084,0.2708703,-0.10052284,-0.2376983,0.19456284,1.0174363,0.24324778,0.14579637,-0.42757422,-0.046213515,-0.047151804,0.05487935,-0.09584594,0.42549962,0.65944165,-0.077801205,0.089203015,0.23309733,-0.26526585,0.06370037,-0.19753326,-0.5912929,-0.20679061,0.12974024,0.46173373,0.61842585,0.13565512,0.45211172,-0.008961767,0.26257452,-0.16499875,-0.36410132,0.31211188,0.7345832,-0.26517183,-0.18485777,0.6583316,0.42309684,-0.1075695,0.5398679,-0.51493436,-0.5532066,0.10723361,-0.09007762,-0.41271064,0.32878748,-0.38432756,0.05836469,-0.87429523,0.3324173,-0.30768946,-0.5887702,-0.57800865,-0.07268483,-2.816734,0.25889477,-0.12149508,0.06786771,0.21907432,-0.08775164,0.28916174,-0.47915488,-0.5127123,0.08470913,0.28200006,0.537095,-0.07805194,-0.0029995102,-0.23901343,-0.3549729,-0.2377309,0.44743136,0.29655537,0.12233966,-0.024319844,-0.42298296,0.07655619,-0.3549006,-0.011956667,-0.0450096,-0.62445897,-0.33954945,-0.08628031,-0.5593935,-0.5099233,0.7371046,-0.5395032,-0.027633611,-0.28814158,0.0641801,0.06842728,0.3029907,-0.081536576,0.089180455,-0.07010071,-0.12912746,-0.017182916,-0.25024372,0.22629526,0.10343188,0.23828371,0.6125668,0.0011947921,0.13309231,0.66602296,0.5364849,0.035453174,1.0288004,0.4263246,-0.17103328,0.19106688,-0.20391048,-0.12174188,-0.66550446,-0.105827585,-0.22550747,-0.45994133,-0.273735,0.21575542,-0.42851618,-0.721628,0.80359995,-0.01477428,-0.18833365,0.06255372,0.52326936,0.4091461,-0.13450499,-0.12411525,-0.19737312,-0.19906773,-0.33309722,-0.40639827,-0.732662,-0.42425272,-0.03851882,1.3574126,-0.09055682,0.08949132,0.2975892,0.09477185,0.021278087,0.1719186,0.08814509,0.13118707,0.45771456,0.1212813,-0.8259935,0.24707642,-0.37453824,0.0912105,-0.62869614,0.25200728,0.5804626,-0.85251236,0.22100653,0.5120749,0.28223148,0.07634057,-0.6398743,-0.18869507,0.2277231,-0.20784283,0.37942335,0.10255982,-0.75967664,0.5715334,0.19820921,-0.33054426,-0.8558693,0.29632086,0.051632743,-0.416892,-0.02613539,0.40793875,0.20698656,0.0151882935,-0.35621598,0.22168557,-0.4575964,0.39985976,-0.019326286,-0.19442545,0.20908165,-0.26155892,-0.13611706,-0.82061976,-0.093955286,-0.34651414,-0.45674995,0.29794982,0.035883926,0.120290935,0.30907127,0.30278116,0.41990978,-0.47642162,-0.058917176,-0.32205683,-0.37100902,0.4634928,0.47371227,0.43750742,-0.30777022,0.542008,-0.05087201,-0.09583996,-0.3738862,-0.07934179,0.39389873,0.010873233,0.19841845,0.015600922,-0.23466134,0.23936327,0.87414706,0.20311442,0.39242363,0.059051733,-0.17611396,0.36593717,0.03332947,0.1033992,-0.107572965,-0.51986015,-0.036609925,-0.16193059,0.12368883,0.5073019,0.07291559,0.45647022,-0.3616628,-0.038440865,0.07331922,0.034267433,0.20841901,-0.84027106,0.2919561,0.02846708,0.45683196,0.58929473,-0.042317364,0.16859093,0.62936634,-0.30627272,-0.051841445,0.27604952,-0.039487924,-0.11950655,0.5579761,-0.66833067,0.2448838,-0.089286104,0.08946766,0.20628868,-0.17632754,0.42911905,0.8702988,-0.1350505,0.14395788,-0.057546325,-0.17377517,-0.16526319,-0.2031988,0.12411375,-0.44738445,-0.21941973,1.0009338,0.25082916,0.51309305,-0.06290748,0.0062818727,0.1780578,-0.110689774,0.49816546,0.09787024,-0.07108712,-0.062249362,-0.44842842,0.030999307,0.7390581,0.1572664,-0.025100576,0.09632693,-0.20520756,0.2986016,-0.051047828,-0.14769995,-0.09349823,-0.6156501,-0.034495987,-0.5943138,-0.34953716,0.5581897,0.2233021,0.15666449,0.022821337,0.20685951,-0.13330282,0.31917286,0.3830453,0.63935727,0.22858457,-0.27527592,-0.0059384448,-0.07178978,0.11230801,-0.25196293,-0.23940587,-0.1847264,0.26253107,-0.9122119,0.29472575,-0.41548815,-0.31991595,0.21958672,-0.05447477,0.07623429,0.4726049,-0.013017123,-0.015864128,0.25340983,0.15181829,-0.2337574,-0.361696,-0.3005568,0.055883314,-0.17543332,-0.20395045,-0.17873856,-0.23490612,-0.19475737,0.2871108,0.14197436,0.21290484,0.2576645,0.258626,-0.4437658,0.05380669,0.102873825,0.6044097,-0.19072923,-0.14651854,-0.48604462,-0.3106138,-0.2439141,0.21238957,-0.027237777,0.12609053,0.031059269,-0.47979718,1.0569326,-0.06915361,1.008042,0.0452871,-0.3138698,0.07766708,0.45406774,-0.19945757,0.04591121,-0.39783546,1.0860401,0.7041481,0.06569444,-0.17623556,-0.49460474,-0.18090336,0.17356446,-0.28580338,-0.100998364,-0.012170716,-0.73876953,-0.1659724,0.16808738,0.20964508,-0.0032457155,-0.21064912,0.27029374,0.21005403,0.13802265,0.13167405,-0.4904882,0.0025895494,0.36028177,0.3304887,-0.06820123,0.27284056,-0.4104487,0.27711424,-0.66828763,0.18838933,-0.49200985,-0.08283799,0.024037179,-0.0987697,0.21375425,0.105039455,0.16186787,-0.16666238,-0.40582314,-0.025231192,0.40789747,0.18761823,0.32668668,0.757081,-0.21791315,-0.07703585,-0.15376301,0.51811093,1.1183078,-0.3677828,0.027029216,0.41728163,-0.16908273,-0.5046237,0.1534041,-0.3675585,-0.13134931,0.09780234,-0.3835557,-0.36999655,0.21751358,0.14987634,-0.18515117,0.0048238295,-0.35840103,0.05781189,0.13621213,-0.3278099,-0.21154247,0.021177325,0.2826796,0.8687011,-0.2659403,-0.31151262,-0.10701893,0.39178294,-0.3017464,-0.46180412,0.07922787,-0.47089845,0.15273319,0.39691707,-0.3453082,0.09051623,0.15534796,-0.57195586,-0.1564463,0.45761052,-0.29539818,-0.14448728,-0.48767415,0.1136113,0.8910765,0.11161227,0.21803036,-0.37472555,-0.5901775,-0.86089367,-0.21935405,0.13511232,0.17824806,0.0030181408,-0.46843788,-0.053202663,-0.22345173,-0.3588811,-0.07690204,-0.7034527,0.364811,0.11382886,0.56527257,-0.33364275,-0.9662183,0.0017671521,0.103141464,-0.31147,-0.3869706,0.3109146,-0.12444075,0.9793528,0.12057314,-0.05123239,0.21630774,-0.7147767,0.24369718,-0.4385752,-0.15410955,-0.6999898,-0.08496384 +42,0.40876773,-0.15474746,-0.37351674,-0.04067662,-0.21825457,0.019393597,-0.20223927,0.41422248,0.3567364,-0.35744986,-0.28213048,-0.09792084,-0.03952216,0.22951135,-0.13665847,-0.64486057,-0.0075790966,0.21896696,-0.36801916,0.5666695,-0.4645361,0.1361765,0.012995177,0.5200774,0.12891817,0.2264336,0.034795668,-0.13777846,-0.16207351,-0.27950737,-0.14983709,0.47622496,-0.62028223,0.14376345,-0.27003947,-0.29357988,0.036315616,-0.50643605,-0.39458352,-0.78336966,0.19787383,-0.91922253,0.39358664,0.05575963,-0.25073835,0.50989586,-0.067325674,0.13433035,-0.24855934,-0.18475242,0.08774092,-0.42194223,-0.20135441,-0.27579713,-0.10813464,-0.054429762,-0.66727006,0.10398177,-0.31846252,-0.015279151,-0.36655086,0.11432094,-0.41292688,-0.041932743,-0.1197692,0.41797805,-0.44158432,0.18070766,0.12993753,-0.09306786,-0.0136780655,-0.51056325,-0.2237463,-0.08207194,0.27472076,-0.097187504,-0.2779141,0.27351972,0.20889378,0.48633242,-0.05815186,-0.28880507,-0.3097631,-0.017183075,0.17633082,0.6001538,-0.19259359,-0.37605557,-0.048612546,0.04959459,0.15164737,0.07610061,0.03791928,-0.20979641,-0.2022434,0.0024896434,-0.14269538,0.35530645,0.5124232,-0.34343863,-0.22957532,0.29281193,0.5126802,0.19358835,-0.15917967,-0.04349586,-0.011471155,-0.5410176,-0.089652725,-0.004313805,-0.2984974,0.5224884,-0.19552128,0.22534278,0.54073316,-0.22513464,-0.085640095,0.112922035,0.08468865,-0.028610706,-0.22846206,-0.19480477,0.40154666,-0.41754657,0.25177732,-0.16499789,0.72563046,0.18060683,-0.7004389,0.38775396,-0.42415974,0.14937718,-0.10425961,0.7196117,0.7360405,0.50009567,0.6102487,0.6972936,-0.5139583,-0.010543262,-0.044124145,-0.42029113,-0.003910303,-0.25275162,0.007583834,-0.42163882,0.058709867,-0.025173187,-0.0882364,0.2159364,0.3418264,-0.46148446,-0.014269204,0.2425029,0.68984556,-0.20052384,-0.18663181,0.88944584,1.024355,1.0159643,0.09702889,1.0699114,0.30687883,-0.12998246,0.15308782,-0.06752894,-0.8009639,0.23133084,0.27772918,-0.14813817,0.18681076,0.24274996,-0.00884495,0.38002834,-0.5291361,-0.09948603,-0.18939571,0.079358004,0.15186858,-0.009802469,-0.4838591,-0.32197857,-0.0947713,0.017161252,0.11404206,0.39628962,-0.14093584,0.3736373,0.13003068,1.4457047,0.051483486,-0.065155685,0.10319667,0.50001645,0.12775585,-0.054089915,-0.032364327,0.28328997,0.31001925,0.019076195,-0.50773543,0.026511282,-0.12919433,-0.34334892,-0.14318612,-0.28068855,0.0065162564,0.066570595,-0.23101377,-0.23655592,-0.18331018,-0.4242042,0.5440701,-2.741384,-0.105914645,0.07380389,0.3099363,-0.16911738,-0.44808203,-0.23137988,-0.62030643,0.30782655,0.22710183,0.5025098,-0.7229719,0.26297322,0.44383088,-0.73999256,-0.19909541,-0.7031404,-0.05050497,-0.0145570785,0.3973308,0.15249261,-0.0065407073,-0.021367213,-0.0105282795,0.57379776,0.04511026,0.018030658,0.33064204,0.45584494,-0.032120787,0.44812435,0.0060191792,0.52745265,-0.21146242,-0.23233439,0.39299697,-0.36460677,0.43855405,-0.32663092,0.06923589,0.44785994,-0.34919074,-0.8282003,-0.5781058,-0.18182243,1.4305432,-0.24300684,-0.47123393,0.20563279,-0.30983162,-0.25913998,-0.05302846,0.38400692,-0.20139933,-0.22385934,-0.7256535,-0.04578959,-0.090488926,0.1752055,0.013783854,-0.024806052,-0.36846596,0.69426674,-0.060977716,0.3876516,0.26236978,0.114157595,-0.14622037,-0.3488267,0.026034802,0.7956315,0.271904,0.20638366,-0.40535858,-0.3321059,-0.13611574,-0.12631926,-0.059022266,0.7305665,0.47896576,-0.116658784,0.051250767,0.38105884,0.11140076,-0.05507288,-0.23401383,-0.22201948,-0.1880689,0.07549579,0.62883556,0.9728359,-0.18048628,0.30078393,0.012335024,0.21900313,0.08930527,-0.4366396,0.43859297,1.1729578,-0.09725591,-0.15326282,0.58161366,0.40070343,-0.3157124,0.4762403,-0.41173336,-0.40320778,0.37671375,-0.16013262,-0.41495863,0.14611901,-0.29022747,0.1301389,-0.5666877,0.31580582,-0.20049635,-0.43743998,-0.5491223,0.08480867,-3.0454822,0.1609155,-0.33209187,-0.08522243,-0.20383964,-0.18341394,0.12728342,-0.56219554,-0.49943298,0.1991472,0.19005454,0.66706115,-0.13367128,0.12065782,-0.28049684,-0.35095838,-0.33536536,0.028500037,0.18199942,0.41285592,0.037380956,-0.38081354,-0.09318153,-0.18624273,-0.13655509,-0.011938883,-0.5781447,-0.4580495,-0.015544499,-0.52560765,-0.3152074,0.5558379,-0.4688253,-0.02114783,-0.2824137,-0.0262063,-0.18881719,0.25912428,0.04210003,0.13552484,-0.06817257,-0.019558737,0.06133174,-0.23150457,0.48945075,0.06268067,0.26464114,0.38983235,-0.057255507,0.120234005,0.4386455,0.6917778,-0.19267988,1.0284272,0.49772614,-0.17269762,0.16378157,-0.16996238,-0.42547506,-0.6429463,-0.20308504,-0.037977014,-0.530944,-0.32731667,0.0793478,-0.43337584,-0.90789765,0.6635279,0.025335586,0.13400985,0.036313612,0.23012365,0.68922937,-0.2126189,0.008773642,-0.053471662,-0.044612404,-0.55338985,-0.31069437,-0.5661872,-0.4029479,0.010695279,0.8996356,-0.26277137,0.10188425,0.14506845,-0.21716818,-0.091744065,0.21093634,0.026974099,0.040441036,0.5937172,0.17804043,-0.728433,0.50056523,-0.06820915,-0.11731429,-0.5638043,0.24940637,0.5566205,-0.72973925,0.6634223,0.39511782,-0.057705276,0.068134256,-0.45862398,-0.42363325,-0.27015552,-0.21392246,0.4212167,0.34954795,-0.8670112,0.48456433,0.39432073,-0.31457973,-0.7712175,0.30679032,-0.17299278,-0.25847098,-0.02834438,0.3371091,0.017668469,0.0985611,-0.040851586,0.075571254,-0.35686594,0.20551236,0.09089871,-0.1041006,0.016678343,-0.25347432,-0.11560978,-0.8692961,0.080870725,-0.41412428,-0.3653181,0.12713052,0.13957481,-0.054101102,0.1318681,0.17036441,0.39121804,-0.29426852,0.09029142,-0.03183822,-0.20517874,0.16696301,0.4664471,0.6259223,-0.34806377,0.6080703,0.083914496,-0.06604619,-0.15941657,-0.053780045,0.31158134,-0.061201237,0.3832521,0.049258787,-0.2488112,0.14080502,0.9016991,0.15874724,0.500881,-0.05301706,-0.07194127,0.43037114,0.028651342,0.3947253,-0.09730276,-0.6399617,0.13468507,-0.34832004,0.087105446,0.48635468,0.2580579,0.2527955,-0.116311625,-0.28081065,-0.012800894,0.10538465,0.1411211,-1.1367159,0.25186604,0.121058926,0.8269784,0.43844858,0.014907269,0.1546898,0.7098242,-0.18291001,0.1687232,0.37125757,-0.14184047,-0.481781,0.48289272,-0.7043003,0.4681881,-0.0426034,0.048428647,0.049739473,-0.0033991507,0.35342786,0.6258215,-0.31004634,0.010967029,-0.0810201,-0.2531874,0.040397882,-0.43715075,0.05891183,-0.5493403,-0.2295924,0.6834818,0.7000022,0.48434862,-0.21203841,0.13647583,0.07547068,-0.08021032,0.035101425,0.07203873,0.0521077,-0.011780714,-0.5441863,0.08506613,0.5919581,0.005727989,0.08224196,-0.1352179,-0.12114631,0.3076923,-0.21577121,-0.25932807,-0.17209773,-0.7306722,0.03915835,-0.28269953,-0.5953177,0.4283281,0.081928566,0.20319168,0.36731687,0.010382156,-0.25440145,0.30068678,0.17004956,0.7186462,-0.015355719,-0.19556196,-0.38597637,0.17135085,0.20281048,-0.13704874,-0.14266686,-0.27991152,0.071272895,-0.41976812,0.47746322,-0.19737534,-0.2723044,-0.078307636,-0.07968306,0.09540241,0.66138935,-0.076984115,-0.22771184,-0.09906835,-0.12089062,-0.3635938,-0.21328175,-0.15901113,0.21611965,0.2765383,-0.27828446,-0.17908181,-0.3245438,-0.24752109,0.312044,-0.056043033,0.2889232,0.19213687,-0.03464162,-0.24596593,-0.12981613,0.19378379,0.5393241,-0.08487612,-0.26955387,-0.26968023,-0.30236676,-0.3676432,0.38138607,0.013449048,0.40177855,0.042848136,-0.15842684,0.62068886,-0.014476129,0.9178581,0.08718199,-0.2811246,0.042596698,0.44460455,-0.043194328,-0.072326526,-0.27943665,0.87170607,0.35941002,-0.02158245,-0.12574282,-0.5391051,0.11055011,0.1685121,-0.15097746,-0.023170033,0.073299184,-0.55297995,-0.05906262,0.21496248,0.29503748,0.2771881,-0.14838001,0.027935952,0.1877517,0.17453411,0.34042332,-0.3327667,-0.2380379,0.3244462,0.20710528,0.013043498,0.049335323,-0.2755695,0.3983407,-0.37625504,0.063446954,-0.37126866,0.10302435,-0.32744431,-0.17117624,0.30686402,0.10694794,0.39623925,-0.37789312,-0.33650732,-0.34145644,0.30527645,0.15345906,0.07967953,0.36516446,-0.2610789,0.02556062,0.0317025,0.56672174,0.86234504,-0.20177746,0.099232875,0.30065775,-0.2732896,-0.42922974,0.39923865,-0.25174,0.071245566,-0.04008097,-0.17092946,-0.65113926,0.13679744,0.2658731,0.2093045,0.103133105,-0.661933,-0.22184451,0.2016327,-0.34696832,-0.18060456,-0.21373424,-0.063149065,0.74255097,-0.2286768,-0.43934488,0.06669426,0.1144338,-0.113892786,-0.4952586,-0.06744876,-0.37949666,0.22516415,0.10583047,-0.31690672,-0.12621437,0.23888579,-0.48492977,0.056162704,0.24049532,-0.3680144,0.12025933,-0.2951574,0.21936533,0.91147375,-0.32218996,0.5172648,-0.36742005,-0.501994,-0.7859825,-0.2734771,0.5020823,0.17087947,0.060431268,-0.50603807,0.012490885,-0.15702125,-0.43767014,-0.10315352,-0.49407867,0.43937418,0.13447021,0.32837147,-0.067847975,-0.7504503,0.1324531,0.040065356,-0.16962394,-0.473733,0.3302355,-0.033383507,0.86435086,0.037216026,0.03215869,0.10620529,-0.35852623,0.0092374,-0.2154695,-0.14505328,-0.5707903,-0.033443492 +43,0.45722008,0.057105433,-0.7758052,-0.106416546,-0.3589942,0.022297919,-0.49524587,0.281331,0.45172438,-0.49474788,0.15228714,-0.0030619672,-0.12306913,0.26151985,-0.12247325,-0.5970048,0.010370761,0.26877505,-0.5169884,0.7994527,-0.2905565,0.2807779,0.24252568,0.25443512,-0.004207083,0.11644427,0.24883758,-0.16648427,-0.066621885,-0.23179783,0.08995993,0.09531438,-0.6157362,0.4603779,-0.14565238,-0.34387115,0.0058413083,-0.3165062,-0.15900822,-0.78289944,0.2116264,-0.6505551,0.6588384,-0.053299926,-0.35021162,0.049475305,0.25306773,0.21023552,-0.040417314,-0.13375314,0.3860886,-0.37646058,-0.76513344,-0.3194128,-0.28561217,-0.7415795,-0.5231939,-0.009480889,-0.5161208,0.26304552,-0.43359417,0.39201736,-0.2424909,-0.06918531,-0.37194762,0.54773706,-0.30293855,-0.016220149,0.05262935,-0.20539641,0.32472062,-0.7419283,-0.20643504,-0.113661766,0.2587838,0.16628562,-0.26349625,0.24267755,0.34973145,0.6765714,0.23556364,-0.38525957,-0.38723823,-0.0072355526,0.10515768,0.3448172,-0.30210352,-0.19670916,-0.21387164,-0.13759138,0.45860833,0.17582235,0.0024219474,-0.44102913,0.15391333,-0.23266019,-0.47242466,0.52791196,0.57732356,-0.3890701,0.25324586,0.42692524,0.39416417,0.20634003,-0.1816165,0.069765635,-0.4378922,-0.5788827,-0.09115992,0.1296297,-0.10390326,0.21113084,-0.04408566,0.096527226,0.52463573,0.0029193333,-0.39557052,0.48872253,0.13551262,0.24729262,-0.29721123,-0.13132925,0.37807965,-0.60775024,-0.029272005,-0.49706835,0.5423628,-0.29257885,-0.8807883,0.36639276,-0.58563775,0.06538495,-0.069969624,0.71947,0.9895678,0.7574901,0.009161545,1.0638767,-0.4315538,0.12556244,-0.20176111,-0.23800609,0.3073892,-0.05978718,0.3761353,-0.5056265,0.058171514,-0.13875909,-0.11923113,-0.10124801,0.63679165,-0.37658367,-0.2902741,0.11578815,0.64079285,-0.17960158,-0.15237167,0.7878176,1.1118096,1.0477475,0.29255214,1.2656072,0.13280718,-0.16766767,-0.24588092,-0.13930182,-0.788258,0.2912922,0.26426575,0.28536147,0.047254287,0.2523046,0.018357944,0.4541056,-0.12205632,-0.36621687,-0.03796625,0.45929834,-0.22160092,-0.28718922,-0.28181213,-0.28708807,0.26838064,0.012666523,0.19209419,0.32217574,-0.20120956,0.3344213,0.24176642,0.96535647,-0.24161063,0.015490515,0.05434808,0.043119192,0.2680741,-0.124657206,-0.10530726,0.23927143,0.16843002,-0.08814691,-0.6107747,0.0683943,-0.22841081,-0.5126637,-0.1842176,-0.24828969,-0.20939367,-0.08046273,-0.010820811,-0.20923178,-0.019168045,-0.5363042,0.23601225,-2.36911,-0.08423158,-0.105782345,0.24617474,-0.07813729,-0.32876593,-0.11851575,-0.4723286,0.61496,0.2603971,0.5878069,-0.4858825,0.5516087,0.53937614,-0.82740754,-0.20725544,-0.72946423,-0.1557844,-0.09345094,0.4823249,0.0634433,-0.52966386,-0.14852966,-0.029555062,0.5993204,-0.040316027,0.28607878,0.6166462,0.4711431,-0.198429,0.3717164,-0.061344083,0.63497025,-0.3623269,-0.27014312,0.4181631,-0.34134886,0.29795995,-0.35183695,-0.009711868,0.5122518,-0.4478657,-0.9077764,-0.59094965,-0.017316494,1.1434869,-0.27316722,-0.61103284,0.13115668,0.010984318,-0.17321105,0.3916363,0.4984786,-0.011535917,0.011068813,-0.75436753,-0.011590617,-0.13541563,0.26217717,-0.055654448,0.1079249,-0.51021093,0.7877795,-0.047941677,0.5534589,0.61428976,0.38613898,-0.37122893,-0.27050826,0.0734362,1.0381602,0.26478133,0.030973032,-0.21854137,-0.1611813,-0.22055964,-0.23036762,0.022118535,0.66771114,0.51946837,0.004319969,-0.00088466064,0.30323213,-0.41814026,0.04396022,-0.21096955,-0.67598695,-0.34673077,0.090792574,0.56820285,0.6237136,0.29643658,0.3654952,0.12298121,0.31246704,-0.16669199,-0.5940862,0.5877822,0.88492763,-0.34039405,-0.14340259,0.72528607,0.35016856,0.057282973,0.7713245,-0.51702654,-0.59966576,0.1896814,0.04482826,-0.3330253,0.07474574,-0.4018658,0.061226454,-0.853707,0.16327307,-0.5487097,-0.5773495,-0.53421724,-0.014058075,-2.4375358,0.35906085,-0.30918732,0.15637228,-0.21167292,-0.027725508,0.34262827,-0.344014,-0.7009944,0.11678727,0.29004782,0.53476447,-0.15304722,-0.008711793,-0.28388855,-0.48678344,-0.06064449,0.34186682,0.032295536,0.22223224,-0.04617399,-0.4468327,0.13355742,-0.20660421,-0.03179231,-0.12796311,-0.6378415,-0.17839131,-0.19136424,-0.5682312,-0.3578054,0.60282326,-0.7443466,0.024248125,-0.26937422,0.16089375,0.25985083,0.309038,-0.14277911,0.15796463,0.14942002,-0.13297132,-0.18892254,-0.22567005,0.16579325,0.0343936,0.23763372,0.55513257,-0.065926634,0.05585238,0.5723813,0.75727,-0.045850344,1.0168688,0.35007286,-0.05432019,0.2511075,-0.08004868,-0.20839788,-0.7095982,-0.2406216,-0.14239182,-0.49020714,-0.321863,0.13498281,-0.40643543,-0.88382626,0.6888171,0.21766813,0.040421374,0.04643861,0.4672026,0.332105,-0.1837995,-0.040419452,-0.282101,-0.35552692,-0.42961377,-0.41394916,-0.7923029,-0.47211573,-0.056399923,1.251531,-0.29923043,0.05245793,0.1923853,-0.020966675,0.06927454,0.36364213,0.08166189,0.26128894,0.50299835,0.29875025,-0.69828,0.4335578,-0.12804149,0.21906824,-0.420067,0.33045778,0.5367163,-0.6673485,0.2700669,0.55755144,0.09299814,-0.08086024,-0.9083222,-0.15443458,0.33117467,-0.2647436,0.43323824,0.22575422,-0.749794,0.75536436,0.2910224,-0.09486654,-0.9146975,0.30766916,-0.09700351,-0.17390242,-0.08255275,0.56172943,0.090043746,0.11643185,-0.50853616,0.1345636,-0.38493818,0.37332132,-0.1317282,-0.23724954,0.2539702,-0.23063834,-0.22160591,-0.8701935,-0.116707034,-0.61406213,-0.32043698,0.31704316,-0.013633383,0.009228306,0.20138367,0.24874017,0.515007,-0.50745094,0.15403797,-0.47686332,-0.2742973,0.63815814,0.60022795,0.35996976,-0.43788716,0.5283775,-0.060034446,-0.29255506,-0.43770456,-0.03309346,0.4494721,0.08071404,0.38990453,0.04390498,0.005114662,0.08008875,0.63313866,0.19553505,0.17019582,-0.12386109,-0.20295909,0.25502095,-0.14995769,0.31049684,-0.11239628,-0.49773577,-0.098827615,-0.1956791,0.059360065,0.5449318,0.115480796,0.5907194,-0.18167949,-0.11996176,-0.0048086387,0.0611822,0.20560566,-0.91081494,0.68394214,0.18688183,0.49656877,0.69692284,-0.022019032,-0.017546896,0.8267911,-0.16424918,0.019484181,0.3595992,-0.107680984,-0.13097753,0.49394724,-0.93689835,0.14794348,-0.30495438,0.116500005,0.26909178,0.030418694,0.4326971,1.0815636,-0.14109685,0.22778866,-0.08195209,-0.2878301,0.026854783,-0.12693234,0.04187239,-0.26164114,-0.5176884,0.7898334,0.19922526,0.5017759,-0.36564916,-0.069984995,0.12682919,-0.33416218,0.38421297,0.008211182,-0.014045843,-0.11107389,-0.33659866,-0.10032383,0.6043563,0.12052607,0.11848908,0.05205549,-0.11858869,0.27929282,-0.034226324,-0.08260427,-0.07435612,-0.4634436,-0.036003742,-0.41436037,-0.25634128,0.4096858,-0.092788935,0.18798567,0.12077787,0.2543437,-0.2100792,0.21387611,0.28033867,0.59960335,0.09187589,-0.13438234,0.041822433,-0.037035115,0.08675189,-0.34925523,-0.1453804,-0.17220959,0.24783505,-0.9572487,0.37305728,-0.45120713,-0.54641306,0.17663293,-0.19685994,-0.09213463,0.36933237,-0.16380708,-0.13173278,0.24758802,0.014795618,-0.059830155,-0.35796043,-0.27705568,0.06480147,-0.32507893,-0.056155358,-0.33934942,-0.26876023,-0.21729633,0.32358027,-0.017282983,-0.07935582,0.29569674,0.27761227,-0.3770661,0.27361637,0.41005197,0.5786475,-0.05105309,-0.037120722,-0.28987232,-0.10631696,-0.30260485,0.24289478,-0.012022285,0.19820571,0.15750231,-0.37046176,0.92432016,0.020387216,1.1018735,0.022629559,-0.44210118,0.04973369,0.49345812,-0.08299417,0.04227573,-0.37320682,0.92649543,0.59561235,-0.2310244,0.052424673,-0.59623474,-0.14151405,0.23966189,-0.3371717,0.0110232,-0.068530865,-0.7346929,-0.18473777,0.27069804,0.26744008,-0.12169243,-0.1621309,0.15844819,0.22630231,0.2921696,0.16392593,-0.55712366,-0.002901273,0.33656034,0.30335096,-0.15020704,0.29307482,-0.36999542,0.26550445,-0.8310849,0.22583832,-0.35591692,-0.027388189,-0.10847305,-0.10512308,0.28789595,-0.010757706,0.26219597,-0.17513976,-0.39784476,-0.007000732,0.38902664,0.30279765,0.23658721,0.8851201,-0.27068648,-0.021670574,0.0030522856,0.48484284,1.1503905,-0.26888555,-0.025080578,0.2921559,-0.33218506,-0.68266857,0.14221282,-0.51947874,-0.23614345,-0.040184326,-0.59828186,-0.3992861,0.2147647,0.080435514,0.07517498,0.08275087,-0.65380186,0.020453999,0.17295708,-0.2102921,-0.15310022,-0.013346379,-0.025212819,0.8941477,-0.3462936,-0.59654796,-0.022942407,0.3666698,-0.2790601,-0.7249447,0.18937756,-0.48264113,0.44407383,0.37808985,-0.29437426,0.006839418,0.02697019,-0.7195674,0.110081896,0.36944804,-0.24316014,-0.048208747,-0.4419082,0.23796742,0.66685426,0.07172171,0.34824124,-0.11469318,-0.69816226,-0.6983675,-0.13351479,-0.042197686,0.1445956,0.018923143,-0.58186245,-0.0875997,-0.51194465,-0.11791103,-0.012419075,-0.6166418,0.42811483,0.05296121,0.5144409,-0.28128448,-1.1042534,0.2155861,0.29193148,0.0072790342,-0.41878515,0.29169062,-0.1261072,0.94817203,0.06151712,-0.049283247,0.15238455,-0.88264555,0.34017047,-0.41966048,-0.22671293,-0.6259983,-0.09920753 +44,0.43382218,-0.17904972,-0.5297974,-0.10512173,-0.14398193,0.18515903,-0.08039981,0.42917186,0.22152197,-0.2690428,-0.00618322,-0.2576164,0.091338515,0.36984453,-0.014021197,-0.4244411,-0.02344342,-0.0045243874,-0.52818775,0.49506545,-0.42905414,0.19088241,-0.18700159,0.3926402,0.2937711,0.3597511,0.00034229457,-0.11217942,-0.034852672,-0.05306371,-0.024129827,0.39487913,-0.2806739,0.1378186,0.03451445,-0.11065892,0.01262043,-0.24895601,-0.45926702,-0.6249392,0.37102813,-0.5915104,0.37718344,-0.0027284175,-0.24510425,0.028332502,0.04459375,0.17371425,-0.36936608,-0.14806552,0.07965613,-0.07877433,0.0891889,-0.12275633,-0.088404834,-0.340619,-0.42927456,-0.075145856,-0.43181098,-0.25239116,-0.27558154,0.077510834,-0.40977728,-0.10106412,-0.12821834,0.55852926,-0.49465907,0.1063656,0.14461917,-0.24468766,0.25677934,-0.64980054,-0.32831293,-0.08991259,0.19786894,-0.091012545,-0.2198377,0.27401057,0.29393697,0.28384948,-0.026337113,-0.010840796,-0.31005624,-0.24408263,0.22662976,0.42300564,-0.16696009,-0.6028973,-0.06880437,0.04117708,-0.040587954,0.17319156,0.13302867,-0.34364617,-0.14870699,0.22118771,-0.24411875,0.35349798,0.4712323,-0.36794502,-0.2506992,0.25526655,0.52122766,0.35944137,-0.20420837,0.013093881,0.034454018,-0.40739995,-0.07585696,0.101189524,-0.074937,0.4562289,-0.1394112,0.37394977,0.63153183,-0.22154167,-0.017268173,-0.064134866,0.030897232,-0.24760409,-0.2254409,-0.038252335,-0.03376189,-0.3392886,0.26339206,-0.10994263,0.76479226,0.25814432,-0.4710849,0.44151068,-0.51535225,0.20862949,-0.05641284,0.51513433,0.64424765,0.15486363,0.4275966,0.71346027,-0.27226198,0.08122735,-0.17840445,-0.32110292,-0.042759098,-0.112052165,-0.02378216,-0.4329796,-0.06823118,-0.01567476,-0.19508168,-0.016444605,0.40205026,-0.4718539,-0.12797768,0.085689545,0.72525716,-0.28765357,-0.031230448,0.5209424,0.9546867,0.91582996,0.024926875,1.0464433,0.04995203,-0.25310352,0.2991264,-0.35009423,-0.65225846,0.31512,0.36788267,0.41346335,0.11979343,0.0014253333,-0.08731739,0.41491386,-0.34684312,0.24179418,-0.18490416,0.36923796,0.2496795,-0.04949172,-0.20931093,-0.30071157,-0.19176954,-0.121431276,-0.03468664,0.18997869,-0.18709046,0.3611509,0.035772152,1.8253322,-0.073300704,0.1070242,0.1826651,0.56592673,0.1285736,-0.19482602,-0.0608372,0.4753694,0.31428277,0.1135501,-0.5909606,0.20801815,-0.29457092,-0.635406,-0.060234696,-0.42051423,-0.18185577,0.011179919,-0.4181437,-0.14027388,-0.032750357,-0.31106952,0.4718616,-3.0039902,-0.22707987,-0.16347708,0.19904508,-0.23912893,-0.2013044,-0.06194958,-0.43425366,0.24439429,0.34341514,0.42883402,-0.68277234,0.16612081,0.44564104,-0.3884249,-0.10405981,-0.48913777,-0.115053326,0.010096736,0.4404943,-0.050423395,-0.0137478225,-0.08433338,0.18910542,0.42281368,-0.08477482,0.14181994,0.2753059,0.21230301,-0.00775335,0.5795511,0.007089464,0.4192429,-0.21416643,-0.088122904,0.40467507,-0.35458156,0.28976387,-0.12500069,0.13279125,0.44626743,-0.3052813,-0.724024,-0.4787662,-0.13316394,1.1695101,-0.2593525,-0.36105484,0.4014145,-0.5707905,-0.064146,-0.34117562,0.41469806,-0.041658945,-0.14835969,-0.74907136,0.18258585,-0.12204009,0.08514709,-0.0014914237,-0.041730274,-0.20532846,0.66916674,0.045806013,0.58065546,0.3395393,-0.06760213,-0.19064456,-0.42044455,-0.03588112,0.5950967,0.2956279,0.14658378,-0.3104802,-0.20446756,-0.22789675,-0.043542117,0.18345517,0.53839225,0.5228118,-0.0053509697,0.2168783,0.3425575,-0.18355703,-0.1343592,-0.2042706,-0.1743567,0.026663493,0.023966037,0.5748377,0.56246275,-0.23363999,0.5439873,0.044808157,0.14432643,-0.17870733,-0.4343015,0.37331074,0.8694546,-0.24726464,-0.2217635,0.38696298,0.34409675,-0.31079817,0.2565714,-0.5262362,-0.016495626,0.6223751,-0.19829014,-0.34805495,0.37446043,-0.3000919,0.16136587,-0.8865049,0.2051369,-0.34651473,-0.44172996,-0.50360256,-0.18802091,-3.138806,0.09144819,-0.27611336,-0.33241808,-0.079349905,-0.19851041,0.1060382,-0.60213804,-0.5816588,0.045221962,0.118106335,0.57074946,-0.09701718,-0.061010204,-0.30130818,-0.32267183,-0.3348003,0.07582995,0.022454567,0.47256935,-0.13698217,-0.41945314,0.097473726,-0.05281064,-0.33858937,0.088408634,-0.32136455,-0.56300676,-0.12047326,-0.47247624,-0.4663924,0.6453348,-0.074226275,0.04744009,-0.14413159,-0.09761015,-0.035067227,0.3057727,0.25359154,0.10388805,0.023341138,0.02226222,-0.10689297,-0.24848029,0.06386583,-0.094319314,0.32276383,0.4055032,0.03461179,0.22695799,0.5286747,0.4851802,-0.089980595,0.7901591,0.50095564,-0.041437354,0.29073474,-0.35649067,-0.21245795,-0.44769615,-0.2787507,0.1487234,-0.3903023,-0.58316374,-0.1581859,-0.23826146,-0.5230369,0.44023013,-0.079358116,0.099842116,0.1158836,0.17476764,0.58236915,-0.066573516,-0.026117675,0.09439602,-0.075661324,-0.7023555,-0.31949008,-0.64846635,-0.45483837,0.22577672,0.8139214,-0.2863044,-0.12683141,0.05538511,-0.5627858,-0.023692703,0.07206915,0.11827096,0.22820877,0.37094644,-0.19229567,-0.5427918,0.35278794,-0.08300498,-0.12754843,-0.53145564,0.18028057,0.57996464,-0.59250516,0.657427,0.12426413,0.092464484,-0.2855184,-0.56826687,-0.20072336,0.0093461685,-0.22155043,0.41519982,0.12560092,-0.7202836,0.3695358,0.32466194,-0.1460563,-0.691597,0.5422982,-0.11353815,-0.40576875,-0.022569004,0.2528957,0.11110722,-0.008820295,-0.11871988,0.31357533,-0.47343355,0.2663335,0.25615567,-0.14188063,0.2759027,-0.14216316,-0.18296948,-0.5457903,-0.035967246,-0.45236814,-0.25274074,0.31714645,0.11988172,0.13275552,0.05374439,0.11013212,0.3884661,-0.122620925,0.07437091,0.0011589155,-0.10776898,0.28431386,0.37919372,0.40654865,-0.34435204,0.6027471,-0.06395705,0.044592842,0.1387863,0.104738,0.3059709,0.19651303,0.37370747,0.04087593,-0.33037314,0.2351808,1.1077845,0.23365521,0.53584385,-0.03921647,-0.18883617,0.2145544,0.081594214,0.24576774,-0.036838472,-0.4663908,-0.020311609,-0.1722301,0.21714002,0.3447191,0.17087954,0.23806082,-0.08988899,-0.39504707,0.01922603,0.23095348,-0.031740457,-1.2343314,0.31062546,0.20773634,0.85738385,0.38835818,0.0044253394,-0.003284566,0.5711099,-0.16047515,0.07632318,0.3177482,-0.056843232,-0.6044688,0.4674591,-0.7707627,0.6022588,-0.025929742,-0.04742362,-0.008527122,-0.03830806,0.3284593,0.6899214,-0.16770445,-0.15293482,0.10187148,-0.26271877,0.12251016,-0.43067586,-0.087231874,-0.66571784,-0.30783835,0.4444915,0.5222372,0.19223316,-0.20896794,0.030698605,0.0502781,-0.08061355,0.21681592,-0.013371624,0.17695148,-0.08328668,-0.69843626,-0.34584498,0.43734884,-0.10617669,0.21124631,-0.05769359,-0.23521541,0.2840649,-0.11456949,-0.042680684,-0.11231181,-0.4169448,0.04557693,-0.22775665,-0.5273298,0.46907985,-0.23171821,0.3977156,0.2546709,0.046618104,-0.27690548,0.41072565,-6.394833e-05,0.7692635,-0.27342957,0.0019972567,-0.5647082,0.0020827428,0.22105011,-0.128286,-0.20719287,-0.19680613,-0.071348265,-0.4283466,0.48390096,0.029525762,-0.30026066,-0.02023004,-0.21038273,-0.033848252,0.63809747,-0.07623142,-0.24266808,-0.25304753,-0.18085691,-0.36816648,-0.07200599,-0.0029048473,0.20206505,0.1955008,0.0054997355,-0.10579727,-0.15262875,0.029626556,0.23475488,-0.013073007,0.29341573,0.29942173,0.14773133,-0.2471776,-0.16675116,0.2480326,0.46449608,0.107736066,-0.069962695,-0.23980334,-0.47652477,-0.36672077,0.1443416,-0.1149655,0.3998419,0.16136064,-0.49270436,0.6304228,-0.06283648,0.9992587,0.13096684,-0.22589849,0.098894835,0.52680427,0.0559043,-0.009958748,-0.21114513,0.65064895,0.4901785,-0.064701095,-0.2914486,-0.19069767,-8.8173896e-05,0.21897465,-0.12845173,-0.08530551,-0.007819162,-0.5629107,-0.06666605,0.23409986,0.22097209,0.2607954,-0.12397502,-0.11680147,0.16086021,0.07333283,0.3338037,-0.31460568,-0.097771086,0.2490295,0.15360293,0.11280007,0.07500121,-0.38419905,0.42919502,-0.44371623,0.20640984,-0.21420318,0.20189996,-0.2001729,-0.1843257,0.18862034,-0.095954776,0.38185972,-0.2616829,-0.30280608,-0.2990078,0.3924798,0.1789504,0.12849884,0.55210423,-0.15111446,0.0028254688,0.23341915,0.4628684,1.0819473,-0.22223675,-0.120718166,0.3756045,-0.31818762,-0.610333,0.42279154,-0.25548822,0.13537344,0.029594418,-0.050823636,-0.542186,0.23933154,0.30542055,-0.047375206,0.016961325,-0.6568651,-0.26198214,0.21819322,-0.42072868,-0.11736564,-0.47621956,-0.08041145,0.62501776,-0.20038351,-0.25467384,0.16019477,0.28703073,-0.29704785,-0.48663118,0.10980771,-0.2736026,0.41371354,-0.020264,-0.21886918,-0.061413124,0.2168499,-0.4039621,0.16233908,0.06599695,-0.43701485,0.13104123,-0.20228931,-0.07767576,0.91702485,-0.27005395,0.09343037,-0.34810883,-0.3546007,-0.71791846,-0.29730928,0.5118265,-0.08542875,-0.042312913,-0.5265167,-0.08926775,0.040048525,-0.08559666,-0.11171675,-0.45178565,0.5745925,0.06365326,0.2897504,-0.0474215,-0.6379173,0.16860668,0.0042105448,-0.07825316,-0.49833125,0.6104456,-0.14326689,0.57773733,0.09638631,0.069643795,0.2170974,-0.29824233,0.09645912,-0.21884674,-0.19517435,-0.5572791,0.09578073 +45,0.66803795,-0.21863663,-0.5954934,-0.125796,-0.34637442,0.22472791,-0.1349184,0.69802994,0.21663089,-0.45793596,-0.17700827,-0.032248598,-0.20949024,0.3971896,-0.20616944,-0.74362606,-0.028875014,0.12881891,-0.31123868,0.8966057,-0.1551644,0.31997108,-0.2777755,0.46152994,0.2699401,0.307992,0.19480197,0.13096446,-0.11153064,-0.27543485,0.057391047,0.19748461,-0.7451058,0.23516959,-0.19209611,-0.47750917,-0.062429756,-0.38694692,-0.346186,-0.82662815,0.49945155,-0.92010957,0.6232254,0.15288283,-0.27069244,0.34217048,0.11628006,0.070651636,-0.13923961,-0.018565783,0.03384305,-0.16445841,0.1399465,-0.25103042,-0.27877322,-0.7612032,-0.70226234,-0.18885326,-0.4515631,-0.18541634,-0.07525989,0.22773902,-0.39739403,-0.02847918,-0.22165686,0.43542287,-0.41639695,-0.0070792288,0.21555497,-0.25732052,-0.07008156,-0.8125663,-0.43478677,-0.14966296,-0.007701099,0.12404894,-0.046865713,0.5504989,0.11964995,0.29388776,0.088661276,-0.24953537,-0.29489002,-0.23413043,0.12381513,0.36940265,-0.2529217,-0.57246876,-0.19270074,-0.09638772,0.47805488,0.17474622,0.31552517,0.01693357,0.01860909,-0.19366352,-0.16260734,0.50189185,0.57197154,-0.3233116,-0.22061302,0.37162766,0.3224479,0.21517813,-0.28187892,-0.13504456,-0.009957875,-0.36050224,-0.10846937,0.040091883,-0.31323949,0.73859316,-0.13940333,0.20855188,0.5874138,-0.24995363,0.113264896,-0.016759183,0.18069784,-0.10120324,-0.4417955,-0.37078318,0.3479224,-0.45884076,0.2701824,-0.39948237,0.7418797,0.29787755,-0.40037617,0.2775563,-0.61100405,0.08747215,0.027932672,0.45783707,0.53798336,0.5562369,0.08333078,0.75608367,-0.24515994,0.060912233,0.11008755,-0.06672748,-0.029494695,-0.5255621,0.11874154,-0.47864416,0.32868248,0.023133108,0.0060657016,-0.04596257,0.5957623,-0.49287185,-0.2945311,0.3136048,0.9599144,-0.261215,0.05574515,0.8185801,1.3430818,1.1326967,-0.13712241,1.1067439,0.10785058,-0.3303248,-0.09704768,-0.021028638,-0.85141104,0.16477357,0.3174518,-0.2683507,0.6136768,0.08505217,-0.2295603,0.20219336,-0.40261933,-0.12850262,-0.14073974,0.15366612,0.23301156,-0.09234631,-0.566457,-0.15015955,-0.05167818,-0.11843455,0.21756661,0.40492257,-0.2321366,0.4300401,-0.13640629,1.0818694,-0.15849037,0.12061635,0.18868446,0.83716756,0.28504854,0.07245911,0.45010749,0.49093655,0.31187287,0.103534736,-0.5479307,0.215374,-0.5029475,-0.5839281,-0.10969975,-0.35552302,-0.21449845,0.1133343,-0.27781367,-0.4123484,-0.11011207,0.07796854,0.21688326,-2.513428,-0.097556055,-0.26600328,0.2914041,-0.36980543,-0.22371222,-0.026470095,-0.5783058,0.4433249,0.35645422,0.3941675,-0.57441264,0.32257333,0.5334907,-0.51046205,0.10737028,-0.43757498,-0.058429226,-0.09212592,0.6763517,-0.17506225,0.016381884,0.13062818,0.20655914,0.49999595,0.24272804,0.27702188,0.14836954,0.3514825,-0.12732548,0.1822728,-0.08674288,0.52558726,-0.3964428,-0.064681,0.3910673,-0.5860426,0.4037323,-0.28593108,0.050226253,0.6936495,-0.44712067,-0.61371756,-0.53779507,0.14896365,1.0786911,-0.31480756,-0.824282,0.08855908,-0.26381543,-0.1433777,-0.21055473,0.33618245,-0.13328719,0.061257083,-0.62437373,0.0774527,-0.029337445,0.14319079,0.061701026,0.13743214,-0.40221623,0.7306211,0.14794534,0.5949743,0.17244045,0.31243184,-0.253325,-0.5155752,0.027620858,0.743639,0.5324987,0.058456093,-0.2595959,-0.018960714,-0.13385269,-0.33671358,0.1594223,0.74013805,0.52568954,-0.124938585,0.09908696,0.37904572,0.122880846,0.28681716,-0.07808277,-0.4352294,-0.36117396,0.05398597,0.55095214,0.684299,-0.37502024,0.25173157,-0.10418305,0.4043131,-0.15220304,-0.50241977,0.5623162,1.1874789,-0.22335692,-0.29689646,0.81987685,0.6062846,-0.67268115,0.5883295,-0.8018877,-0.2733883,0.6214016,-0.25950083,-0.4397936,-0.008499113,-0.33212766,0.0051113144,-0.79037875,0.33926892,-0.32973877,-0.20837663,-0.66730326,-0.26301882,-2.5910637,0.084674336,-0.3811395,-0.16518289,-0.45107684,-0.06858234,0.12685327,-0.81386644,-0.63569134,0.24662615,0.12696603,0.5809972,-0.10048928,0.20321862,-0.32343817,-0.26353988,-0.46863684,0.3230615,0.06406683,0.16780533,-0.10464827,-0.39172348,-0.0049041263,0.05129959,-0.3267952,0.036855906,-0.53662306,-0.19528514,-0.114338666,-0.5600473,-0.022357186,0.6905077,-0.14891581,0.011690135,-0.21863806,0.16396914,-0.20322466,0.011013604,-0.15139717,0.26642153,0.13476913,-0.18612947,0.32654986,-0.36772752,0.55674034,0.065484636,0.53493017,0.36972246,-0.26702598,-0.060118895,0.3850789,0.46635914,0.18142855,0.7967472,0.24097745,-0.13853712,0.4919047,-0.3570087,-0.37294593,-0.75454116,-0.28999642,0.18205146,-0.28077307,-0.61442167,0.09909443,-0.39906228,-0.9617324,0.5932961,-0.16073711,0.63249373,-0.046813652,0.26012912,0.55976194,-0.25877032,0.12091889,0.07710589,-0.03618301,-0.50151396,-0.2634643,-0.70385617,-0.2795074,0.1646922,0.76042724,-0.35726163,-0.24444528,0.1722786,-0.45024207,0.048101474,0.23147714,0.050322924,-0.26477662,0.5345954,0.2056355,-0.7312786,0.64520454,0.023327827,-0.039260063,-0.42718986,0.2668046,0.5316525,-0.86051345,0.5197672,0.5053451,-0.007809038,-0.45722005,-0.5896156,-0.1426167,0.071632825,-0.0767489,0.3233727,0.29537714,-0.68765944,0.2555689,0.16856991,-0.41426802,-0.65074915,0.6668022,-0.159638,-0.22082533,-0.18558986,0.48069847,0.21475947,-0.10716925,-0.09944042,0.350947,-0.41917157,0.21518214,0.07660329,-0.13138777,0.28460273,0.08754108,-0.18451184,-0.8496588,0.42392087,-0.64041144,-0.31610194,0.510606,0.027663613,-0.027165672,0.18315278,0.30877283,0.35675725,-0.33300683,0.3201219,-0.013857134,-0.40833628,0.56914395,0.2487384,0.6477554,-0.55310386,0.7233908,0.06080407,-0.068750896,0.3430545,0.21152222,0.34701857,0.28488913,0.7360837,0.24222179,-0.21331763,0.09041583,0.76391643,0.35634807,0.53181964,0.2645323,-0.20426734,0.27188894,-0.007982678,0.16283166,-0.103860974,-0.60998946,-0.28701273,-0.13942754,0.08437282,0.44152424,0.12482045,0.44443956,-0.047403287,-0.18289489,0.017943835,0.17749012,-0.07134109,-1.2962797,0.13843141,0.25830755,1.0047402,0.507908,0.022543589,-0.034636907,0.6423181,-0.14437722,0.027657678,0.5896521,0.17780967,-0.5210566,0.5286527,-0.3191637,0.3808516,-0.106423475,0.05632171,0.09663477,0.11057752,0.41944394,0.6731582,-0.24486046,-0.009108772,0.022282697,-0.5185832,0.14861952,-0.32414153,0.17232098,-0.42800805,-0.15712096,0.4817792,0.55628484,0.19337298,-0.20948492,-0.030805035,0.1355876,-0.05356586,0.30589226,0.13095458,0.015147656,-0.07306831,-0.6170378,-0.23307562,0.531116,-0.2598834,0.037569303,-0.04621118,-0.42253777,0.30944932,-0.115950964,0.011702764,0.09872975,-0.8300331,0.27275178,-0.007982726,-0.50329393,0.5881416,0.07542261,0.03896028,0.20111574,0.002039044,-0.29250923,0.09279444,0.082306236,0.59416556,-0.20949475,-0.23457634,-0.6546956,-0.16586448,0.05662803,-0.24792464,0.4315982,-0.11681304,0.15869369,-0.19229262,0.58753103,-0.010609533,0.040520016,-0.30736586,-0.24409938,-0.12048578,0.4657775,0.0069086254,-0.06731791,0.02507171,-0.058975402,-0.46331677,-0.20710975,-0.26990935,0.0571042,0.12568918,-0.035277408,-0.32672364,-0.219616,0.039896697,0.36781755,-0.01710861,0.23128456,0.42102256,0.102971755,-0.45989385,-0.08695904,0.32389554,0.44487333,-0.036103293,-0.07913446,-0.16673177,-0.7098115,-0.36565578,0.414198,-0.19538724,0.26421458,0.094645835,-0.32967964,0.8880939,0.06916133,1.211946,-0.13712026,-0.55537695,0.040902864,0.6427579,-0.10112039,-0.08382393,-0.37350282,1.186359,0.65804553,-0.16399579,-0.15210295,-0.4597137,-0.0029697816,0.11752387,-0.32766482,-0.15510003,0.0037796907,-0.5212544,-0.27594146,0.13694675,0.4096315,0.25148073,-0.1562979,-0.004098306,0.356563,0.41643262,0.39103493,-0.64245015,-0.53112274,0.27107364,0.06884941,0.024950242,0.23522316,-0.40399444,0.200437,-0.6681695,0.2539233,-0.35727584,0.0062358924,-0.23034006,-0.42924657,0.109335005,0.032520626,0.41451764,-0.39867875,-0.5301822,-0.19432636,0.3411183,0.08114185,0.1986206,0.43588528,-0.3359425,0.062281277,-0.0074247173,0.64197576,1.0380868,0.0705148,-0.07803584,0.08499733,-0.6388891,-1.0310092,0.19086532,-0.41630864,0.37929192,-0.20140028,-0.29608077,-0.85540074,0.33961606,0.07543143,-0.26244962,0.12268016,-0.68123597,-0.31389457,0.13044508,-0.32400313,-0.2663403,-0.3220589,0.081332944,0.7600662,-0.29313186,-0.14479254,0.008597185,0.35845664,-0.26589456,-0.766329,-0.113583006,-0.50762063,0.32142484,0.036950085,-0.20588098,-0.18016808,0.0552074,-0.5255651,0.3740851,0.2207578,-0.41869447,-0.11816306,-0.3510429,0.08247219,0.7744458,-0.15184905,0.042015474,-0.5666605,-0.5793637,-0.8958114,-0.7075642,0.18978328,0.16452152,0.08085489,-0.77662104,0.113624394,-0.20965713,-0.16194905,-0.14915557,-0.39672145,0.37641108,0.18422185,0.44900712,-0.012999207,-0.9030678,0.25608477,0.20578568,-0.037783105,-0.5926682,0.2712504,-0.25557017,1.1040407,0.13496196,0.067908034,0.08932149,-0.5233297,0.08346394,-0.20478709,-0.15403463,-0.6550849,0.14035149 +46,0.30627352,-0.043116566,-0.33100098,-0.053793266,-0.28461856,0.04609751,-0.26120287,0.39876178,0.44908,-0.44317016,-0.23894851,0.055116873,-0.24816862,0.06222776,-0.17813037,-0.38801256,-0.17260145,0.19433776,-0.4397054,0.6934008,-0.14720373,0.35638663,-0.06266519,0.46590143,0.30551574,0.24698909,-0.06565168,0.08130797,-0.09238041,-0.24797669,0.086807,0.4093992,-0.38841325,0.40124714,-0.30683258,-0.28666115,-0.23270124,-0.41721076,-0.43957654,-0.68126553,0.34761974,-0.65759355,0.5142193,0.10189501,-0.2329908,0.11966543,0.22268346,0.17407335,0.1520405,-0.14356147,0.22811402,-0.13024318,-0.14712858,-0.026274903,-0.23560296,-0.2606288,-0.5842339,0.04535586,-0.22197956,0.017061833,-0.34936488,0.2516977,-0.29675835,-0.13056022,-0.2195219,0.50789636,-0.29336765,0.2568702,0.069161214,-0.12224485,0.07136513,-0.7399624,-0.25474355,-0.13357218,0.12544605,-0.052838985,-0.31777006,0.26523212,0.15532564,0.4486037,-0.033898782,-0.0738272,-0.40651566,-0.106145136,0.4018821,0.4559359,-0.28302774,-0.1147581,-0.15940197,-0.02380214,0.3997418,0.0839997,0.20678349,-0.34398863,0.03023214,-0.23044197,-0.07326705,0.45185998,0.47088447,-0.0382574,-0.23559366,0.28233328,0.49619156,0.43700466,-0.1514039,0.049756296,-0.02718337,-0.39129856,-0.14232685,-0.053925574,-0.19333082,0.30951664,-0.041373584,0.19565222,0.41223797,-0.105389915,-0.038422085,0.25185484,0.23754995,0.26252285,-0.37013796,-0.29021472,0.2115603,-0.50571513,0.12688424,-0.14657487,0.44945663,-0.1089359,-0.70348996,0.21907265,-0.41868418,0.07652285,0.077184685,0.4814237,0.7657777,0.31718922,0.31045455,0.7401074,-0.20298567,0.034311574,-0.076588474,-0.090124324,-0.16344735,-0.13299698,-0.0033673446,-0.565164,-0.016234191,-0.11098026,-0.021755258,0.23716202,0.3960013,-0.4400453,-0.19708684,0.040827338,0.8530125,-0.24936546,0.09847789,0.84742934,1.0871445,1.0649273,0.0086742975,1.1237869,-0.1258625,-0.23800911,-0.18653376,-0.2325334,-0.6347974,0.21254285,0.26495236,-0.5420757,0.25749108,0.090857975,0.103009015,0.37156552,-0.60494155,-0.06760617,-0.22308461,0.24436454,0.11830975,0.0074923993,-0.49042982,-0.20516004,0.035843257,0.11335306,0.13082947,0.22993088,-0.35718346,0.32551414,0.12496354,1.096388,-0.26585308,-0.11616667,0.09759654,0.26890805,0.12875898,-0.22514562,-0.06301195,0.21221349,0.29532826,-0.09887937,-0.5197939,0.03390943,-0.17048179,-0.34718683,-0.150269,-0.25655746,-0.27586707,0.11360867,-0.18436207,-0.296241,-0.1616314,-0.5374299,0.37974727,-2.646433,-0.14488922,-0.05468116,0.28277197,-0.13335861,-0.3967296,-0.20315436,-0.36294395,0.4359183,0.13028206,0.3252133,-0.41429865,0.114504896,0.5483452,-0.66458714,-0.06354854,-0.45013797,-0.16444781,0.1449499,0.37585768,0.058565173,0.018385053,0.02559684,0.29074377,0.45265847,0.041636396,0.15319155,0.4529548,0.3599642,-0.18102725,0.25045022,-0.069655046,0.57872146,-0.24766363,-0.31417137,0.42446855,-0.32751846,0.39102507,-0.36046895,0.13032106,0.49449137,-0.37591317,-0.6119108,-0.50215137,-0.24515818,1.324808,-0.14535774,-0.53583294,0.34076846,-0.60711974,-0.31088632,-0.102977276,0.5588243,-0.059474207,-0.19005994,-0.809292,-0.09802411,-0.15477744,0.15322366,-0.08062123,-0.070714764,-0.4084657,0.7693157,-0.061083414,0.44827315,0.43341067,0.2823489,-0.2758149,-0.387296,0.13301058,0.88870895,0.5643308,0.17054577,-0.29732984,-0.047723975,-0.3794621,-0.1573855,0.14264984,0.67647135,0.50624007,-0.076219074,0.11310287,0.21190688,0.11466101,0.057538867,-0.27778193,-0.21142527,-0.22460492,-0.031717993,0.62480515,0.49079177,-0.10724934,0.31356442,0.01013865,-0.010925209,-0.1711248,-0.35199115,0.36725122,1.0090852,-0.1862956,-0.27897003,0.72055167,0.5055345,-0.19561033,0.41878426,-0.57882375,-0.21716127,0.32204068,-0.20911665,-0.5322636,0.13487908,-0.4708121,0.112201706,-0.5342415,0.42899734,-0.23903182,-0.7141063,-0.66609395,-0.050150625,-1.3417706,0.23157038,-0.23592205,-0.32219726,-0.34031364,-0.30621716,0.11070783,-0.32146123,-0.63886416,0.18147346,0.114263244,0.608574,-0.20690003,-0.052728023,-0.039749563,-0.3255332,-0.11024491,0.07342794,0.21284457,0.34145203,-0.0563041,-0.30533472,-0.11019523,0.012884617,-0.30746225,-0.06991593,-0.50358117,-0.52338535,-0.03775382,-0.3364707,-0.008789794,0.5087278,-0.430168,0.15174145,-0.24300058,-0.06964093,0.08504249,0.20116739,0.020492097,0.30954486,0.24162553,-0.049439646,-0.0067611537,-0.10260787,0.45109397,0.21853386,0.17970015,0.4835453,-0.24958639,0.3588073,0.35476866,0.7650675,-0.20450278,1.1134591,0.48541743,-0.1464365,0.24857815,-0.33612448,-0.45917422,-0.528194,-0.056352545,0.29370695,-0.464821,-0.45865422,-0.045259126,-0.365373,-0.89074385,0.5056917,0.109213986,0.3310931,-0.08488334,0.07331034,0.40390062,-0.17715864,-0.088698596,-0.15644884,-0.19606324,-0.40894032,-0.47765917,-0.61892533,-0.34541813,0.044938304,0.9616597,-0.18305172,0.22207238,0.3481218,-0.30437666,0.044332344,0.1163233,0.0029610514,-0.014079953,0.36852297,0.12476822,-0.5046178,0.28960714,0.25415114,-0.057108387,-0.60541284,0.31824142,0.61653227,-0.4276348,0.61198807,0.2751153,-0.095401436,-0.37139156,-0.56050915,-0.12259412,-0.10150129,-0.35097083,0.4846005,0.30863073,-0.5341491,0.29828778,0.30662164,-0.07688831,-0.8376411,0.534614,-0.08032758,-0.097093254,-0.043042652,0.32590115,-0.029895388,0.096060134,0.07472624,0.34427235,-0.17148672,0.44734573,0.10794627,-0.24466802,0.05552252,-0.35894948,-0.20119594,-0.8226815,0.18174897,-0.5509679,-0.36112732,0.2608981,0.107304506,0.15562579,0.21374363,0.38881522,0.36314365,-0.19112794,0.11114118,-0.16681556,-0.3335022,0.3069546,0.48943818,0.61276406,-0.260974,0.43761384,0.087057255,-0.1941403,0.0777798,0.078857906,0.38081446,-0.13541906,0.31647682,-0.096918024,-0.14007886,0.052884348,0.8126085,0.1707657,0.24053438,-0.16098261,-0.121090695,0.2412021,-0.006252253,0.2849913,-0.19977368,-0.56970406,-0.04399862,-0.25940016,0.09755857,0.43604267,0.23423865,0.29250136,-0.1802969,-0.28188393,0.035681535,0.2189202,0.15169002,-1.4025807,0.3844199,0.1839705,0.88190824,0.5452101,0.049801327,0.058810096,0.6079804,-0.09156416,0.0585148,0.36766377,-0.050227888,-0.40402555,0.34142077,-0.59393495,0.4344874,-0.012434109,0.074991144,0.07781092,-0.04414573,0.3561798,0.72359806,-0.15284517,0.023654845,-0.1193852,-0.32360736,-0.026252694,-0.32545847,0.28265542,-0.52150285,-0.5037673,0.8019353,0.59402287,0.40338135,-0.20663062,0.14319319,0.097875066,-0.28237584,0.2107249,0.024305034,0.04808825,-0.14271119,-0.64523864,0.13363391,0.36200082,-0.2548628,-0.007330513,0.056896646,-0.08944915,0.15564589,-0.07705341,-0.04246847,0.03150144,-0.72331375,0.0061000665,-0.3906559,-0.40624455,0.14639853,-0.1316176,0.056111224,0.22730064,0.06698847,-0.22827731,0.41384214,0.07538676,0.6596029,0.22639205,-0.028160302,-0.25096554,0.30822226,0.06790774,-0.15256907,-0.048727263,-0.057440255,0.22235762,-0.5223125,0.41669023,-0.12031722,-0.29620335,0.05659126,-0.16110821,-0.014461575,0.40047815,-0.11576518,-0.12557362,-0.001821818,-0.29515857,-0.22671922,-0.14500266,-0.10416611,0.25948244,0.06908082,-0.007710485,-0.17270833,-0.19474138,-0.3572373,0.21577041,0.12083317,0.47158045,0.44160348,-0.0010428886,-0.47334728,0.011891093,0.15384741,0.4905875,-0.011467448,-0.013030112,-0.097859465,-0.30980244,-0.4148505,0.42198005,-0.08387796,0.35724643,0.024159312,-0.1749791,0.7615215,0.06564616,0.938864,0.04856996,-0.3593726,0.10281278,0.40981495,-0.24316429,-0.028747419,-0.2650627,0.7512464,0.447069,-0.013225059,-0.09953999,-0.3648825,0.1503727,0.121118404,-0.3058279,-0.08449976,-0.086821176,-0.71180505,-0.240501,0.1991848,0.2499287,0.104277685,-0.14486006,0.017556107,0.17939356,-0.015638288,0.25350204,-0.46735084,-0.17810497,0.39750078,0.21192105,-0.06679438,0.14913863,-0.4673823,0.2809143,-0.51789457,-0.0059472444,-0.17878982,0.097180806,-0.2774375,-0.21397154,0.24770994,-0.05718835,0.2395406,-0.44788647,-0.29911616,-0.2959579,0.13373896,-0.1139567,0.12830108,0.40195253,-0.25077853,0.089007534,0.16467936,0.42492214,0.923914,-0.11510291,0.0634182,0.24047278,-0.28493398,-0.44099554,0.11054794,-0.44886714,0.052814793,0.08621083,-0.26931858,-0.35710385,0.21288998,0.15050745,0.124712594,-0.05641387,-0.7590853,-0.29862908,0.15608904,-0.23527445,-0.040189352,-0.18690498,-0.23366259,0.48517936,-0.2205469,-0.46441677,-0.13867603,0.16906688,-0.2849759,-0.5659678,0.16709684,-0.39630964,0.23995237,0.014543023,-0.42614633,-0.3066289,-0.11600171,-0.44969577,-0.009707753,0.15539163,-0.2727537,-0.12478404,-0.25767273,0.14847237,0.71789664,-0.15477699,0.21678504,-0.20740029,-0.51562405,-0.8580771,-0.21149012,-0.027525838,0.2467378,-0.14599714,-0.7271723,-0.0026164493,-0.33342808,-0.0766112,0.114230916,-0.39140752,0.4800845,0.25393507,0.45637867,-0.28236446,-0.8280791,0.25343645,0.19202343,-0.08567691,-0.37423363,0.44791558,0.23367205,0.67634517,0.07293361,0.028907565,-0.05646843,-0.69398725,0.10981165,-0.09201441,-0.17559218,-0.6201982,0.12084886 +47,0.5865426,-0.27039734,-0.5411164,-0.21508524,-0.4211003,-0.11410742,-0.12724973,0.561283,0.29723006,-0.2434621,-0.11166589,-0.098872304,0.1244737,0.37874353,-0.07982186,-0.6159099,0.24246931,0.31060278,-0.40500763,0.58638126,-0.38024595,0.19539554,-0.1549843,0.52001363,0.49105242,0.12473583,0.054229584,0.1656536,-0.14493527,-0.26506907,-0.19564725,0.33409193,-0.3716909,0.28911716,-0.005743083,-0.40413114,0.017386578,-0.70146424,-0.2938755,-0.79631776,0.27139103,-0.8441274,0.5283448,-0.06505564,-0.27303508,0.21084832,0.3637771,0.37981775,-0.1304351,-0.19007939,0.03904783,-0.19937216,-0.159933,-0.16265787,-0.19649641,-0.5429029,-0.56070876,0.03162156,-0.36873156,-0.21703553,-0.45224234,0.22758195,-0.30932778,-0.10183585,0.018788446,0.75412154,-0.3794884,0.12888712,0.10858084,-0.113868386,0.10135456,-0.6310831,-0.23083442,-0.09407345,0.29977867,-0.115757436,-0.28174102,0.26921776,0.4285856,0.27277228,0.066065945,-0.2958284,-0.24798962,-0.068072535,-0.061257277,0.44454035,-0.11145489,-0.5035152,-0.06423904,0.003899299,0.23029429,0.3365059,0.3332494,-0.06465682,-0.14541532,0.07636969,-0.12790582,0.5783715,0.41049716,-0.37374532,-0.0486458,0.27347308,0.37322316,0.29566884,-0.14626601,-0.120997615,-0.04373335,-0.6260777,-0.18475959,-0.034966595,-0.24186036,0.39686987,-0.19233552,0.28835198,0.5949469,-0.087000474,-0.20058991,0.25179452,0.15832175,-0.12416744,-0.45170033,-0.30468422,0.21852407,-0.47770816,0.33550274,-0.1728815,0.937012,0.20757246,-0.42083198,0.22354858,-0.55248195,0.21803251,-0.20040108,0.2948973,0.8154225,0.35706708,0.44416106,0.6502054,-0.28523275,-0.012207081,-0.019455872,-0.3541188,-0.065272816,-0.27745774,0.15663551,-0.5873248,0.06458971,-0.17760123,-0.060120728,0.2211962,0.60615075,-0.6297978,-0.26388377,0.2784214,0.80915797,-0.223236,-0.34514076,0.9706417,0.98107326,1.0537221,0.11269375,0.82606405,0.1393448,-0.08484103,0.14872374,0.10859704,-0.5437421,0.36918908,0.43368292,-0.20751932,-0.032078348,0.008205552,-0.093420394,0.6269751,-0.1457124,-0.33778852,-0.14968294,0.20629667,0.14385423,-0.2871892,-0.55695903,-0.48740008,-0.14118853,0.08871979,0.13742866,0.32238594,-0.121428095,0.46358302,-0.18453732,1.5275905,0.038067136,-0.10835458,0.042026144,0.51374,0.377753,-0.22638515,-0.055654563,0.35914373,0.31009224,0.12353305,-0.6238538,0.2811801,-0.2714596,-0.29843238,-0.054202914,-0.44495016,-0.119753465,0.17103778,-0.47765335,-0.1606542,-0.2537364,-0.27164152,0.54585344,-2.7475166,-0.1998633,-0.09150505,0.26567227,-0.11020296,-0.42557973,0.07581984,-0.4380979,0.49242923,0.278529,0.59007305,-0.5112358,0.26608732,0.35500643,-0.70729107,-0.1085507,-0.7224351,-0.060617015,-0.044459406,0.3329623,0.013229163,-0.14911185,0.04225783,0.041375957,0.6142012,0.047717627,0.09742844,0.23243538,0.29015476,-0.29919252,0.63256824,-0.14176983,0.73833364,-0.14795865,-0.31119597,0.2332049,-0.32217452,0.23628268,-0.13665298,0.087882794,0.7473738,-0.3761892,-1.1980317,-0.7042881,0.06733135,1.1333352,-0.10006637,-0.3814339,0.368889,-0.5455359,-0.2344843,0.116069324,0.55450493,-0.05838162,-0.21382138,-0.56680167,0.13034596,-0.028459342,-0.2182983,-0.04411183,-0.17559522,-0.51035696,0.7765267,-0.044782043,0.48052296,0.11072229,0.27130404,-0.3348738,-0.33129567,-0.1100845,0.6621698,0.4601526,0.05816549,-0.31670853,-0.17096819,-0.4499958,-0.121698685,0.23295961,0.6871203,0.45294094,-0.09642812,0.18103886,0.28800362,-0.0043872735,0.12026543,-0.074752755,-0.32085225,-0.2117367,0.10089613,0.6816381,0.6824771,0.060190614,0.64805996,-0.05536823,0.31211573,-0.094341636,-0.5132459,0.524314,1.341614,-0.36639565,-0.4370707,0.6514654,0.35072616,-0.13306642,0.4151063,-0.42068547,-0.18514608,0.42494744,-0.07814787,-0.4395297,0.04527027,-0.28047365,-0.03194764,-0.8509915,0.23041147,-0.39988676,-0.74785614,-0.43097422,-0.059133478,-3.7448606,0.34478062,-0.32121152,0.013361656,-0.21053907,-0.3974616,0.042643555,-0.7657987,-0.5309949,0.17662327,0.060966946,0.9413132,-0.21255587,0.025211811,-0.2040618,-0.50525576,-0.2532965,-0.040756878,-0.027482709,0.55825716,-0.11876829,-0.22384636,0.3319372,-0.085489154,-0.49605832,0.042723935,-0.68629587,-0.3915425,-0.21920379,-0.6266847,-0.28365582,0.5968511,-0.3048786,0.16082433,-0.29701298,0.062870234,-0.02533845,0.28073555,0.014970825,0.104562074,0.082308106,-0.18559149,0.10600399,-0.30757967,0.17150304,-0.029925277,0.39050725,0.18816954,0.077737845,0.31803954,0.5867289,0.7248557,-0.1496518,1.0756444,0.4358999,-0.060769293,0.22813955,-0.24815513,-0.4773332,-0.386782,-0.28866312,0.022537913,-0.40576437,-0.3513417,-0.045300715,-0.27377516,-0.793737,0.5560841,0.14464453,0.31877425,-0.07594592,0.28103957,0.64708394,-0.28492767,-0.16399112,0.040597063,-0.16527121,-0.7471203,-0.16128698,-0.5079543,-0.56217194,0.003097204,0.90665334,-0.3707752,0.03770057,-0.02030778,-0.25466934,0.15566863,0.20412056,-0.0038522023,0.1383695,0.4440483,-0.16802701,-0.60211486,0.37600133,-0.34990126,-0.12096372,-0.49291816,0.5057299,0.5256196,-0.4487223,0.6402226,0.39329004,0.15417777,-0.24078178,-0.5700321,-0.03432067,0.08419454,-0.13119796,0.42954132,0.34297785,-0.9995558,0.4949834,0.34915513,-0.115223214,-0.8314091,0.59634006,-0.07106363,-0.2806113,-0.22064236,0.46155065,0.39812344,-0.0156196505,-0.27741432,0.20430242,-0.4643737,0.23104326,0.04435388,-0.02876402,0.04442011,-0.2624881,-0.09602526,-0.7184274,0.037406836,-0.5209284,-0.33837125,0.20411023,0.04465476,0.11098313,0.13963588,0.09389241,0.2776592,-0.3945255,0.06443207,-0.22049357,-0.34430993,0.2772643,0.53681177,0.5488383,-0.51501155,0.59292424,0.0505082,0.043729976,0.20520104,0.045401867,0.3471648,0.053307064,0.595525,-0.07371065,-0.16105124,0.07580559,0.7495196,0.0074080667,0.50018466,-0.019309264,-0.030033153,-0.027104355,0.050829057,0.2905181,0.045450196,-0.6004046,0.053169426,-0.45066994,0.14088513,0.5268268,0.11329711,0.17690693,0.13063893,-0.45507926,0.121947676,0.040893175,-0.04106543,-1.310692,0.57964855,0.30486745,0.9918823,0.35044637,0.07400349,-0.21186279,0.84525335,-0.039571963,0.074688084,0.2475253,0.06460461,-0.32724506,0.49909657,-0.99608284,0.46863887,-0.018099539,-0.08481419,-0.031205984,-0.00086891424,0.5401429,0.71183,-0.48634583,0.017293049,0.0358038,-0.41618824,0.2675238,-0.4385656,-0.07021755,-0.5802332,-0.35412538,0.6797858,0.51272756,0.24287741,-0.31374672,0.023998972,0.17126696,-0.12646069,-0.016158726,0.040578917,0.0242413,0.08519365,-0.6743866,-0.122445785,0.42684236,-0.12103956,0.33048576,-0.043508872,-0.085639805,0.26384383,-0.051008247,0.009498853,-0.031744774,-0.64973456,0.121009365,-0.21236229,-0.6214012,0.5374146,-0.09697507,0.18902312,0.23149918,0.16299923,-0.07716848,0.55428576,-0.01729835,0.93242145,-0.074422866,-0.010860874,-0.42906666,0.20108119,0.016215783,-0.16085854,-0.05936729,-0.36736518,0.07994522,-0.57878006,0.4707677,-0.011740987,-0.35242558,0.094205104,0.050616622,0.10039612,0.4235341,-0.14532849,-0.059626177,-0.079057775,-0.21352814,-0.18260351,-0.40316376,0.114470094,0.27032742,-0.0024715753,0.008605292,-0.23418441,-0.08504473,-0.038045816,0.323916,-0.11981957,0.4179419,0.24959747,0.034064963,-0.119077876,-0.1794168,0.32658243,0.48655635,-0.20967017,-0.32308152,-0.39126825,-0.29516298,-0.40972805,-0.017578758,0.04234526,0.33963457,0.1081938,-0.100105636,0.6789077,-0.13614038,1.2852706,-0.1580615,-0.50159466,0.14190345,0.6047075,-0.09015046,-0.16759965,-0.20087315,0.9344599,0.32379788,0.003049158,0.024584893,-0.5908655,0.060944237,0.31479403,-0.13284913,-0.03036158,-0.005112117,-0.47586548,-0.22496483,0.20959689,0.20082727,0.29843193,-0.12603186,0.11992713,0.61737126,-0.0009541787,0.2501106,-0.37134594,-0.3265368,0.15766206,0.43852887,-0.1561067,0.18006667,-0.58798623,0.26815265,-0.6348689,0.18213719,-0.26966864,0.36247936,-0.27033678,-0.21798012,0.25600076,-0.04522915,0.33937454,-0.2521271,-0.19436851,-0.1343496,0.52125895,0.29471833,0.09784338,0.5543607,-0.33389467,-0.06593768,0.20186068,0.5029796,0.81917435,-0.23485494,-0.1280859,0.29546925,-0.31668073,-0.6407167,0.37259883,-0.27006054,0.19028538,0.12610963,-0.10045084,-0.5445056,0.16192707,0.37354758,0.13234688,-0.105708525,-0.6447999,-0.12406262,0.224048,-0.22589915,-0.05637672,-0.3917332,0.11591964,0.45464373,-0.21460383,-0.34522316,0.051701333,0.16880465,0.1533564,-0.51743627,0.05493113,-0.3915552,0.36935446,-0.20727502,-0.4382833,-0.3078174,-0.052062947,-0.5293773,0.22178769,-0.037903097,-0.20634006,0.24148354,-0.1737005,-0.034575783,0.8727468,-0.27825406,0.29382423,-0.51190174,-0.53562474,-0.55863225,-0.37792033,0.35448748,-0.06534509,0.04886899,-0.6924681,0.095129974,-0.053951785,-0.36107412,-0.22279261,-0.33712628,0.30564085,0.06065561,0.38066465,-0.08777295,-0.8410194,0.3271832,-0.04499791,-0.20398869,-0.58927864,0.31985492,-0.15420176,0.7051303,0.0862642,0.059218626,0.10736867,-0.14662705,-0.014860248,-0.25070497,-0.332716,-0.49981344,-0.07554189 +48,0.5033706,-0.065872945,-0.33263,-0.10269722,-0.19437203,0.10411717,0.0074642072,0.73575234,0.17322804,-0.57270473,-0.28781885,-0.2713534,-0.07704392,0.37778205,-0.16716415,-0.45444202,0.04522787,0.04893695,-0.22889648,0.5469494,-0.2725411,0.3903744,0.18766928,0.29169074,0.26656818,0.14431868,0.18651588,0.028199745,-0.06342395,-0.30124888,-0.30911094,-0.035927214,-0.6316484,0.27763626,-0.196455,-0.45837066,-0.18884864,-0.66480607,-0.4558994,-0.80038583,0.4036906,-1.0406057,0.45931742,-0.12146015,-0.24659474,0.18039678,0.09099285,0.17403316,0.023331918,-0.16778456,0.06695049,-0.13002929,0.043049514,0.030563427,-0.28817326,-0.33969748,-0.666796,-0.0040571634,-0.34493953,-0.3088532,-0.37248868,0.12502223,-0.3919288,0.01139587,-0.044032462,0.45158562,-0.4079021,0.08154435,0.04300296,-0.1303307,0.26278383,-0.70148146,-0.29442957,-0.13148247,0.012319148,-0.08460584,-0.19860986,0.516755,0.37852934,0.379443,-0.13698067,-0.07570008,-0.18493113,-0.039632,0.15895587,0.6200563,-0.14785165,-0.5200456,-0.11199717,0.021475209,0.41636482,0.37126768,0.258098,-0.31628734,-0.1058689,-0.031386714,-0.23034307,0.39914754,0.5563552,-0.14468387,-0.3360278,0.43295357,0.3794715,0.052639183,-0.07970401,0.09005069,-0.04241793,-0.38035044,0.012343377,-0.008329784,-0.29417354,0.74135125,-0.07013284,0.20710333,0.64938384,-0.27416304,0.07589174,0.051580183,-0.02510308,-0.15693912,-0.29540518,-0.20019712,0.26046038,-0.39034936,0.27418563,-0.2778888,0.8175195,0.18177645,-0.8981272,0.32067,-0.48478243,0.13322942,-0.15290125,0.47403118,0.6176514,0.3770304,0.299424,0.82326114,-0.47753423,-0.06981884,-0.018556667,-0.31970882,-0.16175137,-0.3173836,0.12205908,-0.43255094,-0.022929367,0.1924635,-0.26436263,0.20679675,0.3011935,-0.47108254,-0.1586373,0.08629568,0.7982536,-0.25657415,-0.073139615,0.89082915,1.1605655,1.0420562,0.076705754,1.0767955,0.17952417,-0.1758785,0.19651996,-0.03054093,-0.69496536,0.22395352,0.45811316,-0.12949839,0.25342005,0.07466912,-0.15585701,0.11896013,-0.5962571,0.021709498,-0.1263187,0.19285645,0.28247002,-0.15284577,-0.40307745,-0.18753932,-0.09118057,0.047496192,-0.026167009,0.29218286,-0.2692799,0.4139055,0.03985071,1.5705358,-0.03488336,0.036171153,0.13473186,0.7000811,0.12144495,-0.2153271,0.08730182,0.21377009,0.352004,-0.0013853782,-0.46806702,0.09635238,-0.29960835,-0.47174734,-0.10159551,-0.36571148,-0.12251568,0.03034273,-0.33080086,-0.2666702,-0.19493291,-0.31139535,0.52791405,-2.8003385,-0.1983142,-0.09780951,0.33326423,-0.29483798,-0.30024192,-0.0034809662,-0.6324472,0.54846436,0.3676437,0.4565794,-0.69009835,0.11021367,0.48048022,-0.41594583,-0.15201822,-0.6284783,0.041414626,0.041254982,0.3719765,-0.024792096,0.058392763,0.22781152,0.04596202,0.60032785,0.32189757,0.14082131,0.3413348,0.39230645,-0.09494224,0.3636474,-0.14068547,0.49476704,-0.17231591,-0.027046192,0.38575158,-0.3427524,0.1776419,-0.19212542,0.077491514,0.46297505,-0.4451145,-0.73940116,-0.75311685,-0.45195687,1.243999,-0.27458364,-0.6271016,0.32560426,-0.028156023,-0.039496496,-0.28281492,0.5646845,-0.20339197,0.02255223,-0.58419967,-0.107128866,-0.10564503,0.04476195,-0.12342696,0.031144848,-0.3833328,0.6712607,-0.14554976,0.61671233,0.26610512,0.23200037,-0.32014227,-0.44056973,0.055829618,0.95559925,0.5458866,0.12016937,-0.21585509,-0.044888403,-0.42704022,-0.4411022,0.18224184,0.60737,0.7711039,-0.05406957,0.13351263,0.34717676,0.023413058,0.09918596,-0.054262117,-0.23825748,-0.15144761,-0.041705377,0.54827,0.588874,-0.21143256,0.49848923,-0.15727901,0.14021006,-0.024032546,-0.5131645,0.49514216,1.0406587,-0.21347111,-0.18427332,0.52509576,0.37870315,-0.3942868,0.452463,-0.6264433,-0.25604007,0.5973712,-0.20038256,-0.52128345,0.06460962,-0.28509685,0.07106348,-0.68620336,0.32790482,-0.20084296,-0.6642695,-0.36014175,-0.08243037,-2.5050256,0.07711427,-0.16856956,-0.33522013,-0.14553462,-0.34298408,0.08813346,-0.43096483,-0.5723268,0.16518882,0.1410574,0.6895062,-0.013688241,0.23190393,-0.16015497,-0.11817961,-0.56842744,0.1785678,-0.06238842,0.41302866,-0.026826914,-0.24287528,-0.049321525,-0.111024335,-0.7395886,0.06852122,-0.36538675,-0.48959145,-0.25090203,-0.3505836,-0.34332377,0.67921436,-0.47384816,0.10068533,-0.089377716,-0.14766453,-0.15706635,0.21722616,0.15619574,0.15121374,0.06585197,-0.07020705,0.17276071,-0.3110611,0.5452081,0.088229336,0.39065728,0.41467845,-0.2568415,0.3216197,0.3970488,0.5983649,-0.025557866,0.8712018,0.26107126,-0.052493688,0.24394149,-0.29379147,-0.26735523,-0.55254656,-0.11730306,0.0001571637,-0.31771237,-0.5540109,0.018090853,-0.3797644,-0.8202607,0.23914184,0.12136175,0.5277577,0.008836164,0.2041901,0.5334482,-0.2009164,-0.036721334,-0.015535629,-0.03832651,-0.72529835,-0.36623,-0.78725564,-0.48964965,0.16266595,0.78870076,-0.06604055,-0.26028317,-0.026678149,-0.17924796,0.080178685,-0.011624658,-0.052712202,-0.12944938,0.25804877,-0.05108963,-0.7762859,0.50168365,0.08107201,-0.109325565,-0.67092615,0.4156074,0.533268,-0.55508935,0.3037262,0.23499832,-0.017028948,-0.3147745,-0.5356678,-0.13954562,-0.27223003,-0.19614789,0.2580977,0.1492986,-0.78775144,0.34014302,0.34647465,-0.23419729,-0.67542964,0.48838425,-0.047169562,-0.08825047,-0.082097724,0.22884259,0.35360336,-0.057279684,-0.06027531,0.21263435,-0.5765323,0.31923765,0.14773099,0.05966007,0.45588467,-0.10718989,-0.07315012,-0.6569548,0.2192422,-0.51423323,-0.23346584,0.16583571,0.092280775,0.10955414,0.29161316,0.17858575,0.33127588,-0.14224522,0.19636253,-0.059570692,-0.27972752,0.45553252,0.32076344,0.60512096,-0.5104504,0.67052215,0.011661253,-0.16898566,0.19893423,0.18017012,0.4274452,0.2502712,0.26056486,0.026263608,-0.34394276,0.03274252,0.59420556,0.28067493,0.36193526,0.05371078,-0.13132955,0.33397773,0.0603931,0.2195411,0.0009685847,-0.7362438,-0.033106677,-0.38518798,0.012655352,0.4900432,0.16434486,0.26769,-0.16833097,-0.21990037,0.003035621,0.03416396,-0.21249701,-1.280844,0.335636,0.122726835,0.9520646,0.4785784,-0.15826319,0.05286646,0.65649307,-0.065373175,0.22144611,0.42642614,0.017413922,-0.51573074,0.536275,-0.8415795,0.5205526,0.048663273,0.037300196,0.050540037,0.1943869,0.35531324,0.75966686,-0.30198,0.038107496,-0.031604685,-0.32778847,0.1850463,-0.45680097,0.162961,-0.5863316,-0.26766437,0.53511155,0.48236483,0.17585744,-0.09285466,-0.01632687,0.008334055,-0.10125114,0.16796002,0.031794682,0.09372401,-0.10363148,-0.46094644,-0.24767083,0.48800653,-0.30160004,0.20190932,0.04333747,-0.13158488,0.13611166,-0.11855139,-0.24159226,0.021814413,-0.780336,0.088029854,-0.22861758,-0.37868202,0.2768888,-0.05302882,0.24232648,0.19076003,0.003829602,-0.18092966,0.077929646,0.40746287,0.66593105,-0.09532277,-0.2741087,-0.48689908,0.12538753,0.15484709,-0.18912147,0.13121739,0.09092838,-0.27251303,-0.3987099,0.51299393,-0.15276036,-0.22041632,0.24577409,-0.21359584,-0.05602268,0.5616344,-0.08747883,0.012940435,-0.062037177,-0.19042148,-0.22354023,-0.042889435,-0.10936639,0.3339438,0.22272705,-0.18760483,0.016476192,-0.20477623,0.0059577683,0.109062046,-0.101182535,0.38903826,0.3034386,0.031740922,-0.43450117,-0.24403025,0.15635058,0.4193192,0.17704989,-0.06789043,-0.10042893,-0.4577567,-0.31785202,0.11039622,-0.12761006,0.4256882,0.12614848,-0.2825383,0.59528595,0.13160157,1.1460341,-0.011813281,-0.32212564,0.08123154,0.45568416,0.032356802,-0.122654796,-0.31627372,0.91967,0.528979,0.017969351,-0.05784662,-0.3702819,0.11406803,0.34224856,-0.23664315,-0.29021648,0.021145385,-0.65857977,-0.3960142,0.12871635,0.25252932,0.16247302,-0.08355821,-0.06371571,0.40227473,0.020925047,0.51414233,-0.24396883,-0.08545943,0.3321333,0.1675372,0.017200662,0.065110214,-0.43533653,0.26367372,-0.569145,0.10343652,-0.121763624,0.14723355,-0.17448911,-0.24305645,0.1442832,0.13901989,0.52266836,-0.15970968,-0.5937983,-0.20391844,0.5265536,-0.015533267,0.13120948,0.45782667,-0.23231615,0.033063814,-0.11878947,0.37878805,1.2793727,-0.01037176,0.14580148,0.26583436,-0.524919,-0.7221661,0.51905006,-0.24493077,0.41246402,-0.00051425054,-0.09728964,-0.48706314,0.2423726,0.27138603,-0.12148705,0.1655971,-0.6362968,-0.40482014,0.1688791,-0.39612573,-0.2713071,-0.5442213,0.09317325,0.51257294,-0.33410823,-0.30392128,0.16856065,0.24553344,-0.16727063,-0.65218264,-0.10056508,-0.1782706,0.20769198,-0.024351437,-0.4265961,-0.15290122,0.09387325,-0.43599933,0.19524759,-0.18315227,-0.35721546,0.06575783,-0.28158897,0.15494703,0.90157723,-0.12477572,0.0058499756,-0.5755616,-0.57112956,-0.6959569,-0.6187017,0.38448113,0.15299818,0.001231801,-0.62052476,-0.09463981,-0.09782852,0.00620201,-0.17865174,-0.37433618,0.4253799,0.16172965,0.36117303,-0.011927917,-0.72200674,0.14201763,-0.040780548,0.073523894,-0.56776935,0.43142828,0.09943669,0.8490766,0.18499003,-0.0077589382,0.18633522,-0.5381021,0.03447589,-0.18352225,-0.28072882,-0.3948146,0.24920394 +49,0.17429887,-0.1163907,-0.59167117,-0.11103848,-0.5052698,0.30496776,-0.27702528,0.20677558,0.2848991,-0.19608553,0.08082401,-0.03735217,-0.099011,0.40854868,-0.11130874,-0.69871706,0.048250403,0.049727358,-0.6275833,0.41925424,-0.46723643,0.38102537,-0.14969839,0.30664384,-0.03468459,0.31640166,0.1678885,-0.074987136,-0.1595512,0.044868566,-0.109636806,0.23562516,-0.39086735,0.30252022,0.0018921773,-0.2826695,0.12517922,-0.23590758,-0.2159292,-0.6346518,0.21093775,-0.6000852,0.5449637,-0.18930298,-0.36947602,0.16647013,0.08252777,0.18784557,-0.39375037,0.22461154,0.22279033,-0.32556874,-0.04401983,-0.22506717,-0.4224106,-0.3585848,-0.45313638,-0.08206957,-0.65060717,-0.12394769,-0.44903573,0.21185288,-0.31414267,-0.08825132,-0.11896797,0.3181182,-0.5024811,0.25318065,0.12820044,-0.22875047,0.00974656,-0.37466142,-0.08799744,-0.114241205,0.23811011,-0.14372139,-0.12619835,0.25525978,0.36665118,0.41554847,0.07485558,-0.17780972,-0.4265067,-0.28730693,0.10351089,0.44917774,-0.077916384,-0.16200906,-0.21213506,0.01191563,0.18533972,0.19733019,-0.19338837,-0.28021926,-0.11505701,-0.028974025,-0.2814459,0.2977716,0.35127392,-0.34906617,-0.33831885,0.46136317,0.3332229,0.10747347,-0.2500037,0.14571358,-0.05101295,-0.48392615,-0.26763895,0.16399378,0.05026672,0.3911719,-0.16384563,0.2593077,0.78129005,-0.23566397,-0.06307974,-0.11651622,0.017192988,0.013909829,-0.111798964,-0.032427955,-0.022753673,-0.47789466,0.034043215,-0.031631146,0.7737604,0.16417055,-0.7776301,0.41681108,-0.48838893,0.0745784,-0.14117709,0.55151486,0.65304756,0.45967656,0.26369697,0.73348725,-0.4461993,0.1910934,-0.089017734,-0.4420183,-0.002430745,-0.086678766,-0.11179271,-0.6021789,0.08388528,0.06147367,0.030022684,0.09852416,0.33081084,-0.36104038,-0.018340738,0.00032008888,0.7304881,-0.47221085,-0.1461162,0.74078995,0.8405463,1.0073036,0.067157626,1.2084678,0.45436847,-0.16229981,0.016138045,-0.460991,-0.3991069,0.21108942,0.2391773,-0.0712041,0.265664,0.09050679,0.20450354,0.3369466,-0.14190848,-0.055337746,-0.10581191,0.15842065,0.089706846,0.026995596,-0.33326414,-0.37809277,0.19133161,0.14844607,-0.10343455,0.27885884,-0.12384972,0.5462619,0.08506464,1.3708723,0.1493537,0.069611296,-0.054192886,0.47563058,0.12114572,-0.04854236,-0.19848761,0.32337567,0.25817573,0.04325221,-0.49529916,-0.042372838,-0.26058975,-0.46440107,-0.18984792,-0.3235853,-0.111539505,-0.113271005,-0.44913545,-0.18798093,0.07255828,-0.30454203,0.54007924,-2.597684,-0.016685423,-0.08343173,0.23294166,-0.25021487,-0.27064458,-0.28090557,-0.4609343,0.35895893,0.37640777,0.361635,-0.5509829,0.3391562,0.24549408,-0.37915748,-0.20482177,-0.58521265,-0.017467786,0.0093922615,0.400818,-0.10986004,-0.059774686,-0.16054313,0.20545608,0.68076533,-0.12119352,0.0062539726,0.26044992,0.47688484,0.150482,0.4650947,0.14711209,0.5612335,-0.26501426,-0.19792645,0.37371844,-0.40166292,0.26690742,0.10740994,0.07872453,0.3090657,-0.5057214,-0.913509,-0.4791737,-0.2794261,1.2698814,-0.34458488,-0.42593375,0.28309652,-0.07846589,-0.23817004,-0.05084507,0.2695894,-0.070488766,0.014790579,-0.6578076,0.11280301,0.03199509,0.27243963,-0.054378342,0.10459757,-0.11667165,0.5730837,-0.1965258,0.24897432,0.34089717,0.19915509,-0.16518854,-0.4289466,0.17599529,0.7630985,0.3083231,0.19526066,-0.10228927,-0.32452482,-0.049430825,-0.16059802,0.16102797,0.40189826,0.56242764,0.0015001575,0.09262911,0.21565025,-0.1996433,0.037539463,-0.24366918,-0.17673373,0.051178657,0.23639719,0.6082403,0.47427636,-0.031199064,0.5405689,-0.09061939,0.13546795,-0.088689126,-0.4979661,0.41099685,0.71849257,-0.12189417,-0.32945257,0.41260803,0.41641808,-0.3084672,0.28469932,-0.398757,-0.27490765,0.6690586,-0.22810355,-0.4165563,-0.062469974,-0.3049803,0.036494356,-0.7857509,0.3236619,0.064550206,-0.6446651,-0.39781135,-0.04685844,-3.8293793,0.108620614,-0.0970109,-0.20858416,0.05223821,-0.12149355,0.23996834,-0.45756105,-0.45232975,0.061348617,0.04229496,0.40858132,0.010299174,0.026592681,-0.38788185,-0.15746766,-0.22000167,0.16759,0.11041651,0.3457717,0.02680232,-0.46389902,0.21118212,-0.3698234,-0.41307074,-0.076998614,-0.4561982,-0.44606417,-0.14834195,-0.41859138,-0.25769827,0.6934415,-0.4354175,-0.060833104,-0.34007356,0.019278144,-0.21923904,0.37128556,0.2863264,0.12838921,0.076343514,-0.008002839,-0.027655868,-0.35576156,0.33201686,0.09723774,0.13149092,0.38604316,0.10890439,0.15205428,0.61634284,0.52503514,0.080900736,0.773725,0.17247295,-0.25263664,0.38118905,-0.39001054,-0.23952717,-0.58592457,-0.39902,-0.23059654,-0.34286982,-0.32346275,-0.17510279,-0.2517067,-0.74061185,0.41530597,0.06625598,0.051451884,-0.114141256,0.28376713,0.41029695,-0.1664907,0.090451024,-0.14844078,-0.1903955,-0.44738388,-0.5458412,-0.5737025,-0.5575448,0.18424867,1.1639247,-0.16824672,-0.049012166,-0.013633204,-0.37173328,0.07215953,0.18282904,0.25005263,0.37030372,0.2873111,-0.31983286,-0.804151,0.37841496,-0.12178327,-0.072303146,-0.6958839,-0.002027917,0.7738402,-0.60735184,0.48848775,0.36046633,0.21024556,0.20674016,-0.49807227,-0.3267966,-0.031291876,-0.22475295,0.41391844,0.16198519,-0.5810465,0.4890191,0.16391712,-0.09680447,-0.58499837,0.48683387,0.0056776386,-0.18690355,0.17298898,0.31885654,0.06756004,-0.14807115,-0.10108447,0.101536684,-0.41691455,0.301322,0.3222939,-0.00413723,0.3483674,-0.11510752,-0.26462686,-0.6377566,-0.2481964,-0.37202078,-0.2987094,0.08163554,0.13315906,0.09018124,0.037233073,-0.1356873,0.2988222,-0.29448977,0.12743,-0.14608864,-0.22663304,0.35797736,0.42973444,0.3272901,-0.37582558,0.67102844,0.013000308,0.17003898,0.031738773,-0.009161774,0.5548583,0.13579074,0.34889477,0.04409958,-0.2851811,0.21690449,0.7064812,0.20949619,0.3192969,-0.059571937,-0.26329646,0.25095838,0.23705961,-0.02597962,0.008052302,-0.13330647,-0.13344367,-0.077604026,0.22040667,0.3309466,0.12553142,0.38723692,-0.0798316,-0.118636236,0.23972815,0.108780734,0.059186306,-0.9159688,0.32712844,0.29224116,0.6281645,0.35863554,0.037238255,0.04769081,0.5711599,-0.39322785,0.08862916,0.36163837,0.015573612,-0.43363363,0.54732746,-0.58597827,0.64590055,-0.1398199,0.009719477,0.20875788,0.30921295,0.21262102,1.0049356,-0.049130987,0.088801354,0.15778597,-0.4586443,-0.066263214,-0.2782528,0.05739981,-0.5571537,-0.2576014,0.56329745,0.36629608,0.36428082,-0.21886034,-0.060009804,0.030737253,-0.18722035,0.07762405,-0.058033988,0.041591667,-0.25397265,-0.5593509,-0.23974864,0.52343047,0.004071331,0.090723425,0.14877428,-0.1582036,0.42781168,-0.13555865,0.1060421,0.008231733,-0.47467473,-0.0013782163,-0.23533353,-0.5226185,0.35589293,-0.31345186,0.37955624,0.12926218,0.112076506,-0.39460343,0.42007104,0.19795386,0.81460506,-0.023687402,-0.1458761,-0.23251818,-0.04137175,0.45409337,-0.19674173,-0.14334354,-0.24487773,0.011752495,-0.68482685,0.3725433,-0.3803299,-0.22583914,0.008851325,-0.1594979,-0.023397235,0.36820152,-0.021570412,-0.19699179,0.108984604,-0.03181511,-0.38186303,-0.08825339,-0.32170165,0.31265974,0.041304287,-0.05579056,-0.037053797,-0.15687984,-0.06474383,0.2870817,-0.05723371,0.15727425,0.29525605,-0.009889993,-0.3110103,-0.020823289,-0.2022718,0.48028478,0.023118058,0.083111875,-0.35436487,-0.27277035,-0.16990294,0.3042476,-0.19653775,0.0571738,0.06000651,-0.49267736,0.7278105,-0.093828194,1.1216412,0.14735457,-0.27255613,0.21800311,0.36361423,0.08239526,0.16636024,-0.22844492,0.79314476,0.6763506,-0.00903581,-0.25817892,-0.35908586,-0.20125917,0.19095679,-0.24839382,-0.24145718,-0.08018382,-0.76485956,-0.23866129,0.19479771,0.05137136,0.22415636,-0.020141652,-0.13812631,0.014634379,0.26217258,0.38590133,-0.40411758,-0.045465723,0.26173753,0.29242665,-0.05258455,0.21949151,-0.3196612,0.3753778,-0.59557396,0.0880425,-0.2943181,0.126884,-0.2734769,-0.09425743,0.2625139,0.13362764,0.28397045,-0.17150955,-0.18326299,-0.31129995,0.6499879,0.20364293,0.18795453,0.64386076,-0.2454617,-0.11088085,0.054873686,0.2935497,1.0609502,-0.04729231,-0.13178729,0.48130152,-0.26321548,-0.46814415,0.12926474,-0.43336332,0.054874066,0.0421044,-0.28748578,-0.25271592,0.35634908,0.14977892,0.036841463,0.045999166,-0.42173475,-0.029323291,0.31057447,-0.31316745,-0.38417143,-0.3614961,0.33129212,0.50853115,-0.33146775,-0.22514343,0.034999624,0.2963403,-0.28638014,-0.49822482,0.09306348,-0.20374246,0.37287876,0.16073723,-0.38805586,-0.013187373,0.2723732,-0.33837345,0.020673864,0.4685508,-0.39503482,-0.020162709,-0.1234584,-0.072341524,0.8797568,-0.09176738,0.14119273,-0.6684171,-0.43346146,-0.91726,-0.2675858,0.39621326,0.15220252,-0.097013615,-0.5939035,-0.15319616,0.0029683898,-0.16219063,0.07944539,-0.624729,0.44207317,0.12929943,0.31658605,-0.0634849,-0.9146553,-0.023312101,0.083717115,-0.24303073,-0.51418775,0.53839153,-0.35911953,0.681053,0.16413455,0.0018986384,0.3543597,-0.485497,0.32769248,-0.34404805,-0.25538388,-0.55854803,0.093943976 +50,0.419673,-0.011303084,-0.60370296,-0.101131044,0.056552358,0.052166644,-0.19503434,0.27757004,0.07941158,-0.51655936,0.09638738,-0.1763151,-0.044055317,0.3001701,-0.19017127,-0.5149817,0.100486636,0.22524951,-0.54302734,0.48872572,-0.5323378,0.41309372,0.015980428,0.12898698,-0.029550927,0.28079653,0.40310717,-0.102925405,-0.04996111,-0.14925946,0.20423439,-0.022421118,-0.63502586,0.3049043,-0.0022723165,-0.36527154,-0.005364056,-0.2279149,-0.3691663,-0.6205147,0.29765755,-0.71750844,0.5237509,0.022982458,-0.23655103,0.29932877,0.10800428,0.3087153,-0.33476788,0.21744904,0.094527796,-0.113862105,-0.13772598,-0.3419883,-0.16525224,-0.23614563,-0.46520418,0.00047397614,-0.6044288,-0.12205966,-0.28163224,0.0027095675,-0.28466716,0.18464956,-0.1008503,0.3940679,-0.324495,-0.110516526,0.19624688,-0.116960295,0.39621043,-0.42101255,-0.15595104,-0.11235873,0.012459929,-0.33426258,-0.14437155,0.32991758,0.1583722,0.48058572,-0.04813407,-0.107873626,-0.12693158,-0.19698772,0.16796352,0.520943,-0.13621084,-0.47899118,-0.12360639,-0.20375636,0.09178513,0.04229257,0.117971815,-0.36402056,-0.039665885,0.0018693209,-0.32940993,0.2213802,0.538679,-0.37613773,-0.14095517,0.35142145,0.5871597,-0.14709106,-0.01808553,0.13450597,-0.08129203,-0.52317137,-0.24423493,0.052015636,-0.11341614,0.42617127,-0.0313311,0.22609864,0.5208079,-0.3070559,-0.023189928,0.19079311,-0.0069799935,-0.0010234012,-0.2708334,-0.3568731,0.25102404,-0.5078823,-0.14156033,-0.28663507,0.739278,0.039339315,-0.8520066,0.39728492,-0.4238817,-0.0010563837,-0.09174007,0.5881775,0.46502516,0.5244126,0.014518052,0.7001554,-0.72880155,0.00025038313,-0.08929039,-0.33319658,0.05086273,-0.06607829,-0.12251703,-0.4835713,-0.007647574,0.27055007,-0.15134223,0.12079763,0.37181237,-0.34743935,-0.08773608,0.041122917,0.78174436,-0.38377264,0.039649256,0.44036755,1.2543466,0.9110503,0.1506215,1.2554501,0.32838514,-0.23570512,0.03501696,-0.12981045,-0.89988095,0.26007015,0.4121728,-0.16308013,0.4681075,0.051571865,-0.107124485,0.13839313,-0.39502558,0.027592663,-0.0126047535,0.40086803,-0.18194903,-0.24420097,-0.22253403,-0.25492606,0.055328686,-0.01906779,0.03532257,0.29413563,-0.21466956,0.2570532,0.18009503,1.5589895,-0.1178,0.14701729,0.14503254,0.42871904,0.2566684,-0.12827696,-0.23398386,0.24421261,0.34644872,0.03839814,-0.6064146,0.07106881,-0.09508036,-0.6084848,-0.21673307,-0.26609388,0.11638047,-0.3056903,-0.29202458,-0.013968636,-0.014004315,-0.43381572,0.37801117,-2.6673477,-0.15280856,-0.04271532,0.31375423,-0.22265418,-0.1671906,-0.20666085,-0.33311558,0.50227576,0.41308612,0.49146438,-0.54378074,0.38048205,0.38803142,-0.20589134,-0.13617416,-0.5396113,0.01764438,-0.16774437,0.22413038,-0.034891043,-0.1759834,-0.08028998,0.29045123,0.3487186,-0.21381828,-0.050192717,0.33684188,0.30086067,0.16572824,0.38986626,0.043962087,0.47457665,-0.49682322,-0.18393207,0.34376568,-0.35854286,0.025522871,0.08914592,0.1544262,0.22720985,-0.5054557,-0.86468023,-0.5708905,-0.1888011,1.2266959,-0.35824257,-0.36061224,0.21223564,0.057396274,-0.3360106,6.132041e-05,0.2886297,-0.2637014,0.008332183,-0.8776494,0.12007785,-0.04379105,0.33191794,0.06746657,0.10009909,-0.47584635,0.4241228,-0.11210618,0.6852303,0.46667123,0.051602185,-0.3839431,-0.5201053,0.12753786,1.2309383,0.2536367,0.23222141,0.0012668201,-0.044471234,-0.2882134,-0.097889386,0.24017942,0.29083005,0.8041406,0.030982971,0.12582092,0.2561894,-0.017952468,0.05651995,-0.03136026,-0.41077518,-0.08848703,0.12631537,0.61585224,0.47776347,-0.12686864,0.33955312,-0.12069949,0.25708753,-0.3440032,-0.4315679,0.5960707,0.7174578,-0.12507196,-0.2865124,0.4764475,0.55402404,-0.27638584,0.54129326,-0.5522931,-0.5005845,0.43944553,-0.1877249,-0.13073482,0.31604916,-0.35285348,0.26163536,-0.9759355,0.37268454,-0.33780763,-0.385871,-0.48447672,-0.26179856,-3.5470352,0.17046271,-0.11686908,-0.1579605,0.015730174,0.0707942,0.36169058,-0.45857236,-0.6006298,0.09225016,0.0131175,0.595813,0.07212232,0.088011876,-0.17199945,-0.12310772,-0.19940817,0.24118567,0.15519173,0.1775094,0.24189626,-0.4825282,-0.20105307,-0.3006484,-0.42506048,0.008637377,-0.52427226,-0.38588867,-0.19704165,-0.6134747,-0.54611415,0.62581956,-0.3460483,0.067565255,-0.11033569,-0.056602485,-0.061508898,0.3693084,0.09897763,0.08928054,-0.03287345,-0.06005025,0.016523698,-0.3006759,0.119191356,0.031117752,0.19451974,0.37283802,-0.302407,-0.10521489,0.45691904,0.6187454,0.118792705,0.6794663,0.27713946,-0.13776767,0.3067923,-0.4058985,-0.12502417,-0.6532549,-0.38271865,-0.14795102,-0.29742822,-0.4324072,-0.1279466,-0.44159487,-0.61275446,0.46074104,-0.07471119,-0.041231673,0.057087746,0.38650665,0.235661,-0.0665812,-0.07148552,-0.13155387,-0.13652591,-0.3365462,-0.27626666,-0.8523565,-0.33056358,0.15399028,1.1385887,-0.057556275,-0.028299306,0.04005174,0.024717584,0.22059214,0.14855024,0.039798502,0.34975323,0.39825875,0.012709945,-0.6523727,0.36358136,-0.28484493,-0.1601816,-0.57122785,-0.026115159,0.52289975,-0.66791075,0.33832583,0.45997033,0.24656665,-0.021144392,-0.3553082,-0.121915065,0.21123873,-0.18209653,0.4517839,0.21995495,-0.8132664,0.5616116,0.3782969,-0.34275705,-0.68216413,0.5050069,0.018157313,-0.2150015,-0.026002398,0.38932827,-0.07916824,-0.013825091,-0.3574979,0.16475174,-0.48357052,0.21552809,0.31634453,-0.089097604,0.53860945,-0.204783,-0.12271432,-0.56303173,-0.029092146,-0.49807462,-0.15131132,0.046685226,-0.035138417,-0.028037813,0.25499812,-0.21706092,0.4890413,-0.28281388,0.036943734,-0.07497261,-0.31736103,0.6356974,0.43383583,0.26009473,-0.29547498,0.66138715,-0.116748914,-0.001879773,-0.44523785,-0.034233626,0.4989018,0.13233104,0.21400599,0.11853911,-0.05381883,0.4676288,0.5565527,0.329946,0.31307167,0.18520424,-0.11138047,0.24362652,0.23145948,0.15225473,0.1768626,-0.110668,-0.10756045,-0.03959767,0.21656159,0.43019214,0.08349572,0.527908,-0.24529374,-0.3772312,0.012867672,0.24278362,-0.25763527,-1.0395596,0.5750614,0.03445901,0.3966786,0.67461354,-0.042446055,0.16737218,0.3464176,-0.21992747,0.21422434,0.15528019,-0.029543022,-0.47931153,0.5618094,-0.5058865,0.46451217,-0.08554321,0.042137295,0.07190442,-0.12889466,0.4491,0.802699,0.086437024,0.20363139,0.0072918152,-0.27580458,0.11604778,-0.38300732,0.096960366,-0.33930522,-0.26954538,0.62718076,0.1719198,0.36004677,-0.16792604,-0.081412025,0.12868878,-0.13704434,0.16607358,0.013709881,0.1210057,-0.045147363,-0.59833616,-0.24829766,0.5202376,0.25134584,0.12946841,0.20882551,-0.22307293,0.28140298,-0.09937863,0.021943273,-0.033256575,-0.52229685,0.06897861,-0.27449495,-0.16675426,0.31659865,-0.4103029,0.2689028,0.1619002,0.10327072,-0.4210685,0.13494457,0.33635965,0.51584834,-0.07656995,-0.2901179,-0.12645814,0.085167244,0.18534844,-0.13117255,-0.040054016,-0.34008977,0.018755527,-0.7848158,0.4579375,-0.05970524,-0.17569573,0.33236116,-0.14995445,-0.007873589,0.48463088,-0.21547198,-0.17437577,-0.047166966,-0.1201098,-0.09930646,-0.36859062,-0.28438005,0.16649409,0.0763961,0.08058732,-0.0061039245,0.11722028,0.020997806,0.3122916,-0.026551124,0.30355498,0.2653604,0.31711575,-0.29338223,0.054495417,0.0075532794,0.4380729,0.093490064,-0.016719682,-0.43208292,-0.44157082,-0.071525574,0.030522449,-0.2377003,0.08017584,0.09174544,-0.42077708,0.825059,0.117519975,0.89852035,-0.04779833,-0.2932174,-0.027784633,0.5555333,-0.033497892,-0.1595207,-0.19855043,1.0936048,0.6297625,-0.19961646,-0.1405399,-0.26792312,-0.1974083,0.0064714295,-0.23224208,-0.37191746,-0.092078604,-0.5728497,-0.44698194,0.18597284,0.39735094,0.028444836,-0.09321009,0.15524055,0.25277683,0.06194419,0.06951295,-0.53042114,0.12407213,0.35120204,0.17911641,0.048989374,0.07719566,-0.4847674,0.38220432,-0.7508338,0.11521212,-0.14396945,-0.015041603,0.07938109,-0.26652473,0.16500545,0.11802412,0.20680663,-0.30005005,-0.16782716,-0.09053634,0.49179524,0.09145472,0.15591769,0.8455592,-0.13186033,0.13851564,0.14686285,0.4844053,1.0653796,-0.076416664,-0.0828914,0.28182945,-0.39917645,-0.6869664,0.19849227,-0.26795238,0.2290181,-0.23769446,-0.35500985,-0.5847512,0.23072931,0.097037844,-0.035517965,0.17656872,-0.53740793,-0.26938093,0.24316978,-0.31691986,-0.36143357,-0.41366008,-0.06715017,0.5833805,-0.20078564,-0.15466176,0.14786802,0.25939354,-0.28066593,-0.6823262,-0.12291049,-0.33021617,0.32922983,0.3744836,-0.13907674,-0.039460275,0.22828372,-0.35323486,0.24072795,0.17881016,-0.41224164,-0.072006114,-0.4269557,-0.03772011,0.59163815,-0.17807296,-0.009697172,-0.5950131,-0.55790424,-0.9605533,-0.3117814,0.808644,-0.06412094,0.09642857,-0.472824,-0.104590096,-0.12887731,-0.026396831,-0.07772911,-0.23123749,0.42432627,0.05466071,0.30729717,-0.06729909,-0.768487,0.04641992,0.14525732,-0.20325808,-0.42268482,0.55413085,0.004682045,0.6904145,0.07588663,0.012249708,0.51726717,-0.6908428,0.18903911,-0.24424966,-0.113546364,-0.48863003,0.071000494 +51,0.39858034,-0.17778991,-0.47388962,-0.13176416,-0.34211794,0.22410974,-0.2247194,0.27355933,0.15601909,-0.37778014,-0.1391723,-0.16187513,-0.071918815,0.17106494,-0.23323584,-0.57132107,0.06522264,0.14005528,-0.44080678,0.6353121,-0.26153582,0.43425378,0.045950413,0.17809375,0.12800068,0.28622672,0.27007568,-0.0966509,-0.15121417,-0.16526105,-0.31818122,0.3056635,-0.21366265,0.16747236,0.005839162,-0.23900896,0.07378386,-0.14746907,-0.33195692,-0.7306182,0.29499954,-0.7393907,0.3643805,-0.09167168,-0.29682687,0.28035673,0.18873397,0.2929721,-0.06866115,-0.0035958746,0.15363434,-0.16466719,-0.018987374,-0.29615107,-0.26572138,-0.5805165,-0.55788684,-0.1037572,-0.4773219,-0.41548806,-0.36699864,0.26401323,-0.3504908,-0.12211038,-0.067925565,0.43967718,-0.56169915,0.23034224,0.16713986,-0.1718854,0.42129457,-0.6154344,-0.04695615,-0.09033326,0.18842402,-0.13309939,-0.063313186,0.309307,0.34852004,0.38161355,0.0854847,-0.18686506,-0.40696064,-0.15085626,0.28245392,0.40418872,-0.08495045,-0.35463592,-0.017675316,-0.002267813,0.15012445,0.1567903,0.17312033,-0.24272543,-0.13883018,0.0753063,-0.1654741,0.19635779,0.3390968,-0.37911993,-0.24476632,0.27776486,0.5998983,-0.027108984,-0.29549497,0.055190545,0.025561221,-0.33242837,-0.1733963,0.050387423,-0.11936628,0.5112799,-0.23586433,0.20992397,0.7580711,-0.12459163,-0.11023608,-0.12328629,-0.03279481,-0.18040934,-0.052437693,-0.18947834,0.1301053,-0.41577962,0.034325723,-0.12663841,0.714905,0.13319097,-0.6003845,0.31852233,-0.4616595,0.120271854,-0.1097933,0.36886686,0.53219587,0.46743593,0.2748468,0.63213646,-0.4933234,-0.027132925,-0.0667507,-0.41997227,0.047112938,-0.18164246,-0.08624848,-0.5026444,0.08715916,-0.11341251,-0.08893493,-0.029243812,0.5429494,-0.48505032,-0.052688267,0.02230002,0.8199784,-0.39668116,-0.07647532,0.49416283,0.8677535,0.93929285,0.02279151,1.0003827,0.30496675,-0.28878304,0.105021164,-0.3746004,-0.3622874,0.34309933,0.5435274,-0.1201784,0.28251025,-0.06992591,0.10781512,0.47810286,-0.24524587,0.1456292,-0.20791015,0.08458314,0.1715356,-0.1582714,-0.42282003,-0.11868224,0.11168514,0.1837021,0.14881404,0.15926015,-0.09290444,0.36148402,0.15802853,1.7646927,-0.07580525,0.019594569,0.17718494,0.305298,0.1909102,-0.0738221,0.054981653,0.32427305,0.25737473,0.21007456,-0.47263482,0.12180759,-0.23873602,-0.5945671,-0.2525528,-0.2935137,-0.14583625,0.014796128,-0.46298173,-0.16333482,-0.055483826,-0.32559735,0.3964885,-2.5260127,-0.12984307,-0.26330444,0.21220565,-0.24801858,-0.35551733,0.06668561,-0.43699968,0.36008817,0.36940184,0.37392735,-0.60913223,0.40797952,0.4404813,-0.4137224,-0.10140216,-0.3993612,-0.16075659,-0.18763787,0.41947812,0.16081181,-0.16418462,0.0039889463,0.29962674,0.4254032,-0.260946,0.12981577,0.2881787,0.3113656,0.021663602,0.56522685,0.12923704,0.51391363,0.021360086,-0.18768108,0.47300327,-0.17454082,0.13349593,0.056099046,0.10555942,0.3599375,-0.2657162,-0.8706271,-0.705112,-0.18638252,1.1759546,-0.15236293,-0.46789172,0.220151,-0.1681385,-0.21504425,-0.06569995,0.2751885,-0.07037407,0.09951281,-0.8390217,0.16034153,0.007171589,0.10584555,0.099234596,-0.26945934,-0.5047391,0.82150537,-0.075950325,0.6079944,0.3337602,0.20632935,-0.23205787,-0.4249171,-0.017259967,0.8244719,0.4658584,0.062389873,-0.21906886,-0.27180743,-0.2663968,-0.0897394,0.050040275,0.46373165,0.61228967,0.029360984,0.12345387,0.2368,-0.10390902,0.021090087,-0.20456976,-0.29750612,0.124052666,0.016078662,0.5170376,0.44925752,-0.12488629,0.4551257,-0.025506284,0.4943455,-0.13138978,-0.50508356,0.33894417,1.1812781,-0.21072032,-0.4089683,0.4766724,0.397312,-0.20944369,0.28231063,-0.66472715,-0.26343045,0.42467892,-0.25982925,-0.42573097,0.22332299,-0.38687956,0.15679033,-0.7734259,0.33634293,-0.34172446,-0.51293206,-0.56249356,-0.17173363,-3.44746,0.23701134,-0.26457423,-0.22464363,0.021730136,-0.007379383,0.26767516,-0.71850204,-0.47753912,0.09317313,0.05273327,0.5397326,0.051002223,0.0895095,-0.23556687,-0.121760435,-0.0844634,0.27203268,-0.03554221,0.25054932,-0.10870367,-0.52938473,-0.027071834,-0.08836457,-0.5016131,0.02582258,-0.53027797,-0.5769221,-0.16580994,-0.36383462,-0.2696199,0.60754216,-0.26798147,0.07578087,-0.32947215,-0.037203427,-0.097029015,0.18926597,0.11426391,0.14298354,0.068290375,-0.038628306,0.10357966,-0.283416,0.26898885,0.016052973,0.2863323,0.20782791,-0.118826024,0.16167408,0.4621022,0.5037906,-0.06431267,0.7358309,0.51372075,-0.14552808,0.1954383,-0.21646515,-0.2985792,-0.6102758,-0.40962586,0.00022401047,-0.36946157,-0.46939325,-0.19653346,-0.31250596,-0.6801512,0.5022599,0.032852966,0.14715016,0.005460974,0.23295355,0.50958425,-0.19198151,-0.07758334,-0.04423836,-0.25763348,-0.48856613,-0.2893555,-0.64236045,-0.5702917,0.0790158,1.0189475,-0.14036258,-0.049199082,0.075195424,-0.14955428,-0.024712162,0.14895649,0.059012875,0.24386126,0.44541314,-0.21513684,-0.6726345,0.46370354,-0.121507674,-0.063975,-0.46431747,0.12920006,0.5072233,-0.41100958,0.5162988,0.35122132,0.008454975,-0.11800892,-0.46799803,-0.10957379,-0.017944444,-0.3817142,0.49466205,0.23957977,-0.5378872,0.3311776,0.23111857,-0.24512707,-0.6371197,0.49219316,-0.11505799,-0.42181402,-0.017031193,0.35405052,0.045448247,-0.049969327,-0.18532303,0.17045115,-0.32823876,0.29120505,0.27277502,-0.07141068,0.14097609,-0.22891814,0.04287674,-0.8350366,-0.045778226,-0.40711498,-0.271013,0.1316341,0.08951957,0.053113393,0.2695498,-0.10216082,0.3870993,-0.18352082,0.07129151,-0.07110296,-0.2927254,0.27184883,0.37228122,0.312707,-0.33829555,0.48372582,-0.013888808,-0.09045008,-0.10915192,0.1145547,0.5404706,0.076651745,0.44805485,-0.06267082,-0.22337958,0.48233065,0.77042896,0.2842874,0.58522826,0.066316985,-0.25883806,0.13012888,0.08742535,0.19284943,-0.014196122,-0.459024,0.026898839,-0.2097205,0.20991907,0.52398765,0.11019574,0.3722468,-0.027113609,-0.3877519,0.15708724,0.17977011,0.0049755014,-1.1591766,0.2921743,0.36587092,0.8879373,0.40881392,0.09926065,0.0214138,0.6562905,-0.2928707,-0.009844524,0.34152964,-0.041862283,-0.5483127,0.5214478,-0.89956284,0.27887616,-0.046878807,-0.09500257,-0.09252893,-0.03649935,0.27042997,0.79065806,-0.15885393,-0.011491646,-0.04903948,-0.28699645,0.13664232,-0.326384,0.11236087,-0.39230704,-0.3511886,0.52167827,0.58299726,0.3363065,-0.047161564,0.07239907,0.101359956,-0.101556875,0.21564783,0.13152094,0.21814585,-0.1343824,-0.6237518,-0.23771505,0.37422007,0.11108609,0.16140768,0.060065564,-0.24425854,0.1973027,-0.11425411,-0.025376363,0.031901646,-0.46934447,-0.02969886,-0.13722563,-0.42338046,0.64519244,-0.07137137,0.14520667,0.15288638,0.074813016,-0.1875616,0.29018995,0.14983933,0.5762281,0.19477318,0.06094349,-0.262321,0.026286466,0.006219522,-0.13533337,-0.061308175,-0.12625688,0.13913643,-0.63483685,0.3384107,-0.033202928,-0.4125885,0.21239215,-0.2530692,-0.0981423,0.4406575,-0.21857893,-0.18933597,-0.0031482542,-0.008043864,-0.22937669,-0.20510662,-0.039108813,0.23213173,0.018657213,0.013922713,-0.15475374,-0.07494262,-0.15552686,0.36990333,1.1217945e-05,0.39458016,0.43816373,-0.0916542,-0.37872672,-0.14723381,0.2024771,0.43529344,-0.09525291,0.004323567,-0.18573578,-0.55676574,-0.36909455,0.10390353,-0.037064582,0.28520456,0.12644133,-0.3316615,0.7894313,-0.14619137,1.2284646,0.03944071,-0.34798437,0.06785232,0.425645,0.05155242,0.07296468,-0.234349,0.7721967,0.5657213,-0.031716827,-0.17342778,-0.28693324,0.030732043,0.12423692,-0.16460106,-0.05662158,-0.011470507,-0.72615755,-0.39100412,0.22422972,0.15714781,0.15825379,0.032905765,0.011666715,0.26770946,-0.059696633,0.2702315,-0.3585053,-0.22129264,0.31930155,0.19854507,-0.042404268,0.11914291,-0.48467126,0.41782397,-0.370463,0.12914939,-0.31030056,0.16487165,-0.19945422,-0.16945702,0.2481014,-0.093736045,0.32296053,-0.29172152,-0.24950634,-0.14009489,0.5887504,0.06865235,0.082245216,0.60276186,-0.27893698,0.11236871,0.09656142,0.43416783,0.96752864,-0.41514847,0.009547808,0.41537398,-0.44310984,-0.5516604,0.30815795,-0.2537546,0.04756307,0.1707411,-0.37861496,-0.3621975,0.34428573,0.19990487,-0.028851839,0.08324205,-0.5010321,-0.1504153,0.38365677,-0.435833,-0.12751472,-0.15763548,0.25423583,0.4172353,-0.3493586,-0.29043055,0.023161607,0.23234315,-0.31050918,-0.43740067,-0.084642455,-0.20526218,0.43716145,0.11682649,-0.3821781,-0.045105353,0.097303875,-0.3458421,0.15598549,0.32077232,-0.38071486,0.055439204,-0.37812346,-0.0031121373,0.79351413,-0.22247025,-0.106473625,-0.5455829,-0.28292784,-0.88080376,-0.4341625,0.40129054,0.05652838,-0.11343006,-0.5861832,-0.069488555,-0.15567474,-0.036039114,-0.011893917,-0.30288523,0.46699652,0.24441446,0.46617442,-0.08620751,-0.76455945,0.08770602,-0.003756453,-0.119695015,-0.6641597,0.5788864,-0.25878513,0.617492,0.01990028,0.14607541,0.31122628,-0.5039744,0.030342389,-0.21845776,-0.27511483,-0.69568175,-0.11261614 +52,0.50238615,-0.26940906,-0.41880393,-0.23677891,-0.371515,-0.051980834,-0.14154199,0.5841127,0.35998037,-0.39449906,-0.1833356,-0.04780041,-0.040969256,0.5882514,-0.18796568,-0.38911977,-0.23201434,0.25734714,-0.5858237,0.5821874,-0.5057402,0.2669569,-0.0056962953,0.673515,0.4375939,0.23232989,0.12203447,0.07519526,-0.028764017,-0.46822596,0.04850949,0.0266178,-0.62161857,0.021891894,-0.2922974,-0.56846184,-0.06884002,-0.48921585,-0.5145613,-0.9626743,0.5417133,-0.8617995,0.568548,-0.16423069,-0.23468529,-0.0041394173,0.30300435,0.3696077,-0.13421047,-0.13816644,0.1500189,-0.22564703,-0.067331545,-0.24283527,-0.13238661,-0.32820904,-0.68655324,-0.19931078,-0.27772447,-0.10618927,-0.48802152,0.15153636,-0.47557512,0.103373386,-0.084589094,0.52692324,-0.39025518,0.16935039,0.07933373,-0.25766507,0.21444333,-0.58703595,-0.33013853,-0.1724943,0.1932232,0.101392984,-0.27890623,0.5574805,0.28317583,0.30271813,0.091923684,-0.22891031,-0.45540157,-0.008744776,-0.16347216,0.59008735,-0.10370574,-0.6392819,-0.17182846,-0.039542872,0.45675626,0.22458094,0.17768677,-0.19529735,0.06303061,-0.0034592152,-0.22603828,0.8747366,0.61058956,-0.059326347,-0.3075455,0.24529134,0.4156649,0.34623507,-0.17138337,-0.08482685,0.03904577,-0.5866983,-0.24562229,-0.23387194,-0.1958371,0.4162034,-0.08197514,0.29808196,0.7275238,-0.4136083,0.09411395,0.048270296,0.1731988,-0.19252189,-0.37028214,-0.52084774,0.3551263,-0.47814968,0.20235157,-0.35630643,0.93944246,0.09652094,-0.6140148,0.36634883,-0.5750508,0.07792994,-0.034076232,0.5442216,0.6741443,0.47884706,0.5024507,0.6000194,-0.21164507,0.10933278,0.09439453,-0.36062387,0.21000572,-0.2938198,0.18544865,-0.4426806,0.10411588,-0.18686731,-0.12886079,-0.026789024,0.6454278,-0.581825,-0.18892269,0.14542156,0.7112084,-0.2249953,0.212386,0.9181452,1.1436743,1.0857334,-0.008165941,1.2482734,0.27881953,-0.24489982,-0.0054027312,-0.10187898,-0.79780596,0.1913309,0.29248607,-0.78418565,0.3401886,0.07312885,-0.042862315,0.19791043,-0.54451245,-0.22891428,0.03254293,0.54737544,0.20258087,-0.27700508,-0.40278903,-0.35426387,0.0024853647,0.038160574,0.35991478,0.25128016,-0.32570413,0.4413043,0.08570481,1.582264,-0.25875553,0.0676997,0.019748868,0.797102,0.26272774,-0.1641041,0.06376796,0.18277448,0.29765382,-0.0592453,-0.5443031,0.14947571,-0.22053863,-0.22453994,-0.18033512,-0.40512407,-0.1658869,-0.01532713,-0.014789681,-0.39288136,-0.03020895,-0.20195962,0.35077175,-2.3964474,-0.110195555,-0.1358226,0.30865264,-0.25982693,-0.3233016,-0.04591517,-0.7010517,0.5239818,0.11596318,0.57280254,-0.7539225,0.2700702,0.9218382,-0.85882115,-0.06972713,-0.4846438,-0.17978065,-0.14051254,0.46711072,0.045691356,-0.2520732,-0.23909359,0.20209374,0.45972314,0.4147904,0.056455355,0.5053316,0.6370951,-0.31013685,0.80662936,-0.10065208,0.7440013,-0.3325279,-0.19634481,0.50412756,-0.4436039,0.03858632,-0.64076364,0.09547588,0.85335135,-0.37954494,-0.968631,-0.5334337,0.07182238,1.048426,-0.281069,-0.54225737,0.18731289,-0.49643353,-0.18835855,0.069570534,0.5360781,-0.28911072,-0.10534438,-0.7371986,-0.15022083,-0.12141817,0.26395535,0.10941473,-0.064505816,-0.47399423,0.6440641,0.02352721,0.5470278,0.087889455,0.1321308,-0.46006092,-0.36099717,0.20810924,0.7830186,0.3223358,0.102328,-0.2857794,-0.043486133,-0.37846628,-0.18716876,-0.16305993,0.71019095,0.7291918,-0.15191084,0.088446416,0.19589932,-0.12713422,-0.039389875,-0.20413578,-0.3910055,-0.2786188,-0.18972486,0.58488244,0.8927098,-0.25545195,0.3627111,-0.0044559785,0.3005445,-0.084228955,-0.49162388,0.7813473,0.8783825,-0.106108785,-0.2906593,0.7343626,0.39940155,-0.40006194,0.54001915,-0.64405537,-0.2387482,0.59234744,-0.12305608,-0.47798762,0.061793447,-0.25660717,-0.12098161,-0.63664323,0.20026578,-0.4013938,-0.4062437,-0.6037192,-0.12848513,-2.4455347,0.2002031,-0.030404193,-0.23489381,-0.21894442,-0.23035413,0.25752792,-0.5021402,-0.8040874,0.30123535,0.16745217,0.8791259,-0.07186816,0.002678762,-0.20289774,-0.4454778,-0.5108289,0.13267916,0.048592526,0.4310732,0.1488024,-0.50572383,-0.12379981,0.0063427836,-0.48129487,0.11227709,-0.48698935,-0.5235023,-0.10041374,-0.5406477,-0.2598717,0.7913951,-0.27518487,0.061569616,-0.2332194,-0.029371167,-0.09791559,0.21318829,-0.06628119,0.09289199,0.16684079,-0.16179165,0.2380415,-0.023967827,0.4461298,-0.06850795,0.3679526,-0.017920265,-0.0646556,0.06135383,0.31483695,1.0043999,-0.266386,1.2940083,0.30717012,-0.105437994,0.105266385,-0.16294509,-0.48609385,-0.60051477,-0.202843,0.35888818,-0.45069098,-0.16020541,-0.08615771,-0.5206639,-0.84107256,0.78090495,0.28180894,0.22324865,-0.015196796,0.17898794,0.4805561,-0.08859751,0.10023469,-0.070799075,-0.17853464,-0.63611823,-0.048279244,-0.74888325,-0.31512353,0.0979609,0.9939406,-0.32929313,-0.06424392,0.19796896,-0.48308346,0.15090652,0.07464015,-0.04537916,0.04485162,0.7101118,0.16437803,-0.56261,0.32242918,-0.12526302,0.11384198,-0.7479052,0.28260177,0.557905,-0.64934206,0.5580979,0.22177427,-0.01573622,-0.36154342,-0.5283387,-0.25102103,-0.09368237,-0.10992971,0.44053802,0.2507541,-0.78505754,0.41427338,0.044721942,-0.37265548,-0.729942,0.46446648,-0.023262039,-0.2896249,-0.31792915,0.34584,0.24239571,0.10162014,-0.20594734,0.25514933,-0.31898618,0.34269747,-0.064379014,-0.018308856,0.19207503,-0.22956721,-0.2759785,-0.8397499,0.21469481,-0.38487062,-0.5283731,0.30308905,-0.015677074,0.19616133,0.25258088,0.37015095,0.29913178,-0.3395283,0.11687072,-0.24397856,-0.3164684,0.52646464,0.36305276,0.57713836,-0.47226548,0.6697011,0.1684256,-0.27591574,0.16204071,-0.32608375,0.41069666,-0.00023137529,0.45402578,0.1351149,-0.33271602,0.25037372,1.0317019,0.11542976,0.24609448,0.082422115,-0.14669634,0.17196178,0.17019944,0.29907584,0.08778894,-0.7229144,0.11716507,-0.4204165,0.06279971,0.6155521,0.19964366,0.25511593,0.05536982,-0.46441033,-0.080302514,0.12291318,-0.2242947,-1.652482,0.33666834,0.2064523,0.9643933,0.41039896,-0.0030645505,-0.007109523,0.76704407,0.012649226,0.14152525,0.4703786,0.16541262,-0.20418252,0.54476166,-0.5823913,0.48618117,0.05566268,-0.008910261,0.11811327,0.089029826,0.4059488,0.75372165,-0.24899189,0.009699765,-0.08484001,-0.23349464,0.05171774,-0.41529465,-0.11157601,-0.42548513,-0.38629985,0.71121097,0.4825691,0.33422422,-0.14447851,0.08480757,-0.029834822,-0.11583123,-0.04705998,0.044115614,-0.16746302,0.07096261,-0.42210022,0.024272198,0.43678263,-0.06245047,0.10684627,-0.13862027,-0.18509561,0.15209804,-0.25514996,-0.015239379,-0.07984132,-0.9157884,-0.1723832,-0.23943269,-0.40113953,0.42496622,0.13474202,0.14442147,0.2094187,0.11409563,0.14511132,0.39433387,0.2091552,1.0099036,0.100174524,-0.040732954,-0.3195443,0.15954162,0.07647718,-0.35787773,0.19394828,-0.31821838,0.08031418,-0.49266586,0.655406,-0.104865454,-0.3472322,-0.03543042,-0.18566509,0.14978147,0.54703754,-0.20724791,-0.029230228,-0.24459714,-0.11960641,-0.108858615,-0.41243228,-0.30356246,0.21464562,0.19796653,0.015522018,-0.22167552,-0.119434476,-0.19873019,0.41774035,-0.03813501,0.3359129,0.38064292,0.24586678,-0.20278911,-0.12402841,0.13554516,0.9054521,-0.06036134,-0.2873133,-0.39284483,-0.4990095,-0.4049244,0.45061776,-0.06490499,0.3449174,0.10682312,-0.34242737,0.83368444,0.24694689,1.0029243,-0.06507364,-0.57920307,0.12639478,0.59941024,-0.0679202,-0.08542082,-0.54095954,0.9008708,0.17580342,-0.18965693,-0.095254324,-0.46162423,0.085434295,0.41012207,-0.28010237,0.028145919,-0.09256989,-0.6801707,-0.32928038,0.27493247,0.2592179,0.0135711385,-0.15073839,0.17510505,0.39810833,0.22959568,0.5427241,-0.5351717,-0.32438624,0.28738245,0.24603643,-0.07407854,0.2159798,-0.5302603,0.20682208,-0.40967456,0.15985756,-0.6024845,0.18568508,-0.25868022,-0.3432893,0.20008647,0.21635556,0.36951837,-0.45900366,-0.4993693,-0.17692284,0.41376483,0.15635829,0.16153401,0.5255948,-0.32928908,0.02610527,0.06260996,0.6599081,1.0030966,-0.008546904,0.04560508,0.30098134,-0.41527793,-0.5289734,0.3256653,-0.38085148,0.16655403,0.074670605,-0.2203058,-0.6310683,0.23498625,0.074517906,0.045736223,0.263809,-0.6740878,-0.48253104,0.4094689,-0.27491686,-0.14902459,-0.3952353,0.011920117,0.5742615,-0.20132823,-0.39162782,0.13871044,0.34634185,-0.057337243,-0.68746156,-0.22769551,-0.52013993,0.402336,-0.042810295,-0.3338566,-0.3222368,-0.16618271,-0.67202586,0.2321245,0.033902794,-0.47589254,0.07326971,-0.31934053,0.039579645,1.1623653,-0.3781133,0.17477256,-0.60011786,-0.34672093,-0.8149417,-0.23133159,0.3710024,0.018767968,-0.058927298,-0.8410141,-0.04880252,-0.28562805,-0.044671018,-0.0443136,-0.2876372,0.30821037,0.1791637,0.5533449,-0.06006524,-0.9497261,0.18203568,0.06511535,-0.4839803,-0.68929785,0.79812604,-0.02020295,0.9690652,-0.046592217,0.1076386,-0.048846077,-0.42858818,0.19316894,-0.31306508,-0.18565027,-0.51895386,0.4068599 +53,0.28296974,-0.18701656,-0.44073164,-0.1219089,-0.2731871,0.022565452,-0.24025175,0.087753765,0.26838136,-0.15368168,0.009890364,-0.030889751,0.19334921,0.41574317,-0.018518362,-0.6444055,-0.13949503,0.06329202,-0.69267344,0.19822948,-0.576518,0.2854963,-0.06288003,0.5571455,0.029290993,0.3520889,0.28348717,-0.045039766,-0.02236612,-0.18131143,0.09454631,0.33742717,-0.59456325,-0.006124657,-0.038510386,-0.46215397,0.13868678,-0.22002445,-0.39532945,-0.6715032,0.20425987,-1.0365541,0.581943,0.007928161,-0.063754454,-0.06694886,0.39611974,0.46762833,-0.3538117,-0.005137072,0.35729483,-0.41348055,-0.043356977,-0.5345471,-0.14760749,-0.48092702,-0.44435737,-0.13180712,-0.5670032,-0.46100077,-0.33437964,0.19540018,-0.3063277,-0.08502818,-0.07390404,0.18711337,-0.36409342,-0.0036776157,0.34976307,-0.28925863,0.42291376,-0.60853195,-0.13548088,-0.01058736,0.408147,-0.10054219,-0.23730978,0.562779,0.19001411,0.22676292,0.30847603,-0.23232195,-0.50379586,-0.22076076,0.12120204,0.44530126,-0.37704465,-0.06147838,-0.20875695,0.018666247,0.35115528,0.51720905,0.03209947,-0.08178074,0.020291705,-0.015306418,-0.045245435,0.6256482,0.54497176,-0.20937745,-0.5714332,0.11027126,0.49654043,0.124394014,-0.30122143,0.033804674,0.045232274,-0.4991175,-0.15229866,0.20910779,0.03086826,0.397135,0.010397499,0.13095254,1.038224,-0.3544665,-0.007012349,-0.06802133,0.097088724,-0.03473986,-0.37384537,-0.32178015,0.27910712,-0.5630461,0.06618199,-0.37923118,0.69084156,0.03543022,-0.64187235,0.24021856,-0.5855158,0.052785356,-0.10992486,0.62959945,0.56514835,0.4431751,0.2988902,0.693365,-0.19544347,0.238877,-0.066513814,-0.30446988,0.11764552,-0.3253743,0.14437367,-0.48989674,0.0392086,-0.17020147,0.079429194,0.32594424,0.36462194,-0.5556033,-0.02639854,0.37731028,0.8671617,-0.3872862,-0.015178671,0.5370363,1.2198901,0.90646714,-0.017077649,0.901535,0.42852336,-0.2647919,0.012063698,-0.16952676,-0.48809427,0.12566486,0.2566005,-0.119427755,0.20686181,-0.107905746,-0.06260569,0.19824086,-0.5110759,-0.05415656,0.009642413,0.32330132,0.23529448,-0.07546442,-0.46092135,-0.07618509,0.018329836,-0.26204163,0.30412814,0.17480429,-0.26364252,0.5692253,-0.06584169,1.0554017,-0.00662148,0.09421638,-0.004693679,0.7362767,0.26641175,-0.042825416,0.122440375,0.45437464,0.250367,-0.006662506,-0.554232,0.28306106,-0.40411714,-0.29477102,-0.25629067,-0.42750475,-0.13925456,0.24918278,-0.23451942,-0.318733,0.04073928,-0.20914504,0.2969519,-2.8185492,-0.093426116,0.035250325,0.31250638,-0.23616412,-0.059299216,-0.112277105,-0.51453906,0.43152693,0.2148758,0.44815248,-0.46316302,0.3019861,0.54858565,-0.52573454,-0.2398223,-0.6289685,-0.0725729,-0.13339506,0.42182624,0.009670551,-0.17537992,-0.15745758,0.033853088,0.73582333,0.12827672,0.077731065,0.5175877,0.26907602,0.19522524,0.50577337,0.084535085,0.5697742,-0.3744012,-0.3771784,0.3448791,-0.4066542,0.19569977,-0.13914865,0.06834296,0.55750906,-0.28192475,-1.032849,-0.55289227,-0.18540417,0.94236934,-0.23870103,-0.62660307,0.20143324,0.002448591,-0.1364593,0.09975031,0.5849594,-0.08927394,0.27411255,-0.6144635,0.06167137,-0.045876577,0.18957232,0.12079359,0.033206206,-0.3244831,0.5268204,-0.07379408,0.24186507,0.04788585,0.26585463,-0.49120843,-0.4233394,0.112357154,0.71811855,0.15309344,-0.06833761,-0.06576233,-0.37792355,0.08626067,-0.3958117,0.10190398,0.4372994,0.8156281,-0.05865806,0.18144242,0.39069322,-0.26581857,-0.029866455,-0.19216579,-0.20148915,-0.06061366,0.23148942,0.524331,0.72511345,-0.004084775,0.6329874,-0.10384602,0.49958473,-0.00421353,-0.59364927,0.5523585,0.47289106,-0.10614043,-0.23154698,0.58130467,0.4818565,-0.554535,0.5008063,-0.6963184,-0.2831303,0.7033923,-0.33394843,-0.47025186,0.055755284,-0.318556,0.11726446,-0.712649,0.35643163,-0.26597786,-0.5625788,-0.51091677,-0.22117314,-3.2897074,0.031440437,-0.27252004,-0.040451106,-0.19340141,-0.1436682,0.27441162,-0.54615086,-0.32610968,0.104882,0.26240838,0.78087336,-0.061125316,0.025491169,-0.34299117,-0.11005983,0.020303538,0.2930953,0.26574576,0.29721966,-0.14228831,-0.41153187,0.17990637,0.06351888,-0.674906,0.10907556,-0.51944613,-0.571452,-0.12953041,-0.6689363,-0.2592898,0.70891726,-0.45679194,0.06501274,-0.2894773,0.13680632,-0.10010635,0.29297847,0.21651363,0.23060729,0.32504827,-0.0628831,0.16567357,-0.3778602,0.5261623,-0.009683435,0.24777839,0.12510487,-0.052013796,0.029569479,0.4075186,0.5667623,-0.07609338,0.933071,0.4731975,-0.092338674,0.15239048,-0.42108986,-0.31203368,-0.61218655,-0.46811134,0.0025201212,-0.38571784,-0.43259713,0.039458558,-0.31003726,-0.78479016,0.81949466,-0.03888343,0.3115482,-0.17526862,0.24386938,0.39841276,-0.12294772,-0.17911246,-0.16995944,-0.03770819,-0.45863354,-0.1883746,-0.5851775,-0.65573657,-0.038121797,0.80322427,-0.34328505,0.10255865,0.053636767,-0.31028807,0.077849895,0.28055722,0.06046824,0.35100827,0.4171921,0.059828684,-0.6037848,0.39326316,-0.1580793,-0.09770678,-0.79070514,0.18081473,0.70327723,-0.76200783,0.52280354,0.32270432,0.07118469,-0.23348165,-0.49752778,-0.23020083,0.031146063,-0.10504509,0.4158953,0.008265183,-0.75651646,0.5539399,0.31992072,-0.6738204,-0.6438504,0.17613341,-0.09031391,-0.43562746,0.17615654,0.2511759,0.102381915,-0.1337081,-0.2754453,0.28719267,-0.4028477,0.274406,-0.0137748625,-0.09301952,0.648418,-0.098349914,-0.41689208,-0.68998945,0.13542096,-0.6102334,-0.31112894,0.33618608,0.019868586,-0.067305535,0.5524685,-0.037459016,0.41130707,-0.0963961,0.058469653,-0.22887021,-0.40127146,0.17824215,0.36651275,0.32409778,-0.437503,0.5976403,0.10431104,-0.29185453,0.17798427,-0.075855166,0.5703812,-0.10252444,0.4336805,-0.10753899,-0.2374503,0.29258493,0.714908,0.13732645,0.53670096,0.056715947,-0.041290045,0.4289429,-0.025131281,-0.019242672,0.06340607,-0.39509627,-0.02497208,-0.2765612,0.20745565,0.4518499,0.3301913,0.41369402,0.187869,-0.19661252,0.14417928,0.14666064,-0.04957588,-1.1372819,0.41489166,0.32768822,0.7711845,0.22650453,0.26182097,-0.2078481,0.815339,-0.3289726,-0.033321925,0.33581036,0.13864313,-0.4580549,0.77339625,-0.6114435,0.43554556,-0.13523178,-0.107524864,0.043657716,0.23921165,0.4635486,0.87124455,-0.22890384,0.19451615,0.11251819,-0.102271944,-0.0040969024,-0.23014975,0.16864952,-0.3596625,-0.37978333,0.81278324,0.2656908,0.38001272,-0.07484566,-0.12272579,0.14862894,-0.18126081,0.29929882,-0.14761928,-0.07750038,-0.029403288,-0.4090908,-0.1832741,0.48128554,0.107929505,0.34431252,-0.11954955,-0.10237563,0.16546668,-0.15307352,0.08482491,-0.011511539,-0.48297355,0.050499413,-0.129984,-0.61053663,0.5778345,-0.39255714,0.16216017,0.19112563,0.116742864,-0.09044843,0.3709622,0.20172864,0.78937286,-0.02437409,-0.34198183,-0.24019815,-0.07429891,0.303726,-0.23941973,0.14934275,-0.25627625,0.029690953,-0.58359367,0.5430081,-0.41316846,-0.50013554,0.17466171,-0.21260959,-0.0774578,0.41134113,-0.03644635,-0.081926145,0.36334044,-0.2606244,-0.48362643,-0.05523909,-0.35485172,0.18236,0.15312015,-0.12949815,-0.24371284,-0.36830166,-0.100675695,0.52244735,-0.0539689,0.5176727,0.19130489,0.18006927,-0.17164652,0.028661022,0.110756904,0.54195327,0.011089137,0.18488301,-0.25178638,-0.32207268,-0.24229135,0.18120076,-0.11962379,0.16791281,0.13898994,-0.5620153,0.90019184,-0.21754129,1.1936855,0.05404941,-0.4180487,0.26125973,0.4816771,-0.15148365,0.07474102,-0.5052667,0.940988,0.7403555,-0.06762963,-0.19104026,-0.47370374,-0.13110402,0.49670032,-0.41639188,-0.20220873,-0.1816523,-0.5132909,-0.49740475,0.2596447,0.24490646,0.19332725,-0.09100734,0.20543924,-0.029758124,0.12507401,0.33615065,-0.6339748,-0.18686989,0.25204393,0.3316018,-0.12800553,0.2480509,-0.28411314,0.46095663,-0.5707782,0.18693615,-0.42287275,-0.0030000238,-0.30752483,-0.3923035,0.13723117,0.08068175,0.17811988,-0.16210715,-0.24025963,0.052777704,0.45545706,0.19039708,0.22037299,0.574443,-0.29901287,-0.0056021395,-0.08279907,0.48976156,1.3349864,-0.43440324,-0.017078748,0.3167982,-0.39264828,-0.6679599,0.6116248,-0.36817864,-0.07666295,-0.15778175,-0.50663334,-0.2462891,0.14709832,0.10812278,-0.019909795,0.12471456,-0.2999956,-0.08921787,0.2376042,-0.30107704,-0.2630213,-0.19716519,0.4439886,0.60594755,-0.13012399,-0.17807205,0.054089867,0.4961936,-0.28770018,-0.3209263,0.050469365,-0.12653346,0.46313554,0.06861822,-0.4016473,-0.12931122,0.11969554,-0.4622708,0.029794825,0.2925325,-0.41445577,0.028027333,-0.15616515,0.16382639,0.6916396,-0.34209996,-0.06847463,-0.68344307,-0.42586324,-1.0394276,-0.54217577,0.21358779,0.28181157,-0.008706318,-0.40869612,0.015635304,-0.036059543,-0.22223803,0.057498094,-0.6100312,0.30625868,0.1240461,0.49185318,-0.4548306,-0.92193484,0.09578704,0.103573486,-0.16574946,-0.68751645,0.73634213,-0.18652198,0.8193925,0.09791488,-0.1380286,0.11845751,-0.2606532,0.11390412,-0.37857825,-0.34979397,-0.8888391,-0.08875621 +54,0.7010103,-0.1462217,-0.5236357,-0.18103208,-0.42684123,0.32289803,-0.27909076,0.065376945,0.24633765,-0.6551354,-0.07858631,0.024812417,-0.23501673,0.30173683,-0.21841711,-0.91917604,-0.14628161,0.10531383,-0.5735349,0.66581273,-0.43901014,0.39442304,-0.047737774,0.1690697,-0.18372796,0.3554764,0.5581359,0.041368257,-0.2345912,-0.17033881,0.09899692,0.018210893,-0.91283435,0.4412166,0.02628048,-0.24022557,0.08401474,-0.5138323,-0.03559363,-0.71042156,0.609657,-0.8449797,0.7625592,-0.12392651,-0.2542817,0.01500179,0.07327433,0.015206412,-0.13172513,0.13132602,0.18464284,-0.28686666,-0.16165105,-0.27531117,-0.28483498,-0.6181611,-0.7206586,0.07647165,-0.7536081,-0.2223854,-0.4381075,0.30129382,-0.3257989,-0.1623199,-0.28359434,0.6510532,-0.4463177,-0.23264576,0.04287283,-0.22788659,-0.02289653,-0.703651,-0.2681776,-0.16844903,0.24080883,-0.04514202,-0.014285732,0.2909344,0.35132197,0.5856297,0.36860406,-0.39480287,-0.25267145,-0.1545545,0.15715145,0.37074584,-0.05852187,-0.5761719,-0.34065545,-0.041307177,0.37362054,0.14817198,0.27762964,-0.32547665,0.24450098,-0.00066729565,-0.10649531,0.8961497,0.48556882,-0.4169471,-0.2173701,0.3003337,0.38695785,-0.2039392,-0.020849,-0.023230005,-0.06791496,-0.4876106,-0.28843993,0.21427794,-0.12664492,0.5881352,-0.23375203,0.14281116,0.56446034,-0.2476971,-0.06648935,0.053968657,-0.1583069,0.13414337,-0.11777,0.024876803,0.38899973,-0.50165755,-0.0062802355,-0.4849603,0.5285674,0.041124605,-0.70326364,0.28683308,-0.5089622,0.053184364,0.1659629,0.68892026,0.80369574,0.6128582,0.07648324,1.0480716,-0.42231578,-0.04898657,-0.018872792,-0.24520727,-0.07548297,-0.049987737,0.23724537,-0.45301706,0.24492235,-0.07704194,-0.04891536,-0.21435852,0.49964717,-0.54579586,-0.1569893,0.18224607,0.73231035,-0.36396244,-0.15371391,0.9837234,1.1676573,1.1133596,-0.088208325,1.6121787,0.21271853,-0.29970255,-0.14797081,-0.22573107,-0.5826835,0.24567851,0.5300205,0.2848686,0.61799836,0.0764611,-0.02306342,0.17395937,-0.4694009,-0.2734108,0.048420116,0.5319259,0.0076922397,-0.049589667,-0.44535848,-0.16295801,0.36836517,0.12319071,0.46300563,0.4183731,-0.43189862,0.48938343,0.061945867,0.8650308,-0.00393499,0.25494844,-0.06477396,0.3445889,0.284729,0.026992511,0.016359407,0.27421895,0.13221572,-0.05795494,-0.7666962,-0.13099092,-0.6165211,-0.31870574,-0.33519194,-0.37224245,-0.07477807,-0.13278623,-0.20350666,-0.31243593,-0.07674651,-0.5278211,0.28190523,-2.1978395,-0.43004036,-0.20905118,0.33968294,-0.3053138,-0.34535483,-0.14899291,-0.5441682,0.3892573,0.29294243,0.41705084,-0.6971543,0.34899056,0.37171564,-0.45708963,-0.16047917,-0.4824995,0.04344876,-0.24913374,0.52000445,-0.263961,-0.53138524,-0.33831462,0.2867347,0.7136352,0.3694152,0.010720369,0.28219917,0.56847763,-0.01723504,0.41127557,-0.014482052,0.5499897,-0.33919007,-0.08388924,0.39354116,-0.34213087,0.244171,-0.28266045,0.0056948336,0.50485986,-0.6943475,-0.72434443,-0.7074847,-0.3883344,1.2733091,-0.23510009,-0.6045056,0.040706705,0.24976026,-0.22124887,0.030556766,0.62053156,-0.20635672,0.04925817,-0.5879576,0.10220192,-0.054255355,0.13237752,-0.04635392,0.28007212,-0.6213758,0.7141789,-0.06563443,0.3817995,0.21676826,0.5481417,-0.29082575,-0.51011145,0.17136005,1.0952258,0.5384708,0.1779434,-0.19391018,-0.054018162,0.08529547,-0.4255007,0.05935173,0.89684147,0.6889647,0.1414754,0.061709426,0.43927348,-0.10755256,0.37895167,-0.09342542,-0.43960854,-0.43427172,-0.04167898,0.71969527,0.33623043,-0.28329974,0.26786125,-0.06350763,0.09896069,-0.16843486,-0.43326285,0.62340367,1.0250417,-0.19483319,-0.16180223,0.91905475,0.43919554,-0.6956061,0.66277045,-0.7560148,-0.4049792,0.6250301,-0.17473842,-0.48754814,-0.28346992,-0.41785786,0.012726066,-0.90602076,0.3052107,-0.28728756,-0.5186678,-0.46014768,-0.3443127,-3.1144896,0.19327205,-0.29741985,0.09749044,-0.23923558,-0.2093031,0.15005395,-0.7298741,-0.6128624,0.17085077,-0.11503004,0.7310621,-0.17699039,0.15756729,-0.16849594,-0.5304268,-0.22701901,0.28560466,0.1411822,0.1581335,0.03129871,-0.16470928,0.32687896,-0.23684758,-0.46371463,0.07782253,-0.44790372,-0.58651906,-0.3373749,-0.70258063,-0.17844516,0.77759796,-0.20677263,-0.13203612,-0.14047346,0.16632177,0.10688171,0.23821492,-0.059902553,0.36374864,0.36518097,-0.19009699,0.0033849748,-0.3245771,0.66004634,0.16972958,0.4813333,0.5837936,-0.31350133,0.30249482,0.44962415,0.67044634,0.2659565,0.89497906,0.09640505,-0.035898045,0.48845416,-0.34773868,-0.40141594,-0.95106584,-0.36924955,0.16170378,-0.52784705,-0.56096363,0.034431074,-0.39291623,-0.85275596,0.4655526,-0.08693166,0.68890876,-0.23367058,0.4097125,0.32588205,-0.18911277,0.1619627,-0.114478916,-0.20168924,-0.37524596,-0.28406703,-0.7142104,-0.5877136,0.10373158,0.8751259,-0.09823728,-0.27699244,0.13167857,-0.19034928,0.36439097,-0.012377099,0.35251236,0.037224825,0.4097108,0.1680956,-0.79423994,0.3754168,-0.12341339,0.08770882,-0.3842521,0.20082259,0.8753361,-0.691717,0.5091086,0.43339956,0.112257406,-0.16731788,-0.54700667,-0.28327072,0.3637084,-0.11591747,0.46352842,0.28415364,-0.8249662,0.43190372,-0.09723932,-0.26056206,-0.7495833,0.5098496,-0.08355778,0.088417456,-0.1188771,0.73783755,0.3766123,-0.055085335,-0.22197843,0.4411733,-0.56109995,0.36680192,0.09804778,0.020869488,0.62620544,-0.11671584,-0.581141,-0.737973,-0.07373867,-0.8463663,-0.4050012,0.15284444,0.05572872,-0.07079899,0.31582204,0.18760972,0.6116793,-0.45272014,0.24942929,0.049671184,-0.3567048,0.42484704,0.56654185,0.5029991,-0.59429103,0.6352996,0.01918963,0.124561734,0.0012751073,-0.01683265,0.54203945,0.26638424,0.30386865,0.1202815,-0.036900103,0.08151415,0.5333641,0.3210109,0.2987766,0.3841321,-0.26098946,0.57323766,-0.0017884509,0.2959835,-0.0837481,-0.611716,-0.18468508,0.21659492,-0.084515914,0.5683318,0.17578231,0.32056713,-0.19105352,-0.009313324,0.20101632,0.15247375,-0.3280567,-1.3699181,0.23072626,0.13082644,0.67887133,0.5202722,-0.033855364,-0.058510736,0.39607182,-0.20480208,-0.015153679,0.6089702,0.048649885,-0.34442845,0.6142747,-0.32898477,0.31414255,-0.26194584,0.11027174,-0.043533113,0.14317077,0.337152,1.055709,-0.1260377,0.016585412,-0.2224625,-0.040904976,0.19736153,-0.18805404,0.2549465,-0.43857872,-0.19049844,0.5844626,0.15074916,0.2712609,-0.19742586,-0.0736242,0.20235115,-0.16033904,0.37647584,-0.12994681,-0.12817521,-0.22485504,-0.39309743,-0.27783462,0.46106625,0.26279488,0.021579348,0.07055647,-0.20485415,0.14336425,-0.021366738,-0.23663673,0.0887734,-0.91465926,0.08520229,-0.15857431,-0.44033,0.29598236,-0.2763244,0.0059311446,0.1906841,0.07359702,-0.33787563,0.06472501,0.50912994,0.6177082,0.061828885,-0.2646396,-0.4305109,0.029861236,0.13109444,-0.5270546,0.39800665,-0.14957188,0.37768993,-0.55694646,0.6121564,-0.18735257,-0.18178257,-0.12903792,-0.09375313,-0.08363208,0.43101406,-0.11497993,0.09925208,0.2976031,-0.15539573,-0.17352362,-0.29479212,-0.4332062,0.11178967,-0.12403939,-0.025069498,-0.28112516,-0.20341371,-0.2030709,0.427699,0.32805663,-0.14839767,0.23270407,-0.011509012,-0.5773702,-0.05388514,0.11008964,0.45671985,0.060417697,-0.021875294,-0.20872305,-0.3225164,-0.27264902,0.44929808,-0.07845745,-0.09733098,-0.011204795,-0.43977526,0.67063105,0.34550288,1.3093301,-0.06455267,-0.3798764,-0.09096811,0.77403474,-0.15318848,-0.015846688,-0.4168546,1.4050533,0.5928712,-0.20876174,-0.22627497,-0.739431,-0.11466047,0.090339996,-0.46975943,-0.09647136,-0.28238076,-0.7025597,-0.37996924,0.28501996,0.29668304,-0.04764664,-0.052023318,0.06372247,0.25699776,0.23858705,0.67436886,-0.6839243,-0.2667081,0.41046456,0.1436641,0.13746718,0.44645873,-0.23407139,0.22307526,-1.0044408,0.314698,-0.27618992,0.086267605,-0.068277955,-0.39204293,0.34267923,0.27680916,0.3634827,-0.2235824,-0.6663079,-0.2444945,0.45249107,0.10492199,0.21701199,0.9066996,-0.24528736,-0.056075823,-0.088099025,0.48849848,1.6023113,0.3373122,0.2611675,0.041257054,-0.55155647,-0.8809237,0.19621207,-0.56327856,0.096509,-0.29393703,-0.39376494,-0.34183067,0.12915808,-0.16953392,-0.07528329,0.100691535,-0.498666,-0.4834933,0.26727605,-0.39636162,-0.08861274,-0.18333559,0.31626555,0.95867354,-0.32879567,-0.29304412,-0.045276836,0.5774105,-0.28263915,-0.9632609,-0.23571391,-0.20880713,0.5043504,0.053111706,-0.29580155,-0.07991901,0.26265976,-0.49559662,0.18612589,0.36822203,-0.32416928,-0.131962,-0.32427552,-0.054045394,0.8517744,0.1749488,0.30790257,-0.43180558,-0.60493624,-0.97333425,-0.46711075,-0.16369466,0.0035651543,-0.047403213,-0.71310896,-0.113300316,-0.40023363,0.054482125,0.096019395,-0.58178496,0.12650236,0.18226805,0.7749086,-0.18362702,-1.078827,0.073877856,0.27197236,0.072221026,-0.56549364,0.45709077,-0.12888782,0.6769825,0.28298077,-0.10444451,-0.12482956,-0.84756905,0.36159077,-0.41217926,-0.115495555,-0.60457134,0.17347641 +55,0.33711752,-0.26254943,-0.4200888,-0.061201137,-0.120332666,0.17048594,-0.112752385,0.7778844,0.3203017,-0.46593976,-0.22525522,-0.07946457,-0.08006882,0.31641826,-0.08774388,-0.32384688,0.029479606,0.14549407,-0.34658214,0.5163155,-0.33407745,0.27324134,-0.18796362,0.45099995,0.22235227,0.116888456,0.09552141,0.045552205,-0.07489555,-0.084243305,-0.011494009,0.43942267,-0.36710238,0.32905096,-0.29198307,-0.34576607,-0.09488462,-0.60079086,-0.2683031,-0.75000346,0.10459801,-0.6771239,0.4591326,-0.100555114,-0.3632107,0.41951337,0.05655209,0.10498031,-0.17082156,-0.10942252,0.03468936,-0.007542419,-0.2320994,-0.062329847,-0.10813421,-0.30930725,-0.55817443,0.16505356,-0.29767886,-0.025634633,-0.23190495,0.13179912,-0.28536493,0.027676139,0.074913636,0.5045771,-0.4539546,0.0050260467,0.23142818,-0.18235986,-0.024484992,-0.6670391,-0.14270715,-0.07069202,0.225304,-0.06445546,-0.13016075,0.20934422,0.25422668,0.5600793,-0.006457857,-0.1593944,-0.3814318,0.043142848,0.010398269,0.43798873,-0.1500878,-0.32358497,-0.0188919,-0.062822096,0.34981403,0.14714603,0.20732076,0.036948446,-0.2338089,-0.117752396,-0.2466223,0.1984414,0.46482235,-0.40706232,-0.258586,0.466184,0.5269802,0.26270238,0.019612297,0.0017864023,0.008566632,-0.4773819,-0.16393757,-0.098819196,-0.24150096,0.46685654,-0.13141187,0.36857533,0.38719568,-0.00942988,0.035278153,0.08129559,0.054602724,-0.10728376,-0.27918154,-0.23329823,0.21916959,-0.31894466,0.17171967,-0.050865788,0.697299,0.19083798,-0.61265814,0.30566737,-0.3500503,0.11240927,-0.019891901,0.43105835,0.8747937,0.4437172,0.30995634,0.73357445,-0.35953084,-0.09703292,-0.17845508,-0.060048003,-0.031035593,-0.24879786,-0.005610615,-0.518351,0.16459092,0.11941392,0.095442794,0.28906727,0.23808119,-0.537783,-0.21793628,0.30955085,0.67161113,-0.20197515,-0.23071814,0.8918146,0.99649316,0.9979082,0.028018815,0.9620077,0.124232106,-0.05725165,0.1878052,-0.16650857,-0.6064924,0.25391743,0.30366564,0.057951313,0.26053253,0.16605678,-0.114152,0.54334927,-0.29595968,-0.079251155,-0.15231732,0.1484002,0.15230618,-0.13212432,-0.41391367,-0.33742455,-0.009175656,0.01563836,0.044791102,0.278256,-0.13715684,0.359131,-0.09791801,1.4296935,-0.04307879,0.005606634,0.17120218,0.31505844,0.1638951,-0.28111523,-0.04278561,0.32790694,0.26402214,0.012790744,-0.54081887,0.15980352,-0.16951439,-0.4891025,-0.06834506,-0.31958008,-0.22315471,0.05932406,-0.37508014,-0.1887079,-0.22497618,-0.43302673,0.47483474,-3.032015,-0.16599011,-0.12554859,0.32077292,-0.24249102,-0.36701974,-0.14430763,-0.47635955,0.39137676,0.32300025,0.4469699,-0.3968249,0.26263928,0.2740843,-0.64646333,-0.19850172,-0.49683744,0.07080292,0.049175896,0.25867695,0.073777676,-0.15353952,-0.045540128,0.0857958,0.644734,0.056297224,0.12200876,0.3803301,0.39205953,-0.2090962,0.3460121,-0.23027873,0.49698806,-0.44416466,-0.2497327,0.37389132,-0.5289999,0.42432475,-0.17087507,0.14133023,0.4656106,-0.3852138,-0.88637334,-0.59354436,-0.17025293,1.366176,-0.0854426,-0.44820473,0.09987207,-0.5527739,-0.116655454,-0.16436164,0.5148131,-0.018666152,-0.2047378,-0.6762878,0.0037626412,-0.078059435,0.086339675,-0.057567913,-0.0730202,-0.49755216,0.6427263,-0.060740445,0.4935678,0.2622722,0.16342887,-0.09090154,-0.25497046,-0.065492295,0.7599093,0.5450438,0.13953432,-0.22085367,-0.090141945,-0.41498968,-0.042553928,0.16307737,0.5616894,0.46778303,-0.10599106,0.15656802,0.19460583,0.22289778,0.083833374,-0.16130832,-0.0861216,-0.19277671,0.20654015,0.59300464,0.6367034,-0.122750714,0.27577266,-0.009705564,0.10916499,-0.26530698,-0.42501897,0.4617321,0.7395791,-0.17799345,-0.30792218,0.70577306,0.48770386,-0.007331499,0.4182962,-0.4895356,-0.38306317,0.35548726,-0.25095594,-0.36522028,0.022987375,-0.28967816,0.09204681,-0.72158444,0.06013578,-0.23992753,-0.51083344,-0.5377442,-0.021539222,-2.948621,0.19998346,-0.1033647,-0.1689115,-0.17385867,-0.24606435,0.19576697,-0.51786107,-0.5530559,0.22646405,0.15162376,0.6575144,-0.12572446,0.038093746,-0.21355654,-0.41551873,-0.3634166,0.046256,-0.03557555,0.4619423,0.1024638,-0.39823815,0.023955246,-0.120249696,-0.33805862,-0.02414473,-0.42856547,-0.31346413,-0.19684286,-0.4619947,-0.18917973,0.5736741,-0.4118565,0.0701026,-0.28556642,0.041498568,-0.03137877,0.22744925,-0.083238855,0.06441992,0.043132875,-0.19263884,0.004015782,-0.24320345,0.3647761,0.061435156,0.250566,0.503808,-0.18010625,0.2358506,0.5247558,0.6380053,-0.26806256,0.93733865,0.48546204,0.0102264285,0.35664776,-0.10688423,-0.21486321,-0.36585188,-0.22593416,0.035277296,-0.44794804,-0.35432556,0.055172723,-0.23695694,-0.8775161,0.4492615,-0.0354945,0.27273032,-0.011716549,0.22881475,0.62578887,-0.3240371,0.05558923,-0.0129706655,-0.030139754,-0.3929677,-0.44712248,-0.57233906,-0.47616026,0.1769817,1.0635455,-0.25937155,0.17096846,0.15012811,-0.107771054,-0.06855164,0.067126706,0.087202564,0.019791748,0.29984933,-0.009311261,-0.6030241,0.40267038,-0.08143637,-0.11970752,-0.43171623,0.19973318,0.4457118,-0.5099538,0.45817533,0.38798618,-0.02279624,-0.09758784,-0.68184793,-0.114663005,-0.18760398,-0.1970253,0.2758861,0.33202308,-0.9191739,0.49459735,0.32755968,-0.2330517,-0.8224459,0.38781804,-0.10716629,-0.05517103,-0.06607232,0.28629375,0.3272124,-0.020146709,-0.048112683,0.08422882,-0.38773775,0.3443508,0.072824575,-0.06390112,0.4476631,-0.2783043,-0.03276735,-0.6891236,-0.18734215,-0.5017739,-0.23145887,0.2344803,0.071396776,0.028447475,0.06090894,0.16784464,0.35383138,-0.32415563,0.11873865,-0.07447279,-0.33383116,0.36300763,0.45217174,0.5932469,-0.2991528,0.55896044,0.095403664,0.06714721,-0.15458202,-0.035682034,0.3639049,0.040985517,0.41482836,-0.12056478,-0.27380165,0.083602324,0.7920659,0.09347544,0.2361736,-0.12452285,-0.21614666,0.24130858,0.0015949468,0.19031997,-0.14816049,-0.56745386,0.010781507,-0.46810898,0.157796,0.41271186,0.1162334,0.26555517,-0.08869149,-0.1775676,0.049116135,0.14982855,-0.029803442,-0.9983937,0.32936072,-0.015784774,1.0134795,0.41004354,0.04648264,-0.04627251,0.7288381,-0.031816334,0.12174215,0.384723,-0.1304109,-0.45979834,0.5631867,-0.73408926,0.5147319,-0.057648204,-0.088923514,0.096565075,0.033759736,0.41598216,0.6401778,-0.19483832,-0.056647334,0.06974477,-0.3649209,0.06426448,-0.46778843,0.113566525,-0.53756166,-0.21852253,0.6651658,0.6057712,0.41027927,-0.36758623,0.009934953,0.054602344,-0.15948336,0.06566221,-0.049817186,0.09618868,-0.13229181,-0.60397035,-0.012032403,0.39516202,0.13594814,0.2181916,-0.060888704,-0.33187488,0.20887554,-0.16623423,-0.03621241,-0.018246695,-0.59795415,-0.033159807,-0.3068065,-0.5451471,0.47905603,0.031089988,0.21006833,0.2271094,0.09547423,-0.12865068,0.3110653,0.023879051,0.82223696,-0.05792164,-0.021361498,-0.3444028,0.24470684,0.18689765,-0.1871339,-0.042329352,-0.23741515,0.035036083,-0.54159343,0.4251407,-0.07470475,-0.19975258,0.22784893,-0.04823276,0.12903288,0.4438147,-0.026456634,0.013117595,-0.073175944,-0.23940672,-0.3950806,-0.26953954,-0.1343547,0.26962245,0.086036704,-0.10042095,-0.17308064,-0.14075463,-0.059072156,0.22742839,0.04233726,0.09905635,0.30266428,-0.057530254,-0.3432769,0.039574,0.15517066,0.56617945,0.05385556,-0.22180676,-0.35948452,-0.3889938,-0.33670828,0.16002618,-0.026021583,0.34679803,-0.005711845,-0.17084548,0.55052716,-0.010633252,0.9699437,-1.0761832e-05,-0.34044975,0.024068782,0.42967457,-0.041775174,-0.11831327,-0.33417082,0.79252434,0.3929026,-0.048412256,0.04563672,-0.28856662,0.048241727,0.24857847,-0.21461761,-0.11972202,-0.004482414,-0.6898298,-0.26221874,0.21155156,0.17654754,0.26617193,-0.14190306,0.01192877,0.23883797,0.092538945,0.30180198,-0.37535217,-0.25770316,0.27461213,0.32369328,-0.04589514,0.060219355,-0.415173,0.31244183,-0.7586766,0.031413168,-0.19536723,0.12956013,-0.37691242,-0.25275347,0.3165667,0.19916129,0.39236853,-0.22741508,-0.46766552,-0.18108414,0.38913855,0.04368204,0.06363299,0.24416995,-0.24058867,-0.09747311,0.01213061,0.39978868,0.83725464,-0.18336515,0.080490746,0.39758644,-0.21228656,-0.59423935,0.34516525,-0.37548918,0.29784945,-0.059921093,-0.11722512,-0.52591145,0.23729955,0.36431247,0.19269957,-0.021165026,-0.5516182,-0.11715065,0.093615256,-0.29427448,-0.19001083,-0.28257307,-0.044581745,0.5338606,-0.2914486,-0.3597115,0.04214495,0.40629363,-0.05233625,-0.5823855,0.11421263,-0.4113638,0.13376608,0.0018920989,-0.3942671,-0.22562614,-0.08130572,-0.46506143,0.028140953,0.037338562,-0.24961615,-0.037817024,-0.42073202,0.123602375,0.8580972,-0.1304452,0.4747231,-0.29785803,-0.43978497,-0.82441574,-0.35598034,0.37485728,0.12980261,-0.019366086,-0.5196173,0.113394186,-0.23570131,-0.17611265,-0.13418071,-0.34904712,0.4461332,0.18379316,0.1774529,-0.092186265,-0.6424596,0.24411607,0.10898728,-0.10728351,-0.24004023,0.30108953,-0.047236588,0.93729466,0.04189522,-0.03890991,0.107316926,-0.480769,0.07363061,-0.22344136,-0.14295618,-0.46089897,0.036364406 +56,0.28685078,-0.39526346,-0.3884238,-0.13334154,-0.2920922,-0.016077522,-0.21555033,0.2888182,0.07395701,-0.27343404,-0.013020675,-0.07572562,-0.025001016,0.5754737,-0.27342337,-0.46021926,-0.038000073,0.075700834,-0.5485213,0.59300894,-0.42708954,0.2692341,0.1548992,0.26164004,0.14944357,0.26413092,0.33917528,-0.04324373,0.09618592,-0.12056052,-0.18215632,0.035038438,-0.62032473,0.14973022,-0.15476957,-0.21282345,0.11203965,-0.38448557,-0.42189714,-0.82266575,0.30424505,-0.9267262,0.4952931,-0.102638245,-0.35296863,0.2596148,0.26789948,0.31631917,-0.2599631,-0.11750293,0.014494141,0.027123522,-0.04611716,-0.023816643,-0.023984171,-0.58006024,-0.61070687,-0.017914172,-0.6769462,-0.2383845,-0.19893813,0.2252636,-0.41778275,0.1544021,-0.055902053,0.24424869,-0.64707893,-0.1180099,0.11117969,-0.05453641,0.2763476,-0.50153285,0.0618174,-0.14769588,0.068764605,0.07332284,-0.15541026,0.4341265,0.25775024,0.46035516,0.019449595,-0.19555968,-0.27275786,-0.13615172,0.15009555,0.5420085,-0.05495241,-0.39198554,-0.18945843,0.13918869,0.34058988,0.2444312,0.004559857,-0.3464061,-0.041457474,0.047161944,-0.2544471,0.2896752,0.4965285,-0.48290572,-0.22030528,0.41825417,0.49385053,0.08735586,-0.11501883,0.106023826,0.07998412,-0.4302127,-0.119811945,0.051809255,-0.30281603,0.53741175,-0.122085854,0.23996234,0.5889692,-0.17425938,0.11855357,-0.13109542,-0.07303621,-0.22417308,-0.12899365,-0.21555932,0.26694232,-0.50755775,0.09657257,-0.26346523,0.7604753,0.1558222,-0.74675524,0.4398659,-0.5415732,0.1784942,-0.2051906,0.546469,0.72092557,0.5114429,0.4443897,0.68080926,-0.39878267,0.19049333,-0.16929144,-0.4574421,0.32360396,-0.32329997,-0.118592106,-0.5063041,0.034544658,-0.03067699,-0.2018808,-0.13129959,0.60991204,-0.5155413,-0.09968939,0.15990658,0.7528218,-0.27154383,0.0006998221,0.6104146,0.9428444,0.9080203,0.08151637,1.054066,0.33405793,-0.097993694,0.321408,-0.19890901,-0.79377186,0.17247804,0.51246566,0.26943526,0.32051474,0.048937462,-0.048038714,0.42923006,-0.44384277,0.026062457,-0.26510054,0.32930642,0.014989758,-0.005512659,-0.58669126,-0.23664941,-0.029214382,0.080393694,0.0581606,0.41211674,-0.20616178,0.34339613,0.15366767,1.8499669,-0.10160119,0.1217514,0.12332594,0.5776695,0.32161513,-0.16875727,-0.13378982,0.3452048,0.34480536,0.13807537,-0.6971147,0.050093032,-0.28313118,-0.5105618,-0.1405323,-0.3508396,0.025782831,-0.08895135,-0.4125993,-0.1548408,0.08503838,-0.28395668,0.4092209,-2.6546204,-0.3184829,-0.20827007,0.32272086,-0.40317944,-0.1639965,0.045828227,-0.4151086,0.406606,0.51252675,0.43864766,-0.8073827,0.34279194,0.50940114,-0.5365847,0.051703777,-0.53320175,-0.098570354,-0.16635966,0.47846496,0.024818812,-0.13146874,-0.06394937,0.28182966,0.45015904,-0.034615286,0.19299498,0.22091092,0.36052355,0.105323076,0.46492395,-0.13395959,0.35158223,-0.2237517,-0.15350062,0.27886146,-0.17802261,0.28207767,-0.18343358,0.29198134,0.3867923,-0.57090074,-0.978488,-0.67563576,-0.25394443,1.0351756,-0.46657073,-0.454099,0.40331328,-0.20141464,-0.15979157,-0.1176807,0.44902474,-0.10255333,0.05424736,-0.7752069,0.12695919,-0.09633205,0.21007721,0.069755554,-0.035744432,-0.31966373,0.69691354,-0.07354767,0.46569294,0.24919319,0.24132136,-0.29079637,-0.54145217,0.08437606,0.63817734,0.52314645,0.015373109,-0.25223437,-0.26015943,-0.2658912,-0.20373774,-0.04063557,0.306787,0.84362376,0.01497995,0.018475449,0.18765728,-0.18980853,-0.014951827,-0.16476244,-0.29297596,0.17154182,0.12087433,0.52936035,0.67048776,-0.156275,0.37372816,-0.116994865,0.36735472,-0.04205131,-0.5673252,0.37271053,0.8525204,-0.1688555,-0.099284045,0.6385587,0.5669573,-0.24064086,0.49888936,-0.84774095,-0.27998784,0.43145695,-0.12950322,-0.48044616,0.19430058,-0.31694666,0.22252879,-0.92792267,0.27675733,-0.16097178,-0.26341453,-0.46529517,-0.10093747,-3.4912784,0.18535589,-0.11306999,-0.2814844,-0.04918806,-0.088700935,0.38048273,-0.63495815,-0.56367475,0.21355596,0.15819235,0.6302063,0.043762937,0.11611349,-0.23569621,-0.25529677,-0.31383467,0.15625991,0.12420229,0.26745415,-0.036270738,-0.56191766,-0.10072328,-0.23344631,-0.42898288,0.12546325,-0.52711165,-0.5808135,-0.32310277,-0.5869304,-0.2959462,0.6186711,0.033010434,-0.045725662,-0.24610005,-0.08565232,-0.12593165,0.21880178,0.24281749,0.11609624,0.0560608,-0.06354213,0.071324095,-0.3459617,0.31504026,-0.028787991,0.31165588,0.29824325,-0.012534376,0.13482748,0.7129212,0.48818392,-0.2506997,0.74494284,0.5456689,-0.2206003,0.27343407,-0.16193445,-0.36564952,-0.5118978,-0.3896,-0.039646868,-0.35569265,-0.42682812,-0.1388978,-0.37193742,-0.68068874,0.63045406,0.013482833,0.3207447,-0.046267945,0.07680619,0.46621564,-0.27224132,-0.088713855,-0.011978944,-0.22091784,-0.6267044,-0.27337354,-0.73059684,-0.57172763,0.17470242,1.0498703,-0.1295672,-0.18791252,-0.025361124,-0.10999731,-0.0328033,-0.13827609,0.096112415,0.3180106,0.25166065,-0.10503641,-0.69643515,0.62985414,-0.025956415,-0.02187888,-0.48866695,0.1737428,0.5480467,-0.636568,0.2883106,0.30134133,0.13545182,-0.07491554,-0.68375,-0.11829373,0.12432664,-0.23469567,0.51617134,0.24872802,-0.95299035,0.51593024,0.34273925,-0.53826827,-0.7240775,0.42968494,-0.05171144,-0.16540521,-0.14437583,0.2583994,0.13240282,0.15217055,-0.32961908,0.2094519,-0.5438154,0.23448168,0.27255976,-0.027556412,0.5245819,-0.29299116,-0.1590107,-0.72001475,-0.047945023,-0.40164483,-0.19582206,0.30609563,-0.063722864,0.018919945,0.13724288,-0.063645825,0.44005686,-0.34259567,0.038769018,0.06830276,-0.27015477,0.4159211,0.52609646,0.48640183,-0.30464202,0.57760465,0.08526566,-0.20128901,-0.29550454,-0.08016833,0.3919966,0.07047716,0.27122292,0.026191195,-0.10724185,0.37692702,1.0008615,0.17564948,0.41472498,0.15108043,-0.11773865,0.32444426,0.14866288,0.016513716,0.13206305,-0.4646107,-0.016576346,-0.07417485,0.13222554,0.525068,0.16018753,0.27026495,-0.11855043,-0.26401392,0.10951423,0.12613653,0.020906942,-1.1664472,0.1804743,0.18793103,0.65525234,0.59061855,0.11358977,0.006538429,0.83344215,-0.27395627,0.11484539,0.38301215,0.094877526,-0.6250298,0.63010585,-0.7465584,0.4589633,-0.14689855,0.023128737,0.0941288,0.113615476,0.42036095,0.7609429,0.0151892165,-0.0028937638,0.030465994,-0.23144425,0.16120085,-0.29184785,0.046270195,-0.45857874,-0.32449514,0.5043977,0.455793,0.32788506,0.07693054,-0.083026804,0.0209934,-0.12589274,0.20914207,-0.024995657,-0.0040774546,-0.09517152,-0.52308387,-0.31944352,0.5882606,0.17459212,0.2520987,-0.053495463,-0.1095174,0.20577969,-0.28303015,-0.3224811,0.05607847,-0.6503738,0.0016536037,-0.19897062,-0.35863537,0.5694193,-0.24723713,0.16426389,0.037889365,-0.027950244,-0.38861644,0.09624427,0.20916262,0.7753511,0.020342572,-0.08492286,-0.3018845,0.0011021435,0.09590803,-0.24243544,-0.015693339,-0.28393546,-0.005023265,-0.6898842,0.5141593,-0.10540943,-0.40920302,0.11911438,-0.17486435,0.063324496,0.5293434,-0.14261991,-0.3203288,-0.250426,-0.14034662,-0.32637468,-0.3121025,-0.17158209,0.23382123,0.1554799,-0.02628049,0.008874027,-0.12880136,-0.011911013,0.6243891,-0.060487114,0.33530417,0.24630694,0.023812912,-0.30465692,-0.06705804,0.2509065,0.52017015,-0.079210505,0.06106478,-0.23696072,-0.36209235,-0.34070867,0.010515611,-0.14565489,0.42264965,0.08912357,-0.3199169,0.8039152,0.078197524,1.2191144,-0.048740033,-0.37029594,0.09999132,0.52136177,0.053571437,-0.06536689,-0.3053056,0.7561128,0.68498445,-0.06701362,-0.26601306,-0.51713276,-0.24359147,0.3019916,-0.38821086,-0.032345723,0.030394332,-0.6501621,-0.19546476,0.28162205,0.32360083,0.051376175,-0.07420287,0.0694808,0.04855535,0.076646335,0.46672902,-0.4206517,-0.11268742,0.48962066,0.24845514,0.10235052,0.048712384,-0.4058539,0.38857687,-0.44969097,0.174824,-0.4242926,0.187198,-0.15109585,-0.35551974,0.16585231,-0.05306218,0.43677706,-0.25671566,-0.3856558,-0.17872804,0.6739511,0.17703448,0.10687075,0.6908839,-0.31991962,0.22656567,-0.013436405,0.49803412,1.1111194,-0.3833383,-0.07578133,0.1425843,-0.42627907,-0.81727946,0.503292,-0.35988885,0.22410098,0.044869732,-0.2520384,-0.55735993,0.25842634,0.22900857,0.014856379,-0.11076798,-0.53786224,-0.18738781,0.30029956,-0.2517656,-0.15557891,-0.39814332,0.19011761,0.63587976,-0.274301,-0.31387547,0.054156985,0.343366,-0.15420492,-0.64517707,-0.12041115,-0.17874524,0.2816384,0.1019234,-0.33786604,0.09193317,0.20281693,-0.44610664,0.018812204,0.2060914,-0.29552326,0.22040603,-0.37279287,0.13145958,0.95710456,-0.24979632,-0.22268884,-0.740071,-0.56256795,-1.0108356,-0.26125237,0.49522337,0.24445473,0.10173962,-0.62003064,0.15377998,-0.10439651,0.08725599,0.015887456,-0.49153316,0.42827034,0.08592234,0.42338556,-0.00069210527,-0.67048967,0.1357885,0.14663094,0.008636163,-0.4812908,0.64028347,-0.20690452,0.9391332,0.15032583,0.09135569,0.060129058,-0.4806911,0.03055059,-0.29884973,-0.3328349,-0.7311766,0.11447498 +57,0.53826106,-0.16229486,-0.44299486,-0.13380139,-0.039360046,0.09170842,-0.021720542,0.6687795,0.1994401,-0.42686436,0.0372059,-0.1457772,0.15574683,0.4151172,-0.13791075,-0.57575226,-0.028591802,0.2976312,-0.3124828,0.5876909,-0.32022455,0.22031571,-0.11996497,0.4142445,0.062182277,0.31686953,0.18598737,-0.10413228,-0.26242024,-0.03619904,-0.15311292,0.41011253,-0.51594055,0.11288343,-0.028763238,-0.30299208,0.040028967,-0.42735597,-0.38894764,-0.60099983,0.24290681,-0.69619876,0.50614506,0.14691155,-0.25751367,0.27898708,0.116603956,0.22782029,-0.3324391,-0.10212563,0.097637124,0.049257364,0.066749096,-0.30647653,-0.18590789,-0.59124863,-0.4934926,0.12154712,-0.4727398,-0.2143242,-0.13196091,0.16648695,-0.24247949,-0.15763591,-0.17054534,0.5367888,-0.44154212,0.115488805,0.1671395,-0.07325522,0.20981537,-0.46862406,-0.2611527,-0.05498078,0.107237354,-0.13422501,-0.12822208,0.2265977,0.34177002,0.48203906,-0.092112675,-0.115184546,-0.43674642,0.021037051,-0.06546558,0.57549155,-0.37670293,-0.86939234,-0.11042543,0.063400015,-0.11080898,-0.007960805,0.22822316,-0.25857583,0.03714632,0.033214353,-0.34465483,0.39507356,0.3742812,-0.5641333,-0.23558703,0.35566306,0.34349522,0.003255857,-0.1895957,-0.21158536,0.008586193,-0.43260378,-0.15886416,0.11895062,-0.1959103,0.6431337,-0.11276303,0.17234333,0.6196566,-0.047279116,-0.037474196,0.025532112,0.07730805,-0.03474966,-0.38199133,-0.1352786,0.09504773,-0.30002698,-0.010822756,-0.16047062,0.89929676,0.20728502,-0.721346,0.46527547,-0.5294064,0.06419458,-0.08463181,0.3552474,0.423337,0.3977945,0.2863793,0.58698756,-0.4425459,0.051335126,-0.07377023,-0.44802,0.007969486,-0.024716794,-0.10725101,-0.5455423,0.179258,0.08773584,-0.031324305,0.084626846,0.348975,-0.61101234,-0.13178772,0.32793546,1.1005471,-0.28806612,-0.3028012,0.5626935,1.1147071,0.8239664,-0.1420153,1.1846448,0.28389573,-0.3128017,0.36536473,-0.45826387,-0.57407045,0.23424092,0.3556061,-0.31263226,0.36616522,0.0786206,-0.16311683,0.34960318,-0.082942486,0.07497491,-0.25622234,0.14903913,0.14680359,-0.08729565,-0.4550206,-0.2898695,-0.09026841,-0.24651626,0.25048926,0.24746297,-0.22747906,0.26798487,-0.14397182,1.7710094,-0.064613454,0.13554583,0.044340663,0.63520396,0.2561097,0.059696633,-0.0408448,0.49106088,0.2632694,0.18479429,-0.38165566,0.26289195,-0.27878425,-0.6694212,-0.11133088,-0.3617142,-0.028276533,-0.012290478,-0.5761543,-0.014040304,0.012752525,-0.08059852,0.35276222,-2.8665488,-0.23864639,-0.07294535,0.19619036,-0.40379348,-0.3094695,-0.082214706,-0.3456919,0.36904874,0.3771827,0.4972904,-0.64642185,0.438386,0.16664043,-0.31071982,-0.1415188,-0.5054221,-0.050691694,-0.11610899,0.4610019,-0.16335699,-0.041614704,0.19561411,0.19427085,0.543164,-0.09993554,0.105817795,0.095952354,0.33084133,0.15122904,0.25541246,-0.032753352,0.6769351,-0.2987104,-0.1604707,0.23412015,-0.3979779,0.27404323,0.12564369,0.14487411,0.2843482,-0.45877895,-0.95238894,-0.57819134,0.028430479,0.9413501,-0.21638942,-0.32868162,0.14384829,-0.24306364,-0.22188422,-0.01357543,0.3376623,0.052139856,-0.031330258,-0.655327,0.2784099,-0.019063102,0.14865646,0.08177705,0.08913995,-0.2941111,0.6594677,0.0039409995,0.5115772,0.28269592,0.19150282,-0.39482477,-0.44298223,0.00022207627,0.84858906,0.16615786,0.1514715,-0.10049057,-0.20001337,-0.28127146,0.0006471361,0.060132932,0.53547174,0.5926114,0.032740317,0.04679845,0.28599674,-0.045336958,0.04709288,-0.08580637,-0.34133384,-0.064065464,0.039679,0.5490316,0.42717883,-0.35992345,0.66788304,-0.2498083,0.3071858,-0.22920908,-0.33552286,0.5779355,1.0458187,-0.30819744,-0.27258652,0.62997305,0.5494962,-0.53278255,0.36305788,-0.5504285,-0.24291226,0.43408543,-0.21028712,-0.26832062,0.30706263,-0.23443627,0.12072061,-0.99438477,0.3153196,-0.20856984,-0.30512708,-0.41879773,-0.155686,-4.1626472,0.28147462,-0.27964664,-0.1656224,-0.06050133,0.014318789,0.16122337,-0.6765494,-0.38573098,0.1463512,0.12783338,0.48512372,-0.05533899,0.22085162,-0.20568216,-0.13637188,-0.17781189,0.23209003,0.048371248,0.30470213,-0.07631808,-0.5316348,-0.023513641,-0.22345352,-0.46651602,0.16081902,-0.8402348,-0.47361544,-0.086877,-0.75334793,-0.31984234,0.6647144,-0.4041408,-0.009857767,-0.28432631,0.08374966,-0.24005437,0.34223557,-0.032791425,0.15564132,-0.011058484,-0.14013104,0.071289934,-0.3506158,0.14990981,0.05917474,0.4492274,0.3372531,-0.08738656,0.16077633,0.6653968,0.6031253,0.0769143,0.7131643,0.50863445,-0.1804765,0.4267118,-0.40062004,-0.09692466,-0.64131916,-0.54401577,-0.13463022,-0.39289427,-0.5636088,-0.0133857895,-0.36122745,-0.5912879,0.57140625,-0.12631242,0.1010737,0.04955691,0.43235847,0.60058916,-0.31635627,0.061648954,-0.0651559,-0.17336147,-0.5116312,-0.29091278,-0.5091595,-0.32635072,0.2072055,0.6898447,-0.2137448,-0.045784675,-0.07075592,-0.16348349,-0.19343266,0.03207463,0.12633766,0.24551591,0.34271187,-0.26480985,-0.6459689,0.47234413,-0.26376668,-0.1556393,-0.35032108,0.2291372,0.42414734,-0.7459196,0.7693793,0.37062043,0.26458177,0.011867732,-0.5187251,-0.34630558,0.114029884,0.0050160247,0.33668074,0.16349398,-0.87468284,0.44685885,0.39884633,-0.29989132,-0.7173173,0.49132654,-0.03637158,-0.42830333,-0.24981365,0.32686037,0.13529202,-0.009554123,-0.27071598,0.10189778,-0.58279455,0.116989054,0.2315198,0.0029488946,0.38294873,-0.17456202,-0.0166412,-0.7269906,0.010477328,-0.50950557,-0.31958678,0.32306924,0.1013862,0.14242612,0.13388352,-0.046675555,0.2270156,-0.34192207,0.08206712,0.12951547,-0.19226384,0.3496161,0.3470698,0.41057143,-0.5221925,0.46508688,-0.08896489,-0.025570223,-0.023356212,0.11708241,0.54040605,0.2117215,0.43324247,-0.040202804,-0.23243895,0.40435317,0.7210656,0.1381743,0.5969947,0.07182713,-0.18706878,0.29098913,0.018931093,-0.010181665,0.19408603,-0.4315669,-0.024257952,-0.07855882,0.23750813,0.41026095,0.071924664,0.32513094,-0.081077404,-0.25338393,0.053733937,0.281706,0.101646826,-1.0611284,0.45074135,0.2307402,0.72012967,0.4043765,0.065344036,-0.18139629,0.66822094,-0.18934114,0.12788093,0.2884443,-0.088743314,-0.5892033,0.6307197,-0.59393215,0.43752974,-0.22063637,-0.057885904,0.08240259,-0.02295058,0.3162085,0.9115366,-0.1518967,0.03129315,0.10284663,-0.3713306,0.019908974,-0.28857514,0.22554104,-0.52341956,-0.19149768,0.5955872,0.4729742,0.20055851,-0.23856115,-0.017307717,0.16405477,-0.08560356,0.048372626,0.07682574,0.21954224,0.048192296,-0.8216836,-0.27214542,0.5998803,-0.058964986,0.18075085,0.032018244,-0.31155485,0.3788496,-0.2494674,-0.17590325,0.008608692,-0.56477034,0.06865912,-0.19489464,-0.4850297,0.62014675,-0.14810184,0.15106547,0.10207977,0.12451547,-0.43703055,0.4541304,0.07265266,0.6103058,-0.17397359,-0.17454407,-0.5569069,0.030337675,0.1381379,-0.14672148,-0.12121594,-0.43441075,0.020744452,-0.4595594,0.3463555,0.15035494,-0.28681654,-0.14232334,-0.026791304,0.07816708,0.46101794,-0.08982678,-0.15846704,-0.16447286,-0.07601833,-0.25169006,-0.054523267,0.008493125,0.35933942,0.18768771,-0.1109668,-0.095566206,-0.09810121,-0.049513042,0.45511302,0.017243955,0.3512899,0.4248752,0.26657787,-0.128662,-0.09939428,0.2384126,0.4712483,-0.16023387,0.007409739,-0.18355073,-0.27639443,-0.33759,-0.047554296,-0.15347996,0.24593799,0.17991182,-0.3359371,0.8723911,-0.03329412,1.3634478,0.09385097,-0.35861287,0.023400128,0.5260725,0.00910856,0.13003628,-0.48175964,1.062054,0.68337107,0.084755346,-0.19657345,-0.3335341,-0.061956055,0.14636347,-0.2154728,-0.295058,0.012222588,-0.6299382,-0.2848944,0.1929722,0.28185,0.36769983,0.07107169,0.15375854,0.20619342,0.116223395,0.25946602,-0.5109638,-0.12042075,0.24653581,0.50715363,0.0031921715,0.171983,-0.43128893,0.40759325,-0.5557187,0.21932866,-0.39753363,0.14376473,-0.26816365,-0.38254404,0.17287871,-0.109169595,0.41946086,-0.25266644,-0.26905653,-0.13907441,0.46018273,0.12830962,0.12929179,0.67953455,-0.15484548,0.0456081,0.06447489,0.52026004,1.0579526,-0.23700018,-0.20814411,0.3815299,-0.21082595,-0.91863805,0.28253725,-0.13711974,0.24043886,-0.056428727,-0.15737577,-0.62372386,0.37663108,0.25330514,-0.113720424,-0.045557052,-0.48002747,-0.14242008,0.30223423,-0.29943088,-0.28349826,-0.23337685,0.27551928,0.74509156,-0.32510883,-0.40164304,0.19048353,0.24100181,-0.19760053,-0.6375025,-0.061584532,-0.47520348,0.36791387,0.22565822,-0.3785159,-0.13997674,-0.034081466,-0.31062275,0.27672163,0.2501141,-0.33247837,0.12516959,-0.3178306,-0.20653202,0.93716687,-0.04873637,0.14267787,-0.61846226,-0.47606158,-0.9360204,-0.55813414,0.48562402,-0.062360857,0.0067726746,-0.6062005,0.014106964,-0.010818364,-0.3641465,-0.17395915,-0.38286418,0.35819682,0.044417698,0.450134,0.046637483,-0.7793315,0.05666796,0.29855147,-0.13263912,-0.6434011,0.42831066,-0.1597819,1.0571244,-0.043774094,0.11855266,0.49581167,-0.35470057,-0.2960365,-0.44102082,-0.081583224,-0.6447554,0.034503765 +58,0.3319201,-0.084333345,-0.51722586,-0.20061357,-0.19827951,0.10081207,-0.111596435,0.43551782,0.18622139,-0.30291545,-0.11629756,-0.18794124,0.05876129,0.18500474,-0.09675113,-0.5308502,-0.0021826066,0.108292505,-0.5768009,0.6082442,-0.32827115,0.09820783,-0.17230338,0.26348096,0.2585171,0.36509213,-0.060187705,-0.13341498,-0.10450625,-0.037248686,-0.15694115,0.4517741,-0.31503433,0.07824425,-0.042970583,-0.050926395,-0.099283755,-0.4472391,-0.4017997,-0.7096972,0.36345166,-0.79112816,0.30100542,0.029435877,-0.24419183,0.27802116,0.21065341,0.26209727,-0.3161432,-0.2545226,0.14090285,-0.12313537,-0.03712741,-0.111249626,-0.12197538,-0.34687114,-0.45966247,-0.19002171,-0.3197644,-0.31132132,-0.39361033,0.06698377,-0.31575572,-0.015142176,-0.082099624,0.6166475,-0.53378844,0.1793919,0.21838138,-0.21631175,0.14588691,-0.65025675,-0.11921859,-0.093379825,0.35466364,-0.13832693,-0.16739787,0.31578407,0.3734217,0.2134436,-0.10039947,-0.115256146,-0.3392728,-0.21418369,0.2692501,0.40788054,-0.094993606,-0.53931385,0.018881574,0.015083078,-0.14548208,0.21618867,0.15541397,-0.27455544,-0.20262271,0.14891183,-0.12541175,0.41226923,0.42406273,-0.1508036,-0.124438286,0.32384333,0.51637775,0.36677974,-0.28751528,-0.10562923,-0.002550695,-0.44953936,-0.16383079,0.0011122674,-0.25226405,0.51348233,-0.13873383,0.21883705,0.7628973,-0.13232294,-0.12308088,-0.09728753,0.0046999827,-0.14125592,-0.24520683,-0.23341036,0.19028176,-0.27118406,0.3395535,0.0041352306,0.61186683,0.151952,-0.5533211,0.36984035,-0.54547083,0.12602758,-0.12146485,0.38902795,0.5694994,0.35295004,0.46458232,0.62301755,-0.3288681,0.088876784,0.0026295763,-0.36487076,0.05394337,-0.11301147,-0.061327875,-0.49110302,0.08124172,-0.09614863,-0.20703092,0.115063265,0.24492213,-0.37653768,-0.05787513,0.11412987,0.811548,-0.30133936,-0.096628696,0.5613132,0.8350403,0.8970005,0.043743994,0.8954125,0.11034087,-0.27034318,0.35658193,-0.2613926,-0.7502372,0.3156535,0.35257694,0.03394112,0.13796115,0.080099,0.06360276,0.38637045,-0.3388351,0.04686454,-0.16044447,0.010645052,0.24669406,-0.20460081,-0.3981538,-0.17771201,-0.21515246,0.07614011,0.03600288,0.18558049,-0.09942102,0.38781086,0.041997466,1.8503178,0.09182634,0.008596348,0.145184,0.48620743,0.24990219,-0.160808,-0.14110988,0.5349294,0.28411627,0.24953258,-0.6031109,0.2279096,-0.21176024,-0.4272287,-0.14838026,-0.5284292,-0.16992041,0.13241653,-0.44311106,-0.10645516,-0.15682037,-0.23555881,0.38854653,-2.9558082,-0.13039681,-0.14676636,0.3228078,-0.22443259,-0.24792337,0.0059097502,-0.39080307,0.19062181,0.30228788,0.48361313,-0.60813344,0.31266403,0.43243843,-0.63603246,-0.05621271,-0.43284452,-0.19549324,0.033369794,0.34304014,-0.06975691,0.054221023,0.15272404,0.22749545,0.42240503,0.070372425,0.24255894,0.3578331,0.41305113,-0.01817034,0.5967386,-0.10081403,0.53696036,-0.15207809,-0.15688702,0.1650167,-0.2065846,0.35411417,-0.15881711,0.09794543,0.56602913,-0.32812318,-0.8512029,-0.5712175,-0.05276472,1.2073545,-0.4221973,-0.3202487,0.3642515,-0.6129147,-0.23667419,-0.22156666,0.46341693,-0.020940863,-0.08636944,-0.74801236,0.19270372,-0.091074124,0.11354279,0.06316269,-0.14675689,-0.34064728,0.72604203,0.01636151,0.6388916,0.333487,0.010728512,-0.20551041,-0.29690474,-0.06150013,0.5868618,0.26757544,0.08531886,-0.31954044,-0.25815406,-0.25162083,-0.056589734,0.14057882,0.6011607,0.37365657,0.011609905,0.2015422,0.24280445,-0.07735117,0.010737589,-0.20133951,-0.17846322,-0.04278758,-0.030584887,0.365762,0.5812315,-0.33330494,0.40125564,0.10595948,0.25577256,-0.031840056,-0.36438796,0.4277821,1.2433838,-0.18034911,-0.3545252,0.47523674,0.43891978,-0.2565259,0.30785295,-0.4321279,0.004775949,0.6652441,-0.26078433,-0.42978728,0.24295726,-0.27879634,0.10809533,-0.72624874,0.090811536,-0.1666399,-0.46807218,-0.5161291,-0.089845404,-3.2709496,0.1258218,-0.3300597,-0.3402591,-0.20006806,-0.18309112,0.06847334,-0.7265712,-0.60456854,0.22443703,0.05780834,0.7048745,-0.1215263,-0.025012314,-0.31059822,-0.32029587,-0.1586345,0.16235237,0.10551266,0.44077933,-0.079771526,-0.51764005,-0.1261664,0.07622272,-0.40491742,-0.017812986,-0.41812617,-0.32807755,-0.076897025,-0.51183385,-0.12705737,0.68286777,-0.19423789,0.027914153,-0.08487072,0.0017115772,-0.10628643,0.15044224,0.2331662,0.24160855,-0.016421173,-0.010853294,0.10554753,-0.23618782,0.3093522,0.0016690306,0.37316537,0.24271664,0.054767765,0.18775207,0.48650837,0.5470137,-0.14128757,0.8663789,0.58467436,-0.09422612,0.19622597,-0.27119446,-0.2957273,-0.5867762,-0.32709548,0.09873515,-0.37650007,-0.51874393,-0.19517267,-0.3114548,-0.6898525,0.40233007,-0.03777896,0.19457352,0.12809595,0.17452295,0.5460493,-0.20028518,0.040732868,0.014853958,-0.16032279,-0.627017,-0.118998125,-0.42736384,-0.39959055,0.17622873,0.7787998,-0.28613633,-0.036549717,0.046251513,-0.45150077,0.026143583,0.14885536,0.1156809,0.40749666,0.47461748,-0.17691353,-0.5282848,0.49585718,-0.15760939,-0.19690858,-0.59509116,0.19682796,0.50603676,-0.521643,0.72453,0.29827127,-0.060480088,-0.27954447,-0.5009107,-0.25485024,-0.025752857,-0.15989652,0.35475522,0.2503334,-0.64626765,0.25672278,0.18031828,-0.14892066,-0.64307845,0.6853354,-0.18749699,-0.38489458,0.021668926,0.2718634,0.02998523,-0.08925424,-0.18504481,0.22118719,-0.26232725,0.085370906,0.35279047,-0.053354464,0.09457709,-0.2123478,0.09716554,-0.71635705,0.07634679,-0.46481806,-0.15471703,0.4147257,0.05498883,0.23096637,-0.021566778,0.009671742,0.2968331,-0.2494392,0.16729495,-0.042515233,-0.22845818,0.31848124,0.37797922,0.4514372,-0.48719162,0.5236875,-0.02200143,-0.07003288,0.19487885,0.18108869,0.38264054,0.053299095,0.45304298,0.027633876,-0.24159485,0.2678041,0.92136437,0.30424812,0.48548386,0.04210716,-0.08420646,0.20564294,0.06168209,0.23418482,-0.08103243,-0.5883866,0.08394652,-0.21539569,0.10372904,0.4225326,0.16999692,0.1747731,-0.11421046,-0.43630925,0.0137153715,0.3340547,0.21299219,-1.0456034,0.34809375,0.28566614,0.89926744,0.32236746,0.09340258,-0.12820533,0.59261894,-0.21227275,0.13484731,0.3356262,0.032840792,-0.6371661,0.46717164,-0.7429657,0.5146971,0.11705913,-0.14148416,-0.00957093,-0.046043053,0.27367863,0.61730343,-0.21224089,-0.1428461,0.08311925,-0.38570243,0.26782542,-0.45079944,-0.1412267,-0.49493727,-0.28656375,0.51443756,0.577239,0.24980758,-0.09643941,0.0767741,0.07063158,-0.17218581,0.09954724,0.105653815,0.20307061,-0.028986234,-0.7573962,-0.19762771,0.40050563,-0.18633363,0.2668562,-0.066619635,-0.16998383,0.40441337,-0.16255826,-0.021371514,-0.059917875,-0.624267,0.11463082,-0.20561326,-0.6207672,0.54814327,-0.08070795,0.36890548,0.21089102,0.011295125,-0.28971878,0.52256465,-0.09546603,0.8432002,-0.11134346,-0.0032074228,-0.5701473,0.030997142,0.08478871,-0.106353834,-0.06763551,-0.40262175,0.12299303,-0.44377232,0.40828133,-0.009855546,-0.3963561,-0.15042934,-0.12336852,0.06408794,0.5856238,-0.2166131,-0.115297735,-0.26361528,-0.22476968,-0.28023607,-0.22959784,-0.105273664,0.28257984,0.16201879,0.1320863,-0.23545134,-0.102782294,-0.14897726,0.3821762,-0.12647456,0.49890015,0.33689722,0.014466637,-0.10684058,-0.30750176,0.3585323,0.50180274,-0.031843297,-0.10942343,-0.27883673,-0.4833396,-0.41861475,0.14933018,-0.06275398,0.50708216,0.26851892,-0.17662258,0.5817903,-0.2861558,0.87218595,0.022137789,-0.41866475,0.16613278,0.46445486,0.08955607,-0.092275575,-0.118487045,0.6761034,0.41715652,0.05071772,-0.1838371,-0.20647994,0.09547245,0.11208918,-0.11454423,-0.0250202,-0.019894699,-0.54607695,-0.005205363,0.15726633,0.17466795,0.40275037,-0.098142676,0.007785352,0.14171518,0.04144025,0.13379474,-0.43339238,-0.33323824,0.24425438,-0.060929883,0.0824271,0.04873975,-0.5475336,0.49442804,-0.28802562,-0.039227318,-0.24595457,0.27383173,-0.26700807,-0.09415564,0.20805612,-0.10716959,0.44481894,-0.26570728,-0.22412854,-0.36239797,0.44145203,0.17595327,0.09097792,0.46775234,-0.22683083,0.16357404,0.16577104,0.54996777,0.6813216,-0.2580794,-0.035906076,0.30851722,-0.44125122,-0.4804116,0.3486107,-0.36160412,0.19700642,0.094271734,0.047680058,-0.53378665,0.17340806,0.19432375,-0.08641373,0.020884782,-0.65250343,-0.32885897,0.21224806,-0.32651007,-0.13714372,-0.22369072,0.079131454,0.58873504,-0.31940624,-0.30201942,0.08698904,0.03634176,-0.03359635,-0.45538932,0.09639822,-0.26619303,0.3212243,0.009745982,-0.32044843,-0.10760427,0.08413405,-0.39352727,0.34554344,0.055038884,-0.36117473,0.03644766,-0.27435842,-0.09702596,1.0512474,-0.2596362,0.09912189,-0.3548438,-0.42656773,-0.7276373,-0.29512134,0.37183988,-0.038259372,0.06797439,-0.6091218,0.04128032,-0.05076912,-0.063688464,-0.20609972,-0.40463528,0.55002385,0.08838971,0.3635015,-0.08563553,-0.8289399,0.121857665,-0.031913053,-0.13416281,-0.58988184,0.48839322,-0.21980989,0.71025157,0.021652061,0.20776197,0.2112709,-0.29615584,-0.106713235,-0.2373597,-0.20589858,-0.50296783,-0.013520954 +59,0.38770667,-0.17467284,-0.36466056,-0.10973857,-0.257936,0.046727262,-0.118279405,0.32179412,-0.019640263,-0.5856597,-0.10341387,-0.186314,-0.051161338,0.26067787,-0.20974378,-0.47621268,-0.0056144614,0.13600668,-0.5679086,0.46819973,-0.43501815,0.30915436,0.02631747,0.28517833,0.1199913,0.2729126,0.28419024,-0.2293126,-0.13592836,-0.17453457,-0.23964642,0.28062412,-0.5447045,0.1769277,-0.13186775,-0.4661897,-0.09313785,-0.28566703,-0.3017635,-0.6103886,0.2610199,-0.9413199,0.4138316,-0.052959103,-0.21340695,0.45707375,0.07518433,0.20158498,-0.23794998,0.06471183,0.1633633,-0.13337547,-0.032996412,-0.19981034,-0.058012765,-0.3455599,-0.5329593,0.02892969,-0.40894222,-0.12670381,-0.44012558,0.13583097,-0.38439238,0.07155234,-0.029733606,0.32512486,-0.54320693,0.09119662,0.07639661,-0.018181378,0.1703065,-0.53178346,-0.12677865,-0.157243,0.27701727,-0.26010215,-0.13285205,0.3057338,0.22591524,0.44317073,0.02786278,-0.12955984,-0.4848166,-0.022032412,0.21691205,0.4627538,-0.11477466,-0.48834077,-0.07763241,-0.053838618,0.07012628,0.15259638,0.043185767,-0.19138244,-0.17973527,0.014445762,-0.2969819,0.3432396,0.464755,-0.38657883,-0.41573665,0.35088885,0.5315564,0.14079277,-0.11906523,0.069520615,-0.00023901476,-0.5258093,-0.11683462,0.16810973,-0.048698295,0.42664725,-0.19610366,0.28721878,0.6348247,-0.28109312,0.15000394,-0.06766057,-0.111346476,-0.11339712,-0.03659866,-0.12917021,0.107485496,-0.39450026,0.22768702,-0.20193294,0.8506429,0.1046418,-0.77129716,0.29189867,-0.44307575,0.15647332,-0.10395427,0.54773355,0.5940468,0.38757324,0.251615,0.67117196,-0.5083723,0.011796347,-0.070370294,-0.3578033,-0.037183158,-0.15250073,-0.08038235,-0.4933039,-0.027771497,0.07515376,0.08546788,-0.10225373,0.57528967,-0.50944704,-0.0039764643,0.10556404,0.7649081,-0.35767907,-0.1507681,0.8542191,0.9501487,1.0540407,0.06634775,1.0790372,0.2720812,-0.1896901,0.14719035,-0.30971155,-0.612372,0.26529336,0.30652383,0.47583458,0.08631527,0.17709391,-0.028710276,0.3207034,-0.48840916,0.068772286,-0.26753834,0.23691724,0.2091205,-0.05663437,-0.33372372,-0.27137533,0.02060676,-0.0034282326,0.049847268,0.28115088,-0.16201393,0.5543577,0.06090008,1.6842333,0.053905927,0.07999367,0.060623053,0.52150935,0.14639877,-0.053420193,0.07152822,0.15896021,0.38400322,0.03756455,-0.6356076,0.08924388,-0.21225674,-0.64362794,-0.13980278,-0.3249151,-0.26823625,0.033196885,-0.44231004,-0.19562855,0.018601365,-0.2627221,0.44557616,-2.7055323,-0.054267906,-0.05427613,0.41122997,-0.21151842,-0.27231616,-0.14863357,-0.4871755,0.53838116,0.36192656,0.4397246,-0.63136965,0.4183588,0.38082182,-0.40480897,-0.08858214,-0.7079691,-0.059250686,-0.020286,0.38352025,0.025634862,0.030794589,0.22822802,-0.05632581,0.5425039,-0.13217965,0.07458125,0.26939073,0.33917472,0.17336081,0.47921547,0.15978113,0.42153302,-0.33165747,-0.1738021,0.28712007,-0.29409352,0.32354453,-0.13525325,0.13695084,0.39229742,-0.49335188,-0.8858618,-0.7380028,-0.27484354,1.1300012,-0.09795877,-0.5178497,0.29721558,-0.15233812,-0.153099,-0.17571814,0.34486488,-0.19426626,-0.11480566,-0.80805993,-0.014323449,-0.051320706,0.15750284,-0.016349413,-0.009556774,-0.4752282,0.7532384,-0.15198472,0.43370068,0.3715291,0.3011534,-0.29995564,-0.5153362,0.0752117,0.78123075,0.31025124,0.12065478,-0.27786633,-0.3610077,-0.18607174,-0.19297172,0.1284752,0.45362607,0.610495,0.04864245,0.15545763,0.2769823,-0.058792952,-0.011590183,-0.23019654,-0.058415394,-0.20018728,-0.09094487,0.52011484,0.6316317,-0.12207505,0.46301273,-0.119351506,0.17082077,-0.18540548,-0.49389347,0.5561577,0.83767235,-0.17085738,-0.25950614,0.39196855,0.54778737,-0.18363555,0.29865333,-0.6300978,-0.33478925,0.48966655,-0.26481843,-0.47085467,0.10323114,-0.32269213,0.10965657,-0.7977278,0.36368647,-0.18643247,-0.58342093,-0.6871703,-0.25577018,-3.259529,0.023987412,-0.31374684,-0.25417018,0.023564536,-0.27652758,0.17305705,-0.5309339,-0.38402367,0.08325817,0.050021354,0.6633498,-0.0040908097,0.13987158,-0.2918956,-0.03940344,-0.35466197,0.112669155,0.14029923,0.37631854,0.030039867,-0.39729518,0.1614535,-0.15829378,-0.42727196,0.025641706,-0.4440642,-0.4805942,-0.15908685,-0.23458046,-0.40621606,0.65179926,-0.32190514,0.04386383,-0.24081166,-0.1461096,-0.13765262,0.4457305,0.22595392,0.08599326,-0.004676521,-0.0771711,-0.028989526,-0.3165387,0.23893422,0.011789187,0.20894319,0.54492354,-0.22942571,0.14130385,0.4230131,0.48975465,-0.076386675,0.7316662,0.48560145,-0.044234242,0.20380135,-0.26408392,-0.18073197,-0.64918226,-0.37426695,-0.0545639,-0.48547187,-0.58361727,-0.07819388,-0.32558337,-0.80505574,0.54186696,-0.063281216,0.116923064,-0.015626727,0.16998164,0.41483888,-0.036927395,-0.12564065,-0.13557999,-0.03554459,-0.5387475,-0.36771515,-0.69269717,-0.61510235,-0.030421695,1.0009196,-0.14208187,-0.1398577,-0.03140795,-0.25309202,-0.031509086,0.13067691,0.019624868,0.19856699,0.26415247,-0.07590936,-0.721806,0.66985667,-0.034697663,-0.16228475,-0.6562921,0.19011506,0.5416418,-0.63108885,0.33367315,0.38466543,0.029278401,0.035167854,-0.49309048,-0.19334488,-0.2745294,-0.2561911,0.3120526,0.07806769,-0.7435426,0.5082519,0.30047223,-0.21586418,-0.73458153,0.40044844,0.03647737,-0.27992696,0.2266409,0.13567121,0.20648041,0.017212663,-0.24109672,0.3000104,-0.5687655,0.3982579,0.23339829,-0.034204397,0.3785782,-0.2839312,-0.22480701,-0.53836304,-0.049215928,-0.4069783,-0.20860909,0.0866913,0.17566581,0.07491951,0.26114044,-0.016875684,0.3853569,-0.33660635,0.0647498,-0.03234084,-0.041811347,0.19327095,0.45162427,0.47507125,-0.45420474,0.6468984,0.016808415,0.01557157,-0.01547637,0.15498537,0.413863,0.1620706,0.36620057,0.05765698,-0.20042203,0.19809678,0.88356405,0.32460696,0.5325025,0.057168737,-0.3258528,0.4412733,0.1404212,0.29380804,0.011272267,-0.41234916,0.12552454,-0.25639826,0.15454724,0.3953563,0.050034616,0.32083148,-0.1271967,-0.07234049,-0.013256085,0.25209704,-0.12862161,-1.194033,0.3294768,0.2720505,0.7819906,0.56950074,-0.07877552,0.20885108,0.7523382,-0.33568904,0.09380349,0.22094783,0.046847396,-0.56744206,0.5392119,-0.79054433,0.48738256,-0.11577085,-0.046802703,-0.07239187,-0.00054207246,0.2542655,0.652605,-0.071154326,0.05004357,0.016257042,-0.4232982,0.13500647,-0.41400972,0.23941259,-0.42246592,-0.097385615,0.7323881,0.47940972,0.2310385,-0.07429824,-0.019171031,0.05599698,-0.123698264,0.10943165,0.091105126,0.21625344,-0.1499018,-0.6181147,-0.31321412,0.5201036,-0.17729633,0.20917384,0.15058888,-0.20651992,0.24718057,-0.10540571,-0.09150313,-0.023527227,-0.58428663,0.08985664,-0.20725296,-0.24535714,0.44486094,-0.20452811,0.4049326,0.2527541,-0.008624501,-0.2977456,0.16854094,0.11272624,0.5804374,0.06627846,-0.12743677,-0.42576578,0.07654328,0.3202883,-0.22946991,-0.02923565,-0.03952026,-0.059063017,-0.61159605,0.32321683,-0.19453688,-0.29581815,0.23743576,-0.08896984,-0.017009242,0.59933275,-0.023534672,-0.13362718,0.06914622,-0.078112446,-0.2124319,-0.056992058,-0.1407428,0.3050949,0.18780534,-0.08126152,0.008842975,-0.12704615,-0.007151119,0.44540805,-0.00034744342,0.40976092,0.1784912,0.08184651,-0.4712787,-0.18245652,0.04333461,0.5016629,0.03795872,0.04553135,-0.1918773,-0.457852,-0.35274085,0.1349384,-0.16842829,0.23095326,0.12429707,-0.39427534,0.62496454,-0.10911519,1.0291041,0.1964483,-0.31049022,0.31212413,0.45460021,0.1458872,0.108429626,-0.2679056,0.8566535,0.6163212,-0.07697377,-0.22864078,-0.19892809,-0.020748913,0.337894,-0.15934263,-0.24420443,0.068665154,-0.68690723,-0.2672511,0.18166032,0.15898667,0.09213582,-0.08649047,-0.057160676,0.20663957,0.06500676,0.39675325,-0.46103472,-0.18358491,0.40751123,0.22831532,0.050104015,0.13415937,-0.38186333,0.44052476,-0.42229065,0.042309705,-0.2441149,0.18238431,-0.1862999,-0.12202316,0.2774121,0.2452514,0.374443,-0.111753985,-0.37878513,-0.2824474,0.5590025,0.16388471,0.28175536,0.48839238,-0.17679438,0.075386606,-0.024158092,0.32087773,1.120285,-0.30192104,-0.08621569,0.37964574,-0.25171444,-0.5271262,0.473807,-0.25368285,0.13343982,-0.06331598,-0.25565115,-0.44304523,0.25169572,0.21321398,0.13152,0.19196707,-0.61637646,-0.25839314,0.31303388,-0.3404811,-0.24791946,-0.4212871,0.13730086,0.6145528,-0.3522144,-0.14186043,0.06438635,0.2852898,-0.24447638,-0.5420839,-0.0359989,-0.3531661,0.25297585,0.13022149,-0.3112063,-0.052503705,0.11850972,-0.35926333,0.083947055,0.16040659,-0.37149152,0.0596512,-0.34051606,0.067693755,0.9251279,-0.26318437,0.2480044,-0.70174146,-0.42562875,-0.9416148,-0.2606753,0.6060989,0.21442324,0.011534077,-0.6220862,-0.07539024,0.055042446,-0.13303,-0.111107096,-0.56535107,0.51317865,0.11940634,0.1655775,-0.034265127,-0.6768252,0.05517055,0.06654755,-0.17137368,-0.42232376,0.5793353,-0.048793532,0.78966194,0.08508768,0.10730336,0.23776884,-0.42859143,0.101578146,-0.25048333,-0.24261394,-0.67384034,-0.0048799873 +60,0.27361187,0.07652709,-0.43681973,-0.08373144,-0.19044696,0.14206845,-0.10496393,0.4744507,0.17770018,-0.26198262,-0.081922755,-0.1023629,-0.060882695,0.3443338,-0.13888666,-0.5163492,0.08043841,0.13767682,-0.43143952,0.5633589,-0.5383737,0.36223263,-0.032950357,0.34929377,0.14224969,0.19632751,0.18813589,-0.09134367,0.084990576,-0.19751851,-0.107944354,0.17910245,-0.46502241,-0.0028902625,0.009604126,-0.4976258,0.1789623,-0.19430408,-0.3407876,-0.6379487,0.36055982,-0.6509513,0.6031836,0.12378582,-0.21669227,0.25957912,0.18381779,0.4119551,-0.043406468,0.04484386,0.1765844,-0.020360358,-0.06588909,-0.13903628,-0.2787597,-0.5716218,-0.62988085,0.09025537,-0.42195162,-0.12758884,-0.2262172,0.14145745,-0.35687664,-0.024075601,0.028355975,0.2025533,-0.3754567,-0.043720685,0.17040454,0.1150107,0.3080161,-0.5540317,-0.10568447,-0.11702491,0.32631838,-0.35417125,-0.22390755,0.15154463,0.41393906,0.49784726,-0.08664489,-0.19542988,-0.28423178,-0.04171356,-0.12575437,0.5877641,-0.3003082,-0.36365634,-0.121572345,0.022672378,0.088917166,0.26411983,-0.012514701,-0.08700134,-0.09268956,0.26583245,-0.333617,0.41797116,0.3904338,-0.4861724,-0.37310806,0.44607082,0.54038835,0.042489987,-0.16148987,-0.048511505,-0.031030098,-0.5434403,-0.1938408,0.002299279,-0.26763037,0.34431908,-0.15015605,0.2479153,0.5670453,-0.13083385,0.06722844,0.19688496,0.004900827,-0.113790974,-0.14261119,-0.26412073,0.20506191,-0.5399615,0.09516496,-0.16088802,0.80449814,0.008099128,-0.8280779,0.23865542,-0.6305002,0.05362377,-0.21063416,0.5063578,0.7432234,0.15889949,0.22058089,0.6747736,-0.5488319,-0.023035843,-0.12996884,-0.32616237,0.24443896,-0.108256035,-0.105529666,-0.56200546,0.011440768,0.27825975,-0.03256215,0.20758893,0.24070168,-0.5726703,-0.014877161,0.17462033,0.8193134,-0.28271195,-0.24257818,0.53126717,1.0463245,0.9667224,-0.05762928,1.2276962,0.1612944,-0.18149057,0.29244554,-0.48711932,-0.6685723,0.2455945,0.4790849,-0.16985361,0.27445936,0.21485662,0.0737879,0.34273916,-0.42083246,-0.029655892,-0.108763255,0.22929096,0.059316628,-0.09470861,-0.3052483,-0.3227856,-0.09802867,-0.0073614097,0.19168244,0.3080693,-0.21610902,0.11604261,-0.033177283,1.6706023,-0.058417264,0.22062722,0.0706876,0.5409424,0.1563935,-0.13374831,-0.14207722,0.13564415,0.3477183,0.24137115,-0.60417026,0.10289339,-0.28573987,-0.3791688,-0.21656387,-0.28149712,0.012925322,0.1266269,-0.37494802,-0.08919418,-0.13352756,-0.33880588,0.47491267,-3.0379615,-0.20954145,-0.15972951,0.24754047,-0.24779262,-0.42013243,-0.15179889,-0.5576969,0.46376088,0.36950964,0.43133977,-0.6197717,0.47184724,0.23002599,-0.3988431,-0.1751052,-0.71966594,-0.07084263,-0.034933977,0.18290982,0.09007608,-0.04789905,-0.06871336,0.28733435,0.34418428,0.02515721,0.016214006,0.2081566,0.29215494,0.19638006,0.5283666,0.016988598,0.59994155,-0.12935045,-0.2712046,0.22743867,-0.28695884,0.27222088,-0.1862685,0.08557823,0.40209356,-0.47614628,-0.9386455,-0.74657476,-0.31607088,1.1534095,-0.076640084,-0.21486896,0.2118206,-0.32895133,-0.38398492,-0.20813963,0.50756365,-0.26298133,-0.24388586,-0.61559045,0.15153868,-0.1767803,0.18959118,-0.031599425,-0.10091071,-0.51227593,0.5099178,-0.049831137,0.32219312,0.29878938,0.11754947,-0.23622046,-0.3533511,-0.09441759,0.89803404,0.30918476,0.1035384,-0.1436355,-0.1952944,-0.56407785,0.09038174,0.23718467,0.4288079,0.6037496,-0.04688887,0.089528486,0.29198673,-0.031285204,0.020477941,-0.07891807,-0.3482591,-0.010119883,-0.09115135,0.65698874,0.48304904,-0.09553797,0.54721874,0.090666346,0.19730648,-0.38415292,-0.36665365,0.41559127,0.7707179,-0.1241529,-0.15598537,0.70854247,0.4554094,-0.16050074,0.40561235,-0.602631,-0.2863832,0.32028252,-0.0981576,-0.30433947,-0.028679065,-0.39258322,0.017677646,-0.818935,0.25044334,-0.14351498,-0.50225484,-0.4515393,-0.08711983,-3.4425778,0.28170583,-0.19507296,-0.062061347,-0.010617046,-0.04913984,0.39722288,-0.549539,-0.58952594,0.13154426,0.056508686,0.70620906,-0.06227322,0.050942514,-0.18190345,-0.29538217,-0.4358107,0.041214857,0.17152452,0.39739424,0.069699295,-0.4371376,0.059767384,-0.17020147,-0.33674595,0.11967463,-0.5054997,-0.4194052,-0.15966947,-0.49481326,-0.3703171,0.73166597,-0.4321294,0.03698272,-0.30961132,-0.046088163,-0.01946658,0.43161643,0.124365844,0.031182718,-0.002609991,-0.0067444304,-0.01958538,-0.3523016,0.26678365,0.038242705,0.2692114,0.3247891,-0.046947174,0.269055,0.5458241,0.50799835,0.029739857,0.8487163,0.5868052,-0.18891881,0.2077623,-0.2633056,-0.07779301,-0.372132,-0.27188206,-0.15580662,-0.37163687,-0.42619604,-0.041447576,-0.34758213,-0.686457,0.5111028,-0.053264506,0.12160281,0.014342042,0.31616557,0.40249392,-0.20619327,0.008112876,0.027340494,-0.17212123,-0.46002784,-0.26437828,-0.4395442,-0.43155143,0.15517212,1.110963,-0.28347257,0.15753204,0.095242426,-0.17250922,-0.025297165,0.09559857,0.020820687,0.13213935,0.32044137,-0.25259715,-0.7013756,0.35028282,-0.3642645,0.057580292,-0.76603496,0.089478455,0.4279411,-0.56603324,0.33953223,0.25918657,0.24370687,-0.03777537,-0.4984062,-0.16501859,0.08533262,-0.36165777,0.26401612,0.18687648,-0.9448922,0.4121392,0.27214125,-0.1443096,-0.6358528,0.55065304,0.012833716,-0.34973815,-0.119929224,0.2866651,0.34699982,0.200862,-0.084712155,0.23573923,-0.3382791,0.27875772,0.21355446,-0.04595333,0.4070325,-0.15180531,-0.08804544,-0.59315217,-0.10132827,-0.5305949,-0.22146806,0.14432631,0.20426154,0.1389818,0.3955267,0.09700297,0.32287982,-0.26575136,0.055227287,-0.012588675,-0.24175523,0.21566004,0.3785848,0.447217,-0.46736506,0.5163955,0.025122972,-0.18506697,-0.13265687,0.003021474,0.5532652,-0.13893655,0.37240264,0.01636021,-0.26725942,0.30609936,0.81471634,0.17203626,0.2250585,-0.027583223,-0.05588176,0.0545309,-0.018001989,-0.041630387,0.21819584,-0.6162172,-0.07929837,-0.09257663,0.26912814,0.51920134,0.05339273,0.14931801,-0.11155033,-0.35869595,0.011292806,-0.03165154,-0.03785654,-1.1730613,0.40528077,0.19387439,0.68498033,0.50169414,-0.068087734,0.055064306,0.49809998,-0.19858599,0.13195878,0.30551898,-0.06425026,-0.30779344,0.61192095,-0.6836395,0.5766386,0.043944355,-0.112352565,-0.034685157,-0.15014444,0.34546253,0.9954852,-0.29177308,0.13514747,-0.020788986,-0.22224663,0.102317914,-0.17370555,0.15628907,-0.7138658,-0.15949965,0.6059419,0.44035834,0.34536484,-0.098505735,-0.04573588,0.124469705,-0.061454196,0.014259655,-0.18160574,0.138237,-0.07134585,-0.6511638,-0.21553162,0.51457244,0.11752892,0.14067774,0.06303726,-0.16604008,0.29550764,-0.061243393,0.016060801,-0.06692147,-0.5924021,0.05719008,-0.15436926,-0.29768738,0.64255965,-0.36176616,0.3257701,0.15430239,0.11685967,-0.14728425,0.42918074,0.033799484,0.4928884,-0.10695052,-0.08443156,-0.36207587,0.18278979,0.11814572,-0.06761705,-0.07057386,-0.29115942,0.1711004,-0.65062934,0.35726598,-0.03612637,-0.3164401,-0.17489019,0.038951077,0.0973216,0.4594833,-0.046127282,-0.09999791,0.03218603,-0.2866053,-0.16907293,-0.043656595,-0.0895613,0.23552187,0.17939799,-0.19856946,-0.15467466,-0.17583726,-0.15810178,0.27343667,0.08438484,0.3467449,0.2473581,0.19292268,-0.16105655,-0.24914382,-0.026578499,0.38193706,-0.2926529,-0.25825173,-0.29291934,-0.3553005,-0.26800844,0.38536936,-0.036036305,0.43073907,0.040822607,-0.19682139,0.5066817,0.077609785,1.2508183,0.11331897,-0.20422468,-0.0632108,0.5656552,-0.049873468,-0.14591108,-0.4137495,0.809356,0.5658571,-0.1887705,-0.17482527,-0.29740465,-0.071991555,0.21545726,-0.13518482,-0.052903857,-0.023487972,-0.6533009,-0.291734,0.25373504,0.24248165,0.14377631,0.05364138,0.0924517,0.29341656,0.017610967,0.34471563,-0.35607323,-0.11350131,0.3488897,0.4264583,-0.015167301,0.2569783,-0.38047695,0.40386468,-0.43586248,-0.058790725,-0.2788015,0.20879115,-0.13185053,-0.35555568,0.3340473,0.07736276,0.3205592,-0.040096052,-0.4173752,-0.14659716,0.43317538,0.32827452,0.18149897,0.5183866,-0.22692226,-0.116936326,-0.14781946,0.447427,1.070039,-0.2101011,-0.12472784,0.41754803,-0.26458648,-0.53332806,0.26559573,-0.37098134,0.0722138,0.12252106,-0.21929179,-0.2323617,0.3040962,0.21076062,0.091334,0.08797184,-0.39983875,-0.1538389,-0.021373153,-0.15151507,-0.29107317,-0.29563954,0.24419387,0.8048913,-0.20614932,-0.2392982,0.080172315,0.46665022,-0.17894195,-0.53626186,0.031894356,-0.31112707,0.2515034,0.0696734,-0.30872032,-0.24082613,0.06468747,-0.43351558,0.0891875,0.30867255,-0.4430133,0.11423437,-0.33821866,-0.17327045,0.9124967,-0.15779932,0.12623176,-0.46284816,-0.28771293,-0.66844517,-0.38605136,0.25240946,0.30280426,-0.066114515,-0.3457861,-0.008601583,-0.0011392465,-0.19292647,0.0040486227,-0.19895664,0.39913946,-0.010841163,0.35311002,-0.00063089223,-0.86583513,-0.04733405,0.050239682,-0.21917978,-0.52301836,0.49733844,-0.07759131,0.7731938,0.16816221,0.1417742,0.27385646,-0.19505674,0.058343366,-0.23083869,-0.1588242,-1.0456493,0.023734607 +61,0.37557033,-0.2135964,-0.3732879,-0.041513562,-0.31169662,0.107008375,-0.15733142,0.40410605,0.21695091,-0.1588178,0.067710616,-0.26071808,0.016491735,0.44545308,-0.13581194,-0.49642292,-0.017470038,0.11059902,-0.5855616,0.5244207,-0.4150767,0.3461282,0.06509595,0.2686486,0.07827323,0.35625952,0.17103313,-0.1738704,-0.017967295,-0.09328982,-0.13945611,0.049150553,-0.53168243,0.18994491,-0.15435986,-0.22128677,0.12761812,-0.40469855,-0.5830422,-0.60406774,0.19856386,-0.71793693,0.5136686,0.064214796,-0.3488526,0.11302234,0.10445004,0.33154646,-0.27958456,0.057803813,0.21874245,0.085910335,0.10189188,-0.21779127,-0.21181574,-0.5224454,-0.5051592,0.05693915,-0.47852176,-0.35831052,-0.26457912,0.11279174,-0.35191888,-0.058103245,0.010786617,0.13747525,-0.49675387,0.013438066,0.19819777,-0.18109736,0.22639862,-0.5148138,0.07117624,-0.11407218,0.06810179,-0.13424876,-0.1970842,0.43829897,0.1493831,0.41755825,-0.07326209,-0.24302842,-0.09116761,-0.1665212,0.06376887,0.61708844,-0.20958687,-0.32073706,-0.10012167,0.11517797,0.2189085,0.14395823,0.009136768,-0.35864893,-0.18421431,-0.005123198,-0.11754228,0.18961151,0.53527826,-0.44448847,-0.24250145,0.33620635,0.42641562,0.23612125,-0.087688215,0.15692613,0.052165486,-0.44109097,-0.23626593,-0.033613794,-0.110499926,0.4751661,-0.06075756,0.2719621,0.7549618,-0.13637035,0.1023588,0.08484035,0.055999923,-0.13218635,-0.114780456,-0.16946128,0.13150303,-0.5267732,0.03182571,-0.04449602,0.76825535,0.22390018,-0.7881206,0.38634312,-0.48696482,0.16971461,-0.16553198,0.578319,0.69995654,0.3091793,0.14726028,0.6937498,-0.44047925,0.17285666,-0.08303892,-0.439398,0.35204214,-0.27354953,-0.15100147,-0.61702883,-0.02949036,0.23040935,-0.12446937,0.09315213,0.33678997,-0.5524261,-0.0063327234,0.13498238,0.9114918,-0.3043217,0.033764653,0.50466734,0.92311406,0.85350525,0.024846362,1.1212462,0.22799867,-0.22005746,0.2687545,-0.3004731,-0.766023,0.23996739,0.53799534,0.062076345,0.33636385,0.103664875,-0.12586696,0.27055177,-0.34284312,0.12686493,-0.2287721,0.21877345,-0.07954669,-0.11732507,-0.52554095,-0.28560045,-0.0821765,0.01826469,-0.089565404,0.29014003,-0.22619681,0.19745414,-0.056818493,1.8222587,0.0034228424,0.14016096,0.07819987,0.61652476,0.2679203,-0.12519571,-0.17046942,0.36364853,0.3256077,0.23250885,-0.5120898,0.06886309,-0.22423156,-0.50181365,-0.04272262,-0.32862714,-0.047961906,-0.08039301,-0.48876274,-0.14729498,0.05201125,-0.31593844,0.44412845,-2.8549845,-0.17363374,-0.05748868,0.25352466,-0.3382414,-0.2531339,-0.08756336,-0.3219894,0.27846605,0.4474456,0.49738273,-0.65076715,0.2150795,0.37544194,-0.46386567,-0.08002806,-0.5405253,-0.12772211,-0.0063905995,0.4479143,0.06478386,-0.046413638,-0.029797189,0.34930566,0.43465722,-0.043694057,0.09585786,0.16748291,0.27576897,0.13795567,0.2716758,0.0016682069,0.33727127,-0.15595356,-0.15570633,0.35875005,-0.22998644,0.27810678,0.10908993,0.1287058,0.29254398,-0.48604187,-0.8108785,-0.5367944,-0.2521597,1.0621936,-0.29730985,-0.32814223,0.3407325,-0.26849803,-0.23134737,-0.07888846,0.39754918,-0.15454279,0.110217534,-0.68013436,0.058890805,-0.046034522,0.18176799,0.07142995,-0.013450649,-0.27714416,0.5914477,-0.024868758,0.4076986,0.271318,0.057780758,-0.059904497,-0.34645244,0.1230354,0.8395378,0.42552254,0.15410942,-0.17983681,-0.17695138,-0.40252686,-0.15185724,0.07135644,0.40096915,0.8911899,-0.055840217,0.13742495,0.21859783,-0.106946446,-0.013041262,-0.06970975,-0.1890988,0.1121083,0.12096496,0.6041111,0.60362077,-0.22318234,0.44647518,-0.040628336,0.3481771,-0.12257694,-0.5899634,0.3736514,0.6897709,-0.080198035,-0.15359528,0.55205977,0.5909742,-0.30732745,0.4870202,-0.7494841,-0.33659998,0.4308076,-0.11059148,-0.4318302,0.37382972,-0.31568706,0.20897178,-0.88361,0.4541002,-0.04804219,-0.5229298,-0.3769077,-0.19194302,-3.206715,0.14976749,-0.20019145,-0.2027152,0.015679032,0.022690065,0.2756644,-0.5978182,-0.4308224,-0.062649295,0.07620303,0.6029625,-0.045575734,0.029637177,-0.15107034,-0.27528256,-0.38800544,0.093438216,0.029625837,0.31833592,-0.15375608,-0.48828572,-0.26351532,-0.28934386,-0.4176676,0.14294863,-0.70727146,-0.59864587,-0.23364411,-0.55601627,-0.09850582,0.7056097,-0.19868854,0.022054084,-0.21095704,-0.062196862,-0.09828078,0.26041257,0.38174045,0.019673228,0.03016566,0.028510321,-0.08043643,-0.37306756,0.27885154,0.10544314,0.49329337,0.39742532,-0.16937906,0.16670053,0.69070274,0.48209146,-0.238455,0.6621404,0.47010294,-0.20179044,0.36713532,-0.2508741,-0.21973367,-0.42235842,-0.4447922,-0.12840714,-0.38097742,-0.42890522,-0.10723033,-0.2598685,-0.68395925,0.52785873,-0.012579981,0.14503919,-0.039783493,0.06354611,0.4260926,-0.2172412,-0.13695082,-0.16409384,-0.18675347,-0.5216265,-0.28129885,-0.6675734,-0.54658335,0.32704675,1.1141158,-0.10889159,-0.039830673,0.04733016,-0.18787451,-0.15622555,-0.11296746,0.042508475,0.2321852,0.16892216,-0.11926762,-0.7452037,0.55065995,-0.03981127,-0.16025782,-0.49619693,0.074691966,0.583803,-0.62989336,0.30849412,0.20745015,0.25371683,0.07033278,-0.4401005,-0.20580424,0.05409984,-0.19703813,0.3762663,0.053163983,-0.71003395,0.3782338,0.3165829,-0.4679736,-0.50596005,0.52941656,-0.0373219,-0.26161784,-0.019405408,0.19570948,0.009809673,0.037946813,-0.17990296,0.33065143,-0.45623472,0.31721878,0.38644272,-0.013626901,0.43084186,-0.122948,-0.22219375,-0.57501763,0.027312227,-0.32663265,-0.40538797,0.24573027,0.15699151,-0.04826433,0.15239494,0.040588688,0.41390198,-0.25851253,0.0804142,-0.04159964,-0.31372565,0.5742391,0.37434572,0.599933,-0.3887609,0.5934571,-0.022907492,-0.03192932,-0.07143901,0.038250543,0.5007962,0.104208805,0.2230145,-0.08125693,-0.088181525,0.2974431,0.8480424,0.20831528,0.3780574,0.018668525,-0.108226135,0.18602315,0.14903836,0.0062239943,0.1613698,-0.47675118,0.07156692,-0.16308528,0.21824746,0.45581543,0.12797844,0.16573104,-0.09246082,-0.39768487,0.16830023,0.15236072,0.025694184,-1.2101874,0.27390102,0.3687705,0.5481983,0.5278442,0.03850937,0.016709214,0.7403246,-0.11714051,0.12712331,0.3004125,-0.10276301,-0.661684,0.5481752,-0.67539823,0.6253321,-0.06722266,-0.04685407,0.08154461,-0.025673095,0.45965356,0.74091756,-0.0910735,0.031869326,-0.026698468,-0.35565552,0.028903794,-0.39761466,0.17342891,-0.5469421,-0.33662874,0.57982534,0.43169373,0.16108608,0.00582968,0.009957645,-0.022662597,-0.14366254,0.39116108,-0.061713155,0.031175153,-0.12526281,-0.69025856,-0.32646745,0.57436043,0.015565348,0.09312453,-0.007546556,-0.09757121,0.25219184,-0.22953469,-0.033521175,-0.11364303,-0.5522897,0.17556486,-0.34361494,-0.3498033,0.5696805,-0.1599981,0.24692036,0.0943848,0.036567144,-0.285219,0.4359184,0.061441563,0.80481213,-0.058703262,-0.35855097,-0.24946244,0.14611825,0.09531123,-0.17303485,-0.1414826,-0.28057817,0.020948308,-0.67525035,0.37719414,-0.07714844,-0.40113556,0.16056685,-0.15709186,0.036709912,0.3876548,0.0364162,-0.29097444,-0.13939327,-0.04194224,-0.20973226,-0.1009484,-0.21566819,0.265986,0.22620104,-0.22692223,-0.057536583,-0.06183479,0.013895933,0.34358698,-0.113215655,0.37215316,0.24119194,0.13095562,-0.28009936,-0.027968628,0.22604793,0.42803898,0.06842181,0.25628737,-0.13516189,-0.27755147,-0.3769808,0.05350594,-0.22974648,0.3510879,0.21409747,-0.31365195,0.8222304,0.073492005,1.3035415,0.0076486627,-0.28752485,0.21792999,0.45949093,0.14081869,-0.019923735,-0.42661223,0.94206387,0.73819906,-0.037198577,-0.27164066,-0.33394396,-0.2262729,0.23680235,-0.24857181,-0.13716917,0.030592393,-0.6665659,-0.30612066,0.2238864,0.29796588,0.21061675,0.019243725,-0.039280057,0.09906553,-0.055337064,0.18648511,-0.42796558,-0.07090727,0.305863,0.1810856,-0.021916438,0.101368956,-0.5540146,0.45279422,-0.6773436,0.10769223,-0.26022956,0.12221162,-0.1329932,-0.42848533,0.191896,0.04571077,0.4703646,-0.33776695,-0.39757365,-0.12514548,0.539261,0.05934252,0.24299124,0.59174985,-0.3121223,0.08501988,-0.08333062,0.36414993,1.0570716,-0.30759144,-0.09230644,0.40784073,-0.36141053,-0.74107134,0.20625407,-0.32326302,0.235652,-0.119684376,-0.3265793,-0.4335082,0.22148976,0.2061327,-0.08132045,-0.12514123,-0.38439122,-0.09845674,0.16741033,-0.2026531,-0.3422135,-0.4490321,0.28759888,0.6700428,-0.29004878,-0.33872518,0.2114021,0.25974998,-0.23620272,-0.60973096,0.04151765,-0.23668191,0.20600182,0.0019112905,-0.30288723,0.019665726,0.0827549,-0.37286466,0.17452136,0.33911392,-0.4569719,0.098720625,-0.3746148,0.016023846,1.0159215,-0.14437841,-0.044267647,-0.80506516,-0.545407,-0.86702603,-0.4904322,0.5971111,0.22093193,0.04043488,-0.5064614,-0.010603666,-0.08641981,-0.014415939,-0.086151734,-0.37739494,0.4171006,0.066650435,0.31819013,-0.18008587,-0.8643821,0.17583853,0.033243444,-0.15254335,-0.670194,0.56550705,-0.113260955,0.7883692,0.17013595,0.043439202,0.33293766,-0.49787024,0.08237477,-0.25816032,-0.18947801,-0.6742688,0.20872869 +62,0.32703987,-0.13823153,-0.34958664,-0.033258352,-0.27933785,-0.0978233,-0.2450442,0.347019,0.3895091,-0.025768552,-0.10586138,-0.04692378,0.2064689,0.40211985,-0.09651001,-0.60063666,-0.15679109,0.025492078,-0.5402417,0.49235892,-0.50444025,0.09363401,-0.058636654,0.4491155,-0.0051582414,0.44744858,0.21589844,-0.08735704,0.010111332,-0.11634263,-0.02268267,0.27005672,-0.5962911,0.067243315,-0.21543495,-0.15938357,0.09262456,-0.5817067,-0.30191723,-0.67876565,0.06629375,-0.78726476,0.472802,0.04758572,-0.14365332,0.0959535,0.17118327,0.30180353,-0.32932568,-0.17001818,0.09999107,-0.078180574,-0.11284282,-0.401246,0.0012414881,-0.15812217,-0.4440512,-0.002953606,-0.44408682,-0.29489136,-0.23442249,0.106648445,-0.34470657,0.046162717,-0.06338643,0.4631699,-0.40467733,0.07739759,0.31692007,-0.2803857,0.31447938,-0.46427208,0.016447868,-0.015163532,0.47136286,0.034687746,-0.25659624,0.4253636,0.24342449,0.3397104,0.08726815,-0.21717532,-0.29354566,-0.17507443,0.26470467,0.5747279,-0.16214974,-0.3059772,-0.23773949,0.08105767,0.0020562324,0.28315732,-0.034371424,-0.1712247,-0.10074967,-0.108690895,-0.12729868,0.478301,0.536121,-0.19165279,-0.34863275,0.17233646,0.57012075,0.32715002,-0.20518291,-0.08799215,0.087576754,-0.6471714,-0.15400924,-0.18173279,-0.08057956,0.5589887,-0.15031429,0.15847513,0.7755761,-0.09451008,-0.12604031,0.024172226,-0.05261383,-0.052484255,-0.4479588,-0.05992427,0.15551719,-0.48786265,0.12425876,-0.16068229,0.5807481,0.1513706,-0.70416737,0.3823962,-0.5905015,0.14518353,-0.061346207,0.51852876,0.5981479,0.3112252,0.5843568,0.700465,-0.25755382,0.2709796,0.10578374,-0.5120578,0.1714985,-0.33117405,0.18333694,-0.45468256,0.1191146,-0.009675183,0.07596477,0.2511991,0.007647957,-0.4511641,-0.041854303,0.3224909,0.84981185,-0.1918498,-0.036194332,0.6688062,1.1214718,0.9115283,0.028103428,1.0155473,0.24514236,-0.16507138,0.2448344,-0.25931224,-0.7984872,0.20172906,0.3246948,-0.06353338,0.24545692,-0.1735225,-0.08758478,0.38039795,-0.44299278,-0.101334624,0.14135967,0.3699819,0.33927634,-0.13666867,-0.54976404,-0.1685276,-0.010047742,-0.10105383,0.12130425,0.12924656,-0.14831547,0.43760794,-0.15589197,1.2059759,0.06696138,0.09628003,0.11459088,0.6257884,0.34513417,-0.15157421,-0.1711574,0.49795,0.25450784,0.11186392,-0.56583256,0.33055726,-0.23255062,-0.31144243,-0.053890236,-0.43426332,-0.09761777,0.23055522,-0.2757454,-0.07215906,-0.13301823,0.011641349,0.4306132,-3.2090027,-0.2015429,-0.06037109,0.26761913,-0.19890293,-0.08206091,-0.062322356,-0.530506,0.25677735,0.28613952,0.6073887,-0.6656351,0.39118797,0.48680645,-0.61429894,-0.16843045,-0.68371445,-0.14567196,0.07060326,0.47131297,0.21753971,-0.003276594,-0.15381347,0.2521364,0.6865978,0.1332875,0.18890119,0.3981853,0.32308894,0.091638684,0.41548818,-0.061391957,0.49599177,-0.30076388,-0.15119757,0.27849302,-0.21403159,0.24483947,-0.116674915,0.041457515,0.5120233,-0.30610424,-0.98942626,-0.49112743,-0.11373062,1.0884402,-0.34523243,-0.54233384,0.28765774,-0.38440344,-0.12500107,0.07691206,0.5162597,-0.08748757,0.1779281,-0.7279338,0.18196766,-0.02906033,0.124518104,0.044547264,-0.11860087,-0.2756172,0.65108865,0.0028461006,0.44580656,0.3422214,0.20752491,-0.07874429,-0.3601551,0.06988876,0.52246433,0.25119466,0.029444588,-0.23400338,-0.2331483,0.05310286,-0.17265154,-0.021936476,0.6620703,0.5669571,-0.18188013,0.11140602,0.23455732,-0.018475065,0.067612454,-0.08281607,-0.120635256,0.022238731,0.0017591204,0.4364504,1.0219488,-0.27024406,0.2175344,-0.13571237,0.35999554,0.089981906,-0.4420831,0.6999234,0.343565,-0.18401454,-0.10675876,0.45570883,0.47010565,-0.4687535,0.44287303,-0.47957626,-0.12718399,0.5310668,-0.11353262,-0.35812095,0.16126165,-0.18490362,0.1476101,-0.7595647,0.32762343,-0.26533076,-0.4174659,-0.3915922,-0.049603067,-3.8515694,0.1398956,-0.17285861,-0.1842437,-0.29612857,0.006195843,0.24509202,-0.5791846,-0.6144725,0.21703562,0.1652498,0.46699792,-0.14851962,0.11045922,-0.25870693,-0.22179317,-0.22244112,0.2585536,0.21038903,0.2945057,-0.08726896,-0.41895765,-0.23428302,0.008225868,-0.5906166,0.27449352,-0.46410337,-0.3513947,-0.15242215,-0.3931536,-0.23410438,0.5703675,-0.3225301,-0.085994676,-0.2921111,0.10494093,-0.3447477,0.22254035,0.11416741,0.18488897,0.14967947,0.06839613,0.14784575,-0.22802208,0.5324587,-0.058637206,0.41213956,0.1409113,0.1410801,0.10253906,0.5304392,0.6974203,-0.098290905,0.966415,0.4381959,-0.036299918,0.21405987,-0.32155555,-0.26617393,-0.45107874,-0.294271,-0.06256776,-0.2717556,-0.47019365,-0.054917593,-0.40711254,-0.7090195,0.5557042,0.060840312,0.22483137,0.06889476,0.027203517,0.45551577,-0.1564664,0.021498501,0.0135631515,-0.17096357,-0.7077281,-0.075702175,-0.53402185,-0.53223354,0.046958838,0.65312994,-0.29720926,0.11372997,-0.14408459,-0.3856756,-0.05823654,0.22404914,0.077258185,0.25149578,0.4546101,0.12540898,-0.6036667,0.38075474,0.013028656,-0.2879107,-0.6296193,0.1848393,0.49033752,-0.737735,0.7626904,0.30381036,0.084352694,0.04966907,-0.5106502,-0.38707146,-0.10385688,-0.12447036,0.46541935,0.24059698,-0.93238646,0.41060778,0.24842668,-0.6105074,-0.6459769,0.3831711,-0.13664278,-0.19125652,-0.07213325,0.1543521,0.062569894,-0.06070137,-0.0898878,0.21066983,-0.33348745,0.21894158,0.042711955,-0.035518605,0.44253558,0.0039940476,-0.07527377,-0.65921193,-0.13518031,-0.60663253,-0.22406438,0.35375684,0.07037953,-0.067773595,-0.10530542,0.112886176,0.31732062,-0.1600896,0.10234673,0.029266758,-0.45231253,0.29243025,0.46113595,0.38393244,-0.4394779,0.51891744,0.0962935,-0.15022185,0.21707967,0.02351092,0.25803,-0.14573966,0.40570968,-0.16792855,-0.08849383,0.08951525,0.6423446,0.09126089,0.397585,3.0492034e-05,-0.0046177763,0.6191665,-0.111351915,0.06581028,-0.0267874,-0.48786005,0.12804806,-0.29884857,0.20740066,0.44954816,0.3764348,0.24942231,0.086048804,-0.30037516,0.010100378,0.40515545,0.08998845,-1.1282654,0.33843735,0.2812364,0.84179395,0.48489663,0.04242022,-0.16850328,0.79618424,-0.14673339,0.12794556,0.4426949,0.16031058,-0.59864235,0.6770856,-0.69830954,0.4295772,-0.089474715,-0.12079968,0.1963171,0.15535425,0.32257694,0.63148034,-0.273081,0.057531316,0.029623006,-0.2068248,-0.08314062,-0.3885859,0.009711964,-0.3387868,-0.22611248,0.6343755,0.51124734,0.32460502,-0.23663296,-0.030607352,0.09214566,-0.07312061,0.21425842,-0.10911473,-0.07190585,0.08560814,-0.5910838,-0.19097283,0.5167311,0.01496596,0.2600165,-0.26662022,-0.18973197,0.051127102,-0.31122538,-0.24762665,-0.06334441,-0.5934247,0.12753232,-0.0643085,-0.55831033,0.6023858,-0.19467118,0.13814159,0.14762965,0.06690857,-0.23654938,0.39714554,-0.12962146,0.870732,0.07348932,-0.16073449,-0.2419399,0.09146898,0.20695119,-0.110918395,0.040964477,-0.5238112,0.012852656,-0.28921565,0.553765,-0.13422312,-0.41211802,-0.012927549,-0.16951792,0.10520844,0.5767528,-0.12690993,-0.24534997,-0.11838848,-0.10193931,-0.42852765,-0.119766876,-0.17773566,0.26837882,0.30798417,-0.16094601,-0.02972272,-0.2785121,-0.17139909,0.56973255,-0.084776916,0.46399927,0.11336132,0.12135076,-0.12944646,-0.13813847,0.23547442,0.3987039,0.13596527,-0.085611,-0.34650797,-0.4121514,-0.2915782,0.0738552,-0.029721353,0.20224789,0.034159075,-0.20362285,0.7676566,-0.021178428,1.0885457,-0.026309604,-0.22740738,0.17347535,0.47758994,7.2717667e-06,0.010313119,-0.47423047,0.7879783,0.5237336,-0.18345866,-0.065024845,-0.5460774,0.014989836,0.16787294,-0.25097534,0.01232865,-0.09933412,-0.47835192,-0.23960577,0.14417885,0.15568545,0.31120053,-0.06868167,0.029151542,-0.021839648,0.0636378,0.31440333,-0.4432465,-0.27550676,0.24480319,0.2829602,0.029104132,0.088168845,-0.42008764,0.3351472,-0.3800207,0.16426395,-0.5104471,0.10007739,-0.30516115,-0.35495844,0.050853375,-0.091654085,0.40330508,-0.28391626,-0.38602123,-0.12865052,0.3269711,0.15233551,0.0579148,0.5827464,-0.21975438,-0.013486317,0.14006487,0.6179889,0.9231614,-0.5168711,-0.012440354,0.17509674,-0.31329235,-0.5546674,0.31041288,-0.24740903,0.063235596,-0.18548392,-0.28559095,-0.6228241,0.10742492,0.0075177634,0.04308966,-0.04964993,-0.50709265,-0.25028083,0.16979147,-0.3097129,-0.15378603,-0.2844918,0.2006885,0.7441582,-0.22973074,-0.2750619,0.1410249,0.12208887,-0.06778938,-0.36952108,-0.105839856,-0.09060122,0.21852544,0.06258638,-0.36672607,-0.14454456,0.2570566,-0.41741678,0.13313879,0.05841012,-0.3394909,0.11457939,-0.17143965,-0.078126565,0.9881595,-0.36649475,0.13241848,-0.5876394,-0.56045836,-0.932288,-0.36129162,0.347323,0.059598498,0.000962896,-0.3470723,0.011414788,0.02715925,-0.28055334,-0.16374008,-0.56785303,0.32447833,0.036397684,0.45899874,-0.27988955,-0.8013342,0.08552396,0.16735397,0.00833341,-0.6938682,0.54030627,-0.016234357,0.7609769,0.07086764,-0.0027398595,0.07000019,-0.23346269,-0.04806233,-0.29281515,-0.1771548,-0.6463708,0.13145694 +63,0.5644383,-0.36296162,-0.47653785,-0.017854078,-0.28796354,-0.022297187,-0.24422026,0.5193223,0.29902294,-0.44972038,-0.40672773,-0.23652376,-0.029117549,0.43581867,-0.26209155,-0.5348212,-0.111098245,0.2473049,-0.4432021,0.6282471,-0.3585835,0.18907206,0.06498896,0.5320499,0.31382793,0.049077492,0.15136151,-0.016355408,-0.15224878,-0.18295792,0.038274374,0.27658084,-0.5627942,0.22543654,-0.35283235,-0.5599796,-0.16515507,-0.53816664,-0.39862603,-0.7446725,0.30698463,-1.0180753,0.5185071,0.14708042,-0.30396912,0.32591608,0.05009846,0.2811267,-0.17252536,0.094811454,0.079998836,-0.32105446,-0.12232262,-0.23132391,-0.1591066,-0.1896015,-0.5521006,0.009689165,-0.3272943,0.070551105,-0.27972525,0.09474959,-0.20392346,0.1403623,0.1588752,0.32204628,-0.4566662,0.06126055,0.23357782,-0.11934436,0.42302996,-0.6007217,-0.2959315,-0.15545249,0.20746146,-0.25140586,-0.34825903,0.43746042,0.17363729,0.64640415,-0.029537493,-0.110689476,-0.32870927,0.00023027403,0.14664538,0.47784048,-0.2890424,-0.50002724,-0.23905157,-0.069239214,0.46797898,0.20750602,0.05665152,-0.25184685,-0.05515602,-0.13183199,-0.06657891,0.30455452,0.537919,-0.17197405,-0.2172786,0.2699661,0.5600324,0.29243734,0.052612323,-0.016008642,0.16972551,-0.6043116,-0.18627732,0.0114588905,-0.31230825,0.66557646,-0.13038619,0.19331542,0.514813,-0.18255022,-0.04292365,0.09843296,0.04525838,-0.14826916,-0.27109402,-0.4493142,0.45172122,-0.42878968,0.18237345,-0.12815307,0.6830939,0.13154586,-0.59509903,0.2968499,-0.5525121,0.16422777,-0.115219414,0.5172266,0.63295853,0.60069287,0.45147473,0.7891723,-0.55843866,0.030138774,-0.13532302,-0.23626933,0.069244824,-0.34008655,-0.12024905,-0.5195171,0.049136423,0.014487927,-0.11561608,0.32317644,0.55681974,-0.5006313,-0.0678399,0.1707939,0.71335757,-0.32020923,0.13524607,0.9675588,1.1533146,1.1950035,0.046272866,1.2094948,0.31617308,-0.33172426,0.04832166,-0.014345033,-0.86706483,0.32816362,0.4275989,-0.23611034,0.42164224,0.118486606,0.030477157,0.39931384,-0.6205883,-0.10748943,-0.21784952,-0.04742955,0.05573515,-0.03707375,-0.55707175,-0.25049925,-0.23308407,0.15598185,-0.1371741,0.3491079,-0.16750272,0.5856826,0.07656141,1.5221657,-0.1384553,0.0019707594,0.088734165,0.3798962,0.14827524,-0.11243807,-0.015256703,0.124648385,0.3286326,0.04616801,-0.5766792,0.047401275,-0.21083626,-0.55672646,-0.1574887,-0.19273324,0.012708387,-0.0041754437,-0.40705928,-0.2953114,-0.17661312,-0.24524167,0.4769633,-2.2918932,-0.19880536,-0.12487399,0.36559814,-0.26626843,-0.33213118,-0.16794644,-0.40599892,0.4193887,0.35704914,0.5110846,-0.77761537,0.28421086,0.54217106,-0.6764021,-0.13462652,-0.55074435,-0.14881153,-0.011777005,0.24420333,0.0061366386,-0.15111482,0.17514975,0.19986977,0.52508795,-0.019130405,0.15402253,0.29967737,0.35412338,-0.012988135,0.3224315,-0.097312875,0.4163851,-0.49410436,-0.25968868,0.44110784,-0.2486407,0.24304993,-0.21221526,0.14153694,0.5298875,-0.530117,-0.981468,-0.7606279,-0.16026412,1.1059904,-0.2576303,-0.5567068,0.19011375,-0.39517123,-0.32135245,-0.04465281,0.35992116,-0.18348339,0.037019912,-0.9568055,-0.087097876,0.11550112,0.15218651,0.12612565,-0.06283922,-0.46428862,0.7434677,-0.06384922,0.3712298,0.5611696,0.24255863,-0.10798367,-0.5905253,0.08552723,0.81230515,0.50805354,0.36063305,-0.3420216,-0.13670053,-0.14428283,0.011942471,0.09138838,0.41759843,0.66475856,-0.20432714,0.098893516,0.21849401,0.07384352,0.0404082,-0.13324276,-0.19754878,-0.2207115,0.0098432945,0.64785576,0.9320542,-0.1769732,0.15666829,-0.0035408267,0.24050872,0.060566287,-0.49623114,0.6010035,1.2707068,-0.1501094,-0.18822387,0.721732,0.55120623,-0.26226014,0.55585384,-0.74025065,-0.39668474,0.277359,-0.14657582,-0.55085117,0.16684422,-0.3996052,0.22682045,-0.91698754,0.26954767,-0.2039957,-0.21084599,-0.7237849,-0.0387745,-2.5301235,0.26058078,-0.33549944,-0.20658194,-0.20000295,-0.22105287,0.26141682,-0.7204033,-0.73102874,0.18845583,0.15889408,0.67301077,-0.01606582,0.2150421,-0.120947696,-0.2716518,-0.2887946,0.0012667179,0.25236315,0.28779283,0.15407321,-0.54765064,0.008478549,-0.11646088,-0.35819095,0.011873028,-0.63513726,-0.46599796,-0.20049141,-0.3956687,-0.31093055,0.3759184,-0.33167616,0.1390008,-0.15013263,-0.047273513,-0.14309919,0.16190612,-0.004776303,0.19605912,0.085664615,-0.0010907097,0.07176073,-0.124896325,0.2951806,0.06898757,-0.0062420964,0.38740045,-0.36767173,0.102589354,0.54628134,0.750692,-0.2478826,0.9114647,0.7172074,0.013948219,0.15311754,-0.22333561,-0.32794052,-0.68822765,-0.3322053,-0.124194615,-0.45374322,-0.46578,0.013801707,-0.33860132,-0.9920396,0.6279994,-0.02941574,0.26121646,0.0024094325,0.12640014,0.5853204,-0.31728497,-0.082426354,-0.032766562,-0.13121943,-0.5861622,-0.3449485,-0.7257276,-0.50943786,0.12124883,1.0708951,-0.11751579,0.11873715,0.3185561,-0.26268217,0.108782224,0.24085715,-0.17021786,0.055065606,0.62030095,0.2027323,-0.6457153,0.47496074,0.2690793,-0.23877956,-0.6749878,0.32434013,0.5999247,-0.60423505,0.5160849,0.55256164,-0.07889251,0.011782174,-0.5551694,-0.24408828,-0.25998262,-0.25719187,0.43945822,0.4496434,-0.7097308,0.45320076,0.44075856,-0.41252735,-0.8258273,0.61813635,0.019400101,-0.31977066,0.058588833,0.2979412,0.21678042,-0.05322137,0.08566083,0.29398748,-0.3960747,0.32625452,0.11186159,-0.06824453,-0.014441214,-0.20258006,-0.08898973,-0.9832897,0.11093204,-0.5639729,-0.2505117,0.25297725,0.1466683,-0.049175996,0.09247895,0.21659067,0.31833082,-0.27698478,0.121251866,-0.20557916,-0.35146046,0.4440207,0.522814,0.4821919,-0.3161504,0.61128885,-0.08115787,-0.09703774,-0.0884334,-0.020318462,0.42984417,0.10963261,0.32689452,0.07067694,-0.2848985,0.1083089,0.5615393,0.1620269,0.24221346,0.053583194,-0.08463396,0.47916013,0.27604538,0.2950128,-0.28320166,-0.45370102,0.0035869288,-0.34450993,0.078876905,0.3912994,0.17553568,0.37477508,-0.119027786,-0.33435866,0.08965208,0.063497536,0.08450316,-1.3959051,0.2218132,0.12477834,0.71219766,0.7338629,-0.12639226,0.22556143,0.7105395,-0.2872079,0.0145923365,0.43329033,0.04557277,-0.538042,0.4555954,-0.69399834,0.39699546,-0.0743774,0.004118547,-0.013897197,0.17946169,0.41833302,0.62880814,-0.14082499,0.122386634,-0.08824212,-0.3335913,-0.017067844,-0.488026,-0.015826123,-0.6493434,-0.26983896,0.8328465,0.5395322,0.52380544,-0.18645872,-0.0121797025,0.04870608,-0.16310842,0.2322948,0.1204374,0.012052255,-0.17724381,-0.7116766,0.0011566089,0.5652794,-0.054173835,0.106246114,-0.12062214,-0.3938693,0.20495358,-0.22101375,-0.25095996,-0.073300526,-0.8317217,-0.043965995,-0.45682207,-0.34992787,0.46622178,-0.13711666,0.17251457,0.23931351,0.055891525,-0.35968867,0.10832178,-0.0027952364,0.8707965,0.19034608,-0.36690468,-0.17906554,0.22855102,0.28823003,-0.14920892,-0.043491345,-0.029528797,-0.03717679,-0.4122055,0.6543508,-0.057145063,-0.16464183,0.30530906,-0.124099635,0.12931572,0.5863183,-0.22578302,-0.3486938,0.059136264,-0.1077325,-0.3763897,-0.44966632,-0.24586856,0.20587459,0.23573706,0.025827365,-0.030643625,-0.17620876,0.07482424,0.5638322,0.0030662033,0.41606882,0.36573654,0.058698494,-0.49694106,-0.095621124,0.25254458,0.4682185,-0.030632725,-0.27504718,-0.33595258,-0.6830235,-0.3037985,-0.023685813,-0.17967473,0.38903278,0.0048007295,-0.22193249,0.833777,0.041547913,0.9951762,-0.009012991,-0.42906687,0.097534575,0.4889048,-0.07132791,-0.17829935,-0.24323665,0.8500662,0.61679596,-0.20859882,-0.19306083,-0.35414553,-0.02822583,0.12224256,-0.17788665,-0.0540615,-0.13638362,-0.61099494,-0.33669424,0.2613969,0.3359559,0.13929768,-0.1697686,0.18791778,0.2136976,0.01829358,0.36695954,-0.30258825,-0.27328363,0.35423997,0.27911666,-0.035508495,0.06540897,-0.33545905,0.32414538,-0.4156219,-0.1326055,-0.37434763,0.09738069,-0.21982656,-0.26642507,0.21052286,-0.064049914,0.26644167,-0.3782267,-0.22985804,-0.30034462,0.58642375,0.028037557,0.0591593,0.5262194,-0.32900456,0.05877467,0.031313412,0.35721296,1.1335245,-0.37669638,0.02296399,0.34026474,-0.49458757,-0.39820218,0.43788454,-0.3157224,0.14492856,-0.005584019,-0.32196093,-0.8034783,0.14178328,0.14630677,0.09580142,0.13501331,-0.7034093,-0.0073366635,0.33481193,-0.32502103,-0.27423677,-0.3688174,-0.018443767,0.43831247,-0.22053044,-0.31229058,0.19608535,0.17975049,-0.117096014,-0.39994472,0.013711386,-0.48291436,0.29936394,0.12855627,-0.38745373,-0.15193379,0.070796914,-0.4993927,-0.12901714,0.16787441,-0.37742668,0.091029115,-0.5715399,0.102027275,1.0239893,-0.23534577,0.25407258,-0.55894935,-0.4386902,-1.0630082,-0.45725083,0.6106438,0.35430264,0.123013176,-0.6288868,0.13996015,-0.013839649,-0.25105473,-0.15502355,-0.30515787,0.627717,0.23861834,0.44198236,-0.10884041,-0.6568293,0.16876854,0.111418284,-0.24315922,-0.4279403,0.45245358,0.15410607,1.0056716,0.07220713,0.12746035,0.19504984,-0.7282976,0.12918241,-0.0659541,-0.26900885,-0.59006035,-0.042633813 +64,0.9141611,-0.19994125,-0.8286437,0.006494279,-0.25755203,-0.022490982,-0.36629075,0.39115816,0.44058037,-0.24820405,-0.17499407,-0.13656949,-0.054576673,0.37461045,-0.07461303,-0.64796937,0.14341387,0.0864788,-0.44481677,0.70743793,-0.39461246,0.2947706,-0.07832579,0.64174974,0.3075053,0.36644393,0.38249838,0.17563044,-0.21908744,-0.33450553,0.17431745,0.14558631,-0.7094154,0.29271856,-0.19239691,-0.23022777,0.028976921,-0.2538509,-0.44788694,-0.9106338,0.42144638,-0.67827827,0.4693187,0.1625469,-0.3901667,-0.085308775,-0.0045568715,-0.022975024,-0.025400363,-0.12585983,0.0986511,-0.2931453,0.12808453,-0.293272,-0.17905872,-0.3364076,-0.6462529,-0.008131871,-0.54229486,-0.048058417,-0.35506365,0.1652689,-0.41840696,-0.01592649,-0.13440639,0.802554,-0.38875958,0.08903175,0.1253986,-0.33263734,0.26346734,-0.6892984,-0.51969504,-0.14413644,0.10600621,0.29583344,-0.24036549,0.2978046,0.23042287,0.3225317,0.11161932,-0.11389598,-0.5295076,-0.20428738,0.28237465,0.5134487,0.0025313245,-0.45677853,-0.33590764,-0.25424278,0.28775072,0.18498716,0.3080176,-0.32203883,-0.01680779,-0.04565888,-0.22274694,0.6767562,0.5786157,-0.26143697,-0.09956716,0.17284915,0.48144138,0.2495168,-0.26344448,-0.009205965,0.0075074593,-0.5270817,-0.0783727,0.035078164,-0.18419935,0.6804076,-0.09515159,0.27957967,0.6889067,-0.48384893,-0.19866723,0.177169,0.110777564,-0.15970537,-0.1743916,-0.035852328,0.241536,-0.29480407,0.04761249,-0.24302138,0.88865286,0.14674371,-0.6267484,0.30410796,-0.53423196,-0.055038624,0.028845044,0.6437679,0.4996988,0.44403192,0.40283754,0.84983927,-0.32376182,0.1090914,-0.019179918,-0.36641154,-0.0058632884,-0.29884422,0.12557207,-0.4186048,-0.1095456,-0.059105378,-0.2438105,-0.00039712398,0.71119463,-0.4407717,-0.23120192,0.19776018,0.77576476,-0.18727873,-0.087681405,0.8312276,1.2409251,1.2260845,-0.050481893,1.096384,0.1753672,-0.075549714,-0.15123935,-0.16171743,-0.7994683,0.34337413,0.2585334,0.15174797,0.36438388,-0.065759234,-0.101819545,0.17881063,-0.22247495,-0.050665535,-0.0029192017,0.39503664,0.21970683,-0.08432364,-0.40639898,-0.31886917,0.047057245,-0.052520957,0.13461421,0.25178316,-0.2699119,0.6243976,0.00063671515,1.4994718,-0.23267849,0.037638646,0.13882953,0.80222905,0.28512493,-0.27266565,0.088772535,0.3822509,0.0039896863,0.24688354,-0.5065555,0.10273949,-0.29850578,-0.66892326,-0.17802931,-0.40301782,-0.014932394,0.06643461,-0.24346623,-0.31825736,-0.026438484,-0.2862593,0.2400143,-2.7303,-0.2516708,-0.0698074,0.34614453,-0.2167117,-0.28067204,-0.023818986,-0.5877187,0.21151473,0.40299255,0.52647233,-0.74402934,0.21812886,0.6427077,-0.6641282,-0.15691677,-0.42223147,0.18557675,-0.17222382,0.5853561,-0.11291348,-0.075487964,-0.06765329,0.20273243,0.6858477,0.17945403,0.21157211,0.22576554,0.36144644,-0.2304046,0.29676414,0.026549097,0.4209561,-0.30928415,-0.21013692,0.647259,-0.5015334,0.14586796,-0.27025792,0.137499,0.52456754,-0.36859232,-0.78521955,-0.56089276,0.046938166,1.0222543,-0.07352629,-0.88462037,0.12422189,-0.072978646,-0.28915778,-0.015219982,0.45523813,-0.20881365,0.11893975,-0.6103535,-0.040651638,-0.122618355,0.16772453,0.12127491,0.07256229,-0.4359376,0.76961803,0.104045406,0.33119282,0.14964083,0.2818629,-0.50188094,-0.6710401,0.24242964,0.9371259,0.38911167,0.18681653,-0.3749545,-0.1845381,-0.20789388,-0.1785844,0.012127172,0.65569794,0.65408635,-0.18128411,0.16977698,0.5196242,-0.080538005,0.020694735,-0.06903361,-0.3939102,-0.14180806,-0.07270683,0.5732016,1.0582137,-0.11366423,0.42346293,0.021404423,0.4952157,-0.19401005,-0.45014864,0.6906341,1.1918494,-0.22523433,-0.28245336,0.48622534,0.34167057,-0.6955647,0.62243736,-0.6679255,-0.44350636,0.4026888,-0.100426584,-0.43023297,0.16621701,-0.40947926,0.07231671,-0.7038902,0.43764356,-0.46575582,-0.27187383,-0.45127928,-0.27240196,-3.402629,0.24713136,-0.2942681,-0.2919413,-0.20902489,-0.02014129,0.13560802,-0.58684385,-0.5581203,-0.012544329,0.11918103,0.7192935,-0.16873105,0.08278961,-0.2073493,-0.60950375,-0.52426153,0.2210021,0.09266661,0.5067991,0.0105622,-0.38827127,0.17238614,-0.12700647,-0.39936903,0.046971604,-0.38152674,-0.67151654,-0.34000793,-0.5024262,-0.36205247,0.625179,-0.13054162,-0.0014730967,-0.31928155,0.040868375,0.02007166,0.26805905,0.060538735,-0.030384,0.14078596,-0.12822291,-0.026631359,-0.3127434,0.19777046,-0.12096544,0.3826349,0.5623571,-0.11108319,0.16020149,0.50412107,0.41591474,-0.1839694,0.8334983,0.12808307,-0.0049326946,0.1764831,-0.14170438,-0.25887728,-0.58569866,-0.21687089,0.17794248,-0.40258414,-0.48515537,-0.2143603,-0.42908388,-0.7290395,0.68487525,0.040378764,0.39335963,0.04315289,0.3784122,0.46455806,-0.1255016,-0.05781394,0.105960615,-0.07072893,-0.6336641,-0.2470836,-0.6799438,-0.5623888,0.19185522,0.79905033,-0.32982123,-0.29054543,0.13331625,-0.25893447,-0.040394858,0.07061545,-0.010493489,-0.11641446,0.47022927,-0.005341154,-0.740559,0.47054598,-0.14780793,0.12666829,-0.6423279,0.30073473,0.5181011,-0.5868467,0.54229707,0.28534022,0.29227343,-0.262804,-0.53888696,-0.0749971,0.13203417,-0.12946378,0.49694678,0.34506795,-0.7924561,0.39463055,0.10494911,-0.44238248,-0.67063373,0.45399702,-0.07870837,-0.37397888,-0.21016686,0.47696635,0.024827518,0.0012974349,-0.4701328,0.411164,-0.45426,0.007155345,0.2661435,-0.21527973,0.4435682,-0.111453585,-0.35484773,-0.6481505,0.043826584,-0.5255404,-0.376469,0.3071618,0.0282832,-0.052542593,0.20479853,0.19629198,0.37703034,-0.13438758,0.13674685,-0.017692603,-0.11372466,0.644604,0.46693546,0.93380475,-0.49763924,0.62593883,0.065928504,-0.07814992,0.14165774,0.031282313,0.24145573,0.14496537,0.46864802,0.37215343,-0.08410701,0.11833433,0.7150427,0.19450739,0.6631164,0.13219298,-0.27528617,0.30575502,0.122235365,0.42080307,-0.06723183,-0.684151,-0.08104536,-0.39990714,0.032977816,0.61211705,0.12361514,0.34839392,0.035690185,-0.3934726,0.09719856,0.027934331,-0.17955408,-1.3106316,0.1881063,0.1454106,0.78175616,0.5361234,-0.045914147,0.033357307,0.6387894,-0.053586546,-0.014421707,0.25208628,0.12220534,-0.5098521,0.51608646,-0.67430365,0.4696248,-0.1386216,-0.11662029,0.09895532,-0.12557766,0.5096345,0.76076156,-0.17690729,-0.0674224,-0.03605411,-0.31525767,0.117401645,-0.50737983,0.22113603,-0.58354944,-0.34028307,0.6912046,0.56387603,0.23065235,-0.18113905,-0.03438249,-0.015225548,-0.0021545703,0.30224186,-0.06421345,0.15257032,-0.080984265,-0.6277636,-0.17939575,0.59157383,0.19757575,0.1403384,-0.06816565,-0.14004731,0.2841783,-0.09239416,0.027180858,-0.05523467,-0.7763977,0.0037152905,-0.081138104,-0.5512049,0.54666215,-0.024130289,0.30499843,0.22111748,-0.0075230817,-0.31264612,0.2772779,0.12832162,0.81563306,0.11093206,-0.06485872,-0.4963056,0.08008209,0.38015035,-0.34272978,-0.11373857,-0.09709076,-0.06561637,-0.58530813,0.47599375,-0.09715677,-0.27901906,-0.13720241,-0.12233475,-0.094417535,0.6904351,-0.04194153,-0.18133023,-0.0016255653,-0.06382937,-0.38136452,-0.012703606,-0.0666027,0.06523164,0.19911297,-0.4303676,-0.15075693,-0.07270588,0.3205139,0.11876027,-0.015335575,0.28606465,0.54871696,0.15118681,-0.545723,-0.13522016,0.26170957,0.64730334,0.27364925,-0.12529565,-0.32447523,-0.61186653,-0.48364434,0.22486773,-0.013150929,0.14853057,0.26339653,-0.2988113,0.66316485,0.2491258,1.2796701,0.0766478,-0.31619975,0.21349746,0.6629621,-0.025930222,-0.04302972,-0.49864715,1.0946242,0.44986597,-0.5282277,-0.16986677,-0.4150591,-0.08076187,0.096200384,-0.27853754,-0.12047418,-0.17895964,-0.6444044,-0.029377524,0.14397305,0.4133236,0.03862101,-0.2522321,0.069580525,0.3363784,0.21593533,0.27738562,-0.3991521,-0.30449525,0.43295622,0.2343739,-0.028824527,0.09744103,-0.2839909,0.32529718,-0.6343291,0.19381097,-0.28552532,0.24762832,-0.1455434,-0.5580602,0.3849979,0.15560557,0.51156795,-0.47949344,-0.3914992,-0.3712859,0.40990108,0.47612512,0.25855306,0.55430984,-0.23508972,-0.058681723,-0.028557392,0.63459957,1.290111,-0.13278459,-0.048230033,0.37517846,-0.58357227,-0.8072485,0.23432605,-0.4594887,0.25086117,-0.17750613,-0.2869099,-0.75083345,0.3020808,0.14283046,-0.13030118,0.05093259,-0.6066538,-0.17731817,0.07221144,-0.37882847,-0.19182979,-0.3382015,-0.021525493,0.64259434,-0.23928474,-0.37050307,0.06770074,0.18352279,-0.20354074,-0.67050624,-0.16165069,-0.29835007,0.40709895,0.054740198,-0.18185686,-0.19766283,0.11770434,-0.65606064,0.19027695,0.16286197,-0.3742027,0.13087717,-0.39931896,-0.015363789,0.77940905,-0.34121287,0.116874054,-0.30682182,-0.6010692,-0.80938613,-0.31862643,0.34975654,-0.09398857,0.0096959425,-0.6909256,-0.15455352,-0.45158243,-0.117452376,-0.079173155,-0.4052758,0.3677875,0.023089183,0.38842976,-0.0576689,-0.8511754,0.2833645,0.41264006,-0.11655641,-0.6817612,0.38125175,-0.17864862,0.76623225,0.162596,0.087588064,0.36692393,-0.581081,0.2574828,-0.19623262,-0.35681552,-0.5099427,0.16158713 +65,0.4148545,-0.13402742,-0.54694146,-0.22569968,-0.15257087,0.035973713,-0.178461,0.658877,0.2340012,-0.42058846,-0.023821604,-0.034615632,-0.008453162,0.39135602,-0.07643113,-0.68137795,-0.03636203,0.10279051,-0.2999903,0.40346763,-0.46003684,0.31680745,-0.056865755,0.48102006,0.20375668,0.3005389,0.030248333,0.04878049,-0.13763481,-0.13541053,0.16613021,0.22283153,-0.51107997,0.17783524,-0.055490986,-0.32297885,-0.04656483,-0.46058807,-0.27038527,-0.6882914,0.2422604,-0.67799383,0.5323916,0.12261663,-0.34856468,0.076698095,0.1937904,0.44058454,-0.18252043,-0.003548932,0.22951606,0.016686888,-0.03712694,-0.10816501,-0.2429428,-0.43434733,-0.5848694,0.13079017,-0.41073212,-0.18468451,-0.0780832,0.22417209,-0.2734951,0.019237367,-0.2293553,0.50018233,-0.36318198,-0.23426676,0.388607,-0.284221,0.3363443,-0.51237553,-0.08463747,-0.15189809,0.09739961,-0.1685236,-0.23550552,0.24378434,0.2630431,0.54720515,0.04347981,-0.31290835,-0.40185001,0.06109933,0.11959456,0.37005743,-0.2883969,-0.3962072,-0.19663745,-0.044279672,0.104724884,0.18623252,0.16958493,-0.32360637,0.0730337,0.19140495,-0.30287153,0.23955414,0.4541143,-0.33188757,-0.1400191,0.22112055,0.5558032,0.09279861,-0.10582374,0.10724922,0.080421835,-0.5326261,-0.25797865,0.031902943,-0.07425152,0.29975,-0.06696184,0.08108164,0.62602437,-0.14510186,0.04401578,0.066115595,-0.015617386,-0.012403492,-0.50323504,-0.3236789,0.21171592,-0.39145285,0.079245314,-0.26420647,0.78600043,0.19046292,-0.68759924,0.28537762,-0.59326583,0.13455711,-0.16457182,0.4190883,0.6822627,0.3663191,0.10682605,0.8045447,-0.42587292,0.090635434,-0.21063472,-0.2589634,0.21398811,-0.23355238,-0.067198,-0.40807584,0.07199694,0.006774314,-0.19961214,0.07141889,0.33719638,-0.5408774,-0.07198116,0.2114353,0.78655994,-0.2695154,-0.052276805,0.6811354,0.9531718,0.8794568,0.051449142,1.1738802,0.20343095,-0.18293165,0.31551132,-0.3060444,-0.64803535,0.37990707,0.34874874,-0.34987572,0.20489794,0.07375378,0.08944488,0.5020447,-0.35818425,0.13028885,-0.15497014,0.2310352,0.062557146,-0.16727714,-0.40530497,-0.17886448,0.06854816,-0.047092404,0.12300437,0.1946573,-0.23014012,0.23972252,-0.038424063,1.6659015,-0.109807536,0.04926068,0.09196308,0.38555536,0.27249318,-0.29699633,-0.08691704,0.17340733,0.16603222,-0.016641349,-0.5249328,0.1051582,-0.21305564,-0.49647802,-0.24355508,-0.29973856,0.040231194,-0.07110059,-0.46317083,-0.12526362,-0.12033205,-0.20620571,0.35490134,-2.6712415,-0.1719091,-0.032475147,0.21497343,-0.4218156,-0.47604284,-0.1506159,-0.3964912,0.4852899,0.37396345,0.39775798,-0.51956505,0.3340666,0.36129844,-0.4111378,-0.080742225,-0.63576114,-0.077057846,-0.076602526,0.18647505,0.08672233,-0.20657727,-0.1346472,0.15389816,0.51927716,-0.08262748,0.11133957,0.17496958,0.236629,0.026429527,0.5709951,0.0050026313,0.64479893,-0.369105,-0.28570908,0.4171137,-0.4511315,0.11068036,0.13527216,0.13423322,0.20533052,-0.5510494,-0.89151657,-0.67300606,-0.3552651,1.0383744,-0.032330886,-0.3067196,0.34290186,-0.32838544,-0.30927113,0.113109216,0.40322807,-0.120160505,0.020319683,-0.8539082,0.06072558,-0.16094078,0.18132073,-0.06842889,0.004906225,-0.4416045,0.58306754,-0.051340614,0.43690357,0.43234113,0.16994146,-0.26661408,-0.50903326,0.009089251,1.1313999,0.31280577,0.17761102,-0.17909,-0.21751404,-0.42522463,-0.062321123,0.1257467,0.45773113,0.7844954,-0.023605354,0.0028565517,0.2118423,-0.08653786,-0.036609933,0.0053906054,-0.47690922,-0.1261672,0.11812617,0.5719588,0.42274237,-0.16073026,0.42150083,-0.12371229,0.528228,-0.23436533,-0.45142803,0.51282746,0.7257965,-0.2288997,-0.28375185,0.66787493,0.3910564,-0.25018686,0.51880914,-0.5748014,-0.33744267,0.3031748,-0.15684825,-0.4258525,0.14839055,-0.34219116,0.1887899,-1.116729,0.1396776,-0.36476675,-0.29834053,-0.63357717,-0.34344122,-3.42674,0.1698774,-0.10934167,-0.111669466,-0.07988453,0.100156225,0.3635691,-0.55728644,-0.68793267,0.032315355,0.06949189,0.6718871,-0.032554932,0.05669033,-0.35574844,-0.16899493,-0.21129732,0.1833071,0.23147832,0.293611,0.04895379,-0.48718962,-0.20509548,-0.13943958,-0.5023753,0.112392664,-0.6963959,-0.488195,-0.2341068,-0.65040904,-0.2518399,0.7384604,-0.46388504,-0.035744485,-0.07514555,0.09088908,-0.021212898,0.41617328,0.13061275,0.16089767,0.2472602,-0.19305763,-0.043041993,-0.34144947,0.16496871,0.12832996,0.35325563,0.37957734,-0.12002052,0.28192344,0.65593916,0.7362937,-0.1075939,0.7271601,0.6442245,-0.091092564,0.41404018,-0.37658226,-0.20791511,-0.33751997,-0.29716057,-0.042248003,-0.39602864,-0.34125578,0.026023876,-0.3695402,-0.797405,0.5874094,-0.04737512,-0.11550415,0.01578787,0.12455379,0.32600743,-0.26450965,-0.14227404,-0.17834142,-0.081337325,-0.49019766,-0.4227204,-0.4901904,-0.5938548,0.11846992,1.1462299,-0.15769139,0.14168224,-0.0669103,-0.15420817,0.011424263,0.015524489,0.051925067,0.18977779,0.49033305,-0.09064446,-0.5969859,0.31874925,-0.08556002,-0.1844758,-0.49955654,0.286771,0.71178335,-0.6507407,0.6026183,0.24636616,0.25498575,0.015310508,-0.5051448,-0.045895945,0.14280063,-0.19123335,0.52413034,0.21279524,-0.73409873,0.4806232,0.48661882,-0.19585648,-0.7173922,0.35116705,0.0023292662,-0.09375518,-0.22848235,0.36260137,0.0778249,0.031351145,-0.13982083,0.23355907,-0.46156958,0.042554602,0.36207193,-0.06023748,0.51987094,-0.27729163,-0.1558044,-0.69420683,0.07541139,-0.6027455,-0.3779544,0.22145413,0.0033267934,0.060890984,0.27117568,0.10756355,0.38377082,-0.21577808,0.07359593,-0.10358407,-0.21204135,0.388966,0.40464973,0.42711315,-0.5364942,0.43443954,0.032740917,-0.031591695,-0.030843934,-0.09306963,0.6197925,-0.03766087,0.38332638,-0.09036447,-0.024551146,0.26692432,0.7168659,0.11643708,0.3131777,-0.0063527822,-0.22158664,0.027903546,0.08814451,-0.019416343,0.08262139,-0.5544337,0.037732687,0.008505662,0.19638588,0.4716151,0.2044533,0.3610683,-0.015250009,-0.31742173,0.08862107,0.09608089,-0.13637324,-1.2186702,0.50723296,0.12731676,0.7380329,0.5381816,0.09358147,0.16509934,0.54759574,-0.20026693,0.2601014,0.36564636,-0.19507615,-0.44665357,0.44985232,-0.704776,0.42784518,0.0057447064,0.061434448,-0.025447067,-0.08890771,0.6133419,0.8061342,0.0068609994,0.21493095,0.024824237,-0.16626193,0.13107662,-0.32609144,-0.017474007,-0.52280796,-0.21216975,0.7783093,0.37137288,0.32966283,-0.20144172,-0.16095276,0.22925347,-0.05594768,0.12384108,-0.19733232,0.0015315593,0.15654577,-0.54699445,-0.4121624,0.5553462,0.16532545,0.16233319,-0.06419364,-0.22767334,0.22219685,-0.004695344,-0.009464113,-0.09472411,-0.5702635,-0.031998143,-0.49425256,-0.31917003,0.36121902,-0.22301473,0.19544844,-0.0043171686,0.14798927,-0.38057706,0.5585975,0.0093244715,0.8119815,-0.114962436,-0.051714294,-0.31871903,0.25648203,0.18936959,-0.29867104,-0.2527268,-0.4557408,0.051215455,-0.5926673,0.36665574,-0.050016165,-0.41495958,0.11548117,0.09380791,0.044511557,0.5046269,-0.2267652,-0.0024620255,0.21253633,-0.17266487,-0.12112587,-0.21189107,-0.084880725,0.32497156,0.039949782,0.0048181536,-0.07855089,-0.15836082,-0.06497602,0.47331542,-0.10060071,0.31351152,0.45232385,0.07984359,-0.32208014,-0.028944714,0.19342707,0.41644987,0.016734008,0.0027117212,-0.25762656,-0.19712375,-0.3650442,0.20165655,-0.24732502,0.261013,0.14530036,-0.38114056,0.81625944,0.2030339,1.3950683,-0.014466391,-0.3792341,0.072916,0.38420704,-0.052813053,0.047124393,-0.57870966,0.8857718,0.54151696,-0.16509946,-0.07376704,-0.45900685,-0.114966735,0.1306589,-0.25076324,-0.14758635,-0.14157146,-0.73985046,-0.38403437,0.31832898,0.33420917,0.113581374,-0.102843,0.16796225,0.04931992,0.008044219,0.23915964,-0.40036044,0.038989704,0.24343345,0.43895614,0.011223308,0.14479169,-0.55291694,0.37022573,-0.6290896,0.09261338,-0.25149906,0.18318509,-0.09638414,-0.3981134,0.1691027,-0.08386977,0.31160983,-0.30729225,-0.33579686,-0.14685999,0.6102728,0.025894912,0.19635439,0.706843,-0.26086596,0.097947374,0.079857476,0.56301254,0.99656457,-0.21628462,-0.015213559,0.33942568,-0.09482349,-0.6749228,0.23440515,-0.30541566,0.14332566,-0.050411534,-0.40508258,-0.53534406,0.3691602,0.27549848,-0.14071473,0.013166046,-0.50971407,-0.19159333,0.24945755,-0.21733984,-0.33857286,-0.20382999,0.20830801,0.6490822,-0.23456435,-0.38539657,0.2317031,0.3520738,-0.22185971,-0.4016733,-0.11902857,-0.25746787,0.25457686,0.19900016,-0.27869797,-0.08087627,0.11166116,-0.4500981,0.12102308,0.22408298,-0.34790972,0.07228012,-0.23226914,-0.1311486,0.88575447,0.15705656,0.25877327,-0.58607465,-0.46112493,-0.9145735,-0.33558026,0.45418376,0.024214914,0.0062610805,-0.6408141,-0.080848485,-0.1477519,-0.15815446,0.09115179,-0.4581807,0.3848402,0.035434164,0.50557125,-0.1323215,-0.6084611,-0.01693519,0.28618792,-0.12666294,-0.63446915,0.38538736,-0.061534483,1.0020002,0.057617184,0.06786887,0.41278133,-0.52620834,0.0037786365,-0.29464823,-0.1337303,-0.7141778,0.074437335 +66,0.43715465,-0.24216722,-0.7398023,-0.16327138,-0.37106812,0.19870126,-0.32975903,0.29291037,0.45109197,-0.5252662,-0.051711816,-0.19084032,0.03476955,0.4124922,-0.17409225,-0.8486654,0.02433155,0.25949275,-0.6968455,0.7738132,-0.27056962,0.48803732,0.21621692,0.27545404,0.03613757,0.15490519,0.3451264,-0.29869533,-0.37067306,0.087345876,-0.00855808,-0.14587502,-0.37912166,0.24307506,-0.037852433,-0.23166835,0.2760925,-0.2975926,-0.34272185,-0.7764464,0.42639554,-0.8396506,0.6731863,-0.076973766,-0.23196892,0.119291656,-0.06836288,0.21575552,-0.19869171,0.06702695,0.120703764,-0.41643688,-0.5082314,-0.3223071,-0.27937457,-0.64873546,-0.62026334,-0.15331194,-0.64928645,0.021972923,-0.4318408,0.2027394,-0.3218834,-0.10622602,-0.016156971,0.49105677,-0.38565412,-0.11079997,0.1321022,-0.30347016,0.24059777,-0.8477125,-0.15569365,-0.031294864,0.24851198,0.20907311,-0.15080677,0.53383464,0.34054533,0.5007127,0.19289003,-0.31002346,-0.37377894,-0.12698694,0.3831196,0.3761247,-0.10762002,-0.55310035,-0.08959045,-0.100097805,0.37419152,-0.08016158,0.101112425,-0.32529283,0.07280621,0.07710599,-0.22889926,0.4912621,0.5093588,-0.21676867,0.16100088,0.4174058,0.40833697,0.14022298,-0.10569966,-0.10743564,-0.17122047,-0.52101725,-0.19979377,0.05611877,-0.22810094,0.7755154,-0.2137665,0.16221209,0.54029626,-0.07076109,-0.19158214,0.13283348,0.13789006,0.02216427,0.10568383,-0.09789518,0.36032942,-0.58349,-0.17666884,-0.42780367,0.62904674,0.155889,-0.7878122,0.35468373,-0.45818344,0.09659282,-0.11870428,0.6625287,0.7571068,0.7743523,-0.0044440925,1.008103,-0.47286713,0.13966355,0.01529377,-0.48074758,0.2090438,-0.11277881,0.29443836,-0.5619287,-0.10203865,0.09089091,-0.21706285,-0.0032332938,0.66514117,-0.30123612,-0.13200723,-0.020996107,0.8746898,-0.39289436,-0.20460589,0.5797062,1.1302563,0.7529113,0.066258125,1.43924,0.27064493,-0.45806864,-0.16172251,-0.2442772,-0.8375428,0.3165829,0.27389094,0.052568544,0.46645534,0.09621039,-0.044628058,0.4042375,-0.39343813,-0.11821136,-0.080182604,0.42424843,-0.05200617,-0.22952783,-0.443693,-0.17007808,-0.06655013,0.033022314,0.30656612,0.38620445,-0.023842266,0.51702386,-0.009424557,1.3598348,-0.04378836,0.0452688,-0.026723152,0.32143128,0.2795452,0.091682434,-0.1435615,0.35679388,0.37296793,-0.09027394,-0.62851703,-0.016643971,-0.40578023,-0.60921556,-0.30023026,-0.15026732,0.18009426,0.0078826295,-0.11270393,-0.28908336,0.0776173,-0.569406,0.31809768,-2.0698566,-0.19937159,-0.07712328,0.40244666,-0.13457878,-0.20939438,-0.23783521,-0.5718505,0.46939453,0.37471175,0.52960104,-0.5725422,0.31272975,0.6177729,-0.6390312,-0.237221,-0.44676766,0.029005425,-0.0029561769,0.38094223,-0.13041689,-0.48107925,0.06001799,0.07837799,0.546689,-0.03986669,0.06334696,0.45935702,0.43621543,-0.030469676,0.3556848,-0.204251,0.5405356,-0.26650453,-0.016078664,0.20725703,-0.28760847,0.24771757,-0.46491042,0.23846322,0.5502421,-0.44076428,-0.74646956,-0.36250058,0.028522486,1.2043008,-0.43322852,-0.5984662,0.22592111,0.25976324,-0.17066891,0.22028221,0.5106206,-0.18678473,0.034787606,-0.6654466,0.097703815,0.12383231,0.20034425,0.13965312,0.11229583,-0.44691488,0.5832366,0.026264722,0.5223901,0.40496215,0.36989462,-0.18555216,-0.43635607,0.3262861,0.9543348,0.18917787,0.16407843,-0.3016627,0.025576582,-0.40145817,-0.21285428,-0.055625085,0.40465376,0.89563084,-0.1048921,0.057172477,0.26036152,-0.14854287,0.08531212,0.028064495,-0.58533674,-0.24649303,-0.0013527138,0.42117724,0.8647898,-0.084014,0.42676213,-0.019114727,0.3596867,-0.13598238,-0.5389583,0.9536508,1.050999,-0.3023843,-0.12998152,0.6932034,0.16336653,-0.3022789,0.6824875,-0.71949786,-0.54564816,0.58825356,-0.09547905,-0.46354163,0.14433272,-0.3880987,0.085408844,-1.076549,0.41187432,-0.17565636,-0.41063228,-0.5959303,0.10456789,-3.1632805,0.11630296,-0.4109234,-0.09503964,-0.1715213,0.09519658,0.14230092,-0.5810148,-0.54151255,0.19731502,0.27873352,0.7143771,-0.029515183,0.061674833,-0.21026815,-0.31770355,-0.08174429,0.14191456,-0.050192893,0.19772618,0.012089153,-0.6949732,0.09275923,-0.32281855,-0.31930128,0.11202681,-0.40095642,-0.23235364,-0.3483437,-0.66008633,-0.4387703,0.69729334,-0.50456303,0.044878554,-0.25907955,0.17841922,0.13280953,0.28361943,-0.29268116,0.097581826,0.28977713,-0.12334174,0.13818176,-0.2318964,0.17688923,0.1687278,0.21048649,0.53963023,0.009815837,-0.047227368,0.6621485,0.72605544,-0.04112761,0.7338404,0.52194154,-0.013219204,0.19108824,-0.40233073,-0.2617859,-0.7175767,-0.43518594,-0.10854644,-0.41205832,-0.48424387,-0.01806282,-0.5087965,-0.9219672,0.6273308,0.10856632,0.08641106,0.17357723,0.3122622,0.447888,-0.29221603,-0.008597751,-0.189852,-0.2629985,-0.48204803,-0.29621157,-0.81392497,-0.51500887,0.0353222,0.9948109,-0.13012905,-0.18382698,0.082030036,-0.13832934,0.24232139,0.35136008,0.010997097,0.10095674,0.2934798,0.19515015,-0.9278543,0.57871395,-0.15651412,0.06237295,-0.6204424,0.03894942,0.4921186,-0.75689507,0.21073218,0.65450585,0.105905175,-0.057788193,-0.49896535,-0.34714246,0.19151516,-0.03119806,0.24819809,0.2408114,-0.70895195,0.5368339,0.17903388,-0.38931838,-0.9094804,0.2624456,0.0684009,-0.35444713,-0.06831881,0.46463332,0.022877524,0.0933006,-0.7259631,-0.010526583,-0.59177774,0.31811392,0.104277454,-0.11957606,0.38933113,-0.022345548,-0.28394952,-1.09139,0.013202113,-0.49606594,-0.092275105,0.2785169,0.1602593,0.25309494,-0.092491984,0.27445647,0.3404357,-0.5159794,0.035735223,-0.24450396,-0.401631,0.42639783,0.46810186,0.3420764,-0.49874875,0.54749423,-0.2362624,-0.20504557,-0.20931089,-0.031724244,0.48160183,0.4380953,0.26772776,0.35246328,-0.16451477,0.11006403,0.9096481,0.19281109,0.20975213,0.40522692,-0.39306664,0.41174075,0.039687123,0.45479226,0.07283452,-0.5923479,-0.11336216,-0.12608303,0.06655708,0.60108966,0.15871832,0.60288334,-0.134133,-0.38686618,0.060679078,0.1379373,0.2624435,-1.0040458,0.5000122,0.31693754,0.66266924,0.66453815,0.060749307,-0.030365646,0.586613,-0.15770605,0.24135892,0.20935589,-0.24130511,-0.48819074,0.4422814,-0.64405507,0.1245273,-0.19288723,0.021753952,0.17521884,0.037469853,0.45295516,1.0401173,-0.14548217,0.13713746,0.031449784,-0.029955959,0.112091996,-0.26978573,-0.07810266,-0.5692638,-0.42834315,0.57555443,0.17953347,0.29768276,-0.31427845,0.04471514,0.3258366,-0.21632677,0.43650642,-0.006866167,0.0038949896,-0.06928403,-0.585494,-0.30816138,0.44342896,0.2734489,0.020239927,0.0066123554,-0.048525702,0.14125471,-0.339255,-0.25294915,-0.116562605,-0.7341879,0.09093071,-0.35676286,-0.4493462,0.78896683,-0.103620894,0.2567494,0.18289427,0.15984742,-0.37527692,0.31826726,0.27276573,0.7326164,0.25222003,-0.46535793,-0.16555804,-0.24403657,0.2537646,-0.35792813,0.08630466,-0.01767529,-0.0066250213,-0.75081205,0.65701294,-0.32540625,-0.022413751,0.14257215,-0.47479585,-0.03214382,0.44541118,-0.18637614,-0.16228016,0.2507832,-0.03720324,-0.19006789,-0.3759254,-0.48450473,0.06825324,-0.13887091,-0.027495077,-0.22545283,0.06115681,0.008543819,0.37716892,0.041977208,0.016005656,0.3783085,0.05656879,-0.37512162,-0.13471545,0.36321017,0.50936896,0.08317677,-0.114697576,-0.44873393,-0.328024,-0.30576092,-0.07081171,-0.00816032,0.21582687,0.1518038,-0.3712161,0.7592456,0.14425935,1.0435461,0.063524045,-0.34165084,0.10579836,0.6579613,0.060210112,-0.058539633,-0.43003595,1.0731525,0.64182,-0.08984976,-0.090065815,-0.628015,-0.012366693,0.32648328,-0.27291206,-0.1524177,-0.17098038,-0.6395133,-0.5839024,0.31143978,0.3167124,-0.12329548,-0.26710406,0.16146903,0.09211186,0.39493647,0.22883831,-0.7107007,-0.14041375,0.44610998,0.05332938,0.17942508,0.3266692,-0.24175029,0.25014886,-0.68167526,0.116502605,-0.3161717,0.046453357,-0.002526991,-0.29876962,0.31567916,0.35724935,0.3208566,-0.3073655,-0.46092677,-0.2956761,0.5268101,0.23608871,0.3979144,0.809315,-0.41428414,-0.13340639,-0.10406429,0.6888425,1.2648653,-0.3379128,0.17615849,0.5232105,-0.6077292,-0.6361453,0.40145555,-0.3364385,0.10568788,-0.31504878,-0.44442526,-0.73550195,0.123633124,-0.07394724,-0.29342863,0.15146117,-0.49060258,-0.2651993,0.18520886,-0.34010616,-0.19746284,-0.17082989,0.03076478,0.66679114,-0.4912564,-0.37537792,0.09889933,0.3564994,-0.16228831,-0.41994974,-0.042990874,-0.3933121,0.3437232,0.31669155,-0.41875657,-0.13230295,0.11557433,-0.710269,0.21709031,0.262387,-0.42898986,0.03393702,-0.34403312,0.0639149,0.79202366,0.037933037,0.22404458,-0.41736627,-0.37706116,-0.9167964,-0.32737935,0.1287539,-0.11011493,-0.06087408,-0.6572606,0.15001924,-0.3023887,0.058966924,-0.12980433,-0.3422983,0.39757738,0.05584674,0.4954636,-0.19516546,-0.9609978,0.02847214,0.24661069,-0.34746432,-0.4613938,0.41496292,-0.2846589,1.0490972,0.010954052,0.0072531453,0.33633718,-0.836515,0.26679084,-0.338483,-0.22517163,-0.33752644,0.031290226 +67,0.3525177,-0.2441336,-0.48671722,-0.04837264,-0.12587814,0.0005936265,-0.18468933,0.56269586,0.22624832,-0.47997445,-0.044181246,-0.075574376,-0.0304617,0.2745201,-0.14478257,-0.32670364,-0.116487026,0.09612672,-0.3726819,0.47130638,-0.40879616,0.32711315,-0.029487459,0.43162,-0.027884746,0.30520192,0.11064283,-0.00939382,-0.0526272,-0.3014988,-0.017330825,0.18550438,-0.52027136,0.24158533,-0.20809168,-0.32250258,-0.11352583,-0.5624888,-0.2502275,-0.6801079,0.27035162,-0.65019,0.51089835,-0.013335927,-0.3535153,0.51748383,0.05207844,0.19023943,-0.13533269,-0.05686548,0.16989699,-0.09478063,0.00702007,-0.23043147,-0.16461903,-0.22095805,-0.53462243,0.14094798,-0.3552171,-0.12678441,-0.22606832,0.17677635,-0.32131213,0.016914463,-0.06285901,0.5213672,-0.38049176,0.016255148,0.0050473986,-0.16244154,0.29384163,-0.47839603,-0.10553773,-0.098383136,0.22074464,-0.19821341,-0.23659874,0.18538012,0.16770318,0.4833232,-0.08703471,-0.1765075,-0.4467354,-0.039637692,-0.020808328,0.6515911,-0.23558024,-0.45343396,-0.026604425,-0.00045763652,0.15314485,0.11456443,0.054677453,-0.28407568,-0.23377761,-0.07162986,-0.27045295,0.3739821,0.5004187,-0.2630348,-0.27082497,0.37402254,0.49748394,0.07659287,-0.20711292,0.0017798861,-0.05454713,-0.44603464,-0.11736416,-0.12390296,-0.100125104,0.33860913,-0.1801592,0.30356905,0.5538526,-0.16785653,-0.127046,0.17351076,0.018758977,0.08551603,-0.22654037,-0.2955417,0.22840041,-0.37298355,0.096053,-0.12533355,0.66265166,0.03448329,-0.887123,0.45226023,-0.42768702,0.09960856,-0.016808918,0.4050174,0.7176024,0.47716826,0.25763565,0.6065126,-0.46293637,0.093253404,-0.0604441,-0.25723147,-0.0005254626,-0.10842376,-0.08331544,-0.43649864,0.05914645,0.14344215,-0.17534767,0.2101733,0.3436066,-0.45276794,-0.06434407,0.24472716,0.7805488,-0.17483447,-0.07673684,0.9013936,0.9906615,1.0719311,0.04690879,0.95293087,0.09578622,-0.14436848,0.15656473,-0.28827813,-0.6674882,0.2626096,0.33344522,0.22989464,0.24911398,0.100163236,0.051978193,0.42300937,-0.31872854,-0.10577682,-0.123867325,0.13831395,0.18056542,-0.15656625,-0.420953,-0.20033596,0.045416158,0.13029666,0.032162417,0.29264227,-0.24142273,0.40558013,0.060256157,1.6310399,-0.029572904,0.068970665,0.16454703,0.54726344,0.23646235,-0.22539042,0.029542888,0.26281795,0.25081405,0.041609026,-0.5383493,0.06474432,-0.035593294,-0.5522452,-0.116965406,-0.3110045,-0.13972554,-0.06438854,-0.44886765,-0.19762586,-0.17158021,-0.38070652,0.39496514,-2.9388504,-0.12176306,-0.0033277492,0.29809648,-0.2122189,-0.4670307,-0.03935578,-0.49514335,0.45365068,0.41868213,0.5012687,-0.660047,0.31353492,0.37193772,-0.44681492,-0.08773377,-0.61384004,-0.07981505,-0.14521307,0.37939993,0.08814227,-0.022888303,0.016734887,0.12085679,0.5144576,-0.01456825,0.017085552,0.20614424,0.37803715,-0.031829942,0.3634927,-0.05111083,0.44204178,-0.26862946,-0.21841595,0.36751625,-0.43888336,0.07705593,-0.17606796,0.16077305,0.2982019,-0.4291802,-0.9134712,-0.6297934,-0.077193975,1.2108915,-0.021034753,-0.37866887,0.33787888,-0.3706223,-0.3955552,-0.11108438,0.37127754,-0.096151404,-0.056898404,-0.7632765,-0.04531374,-0.18028322,0.110236205,0.0017521243,-0.11276755,-0.44047084,0.6483648,-0.06684447,0.48047745,0.42252582,0.11816316,-0.34015554,-0.33208716,0.03804854,0.86380696,0.33476657,0.18820728,-0.21604046,-0.118038006,-0.24302727,-0.08129915,0.13715753,0.4814581,0.47677782,-0.0015136977,0.06423629,0.19586508,-0.074364334,0.015966577,-0.2054433,-0.13121308,-0.14874405,0.053364046,0.588914,0.6823228,-0.1353084,0.4100141,-0.03953463,0.23087423,-0.21952893,-0.38810146,0.43349257,0.9256676,-0.03867478,-0.29926807,0.51645285,0.40188235,-0.20000571,0.40331656,-0.4390824,-0.26008925,0.24574909,-0.23908709,-0.4225741,0.2477452,-0.2444381,0.13566995,-0.7731752,0.20104104,-0.14828543,-0.56835914,-0.620959,-0.25180995,-3.17188,0.12648377,-0.11523536,-0.2831608,-0.12339724,-0.11518066,0.13153768,-0.46291882,-0.48766384,0.17119595,0.080785066,0.60776025,-0.053108033,0.12609854,-0.23613872,-0.30690968,-0.35551882,0.17855969,0.07406951,0.44866064,0.07079646,-0.3864909,-0.1997549,-0.08794702,-0.47197708,0.050202597,-0.4625587,-0.3747991,-0.08559697,-0.3976138,-0.2961052,0.58513474,-0.24988696,0.079749666,-0.17046402,-0.058845863,-0.12090419,0.32701504,0.19813119,0.021844236,0.031645205,-0.052005425,0.26919687,-0.2788051,0.29110956,0.043375604,0.24655409,0.39843366,-0.21754195,0.15410215,0.43124336,0.74728894,-0.1541693,0.8211578,0.43286768,-0.009687594,0.3812451,-0.27986193,-0.2697173,-0.47258633,-0.21243344,0.053488277,-0.3682715,-0.3896879,-0.06547548,-0.36781365,-0.78278834,0.49318543,0.033120938,-0.028751383,-0.027922846,0.4077929,0.47668368,-0.17081502,-0.026102142,-0.020501455,-0.12251624,-0.48410589,-0.3945895,-0.5399725,-0.48815447,-0.02376655,1.0227458,-0.083978005,0.060284223,0.013600274,-0.043161534,-0.06099337,0.091729134,0.07782174,0.1837602,0.27743772,-0.082333736,-0.6689129,0.4663199,-0.07832958,-0.26809806,-0.49550742,0.25873664,0.5980039,-0.42706954,0.43909723,0.22727123,0.12435781,-0.09583893,-0.52590376,-0.038121343,-0.08188841,-0.22841927,0.46647173,0.28868797,-0.8145489,0.55340654,0.34680158,-0.24837612,-0.65266776,0.31036994,0.0014181972,-0.2507379,-0.12342854,0.20743427,0.18974826,-0.032579243,-0.13801078,0.23813473,-0.42781022,0.18707378,0.13387513,-0.06699196,0.39350775,-0.2940984,-0.05172615,-0.6556328,-0.029972918,-0.43327585,-0.30123058,-0.00033837557,0.1772757,0.1683124,0.15042639,-0.1276699,0.45188376,-0.2591647,0.1525937,-0.19412346,-0.19424814,0.28840807,0.34168777,0.45704412,-0.4123923,0.57839787,0.04063863,-0.11753426,-0.070859864,0.029676756,0.48302066,0.029812038,0.26833975,-0.017461991,-0.17348196,0.25322777,0.62528527,0.28804246,0.36840346,-0.13925794,-0.22416976,0.29622442,0.06141629,0.1827297,0.016798638,-0.4841804,-0.0091766035,-0.18331668,0.15274662,0.46304348,0.019674782,0.33394632,-0.21831255,-0.312507,0.12227054,0.22648512,0.023690462,-1.1769584,0.34118113,0.15337975,0.8499882,0.42809227,0.03918883,0.12563802,0.7541654,-0.22406133,0.1273794,0.31184575,-0.028622884,-0.4822646,0.4461899,-0.7569701,0.49900156,0.0065931915,-0.033127174,0.0335783,-0.13011229,0.45143902,0.68032455,-0.107395284,0.042468708,0.047073435,-0.3108019,0.08801663,-0.37583894,0.056215063,-0.44529456,-0.17255244,0.67347693,0.39004248,0.35626984,-0.18278824,0.043247547,0.123330034,0.030400263,0.0028335412,0.018355023,0.08687553,-0.14152892,-0.5150626,-0.07807052,0.5436539,0.045114372,0.20120949,-0.0014835835,-0.23859288,0.3051049,0.01450518,-0.21838512,-0.09234789,-0.54010016,0.095227,-0.19569908,-0.3826913,0.49391755,-0.03473459,0.27649015,0.20461035,0.0841671,-0.20802742,0.28913447,0.20435375,0.75753933,0.037350908,-0.0099349655,-0.31518078,0.21038672,0.1435864,-0.21585824,-0.27659315,-0.24931815,-0.10088495,-0.55020565,0.29521072,-0.06681699,-0.3632229,0.12982264,-0.06755579,0.10376271,0.60475296,-0.048496947,-0.13383794,0.036459718,-0.16887191,-0.19980818,-0.27563617,-0.05194244,0.4375685,0.1926178,-0.124508634,-0.015998082,-0.13884374,-0.19287458,0.48060504,0.017926788,0.4221,0.24811037,0.05973679,-0.36082125,-0.033068195,0.047199264,0.39173558,0.0035874844,-0.06640796,-0.23961583,-0.45886004,-0.3281583,0.18799934,-0.085402995,0.283274,0.07174573,-0.18185572,0.67950344,0.011408852,0.9585617,-0.0023397484,-0.35063592,0.24985479,0.3698829,0.1421096,0.09026659,-0.40493634,0.8981264,0.43290466,-0.09892787,-0.11780499,-0.2729665,-0.006798776,0.107596315,-0.24326004,-0.1590929,0.033960093,-0.69705516,-0.19706208,0.28489247,0.21444088,0.1529497,-0.18698575,0.043506388,0.26292345,0.030123234,0.28384697,-0.37028074,-0.06696983,0.38023096,0.2898717,-0.06128168,-0.016057063,-0.53854877,0.34311572,-0.45160753,0.05238872,-0.27483168,0.13907434,-0.26997843,-0.19719873,0.27233636,0.07886292,0.29668623,-0.23575585,-0.38915756,-0.2292632,0.42003667,0.0048249485,0.1350424,0.3054939,-0.26206544,0.07135752,0.06486796,0.35974553,0.88963825,-0.26317364,-0.031982463,0.3755532,-0.29130232,-0.5565475,0.23992243,-0.22702573,0.19839881,-0.006040419,-0.08499873,-0.47998208,0.24638815,0.23022692,0.13336284,0.056257073,-0.55528176,-0.25259712,0.29464656,-0.4041127,-0.19626738,-0.22141026,-0.024067935,0.7054571,-0.22340089,-0.33672965,0.08557474,0.2568801,-0.23165788,-0.5872931,0.027573442,-0.3394228,0.27709055,0.118469715,-0.2871326,-0.113620475,0.08279478,-0.43867332,0.14349604,0.17974322,-0.36907476,0.017071025,-0.4593598,-0.05143971,0.90422666,-0.13211398,0.33987758,-0.46447575,-0.5085209,-0.8976633,-0.32462355,0.41822654,0.09958723,0.07657436,-0.62735176,-0.1155767,-0.19441031,-0.3047193,-0.017296592,-0.36349782,0.418454,0.16655967,0.25613144,-0.19526742,-0.69701725,0.040620767,0.06915136,-0.172819,-0.53516537,0.43557733,0.18518187,0.76985294,0.09921651,0.08073984,0.3550638,-0.49721658,0.003738316,-0.16963919,-0.25544694,-0.5741257,-0.002411906 +68,0.519212,-0.107189655,-0.41829392,-0.18114695,-0.1471681,0.24370064,-0.23653474,0.47950065,0.20843846,-0.42020276,-0.15360428,-0.09672555,0.10804318,0.36310536,-0.12578341,-0.7669274,0.2104314,0.08894944,-0.40195853,0.5256151,-0.56524974,0.30029237,-0.017765522,0.33442307,-0.07606048,0.28553087,0.3194556,-0.27092963,-0.20248963,-0.16078514,-0.03975155,0.30249745,-0.6162116,0.21315405,0.04122782,-0.16552347,0.102070585,-0.2575858,-0.35969284,-0.70535797,0.13060248,-0.76956725,0.3080656,0.059524342,-0.28083506,0.26998842,0.009129107,0.25147086,-0.39754808,0.0428627,0.08795398,-0.09559294,-0.18193637,-0.21785691,0.025764138,-0.42325762,-0.523291,-0.08454617,-0.3648238,-0.2379524,-0.28676414,0.16253318,-0.3260776,-0.11552139,-0.04544672,0.49809963,-0.4285091,0.013116745,0.25160775,-0.29567617,0.3094352,-0.4133161,-0.08793589,-0.092805274,0.3559386,-0.19349065,-0.12667112,0.07142952,0.25996685,0.36542553,-0.02994734,-0.15668108,-0.42055303,-0.15224014,0.16074958,0.49417642,-0.14489715,-0.68787444,-0.101790614,-0.123136885,-0.17427017,0.06777305,0.07664253,-0.20514734,-0.11498895,0.05552651,-0.33327055,0.42654216,0.4519791,-0.3674366,-0.30548573,0.31767842,0.6407694,-0.006986485,-0.13607225,-0.071956545,0.08224548,-0.6123596,-0.17373261,0.090921275,-0.13557547,0.53448224,-0.19146882,0.29184958,0.66209483,-0.21212332,-0.0649228,0.16786021,-0.012605358,-0.002957766,-0.08365612,-0.14046785,0.23697624,-0.3485393,0.048377104,-0.19677374,0.80316705,0.27216274,-0.7181295,0.37540036,-0.52764374,0.045200165,-0.20027986,0.41726208,0.44073808,0.30728996,0.06560724,0.65006375,-0.44379044,0.011830339,-0.12314631,-0.39829892,0.0067705833,-0.10110169,0.03740633,-0.41538364,0.02956796,0.15512031,-0.13971391,0.016248317,0.2488179,-0.5532571,-0.063575745,0.1640345,0.8397952,-0.3116626,-0.21050715,0.5660356,0.89494747,0.863293,-0.003235684,1.1112864,0.35686237,-0.12792513,0.11801262,-0.48245636,-0.6364575,0.34068018,0.32321307,-0.026445223,0.26092362,0.0257922,-0.039757315,0.38929474,-0.22348844,0.05051699,-0.14147247,0.39755392,0.1967986,-0.084099606,-0.3579988,-0.2944888,-0.09383345,-0.069483526,0.3518489,0.17373496,-0.09428294,0.33904406,0.04892804,1.6007123,-0.049721774,0.18448117,-0.037296705,0.48123023,0.22673467,0.060822632,-0.1284038,0.28268278,0.081966996,0.14726672,-0.581277,0.18456022,-0.13646519,-0.4345055,-0.1784362,-0.3144991,-0.025239848,-0.16743381,-0.3573995,0.0396025,0.028465904,-0.21335107,0.47284222,-2.7330983,-0.23319277,-0.0198772,0.40122128,-0.29544008,-0.26177555,-0.10202512,-0.50785565,0.25983423,0.41740942,0.5942215,-0.649009,0.50147367,0.5288013,-0.46572143,-0.21431798,-0.5521512,-0.08870078,-0.023379456,0.4097443,0.14677851,-0.09100192,-0.068574354,0.21215259,0.40869725,-0.074565426,0.059304018,0.19232823,0.39598405,0.033461288,0.4348624,0.026764873,0.5493095,-0.17365101,-0.15199777,0.3131681,-0.4389055,0.25600132,-0.12724501,0.00660118,0.28144276,-0.17840736,-0.968331,-0.6870167,-0.27781513,1.1768748,-0.20872134,-0.23352626,0.076948985,-0.08801273,-0.2785985,0.1346934,0.34993333,-0.07153591,0.050609156,-0.78393894,0.124308735,-0.04743652,0.26190633,0.03372664,0.014499889,-0.4964625,0.6620516,-0.07917041,0.420825,0.29021138,0.28822502,-0.2699418,-0.5283355,-0.0549039,1.0231584,0.19046912,0.16738793,-0.24308985,-0.3009047,-0.36181146,0.02678176,0.039540313,0.6760873,0.63817596,-0.011552792,0.027566288,0.25929427,-0.08515319,0.09561682,-0.15076986,-0.4098169,-0.055269405,0.11066489,0.5877179,0.6241503,-0.18697184,0.43694064,-0.061448004,0.3753661,-0.25592238,-0.3136975,0.54823846,0.888896,-0.13465928,-0.19510664,0.5045949,0.48622754,-0.36128098,0.3421151,-0.78374475,-0.40674335,0.39311314,-0.23327166,-0.34656987,0.18590467,-0.23303747,0.15051506,-1.0025584,0.45856407,-0.35401356,-0.41646945,-0.45288882,-0.11691479,-4.204275,0.14217879,-0.0900276,-0.12057889,0.06492331,-0.073977195,0.10811085,-0.68470633,-0.49180084,0.19547042,-0.105898365,0.6153652,-0.04354755,0.31153858,-0.31025535,0.019894926,-0.13978586,0.3449783,0.11343871,0.20539401,0.17532529,-0.50114596,0.0995473,-0.10491101,-0.31058392,0.24111931,-0.65519494,-0.5318833,-0.048618115,-0.56021047,-0.21818113,0.69625896,-0.50655967,0.07934865,-0.136443,0.13861725,-0.22353818,0.3618419,0.010923771,0.045652114,0.117052674,0.012482336,-0.10296056,-0.31268832,0.44145772,0.03390834,0.32232857,0.382376,-0.113789305,0.124706835,0.66478986,0.5290617,0.13330144,0.56581646,0.3171952,-0.04783474,0.24467763,-0.35610926,-0.20843233,-0.39794022,-0.36960799,-0.037844893,-0.29247594,-0.34093386,-0.13348225,-0.3417013,-0.6267538,0.46368524,-0.001650205,-0.10436409,0.040602904,0.13934258,0.42589357,-0.22660254,0.018576149,0.012228558,-0.107789055,-0.5429956,-0.21149829,-0.537642,-0.3820524,0.2027352,0.8992777,-0.24792594,-0.009816926,-0.082520895,-0.15609524,-0.074752115,0.15389475,0.075974084,0.07460204,0.36592543,-0.07785343,-0.6840293,0.40416113,-0.25918388,-0.13162646,-0.52237386,0.13723055,0.67561847,-0.6139114,0.4783049,0.47120878,0.032546613,-0.00056672556,-0.3366937,-0.32900384,0.13017753,-0.17577985,0.3285699,0.06307875,-0.73861843,0.27751023,0.26171502,-0.33303246,-0.6473842,0.604747,0.051289264,-0.39146832,-0.114024214,0.3597738,0.2244668,0.012813857,-0.35169923,0.115931585,-0.4108775,0.15905842,0.13629235,0.010992593,0.55911076,-0.15985104,0.020149764,-0.7385142,-0.2507541,-0.46603584,-0.28088224,0.15974535,0.07909858,0.009299987,0.24068376,0.11833068,0.3822273,-0.37500557,-0.021349732,0.053112857,-0.3670435,0.46288103,0.39052588,0.4124317,-0.37867266,0.56055933,0.064929985,0.051661056,0.06609761,-0.020314272,0.43689108,-0.03833119,0.42463797,0.20683418,-0.15370561,0.34766597,0.7285392,0.27021435,0.4905626,0.1770022,-0.17093365,0.1837959,-0.005208703,0.1680538,0.060456898,-0.51729465,0.08042038,-0.18196389,0.10433845,0.4362242,0.14862157,0.3067675,-0.041557528,-0.5271512,-0.03169865,0.1695861,0.0093743615,-1.1795352,0.33967465,0.19730988,0.82899886,0.484608,-0.083447605,0.20489396,0.6770834,-0.08207902,0.14162377,0.28032488,-0.1464781,-0.5720011,0.5008862,-0.6080045,0.38781452,-0.059369538,-0.036543686,-0.12761185,-0.21003231,0.19742033,0.8452424,-0.13259196,0.11302651,-0.07799658,-0.32449082,0.057201155,-0.42911798,0.1861461,-0.6237932,-0.1042137,0.544611,0.62424725,0.34970707,-0.054705754,-0.00822266,0.18715623,0.003744766,0.21175545,0.03465327,0.042478826,0.09176559,-0.7721239,-0.26149604,0.59726536,0.13297015,0.19434786,-0.08667528,-0.111039914,0.42968205,-0.22893715,-0.09611772,-0.13868468,-0.5700023,-0.036883537,-0.29199535,-0.41023147,0.51653063,-0.16739175,0.31240872,0.2030437,0.020150108,-0.24978036,0.244327,0.15314029,0.6550027,0.15861365,-0.19878127,-0.41404024,-0.01768173,0.22273019,-0.19370867,-0.08252353,-0.36047316,0.007469746,-0.5262941,0.3128595,-0.12585825,-0.30216742,-0.037850972,-0.19893393,0.02766976,0.52523875,-0.09860109,-0.21495852,0.06486286,-0.109561495,-0.15888415,0.13103077,-0.23596652,0.2296075,0.23519042,-0.13649176,-0.07012807,-0.14001265,-0.1804285,0.34955657,0.059443694,0.31637383,0.47850704,0.24975897,-0.29519764,-0.17090295,0.20414454,0.57515556,0.0027215665,-0.11458281,-0.38017765,-0.46162897,-0.32468572,0.19288942,-0.1282016,0.25534087,0.1282492,-0.4204459,0.5227399,-0.05109844,1.1089776,0.11411874,-0.3151724,0.11851837,0.43408495,0.21375711,0.09658051,-0.44365498,1.0017909,0.46832755,-0.24948193,-0.11864038,-0.39084676,-0.10234451,0.011379182,-0.15399861,-0.22636932,-0.034257613,-0.6199936,-0.2768707,0.20860086,0.19291472,0.23653406,-0.008912655,0.05951225,0.23965746,0.10908798,0.35898727,-0.52982795,-0.08503126,0.3880531,0.25938493,-0.017476188,0.11688569,-0.28532282,0.40876848,-0.4618459,0.1283819,-0.34528005,0.1761237,-0.23538803,-0.20093116,0.27104583,0.18629488,0.26744363,-0.23768498,-0.49339497,-0.24045335,0.45576742,0.2659224,0.048834726,0.6160389,-0.12863661,-0.11469201,0.15114914,0.5105558,0.9014768,-0.34191984,0.065607935,0.61903703,-0.28344116,-0.65196025,0.27132863,-0.2947337,0.19363119,-0.12428439,-0.27569225,-0.71470743,0.36375433,0.18589687,0.0045695123,0.101098806,-0.4829462,-0.17866914,0.31200168,-0.37976155,-0.236826,-0.30589658,0.21452309,0.6113385,-0.3992018,-0.11092791,0.10810138,0.2518748,-0.25992522,-0.49104416,-0.20991725,-0.39767283,0.27311018,0.34126928,-0.28575572,-0.21286751,0.07151114,-0.37365162,0.20642668,0.30055723,-0.40603617,0.11578034,-0.2839083,-0.16098088,0.8471206,-0.1382412,0.20188276,-0.63224304,-0.28708458,-0.87651074,-0.33701882,0.5656272,-0.02834951,-0.1380563,-0.5515892,-0.11564994,0.022485316,-0.23426464,-0.13206182,-0.49469185,0.47770035,0.09816216,0.47859353,0.10536877,-0.87923753,-0.035797324,0.19313174,-0.2698312,-0.6330008,0.4289357,-0.1560938,0.81164515,0.066686995,0.16011563,0.470669,-0.45358768,-0.08868037,-0.28311318,-0.12328322,-0.6176196,0.15702698 +69,0.38160464,-0.17680833,-0.4669501,-0.07400855,-0.41797766,0.20374146,-0.13033651,0.3832321,0.18444358,-0.44536886,-0.13606875,-0.022995207,-0.10547247,0.1831743,-0.19259723,-0.5173783,-0.014088874,-0.0029351371,-0.47086993,0.53429335,-0.22532617,0.2552512,-0.087381564,0.35158485,0.29457358,0.28904533,0.08940876,0.024846504,-0.14226262,-0.21310557,-0.087890856,0.25880897,-0.55798733,0.31827113,-0.124583915,-0.36120734,-0.051926997,-0.2776973,-0.128594,-0.82421124,0.33512047,-0.8559372,0.4213509,0.04222644,-0.36233917,0.35489264,0.24075796,0.27842975,-0.062377494,-0.20698169,0.23110117,-0.22741209,-0.033517566,-0.3622799,-0.040468577,-0.4636702,-0.5317508,-0.17405245,-0.5457722,-0.31167603,-0.312708,0.18240039,-0.3519233,-0.11462028,-0.079870105,0.49249536,-0.47532207,0.14423315,0.10432927,-0.23136123,0.2021559,-0.81652343,-0.31773448,-0.0053687883,0.29008225,-0.08496041,-0.19058172,0.47913638,0.19253363,0.22247615,-0.09420598,-0.16576493,-0.2638385,-0.11941655,0.052636385,0.40200296,-0.30097577,-0.23589553,-0.022536682,-0.09673919,0.3747132,0.24631333,0.268681,-0.08714388,-0.075877786,0.10058639,-0.082999006,0.39777088,0.36097792,-0.2231027,-0.077841565,0.38892564,0.54488826,0.22477162,-0.2377537,-0.1615194,-0.011766268,-0.48360178,-0.11823332,-0.0038693207,-0.18343142,0.3662834,-0.07869482,0.24706754,0.71065986,-0.20165825,0.08332586,0.1902461,0.178278,-0.02837049,-0.31643957,-0.3384567,0.34500948,-0.47898546,0.16805574,-0.22577849,0.5794544,-0.07394348,-0.43441582,0.27545607,-0.5266026,-0.0189639,-0.0029780865,0.38230664,0.5697106,0.47089905,0.15691148,0.6808299,-0.30716038,-0.14947273,-0.05907165,-0.14050226,0.15766189,-0.2405574,0.15214333,-0.5665888,-0.01883465,-0.11411309,0.0077394927,0.13280758,0.3167831,-0.66854805,-0.22953281,0.10827469,0.76414925,-0.28063565,-0.000206198,0.78073704,1.1113924,0.88987064,-0.024271939,0.76285493,0.048141126,-0.22643842,-0.014578028,-0.014195825,-0.49290627,0.21109207,0.45740408,-0.18389677,0.26674962,0.074111685,-0.04185875,0.38558483,-0.13931784,-0.19340587,-0.12595633,0.22261856,0.23323083,-0.18662511,-0.2651737,-0.22225983,0.012182206,-0.0317361,0.09054734,0.28604358,-0.31338882,0.40482143,0.14756557,1.4855852,-0.023299823,-0.050534897,0.14900245,0.3745702,0.20603101,-0.12272978,0.1823933,0.4232227,0.1254837,0.2343627,-0.4528079,0.39090225,-0.2295283,-0.592109,0.018596629,-0.36420536,-0.17256978,-0.027904673,-0.43785805,-0.16842754,-0.16762392,-0.16078599,0.33522922,-2.7981188,-0.115911685,-0.17260602,0.35585472,-0.15713869,-0.2341214,0.08488432,-0.27744588,0.36230975,0.26867226,0.4034814,-0.5341222,0.20283021,0.66966105,-0.71400267,-0.0846739,-0.43595833,-0.13279083,0.08488759,0.3639329,0.10043655,-0.055755693,0.13393989,0.17006823,0.3236697,0.0034257707,0.13446851,0.36760992,0.4289119,-0.28742066,0.37669423,0.075664826,0.46970072,-0.30027634,-0.26540878,0.33019155,-0.47874266,0.2831592,-0.07493428,0.1493481,0.52662003,-0.17115995,-0.83058655,-0.6189012,-0.10343353,1.1495574,-0.16764033,-0.62882984,0.19233479,-0.28841883,-0.27749425,-0.11680407,0.45408815,-0.06371124,0.008205205,-0.78744,0.08896582,-0.20074478,0.1557782,-0.011129775,-0.07223185,-0.42898256,0.77725595,0.11681402,0.65733945,0.24220936,0.17996153,-0.5049339,-0.26590946,0.05942335,0.62075627,0.54455835,0.009034923,-0.10066797,-0.15754926,-0.0834411,-0.16491388,0.21952502,0.77291566,0.40228578,0.032858424,0.12067042,0.31293628,-0.124115,0.009418688,-0.1853499,-0.26178038,-0.13692336,0.035809975,0.4858942,0.6656033,0.015859773,0.39669976,0.12523074,0.39314148,-0.07983897,-0.58094317,0.36346468,1.085098,-0.17035572,-0.33881918,0.5248531,0.40849975,-0.39014092,0.36453632,-0.63706297,-0.20326127,0.6179229,-0.17888048,-0.55596876,0.08766196,-0.30760002,0.13137844,-0.63944286,0.32668933,-0.5525738,-0.39705226,-0.6192071,-0.19828212,-2.7759697,0.17113264,-0.30625886,-0.17912817,-0.3855737,-0.19041236,0.18470483,-0.83415395,-0.4810546,0.1794704,0.075228654,0.6975528,-0.13789175,-0.016828852,-0.27096587,-0.4842289,0.08096524,0.2979872,-0.018398464,0.17530116,-0.09794963,-0.3201808,-0.041425772,0.12829867,-0.43149439,-0.009148433,-0.51971364,-0.6112584,-0.09515711,-0.44317845,-0.27469835,0.7158248,-0.332287,0.019801984,-0.11879553,0.10768858,-0.07033368,0.07542561,0.11516007,0.18717703,0.073019646,-0.011513174,0.08391612,-0.38510093,0.35781866,0.06311829,0.48897317,0.40022755,-0.10299592,0.2947928,0.5026573,0.54284626,0.042786717,0.82916725,0.18054451,-0.15959825,0.29330727,-0.33011442,-0.35395566,-0.62183255,-0.20605032,0.20831439,-0.26063007,-0.325174,0.023432553,-0.3312221,-0.7136846,0.5911326,-0.038043555,0.3261233,-0.13664182,0.32504925,0.49171707,-0.16573587,-0.15154035,0.0114360945,-0.14400871,-0.559089,-0.20472308,-0.6361429,-0.4763928,0.13388409,0.71847695,-0.37479678,-0.007517624,0.2280186,-0.107079305,0.20963307,0.0825956,-0.019046525,-0.08332144,0.4104974,-0.024763703,-0.6539437,0.58453643,-0.121223025,-0.17894936,-0.5018113,0.33538723,0.48817492,-0.47719505,0.5026413,0.3879349,-0.07264254,-0.37275615,-0.43515995,0.042681098,0.19497474,-0.14772525,0.3934675,0.32126278,-0.77301776,0.32515064,0.36212516,-0.34496003,-0.5487033,0.5333641,-0.05084955,-0.29007965,-0.14394607,0.43423748,0.2750431,-0.04819702,-0.022455275,0.22783081,-0.48177984,0.21618573,0.04961437,-0.07421887,0.17646909,0.014841947,-0.16630423,-0.68379873,0.3552836,-0.38015202,-0.33523297,0.39300188,-0.14016709,0.022078604,0.40921,0.21678849,0.39799547,-0.2835641,0.042890932,-0.068752386,-0.3298317,0.37400937,0.4941988,0.6484709,-0.3764727,0.46282858,0.011100375,-0.038874593,0.26312807,0.042012777,0.37354064,0.14683358,0.51280284,0.07732684,-0.102189794,0.21386957,0.65445596,0.18285353,0.4330476,-0.109758474,-0.2027377,0.093970075,-0.07067944,0.29753783,-0.10589279,-0.6105903,0.14408675,-0.084434286,0.020394947,0.46840268,0.10168349,0.24199821,0.091801696,-0.37546587,0.06043914,0.28860447,-0.030617664,-1.0958577,0.41449076,0.2791874,0.93067724,0.39681226,0.0761301,0.023965355,0.75483006,-0.2529711,-0.006484351,0.32635644,0.032384507,-0.41527563,0.51931465,-0.71457344,0.4188807,0.050000574,-0.082897834,-0.15507782,-0.12634411,0.14112994,0.6593504,-0.21234097,-0.08480408,-0.02917862,-0.5163969,0.24588577,-0.28231487,0.08490556,-0.35540265,-0.23339626,0.50111586,0.55120856,0.3692646,-0.1963909,0.15223739,0.1012371,-0.18738164,0.31681266,0.022916062,0.10155802,-0.08800423,-0.41311345,-0.09942402,0.3797788,-0.20464495,0.2871689,-0.098461986,-0.17747392,0.22824061,0.041290324,0.016159382,0.0041143787,-0.5946892,0.25367898,-0.2606959,-0.4819756,0.5152744,-0.059334975,0.037181217,0.2291694,0.029438917,-0.2202812,0.3670656,0.17846371,0.68434465,0.057044275,-0.12291243,-0.34554508,0.14696994,-0.08566813,-0.117310576,0.091449656,-0.1505724,0.2889777,-0.4805912,0.43860143,-0.15996265,-0.31929484,-0.1545542,-0.23015179,0.047153283,0.4846694,-0.13545753,-0.14449365,-0.27692637,-0.07438086,-0.17842208,-0.2826757,-0.21416497,0.20242132,-0.04993003,0.11534989,-0.27138925,-0.05014004,-0.33645204,0.3347369,-0.14229381,0.45572278,0.39275065,-0.11845042,-0.41364804,-0.062957816,0.20218611,0.40360567,-0.14062546,-0.033762824,-0.34224516,-0.5287969,-0.46187487,0.34606647,-0.11166864,0.29884338,0.076162525,-0.26407692,0.8727301,-0.24584723,1.0545495,-0.21891774,-0.3510089,0.07406759,0.6101352,-0.12818669,-0.03738721,-0.14263794,0.97510785,0.61966133,-0.0616417,0.0037412602,-0.31864664,-0.018393,0.30334774,-0.27689567,0.06330032,-0.06814396,-0.60965455,-0.30437288,0.109023646,0.34103647,0.10223409,-0.14261326,-0.041026324,0.33390623,0.1587653,0.17771038,-0.51469666,-0.2934564,0.2620422,0.17456003,-0.12230022,0.1805421,-0.5371658,0.38260883,-0.5508247,0.20610061,-0.45357293,0.12125029,-0.21272253,-0.18240735,0.19828115,-0.057903327,0.20914373,-0.2830948,-0.33321506,-0.106029876,0.22666477,0.20813057,0.21501483,0.4844872,-0.25796396,0.10034985,0.11354052,0.46879944,0.78066826,-0.14862086,-0.16234167,0.20014109,-0.52863085,-0.6651307,0.24979995,-0.32379016,0.12930445,-0.062107246,-0.10259201,-0.5429725,0.22780071,0.2527807,0.08198427,-0.04244614,-0.7385436,-0.070084296,0.09155947,-0.5129131,-0.17691824,-0.31977472,0.051951025,0.4783071,-0.24539338,-0.12665977,-0.012413574,0.32976526,-0.11057858,-0.45416045,-0.0008249368,-0.38933796,0.43374982,-0.016945615,-0.34026164,-0.1703536,0.06544989,-0.38329673,0.34904432,0.17982075,-0.3247456,0.107513316,-0.18499874,0.27860975,0.6183552,-0.11910579,-0.005897301,-0.47521964,-0.42661673,-0.74841183,-0.41550735,0.053006124,0.13602665,0.00433115,-0.6904217,0.056371998,-0.15201186,-0.14060293,-0.22125919,-0.43756613,0.3840138,0.16823806,0.4603627,-0.14108968,-0.9141216,0.25263172,0.1204854,0.026337441,-0.52699506,0.46856216,-0.26779723,0.7648363,0.053846527,-0.020325635,0.0928532,-0.3651159,0.12594526,-0.26715404,-0.3340301,-0.45123926,0.004960724 +70,0.29954842,0.012403837,-0.6212691,-0.11255072,-0.1228308,-0.18957488,-0.13697307,0.4789302,0.060508728,-0.54482406,-0.1987112,-0.34823248,-0.061140902,0.4772512,-0.31698337,-0.59018713,-0.1011048,0.01052854,-0.41415095,0.48414728,-0.4409292,0.20426807,0.141185,0.45724717,0.14213923,0.27809462,0.37593627,-0.21034706,-0.2300121,-0.15509956,0.0066736424,0.18449795,-0.45509228,0.0066688233,-0.16374035,-0.5887477,0.07517202,-0.48997203,-0.37699223,-0.6748254,0.44832972,-0.8545979,0.38420963,0.16474345,-0.07900955,0.31302145,0.18019144,0.29110608,-0.19583999,-0.14360122,0.22186849,0.06970802,0.063380264,-0.106627,-0.42054018,-0.44602117,-0.5696174,0.1990198,-0.41102645,-0.29220232,-0.22629002,0.1405176,-0.3593453,-0.07141974,0.037502892,0.37020722,-0.40826225,-0.3057425,0.26928326,-0.1300166,0.41225567,-0.5897256,-0.19349787,-0.13459997,0.19217369,-0.3564989,-0.025337199,0.39734188,0.20952119,0.5211285,-0.058320947,-0.19233635,-0.46774906,0.03080816,0.14327905,0.39154992,-0.23363674,-0.5650963,-0.07286347,0.039799888,0.113460675,0.21622062,0.20738234,-0.27379662,0.036683023,0.22408465,-0.24784593,0.42888206,0.53995603,-0.3662589,-0.23743185,0.15540467,0.5276246,0.19415377,-0.25650012,-0.14717554,-0.0018774526,-0.5370632,-0.17512797,-0.021652648,-0.25779396,0.5602589,-0.05160014,0.34648165,0.7293278,-0.14044727,0.15957542,-0.043174893,-0.14062081,-0.24485527,-0.33311176,-0.16704467,0.18711618,-0.3892784,0.20868932,-0.17203875,0.74100435,0.20431376,-0.7249562,0.43290314,-0.578959,0.13182043,-0.09975547,0.42307255,0.61993754,0.20449409,0.34811702,0.61669177,-0.54755485,-0.01836821,-0.07072712,-0.4354301,0.1711897,-0.08718764,-0.075930186,-0.40713885,-0.1715763,-0.06978271,0.007399954,0.036579303,0.2229538,-0.56145376,0.0837215,0.18704364,1.0422007,-0.29506788,-0.07853549,0.7011099,0.9792227,0.9247078,-0.016393498,1.0531688,0.083111726,-0.23149972,0.52379096,-0.35350063,-0.7583398,0.34606555,0.4482329,-0.33051753,0.21358423,-0.017303405,0.20712946,0.40392905,-0.432745,0.12966134,-0.36783645,-0.027555278,0.25237912,-0.09756502,-0.2948516,-0.0755296,-0.037727058,-0.0995907,0.076842956,0.24367812,-0.09077127,0.15619956,-0.1310877,1.7430006,-0.041985016,0.15011282,0.1254353,0.54994017,0.1322079,-0.014435291,-0.04106601,0.12536152,0.23009463,0.0680425,-0.5579409,0.08642028,-0.32373926,-0.5797745,-0.10302836,-0.32618394,0.013401313,0.09599326,-0.6294673,0.021975758,-0.043476913,-0.28911266,0.2939039,-2.6823978,-0.2515174,-0.15590702,0.2051676,-0.3530151,-0.30258608,-0.17314522,-0.5507068,0.6249757,0.36934692,0.47449937,-0.5373718,0.40706554,0.50593346,-0.37365267,-0.09046887,-0.6005613,-0.09648158,-0.07769238,0.29504943,0.028891489,-0.122518145,0.0991549,0.10199482,0.37174177,0.005918622,-0.04225691,0.037028704,0.3495839,0.14200158,0.5633289,-0.09988924,0.51648444,-0.3606029,-0.19418344,0.37918156,-0.3618946,0.20256077,-0.13230744,0.25316688,0.275768,-0.49725464,-0.92462283,-0.73226464,-0.49228,1.0952576,0.039015103,-0.31780753,0.35879442,-0.21214531,-0.18473008,-0.17005278,0.4933627,-0.07978934,-0.016249593,-0.8564654,0.16828866,-0.20880143,0.10890698,0.06398115,0.09890078,-0.32488585,0.5940665,-0.01529534,0.37262195,0.50573474,0.16848733,-0.24503501,-0.4552693,0.10829646,0.8172975,0.2915618,0.07580805,-0.18703975,-0.17650393,-0.35996857,-0.14586735,0.09990896,0.38027498,0.8083304,0.0141733205,0.004722509,0.21227323,0.11962968,-0.020961719,-0.10410159,-0.3500187,-0.07812999,0.010066764,0.5234915,0.5874651,-0.31134123,0.39651865,-0.119084574,0.40073052,-0.24254827,-0.36438006,0.5360511,0.9642989,-0.16844381,-0.16254799,0.46747085,0.3929649,-0.3453284,0.45560506,-0.5785442,-0.29008627,0.47205117,-0.20166883,-0.43334273,0.08784791,-0.26973206,0.12018657,-0.94258016,0.21569517,-0.31532288,-0.20643108,-0.6271335,-0.285413,-3.7859743,0.16870888,-0.32230255,-0.13219716,-0.046133537,-0.011225449,0.26876995,-0.68713766,-0.7129711,0.0439273,0.023444531,0.75229007,-0.019349173,0.12808022,-0.20471801,-0.10289085,-0.18041556,0.05454975,0.2726263,0.2979448,0.037264436,-0.5006775,-0.14057095,-0.35460022,-0.52002877,0.11034583,-0.58430034,-0.44934493,-0.26883644,-0.5738991,-0.29352453,0.6672465,-0.35975924,0.06394554,-0.012642262,-0.03893354,-0.13867314,0.49433368,0.19805372,0.16057868,0.12223118,0.0523875,0.045989092,-0.3271323,0.24264108,0.09451103,0.37077498,0.44579458,-0.00415613,0.33022594,0.5186562,0.77121824,0.05047422,0.76095295,0.5103518,-0.026150065,0.28419712,-0.402811,-0.25712422,-0.63944155,-0.37720808,-0.045863207,-0.31743693,-0.62666065,0.01676224,-0.3136203,-0.85224956,0.6325569,-0.05006596,0.090548396,-0.012144466,0.12738936,0.34411883,-0.23115148,-0.054838378,-0.01696476,0.04596168,-0.5995272,-0.35510758,-0.5772022,-0.6028846,-0.04106053,0.89728004,0.04860276,-0.13911393,-0.057306644,-0.18258609,0.06256969,-0.03422037,0.060131606,0.18955436,0.32016352,-0.018531233,-0.678413,0.5730885,-0.08721803,-0.103310145,-0.6023001,0.028203955,0.54283917,-0.64377016,0.45043597,0.2970349,0.05142222,-0.009802878,-0.48845768,-0.20815934,0.009450491,-0.1721357,0.2797685,0.071331285,-0.7063221,0.3995864,0.4218592,-0.23986103,-0.720276,0.45711878,0.05508817,-0.21460299,-0.13910143,0.25267857,0.14147367,0.100068346,-0.233442,0.26949778,-0.31398436,0.13815284,0.38348743,0.059865214,0.5886405,-0.30637315,-0.12008308,-0.6907372,0.09402853,-0.47993454,-0.17926085,0.29294038,0.13431826,0.00899045,0.18727754,0.023642983,0.30848092,-0.14295705,0.17417397,-0.035653777,-0.11497707,0.23114856,0.39735493,0.46725067,-0.56940335,0.59814817,-0.13702062,-0.12030792,0.238108,-0.019199083,0.4884536,-0.031442374,0.2630637,-0.033259768,-0.24481228,0.32701963,0.8961005,0.20888877,0.42326832,0.123958826,-0.19592173,0.26796633,0.08013679,-0.013109411,0.051982205,-0.58677197,0.058942027,0.0546029,0.18087338,0.522004,0.07724865,0.32402158,0.0037498858,-0.36647588,0.041560195,0.11402792,-0.011115453,-1.176857,0.5239661,0.18207023,0.8080234,0.59419125,0.032852273,0.08750297,0.56064814,-0.11908561,0.20847835,0.4006222,-0.14233994,-0.68768156,0.55090934,-0.4164558,0.4791921,0.03449694,-0.11485609,-0.10217668,0.058260594,0.45924643,0.64824754,-0.19785242,0.15397921,0.08358621,-0.14367172,0.2934866,-0.33873972,0.07207372,-0.4329106,-0.08043671,0.6370498,0.5988619,0.14582558,-0.15971813,-0.1510998,0.14104491,-0.01623496,0.13480529,-0.120952725,0.20086196,-0.043851964,-0.64341784,-0.31071663,0.5187609,0.12391268,0.2791725,-0.024800362,-0.33201176,0.25727814,-0.0807912,-0.032594316,-0.10620505,-0.6547435,0.01475894,-0.2684395,-0.38651007,0.37517232,-0.13472438,0.3517336,0.112329416,0.0935692,-0.34809288,0.44755435,-0.027509037,0.5353363,-0.20978417,-0.07041933,-0.41622052,0.14355232,0.16260299,-0.2002096,-0.1180206,-0.38899764,-0.013957338,-0.45066947,0.4584046,0.0192659,-0.19757406,0.009324689,-0.13589056,-0.014017074,0.6152778,-0.070289776,-0.03303819,-0.015739428,-0.13102235,-0.23978665,-0.117065534,-0.0800894,0.2665058,0.03806013,-0.008551227,-0.11049839,-0.17536625,-0.04089566,0.5394737,-0.027182741,0.36638162,0.35335663,0.12488482,-0.3879352,-0.26947394,0.2030387,0.50196576,-0.015057939,-0.13296717,-0.27876946,-0.27148366,-0.31004712,0.25248343,-0.15099195,0.26977798,0.2567713,-0.41037235,0.5588788,0.1934727,1.3683943,0.12330314,-0.24971247,0.026038812,0.43864408,0.04000532,-0.14186168,-0.40917152,0.8728157,0.5378267,-0.09140488,-0.3190408,-0.26424375,0.017937755,0.157442,-0.22599618,-0.2746595,-0.05520498,-0.60538334,-0.33863178,0.21274246,0.38589716,0.17281982,-0.14323412,0.05845514,0.032590788,0.048635237,0.45230108,-0.39100185,-0.30871248,0.32270366,0.31579468,-0.15681903,0.20953576,-0.40493658,0.50102526,-0.40188494,0.030399641,-0.3727869,0.16692267,-0.20626213,-0.33203864,0.12746565,-0.06021694,0.39638,-0.04601827,-0.3416328,-0.21442045,0.43925637,0.18872355,0.29187718,0.60904837,-0.17761834,0.1129997,-0.09838058,0.66448265,1.1023492,-0.21808593,-0.019721087,0.28337544,-0.18348898,-0.43932185,0.18534163,-0.32816723,0.14096926,-0.13683748,-0.11594921,-0.5143271,0.18545416,0.23049338,-0.21390173,0.032876562,-0.46063334,-0.39987668,0.1636496,-0.28263178,-0.3151087,-0.47435164,0.05557235,0.69745356,-0.28029147,-0.08310346,0.1384236,0.24540122,-0.10158161,-0.41869077,-0.124011524,-0.20355597,0.29422352,0.20335642,-0.36896995,0.026703209,0.08532511,-0.43736914,0.29064688,0.028722227,-0.39720115,0.071619384,-0.17568137,-0.08334998,1.0479649,-0.101734005,0.24907997,-0.3793271,-0.51962435,-0.9964281,-0.4444139,0.7059855,0.09063029,0.03172681,-0.5400879,0.028311083,-0.018891683,-0.11943591,-0.013671249,-0.2684933,0.24985263,0.059431303,0.6249642,-0.091382824,-0.6227625,0.016352683,0.07509612,-0.13112281,-0.5181126,0.58964866,0.061388724,0.85747916,0.06984625,0.0060952646,0.33662584,-0.284083,-0.10845647,-0.30888632,-0.21223345,-0.7360249,0.09770673 +71,0.44362333,-0.11140263,-0.3762322,-0.15862761,-0.2549419,-0.12652276,-0.21024789,0.27639645,0.20640591,-0.13975082,-0.08857493,-0.20257911,0.06540651,0.4475276,0.023001866,-0.6995154,-0.17485857,0.011372806,-0.5877277,0.34487128,-0.7027949,0.20211089,0.1252142,0.34947863,0.019893985,0.46524575,0.43402514,-0.22973032,-0.12634058,-0.04558786,-0.03733586,0.14341387,-0.55476695,-0.014051376,-0.010712151,-0.3035027,0.08846994,-0.50099975,-0.15635571,-0.6084003,0.11925793,-0.77441937,0.37920585,0.33243942,-0.09664257,-0.02849047,0.0075514275,0.4960951,-0.44207922,0.24831238,0.22801486,-0.08186625,0.124896385,-0.4422268,-0.035488505,-0.3270389,-0.46364465,-0.0190255,-0.41161186,-0.48379442,-0.083351456,0.09482984,-0.24910249,0.0021694899,-0.24281308,0.32466468,-0.4539908,-0.19394822,0.4702913,-0.27175936,0.42824763,-0.3589537,-0.05890613,-0.08351411,0.27654782,-0.051529624,-0.20865263,0.43341318,0.26595956,0.4873715,0.11970227,-0.2851619,-0.26208875,-0.15668099,0.16673176,0.49886295,-0.28685096,-0.27677146,-0.10412295,-0.028782384,0.10793853,0.43996748,-0.12053824,-0.27854818,0.061009288,0.07970704,-0.11689287,0.17999686,0.495743,-0.43571022,-0.3729287,0.22309005,0.61708486,0.018509533,-0.14402363,-0.11069907,0.027993819,-0.6501164,-0.2415755,0.19990896,-0.0640548,0.3848377,0.048306625,0.014724127,0.8878547,-0.20377378,0.04978672,-0.13236754,-0.22374308,0.049260776,-0.38702378,-0.30898577,0.2474596,-0.44419715,-0.002488443,-0.3173892,0.66377574,0.25790143,-0.77332944,0.46705538,-0.6546263,0.16614076,-0.1053946,0.6859952,0.49526504,0.29986235,0.40525642,0.72354186,-0.4688849,0.2889412,-0.058048844,-0.38353106,0.19914845,-0.14811707,0.24708699,-0.5186854,0.0027796456,-0.101299345,0.05083528,0.16675226,0.25915155,-0.6132949,0.11533018,0.31189027,0.91068065,-0.36252922,0.06774091,0.3553761,1.1416867,0.92034096,0.036869287,1.0332279,0.43457723,-0.367264,0.37091032,-0.6424762,-0.5483106,0.16837457,0.37451163,-0.027519856,0.3572058,-0.17715335,-0.05471274,0.24431084,-0.31603485,0.18400201,-0.117975794,0.14090802,0.100813374,-0.026141929,-0.5705922,-0.16573368,-0.13012291,-0.14071031,-0.034500495,0.20251401,-0.2530726,0.12476875,-0.25584966,1.705634,0.04565056,0.19590138,0.15152988,0.61314213,0.17185126,-0.22907655,-0.026321292,0.43124732,0.26616064,0.0504329,-0.59882385,0.5220348,-0.2506929,-0.47555342,-0.011519296,-0.37614325,0.13187243,0.11702969,-0.4648786,-0.0085191745,0.040543977,-0.2520867,0.4748341,-2.8121846,-0.17373344,-0.07417364,0.30868927,-0.37209696,-0.1756115,-0.19998395,-0.40827227,0.19308901,0.36764738,0.4927895,-0.6567718,0.44709212,0.4337816,-0.4172246,-0.17721115,-0.73542184,-0.04310582,-0.12141367,0.2099792,0.055717263,-0.16497286,-0.107051015,0.2521104,0.72210026,0.0015209743,0.0844534,0.272297,0.31058088,0.17785203,0.65906066,0.010552096,0.42538705,-0.36557707,-0.25336352,0.31546935,-0.29189438,0.18178247,0.0013754964,0.007511769,0.3330896,-0.44509643,-1.0823482,-0.6483488,-0.52093655,0.8494984,-0.36736244,-0.44130185,0.2751965,0.0728805,-0.009925349,-0.007287576,0.49906746,0.071866326,0.27382937,-0.72674817,0.19414201,-0.11108421,0.27127782,0.18167713,0.0010598089,-0.34441543,0.60519713,-0.06564313,0.5016075,0.34836882,0.13734512,0.06749194,-0.262994,0.13989897,0.7878395,0.11270119,-0.045338035,-0.024640236,-0.31178445,-0.019498298,-0.13430923,0.022159917,0.40239254,0.85512483,-0.15513262,0.07716139,0.28911778,0.009626435,-0.07205843,-0.07685077,-0.35194537,0.09012864,0.13133824,0.44399518,0.6913982,-0.19918895,0.43142053,-0.15894802,0.48295003,-0.013049705,-0.3866407,0.5434697,0.4034727,-0.06692291,0.10314345,0.469165,0.50144786,-0.51791364,0.50115544,-0.7227283,-0.15203308,0.6877726,-0.14922287,-0.43421674,0.20586522,-0.28984335,0.13028994,-0.8456221,0.4538482,-0.274692,-0.061960142,-0.35310766,-0.31302074,-3.5162508,0.27307537,-0.17961387,-0.0842507,0.023336694,0.19549267,0.3619015,-0.7064904,-0.47320792,0.023848768,0.21003297,0.43691415,-0.025289426,0.024872933,-0.36228076,-0.13044252,-0.20864697,0.24863347,0.06589888,0.28405717,0.05210415,-0.39620516,-0.011619951,-0.1173567,-0.51955634,0.28964877,-0.5580648,-0.43669754,-0.20186567,-0.5740641,-0.3675908,0.61074924,-0.24674559,0.02105719,-0.13116108,0.19428231,-0.24552284,0.3221767,0.2479614,0.26453868,0.05382424,-0.045356546,-0.024652991,-0.2679948,0.40331215,0.023420205,0.39822325,0.041591473,0.09034133,0.14182971,0.43193325,0.63252896,-0.035488967,0.7042154,0.44572562,-0.16219044,0.18944873,-0.49483648,0.013029269,-0.56193787,-0.5501692,-0.13123314,-0.26803854,-0.63682896,-0.0024165085,-0.2862598,-0.6682962,0.55859035,-0.23332909,0.21585107,0.012216737,0.19673955,0.3914504,-0.27552468,-0.0070801377,-0.043464996,-0.056461375,-0.6429605,-0.17807862,-0.59110737,-0.44224244,0.3270455,0.83503884,-0.3253014,0.06607835,-0.0019187842,-0.2516692,-0.035956662,0.12721159,0.091210365,0.36265984,0.45150423,-0.092209406,-0.5812785,0.36140653,0.04737085,-0.21090868,-0.5631422,0.15379597,0.66462845,-0.8251039,0.74808407,0.22324266,0.26417607,0.08813543,-0.45745888,-0.42865896,0.20735863,-0.14700043,0.4183507,-0.19138496,-0.7231373,0.32226723,0.47819504,-0.5255251,-0.5326032,0.22927086,-0.12276188,-0.45484358,-0.038956486,0.2466283,0.024571726,-0.10692622,-0.16917118,0.2039589,-0.5146797,0.12512344,0.29494557,-0.047498304,0.38910946,0.022378232,-0.27326375,-0.7323691,0.16845801,-0.41123977,-0.332766,0.4375534,-0.00859225,-0.08103128,0.18334821,0.10871097,0.3546367,-0.08309175,0.057746347,0.054792147,-0.27197206,0.3032658,0.41028532,0.31471857,-0.42143854,0.49056047,0.05953343,-0.21300589,-0.11065517,-0.12613675,0.35335234,-0.028581321,0.34159318,-0.34318638,-0.2828943,0.5025598,0.50408834,0.15007725,0.3122261,0.0068143522,-0.03899843,0.48698384,-0.037721984,-0.22097151,0.02699479,-0.33509544,0.05436796,0.13216878,0.20735379,0.37318596,0.31044754,0.23660849,0.0570517,-0.14897755,0.06764179,0.42334884,-0.17054021,-0.64105093,0.4459086,0.24128519,0.58358985,0.590642,0.12815121,-0.2597697,0.6650843,-0.28879595,0.08037873,0.42076904,-0.061015278,-0.52673584,0.7689686,-0.49180606,0.38954428,-0.15242729,-0.029179862,0.032101598,-0.00032117963,0.4077299,0.6406926,-0.21679108,-0.018890325,-0.100844204,-0.05583913,-0.042061474,-0.28448424,0.1569803,-0.52053326,-0.4046609,0.781004,0.29357678,0.33594847,-0.12074191,-0.100157626,0.10633886,-0.13002245,0.4399065,-0.1540653,-0.06907471,0.3918038,-0.56653553,-0.13910331,0.5404657,-0.24865733,0.0149829155,-0.15187526,-0.32502842,0.011378025,-0.28241286,-0.041719727,-0.011105989,-0.597106,0.14450932,-0.31173548,-0.37085587,0.45753127,-0.21806489,0.29367107,-0.010767276,-0.0029320589,-0.18078348,0.36453947,0.023220036,0.9057477,-0.02360073,-0.21717712,-0.2889275,0.115797095,0.16095582,-0.16586702,0.035409845,-0.37251145,-0.06296877,-0.5653347,0.6177939,-0.013724102,-0.42893752,-0.008763618,-0.17190407,-0.09246737,0.65416116,-0.22288588,-0.28094697,-0.19284019,-0.2585897,-0.336311,0.06351761,-0.21434997,0.2820985,0.101599045,-0.066461235,-0.09587854,-0.14802383,0.0077027893,0.67750615,-7.599592e-06,0.36247468,0.12021177,0.14885418,-0.15819427,0.0676735,0.06864255,0.33491126,0.2486812,0.045805123,-0.36354828,-0.31275305,-0.22801399,0.11554883,-0.19808742,0.26369607,-0.022598024,-0.28964138,0.9037324,0.015768697,1.3572845,-0.033122815,-0.21610034,-0.01092164,0.46864027,-0.10253199,0.18359764,-0.45106864,0.85960704,0.68636125,-0.113516144,-0.19382308,-0.2747965,-0.2231542,0.25479883,-0.29371026,-0.015014576,-0.052519374,-0.67550373,-0.43080023,0.14613257,0.23345204,0.28935137,0.040548008,0.09623618,-0.114297345,0.12962012,0.3162776,-0.38038418,-0.30835268,0.20585395,0.3267329,0.034116983,0.18680704,-0.37599263,0.39880106,-0.5345482,0.34309644,-0.4788839,0.02368156,-0.090567484,-0.4115083,0.1070927,-0.039333224,0.2925568,-0.2012461,-0.31724292,0.049221013,0.53421134,0.18265793,0.22235426,0.83724326,-0.2740291,0.05423412,0.05006957,0.5224175,1.3464211,-0.48870543,-0.10804061,0.41526356,-0.2650402,-0.6577839,0.41486773,-0.3870211,-0.25221008,-0.20625417,-0.5230173,-0.5488926,0.21223608,0.12243683,-0.19642605,0.03322279,-0.45245305,-0.18260396,0.2690088,-0.279257,-0.25976235,-0.31119865,0.5259591,0.8869051,-0.19561012,-0.29862994,0.10657967,0.19380602,-0.35191825,-0.337039,0.007978218,-0.21364538,0.279964,0.18635651,-0.2313082,-0.020517755,0.2407907,-0.38018936,0.008026545,0.1754415,-0.41251352,0.17674555,-0.19001628,-0.24453466,0.90082747,-0.0731399,-0.220938,-0.5574312,-0.47459182,-1.0766752,-0.4973891,0.54956883,-0.0335302,-0.062386747,-0.18106723,0.10563701,0.057655293,-0.21725486,-0.054026537,-0.5244869,0.2597176,-0.04164321,0.5494136,-0.30931917,-0.68454486,0.15300176,0.21225087,0.017635534,-0.6823807,0.5228495,-0.120366156,0.83447236,-0.06418399,-0.13310628,0.09028188,-0.34777325,0.04240036,-0.40190887,-0.21613058,-0.85242116,-0.056022532 +72,0.5998787,-0.09736959,-0.46489605,-0.18447693,-0.4184846,-0.14774792,-0.3916715,0.2283288,0.16007414,-0.35571274,-0.2678434,-0.16257082,0.07800256,0.36133385,-0.14131571,-0.78029907,-0.13528456,0.09411752,-0.66936976,0.74659663,-0.45496812,0.42541957,0.13614237,0.30235332,0.19604978,0.47606033,0.40535232,-0.06390251,-0.11094107,-0.10192065,-0.03228428,0.08205073,-0.78836685,0.13364498,-0.33185658,-0.23999503,0.26865277,-0.49358127,-0.24817295,-0.8410892,0.16697113,-1.0029948,0.3698573,0.069113575,-0.07444636,-0.08525995,0.35888466,0.25703743,-0.33103797,0.039715372,0.18407093,-0.24864827,-0.064607784,-0.29321554,-0.22937012,-0.43524843,-0.51546466,-0.15698422,-0.61351734,-0.37066507,-0.22625992,0.24809565,-0.41946724,-0.07278409,-0.15103066,0.47645664,-0.48784283,0.070755124,0.4542272,-0.22996582,0.12803301,-0.5491354,-0.07461778,-0.15681635,0.39843684,0.07773226,-0.08526976,0.50403506,0.292679,0.36369577,0.31392947,-0.4098709,-0.28432932,-0.2706304,0.44087175,0.366116,-0.021259068,-0.23487937,-0.26965243,-0.014730628,0.24895875,0.5247632,0.16807339,-0.36132875,0.0285276,-0.13522403,-0.11400425,0.52354205,0.56921226,-0.25671348,-0.38196436,0.14996009,0.71692556,0.3375973,-0.35490134,-0.03416307,-0.13377246,-0.4653795,-0.0878449,0.3453927,-0.17606726,0.6455415,-0.09017919,-0.15468849,0.8625951,-0.1405843,-0.008286374,-0.26810178,-0.051639788,-0.1543354,-0.43826458,-0.16914189,0.3245348,-0.5201146,0.20870425,-0.3012453,0.72148865,0.23856774,-0.76081175,0.31839532,-0.64328784,0.1696795,-0.05593037,0.64921343,0.51281816,0.37987947,0.48043424,0.84632397,-0.3344243,0.3053765,0.028742423,-0.36289328,-0.083766334,-0.33703524,0.15866935,-0.3521793,0.2361277,-0.44697142,0.113949165,-0.04552216,0.3972921,-0.37610194,-0.17415906,0.37535587,0.89515704,-0.32733887,-0.06188327,0.5653453,1.1144778,1.2083472,-0.032841574,1.1370447,0.38560015,-0.23183978,0.026485596,-0.17475198,-0.61864287,0.20724058,0.39614147,-0.040716715,0.27783605,-0.13450828,0.05674197,0.28146514,-0.36600855,-0.011624055,-0.08275775,0.17382291,0.19894901,-0.05633726,-0.43543467,-0.124686785,0.07294471,-0.11064483,0.16139106,0.26709777,-0.13798466,0.31336913,-0.033990737,1.3366617,-0.0100946175,-0.017405272,0.3382794,0.59053487,0.4167676,-0.07068866,0.07390285,0.60521567,0.31669173,-0.036741853,-0.60727215,0.17442942,-0.49956125,-0.58134615,-0.082128845,-0.43754748,-0.099903755,0.18418896,-0.39182332,-0.06040333,-0.021109203,-0.14362244,0.382926,-2.4385324,-0.23284422,-0.23456566,0.2243226,-0.4633523,-0.13913836,-0.18444397,-0.5625115,0.24818063,0.22369182,0.54481256,-0.49176946,0.4838652,0.6038448,-0.5630658,-0.105436616,-0.6319317,-0.03295643,-0.14688206,0.60997784,-0.16001315,-0.111091636,-0.06079791,0.18669067,0.84948605,0.33370408,0.21848917,0.46639445,0.392972,0.06825849,0.61580884,0.020776497,0.46503472,-0.34469372,-0.12737335,0.4781668,-0.28263125,0.5188304,-0.19852276,0.17947343,0.63550144,-0.47158757,-0.9349197,-0.6055624,-0.6211395,1.023655,-0.4831968,-0.6028903,0.13473785,0.11932965,0.031904902,0.02890082,0.51023644,-0.17165828,0.2844688,-0.6073996,0.037080806,0.010797292,0.2855542,0.14435354,0.19681029,-0.22147454,0.8329348,-0.042563338,0.5275749,0.24680114,0.24016371,-0.103762925,-0.48673034,0.09672811,0.5811898,0.18781415,-0.044461768,-0.37200317,-0.29866776,-0.07039392,-0.2727138,0.036605176,0.5935241,0.7580438,-0.20640251,0.043138117,0.3241306,0.0061478848,-0.019023938,-0.2435276,-0.33137992,-0.08593019,0.11078768,0.37819856,0.8109446,-0.13967504,0.31431013,-0.1128719,0.35414913,-0.05004704,-0.4923685,0.64691395,0.76110584,-0.12599394,-0.06860957,0.4842357,0.4865799,-0.5709983,0.63202685,-0.7804928,-0.13852666,0.7845572,-0.24591589,-0.42816538,0.11724174,-0.29936367,-0.00859522,-0.7682065,0.19510531,-0.38779333,-0.036176316,-0.26306197,-0.2065067,-2.981611,0.23165719,-0.07404055,-0.098294385,-0.27630207,0.020066116,0.18748029,-0.6241356,-0.7270122,0.19159664,0.15252443,0.4457586,-0.109944165,0.12543651,-0.32546154,-0.28592423,-0.20467456,0.24328451,0.023163542,0.29617137,-0.22589014,-0.3761726,-0.029181395,0.002339695,-0.5726082,0.13190031,-0.4136561,-0.4175761,-0.23202859,-0.49459198,-0.1704433,0.45976257,-0.45019498,0.071718104,-0.06572186,0.04469853,-0.20967208,0.05947301,0.23132558,0.5513285,0.19586943,-0.053785782,0.012582625,-0.28193003,0.5883115,-0.029335981,0.2970474,0.14464249,0.02211569,0.051186237,0.28883794,0.641575,-0.20832923,0.9442131,0.25668374,-0.038254727,0.26771712,-0.26373568,-0.27214417,-0.88737917,-0.2707704,-0.2234769,-0.3508092,-0.6898237,0.024865756,-0.33803496,-0.8717928,0.5593492,-0.053835124,0.53401697,0.024544254,0.27201712,0.4947844,-0.3625486,0.05557757,0.05760296,-0.15057048,-0.622376,-0.47537234,-0.6962987,-0.44603348,0.19738577,0.79825515,-0.31281042,-0.34036347,-0.140264,-0.38565275,0.03996403,0.23094332,-0.002211081,0.14655903,0.5568465,0.34771964,-0.5991999,0.43194738,0.09981424,-0.17266633,-0.3746221,0.15872063,0.52454996,-0.75322974,0.7547916,0.35934106,0.14988457,-0.05683032,-0.81905204,-0.26208207,0.05162997,-0.11771919,0.48716497,0.1833153,-0.8283717,0.3882886,0.16967587,-0.6064922,-0.8116284,0.40793,-0.07082871,-0.388508,-0.09021231,0.45363468,0.10899446,-0.1478295,-0.2426985,0.2890408,-0.45630032,-0.010808809,0.43530008,-0.08310542,0.10910436,-0.20697974,-0.35252967,-0.7881337,0.055129886,-0.4848462,-0.27425304,0.43378687,-0.20888236,-0.17356344,0.08757387,0.26224083,0.38342413,0.013693767,0.18394804,-0.104980126,-0.28495607,0.45776346,0.45792374,0.44922313,-0.43663603,0.6202827,0.13177316,-0.274671,0.17448425,0.16708632,0.22874475,0.0888732,0.2916803,-0.04901323,-0.02779159,0.1806237,0.62135804,0.33391228,0.39806494,0.18901297,-0.28480878,0.644421,0.014150947,0.15404813,-0.21291542,-0.47737703,-0.062630825,-0.09012873,0.08828764,0.54562956,0.13364659,0.40486008,0.058637913,-0.056524403,0.14763403,0.40197325,-0.10926819,-0.8389586,0.21255076,0.13070346,0.93524796,0.54595435,0.1452718,-0.16914213,0.539797,-0.18769087,0.1558788,0.5288848,-0.038934145,-0.5244528,0.7461648,-0.33504364,0.28455716,-0.26853403,-0.042907674,0.18501297,0.35902762,0.49956605,0.8078479,-0.29008695,-0.08871965,-0.12800977,-0.11841797,0.026717177,-0.30832556,0.037983473,-0.2244683,-0.5184197,0.71931094,0.45912188,0.38333222,-0.31363198,-0.16752653,-0.06679136,-0.21048678,0.32370886,-0.035575025,0.011234055,0.13114369,-0.49160177,-0.2279195,0.57818276,-0.30742782,0.12370861,-0.21585901,-0.33716363,0.07205462,-0.19463842,0.04784458,0.040501717,-0.92383397,-0.043131012,-0.122704275,-0.72210926,0.31583962,-0.22472873,0.045529168,0.24126542,-0.107510634,-0.25675908,0.32770878,0.113315925,0.82045335,-0.07071169,-0.26339132,-0.30793962,0.08023553,0.22759198,-0.23641108,0.24498889,-0.2956592,0.19258682,-0.52791804,0.665605,-0.12894927,-0.4089845,-0.00038832214,-0.24302337,-0.23462395,0.8493849,-0.1673495,-0.23162071,-0.13660526,-0.29616508,-0.47581965,-0.09511566,-0.2660291,0.10748414,0.0921473,-0.16935284,-0.17227241,-0.1338774,0.13401008,0.5233529,-0.05948639,0.3673219,0.20820162,-0.03978232,-0.2898633,0.054660533,0.18636505,0.46431094,0.17543313,-0.022927072,-0.2759148,-0.45438042,-0.3306704,0.16893058,-0.17332508,0.21851945,0.122277535,-0.2593391,0.8913234,0.13523033,1.2096384,0.10392288,-0.3431889,0.112853326,0.5870082,-0.14753686,-0.032039713,-0.3653638,0.9076508,0.61066544,-0.19544086,-0.045583904,-0.33442768,-0.102309585,0.05689883,-0.44230816,0.017807378,-0.008298549,-0.5058131,-0.28051308,0.116833314,0.30601785,0.09800548,-0.20474456,-0.12653336,0.016672662,0.23730345,0.5474401,-0.60068434,-0.38643262,0.17112671,0.08935185,0.008952694,0.108520575,-0.24153244,0.419795,-0.75221545,0.39025325,-0.61158454,0.07975477,-0.30307263,-0.37454182,0.14666381,-0.033371504,0.47167334,-0.4035416,-0.3538788,-0.1756804,0.41527694,0.10452942,0.25438252,0.6422429,-0.28487423,0.24495329,0.12655516,0.66830355,1.2927595,-0.42184767,0.0014575379,0.2717519,-0.517569,-0.7076942,0.38110238,-0.5267372,-0.009575988,-0.22804509,-0.525506,-0.5337189,0.1452781,0.11914192,-0.053872805,0.1359379,-0.72526824,-0.109480105,0.33622614,-0.26139104,-0.16297935,-0.13322121,0.36962053,0.88962156,-0.16363516,-0.3451817,0.035820268,-0.01380653,-0.30269024,-0.5932396,-0.0034577337,-0.19416274,0.367528,0.08980163,-0.19802345,0.036481448,0.3556688,-0.5839632,0.0773458,0.14362113,-0.30914822,0.027920995,-0.1934651,0.038784277,0.8875629,-0.19656943,-0.2780146,-0.5629034,-0.542852,-1.0140582,-0.4409991,0.4079087,-0.02167956,0.2150192,-0.22981152,0.13895808,-0.2282532,-0.088882886,0.06656702,-0.5753435,0.32528868,0.21028201,0.5907453,-0.32627112,-0.9361834,0.07759022,0.17660926,-0.09668004,-0.6170835,0.5213523,-0.1776662,0.8389928,0.0513419,-0.2537896,-0.11820854,-0.43844137,0.20259705,-0.43606454,-0.12658907,-0.6895476,0.13786143 +73,0.37101525,-0.020502785,-0.53490233,-0.12772962,-0.19635257,0.19145085,-0.24222046,0.43046984,0.22007892,-0.5211383,0.095621854,-0.09279136,-0.0018591901,0.44327742,-0.21956673,-0.57409453,0.12984496,0.07714869,-0.5077654,0.374839,-0.46688405,0.37078342,0.06825744,0.19113144,0.12726085,0.2939148,0.13248697,-0.08424008,-0.2911931,-0.14505889,-0.24223427,0.32906702,-0.3273424,0.1859448,-0.066311926,-0.2954233,-0.03918122,-0.4368561,-0.2236241,-0.61263794,0.011148437,-0.63192403,0.5644658,-0.07801566,-0.3094984,0.19409184,0.31298822,0.20466107,-0.10827555,-0.029888451,0.06432014,-0.21530904,-0.17110255,-0.120772734,-0.4910091,-0.53704673,-0.6739648,0.015768072,-0.54601645,-0.081350654,-0.23227192,0.22715896,-0.27218905,-0.08535776,-0.14582881,0.4651677,-0.3197841,0.12532924,0.20192423,-0.19644101,0.21916516,-0.5344561,-0.17619887,-0.027772542,0.16558048,-0.12104367,-0.28052947,0.25412753,0.6190622,0.44096965,0.031607643,-0.30067146,-0.62494737,-0.123687014,0.08795222,0.6181608,-0.24451208,-0.3136839,-0.18300408,-0.0029710373,0.33861917,0.3229355,0.12372543,-0.35414112,-0.12713844,-0.009748,-0.36800003,0.34185186,0.45683947,-0.46839035,-0.16138329,0.54474235,0.43279603,0.07587768,-0.25297776,0.12227387,-0.019685635,-0.5220006,-0.10172636,0.20691206,-0.070557676,0.55438703,-0.22144032,0.22080907,0.61652756,-0.12760527,-0.17371865,0.17040803,0.12316649,-0.06073342,-0.26896587,-0.14451598,0.10202589,-0.5483913,-0.040035024,-0.13883495,0.69557774,0.0847623,-0.8632221,0.43418396,-0.40737286,0.052926775,-0.04088383,0.3364172,0.720418,0.5740095,0.111060634,0.66946495,-0.43558538,-0.071561255,-0.18544057,-0.3714526,0.1143348,-0.042910475,0.11855466,-0.586607,0.12720187,0.08227228,-0.050309442,0.24363557,0.34175763,-0.46974772,-0.12789336,0.20735715,0.69659084,-0.33677313,-0.3737847,0.6324205,0.9603442,1.1025335,0.05314083,1.182592,0.17826988,-0.049236078,0.085524745,-0.40652484,-0.5097365,0.26064855,0.32505652,-0.50912565,0.37076822,0.05010831,0.07871596,0.43068376,-0.06803021,-0.09995704,-0.08323055,0.30739796,0.11356854,-0.11398151,-0.4568969,-0.37558308,0.013131659,-0.13069186,0.21576768,0.2601601,-0.24647102,0.44532034,0.1600578,1.5404153,-0.019654667,0.113994665,0.06624215,0.26423037,0.2054162,-0.1514713,-0.15495077,0.28994086,0.262015,0.14978312,-0.3277387,0.026139371,-0.20350692,-0.4434911,-0.11730375,-0.36048248,-0.025714926,-0.12634827,-0.4337816,-0.23071574,0.0036389192,-0.4413334,0.5942258,-2.8995295,-0.25515363,-0.15442571,0.27750906,-0.19793753,-0.52264094,-0.20240264,-0.56383353,0.42252558,0.18789044,0.45469007,-0.5415295,0.32724845,0.42295507,-0.40851766,-0.25337446,-0.6599182,-0.03735942,-0.12812334,0.25109702,0.0026408513,-0.07608129,0.023622382,0.18378463,0.5375501,-0.27984795,0.11232253,0.27611586,0.22947647,-0.02280782,0.4456019,-0.17166771,0.748472,-0.23152825,-0.21691494,0.24498695,-0.41848314,0.15895382,0.033627708,0.1984021,0.5464944,-0.33694676,-0.7530088,-0.62369156,-0.11890601,1.1328568,-0.23306488,-0.2671951,0.18527764,-0.24177796,-0.48510754,-0.064457946,0.3125524,-0.04506635,-0.05474937,-0.677344,-0.023535881,0.003982139,0.18033287,-0.16293465,0.013272727,-0.36210912,0.41716304,-0.06489244,0.4829685,0.41083214,0.20826094,-0.5176671,-0.40635172,-0.07442415,0.99060017,0.3916977,0.16421178,-0.22344695,-0.32378775,-0.31276506,-0.16204032,0.14953035,0.444269,0.5294551,-0.078459285,0.10764739,0.29240605,-0.032393508,0.037871905,-0.05912765,-0.24559921,-0.0138778025,0.16605493,0.45994645,0.51530796,-0.09601132,0.5125638,-0.12588574,0.2576236,-0.17366512,-0.54874665,0.47919783,0.9066271,-0.2899925,-0.4054604,0.73279977,0.26366073,-0.10846696,0.3908771,-0.45753238,-0.39204082,0.48398897,-0.22297613,-0.21597055,0.15058216,-0.2888983,0.1032096,-0.74528867,0.26806882,-0.17879131,-0.5517472,-0.33183414,-0.09523948,-3.505874,0.108418174,-0.113248155,-0.15428872,0.2001573,-0.14407247,0.25119895,-0.59907424,-0.4775446,0.17634328,0.18619499,0.61320883,-0.16382718,0.041461643,-0.19359586,-0.38958377,-0.26168102,0.23507933,0.011726729,0.36917722,0.027619096,-0.42564967,0.15202549,-0.25569004,-0.45693868,0.1510757,-0.69989944,-0.3474315,-0.14291443,-0.54055864,-0.45431468,0.7885024,-0.63324076,0.13922663,-0.24989511,0.071798034,0.00949926,0.30342808,0.012706162,0.17116866,0.05569329,0.08228385,0.07964326,-0.31877998,0.27503204,0.11553987,0.30497694,0.5881454,0.018078387,0.28267306,0.67343545,0.7056348,-0.03924467,0.83703077,0.41772595,-0.05901664,0.33819112,-0.29946545,-0.20150803,-0.4467165,-0.42995775,-0.044379424,-0.48993176,-0.32118353,-0.119752556,-0.25547704,-0.7330392,0.5232109,0.09117285,0.09874077,-0.16596128,0.25172073,0.40917575,-0.39073002,0.018365623,-0.09494252,-0.2202959,-0.35365131,-0.41756856,-0.65145326,-0.5155628,0.20488568,1.0248497,-0.23592159,0.07375622,0.040126063,-0.19985208,-0.07614001,0.20078899,0.11040783,0.24030592,0.3591185,-0.16615216,-0.59736484,0.2826333,-0.35303545,-0.15206917,-0.43883163,0.2880987,0.746899,-0.56042176,0.4834439,0.4200212,0.13849871,-0.31913197,-0.58677316,-0.24692927,-0.10800593,-0.32254475,0.523553,0.2294775,-0.84631604,0.47160968,0.369216,-0.37150756,-0.6626944,0.48108637,-0.057865195,-0.009409499,-0.07900108,0.37102494,0.23089613,0.07902112,-0.055816993,-0.003631417,-0.43482095,0.21609841,0.34962183,0.117748566,0.4374865,-0.2927449,-0.022709083,-0.7918611,-0.18524386,-0.30999464,-0.37119916,0.11350589,0.050327387,0.12082853,0.12498644,-0.1201427,0.31912547,-0.4175046,0.12079332,-0.09787287,-0.14622097,0.24632482,0.3994648,0.38757032,-0.24961041,0.57511646,0.023573864,0.04402118,-0.19601555,-0.0739693,0.5575567,0.18803024,0.28838715,-0.044987068,-0.27442577,0.29666469,0.5933163,0.13449948,0.22577305,0.14381342,-0.22296324,-0.06327006,0.034142174,0.2082071,0.12743346,-0.4153751,-0.12413774,-0.42266467,0.23042104,0.6455967,0.07693785,0.3144273,-0.09955765,-0.15646024,0.07206986,-0.020427385,0.0010577679,-1.313824,0.33596584,0.18124256,0.63746995,0.30610168,0.13244794,-0.06791653,0.64164263,-0.26458794,0.23251304,0.33343887,-0.11986225,-0.37698954,0.61250556,-0.8367987,0.44029772,-0.0052164514,0.05876945,0.013764886,0.041449904,0.3892681,1.0180379,-0.20537402,0.13383992,0.088266484,-0.38020712,0.17528082,-0.2882429,0.14047973,-0.4679154,-0.3592697,0.6826267,0.34082603,0.5397338,-0.115410954,0.0016006768,0.19195685,-0.20817299,0.12613282,-0.048632864,0.19260646,-0.19730534,-0.46968573,-0.18382506,0.5854216,0.1643975,0.2413936,0.19609271,-0.18682735,0.2818841,-0.19777413,0.0063765724,-0.08601473,-0.556836,-0.22716025,-0.24897034,-0.49515,0.35869014,-0.34348235,0.24097878,0.14256062,0.067352965,-0.23916815,0.5813853,0.3658851,0.7196676,-0.0898498,0.008073028,-0.15420333,0.16565183,0.18330942,-0.12883736,0.06143191,-0.39256462,0.007995278,-0.67407924,0.28132325,-0.12664035,-0.3036685,-0.05316545,-0.025504239,0.18929379,0.5287067,-0.19310325,-0.08187963,-0.009749196,-0.039114773,-0.31590697,-0.28386408,-0.07618405,0.24393658,0.15764324,-0.1096319,-0.086535245,-0.24687372,-0.1768262,0.059061933,0.052420378,0.23376893,0.26026058,0.13707513,-0.30734506,0.024970882,0.0853324,0.44472015,0.15450332,-0.16687225,-0.31821305,-0.23729691,-0.2805276,0.11583209,-0.105753325,0.28086412,0.005523029,-0.26588506,0.8238961,-0.21349144,1.283669,0.17319778,-0.48001805,-0.04830326,0.33723906,0.030435944,0.0813862,-0.20666392,0.9373702,0.5304961,-0.06899156,-0.025022693,-0.4480168,-0.11082913,0.21510509,-0.2207699,-0.21863437,0.034068756,-0.47437117,-0.26748174,0.21324149,-0.14652608,0.24866576,-0.12315379,0.022946903,0.31448337,0.122245386,0.4137994,-0.34366494,0.18144748,0.24285768,0.47488517,0.03479262,0.19118303,-0.47460416,0.4030538,-0.53042525,0.19389854,-0.24511118,0.24566428,-0.19973667,-0.17030858,0.28029355,0.051830392,0.2651776,-0.13907741,-0.40560332,-0.10111,0.6066002,0.039897513,0.10088525,0.83124375,-0.2112008,-0.0022537052,0.003049906,0.37312567,1.0060279,-0.33484256,-0.035449743,0.5453358,-0.24431856,-0.79363257,0.30643,-0.3836401,0.18816288,0.010983435,-0.27543196,-0.24148543,0.26960385,0.2631968,0.19330734,0.09790695,-0.34174284,-0.00020588239,0.23566955,-0.36199084,-0.22376095,-0.24900647,0.1211439,0.46792772,-0.36588493,-0.45637926,0.09061416,0.2317604,-0.13456567,-0.4665785,0.056119807,-0.25242862,0.23179425,0.22292253,-0.28208816,-0.0044079623,0.005695047,-0.3112373,0.02669816,0.17307287,-0.29881114,0.13968942,-0.31476307,-0.114739574,0.78886604,-0.1034111,0.18230683,-0.6224495,-0.55255467,-0.7741305,-0.2707066,0.20105648,0.08289316,-0.09913068,-0.5668132,-0.08780031,-0.10456062,-0.16757737,0.0025968591,-0.5149179,0.4851952,0.13469668,0.2344274,-0.07932099,-0.78191227,-0.048950814,0.19423176,0.02669354,-0.5329076,0.46740702,-0.2081274,0.9253798,0.20052518,0.10671527,0.33410168,-0.44967607,0.28893146,-0.24823596,-0.17636825,-0.55781925,-0.06939951 +74,0.46532652,-0.2612812,-0.5616434,-0.2789171,-0.23261906,0.037294414,-0.22700123,0.20462751,0.3424595,-0.3861164,-0.27243087,-0.14855325,0.21924382,0.13793467,-0.12053799,-0.7436494,0.020918516,0.17215274,-0.79264885,0.36135724,-0.65563637,0.33418375,0.21705046,0.25093117,-0.030358959,0.37688872,0.2832398,-0.27315736,0.0111166565,0.016537601,-0.028111609,0.22138904,-0.71299005,0.06548814,-0.2744907,-0.39177704,0.032319754,-0.6135354,-0.30550072,-0.7585306,0.32711688,-1.1036285,0.5758126,0.15765776,0.055321597,-0.07678315,0.22716548,0.18202405,-0.40621722,0.20564723,0.19974166,-0.23428293,-0.13463913,-0.33935297,-0.089224175,-0.537092,-0.45230874,-0.08694743,-0.7491047,-0.3617587,-0.27398348,0.1353359,-0.32190284,-0.11090734,-0.03294493,0.30642754,-0.4205682,0.023955507,0.40064487,-0.2671378,0.41014624,-0.48755524,-0.009028359,-0.13793577,0.5771997,-0.16318399,-0.48792088,0.32411626,0.46057165,0.42919683,0.22038986,-0.22130409,-0.105806135,-0.06718382,0.2823951,0.505961,-0.12065969,-0.48903492,-0.29176834,-0.04445453,0.21759821,0.39479294,0.12625848,-0.34158966,0.08781617,-0.015082463,-0.31355307,0.6097016,0.66329193,-0.16043134,-0.33055916,0.19748689,0.34015292,0.3422011,-0.17540416,0.21384653,0.03812969,-0.63846934,-0.29276013,0.28942797,-0.07049294,0.66060406,-0.24810523,0.26387832,0.9112997,-0.3245584,0.18776374,0.059499387,-0.012382757,-0.23361334,-0.15749876,0.09193988,0.1265499,-0.7308807,-0.01853303,-0.40318662,0.6862705,0.29008773,-0.603839,0.42137402,-0.64385486,0.2110338,-0.20410009,0.59104705,0.83854336,0.31861764,0.32470343,0.73063827,-0.42081812,0.13628593,-0.06602585,-0.60777134,0.20249447,-0.20068437,0.019829296,-0.32669356,-0.07814714,0.0062856455,0.29352567,0.066520005,0.49248973,-0.54764616,-0.11230226,0.16799286,0.85829335,-0.35350272,-0.12300696,0.645487,1.0672238,0.7215742,0.25355792,1.4027294,0.2502715,-0.1851231,0.20433135,-0.025737183,-0.9115492,0.2692603,0.29992852,-0.25791568,0.33884907,-0.042503264,-0.14870419,0.09751672,-0.4612751,-0.031128563,-0.05463976,0.31597078,0.08360257,-0.123002656,-0.19387184,0.00035266037,-0.09838323,0.0023311106,0.08804596,0.12514967,-0.18807974,0.16756004,-0.027882023,1.0870446,-0.049442507,-0.03011461,-0.008305907,0.56815237,0.3431945,0.058966074,-0.064570166,0.5807795,0.46872061,0.16889422,-0.71461725,0.19792838,-0.18051195,-0.39585355,-0.09384329,-0.46171921,-0.122564696,0.045242038,-0.48376778,0.027108707,-0.000923872,-0.39083737,0.43521345,-2.6867263,-0.345475,-0.04595078,0.5136783,-0.25902075,-0.053569492,-0.3888529,-0.51434857,0.23625742,0.28626853,0.550776,-0.71125346,0.5081104,0.52122045,-0.47862294,-0.20514302,-0.7714741,-0.04316981,-0.12067164,0.31330964,0.061589673,-0.11051259,0.015283349,0.095141344,0.7289228,0.16739121,0.10199132,0.33753517,0.6116785,0.15250678,0.63889074,-0.18503295,0.5179882,-0.45709422,-0.18293294,0.27481976,-0.34974498,0.2133214,-0.14308923,0.038335934,0.58921695,-0.4856782,-1.0556171,-0.5995474,-0.41274574,0.9869116,-0.46333846,-0.33778393,0.21196173,-0.22676812,-0.10777685,0.05298336,0.8828022,-0.010259463,0.34452394,-0.7441955,-0.017461706,-0.022793304,-0.0413906,0.10302754,0.08571868,-0.27273858,0.68587166,0.04520532,0.5909149,-0.041116558,0.25450185,-0.32773122,-0.5694447,0.2606517,0.9362622,0.18498248,0.1018548,-0.11723442,-0.24643922,-0.34063497,-0.09400051,0.039228797,0.7413035,0.7420933,-0.1366127,0.3692125,0.4360915,0.15224132,0.071685515,-0.23534237,-0.187369,-0.1039099,-0.060870703,0.42109412,0.6904344,-0.20374455,0.3567419,-0.14518562,0.38691255,-0.23631282,-0.47305843,0.77483326,0.84034383,-0.10658519,0.07832564,0.35992935,0.51830983,-0.6282678,0.49587324,-0.64181846,-0.4385315,0.7692631,-0.079215296,-0.5178829,0.31493416,-0.3058735,0.1348057,-0.7749151,0.40183544,-0.20780586,-0.32953566,-0.2222033,-0.22925945,-3.9258993,0.18441604,-0.16018362,-0.16557914,-0.45951942,-0.0020807276,0.36006248,-0.5031303,-0.5316009,0.20148927,0.072363935,0.70894957,-0.22439003,0.19276558,-0.34833145,-0.06257996,-0.14639562,0.20333296,0.0547917,0.287692,-0.2299239,-0.3538885,-0.0052055987,0.09304831,-0.417963,0.19589639,-0.5889179,-0.51394844,0.028481988,-0.61460865,-0.24937001,0.57781166,-0.49485627,-0.17493536,-0.23164462,0.15388784,-0.29047486,0.46958846,0.16678025,0.17877735,-0.07885695,-0.068655126,0.06897233,-0.20207693,0.7258183,0.011591565,0.2970702,0.14869842,-0.09554229,0.082693435,0.50224227,0.43347368,-0.1437336,1.0366553,0.18371157,0.019759828,0.32053527,-0.2625478,-0.28168222,-0.62736976,-0.2135517,-0.21348737,-0.49710828,-0.59677327,0.07056963,-0.32587883,-0.8730957,0.5832856,0.07071679,0.3289208,0.0008228015,0.44397604,0.32993677,-0.07033194,0.06993239,-0.016518867,-0.20769934,-0.5254234,-0.12492042,-0.6488956,-0.4510117,0.19234748,0.50076586,-0.35757148,-0.0023651964,-0.035581663,-0.09685791,-0.0448904,0.08618183,0.0051292535,0.23475887,0.4534356,-0.07257431,-0.60811234,0.60421306,-0.15794852,-0.2761773,-0.5070495,0.0052280156,0.6649998,-0.9049158,0.687877,0.5193678,-0.02093793,0.017261397,-0.40940025,-0.36479548,-0.17949133,-0.15823025,0.34397566,0.01990845,-1.0140508,0.41271722,0.36578476,-0.51112896,-0.69803566,0.6349771,-0.15512432,-0.09573608,-0.08302203,0.32689396,0.1281923,-0.022993304,-0.21578236,0.2630507,-0.5291145,0.36776933,-0.04312712,-0.08046594,0.6571411,0.10522454,-0.4204079,-0.6903066,-0.012070867,-0.6268466,-0.13181463,0.42686558,-0.059438575,-0.07406884,0.35050336,0.053536512,0.37598085,-0.3177784,0.09915648,0.14482774,-0.34853786,0.14547625,0.6038097,0.4968948,-0.3982918,0.81240934,0.18199044,-0.19668397,0.38549206,0.22677976,0.29776624,0.18477851,0.53074604,0.08194206,-0.25128382,0.3542039,1.0200588,0.15364465,0.5950967,0.17882694,0.003503534,0.52446383,0.17159247,0.2052589,-0.0137142,-0.5193457,-0.12798432,-0.10290399,0.32118607,0.4052502,0.21336421,0.33838296,0.107933335,-0.1992558,-0.036098823,0.46698257,0.10855841,-1.1668673,0.2938824,0.42536813,0.73279935,0.42631677,-0.052442785,-0.027041912,0.39917305,-0.12809847,0.2143252,0.30609325,-0.20200366,-0.61628765,0.64188474,-0.4852495,0.3776088,-0.3840228,-0.014163952,0.078365915,0.24851602,0.27882585,0.9860798,-0.01550743,0.016161807,0.06314676,-0.23799664,0.17744263,-0.5366694,0.006428805,-0.3630712,-0.26081505,0.7637751,0.50629777,0.2374199,-0.23603879,0.0036119642,-0.0630611,-0.16429669,0.27200118,-0.033965755,-0.021043973,0.011593413,-0.8906346,-0.23655723,0.6765968,0.22280866,0.19455758,-0.21858115,-0.2151096,0.26300332,-0.18572842,0.12626165,-0.13794822,-0.7414421,-0.121889666,-0.3619648,-0.7376659,0.38797724,-0.1960163,0.19825631,0.3575538,-0.10917206,-0.22976846,0.4380414,0.073849395,0.71807486,-0.09880542,-0.33624285,-0.6551044,0.13070494,0.39768174,-0.42967522,-0.041216597,-0.47767326,-0.025053501,-0.3980086,0.72925955,-0.07693303,-0.433819,0.21181731,-0.19208024,-0.1252762,0.6402186,-0.062426616,-0.08005986,0.31332576,-0.18906479,-0.60086626,-0.0032104661,-0.41408366,0.25484324,0.32911098,0.0697156,-0.22655755,-0.26672724,0.0054630744,0.23884286,0.035560492,0.46356323,0.3842699,0.2804818,-0.07916081,0.020231497,0.4095213,0.69430876,0.12053574,-0.012507569,-0.28549263,-0.5026386,-0.33876303,-0.02522422,-0.10281904,0.15511698,0.19344582,-0.29872096,0.77992636,-0.050921116,0.9972471,0.17275073,-0.29229486,0.16693288,0.46695727,-0.06458004,-0.1699238,-0.48648036,0.89039344,0.55979115,-0.22197327,-0.04422047,-0.40782443,-0.1945962,0.22247349,-0.3404837,-0.15069912,-0.03990828,-0.73998904,-0.37580153,0.2223453,0.3099346,0.103938125,-0.15114556,0.004348928,0.046301637,0.07446397,0.2020287,-0.97787005,-0.3336043,0.10801442,0.39434594,-0.08490905,0.18615441,-0.19586878,0.5227647,-0.61123407,0.043749515,-0.59595245,0.10704401,-0.2892505,-0.47153023,0.046953883,-0.03538351,0.4987307,-0.10635571,-0.33979467,-0.21683016,0.31930056,0.10086263,0.44479808,0.54469186,-0.1893611,-0.08901936,-0.032263793,0.7568521,1.3167943,-0.28706425,-0.01502572,0.45696518,-0.5694549,-0.6763546,0.3237801,-0.54037017,0.15816604,-0.10238261,-0.49004218,-0.44931296,0.2692992,-0.042016745,0.17623772,0.14053513,-0.7552294,-0.100605816,0.23233718,-0.20959596,-0.4046428,-0.15540136,0.46110526,0.8134649,-0.3869936,0.020657105,0.1199025,0.22683428,-0.2904129,-0.51517504,-0.1277981,-0.32370877,0.37321833,0.07308638,-0.17041922,0.06257141,-0.014704057,-0.5725406,0.36067933,-0.019323431,-0.3235286,0.1415205,-0.102558166,-0.11840575,0.9491368,-0.30220604,-0.31804216,-0.71981186,-0.5308333,-0.91783065,-0.2718715,0.09621766,0.28974393,0.1306352,-0.28442624,0.09104955,0.09305375,-0.10249775,-0.05892615,-0.5790379,0.50301784,0.06987527,0.63667583,-0.3217872,-1.0642287,0.15071104,0.30041698,-0.3127145,-0.98390144,0.5556963,-0.21851072,0.7315721,0.04202871,-0.120271355,0.2243507,-0.357487,-0.07443257,-0.48710632,-0.0010608014,-0.7943933,0.053640887 +75,0.54728276,-0.31966236,-0.6381064,-0.15870681,-0.3970056,0.0983988,-0.16745962,0.5449598,0.1606389,-0.20743161,-0.21654326,-0.020104926,0.0769801,0.2077379,-0.20863606,-0.69410515,-0.10507774,0.12108059,-0.53007066,0.6570081,-0.13117918,0.20641623,-0.13473338,0.42656517,0.51883996,0.4875244,0.18154076,0.049370226,-0.118874945,-0.19361034,-0.18910874,0.04096546,-0.47906113,0.16195077,-0.22955337,-0.36117125,-0.10723913,-0.49872464,-0.4101765,-0.772918,0.45809904,-0.8616035,0.4486653,0.024316512,-0.24467397,0.34105968,0.21836287,0.31382844,-0.30249277,-0.14567131,0.056644194,-0.22532335,0.06037391,-0.26989138,-0.04466039,-0.43521574,-0.51400894,-0.21085644,-0.6476355,-0.2135144,-0.21478094,0.06894088,-0.26919776,0.020216634,0.031089982,0.63246155,-0.43214357,0.14173102,0.25199717,-0.30903032,0.09047719,-0.69291914,-0.17257658,-0.04748369,0.2911626,0.05068762,-0.08748138,0.34192827,0.06731718,0.044574223,0.1035347,-0.19700953,-0.39687464,-0.15951061,0.08183949,0.36031622,0.08118756,-0.54447293,-0.00657431,0.0089514805,0.3168897,0.23118645,0.22788407,0.042652473,-0.08962321,-0.10191829,-0.116033204,0.5367852,0.46855402,-0.18223013,-0.11506741,0.3673039,0.59895736,0.26646912,-0.2753029,-0.022946361,0.021877615,-0.3562018,-0.04907197,0.17568223,-0.18969369,0.6367103,-0.10213037,0.29182765,0.7193357,-0.2734863,0.09686268,0.020469116,0.12422313,-0.22183888,-0.18886319,-0.22283298,0.25558144,-0.5212842,0.1588795,-0.24087295,0.71432024,0.2813998,-0.3767811,0.2835394,-0.610536,0.1716365,0.05828541,0.4659737,0.6173326,0.57071894,0.3508897,0.6971358,-0.19796793,0.013379808,-0.10184117,-0.35820338,0.10239252,-0.16667837,0.050259013,-0.50214493,-0.011856253,-0.0019941283,0.0054782904,0.10300871,0.58217514,-0.4484909,-0.14634082,0.09406337,0.84599346,-0.2179546,0.022944275,0.8523951,1.095431,0.87794316,-0.04586796,0.8537964,0.069325395,-0.34143603,0.09940982,-0.26413074,-0.54129684,0.2560192,0.37606254,-0.31889316,0.58119285,0.07631032,-0.08792825,0.20453797,-0.3175277,0.046448972,0.02053415,0.11413602,0.17179348,-0.040337447,-0.4213598,-0.30011526,-0.09917068,0.10285275,0.33608955,0.23777372,-0.31202397,0.49387038,0.0044050673,1.5091641,-0.051240798,0.03475874,0.17117248,0.6773281,0.32092646,-0.008941586,-0.091506846,0.54640067,0.25530103,0.26525548,-0.56006974,0.25241143,-0.37442812,-0.40230063,-0.079606846,-0.5211021,-0.18141586,0.0580745,-0.25322306,-0.119542524,-0.09583974,-0.32808068,0.32716212,-2.7470827,-0.084155194,-0.1674585,0.40655917,-0.25357282,-0.22919728,0.021949796,-0.48808634,0.2715055,0.38729742,0.47669756,-0.6271945,0.33157486,0.5715502,-0.7159484,-0.0031946898,-0.32012558,-0.021462945,0.016194465,0.58151823,-0.16749996,-0.0002851853,-0.017079147,0.24987325,0.4478215,0.07110457,0.08875705,0.3372556,0.36879867,-0.12321888,0.54475063,-0.050054863,0.43344674,-0.29782832,-0.10076012,0.24599868,-0.3645632,0.29495123,-0.19631013,0.14167683,0.5993715,-0.4649058,-0.8664951,-0.50828856,0.22275048,1.0997933,-0.40287656,-0.43743357,0.24987444,-0.485474,-0.2763283,-0.039206844,0.494561,-0.21389736,-0.060335692,-0.64671046,0.014175881,-0.02195891,0.11966842,0.16212589,-0.057927195,-0.44439027,0.7704378,0.08548602,0.58849746,-0.040669873,0.1770489,-0.42337927,-0.43787104,0.18228793,0.6132522,0.4421678,0.043458745,-0.20478044,-0.13668273,-0.1644637,-0.15818483,0.12485339,0.7490057,0.5304811,-0.055437107,0.130048,0.2829251,-0.1295252,0.03433573,-0.11324482,-0.22396295,-0.15809776,-0.17574857,0.4346979,0.6279535,-0.03985525,0.42501637,0.05492711,0.5387646,-0.0194585,-0.46939814,0.67210585,1.1988856,-0.2446642,-0.33582824,0.38357192,0.4265811,-0.3399587,0.45358425,-0.6928853,-0.1961725,0.5864991,-0.1427696,-0.50193644,0.20251285,-0.21127905,0.077839024,-0.69178736,0.050821446,-0.32557008,-0.4326494,-0.40931475,-0.16379884,-3.330986,0.03478268,-0.3239244,-0.29058018,-0.39507002,-0.16044281,0.074702874,-0.81209576,-0.5367275,0.111390024,0.13806301,0.7072596,-0.16488835,0.15068415,-0.27380016,-0.39944664,-0.31538436,0.33785966,0.031150162,0.34041658,-0.26677108,-0.33489752,0.034659103,0.09076316,-0.43599382,0.019978296,-0.44237608,-0.33734792,-0.11418025,-0.65002626,-0.1807929,0.6193666,-0.18331856,-0.0026255297,-0.18601349,0.08845492,-0.05261737,0.15903585,0.083914846,0.102982335,0.17876047,0.0087990165,0.28093544,-0.40001515,0.36031294,0.026107006,0.45569912,0.09524015,-0.07777785,0.24152735,0.3800715,0.4629188,-0.04352997,0.8346646,0.2551794,-0.13966465,0.23114234,-0.1890803,-0.4240672,-0.65911967,-0.2557197,0.016431639,-0.2667664,-0.36334693,-0.25545695,-0.4161097,-0.8563125,0.46480253,0.04841347,0.41575986,0.0010282352,0.35693187,0.65919024,-0.21456939,0.022486363,0.15529384,-0.2140317,-0.66896755,-0.01835802,-0.5342813,-0.35102448,0.17731649,0.53270185,-0.4937695,-0.15224217,0.022068454,-0.4420424,0.16453475,0.17111176,0.02873735,0.1825024,0.58083284,-0.07727592,-0.53754,0.6264261,-0.18999377,-0.19898663,-0.52197826,0.20868042,0.44365433,-0.7309262,0.48075724,0.31039158,-0.04223849,-0.34034553,-0.24505565,-0.041356087,-0.049747054,-0.083156064,0.31349218,0.31009915,-0.72415644,0.26145098,-0.011533453,-0.17967804,-0.76427746,0.5709847,-0.16860868,-0.40632138,-0.21912844,0.39967722,0.14751673,-0.03943123,-0.23850897,0.086350925,-0.3099578,0.026046505,0.11059645,-0.12695208,0.32670575,-0.11330081,-0.19113892,-0.7823815,0.24141198,-0.3949542,-0.2137464,0.54848486,0.07175258,0.15448758,0.08805838,0.18674701,0.2838801,-0.28016785,0.14071147,0.0058448683,-0.2368149,0.51450473,0.44528404,0.51256126,-0.5259265,0.6370509,0.0251084,-0.076614484,0.28594986,0.0036153977,0.32002142,0.059482154,0.563392,0.3142659,-0.25398344,0.25214493,0.56921375,0.21747257,0.5994117,0.18036638,-0.07063489,0.17369233,-0.020158194,0.23386747,0.0010060531,-0.7485079,-0.030027706,-0.32692492,0.060463972,0.44150817,0.16105835,0.21877578,0.012952147,-0.36207575,0.08652285,0.29485032,-0.14905292,-1.0281516,0.25016284,0.44118437,0.87820816,0.4461503,0.03041485,-0.05946006,0.7585366,-0.08078944,0.109376594,0.30086526,0.25728086,-0.5418389,0.5011229,-0.6496018,0.636064,0.010732449,-0.21015136,-0.0055557834,-0.082258135,0.35135368,0.7392277,-0.21907619,-0.16606046,-0.0021016942,-0.39103934,0.17931406,-0.40758625,-0.020301653,-0.58385015,-0.30477443,0.5590097,0.48992884,0.36746722,-0.042383313,-0.004251658,-0.05360409,-0.11932499,0.27935952,0.015675612,0.0715224,0.019709405,-0.7420676,-0.3387358,0.38226193,-0.11821727,0.18222383,-0.038143907,-0.103220716,0.26697972,-0.028170267,-0.0005889787,-0.11969282,-0.7388806,0.20494103,-0.0029465144,-0.642614,0.6629471,-0.02668136,0.27660176,0.25096914,-0.07431779,-0.19178063,0.3289997,0.14541069,0.901372,-0.017833957,-0.062150188,-0.50862384,0.04997479,0.08962853,-0.27442306,-0.013703163,-0.3404665,0.18410532,-0.5626354,0.50790733,-0.10175777,-0.38827676,-0.20528239,-0.23922276,-0.082145855,0.58612686,-0.13926499,-0.183338,-0.14790085,-0.046248104,-0.322813,-0.3999419,-0.29436508,0.078182,0.12140739,-0.055881068,-0.2630221,-0.018755885,0.06689905,0.36677906,-0.10288168,0.47345436,0.3055326,-0.0940928,-0.17538497,-0.25889233,0.42268023,0.4544811,0.03073955,-0.029625664,-0.31264415,-0.6266657,-0.43069333,0.20947888,-0.062763065,0.2512161,0.21439677,0.04294977,0.76973844,-0.24396212,1.1414111,-0.024791548,-0.48153707,0.314212,0.6590644,-0.03497543,-0.20014685,-0.20014364,1.1373506,0.38969642,-0.15950075,-0.089824066,-0.4058923,0.071190715,0.21179493,-0.2059529,-0.052136857,-0.163486,-0.5141766,-0.25444177,0.12723747,0.3073145,0.25276273,-0.0793929,0.019990362,0.24239287,0.13588773,0.27094957,-0.3725007,-0.40347096,0.3797228,-0.11912003,-0.10908561,0.18668853,-0.53069305,0.51463044,-0.45134628,0.08527765,-0.43928978,0.17267224,-0.17063001,-0.24963555,0.27179292,0.096198834,0.46704632,-0.43619412,-0.44254795,-0.41856086,0.40463284,0.39243177,0.22575706,0.4884948,-0.24962792,0.09154008,-0.041371647,0.58397585,0.7927004,-0.061721362,-0.06830367,0.30785477,-0.63070005,-0.69092953,0.23744616,-0.3738187,0.26316753,0.05930111,-0.2526752,-0.64639306,0.32493508,0.1539263,-0.0058349827,0.08415306,-0.8632721,-0.326487,0.09368108,-0.35409674,-0.09626075,-0.3880315,0.02819373,0.6482586,-0.27188584,-0.36071312,0.099343866,0.16651963,0.060967274,-0.54034775,-0.06468729,-0.31387505,0.3294885,-0.047646567,-0.13081786,-0.19354102,0.17758678,-0.49930423,0.40239826,0.011472001,-0.4092323,0.12012542,-0.22938806,0.02375662,0.7902758,-0.29044187,0.019706102,-0.45861638,-0.42182353,-0.835124,-0.42925876,0.24745314,-0.12596464,0.08429012,-0.72603124,0.055013813,-0.20328219,-0.01745261,-0.1652099,-0.5432102,0.40155065,0.13439175,0.47899893,0.027669035,-1.0481416,0.29373977,0.033256955,-0.2657151,-0.7909362,0.35438478,-0.29967785,0.6890125,0.09043606,0.122166164,0.1881102,-0.43089053,-0.14273967,-0.28886622,-0.15736501,-0.49876758,0.006483078 +76,0.36449492,-0.085535,-0.2809135,-0.10186988,-0.092374325,-0.06580245,0.018643063,0.47915027,0.34772825,-0.49784592,-0.33470142,-0.4186906,0.025759982,0.22295046,-0.118481904,-0.66229033,0.082569815,0.3808364,-0.45695484,0.7224814,-0.33469236,0.21301858,0.093224905,0.37579474,0.12895848,0.08283772,0.13120231,-0.182707,-0.32943007,-0.20798373,0.02266745,0.2652034,-0.74150556,0.2806823,-0.22058,-0.290121,-0.04169957,-0.5213627,-0.34870937,-0.9035943,0.30984527,-0.87585026,0.3561645,0.13547523,-0.18756779,0.3831618,-0.01218612,0.33898047,-0.18545254,-0.21626067,0.20616871,-0.1304652,-0.25500217,-0.26125985,-0.07372154,-0.19262893,-0.6051058,0.16609494,-0.10429215,-0.2444849,-0.43511185,0.13764404,-0.32760173,-0.011818421,-0.117570706,0.49913192,-0.36741123,0.08074967,0.19425905,-0.16133066,0.09699804,-0.5238368,-0.15211149,-0.20057799,0.14437647,-0.15542555,-0.21667866,0.36028942,0.29100132,0.5704284,0.042393375,-0.30440903,-0.29637262,0.09777939,0.2537263,0.45718133,-0.13767181,-0.3782048,-0.033150133,-0.02869322,0.06488148,0.095549785,0.21254836,-0.30646688,-0.15833145,-0.16781755,-0.10959185,0.14408034,0.5485904,-0.279623,-0.35335174,0.3365341,0.48848692,0.003980607,0.039082587,-0.11612735,0.052460562,-0.46259233,-0.20355844,0.06410501,-0.38326,0.61401486,-0.22278784,-0.014002358,0.61836153,-0.08916811,0.019466827,0.048720866,0.10611826,0.002654801,-0.48127094,-0.22411306,0.45955956,-0.4090966,0.18901934,-0.33284017,0.9312903,0.12755875,-0.72866243,0.44380474,-0.46239445,0.2515784,-0.04849984,0.5964685,0.60342366,0.4417143,0.5707961,0.6438298,-0.46907368,0.09888498,-0.1127719,-0.35584328,0.15898253,-0.28428975,0.227112,-0.37052977,-0.04093762,0.017944148,-0.2362502,-0.009882078,0.344316,-0.5297424,-0.07151782,0.27432534,0.7741179,-0.20989056,-0.21884696,0.71101123,1.063207,0.9724765,0.073274426,1.4456606,0.2803469,-0.20999467,0.3956333,-0.2872473,-0.82760626,0.17376347,0.22647302,-0.040300835,-0.06409222,0.33663276,0.008960937,0.46307382,-0.7132887,0.17360501,-0.24078226,0.20016058,-0.007113268,-0.05015133,-0.28715384,-0.35540804,-0.109078355,0.074492775,-0.006283494,0.326116,-0.19931227,0.17109412,-0.07682093,1.8389931,-0.06669419,0.045675308,0.10297802,0.4076164,0.012754239,-0.17549722,-0.08294929,0.27533218,0.12826717,-0.07456503,-0.4628861,0.021598628,-0.27952594,-0.56889415,-0.01754895,-0.1768335,-0.015253047,0.05448693,-0.34239826,-0.24046902,-0.14233595,-0.42787418,0.5796751,-2.3938282,-0.1503826,0.022655865,0.45657682,-0.36695397,-0.37999773,-0.1367083,-0.55281955,0.38088274,0.33872935,0.457487,-0.7802281,0.22399954,0.3615431,-0.6203182,-0.09695798,-0.72671366,0.10304602,-0.11500379,0.21231209,-0.004886642,-0.023011679,-0.079269625,-0.15757819,0.579061,0.16503973,0.12647828,0.4907378,0.2680752,0.094572745,0.33665252,-0.082688436,0.5450012,-0.30940565,-0.19625573,0.2047584,-0.5299406,0.531586,-0.101055436,0.07987056,0.47120675,-0.46633253,-0.72382975,-0.76999736,-0.5350334,1.0753217,-0.15143901,-0.4366916,0.29669127,-0.32634896,-0.101810455,-0.10581607,0.619292,-0.013218512,-0.123420574,-0.75942683,-0.12049288,-0.013624017,0.24454308,-0.031305544,-0.03327812,-0.40283856,0.85411316,-0.26155418,0.35988808,0.2961394,0.17263818,-0.25242174,-0.46484864,0.09256605,0.96508247,0.29993615,0.075777344,-0.22432877,-0.27898824,-0.43830273,-0.39106587,0.03662208,0.4679338,0.66118467,-0.19255699,-0.14990424,0.34892893,0.02915287,-0.061407954,-0.10815104,-0.35829875,-0.111784644,0.016046846,0.5691084,0.9082031,-0.29550466,0.40949893,-0.16210833,0.18839242,-0.092318885,-0.38287148,0.5249429,1.0791687,-0.045089144,-0.04705866,0.6499073,0.39042774,-0.33598462,0.44334564,-0.5599128,-0.2696637,0.32387567,-0.042069107,-0.49784955,-0.0033869569,-0.14652671,0.10188202,-0.79847217,0.5340275,-0.26077673,-0.57662606,-0.6433887,0.05716142,-2.7003193,0.10194242,-0.30003342,-0.14487906,-0.050735522,-0.086838014,-0.11927849,-0.5465712,-0.52915525,0.24359877,0.14257564,0.69443685,-0.1336502,0.21534617,-0.18164831,-0.1916704,-0.39861247,0.043006063,0.12741964,0.3646792,-0.019319987,-0.3935971,0.006448993,-0.0673954,-0.23351257,0.12600148,-0.7921383,-0.5368059,-0.3059661,-0.6757782,-0.39936736,0.5977211,-0.5901718,0.03791478,-0.27268675,-0.114311315,-0.29121935,0.39926788,0.11485579,0.18131346,0.078549035,-0.10694715,-0.28078404,-0.23836511,0.18183832,0.075584024,0.42553365,0.53237784,-0.25172052,0.17411649,0.40992832,0.68606234,-0.25272888,0.8317601,0.59789866,-0.16673557,0.18825491,-0.19320637,-0.10966337,-0.54973745,-0.20609076,-0.1515538,-0.38670194,-0.49786445,0.1093268,-0.3201295,-0.8101585,0.44816062,0.059595745,0.020890573,0.10583088,0.02047897,0.59835595,-0.10571466,-0.029350348,-0.24552268,0.02654051,-0.73106164,-0.49356008,-0.5562683,-0.5276022,0.34716985,1.0024658,-0.04834761,0.008806922,0.09064614,-0.09774346,-0.1008845,0.15785837,-0.2682642,-0.07970225,0.62661856,0.060334038,-0.5162665,0.5032711,0.2620175,0.023782125,-0.5334484,0.49705586,0.5174831,-0.6692417,0.82011694,0.23326226,-0.0044360235,-0.025439104,-0.54192847,-0.48005402,-0.30088425,-0.1519161,0.23040588,0.17621012,-0.75749844,0.29164872,0.45175442,-0.332175,-1.0218977,0.28487638,-0.19246823,-0.23336232,-0.012821093,0.33481392,-0.062022135,0.115882955,-0.20237042,0.25391448,-0.5395975,0.16258873,0.30484873,0.025945848,0.122517526,-0.31249076,-0.1420695,-0.8390303,0.06790836,-0.45140207,-0.28738967,0.15193225,0.2204111,-0.11867836,0.38918313,0.4806628,0.300146,-0.2708021,0.13255972,0.03333651,-0.32715386,0.2257024,0.41910014,0.5243128,-0.55253756,0.47298154,-0.057732582,-0.06050697,-0.21617816,-0.039340764,0.29086152,0.17357726,0.29953855,0.13080496,-0.2444179,0.18023498,0.8509298,0.14474063,0.46420422,0.2505063,-0.086049,0.5360761,0.066603154,0.30347818,-0.081999406,-0.690223,0.24577688,-0.21878207,0.13214634,0.25250313,0.25849596,0.27926552,0.004414546,-0.3998278,-0.15740885,0.16742991,-0.08661806,-1.0681187,0.26182714,0.05777305,0.8048231,0.7292265,-0.120114915,0.08038145,0.73870724,-0.017006801,0.17125721,0.22754698,-0.32270178,-0.51441675,0.5775375,-0.73508173,0.21126918,-0.024019802,0.004596044,0.036835935,0.14829175,0.30796826,0.5114184,-0.25944045,-0.027814187,-0.26188695,-0.15226518,0.10878047,-0.37197706,0.3778503,-0.5842655,-0.377259,0.78767705,0.5238882,0.33837423,-0.18698359,0.07375721,0.05626763,-0.16402422,0.22425778,0.089795105,0.0728958,0.33558357,-0.5693082,-0.10524047,0.57665586,-0.2791091,0.11784947,0.06044662,-0.15681367,0.09341649,-0.37352726,-0.3527174,-0.07916245,-0.8481708,0.0144618945,-0.09836405,-0.28074557,0.42321005,-0.025266627,0.24565826,0.16851062,0.12250593,-0.28906068,0.4340528,0.20406286,0.7764714,0.121293746,-0.21115546,-0.22037452,0.3358352,0.055579364,-0.19420516,0.15869434,-0.07929037,-0.09711937,-0.6646147,0.50613475,0.06381493,-0.3543034,0.079059474,-0.16018553,-0.013448869,0.60368705,-0.103552185,-0.16874383,-0.006763438,-0.21713348,-0.23031648,0.027907148,-0.039671168,0.39074478,0.1862673,-0.16426902,-0.13723683,-0.08012865,-0.13652319,0.33994296,-0.06620988,0.14667822,0.14167987,-0.071712874,-0.31385407,-0.059523493,0.14749433,0.57139415,0.04091726,-0.16108148,-0.060953915,-0.22409219,-0.43549916,0.04361167,-0.001970229,0.48824415,0.11776141,-0.27598408,0.66545254,0.12663737,1.1952132,0.118263446,-0.2540637,0.024304325,0.48094594,0.051569458,-0.08334354,-0.38756832,0.8614672,0.62639827,-0.10237018,-0.006955867,-0.35093817,-0.05113354,0.33667573,-0.09459468,0.103312224,0.13696022,-0.7178628,-0.15720746,0.1679403,0.38183156,0.12469343,-0.16580804,0.09473821,0.25021052,-0.025633067,0.39812326,-0.41401443,-0.23583059,0.3008299,0.3721778,0.23805802,0.11421103,-0.20690425,0.3954059,-0.7405582,0.2529216,-0.13665642,0.0107142525,-0.33481577,-0.2270446,0.277999,0.17753927,0.413837,-0.28769895,-0.3117615,-0.3481531,0.60326785,0.24649625,0.15825719,0.6192358,-0.21912499,-0.037981212,0.071163334,0.46323624,1.0825747,-0.103129596,0.070395775,0.28266355,-0.24742039,-0.61401576,0.7224007,-0.04863603,0.086813964,-0.09489442,-0.3546717,-0.7015504,0.10213765,0.29335672,-0.12125432,0.254737,-0.6849229,-0.13311383,0.1959766,-0.26335612,-0.23718888,-0.30031475,0.119314134,0.7409554,-0.09739581,-0.46577632,0.03895549,0.011273961,-0.31168753,-0.41771922,-0.19727068,-0.56501347,0.2061518,-0.02548082,-0.6454539,-0.115388595,0.13253115,-0.41160062,-0.07264578,-0.025785953,-0.3082077,0.13133015,-0.28810734,0.09692491,0.99819833,-0.097153425,0.42988446,-0.530706,-0.4720104,-0.8973978,-0.29040614,0.5376556,0.14735866,-0.113527276,-0.40319708,-0.13540888,-0.011039128,-0.17441596,0.06713178,-0.4516139,0.32952753,0.23186904,0.21149515,-0.10261929,-0.8924479,-0.017520836,0.24434163,-0.058621388,-0.42329323,0.2380601,-0.05025037,1.0268449,-0.07279547,0.0048630736,0.25064325,-0.4917308,-0.04920137,-0.13520871,-0.13522612,-0.4354143,0.056905616 +77,0.47032753,-0.11759587,-0.57269514,-0.16626048,-0.35103017,0.06914552,-0.34301487,0.42992598,0.25647262,-0.46065274,-0.1484929,0.0017737865,-0.13151376,0.20699674,-0.20636441,-0.60537905,0.13386698,0.08299481,-0.61332107,0.72813183,-0.37246037,0.19727112,-0.06462465,0.42073718,0.098831706,0.18318614,0.26082507,0.023598926,0.12420856,-0.24669962,-0.012757829,0.07360046,-0.72270405,0.32239208,-0.35589364,-0.35260364,-0.10819815,-0.33771357,-0.31788152,-0.7049483,0.21603225,-0.5838982,0.5882387,0.08145067,-0.27695018,0.09243536,0.24346028,0.31113365,-0.41042617,-0.018357148,0.09406796,-0.026489075,-0.12444636,-0.2736182,-0.13100712,-0.4569835,-0.50173366,-0.0448843,-0.50068897,0.056807358,-0.4021552,0.26027068,-0.22349499,-0.09795867,-0.1751114,0.52557296,-0.44184512,0.18643656,0.10517391,-0.096113734,0.057896256,-0.7378671,-0.22085108,-0.20033558,0.2316355,-0.10026766,-0.30530894,0.34878984,0.041158922,0.41372254,0.012294718,-0.07771217,-0.37487024,-0.3991123,0.17857529,0.42559353,-0.15853916,-0.5533308,-0.08397651,-0.052137297,0.21176347,0.13591178,0.13548476,-0.2661928,0.015975513,-0.16718082,-0.24438709,0.563258,0.5655062,-0.3596734,-0.1770044,0.24725412,0.48525846,0.32655638,-0.17039016,-0.09178796,-0.1090611,-0.59218925,-0.31124544,0.027233744,-0.093971364,0.32257804,-0.10636543,0.29420766,0.4737803,-0.09665442,-0.091587394,0.23659006,-0.0030478477,0.15572308,-0.38553852,-0.36471623,0.31145033,-0.55091196,0.2355226,-0.31736055,0.5645647,0.026016312,-0.62782836,0.21640517,-0.5043663,0.094341345,0.08689353,0.40386,0.7157926,0.4273767,0.17378362,0.7786182,-0.21343355,-0.00061590475,-0.21998374,-0.12182077,-0.07711004,-0.003811717,-0.038778786,-0.4074177,0.19560575,-0.06617406,0.14863151,0.11808852,0.37486362,-0.444583,-0.19156332,0.14298931,0.7470562,-0.26545674,-0.0010873239,0.8084499,0.9738311,1.1126431,0.054046493,1.2195374,0.038644634,-0.22002539,-0.059042357,-0.041626748,-0.8518439,0.36262342,0.36375803,0.35136503,0.2508294,0.008696007,-0.090275005,0.34934866,-0.31287327,-0.13371976,-0.15486422,0.4290643,0.23298086,-0.12525497,-0.21815684,-0.32275078,-0.010977086,-0.11337146,0.1434111,0.25123367,-0.27523857,0.3344243,0.10782306,1.0979589,0.02131889,0.056557003,0.21428987,0.48072115,0.3519964,-0.025341064,-0.018755633,0.28335017,0.2803536,0.04131906,-0.6809255,0.10319196,-0.31985363,-0.5317377,-0.04453039,-0.41327018,-0.25740576,-0.09489851,-0.34437522,-0.22957897,-0.21519779,-0.047816213,0.4183674,-2.8018198,-0.20988266,-0.17306252,0.31692448,-0.1712756,-0.3029155,-0.20513152,-0.43288803,0.5900978,0.25274435,0.5342814,-0.31440872,0.40941325,0.49007398,-0.5458622,-0.1347917,-0.5999386,-0.13432546,0.031170337,0.4266582,7.398128e-05,-0.1455871,-0.07406274,0.22577928,0.58451754,-0.034796905,0.16714223,0.37645873,0.432682,-0.23071738,0.39986452,-0.03409246,0.45639712,-0.6054117,-0.16549262,0.28420264,-0.43801197,0.2887702,-0.1497085,0.01077347,0.61483514,-0.5680276,-0.8457795,-0.5420069,-0.00080729724,1.0536932,-0.21882465,-0.40719312,0.08348677,-0.47969347,-0.12556864,-0.124772385,0.46178803,0.026565393,0.01845913,-0.6377118,0.047680475,-0.1996112,0.28332248,-0.081941985,0.033147935,-0.49900427,0.7476699,-0.0782931,0.63060844,0.30214435,0.2952349,-0.4472414,-0.3485332,0.031956445,0.7370061,0.45184496,0.14847656,-0.24089012,-0.18043388,-0.2846693,-0.050337695,0.119263284,0.8917416,0.44404334,-0.060512803,0.14277267,0.228763,-0.001409785,0.14928064,-0.22172089,-0.20852539,-0.3630846,0.17461203,0.63329494,0.5986417,-0.15433922,0.16457735,0.08367648,0.24636817,-0.39350426,-0.34409297,0.4084821,0.99844784,-0.21232605,-0.35511974,0.6715939,0.54885864,-0.14715488,0.53312343,-0.6200651,-0.5118838,0.4912363,-0.12893362,-0.3795826,-0.0015791734,-0.40573707,0.06618095,-0.6930554,0.20409097,-0.59559476,-0.43524882,-0.64038813,-0.30578184,-2.4594946,0.26472872,-0.1897954,0.0037021567,-0.40091822,-0.32682723,0.100869745,-0.44993055,-0.58797896,0.21618152,0.08146208,0.717368,-0.19470246,0.14373024,-0.18496756,-0.45889047,-0.287761,0.18404497,0.25008506,0.34111196,0.0214758,-0.3006337,-0.058113057,0.0073777926,-0.3662817,0.0040410715,-0.41922003,-0.22647327,0.0038877726,-0.29527912,-0.07453026,0.5799888,-0.47867188,0.035097864,-0.22302924,-0.018230239,0.027912999,0.37508658,0.12335418,0.20807685,0.07268949,-0.15630819,0.012740948,-0.34376985,0.35380352,0.05610586,0.30279976,0.39495197,-0.21512724,0.10889213,0.36003366,0.64643747,-0.064465605,0.8004373,0.25604874,-0.098231696,0.5143186,-0.21163663,-0.4527523,-0.47641706,-0.19085261,0.112304725,-0.31858426,-0.38444236,0.009789085,-0.34307638,-0.71705663,0.4170315,0.06925653,0.07917735,-0.045538757,0.29619554,0.30270308,-0.17657185,-0.086386666,0.011287731,-0.098066375,-0.42286852,-0.32788676,-0.574644,-0.35645962,0.022143293,0.9581274,-0.20939814,-0.095300816,0.18296562,-0.13379021,0.047285784,0.34467107,0.027908,0.1926686,0.39044672,0.029015625,-0.52659696,0.53705883,-0.05538301,-0.31249923,-0.34795657,0.2924729,0.5673451,-0.5266803,0.48236644,0.38951525,0.11150352,-0.24738048,-0.66658485,-0.12611103,0.01957554,-0.25407222,0.3736413,0.2680434,-0.76274234,0.40465507,0.22903304,-0.1661752,-0.7545224,0.70124525,0.07136181,-0.31777808,-0.13259946,0.41680428,0.17863826,0.050352715,-0.12233973,0.25792065,-0.23577635,0.30403158,0.053218234,-0.069387235,0.14929408,-0.27104214,-0.25133058,-0.60694766,-0.017785458,-0.5482121,-0.34992653,0.37413007,0.007933792,0.01524488,0.14996545,0.07689378,0.3969289,-0.3665856,0.1157667,-0.28187543,-0.25741005,0.45053875,0.42226207,0.4914194,-0.41334736,0.64121765,0.05413951,-0.07422759,0.15748866,0.22123092,0.39774257,-0.13839394,0.63306075,-0.11824322,-0.06402684,0.13747868,0.6264323,0.23853374,0.16001874,0.041746773,-0.113556825,0.2475552,0.106067374,0.19982399,0.02801447,-0.4177756,-0.0127549255,-0.15397245,0.081884526,0.5016016,0.13230027,0.1805528,0.053756755,-0.03875002,-0.084695734,0.26283187,-0.13371538,-1.3903751,0.39170313,0.10029721,1.0099186,0.56479293,-0.036515824,-0.014037562,0.6834316,-0.019528683,-0.028218377,0.3341003,0.21364945,-0.24607235,0.45966613,-0.44958833,0.6331951,-0.16073847,0.048515785,-0.038441956,-0.043214306,0.38481387,0.85548997,-0.14569113,0.065316826,0.066126265,-0.30497786,0.2516925,-0.29516697,0.089687854,-0.38697988,-0.18139505,0.7414938,0.42170206,0.31114367,-0.21641919,0.044716205,0.06414331,-0.21065022,0.2502381,0.020653328,0.055207912,-0.104867786,-0.5591406,-0.12266689,0.4957905,-0.20573838,0.11230745,0.18099381,-0.16676189,0.2165263,-0.00011035601,0.08856638,-0.036743045,-0.62309843,0.046413645,-0.33691564,-0.15544036,0.37639138,-0.17664398,0.15165757,0.34362364,0.054147758,-0.24109888,0.35289803,-0.08895278,0.55015314,-0.026088795,0.026137726,-0.35249218,0.19666405,0.15487382,-0.18749984,0.12912875,-0.32118708,0.15384087,-0.7376384,0.37144566,0.0276516,-0.28414065,0.20934907,-0.056523934,-0.11116209,0.49689344,-0.07706961,-0.14176542,0.13479455,-0.09471583,-0.050067488,-0.26269656,-0.20657307,0.30509087,-0.020374736,0.1512492,-0.15877667,-0.10934635,-0.009309506,0.46668965,0.05060047,0.33284786,0.26962525,0.24523564,-0.4795088,0.10142108,0.097484805,0.61033314,0.025200808,-0.0006962299,-0.1519408,-0.5752188,-0.33535424,0.4431416,-0.19832392,0.2207735,0.19916992,-0.30758688,0.61170477,-0.046120394,1.0997175,-0.033510935,-0.43646497,0.09662148,0.63398486,-0.10888188,-0.051227402,-0.29981214,0.830408,0.427623,-0.12346018,-0.06363125,-0.21761416,0.033484712,-0.09541022,-0.3787385,-0.070162416,-0.06746515,-0.4040101,-0.19083674,0.06850844,0.0733263,0.11073809,-0.20723362,-0.18129879,0.244046,0.034885343,0.28692225,-0.5751064,-0.059766483,0.35271823,0.19664939,-0.044890147,0.08616907,-0.39815503,0.3308784,-0.6390615,0.04256626,-0.34787673,0.18297146,-0.29164925,-0.3415774,0.2602678,-0.048703022,0.26886457,-0.4144469,-0.39629364,-0.13542674,0.29340822,0.2190753,0.22788954,0.5499076,-0.20335627,-0.06846772,-0.052416228,0.5407275,0.80831605,-0.23977186,-0.1599371,0.22408561,-0.49737218,-0.5423208,0.0828121,-0.6073325,0.11463143,0.059098322,-0.14598729,-0.3970775,0.2945069,0.10911963,0.17848821,-0.055442892,-0.94369143,-0.28123638,0.26084295,-0.25195062,-0.18111339,-0.36530113,0.13583857,0.65505636,-0.23580487,-0.13615227,0.06759439,0.17642514,-0.14385012,-0.76546645,0.17345232,-0.43087548,0.36821467,0.21930571,-0.20509349,-0.16719942,-0.027606042,-0.58043534,0.16920887,0.1726778,-0.20121646,-0.02527628,-0.37018442,-0.022496456,0.7529263,-0.13048616,0.26116276,-0.23134686,-0.48646373,-0.8432947,-0.14151031,0.18910207,0.14518146,0.03898566,-0.70153433,-0.17388992,-0.10938809,-0.19926517,-0.051889036,-0.33207455,0.4166763,0.15805082,0.43184206,-0.10471546,-0.91560054,0.25713524,0.15103267,-0.21823867,-0.3913039,0.33319083,-0.034160785,0.7645814,0.18198211,-0.027785324,0.16900612,-0.7660204,0.12075761,-0.21486963,0.043703537,-0.5334193,0.17810939 +78,0.31830892,-0.08389412,-0.36351544,-0.1300801,-0.10546659,0.25524473,0.0002238173,0.34704122,0.03050549,-0.3800281,-0.009876564,-0.14126933,-0.054718222,0.36074448,-0.010143377,-0.54060775,0.14185286,0.025810119,-0.5260048,0.43794537,-0.4692399,0.4426239,-0.033309646,0.10352632,-0.008877991,0.44164425,0.18285468,-0.2820995,-0.19474025,0.0077889487,-0.25469795,0.05035879,-0.4573785,0.15069509,0.0945671,-0.16174963,0.14647347,-0.2217711,-0.2214427,-0.4703595,0.14142011,-0.54260445,0.30599403,-0.0927441,-0.08085379,0.14544357,-0.0352944,0.38318455,-0.3383807,0.18273413,0.1695011,-0.17698674,-0.1854915,-0.17201379,-0.13354197,-0.43948048,-0.4830278,0.051771857,-0.39286318,-0.31600046,-0.15555793,0.054186475,-0.30734736,-0.036643058,-0.017583752,0.071013555,-0.45160466,0.00060908124,0.25069898,-0.14242351,0.00058847666,-0.5889275,0.12023709,-0.14134394,0.35082233,-0.2899779,-0.14076309,0.41953307,0.3754915,0.53676623,0.085127145,-0.106918976,-0.15353483,-0.23114786,0.20118631,0.54582965,-0.109139666,-0.30608726,-0.107765555,-0.004390925,-0.009958204,0.15541793,0.0070766434,-0.32334208,-0.1769842,0.08660638,-0.18419078,0.1958994,0.36393964,-0.42024127,-0.33304054,0.49018654,0.5961028,-0.028604478,-0.113907054,-0.027061936,-0.022301104,-0.5022683,-0.23166588,0.20010379,-0.14484477,0.37174347,-0.098047204,0.1482365,0.74573296,-0.36469823,0.045258194,-0.13584574,-0.095987216,-0.07244243,-0.030667806,-0.032990694,0.0849443,-0.38731006,0.053982772,-0.06352219,0.707115,0.38850436,-0.6790972,0.36342046,-0.41050696,0.14887665,-0.1680418,0.58985996,0.61422956,0.3353529,0.14047669,0.7631422,-0.48766863,0.28797987,-0.08569985,-0.41530895,0.12031167,-0.16886044,-0.13698377,-0.48422307,0.16546004,0.062626965,-0.13203889,0.068163574,0.12185113,-0.64896584,0.06924887,0.07065832,0.74690974,-0.31455117,-0.149709,0.44616342,0.8346008,0.7661566,0.0010387041,1.1764417,0.29692605,-0.37887967,0.23215875,-0.5805337,-0.64623934,0.09944886,0.41221595,0.1096884,0.23382393,0.21663985,-0.008670941,0.2541313,-0.3771801,0.16150337,-0.08906103,0.23789755,0.087900184,0.008156821,-0.24562354,-0.15766972,-0.06483343,-0.029053591,0.122279614,0.268888,-0.2368268,0.34137815,0.01956467,2.0001354,-0.0032545477,0.16268326,0.00013702922,0.47202885,0.037822314,-0.12027977,-0.16162431,0.34907427,0.32412428,0.15169682,-0.4991356,0.04116471,-0.25206465,-0.6404641,-0.06624043,-0.38145107,-0.08727879,-0.07375077,-0.23094001,-0.072263926,0.11812837,-0.2706802,0.64181066,-2.7402353,-0.08548245,-0.102717295,0.26294318,-0.37002426,-0.34086463,-0.17161503,-0.4457137,0.24074838,0.4022374,0.5000839,-0.7042335,0.34886366,0.19427611,-0.28638315,-0.20779215,-0.59074473,-0.007071048,0.028767938,0.22070724,-0.020950925,-0.05179716,-0.039785843,0.10496841,0.35928887,-0.13480192,-0.02809972,0.26157412,0.26429266,0.3263297,0.41137603,0.07754934,0.5982673,-0.17283235,-0.15299787,0.24900036,-0.251559,0.34477293,-0.06294629,0.09622364,0.1481084,-0.33976665,-0.7700113,-0.6577798,-0.2950604,1.2423911,-0.26892513,-0.10681203,0.19842525,-0.105581686,-0.15042509,-0.23089641,0.34942317,-0.043265477,-0.18947192,-0.64576185,0.16293594,0.007888252,0.3820191,0.065399356,0.04730226,-0.34405136,0.42058855,-0.16442391,0.49768946,0.28071612,0.06133627,0.06613508,-0.2796535,0.0660892,0.9839847,0.28017724,0.106193185,-0.04682849,-0.2680442,-0.3565472,-0.23578128,0.120099574,0.29149312,0.66979885,0.030846708,-0.07988665,0.278176,-0.03074763,-0.07371386,-0.143907,-0.23299189,0.08139681,-0.112856485,0.53940296,0.3355017,-0.18413454,0.5561644,-0.06974876,0.2135315,-0.04828517,-0.34829766,0.52461934,0.6977167,-0.16312842,0.025083616,0.26930517,0.44812363,-0.26946756,0.36648458,-0.62628365,-0.24388102,0.5163288,-0.21160473,-0.20776597,0.15304928,-0.22378868,0.108673126,-0.79112166,0.32895622,-0.06720634,-0.37005627,-0.44353223,-0.08578697,-3.6405573,0.068584666,-0.13823846,-0.19490555,0.15355691,0.13758017,0.033475623,-0.6077837,-0.3094888,0.1864866,0.08040059,0.5438622,-0.020560278,0.081358954,-0.26121366,-0.18660302,-0.31424814,0.09636773,-0.06657504,0.2751665,0.062156767,-0.33280107,0.032751076,-0.18954796,-0.313101,0.07154411,-0.54890436,-0.3936904,-0.20437336,-0.46591312,-0.25168434,0.72633517,-0.42013854,0.10930327,-0.12935671,-0.032772742,-0.15255569,0.20434472,0.25866103,-0.01498431,0.054887325,0.061074957,-0.05242929,-0.41626367,0.22506762,0.15192103,0.40212148,0.32494548,0.020729385,0.05944491,0.48672238,0.53074074,-0.053249784,0.57019347,0.5181707,-0.16920641,0.25393313,-0.42975128,0.018035537,-0.38278514,-0.5231721,-0.08948955,-0.31622112,-0.5863402,-0.014707327,-0.24370195,-0.6975877,0.3041821,0.0682943,-0.04657858,0.02319967,0.25887713,0.40454146,-0.264798,0.07441001,-0.056201234,-0.0487991,-0.4828065,-0.3655014,-0.49837202,-0.36736512,0.42823574,1.0739436,-0.31866398,-0.14569303,-0.084269606,-0.24996763,-0.119054995,0.00791036,0.042107083,0.24643825,0.28330302,-0.24981833,-0.6720239,0.43376136,-0.26653576,-0.056069024,-0.63222694,0.07779098,0.5407082,-0.6999335,0.32236683,0.2573707,0.08920409,0.20015925,-0.32535744,-0.21906736,-0.07198036,-0.2701529,0.120530404,-0.14196134,-0.64463854,0.38669583,0.19076093,-0.26942903,-0.5447813,0.42415524,0.026020762,-0.2897594,0.14490733,0.21948111,0.18247789,-0.089346945,-0.37435535,0.17634472,-0.51480806,0.24482736,0.45076716,0.040663917,0.27326778,-0.09703002,-0.23238745,-0.53468096,0.06139267,-0.4110391,-0.20349856,0.16613898,0.18496886,0.2064998,0.09784944,0.106011316,0.30580693,-0.39629728,0.040239424,0.086233154,-0.23826084,0.28917328,0.3438995,0.36755985,-0.4425035,0.5059886,-0.014317114,-0.05593894,-0.05117833,-0.06636953,0.49015558,0.20119861,0.11720168,0.056561228,-0.34257236,0.24543297,0.80290246,0.26294753,0.3236821,0.012373442,-0.26709485,0.17457826,0.1558283,0.09294833,0.27297065,-0.41757968,0.052468844,0.15806553,0.25445595,0.39584458,0.27243325,0.37950218,-0.04352433,-0.23344567,7.655006e-05,0.08336738,-0.07420319,-0.84569657,0.37313575,0.2668972,0.662011,0.32354176,0.02150257,0.12926471,0.4810101,-0.32039756,0.20998633,0.19090392,-0.4005545,-0.6513452,0.49659824,-0.61728394,0.48480392,0.0679362,-0.0010569971,0.10132834,-0.09937145,0.2623564,0.9020724,-0.19416758,0.0019098371,-0.11177503,-0.17108376,0.004804589,-0.38528237,0.069053926,-0.53042245,-0.31018147,0.53739965,0.3287409,0.25769162,0.017014612,0.12906167,0.019541718,-0.103795074,0.1590203,-0.10159008,0.20009752,0.13263738,-0.56850094,-0.39746937,0.5704557,-0.3379646,0.07120916,0.17525667,-0.18196446,0.25544325,-0.2377496,-0.025699513,-0.15210685,-0.4876191,0.053752184,-0.060311455,-0.27624962,0.39412507,-0.08260196,0.38960093,0.12419085,0.02162834,-0.30840173,0.62157845,0.15062606,0.6762898,-0.094956025,-0.31617445,-0.4477108,0.11864547,0.21070372,-0.21394059,-0.007631447,-0.18187705,0.020598732,-0.60036546,0.31828177,-0.014892694,-0.3047391,0.05018477,-0.30967164,-0.076713644,0.48491335,-0.07077092,-0.03721441,-0.06107935,-0.14195313,-0.19031,0.052636787,-0.24997771,0.13238558,0.20659171,-0.047267377,-0.10269832,-0.17107241,-0.10673734,0.24262394,0.054628797,0.16311732,0.20631453,0.010920286,-0.2023728,-0.19229287,0.09276816,0.28195122,0.009511273,-0.050847456,-0.19442663,-0.31727588,-0.3197401,0.13867892,-0.26706246,0.36626023,0.19435658,-0.36399496,0.52411026,-0.052000597,1.1691751,0.070687845,-0.2538107,-0.0054810494,0.5221303,0.17618203,0.16625859,-0.32259744,0.8325582,0.54766786,0.07490036,-0.172179,-0.2307216,-0.30510622,0.3373716,-0.07425705,-0.1926029,0.047332883,-0.6597353,-0.403557,0.32258427,0.09136517,0.3183115,0.09235574,-0.049602073,0.09674499,0.10794084,0.23423265,-0.4925022,-0.27198815,0.38069606,0.16682677,0.13413164,0.13828343,-0.40591317,0.46892273,-0.532594,-0.00466682,-0.12011861,0.12141923,-0.10315187,-0.11767979,0.2348939,0.13893022,0.41902304,-0.27036467,-0.45214853,-0.23651682,0.4770494,0.10869463,0.2860788,0.63633335,-0.23775205,-0.00067090243,0.0023400858,0.38509664,0.9550153,-0.2421902,0.03595816,0.4896583,-0.32273623,-0.40716064,0.3467961,-0.09395504,0.07651079,-0.027181752,-0.2935636,-0.4259142,0.3177505,0.16471173,-0.01439634,0.16864721,-0.54744005,-0.22826955,0.112680264,-0.28907788,-0.32988316,-0.39954403,0.37565073,0.8954709,-0.5150146,-0.2510078,0.22748011,0.20953798,-0.20994478,-0.43600917,-0.14722508,-0.3149557,0.23475175,0.08981314,-0.2796958,-0.12702633,0.07992421,-0.25922728,0.19430813,0.23635478,-0.40755406,0.10780454,-0.113527864,-0.02837602,0.7662809,-0.010989755,-0.025157502,-0.56074625,-0.29009265,-0.7406544,-0.5686808,0.5030646,0.1975328,-0.1991343,-0.3728962,-0.04272199,0.00696446,-0.2162088,-0.026955705,-0.5170136,0.48625457,0.051122237,0.0895466,-0.08388966,-0.7910188,0.060869955,0.0027729115,-0.20343718,-0.5219923,0.3597142,-0.1799629,0.8613117,0.06706561,-0.12427373,0.4007541,-0.40189293,0.0152541585,-0.3615156,-0.15050414,-0.64379865,0.1542411 +79,0.37189656,-0.036523532,-0.37717,-0.11445549,-0.15798381,0.22181176,-0.1258109,0.4033675,0.17264992,-0.30715314,0.0051971017,-0.05515442,-0.09521823,0.14846016,-0.06330712,-0.5789751,-0.055605005,-0.042321514,-0.35184753,0.47701535,-0.43084088,0.23838589,-0.26035193,0.28725937,-0.019834237,0.39640254,0.026089685,-0.054539,0.16400932,-0.0830456,-0.060090985,0.24181078,-0.40838608,0.27561292,-0.080734245,-0.09726562,0.09043495,-0.18129008,-0.31919172,-0.5176227,0.10364623,-0.6213406,0.4181438,0.0956831,-0.35812524,0.25541946,0.1274902,0.25369632,-0.2608705,0.10791136,-0.008650061,-0.014743058,-0.03601098,-0.21313287,-0.18563172,-0.6243211,-0.4400659,-0.025741922,-0.5232773,-0.1178887,-0.061683852,0.087701365,-0.16820237,-0.16155934,0.069616236,0.25316572,-0.4016843,0.11762188,0.27668953,-0.14278024,0.25955048,-0.5922006,0.03796668,-0.043771632,0.3048557,-0.05550553,-0.24297015,0.13969775,0.27953294,0.3800802,0.009165705,-0.14837855,-0.19415717,-0.23612073,0.19846849,0.3648814,-0.18237111,-0.31337687,-0.23373483,-0.05753108,0.02821186,0.38043112,-0.00402536,-0.2681999,-0.051143624,0.02685775,-0.07894714,0.2763032,0.41865477,-0.49289075,-0.347643,0.44640863,0.69932574,0.20560281,-0.110269055,-0.014132389,0.07042198,-0.41888908,-0.19098005,0.17290238,-0.069314815,0.3296874,-0.084900066,0.016830083,0.47593355,-0.24535123,0.08650472,-0.04550048,-0.05174845,-0.061012726,-0.44513923,-0.027263395,0.15416436,-0.4983031,0.09342659,-0.0534399,0.53264815,0.1126962,-0.5101927,0.22828466,-0.4558429,0.050219517,0.0051175593,0.47126848,0.71693027,0.36598718,0.029711245,0.8179493,-0.4024881,0.038573228,-0.27864262,-0.1119627,0.22866504,-0.13464294,-0.13856669,-0.50953496,0.21436208,0.19597705,0.032575678,0.07992547,0.1446118,-0.5705731,-0.10715068,0.28687662,0.6623438,-0.2894867,-0.08418026,0.506309,1.0956721,0.71309626,0.06894563,1.0811081,0.12924543,-0.1749486,0.24442454,-0.30668432,-0.6271551,0.13874987,0.32814917,0.11739953,0.28516787,0.1052214,0.036736917,0.2860632,-0.32278374,0.00993704,-0.09426441,0.4402111,0.16088845,0.0041090646,-0.28994936,-0.097746536,0.011478512,-0.07524475,0.2869296,0.1630295,-0.2952774,0.03650588,0.110107966,1.2686327,-0.17371848,0.29440174,0.11113507,0.28942245,0.29234067,-0.2275169,-0.017260032,0.47051606,0.21440691,0.17985101,-0.4981434,0.115830675,-0.15278696,-0.4774628,-0.18823105,-0.31553376,-0.079638295,0.002878221,-0.29098886,-0.09534,-0.027521668,-0.29559505,0.6439477,-3.0892668,-0.08853113,-0.26432207,0.2492533,-0.2917328,-0.2416375,-0.3063203,-0.31643328,0.36448574,0.41592205,0.31759357,-0.47265258,0.17896405,0.3876996,-0.48750558,-0.12762624,-0.49797752,0.010317111,-0.11456498,0.36585847,0.046369378,-0.123103715,-0.037834737,0.22396253,0.4119462,-0.0060552596,0.16150858,0.2045878,0.27371547,-0.08427843,0.35405844,-0.017570699,0.49296686,-0.21615893,-0.20534793,0.27643546,-0.38144016,0.39186576,-0.0141905835,0.1800388,0.3353657,-0.35239246,-0.8194996,-0.66424334,-0.26375613,1.174092,-0.24902073,-0.40508243,0.24272594,-0.48447368,-0.3177314,-0.12475642,0.47872868,-0.013562481,-0.05516074,-0.6920697,0.2154359,-0.13220273,0.23738521,0.0076972665,-0.002324291,-0.3868011,0.6141908,-0.059599835,0.43270662,0.2686061,0.09831098,-0.18330346,-0.3937231,-0.048552345,0.8094457,0.4621454,0.032286774,-0.034388937,-0.21530621,-0.31090742,-0.029310448,0.20669915,0.46427652,0.59355944,-0.07531044,0.07860977,0.21928644,-0.05012404,0.010185978,0.017872978,-0.21237797,-0.021028044,-0.051034555,0.598133,0.45399335,-0.19409929,0.2906465,-0.015852682,0.2177913,-0.24710867,-0.37677887,0.38395512,0.6367837,-0.20817754,-0.28447494,0.63402635,0.60215265,-0.17543408,0.29917446,-0.64825875,-0.21651742,0.3743245,-0.19613673,-0.32980317,0.07094383,-0.39167064,0.14062938,-0.70311075,0.2627016,-0.23518422,-0.4648637,-0.6369006,-0.24417813,-3.407092,0.14256497,-0.12418004,-0.083448984,-0.12723194,-0.018279335,0.44505933,-0.44176447,-0.42903718,0.2652916,0.025170539,0.52013665,-0.060323477,-0.032674875,-0.3467463,-0.28915274,-0.29336175,0.24244298,0.06566818,0.27142948,-0.09421737,-0.3003965,0.018260878,-0.016225075,-0.3051292,0.05980305,-0.4315646,-0.34337774,-0.12438424,-0.43967783,-0.038359635,0.7462973,-0.44676015,-0.002818356,-0.29581815,0.04055241,-0.012047456,0.18452969,0.13780592,-0.012778512,0.14693485,-0.02543525,-0.11904286,-0.40567076,0.32438692,0.14360356,0.22251335,0.3687048,-0.08756472,0.0982391,0.48840237,0.51480424,-0.08962444,0.85232806,0.4315106,-0.070174575,0.32076588,-0.24981579,-0.11676253,-0.3136333,-0.39068586,-0.12861498,-0.5124143,-0.48476335,-0.12596984,-0.25803378,-0.66570824,0.4039682,-0.003722304,0.24318549,-0.049656276,0.2945027,0.4506966,-0.22865997,0.06963302,-0.0012874941,-0.17956784,-0.36849442,-0.3286648,-0.40138072,-0.39976114,0.39086908,1.0056177,-0.3793253,0.0059524854,0.066764615,-0.21588595,-0.041677877,0.031156225,0.026972735,0.080257565,0.3416996,0.111924365,-0.41932875,0.41309774,-0.13511075,-0.27651122,-0.72527623,0.14364663,0.5783502,-0.63305324,0.51467925,0.3093342,0.13142772,-0.17241043,-0.48422182,-0.018934933,0.020035572,-0.29807433,0.3736314,0.23704529,-0.8041958,0.39744744,0.13366087,-0.11309963,-0.6246277,0.53204143,-0.10242108,-0.17170177,0.046386838,0.43854168,0.3188285,-0.011320984,-0.06953438,0.30769053,-0.484666,0.13890778,0.2576709,-0.050401963,0.6074726,-0.14453143,-0.18514639,-0.68475187,-0.25827974,-0.54237443,-0.2437764,0.3618893,0.01953658,0.069734015,0.23560013,-0.0032484294,0.42311615,-0.2722211,0.20145722,-0.041261606,-0.27681193,0.33367157,0.3537499,0.48539415,-0.27834496,0.44454306,0.052019987,0.0917841,-0.093615636,0.17734885,0.47968146,-0.09876121,0.4572285,-0.13838322,-0.110994495,0.24862213,0.7800658,0.062333364,0.22929072,0.01583012,-0.13716322,0.25267118,0.012837988,0.05213098,-0.007385417,-0.47180757,-0.022063788,-0.035909668,0.28676564,0.3214442,0.1800819,0.34400335,-0.027361117,-0.1460125,0.03087439,0.27889913,0.07214641,-1.0103801,0.30630353,0.12206628,0.67447007,0.40590763,0.10791885,0.09211705,0.43153623,-0.11384409,0.09516346,0.30421486,-0.011609729,-0.3368097,0.42638636,-0.7373856,0.6026351,-0.07627252,-0.059913658,0.046384733,-0.0091436105,0.5064321,0.9057966,-0.072598316,0.02449559,0.04142149,-0.21281268,0.1578998,-0.18270163,0.05073191,-0.4642772,-0.35554615,0.5532376,0.4343024,0.42863494,-0.2464769,-0.051246595,0.15769069,-0.066617504,0.074845165,-0.17795835,0.028010914,0.038626354,-0.599294,-0.27226707,0.37690338,-0.08705793,0.11219016,0.033567324,-0.23732719,0.1398213,-0.050601084,-0.0077869957,0.025909867,-0.4204392,-0.03592881,-0.17171447,-0.5534181,0.53139764,-0.36876336,0.21598521,0.15186474,0.022758195,-0.19589578,0.359463,0.018927677,0.7403373,-0.04685287,-0.11312071,-0.60931146,0.17241389,0.1335337,-0.2556941,-0.10942985,-0.3672672,0.18366759,-0.6744264,0.2793257,-0.1918518,-0.4249035,0.20765957,-0.25802982,0.06237878,0.49566936,-0.12684679,-0.17748566,-0.03482445,-0.4010093,-0.26288283,-0.14554143,-0.22229512,0.2550949,0.062773,0.050765578,-0.025432596,-0.26142484,-0.12535633,0.087793395,0.2727328,0.22754414,0.29090977,0.07288494,-0.15009204,-0.024210548,0.18950006,0.31732187,-0.16180044,-0.039596137,-0.05416423,-0.5132717,-0.45664874,0.11686865,-0.048567608,0.32901832,0.047803465,-0.27079573,0.5717132,-0.12296891,1.0304745,0.11621283,-0.27303654,-0.023714732,0.43272257,-0.031079466,-0.08165034,-0.305185,0.86345327,0.59128636,-0.07303017,-0.12919159,-0.13271487,-0.15540713,0.24147098,-0.19588709,-0.06327285,-0.034894533,-0.5675584,-0.24012633,0.16128871,0.20694415,0.20892814,-0.06944787,-0.11555693,0.0010278065,0.066167444,0.24253957,-0.45387703,0.006660406,0.3171893,0.34634525,0.028832415,0.19926907,-0.23928724,0.37977654,-0.54581136,0.025596919,-0.33415127,0.1536989,-0.20540968,-0.3044588,0.17604448,-0.12502177,0.39521995,-0.243356,-0.32585227,-0.20270042,0.3884385,0.17416523,0.10086049,0.5146193,-0.09867195,-0.01225971,0.042397548,0.5077364,0.92562383,-0.20427059,-0.062262848,0.21662779,-0.28009433,-0.54633975,0.21006083,-0.5398126,0.2149245,-0.007866081,-0.30804786,-0.222498,0.3324506,0.19796467,0.16936661,-0.08395108,-0.66492075,-0.11711743,-0.013408112,-0.22273152,-0.15944356,-0.123971954,0.18989778,0.77960575,-0.23654342,-0.28943932,0.06456258,0.32558793,-0.277404,-0.5868441,0.07466374,-0.37538254,0.19181521,0.1410443,-0.3022409,-0.03486669,-0.035267066,-0.39600593,0.028230023,-0.012580955,-0.3672376,0.065464936,-0.23819886,0.09444412,0.7266895,-0.07794738,0.25306568,-0.5382383,-0.38474366,-0.7454494,-0.29326248,0.20887747,0.23423281,0.042137288,-0.31792253,0.06451821,-0.15148121,0.03740643,0.021272827,-0.31419277,0.43687165,0.07886098,0.40739813,-0.1258544,-0.83020157,0.07940633,0.15161684,-0.18329641,-0.5383269,0.49410564,-0.18946268,0.77601755,0.102484606,0.011028956,0.27536204,-0.48410815,0.12293291,-0.28373623,-0.082322374,-0.8216193,0.08416775 +80,0.53283453,-0.036724806,-0.50367904,-0.16729313,-0.32564873,0.107875995,-0.36456317,0.1918317,0.27239454,-0.18524863,-0.080260895,0.043928392,-0.05590242,0.24219517,-0.075265385,-0.749008,-0.008186599,0.06812986,-0.81233716,0.64227295,-0.36476612,0.3702271,-0.07026649,0.431258,-0.10565984,0.46217147,0.26043367,0.0194641,0.11195732,-0.1213877,0.14803183,0.019425241,-0.80710226,0.2752338,-0.21542147,-0.23389214,0.0016320869,-0.36934435,-0.12527832,-0.6570717,0.14729163,-0.76828957,0.528449,-0.12593551,-0.11809098,0.048760645,0.10347758,0.24640682,-0.28167585,0.056218266,0.13854276,-0.16608146,-0.17903669,-0.36778212,0.064648174,-0.49749267,-0.30921793,-0.06932155,-0.70286953,-0.2233103,-0.34545875,0.16230044,-0.2881503,-0.08165188,-0.26233116,0.44044837,-0.31198686,0.013310067,0.28405342,-0.20827134,0.20547926,-0.525552,0.061645217,0.033051066,0.38581076,-0.02471965,-0.19006877,0.44208795,0.08702384,0.36379236,0.28435996,-0.3482463,-0.09390155,-0.057943784,0.21836437,0.35471666,-0.07442349,-0.21491629,-0.21499997,-0.09567061,0.44976547,0.21847822,0.01294386,-0.21091793,-0.102335446,-0.11182195,-0.10286562,0.69740236,0.5073316,-0.29821366,-0.18540218,0.30900082,0.5198737,0.31179783,-0.12653457,-0.056386482,-0.04514899,-0.51638776,-0.15170681,0.18914795,-0.0280029,0.3721345,-0.06596284,0.17505568,0.7147526,-0.143318,-0.049114276,0.13587344,-0.008790224,-0.091098934,-0.26518288,-0.06729512,0.23731324,-0.60801244,-0.14964962,-0.41066366,0.55934757,-0.0221565,-0.7046313,0.31704545,-0.5382019,0.030726004,-0.09886311,0.54411703,0.818183,0.52245677,0.18316078,0.7603372,-0.30088174,0.114108294,-0.10317734,-0.41067368,0.014844671,-0.13594441,0.079297036,-0.4334681,0.06530885,-0.22930035,0.23879167,0.030194715,0.29395983,-0.54888594,-0.15042943,0.08096685,0.65791905,-0.28617847,-0.062414005,0.68852353,1.1534213,0.8456514,0.042953752,1.0364281,0.19979799,-0.16999815,-0.044485405,-0.11847615,-0.40634692,0.31179965,0.44564986,0.24216962,0.3519636,-0.19131473,-0.086149566,0.2509131,-0.23826614,-0.12766713,0.07481514,0.5322049,0.12145816,-0.12299183,-0.31846115,-0.09943711,0.049855433,0.10018295,0.24875641,0.16459574,-0.24909134,0.18160701,0.17341922,1.0057442,-0.08802634,0.07142906,0.061303608,0.37682447,0.41258958,-0.15449312,0.00014494732,0.4098853,0.33635065,-0.06649648,-0.661422,0.26631394,-0.43623328,-0.4730183,-0.11779534,-0.38250977,-0.2088661,0.021907762,-0.5634341,-0.15773445,-0.024061894,-0.2014184,0.33250076,-2.6242576,-0.31508714,-0.12803634,0.42177248,-0.21864897,-0.24645486,-0.046370115,-0.42002863,0.21878657,0.29719478,0.3975765,-0.50537056,0.5879591,0.54076606,-0.5291704,-0.10579462,-0.511209,0.010468688,-0.002234893,0.5623422,0.03289501,-0.27388525,-0.21347466,0.3376872,0.6852983,0.007996704,0.17945066,0.44526845,0.31525227,-0.07697697,0.4391717,0.09530316,0.55873674,-0.30998433,-0.1663123,0.25519344,-0.19092044,0.20611894,-0.14820562,0.13677756,0.54613227,-0.2985518,-0.8894739,-0.53016543,-0.29673052,1.2074283,-0.23316944,-0.59761775,0.09019716,-0.014648259,-0.14598572,0.22666404,0.543498,-0.117614396,0.26841927,-0.6215107,0.22629249,-0.19272141,0.191899,0.03905523,-0.049449034,-0.31560925,0.79612136,-0.118495844,0.59767956,0.1696784,0.3893473,-0.13020739,-0.38404536,0.15501633,0.7520033,0.37834212,-0.00428541,-0.19655795,-0.15447193,-0.10880645,-0.03794138,0.012237569,0.6455078,0.5906192,0.00089711696,0.12645331,0.28291473,-0.091134444,0.040847756,-0.25425845,-0.2765816,-0.053251594,-0.008256942,0.61191696,0.7561374,-0.12143059,0.3411101,-0.12043737,0.18406609,-0.068957284,-0.5582312,0.6958335,0.4644804,-0.24295034,-0.12649041,0.54449356,0.40416837,-0.24155271,0.413606,-0.6827529,-0.40139884,0.6709864,-0.08835269,-0.31578,0.1855542,-0.24398193,0.21521246,-0.60070276,0.4117009,-0.45564532,-0.5064806,-0.34946895,-0.109246865,-3.2402792,0.28953177,-0.025748914,-0.06536555,-0.47630683,-0.034629565,0.31178686,-0.5701241,-0.5239015,0.06879306,0.13209157,0.66513133,-0.16904926,0.1310041,-0.18405874,-0.44136828,0.07849711,0.2823746,0.13011268,0.2026395,-0.09258841,-0.28174052,-0.050341323,0.05398171,-0.58868384,0.23893486,-0.47507966,-0.49845576,-0.047944892,-0.42235753,-0.1087284,0.5406368,-0.34006777,0.044422965,-0.22904913,0.2263673,-0.007341251,0.15181355,0.05192084,0.18217744,0.24446869,-0.00017806282,0.015805315,-0.24605393,0.33413774,-0.007588541,0.5047282,0.18694174,0.018815896,0.0062770825,0.4309367,0.5778706,-0.19060081,1.0306005,0.18196939,-0.04847242,0.3536138,-0.08581936,-0.42869788,-0.68973374,-0.34817183,0.04340654,-0.35632327,-0.34461474,0.114562094,-0.21639991,-0.8677125,0.41619506,-0.041467123,0.35168603,-0.10782561,0.3917738,0.51464975,-0.14516374,-0.07535204,-0.074785054,-0.20368996,-0.47445965,-0.31217632,-0.7257569,-0.4252179,-0.07297306,0.74530876,-0.32687518,0.03164737,-0.018920925,-0.062443018,0.14655173,-0.08321022,0.06722358,0.13583897,0.29929373,0.08847469,-0.513492,0.33991462,-0.13785762,-0.09827763,-0.4178486,0.1678518,0.6268972,-0.60463417,0.3780328,0.38251668,0.048931323,-0.091980405,-0.57187575,0.0034325533,0.035359137,-0.21899755,0.45600432,0.18797463,-0.94450927,0.6201722,0.093587875,-0.32570243,-0.7413765,0.41286978,0.07665274,-0.2560864,-0.19360676,0.3994434,0.021213956,-0.082169995,-0.270917,0.245448,-0.47112137,0.22061719,0.12051824,-0.09465136,0.17400798,-0.122145765,-0.37126848,-0.6665916,-0.08242532,-0.54317766,-0.31828249,0.23669337,-0.16995779,-0.03538045,0.19830066,0.04450726,0.49315345,-0.26872557,0.10715346,-0.09025982,-0.41812205,0.3855065,0.54823333,0.46619922,-0.17269728,0.48782745,0.10170529,-0.110864036,0.2184782,0.100796774,0.46886846,-0.05920857,0.3755198,-0.11410934,0.13720608,0.27172452,0.6827103,0.11309105,0.38992295,-0.06805294,-0.21144536,0.44188216,0.020243965,0.31135583,-0.21166846,-0.43549362,0.08859892,0.14233899,0.03732077,0.45594934,0.22547747,0.30910647,0.05596163,-0.24164389,0.0670235,0.2482854,-0.1610974,-1.327596,0.30827358,0.23832579,0.9306054,0.39618513,0.0055907518,-0.16592559,0.59196615,-0.16833034,0.10265303,0.31369284,0.08058496,-0.44156468,0.6169729,-0.6165534,0.25622016,-0.13601384,-0.021451164,0.22795704,0.07915436,0.30414551,0.8840005,-0.2952689,-0.005056926,-0.1823993,-0.13591188,-0.0761691,-0.19182733,0.07429269,-0.24204487,-0.4243588,0.7675476,0.28738132,0.29658315,-0.3267441,0.027615745,-0.06344902,-0.22667,0.22876889,-0.101784565,-0.033606358,0.0032765027,-0.36795083,-0.21394342,0.5184585,-0.06939915,0.14781605,-0.18616946,-0.12811892,-0.04544944,0.10429411,-0.04099351,-0.02431164,-0.57031405,0.08006213,-0.33469558,-0.363704,0.4388586,-0.32922095,0.021019265,0.2035635,-0.014040686,-0.08005799,0.21122012,0.09374506,0.48604783,0.11170095,-0.28652823,-0.35121998,-0.0029776935,0.11461875,-0.28597128,0.11050048,-0.36092132,0.14597622,-0.66186255,0.4298541,-0.19043817,-0.35221618,0.33787894,-0.25420794,-0.049177166,0.45742756,-0.0023468956,-0.16686988,0.09543677,-0.14766105,-0.29736546,-0.116232015,-0.21785997,0.20888454,0.17579927,-0.1823443,-0.1698949,-0.10088821,-0.15166718,0.4594676,0.14469874,0.38297793,0.21605432,0.0497763,-0.36783618,0.23085739,0.36543113,0.46786737,0.11864019,0.13196588,-0.31593728,-0.42245674,-0.4931169,0.14582244,-0.058780476,0.03813511,0.032292582,-0.23658444,1.021724,-0.03315015,1.0667942,0.010814618,-0.36327353,0.07193158,0.55733126,-0.08266097,-0.07471535,-0.4650273,0.9238095,0.50760573,-0.01803656,0.011933494,-0.24604727,-0.15350996,0.19308342,-0.38866746,-0.016079195,-0.13946176,-0.612206,-0.45084238,0.19372797,0.21628207,0.06351893,-0.108186714,-0.15470307,0.16845205,0.07095556,0.29987618,-0.8535102,-0.24772696,0.013329059,0.09072945,-0.13504508,0.24472985,-0.3850243,0.33689955,-0.7822019,0.17712311,-0.55570614,0.094509915,-0.17818232,-0.33826405,0.11683294,-0.030418068,0.3703828,-0.26291877,-0.4896269,-0.072325595,0.20471269,0.06329375,0.1439882,0.5599251,-0.17089672,0.004331693,0.12448554,0.6035482,1.0281503,-0.35439909,0.0920552,0.14505237,-0.45059305,-0.6353178,0.098267004,-0.41182625,0.02288394,-0.07714487,-0.37165186,-0.3169107,0.22911988,0.056374293,0.12589352,0.06467253,-0.8402971,-0.132819,0.31016296,-0.28898537,-0.07233921,-0.12990278,0.29715985,0.77078915,-0.35009792,-0.27759802,0.10571789,0.4501996,-0.1386208,-0.6296355,-0.015331879,-0.28856593,0.37463734,0.064525336,-0.25155616,-0.047432587,0.059178293,-0.51803946,0.13269389,0.33804476,-0.32336968,-0.0800755,-0.09183139,0.092668526,0.7615412,-0.17757417,0.056260742,-0.55085254,-0.53391737,-0.84838736,-0.5655282,-0.021064732,0.23449385,0.024932472,-0.37238392,-0.035269413,-0.12780069,-0.14664155,-0.030643811,-0.4908929,0.2581909,0.16971906,0.57955545,-0.28949526,-1.1201602,0.2033188,0.1596537,-0.13006195,-0.59616,0.48660856,-0.1687115,0.6845667,0.047219552,-0.10908108,-0.086385265,-0.58968663,0.08482756,-0.37518674,0.037832487,-0.7003311,0.21629103 +81,0.5072425,-0.3658976,-0.64852005,-0.08260037,-0.17938274,0.10638401,-0.26505342,0.5282467,0.19672921,-0.5412748,-0.10099265,-0.15182495,0.038702585,0.32294503,-0.19811009,-0.63170344,-0.10893496,0.08492153,-0.580549,0.45099753,-0.309923,0.3166247,0.09317418,0.36938503,0.33117387,0.3547723,0.03419962,-0.047948968,-0.4129705,-0.18412504,0.14297836,0.09317341,-0.524105,0.08416819,-0.18651004,-0.44048604,-0.09627066,-0.47050363,-0.27688026,-0.74570274,0.33804518,-0.8597698,0.44561407,-0.15685914,-0.37152883,0.14114851,0.016171329,0.56887156,-0.0761933,0.005113061,0.20120093,-0.12837164,-0.076891646,-0.12944108,-0.22953619,-0.3438613,-0.5287892,0.07440588,-0.34942982,-0.16113481,-0.039702095,0.09677089,-0.37274265,0.12453647,-0.07869032,0.4972306,-0.45778134,-0.11498766,0.28804848,-0.12645206,0.4156109,-0.5303722,-0.16330287,-0.17434289,0.17309402,-0.23111407,-0.15336984,0.2540749,0.28140843,0.41722926,0.049916252,-0.17497267,-0.42698878,0.01889968,0.2891911,0.43286297,-0.035268977,-0.3943302,-0.28124183,-0.0682253,0.22343014,0.09917943,0.23129956,-0.28578433,-0.061996676,0.0029292663,-0.34218243,0.34257305,0.43563515,-0.1637978,0.028915185,0.2734265,0.6302149,0.19552632,-0.19376603,-0.06673034,0.104940675,-0.42550707,-0.12253844,0.25626022,-0.13966073,0.4565531,-0.15312657,0.22613226,0.61570907,-0.2616186,0.043946497,0.062803246,0.0050840457,-0.17712711,-0.16491827,-0.30539715,0.28603932,-0.5499638,0.05887754,-0.39528206,0.67775697,0.19266771,-0.7178041,0.3240139,-0.5445248,0.08868041,-0.14445254,0.3814167,0.60621136,0.50893605,0.10307939,0.5817019,-0.43889868,0.0961697,-0.19416939,-0.31757122,0.05055189,-0.28303114,-0.024360832,-0.41924506,-0.015501508,-0.105911456,-0.19305891,0.02181549,0.35235834,-0.45294815,-0.068799295,-0.055391867,0.83004284,-0.27155158,0.0035300096,0.81852305,0.85657805,0.99492174,0.002729696,1.1940029,0.22044775,-0.29279646,0.15249316,-0.25841525,-0.59475887,0.4408355,0.2787405,-0.3230506,0.33912227,-0.09580953,0.13189307,0.5379572,-0.23107694,0.25724855,-0.23424838,0.03220507,0.085146815,-0.060841274,-0.37543276,-0.2478166,0.0030176998,0.03566587,0.049274944,0.20333262,-0.104118414,0.5925522,0.024345452,1.7004315,-0.15436932,0.11524057,0.04153878,0.30522472,0.101100355,-0.21489273,-0.1345346,0.03189771,0.19002597,0.08185882,-0.50364536,0.029987983,-0.15992735,-0.3528051,-0.22371219,-0.24825004,-0.0068080346,-0.20548026,-0.60799843,-0.04694934,-0.12728162,-0.2212297,0.31530765,-2.5300505,-0.31862104,-0.11909624,0.18893798,-0.46569103,-0.48763138,-0.118341684,-0.45028698,0.4433661,0.22760111,0.541659,-0.6307556,0.41761893,0.44809732,-0.51566887,-0.034365598,-0.54100484,-0.18932928,0.056384552,0.19998632,-0.006687464,-0.1362482,0.062574275,0.11597844,0.43214694,-0.23390089,0.060483873,0.20451637,0.2747825,0.013688871,0.5273493,0.051202282,0.5826609,-0.45878258,-0.23445514,0.3432954,-0.37711373,0.20617837,0.047183886,0.22837442,0.46717772,-0.48748866,-0.7839264,-0.7171425,-0.26846737,1.1636251,-0.042275675,-0.39760813,0.11870652,-0.31704488,-0.40428898,-0.044585396,0.3062881,0.024914093,0.08620796,-0.93866736,-0.08983936,-0.12900093,0.19630323,0.04752364,0.00090487796,-0.3752718,0.6266844,0.025762754,0.34757006,0.4675547,0.21372901,-0.19539131,-0.44002864,0.085620694,0.92678386,0.36129183,0.29317504,-0.35632852,-0.109264396,-0.5097916,0.07960745,0.08658595,0.37706995,0.64843714,0.016934125,0.010080402,0.1580988,-0.13157605,0.074732274,-0.13297293,-0.32963154,-0.18626592,0.052674692,0.5625979,0.5973806,0.050318763,0.5185701,-0.051495448,0.393227,-0.1611273,-0.5182066,0.558419,0.7914687,-0.21349287,-0.4055391,0.37927178,0.5510982,-0.28593573,0.4382948,-0.52889067,-0.3686674,0.30395275,-0.19168396,-0.55169296,0.33889157,-0.37927967,0.30461305,-1.0326478,0.1149378,-0.552579,-0.2552458,-0.5510197,-0.18441702,-3.0229297,0.23298006,-0.021725496,-0.32729116,-0.026024591,-0.11152277,0.2374796,-0.6217236,-0.7574618,0.10352993,0.0054808045,0.7734733,0.010190391,0.048367795,-0.22121117,-0.16547073,-0.15255155,0.10509269,0.230917,0.23150696,-0.02465625,-0.568146,-0.24205609,-0.28917977,-0.3776792,0.10776583,-0.69405776,-0.62935627,-0.24511696,-0.48171842,-0.38871416,0.5876125,-0.2704954,0.06420842,-0.007467063,0.07954638,-0.046441514,0.40290987,0.052555908,0.121059984,0.18560284,-0.17110136,0.12297765,-0.2362323,0.12446175,0.1808586,0.26019266,0.47233248,-0.21204092,0.3867175,0.5701662,0.9156893,-0.049210824,0.72973025,0.41297728,-0.15995461,0.2924289,-0.3408464,-0.40981787,-0.4608429,-0.14162804,-0.07190568,-0.3680322,-0.44131917,0.026153104,-0.3443286,-0.74268955,0.52595097,0.10163693,-0.11380062,0.065159515,0.12373927,0.4605281,-0.23369725,-0.07900395,-0.055514175,-0.024511179,-0.4519315,-0.39240277,-0.65104324,-0.6398218,-0.03237496,1.1563035,-0.014309003,0.09382558,0.11699698,-0.2889194,0.10044384,0.18484643,-0.038969286,0.023948852,0.3241404,-0.12005364,-0.56504,0.4276744,0.005807789,-0.13130717,-0.5729572,0.19327103,0.77403426,-0.5159824,0.42772827,0.40724862,-0.028913118,-0.18523884,-0.35957125,-0.008884132,-0.0032669762,-0.26468846,0.5098632,0.23671202,-0.5108791,0.27254283,0.3949318,-0.29790413,-0.6362429,0.47160402,0.11339652,-0.119591184,-0.21154395,0.36302418,0.004769639,0.05299944,-0.17480375,0.10173845,-0.41592553,0.09484294,0.40904713,0.012804175,0.24752387,-0.11736871,-0.14587396,-0.6805035,0.06382123,-0.45289657,-0.13568728,0.3312991,-0.034230795,0.22520797,0.16729297,0.17176437,0.2957491,-0.28423545,-0.009079565,-0.14359084,-0.2683855,0.3832021,0.41235092,0.46539465,-0.45790374,0.51111454,0.025450507,-0.00014967124,-0.008454565,0.036271587,0.65481925,0.21011995,0.29557213,0.13239056,-0.20983832,0.15739377,0.80043995,0.20518813,0.54994905,0.13449232,-0.22777349,0.061012696,0.16140166,0.18677801,-0.014951853,-0.48217806,0.03382788,-0.06721687,0.0985853,0.32886824,-0.06285413,0.34567377,-0.11222327,-0.3918541,-0.047521226,0.04083967,-0.07812985,-1.3287574,0.40442112,0.23376976,0.795781,0.42795798,0.023204792,0.14536624,0.586374,-0.13427737,0.25359538,0.3349096,-0.09387233,-0.62036884,0.4981926,-0.6965664,0.4270415,0.088625744,0.005567938,0.033393003,-0.10657228,0.5392724,0.70956075,-0.16201405,0.16997972,0.04538356,-0.3624749,0.025035,-0.36402112,-0.06896618,-0.48690188,-0.1922278,0.6744449,0.4618882,0.40516904,-0.17547435,-0.04048248,0.12965408,0.09710924,0.33864644,0.037518024,0.22781709,-0.0060620625,-0.5522302,-0.299826,0.44972458,0.09458634,0.3039333,-0.052699592,-0.22657588,0.22951807,-0.031130785,-0.09429259,-0.18393464,-0.6252383,0.0030503036,-0.5570484,-0.43227214,0.3161182,-0.059575345,0.28041095,0.12995681,0.111293904,-0.37387472,0.5712767,0.0386081,0.80445653,-0.086553015,-0.12991634,-0.19001588,0.27441072,0.32157248,-0.14941907,-0.10228153,-0.1371922,0.10287048,-0.6148891,0.4243618,-0.08129935,-0.39104816,0.14370935,0.051829856,0.10031017,0.511521,-0.26201195,-0.19392858,0.07529887,0.02296765,-0.24561481,-0.26353434,-0.075750336,0.27401552,0.2775559,0.012820447,-0.15792824,0.023685666,0.111251205,0.46325245,-0.045320194,0.47784868,0.49979815,0.09689527,-0.5323843,-0.1453902,0.23554903,0.4933667,-0.04580524,-0.18898776,-0.51564664,-0.36787456,-0.34952354,0.33569488,-0.07692431,0.2567685,0.12914307,-0.32620937,0.8050592,0.018094389,1.1632748,0.024339434,-0.3522152,0.18102542,0.34620205,-0.062874906,-0.07258192,-0.44222745,0.82058877,0.43523833,-0.2305317,-0.07659613,-0.5125516,-0.09347639,-0.037319183,-0.23107538,-0.06753676,-0.07093623,-0.6810207,-0.30785015,0.31855246,0.27655715,0.12804034,-0.2407692,0.17530337,0.22964579,0.018084597,0.213694,-0.47914132,-0.13609533,0.3392046,0.29544133,-0.00083449285,0.13987722,-0.52216494,0.3059961,-0.56236,0.06628557,-0.18760353,0.15112375,0.01726508,-0.3552036,0.2588197,0.018846836,0.21457966,-0.41557497,-0.3639004,-0.24802637,0.5518507,0.1056536,0.18080588,0.5999668,-0.18246715,0.09551463,0.09970123,0.5109788,0.91012585,-0.21988373,0.11909887,0.45116007,-0.19687265,-0.50608927,0.20873909,-0.26058832,0.38921946,-0.09224919,-0.22911477,-0.72230524,0.3197096,0.31698844,-0.085839584,0.041338906,-0.5472735,-0.08882883,0.352457,-0.41079172,-0.3107459,-0.37579003,0.015040477,0.33413452,-0.14033331,-0.32371446,0.14468527,0.31799105,-0.28077048,-0.08284375,-0.10104526,-0.23613328,0.22028944,0.20515491,-0.305579,-0.056315508,0.108307436,-0.47057608,0.098922096,0.08634936,-0.36736143,0.043305222,-0.29357296,-0.056811117,0.8360203,-0.16109058,0.2437091,-0.4693684,-0.47277963,-0.859556,-0.3131279,0.4635688,0.07360809,-0.045387816,-0.68547523,-0.0056704483,-0.09926948,-0.052879356,0.02515127,-0.41621482,0.48806825,0.06554785,0.37686282,-0.13896161,-0.6035864,0.16607997,0.20110743,-0.18423061,-0.56082326,0.4227293,-0.07680818,0.7561812,0.09220084,0.20187964,0.38098133,-0.45583278,-0.05697068,-0.20336924,-0.18725678,-0.5885179,0.0080142375 +82,0.5502638,-0.23730938,-0.5114646,0.055038646,-0.3741103,-0.1860727,-0.44110242,0.24172576,0.4344165,-0.13936701,-0.3603684,0.05345365,0.08789206,0.2818191,-0.052618533,-0.60838586,-0.04135793,0.097622216,-0.9563145,0.8355899,-0.38738212,0.18999839,-0.030436033,0.6489045,0.050010324,0.36615968,0.16047429,0.040717706,0.10942819,0.021693567,0.08339157,0.26364744,-0.7088623,0.14381808,-0.38003573,-0.35537884,-0.099226035,-0.5820001,-0.21714556,-0.9552874,0.22594933,-0.949739,0.5439046,-0.0006697811,-0.18759727,-0.25489888,0.10110121,0.21768089,-0.20281695,-0.21100686,0.09896362,-0.25010258,-0.19472218,-0.31608668,0.14311981,-0.3649626,-0.40623346,-0.018921494,-0.4223701,-0.25164866,-0.07665378,0.085092835,-0.4032655,0.0030259714,-0.30816576,0.36975035,-0.3746718,0.19076605,0.5436656,-0.17777298,0.24177182,-0.7203238,-0.159869,-0.0112071885,0.5794928,0.04984056,-0.42406568,0.2805693,0.2758601,0.5351029,0.29922566,-0.24988951,-0.09134337,-0.10215596,0.23429506,0.57357186,-0.19925475,-0.37060916,-0.2987634,-0.0039876252,0.5100139,0.38568354,0.09348231,-0.09875134,-0.02220433,-0.1561753,0.12153009,0.44454262,0.5845468,-0.056374375,-0.32116225,0.034042638,0.5784278,0.6244334,-0.21772556,0.0028346379,0.067441724,-0.5852891,-0.1817634,0.015031676,0.036500458,0.5553706,0.013906983,0.4033736,0.7091473,0.020645618,0.049670696,-0.0007229398,-0.0993577,-0.18605451,-0.34353173,-0.075502284,0.34381258,-0.61848015,0.070626356,-0.33528113,0.44587278,0.12645695,-0.61563593,0.34193397,-0.56684417,0.2926658,0.062360276,0.6946173,0.9644065,0.34407362,0.5523264,0.807312,-0.16450925,0.20307289,0.12013487,-0.32165655,0.13419116,-0.42739215,0.2392761,-0.5187212,0.1253051,-0.092793174,0.20692013,0.06947623,0.30828622,-0.6294298,-0.25310588,0.08478582,0.6333216,-0.14394344,0.08180594,0.96231514,1.0464501,0.89462954,0.08874035,1.4450566,0.23493631,-0.24253456,0.0636112,0.087970875,-0.8601275,0.18323065,0.30898675,-0.20977771,0.54820263,-0.09256529,-0.22394033,0.6396355,-0.44487008,-0.09322246,0.05234563,0.13833468,0.026283225,-0.22105063,-0.670943,-0.21758425,-0.19751911,-0.07668198,0.082385145,0.27473873,-0.23608811,0.45239148,-0.11809132,1.1724204,-0.27458745,0.059998866,0.15213288,0.35956016,0.28818822,-0.2249512,-0.002182002,0.18809582,0.38268247,0.15963851,-0.6071567,0.290444,-0.3365158,-0.349781,-0.1640711,-0.34275782,-0.3453598,0.062726595,-0.5268669,-0.33311003,-0.21435821,-0.027794095,0.22445895,-2.5604355,-0.41879264,-0.29665664,0.4637175,-0.21053986,-0.08700853,-0.16411316,-0.44660679,0.17657602,0.18650277,0.6008988,-0.639395,0.36278903,0.4278339,-0.7861851,-0.14881115,-0.7199407,0.0060273907,0.28907248,0.48796108,0.07735661,-0.399089,0.05784549,0.20899421,0.6575482,0.1375264,0.20856512,0.46658453,0.6629023,-0.12201952,0.29432443,-0.1841007,0.5731961,-0.5535836,-0.24648635,0.45928046,-0.27962425,0.46835542,-0.25405896,0.141961,0.7166125,-0.4108487,-0.85749674,-0.37404636,-0.2030446,1.0465378,-0.2672931,-0.73639303,0.07534822,-0.59908736,-0.04175618,-0.051310897,0.85683316,-0.07590275,0.177392,-0.78039056,-0.02004105,-0.19205524,0.10694164,-0.038951125,-0.09599402,-0.35980824,0.84997773,0.03243436,0.5917129,0.32852975,0.2992613,-0.06260087,-0.45254517,0.23625498,0.68433905,0.4676657,0.1804014,-0.23836172,-0.09293757,-0.18536665,-0.29630733,-0.00068217516,0.78054,0.65603286,-0.13847017,0.22672981,0.26499698,0.1480692,0.15417294,-0.19289415,-0.09282115,-0.2965309,0.0017074844,0.5008401,1.0958635,-0.26684907,0.23562787,-0.15847947,0.28857425,-0.10518042,-0.50829846,0.7392486,0.5551221,-0.3285285,0.054484114,0.5114222,0.5029224,-0.576502,0.43698612,-0.7324858,-0.2972918,0.5792106,-0.043293115,-0.49921998,0.29509592,-0.31917998,0.26658726,-0.7264568,0.47673878,-0.45159483,-0.32092842,-0.50491494,0.07459953,-2.480355,0.3598149,-0.17673647,-0.06579106,-0.6966891,-0.21470559,0.213504,-0.6586787,-0.7491705,0.254442,0.08062049,0.72384876,-0.23843272,0.05925669,-0.2436315,-0.5693031,0.105836324,0.05723555,0.25944516,0.33415115,-0.33466434,-0.20809531,-0.17378123,0.15046571,-0.3545921,0.10198816,-0.6093047,-0.68275493,-0.16114067,-0.36490583,0.0337662,0.6027881,-0.3428562,-0.035063867,-0.42095825,0.020518253,-0.28617516,0.24843228,0.030838216,0.2670472,0.167688,-0.041721728,0.03989814,-0.16225277,0.44850883,-0.06123661,0.3706956,0.31849816,-0.11569344,0.4126407,0.44475067,0.7703805,-0.22679527,1.1622806,0.3719634,-0.08731123,0.30932948,-0.23184882,-0.41482988,-0.6497666,-0.291129,0.15453784,-0.40293506,-0.63590115,0.13174309,-0.3439459,-0.8674342,0.51754713,-0.0006621505,0.56157404,0.14935195,0.33190316,0.55873686,-0.24978893,-0.051597517,-0.035808373,-0.15511699,-0.67769235,-0.12800322,-0.6435576,-0.56880456,-0.05156834,0.7771776,-0.27836958,0.18262474,0.3830446,-0.4657195,0.055132944,0.16243117,0.029980706,0.01898084,0.4693071,0.22738671,-0.6241011,0.42738366,0.012630527,-0.4177482,-0.44236407,0.2786233,0.71991944,-0.73143786,0.6379173,0.46890786,0.052013967,-0.13798447,-0.52105606,-0.30171415,-0.0106716305,-0.19186066,0.44354296,0.38338462,-0.8267128,0.41130754,0.33902678,-0.32056907,-0.7958556,0.48582768,-0.11032558,-0.119549096,0.003951823,0.37984434,0.05306512,-0.03993425,-0.13293988,0.24922861,-0.4543304,0.2917915,0.15592729,-0.19608586,0.22414462,-0.04279365,-0.3636233,-0.6923316,0.22770305,-0.7480697,-0.20335923,0.58049035,-0.079855464,-0.089688756,-0.016920855,0.43073538,0.33566126,-0.39287722,0.12804256,-0.08289276,-0.4900972,0.27714035,0.59439725,0.3529404,-0.48165116,0.6519446,0.19261523,-0.12875594,0.36503646,0.26933393,0.316094,0.042089958,0.4517859,-0.29267284,-0.09118394,-0.06644305,1.044243,-0.0044238716,0.4137945,0.071723424,0.109547436,0.47434697,-0.027424388,0.29058793,-0.22156157,-0.5019563,0.050420504,-0.09258106,0.1508338,0.53427356,0.3793559,0.06404036,0.06115659,-0.24248321,0.049495935,0.43548298,0.10090389,-1.4646153,0.37186253,0.2554904,0.9476382,0.2966435,0.034628022,-0.18138145,0.6903248,-0.05310303,0.093063235,0.44581494,0.0060099214,-0.5683009,0.8455575,-0.57284063,0.36252752,-0.24071515,0.02187161,0.15203767,0.25601482,0.20829515,0.71026427,-0.29767677,0.009222894,-0.26388803,-0.18134616,-0.013445933,-0.36049318,-0.043119404,-0.2420007,-0.5691337,0.88638896,0.5565296,0.45337978,-0.4160048,0.1440656,-0.0018896075,-0.13818257,0.3905008,-0.08341529,0.02963976,-0.0058697513,-0.6535799,-0.06762852,0.5389691,-0.18159299,0.13417494,-0.3135107,-0.42630306,0.109889925,-0.23279919,-0.029593656,-0.086457394,-0.8693428,0.21098894,-0.65547717,-0.81977934,0.5831384,-0.113392055,-0.038792305,0.39601,-0.025221586,-0.09299025,0.45907354,-0.3636123,0.9074543,-0.0424639,-0.30264843,-0.3365158,0.2754039,0.3543749,-0.33767936,0.17005628,-0.32297334,0.36998478,-0.22324407,0.811229,0.08912888,-0.5058576,0.03836082,-0.07217472,-0.05720018,0.60866433,-0.20301096,-0.24232878,-0.05370438,-0.2741724,-0.3514397,-0.35623375,-0.24895732,0.17028765,0.32441393,0.1338485,-0.21772157,-0.28971744,-0.18071075,0.3847597,0.069517225,0.57518744,0.5088468,0.094967626,-0.30762196,0.17810126,0.5041013,0.50290006,0.22618453,-0.16676402,-0.5371329,-0.71071655,-0.51558036,0.31111655,0.00046204776,0.31354755,0.1554055,-0.12090939,0.89615965,-0.068581596,1.0277525,0.11501739,-0.3285518,0.13350661,0.55259126,-0.277707,-0.18851207,-0.4662415,0.9447778,0.4057518,-0.13648675,0.20393865,-0.3288981,-0.094236076,0.37961903,-0.3488598,0.19102068,-0.1627003,-0.55232954,-0.30936792,0.052586112,0.34283733,0.034576233,-0.2723976,0.100878626,0.020136962,0.005112806,0.1975575,-0.8058761,-0.5299266,0.26122162,0.05671975,-0.30225524,0.07381486,-0.39994553,0.3546009,-0.73442715,0.16200124,-0.7475269,0.14098215,-0.057498664,-0.45096207,0.14866251,-0.2155834,0.5044845,-0.6122973,-0.28520587,-0.17033117,0.1561573,0.31456995,0.07349188,0.58206946,-0.34777668,-0.04891287,0.26979187,0.7411534,1.1451749,-0.4607719,0.16355373,0.108663134,-0.5253615,-0.55578154,0.3130431,-0.41101512,-0.041324895,-0.28034428,-0.46251336,-0.6515469,0.053821493,0.1788029,0.12875551,-0.20386375,-0.9141722,-0.26981786,0.22913337,-0.40338528,-0.20287848,-0.41014218,0.19546898,0.7475608,-0.13804494,-0.27961516,0.051138084,0.1696731,-0.107373886,-0.50274485,0.10095646,-0.33144698,0.2589049,0.004998485,-0.37318718,-0.15221578,-0.054543138,-0.61228293,0.23225407,0.19539519,-0.42677364,0.07319951,-0.26969105,-0.061605457,1.1809214,-0.3590542,0.03126697,-0.43974924,-0.63612187,-0.88122606,-0.5129512,-0.15067564,0.34108296,0.1501653,-0.46114063,0.17877476,-0.058814753,-0.055469766,-0.06493687,-0.47576198,0.37568521,0.17224969,0.72434855,-0.48202667,-1.0311987,0.16635995,0.09529894,-0.06989946,-0.4993519,0.36523023,0.05721828,0.8203991,0.11161935,-0.053087488,-0.14598666,-0.5208996,0.012028933,-0.25037995,-0.123234116,-0.86926085,0.18674533 +83,0.55699563,-0.6950253,-0.67488045,-0.15226059,-0.3026416,-0.12844613,-0.41190624,0.5516479,0.053594403,-0.32936826,-0.39628664,0.011113799,0.06724204,0.6881106,-0.16064517,-0.6782664,-0.19009805,0.07057956,-0.8136681,0.85614884,-0.43238553,0.16600464,-0.010240038,0.5013626,0.39161775,0.18978818,0.45579427,0.12800436,0.248451,-0.2033941,0.25991896,0.106607355,-0.71999955,0.31896168,-0.26314992,-0.6094769,-0.24042463,-0.75794774,0.09987615,-0.884205,0.07895878,-0.9283421,0.38615614,-0.0011434588,-0.4102519,-0.2956701,0.3585497,0.4525355,-0.26524767,-0.00052795146,0.37447673,0.023988105,-0.3604616,0.09762202,0.08914571,-0.40148452,-0.6461557,-0.1910927,-0.7178198,-0.24085575,-0.05331788,0.11919562,-0.322807,0.021280117,-0.28229028,0.31627384,-0.52856594,-0.39206123,0.29339048,0.09017591,0.3912333,-0.711358,-0.18955234,-0.35845575,0.51363546,-0.036761932,-0.41286775,0.286816,0.3660103,0.47034448,0.31502363,-0.29163033,-0.33874738,-0.2669124,0.43066365,0.5169554,0.13373148,-0.35022154,-0.5591947,-0.14798686,0.3396891,0.40313685,0.1517474,-0.48130915,0.032655902,-0.29432705,-0.13539986,0.7154521,0.38433135,-0.26938853,-0.32057285,0.2777964,0.8944461,0.7173362,-0.38832647,0.14689143,0.06623479,-0.59940314,-0.21753147,0.33153474,-0.05687494,0.547868,-0.16173322,0.11604447,0.7139933,0.13360305,-0.11407578,-0.048333935,0.038459398,-0.43834293,-0.40069753,-0.5369895,0.29009566,-0.50742126,0.40957597,-0.31619507,0.7272961,0.15426067,-0.9139335,0.35672247,-0.68407845,0.25614148,-0.011329048,0.59575,0.79840046,0.3554128,0.39915565,0.8606144,0.020472076,0.23759812,-0.11375848,-0.13115498,-0.0819278,-0.44631338,-0.073144995,-0.6599725,0.3315039,-0.39010713,0.1971948,-0.11419389,0.6754955,-0.3850257,-0.32239687,0.18728249,0.53787917,-0.23656909,-0.04258379,0.8549943,1.1117793,1.5539304,0.19754162,1.2585839,0.2086873,-0.25110298,0.08316839,0.00014599826,-0.88667035,0.18325312,0.47905242,0.27221256,0.51380944,-0.2228276,0.059284847,0.57499796,-0.42641538,0.290968,0.17333817,0.38511452,0.10273846,-0.18623513,-0.6639544,-0.2390696,0.08023385,-0.10373202,-0.1520586,0.3424704,-0.08748559,0.34104148,-0.008918153,1.2510338,-0.30720317,0.018468112,0.08366121,0.44744137,0.23519972,-0.37525862,-0.21708538,0.11012917,0.50165963,-0.16627005,-0.8461952,0.27983665,-0.36435002,-0.40206343,-0.070563205,-0.37694004,-0.2862632,-0.13602132,-0.50461173,-0.01430833,-0.02507117,-0.35875526,0.37901673,-2.399098,-0.37386015,-0.40163916,0.18523921,-0.26443753,-0.14457351,-0.22979842,-0.45829624,0.44591337,0.21796146,0.70859957,-0.5790788,0.6444143,0.6247245,-0.70016235,0.006102403,-0.73191494,-0.1879596,-0.011400592,0.5003415,-0.049146313,-0.08472614,0.13668767,0.5296935,0.7939462,0.16084148,0.2642709,0.6488914,0.39312556,-0.018562084,0.7282517,-0.1889047,0.501252,-0.8004592,-0.17136094,0.23188268,-0.35430688,0.5306496,-0.18043776,0.14751299,0.7871266,-0.7667348,-1.1444613,-0.63973385,-0.64249027,1.063975,-0.5201544,-0.40281704,0.30530643,-0.14271706,0.12713245,0.13978454,0.6324241,-0.08219153,0.19573489,-0.64750165,0.006260026,-0.023936847,0.115530305,-0.09110204,-0.037532493,-0.44604662,0.9907609,-0.14681236,0.8303633,0.5519229,0.28470004,-0.17580634,-0.3708503,0.1805533,0.7134441,0.43027574,-0.018741956,-0.4276151,-0.14286363,-0.527288,-0.21280149,0.19153064,0.5703981,0.7691168,-0.28078198,0.24341877,0.20648678,0.05983682,0.089920595,-0.33729568,-0.33320615,-0.20652722,0.09138134,0.43967745,0.7518391,-0.11375186,0.32657456,-0.12977536,0.053769484,-0.13093401,-0.59433293,0.5493158,0.5848122,-0.25765947,0.084664606,0.6048546,0.72714674,-0.41938603,0.72996414,-0.6940274,-0.14115724,0.7663074,0.012115585,-0.36167207,0.19635968,-0.5166787,0.14865144,-1.1482991,0.1551841,-0.7432038,-0.39090002,-0.36819956,-0.0823759,-2.4026058,0.5098779,0.20896322,-0.2185318,-0.46170828,-0.09817477,0.21423185,-0.8835796,-1.2334197,0.28439558,0.0014020404,0.72433025,-0.33384255,-0.037880883,-0.2901051,-0.37692448,-0.1254109,0.40061158,-0.12328974,0.4712811,-0.21739198,-0.47106832,-0.057522163,0.02230876,-0.6060341,0.053459823,-0.6902856,-0.67427504,-0.10218503,-0.72673935,-0.26376092,0.5063166,-0.5643636,-0.09039564,-0.053465813,0.011870629,-0.21349488,0.2868602,0.06858183,0.42379862,0.19351083,-0.044190794,-0.1163498,-0.11130299,0.20997937,0.0193182,0.072526306,0.08449942,-0.22691737,0.27116367,0.7117149,0.89908767,-0.23583671,1.3333703,0.3591998,-0.0862135,0.2731198,-0.29569182,-0.105904736,-0.7583214,-0.27842987,-0.35887253,-0.37907255,-0.9944634,0.18884046,0.06257975,-0.8008177,0.6539552,0.100615144,0.50209755,-0.015664915,0.030789945,0.13471545,-0.18726413,0.063982196,-0.06730571,-0.14166856,-0.50859237,-0.4413498,-0.7249072,-0.54712933,0.004376332,1.0007554,-0.3189061,-0.14864731,-0.025146408,-0.56053066,0.22733876,0.25178927,0.02277506,0.34800196,0.32879755,0.27149218,-0.57900023,0.29303756,0.049127273,-0.1723563,-0.25488666,0.13017851,0.8198087,-0.6105975,0.7250518,0.30961567,-0.13167368,-0.26211846,-0.78771484,-0.15135215,0.20872556,-0.08144638,0.48550287,0.2215536,-0.8385656,0.5152788,0.35221767,-0.33713314,-0.9434208,0.7104258,-0.0795239,0.094135314,-0.24759547,0.5173484,0.17458399,-0.07069217,-0.405501,0.43583792,-0.31678098,0.20452087,0.18744291,-0.09663471,0.18338148,-0.09194191,-0.13993722,-0.77785534,0.056889575,-0.7375622,-0.17772667,0.5565288,-0.15059833,-0.17637768,0.23442872,0.28493214,0.29837433,-0.48840135,0.2475057,-0.034900177,-0.5361098,0.43323478,0.5999824,0.29968974,-0.29473975,0.56203973,0.23902996,-0.022884097,-0.031966764,-0.0062968964,0.16394655,-0.13170674,0.5519662,-0.1460477,-0.09166327,0.06117175,0.74877673,0.18874735,0.4989412,0.10614101,-0.2206865,0.3263723,0.22892506,0.57837176,-0.3122071,-0.4032385,0.30361447,-0.09457192,0.057206526,0.6633408,0.1375579,0.21454078,0.20672561,-0.044937715,0.06598774,0.31670123,-0.19887942,-1.6586514,0.48285213,0.16820158,0.8933701,0.9065707,0.08627624,0.024459004,0.34823155,-0.45633513,0.068773076,0.69441825,0.17239764,-0.4353958,0.87063605,-0.6763841,0.44867957,-0.34988892,-0.038778618,0.1842073,0.1601492,0.54194736,0.8308427,-0.17024463,0.0490759,-0.2255345,-0.1498252,-0.02538183,-0.41074467,0.1183057,-0.34790057,-0.5533375,0.96799684,0.58848554,0.60554576,-0.19094096,-0.03543079,0.00026269755,-0.19450468,0.28048736,-0.1279141,-0.1511864,0.15222815,-0.6389277,0.00055827695,0.8441654,-0.28046063,0.115291014,-0.23487899,-0.6908499,0.11681715,-0.053354412,0.18874034,0.11582449,-1.2565455,-0.06436649,-0.41517374,-0.4463351,0.287699,-0.40253592,0.08798541,0.31693134,-0.11442104,-0.25563312,0.24170364,-0.029234346,0.7904713,-0.08674923,-0.15470186,-0.021406017,0.15819234,0.30711898,-0.27055827,0.16264331,-0.25680828,0.13905773,-0.44403183,0.6352964,0.041427713,-0.74620897,0.26871586,-0.12900102,-0.16851118,0.7089127,-0.077469364,-0.08597147,-0.20299429,-0.2183668,-0.34643358,-0.32164946,-0.2788192,0.3065161,-0.12939398,0.15015447,-0.16150258,0.06461612,0.30099618,0.44332,0.15178981,0.5935427,0.49353826,-0.034483247,-0.50168717,0.33750105,0.21829194,0.3585426,0.18189138,-0.03033834,-0.3840697,-0.1628852,-0.41117728,0.1349039,-0.3440147,0.22494173,-0.021835646,-0.31372285,0.65974176,0.110642955,1.387058,0.10119779,-0.54695296,0.21097569,0.5105079,-0.20101754,-0.21237022,-0.37024292,0.90464795,0.63964707,-0.27825594,0.011390518,-0.42745027,-0.31715208,0.2759613,-0.34833238,-0.04197167,0.05816465,-0.5253992,-0.2448118,0.07623288,0.20076562,0.09286331,-0.39624307,-0.11445403,0.27157634,0.080268554,0.47463274,-0.86364245,-0.25620347,0.0054273605,0.21701902,0.055830583,0.104366034,-0.31198496,0.27293763,-1.0918461,0.5059732,-0.589069,0.20325972,-0.32877016,-0.3733064,0.09027785,-0.019710727,0.4534006,-0.1357413,-0.3744572,0.02080504,0.51303184,0.09789922,0.13802081,0.7795579,-0.37134683,0.19555208,0.27142447,0.5478593,1.2062266,-0.50622946,-0.13874143,0.19952464,-0.47126898,-0.7193421,0.29642093,-0.41067755,0.088654846,-0.22140378,-0.49121127,-0.6870896,0.021749517,0.15274458,0.103465796,0.14983176,-0.8243919,-0.028805401,0.34603155,-0.302361,-0.21759492,-0.4096074,0.108948685,0.75601065,-0.2950126,-0.5754988,0.018987026,0.14699513,-0.1613608,-0.5036206,0.07438876,-0.14726196,0.31403124,0.08122393,-0.48348093,-0.062919304,0.18395393,-0.54951596,-0.13322133,0.037754018,-0.2624005,0.04461945,-0.39902905,-0.09585078,1.2388066,-0.348869,-0.06875959,-0.3851873,-0.61610514,-0.7292254,-0.3081531,0.363084,0.05657421,-0.04715954,-0.41460487,0.37070835,-0.17096798,-0.24039772,0.049520094,-0.40220833,0.47529972,0.17428194,0.4709779,-0.1742348,-0.9786937,0.3950163,0.3596219,0.1803988,-0.53077084,0.6001863,-0.1332471,0.8384085,0.113591194,-0.13664688,-0.42859694,-0.8607597,0.2708394,-0.13092227,0.30322492,-0.6575873,0.19006926 +84,0.2153948,-0.25636408,-0.4805203,-0.04483781,-0.1464658,0.059216198,-0.18783051,0.57444835,0.12424902,-0.43512183,-0.14229994,-0.2062712,-0.095330715,0.12164479,-0.119626984,-0.5531224,-0.04639034,0.24516584,-0.51137865,0.43522966,-0.46017578,0.17614578,-0.008214877,0.45867068,0.18382868,0.15982905,-0.025959061,-0.07840102,-0.22923191,-0.25978792,-0.09144088,0.17396882,-0.5484666,0.1287671,-0.14161253,-0.26156548,-0.052936748,-0.47461465,-0.348619,-0.7713802,0.3877568,-0.7006506,0.4298599,0.12539949,-0.2847004,0.12891254,0.12435324,0.40998855,-0.05672515,-0.03737443,0.33854055,-0.15434936,0.005779225,-0.21978667,-0.1418787,-0.19424838,-0.5083846,-0.028384496,-0.35692772,-0.2687906,0.01709618,0.28126886,-0.28859165,-0.088739835,-0.21964043,0.642419,-0.3437648,0.09305036,0.374606,-0.15795936,0.2543842,-0.5773827,-0.1387822,-0.1350259,0.074725375,-0.21520017,-0.2680493,0.12625827,0.19617778,0.40122125,-0.17111763,-0.14426008,-0.07320301,-0.121294335,0.082461886,0.5294951,-0.2845393,-0.32991144,-0.096748896,-0.05872974,0.0508341,0.1746681,0.071502775,-0.3446954,-0.108518615,-0.12888326,-0.25197232,0.26832324,0.46896178,-0.19336444,-0.19221336,0.29458734,0.5262047,0.24531339,-0.11832683,-0.038594343,0.121521,-0.55595815,-0.1866619,0.17484388,-0.10892332,0.49566144,-0.14484902,0.18219839,0.6810465,-0.14889155,-0.055983223,0.091478534,0.24402541,0.22760606,-0.452822,-0.4482053,0.24092744,-0.40430802,0.116227746,-0.17606279,0.7826567,0.120865345,-0.60800004,0.42529994,-0.5389467,0.079795875,-0.02776422,0.54703546,0.6899932,0.39581734,0.28522146,0.56077546,-0.29484418,0.08674626,-0.12362143,-0.03195801,0.10161838,-0.043288883,0.16633591,-0.4216335,-0.013556015,-0.06733653,-0.10376795,0.013944538,0.19216268,-0.6656564,-0.03349457,0.08239097,0.8329413,-0.20991427,-0.09760356,0.6919042,0.8787196,0.90998036,0.17394914,1.0703206,0.2832761,-0.21441555,0.07669193,-0.10954924,-0.7939502,0.18250939,0.21966217,0.2083548,0.0666018,0.18354654,-0.075361,0.49218437,-0.37387925,0.06471259,-0.24328774,0.3911942,0.035928912,0.011977177,-0.20999947,-0.34705245,0.02592841,-0.066367745,0.05062174,0.22152755,-0.20439376,0.33192238,0.012209792,1.6418018,-0.046748757,0.24041143,0.13018139,0.36434263,0.13406417,-0.2470865,-0.0876832,0.40551817,0.3960379,-0.007896364,-0.52945435,0.13093969,-0.1091914,-0.31471136,-0.05219118,-0.11674551,-0.075976886,-0.24190523,-0.45847115,-0.2273639,-0.17514668,-0.15396258,0.36414814,-2.9059598,-0.043441013,0.016724208,0.32465,-0.2841187,-0.44612217,-0.107507996,-0.46835408,0.44188148,0.24122916,0.3794517,-0.6497793,0.3766952,0.21606578,-0.33551443,-0.15983413,-0.7043759,-0.115119055,0.017973743,0.18591891,-0.09387462,0.19275576,-0.1727117,-0.01343044,0.35433975,-0.13974439,0.16837876,0.33049628,0.3095695,0.25660813,0.2565498,0.062352125,0.37371656,-0.2979223,-0.21426636,0.28208813,-0.6472347,0.24653329,0.04162288,-0.026531257,0.4766788,-0.38614437,-0.62682474,-0.6643859,-0.3789372,1.0136628,-0.28576586,-0.29776648,0.17027268,-0.57273155,-0.37445098,-0.083800405,0.582455,-0.038072746,-0.11482918,-0.8073083,-0.14711833,-0.14690131,0.52065986,-0.051095046,-0.019969344,-0.3122914,0.44807544,-0.19692181,0.36446026,0.441548,0.027687011,-0.47123104,-0.41649416,-0.018076448,0.8928395,0.3402678,0.18594623,-0.03648724,-0.17719483,-0.3104943,0.04969573,-0.013270686,0.6676623,0.7558062,-0.056268886,0.1821588,0.35684505,-0.11727798,0.029319461,-0.1310992,-0.39084065,-0.111545324,0.14709562,0.5507899,0.49622986,-0.044155225,0.49086004,-0.032061115,0.29512686,-0.33213264,-0.36954543,0.29835203,0.6078635,-0.052202545,-0.13164441,0.51623523,0.3675215,-0.26764548,0.435253,-0.49873748,-0.26371294,0.47673252,-0.17214158,-0.46777338,0.26622227,-0.24633919,0.083355024,-0.6407104,0.40423635,-0.38308346,-0.77376187,-0.64662224,-0.16864172,-2.601939,0.14204799,-0.26818198,-0.27131942,-0.11206326,-0.11359416,0.21397935,-0.35807002,-0.52246416,0.21148871,0.092671305,0.62174827,-0.01110726,0.029306797,-0.23430842,-0.17424735,-0.30431703,0.13497272,0.24502502,0.17558596,-0.1447553,-0.3568433,-0.12604839,-0.16550805,-0.3266052,0.09365276,-0.6964617,-0.49255818,-0.11426242,-0.66373265,-0.3197737,0.7303781,-0.41664404,0.022770252,-0.24917728,-0.08323793,-0.11143171,0.4381733,0.2968729,0.2986228,-0.085142925,-0.032506056,-0.1526868,-0.23547204,0.011223545,0.099991456,0.1423822,0.34579527,-3.4845792e-07,0.21395046,0.2391116,0.6319618,0.057271555,0.7588388,0.44650683,-0.16756731,0.3444638,-0.25407544,-0.19218427,-0.26331836,-0.09747021,-0.013008322,-0.31384578,-0.4621348,-0.14613596,-0.30834386,-0.7197332,0.419202,0.049411662,-0.17073902,0.0508194,0.34208664,0.33665502,-0.15700197,-0.016583603,-0.123824015,0.004060824,-0.3966827,-0.30722088,-0.48586208,-0.30911893,0.28467208,1.0996615,-0.21213685,0.14426509,0.043908916,-0.27180642,-0.16884874,0.35221192,-0.19478992,0.22050872,0.534045,-0.11564761,-0.5827784,0.26624948,-0.138912,-0.35116354,-0.5665114,0.17744063,0.74986523,-0.77779514,0.7309293,0.2520506,0.036819313,-0.39446926,-0.45096046,-0.27073348,0.03200949,-0.35324982,0.29814702,0.22746979,-0.52477175,0.32693973,0.376128,-0.21261446,-0.7460503,0.32266456,-0.051856473,-0.42499363,-0.12515086,0.38182032,-0.19509356,0.17227069,-0.11381427,0.17885216,-0.39874655,0.07412478,0.18233332,-0.17775342,0.17619395,-0.2804783,-0.08891775,-0.61056596,0.20533241,-0.5009851,-0.40219545,0.23512457,0.02187236,0.141245,0.33561108,0.09642862,0.37988964,-0.21677193,0.16014344,-0.15324908,-0.17130886,0.18131587,0.488633,0.35295904,-0.36633107,0.5992359,0.10545352,-0.026841726,-0.29912883,0.15811095,0.4720201,0.020326775,0.37507203,-0.14823389,-0.18875091,0.28165448,0.94955456,0.08773644,0.56671107,-0.100957885,0.16509101,0.14224344,0.007848561,0.15298216,0.17342503,-0.42338112,-0.088401586,-0.12279863,0.11960955,0.39189038,0.14203247,0.40578854,0.00962459,-0.2850437,0.0029492723,0.22427866,-0.046337843,-1.0401129,0.44252226,0.22956806,0.85320824,0.5904534,0.16779351,0.06935426,0.5663538,-0.1280489,0.15431036,0.16597413,-0.10727843,-0.40826428,0.5837937,-0.7330993,0.41741624,-0.08237307,-0.04928744,-0.07908019,-0.16020386,0.6040182,0.72522634,-0.17284347,-0.025096783,0.036599614,-0.2017029,0.11613666,-0.3172848,0.0790584,-0.6960316,-0.45380723,0.5381951,0.45697168,0.38494554,-0.23313716,0.008852789,0.25399774,-0.053802073,0.06890312,0.00832819,0.06794576,0.1469462,-0.5586358,-0.31989238,0.60063446,-0.32073462,0.097939655,0.075259,-0.12665083,0.30190113,-0.17446372,-0.029478274,-0.1536054,-0.74530834,0.13121966,-0.39228678,-0.35030854,0.4765243,-0.26166427,0.12475732,0.086953245,0.18587941,-0.31017208,0.60445625,0.21133192,0.75029343,-0.03511968,-0.13051698,-0.21714643,0.35196787,0.06185865,-0.07476587,-0.17077404,-0.1882604,0.04159925,-0.67366874,0.42470858,-0.039981227,-0.093182735,0.07993957,-0.10284294,-0.028941823,0.5045202,-0.031643752,-0.06216062,0.015445865,-0.4854411,-0.24475397,-0.05550224,-0.081497364,0.30934876,0.1954508,0.041826215,-0.06929112,-0.03863891,-0.25569308,0.4468826,0.08230631,0.29465315,0.37303466,0.17932269,-0.36281306,-0.11504478,-0.043851502,0.4557801,0.119746275,-0.03974219,-0.1300132,-0.28716856,-0.3242134,0.5120483,-0.11228587,0.48210204,0.023499044,-0.24604797,1.0116091,0.06509396,0.9670851,-0.09068028,-0.29268268,-0.05528208,0.37923387,-0.10960657,0.018965181,-0.4966749,0.8351227,0.2911406,-0.06402323,0.03831121,-0.20281121,-0.09030465,0.3577704,-0.1067617,-0.12065755,-0.11510234,-0.552673,-0.2326822,0.18949355,0.2497059,0.03148464,-0.05648084,0.035153504,0.33279407,-0.08393494,0.112344615,-0.4147094,0.2397566,0.3082482,0.25691974,0.097931735,0.16753814,-0.37325656,0.40724277,-0.5135752,0.23235358,-0.1167991,0.09894722,-0.17087232,-0.39151856,0.13633583,0.12175377,0.26233995,-0.50043446,-0.13583368,-0.24438047,0.47446358,0.23735546,0.20441619,0.573898,-0.28241333,0.081591375,-0.089780286,0.51681054,0.77478886,-0.24974085,-0.17649522,0.4268091,-0.26949093,-0.69748867,0.37059137,-0.25193486,-0.030195732,0.018282373,-0.20301352,-0.39436147,0.23534451,0.3321132,0.11929737,0.031765778,-0.5608991,-0.026391152,0.38855156,-0.08411288,-0.29614323,-0.36058316,0.2627098,0.7768866,-0.16838352,-0.2932613,-0.016223338,0.21751414,-0.35784644,-0.2993483,0.00057833124,-0.44268715,0.28828144,0.008355205,-0.2119763,-0.12291687,0.11213439,-0.4533704,-0.021331837,0.095011435,-0.2738834,0.013789723,-0.09360159,-0.060075678,0.78160137,-0.18080051,0.028931411,-0.50765,-0.468019,-0.58991265,-0.23768264,0.40165088,0.12249672,-0.039400797,-0.62168527,-0.082522355,-0.11824683,-0.1046516,0.011723716,-0.3159947,0.5246649,0.18589629,0.18182606,-0.08502852,-0.77508664,0.073512636,0.072688766,-0.28492534,-0.4872104,0.3908337,-0.08926438,0.7732681,0.04342634,0.0095587885,0.28399447,-0.35964042,0.1920133,-0.2050326,-0.20463273,-0.72504586,0.050332896 +85,0.4130866,-0.2624192,-0.48464507,-0.09813253,-0.40776646,0.11735763,-0.24190466,0.49725062,0.19447261,-0.5344108,-0.2042878,0.014509341,-0.10793717,0.14666454,-0.13705468,-0.39456394,-0.10400428,0.23379925,-0.6019489,0.7496604,-0.3097391,0.124771066,-0.043867204,0.3676359,0.27243966,0.20282835,-0.056099225,-0.14043036,-0.32994366,-0.14815974,0.020663794,0.3454835,-0.53210706,0.31707364,-0.41536918,-0.37498617,-0.12620555,-0.46415395,-0.42891794,-0.69133234,0.17692383,-0.89805335,0.57267064,-0.11821355,-0.25122967,0.24340527,0.14428475,0.3355907,-0.04221765,0.100188345,0.15520388,-0.21946913,-0.14450513,-0.35394406,-0.09506008,-0.4621015,-0.53496945,-0.059881438,-0.30971578,0.08389821,-0.16785465,0.24765041,-0.12875181,0.020203803,-0.24552208,0.3676287,-0.49097908,0.33950713,0.10328995,0.023444675,0.11621243,-0.7384878,-0.26603878,-0.10603706,0.13885133,-0.05714745,-0.26648527,0.31524143,0.17472777,0.54596186,-0.03179741,-0.09395815,-0.2955026,0.10754262,0.16124962,0.44286835,-0.2681005,-0.23018792,-0.11326347,0.034063067,0.48920524,0.06675178,0.06477373,-0.24779941,-0.043525346,-0.16576181,-0.18153141,0.2875057,0.39657673,-0.21190602,-0.15805365,0.43613857,0.41310757,0.32760006,-0.17713946,-0.13587332,-0.18247724,-0.45526856,-0.11068119,0.13235797,-0.28345236,0.56971145,-0.13707635,0.11334567,0.29768282,-0.055280186,-0.0704123,0.2226739,0.15738332,0.14887388,-0.12292098,-0.35328254,0.29855525,-0.4523376,0.04744834,-0.33851627,0.4804865,-0.051889874,-0.572309,0.27460298,-0.5157976,0.09538515,-0.024477828,0.3848626,0.6965779,0.57340246,0.06506142,0.6532289,-0.14467846,0.07562267,-0.09140788,-0.1851885,0.10870065,-0.26334682,-0.06185843,-0.5505536,0.14733249,-0.22232343,-0.1038222,0.04900805,0.48806152,-0.51017344,-0.23627296,0.04567256,0.76479924,-0.28058833,-0.1457271,0.8352735,1.0056126,1.0006666,0.045723163,1.0875397,0.2897617,-0.20408262,-0.11288282,-0.27539098,-0.5774413,0.31115338,0.27372628,-0.4027664,0.31689674,0.12802677,0.04576608,0.45179832,-0.35637525,-0.12506066,-0.289664,0.3192173,0.075358704,0.002337262,-0.403408,-0.38837194,-0.07881921,0.13904047,0.17286141,0.21303324,-0.25794464,0.39377716,0.057609603,1.397052,-0.13371615,0.0070327334,0.13963881,0.29768258,0.1381855,-0.119491085,0.11259472,0.14459385,0.25796726,-0.008729152,-0.5063058,0.16948706,-0.2461492,-0.56261146,-0.17824483,-0.19312263,-0.29146385,0.083960116,-0.50524145,-0.30131346,-0.046077948,-0.21917814,0.36963734,-2.4384782,-0.1511973,-0.19113412,0.50728476,-0.31128997,-0.3216181,-0.16255523,-0.42815095,0.2730943,0.2886164,0.4690119,-0.6043685,0.4450188,0.29767781,-0.59577227,-0.058300838,-0.6149477,-0.14750296,0.072994694,0.33278555,0.021654954,0.0033911373,0.30404446,0.030529138,0.4830262,-0.2353631,0.24686812,0.4038149,0.34826994,-0.05508136,0.29542878,-0.03840368,0.579473,-0.3918059,-0.27626693,0.45704308,-0.32046497,0.24660772,-0.07035797,0.08441035,0.4794244,-0.5032315,-0.8211533,-0.67589164,0.06459129,1.3492278,-0.11201671,-0.5253695,-0.026682978,-0.38224924,-0.2966771,-0.04769482,0.33131087,-0.16591647,-0.08285295,-0.91668177,-0.082423806,-0.14440249,0.25494888,-0.04614718,0.0037735403,-0.49391887,0.68712187,0.008034296,0.58146477,0.37167728,0.3531177,-0.18585712,-0.3830469,0.046320405,0.75879186,0.51748025,0.09596348,-0.24754965,-0.23934743,-0.35558024,0.13849989,0.27332276,0.52874005,0.37319294,-0.09910616,0.094036326,0.2585044,-0.029667787,0.026047222,-0.21141018,-0.31854513,-0.28491503,0.22453642,0.6932131,0.74409497,-0.09779504,0.35220167,-0.11553517,0.39814365,-0.10711174,-0.6113085,0.44935083,1.1959993,-0.28111055,-0.3530302,0.6427618,0.5993135,-0.22007619,0.452963,-0.6560395,-0.49925193,0.18913046,-0.10535832,-0.37558103,0.028115738,-0.379932,0.3311419,-0.8426491,0.5146599,-0.42581356,-0.3491907,-0.74207425,-0.05659288,-1.5795683,0.22088294,-0.14348523,-0.21661955,-0.17476998,-0.23703754,0.14062813,-0.6068489,-0.6167484,0.15977816,0.17768455,0.5258938,-0.051683847,0.023629121,-0.18565038,-0.4497945,-0.039859742,0.1548926,0.23993507,0.39926267,-0.111714445,-0.5063264,0.059552357,-0.08299548,-0.20123568,0.039308317,-0.6116624,-0.6166029,-0.033646755,-0.47104117,-0.17130661,0.33977175,-0.3733717,0.0056036413,-0.23886508,0.095633015,0.061199214,0.16251521,-0.085979566,0.26641095,0.21394326,-0.09193499,0.08348561,-0.15458922,0.35580117,0.1722337,0.1048989,0.47343758,-0.2145076,0.18245915,0.52343416,0.6095074,-0.30001324,0.8005227,0.5964496,-0.19864357,0.2673988,-0.18085,-0.3309925,-0.5520494,-0.2621578,0.107082665,-0.40095025,-0.32448363,0.12521918,-0.34979087,-0.95765805,0.57858974,-0.09661803,0.14899367,0.06999371,0.14300463,0.55537486,-0.13578954,-0.055575714,-0.050885048,-0.1399827,-0.46360213,-0.53547454,-0.6298147,-0.39451474,-0.094757825,1.1968923,-0.15222089,0.17269966,0.26325783,-0.27774617,0.04990397,0.23622659,-0.11340313,0.021606077,0.5424112,-0.17146546,-0.65417117,0.2595899,0.05953533,-0.03291769,-0.45234275,0.42944553,0.62567353,-0.5166949,0.5456336,0.46127766,0.019786896,-0.10418022,-0.60367244,-0.16610214,0.049368903,-0.29046094,0.4066282,0.25325575,-0.6614479,0.41358107,0.20012392,-0.35553554,-0.6853821,0.5928066,-0.07812394,-0.24313152,-0.16654544,0.33610508,0.08133814,0.09128932,-0.16002904,0.25054318,-0.3471019,0.441399,0.12366043,-0.03399368,-0.13717702,-0.29738665,-0.075021125,-0.93139434,0.09291418,-0.42992932,-0.39597222,0.25767013,0.031840287,0.1429339,0.07301128,0.23812762,0.34453562,-0.33267248,0.08664774,-0.18972617,-0.30003735,0.42552358,0.4048798,0.59587157,-0.4451115,0.514209,0.07796957,-0.2428211,-0.019055234,-0.0011848956,0.45342147,0.12021364,0.2845897,0.0905049,-0.042400688,0.18935302,0.7548617,0.24661668,0.35365862,-0.08164437,-0.24375711,0.12399435,-0.025200963,0.24175225,-0.22927201,-0.42872894,-0.10784401,-0.078276284,0.12310438,0.39929944,0.08730088,0.2963125,-0.15799195,-0.27149615,-0.020589726,0.12795146,0.18102665,-1.3114604,0.21043625,0.2297549,0.8988018,0.49773204,0.012113496,0.04042194,0.636753,-0.31612554,0.01256505,0.46779624,-0.06529912,-0.4483209,0.43093818,-0.72201514,0.3308075,-0.032538317,0.072522976,0.037773106,0.0667314,0.4102679,0.76525545,-0.17850485,0.18492809,-0.026914645,-0.3774876,-0.05521522,-0.16866858,0.19127339,-0.5336114,-0.3820855,0.7239151,0.5508018,0.50850976,-0.28772467,0.012994905,0.13293739,-0.12988582,0.27302313,0.103903264,0.12438156,0.036104854,-0.6119845,0.07417473,0.45285404,-0.13531087,-0.016602032,0.0897078,-0.23818961,0.27521002,-0.0550574,-0.031981107,-0.0044759456,-0.5840924,-0.13955876,-0.39527008,-0.18296644,0.26195478,-0.099050894,9.880867e-05,0.09717405,0.09415117,-0.22261569,0.13371886,-0.04896494,0.8238809,0.08279079,-0.19688725,-0.3623116,0.25799397,0.19022228,-0.11006665,0.0815047,-0.24836041,0.11329652,-0.5945345,0.4148292,0.05995092,-0.18309581,0.07252453,-0.088875696,0.06985544,0.38983315,-0.055013314,-0.24836959,0.106108725,0.055692326,-0.41285276,-0.14809567,-0.15565684,0.25171748,0.3743215,-0.020005211,-0.24430615,-0.08796014,-0.091919586,0.5419651,0.105630554,0.44806153,0.47092676,0.021780593,-0.48326063,0.027722334,0.1969339,0.5212637,-0.05960764,-0.15027691,-0.36293888,-0.36772135,-0.37603748,0.4097911,-0.16971782,0.24318172,0.10982333,-0.13979214,0.7135991,-0.01588607,1.2023253,-0.0900987,-0.34006813,0.050608505,0.41685215,-0.14201644,-0.12643258,-0.47708946,0.7920028,0.51461256,0.099206455,-0.041177202,-0.47050345,-0.07021649,0.017178014,-0.1677994,-0.13418347,-0.15295674,-0.71016216,-0.3032821,0.19968772,0.2576397,0.02119995,-0.09250912,0.14234719,0.3155439,0.12503006,0.19470158,-0.4184608,-0.34863022,0.3029941,0.29487872,-0.06392901,0.1530159,-0.5074428,0.24061498,-0.5261814,-0.06496943,-0.11105405,0.07682745,-0.20229712,-0.25201604,0.20487681,-0.010742199,0.30400115,-0.47529754,-0.37746632,-0.22117317,0.45319164,-0.07839978,0.073240265,0.4734382,-0.18937066,0.083309814,0.12122731,0.40824276,0.9472949,-0.45260882,0.17495655,0.346485,-0.3886662,-0.59214246,0.20012811,-0.3085007,0.15977904,0.058291323,-0.22235633,-0.619797,0.3116194,0.10944076,0.105075404,-0.1333864,-0.64021707,0.10336629,0.37524506,-0.27249962,-0.1341774,-0.16142182,0.047058694,0.413807,-0.16550142,-0.38491493,0.068440706,0.30572766,-0.18622038,-0.3431316,0.011354972,-0.4314769,0.28605473,0.12001549,-0.35628182,-0.25649017,-0.050162084,-0.45670182,0.16595824,0.3476014,-0.28572685,0.061209284,-0.31116557,0.11120304,0.7952568,-0.16991572,0.23591049,-0.44723687,-0.42992747,-0.7983623,-0.33588877,0.09307186,0.3478317,-0.12674367,-0.69424725,0.03932268,-0.16578177,-0.37612927,-0.109295085,-0.30219638,0.5592111,0.1868155,0.27674627,-0.20542657,-0.7320837,0.27027252,0.18579713,-0.15246055,-0.35853276,0.44065383,-0.041574836,0.9730109,0.09233238,0.11529893,0.10344262,-0.501805,-0.1340878,-0.13511986,-0.04562427,-0.6363111,-0.07240813 +86,0.5443111,-0.083397426,-0.5493235,-0.17897575,-0.16925001,0.03799951,-0.23751964,0.48944652,0.12360627,-0.5703885,-0.21895324,-0.16225663,0.1859559,0.21203023,-0.15063979,-0.68642044,0.12340418,0.27663213,-0.29459608,0.47439593,-0.5058103,0.41466767,0.023415145,0.35013792,-0.0041386713,0.26104987,0.1667164,-0.17433771,-0.02417346,-0.3381887,-0.07346819,0.31401289,-0.8247848,0.14969751,-0.13644019,-0.54567873,0.21309607,-0.32117873,-0.28697836,-0.6573919,0.11827651,-0.76431286,0.5137234,0.29127827,-0.32102233,0.06772949,0.117380984,0.35117736,-0.23128048,0.19514424,0.19284448,-0.15191562,0.00887206,-0.2500171,-0.10744857,-0.51510805,-0.6223496,-0.14411211,-0.3747166,-0.16617133,-0.37605283,0.20846708,-0.27949652,0.018376043,-0.04049944,0.22057962,-0.5127374,-0.11919591,0.24584284,-0.18192922,0.42743254,-0.44619352,-0.22450124,-0.13962658,0.33599842,-0.41768405,-0.20594798,0.2243219,0.23246437,0.45983252,-0.03848175,-0.22060816,-0.37057745,-0.12869094,-0.026588788,0.6379453,-0.23303853,-0.40077612,-0.09799806,-0.12237407,0.009746224,0.44146603,0.093563825,-0.033829156,-0.19279186,-0.10384731,-0.2501332,0.18064615,0.48500136,-0.461739,-0.24044701,0.17271343,0.37119308,-0.029344486,-0.056852855,0.06887356,0.007845996,-0.5809034,-0.27719158,-0.0034488714,-0.2337211,0.60606265,-0.042070583,0.19713844,0.75102705,-0.02682619,0.11601463,0.013399069,-0.038819477,0.10027286,-0.20160106,-0.31133702,0.4776162,-0.4455055,0.21623649,-0.2833091,0.777888,0.22835407,-0.6925862,0.26554042,-0.6636342,-0.018663295,-0.123753004,0.4783126,0.31974322,0.41423872,0.35341388,0.6792494,-0.58659923,0.09544743,-0.048130926,-0.19041666,0.058469217,-0.107772864,0.021001317,-0.2866461,0.063657515,0.13725387,-0.030298023,0.14876422,0.49009416,-0.5609249,0.030623479,0.35514766,0.839922,-0.36530483,0.040929463,0.5997209,1.0037555,0.90120053,-0.00029240205,1.2322837,0.22445172,-0.37758416,0.008664755,-0.10540748,-0.7307311,0.1850219,0.42601797,0.16935904,0.25444072,0.32859594,0.00998353,0.31798744,-0.2768211,-0.053632285,-0.1304395,0.043882873,0.0357397,-0.1546874,-0.4455937,-0.32844993,-0.19970693,-0.025126027,-0.17030877,0.28406432,-0.17646216,0.21129104,0.051821813,1.7901319,-0.0018851482,0.17660843,0.15299071,0.4558064,0.272889,0.005016453,-0.049826257,0.2960469,0.22612868,0.21944435,-0.41121724,-0.013912857,-0.21850553,-0.434148,-0.12246021,-0.23085967,-0.11388026,0.0022274645,-0.5189056,-0.10507311,-0.041945733,-0.1340964,0.455763,-2.482352,-0.06775026,-0.012895486,0.45389387,-0.3366857,-0.37816048,-0.17028962,-0.45894513,0.5190111,0.44712418,0.5597865,-0.618101,0.39861855,0.4729482,-0.44978043,-0.029216306,-0.6141329,-0.26382032,-0.10377664,0.13516298,0.021095883,-0.072226234,-0.20040263,0.13106783,0.43521336,0.030198606,0.05583233,0.17876276,0.28120798,0.01920441,0.59753186,0.07905614,0.4412875,-0.15955943,-0.14833072,0.32085148,-0.53283376,0.335878,-0.07167009,0.07070962,0.37210962,-0.5759768,-0.99956393,-0.7051881,-0.40379572,0.94123465,-0.17574795,-0.2864423,0.33927646,-0.23790066,-0.31140327,-0.055989463,0.40110397,-0.013320721,0.1782855,-0.7589355,-0.09802926,-0.19597515,0.27049717,0.14303638,0.01778346,-0.56723964,0.8212217,-0.1640425,0.45368722,0.41497913,0.23419636,-0.0027904143,-0.51416385,-0.09967287,1.0533705,0.2188217,0.22699095,-0.37781164,-0.2812211,-0.3767429,0.14480576,0.10845768,0.51062226,0.81376463,-0.17367426,0.12925589,0.19764392,0.08918199,-0.054258343,-0.19470742,-0.3510027,0.032513984,0.11195789,0.5526152,0.59572613,-0.030011225,0.2820986,-0.04312263,0.51112944,-0.2219611,-0.45486706,0.16070281,0.99605787,-0.0062745763,-0.19307882,0.7583333,0.6715481,-0.22625835,0.4995503,-0.8061495,-0.42742282,0.30123684,-0.16326247,-0.35491878,0.26751485,-0.44957024,0.04288291,-0.9202696,0.4376908,-0.36417294,-0.40126246,-0.53155303,-0.22107968,-3.844785,0.27771482,-0.1754683,-0.13931674,0.16779628,-0.089484945,0.29745856,-0.7102958,-0.5452214,0.21029605,0.028682746,0.6794334,-0.15008184,0.14423457,-0.2799898,-0.24069078,-0.22851108,0.315957,0.24096495,0.10938712,-0.082982905,-0.43580973,-0.07564795,-0.17647314,-0.26905584,0.11981893,-0.575417,-0.487827,-0.14149703,-0.5602983,-0.22801901,0.66750515,-0.40809822,0.046369214,-0.15178663,-0.061338764,-0.22793421,0.28325784,0.1802542,0.23428747,-0.06859146,-0.10983343,-0.1165631,-0.310719,0.337742,0.12860386,0.2552765,0.26208243,-0.21572106,-0.01612668,0.45594758,0.34466285,-0.21197289,0.91687703,0.39378908,-0.124913014,0.33323193,-0.2668222,-0.3682105,-0.6927706,-0.40088975,-0.094111316,-0.37908474,-0.41308057,-0.07140924,-0.41097376,-0.66755587,0.67407894,-0.1308317,-0.0322056,-0.006667731,0.29454625,0.33501455,-0.28682804,-0.23129486,0.011533595,-0.011088842,-0.5633639,-0.312441,-0.5296942,-0.48358065,0.0037987279,1.0894886,-0.303757,0.075781114,0.12770037,0.031124193,0.039206084,0.24957982,0.06318169,-0.039237317,0.56476843,0.09410035,-0.715736,0.62071323,-0.108824365,-0.2747334,-0.48447943,0.13383839,0.60131717,-0.8622926,0.5895843,0.49427244,0.27139553,0.12867634,-0.7050521,-0.45364317,-0.011958404,-0.29661322,0.36427644,0.21943782,-0.7489175,0.19858958,0.2764212,-0.4415873,-0.64948106,0.68305933,-0.11067736,-0.53970736,0.028668817,0.34239525,0.038584672,0.061604157,-0.079555914,0.28778556,-0.44443294,0.26589835,0.3631792,-0.023455627,0.13488269,-0.1822553,-0.0007064159,-0.81375927,0.11190288,-0.4226282,-0.370734,0.23401318,-0.071210116,-0.26367325,0.49872193,0.2732055,0.46066207,-0.4309615,0.18321282,-0.06534861,-0.34221455,0.56599915,0.3834324,0.52718925,-0.4227679,0.56143045,-0.10402731,-0.16849764,-0.17972943,0.08749354,0.5552938,-0.18350035,0.39109468,-0.09508606,-0.105278604,0.27554458,0.83060455,0.21552724,0.49695772,0.059921544,0.07612094,0.21578714,0.20729494,-0.029249169,0.21689019,-0.5082894,0.06460797,-0.2106567,0.12618546,0.52188605,0.10164742,0.2560886,-0.113620885,-0.23655325,0.059054367,0.24204962,0.07895262,-0.8524183,0.36862418,-0.0060477247,0.78194565,0.63032055,0.16354895,0.14870892,0.43010923,-0.26256278,0.062306542,0.22837344,-0.07024078,-0.4345177,0.56918365,-0.49434286,0.31280664,-0.04573149,0.02641143,-0.032375112,-0.26090434,0.5337184,0.9590734,-0.096884295,0.12421623,0.03840304,-0.16969354,0.078558,-0.41128415,-0.16245034,-0.6216079,-0.19283822,0.8186499,0.48655036,0.38603723,-0.158137,-0.04421713,0.066327795,-0.11177023,0.21559548,0.04956416,0.032541838,0.025564266,-0.45573884,-0.1981404,0.6141392,-0.17606218,0.08182276,-0.025954647,-0.09112415,0.39502952,-0.068926066,0.0904108,-0.05837051,-0.7283479,0.012872531,-0.6694197,-0.24988033,0.4445801,-0.09272074,0.29273468,0.25755662,0.09235501,-0.09943589,0.38824236,0.18286675,0.6889836,0.036622226,-0.14850031,-0.39594093,0.2118899,0.17877151,-0.22979616,0.050302424,-0.33568767,0.17809065,-0.77068275,0.40460572,-0.007516494,-0.21301533,0.09587528,-0.05123589,-0.089604184,0.44644004,-0.09027342,-0.23747066,0.19213359,-0.012668527,-0.18155766,-0.07188154,-0.26334718,0.14952916,0.03804669,-0.07588976,-0.03343072,-0.017791761,0.07489315,0.4753545,0.0032498264,0.43700224,0.25426152,0.06015087,-0.29248965,0.027276516,-0.016435247,0.5375386,-0.2739039,-0.135888,-0.28161663,-0.52060646,-0.3270408,0.22254014,-0.19953777,0.2643573,0.18548241,-0.19005172,0.924507,0.11585564,1.0754737,-0.02701229,-0.39147502,-0.027840398,0.62304205,-0.13858369,-0.09806486,-0.45623037,1.2459514,0.6046407,-0.19759195,-0.17897676,-0.107799694,-0.06338324,0.018174639,-0.19527023,-0.14503354,-0.061242554,-0.67207235,-0.19663347,0.21178637,0.42668027,0.14291048,-0.089971654,0.112942256,0.2941231,0.20056358,0.06988525,-0.5881652,-0.35193995,0.3006346,0.2607883,-0.04737935,0.11787013,-0.30713212,0.4415426,-0.44327876,-0.045340564,-0.44099534,0.012042289,-0.14231864,-0.44472048,0.18321015,-0.005098196,0.2848588,-0.33992884,-0.22245906,-0.09734027,0.3663264,0.19962817,0.27077788,0.45542178,-0.25099233,0.03715033,-0.07351717,0.4782055,1.08446,-0.32829124,-0.04260458,0.5435582,-0.4742123,-0.5091987,0.16162784,-0.43907467,0.06649489,-0.09352961,-0.3969444,-0.5279375,0.24132696,0.18312,-0.12631382,0.20237952,-0.53871244,-0.15017742,0.24380182,-0.4680169,-0.40665838,-0.28908905,0.40778872,0.7829599,-0.180713,-0.2297568,0.21836154,0.11421425,-0.32081026,-0.5891047,-0.04579362,-0.37355644,0.3647312,0.07726312,-0.27790144,-0.099734075,0.011102142,-0.40013173,0.1304153,0.40478295,-0.27945635,0.08665276,-0.5398356,0.060035285,1.0530361,-0.09660895,-0.15741253,-0.5012215,-0.42438653,-0.8998559,-0.42296174,0.7267209,0.27853444,0.09208545,-0.34789813,-0.01480119,-0.048835475,-0.10997259,-0.11855551,-0.17226052,0.41756922,0.10972692,0.4921432,-0.23144911,-0.88146794,0.06767514,0.1349432,-0.395242,-0.50421757,0.422277,-0.15783504,0.9366653,0.13957359,0.0126208365,0.4253945,-0.43652332,0.027071297,-0.2022011,-0.055967387,-0.77949274,-0.07411565 +87,0.4266479,-0.092675306,-0.73690957,0.17157833,-0.31836787,0.1267031,-0.44944534,0.25603953,0.542773,-0.17196488,0.0462686,-0.22660536,-0.10279038,0.044560418,-0.15826271,-0.44224384,-0.06925865,0.25161156,-0.49545622,0.6452313,-0.17737508,0.353516,0.14551537,0.35016885,0.24844857,0.2530385,0.045683365,-0.112219624,-0.17101735,-0.31848022,-0.04453737,-0.09328761,-0.6582667,0.29324043,-0.4964465,-0.23780537,0.07927232,-0.54409933,-0.5166865,-0.8426251,0.36770177,-0.83729315,0.6584058,-0.059289943,-0.19734214,0.07338729,0.19638969,0.26320824,-0.017033398,-0.109894775,0.24952023,-0.48899594,-0.31225765,-0.36825657,-0.43032017,-0.43194494,-0.47293344,-0.17252393,-0.34853712,0.1295968,-0.2858704,0.293061,-0.3483756,0.024900317,-0.13932627,0.12791367,-0.38893452,0.2980454,-0.019661367,-0.30365044,0.07944196,-0.74467033,-0.066497825,-0.09787468,0.105588794,0.26525623,-0.1714288,0.28734425,-0.07684357,0.3897768,0.06784837,-0.06920522,-0.37695444,-0.092520066,0.0729711,0.5873119,-0.17432685,-0.035407096,-0.12625788,-0.08247725,0.63776475,0.54257077,0.08203855,-0.19107099,0.12366294,-0.4467319,-0.30337262,0.48446402,0.71570545,-0.15397277,0.22905892,0.15756583,0.35126218,0.5784837,-0.20685546,0.070674025,-0.12953894,-0.27560613,-0.14516726,0.20236225,-0.16291389,0.4648377,-0.068108186,0.10809105,0.51662886,-0.189142,-0.019233892,0.21785204,0.24564616,0.13358438,-0.33277914,-0.33295628,0.46514687,-0.536316,0.08951189,-0.3958321,0.52176017,-0.056767613,-0.7062852,0.4134356,-0.5716073,0.1409191,0.14537132,0.6044306,0.62166077,0.72160023,0.20879386,0.99346095,-0.28776476,0.076061375,-0.11201308,-0.18448906,0.17200847,-0.07193107,0.36388135,-0.34295645,0.08741484,-0.040501725,-0.14815302,0.057597995,0.4996511,-0.25414205,-0.1487452,0.12995057,0.8870763,-0.26785988,0.264904,0.82285935,1.3418976,0.860461,-0.019874332,1.1415256,0.3025854,-0.2477346,-0.3512555,0.17982197,-0.9461463,0.111685045,0.25352287,-0.16896021,0.39853367,0.26779702,-0.29441556,0.19567424,-0.3950455,-0.18022837,0.05968659,0.16123804,0.019755268,0.06438718,-0.3532847,-0.33908656,0.081884906,0.039469242,0.21408723,0.25645864,-0.28672898,0.46716592,0.1560983,0.94150615,-0.18244879,0.00046558058,0.21822171,0.38671732,0.2684716,0.040190738,-0.027943397,0.3381509,0.25316456,0.009372051,-0.50860566,0.0005925248,-0.21560015,-0.22979249,-0.2119587,-0.23890603,-0.3141521,-0.06899425,-0.0231662,-0.4649581,-0.15381251,-0.35577974,0.4252384,-2.8667076,0.1203838,-0.08531237,0.34937572,-0.14046828,-0.117894255,0.04480429,-0.47999063,0.49638072,0.20111553,0.47930643,-0.48994443,0.21890336,0.7081364,-0.72249985,-0.10727176,-0.60624534,-0.16223769,0.023785284,0.34895253,-0.03590539,-0.15748756,-0.18278427,-0.104978435,0.37605274,0.15765311,0.16739981,0.4215691,0.6481996,-0.1641505,0.30583116,-0.18485819,0.59418774,-0.49251005,-0.14546277,0.4029689,-0.55601907,0.38039646,-0.4982051,0.11012892,0.62048453,-0.26757583,-0.5584026,-0.33739147,0.13966902,1.1920246,-0.43657675,-0.89931995,0.15560226,-0.28223062,-0.14025839,0.06548424,0.6429854,-0.15010941,-0.07141683,-0.5047992,-0.2751548,-0.1619596,0.31719133,0.037127297,0.14540453,-0.5064662,0.79940987,0.015145764,0.57796043,0.35667518,0.3121598,-0.24809958,-0.42456257,0.22547595,0.58044416,0.5188398,0.017064653,-0.22385621,0.03737545,-0.034462046,-0.45953533,0.04056188,0.83688134,0.5923249,-0.16530152,0.041219134,0.30496117,-0.23397838,0.19509304,-0.14667058,-0.48677397,-0.29614142,-0.11435791,0.52340126,0.7388441,0.13337,0.37082207,0.12523453,0.3440517,-0.13123982,-0.383943,0.4218364,0.5343024,-0.24330385,-0.14801736,0.59080833,0.5795626,-0.3002921,0.65735924,-0.7379342,-0.46594584,0.45000815,0.13327219,-0.65383166,0.42805278,-0.3607252,-0.09544731,-0.76574916,0.133879,-0.35924825,-0.52415174,-0.5663609,-0.23067534,-1.7843891,0.03683989,-0.29231796,-0.086554915,-0.4086968,-0.1223991,0.15297484,-0.23221321,-0.7058063,0.15065375,0.34279713,0.41012445,-0.20086443,0.16721694,-0.23498821,-0.25781655,-0.37057284,0.27356473,0.14442731,0.15499942,-0.21663891,-0.27799138,-0.13640763,-0.11875787,-0.07293062,-0.12600279,-0.59776324,-0.14208642,-0.06815204,-0.43106198,-0.23195118,0.6552086,-0.6035432,-0.11060747,-0.39868033,-0.021171361,0.081219964,-0.020953542,-0.15368252,0.14598106,-0.01238137,-0.109527506,0.025146151,-0.21550043,0.35400066,0.2211296,0.19160056,0.27288467,-0.06538392,-0.045030918,0.32371643,0.5223406,-0.18633883,1.1009384,0.21488011,-0.19641198,0.40551612,-0.23771356,-0.44440547,-0.5484584,0.01771685,0.15224443,-0.38694802,-0.4774231,-0.24444991,-0.31463197,-0.6999583,0.49384224,0.28116906,0.2780937,0.025653476,0.19698782,0.4378504,-0.023928842,-0.11122951,0.043967936,-0.15884055,-0.2979228,-0.1758772,-0.709646,-0.40214467,0.04215169,0.97805804,-0.22568022,-0.049719352,0.49420896,-0.42404175,0.0031920995,0.26435396,0.096607745,0.10351292,0.5671913,0.31798503,-0.49352324,0.46336234,-0.13098316,-0.060506046,-0.71975094,0.08884751,0.7412136,-0.8968074,0.27032375,0.5359177,0.005615654,-0.38478515,-0.633346,-0.10423506,0.1241199,-0.17938828,0.2689439,0.41395772,-0.615635,0.36182556,0.21635191,-0.19218105,-0.7944145,0.35076365,-0.08312494,-0.33755198,0.0003301526,0.49732006,0.022750458,0.04983646,-0.14928982,0.110815905,-0.3920786,0.4515196,-0.046118658,-0.16322514,0.17092669,-0.15150116,-0.20725118,-0.86300683,0.26249626,-0.3044297,-0.3037914,0.72789603,0.043075938,0.038376313,-0.00808239,0.38205504,0.34708616,-0.40724537,0.24029595,-0.46058783,-0.30087712,0.59369385,0.4997969,0.5583311,-0.5585765,0.61035365,0.03732482,-0.4615992,0.36136493,0.07361252,0.28873247,-0.061445806,0.42254066,0.11442856,-0.10679885,-0.03903268,0.723247,0.17757191,0.38268957,0.079432964,0.03655439,0.4350504,-0.061483145,0.08817253,-0.04188019,-0.7983965,-0.18470138,-0.31726155,0.24166064,0.41558087,0.2094953,0.60395825,-0.09089743,-0.15715623,0.013083135,0.12237602,-0.018426426,-0.9689026,0.2503626,0.096846856,0.7075481,0.60158545,0.04937459,0.044265073,0.73775417,-0.04036377,-0.07669207,0.3930767,0.1960032,-0.32825062,0.5650917,-0.6217422,0.46542716,-0.25212666,-0.005815834,0.36273274,0.20127307,0.69562,0.96037906,-0.31645334,0.0636001,-0.027390769,-0.20945121,-0.21864183,-0.18716611,0.093893856,-0.39770737,-0.4821109,0.7243243,0.22765326,0.45603344,-0.29170045,0.005550871,0.09978124,-0.016621208,0.43852344,0.19256121,-0.0912115,-0.16794765,-0.5018124,-0.1330331,0.6548467,-0.15306611,0.07298731,-0.008541564,0.028035417,0.38065276,-0.09891925,0.00902604,-0.001127561,-0.65797424,0.17317235,-0.3734639,-0.6085176,0.33422837,0.24715976,0.09186918,0.2024741,-0.0067152255,-0.026018212,0.23302813,0.2359825,0.8798869,-0.014601926,-0.29782602,-0.27105793,-0.022825705,0.16307448,-0.26974174,-0.17428195,-0.12452406,0.2694969,-0.4629899,0.41906187,-0.48354077,-0.34039494,0.15073727,-0.31420624,-0.17024384,0.57782644,-0.21349852,-0.10724968,0.21275496,-0.14485587,-0.3352692,-0.36050534,-0.5023307,0.0004164949,0.062968336,-0.090399124,-0.33678293,-0.20122619,-0.12323002,0.16621338,-0.058107983,0.33064517,0.3970501,0.27837667,-0.46694088,-0.03211536,0.16974945,0.60455585,-0.029622862,-0.09065799,-0.27317926,-0.45929375,-0.3551379,0.48881915,-0.008864873,0.23088706,0.0814927,-0.31405398,0.9644108,-0.054835096,0.8176498,-0.09520477,-0.25899243,0.22040707,0.641757,-0.17129505,-0.22209175,-0.5040905,1.025522,0.604894,-0.1019635,-0.03638734,-0.500355,0.014348696,0.18578677,-0.3306609,-0.14625193,-0.049374476,-0.56337243,-0.040926445,0.106215455,0.23360632,0.06466912,-0.12409202,0.1575786,0.32231915,0.24158277,0.124672435,-0.36369094,-0.2659696,0.5998581,0.14916457,-0.12965728,0.10309621,-0.27782208,0.2754856,-0.42923906,0.099101804,-0.79286367,-0.031001413,-0.06752051,-0.19516127,0.095870234,-0.27443537,0.30006793,-0.5372943,-0.30137956,0.041018203,0.2935389,0.35456228,0.34825692,0.44995868,-0.25182402,-0.06278605,-0.12540387,0.62151223,0.91079897,-0.36972797,0.05419308,0.12541471,-0.5733262,-0.51227456,0.26838106,-0.4406375,-0.09087157,0.061342407,-0.35783276,-0.41680622,0.25007072,0.030902142,-0.11347399,-0.29726413,-0.61801624,-0.22033815,0.026626846,-0.16276832,-0.237257,-0.33031195,0.03990679,0.8550733,-0.15464906,-0.40048885,-0.11355615,0.14301024,-0.29121166,-0.56254363,0.19139095,-0.3927642,0.27264038,0.007852777,-0.35656992,-0.10509622,0.2139417,-0.7340689,0.08109485,0.032805223,-0.3077936,0.08147266,-0.27986804,0.32313815,0.76883125,-0.1891228,-0.040842682,-0.33115235,-0.63399214,-0.8205569,-0.3173822,-0.1557599,0.32129017,0.09506989,-0.58362144,0.007581958,-0.42422342,-0.022701278,-0.041948408,-0.5210387,0.38894853,0.120586075,0.6319814,-0.4005085,-1.0654911,0.30974618,0.08545705,-0.45516142,-0.37391052,0.433609,-0.06442067,0.7849191,0.050442692,0.022825753,0.14699264,-0.5986742,0.26330718,-0.16868615,-0.2600018,-0.782306,0.22832082 +88,0.4844987,-0.2564008,-0.39991507,-0.34680143,-0.39469948,-0.15099339,-0.1814723,0.46810654,0.32807174,-0.35638538,-0.23139787,-0.032816943,0.104842216,0.42829552,-0.21665402,-0.5779124,0.06013508,0.23036069,-0.78116536,0.79556656,-0.29048857,0.21259741,-0.013525824,0.36220348,0.53173095,0.20194133,0.0069901845,0.18375337,-0.00049267214,-0.17448103,-0.1982622,0.4121503,-0.5512707,0.41370344,-0.07842258,-0.4257444,-0.1415002,-0.3429992,-0.3001399,-1.0296594,0.2516169,-0.9730423,0.36095405,-0.11024477,-0.45389223,-0.008128345,0.50023824,0.49979195,-0.23517506,-0.3582748,0.055906665,0.057054598,-0.1334101,-0.12794773,-0.057918966,-0.553163,-0.6132074,-0.16431227,-0.46618676,-0.2283756,-0.48922637,0.22279398,-0.47582927,-0.0051998645,-0.024555394,0.67087346,-0.49804354,0.2876153,0.22199653,-0.0006587903,0.35398006,-0.6397001,-0.27002728,-0.19404979,0.30315688,0.11443099,-0.54244524,0.5119215,0.5694613,0.17809726,0.039749295,-0.15996172,-0.31819457,-0.08734298,0.1912712,0.27258655,-0.09405405,-0.41729227,-0.16154924,-0.047036946,0.35322177,0.36118698,0.40023634,-0.3028796,-0.122716576,0.13668625,-0.2434702,0.40522507,0.34772587,-0.36963114,-0.22254205,0.40250716,0.623225,0.18618424,-0.3922646,0.08543087,0.046852652,-0.54387146,-0.1302662,0.06838856,-0.23933445,0.6575372,-0.32962698,0.17764439,0.707359,-0.08634445,-0.32554272,0.3041382,0.1859474,-0.37357894,-0.26414758,-0.33604786,0.24635948,-0.5071801,0.099393636,-0.20416404,0.7389469,0.17702289,-0.6586971,0.22355442,-0.6136301,0.29010394,-0.26787326,0.4699054,0.96906924,0.5986449,0.5714851,0.7396923,-0.3389825,-0.00076408684,-0.004952391,-0.4291195,0.2784458,-0.52723676,0.17683439,-0.54494417,0.12652157,-0.08205531,-0.19543643,0.13912626,0.5684181,-0.6027208,-0.24377717,0.16342048,0.72455055,-0.1839875,-0.22936964,0.8594453,0.8956211,1.1255397,0.24780309,0.93202525,0.15161215,-0.1697401,0.35811934,-0.0053649694,-0.6607062,0.39803573,0.39272866,-0.13711685,0.101940475,-0.025604999,0.0567608,0.59509957,-0.3475839,-0.022105359,-0.26903278,0.24172463,-0.013864939,-0.37897697,-0.38848543,-0.46444097,-0.16860558,0.08461022,-0.09099724,0.29725134,-0.014534722,0.656743,0.0060154,1.643772,0.19629247,-0.16935639,-0.0013240104,0.5156824,0.29204044,-0.35464886,-0.014933269,0.37609395,0.34434584,0.24355097,-0.61363703,0.26863566,-0.25430727,-0.38049862,-0.10346743,-0.58987707,-0.23327278,-0.011058249,-0.5554412,-0.4044247,-0.26739967,-0.20462199,0.5143414,-2.6742318,-0.27572566,-0.16703434,0.3903769,-0.10388139,-0.19295913,0.04914831,-0.57830596,0.4011066,0.36171642,0.59122163,-0.7350839,0.3450254,0.35312715,-0.8133332,-0.052548546,-0.65552163,-0.15708427,-0.011837379,0.43126222,0.08454791,-0.054418508,0.22364242,0.20122917,0.4703652,0.1424594,0.30315268,0.40705776,0.42453954,-0.31167087,0.6837001,0.0056617535,0.5965973,-0.118020214,-0.33497784,0.24368836,-0.38250223,0.22413771,-0.021920407,-0.039698023,0.8043199,-0.5465015,-1.1217097,-0.72682077,0.093310826,1.1428194,-0.36450514,-0.4819903,0.28890803,-0.5789478,-0.1542572,-0.044844594,0.5800559,0.017266467,0.008113402,-0.89837545,0.039514575,0.013768609,0.08006545,-0.08438748,-0.28997755,-0.34901676,0.8268418,-0.013073146,0.6370232,0.06162851,0.08339411,-0.6719599,-0.38813558,0.10908294,0.5560898,0.41828907,0.018136805,-0.3593488,-0.3159437,-0.60423416,-0.17345767,0.14624383,0.5957071,0.31195465,-0.28902134,0.29174516,0.4572929,-0.20621853,0.05023573,-0.19683981,-0.27870846,-0.1339273,0.041953724,0.45019725,0.9313677,-0.05032522,0.49810743,0.013760935,0.30726776,-0.066160664,-0.71309376,0.69042325,1.4107875,-0.29279685,-0.40048087,0.57731014,0.5583979,-0.1546409,0.50519675,-0.34880415,-0.1856523,0.506224,-0.019015083,-0.32367438,0.07238937,-0.39907274,0.1293252,-0.8694136,0.25749567,-0.5444489,-0.5461709,-0.5100879,0.094898105,-3.3237312,0.29053876,-0.19359004,-0.21252443,-0.25785676,-0.32052782,0.101128995,-0.91423887,-0.62931806,0.09581361,0.021257525,0.91526276,-0.22429018,-0.04827309,-0.16233568,-0.49520764,-0.16129921,-0.07428449,-0.11389962,0.57671523,-0.08791267,-0.46248326,0.009484655,-0.08885618,-0.5537407,-0.037702795,-0.60324234,-0.6384879,-0.15052576,-0.61486393,-0.43115243,0.7137998,-0.26948664,0.07746888,-0.2544351,-0.074854895,-0.012963976,0.19859828,0.18611626,0.11272079,0.149339,-0.08149679,0.01907902,-0.16637282,0.11387086,-0.19459645,0.3321711,0.2592054,-0.013063927,0.55853516,0.73958164,0.6208637,-0.12655896,1.0848153,0.5214739,-0.019106777,0.16292985,-0.19197476,-0.3490564,-0.53474534,-0.049944837,-0.1297948,-0.47118726,-0.21951713,0.060027923,-0.31265935,-0.809192,0.5933971,0.289148,0.3635418,-0.007915472,0.116359405,0.6333082,-0.05509934,-0.10079799,-0.11201301,-0.37903252,-0.76999503,-0.17079288,-0.7284465,-0.5601933,0.16433488,0.96965104,-0.37872216,0.0075834543,0.07842297,-0.20124388,0.111172676,0.36301008,-0.12527895,0.23257433,0.34774876,-0.21156089,-0.5432817,0.3343571,-0.12881167,0.046741497,-0.5961997,0.47628316,0.41049218,-0.40293363,0.5601626,0.34917498,0.041607324,-0.41476753,-0.5210698,-0.19040696,-0.1541613,-0.23648404,0.5679695,0.37156627,-0.80140257,0.34589937,0.45001444,-0.23657195,-0.71044064,0.74503374,-0.18602401,-0.20610158,-0.252483,0.30419537,0.34997296,0.15450478,-0.27050826,0.17706573,-0.42728814,0.13537346,0.24078386,-0.01208802,0.10708424,-0.060150307,0.041594703,-0.84865665,-0.0097645,-0.52635044,-0.2951324,0.16385995,0.08113659,0.049934596,0.14885752,0.17523463,0.22139275,-0.16390993,0.0007327969,-0.21951894,-0.2157699,0.35945725,0.521499,0.5631563,-0.48709008,0.54082733,0.23390496,-0.00797354,0.0713391,0.08645726,0.31272903,0.22654386,0.5972884,0.064558424,-0.2451545,0.12788819,0.7902592,0.09785042,0.53719527,0.027869517,-0.07513744,-0.011220962,0.10844773,0.5138729,-0.056558758,-0.58085227,0.12499236,-0.5545519,0.09775566,0.60795206,0.16799326,0.046136726,0.09197795,-0.5143066,-0.040685873,0.15648283,0.026979068,-1.8476347,0.49246982,0.44035563,0.88854164,0.6225241,-0.015145185,-0.22990231,0.9628132,-0.20954175,0.17042892,0.39710534,-0.012622379,-0.4127337,0.6761417,-1.2166907,0.39601883,0.0009227842,0.034635805,-0.01757425,0.21105726,0.35255966,0.713105,-0.24361289,0.09051835,0.11379609,-0.5048406,0.42056832,-0.49771354,-0.07890218,-0.57587886,-0.26818582,0.59609586,0.48960456,0.40297532,-0.31880853,0.12477436,-0.011986703,-0.2924988,0.18673551,0.05393992,0.10475993,-0.21259232,-0.6965545,-0.0924693,0.5047217,-0.29540107,0.47341838,0.020595536,-0.18719982,0.28481773,-0.17854227,0.017703384,-0.11241015,-0.7013548,-0.064018756,-0.24574023,-0.41407022,0.8615274,-0.05519511,0.25962862,0.3981677,0.004195268,-0.1537677,0.48345342,-0.18675368,0.70616883,-0.0794371,-0.13381153,-0.17801718,0.14259474,0.11817261,-0.14998674,0.15734817,-0.3173705,0.10293806,-0.4676837,0.510057,0.06879574,-0.4766235,-0.08990416,0.0037227508,0.097446956,0.48545876,-0.21469902,-0.20055096,-0.1864378,-0.09243549,-0.24519534,-0.41154602,0.013465573,0.46221137,0.12386078,0.18125378,-0.19478907,-0.199142,-0.076283224,0.29221827,-0.23435414,0.50397885,0.35799703,0.018928269,-0.31240383,-0.04949412,0.40530673,0.42570135,-0.016279751,-0.18076746,-0.31956136,-0.47101185,-0.62228596,0.16540337,0.0399762,0.5866573,0.15838028,-0.19333334,0.6945879,-0.2838579,1.3273519,-0.07872487,-0.59522665,0.20453353,0.5658768,0.0076792142,-0.17449264,0.05345251,0.6452231,0.53843755,-0.1642974,0.010112082,-0.6660947,-0.10298505,0.24372973,-0.18218048,-0.22329973,0.08684701,-0.60338044,-0.20887788,0.12535335,0.21483426,0.34993598,-0.12392923,0.065472834,0.4209646,-0.14151041,0.18783593,-0.31704167,-0.34759617,0.275622,0.35469034,0.030990401,-0.026267454,-0.48049614,0.4031889,-0.5572038,0.23015128,-0.31548086,0.42384422,-0.26787648,-0.38334116,0.13743955,-0.060355473,0.34091642,-0.1264103,-0.2719755,-0.19010043,0.77366614,0.2180623,0.09645081,0.70125866,-0.3309145,0.0744785,0.24886133,0.3623593,0.8627026,-0.36648488,-0.17159216,0.21953368,-0.52810276,-0.7276981,0.4550085,-0.4309082,0.35950884,0.21794331,-0.15280706,-0.7068987,0.1742603,0.37439904,0.21906404,0.015782038,-0.6650869,-0.18343277,0.21625789,-0.41129622,0.016705004,-0.42036653,0.093136035,0.27015686,-0.2426765,-0.34916767,-0.056762088,0.106828295,-0.06193229,-0.51450825,-0.014491983,-0.31318578,0.39969003,-0.13014933,-0.5145094,-0.14903872,0.056788485,-0.3772874,0.28242257,0.04209323,-0.22955586,0.3802943,-0.4561008,-0.04874141,1.0703284,-0.46224287,0.19177617,-0.43498266,-0.4948503,-0.55666053,-0.26722872,0.311904,0.041904863,-0.062473536,-0.70337933,-0.053358003,0.008145931,-0.19478673,-0.23974593,-0.47146237,0.589662,0.13918048,0.27459028,0.06137528,-0.80328006,0.274327,0.021466032,0.14441721,-0.726816,0.5107152,-0.29343894,0.7663949,0.1817884,0.24514522,0.10525151,-0.43914255,-0.021141589,-0.12851967,-0.36077568,-0.3250036,-0.15845378 +89,0.5800742,-0.35068226,-0.36859432,0.010900348,-0.33063084,0.17479974,-0.27079567,0.28402668,0.17053743,-0.6912506,-0.12842286,-0.080183886,-0.06850084,0.313151,-0.12834145,-0.6239112,0.05143529,0.1087724,-0.639868,0.76227397,-0.26358438,0.4330912,0.060309667,0.37087235,0.06410327,0.3841715,0.30853137,0.0053998553,-0.06340977,-0.17099245,-0.08053072,-0.04315563,-0.66061443,0.20879222,0.009070042,-0.39164272,-0.13022895,-0.33988583,-0.43691,-0.6535772,0.36300954,-1.1071411,0.33447337,0.12151777,-0.22925371,0.0055119894,0.030657133,0.07743655,-0.044597816,-0.058610234,0.026257524,-0.28819922,0.057206973,-0.5951855,-0.31496882,-0.6257827,-0.45160463,-0.06802409,-0.52936643,-0.36428428,-0.28633884,0.11523664,-0.37395346,-0.011323765,-0.14494988,0.097931705,-0.5380819,-0.067775674,0.29160815,-0.31554052,0.084118366,-0.62877965,-0.16468896,-0.23513128,0.054878037,-0.05203556,-0.1841582,0.29020068,0.15717968,0.6273374,0.056334216,-0.13192119,-0.20785487,-0.10241913,0.38463378,0.6534464,-0.16127963,-0.26253298,-0.40866825,-0.14857048,0.30303064,0.24631584,0.30640647,-0.5101424,0.052821737,-0.043667834,-0.20942952,0.28557816,0.59492856,-0.23206514,-0.10258871,0.276217,0.32808706,-0.023161525,-0.3152472,-0.08666053,0.005511731,-0.31435302,-0.10217223,0.17060657,-0.086941004,0.637012,-0.024552843,0.23866682,0.54599446,-0.17599094,0.21309036,0.01675796,0.043134544,-0.14644854,-0.28366318,-0.09952275,0.3648808,-0.37476102,0.11481032,-0.3717974,0.5883471,0.3050058,-0.6111629,0.48690006,-0.58510417,0.29591942,-0.06383353,0.5492929,0.57127005,0.4164504,0.035552192,0.90032846,-0.50811714,0.15534052,-0.027777592,-0.093883954,-0.056059584,-0.2795135,0.0976195,-0.3915803,0.16338255,0.15801488,-0.10357114,-0.04399899,0.5516512,-0.4274263,-0.2518824,0.045874994,0.75606894,-0.3461449,0.19004487,0.55168587,1.0257273,0.86595577,0.02412494,1.1660312,0.38142407,-0.28811708,-0.076034166,0.10064585,-0.8913219,0.09110492,0.4813726,0.32942775,0.48517874,0.15395878,-0.24909687,0.5133409,-0.37663293,0.011353602,-0.25621474,0.12939122,-0.054572493,0.024109378,-0.5325463,-0.06787587,-0.04391912,-0.07467029,-0.08737397,0.4128389,-0.32682893,0.41046786,-0.017423868,1.5486172,-0.27776954,0.12526019,0.14194764,0.5644451,0.2620822,-0.168243,0.21315609,0.4254581,0.27930358,0.03169767,-0.63554543,0.053107977,-0.2736379,-0.6154551,-0.18832922,-0.24949954,-0.25185832,0.12795384,-0.42762926,-0.23495753,-0.042152096,-0.19989522,0.1663106,-2.0696108,-0.1936909,-0.43296412,0.6020543,-0.5259415,-0.26987067,-0.08453856,-0.4227098,0.36504626,0.37608072,0.4577746,-0.6785988,0.22959268,0.5321458,-0.39990187,0.077083625,-0.59260917,0.094111055,-0.07774898,0.45711517,-0.13855085,-0.19320704,0.2680414,0.09239125,0.49470863,0.02396082,0.13014098,0.2651439,0.49592784,0.011643085,0.19770043,-0.10557475,0.58739144,-0.60606265,-0.14726968,0.5918036,-0.2951937,0.49314246,-0.1644058,0.07944434,0.46938646,-0.5905904,-0.5119767,-0.4897047,-0.23295273,1.0836339,-0.63024485,-0.7639273,0.08105316,-0.093110226,-0.17721899,-0.16165332,0.55264044,0.050341096,0.16447206,-0.8021435,0.20382096,-0.016141823,0.17841458,0.034877315,0.06878353,-0.26414943,0.84467155,-0.16666518,0.6323769,0.3570743,0.36124268,0.0015178621,-0.3868334,0.10871383,0.78787166,0.4433802,0.18749489,-0.21800786,-0.06254113,-0.331985,-0.43088612,0.2119406,0.512305,0.6571948,-0.13855372,0.07184114,0.30742508,0.17237745,0.0016561374,-0.27350655,-0.3480382,-0.18725532,0.052087728,0.67085594,0.71001196,-0.2667998,0.2152897,-0.0033737,0.13133597,-0.13011654,-0.5970431,0.44624963,0.9497637,-0.1954676,-0.10433801,0.6854393,0.52816623,-0.8856433,0.5025098,-0.92983264,-0.4449818,0.45670906,-0.0588707,-0.64937335,0.13074104,-0.3389505,0.31327146,-0.79353815,0.42232195,-0.40249896,-0.16187079,-0.5664775,-0.15965007,-2.491164,0.2794045,-0.33686042,-0.23585916,-0.17124157,-0.027229091,0.09019216,-0.70548964,-0.5191727,0.28062013,-0.06841915,0.5391955,-0.01425231,0.24477524,-0.3378499,-0.08273884,-0.27058318,0.16255131,0.07350503,0.37745616,-0.2706903,-0.31270495,-0.034217227,0.0007781883,-0.2728598,0.12792857,-0.6576484,-0.6151572,-0.22582243,-0.37072518,-0.16377157,0.50120443,-0.21903849,-0.01012585,-0.27504525,-0.16374846,-0.2324451,0.23832254,0.25580424,0.32813382,0.1289049,-0.024211964,-0.108929776,-0.37048233,0.19930041,0.13878296,0.15898164,0.35141277,-0.32448873,0.13534284,0.4930065,0.5998806,0.15905412,0.8243046,0.38057843,-0.0678416,0.4706262,-0.22195642,-0.47773433,-0.66462725,-0.35342023,0.044270143,-0.36608925,-0.6502549,0.07516155,-0.20041026,-0.8221372,0.5240278,0.03735675,0.32915872,0.18500476,0.28024855,0.48829398,-0.26871535,-0.2632179,0.031809434,-0.19548863,-0.75727445,-0.30826315,-0.7957716,-0.5525732,0.50789165,0.6428601,0.00028575957,-0.18113194,0.2490137,-0.33966717,-0.0560333,0.11304688,0.16058561,-0.022558764,0.37181938,0.15416953,-0.6879358,0.6120077,0.16696525,-0.15669711,-0.62665695,0.32457805,0.7307866,-0.7632074,0.44911444,0.39504275,0.18851574,-0.08234676,-0.46948186,-0.22920881,0.16138482,-0.36273614,0.20168072,0.22743024,-0.7757947,0.17928444,0.38366985,-0.23989761,-0.6896906,0.7207744,-0.0826575,-0.22422326,-0.16226515,0.3453215,0.055270206,0.10457239,-0.1349013,0.26697472,-0.68220854,0.28886595,0.40534428,-0.041826952,0.5461351,-0.17143877,-0.3338655,-0.6786647,0.32894635,-0.7447687,-0.18761347,0.3896806,0.024334505,-0.058045562,0.19308782,0.23702265,0.35502914,-0.22875643,0.12737225,-0.13090897,-0.29052362,0.59872586,0.39041623,0.5105724,-0.50338864,0.7931497,0.039863,0.0003507336,0.07696405,0.11408961,0.52451175,0.33116448,0.4298295,0.08429866,-0.0047004223,-0.014135294,1.0011019,0.35572815,0.55406696,0.43828964,-0.19833456,0.352378,0.17528196,0.0553142,-0.14884889,-0.52630156,-0.036845893,0.19022119,0.18457668,0.37949696,0.1005525,0.5096569,-0.16148567,-0.27272284,0.13745213,0.07721222,-0.030521182,-1.2656145,0.1406761,0.13511167,0.6356909,0.39822188,-0.07038781,-0.09197393,0.5814151,-0.27147225,0.15958448,0.27395287,-0.28248605,-0.56836617,0.5678904,-0.52838904,0.29256156,-0.31345943,0.037321154,0.14748363,0.30137295,0.47582874,0.74194026,-0.15272193,0.064366,-0.20208812,-0.32424673,-0.046065733,-0.31686002,0.11067697,-0.34657776,-0.5241695,0.63927484,0.40412667,0.36422434,-0.23654693,0.023578102,0.03885932,-0.05993138,0.33720434,0.011249085,0.12764706,-0.024917873,-0.5953693,-0.3018009,0.5475428,-0.14103828,0.015661417,-0.06645489,-0.16570778,0.43517157,-0.14593329,-0.31494233,0.12793736,-0.8538256,0.2440244,-0.5494091,-0.6515944,0.2142322,0.09168234,0.17076086,0.22227104,-0.06863566,-0.3677809,0.31527042,-0.015818616,0.97612566,-0.1304224,-0.2717422,-0.48624185,-0.053817492,0.21276337,-0.18801449,0.38339233,-0.09730154,0.13689323,-0.70188314,0.50120014,-0.17170723,-0.24154453,0.20595515,-0.1778998,-0.14065439,0.48638353,-0.09280294,-0.32125822,0.21570629,-0.18783726,-0.53874373,-0.28395477,-0.14733975,0.23053513,-0.025929233,0.12925142,-0.11364726,-0.107909776,0.06209143,0.4299884,0.1423651,0.30655622,0.5469897,0.20644201,-0.6508061,0.066046335,0.35428843,0.45666924,-0.12973534,0.10266098,-0.1322581,-0.80958015,-0.4466962,0.26376623,-0.21895091,0.45527077,0.12443882,-0.43750605,0.9704371,0.036958754,1.1220886,-0.051183965,-0.3511205,0.040627588,0.3708668,-0.080259025,-0.14136802,-0.39203605,0.9264242,0.716387,0.03405832,-0.15961303,-0.32139924,-0.30633214,0.24501024,-0.3644905,-0.005166819,0.03952412,-0.6492223,-0.2760514,0.02007608,0.36662707,0.0134623675,-0.12187887,0.3116009,0.21059173,0.09088194,0.2046774,-0.6215579,-0.46710858,0.3422954,0.20391373,-0.17349903,0.04341213,-0.22462213,0.36140168,-0.6753437,0.2353822,-0.38104013,0.05059284,0.15639107,-0.35442218,0.06871096,0.047932256,0.4445138,-0.53635895,-0.34107313,-0.24163587,0.5953323,0.22039855,0.17948854,0.5813273,-0.25541672,0.1578915,-0.029408654,0.63796943,1.2370868,-0.07291635,0.17263818,0.22908527,-0.57443565,-0.90164644,0.43771124,-0.18691641,0.360674,-0.100888394,-0.28943813,-0.58315015,0.09490872,0.18545492,-0.37373877,0.049064517,-0.6566047,-0.34916735,0.27446595,-0.43319976,-0.3218551,-0.44641185,0.18999928,0.5439989,-0.16908443,-0.10511246,0.021861454,0.27527568,-0.2710129,-0.4872545,0.04989311,-0.3822049,0.23151682,0.14250408,-0.37513757,-0.027756155,0.12740791,-0.5711174,0.08411827,0.100782216,-0.47431538,0.090851925,-0.2980384,0.018488526,1.0196959,-0.064212866,-0.1988594,-0.742086,-0.62867063,-0.9791358,-0.75069696,0.2541885,0.2763783,0.17405908,-0.49076995,0.11125652,-0.0015237182,0.26196405,-0.043794658,-0.4647933,0.38732228,0.19760786,0.57271564,-0.09734172,-0.7205902,0.19560963,-0.005518295,-0.09209788,-0.54235244,0.44131592,-0.12255671,0.9746135,0.18787692,-0.14770685,0.2511233,-0.7065194,0.09445357,-0.13966481,-0.3545424,-0.7354049,0.12786148 +90,0.14947058,0.03967376,-0.7183444,-0.2885564,-0.20514661,0.05877125,-0.17457043,0.4154691,0.37862805,-0.20434983,0.027919682,-0.048279405,-0.09258231,0.47253177,0.04934368,-0.82448554,0.058400307,0.18156312,-0.58812225,0.37246066,-0.6084773,0.36460716,-0.10154548,0.38156524,0.057114813,0.32920688,0.11321317,-0.12575144,0.16478649,0.14994396,-0.09178621,0.2512227,-0.52077657,0.22526556,0.051331885,-0.33342716,-0.034705296,-0.26532567,-0.1455982,-0.72836155,0.1532961,-0.5480738,0.5522984,0.0074146846,-0.4252354,0.013421059,0.17581652,0.36129138,-0.30725068,0.020411532,0.35603568,-0.170145,0.0026981372,-0.117565155,-0.27616715,-0.59845716,-0.49639493,0.0057311286,-0.6321442,-0.091025904,-0.2810896,0.22068092,-0.34896743,-0.10417791,-0.31351253,0.3775123,-0.40386808,0.065947756,0.21855241,-0.27222872,0.15848336,-0.48313156,-0.11999173,-0.13984862,0.30193332,-0.14745793,-0.2931641,0.13367237,0.46640983,0.49636474,0.17430407,-0.28394097,-0.3348955,-0.11221959,0.09299628,0.5120741,-0.14252459,-0.26243642,-0.24927396,-0.14895873,0.06724175,0.1588603,0.019035252,-0.4876254,0.03768607,0.24059732,-0.25383812,0.26951003,0.40460998,-0.474397,-0.394033,0.4550566,0.4302052,0.038991,-0.29712453,0.106494755,-0.09873179,-0.493947,-0.26917,0.072275996,0.006234671,0.35373858,-0.1561153,0.08600222,0.8596147,-0.077024326,-0.1768887,-0.03906267,-0.09611322,-0.007786393,-0.4030295,-0.0009233126,0.14968874,-0.5051026,0.08296065,-0.18474014,0.6032775,0.020000933,-0.93476486,0.28386968,-0.5704895,0.061818004,-0.12480994,0.6094912,0.8997419,0.2133673,0.06563804,0.8569445,-0.5152245,0.048246995,-0.01569681,-0.5101771,0.33800873,-0.12144824,0.15659316,-0.49147204,0.15642546,0.08824374,0.012449952,0.15691844,0.34901267,-0.5408565,-0.11505377,0.109284915,0.53439915,-0.36817747,-0.19388959,0.65371037,1.0482953,0.9869791,0.08097381,1.4966813,0.29730722,-0.2021153,0.2032996,-0.37846038,-0.45685026,0.16884646,0.240999,-0.20999338,0.3536941,0.113895774,0.24237153,0.5233434,-0.07631898,0.13809845,0.0051160227,0.2559202,-0.0014513388,-0.1764827,-0.31800553,-0.2606772,0.1869509,0.107569024,-0.0380128,0.33918542,-0.24053165,0.25076956,0.08563502,1.3022624,0.0667504,0.09783835,-0.05460055,0.3306235,0.25876984,-0.29762787,0.004401042,0.38646266,0.16400415,-0.08567904,-0.5328035,0.04360483,-0.34926242,-0.35357568,-0.2754869,-0.42831773,-0.048385937,-0.0750575,-0.43757108,-0.082006976,0.053047903,-0.35104975,0.40714106,-2.641462,-0.31127453,-0.19706462,0.23044528,-0.13283132,-0.2797935,-0.30957383,-0.39106777,0.19183883,0.28371158,0.38853723,-0.5952299,0.53922284,0.3097769,-0.45838326,-0.2256966,-0.64136976,0.06635884,-0.10554568,0.27762488,-0.099251166,-0.032451317,-0.21014613,0.14705661,0.5693373,-0.09333909,-0.05111234,0.32517523,0.41876304,0.055961814,0.58515584,0.1273224,0.75371796,-0.15274987,-0.13179994,0.3957734,-0.44128132,0.39749828,0.13457367,0.082917534,0.4111598,-0.34995696,-0.9963472,-0.66586083,-0.3448267,1.1405165,-0.4221379,-0.16158468,0.34970805,-0.13569781,-0.35951382,0.03915961,0.43116963,0.0106201535,0.022162098,-0.6522591,0.14883043,-0.07787972,0.1782322,-0.094659075,0.09974789,-0.3795007,0.6752526,-0.02475072,0.54434633,0.31787926,0.13928989,-0.2667468,-0.31312835,0.036158767,1.0575017,0.24102007,0.09726779,-0.07038743,-0.2369291,-0.35606763,-0.11743696,0.21262868,0.52966416,0.5155932,-0.11296324,0.1907178,0.32933614,-0.1256143,0.01394301,-0.057472367,-0.36924157,0.0035553586,0.3132418,0.4901764,0.60779464,-0.29490876,0.43285438,-0.071379825,0.22096191,-0.18511496,-0.6417478,0.51503426,0.7964334,-0.011728715,-0.19840458,0.60050327,0.38960904,-0.34619093,0.4614278,-0.47199017,-0.3074505,0.59620833,-0.16085431,-0.28315666,-0.006465483,-0.33926323,-0.02033632,-0.80512935,0.17297147,-0.19574007,-0.61948043,-0.3619982,-0.1895892,-3.9997776,0.18083169,-0.00080126524,-0.012295828,0.0071006003,0.01563292,0.34823835,-0.4918448,-0.5433345,0.060760282,0.15558802,0.553016,-0.08631636,0.16323373,-0.40122873,-0.2761061,-0.27444932,0.25464615,-0.042999335,0.30018374,0.07812142,-0.503357,0.05304949,-0.27031916,-0.5303711,-0.0077396976,-0.555653,-0.34289345,-0.062238906,-0.6026658,-0.26749915,0.78866315,-0.61859804,0.009469749,-0.28788042,0.013461883,-0.0525984,0.4128827,0.15392981,0.1611153,0.22597662,0.0457446,-0.18394351,-0.42607492,0.14224614,0.052498743,0.4406695,0.37911123,-0.015290407,0.19981432,0.6356491,0.69047445,0.015189221,0.7909952,0.2822619,-0.018502893,0.3651007,-0.2695124,-0.18420564,-0.5690865,-0.4268223,-0.391461,-0.5142916,-0.49192873,-0.023154331,-0.3858713,-0.80402315,0.55604327,0.14013621,0.0024729143,-0.026179489,0.28322342,0.2912566,-0.13636237,0.053814825,-0.22416762,-0.23438127,-0.48659235,-0.4990183,-0.6153902,-0.68809676,0.36767644,1.1478953,-0.34944457,-0.010770743,-0.111427076,-0.30737767,0.029027332,0.32293907,0.21667908,0.2907152,0.5151741,-0.18119043,-0.69140965,0.25884056,-0.21371864,-0.05180027,-0.49743792,0.077428825,0.64587224,-0.73432034,0.60381275,0.2106769,0.25856364,0.27141297,-0.54519963,-0.34536695,0.12073959,-0.36854395,0.6267522,0.18967399,-0.7215558,0.4822183,0.16561761,-0.17709994,-0.66699994,0.4012121,-0.13084072,0.038957283,-0.13726398,0.39079666,0.17910448,-0.10639079,-0.1704168,0.15459949,-0.5030013,0.15202695,0.3819003,-0.05890934,0.5152042,-0.028742753,-0.20814504,-0.72110933,-0.13467804,-0.4549298,-0.29224893,-0.090734944,0.12863947,0.1672252,0.1610604,-0.019642876,0.33098236,-0.42010453,0.1325879,-0.02292147,-0.24308842,0.29261523,0.48553163,0.22840779,-0.49902695,0.5029907,0.10055192,-0.007753936,-0.10917531,-0.014621485,0.5525664,0.16154489,0.43290997,-0.08031765,-0.13994315,0.2177158,0.5848944,0.24150088,0.2997418,0.049227457,-0.16578063,0.13541676,0.11899476,0.10726659,0.0856454,-0.36107603,-0.001439819,-0.036036994,0.2840435,0.51715434,0.15083945,0.28387573,-0.026641753,-0.31073385,0.31457108,0.12938847,-0.13001458,-1.0323439,0.39777943,0.28726187,0.68756145,0.62413543,0.055396616,-0.082572095,0.4938305,-0.35549358,0.09366362,0.50080144,-0.11590819,-0.42722702,0.59418094,-0.82725483,0.5650353,-0.1719782,-0.022845112,0.19735083,0.11801096,0.41872838,1.0285494,-0.21886481,0.13473043,0.102562994,-0.23132655,0.11767769,-0.3220927,0.10920453,-0.54317135,-0.3504704,0.67855585,0.42273766,0.15441717,-0.42053568,-0.11234571,0.13713008,-0.16673774,-0.06409348,-0.19820449,0.009372766,0.037802234,-0.52192366,-0.24899484,0.61070293,-0.0066538593,0.103606075,0.16667596,-0.33765686,0.36338776,-0.15637144,0.045049813,-0.07810649,-0.47755188,-0.045566,-0.26728597,-0.4541942,0.5198012,-0.40692222,0.29307368,0.15617067,0.047924902,-0.20141563,0.57856405,0.14022812,0.7331193,-0.0323228,0.02381086,-0.19948171,0.24057175,0.28836724,-0.19510815,-0.16692716,-0.49794945,0.13711718,-0.601111,0.32541576,-0.14349297,-0.28127915,-0.18024951,0.0017448881,0.05658996,0.41190004,-0.25106177,-0.11392646,-0.02316893,-0.03218966,-0.16188115,-0.0071879807,-0.34922937,0.24471079,-0.008871464,-0.048924603,-0.019945534,-0.20103748,-0.15838534,0.23824963,0.08982364,0.16304237,0.22184035,-0.09628987,-0.20271532,0.14447348,-0.080790885,0.3137356,0.18423176,-0.23272492,-0.16409895,-0.13582246,-0.35040534,0.2821158,-0.1122979,0.30624455,0.03442253,-0.39905882,0.665577,0.1788564,1.4700532,0.06860031,-0.50117224,0.13631518,0.49043104,0.062881894,0.15196322,-0.3400688,0.835788,0.58677137,-0.1933407,-0.21992907,-0.39305085,-0.342581,0.26402298,-0.2759932,-0.30580106,0.040470675,-0.74772525,-0.27185118,0.13930005,0.18512693,0.15629229,-0.09021947,-0.0042179683,0.13288914,0.26684842,0.2431857,-0.55257046,-0.1608329,0.24745393,0.44881293,0.03994064,0.17590275,-0.34190667,0.5314309,-0.8174468,0.2830284,-0.37939277,0.17789459,-0.37086803,-0.3434774,0.21871923,0.11176631,0.23610702,-0.17452845,-0.40387037,-0.24830121,0.73999023,0.18216188,0.2518298,0.83654475,-0.29187,-0.1418773,0.10017527,0.2905912,1.1987541,-0.14427128,-0.2775876,0.4129426,-0.21585666,-0.6530322,0.18713656,-0.53303105,0.11365353,-0.11932389,-0.51308626,-0.25086907,0.3185038,-0.036537383,-0.051078677,0.028180668,-0.5113236,-0.04436082,0.29660174,-0.25642982,-0.2998042,-0.22590297,0.30333984,0.77568597,-0.4722758,-0.4382773,0.1680138,0.3121791,-0.24877109,-0.58832544,0.03771228,-0.34967312,0.5198357,0.21132715,-0.30779758,-0.0053435587,0.2606087,-0.39332563,0.18528144,0.5254228,-0.31171435,0.19685918,-0.2976853,-0.16601966,1.1283766,0.07926785,0.32593095,-0.5006073,-0.4726845,-0.7935101,-0.28083885,0.20137192,0.045883894,-0.14085947,-0.4556924,-0.1391978,-0.13265772,-0.10223869,0.16140601,-0.45048583,0.44712704,0.044542972,0.51889443,-0.10968577,-1.1650608,-0.17304696,0.39121202,-0.0672591,-0.57721615,0.5290104,-0.26746517,0.8449925,0.09234202,0.096065715,0.24848002,-0.47286594,0.34389216,-0.47187248,-0.0440768,-0.63841873,-0.0017576676 +91,0.58010393,0.00408348,-0.56930774,-0.1618536,-0.3112228,0.08462592,-0.18894556,0.44173464,0.2155381,-0.46051884,-0.20397663,-0.009068585,-0.007315033,0.25519398,-0.15323165,-0.6403588,0.1788418,0.29972535,-0.58511126,0.587689,-0.45706376,0.45736465,0.02014594,0.28477088,0.25729987,0.26391345,-0.072495155,0.016102612,-0.14938198,-0.16354741,-0.16235073,0.31879514,-0.50547904,0.3592791,-0.1718806,-0.3544372,-0.014291406,-0.28495386,-0.34048876,-0.69099694,0.11884473,-0.7082984,0.44078746,-0.20058165,-0.40382338,0.06972565,0.15232976,0.4572721,-0.21169999,-0.06707551,0.14721668,0.07651518,-0.3516527,-0.14576313,-0.10088025,-0.42285296,-0.51677555,-0.05028438,-0.36910793,-0.04399566,-0.36343092,0.22545402,-0.17371915,0.123089425,-0.14576261,0.37695643,-0.2954657,0.29194435,0.18595076,0.033796757,-0.032403797,-0.49685058,-0.07082267,-0.16296002,0.42209885,-0.08617913,-0.30259913,0.259059,0.26265103,0.34735087,-0.035188776,-0.14562085,-0.32401457,-0.07416224,0.06768059,0.5612404,-0.11504634,-0.32276797,-0.118039094,-0.012241478,0.13985018,0.1528132,0.15959667,-0.24592026,-0.14202072,-0.17172875,-0.397861,0.41565782,0.38912842,-0.2945836,-0.085568056,0.44902733,0.55391896,0.11102544,-0.27220336,0.025679532,-0.023934856,-0.55328757,-0.122297965,0.0028455597,-0.17184949,0.47904247,-0.059875306,0.1927711,0.5859667,0.08721683,-0.21808483,0.17899884,0.16495135,0.019715104,-0.28955323,-0.23684338,0.1605632,-0.53505945,0.037416816,-0.17279074,0.7715866,0.07420198,-0.7353715,0.28131077,-0.44444337,0.05671226,-0.16323957,0.40522024,0.6673521,0.48137066,0.061897848,0.68414927,-0.3972494,0.13066377,-0.027694812,-0.22802475,-0.019319104,-0.04765064,0.013767004,-0.45549455,0.14069153,-0.030112538,-0.1595708,0.22947598,0.38021752,-0.41582653,-0.22643535,0.04249363,0.7608598,-0.39401117,-0.25331813,0.78686523,0.92326397,0.87085974,0.07997311,1.0568858,0.27421945,-0.1154377,0.109833375,-0.3481843,-0.5964287,0.24780674,0.2225825,-0.043301694,0.19475044,0.14596762,0.03614194,0.38616735,-0.24278285,-0.066901855,-0.10776738,0.3227492,0.020965127,-0.10139002,-0.42995,-0.39733973,-0.06442487,-0.046331517,0.19875135,0.20653431,-0.14732318,0.37871557,0.19311465,1.4773496,0.10014611,-0.06478581,-0.020246293,0.38800004,0.20984502,-0.27633452,-0.26730064,0.18719888,0.37306803,-0.05956894,-0.5135041,0.056776643,-0.1851877,-0.40070316,-0.12270711,-0.29103294,-0.22218673,-0.12364753,-0.38026264,-0.12812638,-0.088486455,-0.21500246,0.535536,-2.7270737,-0.21636876,-0.11582184,0.38259667,-0.088471,-0.48653197,-0.17595837,-0.5642733,0.3374744,0.20645194,0.49064383,-0.51983076,0.51182806,0.30852988,-0.451906,-0.0958987,-0.591515,-0.046408623,0.10913889,0.23822257,-0.027304301,0.09055669,-0.1977285,0.027926514,0.45439503,-0.15413554,0.19657905,0.41113934,0.23820281,0.10325593,0.46077314,0.091429286,0.65334415,-0.18302055,-0.06173018,0.23780084,-0.42398834,0.3403584,-0.052968774,0.15212356,0.53127825,-0.48808402,-0.7311637,-0.56246376,-0.10131561,0.98529804,-0.24394245,-0.14786534,0.27234927,-0.4076864,-0.24433632,0.14399263,0.27988186,-0.110946365,-0.19123472,-0.69653404,-0.14394829,0.04309505,0.27607295,-0.16082872,-0.16886698,-0.3383648,0.54752344,-0.04790008,0.44987583,0.14066197,0.13339886,-0.23284896,-0.33447036,-0.0062747872,0.93219984,0.30264956,0.14823915,-0.3152743,-0.23006718,-0.60601526,0.017013205,0.009837533,0.6433118,0.49611142,-0.09454922,0.044480186,0.1649626,-0.022440417,0.024212787,-0.11133317,-0.27891114,-0.091180734,0.0036399749,0.49295744,0.6477281,-0.025416633,0.54374063,-0.18028966,0.29082632,-0.24683902,-0.53470856,0.44257498,0.8835368,-0.2504132,-0.31979582,0.6348203,0.4152394,-0.015636487,0.37034193,-0.49317536,-0.41443223,0.396189,0.013281592,-0.1596863,0.05994955,-0.28719458,0.2452716,-0.89183086,0.2753871,-0.31544018,-0.75026447,-0.4400282,0.027440276,-2.7532315,0.13449445,-0.027045803,-0.15990528,0.003894789,-0.1253645,0.08518721,-0.43841982,-0.662005,0.22846918,0.06812054,0.76422256,-0.085923895,0.122922264,-0.053346686,-0.32929257,-0.13106689,0.19986747,0.078997,0.35777912,-0.07125397,-0.4418362,-0.097404845,-0.18489334,-0.23227929,0.086162604,-0.80238146,-0.391259,-0.09799127,-0.5162219,-0.22121511,0.5794238,-0.590637,-0.00051058724,-0.1235309,-0.026899377,-0.12999737,0.16671453,0.0055370247,0.10912116,0.09665651,-0.13587464,-0.044885036,-0.35033175,0.20106222,0.14295565,0.3623991,0.2095108,0.097779974,0.2000774,0.49869347,0.5944861,-0.015770316,0.82932866,0.3278337,-0.10438895,0.17262486,-0.121077076,-0.28908348,-0.42133117,-0.14511903,-0.26626903,-0.39433974,-0.23630682,-0.04284818,-0.40259844,-0.7941833,0.40164685,0.0435854,-0.14998507,0.06715626,0.25941038,0.42316934,-0.120801345,0.016003473,-0.1690687,-0.07540833,-0.5483423,-0.49643067,-0.5643081,-0.39942783,0.13928832,1.224086,-0.22411309,0.22515617,-0.073113374,-0.31160814,-0.06445756,0.26656157,-0.029672325,0.14058897,0.5099054,-0.23066309,-0.60557187,0.45358008,-0.3940124,-0.08858691,-0.5358664,0.22515713,0.5440965,-0.64888877,0.47225383,0.29140812,0.06909207,-0.06446435,-0.4098401,-0.22289827,-0.055602986,-0.30389673,0.3414884,0.23578437,-0.66925985,0.33578843,0.3026586,-0.25696343,-0.7893758,0.6349438,0.0014308052,-0.24415864,-0.10629065,0.31935778,0.09907248,0.11046282,-0.15860553,0.13521983,-0.28817156,0.1142451,0.21636765,0.042348035,-0.09305284,-0.34393588,-0.04795303,-0.72523797,-0.10791308,-0.306138,-0.25561854,0.14595577,0.017485734,0.16546793,0.17568739,0.28906924,0.23622581,-0.42446855,0.05185147,-0.27296478,-0.26185533,0.32416922,0.44596595,0.57080275,-0.3738646,0.46187133,0.07874714,-0.037224658,-0.06121846,0.031124106,0.4162415,-0.055254046,0.4798345,0.08915795,-0.122238114,0.19937822,0.85051334,0.2199951,0.30899668,0.070218675,-0.14206669,0.050924275,0.016070936,0.27432618,0.19209613,-0.45769477,-0.052797172,-0.21974863,0.1891392,0.42974472,0.04039463,0.21508847,0.01592733,-0.31177124,-0.009634818,0.04095465,0.13977441,-1.3090736,0.46794802,0.17295517,0.7506811,0.3699836,-0.004992119,-0.03347085,0.61199516,-0.12816277,0.2777163,0.21835354,-0.25775367,-0.23204228,0.45301172,-0.557124,0.5244425,-0.007603756,-0.010342726,0.20918877,-0.100395165,0.41726664,0.94549364,-0.16812356,0.07471488,0.17388114,-0.40583226,0.108231984,-0.26343408,-0.0052239853,-0.6485253,-0.18735692,0.8337415,0.58128774,0.31887707,-0.15337683,0.040002424,0.0997997,-0.113806725,0.07215149,0.0470348,0.10753449,0.039941523,-0.47993153,-0.12248106,0.564731,-0.19986965,0.16641164,0.2030582,-0.117616765,0.3191772,-0.10242677,0.07137313,-0.20276013,-0.6918532,-0.007466101,-0.3348561,-0.34715527,0.2373908,-0.059150714,0.23080513,0.25620383,0.12707102,-0.24040683,0.48455092,0.066172905,0.56264764,0.020659218,-0.18490723,-0.15928619,0.19286506,0.19766213,-0.25091666,0.11641856,-0.385576,0.124732204,-0.79233265,0.36345118,0.03771664,-0.3731492,-0.048721883,-0.010330988,0.12954636,0.34787178,-0.02631496,-0.0970037,0.07225936,0.053394496,-0.19091327,-0.13444988,-0.2750895,0.16159378,0.3453416,-0.15702784,-0.05712241,-0.09662783,-0.02706727,0.37605622,-0.025502516,0.46842724,0.28333345,0.13582656,-0.21728352,-0.13258244,0.31483126,0.6088973,-0.048200186,-0.08384158,-0.29290894,-0.20349881,-0.3942676,0.42750835,-0.06833629,0.48099282,0.121326365,-0.18844056,0.63482475,-0.05648167,1.0854384,0.099803604,-0.2847683,0.17246988,0.48818842,0.0015624166,-0.107983276,-0.30426475,0.85649866,0.31971344,-0.14077258,-0.047149234,-0.3374677,0.06012885,0.0933053,-0.06469323,-0.1359915,-0.035657085,-0.45233032,-0.17944817,0.12864561,0.15664077,0.21213773,-0.06833707,0.18319702,0.2686374,-0.054159667,0.21913354,-0.49592075,-0.010796036,0.20527211,0.23412621,0.027014554,0.15388466,-0.5955221,0.37948522,-0.6278173,0.037145793,-0.23112524,0.14049526,-0.19617751,-0.30328828,0.2057893,0.168931,0.23189759,-0.48837858,-0.3025377,-0.45627847,0.58629787,0.22540684,0.11315971,0.55279875,-0.1811777,0.0022768038,0.16337602,0.483483,0.7689619,-0.25040877,0.07633013,0.39568278,-0.31925187,-0.4251604,0.18013597,-0.24393317,0.17398962,0.107297316,-0.23970625,-0.6570143,0.32318094,0.20801724,0.1168234,0.17148556,-0.5967497,-0.04468576,0.19334531,-0.27680126,-0.2953443,-0.20275988,0.14688168,0.58720034,-0.22701226,-0.35010314,0.05684157,0.12699082,-0.22361347,-0.48509496,-0.082355715,-0.46813798,0.32584038,0.006936927,-0.24717109,-0.30514982,0.054741986,-0.38701487,0.12154511,0.21978989,-0.29413074,0.06004896,-0.35973278,-0.07957184,0.8173715,-0.10226077,0.22191072,-0.53905785,-0.444423,-0.60263664,-0.37831798,0.33901307,0.2949942,-0.14391848,-0.54775083,-0.12497061,-0.09641479,-0.17409687,-0.021330515,-0.3797839,0.45482653,0.18364468,0.13895808,0.041699167,-1.1747528,-0.046106312,0.08445908,-0.38581523,-0.48171908,0.39835075,-0.1823126,0.89984035,0.075879045,0.10840123,0.2155992,-0.41235298,0.11273598,-0.2330992,0.07792197,-0.64375687,0.16511814 +92,0.46140423,-0.08397564,-0.691663,-0.11277335,-0.5415775,-0.14461981,-0.21819182,0.53555006,0.2940511,-0.1547824,-0.10992663,-0.12389887,-0.06494926,0.48227975,-0.16491467,-0.96625227,0.04583427,0.30353022,-0.5936722,0.46308717,-0.45962617,0.32154214,0.14206195,0.63814694,-0.0087946765,0.034814175,0.22019497,0.29318187,0.06806294,-0.41765884,-0.09600819,0.2324378,-0.8995032,0.14458342,-0.18009819,-0.45494527,0.027955186,-0.47564843,-0.09994802,-0.9123563,0.33057725,-0.5880608,0.7169571,0.19133954,-0.34598467,-0.18677449,0.35273206,0.26030508,-0.2983072,0.008182541,0.3076891,-0.3859784,0.0021591403,-0.18507133,-0.35204136,-0.22015281,-0.79522645,-0.012660601,-0.49079037,-0.101816006,-0.29659137,0.27067378,-0.3396943,-0.012304821,-0.20696382,0.8081182,-0.36996773,0.030747198,0.20005661,-0.2328763,0.23303486,-0.55047536,-0.14522041,-0.13844174,0.059760597,0.031006726,-0.24145843,0.26437607,0.09774268,0.45954296,0.042211674,-0.33198297,-0.4971433,0.0683541,-0.057357874,0.5459068,-0.3569145,-0.2591476,-0.14025363,0.04661184,0.24823557,0.26912212,0.18932956,-0.21175641,0.072682984,-0.18143083,-0.10631467,0.45408443,0.43719128,-0.3693252,-0.12368629,0.09636205,0.29211742,0.031904187,-0.063198,0.16166086,0.03757809,-0.5919457,-0.28688592,-0.01964866,-0.14495525,0.5263907,-0.1441555,0.14892341,0.6887481,-0.14252158,-0.29818246,0.017678587,0.1179614,0.32753184,-0.32964915,-0.37880662,0.42734203,-0.41549066,0.09885531,-0.26365086,0.7091582,-0.0103494255,-0.86365855,0.20079617,-0.6332347,0.15677226,0.13967277,0.5223632,0.6760125,0.5208986,0.517142,0.9116905,-0.4162664,0.17702147,0.1783157,-0.049533747,0.09099798,0.009363088,0.22091703,-0.42170122,-0.0944535,-0.31696844,-0.16919911,0.25627562,0.44287965,-0.54392326,-0.14366402,0.22190356,0.8579729,-0.35389015,-0.10421648,0.86756325,1.2785783,1.3212823,-0.037068676,1.2995358,0.077160195,-0.07586513,-0.20996805,-0.05842864,-0.59599245,0.13954216,0.2220696,-0.1633852,0.4104499,0.068374746,0.027445467,0.60173404,-0.4918597,-0.20402378,0.08611409,0.335518,-0.074419506,-0.23677851,-0.637414,-0.41360572,0.16586097,0.121567324,-0.15227698,0.4071396,-0.20700537,0.54605275,-0.04067577,1.3876948,0.14061002,0.21583241,0.014500964,0.30894172,0.30834377,-0.11364398,-0.25166625,0.1289059,0.07513132,0.2330587,-0.40069115,-0.059546318,-0.32789195,-0.23088928,-0.18911186,-0.26278982,-0.02411306,-0.26537633,-0.43810672,-0.33146372,-0.042689964,-0.21825942,0.3175826,-2.248375,-0.04359332,0.09210684,0.30229107,-0.054231133,-0.4264437,-0.15578003,-0.45828447,0.5541413,0.3634098,0.3809902,-0.635775,0.43245223,0.3102281,-0.4377929,-0.11859166,-0.65150285,-0.15473728,-0.025146572,0.26595876,0.009404689,-0.25270128,-0.27984408,0.40599057,0.7449919,0.08840715,-0.04445794,0.24479146,0.47956392,-0.3850216,0.7436397,0.07442208,0.49209586,-0.24713121,-0.25262967,0.39811325,-0.6364429,0.15356968,0.0021544883,0.081624,0.39195508,-0.56200665,-1.1896305,-0.5979695,-0.038841102,1.1323044,-0.23804146,-0.35445073,0.29883745,-0.26187134,-0.3447007,0.11288602,0.63474137,-0.24733764,0.110503286,-0.6925307,-0.11650135,-0.10695076,0.35035855,-0.000839633,-0.056687318,-0.59479725,0.8139398,-0.22739358,0.2728144,0.53180027,0.18371485,-0.44043055,-0.5073065,0.04638802,1.0999984,0.5559477,0.064720176,-0.22461458,-0.048053686,-0.20121104,-0.015156364,-0.09996044,0.7438385,0.7815283,-0.20883287,0.11241576,0.32982695,-0.13087808,-0.03114794,-0.12702559,-0.46880445,-0.11596859,0.16064318,0.72223604,0.80011994,-0.096242815,0.3882704,-0.008559861,0.46674183,-0.06839711,-0.5607859,0.31421417,1.1452248,-0.08127777,-0.19894642,0.8121494,0.29933488,-0.32607457,0.47208175,-0.4106239,-0.34031293,0.4816227,-0.014315418,-0.39005688,0.14957945,-0.35828188,-0.12258697,-0.9308054,0.39382982,-0.25137922,-0.6037861,-0.547638,-0.28196633,-3.4586928,0.3290246,-0.28225428,0.0940713,-0.1594825,-0.19927599,0.10244088,-0.7284331,-0.7277884,-0.0899786,0.14228036,0.5421536,-0.2239456,-0.008904302,-0.12081575,-0.65226895,-0.2538439,0.44219935,0.33731622,0.19362618,0.18134524,-0.44292343,-0.10162295,-0.35431907,-0.6579994,-0.1532685,-0.67050934,-0.4542506,-0.16744934,-0.7238485,-0.30510274,0.89161664,-0.29387668,-0.085178524,-0.32655853,0.016577026,0.010892673,0.2395916,0.1665588,0.27712172,-0.0049720462,-0.024916975,-0.07345228,-0.15636307,0.04869474,0.10484728,0.47416928,0.38144162,-0.08043077,0.14759292,0.54965657,0.91889805,-0.19723922,1.027343,0.19315724,-0.081057586,0.2754672,-0.38152036,-0.4942392,-0.7647079,-0.35607958,-0.13307738,-0.52642244,-0.10039724,-0.003198537,-0.5038733,-0.78791964,0.67331296,-0.10918407,0.079317875,-0.020010991,0.51002336,0.27792957,-0.3312392,0.0016368493,-0.16889407,-0.13916668,-0.4375963,-0.273204,-0.59814936,-0.62729025,-0.13802567,1.3624848,-0.27030402,-0.03670279,0.1816011,-0.1927893,0.21404758,0.11393211,0.13706131,0.1332205,0.44694564,0.14694834,-0.65456605,0.29814646,-0.20821905,-0.114041805,-0.56626785,0.21350765,0.67775995,-0.6249583,0.87568396,0.27651384,0.19043571,0.14048393,-0.73079395,-0.20396987,0.21582824,-0.106084175,0.60818726,0.4047987,-0.7203704,0.51617986,0.13113855,-0.368803,-0.6745092,0.31835327,-0.080535315,-0.62642574,-0.094945736,0.42360595,0.054537773,0.003313834,-0.16176766,0.3334767,-0.3094507,0.30964586,0.2990668,-0.08294713,0.32804644,-0.24580258,-0.28753778,-0.7587582,0.06465573,-0.4781703,-0.5735167,0.03795954,0.102481075,-0.14330927,0.17800649,0.13857363,0.42846975,-0.41691133,0.21803637,-0.31706086,-0.25959012,0.487856,0.5777022,0.3909465,-0.5389024,0.57512087,0.063589685,-0.08648468,-0.24648142,0.065722436,0.50299174,-0.14437965,0.2532746,-0.11119736,-0.13618153,0.195195,0.44557726,0.05788165,0.31985244,0.14756547,-0.00052016973,0.21201953,0.16353363,0.047052503,-0.0440421,-0.46894178,0.22333501,-0.18069445,-0.0053218496,0.59016603,0.075468354,0.2181776,-0.085293055,-0.16699265,0.2341273,0.33440402,-0.16457482,-1.3913454,0.41518462,-0.008751672,0.7564274,0.64053655,0.2028192,-0.13285774,0.58487135,-0.409265,-0.13795543,0.48726502,0.2469461,-0.2657622,0.78074265,-0.5866813,0.45090115,-0.16485734,0.041692514,0.08707576,0.2033052,0.4810797,0.8377828,-0.11072655,0.060836073,-0.034052763,-0.13776039,-0.18884167,-0.41250277,0.040526215,-0.42607498,-0.34282213,0.73683524,0.3028634,0.29943705,-0.36176434,-0.073564455,0.11148617,-0.24050908,0.25748366,-0.20981096,-0.120684594,-0.058521662,-0.5189264,-0.028487975,0.5968984,-0.11068621,0.025092868,0.10358403,-0.17839566,0.27723023,0.061983045,-0.102360055,-0.021904672,-0.78552586,-0.11954883,-0.64559823,-0.3390879,0.3805184,-0.44409677,0.12752376,0.2505925,0.05329377,-0.27605617,0.30404213,0.25182793,0.6909792,0.05464444,0.062002376,0.014394782,0.5104765,0.071812704,-0.28683534,0.037969843,-0.3768171,0.26301193,-0.3986971,0.55470985,-0.056407962,-0.41083518,-0.17974462,0.015417874,-0.04759891,0.45926502,-0.31662586,-0.033350218,0.08490944,-0.06778345,-0.034966577,-0.32492074,-0.31575242,0.30707562,-0.15127362,-0.11666224,0.017485064,0.015928464,-0.15547124,0.47318137,0.046015106,0.23763691,0.3261447,0.017558716,-0.5785936,0.11512082,-0.24060577,0.49465334,-0.014354589,-0.19154243,-0.4047686,-0.26680863,-0.34588358,0.28421345,-0.21926723,0.16601384,0.054396186,-0.35304335,1.1363009,0.43662557,1.4042617,-0.0960527,-0.43020973,0.10792006,0.5981254,-0.050620124,0.033466157,-0.24732111,1.1543988,0.55528206,-0.40733165,-0.18134183,-0.41911933,-0.16039604,0.16017443,-0.3565718,-0.31762666,-0.17446391,-0.49822378,-0.16232306,0.33088362,0.27886084,0.17382012,-0.21994954,0.07763504,0.288019,0.14327937,0.33396694,-0.45396435,0.05007031,0.37894675,0.2117741,-0.07336697,0.11464921,-0.3312947,0.37733555,-0.71919477,0.31583968,-0.5138176,0.18479075,-0.14282155,-0.4868302,0.22368093,0.047009967,0.25008973,-0.3649892,-0.11718106,-0.15512826,0.5306477,0.23151225,0.14090584,0.80349374,-0.34327853,-0.03495724,-0.009031367,0.47146493,1.3127769,-0.26551604,-0.20696887,0.225911,-0.23938408,-0.6254588,0.17714487,-0.3617609,-0.22059064,-0.33339694,-0.42014924,-0.6491318,0.104812816,0.15944232,0.1387652,-0.063215524,-0.41572294,-0.14738518,0.5154819,-0.3013174,-0.16467948,-0.35068762,0.27150118,0.6467473,-0.11353597,-0.6088333,0.06093147,0.19063225,-0.07833648,-0.69682974,-0.014182177,-0.28773025,0.37609977,0.08003108,-0.38907745,-0.027805718,0.3859318,-0.49069282,-0.029685117,0.36599123,-0.1926539,0.17409015,-0.30363035,-0.08904343,1.0727376,-0.080218025,0.19057097,-0.3840822,-0.66862625,-1.0051365,-0.2783439,0.35772333,0.10250806,-0.06539306,-0.8014731,-0.15884948,-0.32749137,-0.2251368,0.06363373,-0.26612863,0.24662638,0.13707279,0.42756507,-0.28024843,-0.82384866,0.15448704,0.22445332,-0.2151764,-0.39918336,0.51834416,0.00022738088,0.7692999,0.0982338,0.0878324,0.2282938,-0.6571537,0.45638016,-0.18750057,-0.11299346,-0.5023596,-0.082639284 +93,0.41420874,-0.27974936,-0.5270966,-0.057577275,-0.39171666,0.0985528,-0.19486304,0.39386266,0.19371423,-0.48002625,-0.12322618,-0.1498421,0.036908828,0.30919358,-0.16196588,-0.280924,0.005011479,0.2451422,-0.687914,0.5856785,-0.2772897,0.1338412,0.03213586,0.4471649,0.1377876,0.2320089,0.11696403,-0.06075655,-0.15048355,-0.3925134,-0.28219545,0.11786326,-0.5091048,0.27575547,-0.2954382,-0.29038316,-0.035143804,-0.5463976,-0.34977368,-0.76048213,0.25673437,-0.9300169,0.5110521,-0.11139598,-0.27341336,0.17229366,0.2571739,0.32491493,-0.18672495,-0.12988307,0.1757348,-0.28134286,-0.12255171,-0.22646262,-0.18353829,-0.3374898,-0.47986448,-0.07119228,-0.45987898,-0.16519709,-0.3121072,0.146849,-0.32217818,0.10675765,-0.07690468,0.7236961,-0.36257985,0.391734,0.1698846,-0.16781718,0.20885484,-0.6989729,-0.04209428,-0.1677772,0.31321558,-0.090753086,-0.26568422,0.29440242,0.27194712,0.3731139,0.08016075,-0.14426297,-0.23678498,-0.22623186,0.14441161,0.40530598,-0.05719041,-0.5515172,-0.12642747,0.14911836,0.16574351,0.2414838,0.13665749,-0.27020276,-0.08547364,-0.15128438,-0.19502774,0.5254059,0.48100427,-0.20970216,-0.07711841,0.26361448,0.54570526,0.20948829,-0.14577805,-0.08990657,0.003951609,-0.5492927,-0.28384003,0.004749036,-0.16839574,0.48521087,-0.15336698,0.34923893,0.59215224,-0.19032685,-0.25770792,0.11398783,0.06659472,-0.14821154,-0.2190805,-0.21684858,0.19745229,-0.59369475,0.10110934,-0.12462359,0.7098525,0.10503985,-0.59493434,0.16947842,-0.6007277,0.094177015,-0.03751505,0.42607918,0.6712479,0.56815875,0.2056271,0.6573789,-0.26488116,0.13972493,-0.18614693,-0.37469414,-0.05105962,-0.20024982,-0.09726964,-0.5537936,0.019550836,-0.14172404,0.023969078,0.09489254,0.39593416,-0.4244004,-0.13318844,0.12650457,0.9392621,-0.25814256,-0.07322916,0.90723586,0.95564485,0.93041724,0.010380711,1.0741291,0.07854128,-0.24167165,0.010374213,-0.038443826,-0.69439113,0.37117118,0.38147795,-0.06445358,0.1604147,0.09015458,0.030513462,0.39565527,-0.49016038,-0.15246935,-0.22305141,0.115164265,0.19175181,-0.048464026,-0.42894545,-0.24996354,-0.0062009236,0.110805474,0.18591902,0.20287329,-0.0891911,0.70799994,0.04499708,1.4782046,-0.046760283,0.07704648,0.15270843,0.4093014,0.29379368,-0.1810015,-0.09931063,0.36237755,0.2938122,0.24356559,-0.5418756,0.1760184,-0.1714675,-0.44520998,-0.1986215,-0.31198442,-0.16841976,0.010870429,-0.36407477,-0.2755188,-0.2979592,-0.21778177,0.4416367,-2.6764894,-0.11187867,-0.10043941,0.3473264,-0.23461638,-0.2564901,0.07333433,-0.51076615,0.3733893,0.2366165,0.5199806,-0.5634556,0.36460343,0.43326098,-0.6738115,-0.12562199,-0.53675056,-0.1031287,-0.019928435,0.39985096,-0.07049287,-0.12854756,0.048628107,0.13368014,0.65035325,-0.051136248,0.19330803,0.4121248,0.45282847,-0.057902746,0.6349426,-0.06692327,0.4910401,-0.3376568,-0.19004913,0.24809471,-0.14280699,0.23016204,-0.069787405,0.118954286,0.6081974,-0.51391447,-0.8724981,-0.6959298,0.07572206,1.1889324,-0.31696793,-0.57351816,0.21979348,-0.38769487,-0.28368396,-0.06358978,0.47093016,-0.00127636,0.13276632,-0.6714306,0.08019101,0.005761524,0.2675327,0.018037712,-0.20537163,-0.5020725,0.78870517,-0.07493957,0.49518237,0.35864097,0.18892236,-0.38837475,-0.42196515,0.055517457,0.86305976,0.4285628,0.12466355,-0.20834762,-0.20790055,-0.34878814,-0.099271625,0.07813946,0.67005485,0.49780378,-0.074161485,0.24224962,0.269664,-0.04521371,0.11427932,-0.16806558,-0.20773599,-0.19123513,-0.13315918,0.52626723,0.6278713,-0.0044520735,0.60659343,-0.06312408,0.35278538,-0.1536257,-0.5944075,0.5661116,1.1793141,-0.29148388,-0.39774862,0.59524035,0.45392278,-0.11834066,0.31965357,-0.38514563,-0.4219335,0.51665014,-0.14764246,-0.6969513,0.19229737,-0.18891147,0.099532045,-0.8545329,0.17494407,-0.24774148,-0.6854637,-0.63568443,-0.11098453,-3.0415952,0.29714182,-0.3251955,-0.25824437,-0.3056582,-0.25856435,0.0919319,-0.472747,-0.4796931,0.19035257,0.11151654,0.80422235,-0.18876567,0.25153244,-0.23104115,-0.42100954,-0.26207468,0.07203736,0.1929758,0.26506868,-0.13791515,-0.4897352,-0.079101495,0.010605614,-0.42961273,0.00659058,-0.62900037,-0.31362528,-0.18754965,-0.42704365,-0.3024132,0.634934,-0.1736054,0.038235333,-0.22624503,0.12756103,-0.012824804,0.31674257,0.062283278,0.1542545,0.031854816,-0.05599251,0.11675139,-0.28857034,0.34594,0.01754173,0.28961307,0.17495495,-0.13536507,0.22197765,0.4281296,0.673067,-0.09848591,0.8946384,0.3557745,-0.051335033,0.25058717,-0.01298527,-0.4553166,-0.44845322,-0.13293554,0.11911713,-0.39544335,-0.41141206,0.012760725,-0.32273757,-0.8489985,0.6112314,0.06622154,0.06990971,-0.0065580765,0.342099,0.5887691,-0.38875973,-0.08074211,-0.11278479,-0.21602347,-0.51958853,-0.25735483,-0.59598273,-0.4104384,-0.1252279,1.0774473,-0.23108386,0.085431054,-0.043109704,-0.30394676,0.10816054,0.14022039,0.014452988,0.23401721,0.5182289,-0.18117765,-0.7362034,0.57735676,-0.23205242,-0.2140039,-0.6035227,0.43536958,0.66377485,-0.5731192,0.50176513,0.38952544,0.028106872,-0.34736067,-0.4624492,-0.05401847,-0.14525346,-0.2714283,0.3818237,0.2002335,-0.76276207,0.46954882,0.33183548,-0.19832698,-0.74874383,0.50577784,0.0022541105,-0.3464604,0.048843298,0.31777325,0.19817019,-0.084142014,-0.34921697,0.14347626,-0.353533,0.32995006,-0.041755475,-0.16725962,0.16475032,-0.24980752,-0.23037955,-0.7196614,0.016043102,-0.57029724,-0.2607694,0.3160217,0.10015877,-0.024508577,0.25669882,-0.0031227907,0.37574828,-0.31129602,0.034008123,-0.22737534,-0.22592792,0.33275133,0.4653874,0.44922963,-0.4562841,0.72742844,0.1033491,-0.15784496,0.022618754,0.17286949,0.38181964,0.14783154,0.6288766,-0.010391688,-0.11650387,0.25906983,0.6363865,0.14211649,0.4300732,0.055507865,-0.059926152,0.17453831,0.06094826,0.2894097,0.06658185,-0.7415937,0.030948253,-0.40560997,0.104990646,0.5036578,0.08897953,0.35140228,-0.026618497,-0.3684293,0.002396672,0.079239585,0.023105705,-1.4347513,0.3163578,0.28603584,0.94456404,0.30388457,0.07232679,0.005174885,0.9007786,-0.14821921,0.01673893,0.23103374,0.16541265,-0.29862526,0.5202902,-0.8547982,0.47544768,-0.010586963,-0.09476168,0.05211117,-0.13159695,0.35974684,0.9083798,-0.13435236,0.013691334,-0.020307887,-0.387651,0.19645816,-0.49770486,0.053088687,-0.54291713,-0.40148017,0.6223317,0.4539161,0.3913613,-0.28499362,0.0145843625,0.16821623,-0.19122744,0.12462668,0.18961708,0.13186435,-0.13049738,-0.7031642,-0.05353803,0.49712142,0.015390378,0.28726447,0.08366615,-0.07655967,0.28192568,-0.10357663,-0.060847513,-0.08006088,-0.596085,0.06684343,-0.28765365,-0.4501222,0.39023933,-0.2499447,0.16220742,0.21069056,0.0015061438,-0.22035758,0.40272808,-0.013576571,0.826267,0.16829588,-0.04577375,-0.29044282,0.13859108,0.06464608,-0.1718092,0.06588959,-0.2088144,-0.045055132,-0.5799816,0.4026559,-0.17306967,-0.29467052,0.17839834,-0.16376455,0.05626773,0.5042953,-0.060333345,-0.031225089,0.035273936,-0.062563956,-0.26209316,-0.3712675,-0.060565032,0.28469867,0.2339745,0.12382946,-0.05488003,-0.040360052,-0.23828039,0.41487673,-0.03385853,0.55105025,0.28482893,-0.01035914,-0.4102207,-0.15969871,0.050399594,0.60903764,-0.11549787,-0.10650538,-0.30834234,-0.45039564,-0.28427702,0.039619997,0.03380561,0.25689378,0.021686962,-0.07205956,0.801562,-0.12195086,1.1495228,-0.0439199,-0.43100995,0.20937008,0.4721336,0.03856606,-0.013737705,-0.2771076,0.8573398,0.45341483,-0.022125328,-0.05775019,-0.4032826,0.12594181,0.14417258,-0.1837595,-0.24836849,-0.023196196,-0.44728297,-0.3004497,0.24792224,0.28602618,0.23537788,-0.12565778,0.05258546,0.46021497,-0.09161997,0.30591747,-0.5218448,-0.20511553,0.32232597,0.19606476,-0.0063251695,0.10880898,-0.51008296,0.38486403,-0.42771757,0.023259556,-0.19832096,0.19886754,-0.2871012,-0.18849991,0.2820458,0.03307325,0.35132775,-0.40550163,-0.236864,-0.30465043,0.49167174,0.3282196,0.14105366,0.54772097,-0.27053124,-0.02569725,0.05245154,0.44384667,0.72985005,-0.30092752,-0.058909725,0.39397806,-0.40981025,-0.46787256,0.446612,-0.36849064,0.0115879215,0.2086599,-0.12812431,-0.47624117,0.3433089,0.16778159,0.18598029,-0.024001356,-0.80663884,-0.014405612,0.37111154,-0.30549178,-0.18133119,-0.2740737,0.18528138,0.41788048,-0.07893287,-0.29773846,-0.0048763594,0.19437763,-0.03188677,-0.5637887,-0.11992476,-0.37766477,0.18446802,-0.080462284,-0.2585135,-0.22481337,-0.0012317201,-0.52195424,0.09836986,-0.07553817,-0.24264212,0.087500885,-0.18552354,-0.061981745,0.76812184,-0.33646834,0.09798553,-0.47220427,-0.47390258,-0.67025703,-0.27627963,0.31948662,0.051161256,0.09978245,-0.74382234,-0.087960504,-0.20207328,-0.26813272,-0.10720413,-0.46525913,0.38522908,0.067466974,0.33028418,-0.054514907,-0.7219676,0.43506008,0.042653166,-0.0957123,-0.5911731,0.51907176,0.026214957,0.81361973,-0.004415713,0.14103016,0.2825853,-0.5116668,0.02824824,-0.20166971,-0.27784353,-0.6620684,-0.059356563 +94,0.61645675,-0.46041796,-0.55795765,-0.24016047,-0.15515983,0.16658138,-0.04867841,0.61398596,0.27644876,-0.5459471,-0.31489208,-0.091094255,0.1642821,0.24682052,-0.1962602,-0.70256716,-0.060228884,0.20509957,-0.43671283,0.40089998,-0.30289456,0.15013462,0.015561094,0.4759139,0.13283832,0.21090285,-0.016020412,-0.112800635,0.06956624,-0.0760076,-0.14842753,0.35704458,-0.45978224,0.35085323,-0.07605611,-0.2680423,0.010706991,-0.5758602,-0.34238485,-0.7600479,0.3427538,-0.9761131,0.5871043,0.014773983,-0.27123505,0.2356609,-0.029301265,0.08089068,-0.2971582,-0.11525831,0.1819912,-0.12593645,-0.15162586,-0.26568818,0.06922453,-0.45151123,-0.5096216,-0.023219317,-0.3646239,-0.100488156,-0.30851486,0.14066362,-0.41583833,0.089758985,-0.13450225,0.7072329,-0.33633828,0.21411829,0.20846646,-0.4298928,0.32190266,-0.6866229,-0.17410187,0.039572142,0.28472877,-0.03811495,-0.26226714,0.20083873,0.28817034,0.45086455,0.0696277,-0.1870627,-0.12843464,-0.08857738,0.073179565,0.47053862,-0.11719421,-0.6443674,-0.17106962,-0.026227832,0.23748744,0.050296456,0.14916895,-0.15958859,-0.14172484,-0.013466503,-0.10622382,0.3779192,0.5185393,-0.24563785,-0.21608399,0.42111573,0.57408804,0.070477664,0.022996834,-0.10193742,0.06985637,-0.59962827,-0.25613263,-0.13122578,-0.36953643,0.5318803,-0.27104226,0.46289432,0.7359268,-0.11457762,0.044786066,0.20344515,0.13316895,-0.13725847,-0.4497186,-0.22605316,0.34643316,-0.4095069,0.08778864,-0.22527158,0.868753,0.16891275,-0.5845193,0.258647,-0.5607837,0.14222948,-0.115801595,0.5606114,0.652472,0.57548684,0.2788268,0.7746506,-0.40954852,-0.0066826493,-0.03889361,-0.34975505,0.05700776,-0.14877695,0.12694293,-0.53153247,0.035682816,0.05162907,0.046209723,0.060130496,0.3945004,-0.6131505,-0.19511072,0.05388537,0.9360258,-0.24946393,-0.0682716,0.7938065,0.9328814,0.7361043,0.034718018,1.2766175,0.16377951,-0.2823563,0.13903213,-0.11076612,-0.84216046,0.42536673,0.44573727,0.035389856,0.27124968,0.087004185,-0.19111653,0.60118884,-0.4940776,-0.04364411,-0.1433722,0.21983181,-0.012336224,-0.17827117,-0.66609234,-0.12300242,-0.04489377,-0.020760221,0.22591944,0.26133266,-0.13648735,0.5924285,0.08249227,1.5739703,-0.10288521,0.20309646,0.15573679,0.24581285,0.17092358,-0.086761154,0.004369676,0.37246695,0.50779927,0.22037745,-0.5950535,0.24422789,-0.26973173,-0.5033844,-0.23533809,-0.30031982,-0.17276101,-0.15292458,-0.3703858,-0.13483441,-0.18373875,-0.1659255,0.3016024,-2.6042268,-0.2992032,-0.10078186,0.51321584,-0.3254047,-0.31387672,-0.17118846,-0.38495186,0.34967816,0.22401492,0.6582565,-0.6409903,0.42519274,0.43907332,-0.6867953,-0.12736508,-0.5537875,-0.010416265,0.06553271,0.32733446,0.09997979,-0.14725469,-0.101880014,0.002693842,0.5531606,0.094429456,0.07462646,0.35433188,0.52493113,-0.06265678,0.35717812,-0.18876581,0.60732156,-0.3382294,-0.16802531,0.2869602,-0.37845734,0.28627264,-0.23112719,0.12860233,0.574799,-0.33369693,-0.877564,-0.7258335,-0.051366225,1.1037556,-0.28155088,-0.48807678,0.1441287,-0.4888405,-0.3016927,0.011479452,0.4845651,-0.19842307,-0.0025766094,-0.8349101,0.13624293,-0.179686,0.15029642,0.033583302,-0.21754289,-0.57732993,0.92633086,-0.03178292,0.62531203,0.34318927,0.23010999,-0.16587497,-0.40775195,0.08341378,0.9537819,0.4404389,0.15382437,-0.12448808,-0.024563977,-0.3877298,0.03759392,-0.02971159,0.81693006,0.528869,-0.0112320585,0.022986533,0.23682117,0.034993242,0.0972262,-0.094021976,-0.28617272,-0.2858522,-0.045253932,0.6187656,0.7569316,-0.36651865,0.28382078,-0.24965079,0.3950609,-0.08763999,-0.45694283,0.6589206,1.040108,-0.23957483,-0.30301937,0.81391406,0.3270368,-0.30198327,0.32170087,-0.63079053,-0.380016,0.3836451,-0.23643081,-0.50902146,0.12953776,-0.12264239,0.22139335,-0.96181685,0.31947693,-0.2567245,-0.58326864,-0.53712153,-0.068925135,-2.9462101,0.24452145,-0.41140306,-0.1263663,-0.3869027,-0.13978465,0.16833031,-0.8002362,-0.5474242,0.26075545,0.071264625,0.7078936,-0.10600408,0.17363043,-0.13276516,-0.29538116,0.0664879,0.12805781,0.12596369,0.20590198,0.02775643,-0.43932787,0.045741145,0.19716938,-0.4497477,0.22031541,-0.73231727,-0.5379469,-0.112283446,-0.5847549,-0.2643019,0.62725586,-0.17305286,0.040871024,-0.16749966,0.2544058,-0.18118744,0.20126565,-0.19771236,0.1941127,0.0016357402,-0.049436558,0.18758857,-0.21745543,0.44992137,0.036385555,0.49970445,0.25337592,-0.3169217,0.12804957,0.6186231,0.59125364,-0.07692974,0.8746433,0.4946877,0.013287552,0.23718882,-0.07402977,-0.48021522,-0.57840943,-0.34539166,0.15869047,-0.4650136,-0.29778102,0.08592341,-0.45584893,-0.9437273,0.51225996,0.1334473,0.15882115,0.063206166,0.35275736,0.7656104,-0.2969043,-0.15344554,0.09626195,-0.22200714,-0.60801965,-0.22728837,-0.6308724,-0.42940697,-0.061238233,0.9877405,-0.30181575,0.19539249,0.025136886,-0.14097947,0.03937305,0.21809776,-0.10188133,0.07353028,0.5552431,-0.0572432,-0.72397995,0.5571038,-0.22611682,-0.29012504,-0.59804946,0.25123975,0.5039959,-0.719495,0.56666297,0.47016883,-0.09280628,-0.35422006,-0.45407927,-0.1505612,-0.09947685,-0.14447646,0.47911295,0.30125925,-0.6711804,0.39822423,0.31522223,-0.2247687,-0.8019877,0.50467056,-0.19147182,-0.3675413,-0.16885997,0.42070755,0.081201576,-0.079598814,-0.0843547,0.11069619,-0.39672056,0.40769497,-0.041770607,-0.18241991,0.41392943,-0.12922849,0.0652318,-0.8611439,-0.20263839,-0.72485065,-0.19289792,0.33251712,-0.004437283,0.21418042,0.095087714,0.071447946,0.4442339,-0.4136481,0.013777654,-0.07584164,-0.42735338,0.30622822,0.43923745,0.4929252,-0.4843911,0.5771503,0.116143025,0.002598564,-0.05787013,0.2131538,0.4911625,0.023097,0.5774979,-0.22782741,-0.18198843,0.2117082,0.8386266,0.072987735,0.49349245,0.123672456,-0.035541743,0.14444272,0.010044818,0.28559712,-0.10599953,-0.7360024,0.0011509011,-0.32691172,0.03578933,0.5380612,0.122956075,0.35892388,-0.16693139,-0.39041385,0.03133085,0.24218625,0.30267692,-1.3557087,0.4212863,0.19311953,0.95497435,0.2402069,-0.033804253,-0.1288883,0.81614274,0.030933836,0.13130033,0.3366849,-0.11983483,-0.45916668,0.6174093,-0.74189615,0.27387413,-0.116702974,0.06412833,0.039852846,-0.10900104,0.29924706,0.8027444,-0.1898105,-0.10358154,-0.07657063,-0.4487852,0.32552445,-0.51268595,0.06874592,-0.6404133,-0.2264747,0.60755664,0.66681415,0.38454416,-0.2593748,0.022635581,0.21539557,-0.0146226585,0.20100725,0.106332935,0.069499664,0.044198632,-0.83753973,-0.16201536,0.49440685,0.21536422,0.36006573,-0.085951604,-0.15761615,0.36028445,-0.21778542,-0.09835618,-0.12916426,-0.61718225,0.03471896,-0.4271276,-0.6660967,0.5383389,-0.01171944,0.08562996,0.15744622,0.12226955,-0.25771448,0.29452592,-0.062290013,0.9998005,0.22688407,-0.32553864,-0.4893731,0.17576139,0.16033205,-0.26087758,-0.04479435,-0.36214757,0.10102429,-0.5576181,0.5478142,0.028053612,-0.3284317,0.1869189,-0.20743327,0.073490314,0.5089664,-0.16923366,-0.11690989,-0.20829259,-0.14503352,-0.29852772,-0.31767654,-0.08005767,0.21692431,0.32495347,0.24724074,-0.20971294,-0.13543218,-0.343083,0.40763915,0.2676495,0.3583865,0.4416181,-0.0466308,-0.20424734,-0.17540692,0.3930955,0.49858215,-0.041678157,-0.32596555,-0.38008738,-0.6423937,-0.342844,0.12451607,-0.0254856,0.4028963,0.04220611,-0.022926465,0.80779904,-0.08857691,0.9259376,0.010249969,-0.33438182,-0.043861587,0.6333903,0.0835092,-0.057891935,-0.29681367,1.1059386,0.46900162,-0.06598795,-0.04652646,-0.5488635,0.061293423,0.2355767,-0.21506691,-0.108930565,-0.18016827,-0.6962976,-0.32361016,0.21109508,0.3568283,0.2443068,-0.07100671,0.05116639,0.2965679,-0.06745609,0.28825676,-0.6200686,-0.23048945,0.28468904,0.16472603,-0.022952681,0.17599046,-0.46478903,0.35354233,-0.6311611,0.17584342,-0.31859317,0.09898496,-0.32339427,-0.15909135,0.22435792,-0.044813734,0.38298646,-0.43300268,-0.42106447,-0.19653483,0.39081287,0.28121662,0.006789468,0.65397495,-0.2218486,-0.06316022,0.20260721,0.6140699,1.0285549,-0.22342853,0.30479738,0.4889412,-0.4078733,-0.6568773,0.29878744,-0.24878246,0.26184022,-0.005557651,-0.19069023,-0.6581936,0.32659414,0.1919288,-0.0016728739,0.009995244,-0.69163984,-0.18683958,0.30111814,-0.3881012,-0.05376482,-0.14190185,0.048460543,0.46995234,-0.22265632,-0.2931148,0.09227172,0.2953312,-0.063745014,-0.55851966,-0.20734668,-0.51398164,0.20344372,-0.038366787,-0.38641453,-0.14952444,-0.04674158,-0.45880246,0.24389225,0.037532706,-0.3004996,0.14367412,-0.3733244,-0.0990093,0.80659056,-0.07422546,0.1537071,-0.6486149,-0.2689487,-0.8015637,-0.3750418,0.38266015,0.034950152,0.072919995,-0.6285185,-0.07939301,0.001777033,-0.045202803,-0.27228522,-0.40466246,0.477582,0.17757763,0.5771463,-0.040402666,-0.8401472,0.20937197,0.052244544,-0.2117203,-0.6287882,0.52835494,-0.052977253,0.84292716,-0.0746473,0.16735947,0.25819874,-0.56046945,-0.23958308,-0.19617552,-0.21684234,-0.6876829,0.04551394 +95,0.593073,-0.2695653,-0.5241764,-0.25934818,-0.4101768,0.23778161,-0.08965404,0.5291154,0.38339078,-0.23483127,-0.0522639,-0.03809532,-0.08904313,0.5538491,-0.16278069,-0.7006146,-0.1373658,0.20010744,-0.5676233,0.35988906,-0.46866876,0.27431577,0.012823215,0.48378214,0.14982356,0.23535344,0.22428623,0.19119498,-0.021622254,0.011263852,-0.17173107,0.26102078,-0.48165572,0.266835,-0.03457504,-0.36579162,-0.20761254,-0.4059614,-0.13079695,-0.69716865,0.19403876,-0.67998576,0.43146434,-0.16544813,-0.48901683,0.13106655,0.10087526,0.24095082,-0.35341412,0.11526395,0.03747864,-0.12227484,-0.050554592,-0.052876078,-0.3979247,-0.4811545,-0.59376174,0.036164615,-0.47597584,0.0214878,-0.24445692,0.27028042,-0.22054416,0.10600912,-0.14389865,0.33741075,-0.40583882,0.028179046,0.32938847,-0.30621415,0.068953566,-0.40504345,-0.117126666,-0.13298513,0.14795893,0.16582854,-0.33023542,0.14332877,0.40267226,0.5244487,0.14814717,-0.23385416,-0.3191781,0.02338609,0.032969404,0.43651676,-0.09214856,-0.06868781,-0.39553207,-0.20127942,0.40025282,0.19964978,0.091786295,-0.4457752,-0.014163183,-0.1325524,-0.24831852,0.10711681,0.3649395,-0.47295988,-0.1693256,0.41637406,0.40838793,0.043391116,-0.14918078,0.22123753,0.0140863545,-0.6267048,-0.21767172,0.13953222,-0.03194274,0.42316717,-0.20388132,0.17288898,0.5203879,-0.06439306,0.019245319,-0.15965192,-0.00094912143,-0.0882724,-0.42226383,-0.16395895,0.26443428,-0.3848054,-0.09852537,-0.18133661,0.56781584,0.10055388,-0.69008315,0.33983758,-0.4281685,0.17245173,-0.1122889,0.46359542,0.91244566,0.48198432,0.07675339,0.8947248,-0.46557984,0.08985028,-0.25451186,-0.21937051,0.21560471,-0.20535623,0.0038121296,-0.5203022,0.2956151,0.0028970242,-0.13514496,0.2686074,0.35594648,-0.5223666,-0.23898484,0.074244455,0.56138355,-0.4137077,-0.21242927,0.8360198,0.8875031,1.0651584,0.07751954,1.4109445,0.41137645,-0.031582512,0.032700315,-0.09194369,-0.47862613,0.22183107,0.29387963,0.030891657,0.526976,0.042370442,0.02539318,0.6482894,-0.06104984,-0.056856595,-0.046695895,0.18077832,-0.011386137,-0.06663524,-0.40194318,-0.40920746,0.19511054,0.12743062,-0.055383243,0.24017951,-0.22603747,0.5515015,0.05582911,1.4645729,0.05629484,-0.03283385,0.08001251,0.17970729,0.33950794,-0.3586416,-0.125411,0.25145373,0.3729072,-0.07465618,-0.5562949,0.14160545,-0.17118236,-0.40051684,-0.0931468,-0.3463566,-0.14907001,-0.07814927,-0.561129,-0.21133529,0.021743078,-0.24220484,0.40561575,-2.364536,-0.27292943,-0.19456798,0.22934459,-0.18692422,-0.43090898,-0.34909552,-0.34744868,0.11324703,0.43420455,0.26308104,-0.5182356,0.33185908,0.27287915,-0.4501829,-0.0702142,-0.6426502,0.051595267,-0.05121893,0.21922612,-0.151405,-0.16713089,-0.15836889,0.3098556,0.71034116,0.06524349,0.007701383,0.44699442,0.44751498,-0.022547612,0.5837355,0.04585397,0.6185219,-0.35331365,-0.26658788,0.45590037,-0.50015867,0.3998353,0.21868198,0.21424752,0.4314597,-0.4168272,-1.1030991,-0.6536379,-0.2615356,1.4697222,-0.4602568,-0.40259588,0.28308517,-0.19435705,-0.26009843,0.07564481,0.39325368,0.04965685,0.009785705,-0.8020025,-0.10334039,0.103111714,0.21214125,-0.0778496,-0.12735674,-0.21471442,0.6986332,-0.22451147,0.51760757,0.424116,0.10643571,-0.056457818,-0.5443998,0.039802905,0.82590866,0.37811607,0.13753264,-0.11856507,-0.15254411,-0.2563426,-0.048244953,0.2516607,0.5501574,0.627269,0.026094029,0.22112186,0.35862207,0.041973565,-0.014417162,-0.066250086,-0.2459707,-0.15326221,0.21440373,0.6024629,0.6947285,-0.06933044,0.28501415,-0.1555662,0.23390564,-0.1802457,-0.69390744,0.49811953,0.9104699,-0.23913305,-0.3067097,0.68460625,0.3577634,-0.27516705,0.42810455,-0.5628256,-0.27038598,0.4106655,-0.10225996,-0.26897126,0.06683069,-0.2907572,-0.021860095,-0.9164596,0.18917105,-0.037623663,-0.4535909,-0.43484512,-0.2368887,-3.6563246,0.28575557,-0.03615249,-0.2500644,-0.016289968,-0.17907864,0.46781966,-0.5980249,-0.61893994,-0.006095501,0.014203728,0.42742538,-0.15873724,-0.027482899,-0.36556017,-0.28382307,-0.23878011,0.09000837,0.07890119,0.3070812,0.08840489,-0.50595635,-0.09416516,-0.22023326,-0.56635445,0.0082938885,-0.68409115,-0.4662228,-0.19509673,-0.3899231,-0.09555537,0.6319134,-0.49198386,-0.02728812,-0.19653927,0.086210184,-0.23003721,0.26303184,-0.08286308,0.10213053,0.1407561,0.0028101872,-0.069382586,-0.21737121,0.23148704,0.18110187,0.27443603,0.3013256,-0.27428028,0.16930628,0.7080841,0.66924673,-0.15912089,0.7645311,0.32723516,-0.023844473,0.26633307,-0.0811009,-0.13760394,-0.5121058,-0.3198268,-0.25508714,-0.5849605,-0.33786318,-0.015525782,-0.2608325,-0.9621916,0.46505064,0.038258977,0.14068817,-0.15635513,0.23089622,0.43109336,-0.21477762,0.16943318,-0.17176367,-0.34932172,-0.46371108,-0.5528502,-0.6136552,-0.600977,0.37931168,1.3383683,-0.18834393,0.094475545,0.005649608,-0.3996633,0.048681714,0.24577412,0.12343414,0.14979002,0.2706918,-0.19036414,-0.60622936,0.22602159,-0.1933326,-0.097551756,-0.57825905,0.28819272,0.6675044,-0.54856133,0.64213663,0.24134383,0.24686936,0.20950468,-0.5823984,-0.3017483,0.0018051083,-0.18759903,0.7724097,0.36795527,-0.7497304,0.5340527,0.1857833,-0.27229017,-0.616498,0.40045363,-0.089319296,-0.03001821,-0.044012766,0.36519983,0.20577475,-0.1414896,-0.14210898,0.17822704,-0.47249568,0.22274722,0.42348832,0.07661277,0.29999927,-0.061475523,-0.03768201,-0.7818422,-0.10246555,-0.5135821,-0.31564295,0.0969644,-0.03418978,0.0540784,-0.013327878,-0.06985451,0.38300925,-0.30015442,0.085855536,-0.04108751,-0.30153733,0.5720645,0.53907204,0.38246933,-0.3278747,0.4178921,0.11800218,0.11721008,-0.10082451,0.0024169593,0.4248118,0.3037114,0.34599993,-0.25253013,-0.109595425,0.21450886,0.4643243,0.14800093,0.20726433,0.0070600417,-0.28343165,0.26080656,0.2640886,0.16598329,-0.22287995,-0.24007331,-0.059712168,-0.13517159,0.2917953,0.5435498,0.13824813,0.4570581,-0.05959574,-0.1650295,0.29435068,-0.0563002,-0.042655963,-1.2689792,0.26249927,0.09402088,0.6218245,0.5139028,0.026997007,-0.020257326,0.46997792,-0.25423425,0.050398268,0.50429475,0.02050259,-0.45928413,0.59626895,-0.7504606,0.44658047,-0.20826513,0.030999573,0.22524124,0.4269528,0.6333835,0.8374215,0.08025089,0.06329664,-0.004917606,-0.21525823,-0.04621438,-0.36237332,0.020423997,-0.61479545,-0.38373178,0.6449509,0.4322275,0.4824541,-0.4809379,-0.120147064,0.047667596,-0.09929628,0.13060562,-0.12928256,-0.0046256687,-0.1566069,-0.66067797,-0.18647641,0.47772238,0.027687443,0.086121716,0.075792745,-0.49030697,0.24577919,-0.22661592,-0.10627646,-0.039544668,-0.72044724,-0.20926104,-0.22417076,-0.5109977,0.25380114,-0.39837354,0.08381391,0.19675353,-0.00127159,-0.3448052,0.11088507,0.024174277,1.0703495,-0.08690218,-0.04147238,-0.25948098,0.26974726,0.3009707,-0.2408384,-0.019827275,-0.36765197,-0.004263424,-0.50616753,0.34825084,-0.04776693,-0.22820187,0.33693966,-0.016197696,0.13155772,0.39533728,-0.2965573,-0.074277155,0.050122913,-0.06175437,-0.3242516,-0.20930305,-0.3741676,0.3357849,-0.13349469,-0.009616852,0.081469044,-0.124128394,0.037060622,0.3733793,0.095993154,0.11156316,0.34130585,-0.10470764,-0.4099209,0.1851427,0.00824376,0.42831233,0.15696438,-0.2544015,-0.5133197,-0.40293965,-0.25745046,0.17878371,-0.22462183,0.20718978,-0.10903588,-0.43212736,0.8859971,0.15491277,1.243986,-0.14378029,-0.42891264,0.15869583,0.49570325,0.14825621,0.06691691,-0.21078466,0.7401351,0.592987,-0.25105196,-0.18443131,-0.4019415,-0.4114885,0.21956825,-0.30692765,-0.16576363,-0.14855647,-0.7034075,-0.26859984,0.16849259,0.040491335,0.2092484,-0.07511728,0.15922168,0.1975949,0.052277107,0.43127787,-0.3356067,-0.099523656,0.15949756,0.50744057,0.00069750275,0.17754427,-0.373456,0.40866348,-0.8502201,0.20693453,-0.40113178,0.11165127,-0.1560104,-0.23894738,0.15843152,-0.010576863,0.2085447,-0.26494887,-0.30971998,-0.2858322,0.815258,0.12778005,0.1689635,0.650499,-0.36994478,-0.02460466,0.21655042,0.37158436,1.16746,-0.232234,0.037357923,0.41854948,-0.24072586,-0.6181306,0.18903828,-0.34560373,0.20649734,0.0114868,-0.31867966,-0.39776373,0.3717378,0.18394913,0.10768439,0.16801156,-0.4790492,-0.03640129,0.34136707,-0.2677255,-0.23422615,-0.35568288,0.23701897,0.5200685,-0.4148739,-0.527082,0.044677235,0.322303,-0.13324247,-0.6500088,0.0023238086,-0.4119689,0.3263485,0.17175205,-0.39012784,-0.09687675,0.101896636,-0.3629475,0.022041788,0.20596997,-0.20628284,0.15419921,-0.28746462,-0.09769047,1.0083414,0.15643848,0.165684,-0.6801316,-0.6117205,-1.0411475,-0.34978515,0.3187752,0.2430253,-0.15129766,-0.54577124,0.028402401,-0.25459936,-0.1897675,-0.027268197,-0.39736694,0.48555344,0.11506212,0.4316389,-0.06457151,-0.87189376,0.065699644,0.14894351,-0.13135494,-0.41454074,0.5199032,-0.18375537,0.8567197,0.1191349,-0.011108231,0.07459,-0.63192934,0.36800227,-0.35107872,-0.1992115,-0.5243596,-0.0032647343 +96,0.36999068,-0.1884877,-0.43149695,-0.1429296,-0.27352878,0.015251493,-0.06810074,0.36876985,0.29973993,-0.18357147,-0.088573016,-0.21211568,0.049550377,0.30406502,-0.081771016,-0.66513973,-0.13488083,0.11061971,-0.4829978,0.42071632,-0.5750509,0.40348947,0.0012497246,0.3468278,0.04474179,0.3884086,0.17332943,-0.1804517,0.06836931,-0.106493406,-0.28666118,0.35398236,-0.4434133,0.039581284,-0.15743016,-0.2076524,0.17232084,-0.40119582,-0.32447207,-0.6751583,0.1346384,-0.8842767,0.5624692,-0.052570544,-0.068947665,0.08525896,0.16996232,0.2949328,-0.37334403,-0.018347597,0.2617075,-0.13732332,0.030469673,-0.33478266,-0.09142256,-0.32104194,-0.39245644,-0.013916981,-0.5025779,-0.32972223,-0.046332326,0.17440195,-0.3617964,-0.101058535,-0.101323344,0.2152061,-0.41233405,0.20344439,0.39832094,-0.27164608,0.26232764,-0.45957288,0.0046383156,-0.032576498,0.38761953,-0.13728014,-0.117573336,0.39008936,0.36531734,0.3237892,0.19848005,-0.2878502,-0.1347819,-0.2683681,-0.014083457,0.5478504,-0.19625948,-0.39286515,-0.1479955,0.18414968,0.20154282,0.33987448,0.05523892,-0.1325003,-0.20841318,-0.18384627,-0.24954475,0.47135028,0.46356755,-0.34006944,-0.27068108,0.2857388,0.5379885,0.31114239,-0.19017534,0.062566854,-0.012747826,-0.50834477,-0.14835475,-0.02107238,-0.11378813,0.553525,-0.10325429,0.18891732,0.9240283,-0.101354994,0.0919632,-0.040440954,0.029829752,-0.22362725,-0.32357553,-0.049265847,0.13740298,-0.5540549,0.122115724,-0.113836095,0.7744511,0.13835046,-0.6120059,0.3753482,-0.578725,0.14532545,-0.105144136,0.5798508,0.42557326,0.31289938,0.48815396,0.72400934,-0.432439,0.19816151,0.082151204,-0.51065755,0.1305139,-0.2586536,-0.06312737,-0.53140473,0.26006457,0.019747138,0.20263419,0.14361759,0.10242021,-0.6085482,-0.0090640765,0.25199273,0.82130057,-0.2918987,-0.038574696,0.5301163,1.030499,0.8273024,-0.103917226,1.0914344,0.18895045,-0.3114453,0.18932195,-0.21021827,-0.7037602,0.10430206,0.42269,-0.24152447,0.40449983,-0.0014791489,0.002462387,0.20450766,-0.2577019,-0.056861162,-0.013489747,0.2018705,0.09702692,-0.033248164,-0.5728578,-0.28303364,-0.07262693,-0.15690432,0.1681685,0.2367826,-0.123905025,0.40531114,-0.04629509,1.4850191,0.100635834,0.0735884,0.14015283,0.6372346,0.29412574,0.059455432,-0.123222,0.5664606,0.36955318,0.059491396,-0.45737317,0.24195835,-0.29458803,-0.43360576,-0.022611413,-0.42684683,-0.12388821,0.06252556,-0.39106777,-0.07431245,-0.13553284,-0.10656263,0.42893213,-3.0725484,-0.24701037,-0.071384296,0.21836019,-0.36111543,-0.07529904,0.0029771328,-0.4782532,0.121534966,0.3257324,0.45108038,-0.6944571,0.3926032,0.434208,-0.46577758,-0.22230142,-0.63710076,-0.17498134,-0.055750143,0.46757492,0.058115944,-0.035388894,-0.18114834,0.241769,0.6332114,0.0477102,0.16933234,0.3156051,0.44657287,0.07781908,0.5407165,-0.084652394,0.5752041,-0.16389653,-0.04296671,0.3262485,-0.2534507,0.39358208,-0.038921077,0.024364782,0.5356633,-0.3522519,-0.8281968,-0.40188402,-0.27426702,0.9985705,-0.42458805,-0.20647268,0.16105756,-0.3041867,-0.051024403,-0.010797208,0.49324596,-0.027005501,0.06468194,-0.578014,0.13634463,-0.051433966,0.037991684,0.05426274,-0.024398541,-0.2310706,0.6572177,-0.007555452,0.5563818,0.30853945,0.07973055,-0.12265184,-0.42582884,0.008982497,0.6833533,0.34004688,0.055458948,-0.17413053,-0.23794772,-0.23673758,-0.2119503,-0.001877597,0.4828553,0.78371876,-0.054048773,0.16164424,0.3248501,0.08195756,-0.0011208515,-0.110939935,-0.07727667,0.11943987,0.012961384,0.49117598,0.73711526,-0.17771152,0.44252217,-0.15075986,0.38765517,-0.1262771,-0.50195086,0.39813814,0.50131214,-0.23180436,-0.06750794,0.5003325,0.5089005,-0.4026488,0.44377992,-0.6048941,-0.18728119,0.7006181,-0.24906448,-0.42905694,0.3652045,-0.18990664,0.10299165,-0.9496602,0.21271311,-0.12765579,-0.25373703,-0.2952603,-0.08615817,-3.4796207,0.17271926,-0.18311314,-0.0990851,-0.29027253,0.032900997,0.23113184,-0.66601497,-0.5355475,0.12039192,0.180663,0.46459547,-0.098041855,0.17250305,-0.31827196,-0.16356412,-0.075806536,0.15667082,0.038753096,0.2797491,-0.33669084,-0.37416184,-0.09377648,-0.098945715,-0.47431868,0.21006751,-0.54966426,-0.4235721,-0.04472203,-0.5337502,-0.22488591,0.6166378,-0.29141548,-0.01800952,-0.2143455,0.013771033,-0.28489473,0.033926073,0.19424114,0.11225478,-0.07388054,0.08409492,0.101669416,-0.4019345,0.567126,-0.024848878,0.43951282,0.022899915,-0.015261799,0.03798121,0.55352265,0.45315394,-0.26630476,0.9595387,0.25446546,-0.07380208,0.3488788,-0.2743931,-0.30858153,-0.6533734,-0.43369657,-0.09490518,-0.368087,-0.4721517,-0.027802689,-0.328809,-0.68041915,0.7233881,-0.0010746042,0.37889385,-0.046276513,0.2405746,0.49182123,-0.29650414,0.0852201,0.06427566,-0.18180814,-0.5653427,-0.07643031,-0.69099534,-0.5194524,0.199456,0.81291664,-0.41956934,-0.0075482936,-0.14407982,-0.19787376,-0.08549523,0.03501405,0.18460126,0.36071804,0.4727813,-0.061823543,-0.58078545,0.57512337,-0.075982764,-0.21332608,-0.41532844,-0.12065307,0.55129755,-0.830622,0.5256742,0.28853977,0.010544691,0.04979964,-0.5221926,-0.20324616,-0.057700563,-0.20829588,0.47039083,0.08095515,-0.72754866,0.4224203,0.33903235,-0.4700752,-0.63603556,0.31115896,-0.16717033,-0.3118944,-0.07802848,0.27170315,0.21743473,-0.085862845,-0.06257992,0.13493125,-0.4577939,0.18693522,0.2908668,-0.060094845,0.26266426,0.03370654,-0.1662195,-0.7518526,0.051042598,-0.3853406,-0.3442439,0.31070134,-0.10592772,-0.0026562056,0.07608471,0.20368314,0.3417231,-0.3313133,0.10469704,0.14751354,-0.27207282,0.3121353,0.41893452,0.349618,-0.3724347,0.56462085,0.16309635,-0.08102355,0.14203878,0.0555176,0.49474794,-0.0074015735,0.27858356,-0.15023048,-0.20643435,0.3793402,0.81571734,0.15743461,0.36608607,0.015875021,0.08845603,0.35846946,0.01795326,0.08691718,0.26650122,-0.47219834,-0.05142502,-0.013249842,0.1486333,0.5099948,0.35306582,0.28660625,0.07390034,-0.25255802,0.057109367,0.23622447,-0.014853703,-0.9217336,0.24606265,0.32160175,0.767956,0.25933012,0.25104558,-0.12259261,0.68103623,-0.24813801,0.08687149,0.5263918,-0.085415006,-0.59798354,0.82700616,-0.5138717,0.47618893,-0.19322415,-0.06915736,0.14808664,0.13060229,0.3981676,0.7930959,-0.27594915,-0.07080719,-0.03352027,-0.2166508,-0.046029996,-0.44616738,-0.11058128,-0.35993645,-0.2491851,0.60861033,0.44230354,0.23909974,-0.19960709,-0.029459344,0.06688975,-0.06321707,0.2093164,0.0051645543,0.04482493,0.04534752,-0.49048546,-0.11555794,0.5395915,-0.0053581637,0.08982992,-0.33954963,-0.33759484,0.12008405,-0.23772821,0.03796401,-0.07010336,-0.60422325,0.049753617,-0.14496921,-0.6783749,0.5153526,-0.09191523,0.14612515,0.1721097,-0.085009225,-0.06476407,0.33627117,0.072808795,0.9032763,-0.0953423,-0.34450743,-0.3936109,0.1399126,0.100087926,-0.23301981,-0.025547974,-0.46059507,0.08030341,-0.38256982,0.56982845,-0.090453975,-0.37895766,0.03822239,-0.25448424,-0.046654653,0.47699255,-0.03361296,-0.11940331,-0.21662836,-0.20303787,-0.4002817,-0.09069085,-0.3032914,0.15127356,0.38528094,-0.16813152,-0.13509439,-0.24748841,-0.10581599,0.42667878,-0.05706995,0.44266683,0.15733248,-0.100021966,-0.14858052,-0.012212785,0.25135532,0.39548212,0.026058512,0.06427717,-0.35093826,-0.29287368,-0.24304155,0.18816304,-0.15545869,0.309912,0.052306235,-0.22457238,0.95919037,-0.06871939,1.151403,0.058168158,-0.35570228,0.0875901,0.62541693,-0.14835118,0.111513644,-0.365876,1.0230514,0.4399751,-0.0657754,-0.18588609,-0.37547243,0.02658665,0.30638486,-0.30809963,-0.03349367,-0.044793926,-0.42004877,-0.3260494,0.352297,0.19989564,0.220038,0.022526765,-0.09342639,0.016477482,0.056539785,0.46622765,-0.5167635,-0.35049975,0.14305474,0.21575658,-0.09640253,0.025808327,-0.4091687,0.5329996,-0.51597035,0.22792587,-0.53593856,0.027893197,-0.3196077,-0.3429815,0.09164463,-0.22509848,0.36287433,-0.39207813,-0.44151098,-0.10143585,0.2845049,-0.033247232,0.16851506,0.5163466,-0.31270495,0.037476517,0.09560121,0.49254435,1.0880073,-0.31906685,-0.055681884,0.41306925,-0.37091148,-0.6034813,0.24093586,-0.31058267,0.050713357,-0.16077493,-0.38323906,-0.3706274,0.24767913,0.25228876,0.23335028,0.075855225,-0.5502083,-0.074292704,0.39074644,-0.35052842,-0.24758412,-0.24135615,0.24285531,0.7431646,-0.24681406,-0.3607748,0.15826175,0.07948944,-0.26612344,-0.624167,-0.091879115,-0.16377552,0.36721796,0.037115995,-0.23873742,0.018788831,0.14550118,-0.38633516,0.2084842,0.29915842,-0.3989835,0.16529536,-0.2591407,0.014811167,0.93900114,-0.250407,-0.18876573,-0.6817008,-0.5480614,-0.8578813,-0.5769244,0.3632968,0.15501234,0.083837636,-0.37070853,0.08783371,-0.0086810505,-0.25782764,-0.01648277,-0.4315809,0.38523296,0.12841102,0.43670985,-0.25766137,-0.9550618,0.17763089,0.15932342,-0.19727145,-0.7297445,0.5998317,-0.15013824,0.7613591,0.0638347,-0.05074472,0.22619738,-0.28392172,0.05192965,-0.48057476,-0.06655253,-0.7550204,0.0431775 +97,0.72027135,-0.5156482,-0.5555413,-0.10228822,-0.34764153,0.027452115,-0.077757366,0.5677693,0.1526527,-0.52034396,-0.043348476,-0.16345249,0.09534691,0.29221106,-0.09031188,-0.6844634,-0.035878576,0.29314637,-0.6594188,0.79546297,-0.34103665,0.39968476,0.24412444,0.20369506,0.18246458,0.17594269,0.16688432,-0.07389743,-0.06598212,-0.07396949,-0.24472152,0.16016711,-0.664023,0.2555517,-0.031435788,-0.4201241,0.09980367,-0.37592137,-0.2753846,-0.8901554,0.1345953,-0.87895006,0.45099849,0.22784501,-0.48444292,0.021208845,-0.07767318,0.30180964,-0.2405254,0.2585136,0.19848792,-0.084095426,0.03292058,-0.4926227,-0.08213161,-0.77164847,-0.5120599,-0.057874795,-0.51204544,-0.28563496,-0.17753641,0.091563694,-0.28837922,-0.11628935,-0.2592881,0.38368225,-0.41015932,-0.14976849,0.2902466,-0.2674312,0.27358764,-0.6265241,-0.11306659,-0.23276605,-0.09411616,-0.022291789,-0.27288538,0.36396858,0.15138854,0.64992404,0.107282385,-0.36947265,-0.16096362,0.025261866,0.060162924,0.43258557,-0.195963,-0.48734367,-0.2988886,0.050697003,0.24937187,0.07024937,0.25085035,-0.5028949,-0.011744736,-0.01673731,-0.2862354,0.3424751,0.5416127,-0.38724214,-0.26315612,0.21254751,0.6106187,-0.034401536,-0.072400905,0.041439854,0.008328984,-0.38888618,-0.2176061,0.3457716,-0.25401485,0.4996556,-0.20639078,0.11642702,0.6392142,-0.21944372,-0.058273647,0.14839146,0.18210067,-0.13678785,-0.30868912,-0.38442034,0.48726532,-0.6463268,-0.22292669,-0.4620313,1.0209141,0.20494689,-0.6134223,0.28489584,-0.5906901,0.15279917,-0.11591743,0.64164793,0.7370005,0.46237624,0.10975991,0.794974,-0.5189506,0.057655238,-0.15256375,-0.27013147,0.22349367,-0.4038056,0.046305604,-0.53373265,0.010347715,-0.18532775,-0.09768604,-0.08894027,0.75737804,-0.6813663,-0.22151782,0.1044084,0.681964,-0.40150067,0.02246858,0.67671233,1.005649,1.0146756,0.10850243,1.4301215,0.4486633,-0.26597655,0.29740673,-0.27444723,-0.80664474,0.22500212,0.5301739,0.00564522,0.45460337,0.02389708,0.013256825,0.38121092,-0.35445786,0.22325052,-0.360909,0.2932091,-0.20639347,-0.27895465,-0.6127764,-0.35723078,-0.11815907,0.13954449,-0.10492647,0.38663042,-0.27183163,0.34536663,0.071856834,1.5649737,-0.13501391,0.07895028,0.046878092,0.40023103,0.37719852,-0.16411819,0.07153724,0.4240401,0.38050053,0.17564607,-0.58128077,0.113455094,-0.36705878,-0.5057561,-0.28151083,-0.284831,0.14127839,-0.1025314,-0.51588887,-0.2905327,-0.04089541,-0.22862718,0.35814014,-1.9841676,-0.15869078,-0.16303554,0.3767126,-0.3425874,-0.34562972,-0.06539783,-0.51630485,0.283967,0.39291593,0.53010684,-0.7272066,0.28837162,0.4616598,-0.4377947,0.12699558,-0.68173474,0.00087094307,-0.253334,0.49240506,-0.0018513593,-0.27538496,-0.11748523,0.012743727,0.5911163,-0.09913191,0.09586123,0.424819,0.38943094,-0.16136405,0.4722045,0.16949655,0.38018054,-0.46074083,-0.30836862,0.49333194,-0.25392282,0.25397503,0.27227288,0.028910398,0.44342968,-0.62091887,-0.83563906,-0.5527939,-0.2305987,1.0480015,-0.31624207,-0.5371195,0.21762358,-0.19410166,-0.2692127,-0.16994146,0.3743953,-0.057761285,0.054966286,-0.767226,0.080998406,0.011749864,0.2543649,0.038355313,-0.046050474,-0.34588858,1.018065,0.017516986,0.5934672,0.1371464,0.14315842,-0.34745926,-0.518173,-0.037041888,1.3066934,0.4435938,0.20197336,-0.1933194,-0.23428766,-0.3992661,-0.028205963,0.17917068,0.5062891,1.0690348,-0.145361,-0.030951826,0.46444735,-0.13463107,0.022131413,-0.15133789,-0.37625188,-0.09563969,0.22151667,0.58335644,0.61276335,-0.060377844,0.40689704,-0.15922114,0.4657907,-0.12122222,-0.7385908,0.46951282,1.1759576,-0.12930416,-0.28662854,0.6737229,0.6148096,-0.49875456,0.6013082,-0.6680335,-0.5130074,0.35900962,-0.20879793,-0.39896187,0.40209836,-0.44071066,0.3870997,-0.97674465,0.5706758,-0.29880956,-0.3512629,-0.5414016,-0.25359124,-2.9133224,0.48186266,-0.19949096,-0.03263323,-0.050228912,-0.03205851,0.21197003,-0.63940233,-0.3730473,0.06258904,0.15038556,0.67738116,-0.02635485,0.06818487,-0.2863472,-0.4189148,-0.12428866,0.2345055,0.0007252051,0.16621813,-0.12412036,-0.47412056,-0.0840815,-0.16282529,-0.37405375,0.09388466,-0.8413278,-0.69522136,-0.30736732,-0.7922984,-0.32814166,0.7298645,-0.065069795,0.061408937,-0.14218283,-0.058194824,-0.034855705,0.32880422,0.052356925,0.17747651,0.03792184,-0.064625114,-0.18494055,-0.4913674,-0.0029100913,0.078453965,0.48326933,0.3238503,-0.36866358,0.21193537,0.7578946,0.6072288,-0.27679002,0.7882617,0.58773685,-0.17425348,0.41083512,-0.052671306,-0.28806388,-0.78657633,-0.29771557,-0.23154643,-0.5103989,-0.48580056,0.11988862,-0.33511826,-0.76840985,0.67294383,0.011631294,0.15162909,0.09708993,0.560138,0.4517366,-0.096444964,-0.14472303,-0.20223363,-0.35471377,-0.4502241,-0.25222602,-0.66379607,-0.41534027,0.34645218,1.1837071,-0.19566983,-0.0021807963,0.11505358,-0.016152106,0.107209876,0.068758756,0.055980977,0.22578049,0.40969527,-0.06315727,-0.5138601,0.5911576,0.0935767,-0.037712496,-0.23493539,0.20248765,0.6333724,-0.8497552,0.48404488,0.21550487,0.16123952,-0.032065667,-0.38943768,-0.103812605,0.18094055,-0.21692751,0.61616635,0.17092082,-0.724817,0.4218713,0.4216911,-0.32096562,-0.7643244,0.32347757,-0.19870806,-0.34764054,-0.324104,0.3773968,-0.040064447,0.12354919,-0.27586332,0.28701442,-0.62189853,0.14928345,0.41588593,-0.13028155,0.21065308,-0.20181176,-0.24880385,-0.7866395,0.4031568,-0.58889425,-0.40014124,0.3161855,0.011407744,-0.16257426,0.4058032,0.19708039,0.480077,-0.2199871,0.11853575,-0.017637419,-0.3373441,0.6585652,0.47557405,0.47764647,-0.48630458,0.49847597,0.07136725,-0.16317925,-0.45779002,0.095415026,0.46598747,0.2459147,0.38621685,-0.028375758,-0.11381699,0.48960415,0.9165218,0.17384961,0.56874394,0.20196079,-0.045777377,0.07228482,0.1613721,0.17507221,-0.015235195,-0.46094054,0.08356346,0.099561326,0.17319363,0.44590214,0.15986875,0.24872439,-0.19281743,-0.1829543,0.09237872,0.35216877,-0.044601362,-1.3908337,0.1841325,0.34071964,0.5822766,0.5154661,0.011667454,-0.10143794,0.5364147,-0.3232889,0.11229336,0.15462694,-0.2784516,-0.54788864,0.60737705,-0.6157304,0.30468518,-0.2094721,0.024223305,0.031278953,-0.06707193,0.5040072,0.9219285,-0.14391962,-0.008630935,-0.21544698,-0.2933383,0.24343918,-0.48334777,0.112966314,-0.53173214,-0.3978628,0.72046226,0.21794517,0.3542384,-0.1776858,-0.058116212,0.05637168,-0.25579044,0.40469885,-0.053954337,0.017440796,0.078445554,-0.6457856,-0.16848207,0.5427552,0.1290368,0.07330693,-0.029585348,-0.25763148,0.26757246,-0.20671386,0.029204251,-0.06720316,-0.82188284,0.055197183,-0.44971165,-0.38848525,0.54212075,-0.00933958,0.045166202,0.2821238,0.04940045,-0.43288487,0.23048621,0.21373719,0.7519877,-0.027439209,-0.31025183,-0.3412261,0.31238863,-0.02948186,-0.2901121,0.12773712,-0.23067744,0.24902162,-0.8888264,0.57085615,0.006579344,-0.502723,0.13730906,-0.15998395,-0.03464608,0.48695835,-0.21895386,-0.3140504,-0.17633039,0.0063581835,-0.11074511,-0.38327283,-0.08429694,0.33174375,0.08704858,-0.15190771,-0.09550008,-0.18420964,0.16326095,0.43274304,0.10036186,0.30486354,0.27824882,0.18570654,-0.42215484,0.24040574,0.30290776,0.38788503,-0.05444433,0.13678154,-0.22403899,-0.2886832,-0.45739776,-0.09743421,-0.24457113,0.38747075,0.23955576,-0.4130774,0.9137852,0.1220332,1.4594636,0.021369813,-0.39280093,-0.00084556756,0.662861,-0.015528409,-0.13717972,-0.33024603,1.069373,0.7323543,-0.16308092,-0.16291848,-0.5424329,-0.31219995,0.27791646,-0.2912304,-0.055959024,0.008786766,-0.80489856,-0.37180218,0.15799277,0.36275858,0.070515916,-0.032228094,0.17757264,0.27748802,-0.010745744,0.043472424,-0.53844196,0.031037632,0.1103154,0.14890414,-0.0031309037,0.16588773,-0.5838681,0.3088908,-0.8145981,0.33813015,-0.15299156,0.07082795,0.02691406,-0.3919358,0.16401598,0.078934185,0.29554516,-0.5568367,-0.4772655,-0.06159761,0.68689466,0.14817794,0.21484128,0.78658867,-0.37002024,0.16761266,0.11727472,0.42764813,1.2968905,-0.14036734,-0.18525317,0.20633017,-0.43286368,-1.0072829,0.40267828,-0.16770321,0.10147338,-0.03274935,-0.49921086,-0.6213197,0.27635235,0.3250249,-0.062027555,0.16735996,-0.6148546,-0.061467264,0.3649349,-0.41372225,-0.29984263,-0.27171853,0.32073742,0.60031354,-0.28593558,-0.4436982,0.22892404,0.22997127,-0.339963,-0.5394751,-0.2589417,-0.5448458,0.37011874,0.09720591,-0.34002215,0.15495092,0.12631035,-0.48743042,0.12408164,0.3856956,-0.3678473,0.1433251,-0.34676346,-0.07971363,0.988368,-0.048953313,-0.063889176,-0.5628736,-0.53570575,-1.0220385,-0.53792036,0.6114873,0.058367297,0.12483125,-0.67902946,-0.03382337,-0.14869884,-0.04457841,-0.028979944,-0.47366375,0.5209417,0.14309141,0.40464765,-0.12867375,-1.0023633,0.29364374,0.2664461,-0.113402575,-0.67063457,0.4957668,-0.23627582,0.824139,0.0928868,0.100741185,0.460943,-0.87204564,0.015373139,-0.28873044,-0.062018983,-0.6534332,-0.108205386 +98,0.33573636,-0.36332157,-0.50519204,-0.006817562,-0.3465965,-0.1787466,-0.23086952,0.42821687,0.19664551,-0.2553723,-0.036219638,-0.1230595,0.026605759,0.49008903,-0.03861252,-0.49202332,-0.14615212,0.29056528,-0.7009966,0.67043287,-0.34141907,0.1877681,-0.118726894,0.59545213,0.25749707,0.22742607,-0.025269572,-0.010561203,0.1693553,-0.09965867,-0.008195718,0.120439306,-0.5065405,0.14169037,-0.03577764,-0.35097244,-0.0924891,-0.45317534,-0.4201179,-0.7864107,0.37082475,-0.7259843,0.5158531,0.05490346,-0.35952565,0.21828939,-0.07863991,0.44971842,-0.29423752,-0.13476047,0.21587722,0.14465903,0.08938636,-0.26961187,-0.053032093,-0.32942107,-0.43836832,-0.064471774,-0.34188196,-0.10772959,-0.25583223,0.12567928,-0.21949063,0.09701269,-0.08346604,0.3530524,-0.4594514,0.20585157,0.21197708,0.029358694,0.3318238,-0.4704227,-0.11134941,-0.24166846,0.06873477,-0.08033379,-0.3476046,0.31768307,0.030226741,0.3489824,-0.19434078,-0.05993809,-0.12215997,0.05099473,0.119798504,0.5260953,-0.17919631,-0.3507557,-0.24760477,0.05993714,0.062752284,0.04563572,0.12994453,-0.5320102,-0.12928443,0.027136637,-0.16788308,0.40839943,0.4422598,-0.061673116,-0.09926926,0.31101295,0.48557132,0.41564545,-0.18146351,-0.048409883,0.034981024,-0.44413665,-0.13494302,0.054585304,-0.0654972,0.37898615,-0.09681442,0.2198441,0.60378414,-0.021537466,-0.27039775,-0.010532975,0.13828927,-0.08381714,-0.282175,-0.27204272,0.25137302,-0.41939113,0.22305004,-0.07567755,0.7152759,0.13860391,-0.80293846,0.3650873,-0.6100193,0.17873971,-0.16486247,0.4109749,0.74556303,0.42749676,0.08156937,0.67022896,-0.257056,0.13215618,-0.09865754,-0.29288033,0.095429696,-0.18317625,-0.2548251,-0.5353008,0.023935838,-0.08578622,-0.20321296,0.14189786,0.30309454,-0.48731115,-0.09893861,0.10156737,0.7403258,-0.3289897,0.21255244,0.68185943,1.0005487,0.92893136,0.21178494,1.0376346,0.27309835,-0.2707135,0.3087488,-0.12720248,-1.0188082,0.32425097,0.36431012,-0.09709423,0.33088169,-0.022281187,0.044701397,0.4387981,-0.35933742,-0.004753145,-0.3032915,0.1947967,-0.0019603074,-0.12695818,-0.42595598,-0.3049567,-0.118183196,0.11384435,-0.15490566,0.21042867,-0.3180659,0.33175758,0.12451119,1.6661813,-0.026649177,-0.0064633572,0.049259882,0.52687854,0.31778032,-0.36883172,-0.24669696,0.43022037,0.42827755,0.02439657,-0.6846071,0.16260253,-0.10052245,-0.45893627,-0.18089792,-0.28134447,-0.080339186,0.004785691,-0.52231985,-0.2474862,0.016165342,-0.106859244,0.36972114,-2.5126493,-0.06901001,-0.1167865,0.29707378,-0.23346137,-0.32354432,-0.036230475,-0.35174206,0.38705343,0.3108203,0.5192734,-0.58476657,0.31876284,0.4245344,-0.61621875,0.02418983,-0.5010478,-0.24012193,0.032261565,0.3324154,-0.061610866,0.18757561,0.07483613,0.29213366,0.37804276,-0.17063129,0.15936692,0.33254313,0.36522552,0.051442113,0.3671202,-0.023470726,0.43975988,-0.33434257,-0.16244781,0.24232452,-0.1859214,0.24894774,0.09714909,0.111117944,0.5510925,-0.63253963,-0.8010248,-0.47617906,0.026148716,1.0978013,-0.43732372,-0.43007132,0.29549077,-0.4774718,-0.23626217,-0.0590441,0.19537303,-0.15971582,-0.1695981,-0.86942154,0.10176473,-0.017436972,0.3227665,0.013023065,-0.09718746,-0.20397861,0.79968965,0.056968305,0.41323566,0.3070703,0.16314848,-0.19138026,-0.52293974,0.116453394,0.5319858,0.36239484,0.2350205,-0.26479325,-0.13900308,-0.3337668,0.008441337,0.14424,0.40852764,0.5958031,-0.09870535,0.17613734,0.2766411,-0.21391916,0.019041542,-0.19655064,-0.15758951,-0.1259518,-0.006943158,0.57331073,0.6960635,-0.15539487,0.38109016,-0.051545493,0.2590738,-0.033723865,-0.5718098,0.5798088,1.1323694,-0.11966749,-0.3885312,0.39708477,0.54077435,-0.21907358,0.35380667,-0.45931885,-0.12837756,0.5000402,-0.13846448,-0.3376275,0.21888244,-0.27015296,0.17207618,-0.8465804,0.20979223,-0.1734586,-0.47582445,-0.66894156,-0.03086446,-2.8110182,0.19575165,-0.26344585,-0.34370565,-0.24112909,-0.091815665,0.16898264,-0.42606825,-0.6897928,0.09796593,0.018844962,0.6419095,0.01862189,0.16618685,-0.105575785,-0.1406096,-0.2995852,0.14793934,0.18822522,0.37829176,-0.07281331,-0.5015604,-0.2866783,-0.15345035,-0.43435296,0.087924205,-0.6270226,-0.421447,-0.17372353,-0.5722779,-0.21119344,0.4600513,-0.09550296,-0.01739713,-0.14635758,-0.085472904,0.0030863371,0.3265455,0.2116455,0.12353594,0.16883574,-0.012451796,-0.07970529,-0.30906805,-0.052596767,0.10029553,0.13009717,0.07799925,-0.070249185,0.263989,0.50594336,0.76915973,-0.07992554,0.70338726,0.734309,-0.12529619,0.25079903,-0.26076382,-0.31778583,-0.53449816,-0.18545035,-0.2390893,-0.41596773,-0.4456606,-0.06410133,-0.2714892,-0.73067945,0.5741431,0.0869683,0.014676673,0.19758017,0.0036584395,0.4207017,-0.048615295,-0.096852936,-0.08318536,-0.1637503,-0.60485506,-0.19916436,-0.59508276,-0.37524158,0.20004262,1.077124,-0.16766512,0.07280796,0.11658324,-0.40290686,0.15252258,0.11370398,-0.03552661,0.30255094,0.3721431,-0.04628161,-0.5868579,0.50928164,0.15076484,-0.2105812,-0.568962,0.28283435,0.6171915,-0.63322437,0.51931566,0.109190024,0.12058502,-0.1366329,-0.38012722,-0.11629441,0.1612962,-0.27459314,0.39909008,0.27483487,-0.6458868,0.39801413,0.44802365,-0.14567353,-0.7174724,0.50784236,0.020576494,-0.33548537,-0.17889713,0.20981257,-0.026799116,0.066643246,-0.056714706,0.309941,-0.311871,0.15697224,0.19444212,-0.1249889,0.1072546,-0.25109878,0.07022185,-0.672513,0.21858986,-0.4426512,-0.36764902,0.31847414,0.16518636,0.1252682,0.093008354,0.057555687,0.34015402,-0.20611453,0.07265635,-0.26293877,-0.2633288,0.3768408,0.5167478,0.45458502,-0.25495777,0.6098388,0.040725667,-0.103141375,0.041969378,0.1788505,0.4326281,0.09148012,0.39624548,0.046299133,-0.12383628,0.068496294,0.6934552,0.1474344,0.437109,-0.009054788,-0.048524093,0.2287241,0.12548654,0.20924671,-0.018271612,-0.39201146,0.09350964,-0.032714356,0.1888131,0.48733374,0.08385498,0.14604266,-0.21328059,-0.48593453,0.11753588,0.13099015,0.16351165,-1.4229901,0.2666907,0.2749584,0.7078444,0.62567604,-0.08049439,-0.007999463,0.69132,-0.21049346,0.13978006,0.24587767,-0.053582046,-0.6023881,0.45586076,-0.72185427,0.46352234,-0.07735277,-0.070336014,0.20082648,0.11703449,0.42515567,0.68257946,-0.15218015,0.039682157,0.09826213,-0.44703692,-0.029485809,-0.38451263,-0.048025366,-0.47873974,-0.38521188,0.58760375,0.4939027,0.26140898,-0.3342914,0.0755528,0.0782199,-0.22124818,0.13292482,0.18444161,-0.048887994,-0.042151503,-0.6854716,-0.27128226,0.50889,-0.21599059,0.1258965,0.025897397,-0.20416713,0.3359681,-0.16472487,-0.049905002,-0.050737917,-0.83868164,0.09061922,-0.45196813,-0.3300106,0.32689074,-0.08386962,0.19429891,0.22514085,0.040009927,-0.39482406,0.41855073,-0.0924137,0.9534982,0.016327774,-0.18290386,-0.23715608,0.16727544,0.13140316,-0.039147384,-0.03800216,-0.287528,-0.0716931,-0.4651477,0.4824515,0.11382152,-0.3423606,0.09386102,-0.029385047,0.115012646,0.44854084,-0.16246244,-0.24434341,-0.18897915,-0.13370822,-0.33999974,-0.35938844,-0.10371053,0.19466694,0.44422182,-0.002339327,-0.02789121,-0.1040539,-0.023550851,0.54613936,-0.032384776,0.57483035,0.38271925,0.2519729,-0.50148636,-0.08429454,0.26858535,0.49039695,-0.017860422,0.008976196,-0.09720697,-0.32458296,-0.41330665,0.15367289,-0.26442286,0.50407255,0.0492615,-0.29901856,0.64379257,0.026048807,1.0347143,-0.116161,-0.33324572,0.27206317,0.44352075,0.07759719,-0.03690236,-0.29507965,0.61330616,0.5576503,-0.043788556,-0.26243988,-0.28910658,-0.17804883,0.23690602,-0.24773581,-0.11661699,0.054734994,-0.5589744,-0.21661854,0.08351667,0.3095323,0.1829585,-0.08004928,0.053699456,0.14130725,-0.060056534,0.08455698,-0.34864095,-0.0681708,0.2034404,0.13597892,0.039238613,0.01581892,-0.58858526,0.37705597,-0.37426597,0.23964529,-0.36997232,0.19980891,-0.06465931,-0.2365543,0.055502504,-0.007975893,0.23669504,-0.5066546,-0.25326803,-0.3567204,0.67583424,0.13967884,0.18980257,0.6135381,-0.22579335,0.180181,0.116235495,0.37555954,0.6773089,-0.14295979,-0.27820903,0.23795119,-0.438998,-0.6012322,0.3187787,-0.13523939,0.19212417,0.034686796,-0.09296245,-0.7595507,0.22110157,0.13045366,0.033457868,-0.09614725,-0.6600633,-0.20231803,0.386689,-0.2779986,-0.19390264,-0.31205603,-0.0070220274,0.45347354,-0.25383574,-0.3505234,0.112437196,-0.023414632,-0.21354465,-0.31278414,-0.06565822,-0.4929952,0.27628857,-0.00085132464,-0.45366365,-0.120860614,0.1036287,-0.43775374,-0.046151545,0.066084675,-0.36276317,-0.019842256,-0.29154125,-0.123315044,1.0311246,-0.38631892,-0.019101452,-0.6065289,-0.57504237,-0.7320632,-0.33434725,0.60012203,0.1015194,0.10164864,-0.8372184,0.08670342,0.08820923,-0.18348427,-0.09607079,-0.41873986,0.4095858,0.15228048,0.26732036,0.0324061,-0.7972641,0.29793152,0.10380701,-0.24264751,-0.6410603,0.4563472,-0.069927864,0.7397126,0.032662146,0.1623306,0.17197539,-0.537947,0.025568327,-0.16541673,-0.21508779,-0.5490802,0.12144772 +99,0.4929952,-0.18481736,-0.33952615,-0.20867401,-0.40393645,0.11263321,-0.16672118,0.16677386,0.16183424,-0.40672323,-0.020091752,-0.24261154,-0.15277998,0.4288338,-0.048239633,-0.673239,0.020684281,0.3286672,-0.661403,0.47020695,-0.4409712,0.38002503,0.076287046,0.15749975,-0.059103083,0.17320271,0.2094793,-0.1917968,0.10654243,-0.08739415,0.073679015,0.2362118,-0.8069981,0.3419118,-0.11949955,-0.29356176,0.008251508,-0.4002123,-0.2849283,-0.6679459,0.11528864,-0.8443032,0.50441116,-0.013747018,-0.24985233,0.004851985,0.09664586,0.30458274,-0.0765803,0.15522145,0.24038598,-0.16389294,-0.2047166,-0.19998717,-0.14696041,-0.5104482,-0.5333168,0.06305274,-0.5657215,-0.24035425,-0.1970964,0.31301358,-0.21065111,0.017954325,-0.15478992,0.25259277,-0.4208046,-0.009001819,0.18879375,-0.09584311,0.10794664,-0.34163457,0.09674004,-0.19156145,0.2571512,-0.18531272,-0.21233365,0.35665196,0.12905475,0.6705092,0.10856455,-0.2586269,0.013030243,-0.086410455,0.091341875,0.589224,-0.26345697,-0.15515393,-0.18230368,0.03585542,0.2881463,0.14835416,-0.18730478,-0.49407595,0.05670972,-0.27237862,-0.053647414,0.21816641,0.4763498,-0.31408256,-0.359656,0.3265956,0.5284315,-0.00756406,0.08313818,0.13365822,0.11831937,-0.44093978,-0.2283251,0.091675915,-0.077264115,0.26076868,-0.07750782,0.11578439,0.7146353,-0.23590203,0.017731905,-0.33547804,-0.08212807,0.019663373,-0.18618935,-0.19088237,0.23197263,-0.5134666,0.069450095,-0.094882265,0.8934734,0.16689096,-0.7860901,0.3368177,-0.5515939,-0.04305897,-0.17362456,0.7116717,0.718888,0.4398592,0.12126485,0.7233645,-0.4686902,0.2979235,-0.22790615,-0.33508462,0.14786477,-0.23683195,0.0088220835,-0.44421566,-0.034529638,-0.1691938,-0.20649534,-0.14963935,0.55210775,-0.6994345,-0.0798938,0.16203332,0.7723702,-0.3947115,-0.022513894,0.6306342,0.95084286,0.6805705,0.06865602,1.1455904,0.55777997,-0.23126389,0.30301204,-0.35557613,-0.6928394,0.1522786,0.35523245,0.10507533,0.24213673,0.1811378,-0.13977285,0.35038617,-0.66818327,-0.12449266,-0.26329297,0.43004075,-0.11563819,0.1601259,-0.36898586,-0.12397762,0.052387707,0.037226714,0.07649387,0.29574126,-0.30493578,0.20106095,0.08814006,1.8682262,-0.18992311,0.1581721,0.10710217,0.33901468,0.0954511,-0.12371909,-0.23293753,0.29801205,0.3387574,-7.133782e-05,-0.54912966,0.0756004,-0.20966037,-0.35330755,-0.20786002,-0.20533457,0.07199694,-0.087476246,-0.32806295,-0.20855898,0.070737354,-0.41574863,0.5583767,-2.1173441,-0.24290547,-0.11723072,0.4383251,-0.35302293,-0.31795877,-0.20449091,-0.4164284,0.31356156,0.26960096,0.33723363,-0.51533633,0.3297974,0.26661345,-0.3422831,-0.1865396,-0.63860786,0.11657079,-0.06583272,0.35401028,-0.09980677,-0.14926839,-0.33351994,0.011679562,0.3950534,-0.10547559,0.10094198,0.48426118,0.36571944,0.30372268,0.30059677,0.026616283,0.5301425,-0.48137274,-0.33441296,0.46299198,-0.079396516,0.33040184,-0.21583357,0.14148773,0.27347583,-0.52575696,-0.79839694,-0.7875528,-0.6279054,1.1530346,-0.3812911,-0.35854158,0.19680409,0.08756115,-0.15155646,-0.034884166,0.5193745,-0.19125023,-0.089059465,-0.73811334,0.116699226,0.04550271,0.55418706,0.10284359,0.14090864,-0.36874723,0.43740508,-0.32701036,0.34430483,0.103942946,0.16969226,-0.07213754,-0.57857585,0.17048572,1.1097007,0.28032485,0.17754364,-0.070196725,-0.286496,-0.09881498,-0.10949838,-0.060070403,0.39514014,0.8907242,-0.018657224,-0.08369028,0.3025668,-0.1525667,0.010858874,-0.15510581,-0.4057253,0.034145728,0.095851764,0.46528834,0.43029004,-0.0443338,0.5152475,-0.1551524,0.25630543,-0.082278065,-0.37937143,0.34503424,0.95489216,-0.16014704,-0.017416466,0.5126381,0.44551224,-0.25759166,0.45448717,-0.8591675,-0.3816788,0.299854,-0.08126982,-0.44417632,0.058904756,-0.25627232,0.26367062,-0.93246007,0.59512925,-0.21711737,-0.5573341,-0.57073396,-0.12596998,-2.7120943,0.22611934,-0.13960548,-0.0070094983,0.12138793,-0.021213023,0.43657535,-0.4523494,-0.34071758,0.14390168,-0.07667408,0.46960917,0.0356048,0.23440716,-0.24402161,-0.17932715,-0.3262071,0.2225773,0.3341452,0.30378255,-0.046572812,-0.4416308,-0.03801779,-0.15362357,-0.27456015,0.048728652,-0.69442976,-0.53460306,-0.23096424,-0.62522894,-0.1415841,0.58508044,-0.463433,0.058130432,-0.2939629,-0.005797711,-0.10681333,0.2235379,0.1832446,0.17638792,0.14956218,-0.060829822,-0.40409425,-0.41013333,0.49284402,0.14598131,0.15477897,0.3702702,-0.10890153,0.14855064,0.50694734,0.41070673,-0.091270335,0.71035004,0.52766204,-0.13529684,0.20851438,-0.26843446,-0.12677036,-0.5667316,-0.4301511,-0.114437215,-0.43465894,-0.4058343,-0.04357439,-0.3657719,-0.7199298,0.60677946,-0.098389246,0.08270482,-0.044954784,0.15510836,0.36323625,-0.20865807,-0.06654294,-0.18677776,-0.082568265,-0.46976918,-0.5234335,-0.48539716,-0.45908058,0.23182228,1.2615587,-0.1809436,0.00494082,0.06976234,-0.12089059,0.0036387166,-0.082517706,-0.027320186,0.22455238,0.5436447,-0.08482536,-0.71289617,0.4023524,-0.054177787,0.027043879,-0.59247303,0.2737876,0.72996336,-0.82007915,0.40647963,0.2167916,0.25498608,0.17095551,-0.5293046,-0.25797614,0.13968617,-0.36748582,0.31469163,0.0268425,-0.771477,0.39913225,0.28051007,-0.41278112,-0.9670684,0.36102018,0.08397456,-0.20870753,0.12664738,0.30528215,0.003419292,-0.054730915,-0.3437058,0.2974147,-0.42816722,0.2799438,0.22467658,-0.20617023,0.3134154,-0.44580808,-0.2325346,-0.7039378,0.1785182,-0.38051113,-0.51444817,0.2587044,-0.043829367,-0.12545219,0.31712478,0.107329175,0.4808641,-0.2890704,0.013148176,0.009421948,-0.4429793,0.30101815,0.39268914,0.47126415,-0.3841006,0.57878095,-0.014907909,-0.17535807,-0.35257918,0.16676727,0.48793784,0.02250847,0.13318901,-0.063370176,-0.09719951,0.31171617,0.96774507,0.09886988,0.44848615,-0.040836506,-0.13914181,0.3376715,0.10055188,-0.065846495,-0.03530263,-0.50431055,-0.09794854,0.09265639,0.15629797,0.4599808,0.34277332,0.41852233,-0.19882672,-0.30799764,0.13432972,0.10999896,-0.07155298,-1.134959,0.17215084,0.09269044,0.48354325,0.41178164,0.021740552,0.051911842,0.5934001,-0.23584244,0.16284175,0.23461683,-0.14045967,-0.27682993,0.44496498,-0.5668909,0.28054288,-0.08344412,0.032995,0.23608671,0.0950984,0.32988942,0.83485997,-0.06331292,0.026713677,-0.09473276,-0.0981479,0.08170946,-0.23799072,0.31388825,-0.5703282,-0.37471765,0.65246683,0.38489464,0.31678116,-0.23691463,0.101807036,0.026040442,-0.16646454,0.21704435,-0.15325703,0.041514374,0.15397123,-0.4900976,-0.18759592,0.6849542,-0.008170835,-0.08466447,0.03638024,-0.118085146,0.15775324,-0.32932308,-0.030499639,-0.021529976,-0.78874844,-0.003822565,-0.42639053,-0.15338911,0.38892496,-0.048379652,0.12196508,0.08920033,0.05452372,-0.41175714,0.38202903,0.21482863,0.9186768,0.2712021,-0.38749892,-0.32433775,0.05656025,0.2057329,-0.30062813,0.11271583,-0.27137128,-0.026515242,-0.9814762,0.43099606,-0.091866985,-0.4383524,0.31896463,-0.15803674,-0.03978985,0.5348208,0.08623683,-0.13744654,0.08278165,-0.24078263,-0.39131442,-0.048945103,-0.15379746,0.13465187,0.17239067,-0.10979913,-0.09217633,-0.14650895,-0.26370227,0.500529,-0.005486802,0.28912702,0.3786565,0.257272,-0.18206576,0.12369563,0.19189246,0.44628417,-0.09839861,-0.0027818999,-0.048068162,-0.21451563,-0.23421344,0.19359574,-0.2147926,0.26197213,0.08872318,-0.47804603,0.685898,0.17273024,1.028927,-0.003345565,-0.062062275,0.11697124,0.47020566,0.10913337,0.03317588,-0.5364918,0.91364825,0.63045055,0.084862314,-0.12296372,-0.2263733,-0.39704043,0.32150453,-0.29651728,-0.05396462,-0.035321075,-0.78599703,-0.48134696,0.28474468,0.3825,-0.07762136,0.01723967,0.062814064,0.09278609,-0.0038740535,0.32844096,-0.5617745,0.064368345,0.20533156,0.42993248,0.12552989,0.3379136,-0.39976484,0.4405774,-0.65227485,0.06872663,-0.4356371,0.14294109,-0.124201946,-0.19450165,0.065472744,0.21332122,0.42060822,-0.23688574,-0.3356729,-0.13332413,0.6201278,0.17204998,0.14541821,0.81495005,-0.34320277,0.09004755,-0.049549382,0.35754362,1.1117278,-0.23205748,0.030463822,0.2970371,-0.27058607,-0.61928624,0.44472218,-0.33370835,0.100045905,-0.044072814,-0.35818842,-0.31356138,0.30349538,0.13577193,-0.14142428,-0.022939885,-0.56179124,0.105426766,0.28872842,-0.060221728,-0.30855876,-0.2891764,0.40103805,0.8371213,-0.2522228,-0.34346738,0.2385022,0.40721187,-0.33706096,-0.64564437,-0.22359306,-0.37583086,0.13367972,0.14721832,-0.3623387,-0.100292996,-0.06359235,-0.37582776,-0.025457343,0.29919627,-0.36786634,0.07649007,-0.06429486,0.15447798,0.7522245,-0.05784701,-0.1958418,-0.71642554,-0.4609951,-0.9536578,-0.39782205,0.55276465,0.44181928,0.075451694,-0.28473672,0.012007785,-0.112790816,-0.13401458,0.07249714,-0.5002272,0.22506599,0.22967336,0.4856836,-0.16917299,-0.91148895,0.14229815,0.05954368,-0.20154262,-0.55985737,0.39481634,-0.14361404,0.9430265,-0.057783507,-0.14053033,0.16674235,-0.5843526,0.05412275,-0.2683405,-0.05998717,-0.74318194,0.21884312 +100,0.47176406,-0.11320428,-0.43501857,-0.021328848,-0.29656345,0.13531831,-0.2781045,0.30811375,0.14491436,-0.655733,-0.09463616,-0.12974659,-0.1918664,0.12161262,-0.18042786,-0.44915888,-0.12211098,0.13700074,-0.4201206,0.68465143,-0.2739665,0.39750516,0.0075282,0.3659766,0.006718049,0.19881344,0.23968914,0.09591552,-0.18264161,-0.41722125,0.017853705,-0.02386708,-0.7580111,0.5794519,-0.2101109,-0.29780263,-0.023303648,-0.41919333,-0.20256199,-0.84887147,0.34889096,-0.67212033,0.3918181,0.026924428,-0.24294177,0.33656314,0.30549607,0.12025877,0.036426876,-0.15653618,0.24406797,-0.3338856,-0.21036005,-0.2541186,-0.17330602,-0.31397444,-0.6138052,0.0725828,-0.35494632,-0.27112043,-0.31600273,0.31784025,-0.32699,-0.11659611,-0.041933697,0.6209923,-0.2718137,0.021927783,-0.0033590633,-0.26117912,-0.08190442,-0.7729526,-0.21955976,-0.098426275,0.22505389,-0.07119609,-0.06797628,0.5306749,-0.007937514,0.3793693,0.1256487,-0.27344525,-0.42421132,-0.15786551,0.16439912,0.5419444,-0.24143465,-0.30092546,-0.10356296,-0.17170483,0.2254565,0.1171925,0.2091034,-0.20980373,-0.04967069,-0.26773414,-0.16600968,0.50113875,0.6753198,-0.25954884,-0.21418387,0.42905983,0.54128325,-0.0022058922,-0.21796261,-0.096579835,-0.1857821,-0.41611913,-0.17652856,0.13763441,-0.10342209,0.2256259,-0.12584206,0.2577574,0.52072173,-0.20248757,0.00086295605,0.39779,0.16833149,0.27724814,-0.29301965,-0.24059097,0.4525928,-0.5140736,0.09097575,-0.3923342,0.84292614,0.051635973,-0.88860154,0.37372258,-0.4515727,0.08445509,0.114335075,0.60787386,0.70822775,0.6623673,0.25688693,0.82538855,-0.35880592,0.08532357,-0.14952281,0.004779742,-0.16836213,-0.30914244,0.09354302,-0.41797,0.16423032,-0.10375039,0.034192327,0.012363127,0.40699944,-0.46936315,-0.25527132,0.36303484,0.79570585,-0.1457585,-0.09553991,0.87141025,1.0681552,1.1210551,0.015997281,0.9190137,-0.036187436,-0.16766538,-0.1253524,-0.13711576,-0.67635727,0.26602414,0.34242132,0.84105164,0.062333904,0.11842616,-0.06753114,0.39356902,-0.45804045,-0.23989503,-0.11802287,0.28753263,0.21302685,-0.08347604,-0.25350803,-0.18914095,0.16082104,0.015700312,-0.046266817,0.35260212,-0.3165365,0.4090199,0.11372411,1.1999965,-0.15036021,0.16656075,0.26082107,0.62721455,0.078633584,-0.293766,0.35254845,0.25375634,-0.005859393,0.005472536,-0.49563095,0.0756382,-0.2868562,-0.73066896,-0.10894379,-0.40191144,-0.46483523,0.07605039,-0.31981796,-0.46592772,-0.117522,-0.35586432,0.4296214,-2.805099,0.061451554,-0.00668365,0.35232273,-0.39673942,-0.38163865,-0.0036896765,-0.5619328,0.5600957,0.28925353,0.36068332,-0.596191,0.21921737,0.54612833,-0.7024765,-0.15274021,-0.6221066,-0.09184094,-0.11565792,0.4629563,0.03464137,-0.19587329,-0.008338754,-0.040563222,0.47342724,0.22166087,0.10897812,0.32307658,0.33504778,-0.14169393,0.32395247,0.010715503,0.46348733,-0.50847423,-0.19518813,0.4378114,-0.7658675,0.33164227,-0.3316197,0.086113065,0.43393752,-0.32550687,-0.6909364,-0.6515033,-0.18846461,1.2796465,0.017084846,-0.7014914,0.16405694,-0.18346559,-0.079804964,-0.23475868,0.36215913,0.040434305,-0.020308865,-0.5918201,-0.04194166,-0.21269648,0.3261645,-0.07628448,-0.069952235,-0.55265003,0.88026136,-0.046122395,0.46540636,0.23550902,0.25108516,-0.5849162,-0.2710036,0.0477352,0.890701,0.583791,0.2201117,-0.10343392,-0.19216344,-0.22096524,-0.45228216,0.13831484,0.64192325,0.4034322,-0.022539707,0.07524823,0.3392245,-0.08718782,0.2321141,-0.12339174,-0.2918413,-0.42799237,0.1539658,0.72564894,0.59907633,-0.057003733,0.2828272,0.030023469,0.036334056,-0.2531711,-0.38117987,0.4132697,0.67842555,-0.14933543,-0.30155343,0.5043775,0.48964113,-0.30383825,0.40545428,-0.5611304,-0.6218649,0.3594063,-0.11679117,-0.6570654,-0.12914841,-0.26764604,0.008751771,-0.5326927,0.4227967,-0.48950037,-0.7536091,-0.68917155,-0.17674415,-2.1203382,0.11617057,-0.24544698,-0.07213795,-0.14468262,-0.12989005,-0.11360265,-0.40119398,-0.4549416,0.12278704,0.07795342,0.6105987,-0.11204529,0.16572493,-0.30520368,-0.35093382,-0.3544514,0.34358028,-0.030120768,0.30989143,-0.123552546,-0.12188517,-0.029622188,-0.0962489,-0.2291765,-0.06366381,-0.3913717,-0.4258596,-0.11874623,-0.37710524,-0.21298552,0.661117,-0.40290073,0.08055487,-0.18811049,-0.107294194,-0.037948947,0.1288817,0.21681926,0.23447646,0.23661374,-0.33629873,0.026838282,-0.34650528,0.29880685,0.080327235,0.3709182,0.69388866,-0.37484583,0.14581947,0.34915978,0.75571793,-0.082267515,0.9757586,0.07119492,-0.085836664,0.48481464,-0.23589428,-0.3330546,-0.66721344,-0.042105496,0.33958963,-0.2896061,-0.3683593,0.14891961,-0.30093917,-0.7956204,0.46737954,0.20799719,0.26377922,-0.19796786,0.39124915,0.34818083,-0.23232475,-0.17043923,-0.11666815,-0.011303227,-0.4490013,-0.42093283,-0.64993066,-0.4949668,0.04834717,0.97963643,-0.1945974,-0.07885253,0.35215205,-0.033345584,0.070904575,0.17477211,0.010969139,-0.109584816,0.2567684,0.20728865,-0.6687386,0.5479454,0.046024673,0.12469421,-0.37590933,0.52863574,0.6016451,-0.38787106,0.4443735,0.3983717,0.013076287,-0.30873153,-0.6478259,-0.08269744,-0.06975012,-0.197446,0.25564477,0.30022126,-0.877578,0.37562725,0.286132,-0.2752995,-0.7964557,0.3295511,0.012795751,-0.1984919,-0.024860987,0.35768604,0.3071373,-0.13607535,-0.026862292,0.29890582,-0.46638963,0.3189952,-0.012309059,0.026991414,0.3975665,-0.2900439,-0.4921253,-0.5565825,0.13852467,-0.5729304,-0.33927947,0.26813573,0.056846544,-0.0337852,0.4973081,0.1369377,0.4755649,-0.07073292,0.052869912,-0.2530169,-0.28565046,0.34103945,0.4061702,0.6748361,-0.54583293,0.65542567,0.09165074,-0.12090263,-0.035415128,0.0775289,0.48049086,0.10555621,0.3713191,-0.061875053,-0.02819828,-0.040833592,0.7719362,0.34800813,0.40588218,-0.059520032,-0.2682264,0.49275857,0.0069116657,0.28470737,-0.14338188,-0.7630956,0.095767766,-0.25112617,0.030815197,0.35807836,-0.03389597,0.3931692,0.027444674,-0.12928592,-0.011109004,0.041660845,-0.29059884,-1.1311276,0.34594345,0.1339782,0.9933593,0.45891938,-0.052710734,0.08222227,0.9142705,-0.082355514,0.081652366,0.29965886,-0.104587,-0.4209921,0.53085816,-0.6575658,0.53593385,-0.081164345,-0.054569438,0.021966778,-0.01212032,0.4614058,0.56738794,-0.18105254,-0.050044414,-0.11722075,-0.360212,0.083975084,-0.465402,0.27527225,-0.3837768,-0.2151912,0.6664848,0.37628147,0.34836695,-0.07191879,0.12375109,0.055591922,-0.18035871,0.1939744,-0.111422464,0.033152618,-0.07330612,-0.28237727,-0.025305023,0.6236284,-0.18922502,0.18033849,0.2082226,-0.11549577,0.24893445,0.13093767,-0.056197736,0.01993798,-0.6333013,0.34068713,-0.05706406,-0.39263284,0.40438488,-0.037181355,0.1728827,0.3383178,0.12672278,-0.12010439,0.2650707,0.34989876,0.5028127,-0.0026897788,-0.14297502,-0.2953387,0.04234413,-0.08198813,-0.22475924,0.1379592,0.13096061,0.06968394,-0.57453877,0.40207955,-0.20318252,-0.21454324,0.21122496,-0.1030963,-0.047761288,0.6148389,0.17027225,-0.05149736,0.1685434,-0.11592613,-0.11459896,-0.07705799,-0.15428543,0.35605913,0.035700936,-0.17105225,-0.1815674,-0.3286894,-0.091515526,0.20192507,-0.080573365,0.06332044,0.19797446,-0.041753933,-0.54535174,0.2725482,0.15568916,0.481119,-0.065198086,0.22010383,0.05771599,-0.29120344,-0.46862447,0.5119433,-0.114895515,0.18232553,0.23769058,-0.25037897,0.7503758,-0.12751128,0.92816705,-0.085055,-0.33316037,0.031606622,0.47981966,-0.0014151427,0.06682016,-0.29309762,1.0245537,0.58293384,-0.012909337,-8.16171e-05,-0.42522827,0.0513831,0.2704538,-0.2366266,-0.11802209,0.06673678,-0.65726596,-0.15896282,0.16744958,0.25059432,0.08389629,-0.30497143,-0.22401898,0.4209297,0.22541413,0.23594867,-0.5660683,-0.24747951,0.30059037,0.22106932,-0.06271529,0.031742297,-0.434794,0.30216378,-0.8617693,0.30340984,-0.14381576,0.12897928,-0.43315458,-0.19553791,0.28262064,0.20518747,0.39690492,-0.19600326,-0.47511786,-0.17067124,0.16628379,0.16244775,0.27747637,0.43781662,-0.19219798,0.025851835,0.009756827,0.33527195,0.8757899,-0.042196933,-0.19110045,0.13378678,-0.45271906,-0.7756843,0.35924208,-0.3675744,-0.008064847,-0.021135986,-0.1457374,-0.40715435,0.12136671,0.2785164,-0.01367944,0.09832095,-0.8282472,-0.32344973,-0.036993537,-0.4374612,-0.26512578,-0.29463893,-0.06321692,0.67438626,-0.12146185,-0.11657298,-0.036177203,0.36189857,-0.30171454,-0.7557854,0.08858616,-0.449001,0.26281357,-0.02348822,-0.4606017,-0.3453011,0.2522278,-0.46162418,0.13718882,0.17296003,-0.3462848,-0.12300939,-0.3772516,0.28224185,0.72941315,0.07336192,0.36884695,-0.44072133,-0.47278374,-0.8102292,-0.3081919,0.076130085,0.20599864,0.0035237793,-0.7148336,-0.33216685,-0.40967,-0.22413698,-0.036686126,-0.4469614,0.29659858,0.22884178,0.18940772,-0.25047976,-0.7053029,0.23412742,0.13992836,0.029930519,-0.2954198,0.2674378,-0.05970543,0.96655744,0.061376836,-0.09365761,-0.03183952,-0.6944918,0.2970376,-0.1683205,-0.22080027,-0.41779253,0.1459978 +101,0.6032693,-0.17314151,-0.49999836,-0.21702866,-0.26495638,0.18318796,-0.09862966,0.6121627,0.10225674,-0.5075381,-0.08144866,-0.055461828,0.19221784,0.34851,-0.14090002,-0.6720792,0.04488843,0.13605686,-0.40510055,0.48680478,-0.50840986,0.32819575,-0.0030929106,0.2526296,-0.002674518,0.3206563,0.23291318,-0.20579696,-0.059382405,-0.110728554,-0.138885,0.2790348,-0.3930623,0.2111266,-0.042025745,-0.31824234,0.20028734,-0.3845763,-0.44921717,-0.63807064,0.34481692,-0.6940738,0.46620888,0.10137282,-0.24681303,0.26181033,0.045800276,0.18123321,-0.42708415,-0.008131251,0.08586893,-0.055995636,-0.14876719,-0.20333692,-0.037835162,-0.44934988,-0.42548674,0.02004534,-0.43760172,-0.0927697,-0.35919023,0.22553156,-0.3009074,-0.07263521,-0.05222353,0.54768044,-0.4829161,-0.07804681,0.15572514,-0.30355173,0.26277918,-0.59260136,-0.122623615,-0.054220088,0.2562901,-0.1945779,-0.16930218,0.27222937,0.24388473,0.40920052,0.06997516,-0.25410458,-0.3222013,-0.210448,-0.046493497,0.5480529,-0.24076761,-0.7692813,-0.03506413,-0.023870623,-0.07532976,0.11547769,0.026739296,-0.104772285,-0.09120458,0.061261766,-0.4598263,0.4134202,0.5247862,-0.3950705,-0.25482184,0.41142243,0.5746459,-0.03723068,-0.1655261,-0.08252592,-0.050473146,-0.5227622,-0.25060993,0.01016395,-0.23779596,0.5156535,-0.2123315,0.32546523,0.76352227,-0.14423697,-0.052772492,0.23114488,0.052591152,-0.052920718,-0.31317058,-0.20407605,0.21942244,-0.4755435,0.13956738,-0.24609831,0.93784523,0.14789489,-0.55959934,0.39928356,-0.43446597,-0.009013414,-0.20942774,0.47784907,0.5750848,0.32421574,0.16353893,0.74119616,-0.47766668,0.10649924,-0.039867826,-0.36847615,-0.065373965,0.11896544,-0.047341082,-0.48714972,0.16809689,0.02948961,-0.03331759,0.031440977,0.39838073,-0.50878704,-0.124903105,0.2849448,0.8996855,-0.4096426,-0.2042067,0.58444834,0.9928063,0.93394417,0.19361302,1.077317,0.2435545,-0.307288,0.34738508,-0.38250422,-0.6741323,0.29954198,0.47486204,0.62248766,0.12201357,0.14753638,0.080438204,0.49612957,-0.38102037,-0.06861998,-0.29437512,0.3779366,0.16960718,-0.14950708,-0.53791916,-0.20799088,-0.0721847,0.054782134,0.13469009,0.20228244,-0.16616477,0.3397214,-0.08030274,1.485299,-0.005083118,0.042120874,-0.07794662,0.59800404,0.33541742,0.017961245,-0.09852012,0.3507513,0.41281727,0.010332248,-0.6295636,0.30049917,-0.23987146,-0.64712197,-0.1515162,-0.4011918,0.15596986,-0.09300903,-0.5070419,0.030886855,0.036876816,-0.25106162,0.41790012,-2.7444534,-0.21004312,-0.17760576,0.2368175,-0.20450647,-0.35950035,0.08414179,-0.4891974,0.4550257,0.47532246,0.5940138,-0.63969606,0.45776606,0.38520387,-0.49057737,-0.06532512,-0.65575546,-0.15000074,-0.09710892,0.47231928,0.18124397,-0.12980701,-0.22022025,0.14246872,0.60240453,-0.12898377,0.019343283,0.14312933,0.26826707,-0.0035008788,0.51884353,0.0025341127,0.59527606,-0.3090293,-0.24504733,0.24950252,-0.37625855,0.13997735,-0.18917267,0.15953244,0.3754434,-0.3769524,-1.2135619,-0.7124295,-0.25191507,0.96143043,-0.21682204,-0.21440499,0.3072956,-0.29978845,-0.18918784,0.104706295,0.32165864,-0.05173806,-0.115870126,-0.63237584,0.13272838,-0.11288184,0.052491985,0.07086394,0.07304041,-0.3451628,0.7252498,-0.057776093,0.5154287,0.22728637,0.21264768,-0.21962214,-0.29526424,-0.041385498,0.96434575,0.38443393,0.22893289,-0.2843844,-0.2928991,-0.38441285,-0.10150291,0.018984461,0.6188693,0.7027845,0.12577054,0.020076722,0.10638932,-0.1167677,0.04074653,-0.061475676,-0.2769179,-0.07768643,0.08036595,0.6224529,0.40084496,-0.07645997,0.5518799,-0.15835023,0.3318677,-0.22918364,-0.3550592,0.59669393,1.0338008,-0.14430033,-0.26403636,0.64117473,0.39843962,-0.24735594,0.36130497,-0.7614279,-0.2234322,0.45527416,-0.22519942,-0.22857036,0.08087083,-0.21835916,0.102390096,-1.067207,0.24184836,-0.215088,-0.7123235,-0.48676577,-0.27805263,-3.7431362,0.21472895,-0.21593595,-0.077238396,-0.047483217,-0.14451072,0.23557499,-0.6301012,-0.41109976,0.27185112,0.054389954,0.67242306,0.13172193,0.08263861,-0.23505303,-0.06372941,-0.15659001,0.3259173,0.0998747,0.32608795,0.017486522,-0.5348778,0.008947481,-0.10701275,-0.57699925,0.12756737,-0.68088996,-0.48074764,-0.16140379,-0.6221151,-0.25893936,0.69199115,-0.26804706,0.033166375,-0.14095286,0.1777061,-0.15006958,0.35006174,0.059962176,0.10889355,-0.03858223,-0.08219923,0.13938214,-0.37767008,0.3133665,0.092535004,0.39372414,0.13264759,-0.04209901,0.06512026,0.75260895,0.6012393,-0.032644186,0.7688993,0.52145034,-0.13584247,0.4037988,-0.2516164,-0.20205167,-0.5347465,-0.56323594,-0.08235812,-0.34546545,-0.36943468,-0.086464934,-0.3612656,-0.6621904,0.437222,0.07150235,-0.067628324,0.00555881,0.41680235,0.47125605,-0.32299766,-0.03956919,-0.021614747,-0.16245715,-0.65357584,-0.32557163,-0.4981532,-0.36744452,-0.09718694,0.9621163,-0.19670327,-0.18576777,-0.22464076,-0.22152193,-0.048080646,0.1275978,0.13789055,0.2549035,0.3625937,-0.24398434,-0.60593796,0.5493878,-0.3343208,-0.27605864,-0.5027333,0.042762768,0.38349274,-0.5434831,0.621665,0.46633196,0.21732083,0.018931994,-0.49759242,-0.30768028,0.14078088,-0.07083382,0.37731013,0.19670418,-0.95849115,0.54418194,0.36758068,-0.23873755,-0.7380419,0.5120551,-0.072459534,-0.3030232,-0.060441073,0.2936592,0.20389713,-0.11756285,-0.27395207,0.08774329,-0.33384535,0.16828604,0.16470818,-0.008708524,0.41263184,-0.384605,-0.1427293,-0.7655045,-0.28573486,-0.47226733,-0.13991666,0.12546849,-0.024305265,0.11752597,0.13701305,0.089385524,0.38876763,-0.3458534,0.09798182,-0.18982682,-0.46999338,0.40788963,0.4421381,0.38429597,-0.35949782,0.56525046,-0.03119539,0.013052101,-0.18343374,0.024921784,0.5756078,0.040573783,0.4687758,-0.11146392,-0.119990274,0.35404268,0.8643952,0.21524152,0.45388418,0.0012653725,-0.17850026,0.2092462,0.077573694,0.14086242,0.14054927,-0.40587062,0.09327621,-0.09819392,0.083606735,0.41026625,0.11693038,0.22200468,0.01790963,-0.27968818,0.06722102,0.13822216,0.09956088,-1.2048632,0.56046546,0.2796618,0.9439744,0.40421638,-0.08786158,-0.05555427,0.6326173,-0.04464538,0.11914144,0.30523774,-0.19579823,-0.3590448,0.43669277,-0.6151492,0.53888535,-0.14764014,-0.044765968,-0.057013076,-0.121334024,0.38281563,1.0137645,-0.1769601,-0.005652662,0.12067976,-0.41259125,0.22725484,-0.4223836,-0.088374615,-0.5796755,-0.24172023,0.7296601,0.44261613,0.33092144,0.0018613084,-0.060063977,0.15507509,-0.0744362,0.1689593,-0.040963333,0.07364721,0.038590133,-0.8538666,-0.36176804,0.5091179,0.2985026,0.29724488,-0.124521255,-0.093855396,0.38264078,-0.18401864,-0.11493582,0.0001517183,-0.52280456,0.06339596,-0.2765461,-0.468724,0.5621646,-0.23616278,0.2627756,0.123064086,0.103576705,-0.28565946,0.42032102,0.07236529,0.795864,0.06847344,-0.25118306,-0.57165104,-0.066019736,0.19829021,-0.24704394,-0.12016772,-0.45489842,-0.0519507,-0.71666104,0.42259425,-0.118494794,-0.30358583,0.0647255,-0.2965534,0.02127496,0.4229383,-0.10579087,-0.17769675,-0.08533815,-0.1043529,-0.09644431,-0.07237172,-0.16188645,0.32622644,0.06999243,0.031120589,-0.029588196,-0.13061546,0.017690947,0.4831621,0.0821323,0.22063126,0.28530848,0.10816014,-0.20752148,-0.18422832,0.33115676,0.5998063,-0.18627925,-0.022987843,-0.23246823,-0.37855503,-0.24659717,-0.024160793,-0.090037584,0.3197387,0.17361723,-0.27482006,0.6481578,-0.15199284,1.131534,0.2110931,-0.43208724,-0.010828674,0.55537003,0.12926622,0.08086182,-0.3207919,0.84873813,0.44501382,-0.09851944,-0.27959377,-0.48777798,0.13077481,0.25816834,-0.114633545,-0.17863224,-0.10340901,-0.6841878,-0.25841466,0.29952878,0.26726002,0.21309553,0.0127463695,-0.098735146,0.12799041,0.010116019,0.35355625,-0.59009695,0.14977114,0.32144615,0.25240937,-0.010417827,0.15157816,-0.46397597,0.40296412,-0.55819225,0.08893756,-0.26158682,0.19193013,-0.31515446,-0.26958117,0.2766532,-0.03908295,0.39644513,-0.21372654,-0.35184175,-0.29691938,0.5195628,0.30981475,0.12195532,0.5652296,-0.18539917,0.017040918,0.10776675,0.45405307,0.9198085,-0.37330776,0.038416836,0.44256774,-0.32626668,-0.53065246,0.0976694,-0.30833,0.2117894,0.07459142,-0.2137442,-0.6365687,0.3828667,0.18755667,-0.033429928,0.13323426,-0.51491463,-0.22576652,0.23502159,-0.32786536,-0.26358882,-0.10262591,0.24896953,0.70151716,-0.35785866,-0.19441094,0.2407845,0.30600637,-0.22360294,-0.64095867,0.060172517,-0.43289688,0.39886093,0.079968944,-0.41577652,-0.15471052,-0.057863466,-0.44195488,0.23085342,0.28737158,-0.35489598,0.009838616,-0.3549976,-0.09203894,0.905074,0.015419926,0.34901834,-0.63656473,-0.33742434,-0.8267438,-0.2887102,0.6154499,0.06987854,-0.041957717,-0.5801333,-0.056410287,0.10721956,-0.10609271,-0.09548837,-0.46023867,0.48259658,0.07516664,0.49492308,0.116739266,-0.85233754,0.01558332,0.05700477,-0.27035096,-0.5322091,0.48490587,-0.19447291,0.7798276,0.05786831,0.17913426,0.2938695,-0.41634506,-0.010281333,-0.3313705,-0.16151372,-0.6886252,0.15979409 +102,0.43050632,-0.35756114,-0.45017096,-0.05259684,-0.4138343,0.067819566,-0.19522956,0.43175107,0.07597177,-0.1996551,-0.15980588,-0.25279796,-0.098347634,0.18612552,-0.17990844,-0.25595573,-0.22661673,0.10801487,-0.63551044,0.7859492,-0.114541784,0.17329635,-0.19333579,0.40750903,0.6699219,0.2799239,-0.017468708,0.13794647,0.050692257,-0.2598174,-0.10223068,0.14867194,-0.5562004,0.16713502,-0.3057003,-0.2904862,-0.09838409,-0.5672499,-0.5124342,-0.8937136,0.51506823,-0.9109114,0.63775504,-0.081366636,-0.18894596,0.2675409,0.3552523,0.34835732,-0.09641075,-0.17205943,0.30460903,-0.05734231,0.14833952,-0.12165737,-0.19900052,-0.39232546,-0.56713355,-0.14916016,-0.34579837,-0.11777388,-0.43464953,0.16007432,-0.34981802,0.008861834,-0.124121584,0.5154216,-0.47211334,0.30241317,0.050376393,-0.023180012,0.091979384,-0.7535526,-0.17093188,-0.16781346,0.27197742,-0.0034055968,-0.088020906,0.47381496,-0.029382467,0.17335497,0.0028023045,-0.11464407,-0.23740827,-0.22534736,0.0991894,0.39294547,-0.065882966,-0.4119294,0.012486744,-0.029953416,0.35727316,0.39018303,0.2530284,-0.0155326845,-0.118697405,-0.07341686,-0.05301883,0.5508322,0.43485376,-0.13855846,-0.106039256,0.38596967,0.654022,0.42303988,-0.28281578,-0.041305076,-0.026057513,-0.48046547,-0.09334751,0.12546234,-0.31823307,0.47766843,-0.08388813,0.19062825,0.49153376,-0.26402542,-0.08083644,0.046509456,0.13012925,-0.21346706,-0.1721184,-0.4849075,0.22804363,-0.45966494,0.44400704,-0.10574028,0.58089846,0.10488245,-0.47578755,0.29712355,-0.5592336,0.06831274,0.08019241,0.43827966,0.6190272,0.49224737,0.45392126,0.6965895,-0.079327255,0.044050142,-0.2779601,-0.2400803,-0.061929025,-0.21370599,0.00578324,-0.5345868,0.022823304,-0.2683297,-0.15872835,-0.11728747,0.53165287,-0.34785324,-0.08207002,0.15772335,0.78029543,-0.23183727,0.0779768,0.9267639,0.99480426,1.0420672,-0.044252116,0.7383511,0.041152883,-0.24350943,0.09234145,-0.17175789,-0.5903384,0.2469158,0.400717,-0.17772938,0.26668125,0.122868694,-0.0270276,0.2644265,-0.44396287,0.00783785,-0.13822807,0.13390191,0.24747582,0.00948142,-0.2445576,-0.32047358,-0.06912414,-0.021606298,0.18926017,0.17267223,-0.34321603,0.47993058,0.11274188,1.6394463,0.052011203,-0.041330244,0.22954664,0.66155124,0.15945822,-0.25278386,-0.09955431,0.35368195,0.29226175,0.14240228,-0.50555027,0.28795782,-0.32908112,-0.44381174,-0.09081788,-0.47736597,-0.3345478,0.07497803,-0.28873417,-0.27792174,-0.22142388,-0.26392597,0.43682683,-2.8937337,-0.04323519,-0.047019266,0.2692236,-0.22322688,-0.3103597,0.08532303,-0.48186225,0.47980702,0.29459155,0.38935238,-0.5898297,0.3984174,0.5065938,-0.81265694,-0.024527024,-0.52839476,-0.13839127,0.09401669,0.40851897,-0.142068,0.029673643,0.09502697,0.22104886,0.4880585,0.14801994,0.19569837,0.43846476,0.4771807,-0.13086277,0.7316858,-0.04156172,0.30615294,-0.35320562,-0.09702174,0.3541792,-0.3407313,0.40475884,-0.20121318,0.13533421,0.70381445,-0.5949495,-0.80561316,-0.55825436,0.003134227,1.1406398,-0.32188714,-0.5841,0.27082223,-0.65511006,-0.19883417,-0.16692823,0.5535983,-0.18177801,-0.1824991,-0.63739055,-0.115640126,-0.11902606,0.16250058,-0.068975136,-0.09003797,-0.33519086,0.79569125,0.009681842,0.5738317,0.19535996,0.14586423,-0.50057584,-0.48522785,0.14045633,0.4652696,0.51289743,-0.056135066,-0.24219488,-0.20296755,-0.23046805,-0.15724847,0.15309525,0.68260604,0.4202408,-0.081393816,0.18169887,0.30759516,-0.14767747,-0.01319348,-0.31807086,-0.17954479,-0.2726903,0.025322413,0.4184967,0.54616946,-0.0013481379,0.40493095,0.05730366,0.23026164,-0.094443895,-0.40209076,0.2912585,1.3067708,-0.19104078,-0.42297205,0.43135178,0.61270255,-0.102521464,0.40223604,-0.58952636,-0.12413238,0.5864084,-0.15324417,-0.598374,0.15182658,-0.28651997,-0.000835826,-0.57348055,0.0064060865,-0.35023588,-0.5762917,-0.65298235,-0.10680335,-2.344116,0.11272562,-0.270505,-0.40357703,-0.31220016,-0.4533437,0.083281964,-0.5878096,-0.6619403,0.054012474,0.122695416,0.7950709,-0.11543376,0.051542617,-0.2098589,-0.39357308,-0.50445324,0.15409508,0.18669564,0.44426012,-0.3093494,-0.42966253,-0.11310975,-0.018413937,-0.4028865,-0.08397756,-0.4769365,-0.195538,-0.19097425,-0.3860549,-0.2960109,0.5630687,-0.08831368,0.108252764,-0.17641239,-0.02177925,0.16886629,0.14622402,0.19671017,0.18339466,0.09472311,-0.14348684,0.13659705,-0.2280172,0.37116,0.10230395,0.34260482,0.20242341,-0.050832964,0.3454976,0.25253996,0.5456633,-0.09158243,0.95187414,0.3243947,-0.17929104,0.22439711,-0.15556605,-0.4285653,-0.571645,-0.084799044,0.1759792,-0.33649027,-0.47315815,-0.1701415,-0.28976128,-0.7556288,0.5161442,0.0874829,0.38589287,-0.08580847,0.23016055,0.59273434,-0.20043828,-0.030573677,0.011870116,-0.17669836,-0.54265046,-0.29733393,-0.53501666,-0.40907204,-0.0966591,0.7820292,-0.32491675,-0.07776562,0.16502886,-0.42773023,0.20810132,0.14951564,-0.077814296,0.18501247,0.44116667,-0.15998834,-0.539286,0.51463294,0.012665121,-0.13811922,-0.498511,0.4038202,0.5666482,-0.4747325,0.47928435,0.13016887,-0.10841465,-0.6287223,-0.53049475,0.05353231,-0.10359447,-0.19570981,0.4236275,0.33092722,-0.6267798,0.25492632,0.1507064,-0.098061636,-0.7572571,0.6788336,-0.1072106,-0.49736038,-0.096765585,0.28568214,0.13269183,-0.034717783,-0.26310956,0.2637963,-0.26838657,0.24647088,0.11971356,-0.116945855,0.06940239,-0.25772613,-0.14103228,-0.72936636,0.29113224,-0.43922815,-0.35173836,0.6245647,0.084360614,0.11129192,0.26764145,0.18572386,0.2930226,-0.11859878,0.13540149,-0.16068801,-0.17091939,0.29165477,0.45868096,0.5538884,-0.50929135,0.55786175,0.05108612,-0.18896362,0.34414068,0.11214828,0.23156968,-0.07434834,0.50008416,0.16744114,-0.27735576,0.18826962,0.6745849,0.35338804,0.43095404,0.010881785,-0.09913993,0.23779485,0.0021107257,0.34704602,-0.14376144,-0.776542,0.068835124,-0.2981811,0.012361637,0.5166468,0.107060246,0.16564779,-0.13639508,-0.1537932,-0.08519927,0.20925331,-0.16999808,-1.2693261,0.27991912,0.25586268,1.0307262,0.43542004,-0.015513022,-0.014968306,0.82214445,-0.12724827,-0.0067253886,0.3960036,0.33635393,-0.46750212,0.5173559,-0.64595044,0.49986824,0.129912,-0.08615173,0.04920498,0.03724472,0.3687088,0.6464775,-0.25483593,-0.12477231,0.058593947,-0.42728963,0.2915443,-0.25147676,0.021630196,-0.60301346,-0.3069127,0.52688986,0.49513385,0.35671705,-0.030004056,0.023517588,-0.057920326,-0.20527655,0.26894978,0.17935562,0.09685351,-0.17869872,-0.644392,-0.059509613,0.40663823,-0.21046111,0.17469269,-0.037822854,-0.17548294,0.23534289,-0.05067381,0.064383894,-0.023992918,-0.8432656,0.21258928,-0.20951174,-0.39116606,0.36273625,0.00068814756,0.2995485,0.25503346,-0.021843309,-0.24001122,0.34089622,0.052256178,0.85124564,-0.07421203,0.007933545,-0.3646919,0.039076556,0.080877416,-0.18196239,0.055360403,-0.10451202,0.068576306,-0.6437753,0.49829465,-0.025256956,-0.4262146,-0.03200615,-0.20476232,-0.07991194,0.6751991,-0.07405417,0.020596031,-0.24367903,-0.13009006,-0.38586813,-0.42974383,-0.07664239,0.21567903,0.14910068,0.16667223,-0.18348607,0.09808075,-0.05446697,0.6755247,-0.014685352,0.55619127,0.21446444,-0.031070638,-0.33007076,-0.14699247,0.05350534,0.533858,-0.053389426,-0.07117382,-0.24095565,-0.4704395,-0.38357538,0.36239997,-0.057410788,0.38494045,0.07553669,-0.14396615,0.75974196,-0.17035504,1.0830952,0.015359866,-0.4414237,0.25372687,0.72497046,-0.04989228,-0.19157617,-0.17634337,0.8289645,0.47933474,0.030427566,-0.069940425,-0.26791537,0.09826696,0.07594102,-0.22080462,-0.08111078,-0.041005716,-0.3845841,-0.05950997,0.023708662,0.26337558,0.26313564,-0.16339353,-0.0056584678,0.39273632,0.007916528,0.3142804,-0.2063531,-0.3818324,0.43323585,-0.16116253,-0.0860455,0.14356692,-0.53029525,0.48707512,-0.4368822,0.14247672,-0.3707579,0.2682094,-0.21730086,-0.23774382,0.22383328,-0.011245314,0.30546045,-0.34630954,-0.3189967,-0.28068867,0.40290153,0.30624276,0.1963664,0.4214885,-0.2629277,0.1821843,-0.04311819,0.49661943,0.6829263,-0.11926587,-0.107993856,0.11497608,-0.5508537,-0.61219496,0.39898428,-0.41796336,0.12226378,0.23634891,-0.044137876,-0.3950115,0.25086054,0.18105894,0.14650024,-0.18431044,-0.9444516,-0.23303229,0.23352194,-0.24341956,-0.074130535,-0.45247486,0.033378497,0.5435892,-0.14561097,-0.45565245,-0.056814853,0.07699327,-0.12424708,-0.469394,0.007309266,-0.34645826,0.3172284,-0.16806799,-0.32963118,-0.18406697,0.101369314,-0.46913016,0.19346514,-0.17884864,-0.38485387,-0.030006906,-0.28931317,0.08635326,0.9285328,-0.3475087,-0.011810561,-0.24430484,-0.44721782,-0.7804563,-0.30561402,0.17640203,0.21172547,0.013799476,-0.7140873,0.030547833,-0.29927272,-0.20772532,-0.1357317,-0.41985095,0.40589347,0.20557421,0.44809204,-0.030945698,-0.7413155,0.32728896,0.014831098,-0.16916306,-0.5098703,0.5125989,-0.029548867,0.6746667,0.048963226,0.20356035,0.05755024,-0.456675,-0.031305287,-0.15395187,-0.13131776,-0.5432929,-0.024695067 +103,0.48125777,0.0073195347,-0.4162363,-0.08831044,-0.17591761,0.18482819,-0.04480177,0.34553477,0.20826145,-0.26108646,-0.2675181,-0.16998467,-0.07739484,0.27061063,-0.16769896,-0.6830594,0.108691275,0.1949602,-0.4210258,0.5316667,-0.39763623,0.27087888,-0.048435755,0.32318974,-0.049413424,0.071638465,0.1405959,-0.105501726,-0.035348304,-0.19024272,-0.11010997,0.098701306,-0.5174338,0.2344063,-0.119909815,-0.1317077,0.19612066,-0.29407266,-0.34480354,-0.63282055,0.20259385,-0.57431495,0.55992264,0.15474054,-0.20055582,0.20550476,0.1368338,0.2636609,-0.11322068,-0.037004184,0.0046072686,-0.043098085,-0.19261704,-0.100921966,-0.2128119,-0.43775776,-0.55842936,0.17008981,-0.37416476,-0.0071975165,-0.1339349,0.09743995,-0.24880323,-0.038410936,0.009859843,0.34016126,-0.22676294,0.029928325,0.2990381,0.009940199,0.13697806,-0.5686328,0.014267315,-0.11266097,0.22783457,-0.10751233,-0.270072,0.17880787,0.50359374,0.47645244,0.011715106,-0.25354013,-0.07242959,-0.19696508,0.15829447,0.47215304,-0.1310495,-0.56682587,-0.18779357,0.103334285,0.08624215,0.20838584,0.048123013,-0.3110411,-0.056326125,-0.1007803,-0.17515834,0.2775289,0.4561256,-0.38671228,-0.3353623,0.34606892,0.56468856,0.044538848,0.045473628,0.023418197,0.14151302,-0.5267662,-0.21414243,0.115641154,-0.29999548,0.4822491,-0.26190752,0.01341808,0.5369261,-0.10593225,0.06342326,0.18971793,0.09875616,0.033149533,-0.4044978,-0.1630312,0.15174165,-0.58719695,0.091350146,-0.16234626,0.8440727,0.2766532,-0.66076404,0.31918773,-0.5954054,0.15240753,-0.104048245,0.46562904,0.6724018,0.28104967,0.28988615,0.69692403,-0.4746241,0.08917993,-0.122027636,-0.2622881,0.0699623,-0.10850309,-0.0610814,-0.43121347,0.18745337,0.062267754,-0.09608432,0.014597961,0.15950836,-0.5137587,-0.095938995,0.11655756,0.7566897,-0.2401297,-0.18575546,0.60365975,0.943834,0.8694053,0.13050553,1.3724747,0.24702074,-0.21409877,0.26666877,-0.27610162,-0.78064966,0.20743789,0.25019312,-0.35452265,0.19233724,0.040273447,-0.06835173,0.32307753,-0.5456386,0.040903497,-0.15704493,0.4948318,0.019270131,-0.012044532,-0.3046403,-0.27188757,0.014139518,-0.06565333,0.2280751,0.32201758,-0.053835373,0.14228486,0.10204474,1.256549,-0.1470364,0.07676237,0.03079388,0.36119038,0.2664205,-0.08373671,-0.2228191,0.37625027,0.27861694,-0.004778411,-0.5359274,0.017535115,-0.2666823,-0.30359086,-0.25306344,-0.13479099,-0.12127707,0.17865443,-0.23603019,-0.15183382,-0.15868844,-0.17652069,0.7112939,-2.7365384,-0.20882702,-0.09426781,0.29073694,-0.37843415,-0.364373,-0.24141799,-0.48553395,0.52693045,0.18438466,0.39789656,-0.78280133,0.17563121,0.26455155,-0.4631864,-0.18650272,-0.6623731,-0.047018208,0.06391177,0.1654582,0.03695583,-0.108054124,-0.17185824,0.058040056,0.3273557,0.09724008,0.124745116,0.21538027,0.23344885,0.31260243,0.2692663,0.0060483688,0.59750473,-0.0963661,-0.13048746,0.20518778,-0.30737248,0.5528231,-0.20056595,0.06533454,0.36715892,-0.5539754,-0.63856554,-0.7169928,-0.5078901,1.0741762,-0.19735302,-0.18678172,0.0784752,-0.3431979,-0.20671327,0.034737144,0.3379969,-0.2286229,-0.16230032,-0.720192,0.058181603,0.08033036,0.23285685,-0.004294636,-0.04505586,-0.34186673,0.66637766,-0.18697716,0.27878922,0.3951992,0.13689935,-0.19435334,-0.5904211,-0.10483068,0.86171,0.45900354,0.14132227,-0.14601453,-0.27853838,-0.53130984,-0.21493094,-0.0019184862,0.5337692,0.74050146,-0.12794234,-0.16004303,0.2889183,0.04999249,0.13741641,-0.01588516,-0.4201284,-0.08034743,-0.16510573,0.5533639,0.46841723,-0.27212632,0.3004871,-0.03335992,0.23278318,-0.22351502,-0.32997844,0.5731627,0.98497444,-0.24055721,-0.17392604,0.5531432,0.29849073,-0.20256114,0.36129355,-0.5913761,-0.21128263,0.45100728,-0.031181647,-0.29752058,-0.019683126,-0.2991421,0.13449709,-0.9001335,0.4414886,-0.3553748,-0.40451744,-0.5480148,0.011015526,-2.7865436,0.261161,-0.23481473,0.06831994,-0.19919147,0.034641482,0.23071636,-0.37863395,-0.6056618,0.33091778,0.021897426,0.49578133,-0.092217125,0.20362043,-0.13210371,-0.23843257,-0.3974093,0.110426605,0.18383506,0.20195691,-0.12525705,-0.2262644,0.1592923,-0.17484328,-0.29561296,0.22195654,-0.61463344,-0.43210068,-0.18795674,-0.5469271,-0.30838206,0.6718574,-0.5069863,-0.021631347,-0.28749374,0.016660977,-0.18673857,0.20056848,0.06267819,0.07149679,0.016872773,-0.0033097502,-0.18925838,-0.34273654,0.2430471,0.04468303,0.21881476,0.3593491,0.02521704,0.105784334,0.36577898,0.63534135,0.024289113,0.75519276,0.36444524,-0.116969176,0.1981651,-0.22854151,-0.16552515,-0.17185046,-0.28272843,-0.197866,-0.37992105,-0.3671196,-0.016136732,-0.426433,-0.6811141,0.28580672,0.14254008,-0.019434744,-0.02957541,0.2692108,0.4441967,-0.22212349,0.17961057,-0.029347496,-0.15973891,-0.62727654,-0.36156133,-0.3676098,-0.3239457,0.4049966,1.0375235,-0.36547908,-0.08957465,-0.090598024,-0.21526423,-0.024238957,0.055609737,-0.11373533,0.06935729,0.45965725,-0.11816418,-0.53729284,0.37963992,-0.066011734,-0.22900847,-0.5357183,0.23097193,0.57874405,-0.66486824,0.70703316,0.45613003,0.12371792,-0.026046047,-0.48483077,-0.15424694,0.11151712,-0.39401108,0.2869253,0.34958768,-0.6519851,0.40392855,0.33449787,-0.19579418,-0.8258844,0.5054893,0.051519055,-0.17988035,0.022858748,0.48210594,0.20082124,0.08649012,-0.1838628,0.25484234,-0.45896468,0.05466791,0.20745751,-0.06327187,0.27098304,-0.2186964,-0.25654322,-0.73827505,-0.10280871,-0.63010514,-0.2864501,0.28327134,0.09037309,0.10104941,0.08301902,0.29573274,0.3523264,-0.3920569,0.17630169,-0.033205714,-0.23021258,0.21786407,0.35957035,0.35136154,-0.31112248,0.47451124,0.002015416,0.057717912,-0.19311757,0.16582601,0.41469255,-0.024019973,0.3160858,0.19793947,-0.117660046,0.16332829,0.8479298,0.027873963,0.17995445,0.12782894,-0.0010649615,0.29897675,-0.030505827,0.1917049,0.20000495,-0.49750724,-0.19433662,-0.15949473,0.16060694,0.3767228,0.21028623,0.25250906,-0.015428313,-0.27757484,-0.07522527,0.11815264,0.04866877,-1.0086745,0.39910525,0.123038396,0.6081193,0.58226585,-0.0069825095,0.17755304,0.4003453,-0.16970626,0.26348853,0.35526156,-0.11933408,-0.37244362,0.38590962,-0.66269743,0.3298996,-0.19195065,-0.0005924659,-0.010871415,-0.029470708,0.332058,0.92694813,-0.12069897,-0.015392555,-0.13237889,-0.24389662,0.15163778,-0.26180252,0.027640715,-0.6198085,-0.27804267,0.5878724,0.44709963,0.35898426,-0.23870376,-0.071889006,0.21277942,-0.0646186,0.084371254,-0.0073208255,0.13578342,0.17895328,-0.57314074,-0.23471297,0.60355836,-0.07309645,0.19039264,0.013085799,-0.11733455,0.17341426,-0.30495477,-0.0048505217,-0.123434685,-0.6883376,-0.043353114,-0.11833144,-0.36256313,0.3835819,-0.41040665,0.056686994,0.14148216,0.11130829,-0.28755632,0.37965065,0.04245943,0.57272595,0.01435756,-0.16775575,-0.4162195,0.22864291,0.07573097,-0.13551055,-0.012283764,-0.20088546,0.14347692,-0.61099297,0.5792879,0.01170605,-0.20736662,-0.011039694,-0.19820929,-0.049899805,0.5421437,-0.30001336,-0.16841586,0.16734055,-0.3557656,-0.28165224,-0.029831162,-0.037256528,0.23246075,0.35822418,0.036790423,-0.015069668,-0.22492155,-0.34155717,0.19706675,0.20489156,0.24115182,0.27073747,0.03181352,-0.30155352,-0.16746213,0.11529266,0.3812995,-0.046641856,-0.17303367,-0.1758091,-0.24970327,-0.32200193,0.20801885,-0.07710155,0.29389602,0.0148278605,-0.18028252,0.65945786,0.11033283,1.0661899,0.06567449,-0.263712,-0.14751954,0.53550225,0.031036654,-0.11374973,-0.38396007,0.9108287,0.46143606,-0.14131118,-0.1232112,-0.2962558,0.028615734,0.20731089,-0.05181121,0.07146644,0.07366104,-0.5066719,-0.31980297,0.27244693,0.2574282,0.08544992,-0.049511947,0.0077992934,0.063094325,-0.08406115,0.32791448,-0.44146279,0.04144379,0.27090803,0.32209238,0.20607376,0.26173753,-0.2522048,0.32992408,-0.59681904,0.09137545,-0.18769553,0.10383188,-0.18314233,-0.2919364,0.15590657,0.083741136,0.33456713,-0.30250105,-0.34979835,-0.20706405,0.43587118,0.2643118,0.1848205,0.6831643,-0.20394172,-0.07401126,0.12152814,0.6246562,0.96547925,-0.062909774,-0.039277103,0.24198604,-0.2488624,-0.5908887,0.35749945,-0.32676506,0.0415535,-0.07379812,-0.19327219,-0.6038968,0.23995745,0.24058633,0.2304897,0.10102068,-0.75298935,-0.10165452,0.14185707,-0.33224702,-0.17121252,-0.18464088,0.2102628,0.9012949,-0.17110297,-0.20572019,0.058718782,0.19092345,-0.23381183,-0.6319839,-0.08470596,-0.35119957,0.21529987,0.16354695,-0.24781549,-0.1266726,0.213313,-0.43288225,0.068297885,0.0152286505,-0.28582126,0.15189578,-0.26711807,0.086893074,0.7211255,-0.1455076,0.08468277,-0.49988228,-0.3778091,-0.660983,-0.2543314,0.4015101,0.10385573,0.11528533,-0.3955668,-0.16024254,-0.0573666,0.006775009,0.012642324,-0.33022806,0.48344684,0.133575,0.2548497,0.04648673,-0.83555347,-0.011956059,0.0608148,-0.1688369,-0.51393104,0.3086746,-0.056300074,0.9080601,0.027504222,-0.08564289,0.27318624,-0.48113555,0.08699525,-0.28643018,0.06298492,-0.78345066,0.12221248 +104,0.46852416,-0.254902,-0.50880307,-0.06867841,-0.24178244,-0.059161894,-0.20330863,0.31526366,0.03319034,-0.55463195,0.0038989743,-0.09467247,-0.061073788,0.3725186,-0.04163393,-0.46803224,0.06346588,0.10275689,-0.5995094,0.61362976,-0.46882617,0.5729838,0.08358525,0.14327243,0.12437658,0.2617726,0.171425,-0.17814948,-0.061597597,-0.10220888,-0.1402181,0.07086175,-0.6363265,0.11700096,-0.08527161,-0.27444464,0.047059633,-0.2598549,-0.47354153,-0.76134384,0.2667581,-0.78171104,0.5483641,0.020830922,-0.36227816,0.22905287,0.0710739,0.40770522,-0.32807302,0.19444299,0.2510336,0.052360076,-0.07841082,-0.106019944,-0.18649003,-0.41091076,-0.3318741,0.05870485,-0.54564065,-0.28893834,-0.2890665,0.07918235,-0.36957252,-0.057908285,-0.1109854,0.38929468,-0.4682836,-0.092503,0.14610837,0.045638863,0.41567805,-0.5949144,-0.13584042,-0.17887166,0.16828851,-0.27956173,-0.25830013,0.19274275,0.30166826,0.55666006,-0.056138404,-0.14009425,-0.03661818,-0.23400784,0.22294982,0.50386924,-0.21500808,-0.3781168,-0.14584494,0.047999058,0.13873437,0.12799376,0.057340607,-0.58767444,-0.05329958,0.03943817,-0.16244155,0.3612653,0.4623982,-0.27786055,-0.2205365,0.2570626,0.4865965,0.1897512,-0.10556407,0.1588342,-0.07958356,-0.42621288,-0.1448334,0.25712398,-0.030328061,0.45133564,-0.11569587,0.22567515,0.5934983,-0.30774373,0.014342296,-0.0947104,-0.08978332,0.032200232,-0.08026443,-0.2579788,0.102790594,-0.7511336,0.12814708,-0.0833617,0.68401885,0.2929077,-0.62026405,0.3344421,-0.49848303,0.09842787,-0.14267983,0.54871327,0.7581004,0.25157434,0.07945495,0.6411743,-0.52697504,0.100354955,-0.142739,-0.35472116,0.010820214,-0.0641769,-0.13465138,-0.50524116,-0.18080507,-0.041957036,-0.18122448,-0.16239528,0.29420662,-0.4750087,-0.07529745,-0.0015071352,0.714935,-0.4149383,0.2125831,0.53935033,0.9569674,0.97995883,0.22709268,1.1770567,0.33780333,-0.23345058,0.20089372,-0.24568768,-0.57943267,0.29593173,0.5252915,0.0074862163,0.26296747,0.06612222,-0.014507727,0.33715278,-0.4033293,0.05363648,-0.32095787,0.33314782,-0.13348633,-0.07648869,-0.5255134,-0.20897272,-0.17509702,0.15736064,-0.20705411,0.20122732,-0.2058683,0.24548881,0.017252648,1.5720688,-0.31435612,0.09943029,0.07623433,0.40173274,0.2972763,-0.2157018,-0.16769536,0.3170988,0.56284446,0.097638056,-0.65790915,-0.11890065,-0.27818865,-0.44260475,-0.21128538,-0.30001816,0.14358075,-0.075608246,-0.4268071,-0.12429149,0.08641874,-0.3059916,0.45036545,-2.4360235,-0.18810035,-0.13687436,0.2587476,-0.37404123,-0.40819234,-0.15189332,-0.3120851,0.4897787,0.35060748,0.45660096,-0.6116406,0.2776932,0.36012083,-0.3758639,-0.07858208,-0.6133382,-0.20541707,-0.025460493,0.42013898,-0.07948576,-0.05657036,-0.094923034,0.28094465,0.534625,-0.23056291,0.14589652,0.2373972,0.3378988,0.19419487,0.4452965,0.063085936,0.39695817,-0.36732668,-0.1212686,0.50257534,-0.048866674,0.09696056,-0.025735727,0.2382532,0.28801128,-0.6826355,-0.85847396,-0.6915429,-0.42035744,1.1757678,-0.26229563,-0.36127385,0.3921379,-0.2220596,-0.064581014,-0.048533812,0.33347437,-0.0127188545,0.09147536,-0.87498164,0.10129659,0.0657453,0.32717642,0.039969143,0.013217317,-0.32766473,0.5019912,-0.12798044,0.3626145,0.4290088,0.1971119,-0.04683215,-0.44478068,0.008089149,1.1954906,0.61636835,0.10560325,-0.1740376,-0.16288586,-0.31253204,-0.042024788,0.060232718,0.31064042,0.94829094,0.013023038,0.092724256,0.15120104,-0.10635985,0.11751068,-0.13148476,-0.28962862,0.008916186,0.052976623,0.54644966,0.22847815,0.005729527,0.6798309,-0.0855181,0.205043,-0.08293072,-0.46195552,0.47850105,1.1750056,-0.18739033,-0.15755872,0.49125093,0.37642097,-0.2472899,0.48532087,-0.6105231,-0.22265908,0.5606481,-0.19423465,-0.3581641,0.37019813,-0.39807957,0.30162904,-0.91346645,0.3983924,-0.3544684,-0.49309024,-0.5009353,-0.066149235,-3.3998246,0.34385642,-0.2778235,-0.24491991,-0.08115216,-0.13550122,0.37438905,-0.44583756,-0.45478278,0.20341744,0.00910716,0.6759533,0.08718219,0.012172062,-0.15150227,-0.26448005,-0.2431597,0.16559687,0.09623463,0.26251376,-0.13701123,-0.44965905,-0.111660115,-0.16091423,-0.3633782,0.029681236,-0.63801354,-0.5341391,-0.27759722,-0.54129833,-0.21854462,0.7143285,-0.11510695,-0.022352306,-0.0728661,-0.035056163,-0.052767042,0.44482198,0.19941965,0.26957652,0.0048833448,0.0022149484,-0.109755345,-0.3732553,0.051065207,0.20582703,0.0006894509,0.15681858,-0.15088421,0.20737647,0.5737355,0.6471891,-0.18320686,0.6504934,0.54607177,-0.26342717,0.33461198,-0.3283611,-0.27854636,-0.5935093,-0.45766973,-0.26308414,-0.296027,-0.5701463,-0.10412004,-0.22375454,-0.72134,0.56014246,-0.11467586,0.08785994,0.05225002,0.23333834,0.24251257,-0.14702663,-0.056456055,-0.1704407,-0.14631675,-0.54658115,-0.37219632,-0.670607,-0.4756814,0.024096496,0.9390694,-0.13279885,-0.029638862,-0.054196056,-0.25437522,0.062418852,-0.1416922,0.12322542,0.33243197,0.23791961,0.0075992583,-0.7068213,0.49323183,0.110473685,-0.18167442,-0.5522813,0.10954912,0.8624303,-0.60123307,0.3747985,0.27967793,0.028299754,-0.058266558,-0.51889,-0.22520031,0.26387772,-0.34517825,0.4340542,0.08334771,-0.7359048,0.40924826,0.5104956,-0.2002683,-0.66046107,0.60551,0.12460901,-0.2409272,0.089416064,0.3843197,-0.06753839,0.03615818,-0.389681,0.37729505,-0.38838816,0.25999016,0.39706817,-0.04551924,0.19915661,-0.27863476,-0.3233234,-0.6046392,0.1007066,-0.481676,-0.26845998,0.19881119,0.08553182,-0.022748271,0.16222307,0.07658269,0.4819663,-0.3362424,0.19748831,-0.16023256,-0.35573843,0.41315538,0.60158,0.23646422,-0.20480302,0.6772125,-0.011478549,-0.18164031,-0.29184386,0.065688156,0.51226187,0.17637523,0.13329026,-0.14963205,-0.2096878,0.30900213,0.9028093,0.10271595,0.5574911,0.13913435,-0.11062297,0.121218376,0.23977564,0.090482585,0.12456958,-0.3185886,-0.161934,0.10846802,0.17810424,0.5294505,0.17176062,0.23374167,-0.13703388,-0.20935796,0.050931398,0.19069248,0.16454701,-0.927561,0.43633953,0.14063923,0.44144887,0.47818005,0.032756258,0.059422664,0.5283094,-0.27045164,0.011282754,0.15182263,-0.14440608,-0.56128126,0.5827612,-0.6910115,0.41682413,-0.16192737,0.0647734,0.18421732,0.08517942,0.40781415,0.92609394,-0.0056182267,0.0873127,0.025898771,-0.2246034,0.056834877,-0.50460446,0.041642744,-0.33423144,-0.48942935,0.6803132,0.32709092,0.2223105,-0.13754314,0.037277468,0.10538933,-0.24533278,0.31187427,-0.09140197,0.08909993,-0.08383053,-0.6578167,-0.22353134,0.4797549,0.09442518,0.080197066,-0.02394496,-0.050822034,0.27343607,-0.18883738,0.11580915,0.04528268,-0.7481496,-0.009110649,-0.563147,-0.347015,0.3121677,-0.34900725,0.28984484,0.14231735,0.015454841,-0.24465373,0.44362944,0.15033646,0.73686105,-0.09392166,-0.20862903,-0.29299074,0.16071187,0.24994291,-0.23134041,-0.09500354,-0.2294449,-0.011076559,-0.9241683,0.40637475,-0.09504456,-0.22668843,0.25094593,-0.24420261,-0.074292965,0.49641502,-0.15447743,-0.14582096,0.010745064,-0.2278828,-0.2329757,-0.38938552,-0.097803816,0.27276576,0.20260319,0.04373361,0.010462065,-0.050881427,-0.04889003,0.4016553,0.07890463,0.401559,0.30793616,0.24294825,-0.42971328,-0.016405089,0.22793137,0.36651236,0.12901868,0.1088271,-0.16765253,-0.42677206,-0.35607997,-0.045284316,-0.19323982,0.3391105,0.13315096,-0.29915053,0.85116214,0.14670862,1.0743276,-0.09590249,-0.39493397,0.069480814,0.35986227,-0.09747182,-0.11391631,-0.25976402,0.7596286,0.63136035,0.0048225084,-0.1541045,-0.3029877,-0.34059843,0.26809314,-0.26966208,-0.19190283,0.033585288,-0.48229104,-0.33525187,0.31146342,0.32270804,-0.06897624,-0.042049725,0.05523305,0.13281201,-0.015916191,0.23600282,-0.52599245,0.07131109,0.3479443,0.20921156,-0.0119353095,0.12454663,-0.3719712,0.43100154,-0.6283671,0.070120126,-0.19427428,0.1304947,0.030334089,-0.24619038,0.15180202,0.06603284,0.426603,-0.38279602,-0.33069882,-0.22691065,0.61284,0.032348227,0.06643841,0.6059568,-0.30144998,0.20059995,-0.03341531,0.36253992,1.0591751,-0.29394296,-0.04204044,0.33390793,-0.42526838,-0.5788709,0.33631468,-0.18204829,0.3249162,0.056361463,-0.40872923,-0.4400135,0.2442369,0.25728244,0.004150625,-0.047750007,-0.4272363,-0.19617344,0.39389038,-0.21977085,-0.33170566,-0.37275106,0.20802563,0.5584756,-0.44758552,-0.3370539,0.058653656,0.15240666,-0.2667948,-0.48265442,-0.024547163,-0.28024343,0.35391146,0.14884885,-0.17874718,0.06683065,0.037935965,-0.47038513,-0.03727995,0.105130814,-0.44658482,-0.041964874,-0.19225755,-0.08912333,0.80462223,-0.20576115,-0.21573871,-0.61649185,-0.5423244,-0.79805744,-0.47187513,0.747701,0.28418785,0.1797878,-0.51374555,0.10721526,0.0038870582,0.24475746,0.051370025,-0.32095224,0.4433085,0.19083643,0.41395494,-0.22846001,-0.75526136,0.23809446,0.10507368,-0.15761207,-0.55338776,0.48582605,0.021578046,0.7939673,0.08015032,-0.052399907,0.30202264,-0.5835106,0.025362289,-0.20081188,-0.24000295,-0.719097,0.0026064834 +105,0.29438928,-0.13192235,-0.34572384,-0.13058536,-0.2870268,0.16073653,-0.11946653,0.20312464,0.12354601,-0.3665718,-0.153274,-0.0825751,0.05930397,0.40316525,-0.10146939,-0.6818228,-0.094573215,0.12654473,-0.68720394,0.36036608,-0.6165807,0.3953448,0.0804916,0.15629417,0.07061991,0.5373673,0.3353832,-0.2659717,-0.27141643,0.061351776,-0.22273675,0.15504663,-0.32623982,0.09818575,-0.10212744,-0.19812927,0.12588799,-0.37713864,-0.21206045,-0.5624863,0.15902176,-0.80193657,0.31873816,-0.11382101,-0.004024986,0.02450556,0.12893829,0.23795195,-0.38721395,0.16249695,0.26541188,-0.17342603,-0.038873084,-0.35444215,-0.14572807,-0.34727025,-0.31688106,-0.0019492998,-0.5135283,-0.47802684,-0.098281145,0.191491,-0.24753848,0.023839371,-0.05997948,0.23345612,-0.4457247,-0.015869308,0.27897903,-0.21476926,-0.012665798,-0.46907946,0.086205274,-0.031441327,0.5087245,-0.060320225,-0.051617216,0.4635252,0.33949247,0.32178378,0.27572417,-0.1573254,-0.2165319,-0.29499975,0.2304046,0.4074298,-0.16350645,-0.311471,-0.14706618,0.12392271,0.09929738,0.1947277,-0.037636954,-0.2969022,-0.10295895,-0.1075978,-0.17021015,0.26151684,0.4411795,-0.26664186,-0.22751962,0.3749862,0.60249394,0.09355628,-0.17967893,-0.16716778,-0.031743128,-0.392475,-0.14422593,0.21963748,0.07283538,0.36344004,-0.06896051,0.15697682,0.91421497,-0.19409204,0.17261885,-0.26291847,-0.08395982,-0.10254728,-0.1667978,-0.10836956,-0.02830384,-0.41168743,-0.028165141,-0.1700997,0.779672,0.2744276,-0.6545471,0.42360306,-0.40170333,0.12143213,-0.064854056,0.5741782,0.40189525,0.3481861,0.20222707,0.7258554,-0.4478408,0.3075149,-0.15992706,-0.43992862,-0.085242815,-0.12908237,0.037880685,-0.40088353,0.17621644,-0.14607626,0.04817114,0.042876102,0.1942011,-0.4571923,0.10449707,0.0663106,0.84914654,-0.49297905,0.023204109,0.52073884,1.0299524,0.8256161,-0.00303138,1.2132286,0.36674365,-0.2797578,0.11185736,-0.45759502,-0.5712748,0.14853431,0.31408167,0.15156773,0.19615982,-0.0053439606,0.046506103,0.25264707,-0.3809784,0.102496244,-0.12807858,0.23957185,0.10968208,0.16796805,-0.42133224,-0.15591161,-0.033905435,-0.061712068,0.19946876,0.16544348,-0.24179304,0.34939858,-0.042678863,1.6881156,-0.0814744,0.1622047,0.07264803,0.5263898,0.107183516,-0.089724384,-0.05129892,0.42775014,0.33248156,-0.19018456,-0.67948854,0.14313976,-0.32194352,-0.4755432,-0.091034666,-0.3806989,-0.109860644,0.1655914,-0.30494866,-0.1827498,0.008007728,-0.3659761,0.44377455,-2.7196448,-0.16326037,-0.088038735,0.31324783,-0.35619876,-0.21918172,-0.21204697,-0.4479452,0.21515457,0.24042337,0.36398667,-0.5699603,0.36043197,0.35452113,-0.352148,-0.30301672,-0.6212307,0.060341746,-0.056621194,0.4454427,-0.12241551,-0.029205013,-0.21382928,-0.0050190687,0.50789744,-0.066953406,0.092273995,0.48266372,0.29785883,0.4049705,0.43718314,0.04677342,0.56321985,-0.20306946,-0.14554396,0.34662515,-0.34748006,0.31562167,-0.16420437,0.104871556,0.33953437,-0.44200814,-0.6543084,-0.60229987,-0.42049336,1.0967374,-0.31370476,-0.27615827,0.19186032,-0.0041966983,-0.08478268,-0.030801913,0.44735864,-0.12725334,0.022514356,-0.5943424,0.18137819,0.00026043417,0.23110163,0.084240824,0.016776022,-0.25999293,0.58607143,-0.09179619,0.5234377,0.2695759,0.22729743,-0.01623444,-0.25194594,0.07814005,0.878357,0.19085579,-0.0041206935,-0.11657635,-0.32557583,-0.11980783,-0.3590787,0.029965302,0.32901573,0.77961224,0.09566375,0.0042903386,0.1639256,-0.11065712,0.015065705,-0.11240271,-0.2075793,0.03674258,0.017285144,0.38143355,0.4714691,-0.089403756,0.40406564,-0.23432069,0.3307984,-0.13183829,-0.3682333,0.5542829,0.4500728,-0.087449744,0.011797351,0.28009897,0.45303452,-0.3939922,0.38662377,-0.5265491,-0.17234407,0.706962,-0.35724658,-0.28948736,0.13436289,-0.22687696,0.12739575,-0.73500293,0.26490575,-0.1789397,-0.31789508,-0.41344324,-0.1201748,-2.8330173,0.06900329,-0.12868018,-0.225145,-0.097428754,0.0624352,0.19990605,-0.63962364,-0.39289582,0.14941399,0.11265262,0.4717681,0.07857951,0.14192663,-0.31258428,-0.042231414,-0.08366578,0.14523266,-0.016146258,0.33567098,-0.09740781,-0.3400661,0.022256501,-0.2230812,-0.41795138,0.23054047,-0.43519557,-0.30588126,-0.10676465,-0.45639372,-0.21534412,0.60806495,-0.50783974,-0.011275176,-0.16823785,0.06676264,-0.2786834,0.16913882,0.31482664,0.07477697,0.20909941,-0.022726193,0.06472812,-0.4128939,0.5220769,0.049381875,0.37834728,0.2564787,0.049270377,0.0025484036,0.3534914,0.5587705,-0.13051236,0.9554045,0.25551033,-0.17046915,0.2751572,-0.39999893,-0.14002846,-0.54454947,-0.43776175,-0.0047996463,-0.2449255,-0.534882,-0.06155475,-0.37109527,-0.7281175,0.41727772,0.008446423,0.24593942,0.0088839745,0.22222878,0.39707336,-0.18334894,0.0509705,-0.040026143,-0.06115482,-0.567979,-0.41776413,-0.61485624,-0.50272065,0.17829779,0.89336205,-0.3305245,-0.13889277,-0.25506347,-0.3535305,-0.07300193,-0.07157804,0.06757665,0.31191325,0.27323562,-0.13015105,-0.6285791,0.46951783,-0.06437799,-0.15302831,-0.4491505,0.0074604116,0.5526474,-0.6921154,0.47142416,0.3310368,0.140518,0.15608613,-0.40172508,-0.26414904,-0.036717385,-0.17873368,0.29680884,0.048206598,-0.6119896,0.4490851,0.25417736,-0.3655592,-0.7476489,0.17941748,0.060425416,-0.2743026,0.07647066,0.31472674,0.09505536,-0.18571985,-0.19059142,0.12020972,-0.38163337,0.27990016,0.3797132,0.008666025,0.24899194,-0.21644762,-0.3811166,-0.62131053,0.018003747,-0.39423734,-0.11973371,0.24982062,0.03488443,0.11621469,0.110138744,0.045842744,0.37530288,-0.295514,0.026630871,0.055447906,-0.13307743,0.14745295,0.23927599,0.27499536,-0.32066855,0.53463125,0.0007238002,-0.1273333,0.024696715,0.03261164,0.445549,0.13454024,0.15983991,-0.14303818,-0.2977981,0.4299879,0.7448479,0.18715797,0.26922452,-0.020545308,-0.32762572,0.4982301,0.056340076,0.06274554,0.19700325,-0.34502384,-0.062103488,0.10506489,0.1770562,0.33299547,0.3969068,0.49229965,-0.017569328,-0.20257756,0.13715613,0.11150163,-0.05297208,-0.82946914,0.32385132,0.10350682,0.68407583,0.35357922,0.12164065,-0.1453833,0.59574664,-0.33193877,0.16181938,0.3709967,-0.15891609,-0.51414376,0.60030866,-0.55102897,0.39507046,-0.112686805,-0.10838324,0.12950459,0.065049395,0.24072088,0.68727785,-0.07439315,-0.019489177,0.010440637,-0.19216368,-0.091536075,-0.2713222,-0.034193095,-0.40017515,-0.3261041,0.5585597,0.21875836,0.27881208,-0.11150211,-0.056431476,0.011149233,-0.08328908,0.21232283,0.0039375494,0.012348358,0.14417927,-0.43197975,-0.4245623,0.47027078,-0.08008991,0.13966675,-0.12722,-0.26163793,0.16897519,-0.27760112,-0.052967694,0.0024276883,-0.51414376,0.10137555,-0.20504497,-0.4544515,0.24401799,-0.08771617,0.2437865,0.17845362,-0.008617024,-0.19134887,0.47615364,0.25085112,0.8749938,-0.017266238,-0.24719918,-0.32652506,0.009514048,0.33919567,-0.18372625,0.21305934,-0.31576896,-0.016959751,-0.59613675,0.5976996,-0.18850678,-0.14508143,0.21621412,-0.3564693,-0.08827233,0.57529765,-0.083300345,-0.12852012,0.064052515,-0.06498248,-0.4530571,0.10149787,-0.33655947,0.12708595,0.33939078,-0.01696558,-0.15076236,-0.29980436,-0.2268335,0.46120307,0.124891296,0.43187442,0.120773904,-0.034980915,-0.13023652,-0.022496255,0.0815756,0.3001165,0.15389152,0.027734363,-0.30064845,-0.36081922,-0.30178204,0.23156825,-0.1532438,0.101503275,0.17239608,-0.39374897,0.6570044,-0.059274428,1.118535,0.20264755,-0.32464862,0.07888122,0.48996517,-0.011813474,0.2024307,-0.43250144,0.79878974,0.56524515,-0.0014985309,-0.08568484,-0.37928092,-0.20319949,0.3219462,-0.3340934,-0.026606567,-0.03475168,-0.5506127,-0.47847018,0.35953915,0.023590207,0.090024054,0.040628433,-0.090277225,-0.09075205,0.1807037,0.4388348,-0.58865947,-0.17781058,0.28128132,0.10101413,0.09516031,0.21227011,-0.42124134,0.59381694,-0.5550809,0.1664107,-0.29349172,0.09477687,-0.20328118,-0.2662032,0.15879834,0.07882528,0.3488365,-0.3789285,-0.49795094,-0.08527499,0.44595048,-0.09718412,0.27124718,0.53650236,-0.2759946,0.020865174,0.10600347,0.5538675,1.1130284,-0.28720334,0.121406615,0.43068096,-0.32953334,-0.51917815,0.3229027,-0.32856986,-0.14795166,-0.11715059,-0.31668258,-0.33411577,0.36747497,0.31134915,0.01139401,0.040373687,-0.45976162,-0.099240325,0.40857947,-0.3058383,-0.2977424,-0.14324023,0.33877918,0.64578825,-0.38148612,-0.30338064,0.0865311,0.29964373,-0.34899196,-0.40314108,-0.19260824,-0.1823464,0.35458907,0.24815801,-0.11984498,-0.06951576,0.13542488,-0.2623763,0.08772304,0.21515845,-0.4322219,0.07786342,-0.102226384,0.049242944,0.7284679,-0.023632785,-0.16294813,-0.7180526,-0.29780635,-0.9095912,-0.5959779,0.36722082,0.1095006,-0.013794597,-0.2803202,-0.01732599,-0.08744334,-0.0895243,0.0945441,-0.60309726,0.38873872,0.19139756,0.42605272,-0.32172605,-0.8216897,-0.05782602,0.1151787,-0.19816543,-0.5595347,0.561166,-0.12439067,0.8844803,0.0062839617,-0.2212918,0.16553392,-0.3198486,0.17310426,-0.4517521,-0.21418566,-0.8222533,0.12881206 +106,0.36905268,-0.05946387,-0.5680412,-0.32582617,-0.2330217,0.10398354,-0.05471226,0.30841658,0.29654837,-0.26685548,-0.04092077,0.06538613,-0.027443822,0.39426324,-0.0059011364,-0.7553383,-0.07753771,0.18835016,-0.58204526,0.34486657,-0.5691421,0.41249993,-0.051965807,0.39752933,0.08529745,0.4132151,0.07625001,-0.07522976,-0.07121963,0.2532934,0.10961076,0.2550391,-0.48344785,0.18138738,0.07647581,-0.35494038,-0.06098022,-0.3501572,-0.36223236,-0.53927994,0.36694282,-0.53042173,0.6285306,0.04180482,-0.34150496,0.13109478,-0.08940964,0.32639667,-0.48861906,0.18321082,0.15350421,-0.16503215,-0.00018879345,-0.19261596,-0.38234955,-0.43425903,-0.58913547,0.0350454,-0.4405672,-0.14433038,-0.16881545,0.09177412,-0.3237695,-0.11794997,-0.15451424,0.39080614,-0.5303288,-0.05889017,0.33658046,-0.2018902,0.051426798,-0.31296942,-0.12356662,-0.106205635,0.21004729,-0.09100175,-0.28116643,0.27370036,0.21634476,0.5836981,0.16201243,-0.2851788,-0.2758103,-0.076128185,0.21607706,0.543756,-0.16950612,-0.18023376,-0.3299844,-0.11843745,0.14568958,0.07093663,-0.011101706,-0.4167404,0.039270382,0.14164917,-0.12083439,0.38141558,0.53349125,-0.30297366,-0.33264655,0.35746923,0.50254077,0.029985806,-0.17828162,0.2734622,-0.08185865,-0.44257426,-0.3043949,0.03559176,-0.016223771,0.46237436,-0.07311227,0.17770585,0.7702822,-0.14485796,-0.06556032,-0.14235003,-0.0134391105,0.15255901,-0.41102815,-0.18374112,0.24430867,-0.50414413,-0.045011222,-0.13744678,0.6089617,0.15009925,-0.7554614,0.3390971,-0.45135674,0.1619264,-0.16205989,0.67158014,0.9009019,0.42470768,0.18906315,0.8105059,-0.6534196,0.16404796,0.18719576,-0.40951127,0.11939939,-0.12384671,0.053244766,-0.64617294,0.110069625,0.19949387,-0.05363732,0.10967127,0.23213987,-0.4212539,-0.1595193,0.09933133,0.7251849,-0.39673552,-0.07239801,0.77667385,1.0556623,1.0524279,-7.90315e-05,1.3330438,0.4560041,-0.31965044,0.24665366,-0.5196028,-0.5413917,0.21374784,0.32750347,-0.18466775,0.50219876,-0.025313804,0.17542233,0.52488095,-0.34665087,0.17818354,-0.02110858,0.14138483,-0.14421916,-0.11733178,-0.5404917,-0.22585547,0.08414946,0.061354697,-0.15198621,0.30798832,-0.2764547,0.49995056,-0.007967898,1.4510733,0.17284189,0.061644267,-0.0041410285,0.4390102,0.2649161,-0.3198309,-0.077850185,0.25135994,0.42646328,-0.15155771,-0.5862002,0.020435708,-0.33265057,-0.5384445,-0.2486474,-0.3674806,0.040552173,-0.14282347,-0.4826672,-0.06089216,0.070087336,-0.39653772,0.4159279,-2.5346272,-0.29099575,-0.12409548,0.26551637,-0.13061425,-0.3386648,-0.32549372,-0.46914142,0.20249917,0.27798608,0.39379284,-0.6340432,0.4463379,0.43937078,-0.41723534,-0.08095288,-0.5744692,-0.10861411,-0.09567509,0.17769875,-0.056552052,0.009632913,0.0070168045,0.3778489,0.61007786,-0.044210978,-0.07415156,0.12747417,0.39016888,0.04038133,0.5096686,0.19192937,0.6113955,-0.24142237,-0.13270696,0.3378809,-0.36543414,0.1868403,0.04889923,0.19318792,0.3791466,-0.50587296,-0.91763115,-0.55184174,-0.27321994,1.113464,-0.38702753,-0.31744576,0.3997944,-0.40537685,-0.43314865,0.02355818,0.36834437,-0.07197732,-0.0027824193,-0.71425503,0.08985053,-0.004395834,-0.00037929416,-0.05758769,0.150288,-0.24831688,0.6487584,-0.18001962,0.46166563,0.39510438,0.17411557,-0.18617389,-0.42447954,0.10402435,0.7898225,0.30750683,0.12664284,-0.05883584,-0.14625672,-0.16834475,-0.12956344,0.23894444,0.4596577,0.7906087,0.0061290157,0.15420976,0.25557736,-0.078796215,0.05146479,-0.06734489,-0.35196057,-0.10612958,0.07804935,0.5523264,0.6306724,-0.3128466,0.35698658,-0.1293204,0.13216719,-0.1512653,-0.5991841,0.53097373,0.76091653,-0.13238117,-0.25279337,0.6076278,0.34036097,-0.44321275,0.41013977,-0.62009335,-0.071375124,0.62794393,-0.15654577,-0.40350288,-0.0018026318,-0.30659622,0.038487177,-1.022072,0.23915216,0.03609424,-0.65652466,-0.3527362,-0.1883925,-3.7811298,0.11953562,-0.23538277,-0.1696126,0.0319455,-0.01782794,0.23346128,-0.6082255,-0.6054278,0.1165599,0.08887141,0.51978457,-0.042200472,-0.0011393683,-0.33993337,-0.18839471,-0.30819255,0.18154733,0.059261013,0.26653537,0.03834973,-0.5013278,-0.069555,-0.2138522,-0.5913413,0.06680252,-0.53064024,-0.53379315,-0.17229082,-0.55110526,-0.34597677,0.74547905,-0.27445933,0.008235001,-0.22508056,-0.026178796,-0.2425711,0.4240764,0.08777833,0.295626,0.15694587,0.03845402,-0.08238479,-0.28734276,0.1120847,0.08051622,0.42266068,0.26060146,-0.24503542,0.25913033,0.61869633,0.8617899,0.023789834,0.6385249,0.47332922,-0.1608169,0.33015186,-0.30016342,-0.107256316,-0.70143825,-0.5273551,-0.4246929,-0.465875,-0.6075757,-0.06290507,-0.4675366,-0.9292541,0.39969474,0.04915489,0.20335445,-0.13185456,0.12970212,0.36393458,-0.10861229,0.011648844,-0.28313985,-0.2611057,-0.5057091,-0.3242759,-0.7199961,-0.6516067,0.43120602,1.1258029,-0.214404,0.041614454,0.011769573,-0.4113563,0.111550435,0.31089756,0.1759751,0.21793953,0.24157695,-0.2609166,-0.63870966,0.34650794,-0.010798867,-0.12610961,-0.74650985,-0.0058267456,0.7126433,-0.50328904,0.80353206,0.17054093,0.1392778,0.041092794,-0.5261386,-0.35605142,-0.024512377,-0.20565185,0.6776115,0.15612097,-0.70879775,0.35161087,0.22076964,-0.18350782,-0.5638118,0.5173193,-0.040223267,0.005036838,0.024541596,0.41540733,-0.028200379,-0.23233445,-0.048692457,0.34239325,-0.36176056,0.31186396,0.36336905,-0.03347344,0.46299165,-0.05771276,-0.20444049,-0.8206342,-0.18048629,-0.6381011,-0.20446798,0.07083206,0.12231321,0.22169839,0.12750043,-0.005314908,0.36793914,-0.29020357,0.10391965,0.103474006,-0.37846962,0.27274626,0.49245235,0.24092536,-0.41363123,0.488929,0.10859758,0.07446939,-0.15692835,0.18364178,0.50531834,0.27439088,0.41237083,-0.09976093,-0.17290553,0.100838915,0.65789896,0.27117503,0.30615616,0.2171201,-0.21083197,0.2735408,0.17893519,0.1023044,-0.10040104,-0.22667618,0.07595407,0.05792495,0.2788627,0.37249523,0.13417219,0.40105605,-0.21346307,-0.16689661,0.31166178,-0.022638354,-0.046143413,-1.2048464,0.3627147,0.31114197,0.7394987,0.57052326,0.0017330945,-0.08082856,0.47306594,-0.30014852,0.11965049,0.4653868,-0.08829826,-0.38997263,0.56836355,-0.54633194,0.56922245,-0.04394003,-0.023618864,0.13847063,0.20895155,0.3850295,0.7776225,-0.03373551,0.037743628,0.06275862,-0.19246884,0.076979004,-0.2929528,0.06653705,-0.5705108,-0.21765624,0.7648438,0.48205763,0.23900561,-0.20466425,-0.105602525,0.09206324,-0.14673994,0.0934075,-0.022685427,0.033356942,-0.053565234,-0.6376956,-0.3691546,0.4438848,-0.04824261,-0.052592296,0.16565159,-0.25800353,0.20185065,-0.18344077,-0.03380388,0.009109105,-0.6533691,-0.021852417,-0.20057131,-0.4489272,0.53220636,-0.34981677,0.26952437,0.09564626,0.079957716,-0.35722968,0.288531,-0.056034803,0.75608927,-0.030585472,-0.24289405,-0.2634893,0.08189563,0.33446518,-0.27172628,0.07102649,-0.4042449,0.06229506,-0.60633355,0.4966183,-0.020480508,-0.21836136,-0.034153167,-0.023089895,0.10898749,0.3034168,-0.3257311,-0.28816685,0.048134234,-0.009344356,-0.3025376,-0.22718313,-0.29722622,0.33279538,0.021128224,-0.010453292,0.0563835,-0.1167117,-0.016125577,0.29617754,0.09207344,0.20677996,0.30731192,-0.18189916,-0.40792313,0.054896094,0.19522552,0.20509063,0.15262404,-0.0850013,-0.18988666,-0.24899125,-0.2162483,0.20942256,-0.22744863,0.2778041,-0.042836897,-0.24965374,0.752494,0.113792494,1.3630698,0.027996982,-0.25705582,0.10203589,0.4660011,0.13004385,0.11243171,-0.23105018,0.883756,0.65430075,-0.09895071,-0.41954806,-0.49894142,-0.19910853,0.17451246,-0.247798,-0.3360319,-0.0095307855,-0.8440084,-0.24344008,0.17913465,0.07896496,0.3186062,0.017249892,0.04680603,0.04791048,0.080234446,0.31931338,-0.5381643,-0.0871356,0.18286106,0.35018516,0.07271552,0.19866845,-0.2643171,0.37786254,-0.65338266,0.29954076,-0.27086878,0.08552784,-0.21321963,-0.35516262,0.15793903,0.1850081,0.2406731,-0.22843811,-0.2594118,-0.30073974,0.7646495,0.1034557,0.26800677,0.6868804,-0.32221797,-0.089595675,0.2023095,0.33103684,1.2848145,-0.025374407,-0.044995356,0.46933815,-0.2788574,-0.6733106,0.15639833,-0.37532046,0.27222678,-0.09604178,-0.38739708,-0.45647255,0.19986346,0.078371525,-0.14122818,0.22471479,-0.47855443,-0.23259282,0.33080107,-0.30094284,-0.23569718,-0.2818063,0.2047662,0.64272964,-0.43791717,-0.29258204,0.12930365,0.20033345,-0.35184526,-0.49805704,0.10359385,-0.3934265,0.35772747,0.081224255,-0.5331527,-0.003388226,0.18186624,-0.3359682,0.14484224,0.5911918,-0.41203886,0.060434777,-0.26226038,-0.35016817,1.120888,-0.0029927704,0.31899193,-0.60717857,-0.40212324,-0.99476975,-0.50541127,0.3366396,0.1301654,-0.1725376,-0.6201709,0.08214407,0.07824906,0.03960812,0.087932505,-0.48612633,0.40904394,0.16540833,0.3302903,-0.036407556,-0.97198296,-0.10157789,0.25599238,-0.20569839,-0.5928052,0.6339942,-0.14509365,0.8437454,0.116139196,0.22579537,0.19854379,-0.6022374,0.22179005,-0.48882487,-0.09792396,-0.52616847,-0.035878457 +107,-0.057643574,-0.14572653,-0.5093993,-0.049719196,-0.12182089,-0.089450344,-0.16710655,0.6396051,0.15733443,-0.4013616,1.4197826e-05,-0.27596885,-0.057852495,0.4131361,-0.15312397,-0.55610335,-0.20730166,0.29222026,-0.67414033,0.6197014,-0.44499937,0.056441866,0.020185411,0.33113942,0.1079584,0.14507933,-0.018458176,-0.028499853,-0.034910988,-0.1358054,7.7039e-06,0.1789721,-0.3103157,0.33221954,-0.033104487,-0.19032745,0.11086748,-0.39052638,-0.2700223,-0.5947369,0.16268459,-0.6213505,0.3625927,-0.07596738,-0.24102196,0.3427735,0.2355767,0.3883009,-0.21070966,-0.23422937,0.157758,-0.14125004,-0.4475495,-0.15005007,-0.4766596,-0.20711012,-0.56371564,0.009120503,-0.25736117,-0.05284409,-0.2325711,0.01672158,-0.29416677,0.036364336,-0.17955033,0.47729865,-0.32918444,0.15519246,0.16924444,-0.03784241,0.19173504,-0.65033346,0.012323132,-0.06344406,0.1559407,0.024066176,-0.26809937,0.2290822,0.22629225,0.38187099,-0.21117035,-0.03711771,-0.31472445,-0.32809857,0.019704778,0.477475,-0.04982657,-0.21087256,-0.15159905,-0.0061827423,-0.021915877,0.29421467,0.037253365,-0.39412802,-0.11638343,-0.18061168,-0.44494948,0.20612581,0.38761362,-0.20786002,-0.19747679,0.43989453,0.46522897,0.316341,-0.2736512,-0.14001384,-0.13464376,-0.568175,-0.12122922,0.18876357,-0.048133366,0.4884015,-0.10940441,0.16943443,0.40969285,0.053057086,-0.20532684,-0.08670403,-0.006189823,-0.163589,-0.34842706,-0.24871282,0.29123813,-0.38608474,0.16569564,-0.19669934,0.6501695,-0.09270587,-0.89720803,0.47403616,-0.5427619,0.18596247,-0.12890945,0.575976,0.63263404,0.53105766,0.310085,0.59404886,-0.28068474,0.13783808,-0.19269472,-0.28027806,0.088778615,0.108247295,0.20425399,-0.49245915,0.12850389,0.022716511,-0.1311135,0.059493005,0.29115278,-0.423671,-0.06850915,0.16515201,0.6496364,-0.31542316,-0.21145408,0.6105476,1.1128975,0.92813474,0.1294422,1.154574,0.1913596,-0.19726875,0.23397365,-0.21284619,-0.886216,0.13527408,0.24785414,-0.06597738,0.17005248,0.07162662,-0.040487837,0.42410856,-0.055775743,-0.09625568,-0.205066,0.2707992,0.034476656,0.07227577,-0.25765845,-0.4356695,0.0703045,-0.092581786,0.008646563,0.24300185,0.022554198,0.5077868,0.2013968,1.8062146,0.12864749,0.15572992,0.10518954,0.35125235,0.05674506,-0.11298349,-0.21430998,0.3488149,0.22515912,-0.001112485,-0.6528581,0.30733237,-0.09229998,-0.4338583,0.01777244,-0.34573707,0.0001329422,-0.27394456,-0.23003808,-0.2031457,-0.15623829,-0.43554682,0.46655124,-3.0930042,-0.015862262,-0.15792878,0.13755754,-0.25783998,-0.32206798,-0.07493782,-0.39807016,0.56707406,0.30510268,0.51079744,-0.4355051,0.31672066,0.3862753,-0.6722298,-0.13625653,-0.71959245,-0.0810117,0.05153046,0.29097003,-0.21084051,0.049394194,0.059297703,-0.0707074,0.21706727,-0.07521121,0.1328656,0.47437105,0.406602,0.045693982,0.5700158,-0.24709396,0.56106126,-0.29985946,-0.096876815,0.026343185,-0.2700783,0.34038797,-0.15614207,0.12752469,0.49309254,-0.477777,-0.6681889,-0.24213147,-0.26989576,1.345795,-0.49072805,-0.3270964,0.18347085,-0.25007173,-0.13774915,-0.21372876,0.44241184,-0.09356271,-0.4331972,-0.6779567,-0.023810893,-0.12106244,0.4784673,-0.08903398,-0.0027795925,-0.41227865,0.3852211,-3.582239e-05,0.55562294,0.5311851,-0.018628165,-0.39131436,-0.28144288,0.034073494,0.5391923,0.1977685,0.031665664,-0.21949601,-0.2508625,-0.36546943,0.014067614,0.12749064,0.43556795,0.46972194,-0.112951174,0.10056245,0.36069608,-0.35016093,0.024741769,-0.25079814,-0.33310464,-0.2525611,0.055256654,0.5411304,0.5688709,0.07085474,0.50433457,0.04392054,0.06637393,-0.21546099,-0.43292752,0.43805447,0.6490086,-0.1741643,-0.23750606,0.48185506,0.5764376,-0.3419125,0.37440398,-0.28032503,-0.12126267,0.60752285,-0.0466618,-0.34768683,0.2423242,-0.24227984,-0.07674181,-0.9994227,-0.09932648,-0.3987903,-0.49235764,-0.81155455,0.14530769,-3.0894744,0.16212094,-0.09571217,-0.31198207,-0.06789838,-0.20784657,0.064895876,-0.25712922,-0.6134282,0.18233833,0.32043973,0.44048738,-0.07237951,-0.12070416,-0.32081473,-0.15744145,-0.24439505,0.09327314,0.038808726,0.31415746,-0.14620826,-0.52538127,-0.060812376,-0.32603726,-0.3290607,0.10357511,-0.52706313,-0.0643159,-0.05384345,-0.7472651,-0.33256105,0.67873836,-0.44170156,-0.056324005,-0.17661777,-0.057749342,0.07307421,0.3227609,-0.12140568,0.1390079,0.09135196,-0.06302108,-0.17992647,-0.31660473,-0.05539902,0.058978647,0.24122521,0.34592193,0.049457036,0.19131418,0.49271423,0.7764927,0.1338487,0.92803085,0.4961875,-0.016524086,0.2921667,-0.32315856,0.17957063,-0.41460043,-0.07809968,-0.23458739,-0.3504251,-0.50712746,-0.07214701,-0.13587224,-0.6050803,0.5902667,0.34384274,-0.15164483,0.07646404,0.35407037,0.40949672,-0.04806315,0.25046176,-0.17433447,-0.20294006,-0.43869275,-0.36229572,-0.7096838,-0.2965181,0.16941252,0.87210286,-0.11959922,0.024668526,-0.07208059,-0.42187533,0.013216895,0.29543865,-0.03730632,0.4803222,0.19574182,-0.007025468,-0.50081915,0.46611285,0.06724333,0.0004511714,-0.55664265,0.3275481,0.6735729,-0.61264735,0.45820504,0.22090557,-0.08045815,-0.329933,-0.56322914,-0.24864988,0.03105005,-0.32331356,0.08903344,0.3144675,-0.87562275,0.4872489,0.34076336,0.0516964,-0.835063,0.4248499,-0.07322421,-0.22171903,-0.09140491,0.23689508,0.19621836,0.3155659,-0.30731243,0.15897247,-0.43331632,-0.021729821,0.09224311,-0.0037107854,0.23534803,-0.13999665,0.058096677,-0.7197243,0.17595978,-0.4452904,-0.23188761,0.5576123,0.10266845,0.30350488,0.01857093,0.07573342,0.26643604,-0.1394163,0.047772247,-0.18196781,-0.16022769,0.17803039,0.46972913,0.15402749,-0.568231,0.52953184,0.021488875,0.17929156,-0.018376421,0.009045154,0.3197158,0.14925571,0.26591113,0.07381539,-0.3734564,0.1510106,0.7082902,0.27561018,0.20938906,-0.024837326,0.11705755,0.44287968,-0.14438766,0.11310425,-0.0062072515,-0.47000456,0.0625384,-0.07511707,0.18714404,0.48984447,0.20009927,0.46196723,-0.13404766,-0.21193019,-0.009613737,0.122347966,0.09421384,-0.5774235,0.5723348,0.2484645,0.63042897,0.824567,0.021717776,0.17957693,0.7330984,-0.29418334,0.24694915,0.43779677,0.0051194774,-0.40787244,0.56934226,-0.65346175,0.53335226,0.030923147,0.0052220374,0.17052576,0.11364822,0.4917553,0.8509058,-0.23460951,0.030178586,0.05661596,-0.20119724,0.10382652,-0.24413309,-0.14070782,-0.41240102,-0.38679606,0.3787589,0.25328678,0.52522826,-0.1858562,-0.040664293,0.27138487,-0.045309365,0.29489484,0.072329275,-0.06414938,-0.1291739,-0.56471014,-0.26447767,0.627914,-0.16357227,0.2515487,0.13168655,-0.25872356,0.37015945,-0.060356498,-0.16250472,-0.03650926,-0.55623037,0.08319604,-0.12532079,-0.4803768,0.5938398,-0.22972047,0.31957585,0.15264894,0.07979337,-0.2844521,0.24351844,-0.01318118,0.8552367,-0.06289092,-0.18457665,-0.042316973,-0.04942907,0.13311553,-0.22004882,-0.15961617,-0.23526478,-0.07576808,-0.60078937,0.3580827,-0.15917686,-0.5155867,-0.04993845,-0.01032604,0.01718797,0.509589,-0.036866236,0.04137537,-0.2991208,-0.30211353,-0.19198695,-0.355606,-0.2462605,0.24398908,-0.11690603,0.18046588,-0.080416076,0.10695364,-0.091357365,0.53620183,-0.047391247,0.13236111,0.18545654,0.27978313,-0.3076908,-0.04856112,0.05172509,0.44412294,-0.080226175,-0.25021368,-0.05668353,0.010189056,-0.31329685,0.32465628,-0.10036502,0.5098152,0.029873382,-0.55338866,0.5998225,-0.1053348,0.934955,-0.12443503,-0.31008682,0.115441106,0.4254536,0.11262522,0.0075028725,-0.2663937,0.7433104,0.47007793,0.03577592,-0.18535869,-0.5824227,-0.16290793,0.19718897,-0.14285721,-0.27240798,-0.024975155,-0.44226646,-0.19725488,0.11325435,0.10092111,0.25880003,-0.14332704,0.010156041,0.1880336,0.20359762,0.40044928,-0.23409677,0.08421454,0.24107626,0.095430955,-0.024835372,0.1478927,-0.30996478,0.31373808,-0.6083746,0.3378294,-0.26947,0.106228724,-0.24654898,0.010363236,0.13077667,-0.1353205,0.22977784,-0.022417564,-0.3228099,-0.13952416,0.5213243,0.2493395,0.34207356,0.8404068,-0.2552616,0.12350045,0.044237174,0.48635578,0.8683051,-0.23983559,-0.31835654,0.25821725,-0.2852236,-0.5845829,0.20931287,-0.20642844,0.15116401,0.1520308,0.059509255,-0.39339906,0.10853281,0.2400283,0.015374494,-0.038924582,-0.46369654,-0.119855024,0.12545554,-0.38396916,-0.17263556,-0.46227694,-0.090502664,0.7574888,-0.28170627,-0.23264518,0.03911394,-0.086851284,-0.16168785,-0.44649523,0.106375694,-0.48233977,0.23654544,0.14860499,-0.49185172,-0.025361145,0.14149782,-0.5225344,0.055669308,-0.011841434,-0.20153275,-0.006339559,-0.3109024,-0.07103564,1.0641999,-0.2800628,0.18968563,-0.3302789,-0.6073303,-0.5929407,-0.20932141,0.30342156,-0.14308223,0.068244025,-0.50373447,0.009127599,-0.16192286,-0.38617495,-0.050798703,-0.34559268,0.43290004,0.051762115,0.093869,-0.117568806,-0.94620883,0.31663764,0.032006845,0.026716199,-0.35827738,0.58509696,-0.20961697,0.90100944,0.095926754,0.10972508,0.20886955,-0.4555261,0.13535371,-0.2119761,-0.30216998,-0.47746617,0.047940344 +108,0.22198999,0.1331043,-0.71064585,-0.19986522,-0.3244717,-0.093843795,-0.23143847,0.24392259,0.43887773,-0.16785808,-0.018061355,-0.053945333,-0.02068618,0.5487176,-0.12362116,-0.8443852,0.1801939,0.04904375,-0.62727326,0.2822285,-0.5889118,0.23640855,0.02366738,0.6123751,-0.10116038,0.30775157,0.3888336,-0.14000185,0.017260134,-0.1782999,0.092991866,0.3235668,-0.57793576,0.11142626,-0.06734515,-0.35857114,0.114391565,-0.37901533,-0.24164887,-0.6249055,0.35875142,-0.79607993,0.4368851,0.16206203,-0.33888683,-0.15653192,0.09640991,0.23744702,-0.2719341,0.062391132,0.31356338,-0.26698112,-0.03690252,-0.10249222,-0.19848005,-0.48981404,-0.565178,0.020490298,-0.641455,-0.30728102,-0.2997947,0.20384435,-0.25676537,-0.03836943,-0.23415639,0.46153107,-0.4421365,-0.06652128,0.19730179,-0.478309,0.14611839,-0.3479723,-0.16154419,-0.106597036,0.36149332,-0.04210642,-0.089762986,0.16252027,0.24178748,0.4443995,0.01569887,-0.10652373,-0.3412812,-0.11067607,-0.03259769,0.43961048,-0.21137142,-0.41079676,-0.17272931,-0.18068086,-0.01588644,0.17662847,-0.033481713,-0.35268125,0.028981103,0.079311214,-0.14307533,0.36138132,0.39775404,-0.3992778,-0.07416546,0.29398748,0.3036424,0.2069964,-0.27744678,0.18328737,0.033611123,-0.6347149,-0.29050842,-0.051524222,-0.032018792,0.5954397,-0.10700205,0.3277963,0.83503026,0.003464505,-0.0659796,-0.14180048,-0.19678752,-0.009400685,-0.14768386,-0.017066339,0.2515204,-0.36185372,0.12404955,-0.14968741,0.6716332,-0.010316301,-0.9787864,0.47612062,-0.5177093,0.031221414,-0.22619854,0.6583271,0.8074487,0.2679188,0.18774252,0.8478722,-0.6037186,-0.00022094448,0.13667175,-0.49014792,0.24236678,-0.0042303675,0.21729095,-0.46490037,-0.05873844,0.2224989,0.19989131,0.26423553,0.32222733,-0.41050902,-0.01115188,0.1603507,0.74984246,-0.33865035,-0.10016122,0.6951148,1.295166,0.8885687,0.10529927,1.3430414,0.25621364,-0.08694764,0.15722178,-0.16603445,-0.68340784,0.12751178,0.35148546,0.09511467,0.19608164,0.15295321,0.21947749,0.6010999,-0.29387867,-0.061158746,0.06357653,0.19131303,0.036817554,-0.14889936,-0.31193188,-0.26595604,0.13298279,0.13258465,-0.043964952,0.2805033,-0.23796403,0.35619387,-0.052482035,1.1553966,0.14651929,0.25271073,-0.032260075,0.57702106,0.14252637,-0.1578979,-0.17984642,0.20211013,0.24404104,0.097261526,-0.47459558,0.04501097,-0.30023655,-0.52451724,-0.21325032,-0.40053225,-0.12434306,-0.11401232,-0.3832337,-0.044958267,0.07387953,-0.33877632,0.41462365,-2.7213514,-0.08498206,-0.2336964,0.27275842,0.046648305,-0.19785576,-0.27545294,-0.42083773,0.42292118,0.522232,0.5338821,-0.56068224,0.5872562,0.4120132,-0.35074496,-0.15623875,-0.6402457,0.17246628,-0.15435886,0.33226848,-0.018967325,-0.20133509,-0.19552676,0.3211631,0.73675257,0.1390096,-0.07809934,0.025617758,0.45003697,0.030610358,0.5424934,-0.016689314,0.6171773,-0.28171965,-0.29153714,0.21222818,-0.5175327,0.2752402,-0.027711416,0.16191171,0.2854738,-0.4907011,-1.1363955,-0.6501985,-0.18525362,1.0976573,-0.25886583,-0.3828528,0.48129177,-0.07166157,-0.39969516,0.21159346,0.76974636,-0.22535898,0.12308162,-0.7030409,0.09457705,-0.21317284,0.282342,0.023175457,0.034135524,-0.54856104,0.6709697,-0.06267103,0.4776369,0.2794578,0.042107623,-0.29278687,-0.34860516,0.11547619,0.8533643,0.22073574,0.12401593,0.026880877,-0.15987268,-0.1103962,-0.14202374,0.09231931,0.77924806,0.57514834,0.0337368,0.1270586,0.2981056,-0.16125537,-0.043014903,-0.035387173,-0.36939248,0.06494188,0.18179683,0.5834906,0.7886202,-0.25327322,0.10344193,-0.021256393,0.42557654,-0.25874892,-0.41005075,0.41989803,0.44996798,-0.06540575,-0.20495151,0.6888642,0.64135695,-0.3907971,0.42288312,-0.57740474,-0.47927165,0.42284238,0.030003456,-0.4980477,0.010197431,-0.37657154,0.13033411,-0.8722432,0.33096594,-0.13725983,-0.8473738,-0.43232766,-0.22984733,-4.913692,0.1613619,-0.23269315,-0.046938103,-0.153917,-0.021080235,0.41409674,-0.5931079,-0.49605265,-0.14293645,-0.031851497,0.51267797,-0.15115233,0.1259108,-0.3135564,-0.27283478,-0.07648563,0.34788778,0.075362444,0.32189372,0.1463091,-0.2792867,0.086115815,-0.30500737,-0.37627158,-0.06133966,-0.58081955,-0.4742054,-0.109381825,-0.60985035,-0.2425213,0.7234359,-0.5350271,-0.03599085,-0.4240373,-0.031370018,-0.34498668,0.44150135,0.27597198,0.16976069,0.049051832,0.1709454,-0.36654794,-0.32894877,0.22451834,-0.01784155,0.39996347,0.387179,-0.0021356146,0.08519975,0.5656842,0.5674188,-0.018545775,0.88953835,0.19443786,-0.056548174,0.22897951,-0.37906012,-0.38810313,-0.80397016,-0.45146275,-0.17539017,-0.46008933,-0.4483557,-0.21408756,-0.37408677,-0.66872996,0.56189895,0.08467195,0.01872144,-0.02849706,0.13891353,0.22551262,-0.09790037,0.0103490455,0.018617189,-0.1387975,-0.55006295,-0.2184763,-0.657432,-0.64091754,0.011884277,0.9816368,-0.21107398,-0.0724652,0.21997339,-0.2751607,0.069785625,0.18756421,0.33826885,0.24340932,0.3630166,-0.18298133,-0.7566475,0.47336772,-0.5130641,0.000531435,-0.70334774,-0.04270635,0.7586367,-0.7757074,0.76041055,0.46944645,0.4029759,0.2577814,-0.47386804,-0.5294404,0.034369946,-0.183924,0.54101455,0.27969655,-0.84362286,0.48091507,0.07461777,-0.13733564,-0.648722,0.5592281,-0.21384211,-0.2745972,0.1886371,0.3910551,-0.030192515,-0.11731791,0.028382765,0.17764366,-0.36150396,0.30420318,0.2467047,0.07251448,0.6977325,-0.17119491,-0.081005,-0.5921323,-0.2621274,-0.50759536,-0.19584435,0.034974802,0.09581896,0.08841723,0.21613128,-0.13019376,0.3775407,-0.31577647,0.19068082,-0.11687064,-0.28160217,0.29952148,0.63746405,0.37515488,-0.51452,0.67845774,0.108435206,0.062266093,-0.12290996,-0.029679677,0.47885552,-0.026961451,0.500749,-0.1254981,-0.15195554,0.10216827,0.85570645,0.14210817,0.3413038,0.080572955,-0.03823709,0.39785638,0.1314535,-0.01566425,0.028414994,-0.50272065,0.08454541,-0.12418464,0.30943438,0.35766983,0.16835858,0.31630918,-0.028523276,-0.2380216,0.26334396,0.28695294,-0.0016658654,-1.0497884,0.46716404,0.2303458,0.5943358,0.60186696,0.09572195,-0.084661216,0.7052358,-0.22980483,0.09979832,0.23871474,0.054239113,-0.5302635,0.68796223,-0.49698877,0.47441506,-0.23176412,-0.11649542,0.15986641,0.19513178,0.33545056,0.78933454,-0.103200294,0.1387895,0.120595224,-0.27990568,0.05055198,-0.24385329,0.119570345,-0.5569126,-0.23436944,0.6674064,0.62083286,0.27449223,-0.34894797,-0.10015616,0.028386744,-0.080951065,-0.0014982609,-0.28350973,-0.062402517,-0.04725338,-0.859232,-0.18028508,0.6195919,0.060145896,0.050265487,0.17431748,-0.47254565,0.4139872,-0.088758916,-0.07349654,-0.07014594,-0.39264885,0.084934436,-0.22437797,-0.6383075,0.40279448,-0.3720849,0.4812338,0.07906123,0.09763739,-0.2647541,0.3620795,0.046340335,0.73473674,0.053901877,-0.09180113,-0.14401327,-0.020766186,0.26564565,-0.31334853,-0.3945888,-0.7065294,0.09199204,-0.44197264,0.3030764,-0.23238565,-0.30865398,-0.24349213,-0.030965209,0.17174608,0.43906534,-0.17267644,-0.25219384,0.22979093,0.091854185,-0.21016377,-0.057388466,-0.5692249,0.27262637,-0.06177536,-0.024273952,-0.08557073,-0.12328415,-0.11347085,0.30537495,0.02587212,0.27127874,0.30639967,0.11525515,-0.13487546,-0.032801375,-0.057385493,0.46652138,0.16746227,-0.02444761,-0.23026137,-0.45969343,-0.2848187,0.2800712,0.010242981,0.1552567,0.2931701,-0.33358097,0.49825454,0.23867173,1.211738,0.15612702,-0.26220277,0.20261829,0.46813384,0.06061773,0.1489343,-0.3394438,1.0340654,0.5524366,-0.3755816,-0.15610792,-0.520701,-0.1336836,0.07374623,-0.24721587,-0.31569687,-0.18949296,-0.7613246,0.030841598,-0.0039394945,0.3018346,0.22753008,-0.044585675,0.066306494,0.015530583,0.26811936,0.27622014,-0.52896005,-0.2323658,0.5346517,0.3381996,-0.08415983,0.10511515,-0.3017952,0.4874947,-0.63227636,0.06015609,-0.67735934,0.088929325,-0.3403362,-0.37809896,0.06619048,0.06931731,0.3976287,-0.069168635,-0.21144438,-0.21792667,0.672887,0.37000212,0.32449993,0.8142519,-0.18486111,-0.23010123,-0.048800096,0.63768065,1.2565732,-0.17089492,-0.0053198137,0.31995222,-0.15776812,-0.5777314,-0.10605439,-0.5712618,-0.15324445,-0.08764622,-0.38053593,-0.34391677,0.27542362,-0.04578659,-0.17247014,0.0551216,-0.38574418,-0.12908046,0.40347973,-0.13434958,-0.3510168,-0.37781525,0.31560373,0.7303762,-0.3986586,-0.25574967,0.016854504,0.32553706,-0.21673845,-0.60938054,0.0628618,-0.097917,0.4126192,0.2140146,-0.54233986,-0.12455621,0.3537589,-0.47418404,0.2942362,0.3099493,-0.32473293,0.08844178,-0.37392965,-0.06909549,1.1663948,0.094998725,0.26302978,-0.58983034,-0.5712233,-0.96125156,-0.24678652,0.22351192,0.13243456,-0.09870259,-0.39872375,-0.1620097,-0.10758793,0.009445767,0.073841095,-0.47435078,0.29509258,-0.017059509,0.68764836,-0.064745076,-1.019073,-0.06721467,0.14810199,-0.1941074,-0.5462622,0.51500887,-0.18667643,0.7994408,0.027260462,0.048018243,0.27996546,-0.490285,0.32662043,-0.3284137,-0.09842336,-0.65987873,0.16296066 +109,0.51340634,0.031369865,-0.5147417,-0.25399318,-0.3918769,0.08303189,-0.19596274,0.18219104,0.37742522,-0.18401237,-0.10019727,-0.12723036,0.06862428,0.29400274,-0.02837506,-0.77104694,0.02108325,0.1910463,-0.83721346,0.53779966,-0.5094853,0.35391837,0.050993014,0.55727285,0.1136626,0.28402758,0.014576538,0.019846804,-0.016429394,0.1155504,-0.07038914,0.5134722,-0.75132096,0.14611636,-0.07905078,-0.23574258,-0.23273124,-0.42945454,-0.2593819,-0.64281243,0.36324698,-0.8087671,0.57917076,0.031437088,-0.48024434,0.0620091,0.09783078,0.26515877,-0.39091188,0.059706815,0.1784555,-0.41808736,-0.03301411,-0.12991062,-0.25346768,-0.4466482,-0.6723703,0.03699386,-0.63057935,-0.12558696,-0.2823295,0.26521674,-0.30156252,0.035371773,-0.31262907,0.40550676,-0.3224947,0.10769741,0.3621149,-0.22630456,0.06804845,-0.22256981,-0.12277262,-0.11895889,0.3483163,0.007965915,-0.45387644,0.20829585,0.26550537,0.65399224,0.13806042,-0.41101748,-0.26504982,-0.025078647,-0.08384848,0.40301916,-0.07090813,-0.17430624,-0.33772177,-0.09599739,0.16929366,0.33808678,0.090156816,-0.37197307,-0.050650224,0.09314075,-0.024051026,0.48135564,0.50020283,-0.31876814,-0.28971153,0.29123914,0.49114874,0.12187341,-0.32406744,0.13295656,0.03321054,-0.65260386,-0.20883562,0.19519505,0.04659693,0.52018785,-0.11657895,0.07911427,0.8063543,-0.05847439,-0.21093361,-0.23002917,-0.17478545,0.053375002,-0.40419763,-0.04347888,0.2953852,-0.36237103,0.095844895,-0.16314715,0.53454375,0.102091715,-0.7790461,0.3144975,-0.57738197,0.27738053,-0.09456185,0.6313972,1.056843,0.35333484,0.33755904,0.85047275,-0.47123036,0.18752351,-0.0006487947,-0.40866724,0.15806088,-0.22426534,0.29564822,-0.4465145,-0.053596426,-0.01643896,-0.16835068,0.069745705,0.31196955,-0.5008515,-0.12653597,0.10236891,0.72623736,-0.3750512,-0.13397673,0.9616392,0.95919955,0.92355835,0.08523014,1.2886094,0.43333134,-0.15498886,0.16078536,-0.26090083,-0.68535,0.09190629,0.24753365,0.10346574,0.37313226,0.12398621,0.20887984,0.4921211,-0.29227078,-0.010818023,0.066470474,0.123163395,0.03749114,0.010166146,-0.456048,-0.07405749,0.091537654,0.15239286,0.062059708,0.26921612,-0.060329616,0.4072827,0.02632337,1.6261849,0.13022283,0.09439023,0.021213196,0.34279883,0.3047279,-0.2577554,-0.16021512,0.36932275,0.40680656,-0.009443298,-0.4779479,0.033761993,-0.2110498,-0.26923132,-0.21356913,-0.4592834,0.014659379,-0.29133946,-0.5459257,-0.19477817,-0.002026111,-0.3531142,0.476175,-2.6327672,-0.26238492,-0.064465016,0.36896044,-0.05156164,-0.333857,-0.3615405,-0.52054334,0.207239,0.3748628,0.3031629,-0.69086796,0.40370154,0.25731426,-0.40241438,-0.089303695,-0.7164858,-0.023573719,-0.07747762,0.36545852,-0.107651934,-0.01592394,-0.06875802,0.42058614,0.6543965,0.033883095,0.0093279965,0.23504975,0.5115883,-0.13228859,0.64297205,0.17072675,0.5045201,-0.11859402,-0.22239202,0.32005784,-0.33350086,0.3612552,0.070489325,0.04989611,0.47452587,-0.4186504,-0.8062243,-0.54070675,-0.17491199,0.9451275,-0.45310023,-0.31265602,0.3166775,-0.44721216,-0.24276768,0.044989213,0.5953323,-0.047417194,0.099470034,-0.75298125,0.014448099,-0.08744468,0.23757437,-0.1200605,0.1723148,-0.32184094,0.69466037,-0.24979657,0.4178819,0.2693743,0.10465735,-0.19589056,-0.47448075,0.29773527,0.7993429,0.30901328,0.10978073,-0.18261315,-0.31790066,-0.1408586,-0.15638518,0.14290129,0.6865788,0.58411473,-0.10297472,0.22155628,0.44392517,-0.18098678,-0.03158091,-0.12729265,-0.22130021,-0.037129622,-0.017585078,0.48668495,0.86040115,-0.17241892,0.40431923,-0.07359396,0.31210244,0.008390484,-0.6245127,0.5639414,1.0001829,-0.17041321,-0.15606847,0.53116953,0.32038736,-0.38414446,0.4144078,-0.52021766,-0.10103938,0.6481327,-0.031525478,-0.39725584,0.23911913,-0.43711585,0.04769954,-0.88069934,0.22617757,0.1186154,-0.46296695,-0.42526844,-0.13187799,-3.861787,0.2016082,-0.19873908,-0.076108746,-0.12503374,-0.26597482,0.31677765,-0.578423,-0.5704962,-0.00017171912,-0.0030567031,0.5021751,-0.22769287,0.0897446,-0.33997083,-0.2676564,-0.20378646,0.27087903,0.20596676,0.42856807,-0.10487938,-0.40511775,0.015897233,-0.24327189,-0.5396502,-0.06049222,-0.5798881,-0.56455654,-0.11890492,-0.4492307,-0.23243067,0.7119305,-0.26333433,-0.028259218,-0.43728638,-0.13236982,-0.09422109,0.29539618,0.29064816,0.3305925,0.18488991,0.1888181,-0.17844243,-0.2742392,0.14833724,-0.066669375,0.22054276,0.30201274,0.0047008665,0.29303306,0.3862119,0.685496,-0.230182,0.79167527,0.44784352,0.01527093,0.28551975,-0.26039904,-0.25204456,-0.83642876,-0.28588563,-0.29196715,-0.54942584,-0.37052757,-0.15674931,-0.36135685,-0.8320081,0.4906324,0.075565666,0.20744602,-0.09079054,0.3083021,0.4532878,-0.23525907,-0.027554594,-0.058600314,-0.32684872,-0.6034306,-0.33807898,-0.550172,-0.7416791,0.2039793,0.9135535,-0.15688984,-0.041215613,0.023611443,-0.24514854,0.04977432,0.18751603,0.1658925,0.27040246,0.49051085,-0.09265822,-0.5499972,0.4849552,-0.3437974,-0.15460092,-0.69207406,0.15715544,0.5747812,-0.62479985,0.78130925,0.27910113,0.23772627,0.011460908,-0.6643705,-0.34484488,-0.07254459,-0.1931465,0.6620787,0.25758302,-0.80297816,0.48013496,0.13589337,-0.10340083,-0.6416314,0.4809453,-0.19388947,-0.2562384,0.21168096,0.31157774,-0.034747332,-0.06911216,-0.012027383,0.24868503,-0.4448393,0.1769036,0.47353175,0.023269322,0.24498801,-0.016488373,-0.105762236,-0.60001963,0.055764936,-0.6115716,-0.3469165,-0.061529204,0.022918057,0.15995559,0.09255189,-0.051165543,0.4083841,-0.30888134,0.23841754,-0.14203912,-0.26235098,0.21305408,0.58270276,0.3426337,-0.54379636,0.59844077,0.14150597,-0.001377061,-0.035538673,0.20543137,0.50979567,0.11472969,0.42627764,-0.19370633,-0.04429086,0.1739282,0.6891214,0.14567044,0.38012084,0.09173219,-0.09004854,0.32142982,0.14436954,0.22982995,-0.12701137,-0.28822416,0.023215864,-0.100167684,0.33337533,0.48089236,0.17920277,0.31512427,-0.09890257,-0.21667454,0.24045308,0.099253364,-0.041025396,-1.4343108,0.31014967,0.40086037,0.79983664,0.4436268,0.100169495,-0.097942844,0.42303115,-0.38542956,0.13715215,0.39004454,-0.010991113,-0.26360965,0.5374158,-0.62641764,0.58284086,-0.1548379,-0.062453806,0.16361274,0.30370724,0.40674567,0.8772228,-0.2255598,0.09169459,0.07513563,-0.18887398,0.113135435,-0.38346335,0.013377884,-0.51755583,-0.38394392,0.6107933,0.4264472,0.34247422,-0.49337187,-0.07830666,0.023412962,-0.119537756,-0.1454245,-0.15665174,-0.073738046,-0.039079983,-0.5691789,-0.406281,0.5429398,-0.32858717,-0.031944238,-0.012128316,-0.35058022,0.1767575,-0.066100635,-0.020747937,-0.09220142,-0.78001904,-0.107629076,-0.3527881,-0.5283892,0.6122276,-0.48544556,0.22403379,0.228564,-0.002926818,-0.3556925,0.3740126,-0.110430464,0.7690125,0.013789192,-0.037863385,-0.40533537,0.15473482,0.41785836,-0.32092947,-0.13836546,-0.448736,0.17191245,-0.51038885,0.42713726,-0.12764972,-0.4222115,-0.19088188,-0.005916615,0.1358976,0.47867146,-0.2701447,-0.26409057,0.24275103,-0.14952128,-0.17629907,-0.1292792,-0.30856737,0.3458546,-0.0056111254,-0.019991808,0.14284588,-0.016420748,-0.023580492,0.38735598,0.17926012,0.35346925,0.31916428,-0.08658856,-0.21298972,0.13900699,0.0806196,0.34156123,0.10185455,-0.12642688,-0.23114261,-0.2965026,-0.38317227,0.2975533,-0.14794055,0.27825138,0.106195435,-0.42080715,0.7511525,0.2645223,1.1773028,0.11517328,-0.41872987,0.24677595,0.39522707,0.010780525,0.15855224,-0.28498784,0.8290056,0.38460252,-0.13823009,-0.23747098,-0.27002704,-0.09646862,0.21703981,-0.26631644,-0.2293932,-0.19805282,-0.7135885,-0.11548003,0.06261515,0.22919297,0.18487582,-0.086317874,-0.09057307,0.0795405,0.08141109,0.38681376,-0.4580842,-0.032644514,0.33288756,0.2862874,-0.051335774,0.2188792,-0.23418666,0.49636653,-0.48007396,0.08694856,-0.619944,0.18587717,-0.14896145,-0.3150843,0.13069059,-0.15282613,0.27401987,-0.3246302,-0.24242221,-0.36596897,0.61801267,0.27966806,0.2620808,0.7424871,-0.27772874,-0.16064349,0.20935479,0.47344857,1.2998774,-0.25241917,-0.0152471475,0.3174434,-0.22327384,-0.55859965,0.10269724,-0.36371318,0.12859905,-0.10711075,-0.42006016,-0.28922936,0.12038779,0.020981405,-0.05151988,0.10426663,-0.5732384,-0.07174809,0.40565565,-0.20195091,-0.23112851,-0.38986176,0.3081491,0.703299,-0.3597253,-0.37752095,0.12625228,0.2340063,-0.27937555,-0.48983023,0.05357468,-0.33230364,0.36817893,0.037704293,-0.4491402,0.042704653,0.18750447,-0.46719512,0.13242567,0.44781923,-0.24695626,0.14385617,-0.22189678,-0.366124,1.2231778,-0.014380977,0.14245805,-0.5677751,-0.6288173,-0.99613285,-0.41177696,0.11442784,0.20608315,0.046306733,-0.51000154,-0.10475718,-0.005680591,-0.12177518,0.14483717,-0.49253798,0.40893146,0.115191035,0.48271492,-0.083316684,-0.99237204,-0.14093436,0.08105995,-0.31671625,-0.51503825,0.5959605,-0.0857666,0.7121539,0.13665304,0.17894235,0.1406575,-0.5963039,0.23654796,-0.28703552,-0.006518852,-0.73667324,-0.027200103 +110,0.3254008,-0.08864724,-0.45370927,-0.22267224,-0.040822204,0.113619246,-0.2233838,0.25848043,0.04372239,-0.52268046,0.17856668,-0.30619413,0.047079563,0.16408825,-0.010450216,-0.6211886,-0.021781301,0.07853089,-0.4217099,0.55866313,-0.59601474,0.18245234,0.2553,0.012008484,-0.28318936,0.27790567,0.34378067,-0.41754436,-0.16243683,-0.16955802,0.0010654847,0.013576537,-0.44179916,0.26326516,0.01536836,-0.12961191,0.27475637,-0.28777802,-0.24156919,-0.5034004,0.016665565,-0.6227681,0.2593793,0.093811244,-0.18298177,0.5442018,-0.028451996,0.059086647,-0.32785743,0.23268041,0.30949828,-0.05606358,-0.18756455,-0.2860144,-0.22363923,-0.6693995,-0.4752287,0.012128202,-0.41310012,-0.19759159,-0.16754727,0.091842294,-0.28262034,-0.036203794,-0.17716941,0.3464935,-0.3789598,-0.059051774,0.04829866,-0.2814809,0.31172848,-0.4382197,-0.01756403,-0.049957898,0.08147419,-0.01993124,-0.025805503,0.23015116,0.2447126,0.56433797,-0.045990236,-0.13163929,-0.20641035,-0.21407562,0.19104406,0.5708714,-0.17592797,-0.2879071,-0.09242327,-0.15206541,0.032685604,0.15807216,-0.15078464,-0.40497145,-0.17079973,-0.035662603,-0.4713343,0.07268823,0.46456024,-0.44621557,-0.073731296,0.44184396,0.21193293,-0.13734823,-0.12515314,-0.044875342,-0.12593275,-0.48224747,-0.073801346,0.26707545,-0.13908507,0.49321786,-0.13592686,0.18481432,0.5930402,0.019223355,0.08421775,-0.16892855,-0.101353124,0.123095036,-0.12903498,-0.13219346,0.18568334,-0.41753143,-0.1538022,-0.5005104,0.7492254,0.015229664,-1.0079987,0.45895508,-0.35268268,0.055820726,-0.13710405,0.62573737,0.55075765,0.49164113,-0.09485642,0.65656,-0.61312175,0.14641912,-0.21508284,-0.33369765,0.2676192,0.19798112,0.1418967,-0.4151804,-0.0190152,0.195755,-0.08378028,-0.15481399,0.51631206,-0.3187459,0.032766122,0.22551918,0.8132891,-0.3464857,-0.1375302,0.312838,1.015015,0.66318685,0.114173315,1.2511809,0.24576458,-0.2365109,0.08312974,-0.40001076,-0.7068607,0.13738172,0.3904587,0.7089004,-0.00403746,0.04784452,0.0068986733,0.2511042,-0.11167826,0.04074518,-0.30966637,0.21742164,-0.08501204,-0.11274357,-0.26462963,-0.26010418,0.065481916,0.036820985,-0.036741234,0.20305175,-0.0722007,0.26594034,0.009770107,1.7639561,0.004692069,0.24078181,0.14709324,0.22143364,0.23194058,0.06370536,-0.14323163,0.46237764,0.17763628,0.0045670867,-0.5326846,0.13974898,-0.076975,-0.5258915,-0.017294744,-0.27261728,0.12992376,-0.16215488,-0.35755584,-0.047174048,0.1557536,-0.47808304,0.3746157,-2.9010975,-0.11232246,-0.07503225,0.27316418,-0.34504643,-0.21915847,-0.123934455,-0.34443036,0.56118244,0.4977637,0.5295235,-0.5276206,0.32230723,0.36141637,-0.32856673,-0.08185489,-0.706425,-0.07043617,-0.1776088,0.34700906,0.028787227,-0.2402635,-0.09600724,0.06872937,0.37597263,-0.12975784,0.007938066,0.22939914,0.355734,0.3132355,0.4829704,-0.090492815,0.4114583,-0.18010888,-0.05951232,0.17041442,-0.28161913,0.21326965,-0.16578022,0.1691485,0.19979528,-0.41574365,-0.7223725,-0.40120354,-0.30884913,1.0839635,-0.425088,-0.32431895,0.31256884,0.3143126,-0.16534057,-0.019769816,0.35732853,0.04565634,-0.038911596,-0.6839033,0.037756708,0.10956605,0.37618366,0.049364574,0.0639275,-0.42260057,0.5415433,-0.021154102,0.6010429,0.50530326,0.087651186,-0.06952848,-0.2781134,0.070533484,1.0121472,0.18072456,0.06795716,-0.15823112,-0.17069921,-0.18109451,-0.03599174,0.060798433,0.2731064,0.71805155,0.003693829,-0.106525965,0.29067054,-0.21834224,-0.06491001,-0.07133394,-0.41475365,-0.062506154,0.015044719,0.5129666,0.41523492,-0.10712523,0.34192452,-0.09200491,0.35996014,-0.16534074,-0.4150651,0.4930846,0.5707716,-0.055493217,-0.07868501,0.39338773,0.54170775,-0.12371494,0.5050052,-0.43964085,-0.36960122,0.4565938,-0.1645965,-0.3767074,0.3009891,-0.36647186,0.09870554,-0.83649987,0.24027437,-0.20560694,-0.34357935,-0.68223757,-0.19290055,-3.7461517,0.08477443,-0.1846508,-0.2120126,0.14308873,0.2036005,0.28888685,-0.4965255,-0.34715107,0.14154243,0.13211872,0.37293586,0.05251611,0.03238927,-0.34035534,-0.06329301,-0.19027586,0.21797103,-0.049681004,0.11110748,0.019593898,-0.36688516,0.00059929094,-0.2997506,-0.19514342,0.1899321,-0.40911463,-0.2470769,-0.17220522,-0.4472314,-0.39394602,0.60304743,-0.44985035,-0.07475772,-0.011318179,0.10981985,-0.069287166,0.3498679,0.11929323,0.08227597,-0.11657481,-0.023517199,-0.17760251,-0.29062876,0.17583364,0.14941348,0.26854932,0.52545434,-0.0069364705,-0.08639989,0.6030361,0.3734586,0.055965822,0.6361892,0.3185902,-0.063044325,0.2640976,-0.29741192,0.08048013,-0.5548131,-0.37866166,-0.19316603,-0.33381793,-0.52738446,-0.038113903,-0.294198,-0.61170024,0.36657238,0.07045018,-0.27136832,0.087703705,0.29432604,0.25830093,-0.12479847,0.0933534,-0.15598835,-0.09822245,-0.39891848,-0.4042449,-0.76603675,-0.25729057,0.23388131,1.009113,-0.11887886,-0.19260073,-0.06458147,-0.1497949,-0.055001438,0.031787865,0.14467897,0.38407573,0.24053663,0.0748766,-0.6995237,0.5929432,-0.091563225,-0.054508153,-0.42547455,0.0830444,0.5115775,-0.6427794,0.38056132,0.41382778,0.21039674,0.04361581,-0.6049803,-0.33316162,0.16011666,-0.17893054,0.332881,-0.07651396,-0.7851283,0.56369245,0.1716585,-0.1926649,-0.6817268,0.29302117,-0.015133127,-0.29284626,0.10801172,0.2516308,0.056317296,0.14618246,-0.30185536,0.23543125,-0.6228193,0.25876835,0.2703796,-0.006371956,0.55383205,-0.14797106,-0.09379927,-0.6925518,-0.26375374,-0.37368613,-0.19714454,0.2479938,0.086946644,0.15182486,0.13619594,0.09192209,0.4163628,-0.26889068,0.13578998,-0.079652525,-0.10645345,0.42820483,0.3686412,0.26521537,-0.38190588,0.5194697,-0.18708213,0.12927642,-0.27982035,-0.023189541,0.3602994,0.29278243,0.050131038,-0.1310759,-0.20948291,0.36098063,0.82349885,0.26767528,0.26505572,0.16325574,-0.2271033,0.52800184,-0.023888005,-0.057565905,-0.04550391,-0.40587464,-0.17102545,0.0497928,0.23431195,0.29858118,0.05398543,0.49051145,-0.22886708,-0.010420748,0.12387704,0.3354643,0.21205507,-0.35462973,0.41445974,0.19750956,0.41861603,0.7597724,0.07499354,0.1190188,0.6450843,-0.37114462,0.17898317,0.19780949,-0.12120488,-0.48960128,0.46978396,-0.45862418,0.16312239,-0.106577285,0.026104778,0.110551566,-0.03952,0.3820041,0.84591806,-0.0796573,0.1187866,-0.10718904,-0.20749405,0.23854952,-0.24472739,0.06056916,-0.25775388,-0.37084204,0.60094553,0.18637675,0.25818595,-0.14475304,-0.10971388,0.24845745,-0.027064474,0.36364168,0.06256593,-0.003672115,0.06720904,-0.6253818,-0.39008054,0.64244425,0.06834696,0.08745486,0.12189037,-0.14985196,0.35307086,-0.21661608,-0.1225461,-0.13116173,-0.41444352,0.1293244,-0.21369672,-0.26629344,0.5220576,-0.19239578,0.48311552,0.04237687,0.05137586,-0.1967855,0.12885484,0.2717214,0.6394927,-0.03726946,-0.21808712,-0.17471525,-0.15753727,0.13766183,-0.2141015,-0.063158646,-0.18753828,-0.0405339,-0.87716484,0.4240238,-0.26828107,-0.19020618,0.108121954,-0.20515108,-0.014254824,0.46024564,-0.08847826,-0.032810338,-0.13351783,-0.010928352,-0.28274268,-0.17292567,-0.3087636,0.19842722,-0.15113392,0.033434074,-0.1179764,0.014948142,0.03706998,0.4762705,0.17519554,0.011437718,0.109663375,0.21740964,-0.3268434,-0.08202695,-0.0024462917,0.34352893,0.10237106,0.09163098,-0.20059963,-0.1759331,-0.24672155,-0.11767989,-0.13786754,0.25918406,0.0651377,-0.45238456,0.72243786,-0.10244837,0.97604483,0.043281615,-0.2872711,-0.019064816,0.4761617,0.088002905,0.16302581,-0.23544079,0.87359023,0.7007408,0.054102413,-0.18646862,-0.37369376,-0.1556041,0.16213721,-0.16660766,-0.22044353,-0.039763156,-0.6979687,-0.3681798,0.18744682,0.16632809,0.10878042,-0.110551,-0.03768123,-0.0013952652,0.25779104,0.26077145,-0.37864283,-0.17503525,0.27588445,0.17834829,0.1868538,0.16509885,-0.3567302,0.36968175,-0.57762605,0.15003926,-0.24144538,-0.014845666,0.09438055,-0.01413182,0.15575983,-0.047055103,0.2209163,-0.16145083,-0.4719497,-0.06061182,0.50896245,0.24754487,0.38731745,0.81855065,-0.12418081,0.0045220214,0.08607408,0.51852304,1.1787742,-0.21657269,-0.03061685,0.50982434,-0.30458677,-0.60704243,0.07986786,-0.29221788,0.11552784,-0.08317949,-0.41217008,-0.2863351,0.2281114,0.15313224,-0.20984697,0.04210667,-0.42266348,-0.14772321,0.27515224,-0.31529653,-0.25794348,-0.2446029,0.10742488,0.90546745,-0.3957802,-0.15698345,0.033881795,0.04670364,-0.45454022,-0.5619241,0.056578986,-0.39503956,0.23403342,0.41335827,-0.26027492,0.11540581,0.12610887,-0.4754074,0.20812537,0.21784891,-0.36482608,-0.032349158,-0.39203072,-0.1314523,0.8128221,0.041744456,0.007930631,-0.5640949,-0.6015827,-0.7694923,-0.33516228,0.5753182,-0.1222874,-0.060329914,-0.33801767,-0.049586535,0.00041104952,-0.08143347,-0.13251397,-0.43603817,0.40659764,0.07788013,0.343717,-0.16417271,-0.6893597,0.009758528,0.039634474,-0.16353355,-0.49013615,0.45748717,-0.17996755,0.8294674,-0.027205443,-0.03055528,0.45651606,-0.65350443,0.16156077,-0.47544098,-0.35391364,-0.47835132,-0.00321724 +111,0.34543997,-0.2941275,-0.25848177,-0.37493414,-0.45511213,0.15300587,-0.20121346,0.25331953,0.10796021,-0.5966443,0.055922713,-0.19674502,-0.10312899,0.45823255,-0.37374958,-0.7514399,-0.18572783,-0.09288828,-0.4030128,0.40749818,-0.5569787,0.2953641,0.24540867,0.16920325,0.05021274,0.32484478,0.45051762,-0.23056194,-0.23747373,-0.23713753,-0.2865359,0.11145125,-0.63370377,0.33052868,-0.14070453,-0.41350633,0.28017107,-0.60837704,-0.11023974,-0.57009995,0.24250393,-0.8360686,0.3692293,-0.04484735,-0.26391152,0.017653711,0.28981873,0.25959817,-0.2974563,0.15431929,0.23039778,-0.25416753,0.07929381,-0.11376773,-0.29978594,-0.9158119,-0.71668226,0.11375228,-0.66356224,-0.2569166,-0.21644951,0.2441801,-0.38859978,-0.017174238,-0.17941096,0.34022695,-0.5351232,-0.29712367,0.07782112,-0.19770059,0.17325084,-0.33031946,-0.24348235,-0.21404208,0.04456144,-0.1738299,-0.16182074,0.4056658,0.39915594,0.500166,0.034771085,-0.21712694,-0.20637016,-0.11516278,0.16759805,0.5293291,-0.10319621,-0.5826129,-0.22883725,-0.029533103,0.18743503,0.28205305,0.021575125,-0.32059494,0.12770626,0.21634872,-0.3556688,0.20257603,0.3502082,-0.54923826,-0.23066576,0.32202414,0.36818144,-0.105189286,-0.18008934,0.13898964,0.0890116,-0.47055933,-0.32115263,0.37978205,-0.07849182,0.57330644,-0.18602172,0.15342411,0.86038154,-0.2990632,0.20135093,-0.19244958,-0.23935744,-0.22251663,-0.17084742,-0.13706157,0.16007711,-0.52239066,0.0036578837,-0.2971818,0.94994557,0.14917043,-0.97743255,0.29680118,-0.5764321,0.088240124,-0.31477335,0.6040271,0.5451173,0.4045054,0.31339929,0.8437194,-0.471422,0.090664096,0.08089996,-0.34917846,0.14640453,-0.3123693,-0.0010982975,-0.34044963,0.10063464,0.036100466,0.06531444,-0.1005231,0.60877603,-0.40995184,0.06485842,0.11557268,0.7070804,-0.38656855,0.016369885,0.8203325,1.0234402,1.0232126,0.15696608,1.4446043,0.37885264,-0.15358554,0.10782609,-0.21125872,-0.56869906,0.10179851,0.55112445,-0.012080818,0.23512796,0.062621735,0.12782748,0.43135652,-0.33483478,0.22374895,-0.13068415,0.29700437,-0.008530157,-0.065400295,-0.60724926,-0.4160791,0.20365003,-0.012575077,-0.11948828,0.27529427,-0.064299904,0.5706296,0.21611081,1.4684016,0.11930377,0.15892248,0.066753976,0.48334196,0.18736438,-0.046936333,0.1121716,0.12041581,0.20142734,-0.009455739,-0.6461848,-0.021800747,-0.32146364,-0.6090074,-0.30393553,-0.46876106,-0.08455928,-0.2571108,-0.4000907,-0.20756207,0.061276425,-0.339912,0.4932612,-2.2485008,-0.20769207,-0.25514776,0.22060008,-0.25054172,-0.32546955,-0.03446899,-0.4448928,0.3223862,0.5063038,0.4340539,-0.7487434,0.38213685,0.4490445,-0.2521062,-0.15552054,-0.81150776,-0.033886544,-0.25072688,0.3219366,0.044340633,-0.22566657,-0.29152653,0.17404608,0.7101537,-0.0037546668,0.101235844,0.010774978,0.40986982,0.11070586,0.65362984,0.116946034,0.47797444,-0.19997868,-0.065879546,0.30257225,-0.48902294,0.362356,0.35448423,0.14908503,0.375097,-0.6864886,-0.96104676,-0.8355649,-0.6914719,1.0406358,-0.32868353,-0.31835395,0.1760921,0.16986227,-0.25503975,-0.0806269,0.4771319,-0.27005965,0.15486406,-0.6649662,0.15297735,-0.0062577897,0.19343655,-0.06149379,0.12610462,-0.37196702,0.7274738,-0.17509119,0.53380394,0.35081226,0.13519147,-0.3428027,-0.369277,0.0047467607,1.0352484,0.4285836,0.14101776,-0.13252121,-0.30515203,-0.17531429,-0.24643724,0.21076496,0.39996216,0.83615154,0.107341036,0.007879819,0.4026754,-0.27088273,0.08076998,0.044790983,-0.33657676,0.06846193,0.17270096,0.6652972,0.40737793,-0.17794167,0.34813467,-0.24044804,0.4600821,-0.19062726,-0.35508147,0.300181,0.7924648,-0.016849106,-0.012665162,0.7409019,0.7589536,-0.37376305,0.49533466,-0.6851018,-0.4010213,0.6208821,-0.049195327,-0.4910602,-0.057531793,-0.37797174,0.23873904,-1.0260621,0.45453095,-0.0680322,-0.37797526,-0.6932101,-0.31977084,-3.4824798,0.10403198,-0.11463327,-0.1040935,0.021223119,-0.17064865,0.41983652,-0.7174902,-0.5941815,0.104879305,0.05607895,0.39478344,0.11620777,0.24517237,-0.43813413,-0.065544985,-0.4098758,0.26410517,0.048285358,0.2627879,-0.057403345,-0.39381617,0.14126392,-0.58731,-0.5204836,0.12148295,-0.525095,-0.65357304,-0.13273655,-0.4780819,-0.61816305,0.7926477,-0.38680023,-0.026715968,-0.117794394,-0.022441845,-0.31040388,0.40470168,0.35498327,0.2105488,0.08656724,0.109666534,-0.37277895,-0.41628435,0.34025833,0.0806411,0.44190148,0.3512937,-0.04407962,0.224298,0.7632229,0.57221127,0.19896589,0.75110465,0.16944747,-0.035965055,0.32616505,-0.33556932,-0.24334629,-0.71788853,-0.45135212,-0.09553491,-0.35005808,-0.51402694,-0.03928629,-0.40133205,-0.6710024,0.55034554,0.11572913,0.046000548,-0.2682452,0.24652307,0.2226478,-0.15248533,0.0073733414,-0.10967742,-0.15418012,-0.66988236,-0.5202763,-0.89916974,-0.58933073,0.091387674,1.2608442,0.07577324,-0.38483104,-0.017110338,-0.294212,0.10596454,-0.019603098,0.063340664,0.26497382,0.33922657,-0.10242014,-0.8992285,0.5258484,-0.0067628664,0.08965606,-0.28105035,-0.1731336,0.7508817,-0.74743885,0.4104565,0.47738615,0.33725792,0.21994601,-0.4835321,-0.34252363,0.026309123,-0.22200944,0.56293565,0.08402334,-0.6414453,0.5838739,0.14059035,-0.20628653,-0.70260286,0.5312201,-0.032414537,-0.007762415,0.1448354,0.3284471,0.24241187,-0.15125848,-0.17521615,0.29651946,-0.7013566,0.26377827,0.46595016,0.17897995,0.5280835,-0.15750296,-0.3136954,-0.6658002,-0.1730969,-0.44311914,-0.2853743,-0.038686804,-0.041954342,-0.0042874897,0.21315782,-0.17495535,0.35404196,-0.26053283,0.08712734,-0.10452598,-0.21975878,0.2352047,0.42825195,0.23423961,-0.45416757,0.6899241,0.13433133,0.11025429,-0.34669065,-0.04258124,0.3284897,0.46150595,0.14418952,-0.05148496,-0.2281532,0.2638028,0.76982623,0.290603,0.35911116,0.18453741,-0.18448928,0.4938405,0.19100608,0.15818466,0.1587756,-0.3084856,-0.061103422,0.14131704,-0.046373434,0.31318697,-0.036312968,0.3398695,-0.16586468,-0.07658188,0.2804655,0.35949513,-0.32903546,-0.94662774,0.24023044,0.19693176,0.5540339,0.7669362,-0.08011532,0.049080458,0.6450763,-0.510272,0.029122708,0.3353333,0.10175047,-0.54175335,0.7148785,-0.50239736,0.48606688,-0.30513462,0.037712537,-0.21844026,0.039268795,0.40022382,0.8656896,-0.016865727,0.16212405,-0.0754649,-0.21666625,0.25172928,-0.27974552,0.121278085,-0.448347,-0.19152904,0.64763564,0.16794603,0.29835728,-0.057272024,-0.011940773,0.07801217,-0.125318,0.4299675,-0.09589603,-0.1003936,0.106502675,-0.66155106,-0.39766693,0.6926893,-0.11688336,0.0372001,0.21022545,-0.5566004,0.3406816,-0.119574055,-0.11522194,0.091402575,-0.5374833,-0.007079267,-0.27789503,-0.56130874,0.2288462,-0.44301707,0.2489622,0.14480402,0.080221236,-0.2485434,-0.20623684,0.42920446,0.69817406,-0.012279087,-0.26622564,-0.23785369,-0.2309369,0.25557098,-0.37534395,-0.09050473,-0.32375616,0.2591011,-0.69281584,0.58273983,-0.15706323,-0.37454984,0.12741321,-0.1860409,-0.040375948,0.40754992,-0.2913756,-0.1467627,-0.063287474,0.219228,-0.06803916,-0.042351928,-0.42681578,0.36029574,-0.021233499,-0.068427436,-0.005282302,-0.2425421,0.028340826,0.54644424,-0.012301134,0.24483144,0.12465739,-0.054032188,-0.4683244,0.048409343,-0.2330061,0.23276637,0.052684106,0.016258478,-0.18696071,-0.10056551,-0.09259302,0.34200504,-0.20846495,0.18377066,0.0894679,-0.60181296,0.7207281,-0.09714778,1.2455083,0.09939004,-0.4914291,-0.16892883,0.5477559,-0.044086795,0.18043092,-0.3497457,0.9848665,0.60274875,-0.21842898,-0.29007497,-0.5903358,-0.24514458,0.3016581,-0.21727483,-0.26566145,-0.054632764,-0.7765202,-0.3223394,0.22477324,0.15739577,0.16779692,0.095164366,0.14178959,0.05932658,0.27158743,0.59887415,-0.47489682,0.028310461,0.3027666,0.24929537,0.15091947,0.19632737,-0.36197755,0.30545622,-0.71093756,0.4467816,-0.5165759,0.14220256,0.013888708,-0.31808963,0.1453969,0.15468648,0.36599442,-0.08960966,-0.47599643,-0.1609153,0.8880185,0.111891806,0.27188915,0.8363763,-0.28370672,0.1129206,0.0055354154,0.45487896,1.6683166,-0.16495797,-0.056036804,0.16921405,-0.21995592,-0.6277885,0.40520525,-0.5479329,-0.14494307,-0.06449362,-0.48529625,-0.47571823,0.32503095,0.34525457,-0.103369355,0.077270456,-0.35842445,-0.2524012,0.6124784,-0.36299917,-0.40326312,-0.36685476,0.444064,0.82331085,-0.44485644,-0.14050923,0.0440248,0.4134454,-0.33485028,-0.5528493,-0.04902621,-0.35524908,0.52108157,0.15344968,-0.30284008,0.112906516,0.1974047,-0.27744135,0.26290208,0.43481943,-0.3235475,0.05451652,-0.24282798,-0.0022708008,1.1413195,0.26756272,0.044098616,-0.80583286,-0.48544088,-0.87738425,-0.3920064,0.4116439,0.0985515,0.011293756,-0.28586382,-0.05286751,0.082066454,-0.035048056,0.13172172,-0.77219075,0.3676001,0.124101594,0.6042863,0.07485022,-0.7783009,-0.04080562,0.107283406,-0.043798823,-0.39601007,0.53726417,-0.17109215,0.79976493,0.12509131,0.05287671,-0.01354218,-0.4466785,0.38173717,-0.40565968,-0.3010684,-0.67516434,0.11870781 +112,0.4147903,-0.20174852,-0.31666523,-0.13114682,-0.2682855,0.071402945,-0.06526458,0.22259258,0.2743007,-0.13693756,-0.3266139,-0.20903982,0.096481115,0.54637456,0.008750828,-0.77752614,-0.025870945,0.1355527,-0.9261557,0.51267993,-0.5948998,0.23151681,0.20981728,0.3415604,0.12654123,0.43763357,0.3277693,-0.15874265,-0.33656725,0.05862591,-0.3304882,-0.025923623,-0.48829746,0.07620298,0.0148569485,-0.20639004,-0.013914012,-0.5247358,-0.3047393,-0.6009146,0.043463692,-0.8100034,0.34499985,-0.115245655,-0.03488446,-0.08065723,0.16591938,0.39692885,-0.5601126,-0.015972756,0.098648414,-0.23192035,-0.14156328,-0.30954885,-0.07618337,-0.33431375,-0.5480406,0.012836631,-0.48385188,-0.36150184,-0.058747035,0.083708525,-0.34405982,-0.0024838448,-0.01594179,0.38630235,-0.36104122,-0.032320675,0.5565182,-0.33693048,-0.078503445,-0.37304848,-0.005474751,-0.084731415,0.39200896,0.15719411,-0.18880168,0.45603922,0.42246097,0.34148458,0.27849433,-0.35624918,-0.26972514,-0.11869876,0.3390567,0.4618192,-0.030728996,-0.40092212,-0.2591582,0.0936387,0.10895295,0.2524429,0.21592638,-0.15642653,-0.10217497,-0.07221189,-0.19944516,0.2755103,0.43734148,-0.40519994,-0.41344687,0.2902531,0.73158956,0.23434497,-0.123524114,-0.08374707,0.06233845,-0.50600094,-0.1373241,0.18727463,-0.16629538,0.54243714,-0.13319719,0.085427865,0.8532981,-0.23654303,0.10508727,-0.059954524,-0.1508325,-0.26265544,-0.20195307,-0.069052435,0.1456011,-0.34053564,-0.109426536,-0.3034628,0.70454574,0.44414043,-0.54447085,0.5126474,-0.5778617,0.2500859,-0.10736383,0.6002347,0.7050636,0.3273718,0.42375645,0.7550129,-0.24720624,0.26935086,-0.048237782,-0.45164993,0.19295366,-0.3678363,0.20556848,-0.54262,0.14732812,-0.07784857,-0.0319974,0.08524234,0.3835268,-0.5898787,0.0011290198,0.10934225,0.8283247,-0.32903132,-0.23174976,0.59616697,0.9917718,0.9695989,-0.023706717,1.2926393,0.5001267,-0.30168232,0.22837059,-0.6144011,-0.74066734,0.23640543,0.29106396,-0.23457216,0.48571932,-0.049611125,-0.16060382,0.23238567,-0.24042386,0.23579262,-0.0047977795,0.22974531,0.22024606,-0.0042461297,-0.31912333,-0.26370558,-0.18664072,-0.21729916,0.19892447,0.19843411,-0.33940476,0.46096775,-0.17280377,1.7556903,0.02278669,0.04915589,-0.10946744,0.54408354,0.32549092,-0.102804735,-0.20051916,0.5115655,0.3329087,-0.09210772,-0.5658279,0.3381971,-0.3982162,-0.3777048,-0.06484306,-0.46101555,0.030024378,0.015260761,-0.15062368,-0.10579931,0.14327233,-0.38888678,0.4273331,-2.57803,-0.2825282,-0.102688275,0.28016806,-0.3538887,-0.12325725,-0.25646952,-0.48581886,-0.02351694,0.24777699,0.53252584,-0.6695423,0.42038372,0.4401417,-0.5717043,-0.34840006,-0.63111985,0.07942928,-0.04576439,0.3445753,-0.026601342,-0.07427956,0.0132209705,0.22496335,0.6397159,0.047130898,-0.016335638,0.55471134,0.38423464,0.2872036,0.50521404,0.04676614,0.7299256,-0.30453917,-0.14431068,0.36376557,-0.2713953,0.37836567,0.028399069,0.085832864,0.5638233,-0.31940773,-0.9736011,-0.55488515,-0.35745904,1.0305716,-0.5249206,-0.3486408,0.12957157,-0.04355295,0.029960196,0.0501922,0.52861476,0.046186246,-0.0040140334,-0.57065904,0.071280055,0.11937901,0.13417162,0.070271604,0.021443076,-0.21340315,0.67292094,-0.059206188,0.5398943,-0.009316756,0.2104513,-0.12344964,-0.36668873,0.2926587,0.84016925,0.20010494,-0.07306374,-0.08608851,-0.31563315,-0.14073618,-0.22786808,-0.029083421,0.39186096,0.7086679,-0.09575149,0.09986115,0.45597708,-0.07551171,-0.047667626,-0.11320453,-0.21208006,0.05591884,-0.073913135,0.41748622,0.7886231,-0.13467728,0.6450662,-0.20895061,0.40751165,-0.009079814,-0.6042408,0.7429028,0.34781882,-0.23961505,0.03685942,0.28118685,0.25920308,-0.56595284,0.49833685,-0.58096594,-0.24755643,0.78076386,-0.09996377,-0.32302105,0.3027821,-0.17501543,0.20305167,-0.7432086,0.3976819,-0.09712665,-0.2616018,-0.42230347,-0.018946739,-3.519497,0.15873386,-0.16786215,-0.17301467,-0.12406978,0.1621804,0.122259066,-0.7413175,-0.48924083,0.021409879,0.184595,0.6353118,-0.10217282,0.22200133,-0.2674784,-0.15490367,-0.2781561,0.20738298,-0.05952946,0.4007398,-0.1704433,-0.35575947,0.13745041,-0.18365577,-0.5184336,0.22358364,-0.6675842,-0.4023571,-0.132076,-0.65252304,-0.24454203,0.7075163,-0.39588407,-0.013315398,-0.22771826,0.16286811,-0.28214997,0.29895833,0.15073647,0.087469585,0.17083035,-0.118160285,-0.025601897,-0.26371118,0.40540493,-0.0055887746,0.5645834,0.3062151,0.12640694,0.17165324,0.48944137,0.5979852,-0.103349246,0.7213694,0.30517802,-0.19677451,0.26337487,-0.42633802,-0.020835284,-0.44059113,-0.42709368,-0.04115158,-0.39974374,-0.6312837,-0.12795758,-0.23969008,-0.909794,0.46182156,0.03153298,0.33790967,-0.05757083,0.14150016,0.55383915,-0.23635578,0.14265516,-0.14595823,-0.13672787,-0.58728576,-0.24271342,-0.62218314,-0.4775194,0.47308716,0.89837134,-0.4639131,-0.029510943,-0.23755553,-0.55547476,0.025158582,-0.04267128,0.04228421,0.33038527,0.33299807,-0.12469497,-0.61250174,0.36854303,-0.15167513,-0.07076104,-0.5097674,0.08484598,0.7126502,-0.8797174,0.6787115,0.21035904,0.04829846,0.119528204,-0.32689217,-0.24185298,-0.07223804,-0.10107277,0.13420497,-0.06280227,-0.65140533,0.3136549,0.22953804,-0.5755761,-0.74100053,0.14936502,-0.06647326,-0.06764914,0.060288385,0.22150132,0.11934371,-0.04718888,-0.39238805,0.07371615,-0.5551978,0.13712825,0.22925368,0.05810207,0.3612405,0.03800615,-0.47267798,-0.6609388,0.07225794,-0.3192449,-0.36036885,0.38926452,0.24001907,0.14837445,0.05490571,0.31457716,0.29251096,-0.3726028,0.07294104,0.22339068,-0.31135267,0.33455327,0.36049315,0.34153265,-0.52386165,0.4808677,0.10988018,-0.071504325,0.25844646,-0.11036027,0.2642132,0.256552,0.26794136,0.14583713,-0.20282015,0.3233128,0.73377883,0.01843111,0.4322816,0.19782434,-0.21721514,0.47330236,-0.0143577345,0.09319567,0.0067555215,-0.46436217,0.13564652,0.10835171,0.2996783,0.45928782,0.42575872,0.2973058,0.2404626,-0.34249756,0.027554158,0.23372094,-0.18410188,-1.1487607,0.2847982,0.27096546,0.84085906,0.42869812,-0.0068643917,-0.13298808,0.7253136,-0.18778151,0.1933669,0.30297783,-0.1644013,-0.6279125,0.6887757,-0.6162865,0.5153452,-0.11425627,-0.084325075,0.024035918,0.034799594,0.27576745,0.7758922,-0.24075651,-0.07053471,-0.06085738,-0.10982086,-0.041741014,-0.48114046,0.201943,-0.5293152,-0.49416712,0.70965356,0.29446557,0.35708374,-0.18357517,-0.042568143,0.011525168,-0.17719962,0.30120033,-0.0066011595,0.08247944,0.17393924,-0.8021206,-0.3251037,0.55360734,-0.38182253,0.1464566,-0.10123973,-0.22228667,-0.034460656,-0.29828948,-0.13399647,-0.08008044,-0.6665086,0.07507093,-0.13791165,-0.6023147,0.36183542,-0.117891,0.22219236,0.22192486,-0.0863169,-0.21541665,0.39578742,0.13793491,0.88141,0.049931627,-0.3198876,-0.3401859,0.18758307,0.18994983,-0.33626366,0.2775638,-0.40382352,0.077280134,-0.4096092,0.7970593,-0.06751574,-0.5697855,0.033708736,-0.19046427,-0.10104854,0.58190495,-0.18063197,-0.16706635,-0.2169447,-0.31605074,-0.41620857,0.21568486,-0.27826917,0.20317474,0.19635926,-0.2356771,-0.06571259,-0.17965129,0.09010521,0.5183927,0.031851437,0.32395682,0.24309818,0.01816369,-0.21771625,0.017411329,0.27165234,0.48574087,0.35115367,-0.14044707,-0.51923573,-0.20877956,-0.3741891,0.23435208,-0.18250163,0.29494503,0.121399164,-0.48945922,0.6540794,-0.07327677,1.3968648,0.02998043,-0.3027039,0.10630185,0.53823334,0.09382537,0.08403753,-0.53518766,0.8782097,0.50330615,-0.079474464,-0.1081086,-0.5641366,-0.33851987,0.5231718,-0.37683788,-0.21248953,0.11865572,-0.5517931,-0.4590279,0.206642,0.0008790883,0.25260293,-0.027038634,0.11855009,0.10372612,0.17406029,0.2558301,-0.47499233,-0.28332287,0.25349694,0.18759452,-0.013837984,0.17158757,-0.36887693,0.45731485,-0.6826213,0.20883933,-0.33232814,0.038199045,-0.15607229,-0.38151175,0.22372726,0.36488804,0.46636212,-0.29458997,-0.4419611,-0.15588734,0.67954993,0.11307477,0.2466713,0.740809,-0.21265844,-0.109111734,0.14340097,0.5830664,1.244981,-0.26784375,0.13367106,0.3395509,-0.43456638,-0.71170765,0.62414974,-0.32742256,-0.070669524,-0.24424073,-0.44139004,-0.65389216,0.32630503,0.15384361,0.090188496,0.21952152,-0.52097535,-0.23061782,0.2356345,-0.421431,-0.25772575,-0.43477133,0.34740445,0.89729494,-0.26057455,-0.2243557,0.108880006,0.25654605,-0.253247,-0.3802433,-0.2689797,-0.29022634,0.3109927,0.095060825,-0.1941692,-0.09836727,0.06224768,-0.3235173,0.144163,0.05161334,-0.42450207,0.20123678,0.0034119396,-0.119034715,0.89040923,-0.16320112,0.016723542,-0.7136425,-0.5218755,-0.9019963,-0.4826943,0.3250665,-0.045276865,-0.15813468,-0.37556693,-0.009431224,0.05326339,-0.23216122,0.06691104,-0.68106365,0.28212488,0.08638377,0.27715358,-0.15333255,-0.928574,0.15264334,0.113859855,-0.072327025,-0.8240195,0.46228456,-0.25207236,0.87706065,0.034166623,-0.23248085,0.12237393,-0.31946534,0.034122225,-0.49270564,-0.1596763,-0.66191727,0.17589852 +113,0.33949643,-0.070206776,-0.43419486,-0.17226797,-0.38827166,0.16608176,0.007657192,0.5349446,0.28267962,-0.089825355,-0.045294955,-0.028411536,0.032520074,0.6831712,-0.08642591,-0.75698435,0.006113043,0.15919831,-0.68912697,0.41548255,-0.47831953,0.3374603,0.107335575,0.46983603,0.23214746,0.2823901,0.030500539,-0.009657593,-0.03227796,0.018278081,-0.27465007,0.11365742,-0.43907928,0.15079899,0.040793106,-0.25857466,-0.2082115,-0.3881032,-0.2590094,-0.64156383,0.3977875,-0.68949974,0.5772339,-0.267777,-0.19913182,0.21932235,0.20934829,0.28674558,-0.4310599,-0.08781571,0.17957146,-0.2572622,-0.042599227,0.011789532,-0.33673203,-0.29661497,-0.61316144,-0.09054613,-0.5201038,-0.084578864,-0.28267667,0.15503062,-0.33375752,0.13203451,-0.124680534,0.38903555,-0.29134905,0.17336375,0.2960471,-0.22103599,0.05416517,-0.34562132,-0.14119473,-0.07326422,0.29937786,0.07393778,-0.37437963,0.35818094,0.46982482,0.38400427,-0.008582569,-0.24098173,-0.14967547,-0.016701387,0.07057948,0.60403913,-0.12102746,-0.42932123,-0.25484622,-0.006504091,0.21676938,0.22065441,-0.08040273,-0.36099008,-0.04298599,0.13212572,-0.29842082,0.47811973,0.33227378,-0.24618982,-0.21198443,0.44765255,0.17322937,0.2785568,-0.19029482,0.18751153,-0.09543639,-0.6209224,-0.12571073,-0.04398783,-0.08568906,0.3892352,-0.13434137,0.28772482,0.7892764,-0.035630748,-0.10013647,-0.105005585,0.05790428,-0.09491321,-0.34345785,-0.11364781,0.078909054,-0.4718311,0.10049731,-0.14778072,0.78682655,0.15067336,-0.7832343,0.42903906,-0.5441156,0.13196024,-0.21693465,0.45470598,0.95459205,0.30491093,0.14915153,0.9220771,-0.5307942,-0.02270941,0.081391096,-0.3877405,0.10982458,-0.14325276,0.1775433,-0.534031,0.046228327,0.22314985,-0.009941184,0.24623726,0.2583763,-0.38992625,-0.1872831,-0.14823997,0.6347135,-0.39518902,-0.21459787,0.88831943,0.9557507,0.9173289,0.057453115,1.434972,0.39874795,-0.15068623,0.17774507,-0.2372643,-0.49843243,0.07376165,0.29168275,-0.3318882,0.31448957,0.050746992,0.012524616,0.43300056,-0.271783,-0.11281763,0.043622784,0.23322143,0.12672077,-0.12533854,-0.33519453,-0.46917465,0.14394198,0.115764305,0.06770284,0.25628588,-0.30912665,0.49069044,0.16446994,1.4470208,0.23861793,0.014393786,0.003615572,0.365952,0.2948999,-0.11193382,-0.31122625,0.2804324,0.5665866,-0.108126126,-0.5943185,0.031223906,-0.2738101,-0.4091592,-0.030019848,-0.43240756,-0.31190097,-0.12962843,-0.41733074,-0.0801043,0.09152702,-0.36023325,0.480824,-2.8250756,-0.30254844,-0.23631406,0.1867734,-0.18138964,-0.37504593,-0.31904167,-0.5311204,0.20046681,0.24541348,0.40123823,-0.52499866,0.34751254,0.23215789,-0.3443175,-0.19876088,-0.6362727,-0.0993318,0.08276292,0.23683307,-0.0924729,0.19028464,-0.13126187,0.3635173,0.6722422,0.13880233,-0.02585732,0.29891533,0.41827208,-0.0029102748,0.5900377,0.017686564,0.6387309,-0.12724197,-0.09031989,0.19050609,-0.28926918,0.4211528,0.038539473,0.21599366,0.57722366,-0.33200657,-0.8959297,-0.49111935,-0.23125996,1.1370734,-0.52903175,-0.16436999,0.43606696,-0.3643346,-0.40026248,-0.02009246,0.5934366,-0.07955877,-0.16893457,-0.61345065,0.026004873,-0.04393273,0.07577738,-0.19267441,0.042438067,-0.1407019,0.6386637,-0.120105654,0.48614585,0.1703648,0.020221949,-0.15517053,-0.40467864,0.00989806,0.7996104,0.34855825,0.05228891,0.0051425304,-0.0139819635,-0.48963863,-0.3314769,0.20296802,0.61221004,0.6617396,0.11046414,0.17120157,0.21428691,-0.11193915,-0.033930637,-0.0028329582,-0.25543392,-0.0052267453,-0.04586981,0.5392769,0.67925733,-0.06806744,0.57912064,-0.20876375,0.1636276,-0.21101505,-0.6488962,0.60095173,0.5515169,-0.22429791,-0.22187798,0.5749951,0.36259925,-0.19402963,0.2925737,-0.48544836,-0.32664505,0.8132468,-0.12562233,-0.40963617,0.1374955,-0.12390236,-0.17948315,-0.7711827,0.12121708,0.13021067,-0.6506891,-0.2737899,-0.070068285,-3.5724127,-0.0014250336,-0.07476934,-0.3279782,-0.24175699,-0.08015807,0.30738544,-0.40931195,-0.5542021,0.19090065,0.08497539,0.6610879,-0.17778659,0.06643747,-0.21098313,-0.20302956,-0.1813347,0.16172644,0.027742626,0.3432996,0.05661925,-0.34656146,0.0011389622,-0.1872672,-0.6548986,0.17141064,-0.5711233,-0.5457128,-0.02165295,-0.33058962,-0.23970622,0.821612,-0.6253564,-0.014752343,-0.20726609,-0.07336597,-0.2660488,0.3611383,0.17056996,0.11836589,0.03200772,0.08819652,0.09676862,-0.29895714,0.2742643,0.115542494,0.3880325,0.2071871,0.0028820634,0.25982758,0.5246078,0.62350655,-0.026435573,0.89447886,0.25006086,-0.064883284,0.22898014,-0.22388877,-0.18332826,-0.53948987,-0.24201767,-0.23610154,-0.4241945,-0.3726106,-0.21597204,-0.27498892,-0.7419837,0.3715644,0.14403015,0.08812532,-0.204355,0.15042543,0.39043176,-0.18783252,0.13291685,-0.041096453,-0.24276628,-0.58779335,-0.31488833,-0.6196763,-0.54004633,0.23418258,1.14014,-0.17694443,0.054035325,-0.1804731,-0.6096172,0.018995745,0.050051663,0.17655912,0.22522399,0.2868872,-0.25351185,-0.82034296,0.4403856,-0.50101197,-0.03108439,-0.7861558,0.0882753,0.7011198,-0.6389336,0.53949565,0.25489542,0.27364504,-0.11499827,-0.43753624,-0.2420015,-0.008972094,-0.09726383,0.46044746,0.20218089,-0.64094794,0.5017885,0.07657252,-0.10170123,-0.52014613,0.39947838,-0.056448836,-0.002256595,-0.011135652,0.3096309,0.12691548,-0.02422681,0.0954417,0.2507986,-0.53612393,0.2769566,0.3583504,0.104730554,0.32344988,-0.031856034,-0.0182033,-0.63317436,-0.17114857,-0.4158352,-0.28330082,0.007976053,0.090535276,0.28435794,0.034704544,-0.15383579,0.19971807,-0.358607,0.16736507,-0.071181685,-0.19290821,0.32846662,0.5937617,0.43074277,-0.37789968,0.6556107,0.1471129,0.057433255,0.23046046,0.037071068,0.46442434,0.3386106,0.34465525,-0.16225919,-0.23486581,0.25848496,0.6503726,0.20803928,0.15461907,0.00750129,-0.11419641,0.08664819,0.09073309,0.16977455,0.20335235,-0.39545867,-0.22726785,-0.098691754,0.17916067,0.60845035,0.10953498,0.11661703,0.025020303,-0.37291402,0.2350812,-0.08518076,-0.011867606,-1.4196175,0.5067028,0.28442794,0.74721706,0.2974711,-0.06700711,-0.10724397,0.6294823,-0.13047042,0.25874522,0.39132294,-0.07103682,-0.41076997,0.59863627,-0.6976405,0.6120644,-0.109426536,0.01165987,0.23741268,0.21903767,0.4585112,1.1391468,-0.079026885,0.061930828,0.15627238,-0.43784767,0.16352312,-0.307431,-0.040695887,-0.6852882,-0.43730974,0.43780538,0.4469368,0.29857546,-0.38871333,0.014971747,-0.046134315,-0.19604169,-0.1585071,-0.054507367,0.0005401373,-0.21225506,-0.6602983,-0.3196979,0.5060013,-0.01878899,0.15768264,0.20740718,-0.19929695,0.3553263,-0.21821985,0.019698363,-0.079348095,-0.68411326,-0.14683706,-0.23703872,-0.57211405,0.19813552,-0.46324697,0.2945115,0.20965339,-0.010343343,-0.23865642,0.33274412,0.26210076,0.9128422,-0.21874176,-0.25908816,-0.3148143,0.103897996,0.21727474,-0.23461914,-0.1897038,-0.38871846,-0.22127604,-0.53481096,0.34740454,-0.17576331,-0.23783694,-0.037553545,-0.040465955,0.16988188,0.29019594,-0.17834465,-0.113909155,-0.22346638,-0.15577425,-0.2364848,0.0105237225,-0.32801515,0.33674362,0.16160257,-0.067684196,0.0028090535,-0.12517527,-0.020778846,0.11193657,-0.01605541,0.3737969,0.3021972,0.020511866,-0.18013622,-0.049077217,0.11475564,0.42582396,0.15748833,-0.18431027,-0.36199063,-0.22761795,-0.21651782,0.3793968,-0.19098918,0.38393408,-0.05251576,-0.45751512,0.6526854,-0.016960727,1.0968013,0.17322867,-0.23687452,0.2358831,0.52085525,0.08305021,0.03629521,-0.13510473,0.6594282,0.41320202,-0.04358691,-0.33816656,-0.4266095,-0.14732271,0.45487294,-0.27681434,-0.2940375,-0.0024130838,-0.65883726,-0.24881831,0.017500121,-0.0216935,0.3267314,-0.07378565,-0.094298236,0.18109521,0.11442049,0.48993966,-0.45871976,0.06905412,0.2483039,0.32439533,0.054946806,0.20611939,-0.39271024,0.4716323,-0.64666915,0.25154367,-0.40661177,0.12463676,-0.21586162,-0.16625144,0.13418576,0.13472249,0.2787905,-0.2806083,-0.23689696,-0.32750925,0.6725258,0.28057915,0.15563719,0.62179697,-0.25070494,-0.1786512,0.24524774,0.44485247,1.1801747,-0.1473884,0.049192216,0.3234938,-0.3776849,-0.48375708,0.16594145,-0.2980823,0.19751689,0.067912936,-0.20411706,-0.31484216,0.2924616,0.04213124,0.18040338,0.15806183,-0.45146158,-0.26901266,0.49786332,-0.1965379,-0.3557515,-0.3414321,0.20735154,0.5096768,-0.42852706,-0.25949675,0.1200927,0.109689385,-0.18146607,-0.58455074,-0.0038241057,-0.48970744,0.40392604,0.023880359,-0.4225318,-0.011268086,0.08940566,-0.45177254,0.30997148,0.09096401,-0.41240567,-0.00012565576,-0.06645921,-0.3204199,1.1125878,-0.13155787,0.059692264,-0.79481167,-0.5172029,-0.7401853,-0.36208886,0.1654173,0.13047291,-0.15931807,-0.49303633,-0.18307385,0.02114842,-0.013523185,0.0042060064,-0.37495553,0.37521333,0.10985184,0.3112199,0.012856801,-1.0722551,-0.036533955,0.038530268,-0.27898565,-0.65478665,0.51174176,-0.13475493,0.6947042,0.03909255,0.13431881,0.20433538,-0.3404237,0.29876354,-0.32877466,-0.13628957,-0.6081561,0.2907158 +114,0.22944444,-0.14716125,-0.44954574,-0.22527005,-0.29191858,0.24598888,-0.26972008,0.11945342,0.197892,-0.28476372,-0.007051901,-0.040800545,-0.02371537,0.39321455,-0.27125826,-0.7357791,0.06791997,0.0111742,-0.5287541,0.41714764,-0.5453153,0.36221406,0.18198928,0.38659403,0.03042117,0.24105667,0.24221903,0.009408823,-0.041067924,-0.12362967,-0.205081,0.29869837,-0.5008405,0.2596252,0.0053539197,-0.28809625,-0.08863881,-0.3332287,-0.3411892,-0.5559753,0.39608428,-0.74790895,0.46827573,-0.1961934,-0.45085353,0.0022438585,0.16869469,0.13236181,-0.34778303,0.104714714,0.18644889,-0.04016621,-0.060628764,-0.031027472,-0.23805997,-0.5181026,-0.5442946,-0.042364217,-0.6564888,-0.08039159,-0.25440195,0.29799318,-0.2981586,-0.0113388775,-0.1463427,0.3550731,-0.47175092,0.025645088,0.18100436,-0.33792564,-0.04303883,-0.52653944,-0.075996466,-0.023652753,0.26321232,0.0052757463,-0.14910175,0.20731598,0.3394064,0.5727499,0.008270327,-0.17398588,-0.30635548,-0.10915935,-0.0036823512,0.46446413,0.034951102,-0.3627827,-0.236281,-0.035366103,0.30707023,0.15763427,0.16387342,-0.45753926,-0.07176183,0.024234017,-0.26229432,0.43735436,0.46763736,-0.50311005,-0.22748694,0.48727384,0.17399193,0.073831625,-0.3265785,0.3253509,-0.04776625,-0.4249038,-0.17471609,-0.06032092,-0.022376243,0.55738664,-0.21610974,0.4115175,0.73790973,-0.022570593,-0.050556935,-0.008002695,-0.26842645,-0.17796096,-0.20553856,-0.039254084,-0.009213706,-0.3434882,-0.007568951,-0.114861704,0.77038264,0.030690176,-0.8838757,0.45609435,-0.403647,0.09669501,-0.099337064,0.5190242,0.75073487,0.4401438,0.12814909,0.8998806,-0.5230192,-0.07093584,-0.022638854,-0.34504014,0.07825644,-0.03913508,-0.021921257,-0.41374156,0.10501461,0.13482067,0.14538455,0.054058813,0.46819755,-0.3157666,-0.062293403,0.040899627,0.6063077,-0.4003256,-0.0922207,0.84348035,1.0297908,0.9981541,0.043517735,1.3224078,0.36491463,-0.02542273,-0.049478035,-0.196311,-0.5578087,0.059254605,0.35309803,0.34419262,0.23866738,0.086734734,0.025662163,0.51693624,-0.19650196,-0.069252826,-0.030819066,0.26082176,0.04089064,-0.12788825,-0.32876787,-0.15992837,0.28862846,0.1839475,0.09713903,0.15513723,-0.089969546,0.41453597,0.14901759,1.2477635,0.017945787,0.13881491,0.11467852,0.3431517,0.24424712,-0.15102744,-0.060771126,0.2186553,0.40440422,-0.211675,-0.5762993,-0.16508374,-0.27984017,-0.5469939,-0.19165084,-0.2795406,-0.38244823,-0.20213209,-0.51523983,-0.19217633,0.14054559,-0.42264795,0.42916107,-2.8400066,-0.20795706,-0.23146819,0.3161833,-0.10389149,-0.2624187,-0.33303645,-0.50907636,0.38144362,0.4715825,0.30194423,-0.5631253,0.50130725,0.346547,-0.2190757,-0.15866153,-0.59905,0.13184099,-0.1550274,0.42496306,0.027743736,-0.2796383,-0.13881192,0.18725896,0.7373194,0.10672193,0.02920594,0.16701649,0.46986195,-0.046754997,0.5634492,0.00401514,0.55722564,-0.06391199,-0.023820508,0.34241942,-0.43208057,0.352112,-0.10976018,0.15724331,0.44195968,-0.514693,-0.8016624,-0.59326166,-0.14903186,1.2067568,-0.34271702,-0.36628866,0.29998988,-0.1112337,-0.27854717,0.12381033,0.6081908,-0.10808773,0.047974978,-0.61573327,0.06846488,-0.16708805,0.16941322,-0.15043592,0.041340955,-0.43078664,0.76551276,-0.17267634,0.7073341,0.3701295,0.12051873,-0.17419931,-0.4317898,0.06778946,0.80243134,0.4346784,0.05767625,-0.09829109,-0.14506236,-0.27407163,-0.21060729,0.03898023,0.5588869,0.5012414,0.12124233,0.22103772,0.31724337,-0.08223912,0.06412949,-0.22245952,-0.18719843,-0.0062492937,0.13371833,0.5939617,0.67003703,-0.2249295,0.27745882,-0.092148624,0.21403141,-0.14218098,-0.62446374,0.5363495,0.52544576,-0.12742493,-0.34458447,0.53086275,0.3968693,-0.12555051,0.34504694,-0.4289612,-0.39654115,0.5707985,-0.17859516,-0.40920368,0.2863733,-0.38152346,-0.054391645,-0.80669785,0.27881438,0.037703946,-0.5304279,-0.4729344,-0.33902958,-3.7218072,0.052583836,-0.112285875,-0.07451946,-0.14100187,-0.2362299,0.34415257,-0.4486232,-0.5939275,0.029607004,0.012276453,0.4120991,-0.04976856,0.19263607,-0.311471,-0.10288529,-0.25865245,0.24133702,-0.031208845,0.31058884,-0.0075478544,-0.22320278,-9.389719e-06,-0.2755484,-0.51106924,-0.050873145,-0.45225802,-0.49027622,-0.0034074604,-0.36338228,-0.20386519,0.7389051,-0.37214157,0.027612654,-0.3279606,-0.071372695,-0.22498092,0.32625392,0.16023222,0.1312366,-0.033957217,0.019598132,0.004432758,-0.3033719,0.23517497,-0.026702853,0.22094968,0.43910658,-0.035748005,0.14000271,0.459367,0.45655626,-0.10082388,0.751526,0.17009373,-0.06479582,0.34694615,-0.105769664,-0.32775936,-0.6844808,-0.33615348,-0.10771204,-0.5227217,-0.34414235,-0.15879424,-0.37019303,-0.7140222,0.2832072,0.06434082,0.078240715,-0.17762785,0.22155164,0.28681037,-0.120900474,0.119128734,-0.007284735,-0.19586954,-0.49427655,-0.5302506,-0.6838478,-0.51005614,0.07684323,0.9488109,-0.0067285853,-0.24181484,0.03731884,-0.3102724,-0.04816269,0.03816318,0.294274,0.13949658,0.32220352,-0.15135759,-0.8103855,0.35342762,-0.35535127,-0.04310132,-0.4869383,-0.061532296,0.6500917,-0.57640433,0.48107302,0.33472034,0.31367937,0.060598683,-0.6888913,-0.2473754,-0.050542887,-0.23234573,0.60566545,0.24840961,-0.60026616,0.5032636,0.06638015,0.041300096,-0.60499424,0.37979242,-0.03493358,-0.1754718,0.06443238,0.33581296,0.10345759,-0.17243476,-0.10602747,0.15242891,-0.53443784,0.43276554,0.15120047,0.018248383,0.6066798,-0.14094314,-0.31308448,-0.42925853,-0.43759516,-0.49029616,-0.18106993,-0.1147943,0.048456024,0.18037266,-0.022375472,-0.16321565,0.45376894,-0.260129,0.2593231,-0.08122601,-0.08659109,0.34795666,0.54702777,0.32331365,-0.49805835,0.6510713,0.15470923,0.16248241,-0.10653354,0.08678417,0.53157043,0.25849754,0.39905772,-0.14222108,-0.11953269,0.13878931,0.7732323,0.2425985,0.3144305,0.17913848,-0.21992354,0.2942321,0.07409026,0.06437468,-0.072966255,-0.32084236,0.004340146,-0.18827482,0.23690033,0.34790167,0.19089845,0.358088,-0.110630766,-0.12250649,0.18561739,0.1374404,-0.13763371,-1.0485114,0.31419304,0.18865989,0.80988663,0.50431794,-0.00023171106,-0.040730134,0.47922954,-0.25828493,0.048794057,0.26857272,0.09034162,-0.40310135,0.57146806,-0.46597165,0.5201568,-0.22891946,-0.04796913,0.19086394,0.24231143,0.22675778,0.8144873,-0.018333126,0.15899569,0.019090036,-0.23537806,0.039697886,-0.24474487,0.11107974,-0.34612188,-0.25205192,0.6360222,0.48979503,0.24093321,-0.29735696,-0.09410203,0.026856385,-0.1925804,-0.083264954,-0.0358016,-0.102112435,-0.31700534,-0.6836534,-0.35324866,0.57861155,0.038554873,0.051607702,0.110791676,-0.35350165,0.2930113,-0.15255699,-0.004683336,-0.056944136,-0.46205133,-0.04153951,-0.3150056,-0.5958624,0.3317565,-0.37543476,0.3384346,0.19120164,-0.047988765,-0.1777834,0.124657445,0.08312643,0.679519,0.02926005,0.027644353,-0.2619466,-0.057171397,0.33953694,-0.30743307,-0.23707327,-0.35848525,0.26548102,-0.5718926,0.3723737,-0.25322077,-0.16438057,0.025851047,-0.057432517,0.023405302,0.35460657,-0.21871224,-0.04168664,0.27170306,0.12522939,-0.28790125,-0.03836223,-0.41190898,0.272429,0.04863548,0.14734305,0.14838387,-0.10363578,-0.14100756,0.2930086,0.13251194,0.23143464,0.3116,-0.02311549,-0.34310323,-0.018783135,-0.020061605,0.60142344,0.1883358,-0.061772957,-0.27384466,-0.52069753,-0.31148174,0.43540654,-0.10354342,0.14908934,0.15306526,-0.4544892,0.6494929,0.23513243,1.0007795,0.14048497,-0.39553615,0.13291796,0.53738827,0.12862696,0.16392459,-0.19083132,0.8945227,0.5517094,-0.15259504,-0.1745899,-0.35636237,-0.07421243,0.072820954,-0.29845485,-0.30550846,-0.18512985,-0.7198581,-0.09609617,0.050859764,0.1147444,0.13405772,-0.11309845,-0.08340044,0.1302471,0.1262115,0.4122009,-0.5889893,-0.093140386,0.41076177,0.18359655,-0.0810129,0.102449164,-0.39668694,0.38322696,-0.64344895,0.09360324,-0.42048606,0.15454635,-0.12406177,-0.14833114,0.22224905,0.047428623,0.3071394,-0.28945217,-0.40856358,-0.2873067,0.6231914,0.14416236,0.25254685,0.6926417,-0.18935475,-0.16414304,0.13372903,0.6428946,1.3879752,-0.051982697,0.14483753,0.3289338,-0.3302932,-0.57332367,0.050112557,-0.49933892,0.029670795,0.041681733,-0.29098442,-0.24966116,0.24654087,0.056673657,0.056559753,0.07068982,-0.52639973,-0.31490734,0.4431819,-0.15942399,-0.14202724,-0.27049887,0.1272776,0.60730165,-0.33446863,-0.23017938,0.0058375834,0.36639258,-0.24115436,-0.6813259,0.18191361,-0.24316676,0.37885496,0.22417274,-0.26883203,-0.01070774,0.23084368,-0.47670588,0.16693674,0.46901193,-0.33739442,0.03501801,-0.33824494,-0.14245996,1.0941939,-0.046118878,0.17551771,-0.5937051,-0.47454348,-0.955452,-0.27566254,0.13614918,0.15361811,-0.0635201,-0.57436097,-0.21326998,-0.16986027,0.120211564,0.10726121,-0.49195448,0.4326123,0.094214365,0.54285926,-0.096627496,-0.85412705,0.021158163,0.07584231,-0.24285723,-0.42234612,0.7143986,0.008975104,0.62804383,0.15022118,0.011964833,0.10672056,-0.6512127,0.31102535,-0.30768266,-0.05811371,-0.7239339,0.17736068 +115,0.5233417,-0.441573,-0.83321404,0.06580274,-0.36641747,-0.036324404,-0.34455922,0.5796117,0.06759138,-0.6484051,-0.2727998,-0.026900979,-0.13571963,0.286967,-0.25574535,-0.62828887,0.04311275,0.26181287,-0.40663338,0.75019526,-0.038328722,0.29014036,0.03118939,0.46025392,0.3463981,0.10017196,0.043699786,0.15674584,-0.2079306,-0.22720495,0.16863145,0.079140335,-0.75040424,0.29326808,-0.39734742,-0.5960087,-0.20911519,-0.5133686,-0.29017928,-1.0612195,0.30362195,-0.74113613,0.5514054,-0.04124755,-0.5506856,-0.04992443,0.09761589,0.39756918,-0.115782656,-0.04541499,0.08474626,-0.2462519,-0.08759589,-0.20314659,-0.19547227,-0.4246481,-0.7504354,0.06443233,-0.40754333,0.11000712,0.10492095,0.38308525,-0.42921972,-0.01526863,-0.20079273,0.6252741,-0.34070727,-0.022422154,0.49693078,-0.11915536,0.120889,-0.6807683,-0.18143858,-0.18134643,0.15414125,-0.012562527,-0.19900022,0.13510026,0.05737601,0.49465507,0.1923247,-0.33792412,-0.28219864,-0.08177066,0.18962502,0.35669863,-0.09051935,-0.3345632,-0.24287264,-0.013076682,0.5746084,0.2520314,0.27820048,-0.20733339,-0.02994464,-0.20347592,-0.06852006,0.3742005,0.48286635,-0.31188837,-0.004381574,0.19342674,0.766043,0.22692548,-0.2414191,0.13364086,0.04346111,-0.5336009,-0.15020336,0.14468351,-0.18373905,0.6054369,-0.16960336,0.28776264,0.47932023,-0.1197526,-0.09002605,0.42370483,0.17555414,-0.17198923,-0.3880275,-0.38737455,0.49786,-0.3750995,0.24274032,-0.41339523,0.7916373,0.2474172,-0.69794667,0.27228144,-0.6491333,0.28003427,0.052133244,0.57325256,0.7762467,0.50853735,0.14903443,0.9035378,-0.33075127,0.19623706,0.051802315,-0.11881955,-0.2179056,-0.27510545,-0.09316892,-0.40443003,0.099426985,-0.30940565,-0.023939114,-0.014064711,0.51314366,-0.7667142,-0.37036914,-0.014463911,0.7852427,-0.11506666,-0.15148726,1.0940896,0.8506881,1.2731599,-0.061058145,1.133446,0.13745263,-0.14101599,-0.13575624,-0.043679126,-0.7793331,0.42440823,0.3624228,-0.58920485,0.5978447,-0.22008078,-0.11647523,0.7079426,-0.44293424,0.059557788,-0.17763707,0.14105591,-0.056683317,-0.21883339,-0.5567359,-0.06591043,0.08943718,0.077518016,0.0485997,0.47180426,-0.1256701,0.55976915,0.0029726715,1.216161,-0.28378022,0.07697248,0.25664836,0.26660478,0.30979115,-0.29630062,0.07028341,0.13504468,0.2685979,-0.03364829,-0.5659683,0.016343651,-0.47338024,-0.50631225,-0.21877989,-0.2271425,-0.406524,-0.26264748,-0.601693,-0.31447828,-0.17433992,-0.16197722,0.28718737,-2.2001178,-0.3277872,-0.2603351,0.32948843,-0.6377837,-0.39802817,-0.056621786,-0.5903916,0.3886736,0.14923012,0.5740107,-0.5470384,0.4150409,0.54545224,-0.62645626,-0.038694613,-0.7171027,-0.10921887,0.06459699,0.27998957,0.0010127241,-0.2477449,0.2741873,-0.056163207,0.52972686,-0.09167504,0.023993047,0.4277634,0.3988655,-0.23290427,0.2305687,0.053589042,0.6362315,-0.7426415,-0.181623,0.60665977,-0.45787317,0.537989,-0.06111376,0.08746411,0.7131958,-0.62261635,-0.5864815,-0.5617498,-0.178387,1.1242753,-0.18178795,-0.5676371,-0.1419843,-0.33597022,-0.10036047,0.03684797,0.4834662,-0.041921653,0.06669634,-0.7935926,-0.1926026,-0.05087856,0.21100444,-0.05999152,0.042485483,-0.40937006,0.7723246,-0.12650432,0.46781164,0.5363803,0.30375835,-0.24159043,-0.6291019,0.03165877,0.95074,0.57685983,0.13481468,-0.44362304,-0.053745117,-0.6009872,0.005759349,-0.0059062014,0.5889407,0.61631465,-0.18451406,0.11387196,0.43616486,0.106263176,0.25921085,-0.17227125,-0.39702305,-0.3628413,0.20098776,0.63885343,0.78386486,-0.16522329,0.40416792,0.0029733228,0.28099844,-0.43464836,-0.5651007,0.62567174,0.77854824,-0.39274755,-0.411068,0.5144736,0.40907544,-0.3452888,0.61542743,-0.72680277,-0.4712045,0.5222578,-0.13776582,-0.41998678,0.09332112,-0.36454475,0.33109415,-1.0132309,0.16111143,-0.6660131,-0.272175,-0.8060988,-0.29703504,-1.0296338,0.3763841,-0.2313001,0.12565169,-0.27268633,-0.18489797,0.009547885,-0.6456079,-0.92715526,0.13451765,0.1558922,0.6502645,-0.2267959,0.25356978,-0.22785395,-0.60701174,-0.28776342,0.2914409,0.28623158,0.28977114,-0.20364109,-0.37013525,-0.07215199,-0.12171699,-0.330698,-0.06279634,-0.745439,-0.4781945,-0.3116031,-0.53984594,-0.24800557,0.7027606,-0.45742935,0.08750386,-0.09448163,0.024171498,-0.0014605934,0.13794042,0.03781359,0.106037535,0.29023197,-0.22954093,0.21074632,-0.26431203,0.027076492,0.08653548,0.29371825,0.5264188,-0.27892613,0.4439147,0.49888134,1.0659605,0.101079464,0.83500946,0.3135733,-0.022353457,0.46807736,-0.11651397,-0.47996256,-0.67419666,-0.049738996,0.14684723,-0.4045385,-0.48990777,0.18646461,-0.40628222,-0.91615283,0.65423703,-0.0065361043,0.33084196,0.012443185,0.6107511,0.6744162,-0.3785732,-0.1312515,0.13337752,-0.15299676,-0.37763628,-0.33467352,-0.6922143,-0.6172965,0.11474284,1.344777,-0.21149834,-0.078035206,0.30653906,-0.34739244,0.041670665,0.2646221,-0.09683908,-0.22433542,0.45114833,0.18802397,-0.52467567,0.34354523,0.13748318,-0.12658769,-0.35499984,0.25908846,0.56920445,-0.6106053,0.27652094,0.36979893,0.02227183,-0.3062285,-0.69308877,0.25594157,0.23156013,-0.1325983,0.5099216,0.52516925,-0.40778366,0.31560034,0.3323393,-0.077663586,-0.9176244,0.47670028,0.10030364,-0.18643686,-0.21712899,0.54357696,0.17304434,-0.08758014,-0.20598881,0.34663528,-0.38922912,0.14602779,0.30221403,-0.3735634,0.1598913,-0.2238524,-0.33804467,-0.8329329,0.28227484,-0.80479723,-0.28915364,0.5449652,-0.00054358516,-0.017945822,0.055607915,0.32176277,0.35040504,-0.2553519,0.098826475,-0.2873572,-0.3032886,0.5863488,0.5688053,0.465599,-0.44884413,0.76414293,0.23629618,0.050218634,-0.024371238,0.029448546,0.49384058,0.018934846,0.67687124,0.08552456,0.012345805,-0.15489925,0.62800705,0.21748017,0.5373522,0.15118538,-0.12794675,-0.11438481,0.06760451,0.25795624,-0.4156437,-0.46266717,0.110772796,-0.12023946,0.02562793,0.51520264,-0.04984091,0.39634308,-0.031966455,-0.28650525,0.04695533,0.10598354,-0.16208164,-1.3317164,0.3318879,0.22203535,0.8992189,0.53449327,0.13468291,0.06958336,0.4888797,-0.2199138,0.1474749,0.56591886,-0.11289675,-0.4204559,0.58670765,-0.6380382,0.5868776,-0.20812069,0.118012905,-0.0109907575,-0.047390934,0.6314407,0.6660833,-0.11151635,0.00862189,-0.17093788,-0.31923723,0.11289195,-0.41120735,0.27250022,-0.44325167,-0.3066656,0.7844092,0.5611031,0.39540583,-0.27336577,-0.0016850417,0.144757,-0.06473007,0.4288422,-0.07296442,0.32817063,0.02599448,-0.33374304,-0.004736515,0.43211943,-0.02704492,0.040621366,-0.07416038,-0.33244565,0.1892412,-0.08707207,0.14944175,-0.28029603,-0.96606576,0.09489496,-0.4991718,-0.5533955,0.32527512,0.112429366,0.15702012,0.16494821,0.13253249,-0.39808103,0.39171565,-0.21534666,0.7779262,-0.08270654,-0.15839921,-0.20353062,0.37613815,0.25447154,-0.32688853,0.14039873,-0.13413182,0.29205024,-0.42842785,0.3217802,-0.0065443907,-0.37831333,0.02125022,-0.041541778,-0.22007634,0.52330434,-0.12803076,-0.16740337,0.01940615,-0.25402555,-0.16461152,-0.3643411,-0.135068,0.24679288,0.1801463,0.072616726,-0.3446411,-0.070593864,0.0008709614,0.37856585,-0.047002908,0.14005803,0.6449083,0.043756686,-0.76011175,0.0468594,0.24575917,0.5949884,0.191093,-0.20973644,-0.38524708,-0.44482136,-0.45772573,0.6028745,-0.25585872,0.3979796,0.10173053,-0.18718158,1.041188,0.20116527,1.4895369,-0.052613582,-0.40426925,0.1355493,0.58912945,-0.0921992,-0.15315276,-0.42322686,1.1541319,0.44139653,-0.30095336,-0.041473646,-0.28583354,-0.08542652,0.19403924,-0.15733185,-0.18627335,0.036698174,-0.509454,-0.23911563,0.106497675,0.28655317,0.012950714,-0.38710624,-0.063661724,0.39740616,-0.034611408,0.27441484,-0.529275,-0.312531,0.25765696,0.29178044,-0.23138659,0.16620804,-0.55229986,0.26210898,-0.78326917,0.20929815,-0.41168955,0.12349716,-0.031738814,-0.5193885,0.41708496,0.09156113,0.24663244,-0.56905705,-0.3861708,-0.24529178,0.4772544,0.3440931,0.13583912,0.730692,-0.3802262,-0.02484876,0.17159635,0.5003315,0.965005,-0.2695393,-0.102932215,0.17144758,-0.40891927,-0.8585877,0.3419778,-0.64238006,0.46621084,-0.21695064,-0.3657689,-0.8195447,0.07176857,0.18682583,-0.14091031,-0.033079453,-0.95610404,-0.087440975,0.29112697,-0.38366306,-0.09541952,-0.49175707,-0.06465519,0.5344626,-0.047157343,-0.4289104,0.1251085,0.21340132,-0.10265103,-0.55995935,0.13830748,-0.44304892,0.10715987,0.11021992,-0.33751485,-0.12295675,0.0908918,-0.71901554,0.08938543,0.20244654,-0.41277486,-0.0077903317,-0.24317652,0.00095507276,0.8947761,-0.28926688,0.2718948,-0.2795769,-0.46828064,-0.8625336,-0.21133436,0.3523371,0.08775454,0.14469999,-0.9682936,0.0431423,-0.30377585,-0.08074752,-0.03759134,-0.30172727,0.4293922,0.23882487,0.42188737,-0.13094492,-0.8802172,0.29686755,0.05714915,-0.24901658,-0.41270578,0.26352137,0.0652637,0.9796515,0.078384124,0.0718212,0.3377188,-0.78655124,0.10672997,-0.14159751,-0.05103812,-0.58870673,0.010875236 +116,0.57736665,-0.06358959,-0.5528782,-0.14430352,-0.32940578,0.16003142,-0.09046527,0.33959213,0.025948016,-0.63680404,-0.46713403,-0.21428028,-0.13053972,0.0022303509,-0.13292,-0.48919863,0.353682,0.3484135,-0.58300436,0.5679294,-0.45494395,0.59857774,0.14567734,0.1451285,0.16923301,0.10469541,0.18916692,-0.015555316,-0.216446,-0.35114655,0.12740271,0.17474772,-0.45274565,0.39601612,-0.15407334,-0.4210596,-0.03286704,-0.23775993,-0.19695657,-0.84152836,0.11442841,-0.7365892,0.49044192,-0.28246948,-0.27900708,-0.011764018,0.12736882,0.18456167,0.014338599,0.042888973,0.17531705,-0.084966674,-0.3188499,-0.33805832,-0.18777667,-0.4194852,-0.3941951,0.06603377,-0.16612536,-0.109043725,-0.29652914,0.28519052,-0.18793243,0.09227197,-0.102383986,0.4246535,-0.2637121,0.17380585,0.045779712,-0.19704987,-0.034195323,-0.73139256,-0.18633042,-0.17573959,0.28631863,-0.061428133,-0.12685864,0.18045847,0.10624865,0.6029068,0.07682843,-0.074616045,-0.24611609,-0.18698694,0.35269496,0.6102199,-0.018274684,-0.07367057,-0.17039302,-0.1775863,0.33025426,-0.071305126,0.28471,-0.5229179,-0.1717641,-0.36318558,-0.24789463,0.16725141,0.47657695,-0.32112586,0.013928693,0.2676369,0.62056947,0.07128807,-0.2672021,0.24657533,-0.26385805,-0.34694672,-0.08407039,0.042204563,0.14962897,0.49638665,-0.123383455,0.16801009,0.29965323,0.04718461,-0.11493007,0.16296183,0.0912168,0.049059648,-0.19039737,-0.08409126,0.06793273,-0.34779993,-0.13310567,-0.44695795,0.8480268,0.061110202,-0.65317154,0.43608972,-0.3594097,-0.015951399,0.009925031,0.46893552,0.60812205,0.4790656,-0.071788326,0.68975407,-0.40516073,0.03566388,-0.12310742,-0.102333106,-0.055786427,-0.032678846,-0.008495349,-0.3945933,0.2594364,-0.087510824,-0.120659076,-0.17537093,0.5452423,-0.47491643,-0.17243865,0.03861972,0.6401799,-0.42639977,-0.07775398,0.7665522,1.0235745,0.8558852,0.11956845,1.3015301,0.34320813,0.017269112,-0.23499845,-0.21773991,-0.5979032,0.19290026,0.20524615,0.5181972,-0.18746132,0.27636024,0.07550181,0.57108086,-0.49699,0.05588202,-0.22866017,0.34174216,0.02703586,-0.011224137,-0.29527777,-0.12653992,0.23701444,0.012938102,0.19872838,0.1926295,-0.24815449,0.37253377,0.049463466,1.5289123,-0.21678878,-0.02637386,0.09939623,0.25585455,0.04337309,-0.14799765,-0.01672431,0.073427744,0.2110365,-0.26195318,-0.35538134,-0.122441016,-0.04857143,-0.5275125,-0.24465176,-0.1234777,-0.12657149,-0.013958601,-0.23514284,-0.3622549,0.06050033,-0.52657056,0.5412403,-2.2452307,-0.15888911,-0.15380917,0.37756222,-0.14202656,-0.51546246,-0.10692581,-0.46916464,0.4982839,0.2885961,0.37563017,-0.424273,0.49927908,0.32877678,-0.37642255,-0.11101807,-0.6335129,0.017826658,0.022384562,0.27506855,0.11630501,-0.014213145,-0.36782214,-0.12644516,0.4153722,-0.21052358,0.1676646,0.6488712,0.284303,0.15100482,0.37747192,0.20488478,0.7067106,-0.35390583,-0.07375087,0.5241959,-0.40248615,0.08671558,-0.042040866,0.19014928,0.34096912,-0.5523946,-0.4223231,-0.9752586,-0.38282818,1.2934301,-0.147148,-0.48472896,0.1913557,-0.30368212,-0.3692425,0.10928067,0.34146452,-0.115684085,-0.14734194,-0.70107853,-0.21961528,0.024195036,0.3962067,-0.18999648,-0.14837515,-0.5089704,0.7136656,-0.29662082,0.5286567,0.35311782,0.27848896,-0.09284103,-0.25656685,0.02531851,1.089929,0.37755173,0.097348616,-0.19210038,-0.2959533,-0.4573135,-0.18467881,-0.0139158005,0.7819146,0.3942861,-0.017902734,0.038482126,0.22744407,-0.11414563,-0.13342513,-0.19980405,-0.38332075,-0.2000254,-0.0014723081,0.6236515,0.5860649,0.0971929,0.4773021,-0.18892115,0.38192353,-0.2935514,-0.5642263,0.37886178,0.6050364,-0.21740222,-0.37020996,0.51702887,0.34866813,-0.26847416,0.33249342,-0.56910485,-0.42384756,0.25150216,-0.026681652,-0.36919868,0.050009325,-0.32565954,0.2665378,-0.80968064,0.5300743,-0.45625323,-0.8978536,-0.35178983,-0.19637473,-1.9875834,0.20089012,0.04697587,-0.064128466,0.018594269,-0.1536662,-0.04432039,-0.16546696,-0.5446873,0.1514392,0.022849377,0.53524595,0.08584694,0.061190203,-0.28386155,-0.3151748,-0.16917141,0.16579205,0.02934454,0.3862174,-0.16622402,-0.3185236,0.04706641,-0.22290619,-0.08848361,-0.0015245286,-0.71177906,-0.7770923,-0.050560493,-0.458069,-0.28064182,0.5791151,-0.687206,0.043802842,-0.23783292,-0.10736425,-0.2303648,0.27827123,-0.05719515,0.14005902,0.025128622,-0.11752165,-0.10639226,-0.4352552,0.29773313,0.23006505,0.12223938,0.49611312,-0.17789723,0.06457246,0.25604314,0.572325,-0.028277615,0.85482186,0.2811715,-0.04148114,0.3653321,-0.09731027,-0.40217692,-0.367401,-0.027977398,-0.056199107,-0.47056305,-0.18477553,-0.18278188,-0.30329412,-0.69883907,0.40531492,0.18779221,-0.18871623,0.13997032,0.21845675,0.38930467,0.14089793,-0.09943371,-0.0866306,-0.13349146,-0.5000505,-0.57629544,-0.52617764,-0.49649826,0.025890555,1.1881938,-0.12720878,0.038955506,0.073225014,-0.24391015,0.14611192,0.25945723,0.11380784,0.05060649,0.5442615,-0.15794097,-0.6415522,0.49939,-0.097770065,-0.055231113,-0.44986293,0.36371738,0.61254436,-0.6828898,0.35692638,0.21711802,0.15079315,0.02679043,-0.5075627,-0.079326406,-0.1351549,-0.49336135,0.35300505,0.12264155,-0.65110934,0.335371,0.25858173,0.13846849,-0.8211196,0.26593116,-0.09906657,-0.31725386,0.187058,0.41896918,-0.019990517,-0.010917301,-0.31613094,0.0031872438,-0.37075788,0.34347758,0.20062064,-0.1474089,0.09760786,-0.41091824,-0.15424523,-0.6268002,-0.2518664,-0.5264523,-0.31726614,0.051376138,0.16418836,-0.088817105,0.24942112,0.29252908,0.44463533,-0.32585657,0.09745606,-0.27344176,-0.116548374,0.23460136,0.28867847,0.28773075,-0.40723264,0.4722318,-0.0047066305,0.034110326,-0.22310239,0.11160501,0.35323173,0.099148154,0.302496,0.070281826,0.15651025,0.24313776,0.87311214,0.18571562,0.4195151,0.09031475,-0.46002287,0.110836916,-0.09326673,0.14914912,-0.08378653,-0.441429,-0.044385202,-0.0031446172,0.12770694,0.45875946,0.2507187,0.5235535,-0.08956354,-0.56860244,0.05213184,0.05805784,0.02630705,-1.1295054,0.21890244,-0.06526643,0.9085068,0.48939693,-0.054852907,0.17589146,0.57861817,-0.20357664,0.18495886,-0.0032847065,-0.26012337,-0.20234026,0.22786158,-0.6377898,0.234543,-0.19006188,-0.020010876,0.32003453,-0.026653694,0.34230152,0.72302914,-0.06740518,0.1431187,0.03309339,-0.1436345,-0.10295778,-0.24993013,0.22646967,-0.5398951,-0.31066376,0.5976406,0.43604058,0.43150356,-0.30717328,0.13977844,0.13777402,-0.18347321,0.15832344,0.057568643,0.095575556,-0.06709482,-0.43680036,-0.22695869,0.69138014,-0.023283573,0.0029403658,0.30672044,-0.4143154,0.20079003,-0.05255155,0.119027406,-0.0073153605,-0.52568793,0.14775328,-0.28868768,-0.16540845,0.08471426,0.021516122,0.16940764,0.2673193,0.05031731,-0.22294767,0.48896393,0.24333389,0.73449314,0.22373445,-0.043300144,-0.25224406,0.16467656,0.29592538,-0.2766522,-0.04287883,-0.12887233,0.10888879,-0.7413622,0.25596708,0.0088924905,-0.32323796,0.1914246,0.027990071,-0.08845586,0.4668031,-0.11809237,-0.075788535,0.4330794,0.105497636,-0.15272276,0.08089935,-0.15093936,0.1780649,0.04750741,-0.22264704,-0.10506748,0.014920785,-0.022697357,0.11728169,0.06271393,0.27259958,0.4094319,-0.10872932,-0.45918608,0.14151004,0.11504797,0.62934744,-0.12657833,-0.013492222,0.013879111,-0.37304145,-0.40105012,0.31303045,-0.057268348,0.25510275,0.11712522,-0.2642212,0.5559958,0.19620067,1.0945233,0.03038867,-0.24919327,0.10017283,0.53714335,-0.017265104,0.09110964,-0.39766172,0.8194376,0.5357699,-0.17941931,-0.04183376,-0.2558881,-0.15354982,0.23672572,-0.024272852,0.013563707,-0.09284902,-0.6712064,-0.37531802,0.12527409,0.30132195,-0.11227141,0.01300944,0.16511177,0.25533238,-0.07515388,0.28264067,-0.45749947,-0.0030190807,0.27756065,0.18782432,-0.07356226,-0.03764157,-0.37924117,0.24320708,-0.8740866,0.047434393,-0.1355873,0.027961887,-0.19723204,-0.25846463,0.12563834,0.174692,0.2321313,-0.53189975,-0.3261743,-0.40456265,0.559851,0.18423806,0.28367278,0.62928987,-0.17590784,0.118925214,0.24238792,0.43653283,0.99643475,-0.12860686,0.046181403,0.50291526,-0.40738282,-0.49893254,0.116959065,-0.1381237,0.088844605,-0.15028845,-0.31506824,-0.40798935,0.30836242,0.30195045,-0.05026385,0.05643263,-0.6040796,-0.11026977,0.31646794,-0.22147104,-0.19938055,-0.19041698,-0.017742176,0.47118217,-0.15780888,-0.4645886,-0.075296015,0.28163618,-0.43213478,-0.61346734,-0.13277532,-0.37535465,0.3211466,0.15107816,-0.3691223,-0.2879202,0.12619406,-0.39158583,-0.14807357,0.072186574,-0.34995618,0.10139695,-0.2454096,0.11798865,0.7008337,-0.010232806,0.26847458,-0.4448851,-0.5935695,-0.6474832,-0.4021635,0.34495002,0.34334543,-0.307828,-0.43859306,-0.26884097,-0.36211866,-0.18859555,0.16958974,-0.26161176,0.42200515,0.26652262,0.35405394,-0.24798916,-1.1171939,0.102368504,0.21371815,-0.10988558,-0.4127271,0.2524485,0.02479483,0.73441494,0.059728578,0.01966679,0.12504259,-0.55383766,0.33302358,-0.16971119,-0.0443414,-0.46301043,0.13576585 +117,0.6115479,-0.025813244,-0.4652707,-0.27203438,-0.37725684,0.05282833,-0.038540855,0.20480278,0.35099265,-0.38020322,-0.114016734,-0.038807135,-0.068389475,-0.011871145,-0.11633641,-0.6879865,-0.029058943,0.22591455,-0.6526629,0.35239977,-0.326026,0.49617067,0.101429515,0.43832895,0.042793162,0.10268204,0.06603417,-0.11061887,0.017598914,-0.0702813,-0.16744262,0.15588346,-0.8074534,0.25791666,-0.13049263,-0.33589342,-0.04101966,-0.5454686,-0.3439207,-0.7710011,0.31642812,-0.77181786,0.8014184,0.048892483,-0.37985736,-0.15312031,-0.02931032,0.3347336,-0.20630452,0.22720265,0.27273706,-0.20480005,-0.0235473,-0.0925276,-0.25777745,-0.22851256,-0.52667785,-0.043529723,-0.3709871,0.006464376,-0.08425289,0.3047032,-0.17896003,0.0100933565,-0.34587398,0.4975695,-0.31075594,0.056604307,0.23365706,-0.120956525,0.299995,-0.4959763,-0.031584103,-0.12993176,0.16883205,-0.16961432,-0.30624968,0.19600064,0.19929862,0.7406298,0.14292324,-0.31217206,-0.040400527,0.083940305,-0.14619358,0.51131785,-0.25151923,-0.10130556,-0.2986088,-0.1373443,0.3608422,0.21188127,-0.11372698,-0.4625438,0.27257735,-0.12398399,-0.021939544,0.4108383,0.52485085,-0.14186262,-0.24494621,0.16708273,0.2785962,0.09347459,0.00524409,0.3711906,0.04818762,-0.42711464,-0.3223823,0.25580367,-0.087858126,0.3111849,-0.11719381,0.08467551,0.5116685,-0.022975596,-0.014011145,-0.00068239984,-0.004558123,0.21986839,-0.23771963,-0.39496592,0.30669996,-0.5793733,-0.024774514,-0.37719396,0.7046538,0.062120043,-0.76096874,0.27098358,-0.6452771,0.09282352,-0.12297515,0.6816892,0.8151392,0.47666475,0.03998373,0.8831147,-0.5282492,0.1461525,0.1650442,-0.15385373,0.019136135,-0.058122084,0.22710374,-0.3547602,-0.082693234,-0.14888176,-0.121033154,-0.1602202,0.27230674,-0.58532745,-0.23561089,-0.16006151,0.7359254,-0.36357898,0.115102306,0.8976028,1.1142713,0.9813025,0.061710063,1.3353225,0.4652948,-0.22526357,0.0109977815,-0.24406177,-0.57575434,0.1090486,0.19757472,-0.02359447,0.20300677,0.10196627,-0.063325875,0.37098843,-0.6938692,0.034169413,-0.17460912,0.18788172,-0.16841239,0.050417297,-0.5095788,-0.15488246,0.17382754,0.117671266,0.057471115,0.07195206,-0.2968645,0.17639717,0.17151836,1.1728624,-0.109375626,-0.092503555,-0.0054068496,0.27368876,0.10577261,-0.18154171,-0.09332888,0.17552076,0.471711,-0.17956482,-0.53788495,-0.005407619,-0.21940573,-0.13026452,-0.24086195,-0.17666174,0.033048328,-0.21226989,-0.41493225,-0.31755748,-0.0811349,-0.45304444,0.39591026,-2.2097654,-0.19642141,-0.15500304,0.47695324,-0.2670176,-0.2822528,-0.19604842,-0.4146336,0.24906634,0.3038493,0.28179276,-0.6199018,0.4487962,0.42718792,-0.40536693,-0.0049105263,-0.7257506,-0.112879366,0.070623025,0.30064213,-0.036901824,-0.22697504,-0.27680206,0.15663265,0.5252436,0.24057439,0.10932993,0.26103657,0.5064531,0.056230452,0.49183607,0.16708367,0.53508633,-0.32368013,-0.06948655,0.42535165,-0.5103375,0.11893945,-0.023795005,0.03176193,0.3741039,-0.6747049,-0.6462545,-0.8384559,-0.45895684,1.1172255,-0.3159768,-0.4555879,0.273733,-0.31907612,-0.19352333,0.14486068,0.5396051,-0.20936812,-0.010472619,-0.83822095,-0.2807451,0.0076853773,0.3384968,-0.014918786,0.2068049,-0.48815617,0.6171466,-0.33627856,0.46716785,0.44724756,0.34012133,-0.038116418,-0.67161083,0.066696376,0.9209348,0.3640017,0.18699664,-0.21024463,0.07804188,-0.22763804,-0.11002937,0.062558435,0.7423108,0.9898177,-0.12727328,0.02761024,0.4115404,-0.16379428,0.024915596,0.023544298,-0.4766467,-0.2789473,0.05354853,0.5647992,0.5033168,-0.031917516,0.30415022,-0.2672819,0.337573,-0.20401861,-0.48468348,0.44178292,1.2166641,-0.08749051,-0.16984613,0.7063471,0.43130296,-0.35900578,0.42268282,-0.77165896,-0.30985147,0.44484857,0.02090581,-0.6765134,0.099163875,-0.3550124,0.15224746,-0.84463716,0.52055305,-0.25869265,-0.84415084,-0.49675843,-0.12332846,-1.9471259,0.16935198,-0.24665777,0.025578452,-0.18797328,-0.37686855,0.29089308,-0.27723745,-0.7050715,0.098054975,0.025474511,0.39096445,0.034068037,0.19311169,-0.2295022,-0.113340564,-0.3271825,0.2695294,0.37028444,0.14216179,-0.0016958163,-0.31125847,0.00091137335,-0.07923528,-0.27239606,-0.013177172,-0.7162195,-0.74230903,-0.061625235,-0.6972773,-0.16470344,0.6401625,-0.35557073,-0.039499182,-0.34813198,-0.02847175,-0.25422123,0.355264,0.06821832,0.33452642,0.035711642,-0.081707805,-0.25979382,-0.27663013,0.28656626,0.21831986,0.1925494,0.19816747,-0.23196891,0.1828398,0.2988888,0.71704096,-0.10097441,0.7629211,0.33468777,-0.07437929,0.24519055,-0.29230186,-0.33025867,-0.61374915,-0.23423305,-0.12786561,-0.46570507,-0.27533254,-0.05890375,-0.5750551,-0.824928,0.30097836,-0.0989215,0.1298059,0.040209297,0.1927407,0.43244797,-0.043246742,0.012033754,-0.22340377,-0.13950506,-0.48936382,-0.33977216,-0.57542264,-0.49388555,0.104594484,1.4334834,0.065483905,0.16498944,0.3463965,-0.24560341,0.16584308,0.086215846,-0.053404294,0.1962591,0.7712825,0.023830872,-0.6891582,0.11223487,-0.000634966,-0.05649257,-0.6489032,0.2109557,0.9254179,-0.8694081,0.6124722,0.32056016,0.18300611,-0.24453856,-0.6232955,-0.377981,0.03612482,-0.19119708,0.7054994,0.17764029,-0.40951437,0.3906712,0.124093205,0.013683291,-0.7309264,0.4745223,0.050760806,-0.286119,0.21230489,0.43128088,-0.21236412,-0.1344437,0.052097134,0.36104774,-0.22911622,0.45473364,0.1932288,-0.09445547,0.20961627,-0.13003644,-0.23096617,-0.67549884,0.07482866,-0.6701952,-0.36858705,0.19858955,-0.11247897,0.019813826,0.36578682,0.0584662,0.50803363,-0.10030387,0.19242646,-0.10564804,-0.33976793,0.30942968,0.491602,0.3551037,-0.45609182,0.54959834,0.024251156,-0.09944292,-0.28055242,0.23507604,0.31579974,0.07731558,0.34088212,-0.18346699,-0.06344673,0.22183639,0.6393077,0.1148799,0.30383512,0.17867978,0.02885241,0.28174636,0.120420255,0.1486556,-0.16612604,-0.33144346,-0.16419172,-0.12362231,0.09674503,0.17995127,0.17241511,0.3142343,-0.18047921,-0.3233419,0.086929955,0.060927756,-0.23717652,-1.2928379,0.24038602,0.14216073,0.6732126,0.505259,0.00023306791,-0.00013851661,0.42987177,-0.1029979,0.16419636,0.48812085,0.08590675,-0.22214708,0.49780816,-0.43275928,0.38633266,-0.11966273,0.116771095,-0.0010868311,0.21164212,0.43657273,0.8703791,0.0056385673,0.010832573,-0.17480828,-0.07094239,0.08543779,-0.38746852,0.26167247,-0.5651451,-0.37404233,0.64204717,0.45522755,0.34381527,-0.31240466,-0.09215762,0.083012804,-0.23279117,0.18156348,0.021118935,-0.182991,0.16707538,-0.5955191,-0.21547945,0.45896918,-0.06460869,-0.22341046,0.18550849,-0.15514478,0.19438662,-0.030551754,0.050088324,0.056905113,-0.76421064,-0.19464618,-0.46945065,-0.095107034,0.11788731,-0.41276306,0.032339778,0.123322874,0.08825998,-0.3202909,0.10477896,0.2785858,0.7971702,0.053045347,-0.14728275,-0.40232074,0.14924267,0.21580952,-0.34274548,-0.10736457,-0.1685271,0.13485731,-0.70725626,0.46914372,-0.008353091,-0.21243699,0.30365217,-0.124829054,-0.007325429,0.38189915,-0.27796453,-0.11987963,0.43340996,-0.038253717,-0.36135462,0.034237016,-0.16333863,0.179024,0.27078387,-0.058225825,0.05307942,-0.14532755,-0.29799163,0.33238596,0.2687718,0.30548027,0.4656257,-0.023780452,-0.5232252,0.13906902,0.020862559,0.48335078,0.07151105,-0.051569257,-0.12202121,-0.34764507,-0.10127092,0.500048,-0.20072031,0.17128512,-0.15925834,-0.3541446,0.9042021,0.35655075,1.1727293,-0.039264705,-0.2702848,-0.18249358,0.56675726,-0.05921708,-0.046787288,-0.43034336,1.0155964,0.5423833,-0.07891774,-0.15874498,-0.35817772,-0.15752769,0.26933244,-0.1483579,-0.2626681,-0.14262964,-0.81878144,-0.29499292,0.21040668,0.3433226,-0.124385715,0.015155987,0.12608151,0.14993915,-0.097806096,0.52467704,-0.5333057,0.1595615,0.113066725,0.23383668,0.18205172,0.35425928,-0.34556696,0.19288714,-0.76317,0.19080004,-0.2965555,-0.068418495,-0.011315272,-0.31795618,0.08151014,0.034523975,0.27131242,-0.48046714,-0.24347201,-0.3306709,0.6152514,0.14487371,0.21941511,0.9040371,-0.22600159,-0.08410346,0.20685238,0.524844,1.4000537,-0.0939385,0.09705739,0.14954899,-0.35403207,-0.6074397,0.20773959,-0.25983414,-0.13779898,-0.14420986,-0.4449727,-0.34585002,0.1868438,0.1457911,-0.2608922,0.13809913,-0.57601917,-0.045120366,0.4792349,-0.15477268,-0.29188222,-0.34527633,0.29484156,0.66283923,-0.1692728,-0.35063598,-0.10445829,0.32829788,-0.4487503,-0.6973867,0.009552956,-0.5153318,0.29042098,0.068124875,-0.3952119,-0.07499489,0.14392985,-0.5092033,0.093233556,0.3117754,-0.36629534,-0.004530047,-0.053705342,-0.25375915,0.89442325,0.11931695,-0.0795503,-0.6769599,-0.45786032,-0.8430938,-0.24205995,-0.07087767,0.47002384,-0.082481936,-0.5911727,-0.11788313,-0.2311233,-0.010125822,0.16199511,-0.39760125,0.40900597,0.3078214,0.72399545,-0.2776669,-0.968998,0.029889595,0.12096645,-0.27000457,-0.40475512,0.47641328,0.1476824,0.6200094,0.058665097,0.078724034,0.040307395,-0.58756936,0.29497945,-0.1760496,-0.18447924,-0.8364197,0.08228911 +118,0.34400243,-0.215309,-0.35711065,-0.18712172,-0.17149445,-0.1908216,-0.3114403,0.47895297,0.26434797,-0.34511486,-0.33917996,-0.06950353,0.1479085,0.5129544,-0.2625776,-0.43626028,0.04775242,0.06121563,-0.64337367,0.50784576,-0.44557008,0.15217194,0.22894831,0.4220008,-0.007219578,0.31391293,0.48579472,-0.0013629913,0.22619939,-0.3043583,-0.2118152,0.25131187,-0.7437572,0.056062263,-0.31672308,-0.35562336,0.199819,-0.5676769,-0.08753164,-0.88031626,0.250096,-1.2440329,0.60666066,-0.13658285,-0.16819893,-0.11398591,0.34369808,0.1599537,-0.28853136,-0.24709897,0.10896587,-0.26030836,-0.26075664,-0.30590186,0.07217773,-0.54044753,-0.5277447,-0.0055683106,-0.50473416,-0.35327607,-0.4633425,0.23705296,-0.39058456,0.23755908,-0.15844603,0.35678357,-0.5452983,0.040369444,0.31582183,-0.33107334,0.50009567,-0.62392724,0.019036178,-0.124381125,0.5418443,-0.0039303065,-0.18870643,0.48541206,0.5450467,0.59330624,0.2340945,-0.34278077,-0.3642498,-0.21387395,-0.049133487,0.60280854,-0.21395257,-0.44482166,-0.21881768,0.17217726,0.35126907,0.54000187,0.08813506,-0.16047077,-0.033837117,-0.18280683,-0.22171402,0.68213415,0.7091461,-0.2758439,-0.27027887,0.15113191,0.5869194,0.17728679,-0.18604922,-0.05594318,-0.038849384,-0.5521141,-0.20215921,-0.21343951,-0.23011348,0.7182414,-0.103922166,0.0687681,0.8792812,-0.06490159,-0.0026860684,-0.0030254095,-0.10914715,-0.20660457,-0.30979082,-0.025919914,0.4217072,-0.6248212,0.052731086,-0.38324413,0.6271299,0.0005915724,-0.79197633,0.5080681,-0.4160615,0.233783,-0.083752684,0.6211084,0.6148166,0.48598605,0.5949667,0.84627724,-0.4129331,0.037490357,0.053340625,-0.41071177,0.108070016,-0.3964696,0.28872856,-0.4481412,0.22577834,0.015576839,0.2607574,0.10538708,0.37133336,-0.6073426,-0.16922323,0.5320972,0.9576216,-0.2082129,-0.14669858,0.7984556,1.199876,0.8815649,0.014205757,1.349119,-0.017206993,-0.21604404,0.21714573,0.17548402,-0.7994108,0.15883262,0.62337875,0.23776111,0.31920266,0.09703827,-0.00497759,0.2881901,-0.52642,-0.18279675,0.00035413803,0.32387337,0.31130344,-0.21660845,-0.7099771,0.03199787,0.0622993,-0.05165423,0.014900821,0.24930565,-0.13757665,0.26023197,0.010732603,1.1937532,-0.05118672,0.15095551,0.14936492,0.5191143,0.18317476,0.13739729,-0.023669621,0.35655662,0.18464577,0.18485157,-0.5071279,0.2949711,-0.3445212,-0.40061584,0.016508307,-0.40138063,-0.210464,0.12854543,-0.3168048,-0.11282827,-0.18110302,-0.12053032,0.28903842,-2.7696366,-0.27314886,-0.20486817,0.4447413,-0.29092798,-0.0072249114,-0.008661521,-0.52266514,0.30614072,0.28228745,0.6708573,-0.8542137,0.40266562,0.6572572,-0.6347408,-0.118426904,-0.61472875,-0.045304727,0.12165189,0.524214,0.3206268,-0.44865614,-0.14791135,0.26737207,0.8885627,0.36970973,0.33538046,0.57834053,0.5887035,-0.19370179,0.5921582,-0.36742148,0.61369383,-0.352215,-0.15117696,0.22956327,-0.25791705,0.4108439,-0.40797773,0.09248873,0.5365406,-0.506426,-1.1247475,-0.68412036,-0.4500266,1.0857056,-0.34462905,-0.6580558,0.26422176,0.013638166,0.060510613,0.05764655,0.7842399,-0.11546028,0.40013242,-0.74567807,0.119400665,-0.3015214,0.1602934,0.09345383,-0.08324255,-0.40894866,0.855673,-0.099035844,0.6412717,0.31673756,0.16132636,-0.27388814,-0.33600903,0.09659493,0.77683485,0.47790346,0.021070814,-0.229091,-0.14960971,-0.2513042,-0.397051,-0.06923455,0.8904114,0.88269293,-0.23714533,-0.0066677304,0.22875527,0.20477429,-0.009314354,-0.07595659,-0.31470847,-0.17143485,0.09862738,0.46407884,0.9179181,-0.44185486,0.12411143,-0.15589781,0.47007233,0.09019391,-0.40113878,0.4350422,0.35364476,-0.22693601,0.07990287,0.7825998,0.50239575,-0.41040283,0.51993144,-0.7150071,-0.5173406,0.67045397,-0.08052269,-0.55612576,0.102448046,-0.21413453,-0.053622685,-0.746417,0.39691824,-0.46250877,-0.41739082,-0.11353338,-0.107630655,-3.3977165,0.2613995,-0.081369996,-0.056926638,-0.49770063,-0.14133231,0.19083074,-0.74145776,-0.92897236,0.2493422,0.15105508,0.46867585,-0.12692942,0.10050883,-0.3134882,-0.30411938,0.04495299,0.2919718,0.063317955,0.2513202,-0.21027803,-0.489611,-0.2817346,0.17027113,-0.45953655,0.29945794,-0.6051656,-0.532742,-0.19510612,-0.52798474,-0.11151767,0.57250655,-0.5171177,-0.022172052,-0.3464717,0.19503719,-0.40438884,0.037462633,-0.039242934,0.1785382,-0.00462524,-0.1938512,0.18796852,-0.19543734,0.62418836,-0.06314706,0.5291214,0.11669831,-0.08747561,0.037769347,0.5561982,0.8365448,-0.24770078,1.2670157,0.35783488,-0.1314111,0.2467258,0.013499081,-0.32233554,-0.81393707,-0.3799457,0.101538755,-0.54720914,-0.5092323,0.2798125,-0.32261693,-0.81866187,0.7288412,0.01169914,0.54428905,0.06057186,0.3177994,0.40418544,-0.34843293,-0.12609491,-0.026496524,-0.111970805,-0.8870897,-0.23420635,-0.7092511,-0.47602695,-0.17246039,0.66174877,-0.2574494,-0.0054293782,0.13098691,0.05834527,0.0728455,0.12959437,0.25750226,0.13084331,0.51989853,0.13885048,-0.77921045,0.5521411,-0.001947099,-0.14068823,-0.48609573,0.19322775,0.38730577,-0.8663517,0.6402527,0.40725088,-0.015093371,0.026749115,-0.7158357,-0.40353498,-0.17403084,-0.19047526,0.41251713,0.17270307,-0.9959491,0.48087472,0.29613525,-0.6026327,-0.7091511,0.3550485,-0.34907803,-0.058992952,-0.07665704,0.3441773,0.21686144,-0.19591707,-0.04036646,-0.051875334,-0.50972503,0.34303296,0.0015454709,0.07880974,0.45569307,-0.023732971,-0.30228573,-0.9367021,-0.12526032,-0.61198735,-0.12051697,0.4193132,-0.23606691,-0.4246549,0.10863829,0.18398423,0.37327448,-0.41688824,0.21611658,0.091681376,-0.5956046,0.323934,0.6219365,0.4910818,-0.41002375,0.58820343,0.13948488,-0.31379333,-0.11478088,-0.03056166,0.363883,-0.10853672,0.28051683,-0.22499755,-0.0031142994,0.24888368,0.8888132,0.21273854,0.3813769,0.08912398,0.06575036,0.5541606,0.0063844323,0.21280794,0.110305786,-0.7070948,0.26080117,-0.2494059,-0.09611754,0.65441287,0.26271486,0.18734847,0.13920927,-0.14345619,-0.12491801,0.40401095,-0.12284286,-1.2062136,0.26932684,0.115042016,0.9392732,0.39823574,0.15384609,-0.14568423,0.73501027,-0.08639418,0.10995011,0.6380178,-0.04676978,-0.5124845,0.88424224,-0.63923556,0.27854323,-0.1852403,0.0045663686,0.15813299,0.31763855,0.26099116,0.7943936,-0.28569174,0.014745844,-0.19850992,-0.07801489,0.03296369,-0.5086797,-0.08675248,0.021911483,-0.32096064,0.6246809,0.48208198,0.44382066,-0.20878963,-0.0051711337,-0.098127455,-0.15493432,0.27913463,-0.20893851,-0.12808286,-0.056530714,-0.4478828,0.04916971,0.640799,0.3228714,0.27873763,-0.34108981,-0.29173866,0.20883206,-0.11578195,-0.26441103,-0.0349061,-0.82367915,0.12105961,-0.23758993,-0.5165514,0.6312982,-0.02453644,0.04645742,0.25847194,-0.04364624,0.017877746,0.25349343,0.09979026,0.690163,0.034598015,-0.17984152,-0.43755913,0.0712461,0.17204544,-0.33565426,0.31420708,-0.39061612,-0.026872087,-0.4228314,0.6300121,-0.21057479,-0.48443618,0.24976508,-0.25589222,-0.017352143,0.56992114,-0.014086962,-0.080145426,-0.06761036,-0.23304597,-0.2698349,-0.37388855,-0.29692993,0.24584499,0.06711268,-0.0022285103,-0.13256018,-0.2759574,-0.3403504,0.4481104,0.021727705,0.37375516,0.19519868,0.10882131,-0.11992943,0.2533423,0.15974432,0.7023777,0.06172661,-0.07041218,-0.2473152,-0.58733934,-0.3982526,-0.06439398,0.019897792,0.30004615,0.14258003,-0.08083037,0.7574888,0.011118789,1.1414511,0.12887335,-0.37565714,-0.09007009,0.6795099,-0.2658458,-0.07677306,-0.44112596,1.0940294,0.5836938,-0.101673104,-0.009050598,-0.52465534,0.11088268,0.3618024,-0.3162272,0.016373921,-0.047624577,-0.6413297,-0.45363826,0.19591734,0.25103834,0.08090548,-0.12413788,0.10541318,0.052499123,0.07586036,0.4806486,-0.6269541,-0.51102364,0.22453614,0.15572727,-0.16401836,0.041422985,-0.2791123,0.42506784,-0.59280884,0.1584272,-0.83834493,0.026061874,-0.39675862,-0.3215531,0.0887535,-0.33058015,0.60620683,-0.20159736,-0.3392241,0.14287841,0.16682667,0.22866273,0.08989328,0.52595776,-0.24113293,-0.051435173,0.08734991,0.746061,1.19314,-0.6119355,0.23064518,0.13779284,-0.4073902,-0.5117403,0.37604752,-0.42459854,-0.15257215,-0.14347418,-0.40606576,-0.5512321,0.11366744,0.2443273,-0.049403407,0.10202885,-0.69693625,-0.30334556,0.13627425,-0.36029026,-0.16727237,-0.21804032,0.44328427,0.8343584,-0.26652694,-0.30724087,0.11755592,0.27856356,-0.1360687,-0.79608774,-0.16250801,-0.19181743,0.36349744,0.08952974,-0.43980366,-0.036289036,0.07139601,-0.43861523,0.1010882,0.2097455,-0.3004188,0.18768677,-0.48509678,0.06596745,0.9647152,-0.19529729,-0.023480058,-0.66360044,-0.48519078,-0.84685695,-0.33299664,0.28370914,0.11532588,-0.020494008,-0.25980958,-0.15013826,-0.19998172,-0.16711369,-0.07560621,-0.41644192,0.3370063,0.017133554,0.83067924,-0.4513268,-0.89488447,0.13119106,0.3060773,0.26648855,-0.6072401,0.5912508,0.0240103,0.826914,0.00076364574,-0.09832591,-0.04687188,-0.45243567,-0.01922085,-0.3830579,0.08246754,-0.6750231,0.16466299 +119,0.31832233,-0.21892,-0.62400126,-0.19801927,-0.3776127,0.0022731542,-0.26042905,0.22368284,0.3176377,-0.13845085,-0.141268,0.11828928,0.025792992,0.27501872,-0.13023779,-0.6969563,-0.1100266,0.22600028,-0.6530656,0.46361637,-0.42534444,0.39760256,0.045019064,0.29849255,0.065184295,0.50413,0.20692001,0.06411991,-0.054634035,0.03816248,-0.37330168,0.25714725,-0.31665313,0.1738547,-0.02160375,-0.15527129,0.114722535,-0.22050259,-0.21542828,-0.72580063,0.07346888,-0.82969844,0.5844435,-0.23749372,-0.15263371,-0.11431443,0.25925204,0.22188243,-0.49438223,-0.068513565,0.1498871,-0.40277842,-0.34586126,-0.34403285,-0.14844385,-0.5475029,-0.37106225,-0.048010167,-0.71254885,-0.2886445,-0.22693641,0.21381909,-0.34222546,-0.015925828,-0.08927082,0.4348653,-0.4157533,-0.029963596,0.2247619,-0.3362606,0.020416351,-0.5885391,0.025522232,-0.119036056,0.43869838,0.1366238,-0.21583469,0.42757156,0.36721224,0.49262163,0.36790025,-0.3536113,-0.38994113,-0.25005037,0.102257475,0.28839296,-0.2489574,-0.29823872,-0.19080216,0.041310225,0.45234734,0.25196615,0.051230326,-0.049563654,0.01618111,-0.0773303,-0.15986103,0.57513887,0.522725,-0.42241427,-0.24933973,0.336088,0.51460904,0.15816508,-0.28011402,-0.034562565,-0.14108321,-0.44808128,-0.259515,0.00091495516,-0.12356926,0.43225244,-0.1875096,0.023475686,0.8624998,-0.18035312,-0.14512059,0.07358395,0.13987878,-0.16128306,-0.3021521,-0.14927877,0.07295559,-0.58744186,-0.060573895,-0.22961421,0.687179,0.14177507,-0.60828894,0.407729,-0.29226273,0.14504203,-0.060591187,0.73528653,0.7244216,0.62959075,0.3266212,0.9219414,-0.3262124,0.23931177,-0.12063868,-0.38747194,0.03196123,-0.19384626,0.19588003,-0.5147036,0.3594471,-0.13649948,-0.012252744,0.17765054,0.34541407,-0.5113795,-0.1314878,0.26777294,0.80697554,-0.31719667,-0.13551651,0.7516795,1.1382301,0.94867414,-0.046707053,1.1957285,0.23096615,-0.28159052,-0.100965925,-0.30810732,-0.5201086,0.25253758,0.38872418,0.076020986,0.32656002,0.038249586,-0.014752205,0.32456544,-0.43697172,-0.11438747,-0.12458888,0.32188728,0.057473682,0.03736542,-0.4939933,-0.0860658,0.1394594,-0.086859785,0.35636082,0.23298164,-0.3058909,0.45935905,-0.0017155528,1.1311307,-0.11969752,-0.0076191663,0.0033285082,0.57001686,0.38577572,0.09038511,0.010422013,0.5083059,0.38744944,-0.07681465,-0.5618798,0.124417976,-0.45760304,-0.34385964,-0.17259912,-0.3496757,0.0077142077,0.22083692,-0.27295843,-0.29685062,0.02367915,-0.32371286,0.32563254,-2.6043468,-0.27038434,-0.14837542,0.3112587,-0.3081052,-0.16577671,-0.08080271,-0.49731112,0.25194442,0.20165531,0.44977996,-0.53054935,0.48893943,0.54990673,-0.62653905,-0.23194546,-0.5733617,-0.07266704,-0.14072704,0.63407683,0.19925073,-0.19264857,-0.2755312,0.054925445,0.7732548,0.030955493,0.18588564,0.59130687,0.3757443,-0.08349053,0.41154978,0.13896093,0.727638,-0.32531983,-0.23389012,0.38287833,-0.24683245,0.2558158,-0.19824511,0.09805039,0.547641,-0.42909902,-0.87335175,-0.6428097,-0.051630434,1.1570399,-0.37418938,-0.5673615,0.18201618,-0.1752572,-0.15521677,0.097282626,0.6621731,-0.042764504,0.09308095,-0.62728924,0.22004388,-0.019542877,0.26460642,0.10560133,-0.06735599,-0.261382,0.71854234,-0.1009734,0.57962745,0.17773663,0.35148895,-0.21266046,-0.25966606,0.11606897,0.8891768,0.4054961,-0.06516843,-0.15977901,-0.2772828,-0.12137072,-0.2852599,-0.01878767,0.63287884,0.6990214,-0.02302425,0.07427252,0.25706565,-0.053844746,0.092895985,-0.24785855,-0.22963998,-0.07728282,0.15439363,0.33822325,0.6562099,-0.13244793,0.36315617,-0.19517629,0.35611555,0.0036788443,-0.6624985,0.6422282,0.6179782,-0.30794534,-0.15834488,0.7292337,0.45622733,-0.5077667,0.47192875,-0.69167423,-0.35030204,0.55801064,-0.29224452,-0.37340528,0.1005334,-0.23088999,0.16590884,-0.65606743,0.22492243,-0.23146054,-0.6032862,-0.38597074,-0.12306147,-3.675448,0.1669449,-0.32436916,0.024758132,-0.37146002,-0.121835686,0.3191484,-0.5877221,-0.48576388,0.17739964,0.2582442,0.6699118,-0.08719646,0.126845,-0.24700724,-0.35876408,-0.023051571,0.3003783,0.025035245,0.287329,-0.12767272,-0.39384562,0.017075742,0.062028386,-0.47689238,0.13456677,-0.55844,-0.38160405,-0.07890596,-0.56476665,-0.17725798,0.6707062,-0.33767125,0.031844594,-0.30184487,0.21004926,-0.11122282,0.063769415,0.045699697,0.15158863,0.10254605,-0.12664987,0.26087287,-0.30903018,0.44686157,-0.12783328,0.37764028,0.15089189,0.0126439575,0.031879943,0.5394743,0.64899814,-0.3195539,1.1437227,0.31330487,-0.18300582,0.32849413,-0.11657712,-0.49230713,-0.69465,-0.42610657,0.081629746,-0.5173517,-0.24922228,0.11645709,-0.36741525,-1.0724014,0.6644284,-0.052340522,0.48645872,-0.06029688,0.36257318,0.51335233,-0.26901817,-0.068061545,-0.13954026,-0.34312946,-0.49781743,-0.21552506,-0.75521725,-0.51668346,0.04086613,0.92664784,-0.41387874,-0.009922341,0.017519506,-0.2611614,-0.09289697,0.07788045,0.28802013,0.3001388,0.5479515,-0.057401516,-0.6320165,0.35318077,-0.13111669,-0.07484929,-0.57891756,0.22673334,0.5550589,-0.7700775,0.5411883,0.4052343,0.024491219,-0.012886198,-0.52267677,-0.1915959,-0.14356123,-0.090185374,0.589145,0.20398097,-0.8440098,0.6034712,0.27161464,-0.4178676,-0.6744406,0.19933383,-0.1657061,-0.10051472,-0.13466215,0.40971145,0.19159634,-0.110492304,-0.17925343,0.052956842,-0.3530017,0.31967112,0.16765124,-0.18411057,0.35425344,-0.13562395,-0.4372403,-0.77120847,-0.29619455,-0.5671661,-0.19363898,0.20797314,0.012478837,-0.03953176,0.050364025,-0.075627714,0.49386257,-0.3152536,0.12330442,0.02133882,-0.39334697,0.40992782,0.4896013,0.3360618,-0.39033195,0.52327895,0.074681364,-0.26658112,-0.09642749,-0.03216309,0.47084695,-0.02449801,0.43776256,-0.058953013,-0.06739426,0.28614452,0.8056242,0.08178456,0.43130007,0.045641087,-0.14247163,0.4303085,-0.005644691,0.10953428,0.031722177,-0.41442928,0.0035709182,-0.1641229,0.21336517,0.63784206,0.30957633,0.49591026,0.092191964,-0.11883953,-0.08270993,0.047661748,0.082625836,-1.228172,0.40353042,0.15779285,0.7808164,0.18200137,0.25449672,-0.3614765,0.7902553,-0.16174693,0.049188387,0.37365052,-0.0029598593,-0.31636536,0.65222424,-0.59560305,0.424537,-0.06324434,-0.020463474,0.23920168,0.10206497,0.2741763,0.95275855,-0.3024338,-0.074899785,-0.10194551,-0.18126851,0.050564885,-0.32976002,-0.031553924,-0.34727228,-0.576621,0.6379293,0.34074402,0.3900557,-0.17514925,-0.12332379,-0.005713743,-0.20032574,0.26307708,-0.2056031,0.0514886,-0.0021547575,-0.4272775,-0.17085448,0.49826214,0.19640249,0.14667231,-0.25704405,-0.101703316,0.05051147,-0.11079175,-0.09904739,-0.058018252,-0.4083905,-0.063219726,-0.09371303,-0.6663007,0.6553217,-0.20845231,0.089596584,0.20739351,-0.0840362,-0.17604272,0.29576027,0.1723569,0.68344134,0.12548266,-0.17599675,-0.41625118,0.076822236,0.16928656,-0.28494936,0.22317669,-0.42997894,0.13869114,-0.52415115,0.5683299,-0.3987728,-0.46189362,0.30480227,-0.3161582,0.009169014,0.4685299,-0.10810902,-0.1365222,0.16944557,-0.051520698,-0.36975572,-0.35249206,-0.30344766,0.21203999,0.06349607,-0.027920691,-0.26655358,-0.39963835,-0.14902487,0.41766325,0.04193201,0.18501256,0.17062283,-0.07646991,-0.08463119,0.19936164,0.20474546,0.5317085,0.16422053,-0.062055264,-0.33177522,-0.41831493,-0.42667913,0.050118633,-0.025520945,0.13412526,0.081338935,-0.22181793,1.0293208,-0.06766525,1.2471071,-0.018093575,-0.4272319,0.02098773,0.69093996,-0.060248177,0.14958976,-0.17133328,0.9150093,0.62748045,-0.08182047,0.027827676,-0.60254997,-0.058519244,0.46182722,-0.42391473,-0.057144213,-0.08881729,-0.6208815,-0.47443253,0.38419655,0.18797614,0.23052342,-0.08574751,0.12304915,-0.005052185,0.20802145,0.44577816,-0.6951259,-0.1217706,0.28126186,0.16593847,-0.19706102,0.25824812,-0.36589852,0.4735942,-0.7803919,0.08862403,-0.42599303,0.06745991,-0.21342368,-0.45514306,0.24157764,-0.060493287,0.42759424,-0.32477432,-0.4016115,-0.15787284,0.49472135,0.023755586,0.05388447,0.5436801,-0.31223163,-0.05427934,0.19452009,0.60425085,1.1314771,-0.32233682,0.14940305,0.33442557,-0.40702865,-0.58341193,0.40725186,-0.36694038,-0.04083344,-0.02729098,-0.40322247,-0.32426766,0.24398385,0.22716531,0.104468174,0.22891034,-0.547139,-0.19613902,0.1735108,-0.3438273,-0.05521198,-0.00981325,0.48133644,0.5691414,-0.3814642,-0.44866392,0.061065625,0.46831152,-0.21571782,-0.6366016,-0.0132173365,-0.17233673,0.41830376,0.28476277,-0.2844333,-0.020151345,0.024775958,-0.5542925,-0.035558917,0.34936234,-0.39596665,0.14178883,-0.3452795,0.15898687,0.6678867,-0.12846638,0.20190945,-0.72557384,-0.4874588,-0.91559154,-0.32764733,0.021511538,0.13931698,-0.06008307,-0.5599725,0.05277017,-0.27919844,-0.07678523,0.14879252,-0.62310326,0.42813158,0.14478633,0.4816633,-0.3829114,-0.9613726,-0.03169297,0.15533921,-0.15772398,-0.61594087,0.6283826,-0.15444864,1.0223446,0.104766764,-0.118423134,0.107117385,-0.53017706,0.1824154,-0.4782693,-0.2851641,-0.71396506,0.05099685 +120,0.3842117,-0.24764174,-0.5832698,-0.04206442,-0.28451654,-0.10184508,-0.19622692,0.4251644,0.32161948,-0.40362787,-0.20275617,-0.147199,-0.12937501,0.38420302,-0.32707447,-0.29966223,-0.100344196,0.17731713,-0.5254554,0.5162955,-0.43093312,0.21606673,0.067548834,0.36361414,0.045278806,0.13193348,0.22440775,0.038019996,-0.009672,-0.3366141,0.31662017,0.13681298,-0.77949846,0.17705995,-0.13656577,-0.40471885,-0.020595444,-0.42866796,-0.43493384,-0.8395244,0.36582372,-1.0433838,0.44928953,0.028933961,-0.30570972,0.31503648,0.16317202,0.21476981,-0.14619964,-0.12773885,0.20656984,-0.21229139,-0.21112704,-0.19531728,0.10215163,-0.3670139,-0.6775347,-0.07265758,-0.3614333,-0.017007185,-0.37233162,0.1979707,-0.4153444,0.24077429,-0.27859533,0.44146648,-0.48958272,0.0046018776,0.28191125,-0.035050213,0.40295961,-0.61951965,-0.16496271,-0.117897466,0.06953049,-0.042083867,-0.14522918,0.42392892,0.1885409,0.3414545,-0.15352513,-0.25392175,-0.21094224,-0.048648365,0.20967294,0.28345028,-0.29812807,-0.25488868,-0.043508813,-0.10682518,0.05796252,0.07878478,0.14426623,-0.3024534,-0.042869393,0.003058727,-0.19809628,0.36063963,0.5703458,-0.1525028,-0.14668903,0.17672104,0.5419748,0.09890541,-0.07924134,-0.03407979,0.008507426,-0.49923646,-0.22786988,-0.08562936,-0.30082706,0.52277035,-0.20422469,0.18251696,0.5312593,-0.22347912,-0.14575396,0.27269512,0.19469541,-0.014218326,-0.2773214,-0.39989856,0.54269814,-0.64912045,0.07896805,-0.18997282,0.77713263,-0.036124554,-0.71286285,0.30288833,-0.6248985,0.17341062,-0.1294752,0.58434176,0.5496851,0.5897685,0.449665,0.8424699,-0.51103985,-0.04828411,-0.11461169,-0.4542648,0.37312406,-0.3917033,0.05016205,-0.43306705,-0.17320156,0.11200837,-0.102960974,0.12465717,0.20382339,-0.45247146,-0.02931112,0.2565305,0.6368916,-0.19042224,-0.02052563,0.66218626,1.297503,1.0195038,0.19828393,1.2066985,0.138659,-0.19386783,0.10629952,0.12992142,-1.0243949,0.33704993,0.34412268,-0.36184266,0.20733073,0.1397007,-0.068995744,0.4436757,-0.62392545,-0.12727003,-0.08931945,0.39526463,-0.0104355905,-0.3231454,-0.44043672,-0.37220222,0.14392474,0.018633243,-0.043168988,0.35520107,-0.12741835,0.24984208,0.13128296,1.0975397,-0.082392916,0.16611224,0.19467632,0.42080244,0.12439367,-0.25383994,-0.10010914,0.15897773,0.29553795,0.35461146,-0.5208348,0.22516452,-0.0374108,-0.66428924,-0.10651477,-0.29622144,-0.01663081,-0.12289103,-0.41490665,-0.3022355,-0.24171278,-0.34367877,0.49196962,-2.5654855,-0.01320219,-0.0688739,0.25570694,-0.11566857,-0.1745422,0.07756038,-0.5305285,0.38662168,0.42159325,0.4209751,-0.61368644,0.3579108,0.48656172,-0.6823339,-0.033667464,-0.56825554,-0.15323025,-0.06922262,0.29267374,0.21807736,-0.13212684,0.07933308,0.19616824,0.3096419,-0.07903164,0.15884754,0.47298017,0.26119688,-0.232561,0.42426568,-0.01031893,0.40423578,-0.46763214,-0.30523118,0.38984266,-0.49465582,0.24694099,-0.058735006,0.13833639,0.47836912,-0.39494735,-0.9225661,-0.5897691,-0.1753165,1.3975686,-0.1494975,-0.7214354,0.28814787,-0.30758104,-0.31721815,-0.087732226,0.42437145,-0.3691862,0.04571951,-0.96776795,-0.048132166,-0.23151566,0.3819775,-0.048195902,-0.1357837,-0.49957234,0.8112695,0.041008234,0.5847412,0.46164915,0.0128786275,-0.5826881,-0.44894952,0.115930095,0.7536414,0.51637495,0.17087118,-0.3309277,-0.08210378,-0.2432732,-0.0936881,0.17525291,0.57870525,0.73277706,-0.12822019,0.16886544,0.19375859,-0.021587197,-0.009187469,-0.10029183,-0.2894545,-0.027102627,0.12401588,0.7017035,0.89359814,-0.15788487,0.14544731,-0.03484417,0.38890436,-0.08377763,-0.531145,0.46919885,1.0055003,0.051148362,-0.19152866,0.700425,0.7369341,-0.26279658,0.69947076,-0.5483132,-0.47001076,0.31213725,0.0026903886,-0.512936,0.05316511,-0.4353887,0.15308444,-0.8174566,0.39848498,-0.47049066,-0.49724156,-0.65160406,-0.106226526,-3.1266768,0.19362535,-0.29077858,-0.103229746,-0.23380706,-0.23532502,0.40523544,-0.71673036,-0.74327,0.13950028,0.18594088,0.7814256,-0.15324384,-0.07372702,-0.087039076,-0.26145142,-0.27481568,0.096024565,0.21280839,0.1889878,-0.0020250494,-0.5374005,-0.17457059,-0.24409741,-0.37366816,-0.12202956,-0.45965287,-0.52983516,-0.20536476,-0.44722986,-0.55274147,0.5667298,-0.29180962,0.020321773,-0.21326384,-0.074692614,-0.08120603,0.38303372,-0.053498168,0.21527955,0.00065095606,-0.111583814,-0.10599307,-0.1403206,0.3001312,-0.012801757,0.4156261,0.56632936,-0.33165994,0.0709323,0.6284183,0.71278393,-0.19978616,1.0414844,0.41910547,-0.016055794,0.3304229,-0.08636995,-0.29577854,-0.58271617,-0.18265009,0.036185745,-0.3900585,-0.22373225,0.07261454,-0.3098523,-0.71945965,0.7327262,0.05479703,0.28432143,-0.09804546,0.09816074,0.27166602,-0.179068,-0.11242007,-0.23180412,-0.1810321,-0.52049196,-0.330915,-0.7025894,-0.4737403,-0.29945937,1.0500386,-0.084338956,0.11283513,0.31056023,0.018096667,0.10845919,0.13978024,-0.15810019,0.18222322,0.4861777,0.16559869,-0.7594735,0.5132022,-0.17004737,-0.010881617,-0.5421709,0.2650086,0.46187752,-0.55541027,0.5432997,0.57743263,0.093902774,-0.16102281,-0.6876043,-0.26115572,-0.012967467,-0.16971198,0.55294716,0.5449651,-1.0237192,0.4782213,0.44532573,-0.450609,-0.7389823,0.59733665,-0.061109446,-0.29534078,-0.08374173,0.35657948,-0.18308479,0.24475762,-0.012829845,0.28081167,-0.47130764,0.24555874,0.20501874,0.013198705,0.29902762,-0.16282254,0.026634024,-0.65560806,0.16583674,-0.38890982,-0.1772621,0.11608117,-0.06636792,-0.28689325,0.34728524,0.14176792,0.38961893,-0.21891458,0.094568625,-0.20320262,-0.45003036,0.6138242,0.5595067,0.5023992,-0.49506742,0.7584987,0.05458596,-0.16785724,-0.3067788,0.011646696,0.49345765,0.06825897,0.3946306,0.066998005,0.0047849347,0.2558213,0.8060189,0.14163636,0.40278104,-0.020720344,0.0995317,0.22724582,0.06341727,0.35213912,-0.03252234,-0.66151005,-0.0059318137,-0.40651608,0.13744459,0.5296309,0.006012027,0.31147483,-0.09350153,-0.24682859,0.040738784,0.18431994,-0.06566356,-1.5905101,0.55684406,0.17404722,0.70815146,0.6404122,-0.019539742,0.12769435,0.7271407,-0.22760893,0.07712366,0.31479424,0.15106963,-0.45894268,0.6876371,-0.8412251,0.3580001,-0.008843254,0.031045051,0.016325014,0.05630787,0.3107579,0.6775626,-0.14611651,0.15334114,0.07761599,-0.4017483,0.16518927,-0.36398113,0.17458858,-0.4222867,-0.2866565,0.74778116,0.53655136,0.47788766,-0.26891977,0.0038879376,0.10567662,-0.16118439,0.3075258,-0.074764624,0.15285574,-0.19839925,-0.4932259,0.018476693,0.5426554,0.15522799,0.13273601,-0.14634533,-0.17180388,0.1543695,-0.12769875,-0.1597053,-0.011094368,-0.7604272,0.0840933,-0.24840091,-0.30549768,0.47412422,-0.31238973,0.1268947,0.3103039,0.2193583,-0.35729313,0.056321386,0.08449349,0.56368893,-0.016643899,-0.21749964,0.027631663,0.15934187,0.11438199,-0.1457835,-0.037698105,-0.33979747,0.10454814,-0.31920454,0.58586156,-0.19339529,-0.1962951,0.16661286,-0.13693292,0.0771287,0.4925108,-0.2565201,-0.26386225,0.098937236,0.106801495,-0.14237574,-0.4220479,-0.2792618,0.27438605,0.06295584,0.013625434,-0.15903327,-0.11020566,-0.10248527,0.34540337,-0.07706496,0.26001012,0.37597436,-0.016294489,-0.5711756,0.009779875,0.032466397,0.60224164,-0.103972286,0.026546065,-0.4465502,-0.50742775,-0.30434144,0.33356318,0.01382911,0.36127615,0.06308749,-0.2678006,0.73613477,0.09415797,0.97877014,-0.072219305,-0.34446913,0.034821868,0.54634976,-0.14159311,-0.34778053,-0.28689244,0.8315261,0.6121378,-0.28479153,-0.15471843,-0.39368236,0.25588995,0.09636802,-0.23552571,-0.18581574,-0.04326214,-0.78603643,-0.09520381,0.1150929,0.5103639,-0.12758777,-0.09801528,0.048587058,0.34959757,0.08700958,0.16848017,-0.30561623,-0.05564733,0.3744262,0.20237257,-0.020108791,-0.0015540215,-0.41110367,0.31154564,-0.71139973,0.008527687,-0.3490434,0.043827433,-0.26241466,-0.3996153,0.1348537,0.032845728,0.27381316,-0.30811772,-0.16855215,-0.047832634,0.31878996,0.21879436,0.12035223,0.71981007,-0.23071766,0.10434567,0.07445772,0.40142792,0.8724771,-0.4083609,-0.028036186,0.1368522,-0.3952267,-0.66997683,0.33167464,-0.29353315,0.11398114,-0.07623585,-0.29104012,-0.6117964,0.13493393,0.33553714,-0.025547367,-0.01700959,-0.61036307,-0.09697389,0.17730658,-0.38689497,-0.27377462,-0.4523366,0.004097196,0.48928267,-0.1542101,-0.23152831,-0.0062107765,0.3059289,-0.15801406,-0.40699995,-0.054651625,-0.35529643,0.24164955,-0.073212266,-0.391571,-0.02853202,0.16859832,-0.38487074,0.3185673,0.22202343,-0.2374834,0.109576836,-0.41054896,0.04577529,0.71466887,-0.2256718,0.1057311,-0.4756904,-0.66296506,-0.8863891,-0.18505552,0.3122902,0.22999236,0.060562257,-0.5292726,-0.05030435,-0.13317515,-0.028979916,-0.20997405,-0.26884323,0.43823984,0.1741584,0.42163262,-0.0081179505,-0.73310196,0.03142763,0.15658656,0.06878113,-0.16974545,0.6411031,-0.039144956,0.69369423,0.061646078,0.16897954,0.14480491,-0.4972672,0.26303858,-0.050158437,-0.24505311,-0.53306305,0.024653563 +121,0.58813125,0.16504858,-0.635396,-0.14746986,-0.29855353,0.27378997,-0.2842547,-0.075352274,0.20709288,-0.63181114,-0.034740064,0.050308775,-0.24977434,-0.013324849,-0.24524117,-0.4388527,-0.031360935,0.122434616,-0.5735782,0.56068707,-0.32187793,0.512047,-0.04283005,0.15020104,-0.0067106434,0.19831102,0.073150724,-0.11751665,-0.4313171,-0.22241975,-0.003321234,0.20874114,-0.5176365,0.30582595,-0.17132041,-0.25669283,-0.092452765,-0.4122793,-0.24580635,-0.60969317,0.2071069,-0.53522587,0.61185557,0.0043243207,-0.29509813,0.16439374,0.2351629,0.11574087,0.13811386,-0.035834704,0.2799911,-0.16696577,-0.15990399,-0.14955738,-0.4925131,-0.3888784,-0.50636697,0.05258099,-0.5201635,0.043689094,-0.17871071,0.34398624,-0.16013025,-0.13434155,-0.18320908,0.44652092,-0.16567393,0.12363869,0.13678797,0.014147934,0.13337721,-0.71434623,-0.18561378,0.007517103,0.2716379,-0.17003375,-0.034775477,0.23039736,0.22395454,0.54972315,-0.039003316,-0.19173229,-0.5344315,0.052268352,0.23058449,0.39582807,-0.35290763,0.003159502,-0.07362174,-0.07620481,0.4734019,0.18861552,0.16050877,-0.39839146,-0.028672531,-0.14035477,-0.0471628,0.33341295,0.48263907,-0.23774096,0.007839837,0.53007555,0.48973534,0.13893515,-0.14415042,-0.009677791,-0.20419675,-0.32189155,-0.1279883,0.22050405,-0.055564977,0.34067664,0.034741625,0.27844176,0.31663346,0.121887065,0.007839171,0.20633164,0.08580038,0.11425505,0.0010267005,-0.061569776,0.08632499,-0.44591257,-0.116969995,-0.19590235,0.51221955,-0.051785145,-0.99811554,0.2969103,-0.4225338,0.017908748,0.14596187,0.48635635,0.7249353,0.63655996,0.011382854,0.81268543,-0.5600379,0.026232032,0.07834455,-0.28161216,0.10496254,0.0052757403,0.08378201,-0.64608216,-0.10772937,-0.051571615,-0.039673116,0.1014766,0.40826377,-0.59498525,-0.1667785,0.0036854954,0.6396814,-0.22401765,-0.07194094,0.7137343,1.1017185,0.9464049,0.159204,1.1052306,0.1754006,-0.07126503,-0.20262133,-0.52948666,-0.60858023,0.2660997,0.26919764,-0.5846019,0.41187644,0.0621185,0.06858238,0.31617063,-0.24787101,-0.25272766,-0.25106496,0.3353117,-0.12003851,-0.18109146,-0.39297417,-0.16141821,0.20985906,-0.15876482,0.23846976,0.24148235,-0.3231376,0.20772268,0.32911706,1.493064,-0.29119262,0.12251732,0.08917447,-0.027014276,0.16896486,-0.32123494,0.025660805,0.21057068,0.285434,-0.16705528,-0.25052217,-0.069658026,-0.18343349,-0.442733,-0.23790842,-0.06501115,-0.35527396,0.027817508,-0.21980003,-0.31011292,-0.12096137,-0.54193985,0.53039145,-2.6536884,0.009199902,-0.22721937,0.4138774,-0.27510914,-0.6006655,-0.16727433,-0.36608377,0.4869363,0.19845839,0.24296573,-0.38033327,0.3543934,0.4249232,-0.38462177,-0.1876454,-0.5634761,0.08023936,0.105588995,0.19219878,-0.07807207,-0.2937299,0.0682307,0.20626417,0.29610083,-0.16799742,0.11350939,0.44188493,0.46556455,-0.09144363,0.25988343,0.03814285,0.61111444,-0.21978985,-0.2135536,0.48043594,-0.5810997,0.2608707,0.05673546,0.15743819,0.44468543,-0.42265773,-0.48062858,-0.53127736,-0.17706329,1.1617597,-0.024773324,-0.46301556,0.07214318,-0.07448285,-0.5756012,0.036878012,0.4163637,-0.0835188,-0.014292564,-0.83939826,-0.08742418,-0.12584691,0.28285497,-0.16160484,0.1623573,-0.52058774,0.63586533,-0.14654274,0.48414534,0.44255662,0.31697667,-0.36978695,-0.28698155,-0.026410123,1.039865,0.48964667,0.16029543,-0.14821184,-0.145697,-0.24045874,-0.27038407,0.16646907,0.5266666,0.46448618,-0.044477668,-0.038819537,0.27140686,0.033283483,0.09638233,-0.20661134,-0.3840517,-0.17792499,-0.1028896,0.4555282,0.4662543,0.010521722,0.53581125,-0.094325975,0.050017174,-0.34137413,-0.4707868,0.49987108,0.7070116,-0.29750982,-0.39956972,0.5078931,0.3585484,-0.12763946,0.4406697,-0.5193117,-0.44345778,0.30506054,-0.10355951,-0.41285172,0.12237913,-0.3907117,0.22746551,-0.6009793,0.4392657,-0.39761052,-0.44992885,-0.57918775,-0.07161934,-1.3051664,0.19681847,-0.10102345,-0.07696574,0.0004374385,-0.07474121,0.2204777,-0.53734136,-0.6738763,0.014841147,0.020032808,0.42522988,-0.019242097,0.059401345,-0.07591381,-0.41206032,-0.27984762,0.276511,0.12795897,0.39308637,0.04586532,-0.23127958,-0.025677646,-0.15476418,-0.2543027,-0.1275913,-0.48861527,-0.5155913,-0.18553215,-0.37791732,-0.18328875,0.6732199,-0.70378464,-0.0024619172,-0.45418948,-0.06854579,0.14973536,0.2551952,0.024841793,0.2739778,0.098030545,-0.30676913,-0.10242729,-0.31768596,0.36228797,0.11618263,0.12144079,0.7458967,-0.2393163,0.31004107,0.36709282,0.8844003,-0.08421111,0.6907392,0.2879021,-0.11987926,0.24266484,-0.32091874,-0.23525293,-0.63090235,-0.2757342,0.09713278,-0.39982784,-0.3898482,-0.21691087,-0.43329033,-0.75051546,0.39849332,-0.022927957,0.20350097,-0.037470505,0.34028956,0.39198405,-0.13324903,-0.022917125,-0.025564022,-0.20795695,-0.26108146,-0.428575,-0.5536463,-0.43960223,0.1296173,1.2056874,-0.11285263,0.12529111,0.4064183,-0.063802786,0.09664692,-0.088794105,0.09789106,-0.086620554,0.26692495,0.10249069,-0.5277391,0.17220809,-0.053162433,-0.0033477405,-0.5173307,0.3652872,0.6246756,-0.385591,0.44279724,0.38117048,0.20934181,-0.08579695,-0.70071703,0.0061757704,0.14981192,-0.33673757,0.46820378,0.33283657,-0.5452739,0.41345042,0.4276992,-0.22660485,-0.7350229,0.33949184,0.13305044,-0.10389621,0.05515832,0.41979748,-0.030429833,-0.05749113,0.06440395,0.221021,-0.25751823,0.48320746,0.23545139,-0.07740327,0.1782275,-0.3419778,-0.491974,-0.68092626,0.18574049,-0.39453828,-0.47948804,0.16195484,0.0112872,0.121818066,0.12970613,0.2152537,0.47636077,-0.35604987,0.113935634,-0.083044074,-0.149393,0.29604018,0.39436498,0.5056936,-0.27415407,0.37099934,-0.03406578,-0.053930648,-0.21835677,0.09281495,0.5229857,0.1702457,0.24470119,0.10205156,-0.15596415,0.15846342,0.59940004,0.12947048,0.2039291,-0.031494338,-0.53151095,-0.037269346,-0.0067674397,0.16516072,-0.10489169,-0.43178532,-0.1643089,-0.05249039,0.12723179,0.36864877,-0.0044321944,0.27929312,-0.30485752,-0.20523258,0.08554704,0.14161971,-0.1325211,-1.2644608,0.3161595,0.011572979,0.77554023,0.41074193,0.22859305,0.013590851,0.47613615,-0.33153605,0.14929143,0.2754163,-0.25660124,-0.33391836,0.26026496,-0.58590454,0.24733734,-0.10426897,0.04369489,0.028623477,-0.08981201,0.21511364,0.94667727,-0.120639816,0.054621827,-0.17164329,-0.26619995,0.01880012,-0.09214099,0.23525473,-0.3810866,-0.39578927,0.72422737,0.2670755,0.590869,-0.20630552,0.016518028,0.10412805,-0.34204388,0.0799776,0.09735198,0.12699525,-0.024396785,-0.39333275,-0.09520024,0.407027,-0.01410497,-0.07465065,0.1765122,-0.219309,0.09768525,-0.1189601,0.119292416,-0.052787274,-0.62753385,-0.04214235,-0.34393385,-0.21349253,0.08773335,-0.105616204,0.10969307,0.16127951,0.113744244,-0.24670467,0.48572883,0.37140933,0.72595894,-0.010041156,-0.050994664,-0.23789972,0.33614537,0.1842011,-0.102000475,0.056953065,-0.12817526,0.29863617,-0.5750525,0.38268524,0.014096036,-0.359635,0.13733378,-0.09112417,0.10360537,0.4668127,-0.36112025,-0.26572582,0.124131985,0.11463219,-0.20548554,-0.033400368,-0.105938375,0.12017765,0.15812375,-0.095539466,-0.15920798,-0.116294354,-0.34280744,0.05434814,0.15091377,0.3789393,0.6251524,0.1328095,-0.69223034,0.04529503,0.17852159,0.3598983,0.068800956,-0.06120216,-0.37385035,-0.4094069,-0.3587338,0.69267553,-0.17913759,0.075488746,-0.033083837,-0.3069183,0.70287216,0.011888651,1.1493543,0.08272267,-0.15081678,-0.18608668,0.5426047,0.03735085,-0.011707008,-0.41236997,0.92706263,0.6393506,-0.048364725,0.072855875,-0.33022916,-0.11710048,0.15696844,-0.33777335,-0.06806164,0.03981856,-0.67139196,-0.34711435,0.07931553,0.09839195,-0.11688873,-0.088871405,-0.077664055,0.20956151,0.18327264,0.2620168,-0.44841307,-0.096604936,0.22652976,0.26974308,0.02826104,0.22939076,-0.5683561,0.24179256,-0.60143715,0.09457033,-0.14786142,0.09274408,0.03721038,-0.29354128,0.18731572,-0.03131911,0.2814424,-0.33538902,-0.40497422,-0.090263166,0.31911463,0.14869533,0.1285881,0.6762113,-0.15682404,0.2524926,0.12101269,0.46979833,1.0993965,-0.12370715,0.0900535,0.36755753,-0.26214758,-0.59004605,0.0800665,-0.35981077,0.09984164,-0.194173,-0.35737386,-0.15024586,0.31337315,0.16573192,0.15007254,-0.034322694,-0.61719525,-0.029838366,0.38833186,-0.27209815,-0.103664406,-0.14436178,-0.048429593,0.5691153,-0.17612074,-0.3772081,-0.0385222,0.3731738,-0.22739884,-0.6456298,0.09772967,-0.34062058,0.39395815,0.25200662,-0.29034922,-0.14285375,-0.022017553,-0.36307007,0.088003114,0.22201526,-0.32304567,-0.12280919,-0.26795495,0.064759314,0.53261155,-0.040499043,0.1156735,-0.2960499,-0.47051492,-0.8198776,-0.19244377,-0.3316209,0.25498536,-0.12719,-0.6360702,-0.05434851,-0.35476336,-0.014646699,0.01171503,-0.40568268,0.3907676,0.33094585,0.28329232,-0.37168288,-0.8172248,0.07522654,0.25698924,-0.042043205,-0.4663712,0.54040337,0.09656212,0.71394503,0.119168475,-0.04941563,0.16589896,-0.7780463,0.3308709,-0.22465739,-0.03060774,-0.78696644,0.13150723 +122,0.35577178,-0.35061198,-0.581857,-0.07680813,-0.40700674,0.105794534,-0.2807362,0.36458564,0.28748584,-0.16005276,-0.3669886,-0.07792827,0.17025055,0.27466142,-0.091633484,-0.51578176,-0.05801334,0.19412264,-0.66464084,0.6119205,-0.51760375,0.28864792,-0.032157846,0.52283686,0.31385258,0.33195263,-0.0005795487,0.01059785,-0.30411083,-0.054056056,-0.121130824,0.33926505,-0.47953525,0.247857,-0.30918077,-0.19511001,-0.15264164,-0.55220693,-0.34535977,-0.7800183,0.1056683,-1.0203083,0.5469471,-0.23203966,-0.110184684,-0.072032996,0.28751722,0.31244177,-0.47377798,-0.03415819,0.27657083,-0.23854586,-0.31215587,-0.2278541,-0.14139059,-0.4162586,-0.44886097,-0.11891955,-0.5741228,-0.165665,-0.24767461,0.18029816,-0.2520832,-0.09256671,-0.08115382,0.37067983,-0.5498138,0.105974056,0.24582164,-0.20050637,0.111419514,-0.6288683,-0.1465692,-0.18845126,0.46874133,-0.03678366,-0.3969426,0.36516705,0.44220537,0.09595055,0.13030323,-0.19707844,-0.34632468,0.069115736,0.24109142,0.46057764,-0.01630342,-0.32967076,-0.21076706,0.084407814,0.43414918,0.29937962,0.13038184,-0.26510423,-0.18898165,-0.054421443,-0.122580275,0.6153841,0.50384337,-0.067679435,-0.17410254,0.3266684,0.5027332,0.5054059,-0.4334517,-0.14075884,0.002129443,-0.52108276,-0.085266076,0.16031705,0.0010778968,0.48789766,-0.13838065,0.04673525,0.89167225,-0.16323969,-0.13302569,0.31508276,0.24073805,-0.23644258,-0.19311938,-0.27011973,0.18390574,-0.5407604,-0.014135761,-0.13326767,0.52372587,0.20169513,-0.7533865,0.40467525,-0.49307278,0.050926436,-0.16038474,0.51790977,0.7955012,0.5310036,0.40123013,0.6221892,-0.078690685,0.21050881,0.013476849,-0.41827446,0.08451079,-0.2761389,-0.1483129,-0.5832488,-0.043200154,-0.27264622,-0.019877817,0.20225428,0.42026803,-0.361166,-0.109553084,0.08779424,0.7623271,-0.3124357,-0.23589721,0.8069394,1.0553629,0.87197745,0.06095278,1.0650114,0.24649374,-0.107160755,0.015458907,-0.30973977,-0.72946304,0.28898415,0.2407521,-0.4387968,0.33160755,0.040040705,-0.024271403,0.23492466,-0.38669652,0.0056737,0.119450055,0.18086131,0.24071766,-0.07520239,-0.44172314,-0.38197973,-0.13893203,0.119329736,0.077861354,0.23533347,-0.31972924,0.35936204,0.043195415,1.4356833,0.056910872,-0.20091733,-0.06188757,0.7054688,0.3460916,-0.12873419,-0.1089338,0.46144262,0.48305145,-0.017040376,-0.5694977,0.22414878,-0.26697475,-0.36336905,-0.076412424,-0.4904801,-0.24911211,-0.00651661,-0.5189867,-0.100152016,0.08178363,-0.18822648,0.4403912,-2.7517948,-0.17646578,-0.015355934,0.42275307,-0.111884825,-0.19479738,-0.24865416,-0.59189,0.21514288,0.08713324,0.60653704,-0.62766963,0.57885754,0.50076526,-0.5418505,-0.2110076,-0.7218704,-0.052167892,-0.003503676,0.49181595,-0.04377108,0.092614785,0.05321005,0.089221135,0.7378578,-0.017869966,0.19997944,0.61666757,0.40799403,0.062273,0.5997034,-0.049945056,0.5854985,-0.15963905,-0.17081718,0.16367438,-0.35582122,0.55889803,-0.027120935,0.07768544,0.75619036,-0.39702907,-0.93798226,-0.5477864,-0.17468296,1.0276498,-0.4948494,-0.41676864,0.11133034,-0.4677024,-0.30217668,0.0310218,0.66990423,-0.077135645,0.097203664,-0.6545579,-0.060820937,0.113793306,0.20469984,-0.00040395133,-0.028528992,-0.19263661,0.7716379,-0.0048383987,0.62109566,0.053518116,0.21278776,-0.28897673,-0.43839025,0.21739508,0.7442135,0.19961442,-0.028861357,-0.16202866,-0.32328078,-0.35712034,-0.11196573,0.024850415,0.69556344,0.45342308,-0.027130017,0.19381173,0.29302508,-0.0663626,-0.0438496,-0.33095986,-0.20824838,-0.046111327,0.2095671,0.5100926,0.95622885,-0.06058016,0.70804787,-0.20866744,0.27430505,0.040101774,-0.6312936,0.7055421,0.6998989,-0.14794485,-0.116146326,0.34964752,0.5562033,-0.3998291,0.37536457,-0.5274776,-0.21807727,0.5137508,-0.18592714,-0.37069935,0.28476295,-0.07530417,0.18134816,-0.73318034,0.37701267,-0.19313815,-0.4466211,-0.31109828,-0.0002962138,-2.7098699,0.08959295,-0.0035362542,-0.32145837,-0.4041904,-0.19819437,0.30166197,-0.629171,-0.5745178,0.071540356,0.17280409,0.85261565,-0.1873037,-0.018764164,-0.24901152,-0.35716504,-0.06377243,0.2087222,0.19052494,0.42634037,-0.2018687,-0.52468085,-0.1234498,-0.06435427,-0.57475036,0.101271436,-0.5898243,-0.46105337,-0.014090083,-0.5079103,-0.1517568,0.53751767,-0.46251655,-0.020026812,-0.13117643,0.13965093,-0.23254554,0.25855154,0.17807886,0.1775571,0.0019583765,0.033291373,0.37327638,-0.20282462,0.46740603,-0.036532678,0.25688756,0.0663575,0.20308854,0.3398381,0.61630857,0.58867466,-0.2871236,1.1383101,0.4249577,-0.1460568,0.17333505,-0.23714426,-0.5133599,-0.5319215,-0.15533666,0.013106014,-0.46972018,-0.30327946,0.077547945,-0.30843082,-1.0046445,0.6031534,0.07020173,0.20817815,-0.054892603,0.2133399,0.61056954,-0.21963169,0.08559183,-0.015659105,-0.18555102,-0.52780646,-0.29322723,-0.6170911,-0.46544474,-0.082923755,0.82450694,-0.35456234,0.045345556,-0.05688414,-0.5235845,0.14278148,0.1455097,-0.04248446,0.2744052,0.33358374,-0.081939146,-0.57146823,0.3680704,-0.23239182,-0.0738082,-0.5527762,0.21432939,0.6745171,-0.84667844,0.50963557,0.28764603,0.015404047,-0.34416565,-0.41490966,-0.15461086,-0.13802172,-0.13469858,0.4977872,0.23479995,-0.86771816,0.48885754,0.31202793,-0.4812873,-0.6289293,0.4675241,-0.14082623,-0.20243838,-0.16830103,0.2696642,0.06038064,-0.01281829,-0.28882852,0.23661341,-0.2893797,0.04780117,0.22048643,-0.1388325,0.32463005,-0.15700038,-0.1668506,-0.7604933,0.05218658,-0.2587944,-0.3185222,0.36522222,-0.038921572,0.1343293,0.02517828,0.25911316,0.2671733,-0.39236537,0.04560746,-0.10774145,-0.39988774,0.28110752,0.52323854,0.51863754,-0.29659277,0.4880083,0.14269409,-0.18971395,0.45934469,0.062473755,0.23627281,0.088691466,0.40987763,0.04542598,-0.19711657,0.3235245,0.843177,0.14385736,0.5075063,-0.010222278,-0.13720487,0.12532257,-0.017169122,0.3906119,-0.062207002,-0.5333193,0.018274311,-0.13683784,0.2562886,0.45650014,0.28938338,0.21987809,0.08273224,-0.33890978,0.07224871,0.15441859,0.22688426,-1.4309198,0.55075204,0.3151619,0.95118153,0.17399548,-0.0039783907,-0.095119916,0.8370625,-0.25394467,0.12144361,0.33144483,-0.07325802,-0.49482986,0.57611424,-0.68116057,0.57477206,-0.13989368,-0.027036889,0.27789092,0.047939513,0.47381255,0.9177565,-0.17487104,0.06385176,0.18603142,-0.2248982,0.016679686,-0.45856693,0.079684235,-0.57513326,-0.5059079,0.7387732,0.49446797,0.4637021,-0.18923748,0.07040797,0.004742124,-0.24634643,0.1948916,0.075217314,-0.05878345,0.02116595,-0.6869611,-0.044317313,0.59144133,-0.19786371,0.08327601,-0.17464268,-0.12906416,0.2341044,-0.25208193,0.091248974,-0.11881333,-0.7014392,-0.061124295,-0.32901716,-0.70924026,0.4793991,-0.09471917,0.06418559,0.29199645,-0.13097946,-0.2208221,0.6483436,0.23182227,0.82875025,0.00031867198,-0.18602057,-0.29898432,0.10015939,0.3097023,-0.1999568,-0.056502547,-0.46081087,0.0935659,-0.4499157,0.5713757,-0.22953796,-0.48500952,-0.09221946,-0.050716307,0.044443928,0.5911897,0.018966228,-0.2235903,0.0015317372,-0.21796726,-0.5902881,-0.1055641,-0.27146855,0.16956475,0.34047168,-0.1814766,-0.16140486,-0.281167,-0.068132505,0.5252529,-0.13633168,0.5806551,0.4460597,0.11531572,-0.08928683,-0.12141673,0.2578385,0.6547509,0.115053676,-0.10590152,-0.53319514,-0.17352745,-0.3466974,0.17465079,-0.08592167,0.2821655,0.08472158,-0.31871304,0.84772,-0.18948956,1.1613852,0.15017666,-0.31034565,0.23518346,0.45153576,-0.18577863,-0.0295219,-0.3209003,0.7521283,0.42436242,-0.20329706,-0.020420717,-0.5129396,-0.11776771,0.35096768,-0.39514393,-0.061719786,-0.016296135,-0.58123666,-0.27871925,0.18956788,0.1467292,0.17568144,-0.13366006,0.103333764,0.16911732,0.122221366,0.14667885,-0.6371502,-0.07242118,0.19121209,0.27330163,-0.22927162,0.16539618,-0.43660048,0.47832337,-0.53231674,0.24832916,-0.4269406,0.2449292,-0.21970923,-0.38099653,0.16866788,0.06456947,0.29900008,-0.42466927,-0.3378467,-0.46657786,0.6044801,0.0008809737,0.14328139,0.299679,-0.2660267,0.17047274,0.14302771,0.56685215,0.99666566,-0.3933188,-0.044514634,0.3991485,-0.50545865,-0.5220049,0.37413797,-0.54772705,0.1623893,-0.0023259562,-0.29606596,-0.6004472,0.29666784,0.17496188,0.33419353,0.06527939,-0.5877358,0.0319069,0.25428054,-0.14869586,-0.2574043,-0.24432337,0.20277934,0.49283674,-0.2891924,-0.32918,-0.009832059,0.10064142,-0.17218177,-0.29603335,0.05019949,-0.3503591,0.32223296,-0.17471187,-0.32878894,-0.08357777,0.089697786,-0.40892148,0.1270152,0.115061834,-0.39511117,0.14074811,-0.044878416,0.07471105,0.89973414,-0.29528365,-0.015274286,-0.6230807,-0.60057074,-0.76370096,-0.35159928,0.006907842,0.22213854,-0.16321369,-0.57416165,0.06872858,-0.086967595,-0.37701026,-0.04919086,-0.5926887,0.42988634,0.068559766,0.40913883,-0.13128532,-1.0393499,0.17409857,0.05633854,-0.28869724,-0.6954927,0.5302636,-0.22225554,0.83939135,0.101956025,0.03916645,0.018647585,-0.20031475,0.103176355,-0.3628662,-0.0023442549,-0.6404343,0.109055325 +123,0.37036964,-0.17160763,-0.37259245,-0.24221978,-0.40333787,0.17394914,-0.21055283,0.08995223,0.11133484,-0.5169774,0.04066423,-0.17116968,-0.15934436,0.35634518,-0.24791943,-0.75795,-0.12060162,0.16397874,-0.5429029,0.474272,-0.5612664,0.15080617,0.042655263,0.36170223,-0.06014525,0.25581917,0.2496913,-0.05923299,-0.20347871,-0.00026091933,-0.12508729,0.33396453,-0.79570335,0.48033443,-0.021588424,-0.23705043,0.015144229,-0.51827353,-0.21448596,-0.6020147,0.24678493,-0.7879159,0.54268384,-0.029734403,-0.2052897,0.015639832,0.2688796,0.22352359,-0.27225986,0.057785362,0.34999254,-0.22879712,-0.08040004,-0.11071289,-0.23845567,-0.64167243,-0.66278553,0.049659044,-0.71798503,-0.012729849,-0.092218645,0.3518024,-0.29612598,0.06289549,-0.2365683,0.52634704,-0.42033654,-0.098028556,0.21916378,-0.08094264,0.05540881,-0.3733077,-0.14059032,-0.17499714,0.25057942,-0.2536206,-0.27714786,0.19472902,0.41888466,0.55251724,0.016768707,-0.30520216,-0.155751,0.0007555229,0.11999582,0.488728,-0.10307411,-0.3250141,-0.37232146,0.031926032,0.14525568,0.24224053,0.037025128,-0.44188878,0.17662823,0.04953748,-0.32679063,0.4172187,0.3518587,-0.46724463,-0.3812669,0.3621252,0.39293745,-0.08191795,-0.14734285,0.16019203,0.11049109,-0.50565815,-0.1492729,0.38405797,-0.15605748,0.49231103,-0.17298014,0.079743065,0.7200141,-0.18478163,-0.023568843,-0.1223138,-0.25564826,-0.095003046,-0.3860838,-0.082752585,0.1408678,-0.5800423,-0.010185199,-0.23332584,0.7975205,0.031153986,-1.0382187,0.37108082,-0.4298986,0.025763439,-0.19305725,0.59662193,0.80306804,0.4272073,0.26488072,0.8106397,-0.52107704,0.08031887,-0.1372393,-0.31616,0.1478261,-0.16567858,0.22633801,-0.42503458,0.046202004,-0.17905952,-0.011782989,-0.25557575,0.35501966,-0.40605474,0.0023545602,0.10644779,0.6825095,-0.42328808,-0.18005295,0.8199162,1.1458429,0.9332495,0.28830943,1.471306,0.34160346,-0.069369346,0.1272018,-0.22268997,-0.6243554,0.25890592,0.36698756,0.065219104,0.21195926,0.10806227,0.19910209,0.4336989,-0.14223665,0.052968923,-0.105663426,0.3538196,0.035739403,-0.006770513,-0.44931236,-0.26705545,0.21411833,-0.15335989,0.049204256,0.2550545,-0.14505005,0.33636793,0.33349425,1.4383677,0.033801895,0.16927446,0.0065874457,0.3180313,0.14206521,-0.12085121,-0.05457737,0.23940979,0.21327175,-0.12248763,-0.648995,0.06578549,-0.21599229,-0.4447949,-0.3160255,-0.36028942,-0.035718523,-0.29888555,-0.480925,-0.13267511,0.08828872,-0.31283805,0.6349362,-2.5140364,-0.3894556,-0.11501946,0.26270083,-0.29516578,-0.356473,-0.12916474,-0.46697658,0.35975,0.33166102,0.28284425,-0.6796561,0.56774026,0.3054575,-0.32362482,-0.26448908,-0.74894035,-0.069978796,-0.23215948,0.29614213,-0.04705743,-0.33549756,-0.25242442,0.15593298,0.5291503,-0.06729339,0.020274801,0.107019626,0.5208971,0.21877395,0.6642147,0.09031411,0.521824,-0.27227384,-0.05870494,0.3653875,-0.42038247,0.2928609,0.2685069,0.16448188,0.408284,-0.5886777,-0.8070192,-0.82836217,-0.7382995,0.9446303,-0.4047753,-0.2105076,0.06616657,0.059033114,-0.2893338,0.046005685,0.41516426,-0.12232231,0.047710624,-0.76165116,0.080968775,-0.06328986,0.29855528,-0.07148067,0.12475647,-0.43170428,0.59522706,-0.18848102,0.5382635,0.40092158,0.26307732,-0.2743389,-0.4506429,0.017015452,1.0737995,0.2687338,0.09304675,-0.15760252,-0.2755706,-0.021163967,-0.021576775,0.10627265,0.5061831,0.49736443,0.013277029,0.035542462,0.5237764,-0.37520292,0.09808628,-0.004577543,-0.29023576,-0.07688914,0.17742251,0.49406034,0.513809,-0.25032088,0.4198276,-0.26752383,0.15674576,-0.15015398,-0.34228626,0.4998196,1.0024012,-0.10242052,-0.20999734,0.60290474,0.5649766,-0.32798734,0.35717773,-0.552157,-0.29603097,0.55219626,-0.10565627,-0.3984943,-0.12568133,-0.4027783,0.039932113,-1.0318393,0.31610557,-0.27839276,-0.45705488,-0.59816414,-0.21744862,-3.5775592,0.06678542,-0.07483896,-0.01560062,0.013882034,-0.17880118,0.45911306,-0.5909406,-0.6524396,0.14910081,-0.002299973,0.4953358,0.050221708,0.30591044,-0.4133019,-0.06433491,-0.23515932,0.29710886,0.22381917,0.21817096,0.03344788,-0.375769,0.20835792,-0.40850982,-0.42812327,0.087287866,-0.5967193,-0.51236236,-0.05247737,-0.68363476,-0.5380683,0.71846724,-0.51925737,-0.17517796,-0.20948961,0.04151261,-0.2037796,0.5263497,0.17739365,0.2683592,0.105033144,-0.06072435,-0.31283513,-0.30481246,0.27056843,0.06957082,0.24832547,0.49421996,-0.03055504,0.15934154,0.53907144,0.57263166,0.0872274,0.6545938,0.2607642,-0.1557221,0.2889878,-0.36957297,-0.23828979,-0.6969948,-0.32537797,-0.27922973,-0.48968616,-0.5329483,-0.060177617,-0.4121348,-0.70278484,0.49089614,0.041458406,0.034297347,-0.2063318,0.25112048,0.28572303,-0.22784317,0.12251113,-0.20475873,-0.15332231,-0.5233728,-0.6734108,-0.69258106,-0.61210567,0.14937837,1.406056,0.017321957,-0.2159517,-0.016308324,-0.23425405,0.059850607,0.09592778,0.12524305,0.33443165,0.5108324,-0.034196522,-0.6921993,0.31132886,-0.07398392,-0.052555587,-0.3386684,0.02202705,0.8610832,-0.75919193,0.7300442,0.3646051,0.24996276,0.22380635,-0.5731479,-0.2903697,0.107208885,-0.28850597,0.5542418,0.27198473,-0.6665068,0.48109767,0.22106102,-0.14275905,-0.7823299,0.47217852,0.14029703,-0.048299346,0.024726281,0.48600084,0.32331678,-0.021616718,-0.19400477,0.23106231,-0.6515614,0.16216706,0.30558178,0.051864676,0.46476406,-0.18070774,-0.20016415,-0.5673451,-0.2408396,-0.5607895,-0.3625761,0.04443643,-0.068813294,0.09832776,0.31066513,0.07793975,0.412018,-0.43774155,0.16038911,0.022141675,-0.20009017,0.10004992,0.5174616,0.26129696,-0.46156174,0.57634705,-0.046024956,0.100993566,-0.10351218,0.035707287,0.3256256,0.45841056,0.1641474,-0.10099939,-0.040150423,0.18681595,0.8449946,0.1709326,0.28696945,0.1801882,-0.13622776,0.43434116,0.07335242,0.17998348,-0.01463856,-0.2996776,-0.12771042,0.086336836,0.18417212,0.3724262,0.022947375,0.28056327,-0.15348163,-0.052735317,0.13634111,0.3320346,-0.21764798,-1.011928,0.28365153,0.19693406,0.6282025,0.6779663,-0.006923284,0.18204176,0.441188,-0.44386163,0.13467932,0.34487075,-0.017718827,-0.2732574,0.5996199,-0.449539,0.42233723,-0.2665424,0.009402424,-0.04319879,0.091668285,0.29049882,0.89671487,-0.09212238,0.0583376,0.0066038114,-0.08387186,0.09246056,-0.23072846,0.15143922,-0.43339327,-0.23181637,0.6824334,0.4060192,0.35950035,-0.36975667,-0.06508596,0.049691927,-0.14263071,0.103339925,-0.06914693,-0.27190265,0.22108759,-0.6469153,-0.35919556,0.6917009,-0.068176225,0.055730786,0.24640761,-0.41940567,0.27315357,-0.105366535,-0.09134083,0.031282995,-0.61666757,-0.14587416,-0.32929403,-0.34056565,0.20456788,-0.4795627,0.06714689,0.09379881,0.022761093,-0.27538973,0.11571287,0.4748077,0.6574978,0.10365408,-0.12815024,-0.35651916,-0.1425157,0.1982192,-0.27974886,-0.107701,-0.4126748,0.22593299,-0.59352547,0.58773804,-0.12320825,-0.313922,0.08843048,-0.02584212,0.09821315,0.52940184,-0.1763337,-0.06621075,0.03268836,0.06272734,-0.27484104,-0.0790667,-0.42009702,0.2669641,0.063043125,-0.04457221,0.05995253,-0.20928502,-0.19331875,0.46810606,0.19457534,0.19296603,0.20857069,0.04659656,-0.30342966,0.030340655,-0.009212502,0.37177214,0.067390755,-0.14636758,-0.16276467,-0.10813342,-0.13575359,0.40826246,-0.15412928,0.066539876,0.0017520998,-0.61308366,0.7532118,-0.030972734,1.1594833,0.12310754,-0.3857283,-0.061817877,0.40148106,-0.070855424,0.12645702,-0.38225704,0.866414,0.6033076,0.05788831,-0.24639344,-0.46298233,-0.32205826,0.16119362,-0.30909675,-0.190214,-0.07763011,-0.72013706,-0.2538425,0.2529827,0.19552489,-0.018440058,-0.02178185,-0.023496823,0.09817613,0.094439216,0.5019415,-0.5854592,0.14911485,0.28458866,0.38915125,0.15176924,0.28424406,-0.28488988,0.41284367,-0.71337783,0.22374582,-0.5359673,0.00547514,-0.06813667,-0.095089555,0.21096739,0.0481134,0.35527268,-0.023967573,-0.31609753,-0.2764725,0.81410515,0.07176508,0.2696455,0.97676384,-0.12903579,0.02010856,0.06227727,0.56214416,1.4596748,-0.19584885,0.026261922,0.14889479,-0.19890079,-0.60788167,0.24481201,-0.43976906,-0.010540647,0.13188218,-0.39860106,-0.38190326,0.31458443,0.10737107,0.16129495,0.07518067,-0.5267642,-0.06984393,0.5195416,-0.27444488,-0.22927403,-0.073272504,0.4342595,0.95586354,-0.3474129,-0.14813307,-0.032070395,0.44491476,-0.29934973,-0.51909214,0.048537593,-0.4118583,0.41375658,0.14370704,-0.2740641,0.010312687,0.22112557,-0.3603056,0.079874754,0.4171076,-0.2642481,0.10680102,-0.16445443,-0.16774371,1.1027324,0.20062761,0.071648166,-0.7251772,-0.5415131,-0.81493133,-0.2670739,0.21562563,0.1818508,-0.045006115,-0.34693027,-0.109893225,-0.13889186,-0.18616676,0.13407947,-0.6992988,0.32352972,0.14505324,0.58611786,0.013940222,-0.8736321,-0.046456628,0.20112726,-0.08911971,-0.46005297,0.54341453,-0.16795237,0.8976168,0.04229564,0.002875788,-0.10698138,-0.5025392,0.37538528,-0.5688752,-0.17388085,-0.82254225,-0.01794059 +124,0.39317602,-0.13057616,-0.54670084,-0.06681598,-0.30559683,-0.06771151,-0.14893177,0.41014037,0.23686765,-0.14797904,-0.12630293,-0.08530145,-0.08330811,0.39143676,-0.19384442,-0.7473468,-0.13396071,0.033133,-0.5021452,0.9238755,-0.39454183,0.3333227,-0.098996006,0.32079574,0.48002672,0.3720596,0.2375648,-0.017899973,-0.0028482378,-0.1410815,-0.16760571,0.25682062,-0.49234864,0.067070685,-0.12688588,-0.29080397,0.07282746,-0.2990215,-0.5822837,-0.6599851,0.47310987,-0.8963203,0.44731158,0.1625928,-0.33459803,0.24333945,-0.010511607,0.13390943,-0.41150412,-0.0684004,0.0673831,0.038645864,0.145401,-0.15077175,-0.38558394,-0.54127735,-0.48624358,-0.057574753,-0.56803083,-0.16275811,-0.4402046,-0.008177702,-0.3761932,-0.096949115,-0.21780077,0.25093168,-0.52545106,-0.1552378,0.28360143,-0.15876031,0.14943258,-0.6575843,-0.15758829,-0.14632437,0.062546015,-0.029313207,-0.061922997,0.510686,-0.07301078,0.3834503,-0.030171707,-0.14247029,-0.3415176,-0.17810264,0.17866161,0.3555212,-0.077226795,-0.46490332,-0.22863634,0.09059215,0.192188,0.2892482,0.0836268,-0.19149077,-0.12148688,0.024899611,-0.14780644,0.362895,0.46901768,-0.3126723,-0.3123863,0.3292594,0.3666441,0.38813767,-0.23895994,-0.072759315,-0.046993066,-0.46582842,-0.15068375,0.10352392,-0.31452018,0.7423168,-0.093779065,0.03842336,0.7074752,-0.08245761,0.28053516,-0.12825522,0.09488233,-0.297502,-0.21368183,-0.20801353,0.13725023,-0.416826,0.3685264,-0.14700815,0.8353137,0.2321173,-0.51776284,0.38612884,-0.52514035,0.22198704,-0.15262136,0.5034657,0.6431767,0.22709577,0.30631012,0.76966995,-0.36931083,0.14078914,-0.051084496,-0.37550852,0.17359778,-0.10884269,-0.096721336,-0.47265646,-0.021592293,0.0029587063,-0.11991065,-0.0041556614,0.49535814,-0.35922006,-0.07986593,0.07683505,0.76482373,-0.26658994,0.13771367,0.57513565,1.1375774,1.0869257,-0.032698784,1.1519125,0.20762447,-0.30745855,0.26186213,-0.24602602,-0.94711846,0.20089579,0.49104354,-0.080803975,0.42588228,0.004785759,-0.03891095,0.33172822,-0.41898298,0.070206665,-0.3008802,0.18534073,-0.029032618,-0.02907701,-0.41047066,-0.20960975,-0.11640567,0.19715178,0.024897764,0.4060051,-0.21318504,0.32051882,0.0055398643,1.6421107,-0.07010997,0.043207116,0.1321924,0.77540845,0.32259756,-0.028151205,0.06789174,0.4177842,0.4732292,0.061300363,-0.6949683,0.1081862,-0.4234814,-0.3659409,-0.11093404,-0.42430797,0.10831117,0.17879799,-0.42982846,-0.21616189,-0.055306714,-0.15042745,0.40545338,-2.6466222,-0.10578303,-0.13270295,0.17361178,-0.35654,-0.18570249,-0.052123252,-0.39478675,0.5209714,0.3216985,0.5686163,-0.52863044,0.18773666,0.5763791,-0.59152114,0.08833856,-0.49779803,-0.015154193,-0.1636492,0.6915008,-0.15873602,0.052689295,0.08962621,0.24407932,0.5218837,0.28687206,0.15537167,0.23162587,0.39589295,-0.06305932,0.39196703,-0.01823418,0.48386025,-0.23300219,-0.14125285,0.38876042,-0.20837048,0.5224889,-0.27883485,0.12738775,0.5477494,-0.5134774,-0.87176996,-0.36359334,-0.25282523,1.1716349,-0.49621797,-0.590978,0.3982766,-0.2815653,-0.071926676,-0.047343407,0.41817734,-0.2233009,-0.15384711,-0.7363363,0.1558381,-0.17220256,0.17495987,0.046572167,0.05055936,-0.20527425,0.7368156,0.17059827,0.40260276,0.19530924,0.14065664,-0.088792644,-0.46611783,0.1804458,0.60857296,0.45797938,0.07545068,-0.30957794,-0.31819013,-0.1448175,-0.21094432,0.22412987,0.48391867,0.6424464,-0.15345538,0.10145705,0.3231539,-0.098204486,-0.07894341,-0.13790163,-0.24978866,-0.11278653,0.07189865,0.57734054,0.82298964,-0.16863804,0.2632851,0.0073104883,0.3311805,-0.1284134,-0.48091057,0.6003036,1.0932513,-0.107375756,-0.21061976,0.65394837,0.6728109,-0.37565655,0.5624073,-0.67309606,-0.22853234,0.54796076,-0.13884875,-0.3605682,0.07438693,-0.50438446,0.0752658,-0.80770177,0.20065935,-0.15511136,-0.2602044,-0.6443349,-0.19239794,-3.3155677,0.072626844,-0.45941564,-0.22773156,-0.18532798,-0.085000336,0.26520362,-0.71135616,-0.6057915,0.17065348,0.06793789,0.71109265,-0.11748556,0.0968327,-0.23201077,-0.3146959,-0.44829777,0.11200038,0.15353653,0.4936269,-0.19308789,-0.4386649,-0.11964671,-0.22280666,-0.3268559,0.049553487,-0.527513,-0.34540135,-0.23983239,-0.49769133,0.0003635415,0.65819454,-0.124773756,-0.050673164,-0.065705694,-0.03570312,-0.2572682,0.0616818,0.30162138,0.17932566,0.034784604,0.124444954,-0.015591974,-0.3982887,0.38216615,-0.0008510607,0.43992653,0.2535679,-0.050619334,-0.0049673063,0.54254967,0.38710052,-0.2457687,0.8546905,0.5652474,-0.2142285,0.28857747,-0.23901916,-0.29008132,-0.7110959,-0.3294664,-0.13222077,-0.3280568,-0.6230651,-0.23281932,-0.4079213,-0.82751137,0.43369213,-0.017842004,0.44990668,-0.07503023,-0.062234852,0.4452307,-0.1141954,-0.11403327,-0.021459749,-0.13978654,-0.5868831,-0.24227937,-0.6420168,-0.37140974,0.24986298,0.74841696,-0.24773176,-0.44024208,0.16504571,-0.5007082,0.044134934,0.056869514,0.1342927,0.18508093,0.485702,0.2416739,-0.7267154,0.70881194,0.06838801,-0.014520534,-0.53203875,0.09348871,0.33884445,-0.64484745,0.55463064,0.30642447,0.08886751,-0.035612684,-0.5771089,-0.3223416,-0.022829818,-0.0916379,0.31671807,0.2850887,-0.7096534,0.4677966,0.17002185,-0.32278517,-0.66952366,0.5567982,-0.15563278,-0.29829794,-0.08533873,0.25645226,-0.00965987,0.033926554,0.02199637,0.35190606,-0.3365013,0.103043295,0.37091374,-0.10783397,0.21125211,-0.11793554,-0.210237,-0.6149518,0.20147668,-0.3498853,-0.23057161,0.36764044,0.014908769,-0.04673336,-0.02697553,0.21369673,0.40243536,-0.1780118,0.22345228,-0.045621514,-0.19292529,0.618581,0.47663245,0.6998218,-0.5564875,0.6801649,0.011268769,-0.01287583,0.30119547,0.1483548,0.27959797,0.02395575,0.43976858,0.07967961,-0.156511,0.19243036,0.8553823,0.25260773,0.37512782,0.081650004,-0.08949949,0.37575513,0.15321983,0.09544505,0.05048849,-0.5708256,-0.1450526,-0.11540127,0.19710946,0.4594291,0.04254564,0.32516065,-0.1354574,-0.13376267,0.104663745,0.19902216,0.0002395766,-1.2310208,0.24930508,0.21570961,0.60774153,0.5909261,-0.05127061,-0.020988466,0.6896225,-0.23050311,-0.043197837,0.29772776,0.106399894,-0.6560009,0.50289303,-0.45552498,0.6061873,0.07918567,0.048918936,0.043567657,0.18072,0.36784694,0.74859625,-0.32836443,-0.082361005,0.012686001,-0.60962063,0.16113456,-0.2896261,-0.046256524,-0.439613,-0.36050144,0.50936776,0.5938563,0.21535428,-0.15485367,-0.051919002,-0.10403456,-0.15035698,0.19577043,0.06930696,0.054006778,-0.07026295,-0.64986175,-0.26584062,0.4246869,-0.16231035,0.13600148,-0.18068516,-0.18776147,0.34748203,-0.180865,0.015395398,0.008179648,-0.7787053,0.19416854,-0.2833453,-0.5215116,0.34130844,-0.20508496,0.4043847,0.21526217,-0.09304105,-0.37467018,0.26365873,-0.09158581,0.77103746,-0.15215635,-0.2293603,-0.3231578,-0.12975867,0.25309017,-0.22480024,0.0032654405,-0.24163716,0.035531826,-0.5709788,0.4355003,-0.11520735,-0.1975957,-0.23558089,-0.29647756,-0.073781855,0.5661239,-0.024252517,-0.23087923,-0.305417,-0.04991638,-0.45816204,-0.31141186,-0.18865916,0.1473762,0.21572757,-0.048677824,-0.16935529,-0.16842577,0.15553816,0.4295123,-0.16849594,0.33106083,0.31820568,0.08821342,-0.32295972,-0.2057284,0.28379208,0.5811257,-0.0069331187,0.12992097,-0.12850298,-0.444247,-0.4951873,0.2635416,-0.15366258,0.34695974,0.20976886,-0.38516623,0.52820647,0.0807643,0.97453344,-0.07695048,-0.2959724,0.12144884,0.7281107,-0.01759269,-0.1208872,-0.14814404,0.9024015,0.6463683,-0.17119853,-0.23582448,-0.3849866,0.079324916,0.083005376,-0.24655244,-0.019533059,0.012564637,-0.46344918,-0.049094327,0.1458547,0.33099103,0.30566767,-0.0844867,-0.11550591,0.023955302,0.267734,0.3993407,-0.3654762,-0.44265914,0.39591005,-0.14565828,0.18422438,0.27376732,-0.43619466,0.37714022,-0.5339162,0.07253613,-0.2797865,0.23622322,-0.2641296,-0.27558056,0.17855443,-0.06678308,0.44015127,-0.4134531,-0.25623608,-0.34315887,0.513083,0.12423241,0.263592,0.58228624,-0.28619537,0.16408803,-0.026838358,0.5601225,0.9572436,-0.04845274,-0.15130045,0.18116443,-0.459148,-0.7560137,0.21292965,-0.4645987,0.19819064,-0.0051862285,-0.21420811,-0.61212236,0.26837078,-0.011170839,0.028441366,0.029156795,-0.6360782,-0.37332454,0.053792294,-0.19946194,-0.2803832,-0.44294938,-0.11212725,0.6014815,-0.2703174,-0.24155031,0.2020459,0.04545317,-0.19997837,-0.59005696,0.070301905,-0.2627776,0.23684347,0.15156566,-0.39617404,0.0071672434,0.21099307,-0.44595054,0.25728258,0.11508208,-0.41401786,-0.058255333,-0.25955698,0.08634738,1.1711076,-0.3342606,0.012418151,-0.59940296,-0.5486292,-0.8895871,-0.48691255,0.621808,-0.053191874,0.12893741,-0.62511253,0.0587508,-0.06800161,0.20294416,-0.12643123,-0.4269045,0.518091,0.07185248,0.33314815,-0.02687396,-0.73971,0.1626796,0.011560296,-0.10355314,-0.61717653,0.6192073,-0.22075415,0.7722875,0.1025464,0.14095595,0.10878764,-0.5284248,0.12258778,-0.23629348,-0.22775531,-0.56245124,0.15886416 +125,0.40163043,-0.28675345,-0.32700825,-0.107490554,-0.0931281,-0.012596705,-0.16002919,0.38209435,0.13044454,-0.405431,0.036208067,-0.2926441,-0.007911801,0.18238291,-0.15412793,-0.43654636,0.022950556,0.042963922,-0.529412,0.61685795,-0.2965123,0.10613023,0.04430202,0.30353504,0.016042974,0.36718947,0.042296458,-0.22745192,0.015370105,-0.24252796,-0.09990815,0.089722455,-0.58491546,0.32306337,-0.040943537,-0.09678543,-0.029997375,-0.57486427,-0.50551736,-0.723834,0.2165076,-0.82940227,0.41710377,0.02049866,-0.23554364,0.1938035,0.2998186,0.37845197,-0.20847437,-0.043958485,0.33486512,-0.05450297,-0.008390631,-0.13113408,-0.011280255,-0.4220709,-0.51902217,-0.051258225,-0.33256993,-0.29525632,-0.31167722,0.1793717,-0.28582555,-0.075707614,-0.0071428865,0.5044804,-0.40752044,0.07191469,0.30416316,-0.16442367,0.54178816,-0.59213084,-0.11254698,-0.09372369,0.38052836,-0.19669755,-0.21144895,0.2680285,0.30521205,0.2700769,-0.04700532,-0.09892001,-0.18983667,-0.09261037,0.25021893,0.57909966,-0.21784045,-0.3776135,-0.03633299,-0.068296954,0.0035068542,0.14808336,0.062290244,-0.5131453,-0.11784574,0.03014077,-0.23747303,0.29315117,0.490684,-0.15399234,-0.18012115,0.35263103,0.47815475,0.18673679,-0.13781136,-0.0107803,0.0997073,-0.41851503,-0.12184538,0.12220959,-0.09710496,0.36473995,-0.07048882,0.32940885,0.7600317,-0.062722854,0.07015517,-0.056529462,-0.05464532,-0.13721938,-0.18516397,-0.10180295,0.15520637,-0.46060044,0.14982831,-0.037089195,0.63835526,0.22668162,-0.72797734,0.33926743,-0.5713281,0.13608234,-0.10957216,0.44092384,0.6587195,0.38382322,0.31486696,0.6463563,-0.47697416,0.059314985,-0.064705454,-0.51329577,0.17328325,-0.23624751,0.025427077,-0.51761216,-0.17024067,0.12848258,-0.014966437,-0.06414972,0.3177448,-0.6192412,0.0233544,0.089433506,0.9218038,-0.2074159,0.016524447,0.64412075,0.9456824,0.77112544,0.17720537,1.0265709,0.1634935,-0.22647789,0.3512058,-0.24234676,-0.5967583,0.247242,0.45436546,0.08476368,0.10519971,0.11882599,0.04043036,0.3812256,-0.39286473,0.1273251,-0.17232774,0.09184338,0.14916936,-0.28324178,-0.29115763,-0.28032836,-0.16498923,0.033852253,-0.018438471,0.116476454,-0.23326275,0.2564023,0.08847218,1.7339834,-0.081463456,0.117109194,0.085432515,0.38341156,0.15055707,-0.2594804,-0.1266611,0.30407318,0.4002259,0.35469246,-0.48799834,0.2515471,-0.099697195,-0.42138737,-0.1042441,-0.3259293,-0.17287333,-0.016017279,-0.45705852,-0.11558704,-0.054665696,-0.37917152,0.4774651,-3.064685,-0.072138116,-0.112224154,0.34919873,-0.24640666,-0.26535553,-0.04403607,-0.44352198,0.4219664,0.3608801,0.40188956,-0.64325875,0.33407983,0.3516148,-0.54079586,-0.14331159,-0.55512273,-0.11184315,-0.038623624,0.366613,0.0901471,0.09186065,0.09355692,0.18247686,0.4113012,-0.036786098,0.0955082,0.2812799,0.39894167,0.052387696,0.63863647,-0.04171323,0.3339898,-0.0956279,-0.1359326,0.30040178,-0.24467818,0.16824889,-0.06294043,0.15777586,0.460009,-0.3973589,-0.8265012,-0.8160594,-0.40729308,0.99109715,-0.15902558,-0.33479568,0.36257368,-0.22439824,-0.27708232,-0.05312821,0.6232353,0.0038933414,0.14151545,-0.80978715,0.01684154,-0.18344508,0.18982793,0.018127581,-0.2641282,-0.6043247,0.7139038,-0.01287932,0.5578553,0.24722287,0.021289451,-0.26552203,-0.39729053,0.07177031,0.8380422,0.36777332,0.0824015,-0.079256244,-0.1306871,-0.39190373,-0.25890478,0.09323878,0.5603198,0.61318153,-0.048093837,0.19661748,0.2622657,-0.046504267,0.10177673,-0.06451594,-0.22366844,-0.068893954,-0.095513366,0.5635368,0.44810534,-0.054027356,0.45863873,-0.06669044,0.26765677,-0.10556994,-0.36807892,0.44757563,1.047561,-0.08816471,-0.20175815,0.36795846,0.55508983,-0.088556066,0.2834272,-0.49843946,-0.21906707,0.42270353,-0.16024034,-0.523226,0.34050703,-0.33758482,0.10880114,-0.76211464,0.30068088,-0.3276902,-0.6489849,-0.5104368,-0.17214622,-3.6218054,0.21446005,-0.2689076,-0.29990688,-0.113421865,-0.07943375,0.3086655,-0.5809511,-0.3770301,0.16299318,0.020577775,0.5993889,-0.09141945,0.011424397,-0.25053743,-0.10111987,-0.2656401,0.18204309,0.09190949,0.27226672,-0.107714675,-0.29641256,-0.13045995,-0.09038858,-0.3806784,0.022001395,-0.62893486,-0.5521101,-0.21308152,-0.43392086,-0.25702447,0.6747175,-0.35253972,0.041235346,-0.15280536,-0.033244316,-0.25890118,0.4493297,0.1644841,0.114769265,-0.07438177,-0.04793615,-0.09880751,-0.31761426,0.36245772,0.179701,0.3320492,0.2693605,-0.08595936,0.30633503,0.46383002,0.5093259,-0.17454697,0.80883497,0.34070235,-0.09863161,0.26511872,-0.31527543,-0.23475692,-0.45787293,-0.2848692,0.11242478,-0.35760212,-0.5696545,-0.10682865,-0.33651084,-0.63395786,0.42840084,0.0036370498,-0.02485413,0.01942712,0.1296328,0.4389834,-0.21194541,-0.023857465,-0.003922552,-0.13236918,-0.5982191,-0.13803901,-0.46740392,-0.56422293,0.17604508,0.89427185,-0.1943798,0.03704593,0.09665267,-0.2866417,-0.050739236,0.04081844,-0.06317274,0.2289869,0.25515482,-0.15234397,-0.6737583,0.5361648,-0.28015366,-0.25127634,-0.6101907,0.3961997,0.5938387,-0.57234305,0.5632094,0.1805084,0.11644971,-0.15491308,-0.3772796,-0.11484831,-0.14664671,-0.32288042,0.26502043,0.047527917,-0.7325534,0.33555907,0.35238847,-0.24383442,-0.562437,0.5500224,-0.0156102395,-0.2004498,0.09275496,0.2191831,0.1141882,-0.019002499,-0.26833063,0.3586981,-0.44833127,0.29475847,0.24043664,-0.035007644,0.2652306,-0.07399305,-0.07708834,-0.5871571,0.013418181,-0.3877525,-0.308077,0.3042949,0.12401388,0.12692387,0.26532617,0.032064218,0.3020288,-0.20565997,0.0746467,-0.049349565,-0.22975121,0.16712753,0.40218097,0.4372823,-0.45182467,0.5937029,0.08255307,-0.04349162,-0.017528176,0.16557445,0.3799943,0.2437042,0.46916205,-0.29745236,-0.19503531,0.34478292,0.90616375,0.14280179,0.556476,-0.01208359,-0.05381575,0.17722972,0.08998372,0.15657473,0.08817853,-0.68921196,0.18523486,-0.2694864,0.21489565,0.48920852,0.1028948,0.20364778,-0.08708368,-0.45877647,-0.040693242,0.32966003,0.08421629,-1.1548699,0.50695276,0.3006943,0.77628094,0.44873044,-0.08034559,0.04331385,0.7173959,-0.086935826,0.12260568,0.21772207,-0.004409888,-0.56303173,0.49374682,-0.8834214,0.38011998,0.01705931,-0.10952539,0.0847375,-0.15316379,0.30587295,0.675021,-0.10158687,0.13609563,-0.025102705,-0.24278805,0.23068775,-0.37018648,0.1249918,-0.4678696,-0.3757947,0.5942129,0.6211799,0.300803,-0.073109865,0.123921074,0.032684922,-0.11148421,0.15586598,0.08425005,0.023832964,0.022523237,-0.76000977,-0.17629647,0.5376771,-0.21416983,0.29257995,0.040167447,-0.18995534,0.29002506,-0.14968379,0.040665235,-0.0684817,-0.6320612,0.102622375,-0.21397957,-0.30049866,0.4790004,-0.14681694,0.2869765,0.2353494,0.04785661,-0.07006272,0.53522074,0.11875309,0.8306548,0.0081187105,-0.14282452,-0.51036143,0.06492966,0.088596664,-0.21862653,-0.18854935,-0.35160235,0.021680875,-0.6378549,0.3505719,0.052367706,-0.36898306,0.1550809,-0.09403692,0.045653548,0.5967733,-0.17396395,-0.14468786,0.03174641,-0.15378669,-0.13762137,-0.12146255,-0.09165333,0.32213968,0.27380657,0.10060293,-0.0083109755,-0.040966522,-0.31475347,0.30623367,0.14064528,0.56123745,0.335153,0.04105666,-0.19001982,-0.13989653,0.17352448,0.43826744,0.06616225,0.033913914,-0.20293696,-0.5450781,-0.4250551,0.03754763,-0.024278412,0.46546477,0.1699409,-0.16218781,0.6014352,-0.19848402,1.0619986,0.011965996,-0.31458005,0.1267444,0.37635717,-0.031130973,-0.09895512,-0.39748353,0.7862783,0.5880857,-0.041469056,-0.12802535,-0.21402285,-0.15597272,0.24310498,-0.2575456,-0.09727507,0.07422267,-0.7298528,-0.29433718,0.10411725,0.2586928,0.19271326,-0.10189198,-0.101759516,0.19966817,-0.14295629,0.13544728,-0.5142275,-0.17236778,0.27011842,0.2886764,-0.08388012,0.009467674,-0.44349337,0.5026532,-0.43424645,0.11009853,-0.3333922,0.17473507,-0.19968805,-0.25696278,0.18573262,-0.08149905,0.4215235,-0.0956445,-0.25926638,-0.17142533,0.52562314,0.26145545,0.18483172,0.5442653,-0.2601301,0.09347771,0.07969298,0.5754388,0.85334635,-0.4607621,0.08604427,0.3852241,-0.41577765,-0.43791634,0.29682928,-0.23607959,0.21590365,0.054458845,-0.16320495,-0.27574825,0.26443738,0.2998349,0.033700798,-0.0871075,-0.66309345,-0.20342483,0.18226875,-0.35713145,-0.25993022,-0.4430322,0.3437378,0.61414295,-0.30101278,-0.22772594,0.12618646,0.17253406,-0.15302351,-0.5515903,-0.08338662,-0.31104895,0.25368258,-0.034877304,-0.32636335,-0.16435935,-0.024540389,-0.37789965,0.3001991,-0.09238219,-0.35402533,0.11664617,-0.22213091,-0.22494657,0.88043493,-0.21037224,-0.09155432,-0.6923687,-0.36404246,-0.6075212,-0.3663128,0.330044,0.14591372,0.020408574,-0.3590253,-0.0841097,0.0073694075,0.028542118,-0.15675971,-0.37329417,0.37938595,0.018359492,0.46016088,-0.16389999,-0.8278085,0.27629846,0.15910587,-0.083628945,-0.73213434,0.5214941,-0.122147694,0.65686715,0.05292728,0.111009635,0.30406672,-0.27360776,-0.1307486,-0.26602212,-0.2637251,-0.83238155,0.13995062 +126,0.41225857,-0.27837053,-0.34705466,-0.19449617,-0.2970767,-0.18952714,-0.17316961,0.30254567,0.21515793,-0.18873248,-0.009177231,-0.14851856,0.15140149,0.3448396,-0.106555425,-0.79212993,-0.15477291,0.05332214,-0.67026067,0.4247882,-0.5866122,0.22424753,0.012048254,0.25479725,-0.16686252,0.43778637,0.3346039,-0.26326278,0.116150245,-0.069831654,-0.015598329,0.07377817,-0.71034855,0.105812445,0.019699948,-0.20772293,0.15643813,-0.43420476,-0.34574383,-0.6386966,0.13029267,-0.8590377,0.37328365,0.08028344,-0.06475302,-0.018651742,0.08441022,0.45240054,-0.48127845,-0.070394054,0.28406888,-0.10524222,-0.016545674,-0.28538933,0.23620436,-0.42786142,-0.4782357,-0.029753229,-0.48144963,-0.49007034,-0.18486436,0.18550372,-0.40055022,-0.033861756,-0.038287655,0.35294393,-0.4924392,0.017164053,0.3689323,-0.31263554,0.38676316,-0.34303474,0.09294352,-0.110987015,0.4628639,0.0030852281,-0.122728676,0.40174627,0.23993787,0.25079906,0.17330275,-0.18001446,-0.16784105,-0.26277044,0.213538,0.49425408,-0.16558054,-0.44706663,-0.039192066,-0.0018499998,-0.0130797075,0.2349313,-0.023838677,-0.3582617,-0.1251483,-0.06197475,-0.27207425,0.6764877,0.5277189,-0.09354043,-0.3585372,0.22278312,0.539215,0.21027909,-0.12941468,0.016899787,0.12410172,-0.5502929,-0.1669368,0.13394836,-0.079958156,0.49530804,-0.16317503,0.23731254,0.9985154,-0.25730136,-0.017659893,-0.107283816,-0.1038441,-0.10404166,-0.24528626,-0.08679123,0.14217648,-0.60212976,0.0288785,-0.27799073,0.9025841,0.2401442,-0.83322275,0.4045196,-0.5920142,0.14846548,-0.1564078,0.7101539,0.44138816,0.36413452,0.4682992,0.7005611,-0.2878287,0.22236243,0.05587565,-0.61153734,0.17752178,-0.30518195,0.09429664,-0.44842878,-0.014425957,-0.01895341,0.0810109,-0.013987775,-0.07887072,-0.48353502,0.07007759,0.27628422,0.8309258,-0.30166367,-0.014851144,0.5059157,1.064958,0.7998062,0.11459002,1.1508578,0.31743637,-0.2605917,0.30703944,-0.3517292,-0.82988954,0.13044834,0.33755583,0.14420699,0.17736222,-0.10622174,-0.004630545,0.21124345,-0.34381008,0.10644453,-0.04055021,0.61123997,0.20685361,-0.11571422,-0.3619613,-0.14091302,-0.07517566,-0.19534571,-0.008678427,0.1596583,-0.16727588,0.35859892,0.0063251075,1.0953422,0.015480489,0.17593226,0.0347245,0.6594406,0.18422523,-0.0010682368,0.015762476,0.5219769,0.34740612,0.14158393,-0.71511513,0.40644836,-0.21435307,-0.38149893,-0.06076955,-0.33976078,0.056155436,0.1647647,-0.35571113,-0.09854216,0.023741782,-0.053773265,0.5051596,-3.011098,-0.19947185,-0.0659115,0.23915316,-0.27288818,-0.013852327,0.11089912,-0.5504361,0.1094309,0.4004904,0.54111665,-0.76474583,0.45576066,0.48942274,-0.5089578,-0.2082088,-0.6692641,-0.084983855,-0.0067650583,0.48016196,0.17427762,0.16030455,-0.13653043,0.15563372,0.59408945,-0.09765454,0.043179784,0.31497702,0.37340218,0.22687949,0.584861,0.020527061,0.468526,-0.3203433,-0.081100695,0.24996042,-0.326093,0.20394418,-0.112314895,0.057808213,0.42532447,-0.25589317,-0.93904406,-0.6218599,-0.3857807,1.020501,-0.30162057,-0.36657274,0.33233613,-0.064397395,0.002548493,-0.049891744,0.4473888,-0.03403444,0.28001234,-0.60431576,0.14109947,-0.1116405,0.18825689,0.19015826,-0.15976633,-0.19397822,0.6116871,-0.003765152,0.37952647,0.36305445,0.14272928,-0.20559329,-0.3892377,0.101047434,0.5810077,0.2460625,0.077995524,-0.20737833,-0.25034302,0.069194406,-0.31956005,-0.058766775,0.49476668,0.8108912,-0.1246082,0.13088533,0.27925867,-0.1446391,0.046557374,-0.045109265,-0.24829942,0.104188174,0.0074559725,0.4263298,0.7727242,-0.33484203,0.4332452,-0.08194316,0.2819745,0.09117695,-0.3675755,0.66516656,0.3733477,-0.025922684,0.033767737,0.30439016,0.5146812,-0.50872236,0.4616118,-0.5626421,-0.06294441,0.68870795,-0.21647668,-0.4405648,0.21327117,-0.19531569,0.087435916,-0.9413528,0.5155292,-0.41307348,-0.46357375,-0.4142373,-0.1074539,-3.8734167,0.14746457,-0.2565549,-0.2466496,-0.32643348,0.027371278,0.19774781,-0.61053973,-0.33537385,0.38182923,0.2598554,0.4225585,-0.044939164,0.14636694,-0.32349476,0.12913087,-0.17784612,0.22909428,0.08253738,0.16314675,-0.012788282,-0.3660305,-0.1735351,0.030795945,-0.61948013,0.38634267,-0.49496314,-0.47727644,-0.052996937,-0.60800374,-0.40283343,0.67286235,-0.3165167,-0.068412684,-0.17503387,0.06314748,-0.35851547,0.3988303,0.08337129,0.13333584,0.0037632263,0.04814505,-0.096936226,-0.3788018,0.4621774,0.0017687212,0.48591316,0.053499162,0.024315871,-0.012178495,0.49240133,0.64009917,0.093463436,0.7916158,0.38761228,-0.13727333,0.34832293,-0.42776564,-0.19390693,-0.5610896,-0.47481245,-0.099363916,-0.26144636,-0.5652403,0.060091898,-0.29252416,-0.5810718,0.5907033,-0.023376342,0.20915325,0.06468005,0.0286067,0.29325858,-0.07098253,0.060065072,-0.06370106,-0.08933666,-0.6513035,-0.11057475,-0.6609307,-0.4821134,0.14553887,0.7151,-0.35931924,-0.04023277,-0.13426381,-0.3511234,-0.04027877,0.09224856,-0.015373798,0.3870406,0.2828609,-0.04232438,-0.6451961,0.51073927,-0.08714391,-0.20230936,-0.5459143,0.0868485,0.65579677,-0.70777154,0.58239335,0.23387194,-0.0098448545,0.045629032,-0.32166606,-0.42829543,-0.03818604,-0.08538188,0.3074105,-0.0868677,-0.7145889,0.4151305,0.30266222,-0.59415126,-0.62980944,0.2889189,-0.04365359,-0.27912572,0.04728397,0.20975359,0.052729037,-0.071320444,-0.31473443,0.1633065,-0.48878384,0.1787738,0.061034266,-0.09636153,0.5147053,0.14426252,-0.22584112,-0.7154194,-0.087401316,-0.47860485,-0.1737152,0.3025277,0.033942096,-0.0844051,0.09550386,0.04839974,0.27610877,-0.1388331,0.08443082,0.10208992,-0.41260844,0.1966564,0.45609748,0.3165299,-0.43808863,0.6264991,0.18832618,-0.06713519,0.120705016,0.012646294,0.35756618,0.10501958,0.27394354,-0.0627308,-0.11137439,0.3347863,0.8612357,0.18336354,0.6205846,0.0653573,0.004141051,0.65252876,0.033007916,0.18453479,0.2279853,-0.39330593,0.21569507,-0.031868055,0.21045627,0.48718113,0.33888465,0.44105908,0.18394811,-0.3249419,-0.019591633,0.41559216,-0.017456898,-1.170265,0.41443795,0.29578727,0.7619032,0.45362246,0.09460219,0.00034432916,0.9018412,-0.1796852,0.10212907,0.4197553,0.11868743,-0.5988674,0.80197215,-0.6970075,0.276546,-0.14633891,-0.09492059,0.15822867,0.1662382,0.25974604,0.5454267,-0.19510481,-0.059763238,-0.0915432,-0.17669551,0.005931506,-0.4281527,0.14766699,-0.28839356,-0.285742,0.59776175,0.44468397,0.2085177,-0.102148056,0.07080703,0.12833232,-0.041476708,0.25899985,-0.21509585,-0.12457183,0.1502051,-0.56430066,-0.22632188,0.72500336,-0.065458424,0.18983632,-0.29122537,-0.15369186,0.16949701,-0.34651655,-0.2659622,-0.026489882,-0.7560301,0.30350846,0.031138463,-0.41592106,0.57351,-0.2393187,0.22431153,0.20244329,0.016942222,-0.15678605,0.29546922,0.019960038,0.8307966,0.039109595,-0.30282182,-0.37854242,-0.03975747,0.26096198,-0.15417221,0.083172925,-0.4750578,-0.24391852,-0.33246204,0.5459295,-0.10458042,-0.31757826,0.025481177,-0.41088775,-0.04347368,0.5180968,-0.079725504,-0.18532106,-0.017020134,-0.23660366,-0.30548695,-0.0458126,-0.3279969,0.32414454,0.47518313,-0.13736579,-0.011496508,-0.30986023,-0.10410966,0.47037667,-0.035050727,0.43778455,-0.040704116,0.06653481,-0.19677626,-0.21297914,0.11963756,0.33297232,0.21532154,0.06609874,-0.27855113,-0.3390552,-0.17882712,0.0028079795,-0.09464935,0.2810232,0.041936047,-0.38793108,0.8182434,-0.032275096,1.199274,0.071452245,-0.24970391,0.2739026,0.4082588,0.06010407,0.12191535,-0.5174369,0.82245386,0.603482,-0.15814355,-0.0939025,-0.4760919,-0.21648256,0.27820644,-0.28989398,-0.030332688,0.044195764,-0.372317,-0.34818664,0.24553467,0.16662815,0.11474492,-0.010469217,-0.14086689,0.013535352,0.11272231,0.46183282,-0.6142846,-0.1766904,0.15174347,0.14248142,0.10291516,0.04148937,-0.35272402,0.43816233,-0.58350444,0.28084472,-0.56462026,0.08099452,-0.2936765,-0.3580289,0.08573185,0.008654787,0.422613,-0.27922532,-0.4868128,-0.0026108897,0.4086045,0.15366964,0.21273452,0.64386487,-0.2710074,0.059861716,0.07047982,0.5693257,0.91461444,-0.592533,-0.045078654,0.34262583,-0.3825789,-0.61008954,0.5133921,-0.1358691,-0.04407908,-0.1400566,-0.32590118,-0.52691895,0.19052267,0.2501687,0.009559278,0.01545697,-0.5495003,-0.39024782,0.34714493,-0.46008742,-0.34209758,-0.31316394,0.4353593,0.8578276,-0.41331732,-0.32003805,0.112169266,0.1562263,-0.20043986,-0.35860878,-0.2156817,-0.14282714,0.34604618,0.09765555,-0.25479355,-0.1510796,0.2898754,-0.3526339,0.1529852,0.07979822,-0.38930696,0.10946079,-0.013657167,-0.045938436,0.8335796,-0.29122713,-0.092869535,-0.7715522,-0.49067277,-0.8792231,-0.5381974,0.46721298,0.17661133,-0.07073469,-0.27624032,0.043702237,0.11084142,-0.18533272,-0.045641534,-0.6768944,0.3794369,2.474739e-06,0.46238235,-0.17364605,-0.9668646,0.03707216,0.28403386,-0.033855792,-0.8093797,0.52079004,-0.23147961,0.6831811,0.019379683,-0.07326882,0.010668727,-0.14399567,0.010970556,-0.43456408,-0.36855173,-0.6842021,0.22477216 +127,0.14415647,-0.30022344,-0.82338625,-0.1720907,-0.09647717,0.07851353,-0.21138817,0.5710449,0.30870143,-0.24412555,-0.20002478,-0.18224913,0.016669126,0.43902412,-0.13557804,-0.3027682,-0.27995035,0.13286535,-0.49578655,0.26469132,-0.4607019,0.02166004,-0.21391775,0.41780603,0.12541656,0.07287347,0.051859543,0.09066462,-0.039538283,-0.08084627,0.35669872,0.24463809,-0.63625365,0.06315688,-0.24865873,-0.43553343,-0.22236025,-0.44612637,-0.5006663,-0.71639234,0.5189311,-0.9013218,0.48089013,0.16413529,-0.16437425,0.59479755,0.10715872,0.18705744,-0.29137048,-0.1456033,0.1588233,-0.088810824,-0.10845124,-0.12559512,-0.23440246,-0.23318183,-0.6169712,-0.0077282214,-0.34498522,0.026094994,-0.29979947,0.03484156,-0.3622187,0.16572967,-0.21576925,0.36641407,-0.35665902,0.10768401,0.27300382,-0.053696226,0.34062943,-0.51028234,-0.21767952,-0.17492636,0.06902993,-0.2723821,-0.25803763,0.24294317,0.31916514,0.3093449,-0.34528708,-0.07735949,-0.30526218,0.006234283,0.07821654,0.4050988,-0.17306888,-0.3334296,-0.10960722,-0.24078684,-0.10257998,0.0991835,0.19870096,-0.26911476,-0.09669227,0.0953119,-0.2609341,0.3892456,0.42405534,-0.13096105,-0.25536278,0.36654618,0.5308875,0.3338679,-0.060746867,-0.16191787,0.028360812,-0.56291866,-0.21876104,-0.13520311,-0.16411911,0.5652751,-0.098352514,0.19373631,0.5302783,-0.21747877,-0.22902818,0.060305726,0.12014391,-0.092319466,-0.44905496,-0.34000745,0.43534127,-0.43658367,0.28637612,0.0036327417,0.4872509,0.0027841032,-0.68734,0.34138212,-0.64133424,0.11137023,-0.04503706,0.45439634,0.6105744,0.3976183,0.40787196,0.6420174,-0.29489493,-0.020175437,-0.094772905,-0.3474778,0.23556595,-0.21306263,-0.10679841,-0.45597884,0.04178684,0.14050657,-0.088491976,0.20796156,0.34755996,-0.2584461,-0.12644438,0.281805,0.6375887,-0.24483877,-0.05465587,0.5356851,1.1918826,1.0103396,0.08172505,1.182558,0.10752813,-0.26722056,0.2906849,0.0657037,-1.2316227,0.289749,0.25074366,-0.25483623,0.39281878,0.08635812,-0.0017165752,0.42524397,-0.5128223,-0.005042076,0.07259292,0.14567797,0.24405307,-0.24972929,-0.29456422,-0.41090226,0.04317255,0.017887076,-0.020180566,0.1911421,-0.14772373,0.08200073,0.12388263,1.5193082,-0.086076535,0.083537795,0.19478388,0.50094265,0.12662284,-0.24895518,-0.24681644,0.24350627,0.33573386,0.14547761,-0.56666166,0.3211548,-0.048377793,-0.5067552,-0.08510235,-0.38092732,-0.19081457,-0.058993507,-0.48436633,-0.12001131,-0.24182408,-0.35488176,0.3390505,-2.8801727,-0.057492714,-0.092968516,0.33378315,-0.09276136,-0.18271494,-0.21819393,-0.37241957,0.3566154,0.44461307,0.346241,-0.5362262,0.3165846,0.44536138,-0.5880683,-0.003316899,-0.5421846,-0.12431767,-0.0703441,0.14231291,0.041933417,0.005421365,0.10993602,0.31071267,0.38145646,0.021080628,0.18193345,0.41361836,0.42394933,-0.12176734,0.4281625,-0.15160303,0.5090752,-0.5151842,-0.24697757,0.2680998,-0.51679146,0.19860528,-0.18180875,0.046608955,0.48973227,-0.40376756,-1.0312883,-0.47974202,-0.0480073,1.3215898,-0.3908178,-0.4049615,0.30173078,-0.5780427,-0.33931795,-0.15100724,0.55870426,-0.18625571,-0.11401486,-0.9980271,0.023080379,-0.22962968,0.26512828,-0.084106766,-0.031841222,-0.46209225,0.59494853,-0.005144755,0.6869941,0.44315615,0.02565968,-0.4149252,-0.31879592,0.14876306,0.6097252,0.17412238,0.1738892,-0.34368277,-0.12525403,-0.3558941,0.086728334,0.20456617,0.3989303,0.41519165,-0.0694119,0.2750531,0.20037158,0.13721444,-0.009460777,-0.19692408,-0.13409372,-0.11364075,0.02734077,0.56844527,0.73879784,-0.16093765,-0.08464333,-0.061509073,0.2298563,-0.22309037,-0.41315213,0.39255646,1.0165769,0.037616476,-0.1896404,0.64706635,0.6940909,-0.47165182,0.5226059,-0.5112,-0.25330555,0.37627375,-0.13245226,-0.40958357,0.14910053,-0.41393343,0.044237673,-0.7930646,0.11342869,-0.17975827,-0.15648896,-0.5689288,-0.21518815,-3.2565758,0.20006232,-0.15462397,-0.30967677,-0.24862985,-0.08554823,0.29671046,-0.5017178,-0.8378394,0.100850515,0.036641166,0.79291487,-0.13683702,0.061528135,-0.24509566,-0.19823076,-0.29511064,0.11431831,0.21860029,0.3194163,0.01879388,-0.52455467,-0.27118838,-0.25605735,-0.39815938,-0.08473142,-0.33625913,-0.1424341,-0.00550509,-0.53329426,-0.43832302,0.4071926,-0.2225691,-0.072219156,-0.18954313,-0.04503554,-0.2001403,0.42682195,-0.050888095,0.21451026,0.0876492,-0.08037045,-0.014782645,-0.070950024,0.35546407,-0.018593958,0.28816494,0.38094845,-0.25837642,0.051999044,0.47160044,0.7105665,-0.08455775,1.0163118,0.527331,0.09977911,0.31330732,-0.12791418,-0.11280876,-0.48595858,-0.15793407,0.032503974,-0.45033133,-0.3118729,0.056042697,-0.3058129,-0.776958,0.5865521,0.015637329,0.14375226,0.17083704,0.11976815,0.37522873,-0.2088316,0.05756156,-0.07403877,-0.122626066,-0.39242625,-0.19152485,-0.60206383,-0.40754065,-0.09337298,0.9628187,-0.12218668,0.03200522,0.14858614,-0.19800436,0.1600938,0.3407984,0.06615186,0.30562696,0.5843715,0.107124686,-0.4395081,0.3618492,-0.18797249,-0.19429614,-0.66785884,0.026018882,0.4226873,-0.49257043,0.6984852,0.4890903,0.18067348,-0.117090285,-0.5580288,-0.33177313,-0.06337284,-0.28302863,0.43104616,0.5061044,-0.96005994,0.4185499,0.40790737,-0.263418,-0.73905164,0.75934553,-0.06072781,-0.0049378076,-0.097440936,0.33699086,-0.09957818,0.095055915,0.10224915,0.29209292,-0.2454285,0.15252122,0.16247737,-0.030665353,0.23396224,-0.1426586,0.24138354,-0.5209658,0.116680585,-0.4124894,-0.14870794,0.2546266,-0.08848981,0.11014799,0.18632405,0.0016958466,0.30919042,-0.22488661,0.06495292,-0.14418812,-0.40041557,0.46395698,0.43779492,0.5319352,-0.3920217,0.6291225,-0.08494654,-0.14621094,0.0021582816,-0.03961234,0.3689874,-0.13723935,0.4621409,0.16097338,-0.18689835,0.242797,0.7559182,0.20196019,0.23685347,0.04920538,0.06648456,0.23107924,0.109877855,0.2977487,-0.061352357,-0.6252509,0.06581717,-0.29884347,0.23871274,0.47059724,0.05977462,0.3331618,-0.29261076,-0.29315484,0.060049087,0.3343074,0.052819043,-1.2415365,0.29145548,0.10548713,0.8371482,0.73631305,-0.055210363,0.07343092,0.43162242,-0.14775343,0.0809018,0.4191055,0.0761571,-0.5459351,0.5431708,-0.65247303,0.53790915,-0.13045873,-0.03027915,0.10837024,0.020865342,0.5165674,0.63589376,-0.064889066,0.08465282,0.192572,-0.4193896,0.25606564,-0.3739859,0.22731946,-0.54787374,-0.13226514,0.65044814,0.55724734,0.44158706,-0.2768983,0.019080192,0.057934523,-0.2046342,0.065175734,0.040600546,0.046742443,-0.14063688,-0.80267715,0.011814539,0.46217504,0.21832488,0.10072321,-0.08094921,-0.4480339,0.28540364,-0.17232974,-0.12226152,-0.068030484,-0.64468926,-0.020291567,-0.38478756,-0.45481965,0.2987447,-0.13078439,0.28936115,0.3875527,0.08968479,-0.4190739,0.2517096,-0.08223091,0.8709585,-0.11245944,-0.17406464,-0.30460528,0.21556006,0.2586752,-0.13539326,-0.07469258,-0.44968334,-0.018933645,-0.25215968,0.53955406,0.027727582,-0.27319828,0.20055564,-0.07755051,0.16280209,0.66877675,-0.13264562,-0.07145084,-0.11760066,-0.06464996,-0.24759914,-0.29803804,-0.19819798,0.28435284,-0.024376592,0.12690906,-0.10996912,-0.021087011,-0.020128379,0.37679824,-0.020742754,0.32331502,0.49133334,0.21145217,-0.31789407,-0.1203232,-0.0122031495,0.7265975,-0.062639676,-0.35851762,-0.44285622,-0.39402613,-0.17182232,0.43672743,-0.07402684,0.37797,0.11040185,-0.2137627,0.51941466,-0.045367986,0.81697035,-0.038606834,-0.36789152,0.055095006,0.4843837,-0.021364497,-0.33719602,-0.35644647,0.5497782,0.38683596,-0.24200584,-0.25820398,-0.22401564,0.009488565,-0.17352493,-0.2427193,-0.1624014,-0.12582304,-0.7266906,-0.029064551,0.04651344,0.39201903,0.14603575,-0.20974775,0.32086498,0.27986482,0.031041643,0.19646321,-0.3199829,-0.12605499,0.29098043,0.16427767,-0.05313613,0.08013472,-0.4010503,0.30455118,-0.45964238,-0.14753927,-0.28718433,0.11106639,-0.16719763,-0.29917297,0.18470837,-0.15334417,0.35942528,-0.1810279,-0.02621798,-0.23122413,0.31802192,0.11925048,0.21966892,0.57152206,-0.21902962,0.119338214,0.12226441,0.5057009,0.69156927,-0.17287952,-0.018843174,0.17467324,-0.3291215,-0.60578835,0.3687694,-0.4660491,0.40195933,-0.08883572,-0.021584483,-0.6056935,0.27134955,0.17756309,-0.04156248,0.14481385,-0.76544553,-0.23966007,0.21411943,-0.31086153,-0.12140285,-0.3812747,-0.22447102,0.6101337,-0.14449129,-0.102124654,0.11489522,0.26146892,-0.059474647,-0.44362625,0.09641891,-0.39439902,0.22028816,-0.09373111,-0.37038526,-0.1627835,0.067672126,-0.41540876,0.37967005,0.01591291,-0.17957957,-0.040446598,-0.40729317,0.016027907,0.94170094,-0.23845953,0.21079777,-0.2791664,-0.6231984,-1.0410172,-0.10819011,0.38401926,-0.03580715,0.014060658,-0.5870192,0.07792484,0.055642355,-0.3283886,-0.23020439,-0.14547242,0.40993834,0.03181885,0.48845062,-0.021699468,-0.68944216,0.004506687,0.0849816,-0.16919948,-0.30625156,0.59412956,0.05389164,0.75165945,0.10809932,0.21175297,0.10617911,-0.50722617,0.15482917,-0.05579679,-0.00875816,-0.4426264,0.14230938 +128,0.31596702,-0.21122333,-0.61276525,-0.24920958,-0.2910409,-0.1617813,-0.3542586,0.050331075,0.14283966,-0.16059014,-0.25213826,0.009813047,0.18350904,0.19493431,-0.1905869,-0.78452843,0.06796636,0.21709484,-0.7514541,0.44062054,-0.6447211,0.32276285,0.06642161,0.4084789,0.009093422,0.3390431,0.2819939,-0.16219245,0.09495059,-0.22036019,-0.14964063,0.2564756,-0.68094534,0.08108707,-0.23437455,-0.47373247,0.084315106,-0.35154215,-0.15665492,-0.8661989,0.19894339,-0.89121926,0.46866515,-0.021026643,-0.30162942,0.030003143,0.3218538,0.3188049,-0.37259153,-0.024389086,0.3118583,-0.2340326,-0.20774451,-0.32038435,0.12545109,-0.41698387,-0.51738614,0.039878268,-0.7170665,-0.3110654,-0.32778406,0.23078777,-0.34814185,-0.005978127,-0.12938511,0.3513489,-0.38874117,-0.07643996,0.09592569,-0.21202469,0.41536078,-0.5497904,-0.066566855,-0.055381224,0.63855517,-0.11037746,-0.21268974,0.36320767,0.25524372,0.3719568,0.19172782,-0.3460253,-0.20928138,-0.06418804,-0.06350608,0.5271194,-0.23454784,-0.39378107,-0.20612341,-0.07871075,0.48639297,0.36501437,-0.03581414,-0.12821145,0.002603939,0.0023961435,-0.219496,0.61995596,0.6289784,-0.36410114,-0.3254236,0.31835446,0.4244946,0.23560216,-0.31310213,-0.012157014,-0.0008245672,-0.6171573,-0.20527697,0.075793914,-0.0005772206,0.45295545,-0.21086492,0.16564892,0.8568389,-0.076255694,-0.019132825,0.19720048,-0.06686037,-0.0699165,-0.11932124,-0.24577919,0.24465667,-0.6593682,0.004569645,-0.36132225,0.8404451,0.05811097,-0.80956745,0.39759058,-0.5246708,0.15728475,-0.1075809,0.7222552,0.7159132,0.5303609,0.4302435,0.76575875,-0.35527393,0.1319649,0.12586607,-0.5262944,0.116590485,-0.08276485,0.12805687,-0.38631418,0.029147955,-0.043130457,0.29754236,0.12947255,0.45363337,-0.5035834,-0.16882035,0.23533733,0.6483875,-0.35193774,0.08219433,0.68471134,1.0399479,0.9548289,0.15720686,1.0827656,0.19871777,-0.17806824,0.08277336,-0.15038776,-0.8074808,0.18941452,0.23905614,0.12484495,0.13362741,-0.087290436,-0.0058915615,0.4149898,-0.4539585,-0.06867524,-0.041681293,0.3210153,-0.0034846389,-0.028396698,-0.446105,-0.25397962,0.14768948,0.124975316,0.2198549,0.23169869,-0.22583254,0.22718547,-0.046435602,0.91786,-0.09724338,-0.034836724,-0.010754689,0.6234914,0.37845197,-0.024185197,-0.098048195,0.29695243,0.47419584,-0.021289736,-0.74747425,0.12960257,-0.37037772,-0.28220874,-0.15797046,-0.37111166,-0.13644432,0.21419133,-0.37313664,-0.2876238,-0.026428662,-0.305593,0.3596045,-2.7851202,-0.38215524,-0.10510818,0.3252102,-0.14222823,-0.050510764,-0.22833346,-0.6300277,0.41160136,0.22720084,0.5291846,-0.5620775,0.5039594,0.5571445,-0.59640145,-0.2885998,-0.7760627,-0.072854504,-0.028615216,0.4141293,0.19979906,-0.1957972,-0.19207825,0.16247874,0.7686001,0.040462025,0.11734419,0.40780643,0.4503085,0.0403871,0.5445125,0.1479691,0.6435216,-0.24276592,-0.16593656,0.17036846,-0.39747217,0.1083002,-0.28939885,0.041592613,0.5527599,-0.55821884,-1.0285087,-0.5768857,-0.044701695,1.0910401,-0.3113065,-0.5338803,0.24434802,-0.21530993,0.03263993,0.2225634,0.63597953,-0.1667069,0.085342556,-0.74309355,0.13797486,-0.105961286,0.18589288,0.077192776,-0.07894259,-0.4390397,0.6989223,-0.0331913,0.6048547,0.18541762,0.24087994,-0.30864686,-0.40506536,0.24106044,0.7975312,0.23013641,-0.020273749,-0.22881944,-0.23664236,-0.1655797,-0.27655917,-0.02966945,0.6343281,0.82974917,-0.17929229,0.22398582,0.36068016,-0.082620494,0.15511702,-0.10975189,-0.26867735,-0.097168475,0.0015458739,0.50327665,0.8193178,-0.06527351,0.37993386,-0.12381573,0.43615833,-0.06633058,-0.53019875,0.7658843,0.570799,-0.09239908,0.0013637107,0.42261982,0.5380733,-0.35919374,0.5015122,-0.5623554,-0.44176924,0.69344234,-0.24515128,-0.3964372,0.17220895,-0.4251641,0.16230543,-0.7584076,0.486893,-0.4253699,-0.40189523,-0.34911746,-0.068998456,-3.5504656,0.1919927,-0.26906174,0.04562068,-0.57548845,-0.21980627,0.3381906,-0.57772744,-0.44982308,0.11601158,0.28401965,0.74540323,-0.07894777,0.1775682,-0.3212903,-0.27300897,-0.17549405,0.19223356,0.19218561,0.21416532,-0.03574904,-0.25363874,0.07538294,-0.05076358,-0.40392563,0.09479081,-0.435877,-0.4225254,0.014007256,-0.6249702,-0.39100978,0.62599415,-0.21177253,0.01262355,-0.28608334,0.1192408,-0.19299045,0.24916242,0.093973905,0.17738877,0.027880134,0.060600404,0.23865014,-0.27907833,0.48673397,-0.21677369,0.22344682,0.011417123,0.07555055,0.0590196,0.4905663,0.48009887,-0.17813359,1.0970056,0.41335732,0.008011887,0.25944245,-0.2905347,-0.51526177,-0.6825959,-0.23877364,-0.120597,-0.37459862,-0.26527622,0.11389795,-0.37661263,-0.75515217,0.6587696,0.0132906055,0.27957043,-0.07486545,0.33847746,0.29862085,-0.054492574,-0.05077571,-0.07062915,-0.10784631,-0.46769422,0.06558137,-0.8696454,-0.42341107,-0.17476276,0.8082345,-0.34735292,0.045891322,0.054196715,-0.06885112,0.056022875,0.120361015,0.13984126,0.33431002,0.51476145,0.028527351,-0.6563587,0.32262245,-0.1385996,-0.17325284,-0.6011147,0.119801484,0.66820043,-0.8101768,0.5318336,0.58839995,0.09458309,0.029644966,-0.6130345,-0.21522978,0.054361437,-0.118559726,0.48986477,0.10688266,-0.9389735,0.64870554,0.34657514,-0.39676946,-0.7267775,0.49221113,-0.030827083,-0.3818386,-0.22439297,0.36386615,0.08086598,-0.08716805,-0.1507233,0.16546609,-0.34931135,0.38197005,-0.026714463,-0.11931189,0.5812774,-0.115719035,-0.3124916,-0.64351624,-0.12763745,-0.6608134,-0.2049383,0.20223525,-0.004739275,-0.05456595,0.22073552,-0.050832376,0.47199658,-0.36129168,0.06212053,-0.04519943,-0.27401397,0.2251588,0.520962,0.39207986,-0.36237723,0.61500925,0.16686863,-0.19296248,0.03576469,0.008470214,0.46385273,-0.093329854,0.46093148,-0.24919507,-0.18991573,0.24671723,0.78748643,0.07544822,0.54769665,0.032647066,0.031990804,0.43852937,0.0690111,0.11888848,0.03624455,-0.36750966,-0.036711916,-0.14474727,0.19889353,0.5308243,0.28775135,0.25554717,0.077301234,-0.11924023,-0.11336066,0.22016475,-0.13949284,-1.0562937,0.5881194,0.28846714,0.66107017,0.44901836,0.14410819,-0.15622042,0.68240535,-0.3593041,0.020048449,0.3449798,0.039835528,-0.43358532,0.74580663,-0.58737546,0.4579905,-0.19149525,-0.032670494,0.15569662,0.06096563,0.2670224,0.81066746,-0.2563378,0.14886424,-0.0070291874,-0.18454339,0.16714375,-0.39387316,-0.007108849,-0.34951958,-0.32851523,0.80540466,0.33567497,0.26510113,-0.18609788,-0.046608586,0.065719925,-0.19173244,0.09607057,0.037216417,-0.039006885,0.19385034,-0.53966963,-0.09612624,0.54425514,0.2112251,0.09022688,-0.110659614,-0.163937,0.23323034,-0.30133548,0.07307605,-0.13412644,-0.44278902,0.091553204,-0.2579283,-0.3884506,0.64831704,-0.22327559,0.16004251,0.2814871,-0.029942205,-0.048459765,0.2259914,0.049679417,0.5245191,0.081163004,-0.2495024,-0.33542302,-0.023265362,0.20380116,-0.2918862,-0.03642363,-0.48663026,0.09055372,-0.4000233,0.5138516,-0.23934211,-0.34818664,0.105940655,-0.2351331,-0.1426523,0.5061749,-0.13412179,0.06695427,0.16513199,-0.07433059,-0.21808478,-0.21145108,-0.25312713,0.105954185,0.271258,0.052087452,-0.14425436,-0.3620262,-0.12534514,0.58434343,-0.045665964,0.42372915,0.22552162,0.26038167,-0.15569553,0.051791906,0.18222496,0.5365525,0.12716031,0.020819804,-0.36973003,-0.40625098,-0.30746713,0.12544647,-0.03779689,0.14326999,0.10247163,-0.0967358,0.8278213,0.015932592,1.0047925,0.0625668,-0.3436797,0.18094108,0.64256996,-0.14347427,0.024416158,-0.3827028,0.95345014,0.49707502,-0.29095668,-0.0674161,-0.45258617,-0.17243297,0.21333085,-0.31543767,-0.072552815,-0.1792466,-0.56597704,-0.4943133,0.22769144,0.34239313,0.07187575,-0.12744468,-0.008505939,0.038707193,0.14726909,0.41762483,-0.7969887,-0.33326226,0.17078008,0.23558196,-0.15263921,0.23510493,-0.39284128,0.36855656,-0.5548413,0.11401269,-0.49271816,0.13664255,-0.08137187,-0.42185974,0.15793766,0.056492236,0.31443718,-0.23314771,-0.36472857,-0.05158722,0.3261239,0.14417128,0.31135127,0.58561826,-0.2767846,-0.06673168,0.1191963,0.68233097,1.2208114,-0.25899476,-0.12136595,0.35519406,-0.42465127,-0.57544893,0.171187,-0.44713897,-0.078475,-0.115645535,-0.38337782,-0.3653031,0.14526388,0.08167207,0.07566155,0.01543664,-0.69282746,-0.24145493,0.29713288,-0.19253132,-0.1963087,-0.2182157,0.43961924,0.6760766,-0.32075417,-0.06025451,0.017577795,0.24059494,-0.22293058,-0.6115927,0.14113937,-0.35600752,0.42634946,0.07086308,-0.27632853,-0.057300866,0.17200352,-0.5060845,0.13132882,0.36154556,-0.26602665,0.07307875,-0.28764546,0.08540384,0.868599,-0.30737722,0.030219037,-0.45448667,-0.45206702,-0.85167783,-0.19374143,0.2524835,0.24552324,0.0071445704,-0.54548603,0.004666998,-0.060543753,-0.20660162,0.08632029,-0.5090965,0.3872584,-0.0384905,0.5410805,-0.3468284,-0.9191831,0.14300083,0.13816983,-0.30798632,-0.66974205,0.6304426,-0.13778459,0.8737768,0.15714842,-0.14185329,0.008717695,-0.39490145,0.17892735,-0.48239848,-0.09665966,-0.815232,-0.007852105 +129,0.5913151,-0.15718399,-0.5354785,-0.10436858,-0.38206002,-0.004946629,-0.117645785,0.6725362,0.23369758,-0.4064207,-0.21461795,-0.20940547,0.07891701,0.22817574,-0.2935401,-0.48706678,0.06600399,0.18506426,-0.28361544,0.56250507,-0.45021704,0.16516949,0.17129819,0.39226308,0.28025395,0.06250014,0.203888,0.036003962,-0.1983814,-0.38936612,-0.11422641,0.36620182,-0.41919076,0.092123434,-0.3576613,-0.4798451,-0.076610886,-0.46554774,-0.27186057,-0.80682176,0.30927074,-0.85539323,0.4268066,0.16874097,-0.43712643,0.27842045,0.08322358,0.046886586,-0.24573237,-0.1493296,0.118811555,-0.16361,-0.034090262,-0.21946952,-0.23867017,-0.31250852,-0.7215777,-0.019523537,-0.36896268,0.03875963,-0.4363294,0.23335934,-0.31619588,-0.13790129,-0.15854457,0.47514984,-0.476412,0.014835533,0.10110486,0.04717432,0.32240158,-0.6831888,-0.19271678,-0.17095052,-0.08004544,-0.1671219,-0.30046162,0.23058316,0.35887283,0.4604858,-0.041127797,-0.27298015,-0.442719,-0.00904704,0.08695283,0.28932223,-0.25268883,-0.66750205,-0.17082952,-0.104760066,0.31622174,0.44350657,0.29580525,-0.14801775,-0.13063209,-0.07001677,-0.22083575,0.44362402,0.5101915,-0.3819289,-0.15570368,0.1434877,0.4739652,0.19278048,-0.17661531,-0.045800947,-0.06915603,-0.6561288,-0.1477036,0.08523663,-0.30342236,0.68330395,-0.25045878,0.16019915,0.6198626,-0.1693962,-0.11266533,0.25960657,0.16039737,-0.13406661,-0.4360368,-0.34741777,0.32145154,-0.57969075,0.19110475,-0.25341243,0.78553796,-0.0060305875,-0.8521084,0.25356534,-0.5073102,0.09737036,-0.08587707,0.5564626,0.632965,0.40084967,0.49928647,0.7326572,-0.4030226,-0.037947673,-0.0649442,-0.24594314,0.098990925,-0.2483469,-0.101576895,-0.5104632,-0.017743273,-0.14525665,-0.09134711,0.11480085,0.67234623,-0.56216276,-0.120947234,0.38662058,0.6040401,-0.28330535,-0.19306657,0.9037369,1.0914683,1.1981671,0.059165172,1.0223373,0.14618705,-0.14639282,0.082296945,-0.12650378,-0.6228311,0.28220728,0.37183106,0.07299099,0.026930816,-0.007580175,-0.058299847,0.38223788,-0.48224875,-0.13124654,-0.16502641,0.07005135,0.025524434,-0.15169166,-0.4701051,-0.4484213,-0.050569043,0.17445844,-0.08035879,0.3367939,-0.22727016,0.48157737,0.014440354,1.3909612,-0.0145445345,-0.077151746,0.16462778,0.51116735,0.23728466,-0.06294597,-0.05867495,0.29905722,0.23393328,0.045882706,-0.4245844,0.07579504,-0.19668564,-0.591858,-0.017290263,-0.34098235,-0.18822289,-0.08105873,-0.6825705,-0.17450759,-0.079383664,-0.34846509,0.53512746,-2.5939841,-0.022063542,0.094167955,0.18551676,-0.09544707,-0.4061024,-0.014830065,-0.4586005,0.5095004,0.34209242,0.47905558,-0.7363378,0.3172273,0.5162347,-0.55850106,-0.060684778,-0.7835781,-0.3051736,-0.0987172,0.33696845,0.16876628,-0.124500595,0.11056207,0.06564529,0.7510275,-0.013699434,0.3057685,0.24527882,0.27361667,-0.28422675,0.41315466,0.08733454,0.4117104,-0.18497995,-0.30639592,0.41294083,-0.2602469,0.25650984,-0.048797164,0.09667882,0.5556084,-0.50459915,-1.0112945,-0.65709686,-0.15902151,1.0933543,-0.14777565,-0.4444918,0.31825176,-0.31722298,-0.21070156,-0.043334257,0.5113194,-0.009850685,0.01585466,-0.75809383,-0.0007271806,-0.103204004,0.17060277,-0.007508429,-0.069974236,-0.4346236,0.8915938,-0.101485215,0.41557753,0.4535796,0.17661761,-0.4351507,-0.5493229,-0.004143991,0.9436595,0.53778994,0.10986614,-0.31700078,-0.21065423,-0.3378074,0.030783566,0.14364132,0.5596804,0.66510874,-0.12412796,0.24008362,0.22918914,0.18725558,-0.045594964,-0.2078553,-0.2832785,-0.17761175,0.01291007,0.63126576,0.82548565,-0.09927807,0.3545613,-0.22839098,0.35102418,-0.0872607,-0.50888455,0.41629037,1.0039353,-0.134259,-0.20914431,0.73375076,0.5690227,-0.2416982,0.5890186,-0.61832464,-0.32305497,0.34104165,-0.09063207,-0.45029843,0.17386644,-0.33558255,0.036961447,-0.83897305,0.30702305,-0.3810961,-0.4670246,-0.74408287,-0.21120402,-2.8925936,0.41546422,-0.32849646,-0.1551742,-0.092151806,-0.28589928,0.23703724,-0.7582251,-0.5754984,-0.020837903,0.22562766,0.6551774,-0.045789238,-0.0068119722,-0.23682605,-0.43673566,-0.16287199,0.13554038,0.117511526,0.29255423,-0.19723015,-0.43119892,0.01733659,-0.195733,-0.40917167,-0.14228617,-0.72510046,-0.4680242,-0.22931947,-0.382934,-0.3079422,0.62449634,-0.33636132,0.09544166,-0.101237096,-0.033646878,-0.011419074,0.27917972,0.15177079,0.14869396,-0.100411095,-0.08593979,0.01949112,-0.2365995,0.07655667,0.03951614,0.21126483,0.5397553,-0.15356404,0.24945664,0.56585133,0.72826666,-0.17352526,1.0484849,0.49166,-0.044302765,0.22508939,-0.14131941,-0.32942227,-0.7500451,-0.24647838,-0.06592323,-0.508507,-0.3886552,0.04656783,-0.29120547,-0.8163549,0.6593993,-0.033141874,0.22604321,-0.06542554,0.30817774,0.57713675,-0.24300379,-0.11831471,-0.09804215,-0.12823455,-0.5614738,-0.4040905,-0.7748217,-0.5659779,-0.058011103,1.10131,-0.19505781,0.010339165,0.13485837,-0.07416981,0.01825677,0.16253895,-0.11579719,0.031606667,0.49672553,0.040189438,-0.57479197,0.47258663,0.11505261,-0.26060787,-0.41998816,0.27375826,0.5250329,-0.5845314,0.60427976,0.50257355,0.10670876,-0.16993837,-0.7910227,-0.17838506,-0.08716537,-0.17246428,0.66185445,0.43036583,-0.73833364,0.5281788,0.3922786,-0.23693706,-0.823715,0.6088035,-0.045151852,-0.42688695,-0.14192803,0.33044443,0.10372729,0.019482516,-0.14699337,0.38567993,-0.5469001,0.31065372,0.29834569,0.0071133403,0.13349219,-0.21837778,-0.12001392,-0.8036799,0.1497327,-0.57003886,-0.40742233,0.18282229,-0.0071812826,-0.14779444,0.2927475,0.16196373,0.4365185,-0.30838615,0.22013786,-0.1334753,-0.24143623,0.38146237,0.52981055,0.5288538,-0.34767506,0.64224935,0.030185735,-0.16495846,-0.20674556,0.11728051,0.43581396,-0.08049409,0.5370146,-0.19684838,-0.17122819,0.27565315,0.58513236,0.1973017,0.44132057,-0.09089152,-0.080246,0.2434517,0.09341981,0.398092,-0.13574713,-0.53017366,0.10452973,-0.30720586,0.10121034,0.5258822,-0.081736274,0.24501804,-0.017389575,-0.12710196,0.07260856,0.23381716,-0.029284218,-1.3072308,0.26720804,0.14097077,0.88545495,0.7263257,0.0389695,-0.047214072,0.7173216,-0.37539154,0.1342341,0.48858115,0.22937289,-0.53736496,0.63497424,-0.76643395,0.33911768,-0.16776152,0.021058861,-0.071408056,-0.12644917,0.46416202,0.6435848,-0.2524415,0.11248228,0.07529692,-0.35425168,0.18633531,-0.45758596,0.18865356,-0.49814045,-0.34309682,0.8030527,0.5516978,0.28692588,-0.19756825,-0.0027260084,0.18279535,-0.20772512,0.21803634,0.07870065,0.2402624,-0.12281105,-0.5737226,-0.026745073,0.5324895,-0.1128982,0.18872294,-0.04417863,-0.24308124,0.12886795,-0.10664971,-0.17843345,-0.058875374,-0.6474028,-0.027424676,-0.34219763,-0.33789834,0.52118576,-0.26046196,0.09259768,0.27302858,0.07708415,-0.25036684,0.13247178,0.20930843,0.5789205,0.03579456,0.047759794,-0.1865882,0.3069184,0.085898496,-0.1579038,-0.22239749,-0.19449523,0.093495674,-0.55654466,0.44171014,-0.08692939,-0.24438949,-0.040186584,-0.03714793,0.008368729,0.5767277,-0.035610422,-0.23758069,-0.18833777,-0.035138033,-0.21256344,-0.17953353,0.016009148,0.31607446,0.03798656,-0.054890957,-0.03943036,-0.0817262,-0.01572119,0.43234357,0.04669148,0.41629353,0.3353217,-0.035179242,-0.56756747,0.087864116,0.06911517,0.4952729,-4.17312e-05,-0.12993574,-0.3133408,-0.29612732,-0.31757793,0.033975918,-0.21160272,0.41396013,0.15529732,-0.14355901,1.1257404,0.017565079,1.335636,0.01949505,-0.39727888,0.011129225,0.6084085,-0.12688987,-0.05719234,-0.19795375,1.0486404,0.5272181,-0.11673551,-0.07304867,-0.26879558,0.181696,0.22312097,-0.16972929,-0.25834364,-0.0607448,-0.7012765,-0.052467417,0.14615451,0.3572419,0.25466424,-0.22790012,0.048771944,0.40076855,0.09352521,0.34260765,-0.3753069,-0.11198514,0.30915913,0.34717375,-0.11390791,0.09723795,-0.48147285,0.30028912,-0.5516138,0.074065015,-0.27215368,0.14335069,-0.32586783,-0.38639933,0.27363613,-0.056071043,0.32022947,-0.21785723,-0.2849281,-0.17215036,0.4422918,0.16499011,0.22297923,0.49688175,-0.33108187,0.18320863,0.06986804,0.38659772,1.2297264,-0.34226218,-0.26709116,0.2802962,-0.32408053,-0.65501595,0.4799363,-0.3066366,0.043441452,-0.13048851,-0.24839024,-0.55108356,0.23328498,0.2374246,0.018096328,0.13146813,-0.6481804,0.0026877462,0.32869062,-0.3211203,-0.2287472,-0.28500023,0.22474518,0.50279194,-0.2796753,-0.4102152,0.03246398,0.21793851,-0.21826394,-0.58069867,0.12666109,-0.3461875,0.32402602,0.03391267,-0.41437814,0.14207755,-0.024660131,-0.45306775,-0.03515749,0.24976379,-0.2447202,0.11711038,-0.48150718,0.15282568,1.0015521,-0.12857008,0.13343531,-0.42377317,-0.5948256,-0.8886601,-0.28505886,0.5676749,0.010678347,0.04810453,-0.7124144,-0.040727377,-0.26559705,-0.18404369,-0.124556385,-0.2769938,0.4869353,0.10998916,0.37262765,-0.11421537,-0.62164843,0.30795166,0.10016024,-0.012429872,-0.3830586,0.47313946,0.06279471,0.8400675,0.15529521,0.09112736,0.2490289,-0.5511939,0.13168913,-0.12836471,-0.20908216,-0.51487553,0.008059283 +130,0.48413393,-0.218581,-0.7071578,-0.070760846,-0.41831556,0.09670945,-0.25648674,0.20965737,0.2464792,-0.49668667,-0.14632176,-0.15610686,-0.009203737,0.405095,-0.20121533,-0.74567175,0.06024608,0.2581248,-0.61852187,0.17417264,-0.5877182,0.5147875,0.20984812,0.5162899,0.013713981,0.0731194,0.18241316,-0.0704752,-0.040216547,-0.10328424,-0.29676548,0.09510705,-0.5997314,0.22876406,-0.18696177,-0.52508974,0.11399513,-0.40470684,-0.3679792,-0.7379305,0.4630116,-0.8699203,0.64826936,-0.12735309,-0.42187676,-0.0858122,-0.017861864,0.33387208,-0.54612887,0.30020446,0.10848817,-0.33309087,-0.06123962,-0.18385702,-0.37141526,-0.29529262,-0.60982466,-0.010440049,-0.5624949,0.18179916,-0.21318053,0.32463288,-0.33695304,0.16346817,-0.20164575,0.17198618,-0.48856363,0.012319803,0.25161722,-0.12321228,-0.054599553,-0.55860907,-0.1828782,-0.17698209,0.28420162,-0.024657378,-0.23794818,0.18251128,0.18087101,0.6154528,0.17942564,-0.25825778,-0.31297174,-0.030862898,-0.22698523,0.62374884,-0.025567004,-0.17434709,-0.34085155,-0.11751477,0.50917774,0.30680266,-0.021846622,-0.2045942,0.088430576,-0.33608508,-0.2571182,0.40765557,0.5531866,-0.41977656,-0.09320571,0.37878636,0.44014192,0.10235455,-0.08415987,0.2883589,0.019130656,-0.6316338,-0.3035185,0.10355037,-0.003007561,0.7566244,-0.2872642,0.38941583,0.57826,-0.22187786,-0.06685009,-0.05344406,0.027255714,-0.13357809,-0.17264758,-0.27961856,0.28226486,-0.44798228,-0.05923338,-0.28869197,0.85961944,0.10541105,-0.74955374,0.3252577,-0.54370004,0.16541593,-0.04750067,0.7453758,0.6416191,0.53590137,0.21650036,0.9189358,-0.5784251,0.14410089,0.04538493,-0.30669215,-0.0017070895,0.0070513487,-0.08467257,-0.3718722,0.05980585,-0.16604495,-0.13947326,0.13765532,0.68786174,-0.36921665,-0.26977757,0.08148811,0.69110864,-0.48337913,-0.09048459,1.0221757,0.96864605,1.2218605,-0.036971275,1.4468621,0.45582315,-0.090853564,-0.43208823,-0.051769387,-0.6431016,0.1614141,0.21200784,0.21560912,0.34323943,0.30108222,-0.14662297,0.50972134,-0.2998716,-0.23041016,-0.19853242,0.1279362,-0.17071684,0.08644251,-0.57440066,-0.3044592,0.07267796,0.11352997,0.10209575,0.3150718,-0.20322709,0.5660158,-0.012933965,1.2082106,-0.048382055,0.13755299,0.0500202,0.39556193,0.22168124,-0.20381482,-0.054365586,0.099767245,0.47211123,-0.08748484,-0.7278817,-0.19300203,-0.2654318,-0.30894077,-0.30119526,-0.24136786,-0.044127252,-0.26241246,-0.3830829,-0.18523137,0.028532693,-0.32179543,0.41018105,-2.0950046,-0.28140703,-0.069078036,0.40475306,-0.18092911,-0.31725746,-0.30639896,-0.44469595,0.3754367,0.3857861,0.50719196,-0.63526326,0.56865066,0.47637978,-0.33038345,-0.09250646,-0.7781324,-0.019227305,-0.12909295,0.1709259,-0.044140633,-0.23341715,-0.24012214,0.017059753,0.66461825,0.026215231,0.062040687,0.12320125,0.6345172,0.07547494,0.6130461,0.17943086,0.6620372,-0.4155682,-0.19809186,0.34111428,-0.5836023,0.32949042,-0.16055238,0.08049228,0.52622414,-0.7626949,-0.88000137,-0.62296486,-0.18514393,1.2776109,-0.35622564,-0.42736506,0.23099904,-0.0960978,-0.28762996,-0.03718431,0.51165056,-0.23171942,-0.086442865,-0.60240096,-0.17757761,0.013130303,0.35065684,-0.09157956,-0.008190681,-0.41413522,0.68755054,-0.2729927,0.41781756,0.51610714,0.2793087,-0.07511213,-0.5133377,-0.04205243,0.74695843,0.28261587,0.19565631,-0.38061717,-0.20110218,-0.070493154,-0.07231774,0.10540786,0.5642914,0.7293148,-0.06729745,0.15610076,0.5484876,0.03278191,0.07527108,-0.084680796,-0.40470698,-0.32490918,0.0067237415,0.6790193,0.78112936,0.00049623224,0.31895956,-0.09194204,0.30287895,-0.17818125,-0.5097012,0.5358601,0.80432916,-0.15394552,-0.25927174,0.69935536,0.41453925,-0.47406697,0.4684439,-0.6374335,-0.36691606,0.39269444,-0.01573277,-0.4536287,0.17109735,-0.33929524,0.033987373,-1.0305452,0.2979358,-0.067006804,-0.6375626,-0.6001275,-0.23261511,-3.269101,0.349002,-0.37898865,0.06372583,-0.034185987,-0.36704293,0.13540235,-0.56434745,-0.6277662,0.18649739,0.11665547,0.4000229,-0.14403374,0.3114804,-0.37905538,-0.33640262,-0.3455108,0.088618256,0.29885367,0.24152885,0.06978363,-0.46156022,0.15388858,-0.24541157,-0.4314073,-0.026410341,-0.7352926,-0.398204,-0.09963577,-0.6006637,-0.23548527,0.8278977,-0.2793854,-0.11304451,-0.38818884,0.07965894,-0.1966237,0.24664895,-0.023695862,0.27383366,0.037086915,-0.19920664,-0.16554427,-0.20810276,0.18297608,0.030909324,0.085799344,0.19933538,-0.3072347,-0.05441512,0.4314845,0.6834573,-0.21077919,0.72279686,0.25115556,-0.011135233,0.14133851,-0.035942752,-0.4332842,-0.6274244,-0.32703364,-0.12052858,-0.61466295,-0.41399035,0.039602507,-0.4338232,-0.90356207,0.6295503,0.047900807,0.041418064,-0.026369134,0.40743533,0.47580895,-0.058427304,0.051411763,-0.028579958,-0.26696837,-0.35255995,-0.47686148,-0.68949455,-0.5580165,0.006506195,1.4765056,-0.2245522,-0.03668417,0.16820844,-0.2785938,0.10295829,0.2899984,0.10026578,0.11995556,0.43521723,-0.1647315,-0.6493548,0.32330927,-0.2672977,-0.14958231,-0.6515356,0.037934005,0.90524644,-0.7477171,0.6209018,0.54683375,0.14982599,0.061093282,-0.7726452,-0.34206772,-0.076093554,-0.0883655,0.6420502,0.22517705,-0.6524646,0.54963803,0.19273306,-0.24402086,-0.67783386,0.379614,-0.11375689,-0.45324397,0.15048257,0.47912765,0.012403806,-0.07438409,-0.27712628,0.111726575,-0.38464484,0.4093883,0.25991356,-0.08324336,0.2667935,-0.26563942,-0.26373208,-0.60384905,-0.15537989,-0.5129714,-0.01999706,0.079921596,-0.025750788,-0.016754806,-0.035492998,0.080081284,0.579894,-0.37879634,0.0657107,-0.25805867,-0.18650131,0.32615668,0.44743252,0.4282167,-0.6018594,0.6100742,0.13202311,-0.08685359,-0.070195146,0.24156076,0.4728601,0.07857267,0.4393022,-0.19339925,-0.06829064,0.13506687,0.6401209,0.19044395,0.47156882,0.34325644,-0.19280572,0.44083798,0.33386782,0.21040432,-0.0941895,-0.22991697,0.04383868,-0.15499483,0.13602698,0.37726438,0.16679187,0.5207748,-0.19069825,-0.06559508,0.14989607,0.113926284,-0.11220463,-1.0308293,0.14169301,0.11236161,0.6665902,0.37141857,0.0926001,-0.054688614,0.593924,-0.30614612,-0.12643875,0.27799392,0.18441708,-0.26938188,0.596845,-0.44099888,0.46991566,-0.3189924,-0.007609648,0.1353462,0.26055387,0.5275923,0.85054755,-0.023363715,0.049614727,0.013596616,-0.08909149,-0.1087259,-0.41572404,0.13954823,-0.5412033,-0.21758509,0.7157309,0.3005146,0.42139658,-0.34437594,-0.13314082,0.09936929,-0.16428845,0.042154778,0.035374347,-0.07731573,-0.1631035,-0.74174184,-0.16982067,0.5154249,0.14668529,0.20619315,0.124019206,-0.3340191,0.39018723,-0.12351953,-0.047748756,0.029733775,-0.77272326,-0.12546746,-0.456746,-0.41155812,0.09802708,-0.27787378,0.33651745,0.2959006,-0.02650703,-0.27532268,0.21505181,0.025818931,0.9848426,0.12065265,-0.09090086,-0.3811033,0.16364141,0.45778242,-0.3440306,0.028351525,-0.19503136,0.188339,-0.5021084,0.41383934,-0.09563557,-0.15025651,0.13312599,-0.05260623,-0.06779932,0.51079154,-0.1924054,0.013746209,0.3857576,0.05261439,-0.39016843,-0.10771153,-0.50154805,0.19851243,0.07125395,0.005317653,0.12444302,-0.13065735,0.011420873,0.5132708,0.16454142,0.32481262,0.29787078,0.027405528,-0.4352822,-0.043627977,-0.20572019,0.5569415,0.016749732,-0.26443878,-0.41344306,-0.539856,-0.08062142,0.41580728,-0.13368218,0.08528001,0.017433017,-0.27618197,1.0273534,0.32498607,1.1183141,-0.04246067,-0.31945452,0.08716229,0.69995624,0.1351208,0.12403896,-0.24009842,1.218417,0.64336175,-0.3074673,-0.257462,-0.42639843,-0.19515993,0.03674403,-0.37776694,-0.3511939,-0.16039114,-0.5499606,-0.09945258,0.22448057,0.30049738,0.1832165,-0.093846776,0.32431278,0.3739375,0.12981527,0.44701505,-0.62558967,-0.13234796,0.3756411,0.25194862,-0.026063472,0.14424837,-0.3744409,0.36745343,-0.70956117,0.15912168,-0.37676108,0.17975332,-0.017287448,-0.40839753,0.26733455,-0.038115785,0.2725104,-0.49250785,-0.18400602,-0.28989774,0.6701817,0.3642976,0.32001612,0.79952437,-0.32118908,-0.1430525,0.032299943,0.5283474,1.3092929,-0.20180011,-0.0026293893,0.3520927,-0.32330444,-0.56926566,0.17504983,-0.45336494,-0.10202792,-0.1681272,-0.3700266,-0.4899666,0.27373627,0.10704237,0.072310485,0.16750962,-0.5063587,-0.0033293988,0.4551835,-0.18086128,-0.15559712,-0.34760913,0.3746624,0.65600103,-0.15562014,-0.45489332,-0.049279302,0.3957093,-0.32226714,-0.6701948,0.08966172,-0.446673,0.42380455,0.07378062,-0.19176285,-0.13600759,0.15088308,-0.46387073,0.07473144,0.19151556,-0.2268997,0.1612508,-0.2838603,-0.050151143,0.947807,-0.0009513398,0.26556817,-0.75093025,-0.458048,-1.1309338,-0.20206942,0.37210777,0.3050962,0.031563904,-0.68418676,-0.056442548,-0.15693416,-0.15722801,0.028004626,-0.35072684,0.41387495,0.16191487,0.40804207,-0.09924232,-0.9460979,0.17041461,-0.006785234,-0.66471547,-0.4505415,0.6137869,-0.12469884,0.6933611,0.1473372,0.10932913,0.095462024,-0.55086917,0.39108256,-0.28842768,-0.26979628,-0.80444413,-0.1505021 +131,0.57899964,-0.254408,-0.4403815,-0.22795591,-0.3783954,0.04255496,-0.31950843,0.39829364,0.18490626,-0.34953645,-0.16200699,-0.008658939,0.15420206,0.19378595,-0.056081023,-0.56152993,-0.23184414,0.11183705,-0.6711055,0.50216794,-0.6990206,0.3161582,0.11009004,0.38638097,0.1590608,0.3823725,0.21015568,-0.044618152,-0.11112021,-0.17100035,0.11888923,0.16523576,-0.77726746,0.12694976,-0.12671407,-0.28009805,-0.03123595,-0.47414044,-0.19361718,-0.5887331,0.14375782,-0.96667325,0.60218567,0.048508443,-0.2949332,-0.14738728,0.085678644,0.44020215,-0.35488778,0.2141665,0.25461248,-0.1913393,-0.19775018,-0.42617315,0.10406387,-0.30556822,-0.3616052,-0.11800213,-0.41226998,-0.30652878,-0.082844146,0.21954094,-0.18779445,0.12842825,-0.20726004,0.34638056,-0.3860688,-0.06824777,0.29224616,-0.07884194,0.11465978,-0.6191854,-0.18565607,-0.137548,0.33253005,-0.08810889,-0.31599835,0.3564643,0.19967887,0.5105377,0.2191156,-0.20903869,-0.13482735,-0.17039753,0.31691772,0.34571183,-0.17961879,-0.3503844,-0.24305204,-0.09980202,0.35883063,0.31037363,0.052492835,-0.4014289,0.11379107,-0.09175657,-0.28972623,0.37079984,0.40790814,-0.1365111,-0.26701078,0.08525119,0.5055639,0.22802635,-0.21103285,0.13583048,0.06330435,-0.5244586,-0.10167038,0.22628795,-0.07982979,0.40128088,-0.11138819,0.021964049,0.80992734,-0.14852224,0.12620941,-0.03384896,-0.084068015,-0.010669852,-0.47101894,-0.42387897,0.19718958,-0.5927778,0.013033446,-0.35891977,0.7451449,0.069563486,-0.66211694,0.31801832,-0.6391608,0.069061905,-0.03224641,0.5594493,0.6315393,0.2695457,0.26225317,0.67777944,-0.23355995,0.22781123,-0.08445003,-0.21827678,0.021231882,-0.23547453,0.23387127,-0.40306348,0.08784451,-0.2583405,-0.10293589,0.036052298,0.320062,-0.5007554,-0.062111076,0.2123811,0.5736841,-0.40738228,0.20565687,0.689024,1.2597691,1.0171098,0.20912078,1.3991708,0.40371668,-0.21060754,0.096163176,-0.25520265,-0.76948243,0.13554873,0.29981098,-0.14172462,0.33402213,-0.059407696,-0.035390116,0.3101996,-0.59648806,0.11515226,-0.031407904,0.4835388,0.0606184,0.055318642,-0.5093313,-0.18078989,0.11229359,-0.032187536,-0.0708785,0.16067924,-0.28043354,0.25975075,-0.005991407,1.2155054,-0.16894746,0.04439138,0.21490057,0.38276485,0.25514728,-0.23328279,-0.012860759,0.5103745,0.39031056,-0.13181238,-0.6146537,0.24664256,-0.16810416,-0.37753218,-0.19026984,-0.3261853,0.048816662,0.042582892,-0.39953068,-0.25876012,0.029774714,-0.22979045,0.42745012,-2.6819506,-0.2823926,-0.201378,0.34295234,-0.3077052,-0.34619623,-0.05532264,-0.45458123,0.25387323,0.15186581,0.44895527,-0.5394839,0.5188524,0.5721165,-0.45446682,-0.035610374,-0.732415,-0.2736268,-0.10098602,0.35075074,-0.043602277,-0.045202184,-0.22715114,0.19423126,0.6860623,0.021384196,0.18376619,0.47202176,0.2873051,0.14387533,0.71545565,0.14847909,0.4627666,-0.33023605,-0.2539527,0.34668007,-0.36089933,0.13071102,0.06965713,0.008406495,0.6632531,-0.5617074,-0.8078625,-0.6883533,-0.34081644,0.87306947,-0.32882956,-0.47007218,0.21484539,-0.25427046,-0.14560753,0.06866274,0.5354078,-0.052860137,0.08333394,-0.89651453,0.04687023,-0.06981392,0.25832084,0.10616123,0.01307499,-0.4159554,0.7886269,-0.17018507,0.5694004,0.3632376,0.2045259,-0.05879058,-0.302513,0.12393175,0.9568915,0.3354732,0.02273623,-0.16062692,-0.23485303,-0.09757422,-0.11694338,0.14795205,0.5895472,0.7698901,-0.05121986,0.20841798,0.23175332,-0.19414939,0.040840242,-0.14962603,-0.31000417,-0.06521168,0.043043472,0.542973,0.51583284,-0.12876816,0.4857705,-0.20394543,0.39442435,-0.12887014,-0.48985198,0.4403375,0.6110643,-0.056797322,-0.13264194,0.60293216,0.5322578,-0.362482,0.54182166,-0.64685947,-0.08928129,0.61615264,-0.14385039,-0.32893693,0.322579,-0.32135984,0.26379007,-0.8553564,0.4415264,-0.48372942,-0.39602703,-0.6273128,-0.34080097,-2.338206,0.3045067,-0.14740616,-0.15535322,-0.2168496,-0.11639986,0.38402602,-0.6525996,-0.58580714,0.20475508,0.09637358,0.5022421,0.014323316,-0.08302485,-0.16014916,-0.20856546,-0.19352403,0.23229013,0.1535415,0.2253091,-0.13699366,-0.37549305,-0.0541196,0.0076341727,-0.423946,0.163296,-0.5208203,-0.5435398,-0.038595524,-0.501453,-0.2994631,0.59934264,-0.35217813,0.007893983,-0.16963257,0.044810828,-0.23353066,0.24560528,0.12410058,0.338605,0.15659098,0.14257279,-0.029962642,-0.35301018,0.28711167,0.11556446,0.21396665,0.013726806,-0.022180812,0.13687126,0.30749118,0.66186744,-0.1178336,0.9119083,0.35145664,-0.11803723,0.16256768,-0.39272907,-0.3264485,-0.46688417,-0.31298593,-0.16221632,-0.35832492,-0.39875087,-0.02310938,-0.28510702,-0.7385401,0.6499279,-0.07614059,0.110742114,0.005328531,0.2688464,0.21385369,-0.06708182,-0.03154514,-0.16158618,-0.053972166,-0.58612984,-0.31176433,-0.60176146,-0.3655824,-0.03286668,0.9889934,-0.23575255,0.07608021,0.048940584,-0.4465313,0.121724494,0.028595822,0.028801512,0.31916744,0.6190871,0.06613911,-0.57615674,0.29404035,0.06271794,-0.22637607,-0.58687913,0.107535295,0.81053704,-0.77218884,0.70437986,0.37296453,0.116115205,-0.06518614,-0.57299614,-0.28855744,0.14003038,-0.3108609,0.53491604,0.13095835,-0.66284156,0.47557005,0.38613757,-0.3520648,-0.7141155,0.37931588,-0.08378104,-0.3437701,-0.034400955,0.41272274,-0.08262069,-0.011688403,-0.18561116,0.3527085,-0.27726704,0.27012596,0.27612197,-0.15673308,0.05405027,-0.14035584,-0.21794628,-0.64109313,0.060477886,-0.45381483,-0.3213104,0.28956464,-0.02649643,-0.008805931,0.2601254,0.25725392,0.4078456,-0.25362608,0.15964633,-0.15292495,-0.45732716,0.28965092,0.42958647,0.34428826,-0.28695068,0.55621994,0.06352497,-0.23656633,-0.079448156,-0.02749416,0.36501044,-0.11607038,0.28992593,-0.27150795,-0.07915301,0.39646772,0.74713504,0.083607644,0.59063566,0.05556265,-0.011648679,0.3868889,0.16519406,0.070648655,0.04780094,-0.38600424,-0.0020633459,0.1897234,0.3146507,0.27561206,0.25461343,0.4144989,-0.05426074,-0.21058944,0.048057146,0.2676421,-0.07063363,-1.3550745,0.2916285,0.09264626,0.7101721,0.5931815,0.028650722,-0.11710841,0.4688195,-0.26021922,-0.010387715,0.2458507,0.05449655,-0.3760257,0.6004308,-0.4575938,0.29326648,-0.2516827,-0.017719146,0.045426447,-0.01698055,0.41765362,0.75343144,-0.22872922,0.002344334,0.0028070014,-0.09868849,-0.037642922,-0.3607407,0.019241165,-0.37351736,-0.40564558,0.8502982,0.3959033,0.41892752,-0.27712488,-0.03421002,0.109681636,-0.13058443,0.29004416,-0.059638355,-0.10968589,0.3655087,-0.5424406,-0.16745465,0.5006201,-0.1734806,0.031137427,-0.17536478,-0.27540305,0.061943196,-0.079284236,0.03527857,-0.019389426,-0.7344459,-0.09905257,-0.47550705,-0.40033397,0.32528883,-0.22960402,-0.014163422,0.15232088,0.03200487,-0.051548276,0.3532411,0.23344591,0.8310128,0.017187648,-0.28999418,-0.18969245,0.041598815,0.28093445,-0.19752893,0.19050385,-0.35492045,0.07972837,-0.7787115,0.58997524,-0.086700775,-0.43878275,0.25506353,-0.21807799,-0.09773424,0.44116828,-0.23520054,-0.17144366,0.15669769,-0.13438277,-0.31967866,-0.09040513,-0.24981858,0.17867626,0.2292082,0.0714675,-0.09706845,-0.23751426,-0.07794224,0.6005488,0.13594714,0.5799951,0.41162014,0.0061870576,-0.19246665,0.14028835,0.10827398,0.5110479,0.023756424,-0.052607495,-0.3336587,-0.3496152,-0.2072321,0.37274355,-0.11597809,0.25197697,-0.022171088,-0.3857834,1.0083978,-0.0051424345,1.0973632,-0.032650627,-0.4118077,0.112415716,0.5127893,-0.1416486,0.118638925,-0.4291207,0.83842653,0.52665544,-0.09017714,-0.036081478,-0.4890052,-0.16827805,0.27676165,-0.28539672,-0.013417474,-0.16632767,-0.5903574,-0.38965544,0.27998143,0.32817534,0.0022369584,-0.0043168487,0.21931152,0.11909935,0.10559769,0.37829238,-0.5739809,-0.032765977,0.08241025,0.20167603,-0.009172773,0.16881593,-0.4424071,0.33318824,-0.7196064,0.18462922,-0.425908,0.025114765,0.0013546825,-0.22152323,-0.010768275,0.013308684,0.32415974,-0.49498403,-0.4173644,-0.12069213,0.5735358,-0.097192496,0.17710397,0.5960301,-0.27915424,0.049100243,0.19810744,0.5051874,1.2561042,-0.29380828,0.04559292,0.15732011,-0.40333414,-0.5684893,0.41000348,-0.20634086,-0.020835916,-0.097288944,-0.43984905,-0.4877461,0.22205232,0.12375608,-0.11547132,-0.06312029,-0.46106845,-0.22977348,0.49617043,-0.29651177,-0.1885293,-0.13333702,0.19884844,0.7227151,-0.22796759,-0.3224972,-0.049728747,0.27141267,-0.39686865,-0.37514308,-0.17674485,-0.36977735,0.36364773,0.14928405,-0.1934019,-0.06838539,0.1650811,-0.44867584,-0.02601641,0.2285586,-0.28915182,-0.013687539,-0.10586984,-0.11149363,0.8824069,-0.084177844,-0.17137317,-0.6417104,-0.6274863,-0.90846163,-0.35124537,0.3527725,0.14022613,0.104562216,-0.47303772,0.1643569,-0.09001476,-0.030803705,0.19303522,-0.47541034,0.37270057,0.24713853,0.5885744,-0.27748907,-0.84765804,0.1322795,0.02889625,-0.119750835,-0.5961125,0.60940194,0.03254099,0.7737778,-0.005040602,-0.13734695,-0.15764444,-0.4249217,0.19873527,-0.29601723,-0.10191993,-0.8163555,0.045555606 +132,0.32711378,-0.17392467,-0.39665398,-0.06337657,-0.022967217,-0.0823921,-0.080522075,0.6818936,0.12855601,-0.365204,-0.22322091,-0.10753683,-0.024967315,0.2913354,-0.1171991,-0.46804827,-0.12324501,0.18740933,-0.25733572,0.53616637,-0.3975957,0.046307508,-0.10447914,0.49635184,0.19522582,0.20617382,0.14689437,-0.052748088,-0.13743801,-0.024471892,-0.15065314,0.47575113,-0.4225221,0.06534168,-0.0887162,-0.3296704,-0.07992356,-0.37220642,-0.26867795,-0.72419035,0.3156622,-0.64850587,0.38129526,0.27578962,-0.39588422,0.3680659,-0.06664635,0.10681175,-0.43064055,-0.13152571,0.17164883,-0.0075922334,0.0057283547,-0.1676585,0.013293505,-0.24461347,-0.57550454,0.04298938,-0.3254481,0.052426897,-0.20144342,0.18836273,-0.3148196,-0.07770044,-0.057382066,0.54012454,-0.4797775,-0.07273115,0.1490758,-0.12007475,0.36754557,-0.6671927,-0.2020606,-0.18220828,0.11719482,-0.05657425,-0.18152533,0.21705952,0.17302679,0.46861583,-0.09357634,-0.119748004,-0.44863245,0.13687237,0.04783862,0.3703182,-0.2819055,-0.59798443,-0.053046223,-0.07162498,0.041790012,0.095981486,0.08773945,-0.16419592,-0.10030774,0.034139577,-0.15390897,0.118758515,0.4287155,-0.28626382,-0.25274703,0.34262922,0.4701618,0.15674815,-0.05517197,-0.21467453,-0.0056572417,-0.5581345,-0.11908933,-0.0016923822,-0.34862936,0.5612508,-0.1199915,0.22604987,0.5763457,-0.0430927,0.046143215,-0.018583683,0.044178393,-0.076463185,-0.44138405,-0.31269184,0.28861573,-0.19945306,0.28131902,-0.11867278,0.6905776,0.09513993,-0.78517884,0.40244707,-0.4267155,0.10483106,-0.07535673,0.5841373,0.6451636,0.35916188,0.4885036,0.72923726,-0.4628978,-0.06888067,-0.09997852,-0.22682701,0.14078936,-0.0043121898,-0.060921833,-0.5226306,-0.07708346,0.11383263,-0.092786826,0.1392375,0.35421297,-0.55604154,0.04734983,0.38715807,0.6654495,-0.28244165,-0.052022345,0.51152796,1.0679834,0.97134775,-0.009440729,0.9185098,0.17309141,-0.19322388,0.469155,-0.39136404,-0.6969987,0.2528478,0.44831997,-0.031648435,0.19026603,0.151411,-0.07622289,0.5234739,-0.3948632,0.092978664,-0.14173065,0.12474617,0.06980796,-0.024848457,-0.5070898,-0.35761255,-0.15152022,0.013026506,-0.045206625,0.18444633,-0.28984225,0.27606913,-0.04908891,1.7215947,-0.0866576,0.16367036,0.109804735,0.47568128,0.082873195,-0.12733462,-0.12354253,0.51988226,0.28869188,0.09626507,-0.6105935,0.21386287,-0.1931474,-0.56201065,-0.0888389,-0.23672508,0.0076416456,0.17001368,-0.43825692,-0.11041013,-0.09455324,-0.40319154,0.37160218,-2.8885167,-0.105035305,-0.009443915,0.2976751,-0.31752104,-0.38964087,-0.13862178,-0.41344118,0.4264929,0.4741632,0.43628687,-0.6211101,0.19964185,0.26819414,-0.45020336,-0.13195711,-0.5734721,-0.14381695,-0.072847895,0.25215024,-0.033102386,-0.034292176,-0.00662446,0.11308781,0.55416495,0.04748633,0.119856946,0.25109607,0.17140988,0.03700115,0.2579581,-0.03215107,0.42488807,-0.31239054,-0.22915928,0.23792316,-0.39451092,0.2649512,-0.1428929,0.20012997,0.41862455,-0.43168223,-0.9276559,-0.5777048,-0.3029919,1.2925632,-0.24907805,-0.33302608,0.32421336,-0.26823604,-0.09285518,-0.12350584,0.5283628,-0.14416388,-0.100618415,-0.8735736,0.120594434,-0.11435437,0.30866382,0.068708666,-0.09668606,-0.47633055,0.64418834,0.014390189,0.49777997,0.4337705,0.06676899,-0.22403596,-0.4582496,-0.021025509,0.7261642,0.30612433,0.10992824,-0.12655042,-0.15198226,-0.26545697,0.15125081,0.119184256,0.3563638,0.6454235,-0.048080884,0.13611132,0.21166667,0.080347404,-0.006690656,-0.09486871,-0.2394212,-0.11232763,0.18109272,0.52978766,0.6763381,-0.2971871,0.2329413,-0.058173116,0.3481441,-0.14406385,-0.32271004,0.4652535,0.9427127,-0.122056976,-0.13064864,0.7638845,0.5653552,-0.3512886,0.44971532,-0.6252696,-0.29260266,0.41137618,-0.17201084,-0.37103528,0.06696061,-0.31908238,0.11682867,-0.82367295,0.13700186,-0.27199286,-0.2893826,-0.7139464,-0.10751653,-3.500875,0.1615693,-0.3161344,-0.31965506,-0.04601949,-0.08639022,0.31018275,-0.760947,-0.539544,0.18414702,0.189462,0.5385622,0.017594922,-0.026682194,-0.238808,-0.26191598,-0.2018206,0.16325155,0.12058561,0.28345415,0.14714782,-0.526064,0.009197803,-0.14181183,-0.36088568,0.010954728,-0.57023185,-0.36157873,-0.2213454,-0.64878887,-0.26681128,0.5329321,-0.35247165,0.07199521,-0.1981047,-0.055389825,-0.077637635,0.34727967,0.046915695,0.18612409,-0.08857724,-0.035477284,-0.023438595,-0.22340709,0.17151679,0.08530162,0.22878239,0.3968301,-0.12444555,0.17287718,0.6054812,0.65829146,-0.19432321,0.8212275,0.68323106,-0.079952136,0.20975596,-0.25228184,-0.09611817,-0.55865884,-0.39949563,-0.035355933,-0.3752643,-0.44209436,0.065635614,-0.38365173,-0.88527447,0.5960569,-0.20135593,0.20563027,0.124749266,0.07854418,0.53947634,-0.20514724,0.07020247,-0.04963339,-0.05261163,-0.51728827,-0.29311386,-0.5878041,-0.40318587,0.10281877,0.9412355,-0.19855666,0.09581336,0.110326365,-0.18812226,-0.17180267,0.053737197,-0.07281344,0.2427462,0.32680342,0.047747757,-0.56172156,0.4030883,0.13290198,-0.110425666,-0.45870593,0.20859337,0.46843666,-0.6679193,0.64809203,0.35070947,0.023159733,-0.13082808,-0.69354725,-0.37295106,-0.14573184,-0.14437045,0.46709853,0.2824093,-0.72377676,0.36124384,0.30957252,-0.28510985,-0.7984124,0.35374004,-0.17841588,-0.40686366,-0.102171786,0.3053634,-0.11890567,0.09564531,-0.15247813,0.21456553,-0.3361136,0.19296342,0.2870629,-0.075335704,0.46857882,-0.24024035,0.13816951,-0.7334765,0.034623478,-0.55306995,-0.260894,0.3232447,0.17572409,-0.03596107,0.18379593,0.075634114,0.3982592,-0.16411725,0.07368925,0.08842276,-0.1954486,0.31056023,0.5091189,0.53896517,-0.42545033,0.5731585,0.004047848,-0.1180381,-0.36720437,-0.0038494056,0.39678267,-0.021356689,0.42571294,-0.23746252,-0.28160614,0.3233959,0.6698674,0.18934529,0.4387441,-0.09603623,-0.013808585,0.3324168,0.0151894,0.1343593,0.0062383963,-0.5129615,0.06631636,-0.28676513,0.19596127,0.39322668,0.06973374,0.30039918,-0.0581211,-0.18224971,0.10523547,0.25702253,0.048436258,-0.89534307,0.45587948,0.05351333,0.6747144,0.69747853,0.0039367126,-0.06673125,0.71748596,-0.22383785,0.07360611,0.4302247,0.0046981666,-0.6240327,0.64214855,-0.72805655,0.3511198,-0.1294038,-0.003010049,0.007326268,-0.07376849,0.37446007,0.57103497,-0.11873775,0.008026387,0.0199627,-0.2109734,0.09310805,-0.33113104,0.1722864,-0.5582174,-0.29135057,0.5620356,0.62070876,0.34021097,-0.16494091,-0.05724609,0.14429247,-0.11730746,0.06509157,-0.025480257,0.10730422,0.05562854,-0.7433379,-0.1484508,0.5254828,-0.059540134,0.13786647,-0.08940327,-0.30891138,0.121587865,-0.21101853,-0.2648427,-0.044031627,-0.54170114,-0.00203714,-0.24379799,-0.3042584,0.5924846,-0.19418576,0.32994652,0.08404394,0.11652303,-0.28300026,0.20132509,0.035178144,0.74891573,0.03394198,-0.007024641,-0.32919678,0.28301635,0.12595105,-0.13096736,-0.13623632,-0.34583002,-0.095166974,-0.48318952,0.43794447,0.101174966,-0.261975,0.0067620734,-0.08489083,-0.03472757,0.5917559,-0.026865479,-0.19538638,-0.21825865,-0.23817152,-0.3407645,-0.12085071,-0.1219573,0.35584894,0.08435486,0.12728709,-0.10344003,-0.077163056,-0.068558894,0.5342194,0.11704523,0.20183039,0.2635168,0.018756894,-0.3352378,-0.14003989,0.020036189,0.54487103,0.083696894,-0.1661224,-0.1971365,-0.4056118,-0.4176349,-0.046436694,-0.21316883,0.38031515,0.091827504,-0.14808382,0.7319473,0.15328604,1.1978368,-0.0055435346,-0.3656999,0.02196874,0.42476332,-0.012782679,-0.058924872,-0.38606152,0.9000364,0.507248,-0.09513725,-0.16103251,-0.26124072,-0.08268985,0.2137723,-0.123095356,-0.16433297,-0.07042035,-0.72369534,-0.24096102,0.20509489,0.28091604,0.21510966,-0.045379255,0.05011032,0.09531763,0.06486665,0.3192198,-0.23172766,-0.15482315,0.41006958,0.2624828,0.03408494,0.12946644,-0.32493263,0.46057084,-0.52688634,0.046030097,-0.37619516,0.07242933,-0.35234758,-0.39699873,0.2115995,0.103399,0.42080328,-0.20175608,-0.29717058,-0.18835041,0.561058,0.13293853,0.11462018,0.5464144,-0.21954629,0.049370255,-0.011374488,0.39410707,0.94314754,-0.35709718,-0.036582466,0.28946322,-0.21016544,-0.7218927,0.40456903,-0.21947476,0.030081011,-0.06562539,-0.27463955,-0.55581385,0.26691803,0.17673443,-0.14434741,0.09119542,-0.5432385,-0.16481683,0.18644656,-0.2599524,-0.178534,-0.25071508,0.17615707,0.609678,-0.35805324,-0.4652982,0.12020057,0.3028691,-0.18149455,-0.5181048,-0.002256595,-0.4389658,0.32676542,0.1487363,-0.38735977,-0.03370919,0.049832966,-0.4071562,0.05053871,0.12049459,-0.2756161,0.12069476,-0.44574034,0.0028620316,1.0356971,-0.039962392,0.1906566,-0.46058705,-0.39644077,-0.95413387,-0.28848872,0.7812197,0.046834502,0.05997541,-0.5682826,0.15589394,-0.13662194,-0.08791399,-0.22609879,-0.23382336,0.42924166,0.15906122,0.4206669,-0.06626218,-0.5470059,0.13700995,0.13373119,0.090536825,-0.49911243,0.39363,-0.018372642,1.0393176,0.0037102653,0.08701752,0.22180238,-0.41845042,-0.09372977,-0.27513325,-0.31525964,-0.57291895,0.03602106 +133,0.4186271,0.010670464,-0.51006985,-0.22406048,-0.37000704,-0.056813456,-0.2525877,0.31046587,0.24254204,0.12576427,-0.13622202,0.08323643,0.07349345,0.33430722,-0.09680704,-0.59982747,0.011824086,0.10698166,-0.8916646,0.5344527,-0.44673258,0.3687223,0.13556369,0.389164,0.120763876,0.35308826,0.25094727,0.014859096,-0.0050669513,-0.27304015,-0.20225868,0.16188209,-0.68525094,-0.048426572,-0.2128267,-0.34480304,0.045610547,-0.5782869,-0.12505665,-0.8165886,0.006685199,-0.78106755,0.4980536,-0.25546944,-0.22394636,-0.0020793756,0.38370374,0.4083026,-0.15411045,-0.17426355,0.26539814,-0.23153254,-0.12962207,-0.037757874,0.14185396,-0.4406966,-0.34450155,-0.11058629,-0.6630648,-0.4648317,-0.1219491,0.22859357,-0.42050323,0.07827627,-0.16788119,0.5032734,-0.45431295,0.0006184697,0.19717915,-0.3724797,0.23247099,-0.6001738,0.048332993,-0.017012913,0.5310647,0.08654733,-0.11214137,0.41197804,0.33567974,0.2698471,0.20516165,-0.42316195,-0.35464445,-0.22998247,-0.12621404,0.4937125,-0.18766494,-0.2652322,-0.116626434,0.13011733,0.50783485,0.3641735,0.021506993,-0.022582268,-0.05705761,-0.044800777,-0.17872384,0.5200373,0.5155298,-0.30484474,-0.263581,0.38032982,0.59123343,0.4360332,-0.37300274,0.013090539,-0.08789388,-0.4028658,-0.055587668,0.008671848,-0.0070682527,0.47537223,0.0012540062,0.19310637,0.91268176,-0.091632,-0.047683112,0.008514166,0.02018348,-0.051662333,-0.17499144,-0.24578705,0.32392976,-0.59753144,0.027640644,-0.24682721,0.8040053,0.033899385,-0.81632096,0.4231895,-0.47759506,0.03475744,-0.028201938,0.58613694,0.7466729,0.49516323,0.30789,0.7583665,-0.20239566,0.26291806,0.035056036,-0.39787108,0.04018817,-0.25937748,0.34861523,-0.47178793,0.1082171,-0.10436699,0.017548887,0.11683297,0.34986836,-0.5681897,-0.27482828,0.339588,0.7419529,-0.23715073,-0.045378827,0.7611317,1.1419206,0.8313016,-0.056528077,0.8415955,0.2993785,-0.07110928,0.0023656606,-0.06812153,-0.4379439,0.12782522,0.41743892,-0.05993082,0.26887667,-0.14199685,-0.09091387,0.35158202,-0.3132331,-0.0986943,0.12113943,0.28842768,0.20267431,-0.16643625,-0.46271846,-0.22555478,0.11656552,-0.02252737,0.12130717,0.29905388,-0.19028142,0.34552586,-0.14128917,1.2309285,0.13202974,-0.024633862,0.09571614,0.7177049,0.32837996,-0.016331278,-0.029800517,0.3033666,0.44712335,0.12521075,-0.4647816,0.3203002,-0.4550486,-0.45589736,-0.103355214,-0.49251893,-0.15215807,0.19710036,-0.48550063,-0.11216924,0.03920544,-0.02859996,0.38478768,-3.0245478,-0.16399956,-0.20681763,0.2382151,-0.2739108,-0.096846305,0.013797192,-0.58858454,0.14269009,0.36566597,0.5707914,-0.59914184,0.5552456,0.4654546,-0.5989903,-0.13870332,-0.6027235,-0.10063616,0.053829692,0.4158362,0.08944061,-0.15430087,-0.11334017,0.23864676,0.8104957,0.18242817,0.19605729,0.4562762,0.27561077,-0.062119834,0.5143896,0.024447449,0.51173896,-0.18677928,-0.1644456,0.38127372,-0.2991591,0.08555094,-0.114101216,0.1442359,0.63549644,-0.27338174,-1.122911,-0.5495176,0.018673293,1.0370191,-0.40876618,-0.6674954,0.29794776,0.017703025,-0.01583608,0.25186056,0.55478656,-0.05615167,0.18461952,-0.5420143,0.1719278,-0.09087442,0.12882607,-0.0092148585,-0.09163638,-0.269066,0.64243144,-0.01661017,0.65050435,0.010402141,0.27557862,-0.18497284,-0.22382946,0.15275508,0.54183376,0.4197273,-0.13360135,-0.17606834,-0.04196792,-0.18823245,-0.19240442,0.055755477,0.6622023,0.753315,-0.0682705,0.10644602,0.14059435,-0.15026616,0.057660937,-0.12876278,-0.2207623,-0.06604428,0.102782086,0.3548754,0.7041592,-0.05906807,0.55351543,-0.16486189,0.38143855,-0.053579163,-0.69619876,0.6463127,0.28737146,-0.1445726,-0.042543832,0.5039263,0.40420926,-0.38449854,0.43854016,-0.6459162,-0.29480207,0.70924175,-0.10264847,-0.547184,0.19678387,-0.19832931,0.060302675,-0.7411376,0.21905069,-0.3300519,-0.54537296,-0.2111219,-0.19055793,-3.353157,0.07067217,-0.19470753,-0.050013814,-0.351002,-0.17635606,0.19029637,-0.72587377,-0.5511386,0.14630422,0.26993865,0.7493572,-0.09676116,0.063709125,-0.26997992,-0.33424872,-0.11945172,0.31571385,0.09808926,0.294378,-0.083221525,-0.2279629,-0.18570192,0.043302134,-0.54621184,0.07949445,-0.45592672,-0.5113156,-0.14425927,-0.5429976,-0.28191045,0.5477633,-0.35389414,0.17086247,-0.2729862,0.12480313,-0.2027419,0.123675086,0.16867732,0.21046825,0.14893545,-0.032675948,0.34248954,-0.35787666,0.43220425,-0.04699838,0.5642074,0.045985598,0.178795,0.17096621,0.53881234,0.5660097,-0.16468343,1.0333463,0.2709802,-0.040966053,0.39778408,-0.22953597,-0.283269,-0.65540963,-0.37736756,-0.0853765,-0.36798993,-0.35409996,0.09538441,-0.2771902,-0.7844403,0.6616714,0.05961182,0.43545887,-0.190863,0.37633982,0.48682675,-0.33980456,-0.12055855,0.010584865,-0.0948912,-0.4886512,-0.13370642,-0.77224797,-0.53688836,-0.26323354,0.9401801,-0.3056006,0.01792102,-0.06883826,-0.066697374,0.13431427,0.039333586,0.28859073,0.13486482,0.38832152,-0.16066629,-0.7257849,0.4181305,-0.32862914,-0.035650633,-0.57961357,0.21292725,0.48173,-0.74960035,0.46450442,0.35542062,0.22244763,-0.08766465,-0.6677891,-0.10245622,0.078645386,-0.07193918,0.42345116,0.19374163,-0.87594664,0.5705957,0.17942508,-0.47440416,-0.6369002,0.37351105,-0.0805622,-0.4284314,-0.084501624,0.21254563,0.1612924,-0.12400341,-0.16655196,0.104548335,-0.587352,0.19773576,0.25453344,-0.00065755646,0.54887927,-0.03704698,-0.30616748,-0.64187926,-0.12902944,-0.53178287,-0.28213292,0.21522684,-0.028542582,-0.032401964,0.20854276,0.0024600823,0.3304383,-0.32851833,0.1511843,-0.02336954,-0.34745535,0.565297,0.49528104,0.37283725,-0.460001,0.5800293,0.1975126,-0.35217988,0.060361758,-0.06450994,0.43269265,-0.03749345,0.41078818,-0.07514488,-0.09539927,0.24122815,0.6041471,0.14346953,0.46519887,-0.13167734,-0.10139484,0.2264834,-0.11254451,0.17814003,-0.06297644,-0.528911,-0.017045472,-0.17763287,0.10074297,0.6024191,0.23661837,0.24240485,0.14313607,-0.15105256,0.11585034,0.12098304,-0.15534343,-1.1039776,0.4687557,0.32484356,0.9275443,0.18161726,0.19890356,-0.36160177,0.7993158,-0.28731963,0.12696391,0.27048984,0.19258317,-0.37000147,0.89143384,-0.785807,0.47847825,0.034779694,-0.20393296,0.1776258,0.14282349,0.3796082,0.6645711,-0.24112718,0.015930127,-0.04509486,-0.3694795,-0.05382582,-0.32116136,0.0025983015,-0.39557716,-0.38492423,0.6997233,0.30265632,0.1626312,-0.27915755,-0.17167336,-0.024208065,-0.21964,0.23778555,-0.28894314,-0.02456096,-0.009918304,-0.30727065,-0.2601579,0.54336286,0.044154517,0.15060069,-0.20665315,-0.1771298,0.053998854,-0.12602262,0.0075783334,0.1020445,-0.48770678,0.24944563,-0.15991129,-0.521537,0.6062134,-0.23197569,0.0643913,0.046034932,-0.06217873,-0.07123776,0.32852545,0.07372638,0.51185334,-0.10266983,-0.12620142,-0.31958935,0.017871412,0.17646447,-0.23229384,0.020856833,-0.44380477,0.005397594,-0.4666598,0.39098153,-0.28265926,-0.48117274,0.097897135,-0.1923969,0.036958378,0.44485343,-0.10816606,-0.04545768,0.015747648,-0.1438621,-0.3256773,-0.16937432,-0.36802286,0.16508563,0.16344959,-0.23325248,-0.07246323,-0.15439156,-0.05062938,0.5574143,-0.19507676,0.39259326,0.18441163,0.04074902,-0.21691173,0.15715891,0.14421953,0.4666352,0.024930825,0.0878813,-0.4685536,-0.41581073,-0.36530086,0.18276088,-0.05506824,0.25155613,0.20226757,-0.04848155,0.95669824,-0.029165141,1.1927212,-0.094750784,-0.3551572,0.10318418,0.53449523,-0.06806781,-0.025291242,-0.33652547,0.8839228,0.48600426,-0.07683183,-0.011207839,-0.43735823,-0.033396948,0.39879483,-0.32505903,-0.06555977,-0.1186354,-0.40575588,-0.39327765,0.22850448,0.15858062,0.15488611,-0.090052366,-0.07393642,0.18269889,0.17123808,0.40349862,-0.65934503,-0.21939185,0.16818987,0.21604042,-0.2064649,0.12793414,-0.48927963,0.39797333,-0.84309715,0.19805966,-0.5908921,0.12631789,-0.16857177,-0.35885775,0.06617601,-0.0042586285,0.45556277,-0.24865618,-0.46782067,-0.029078461,0.38303775,0.22680016,0.081422426,0.5837676,-0.27424043,-0.030849172,0.12710936,0.6115599,1.0668372,-0.5284922,-0.03664391,0.2299288,-0.3687462,-0.5832216,0.31070533,-0.39738473,0.012416196,-0.0018475612,-0.36348674,-0.39378548,0.27730313,0.30860424,-0.01455218,0.031234097,-0.5940418,-0.12665303,0.18497616,-0.30988026,-0.12684669,-0.34211415,0.39217234,0.7517465,-0.22751802,-0.383504,-0.08063046,0.41171777,-0.07204437,-0.5430172,0.17938513,-0.2043603,0.34119472,-0.045147248,-0.3596839,-0.13101204,0.16101478,-0.4562696,0.20045325,0.39038822,-0.33564535,0.10576062,-0.23896728,0.13824421,0.9043775,-0.12786599,-0.011929282,-0.6409127,-0.5566,-0.8249028,-0.44926357,0.08342831,0.17850795,-0.11642974,-0.43464926,-0.019695861,-0.27685907,-0.16123568,-0.08816314,-0.51185715,0.23142354,0.07669166,0.63468134,-0.31655654,-0.9239596,0.053791683,-0.027811201,-0.00035663147,-0.5093163,0.5321834,-0.11029053,0.76950145,0.06902258,-0.16663189,-0.028403334,-0.3765389,0.19720145,-0.40742016,-0.24715973,-0.6723176,0.11804345 +134,0.40297148,-0.12230662,-0.5163159,-0.23084548,-0.26727897,0.21856275,-0.32812446,0.17593704,0.2423186,-0.43805364,0.0507733,-0.16650067,-0.13659951,0.31917205,-0.25376397,-0.6996592,-0.07623414,0.016197337,-0.5153574,0.28869072,-0.53820175,0.27842075,-0.0596851,0.3915924,-0.003308968,0.3156853,0.15966494,-0.04367538,-0.07180701,-0.13729236,-0.070566244,0.041180287,-0.64537627,0.18381026,-0.101606436,-0.38954487,-0.036023296,-0.54263675,-0.23465191,-0.6703927,0.49437305,-0.9712042,0.57795036,-0.089387074,-0.30762824,-0.06093711,0.19911702,0.24719413,-0.28640366,0.24665284,0.31271896,-0.12555458,0.035580676,-0.060190734,-0.55718243,-0.7330319,-0.6657668,0.0628486,-0.580727,-0.09834479,-0.054986306,0.3520289,-0.18284504,0.13582279,-0.17561662,0.16169116,-0.43304586,-0.123223856,0.2407239,-0.16857395,0.19949171,-0.44201192,-0.1910213,-0.17086625,0.21259464,-0.11430432,-0.21457508,0.17997505,0.38612548,0.6870665,-0.024280295,-0.14737153,-0.2845342,-0.10755413,0.034753017,0.60616606,-0.050390694,-0.2971739,-0.47197506,-0.20610635,0.33586344,0.32074437,0.13495812,-0.33111286,0.13545316,0.02403835,-0.2810495,0.40409532,0.5148155,-0.493191,-0.318819,0.48938015,0.53289354,0.022268908,-0.21186654,0.25015107,0.15563165,-0.49449232,-0.3469899,0.2517882,-0.025924345,0.42659834,-0.096126266,0.2714185,0.7737547,-0.10185198,0.06318965,-0.17656626,-0.16790724,-0.30629477,-0.35048863,-0.19949718,0.042408697,-0.32220936,0.034453,-0.12471723,0.671037,0.10888366,-0.8724097,0.4361382,-0.63513076,0.08640867,-0.11473518,0.63210064,0.7590102,0.3747101,0.25753435,0.94364643,-0.46909168,0.08257049,0.10728971,-0.22818477,0.10135621,-0.21177892,0.113989435,-0.37555528,0.16111001,0.15776637,-0.11638612,-0.025381258,0.6488972,-0.29662278,0.028133735,0.06899137,0.7119345,-0.361391,-0.06342526,0.8461834,1.0986797,0.97611773,0.14339915,1.5262415,0.39948234,-0.11138095,0.057638872,-0.42637157,-0.65998375,0.13581243,0.4012647,0.017648509,0.42743307,0.15696672,0.1079153,0.4923851,-0.34545177,0.10234291,0.06638496,0.052449353,0.11262315,-0.099361,-0.39805055,-0.08475773,0.08652936,-0.0044993586,0.23097095,0.2416177,-0.17642231,0.49549994,0.21434312,1.463101,-0.03208252,0.17987569,0.08731715,0.45213708,0.16433176,-0.20483755,0.03912241,0.21449865,0.2780774,-0.15704593,-0.6024205,0.050166905,-0.1948301,-0.52966344,-0.3189897,-0.25313112,-0.2579777,-0.29629132,-0.3817357,-0.20473619,-0.061843276,-0.29664707,0.46762082,-2.3987525,-0.3288722,-0.21495493,0.33562082,-0.12114835,-0.38194466,-0.2775435,-0.5021271,0.3603842,0.4671697,0.2212797,-0.6197276,0.6140088,0.48344103,-0.27911928,-0.09057832,-0.74581516,0.113409825,-0.20448811,0.25695592,-0.05656186,-0.30229396,-0.2986254,0.30581552,0.47202945,0.14405409,0.0032125541,0.13372687,0.63218355,0.012571613,0.5899665,0.0044443947,0.6095063,-0.2730903,-0.10124046,0.45305318,-0.56694674,0.38290888,0.04332944,0.21897317,0.5181474,-0.58266705,-0.87345535,-0.79650444,-0.61373097,0.9429204,-0.23009536,-0.40125734,0.22988603,-0.17934619,-0.5885223,-0.026315084,0.68992954,-0.28868276,-0.022436095,-0.8211074,-0.06976681,-0.21022598,0.32171673,-0.049917493,0.08776996,-0.44997516,0.67885906,-0.14833413,0.6019169,0.3711259,0.12636685,-0.22559035,-0.4815266,0.06541543,0.8680034,0.52342516,0.14738421,-0.11210876,-0.20045148,-0.17825042,-0.20826425,0.12635641,0.4797906,0.5699148,0.031325035,0.07155012,0.42334256,-0.24015813,-0.05716807,-0.047189955,-0.19514777,-0.03570626,0.06600822,0.62094694,0.6732294,-0.29700533,0.21710314,-0.33632493,0.28576323,-0.33147973,-0.4073346,0.45467454,0.49512488,-0.10727652,-0.20168872,0.67088014,0.56642,-0.43817067,0.42573085,-0.7555505,-0.33425775,0.397484,0.1038099,-0.41365147,0.11804483,-0.40598866,0.1523795,-1.1177284,0.20339449,-0.029494056,-0.42771047,-0.7209185,-0.43438867,-3.5742953,0.18455745,-0.046225183,-0.12333817,-0.09779607,-0.17619117,0.47263083,-0.5139769,-0.8136439,0.12865749,0.005314482,0.5698657,0.03401798,0.31186906,-0.34419915,0.017174738,-0.36319566,0.21810235,0.15726061,0.3984584,0.0035936919,-0.39257932,0.05224822,-0.41430897,-0.45621613,-0.13535999,-0.57157725,-0.5299911,-0.11811038,-0.56011766,-0.28354135,0.8002164,-0.39163116,-0.063026614,-0.31148526,-0.14198457,-0.31124845,0.5294729,0.17444468,0.12021493,0.05906817,0.0017315088,-0.23304088,-0.28047147,0.23668984,0.011745455,0.21458973,0.4143166,-0.20588835,0.24730948,0.4874224,0.62137955,0.01821976,0.7877846,0.26622266,-0.010186391,0.42798144,-0.24190034,-0.1842356,-0.622837,-0.39376953,-0.10634308,-0.48079962,-0.6050523,-0.23312415,-0.41829988,-0.78990203,0.41528687,0.06174457,-0.033523116,-0.08939024,0.16957624,0.26911083,-0.12636997,0.037196405,0.058107357,-0.20548092,-0.47164196,-0.6350676,-0.62853765,-0.61727804,0.25002423,1.3239918,0.09439557,-0.24930058,0.1475824,-0.39860195,-0.028509865,0.17002784,0.23147535,0.07458048,0.44251403,-0.17022459,-0.64630514,0.38846773,-0.21590984,-0.10712315,-0.53729457,-0.19171773,0.8715854,-0.70153874,0.51135033,0.40862635,0.2579616,-0.015545641,-0.5748568,-0.1952254,0.060676597,-0.30676574,0.54325634,0.29222655,-0.63378865,0.5842802,0.04779697,-0.035965227,-0.7075065,0.5594869,-0.025854824,0.013532451,0.10442911,0.27517223,0.09276436,-0.050993435,-0.34116295,0.36683634,-0.4777973,0.21686646,0.37983638,0.15185782,0.6482572,-0.21132867,-0.14574231,-0.62567616,-0.23098943,-0.47083196,-0.24224336,0.06272592,-0.14649422,0.22820212,0.14977233,0.09551644,0.40918347,-0.32986948,0.16233878,-0.053482927,-0.21916847,0.106086686,0.40867153,0.4284943,-0.57970226,0.669858,0.13171881,0.014403151,-0.18539627,0.07032852,0.4641676,0.33162647,0.37176278,0.043855228,-0.16827385,0.048006706,0.77808905,0.35554352,0.2849442,0.35487053,-0.25746575,0.42688257,0.15469839,0.093077935,-0.14796326,-0.47748938,-0.0041571343,0.013173052,0.1913333,0.29445818,0.08355533,0.40040046,-0.21577391,-0.17861912,0.2145929,0.22917576,-0.33782312,-1.1554407,0.25201744,0.22579978,0.7750033,0.5145637,-0.011756022,0.20599887,0.52751344,-0.4545911,0.14890735,0.312907,0.19259508,-0.40825886,0.49845234,-0.3991961,0.5617401,-0.19227758,-0.055649646,-0.01726028,0.1881175,0.46318564,0.8486015,-0.052013822,0.20665477,0.07983226,-0.11081676,0.14653921,-0.21868907,0.06684907,-0.45027676,-0.19385968,0.78063864,0.41815656,0.3553711,-0.17411672,-0.13460395,0.023366353,-0.03360874,0.017575128,-0.112384066,-0.1693623,-0.12126046,-0.73945934,-0.3603329,0.59552777,0.039705433,0.045661706,0.16612458,-0.6906974,0.2526665,-0.08082749,0.013885464,0.07082596,-0.64115894,-0.19800997,-0.34905955,-0.63632095,0.2521953,-0.26999685,0.23331518,0.19914094,0.026284436,-0.2826917,0.056181498,0.2172642,0.83375806,0.121145464,-0.109597266,-0.26180157,-0.060175233,0.47448593,-0.5668453,-0.21322317,-0.38077873,0.32957527,-0.6444537,0.52399415,-0.08909815,-0.37191492,0.18518583,-0.084733725,0.12640834,0.51220876,-0.25821692,-0.21237628,0.27217075,-0.010300704,-0.26470262,-0.05236848,-0.510914,0.30842343,0.040685117,-0.021850163,0.07820278,-0.1098746,-0.09957932,0.532959,0.17625149,0.25404304,0.4801391,0.060661223,-0.41600466,0.044992574,-0.1797161,0.53810173,-0.016341407,-0.13066919,-0.1270881,-0.39613968,-0.15596259,0.5699831,-0.07940797,0.1575993,-0.0051948642,-0.5277185,0.6622524,0.12155168,1.0633719,0.1177878,-0.535705,0.0182056,0.4939378,-0.057131924,0.06709001,-0.46177584,0.99254936,0.5925241,-0.30028087,-0.24419086,-0.44302723,-0.12619545,0.17226496,-0.29485697,-0.24457084,-0.22490004,-0.8693122,-0.15146148,0.083276376,0.17940535,0.14816658,-0.031604983,0.29595512,0.025895271,0.058491826,0.45418075,-0.5584322,-0.077353284,0.47896045,0.31325513,0.03256073,0.049760025,-0.31719908,0.3781701,-0.6673046,0.061758023,-0.7199162,0.13087334,-0.113320895,-0.3092227,0.08689092,0.009645624,0.4033276,-0.16771449,-0.41067868,-0.26259014,0.7047368,0.18689103,0.36787543,0.83726585,-0.20002091,-0.08914607,0.04687145,0.5956027,1.5037962,-0.14372662,0.16221943,0.27588457,-0.2114953,-0.4888146,0.2713921,-0.67055523,0.0640247,0.045798678,-0.34152198,-0.36195782,0.33026347,0.19406258,0.0010480242,-0.0036006074,-0.3903422,-0.27174535,0.46810654,-0.23620428,-0.26146707,-0.25324652,0.12442041,0.8963537,-0.2651952,-0.18466167,0.11100446,0.478399,-0.41033134,-0.62367475,0.070462205,-0.35946676,0.5442124,0.09444022,-0.29902014,0.046787944,0.07005932,-0.37801218,0.25246868,0.30156574,-0.4194332,0.12133439,-0.5137339,-0.17139785,1.1290814,0.10750164,0.14407168,-0.7901328,-0.5027339,-1.0390661,-0.3222972,0.08534304,0.26939505,-0.052180033,-0.31238815,-0.096508466,-0.12395068,0.09725494,0.22054113,-0.6246523,0.4884438,0.14669429,0.7147913,-0.057082128,-0.809855,-0.04537339,0.14993449,-0.31142157,-0.45095015,0.69966,0.032088984,0.8261476,0.14989892,0.13013531,-0.025785625,-0.6527069,0.47984904,-0.34232935,-0.087130055,-0.9743623,0.16454878 +135,0.5233723,-0.3948306,-0.5854034,-0.04004245,-0.3123252,0.13910992,-0.25980327,0.38369256,0.39585295,-0.25581485,0.011433319,0.24397126,-0.18332376,0.28084648,-0.12530357,-0.79652005,-0.013630271,0.16811404,-0.49243337,0.38592947,-0.43686754,0.26338682,-0.096555166,0.5059095,0.120367505,0.199712,-0.08535706,0.44638136,-0.09226373,-0.0024877624,0.066993244,0.03970368,-0.6427731,0.46313703,-0.13796581,-0.4276396,-0.36237192,-0.3976289,-0.2513709,-0.72298086,0.50334144,-0.761492,0.7680687,0.00298988,-0.564162,-0.5920824,0.10070169,0.19625987,-0.0998712,0.052364107,0.3107715,-0.31792918,-0.16724335,-0.36603785,-0.31604984,-0.69478935,-0.61935747,-0.06004338,-0.4969721,-0.16326372,0.24554096,0.5181375,-0.31747678,-0.06343207,-0.2503645,0.8656807,-0.35503948,0.08970652,0.097890265,-0.37384892,-0.1779746,-0.86064047,-0.29775512,-0.021476854,-0.009220156,0.20713373,-0.41078702,0.11324406,0.3061546,0.56575644,0.18773359,-0.46614942,-0.3700943,0.048266318,-0.022248589,0.46348146,-0.24490725,-0.110894434,-0.36297113,-0.13678855,0.55067575,0.029703587,0.22005934,-0.5738142,0.38238695,-0.03506193,-0.015966497,0.62861294,0.5837403,-0.4269678,0.08870042,0.18354988,0.42192984,0.070486195,-0.42565706,0.28649566,0.048529927,-0.39909944,-0.08414695,0.18079571,0.020265432,0.55120873,-0.20586644,0.22286485,0.64207166,-0.03753021,-0.19011784,0.15836763,0.1440857,0.12226577,-0.58416885,-0.38185528,0.2668265,-0.2647136,-0.108693294,-0.21052037,0.6881133,0.049021646,-0.8073328,0.3761014,-0.5291322,-0.04306225,0.056853544,0.43610018,0.98306173,0.7053786,-0.035347067,1.0701797,-0.37831822,0.05941849,0.34694883,-0.005136983,0.023262555,-0.36871812,0.219423,-0.5431019,0.084359415,-0.21749887,-0.13435073,0.03386003,0.80396104,-0.5117703,-0.28046182,0.06478744,0.7649475,-0.28588998,-0.005915624,0.9433868,1.3298955,1.2440464,0.19167255,1.2575661,0.3776929,-0.23708391,-0.21980776,-0.1305685,-0.62091833,0.16178967,0.14811347,0.01974652,0.48301104,0.08249872,-0.05160451,0.8797939,-0.39993975,0.06621862,0.06719255,0.15302762,0.2545155,-0.11100676,-0.69731516,-0.08419654,0.30162436,0.06941903,0.068904825,0.3008535,-0.49484798,0.4870856,0.019990217,0.9471416,-0.25385895,-0.018598396,0.18427008,0.34322184,0.26726726,-0.34162256,0.20445913,-0.050102662,0.3325226,-0.11505919,-0.40542552,0.038840637,-0.38556382,-0.53996426,-0.3700323,-0.09696622,-0.22335912,-0.32829806,-0.51412266,-0.52442205,0.075534694,-0.34170565,0.16238421,-2.1734102,-0.35469222,-0.21651816,0.4389961,0.01028913,-0.34018424,-0.09582236,-0.4076807,0.33397216,0.31752023,0.38750598,-0.6886213,0.51233506,0.4980016,-0.5821935,0.042499736,-0.6914196,-0.10207157,-0.19333722,0.47893956,0.03127101,-0.32152212,-0.15028095,0.13265136,0.88862056,-0.1277412,-0.1295645,0.2350292,0.4092289,-0.43767336,0.34734964,0.08844401,0.74904287,-0.38571566,-0.3941718,0.38671568,-0.8318198,-0.06866495,0.12494256,0.12260914,0.61889154,-0.49691942,-0.9168186,-0.7228798,0.00715531,1.1225601,-0.13017534,-0.59800106,0.15015927,-0.44424188,-0.4161007,0.08533844,0.7497191,-0.2210173,0.07309697,-0.67689043,-0.18813133,-0.087253414,0.23337965,-0.11340863,0.012324902,-0.5020619,0.80626017,-0.243652,0.5681994,0.49550125,0.21195069,-0.30607548,-0.507641,0.038155977,0.98780245,0.567826,0.22312962,-0.31529608,0.20134874,0.09587765,-0.16918968,0.044763114,0.81769663,0.47601974,0.014183963,0.0215767,0.3882027,-0.33742645,0.14269231,-0.09180794,-0.4304415,-0.2784096,0.36333206,0.6375613,0.7587164,-0.046477295,0.37343833,-0.15272255,0.2560852,-0.34194902,-0.46684682,0.53625864,0.93383443,-0.19341736,-0.6474546,0.6568422,0.30170262,-0.57160634,0.2998173,-0.56823355,-0.17863144,0.31606323,-0.20601302,-0.45350018,0.028299587,-0.5523587,0.13378443,-0.9195986,0.38816947,-0.17859755,-0.8620323,-0.833532,-0.5391967,-3.1785598,0.30681822,-0.43549612,-0.02702058,-0.24797425,-0.300786,0.28867376,-0.71268517,-0.6892299,-0.024412746,0.18938832,0.42173588,-0.02600406,0.06501402,-0.23884177,-0.39210176,-0.10532065,0.50424045,0.077908464,0.21217665,0.025571574,-0.32943746,0.15344611,-0.22004943,-0.5906715,-0.10768762,-0.96247095,-0.5813685,0.02215137,-0.72737783,-0.36505988,0.8228459,-0.48405704,-0.14526936,-0.51304823,0.14261971,-0.2379803,0.39012,-0.015303899,0.37845942,0.26882294,-0.1080149,-0.019351082,-0.25719243,-0.0011212013,-0.115794376,0.37114343,0.46134168,-0.19728635,0.22162522,0.5632758,0.9418633,0.21325792,0.952627,0.45475578,-0.14170533,0.3521282,-0.23012143,-0.3269797,-0.7954202,-0.23303626,0.16721806,-0.61534125,-0.4206703,0.12802766,-0.48263156,-0.7859218,0.42106506,0.0504395,0.09901385,0.18782654,0.4193186,0.4470461,0.021494204,-0.072776124,-0.084785685,-0.2438182,-0.291519,-0.5398144,-0.6449783,-0.76176435,-0.01848392,1.5840443,0.10746002,0.07471743,0.34768346,-0.4572891,0.012032514,0.5187444,0.2756586,-0.2212519,0.5098639,-0.028427027,-0.5893949,-0.060951483,-0.29722482,0.02094867,-0.42035455,0.03769441,0.93097043,-0.8160532,0.9183092,0.43903396,0.300168,-0.4108615,-0.71309155,-0.26132318,0.40177834,-0.1034807,0.7060183,0.53357816,-0.33424988,0.47081754,0.14112908,-0.057833754,-0.6518663,0.27658892,-0.12026019,-0.19011974,-0.25642163,0.5641388,-0.14128841,-0.3861268,0.10517479,0.49638376,-0.34888786,0.3292882,-0.062311016,-0.15983368,0.021127403,-0.115015216,-0.2530678,-0.73691463,0.082288496,-0.66147906,-0.44531587,0.05377078,-0.078249216,0.45975313,0.21758085,0.26807997,0.54908174,-0.19874239,0.21720429,-0.31373033,-0.4192376,0.3328586,0.5002878,0.30952635,-0.3715252,0.43820718,0.20543844,0.19134878,-0.16649291,0.18132561,0.55710053,0.253986,0.6380571,-0.26928023,-0.0560079,0.0731825,0.78799766,0.1666996,0.6093535,0.10054696,-0.2543753,0.0862987,0.103860505,0.20180587,-0.3906973,-0.3767208,0.05236644,-0.0685827,0.29126275,0.38529718,0.12339485,0.5348395,-0.31907848,-0.23214732,0.33204368,0.2812116,-0.14344889,-1.4154304,0.3366325,0.3523862,0.8318603,0.38587448,0.27722606,-0.1918344,0.50982195,-0.11983624,-0.020604594,0.67927754,0.004998112,-0.10870562,0.6230058,-0.6780467,0.59131336,-0.35932282,-0.0019358884,-0.03662938,0.18655863,0.27966043,0.63080215,-0.09896827,-0.12853071,-0.028791327,-0.31377515,-0.26720056,-0.569319,0.38216627,-0.53173757,-0.455414,0.9683232,0.51798254,0.3592066,-0.45447206,-0.034051552,0.17270082,-0.11913243,0.19663931,-0.04615258,-0.24124731,-0.09210339,-0.71743464,-0.2163685,0.510371,-0.16921212,-0.063801594,0.04156902,-0.2917639,0.22706838,-0.025619118,-0.17464353,0.09899671,-0.5512965,0.0556247,-0.37168667,-0.7177061,0.31892884,-0.16268644,-0.070362896,0.29426265,0.13994375,-0.38979533,0.26663366,0.16440453,0.83989733,0.13933292,-0.008988738,-0.15796901,0.061412524,0.10449522,-0.29758483,0.102362566,-0.3235815,0.61900187,-0.4547105,0.48720923,-0.27033582,-0.33996066,0.15895368,-0.06356381,0.059198186,0.42232946,-0.49292418,-0.23450522,0.10889301,0.09035086,-0.20670773,-0.31027314,-0.48580682,0.32993433,0.014411991,-0.008567861,-0.024939727,-0.29183415,-0.24143906,0.406645,0.21151467,0.31827462,0.7847305,0.06230873,-0.45494863,-0.016029608,-0.032788575,0.5788222,0.13573454,-0.1452973,-0.39501008,-0.5738076,-0.32415754,0.46845543,-0.09757198,0.2575104,0.053159032,-0.5753214,0.9581677,0.11782002,1.4733748,0.024812855,-0.5576203,-0.015045036,0.51602656,-0.15423451,0.25752237,-0.3727617,1.1235769,0.70385593,-0.1339656,-0.12697653,-0.5713798,-0.10812119,0.27062696,-0.34711924,-0.19570847,-0.18426767,-0.995616,0.017905176,0.1514149,0.23774476,-0.008113542,0.036553655,0.23890181,0.27700898,0.094296195,0.22310781,-0.6659839,0.2867191,0.29712963,0.53152144,-0.14930482,0.25846952,-0.49689934,0.12478396,-0.86500686,0.40750024,-0.6930774,0.060310606,0.036125608,-0.2614048,0.30245402,0.072541565,0.21949902,-0.40809715,-0.1491242,-0.22066651,0.74049515,-0.064175814,0.2316524,0.74907374,-0.26951304,0.024850857,0.21956526,0.5635222,1.5184323,-0.0852589,0.006516543,-0.075782366,-0.29623273,-0.78892416,0.16083223,-0.2994289,-0.023285292,-0.05137007,-0.2531285,-0.62820566,0.2648679,0.08999673,0.036864854,0.031016149,-0.36702347,-0.21289878,0.46865273,-0.57965964,-0.13141736,-0.18430644,0.08453714,0.57202303,-0.16803488,-0.32514745,-0.14283164,0.6570515,-0.34172833,-0.4704961,0.27306202,-0.55515695,0.55511457,0.043233942,-0.49679196,-0.17001435,0.1163985,-0.6236093,0.049106862,0.6055147,-0.3498433,0.029149087,-0.19473056,-0.11024526,0.96520406,0.22456044,0.45185593,-0.7781252,-0.6326862,-0.9906702,-0.08999042,-0.22524938,0.38758472,-0.08519902,-0.89985806,-0.25489438,-0.3437727,-0.16429904,0.1769556,-0.79062915,0.5098725,0.17068835,0.7417535,-0.17325516,-0.90013367,-0.061549496,0.40607575,-0.15643027,-0.29523683,0.41799104,0.05003746,1.0451999,0.105131194,0.14435326,-0.11051772,-0.7761168,0.63020444,-0.23095088,-0.31148374,-0.8766235,-0.108923584 +136,0.16463195,-0.20680587,-0.49603817,-0.21842037,-0.24528006,0.008187286,-0.12044521,0.54348475,0.027339952,-0.47761416,-0.07366286,-0.18494627,-0.15272598,0.28639874,-0.23583217,-0.46476004,-0.03494834,-0.044735927,-0.37290382,0.45779535,-0.42084143,0.17330591,-0.07014447,0.40776882,0.23101106,0.1577173,0.1596906,0.12032092,0.07021181,-0.26300907,-0.17137618,0.11608378,-0.5577155,0.21984962,-0.12932695,-0.4170723,-0.005614019,-0.44034505,-0.44521835,-0.60240114,0.40700468,-0.7031818,0.42836165,0.18679504,-0.2475851,0.35424328,0.42288262,0.24554518,-0.095407434,-0.09380555,0.32754412,-0.1062801,0.1802136,-0.038598686,-0.28211418,-0.5596253,-0.67980766,-0.046778303,-0.57269704,-0.18135525,-0.104283825,0.15017907,-0.31199333,-0.07256867,-0.122024044,0.4867413,-0.33993906,-0.2696875,0.20527951,-0.11019282,0.2780579,-0.68199486,-0.25367984,-0.104554854,0.001779352,-0.26451167,-0.13371567,0.3066606,-0.01198761,0.45312724,-0.19703813,-0.050482668,-0.28605035,-0.1466941,-0.051481154,0.44724017,-0.20996396,-0.504498,-0.07701135,0.047051985,0.18763377,0.19903043,0.1338514,-0.0993613,-0.060084336,0.0411404,-0.2764053,0.55281883,0.48305267,-0.45814577,-0.11069258,0.34982628,0.45584303,0.17239808,-0.236878,0.010205927,0.022950783,-0.4769078,-0.2398437,-0.024258869,-0.20489433,0.37172705,-0.078041546,0.3679131,0.4623271,-0.24023877,0.077256896,0.08943762,-0.013517039,-0.02990904,-0.21298261,-0.33280474,0.22698715,-0.35103345,0.14262544,-0.09216877,0.70799655,0.055149592,-0.6789993,0.24969414,-0.43923452,0.09151033,0.024701377,0.48054197,0.7512916,0.33786154,0.3028325,0.7201869,-0.35268858,0.057069786,-0.09860701,-0.07652102,0.10576447,-0.040558763,0.07005466,-0.530935,-0.031936172,-0.041581284,-0.022348166,0.0018441251,0.37930664,-0.60437685,0.022304755,0.24724679,0.7950502,-0.12045771,-0.03317527,0.6600138,1.0902656,1.0789245,0.116858475,0.82259166,0.09208319,-0.13905743,0.117231056,-0.14591005,-0.68282795,0.26953238,0.45572647,0.24850024,0.27417436,0.11573667,-0.0077521885,0.47350577,-0.45555753,0.06093319,-0.2093669,0.2603013,0.16098213,-0.061807733,-0.10491325,-0.13580744,-0.012410232,0.031259354,-0.012703483,0.21264617,-0.23133329,0.30302003,0.11801591,1.4672631,-0.08541649,0.081301816,0.16962062,0.54916656,0.19561699,-0.2661312,0.11899694,0.2796486,0.3946233,0.031112045,-0.58319616,0.07809619,-0.2773884,-0.5024598,-0.20287703,-0.332115,-0.25786835,-0.13048011,-0.5348369,-0.2065607,-0.1622326,-0.23550074,0.29895997,-3.1481574,0.016637785,-0.18770063,0.12974207,-0.2402681,-0.35971063,-0.036302198,-0.45863864,0.5568537,0.42566067,0.35862747,-0.5337218,0.46343014,0.39867422,-0.28292388,0.03187271,-0.6057683,-0.05502843,-0.10907785,0.33841515,0.04529383,-0.10589713,0.2517182,0.27652425,0.39209917,-0.04330618,0.091929995,0.23737875,0.5306266,-0.04506858,0.5541784,-0.038353864,0.26319546,-0.3335245,-0.13312294,0.31667763,-0.5777055,0.16990027,-0.14498742,0.17272261,0.52998054,-0.33437735,-0.7933383,-0.53900933,-0.17534772,0.98214996,-0.044618957,-0.37511247,0.18120489,-0.44917485,-0.20931473,-0.22463004,0.47591522,-0.15429862,-0.12880656,-0.76430976,-0.031071842,-0.41020003,0.19148241,-0.036854185,-0.112337045,-0.4886356,0.8027503,-0.07294314,0.47520924,0.353229,0.056971308,-0.6273723,-0.37922892,-0.010341389,0.85169363,0.46787134,0.1442766,-0.13123529,-0.061908584,-0.21060373,0.009222358,0.22009407,0.62403965,0.44690037,-0.015740667,0.17002712,0.40681764,-0.10142606,-0.115859404,-0.20486209,-0.22810231,-0.14912984,0.17449543,0.60725754,0.5093905,-0.08902639,0.47975776,-0.05201128,0.16154985,-0.50637543,-0.32571706,0.26194593,0.7600624,0.009169489,-0.24243581,0.5570818,0.66669744,0.0028509924,0.36666998,-0.6329885,-0.5076777,0.5130674,-0.22370777,-0.30964807,0.19167571,-0.39197642,-0.036371298,-0.64445466,0.1913527,-0.30756897,-0.49509794,-0.9147693,-0.35873875,-2.6250298,0.15075943,-0.28756842,-0.18058695,-0.08153585,-0.17364226,0.35291836,-0.51494926,-0.4738976,0.1664248,0.13603963,0.5894577,0.06867246,0.038453836,-0.26458016,-0.251876,-0.18532512,0.1276637,0.07464001,0.2783346,0.07913468,-0.35214546,-0.026980266,-0.14011951,-0.3490871,-0.06611771,-0.31892326,-0.3574247,-0.1849415,-0.41842937,-0.1931287,0.6592576,-0.38946754,-0.008993864,-0.18801391,0.00021758676,-0.022514313,0.33188966,0.17787816,0.14366417,-0.2066116,-0.09620152,0.030733466,-0.3997205,0.071942635,0.10488533,0.39237738,0.4714248,-0.12644444,0.10707418,0.45404702,0.5493616,0.059781153,0.725645,0.42996472,-0.13252638,0.43490973,-0.1038028,-0.088050306,-0.50344527,-0.1929563,0.13103816,-0.33999524,-0.57394487,-0.045181703,-0.36034754,-0.7371246,0.4163124,-0.08700086,0.060457554,-0.08847945,0.40026423,0.35769674,-0.11184739,0.044174157,-0.0005836018,-0.07957338,-0.39388743,-0.4998484,-0.52114767,-0.25733098,0.1138193,1.14452,-0.09251877,-0.1440882,0.11253549,-0.18215232,-0.004658911,0.16407976,-0.050521314,0.23185158,0.21641842,-0.08922165,-0.6126727,0.36074808,-0.19532582,-0.15407494,-0.509727,0.012459857,0.62752885,-0.50384146,0.5241852,0.27690768,0.1785964,-0.2869999,-0.6063757,0.061427448,0.034191225,-0.32196623,0.35035664,0.1849638,-0.75899154,0.4511264,0.14211649,-0.16434787,-0.74001753,0.4854756,0.09072007,-0.30130982,-0.08303269,0.115796186,0.15235756,0.027662663,-0.08694733,0.35595098,-0.22616766,0.18023857,0.14783406,-0.046597045,0.24488637,-0.09773968,-0.071311906,-0.43944508,0.107608974,-0.4237075,-0.36567524,0.2988643,0.042299237,0.19667527,0.3408417,-0.23231003,0.31977186,-0.1928236,0.21754062,-0.06492945,-0.23178525,0.25345334,0.3785878,0.259667,-0.47724158,0.67724895,0.05123007,-0.032061487,-3.807885e-05,0.15888664,0.41950196,0.12831736,0.37429437,-0.14927205,-0.2077019,0.31205487,0.9570587,0.23917429,0.40150717,0.030347738,-0.008116799,0.13230324,0.07004947,0.021533439,-0.043431915,-0.49546978,-0.0469571,-0.09677357,0.16292521,0.25123984,-0.020439455,0.34784883,-0.07518804,-0.15070978,0.07382568,0.22717217,-0.13152237,-1.2047137,0.24627553,0.08608903,0.9017169,0.557319,0.078545704,0.084235795,0.63206166,-0.2504204,0.00038113337,0.34645647,0.14429955,-0.22796719,0.4381842,-0.50103015,0.520496,-0.071539216,-0.062391873,-0.23375936,-0.013367959,0.43203697,0.66530704,-0.2674803,0.011660365,0.08249247,-0.2846581,0.19540748,-0.2649974,0.23007284,-0.49948153,-0.27737418,0.59057754,0.38979557,0.29934713,-0.09684586,-0.02820408,-0.018559502,-0.1934109,-0.04619452,0.025774876,0.007669232,-0.13817146,-0.64225143,-0.17422464,0.44943908,-0.095959246,0.14963268,0.122332886,-0.38130826,0.17204468,0.02065314,-0.0067086346,-0.013483733,-0.65521306,0.009467428,-0.21539947,-0.43497896,0.70610946,-0.33648905,0.23064964,0.24459516,0.017111719,-0.13144837,0.2920394,0.14388783,0.5961972,-0.24723431,0.05974149,-0.34989578,0.11016675,0.072756626,-0.1477519,-0.20513462,-0.24491732,0.19302137,-0.69539595,0.33977363,-0.112512946,-0.18241301,0.09393933,-0.16472504,0.030937245,0.5464286,-0.058112163,-0.105149046,0.04573783,-0.2867551,-0.07242402,-0.15300027,-0.08497502,0.30776337,-0.13206863,0.095902316,-0.1082936,-0.12088935,-0.13661936,0.28478858,0.12615642,0.21486033,0.32222542,0.2362052,-0.35379866,-0.022734787,-0.056016386,0.5160133,0.056091737,-0.111539535,-0.2088195,-0.51860696,-0.34803492,0.46471643,-0.17195988,0.2271092,0.09681348,-0.33117414,0.7532085,-0.06454476,1.0324062,-0.08552381,-0.46482128,-0.037906468,0.55633837,0.06214272,0.19013514,-0.30262432,0.72971743,0.46409947,0.055396102,-0.10426778,-0.17762192,0.032472037,0.34197584,-0.08413243,-0.28709477,-0.014285197,-0.6007165,-0.1869124,0.30547252,0.25967145,0.18727593,-0.21212728,-0.021353036,0.24340089,0.013258414,0.3514168,-0.52124745,-0.07872028,0.2527087,0.3100135,-0.04828492,0.0470218,-0.42318755,0.29534912,-0.48588553,0.14031859,-0.2747759,0.10957975,-0.11609987,-0.21271549,0.24975276,0.012168516,0.38320687,-0.2991519,-0.19664562,-0.019756446,0.5386391,0.12309845,0.27681237,0.422517,-0.16861479,0.10394471,-0.17619897,0.5446893,1.0416574,-0.29697147,-0.13947436,0.34627137,-0.37228176,-0.6332811,0.24709392,-0.5042073,0.00041997008,0.025978582,-0.29155594,-0.17653115,0.32066053,0.22854462,0.099156804,0.07303161,-0.70313644,-0.16252682,0.35322663,-0.21906792,-0.22571073,-0.3671294,0.033011187,0.60670567,-0.14231685,-0.1419544,0.03776374,0.5638378,-0.16364767,-0.5841928,0.18890084,-0.41267514,0.3591695,0.08171047,-0.15989156,-0.10749545,0.042191565,-0.33137578,0.098297715,0.22290953,-0.3379891,-0.21740974,-0.25519115,0.017090287,0.7878753,-0.080874205,0.070667304,-0.39203817,-0.36973542,-0.77908456,-0.3184791,0.32609132,0.109007046,0.014323703,-0.70467854,-0.05068684,-0.13706473,-0.13175792,-0.077064335,-0.2885068,0.51107305,0.16829455,0.33040756,-0.08027943,-0.6568154,0.07412251,-0.007894061,-0.10469632,-0.46029064,0.5144457,-0.00034146648,0.72141105,0.04503717,0.051960476,0.21183226,-0.45800215,0.38556686,-0.29871553,-0.14506401,-0.6372886,0.08144182 +137,0.63322747,-0.23686962,-0.33810577,-0.14790703,-0.12589721,0.18432207,-0.18983392,0.43867216,0.27762243,-0.46143237,-0.34319806,-0.21322243,0.050149556,0.19728361,-0.17755719,-0.60296535,0.10990363,0.18390135,-0.355652,0.46986774,-0.4306835,0.2875452,-0.02428481,0.68162704,0.11405057,0.21436127,0.22620714,0.01700146,-0.31493402,-0.4205643,-0.1090386,0.4735718,-0.6983226,0.26267716,-0.29359755,-0.44906965,-0.049141515,-0.596569,-0.28461406,-0.7364482,0.13283378,-1.0145144,0.6070024,0.05447339,-0.23939298,0.30803123,-0.07806111,-0.031077852,-0.15068996,-0.033669997,0.004983256,-0.24351485,0.047744423,-0.2953507,-0.257977,-0.28240493,-0.5602011,0.10014369,-0.43320695,-0.17622982,-0.50365615,0.10859436,-0.27788267,-0.07059062,0.1443007,0.5713374,-0.42292118,0.2652571,0.004742076,-0.17556034,0.19115168,-0.3891395,-0.27888274,-0.24261063,0.21387893,-0.3453404,-0.2633946,0.16614088,0.32046673,0.4051442,-0.10871265,-0.110378854,-0.29440644,-0.057144735,0.09279812,0.5614233,-0.12339205,-0.7380534,-0.19597745,-0.13816702,0.17054272,0.05972654,0.29133168,-0.21993883,-0.07659612,-0.112266935,-0.26882258,0.58393335,0.46486616,-0.32316718,-0.27822354,0.24921514,0.35566804,0.05202058,-0.12890865,0.0025450934,0.12682031,-0.5096625,-0.15449397,-0.07851467,-0.077457,0.6672287,-0.11496696,0.38568512,0.6354573,-0.37520525,-0.049343992,0.097296305,0.044916596,-0.20850599,-0.19222802,-0.2418396,0.34736165,-0.38093862,0.04465298,-0.24647017,1.0013549,0.2313416,-0.76322144,0.3216149,-0.52168673,-0.11028135,-0.091780454,0.46105662,0.46554574,0.4370034,0.35081473,0.5545731,-0.40171215,-0.0704949,-0.009038019,-0.49727878,-0.038147677,-0.27306077,-0.067762226,-0.33435568,-0.07752537,0.09746516,-0.11688063,0.14875625,0.5544098,-0.5082492,-0.06588126,0.20065308,0.7079229,-0.3869281,-0.25902298,0.9744315,1.022012,0.85920143,0.075456314,1.2530751,0.35347793,-0.052188247,-0.00033231577,-0.07360241,-0.7370937,0.38740405,0.2880945,-0.5491994,0.29709634,0.16651101,-0.0732872,0.1835013,-0.37050557,-0.16600138,-0.18440627,0.14866649,0.107451655,-0.002094239,-0.49245998,-0.37007096,-0.030218268,0.020473788,0.292577,0.21141426,-0.32477272,0.5514565,0.07421651,1.5031937,-0.0341541,0.023717513,-0.13085054,0.6705151,0.26858565,-0.006651312,-0.1859713,0.3465933,0.24533038,0.08924662,-0.57135135,0.016405175,-0.080644526,-0.4216113,-0.20670716,-0.38159788,-0.057607513,0.006027907,-0.25537667,-0.15106778,0.009790228,-0.3446156,0.5105767,-2.6301167,-0.11288634,0.107751556,0.41546166,-0.16376977,-0.3743495,-0.18664587,-0.51764804,0.35604832,0.32706162,0.420781,-0.6057434,0.22977622,0.57479805,-0.3477629,-0.3673083,-0.59030986,0.16630505,-0.18871166,0.31946933,0.05004223,0.016220788,-0.10819142,-0.016415536,0.70427436,0.043105185,0.16273747,0.17437315,0.43597695,0.06563633,0.31168973,-0.03174084,0.6144547,-0.19595592,-0.28809428,0.40705395,-0.28062776,0.16693456,-0.31836018,0.16207401,0.48849893,-0.4438208,-0.8807399,-0.7649223,-0.26030594,1.1395171,-0.15415813,-0.4316496,0.053902835,-0.07652446,-0.296949,0.012519161,0.5072004,-0.2866269,0.050106887,-0.6306183,0.037357945,0.021523306,0.111964226,-0.0040196627,0.09699901,-0.4709996,0.48189768,0.008958645,0.26930818,0.20053624,0.3261695,-0.2483697,-0.62505186,0.23259918,1.1163362,0.25621238,0.22389932,-0.41542625,-0.21006113,-0.1895066,0.013788794,-0.02941746,0.5883846,0.65949845,0.0009873646,0.15636447,0.33568773,0.12412974,0.112057745,-0.0947214,-0.2819246,-0.13159646,0.0010401806,0.69846827,0.68875855,-0.20739035,0.44332853,-0.17522074,0.4320741,-0.21643583,-0.42694333,0.6060837,0.9771328,-0.20494378,-0.22865087,0.77094364,0.45571744,-0.46394768,0.42987236,-0.6833047,-0.38070926,0.4497324,-0.20972149,-0.4617664,0.25790638,-0.24743716,0.12536854,-0.82232314,0.42478248,-0.029499436,-0.5224332,-0.49309942,-0.04777882,-3.9393823,0.16060664,-0.14586693,-0.26292595,-0.18619685,-0.29029164,0.17844681,-0.5142154,-0.38158083,0.17606086,-0.0035933654,0.8311341,-0.09228613,0.21703869,-0.1741945,-0.2868407,-0.25200328,0.08041287,0.17773636,0.39238873,-0.054110277,-0.30557334,0.097937524,-0.2525867,-0.33033213,0.05815233,-0.4647263,-0.577048,-0.015116982,-0.65676725,-0.31646517,0.6768779,-0.49082884,-0.02034069,-0.32091537,-0.001046747,-0.15008946,0.39912197,-0.03698623,0.10777732,0.12588187,-0.010109906,0.07758018,-0.34757924,0.4665617,0.047877375,0.13316126,0.48364767,-0.28345945,0.21478014,0.48887035,0.40936217,-0.053782377,0.894084,0.36465302,-0.046111524,0.26892292,-0.3145051,-0.41977015,-0.51315814,-0.24257766,-0.04657859,-0.4914285,-0.33469787,-0.07731487,-0.28862992,-0.825896,0.6857452,-0.032767463,0.22247498,-0.10107714,0.3334136,0.49820065,-0.18124281,-0.07949752,-0.023301765,-0.0716509,-0.49602893,-0.34803,-0.5747941,-0.51896024,0.017187187,0.7619907,-0.16258569,-0.022902116,0.09221747,-0.003063942,0.0053122393,0.01024128,0.021781547,0.0629307,0.5348821,0.012875046,-0.76085377,0.43028644,-0.15435894,-0.18832551,-0.5612537,0.20034361,0.7527283,-0.8118163,0.46444333,0.5117741,0.06507662,-0.04946685,-0.42533574,-0.25548604,-0.12338557,-0.10028651,0.399376,0.34150115,-0.9603348,0.50192076,0.21351291,-0.29560283,-0.7861615,0.4964743,-0.018467383,-0.2755942,-0.022063322,0.39470363,0.15044515,-0.002337883,-0.2757387,0.19133301,-0.3788481,0.202493,0.009122789,0.014479227,0.41737887,-0.20438154,-0.052648474,-0.7115162,-0.073575504,-0.5587161,-0.49574825,0.13129327,0.12867738,0.05313869,0.38644662,0.041922156,0.29256386,-0.45531312,0.086747855,0.098939426,-0.2396158,0.34022263,0.4315547,0.6983792,-0.39699832,0.5891636,0.07079109,0.018419355,0.1300348,0.023351485,0.5002671,0.021887481,0.39850652,0.20934594,-0.20930225,0.18457831,0.77268356,0.20184381,0.61690545,0.12446061,-0.09267708,0.30272833,0.08354763,0.36203265,0.08543825,-0.5951201,-0.09148257,-0.40785193,0.101060666,0.5302379,0.22615527,0.27460644,-0.034896377,-0.42169046,0.13844952,0.114825524,0.012524165,-1.1432508,0.2098897,0.09733554,0.78680545,0.3544728,-0.054044712,0.09633329,0.6799945,-0.07881716,0.1839658,0.27680972,0.040116027,-0.4546561,0.5857913,-0.60610485,0.4262366,-0.12203737,-0.07567909,0.014299353,-0.12647404,0.30803436,0.7770135,-0.19512929,0.2274162,0.02809906,-0.182191,0.11696453,-0.63529867,0.25585455,-0.5243893,-0.10214186,0.7797281,0.53851753,0.24193633,-0.22031455,0.061851736,0.08368478,-0.053929668,-0.017482886,0.09722374,0.06292116,-0.0118924575,-0.73159593,-0.15299025,0.6937185,0.26418558,0.12740092,-0.068751164,-0.09655618,0.2710798,-0.22738199,-0.12487944,-0.03212614,-0.6661667,-0.04128234,-0.3360258,-0.5716472,0.49478117,-0.083506666,0.12274174,0.16346996,0.08050262,-0.2646956,0.33186123,0.43537435,0.69234353,0.2571229,-0.17053187,-0.3640779,0.23973124,0.37358585,-0.32742944,-0.18848269,-0.3032308,0.013474271,-0.5210606,0.22017519,-0.106167555,-0.4478949,-0.0018457124,0.09293156,0.09084833,0.5658658,0.12113852,0.016200176,0.113595076,-0.2090858,-0.4148074,0.07046252,-0.249672,0.22836442,0.30492836,-0.3978577,-0.111436896,-0.1319798,-0.17975299,0.2847425,-0.048199445,0.49908915,0.34644425,0.090780646,-0.25254464,-0.0987879,0.07155715,0.70467025,-0.03481105,-0.18734454,-0.27812675,-0.32060823,-0.29201522,0.27090612,-0.034845006,0.090420105,0.26625824,-0.33206466,0.6606454,-0.019008264,1.0181562,0.07716903,-0.44610605,0.19354074,0.4438688,0.034574736,-0.0547175,-0.4703822,1.2077551,0.2883539,-0.14239778,-0.28372845,-0.40515232,-0.037056025,0.0919804,-0.28488594,-0.2650455,-0.23330085,-0.71793586,-0.2609167,0.27023438,0.34254536,0.21348898,-0.06104197,0.25027913,0.38914815,0.029741758,0.4068085,-0.5682903,-0.14132182,0.41926143,0.406979,0.003590713,0.20290227,-0.29351962,0.37845743,-0.56725097,-0.007687012,-0.40227315,0.1566461,-0.3425138,-0.36422208,0.25805077,0.23548599,0.44504797,-0.26231062,-0.4991045,-0.332765,0.39345184,0.095744826,0.14054184,0.38307032,-0.20974104,-0.07087836,-0.18596907,0.47826982,1.170936,-0.07182161,0.21351047,0.5406586,-0.2443216,-0.527413,0.33728686,-0.3500248,0.31781173,-0.10433605,-0.18814135,-0.42573962,0.2907009,0.1320118,0.035715554,0.11675283,-0.5384187,-0.101408064,0.41308415,-0.12595437,-0.19353189,-0.23797925,0.04114646,0.55698186,-0.21823435,-0.25739312,0.12850194,0.340518,-0.15689889,-0.52392226,-0.23059237,-0.24099381,0.34287772,0.07116748,-0.31385818,-0.14731704,-0.13916847,-0.4788978,0.13515545,0.19745927,-0.39204633,0.08275617,-0.250914,0.13815407,0.9606841,-0.21351366,0.1028117,-0.4789168,-0.54219234,-0.9126475,-0.28879836,0.46452975,0.08285623,0.05019185,-0.5513522,-0.027719835,-0.13214691,-0.24700606,-0.08428657,-0.42177153,0.3279291,0.16215634,0.60125893,0.0010181492,-0.986406,0.14135605,0.20219664,-0.3108281,-0.8017292,0.40316805,-0.15923968,0.8829997,0.09151492,0.01258073,0.331762,-0.6017881,-0.13137095,-0.2701681,-0.16545027,-0.6367959,0.31754076 +138,0.40187934,-0.18307863,-0.4956439,-0.080496185,-0.23262222,0.0051025325,-0.21985033,0.61438215,0.20685151,-0.21558264,0.04967097,-0.089924954,0.028345129,0.5503941,-0.07783176,-0.5264827,0.025314305,0.1773607,-0.57875973,0.76102537,-0.33885616,0.15992053,-0.20870127,0.52039206,0.19158018,0.29510143,-0.058567822,0.018320078,-0.1804534,-0.20035444,-0.055508547,0.34300205,-0.52901065,0.11813694,-0.19575277,-0.34319645,-0.10916654,-0.41520688,-0.3771312,-0.76757103,0.19729283,-0.8005292,0.6132776,0.01371304,-0.36597633,0.32671213,0.2605233,0.3754802,-0.17196761,-0.11424619,0.08149614,0.040546875,0.13508302,-0.29935905,-0.24827416,-0.5848235,-0.52745306,0.048282605,-0.52235174,-0.09826847,-0.10610799,0.17079698,-0.2796957,0.0040484197,-0.11805112,0.42553166,-0.377479,0.26204935,0.22181927,-0.03928296,0.17193285,-0.42055866,-0.3609856,-0.08852001,0.27718377,-0.06887935,-0.16437303,0.30020484,0.13797633,0.3806172,-0.29155293,-0.0128145665,-0.39542872,-0.008938159,-0.10862819,0.5635158,-0.24012573,-0.62944984,-0.17526641,0.04143264,0.17679112,0.1313583,0.21030791,-0.14827636,-0.030189842,-0.03992471,-0.25952166,0.3113539,0.4218674,-0.34070507,-0.37120986,0.31688395,0.40014344,0.16596964,-0.40352282,-0.10888996,0.048867054,-0.52627325,-0.05497821,-0.101718076,0.027293993,0.57267565,-0.03525006,0.19980101,0.47056702,-0.051776495,-0.16071184,0.12688011,0.06959583,-0.045262914,-0.16024433,-0.3420308,0.2049384,-0.2746195,0.07981139,-0.18369712,0.47140414,0.14544967,-0.7507868,0.4096989,-0.6136742,0.093812175,-0.044805117,0.29011366,0.6719348,0.55082387,0.19232914,0.5020971,-0.23225988,0.07631089,-0.0706149,-0.23255886,0.16835268,-0.36866125,0.0075796884,-0.5780042,0.12964621,0.11829967,-0.22850926,0.2875576,0.39426777,-0.54641616,-0.15383206,0.24784608,0.92427206,-0.17840378,-0.12251188,0.7742613,1.1043298,0.9142205,-0.006841581,0.88446254,0.26328528,-0.15208654,0.33920178,-0.2656917,-0.726881,0.24989082,0.2431785,-0.37298805,0.5068661,-0.050576415,-0.05851667,0.48100725,-0.20505333,-0.011496561,-0.09343846,0.1442616,0.22110632,-0.21097812,-0.3661683,-0.29447475,-0.07285642,-0.1761764,0.26419592,0.28967252,-0.25627628,0.5668889,0.04369959,1.7484705,0.097792216,0.0474801,0.078638636,0.70545584,0.2708064,-0.1989828,0.0057344777,0.47314644,0.23940112,0.12568875,-0.45049837,0.23796555,-0.21316116,-0.5132113,-0.1337537,-0.37529534,-0.26662645,-0.1052837,-0.4942095,-0.263748,-0.19011627,0.037568748,0.43931696,-3.0062382,-0.12150148,-0.09893574,0.28821954,-0.22273979,-0.31515247,-0.06021104,-0.43120173,0.28551072,0.33400223,0.40104422,-0.59141153,0.57031554,0.22404988,-0.46713883,-0.12949036,-0.53973526,-0.1234584,-0.038550723,0.5422401,-0.06964352,0.08193527,0.24976185,0.2722015,0.40808615,-0.08732474,0.12756507,0.2819616,0.4924086,0.048396856,0.36202955,-0.10999964,0.42867312,-0.3341146,-0.20799208,0.26432937,-0.48988128,0.27970082,0.09956529,0.14921641,0.45611387,-0.38718358,-0.8811029,-0.6292983,0.24854037,0.99586153,-0.1316085,-0.44598168,0.11894839,-0.5112307,-0.33531907,-0.12881456,0.43056816,-0.024479976,0.017140493,-0.7789506,-0.11536755,-0.15912412,0.23033473,-0.0067151827,-0.040383916,-0.34621438,0.6230516,0.109986484,0.4636209,0.16883479,0.10130943,-0.42011493,-0.4269157,0.095245436,0.63348675,0.27918646,0.14131515,-0.06267402,-0.23575878,-0.41967407,-0.033476744,0.16921191,0.6171593,0.3049887,-0.07836794,0.16937163,0.24436654,-0.16522405,0.11737505,-0.16450922,-0.21043113,-0.08327744,0.10204796,0.47247162,0.79680246,-0.30891594,0.5479814,-0.010660738,0.33043566,-0.24484432,-0.45267186,0.5778004,0.8860297,-0.19627318,-0.33764964,0.54964006,0.60559577,-0.27744135,0.37282842,-0.6063737,-0.34731,0.38801056,-0.13392022,-0.25488,0.33708474,-0.2094902,0.1760404,-0.88782734,0.20288198,-0.2771307,-0.3699579,-0.625462,-0.0066098147,-3.166443,0.16108724,-0.01336386,-0.32173106,-0.15270638,-0.16915712,0.25828832,-0.654677,-0.54859024,0.10419689,0.14222233,0.5902181,-0.1401793,0.11123346,-0.24154523,-0.38632122,-0.26893806,0.32735807,0.13854781,0.3787165,0.007032982,-0.46235138,-0.2535707,-0.012403109,-0.47181,0.14154822,-0.6993441,-0.4291117,-0.09320694,-0.5823632,-0.16561113,0.6025186,-0.26140586,0.02942751,-0.30541924,-0.018803272,-0.19541751,0.24152899,0.040282674,0.100114465,0.039512645,-0.119980805,0.23357823,-0.31569389,0.22825922,-0.09163376,0.4226356,0.2152021,-0.1386604,0.24656066,0.5749365,0.65243024,-0.023669157,0.6910235,0.5017871,-0.03587377,0.447574,-0.3326978,-0.17294447,-0.34544554,-0.1477154,0.025399502,-0.27125135,-0.45409587,-0.14401838,-0.43105832,-0.72740203,0.45379657,-0.065351546,0.09731804,-0.04027397,0.2926948,0.58802754,-0.17341027,0.07011123,-0.0441549,-0.169873,-0.45642295,-0.32806155,-0.45119312,-0.3478348,0.13787164,0.91373223,-0.12125884,-0.047099207,0.12065901,-0.30397716,-0.07886811,0.20882702,0.018492429,0.14013886,0.34582952,-0.29903343,-0.70959324,0.32990956,-0.22969899,-0.23530926,-0.54433703,0.2501553,0.49888915,-0.5553333,0.6486853,0.29047266,0.10742007,-0.24315785,-0.42666048,-0.092700586,0.024368372,-0.07786477,0.33044678,0.302762,-0.75814754,0.27346292,0.352981,-0.36965615,-0.5098964,0.54930127,-0.0981423,-0.39320812,-0.18244103,0.2049317,0.18555002,0.07097425,-0.27183372,0.14152515,-0.4498324,0.16682832,0.2148491,-0.052007377,0.26788044,-0.17130505,0.08052576,-0.67877525,0.025641212,-0.40290913,-0.45680204,0.39673752,0.18052138,0.17473412,0.0728567,-0.067216724,0.17594954,-0.2994916,-0.017030368,-0.2025286,-0.20230272,0.37059593,0.36726615,0.5282093,-0.55452645,0.58478314,0.059775837,-0.07047233,0.22696193,0.08102429,0.3703701,0.08903027,0.46692866,0.21005014,-0.25519678,0.29372475,0.68094313,0.26100737,0.4455895,0.074632004,-0.11222495,0.15658154,-0.09835511,0.03327092,-0.041988093,-0.46538016,-0.1277422,-0.26188454,0.22755836,0.48117328,0.06488284,0.15475622,-0.10046768,-0.42618105,0.09679097,0.23421218,0.03973091,-1.5592412,0.24742761,0.29496357,0.79563755,0.2727234,0.07208012,-0.0129188765,0.87863857,-0.16598389,0.07200628,0.4794925,0.08578426,-0.45021078,0.66238785,-0.7101101,0.51914924,0.014430157,-0.023257613,0.061529938,-0.11818683,0.36003563,0.7342239,-0.10778683,0.027005116,0.23020516,-0.48600695,-0.041092426,-0.270895,0.14968786,-0.57690763,-0.12965208,0.50084436,0.5795151,0.40826663,-0.31771994,0.08355639,0.1207065,-0.14188531,0.046544723,0.12277244,0.17603625,-0.16557758,-0.687213,-0.015121238,0.66918856,-0.23543371,0.13247915,0.08005142,-0.36128125,0.39376742,-0.21857418,-0.056399327,-0.068638034,-0.58108795,0.17700294,-0.29161072,-0.48518297,0.75020367,0.0075225234,0.18082483,0.25320226,0.12857231,-0.25610903,0.36292413,-0.13104759,0.803197,-0.0997872,-0.096516944,-0.31777143,0.061360266,0.15159026,-0.1216225,-0.046429846,-0.32876825,0.06136888,-0.3003912,0.32567528,0.06159765,-0.2613402,-0.32913333,0.10783846,0.2415873,0.50064373,-0.18800369,-0.23805006,-0.08950999,0.02626015,-0.40904683,-0.14175278,-0.070013605,0.35686466,0.2815164,0.012431915,-0.060559094,-0.07418161,-0.06415399,0.4725106,-0.09244343,0.5006671,0.49978685,0.37961194,-0.13667372,-0.086625695,0.20627682,0.50062144,-0.024005065,-0.04455059,-0.37626022,-0.50977993,-0.4601204,0.30820274,-0.16095607,0.3693476,0.1081013,-0.28555533,0.7812028,-0.06267563,1.1699963,-0.0046480712,-0.3606689,0.3189203,0.47167447,0.12001198,0.0050018346,-0.37998146,0.90029675,0.5401758,-0.080650054,-0.099392556,-0.26755807,-0.086136885,0.06379864,-0.3015634,-0.24362932,0.062006775,-0.585895,-0.14355652,0.10912842,0.2339628,0.38646033,-0.1819471,0.19732258,0.20742448,0.056020487,0.09595169,-0.35857767,-0.22865728,0.3022863,0.3216856,-0.0038210514,0.056266163,-0.5975698,0.2819019,-0.3544164,0.083067894,-0.4108595,0.24420463,-0.14127912,-0.36634445,0.100481376,-0.025722282,0.23436669,-0.51891226,-0.26701757,-0.24488637,0.46858397,0.1544014,0.029355465,0.45797488,-0.15161763,-0.026807556,0.033999305,0.523236,0.90311015,-0.31060988,-0.15364246,0.34583706,-0.37550277,-0.8034109,0.23382533,-0.22458191,0.40876463,0.010390674,-0.08341749,-0.6878237,0.38685226,0.14062066,0.061478052,-0.2397785,-0.52450293,-0.2318352,0.3248648,-0.2727329,-0.21739519,-0.35108134,0.06695373,0.48208174,-0.14587621,-0.26397687,0.12256249,0.2986199,-0.1121118,-0.504494,0.0039454526,-0.45388085,0.29168877,0.12685513,-0.31236437,-0.30645448,0.05222165,-0.4104211,0.31743893,0.17182183,-0.31686184,0.12961856,-0.47289842,-0.092746176,0.9607118,-0.2683706,0.15820085,-0.58040535,-0.5377614,-0.8342963,-0.59222174,0.32564571,0.22430758,-0.039831072,-0.66649693,0.01621237,-0.023505973,-0.4168896,-0.18038033,-0.3245871,0.38502976,0.012444807,0.23712976,-0.057871062,-0.7526422,0.16804056,0.09376804,-0.14057885,-0.6458122,0.5238447,-0.06998099,0.9613033,0.05714936,0.27236483,0.4054382,-0.35687357,-0.24592683,-0.11720554,-0.1398398,-0.5442951,0.010146891 +139,0.3567391,-0.22980584,-0.4052083,-0.039953332,-0.1536046,0.046286307,-0.2044421,0.34551537,0.06354611,-0.3991806,0.014044251,-0.22440861,-0.030229572,0.54824346,-0.074949786,-0.61933863,-0.0030810465,-0.039460234,-0.4430426,0.67005146,-0.39989802,0.18892878,0.029844813,0.33101338,0.24532554,0.3465428,0.29447865,-0.06583266,-0.07249462,-0.04177126,-0.1236097,0.13337313,-0.47113654,0.18707739,0.07560824,-0.27245232,0.071742296,-0.28305912,-0.65599054,-0.62646353,0.39282528,-0.8532454,0.4186386,0.12409384,-0.24705386,0.14414433,0.2246525,0.17054349,-0.36930114,-0.043662373,0.18112111,-0.11530789,0.019851528,-0.22066604,-0.27788928,-0.3966317,-0.4522977,-0.02217267,-0.5281534,-0.36421484,-0.25688818,0.12678808,-0.43014398,-0.12340816,-0.052942906,0.39585465,-0.47530985,-0.22121045,0.3386292,-0.1754558,0.3074667,-0.7817612,-0.15358719,-0.09185413,0.07342068,-0.09873327,-0.14406018,0.32685155,0.15137964,0.38987195,-0.053273696,-0.18043955,-0.16655289,-0.22651654,0.05133519,0.6110202,-0.20969719,-0.46243727,-0.19006109,0.15211558,-0.021427425,0.23171416,0.013519053,-0.5712029,-0.103279576,-0.011718319,-0.13948816,0.27452376,0.5071504,-0.33771574,-0.26549658,0.24262987,0.24502498,0.19879672,-0.082365036,-0.02891794,0.008766899,-0.5735905,-0.12167049,0.17955248,-0.07524682,0.526365,-0.07938449,0.35873845,0.60672605,-0.058899004,0.20067915,-0.14589965,0.07296836,-0.13285153,-0.2802742,0.0014970119,0.14518283,-0.40783244,0.17232282,-0.044206467,0.8053159,0.22400625,-0.5787318,0.43996194,-0.5512995,0.25180012,-0.0709448,0.5724564,0.76880866,0.11069688,0.2695448,0.831339,-0.32279727,0.06331287,-0.1080793,-0.27021214,-0.024392055,-0.17456001,0.12405172,-0.5195777,-0.04215962,0.058974497,-0.043368585,0.029848795,0.42025203,-0.47869757,-0.043823596,0.123364486,0.78148204,-0.27899683,0.15818764,0.5015092,0.9549396,0.8216039,0.07094231,1.1425067,0.3029011,-0.3059407,0.33250177,-0.16362582,-0.753335,0.22035098,0.5456777,0.50774646,0.23463066,0.051245574,-0.20853986,0.5176958,-0.40739948,0.13407217,-0.33525065,-0.0014078662,0.1904897,-0.025304519,-0.3380608,-0.26750606,-0.21155564,0.122286946,-0.061332934,0.20543417,-0.24116307,0.31910345,-0.16015036,1.7087505,-0.2027848,0.14534216,0.22402468,0.5404732,0.2078699,-0.078619294,-0.0154041145,0.26103222,0.38836145,0.12126394,-0.60880095,0.111926,-0.26058087,-0.561873,-0.101685755,-0.34015104,-0.06723661,0.056919638,-0.56297135,-0.13371183,0.0761445,-0.30065992,0.46165717,-2.7728717,-0.17373759,-0.2363678,0.19917308,-0.3561107,-0.16654713,-0.17021233,-0.24408728,0.5508355,0.4252019,0.5636827,-0.58271974,0.038325243,0.41191885,-0.38506463,-0.106804505,-0.55216116,-0.0020973498,-0.07479265,0.5093248,-0.0108555835,-0.21001849,0.1423642,0.16293629,0.5230093,-0.027283741,-0.09751853,0.2431008,0.29391903,0.024860315,0.36444414,-0.089449495,0.4280351,-0.38901263,-0.2237249,0.36110258,-0.1700049,0.36574772,-0.17129947,0.16212958,0.4140379,-0.4118838,-0.7713929,-0.5093054,-0.3553594,1.1198096,-0.29561198,-0.40584856,0.34061888,-0.32288954,0.022455981,-0.09869663,0.6301808,-0.13194765,0.11101927,-0.681404,0.21181114,-0.16350006,0.11602296,0.040472332,-0.12760809,-0.34359777,0.81518567,-0.0050535295,0.41786325,0.3911428,0.050543133,-0.19057395,-0.45889223,0.10374768,0.7098799,0.41469738,0.1443944,-0.023121087,-0.07841451,-0.03553971,-0.28479168,0.18245885,0.6250512,0.7061132,0.06042451,0.115456305,0.23968121,-0.015535951,-0.02424617,-0.089491114,-0.24712586,-0.1291321,0.24881946,0.68702656,0.59471583,-0.05257733,0.4734872,-0.11873531,0.21641278,-0.10422676,-0.4113577,0.50106966,0.84803635,-0.16942117,-0.25133803,0.48195928,0.55788255,-0.34416014,0.31229272,-0.6180262,-0.4540067,0.44074276,-0.24165143,-0.45447034,0.32774052,-0.44213355,0.07212884,-0.84783787,0.21691278,-0.2184822,-0.39679882,-0.52681804,-0.15546714,-3.839506,0.28707474,-0.5154159,-0.16516219,-0.11006513,-0.10730334,0.22300166,-0.59309804,-0.30430955,0.16311906,0.0135006625,0.45698655,-0.036947113,0.083103165,-0.1560075,-0.039624434,-0.042651158,0.14517926,-0.08275582,0.32794842,-0.13001493,-0.32056096,-0.058527414,-0.12672442,-0.42094892,0.057281893,-0.6394255,-0.43235442,-0.2589194,-0.59479004,-0.21299498,0.64885944,-0.2611479,0.019723821,-0.17585517,-0.02466413,-0.20078762,0.3654149,0.35402077,0.31543288,-0.032863524,0.0029941958,-0.18495996,-0.34645474,0.076879136,0.06070041,0.22868729,0.46890047,-0.10477312,0.2668122,0.41269335,0.4129036,-0.21338591,0.73792225,0.6010388,-0.13216224,0.28553322,-0.30154294,-0.086242676,-0.53487486,-0.49409977,0.053426113,-0.22897151,-0.57522446,-0.13389793,-0.23176393,-0.56936336,0.4546345,-0.049928103,0.22395235,0.102008544,0.15339369,0.5096563,-0.19371568,-0.13664685,0.10618806,-0.1449231,-0.5999064,-0.3347507,-0.5478293,-0.6059658,0.17084011,0.8642901,-0.106219955,-0.1785406,0.100925244,-0.3834595,-0.15388587,-0.014006507,0.12866262,0.15665418,0.15787853,-0.039078675,-0.72070724,0.5498397,-0.065405674,-0.17927636,-0.5081215,0.2091133,0.49313864,-0.62750995,0.59231627,0.20720783,0.23922573,-0.18044265,-0.41280362,-0.31312183,0.1282611,-0.22037734,0.24223955,0.10831761,-0.72413296,0.38023192,0.32726017,-0.2570554,-0.70415604,0.39443964,-0.013376921,-0.33643156,0.058676764,0.3110312,-0.006914533,0.011243839,-0.13334516,0.20480527,-0.336802,0.29351807,0.18805386,0.0378407,0.34570086,-0.08175098,-0.25461575,-0.37247482,0.19117199,-0.43187243,-0.2536082,0.38756686,-0.03144086,0.043361075,0.013804702,-0.11340471,0.38862073,-0.08511435,0.21094848,-0.04994472,-0.35987183,0.389598,0.46890014,0.41419488,-0.44200423,0.72426003,-0.07899253,0.07145668,0.06589531,0.2830807,0.46528238,0.23072416,0.36241537,-0.2896468,-0.13311695,0.19232222,1.0458367,0.1355159,0.4457782,0.10323693,0.02719882,0.23528817,0.06298025,-0.027095983,0.048171148,-0.42823368,-0.09949798,-0.078642674,0.30663252,0.4165541,0.039323475,0.3393035,-0.17540345,-0.40164405,0.16245078,0.22241369,0.15337868,-1.0145557,0.42646343,0.14086029,0.6078042,0.35654405,-0.08849311,-0.088909335,0.65027606,-0.10611414,0.08317422,0.15516615,-0.27939636,-0.64637035,0.64328945,-0.6682982,0.49453858,-0.09914069,-0.070354946,0.05751913,0.1823306,0.3433359,0.59207445,-0.13774422,-0.09059943,-0.022925872,-0.3889467,-0.086605825,-0.40766937,0.11356202,-0.40929112,-0.58038497,0.48387557,0.5561647,0.1521464,-0.12541333,-0.03163721,0.020626279,-0.07447633,0.26297078,-0.062382154,0.11385903,-0.079647645,-0.764576,-0.28899005,0.49289015,-0.09200808,0.20990938,0.004579294,0.029397447,0.22190131,-0.16047503,-0.045831807,-0.12434246,-0.6144486,0.2988861,-0.48258835,-0.6161513,0.4259028,-0.35889533,0.29234517,0.26063687,0.092246294,-0.34211084,0.5064293,0.019449335,1.0174841,-0.34200928,-0.24790327,-0.4283849,-0.052850842,0.19534792,-0.20442802,-0.1777977,-0.2965133,-0.00018555384,-0.6923316,0.51965934,-0.06346116,-0.2771465,0.19927678,-0.285173,-0.062664114,0.56992126,-0.06261596,-0.23727319,-0.17419471,-0.18166113,-0.3214168,-0.15767598,-0.18964349,0.27229136,0.25338835,0.16293192,-0.15365356,-0.17372265,-0.057804685,0.37640822,-0.09252152,0.2844795,0.29899856,0.3306452,-0.17355354,0.0018387208,0.41274312,0.5774821,0.24607784,0.09935909,-0.15493752,-0.39543745,-0.34110922,0.017421437,-0.14522551,0.4024573,0.23296975,-0.54446924,0.71814317,0.043501653,1.0398437,0.0052138614,-0.24593657,0.11434828,0.41126913,-0.009822651,-0.037796583,-0.15438938,0.8535632,0.73143685,0.06345984,-0.14365038,-0.22236195,-0.14955394,0.40035307,-0.2597903,-0.008055052,0.05157487,-0.5899073,-0.30616775,0.16354793,0.20322336,0.13970807,-0.11169502,-0.10694778,0.031135837,-0.012311252,0.1705339,-0.40325418,-0.06497299,0.28890374,0.19615339,-0.11318685,0.16235454,-0.44036546,0.46017477,-0.6188525,0.1695017,-0.42083994,0.13932434,-0.107927956,-0.13088922,0.2305584,-0.08139488,0.54851204,-0.26815888,-0.17543295,-0.13223729,0.574548,0.16628188,0.15796775,0.61748445,-0.17114732,0.12702996,0.0064161145,0.5898424,1.0522965,-0.41076946,-0.08187051,0.19173525,-0.3304446,-0.7592395,0.38916954,-0.20643902,0.09140341,-0.11073612,-0.30667055,-0.5598767,0.16000761,0.29861367,0.007183075,-0.1499045,-0.48793137,-0.31565684,0.20356622,-0.15834929,-0.30541185,-0.57124865,0.14871944,0.52533305,-0.1692353,-0.21411473,0.2214466,0.18858913,-0.22670975,-0.50783944,0.22806285,-0.19451894,0.1895314,0.14737241,-0.3247884,-0.09150176,0.06672346,-0.4378328,0.20324826,0.00014989651,-0.47159708,0.058248468,-0.0803349,-0.03888933,1.1669172,-0.2536423,-0.04073811,-0.6858459,-0.56929785,-0.81904227,-0.48572943,0.65906894,0.07974897,0.16172685,-0.55689645,-0.090395816,0.06784288,0.16263543,-0.19020359,-0.37929037,0.3316023,-0.018107213,0.43200392,-0.16590473,-0.5988063,0.20602956,0.003549984,0.038899377,-0.515762,0.3338925,-0.12274405,0.7679246,0.023222394,-0.08528114,0.3516743,-0.32987884,0.022208951,-0.19889766,-0.38118377,-0.8471388,0.10754411 +140,0.34470573,-0.21005327,-0.43554005,-0.00033728665,-0.19975582,-0.025831204,-0.42454985,0.27501252,0.19109303,-0.52493286,-0.29394895,-0.10000776,0.00023186207,0.20247872,-0.12926494,-0.3101732,-0.013015289,0.2533806,-0.4063894,0.59305394,-0.3936965,0.12955178,0.1210765,0.64269537,0.2210398,0.12249382,0.08447458,0.045332786,-0.36183712,-0.5979043,0.06832309,0.043007374,-0.85177904,0.32957843,-0.39492887,-0.61226535,-0.17700149,-0.55095685,-0.32240105,-0.83147424,0.12216977,-1.0647267,0.5766416,-0.013474729,-0.35240057,0.30676806,0.19709979,0.3818832,0.011954033,0.15412137,0.23033431,-0.4033871,-0.20588829,-0.24498908,-0.0939081,-0.23616081,-0.38804203,0.016331188,-0.400362,0.041439634,-0.41068393,0.22371681,-0.21720126,-0.021082897,-0.1816097,0.31013197,-0.4482876,-0.019989196,0.011996549,0.041622683,0.47649494,-0.56395054,-0.342394,-0.1792678,0.21700683,-0.19303784,-0.32750437,0.26324368,0.20688185,0.4734343,-0.038830582,-0.14658213,-0.19857353,0.051261965,0.18627106,0.45536762,-0.18955906,-0.22998737,-0.22805776,-0.17745543,0.5535058,0.40645683,0.03720834,-0.26453993,-0.0386861,-0.09974931,-0.20911972,0.24764384,0.46426412,-0.15467095,-0.13672285,0.30662367,0.42847708,0.32194597,-0.15054363,-0.020371033,0.011870171,-0.3835904,-0.15572757,0.091791466,-0.168062,0.58262354,-0.052750684,0.32081982,0.4657386,-0.23374936,0.07869895,0.26104996,0.12672445,-0.07110041,-0.21419975,-0.6021742,0.38583213,-0.56713206,0.32439083,-0.42186868,0.6952835,-0.07628438,-0.7646844,0.26125258,-0.5828046,-0.0024273086,-0.11434893,0.68943727,0.79110676,0.48331797,0.44314477,0.6499615,-0.301051,-0.07645542,-0.25439316,-0.008551557,-0.05847949,-0.25643703,0.06480295,-0.46069872,-0.28796828,-0.08367289,-0.096294254,0.021669094,0.6438474,-0.40757605,-0.18176214,0.16410774,0.7125539,-0.24170639,0.03416442,1.0312421,1.3056314,1.0617417,0.20485057,1.057903,0.23743118,-0.19424877,-0.22261,0.074719466,-0.5260158,0.38369462,0.2917062,0.15550368,0.13689007,0.24405292,-0.09324099,0.3472177,-0.6184989,-0.10040515,-0.15652965,0.1607948,-0.13775992,0.06621192,-0.41743162,-0.33612964,0.035696257,-0.030275045,-0.011426302,0.27860123,-0.3494177,0.46913293,0.04682507,1.1663086,-0.2923935,-0.08922955,-0.1285666,0.53859913,0.019314848,-0.24316886,0.007411645,0.15354005,0.3183786,-0.113581546,-0.54743284,0.04620262,-0.14725587,-0.4382521,-0.16848844,-0.21619973,-0.2237188,-0.03964833,-0.31445006,-0.23602684,-0.031412676,-0.41415405,0.2854176,-2.4719813,-0.20264207,-0.09126699,0.29948524,-0.25229707,-0.29553396,-0.030604033,-0.3762481,0.7590083,0.29752538,0.40743777,-0.5511407,0.43443808,0.4767644,-0.38833788,-0.2244468,-0.7976046,-0.10458484,-0.06015271,0.30834186,-0.022345586,-0.19632238,-0.034036424,0.030760344,0.62464106,0.02673811,0.23770553,0.27648118,0.279664,-0.08626053,0.3604539,0.16720396,0.49404314,-0.36309668,-0.29204392,0.35239756,-0.41190845,0.32006806,-0.19615465,0.09761923,0.5095723,-0.4306133,-0.7514974,-0.8614816,-0.46448934,1.2642443,-0.20231496,-0.7625717,0.12215508,-0.25110298,-0.28225186,0.08243193,0.5828105,-0.10023124,0.1242382,-0.83699983,-0.15014718,-0.108113974,0.2981154,-0.048435643,0.19450822,-0.6251582,0.71757704,-0.10519964,0.30779007,0.34360343,0.36557287,-0.1798928,-0.35396558,0.13027622,0.97931343,0.3979208,0.19277486,-0.3739511,-0.20896967,-0.29213288,-0.013523588,0.20565261,0.59829116,0.62327933,-0.035649758,0.17069882,0.2291283,-0.16148263,-0.05153048,-0.2481185,-0.38417542,-0.24228168,0.12917854,0.8189299,0.58571935,0.24559769,0.55477643,-0.07524727,0.32491505,-0.24036685,-0.48649356,0.5059125,0.8083675,-0.16729546,-0.09861212,0.6920526,0.5368017,-0.19783928,0.45620066,-0.80213004,-0.49111828,0.26062357,0.09436901,-0.50605494,0.19552635,-0.33881024,0.23807192,-0.8173444,0.34763372,-0.46704406,-0.6793548,-0.68595606,-0.13907672,-1.9889438,0.27468154,-0.17677027,-0.3737524,-0.21377318,-0.57578737,0.3621179,-0.5214641,-0.5679437,0.09729101,-0.01727346,0.76933825,-0.11909901,0.012022587,-0.2597297,-0.39522508,-0.31649926,0.033117812,0.24564335,0.27349195,-0.1393149,-0.33501923,0.09046291,-0.059816845,-0.30166003,-0.17734617,-0.5985862,-0.6040961,-0.08107794,-0.36485228,-0.25039938,0.37475055,-0.35496905,0.048813447,-0.29758126,-0.018473767,0.029107746,0.3547921,0.14026232,0.32054928,0.13564125,-0.07693231,0.009719698,-0.28032798,0.19932279,0.15574875,-0.07406525,0.39004105,-0.30131453,0.39897096,0.29195184,0.6085405,-0.17835408,0.90091574,0.4519665,-0.14241785,0.25290215,-0.3687155,-0.479598,-0.5663019,-0.23882915,0.024851276,-0.41785723,-0.38476837,0.03514444,-0.20844923,-1.0575781,0.67913663,0.12493988,0.16677539,-0.0454223,0.34859556,0.33455414,-0.21136108,-0.19211848,-0.015584066,-0.0133005865,-0.59994847,-0.44932115,-0.7135074,-0.39943486,-0.35213786,0.8648666,-0.035229612,0.16227348,0.36915654,-0.16769937,0.110547096,0.1617122,-0.07270218,-0.24489154,0.50217795,0.051831678,-0.6573852,0.33878538,0.11134954,-0.14068055,-0.6646413,0.4793148,0.9002294,-0.5666355,0.43982854,0.5763347,0.16310376,-0.3993263,-0.5973741,-0.16844378,-0.107415386,-0.26050112,0.4665395,0.2253697,-0.880247,0.46979487,0.3587742,-0.11025321,-0.76668096,0.5617198,-0.0462114,-0.3291682,-0.05844839,0.29837024,-0.0323647,0.124920875,-0.12670057,0.27646318,-0.28713983,0.4256987,0.06701061,-0.1655754,0.24810351,-0.33448073,-0.09865956,-0.6320573,0.24056648,-0.56911457,-0.438381,0.12882857,0.018780887,-0.055423997,0.52846473,0.12574606,0.39902037,-0.22111487,0.04433718,-0.34917748,-0.27557063,0.25731197,0.6167091,0.53737664,-0.23499726,0.67235124,0.14612852,-0.29218787,-0.3366223,-0.027327977,0.39473107,-0.025758794,0.44121015,-0.18712433,-0.19859006,0.13626646,0.65342766,0.22843622,0.51861346,-0.06994213,0.06023384,0.22465636,0.085144706,0.42718437,-0.0281384,-0.55711406,-0.02825854,-0.41155073,0.06288583,0.35304147,0.14423205,0.24692465,0.027624566,-0.10039585,0.12132274,-0.0018445116,-0.09077234,-1.3319904,0.5934894,0.17407434,0.7737594,0.57492524,-0.09471735,0.1079849,0.7962208,-0.36820194,-0.11539722,0.28019905,0.31296209,-0.3445563,0.62030035,-0.88745534,0.38244268,-0.08926973,0.03512856,-0.08086015,-0.1091355,0.48781115,0.8302998,-0.23120576,0.19625694,-0.094666354,-0.26143053,-0.044965543,-0.2910237,0.24102235,-0.5920591,-0.38059077,0.8926106,0.35188407,0.485809,-0.2801607,0.030995773,0.024545716,-0.14189075,0.17191073,0.19279647,0.093198664,0.0150576,-0.5819163,0.042833943,0.5131679,-0.19323072,0.07970001,0.1059282,-0.15473253,0.15134308,-0.012752586,-0.12163023,0.07298189,-0.70130485,-0.01904778,-0.55311644,-0.25543553,0.2922486,-0.30319643,0.09706618,0.17201519,0.079072386,0.06993008,0.27086592,0.3374508,0.626894,0.24692465,-0.17110182,-0.20872465,0.25123957,0.24718349,-0.12884685,-0.08321603,-0.1311954,-0.0562829,-0.6858403,0.39180094,-0.21497084,-0.26053876,0.36372378,0.010181264,0.016109165,0.51530546,0.05887655,-0.10884703,0.24575089,-0.349908,-0.37765497,-0.18151408,-0.036849108,0.26757556,0.11337604,-0.10621834,-0.069377735,-0.09626227,-0.18936814,0.46757552,0.014875008,0.4659979,0.34848875,0.05623237,-0.3669151,-0.04597131,-0.07943292,0.6252557,-0.10129058,-0.06490943,-0.2522264,-0.3161574,-0.33645806,0.3299576,-0.1282027,0.18141103,0.06960832,-0.18857911,0.9677537,0.02633668,1.0002824,-0.041720983,-0.37676093,0.16310018,0.4077788,-0.20445158,-0.15230547,-0.43689677,0.84371597,0.38403708,-0.06959532,0.0005416916,-0.43825153,-0.15163252,0.28429353,-0.18170752,-0.20952453,-0.11500895,-0.6726821,-0.14227279,0.211426,0.46411002,-0.10100655,-0.001057955,0.17432943,0.47141662,0.07988335,0.39679337,-0.47561428,-0.15611762,0.48417032,0.30832526,-0.1827951,0.027303966,-0.35095003,0.31555808,-0.6228769,-0.020970877,-0.27147108,-0.010886701,-0.23901749,-0.39680678,0.19599618,0.16849175,0.38962248,-0.26680642,-0.18246332,-0.18063821,0.4173661,0.13432324,0.23014203,0.43276235,-0.17272322,0.11044161,0.009937594,0.27730832,1.1713977,-0.31949085,0.07304906,0.2444995,-0.35359985,-0.48711225,0.37011716,-0.44971514,0.16627121,0.17070359,-0.36788633,-0.49203894,0.15672973,0.12633194,-0.01946982,0.06910556,-0.6496582,0.028048672,0.25629857,-0.045147315,-0.14098042,-0.29378334,0.1259997,0.46050218,-0.0060663405,-0.36287016,-0.059899747,0.48780045,-0.319327,-0.38368207,0.07001615,-0.3754069,0.2929629,-0.14726368,-0.41697317,-0.024112765,0.018114783,-0.46745792,-0.14725138,0.13444422,-0.30800718,0.09896671,-0.36045045,0.2769092,0.73814523,-0.20275585,0.11582826,-0.46813008,-0.5427673,-0.62577736,-0.20135865,0.14786993,0.39907682,0.042576093,-0.46929204,0.13330871,-0.11739215,-0.10695663,-0.07749633,-0.4722295,0.43056944,0.22702225,0.49145985,-0.020810591,-0.74762756,0.2796225,-0.018728562,-0.11040829,-0.3815932,0.526081,0.016750386,0.7162632,0.0888567,0.04442358,-0.028957019,-0.6180257,0.12135896,-0.07624523,-0.11401301,-0.7535393,-0.05668052 +141,0.23484136,-0.142541,-0.4932339,-0.10316086,-0.20242733,-0.13550074,-0.19450215,0.30686787,0.35114336,-0.082691275,-0.28790382,-0.15593521,0.1936055,0.3970948,-0.0014881629,-0.5578693,-0.17315406,0.19161122,-0.77789146,0.5500424,-0.5174099,0.18135937,0.06412148,0.3457491,0.17647591,0.40864804,0.1807861,-0.1434822,-0.12473266,0.015931942,-0.09698987,0.29050896,-0.6236359,-0.0060302294,-0.21931103,-0.20207712,0.08235387,-0.5392058,-0.34787962,-0.61287963,0.14742611,-0.8299507,0.39696124,0.003456455,0.014665772,0.06983652,0.1864349,0.37174895,-0.36840153,-0.19777025,0.29390758,-0.1392182,-0.08346582,-0.23908274,0.016551256,-0.116085164,-0.47444484,-0.037400343,-0.42981642,-0.2544977,-0.24969107,0.02286038,-0.35672453,-0.032493465,-0.087689705,0.41279718,-0.34638363,0.11652207,0.23887938,-0.18050715,0.20346037,-0.46328494,0.07103176,-0.09088524,0.540098,-0.11375076,-0.15577617,0.42336866,0.31662676,0.23688191,0.13439885,-0.18820311,-0.28557703,-0.07514022,0.24530461,0.45311415,-0.17698835,-0.3916351,-0.13356328,0.12832187,-0.043219764,0.24229392,0.05510425,-0.2783262,-0.09871989,-0.07033073,-0.08780773,0.46946743,0.38287324,-0.10268081,-0.389544,0.26152223,0.48410457,0.43414256,-0.2657591,-0.21582478,0.011869109,-0.58430564,-0.18350483,0.03312269,-0.15582466,0.49165195,-0.17304857,0.17783286,0.7182623,-0.048848893,-0.004841839,0.07282216,-0.0026705195,-0.13859046,-0.33913854,0.08088689,0.17052348,-0.57438886,0.15600923,-0.06922107,0.6029692,0.23570047,-0.7301045,0.4853502,-0.6545048,0.23743747,-0.088459305,0.45105842,0.6493753,0.16947968,0.41869628,0.66469234,-0.28936175,0.17753704,0.077053435,-0.5643377,0.117665716,-0.20572203,0.172921,-0.56030667,-0.11786382,-0.12737663,0.1377373,0.22232723,0.0453293,-0.39061758,-0.021782462,0.32690367,0.80749345,-0.24586228,-0.16405883,0.63088834,1.1073526,0.91621244,-0.0009332712,1.2443182,0.12227312,-0.32121882,0.3145069,-0.34087032,-0.8534102,0.13717777,0.31595093,-0.27921516,0.13574544,-0.13083425,0.018728254,0.24398838,-0.39230874,0.09003411,0.07836839,0.19463846,0.15001917,-0.059752353,-0.3695346,-0.32265252,-0.20414597,-0.11750854,0.005369223,0.21301009,-0.079923905,0.23449278,-0.1439205,1.3976896,-0.011258974,0.043075103,0.06491996,0.56430703,0.2973032,-0.11723692,-0.24708249,0.41341904,0.38371488,0.058025215,-0.50702196,0.33283073,-0.3294,-0.29157636,-0.024938826,-0.4297525,-0.06696303,0.24838416,-0.38520378,0.03229712,-0.06341391,-0.32173288,0.4874425,-3.1806912,-0.22245255,-0.036513664,0.1730575,-0.2190006,-0.16992514,-0.16827653,-0.55615085,0.16709556,0.1642069,0.6361115,-0.6181278,0.41311246,0.39591628,-0.61422545,-0.17963961,-0.65772635,-0.19849727,0.08616162,0.31039912,0.04724856,0.1801103,-0.009585039,0.19679591,0.56076854,0.13903134,0.09530508,0.43088758,0.32130164,0.090173945,0.6922839,-0.12187242,0.63672626,-0.26895568,-0.1430854,0.24485806,-0.23764037,0.40887567,-0.1414403,0.093214,0.6665265,-0.40741345,-0.9969851,-0.43030497,-0.33761638,1.0711673,-0.31449425,-0.28974578,0.3013292,-0.35780165,-0.04989542,0.083886296,0.5623006,0.0067294193,0.018932197,-0.64158666,0.025466982,-0.039906796,0.12807432,0.0900421,-0.17889181,-0.38050157,0.66844815,0.09988098,0.5414779,0.31348404,0.22449926,-0.14503701,-0.34841606,0.10391504,0.658197,0.19092768,-0.0077000847,-0.124061264,-0.22671846,-0.24539314,-0.18187381,0.004408057,0.5876305,0.52590245,-0.2053872,0.28458783,0.34496033,0.11431898,0.06606421,-0.09553333,-0.21300077,-0.0062600304,-0.025080983,0.3598474,0.94152516,-0.14669418,0.43726224,-0.0055729495,0.17264143,0.011341801,-0.454727,0.64987415,0.48267823,-0.10705146,0.03796386,0.32368094,0.5885735,-0.37310207,0.4411208,-0.40573853,-0.16830063,0.583449,-0.1968814,-0.36208504,0.20478223,-0.2461115,0.043152608,-0.7015886,0.16535796,-0.32999736,-0.34918207,-0.2513785,0.070952386,-3.7312746,0.14025982,-0.13681538,-0.15310313,-0.38975617,0.008753731,0.14404756,-0.58793664,-0.6581637,0.15901086,0.14830531,0.62290025,-0.1886398,0.06349904,-0.19710132,-0.1539571,-0.18893005,0.24581382,0.17135477,0.31813383,-0.16208313,-0.42253467,-0.22789638,-0.14102633,-0.49840868,0.28322098,-0.4910998,-0.26028708,-0.014101102,-0.58923113,-0.3232005,0.5583939,-0.4333362,-0.068999305,-0.2467416,0.041996837,-0.27477482,0.22760025,0.17970496,0.2362201,0.04910457,0.052386455,0.036554124,-0.28033766,0.5094254,-0.0564127,0.3999702,0.09832323,0.24498004,0.16795936,0.41666377,0.63158786,-0.23810403,1.0589262,0.47263145,-0.06297079,0.24733008,-0.30880868,-0.26118752,-0.47119528,-0.23704712,-0.10366358,-0.32873565,-0.53468233,-0.014564001,-0.33045018,-0.71914643,0.5743021,0.11991571,0.30950814,0.059801176,-0.055561997,0.3734409,-0.18676624,0.12110332,0.00918238,-0.09461145,-0.60694957,-0.054964285,-0.6285552,-0.5891117,0.0940292,0.5303292,-0.39341784,0.020662097,-0.099410824,-0.3854189,0.0080833025,0.19157945,-0.009750564,0.3914184,0.4748841,-0.008626197,-0.55024916,0.4649684,-0.08067067,-0.046702437,-0.48954755,0.094186984,0.547111,-0.7034123,0.7314685,0.30128345,-0.09466909,-0.10403991,-0.42650324,-0.35466626,-0.17642826,-0.13281365,0.27686337,0.14052847,-0.8712622,0.29890016,0.14635715,-0.531303,-0.68932813,0.44249213,0.004737144,-0.21632862,-0.11788174,0.22892745,-0.011481037,-0.01604569,-0.22808442,0.18773769,-0.29179254,0.23618762,0.1474798,-0.03675162,0.15480089,0.076424435,-0.15458092,-0.60280997,0.012160563,-0.33562347,-0.18276317,0.46074194,0.031776454,0.024971914,-0.06448045,0.19224635,0.2019566,-0.30101413,0.13119999,0.06601407,-0.40218416,0.17671312,0.44112617,0.44886014,-0.4505993,0.49309224,0.12024841,-0.28512856,0.3287019,0.04808495,0.3019508,-0.05339801,0.32261026,0.024515422,-0.20187494,0.22028166,0.76270527,0.13312492,0.31061494,-0.026904674,0.06415493,0.3775539,-0.08850371,0.09294736,0.03557717,-0.53221065,0.12990847,-0.28372085,0.22400148,0.45862564,0.2973704,0.21598537,0.18289134,-0.3725309,-0.07854183,0.2879624,0.08946191,-1.0951664,0.47957185,0.193923,0.92483914,0.54559314,0.049697474,-0.117357746,0.69877183,-0.18082666,0.1513759,0.44837093,-0.15057895,-0.5698113,0.7436274,-0.62597984,0.5308,0.019590357,-0.15274002,0.18521729,-0.0026986324,0.22845456,0.67835337,-0.35545218,-0.022351779,0.12592384,-0.18402028,-0.011608188,-0.39152378,-0.09966282,-0.40872988,-0.31682432,0.6326058,0.48449567,0.29826134,-0.21328765,0.0067365286,-0.041928954,-0.13355063,0.18779024,0.020153578,0.035724785,0.20334165,-0.6768093,-0.1245125,0.55214757,-0.2114672,0.19584809,-0.2805118,-0.17651074,0.17410873,-0.36677817,-0.06369659,-0.13785896,-0.7029222,0.10502209,-0.24584875,-0.41966587,0.55223584,-0.20665881,0.26628783,0.1833798,-0.008248334,-0.07533541,0.6572928,0.0556866,0.81119466,-0.040451296,-0.19267955,-0.34317118,0.15067567,0.19192153,-0.14806582,0.021202229,-0.50090086,-0.062948175,-0.32222497,0.6512857,-0.0071146945,-0.39826006,-5.9072787e-05,-0.15545636,0.07818528,0.606973,-0.08390787,-0.16844162,-0.20117474,-0.08724736,-0.4404459,0.014591928,-0.24646582,0.244661,0.52524096,0.041408762,-0.17976657,-0.28486684,-0.14056098,0.36223343,-0.072121024,0.56837386,0.068922214,0.076528296,-0.12879968,-0.042454675,0.3718233,0.5013482,0.14473943,-0.091999546,-0.42171943,-0.16229509,-0.38025528,0.17668149,-0.060579482,0.36566654,0.018145453,-0.17040911,0.5932659,-0.068081245,1.1459296,0.16048335,-0.3171055,0.22027174,0.41324666,-0.1036919,-0.0974718,-0.35242578,0.77640164,0.39292806,-0.03316405,-0.106736355,-0.44967216,0.0069039143,0.17757957,-0.15115575,-0.006725366,0.10030666,-0.37023395,-0.2779668,0.1566519,0.26096642,0.35676888,-0.11518152,-0.065080725,0.117309555,0.13535559,0.2545047,-0.51515007,-0.40333003,0.190224,0.27671194,-0.09893702,0.15903364,-0.3047673,0.47261035,-0.38878706,0.1976555,-0.48357865,0.19165704,-0.36133358,-0.35432306,0.05885094,-0.04490392,0.41570508,-0.23461816,-0.31205717,-0.22457257,0.43896407,0.08946947,0.21477509,0.60660183,-0.2536805,-0.00093324366,0.06502974,0.5963191,0.8120862,-0.4383736,-0.1371807,0.31512004,-0.27809814,-0.48435572,0.36798865,-0.2983754,-0.023875475,-0.074214876,-0.38008034,-0.56114566,0.12759815,-0.007424749,0.12582162,-0.01015556,-0.60159695,-0.07254584,0.13363953,-0.21585353,-0.2629737,-0.39625052,0.18606026,0.7783,-0.31290784,-0.2501701,0.2024867,-0.023856644,-0.14554755,-0.36386377,-0.09231731,-0.2667781,0.21465707,0.027639134,-0.38238966,-0.11390204,0.22262564,-0.39578617,0.27637106,0.06615817,-0.27063087,0.1440168,-0.0056318734,-0.10548111,1.2261376,-0.4155575,-0.007332004,-0.4475575,-0.56798846,-0.70191,-0.36324105,0.30903578,0.07635817,-0.03716286,-0.35407177,0.034758292,-0.0038257563,-0.2316354,-0.0657755,-0.4957221,0.3780786,0.073023416,0.35246122,-0.33299458,-0.83764756,0.17484848,0.14379142,-0.12059657,-0.7385638,0.51857334,-0.04306615,0.76066273,0.017969957,-0.036329407,0.15685727,-0.06358134,-0.06836478,-0.41070524,-0.018868145,-0.6097615,0.14774773 +142,0.43221655,-0.25019357,-0.43143913,0.0706752,-0.37111935,-0.029276466,-0.23935784,0.57134503,0.2585113,-0.3841648,-0.17827709,-0.25547972,0.030723602,0.26768258,-0.15247881,-0.09914252,0.033247292,0.16118734,-0.5429389,0.5996351,-0.32686114,0.25641534,-0.019025704,0.49882603,0.44903216,0.43147126,-0.021933874,0.2946218,-0.01541698,-0.18016784,-0.26299262,-0.19513898,-0.7123526,0.19714886,-0.3708454,-0.59348243,-0.12248165,-0.64327043,-0.56830496,-0.83161765,0.6486468,-0.9617675,0.5198768,-0.00893568,-0.17229472,0.29669914,0.30580142,0.42580295,0.009490694,-0.1873724,0.08659321,-0.09972197,0.3402004,-0.39179602,-0.124375015,-0.32115784,-0.54127085,-0.1569191,-0.40878233,-0.22397375,-0.19541408,0.1837792,-0.3210563,0.07686864,-0.108100645,0.45461473,-0.33024096,0.33678058,-0.013258715,-0.23102105,0.038228557,-0.5238454,-0.16631968,-0.110856235,0.24871321,-0.051244225,-0.12794857,0.40692914,-0.035015196,0.21491891,-0.18925802,-0.021639893,-0.33522883,-0.072047025,-0.07586082,0.5009574,-0.14990868,-0.50055027,-0.14049514,-0.08739707,0.46617457,0.24922584,0.32721135,-0.08731914,-0.06676194,-0.22424264,-0.13191068,0.5669356,0.5318602,-0.12645523,-0.17709374,0.27624607,0.687859,0.21143816,-0.37587634,0.03656669,0.14673452,-0.42697784,-0.11404506,0.007948478,-0.105895996,0.66690487,-0.055744004,0.39231643,0.45246553,-0.42916933,-0.030741593,0.21065712,0.17519237,-0.032446027,-0.15799804,-0.41487074,0.34658182,-0.31896117,-0.007588014,-0.2707548,0.5394109,0.12628941,-0.6302705,0.35415354,-0.7057721,0.04961482,0.109013855,0.36505738,0.57652265,0.6131513,0.41228664,0.7445747,-0.24132274,0.016808897,-0.2905689,-0.12306247,0.11386839,-0.30279323,0.20820306,-0.3674806,-0.08903261,-0.03188666,-0.15742777,0.042101685,0.47606003,-0.5209154,-0.12911926,0.07659324,0.6844112,-0.19809043,0.022500744,1.0085152,0.96193457,0.9493656,0.041459512,0.74717206,0.11215097,-0.12625496,0.045510728,-0.028836563,-0.77675986,0.216211,0.14687237,0.00045766434,0.5612343,0.0748225,0.1404217,0.14370322,-0.49167252,-0.006648836,-0.047770593,0.20677917,0.19285351,-0.070552275,-0.38735342,-0.34238863,-0.054053824,0.14087321,0.2542623,0.32353094,-0.354517,0.38935566,0.083102904,1.799727,0.14758605,0.09809148,0.2280345,0.8126197,0.295287,-0.43443534,-0.08692547,0.32613328,0.19653322,0.16311069,-0.57391423,0.13280226,-0.21244073,-0.40823862,-0.056864034,-0.39787412,-0.15807214,-0.24827276,-0.38185036,-0.3957092,-0.22039044,-0.21615808,0.33217385,-2.8940036,-0.11599871,-0.048457105,0.5565824,-0.32806733,-0.41815087,-0.12322316,-0.5738897,0.26072016,0.30191085,0.40284202,-0.70619553,0.42449674,0.54227114,-0.55122787,-0.068029754,-0.5369055,0.07037306,-0.03495678,0.30388793,-0.13086812,0.003846243,0.26467484,0.1631263,0.44775364,0.11381942,0.057880938,0.24162167,0.5422221,0.017634341,0.5600201,-0.06356559,0.2051516,-0.4770031,-0.13829626,0.37336078,-0.5901095,0.04156057,-0.21021755,0.124145925,0.63744515,-0.5433707,-0.7904064,-0.5665359,0.23595862,0.94464904,-0.13484257,-0.7103502,0.10277843,-0.6672628,-0.41949287,-0.32835063,0.61748815,-0.19254166,-0.04806942,-0.5211345,-0.21378545,-0.2936274,0.29042307,0.06645136,-0.083263636,-0.3116254,0.7751236,-0.04488367,0.5183835,0.14306866,0.13516794,-0.70519155,-0.530462,0.25571486,0.54663396,0.40355852,0.05948912,-0.14833592,-0.13911913,-0.2053122,-0.08373847,0.11297812,0.7071504,0.62597245,-0.17371424,0.23701783,0.4147396,-0.10716513,0.050234508,-0.26138887,-0.25974774,-0.338509,0.09877352,0.62891287,0.82245,-0.08961151,0.34258637,-0.022548534,0.26588494,-0.29628333,-0.543984,0.38130936,0.7653287,-0.073492475,-0.293587,0.41630152,0.60483027,-0.42564598,0.4284315,-0.7683282,-0.43563342,0.33622566,-0.100580074,-0.5144914,0.29117057,-0.22457911,0.12644152,-0.45613933,0.11059889,-0.11368775,-0.42012623,-0.5536923,-0.13362205,-2.0949757,0.11301752,0.030335188,-0.33345208,-0.11492625,-0.30130523,-0.012273818,-0.60258967,-0.56033987,0.22243802,0.10628331,0.9141054,-0.08029528,0.1510279,-0.2036617,-0.3988247,-0.47345996,0.21649873,0.19253434,0.39019454,-0.15429772,-0.41217032,-0.19031899,0.004051499,-0.58012176,-0.014538054,-0.38792738,-0.32320556,-0.28200498,-0.45479372,-0.36305654,0.5930895,-0.22685416,0.08899488,-0.34619108,-0.1846916,-0.03082143,0.34861585,0.10406992,-0.006772349,0.11726991,0.008790448,0.32500124,-0.2288049,0.25500485,0.015066594,0.3688712,0.3470912,-0.124680854,0.1732406,0.37049296,0.69476193,-0.05954883,1.0299801,0.21722424,-0.123937376,0.40519503,-0.05847907,-0.3599731,-0.36444554,-0.010641371,0.27157637,-0.30284417,-0.24086489,-0.22989173,-0.3779478,-0.7584365,0.44574976,0.1275299,0.3270407,0.08485388,0.47276488,0.5966707,-0.2072369,-0.04563946,-0.06045546,-0.20327957,-0.64702415,-0.38246524,-0.52038735,-0.37970462,0.2902677,0.8495192,-0.2966337,0.025911339,0.2353431,-0.30270723,0.059838813,0.18505232,-0.2293642,0.06381296,0.41277122,-0.23817702,-0.52856714,0.40707418,-0.29791373,-0.24429916,-0.5738629,0.2742715,0.5498385,-0.55827093,0.29388148,0.019578636,0.056776505,-0.4830365,-0.4776756,-0.02834247,0.07999812,-0.1927644,0.26957354,0.4487444,-0.8591097,0.24777704,-0.06778506,-0.34045827,-0.6611746,0.51410526,-0.04912473,-0.41527343,-0.52424353,0.30219635,0.18378703,0.034341816,-0.26250574,0.06419591,-0.44516423,0.11165679,0.19953074,-0.019844295,0.22099382,-0.13654484,-0.16802992,-0.56841415,0.3058408,-0.40030053,-0.2860968,0.46968865,0.06611159,0.14825608,0.33365414,0.09879386,0.18308552,-0.3429799,0.12766099,-0.10594559,-0.14126836,0.4853952,0.3464651,0.5835896,-0.58347094,0.5820431,0.16884239,-0.14693995,0.36897373,-0.0025270383,0.27182218,-0.09613732,0.30540028,0.08789251,-0.3193849,0.07245293,0.8337374,0.36032298,0.4474977,0.0044401684,0.010890226,0.103477396,0.090813,0.20764148,-0.013581794,-0.6840491,0.09099477,-0.33650294,0.0763433,0.47163352,0.064846665,0.3226035,-0.09138056,-0.27357307,0.08012412,0.20900856,-0.29413152,-1.4610858,0.08146923,0.121631615,0.95158917,0.5191662,0.002948304,-0.0456471,0.76183814,-0.052404653,0.17492068,0.27021146,0.28941098,-0.4583306,0.59226733,-0.632405,0.616573,0.05945086,-0.16141193,-0.048783284,0.076506175,0.4929601,0.6763563,-0.27285913,-0.05760358,0.06406385,-0.24260306,0.04619247,-0.39225593,0.19071573,-0.77561903,-0.29464957,0.6456184,0.3685108,0.45626035,0.0709121,-0.012334589,-0.07854978,-0.0931035,0.03319936,0.00024569035,0.12746851,-0.04008604,-0.66315883,-0.08055442,0.5332424,-0.07212711,0.12914258,0.06980031,-0.1115545,0.16537966,-0.12599045,-0.18069045,-0.07359638,-0.8970146,0.18466842,-0.27791455,-0.45820627,0.68406326,0.047858115,0.21725242,0.28328708,0.04185623,-0.23482496,0.3128044,0.3965989,0.59870845,-0.20479374,0.011680879,-0.4218975,0.2580028,0.124420725,-0.25040576,0.09177259,-0.013235201,0.08663404,-0.5160603,0.40835667,-0.040719375,-0.13744062,0.0026372473,-0.100654,0.07470193,0.7353532,0.06890609,-0.07418411,-0.026729828,-0.2334439,-0.22816773,-0.21731603,-0.25614598,0.21305592,0.17613375,-0.25735867,-0.034281913,-0.118326224,-0.07600004,0.41869593,0.018643558,0.5807669,0.23756933,0.2353841,-0.3693433,0.13373278,0.002749741,0.5986702,-0.06254535,-0.080245234,-0.38003477,-0.50523347,-0.4779539,0.5087246,-0.007602284,0.2382635,0.15048902,-0.07297533,0.98365325,-0.050332233,1.1587445,0.046070367,-0.35954773,0.36613917,0.5083279,0.009610668,-0.045351654,-0.4426696,0.87431747,0.32333183,-0.052730028,-0.10258532,-0.074425615,0.045057323,0.22629182,-0.3162213,-0.22118759,0.02463615,-0.52056044,-0.19061466,0.2221307,0.24683511,0.1575178,-0.26987022,0.17328985,0.55207676,-0.109011106,0.35285047,-0.3778635,-0.17729859,0.50067955,0.18718602,0.03996952,0.09023515,-0.47964525,0.30818275,-0.38857833,0.040084653,-0.48285052,0.27800414,-0.0067782104,-0.46833754,0.10031592,0.067869715,0.4951278,-0.47757474,-0.42661333,-0.2871935,0.47268116,0.1723149,0.2667449,0.24674685,-0.2232523,-0.048717584,-0.24500196,0.46255684,0.7342997,-0.30106947,-0.03346766,0.37530681,-0.46336177,-0.7622657,0.3665808,-0.31798533,0.26009542,0.08131453,-0.022612205,-0.3549784,0.24658917,0.28304413,0.06721667,-0.22116898,-0.7800233,-0.31603566,0.299027,-0.19887145,-0.12896846,-0.46352938,0.11840313,0.5092552,-0.06693391,-0.27130732,0.0770231,0.37424245,-0.13628255,-0.3794782,-0.013976905,-0.29829794,0.16414826,-0.19787128,-0.28667846,-0.2844768,0.24784613,-0.52892524,0.18278511,-0.06306664,-0.29323956,0.069469675,-0.24657564,0.022152072,0.978533,-0.22622192,0.0322499,-0.32224903,-0.5276529,-0.9435735,-0.38405037,-0.03467882,0.195804,-0.0021264472,-0.7017514,-0.10577756,-0.17229111,-0.30931625,-0.012159586,-0.38253602,0.46325448,0.1990099,0.37348923,-0.029885843,-0.80421656,0.16210182,0.11442507,-0.3441057,-0.53482497,0.58682543,-0.04619621,0.878345,0.19581725,-0.02995991,0.20820837,-0.5116373,0.101765156,-0.19683616,-0.03606379,-0.72145814,0.18883973 +143,0.4621962,-0.15829991,-0.6310392,-0.04480741,-0.27720916,0.090683244,-0.19711892,0.42082995,-0.0047169393,-0.43096364,-0.09280891,-0.17060712,0.14478105,0.62864125,-0.1636549,-0.560962,0.08954671,0.2708251,-0.6630193,0.6235578,-0.42986935,0.3545283,0.02461424,0.3033649,0.24497825,0.38110343,0.3173886,-0.14001933,-0.4567443,-0.03942454,-0.2481921,0.34662858,-0.3831208,0.10689159,-0.16249941,-0.47057977,0.020106198,-0.28842914,-0.4216343,-0.6290533,0.2637574,-0.74772257,0.5164777,-0.18287936,-0.26386708,0.37231424,0.16303906,0.3395654,-0.23498726,0.016911779,0.21233936,0.009337576,-0.12625794,-0.27536538,-0.33064917,-0.70576286,-0.65526986,0.07115798,-0.5309726,-0.10641025,-0.15337227,0.22557673,-0.2783553,0.09063141,-0.12391046,0.28766248,-0.4115865,0.13813263,0.049561627,0.020817392,0.05377637,-0.6246207,-0.19291013,-0.099078044,0.3366423,-0.16804393,-0.043865077,0.277485,0.3658537,0.41390607,0.024061752,-0.07347237,-0.50243336,-0.15699682,0.16994019,0.4842414,-0.17781568,-0.66800225,-0.12098063,-0.10079284,0.14344423,0.04417683,0.17968483,-0.31595275,-0.005617716,0.015708063,-0.41400686,0.37135634,0.42303535,-0.385654,-0.27205226,0.38419983,0.37758845,0.107317306,-0.30641833,-0.13769831,-0.10936216,-0.51282,-0.09906808,0.08678802,-0.086345695,0.5991623,-0.16486059,0.28783655,0.648703,-0.16178213,0.021757105,-0.13182616,0.05408567,-0.10687171,-0.18826705,-0.25810036,-0.072185084,-0.4287701,-0.021489104,-0.18664879,0.6621835,0.108484454,-0.7695252,0.40526617,-0.5035267,0.07358561,-0.07571748,0.29384625,0.46045944,0.40132776,0.01601806,0.43166363,-0.2709622,0.10685606,-0.020467265,-0.42782184,0.0011433284,-0.17816085,-0.03850111,-0.5444842,0.21817115,0.10615686,0.09509935,0.0641736,0.6781398,-0.40046617,-0.14689158,0.06659395,0.86776924,-0.40890175,-0.3475706,0.79748183,0.9645954,0.9057571,-0.049904004,1.2164267,0.43724123,-0.27286023,0.113092475,-0.5255748,-0.4250973,0.22022337,0.32110006,-0.5842676,0.40510553,-0.044896398,0.0065709553,0.27400988,-0.1326073,-0.012759503,-0.2374637,0.024588697,0.075101614,-0.08056507,-0.4175501,-0.46772546,-0.068872936,-0.07931184,0.3663985,0.27137706,-0.20877008,0.5154181,0.024250556,1.7582295,0.02691562,0.07128198,-0.008631217,0.5640573,0.254477,-0.029266449,-0.04863266,0.20919253,0.2866651,0.018094143,-0.45941716,0.026149523,-0.34506613,-0.7373103,-0.1845444,-0.3572671,-0.16163568,0.031581707,-0.5431719,-0.17268385,0.039219264,-0.16792615,0.47993168,-2.596292,-0.17049885,-0.09082141,0.20717576,-0.28925365,-0.49423218,-0.22452496,-0.55978584,0.3856827,0.3004499,0.4622422,-0.55479234,0.49400192,0.14499375,-0.38727582,-0.21583763,-0.5077932,-0.06017733,-0.007078475,0.42912397,-0.22915998,0.0010216713,0.33352122,-0.030711882,0.5258627,-0.31583804,0.22198887,0.22831462,0.27535665,0.20206894,0.30571812,0.15623666,0.7052487,-0.28961647,-0.095615864,0.2921487,-0.238851,0.31257376,-0.008083761,0.2621218,0.37891304,-0.5656232,-0.86244416,-0.5708769,0.08842697,0.91492105,-0.16663228,-0.34838116,0.0814348,-0.011205258,-0.2930334,-0.016537355,0.25452825,-0.21385647,-0.09536268,-0.64923185,0.16651413,0.05691763,0.0725117,-0.03388577,-0.015678069,-0.36273542,0.45452452,0.023562526,0.37319443,0.26778713,0.30159912,-0.29098272,-0.38702488,0.14323868,0.97909915,0.24869967,0.09299729,-0.13864008,-0.32291794,-0.46506947,-0.12300345,0.08104927,0.317092,0.6484405,0.084481195,0.07827941,0.14728676,0.05317205,0.22702758,-0.1371962,-0.3041121,-0.11638995,0.08607678,0.4424728,0.40091127,-0.30478606,0.76034576,-0.23518369,0.3843737,-0.21447326,-0.5531699,0.5198587,1.2103516,-0.3722291,-0.31905934,0.5398808,0.5428328,-0.31785712,0.4837763,-0.6003843,-0.5098484,0.3946944,-0.20783396,-0.2180823,0.19404036,-0.27711418,0.08929722,-1.026464,0.25083762,-0.175043,-0.3613814,-0.47429374,-0.23376714,-3.1788995,0.16475579,-0.1952674,-0.11742976,-0.090878375,-0.16573884,0.14736944,-0.71191484,-0.43432555,0.20899422,0.11591845,0.66376746,0.085037805,0.17532682,-0.14927262,-0.2585602,-0.1738196,0.20205717,-0.028465938,0.42413428,-0.14229421,-0.5868562,0.116730295,-0.24653628,-0.39603272,0.18103585,-0.7619438,-0.36142084,-0.2545283,-0.4171374,-0.35373178,0.63743645,-0.41087982,0.1366175,-0.13697092,0.03889664,-0.22853623,0.39014664,0.03687573,0.16150917,0.16925389,-0.057805717,0.17761262,-0.3832975,0.1396399,0.057155732,0.3106238,0.3909405,0.05079531,0.11240273,0.42516175,0.758304,-0.02417531,0.60205597,0.43902862,-0.1369341,0.3446727,-0.2900406,-0.13829507,-0.6162673,-0.5393828,-0.1622203,-0.3053335,-0.5981442,-0.16087748,-0.30226135,-0.8010779,0.56443375,0.016698401,0.16781893,-0.050455835,0.36083058,0.5155193,-0.2553347,0.10801696,-0.1935208,-0.02365626,-0.52852476,-0.38752243,-0.6422407,-0.56666684,0.15818577,1.0163534,-0.066090144,-0.10953583,-0.08508418,-0.28511474,-0.074267484,0.22268501,0.05407067,0.16388416,0.381107,-0.36180356,-0.78195584,0.6106909,-0.24269418,-0.07385219,-0.37772503,0.15109298,0.5063938,-0.61761755,0.4519924,0.49952143,0.11070003,0.028483517,-0.39911416,-0.23621632,0.0024903854,-0.121966,0.24084704,0.19515392,-0.7395548,0.40496096,0.25834906,-0.431241,-0.67243457,0.64418125,0.13239102,-0.25951764,0.008005286,0.32540667,0.17576183,-0.0733594,-0.4540696,0.04985175,-0.5907179,0.2382696,0.3424628,0.12721263,0.2239689,-0.19787648,-0.17124526,-0.83884776,0.030230077,-0.3507003,-0.3026393,0.17098196,0.13392812,0.19522049,0.10058344,-0.045142688,0.18524638,-0.5638335,0.122692235,-0.07092737,-0.14876674,0.25748882,0.27687892,0.4092654,-0.54319745,0.55490315,-0.021806758,-0.13287821,-0.0048938077,0.09282429,0.4439768,0.3485668,0.36188632,0.13108188,-0.20068772,0.27477315,0.66957587,0.4031825,0.39643037,0.040004212,-0.3587357,0.03869435,0.029965715,0.16529351,0.20242946,-0.37089258,-0.19400647,-0.14659858,0.20720425,0.519039,-0.029634573,0.4368588,-0.13769016,-0.18292926,0.11948177,0.2191535,0.0023067317,-1.0730051,0.40063757,0.33658057,0.70872533,0.4536028,-0.019508313,-0.13017659,0.5392215,-0.2789858,0.23399618,0.30508435,-0.034888744,-0.5319405,0.5554951,-0.52460515,0.43126577,-0.07062997,-0.024087708,0.092453435,-0.024552306,0.28423887,0.89764047,0.021093901,0.20296624,0.1869266,-0.39646897,0.09613838,-0.24882384,0.107956015,-0.46772784,-0.16634327,0.72608924,0.37249956,0.24313341,-0.07644586,-0.030531203,0.13213055,-0.1445951,0.053327646,0.062663816,0.42799333,-0.07962563,-0.6518937,-0.3171948,0.47570992,-0.113044366,0.16053562,0.25423092,-0.39161465,0.3636828,-0.22860675,0.03811916,0.061663505,-0.58148915,0.033145484,-0.11805633,-0.37953243,0.59787184,-0.10637976,0.21603896,0.10846833,0.13577227,-0.32398352,0.26825005,0.070495635,0.63529754,-0.10847462,-0.25046727,-0.31289274,0.092558146,0.29145196,-0.25242022,0.043577645,-0.23626135,-0.003848056,-0.61423784,0.39650375,0.12665695,-0.073894374,-0.13717426,0.1046315,0.06648542,0.44681728,0.055009,-0.06922032,0.045279972,0.21128422,-0.22689693,-0.14601181,-0.22975942,0.18553384,0.35350913,-0.039020505,-0.15990856,0.08913011,0.030842697,0.4812018,-0.15459877,0.38636965,0.4766929,0.2853342,-0.37152308,-0.24918582,0.2944609,0.41271394,-0.02277902,0.056912854,-0.2720784,-0.38398078,-0.31538138,0.15782811,-0.2366646,0.14257704,0.27718243,-0.18036982,0.6834367,-0.020930227,1.321064,0.13033696,-0.41614312,0.223445,0.3975464,0.06912168,0.081288464,-0.33731925,1.1169002,0.541387,0.00088202057,-0.15869106,-0.33565292,-0.05168151,0.14834143,-0.17722674,-0.3107977,0.044708166,-0.5098161,-0.42654908,0.12454483,0.18673533,0.15651561,-0.065842636,0.30261716,0.24966846,0.11531162,0.46921977,-0.6026525,-0.3634028,0.29634494,0.3191298,-0.040731683,0.22788592,-0.46920884,0.3451471,-0.5416718,0.011872097,-0.26762974,0.18894038,-0.1120278,-0.31432602,0.24461743,0.23924668,0.35809168,-0.32351205,-0.4755888,-0.28846204,0.619771,0.112959765,0.17373848,0.5647181,-0.24049756,-0.06911313,-0.014983797,0.50030327,1.1095904,-0.23583731,-0.045192193,0.5206373,-0.30141523,-0.7519061,0.2565914,-0.24619992,0.25623655,-0.12827393,-0.2555648,-0.6087029,0.44764826,0.16226043,-0.07491754,0.1825065,-0.32366318,-0.049188197,0.3086954,-0.30193633,-0.30709544,-0.36927587,0.3113519,0.64505833,-0.47780216,-0.27782646,0.21977885,0.14580446,-0.17567705,-0.5173274,-0.06976864,-0.3732953,0.30306277,0.31188756,-0.23717336,-0.20962796,-0.051612202,-0.29089946,0.3115217,0.38155353,-0.31854364,0.07758602,-0.36817142,-0.2050538,0.88113856,-0.12708473,0.08440583,-0.58754224,-0.42112854,-0.8189115,-0.6440896,0.32537752,0.112173654,-0.0058540157,-0.70528394,0.07570149,-0.019557452,-0.21129689,-0.012465696,-0.25775355,0.42343086,0.0793691,0.18283042,-0.048386943,-0.83769566,0.0069286823,0.2330478,-0.13363433,-0.5030223,0.36354294,-0.25824058,1.0536879,0.19862957,0.17924565,0.501487,-0.44821283,-0.040065493,-0.37278283,-0.04989511,-0.6222198,0.12760171 +144,0.4380184,-0.5244708,-0.3714337,-0.14551939,-0.104496635,0.06278337,-0.23785271,0.2630169,0.121519946,-0.37537834,-0.026589304,-0.19831927,0.17863555,0.5944767,-0.11280395,-0.810619,-0.031063898,0.04176442,-0.5703939,0.5612684,-0.49063063,0.19891082,0.08107344,0.38599873,0.015799042,0.2671892,0.3559983,-0.13867894,-0.14803047,0.10114123,-0.16701403,0.103152715,-0.5247096,-0.010728613,0.060155857,-0.21787523,0.12845571,-0.3024156,-0.45963764,-0.7040898,0.24476862,-0.881947,0.4183381,0.0599359,-0.32755202,0.30770415,-0.0551485,0.37784103,-0.5102579,-0.062310286,0.08616821,-0.21003477,-0.042259116,-0.30894113,-0.109331734,-0.47533208,-0.45357633,0.007556302,-0.60236424,-0.16422963,-0.25279152,0.010508138,-0.38696095,-0.010469382,-0.054719295,0.30086684,-0.5680842,-0.18983494,0.3028645,-0.15122962,0.3484388,-0.36919257,-0.070233,-0.120384865,0.14756225,-0.020554798,-0.1604938,0.25798526,0.29800954,0.49680743,0.04371277,-0.24788578,-0.21615109,-0.05788539,0.31437987,0.52031595,-0.017623289,-0.6569281,-0.21339737,0.025985228,0.030449528,0.01384828,-0.02013582,-0.32981637,0.037064064,0.22438066,-0.2733505,0.34759307,0.5137231,-0.35378274,-0.26081055,0.32739812,0.54307735,0.16508473,0.02896572,-0.05498623,0.0909706,-0.36837965,-0.14005062,0.3785283,-0.261349,0.50480884,-0.17103387,0.28296968,0.6130292,-0.22282852,0.26576963,-0.114581704,-0.03692762,-0.24149516,-0.029339824,-0.1265801,0.10924644,-0.55176073,0.058849838,-0.26728845,0.8440568,0.35116312,-0.52181923,0.5425784,-0.5082804,0.303672,-0.17375715,0.5859366,0.70852166,0.25095734,0.29571754,0.6384983,-0.4439619,0.11048066,-0.1289493,-0.45996985,0.14092734,-0.27438036,0.03214298,-0.45800257,-0.0024111953,-0.03697272,-0.06339203,-0.06524737,0.3073895,-0.5928001,0.05990022,-0.033213258,0.8130001,-0.33905864,0.110863045,0.6136113,0.89056766,0.7938014,0.11866488,1.2532417,0.59019893,-0.29464212,0.19043215,-0.33447078,-0.76328915,0.27461204,0.5119892,-0.09292307,0.47290665,0.00036347765,-0.13380055,0.42789087,-0.39553624,0.11248279,-0.31824383,0.34729332,-0.09813203,-0.0063659996,-0.55045205,-0.11286049,-0.17568247,-0.023293087,0.053003646,0.33688346,-0.14662501,0.33370194,-0.06605012,1.7109767,-0.12136384,0.091458164,-0.062141526,0.4996092,0.3131888,-0.0048978264,-0.12263703,0.41625762,0.40243718,0.09416352,-0.7503409,0.12154923,-0.3457029,-0.38081387,-0.20877804,-0.26535472,0.2743487,-0.077918686,-0.29825267,0.038694523,0.1388879,-0.25482756,0.3666315,-2.4057517,-0.3286814,-0.29873776,0.35323575,-0.46287006,-0.27372473,-0.08958669,-0.3716707,0.42410666,0.39216232,0.49008125,-0.74133396,0.29850706,0.38448176,-0.37101296,0.018286517,-0.54558486,-0.15770468,-0.0974281,0.45282486,-0.028519059,-0.14852473,0.022239689,0.21680959,0.39212814,-0.1759984,0.027840497,0.12657443,0.36816806,0.1462719,0.34103638,0.026351914,0.50406545,-0.36377996,-0.09906672,0.36037114,-0.16973932,0.36865467,-0.101007454,0.2430838,0.35827142,-0.49666867,-0.8431958,-0.5869628,-0.4051338,1.1848663,-0.41259548,-0.44539407,0.18875694,0.00685943,-0.07877129,-0.030432966,0.3466262,-0.09323771,-0.102343865,-0.86165345,0.23956224,0.05880242,0.2167195,0.15377334,0.13959993,-0.16687045,0.6858174,-0.16258503,0.3019934,0.26414725,0.3419221,-0.0006434449,-0.49389243,0.11116948,0.8078003,0.39077178,0.10432356,-0.21009775,-0.27918148,-0.14969864,-0.10111045,-0.028466675,0.40108055,0.9055165,-0.025281211,-0.053851027,0.27536336,-0.11417886,0.024572577,-0.15938345,-0.3412559,0.031053292,0.033193372,0.6336385,0.53735465,-0.19427927,0.5616417,-0.113157235,0.2773024,-0.06053278,-0.43550164,0.6293822,1.0147415,-0.18415746,-0.083119765,0.48436937,0.50598705,-0.5033888,0.407806,-0.7830035,-0.2831863,0.54471564,-0.24894372,-0.4262815,0.30549362,-0.31723174,0.17125455,-0.981295,0.3384768,-0.19766082,-0.2366936,-0.57056946,0.07664233,-3.9049318,0.15784554,-0.318924,-0.23200038,-0.12818465,-0.047600776,0.2882399,-0.6899964,-0.45223883,0.3228154,0.029313603,0.612604,0.019929452,0.187936,-0.30048725,-0.065993294,-0.19827972,0.05194444,0.103852525,0.20842192,-0.08663925,-0.5228101,0.060608387,-0.20954718,-0.41864628,0.23838495,-0.6248616,-0.5821582,-0.3134714,-0.6223625,-0.19298758,0.62511843,-0.10165374,-0.029470881,-0.23661457,0.04374916,-0.22844873,0.4419237,0.22124214,0.16359034,0.043205287,-0.013067769,-0.094064966,-0.41026586,0.19833599,0.19087707,0.17123197,0.2957128,-0.124641165,0.17015728,0.5920147,0.56955034,0.015325581,0.6049342,0.50394684,-0.17541888,0.41166312,-0.34901005,-0.29149726,-0.4608048,-0.48952,-0.120147385,-0.284522,-0.4864308,-0.26302174,-0.23414595,-0.6726306,0.5550174,0.044807516,0.22164086,-0.086756825,0.22851385,0.57332283,-0.14568993,-0.04124574,-0.015747799,-0.17904417,-0.6304618,-0.16784208,-0.6480223,-0.4429538,0.34191838,0.70589596,-0.2038552,-0.17556262,-0.16236416,-0.30415767,-0.021243135,-0.086297736,0.09843693,0.27276897,0.23375747,-0.11640417,-0.68741643,0.54273504,0.015878482,-0.2615977,-0.6153241,0.123991325,0.76005113,-0.7192193,0.39843968,0.27239865,0.07404669,0.035976578,-0.37806344,-0.22760513,0.18748225,-0.12202884,0.3056168,0.12073497,-0.61896867,0.44086537,0.39069977,-0.24671376,-0.72144943,0.4229409,0.13066946,-0.25977415,0.00465994,0.32311106,-0.014496916,0.15992527,-0.42655018,0.14177847,-0.48427922,0.16523202,0.41069752,-0.0404071,0.37150997,-0.075194724,-0.18135782,-0.6532608,-0.041484177,-0.5140129,-0.20479257,0.2838812,0.11891061,0.09904442,-0.061994545,0.031854536,0.40240297,-0.41900215,0.012259864,0.15697543,-0.28152058,0.3637066,0.52513885,0.287193,-0.3265092,0.6873578,0.07111678,-0.1215533,-0.1338745,-0.006544675,0.4616796,0.29524675,0.2910564,0.09496367,-0.097219266,0.3816778,0.9637272,0.071675524,0.53174245,0.23228426,-0.1389232,0.30311498,0.23126408,0.09867994,0.07990355,-0.17330904,0.05269465,0.21565716,0.18566203,0.46412042,0.21989433,0.35513252,-0.048476867,-0.3504538,0.04828859,0.16285452,0.07964746,-1.1669195,0.30756038,0.25855395,0.6093146,0.36525753,-0.08226415,0.04417793,0.5818324,-0.2667912,0.08820636,0.1694629,-0.16180836,-0.674398,0.6201835,-0.62160504,0.29391223,-0.1587485,0.021832677,-0.024455981,0.12815751,0.37039062,0.76242447,-0.15052478,-0.0064308983,-0.22378714,-0.29800266,0.1288217,-0.38314694,0.061170693,-0.49142593,-0.4807652,0.43183804,0.3992483,0.29077414,-0.15717031,0.001110675,0.061442953,-0.096691884,0.3426017,-0.015553711,0.058089368,0.04526892,-0.78353053,-0.44588736,0.476213,0.07650048,0.18245889,-0.15674722,-0.063970946,0.2257168,-0.18567073,-0.17606594,-0.03505257,-0.7470565,-0.013862943,-0.3761467,-0.4589672,0.4108447,-0.25050956,0.31804505,0.20366146,-0.035604022,-0.40351078,0.23991756,0.08849684,0.90712184,0.029932993,-0.30462295,-0.5425326,0.11415917,0.19067176,-0.15598433,0.007984349,-0.28424826,-0.0904149,-0.5854382,0.60660946,-0.15182273,-0.2903008,0.10077155,-0.28651634,-0.025153194,0.5431351,-0.31584743,-0.26950002,-0.17125042,-0.20054033,-0.3381061,-0.33413145,-0.15587865,0.20253262,0.27591237,0.030621668,-0.009926758,0.021460574,-0.06947129,0.6657912,0.19364718,0.257353,0.33350548,0.15181689,-0.2707922,-0.18467234,0.29754615,0.40367252,0.109293595,-0.1470137,-0.29617167,-0.43366104,-0.35628405,-0.13323312,-0.28082603,0.21208814,-0.007196341,-0.44767728,0.77688134,0.09528633,1.1923639,-0.0031028304,-0.2995455,0.13490215,0.4210622,0.046562653,-0.045427006,-0.4125525,0.8009104,0.57463884,0.060805682,-0.20140566,-0.46300226,-0.3484729,0.31881067,-0.24754235,0.032675173,0.03608056,-0.69752795,-0.3626766,0.2725298,0.23479673,0.006139521,-0.018271234,0.14533423,0.06776482,0.053843,0.38676852,-0.6114268,-0.17534575,0.32582387,0.12540717,0.079172544,0.09314353,-0.3443444,0.44130236,-0.5089932,0.09755026,-0.3136503,0.07694372,0.02617876,-0.2949219,0.272695,0.020169659,0.40752158,-0.41892114,-0.32939744,-0.22294644,0.63960415,0.14384751,0.08757179,0.5745845,-0.30147856,0.1619235,0.2160809,0.53740925,1.091611,-0.27549958,0.1812781,0.28102022,-0.36440334,-0.7544214,0.44088355,-0.07125755,0.3190703,-0.113014646,-0.33565143,-0.68400764,0.3350182,0.20456733,0.013299899,0.038443953,-0.48135743,-0.24841739,0.3980091,-0.37377977,-0.23091434,-0.34971958,0.19801562,0.5716319,-0.3739751,-0.2617832,0.17613114,0.26969522,-0.26999372,-0.4040766,-0.2743442,-0.24995668,0.22151121,0.17547831,-0.23809078,0.09091455,0.21540353,-0.4284777,0.09629988,0.07329851,-0.40283376,0.11266617,-0.09695713,-0.116242446,0.9397566,-0.31680447,-0.067593396,-0.9449107,-0.50948066,-0.8683702,-0.38415647,0.8255555,0.08234132,0.17962506,-0.638238,0.17137136,0.14001141,0.17005767,-0.024793562,-0.5634487,0.40514776,0.07432278,0.3829244,0.057527278,-0.7135052,0.13258764,0.13465215,-0.29340643,-0.6745706,0.49631336,-0.22378843,0.7495342,0.015182662,0.086378254,0.27312186,-0.39863682,-0.14753601,-0.3290651,-0.3468201,-0.735727,0.15168557 +145,0.7351264,-0.33197418,-0.85132366,-0.13948704,-0.26447856,-0.16950886,-0.30533206,0.6950955,0.3010975,-0.6473375,-0.095851,-0.11517306,-0.0866605,0.39683995,-0.4051246,-0.80916655,0.0063876314,-0.0014484662,-0.4873166,0.4469131,-0.5222732,0.432545,-0.060236115,0.56598157,0.4437452,0.23549601,0.015141606,0.084707335,-0.18449743,-0.14805013,0.15766612,0.15435989,-0.67749435,-0.13096507,-0.28346628,-0.7660477,-0.17923898,-0.47025797,-0.4418942,-0.99101025,0.4835548,-1.0242445,0.65777177,0.062865004,-0.37782124,0.08889119,0.2488971,0.46811956,-0.25123423,0.027040247,0.04635485,-0.02454764,0.0066821715,-0.0317981,-0.4290923,-0.40433672,-0.6960849,0.024208695,-0.52839905,-0.06957965,-0.18274024,0.1386264,-0.39209735,0.15629734,-0.019545753,0.5179319,-0.43463644,-0.15130718,0.41284275,0.08732242,0.36447063,-0.74188143,-0.37230974,-0.21325707,0.29141247,-0.2831168,-0.26537523,0.36609858,0.30834213,0.5035148,-0.07802134,-0.21630344,-0.38406438,0.10170047,0.018460186,0.35989395,-0.32509768,-0.48667654,-0.3391092,-0.08078126,0.5981549,0.48158422,0.43134314,-0.16463925,0.0030396213,0.1763156,-0.34697917,0.68672824,0.5876861,-0.30801788,-0.03252885,0.15537748,0.44827646,0.3190128,-0.2870919,0.0672115,0.09582089,-0.73333067,-0.21030608,0.07550807,-0.10251513,0.59366935,-0.13443509,0.29220796,0.6168035,-0.43721154,0.0848862,0.1872223,-0.020846635,-0.26923817,-0.45102835,-0.44024006,0.3298949,-0.56665313,0.21139285,-0.4284215,0.768736,0.23981735,-0.7151225,0.25683722,-0.7839137,0.23736858,-0.17007047,0.39442205,0.77755475,0.45916107,0.26478767,0.6926955,-0.45904133,-0.02072398,0.012174928,-0.19729735,0.13771512,-0.36139706,0.04430183,-0.41728646,-0.09207989,-0.07420762,-0.09631973,0.40561864,0.7538144,-0.5595003,-0.27242166,0.0004662046,0.78547436,-0.2592203,-0.06896544,0.96136546,1.0173252,1.0748773,0.08332141,1.3259645,0.37747177,-0.19237182,0.18607102,-0.012282986,-0.8296906,0.45314553,0.25513762,-1.0219055,0.5244308,0.010587179,-0.18361138,0.53958166,-0.28965896,0.09352292,0.006659659,0.19108495,0.03987565,-0.32644013,-0.3714082,-0.27608475,-0.1133693,-0.06667379,0.11451706,0.3059653,-0.16645153,0.4607517,-0.03954435,1.4037197,-0.074976094,0.057931546,0.020296812,0.46489257,0.29848087,-0.21662052,0.0028883035,-0.031060457,0.33718106,0.23911381,-0.6905346,-0.014694909,-0.29063112,-0.4218639,-0.2412997,-0.37025207,-0.24910656,-0.20554803,-0.70405763,-0.11118043,-0.28051618,-0.065964,0.33693507,-2.1969187,-0.44289568,-0.22934826,0.37100518,-0.26352993,-0.5888642,-0.16289352,-0.50930244,0.65524584,0.25585124,0.470202,-0.6973658,0.48101684,0.5529206,-0.5391818,0.04614554,-0.70794976,-0.3015419,0.041441258,0.07752542,-0.114434,-0.23933871,0.19201246,0.275826,0.41834685,-0.023236949,-0.052291457,0.100575045,0.6090508,-0.20625576,0.76831234,-0.078425184,0.5655469,-0.546138,-0.2904971,0.43289456,-0.56156486,0.10081458,-0.016144,0.15492591,0.61815,-0.64297205,-1.08159,-0.66778433,-0.04623182,1.0527174,-0.049141984,-0.5178309,0.24299297,-0.5579582,-0.27342066,-0.1511692,0.5629324,-0.057558205,0.11727465,-1.0300425,-0.045977972,-0.23080245,-0.044697206,-0.013832297,0.055760972,-0.34736457,0.69817555,-0.02186505,0.46187437,0.422051,0.1729189,-0.424233,-0.603801,0.14798278,0.93348736,0.46038422,0.24987791,-0.42710117,-0.08876231,-0.61820483,0.1257627,0.12130899,0.4070263,0.795503,-0.03147445,0.18096964,0.35359114,0.01245903,0.12593836,-0.17829067,-0.47967273,-0.32707766,-0.051122345,0.6657892,0.8419923,-0.15674241,0.49236685,0.052003283,0.40650892,-0.33188516,-0.415958,0.7090791,1.206066,-0.18148372,-0.40740493,0.71102893,0.48449624,-0.42519486,0.6035099,-0.6170132,-0.43492782,0.39146453,-0.103850536,-0.4169738,0.26145914,-0.5093826,0.15942127,-1.1072421,0.14899005,-0.51097053,0.06409181,-0.6429589,-0.20719132,-3.3792245,0.43073294,-0.22499722,-0.060531523,-0.31198433,-0.27459157,0.37182638,-0.7514579,-0.88162714,0.20411794,0.027675457,0.9430475,-0.17828332,0.14958864,-0.12752512,-0.43578583,-0.3390115,0.017008293,0.34882244,0.33310902,0.15240642,-0.5651868,-0.1719148,-0.15453196,-0.54199415,0.0799357,-0.534933,-0.61213356,-0.14308801,-0.5840176,-0.3618613,0.8006176,-0.19927436,-0.0011876455,-0.06874926,-0.0038513748,-0.14371327,0.47213548,-0.021095982,0.22045158,0.07044694,-0.11863323,0.16793896,-0.2838802,0.059513092,0.10030287,0.2829085,0.23815061,-0.3318456,0.32152778,0.56402117,0.96519554,0.0097193355,0.98532844,0.39341018,-0.019354071,0.39888352,-0.28131992,-0.5057657,-0.64210427,-0.19152077,-0.06294401,-0.36650625,-0.34064925,-0.01089561,-0.51562524,-0.73336375,0.7289075,-0.047533114,0.24735667,-0.0674593,0.3103297,0.46865776,-0.1652616,-0.13632317,-0.079207584,-0.11391,-0.52555794,-0.29888064,-0.6615231,-0.51602995,0.05743993,1.1388993,-0.20593913,0.012140636,0.25028834,-0.17473355,0.11595218,0.24620111,0.053768154,-0.053661026,0.51875746,0.03563749,-0.70284504,0.30517125,-0.17800426,-0.30482203,-0.789586,0.05042605,0.77237505,-0.6901782,0.5446956,0.5516587,-0.001388449,-0.02820855,-0.55305004,0.033964243,0.20228828,-0.26556176,0.50779235,0.44040835,-0.7573189,0.48746812,0.51480526,-0.20934336,-0.6525307,0.7872481,0.14064382,-0.30231127,-0.3506012,0.441589,0.32798645,0.16011228,-0.03304016,0.16922252,-0.45115048,0.17728248,0.27969712,-0.08068915,0.3273209,-0.019813074,-0.15563574,-0.7887531,0.18114156,-0.579329,-0.26897976,0.42990258,-0.18939008,0.26967683,0.16942021,0.21191527,0.23867787,-0.38755777,-0.00038615556,-0.27426293,-0.34861624,0.51239425,0.5595094,0.5928143,-0.48000142,0.6471479,0.11386706,-0.017695496,0.3765225,0.046793863,0.5509378,-0.025508724,0.46385667,0.20911275,-0.29933992,0.06092221,0.795164,0.14070132,0.42731795,0.29290518,0.0059984922,-0.036389258,0.28197455,0.033726767,-0.05552105,-0.52043337,-0.08796266,-0.15007596,0.16932566,0.67512786,0.06176063,0.2921703,-0.14927539,-0.371458,-0.0099695325,0.1449866,-0.20327125,-1.6570505,0.3944343,0.1429238,0.84427613,0.48675343,0.04227539,0.026770573,0.43217432,-0.076517746,0.12601863,0.5284657,0.13537744,-0.35461628,0.6148704,-0.5606846,0.6211536,-0.08791459,0.1768377,-0.14331037,0.08989979,0.6580123,0.7879703,-0.08356297,0.08879643,0.23813699,-0.43604586,0.09331347,-0.4517259,-0.16231672,-0.44853467,0.015826674,0.9143702,0.52178544,0.42317316,-0.30696726,-0.0006076464,0.1928148,-0.17475528,0.1187668,-0.09477259,0.08270386,-0.15559672,-0.68304795,-0.09250045,0.5694282,0.22873163,0.23545898,0.058642354,-0.36589998,0.30904898,-0.09220279,0.13427883,-0.06080977,-0.92637104,-0.14334303,-0.7787436,-0.6024717,0.4106674,-0.0011806121,0.20113534,0.38291806,0.1404286,-0.3412622,0.3776395,-0.11613813,0.7731168,-0.32746962,-0.2269581,-0.41331068,0.2814674,0.44056517,-0.39098004,-0.15071903,-0.24751297,0.32085848,-0.37731346,0.57391274,-0.050812535,-0.26988295,-0.048339136,0.02210527,0.014747626,0.4574035,-0.55699867,-0.020934949,0.10142756,-0.056896467,-0.24039358,-0.40453687,-0.11613643,0.18672696,0.24525703,-0.021396045,-0.14780897,-0.19663262,0.17234601,0.47930336,-0.06932815,0.38069004,0.74117124,0.24125177,-0.31265986,-0.24647419,0.39897302,0.71668786,-0.16443887,-0.35528454,-0.70079464,-0.6461101,-0.34686762,0.51544327,-0.044912867,0.26594794,0.10359227,-0.4513199,0.9020165,0.1254817,1.0977824,-0.023385385,-0.49263048,0.029255133,0.43044296,-0.15916716,-0.23723768,-0.33626965,0.9632807,0.46930307,-0.42691165,-0.28651252,-0.5656158,0.06217059,0.03115813,-0.3416416,-0.15603279,-0.10092291,-0.642251,-0.25650242,0.32664612,0.33373767,0.12550408,-0.29990342,0.38561293,0.36214393,0.060576998,0.31646708,-0.66374326,-0.23644637,0.19241945,0.42692745,-0.08088794,0.19327453,-0.49759275,0.27846652,-0.5938668,-0.016831614,-0.5105411,0.24272798,0.05863241,-0.4041993,0.23312695,0.04406381,0.3636813,-0.48241436,-0.21289039,-0.3035198,0.52242315,0.066075824,0.15123364,0.60249877,-0.2810801,-0.048672795,-0.03168557,0.72442216,1.4129715,-0.07360501,-0.07862575,0.3556285,-0.30993304,-0.6488835,0.23078002,-0.5554078,0.4668667,-0.052605495,-0.16326918,-0.82018197,0.2658067,0.31410944,0.078512594,0.121655375,-0.6986516,-0.4530718,0.3687558,-0.36704046,-0.26305893,-0.38706562,-0.10613013,0.48229975,-0.22916484,-0.07076716,0.08476067,0.40777984,-0.023231877,-0.4194077,-0.055190526,-0.37318882,0.33721912,0.15327303,-0.23833528,-0.03325568,0.046330843,-0.5211259,0.24880688,0.22520557,-0.44813523,-0.05584989,-0.3077026,-0.16829015,1.0762689,-0.2245417,0.3651292,-0.36331046,-0.5479435,-0.83843845,-0.3649134,0.3418808,0.19061655,0.11359421,-0.81361806,0.12747194,-0.06908325,-0.14353703,0.06194177,-0.23923379,0.49731642,0.13752092,0.5899937,0.013853633,-0.65064615,-0.006466205,0.1274893,-0.4461867,-0.5160679,0.66939443,-0.0444871,0.98198056,0.19095984,0.12698518,0.27615082,-0.4735935,-0.052386623,-0.20281918,-0.22465545,-0.7929392,-0.07610339 +146,0.3699492,-0.275952,-0.40616563,-0.2005332,-0.19635622,0.044087514,-0.24760331,0.28301272,0.0815438,-0.21149454,0.14548141,-0.12566207,-0.005876259,0.37343916,-0.11921372,-0.69502205,0.058339316,-0.05985694,-0.5953142,0.622943,-0.5183297,0.37155494,-0.014162485,0.23071623,0.20835285,0.23007372,0.27907905,-0.16194871,0.08516929,-0.11722055,0.029305728,0.13941263,-0.52391154,0.067240685,0.0006125828,-0.2288563,0.18044814,-0.35273603,-0.45872936,-0.66436195,0.37086192,-0.6883004,0.36976293,0.038366366,-0.30784005,0.41107714,0.13173178,0.16306193,-0.4680112,0.12389055,0.26425222,0.05853866,-0.13458565,-0.019821556,-0.08263939,-0.4869028,-0.48230255,-0.03454487,-0.6205867,-0.31722698,-0.30131721,0.08658641,-0.45649898,-0.031746738,-0.13672216,0.36738002,-0.5186835,-0.17112793,0.17174414,-0.06556034,0.10115418,-0.6763801,-0.121105,-0.072958134,0.11770563,0.00024051666,-0.07718911,0.35882074,0.077806205,0.44329616,0.0020507337,-0.20291306,-0.11644185,-0.209924,0.07203374,0.5078478,-0.014298676,-0.47729784,-0.049987093,0.07104866,0.036595367,0.09159141,0.06299293,-0.3765753,-0.08245231,0.1312087,-0.31215155,0.42894152,0.51192725,-0.47732595,-0.25474185,0.36978802,0.27312288,0.24240543,-0.106489256,0.04094305,-0.022421423,-0.4519733,-0.19942349,0.07368458,-0.18380834,0.3505203,-0.14411178,0.30683613,0.6264971,-0.26321477,0.25417534,-0.21485431,-0.014168585,-0.0320405,-0.22418404,-0.23351245,0.05819885,-0.54154,0.17785892,-0.18987049,0.8204201,0.25190437,-0.5251221,0.42748302,-0.50644916,0.23734097,-0.26640457,0.52413094,0.69419616,0.18666169,0.188183,0.63716495,-0.36708266,0.0107239885,-0.18300287,-0.29988128,0.035561547,-0.06506116,0.04390637,-0.4220092,0.007537556,-0.025655985,0.027924633,-0.15602382,0.33194983,-0.3365928,-0.1298506,0.17957264,0.7691952,-0.32906246,0.07538285,0.46677577,1.1105502,1.1393756,-0.023490362,1.037086,0.401313,-0.14597054,0.16898133,-0.2565089,-0.6723376,0.18863559,0.48337987,0.3737612,0.19453147,-0.048110906,-0.18157434,0.3383834,-0.30254975,0.101985045,-0.19237943,0.35674363,0.20539497,-0.010367755,-0.28156742,-0.20162551,-0.025920248,0.050793204,-0.04382495,0.2267304,-0.25440487,0.025370734,-0.016722435,1.4935722,-0.13713409,0.030752541,0.11752718,0.59031093,0.3092307,-0.1597959,0.035489574,0.32659906,0.43161643,-0.005395758,-0.77238655,0.09454927,-0.36239627,-0.53047365,-0.10735701,-0.43720537,-0.077266,0.07477452,-0.5640192,-0.104956284,0.0896189,-0.042565588,0.35285404,-2.8191211,-0.21138777,-0.17578754,0.22706294,-0.3694913,-0.15967256,-0.04011829,-0.39847967,0.39687547,0.38664073,0.40108737,-0.51016265,0.40928832,0.44286925,-0.3371971,0.0019453525,-0.59455174,-0.16101068,-0.12860963,0.40292835,-0.14189486,-0.048201337,-0.030186953,0.31934682,0.40832424,0.12195576,0.14631078,0.20820932,0.42270547,-0.08489507,0.51321524,0.034553085,0.42667618,-0.30677712,0.03103177,0.24777564,-0.15732701,0.41182855,-0.24452704,0.14059542,0.37963995,-0.32493725,-0.81825924,-0.40527096,-0.1434124,1.2813154,-0.3542588,-0.41260764,0.45857683,-0.15934154,0.043403342,-0.12329151,0.3296569,-0.12958108,-0.1892955,-0.65172935,0.2806636,-0.16858958,0.028447725,-0.05146761,0.04142769,-0.333307,0.70511764,0.0017081122,0.45019785,0.22712955,0.24999163,-0.04886314,-0.36490855,0.04605735,0.75787,0.4577381,-0.019814169,-0.14367189,-0.121524066,-0.10725974,-0.26468262,0.073394105,0.45843267,0.7707419,-0.010423724,0.13514343,0.19841139,-0.15982011,0.02557383,-0.16703454,-0.25736216,-0.013978209,0.12885256,0.5382896,0.41304722,-0.15540546,0.3768457,-0.0273593,0.14523643,-0.09548697,-0.45124775,0.49266183,0.8952381,-0.09928851,-0.12280755,0.50897115,0.43486068,-0.20540756,0.40947622,-0.5604467,-0.25514778,0.661362,-0.31981906,-0.27282456,0.24082823,-0.32400945,-0.06345952,-0.6863243,0.25965828,-0.18224218,-0.1205844,-0.384576,-0.3622621,-3.4840307,0.07736845,-0.3165446,-0.15718381,-0.19541143,-0.08699347,0.32294223,-0.5523767,-0.47995156,0.2397046,0.03975918,0.58637583,0.027819643,0.18685175,-0.20253976,-0.1219318,-0.33336723,0.1662557,-0.08306922,0.29580173,0.10768004,-0.34924588,0.040133435,-0.07366478,-0.38076097,0.0724328,-0.33375937,-0.33378655,-0.08014056,-0.41154596,-0.15321928,0.62919647,0.08318231,0.019362746,-0.088782094,-0.124201626,-0.2289946,0.21169883,0.35362902,0.16175763,-0.10838069,-0.013704706,-0.05997766,-0.438438,0.16041018,0.076216035,0.3221946,0.28163528,0.061344266,-0.018730847,0.40905628,0.28821677,-0.18696101,0.6072573,0.39026397,-0.1359844,0.3065001,-0.19307002,-0.2111215,-0.5131436,-0.44298527,-0.0995343,-0.19992383,-0.4872699,-0.21523744,-0.23814084,-0.52821386,0.39682674,-0.06924947,0.31025714,-0.12398529,0.0787549,0.3839127,-0.025075102,-0.07899884,0.13715029,0.00788581,-0.45068482,-0.26937354,-0.6614918,-0.32294163,0.35180643,0.6908362,-0.2154008,-0.28340477,-0.033749692,-0.25699657,0.011869902,-0.16357057,0.09875271,0.26549068,0.2642519,0.06659749,-0.81263924,0.57657665,-0.14092216,0.014484886,-0.48974323,0.07222652,0.57100034,-0.53884053,0.42252052,0.20965837,0.16337821,-0.1294819,-0.567187,-0.21699633,0.19904785,-0.19095628,0.42697853,0.021760374,-0.9249907,0.48359737,0.2680619,-0.3313937,-0.6105358,0.5713164,0.11276663,-0.36189842,0.041981332,0.26551464,0.24966264,-0.0357257,-0.06645271,0.47848412,-0.39427775,0.29765618,0.11777938,-0.06462915,0.42027903,-0.10218152,-0.2011984,-0.44258577,-0.14676686,-0.35269883,-0.27262476,0.123666234,-0.05258749,0.10512693,0.096628174,-0.10338566,0.41023198,-0.25125945,0.17237902,-0.014417617,-0.23171231,0.5720853,0.41092294,0.4607256,-0.3562097,0.6627267,0.04866152,0.0019824624,0.19016589,0.10490843,0.38020623,0.21226306,0.33725327,-0.042119868,-0.10250894,0.3243721,0.9229861,0.20321701,0.41233778,0.20964536,-0.22605184,0.22912434,0.0629473,-0.1577234,-0.023463214,-0.36238882,-0.21021935,0.1050508,0.21508437,0.48396766,0.16670418,0.24581479,-0.12213325,-0.17429398,0.098248355,0.14364955,0.03770562,-0.8592578,0.32250893,0.18219467,0.68566,0.5384306,-0.15987562,0.017134951,0.49306062,-0.16644515,0.0051522334,0.30829823,0.0669087,-0.6186247,0.6367398,-0.34566143,0.48631355,-0.12717606,0.03611494,-0.017440828,0.19187975,0.2157567,0.6427078,-0.10120939,-0.05569188,0.034593813,-0.42467037,0.1275383,-0.26694056,0.048242632,-0.30844897,-0.34972122,0.37143898,0.5290601,0.055705108,-0.063948445,-0.0037682434,0.039918277,-0.15542455,0.08509307,-0.06848659,-0.1406482,-0.09585093,-0.58684915,-0.4471094,0.47490418,-0.06263721,0.14392158,-0.11704251,-0.028818829,0.19582961,-0.1627152,0.02524752,0.025457164,-0.7933866,0.083279625,-0.28476962,-0.46891,0.33567733,-0.29420713,0.22529243,0.15344046,0.0011590143,-0.24625088,0.21112983,-0.026227651,0.66573614,-0.34930435,-0.12210803,-0.45745894,-0.18751007,0.16915934,-0.1965196,-0.04845802,-0.358547,0.009367583,-0.68346626,0.43749097,-0.15973677,-0.23588301,-0.022019727,-0.2457224,-0.00580678,0.5959802,-0.1702364,-0.04557181,-0.11134045,-0.19089365,-0.2995611,-0.24278444,-0.08823899,0.18737262,0.20721494,-0.013781111,-0.13984972,-0.1981904,0.0514219,0.4227592,-0.057254504,0.23850158,0.23460308,0.22946812,-0.2951452,-0.14998646,0.30072367,0.47776857,0.08948124,0.04611505,-0.2778934,-0.37793228,-0.27596447,0.27041593,-0.25728294,0.25250852,0.05296006,-0.5254591,0.60303944,0.1527161,0.9121737,-0.023522113,-0.33059755,0.101587616,0.49126312,-0.037786108,-0.026133766,-0.19394632,0.7266556,0.58160347,-0.00021577279,-0.19494748,-0.34921217,-0.21808931,0.29511565,-0.23937923,-0.15569703,-0.011606906,-0.56171286,-0.20008211,0.19971257,0.17747049,0.057613946,-0.06375068,-0.123578355,0.081674434,0.13399357,0.4934944,-0.69399506,-0.11683848,0.17823538,0.102952376,0.021229377,0.2710332,-0.4372145,0.4172481,-0.63825506,0.23922281,-0.21716675,0.10656742,-0.10154716,-0.09023442,0.21288353,0.14812809,0.38382003,-0.29712045,-0.42177957,-0.1734218,0.5296425,0.1402517,0.20565608,0.54438347,-0.23900113,0.13274331,0.00885168,0.5341152,0.9307105,-0.044773053,-0.088382244,0.21310796,-0.46671757,-0.79500276,0.26597646,-0.2277005,0.093536176,0.039752845,-0.2198555,-0.51081944,0.2688303,0.18029398,0.01778889,0.029081067,-0.56448925,-0.3149285,0.24629827,-0.10091542,-0.3154988,-0.33676082,-0.012166947,0.7429572,-0.35277826,0.021712644,0.0064444146,0.2685469,-0.13722906,-0.64325327,0.03948056,-0.36675367,0.3193279,0.19860007,-0.074174486,-0.08226013,0.1606136,-0.4461839,0.14885542,0.12732951,-0.34858784,-0.0787112,-0.08825586,0.010488419,0.8871378,-0.15829493,0.013043157,-0.71061975,-0.4946965,-0.7637584,-0.4911685,0.5321319,0.091996625,0.1477988,-0.56472355,0.008582259,0.07862789,0.14684,-0.10144337,-0.53052825,0.4011369,0.08820523,0.2903412,-0.024976166,-0.69871014,0.04084339,0.030544555,-0.3204581,-0.42221466,0.55081487,-0.13229315,0.70343906,0.060590465,-0.032782458,0.05230488,-0.3289432,0.052038714,-0.31471118,-0.31712684,-0.6042992,0.20810659 +147,0.529624,-0.016905256,-0.49799135,-0.23126473,-0.27070266,0.35035264,-0.07267062,0.06541452,0.1669803,-0.24528944,-0.0021988004,-0.21235251,-0.018389873,0.33905208,-0.1100589,-0.7341898,-0.08951886,0.092129216,-0.73301095,0.35373628,-0.40339792,0.43832844,0.06005153,0.261636,-4.708208e-05,0.39009857,0.17707816,-0.205072,-0.041987285,0.16858919,-0.11497302,0.13731974,-0.5579972,0.040739886,0.086229704,-0.11663621,0.020932319,-0.30047822,-0.2695712,-0.5479125,0.33324963,-0.6056944,0.5366896,0.009248517,-0.28902632,0.147722,-0.07450763,0.1876085,-0.3877803,0.100402646,0.20587732,-0.30505598,-0.014637165,-0.14745393,-0.27075398,-0.56258094,-0.54485726,0.019643713,-0.6602575,-0.207633,-0.25088003,0.18827194,-0.33313903,-0.060579643,-0.15920982,0.41871452,-0.34781688,0.0821352,0.34798455,-0.2641259,0.04587546,-0.2361317,-0.12985201,-0.1282119,0.33161923,-0.07729132,-0.16779537,0.15971012,0.25334048,0.58132297,0.060662594,-0.33114147,-0.17812023,-0.018508852,0.05008991,0.4525688,-0.1271899,-0.22584704,-0.19283076,-0.07694906,-0.06739712,0.07603863,-0.008808553,-0.40129122,0.010261919,0.12134853,-0.18518755,0.3796512,0.50937897,-0.39191958,-0.26048228,0.35523966,0.55567765,0.100635394,-0.18070902,0.15031482,0.0073602237,-0.482,-0.25221592,0.30120793,-0.05492829,0.51377964,-0.10542594,0.23916732,0.74442166,-0.14881757,-0.0335225,-0.22620295,-0.22470577,-0.043858353,-0.065475546,-0.013767071,0.056169145,-0.3805318,0.011253936,-0.22525707,0.7670102,0.16788502,-0.8045722,0.36059093,-0.52225906,0.17015164,-0.15827543,0.67052,0.8970587,0.23155284,0.06601658,0.8367559,-0.57522666,0.096889,-0.06257847,-0.5249874,0.09378028,-0.07570773,-0.022790298,-0.5578577,-0.012772031,0.055683836,-0.07374498,-0.10420582,0.22339763,-0.49862513,-0.067677975,0.006443072,0.6875905,-0.46223348,-0.22004029,0.6038867,0.91209173,0.8026477,0.110196404,1.1272588,0.4427359,-0.28411108,0.20722489,-0.6110646,-0.51327425,0.13943376,0.3030659,0.321649,0.5187125,0.079557404,0.08738653,0.45239234,-0.11355251,0.17619032,0.04122337,0.10776773,0.06134257,-0.08620094,-0.30504295,-0.13259868,0.07549029,0.009893874,0.1793355,0.24736422,-0.24853209,0.3759166,0.16813178,1.5308039,0.06725018,0.13270926,-0.095291376,0.302928,0.16709161,-0.11472459,-0.1389985,0.4416665,0.3628637,-0.003573738,-0.5966541,0.007770937,-0.25470498,-0.39236078,-0.18570244,-0.40068886,-0.09055845,-0.16578352,-0.42944103,-0.01953599,0.18906625,-0.37834418,0.49559504,-2.5591404,-0.1435469,-0.11351184,0.23585913,-0.25955716,-0.34995425,-0.20151298,-0.4337608,0.034728486,0.42687225,0.24556127,-0.6272781,0.48932934,0.2722091,-0.2597047,-0.16418688,-0.63323724,-0.053962704,-0.09733205,0.2950891,-0.12192565,-0.015883116,-0.115067616,0.32266286,0.5012731,-0.110777244,-0.21532874,0.176501,0.5877575,0.05210498,0.48372787,0.16758628,0.5403888,-0.1640144,-0.16726133,0.32009912,-0.3387305,0.24867278,0.15567291,0.12413629,0.19448414,-0.39763504,-0.8222352,-0.5281048,-0.35008228,1.1987801,-0.38446593,-0.21054155,0.21644713,-0.038942162,-0.22254707,-0.027805358,0.46333125,-0.026955348,-0.09390745,-0.65171075,0.109297246,-0.10917226,0.15796983,-0.07882751,0.16224787,-0.21237652,0.58839613,-0.14112191,0.42924538,0.23911478,0.26446274,-0.017571859,-0.48894835,0.25833395,0.81719744,0.225669,0.10130252,-0.13374203,-0.2276389,-0.13636988,-0.103241585,0.16610743,0.4549713,0.7278181,0.10609101,0.15422033,0.36212525,-0.17467663,0.038619496,-0.121275544,-0.3223197,0.044913564,-0.06319415,0.5889113,0.50830203,-0.23122889,0.47539574,0.02764016,0.14942661,-0.18024586,-0.4406448,0.62719893,0.70956933,-0.1305054,-0.1693054,0.3462991,0.3569413,-0.49628308,0.3015883,-0.56154126,-0.11215614,0.75309104,-0.1754311,-0.33080104,0.23654252,-0.26975226,-0.018117387,-0.9726572,0.29707533,0.1257531,-0.3152323,-0.34336856,-0.20319043,-3.9321141,0.15139246,-0.26127905,-0.08199049,0.071814105,0.029052451,0.24613367,-0.545969,-0.36581543,0.054619387,-0.029492563,0.47658598,-0.06494165,0.2112758,-0.291739,-0.07911375,-0.1995751,0.28840998,0.077980354,0.31280857,-0.051337548,-0.3500531,0.15039042,-0.3420344,-0.49137756,0.0036246479,-0.38201672,-0.54090333,-0.099393055,-0.5188471,-0.17637807,0.77202636,-0.33993468,-0.072226465,-0.33838055,0.056868672,-0.15510768,0.4439438,0.18867204,0.13870932,0.15174255,0.028347895,-0.2126469,-0.4189797,0.217669,0.13026841,0.36685663,0.35795105,0.00040769763,0.21122368,0.59221065,0.6242827,0.02667861,0.573477,0.3805483,-0.13291286,0.4017784,-0.35792315,-0.05860465,-0.6866267,-0.4369772,-0.26217833,-0.41989988,-0.6492093,-0.27523172,-0.25630438,-0.67114997,0.32436883,-0.035494484,0.14559837,-0.08419981,0.27517968,0.3986227,-0.17849493,0.03978266,-0.11252056,-0.28577223,-0.35850772,-0.4197036,-0.48078924,-0.5183672,0.29971874,0.97345555,-0.1382316,-0.09742982,-0.16239782,-0.32669696,-0.08898237,-0.07634879,0.34457988,0.3059823,0.19134744,-0.29328898,-0.6250718,0.46910375,-0.28881052,-0.037911035,-0.6395905,-0.110734686,0.64382845,-0.5767983,0.5603073,0.14834993,0.22583091,0.18776241,-0.4756761,-0.27793735,0.17417069,-0.24467999,0.45621112,-0.0003022477,-0.5734997,0.43319753,0.17235465,-0.06002848,-0.5529283,0.5072259,0.054206006,-0.21823668,0.14573842,0.3395141,0.023073915,-0.121627904,-0.13649946,0.15720236,-0.57364285,0.19330084,0.3718003,0.05034624,0.30767524,0.044955064,-0.20255017,-0.49897882,0.06464225,-0.54397285,-0.30493438,0.030376118,0.1887291,0.31833696,0.101645045,0.018876731,0.43861288,-0.3311448,0.049917772,-0.033030733,-0.23499095,0.2987659,0.46265763,0.28352535,-0.5469109,0.5622189,0.08399238,0.11356567,0.031985253,0.080972224,0.56102973,0.25740322,0.2516634,0.010137102,-0.14766695,0.2445972,0.57503456,0.1975107,0.4364694,0.19136265,-0.27154505,0.32957834,0.17609513,0.064236104,-0.08535774,-0.18420629,-0.0911077,0.15579727,0.31826195,0.4300357,0.05148509,0.34775472,-0.14204356,-0.2061151,0.26628605,0.2210123,-0.21153384,-1.0337484,0.27225468,0.4150039,0.65346724,0.3760607,-0.045052372,0.064805046,0.45442164,-0.45839167,0.14849073,0.34512907,-0.07651637,-0.56655025,0.55050373,-0.49501133,0.5411753,-0.22590643,-0.07264617,0.06384671,0.1321446,0.20618793,1.0131708,-0.06821449,-0.021388266,-0.05829545,-0.2185765,0.032450538,-0.33826643,0.22620478,-0.5709683,-0.24580503,0.56213665,0.38094613,0.27049577,-0.3002388,0.02477885,0.03184417,-0.10893977,0.121602446,-0.1287779,-0.028605971,-0.12443039,-0.70354474,-0.5608754,0.548515,-0.18151027,-0.00036301464,0.052509643,-0.34462392,0.2091918,-0.21041702,-0.019836228,-0.12792033,-0.5955182,-0.016978778,-0.2379663,-0.6198788,0.4246419,-0.30793464,0.3352374,0.17309895,-0.0103880735,-0.44293556,0.31150222,0.14528501,0.7199789,0.068183176,-0.09504913,-0.47738495,0.08232771,0.3322615,-0.27591032,-0.210807,-0.30566943,0.08361827,-0.44971454,0.42427188,-0.10307031,-0.37440035,-0.14530735,-0.14441986,0.009774378,0.43948066,-0.2821159,-0.078261815,0.04903289,-0.033553574,-0.19164744,0.19185269,-0.35265118,0.31685275,0.00714143,-0.1336468,0.021015089,-0.041724674,-0.030792892,0.23844889,0.20586982,0.21611883,0.38820747,-0.039961874,-0.40209818,-0.102367096,0.01591589,0.26164278,0.18220598,-0.057830364,-0.28400034,-0.31710067,-0.28003022,0.33091092,-0.18356779,0.160042,0.09859037,-0.5325334,0.66249275,0.08144536,1.2084689,0.1706422,-0.22875199,0.16498983,0.46292692,0.2209818,0.21158594,-0.48964444,0.7499537,0.5778175,-0.049238153,-0.40736324,-0.25845912,-0.20722565,0.26180273,-0.24806663,-0.20461446,-0.06320117,-0.7089825,-0.22733282,0.1792056,0.108589925,0.13626117,0.1329996,-0.1542723,0.08220285,0.1459122,0.4975777,-0.50613296,-0.16203976,0.3421501,0.12402106,0.023914468,0.26981777,-0.30267465,0.4600029,-0.6364448,0.10868369,-0.45878908,0.08202718,-0.022747623,-0.17900406,0.19018957,0.053514466,0.35436776,-0.19543704,-0.32959965,-0.25509655,0.6561099,0.22389828,0.3213029,0.7624602,-0.22347337,-0.107180476,0.12586407,0.40954003,1.2392414,-0.037273765,0.030140772,0.4029301,-0.29080173,-0.64941484,0.21676138,-0.30125427,0.14792573,-0.14228287,-0.3284822,-0.26659942,0.32818526,0.03164328,-0.013050996,0.11944935,-0.5199355,-0.3266838,0.47021788,-0.28464866,-0.26137415,-0.22568402,0.39053118,0.8145775,-0.46120796,-0.24906248,0.10457486,0.28600535,-0.24431534,-0.51809406,0.12917417,-0.35003287,0.3523405,0.121213466,-0.2899248,0.098478675,0.17565507,-0.38367796,0.24631473,0.45685366,-0.39891517,0.037330512,-0.051697895,-0.2809777,0.91675764,0.08286926,0.0044254214,-0.6701215,-0.46846417,-1.0200611,-0.56540775,0.2677169,0.15083703,-0.1304051,-0.48490122,-0.07656465,0.038199108,-0.07590415,0.13417107,-0.5630209,0.34798163,0.13248932,0.4802321,-0.027423918,-0.89657414,-0.13021415,0.08151014,-0.33441123,-0.7288115,0.58167285,-0.23965524,0.66104454,-0.017332762,0.03987781,0.20961721,-0.4920558,0.18771274,-0.40708023,-0.15917759,-0.739905,0.08824521 +148,0.35667002,0.037087303,-0.6473647,-0.1312353,-0.21143143,0.045299992,-0.23989041,0.47891062,0.30627888,-0.35258496,0.112414874,-0.07129801,0.034042917,0.57457864,-0.23073079,-0.59827155,0.21948291,0.058466733,-0.59922385,0.33357388,-0.43289092,0.2924381,-0.11354563,0.3764731,0.13762444,0.20034729,0.04587025,-0.021677095,-0.021579636,-0.16661301,-0.19035593,0.1984361,-0.42718986,0.017960755,-0.14476047,-0.29504248,0.0005483742,-0.60589284,-0.498966,-0.6521529,0.35069898,-0.8588559,0.75001425,0.113576025,-0.18900491,0.26950562,0.22363938,0.33966255,-0.09140463,-0.02760557,0.038697485,-0.29494974,-0.14710198,-0.16133817,-0.5549871,-0.527882,-0.6615094,-0.02871076,-0.6637287,-0.13292016,-0.25033447,0.15450934,-0.38032097,-0.00041689322,-0.027358051,0.37415302,-0.34677118,-0.011552609,0.10741566,-0.095492415,0.10083052,-0.6761554,-0.28374597,0.015381194,0.44921172,-0.19491458,-0.31818134,0.3108509,0.34501883,0.5405497,-0.1796327,-0.20630914,-0.28804827,-0.030122302,-0.06365778,0.7396029,-0.18390773,-0.48996612,-0.07248613,0.014936062,0.4247494,0.5000259,0.21716659,-0.26806206,-0.21209274,0.062609114,-0.25193924,0.5493652,0.6493199,-0.3447227,-0.18917099,0.4897472,0.30291268,0.31370184,-0.09896655,0.44119364,-0.05598825,-0.72193396,-0.11343702,-0.05414823,-0.106827095,0.53698087,-0.14214095,0.4440487,0.6155456,-0.12609237,-0.072484985,0.18992582,0.0042161,-0.018970426,-0.121531434,-0.2850077,0.1705331,-0.5462421,0.19338384,-0.12150018,0.61609083,0.33006412,-0.91584027,0.38186073,-0.59817326,0.17353384,0.026283674,0.5499156,0.8307866,0.5747439,0.38256976,0.7426436,-0.50681645,0.10547757,0.048650607,-0.37166727,0.042621695,-0.18031706,0.07957983,-0.51818967,-0.083315775,0.17657372,-0.13675275,0.38452032,0.45902258,-0.5072329,-0.10667816,0.27982554,0.7901996,-0.20693295,-0.07858511,0.8961497,0.9797086,0.9950429,0.14640036,1.0618842,0.10293777,-0.04554291,0.08724319,-0.08372327,-0.7834585,0.17878345,0.33292866,-0.2247298,0.41398877,0.13836172,-0.09653469,0.28847757,-0.29250875,-0.31942242,-0.0079750875,0.16650201,0.13944586,-0.39651993,-0.2555131,-0.22978464,-0.13612527,-0.19917892,0.22510743,0.25123593,-0.24910808,0.45768675,0.1603179,1.1546979,0.09609382,0.16648175,0.13755564,0.4644038,0.28733554,-0.20178308,-0.18869129,0.36372313,0.41336682,0.16611221,-0.5658079,-0.052372035,-0.3096217,-0.36248586,-0.13281146,-0.34562752,-0.3242953,0.027498927,-0.31059292,-0.27572206,-0.17372335,-0.349105,0.6203471,-3.022928,-0.28048706,-0.1868599,0.26130578,-0.032402277,-0.35044685,-0.10905798,-0.5891869,0.49948475,0.35031688,0.2886853,-0.6727404,0.324256,0.4492628,-0.43082413,-0.22370464,-0.80177104,-0.12383126,0.10207097,0.18732016,0.029867519,-0.12214155,0.07842267,0.20325732,0.4607475,-0.11010671,0.048918825,0.22227328,0.4348482,-0.0033381444,0.3845247,-0.29791784,0.5714109,-0.25109285,-0.24174412,0.21109122,-0.5031361,0.30174315,-0.19695543,0.11473144,0.6144262,-0.32660806,-0.93255913,-0.4328738,0.002667913,1.0790342,-0.09169174,-0.34352392,0.39605573,-0.47184405,-0.32239628,-0.18636124,0.5871595,-0.16374254,-0.115646124,-0.69961035,-0.16234702,-0.22437182,0.20107743,-0.110916175,0.078909434,-0.3734827,0.48254073,-0.025199762,0.50704724,0.20677568,0.17776181,-0.52663124,-0.3640444,-0.09911119,0.81886744,0.5017095,0.093329206,-0.1564411,-0.20977746,-0.27691275,-0.33764198,0.123581186,0.5870353,0.5116606,-0.12406949,0.18612926,0.30953616,0.10240658,0.1830363,-0.1683713,-0.26980278,-0.07541111,-0.07383482,0.48348823,0.58926576,-0.25678343,0.55965245,0.07587074,0.16598257,-0.31891897,-0.4913584,0.60838646,0.66475815,-0.18315543,-0.32610688,0.6743567,0.15453514,-0.22753988,0.47825342,-0.5689086,-0.41343182,0.6372541,-0.06395138,-0.5489329,0.27802268,-0.23722799,0.048325837,-0.6992605,0.39820543,-0.2235445,-0.5693416,-0.48263037,-0.037068717,-3.456182,0.09611945,-0.3322439,-0.1446698,-0.16729453,-0.14786643,0.17401117,-0.5415123,-0.71062875,0.22909251,0.1911533,0.8470455,-0.3640721,0.11123927,-0.105148315,-0.5216739,-0.4380512,0.1122168,-0.06805726,0.30138636,0.07281424,-0.114399634,-0.020000424,-0.005742041,-0.49160525,0.068717174,-0.48069608,-0.26001474,-0.117178,-0.53364295,-0.21713679,0.80990756,-0.35988653,-0.05675649,-0.4721545,-0.10174159,-0.20995378,0.34299052,0.11858311,0.04612505,-0.022324145,-0.01264668,0.16019654,-0.2945986,0.2730592,-0.100385346,0.30532143,0.36618993,-0.10576197,0.17286345,0.54597247,0.7642291,-0.21104988,0.9228128,0.34964877,-0.034132272,0.44574112,-0.310164,-0.3182791,-0.3858472,-0.40804055,0.10616513,-0.44801596,-0.4106239,-0.2597612,-0.28223202,-0.7099687,0.44519183,0.00019487969,0.23913883,-0.106433116,0.3645404,0.40651956,-0.226482,-0.040364068,0.05187544,-0.16727322,-0.34784266,-0.1035082,-0.6229211,-0.41549146,0.17819801,0.95123327,-0.22407986,0.036401056,0.2954114,-0.31259096,-0.07407867,0.08555053,0.16912468,0.14818272,0.24289736,-0.19465153,-0.69032454,0.36518615,-0.5476299,-0.16925237,-0.7974757,-0.010164052,0.7125772,-0.5766458,0.61569244,0.3936318,0.13776213,-0.25819233,-0.82147986,-0.27460724,-0.057327528,-0.18196529,0.32044813,0.25727934,-0.9047102,0.5519204,0.4516528,-0.24340604,-0.61939424,0.5195066,0.10533294,-0.11383597,0.15141012,0.33382878,0.18366408,-0.02388712,0.028226767,0.13788693,-0.37184432,0.4684267,0.29411867,0.13397922,0.49818784,-0.13209759,-0.23873752,-0.669366,-0.12606353,-0.54613084,-0.16077691,0.11042465,0.051745288,0.27015918,0.08558929,-0.048491497,0.3227177,-0.5044395,0.1749351,-0.08886372,-0.2205986,0.22391011,0.47948983,0.56692463,-0.36819267,0.6511879,0.12128968,-0.0971721,0.17347851,0.04366882,0.55651635,0.13644172,0.44054043,0.12799488,-0.34409633,0.06405551,0.96398544,0.12317709,0.27748165,0.13856323,-0.0020748628,0.06894536,0.1352207,0.067910604,0.18884405,-0.533975,-0.0970627,-0.30501986,0.28506786,0.6090434,0.26544034,0.12640902,-0.029541107,-0.29099485,-0.022365285,0.18575536,0.055887945,-1.507544,0.43750528,0.23594683,0.84263444,0.30257806,0.19954935,-0.050377164,0.6727044,-0.0066086054,0.11666118,0.27997157,0.095832914,-0.40770817,0.54375076,-0.77583987,0.62385535,-0.036085255,-0.015677048,0.05100968,0.06579588,0.35283244,0.85802037,-0.22860526,0.06209061,0.19543995,-0.2287271,0.09679481,-0.4651954,-0.081713125,-0.3957767,-0.20379877,0.7257802,0.48359993,0.2768255,-0.2370704,-0.004872021,0.056499556,-0.14105883,-0.0056909323,-0.07282746,0.12286936,-0.48184347,-0.53417975,-0.14600687,0.5150119,0.16018614,0.22767569,0.056445483,-0.18318532,0.31847382,-0.20071569,0.06760599,-0.1517382,-0.71455187,-0.1101706,-0.23162434,-0.6441753,0.3676413,-0.03805317,0.32312822,0.3140983,0.11560889,-0.118988715,0.48445326,0.07202465,0.8228044,-0.29166216,-0.043125905,-0.15680996,0.16792327,0.23126452,-0.2426218,0.07008125,-0.29903525,0.026522985,-0.38588327,0.3484206,-0.11712916,-0.25596815,-0.16730064,-0.089670494,0.251207,0.5214268,-0.28117678,-0.09237874,0.11475515,-0.1463518,-0.326633,-0.15144938,-0.19049653,0.20368077,0.19988397,-0.12944561,-0.07777286,-0.20962366,-0.16664776,0.096030876,-0.02708766,0.37081617,0.40191144,0.30511045,-0.1539879,-0.112117365,0.068993844,0.69137853,0.06694553,-0.23729406,-0.36005613,-0.6165641,-0.36396912,0.35405487,-0.03925738,0.20846996,0.07780748,-0.30843925,0.71310055,0.053700462,1.0884024,-0.028675951,-0.3909083,0.06308083,0.46393007,-0.04816785,-0.14417374,-0.24490665,0.956145,0.48494735,-0.10594468,-0.05770951,-0.31425765,-0.06934273,0.31631902,-0.27162477,-0.2770139,0.16513942,-0.4800437,-0.020469945,0.26837882,0.0050416198,0.23534459,-0.20119675,0.04408173,0.4029589,0.17268068,0.2161089,-0.49853304,-0.11222979,0.35718757,0.35825354,0.08174043,0.114733234,-0.48206037,0.30608994,-0.4852487,-0.07501722,-0.38179478,0.27003968,-0.0957642,-0.28010014,0.22790295,0.1745,0.5150931,-0.23042327,-0.36196524,-0.0047710827,0.4628309,0.1094243,0.17304057,0.49112236,-0.27245897,-0.062677346,-0.13195449,0.4243137,0.90816104,-0.22501875,0.0070204875,0.37422472,-0.31919786,-0.70194113,0.33030716,-0.533016,0.24851006,-0.031771634,-0.052381072,-0.36544788,0.28900388,0.35248086,0.1760932,0.07888793,-0.5035582,-0.34980986,0.17227837,-0.19961089,-0.29989767,-0.3901548,-0.05101759,0.7037274,-0.3128379,-0.21420108,0.06986453,0.33202246,-0.0819006,-0.55261123,0.1736022,-0.21927746,0.3590399,0.061526276,-0.33154085,-0.13415273,-0.06458848,-0.48769045,0.23507659,0.06974326,-0.25749692,0.020877829,-0.3324752,-0.12799573,0.7583543,-0.45609647,0.2585626,-0.61133456,-0.5627879,-0.8706224,-0.27904752,0.12115093,0.23765205,0.08174964,-0.7600069,0.016069688,0.028618898,0.007919559,-0.045602597,-0.322041,0.47645357,0.05710139,0.37858644,-0.15738946,-0.87578833,0.089077935,-0.0026457815,-0.2293362,-0.61544454,0.61193,0.020042915,0.8253962,0.17766245,-0.02091978,0.08448868,-0.42072266,0.22290042,-0.22130054,-0.1501786,-0.6502152,0.12550674 +149,0.1840183,-0.39416927,-0.49052933,-0.044325087,-0.25141016,0.17978188,-0.28771827,0.38997397,0.050840843,-0.52524483,-0.1288461,-0.1753649,0.07700456,0.4967026,-0.20369332,-0.45993033,-0.012983637,0.15778732,-0.5954465,0.49206266,-0.37376162,0.33541775,0.17157629,0.38378045,0.061808117,0.16096766,0.12491131,-0.16700563,0.009798176,-0.37016743,-0.16536485,-0.03812686,-0.6262451,0.22945206,-0.20293912,-0.5453025,0.096185245,-0.50256836,-0.30513138,-0.7185628,0.21332785,-0.76787627,0.568934,0.07718931,-0.1624606,0.18731771,0.17964666,0.5152922,-0.30021176,0.066067584,0.31635174,-0.20677136,-0.15243609,-0.11401594,-0.15197305,-0.4992542,-0.54080504,0.018616254,-0.44136646,-0.18703476,-0.10633623,0.26373655,-0.13419597,0.21727861,-0.16891114,0.27221885,-0.48249367,0.17159745,0.18650767,-0.16743453,0.12021172,-0.5827368,-0.22445668,-0.25861254,0.3458113,-0.32406428,-0.19787209,0.10919428,0.107155584,0.42091274,0.034792032,-0.15890196,-0.28003123,-0.13420752,0.14910476,0.64374256,-0.071737446,-0.3529375,-0.1934243,-0.12062844,0.23151027,0.042766605,0.0917246,-0.3626749,-0.13002658,-0.17768906,-0.38047653,0.2676365,0.41951945,-0.37417874,-0.23870073,0.33491114,0.53107363,0.14291146,-0.10959483,0.08272193,0.06422268,-0.58723515,-0.18037093,0.146207,-0.0794809,0.48163506,-0.09051641,0.2711869,0.70609313,-0.22838543,-0.051005363,-0.014561713,-0.060822718,-0.113712616,-0.11873816,-0.33436495,0.26397654,-0.44066045,0.12556331,-0.33271247,0.69522107,0.17155935,-0.65830547,0.31718522,-0.57616055,0.10637057,0.04729752,0.5029052,0.5171441,0.4634799,0.15201771,0.5237997,-0.38130364,0.089929186,-0.21962193,-0.117289916,0.050107595,-0.2104682,-0.09447558,-0.37970957,0.028792841,0.032750417,-0.0028894714,0.13425806,0.5038446,-0.55769473,-0.033269595,0.048317317,0.7196807,-0.26474696,-0.056906264,0.99506503,0.95454866,0.94286686,0.13975973,1.205286,0.2779447,-0.23529097,-0.045209747,-0.05588237,-0.6089861,0.16387407,0.40597448,0.15255411,0.17222698,0.19305149,-0.08757188,0.5555578,-0.43601254,0.039275832,-0.0704406,-0.01927503,0.04173357,-0.12567553,-0.35973316,-0.19831419,0.052387714,-0.061300952,0.036880814,0.3010917,-0.26072094,0.5426711,0.08384148,1.2503603,-0.0010115717,0.14519264,0.026436673,0.39837232,0.12651818,-0.130899,0.0036096573,0.3432979,0.4194503,0.06808143,-0.6574785,0.14136633,-0.13171935,-0.43097302,-0.17109285,-0.24093066,-0.46425432,-0.03744075,-0.52719086,-0.14069337,-0.03639539,-0.0924397,0.33071035,-2.6077526,-0.08912742,-0.20315692,0.30236,-0.15564397,-0.29022533,0.010529382,-0.4615478,0.49132204,0.3681322,0.429253,-0.5704056,0.4317185,0.3907239,-0.52894866,-0.10207585,-0.7875058,-0.22392575,-0.065335445,0.353586,0.011973338,0.0058185756,0.09587937,-0.08176596,0.4510921,-0.2527294,0.15260755,0.21573612,0.38777897,0.10892632,0.49608567,0.1399303,0.5424074,-0.4737629,-0.18805523,0.22561009,-0.53736037,0.4120824,-0.09524008,0.091698535,0.37829205,-0.44767147,-0.89944637,-0.6484389,-0.30463767,1.022986,-0.030535545,-0.35067272,0.25828695,-0.31431913,-0.28694704,-0.0968099,0.60814816,-0.13764913,0.11706461,-0.758141,-0.11577689,-0.0785442,0.34983703,-0.087765,-0.01912232,-0.49145466,0.61839473,-0.07728312,0.39810824,0.4066338,0.21424153,-0.29419398,-0.3342674,0.042082913,0.9274634,0.32552257,0.17094265,-0.09735886,-0.23050794,-0.24936879,-0.094040975,-0.015505182,0.5604129,0.5211566,-0.012790458,0.1927665,0.2229952,0.067536175,0.14919852,-0.23211029,-0.22311251,-0.09471745,0.1244896,0.49768782,0.5248865,-0.068054356,0.3410384,-0.12773414,0.4532831,-0.21009982,-0.54721314,0.4154376,0.75362194,-0.16606021,-0.10317741,0.5393912,0.61257404,-0.09610055,0.37072992,-0.6106771,-0.44116163,0.46134418,-0.16591273,-0.48223922,0.2344093,-0.24791911,0.18096247,-0.87325543,0.3711295,-0.32103753,-0.5660159,-0.7117661,-0.09471832,-3.3985515,0.1368229,-0.13050775,-0.15006399,-0.0969461,-0.16220793,0.18521874,-0.47525555,-0.420132,0.18418775,0.08280476,0.58038527,-0.09495367,0.15654159,-0.3089191,-0.23437054,-0.30077878,0.2404032,0.112042114,0.24227893,-0.24061069,-0.40000322,0.0049469257,-0.21870221,-0.4165677,0.02033359,-0.64452493,-0.2854406,-0.1428149,-0.36568022,-0.21970214,0.6487864,-0.349638,0.12495983,-0.14235035,-0.0056787697,-0.2559887,0.4761834,0.32032555,0.15928066,-0.02856962,-0.12419629,-0.1598021,-0.44926628,0.20334704,0.22630583,0.14169873,0.34788817,-0.13125257,0.14828618,0.4359391,0.6762444,-0.091427214,0.8194846,0.33558849,-0.11122657,0.41300374,-0.17939426,-0.34209844,-0.44587776,-0.16242301,-0.13989769,-0.37665886,-0.60426456,0.012123389,-0.29475912,-0.7398849,0.5386302,0.12646304,-0.3213584,-0.008953,0.29303068,0.2683081,-0.3485264,-0.0884318,-0.10669751,0.024360763,-0.3890291,-0.31045145,-0.567027,-0.5461327,-0.06459455,1.0177596,-0.054670483,0.1721919,0.09702698,-0.23955598,-0.030133452,0.3102887,0.06786572,0.16769336,0.34605142,-0.14904015,-0.7464305,0.77666885,-0.14968646,-0.38427252,-0.6273238,0.22648051,0.6910432,-0.69490063,0.48819858,0.45448086,0.03383397,-0.104702115,-0.25852516,-0.17412806,-0.049374994,-0.23675106,0.24860458,0.027238114,-0.6787867,0.41215715,0.3985641,-0.2971092,-0.6849322,0.52747166,-0.017358989,-0.22764559,0.23586154,0.31418344,0.21253611,0.053398438,-0.1176589,0.10557718,-0.41948104,0.28935862,0.2674732,-0.05912957,0.33474606,-0.26889628,-0.14173147,-0.77975607,0.11857533,-0.5058145,-0.20183893,0.20684603,0.07966561,-0.004369342,0.30105385,0.08252782,0.35111403,-0.25462976,0.09915018,-0.30417082,-0.2995887,0.25362328,0.49918303,0.39006737,-0.3029605,0.7288348,0.07219957,-0.07467152,-0.12124467,0.042763136,0.52093464,0.08986693,0.56003326,-0.16913857,-0.21984792,0.23161945,0.78289837,0.19575964,0.4485233,0.17270763,-0.046442915,0.26462722,0.1605149,0.087963454,0.19784059,-0.46213004,0.12460705,-0.18419906,0.13742034,0.42347997,0.05383808,0.32567376,-0.10219156,-0.2238466,0.04641645,0.16849817,0.19274528,-1.0231901,0.26320758,0.21974595,0.6586216,0.4936688,0.08340196,0.079485215,0.6974439,-0.40395617,0.0116446065,0.27060953,0.023914397,-0.47496185,0.64997244,-0.772796,0.60699356,-0.13582267,0.007000949,0.14027742,-0.24585497,0.46675786,0.83913743,-0.13608715,0.029803041,0.1364318,-0.31916958,0.044433773,-0.538301,0.1395289,-0.36513796,-0.22874126,0.7559018,0.3464159,0.4325666,-0.10535208,0.023241734,0.16289672,-0.16847558,0.21891761,0.121217504,0.20755978,-0.062034544,-0.51777244,-0.12843956,0.7358179,-0.28822497,0.13736318,0.15578313,-0.50414294,0.31764287,-0.07488709,0.08925121,-0.07981419,-0.7278554,0.06756799,-0.47080207,-0.4598969,0.40367705,-0.048688646,0.3512335,0.2551257,0.059895117,-0.2220575,0.5692525,-0.09023019,0.84876144,0.08022666,-0.14155385,-0.13345353,0.18150277,0.261886,-0.23041442,0.046328705,-0.21732603,0.06934001,-0.566985,0.31827268,-0.12649323,-0.31085953,0.15314303,-0.07258978,0.1058774,0.4693442,-0.13101813,-0.275889,0.33702973,-0.016940799,-0.1142823,-0.17444213,-0.19782822,0.21706483,0.24042514,0.21354981,-0.070486955,-0.24934277,-0.16588545,0.37444046,-0.019664437,0.4951484,0.32521722,0.00033846073,-0.45167497,-0.06607911,-0.027487146,0.36950782,-0.17137179,0.06994962,-0.14356568,-0.5948222,-0.39685303,0.1476575,-0.12695716,0.34735537,0.061478145,-0.23568277,0.82663685,-0.17108835,1.0343426,-0.015078799,-0.56993586,0.23589174,0.6090061,-0.049654666,0.007229145,-0.41427013,0.9583796,0.42438054,-0.1227748,-0.11627705,-0.37680057,-0.14438793,0.32134214,-0.25598308,-0.24524513,0.013692315,-0.5224881,0.030905416,0.10812692,0.35791677,0.20900486,-0.09229897,0.14011447,0.28151304,0.10230541,0.25805715,-0.7279201,-0.17697139,0.4073463,0.29579234,-0.17508207,-0.01610945,-0.42367873,0.4718645,-0.46559498,0.16434005,-0.26721945,0.05034713,-0.28964898,-0.2692025,0.21624017,0.16922964,0.26292536,-0.40325785,-0.35196194,-0.24458954,0.5101643,0.23559989,0.25034824,0.6994129,-0.13945083,-0.13530475,-0.0644923,0.46069422,0.83941233,-0.5503255,-0.1496266,0.4223452,-0.4421629,-0.47670847,0.33847508,-0.43196106,0.06946062,0.08923403,-0.21830304,-0.4412341,0.23611675,0.25452933,0.010349989,0.064204656,-0.7265481,-0.043826003,0.34710488,-0.38353327,-0.38209972,-0.35770342,0.36291698,0.70392716,-0.23790489,-0.34506392,0.1048483,0.26271856,-0.32911512,-0.57045805,-0.0444493,-0.30633026,0.3771599,0.11494545,-0.28210735,-0.17900427,0.046945516,-0.4138743,-0.057365723,0.083323784,-0.3578403,0.04697482,-0.40004808,-0.07491168,0.7222641,-0.087194405,0.20861088,-0.67179024,-0.49094948,-0.7930197,-0.38619536,0.5770051,0.35861763,-0.0031419354,-0.5499659,0.015544648,-0.07418215,-0.22777963,-0.006650712,-0.47501448,0.5312781,0.16047515,0.3003921,-0.08446848,-0.7794338,0.14879094,0.0739531,-0.28394294,-0.46266454,0.38597107,0.028027972,0.8459534,0.06146878,0.06985922,0.34983143,-0.4512888,0.12090818,-0.20511237,-0.17312583,-0.6783329,0.03440199 +150,0.37371594,-0.09779442,-0.33349797,-0.09053819,-0.40293407,-0.020285327,-0.0021999045,0.72096264,0.4784422,-0.61344826,-0.46265164,-0.2441123,0.05705775,0.5372437,-0.35101217,-0.7027739,0.15246099,0.23538227,-0.1284513,0.6476799,-0.24001303,0.5592756,0.21036705,0.4241143,0.17709267,0.2742918,0.30791602,-0.04247739,0.20900905,-0.3529641,-0.17716989,0.32617092,-0.6876237,0.5982584,-0.35353744,-0.54416484,0.3119205,-0.7889849,-0.42333025,-0.7052604,0.24142797,-0.8654606,0.793082,-0.021053657,-0.14003272,0.028089106,0.17279617,0.06566089,0.11846237,-0.009740109,0.00399791,-0.031523444,-0.20553374,-0.032111,-0.38358226,-0.8044756,-0.66401833,-0.013711643,-0.4424262,-0.064229086,-0.48014516,0.25018778,-0.2851264,0.053160787,-0.017104369,0.54924715,-0.42781997,0.25791052,0.039240252,-0.16185562,0.18883081,-0.62123716,-0.28525084,0.0020414093,0.065795645,-0.24083178,-0.09562664,0.45368236,0.36088338,0.52480984,0.16087815,-0.20057127,-0.15345463,-0.07367671,-0.084864005,0.7266854,-0.008364325,-0.5801188,-0.18616697,0.08820264,0.4437394,0.19309388,0.26889363,-0.27414936,-0.19232702,-0.3089428,-0.3619967,0.6588421,0.52333605,-0.34637433,-0.2854522,0.35539833,0.21633255,0.20100553,0.053533096,0.13994792,0.0912859,-0.63144284,-0.2604769,-0.28424644,-0.33689523,0.6838778,-0.11771135,0.44898286,0.6658581,-0.15913582,-0.0019975186,0.16053383,0.15169232,-0.32978645,-0.1356062,-0.21435404,0.31265497,-0.45679754,0.06508684,-0.16554795,0.92038727,-0.052779026,-0.60309285,0.305932,-0.58126783,0.087428704,-0.11268089,0.5143479,0.6113086,0.4970337,0.4518547,0.7334608,-0.47152406,0.076831676,0.059597623,-0.47266167,-0.15133435,-0.33916536,-0.114465736,-0.42312583,-0.084524795,0.084155805,0.14162627,0.22897586,0.47384197,-0.7809316,-0.2586666,0.29052097,1.1091386,-0.22287016,-0.29186946,0.93025637,1.2148079,0.951964,0.05259158,1.4414771,-0.06255837,-0.084342316,-0.20028722,0.018565763,-0.6462099,0.2873056,0.43976888,-0.25139305,0.31645185,0.12766156,-0.049841244,0.29300374,-0.5235015,-0.31051776,-0.11784878,0.35247424,0.053824365,-0.25429392,-0.75024545,-0.21657686,0.00036148727,-0.013589472,0.31901428,0.38952655,-0.25428277,0.37941736,0.15104565,1.0687876,0.006321433,0.10268189,-0.013244713,0.3634339,0.29087144,-0.11138545,0.08092808,0.10598278,0.20706448,0.113409914,-0.49053258,0.052202307,-0.33205286,-0.348094,-0.16166818,-0.30107138,-0.3158652,0.24061875,-0.31991023,-0.22963187,-0.179674,-0.18316983,0.52265704,-2.4370456,-0.28816244,-0.18580961,0.40149552,-0.17797616,-0.27703804,0.117291406,-0.44777194,0.40800577,0.41754523,0.5643541,-0.64629394,0.29154664,0.7238871,-0.76475286,-0.27466613,-0.44490847,0.05528409,0.11343124,0.41211575,0.09561219,0.011407795,-0.08045198,0.0075272294,0.57987434,0.17071182,0.21820407,0.41154855,0.63085186,-0.25176615,0.27975136,-0.04611037,0.54047453,-0.257603,-0.1187943,0.22882803,-0.31187227,0.4345842,-0.39540648,0.025074994,0.64497626,-0.5552459,-0.8880676,-0.5942416,-0.48353872,0.9737015,0.0765785,-0.3481307,0.22346893,0.025891736,-0.15600187,-0.07716898,0.79111797,-0.19355917,0.03129673,-0.56039166,-0.056785524,-0.014380145,0.07732089,-0.07932918,-0.27026552,-0.40965635,0.6163474,-0.02029185,0.3712247,0.35095206,0.42727226,-0.4920803,-0.5003557,0.19494864,0.9410828,0.67491233,0.22321515,-0.31792971,-0.07951024,-0.3898535,-0.0767442,-0.106005296,0.72654784,0.60763675,-0.21205935,0.052004438,0.3850034,0.42550245,0.15817043,-0.09576029,-0.42108002,-0.25792417,0.022549186,0.5186382,0.6395017,-0.45759225,0.23597315,-0.18065739,0.33836773,-0.15872757,-0.44691795,0.47537532,0.9870968,-0.24906471,-0.080232225,0.93592244,0.44568673,-0.2535762,0.47415894,-0.67050016,-0.4718259,0.33402202,-0.024433207,-0.48768526,-0.00029594303,-0.15687072,0.06628337,-0.9613183,0.5150508,-0.09499802,-0.6637368,-0.4176392,-0.14106205,-2.527859,0.26026747,-0.20338936,-0.008380106,-0.19044703,-0.17584802,0.013479674,-0.6792432,-0.7091165,0.4429725,0.09792368,0.5570848,-0.24892953,0.2258708,-0.06608741,-0.5419547,-0.20758423,0.28984353,-0.023344422,0.32292348,0.05766625,-0.45889148,-0.094770975,-0.02524047,-0.5623634,0.15053307,-0.6088499,-0.46028534,-0.32024124,-0.7251717,-0.074168146,0.73625314,-0.38193554,-0.034749042,-0.25754485,0.26400802,-0.10781336,0.07860911,-0.0732823,0.09601784,-0.02742461,-0.14635208,-0.0062565566,-0.112256035,0.73420155,0.14682797,0.5404048,0.32773745,-0.15723595,0.002758318,0.6490777,0.6398014,-0.21872795,1.0929645,0.17936713,-0.22052515,0.35155994,0.11683104,-0.5043291,-0.61019075,-0.39064372,0.17372537,-0.48823333,-0.45779067,0.1707326,-0.24111858,-0.77030414,0.62940794,0.10729803,0.44039184,-0.10953133,-0.09469849,0.40730038,-0.28215224,-0.0810827,0.035579935,-0.06895722,-0.6583551,-0.43065658,-0.650966,-0.37083295,-0.050456453,0.79800427,-0.21330228,0.123858854,0.1416564,0.08098446,0.10820389,-0.021836648,-0.006893861,-0.16282704,0.3369344,0.0042807283,-0.8129282,0.56182206,-0.1023909,-0.17211692,-0.58055264,0.25006565,0.62828624,-0.6470806,0.42963964,0.3402023,-0.08630611,-0.21610999,-0.65766156,-0.38629067,-0.121041834,-0.13686648,0.35588342,0.27216306,-0.8611433,0.37894878,0.19623336,-0.37701574,-0.66745126,0.65235865,-0.19514683,-0.086195245,-0.047046807,0.35988456,0.48890465,-0.03416605,-0.07609932,0.1913155,-0.28634468,0.5164281,-0.14080827,-0.08888702,0.43426722,-0.2233232,-0.13099222,-1.047841,-0.009687388,-0.49900776,-0.26461238,0.15190527,-0.13551274,-0.39933792,0.16408095,0.25758865,0.39429468,-0.31365862,0.16100991,-0.004793915,-0.49693942,0.37218717,0.49516597,0.7522417,-0.19797671,0.6211756,0.04121096,-0.097880356,0.043967664,0.2138381,0.4284779,0.045007244,0.31630906,0.005944514,-0.1351035,0.15530261,1.0516593,0.08635993,0.32920602,0.16767745,0.035511754,0.31751615,0.022227686,0.21471003,0.08905734,-0.64632004,-0.020924812,-0.47518897,-0.16784772,0.6013593,0.10328255,0.24989256,-0.18493435,-0.38570413,0.050519414,0.17432228,0.33994368,-1.2970355,0.1412745,-0.025822747,0.8385502,0.4065966,0.08804081,-0.08411376,0.70117056,-0.0012393385,0.046550017,0.3975908,0.15465227,-0.4099776,0.61159396,-0.4866775,0.3734241,-0.10734844,-0.101726815,0.1953207,-0.00042507052,0.26896483,0.9934044,-0.19033861,-0.026446585,-0.087382376,-0.18878397,0.0057257116,-0.52010345,0.28684667,-0.327398,-0.25563866,0.68931913,0.49069214,0.2067819,-0.23055844,0.012649464,0.049314328,-0.16284823,0.09056629,0.037202287,-0.06991321,-0.20796041,-0.4551403,-0.040389214,0.63796353,0.18076678,0.14419279,-0.08528191,-0.1729547,0.18760894,-0.0786308,-0.099559106,-0.0028774827,-0.9773563,-0.22188373,-0.29802483,-0.53688115,0.48735732,-0.0036245107,0.17589776,0.052763246,0.097014286,-0.20095627,0.39197916,0.34852615,0.73417455,0.19769317,-0.07258014,-0.313986,0.18005054,0.17680554,-0.39253503,0.23302475,-0.20482874,0.04624571,-0.63690543,0.38915128,-0.0059201093,-0.3629958,0.15481904,-0.13907735,0.07105915,0.35922846,0.1356546,-0.10121691,-0.03197859,-0.29709917,-0.16480115,-0.21269818,-0.20745406,0.330442,0.13408032,-0.08807012,-0.04264437,-0.24431887,-0.32060128,0.13720357,-0.04058131,0.31720835,0.11334063,0.09585172,-0.37097055,0.050801743,0.0130444765,0.63985556,-0.21713479,-0.1815871,-0.009669209,-0.35633266,-0.546765,-0.238767,-0.001978776,0.15143834,0.052657295,-0.22417362,0.7469678,0.27825448,1.2065022,0.040769182,-0.4003039,0.018171053,0.5862851,-0.042138208,-0.20059994,-0.33114576,1.3751246,0.5440408,-0.076315776,-0.17091282,-0.47019997,0.13286704,0.1858866,-0.32994598,-0.37530106,-0.03220723,-0.6143138,-0.16802818,0.2608425,0.29139012,0.006965846,0.008410722,-0.03314369,0.49243003,0.034534637,0.55113286,-0.7226881,-0.35475895,0.1272692,0.42664528,0.15910065,0.13545969,-0.5612249,0.33266732,-0.69901836,0.32173878,-0.4026173,0.20976333,-0.79293877,-0.33975214,0.18628183,0.08975866,0.58531463,-0.3817141,-0.48911533,-0.2983423,0.40430307,0.0025546073,-0.04346848,0.5241524,-0.21542855,-0.12652054,-0.110065006,0.7180921,1.2052265,-0.45757517,0.018826222,0.5392439,-0.5860323,-0.5384531,0.16289198,-0.6134503,0.12980232,-0.053155296,-0.22668341,-0.58257115,0.15280645,0.042677958,0.06056998,0.0015298903,-0.52574855,-0.21308343,0.18998954,-0.2829522,-0.16021805,-0.21634829,0.31974703,0.59105897,-0.1844531,-0.48092642,0.18310325,0.3163473,-0.13062751,-0.86205167,-0.17662486,-0.058272887,0.38883534,-0.1512389,-0.31537387,-0.37237817,-0.30757275,-0.41601676,0.03633866,0.12799594,-0.22839043,0.1798763,-0.41375393,0.0882345,0.73127764,-0.1969159,0.30644053,-0.8591088,-0.41124612,-0.84420645,-0.5299481,0.46394855,0.504639,-0.15659423,-0.68508255,-0.14591393,-0.22020388,-0.017252589,-0.21973062,-0.2234621,0.2808708,0.13171616,0.58017814,-0.27878577,-1.3175911,0.18679103,0.13318332,-0.17822984,-0.62855273,0.5119201,0.09483922,0.8728628,0.22792229,-0.12469725,0.17267075,-0.58127606,0.093740344,-0.25895658,-0.09695512,-0.6091549,0.34885955 +151,0.55100656,-0.22705153,-0.49212992,-0.1477224,-0.19321512,0.079308145,-0.27303642,0.24247234,0.20412411,-0.160392,0.0024179618,-0.17891306,-0.0315582,0.53771174,-0.030601645,-0.85570467,0.15934348,0.14702313,-0.7499373,0.7315104,-0.4244328,0.33089557,0.05496166,0.37705192,0.16379616,0.36279538,0.17314465,0.058290347,-0.11818876,0.047307666,-0.020714613,0.106173865,-0.39006796,0.030247223,-0.0005595525,-0.12810431,-0.1006727,-0.29358393,-0.68752223,-0.85588896,0.47175348,-0.76368546,0.45569128,0.0007174636,-0.36342824,0.19495812,0.092064336,0.30507547,-0.18753073,-0.034857433,0.16262923,-0.01079269,-0.05486893,-0.14643298,-0.30999887,-0.51476157,-0.57547224,0.069432534,-0.6520761,-0.2327923,-0.13205156,0.22049919,-0.2987663,0.016639471,0.013025403,0.5484933,-0.39768252,-0.20963581,0.22454509,-0.1966568,0.30859116,-0.50761396,0.058729645,-0.08367278,0.1192308,0.029911447,-0.10320864,0.27098504,0.31643423,0.43788862,-0.15196605,-0.17743771,-0.3070202,0.014072467,0.19519353,0.4827425,0.094510056,-0.45856148,-0.20062555,-0.086322665,-0.016511837,-0.0359394,0.16622598,-0.5340297,-0.007251954,-0.042354807,-0.15459234,0.473424,0.5653573,-0.39953393,-0.2608056,0.3747099,0.64911556,0.3155467,-0.21321113,0.09411669,0.046344817,-0.4502503,-0.042263523,0.102064386,-0.1437022,0.61946803,-0.199374,0.20231004,0.76535404,-0.04472929,0.0402325,-0.008932455,0.0070483955,-0.03220986,-0.090254545,-0.07404186,0.14626983,-0.4135626,-0.029255828,-0.15021181,0.56639427,0.23909172,-0.6989295,0.58598834,-0.567975,0.23505396,-0.17608695,0.564473,0.81884885,0.20512274,0.18036318,0.75499815,-0.3978485,0.15670122,0.028335758,-0.482299,0.224892,-0.281163,0.0060604215,-0.47373182,-0.07289458,-0.06548648,-0.31412986,-0.15400775,0.591622,-0.38879946,-0.10883905,-0.06141903,0.9118198,-0.271159,-0.06530313,0.5374887,0.9720079,0.9817702,-0.035942897,1.3295046,0.45516816,-0.19876881,0.16651706,-0.33758053,-0.86110646,0.3672309,0.34659827,0.3026862,0.40642223,-0.008622916,-0.18084624,0.5080811,-0.26135072,0.22586158,-0.24761412,0.1707633,0.07319765,-0.053568427,-0.39324456,-0.33041292,-0.057395935,0.1725505,0.22433624,0.25390774,-0.26003626,0.2682336,-0.07081056,1.7019871,-0.17624685,0.012782981,0.057932027,0.6273155,0.27601707,-0.18872544,-0.2755335,0.21460375,0.367274,0.17552723,-0.66351306,0.17201878,-0.2846094,-0.39250857,-0.30684438,-0.31627935,0.08960407,-0.08928711,-0.4973459,-0.22239247,0.048556082,-0.34747988,0.40098742,-2.4742343,-0.3095681,-0.0989411,0.3017491,-0.27637625,-0.13092057,-0.17459151,-0.389067,0.13492832,0.3876953,0.38367864,-0.7343002,0.41258472,0.58621544,-0.55668044,-0.0658417,-0.4521185,-0.121223286,-0.096246295,0.51337093,0.0758152,0.009859594,0.15397763,0.34299198,0.45957837,-0.014571837,0.07050008,0.27825457,0.40098366,0.07999453,0.29075828,0.046069782,0.32822853,-0.19117314,-0.15191078,0.55227077,-0.34246713,0.20306127,-0.20633163,0.18794355,0.37133116,-0.4313869,-1.0249221,-0.5809325,-0.13887706,1.0555241,-0.21632099,-0.48542833,0.23308973,-0.13252337,-0.120344095,0.16238953,0.53309083,-0.19012499,-0.008839977,-0.7282817,0.06579992,0.019462772,0.1233037,0.102070965,-0.021444304,-0.17491895,0.64849275,0.08120653,0.31778863,0.13974948,0.21451767,-0.17235288,-0.64744055,0.1650941,0.7994879,0.31798407,0.091729775,-0.24437854,-0.21066588,-0.21971768,-0.1584231,-0.108448856,0.53864926,0.8138535,0.022892412,0.14392617,0.2331158,-0.11025576,0.124936245,-0.073466055,-0.40326884,0.0383017,-0.011640931,0.61738217,0.75319725,-0.26794785,0.4908186,-0.11387836,0.26248387,-0.098911025,-0.5468918,0.7493015,1.1883887,-0.21286014,-0.23653191,0.4507949,0.2825919,-0.5960668,0.52787143,-0.7474544,-0.2883226,0.42020124,-0.22985475,-0.517782,0.33722064,-0.35969752,0.15482952,-0.79317486,0.46579126,-0.1294141,-0.27936605,-0.46366805,-0.19491506,-3.2211888,0.24689016,-0.27057594,-0.18454628,-0.13350445,0.00905015,0.34543663,-0.46174774,-0.5670496,-0.02902848,0.07396944,0.63279474,0.007049207,0.16958469,-0.24352273,-0.17130953,-0.37437266,0.13919987,0.06992638,0.49897975,-0.013062851,-0.4832941,-0.0039903116,-0.25053602,-0.40313718,0.03559917,-0.63899803,-0.47977498,-0.31968433,-0.5564832,-0.15598981,0.71325433,-0.06451914,0.031109689,-0.39291137,-0.06512204,-0.05313841,0.45400673,0.22084184,0.10722183,0.0045983354,-0.08724463,-0.11296857,-0.2255467,0.16420141,0.04129552,0.16253096,0.3758547,0.04354441,0.16401775,0.6055495,0.596975,-0.21041396,0.7084437,0.53929687,-0.098899916,0.28248695,-0.17595838,-0.255225,-0.40139922,-0.2989135,-0.0932401,-0.2715595,-0.5231829,-0.123707786,-0.29881003,-0.7568216,0.3792054,-0.03737875,0.2583901,0.11527575,-0.0032987655,0.4787866,-0.2130739,-0.008525149,-0.062402714,-0.22856998,-0.6235507,-0.19194907,-0.6310873,-0.6393274,0.29715374,0.95151967,-0.17352304,-0.28770223,-0.015816577,-0.3067626,-0.04383662,-0.09866876,0.050747856,0.19376816,0.14729333,-0.18483454,-0.7942322,0.5236817,-0.2424437,-0.06646612,-0.5323951,0.15746798,0.6330003,-0.64604867,0.5100505,0.26061466,0.19437939,-0.10025769,-0.49609426,-0.21132012,0.16849011,-0.15569307,0.42529434,0.055089645,-0.74594104,0.309368,0.2540561,-0.44720656,-0.65187246,0.52779233,0.02063423,-0.27866706,-0.112422675,0.44192138,-0.10239868,0.074898705,-0.44468486,0.32211637,-0.417652,-0.010743241,0.3378892,-0.0071200053,0.363125,-0.16548207,-0.26798993,-0.49500954,0.010758098,-0.42296678,-0.2320092,0.111137845,0.04601912,0.25163084,0.091307625,0.09414986,0.42708287,-0.1487643,0.087034464,0.035829213,-0.1774559,0.41939571,0.4179941,0.5267093,-0.41735718,0.59320885,-0.051828876,-0.12995996,0.101412326,0.025671769,0.36733907,0.25346938,0.41075793,0.24096963,-0.05986096,0.22096328,0.9794271,0.16125225,0.5211369,0.13655749,-0.43515724,0.21866134,0.175995,0.16979028,-0.19068678,-0.41005886,-0.07962906,-0.05982248,0.28031677,0.6008009,0.029397,0.36362,-0.24281482,-0.3222886,0.10366602,0.063473515,-0.06559405,-1.2062172,0.19787188,0.28719234,0.70048434,0.4386708,-0.06621412,0.015040438,0.6751985,-0.0826616,0.07423862,0.31027895,-0.16853327,-0.7966788,0.5035751,-0.6697196,0.38861594,-0.044844206,0.02607383,-0.02717793,0.13927275,0.33713347,0.593448,-0.026864938,0.019521141,-0.19033273,-0.3640673,0.061989706,-0.46319345,0.22574605,-0.50058275,-0.42705148,0.5843002,0.55614495,0.113448456,-0.1318451,-0.03204565,0.040847234,-0.07215559,0.31436622,-0.017799944,0.075937614,-0.12496285,-0.79858124,-0.3467371,0.5305789,0.02581857,-0.076387696,-0.05875387,-0.007912087,0.16641632,-0.23903988,-0.076435395,-0.018625975,-0.7314527,0.029639851,-0.1674725,-0.45590726,0.49771032,-0.12666668,0.21309748,0.19146426,0.06024669,-0.5629848,0.38520476,-0.073145986,0.7971219,-0.028043684,-0.07075058,-0.50556463,0.0071609337,0.17119905,-0.39247304,-0.14402583,-0.25872308,0.006475099,-0.56796455,0.59772784,-0.14677478,-0.48574024,0.15724261,-0.22261065,0.07418128,0.61705476,-0.31326896,-0.35492033,-0.08484575,-0.1611925,-0.37111333,-0.06700887,-0.03773021,0.29161218,0.19769892,-0.3515555,-0.12812498,-0.07094034,-0.02391543,0.43353325,-0.13141026,0.3676654,0.5905406,0.14690547,-0.3513724,-0.19278374,0.5024734,0.49582896,0.1937259,-0.009892309,-0.28613046,-0.38415134,-0.44130498,0.15568523,-0.1332549,0.2721973,0.23475364,-0.34270394,0.64247674,0.2777995,1.2291275,0.011186842,-0.31842795,0.35197824,0.43976688,0.11942907,-0.041135523,-0.4567223,0.802601,0.6086053,-0.22287346,-0.15323703,-0.4233921,-0.23955236,0.20004794,-0.297635,-0.03537531,-0.038776927,-0.7894246,-0.17964321,0.15612598,0.29044792,0.08243105,-0.077400714,0.13968608,0.066287465,0.026871169,0.32231167,-0.5119941,-0.18351027,0.3914285,0.15883487,-0.011825514,0.13195774,-0.41912922,0.3536296,-0.5659533,0.002779738,-0.26934248,0.25543863,-0.0475527,-0.4149125,0.2909377,0.18751912,0.48769256,-0.26957908,-0.35790315,-0.31369388,0.55041534,0.22720425,0.20903961,0.61205864,-0.3171892,0.075351976,0.1052182,0.58446693,1.0418471,-0.13138264,0.03425862,0.26360837,-0.34176233,-0.8726782,0.25529775,-0.30775642,0.3045922,-0.044861507,-0.31608185,-0.7431419,0.36373743,0.1355641,-0.08105931,-0.02032166,-0.5123511,-0.24868679,0.2585056,-0.13042577,-0.23957041,-0.47529367,0.108764805,0.57387507,-0.29177096,-0.29016125,0.06339469,0.22310549,-0.26689595,-0.5530693,-0.01389403,-0.42091042,0.28142014,0.17663503,-0.22289394,0.05716338,0.016861295,-0.5422647,0.3460649,0.19659314,-0.40190223,0.13528611,-0.24459015,-0.04928607,0.95200294,-0.17118575,-0.113567896,-0.78796744,-0.6284422,-0.9957064,-0.42180386,0.36411422,0.18527722,-0.016916681,-0.6973957,-0.012749986,-0.07478532,0.15738669,0.12993887,-0.49014917,0.39128512,0.03077008,0.3769976,-0.053126194,-0.8522158,-0.045763645,0.14341977,-0.34743282,-0.63613504,0.50142753,-0.10165976,0.82034457,0.16125135,0.10161686,0.26872304,-0.49348545,0.11277949,-0.31287184,-0.26826885,-0.62780696,0.17522274 +152,0.41067237,-0.17886254,-0.3188945,-0.046172556,-0.032509446,0.12294941,-0.04386028,0.5774397,0.38347968,-0.25299132,-0.03413601,-0.24793436,-0.0024882196,0.38808826,-0.16463143,-0.4568833,0.0028680107,-0.04916699,-0.31550473,0.411376,-0.42728034,0.23944798,-0.053829655,0.43778896,0.052114848,0.2858745,0.14391963,-0.0010587231,0.0036806504,-0.35928595,0.09222821,0.27329567,-0.43008342,0.36207977,-0.1011739,-0.27348298,0.13500817,-0.37584975,-0.4150187,-0.57853967,0.25626594,-0.7658723,0.37961102,0.105938554,-0.32943615,0.31096143,-0.0019842465,0.056518696,-0.21831466,-0.22657725,-0.011476469,-0.118976675,0.047084384,-0.36829883,0.0050747474,-0.31302553,-0.48464802,0.062497415,-0.38077182,-0.17579392,-0.20435092,0.06746397,-0.39074454,0.07601218,0.027708411,0.3553394,-0.41843817,0.067389876,0.17650741,-0.49823362,0.28381646,-0.46331966,-0.4013252,0.01342049,0.036636688,0.05566744,-0.21264845,0.35702375,0.22228377,0.4333955,-0.07342632,0.019662453,-0.258087,-0.22593804,-0.0283375,0.47111472,-0.17342654,-0.66480005,-0.101504765,-0.009676202,0.18004502,0.29825416,0.22169788,-0.1880708,-0.10336747,-0.059746277,-0.30967504,0.36963832,0.56387204,-0.47065294,-0.17643666,0.1763489,0.32832634,0.08827739,-0.10969068,0.01815974,0.040943112,-0.3999837,-0.13913298,-0.22354627,-0.1497119,0.61562574,-0.0352061,0.29779294,0.64320046,-0.24430612,-0.037374742,0.14337203,0.011792167,-0.16596857,-0.35449716,-0.13635658,0.23342183,-0.38495007,-0.02785557,-0.17931157,0.7407624,0.2453845,-0.5847019,0.45736006,-0.4067159,0.122042194,-0.07627289,0.42616892,0.5238091,0.46244192,0.4101139,0.7181238,-0.47135392,0.027670475,-0.1510014,-0.3131584,0.12739505,-0.21209757,0.032769695,-0.4082213,0.1418678,0.29253393,-0.12024472,0.19696029,0.26350683,-0.58802795,-0.06835189,0.24842885,0.7965883,-0.1581867,0.08365964,0.6965221,1.1978098,0.8748365,-0.088565424,1.1012236,0.106186114,-0.1411064,0.22934557,-0.040551994,-0.67086035,0.20078088,0.3947422,0.42821687,0.14372487,-0.025742983,-0.13242409,0.18794036,-0.35667306,-0.09172388,-0.03794967,0.53974617,0.2008016,-0.07628086,-0.46595606,-0.23626566,-0.033869956,-0.08387682,-0.055123903,0.3714153,-0.102359295,0.5020746,0.10762286,1.3789304,-0.06327768,0.21564822,0.15571906,0.6276465,0.25585574,-0.060612246,0.09995272,0.3770095,0.04109591,0.13957094,-0.4564274,0.13036017,-0.22112712,-0.545482,-0.040206466,-0.45282358,-0.14904574,0.006393955,-0.199106,-0.24461628,-0.19508205,-0.1739942,0.44610104,-3.1155128,-0.2655653,-0.16249469,0.40698892,-0.26431292,-0.13370724,0.05410393,-0.50959694,0.35594878,0.41857135,0.55137765,-0.7457907,0.01163743,0.49433124,-0.47388506,-0.24485523,-0.39652967,0.12135842,-0.0413156,0.46713373,0.08977779,-0.1344031,-0.12607957,0.08485783,0.46431604,0.1360367,0.18063752,0.13383797,0.24154581,-0.17361793,0.2785274,-0.2100078,0.39773268,-0.3338752,-0.12624942,0.29502916,-0.3060034,0.21842977,-0.17990062,0.12484125,0.361544,-0.35516366,-0.6815914,-0.49222583,-0.06744002,1.2149552,-0.12304654,-0.5748142,0.26275268,-0.2261334,-0.1996641,-0.2103974,0.30519256,-0.06013077,0.07084738,-0.5914665,0.13663785,-0.1485029,0.07834126,-0.01920319,-0.025245782,-0.3006319,0.6125693,-0.022010842,0.464137,0.34661147,-0.012713635,-0.33310005,-0.3217734,0.030567426,0.6533385,0.47926292,0.15103605,-0.04812336,-0.1610282,-0.20687939,-0.22506033,0.18957381,0.57495123,0.6466163,-0.099455446,0.105844006,0.24692592,-0.10408702,0.049082983,-0.056999862,-0.21087027,-0.041482512,0.018944569,0.70382893,0.8674537,-0.2710406,0.16923091,0.008684142,0.48855093,0.0012679974,-0.47149557,0.43250763,0.473378,-0.14617436,-0.24600936,0.62776524,0.4068778,-0.3987812,0.42775622,-0.52089095,-0.33802548,0.49355295,-0.18391755,-0.52120185,0.22093238,-0.22241668,0.20081304,-0.7190226,0.33684558,-0.31715345,-0.48654938,-0.35748306,-0.20611914,-3.3320098,0.028940747,-0.20210543,-0.15983772,-0.072680034,-0.013718891,0.09621651,-0.49813303,-0.50223905,0.1018354,0.12395593,0.48872626,-0.16361882,0.051624462,-0.30071354,-0.39368913,-0.30773756,0.088043176,-0.023511386,0.28483087,-0.049023114,-0.36805305,0.03520955,-0.0061376533,-0.39343566,0.18910703,-0.44951168,-0.59017843,-0.11718931,-0.35667884,-0.33065218,0.6282488,-0.15941662,-0.0018877983,-0.13539556,-0.042796418,-0.21563488,0.06516287,0.078709796,-0.026150966,0.018362029,0.022620555,0.097448856,-0.40336162,0.4215867,-0.02195955,0.39525408,0.39131784,-0.14122997,0.052055463,0.4804314,0.49160594,-0.0031590532,0.73254263,0.16660684,0.084625706,0.3680823,-0.23563963,-0.4284263,-0.3422111,-0.24902011,0.22006108,-0.37910375,-0.3565561,-0.0010847857,-0.35118935,-0.5421429,0.5246461,0.12568793,0.12735699,-0.0038780808,0.23138343,0.5747129,-0.11727073,-0.0441604,0.13153218,-0.10148797,-0.68029696,-0.2121482,-0.7980472,-0.46027228,0.4309859,0.8358734,-0.19399433,-0.13800973,0.10004519,-0.07822736,0.036932398,0.048958674,0.120141014,0.04554492,0.36932132,-0.09953095,-0.5771802,0.51878285,-0.11925688,-0.22373953,-0.548313,0.16545817,0.48060104,-0.7496256,0.4692394,0.25095508,0.18960755,-0.11842652,-0.4308232,-0.08889993,-0.109263934,-0.27740988,0.40123627,0.16070881,-0.8873422,0.43848476,0.36421412,-0.31188545,-0.65282136,0.39238003,-0.20168778,-0.19631371,-0.026346529,0.26954907,0.30498612,0.03551867,0.14962249,0.24672247,-0.5907906,0.20400721,0.2146136,-0.10387961,0.5801956,-0.05128059,-0.15693556,-0.68755907,-0.05019939,-0.49136537,-0.32924354,0.1973559,0.07274263,-0.11424454,0.14187342,0.1382346,0.46801618,-0.21842076,0.13185184,0.0026891152,-0.26579568,0.54873264,0.42156765,0.52425486,-0.27139613,0.6189379,-0.03201167,0.07269263,-0.005026833,-0.07277708,0.3985858,0.1559216,0.34790364,0.03355282,-0.27085337,0.22020476,0.79415095,0.075917915,0.29951128,0.06000614,-0.03291179,0.32278016,0.051411256,0.15506922,0.08034262,-0.5783676,-0.023156412,-0.2448905,0.07656379,0.46721077,0.26182434,0.26610646,-0.07154382,-0.41552156,-0.017657785,0.14494847,-0.082291834,-1.0298916,0.088423915,0.04393307,0.7072716,0.45306414,0.115423836,-0.07225417,0.70616794,-0.01040672,0.041067846,0.315204,0.107904986,-0.50007635,0.6262495,-0.75052875,0.63280475,-0.06954401,-0.10388566,0.049563352,0.046527732,0.42238057,0.69683194,-0.13110264,-0.047547985,0.04345011,-0.33125564,0.13508344,-0.5047247,-0.019703101,-0.46841115,-0.19866307,0.46482214,0.48935363,0.17543726,-0.20221461,-0.008599339,0.018198473,0.0197352,0.2865847,-0.10634089,0.071254686,-0.2586183,-0.51779884,-0.29194096,0.49053052,0.26115522,0.20797418,-0.07860483,-0.16079253,0.22508135,-0.11993896,-0.15451083,-0.06799965,-0.48640403,0.06165654,-0.22599673,-0.44265178,0.5395181,0.03168638,0.22798915,0.18355256,0.09071175,-0.18475491,0.08693772,0.03180053,0.73222566,-0.1401441,-0.21154103,-0.4714604,0.073804684,0.011718217,-0.17439789,-0.110049374,-0.2726994,-0.06971703,-0.45686817,0.45061275,-0.011732008,-0.12541169,0.04177862,-0.05899338,0.05230405,0.5058904,-0.047209572,-0.23458308,-0.1817587,-0.15826628,-0.31537172,-0.20993409,-0.07622293,0.20756501,0.2886586,-0.06480183,0.014233226,-0.2373591,0.07874129,0.2342818,0.06387322,0.18758075,0.29415295,0.024258045,-0.309018,-0.030342845,0.08167783,0.41381603,0.019190112,-0.0128291845,-0.24087477,-0.65748876,-0.30221102,0.13724534,-0.13038096,0.36897695,0.096437104,-0.3144469,0.58162624,-0.10397238,0.9665194,0.03984152,-0.21668261,0.07586238,0.5178093,-0.06873325,-0.054094456,-0.3438759,0.9366796,0.48263925,-0.18746836,-0.2121918,-0.3146403,0.0900856,0.1324372,-0.22194226,-0.13863066,-0.056895692,-0.65538484,-0.21836211,0.095916085,0.25589517,0.17850477,-0.0695594,-0.012040794,0.18137386,0.14740483,0.37337902,-0.3529548,-0.2608366,0.416819,0.3282472,0.030865382,0.005643487,-0.3646048,0.38370958,-0.43835393,0.14646187,-0.34950295,-0.016848018,-0.15653174,-0.3567502,0.16609646,-0.13086902,0.27469787,-0.38661188,-0.49087316,-0.17338923,0.27679184,0.17469257,0.10464708,0.48931867,-0.16269395,-0.2203314,0.05142991,0.51611155,1.1877595,-0.11744893,-0.067868225,0.29069182,-0.40022972,-0.685636,0.32264838,-0.2952133,0.21959244,-0.042243503,-0.051548775,-0.63286823,0.30133566,0.2962907,-0.10531706,0.037031632,-0.5958061,-0.21592937,0.16641425,-0.5963118,-0.22275673,-0.48274964,-0.044366125,0.6238552,-0.23020649,-0.10589568,0.06422316,0.29511088,-0.31063265,-0.6777693,0.017665796,-0.29783052,0.22982316,0.027314646,-0.32758158,-0.0816882,0.19736147,-0.39290014,0.12839912,0.037328433,-0.32750612,0.08743744,-0.4776438,0.0011860708,0.8106012,-0.20640984,0.26521316,-0.48373005,-0.47981834,-0.7893342,-0.30759874,0.48903617,-0.0166347,0.084369816,-0.46885017,-0.15908651,-0.07402539,-0.0671569,-0.16130671,-0.23774482,0.4135055,-0.000997906,0.4366488,-0.071004026,-0.67748445,0.1907052,0.13219751,-0.03284751,-0.57356465,0.47883078,-0.17054535,0.6413019,0.14047623,-0.07527199,0.36025587,-0.5372623,0.06709214,-0.1976419,-0.26685554,-0.4150363,0.21737428 +153,0.28451508,0.14148071,-0.68616754,-0.24763343,-0.21935385,0.15626904,-0.20026207,0.37084794,0.26368877,-0.4445745,0.103018716,-0.063232444,0.001726443,0.39452562,-0.20542923,-0.56103086,0.23804505,0.113328665,-0.6819397,0.427674,-0.34917986,0.24229154,-0.07725991,0.37278074,0.21742523,0.2514214,0.06973131,-0.056968898,-0.07454921,-0.037245035,-0.12467993,0.3268997,-0.27387637,0.07307491,-0.19951853,-0.28538528,-0.046923988,-0.24694069,-0.34236795,-0.621109,0.17775607,-0.5435227,0.54901046,-0.06442274,-0.21528575,0.23816991,0.21266815,0.18932487,-0.068532854,-0.13632613,0.12077531,-0.20273098,-0.15719838,-0.082419686,-0.54469097,-0.51926225,-0.647859,0.05762159,-0.7474973,-0.006887719,-0.29078102,0.116413936,-0.27919972,-0.11059021,-0.0022267643,0.406411,-0.29385978,0.038886327,0.0220761,-0.100016035,0.17373055,-0.6082951,-0.23563865,0.042018585,0.3315956,-0.20441896,-0.32717815,0.3539287,0.33982122,0.3895126,-0.115223795,-0.16790283,-0.43513793,-0.041475542,0.020209726,0.5454947,-0.27297214,-0.36060488,-0.021319177,0.094302975,0.2863403,0.28139353,0.077566236,-0.29258448,-0.09020059,0.018406615,-0.19378187,0.58629245,0.53560424,-0.30381596,-0.12051849,0.45379525,0.49673483,0.17955042,-0.29457107,0.18745506,-0.13107397,-0.5798417,-0.15862632,-0.016593307,-0.06843139,0.44077468,-0.10255062,0.2566249,0.58788675,-0.026454676,-0.14430541,0.14538318,0.072090425,-0.05921992,-0.0965913,-0.08469579,0.092477314,-0.5142145,0.15402989,-0.19835606,0.5754788,0.099403314,-0.99562985,0.31114733,-0.4931901,0.079078935,0.04548613,0.41781437,0.8515892,0.36766738,0.074250184,0.6747798,-0.3469067,0.0866714,0.06672439,-0.3583971,0.027738903,-0.07086515,-0.036935396,-0.67719764,-0.06344851,0.0059573054,-0.116967484,0.3339536,0.40041423,-0.45009497,-0.2122339,0.22766823,0.74371374,-0.30936387,-0.23254596,0.684499,1.0385286,0.9266406,0.060443632,0.9697716,0.108816035,-0.17245035,0.22323585,-0.25555223,-0.6700307,0.27325848,0.29426497,-0.33818433,0.3439706,-0.004419038,0.11190996,0.29412213,-0.3563064,-0.07582927,-0.06719121,0.19198248,0.065118454,-0.07138983,-0.20552336,-0.3678003,0.07115378,-0.014193647,0.1345507,0.22888157,-0.22439548,0.38569212,0.1541512,1.4521768,0.06117428,0.008795824,0.023905376,0.45854574,0.27139166,-0.20501451,-0.2586199,0.37238765,0.4099533,0.0084453765,-0.38504055,0.012482436,-0.3227836,-0.32206166,-0.14819047,-0.3808752,-0.22625652,-0.046942886,-0.415978,-0.11821389,-0.10075112,-0.5812452,0.53123766,-2.9320707,-0.14334187,-0.10782224,0.28381193,-0.078316145,-0.33649665,-0.27667207,-0.47208232,0.36453462,0.26281708,0.32944334,-0.4708796,0.36709845,0.4864021,-0.4770673,-0.13993944,-0.6934669,-0.07510716,-0.03832973,0.22778477,0.0040579997,-0.031808328,0.16876172,0.35045803,0.37448242,-0.17307442,0.04065315,0.3242529,0.25684798,0.03765608,0.39069915,-0.13246366,0.62863696,-0.24994808,-0.13211343,0.2363148,-0.4896808,0.11752325,0.0073470958,0.15206964,0.5366386,-0.3520586,-0.89284396,-0.430533,-0.048665375,1.1425154,-0.26794764,-0.16097052,0.4246779,-0.348177,-0.42000598,-0.052633017,0.46760195,-0.070984036,-0.06978494,-0.6719965,-0.08173303,-0.062785484,0.08103433,-0.19333777,0.042713307,-0.3290498,0.5675962,-0.05444309,0.56352055,0.22126488,0.2882756,-0.37430194,-0.39093104,0.040769935,0.7543702,0.26892495,0.075770974,-0.123603195,-0.19586805,-0.46646363,-0.08450793,0.26092184,0.54025203,0.53700805,-0.07412167,0.08937588,0.25818315,0.039500546,0.04101277,-0.22921108,-0.24231553,-0.06300019,0.020886011,0.5053187,0.49468684,-0.058614366,0.49810117,0.043393902,0.13455904,-0.29514444,-0.44367412,0.4820813,0.8072116,-0.21869466,-0.40606853,0.5268884,0.29720277,-0.16591232,0.3665615,-0.57175905,-0.28024885,0.59343296,-0.17339852,-0.2728893,0.1692618,-0.2194145,0.14106356,-0.74337804,0.18557535,-0.10880586,-0.604478,-0.37350217,-0.14040461,-2.941369,0.01398761,-0.13928723,-0.27015954,-0.12557857,-0.09448802,0.21655062,-0.5396952,-0.48116243,0.1339909,0.11278914,0.6666142,-0.10125382,-0.05089663,-0.11360434,-0.43035606,-0.4260069,0.16087756,0.0064051077,0.39759693,0.0035050362,-0.22225064,-0.01747547,-0.22173044,-0.4222333,0.06691968,-0.38967586,-0.26776955,-0.14197588,-0.5211274,-0.3074892,0.72555315,-0.4664595,-0.00428929,-0.30964017,-0.032565974,0.032423317,0.20830132,0.16216393,0.07763076,0.11911207,-0.026409376,0.016527316,-0.39092067,0.1940454,-0.08600842,0.244369,0.37983736,0.12291124,0.30592382,0.580546,0.7292687,-0.18814436,0.9117582,0.4370553,0.03158754,0.30283743,-0.26680633,-0.28702366,-0.42880368,-0.28291178,0.006968174,-0.3907592,-0.31031302,-0.13663606,-0.37062258,-0.6513629,0.39796156,0.050264686,0.17983608,-0.07618575,0.28405812,0.396703,-0.23917377,-0.028571924,-0.09291153,-0.20993945,-0.3627596,-0.3115403,-0.6717735,-0.411515,0.1422123,0.9974536,-0.2533902,-0.0813809,0.06844891,-0.2938157,0.25902227,0.20092621,0.18046159,0.36837107,0.23866606,-0.22702855,-0.61415446,0.379622,-0.4089852,-0.17427091,-0.6638785,0.05781199,0.5943589,-0.46486768,0.54407954,0.2882144,0.11240977,-0.19958714,-0.5754652,-0.0015194863,-0.0056707487,-0.23203626,0.3909374,0.13194251,-0.91931254,0.45569372,0.22780974,-0.21052313,-0.5814239,0.5401882,-0.0019185133,-0.07996741,-0.06363563,0.38460052,0.05380176,-0.036578577,-0.1658337,0.037878476,-0.28278396,0.27227616,0.3141415,0.049179703,0.3712488,-0.29594147,-0.03577099,-0.64207816,-0.09135981,-0.5204614,-0.23086143,0.2247726,0.0992756,0.308609,0.039245926,-0.21339133,0.2730006,-0.3301425,0.1777674,-0.10104832,-0.2497398,0.260954,0.41369018,0.43460888,-0.32558453,0.6033442,-0.019991,-0.12410866,0.016553216,0.046084516,0.52691764,0.022898361,0.3482845,0.100786805,-0.27581382,0.21814984,0.7785113,0.2284382,0.22823939,0.0007906109,-0.22876415,-0.015260644,0.03227854,0.098098755,-0.0008277893,-0.5267933,-0.13087541,-0.24555135,0.20705399,0.5020794,-0.032572612,0.25156087,-0.04297192,-0.21737619,0.04971762,0.11253591,-0.081366,-1.5021564,0.3529334,0.3047544,0.7995237,0.3095712,0.18445109,-0.11085953,0.5938836,-0.14778769,0.23388773,0.26878625,-0.105601035,-0.32594866,0.46158233,-0.73311216,0.5988461,0.09525858,-0.01760543,0.09778633,-0.022521786,0.3665825,0.9515904,-0.22438566,0.10447484,0.08966109,-0.29834136,0.25768742,-0.3267456,0.038141146,-0.5301262,-0.31766066,0.5524747,0.37027752,0.42346328,-0.18745798,-0.031015657,0.04871428,-0.1301634,-0.025448823,-0.05260484,0.13883582,-0.2632534,-0.48101604,-0.16937913,0.38691574,-0.04011508,0.17582467,0.35915983,-0.17859867,0.37352064,-0.01982136,0.20447038,-0.06387094,-0.5588846,-0.01766378,-0.10820429,-0.43641585,0.4684978,-0.31804293,0.3479083,0.3285015,0.033765726,-0.2586203,0.4436333,0.2422495,0.70933753,-0.14133358,-0.057359703,-0.2843313,0.16577105,0.16464724,-0.11700025,-0.09787329,-0.3687646,0.021786094,-0.53339255,0.2664287,-0.1284669,-0.33866292,-0.1017566,-0.00061382353,0.17950355,0.51437104,-0.0891403,-0.09838252,-0.06961776,0.04870464,-0.21038271,-0.14373003,-0.091007285,0.2971491,0.052795064,-0.11421236,-0.18088941,-0.0952181,-0.049244635,0.1206889,-0.03817991,0.42273793,0.39224777,0.22391413,-0.24716188,-0.0037879944,0.20200706,0.4381561,0.05980477,-0.09812748,-0.24862942,-0.14934695,-0.2859219,0.20939565,-0.14963384,0.22573213,0.11721309,-0.2542493,0.553687,-0.1698522,1.085482,0.048282724,-0.2760932,0.06451538,0.48121718,0.055279426,0.028634682,-0.24909155,0.78108704,0.44535995,-0.014217004,-0.20564225,-0.3378206,-0.039166585,0.20174213,-0.19427998,-0.18306586,0.040829837,-0.59680295,-0.2568531,0.14581922,0.038101934,0.31024992,-0.20507002,-0.11078064,0.2955554,0.048780352,0.27341092,-0.46181443,-0.06499219,0.24476324,0.16150945,-0.04363822,0.15390232,-0.4486246,0.29484016,-0.4182114,-0.02785704,-0.08170883,0.23114786,-0.17043796,-0.18598634,0.22317758,0.023908675,0.29024914,-0.08345252,-0.2432908,-0.17944485,0.44246402,0.13995646,0.16634008,0.58072066,-0.19172165,-0.029857058,0.071369015,0.36557695,0.9589029,-0.23254432,-0.043593094,0.40763664,-0.23676287,-0.59330744,0.16940916,-0.51699847,0.24852866,-0.02240134,-0.15881732,-0.15185423,0.18609644,0.14045815,0.1609332,0.039503608,-0.540884,-0.21458356,0.26557344,-0.23254287,-0.14920087,-0.35675904,-0.13873972,0.50556374,-0.31949297,-0.29021934,0.11554171,0.1897172,-0.0016815029,-0.6772715,0.24414676,-0.2844623,0.32398513,0.11850602,-0.36405998,-0.104204684,0.021490753,-0.3806534,0.29645866,0.10873066,-0.30460042,0.04223177,-0.19681731,-0.06760362,0.91405606,-0.2868312,0.24516878,-0.31902865,-0.54834104,-0.78139466,-0.3279513,0.07333541,0.10321967,-0.052957743,-0.62958634,-0.0026481636,-0.05773934,-0.14487462,0.028649405,-0.20830032,0.4306072,0.103291534,0.34830105,-0.080979764,-0.9497475,0.10099157,-0.026573451,-0.24052313,-0.54353756,0.5734148,0.03217005,0.7094698,0.18445109,0.18957527,0.19412583,-0.34336945,0.2025502,-0.25178364,0.017261498,-0.46258843,-0.008840218 +154,0.4024722,-0.030213118,-0.70323974,-0.12266977,-0.26227942,0.26789224,-0.17240554,0.11570826,0.37192202,-0.07881392,-0.046459436,-0.12522745,0.0024436484,0.39651674,-0.09724574,-1.0119042,0.079787135,0.16462995,-0.623018,0.47972125,-0.47968924,0.5543801,-0.028169185,0.34536716,0.11440873,0.35000977,0.018079208,-0.042637113,-0.24321002,0.1375566,-0.11643309,0.3733475,-0.44152725,0.029477509,0.07483994,-0.3069414,-0.084865525,-0.28421706,-0.2275214,-0.7069121,0.39514616,-0.67170936,0.67567784,-0.040846094,-0.20658122,-0.013028002,0.076905124,0.40467185,-0.24124986,0.1814515,0.10479735,-0.30768389,-0.16307156,-0.050665755,-0.45034873,-0.47909853,-0.59279704,0.051137768,-0.61068743,-0.15818636,-0.16553393,0.2793974,-0.39306176,-0.24200909,-0.0850314,0.36408103,-0.33007333,0.23427035,0.46063307,-0.2313242,0.12677325,-0.50165874,-0.16790439,-0.025374921,0.45592594,-0.21763992,-0.2822775,0.11317646,0.5589335,0.50459576,0.042897698,-0.24322602,-0.31223726,0.06407689,0.055296674,0.6184308,-0.08416036,-0.2961109,-0.2234602,0.10112017,0.21543209,0.24648325,0.04839247,-0.39229518,-0.06404739,0.046088345,-0.030361596,0.4776526,0.37656802,-0.37233183,-0.27069473,0.39655733,0.48048204,0.21462907,-0.21795405,0.3536261,0.039994005,-0.5776795,-0.1330044,0.23276186,0.115320645,0.5873574,-0.14094073,0.17511867,0.7599501,-0.18870418,-0.17956528,-0.055928025,0.011748182,-0.08153139,-0.2013358,0.1386266,0.16516179,-0.34580266,-0.0064508365,-0.15346923,0.5596885,0.16130352,-0.76356757,0.36110088,-0.6055402,0.20411006,-0.17086817,0.63172793,0.9554822,0.26193693,0.32165942,0.90348345,-0.47993928,0.056207962,0.18243586,-0.59250295,0.07597765,-0.10283303,0.044532213,-0.6009816,-0.051015396,0.03601047,-0.05736017,0.2515258,0.35288483,-0.5015826,-0.13996808,-0.06237507,0.64245486,-0.38271654,-0.35777956,0.77952987,0.8301453,0.75440127,-0.0149058215,1.3169545,0.43494388,-0.19993195,0.15818864,-0.5311168,-0.5095819,0.1910603,0.18718252,-0.81075513,0.5407866,0.05591447,0.043526486,0.4669531,-0.059077345,0.0012100202,0.0746486,-0.0069414238,0.11967437,-0.23452559,-0.34614664,-0.14700237,0.08015156,0.0029364754,0.145321,0.18170847,-0.36013988,0.28686902,0.095085576,1.3900793,0.10746657,-0.020820769,-0.17086905,0.26667005,0.28389937,-0.25217727,-0.16334105,0.381122,0.3224573,0.011698349,-0.5212077,-0.07845537,-0.28109393,-0.29946205,-0.27461106,-0.32956064,-0.041688517,-0.143302,-0.4177861,-0.047437146,-0.058648188,-0.3720205,0.69159186,-2.6738532,-0.25436446,-0.14173585,0.3264733,-0.21322045,-0.39882505,-0.4763363,-0.40490583,0.07770621,0.2897708,0.3374847,-0.7189201,0.33761904,0.37259012,-0.48249838,-0.30476624,-0.5189676,0.016036604,-0.016313136,0.13627408,-0.07951164,-0.12540746,0.0027910883,0.2229369,0.55551296,-0.123676986,-0.056299943,0.21982695,0.5846732,0.034686998,0.47476885,0.04653186,0.6804148,-0.06547982,-0.24864785,0.34898221,-0.39264092,0.288631,0.1748487,0.12020779,0.3456219,-0.30196398,-0.9616959,-0.48946315,-0.26063803,1.1303588,-0.42587882,-0.3646219,0.23717001,-0.17448027,-0.39053524,0.03688381,0.48707926,-0.1985031,-0.10968125,-0.76216626,-0.06696255,-0.012090476,0.077855974,-0.062187966,0.15682599,-0.1508045,0.55389315,-0.17231849,0.2091592,0.25742123,0.2108728,-0.2748094,-0.4789266,0.10064234,0.8583604,0.3409524,0.09633221,-0.15081078,-0.31589666,-0.29479116,-0.16706559,0.15040675,0.6386475,0.6233054,0.0676941,0.16930892,0.3531334,-0.08988183,0.084205315,-0.14661744,-0.37012944,-0.011062283,0.024245968,0.6310181,0.64215714,-0.16698454,0.6775706,-0.009079938,0.027374946,-0.1943817,-0.57127404,0.6789455,0.8685845,-0.18010558,-0.37787566,0.48330864,0.20854174,-0.5265131,0.30031058,-0.55300367,-0.1648714,0.7398873,-0.19794512,-0.37389076,0.2791258,-0.35237688,-0.008845996,-0.98649085,0.11864115,0.025986016,-0.4364572,-0.21203884,0.013852773,-4.0714626,0.13942602,-0.15584418,-0.110589795,0.008687899,0.07798365,0.18000998,-0.57766116,-0.6577826,0.07526329,0.06675453,0.50726575,-0.23065533,0.16506328,-0.2997869,-0.35148752,-0.10887297,0.21584381,0.097663894,0.3399169,-0.03477426,-0.41618893,0.05920323,-0.2531595,-0.49500117,0.074443325,-0.57943046,-0.6749667,-0.1250277,-0.67910105,-0.2162644,0.83901775,-0.5395288,-0.17365327,-0.2616465,0.10552228,-0.113455944,0.34762394,0.06585277,0.22728676,0.22360252,0.048909076,-0.12659055,-0.2394986,0.35464472,0.082786255,0.28244355,0.41393244,-0.06817141,0.34976858,0.58430237,0.62439126,-0.022730704,0.8558257,0.37681276,-0.043811295,0.27035028,-0.3472985,-0.06636877,-0.643952,-0.33130562,-0.3773434,-0.5025393,-0.5881252,-0.28820422,-0.3585193,-0.779409,0.43464887,-0.05475964,0.27510425,-0.12526849,0.4287234,0.5597044,-0.14856815,0.10124932,-0.13748556,-0.27063486,-0.30869463,-0.34091422,-0.5559987,-0.6568556,0.46179837,0.8675508,-0.37443975,-0.02335602,-0.0932221,-0.33825248,-0.052898917,0.08714529,0.28718475,0.3157211,0.44536978,-0.25454494,-0.6707836,0.27299008,-0.3546672,-0.20684846,-0.7793695,-0.003613252,0.71852714,-0.5933733,0.7395957,0.34208342,0.16746694,0.213907,-0.54015994,-0.2705297,0.14978406,-0.34062254,0.49341333,0.24258243,-0.5745021,0.39887252,0.17935568,-0.072550125,-0.61640763,0.6202268,-0.042173807,-0.12033172,0.030636255,0.42135912,0.14358984,0.0058735493,-0.02681436,0.1455833,-0.50347346,0.15505812,0.3912649,-0.09818367,0.51925623,0.16793683,-0.25511676,-0.7666272,0.10397529,-0.5195301,-0.31557477,0.108556084,0.058931343,0.30889565,0.13591938,0.00039884908,0.339303,-0.40424797,0.03310754,-0.034960434,-0.110291295,0.12713704,0.49140847,0.2709025,-0.53409463,0.4713235,0.054370206,0.036407854,0.11516886,0.0585531,0.5888531,0.21879308,0.39339235,0.14263731,-0.29658812,0.22635065,0.5790907,0.08253373,0.33757174,0.106116936,-0.16130158,0.15661865,0.13438915,0.20893814,-0.08711922,-0.38722706,-0.23278397,0.01453804,0.26291555,0.54922926,0.1623397,0.4052191,-0.13001502,-0.29176384,0.32346237,0.18113297,-0.018832864,-1.0565567,0.30753344,0.3518469,0.7288176,0.3674659,0.07827969,0.11757006,0.24963944,-0.37236002,0.1554919,0.45331925,-0.17781147,-0.4499338,0.5676957,-0.5961339,0.5543421,-0.12995493,0.038870566,0.1199447,0.2359048,0.2709938,1.0891678,-0.19608854,0.0035691191,0.067797616,-0.21863382,-0.054152068,-0.28484133,0.0054582036,-0.6958103,-0.16430761,0.6526413,0.6076666,0.279405,-0.29881784,-0.040334363,0.034763254,-0.1846386,-0.0701926,-0.050839826,0.1590295,-0.24938425,-0.61834687,-0.28718612,0.6046289,0.17341512,-0.05616211,0.12772863,-0.23803172,0.36467484,-0.1963749,0.034740753,-0.11792134,-0.734224,-0.11658135,-0.31147254,-0.7684796,0.471654,-0.21761595,0.30073774,0.2746983,-0.02305256,-0.44005173,0.5470391,0.13791035,0.9129712,-0.06439899,-0.1281392,-0.37490895,0.20769006,0.38400033,-0.18136877,-0.2701368,-0.36575487,0.13604179,-0.37567946,0.5459901,-0.12178552,-0.4353619,-0.16088223,0.0036065946,-0.063797385,0.39220703,-0.3310693,-0.16652685,0.088462,-0.13486014,-0.37005174,-0.01997712,-0.33014452,0.2217025,0.23311904,-0.25529078,-0.061741516,-0.14072967,-0.16240083,0.042494316,0.060215756,0.24283317,0.5046226,0.066335276,-0.31191492,-0.039276164,0.26195553,0.41369626,0.07449076,-0.13627535,-0.2272865,-0.27306584,-0.43626344,0.32136023,-0.08900155,0.19852029,0.032420896,-0.5365949,0.77106434,0.20301738,1.4103907,-0.04968116,-0.25422066,0.06988619,0.52049243,0.011788707,-0.0313895,-0.2783716,1.0166377,0.64895374,-0.108910814,-0.286925,-0.41359523,-0.1967841,0.23516554,-0.33807814,-0.066700034,-0.07380941,-0.62472945,-0.2750178,0.243687,0.11936439,0.17047961,-0.018409807,0.041483227,0.15648238,0.09169601,0.26190975,-0.5524209,-0.2088398,0.115500726,0.4533982,0.040814802,0.231398,-0.31297633,0.37746328,-0.64079106,0.18560266,-0.44131696,0.21262206,-0.12805404,-0.1804405,0.26184407,-0.048115637,0.3496038,-0.2159392,-0.08426936,-0.39807063,0.6290719,0.18219122,0.20214513,0.7332722,-0.3133694,-0.16263025,0.19539276,0.53453726,1.388038,-0.060615953,-0.05229623,0.49479154,-0.2532975,-0.7170411,0.1855596,-0.48348218,0.24336733,-0.13442887,-0.31026694,-0.31574652,0.24146406,0.0006709282,0.17157087,-0.033638816,-0.5071033,-0.20592692,0.35810348,-0.3409349,-0.2368848,-0.21172954,0.188275,0.7869901,-0.3403007,-0.3622975,0.0447105,0.24890812,-0.31021473,-0.4917978,0.2278511,-0.23695263,0.51898503,0.07616206,-0.35736653,0.04435139,0.19799335,-0.36261755,0.2500668,0.41242582,-0.39583233,0.10735715,-0.11813061,-0.24972226,1.1175843,-0.16607939,0.25199696,-0.65927315,-0.43245146,-0.85843766,-0.27011985,0.103469126,0.07250839,-0.15749463,-0.7023706,0.094247386,-0.095503844,-0.3554229,0.06654617,-0.5365692,0.43088838,0.060638025,0.4701595,-0.08859254,-1.0948961,-0.045313433,0.1821803,-0.39680386,-0.7424774,0.563504,-0.22658648,0.7875287,0.17956635,0.15292999,0.3829794,-0.39478275,0.25543052,-0.2497563,-0.019463602,-0.7789363,0.020163812 +155,0.23687682,-0.09667566,-0.378951,-0.14454311,-0.10312773,0.19053331,-0.252075,0.39689958,0.07535601,-0.46837133,-0.031373344,-0.084992126,0.02196965,0.312847,-0.15047567,-0.31070936,-0.031061143,0.13384376,-0.46923262,0.33357576,-0.5137581,0.20371355,-0.16666685,0.35265148,0.074831076,0.14411166,0.26955512,-0.16262044,-0.22584584,-0.079324484,0.12013795,0.29293332,-0.42907178,0.081773415,-0.15053792,-0.21121426,0.0045315903,-0.4060425,-0.36269054,-0.670186,0.40496168,-0.83372587,0.5155566,-0.028922208,-0.15832256,0.4534912,0.20692119,0.17841342,-0.31064034,-0.080559365,0.19066574,-0.1536366,-0.20023006,-0.14803554,-0.14710857,-0.17549986,-0.5330295,0.0020253449,-0.46829847,-0.08464727,-0.42497838,0.17930566,-0.4316551,0.14724322,-0.11308555,0.48712686,-0.50163233,0.06697945,0.15377155,0.01883641,0.12700626,-0.5231051,-0.15820186,-0.1748895,0.1761447,-0.1920543,-0.13680834,0.29968792,0.28385475,0.345839,-0.15368499,-0.13574377,-0.19921143,-0.19647838,0.2169369,0.45584318,-0.12359738,-0.46534073,-0.052808207,-0.13031477,-0.000174431,0.10100394,0.07020203,-0.15899454,-0.16229957,0.21989952,-0.30091694,0.40528688,0.5580857,-0.2000584,-0.16925834,0.42369574,0.5537953,0.10263667,-0.14151339,-0.023168514,0.0057293405,-0.46948984,-0.16545674,0.12266258,-0.21135116,0.41341114,-0.17206486,0.2965435,0.5464731,-0.3629653,-0.105897784,0.0062603313,0.09630085,-0.115128525,-0.165763,-0.33174455,0.16835268,-0.48756945,0.21262598,-0.11138995,0.7895101,0.15156336,-0.6138567,0.40599492,-0.46533263,0.10869112,-0.039226346,0.6434035,0.68917847,0.42103624,0.41587335,0.6281436,-0.44916847,-0.07940213,-0.06274366,-0.45376956,0.07107598,-0.25343242,-0.11185549,-0.35550645,0.012727507,0.14173375,-0.06493629,-0.019750992,0.42813635,-0.33529514,-0.054400597,0.05845692,0.63853914,-0.368031,-0.025895732,0.69208187,0.99876773,0.9531554,0.14772859,0.9822067,0.15221487,-0.18752548,0.19228904,-0.10358023,-0.96961683,0.3966025,0.4135142,-0.06640527,0.22036219,0.2056622,-0.06482831,0.3376509,-0.67663884,-0.07398283,-0.1575142,0.259184,0.12148126,-0.11086636,-0.36881003,-0.22755095,0.0954432,-0.11198733,0.24827896,0.28375667,-0.23872952,0.3183233,0.041133378,1.4844464,0.0043253363,0.10568202,0.16470854,0.44184348,0.07835962,-0.08174243,-0.18223003,0.32013968,0.47518322,0.13285412,-0.5848971,0.07193274,-0.14617564,-0.46594015,-0.11529021,-0.3668329,-0.10011958,-0.081826404,-0.4176369,-0.078538656,-0.12591524,-0.39209014,0.33193773,-2.845687,-0.13897316,-0.16607523,0.26780626,-0.16378048,-0.25164667,-0.16254807,-0.52126,0.40564123,0.37541705,0.381798,-0.56843597,0.32607636,0.26560023,-0.50204223,-0.11534451,-0.64964044,-0.20506911,-0.13333152,0.3119792,0.06340305,-0.12151004,-0.0019264271,0.16071606,0.44953856,-0.12048144,0.084809415,0.33827162,0.4437055,0.08966373,0.43926525,0.008804556,0.4814181,-0.4103252,-0.17819366,0.214089,-0.4038436,0.26935247,-0.12310408,0.059827678,0.44671234,-0.4456908,-0.8673152,-0.51429504,-0.18380457,1.343322,-0.3507962,-0.26232362,0.2761301,-0.45264608,-0.27017358,-0.17484328,0.5220767,-0.2634832,-0.14507,-0.8449271,0.12318819,-0.12460788,0.30063948,-0.15187056,0.18600817,-0.42046502,0.50515777,-0.16893865,0.5795549,0.35323414,0.08696103,-0.40242413,-0.3977241,0.019246196,0.85644853,0.2526557,0.2088047,-0.3181049,-0.20284748,-0.25470743,-0.10796431,0.12744401,0.4333463,0.65846723,0.045986585,0.26889324,0.24824275,0.00041584572,0.0016123672,-0.20783505,-0.12197105,-0.10895452,0.036683034,0.59449667,0.4765067,-0.20578489,0.3751485,-0.054678954,0.17827241,-0.27521724,-0.38102227,0.37775022,0.8096676,-0.15152344,-0.2384551,0.6067456,0.5990368,-0.26797873,0.44646642,-0.6032636,-0.37751135,0.5136626,-0.20339155,-0.32734114,0.13684055,-0.31049052,0.13851538,-0.79284304,0.34800598,-0.21055922,-0.47371894,-0.55258155,-0.14003369,-3.0902221,-0.029324654,-0.21679412,-0.23931125,-0.14938878,-0.21919148,0.2692094,-0.5189141,-0.63471055,0.1549793,0.0044962484,0.7449744,-0.015846502,0.028306877,-0.21623239,-0.13490559,-0.3079632,0.021573609,0.26640627,0.34044826,-0.03943837,-0.5137151,0.060602717,-0.35533467,-0.3662735,0.018626519,-0.3509086,-0.3893866,-0.11722718,-0.40617618,-0.36522678,0.63782865,-0.30507267,0.025969068,-0.24383317,-0.09488266,-0.028669897,0.5010713,0.1111935,0.07837882,0.022804596,-0.12694551,0.088480584,-0.24838838,0.40492085,0.0019427468,0.21529852,0.4850773,-0.12731542,0.06639804,0.5278258,0.6239605,0.016752938,0.9688375,0.43810079,-0.03186737,0.2920259,-0.3173151,-0.20863742,-0.47484702,-0.28089148,0.16007169,-0.5232794,-0.3758458,-0.0467374,-0.25921413,-0.739395,0.5551758,-0.07517918,0.18510617,-0.09235541,0.25046647,0.32302767,-0.11528208,-0.040789746,0.013611825,-0.11362009,-0.4427561,-0.2629709,-0.72121185,-0.46423498,-0.14411524,1.0316367,-0.019603463,-0.009860579,-0.11783919,-0.2852392,0.048007987,-0.00043649177,0.1106744,0.4415832,0.4050785,-0.030184139,-0.63415533,0.5051858,-0.26561686,-0.17835228,-0.6605946,0.031479307,0.50058967,-0.60189915,0.43324196,0.54157454,0.09932851,-0.23603392,-0.62419474,-0.20048591,-0.009162708,-0.23396635,0.48285788,0.24164183,-0.95576286,0.5717567,0.34468836,-0.28440675,-0.6600888,0.5683979,0.035426967,-0.08139746,0.06160728,0.36788553,0.028579967,0.010774593,-0.23586608,0.26421317,-0.40301147,0.34557202,0.09964369,-0.0388273,0.58810717,-0.2853433,-0.104189016,-0.6149509,-0.1531076,-0.52892435,-0.19808222,0.043472864,0.024450807,0.11507929,0.2641886,-0.07685884,0.40801275,-0.3453311,-0.013064277,-0.042994857,-0.31331718,0.26127604,0.47629267,0.45775267,-0.30633646,0.73317975,0.037425168,-0.052309196,-0.21417756,-0.014123563,0.3895133,-0.039926697,0.40969416,0.051471844,-0.13209723,0.33328542,1.0035819,0.30329636,0.5262359,0.11782046,-0.20312552,0.22683129,0.098280884,0.2427153,0.15117575,-0.46282777,-0.0720046,-0.19442225,0.1948448,0.5212689,0.08428321,0.4485127,-0.1738692,-0.2946449,0.08499123,0.15806977,-0.057169072,-1.2980211,0.43605942,0.23302579,0.7602313,0.3932902,-0.09396728,0.16409925,0.5331899,-0.2785441,0.07821373,0.28323695,-0.044256404,-0.5165016,0.5858948,-0.6647036,0.47872683,-0.14756887,-0.017377261,0.036310203,-0.015560516,0.45637423,0.7536752,-0.05233781,0.1463617,0.12945439,-0.3066463,0.47055086,-0.38551372,0.099827565,-0.4701424,-0.13543962,0.55229264,0.357915,0.29300803,-0.16915454,-0.05289825,0.11382501,-0.235444,0.04279908,0.009818172,0.05683485,-0.17928293,-0.731972,-0.36278668,0.46662578,0.25336793,0.27009067,0.057227526,-0.17423995,0.28937203,-0.12263168,0.0055874386,-0.05988767,-0.59337866,-0.10229562,-0.21256848,-0.5052671,0.3537914,-0.3196939,0.39874935,0.33297,0.05675181,-0.5265959,0.21256307,0.2995692,0.60596377,-0.138479,-0.19699137,-0.337127,0.07010262,0.36329505,-0.14587447,-0.120564714,-0.38356754,-0.0016655525,-0.55218405,0.47304013,-0.3001719,-0.27863804,0.12735596,-0.16635732,-0.013445808,0.6101159,-0.09234175,-0.030153632,-0.19706097,-0.20805801,-0.22304909,-0.2034988,-0.113365434,0.18241526,0.27628818,0.008513419,-0.14301716,-0.115649536,-0.2367367,0.42027885,0.043219972,0.2562774,0.3093806,0.1401651,-0.3833395,-0.16490307,0.007971945,0.6749409,-0.020403298,-0.27122968,-0.3901211,-0.33876324,-0.18569992,0.3867422,-0.226852,0.25852427,0.06204747,-0.43637875,0.6020768,-0.15396073,0.8399387,0.117952116,-0.34458777,0.027334617,0.575819,0.011342378,-0.088594265,-0.29470003,0.7245753,0.36322778,-0.10103885,-0.2536151,-0.40904695,0.04366237,0.18073162,-0.24871597,-0.4661114,-0.09493187,-0.5388571,-0.15386659,0.21170416,0.25057167,0.09469107,-0.08797324,0.08907998,0.18330696,0.08661273,0.36667222,-0.38897422,-0.023930894,0.42886657,0.18362135,0.045324948,0.065685466,-0.40894744,0.4264281,-0.51975656,-0.03965707,-0.08645405,0.15800068,-0.18010564,-0.2852059,0.26440996,0.18062791,0.3830939,-0.16173694,-0.3050651,-0.18973367,0.39507398,0.18186906,0.23031229,0.56126183,-0.14256243,0.09317417,0.10964737,0.4340605,0.80072784,-0.14408083,0.11215841,0.26155204,-0.2234401,-0.6592176,0.42358744,-0.3210037,0.3190386,-0.04372167,-0.229409,-0.5258284,0.28725433,0.26245484,0.050866805,0.08633998,-0.47565377,-0.31047502,0.31591216,-0.21417001,-0.26203197,-0.36810723,-0.13742277,0.57720816,-0.24179235,-0.10319498,0.043553773,0.37212092,-0.16599983,-0.53486824,-0.1647944,-0.37598115,0.24917266,-0.020017935,-0.20810822,0.0065295976,0.103496306,-0.39236456,0.23315828,0.19784197,-0.32014084,-0.0076703173,-0.25424775,0.003360776,0.75293756,-0.27398828,0.1716297,-0.49598545,-0.45734024,-0.8887799,-0.1350287,0.510089,0.109829076,-0.010058873,-0.59460133,-0.013341288,0.0780759,-0.21119852,-0.07763468,-0.5379919,0.4104561,0.15241647,0.30717283,-0.0042828443,-0.58180845,-0.08069751,-0.09711816,-0.18901974,-0.3440026,0.5817548,0.07093235,0.72525465,0.16432227,0.19367911,0.26092243,-0.38628337,0.14259437,-0.13617347,-0.15713896,-0.5560366,0.10310198 +156,0.34709856,-0.26896384,-0.545933,-0.10266144,-0.1755773,0.2176197,-0.22619686,0.22748159,0.08471731,-0.48541874,0.028589675,-0.18245621,-0.07203768,0.27365983,-0.14396834,-0.27022848,-0.13296767,0.24432099,-0.6682487,0.29283723,-0.4414602,0.32340893,0.0094639575,0.2565342,0.15591049,0.17250729,0.19572374,-0.08760174,-0.1619982,-0.33913416,0.009641818,-0.03365503,-0.61724776,0.16828813,-0.26370615,-0.46386448,-0.03673699,-0.4464738,-0.5068311,-0.70130485,0.4070718,-0.90020186,0.65041286,0.04983527,-0.18915042,0.4459416,0.1642371,0.28092724,-0.20691077,-0.0059401733,0.30695224,-0.2064228,-0.11135722,-0.21894288,-0.251077,-0.29524827,-0.5615296,0.0515889,-0.35643214,-0.040315118,-0.38383386,0.18707684,-0.29183605,0.26572436,-0.24555792,0.37125516,-0.28031427,0.17410763,0.14402665,-0.14296794,0.18734312,-0.4506741,-0.10232695,-0.11281564,0.052843396,-0.1345658,-0.08402194,0.33667317,0.013761401,0.4741936,-0.13498165,-0.14290711,-0.3329437,-0.069284014,0.08443231,0.54322344,0.0070701963,-0.23867321,-0.13553493,-0.16892597,0.15827903,9.860737e-05,0.077217385,-0.16629627,-0.004500625,-0.08712768,-0.31402835,0.4217782,0.56353295,-0.1808617,-0.21681519,0.46104893,0.50169,0.016280407,-0.1667179,0.0139755905,0.003479302,-0.47737336,-0.22312827,0.16064286,-0.2204911,0.34681728,-0.04912162,0.2881232,0.4795793,-0.2987573,-0.03440204,0.06611095,0.1317095,-0.10350181,-0.045577493,-0.36800155,0.3017168,-0.43940946,0.029140566,-0.2922028,0.6787571,-0.037331384,-0.68047625,0.30295557,-0.5531927,0.08335148,-0.02062214,0.5644033,0.51670283,0.57330525,0.3591815,0.7197299,-0.46411276,0.044977646,-0.08813494,-0.29351252,0.11664633,-0.16371441,0.06912339,-0.3361828,-0.066409655,0.02340732,-0.1091813,-0.0756333,0.37178987,-0.3962924,-0.05466744,0.15690482,0.6714243,-0.29098105,0.05837602,0.6963696,1.0585365,1.0699915,0.056660384,1.0811926,0.2600818,-0.22462435,-0.019381955,-0.17997889,-0.90256786,0.25055537,0.17329311,-0.08793765,0.33482614,0.18142942,-0.008016301,0.2639517,-0.49818638,-0.037079684,-0.14255168,0.21114774,0.027648082,-0.06365559,-0.2816303,-0.24555014,0.109719686,-0.005838769,0.31038114,0.20302033,-0.42240122,0.30881244,0.1603525,1.5883806,-0.1272641,0.14530815,0.08012537,0.39262655,0.061581366,-0.21478295,-0.10492308,0.13462189,0.37559345,0.08685943,-0.6050563,0.08963515,-0.14653373,-0.45073298,-0.12000247,-0.2550058,-0.13937174,-0.17499802,-0.23927896,-0.1559827,-0.038252894,-0.47906798,0.28585768,-2.755661,-0.0034536633,-0.03112468,0.31281945,-0.090739466,-0.25465843,-0.10776811,-0.5058336,0.33535814,0.3712594,0.32740113,-0.6426013,0.47933695,0.4483228,-0.512949,-0.011121495,-0.50381124,-0.0045013386,-0.13805176,0.31665322,0.2058198,-0.049137082,-0.046864193,0.10133983,0.3932105,-0.08043657,0.11683413,0.3868874,0.43275002,0.02314513,0.54652876,0.11945171,0.51687753,-0.49462774,-0.15307088,0.40746883,-0.57631505,0.16863552,-0.12714039,0.2390572,0.44584754,-0.46290973,-0.8658969,-0.5485079,-0.07869165,1.2799321,-0.22879873,-0.4004256,0.18644166,-0.24702154,-0.38270357,-0.056254447,0.4370548,-0.24442948,-0.034903567,-0.79530627,-0.17868426,-0.20731552,0.46036983,-0.11697497,0.015377278,-0.47540477,0.6134847,-0.064715065,0.6143807,0.22456636,0.06296427,-0.48961893,-0.3878314,0.17021196,0.9971234,0.29684752,0.1128975,-0.3039129,-0.12266811,-0.29565793,-0.08576167,0.023481233,0.4027987,0.59844303,-0.05680705,0.18150724,0.22205268,-0.088725425,-0.037891053,-0.10669736,-0.15228918,-0.15167762,0.0039177537,0.57242644,0.5600799,0.02214557,0.26620844,-0.10117956,0.48614618,-0.2813689,-0.41959432,0.44056746,0.7174798,-0.053103685,-0.27482563,0.6721059,0.6329218,-0.2804486,0.52289706,-0.5108966,-0.52146536,0.3307789,-0.13115272,-0.35854444,0.25039557,-0.30866107,0.22073977,-0.7679597,0.27820203,-0.16428375,-0.5355011,-0.6435609,-0.21685852,-3.20441,0.07642678,-0.05933074,-0.24316955,0.020446202,-0.11711221,0.28163534,-0.31995425,-0.6328762,0.040776573,0.21670544,0.7849871,0.030793812,0.12842423,-0.18983713,-0.23152308,-0.35274893,0.19518049,0.17664048,0.21612194,0.003166863,-0.44196948,-0.106760375,-0.33402535,-0.2689082,-0.08233774,-0.6169612,-0.22136042,-0.17137739,-0.47300005,-0.39470258,0.60841703,-0.16506138,0.03179586,-0.21467781,-0.06771092,0.053681884,0.36950907,-0.014351545,0.060424592,-0.037986655,-0.16969666,0.103590176,-0.19243021,0.27945074,0.101772286,0.30142185,0.48484525,-0.23430751,0.009735942,0.33358663,0.62773687,-0.08150426,0.9158855,0.24319108,-0.14146666,0.21824837,-0.072721966,-0.29506308,-0.46853647,-0.10103637,0.039899588,-0.46203288,-0.34283277,-0.011157049,-0.31678146,-0.83794254,0.6480561,-0.013158645,-0.010870786,-0.04022324,0.30081266,0.28287786,-0.09215052,-0.03110582,-0.10314603,-0.098165266,-0.2346793,-0.4494795,-0.73119277,-0.36607555,-0.18907963,1.1971375,-0.063801214,0.022768881,0.20282312,-0.18990351,0.14600947,0.17574419,0.04432508,0.3349047,0.54839265,-0.008287149,-0.6081105,0.50654835,-0.36791167,0.026057128,-0.49479803,0.11125294,0.6439534,-0.5717251,0.30778715,0.38694313,0.15082853,-0.2887985,-0.45413324,-0.11525186,-0.06742388,-0.14765842,0.39405435,0.28534263,-0.83400905,0.43197605,0.21387495,-0.34014273,-0.7404777,0.37257704,-0.05147857,-0.13822632,0.005487174,0.24324901,-0.13220786,0.035223383,-0.25954565,0.2350289,-0.43333083,0.24639942,0.08494971,0.07301552,0.24350372,-0.26377922,-0.13144001,-0.5517639,0.02433631,-0.40870592,-0.184827,0.19198532,-0.07637029,0.06280664,0.4849933,-0.11868799,0.26944152,-0.22360682,0.042151,-0.07410832,-0.22769701,0.5021896,0.43569502,0.44384256,-0.49950457,0.7134371,-0.04044201,-0.17938504,-0.10269562,-0.13653709,0.42789847,-0.043533947,0.3997895,0.16219191,-0.05184012,0.3978234,0.84578055,0.27595228,0.40842488,0.12343449,-0.14946845,0.24751833,0.102243796,0.22890635,0.04765273,-0.5522905,-0.018717166,-0.17966437,0.15394072,0.3519264,-0.04289317,0.4558072,-0.18556203,-0.17250678,-0.025321977,0.098688684,-0.18454777,-1.2092268,0.36629698,0.09697627,0.73092884,0.4642934,-0.022982972,0.13246942,0.74389553,-0.20218603,0.051218707,0.16146533,0.07235665,-0.43242884,0.5024887,-0.47930908,0.52952254,-0.03183837,-0.075502045,0.030753851,-0.068084314,0.4512878,0.7286059,-0.14661859,0.09026183,0.039726846,-0.32231745,0.27755043,-0.2754051,0.32485336,-0.45397827,-0.22151329,0.84215134,0.42521116,0.41875786,-0.13242336,-0.008464226,0.045750234,-0.1902847,0.051808774,0.06459255,0.053764574,-0.13130732,-0.6434842,-0.030287743,0.535907,0.12984745,0.15185072,0.12489387,-0.29730394,0.15227522,-0.082203254,0.025492594,-0.14126173,-0.66157883,0.109108165,-0.19712658,-0.46465582,0.20525734,-0.25526962,0.26174816,0.24810909,0.0111240465,-0.39541158,0.20865329,0.34542665,0.6648199,0.048975978,-0.07145642,-0.18581973,0.24041025,0.20455508,-0.2961959,-0.06230923,-0.30772194,0.15948561,-0.65092033,0.49241415,-0.23236535,-0.444007,0.18287148,-0.17441435,0.086472996,0.6388159,-0.07972001,0.0046517765,0.121725,-0.03144049,-0.22663058,-0.19701259,-0.31739888,0.221277,0.19294678,-0.08580588,-0.0016688237,0.07680889,-0.10591873,0.44374543,0.15298517,0.3668546,0.39274612,0.10071135,-0.44158676,0.051701665,-0.19626196,0.8103323,0.04886015,-0.19866474,-0.3647789,-0.36021605,-0.2863696,0.47499964,-0.10313932,0.1999844,0.004500602,-0.35407728,0.68486166,-0.027644863,0.9570179,0.006824919,-0.26742798,0.12342776,0.6920723,0.08010251,-0.12498234,-0.43536767,0.9231657,0.49811682,-0.21232398,-0.1662769,-0.3159109,0.060311444,0.09930553,-0.28578582,-0.30893418,-0.14114161,-0.6892667,-0.1306678,0.23108837,0.3194058,0.092307374,-0.22734436,0.34102392,0.35952023,0.0068848007,0.2469341,-0.4460728,-0.07312828,0.39601216,0.08536607,-0.032356102,0.108722515,-0.47420225,0.30316025,-0.5380458,-0.037610773,-0.09106149,0.104948856,-0.09701105,-0.2924867,0.28542343,0.15166566,0.20876054,-0.43714553,-0.26945272,-0.14474164,0.38369873,0.18927884,0.33324313,0.6610401,-0.15842776,0.13455686,0.06512285,0.43281025,0.88407654,-0.19861817,0.14622235,0.2739053,-0.31964675,-0.62262547,0.3339143,-0.2551735,0.12160812,-0.028608058,-0.3051427,-0.42576385,0.38152885,0.15319525,0.02045243,0.09055488,-0.7008222,-0.14928968,0.2980681,-0.25176868,-0.2221163,-0.33530787,-0.16288887,0.46307102,-0.09856635,-0.31809667,0.09465376,0.39573961,-0.27437907,-0.51884854,-0.13277258,-0.42390174,0.24831216,-0.15058865,-0.15255561,-0.19684646,-0.05206695,-0.48646396,0.21133403,0.122876815,-0.35912177,-0.007417468,-0.3380558,0.06118244,0.7458125,-0.1479421,0.062294986,-0.47952327,-0.5254641,-1.0679134,-0.15898411,0.4178738,0.10706461,-0.12009557,-0.5977154,-0.14977501,-0.08258116,-0.18666275,-0.14581703,-0.4402223,0.33423337,0.09771071,0.33930993,-0.04662633,-0.9000672,0.06136053,0.09261497,-0.30713382,-0.41450542,0.58331627,0.013456737,0.6770624,0.08648141,0.12358594,0.2606618,-0.5799404,0.19576895,-0.17649624,-0.103381656,-0.52162516,0.17498708 +157,0.259644,-0.28361687,-0.32724425,-0.22603106,-0.32050818,-0.043737043,-0.15851292,0.4650742,0.22762774,-0.114385866,-0.09377235,-0.0630887,0.06003971,0.37884817,-0.14702071,-0.40596512,-0.13523017,0.07717792,-0.67457944,0.52139115,-0.46543676,0.14557444,-0.024577925,0.39388663,0.1963395,0.3552571,0.27524576,-0.0031942895,-0.04379045,0.015248888,-0.26142433,0.17905818,-0.23883371,0.24460836,-0.26166153,-0.22860742,0.06875398,-0.5835921,-0.049507294,-0.6289006,0.15413494,-0.81864303,0.36103576,-0.13250783,-0.123604715,0.046854753,0.36320367,0.18706499,-0.41855186,-0.22728209,0.17569228,-0.061382156,-0.12889601,-0.18185587,-0.10036316,-0.29416463,-0.4519226,0.0017141572,-0.523984,-0.36817694,-0.08503348,0.17364396,-0.2845997,0.07169683,0.00925654,0.52499425,-0.27492285,-0.05398897,0.19525059,-0.30718258,0.02285311,-0.55680466,0.020687955,-0.038379617,0.5166862,-0.0334897,-0.1892956,0.36767957,0.24971981,0.34657702,0.005328221,-0.26569957,-0.3061302,-0.3376229,-0.14260751,0.41138664,-0.10788213,-0.47502634,-0.122653976,0.12653296,0.2612574,0.28890234,-0.018731922,-0.16181563,-0.05563947,-0.21457568,-0.21208842,0.5030786,0.40229777,-0.3345646,-0.18199457,0.35539824,0.5030437,0.19434543,-0.32349423,-0.19972853,0.021456065,-0.45779952,-0.037636988,-0.036358826,-0.08143406,0.5095479,-0.18792745,0.19509046,0.6404038,-0.010568564,0.039354343,0.12352252,0.037884023,-0.10727429,-0.3354984,-0.298817,0.093155965,-0.49323803,-0.0044705444,-0.1809895,0.69900656,0.15093718,-0.72440356,0.48662043,-0.4413083,0.12087558,0.0014193909,0.47556877,0.61353797,0.38069144,0.4267339,0.5330091,-0.13964258,0.16655661,-0.053384222,-0.19651066,-0.004743759,-0.21008113,0.27892172,-0.5333896,0.29001254,-0.050652165,0.12981398,0.15001932,0.2291723,-0.37991047,-0.20862296,0.32597762,0.7821687,-0.23141988,-0.13964045,0.7110649,1.0666718,0.8824574,-0.0031655112,0.9985711,0.10370939,-0.20982419,0.25946206,-0.1700504,-0.6814116,0.2110556,0.3804519,0.1287566,0.3004971,-0.15510297,0.040271554,0.30320606,-0.25656632,0.014437629,0.01435491,0.30620617,0.30305025,0.15644631,-0.48838446,-0.38776472,0.088072285,-0.08115622,0.22112177,0.2716579,-0.21340752,0.34382758,-0.0024382912,1.3726301,0.16244313,0.06272341,0.14375658,0.59864056,0.24390559,-0.08100439,-0.22506198,0.46199855,0.20707461,-0.013815676,-0.5694414,0.34873036,-0.3110416,-0.35633415,-0.11524116,-0.5341719,-0.20061854,0.09780174,-0.43200126,-0.17512724,-0.10123776,-0.36030585,0.31780624,-3.1834128,-0.23213132,-0.2070658,0.2951897,-0.19193847,-0.11432112,-0.11108679,-0.51459444,0.2516487,0.30373958,0.5439325,-0.65869886,0.35101542,0.4821816,-0.59013945,-0.2441033,-0.6792391,-0.09184112,0.035353094,0.4191814,0.09619596,-0.09858014,-0.09578143,0.33169127,0.6293022,0.24650156,0.11065673,0.39891073,0.4120819,0.1685276,0.5691508,-0.1642361,0.5323717,-0.40819153,-0.08647905,0.19904956,-0.42261198,0.11676451,-0.024577217,0.17836687,0.61162376,-0.43796116,-0.8209468,-0.5681023,-0.09279333,1.0011122,-0.27937296,-0.31534848,0.25316116,-0.51937956,-0.02008398,-0.009822331,0.6504529,-0.15318553,0.014503645,-0.6040157,0.16776218,-0.085095,0.20988862,0.05547818,-0.050707586,-0.3009446,0.6694189,0.00095509633,0.7093324,0.1827646,0.07450471,-0.3484667,-0.17310336,0.08262352,0.4506101,0.28333798,0.0425339,-0.13361399,-0.028939188,-0.1459041,-0.22603662,0.0493624,0.5702023,0.5981739,-0.0061280853,0.13916592,0.28049943,-0.1219046,0.019379305,-0.032662265,-0.13967557,-0.1235376,0.14498094,0.40757447,0.66495526,-0.18983081,0.33386856,-0.18363507,0.25382432,-0.14303373,-0.37632918,0.5527455,0.40389067,-0.20743315,-0.015382886,0.3563537,0.6340106,-0.37254557,0.39597517,-0.5810489,-0.13633706,0.60756934,-0.20539369,-0.3306643,0.13066573,-0.2152494,0.13452911,-0.7393775,0.103930116,-0.25357965,-0.40483683,-0.3563278,-0.12242661,-2.781161,0.13329211,-0.05029908,-0.1496426,-0.35578424,-0.14407173,0.1895989,-0.59890014,-0.617586,0.1881312,0.22391541,0.5525965,0.008211947,0.012572224,-0.27607858,-0.24068192,-0.1300301,0.21739472,-0.09607147,0.39864832,-0.16618177,-0.32972303,-0.07282384,-0.07391524,-0.39802524,0.20229085,-0.59424365,-0.34181422,-0.005018597,-0.5871512,-0.365554,0.58936596,-0.36463532,-0.071083374,-0.17926352,0.024483675,-0.21027975,0.190668,0.14578459,0.07868058,0.08755106,0.0170567,0.17006506,-0.32552096,0.4409437,-0.10675954,0.35659003,0.13224451,0.18055367,0.23509003,0.45262554,0.63020086,-0.1050045,1.1162478,0.28329772,0.035012696,0.3257056,-0.29753074,-0.277489,-0.4234354,-0.17453624,0.054266963,-0.31479207,-0.40853855,0.07697427,-0.28356847,-0.6736933,0.5048661,-0.015079649,0.19349463,0.025816867,0.21030481,0.37575525,-0.2568258,0.11461939,0.034920108,-0.07721069,-0.58012825,-0.28816968,-0.6730159,-0.40405586,-0.027245846,0.70548135,-0.27131134,-0.017366324,-0.07364005,-0.33676454,-0.052980926,0.076374784,0.25142828,0.5318549,0.37436622,-0.120873824,-0.5561799,0.34006855,-0.15546012,-0.2360743,-0.26041752,0.043891884,0.48453146,-0.6572998,0.5466906,0.30912134,0.03883149,-0.23984157,-0.4553268,-0.17248018,-0.053156532,-0.1116989,0.36155066,0.27605578,-0.83234733,0.48488045,0.13506249,-0.28947544,-0.7663712,0.32656437,-0.05123288,-0.2356189,-0.2827368,0.32773826,0.24855736,-0.12855932,-0.13982932,0.023770984,-0.4492447,0.12160409,0.13771126,0.05961892,0.34577736,-0.097198,-0.14668486,-0.6153137,-0.065242,-0.53078574,-0.2092136,0.3698022,-0.0032385257,0.052544467,0.073003136,-0.20104574,0.25423566,-0.2757819,0.08657069,-0.03341437,-0.26845208,0.20273975,0.3483536,0.39033172,-0.39838272,0.50538003,-0.07021483,-0.038976345,0.11090138,-0.07942335,0.24237911,0.10339272,0.33233118,-0.15248747,-0.20445445,0.35951567,0.74691546,0.1727203,0.20586458,0.00642676,0.0018296157,0.4189512,-0.09304415,0.08565541,0.00837384,-0.4396305,0.011345829,-0.18647195,0.05733301,0.45697615,0.09494995,0.27118054,0.037944287,-0.20894805,0.019652545,0.13672575,-0.14582907,-1.104643,0.3608701,0.17040335,0.8277073,0.36350343,0.0832823,-0.23075853,0.85254973,-0.18990621,0.11230256,0.540541,0.03804813,-0.35900444,0.76887983,-0.54693866,0.6176015,-0.1127488,-0.18933542,0.090761624,0.11015455,0.3223557,0.6108503,-0.2537617,-0.08578014,0.13327824,-0.30609432,-0.014438978,-0.3034213,-0.058580782,-0.27074724,-0.2927445,0.61217743,0.26035136,0.29611903,-0.22662543,-0.08456213,-0.012378729,-0.18619892,0.15875684,-0.07925938,-0.030048082,0.0859782,-0.5939054,-0.09530194,0.5111795,0.14830554,0.2259804,-0.22038756,-0.3196357,0.101305984,-0.09336085,-0.047560513,-0.06532908,-0.6034693,0.17949149,-0.08809216,-0.5891232,0.6683293,-0.31041256,0.097497664,0.1801783,-0.012896786,-0.10392622,0.3748934,0.19342352,0.63072395,-0.18601899,-0.03598873,-0.27978894,-0.07861161,0.15056743,-0.12385874,-0.11384571,-0.59015787,0.08040134,-0.5073469,0.5743356,-0.07939295,-0.3680931,0.06238232,-0.23764937,0.11886519,0.5944141,-0.08743771,-0.05534171,-0.24509935,0.042186685,-0.28625378,-0.20651178,-0.25688517,0.3883791,0.22332677,0.021235421,-0.25152695,-0.19088197,-0.13781509,0.50678337,-0.09907466,0.44524637,0.127714,0.13811672,0.016156044,0.16885301,0.104589276,0.41780588,0.1837034,-0.102706976,-0.48277506,-0.10449159,-0.21112905,0.218876,-0.017141074,0.19684707,0.22849762,-0.2282341,0.7127562,-0.26200646,1.0479903,0.059878316,-0.38000408,0.09479634,0.54396343,-0.014824471,0.052159984,-0.28299975,0.75150746,0.4066871,0.00092802726,-0.09205706,-0.49054703,0.1445519,0.25477168,-0.20797357,-0.108273916,-0.02497398,-0.34234124,-0.34819874,0.22501312,0.06048631,0.2883241,-0.094787955,0.03527196,-0.0043829978,0.097357966,0.41424316,-0.48449492,0.067153625,0.17570639,0.13857175,0.060280394,0.18579504,-0.44531295,0.42167085,-0.79299057,0.16762178,-0.55199987,0.15732078,-0.27887827,-0.26728785,0.039704595,0.018004784,0.39926836,-0.1672372,-0.38665575,-0.11130522,0.39598665,0.055783637,0.19045234,0.3824404,-0.14271034,0.0068188733,0.18685792,0.6406029,0.9303905,-0.33071455,0.007136666,0.096616544,-0.31739804,-0.5972997,0.28663453,-0.32097343,0.034274034,0.13653763,-0.06771143,-0.47763994,0.16634925,0.43380684,0.18831716,-0.1395957,-0.48797533,-0.26784185,0.20592692,-0.27090457,-0.15042911,-0.21217524,0.18512893,0.62278694,-0.1578429,-0.24616815,-0.022247758,0.33188888,-0.11757923,-0.55201495,0.07716741,-0.34383664,0.3865791,0.11047195,-0.28873867,-0.112744294,0.013803823,-0.4316661,0.20650804,0.2086113,-0.41303703,0.051523093,-0.31568274,-0.025219208,0.96987677,-0.04661374,0.055767827,-0.47268963,-0.5074379,-0.7594796,-0.4104844,0.22490685,0.03383885,-0.10283134,-0.34274986,-0.031742077,-0.10270572,-0.34154627,0.082537435,-0.42874983,0.3076407,0.052837413,0.47756514,-0.2211846,-0.7445871,-0.062435094,-0.0140061295,-0.09182279,-0.44768095,0.5125008,0.07397656,0.75101143,0.010250734,-0.092172526,0.041250903,-0.24103464,-0.033438485,-0.39676523,-0.173838,-0.47823277,0.13720272 +158,0.56470436,-0.10230791,-0.43650874,-0.20450218,-0.30269518,0.13454127,-0.09751864,0.6886797,0.21183312,-0.400059,-0.22941409,-0.26065636,0.09091498,0.11647499,-0.23153679,-0.5397581,-0.017383235,0.18922485,-0.5130467,0.46707445,-0.49611112,0.27702045,0.023606922,0.3880168,0.16994455,0.14430894,-0.17651229,-0.09868921,0.02576038,-0.073046006,-0.07788855,0.52193606,-0.48274752,0.15331051,-0.1771245,-0.20823945,-0.072416134,-0.45789972,-0.37670544,-0.7880802,0.48818994,-0.907712,0.4352719,0.038684342,-0.3727953,0.2919093,0.22205862,0.308607,-0.1913248,-0.12905589,0.17095986,-0.03849841,-0.11042287,-0.16131398,0.034141354,-0.1639103,-0.5686668,-0.056099858,-0.29935718,-0.2652854,-0.22025275,0.21323745,-0.3719592,0.034182344,0.035533387,0.5397352,-0.40281558,0.24916579,0.33667436,-0.1904372,0.33111018,-0.63256973,-0.103972726,-0.066765,0.40509874,-0.17717037,-0.31304985,0.22258453,0.47779307,0.29502895,-0.16150191,-0.15880577,-0.117071874,-0.18712418,0.10355326,0.41909748,-0.1798426,-0.4081474,-0.051672306,0.017237255,0.045609746,0.24882023,0.14293763,-0.3224577,-0.18597889,0.020138958,-0.19239175,0.34587505,0.41586322,-0.22425559,-0.17636426,0.26923874,0.6281463,0.23369028,-0.03120543,0.064434595,0.07863891,-0.6225119,-0.07927499,-0.04241677,-0.33723933,0.49062848,-0.19021018,0.1256338,0.88629085,0.031487912,0.050088733,0.11840105,0.21185505,-0.0075243074,-0.5360133,-0.40791374,0.30906162,-0.50612533,0.24594526,-0.104721084,0.80862087,0.08655804,-0.5388302,0.329156,-0.6546182,0.06623209,-0.21659507,0.4026669,0.6088705,0.36632687,0.3136125,0.62453455,-0.41611862,0.007932736,-0.029455915,-0.26197994,0.13379487,-0.21766426,0.112716794,-0.44837528,0.12944582,-0.041449036,-0.035499074,0.11547637,0.2992976,-0.51701087,-0.112766266,0.08784572,0.80434245,-0.29406017,-0.045558173,0.6256928,0.90194476,0.8172659,0.124581136,1.1388315,0.12662731,-0.19326197,0.2619987,-0.092062,-0.83145934,0.27391663,0.39963788,-0.07946294,0.026542677,0.12247695,-0.00960442,0.41197035,-0.38464847,0.027399106,-0.20284592,0.3930911,0.18336327,-0.07309641,-0.4456808,-0.25217432,-0.0015866586,0.007860665,0.096517764,0.2661275,-0.017025596,0.36450776,0.048692826,1.4985505,-0.076127276,0.08755125,0.17326045,0.32031175,0.2279314,-0.05281114,-0.17222813,0.44738653,0.32535443,0.12807782,-0.5578278,0.2623197,-0.12991698,-0.32444978,-0.106015325,-0.40153116,-0.06742274,0.04703578,-0.54030895,-0.14228593,-0.22777669,-0.07542972,0.4824898,-2.7422698,-0.27405596,-0.138742,0.5106711,-0.13062872,-0.31717777,-0.122453704,-0.46277407,0.44812125,0.24451189,0.53405774,-0.7149029,0.36411792,0.43347573,-0.60814714,-0.1461611,-0.624041,-0.19379576,0.009180584,0.11384183,-0.013619845,0.028329602,0.0064797485,0.10084257,0.3948224,0.0017699322,0.19178881,0.3570022,0.39172116,0.11390613,0.47626463,-0.123762265,0.4613553,-0.13319549,-0.18885343,0.35098556,-0.2736035,0.21712835,-0.12223242,0.04108144,0.6082324,-0.40080908,-0.8238657,-0.81726867,-0.19887514,1.0572397,-0.35303536,-0.3259199,0.26173276,-0.49641278,-0.28125104,0.020614607,0.47516897,-0.053756863,-0.15739505,-0.8337626,0.024315357,0.026022771,0.15271917,0.07263003,-0.22874689,-0.36775398,0.7171189,-0.061753996,0.49579427,0.3201336,0.068801194,-0.28261024,-0.4202877,-0.03465035,0.644152,0.420409,0.18898186,-0.24456868,-0.15775825,-0.44385692,-0.056421723,0.040010445,0.6136491,0.6414447,0.026768114,0.13881914,0.16749188,-0.04442898,0.107765116,-0.20700908,-0.3196531,-0.08850013,-0.076693416,0.4954597,0.52013654,-0.29998192,0.31252903,0.007414571,0.23592618,-0.18888818,-0.49740487,0.45763278,1.0974075,-0.15280865,-0.33126554,0.61619264,0.43489498,-0.36625692,0.25817373,-0.49967963,-0.11090083,0.52308327,-0.19674729,-0.46069846,0.15502839,-0.40602794,0.19868548,-0.8508075,0.27704376,-0.43234178,-0.50877553,-0.5454182,-0.0741449,-2.665417,0.2729616,-0.31320056,-0.0910626,-0.23541306,-0.09116038,0.24081244,-0.6691123,-0.66020715,0.2741837,0.06292032,0.6793793,-0.13161477,0.072462164,-0.28381118,-0.17404163,-0.16155584,0.08699487,0.13632819,0.34204945,-0.024151292,-0.35833424,-0.01819803,0.08811273,-0.36530527,0.10597546,-0.6384826,-0.5343884,-0.07534132,-0.5357145,-0.30589625,0.57247025,-0.42785043,0.0432005,-0.06651783,0.020176237,-0.21754369,0.24826394,0.093344435,0.2177207,-0.06368422,0.019621944,-0.06098083,-0.35519406,0.3987785,-0.009869771,0.070455745,0.15808812,-0.12132304,0.025362406,0.47546124,0.56012243,-0.042215936,0.88969773,0.33013293,0.05594814,0.2685326,-0.26089722,-0.24416913,-0.42149714,-0.19352008,-0.118665576,-0.3907679,-0.36599904,0.00026419334,-0.50749904,-0.77099353,0.46010494,0.023237688,0.11475517,0.078104325,0.31992552,0.5655133,-0.20401023,0.02912658,-0.008641796,-0.068658255,-0.73668534,-0.090996996,-0.5787922,-0.47036844,0.1901138,0.9373884,-0.46317333,-0.033120178,-0.011723467,-0.25121352,0.029965412,0.23538479,-0.08626912,0.17474209,0.7273753,-0.21458493,-0.60130256,0.4334321,-0.115887865,-0.44185314,-0.6667977,0.21470831,0.482871,-0.71215045,0.72829735,0.4098909,-0.026397357,-0.24695788,-0.54819936,-0.2434349,-0.060633864,-0.35288757,0.48392007,0.20192853,-0.6417304,0.32756096,0.52262205,-0.15279981,-0.8382955,0.6755208,-0.15594997,-0.44497028,-0.0045290166,0.41586393,0.12917997,0.073298626,-0.0026914987,0.18567821,-0.4513852,0.1581519,0.14796121,-0.14905034,0.33337718,-0.20780103,-0.045170598,-0.7777713,0.022270283,-0.49424762,-0.18837403,0.2940357,-0.013556078,0.09815836,0.18929388,0.23425981,0.40502384,-0.265299,0.096851066,-0.19620048,-0.23525012,0.2553646,0.43889925,0.37055758,-0.35746732,0.6469053,-0.109545186,-0.07948696,-0.05528326,0.23349622,0.4271728,0.140198,0.48975188,-0.10201873,-0.123004794,0.27653974,0.8305372,0.055123586,0.44610986,0.02812004,0.009576653,0.120931745,0.09297216,0.26022127,-0.04330373,-0.5754829,-0.012341874,-0.2985143,0.15237032,0.58298194,0.16480896,0.22176567,-0.05131682,-0.47721025,-0.07329669,0.20340843,0.09408734,-1.152314,0.45717192,0.17680426,0.9018502,0.3924602,-0.019379368,0.04718674,0.6403925,-0.053764265,0.1638144,0.2409678,-0.11875738,-0.48112127,0.49734685,-0.88286227,0.33406943,-0.19161701,-0.038513858,-0.025310036,-0.029095283,0.42057815,0.5570742,-0.07773582,-0.07509671,0.055336017,-0.38499346,0.30669436,-0.5107492,-0.11656903,-0.57264143,-0.123491935,0.54284126,0.6904416,0.3530025,-0.3409789,0.05730327,0.11340206,-0.07653912,0.2018368,0.031676497,0.12680689,0.0727349,-0.59631383,-0.2280573,0.5297937,0.089557886,0.19805492,-0.12397038,-0.18196736,0.41244814,-0.16576095,0.06879007,-0.20249571,-0.79074275,0.045528002,-0.39364657,-0.5258283,0.41578487,-0.007438349,0.10708295,0.26208416,0.07366361,-0.22644354,0.5135699,-0.06134683,0.8328425,-0.077856064,-0.1938506,-0.56344855,0.18466058,0.09497663,-0.15061636,-0.059135463,-0.33032894,0.06970892,-0.38005129,0.55798745,-0.013190304,-0.16190067,0.033423632,-0.22579013,0.059107106,0.5725065,-0.318382,-0.13571331,-0.10500673,-0.31573063,-0.32465172,-0.262661,-0.13519885,0.19864567,0.25923616,0.100991376,-0.18267235,-0.12245655,-0.3152959,0.42059895,0.08284596,0.5206953,0.46687603,-0.029836807,-0.14759077,-0.18306199,0.3471085,0.45568052,-0.2012047,-0.36258444,-0.33978266,-0.46706003,-0.2447371,0.31110176,-0.0704266,0.47880584,0.089388795,-0.08056191,0.8824784,-0.13865165,0.81631476,0.040765297,-0.32364255,0.05952796,0.48282257,-0.044119976,-0.22723566,-0.22270383,0.63581324,0.4515857,-0.061381347,0.016984234,-0.2776902,0.09586496,0.20827615,-0.0959007,0.03885723,-0.03118824,-0.5850197,-0.28075522,0.11046115,0.26619858,0.10531207,-0.11739851,0.05573247,0.17534415,-0.101108156,0.2528366,-0.50322825,-0.13425054,0.124887586,0.27413276,0.1614177,0.15920438,-0.43047413,0.47672155,-0.43605974,0.015544525,-0.3807854,0.11460631,-0.267587,-0.3022323,0.05622852,-0.052428514,0.34763628,-0.27334052,-0.26253954,-0.32183507,0.3657748,0.2464682,0.019197537,0.6037504,-0.23252238,0.049074285,0.22630885,0.64710236,0.8806222,-0.11106939,-0.1259689,0.33819062,-0.45546558,-0.54384613,0.3426816,-0.30399635,0.20748858,0.114213146,-0.0090872925,-0.57320565,0.21277039,0.28291997,0.06026807,-0.06141085,-0.6844157,-0.17136593,0.39640602,-0.3171166,-0.19226667,-0.28583506,0.15544142,0.5400335,-0.18948875,-0.24635455,-0.024400055,0.19868053,-0.117981195,-0.55520934,-0.02453242,-0.47923756,0.31600067,-0.023601582,-0.21597417,-0.075591125,0.14177606,-0.45367602,0.2955559,0.0045655966,-0.27290013,0.097289525,-0.32626438,0.048659682,0.9415125,-0.12767169,-0.031879455,-0.52526677,-0.43647653,-0.7180176,-0.23724492,0.5060329,0.15304263,0.13979553,-0.51646644,-0.012306367,-0.028822038,0.003328698,-0.11806989,-0.29945084,0.57357776,0.15936327,0.38594308,0.0054717874,-0.8099414,0.007334358,0.0203473,-0.23482764,-0.60738915,0.414313,-0.0073097176,0.75294966,0.036010046,0.15961719,0.08521525,-0.30624777,0.045765407,-0.2959154,-0.13221331,-0.7155954,-0.027078971 +159,0.41588327,-0.0948121,-0.24838077,-0.34191632,-0.33070448,0.3706344,0.035099287,0.4080328,0.21488364,-0.38794687,-0.07565992,-0.22646293,-0.13054131,0.36364254,-0.12268007,-0.766652,-0.045244224,0.1848865,-0.7428145,0.46576223,-0.62254447,0.33802825,0.21925464,0.28850827,0.0667628,0.33887735,0.17241308,-0.23531188,-0.11099564,0.05135887,-0.35434562,0.0012020959,-0.5724779,0.2919719,-0.10001775,-0.18516932,0.06516802,-0.34604523,-0.29919735,-0.7075261,0.32883957,-0.77782524,0.39682886,-0.07699953,-0.30222479,0.24046429,-0.15419948,0.27625462,-0.53241044,0.071470134,0.13836244,-0.19517322,0.02057679,-0.17952935,-0.3482857,-0.47808716,-0.62813705,0.2660943,-0.34123746,-0.21959233,-0.26077718,0.22335932,-0.22037648,-0.046037655,-0.20269455,0.42663407,-0.4075833,0.029593358,0.2106644,-0.20556033,-0.11598456,-0.33249044,-0.13569923,-0.11809981,0.12877516,0.08487063,-0.2737019,0.31993666,0.40967992,0.62158614,0.13405249,-0.39186284,-0.028892407,-0.02055736,0.16273618,0.41420192,-0.10542349,-0.22245142,-0.2810997,-0.07155947,0.065010294,0.089176215,0.047540724,-0.51595175,0.07929572,0.18116216,-0.24745558,0.13181263,0.4594448,-0.49944285,-0.3137471,0.38620922,0.4454133,-0.07532481,-0.045438994,0.04028558,-0.08452863,-0.5338203,-0.2510781,0.33446196,-0.24818613,0.6567725,-0.2875302,0.013359575,0.7684707,-0.14943801,0.15092553,-0.15479358,-0.05053421,-0.07311877,-0.33169967,-0.16574326,0.18304737,-0.43275142,-0.0015388684,-0.34291863,0.81665975,0.2979612,-0.68518037,0.39522478,-0.51630545,0.29310253,-0.22086641,0.628897,0.70293415,0.4176693,0.1642913,0.8885962,-0.6446204,0.077559434,-0.08727664,-0.30281714,0.14438236,-0.2627898,0.16121683,-0.4117894,0.15016922,-0.029448202,-0.044228055,-0.13705339,0.23281881,-0.50175107,-0.048451122,0.032697793,0.8113116,-0.44628668,-0.10222169,0.7711611,0.8468042,0.95881176,0.03971861,1.6167641,0.7025963,-0.2873716,0.21751972,-0.29303393,-0.6903367,0.1306879,0.28554222,0.22919667,0.24258675,0.08390869,0.06388772,0.47534752,-0.4994681,0.22347197,-0.4025447,0.275189,0.015793357,0.071150385,-0.37407556,-0.38034487,0.11220132,0.0025502103,0.002211426,0.35208493,-0.15137076,0.3084168,0.13014095,1.639183,0.21592487,0.009089296,0.084002934,0.37553403,0.14717595,-0.11718651,-0.06495168,0.29895657,0.35430595,-0.14904793,-0.61476475,0.042630605,-0.2570007,-0.55794615,-0.107998215,-0.39012915,0.086998,-0.20182864,-0.49299508,-0.28778675,0.09200271,-0.41898155,0.4654886,-2.195684,-0.23934929,-0.13378465,0.29835325,-0.33089924,-0.3444481,-0.23466964,-0.5442347,0.2911457,0.43422192,0.3987229,-0.7968518,0.4103083,0.29339138,-0.25682086,-0.14389895,-0.7711617,0.06192978,-0.105476424,0.23685157,0.041714013,0.043075465,-0.33569643,-0.082029715,0.6501962,0.09571511,-0.0034970236,0.20503987,0.40865746,0.1266966,0.522446,0.17259666,0.5944942,-0.2792433,-0.13455406,0.40793753,-0.4869155,0.37350872,0.11088221,0.12217973,0.41622764,-0.5339172,-0.65477085,-0.77262026,-0.5756821,1.3245599,-0.48241332,-0.28566226,0.2040218,-0.11202087,-0.032750778,-0.06356959,0.33828282,-0.19968772,-0.12751304,-0.61000407,0.07562182,0.18440633,0.23100345,-0.10161914,0.20827125,-0.072384104,0.70661986,-0.23484504,0.54814595,0.35089558,0.14301172,-0.013553091,-0.39793792,-0.005560409,0.80702305,0.40665922,0.098598056,-0.04583363,-0.23631246,-0.22256054,-0.32926682,0.14140324,0.3934175,0.86909956,0.06455055,0.011103828,0.4951982,-0.15857773,-0.110576235,-0.038177755,-0.45466137,-0.06480188,0.072907075,0.6037598,0.56995595,-0.17669985,0.26306814,-0.27271968,0.3088436,-0.13388816,-0.5060999,0.62071174,0.91829693,-0.15309632,-0.08612696,0.4548766,0.46431404,-0.5218438,0.3705299,-0.595303,-0.29662806,0.73704576,-0.052803595,-0.34729484,-0.071831904,-0.2685441,0.097244345,-0.84370995,0.37588573,0.13417505,-0.54285586,-0.5566598,-0.1753659,-3.5965075,0.073279575,-0.26837087,0.082032405,-0.02628027,-0.057720132,0.21827944,-0.36465687,-0.54791564,0.0799935,0.045982268,0.4668116,0.03616182,0.21518342,-0.27826837,-0.0744312,-0.49255344,0.09059576,0.0465038,0.30638048,-0.002711773,-0.27560395,0.012708308,-0.38332915,-0.40670657,0.1640754,-0.7242957,-0.5679241,-0.14963152,-0.5071103,-0.41641292,0.6802149,-0.4224184,0.029515585,-0.21469143,-0.03846138,-0.35403174,0.37870362,0.22842298,0.22286876,0.021316128,-0.10608868,-0.25280955,-0.44591427,0.2608418,0.20337509,0.306211,0.35903051,0.004635151,0.13029845,0.51368695,0.6246173,0.04568804,0.5659866,0.24443193,-0.08776535,0.39394155,-0.40365213,-0.12721226,-0.6779036,-0.34024474,-0.17619388,-0.32944188,-0.4828698,0.09702701,-0.3813901,-0.8868441,0.1484295,0.047972757,0.005746258,-0.03847801,0.16578017,0.56266487,-0.053468134,0.0694958,-0.13494709,-0.13998827,-0.7031205,-0.53882354,-0.78792506,-0.48259595,0.31646466,1.1916922,-0.0818112,-0.34546104,-0.1457653,-0.35339618,0.07489251,0.07458792,0.047705326,0.11639751,0.487216,-0.15274525,-0.9000813,0.4447122,-0.021273136,-0.14161527,-0.54655117,0.2273686,0.8286374,-0.80135924,0.5545205,0.2571499,0.28114524,0.21278344,-0.39598912,-0.5064942,0.013919779,-0.15665889,0.57370317,0.042822056,-0.4815507,0.46223143,0.24126588,-0.04226286,-0.7617988,0.332504,-0.07913886,-0.11005689,0.1439463,0.37988934,0.074309506,-0.1674846,0.0016832097,0.20036401,-0.6189385,0.16838405,0.5174197,0.1049999,0.30502298,-0.10322236,-0.37645006,-0.6472761,-0.18471844,-0.64290196,-0.24656418,0.032696463,0.13469759,0.091376565,0.10874182,0.09299852,0.36854005,-0.09188897,0.17441249,0.014067884,-0.2414511,0.37026078,0.36307615,0.27210256,-0.6138293,0.58772534,0.051062744,0.19193403,-0.16837958,0.032254968,0.32818684,0.5580617,0.28898028,-0.12055869,-0.18962869,0.23401022,0.7065991,0.19574241,0.33506447,0.22975723,-0.22099617,0.567798,0.20491399,0.10118651,-0.018268755,-0.3431709,0.012245183,0.11121465,0.1736984,0.26719567,0.14308806,0.28589723,-0.057516437,-0.17239234,0.14952837,-0.105035834,-0.12592156,-0.96633244,0.2321734,0.22168009,0.65557545,0.49268132,-0.17567587,-0.08029703,0.5990222,-0.3611676,0.16456263,0.34786156,-0.21621974,-0.5799202,0.5942798,-0.60067624,0.5324581,-0.29937726,0.0384846,-0.03908602,0.44266525,0.35612196,0.7925504,-0.14941646,0.017481651,-0.12669256,-0.2934498,0.2594244,-0.4438893,0.2237564,-0.5831247,-0.3777823,0.5589689,0.33187985,0.2503039,-0.36763206,-0.0704835,0.08135707,-0.26566193,0.23513849,-0.09670971,-0.06273596,0.03012985,-0.6793278,-0.37887526,0.5702025,-0.139739,0.18619315,0.26140442,-0.39785868,0.23881468,-0.31616345,-0.103020735,-0.07569631,-0.7257832,-0.029397717,-0.10303811,-0.44491264,0.2401596,-0.29004836,0.24331631,0.29485783,0.05405267,-0.4116349,0.16940583,0.08069553,0.83753747,-0.051535375,-0.3083364,-0.45627955,0.08054324,0.24369486,-0.3575346,0.040483467,-0.34624085,-0.095137894,-0.5468631,0.52191645,-0.12744701,-0.2089479,0.17097382,-0.3298996,-0.14683338,0.45922583,-0.34993172,-0.13821413,-0.0741594,0.0002743772,-0.20395635,0.120890126,-0.3533678,0.31791696,-0.0536623,0.067922235,0.06379177,-0.20769456,-0.09284948,0.33519584,0.030232599,0.14871791,0.17141758,-0.19594659,-0.34675875,-0.030833462,-0.07136113,0.22472844,0.23658137,-0.2613771,-0.12498684,-0.13053587,-0.16236314,0.39391807,-0.16371116,0.30463725,0.06729723,-0.57666,0.6754561,0.086598106,1.2532305,0.083136,-0.30405086,-0.011827354,0.64916116,0.21513608,0.1401635,-0.30295762,0.6996144,0.6100432,-0.06631563,-0.21479617,-0.44046268,-0.14728843,0.33154148,-0.14744224,-0.15760449,-0.025048703,-0.73106396,-0.31817594,0.108535126,0.085591376,0.32410425,0.2057191,-0.13241683,0.063234635,0.061269227,0.62290716,-0.3112292,-0.08535918,0.31765842,0.17815502,0.17335589,0.28454518,-0.27969548,0.41375145,-0.7391435,0.2872134,-0.3168805,0.07438586,-0.08709826,-0.18024479,0.22204757,0.07286616,0.30505463,-0.36599785,-0.3964689,-0.26984242,0.8189582,0.22148784,0.4171899,0.8096756,-0.2477424,-0.26433858,0.2899299,0.5679838,1.2706548,-0.048458498,0.11295668,0.23209153,-0.44507715,-0.5973271,0.42150313,-0.29256895,-0.015745917,-0.009801714,-0.27888626,-0.44954962,0.31909984,0.23492475,-0.19659702,0.179665,-0.571732,-0.23569645,0.40646103,-0.2846337,-0.36581206,-0.31911057,0.34378514,0.723199,-0.38788083,-0.22564761,0.13351658,0.182779,-0.3037633,-0.5793727,0.0032650402,-0.6405593,0.39513135,0.14554192,-0.35311028,0.077297725,0.16613623,-0.3974778,0.15622628,0.24770102,-0.39940193,0.16871691,-0.11037282,-0.1356976,0.93293923,0.22728859,0.17885455,-0.7506267,-0.47277525,-0.8810634,-0.42766762,0.56463397,0.13256977,-0.023849752,-0.29387283,-0.19880523,0.10589348,-0.1525602,0.10993755,-0.5709661,0.4051014,0.25429347,0.32473317,0.07848507,-0.76149756,-0.01696888,0.019966569,-0.09397848,-0.35397336,0.4608574,-0.18770607,0.7827798,0.022140231,-0.016369447,0.023838218,-0.49848816,0.222592,-0.39037916,-0.2642713,-0.45436716,0.09653083 +160,0.6087888,-0.15858945,-0.6099957,-0.029980628,-0.33182952,0.24237673,-0.22818817,0.37888074,0.44460505,-0.53821015,-0.11265415,-0.18549761,-0.05737589,0.2653741,-0.15177163,-0.7027238,0.22145279,0.043116994,-0.46570608,0.6815462,-0.35212797,0.5320049,-0.04438321,0.2268562,-0.025009671,0.18406503,0.13369773,0.34215733,-0.22223864,-0.059776362,-0.045037057,0.24445851,-0.48041844,0.22213541,-0.13831513,-0.33474058,-0.086294614,-0.4631514,-0.1621213,-0.9131028,0.3148623,-0.63250864,0.58944905,0.09788515,-0.23210867,0.15129979,0.23331451,0.078529514,0.015841322,-0.06265126,0.14407232,-0.29001325,-0.2062143,-0.011186889,-0.42730767,-0.50307214,-0.59734327,-0.051656596,-0.66866165,-0.17917895,-0.23819682,0.2008575,-0.32199854,-0.22663888,-0.07633155,0.6852568,-0.25758433,-0.22237982,0.24618243,-0.3091069,-0.06240776,-0.9021654,-0.22891389,0.08299871,0.2619123,-0.0052503007,-0.22353564,0.32515928,0.3247344,0.4254392,0.14590825,-0.4375897,-0.32120213,-0.14018719,0.111882105,0.49835938,-0.26458073,-0.33658847,-0.29831415,0.066681504,0.5506059,0.24976589,0.5306701,-0.1367726,-0.022787264,-0.08315546,-0.18133442,0.6774368,0.58118683,-0.33789608,-0.19186573,0.37048006,0.6926264,0.09438666,-0.21688974,-0.15952751,-0.17087851,-0.4400637,-0.06747301,0.30100352,-0.086699985,0.14202021,-0.079673246,0.055858303,0.5062746,-0.22578563,0.06953224,0.2659015,0.15800788,0.13097109,-0.336603,-0.09845649,0.25986707,-0.34279224,0.06762794,-0.43150297,0.53733426,0.15686344,-0.4987683,0.42522398,-0.51863545,0.21087177,0.22592619,0.64151466,0.9659502,0.32923064,0.14465818,0.8531526,-0.18647313,0.1636931,-0.07456454,-0.045927938,-0.032293506,-0.19367221,0.39248064,-0.5174428,0.0079069985,-0.11617883,-0.16544071,0.21670175,0.50133693,-0.7238463,-0.31642273,0.2040604,0.79908806,-0.17457655,-0.21538067,0.9078441,1.2102667,0.83185035,-0.09169544,1.0248871,0.16996427,-0.124262914,-0.24109201,-0.31862068,-0.47901314,0.19332634,0.33931902,0.2493547,0.52612114,-0.016784936,-0.30494657,0.4333624,-0.21912952,-0.29454228,0.015685368,0.35846096,0.22582848,-0.24825631,-0.44827676,0.019652495,0.116388455,-0.1761872,0.484289,0.36035833,-0.3100088,0.2766296,-0.2171973,1.0532671,-0.1765573,0.033475332,-0.015096209,0.3761851,0.39462417,-0.22176208,0.24425165,0.45293385,0.11194829,-0.01831228,-0.4198902,0.16204873,-0.3876011,-0.42007247,-0.054201357,-0.3535018,-0.3456807,0.12758513,-0.34447497,-0.16134858,-0.08494521,-0.2986684,0.40027326,-2.730789,-0.18670528,-0.07951059,0.32866138,-0.2679731,-0.43942857,-0.12219233,-0.46308216,0.4680101,0.35661075,0.29006857,-0.5417268,0.22673409,0.42757505,-0.6098302,-0.07323146,-0.66216666,0.026721248,0.0048946226,0.4044105,-0.007860308,-0.37471336,0.19739941,0.41307992,0.55830187,0.35914358,0.11592396,0.28653842,0.4398814,-0.2633844,0.26581877,0.028063009,0.5557295,-0.19867873,-0.117513575,0.367671,-0.75974804,0.36339095,-0.16635561,0.098306976,0.5189627,-0.046534993,-0.7453578,-0.5169007,-0.2083964,0.9641642,-0.07911624,-0.74259555,-0.011904152,-0.072138,-0.19633587,-0.11385597,0.6381568,-0.013463995,0.027132051,-0.6780427,-0.00058903015,-0.16154039,0.13251509,-0.23285334,0.10081886,-0.5556622,0.778772,-0.13077097,0.4341041,0.19298188,0.36142525,-0.5337803,-0.4643894,0.018128736,1.0828211,0.5412429,0.042554285,-0.083773494,-0.18002948,-0.28383532,-0.30351183,0.13463204,0.8058972,0.47510362,0.022374852,-0.0076202187,0.31826854,-0.05683917,0.23256753,-0.13500127,-0.3698875,-0.20616584,0.1109436,0.61426145,0.42922682,-0.28746915,0.5050612,-0.17093374,0.08177541,-0.29247275,-0.5079663,0.59175307,0.8103208,-0.3152255,-0.25524017,0.47134757,0.14426169,-0.48769718,0.48436657,-0.71940774,-0.29553175,0.47118455,-0.2234396,-0.5050528,0.055455085,-0.18444712,0.02448265,-0.6955802,0.25463295,-0.3268198,-0.2844386,-0.57399064,-0.19862749,-2.7201397,0.037137475,-0.24067985,0.026990073,-0.28103372,-0.17480491,-0.0154742,-0.62135124,-0.52743894,0.17778465,-0.06678344,0.6139931,-0.12472688,0.055799603,-0.30097708,-0.58785015,-0.16411965,0.38174778,-0.12632307,0.29960093,-0.12736447,-0.12904683,0.16010915,0.033658236,-0.49344137,-0.094914906,-0.66518265,-0.42137423,-0.3141348,-0.46667725,-0.019984739,0.7438396,-0.43411204,0.123077095,-0.26641315,0.1693794,0.02160103,0.2900727,0.14196722,0.24649988,0.24373867,-0.31649542,0.08079839,-0.35605335,0.37043422,0.18110551,0.4047291,0.6676418,-0.051262837,0.25781292,0.44339946,0.732635,0.17267041,0.91127855,0.033193104,-0.13366234,0.40926737,-0.2765308,-0.16475856,-0.6296736,-0.25045738,0.28853348,-0.40571693,-0.50424993,-0.25953445,-0.43037906,-0.8089695,0.32215816,0.041782014,0.3253222,-0.30296776,0.6550895,0.48521557,-0.32552457,0.015858425,0.050144274,-0.11846941,-0.420365,-0.32941213,-0.6144853,-0.53447217,0.37848955,0.61465377,-0.34128794,-0.11202637,0.0857532,0.024489403,0.0732251,0.06351753,0.23544502,-0.31187755,0.22480306,0.060360067,-0.46581414,0.3847001,-0.22585805,-0.16326533,-0.6592687,0.50566787,0.5217658,-0.41297653,0.69254494,0.34348348,0.077608466,-0.4448168,-0.6061934,0.05304346,0.41688338,-0.19434197,0.41467062,0.29429173,-0.6024304,0.39674932,0.40321022,-0.21715477,-0.5931868,0.5215748,0.07274504,-0.22470117,-0.039356947,0.51529056,0.373714,0.027644353,-0.2387325,0.20113407,-0.5538763,0.19646947,0.06841216,-0.00952032,0.68770236,-0.048563786,-0.56404066,-0.6792342,0.16692212,-0.7455764,-0.2569632,0.17675649,0.0075617647,0.035462,0.29365543,0.23105045,0.55974185,-0.35346028,0.18003675,-0.26862863,-0.31498384,0.4720595,0.50266415,0.48742706,-0.43944502,0.58250195,0.025816234,-0.18150488,0.26959246,-0.0006996734,0.5333909,0.22598253,0.48038524,0.15474828,-0.04781405,0.12684195,0.5920783,0.025982661,0.25541243,0.16667445,-0.33043894,0.11367571,-0.066196956,0.20416784,-0.17073287,-0.5382581,-0.090134144,0.001096734,0.07372356,0.44843644,0.093772285,0.20872177,0.11517983,-0.39001927,0.04151965,0.19069706,0.0055911713,-1.4304773,0.2778799,0.102124706,0.93402344,0.28140548,0.12357292,-0.033777535,0.2915813,-0.040750504,0.08671824,0.31127113,-0.09823025,-0.29246885,0.430053,-0.47482425,0.44612783,-0.23906994,0.018349605,-0.10320432,-0.01803135,0.45112514,0.8433296,-0.30968437,-0.0712019,-0.13589066,-0.17545573,0.23620519,-0.31321177,0.33058295,-0.34960914,-0.40489906,0.48057476,0.3272376,0.41076908,-0.2517095,0.035874598,0.16893406,-0.3258372,0.16085991,-0.02043772,0.12240343,-0.13793282,-0.35508278,-0.205544,0.47015306,-0.110157736,0.053768337,-0.078135565,-0.10080077,0.18900426,0.07053392,0.12650524,0.07745947,-0.71115404,-0.042988893,-0.1302664,-0.6398902,0.42718205,-0.09063302,0.08047347,0.24234617,0.053414885,-0.20860974,0.5705915,0.30292082,0.6432123,0.010862725,-0.17701231,-0.47561458,0.12642287,0.08343603,-0.25760078,0.17713167,0.093528025,0.4334776,-0.45053583,0.6014107,-0.16991864,-0.35546714,-0.007171963,-0.23403528,-0.10332465,0.58332604,-0.2330818,-0.18342257,0.011239365,-0.2908576,-0.13133648,-0.08600557,-0.061451744,0.22758998,-0.09100257,-0.06363299,-0.18317696,-0.24734758,-0.15605494,0.19991687,0.13255864,0.08457804,0.70246804,0.16048524,-0.50371933,0.23380676,0.27700245,0.4182668,-0.01529098,-0.10957741,-0.24605148,-0.5981908,-0.65812606,0.45245403,-0.08661338,0.18332982,0.090198226,-0.37984663,0.78561556,0.11899751,1.2999471,-0.095811665,-0.5120524,-0.054424644,0.68960476,-0.0331058,-0.00017798586,-0.3847571,1.081764,0.5534612,-0.08537416,0.06763989,-0.553269,-0.076880984,0.43315682,-0.3882832,0.027939072,-0.16456422,-0.71916354,-0.22407643,0.24658887,0.3041133,0.052418027,-0.20556518,0.07332195,0.38110167,0.18537514,0.3332811,-0.80004203,-0.036270503,0.3314595,0.3330083,-0.10422029,0.04374365,-0.3972017,0.37395167,-0.76748765,0.32014653,-0.25255707,0.15332791,-0.21531656,-0.36877313,0.3046233,0.17499344,0.30521855,-0.37258896,-0.4797148,-0.05489566,0.18535392,0.24205896,0.10689541,0.6015611,-0.14907625,-0.025679963,0.1494691,0.6418725,1.3310543,-0.0111397635,-0.12026566,0.13031773,-0.40068778,-0.90716326,0.22198693,-0.46396208,0.092941925,-0.21206269,-0.3456204,-0.56439734,0.18469131,0.10155349,0.018193271,-0.0050563216,-0.65221864,-0.249014,0.00033968262,-0.47791073,-0.113976546,-0.22816317,0.06894786,0.8319803,-0.22628649,-0.25982317,-0.09120173,0.4927117,-0.2889382,-0.9258465,0.08458875,-0.2554275,0.47156814,-0.06488769,-0.31333822,-0.164732,0.029784603,-0.49192303,0.032765802,0.14179058,-0.25228068,0.13830447,-0.21172953,0.1074282,0.5469822,0.190174,0.18283512,-0.50811225,-0.54199296,-0.81176996,-0.43303248,-0.18805037,0.12962615,-0.114469014,-0.8565193,-0.075320564,-0.50304806,0.038776048,0.054621033,-0.33555672,0.19464254,0.17978983,0.3430595,-0.26722834,-0.8502596,0.15645896,0.14401616,-0.08475113,-0.4450772,0.40616468,0.014225806,0.85908973,0.17313056,-0.12337788,0.21213174,-0.5809392,0.34319195,-0.35275456,-0.15229261,-0.6338664,0.31511408 +161,0.4736614,-0.4135653,-0.37719646,-0.39644182,-0.19600224,0.07099403,-0.24809368,0.54363364,0.17821603,-0.6732175,-0.32665107,0.027459584,-0.20370658,0.2887254,-0.21943597,-0.8280806,0.05139764,0.29089165,-0.44319037,0.7276272,-0.33223757,0.27785143,-0.12765472,0.21854705,0.2501862,-0.010499218,0.19384825,0.21021903,0.15008877,-0.4635636,0.11658793,0.101180054,-0.28300592,0.4774063,-0.035013963,-0.44110408,-0.07329655,-0.19258241,-0.20668699,-0.8191676,0.26279178,-0.85031533,0.3535898,-0.17411004,-0.41697773,-0.03634131,0.23360781,0.17690659,-0.08512581,0.15024678,0.04989228,-0.08053725,-0.31091198,-0.19464476,-0.2425276,-0.5754164,-0.68152183,0.12699963,-0.28957537,-0.066439666,-0.10815525,0.394024,-0.26256475,-0.08820974,-0.3684086,0.7684538,-0.27911726,-0.057859167,0.19851755,-0.14191273,0.30666167,-0.6553339,-0.20638289,-0.08954564,0.24262704,0.0004348755,-0.33096132,0.1790772,0.2618222,0.6044591,0.011020889,-0.26203772,-0.19866014,-0.22928579,0.100842506,0.4449325,-0.2118923,-0.59357196,-0.24888285,-0.19803433,0.42447445,0.34026083,0.40220508,-0.3708643,0.13563572,-0.02247417,-0.32443717,0.5015783,0.61938584,-0.41691044,0.114414304,0.27484164,0.554908,-0.08688996,-0.27197793,0.18045855,-0.01871186,-0.6061474,-0.3000823,0.38668966,0.010614852,0.3425378,-0.29440126,0.21411389,0.28749445,-0.123196214,-0.03470848,0.21604355,-0.127421,-0.1099055,-0.42723277,-0.46437374,0.35970676,-0.4222058,0.081039704,-0.6246279,0.76110166,-0.052242015,-0.8040386,0.3608857,-0.44112325,0.25100923,-0.26100838,0.5804682,0.7838256,0.5289568,0.16006118,0.7814382,-0.19578552,-0.10541576,-0.17828172,0.0746331,-0.029197784,-0.18094623,-0.14088254,-0.45888937,0.033026744,-0.05166157,0.10445408,-0.07792479,0.65961236,-0.5080547,-0.28209195,0.15705802,0.8566614,-0.27762204,0.09390909,0.8751672,1.0675809,1.1475803,0.21543597,1.2174504,0.27763948,-0.053536255,0.039615434,-0.061414137,-0.581865,0.23156185,0.56184906,0.567563,0.07266665,-0.18219042,-0.096881054,0.5264325,-0.42636338,-0.02708154,-0.23709273,0.2638549,-0.12714858,-0.060163397,-0.46093348,-0.15307307,0.25114962,0.00045285,0.09278408,0.32268393,-0.30651045,0.55774164,0.07202123,1.1433028,-0.22049291,0.07888753,0.07516415,0.5142129,0.12327087,-0.36031243,0.30883786,0.003801922,0.49529088,-0.22029994,-0.60361934,0.25335908,-0.1486802,-0.49228707,-0.18540448,-0.37216893,0.031054607,-0.2733952,-0.302866,-0.34210935,-0.0070447563,-0.43171147,0.3421626,-2.4059927,-0.20062758,-0.27781546,0.22237442,-0.24749857,-0.4080135,0.06464601,-0.5181116,0.7695899,0.32112023,0.42066696,-0.5746748,0.401436,0.43990085,-0.5311814,0.06242995,-0.9585615,-0.017738923,-0.15396483,0.5024813,0.20035698,-0.11449412,-0.04584161,0.095712036,0.49369454,0.04606965,0.24209802,0.48115852,0.29249644,-0.2345789,0.49140847,-0.10059538,0.5198047,-0.5396531,-0.20153351,0.4155203,-0.48476708,-0.037207544,-0.011407122,0.17717534,0.49799815,-0.76854247,-0.6026917,-0.95660686,-0.6355794,1.2755253,-0.19911897,-0.713898,0.19203459,-0.31304368,-0.21579635,-0.039111298,0.8007396,-0.24967742,-0.07714621,-0.82416373,-0.102191366,-0.24647613,0.48821056,-0.19186532,-0.243939,-0.53302425,0.67957526,-0.15439211,0.4261547,0.3915458,0.20645559,-0.48541823,-0.4483726,0.009274651,1.1404324,0.44396126,0.091556646,-0.075497456,-0.0549739,-0.3997544,0.062437892,0.06948945,0.8900835,0.49042475,-0.098215304,0.031758573,0.46930978,-0.22002274,0.10034388,-0.14520462,-0.46720275,-0.46349716,0.12496028,0.8182071,0.4077581,0.27420732,0.3043695,-0.1237697,0.2748854,-0.4950408,-0.44654,0.4441085,0.80604535,-0.18462501,-0.37306273,0.78897,0.5660727,-0.20606871,0.44824076,-0.76727515,-0.45909628,0.33591452,-0.09581888,-0.5087339,-0.021952609,-0.49817804,0.37164256,-0.7494848,0.32285967,-0.6971404,-0.47396716,-0.65165085,-0.15278386,-2.8108892,0.24202526,-0.017478263,-0.1872126,-0.21032894,-0.3507739,0.5707622,-0.2788696,-0.47436634,0.06650955,0.10056751,0.762412,0.029755838,-0.14239551,-0.525154,-0.1738307,-0.32060686,0.21677661,0.039627474,0.30150226,-0.10826272,-0.4006963,0.12462599,-0.20354255,-0.37002078,-0.05741905,-0.7366349,-0.47229087,-0.2208277,-0.51954967,-0.3089878,0.5555729,-0.2236983,0.120320566,-0.3223684,0.011218789,0.011746119,0.110669285,-0.05183951,0.17854132,-0.01613576,-0.24706401,-0.12836194,-0.37944794,0.13502938,0.09262713,0.039588545,0.34330082,-0.25507304,0.21070777,0.39630786,0.5353752,0.0023119797,0.9779973,0.47571316,0.03732747,0.42283964,0.054712985,-0.20864837,-0.4164723,-0.06721238,0.08029672,-0.6311066,-0.2449547,0.075705,-0.24136691,-0.79924613,0.5222728,0.16032928,0.21351852,0.11029162,0.35108885,0.37023854,-0.09412918,0.10132081,-0.044466753,-0.2919295,-0.41388312,-0.48397338,-0.8427646,-0.413169,0.0038891237,1.1696924,0.084175594,0.06423435,0.11948592,-0.20612456,0.12306065,0.3249127,0.00703909,0.18722849,0.1546288,-0.051689804,-0.6282209,0.3778306,-0.021618938,0.1117843,-0.39429688,0.5366102,0.88098985,-0.5339512,0.32423583,0.32469192,-0.0054414924,-0.6578214,-0.61635345,-0.038032692,0.048541177,-0.1129087,0.4638025,0.3807143,-1.0029829,0.5656192,0.1707484,0.20321614,-0.8343957,0.5489836,-0.14107578,-0.084081866,-0.04678149,0.35650015,0.097752266,-0.049288,-0.30537978,0.2584095,-0.3898277,0.21942027,0.11078497,0.02740707,0.30674592,-0.33348575,-0.07726588,-0.84441644,-0.004884007,-0.91122514,-0.37375522,0.3393847,-0.17357814,0.12926538,0.39086106,-0.037878793,0.50664973,-0.020956332,0.24748783,-0.026168471,-0.33649576,0.49267206,0.6485425,0.24074781,-0.35797492,0.6639842,0.20871894,0.13953902,-0.48287198,0.19133,0.41811815,0.16066085,0.5860246,-0.3613807,-0.21084501,0.4524438,0.87852836,0.19253182,0.29636037,-0.10550698,-0.24049236,0.04016615,0.015923113,0.29194668,-0.14645462,-0.49712315,-0.19250703,-0.17425478,0.14762898,0.46590567,-0.08992106,0.47926092,-0.03054894,-0.30870816,-0.0026427854,0.07401014,-0.071539424,-1.4671243,0.33764258,0.1072804,0.8746206,0.6097567,0.027878946,-0.27120033,0.7470886,-0.28539005,0.08761609,0.32134447,0.062382013,-0.11372057,0.499463,-0.7077353,0.42299366,-0.11026821,0.13838102,0.010696232,-0.10612776,0.43812618,0.73278505,-0.06894968,0.28990427,-0.0918409,-0.31368393,0.3263812,-0.27439275,0.20419447,-0.48653507,-0.34251985,0.5848801,0.3827301,0.53861815,-0.31167236,-0.018645465,0.16942413,-0.006033717,0.024763584,0.009086999,-0.08530074,-0.434137,-0.5425022,-0.14140652,0.38674465,0.12115768,0.114131,0.26177958,-0.41220784,0.12080413,-0.040063065,0.1555496,-0.06945916,-0.46412468,-0.04805985,-0.25921395,-0.060910255,0.3266177,-0.41181687,0.094216645,0.26945034,0.086945355,-0.24644543,-0.098359756,0.1360947,0.642869,-0.027448693,-0.11833572,-0.37517938,-0.22420923,0.021817235,-0.42824554,-0.09583828,-0.24442632,0.048224498,-0.93357897,0.35482517,-0.034540534,-0.32733423,0.45717597,0.019946061,-0.08047189,0.53966355,-0.11350111,-0.2087541,0.26369336,-0.11574229,-0.11846372,-0.10061406,-0.06630673,0.4249387,0.02512387,0.4153442,-0.0685341,0.005252523,0.047695994,0.43048063,0.11457813,0.14691837,0.4632611,0.08754036,-0.38028374,0.2910172,0.026563196,0.6612327,-0.10911108,0.14452493,0.017178258,-0.43493965,-0.35518515,0.25893193,-0.12266179,0.42825437,-0.029023424,-0.3971977,0.62607294,-0.079994746,1.0047044,-0.09834796,-0.5120614,-0.11309449,0.47760323,-0.09197063,0.0077081122,-0.20356573,0.8352912,0.4450176,-0.2602394,-0.019410163,-0.31970012,-0.12459939,0.13937767,-0.09156642,-0.08563196,0.02211518,-0.67602944,-0.10256188,0.1733268,0.4109392,0.109754644,0.08155907,0.014148772,0.17566995,0.019507283,0.2946953,-0.4821402,0.23162653,0.19569276,0.2907066,-0.08262814,0.20077701,-0.34889284,0.05061611,-0.8315489,0.35121384,-0.3836716,0.02186045,-0.13495465,-0.27920517,0.37032115,-0.018165201,0.2508413,-0.29908746,-0.48086002,-0.12441205,0.5742522,0.097552665,0.36510062,0.73483723,-0.1991446,0.11095673,0.29330212,0.5784584,1.3089755,-0.18077254,-0.036218744,0.16538826,-0.506258,-0.9388686,0.22397451,-0.34840402,0.10289707,0.27196276,-0.41731402,-0.18095873,0.1466303,0.25126344,0.102050096,0.17441408,-0.57469887,-0.31465352,0.13259526,-0.25437936,-0.27296272,-0.3447698,0.1613049,0.29880795,-0.3623948,-0.5462566,-0.085403115,0.39581683,-0.32583776,-0.7270228,-0.040084135,-0.38550696,0.19023608,0.1078647,-0.44640318,-0.16819195,-0.24003987,-0.47510388,0.012228287,0.123005986,-0.27532926,-0.04439598,-0.28598905,-0.22957306,0.7229627,-0.07985507,0.057399243,-0.39253202,-0.64016896,-0.63615566,-0.31622735,0.26263228,0.31219187,0.03532359,-0.51580936,-0.05053589,-0.42646673,-0.05052198,0.13426717,-0.224804,0.53300685,0.24032515,0.5712877,0.054210823,-0.70303345,0.39297903,0.14023417,-0.05220716,-0.41068873,0.4687886,0.02193451,0.912869,0.085759364,0.06058469,-0.037698466,-0.67027885,0.3005354,-0.24657416,-0.29249904,-0.41072357,0.13492332 +162,0.37274933,-0.14908953,-0.5775996,-0.2080876,-0.41959056,-0.036410023,-0.23649965,0.29752514,0.34050658,-0.118486054,-0.17378642,-0.077227004,0.08184986,0.4491599,-0.055149443,-0.72288173,0.0019783655,0.21359462,-0.832589,0.50875205,-0.537858,0.22941287,0.15197115,0.43927062,0.009764,0.34102675,0.13842623,-0.16038746,-0.048810072,-0.040802136,-0.17946644,0.21668513,-0.71096665,0.12546398,-0.12256646,-0.32212144,0.17468818,-0.4421705,-0.24365206,-0.83425176,0.072504684,-0.901887,0.6017763,-0.22323309,-0.15300614,-0.11592419,0.22211027,0.32534167,-0.39312667,-0.038723163,0.18524344,-0.39333412,-0.2515463,-0.33609626,0.057892848,-0.5874586,-0.36383173,-0.024092672,-0.6606666,-0.2183199,-0.2902668,0.13401847,-0.400225,-0.023560004,-0.195543,0.41650406,-0.43015158,0.04723733,0.22579987,-0.3309546,0.22325392,-0.54790086,0.03467679,-0.064230256,0.46342385,0.14441101,-0.29298154,0.52251786,0.38381317,0.4982598,0.4951653,-0.3991225,-0.06039604,-0.13739923,0.03481609,0.2726414,-0.25864202,-0.28623277,-0.16891113,0.04000724,0.33420002,0.34208614,0.011397393,-0.21765544,0.006054185,0.06644293,-0.26245815,0.58238155,0.64808196,-0.34200636,-0.31449062,0.27591762,0.6768416,0.29369158,-0.25155792,-0.03661292,-0.14235945,-0.52628386,-0.26520625,0.028568523,-0.17422025,0.47834387,-0.21844834,0.022157649,0.96169317,-0.14555593,-0.16438456,0.042682808,0.081331015,-0.20804304,-0.27648914,-0.09063656,0.21334597,-0.60997766,-0.0004402717,-0.27718046,0.7536373,0.16292973,-0.61503613,0.3273379,-0.6086479,0.12218742,-0.15152965,0.7089891,0.88888085,0.6232128,0.41805777,0.899465,-0.3272608,0.12615487,-0.13752271,-0.611536,0.16430274,-0.33550674,0.12720607,-0.48346832,0.1845607,-0.20362803,0.09781659,0.11953714,0.37922862,-0.7285076,-0.023963396,0.2943122,0.7124012,-0.3318713,-0.18829629,0.6812101,1.0075215,0.9034275,0.003513686,1.2987764,0.39700064,-0.21030119,0.26090264,-0.2712431,-0.6610968,0.23298594,0.42780444,0.25413826,0.23066439,0.050603013,-0.09120839,0.5473246,-0.4785066,-0.06432261,-0.058506127,0.40443859,0.11012946,-0.19699176,-0.50355947,-0.1432196,-0.035518385,-0.0034911314,0.19737393,0.30871058,-0.2860444,0.36660463,-0.043357987,1.1317179,-0.028835285,-0.034112427,-0.05282086,0.63364005,0.43255964,-0.024897592,0.032767225,0.56907773,0.512831,0.021904852,-0.647345,0.33416045,-0.3117715,-0.5178131,-0.15055594,-0.48044688,-0.115233816,0.058396712,-0.38791284,-0.17418927,-0.05830046,-0.14439702,0.43157896,-2.5463312,-0.29825532,-0.012312881,0.34039372,-0.21980648,-0.15268026,-0.05729335,-0.5353641,0.26976046,0.23831746,0.5822028,-0.6799374,0.60349154,0.56363857,-0.6523704,-0.16213408,-0.75787175,-0.013035615,-0.08256877,0.5798674,0.08819364,-0.14506386,-0.2992345,-0.08503929,0.85930187,0.016359108,0.18810923,0.4904629,0.30794507,-0.07292388,0.5471235,-0.00028525194,0.6708258,-0.23058882,-0.324958,0.41369435,-0.11580066,0.19069912,-0.16106577,0.03529925,0.65646243,-0.22111578,-1.0408913,-0.58384854,-0.24232174,1.0284861,-0.58604556,-0.6737699,0.22592953,-0.089385174,-0.06419449,0.14324807,0.53469175,-0.048454467,0.22544555,-0.6410485,0.22993034,0.06817318,0.2684765,0.0503831,0.0189009,-0.2823707,0.882841,-0.12431439,0.5620626,0.09973359,0.33997175,-0.18049425,-0.38722613,0.13916938,0.73022133,0.3710455,-0.028918149,-0.115272455,-0.40595996,-0.015262151,-0.21892545,-0.0319779,0.67603874,0.7346255,-0.06682642,0.10354088,0.35641566,-0.15613209,-0.026297962,-0.2079077,-0.32678694,-0.022274856,0.16801134,0.5892609,0.8050451,-0.11517207,0.5290553,-0.30291185,0.42835972,0.02402062,-0.83944577,0.7822807,0.72809863,-0.38838437,-0.060261257,0.6596127,0.48790935,-0.41978008,0.5114323,-0.72638476,-0.35323197,0.64955455,-0.12192817,-0.48412374,0.20501085,-0.07465884,0.14611872,-0.8573271,0.34783515,-0.25005153,-0.5034126,-0.36006296,-0.123306945,-3.6989005,0.13975126,-0.22953075,0.05294017,-0.4087011,-0.21164484,0.3284413,-0.552437,-0.45427603,0.04431827,0.34392738,0.60220283,-0.12620792,0.11390459,-0.26443446,-0.25965998,0.0001976808,0.254281,0.07997753,0.2259736,-0.2670893,-0.4951709,0.04829484,-0.0211285,-0.62546885,0.14254206,-0.73502594,-0.44047138,-0.15990232,-0.5842787,-0.2681374,0.6727334,-0.40577596,0.06040678,-0.38411236,0.2166162,-0.17318091,0.15559778,0.0035748442,0.20671003,0.20115252,-0.018611105,0.068971395,-0.34834108,0.35551548,-0.112283446,0.41097102,0.05054973,0.041173343,0.09212985,0.60350746,0.6248473,-0.3174299,1.1091641,0.47448316,-0.09770434,0.30629498,-0.20229219,-0.45123816,-0.76868427,-0.45944166,-0.13237487,-0.49271873,-0.39702594,0.07530734,-0.26276857,-0.8555114,0.7211924,0.028333457,0.36495855,-0.03171884,0.41125652,0.58829373,-0.26553473,-0.10565035,0.014836278,-0.29951864,-0.6107668,-0.2083522,-0.6400058,-0.56050473,-0.112458296,0.9008966,-0.31261098,0.033082105,-0.16008724,-0.22653061,0.06687162,0.066552736,0.11785095,0.33887103,0.6601624,-0.10480948,-0.6638501,0.44365862,-0.17177577,0.009340908,-0.4522437,0.26083508,0.5784171,-0.8819149,0.586183,0.32760426,0.079635754,0.0016408762,-0.46642736,-0.31149292,-0.09508297,-0.23598306,0.6637282,0.14490296,-1.0037733,0.72618455,0.29663345,-0.5218453,-0.7350513,0.28503808,-0.36015156,-0.13269857,-0.09495583,0.3128632,0.21170953,0.0034355521,-0.26731557,0.05883391,-0.43957472,0.30757946,0.24449587,-0.14410387,0.33144256,-0.11336157,-0.33169767,-0.87930095,-0.19017999,-0.5189182,-0.27764854,0.214976,-0.07229454,-0.15392184,0.18990894,0.1708964,0.40847617,-0.23961347,0.10767707,0.049840022,-0.38075924,0.39451855,0.6297013,0.2718465,-0.41671133,0.5550095,0.16337703,-0.21433279,0.029472891,-0.02018861,0.42769888,0.090504065,0.48296902,-0.13100514,-0.07736151,0.305799,0.78589857,0.085447386,0.518851,0.0037977297,-0.06409427,0.44638252,-0.019821225,0.2357314,-0.061787143,-0.5483247,-0.022869706,-0.15616061,0.10117838,0.6278104,0.38793486,0.25913402,0.20275244,-0.22424752,-0.006166192,0.08623998,0.02413707,-1.3924923,0.37490195,0.346104,0.87256926,0.27628013,0.13638227,-0.27206296,0.82863843,-0.19356129,0.07707569,0.3598575,0.03104372,-0.3969249,0.8234387,-0.82639694,0.3932566,-0.22208509,0.027689178,0.28593123,0.15837483,0.34079903,0.9821297,-0.39201647,0.06142044,-0.09481656,-0.14301507,0.11885885,-0.3898568,-0.08062411,-0.3622801,-0.50012326,0.5920729,0.27821887,0.3981253,-0.38296425,-0.058987655,0.029771296,-0.22875571,0.17786066,-0.05956485,-0.0597694,0.042844705,-0.504979,-0.19739936,0.60375625,0.0818652,0.29486814,-0.24412526,-0.20140958,0.14064822,-0.17482908,-0.1553785,-0.04857952,-0.55885863,-0.103194766,-0.099041745,-0.5972749,0.5850697,-0.23434146,0.09219447,0.19003859,0.026770897,-0.22254448,0.23828362,-0.013457409,0.8910802,0.08925327,-0.2896624,-0.43604693,0.0538595,0.20709231,-0.23741437,0.102180146,-0.40290934,-0.12464228,-0.4769886,0.55780387,-0.31117517,-0.48636863,0.33277923,-0.273754,-0.06441371,0.51049775,-0.049750637,-0.17741083,0.18474266,-0.1500454,-0.27356103,-0.1492397,-0.22962798,0.236086,0.13115364,-0.047117434,-0.14869693,-0.36777732,-0.046311595,0.5486811,-0.011543524,0.24664932,0.1565066,-0.027218437,-0.14784451,0.122634694,0.3520846,0.46531487,0.10096493,-0.023607353,-0.2621051,-0.445793,-0.30159757,-0.012070068,0.03801828,0.24295826,0.038595937,-0.28530064,0.9285523,0.11967882,1.3659271,-0.01082542,-0.4169716,0.07505606,0.5794016,-0.16781637,0.1351487,-0.34201142,0.7877351,0.4377203,-0.08668299,-0.01074725,-0.6219035,-0.097097225,0.38258642,-0.36748248,-0.04219156,-0.07638118,-0.6633011,-0.46851674,0.24823213,0.23269469,0.1862614,-0.0023047766,-0.034132473,0.12392252,0.003391695,0.44996542,-0.55945027,-0.3221485,0.26535898,0.27357668,-0.23922509,0.11408119,-0.3655591,0.5063908,-0.7517394,0.12886469,-0.44414538,0.07896564,-0.28739282,-0.21200013,0.08883904,-0.18093835,0.41814613,-0.28978428,-0.4350149,-0.048810005,0.5572536,0.08042122,0.04648783,0.7753915,-0.2744983,-0.052369613,0.2001011,0.46114308,1.206331,-0.46266204,0.033701602,0.30678454,-0.45980483,-0.5578488,0.5412219,-0.31877723,-0.021236528,0.0027895847,-0.47360352,-0.4411096,0.26197046,0.15145995,-0.0028424123,0.07261516,-0.6117382,0.009047016,0.40201828,-0.2507353,-0.10300309,-0.16390909,0.49956927,0.7006063,-0.29103354,-0.34467456,0.14384049,0.406487,-0.2969628,-0.55709594,-0.09609859,-0.29288405,0.41892055,0.11805216,-0.34362686,0.024171174,0.21358617,-0.5885324,0.07209239,0.27678353,-0.29319033,0.21512076,-0.16542183,0.023733588,0.8266936,-0.22218771,0.05706105,-0.6817038,-0.4796863,-0.9790184,-0.35182866,0.17098351,0.19668826,-0.002531286,-0.4807816,0.0071543334,-0.09195555,-0.22476664,-0.0063143414,-0.61499906,0.40345705,0.10407792,0.5357545,-0.32404187,-1.044505,0.21021229,0.12496236,-0.030297805,-0.669347,0.5939958,-0.20453276,0.83369243,0.10977246,0.067335576,-0.019205637,-0.33016667,0.14889288,-0.3609429,-0.18203184,-0.77507144,0.053614616 +163,0.6292888,-0.21912135,-0.617364,-0.07918981,-0.20058526,0.15333,-0.13463734,0.55934215,0.181387,-0.39364845,-0.047735654,-0.08098186,0.041444853,0.4035684,-0.056205682,-0.7179426,0.13075064,0.18773319,-0.35875404,0.4360347,-0.50943077,0.55410165,0.05348026,0.33736217,0.09935953,0.41454977,0.111945674,-0.05542648,-0.39010593,-0.14493014,-0.19429909,0.10579102,-0.38943797,0.016959438,-0.0059578693,-0.42157668,0.13509728,-0.49740285,-0.29468125,-0.6166221,0.26051593,-0.66882044,0.50985026,0.09173302,-0.30098847,0.19122204,-0.11140985,0.5098095,-0.2902913,0.0527734,0.05141461,-0.011755316,-0.09556429,-0.34946826,-0.14040503,-0.41662738,-0.52491707,0.0393126,-0.33108428,-0.24525264,-0.19470796,0.19486189,-0.32870367,-0.120319724,0.044221282,0.3949517,-0.33631736,0.06769446,0.21940754,-0.16482352,0.07328625,-0.5617534,-0.1701575,-0.19722691,0.32056683,-0.3087477,-0.19187516,0.17357342,0.2692815,0.38127992,-0.03987089,-0.21799248,-0.3909618,-0.062837966,-0.03728868,0.66464573,-0.1981388,-0.42049736,-0.17533812,0.044438343,0.0700053,0.15288304,0.26678723,-0.024353137,-0.09252282,0.022113167,-0.28179806,0.4062363,0.45818457,-0.3478822,-0.27614915,0.38176334,0.5778817,-0.09277497,-0.055725493,-0.1312733,-0.030676642,-0.4890062,-0.21798423,0.0825504,-0.094796345,0.5202021,0.04846608,0.331198,0.624459,-0.1719413,0.15689836,0.10968247,0.0807757,0.03644711,-0.1318407,-0.19433378,0.19284412,-0.46334055,-0.0084156925,-0.12438571,0.7884121,0.40357393,-0.68382615,0.3253358,-0.45582756,0.078454204,-0.1265177,0.3476506,0.56184155,0.4651653,0.1580115,0.7529181,-0.38696864,0.09919362,-0.12757653,-0.3503079,0.01713513,-0.104339965,0.04325936,-0.5174389,0.033210192,0.14129478,-0.26181298,0.29494816,0.24089387,-0.5695041,0.015033121,0.19016589,0.841879,-0.35787666,-0.25088325,0.68850905,0.97817576,0.816314,-0.06943534,1.0255148,0.3304498,-0.25590557,0.34045812,-0.6574182,-0.5403564,0.22573234,0.4653146,-0.23807529,0.3917298,0.108315125,-0.08363632,0.31186244,-0.11970731,0.04795356,-0.1499193,0.033938333,0.07865851,-0.14163737,-0.44037226,-0.36830473,-0.17314993,-0.07229764,0.20384741,0.2924714,-0.32086328,0.29883295,-0.12852775,1.6407783,0.043003634,0.11839212,-0.12219122,0.56582296,0.22930656,-0.23441933,-0.2489149,0.30672714,0.19796436,0.09568807,-0.49402413,0.17667256,-0.11224585,-0.49451125,-0.1674837,-0.2918362,0.08055861,-0.027658127,-0.34845352,-0.099700086,-0.013005917,-0.23812301,0.47205576,-2.7451136,-0.2898863,-0.02735072,0.3945232,-0.35571325,-0.52423775,-0.0888162,-0.50556964,0.21761295,0.3757861,0.5513519,-0.59030265,0.25995594,0.31796154,-0.49369532,-0.29120085,-0.62726754,0.0020065515,-0.009565504,0.2055607,-0.05632999,-0.10429907,-0.18728025,0.084234014,0.37672174,-0.23331454,0.050216056,0.19063601,0.36636484,0.12582181,0.35128534,-0.023352917,0.6476282,-0.2256948,-0.26509976,0.2749287,-0.484283,0.24815209,-0.12402375,0.12358076,0.3477486,-0.45890078,-0.927219,-0.6187379,-0.07364155,1.0697516,-0.11807136,-0.13924974,0.18299682,-0.26760533,-0.24473524,0.0007714675,0.40722895,0.11471284,-0.21926737,-0.55448663,-0.026935687,-0.12869719,0.1394507,0.008260993,0.041932162,-0.42132473,0.5058498,-0.028542547,0.4093665,0.099751346,0.26996586,-0.14912131,-0.27619034,-0.052276988,1.1083909,0.34024063,0.12138872,-0.25166303,-0.25959882,-0.48395458,-0.017596245,0.09089971,0.41312492,0.7600699,-0.06445934,0.06789554,0.17249082,0.00037789805,0.089699596,-0.012900431,-0.26493087,-0.073125936,-0.025043506,0.60917383,0.41457888,-0.07706876,0.6817722,-0.06170015,0.3587565,-0.19908723,-0.39298117,0.50630313,0.88988197,-0.12717803,-0.19655964,0.59105754,0.4012822,-0.27700043,0.43320405,-0.69193375,-0.30840498,0.39894226,-0.24216785,-0.1652879,0.20156255,-0.21620448,0.091906995,-0.9152208,0.2625981,-0.1922006,-0.55532545,-0.35697377,-0.01715077,-3.8424401,0.21555105,-0.10437334,-0.20262067,0.21363515,-0.13796273,0.06552032,-0.6623313,-0.3332526,0.27651125,0.13603976,0.9163503,-0.017972915,0.12505868,-0.17061864,-0.3306522,-0.25121853,0.16873609,0.105148464,0.31392986,0.013082848,-0.36883026,0.010330713,-0.24368133,-0.45870897,0.09932061,-0.6714375,-0.52899927,-0.22448635,-0.6973822,-0.20579635,0.7840065,-0.3332427,0.15592676,-0.20631978,0.07098453,-0.09473337,0.3363691,-0.048627477,0.05917178,0.18545881,-0.14515401,0.19546072,-0.4226119,0.31093693,0.24923475,0.46706152,0.2710736,-0.1443773,0.3212868,0.7477691,0.6516931,-0.05689365,0.64592034,0.42177922,-0.20385943,0.27696377,-0.2671111,-0.13833128,-0.2957692,-0.4673947,-0.1229065,-0.31463417,-0.4215026,-0.14624897,-0.41905886,-0.756287,0.5115091,-0.052697293,-0.038939126,0.009341331,0.5330498,0.4754184,-0.27860877,-0.040883202,-0.10858722,-0.03546382,-0.41566402,-0.1550017,-0.43181616,-0.43987608,0.2948087,1.1281912,-0.36063978,0.041241705,-0.022717811,-0.05449218,-0.10973089,0.015914798,0.100172944,0.05677636,0.32543832,-0.26995307,-0.5939666,0.3805205,-0.3803344,-0.23834637,-0.47958025,0.18900444,0.5872239,-0.6988313,0.41155478,0.37709582,0.16232245,0.09698674,-0.3307319,-0.19802779,0.18473212,-0.21473378,0.16657485,0.15768605,-0.7658516,0.34108675,0.3463092,-0.3784987,-0.6907165,0.5342008,0.018099526,-0.42782417,-0.1995127,0.26325092,0.22262827,0.07450242,-0.35200155,0.08217724,-0.33966562,0.15822905,0.32113713,0.010701931,0.31887025,-0.26878273,-0.17201763,-0.6334285,0.07007844,-0.3345736,-0.3038773,0.15879947,0.14581051,0.26323506,0.26434013,0.3285689,0.3356416,-0.43623108,-0.03132615,-0.040239904,-0.30731753,0.36859566,0.2675367,0.39157206,-0.45606777,0.42757818,0.018466474,-0.10100362,-0.11174083,-0.1706883,0.5619628,0.05103124,0.22595006,0.1259698,-0.40127885,0.2804913,0.68606305,0.2168684,0.3586233,0.13823815,-0.12749356,0.018215932,0.034383368,0.020526996,0.33722836,-0.53706986,0.029654361,-0.060908813,0.09102027,0.5018374,0.21199319,0.115717694,-0.052334983,-0.37391442,0.09850487,0.04025926,0.047928937,-0.99259984,0.4283283,0.12632881,0.76192737,0.29742026,0.08490988,-0.13511768,0.6041045,-0.17483161,0.17392427,0.20672153,-0.1965314,-0.47183764,0.41326934,-0.60298353,0.65221727,0.027563035,-0.010745484,-0.05559369,-0.2986012,0.5404944,1.0067432,-0.215396,0.12038079,0.023885492,-0.28424546,-0.037643116,-0.28775322,-0.07439472,-0.88912815,-0.14678194,0.74879867,0.2732251,0.34761566,0.05655428,0.031033155,0.17983331,-0.09104518,0.15889801,-0.08494894,0.22606799,0.1131423,-0.57919556,-0.2150299,0.57298636,0.13789815,0.076530986,-0.029729664,-0.08193051,0.20754282,-0.2167266,-0.11669457,-0.032569844,-0.5863446,0.011532366,-0.4356087,-0.47103554,0.4182973,0.09137245,0.28654793,0.20287389,0.15309078,-0.12734683,0.63365275,0.3207493,0.840427,-0.06072641,-0.2069614,-0.42069796,0.35249293,0.20554018,-0.25622666,0.054215625,-0.3351661,0.14081761,-0.71902055,0.4645655,-0.018634938,-0.37414882,-0.0077653984,-0.08068074,0.09383726,0.426558,-0.24718626,-0.071703106,-0.004021901,-0.18135135,-0.25343135,-0.035809003,-0.18472078,0.27631316,0.20044161,-0.21576402,-0.06272346,-0.12297856,0.14557588,0.4373214,0.05751522,0.336751,0.2827381,0.2087012,-0.21637455,-0.21117753,0.084192835,0.5468447,-0.1625688,-0.121919304,-0.51254606,-0.31488168,-0.42515692,0.2593311,-0.04737081,0.28319123,0.1050484,-0.13251303,0.7092994,-0.048213705,1.3447577,-0.0045008566,-0.3354974,0.07904853,0.44289833,-0.062224165,0.05580341,-0.48391458,1.1769178,0.37527034,-0.08464019,-0.16893265,-0.42884332,-0.17825292,0.22773787,-0.27851284,-0.1652486,0.011723823,-0.5695234,-0.38217682,0.27682117,0.17975214,0.23378108,-0.04600714,0.31215265,0.25151312,0.003429876,0.05529563,-0.4876168,-0.124604955,0.4318377,0.35460573,-0.0041101393,0.13155106,-0.5037762,0.3682737,-0.579207,0.057662275,-0.21229497,0.07307459,-0.017944088,-0.428778,0.35480568,0.24095583,0.31984502,-0.3454777,-0.44390252,-0.22930211,0.51682705,0.12262495,0.14090155,0.44062537,-0.2028908,-0.042043798,-0.16115616,0.4718424,1.0524287,-0.14118725,0.0336145,0.5480751,-0.32466623,-0.64303344,0.20853226,-0.16160539,0.21137646,-0.12110167,-0.099826165,-0.6055965,0.43540287,0.2756874,-0.07065329,-0.0060144113,-0.38292944,-0.23416933,0.17786625,-0.3669879,-0.3286844,-0.3116539,0.31417355,0.76753724,-0.269412,-0.34100708,0.14305955,0.33611885,-0.13506773,-0.29413667,-0.11874248,-0.2684823,0.28471777,0.09348909,-0.25733843,-0.26178864,-0.04459536,-0.35106483,0.2585603,0.22817132,-0.39606076,0.07093099,-0.34447938,-0.16658527,0.90045726,-0.019871086,0.2189587,-0.48666894,-0.42168742,-0.73445964,-0.5343808,0.4423408,0.090283565,-0.09334923,-0.5396607,-0.02954592,-0.10124007,-0.19409624,-0.046123743,-0.3907843,0.29373348,-0.0060454747,0.30029958,-0.067095526,-0.94018817,0.03855894,0.18702802,-0.45757276,-0.65369856,0.33330745,-0.19873825,0.9801621,0.10397398,0.04377514,0.50667644,-0.42391175,-0.106889725,-0.31210372,-0.0730274,-0.7505208,0.17502767 +164,0.45358515,-0.10009475,-0.5656888,-0.0207193,-0.48828596,0.2853031,-0.19544183,0.31378615,0.37675506,-0.2802462,-0.10328959,0.009893582,-0.2831957,0.1812461,-0.06793665,-0.58016914,0.03673986,0.275194,-0.7217652,0.25572607,-0.35795063,0.46445194,0.010973563,0.39946195,0.23076898,0.08419769,-0.18101457,0.1520345,-0.07042003,-0.075153045,0.10810225,0.20658422,-0.678208,0.39577022,-0.1276351,-0.3236285,-0.14751408,-0.33170366,-0.31490055,-0.8261551,0.16659483,-0.83179826,0.64237916,-0.16542329,-0.49246517,-0.27286962,-0.119922295,0.41645497,0.014323037,0.07968461,0.38439962,-0.41448084,-0.20665497,-0.29528564,-0.20168446,-0.5155973,-0.5727035,-0.040535346,-0.42884922,0.06998412,-0.19280021,0.4608674,-0.26485136,0.008944105,-0.23346265,0.36082655,-0.37900624,0.24023694,0.25773716,-0.21460447,0.08793734,-0.6731313,-0.12572226,-0.09184476,0.18578623,0.113312684,-0.29447377,0.13412954,0.21958223,0.42027366,0.11880873,-0.29529434,-0.16766526,0.16201688,0.057341855,0.43420908,-0.2630255,0.21454008,-0.17549564,0.02551962,0.6049052,0.14776835,-0.026074711,-0.3440447,0.0885634,0.004120368,-0.015800172,0.33798265,0.5643826,-0.25932595,-0.12808381,0.35775083,0.5496323,0.2103913,-0.23933929,0.40411523,0.06473175,-0.42938274,-0.03947967,0.20090213,0.06550299,0.53350854,-0.018720526,0.13721544,0.7187321,-0.15100731,-0.064128354,0.13720943,0.2651196,0.119759664,-0.09619979,-0.0894767,0.21353754,-0.4946814,-0.072557226,-0.11737059,0.66338754,0.029425321,-0.6589204,0.35543472,-0.49132,-0.12752137,-0.0428165,0.5189675,0.88363105,0.6218077,-0.029720208,0.8609693,-0.29891083,0.008209994,0.0042878618,-0.2510409,0.17531072,-0.29013854,0.15374827,-0.54202116,-0.13975519,-0.21628413,-0.19864625,0.014964127,0.45774847,-0.59121174,-0.24013421,0.07455459,0.62397724,-0.35261235,-0.05713072,0.83577704,1.058127,0.8065782,0.104123004,1.3058956,0.47825262,-0.12728713,-0.15144004,-0.21997349,-0.50756973,0.15526797,0.114266105,-0.16076007,0.2443611,0.2574069,-0.071493015,0.562997,-0.40937108,0.106199704,-0.1045136,0.032097127,0.048721615,0.0055767754,-0.49461836,-0.32191512,0.25595978,0.19468364,0.05617525,0.2061819,-0.3927178,0.43160036,0.20817715,1.1064839,-0.11495161,-0.026226869,0.0061491085,0.16782573,-0.026033968,-0.34903806,-0.19670318,0.06989002,0.3923554,-0.075605534,-0.32479703,0.025685182,-0.19651844,-0.24253973,-0.2784525,-0.11454511,-0.11046284,-0.24844693,-0.54187137,-0.32804033,0.2500505,-0.35007337,0.42394596,-2.3043542,-0.36068404,-0.120046906,0.37373126,-0.12933896,-0.45043182,-0.36259115,-0.45216852,0.0633514,0.23190314,0.26166865,-0.5400029,0.6229845,0.3805399,-0.53661186,-0.16170223,-0.7237346,-0.05165948,0.06345277,0.30337682,0.033951707,-0.18864653,-0.23833476,-0.09264811,0.53400993,-0.24885607,-0.10528713,0.5217908,0.48721212,-0.079591185,0.27475485,0.22508186,0.6971738,-0.3161895,-0.39267606,0.5033608,-0.45778197,0.20791999,0.09971524,0.14492492,0.43368372,-0.2567733,-0.80285746,-0.7379363,-0.3456931,1.2463269,-0.27663738,-0.463331,0.08328794,-0.23880683,-0.4803592,0.011279345,0.6456761,-0.10762049,-0.009756098,-0.7465562,-0.37157404,-0.0268896,0.3546929,-0.11432159,0.040268227,-0.3792076,0.7431028,-0.23384564,0.41395587,0.30255514,0.28197986,-0.05607558,-0.46958902,0.11595004,1.0414908,0.47436062,0.17683183,-0.31676757,-0.02837944,-0.10797815,0.08894549,0.003827737,0.6710652,0.576321,-0.07128433,0.029235266,0.30916497,-0.24433678,-0.037640512,-0.3001336,-0.30570602,-0.14090055,0.18875368,0.57702637,0.6625475,0.15652464,0.4640396,-0.1974335,0.16751412,-0.0738549,-0.5706626,0.33076245,0.63810974,-0.1601882,-0.340782,0.48958042,0.32897028,-0.33356413,0.23177265,-0.54697365,-0.3633858,0.40626156,-0.09792752,-0.5290784,0.1781943,-0.37773794,0.17108342,-0.64037263,0.60076654,-0.19260004,-1.0350425,-0.6726374,0.05936603,-2.8164582,0.19588616,-0.14656152,-0.032222006,0.02586126,-0.26613158,0.23948081,-0.49753934,-0.4440146,-0.038156085,0.12194652,0.60909665,-0.08449177,-0.06420083,-0.22441825,-0.39741832,-0.0946836,0.2938107,0.34600976,0.16447379,-0.119594336,-0.37865293,0.18059112,-0.3768009,-0.40441513,-0.11519731,-0.9136861,-0.8228799,0.04207961,-0.42330173,-0.18695402,0.7989695,-0.5623688,0.018923957,-0.39626738,0.031001357,-0.03231339,0.43144894,0.12541161,0.13323347,0.11347279,0.0015523159,-0.26523808,-0.35254982,0.27583554,0.11250631,0.37056458,0.5178982,-0.12671508,0.29364672,0.6927491,0.7146057,-0.07137316,1.0105121,0.33059472,-0.104262225,0.15998939,-0.036645044,-0.23843323,-0.5801908,-0.17743716,-0.0014769778,-0.6362695,-0.2273535,0.030046202,-0.2954481,-0.82050353,0.3904235,-0.013914949,0.058076657,0.10620002,0.3176012,0.5358915,-0.0374417,-0.021650888,-0.15371895,-0.18090095,-0.27630478,-0.63840735,-0.5374132,-0.80397826,0.08783564,1.7252586,-0.15100704,0.24572028,0.22012821,-0.44139525,0.13275456,0.16574635,0.06583131,-0.08461191,0.6026801,-0.19425505,-0.6397399,-0.009447777,-0.30307648,0.05513514,-0.661178,0.1611796,0.9205522,-0.79140854,0.49840733,0.27883655,0.16500425,-0.14092566,-0.4289038,-0.3101071,0.0045852205,-0.3481796,0.5349836,0.24569577,-0.5513412,0.3467706,0.08122607,-0.13292804,-0.66005635,0.36791292,-0.120132975,-0.1464014,0.09524027,0.44883904,-0.14069185,-0.1166427,-0.019023212,0.24718864,-0.33214283,0.33993357,0.17868103,-0.16576713,0.14586946,-0.10573853,-0.08767645,-0.6889379,0.020508941,-0.42803985,-0.5558336,0.13703884,0.15673052,0.1995311,0.46352932,0.30118397,0.44599965,-0.20900251,0.036388583,-0.2915561,-0.4428218,0.34883383,0.49900267,0.40037042,-0.34873602,0.43261895,0.06070792,0.12827669,-0.12407081,0.1415783,0.5648316,0.12817416,0.40822676,-0.21599147,-0.014577155,0.0962217,0.85392153,0.07513675,0.54543376,-0.017358629,-0.25221002,0.122088775,0.079397015,0.15165378,-0.15280443,-0.45647705,0.022214446,-0.17057052,0.24816039,0.41639173,0.08504018,0.30259532,-0.27108005,-0.353728,0.23185815,0.09016887,0.18240365,-1.4197527,0.31855088,0.26649377,0.75066686,0.08400922,0.18607989,0.05338568,0.50455165,-0.15674114,0.14920703,0.36160824,0.05083449,-0.17055526,0.3933463,-0.77064615,0.4524421,-0.14491734,-0.04803972,0.24590476,0.057034392,0.2949062,0.9110749,-0.18674096,-0.009857333,-0.0007238732,-0.24493164,-0.12241382,-0.36910936,0.30298382,-0.7549356,-0.45453852,0.78850675,0.6353362,0.34437352,-0.3718259,0.057238657,-0.05555539,-0.24628983,0.31604326,-0.13123679,-0.06687018,-0.14086999,-0.5362535,-0.03316696,0.50869024,-0.2126313,-0.18644479,0.13988152,-0.09532745,0.21815266,-0.062141165,0.0026827203,-0.09768367,-0.81751543,-0.061848722,-0.59962475,-0.4928366,0.21784931,-0.2226608,0.10318077,0.21605545,0.13787113,-0.24083072,0.49648842,0.30004406,0.96245515,0.174927,-0.15470658,-0.20329443,0.2247707,0.227343,-0.29052156,-0.12072719,-0.2835956,0.41329157,-0.53497535,0.2979426,-0.34824687,-0.346704,0.15980506,-0.047517262,0.059382815,0.389331,-0.20235835,-0.21252455,0.23497511,0.019530836,-0.31756973,0.117755964,-0.32607636,0.09471241,0.2253075,-0.2700903,-0.040944245,-0.23399456,-0.19130427,0.13469759,0.23539144,0.2976438,0.62199557,-0.0043620467,-0.30917087,-0.02866491,0.022973308,0.6451967,0.08228995,-0.1981124,-0.45614764,-0.20331813,-0.22863165,0.55466884,-0.041196052,0.2535985,0.060205117,-0.4148266,1.0006881,0.079292044,1.1610125,0.08364691,-0.39345983,0.083328925,0.45281413,-0.016638359,0.021339925,-0.4941035,0.9281653,0.59423995,-0.14828683,-0.12917587,-0.2709831,-0.28247148,0.41856745,-0.2692813,-0.11417646,-0.21147543,-0.9210171,-0.123208046,0.24026981,0.394747,-0.0985251,-0.012116993,0.056182083,0.22935636,0.0016044424,0.16346763,-0.5991784,0.16443355,0.29107362,0.41110766,-0.19126275,0.3159367,-0.31689167,0.37927085,-0.8898974,0.113151036,-0.46693036,-0.026018668,-0.103256,-0.32152045,0.27885333,0.15630354,0.37456387,-0.42846906,-0.14979957,-0.37934443,0.6081707,0.11550064,0.17457184,0.7383033,-0.18151195,-0.22268619,-0.038854208,0.24967283,1.1756176,-0.18605913,0.07963769,0.42179185,-0.2420254,-0.52649856,0.21543609,-0.47019857,0.0686651,-0.0742245,-0.41778266,-0.23282348,0.39130336,0.21821326,0.011852851,-0.10419785,-0.5209593,0.23711866,0.43713185,-0.30439165,-0.22682479,-0.28977606,0.3434536,0.51845926,-0.25006503,-0.4072551,-0.20196377,0.6570338,-0.35616648,-0.3708723,0.08731813,-0.4156183,0.25399634,-0.024230016,-0.49595183,-0.13349344,0.08879871,-0.466582,-0.03251581,0.39122704,-0.41242072,0.07301282,-0.049303368,0.122086324,0.9189405,0.02411437,0.2272032,-0.54953605,-0.58734596,-0.8429663,-0.46111506,-0.1482591,0.5694876,-0.1763466,-0.5500404,-0.119011715,-0.27047026,-0.15140446,0.02678277,-0.5441404,0.41121277,0.26244605,0.65892726,-0.3055306,-1.1225471,0.034431048,0.22790122,-0.3393882,-0.39823526,0.5171979,-0.20583676,0.7790461,0.020538999,0.17269771,-0.08902314,-0.56082207,0.419033,-0.28957394,-0.07306288,-0.881229,-0.060627773 +165,0.461215,0.0055605024,-0.49027207,-0.12481381,-0.23001638,0.088598534,-0.40340257,0.38803548,0.18748686,-0.47494024,0.07220159,0.061663583,-0.014450991,0.35423514,-0.35761958,-0.52846956,0.14790633,0.08594297,-0.5107253,0.54171485,-0.34591156,0.28791696,-0.051966563,0.40139198,0.077102914,0.31622624,0.22249955,0.0019990727,-0.055876844,-0.30461857,-0.07171753,0.15783468,-0.53847563,0.20764229,-0.29652023,-0.22671747,-0.054394666,-0.42475322,-0.36758777,-0.6493199,0.12858707,-0.6097897,0.6938538,0.018055797,-0.29397807,0.19482344,0.16885188,0.2342905,0.02918461,-0.056940556,0.14319362,-0.29420477,-0.20507959,-0.2580159,-0.3173694,-0.4953485,-0.546713,0.05460766,-0.571173,0.06308415,-0.23384446,0.23921195,-0.20655814,-0.024771139,-0.024295427,0.5367365,-0.26609945,0.047073103,-0.053315155,-0.18089554,0.23297837,-0.6010169,-0.2676076,0.1029006,0.28710073,-0.13378878,-0.19441843,0.3082216,0.15539452,0.49372283,-0.058161914,-0.22604261,-0.37594894,-0.044301413,0.049026966,0.60615236,-0.24985075,-0.3154624,-0.18689474,-0.115855895,0.42406082,0.17063296,-0.0052896813,-0.4249668,-0.08778638,-0.1738285,-0.18451917,0.46196395,0.5794126,-0.19297603,0.11086699,0.36550438,0.3069939,0.07078442,-0.18776071,0.13609271,-0.121284425,-0.45238099,-0.14311154,-0.029461298,-0.1464977,0.47249258,-0.0645252,0.35845298,0.4803487,0.009221643,-0.12856957,0.15660739,0.1289973,0.1121241,-0.17896622,-0.26097217,0.22651,-0.6118009,0.05290245,-0.17112763,0.6595916,0.058936108,-0.98187846,0.3953691,-0.47638637,-0.020155512,0.117785156,0.41038048,0.6560335,0.5559405,0.08880861,0.7529259,-0.46046197,0.122742824,0.03610878,-0.29453114,-0.02301985,-0.16980228,-0.028126441,-0.5171869,-0.0029635932,0.11184895,-0.07543782,0.16111997,0.4095857,-0.4248361,-0.09818874,0.2636002,0.68608975,-0.22024857,0.016850585,0.830329,1.1233023,0.9242915,0.15070458,0.96695423,0.042623702,-0.12810284,-0.106817804,-0.0057824478,-0.6260047,0.3083899,0.3581661,-0.060750484,0.35607314,0.084176846,-0.035345454,0.23235977,-0.34178346,-0.3198924,-0.083955415,0.27729347,0.0592661,-0.11540061,-0.38505915,-0.30138987,0.15607712,-0.077977344,0.14556515,0.24133357,-0.2166961,0.4388338,0.2836121,1.2591617,-0.06396006,0.13667567,0.21075305,0.36976025,0.3143893,-0.1727637,-0.1912901,0.24818888,0.28897387,0.18232775,-0.43859175,-0.04176671,-0.24419384,-0.5335931,-0.1816072,-0.20112303,-0.28140378,-0.04058276,-0.41474557,-0.2575692,-0.07829158,-0.4475846,0.4805798,-2.8786287,-0.103126466,-0.14204372,0.37841833,-0.09226794,-0.3899881,-0.16887721,-0.44461757,0.5879971,0.3274891,0.39181313,-0.5471904,0.2589252,0.5649334,-0.4261679,-0.20278941,-0.54792845,-0.053423535,0.034188606,0.38124627,0.10398161,-0.29344448,0.11021835,0.24372335,0.4910189,-0.15860945,0.18360204,0.25290886,0.30342576,-0.07166024,0.3003899,-0.08572467,0.52026063,-0.4087203,-0.18991008,0.3409757,-0.41942278,0.027255202,-0.13015443,0.13995871,0.53468645,-0.44713452,-0.76238525,-0.52686435,-0.09028271,1.1309017,-0.13254362,-0.49184537,0.22001399,-0.1387473,-0.48562112,0.078841366,0.35791957,-0.21706176,0.11772084,-0.68149453,-0.048415605,-0.15041578,0.15324047,-0.092060134,0.06683062,-0.46152475,0.61649966,-0.10064764,0.62676346,0.40344822,0.28666347,-0.35771826,-0.4225461,0.019121157,0.8830461,0.48566943,0.15859959,-0.15814225,-0.1113701,-0.15176961,-0.27865967,0.07657747,0.6357499,0.61970633,-0.08878747,0.07777631,0.27247006,0.1096128,0.16554391,-0.18316144,-0.35068476,-0.13968855,0.05338967,0.619308,0.6077983,-0.06603173,0.2936589,-0.00042080972,0.2895816,-0.18276945,-0.40712315,0.47203797,0.7558744,-0.1575978,-0.39301935,0.6011203,0.36009267,-0.08162261,0.43891695,-0.59721625,-0.5747599,0.44505486,-0.06287373,-0.43681258,0.2874081,-0.25679788,0.20992629,-0.6388793,0.40005428,-0.2773594,-0.5926572,-0.4619745,-0.22442901,-2.8760195,0.1195357,-0.16989553,-0.16804364,-0.21350467,-0.23012792,0.22003703,-0.56351066,-0.5923691,0.11279637,0.025181673,0.6537365,-0.13451752,0.06869084,-0.16321614,-0.45817515,-0.35710943,0.20312902,0.08571464,0.35340804,0.06752148,-0.23053625,-0.117848516,-0.22461572,-0.42201185,0.04030681,-0.5841911,-0.44141418,-0.16156694,-0.4790116,-0.283464,0.65972716,-0.43130583,0.072870985,-0.36515394,-0.04808816,-0.10438751,0.25284088,0.08352959,0.15089087,0.124462985,-0.027106397,0.0338292,-0.33655673,0.19655791,-0.027120491,0.12492269,0.5057918,-0.107706204,0.15826336,0.4122495,0.7334489,-0.28239813,0.8971015,0.32459202,0.010661991,0.3264964,-0.21826673,-0.4142541,-0.46556404,-0.31494543,0.13275263,-0.36951023,-0.3034837,-0.1025557,-0.3461375,-0.7129144,0.5538503,-0.020120889,0.15045306,-0.10351948,0.19716722,0.266002,-0.26939934,-0.18200986,-0.020972107,-0.15019396,-0.39370143,-0.37571707,-0.65764195,-0.44568092,-0.09275987,0.9475087,-0.066933244,-0.03643801,0.2650271,-0.10490282,0.13430464,0.11304818,0.19283387,0.17457557,0.3311418,0.057967726,-0.73836833,0.40552303,-0.30740535,-0.22093122,-0.46992934,0.17872995,0.67335844,-0.5270494,0.4360773,0.49699652,0.20670307,-0.25784516,-0.61264753,-0.056566317,0.054622494,-0.20126756,0.55325484,0.25867406,-0.87146956,0.6021573,0.2823521,-0.29144648,-0.7078275,0.41636539,0.13101494,-0.076785356,0.018062837,0.43989214,-0.016561564,-0.10393414,0.03914208,0.14962167,-0.32647172,0.36848032,0.21493536,0.0060575604,0.4372763,-0.25848305,-0.13781382,-0.7026447,-0.110521205,-0.49341595,-0.34526467,0.10650478,-0.022804076,0.025555491,0.037277747,-0.15523085,0.44348267,-0.42252684,0.17029643,-0.17811218,-0.26511872,0.2637245,0.50373447,0.48753378,-0.24950713,0.5489863,0.0069030076,-0.022279762,-0.16093835,-0.010617018,0.47510582,0.1436137,0.28238633,-0.09528702,0.040590327,0.13290213,0.65672106,0.25780585,0.29898834,0.03581939,-0.26300567,0.15237606,0.07982001,0.16378754,-0.047453366,-0.4929269,-0.025438666,-0.29558122,0.07930196,0.5097193,0.0338073,0.33862603,-0.1853686,-0.14128521,0.050803136,0.19601001,-0.13045591,-1.6823537,0.41929603,0.2045429,0.7571254,0.4126302,0.13226189,-0.064563096,0.74656427,-0.05971707,0.046710953,0.26118624,0.13383694,-0.18964216,0.45403346,-0.72266793,0.3681982,-0.027711209,-0.016159125,0.09927784,-0.02299475,0.36355957,0.79297227,-0.15460852,0.110971615,0.042384293,-0.24756952,0.081122845,-0.36724472,0.07301877,-0.24197939,-0.28639352,0.7757262,0.3247375,0.3622863,-0.23425564,0.0031746335,0.10439362,-0.14047348,0.17245422,0.04374798,0.05738561,-0.18876745,-0.44023877,-0.096057855,0.5591279,0.04326675,0.10782876,0.20351346,-0.18933041,0.25124872,-0.017515115,0.13340925,0.04720982,-0.6483666,-0.0020228904,-0.35730228,-0.35718834,0.3614485,-0.16198486,0.20118691,0.25209397,0.1383332,-0.23356129,0.20803417,0.31353116,0.68293554,-0.034757502,-0.072111115,-0.13183254,-0.027466653,0.21595411,-0.22305804,-0.059449814,-0.43056068,0.093034506,-0.5631409,0.22803465,-0.084556535,-0.18458243,0.23819116,-0.028582849,0.12809202,0.47763607,-0.14306358,-0.12746455,0.05087648,0.10224417,-0.17622799,-0.32436204,-0.21973628,0.10449594,0.16139475,-0.09386093,-0.03266557,-0.11063138,-0.2563708,0.21783192,0.032748807,0.42032152,0.40915182,0.18585053,-0.3186341,0.15958029,0.05207544,0.5694254,0.15147462,-0.07709649,-0.16953057,-0.41946557,-0.23500124,0.1940633,-0.14281999,0.07782637,0.19105159,-0.19084525,0.6832473,-0.06172827,0.97080564,-0.022196982,-0.3323593,-0.031228414,0.4083091,-0.08763066,0.05038792,-0.27961713,0.9789452,0.5149599,-0.039430946,-0.07221113,-0.30329582,-0.104628876,0.12864208,-0.30472022,-0.12572883,-0.022983385,-0.5276004,-0.22542723,0.102666155,0.15040386,0.05449661,-0.14447048,-0.11400059,0.3093156,0.14461799,0.2622509,-0.5239035,0.08478476,0.37474102,0.19274412,-0.041865215,0.12773056,-0.46362323,0.30081567,-0.3958412,0.034885023,-0.3969278,0.056649655,-0.1832674,-0.24525115,0.17174101,-0.051200807,0.4041458,-0.23579955,-0.36893255,-0.13525176,0.35142204,0.13250951,0.12570968,0.51811165,-0.13518181,0.007268451,0.009317674,0.46802324,0.93141466,-0.34456176,0.08058385,0.4102552,-0.24977756,-0.5465688,0.00037063845,-0.50071466,0.1011217,-0.064989954,-0.17551044,-0.30667013,0.13494575,0.21393707,0.16413465,-0.02256209,-0.6155392,-0.18442088,0.41373774,-0.23400632,-0.1771115,-0.19080564,-0.0013719238,0.58731484,-0.2715718,-0.3265406,0.0145061165,0.24982536,-0.14303213,-0.6779033,0.1510978,-0.33606246,0.27833128,0.2820742,-0.29287112,-0.19354245,-0.029166933,-0.48000985,0.16287477,0.23992363,-0.3019353,0.015544337,-0.30213267,-0.046466462,0.72703683,-0.18511629,0.36898082,-0.4562468,-0.5129887,-0.82226306,-0.3578544,-0.018672764,0.2004716,0.11487543,-0.6798891,-0.14342044,-0.24563876,-0.13312441,-0.024050586,-0.36664534,0.39547783,0.1871248,0.52243346,-0.234862,-0.84949625,0.19953483,0.1503737,-0.13184908,-0.5104841,0.45088452,0.10107021,0.71553695,0.1620543,0.045084354,0.116280764,-0.62277293,0.1969398,-0.19675061,-0.10162543,-0.60227287,0.11968541 +166,0.39369264,-0.08314272,-0.526419,-0.10113599,-0.28313416,0.04484219,-0.3553973,0.16933636,0.28351724,-0.39976308,0.02198157,-0.25418502,0.057408016,0.17993023,-0.07357582,-0.6549996,0.018059453,0.16336857,-0.5441927,0.6094166,-0.30529234,0.27228615,0.12673862,0.09758693,-0.13680308,0.23478438,0.27572352,-0.21595182,-0.0042387927,-0.20183706,0.0533724,-0.22576134,-0.7971126,0.36114082,-0.3204901,-0.23905851,0.23982742,-0.38957277,-0.42254356,-0.6936843,0.032588977,-0.8479276,0.5864139,0.009944677,-0.22093031,0.35778525,-0.08306389,0.2611491,-0.12233633,0.06976171,0.2801601,-0.30666617,-0.42573422,-0.31393793,-0.18591632,-0.5219331,-0.52750623,-0.09250818,-0.59867805,0.111649625,-0.44290558,0.13214093,-0.2922511,-0.025081566,-0.12162485,0.39569846,-0.3735167,0.18137206,0.1342346,-0.1916239,0.35735896,-0.44466332,0.0071914964,-0.18839535,0.1127581,0.09722175,-0.14937408,0.33452517,0.11009847,0.39134064,0.03182509,-0.25716844,-0.27901378,-0.097195365,0.28506038,0.40328285,0.15875949,-0.16383521,-0.06923882,-0.123804055,0.00465906,0.1079235,-0.0432749,-0.38320524,-0.053346355,-0.076370455,-0.48331672,0.51147157,0.47653618,-0.33459142,0.111684695,0.36449096,0.4481587,0.03582508,-0.165961,0.111335576,-0.16979994,-0.4333866,-0.29427686,0.19841377,-0.18220465,0.4855399,-0.18812847,0.13898872,0.691206,-0.1874754,-0.40695825,-0.02732707,0.09047957,0.08434434,-0.07165575,-0.17246342,0.47278184,-0.692344,-0.032795902,-0.43250102,0.8497227,0.07076029,-0.8983634,0.40687442,-0.509837,0.07012677,-0.15918495,0.68069094,0.7000027,0.71923035,0.094017975,0.792456,-0.5428864,0.2261536,-0.10389893,-0.6046496,0.33897614,-0.19396129,0.21119848,-0.4375743,-0.11315305,-0.054767005,-0.16286948,-0.08340715,0.5166102,-0.17990054,-0.15379761,0.10532228,0.7204115,-0.37834534,-0.069256544,0.67821723,1.0463269,0.8680253,0.2441632,1.1419262,0.3551138,-0.17783216,-0.14626023,-0.05023271,-0.8772636,0.14393319,0.29991278,0.42521635,0.13085032,0.1842351,0.013316044,0.23652335,-0.29866388,-0.18710054,-0.1935244,0.4969038,-0.119159706,-0.1436588,-0.3158381,-0.24791251,0.16280365,0.08367886,0.1594117,0.34421915,0.09351456,0.46720073,0.25737792,1.2995918,0.06692127,0.051418014,0.07156328,0.47062302,0.40452403,-0.022309154,-0.21658644,0.33711722,0.29553375,0.033816416,-0.5752471,-0.014979912,-0.15465753,-0.46109655,-0.21572943,-0.3029558,0.09547717,-0.10821229,-0.10351952,-0.19231747,0.1327962,-0.40345907,0.52898484,-2.500071,-0.06506001,0.01841999,0.33977443,-0.044302814,-0.24026032,-0.072642915,-0.5988321,0.5167643,0.4578136,0.60700715,-0.5182015,0.38828918,0.61891043,-0.61120975,-0.011200173,-0.6129155,-0.04136507,-0.2926409,0.3761937,0.06817822,-0.17191133,-0.14678761,-0.029256007,0.5702694,-0.041072093,0.19816984,0.3952271,0.3124556,0.082799636,0.48152804,0.027527574,0.36053416,-0.3604146,-0.16145173,0.2331179,-0.20997111,0.19519098,-0.33014637,0.06803983,0.39764056,-0.5224339,-0.8023424,-0.43143648,-0.08503842,1.1811781,-0.45587876,-0.47248775,0.2949534,0.0068284743,-0.15373364,0.10246378,0.45597595,-0.15662637,0.099138215,-0.61600924,-0.008809353,0.11775363,0.24169931,0.027507106,0.09190511,-0.42748564,0.6955721,-0.053420592,0.4584141,0.5114047,0.08906471,0.042493243,-0.3811492,0.27776557,0.7589593,0.1201904,0.24976437,-0.44189787,-0.2068543,-0.14054972,-0.20163189,-0.015670663,0.47555223,0.6458469,-0.14997146,0.057040017,0.30398956,-0.26428702,0.030312976,-0.17689729,-0.47434995,-0.12866299,-0.079740755,0.48011607,0.9056409,0.08148716,0.25669885,0.072242856,0.37895605,0.03915419,-0.5154262,0.6027454,0.6602084,-0.10710603,-0.19844326,0.45456192,0.5021514,-0.16654839,0.5318485,-0.4478061,-0.5205914,0.35752943,-0.020111902,-0.53100187,0.28661865,-0.34389392,0.15793668,-0.7427945,0.27544218,-0.30841064,-0.5946833,-0.46311146,-0.07207174,-3.3548093,0.15030332,-0.12582287,-0.027225902,-0.05373907,0.0072783134,0.2711881,-0.21129522,-0.5117292,0.28402424,0.27919072,0.4568081,-0.19834249,0.07111096,-0.26713032,-0.21975717,-0.4298016,0.35225466,0.17478916,0.10259835,-0.13233072,-0.4668732,-0.11775661,-0.3884192,-0.2938166,0.040184624,-0.48202464,-0.1875293,-0.24250293,-0.40217972,-0.5500576,0.6992679,-0.3346326,0.011923502,-0.19387709,0.03426135,0.025505945,0.2758835,-0.11555389,0.054387566,0.0127289975,-0.0575254,-0.16584301,-0.26503038,0.26650524,0.018663555,0.25438252,0.2998541,-0.041280907,-0.12763833,0.6675733,0.54009336,-0.028807959,0.8553912,0.30205494,-0.049882475,0.41320434,-0.14616993,-0.38944918,-0.71554565,-0.11837769,-0.3528177,-0.4217284,-0.32445017,0.1867787,-0.4103997,-0.7664698,0.57936954,0.18230799,-0.15003134,0.090427205,0.2702191,0.34407786,-0.08937175,-0.1101619,-0.1411476,-0.24687044,-0.56099266,-0.29908305,-0.8088347,-0.4056293,-0.0022699663,0.94034636,-0.09771399,-0.19391586,0.02736279,-0.19025643,0.1978044,0.22438528,-0.07479275,0.31026062,0.5755977,0.28684536,-0.7282321,0.5594832,-0.14071573,-0.10853153,-0.6527065,0.21751407,0.53613234,-0.88957185,0.28578123,0.5886564,0.026612435,0.04462732,-0.64269733,-0.29364094,0.076848865,-0.21230112,0.4285593,0.08745966,-1.0550631,0.59694535,0.14983256,-0.3127975,-0.7485887,0.3808671,-0.029661315,-0.27506799,0.1235144,0.28877825,-0.079323545,0.045937426,-0.41231894,0.050191432,-0.42377594,0.32807952,0.005858496,-0.14230622,0.39792866,0.04351592,-0.1297755,-0.82660925,-0.21927224,-0.39906004,-0.22611347,0.22399496,-0.08187179,0.1325929,-0.03477336,0.2316972,0.41926268,-0.168425,0.106250234,-0.3038965,-0.34369326,0.505969,0.45909277,0.27947357,-0.4500557,0.6611101,-0.13547157,-0.09955168,-0.12749067,0.12790738,0.3734629,0.0945657,0.38747188,0.23978604,-0.089303136,0.034886446,0.7980791,0.25581363,0.43024182,0.22491762,-0.16923456,0.49160823,0.018120037,0.23874307,-0.04802044,-0.43929705,0.012810268,-0.19051729,0.1100872,0.4084329,0.105270244,0.5367226,-0.25313735,-0.14343251,0.008703564,0.22818191,0.27271226,-0.8430442,0.40013474,0.22618687,0.5253304,0.7441969,-0.02366851,0.10757654,0.79829216,-0.21855442,0.12423967,0.15802982,-0.11258144,-0.38697046,0.4416195,-0.6080939,0.27632627,-0.091580115,-0.09408386,0.31401268,0.06223441,0.46857738,0.92990357,-0.098665394,0.18876453,-0.083046876,-0.28570998,0.12814413,-0.2571502,-0.017340302,-0.33024678,-0.44251785,0.6217634,0.27138656,0.45378226,-0.22379597,0.0022342673,0.07466864,-0.26100716,0.3052078,0.007839685,-0.31897712,0.03235495,-0.5714035,-0.26273373,0.60781187,0.15320192,-0.03332034,0.19233383,-0.018288722,0.30406472,-0.07562507,-0.13899752,-0.09229641,-0.59667414,0.04693492,-0.26502863,-0.3468699,0.71727866,-0.075761,0.30067712,0.06526876,0.020981712,-0.30017623,0.13707022,0.26282918,0.64310175,0.14719306,-0.24695201,-0.22335222,-0.13906178,0.20513694,-0.3993608,0.018428138,-0.28211424,0.022559008,-0.7995084,0.33924457,-0.35873723,-0.28986564,0.052604567,-0.2584141,-0.046312902,0.5585541,-0.2185313,-0.19562136,0.13431601,0.05205047,-0.20581412,-0.28649083,-0.4040205,0.023132866,-0.05460905,-0.08913828,-0.007852162,0.015765121,0.022926718,0.51798487,0.07734668,0.13117395,-0.074401625,0.11849751,-0.46560302,-0.10442662,0.088605165,0.5086559,0.047584828,-0.11049902,-0.18354861,-0.20981176,-0.24764216,-0.00043825168,-0.033736296,0.24443579,0.09357741,-0.3206171,0.7534438,-0.07142163,0.80248296,0.042428695,-0.30029815,0.2091373,0.6007642,0.13670874,0.04279675,-0.33764377,0.7863188,0.55877596,-0.2460959,-0.12689427,-0.627626,-0.06861388,0.0537746,-0.24493702,-0.16585243,-0.047645364,-0.6331542,-0.1840277,0.11938916,0.17961256,0.009424448,-0.10762954,0.14667809,0.14545536,0.3277423,0.23198676,-0.45005557,-0.016148666,0.36671373,0.20042464,0.015369415,0.16009493,-0.37742832,0.37092748,-0.51251394,0.113467135,-0.3158771,-0.07153437,-0.06064495,-0.16934215,0.16656382,0.03635079,0.31294912,-0.27281293,-0.5689512,-0.19616978,0.40260532,0.31727237,0.4211223,0.7349023,-0.24469687,-0.029443193,-0.03556567,0.5894326,0.906154,-0.35359907,-0.03832295,0.4852763,-0.2964048,-0.49534157,0.26711437,-0.24798019,0.2620721,-0.007671088,-0.3116278,-0.38820463,0.14044778,0.0073840404,-0.2011045,0.22223225,-0.6493593,-0.041036576,0.25178418,-0.21684782,-0.19643469,-0.2894723,-0.037403725,0.7853578,-0.2393073,-0.3795299,0.038059745,0.0071997386,-0.33821958,-0.37717924,0.039353907,-0.31987095,0.28132102,0.2425057,-0.20805109,0.046201535,0.28500846,-0.653365,0.14459786,0.1952749,-0.3250473,-0.010059531,-0.4048695,0.083281144,0.86742544,-0.2385401,0.14242509,-0.32833678,-0.65916675,-0.8601102,-0.24094994,0.34592023,0.13775924,-0.03682649,-0.29688993,-0.04305436,-0.10176088,-0.088193126,-0.04090378,-0.5568703,0.3987407,0.026072178,0.51981944,0.037888944,-1.0965236,0.25971967,0.13694558,-0.46824512,-0.5181202,0.35562667,-0.2427017,0.79642487,0.08452242,0.11685824,0.1491141,-0.7728706,0.25583562,-0.2924571,-0.105737574,-0.4115596,0.023894956 +167,0.4229245,-0.33900726,-0.67501605,-0.2750705,-0.18961425,-0.09248219,-0.21503587,0.46021196,0.20505045,-0.6631212,-0.02758957,-0.32037318,-0.034669053,0.49122688,-0.12125749,-0.66042525,-0.025119878,0.18649612,-0.5861128,0.7585775,-0.45908108,0.24873066,0.3132606,0.25421575,-0.108100064,0.11576781,0.0960465,-0.116196156,0.23703896,-0.017156558,-0.06602627,-0.001439547,-0.5285574,0.102466896,0.1506523,-0.49804497,-0.020391317,-0.34179926,-0.25059164,-0.8197491,0.15058585,-0.8795147,0.6588596,-0.05139028,-0.4692085,-0.09497207,0.14594392,0.52736896,-0.27128544,0.116954714,0.14962767,-0.25783992,-0.4984555,-0.09900982,-0.32754958,-0.6253851,-0.809697,-0.2993411,-0.50521696,-0.034129903,-0.2979705,0.08634434,-0.42013073,0.074801534,-0.23721695,0.44371673,-0.5497272,-0.04275712,0.17700964,0.07535928,0.5741072,-0.79022425,-0.00068869715,-0.26700315,0.14434063,-0.0063828123,-0.37153742,0.23930931,0.36193955,0.7484951,0.07524988,-0.15444589,-0.25028992,-0.12818168,0.025801767,0.3839504,-0.09811501,-0.31648755,-0.20334913,-0.12762304,0.48940238,0.34406665,0.031597313,-0.47406188,-0.0074116886,-0.019412108,-0.3652154,0.26734924,0.5254888,-0.31791034,-0.12126379,0.25016937,0.59765935,0.114040375,-0.23106383,0.1700316,-0.035250243,-0.5812941,-0.21048619,0.22503094,-0.17794369,0.692041,-0.10950592,0.12572123,0.44869283,-0.055571783,-0.18088831,-0.20948035,0.0040762345,-0.15344511,-0.07603559,-0.5308989,0.42682543,-0.59837246,0.13100304,-0.49199197,0.7998673,0.08369989,-0.87596184,0.30290824,-0.57086813,0.15814422,-0.27888137,0.78415966,0.824601,0.704735,0.14478363,0.68941367,-0.4427884,0.123886675,-0.12689146,-0.290138,0.27293184,-0.16019934,0.3502448,-0.49940732,-0.23427248,-0.03219966,-0.33398396,0.011404777,0.8271202,-0.6031876,-0.1453198,0.08492572,0.5380011,-0.41177952,0.07174936,0.62204236,1.1539009,0.99954486,0.282987,1.3088535,0.5274621,-0.38626748,0.21945424,-0.06323603,-1.0015427,0.21431008,0.36077407,-0.16392007,0.3312088,0.11065929,-0.04893714,0.61825037,-0.6189132,-0.043895215,0.01868273,0.24030055,-0.2741377,-0.17483388,-0.560885,-0.26027903,-0.11035884,0.17037362,-0.07657986,0.43169966,0.0037468076,0.51222533,0.31776702,1.3876259,-0.1841202,-0.05079701,0.079898186,0.2935078,0.05582739,-0.2951928,-0.07804596,0.09447327,0.69521695,-0.02033064,-0.8574263,0.16932918,0.00203901,-0.3883527,-0.29032686,-0.3094114,0.10118062,-0.34639728,-0.3567191,-0.25676093,-0.041961767,-0.61714673,0.3619438,-2.128794,-0.19869636,-0.15132815,0.44790432,-0.18629013,-0.23440348,-0.05605184,-0.49627483,0.5116038,0.4273992,0.45496777,-0.6624757,0.5182199,0.66710526,-0.53675723,0.122397445,-0.94645464,-0.4042557,-0.070906155,0.23169738,-0.049787845,-0.32888523,0.28130764,0.24013701,0.40061834,0.017109936,0.16829218,0.37341717,0.44909078,0.00951627,0.6685612,-0.12547944,0.6179482,-0.38842687,-0.09092291,0.17962141,-0.06574119,-0.10652029,-0.34166613,0.20129348,0.49866918,-0.7092054,-0.8351007,-0.34600604,-0.3145582,1.0622833,-0.47831288,-0.47508323,0.39014375,-0.24485861,-0.20231777,-0.13321614,0.60067666,-0.09811917,-0.17580439,-0.8986234,0.056771126,-0.03754561,0.32852936,0.06167033,-0.0076464335,-0.6558462,0.4799511,-0.16215748,0.7147065,0.7366182,0.21703881,-0.08083312,-0.67962694,0.07645312,0.92369485,0.38673097,0.13738824,-0.3385763,-0.025772762,-0.24744608,0.10492038,0.13785104,0.27944586,1.0523502,-0.21610104,0.089255616,0.23149137,-0.4113616,0.0508374,-0.13430232,-0.61743003,-0.106432274,0.14694592,0.5827055,0.4860965,0.0062835068,0.5220147,-0.0987001,0.17845382,-0.15625082,-0.5702221,0.5487764,1.0032296,-0.26985043,-0.117077015,0.8320194,0.543733,-0.28488973,0.65413916,-0.62325287,-0.2124125,0.5558704,-0.0065068128,-0.42876807,0.3588698,-0.40434244,0.22849241,-1.3099297,0.20532876,-0.38672245,-0.7310388,-0.7525131,0.18519054,-2.8418047,0.3642501,-0.3114615,-0.19522533,-0.031542588,-0.20851618,0.47233045,-0.69540185,-0.72443825,0.34085453,0.22833766,0.5873079,0.08730702,-0.2118867,-0.38869902,-0.23366413,-0.18225275,0.21645862,0.25463966,0.15554295,0.0028955883,-0.64871264,0.086164266,-0.05972315,-0.29133657,-0.0502247,-0.64941144,-0.34715068,-0.29283407,-0.6369045,-0.46622828,0.86725885,-0.35494015,0.009524584,-0.2691271,-0.021875888,-0.017042678,0.46868974,-0.20771174,0.10647816,0.013478225,0.01367023,-0.03984603,-0.20012955,-0.19599663,0.20242411,0.10126689,0.25185448,-0.2612575,0.061838564,0.89021343,0.7765679,0.15114976,1.070968,0.8406427,-0.103613116,0.28244394,-0.26917624,0.010018148,-0.694304,-0.3288167,-0.33883238,-0.53235537,-0.58445466,-0.01488756,-0.25634897,-0.8230696,0.8098642,0.03921838,0.28632805,0.3133937,0.32276392,0.40056542,0.16145462,0.053255584,-0.35756725,-0.29166645,-0.5474319,-0.18081237,-0.8835363,-0.56081146,0.24113876,1.555497,-0.2185799,0.0066283885,0.09302483,-0.42321613,0.2723563,0.32691643,0.10188799,0.3651553,0.370726,0.16725592,-0.70466703,0.39560908,0.015215798,-0.070154935,-1.0385374,0.19038516,0.8426908,-0.8866789,0.16989523,0.29310653,-0.050010398,-0.3369095,-0.64272326,-0.23889925,0.16597113,-0.28541774,0.29786846,0.23412134,-0.7056185,0.5193732,0.24182779,0.0104880845,-0.9165882,0.6727652,-0.05182838,-0.33582625,0.30631292,0.30253875,-0.020799326,0.13774556,-0.5313528,0.2842991,-0.40691134,0.30959472,0.3731395,-0.16231944,0.26324904,-0.14515379,0.21991014,-0.9650891,0.03616083,-0.70965236,-0.06750761,0.4852656,0.10937424,0.30708927,0.26645595,0.21071194,0.33313015,-0.41603917,0.066538475,-0.22733675,-0.665009,0.602034,0.5524794,-0.033263005,-0.3019326,0.7637096,-0.12929754,-0.090301596,-0.38771343,0.048990604,0.42074582,0.18945466,0.34344435,-0.13129878,-0.46218264,0.18237086,0.9700189,0.3536621,0.32149398,0.19700502,0.1560337,0.4586903,0.27815565,0.041650962,-0.024918836,-0.36234948,0.03611332,-0.067560226,0.19402274,0.5237181,0.16006474,0.56582457,-0.26818094,-0.18706504,0.0035153737,0.060090028,-0.024577769,-1.1909022,0.6970129,0.15771121,0.37050602,0.9325376,0.12259648,-0.04710631,0.44691676,-0.50207037,0.08222672,0.41008055,0.2667266,-0.23143263,0.70598793,-0.8149095,0.35372815,-0.11212135,0.070964,0.06067762,0.15804686,0.5512939,1.1229583,-0.18415004,0.09282147,-0.094334796,-0.1819038,0.29427463,-0.39044,-0.29579723,-0.43226948,-0.5272464,0.69560486,0.07632855,0.5947829,-0.15238793,-0.12626354,0.2056181,-0.16972272,0.54383755,0.053904857,-0.041379824,-0.105011374,-0.56238693,-0.16132864,0.5877771,-0.14556505,0.025523055,0.12435425,-0.35723406,0.2504057,0.019469483,-0.19914562,0.05513337,-0.6947157,-0.1166034,-0.5926471,-0.4020879,0.70832545,-0.34522903,0.33478045,0.1650024,0.08790261,-0.20162684,0.1611319,0.15929909,0.7248272,0.09277826,-0.2696739,0.038020875,-0.23114003,0.2545661,-0.352283,-0.05562972,-0.074165724,0.05230039,-0.6995508,0.38384283,-0.1556564,-0.34579825,0.35579747,-0.23353286,-0.04515535,0.3685526,-0.3284095,-0.0042397217,0.22337785,-0.16616707,-0.028317945,-0.66379714,-0.23571625,0.14561242,-0.43326628,0.34409198,-0.1437898,0.019982368,0.03856791,0.60838914,0.21658182,0.16105895,0.5018064,0.30863363,-0.30971825,-0.07720936,0.041683093,0.48902476,-0.20213844,-0.28601244,-0.5367193,-0.4919307,-0.3304579,-0.17292944,-0.07443908,0.45912582,-0.17142032,-0.50776917,1.0458783,0.101685636,1.0316621,-0.17281355,-0.59807223,0.0062827873,0.44028103,0.01430408,-0.095151186,-0.21999793,0.85872537,0.69570905,0.071867846,-0.32718122,-0.5251494,-0.2452765,0.40220147,-0.24192776,-0.36907613,-0.043452162,-0.79718167,-0.31382638,0.3116239,0.22350918,0.04419547,-0.13319188,0.4593515,0.28920302,0.10669717,0.36805785,-0.6350504,0.15945436,0.23630069,0.084186554,0.16738331,0.19896737,-0.28781036,0.12223124,-0.66524047,0.15286131,-0.3522286,-0.044100057,0.2064328,-0.2508198,0.24020915,0.09539965,0.29624537,-0.112024374,-0.20188767,-0.06861765,0.80371934,0.0054140333,0.2987579,1.012911,-0.28842655,0.038410608,0.05895044,0.6767754,1.5282971,-0.21585733,0.005125815,0.22468868,-0.5478556,-0.5244749,0.32138908,-0.23132715,0.21014981,-0.015983336,-0.3936784,-0.6062487,0.045026835,0.15948011,-0.40967092,0.08727629,-0.3263334,-0.52248645,0.25284764,-0.52942455,-0.19644456,-0.44419166,0.15257551,0.64721245,-0.47697422,-0.15310708,0.01397523,0.35286844,-0.24075331,-0.53058565,-5.888939e-05,-0.3685311,0.2423247,0.29926676,-0.5164912,0.14684677,0.10507567,-0.59190977,-0.086331345,0.17667541,-0.4209491,-0.046729077,-0.50337845,-0.06949783,1.0801822,-0.060223937,-0.071334645,-0.5319769,-0.6781177,-0.68862087,-0.4584732,0.62039566,0.1264337,0.025612561,-0.6980645,0.1898758,-0.10340361,0.09928811,-0.037808593,-0.36500585,0.48374176,0.20886189,0.4435404,-0.12981261,-0.96209335,0.2578571,0.048319396,-0.024793733,-0.40587595,0.7253868,-0.06563046,1.0060216,0.21695946,0.11960424,0.13491227,-0.73167634,0.29810998,-0.20492953,-0.37759352,-0.7966803,-0.12080395 +168,0.4506901,-0.18685599,-0.5604207,-0.04072779,-0.2873871,0.08050411,-0.15121374,0.2895683,0.26725337,-0.298647,-0.28244624,-0.05244891,-0.16176,0.15843931,-0.2177053,-0.8569763,-0.06911363,0.2786169,-0.79661787,0.6774946,-0.28032112,0.37690818,-0.08777364,0.43194935,0.3507025,0.21355076,0.001934584,0.17686187,-0.10862188,-0.060578655,0.23834404,0.21042562,-0.3900215,0.30404207,0.024192035,-0.4214136,-0.13847241,-0.16217996,-0.54029936,-0.71971947,0.4014746,-0.5606444,0.6853284,-0.17508915,-0.2636565,0.11348777,0.07523993,0.2700611,-0.09112729,0.0798485,0.12198598,-0.08940484,-0.13268378,-0.20443055,-0.12185461,-0.32766995,-0.6285646,0.08618562,-0.21192113,0.10864104,-0.29342568,0.33014277,-0.26936227,-0.17843652,0.033262692,0.6838092,-0.4434037,0.24085078,0.09555736,-0.09736455,0.15554056,-0.7633921,-0.18589588,-0.05801362,0.14148246,-0.08925138,-0.24219428,0.35325202,0.23478957,0.3633885,-0.0026423573,-0.070223495,-0.38507944,0.027930005,0.31092775,0.51111394,-0.1918398,-0.27855533,-0.21848409,-0.081882715,0.18332878,-0.03944478,0.18000199,-0.46738866,-0.038921986,-0.16972104,-0.12590389,0.43315664,0.5875241,-0.22357877,-0.04643644,0.21109752,0.60645527,0.24850534,-0.31220895,0.19082107,-0.08414053,-0.47311223,-0.18617731,-0.020083357,-0.036733326,0.39810255,-0.26270455,0.17315458,0.41140467,-0.019855734,-0.09560133,0.15627146,0.14645134,0.1943868,-0.1419762,-0.27079707,0.28489748,-0.32062557,0.023594951,-0.21583627,0.5158904,-0.059835315,-0.73785627,0.3897819,-0.5035517,0.18882097,-0.03326698,0.42932364,0.89654756,0.5494087,0.2286916,0.7250782,-0.26758403,0.0932425,0.0070761126,-0.21001078,-0.0031593083,-0.18112348,-0.25899637,-0.5782595,0.10436353,-0.17630193,-0.11888883,0.18821925,0.68745875,-0.55058277,-0.09850205,0.13677579,0.7601775,-0.310329,-0.074626185,0.7556603,1.1051093,1.0355098,-0.018952202,1.2855303,0.32553163,-0.2164308,-0.116092876,-0.4470415,-0.76917493,0.2806236,0.20110124,0.00055090187,0.29139405,0.13544534,0.049175788,0.6438084,-0.5653442,0.09208746,-0.14379008,0.30190268,0.24238668,-0.18021907,-0.3286608,-0.02281042,0.1089977,-0.006359168,0.08473409,0.30473545,-0.18450995,0.52050364,0.05601406,1.4450259,0.045845076,-0.015575296,0.06527952,0.4226646,0.27754575,-0.21922256,0.037868787,0.14730212,0.3211914,-0.1058106,-0.38726914,0.05819267,-0.19803222,-0.46000487,-0.34151787,-0.15364598,-0.027979637,0.015986083,-0.3386606,-0.32140574,0.026031077,-0.34768203,0.42321813,-2.4974425,-0.12847215,-0.003623871,0.31916836,-0.17467387,-0.38162187,-0.1380207,-0.43972164,0.5028688,0.39787292,0.27831644,-0.5171347,0.42040318,0.54741615,-0.6069824,0.07856898,-0.48774394,-0.26062644,0.08481685,0.42706013,0.098836385,-0.0041149952,-0.004215779,0.27979797,0.3800414,-0.28748912,0.07848878,0.601245,0.32058278,-0.121856526,0.35534057,0.15422456,0.4860276,-0.23819119,-0.19211149,0.47830716,-0.4409538,-0.105399214,-0.09605323,0.16251473,0.4483897,-0.58759344,-0.81548405,-0.73099047,-0.010224919,1.0951059,-0.13024867,-0.44463772,0.2236522,-0.55422646,-0.4562655,0.12568586,0.390713,-0.28322694,-0.0908932,-0.93637884,-0.06346515,0.029551132,0.17700125,-0.058492444,-0.18201709,-0.52274925,0.7359908,-0.11982953,0.44627598,0.3476567,0.26720947,-0.41162536,-0.60595006,0.15665223,0.83628833,0.41904035,0.2230994,-0.34849685,0.0010137201,-0.2726112,-0.019432664,0.026403582,0.74037284,0.43505272,-0.07267036,0.17027004,0.20833167,-0.18333127,0.005258723,-0.32832068,-0.22452666,-0.16404864,0.15426487,0.59721947,0.80410826,-0.06844747,0.32882348,-0.05344161,0.27077356,-0.12859382,-0.5835431,0.4741358,1.2430363,-0.12483377,-0.41212857,0.57421315,0.32146734,-0.35730827,0.3666331,-0.5175871,-0.32930136,0.32918674,-0.20213555,-0.47285882,0.22981231,-0.47935548,0.27436596,-0.7373413,0.41184703,-0.27218515,-0.6829903,-0.7923965,-0.21927248,-2.699856,0.15785035,-0.16255121,-0.20543434,0.00027934313,-0.0985034,0.2366407,-0.4150655,-0.6181412,0.14528349,0.122177884,0.622366,-0.10339952,-0.006995074,-0.2228155,-0.24406092,-0.2725633,0.13439964,0.2674244,0.4036349,0.056387685,-0.5925653,-0.039211024,-0.21612908,-0.37842363,-0.018915253,-0.564956,-0.47112072,-0.12921134,-0.40524408,-0.3052059,0.5592724,-0.37072498,0.11208847,-0.38785505,-0.05816532,-0.041709915,0.29008913,-0.0015163899,0.3086788,0.09451454,-0.12964661,-0.016978212,-0.20032355,0.28149053,0.026752543,0.10862185,0.4007007,-0.24711232,0.23851338,0.4397593,0.79068834,-0.06549905,0.8568115,0.67456186,0.02826536,0.3594825,-0.2372317,-0.23631604,-0.45018852,-0.19460502,-0.03515742,-0.50945324,-0.38371196,-0.06016945,-0.41344678,-0.84317297,0.3907079,0.055344917,0.015063898,0.08259659,0.0263654,0.382095,-0.075689666,-0.07954613,0.0020101587,-0.16725999,-0.41272953,-0.38415283,-0.5758603,-0.63215446,-0.036934875,1.2350681,-0.069265254,0.049225695,0.0071793157,-0.37663117,0.06824842,0.45312753,0.070847146,0.18479179,0.2492188,-0.08154602,-0.6384016,0.30961242,0.0135345375,-0.18984821,-0.777889,0.33887655,0.6042546,-0.46626613,0.69694895,0.11869344,0.08285419,-0.17704137,-0.46636862,-0.08421458,-0.08212772,-0.36083743,0.65224373,0.27550218,-0.77470624,0.36081064,0.31997764,-0.14949757,-0.73283464,0.4649414,-0.070903346,-0.47909498,-0.03509056,0.36252648,-0.032214113,-0.06349039,-0.29502842,0.4163305,-0.31107077,0.3516021,-0.042323455,-0.017736562,0.26107332,-0.33133328,-0.21194172,-0.8050509,0.025396133,-0.7494355,-0.2248283,0.05966769,0.23025656,0.050499775,0.17675386,0.19481756,0.5336834,-0.14149386,0.08463161,-0.2653534,-0.35877183,0.13893466,0.42892864,0.3616918,-0.23500799,0.49012193,0.0066014924,-0.028554369,-0.13884738,0.21776411,0.4784952,-0.012263664,0.5181205,0.1537022,0.023031782,0.17031096,0.83130443,0.12611634,0.49257553,0.082682975,-0.42760515,0.12455165,-0.00700444,0.27135113,-0.24756306,-0.38327515,0.15350066,-0.07461263,0.28623885,0.48412952,0.038361542,0.34914058,-0.25886196,-0.54622036,0.044059515,0.22029267,0.13388465,-1.261864,0.22983462,0.2801719,0.9400834,0.64684,0.027047275,0.08961179,0.6291349,-0.20187952,0.1804912,0.28640863,-0.11329515,-0.36728752,0.18555275,-0.66877043,0.28636685,-0.06746138,-0.014270093,0.031055331,0.10027324,0.31833872,0.631292,-0.09854301,0.17540452,0.08904681,-0.3268339,-0.013286384,-0.30754316,0.2114182,-0.6242756,-0.29317617,0.7395276,0.6037123,0.31989262,-0.31604674,0.027946698,0.057233334,-0.16681808,0.21029395,0.08259661,0.037242077,-0.20331192,-0.62643343,-0.23005508,0.37851036,-0.09156459,-0.061961852,0.16362152,-0.16926424,0.11398499,-0.026688028,0.049055915,0.012015085,-0.6804343,0.030346863,-0.1864925,-0.2574615,0.56442845,-0.11210596,0.18563844,0.26699695,0.1679041,-0.5138957,0.43011147,-0.11713366,0.6114496,0.27219492,-0.08849514,-0.14207025,0.107627995,0.18377215,-0.23260196,-0.09380486,-0.25164768,0.12584561,-0.55757844,0.5309831,0.03310759,-0.33384547,0.21659908,-0.043361958,0.039273158,0.43714058,-0.17780396,-0.2628645,0.16558236,-0.103464685,-0.2474551,-0.07577847,-0.15524833,0.29874882,0.05131442,-0.08131029,0.022295343,-0.026784489,0.10558153,0.4613764,0.00034152268,0.37849107,0.52670556,-0.03772788,-0.6036997,-0.11438713,0.21525559,0.57973444,-0.13698754,-0.0061644954,-0.14344007,-0.5882972,-0.34572938,0.15779649,-0.093944296,0.24704543,0.09207668,-0.3661038,0.6556966,0.25008374,1.0688788,-0.046750896,-0.33697116,0.16613425,0.45791528,-0.00014923414,0.08698707,-0.4214288,0.78000844,0.6958944,-0.31163895,-0.185145,-0.2846941,0.07655837,0.093157984,-0.20489554,-0.09976683,-0.06588217,-0.672434,-0.25805634,0.14157702,0.19656359,-0.03871723,-0.08772082,0.07355436,0.19073036,-0.07378825,0.049348693,-0.38847452,0.15873255,0.267434,0.1951676,-0.06103829,0.17668322,-0.41632032,0.18028536,-0.4879065,0.0021709919,-0.095496856,0.078714505,-0.24255161,-0.4185961,0.293973,0.12201972,0.16584127,-0.38336653,-0.17423187,-0.3610702,0.4326425,0.08840346,0.18597198,0.51072115,-0.19039008,0.11441318,0.13521475,0.43326876,1.0859106,-0.23416182,-0.10237346,0.26725942,-0.4004678,-0.58639246,0.12634544,-0.34635586,0.1387234,-0.13652392,-0.2741197,-0.6542526,0.24527302,0.15756449,0.030239511,0.09337781,-0.6013168,-0.28061792,0.17244457,-0.3745204,-0.17293213,-0.22778429,-0.11988063,0.37898207,-0.30906853,-0.3158521,0.054941174,0.27652928,-0.34247595,-0.46846455,0.018247524,-0.47720322,0.341222,0.04674333,-0.39999703,-0.3096082,0.08834764,-0.4116589,-0.099053755,0.21115139,-0.38594002,0.05787366,-0.23337944,-0.14333053,0.7929717,-0.29346463,0.38455597,-0.4659541,-0.50202316,-1.146037,-0.26939213,0.41160545,0.33386937,-0.17528106,-0.9837298,-0.18107858,-0.28347814,-0.24125478,0.25101817,-0.32550174,0.5306778,0.119110845,0.35380393,-0.14242278,-0.8283419,0.05193255,0.23126838,-0.3977567,-0.5664772,0.4951262,0.07950557,0.87853485,0.03121459,0.17139983,0.12788756,-0.5959846,0.27665854,-0.1647136,-0.29797643,-0.3359446,0.07112409 +169,0.47664076,-0.34851676,-0.22067484,-0.1956535,-0.02442694,-0.07220877,-0.21099809,0.50761235,0.002242556,-0.6929928,-0.3422265,-0.19133854,-0.07442594,0.3168712,-0.18044257,-0.67682517,0.016583048,0.053763714,-0.40238678,0.76206005,-0.58374655,0.25728947,0.09363433,0.4297592,0.022776214,0.14020847,0.3146787,-0.114466414,0.025752237,-0.3459177,0.06751347,-0.049179725,-0.6442524,0.42681998,-0.20547542,-0.24756214,0.01082447,-0.28089744,-0.25212654,-0.957363,0.14287005,-0.7931064,0.36412445,-0.003927748,-0.4463129,0.36619237,-0.10241662,0.24809504,-0.21613945,0.094689146,0.18979383,-0.1253487,-0.100259185,-0.12095552,0.1675024,-0.4917382,-0.5505189,-0.011115434,-0.4177744,-0.23226136,-0.31783614,0.16320327,-0.39841762,-0.099498205,-0.20612992,0.49390966,-0.56121004,-0.37091967,0.10128772,0.039672427,0.5928485,-0.63687545,-0.20752393,-0.20788643,0.2523504,-0.08291641,-0.07705346,0.27836066,0.09825237,0.39245906,0.14230601,-0.104561955,-0.046102967,-0.038913526,0.27845815,0.3743523,-0.063544504,-0.5926863,-0.12397264,-0.21067175,0.18806471,0.21727857,0.10659066,-0.11043466,-0.021426719,0.1371284,-0.21117339,0.24999288,0.42524716,-0.12111088,-0.327203,0.2141756,0.5968529,0.18701185,-0.10537264,-0.007085259,-0.015697401,-0.5582023,-0.20193808,0.24734521,-0.2772495,0.57701993,-0.2940126,0.19392285,0.5835463,-0.25809044,0.11076928,0.011876661,-0.007597474,-0.067957744,-0.16640645,-0.4172597,0.50364345,-0.5678436,0.09838152,-0.6088918,0.71535563,0.18321928,-0.6348127,0.3664616,-0.42185423,0.06783409,-0.037580714,0.73017025,0.7177362,0.33141625,0.24000856,0.5711742,-0.5018835,-0.10462611,-0.12753838,-0.26325142,0.046204906,-0.2293217,-0.008480008,-0.33658698,-0.053447742,0.081383415,0.04325026,-0.24442254,0.3262968,-0.5936928,0.0014058695,0.18410693,0.61205584,-0.31021038,0.2448678,0.8933616,1.1135954,1.1376472,0.22391804,1.234076,0.3158954,-0.19795582,0.17478803,-0.04959487,-0.6158059,0.28648573,0.4629044,0.45814073,0.1415341,0.0043261508,-0.054516535,0.50043976,-0.6008719,0.09061828,-0.3178881,0.3480863,-0.11298255,-0.14094418,-0.6683209,-0.21370807,-0.086590365,0.102927975,-0.07003654,0.22037004,-0.08964432,0.19899155,0.16212656,1.0820578,-0.21872808,0.08552742,0.030770402,0.49877775,0.12137545,-0.23497622,0.16622676,0.17804813,0.5444054,0.13924763,-0.6829059,0.12894037,-0.22330274,-0.50521284,-0.12162668,-0.19900492,0.26860735,-0.092386365,-0.40992865,-0.2027343,-0.0027346886,-0.4666669,0.3656198,-2.4488804,-0.33659795,-0.23956959,0.16051593,-0.24404451,-0.26965427,-0.0136329895,-0.5083425,0.60336524,0.3480732,0.47241652,-0.57510144,0.31600773,0.5047234,-0.5040869,0.08272861,-0.6790698,-0.32492077,-0.22054107,0.50537646,0.29762846,-0.023083966,-0.11251826,0.22176702,0.59674555,-0.03025186,0.15900093,0.10628157,0.21173829,-0.038764033,0.45279276,0.16828275,0.42821547,-0.26272193,-0.095786616,0.347772,-0.33226007,0.20714822,-0.24778311,0.2670488,0.35099223,-0.51752025,-0.7666547,-0.78259337,-0.8440463,1.2546731,-0.016141195,-0.591431,0.301068,-0.075421095,-0.2382594,-0.13799883,0.32375148,-0.28879339,0.11702558,-0.7573248,-0.061883967,-0.109353215,0.25427294,0.043298576,0.052394655,-0.6807529,0.8463563,-0.028975172,0.27397534,0.38716623,0.2570609,-0.35629523,-0.4275083,-0.07152157,1.0089469,0.5813102,0.08747398,-0.2533922,-0.19646618,-0.30943775,0.07414949,-0.0007697275,0.5224999,0.955389,-0.057070494,0.06290846,0.18830818,-0.033725582,0.055571374,-0.017105095,-0.33807823,-0.13848712,0.035296127,0.7123225,0.5004373,-0.08820197,0.24846832,-0.15108292,0.33095652,-0.19552884,-0.30296966,0.5458982,0.99402803,-0.056986377,-0.022526551,0.53787225,0.6251049,-0.081700094,0.5235111,-0.7105504,-0.345241,0.40108493,-0.09470503,-0.39885712,0.19283718,-0.37322012,0.23792921,-0.872564,0.4367221,-0.69417924,-0.5448717,-0.84209925,-0.07184452,-3.1662738,0.27174443,-0.123401865,-0.23193401,-0.16426262,-0.31050208,0.4214702,-0.7422372,-0.57967365,0.27405277,0.039052382,0.6798115,0.024098288,-0.049502216,-0.3633713,-0.33495456,-0.35240558,0.122048415,0.02385721,0.09077522,0.032091398,-0.388161,-0.027002582,-0.24191563,-0.3561083,0.037835333,-0.5448761,-0.67894936,-0.26194736,-0.42240953,-0.3767126,0.63781077,-0.1364492,0.09376453,-0.08863127,-0.055352755,-0.100384355,0.34399146,0.066172674,0.26181,0.011061054,-0.13060194,-0.14534643,-0.24893202,0.12565948,0.2785071,0.1526714,0.40542296,-0.52173704,0.18555993,0.483662,0.5877306,-0.23138016,0.910575,0.44163984,-0.22269493,0.36426273,-0.18908808,-0.40575176,-0.68239844,-0.29748964,-0.024456529,-0.3379772,-0.59146184,-0.05884185,-0.36297458,-0.68964857,0.6300368,-0.03695385,0.21819848,-0.07260917,0.05887811,0.21657664,-0.06263506,-0.08559508,-0.11575126,0.009920446,-0.39586395,-0.31066784,-0.8610721,-0.46815225,-0.18000475,0.92174184,-0.05577402,0.035150457,0.092687,-0.25135082,0.2151083,-0.08645275,-0.04662347,-0.08402531,0.28569022,0.1907726,-0.7307777,0.69221914,0.2337291,-0.23675302,-0.44462246,0.25778395,0.8436166,-0.57231563,0.3714945,0.40591037,-0.11082309,-0.17085114,-0.5795866,-0.12826182,-0.023789007,-0.3397857,0.48844507,0.18552534,-0.6568771,0.61340374,0.2796473,-0.14267889,-0.7674909,0.5132106,-0.08762957,-0.14708385,-0.042811632,0.3636665,-0.11888332,0.32804075,-0.2657836,0.41749606,-0.5158616,0.2378931,0.29779947,-0.003419424,0.362382,-0.12521195,-0.043128528,-0.790316,-0.096413665,-0.56317586,-0.28300664,0.23536602,0.007329143,-0.16567326,0.35971826,0.18752742,0.41479975,-0.12573296,0.16082597,-0.047263246,-0.33649474,0.27687123,0.5783783,0.37513316,-0.277333,0.59584224,0.121654525,-0.05600706,-0.49868932,0.032796107,0.3534835,0.08531288,0.42671555,-0.22861105,-0.07792713,0.42240193,0.88147485,0.21929139,0.57624763,0.068886004,-0.17996232,0.42387292,0.1283167,0.44674474,0.07161664,-0.35847208,0.08558856,0.07845705,0.030937748,0.35249296,0.017799735,0.27642673,0.0044797203,-0.2249844,-0.035287913,0.29226768,-0.06833711,-1.4165742,0.503019,0.23938744,0.8138171,0.7818236,-0.072909795,0.13372687,0.6574173,-0.2859527,0.043437146,0.17609371,0.05126532,-0.5266784,0.6321819,-0.75928295,0.2465853,-0.061277136,-0.013318672,-0.05452742,-0.141979,0.50429565,0.67258334,-0.17960241,0.046146426,-0.23335439,-0.13440758,0.3447,-0.47542036,0.17689769,-0.2182784,-0.32267824,0.6953463,0.52829045,0.31368417,-0.14796449,0.006873266,0.0821503,-0.11765515,0.32910743,0.016386935,0.013070395,0.0051820003,-0.56645846,-0.22190253,0.46237656,-0.015678708,0.18594867,0.1112078,-0.33634293,0.08822755,0.030454049,-0.13343175,-0.040924434,-0.7893528,0.12914872,-0.38033056,-0.027218966,0.5781439,-0.31298286,0.26244608,0.15850295,0.039404087,-0.15022352,-0.23086992,0.18892911,0.49228984,0.12039817,-0.29034176,-0.29089582,0.11208406,0.15435164,-0.33638948,-0.023687784,-0.14527224,-0.03622572,-0.685638,0.4517393,-0.03773331,-0.23706405,0.2532433,-0.13237245,-0.13898781,0.4975294,-0.20353907,-0.1943998,-0.014772203,-0.17084026,-0.07176953,-0.13567029,-0.017039133,0.29437235,0.08157653,0.16257617,-0.09537716,0.07123684,-0.072937496,0.6110191,0.28353006,0.27221876,0.37330818,-0.16578014,-0.5155412,0.052498393,0.024647256,0.38983056,0.102446094,-0.024045793,-0.11473537,-0.5364539,-0.40515238,0.1692765,-0.11553991,0.34892273,-0.029694628,-0.230831,0.7561535,0.2210912,1.1829859,0.07928297,-0.40419468,0.04425969,0.56557375,-0.10634605,-0.12843014,-0.3618596,0.84825146,0.42159718,-0.2771528,-0.08715845,-0.33691865,-0.061562512,0.30740488,-0.16895366,-0.062195007,-0.06684815,-0.74320626,-0.36005503,0.26085976,0.36700037,-0.06308623,-0.11108413,-0.099734314,0.28151688,0.14921294,0.43335602,-0.5832957,-0.053033408,0.4081511,0.100327104,-0.024109712,0.04171861,-0.22112063,0.35456768,-0.75334257,0.158197,-0.24878184,0.09569471,-0.1863371,-0.3086797,0.18249765,0.0641255,0.29416,-0.32506114,-0.4928128,-0.086732,0.4327114,0.1579189,0.16769013,0.5751067,-0.26662806,0.15780681,0.14983234,0.4506814,1.1203387,-0.2440636,-0.089431174,0.2462377,-0.5520904,-0.5834647,0.16971575,-0.30030853,0.3099596,-0.19944565,-0.46715686,-0.64112,0.23809195,0.30306152,-0.11844381,0.14270362,-0.62425065,-0.28399938,0.39885357,-0.3142448,-0.27915102,-0.3078105,0.096557274,0.58100426,-0.49789274,-0.40535495,-0.0021809111,0.16040945,-0.5023355,-0.60930544,-0.032468013,-0.36338872,0.4831393,-0.003010713,-0.37733138,0.13133852,0.14269866,-0.45481104,0.013982648,0.14926805,-0.35470915,0.038091406,-0.2879297,0.055169187,0.84184164,-0.061690368,0.019474354,-0.52153677,-0.4980462,-0.8231499,-0.40100625,0.7532331,0.2488056,-0.018629197,-0.5688072,0.12427889,-0.080624074,0.19679517,0.013533986,-0.25299257,0.2828561,0.20143414,0.50671065,-0.017149618,-0.6738315,0.30146438,0.21113577,0.04255016,-0.43862948,0.5069361,-0.02910871,0.6502634,0.10093616,0.13376054,-0.039280884,-0.5416803,0.25583535,-0.11524666,-0.162476,-0.62456924,0.10586458 +170,0.4525439,-0.18503271,-0.3472379,-0.08898704,-0.23806654,0.32467943,-0.1524414,0.67112666,0.12006932,-0.4173092,-0.26128113,-0.15260975,0.042759545,0.2970726,-0.18351673,-0.67510045,0.18117745,0.17496796,-0.54928195,0.46832898,-0.4579204,0.41291282,0.09978994,0.28464645,0.1341854,0.1869346,0.10921065,-0.0819697,-0.09084538,-0.17339844,-0.18376662,0.18901499,-0.5238197,0.22539784,-0.2812936,-0.26971915,0.120175295,-0.40510538,-0.1810936,-0.74532753,0.21338636,-0.67834693,0.5686485,-0.124370255,-0.19689558,0.17156808,-0.06575345,0.27376768,-0.15784372,0.07277761,-0.00839374,-0.15845019,-0.20716947,-0.18887405,-0.30417043,-0.53512204,-0.55640954,0.13491268,-0.4111374,-0.18965791,-0.13523944,0.08937171,-0.23557281,0.15911508,-0.1395395,0.2569726,-0.30167547,0.11651297,0.20733906,-0.102184966,-0.23065597,-0.74577385,-0.10607322,-0.049811974,0.26584396,-0.1461196,-0.2228054,0.13877612,0.36310846,0.4612587,0.07397759,-0.13236716,-0.0081062,-0.17306802,0.095706016,0.61094683,-0.030629775,-0.44031653,-0.18712208,-0.1075372,0.33592552,0.09892881,0.1469204,-0.24163179,-0.13982283,-0.11742379,-0.34477994,0.2666156,0.40991324,-0.4397446,-0.21438351,0.2734311,0.63830733,0.29021242,-0.03168384,0.0031448046,-0.13129447,-0.48009524,-0.17956069,0.0418643,-0.15202741,0.53495765,-0.19709176,0.24317147,0.5907186,-0.09011584,0.17675826,0.14376834,0.07750416,-0.057411637,-0.3000126,-0.17115821,0.24712703,-0.3912782,-0.025060771,-0.4724142,0.9019745,0.21316189,-0.48799363,0.35707876,-0.5603602,0.04896548,0.015507896,0.50274533,0.65089154,0.46483344,0.06117536,0.50863844,-0.36505777,0.04292108,-0.24080965,-0.19404347,0.00024227897,-0.035357837,0.13589843,-0.32766542,0.14807667,0.006854272,-0.04848568,0.14205717,0.401634,-0.55235267,-0.1910491,-0.020472368,0.6514463,-0.33745804,-0.19034459,0.8834745,0.7941045,0.59732246,0.022315009,1.4069767,0.35947686,-0.08462346,0.005822088,-0.11350438,-0.51757896,0.26431906,0.42756793,0.022713447,0.22622482,0.14655222,-0.22327873,0.51763356,-0.21201736,-0.10180179,-0.12750551,0.107972614,0.067582145,-0.0894554,-0.37560785,-0.4230939,0.05913692,-0.0010059715,0.36278751,0.31898782,-0.1735219,0.44171238,0.16351582,1.4495457,0.013160872,0.035938084,0.14866963,0.29707846,0.27217168,-0.103753544,0.014266928,0.32140905,0.4442538,-0.25395855,-0.6021399,0.09792228,-0.17613906,-0.49703866,-0.11284904,-0.20428766,-0.31278357,0.0014601827,-0.5201879,-0.16434774,0.0007189711,-0.0649047,0.52784705,-2.4599333,-0.29354334,-0.062108763,0.4353255,-0.24886084,-0.5680083,-0.1222645,-0.5111574,0.28528756,0.27298635,0.38851902,-0.55230534,0.41085273,0.3058426,-0.39802578,-0.30041817,-0.7667964,0.00017073154,0.07117708,0.18805012,-0.0077837706,-0.06738218,-0.12447158,-0.14831664,0.48938274,-0.1794279,0.041822795,0.27587345,0.35715994,-0.00027712385,0.19506977,0.10643341,0.72618896,-0.23613353,-0.20881669,0.35633776,-0.40930384,0.45464352,-0.11815001,0.20459713,0.43622005,-0.24067567,-0.69139045,-0.57609344,-0.43025622,1.0750155,-0.113414794,-0.29175052,0.07167921,-0.22856897,-0.28842923,-0.09675792,0.4871237,-0.28314874,-0.2691836,-0.71273464,0.0017261207,0.0017553369,0.33550936,-0.12675074,-0.007276883,-0.36850446,0.64435744,-0.21493435,0.42249668,0.21370506,0.25445303,-0.008424266,-0.24468024,0.03321358,0.79466313,0.5260352,0.23106645,-0.1602969,-0.097982734,-0.31758806,0.050068174,-0.08612495,0.58124864,0.61663973,0.17755626,-0.0581975,0.2547092,0.03989335,0.030286439,-0.1524305,-0.2986614,-0.073566005,0.061670747,0.56033605,0.47786275,-0.22998829,0.34071413,-0.18698753,0.41263524,-0.3244642,-0.4550351,0.4789568,0.6948748,-0.28800327,-0.019296153,0.5577128,0.38113564,-0.22307198,0.33827174,-0.74530286,-0.32018337,0.5387638,-0.13673906,-0.29691255,0.16934827,-0.14663629,0.1384127,-0.8224852,0.40484092,-0.25872996,-0.41010907,-0.53496754,-0.040070526,-2.618008,0.068026215,-0.06204713,-0.070130125,-0.15003738,-0.27883607,0.07998071,-0.512823,-0.3801632,0.29314363,0.09338166,0.45635766,-0.019897643,0.07708425,-0.20141338,-0.4501178,-0.16122116,0.09307518,0.06979516,0.2788862,-0.28089145,-0.25462693,0.0782294,-0.27561596,-0.30333626,0.16952032,-0.71832126,-0.45463786,-0.17804359,-0.42504057,-0.12340773,0.6573972,-0.5845034,0.08992529,-0.20179494,0.10979237,-0.34953466,0.33264214,0.13037892,0.09755047,0.085420646,-0.09055224,-0.011635484,-0.46751973,0.21219711,0.22880314,0.18285121,0.46322966,-0.0036645378,0.056523435,0.3689655,0.61386234,0.007840793,0.73662084,0.18483604,-0.034360293,0.405624,-0.10966839,-0.53377753,-0.34716925,-0.20140664,0.007682109,-0.31756112,-0.30117926,-0.13653943,-0.35908365,-0.74812675,0.27546486,0.10428996,-0.14905088,-0.02419851,0.40518734,0.6040396,-0.21652669,-0.02687343,0.009041618,0.032094136,-0.49558803,-0.51436573,-0.5847221,-0.46720472,0.085932605,0.97262055,-0.047942813,0.15796345,0.004653287,-0.08259026,-0.012020183,0.15628289,0.071169,-0.08097903,0.44823524,-0.3709027,-0.6069661,0.4570478,-0.2712016,-0.48726055,-0.58227,0.15310097,0.49741432,-0.71978927,0.4222133,0.4289027,0.058004163,0.0028246164,-0.34006944,-0.20983817,0.062339902,-0.2137373,0.2626778,0.17921986,-0.6502713,0.52772844,0.23817152,-0.08175181,-0.7207603,0.53063464,0.0018287738,-0.32013333,0.047929298,0.40373978,0.121440604,-0.02826624,-0.10259579,-0.055942442,-0.49510288,0.13951522,0.28471598,-0.033571906,0.33725885,-0.2521972,-0.1751338,-0.7548068,0.008334577,-0.5288091,-0.25689134,0.044509042,0.05653625,0.17125668,0.152851,0.13912927,0.39191854,-0.5523157,0.11419285,-0.14550234,-0.28161237,0.28777447,0.38676554,0.38874233,-0.22595257,0.53664523,0.04701083,0.11933729,0.054831985,0.1486609,0.5374812,0.16896589,0.3568602,-0.08537896,-0.10326908,0.10023331,1.0271884,0.2314652,0.34790403,0.1006653,-0.20336702,0.2646201,0.09033591,0.10735735,0.1096301,-0.41511333,-0.15589206,-0.022315582,-0.03494721,0.46005133,0.025992986,0.33752868,-0.06693339,-0.26696968,0.13770628,0.025466638,0.19000106,-1.033662,0.061348725,0.07433716,0.80808085,0.20432676,-0.008886472,-0.064918384,0.4548197,-0.19343932,0.18361476,0.22262605,-0.12244606,-0.42238364,0.56506544,-0.5089549,0.4470022,-0.06584363,-0.066216856,0.13328475,-0.22044982,0.33591065,0.85723764,-0.30193475,-0.04491489,0.048720676,-0.23861109,0.018874193,-0.45358744,0.07330037,-0.43712717,-0.21565422,0.6647464,0.40690467,0.46484593,-0.4151353,0.07200398,0.1483994,-0.17749706,0.0744925,-0.053361163,0.30299637,-0.04049944,-0.39816862,-0.35315707,0.5224839,-0.19181372,0.10878969,0.12823276,-0.34057158,0.27165574,-0.055910625,-0.027307475,-0.055760805,-0.6344349,0.053380765,-0.37118566,-0.6163384,0.27456906,0.033553276,0.12615032,0.23592854,0.09424333,-0.30800858,0.5499575,0.1272415,0.9146955,0.073523715,-0.14964506,-0.3119263,0.28058338,0.28598017,-0.2866602,-0.058508623,-0.1869369,0.19843756,-0.66759187,0.30251685,-0.12717049,-0.13418658,0.157505,-0.15395704,-0.08304038,0.4211679,-0.004532091,-0.10582411,0.15147223,-0.018535102,-0.14727035,-0.03264715,-0.10690786,0.22243194,0.22968587,0.02085084,-0.17744552,-0.12727664,-0.11748435,0.20263132,0.15816861,0.23893552,0.35462084,0.07612153,-0.3716699,-0.034997918,0.1624774,0.37869158,-0.2262492,-0.10607626,-0.24697885,-0.5597671,-0.36672878,0.39011934,-0.09080431,0.31495836,0.18977712,-0.3219943,0.76206714,0.09509117,0.9660771,-0.11864899,-0.3091095,0.18380693,0.56476784,-0.021178339,-0.12730499,-0.3098966,0.92012876,0.311165,0.0019645889,-0.009716607,-0.22213106,-0.100308985,0.3073781,-0.20587622,-0.025390824,-0.15017636,-0.52726924,-0.34212977,0.15304784,0.2788808,0.055631235,-0.023558687,0.11396589,0.3058402,0.018669112,0.27884886,-0.6159289,-0.20688955,0.28834996,0.11072138,-0.13524266,0.19232419,-0.3405364,0.4349529,-0.7907794,0.02280547,-0.4779773,0.031539567,-0.22082247,-0.13077272,0.12751733,0.10422931,0.34853998,-0.5824918,-0.39749843,-0.32714078,0.2645193,0.1803281,0.2651009,0.552033,-0.15088913,-0.123352766,0.0029479365,0.6751269,0.9354239,-0.18973373,0.11192412,0.4221384,-0.37058145,-0.45051008,0.23815598,-0.26866618,0.20289111,-0.052140277,-0.05315167,-0.42135778,0.32443377,0.32069167,0.00972751,-0.027072705,-0.5226381,-0.047422703,0.32434186,-0.36817056,-0.2763583,-0.34556285,0.26930764,0.7448715,-0.1880338,-0.22723755,0.058361277,0.34512624,-0.25744227,-0.58309716,-0.088789225,-0.40536082,0.42010477,0.1173307,-0.2174971,-0.16638559,-0.045648158,-0.34067762,0.062144008,0.22206952,-0.40978208,0.025589867,-0.16719837,-0.0154897375,0.7892291,0.04044574,0.14448747,-0.6450798,-0.5036155,-0.7148365,-0.47303823,0.4369173,0.30136982,-0.04165154,-0.5560462,-0.017407276,-0.050704908,-0.06348504,-0.024912722,-0.23219438,0.52437615,0.22880904,0.32633483,-0.08606981,-0.9581201,0.03012422,-0.041124523,-0.3834888,-0.32870165,0.27050686,0.013836277,0.7801342,0.12689832,-0.08279535,0.19378671,-0.51454014,0.11624393,-0.35683128,0.03898561,-0.7643561,0.1874184 +171,0.13979922,0.124566704,-0.6746863,-0.038436357,-0.1389832,-0.067483395,-0.3517182,0.39526775,0.43423566,-0.2961157,0.21992573,-0.37414798,-0.07557663,0.4164994,-0.1436088,-0.72618955,0.18043691,0.16922933,-0.5767311,0.6573964,-0.3807406,0.26891664,0.03802906,0.21965565,-0.21582942,0.45435178,0.19229867,-0.3415612,-0.19698901,-0.03618264,0.10451984,0.08418039,-0.40032768,0.21324782,0.02693119,-0.0004800775,0.3448001,-0.43133813,-0.5149732,-0.6285296,0.3636286,-0.6443157,0.5649811,0.13171794,-0.21154124,0.2213831,0.20991017,0.27326962,-0.25621942,-0.05899304,0.24273919,-0.1431823,-0.25316313,-0.32427037,-0.39921272,-0.46242082,-0.47506922,-0.025559943,-0.63516635,-0.17038625,-0.4833849,0.14019698,-0.23577198,-0.037360772,0.05326337,0.19096288,-0.44625556,-0.038550947,-0.059012305,-0.2380114,0.21601027,-0.7336332,-0.020094378,-0.066057295,0.28052083,0.10707374,-0.09160328,0.4714925,0.25154606,0.3838382,-0.055078615,-0.031819463,-0.24206248,-0.34428564,-0.013880599,0.5487883,-0.2285976,-0.42519587,0.009493535,0.06749071,0.19107665,0.21967974,0.08355181,-0.3602478,-0.01242139,-0.22943644,-0.36862773,0.34644738,0.61658907,-0.24615811,-0.017031197,0.45669413,0.3947024,0.2596805,-0.07510018,0.15417315,-0.21280414,-0.48359105,-0.09382839,0.109550126,-0.059448633,0.7065081,0.092996664,0.21661654,0.5907519,-0.07419989,-0.14657964,-0.17284547,-0.0044090343,0.15689051,-0.16262358,-0.08008495,0.15448727,-0.6062408,-0.13631843,-0.23772377,0.70960134,0.022220036,-0.9727374,0.4995576,-0.32285005,0.077555366,0.034920394,0.6667721,0.6940258,0.5824836,0.265597,0.7400623,-0.4303337,0.2670665,0.031544495,-0.45663443,0.31535912,-0.04419295,0.17649116,-0.58049375,0.017609261,0.42204162,-0.23603825,0.21010776,0.47132027,-0.4852603,0.054006096,0.21148805,0.9497881,-0.3147787,-0.10130748,0.55511034,1.2096652,0.74978375,0.15846902,1.0729257,0.25197613,-0.25753024,0.24572511,-0.13358639,-0.9076479,0.17455457,0.23780899,-0.067497045,0.14313568,0.19287796,-0.20399927,0.15546674,-0.35983887,-0.12674548,-0.10515296,0.45261106,0.020446854,-0.17192024,-0.28198144,-0.26912987,-0.112433024,-0.059496284,0.2254558,0.3183223,0.045406453,0.47705147,0.0011120777,1.4514446,0.18899693,0.12625332,-0.034290448,0.6484303,0.21677364,0.15767342,-0.3645011,0.4797699,0.20497686,0.13720775,-0.50440717,0.07821285,-0.17642118,-0.36612603,0.05058377,-0.24838986,0.018522425,-0.024012523,-0.07878444,-0.21265212,0.010710743,-0.40285084,0.5524297,-2.9838989,0.0031758195,-0.048081007,0.29254943,-0.0070545403,-0.03018403,-0.09612599,-0.3466213,0.5358145,0.5808319,0.489018,-0.39422694,-0.020044386,0.43024242,-0.42531404,-0.16852583,-0.57897437,0.104819514,-0.029726606,0.3822567,-0.058330845,-0.26871425,-0.035935264,0.08155367,0.2609408,0.005011217,0.085106604,0.3082319,0.45688802,0.105002016,0.35016918,-0.1604066,0.48606387,-0.07581296,-0.12693813,0.03233156,-0.37499574,0.36693478,-0.21414037,0.2717645,0.42931235,-0.48201352,-0.72500634,-0.22361349,-0.032253325,0.9609711,-0.2979337,-0.36050832,0.41824293,-0.09354575,-0.14013973,0.003920279,0.62852293,-0.21573791,-0.005695717,-0.6396172,-0.0035689853,-0.00065719,0.32794815,0.097106814,0.019415699,-0.48063934,0.49686405,-0.007495902,0.59550786,0.41578093,-0.011638183,-0.33254805,-0.5758496,0.052271258,0.8139053,0.25990394,0.05001448,-0.112502225,-0.19859195,-0.39167917,-0.3069624,0.051769007,0.52173203,0.7448626,0.029261319,0.03666754,0.243393,-0.27464917,0.018210076,-0.022384597,-0.49706027,-0.16257359,0.06180879,0.64506173,0.6202274,-0.19431624,0.5186443,-0.0052878126,0.32848632,-0.028651325,-0.46044084,0.5413238,0.42994994,-0.20343615,-0.18481363,0.3753134,0.3703163,-0.28824455,0.6420093,-0.39381933,-0.26271197,0.5524962,-0.031796087,-0.6399174,0.42805716,-0.27028608,0.05546119,-1.0562454,0.2608547,-0.21889214,-0.6667456,-0.6220442,0.13326466,-3.59289,0.09661589,-0.22758912,-0.36430386,-0.019492984,0.1716602,0.06801105,-0.38288078,-0.41533157,0.1438328,0.28808495,0.44273683,-0.12442824,-0.10395542,-0.1383695,-0.18833695,-0.23275313,0.11915519,0.04326503,0.10701446,-0.0042708246,-0.39457658,-0.085495,-0.26528475,-0.31609964,0.023462761,-0.53024906,-0.11366957,-0.32518312,-0.7806372,-0.39426422,0.71571296,-0.58372426,0.012944829,-0.26860464,0.110013254,0.041797124,0.28839436,0.06993368,0.064495936,-0.13858503,-0.12390549,-0.04382237,-0.3653986,0.24674056,-0.06042236,0.44142914,0.54292315,0.07896861,-0.025166653,0.66627914,0.5684424,0.006345562,0.70803815,0.37750643,-0.101723954,0.2516849,-0.52026594,-0.038467098,-0.47836077,-0.46584472,-0.08152047,-0.32280418,-0.50684875,-0.13990775,-0.4569145,-0.6274801,0.56717724,0.10029174,-0.15707573,0.21657768,0.39065725,0.27787963,-0.092010625,0.12892751,-0.25150564,-0.11910773,-0.5969068,-0.07160404,-0.8239212,-0.5672105,0.39815226,0.89140373,-0.19174455,-0.09547483,0.082837544,-0.26876116,-0.008714866,0.048839007,0.033042222,0.39100683,0.13258614,-0.057163812,-0.83579534,0.6084543,-0.2541142,-0.094236515,-0.6605742,0.043772552,0.564893,-0.97269803,0.2899416,0.45062038,0.045984074,-0.071349256,-0.5279054,-0.4261746,-0.037769366,-0.15178968,0.24392273,0.08865661,-0.8766758,0.49922934,0.24745774,-0.38823137,-0.7743232,0.17036293,-0.16122827,-0.38133124,0.32397997,0.27574968,-0.00062771275,0.06626082,-0.6759824,-0.112281516,-0.49828383,0.26476747,0.02062477,-0.05344367,0.61578065,-0.08966954,-0.25985593,-0.88652706,-0.023315864,-0.39812672,-0.16461594,0.47833225,0.2132204,0.1959346,-0.06291357,0.22113891,0.35936084,-0.45787954,0.102941535,-0.11934779,-0.27147815,0.3591727,0.40614575,0.29066217,-0.46625596,0.6672191,-0.1879024,-0.044476524,-0.14749841,-0.012323639,0.45796338,0.053765524,0.23590842,0.18414493,-0.22329813,0.10594651,0.85798454,0.2351539,0.27248225,0.11956942,-0.034445725,0.56799257,0.08650263,0.09352649,0.3586705,-0.44747093,-0.15508175,-0.30984446,0.16354725,0.46014836,0.15240651,0.5750003,-0.16384144,-0.25083196,-0.017449232,0.37790462,0.3048559,-0.68673044,0.58202976,0.26332933,0.39556235,0.73649406,0.19769365,0.06847689,0.7894478,-0.15239908,0.23974538,0.21369423,-0.04019283,-0.6025037,0.4841945,-0.7452148,0.47442463,-0.09577372,-0.050333753,0.41355693,0.047366675,0.5861611,0.9880684,-0.106090635,1.50203705e-05,-0.012881285,-0.13755326,-0.046945825,-0.3314647,-0.1278675,-0.26853332,-0.4305421,0.51617754,0.2965208,0.1875877,0.013230595,-0.053505287,0.2410664,-0.059476983,0.40185606,-0.14213863,-0.00045487014,-0.09239089,-0.5723294,-0.2511155,0.6383166,0.03432196,0.1270457,0.13485347,0.15403853,0.44143668,-0.3127159,-0.24661422,-0.14071572,-0.3618415,0.3589306,-0.00012655692,-0.519895,0.7035621,-0.17759508,0.42860442,0.110951565,0.2440237,-0.16938566,0.44081813,0.3326101,0.6979628,-0.0958056,-0.45946008,-0.17002553,-0.11586111,0.15929466,-0.24616447,-0.08970188,-0.22172837,-0.06736416,-0.6734227,0.50185865,-0.37180033,-0.23903099,-0.16604601,-0.23239793,0.032054387,0.3411949,-0.12951855,-0.1009249,0.020302068,-0.16164589,-0.18354797,-0.2374294,-0.36946353,0.10446692,0.098974325,-0.032486796,-0.10588603,-0.07806527,-0.006887257,0.37945616,-0.13872266,0.18072097,0.061674688,0.3397298,-0.25058585,-0.13755625,0.14834565,0.49409503,0.11522278,0.013463692,-0.24302115,-0.26323286,-0.36792785,-0.23250169,-0.077651806,0.3178197,0.22298533,-0.53776145,0.8495646,0.0066228537,1.1018405,0.0018898601,-0.3377765,0.22050811,0.6255757,-0.005014734,0.02258802,-0.37585518,1.1692005,0.7144688,-0.22454804,-0.1259777,-0.4171158,-0.15370737,0.23769115,-0.29307842,-0.25823808,0.04591247,-0.58594805,-0.37218523,0.30333826,0.29420823,0.1181542,-0.117153615,0.19367494,-0.16583078,0.07696047,0.055787638,-0.46973908,0.02303998,0.38861647,0.12628299,0.14350921,0.14270988,-0.21885724,0.3648772,-0.5390472,0.115140565,-0.42273453,0.047744576,-0.0144866,-0.28585723,0.14658263,-0.027631732,0.5038774,-0.21628866,-0.31375834,-0.078953944,0.4150541,0.34577486,0.3367717,0.72809565,-0.21295047,-0.17805225,-0.08020993,0.6268089,1.0753849,-0.3174134,-0.07520412,0.3612027,-0.23277284,-0.6766059,0.16316152,-0.41189128,-0.01947326,-0.36838838,-0.24190168,-0.44138223,0.0033715693,0.13455044,-0.21501318,-0.19393574,-0.45419037,-0.12117722,0.09793091,-0.3237731,-0.31965664,-0.41717854,0.119739324,0.9267734,-0.3150129,-0.3700663,0.10504253,0.06395581,-0.25558627,-0.7243555,0.0095593445,-0.06155107,0.37308013,0.45171544,-0.44555804,0.03919584,0.38231122,-0.5348714,0.20187396,-0.0009845658,-0.39132768,0.059863392,-0.36083087,0.01923156,0.8105845,-0.15163423,0.13166319,-0.5577816,-0.6241305,-0.87170357,-0.3831724,0.3848112,-0.10370653,-0.06890113,-0.5906548,-0.09027617,-0.18302217,-0.07187972,0.015476167,-0.54052204,0.4296919,-0.079584144,0.5303927,-0.42624605,-1.1842132,0.09674559,0.1489193,-0.09100353,-0.64136285,0.46595994,-0.13128132,0.89164144,0.21988964,-0.059166428,0.56667244,-0.60095716,0.23919836,-0.43023527,-0.3153223,-0.45108145,0.21612872 +172,0.37081882,-0.2416713,-0.35484973,-0.2191482,-0.0584359,0.06265217,-0.15755792,0.5414692,0.25250813,-0.5061602,-0.1730112,-0.12712422,0.052513875,0.2984798,-0.25894016,-0.6187159,0.032257568,-0.05806051,-0.36000416,0.5508677,-0.24370387,0.15958807,-0.044250816,0.30317995,0.15711845,0.20164408,0.3302577,0.100386664,0.033704612,-0.09683424,-0.12112577,0.0009485419,-0.70650685,0.25468987,-0.019179804,-0.18894969,-0.011293923,-0.2955832,-0.36295155,-0.82975143,0.50519234,-0.9263228,0.33925056,0.05701983,-0.2771316,0.25440377,0.2930152,0.21077047,-0.31648234,-0.11522753,0.047369443,-0.019650986,-0.005831442,-0.049880784,0.044624235,-0.4909311,-0.5717969,-0.10323051,-0.52548724,-0.18431707,-0.102787696,0.14397846,-0.3176873,-0.053866755,-0.046275824,0.7585535,-0.43958548,-0.19248271,0.4690384,-0.1692121,0.35259348,-0.71811736,-0.20403929,-0.016770478,0.047744386,0.061404604,-0.21891549,0.44381347,0.15350083,0.28740454,-0.095852375,-0.2416629,-0.13706788,-0.06859977,0.19327848,0.25208935,-0.16412485,-0.6068788,-0.0748275,-0.038886514,0.2969044,0.07068695,0.4196419,-0.23129265,-0.048255283,0.21848145,-0.2665813,0.37146464,0.73053586,-0.28402063,-0.1406097,0.29462606,0.45505288,-0.0053275055,-0.23229507,0.123713955,0.02767308,-0.4427199,-0.090751275,0.15717864,-0.32432494,0.58437383,-0.20311931,0.29598185,0.6465288,-0.24757001,0.18767396,0.011669687,0.04591623,-0.23151216,-0.3282452,-0.26768374,0.17127328,-0.46960464,-0.039062556,-0.3030284,0.83438885,0.27208248,-0.6860241,0.28956285,-0.35411122,0.24529065,-0.21965422,0.49762896,0.8326928,0.38457888,0.32665926,0.9314006,-0.4626824,-0.037736688,-0.07882819,-0.14368998,0.108560406,-0.21508662,0.11293929,-0.3351547,-0.06472662,0.147377,-0.14448869,-0.15991412,0.21601096,-0.52905625,-0.0344512,0.23881015,0.82522523,-0.22363798,-0.034656387,0.5902154,1.1111711,0.9263976,0.18611768,0.88896424,0.2596755,-0.16376278,0.19351755,-0.05910312,-0.7738886,0.2640403,0.44030285,0.7880908,0.2077904,0.060537823,-0.14299881,0.41160402,-0.5553031,0.1940111,-0.20307162,0.51004356,0.2545077,-0.098858155,-0.12351399,-0.0834645,-0.0148787545,0.0834412,-0.12905936,0.1997424,-0.12903354,0.1888974,-0.0069913054,1.4078857,-0.031460326,-0.075354524,0.097105466,0.58888024,0.20306465,-0.2687928,0.16335776,0.30262926,0.47057196,0.035660215,-0.69893944,0.09039601,-0.23162504,-0.56914365,-0.1493613,-0.39440608,-0.0067759496,-0.055494707,-0.5049407,-0.27694848,-0.10748865,-0.15083489,0.35346407,-2.9497492,-0.053509627,-0.17538705,0.31416008,-0.3136015,0.03173839,-0.017834114,-0.5684481,0.3991124,0.55122787,0.30467758,-0.7482368,0.25401208,0.3992493,-0.36644787,0.049961776,-0.6138304,0.05003004,-0.2466649,0.3987019,0.14558288,-0.004889648,0.24345803,0.26997516,0.44473726,0.3324496,0.21764433,0.18455637,0.33547238,-0.148451,0.33776638,-0.019616961,0.29686752,-0.12451148,-0.009338664,0.26118913,-0.5803984,0.06517552,-0.21217127,0.11604394,0.4694381,-0.3549371,-0.778066,-0.69662076,-0.10301131,1.173,-0.26617965,-0.8095733,0.2784533,-0.25250033,0.018280791,-0.21363041,0.6065641,-0.1542351,-0.020555321,-0.7300771,0.12304705,-0.24762143,0.15226687,0.013742424,-0.13906409,-0.37404123,0.89575386,-0.15385428,0.53015727,0.22522838,0.12772897,-0.38421482,-0.4003482,0.05200359,0.6883249,0.4965399,0.109331675,-0.11662994,-0.14870474,-0.32720676,-0.2563733,0.13738945,0.7433223,0.8227186,-0.08925853,0.23252709,0.37213498,-0.07986736,-0.06859826,-0.04018854,-0.38050863,-0.103466354,0.14589982,0.57277954,0.7002291,-0.23221086,0.3232985,-0.10194218,0.07766998,-0.17629065,-0.4696156,0.59589547,0.738554,-0.122509316,-0.2834636,0.57238525,0.41419512,-0.3108128,0.4159945,-0.6868844,-0.38577983,0.5996622,-0.21674393,-0.38419417,0.1646949,-0.39218807,0.122011594,-0.5589514,0.4890519,-0.30181065,-0.4650671,-0.55107987,-0.21564315,-3.4514081,0.09523574,-0.3075809,-0.20239814,-0.23362483,-0.26965714,0.32401153,-0.5203419,-0.46843603,0.2989211,0.13332418,0.6485764,0.12090715,0.10540502,-0.29561362,-0.05159669,-0.31666377,0.085416555,-0.08240301,0.22491892,0.043514635,-0.34788322,0.019879198,-0.028020045,-0.52071637,0.028597295,-0.28218928,-0.48490256,-0.23088227,-0.4745609,-0.3589148,0.5906277,-0.18664186,0.03813576,-0.22627302,-0.08902045,-0.29637071,0.3936991,0.09612655,0.17521264,-0.08963928,0.028559893,-0.05685445,-0.35842538,0.22623722,0.01629566,0.34515238,0.28709096,-0.10595727,0.11653549,0.52136505,0.43598768,-0.038982,0.6668005,0.528138,-0.08834129,0.3925619,-0.10439206,-0.12219355,-0.3956879,-0.29085508,0.18331246,-0.3438085,-0.35194317,-0.014992492,-0.42731944,-0.7360886,0.19119383,-0.063762985,0.3205635,0.004597085,0.12543541,0.45188278,-0.06503005,0.018731432,0.032834224,-0.08542888,-0.6637979,-0.18213756,-0.71948385,-0.30154034,0.310759,0.86632675,-0.22824433,-0.33423185,0.0087676495,-0.30817738,0.08678209,0.07984083,-0.19479708,-0.021921586,0.3486598,-0.04840463,-0.7508485,0.3944741,-0.12540576,-0.012134544,-0.6086974,0.10537829,0.27648503,-0.5889851,0.664245,0.30910015,0.10158216,-0.36820048,-0.5234708,-0.22362712,-0.16715169,-0.2589746,0.41450337,0.25649408,-0.7915605,0.40482596,0.19869652,-0.39139065,-0.590715,0.44842413,0.02515459,-0.21529722,-0.067978255,0.17129518,0.07179349,-0.036136042,-0.013870537,0.1929747,-0.46003166,0.12854603,0.23111215,-0.0040123886,0.4076123,0.00094764575,-0.075690866,-0.5263963,-0.118610814,-0.59962636,-0.07925582,0.09967176,-0.04346087,-0.041010145,0.1396663,0.07467199,0.42495182,-0.10526298,0.21831068,-0.005374619,-0.27378362,0.43981686,0.47716078,0.43510106,-0.419236,0.6651772,0.055645503,-0.13683793,-0.05002686,0.17144327,0.33912787,0.32007334,0.33690947,0.050735235,-0.16468832,0.33829874,0.85960835,0.10842063,0.54266655,0.1468011,-0.021399733,0.32432777,0.10549404,0.21307543,-0.027574737,-0.45159578,-0.10476344,-0.22606249,0.08515126,0.35193926,0.11133297,0.43727905,0.056264658,-0.3276632,-0.0052380604,0.03826799,-0.17476544,-1.2213131,0.29965228,0.085188106,0.859108,0.64187545,-0.14100412,-0.03569677,0.66035646,-0.12856193,0.10329205,0.3155856,0.057798214,-0.54507136,0.57774,-0.5617076,0.46458343,-0.0359536,-0.028512847,-0.1886138,0.21600798,0.2003604,0.5305892,-0.1914825,-0.012479986,-0.017501535,-0.26383477,0.2347983,-0.49077734,0.051160693,-0.5069292,-0.40695858,0.3856475,0.4619852,0.33059958,-0.12809882,-0.06723637,0.01898156,-0.08062249,0.14036009,-0.08623767,-0.13216993,-0.0046015424,-0.5872623,-0.41118294,0.43924254,-0.17580281,0.18834177,-0.0762905,-0.19170891,0.03703479,-0.18631724,-0.16092394,-0.027024228,-0.65684634,0.023206297,-0.12641083,-0.40826964,0.6282564,-0.3756867,0.1529517,0.26071522,-0.031440586,-0.27936524,-0.036938913,0.12116351,0.5294661,-0.3854652,-0.100282766,-0.64436615,-0.07497887,0.14368379,-0.23398171,0.12659125,-0.12131433,-0.04421065,-0.55527294,0.56200475,-0.0961091,-0.11980658,0.21993855,-0.34280962,-0.042321,0.6572299,-0.18977621,-0.07175163,0.12221204,-0.31686586,-0.2337983,-0.22519095,-0.26363567,0.2583229,0.05778679,0.07447118,-0.018885318,-0.27243134,0.047305975,0.26134083,0.03767654,0.14885156,0.3769243,0.06331792,-0.5220846,0.0013650188,0.14843509,0.52919096,0.23561546,-0.1780309,-0.33061847,-0.70435107,-0.3790954,0.07077335,-0.029079784,0.29955107,0.09874551,-0.3169126,0.7092823,-0.008583819,0.9744338,-0.013663839,-0.39819333,-0.10734582,0.56406873,-0.055409934,0.017947717,-0.18782718,0.5234536,0.52043796,0.0191289,-0.0024792936,-0.3706317,0.13398969,0.49106047,-0.035376187,-0.1521633,-0.09390212,-0.64217633,-0.23391281,0.24383488,0.2909171,0.13686393,-0.04527588,-0.051720295,0.15367219,0.007063557,0.3692593,-0.56781995,0.07314618,0.2587039,0.03519953,0.26571593,-0.042202268,-0.3685486,0.32305306,-0.5921733,0.104019985,-0.11642963,0.13220225,-0.11821837,-0.32821682,0.19530378,0.14361851,0.4789531,-0.3121048,-0.36136743,-0.17767255,0.6931223,0.10376774,0.32965747,0.48413748,-0.20746727,0.016913116,-0.007998846,0.7244652,1.1159238,-0.19049442,0.07235195,0.3020731,-0.50113374,-0.94683945,0.49073672,-0.30420548,0.17007487,0.020850578,-0.19597842,-0.60064095,0.22297724,0.37819904,-0.025388198,0.24789841,-0.6779042,-0.62454283,0.19358298,-0.260995,-0.28266695,-0.3784702,0.086762786,0.54055554,-0.32303166,0.0097177625,0.08809531,0.45321354,-0.11942095,-0.47981122,-0.055619784,-0.38723662,0.3557927,0.07338659,-0.29677898,-0.20417416,0.24198513,-0.33122402,0.23393893,-0.024519397,-0.320097,0.01694089,-0.10038503,0.04374179,0.83250535,-0.08861862,0.10109192,-0.65672123,-0.3822355,-0.73930496,-0.3269833,0.33549026,0.06267301,0.03303262,-0.6226315,-0.06581281,0.06772346,0.29328132,-0.17431195,-0.43472037,0.6230825,0.07500856,0.34065428,0.09891766,-0.58132297,0.0020745185,0.039135095,0.014628904,-0.39962605,0.51004905,-0.09445173,0.8545533,0.030148378,-0.010035396,0.023245003,-0.4170542,0.31260204,-0.21430115,-0.4650953,-0.43120858,0.23255385 +173,0.374939,-0.016761223,-0.6923046,-0.14943753,-0.25818634,0.16213422,-0.4391514,0.21304804,0.17406172,-0.31922707,0.27548638,-0.5008337,0.11590147,0.37292865,-0.030446475,-0.74213225,-0.018666754,0.16942084,-0.3948854,0.4407684,-0.47979107,0.3381083,0.30613694,0.26134983,-0.24752907,0.25849923,0.35835803,-0.242132,0.096452855,-0.2832768,-0.24668203,-0.22198904,-0.6446367,0.09115925,-0.02679987,-0.45181766,0.34909463,-0.31341478,-0.22156596,-0.58912444,0.19139187,-0.7674885,0.5947282,0.11413578,-0.22121684,0.33500943,0.15315415,0.21507353,-0.21687944,0.29523644,0.28242525,-0.45140752,-0.16948564,-0.3515061,-0.35068345,-0.72836447,-0.68268126,-0.26966023,-0.6495426,-0.257667,-0.3057978,0.15719031,-0.39427516,0.09772802,-0.0995031,-0.024778595,-0.46885207,-0.14934164,0.097363256,-0.28576863,0.4369513,-0.4030427,-0.015138726,-0.23072402,-0.031169757,-0.08491335,0.008197278,0.112428874,0.16360885,0.62067014,-0.13842691,-0.17542414,-0.39665928,-0.022989234,-0.06628267,0.56907344,-0.16378397,-0.021876087,-0.16834716,-0.14261241,0.24489492,0.4615921,0.018833226,-0.111365415,-0.08601317,-0.28711268,-0.5120071,0.12659658,0.5004644,-0.510102,-0.063243136,0.40589568,0.39038023,-0.00934346,-0.13685887,0.24614471,0.033890206,-0.38777637,-0.1541629,0.03689282,-0.16588302,0.5962,-0.1792164,0.3656591,0.7192169,-0.116566814,-0.038800195,-0.13242306,-0.18038447,0.07079548,-0.034292087,-0.115679085,0.455798,-0.6599925,-0.036768865,-0.43533036,0.817136,0.09187316,-0.9098983,0.31353346,-0.5778041,0.089089096,-0.16163634,0.7528968,0.5057756,0.67885035,0.10078132,0.813545,-0.6446288,0.26083332,-0.18295585,-0.33298615,0.50816685,0.0430841,0.20257561,-0.48018393,-0.022936925,0.07407871,-0.23934318,0.067561865,0.74109936,-0.35866857,-0.059262257,0.2565774,0.77623135,-0.3853331,-0.0076064668,0.2319951,1.2341049,0.82318497,0.013199091,0.9883682,0.26205945,-0.30487582,-0.11399982,-0.030737743,-0.9154622,0.07070095,0.21810572,0.60095614,0.35355243,0.15824609,-0.06894504,0.29244876,-0.26955473,-0.038573865,0.117408775,0.071516685,-0.18921977,-0.20829535,-0.26131693,-0.20125592,0.058740813,0.016378794,0.06899623,0.44388512,-0.090558976,0.6368368,0.18596707,1.8427516,0.10437382,0.12788789,0.1697734,0.39629063,0.31371266,0.16765194,-0.13853142,0.3522936,0.25018445,0.22864206,-0.4932909,0.1354081,-0.05864847,-0.57673454,-0.2388921,-0.20283194,-0.05948439,-0.2950457,-0.29737535,-0.2826074,0.079108216,-0.39172944,0.357465,-2.4663448,0.011289115,7.8077115e-05,0.30539894,-0.17319627,-0.1215866,-0.010775353,-0.43088794,0.53793347,0.55307966,0.35963377,-0.5970458,0.42653403,0.70234376,-0.31220564,-0.058972817,-0.6791232,-0.21850501,-0.24626549,0.32134175,0.040481914,-0.31436267,-0.09760809,0.2728452,0.5523538,0.017642215,0.06577044,0.25425926,0.50425845,-0.041127335,0.6004204,-0.027261278,0.46593794,-0.2271524,-0.16618232,0.27834412,-0.37837806,0.1008948,-0.29898092,0.10298125,0.300854,-0.41855943,-0.9423682,-0.3375082,-0.03417551,0.9835221,-0.423838,-0.43289062,0.2593733,0.14952874,-0.09319985,0.0066412836,0.4444236,-0.08130917,0.050109264,-0.64350575,0.03224155,-0.10140253,0.4525713,0.22583087,0.03709024,-0.5378732,0.73340726,-0.10665226,0.7308504,0.47152686,0.04929586,-0.10709909,-0.48225307,0.112726055,0.79268795,0.21244043,0.22652598,-0.4048414,-0.044396788,-0.22839563,-0.1264757,-0.02157014,0.231291,1.0014293,-0.10893717,0.16915864,0.3843267,-0.23964025,-0.104857676,-0.11876614,-0.5370725,0.11043354,-0.07605662,0.56596416,0.7841985,-0.032073434,0.29233152,0.069833435,0.6191023,-0.26756993,-0.4569459,0.5866325,0.5869732,-0.123597465,-0.09457898,0.5648165,0.5314812,-0.30977857,0.5834338,-0.7970722,-0.56340176,0.510422,-0.04749101,-0.6271079,0.40964076,-0.2438708,0.020951495,-1.1003174,0.24646206,-0.2847758,-0.32964543,-0.57853836,-0.13243952,-3.7010238,0.16885096,-0.4072524,-0.15983856,-0.039527643,0.036379855,0.3302301,-0.6181764,-0.53552425,0.07472999,0.24331224,0.5295384,-0.104437746,0.15583898,-0.47465435,-0.17665143,-0.30885473,0.43489566,0.12504171,-0.043282658,0.07323208,-0.4777739,-0.017816754,-0.32079458,-0.22710097,-0.05458401,-0.3719231,-0.18352681,-0.16871691,-0.5514303,-0.42458108,0.6656954,-0.18332128,-0.037752505,-0.31669497,-0.022530504,0.0087258415,0.14245957,0.069052346,-0.041513782,-0.16790001,-0.116358906,-0.18184143,-0.37508062,0.10118646,0.06779092,0.28870657,0.2962517,-0.14829473,-0.17334403,0.57274747,0.33719411,-0.0027281374,0.8424072,0.3736215,-0.14516926,0.36412296,-0.40747097,-0.10716722,-0.58056045,-0.33814406,-0.25449222,-0.433252,-0.49047437,0.025881598,-0.37610164,-0.84868985,0.59799945,0.12976323,-0.05264592,-0.008821875,0.49304017,0.34052667,-0.23119886,0.0110879885,-0.054638013,-0.25504425,-0.42210373,-0.10769701,-0.84139705,-0.44021764,0.23884167,1.0407585,-0.19848466,-0.040435597,0.1388782,-0.022887858,-0.018819744,0.13656358,0.26497743,0.44471964,0.34111544,0.11451975,-0.6656197,0.6120527,-0.30797204,-0.044920295,-0.78652334,0.03522872,0.60582745,-0.9190848,0.12871717,0.548498,0.10108936,0.17953753,-0.710119,-0.06319066,0.101179294,-0.25649717,0.3466381,0.036121674,-0.9250147,0.561986,0.22663595,-0.28829798,-0.71241504,0.4636921,-0.041943427,-0.6436241,0.062775694,0.38646343,0.03256382,0.25912672,-0.4183394,0.1717607,-0.59353817,0.21000046,0.21486063,-0.21333236,0.5526447,-0.085535206,-0.122979224,-0.8116134,0.08347925,-0.42164993,-0.31399104,0.36224058,-0.05720502,0.031318773,0.27172723,0.14368504,0.470966,-0.4151523,0.06432647,-0.20652544,-0.35442838,0.561922,0.44056642,0.22453338,-0.40260625,0.77166957,-0.12195062,-0.20228136,-0.25051275,-0.16270769,0.45582342,0.00024443617,0.37242398,0.09691883,-0.35217357,0.27069744,0.8162896,0.16565259,0.3453411,0.2795324,0.0024551302,0.59726024,0.25926116,-0.20275791,-0.011614491,-0.43700185,-0.060693603,-0.16309504,0.17934649,0.51563144,0.08025185,0.63882977,-0.26508942,-0.008015096,0.07359674,0.28374708,-0.102959774,-0.6150975,0.18667047,0.23452455,0.4574864,0.7819276,0.08172113,0.10625347,0.64032084,-0.40139833,0.072439745,0.35735247,0.17950816,-0.31975904,0.7261676,-0.6821807,0.25181758,-0.15764882,0.012029569,0.23980393,0.050758492,0.5107225,1.0212258,-0.07634691,0.1652354,-0.06886748,-0.20832193,0.06105331,-0.27543768,-0.06311839,-0.26471364,-0.26183736,0.62636465,0.11082231,0.28734446,-0.11965492,-0.08505761,0.124984674,-0.049516603,0.4686626,0.08409522,0.08382207,-0.040603925,-0.36224505,-0.26236406,0.74208933,0.0393837,0.0067790947,-0.034283686,-0.21901977,0.46210122,-0.15318477,-0.15988488,-0.06908382,-0.54899687,0.17019685,-0.3249215,-0.47093463,0.7475498,0.03196909,0.29456916,0.108147375,0.1042628,-0.20890053,0.16277483,0.25695378,0.55097437,0.14852422,-0.3075677,-0.23125292,-0.14715305,0.21372949,-0.34799805,-0.037627667,-0.19905548,0.09937823,-0.6089255,0.40173277,-0.34328473,-0.39182162,0.07163031,-0.36317834,-0.06273054,0.5003117,-0.094927154,-0.10923645,0.18037264,0.016697414,-0.3776423,-0.29897,-0.3679035,0.15961237,-0.36126912,-0.17611589,-0.11135807,0.00081656873,0.15861757,0.53169256,0.025877101,0.15333977,0.25185928,0.19117993,-0.45720294,0.08695218,-0.12719283,0.40712595,-0.18792017,-0.0011404852,-0.31890026,-0.5271519,-0.21497838,-0.044583935,-0.21468426,0.29473397,0.15417348,-0.37384376,1.0843011,0.17960405,0.83635044,-0.09229412,-0.32587662,0.13292177,0.62966067,0.1508742,0.03896323,-0.42669377,1.0699822,0.7651417,-0.24482305,-0.36756912,-0.24738944,-0.31049547,0.22688113,-0.37497392,-0.22751819,-0.024725223,-0.82814914,-0.20885213,0.38071048,0.16899602,0.21044827,-0.16695367,0.37809762,0.20586443,0.2634505,0.21368808,-0.517834,-0.28418455,0.36681283,0.04285973,0.029590806,0.10231926,-0.26039234,0.34164855,-0.5121457,0.0058404603,-0.58417696,-0.049025018,0.17996228,-0.26076856,0.16590069,-0.066844344,0.13637236,-0.20101441,-0.3620343,0.050869618,0.38495374,0.4747635,0.59367543,0.840103,-0.2173521,0.12919632,-0.10799531,0.6035299,1.3869458,-0.37148944,-0.1026122,0.38143435,-0.35072926,-0.8286915,0.15696792,-0.32809153,0.08722896,0.024231195,-0.47587192,-0.49749604,0.23676209,0.085596085,-0.28649655,0.20857589,-0.4220678,-0.23586607,0.23944654,-0.33557138,-0.3589202,-0.24827635,0.2781013,0.87959975,-0.17947517,-0.18506582,0.089774214,0.2715069,-0.36710772,-0.7350733,-0.04773724,-0.43419623,0.39974698,0.42262682,-0.40678462,0.3712969,0.2419165,-0.58989054,0.10807005,0.42653427,-0.22066693,0.042502075,-0.6153973,0.13202554,0.8129867,-0.10567812,-0.36218724,-0.519144,-0.6821506,-0.89668185,-0.41494313,0.5210037,0.05137941,-0.014794994,-0.5051565,0.00089714926,-0.17449592,-0.06197171,-0.030586096,-0.4713224,0.38740036,0.067704655,0.5336487,-0.19500093,-0.90260047,0.20904994,0.06656567,-0.38899526,-0.6496441,0.5051355,-0.3512341,0.9155118,0.15804046,-0.134721,0.5368494,-0.6431539,0.39586392,-0.3970605,-0.23422253,-0.58742684,-0.061871976 +174,0.43909267,-0.19819227,-0.2851422,-0.16326417,-0.1530015,0.034272857,-0.21820332,0.3575476,0.20625731,-0.47130612,-0.29976174,-0.26273486,0.1278845,0.3762991,-0.2106073,-0.6055124,-0.03375524,0.13839816,-0.3611321,0.60787314,-0.4853061,0.1920444,0.10703576,0.4561946,0.2857412,0.11405896,0.21168683,-0.17583427,-0.20475857,-0.28890026,-0.106325895,0.38252708,-0.72264683,0.27763954,-0.13713011,-0.32570663,-0.015657496,-0.36711296,-0.41106626,-0.8074525,0.21863113,-0.9757862,0.42738774,0.16594537,-0.25932437,0.3769881,0.19380614,0.20435153,-0.21703172,-0.09472808,0.18005091,-0.3006589,-0.18126033,-0.07212616,-0.03702226,-0.39785114,-0.6348453,0.07875768,-0.37486437,-0.13373142,-0.47589138,0.19087833,-0.32097685,-0.019143214,0.08016272,0.5137959,-0.4467931,-0.06684519,0.16817181,-0.14882912,0.45289284,-0.5525525,-0.3002249,-0.15944704,0.22055973,-0.27820545,-0.21044558,0.3322088,0.3560282,0.46297053,0.018267252,-0.16994278,-0.274437,-0.08716007,0.13495363,0.3952332,-0.25059906,-0.6683836,-0.07541443,-0.12433961,0.28115574,0.19272739,0.066134706,-0.24959055,-0.038836196,0.10706169,-0.2943718,0.37938344,0.53407675,-0.27568254,-0.3920363,0.23257788,0.45416948,0.046553418,-0.021744935,-0.04479198,0.09030687,-0.40957293,-0.09523574,0.10778424,-0.3656279,0.6239684,-0.23807772,0.11975439,0.7326832,-0.3153543,0.111995965,0.10456533,0.05772672,-0.11917679,-0.18480007,-0.4100771,0.3081559,-0.5744496,0.18994313,-0.33684048,1.0111932,0.15344247,-0.6695105,0.24934033,-0.5529122,0.16849783,-0.22328326,0.7037311,0.6999152,0.42752773,0.4747316,0.6193275,-0.5228245,-0.015713416,0.005389234,-0.313888,0.15578482,-0.38872975,0.02827793,-0.3773258,-0.1494103,0.13751009,-0.06690118,0.038382895,0.3991747,-0.4966645,-0.034965817,0.17177725,0.77106607,-0.2854177,-0.014769146,0.7629001,1.11279,1.0348536,0.17328757,1.186417,0.35686156,-0.16278793,0.13066873,0.005603309,-0.6685581,0.33060327,0.37503022,-0.2675784,0.0853865,0.07398062,-0.021049835,0.3315169,-0.6710501,-0.031904038,-0.23282312,0.25348112,-0.01086308,-0.056709416,-0.4781616,-0.35377863,-0.03037714,-0.031346798,-0.028780947,0.36407387,-0.12403551,0.49711683,0.11528846,1.0425187,-0.0701036,-0.010402739,-0.07420756,0.6103766,0.019202547,0.011787222,0.052367512,0.20829996,0.42448142,0.11929855,-0.71294504,0.121927746,-0.23323403,-0.45115936,-0.22208677,-0.34583628,-0.002360717,0.12762037,-0.22469448,-0.17567986,-0.19645882,-0.21198283,0.5381843,-2.5579436,-0.045993898,-0.06611133,0.16755547,-0.13708217,-0.15109856,0.0136470515,-0.59256274,0.5374862,0.3761442,0.5342516,-0.71405894,0.10878175,0.5049512,-0.56559664,-0.21651822,-0.77640593,-0.16332634,-0.12219075,0.42856374,0.06425292,-0.049815528,0.046211403,0.02546694,0.60785997,0.1325919,0.18327552,0.16517378,0.30290553,0.042335745,0.3442046,0.15757273,0.47557625,-0.31694204,-0.23037912,0.41629127,-0.3736973,0.30682582,-0.23775242,0.017970165,0.43724093,-0.3383784,-0.8863074,-0.7868029,-0.5091698,1.2452604,-0.21617723,-0.5798,0.24455863,0.055464193,0.045799576,-0.006424372,0.37805653,-0.23497353,0.036961637,-0.86534476,0.019494763,0.030148549,0.19351894,0.046953455,0.051535275,-0.48461592,0.6117576,-0.0717197,0.2064253,0.35704437,0.25225767,-0.438082,-0.6895152,0.05617889,1.0376296,0.40837485,0.25655746,-0.32341924,-0.3379785,-0.28430408,-0.16664106,0.14645174,0.50274694,0.7570962,-0.06150317,0.16521165,0.26556438,-0.104007706,0.050661862,-0.10281475,-0.3922207,-0.17344196,0.22220062,0.72772056,0.6611664,-0.14955649,0.3668615,-0.044568352,0.24422798,-0.050650734,-0.43925518,0.70680994,1.1253537,-0.118237264,-0.12655763,0.7587328,0.5815708,-0.3090502,0.6084343,-0.6877916,-0.5514402,0.61723477,-0.16909687,-0.5471524,0.08814759,-0.42386422,0.156278,-1.0521764,0.4285069,-0.35328737,-0.42537925,-0.65658385,0.03784957,-3.309523,0.107814424,-0.37660775,-0.17347027,-0.24048258,-0.24077217,0.4161863,-0.5291971,-0.5249619,0.2390852,0.118655525,0.6105514,-0.006576822,0.21024425,-0.3126957,-0.1029426,-0.26271412,0.22076339,0.2907058,0.2627807,0.010555308,-0.48811376,0.22036828,-0.091289096,-0.34379548,0.0028676367,-0.48189676,-0.6356983,-0.21594623,-0.50819266,-0.37747085,0.5610869,-0.5511903,0.06794703,-0.2031106,0.0068712602,-0.2660778,0.35870603,0.20692846,0.16535881,0.05392548,-0.010551769,-0.11593868,-0.34272173,0.39220974,0.043155484,0.05185555,0.3818043,-0.20367765,0.15928735,0.5459616,0.51643765,-0.076283075,0.92006016,0.47273657,-0.03485397,0.2605944,-0.33675745,-0.40382516,-0.7020773,-0.32739285,-0.17234072,-0.32471746,-0.3776291,0.007222164,-0.28125006,-0.8114477,0.6137097,-0.10919891,0.33531874,-0.19443956,0.24836475,0.39698452,-0.24212262,-0.1065615,-0.11269304,0.00698951,-0.7307613,-0.20613256,-0.78206474,-0.54949147,0.07763077,0.7620761,-0.13655208,-0.07370741,0.103694476,-0.10970264,0.107480325,0.2095515,-0.038759585,0.037244353,0.57896656,0.109818704,-0.83692276,0.59198755,0.063717455,-0.065053016,-0.6267928,0.3687293,0.62135404,-0.7208265,0.42274967,0.6093812,-0.029815426,-0.04267114,-0.48002535,-0.30430177,-0.24201587,-0.16622011,0.37846082,0.18067844,-0.79356,0.530959,0.40542632,-0.26647016,-0.7851318,0.5493343,-0.006041678,-0.12346638,0.16963045,0.3434046,0.19144191,0.08747797,-0.10182015,0.20720537,-0.4659069,0.28501865,0.09184143,-0.08426164,0.38292557,-0.1400514,-0.092221566,-0.8561373,0.06310268,-0.5251429,-0.26904666,0.0920176,0.073410034,-0.12109751,0.34439597,0.09086467,0.40603468,-0.10727361,0.073378585,-0.13777536,-0.34096915,0.34583458,0.57114804,0.52286786,-0.43806523,0.7594561,0.066659205,-0.15282384,-0.109964415,0.010129475,0.39275837,0.13712515,0.35081065,0.12546064,-0.3323068,0.21528523,0.7330192,0.18570012,0.5738912,-0.047802787,0.001686275,0.37051913,0.16617237,0.28790885,0.049456183,-0.5187646,-0.08305835,-0.4686216,-0.020783829,0.50399905,0.11846157,0.42088002,-0.12818323,-0.11648483,0.034401715,0.038157463,-0.029210063,-1.156487,0.4692826,0.21442547,0.6841308,0.64440686,-0.14594579,0.16821851,0.78297544,-0.37676418,0.0050977594,0.36136296,0.21715233,-0.5042589,0.68094975,-0.87753254,0.4116084,-0.17974363,0.13951775,-0.06367612,-0.03026809,0.3201499,0.8157496,-0.22379485,0.058542363,-0.072608724,-0.3910485,0.31952617,-0.45761812,0.21941763,-0.5017955,-0.17284921,0.74887836,0.47855127,0.29135334,-0.18444262,-0.059235968,0.062040273,-0.12383412,0.2743749,0.026309889,0.014438712,-0.056333356,-0.6051743,-0.18541215,0.62597185,0.004594363,0.19292644,0.0150187295,-0.15913273,0.29770246,-0.30469128,-0.030373152,-0.08170894,-0.6763171,-0.12480216,-0.2874768,-0.38198745,0.5917861,-0.43593374,0.19724132,0.21850087,0.15969276,-0.253977,0.09231683,0.24360286,0.5478364,0.11620903,-0.34685114,-0.36418825,-0.003128084,0.24728945,-0.17418163,-0.22909194,-0.08494007,-0.11329719,-0.47833017,0.49317396,-0.29341665,-0.163929,0.078605205,-0.26498425,-0.023496522,0.6102091,-0.023641856,-0.14260253,0.18450461,-0.14231429,-0.2777755,-0.1302654,-0.11382853,0.28680024,0.27605394,0.05140578,-0.19958463,-0.27974442,-0.20134386,0.29047954,-0.11066453,0.27550504,0.3119224,0.06278772,-0.28539884,-0.18468904,0.065008506,0.43445662,0.06869432,-0.18188961,-0.15824877,-0.41269472,-0.33406317,0.04637963,-0.136623,0.24666384,-0.0038009034,-0.41838852,0.72986054,-0.13337444,0.99965465,0.012096967,-0.4766335,0.12348202,0.49129847,-0.15514758,-0.051894136,-0.29932737,0.89393675,0.44675958,-0.16333954,-0.17094828,-0.5953527,0.046207152,0.26398155,-0.16922225,-0.20263806,-0.051667623,-0.61217415,-0.34560552,0.36378437,0.4436115,-0.023056097,0.018660618,-0.042248204,0.26029742,0.13757831,0.6526473,-0.50687003,-0.07574176,0.34891242,0.30530232,0.021102218,0.14074276,-0.27074462,0.43946213,-0.5962935,-0.02073862,-0.3825726,0.041622803,-0.41254786,-0.3356735,0.20029235,0.1315203,0.40792227,-0.1578024,-0.33047566,-0.24633199,0.5661447,0.11692,0.0912946,0.6213572,-0.285271,-0.035694595,0.047179278,0.46380454,1.1136775,-0.3725672,-0.029878823,0.18179105,-0.32688463,-0.5950274,0.60098743,-0.60556614,0.15193973,0.0983254,-0.32929686,-0.5218058,0.052620776,0.2674065,0.0981205,0.18864878,-0.6217238,-0.14054781,0.21389325,-0.2798929,-0.24542156,-0.22696151,0.23506238,0.49456835,-0.36533037,-0.19001985,0.055440526,0.31243452,-0.21749766,-0.55265695,-0.067496344,-0.27997497,0.3678767,0.18594998,-0.41814497,-0.072696514,0.26099417,-0.4418352,0.0025356503,0.11393236,-0.35966602,0.1011,-0.34978908,0.28653458,0.7217778,-0.16325396,0.18236017,-0.7367264,-0.37366262,-0.7984822,-0.31349266,0.60106915,0.26969716,0.10181706,-0.53168315,0.03318704,-0.12679504,0.059210487,0.0037794297,-0.5695573,0.56177074,0.23303911,0.45558354,0.083296224,-0.702227,-0.015253002,0.07490198,0.03167804,-0.70261997,0.503383,-0.10911744,0.80147636,0.1451526,0.12731025,0.22057398,-0.5238332,0.008767857,-0.20406574,-0.3076145,-0.6864863,0.055350836 +175,0.45106384,-0.19562773,-0.52528226,-0.052194696,-0.22866866,0.017123563,-0.08747257,0.31242526,0.18610677,-0.37552637,-0.05258345,-0.2098792,0.14251032,0.2641493,-0.085009694,-0.53981227,0.05681867,0.19805495,-0.6712932,0.5416213,-0.34740365,0.25755054,0.11051153,0.29750577,0.18952554,0.35585627,0.16817074,-0.18004872,-0.100505725,-0.05889829,-0.18908675,0.19903083,-0.30936226,0.129434,-0.08591037,-0.24811761,-0.019588945,-0.54152703,-0.3317976,-0.6550135,0.29061958,-0.7206459,0.5026483,0.046490766,-0.23896,0.31727803,0.17901258,0.3723268,-0.29529545,-0.06511405,0.14088835,-0.023985637,-0.10334534,-0.18502855,-0.1140886,-0.26965332,-0.48266146,-0.0234774,-0.32758978,-0.26127565,-0.25388822,0.053397182,-0.3085985,0.01570087,-0.055087972,0.5798144,-0.46761042,-0.02464795,0.26870528,-0.14990412,0.37176058,-0.37692323,-0.07755612,-0.092125244,0.3862456,-0.19944283,-0.22394663,0.23062387,0.4455829,0.32143128,-0.024101429,-0.07746328,-0.22944818,-0.10145887,0.14881532,0.49956158,-0.14265923,-0.59863484,-0.21643752,0.08082175,0.06190228,0.22609153,0.2067837,-0.3408242,-0.15446948,-0.04439223,-0.207755,0.39658636,0.32641804,-0.37641034,-0.18046378,0.34911105,0.5695372,0.1430893,-0.17968993,-0.0050895056,-0.019016627,-0.48808116,-0.15395851,0.0136907995,-0.16350812,0.3915446,-0.22354822,0.33954257,0.74020517,-0.10397987,-0.042765096,0.042434685,0.031003276,-0.20792867,-0.23232633,-0.083789915,0.20075607,-0.47917548,0.09656288,-0.108410135,0.74004465,0.20504488,-0.7527275,0.33114877,-0.5907025,0.19181944,-0.13473143,0.4395232,0.6274722,0.3604061,0.21880606,0.70929027,-0.42672288,0.0977421,-0.062363245,-0.57041353,-0.008809272,-0.059618436,-0.05825158,-0.62409997,-0.0001306971,0.036500625,-0.119159535,0.10980673,0.2713435,-0.55786437,-0.06558772,0.11662021,0.8645632,-0.2895099,-0.10148291,0.7234527,0.8871869,0.85841507,-0.012012828,1.1032488,0.12789568,-0.3507962,0.24591534,-0.39739674,-0.66376483,0.3425681,0.41073567,-0.06314931,0.27968222,-0.0005455772,0.056011844,0.2600573,-0.28217897,0.104678266,-0.12290194,-0.035071295,0.04182198,-0.16751817,-0.48099232,-0.22248538,-0.15422077,0.096252955,0.14369932,0.1666382,-0.15405057,0.4758397,0.08337248,1.8721431,-0.010948309,0.20154938,0.078195006,0.37147126,0.29254004,-0.08752079,-0.30618784,0.3731308,0.32239878,0.23647556,-0.5722458,0.14663666,-0.16206864,-0.4436946,-0.05595747,-0.37003443,-0.077139236,-0.052716855,-0.4055436,0.027368056,-0.17071374,-0.32476228,0.517956,-2.8049378,-0.20589256,-0.15265939,0.30543745,-0.24820639,-0.3033081,-0.17270564,-0.4005434,0.3436549,0.2529434,0.59745574,-0.66914016,0.38941413,0.3572507,-0.54590416,-0.11263214,-0.5352867,-0.12525043,0.02913606,0.32303482,0.0041109086,-0.027324302,0.042959657,0.23455146,0.44353855,-0.054181393,0.024388552,0.18082593,0.38649672,0.08103515,0.6215751,-0.005088502,0.56287456,-0.083256215,-0.23291254,0.18441005,-0.08630918,0.20718905,-0.05863534,0.13401915,0.45438066,-0.41746798,-1.0134037,-0.5756188,-0.11800282,1.1203955,-0.33937293,-0.26582754,0.2866275,-0.22964856,-0.27369064,-0.048427097,0.41488343,-0.04942871,-0.040959723,-0.8947779,0.18667746,0.030419815,0.12859555,0.10063485,-0.19669908,-0.41904885,0.7012522,-0.05681602,0.5886345,0.29605517,0.15622215,-0.20895582,-0.45361626,0.03475778,0.8919293,0.31127784,0.034795698,-0.0719032,-0.14325716,-0.44945458,-0.05985059,0.09755274,0.44012058,0.62987894,0.048435654,0.13471751,0.25680727,0.020506648,0.12576391,-0.13105187,-0.29163033,-0.04516422,-0.27187252,0.5134962,0.59296125,-0.28097495,0.5655441,-0.087709434,0.34605375,-0.05400844,-0.48033184,0.6684733,0.9816558,-0.16411386,-0.28349307,0.5542776,0.32971743,-0.23153336,0.30618593,-0.45284593,-0.17855495,0.52739024,-0.25782523,-0.41808274,0.32872972,-0.23947798,0.21476069,-0.98462963,0.2322616,-0.28861675,-0.42735514,-0.34408778,-0.048687458,-3.952385,0.28244755,-0.26939714,-0.21681118,-0.11199745,-0.025406213,0.08905055,-0.61274093,-0.55444646,0.16287763,0.06787556,0.7706092,-0.13128263,0.14580713,-0.13567342,-0.31199643,-0.13720137,0.13046339,0.07508776,0.31759483,0.004648348,-0.50221723,-0.14642055,-0.13037504,-0.5423978,0.13527584,-0.5372475,-0.4364497,-0.027046137,-0.55429655,-0.36065328,0.6641309,-0.16495101,0.097052075,-0.14738001,0.03109918,-0.0870043,0.32518002,0.03207779,0.14211187,-0.027040549,0.012678713,0.03832071,-0.17158821,0.23675396,0.024332397,0.28327072,0.1344154,-0.15489079,0.198944,0.44647223,0.605335,-0.07477036,0.77011734,0.46348056,-0.12367151,0.2255746,-0.33108202,-0.3107002,-0.5685962,-0.35442963,0.041991282,-0.39320186,-0.54268616,-0.17014939,-0.3369591,-0.646088,0.5172338,0.060865752,0.12417283,-0.14351885,0.2776982,0.57974035,-0.242831,0.020382594,0.02206804,-0.19977704,-0.6544421,-0.106360756,-0.6381089,-0.30107364,0.15777503,0.86381215,-0.394288,0.102521196,-0.089833856,-0.22536412,0.020568471,0.120629445,0.0069745937,0.35142803,0.34983456,-0.28813496,-0.6639465,0.48589426,-0.19235769,-0.27405745,-0.6029533,0.20206347,0.6264082,-0.58324444,0.5957635,0.36070883,0.00092144014,-0.16280572,-0.31395042,-0.11582612,0.03518106,-0.24587394,0.38731024,0.19549379,-0.6419699,0.3919382,0.38464698,-0.19158958,-0.67366105,0.57071626,0.08370916,-0.27707493,0.015072803,0.3720862,0.113082364,-0.04097213,-0.3163096,0.22549456,-0.39996994,0.2833272,0.16826425,-0.12593685,0.28996667,-0.18048471,-0.22659926,-0.79267716,-0.04834095,-0.53884834,-0.11645536,0.33980653,0.1060247,0.14879324,0.026496394,-0.12537655,0.4086198,-0.305424,0.08665418,-0.0683909,-0.116100535,0.32141045,0.4022052,0.33101833,-0.4841465,0.5119346,0.01260461,-0.14265724,-0.056781225,0.0016045967,0.53448564,0.100841016,0.39507905,0.0069571636,-0.33951578,0.3165787,0.53580743,0.16918232,0.3786159,0.048599817,-0.08120745,0.17771278,0.07847247,0.22413209,-0.0018886566,-0.53393155,-0.055104837,-0.20391063,0.12576382,0.55482584,0.19875094,0.16832368,-0.08981325,-0.46189472,0.012091081,0.20816495,0.08659364,-1.127425,0.4632033,0.20752405,0.7272738,0.45859095,0.0031526526,0.033826437,0.6807235,-0.22081047,0.23001482,0.3042936,-0.020967882,-0.5877766,0.5246349,-0.7910667,0.40002477,-0.02740494,-0.049081422,0.047919035,-0.10484738,0.277814,0.7937616,-0.14345405,0.03943404,-0.058192916,-0.27568674,0.18467309,-0.38411,-0.06995525,-0.6014028,-0.31031767,0.5666599,0.44792402,0.23335157,-0.11195367,0.09355626,0.20691109,-0.09101491,0.034258734,0.15630038,0.25678355,-0.006751569,-0.76760745,-0.19063811,0.5446055,-0.025358772,0.18601976,0.05283069,-0.05803639,0.28613326,-0.21033001,-0.036465097,-0.12163858,-0.5886716,-0.02104307,-0.25178745,-0.3857835,0.52028465,-0.15944582,0.32868242,0.19222252,0.038552012,-0.20832556,0.41114026,0.04054012,0.7485669,0.030373577,-0.14858148,-0.3273551,0.27007666,0.14729418,-0.15535502,-0.09738569,-0.31773666,0.008169945,-0.591716,0.56009537,0.047710158,-0.33762136,0.109997034,-0.051673483,0.010743683,0.6493565,-0.22892371,-0.14796396,-0.28963357,-0.18317989,-0.22836894,-0.2113278,-0.0787484,0.1752002,0.25404748,0.0091136955,-0.122724675,-0.018543398,-0.195739,0.37826687,-0.03866694,0.4851348,0.29706347,0.09379414,-0.34971154,-0.13058539,0.29834118,0.29769167,-0.026871895,-0.1471719,-0.32698965,-0.40435913,-0.3435213,-0.020983648,-0.02784007,0.34722176,0.05993259,-0.11643548,0.80200464,-0.017620603,1.0742421,0.020679263,-0.3710422,0.16045456,0.47381237,0.03369151,-0.09256204,-0.18463469,0.91010344,0.541026,-0.012733976,-0.12096286,-0.33611095,-0.036704656,0.054376435,-0.21047755,-0.16554357,0.04209288,-0.36377946,-0.37442464,0.25556463,0.18487328,0.3738364,-0.1012862,0.10241305,0.28653657,0.0116094705,0.20962134,-0.5008373,-0.3607622,0.2069379,0.31219986,0.045122743,0.081377715,-0.52101004,0.472447,-0.4161082,0.14119367,-0.23695841,0.23506472,-0.20577344,-0.18473047,0.22768387,0.0021353562,0.3524373,-0.27746412,-0.37497416,-0.3565872,0.47048128,0.18194826,0.033168085,0.65833133,-0.30050603,0.059712544,0.13023785,0.4486528,0.90374833,-0.2011551,-0.0072755176,0.4479986,-0.24616246,-0.5694179,0.3155325,-0.29578397,0.17468032,0.0078065195,-0.15202612,-0.5048801,0.26450777,0.15182638,0.095292106,-0.10969203,-0.6281174,-0.24247263,0.3678787,-0.26750806,-0.16627921,-0.31516322,0.12212266,0.51811635,-0.27668792,-0.4100856,0.117362596,0.03169792,-0.09478131,-0.63229185,-0.15806907,-0.28469685,0.29916194,0.10675279,-0.2694566,-0.11491091,-0.010980773,-0.42630526,0.24867126,-0.019155018,-0.30357975,0.17722975,-0.2731168,-0.18909405,0.9862487,-0.2510452,0.08243624,-0.47995836,-0.42502195,-0.7558313,-0.32128304,0.60054153,-0.09436749,0.03780435,-0.6080181,-0.0011211882,-0.057739962,-0.110298045,-0.08293686,-0.29573014,0.32776248,0.09662862,0.38020286,-0.047333352,-0.7616505,0.2511874,0.014834178,-0.17183742,-0.67176193,0.50555253,-0.03366893,0.7975538,0.080975294,0.044452142,0.446725,-0.47895563,-0.25373003,-0.22253805,-0.14742035,-0.6617591,0.026511775 +176,0.23508285,-0.13497165,-0.70761263,0.03973901,-0.4161046,0.15051955,-0.39106977,0.08477128,0.1993538,-0.55698836,0.012265637,-0.26266837,-0.06311646,0.29103345,-0.035220437,-0.53381926,0.052783545,0.44032186,-0.6261978,0.7250906,-0.37647003,0.27201578,0.28227976,0.24576154,-0.098706454,0.070217684,0.23289187,-0.18862425,-0.049948674,-0.23455653,-0.13850711,0.083456315,-0.5596725,0.39475626,-0.07461907,-0.39062655,0.1610638,-0.34857857,-0.13620299,-0.66392887,0.009306147,-0.7560407,0.6305184,0.11235228,-0.25738412,0.2290423,0.3808214,0.20060757,-0.069170214,0.0487634,0.21572201,-0.48787135,-0.61032295,-0.422109,-0.37359473,-0.46902063,-0.5682844,-0.14751595,-0.53167516,0.116918966,-0.34575206,0.37841687,-0.36328653,-0.12733687,-0.20996942,0.413987,-0.33041957,0.32098168,0.1623242,-0.32366997,0.11198903,-0.50505,0.017905822,-0.13175549,0.18445018,0.21684207,-0.27920386,0.14622304,0.26685187,0.7075673,0.20113581,-0.29005948,-0.32209042,-0.22043107,0.1341477,0.56931126,0.019553801,-0.040421046,-0.21677485,-0.2627158,0.25710118,0.33974805,0.00540118,-0.22291343,-0.1731403,-0.36526102,-0.28889495,0.12207244,0.42376012,-0.37682426,-0.13936864,0.4386967,0.26184615,-0.11822883,-0.18106978,0.15810393,-0.05478339,-0.5846714,-0.2680443,0.22278056,0.05907353,0.49920756,-0.2215895,0.3649336,0.61684597,0.00635491,-0.3334144,0.08145322,0.00029083856,0.045650266,-0.28122193,-0.07622487,0.3570366,-0.54738486,-0.09843208,-0.4049086,0.7972942,-0.071041234,-0.66775507,0.37086293,-0.61611336,0.1296947,0.05248906,0.78813577,0.7463046,0.7582734,0.08550675,0.8742007,-0.35281834,0.25646466,-0.24447481,-0.25767827,0.16398628,-0.04966702,0.46825936,-0.36606914,0.18503952,-0.11460078,0.0016208612,-0.008760769,0.8436223,-0.46189374,-0.3397355,0.039151587,0.8491,-0.27382553,-0.14633083,0.66781294,0.8576132,0.9189748,0.07181342,1.274213,0.3830508,-0.14662439,-0.24744003,-0.03671768,-0.8359372,0.1596975,0.091832645,0.5566454,0.10237789,0.14403298,-0.24966821,0.53333306,-0.18580039,-0.23759486,-0.24445167,0.25149325,-0.1664252,-0.1458555,-0.29424584,-0.3874434,0.16148883,-0.1458427,0.37521335,0.47960517,-0.13627289,0.73104817,0.054123897,1.7531657,-0.094696775,0.15585886,0.2154471,0.14608277,0.32363003,-0.033891227,-0.11202638,0.51637787,0.16314451,-0.08856131,-0.57184637,0.040183607,-0.1348995,-0.5641614,-0.19990213,-0.22412099,-0.3112237,-0.3460191,-0.19567083,-0.3889582,-0.16646884,-0.5069349,0.35908172,-2.5083232,-0.1435791,-0.0729042,0.29583237,-0.24288188,-0.2216065,-0.26181224,-0.478015,0.7131662,0.25608763,0.5671746,-0.50729823,0.45417506,0.44331744,-0.4559194,-0.28690296,-0.83705735,-0.038488373,-0.08272162,0.4589686,-0.12648019,-0.42652544,-0.2150983,-0.26487863,0.6062826,-0.18093652,0.14502159,0.50092024,0.5648536,-0.033825282,0.5119423,0.013140935,0.73976666,-0.508678,-0.30821896,0.31372184,-0.5003827,0.5735086,-0.1686953,0.067964524,0.4348669,-0.4566504,-0.69623727,-0.4380706,0.024124531,0.9608339,-0.36936644,-0.5530725,-0.01158309,-0.3659546,-0.14614369,0.15674923,0.53646415,-0.009512873,0.079843834,-0.5890528,0.026360832,0.047463957,0.48044586,-0.046580706,-0.0031155485,-0.44796917,0.6301218,-0.14790998,0.75213474,0.4947682,0.15693809,-0.40797657,-0.21336962,0.19677892,0.87006754,0.14695062,0.09162671,-0.28782362,-0.39854905,-0.123130694,-0.3329317,-0.089128144,0.6261925,0.5389255,-0.108884975,0.1940554,0.45656264,-0.3367216,-0.03715246,-0.31074885,-0.3517952,-0.18520373,0.12466948,0.47160047,0.7453159,0.102162525,0.4778391,0.0010248239,0.44166696,-0.34976628,-0.66762614,0.6179706,0.57122904,-0.240539,-0.20447108,0.64359474,0.44242284,-0.13649838,0.58506393,-0.52917945,-0.5936274,0.29325706,-0.03630437,-0.50726235,0.12775265,-0.21599467,0.0021110636,-0.85940117,0.04167974,-0.31521717,-0.5574165,-0.71457744,-0.051660415,-2.5906847,0.2319104,-0.31331727,-0.06787907,-0.2211004,-0.05707242,0.114181906,-0.23926584,-0.38989764,0.15162988,0.326561,0.48732117,-0.13133456,0.16539481,-0.36843726,-0.31538236,-0.26941797,0.2490615,-0.071464874,0.15101098,-0.28580415,-0.52751386,0.09886729,-0.121053904,-0.17634854,-0.07263757,-0.68675953,-0.21215843,0.007960086,-0.2996512,-0.37149063,0.6391388,-0.3479505,0.020481901,-0.44672346,0.09359605,0.13462433,0.24080513,-0.034658004,0.23862466,-0.010026391,-0.19940679,-0.17488582,-0.20471624,0.06052856,-0.11362048,0.28760904,0.5332153,0.0013999847,0.12644821,0.3844479,0.5255397,0.03497999,0.88101834,0.24415728,0.017572755,0.29356045,-0.1107099,-0.20760895,-0.45418623,-0.18040484,-0.20316352,-0.51120955,-0.33741167,0.12109562,-0.28813484,-0.9141178,0.7853928,0.35829207,-0.29476318,-0.050160807,0.66775614,0.46772724,-0.2661028,-0.048419956,-0.22276634,-0.3034979,-0.28836682,-0.47741917,-0.7778617,-0.45193607,0.17761843,1.1656839,-0.41272208,-0.009404402,0.14977425,-0.2820926,-0.16038671,0.5084617,0.11296581,0.28538853,0.46910858,0.02321742,-0.6265862,0.6355801,-0.21085276,-0.10861328,-0.56273574,0.30364567,0.57943594,-0.8416102,0.3866919,0.5096934,0.04446446,-0.07869485,-0.7878091,-0.18524916,0.13886383,-0.24994276,0.31604502,0.33434618,-0.8319739,0.6185265,0.263757,-0.07392398,-0.97002834,0.0074207094,-0.032322966,-0.39467862,0.025329646,0.32755104,0.18207106,0.17060553,-0.34252375,0.0881884,-0.4536945,0.30749366,-0.017899714,-0.17622031,0.47592053,-0.4434239,-0.27525532,-0.7681507,-0.080589086,-0.53445846,-0.2865259,0.3453186,0.060028084,0.12322479,0.16410185,0.0882179,0.27760702,-0.34363043,0.06583108,-0.29987553,-0.21336064,0.37325615,0.4024695,0.207244,-0.5549729,0.6786762,-0.037373513,-0.091984384,-0.09474034,0.043653194,0.371203,0.15370086,0.5972602,-0.09726914,-0.17467394,0.20793557,0.87108266,0.12241921,0.36951384,0.24653032,-0.033494804,0.5450629,0.012645217,0.17893738,-0.10248419,-0.49048072,-0.11165815,-0.33286604,0.3189732,0.6006912,0.17094305,0.7229223,-0.06958098,0.09476423,0.10299547,0.1691096,0.06562522,-0.76087433,0.4468455,0.33551413,0.5309659,0.5782618,0.17901948,0.054352872,0.79468226,-0.43342793,0.17648576,0.2609057,-0.19475079,-0.25514358,0.710287,-0.7986857,0.28564554,-0.27341932,-0.012313281,0.15513614,0.0063415216,0.4453813,1.0473832,-0.14279245,0.0972279,-0.013863937,-0.38674262,-0.011300115,-0.14034213,-0.03654596,-0.44302866,-0.4017111,0.69108766,0.27508837,0.49734402,-0.33758357,-0.062106546,0.36076954,-0.030412756,0.17232227,0.109148756,0.049258754,-0.0820106,-0.37525484,-0.051196754,0.8350229,-0.015068054,0.24185163,0.20641294,-0.21912374,0.3925889,-0.12998685,-0.17942649,-0.14623497,-0.47854567,0.21221901,-0.3519891,-0.57677835,0.5826426,-0.0053728614,0.18581659,0.14602242,0.11753725,-0.22786936,0.46666738,0.060890444,0.8002915,0.0785705,-0.09678362,-0.034299836,0.006167054,0.17927216,-0.36286637,-0.09714831,-0.19307202,0.14966199,-0.81584686,0.3527202,-0.25860408,-0.37630442,0.15739194,-0.15501168,-0.0870796,0.44856754,-0.08266808,-0.05550025,0.068594545,-0.17294209,-0.40674523,-0.2332386,-0.20386201,0.19921468,-0.11817488,0.00029785818,-0.19324988,-0.0654263,-0.075372964,0.39454472,0.03217659,0.021548977,0.22614273,0.22572173,-0.4137099,0.22246951,0.18118554,0.66144526,-0.09629214,-0.016659755,-0.20654644,-0.21227019,-0.35749483,0.36119908,-0.14021425,0.17584863,0.048136625,-0.40078813,1.0712606,0.010619888,0.8689203,0.03548938,-0.26247686,0.11591336,0.5404507,0.16488358,0.19493955,-0.26875484,0.9416104,0.43566,-0.08431096,-0.11859703,-0.52081835,-0.13051948,0.45026547,-0.36834273,-0.10371472,-0.064212225,-0.7446481,-0.108604945,0.18562382,0.07801456,0.06589882,-0.32305983,0.15375704,0.12748027,0.19448665,0.17669916,-0.6500416,-0.03836246,0.35540062,0.29684114,-0.1525005,0.09956268,-0.35426092,0.43798226,-0.6956695,0.30432814,-0.24024627,-0.032369055,-0.058506165,0.01976846,0.25974935,0.03628883,0.17797302,-0.28923327,-0.27539554,-0.061350934,0.42874452,0.4416134,0.45211047,0.8612193,-0.25019747,-0.0064216396,-6.309839e-05,0.6194259,1.188527,-0.46602324,-0.24754861,0.32601345,-0.27131188,-0.81250703,0.15104939,-0.37836966,-0.17230909,0.031101497,-0.44673917,-0.26515344,0.25661343,0.15701869,0.005058949,0.08540474,-0.6569776,-0.0320146,0.18865493,-0.37377453,-0.21356465,-0.30044034,-0.029600987,0.76173884,-0.008761536,-0.23047444,0.019451784,0.1340034,-0.413926,-0.5670806,0.12470468,-0.5740529,0.18365607,0.21878503,-0.34081808,0.042729232,0.12224393,-0.71571213,0.048283935,0.24493894,-0.20560834,-0.022286724,-0.47717813,0.070647255,0.7930984,-0.06426359,0.13489524,-0.14982626,-0.6088431,-0.67852664,-0.35869974,0.2861172,0.0035015047,-0.029596861,-0.50323254,-0.14776573,-0.09886419,-0.34633234,0.07218075,-0.55926764,0.45707172,0.11894401,0.16335715,-0.15924686,-0.99506575,0.27524793,0.06951797,-0.28831017,-0.3933884,0.40970275,-0.3011613,0.9744914,0.113267645,-0.0937502,0.44796398,-0.8106635,0.38805625,-0.3659314,-0.30762962,-0.719068,-0.20757344 +177,0.6750282,-0.11934945,-0.6944818,-0.097313285,-0.467983,0.050199144,-0.23556766,0.382272,0.18191886,-0.47745654,-0.18621792,-0.087048024,0.027905231,0.24888201,-0.17617007,-0.8381139,0.18468593,0.3580955,-0.5950115,0.72379404,-0.3480723,0.35323763,0.02556471,0.29568288,0.24095544,0.31115043,0.14264615,-0.041777764,0.033897303,-0.10103798,-0.16708685,0.3822415,-0.47936282,0.28861982,-0.11113189,-0.5111182,-0.14073391,-0.22161447,-0.39390016,-0.7937349,0.28035945,-0.66635454,0.47070077,-0.089081906,-0.36030677,0.048451893,0.199051,0.4022445,-0.18727827,-0.011569897,0.029537467,-0.11867554,-0.3039587,-0.30668506,-0.18505211,-0.4885051,-0.5515201,-0.027272148,-0.5224788,0.080654144,-0.31402326,0.35112762,-0.2143553,0.07124947,0.0017984053,0.43508878,-0.36286482,0.01515784,0.1523062,-0.11849483,0.17789964,-0.49740577,-0.22307089,-0.08956297,0.19843963,-0.06038375,-0.4527358,0.2048172,0.1857096,0.40122467,0.0681139,-0.21098213,-0.45309192,-0.012284247,-0.013055956,0.57129174,-0.20436254,-0.45028564,-0.20755075,0.05073445,0.21008265,0.18172912,-0.07799268,-0.29477948,-0.059909582,-0.10599504,-0.22240189,0.4129985,0.54510415,-0.39830124,-0.16481875,0.38419285,0.6013806,0.050806325,-0.29412264,0.13116929,-0.08084569,-0.57293767,-0.17134318,0.03592368,-0.025280373,0.46585375,-0.11425663,0.26404187,0.57784855,-0.007067456,-0.29405642,0.20194301,0.11349134,-0.032119174,-0.2803811,-0.23094189,0.3958379,-0.46423173,0.06966703,-0.19029057,0.7190057,0.02948653,-0.8114446,0.3337464,-0.47723052,0.07313539,0.0032208508,0.42942157,0.6931947,0.43049905,0.16943371,0.8507591,-0.21823657,0.14146407,-0.11805908,-0.22436547,-0.20139958,-0.017054772,-0.13978367,-0.53779525,0.19740887,-0.011539452,-0.10375229,0.18647973,0.6449185,-0.64736146,-0.21180622,0.07262042,0.7189843,-0.42958555,-0.18171328,0.824781,0.90391546,1.0473412,0.08293751,0.9804868,0.2723069,-0.13953649,0.040794294,-0.35206527,-0.47191417,0.33770323,0.24948213,0.37731072,0.36340117,0.01584181,0.0012432617,0.5052449,-0.22893798,-0.17110541,-0.1236539,0.2173802,0.12826507,0.022263717,-0.59291303,-0.2304773,-0.029470257,0.18432659,0.22712235,0.20010827,-0.35318202,0.4062709,0.13181272,1.5919993,-0.037903976,-0.023257371,0.16612239,0.3362583,0.3433516,-0.14449275,-0.1961791,0.18982866,0.3287183,0.109621555,-0.51556945,0.007232624,-0.25803947,-0.46734267,-0.109168895,-0.2777129,-0.12151857,-0.23661451,-0.48717332,-0.2651584,0.059142716,-0.35819423,0.55254894,-2.5083673,-0.20221014,-0.15639156,0.3669679,-0.11686235,-0.38163295,-0.2586541,-0.40776607,0.38915753,0.33917585,0.45241702,-0.506187,0.5468126,0.33570364,-0.65316546,-0.037378,-0.5457787,-0.035881374,-0.029762253,0.43540654,0.06596744,-0.043521143,-0.0101330355,0.11306695,0.58083206,-0.3383402,0.027886951,0.31315303,0.28036246,-0.012401164,0.45170653,0.08366289,0.5408572,-0.29007092,-0.28489685,0.39080596,-0.36731452,0.107601374,0.02759288,0.15473804,0.44061947,-0.54622793,-1.0794321,-0.6321456,0.055786245,1.025497,-0.32679176,-0.4389899,0.19256476,-0.28574023,-0.2862146,0.051752485,0.2465551,-0.12917773,-0.011918404,-0.7706701,-0.02022452,-0.0003435261,0.17096102,-0.05956672,-0.087577045,-0.3900027,0.7471025,-0.12109793,0.58818465,0.26436448,0.32212862,-0.27028364,-0.53951323,0.01231014,0.99213856,0.28030905,0.10910916,-0.3198378,-0.298467,-0.29059258,0.063050255,0.21907221,0.6296008,0.61710775,0.017672721,0.08778291,0.22881494,-0.017349532,0.0984221,-0.21039282,-0.23412393,-0.17940441,0.075874135,0.78240997,0.61035013,-0.03566429,0.5921065,-0.0877738,0.39430547,-0.19194154,-0.59377587,0.399802,1.0915003,-0.23948254,-0.6127206,0.6057831,0.47067934,-0.14489047,0.29358414,-0.7139965,-0.36888638,0.3415684,-0.24793348,-0.22239985,0.24411367,-0.33027312,0.22769646,-0.9208172,0.17120905,-0.16233978,-0.7931008,-0.5633253,-0.2607501,-3.3004174,0.31028944,-0.04847638,-0.085694216,0.082113676,-0.25279027,0.17634624,-0.49441928,-0.50585115,0.047009476,0.09737743,0.8102297,0.013982848,0.098352626,-0.15192443,-0.3725978,-0.14045443,0.3683552,0.21075913,0.34553948,-0.012424418,-0.48636526,-0.004389588,-0.145845,-0.5161672,0.0018268719,-0.6560445,-0.5221736,-0.16312899,-0.65404063,-0.21249214,0.59491014,-0.4542459,0.15023845,-0.24155448,-0.035348922,0.084159836,0.16774286,-0.020221753,0.15343356,0.22131316,-0.089977436,0.18183184,-0.23899771,0.16623425,0.0014002516,0.14404237,0.20171583,-0.121295914,0.37707973,0.6188543,0.65809464,-0.076499805,0.93461007,0.527017,-0.05887866,0.23124276,-0.13707948,-0.34728214,-0.59587663,-0.27255952,-0.106897935,-0.49173665,-0.2578689,-0.09365713,-0.42698267,-0.78997374,0.6809146,-0.07939439,-0.048148442,-0.054668278,0.4024911,0.640749,-0.28214306,-0.124643974,-0.057027634,-0.2651738,-0.31513265,-0.3683008,-0.57100576,-0.52658755,-0.15973747,1.3931383,-0.20233317,0.01256968,-0.047708433,-0.0997929,-0.012197614,0.29391262,0.11475701,0.29228503,0.3749512,-0.31891525,-0.5922023,0.30248302,-0.4541426,-0.24331604,-0.49803632,0.28793073,0.5137492,-0.5629302,0.39312094,0.36260948,0.29478708,-0.03865385,-0.5477764,-0.073091164,0.13714974,-0.22570784,0.5562518,0.32625288,-0.71164715,0.5248331,0.24855204,-0.11313082,-0.80299664,0.58612996,-0.09256793,-0.4372429,-0.066566505,0.42257896,0.107878745,-0.12887825,-0.3936619,0.11435343,-0.25392076,0.17495628,0.22756653,-0.053670377,0.19595906,-0.38016245,-0.04389246,-0.83962977,-0.101668835,-0.42316788,-0.23555288,0.16749354,-0.10903067,0.093376085,0.049776867,-0.15631326,0.43764973,-0.34443328,0.029530259,-0.41396764,-0.26200673,0.38101944,0.45977622,0.3530521,-0.32570577,0.5445634,0.040841345,-0.043188564,-0.27987462,0.041817717,0.5303119,-0.17164506,0.5883836,-0.033046275,-0.09747776,0.19089603,0.66300863,0.22466733,0.47418427,0.031527787,-0.23265906,0.040854797,0.08699507,0.25795814,-0.040201068,-0.3275479,0.02716662,-0.21389179,0.18436363,0.632888,0.15547659,0.3618845,-0.09386895,-0.32877898,0.0546436,0.07002299,0.025163066,-1.6002897,0.43982735,0.20161837,0.7457571,0.4329139,0.15440764,-0.05102333,0.5654666,-0.15353146,0.12549134,0.25183025,-0.0717144,-0.18254821,0.38417011,-0.86545026,0.57134956,-0.061177626,0.065481044,0.07723371,-0.07992661,0.5213752,0.9948869,-0.13024962,0.15088747,0.048456453,-0.23589878,0.14400849,-0.27048886,-0.090365455,-0.64814156,-0.34584796,0.84645426,0.483956,0.5520437,-0.14130051,-0.07519175,0.15282103,-0.069818325,0.072236046,0.10106616,0.14651302,-0.053213723,-0.55580705,-0.20014659,0.47474524,0.056427564,0.11884901,0.2318572,-0.1632693,0.342294,0.09672241,-0.034432847,-0.09958099,-0.5846327,-0.104648076,-0.37645423,-0.39546862,0.4722915,-0.1819628,0.19470218,0.18421897,0.048836306,-0.36652094,0.31119224,0.13945952,0.83175665,0.24703121,-0.12412388,-0.26774496,0.15951586,0.24108213,-0.23450086,-0.08370457,-0.36664122,0.2103738,-0.83761716,0.30046555,0.02194775,-0.5117556,0.29503563,0.0236851,0.038825866,0.42332,-0.060690515,-0.21614741,0.08237687,0.015027414,-0.24681063,-0.16463745,-0.20234069,0.1763155,-0.04399537,-0.17763393,0.027847247,-0.03579331,0.025146011,0.5586394,0.062084835,0.42277184,0.41255102,0.24071538,-0.33731845,0.06461871,0.28366798,0.5566306,-0.19983695,-0.20508897,-0.28452048,-0.4088819,-0.37757066,0.12228974,-0.06358632,0.32430622,0.21107955,-0.20607835,0.83732474,-0.19526719,1.2866333,-0.011044033,-0.40689763,0.15909351,0.41999665,-0.08199673,0.031717617,-0.24026711,0.88398695,0.5418916,-0.1354625,-0.21212755,-0.32687673,-0.0134777585,0.056333333,-0.26702002,-0.19733323,-0.1069061,-0.5110377,-0.43148458,0.087418444,0.22373219,0.27118653,-0.18168579,0.07025967,0.2640321,-0.060686804,0.1783458,-0.41166744,0.053969454,0.26636323,0.35137963,-0.1072529,0.15373215,-0.49460232,0.34706816,-0.4693715,0.07418087,-0.38572693,0.2697982,-0.12932321,-0.27163774,0.344222,0.017278206,0.2625589,-0.29339847,-0.17895466,-0.3401223,0.5775619,0.13896684,-0.04577747,0.55999637,-0.1998285,-0.060500298,0.12848578,0.39168802,1.0039428,-0.508392,-0.09102813,0.3135399,-0.25897816,-0.45601922,0.16323459,-0.34247088,0.140576,0.070194304,-0.3044241,-0.5734238,0.37584767,0.1663043,0.07478244,0.08594797,-0.66190535,-0.07530291,0.2926476,-0.2338489,-0.057687152,-0.15845849,0.24089622,0.45519873,-0.16751367,-0.28615287,0.05956354,0.21941929,-0.14383046,-0.6342078,0.09178665,-0.42383453,0.37146956,0.13760395,-0.30826646,-0.18300529,0.000673266,-0.45559603,0.019050097,0.39824653,-0.2572846,0.08576749,-0.4591571,-0.046684224,0.9718423,-0.21031617,0.3610023,-0.5663333,-0.43276277,-0.97752035,-0.22449976,0.32604688,0.25704923,-0.02037166,-0.78394157,-0.06573828,-0.18380709,-0.48928973,-0.032934163,-0.40067554,0.4525006,0.13291356,0.4587331,-0.041000403,-1.029252,0.22967912,0.07468086,-0.4255361,-0.3946455,0.43460384,-0.059196137,0.7940896,0.14224315,0.27482185,0.35100228,-0.53267264,0.08384085,-0.14041881,-0.031796187,-0.7649687,-0.064042695 +178,0.39385068,-0.10714157,-0.38174176,-0.18121745,-0.24782827,-0.026306152,-0.25581583,0.31797,0.24197473,-0.20239575,-0.16503923,-0.052001797,0.124351524,0.36083138,-0.12134214,-0.7407823,-0.13956493,0.11925669,-0.5841744,0.50770736,-0.6311511,0.3760209,0.033385016,0.30691347,0.09478666,0.45450547,0.18691094,-0.08514642,0.053549826,-0.016140714,-0.16777962,0.38737538,-0.66336733,0.064810924,-0.09565315,-0.22720656,0.09854467,-0.43822598,-0.32604367,-0.68966997,0.10159208,-0.7734106,0.40710846,-0.1633124,-0.05284271,0.08582597,0.09894709,0.3426873,-0.40199637,0.07622319,0.17975864,-0.14223903,-0.12445974,-0.25537482,0.058062218,-0.3599195,-0.407929,-0.0752228,-0.51374555,-0.35381916,-0.22405711,0.11938601,-0.31611174,-0.030496262,-0.17176588,0.35608572,-0.40707442,0.06217155,0.38307962,-0.11753957,0.13150783,-0.52297986,0.07984224,-0.057621002,0.45698738,0.017288785,-0.13539186,0.39245096,0.29773927,0.37273696,0.26300538,-0.26162377,-0.13425067,-0.21625915,0.2153914,0.30096662,-0.077322535,-0.33455166,-0.16581222,0.09744208,0.11597777,0.338429,-0.020105703,-0.23268862,-0.12946221,-0.040219367,-0.34511262,0.53670347,0.53730094,-0.22231674,-0.35854694,0.29119366,0.51294816,0.3120085,-0.23918933,-0.028066859,0.02184045,-0.5022637,-0.17445989,0.07047701,-0.07484721,0.45693004,-0.18911497,0.13992497,0.85005236,-0.16534919,0.11784926,-0.13172892,-0.038865082,-0.08432665,-0.42633757,-0.08821714,0.023418015,-0.5326915,0.034137644,-0.18566093,0.75171053,0.15714991,-0.73710704,0.3897433,-0.5917036,0.13736692,-0.17616884,0.6258497,0.6855547,0.32274473,0.3456524,0.7292323,-0.33081022,0.19008036,-0.07142848,-0.5328164,0.10694036,-0.16423456,0.05840662,-0.452693,0.102142796,-0.17715597,0.16994691,0.005621871,0.21717392,-0.47842512,-0.15805823,0.13304377,0.80712897,-0.31480166,-0.101893276,0.5696721,1.0612018,0.8503853,0.04302743,1.178949,0.2974527,-0.15651754,0.1572234,-0.3411916,-0.717598,0.17156988,0.40859514,0.044502705,0.2419962,-0.032057233,0.03139061,0.30450982,-0.3101594,-0.05542825,0.00034837332,0.46809483,0.20492181,-0.15912779,-0.40589148,-0.17076986,-0.03186962,-0.1096801,0.1410526,0.23681456,-0.15646577,0.19579698,-0.014759788,1.4719542,0.046247065,0.055457313,0.08480126,0.6404851,0.4259497,-0.21559563,0.011036009,0.56659806,0.49157628,-0.043488264,-0.5848693,0.27564222,-0.30672935,-0.35102504,-0.12774572,-0.48602945,-0.006283015,0.16312581,-0.42289537,-0.01115229,-0.005908631,-0.040973436,0.44944072,-2.9292006,-0.24933973,-0.034466058,0.3635193,-0.3090964,-0.14695437,-0.011341587,-0.52529347,0.2735739,0.2755708,0.4789806,-0.5622092,0.58537406,0.56646234,-0.40625447,-0.13470662,-0.687235,-0.10000391,-0.060573846,0.52479243,-0.017849617,0.03879441,-0.1643309,0.10560919,0.56121683,0.021991696,0.10547607,0.44127542,0.3437656,0.16918866,0.6509329,-0.114090696,0.5496292,-0.19286548,-0.13711888,0.3028025,-0.23069933,0.27025366,-0.12511346,0.102207124,0.6182723,-0.29998186,-0.86912227,-0.49882483,-0.37715846,0.9846837,-0.44985116,-0.44783407,0.2723828,-0.18338102,-0.12383454,0.060218897,0.47428173,-0.09757383,-0.016395941,-0.61433756,0.29628706,-0.06356315,0.13291892,0.033869848,-0.076715566,-0.24923919,0.6618887,0.010907082,0.57626754,0.21380371,0.26049393,-0.08345345,-0.28612256,0.009338841,0.7392998,0.2707021,-0.024704115,-0.18953449,-0.3593313,-0.11419824,-0.060963638,-0.008263819,0.5444619,0.64019704,-0.07714319,0.14838041,0.34457794,-0.022402102,-0.016549187,-0.14524242,-0.20063463,0.03950972,-0.022252144,0.3977962,0.68669915,-0.2294994,0.37710458,-0.20521443,0.26114517,-0.09434654,-0.5676359,0.6786626,0.43350628,-0.18288621,-0.011424188,0.39152962,0.46766064,-0.3532009,0.42036763,-0.5886933,-0.05465384,0.7161277,-0.1660716,-0.2727749,0.17414548,-0.15567417,-0.02134446,-0.7632346,0.2582992,-0.3210749,-0.2633533,-0.38397002,-0.176822,-3.638474,0.13341998,-0.050371576,-0.104522385,-0.30659565,0.042272314,0.2992432,-0.59598655,-0.49258482,0.15403424,0.16976616,0.52812886,-0.060956568,0.087040484,-0.29236788,-0.13490504,-0.15730208,0.15096419,0.030959923,0.36374146,-0.13819714,-0.42362663,-0.10863258,-0.0019648997,-0.5395345,0.264501,-0.5004159,-0.36401004,-0.08091943,-0.44945335,-0.14671774,0.57024735,-0.34399647,-0.0041866517,-0.23434347,0.04837533,-0.32598993,0.118336596,0.14056756,0.26089737,0.124978185,-0.033352274,-0.007137336,-0.37769598,0.3440182,-0.00379794,0.44193622,0.08316855,0.15748657,-0.019316364,0.41295052,0.45898968,-0.15701741,0.9865588,0.33183596,-0.13436541,0.2888837,-0.28326467,-0.26626897,-0.5994781,-0.38652068,-0.16896151,-0.37899452,-0.47656277,-0.061481524,-0.30368656,-0.7073276,0.5370367,0.040093645,0.33788517,0.013277678,0.26587784,0.42448798,-0.12920043,0.049204655,0.055785812,-0.18703018,-0.5696207,-0.2476333,-0.6616583,-0.39811805,0.1614135,0.5842054,-0.35926828,-0.07309313,-0.35301,-0.22424597,-0.07396396,-0.033952944,0.14022318,0.41273025,0.38697818,-0.039420534,-0.5679,0.48369434,-0.16394672,-0.096733816,-0.47628137,-0.030981354,0.6407105,-0.6846578,0.6346964,0.23174429,-0.0112088695,0.03859146,-0.55264044,-0.305588,0.005284246,-0.23747046,0.5221475,0.12255695,-0.9522178,0.53488714,0.17601866,-0.38810727,-0.69220644,0.3847247,-0.08771902,-0.3008663,-0.06604268,0.20616384,0.21325299,0.047272965,-0.22847506,0.2832656,-0.43380412,0.17804018,0.23206127,-0.11901116,0.3119435,-0.07427871,-0.15574399,-0.6496553,-0.06407824,-0.4498516,-0.2023184,0.24923462,-0.10685015,-0.035081223,0.095934354,0.15935278,0.3057553,-0.21521631,0.2126407,0.18496911,-0.27222466,0.30921426,0.47476506,0.37849048,-0.3455287,0.4381624,0.15143046,-0.15171573,0.18389279,0.20304525,0.3607036,-0.01120634,0.3198046,-0.1316557,-0.086001545,0.35738423,0.82677966,0.18145998,0.47562003,0.003446333,-0.17629471,0.51627916,-0.003446971,0.13837662,0.10034998,-0.47080043,-0.051475663,0.06904213,0.24544024,0.5689274,0.32325447,0.23260711,0.09199186,-0.20381086,0.029619023,0.2990749,-0.051880702,-1.0698454,0.39074033,0.2783187,0.8894993,0.37207055,0.045935094,-0.12276353,0.60839933,-0.20793585,0.2257141,0.45446438,-0.049424827,-0.51834196,0.73786354,-0.5343477,0.37166658,-0.10888487,-0.056154273,0.17726928,0.10787493,0.40709198,0.73841727,-0.24881813,0.043173894,0.029002966,-0.16656516,0.107969865,-0.34215605,-0.0009904262,-0.32865766,-0.33633548,0.5498065,0.42888713,0.23221049,-0.30343905,-0.04296803,0.1264384,-0.11320316,-0.0057161823,-0.074487045,-0.110198855,0.17879252,-0.4383604,-0.30082893,0.59656596,-0.12139099,0.1347172,-0.2527741,-0.21350949,0.19833171,-0.15105437,-0.09332726,-0.025505017,-0.6459791,0.035701364,-0.13680431,-0.4940435,0.47103938,-0.24900545,0.097238526,0.12198035,-0.023731466,-0.19969511,0.3693343,0.09560068,0.67274344,-0.18890724,-0.1929138,-0.37649757,-0.015474647,0.1960327,-0.24769014,0.06279299,-0.5396287,-0.05050318,-0.5130922,0.4019824,-0.11329107,-0.35170615,0.15401708,-0.17430755,-0.003514655,0.55696493,0.03743184,-0.17042914,-0.06937273,-0.1795292,-0.38840792,-0.095307,-0.22667557,0.3176,0.30494893,-0.082595356,-0.10440011,-0.28782585,-0.11765044,0.50342834,0.05234071,0.40992558,0.10546024,0.022085473,0.0016430151,-0.10988026,0.2877504,0.3634001,0.0971439,0.00060646236,-0.24854635,-0.30449924,-0.3098219,0.1806862,-0.12762704,0.26691407,0.05559051,-0.4169096,0.8350407,0.005611576,1.0657437,0.032514058,-0.3335838,0.10440986,0.4059052,-0.0762108,0.08408756,-0.33349216,0.79039717,0.46086523,-0.015747644,-0.0051769763,-0.47325355,-0.1132069,0.23568681,-0.27518162,-0.021940913,-0.032234777,-0.50023973,-0.2822032,0.27302247,0.22606802,0.06764852,-0.052539162,-0.18642485,0.07038021,0.1555348,0.40848854,-0.5444143,-0.23700267,0.11623593,0.13768412,-0.04301214,0.097393,-0.4569815,0.47097808,-0.61854863,0.15964073,-0.44736677,0.20120162,-0.28257528,-0.21210639,0.16343905,-0.16049536,0.40157086,-0.33430728,-0.4844693,-0.2185291,0.33815745,0.07259747,0.17660408,0.5564069,-0.19499828,0.11392373,0.13175032,0.571385,1.117706,-0.37681365,-0.01762602,0.2684644,-0.46177202,-0.65996945,0.22793959,-0.31589904,-0.05731357,-0.053513184,-0.3994097,-0.3242572,0.15529476,0.030962396,0.13915214,0.09682813,-0.5418559,-0.18244156,0.3454087,-0.28072882,-0.2164483,-0.14576471,0.27518636,0.8665583,-0.31113183,-0.39360443,0.06632649,0.20156825,-0.2547205,-0.438413,-0.18581122,-0.16355199,0.3178021,0.02660647,-0.19273254,-0.06591134,0.22261228,-0.4193833,0.17808592,0.21857858,-0.38386247,0.09956224,-0.04101146,-0.1280671,0.9764198,-0.28811577,-0.08461932,-0.6595442,-0.5890075,-0.81555223,-0.5236862,0.29798114,0.17391449,0.012809802,-0.33527127,0.12368486,-0.06796552,-0.12641388,0.034867294,-0.5441429,0.33737445,0.10647033,0.36894602,-0.16432966,-0.9830928,-0.009915493,0.06506132,-0.22087848,-0.731144,0.70224786,-0.2730068,0.79021,0.013748303,0.012061663,-0.06272748,-0.25369778,0.07088229,-0.3763544,-0.13922353,-0.7387499,0.19242509 +179,0.46526024,-0.10481372,-0.71177715,-0.046052556,-0.26146457,0.029456714,-0.2735314,0.44125322,0.21798266,-0.49189302,-0.25958654,-0.024236897,0.11190814,0.37681136,0.0036306356,-0.8114589,0.15892231,0.3791504,-0.8043983,0.7564063,-0.37908974,0.22199988,0.020912835,0.39447775,0.06344831,0.20031059,-0.03174932,-0.06930982,0.14516364,-0.17971706,-0.16759805,0.23538756,-0.7618173,0.22217107,-0.09826886,-0.5976341,-0.28227186,-0.30847517,-0.32631043,-0.9057136,0.21899374,-0.7648395,0.52908295,0.0045689493,-0.40218243,-0.15207994,-0.0394627,0.5456527,-0.031703208,-0.10335964,0.030483821,-0.16490665,-0.30098835,-0.24103896,-0.07585975,-0.34270218,-0.57129,-0.06174771,-0.5284092,-0.0572356,-0.22106583,0.20680487,-0.36712468,0.095334016,-0.19986981,0.66548413,-0.21097188,0.29613447,0.22770423,-0.090204895,0.30301425,-0.39237666,-0.07276901,-0.11420349,0.42748213,-0.22349228,-0.5438439,0.115287624,0.2660375,0.5121419,-0.04128426,-0.20115697,-0.14508495,-0.031697918,0.12884033,0.4411415,-0.029440517,-0.67626554,-0.18543983,0.11465288,0.16022146,0.13185282,0.09813007,-0.35549733,-0.09946587,0.008332382,-0.19703937,0.63197273,0.40549028,-0.2882612,-0.22466843,0.28594056,0.74962616,0.15790729,-0.14202292,0.021537656,0.090378255,-0.58440465,-0.16116515,0.026665194,-0.231396,0.60596204,-0.24042617,0.30862185,0.4942919,-0.014263536,-0.41434002,0.26746723,-0.069252655,-0.0057716616,-0.13623068,-0.24550712,0.37074265,-0.65571946,0.22728945,-0.3173647,0.75935644,0.28410688,-0.7229295,0.415094,-0.7480752,0.177157,-0.04354235,0.59629774,0.850063,0.42014384,0.17424488,0.63775235,-0.25843358,0.1050364,-0.09268608,-0.41752017,-0.005612632,-0.13118646,-0.0478871,-0.45765767,-0.027205685,-0.17983426,-0.19313848,0.042180512,0.36789897,-0.6819258,-0.2905454,-0.006425157,0.6296256,-0.23552148,-0.30274352,0.8670008,1.0161601,1.0549711,0.13276118,1.1206251,0.20300563,-0.2815005,0.10316757,-0.11989081,-0.7302358,0.35354447,0.16291988,-0.28472412,0.5108763,-0.050838154,-0.016598016,0.5099559,-0.2940702,-0.052216858,-0.07519085,0.28217116,0.07517723,-0.117410906,-0.31612512,-0.26256922,-0.08567048,0.03321133,0.21291459,0.35443756,-0.2011979,0.57743853,0.23582228,1.4268316,-0.00417191,-0.04427595,0.009366319,0.2470376,0.27106252,-0.3352224,-0.28603527,0.19809544,0.2949091,0.18408765,-0.69296473,0.14943841,-0.28363314,-0.2806538,-0.13173817,-0.26227084,0.010159105,-0.22511892,-0.36175823,-0.16967453,-0.22783864,-0.22824521,0.47373033,-2.4469976,-0.33810285,-0.16310911,0.3899761,-0.24635749,-0.41020086,-0.100257985,-0.529624,0.18933542,0.14900838,0.51453507,-0.7719726,0.5514547,0.4003164,-0.6815138,-0.027844643,-0.6735181,-0.09531832,0.072405614,0.200563,-0.08808436,-0.11266915,0.04120817,0.08794654,0.40217158,-0.18193795,0.0042361417,0.40848264,0.44057858,0.04157943,0.53273517,-0.09463247,0.60281664,-0.35871628,-0.13921948,0.37924543,-0.38826004,0.21859825,-0.023641964,0.015497242,0.50072575,-0.4470855,-0.887667,-0.7713242,-0.2698163,1.1419467,-0.31044662,-0.39670172,0.07823109,-0.42175627,-0.21856578,-0.11625614,0.6067843,-0.02189981,-0.12001046,-0.797142,-0.03895506,0.007006028,0.3982123,-0.03196756,-0.005963554,-0.4456607,0.53771836,-0.032951403,0.48376015,0.33041573,0.16162999,-0.36547676,-0.6202436,0.11880747,1.0151826,0.16129836,0.16239238,-0.36621404,-0.26612154,-0.5297501,0.24483971,0.05112366,0.88314945,0.6573319,-0.21862541,0.13044801,0.44008422,-0.020774746,0.09260581,-0.18440783,-0.2745746,-0.17736156,-0.0059509575,0.69178295,0.7319427,-0.21854465,0.5244429,0.024147466,0.23781954,-0.21050338,-0.4493651,0.5013465,1.3078898,-0.29339576,-0.49277148,0.4987056,0.27341595,-0.2913215,0.47288355,-0.5429666,-0.31946206,0.4793038,-0.08484754,-0.32058707,0.2308994,-0.26426995,0.38131145,-0.97504765,0.2821213,-0.6355748,-0.7018935,-0.59594905,0.12681764,-3.1267605,0.40948305,-0.07536234,-0.06598147,-0.26243368,-0.18465354,0.15603687,-0.45371556,-0.7844908,0.194139,0.118302524,0.9252983,-0.19645691,0.13969937,-0.2585276,-0.46398512,-0.26683053,0.33784142,0.40555882,0.26999742,0.010855014,-0.42420825,-0.19040783,-0.18024635,-0.2321822,0.09361428,-0.721672,-0.49347767,-0.057893794,-0.7187957,-0.26625526,0.6843152,-0.4177285,0.026235553,-0.18989389,-0.009900041,0.03271465,0.3299698,0.016481047,0.031563506,0.22399385,-0.089688994,-0.03714302,-0.280926,0.10388622,-0.0101104565,0.38275537,0.06272728,-0.09247569,0.50981784,0.63661975,0.9249816,0.17615835,0.93382406,0.5263319,0.001859804,0.24602258,-0.28775814,-0.42257372,-0.44458926,-0.0054316274,0.00860472,-0.37907466,-0.2934245,0.008467868,-0.26071557,-0.8620227,0.5088406,-0.050957758,0.040512115,0.089143336,0.51936144,0.6801889,-0.2329963,-0.0037977844,-0.13483706,-0.21078604,-0.50593585,-0.27430412,-0.55670685,-0.46480462,0.11377982,1.034759,-0.2623699,0.18383217,-0.0464434,-0.20318872,0.021571085,0.4957702,0.037856977,0.14544447,0.6750049,-0.27336404,-0.62466556,0.296602,-0.20659073,-0.22914977,-0.578095,0.3946974,0.62034196,-0.72839546,0.4858879,0.22471404,-0.07923932,-0.21455626,-0.47177896,-0.08159083,0.17523086,-0.24680783,0.26440942,0.36935103,-0.74976844,0.26711494,0.3558009,-0.09695309,-0.69919974,0.6185649,0.08584396,-0.33353844,-0.23707883,0.46354762,0.03406107,0.041039452,-0.26011726,0.08358052,-0.34153327,0.08861118,0.115855336,-0.21821487,-0.12472149,-0.077465184,-0.042151403,-0.8968468,0.21918112,-0.5862486,-0.25297946,0.31917554,0.09015735,0.3408803,0.1956956,0.21164508,0.32610175,-0.22035588,-0.014002991,-0.33328828,-0.3814318,0.29421586,0.5942799,0.2985105,-0.47245297,0.65467864,0.20896192,0.11202342,-0.010172267,-0.012199382,0.43077445,-0.110305704,0.66069,0.25266197,-0.25503492,0.06553282,0.659825,0.3147097,0.47484946,-0.04552229,0.21758161,0.14340676,0.12153002,0.35429308,-0.044232886,-0.4899923,0.038020123,-0.21707623,0.118040465,0.69867283,0.07442672,0.23699784,-0.059510496,-0.52250016,-0.06762403,0.17063372,-0.084407784,-1.5502354,0.52828234,0.41226813,0.82570815,0.45818806,0.113941275,0.08139986,0.58991444,-0.19905277,0.29546326,0.4111463,-0.03417312,-0.2617655,0.57131726,-0.86704665,0.6092772,0.08344459,0.011217372,0.049509782,-0.31190315,0.26678023,1.0392841,-0.29207304,0.0786651,-0.03797512,-0.21927553,0.10400933,-0.4633427,-0.0001634856,-0.69708616,-0.31700584,0.80507225,0.55828375,0.38741872,-0.4467866,0.056146603,0.19164948,-0.089752935,0.23032613,-0.063810594,0.110805415,-0.07536635,-0.5047119,-0.07022546,0.56013924,-0.19028479,0.12899579,0.16641134,-0.10801277,0.39635512,0.054026794,-0.11865141,-0.20998168,-0.7489888,0.012323543,-0.4138225,-0.26024136,0.56370866,-0.20886476,0.15955047,0.23774637,0.17272943,-0.41772154,0.5456336,-0.011795759,0.60491025,0.27335986,-0.23282313,-0.18471797,0.24658705,0.14593394,-0.2557363,-0.12605439,-0.3529676,0.011375765,-0.5896317,0.38993326,0.14722136,-0.3976719,-0.0066906177,0.030737877,0.087294884,0.43167904,-0.19630384,-0.20396905,0.08319486,-0.086887725,-0.22023277,-0.2149119,-0.103929244,0.22128558,0.28681722,-0.17685252,-0.1125665,-0.08734276,-0.16655317,0.3837599,-0.0854638,0.42235613,0.40273538,0.21638398,-0.21946728,-0.10457554,0.2499965,0.47204876,0.073462084,-0.24633378,-0.26550332,-0.29222143,-0.44886145,0.24654841,-0.093488194,0.52037907,0.017089054,-0.30261973,0.6536096,0.013234821,1.2129812,-0.12028509,-0.35240087,0.08680582,0.47092423,-0.00392036,-0.13295819,-0.37923825,0.96069884,0.25317892,-0.13035204,-0.10660389,-0.32883728,-0.07151029,-0.0092332065,-0.26701722,-0.1609063,0.12399858,-0.45565256,-0.12229558,0.18946165,0.31189904,0.26189607,-0.14387663,0.051144768,0.3631954,-0.10615774,0.17686212,-0.35465422,0.0045441785,0.3106254,0.29336682,-0.053047825,0.15947758,-0.38977924,0.35523042,-0.5780879,0.09207804,-0.40534282,0.19952528,-0.14657404,-0.50260776,0.36599696,0.24887562,0.2835373,-0.34401277,-0.29280055,-0.4005561,0.51680505,0.19554596,0.1838869,0.7137776,-0.15628235,-0.0047317743,0.16731162,0.4438084,0.77170676,-0.2530653,-0.22770219,0.27234823,-0.43002912,-0.5787859,0.33300653,-0.4181926,0.30896792,0.1624891,-0.18505462,-0.64667326,0.25742546,0.07733663,0.20745201,0.096677266,-0.86859304,-0.1895351,0.1396811,-0.4535904,-0.08440897,-0.39831933,0.17083894,0.4974769,-0.11379719,-0.22424895,0.08438128,0.13094518,-0.18302162,-0.5872584,-0.10920618,-0.53717685,0.18470268,0.057401,-0.4344945,-0.19404872,0.24886443,-0.5608223,0.17456193,0.23162986,-0.36480844,0.14222644,-0.2972339,-0.19370157,1.0110329,-0.38720348,0.12043377,-0.29626903,-0.5542506,-0.6433751,-0.2037164,0.3180947,0.08069525,-0.03929959,-0.8662403,-0.12224261,-0.12700212,-0.3255043,-0.04336043,-0.39634335,0.41368282,0.18189304,0.40418682,0.05094965,-1.0464166,0.2237951,0.12107518,-0.21254426,-0.6102149,0.28332207,-0.07143802,0.935198,0.069349065,0.2823988,0.44594812,-0.6480705,-0.08620707,-0.15031956,0.15762644,-0.685543,-0.055381328 +180,0.38648814,-0.47794646,-0.4301028,-0.22897682,-0.08732462,-0.072175615,0.011699328,0.82679725,0.22606984,-0.45549777,-0.24548383,-0.17564131,0.1336146,0.5350126,-0.16400361,-0.45648143,-0.105953574,0.29263514,-0.44550857,0.49942666,-0.41571036,0.003631635,-0.017043026,0.425837,0.2899213,0.16656703,0.23149873,0.0025774078,-0.06564326,-0.020790135,-0.24122621,0.21973683,-0.17024425,0.2511921,-0.028566653,-0.3420923,-0.013419761,-0.696862,-0.2644649,-0.8075228,0.4126477,-0.90771824,0.5049741,-0.015041059,-0.32417694,0.2985281,0.28587356,0.3416053,-0.31408307,-0.1664796,0.10534751,0.056603257,-0.1083133,-0.07044775,-0.16798206,-0.2985052,-0.6391466,-0.0859339,-0.13843222,-0.29200056,-0.26360682,0.1418551,-0.35393512,0.062076222,-0.0017351833,0.75801885,-0.3742036,-0.08758329,0.17709488,-0.23042928,0.2839733,-0.5902565,-0.119038254,-0.09535146,0.26582265,0.020263577,-0.27420276,0.19832917,0.3620909,0.36411887,-0.015766121,-0.17688006,-0.37785834,-0.079970434,-0.0706656,0.48899472,-0.17310871,-0.72667974,-0.18335861,-0.022723041,0.099636085,0.28334147,0.19788495,-0.20736875,0.03410016,0.12891102,-0.28651282,0.42036387,0.35866582,-0.37789953,-0.28377977,0.35511413,0.61099803,0.105849005,-0.07965367,-0.16658813,-0.023302251,-0.57766074,-0.1442617,0.009874896,-0.40837747,0.51421404,-0.20794812,0.37474182,0.5946305,-0.10071747,-0.13866316,0.018188309,0.13833077,-0.23545514,-0.453765,-0.44824123,0.34586582,-0.37539312,0.16835906,-0.033004913,0.6954648,0.16127141,-0.5178895,0.47129232,-0.5663446,0.16017853,-0.24999975,0.3530703,0.61352026,0.38513085,0.4264719,0.61401767,-0.35119975,-0.050239448,-0.04966966,-0.30490074,-0.16269115,-0.22046779,0.2492817,-0.60774285,0.20994519,0.0014489226,-0.10088008,0.13706201,0.33081836,-0.6191813,-0.17364107,0.24682221,0.7751216,-0.27804527,-0.19743334,0.88676965,0.9600922,1.1560607,0.06355346,1.0724416,0.2750897,-0.2614914,0.3128436,-0.27048293,-0.7045474,0.39823225,0.5552044,-0.1652696,0.12463599,0.030518442,0.049932145,0.60401696,-0.41356736,0.012836709,-0.14595847,0.11641414,0.20008983,-0.12571722,-0.67657304,-0.2639813,-0.10689266,0.04366492,0.12907173,0.21755533,-0.1357755,0.4104171,-0.05309731,1.6672158,-0.0343256,0.14481498,0.0955757,0.45624483,0.11800515,-0.109110005,-0.021030473,0.30054152,0.2804987,0.07598143,-0.5528073,0.22214542,-0.2837064,-0.36115193,-0.0836521,-0.32651404,0.00363215,-0.014777232,-0.36256817,-0.22388326,-0.22506122,-0.34347108,0.3868637,-2.8061078,-0.35872346,-0.23333463,0.294803,-0.2398656,-0.3860074,-0.019962223,-0.57886636,0.41255778,0.31367347,0.63147986,-0.62338746,0.3522338,0.29524133,-0.7013129,-0.11133935,-0.67484605,-0.12757283,-0.043249175,0.32232893,0.04316244,-0.037240256,0.03376685,0.15522914,0.52107644,0.12039568,0.16439304,0.35636255,0.3732237,-0.058004234,0.6415004,-0.18888734,0.55846786,-0.41758996,-0.24144012,0.17491859,-0.30304268,0.10611519,-0.1961987,0.11667256,0.5395553,-0.5147736,-0.9660746,-0.642073,-0.1278071,1.2796607,-0.2281344,-0.31530172,0.35421476,-0.48402917,-0.27599755,-0.20882273,0.43206042,-0.15656473,-0.08814626,-0.75716746,0.16478826,-0.030704623,0.01755293,-0.03706939,-0.15930837,-0.47092608,0.7033856,-0.13942929,0.54768974,0.29103482,0.12344053,-0.41291082,-0.29024336,-0.07340577,0.7517977,0.4051816,0.028118832,0.041836318,-0.10348816,-0.40208519,-0.13475123,0.05452266,0.48800424,0.6970162,-0.03376896,0.039532814,0.31186298,-0.020656187,0.11953092,-0.14138038,-0.28946185,-0.11034057,0.06701848,0.5579833,0.5186136,-0.26806608,0.5946982,-0.10368195,0.32479098,-0.09170079,-0.44887865,0.3811898,0.98871344,-0.2355894,-0.3872343,0.70122266,0.39534804,-0.3014254,0.3913867,-0.4832427,-0.17749485,0.45586732,-0.230313,-0.49934128,0.014111492,-0.20406985,0.14980358,-0.8399438,0.23233809,-0.26230004,-0.5136802,-0.4904622,-0.07612188,-3.6411965,0.29838163,-0.30697262,-0.15989512,0.009280183,-0.22464271,-0.003999908,-0.71701545,-0.71133935,0.27484262,0.06994589,0.7180769,-0.1287779,-0.0065366165,-0.17450081,-0.2568513,-0.1417666,0.06793043,-0.099542506,0.40796435,0.0895148,-0.5447204,0.059749473,0.081868194,-0.61684674,0.10657313,-0.8055517,-0.3953479,-0.109363936,-0.7249378,-0.44178838,0.6456439,-0.17925407,0.112293795,-0.17401594,0.123072356,-0.08453545,0.31330097,-0.15137886,0.14773689,0.060744416,-0.047039095,0.21940193,-0.14047603,0.22788233,0.0068306597,0.28127462,0.113863185,-0.11511138,0.3734935,0.67004484,0.82006836,0.051543485,0.85450417,0.58186984,-0.117752284,0.12689087,-0.21681276,-0.19284798,-0.37151182,-0.32454762,0.11625449,-0.43284446,-0.51127535,-0.09453039,-0.2982295,-0.6980384,0.6847732,0.17135082,0.38404778,0.0589022,0.14446686,0.6731231,-0.26623887,0.0604653,0.075327225,-0.18230034,-0.65201545,-0.13184398,-0.60899836,-0.44118282,0.22463487,0.9078058,-0.3113501,0.19229755,-0.0656834,-0.3445678,0.025158552,0.22357579,-0.017857598,0.28518653,0.3464537,-0.3742467,-0.671278,0.32061604,-0.13502182,-0.15569897,-0.43541232,0.31285077,0.5753605,-0.516089,0.6435308,0.2695947,-0.079352774,-0.54906696,-0.40105665,-0.259188,0.023487367,-0.1523048,0.44996214,0.23847857,-0.842433,0.39162856,0.467348,-0.2604238,-0.8142653,0.5024649,-0.14568323,-0.264904,-0.20222425,0.39758292,0.3287762,0.027902288,-0.27118248,0.17759962,-0.3698199,0.2415267,0.107329845,0.0019567609,0.41253427,-0.25200298,0.11090413,-0.8329124,-0.07992964,-0.68344074,-0.16218413,0.34861532,0.09808937,0.12394354,0.17520937,-0.11120088,0.31689948,-0.28839406,0.052932885,-0.022373639,-0.36209556,0.28903544,0.41125298,0.35331622,-0.41139212,0.59878176,0.05571337,-0.014616597,-0.14600791,-0.10476789,0.342911,0.1856658,0.51576686,-0.2201229,-0.38306996,0.33995023,0.6784044,0.13749015,0.30161402,0.027343668,-0.06443724,0.060941923,0.028530417,0.19264413,-0.0822958,-0.6120075,0.09341062,-0.29961634,0.16080171,0.5597241,0.14394389,0.2469237,-0.066679195,-0.4320514,0.04641296,0.06365546,0.017530657,-1.2884291,0.51809263,0.07193765,0.9365385,0.4330863,-0.0054040225,-0.16252142,0.729508,-0.12381942,0.21263704,0.39232433,-0.11798254,-0.49582207,0.62910414,-0.74387187,0.48979455,0.017576767,-0.01749056,-0.13431941,0.1260743,0.39495313,0.6076934,-0.25598508,-0.040360793,-0.033791926,-0.32235858,0.4254382,-0.4788231,-0.03576428,-0.7702717,-0.25270745,0.43687403,0.59394735,0.3734368,-0.15962797,-0.0011092763,0.13934514,-0.04385751,0.14116801,0.063280605,0.13132757,-0.043779906,-0.8614204,-0.1335772,0.4799874,0.3477787,0.35336563,-0.09978189,-0.23486476,0.2175348,-0.087272264,-0.057505056,-0.05065479,-0.64107156,-0.06893987,-0.21732482,-0.45773304,0.47571504,-0.0796838,0.23384666,0.16255356,0.092250586,-0.17177223,0.1845571,0.01927172,0.8703673,-0.048239633,-0.08081058,-0.30785733,0.12302636,-0.038005717,-0.05816902,0.22931914,-0.3767997,-0.08794483,-0.6372779,0.61516553,0.1621789,-0.4212164,0.0930254,-0.14430052,0.08582742,0.576897,-0.14309303,-0.052571937,-0.40359947,-0.17310631,-0.16102672,-0.42024377,-0.03503295,0.391119,0.087824315,0.26765665,-0.21103293,-0.11978791,-0.22830473,0.58875555,0.01145811,0.25354552,0.30888107,0.01852327,-0.15330099,-0.043081786,0.09532061,0.3644909,0.0276824,-0.41641057,-0.2589257,-0.3953107,-0.3082073,-0.0036342687,-0.0030865846,0.45845768,0.065863445,-0.16748463,0.5648462,-0.11916609,1.2646127,0.008697971,-0.4563349,-0.044674363,0.538011,0.07069181,-0.119796365,-0.14885336,0.7319426,0.5327281,0.0074380417,-0.084094375,-0.528758,0.028335083,0.39383334,-0.16142477,-0.12972735,0.07055918,-0.5523842,-0.40912744,0.21320143,0.14623408,0.3966099,-0.112306,0.22274445,0.49590242,-0.02025,0.3724395,-0.29934275,-0.1542636,0.29453078,0.38146222,-0.045562256,0.17106475,-0.48519287,0.2853425,-0.51614,0.2985117,-0.26777637,0.25135478,-0.40110132,-0.23409237,0.22747716,0.09961358,0.33462995,-0.13134359,-0.48429307,0.044415805,0.53238386,0.1249779,-0.040558454,0.48190382,-0.26412895,-0.060457934,0.20835209,0.41247645,0.8972349,-0.17459911,0.045376554,0.28400844,-0.34141913,-0.7307173,0.48793203,-0.03316057,0.26926118,0.1369372,0.03512049,-0.6630763,0.3032458,0.30491602,-0.12618564,-0.049718462,-0.43300742,-0.20439391,0.25475904,-0.32007855,-0.09332605,-0.3366429,0.14992231,0.3038497,-0.38020316,-0.32696843,0.02081769,0.20533237,0.0032725146,-0.47801095,-0.1663899,-0.44071484,0.3595751,0.06652158,-0.4496482,-0.18714601,-0.055157878,-0.45520505,0.14876775,-0.0362563,-0.2907248,0.24103568,-0.32258508,-0.20900078,0.99481124,-0.13100375,0.26578003,-0.41198432,-0.34995115,-0.849884,-0.3311228,0.53037494,-0.09935117,-0.00092380156,-0.7298813,0.06197153,0.018738683,-0.15203848,-0.11737456,-0.19388643,0.44414118,0.09932547,0.4704198,-0.0023498968,-0.65506613,0.11936179,0.07330071,0.032111134,-0.42660075,0.5283752,0.012511429,0.9079874,-0.026888313,0.075804435,0.26745847,-0.28699255,-0.19604011,-0.19404195,-0.3404442,-0.4847904,-0.03922293 +181,0.4732054,-0.075510584,-0.4607168,-0.26844698,-0.44428417,0.13926691,-0.17077413,0.24717188,0.3959371,-0.22229056,0.027085708,-0.055393465,-0.19411364,0.23730777,-0.030224644,-0.6551951,-0.035917155,-0.007412064,-0.79711795,0.45700115,-0.42299965,0.41057083,0.057454612,0.30331382,0.17437772,0.28857628,0.058740366,0.019486971,0.112981014,0.06757509,0.09371099,0.3210283,-0.7026338,0.26321426,0.05790925,-0.11870844,-0.11338169,-0.3032311,-0.31038317,-0.67072886,0.34624034,-0.6842243,0.5120582,-0.07345327,-0.3310868,0.1104925,0.0005040089,0.3023867,-0.38938624,0.0191774,0.28424028,-0.05989384,-0.119057454,-0.093920015,-0.07684286,-0.43597755,-0.42503273,-0.12274094,-0.5553926,-0.12924296,-0.38128132,0.20788552,-0.27271375,-0.08405161,-0.30314937,0.43452695,-0.39281464,-0.00069918635,0.16229422,-0.15933631,0.1286998,-0.5655378,-0.11622871,-0.09657214,0.29641932,0.09976776,-0.30727303,0.23977229,0.3458826,0.5534227,0.05302052,-0.2631787,-0.255056,-0.016647879,0.14519699,0.20355208,-0.07296237,-0.12658504,-0.22259238,-0.095224224,0.31313473,0.21770784,0.107161306,-0.4896828,0.0033560276,0.0050564865,-0.28329647,0.41966206,0.4126428,-0.44252464,-0.20212382,0.45510846,0.32639295,0.23324199,-0.22583394,0.336695,-0.09408423,-0.57915264,-0.17259793,0.20555124,-0.14154945,0.29313558,-0.19996853,0.07934256,0.78645843,-0.11961194,-0.021767247,-0.010116597,-0.08358463,-0.016274877,-0.25053352,-0.117530584,0.021423062,-0.5176666,0.038439807,-0.13894735,0.56552625,0.11529258,-0.7769191,0.19098881,-0.60479164,0.23041327,-0.16702005,0.65533614,1.0183353,0.50632566,0.082664095,0.834244,-0.5097626,0.019548703,-0.111921184,-0.3408666,0.31825367,-0.16477133,0.13293327,-0.5082964,-0.041831907,-0.01075511,-0.11935544,-0.057993457,0.23474184,-0.4182954,-0.09821767,-0.06326094,0.60368174,-0.30754852,0.020022018,0.757014,1.0214295,0.9640621,0.20411777,1.1959004,0.3506099,-0.14015785,0.16934615,-0.28075287,-0.47014865,0.15316923,0.20027876,0.3456233,0.20455927,0.087886326,0.14646003,0.430039,-0.37532791,0.086323455,-0.09558348,0.31312785,0.08142961,-0.117259376,-0.15891102,-0.24509929,0.2571209,0.1648806,-0.033589743,0.25500488,-0.20437129,0.3081872,0.19531849,1.206587,0.092138454,0.052481286,0.007756313,0.3809496,0.13606714,-0.25469452,0.0397421,0.19632544,0.43716323,-0.109441064,-0.6266482,0.08975767,-0.12543185,-0.33406022,-0.12114192,-0.38724157,-0.118581325,-0.18151289,-0.5167182,-0.15085433,0.07926633,-0.2977382,0.48034906,-2.6719716,-0.07813383,-0.21307598,0.22282399,-0.2092984,-0.32091287,-0.13792743,-0.40294966,0.15504669,0.44000873,0.2950353,-0.71368,0.55396515,0.34896216,-0.5828665,0.010346015,-0.6204354,-0.26494896,0.014286097,0.36986175,0.03398955,-0.08448829,-0.20773867,0.2901158,0.56788516,-0.03546734,0.059621114,0.26530543,0.4563188,-0.11080397,0.7352313,0.20273559,0.46139154,-0.13456412,-0.16790578,0.35900912,-0.38388512,0.22763847,0.17850263,0.14849153,0.45410842,-0.3377501,-0.90559775,-0.5727417,-0.30087247,1.3396761,-0.29628164,-0.3579401,0.36647734,-0.3164509,-0.23074453,0.04665576,0.5191933,-0.035818014,-0.0118746245,-0.87621015,-0.08214831,-0.10355287,0.2750091,-0.07562479,-0.04899496,-0.316707,0.79428697,-0.12127931,0.51904124,0.3468542,0.13013048,-0.21928556,-0.43832284,0.18623056,0.88084155,0.4609551,0.03023841,-0.11663079,-0.28876814,-0.23502813,-0.15618038,0.23754412,0.65501946,0.5117696,0.021577796,0.18686241,0.3244532,-0.34646288,0.00405733,-0.29271698,-0.21146466,-0.04909035,0.19239925,0.45395043,0.58498114,-0.041070547,0.31139466,-0.046345968,0.055640858,-0.09163641,-0.5906727,0.60971165,0.6377005,-0.10239608,-0.25689575,0.47842705,0.45308533,-0.16133446,0.35171482,-0.4932259,-0.26773173,0.43064702,-0.11196546,-0.29596406,0.16080648,-0.42915788,-0.032577045,-0.8023023,0.19222946,-0.26120025,-0.4929188,-0.5600048,-0.15542112,-3.8207564,0.035732973,-0.12215544,-0.15603706,-0.16079335,-0.12663391,0.5149003,-0.62165326,-0.6114422,0.053245958,0.04783243,0.53539056,-0.014106092,-0.005127104,-0.33858535,-0.26970962,-0.29233795,0.19061986,0.020173455,0.2855572,0.0024075985,-0.3951908,-0.037625425,-0.14515701,-0.41823712,-0.03233939,-0.51297677,-0.55346,-0.09602797,-0.28941804,-0.18482727,0.67889214,-0.34318432,-0.02281847,-0.2230595,-0.074517146,-0.2675621,0.3996297,0.13841057,0.17159843,0.17917214,0.02915721,-0.14999507,-0.27968067,0.104302675,0.022751851,0.32069823,0.25473008,-0.08095887,0.20278218,0.59464115,0.60176164,0.04936503,0.7992314,0.3725777,-0.150797,0.32404622,-0.21104668,-0.22284395,-0.62595236,-0.2795448,-0.28382656,-0.47268555,-0.28164488,-0.07035389,-0.23175077,-0.8437545,0.33625573,0.064792246,0.09493325,-0.12610257,0.1298871,0.38629824,-0.03916859,0.06634004,-0.10573987,-0.30999097,-0.47967598,-0.40990868,-0.5992439,-0.48529518,0.13441557,1.1039873,-0.17051284,-0.0098578455,0.061068997,-0.4064325,0.0561953,0.039321225,0.085043184,0.20256814,0.43578163,-0.09838476,-0.69014895,0.33711657,-0.21151683,0.011019905,-0.64277476,0.1556035,0.69954973,-0.48318806,0.5849718,0.19500016,0.21717073,-0.0283639,-0.63303393,-0.34604195,0.108623914,-0.22192314,0.6805034,0.3178205,-0.7450659,0.4764247,0.2421429,-0.10924883,-0.544048,0.49753347,-0.01756823,-0.100534916,0.06498174,0.2734174,0.06037675,-0.03448378,-0.05803955,0.3710211,-0.47425318,0.31170836,0.2461905,-0.08067416,0.20113333,-0.0352023,-0.23693468,-0.5210229,-0.15164341,-0.4528288,-0.27930996,0.00596594,0.04078392,0.22011025,0.0953299,0.04131031,0.35518783,-0.08416655,0.1390504,-0.14849503,-0.25324988,0.29669914,0.5690637,0.2918506,-0.37835437,0.51792514,0.18563196,0.072601505,0.06405539,0.14332168,0.44432652,0.18429658,0.3318676,-0.08544852,-0.115660265,0.28147027,0.76505923,0.21028213,0.26536596,0.034853436,-0.13622308,0.21366785,0.12442774,0.15695623,-0.15348764,-0.38734183,-0.068776496,0.10347142,0.31052628,0.40808195,0.070570625,0.3316393,-0.043506097,-0.16738628,0.16937979,0.09658658,-0.04241962,-1.4948367,0.3949924,0.2734532,0.6675998,0.6414637,0.018429905,0.10772686,0.5636717,-0.3087464,0.02266292,0.3840072,0.12789904,-0.38991103,0.45322755,-0.6012596,0.46656668,-0.011755091,-0.014807706,0.06028914,0.33324316,0.23986945,0.85061187,-0.043175116,0.027466599,0.098454,-0.4268734,0.07156302,-0.19391933,0.08370419,-0.5485535,-0.39783365,0.5635958,0.5063924,0.30429807,-0.43259087,-0.04205811,-0.076143645,-0.17550747,0.055598292,-0.18176532,-0.120368816,-0.0903889,-0.5121035,-0.28964087,0.52129596,-0.1194088,0.029200407,0.046369758,-0.3062472,0.16122212,0.008161163,-0.105001934,-0.08344503,-0.63902026,-0.1264638,-0.27864042,-0.3992752,0.37253904,-0.39352307,0.20537344,0.21655662,-0.0184182,-0.2846359,0.3314505,0.12470513,0.66957575,-0.11188045,-0.12934744,-0.30155295,0.027205944,0.2112344,-0.20505638,-0.22553764,-0.30204955,0.042347398,-0.4698437,0.21251363,-0.25587896,-0.21923868,0.024269713,-0.10110581,0.11396365,0.41464406,-0.36232993,-0.16047381,0.04061234,-0.05615461,-0.2656692,-0.18947905,-0.36461034,0.37703964,0.0050528925,0.13772698,0.04847791,-0.06533715,-0.00493433,0.3204206,0.13658153,0.2427763,0.383906,-0.14843439,-0.3663808,0.030319555,0.12409737,0.36023802,0.10714252,-0.12774993,-0.3611898,-0.25439742,-0.42887104,0.29942513,-0.19567819,0.2604383,-0.1364037,-0.5498634,0.8862841,0.10908776,1.111582,-0.06535081,-0.33447587,0.13560645,0.48681152,0.023484772,0.12884156,-0.18285272,0.67605346,0.6913182,-0.0861813,-0.17485228,-0.4249522,-0.22175445,0.20098099,-0.3620407,-0.120958716,-0.059690755,-0.7959368,-0.007691179,0.11897146,0.17106846,0.030559445,-0.060729977,-0.16604802,0.025984423,0.1359262,0.4400292,-0.512338,0.016852032,0.2859445,0.25656447,0.1007069,0.19072424,-0.3198379,0.4813644,-0.7713898,0.16113703,-0.33093604,0.16095515,-0.12800561,-0.173582,0.20855369,-0.0056592384,0.28081882,-0.2593222,-0.30969778,-0.33221486,0.6678256,0.124835685,0.3453239,0.7260943,-0.21352133,-0.05566364,0.073690526,0.5026234,1.0269805,-0.0742453,0.015438223,0.18326677,-0.2620147,-0.5335451,0.11158346,-0.3736089,0.20516062,0.037642565,-0.33614603,-0.25518253,0.34310374,0.006905945,0.26251742,0.039014243,-0.61779976,-0.32057875,0.36791033,-0.18244076,-0.2830177,-0.27192813,0.1936283,0.5862464,-0.36882764,-0.26722288,0.0174892,0.39530385,-0.23295332,-0.5878743,0.045681667,-0.38350964,0.37500033,0.021416528,-0.35935608,0.03667808,0.20782857,-0.4002533,0.036211696,0.26651317,-0.3298837,0.058206342,-0.2625161,-0.13911505,0.9716222,0.033312563,0.21191475,-0.6303209,-0.5753335,-0.83263755,-0.4113324,0.19334501,0.29453334,-0.20937076,-0.5864525,-0.11011826,-0.117305346,0.076593556,0.12352716,-0.5651128,0.50892055,0.16996725,0.41275817,0.0014289458,-0.9258161,-0.038587883,0.0961922,-0.031992387,-0.43371484,0.70382893,-0.11060925,0.7031826,-0.0021259547,0.09628475,-0.04625122,-0.5498432,0.28559703,-0.24164933,-0.18240151,-0.6556141,0.08586289 +182,0.36098364,0.09176445,-0.43681848,-0.12030961,-0.2359662,-0.103101104,-0.124106534,0.2460999,0.52292365,-0.35445297,0.03428079,-0.39511964,0.15905653,0.38176116,-0.15287577,-1.008599,0.19965345,0.19890712,-0.55717796,0.8668812,-0.3827667,0.34618586,0.27543274,0.20513229,-0.1139432,0.21384087,0.5069482,-0.29491913,-0.114008315,-0.21707912,-0.0979543,-0.19831887,-0.67927384,0.3965853,0.09004034,-0.12491002,0.2153305,-0.43869683,-0.3695114,-0.74691415,0.23727113,-0.80203474,0.40723315,0.076612435,-0.199659,0.1059922,0.31697884,0.15730396,-0.31295395,0.05235665,0.09027856,-0.19708182,-0.37996188,-0.24614204,-0.41562787,-0.6948288,-0.69870317,0.0047772583,-0.5256315,-0.08183139,-0.5242339,0.10864067,-0.4831805,-0.0023146814,-0.03945465,0.6323744,-0.4216156,0.12215881,0.12823781,-0.28227997,0.31138572,-0.64131737,-0.08284223,-0.11092556,0.13844118,0.16311769,-0.18349515,0.26847532,0.45908824,0.44605458,0.098845966,-0.27580863,-0.27716076,-0.29489967,0.23283438,0.6085778,0.009739626,-0.62556934,-0.07658525,0.01525648,-0.0005705763,0.26895592,0.1769866,-0.51386,-0.02287711,-0.22701645,-0.34824398,0.48983687,0.5325058,-0.30756572,0.019372253,0.32786223,0.22616984,0.06531572,-0.08517128,0.23684883,-0.06973622,-0.6929718,-0.20931591,0.1825282,-0.20664138,0.7525665,-0.2785424,0.17662896,0.7055458,-0.19639544,-0.33871874,-0.13134946,-0.010568597,-0.08601266,-0.16767535,-0.07121289,0.38842565,-0.64766866,-0.22584423,-0.43938968,0.9902597,0.07049834,-1.0798632,0.36571386,-0.5773136,0.2178825,-0.18476175,0.5656452,0.69586426,0.54401374,0.412189,0.7386446,-0.49770126,0.13044612,0.15787932,-0.63015074,0.17803144,0.024330767,0.2062233,-0.473163,-0.054106656,0.1637354,-0.24922386,0.12531821,0.7449534,-0.2686516,-0.10995305,0.0062171547,0.8705536,-0.31803977,-0.15871556,0.57667804,1.1210781,0.82380027,0.26683044,1.4733624,0.24366356,-0.17541231,-0.11329109,0.06671315,-1.0232551,0.21182603,0.3446061,-0.20893389,0.09339481,0.08411431,-0.1212904,0.28836298,-0.40587494,-0.14058739,-0.18131919,0.56004405,-0.0823667,-0.34569666,-0.30369332,-0.31769717,-0.009339093,0.017925667,0.16610684,0.3649024,0.20179,0.54901886,0.07123855,1.3637838,0.15875582,0.12027721,0.15904249,0.45820618,0.35080585,0.13304305,-0.12238648,0.30423704,0.2930524,0.16184112,-0.55009115,-0.021875136,-0.1277175,-0.41142645,-0.20782705,-0.2379222,0.108284354,0.05817027,-0.08634294,-0.19109367,-0.16996704,-0.52836233,0.59652674,-2.3117118,-0.03521494,-0.11498458,0.32055244,-0.070616275,-0.037201215,-0.2518405,-0.6203436,0.7588985,0.45352602,0.5540614,-0.71181977,0.011584884,0.52385545,-0.58249056,-0.12182584,-0.72366065,-0.11454597,-0.12075073,0.3262367,0.021708738,-0.23054194,-0.017214065,0.21918474,0.4777609,0.012685347,0.18708062,0.47973493,0.507213,0.02078522,0.39594695,-0.14803928,0.5545892,-0.16432063,-0.14318602,0.10224562,-0.24486336,0.21600905,-0.35652465,0.0837024,0.41986597,-0.45212486,-0.87623864,-0.19191791,-0.060359057,0.99919534,-0.4063161,-0.49670523,0.42121297,0.15179038,0.005657865,0.084435195,0.58667845,-0.18440585,0.06920526,-0.7485042,0.17194825,0.27258646,0.116381794,0.1424366,-0.099249534,-0.4573108,0.5895326,-0.057122532,0.55753285,0.60844666,0.11947593,-0.40150395,-0.5570734,0.037124954,0.9807707,0.2791092,0.23335852,-0.37207812,-0.16800103,-0.439527,-0.30362803,0.057806607,0.5414873,0.83441633,-0.15158345,-0.03709233,0.39803174,-0.14734884,0.0057408484,-0.054116283,-0.52618384,-0.12333443,-0.179278,0.5665527,0.7022547,-0.18736218,0.5052739,-0.006327759,0.4059662,-0.0529804,-0.5270443,0.7363297,1.077078,-0.14543357,-0.20591019,0.6595494,0.26198718,-0.2850627,0.58940256,-0.22919577,-0.39654177,0.7090072,-0.0046962444,-0.60961974,0.36422107,-0.4282107,-0.09762797,-0.99659365,0.4917475,-0.2554901,-0.5633552,-0.60874635,0.03204151,-3.638237,0.28566465,-0.34481275,-0.18436922,-0.250495,0.121339686,-0.019294923,-0.39178115,-0.5067321,0.4229949,0.24998908,0.53226554,-0.21564583,0.31643394,-0.055981074,-0.04079957,-0.16620252,0.1548128,0.10993264,0.1448587,-0.082706556,-0.43807852,-0.08229649,-0.03677775,-0.3283169,0.1488175,-0.6439995,-0.44118917,-0.18681683,-0.8658165,-0.4484396,0.78617954,-0.5620501,-0.038499527,-0.41319796,0.010203827,-0.083435394,0.3730698,-0.18877536,0.14940752,-0.1937276,0.04002341,-0.18606824,-0.18655342,0.2769104,-0.1264455,0.34228957,0.38654968,-0.04285516,0.12156434,0.74635816,0.58631784,0.095764466,0.7545792,0.46245328,-0.09795812,0.11185867,-0.32438138,-0.17939514,-0.7553297,-0.31190193,-0.24561761,-0.4548548,-0.3905469,0.026876146,-0.35452524,-0.6594294,0.5637067,0.26514718,-0.16098537,0.05525614,0.15470152,0.25926378,-0.06907925,-0.014081248,-0.19965954,-0.29227343,-0.57127976,0.0392133,-0.8062342,-0.4690564,0.354782,0.89289767,-0.20666236,-0.31328124,-0.014758787,-0.2823222,0.04597682,0.14154547,-0.029290969,0.28629926,0.11153788,0.19007431,-0.7856533,0.5974403,-0.22237311,-0.052063953,-0.72260875,0.033411022,0.63798577,-0.78948873,0.4688171,0.5430878,0.019162904,0.014034748,-0.55907243,-0.49715388,-0.048355546,-0.09851181,0.3238308,0.13858499,-0.8229986,0.5931051,0.3215284,-0.32879636,-0.8593903,0.2774868,-0.10672965,-0.32842815,0.19594693,0.42817402,0.024867589,0.121614,-0.58074015,-0.06964727,-0.5663504,0.32319412,0.029030675,-0.020448565,0.48635438,0.037986234,-0.27532685,-0.9977446,-0.09382404,-0.59140795,-0.120297424,0.20199199,0.26025292,-0.012254227,-0.04379188,0.0938972,0.36639926,-0.36492598,0.24067798,-0.14728822,-0.269829,0.4300949,0.43537667,0.27073607,-0.47115317,0.77810836,-0.16250318,0.021061767,-0.12798233,0.14906055,0.44253644,0.3125447,0.27125266,0.19905001,-0.16700262,0.17090692,0.9463062,0.11838252,0.30708936,0.35453647,-0.015709369,0.58363783,-0.011900845,0.20858385,0.12652498,-0.51692355,-0.03588075,-0.24256429,0.04576721,0.57391316,0.1829805,0.545422,0.015339139,-0.333514,-0.03384254,0.31940743,0.1934009,-1.0817927,0.44050416,0.2462257,0.43564367,0.81368715,-0.052903548,0.028117944,0.7204093,-0.054525577,0.21183296,0.2446933,-0.07425333,-0.28634942,0.64387584,-0.74153274,0.27160916,-0.36164021,0.0017374889,0.21345125,0.34426007,0.3354162,0.9203616,-0.029413223,-0.015769381,-0.17423268,-0.20455714,0.026288938,-0.42980668,0.020571925,-0.2193851,-0.6120924,0.6342541,0.17330101,0.32404068,-0.21290532,-0.004063113,0.35349524,-0.12231532,0.3290849,0.0998828,-0.06821613,-0.15451813,-0.85890967,-0.33530986,0.62009996,-0.01345622,0.18508558,0.07163553,0.15100594,0.280449,-0.38523057,-0.22407085,-0.038936976,-0.64857084,0.012527184,-0.24328475,-0.57617927,0.6524537,-0.26267576,0.26078308,0.17825855,0.13547601,-0.32746685,0.06484825,0.35107183,0.57057846,-0.030308496,-0.23412432,-0.09051473,-0.2265275,0.22637029,-0.27874324,0.11353444,-0.032427635,0.0033045574,-0.6540997,0.56889987,-0.3959073,-0.30986527,-0.048747767,-0.27576783,-0.15239114,0.44016942,-0.27284127,-0.15922579,0.16495952,-0.2546406,-0.07920698,-0.2708452,-0.25509062,0.22274111,0.08791408,-0.04459953,0.013165853,-0.018640734,-0.014850985,0.27304867,-0.14919032,0.13641687,0.009792891,0.37901458,-0.45207673,-0.11606848,0.074156635,0.5405762,-0.049961265,-0.103166096,-0.19851507,-0.3301494,-0.22608684,-0.3715687,-0.09514204,0.15435459,0.18385592,-0.63661456,0.8475555,0.10344048,1.0016054,0.045586225,-0.3337003,-0.011607539,0.5325003,0.013867161,0.060992826,-0.15026222,0.97899854,0.7868917,-0.15455128,-0.32098854,-0.72471625,0.085180804,0.26247898,-0.2662347,-0.36484823,0.20701423,-0.44451904,-0.47989082,0.3257259,0.19351153,0.016066909,-0.15322852,0.030032368,0.19702005,0.17556281,0.28032622,-0.60136324,0.17223018,0.24820466,0.119771026,0.2739194,0.15845236,-0.33489293,0.2647914,-0.538498,0.21166204,-0.47329685,0.06592806,-0.012944481,-0.07785161,0.15926442,-0.019744456,0.46827623,-0.2604245,-0.36391398,-0.12066212,0.51356405,0.3185531,0.30188075,0.91982096,-0.28336942,-0.16199309,0.022935702,0.824805,1.4270126,-0.3167938,-0.012285164,0.3924413,-0.2991147,-0.54507446,0.28175718,-0.28250882,0.010956306,-0.23440933,-0.41683605,-0.54926217,-0.018480869,0.18652393,-0.05011267,0.1482573,-0.45479068,-0.29373148,0.2089523,-0.33913592,-0.29400593,-0.41523564,0.102206446,0.8545391,-0.4320469,-0.2406831,0.10116389,-0.15612869,-0.1597848,-0.60006624,-0.10191537,-0.05823102,0.3267134,0.43200094,-0.4137993,0.055521067,0.25126353,-0.5935838,0.24545175,0.036939915,-0.38183153,0.1460196,-0.15649255,-0.15896294,0.81953454,-0.2739646,0.18892771,-0.6103553,-0.6677567,-0.89694935,-0.3391606,0.5094811,-0.11605836,-0.01845162,-0.6087875,-0.112000085,0.13898093,-0.051122013,-0.03240268,-0.44609106,0.44530782,0.07496513,0.5193771,-0.17909098,-0.9787563,0.05632263,0.103259325,-0.126107,-0.68675315,0.4251772,-0.077426456,0.78345394,0.12041629,0.0509148,0.3835475,-0.7773396,0.13404503,-0.37392962,-0.37700444,-0.39332733,0.19078769 +183,0.5332194,-0.17541164,-0.5638955,0.032212507,-0.27670047,0.20769596,-0.09752878,0.582144,0.35436994,-0.29891506,-0.10830431,-0.29911247,0.081676446,0.37263525,-0.038718652,-0.37314546,0.034238618,0.17336304,-0.66366017,0.48653162,-0.43824244,0.20302315,-0.09770549,0.50440395,0.21473186,0.25322405,0.09494642,-0.0590814,-0.369895,-0.08740673,-0.01084601,0.25432196,-0.37895828,0.19615741,-0.25463933,-0.2950185,0.010687264,-0.33734515,-0.5149579,-0.735156,0.23606136,-0.6803256,0.43797302,-0.015523418,-0.27112886,0.033165727,-0.097007304,0.27954537,-0.23831314,-0.11594726,0.09219914,-0.22744282,0.035258885,-0.31292537,-0.1703109,-0.30686367,-0.5302004,0.076681264,-0.44952723,-0.06503047,-0.21727899,0.022119673,-0.3129502,-0.02045711,-0.14992565,0.4203597,-0.37922972,0.22176762,0.1438938,-0.1880634,0.13102031,-0.5439545,-0.39627922,-0.1428598,0.12033047,-0.008065741,-0.27735144,0.32499513,0.27921256,0.45745844,-0.06842678,-0.03147559,-0.4097807,-0.012549504,0.15578468,0.40373632,-0.027115269,-0.61777467,-0.0909512,0.052305307,0.1515419,0.21035753,0.15994792,-0.254027,-0.08431002,0.16072938,-0.2399862,0.4061755,0.4624272,-0.33730218,-0.27752697,0.23257956,0.514536,0.3198958,-0.13231616,-0.17187557,-0.021570347,-0.5465224,-0.16157971,0.09772827,-0.21845938,0.52484775,-0.10416,0.28771725,0.5497119,-0.2767288,-0.19422475,0.17879893,0.18723403,-0.22543672,-0.07840989,-0.16835742,0.05610522,-0.29456475,-0.011392339,-0.1335277,0.7073791,0.26116237,-0.5442665,0.4719799,-0.46011886,0.14903761,0.008744144,0.4491344,0.82041055,0.40864244,0.2840638,0.62979215,-0.30357736,0.13774423,-0.12223049,-0.34598282,0.13539146,-0.25648764,0.098588735,-0.5420181,-0.0794316,-0.0042766095,-0.23471731,0.14665954,0.60049146,-0.46928468,-0.10283062,-0.021839015,0.8192739,-0.1767748,-0.2273186,0.7588547,1.0140357,0.9995014,-0.028758418,1.0402544,0.21625815,-0.2668832,0.26662585,-0.44291726,-0.64726794,0.30489758,0.2983004,-0.20644815,0.29198965,-0.09673715,-0.024210183,0.354987,-0.2918679,0.11527564,-0.049199987,0.43046433,0.19566122,-0.046765093,-0.22789909,-0.4917221,-0.30799356,-0.07421093,0.014099987,0.36110884,-0.19690196,0.46864802,-0.013278937,1.7904385,0.04521578,-0.02393954,-0.0032539228,0.5941353,0.18925886,-0.23314826,-0.13720317,0.3363224,0.038584664,0.12118979,-0.45965403,0.13746499,-0.3354154,-0.50102913,-0.040912636,-0.3129793,-0.114074595,0.028541902,-0.34241125,-0.1883255,-0.22911923,-0.27010503,0.5200219,-2.7681706,-0.29069623,0.08505132,0.3441951,-0.25923702,-0.42957315,-0.15310912,-0.6433526,0.22858486,0.25649843,0.5209488,-0.68450165,0.25896803,0.29801372,-0.5770839,-0.19975229,-0.5564602,0.01491217,0.10111825,0.3009429,-0.114109725,-0.048854694,0.058040645,-0.008825199,0.4098592,-0.06402208,0.16027692,0.2727429,0.3107043,0.012717867,0.29554048,-0.0022906938,0.50104314,-0.39445394,-0.20299599,0.40997028,-0.29042226,0.3748614,-0.13091406,0.10070462,0.539819,-0.52196133,-0.7904555,-0.48767072,0.05558753,1.0908104,-0.04175888,-0.43189922,0.18711099,-0.4639354,-0.2447297,-0.19559485,0.45681494,-0.025978176,-0.261496,-0.70849377,0.052876648,0.02150451,0.16765377,-0.03472154,-0.07788291,-0.2072657,0.4959093,0.0073087197,0.37435862,0.21362711,0.15600252,-0.3458316,-0.38444906,0.2335628,0.8393098,0.34860185,0.19451576,-0.13223536,-0.22219066,-0.3322881,-0.1273882,0.08286907,0.5293716,0.5732303,-0.11479201,0.13969445,0.3457201,-0.0837905,0.0062574525,-0.19213094,-0.28312963,-0.04118763,0.013117365,0.5189014,0.78744584,-0.13293496,0.62408155,0.10876394,0.25698727,-0.13016137,-0.48847622,0.63071173,0.9590345,-0.24649957,-0.25138363,0.327463,0.30912924,-0.40481645,0.39146945,-0.43126494,-0.44684282,0.56248105,-0.15702066,-0.31584257,0.2792484,-0.26549464,0.1612639,-0.78119093,0.25021002,-0.3441872,-0.3874745,-0.6019464,0.0042422474,-2.6909912,0.11971808,-0.20649405,-0.16372052,-0.010544451,-0.003392746,-0.018163629,-0.53532064,-0.5732651,0.13446555,0.06219598,0.7026245,-0.15674825,0.07076167,-0.09409244,-0.4756792,-0.48554903,0.06516311,0.18126284,0.48551732,-0.0048574605,-0.5168149,0.12910102,-0.27128756,-0.30361897,0.22384787,-0.57983804,-0.5777725,-0.26366764,-0.4471701,-0.44174868,0.7022924,-0.22391237,-0.01304185,-0.18962161,0.027048893,-0.08270915,0.27278036,0.2555521,-0.10071906,0.07162693,-0.07472489,-0.012722071,-0.34125063,0.19136745,-0.012865741,0.35839197,0.60065675,0.05273201,0.3063268,0.44747263,0.7520921,-0.04017469,0.7657234,0.33292305,-0.13457718,0.30911806,-0.2610341,-0.2431714,-0.27353725,-0.16883107,0.063218996,-0.4369175,-0.45220688,-0.14499985,-0.39791057,-0.6210822,0.34839824,-0.028347118,0.13195144,0.1348204,0.2185743,0.68481064,-0.16480704,0.08588465,-0.057638135,-0.0955172,-0.62166774,-0.32881403,-0.64875954,-0.5534658,0.42849922,0.92653835,-0.20277414,-0.08564583,0.18162541,-0.40865618,-0.012039582,0.15640374,-0.1562706,0.096548416,0.3776835,-0.28616744,-0.56302774,0.39828855,-0.103023656,-0.15903395,-0.65715915,0.27296895,0.5091672,-0.6251948,0.567475,0.14262183,0.12424382,-0.15719274,-0.25320634,-0.15226358,-0.039539974,-0.15688327,0.26827872,0.19461349,-0.7134524,0.34883115,0.27533263,-0.3186289,-0.74505204,0.4065779,0.0573376,-0.26571515,-0.15968674,0.31159833,0.17360361,0.0812144,-0.26284927,0.23381422,-0.5599051,0.20265701,0.34948713,-0.12979664,0.16952713,-0.19402666,-0.33048075,-0.7286078,0.104336284,-0.31475037,-0.39302272,0.34674212,0.25715834,0.1479147,0.08335376,0.310906,0.27461365,-0.22778906,0.022107108,-0.081173405,-0.2106284,0.3332782,0.36644503,0.6927019,-0.37592882,0.55765456,-0.05527329,-0.12713313,0.118969776,-0.06521489,0.2149454,0.30112615,0.34869033,0.25628603,-0.392876,0.29771724,0.9202902,0.16711341,0.33496788,0.017127998,-0.09867242,0.093901746,0.029972378,0.2919091,-0.06524037,-0.46123308,-0.037632,-0.19300528,0.22280246,0.47115344,0.09424519,0.18989936,-0.07544113,-0.37638396,0.004247456,0.19492534,-0.044082206,-1.3192366,0.22050698,0.17254467,0.9288256,0.35671562,-0.079664245,-0.076688625,0.64174026,-0.079114266,0.24558942,0.32735208,-0.034123056,-0.56635284,0.5412848,-0.6613169,0.64885205,-0.09226668,-0.11984202,0.011274548,-0.042770814,0.44186884,0.7876454,-0.27554864,-0.12684569,0.15564094,-0.33671197,0.120571755,-0.3836991,0.04989999,-0.7983423,-0.3150315,0.56044847,0.49380144,0.30838126,-0.30802086,0.027214587,-0.03663576,-0.1726106,0.35898504,0.0021869282,0.25819537,-0.07192208,-0.74179107,-0.14490871,0.48302895,0.028387817,0.16148649,0.09763861,-0.14341412,0.26929808,-0.22038539,0.06962999,-0.08519756,-0.65721905,-0.09681503,-0.3538562,-0.44463247,0.5851586,0.07450728,0.29141885,0.1979783,0.11096198,-0.34219643,0.58130395,0.03031677,0.7646736,-0.02046522,-0.16861543,-0.4204698,0.29562154,0.21069473,-0.13711722,-0.053776145,-0.029874679,-0.057454947,-0.59571636,0.6187328,0.073697805,-0.1372992,-0.14892557,-0.04070956,0.068459764,0.6104864,-0.06499819,-0.23092836,-0.21806517,-0.0503378,-0.40178153,-0.06932445,-0.013092516,0.12874338,0.32546446,-0.115869455,-0.15119952,-0.09781049,0.049582534,0.23757778,-0.06731038,0.18098532,0.40325144,0.09278896,-0.25498104,-0.269114,0.12309548,0.48758304,0.2036964,-0.096539356,-0.41228327,-0.41873857,-0.40778986,0.14909202,-0.053861316,0.2876076,0.1356794,-0.36493126,0.4992669,-0.17482659,1.2603232,0.19609483,-0.17370155,0.16473608,0.46933904,-0.016871449,-0.10100613,-0.42761377,0.7895698,0.34379876,-0.096695326,-0.15682983,-0.28546527,0.057749636,0.26425594,-0.16637225,-0.180336,0.06128924,-0.63149375,-0.18467095,0.11352292,0.2599874,0.21099256,-0.21854171,0.0971649,0.38178927,0.13140236,0.20781389,-0.3027429,-0.35748413,0.3757248,0.2938451,0.05373001,0.14002614,-0.4088159,0.3980545,-0.5516637,0.10440031,-0.26803833,0.22091727,-0.11581003,-0.49088576,0.2747863,0.3422149,0.29014847,-0.36038718,-0.40379283,-0.39256886,0.50876933,0.2020436,0.13497472,0.5535219,-0.21010464,-0.2666043,0.16843575,0.459221,1.010648,-0.119999446,-0.19593008,0.5097457,-0.32222876,-0.57970184,0.63606805,-0.3097855,0.20765877,0.049298327,-0.11067939,-0.74680847,0.25861898,0.1096857,0.0061206063,-0.08620183,-0.621822,-0.049229957,0.11358822,-0.53081256,-0.18048327,-0.42554194,0.15239301,0.5497353,-0.26023343,-0.16236804,0.2147323,0.27673876,-0.3112148,-0.3744922,-0.032035436,-0.4054871,0.24171036,-0.00508246,-0.3276408,-0.17112592,0.10419245,-0.50958943,0.14246829,-0.009465826,-0.48824087,0.09252571,-0.30942917,-0.17410527,0.9439936,-0.2977281,0.31188747,-0.34135404,-0.4414445,-0.6574568,-0.26513174,0.45224863,-0.09208855,0.0121117495,-0.7100528,-0.09389321,-0.07242098,-0.2626598,-0.09908079,-0.38176146,0.4931888,0.0639259,0.12652859,0.019771155,-0.64017683,0.22020823,0.13584763,-0.14883812,-0.5820759,0.39589292,-0.24329406,0.77321804,0.06696624,0.014423555,0.5313326,-0.39944202,0.031972323,-0.16604449,-0.07194804,-0.49900708,0.1044954 +184,0.11616778,-0.06440176,-0.64161825,-0.11797232,-0.28026637,0.33912683,-0.37821,0.27302483,0.30081096,-0.43279597,0.026481075,-0.0986613,-0.2383233,0.292109,-0.073533915,-0.51941526,-0.04811636,0.27385628,-0.47926834,0.5708383,-0.33965918,0.31619126,0.09916126,0.35345683,-0.044265877,0.14962576,0.07985384,-0.121683665,-0.062432315,-0.070234954,-0.03969511,0.07342498,-0.39409986,0.33687374,-0.17655136,-0.32319853,0.008718201,-0.34968784,-0.3057414,-0.70825154,0.11350332,-0.7356431,0.6074134,-0.049174514,-0.2034633,0.28568524,0.36927217,0.21958734,-0.12860309,-0.011073415,0.19049893,-0.47844484,-0.5984933,-0.2689059,-0.61912405,-0.46097785,-0.7481347,-0.06288574,-0.5551875,-0.007645079,-0.24530588,0.27720475,-0.26397654,-0.066830106,-0.060669627,0.34431452,-0.39699072,0.106552266,0.17868294,-0.18803391,0.054099057,-0.78599733,-0.16307323,-0.047190774,0.20449774,0.14986534,-0.23806109,0.2991628,0.22148778,0.5474197,0.06922317,-0.30650637,-0.5389457,-0.17622158,0.095099345,0.50511557,-0.15805574,0.14590709,-0.15142791,-0.0019151525,0.4959251,0.21668999,0.05321714,-0.18022643,-0.070711605,-0.19290388,-0.31108356,0.299222,0.46716598,-0.45393944,-0.19680996,0.5120763,0.5989351,0.108645774,-0.33082506,0.0857165,-0.13034084,-0.45381263,-0.0792722,0.20518057,-0.21293092,0.42805284,-0.14849104,0.18791911,0.4969881,-0.12461145,-0.2813193,-0.019204766,0.098772235,0.10820176,-0.06747706,-0.19397298,0.3167476,-0.4470094,0.009409113,-0.25360632,0.5179711,-0.050013185,-0.6906828,0.41811106,-0.35915524,0.059051592,-0.03783359,0.66455775,0.92881095,0.8456175,0.2360669,0.9134745,-0.3041635,0.121818565,-0.18620427,-0.04059558,0.13607515,-0.1655064,0.22830813,-0.5811226,0.27571216,-0.023596104,-0.19753437,0.15193263,0.8480708,-0.40153483,-0.1697127,0.267723,0.65940714,-0.24537197,-0.23131032,0.609002,0.9414778,0.9360441,0.115666725,1.1323956,0.28144053,-0.22192052,-0.15690073,-0.3090396,-0.886463,0.18706849,0.2005448,0.1301594,0.37226677,0.18515491,0.0032699981,0.5013412,-0.19888727,-0.120672606,-0.106659256,0.22952679,0.08330999,-0.017218484,-0.24706647,-0.23867953,0.22263582,-0.0973023,0.25707674,0.35523823,-0.14777012,0.48147658,0.13890299,1.5353057,0.008789258,0.032387454,0.19297126,0.30178282,0.20651427,0.07232054,-0.13798049,0.4138624,0.15721011,-0.07203894,-0.4403918,0.067168914,-0.23169577,-0.5417535,-0.19091733,-0.28483626,-0.15782939,-0.20853376,-0.19439909,-0.39584216,-0.022225903,-0.65042555,0.40324762,-2.5735526,-0.16683218,-0.059316147,0.27263898,-0.19707121,-0.32030964,-0.34399325,-0.4742683,0.5291329,0.3277746,0.4427181,-0.4997521,0.50157356,0.58288234,-0.75225335,-0.27307636,-0.6342472,-0.08900321,-0.08464459,0.35038087,0.05427862,-0.40929148,-0.020680087,-0.007566222,0.3682163,-0.21616523,0.107418485,0.5417169,0.5024666,-0.13082863,0.43185446,-0.12174159,0.67800426,-0.39234,-0.27123836,0.4174688,-0.49519873,0.36904103,-0.25842637,0.16926447,0.42174223,-0.3820608,-0.78652364,-0.38685974,0.14847891,1.3462232,-0.27212048,-0.533624,0.017274955,-0.5709136,-0.18482454,-0.0028586942,0.5577995,-0.08740965,-0.18633296,-0.68509865,-0.09351765,0.0746306,0.40610737,-0.05097733,0.12183679,-0.42688605,0.5735682,-0.003619045,0.57761765,0.3985787,0.14801912,-0.39601168,-0.20613782,0.07039466,0.6582456,0.26679096,0.1879598,-0.3174258,-0.30473083,-0.118026495,-0.19468127,0.0064176535,0.4332955,0.43713698,-0.04099872,0.05453172,0.29190928,-0.2687687,-0.06457351,-0.33169514,-0.33315426,-0.1625768,0.25948876,0.4157036,0.6663641,0.10710246,0.4497873,0.019596547,0.28055492,-0.16579714,-0.5025174,0.4085929,0.85377306,-0.27364555,-0.23528218,0.5049117,0.3379868,-0.26900885,0.54838187,-0.60938406,-0.45219138,0.37551573,-0.15291739,-0.4136915,0.09399557,-0.444655,0.09209598,-0.78141254,0.11559907,-0.27248088,-0.37527934,-0.78848875,0.05974441,-2.8515365,0.088694975,-0.27077624,0.04541741,-0.1580756,-0.061450254,0.10275136,-0.34848404,-0.60639083,0.20530508,0.40531832,0.5676878,-0.08014868,-0.058021843,-0.34976822,-0.399172,-0.21670537,0.24026166,0.034538954,0.28739688,-0.17673005,-0.57228214,0.06913288,-0.3346165,-0.14614289,-0.20589772,-0.43326837,-0.14839077,-0.10779315,-0.47947794,-0.19054125,0.66864234,-0.7123407,-0.09022006,-0.4687138,0.032852728,0.20018141,0.27961117,-0.071394384,0.14990321,0.22694036,-0.18821414,0.0070082503,-0.30911806,0.27511835,-0.083960615,0.13721494,0.5929061,0.026021566,0.064692356,0.59304005,0.7855791,-0.13860874,1.0386394,0.48072365,-0.19648235,0.33197403,-0.19712362,-0.11172886,-0.6127315,-0.074613094,-0.04628327,-0.49185658,-0.4036209,0.044714663,-0.3808536,-0.9870173,0.60719365,0.19035745,0.03351287,-0.088178314,0.5037419,0.47076622,-0.2809773,0.11248773,-0.19974197,-0.23786573,-0.3355544,-0.4945035,-0.76649624,-0.567725,0.14557932,1.3480648,-0.22436635,-0.047849767,0.23326717,-0.26902384,0.010270553,0.3920944,0.28499725,0.23439516,0.43145594,0.19663699,-0.5778449,0.27846023,-0.12448426,0.020361636,-0.6060913,0.18603542,0.6214224,-0.66059226,0.39851183,0.44203624,-0.028505865,-0.054782987,-0.78321797,-0.14739223,0.04923457,-0.20175402,0.24475977,0.21167064,-0.7191226,0.59540176,0.1975796,-0.31415242,-0.8644227,0.2935062,-0.1583784,-0.16960444,-0.05755788,0.5027897,0.2409514,0.08605447,-0.29901028,0.08025285,-0.3548909,0.26926664,0.055327427,-0.13928778,0.31707764,-0.1728775,-0.18082653,-0.8635096,-0.06649121,-0.45318604,-0.35022917,0.434475,0.124191955,0.18417673,0.046858046,0.13143383,0.395346,-0.29820704,0.0699023,-0.3284835,-0.22902225,0.33777568,0.38092598,0.380349,-0.34501144,0.5501167,-0.13138798,-0.122497976,-0.15060735,-0.07926726,0.3917933,0.15877008,0.3887945,0.07810298,-0.24920307,0.07465637,0.9065508,0.17999163,0.24185577,0.035229802,-0.26374206,0.38363123,-0.0037747982,0.054654505,-0.23386979,-0.45363876,0.043289125,-0.35523087,0.23803727,0.51293147,0.1750573,0.64329064,-0.09955964,-0.009621032,0.0011399707,0.14686367,0.12894504,-0.6937214,0.2670408,0.12685224,0.66172683,0.5493862,0.17615394,0.14381196,0.7620215,-0.29794455,0.018268254,0.49857697,-0.14244045,-0.280508,0.47220582,-0.72918403,0.4376312,-0.08231485,-0.015054015,0.25734717,0.17784037,0.5056455,0.88219386,-0.18170215,0.044089723,0.13057624,-0.28496268,0.024185674,-0.28517765,-0.049301524,-0.3725249,-0.33818868,0.80393964,0.24824147,0.54437965,-0.27258715,0.0012140827,0.07359666,-0.31572682,0.32864004,-0.065675475,0.07370819,-0.14815484,-0.39858547,-0.030988285,0.5432153,0.24326842,0.12771727,0.22375228,-0.23683034,0.3191676,-0.15277384,-0.072333016,-0.03703147,-0.45241216,-0.0124360705,-0.22117145,-0.674765,0.66384506,-0.046987526,0.16219889,0.21122822,0.04855132,-0.26676932,0.3911536,0.108643614,0.71855104,0.058923695,-0.13637389,-0.10383619,-0.12904462,0.05133074,-0.3258071,0.073598996,-0.17945647,0.23909487,-0.8056282,0.5154888,-0.4054626,-0.41424948,0.16417912,-0.35460284,-0.04811734,0.49266523,-0.18923786,-0.08690482,0.07814606,-0.07984074,-0.25520042,-0.34882265,-0.4675716,0.14774969,-0.28006482,-0.17870787,-0.31365666,-0.23961838,-0.1438879,0.4104914,-0.042763453,-0.10205124,0.28237966,0.13624929,-0.42499593,0.14739323,0.24677218,0.51667863,-0.18619435,-0.087219715,-0.3062153,-0.2363455,-0.3283929,0.4798682,0.01512702,0.24064705,0.17298165,-0.5649971,0.81624573,-0.19398226,0.93226784,-0.030003969,-0.4065059,0.08268739,0.527578,0.009741707,0.1212516,-0.20049725,0.6755987,0.6359553,0.028626798,-0.12811793,-0.6084565,-0.0646613,0.3687633,-0.3233921,-0.08763484,-0.020924347,-0.7262214,-0.25931585,0.3536013,0.09342738,0.21230961,-0.1992772,0.2557114,0.0022685155,0.228883,0.23355396,-0.42429498,-0.04762539,0.43349475,0.22619972,-0.07851974,0.06053334,-0.28313008,0.26337793,-0.6400261,0.004498086,-0.2919213,0.00852641,-0.12907639,-0.0313827,0.35074195,0.19861484,0.22626127,-0.14719845,-0.30698887,-0.09454427,0.3694505,0.13914093,0.3908914,0.5924767,-0.33498308,-0.02586287,-0.022840206,0.48928216,1.1812763,-0.3216205,-0.04792828,0.34705886,-0.3372326,-0.57573545,0.31928036,-0.62710154,0.13093375,0.11728023,-0.37104416,-0.2291162,0.19538617,0.2271359,0.06043481,0.039407015,-0.4327886,-0.18170956,0.005963647,-0.41278172,-0.12579301,-0.1885967,-0.02994554,0.8023396,-0.2543085,-0.25132433,0.040191058,0.3799784,-0.18089554,-0.5367848,0.2838475,-0.44568178,0.30306008,0.21211973,-0.3318367,-0.00035619736,0.0031330246,-0.58802545,-0.028661106,0.46656248,-0.41049552,-0.03768814,-0.5172192,0.28231168,0.80111176,-0.022326767,0.3235406,-0.20698169,-0.46477297,-0.8476353,0.027634177,0.1365802,0.09089,-0.17479207,-0.56883585,0.0025412696,-0.28420123,-0.4728144,0.10004298,-0.6330885,0.5197304,0.21487941,0.23528707,-0.29642138,-0.8168139,0.0169554,-0.008007778,-0.25048235,-0.30840778,0.43127897,-0.18153973,1.0887219,0.17629974,-0.09192065,0.2121904,-0.852583,0.48148945,-0.35142142,-0.23295024,-0.5623713,-0.24221943 +185,0.35817567,-0.17785287,-0.42248315,-0.016908497,-0.285657,0.06024191,-0.13162598,0.35851687,0.17644435,-0.41868913,-0.06361689,-0.06950402,-0.048446983,0.39309064,-0.16672413,-0.5338766,-0.17511334,0.23600413,-0.42434123,0.6174956,-0.4762839,0.3388472,0.089615494,0.28604177,0.111315474,0.19553371,0.13569655,-0.08823971,-0.10834398,-0.08405718,-0.104481876,0.38976997,-0.47244674,0.07819105,-0.12053841,-0.26739368,0.05174359,-0.49186128,-0.43734536,-0.62725985,0.35755086,-0.74111897,0.4401228,0.16003495,-0.22264725,0.253052,0.027603805,0.19953133,-0.1133802,0.06690637,0.2122379,-0.021694988,-0.029141456,-0.12814218,-0.21668558,-0.15844655,-0.46529216,0.09905158,-0.49961078,-0.18623415,-0.17667855,0.21133849,-0.24425735,-0.03835657,-0.17651463,0.34910163,-0.47619325,0.0068757385,0.113983706,-0.13008587,0.37479156,-0.57312226,-0.13021067,-0.039947562,0.07255863,-0.23702407,-0.18369462,0.2911742,0.18850678,0.47990125,-0.11725109,-0.18327418,-0.28765598,0.107701026,0.12550874,0.5533584,-0.33134294,-0.21920595,-0.14206602,0.2115368,0.23619634,0.16955078,-0.08588297,-0.46090013,-0.075404994,-0.032120436,-0.055643365,0.34599772,0.5276399,-0.2143142,-0.12447295,0.4345733,0.33394063,0.234447,0.007946137,-0.020035315,-0.11550432,-0.4409774,-0.062242344,0.0925746,-0.15251474,0.42635325,-0.060427707,0.06852825,0.46934927,-0.054773103,0.0042638183,-0.15322065,-0.018446822,0.041312777,-0.15336058,-0.16874981,0.25005943,-0.3497754,0.15385336,-0.043079317,0.5843113,0.1125579,-0.75221026,0.31732634,-0.44808313,0.1820937,-0.18507619,0.47979194,0.65353763,0.31725428,0.18404481,0.76202357,-0.4403985,0.14025128,-0.17683975,-0.3143247,0.1394996,-0.07161803,-0.17996007,-0.54303783,0.012789737,-0.17626835,-0.26702267,0.09212581,0.23236626,-0.6054598,0.05332219,0.11647104,0.6713653,-0.31583816,0.08697364,0.6023941,0.92213327,0.83110154,0.021072892,1.0059283,0.22858758,-0.1419227,0.22740775,-0.29280895,-0.6657968,0.19803686,0.50231624,-0.09302476,0.2093913,0.18023589,-0.05280914,0.25331077,-0.32730776,-0.19795099,-0.33579773,0.22580379,0.001964949,-0.0081007555,-0.47190166,-0.17751063,-0.07558266,0.14762591,-0.132896,0.20720874,-0.34418485,-0.017945468,-0.022315606,1.8180904,-0.15530738,0.10143921,0.14837769,0.21771848,0.26539314,-0.10378152,-0.04257884,0.4058566,0.26719657,0.12128091,-0.53458405,0.06935098,-0.2680647,-0.506172,-0.06928533,-0.12505625,0.026354171,0.11051137,-0.49275988,-0.00030644238,0.056220613,-0.36407822,0.4740075,-2.7259915,-0.12877059,-0.12746665,0.36844608,-0.29561415,-0.40621608,-0.13599372,-0.2511199,0.4267815,0.4096649,0.47008696,-0.58970064,0.14915667,0.24253488,-0.519881,-0.097927645,-0.45536494,-0.11942804,-0.039632037,0.38654274,-0.0050248653,-0.03173269,0.08400318,0.104233,0.43284887,-0.13544999,0.061776757,0.2948983,0.37794152,0.0841687,0.40520525,-0.1278891,0.44774023,-0.17673184,-0.27850294,0.4045306,-0.1686036,0.25799048,0.046854727,0.13035989,0.30374128,-0.58413637,-0.8477564,-0.5314053,-0.3798002,1.2835166,-0.20536798,-0.42498007,0.2749291,-0.1913827,-0.21483627,-0.012102647,0.31600848,-0.08118096,-0.12741184,-0.85375947,0.14956364,-0.14649858,0.32943937,0.037714086,-0.0009878222,-0.32543305,0.5535442,-0.09254065,0.4149744,0.45133197,0.29482388,-0.031824358,-0.44812632,-0.033495847,0.8553742,0.480004,0.09811781,-0.16959733,-0.1452648,-0.07567866,0.055997845,0.18219209,0.41747478,0.70347404,-0.07637825,-0.019279974,0.30083093,0.049090486,-0.0041714404,-0.13469991,-0.2972603,0.0037528872,0.01051769,0.5202635,0.5548497,-0.15023576,0.40192485,0.0083514415,0.24750301,-0.011936955,-0.4025392,0.31048387,1.1641113,-0.10439159,-0.19837524,0.5196841,0.37490392,-0.16875154,0.34284413,-0.60493267,-0.18494192,0.29015425,-0.2143325,-0.37888125,0.25499684,-0.27824146,0.037388656,-0.7665267,0.35809493,-0.16487277,-0.32135063,-0.55153537,-0.056898646,-3.1182158,0.15803991,-0.31735724,-0.21235669,-0.0037433207,-0.10666348,0.22216427,-0.6050803,-0.5476142,0.06457654,0.03136523,0.43507618,-0.04831866,0.1510416,-0.08138813,-0.1909627,-0.097085446,0.2115792,0.16366349,0.34052953,-0.06818077,-0.4024667,-0.26209924,-0.12231949,-0.37705874,0.14504063,-0.542092,-0.46261638,-0.16242777,-0.5647459,-0.0744213,0.54229915,-0.21385567,-0.025361504,-0.1731007,-0.05162651,0.007580828,0.2055158,0.21487306,0.29639882,0.14697464,-0.000419572,-0.10110904,-0.25585845,0.24692656,0.18053475,0.095212236,0.41001433,-0.14545724,0.14188376,0.4425999,0.59378153,-0.40403855,0.6685548,0.71497655,-0.23718765,0.15978147,-0.30412143,-0.18725806,-0.6023437,-0.43001068,-0.22329019,-0.36911625,-0.36338657,-0.13711062,-0.35990256,-0.69546103,0.6112591,-0.14373639,0.22310305,0.11673484,0.20782968,0.5436396,-0.14578447,-0.024570342,-0.039048,-0.15808398,-0.5401964,-0.33175066,-0.47452566,-0.39943635,0.10402532,1.0479841,-0.16965199,0.093086705,0.08933702,-0.1112282,-0.07578353,-0.24381047,-0.026691908,0.2272161,0.29087135,0.03778319,-0.57433206,0.41508767,0.05956527,-0.18045889,-0.5112606,0.31315616,0.6066793,-0.4815538,0.4684455,0.2703796,0.16592652,-0.015641594,-0.70837146,-0.18917117,0.1470131,-0.24309412,0.48142558,0.20230368,-0.645603,0.4164986,0.408934,-0.36101547,-0.74787134,0.421304,0.05682522,-0.38040748,-0.028230034,0.24931282,0.079453595,0.0014269948,-0.04224827,0.28695408,-0.25896358,0.29393494,0.25461793,-0.13868102,0.24125805,-0.27750283,-0.20616636,-0.70347714,0.20076498,-0.31008458,-0.31118825,0.2178314,0.12712349,-0.029681262,0.013678558,-0.011918686,0.51039577,-0.28006536,0.12996149,-0.093187325,-0.1798816,0.38623846,0.5085258,0.43188265,-0.3182015,0.47488692,-0.046711173,-0.20175545,-0.23263925,0.05610361,0.5147871,0.005639598,-0.017891195,-0.1712973,-0.16003661,0.2583712,0.698937,0.0987022,0.2602805,-0.046787612,-0.21133173,0.29576743,0.07648165,0.08800937,-0.15654083,-0.5514436,0.08180339,0.037073523,0.16749984,0.4651844,0.22390051,0.17004353,-0.21723863,-0.2981006,0.04389549,0.18795416,0.15874512,-0.965682,0.249915,-0.015786178,0.6777558,0.5596114,0.051392652,0.10530317,0.50220525,-0.23354436,0.037267983,0.3701393,-0.17757083,-0.4297055,0.3355843,-0.7040255,0.28703928,0.03435351,0.050543662,0.0989787,0.13258994,0.3743459,0.64783275,-0.13904089,0.035327815,-0.08195874,-0.17324968,-0.09106937,-0.20958881,-0.0391315,-0.4195198,-0.5240466,0.5077949,0.37466252,0.32393777,-0.23821804,0.0058459695,0.04719732,-0.16993353,0.21778305,0.09474824,0.046678863,0.033812985,-0.4863428,-0.24178548,0.59097016,0.12448138,0.027399998,-0.2068164,-0.055397987,0.23850974,-0.13077597,-0.19484505,0.007476546,-0.6234672,-0.098735124,-0.4537959,-0.23851001,0.28529054,-0.18010822,0.1952965,0.011139078,-0.028665371,-0.31519935,0.3967263,0.18827637,0.9493249,-0.010265827,-0.18720707,-0.3276656,0.28308272,0.10885949,-0.01834502,-0.03787354,-0.21888272,-0.025516734,-0.6576484,0.43404722,-0.050635442,-0.26489776,0.19307593,-0.07299316,0.08007369,0.45217898,-0.11986384,-0.217583,-0.15353154,-0.13503978,-0.35170865,-0.27668908,-0.114815414,0.15207404,0.22951575,-0.09264697,-0.03672822,-0.09510188,-0.16903238,0.46540475,0.10416991,0.3495468,0.18317556,0.2158809,-0.32131055,-0.030830862,0.25396436,0.37963048,-0.011917051,0.058799557,-0.089322865,-0.38877314,-0.38820314,-0.048805848,-0.18684725,0.30850795,0.18180238,-0.25492373,0.70548517,0.12596633,1.1816319,-0.0917195,-0.21614113,-0.0054179914,0.40058398,-0.014681539,0.0019373875,-0.31553152,0.85335684,0.72344077,0.156567,-0.09862722,-0.26766413,-0.2097184,0.16478622,-0.21533093,0.008554585,0.023327818,-0.5877422,-0.3863889,0.22532773,0.21508937,-0.0037227161,-0.12433381,-0.06984091,0.07862497,0.037770264,0.24398287,-0.30749518,-0.10796358,0.29576012,0.30601394,0.057176434,0.17614806,-0.48929375,0.39931154,-0.42667097,0.11398712,-0.29152587,0.20712301,-0.00952634,-0.16845231,0.11897632,-0.14127329,0.38041705,-0.31210092,-0.3314013,-0.14782694,0.53373826,-0.089405224,-0.0071446784,0.5624572,-0.23287237,0.19143632,-0.08325027,0.36386108,0.9479287,-0.37587333,0.057546094,0.33092347,-0.18939418,-0.53576714,0.27626508,-0.16715394,0.049860395,-0.12439961,-0.29987577,-0.38008937,0.1735266,0.11711289,-0.030303083,-0.17979172,-0.48797587,0.00021754764,0.37929735,-0.15798168,-0.2053145,-0.3148329,0.20059796,0.54492986,-0.30231774,-0.49973115,0.1854671,0.16683458,-0.16611725,-0.4438179,-0.09483629,-0.2840136,0.098278925,0.22220583,-0.37588423,-0.049520597,0.1854224,-0.40971002,-0.08794168,0.14479369,-0.25578085,-0.03742356,-0.16790685,-0.060669832,1.0295943,-0.21245612,0.08845119,-0.66997397,-0.49414876,-0.8978361,-0.34248346,0.5340574,0.17418282,0.20754981,-0.67411643,0.08861424,-0.14485914,-0.1894369,-0.15138464,-0.38071537,0.49048156,0.15371999,0.3438664,-0.41399804,-0.6071411,0.15552104,0.13329259,-0.17099324,-0.53595155,0.43077132,0.099017546,0.7686836,0.020732751,-0.017433774,0.24756104,-0.54464495,-0.026805907,-0.18865263,-0.25165823,-0.7755789,0.112046435 +186,0.36307552,-0.48188505,-0.55787677,-0.05006011,-0.30998197,0.061343923,-0.22976987,0.42005745,0.36517325,-0.24900572,-0.29637745,-0.0024656851,0.09027579,0.43227604,-0.085056335,-0.47707224,-0.1615852,0.19340503,-0.90800875,0.5247078,-0.44116846,0.24018593,0.012777676,0.5453896,0.21362989,0.36948976,-0.0694877,0.00033040842,-0.15562868,0.0101079,-0.16808724,0.21329588,-0.28819564,0.15311605,-0.34072772,-0.36372194,-0.07157229,-0.55409044,-0.21894574,-0.7719647,0.24117081,-0.896365,0.41281608,-0.08587208,-0.17987792,-0.10990999,0.13562578,0.3263569,-0.43941274,0.012749898,0.14784779,-0.25885823,-0.124304034,-0.42996237,-0.108821005,-0.17269869,-0.43880963,0.014467905,-0.61379045,-0.20983405,0.111945994,0.1479901,-0.2507194,0.077390805,-0.1504556,0.3909777,-0.34698835,0.037473034,0.25702497,-0.22314803,0.118887536,-0.5427708,-0.10048329,-0.13896897,0.6621554,0.010564745,-0.31143963,0.19202852,0.019258827,0.34299496,0.12906967,-0.033075258,-0.39020595,-0.045917902,0.010708089,0.42244852,-0.036722675,-0.3000025,-0.22449452,0.00443319,0.3361118,0.3285865,0.18316269,0.0052715354,-0.10157832,-0.39843807,-0.049920764,0.39896145,0.52408284,-0.118168555,-0.2208517,0.26433957,0.70010585,0.22616434,-0.22287494,-0.13815863,0.15449262,-0.46065864,-0.12115151,0.16480136,0.118129365,0.502572,-0.15498655,0.36654124,0.68048,-0.0831125,-0.07394511,0.3166686,0.26299548,-0.23046567,-0.11683202,-0.2587407,0.20184632,-0.44850495,-0.106601276,-0.26609704,0.6334899,0.11165205,-0.6666587,0.30350313,-0.54466325,0.14829664,0.07368386,0.5633994,0.6583462,0.66592693,0.30151984,0.5801154,-0.1032238,0.27351937,-0.17156929,-0.20609212,-0.048543725,-0.2982944,0.038293574,-0.48199368,0.047742967,-0.23460786,-0.117695265,0.13828285,0.23626135,-0.40039766,-0.16747682,0.23868118,0.7687004,-0.25842905,0.008146058,0.9844044,1.0514184,0.93852407,-0.023770193,1.1212845,0.22548981,-0.27619907,-0.0099558085,-0.29624236,-0.75835544,0.2830234,0.19945087,0.010880251,0.31496838,-0.20954658,-0.122106604,0.36383566,-0.4275484,0.02547366,-0.021073157,0.07298247,-0.055271637,0.12819585,-0.549155,-0.4302788,-0.090252094,-0.041002158,0.15146005,0.31074923,-0.21116225,0.8087384,-0.11532954,1.2002219,0.017400006,0.12900381,0.05530333,0.5311151,0.15170075,-0.38998964,-0.26675072,0.3325608,0.4542651,-0.02450279,-0.652872,0.20829718,-0.35601643,-0.26661798,-0.2299252,-0.43277565,-0.23475103,-0.091332875,-0.39653122,-0.25912288,-0.1386187,-0.26732242,0.32204646,-2.9004104,-0.15970826,-0.06738346,0.2991434,-0.20767812,-0.19075735,-0.09934324,-0.60763264,0.16264264,0.1402138,0.5222369,-0.5766847,0.56318575,0.53431535,-0.55934256,-0.19212551,-0.7352967,-0.09269027,0.04940496,0.3829787,-0.020926228,-0.02644229,-0.11229285,-0.0680452,0.42151037,-0.12094157,0.14534287,0.58391976,0.37158772,0.17264505,0.40070787,0.00973096,0.5826177,-0.6956131,-0.22641182,0.29697433,-0.49724355,0.2978268,-0.09292061,0.1141826,0.7193659,-0.5351178,-0.807828,-0.5645597,0.10910604,1.2236485,-0.2137508,-0.4099582,0.08440582,-0.4567727,-0.24470067,0.008446634,0.6006294,-0.16331235,-0.03741617,-0.6599908,-0.12955785,-0.040245015,0.40591025,-0.033732913,-0.22794072,-0.3156648,0.5174852,0.06691125,0.47836974,0.20297569,0.26673725,-0.38948452,-0.31831047,0.18989289,0.7470445,0.29068872,0.09884571,-0.16745155,-0.27581692,-0.13024104,0.0354398,-0.005564188,0.60969657,0.5741716,-0.057892993,0.3098152,0.39885625,-0.059948664,0.18911104,-0.13613802,-0.15528844,-0.30054712,0.10745553,0.43069968,0.88120484,0.07445953,0.4824929,-0.14945708,0.33836278,-0.16836546,-0.58529884,0.663846,0.3725666,-0.15009928,-0.102232374,0.51875687,0.59382313,-0.4457613,0.4548813,-0.50334835,-0.40176797,0.4888177,-0.21893823,-0.4807122,0.2954333,-0.21483193,0.32941595,-0.92465204,0.28992102,-0.33354023,-0.66916484,-0.61809134,0.095038615,-2.5342076,0.17513423,-0.08588792,-0.2503282,-0.28349096,-0.22439058,0.09424428,-0.64764816,-0.55103654,0.12982725,0.2764674,0.7225626,-0.081302784,0.11590654,-0.2816514,-0.34612927,-0.22393768,0.14246337,0.25504032,0.32963774,-0.21875028,-0.38214707,-0.2178493,-0.09529825,-0.3065385,0.0861362,-0.7039311,-0.39254078,-0.115133174,-0.5640369,-0.22027718,0.5486564,-0.117744885,-0.084312685,-0.29875395,0.10569444,-0.0042643226,0.1642693,0.14180581,0.19334812,0.33305648,-0.19376232,0.16218686,-0.27825853,0.30220526,-0.0710236,0.2995368,0.1939257,-0.047158808,0.261951,0.45184007,0.73552084,-0.18991889,1.0513563,0.290899,-0.09527326,0.3248487,-0.29135728,-0.50842094,-0.3999475,-0.0454606,0.13667957,-0.396722,-0.46056107,0.08684346,-0.3489267,-0.8794953,0.5996347,0.043047786,0.15567292,0.044687778,0.4169536,0.61990213,-0.2382114,-0.008686185,-0.096073575,-0.14076053,-0.41059077,-0.1715674,-0.58577245,-0.45370165,-0.050163638,0.9796079,-0.30613664,0.29302797,0.13641891,-0.3753238,-0.01863969,0.37008473,-0.081905395,0.42045176,0.29661688,-0.05958948,-0.5318213,0.377786,-0.07583474,-0.11013844,-0.35293683,0.13342385,0.7053227,-0.7707443,0.48756632,0.4099989,-0.22717087,-0.27100155,-0.32123992,-0.17888461,-0.19813816,0.07634201,0.30804673,0.35625347,-0.7287156,0.39603305,0.23400605,-0.31018558,-0.78693324,0.18541966,-0.08884447,-0.2907145,-0.09033672,0.3178878,0.026182557,-0.023369124,-0.3262116,0.024720812,-0.14174609,0.2251123,0.1259668,-0.1609508,0.19657348,-0.19145328,-0.21009858,-0.59918106,0.095837474,-0.6996618,-0.0888525,0.58730656,0.06409419,0.05334571,0.09657026,0.040636253,0.29330435,-0.34012607,0.018943598,-0.088837594,-0.30796793,0.038575575,0.4011283,0.4997207,-0.49698368,0.57865506,0.21591474,-0.1570359,0.15291503,0.12971602,0.38966164,0.01869937,0.6059908,0.029804984,-0.2858347,0.3753147,0.717926,0.14933015,0.4903108,0.11505831,-0.048130322,0.20419516,0.011455932,0.29348293,-0.082555614,-0.29557237,0.14280905,-0.25262523,0.15052259,0.3872957,0.21589704,0.4840289,-0.01434346,-0.21435463,-0.015235364,0.21563102,-0.042618882,-1.38646,0.3393103,0.27420118,1.0307516,0.24689646,0.15841256,-0.2580882,0.9674294,-0.3450351,0.06665416,0.411939,0.032304317,-0.47795844,0.74426794,-0.73228794,0.63360745,-0.06135839,-0.10217222,0.16248192,-0.07843161,0.42155644,0.82713705,-0.1781546,0.035001893,0.13568844,-0.2949384,-0.018801322,-0.38849267,-0.041654978,-0.60586166,-0.24920423,0.7087837,0.20927906,0.4065937,-0.16085498,-0.00850017,0.050334517,-0.08498132,0.34652033,-0.028837243,0.15275294,0.010731672,-0.57694453,-0.15717496,0.4401944,0.0071362355,0.29112545,-0.20632668,-0.21202129,0.13085063,-0.19344972,-0.01542341,-0.0814074,-0.5495787,0.14620103,-0.40273514,-0.6135693,0.5520107,-0.077091396,0.13897176,0.32511592,0.029806962,-0.37580732,0.5764942,-0.06276991,0.89902335,0.05408145,-0.1957876,-0.2574958,0.2984257,0.34289542,-0.2769731,0.07118821,-0.41986713,0.08572116,-0.40894738,0.5474251,-0.1107653,-0.48800114,-0.07657053,-0.10982394,0.10443496,0.62868994,0.004277756,-0.12917687,-0.0051299483,-0.10218062,-0.54320043,-0.12149901,-0.3329155,0.23858233,0.5113357,0.08391412,-0.15264829,-0.1453606,0.10855779,0.5482823,-0.056762848,0.5487938,0.28826535,0.047970247,-0.23009323,0.14881647,0.20191844,0.52291673,0.107294224,-0.09317773,-0.56141937,-0.34888116,-0.35206565,0.30912694,-0.10017016,0.22161962,0.052245144,-0.07399897,0.9142604,-0.106045984,1.070146,0.08134045,-0.42290413,0.2546941,0.48258352,-0.05435745,-0.054746762,-0.42929587,1.0507463,0.32766515,-0.20399855,0.045276266,-0.500278,-0.10926113,0.22189343,-0.31693432,-0.18441705,-0.09165716,-0.43847314,-0.21433748,0.2176673,0.20162497,0.37020028,-0.18299842,0.20344682,0.15963899,0.041258875,0.060861606,-0.56532633,-0.20440382,0.36164376,0.19178851,-0.1611663,0.12054652,-0.49521646,0.43016466,-0.6647265,0.17209864,-0.36457762,0.17447768,-0.20726258,-0.61313206,0.19598271,0.14640388,0.322736,-0.5001194,-0.35078827,-0.29287165,0.5127844,0.22618783,0.16966265,0.48855448,-0.32007158,-0.030159488,0.108640075,0.4590701,0.8274744,-0.4201795,-0.060724467,0.31757903,-0.33792236,-0.691133,0.4001089,-0.41276634,0.10398826,0.050305855,-0.29004422,-0.5828685,0.32894167,0.28074488,0.2572836,0.019326182,-0.5256676,0.065086365,0.21250357,-0.27490622,-0.22245,-0.2959074,0.19009246,0.44103646,-0.14359845,-0.3594946,0.07319348,0.25444514,-0.334403,-0.18310094,-0.15931717,-0.27248582,0.166362,0.04153293,-0.35887408,-0.30176368,-0.07896947,-0.47933707,0.120403,0.11880431,-0.36730465,0.059145138,-0.25423846,-0.08296165,0.91152906,-0.3832368,0.10524962,-0.5218565,-0.5026959,-0.86272925,-0.38241026,0.25067452,0.12860058,-0.07597902,-0.61290646,0.1480356,-0.21194269,-0.36493537,0.03421603,-0.48566106,0.49505547,0.16019075,0.24327934,-0.27702728,-0.9620168,0.3485336,0.12959455,-0.3253775,-0.56166685,0.47088757,-0.05278362,0.7286075,-0.0029768895,0.13531174,0.20085007,-0.447194,0.034484338,-0.251161,-0.08235856,-0.592613,-0.089061834 +187,0.41420987,-0.23918213,-0.32930216,-0.06971731,-0.18286358,0.29265112,-0.09635864,0.58523077,0.07766321,-0.44238696,-0.27551603,-0.041241784,0.07253363,0.3230187,-0.250781,-0.46305415,-0.01585617,0.050505344,-0.3876313,0.45790017,-0.5412093,0.2613408,0.03498963,0.4018126,0.14747874,0.12590149,0.25102803,-0.05067915,-0.19507667,-0.23800558,-0.15543987,0.4520441,-0.6042226,0.166358,-0.12932165,-0.26937088,-0.050811313,-0.5583155,-0.25121668,-0.6496628,0.28530076,-0.7789884,0.46445873,-0.06368209,-0.229344,0.49598065,-0.0052919528,-0.058606192,-0.12179065,-0.05924661,0.06441837,-0.20332159,-0.034648154,-0.0928223,-0.12213968,-0.3170945,-0.61866057,0.1148371,-0.43669635,-0.11203795,-0.3350139,0.08574571,-0.32807282,0.057537686,-0.110987395,0.48067093,-0.3764064,0.0009258111,0.047341242,-0.090400726,0.0491824,-0.61867344,-0.26145914,-0.036503293,0.2710816,-0.11538347,-0.17402062,0.17424326,0.29849732,0.5432397,-0.020349931,-0.09246819,-0.4279059,0.05957579,0.121608034,0.5670967,-0.11716906,-0.6858408,-0.098432206,-0.04270451,0.12021073,0.10903878,0.09253428,-0.02749819,-0.20649152,0.14486523,-0.3019265,0.44657534,0.49023983,-0.3511048,-0.39922467,0.4005141,0.37547073,0.23127867,-0.02435749,-0.19040836,-0.0700318,-0.58269846,-0.16398092,-0.049755827,-0.29002488,0.51495826,-0.15159264,0.41855088,0.50786275,-0.11337362,0.07415802,0.1619907,-0.06772031,-0.038732663,-0.09866008,-0.08766027,0.13403651,-0.33548763,0.17954503,-0.2050705,0.8722111,0.079962,-0.6791201,0.3737827,-0.47328073,0.074193336,-0.020130428,0.47726968,0.7021142,0.42156354,0.286214,0.6453341,-0.4198651,-0.10200158,-0.1003431,-0.3346229,-0.022737702,-0.10180892,0.04286589,-0.39384538,0.08200232,0.10604878,0.06898657,0.12817605,0.5608681,-0.56416625,-0.09387871,0.02481692,0.7290066,-0.2622649,-0.22218233,0.89455277,0.9402153,0.94960773,0.059519656,1.0572107,0.14155678,-0.11796438,0.21139409,-0.21918765,-0.5755759,0.3140463,0.3857538,0.15693693,0.18440336,0.0917845,-0.1595253,0.47173017,-0.30525526,-0.16751833,-0.07208498,0.21072021,0.25217497,-0.056390632,-0.38670298,-0.3519038,-0.02164076,0.10472512,0.2434337,0.22192663,-0.19484147,0.33687654,0.095823675,1.552394,-0.048848193,0.11659489,0.03447113,0.34525642,0.20914944,-0.031804197,0.02998048,0.23668887,0.3346492,0.010565249,-0.6528094,0.124149166,-0.21751957,-0.5518653,-0.050520744,-0.31468162,-0.29041705,-0.039103612,-0.491034,-0.10525061,-0.1193148,-0.2377412,0.488905,-2.9253962,-0.26048508,-0.046831965,0.31927046,-0.24909626,-0.48015943,-0.1525245,-0.53390986,0.4072526,0.33264542,0.48577568,-0.6229182,0.30956066,0.2348834,-0.40848288,-0.19315606,-0.6162731,-0.036482908,0.060077768,0.35993442,0.07634943,-0.1079745,-0.004883909,-0.05805335,0.5885862,0.00012904406,0.07535495,0.26869413,0.4914509,-0.06172615,0.40638825,-0.11684013,0.58507305,-0.2383007,-0.14861819,0.3436327,-0.3979564,0.35840327,-0.29309532,0.18443368,0.44494307,-0.28699768,-0.86457705,-0.49820852,-0.24090174,1.2871678,-0.19780435,-0.35778192,0.14330466,-0.2782753,-0.31152573,-0.12444815,0.49861184,-0.26098996,-0.22264579,-0.6860691,0.1269556,-0.112499915,0.0676479,-0.16636235,0.07038728,-0.43905088,0.7386112,-0.040800128,0.5240365,0.21791814,0.30474842,-0.26420486,-0.32151535,-0.071173854,0.8439423,0.37057585,0.15968424,-0.24988954,-0.18684308,-0.25914487,-0.06755682,0.036153182,0.6624502,0.5221563,0.13526602,0.09225213,0.22698362,0.044104435,0.08129202,-0.1314405,-0.06583848,-0.1321259,-0.025775384,0.60976017,0.63446236,-0.21026926,0.4326714,-0.08789282,0.16878144,-0.16258536,-0.3519925,0.49236667,0.75324327,-0.20742801,-0.19548355,0.48308092,0.5010016,-0.10659196,0.29928395,-0.5867834,-0.42446104,0.535614,-0.28426677,-0.3752761,0.16375026,-0.19523385,0.038440417,-0.8289153,0.29138222,-0.17442027,-0.4600515,-0.5039925,-0.058006745,-3.3270414,0.0669393,-0.13278177,-0.1805922,-0.2593633,-0.30300385,0.16677752,-0.5703477,-0.4814917,0.09219332,-0.009462698,0.51567215,-0.08746579,0.16714977,-0.20664974,-0.28894633,-0.16270946,0.1496512,0.026846886,0.39270738,0.027395133,-0.2935948,0.02226631,-0.15403327,-0.36315867,0.10667197,-0.4746784,-0.6151492,-0.019874847,-0.30833155,-0.26782608,0.6223193,-0.483109,0.007474611,-0.14584453,0.086197615,-0.18028036,0.31389037,0.10991653,0.12012761,-0.026228424,-0.1486194,0.19286604,-0.30856693,0.38518712,0.065734625,0.2692383,0.60844064,-0.15362078,0.21103144,0.48504943,0.5591614,-0.09762935,0.82817155,0.40719935,0.007830739,0.3525941,-0.18710893,-0.3197905,-0.5556352,-0.23955025,0.095485896,-0.3823205,-0.38611418,-0.17921744,-0.36938986,-0.74723023,0.3114414,-0.011610732,0.25080603,-0.056030627,0.24811801,0.595305,-0.19314124,-0.025218975,0.018246295,-0.057035644,-0.43959147,-0.33002463,-0.64750856,-0.49507028,-0.0946735,0.80227494,-0.05259722,-0.09893995,-0.049373914,-0.09867646,-0.018947748,-0.032722507,0.10474005,0.0510382,0.26563555,-0.057856757,-0.7346317,0.5760037,-0.22972156,-0.22996777,-0.5652967,0.109288245,0.43202692,-0.50884384,0.3584981,0.44877282,0.11373221,0.061288845,-0.51976913,-0.06680657,-0.024488676,-0.17732406,0.3236066,0.28793088,-0.83183795,0.5566753,0.25023305,-0.22494844,-0.72198504,0.45149258,0.07538756,-0.16965644,-0.11034998,0.30210114,0.32396472,0.09347191,-0.017747637,0.11656908,-0.59116364,0.39906362,0.13201159,0.01985443,0.41539988,-0.16054249,-0.11982906,-0.57230973,-0.12532404,-0.50124276,-0.2723479,0.087557875,0.12138695,0.2870164,0.10891177,0.04297333,0.36158517,-0.4334673,0.04934062,0.041253287,-0.15016337,0.24473146,0.48169604,0.5669554,-0.3568767,0.51560116,0.06178799,0.16190426,0.24862458,0.043057982,0.3845001,0.100312285,0.29567164,-0.063447244,-0.19744794,0.1391044,0.8834461,0.23840341,0.37547317,-0.055678394,-0.31481716,0.33246696,0.046742365,0.2230352,-0.031352393,-0.6122277,-0.15654215,-0.19256112,0.10626039,0.46714813,0.12356582,0.17998078,-0.10705539,-0.17296289,0.088121146,0.2555482,-0.05543472,-1.0364147,0.27920407,0.19344027,0.91324943,0.2834501,-0.06850791,0.07115352,0.58038986,-0.24033132,0.10567277,0.36630157,0.05699227,-0.53472626,0.571344,-0.6520038,0.55335736,-0.11715807,-0.015306717,-0.026897056,-0.07954321,0.30780357,0.77115405,-0.25450552,0.0006524583,0.08268953,-0.3937095,0.16969274,-0.44948286,0.0824909,-0.54589856,-0.029741786,0.59952277,0.5434478,0.30473742,-0.27330476,0.0069072824,-0.001451395,-0.08608346,0.0029318014,0.072541475,0.16274667,-0.12268147,-0.71002513,-0.2420743,0.48482305,0.050571244,0.32234356,-0.010596156,-0.26855123,0.27238208,-0.19817773,-0.18266346,-0.046355452,-0.564189,-0.017090647,-0.30374387,-0.5853598,0.36155275,-0.055010047,0.21063311,0.20711762,0.07302446,-0.21017241,0.16223131,0.16231653,0.7920862,0.062244065,-0.096115634,-0.51451176,0.103352204,0.17832759,-0.19299483,-0.22285773,-0.09350217,0.029057674,-0.5162327,0.3740063,-0.16449372,-0.22665435,0.094114,-0.08249699,0.09302265,0.5252507,-0.026505915,0.009362808,-0.15647773,-0.07935378,-0.20593044,-0.04388469,-0.09064528,0.2385628,0.19052857,-0.022540176,-0.048428204,-0.17558612,-0.18534207,0.36191124,0.14682934,0.28882682,0.3619335,0.054625355,-0.29397902,-0.247707,0.17716935,0.49953845,-0.013319317,-0.18166028,-0.3492796,-0.4886817,-0.33840886,0.25964484,-0.055924814,0.25472578,0.13293569,-0.35665396,0.50561655,-0.12661512,0.905616,0.11120024,-0.29650465,0.118078716,0.50380933,0.08714385,-0.011684996,-0.3523311,0.8226284,0.30183136,-0.021873252,-0.119484216,-0.27918616,0.08425798,0.2185339,-0.2026886,-0.13879508,-0.12990193,-0.62332606,-0.26958883,0.18351428,0.1956861,0.12795903,-0.06212105,-0.05942136,0.31266102,0.05698339,0.4534694,-0.44658008,-0.30341086,0.37192777,0.2795461,-0.15723284,0.11879409,-0.44282252,0.36306018,-0.4860012,-0.010969511,-0.32032627,0.16793296,-0.25735566,-0.089802824,0.33949342,0.107224144,0.33911,-0.22490098,-0.5487507,-0.21930449,0.33712876,0.04916898,0.14647573,0.3369507,-0.16837,-0.096356824,0.08792852,0.55035007,1.1115577,-0.17540638,0.14085618,0.3381844,-0.31410474,-0.55112004,0.27281693,-0.24299502,0.27180016,-0.0565864,-0.09130522,-0.4490236,0.30322456,0.20264088,0.123560295,0.07226607,-0.56265384,-0.20896521,0.29387966,-0.36634895,-0.152731,-0.2500485,0.026795825,0.65820205,-0.36299124,-0.14109913,-0.010151442,0.5017855,-0.12767392,-0.56652564,-0.0019140482,-0.4117014,0.24012133,0.05998083,-0.28177464,-0.18587811,0.04068796,-0.4176071,0.11246881,0.14416851,-0.3845642,0.0633949,-0.28626218,0.022661678,0.96362215,-0.124986514,0.30022627,-0.56362,-0.42745832,-0.8464883,-0.41269022,0.315631,0.15635915,-0.026888167,-0.5838706,-0.03713386,0.017774506,-0.34275696,-0.28817663,-0.42009124,0.4775623,0.13812803,0.35386616,-0.03367974,-0.5821417,0.09429846,0.06260732,-0.14725937,-0.46604007,0.43676415,0.00030447444,0.71266454,0.08136273,0.12244506,0.18325877,-0.48816955,-0.008993049,-0.22886698,-0.096709736,-0.6981411,0.2044259 +188,0.4901624,-0.15408638,-0.36009842,-0.17197277,-0.22959264,0.06841845,0.040944446,0.6324415,0.2729105,-0.5267503,-0.21818483,-0.11840921,0.052618515,0.35957554,-0.1391281,-0.3871046,-0.10620469,0.21956849,-0.24886532,0.5469378,-0.33438805,0.14603145,-0.03883424,0.37437683,0.30013484,0.22997399,0.11193355,-0.10072769,-0.09788493,-0.026735736,-0.17954509,0.19568512,-0.24188852,0.22595334,-0.13893713,-0.20852332,-0.1634591,-0.4032095,-0.54215336,-0.6024162,0.29260358,-0.8114267,0.4415613,0.05440358,-0.30620885,0.22708273,0.12678306,0.13518612,-0.26505685,-0.13124852,0.111912645,-0.090593934,-0.11437803,-0.020150738,-0.255162,-0.39345565,-0.67472553,0.04180903,-0.34462887,-0.04972999,-0.2518272,0.112224944,-0.25357205,0.03445879,-0.033556927,0.640746,-0.46664667,0.005784946,0.21296777,-0.06417515,0.21295373,-0.5651616,-0.29475325,-0.11507309,0.06688338,0.0005538038,-0.15339363,0.21504009,0.18812343,0.53560865,0.038221035,-0.1662864,-0.42841062,0.0911634,0.18276688,0.3960307,-0.13381882,-0.4914675,-0.095492296,0.03390014,0.106141694,0.15691397,0.20549321,-0.17492998,-0.07860743,-0.001563615,-0.23150167,0.23593964,0.5409516,-0.3267137,-0.31675526,0.2789778,0.5268847,0.09012937,-0.09031495,0.12585507,0.063823715,-0.45257896,-0.127612,0.13220957,-0.3065037,0.4237546,-0.20942652,0.18602024,0.63359743,-0.064147435,0.023442533,0.123581044,0.12006029,-0.1686076,-0.3423273,-0.27870402,0.20841815,-0.36778498,0.10548238,-0.19009556,0.84757644,0.09175815,-0.6523534,0.35553154,-0.42718214,0.10939933,-0.1747709,0.58840907,0.75913346,0.39831728,0.31501994,0.7918028,-0.5381459,0.05104759,-0.06355082,-0.26068333,0.022631368,-0.33149812,0.057865627,-0.4948559,0.06750367,0.17942719,-0.13294338,0.08354299,0.4381786,-0.52165633,-0.12797494,0.22530816,0.83939266,-0.24127932,-0.18562688,0.7409074,1.0990674,1.1306822,-0.016168715,1.1306683,0.22604367,-0.251947,0.31844258,-0.41721103,-0.6102807,0.26780573,0.33047524,0.1649182,0.23862895,0.2079118,-0.06613269,0.43250656,-0.50288856,0.23065689,-0.21417579,0.17988972,0.22145705,0.003821837,-0.6239766,-0.271357,-0.070068516,-0.010177836,0.090542056,0.27078578,-0.23653051,0.43982217,-0.0448533,1.4967527,-0.08478771,0.073327705,0.14630143,0.57719034,0.11998731,-0.12380849,-0.01760319,0.19869767,0.38778922,0.008445693,-0.5220021,0.07983035,-0.25386587,-0.5226273,-0.16168118,-0.38233638,-0.014144421,0.012163149,-0.3461308,-0.26033238,-0.09662681,-0.464818,0.49168745,-2.861738,-0.08626156,-0.16997358,0.22170623,-0.32450086,-0.19726953,-0.11481058,-0.5025105,0.38589495,0.4113277,0.4544745,-0.6019088,0.30994597,0.37301686,-0.57565576,0.016227547,-0.62563807,-0.1392755,-0.0058573857,0.27902856,0.07882075,-0.042054687,0.008008054,0.0056685847,0.5433451,0.13929807,0.088743985,0.34514898,0.19642615,-0.06739468,0.40063688,0.010767804,0.42155287,-0.40409917,-0.15220536,0.33251157,-0.41579083,0.3402141,-0.122870855,0.09561723,0.43199316,-0.47377634,-0.8164524,-0.6658906,-0.27469888,1.1604671,-0.15181002,-0.41622752,0.27725604,-0.4905631,-0.14089386,-0.21299376,0.4138965,-0.039019644,-0.079206966,-0.7323019,0.034038033,-0.023382109,0.13392247,-0.06660309,-0.10497146,-0.36410183,0.80917877,-0.14460757,0.44511017,0.29906994,0.24801077,-0.21270457,-0.46110025,-0.09910832,0.86254823,0.34562683,0.22292754,-0.34918588,-0.14014748,-0.26371303,-0.016409626,0.13183047,0.40230063,0.68107444,-0.04792715,0.14645095,0.32643035,-0.1522971,0.022913763,-0.10716241,-0.2654869,-0.23803915,0.027347814,0.51236063,0.56219697,-0.18664908,0.45471165,-0.103040814,0.17512035,-0.20372984,-0.4498089,0.52513236,0.7816051,-0.20588997,-0.28493157,0.7070006,0.45535257,-0.239264,0.38395265,-0.59474134,-0.21576142,0.36421484,-0.20768784,-0.45170647,0.09439434,-0.3052986,0.14159729,-0.84442186,0.2024722,-0.12817322,-0.6258135,-0.67808914,-0.23001392,-3.1279018,0.1572849,-0.29487085,-0.1539763,-0.01733877,-0.15549162,0.13206184,-0.48296303,-0.5139778,0.11723036,0.12607644,0.5773039,-0.0059407055,0.11941451,-0.25853658,-0.17823134,-0.40558833,0.10292149,0.1302586,0.41992992,0.008613442,-0.4977487,0.18706551,-0.15616255,-0.330762,0.05049435,-0.5054253,-0.42895707,-0.16675122,-0.43073195,-0.2562436,0.6322052,-0.17933048,0.07508982,-0.25257155,0.09799502,-0.0467331,0.3507342,0.04041825,0.060080696,0.027434302,-0.16171576,-0.061622698,-0.21915627,0.31776902,0.022198277,0.28719422,0.53163016,-0.23752262,0.21308824,0.6482153,0.60138696,-0.1699277,0.9022705,0.5160402,-0.14510758,0.29986525,-0.08710242,-0.19754918,-0.6323532,-0.24671866,0.058527704,-0.4313822,-0.5613564,0.0045567728,-0.443427,-0.85624474,0.43297943,-0.091495454,0.25467104,0.025936173,0.16117702,0.534129,-0.21966311,-0.042731855,-0.09110014,-0.016511496,-0.51256853,-0.45773202,-0.57742226,-0.41609356,0.10931207,1.1832651,-0.119289406,-0.03678439,0.042082172,-0.33920184,-0.12062865,0.15957732,0.013248699,0.061246864,0.30220848,-0.060855594,-0.6303426,0.4937226,-0.02415136,-0.07458626,-0.48684484,0.15436853,0.4732018,-0.544654,0.63336354,0.2688866,0.009201725,-0.26660845,-0.5381391,-0.31762895,-0.20698296,-0.1611634,0.4423013,0.31052682,-0.7913098,0.41126126,0.27228004,-0.17995723,-0.68187344,0.29720405,-0.20845161,-0.12988926,-0.06897645,0.20295106,0.18290953,0.07157964,-0.040699024,0.17949335,-0.5009132,0.31596407,0.20695509,-0.07241493,0.47469348,-0.32879406,-0.029041896,-0.7110086,-0.10949645,-0.55834335,-0.18016061,0.19817649,0.2362751,0.04511704,0.17821583,0.1208729,0.30745682,-0.16892365,0.060890593,-0.03575284,-0.19963823,0.35879937,0.38819164,0.4382317,-0.40217176,0.5666925,-0.019611444,-0.0535466,-0.14622001,0.053737137,0.36818728,0.18763314,0.5054391,-0.024270449,-0.27779204,0.33113092,0.7603885,0.13016108,0.37980422,0.08066652,-0.21054378,0.32958835,0.03590416,0.12287096,-0.086141475,-0.4730343,0.06621856,-0.40699467,0.21038045,0.3276895,0.03354075,0.29827383,-0.10843585,-0.19408357,0.022268338,0.0629846,-0.073021926,-1.1555965,0.34706184,0.12981136,0.7842316,0.44704625,-0.14328308,0.024527239,0.8012987,-0.14588512,0.13883924,0.36680847,0.010829815,-0.49870104,0.5300259,-0.78699905,0.5657913,-0.1760305,-0.02386961,-0.059502963,0.08434786,0.42796776,0.7066363,-0.16857982,-0.051558454,-0.009762117,-0.3381284,0.21371116,-0.36347532,0.15345682,-0.65464103,-0.2559475,0.62726074,0.4865659,0.3892088,-0.16397677,-0.13876083,-0.011489208,-0.0491353,0.20882292,0.020755777,0.014091419,-0.10262631,-0.7448665,-0.20021142,0.39641237,-0.027155945,0.1256477,0.11075957,-0.2962316,0.10674051,-0.16338839,-0.0971811,-0.011127566,-0.6208415,-0.16231187,-0.032135185,-0.52604616,0.5287576,-0.2382917,0.23080473,0.16992855,0.03877973,-0.30733898,0.12207612,0.13619994,0.7382179,0.103829265,-0.006928146,-0.4212803,0.10095105,0.16521141,-0.16176929,-0.04569786,-0.12969811,-0.031900745,-0.53785,0.48916644,-0.11368593,-0.35154122,0.17216758,-0.17889588,0.106857695,0.6027976,-0.045444604,-0.17746632,-0.16282938,-0.12943214,-0.16390514,-0.117940806,-0.11167423,0.35811,0.013182678,-0.113330826,-0.08689667,-0.2065516,-0.0039057645,0.33285522,-0.0058413935,0.12316205,0.30120543,-0.012324593,-0.37638143,-0.020326529,0.024966117,0.48730135,0.1114353,-0.2199484,-0.22278509,-0.4243376,-0.38098165,0.037013438,-0.052004304,0.3643051,0.09367271,-0.2208227,0.7463408,-0.009044362,1.1286548,0.16025412,-0.26405627,0.05115175,0.55124,0.13955572,0.024842722,-0.28059798,0.7148548,0.5637342,-0.077413134,-0.1692132,-0.44504303,0.02994422,0.33439466,-0.16545229,-0.24470364,0.010583489,-0.74521226,-0.08683065,0.319109,0.19038823,0.2603285,0.001125506,0.07230624,0.27049378,0.049583912,0.33680254,-0.39700913,0.035016876,0.32880202,0.2873638,0.09061653,0.1732903,-0.4591309,0.29921764,-0.5923328,0.10107745,-0.0821533,0.14397492,-0.32574818,-0.29739183,0.23499136,0.120592274,0.39066792,-0.22876532,-0.3656569,-0.25648025,0.64819556,0.12668599,0.13363603,0.5340117,-0.24979319,-0.030824449,0.113447435,0.33828807,1.1407877,-0.23206301,-0.04976097,0.28436682,-0.30681768,-0.7733223,0.48169836,-0.33502308,0.22346577,0.020648832,-0.17976543,-0.5307463,0.24769759,0.31696066,-0.06358336,0.2127619,-0.46611255,-0.25561953,0.2318631,-0.23755255,-0.12597312,-0.22450288,0.06353139,0.3178773,-0.2528431,-0.35614982,0.12957491,0.40567896,-0.17490695,-0.4909628,0.034317903,-0.3519661,0.22225295,-0.014339762,-0.31921116,-0.18804535,-0.049538057,-0.3649709,0.06600394,0.13185073,-0.32889947,0.113428764,-0.4453195,0.008072809,0.79281455,-0.024984797,0.27223763,-0.5536226,-0.37406272,-0.99273056,-0.29820684,0.5714571,0.093151286,0.006826737,-0.63134444,-0.092040464,-0.015761668,-0.0034469196,-0.08337224,-0.45537874,0.52594304,0.20262916,0.1426083,0.027876165,-0.5922271,0.009905956,0.021345254,-0.15394258,-0.45168135,0.4384443,0.0095331585,0.8958092,0.03552956,0.122377574,0.16603382,-0.47277775,0.10097255,-0.17559426,-0.34677932,-0.5039584,-0.05156415 +189,0.4850915,-0.30374128,-0.59936535,-0.23907068,-0.36204183,0.012470186,-0.117875576,0.54557663,0.42202282,-0.2759507,-0.21318534,0.043360915,-0.09386459,0.5855928,-0.04037216,-0.689147,-0.14834116,0.39603505,-0.7070935,0.33455828,-0.5447762,0.33419684,0.032869585,0.6314402,0.34613177,0.1016307,0.047295276,0.14561652,0.046928708,-0.023588635,-0.13507096,0.06802028,-0.6738506,0.16562063,-0.124606244,-0.47148356,-0.12522994,-0.6431639,-0.46390417,-0.8619999,0.31685528,-0.80570805,0.67365205,-0.18012494,-0.41762236,-0.005221344,-0.13251002,0.45976508,-0.24762344,-0.044403236,0.06185821,-0.3137874,-0.021870123,-0.07822948,-0.21904516,-0.2665578,-0.6422437,0.08956626,-0.36801973,0.056468066,-0.036780927,0.20924759,-0.32529134,0.19088922,-0.26828325,0.45707244,-0.42313722,-0.0372695,0.33985013,-0.03162516,0.11869724,-0.55241495,-0.08771643,-0.124559216,0.24908789,-0.063489676,-0.44029078,0.43239185,0.12382027,0.5158889,0.031948544,-0.33609724,-0.36992413,0.24635626,-0.1047926,0.52176386,-0.04454496,-0.14608835,-0.2517667,0.1559796,0.41980588,0.16540115,0.15594281,-0.30901968,-0.045176193,-0.091759324,-0.0036532064,0.40259778,0.5716725,-0.11068843,-0.34798643,0.37618113,0.5681459,0.2050763,-0.145134,0.13776976,0.03427378,-0.446303,-0.26853037,0.052091785,0.0115374625,0.61551976,-0.06046558,0.09431729,0.6670481,-0.16864859,-0.17442217,-0.16073965,0.016823424,-0.01817772,-0.2151498,-0.4307022,0.39080402,-0.41142145,0.14557594,-0.15112998,0.70900434,0.15116,-0.88779837,0.32415628,-0.6059834,0.17923234,-0.12139486,0.57193416,0.8497869,0.5639684,0.4204519,0.929521,-0.34096593,0.23267728,0.08336795,-0.25173455,0.05842581,-0.36300188,0.10262347,-0.578334,-0.0731225,-0.20491745,-0.41066784,0.2323922,0.37094492,-0.52995586,-0.2077999,0.14324124,0.5345137,-0.37877047,-0.13766812,1.011734,1.0271122,1.4669833,0.008874022,1.3313669,0.51232064,-0.21302794,0.08391642,-0.2750935,-0.7375324,0.19676143,0.24927877,-0.071811154,0.5695589,0.2110621,0.051551003,0.46193865,-0.46249834,0.14517072,-0.053583078,0.07520158,-0.06847232,-0.2527725,-0.6714236,-0.3762059,-0.034960486,0.09007345,-0.1062839,0.20645168,-0.22437309,0.5625596,-0.082292095,1.4713603,0.13443601,-0.102161855,-0.17717507,0.49161574,0.1503224,-0.40743554,-0.20505606,0.16401243,0.44834307,-0.060623664,-0.54842955,-0.01523019,-0.21574384,-0.23797584,-0.3383651,-0.3160186,0.09557601,-0.19396609,-0.2980832,-0.45681483,0.123854086,-0.33914807,0.42069948,-2.2718992,-0.38257995,-0.0004890424,0.44111776,-0.2317964,-0.2993233,-0.34592983,-0.52518976,0.2321654,0.28957975,0.45318073,-0.65332484,0.53984326,0.37008965,-0.60662407,0.0080823535,-0.77737737,-0.0057412717,-0.040259197,0.10011094,0.061471164,0.015858008,0.02130166,0.25676885,0.53952396,0.001182657,-0.091760635,0.3492281,0.5134437,0.015241535,0.58808476,0.12960881,0.6301244,-0.2802337,-0.15595399,0.5056461,-0.41128725,0.26913476,0.015308435,0.1137968,0.5715493,-0.55508846,-0.96061075,-0.67998636,-0.22687952,1.0973128,-0.23751648,-0.44141,0.16125718,-0.43493763,-0.27556032,-0.013859218,0.3622728,-0.25720122,-0.14335373,-0.7671871,-0.28570688,0.0104536135,0.17315117,-0.15887544,0.12772718,-0.4305383,0.728444,-0.22953771,0.44430712,0.32827452,0.29144618,-0.12114586,-0.5409809,0.12730144,0.64772826,0.41656816,0.037877623,-0.38065946,-0.17988107,-0.3093694,-0.106847286,0.07302875,0.6771222,0.82821345,-0.13560233,0.025038539,0.39151695,-0.11995772,-0.003557824,-0.093555965,-0.2657178,-0.20758596,0.07484623,0.71087563,0.86379296,-0.016083479,0.57734144,-0.2081872,0.36814228,-0.0902651,-0.6412243,0.42812902,1.0548947,-0.08777615,-0.327956,0.55596775,0.2903645,-0.3922083,0.46183822,-0.6548337,-0.15293801,0.54889137,-0.12917353,-0.42686528,0.06618762,-0.29912958,0.17848851,-0.960344,0.24678575,-0.18277279,-0.76595265,-0.7329976,-0.11639003,-2.409611,0.23034477,-0.19249766,-0.03659759,0.14774022,-0.2754238,0.10518393,-0.6129292,-0.6780042,0.1432376,0.10712687,0.77111787,-0.13750489,0.11033575,-0.23079923,-0.38944536,-0.5898832,0.11694532,0.22567087,0.38766003,0.18669364,-0.44986537,0.0065792296,-0.35064286,-0.57105607,-0.11987886,-0.5066324,-0.5863912,-0.17091586,-0.61321265,-0.24284038,0.75424665,-0.17781116,-0.01844268,-0.26269552,-0.07813854,-0.03008771,0.31041953,-0.036463786,0.17018102,0.2183555,-0.116012216,0.05051162,-0.22262612,0.14513296,0.13122591,0.27304807,0.2818101,-0.28399172,0.34897742,0.7293087,0.86659235,-0.20366624,0.80856353,0.64076483,-0.060429677,0.09125516,-0.2855763,-0.33211783,-0.5544884,-0.3004637,0.03867685,-0.5463116,-0.5393836,0.022762362,-0.42980674,-0.9012815,0.5045481,0.050709084,0.2338999,0.01417185,0.18976879,0.46674532,-0.14070979,0.07250631,-0.21701597,-0.21847233,-0.48825103,-0.52911896,-0.5724139,-0.81199265,0.0003515436,1.5716617,-0.22604735,-0.10104329,0.07299283,-0.47354227,0.22397092,0.17160845,-0.015123367,0.22870715,0.39084688,-0.18189393,-0.7184218,0.16810082,-0.15535937,-0.07603859,-0.6817159,0.25095236,0.8439734,-0.6784068,0.5584539,0.26117644,0.09858456,-0.012215889,-0.61225986,-0.23878966,0.043980367,-0.22639173,0.598726,0.18321027,-0.613171,0.5166077,0.18047282,-0.34763744,-0.82512534,0.34913927,0.02789358,-0.19111618,0.15128693,0.30806285,-0.019569525,-0.12690265,-0.14443733,0.18343224,-0.2988581,0.21685314,0.31401294,-0.0032336162,0.043029718,-0.135689,-0.10636163,-0.86429024,0.04916317,-0.49281585,-0.23588815,0.100024,-0.013643329,0.2993077,0.10334036,0.31995642,0.4029735,-0.28235114,-0.007836049,-0.18464173,-0.3956159,0.3546788,0.39043632,0.3461315,-0.6066069,0.41082558,0.019842682,-0.047416206,-0.16573256,-0.109485865,0.50860494,0.12969472,0.30603957,0.033410322,-0.19807778,-0.026170429,0.6972742,0.14231645,0.33463022,0.11299021,-0.27614796,0.2034766,0.17848638,0.37995753,-0.16830167,-0.33834165,0.096842125,-0.13774301,0.12904137,0.41242367,0.12777187,0.22484706,-0.1552584,-0.2174216,0.24696253,-0.05946815,-0.12689625,-1.4413153,0.34163183,0.2656494,0.7881348,0.40527514,0.083776586,-0.028837048,0.5427391,-0.320947,-0.028242959,0.37518212,0.07445033,-0.42609993,0.3886864,-0.8124279,0.7357362,-0.0023488174,-0.07602322,0.11283016,0.28185174,0.64011735,0.73446363,-0.19290353,0.1421803,-0.09830657,-0.21480642,0.09935036,-0.427474,0.07535012,-0.74255586,-0.2961049,0.84616387,0.47939974,0.21785532,-0.14693156,-0.033725794,0.12691043,-0.14055657,0.21755633,-0.09354151,0.0180298,-0.0979581,-0.5771754,-0.10261158,0.39893436,-0.10545553,0.1007029,0.089774676,-0.2556799,0.20151018,-0.007999329,-0.13050058,-0.08381862,-0.863566,-0.16062821,-0.27415258,-0.31392428,0.35485518,-0.21571186,0.2156225,0.31372282,0.10297756,-0.28229827,0.25792646,0.16192767,0.92269295,-0.024551813,-0.13693729,-0.24684022,0.43884417,0.4507096,-0.29057792,0.1407196,-0.21662034,0.15470974,-0.5282455,0.5208152,-0.1136819,-0.37107605,0.24129097,-0.010003943,0.11925352,0.47569358,-0.41179106,-0.05784715,0.06412207,-0.14431018,-0.36733896,-0.03976554,-0.37837875,0.17889158,0.22716962,-0.2643908,0.05322526,-0.1169442,-0.026736412,0.6177209,0.096146055,0.45393452,0.29228115,-0.07543153,-0.5467026,0.033052288,-0.04345296,0.5607985,0.08498581,-0.3540146,-0.43087056,-0.14656268,-0.17590424,0.53434426,-0.11330093,0.22169194,-0.07090182,-0.22987872,0.747583,0.22285904,1.336092,-0.06158749,-0.40692917,0.117280684,0.43174013,0.0937867,-0.04582715,-0.40291756,0.8386074,0.5761285,-0.23453853,-0.16784708,-0.51250046,-0.2633261,0.20238511,-0.29361948,-0.2784731,-0.07479981,-0.6390223,-0.3307049,0.2861245,0.072139755,0.28857836,0.015838921,0.2309852,0.2263643,-0.009116737,0.24813154,-0.30646896,-0.05647662,0.3099306,0.30254197,0.1262376,0.14216632,-0.4431335,0.2764838,-0.7293111,0.20292324,-0.28780425,0.2363564,-0.064819574,-0.4106825,0.25655302,0.28185028,0.28842023,-0.25135672,-0.31840461,-0.2111505,0.7154738,0.09866944,0.3284282,0.6404246,-0.37952673,-0.056404114,0.11947692,0.29433915,1.1954093,-0.14580499,0.07225268,0.4299464,-0.25354654,-0.5726929,0.42167705,-0.2845463,0.19158009,-0.23059757,-0.13447258,-0.52629536,0.2339332,0.14158115,-0.07915783,-0.019576816,-0.52969843,-0.06577717,0.4133926,-0.32916468,-0.24801056,-0.52493036,0.14645208,0.5344285,-0.19288823,-0.53664887,0.15103036,0.35538864,-0.2640669,-0.3042646,-0.05857639,-0.35299274,0.36308765,0.0036565156,-0.5041597,-0.10132969,0.107636735,-0.44249514,0.14537184,0.3085931,-0.24904467,0.08075416,-0.2690908,-0.03031081,1.0264008,-0.18913788,0.33086884,-0.5985777,-0.54457414,-1.0148141,-0.22289586,0.24870084,0.28525797,-0.15722473,-0.8130747,-0.025147915,-0.068555556,-0.2736935,0.09091788,-0.3163031,0.37155226,0.12351458,0.34821442,-0.13705133,-0.9621607,0.08315016,0.13138393,-0.3128114,-0.51408905,0.57487065,0.10689933,0.8193274,0.12598008,0.2126335,0.06114857,-0.4766768,0.32749635,-0.31075552,-0.011977638,-0.58548015,-0.14504327 +190,0.5056971,-0.14045796,-0.7092669,-0.17623088,-0.1889676,-0.05624054,-0.16536275,0.57932854,0.4030167,-0.58197045,-0.029933687,-0.15417242,0.049662385,0.32393014,-0.11102597,-0.9100244,0.04012336,0.102350764,-0.31859922,0.37066585,-0.5309399,0.23720933,0.012384562,0.43985754,-0.0032285315,0.3432789,0.047344215,-0.16735809,-0.23732966,0.08680061,0.110667855,0.37532216,-0.6416407,-0.012260542,-0.20190524,-0.53676426,-0.011241629,-0.4004621,-0.3135412,-0.8121396,0.23895656,-0.9414254,0.5818247,0.10246888,-0.23874448,0.10887631,0.06747702,0.3597023,-0.17108376,-0.008381454,0.069970004,-0.13230838,-0.11035024,-0.055502467,-0.36825606,-0.40340585,-0.7048045,0.13148521,-0.54295933,-0.14388403,-0.15534171,0.176783,-0.39516622,-0.045315165,-0.044341806,0.40822938,-0.43925434,0.0007252005,0.47270775,-0.26064676,0.244968,-0.494103,-0.15778781,-0.114514045,0.25269663,-0.34060115,-0.19675387,0.19699809,0.35058963,0.6567334,0.01998098,-0.22484763,-0.46668437,0.122325465,0.1555818,0.46856144,-0.32591864,-0.45402622,-0.2562161,-0.003663627,0.15783194,0.18017527,0.26371816,-0.32301766,-0.028705252,0.27870587,-0.3118604,0.54186434,0.51904666,-0.42552102,-0.33812454,0.28646448,0.6905309,0.16300732,-0.109896615,0.23603126,0.13952607,-0.631503,-0.17758912,0.086058766,-0.00890686,0.5729404,-0.12513022,0.39408982,0.6974067,-0.2694553,0.06988193,0.13069037,-0.06073194,-0.06904158,-0.4689485,0.021266231,0.33368963,-0.554113,0.17305861,-0.25948766,0.66977566,0.20290898,-0.7821313,0.5271858,-0.5988294,0.19003186,-0.1881106,0.45350948,0.7618809,0.363373,0.18618724,0.711462,-0.50053203,-0.030077608,-0.16098131,-0.43620747,0.18022236,-0.18523829,0.18056811,-0.56073844,-0.04750618,0.10956991,-0.010203783,0.14651111,0.42213762,-0.7669001,-0.19834067,0.0888577,0.9532187,-0.20124982,-0.30091858,0.78686213,0.93457425,0.93084234,-0.004734484,1.3060964,0.23963414,-0.1359489,0.39600563,-0.24738643,-0.8934291,0.34668657,0.2148606,-0.44868377,0.38438734,0.114440314,-0.13828024,0.67346615,-0.0839426,0.13638255,-0.24590485,0.1442443,0.09341756,-0.22358854,-0.24130957,-0.15074867,-0.10746614,-0.12513056,0.16137783,0.22169748,-0.17873494,0.2786555,-0.047079865,1.7141589,-0.10871542,0.16212787,-0.009462396,0.4453955,0.22432338,-0.009896123,-0.08066854,0.14527723,0.10147548,0.21158998,-0.44535863,0.016240034,-0.35619453,-0.38114703,-0.18255973,-0.28754783,-0.079952836,-0.15220676,-0.6061715,-0.02656732,-0.23394577,-0.24159074,0.51285917,-2.6080606,-0.46088293,-0.06546379,0.3531067,-0.29662278,-0.4672824,-0.25229752,-0.50094444,0.38773707,0.29098222,0.6224978,-0.6821892,0.53665245,0.4649674,-0.51924396,-0.19469476,-0.61294395,-0.02372215,0.0077803116,0.17547092,0.01500519,-0.20107096,0.0636808,0.067605644,0.46066907,-0.1115931,0.012980044,0.16899508,0.5318369,0.034531567,0.50924563,-0.18967216,0.57556546,-0.4265533,-0.35779646,0.421968,-0.5140184,0.22188465,0.06215691,0.19173428,0.33418098,-0.38214386,-1.1269794,-0.7104736,-0.21827963,1.0404203,-0.077706866,-0.39873645,0.24414761,-0.24572141,-0.37997568,-0.070600815,0.47583383,0.104624666,0.12918499,-0.984269,0.13134386,-0.22482744,0.10170819,0.074842535,-0.03499544,-0.35683715,0.682676,-0.07366009,0.3180175,0.45117614,0.21581668,-0.32033885,-0.44665065,0.014930775,0.9713509,0.2654628,0.267953,-0.23990703,-0.15938346,-0.42408556,0.006477113,-0.03962861,0.4567959,0.76797396,-0.043661237,0.10426761,0.39161575,0.098034345,0.0834713,-0.15072764,-0.5435949,-0.14202839,0.10878681,0.54283834,0.7309406,-0.4614625,0.46518677,-0.04710158,0.30151328,-0.16330583,-0.53524274,0.55448794,0.74513364,-0.30970463,-0.2825094,0.5211626,0.28453708,-0.5660082,0.5604066,-0.70057285,-0.36701304,0.38903424,-0.12298965,-0.5371708,0.1511685,-0.37567872,0.082775064,-1.1526299,0.33728755,-0.40633598,-0.20893258,-0.38473716,-0.18083474,-4.0253034,0.3272038,-0.28446567,-0.012115465,-0.1285004,0.053697143,0.22427002,-0.6511863,-0.67972213,0.061288558,0.07464767,0.7104542,-0.19752708,0.23239782,-0.21848282,-0.19620475,-0.27823588,0.09545044,0.30347925,0.26419163,0.16237105,-0.5046384,-0.13733752,-0.19996572,-0.4167022,0.19608487,-0.7805638,-0.56003857,-0.17487676,-0.67243415,-0.45023945,0.8298202,-0.46530694,-0.05431857,-0.25563082,0.0736317,-0.18981239,0.5022641,0.02761209,-0.022310909,0.12495036,-0.028791877,-0.12247959,-0.31896812,0.23820625,0.056860503,0.3913002,0.5009599,-0.18550865,0.3008157,0.76911074,0.88917965,0.08312443,0.7547282,0.41027215,-0.03298148,0.5156586,-0.3213348,-0.23238172,-0.5703167,-0.3088468,-0.14781576,-0.51312315,-0.48363918,0.10524011,-0.47958058,-0.804511,0.67352706,-0.036413677,0.21643569,0.02848067,0.2465879,0.50612324,-0.22922009,-0.04489263,-0.046992872,-0.1281529,-0.65966755,-0.2184073,-0.62101454,-0.7527527,0.29358435,0.97761977,-0.23975648,0.13097824,0.14100455,0.05755993,-0.059807695,0.2586344,0.027749704,0.023602795,0.42752403,-0.13392219,-0.67396134,0.2692444,-0.15779015,-0.23426184,-0.7186357,0.20660533,0.66162056,-0.75953037,0.67420095,0.45087084,-0.009200765,0.17545575,-0.46480274,-0.22098824,-0.073364064,-0.15126348,0.43319356,0.15741429,-0.8728227,0.30309445,0.58215725,-0.40951693,-0.766952,0.5349939,0.0010140401,-0.051229276,-0.26296562,0.35991937,0.3546345,0.03087853,-0.09638921,0.13458739,-0.62302697,0.18077613,0.31308177,-0.15571795,0.6990309,-0.03968393,-0.2200033,-0.81461406,-0.035634033,-0.6003936,-0.2101159,0.32219216,-0.031966303,0.0739384,0.17290555,0.19301279,0.31858653,-0.3582168,-0.056275897,0.042980433,-0.3672557,0.34295514,0.4899792,0.46114329,-0.4719132,0.55312085,0.042433456,0.014429687,0.20167473,0.048509717,0.5615541,0.03822631,0.42568704,0.24513103,-0.229093,0.10613643,0.9297434,0.05550613,0.5349124,0.13521956,-0.068245456,0.20715433,0.13504909,-0.039709788,-0.02235315,-0.6770052,0.1046933,-0.05681192,0.31693304,0.7054583,0.17426819,0.4113262,-0.04104883,-0.32252836,-0.038994495,0.22394362,-0.024630278,-1.3894426,0.3371844,0.25088698,0.88736284,0.44681823,0.02791948,0.14176022,0.46228102,0.0031569095,0.3799414,0.3886132,-0.2278967,-0.56170404,0.5650657,-0.7293597,0.49341744,-0.054605342,0.10968404,0.005559903,-0.025224468,0.53841734,0.7205691,-0.10033217,0.089490525,0.032848544,-0.21175869,0.0802302,-0.39669976,0.04241127,-0.47496212,0.0043684775,0.7266003,0.7106037,0.44665247,-0.29696035,-0.044644687,0.08902935,-0.15226871,0.1888097,-0.19470263,0.11259708,-0.04276941,-0.61754006,-0.29681316,0.69490504,0.34722683,0.22468887,-0.100532,-0.29240987,0.41856554,-0.20561828,0.0011302003,-0.11551531,-0.59907866,0.02358046,-0.42477494,-0.5491969,0.5421802,0.09004469,0.22298828,0.21378095,0.119203515,-0.4077751,0.62161297,-0.18787311,0.7450023,-0.093878284,-0.23910233,-0.52485776,0.28588736,0.3104514,-0.29572052,-0.21685347,-0.4181088,0.06887508,-0.4120132,0.468963,-0.07597707,-0.31283984,0.06206518,-0.0626687,0.08473361,0.512246,-0.21208392,-0.20916547,0.13672183,-0.10690796,-0.36666644,-0.22920145,-0.08376704,0.38581496,0.19203441,-0.15606873,-0.18661068,-0.33978537,-0.09246038,0.31504014,0.09131804,0.19166987,0.6052858,0.29891348,-0.40402335,-0.22295941,0.4713165,0.63959056,-0.03223961,-0.2867892,-0.39407298,-0.44964063,-0.43668908,0.18340406,-0.039457038,0.29871178,0.13878478,-0.45973492,0.8862504,0.24477316,1.4474883,0.16803357,-0.3398258,0.17271669,0.38690245,0.006276449,-0.08759807,-0.4284202,1.0230597,0.6166087,-0.29662606,-0.16935118,-0.521048,-0.20797648,0.095586725,-0.35535547,-0.06999591,-0.048364595,-0.71777225,-0.255604,0.20858786,0.33403173,0.23910214,-0.19554369,0.21386887,0.20544806,0.00060529204,0.219692,-0.58659387,-0.22821061,0.21096256,0.6080569,-0.10171522,0.14418888,-0.37508953,0.3868685,-0.54380184,0.06635905,-0.38913295,0.230275,-0.14847967,-0.41477963,0.20684472,0.046011187,0.43375486,-0.2402089,-0.4209908,-0.20208128,0.4457445,0.28608087,0.14419974,0.825714,-0.2138684,-0.1458691,-0.061578605,0.70205176,1.1234404,-0.13340195,-0.0836405,0.5803227,-0.17841229,-0.8583361,0.32822338,-0.5236353,0.37636185,-0.21758506,-0.2827579,-0.627938,0.16080546,0.18487993,-0.1541141,0.04454002,-0.5710548,-0.1752747,0.12553813,-0.3982343,-0.23372246,-0.29471564,0.118934885,0.7490691,-0.30983174,-0.12813848,0.20780112,0.3618849,0.021069584,-0.51317585,-0.14434856,-0.31151068,0.3268067,0.35281917,-0.39176565,0.033704493,0.033657417,-0.50472444,0.17318238,0.3083132,-0.3285487,0.22052765,-0.29061976,-0.14628802,0.9902419,-0.11725419,0.32829314,-0.53032273,-0.44267258,-0.88631654,-0.2300412,0.4157458,0.14449888,0.047196526,-0.5464671,0.010385142,-0.068252325,-0.20848283,0.07385972,-0.48895404,0.47762555,0.010659133,0.53629595,-0.20221378,-0.7165765,-0.05635623,0.31300604,-0.18146865,-0.7374542,0.5281241,-0.18761031,1.0632963,0.19812185,0.096509814,0.42770547,-0.49271104,-0.24939856,-0.41708013,-0.18206438,-0.709516,-0.09896273 +191,0.44067076,-0.2867354,-0.42108968,-0.032553952,-0.27071783,0.2719391,-0.21279255,0.37211078,0.15197624,-0.46489683,-0.395,-0.22161663,-0.038664825,0.14889832,-0.28391603,-0.34154853,-0.10393156,0.1899713,-0.41658378,0.45047814,-0.29036567,0.20787366,-0.02878297,0.48403946,0.27676138,0.1442269,0.034516666,0.04199003,-0.31398386,-0.38551593,-0.11090804,0.31070468,-0.3828845,0.21071802,-0.2696798,-0.40052244,-0.009224777,-0.6500999,-0.3949528,-0.73063976,0.30696145,-1.051615,0.5890831,-0.011248665,-0.1920127,0.31864032,0.1453441,0.34653002,0.03848999,-0.07631711,0.14277768,-0.15098353,-0.101760976,-0.223024,-0.33940226,-0.4873102,-0.5675515,0.09489532,-0.26268187,-0.09468404,-0.16589041,0.11167097,-0.15985487,0.10048073,-0.044358026,0.41420126,-0.37119943,0.21908721,0.2856052,-0.15890822,0.12531504,-0.5768154,-0.18720032,-0.06734083,0.31150594,-0.15253818,-0.1734033,0.07082219,0.3477214,0.37021086,-0.057115834,-0.11171661,-0.22592369,-0.060574345,0.1465606,0.56363666,-0.06130003,-0.42393893,-0.18476275,0.0072069806,0.31773254,0.31746116,0.22864997,-0.09331112,-0.09062785,-0.14743821,-0.26679423,0.45890182,0.37067986,-0.23791802,-0.17902073,0.40938115,0.619462,0.1783797,-0.11612264,0.038270798,0.13391681,-0.49365523,-0.12312371,0.084861994,-0.24408509,0.49831796,-0.24122205,0.38572556,0.5471134,-0.13424301,0.13707525,0.10750355,0.091247395,-0.23650673,-0.27002618,-0.2869441,0.21894224,-0.45450002,0.18332942,-0.04218948,0.7222854,0.06417744,-0.61920124,0.26306438,-0.58399475,0.068064384,-0.05304503,0.34306335,0.5354102,0.37625772,0.28143615,0.5255137,-0.23047741,-0.04588722,-0.17638445,-0.31763604,-0.09619236,-0.18147297,-0.11674029,-0.5052809,0.08308269,0.022051182,-0.03941032,0.009825,0.60691583,-0.53020257,-0.15083352,0.061779764,0.86868256,-0.24946104,-0.1958841,0.95485973,0.93979686,0.863439,0.04374906,1.2129288,0.3170549,-0.13366474,-0.0027093377,-0.13311975,-0.58967596,0.31272417,0.42681408,-0.6709303,0.4813001,0.09662402,-0.05697625,0.2909035,-0.38177624,-0.037712988,-0.20386441,-0.068287544,0.15191105,-0.10839665,-0.4304783,-0.20973374,0.020965364,0.031132517,0.32398844,0.23202276,-0.10842036,0.4943282,0.06563638,1.5856807,-0.13013206,0.11265774,0.036736693,0.3766048,0.1898499,-0.1035391,-0.012478267,0.21228422,0.23899707,0.21321972,-0.4814717,0.051594127,-0.17796572,-0.3539669,-0.1799021,-0.18612845,-0.32989803,0.048257183,-0.33452383,-0.14817214,-0.23164536,-0.25842816,0.40394855,-2.5753329,-0.17295496,-0.19592847,0.35430267,-0.25510448,-0.51356953,-0.08893078,-0.4024842,0.32629162,0.24015503,0.3759529,-0.54847664,0.3207815,0.4428751,-0.62132317,-0.123082,-0.62944734,-0.05955003,-0.00438439,0.28166434,-0.074507356,-0.10504513,0.062459685,0.04369827,0.46244127,0.1394321,0.16701846,0.40923563,0.5217348,0.08331279,0.49136242,0.017982533,0.5147095,-0.23631202,-0.18846501,0.31188187,-0.30988318,0.5091139,-0.07131323,0.11073365,0.5850721,-0.46431947,-0.65724474,-0.6790916,-0.35880122,1.2440077,-0.08846785,-0.40805554,0.039843652,-0.271674,-0.5277348,-0.024462998,0.48041382,-0.22827807,-0.12807074,-0.81672484,-0.12454891,-0.16456416,0.09453797,-0.06386896,-0.032148786,-0.4474501,0.7179125,-0.042921636,0.38368696,0.2803002,0.12266726,-0.25361595,-0.45664096,-0.101988725,0.943729,0.53613526,0.18901458,-0.28979817,-0.1829543,-0.45443705,-0.019731658,0.07488843,0.59644586,0.50199217,-0.0069209463,0.13889064,0.28157747,0.05196809,0.08201601,-0.29823762,-0.2257422,-0.23706682,-0.09993507,0.6428742,0.55555755,-0.17030822,0.45566532,-0.11443073,0.30376413,-0.29222706,-0.44081298,0.432458,1.0864147,-0.1788521,-0.4140771,0.80549866,0.49276066,-0.3495315,0.26254985,-0.5189619,-0.15664406,0.35194868,-0.057589907,-0.5865358,0.14883839,-0.23721048,0.13391447,-0.9012313,0.25301367,-0.19569457,-0.43431142,-0.6709398,-0.03966115,-2.3132284,0.23861457,-0.17747097,-0.27460843,-0.20860867,-0.28384924,0.20133492,-0.5372126,-0.6372935,0.1446832,-0.09895897,0.7450005,-0.12037391,0.24337332,-0.15036047,-0.33011836,-0.2758823,0.14853108,0.16919793,0.38792345,-0.21563856,-0.36398402,0.07853565,-0.108479924,-0.3442996,0.05078902,-0.79039586,-0.52883047,-0.11510389,-0.39362925,-0.09754128,0.5000536,-0.41908413,0.021125296,-0.32993013,0.056207597,-0.15265967,0.23543571,0.061872907,0.044102937,0.16601494,-0.08029572,0.0033448935,-0.30980268,0.5309084,0.11728953,0.18062064,0.35144117,-0.16099747,0.3159898,0.21792562,0.62701553,-0.14752652,0.92920405,0.3098019,-0.15229198,0.22702566,-0.110194586,-0.3280631,-0.40609914,-0.114646144,0.027854562,-0.4205158,-0.49141145,-0.044475693,-0.34862214,-0.828847,0.5881155,0.041101534,0.17667499,-0.05997648,0.46030873,0.611251,-0.24826394,0.04297296,0.011691153,-0.16613398,-0.5567928,-0.39145735,-0.47925147,-0.44002303,0.121185265,0.88252014,-0.15278633,0.21658134,0.087868996,-0.3803649,-0.034093015,0.09515383,-0.08562805,0.019803772,0.5921745,-0.06897533,-0.6089495,0.42282656,-0.07041701,-0.21633135,-0.58498657,0.22624786,0.797723,-0.5857337,0.5094594,0.49023396,-0.035701018,-0.36500397,-0.41254684,-0.07980088,-0.06562626,-0.32975847,0.41645908,0.418557,-0.7310584,0.34852704,0.32035777,-0.09655393,-0.79460377,0.6819372,-0.024772745,-0.112867855,0.008751901,0.34114406,0.19194081,0.006860948,-0.22343244,0.19698095,-0.37178922,0.20180456,0.041579783,-0.15475324,0.09410877,-0.17594466,-0.1906641,-0.7544357,0.18974806,-0.47161976,-0.37734956,0.329459,0.039338607,0.11343921,0.28728566,0.21704042,0.35322025,-0.42914206,0.05551996,-0.09630233,-0.13264881,0.20678923,0.40791827,0.56300056,-0.49205413,0.5478744,0.009906505,-0.046322983,0.13354768,0.044524543,0.35965738,0.029697273,0.41398007,0.115504526,-0.20698349,0.19394949,0.7612896,0.13529056,0.44035226,0.250087,-0.122921444,0.17441705,0.012049331,0.27602425,-0.15960066,-0.64401656,0.006578765,-0.28438866,0.0676942,0.36572346,0.038860444,0.28922686,-0.15653434,-0.2854398,-0.004493394,0.10286869,0.07151641,-1.1378337,0.15479554,0.17263098,0.74871147,0.20770364,-0.10716409,0.05277707,0.7583335,-0.27031106,0.08203101,0.4625525,0.075199604,-0.4079079,0.44141123,-0.6080376,0.34358412,-0.11268048,-0.0041983095,-0.003946147,-0.1560674,0.43538326,0.7897574,-0.13899691,-0.017153561,-0.113534965,-0.36913964,0.19343375,-0.3263792,0.20823215,-0.557192,-0.18934672,0.65762675,0.61023223,0.4957525,-0.18999758,0.06539293,0.16737993,-0.11588267,0.12401182,0.3249142,0.16508682,-0.038405333,-0.6236041,-0.050866492,0.49686256,0.14333251,0.105923906,-0.00037607126,-0.30193737,0.2173637,-0.18533106,0.06699038,-0.013262819,-0.85099596,-0.1218034,-0.34850827,-0.68073225,0.19012532,0.0010056368,0.027151903,0.26963383,-0.073999226,-0.23444028,0.26492667,0.058021817,0.85564405,0.08276157,-0.04624151,-0.26520228,0.30475348,0.11264778,-0.26924226,-0.04221034,-0.15575147,0.20149219,-0.69829494,0.48670694,-0.06969463,-0.5061283,-0.0023853928,-0.014205851,0.10539607,0.5050749,-0.10088118,-0.0961444,0.092217304,-0.19103205,-0.30135706,-0.17343669,-0.15176606,0.17409118,0.30971447,-0.03945338,-0.14959994,-0.044513147,-0.33994183,0.40763682,0.07282655,0.47847095,0.5507241,-0.04608408,-0.31201077,-0.13233754,0.06171868,0.5602198,-0.11583935,-0.24638091,-0.26108077,-0.5439207,-0.20000133,0.47539642,-0.040492613,0.34233823,0.15423593,-0.14749773,0.73338145,-0.07756364,1.0971016,0.028102292,-0.37618718,0.07729288,0.48320618,-0.016705304,-0.15608673,-0.38897762,0.95195514,0.3971262,-0.10390724,-0.020311607,-0.43529144,0.06134745,0.097352795,-0.19793262,-0.042612348,-0.01172295,-0.5963497,-0.24089734,0.12617873,0.2703322,0.062066384,-0.13229072,0.22112727,0.37335616,-0.11970144,0.38715273,-0.46418062,-0.32080048,0.3495272,0.3214657,-0.063713156,0.08584922,-0.42689943,0.3254042,-0.5509264,0.02470529,-0.46124128,0.22275841,-0.21641532,-0.21782494,0.20950589,0.014523489,0.4483311,-0.42496577,-0.42372116,-0.24043001,0.3732476,0.20497169,0.13163938,0.3491905,-0.33406022,-0.07546306,0.09960572,0.5911043,1.0867653,-0.10645198,0.19768763,0.36472198,-0.28864077,-0.5023055,0.45084026,-0.45255312,0.27097526,0.115809694,-0.18633796,-0.47576287,0.27415898,0.3545445,0.14284328,-0.12651335,-0.6028367,-0.09647612,0.3120375,-0.2942862,-0.13117543,-0.24493997,-0.0056025004,0.43795466,-0.11095668,-0.39794272,-0.13533176,0.25153568,-0.24553509,-0.3331994,-0.06807045,-0.35208413,0.22872616,0.0007056296,-0.30296203,-0.18917899,-0.13541554,-0.45082444,0.08845222,0.13801776,-0.34424922,0.0038621575,-0.32783243,-0.0054678917,0.8345366,-0.30698824,0.12068065,-0.48076206,-0.41733137,-0.6882087,-0.36192805,0.103912555,0.07374246,0.13695562,-0.50677747,0.021503234,-0.28143463,-0.20635565,0.0283126,-0.44670072,0.4861786,0.26328656,0.44579792,-0.12217345,-0.74729794,0.24247469,-0.03020938,-0.33682895,-0.58621013,0.5783724,0.02523298,0.8269949,0.016438644,0.114312015,0.22384915,-0.5966443,-0.08207522,-0.10657432,-0.030792654,-0.89837587,0.10250045 +192,0.5011193,-0.09551532,-0.53383857,-0.1507596,-0.29079077,0.071847185,-0.09311599,0.38221225,0.115210995,-0.43045774,-0.11683901,-0.107908264,0.039215215,0.20515609,-0.18157579,-0.5570736,0.0201599,0.0072064954,-0.6027724,0.6795554,-0.3135379,0.2814125,0.020462159,0.21356884,0.3285656,0.34503332,0.20570514,-0.1949218,0.092153706,-0.11824681,-0.27249098,0.08578031,-0.6296807,0.13880718,-0.12089218,-0.32503203,0.0078061563,-0.24991243,-0.40427902,-0.7928952,0.3422448,-0.88583744,0.3671538,-0.059220247,-0.23056458,0.15841821,0.25846156,0.43195358,-0.24191669,-0.07689837,0.18488367,-0.15038015,-0.075601056,-0.032511424,-0.16307391,-0.67309695,-0.46844214,-0.110367835,-0.56699646,-0.1845058,-0.39715323,0.13103023,-0.3559051,-0.04725998,-0.30839333,0.40445367,-0.518489,0.019893693,0.14029671,-0.14810947,0.26165512,-0.68838173,-0.12328452,-0.08336854,0.21017973,0.06333923,-0.14669296,0.38397238,0.11775456,0.30337355,0.21651223,-0.044758897,-0.26522022,-0.24886556,0.165119,0.3885,-0.01010902,-0.29075435,-0.12656711,-0.117489636,0.12799422,0.31028047,-0.0065314663,-0.025213053,-0.027550042,0.010020561,-0.294322,0.4754401,0.6375152,-0.33165768,-0.2626622,0.31915063,0.6295037,0.20570004,-0.26251048,0.20932455,-0.041652977,-0.48481584,-0.24061005,0.29768437,-0.2142796,0.3825581,-0.13221548,0.27976125,0.61354864,-0.11008269,0.051022332,0.02229696,-0.039852757,-0.13951416,-0.21704651,-0.0748329,0.23619017,-0.53917253,0.3251726,-0.34455052,0.7138797,0.20432924,-0.4610576,0.31827313,-0.5632824,0.15708315,0.027662506,0.6778644,0.6267374,0.38172126,0.06382743,0.9424835,-0.36380976,0.06521077,-0.1620169,-0.2518658,-0.08073255,-0.024656432,0.22777387,-0.35752603,0.07856765,0.02591321,0.09442333,-0.13155164,0.32228732,-0.5513369,-0.15453245,0.0074588233,0.7338434,-0.23943917,0.022250405,0.8929649,0.9744669,0.9391365,0.09546188,0.8326211,0.12241733,-0.36476693,0.106218986,-0.2586632,-0.6115178,0.25092116,0.316701,0.45240608,0.18691835,0.06873468,-0.2923038,0.32381222,-0.39462495,0.014308759,-0.3204338,0.20820062,0.09626137,0.0041351146,-0.31347698,-0.21231349,-0.09536089,-0.0858316,0.10891525,0.18459845,-0.3693413,0.47236452,0.04769498,1.2462028,-0.102331564,0.027976189,0.18123499,0.5878801,0.18875064,-0.051165532,0.15319796,0.33838564,0.37516505,0.0378053,-0.6164358,0.14605117,-0.40772295,-0.45476314,-0.036048982,-0.45519474,-0.095837034,-0.08871355,-0.37516284,-0.1364847,-0.052209496,-0.40064985,0.4764095,-2.8497822,-0.069890514,-0.23089896,0.31684098,-0.29141554,-0.18930542,-0.10826902,-0.57269126,0.432568,0.3950757,0.53315324,-0.5009141,0.5644868,0.48646575,-0.5973334,0.19721672,-0.5464125,-0.10999409,0.027731359,0.45532158,-0.0035383275,0.023871748,-0.07174034,-0.109594055,0.61259425,0.070776395,0.13195534,0.31515387,0.29466605,-0.105483845,0.5333549,-0.016424308,0.4916422,-0.5260772,-0.02481384,0.3409337,-0.40858653,0.3440849,-0.16444476,0.16123901,0.6201884,-0.38805196,-0.8435813,-0.5626203,-0.31489605,1.1480266,-0.30383608,-0.44700477,0.3105302,-0.3435037,-0.07553095,-0.08396881,0.65241337,0.09513206,-0.0042777765,-0.5997311,0.0234108,-0.27981657,0.22823788,-0.05743611,0.11956114,-0.37983832,0.9089588,-0.14425683,0.53473467,-0.033666182,0.26100776,-0.18005134,-0.37932745,0.037704192,0.66421705,0.38259372,0.041226555,-0.223462,-0.31444338,-0.38427496,-0.18305214,0.072238125,0.8510623,0.6148162,-0.044435523,0.07264484,0.32113442,-0.13653268,0.045729198,-0.25313738,-0.23285496,-0.18612187,0.047195323,0.42165375,0.34701,0.100058325,0.42754146,0.03130866,0.39638105,-0.17287408,-0.49641055,0.3008979,0.6579791,-0.23907962,-0.22354738,0.42723507,0.61759746,-0.104907416,0.42762852,-0.72349685,-0.3715399,0.51387066,-0.098426275,-0.47774297,0.17247522,-0.31730026,0.08455836,-0.7661025,0.07789811,-0.497787,-0.88153166,-0.41646913,-0.1174136,-3.5991445,0.12879607,-0.2624093,-0.02518321,-0.1161719,-0.1797484,0.12501629,-0.5434879,-0.503019,0.09685638,0.13288546,0.72693837,-0.17168453,0.06995828,-0.30227038,-0.07975272,-0.42761257,0.3542729,0.17906792,0.2248089,-0.2933182,-0.2894592,-0.044326562,-0.026696125,-0.3325827,0.01123678,-0.55712163,-0.3855052,-0.13545704,-0.4290994,-0.2085867,0.56932104,-0.23987874,0.12356299,-0.115398206,0.10228747,-0.12889518,0.23505218,0.26769462,0.0885043,-0.012052758,-0.14234082,-0.065493904,-0.32487655,0.38537475,0.029514117,0.43885407,0.35967177,-0.16245201,0.2277955,0.538245,0.46615276,0.0827276,0.9270601,0.15480919,-0.17134908,0.3890961,-0.16885318,-0.2725387,-0.6734376,-0.13476267,-0.053514473,-0.36783418,-0.46307403,-0.15665162,-0.36750084,-0.89338857,0.42753935,0.10917406,0.31139907,0.034563158,0.31753,0.5259204,-0.09389088,-0.021804746,0.004391984,-0.074013695,-0.4900145,-0.29263654,-0.6158491,-0.45477778,-0.05000649,0.83386225,-0.2755897,-0.19040485,-0.035286922,-0.31275558,0.033121333,0.28200698,0.17253086,0.15017417,0.49506745,-0.2168289,-0.5805171,0.69008785,-0.21114312,-0.14605376,-0.5361784,0.27222344,0.468702,-0.6568937,0.3422436,0.20981929,0.033501,-0.33580777,-0.40819755,-0.12160729,-0.09775824,-0.22020952,0.28720134,0.023655133,-0.7699989,0.31188554,0.14946507,-0.027514389,-0.63282174,0.52717763,-0.13082056,-0.29614392,-0.006675337,0.3596707,0.15194641,0.002995375,-0.17580469,0.10612685,-0.3011412,0.29571444,0.22593464,-0.12288064,0.36767483,-0.20704754,-0.17527954,-0.64904106,0.11973088,-0.54605955,-0.03873522,0.40199128,0.060062427,-0.027117636,0.20119055,0.09281838,0.41424337,-0.07776187,0.11634822,-0.20466387,-0.2902484,0.5320724,0.44542816,0.29412013,-0.51258534,0.78866607,0.1326023,-0.1903959,0.15023525,0.1733391,0.3523791,-0.057691067,0.6623232,-0.11379854,-0.23181543,0.23284207,0.79571086,0.32351518,0.54294103,0.036130164,-0.052498493,0.2702844,-0.02868872,0.1314519,0.024724388,-0.6205005,0.06469953,-0.18830644,0.1237275,0.32165292,0.07988155,0.35539633,0.12507863,-0.056892842,-0.07238405,0.08544479,-0.15001789,-1.2259865,0.45312807,0.29405138,0.9434323,0.43804437,-0.0669001,-0.015439527,0.66738904,-0.1143384,0.14657035,0.3096427,0.16312441,-0.44756928,0.43122765,-0.7078686,0.59568346,-0.09462123,-0.029687628,0.043497622,-0.09463467,0.4591274,0.95210284,-0.34208918,-0.13058738,-0.04629632,-0.27902082,0.3475066,-0.21650255,-0.023599317,-0.5660578,-0.3503882,0.5265953,0.50907886,0.33267453,-0.02831325,-0.047772683,-0.16426834,0.048919022,0.3439982,-0.050368708,0.0631999,-0.23540388,-0.5275732,-0.33995214,0.4486766,-0.40433097,0.16928266,0.21008645,-0.3050974,0.30380353,0.1412383,0.06625135,-0.1813011,-0.65802926,0.058901787,-0.17990805,-0.4360493,0.44042692,-0.24312066,0.517924,0.30157796,-0.12252063,-0.2859802,0.17166607,0.16770013,0.6255803,-0.15237105,-0.17257118,-0.5380638,0.018090788,0.2355357,-0.33082598,0.0033238572,-0.18971917,0.012858803,-0.64986026,0.33908525,-0.22786248,-0.36132026,0.09553521,-0.20575976,-0.02930569,0.61918294,0.017773049,-0.17736952,-0.01680142,-0.028273629,-0.23617513,-0.19977058,-0.1940643,0.20530483,-0.0071292096,0.042583797,-0.12484909,-0.097410485,0.18724373,0.29716402,0.08737246,0.2727318,0.26771852,0.032148592,-0.37687254,-0.04280181,0.23523775,0.5922614,0.052292947,0.050358057,-0.017400865,-0.46112648,-0.42554542,0.09493132,-0.010681574,0.42228475,0.21950717,-0.2848568,0.6558963,-0.04049647,1.0866927,0.020596653,-0.33354875,0.08242826,0.6663448,0.07571676,-0.09932632,-0.26151562,0.89857113,0.5337493,-0.1332563,-0.04598638,-0.39270523,0.0648443,0.27569994,-0.09347705,-0.16506384,-0.012309198,-0.5063119,-0.11295346,0.13060321,0.26303476,0.22054185,-0.05863687,-0.16958995,0.28971452,0.027372675,0.3338347,-0.49732044,-0.25783333,0.29982796,0.009965797,-0.110181734,0.15190022,-0.3586678,0.35468057,-0.5723713,0.11846077,-0.22073242,0.093399204,-0.23874529,-0.23054682,0.2360398,-0.15796335,0.4738369,-0.19324203,-0.390377,-0.17195103,0.46136042,0.41782573,0.30432394,0.62587935,-0.14817664,0.04462225,0.062445097,0.5396115,0.83168477,-0.26736733,-0.051857892,0.29372123,-0.47679988,-0.6414606,0.2836677,-0.3703236,0.0648006,0.08723353,-0.23876552,-0.25824267,0.33656046,0.1663724,-0.10113295,0.1287437,-0.7682443,-0.21654,0.070586756,-0.3209372,-0.19040762,-0.42460862,0.32180884,0.57941216,-0.36480936,-0.19209199,0.11124388,0.1113712,-0.23375122,-0.6592317,0.09232431,-0.24668384,0.32471254,-0.012066296,-0.25695923,-0.08099318,0.17599566,-0.5496653,0.16942903,-0.039123837,-0.36662418,0.13566102,-0.28165528,0.037361868,0.76379794,-0.17443629,0.0031932315,-0.38984603,-0.49755603,-0.6998204,-0.5399362,0.3100349,0.30856532,-0.016345335,-0.47464767,-0.03898717,0.010596906,0.031427443,-0.1449322,-0.4758778,0.5176749,0.06347259,0.32795268,-0.011035157,-0.94414055,0.2858747,0.097998336,-0.08735102,-0.49030092,0.43741575,-0.15932663,0.6869263,0.19843309,0.1831679,0.14951055,-0.45729968,0.024999116,-0.23710105,-0.07199777,-0.6547507,0.117144294 +193,0.4646342,-0.04437777,-0.4979896,-0.18633148,-0.06543896,0.15549706,-0.17087892,0.24042556,0.19074407,-0.54755515,-0.16757871,-0.18093023,-0.24208364,0.2708896,-0.16566405,-0.54048425,-0.021981018,0.15026101,-0.50349927,0.59966445,-0.3407866,0.37670425,0.096146815,0.25887007,0.14450563,0.16031787,0.37389278,-0.1504742,-0.21109098,-0.35728496,-0.007740748,0.04417349,-0.65578705,0.33564034,-0.18394855,-0.35888788,0.018435871,-0.39551753,-0.26156163,-0.7441645,0.2778515,-0.58433557,0.41575554,-0.0022215843,-0.24414445,0.348982,0.08578027,0.29456392,0.00128329,0.12027188,0.22021182,-0.10011948,-0.057597745,-0.168186,-0.0614415,-0.32373363,-0.45947692,0.16412371,-0.47376004,-0.21069089,-0.25856555,0.14530307,-0.116820835,-0.020579224,-0.08733613,0.56124187,-0.3908282,-0.21688488,0.06508298,-0.12779763,0.40505546,-0.70996255,-0.21414293,-0.23406789,0.17689916,-0.1908677,-0.032290615,0.24289055,0.104547344,0.4882789,0.032383848,-0.06632551,-0.22150196,0.0001268228,0.19411229,0.38371494,-0.10706248,-0.49716634,-0.120149136,-0.060185388,0.078435406,-0.025471708,0.122640505,-0.34035143,0.07408478,-0.09598248,-0.31050286,0.34933832,0.44794694,-0.4068874,-0.17533861,0.35624412,0.5001429,0.123895936,-0.063588984,-0.17321904,-0.1378269,-0.37690818,-0.20135012,0.19083777,-0.3020797,0.49480474,-0.10413826,0.063208334,0.5466154,-0.07617021,0.040462185,0.011339458,-0.05518115,-0.03246579,-0.09453821,-0.38524348,0.25044444,-0.34107652,0.031298723,-0.28006327,0.72274435,0.01702854,-0.8154455,0.31560987,-0.42691353,-0.041436505,0.038974382,0.5865501,0.6309446,0.39765438,0.07215298,0.6391603,-0.5803267,-0.0050610225,-0.14449981,-0.1476971,-0.12983474,-0.067258134,-0.08395866,-0.37174997,-0.0006227692,-0.14518099,-0.065762244,-0.1585842,0.3542158,-0.4438631,0.062196024,0.20734333,0.67018074,-0.337516,0.020453397,0.6200703,1.1352795,1.0608869,0.060142536,1.0904413,0.15282647,-0.33468783,0.04764648,-0.3469664,-0.4778701,0.33806357,0.36742306,0.20164505,0.2705611,0.026371403,0.07905664,0.23457566,-0.5167127,0.07740634,-0.0938712,0.29973385,0.006147609,0.07283378,-0.35279307,-0.15016773,0.09791269,0.026501548,0.115571454,0.12179149,-0.31498414,0.19627088,0.157502,1.3234268,-0.25028533,0.12495313,0.093948126,0.40132096,0.12937278,0.006821235,-0.026455022,0.35070404,0.20887226,-0.04303433,-0.57645875,0.006202555,-0.23307346,-0.4522794,-0.22836939,-0.2111591,0.0019478083,0.1997213,-0.35188216,-0.15236229,0.08542326,-0.37309137,0.39363977,-2.5045059,-0.14912869,-0.0983073,0.14358558,-0.39900872,-0.32462516,-0.031363532,-0.4448214,0.4973179,0.36558,0.3377601,-0.50156295,0.3238061,0.42833892,-0.24962266,-0.15070121,-0.47606048,-0.0771991,-0.14248523,0.45764965,-0.025480837,-0.18124014,-0.17907755,0.16737613,0.51044536,0.023317965,0.105729565,0.28767616,0.15876852,0.15766464,0.47820675,0.21027263,0.44146428,-0.38339564,-0.07519452,0.4787661,-0.32729045,0.068289004,-0.119628385,0.24981254,0.2591298,-0.44811094,-0.7259585,-0.7200594,-0.48655406,1.4104625,-0.217635,-0.51020795,0.21112885,0.2159393,-0.20548815,-0.0075787744,0.34261915,-0.064259626,0.12955979,-0.8185863,0.018212112,0.011243152,0.37727648,0.12052445,0.123078845,-0.57447755,0.80214053,0.020269912,0.38727713,0.35212967,0.18764468,-0.32705003,-0.48261395,0.11917303,1.130216,0.28361133,0.08948657,-0.15043072,-0.12028174,-0.2414164,-0.029857691,0.06589232,0.39967218,0.6912031,0.19168077,-0.038044,0.20667197,-0.0442851,0.11084884,-0.024005296,-0.41900292,-0.08426759,-0.012753804,0.6819657,0.48358366,-0.065709524,0.405907,-0.16272275,0.3507162,-0.29144517,-0.2861567,0.6680749,0.89776444,-0.22026032,-0.29400173,0.5939578,0.32539815,-0.20239092,0.44563445,-0.6771044,-0.44629818,0.4272558,-0.101701565,-0.42199993,0.16035582,-0.2982508,0.20635988,-0.8706638,0.25312388,-0.37555304,-0.34126827,-0.65738755,-0.2397836,-3.1036563,0.08299365,-0.14577508,-0.15565775,-0.02349952,-0.02252572,0.36063194,-0.42568594,-0.51069194,0.04594986,0.07257369,0.4094857,0.018399807,0.08630614,-0.17916927,-0.23447952,-0.31028333,0.3473056,0.02900018,0.3085743,0.06165552,-0.36528397,0.064648,-0.2399974,-0.2696707,-0.028897261,-0.3324817,-0.4030758,-0.26086265,-0.47126928,-0.20868526,0.6031161,-0.519204,0.042652864,-0.14559513,-0.06386829,-0.042696904,0.27858105,0.0919547,0.19568163,0.099877745,-0.12464268,-0.099071056,-0.2785282,0.19156359,0.120303825,0.10440481,0.3482086,-0.2586133,0.0710533,0.27655604,0.6515474,-0.048802376,0.7095299,0.5239943,-0.14180645,0.3366865,-0.3949413,-0.2841116,-0.5928348,-0.29947394,-0.07825057,-0.26825795,-0.49866256,-0.114237614,-0.31191936,-0.75886244,0.47978595,-0.11575195,0.0040867506,-0.00680664,0.24382986,0.2865015,-0.20120896,-0.09634992,-0.06251172,-0.05923141,-0.417863,-0.51874757,-0.6157111,-0.3130512,-0.15403047,0.8817282,0.011673407,-0.1165404,0.03927601,-0.09658767,0.06725984,-0.06709221,0.10783196,0.07300391,0.37340012,0.0072560706,-0.7452635,0.43910208,0.03417818,-0.0896046,-0.43448383,0.23264016,0.6302609,-0.4633334,0.33375266,0.37886876,0.22160727,-0.021226065,-0.3648124,-0.094968416,0.052808125,-0.2810549,0.47388136,0.11537445,-0.5221184,0.50338215,0.21395572,-0.25998613,-0.8364246,0.4156477,0.07716622,-0.3474268,-0.031017002,0.4334179,0.013734484,0.05240561,-0.2579914,0.115759894,-0.399186,0.15328914,0.22452177,-0.0026326617,0.3349585,-0.37783644,-0.19918042,-0.5875714,0.08233391,-0.4890655,-0.3618444,0.09161283,0.16227593,0.020255256,0.35170013,0.05907246,0.46208757,-0.09310169,0.11920931,-0.05078087,-0.06757442,0.39824504,0.50942004,0.36738667,-0.41080108,0.5575338,-0.057255555,-0.052556235,-0.3781008,-0.08121583,0.39506534,0.10403241,0.17700888,0.12863493,-0.106794916,0.3899606,0.5696576,0.33823153,0.4425834,0.052009776,-0.29148266,0.35725397,0.08583414,0.15370165,-0.051900085,-0.47713533,-0.31353378,-0.045133274,0.12024262,0.4346124,0.035126973,0.28121677,-0.1285496,-0.22848682,0.15290631,0.22717355,-0.1801851,-0.87319946,0.34631154,-0.036471948,0.7272389,0.7519648,-0.08891005,0.19604851,0.5201095,-0.3214834,0.02667748,0.24050157,0.012834114,-0.4989504,0.5560682,-0.5103623,0.147471,-0.09329999,-0.068040185,-0.090001345,-0.11580499,0.39575043,0.70962435,-0.0984689,0.12207968,-0.16711988,-0.21802354,0.06425594,-0.32003164,0.2519135,-0.32849413,-0.32383585,0.6660805,0.30251697,0.18268718,-0.29118168,-0.03699126,0.0380787,-0.13078174,0.12907949,0.006973505,0.03268514,0.011257187,-0.6031507,-0.14640306,0.564409,0.070046976,0.07141455,0.15462951,-0.19305994,0.14037088,0.04169518,-0.040894866,-0.025047312,-0.5417966,-0.016543923,-0.18542077,-0.2030943,0.3146269,-0.27566206,0.14936027,-0.051849015,0.08206101,-0.25221846,0.077360705,0.32728833,0.45825228,0.22128993,-0.0005054017,-0.3073412,0.06789789,0.057620473,-0.2217744,-0.19108966,-0.18927132,-0.007820525,-0.7756892,0.41407055,-0.03377563,-0.11993263,0.20234805,-0.12749097,-0.13003339,0.58435714,-0.12143598,-0.04002649,0.11434229,-0.11653273,-0.13559747,-0.12672876,-0.19731225,0.17929687,0.034621987,-0.06542656,-0.14706364,-0.051090915,-0.16467495,0.41856328,-0.008648085,0.28516635,0.36701483,-0.020131595,-0.50158185,-0.016237171,0.04394097,0.32235107,0.21596603,-0.025036184,-0.10676642,-0.47062367,-0.2773827,0.21593966,-0.07299686,0.010279298,0.09355285,-0.40375748,0.65924567,0.23404908,1.0877806,-0.021020496,-0.21335158,0.06697464,0.43905815,-0.06515878,0.08373379,-0.5018502,0.8876476,0.54865205,-0.103442386,-0.0764184,-0.2195895,-0.008792869,0.039866827,-0.2206733,-0.043294188,-0.18451329,-0.60682815,-0.4018655,0.16165139,0.43847308,-0.036319528,0.02145802,0.05232511,0.19791283,0.18686533,0.471636,-0.34327358,-0.16498128,0.40072346,0.18990657,0.091196395,0.06165645,-0.35107937,0.44298032,-0.70445824,0.032914985,-0.294011,0.082090825,-0.15401505,-0.21213351,0.16455957,0.11950685,0.29111746,-0.34965554,-0.4429218,-0.2227606,0.4415047,-0.063447535,0.20057036,0.5445131,-0.1645667,0.11135364,0.035417937,0.3960182,1.0046262,-0.13635118,0.07353211,0.22431828,-0.29725343,-0.5685409,0.34214437,-0.34128138,0.13681507,-0.07931468,-0.30401516,-0.45054615,0.2975998,0.1699149,-0.14750385,0.100856274,-0.671347,-0.2938056,0.36890113,-0.24591018,-0.17063546,-0.138051,0.0914888,0.6385369,-0.3616575,-0.36103812,0.010627699,0.33040914,-0.4335128,-0.6919836,-0.01884102,-0.3431537,0.46872357,0.17910792,-0.11616411,-0.14443442,0.22873203,-0.47402313,0.02058204,0.24823895,-0.38537353,-0.021673597,-0.32019126,0.107945964,0.63095635,0.08404164,0.051449105,-0.5430288,-0.41263285,-1.10588,-0.31231546,0.47694674,0.06678215,-0.035071515,-0.45456108,-0.02723704,-0.29815248,0.12055609,0.055745862,-0.32237053,0.32951364,0.13251397,0.5325596,-0.013604204,-0.65656245,0.036986303,0.16441602,-0.024226967,-0.4887481,0.31212938,-0.045351163,0.83498275,-0.016306795,-0.0015670061,0.18264948,-0.7382166,0.113923535,-0.18110244,-0.1225351,-0.54499966,0.23017989 +194,0.20477882,-0.08458596,-0.39049208,-0.19586754,-0.09386916,0.1827458,-0.122330554,0.2957713,0.01850297,-0.5033947,0.12522501,-0.17999503,-0.1068534,0.36508366,-0.18968216,-0.27911204,-0.09100746,0.022265894,-0.24504343,0.18822142,-0.5479484,0.29106477,-0.08187294,0.21285686,0.031136008,0.07164049,0.39994806,-0.15351263,-0.072378196,-0.21783638,0.13049617,-0.050930396,-0.49801236,0.10377158,0.019490251,-0.4065782,0.033972558,-0.33849537,-0.5640776,-0.65717274,0.46838644,-0.87382126,0.50903374,0.116080284,-0.11915918,0.32875806,0.3216662,0.21496648,0.015309712,0.039334636,0.30735332,-0.24301562,0.08872135,-0.15346947,-0.27661854,-0.29374793,-0.5612515,-0.0803935,-0.43092456,-0.29967827,-0.31169483,0.21291515,-0.4370023,0.028585318,-0.10224169,0.40438682,-0.39755866,-0.0004956814,0.17524385,-0.14445844,0.40488213,-0.60474503,-0.23770769,-0.07344048,-0.012081728,-0.3304234,-0.09646519,0.37123492,0.2012777,0.4380589,-0.316201,-0.008870242,-0.3074345,-0.19228975,0.15131709,0.6538852,-0.28781644,-0.25101736,-0.05003865,-0.12298338,-0.020755332,0.10505337,-0.07811698,-0.38666412,0.0076988065,0.2712819,-0.29962867,0.47221616,0.6416546,-0.23180297,-0.20295176,0.27852517,0.35057205,-0.07420507,-0.18658948,0.011571238,0.08682077,-0.45172116,-0.111706,0.13626346,-0.011394778,0.5420595,0.049613435,0.48305756,0.5230792,-0.3652617,0.11495251,0.032081183,0.068750426,0.035340328,-0.19810581,-0.34597296,0.21428853,-0.4208337,0.088577196,-0.20433477,0.9360475,0.0100042615,-0.8161631,0.41095084,-0.53112227,-0.061247624,-0.23935845,0.6134278,0.39100555,0.3244174,0.2423595,0.71903694,-0.5902488,-0.054087356,0.092804715,-0.3629135,-0.017832216,-0.12898244,0.014794409,-0.37372458,-0.12759,0.30013555,0.069243215,-0.028720928,0.3502797,-0.42012867,0.01472635,0.09018445,0.8410623,-0.28550205,-0.0129343085,0.41885802,1.1578132,0.7392315,0.11162559,0.9525279,0.21027216,-0.16318688,0.16124734,-0.14971952,-0.82897466,0.22009522,0.3044458,-0.038555108,0.18461983,0.19029333,-0.20205714,0.3043384,-0.47998613,0.076253325,-0.18058327,0.12619339,0.2446314,-0.17617665,-0.25024888,-0.13379699,0.07801509,-0.10477121,0.058037035,0.10487667,-0.44088686,0.10776247,0.07928714,1.4699222,-0.09009469,0.2433675,0.18321633,0.48807347,0.03440649,-0.044345334,0.04632622,0.16123177,0.36022455,0.15715843,-0.54624146,0.1702625,-0.13797387,-0.48238948,-0.16937336,-0.30218318,-0.12507272,-0.009649648,-0.4998565,-0.19549887,-0.037323568,-0.43112752,0.35773665,-2.9810367,-0.08142893,-0.09910075,0.39327922,-0.2988229,-0.19855365,-0.12551366,-0.42281768,0.48738098,0.51485527,0.30427477,-0.60045236,0.33939463,0.4153159,-0.22241487,-0.112466045,-0.52705956,0.04889426,-0.12861001,0.19349474,0.15041545,-0.09092719,0.025982546,0.21107286,0.36602226,-0.082540914,-0.0058842944,0.26644224,0.35910258,0.05565761,0.36432993,-0.1126962,0.35284662,-0.3826658,-0.19046292,0.30349535,-0.50908434,-0.0678657,-0.08152454,0.1313469,0.2874037,-0.3520706,-0.83170307,-0.6448498,-0.35000926,1.1511142,-0.13461001,-0.52412385,0.32184923,-0.10180144,-0.3144715,-0.18469736,0.5443782,-0.11608628,0.11473997,-0.78758717,0.13605224,-0.25571015,0.3930391,0.005291047,0.050173856,-0.42872187,0.48556402,-0.19843568,0.45946768,0.43065804,0.19258411,-0.4226678,-0.50493157,0.07785997,0.77985644,0.22525932,0.24389744,-0.12552972,-0.06772811,-0.1052431,-0.22950107,0.19795687,0.46160457,0.7973491,0.07834438,0.20699103,0.35370892,-0.058066133,-0.05252973,-0.11666643,-0.2674731,-0.027492596,0.024686823,0.54692346,0.31055403,-0.11142845,0.38566175,-0.07819267,0.26362962,-0.41173,-0.22811112,0.3359998,0.6538789,-0.048757963,-0.2862453,0.5003027,0.6280937,-0.41860893,0.34917676,-0.66768414,-0.3226435,0.52407074,-0.24687687,-0.5065743,0.10335612,-0.43042147,-0.00945465,-0.7716841,0.45354557,-0.21691759,-0.54027915,-0.48196492,-0.28548926,-3.5824862,0.08050286,-0.32468435,-0.25596985,0.008580413,-0.030147033,0.34631884,-0.41052407,-0.4026261,0.05862083,0.042546336,0.6637148,0.012595223,0.012376023,-0.26014125,0.17141268,-0.27876106,0.13622172,0.10035913,0.12295817,0.086254,-0.37065172,-0.011175907,-0.23906237,-0.5480351,-0.0039772233,-0.2964062,-0.38752323,-0.13905936,-0.44920552,-0.4564568,0.7127018,-0.39527783,-0.049574897,-0.2733927,0.008672957,-0.18890196,0.5971367,0.22682616,0.05115867,-0.015725356,-0.13257162,-0.026819339,-0.29768828,0.49197805,-0.016185531,0.21357392,0.5717427,-0.19761588,0.018942852,0.47579175,0.37787917,0.15663816,0.77381414,0.4086749,-0.05683289,0.25699243,-0.41462106,-0.11017036,-0.3893131,-0.23481736,0.22214195,-0.29034072,-0.48365706,-0.010558789,-0.32458878,-0.6938395,0.50779593,-0.23193663,0.15824078,-0.06843269,0.18289709,0.2021624,-0.06890004,-0.16598314,-0.030827474,0.029258244,-0.3562004,-0.306019,-0.6425509,-0.5653814,-0.049767878,1.0563571,0.05268779,-0.08904353,0.09956217,-0.15135688,-0.04370908,0.063132375,0.15822998,0.38832444,0.2517429,-0.10023452,-0.7222745,0.37470335,-0.35206795,-0.052290455,-0.74967355,0.019550433,0.51964116,-0.56564325,0.33546463,0.33658588,0.31441432,-0.24978065,-0.53391194,-0.22935075,0.029358167,-0.24218546,0.34366146,0.0045787464,-0.8929852,0.43324777,0.34113768,-0.24019617,-0.5619672,0.52424437,0.038032472,-0.22457801,0.14877309,0.29248136,-0.058739003,-0.070820406,-0.079220004,0.2673015,-0.44043982,0.40472874,0.13376294,0.03245514,0.77935016,-0.17206207,-0.06702563,-0.39457342,0.15387964,-0.4430674,-0.13404146,0.081492186,0.046977036,0.11710356,0.5660833,-0.15980114,0.4107735,-0.2905045,0.05439176,0.027055992,-0.27029732,0.36215895,0.39871562,0.376147,-0.37995404,0.66121763,-0.058331665,-0.12847564,-0.22726417,0.04747434,0.4657597,0.1992545,0.32351595,-0.118253484,-0.1242474,0.25886676,0.9061526,0.2610865,0.49664366,0.22281648,-0.14760843,0.2593019,0.081783816,0.045797274,0.23256642,-0.41031697,-0.09475383,-0.2490401,0.27443,0.44775283,0.097789235,0.45288798,-0.2423102,-0.35291708,0.087461606,0.312062,-0.21803449,-1.0057667,0.40953228,0.1204019,0.66916835,0.44567123,0.012912085,0.10536719,0.433137,-0.10553916,0.14212343,0.21685173,0.044040523,-0.45035335,0.6092077,-0.5312539,0.37071764,-0.11665133,-0.04062436,0.040169854,-0.035601217,0.41255298,0.7229401,-0.013153063,0.17094612,0.08916387,-0.29450768,0.19888853,-0.3873871,0.43809494,-0.487253,-0.17151007,0.5100953,0.3623586,0.19563998,-0.109143846,-0.02632195,0.08854248,-0.05278916,0.14694682,-0.11314759,0.19890498,-0.14994517,-0.6187345,-0.3192307,0.47005576,0.2549535,0.06743611,0.076448664,-0.09942214,0.24977733,-0.09755591,0.05747984,0.0065213614,-0.5710392,0.117910236,-0.21169215,-0.45790857,0.31361625,-0.4075057,0.38430035,0.243583,0.011919815,-0.4387622,0.18102345,0.42553294,0.556461,-0.14482765,-0.15003198,-0.35609525,-0.17486623,0.18931296,-0.16264868,-0.13094872,-0.16981462,-0.012637883,-0.56235176,0.47157538,-0.11386948,-0.02148985,0.3252111,-0.13404678,0.06832616,0.6064899,-0.021785783,0.021063577,0.1751058,-0.1912187,-0.20844667,-0.02940895,-0.16653109,0.22834142,-0.036336754,-0.05062843,0.015353113,-0.23336238,-0.26776424,0.20682801,0.008755993,0.31998143,0.41469285,0.2864719,-0.28090966,-0.20438018,-0.21360882,0.6265309,0.042408235,0.030993305,-0.31923404,-0.44241858,-0.098480575,0.29552796,-0.108802944,0.20649913,0.10797736,-0.61311376,0.66551006,-0.10933089,0.9236485,0.02067269,-0.25465825,-0.03113825,0.45373732,0.04955444,-0.10591824,-0.41853765,0.780541,0.64642185,-0.019383715,-0.16926762,-0.1285532,-0.049032494,0.24532212,-0.17336117,-0.34917262,-0.048133723,-0.73820347,-0.25368837,0.17710534,0.2899631,-0.11120297,0.019295802,0.14070736,0.20198056,-0.060956977,0.3627621,-0.3630831,0.104175,0.32064694,0.29574355,0.14857706,0.19275714,-0.36687055,0.25614816,-0.5218737,0.05684724,-0.17534648,0.05291883,0.10829181,-0.17472045,0.22632918,0.15203227,0.36142984,0.016118225,-0.07222358,0.0003735377,0.38281286,0.12902237,0.28410932,0.654314,-0.10950352,0.15065797,-0.11219546,0.4687874,1.0636036,-0.22975148,-0.04711237,0.29513198,-0.3568454,-0.6813491,0.46937326,-0.34775478,0.16763268,-0.026211482,-0.2518169,-0.27006525,0.30282715,0.27395982,-0.18232642,0.070380755,-0.35773674,-0.3917665,0.21075815,-0.2627115,-0.3151105,-0.4528974,0.06254713,0.5238149,-0.18661052,0.06580822,-0.019804899,0.5922855,-0.14771962,-0.5680996,0.14895791,-0.26529264,0.2183795,-0.06726134,-0.2327074,-0.1833287,0.039773367,-0.32793278,0.29990327,0.19189939,-0.37830406,-0.06117042,-0.19954509,-0.12725341,0.6890315,-0.20317627,-0.20806743,-0.6689438,-0.44961455,-0.9529021,-0.38360915,0.36796242,0.25130507,-0.106793575,-0.4811274,-0.11137827,0.17473485,-0.16865133,-0.21295375,-0.37074074,0.35354507,0.0030366103,0.4231552,-0.053814474,-0.61201036,-0.09830383,0.14435302,-0.24532032,-0.43216148,0.54252744,-0.030337526,0.69123185,0.07014157,0.096742906,0.28471217,-0.2929532,0.21309695,-0.1317801,-0.38819313,-0.7207935,0.046894662 +195,0.5737051,-0.21451096,-0.46360934,-0.12467401,-0.5625102,0.33828792,-0.21457134,-0.036603317,0.07701948,-0.46641508,0.009440076,-0.13217995,-0.10821231,0.29287142,-0.25854594,-0.65474653,-0.11096435,0.09514109,-0.6641482,0.5434216,-0.6272699,0.39145264,0.1454919,0.23136592,0.04528401,0.14414653,0.24139789,-0.120646,-0.3599847,0.060617108,-0.1342949,0.25138378,-0.6915416,0.28992787,-0.11045148,-0.3713598,-0.02365265,-0.33394417,-0.0906939,-0.8073399,0.3191537,-0.7940539,0.47881562,-0.14601517,-0.35617536,0.096011624,0.15390992,0.17160366,-0.2841189,0.007822208,0.17761305,-0.36276883,-0.22529618,-0.17174686,-0.3503499,-0.75838524,-0.82403725,0.04580831,-0.70128685,0.004935302,-0.3321255,0.46797135,-0.28507358,0.03182163,-0.1543801,0.4602161,-0.4436642,0.08276035,0.11526758,-0.027688632,-0.13208666,-0.46950465,-0.11217901,-0.15012683,0.101759315,0.06961914,-0.07535258,0.26229596,0.4979383,0.6476022,0.26032776,-0.43393862,-0.291927,0.083908655,0.015079774,0.45497382,-0.11036372,-0.2657001,-0.27506036,-0.110819966,0.5393088,0.23600417,0.19300087,-0.2732053,0.03997825,0.035590746,-0.2243594,0.3776565,0.4186474,-0.33031347,-0.18533385,0.48259926,0.50901926,-0.18227229,-0.19151689,0.16528402,-0.029325929,-0.6463544,-0.08926031,0.42959535,-0.16407107,0.63480514,-0.22640763,0.16740379,0.7506089,-0.28168932,-0.13369553,-0.065551944,-0.24718499,-0.078864746,-0.20132895,0.023491748,0.050647102,-0.5060701,-0.11633154,-0.3540931,0.7532302,0.07655223,-0.86878717,0.30775544,-0.36094874,0.14830391,0.0023796689,0.74906594,0.8800913,0.5025007,0.31975794,0.9500352,-0.44471753,0.08225473,0.033513308,-0.34435996,0.15382524,-0.18641008,0.060818702,-0.4613448,0.1845384,-0.16183944,-0.10280697,-0.2057188,0.77102274,-0.5742365,-0.14733702,-0.15461919,0.648959,-0.4230979,-0.09809048,1.0019065,0.85753804,0.9301723,0.17613538,1.5134861,0.57246876,-0.088488355,0.010036631,-0.3942307,-0.4904172,0.24643607,0.23995517,-0.20708,0.39691144,0.057854533,0.03868382,0.4388647,-0.4360024,-0.08139321,-0.22199711,0.23383966,-0.023225829,0.04382725,-0.4653207,-0.22455302,0.17576581,0.0008703247,0.23745693,0.35173708,-0.34039772,0.6114048,0.3236794,1.2105983,-0.16743132,0.043185305,-0.04684656,0.12790796,0.020758718,-0.11547713,-0.027781658,0.06898372,0.4439792,-0.25229532,-0.60347116,-0.06975798,-0.28473532,-0.4089465,-0.37254757,-0.27012646,-0.1346095,-0.20531969,-0.39528042,-0.35946393,0.06670306,-0.46439883,0.42270303,-2.0748553,-0.2811218,-0.29967046,0.36986828,-0.056748334,-0.43006712,-0.14881295,-0.6176939,0.26455003,0.2774519,0.22556435,-0.73163164,0.44068643,0.30826274,-0.42944154,-0.103925474,-0.81970346,0.053317323,-0.16781956,0.33235714,-0.087855,-0.24674074,-0.23298626,0.10967809,0.6556413,0.019469187,0.16608861,0.28998038,0.6030078,0.053204928,0.5147809,0.38940644,0.6999771,-0.18697824,-0.23805355,0.5613748,-0.39715979,0.33061427,0.21611002,0.20293348,0.4599148,-0.50822806,-0.8047796,-0.67040193,-0.36115888,1.0661013,-0.3496134,-0.37083834,0.09590727,-0.003029585,-0.15496352,0.0100634545,0.48413253,-0.15513977,-0.018705275,-0.81799996,-0.09476051,0.12260311,0.18696102,-0.14150393,0.13510461,-0.26551515,0.6879569,-0.3297728,0.259663,0.3997853,0.2756459,-0.3127026,-0.5322791,0.21022475,1.0539149,0.46256799,0.13964063,-0.16548713,-0.56129146,-0.24071014,-0.19782893,0.0973529,0.41354835,0.7647945,0.11467311,0.04477749,0.30099553,-0.20451611,0.14970148,-0.2439411,-0.26559857,-0.21589118,0.07982062,0.4428142,0.4155838,-0.13398485,0.4577076,-0.28616077,0.18654962,-0.027984139,-0.53999156,0.58613926,1.0571164,-0.15758829,-0.30575812,0.57799256,0.33898118,-0.3652513,0.47756356,-0.59029245,-0.22880852,0.6374498,-0.023676546,-0.34837708,-0.07956906,-0.48681712,0.27320528,-0.89737964,0.41354385,-0.1131984,-0.4300202,-0.6503571,-0.15972678,-2.8110747,0.22010265,-0.28318465,-0.029930413,-0.12980324,-0.34341544,0.31843686,-0.47943482,-0.4851914,-0.07640745,-0.034466643,0.46150076,0.04598551,0.089938626,-0.27188855,-0.20911266,-0.26027814,0.16559117,0.25013247,0.28972813,-0.09406812,-0.34727985,0.31615466,-0.51967424,-0.4002301,-0.048832774,-0.7209496,-0.74041724,-0.18560311,-0.4809563,-0.39405844,0.7766597,-0.3492316,-0.19145739,-0.3201156,0.15903307,-0.07794095,0.35396257,0.16843523,0.035521798,0.13538264,-0.15244523,-0.13517343,-0.36623582,0.22394995,-0.009646092,0.17543183,0.65033174,-0.15841845,0.32623634,0.4442829,0.6568956,0.045075208,0.7845867,0.2512933,-0.1296033,0.20086087,-0.052725192,-0.26640028,-0.88190335,-0.39136153,-0.12021073,-0.5459377,-0.3884486,-0.09139311,-0.37987754,-0.84569716,0.52006495,-0.12957637,0.27007985,-0.1684625,0.4780622,0.44613746,-0.1082079,0.1776851,-0.3243325,-0.34357688,-0.45623854,-0.595647,-0.84865683,-0.7454766,0.08228165,1.4929883,-0.05610545,-0.1098668,0.062013432,-0.3632817,0.1946468,0.16333145,0.09316523,0.2221804,0.4948635,-0.18975943,-0.678357,0.41825926,-0.09152017,0.06208539,-0.41552475,0.045717254,0.6775921,-0.5835242,0.4786157,0.41134888,0.20619532,0.22863561,-0.5927381,-0.2346186,0.16562115,-0.25186327,0.5414662,0.28249127,-0.56295115,0.5395498,0.102347836,-0.27527308,-0.85861415,0.26350477,0.05748237,-0.028439835,0.052972943,0.49124137,0.21235311,-0.03205017,-0.29391676,0.2667791,-0.5871782,0.31210685,0.4029563,-0.20631945,0.24584296,-0.2580304,-0.3924863,-0.638129,-0.16332263,-0.5148711,-0.28265548,-0.064275116,0.02321845,0.05719696,0.048914723,0.2740165,0.4941612,-0.47068614,0.07886494,-0.058577858,-0.21316856,0.28297693,0.51589847,0.24418177,-0.37928897,0.6575788,0.02915962,-0.14596453,-0.1858559,0.04733439,0.48747444,0.2877673,0.14951481,0.21308745,-0.06024558,0.26894557,0.69563246,0.119904526,0.34895337,0.18975395,-0.39745182,0.42566866,0.1912255,0.2981402,-0.10732838,-0.29948562,-0.20837021,0.15020359,0.17469546,0.45907012,0.04148848,0.463677,-0.16081378,-0.040093645,0.2388654,0.037856273,-0.11385812,-1.1883488,0.11496421,0.21449608,0.5846597,0.37099382,-0.09955415,0.08688303,0.54259944,-0.5503278,-0.0488079,0.3968167,0.0709178,-0.32646728,0.5428862,-0.5441619,0.32400727,-0.41891605,0.14372958,0.011890195,0.17270277,0.27710786,1.0582812,-0.09988965,-0.06563277,-0.044256654,-0.07787531,0.21180448,-0.1453813,0.19288261,-0.45141804,-0.2986894,0.7375573,0.39161268,0.4492504,-0.26242453,-0.032721788,0.1270903,-0.20591266,0.23290072,-0.11243294,-0.11182205,-0.10478921,-0.6079883,-0.25123125,0.5254106,0.10906012,0.25433576,0.27440405,-0.480726,0.2092528,-0.19989288,-0.13976617,-0.08485928,-0.7015484,-0.28546172,-0.36316237,-0.4216525,0.21145545,-0.44707066,0.21131983,0.37269312,0.05965674,-0.4610927,-0.19759241,0.33353636,0.780651,0.104239285,-0.12310595,-0.22039697,0.12046889,0.39159068,-0.39021164,0.06085316,-0.13341217,0.23294559,-0.58763766,0.5406186,-0.32406798,-0.35840407,-0.033338115,-0.25676304,-0.07338031,0.581307,-0.3666216,-0.14842016,0.15385461,0.10941613,-0.22923774,-0.013245847,-0.24265066,0.3158251,0.05582148,-0.1810823,-0.042111117,-0.13789028,-0.19337139,0.46289992,0.20403978,0.24178268,0.3816013,-0.09849823,-0.5358877,0.010982215,0.06267716,0.54241943,0.10092135,-0.21879087,-0.37824693,-0.19915551,-0.23303445,0.43017012,-0.0862142,0.12991147,-0.007709572,-0.5366957,0.97886235,0.08091183,1.2767376,0.14773986,-0.43627438,-0.03419518,0.691916,0.03306301,0.18895988,-0.28462052,0.9344592,0.4769464,-0.1887713,-0.09882538,-0.5510297,-0.14270101,0.40707555,-0.27355137,-0.07248783,-0.28010535,-0.7443123,-0.31728896,0.24694778,0.17199197,-0.10495421,-0.039962806,0.10020815,0.058070537,-0.07061762,0.6596601,-0.64761436,0.007145196,0.23218328,0.13406426,-0.018477686,0.39734435,-0.29290032,0.37631994,-0.7013519,0.09259144,-0.31063968,0.18538061,0.15233617,-0.21720986,0.33031443,0.034808733,0.37200737,-0.26708603,-0.3146491,-0.42968538,0.8250485,0.30153272,0.34816808,0.9209164,-0.46316803,-0.05304327,0.17001303,0.5380683,1.5020216,-0.15834647,0.22607629,0.10809765,-0.37500462,-0.60665965,0.38540044,-0.46571139,-0.015430823,-0.15848711,-0.3841807,-0.46397784,0.31974468,0.3271352,0.105901375,0.14438799,-0.44651443,-0.17965296,0.60267395,-0.23450585,-0.0757834,-0.1198186,0.28151956,0.7363335,-0.4310183,-0.3165856,-0.12432492,0.48392427,-0.23367421,-0.6514682,-0.05106715,-0.27414313,0.51443106,0.29388952,-0.22582659,0.019910343,0.25387752,-0.43105993,0.18407123,0.42737532,-0.27351457,0.050734818,-0.26196173,-0.015817106,0.91022813,0.093231395,0.18798552,-0.6683986,-0.4318501,-0.88753295,-0.36476254,0.11538707,0.31280887,0.013050855,-0.59942836,-0.0979533,-0.15802394,-0.12585007,0.26205724,-0.77387995,0.3709411,0.05343652,0.55598,-0.037588835,-0.9068735,-0.029146098,0.041943736,-0.033642262,-0.41315952,0.5091342,0.004647389,0.6809786,0.41166204,0.15221547,-0.09267359,-0.5599934,0.4265948,-0.43495458,-0.1639463,-0.71450967,0.1262183 +196,0.51447713,-0.23205446,-0.5516473,-0.3378631,-0.547372,0.16047578,-0.31579185,0.026522234,0.28575715,-0.33688945,0.042828124,0.038122486,-0.14560372,0.15212928,-0.14447653,-0.6242742,-0.1928848,0.11062515,-0.83452666,0.59285665,-0.47253674,0.21289697,0.08329334,0.3568138,0.15618873,0.2388308,0.17863142,-0.0033571497,-0.19374436,-0.11301213,-0.08355078,0.33607867,-0.8569995,0.16681065,-0.22871292,-0.40302384,-0.1212143,-0.5417678,-0.19358356,-0.713608,0.25656086,-0.8605842,0.6089972,-0.19560368,-0.300662,0.05317553,0.2323827,0.23503122,-0.2589567,0.15937658,0.2520504,-0.1662298,-0.1751807,-0.09279859,-0.30020306,-0.47393912,-0.6447114,0.07141728,-0.6426145,0.038308606,-0.19155625,0.33627266,-0.28566226,0.13245517,-0.35530978,0.42363617,-0.39294058,-0.076670446,0.015826069,0.0069976673,0.019470893,-0.4511954,-0.14891607,-0.31842834,0.34239638,0.031775557,-0.30963728,0.20693249,0.27897105,0.6159078,0.11450935,-0.39899245,-0.32258135,-0.10974794,0.05276882,0.36225057,-0.077016324,-0.21561703,-0.41555902,-0.04253623,0.46888018,0.26307935,0.037321776,-0.334001,0.16072038,-0.0023173227,-0.23070164,0.6585113,0.45977283,-0.3846591,-0.28298432,0.38720262,0.40491456,0.16636892,-0.24302927,0.2132959,-0.040526837,-0.5322819,-0.26950407,0.3207028,-0.11281459,0.38939184,-0.09590705,0.22819698,0.692921,-0.20748688,-0.10556575,-0.14959517,-0.2647051,-0.09213258,-0.33029333,-0.17201833,0.1698589,-0.5642194,0.1620345,-0.24597788,0.4941265,-0.0013938807,-0.952433,0.332304,-0.61115843,0.23755929,-0.055061273,0.6918285,1.0565485,0.5730519,0.30510503,0.8025868,-0.22355625,0.12591106,-0.029036734,-0.2711567,0.01414586,-0.18059038,0.1616762,-0.51892346,0.0401145,-0.1352255,-0.032808334,-0.13001022,0.60911924,-0.4428326,-0.1997383,-0.019755758,0.6734384,-0.3332247,-0.13274682,1.1235476,1.0183005,1.2357742,0.18752378,1.3636796,0.30440485,-0.061516672,-0.08164122,-0.2592969,-0.5540215,0.21124177,0.2765203,-0.11696401,0.46626994,0.0010088915,0.09649606,0.43708473,-0.43882143,-0.024866879,-0.027905278,0.2119248,-0.039564986,-0.028658282,-0.2784024,-0.26735824,0.37985206,0.08908498,0.21562862,0.2512347,-0.28253222,0.63148755,0.22458898,1.1673033,-0.043724243,-0.010123886,-0.0013615638,0.3852982,0.2188756,-0.18709028,-0.024665006,0.3071362,0.44153142,-0.15162493,-0.55901086,0.060136724,-0.30275416,-0.23466316,-0.16927499,-0.37320563,-0.1591039,-0.3732784,-0.4606286,-0.36480176,-0.0132279135,-0.44656533,0.502241,-2.2997193,-0.3269886,-0.19118655,0.14682727,-0.18276066,-0.3677377,-0.16838121,-0.56990093,0.27632827,0.30495942,0.34832802,-0.6977013,0.62303203,0.5086449,-0.6245369,-0.035315458,-0.8043431,-0.21092318,-0.108148046,0.3904433,-0.074516445,-0.32369983,-0.24899232,0.29508254,0.59278613,0.039832048,0.15003844,0.32312512,0.5533001,-0.07917812,0.7198298,0.119921744,0.53751004,-0.21492247,-0.23244165,0.46640265,-0.3701366,0.2632817,0.03366311,0.12921052,0.60985965,-0.5830185,-0.8963014,-0.6719742,-0.3956622,1.236022,-0.35331693,-0.44957253,0.07752337,-0.2527971,-0.28569043,0.054780677,0.5514288,-0.20105231,0.002351489,-0.8461445,-0.10607651,-0.025153399,0.2802429,-0.1529178,0.15305361,-0.4739648,0.66258633,-0.08858438,0.5068183,0.26935944,0.25330025,-0.32480443,-0.4220431,0.22880176,0.9471143,0.4885075,0.0086852275,-0.3021516,-0.2553427,-0.1168904,-0.079899006,0.017439406,0.58194685,0.57521456,-0.0786369,0.12046998,0.48980016,-0.16604395,0.10831936,-0.25393096,-0.22153412,-0.1719441,0.0840718,0.6231891,0.60300624,-0.12217299,0.42773262,-0.22102278,0.23672894,-0.06400713,-0.5720937,0.57340604,0.86885417,-0.11303108,-0.21006691,0.6408771,0.4895115,-0.30179718,0.5411385,-0.62194145,-0.27237874,0.5463129,-0.017613344,-0.4359479,0.13963193,-0.42385232,0.08959683,-0.86420083,0.1581278,-0.25263122,-0.3015317,-0.57684946,-0.20227255,-3.4327054,0.034547277,-0.09374493,-0.06466968,-0.23695958,-0.42554498,0.44307286,-0.46321714,-0.7939367,0.08792331,0.0826435,0.54081225,-0.14743735,0.11481837,-0.28515503,-0.3735483,-0.42575473,0.23381227,0.24274985,0.25606817,-0.0867182,-0.4603203,0.006644888,-0.34794995,-0.47906458,-0.15539005,-0.63147426,-0.45607623,-0.07954154,-0.5613489,-0.3656768,0.63384193,-0.2699654,-0.078751154,-0.42024165,0.0053559355,-0.056810707,0.4081001,0.100140676,0.16981693,0.10855009,-0.13242668,-0.097447254,-0.22563457,0.22768044,-0.042434033,0.1994873,0.23850387,-0.08480193,0.28746486,0.4392447,0.77699995,-0.08945809,0.9190488,0.27502006,-0.168156,0.37521446,-0.115640186,-0.3204086,-0.7917459,-0.25152296,-0.111332566,-0.5777441,-0.42892408,-0.11308947,-0.39076805,-0.85407394,0.5210748,0.07187722,0.24530452,-0.21769062,0.36164925,0.39535052,-0.14812353,0.16221485,-0.19631854,-0.3040866,-0.37387258,-0.49006712,-0.77509207,-0.549202,-0.096523724,1.3921535,0.01179564,0.017532036,0.18875933,-0.3309334,0.13352795,0.261629,0.21205585,0.34760165,0.5878164,-0.054368407,-0.64777863,0.34994423,-0.21146625,0.0671093,-0.5796361,0.07706146,0.8360488,-0.65909874,0.5775176,0.3754065,0.1827661,-0.0030497424,-0.6068174,-0.12301781,0.04510431,-0.19055462,0.7675315,0.42151973,-0.77990025,0.6246711,0.13537392,-0.08354102,-0.7669742,0.5143624,0.07128834,-0.03844455,0.03142048,0.43287212,0.058192447,-0.03823141,-0.03837215,0.19546944,-0.43053603,0.37161264,0.28563634,-0.02039764,0.33628425,-0.15735653,-0.29601127,-0.64998,-0.12976682,-0.41831416,-0.35913706,0.02789193,-0.120040044,0.15075144,0.12536697,-0.037832916,0.4714175,-0.19864729,0.084194936,-0.16770057,-0.20573431,0.23453881,0.569457,0.28287327,-0.41124922,0.7110162,0.24709797,-0.14935857,-0.09340101,0.102671206,0.32130575,0.16275589,0.35797414,0.10475133,-0.20778419,0.2370843,0.62661517,0.17840019,0.30982518,0.1003471,-0.17620121,0.35279846,0.110767186,0.15886557,-0.23238362,-0.43362987,-0.21091416,-0.023002457,0.17328563,0.4562332,0.12831655,0.2686972,-0.127472,0.041767035,0.030845396,0.19733098,-0.2831624,-1.5541055,0.14793515,0.31789368,0.8321443,0.7060545,0.06171307,0.0067457594,0.55604863,-0.45428884,-0.022966899,0.4950776,0.25908372,-0.29297656,0.59481436,-0.4693096,0.475219,-0.10240177,0.10820286,0.046889216,0.11846854,0.4456253,1.0327152,-0.21517006,0.099093676,0.02301132,-0.11657789,0.2525014,-0.0992392,0.090456136,-0.39033476,-0.33684048,0.77915144,0.37806988,0.3911533,-0.37334114,-0.096081965,-0.05727032,-0.29503688,0.10022084,-0.017356958,-0.10948796,-0.12765111,-0.52303016,-0.19558758,0.51503485,-0.0921689,-0.0007432215,0.29085156,-0.474182,0.16546081,-0.027736379,0.11419518,0.010708988,-0.6917371,-0.16638467,-0.22098993,-0.41970533,0.24774893,-0.40482545,0.09915176,0.13818265,0.04033483,-0.2736681,0.027287126,0.13878885,0.6677494,0.10249039,-0.047909554,-0.14094776,0.045914337,0.20825422,-0.37167105,-0.09055059,-0.30650115,0.2608553,-0.6638739,0.521634,-0.17538181,-0.45496273,0.15430185,-0.063745335,0.021297915,0.37673175,-0.21026984,-0.19773015,0.10899383,0.10323078,-0.3649954,-0.18562534,-0.3282671,0.27627861,0.04947278,0.031645715,-0.020520808,-0.07844944,-0.10360625,0.6245146,0.09518389,0.2560044,0.46820927,0.070677675,-0.6101655,0.075982206,0.034378685,0.6663625,-0.0058760047,-0.15368457,-0.33974275,-0.18719098,-0.3069088,0.593439,-0.13454351,0.18334377,-0.08790171,-0.4860283,0.8280039,0.107675955,1.2106445,0.033281557,-0.44086057,0.03626309,0.5301333,-0.17566806,0.046403266,-0.30473414,0.9313505,0.5274105,-0.17857084,-0.2527377,-0.5344968,-0.15287952,0.115460485,-0.33970433,-0.17343333,-0.27193332,-0.71407634,-0.17176381,0.16730654,0.13908774,0.1578427,-0.00824772,0.1122722,0.16269754,0.106914625,0.5190966,-0.54050934,-0.06957501,0.26031187,0.26542988,-0.0654322,0.19369546,-0.40054458,0.25098076,-0.75272894,0.109241806,-0.44932967,0.11333207,-0.05727853,-0.2678592,0.23399088,0.119213276,0.26363057,-0.24828495,-0.35612532,-0.30750853,0.63725686,0.0057669254,0.30886388,0.9330711,-0.21667574,0.063513234,0.08922868,0.46624207,1.3349965,-0.10912211,0.032138295,0.14579709,-0.2733982,-0.5267072,0.16236177,-0.5400741,0.14084892,0.13238111,-0.40755957,-0.30759043,0.27466634,0.05773824,0.18443942,0.11809962,-0.71744263,-0.16147949,0.436626,-0.116296545,-0.11803609,-0.33905897,0.26010808,0.85137004,-0.3135205,-0.27132344,-0.103999786,0.42427635,-0.24691199,-0.7568879,-0.047282685,-0.44176945,0.5090242,0.09608192,-0.2750329,0.018297676,0.098739035,-0.55245876,0.109308414,0.46095073,-0.2966042,0.06531182,-0.32991588,-0.18914874,1.0825838,-0.13231054,0.2342422,-0.51086813,-0.5852121,-0.892531,-0.1263941,0.02483508,0.23422226,-0.024951477,-0.5215487,-0.09259215,-0.1786463,-0.14853133,0.26967487,-0.6685678,0.4757155,0.1766222,0.61888385,-0.038162045,-0.8636464,0.02611208,0.040789627,-0.05765653,-0.27657935,0.7288598,0.090391956,0.6981107,0.22951093,0.09522909,-0.122892916,-0.6335725,0.35570258,-0.33693644,-0.060360655,-0.8326634,0.06403687 +197,0.64284384,-0.31002122,-0.5544117,-0.029881245,-0.1371707,-0.057636257,-0.13617554,0.5821729,0.36746186,-0.3236275,-0.30321875,-0.034864906,0.06088838,0.043150574,-0.17966233,-0.47328216,-0.02569701,0.25732988,-0.58298457,0.6931666,-0.26773128,0.23489843,-0.014977957,0.49289793,0.22356583,0.13379464,-0.07401259,0.023314476,-0.030456258,-0.0038197595,0.030604009,0.39781666,-0.5703591,0.06466867,-0.3873364,-0.45629925,-0.3151935,-0.562797,-0.36894712,-0.92905045,0.30538368,-0.81883144,0.5051335,0.1403736,-0.41576734,0.12339834,-0.05866513,0.18005545,-0.3007297,-0.08019761,0.12068604,0.02298018,-0.07264735,-0.05320635,0.0046532876,-0.14529805,-0.63095444,0.06118593,-0.48258847,0.15405263,-0.19613358,0.09371253,-0.339873,-0.08397488,-0.031673737,0.7184784,-0.31343335,-0.08267216,0.16475494,0.0035652858,0.32465753,-0.5871355,-0.22792812,-0.11084355,0.3920299,-0.18080655,-0.40603837,0.12908173,0.22650771,0.59455854,0.021929907,-0.26052758,-0.28914103,0.24079014,-0.04738472,0.4418374,-0.020031989,-0.576873,-0.1807158,-0.008267845,0.36438352,0.14055434,0.24260895,-0.12397898,-0.18128507,0.0073979413,0.019378934,0.43700913,0.5792602,-0.21731398,-0.24417482,0.359476,0.62577313,0.17037375,-0.02920961,0.08223865,0.045488495,-0.58629817,-0.18504085,0.07814896,-0.29927447,0.49796304,-0.23658077,0.34840816,0.5205219,-0.09230246,-0.16886842,0.33494517,0.06822563,-0.16418801,-0.07821947,-0.31715742,0.18701823,-0.47891822,0.118273206,-0.31653807,0.59215677,0.18295558,-0.7805168,0.2659929,-0.5746976,0.28567824,-0.0049207364,0.61228734,1.0792954,0.40838486,0.4549136,0.6945406,-0.28844577,-0.014593393,0.07610166,-0.24038479,0.1485288,-0.29764146,0.021870375,-0.5835196,-0.23824517,-0.05849317,-0.1937481,0.091226764,0.4489269,-0.6788234,-0.27125522,0.07853091,0.6026074,-0.19304223,-0.13281152,1.0830712,1.0090868,0.9964551,0.10668813,1.1433417,0.19877775,-0.2875493,0.26247698,-0.2649653,-0.74087995,0.38122773,0.1838805,-0.20956203,0.39730832,-0.04760949,-0.11383198,0.4098987,-0.5669138,0.025931848,-0.11426945,0.017923037,-0.06622107,-0.060958248,-0.42414775,-0.4066408,-0.2232881,0.19714525,0.20700553,0.26500207,-0.284597,0.42422003,-0.038731392,1.3301029,-0.07642005,-0.05849869,-0.03739222,0.43076023,0.23216756,-0.22741096,-0.32029918,0.16818665,0.3354118,0.11833397,-0.6026243,0.14273332,-0.109776735,-0.2182483,-0.11914333,-0.34047678,-0.022709796,-0.09915809,-0.38663676,-0.2448835,-0.32197443,-0.5491422,0.3201593,-2.607596,-0.2887657,0.041487355,0.42791325,-0.18881114,-0.30032846,-0.28518134,-0.5854937,0.37873858,0.3067758,0.48169222,-0.8278305,0.3245304,0.30263194,-0.65786994,-0.052990615,-0.7321641,-0.15397552,0.06440109,0.24689409,0.052535288,-0.13390683,0.10344188,0.23267838,0.378505,0.15038708,0.12592827,0.3924219,0.46393278,-0.07608463,0.29565546,0.062231857,0.49168256,-0.32145828,-0.15491973,0.4226908,-0.44563255,0.1648867,-0.19686754,0.09331413,0.5067927,-0.6123436,-0.94074976,-0.6548113,0.110627785,1.2454349,-0.055333458,-0.42775854,0.078561924,-0.61218494,-0.12954403,-0.116421685,0.7370474,-0.14643672,-0.18716624,-0.8970936,-0.1587832,0.029799035,0.114833795,-0.034043003,0.01609146,-0.5092314,0.5553519,-0.011698701,0.5058703,0.2733279,0.21501163,-0.3675366,-0.63263625,0.24847934,1.0200925,0.41487598,0.15777385,-0.2513359,-0.11660136,-0.41529694,0.09970717,0.043448143,0.55392927,0.7304117,-0.19243346,0.24460427,0.37097147,0.048186872,0.13794754,-0.17099537,-0.24294293,-0.3465571,0.047698047,0.6089447,0.8766066,-0.2541108,0.40281853,-0.014475652,0.10605979,-0.13980943,-0.40781572,0.7135206,1.2138633,-0.21932021,-0.24406992,0.5331082,0.41771927,-0.28092098,0.5668027,-0.568484,-0.40202454,0.31515637,-0.16686676,-0.34786487,0.24691619,-0.3843839,0.3466368,-0.97315323,0.32607752,-0.22491945,-0.34005123,-0.622004,0.1148877,-2.3666065,0.15319808,-0.17161004,-0.10042262,-0.27152762,-0.33457312,0.10370178,-0.5505527,-0.7189618,0.18333904,0.06363641,0.82892895,-0.08018977,0.092206374,-0.15509507,-0.49764803,-0.40464023,0.049448628,0.26970926,0.5291843,0.12085791,-0.43003017,-0.019565748,-0.16186066,-0.2899063,-0.0696476,-0.59742814,-0.6531598,-0.09677996,-0.6525523,-0.31490874,0.5892276,-0.13178487,0.06310474,-0.20648344,-0.069688715,0.08136548,0.40582266,-0.0039273626,0.036233332,0.004635499,-0.11730765,0.20899126,-0.11359068,0.25020605,-0.03854068,0.21339305,0.42074013,-0.250533,0.45691457,0.5933503,0.75629586,-0.23028927,0.9007905,0.6496642,-0.026806584,0.22332154,-0.16919753,-0.39392498,-0.52425534,-0.10761862,-0.07784957,-0.4360078,-0.25648996,0.019016977,-0.44488683,-0.97671175,0.4018252,-0.05169463,0.32808343,0.1096613,0.18452881,0.70983505,-0.14320767,0.06637545,-0.21279417,-0.21776721,-0.44378588,-0.10494178,-0.6276034,-0.45491934,0.116086625,0.99739903,-0.235827,0.111760564,0.28446448,-0.1439167,0.05439694,0.18532327,-0.025534542,0.08805221,0.49845362,0.008964954,-0.5674096,0.34185812,0.045119636,-0.18824148,-0.5319578,0.26616198,0.46447113,-0.6385932,0.39375526,0.37653837,-0.08389961,-0.18048373,-0.48937845,-0.05783073,-0.10416156,-0.05368639,0.4816208,0.39152366,-0.68391323,0.44606075,0.28994745,-0.09983552,-0.8372397,0.50070924,-0.008852045,-0.2723527,-0.1912122,0.322193,0.027236512,0.08128236,-0.29955626,0.21957955,-0.32104418,0.29359373,0.11316749,-0.2829588,0.25208044,-0.19631456,-0.09794403,-0.63510424,0.085591555,-0.7566257,-0.25133458,0.2764179,0.24781673,0.06716221,0.029917931,0.13554537,0.36581522,-0.25809637,0.037461698,-0.070905074,-0.2717573,0.32669693,0.426673,0.55897474,-0.33743474,0.5821923,0.051212844,-0.16155215,-0.0068697757,0.01632489,0.35748276,0.025073767,0.3416144,0.17521122,-0.18879439,0.25292078,0.65405905,0.12773475,0.41804674,-0.02620967,-0.05932956,0.10225745,0.13392678,0.3847901,-0.23729464,-0.4400108,0.013428637,-0.38181168,0.13129136,0.47254896,0.2248424,0.1329007,-0.06583994,-0.36786518,-0.06502176,0.19802412,0.031664226,-1.4968796,0.34542328,0.31630605,0.88844454,0.47792265,-0.14807269,0.05661336,0.66320133,-0.17530979,0.16637349,0.32009035,0.060527027,-0.5822874,0.51037097,-0.6851748,0.52579486,-0.04776028,0.040805165,-0.03860895,-0.080407016,0.37120575,0.6923121,-0.18966642,0.11888271,-0.08215802,-0.2461609,0.1521984,-0.40104744,0.07955409,-0.6905555,-0.13604568,0.82236946,0.4373164,0.33058304,-0.29991674,0.13002738,0.011921031,-0.16510169,0.21557109,0.06781795,0.06267937,-0.101219244,-0.74962044,-0.10453914,0.38383484,-0.12596536,0.11731713,-0.023289025,-0.2440881,0.04295116,-0.15309219,-0.038217824,-0.19230983,-0.7746505,-0.21414694,-0.4238841,-0.26496667,0.678815,-0.066749886,0.23769473,0.33117512,0.17725272,-0.35804322,0.16910617,0.021155996,0.6623584,0.022355411,-0.14566132,-0.37700143,0.32836086,0.24213901,-0.23802915,-0.27502522,-0.20064318,0.17559123,-0.3264935,0.53907454,0.11869997,-0.38176575,0.07058801,-0.06571938,0.051861662,0.5475376,-0.19820942,-0.17163788,0.0112299835,-0.22051294,-0.3337811,-0.28321,-0.12491895,0.29967138,0.34698704,-0.12198399,-0.16274402,-0.013380106,-0.08903499,0.5174797,0.12481165,0.3898048,0.47503906,0.1258761,-0.40555805,-0.018817263,0.2868077,0.5282044,0.062428497,-0.1897356,-0.56309,-0.43571642,-0.44361168,0.029863775,-0.120343074,0.24612017,0.10866041,-0.04029184,0.6691275,0.18486086,1.1564378,-0.000751621,-0.3216726,0.10043276,0.48206738,-0.08822514,-0.237008,-0.35719398,0.8970044,0.42520973,-0.19363417,0.013977866,-0.2862641,-0.08446993,0.27710536,-0.12944847,-0.14873764,-0.082195826,-0.6807232,-0.29363364,0.23560289,0.3815009,0.14046016,-0.17194441,0.05759766,0.24472143,-0.10508567,0.09489048,-0.49925286,-0.15354553,0.32972455,0.23566552,-0.02482714,0.03075753,-0.55895585,0.2957912,-0.47954348,-0.01961368,-0.14925154,0.25323984,-0.13435192,-0.47250083,0.2756774,0.1645781,0.32329568,-0.3766549,-0.42844105,-0.40379456,0.5046176,0.13932993,0.06008062,0.4650429,-0.37634262,-0.011626227,0.15549226,0.5153533,1.0810956,-0.051069677,-0.05779508,0.2682065,-0.29084417,-0.6549805,0.26790234,-0.33137655,0.3570374,-0.11948771,-0.20997126,-0.65578884,0.23157136,0.12634543,0.22535859,0.03361353,-0.64663124,-0.32908157,0.2723517,-0.24479191,-0.04443678,-0.45545313,-0.07838363,0.5299615,-0.19186306,-0.30031604,0.124381356,0.13728948,-0.08935552,-0.55765855,-0.066160776,-0.40253633,0.11174076,-0.00324483,-0.38295978,-0.16857198,0.011181082,-0.5135624,0.24778093,0.1576686,-0.37991673,0.09902501,-0.42976263,-0.014808704,1.0814664,-0.25291857,0.4030462,-0.29128405,-0.51238656,-0.81730664,-0.24201335,0.3999785,0.08115093,-0.0358474,-0.8913545,0.035344116,-0.09465783,-0.122219376,-0.09457238,-0.37489128,0.51250875,0.15952085,0.29545805,-0.08253115,-0.7911628,0.122819886,0.06406554,-0.30195194,-0.56125516,0.51620424,0.25031576,0.8761407,0.18785326,0.24222064,0.34322444,-0.5989937,-0.14952108,-0.11885316,-0.08420675,-0.5151519,-0.0049023586 +198,0.18536185,-0.12377009,-0.547332,-0.27305153,-0.20106892,0.03625503,-0.17054555,0.56313473,0.17735156,-0.13060342,-0.21233243,-0.16274582,0.25698873,0.6285978,-0.20138621,-0.95095843,-0.09149785,0.11451232,-0.8978746,0.3446107,-0.47964624,0.28236735,0.20821767,0.34692314,-0.0058765467,0.051011488,0.54095995,-0.18038763,0.1626975,-0.30244863,-0.14546382,0.11194933,-0.6210431,0.0737244,0.041516867,-0.3730873,0.043736782,-0.5087488,-0.06410251,-0.7154804,0.10243232,-0.8700456,0.7120653,0.0294972,-0.33793458,0.0030599183,0.39602426,0.41248816,-0.29390186,0.09375518,0.18534018,-0.28452584,-0.16097344,-0.19171633,-0.21832609,-0.6556291,-0.4529665,-0.09427052,-0.61397034,-0.5032317,-0.21365346,0.11098283,-0.4490611,-0.044077918,-0.21705116,0.2497316,-0.4448785,-0.18094355,0.5654827,-0.27097,0.46094382,-0.58535486,0.018942205,-0.06345442,0.48873597,-0.03296949,-0.2409873,0.2902868,0.40071142,0.309034,0.21104132,-0.34046996,-0.052919436,-0.3659443,0.18264796,0.47410825,-0.040529057,-0.39825287,-0.14128843,0.14624794,0.43687075,0.6780889,-0.007796068,-0.22241539,0.033753928,-0.07457836,-0.19229035,0.7545736,0.44415715,-0.35891607,-0.3958644,0.335413,0.5770765,0.5556404,-0.13906509,0.10999205,-0.14464873,-0.6149327,-0.18207811,0.17704506,-0.08223888,0.46077615,-0.012432653,0.078628264,0.96161216,-0.18384638,0.011601404,-0.14182065,-0.030021884,-0.18799902,-0.32777613,-0.1319326,0.33845595,-0.6348118,0.019895123,-0.40154344,0.79376787,0.12409694,-0.66551054,0.35471305,-0.64694905,0.11959633,-0.036923822,0.6064901,0.73950475,0.44780874,0.20410468,0.91363776,-0.24583197,0.17950968,-0.11301665,-0.40319824,0.05727059,-0.053391982,0.14801322,-0.5385191,0.23089825,0.03636376,0.21781512,0.10037875,0.39104775,-0.76882,-0.16430458,0.14723821,0.7729797,-0.21497951,-0.05020683,0.7375193,1.042466,1.0336584,-0.044073477,1.2575752,0.18767977,-0.19280343,0.006849045,-0.09520919,-0.538447,0.2119337,0.6337252,-0.112889476,0.3084354,-0.3701662,-0.16581808,0.19654264,-0.23442918,-0.11154228,0.0789721,0.53551644,0.0365283,-0.38232848,-0.577195,-0.029641537,0.083072506,-0.25676894,0.15489583,0.34338662,-0.2005879,0.34614298,-0.11592806,0.7685612,-0.14703923,0.29308206,0.15432054,0.28796837,0.21902305,-0.05384134,0.081752665,0.3614537,0.3610916,-0.11600585,-0.6698091,0.27075282,-0.47833604,-0.42515498,-0.1246932,-0.4823637,-0.2268961,-0.015317545,-0.29417437,-0.03085277,-0.12579578,-0.1886836,0.4419814,-2.8732207,-0.4183354,-0.21660818,0.12779859,-0.2734136,-0.14141767,-0.07146189,-0.4928002,0.449211,0.29277766,0.64111483,-0.39106,0.3675564,0.41573906,-0.5461126,-0.3191145,-0.7185637,0.022416044,0.07818388,0.3223383,-0.14818576,-0.2600074,-0.04332368,0.18765177,0.7434121,0.24569435,0.16175318,0.43604252,0.41145542,-0.06831937,0.4262786,-0.321218,0.7280666,-0.4571579,-0.10831683,0.3479058,-0.20981814,0.44170445,-0.37535855,0.1345025,0.5773251,-0.26007497,-1.1527174,-0.46511605,-0.5297125,1.1045678,-0.5471327,-0.4001129,0.22276187,0.26633903,0.06862163,0.22330646,0.756286,0.046797182,0.2873986,-0.5397081,0.2312013,-0.09147202,0.16669716,-0.056033697,0.007839874,-0.39963922,0.7057442,-0.033827633,0.44029647,0.23880139,0.28508794,-0.17158791,-0.2712677,0.024642022,0.7390804,0.51682764,-0.11047008,-0.020291502,-0.18600959,-0.33178565,-0.18900941,-0.028379792,0.75202465,0.83070433,0.023719441,0.09273309,0.097105145,0.01663098,0.1772227,-0.13698862,-0.3444699,0.06363037,0.17248799,0.4682885,0.3740299,-0.08702397,0.61073214,0.00096371496,0.27877805,-0.27759695,-0.607873,0.67271906,0.3494707,-0.27325,-0.07153568,0.559369,0.4476627,-0.41584805,0.51952267,-0.6313366,-0.32993165,0.97001576,-0.22887263,-0.66255325,0.3640518,-0.08241529,-0.0066047367,-0.81671244,0.12779312,-0.59812415,-0.4700264,-0.23809429,-0.115838505,-3.4673507,0.33114243,-0.13717642,0.026072746,-0.50102085,-0.038829204,0.32144293,-0.54984623,-0.74352837,0.15118761,0.3659639,0.8125189,-0.23183922,-0.0067283185,-0.1582973,-0.32107097,-0.016147494,0.35229808,-0.13325381,0.09495606,-0.22699803,-0.30243987,0.05375835,0.18890266,-0.57889915,0.28495237,-0.57417464,-0.27022773,-0.1771664,-0.46004292,-0.115099125,0.7167431,-0.6992346,0.055626165,0.013238281,0.21367246,-0.086446375,0.057057682,-0.00049186294,0.44449702,0.16472246,-0.15075512,0.07299155,-0.25014424,0.5473651,0.1133683,0.46591905,0.081432395,-0.06500426,0.26740658,0.43596217,0.6080904,-0.04101659,0.99547106,0.10122185,0.039223645,0.32804993,-0.42705935,-0.24697852,-0.4953375,-0.3851391,-0.21485628,-0.40846446,-0.61551756,-0.15613867,-0.1260214,-0.6859918,0.5662403,0.12728849,0.5813885,-0.18726134,0.43519202,0.36659047,-0.35446057,0.011770075,0.032738533,-0.061464477,-0.4599964,-0.14037138,-0.75756437,-0.41365272,0.063933656,0.787496,-0.4880619,0.029657584,-0.27241886,0.006837715,0.11497771,0.16402443,0.06750758,0.12987764,0.38284457,-0.10318796,-0.71156144,0.38778222,-0.08132447,-0.2119897,-0.6267382,0.115641505,0.57772744,-0.7154774,0.5649167,0.31759927,0.022660814,-0.25961673,-0.54724425,-0.069957085,0.25735965,-0.1968234,0.39405224,0.12146859,-0.69664085,0.51392967,0.3801217,-0.32914984,-0.7169799,0.40028226,-0.047913328,-0.2805814,-0.110048525,0.37051705,0.3934191,-0.14409102,-0.18029644,0.25409138,-0.5662658,0.31704995,0.1472067,-0.054327384,0.6063726,0.023849936,-0.3819343,-0.8277422,0.06718059,-0.67115635,-0.29026863,0.33852106,0.02046053,-0.09413651,0.35238704,0.119164184,0.48342526,-0.31725308,0.16571447,-0.04483013,-0.4954563,0.39033297,0.51051325,0.21946985,-0.24759617,0.6510667,0.1825695,-0.23421817,0.14950007,0.08599514,0.5289331,-0.07722099,0.52633643,-0.31059512,-0.25546548,0.25444108,0.6006736,0.06885975,0.27654552,0.15733598,0.095962,0.21828924,-0.11637273,0.19293894,0.061210718,-0.4230729,-0.099418595,-0.18525667,-0.010444074,0.6028192,0.314126,0.14479351,0.279707,-0.17862271,0.087397486,0.25276002,-0.077201694,-1.0863079,0.59540653,0.22646561,0.92074203,0.50815713,0.15130945,-0.22085348,0.38219917,-0.14460242,0.14873035,0.491726,0.04031612,-0.43866575,0.90532684,-0.75657654,0.32715288,-0.2462789,-0.1875873,0.18403889,0.07045856,0.35545638,1.0652844,-0.20867215,-0.047980808,-0.046485517,-0.17203823,0.13766594,-0.17880286,-0.06567585,-0.47291934,-0.5152891,0.61504525,0.31177914,0.26824275,-0.3060147,-0.12464697,0.12586595,-0.08921974,0.15629269,-0.034951422,0.019179506,0.052012995,-0.30829847,-0.118385434,0.55709773,0.042782556,0.16455191,-0.20710573,-0.24033894,0.027680842,-0.18898211,0.11813828,-0.06261938,-0.7140274,-0.015586301,-0.41326284,-0.5943962,0.32653376,-0.5000815,0.26383862,0.113693096,0.07599086,0.042765345,0.25177768,0.07798612,0.7478104,-0.09813654,-0.32509306,-0.46142673,0.213837,0.065770574,-0.24255718,0.012583158,-0.19835351,0.09061832,-0.60179126,0.50842476,-0.17355384,-0.38311833,0.2668917,-0.24189897,-0.25828788,0.5448099,-0.042882476,0.023847163,0.07025495,-0.52301496,-0.29482073,-0.12036081,-0.21704465,0.18969072,0.11400431,-0.015367037,-0.24372788,0.010526695,-0.10635722,0.3228817,-0.014258832,0.21528187,0.29948118,0.053523064,-0.13478813,0.017791422,0.20246933,0.35604277,0.34537628,-0.006018433,-0.17900468,-0.41708547,-0.35070354,0.17946656,-0.23579957,0.18586282,-0.026724469,-0.097480156,0.9374759,0.2292654,1.0972703,0.055850193,-0.42483205,0.10658968,0.7391975,-0.15079157,-0.29955018,-0.4043431,0.9185634,0.5864038,0.009913033,0.12647371,-0.384079,-0.08212338,0.5281581,-0.42782447,-0.10944981,-0.029290676,-0.5765593,-0.49462014,0.1653778,0.0737,0.21434173,-0.16098215,-0.22064139,0.3054108,0.12197124,0.5154324,-0.7054595,-0.355384,0.11290507,0.32858542,-0.2135647,0.17420115,-0.35162264,0.46753997,-1.0724492,0.14297295,-0.51496065,0.055890653,-0.2163897,-0.43070403,0.13141425,-0.016658036,0.25055254,-0.18140365,-0.39613226,0.17898908,0.41709587,0.12935513,0.15152043,0.66082245,-0.27287358,-0.03348719,0.10939825,0.64191127,1.264166,-0.36504412,-0.17154975,0.31177014,-0.5224948,-0.8091942,0.47214982,-0.6694669,0.10519979,-0.21447836,-0.33970648,-0.27295563,0.27690652,0.12642747,-0.015202809,0.07326296,-0.5304049,-0.047785375,0.25703815,-0.31705052,-0.23184417,-0.35627058,0.3797364,0.9054295,-0.2141936,-0.39007196,-0.0019793361,0.388864,-0.34185502,-0.68570477,0.084313154,-0.087449655,0.3679357,-0.023907585,-0.3132263,0.072922155,0.17741786,-0.6003341,0.15636645,0.06498968,-0.23638101,0.095245406,-0.22276206,0.070566505,0.7751831,-0.28424472,-0.24349967,-0.4774042,-0.47253326,-0.65824723,-0.3045793,0.35914847,0.06496479,0.016100137,-0.4901928,0.18237859,-0.21084954,0.033199634,0.002491615,-0.27056918,0.2197071,-0.08547816,0.5189963,-0.33221123,-1.0287724,0.29268712,-0.027855776,-0.00990934,-0.68022823,0.505403,-0.28571603,0.81329197,0.010256538,-0.18481177,0.033337984,-0.5146565,0.25559482,-0.28205326,-0.12039859,-0.82248515,0.3026322 +199,0.46491584,-0.26387227,-0.5943875,-0.1324882,-0.009291193,0.26885563,-0.19582209,0.6754731,0.19532333,-0.4154107,-0.16083105,-0.02774237,-0.02621301,0.42329553,-0.074600495,-0.44269738,0.07428326,0.21202967,-0.42337567,0.5410641,-0.34866124,0.28953594,-0.24439968,0.45176336,0.08490147,0.23783164,-0.007229815,-0.067302145,-0.35359457,-0.018848602,0.08754309,0.346781,-0.34815952,0.15853642,-0.24181667,-0.29170713,-0.037863415,-0.36393553,-0.4816885,-0.69715816,0.23496887,-0.77293617,0.54450804,-0.068589166,-0.2599357,0.28067306,0.0010358521,0.2312911,-0.35091776,0.057896823,0.16543306,-0.14669214,-0.05651616,-0.26758903,-0.21412008,-0.5631587,-0.51199704,-0.04565962,-0.38340807,-0.018857727,-0.14649351,0.02134817,-0.23639716,-0.07209699,0.008003141,0.28538018,-0.5376884,-0.014542499,0.18414687,-0.10167067,0.047827933,-0.6358078,-0.26608944,-0.19508867,0.47955894,-0.14513266,-0.14293459,0.31946972,0.20760158,0.52814627,-0.23792887,-0.0826332,-0.4376189,0.008623004,0.10565543,0.5432071,-0.20525517,-0.6155882,-0.029749239,-0.07475984,0.34907538,-0.03907768,0.13073634,-0.028090715,-0.10492623,-0.024873082,-0.13910086,0.2672186,0.46991253,-0.22483368,-0.2106043,0.42351967,0.54828054,0.27638873,-0.2325566,-0.07708477,0.036797386,-0.49123505,-0.12397295,0.0046821237,-0.21950212,0.48420194,-0.13410859,0.20344687,0.58958375,-0.09069722,0.042824812,0.080249615,0.21039067,0.02897951,0.0048030443,-0.43703756,0.20825884,-0.26386783,0.03309395,-0.09428506,0.42150787,0.2931622,-0.5847369,0.35136825,-0.43365064,0.023790106,-0.063449465,0.4285898,0.68425554,0.4690611,0.24378999,0.5856897,-0.24760342,0.081857644,0.11521666,-0.12929474,0.12976143,-0.3492956,-0.11612252,-0.55213493,0.23750904,0.026639441,-0.13133316,0.25915083,0.49783066,-0.4622015,-0.17916194,0.1850165,0.8134985,-0.23597951,-0.0025753889,0.66257423,0.91400397,0.85290784,-0.05147744,1.1171032,0.30410329,-0.44734675,0.18732524,-0.26249197,-0.84763306,0.24068686,0.3055305,-0.44745424,0.46495348,0.13026802,0.023629993,0.38845733,-0.4741277,0.11058475,-0.11629324,-0.025115345,0.16628316,-0.18459046,-0.43794551,-0.25787783,-0.14394067,-0.04816827,0.18378465,0.37362668,-0.19951646,0.4371455,-0.05697107,1.6296198,0.027163556,-0.0064496747,-0.029044759,0.61248934,0.2186456,-0.040766664,-0.09215163,0.49562666,0.39375976,-0.014630641,-0.5274291,0.14762399,-0.28056246,-0.43653926,-0.2345482,-0.30158225,-0.12510881,0.031478617,-0.42502993,-0.11276227,0.01000739,-0.09827906,0.31951275,-2.5883586,-0.1663163,-0.06668461,0.49028298,-0.2505565,-0.26671687,-0.41356444,-0.37216622,0.37621522,0.26166287,0.5077091,-0.6086043,0.33259943,0.30255857,-0.52704275,-0.0773594,-0.45579964,-0.120025806,-0.028987663,0.28586024,-0.04513421,-0.04596289,0.28777042,0.2562264,0.38554,-0.05607484,0.12542579,0.33071646,0.42650145,0.11771564,0.31062528,-0.13392825,0.6449965,-0.3984315,-0.15555862,0.26191905,-0.5713468,0.3240829,-0.10328513,0.1296154,0.4713869,-0.34503683,-0.88996345,-0.5302912,0.11895909,1.1909479,-0.19885087,-0.44051626,0.13613942,-0.6433183,-0.35001746,-0.14166358,0.4268538,-0.22638574,-0.12904878,-0.8747974,-0.11905048,0.021959549,0.16772954,-0.0050140065,0.10458553,-0.3943608,0.63493097,0.035131812,0.5469869,0.27448395,0.097346716,-0.20551959,-0.3869714,0.0066252947,0.72522694,0.33543512,0.19893281,-0.19299293,-0.10161585,-0.4044604,0.08613702,0.0588784,0.5333197,0.44905934,-0.10897745,0.06524153,0.11281692,-1.7738768e-05,0.1466625,-0.23374823,-0.2528918,-0.16989031,0.2591359,0.49994633,0.61284363,-0.29651445,0.36943313,-0.07965156,0.16080485,-0.16982944,-0.46854264,0.5642022,0.9496235,-0.25069514,-0.21719302,0.47857258,0.52802044,-0.393845,0.39061055,-0.63559216,-0.3829264,0.4027892,-0.13921222,-0.3223862,0.24078205,-0.2964594,0.3497743,-0.9218315,0.25768453,-0.2044553,-0.28165323,-0.7506889,-0.036969747,-2.727497,-0.018878493,-0.0188378,-0.22060879,-0.18849584,-0.05048575,0.21094558,-0.6955843,-0.6540341,0.23073049,0.026147025,0.6768132,-0.011560676,0.090604134,-0.32048368,-0.42427894,-0.2549384,0.13969354,0.14529872,0.45228037,0.08895772,-0.6602174,-0.13218214,-0.18311681,-0.20345218,-0.009054084,-0.6137822,-0.35836378,-0.14007692,-0.545108,-0.10799122,0.58532655,-0.34071556,-0.009314626,-0.15837385,0.08283321,-0.2654074,0.2128112,0.007490603,0.12945722,0.05649985,-0.21976995,0.22643828,-0.23812404,0.25823554,0.058368046,0.19978602,0.37119165,-0.037922043,0.051812414,0.5665821,0.75424325,-0.106438234,0.8374669,0.6066104,-0.16057634,0.30158493,-0.3625256,-0.23879221,-0.4239032,-0.35312313,0.075409435,-0.4499288,-0.57422626,-0.040546205,-0.54440904,-0.8433854,0.45001987,-0.1332618,0.04133847,0.12191306,0.28245038,0.54818565,-0.26862794,0.1271592,-0.017632319,-0.19396482,-0.47232026,-0.270135,-0.5175223,-0.38161707,0.15069933,1.0927011,-0.2180274,0.13399467,0.08718952,-0.3978042,0.06074788,0.25801796,-0.03381902,0.045514245,0.46098915,-0.042791512,-0.54158866,0.39248544,-0.14071216,-0.15505879,-0.5529033,-0.013985889,0.48956046,-0.6843578,0.6298734,0.41030452,-0.21947196,-0.18375613,-0.45180973,-0.27640226,-0.03819593,-0.14495595,0.26291475,0.22381942,-0.62089187,0.36717063,0.31951553,-0.4876752,-0.60470253,0.5488407,-0.104019694,-0.20685025,-0.04287937,0.27855903,0.09875362,0.027988832,-0.39874297,0.25251547,-0.43322897,0.25482622,0.1953499,-0.12532695,0.31599972,-0.21794124,-0.041389603,-0.87360615,0.03120814,-0.42443737,-0.23915784,0.46487015,0.11890153,0.2964439,-0.009534265,0.18324487,0.32492462,-0.5611528,0.08781604,-0.11224194,-0.29967305,0.35560015,0.25723884,0.5218215,-0.40230703,0.53298736,-0.018430991,-0.12634145,0.02939145,0.05873084,0.35480767,0.1716814,0.49057722,0.13769491,-0.27590814,0.13859177,0.99093294,0.301256,0.31369233,0.12069322,-0.31109452,0.21471667,0.11633048,0.04129162,-0.10875385,-0.36986503,-0.059222274,-0.18536527,0.19210719,0.32941467,0.13595863,0.29263785,-0.16657117,-0.29512623,0.035561185,0.2384918,0.15655454,-1.173424,0.35213643,0.23210709,0.8509796,0.2473499,0.12409478,0.119406715,0.61182433,-0.14999774,0.10377876,0.4226036,-0.24697253,-0.57781976,0.47946948,-0.57490236,0.46863458,0.018880803,0.034841266,0.13480033,-0.07200081,0.50195426,0.7242924,-0.097187154,0.08066661,0.23496795,-0.4082702,0.14975119,-0.3128149,0.012805308,-0.6186075,-0.15272783,0.593468,0.4953876,0.39017388,-0.1991676,0.07573136,0.048785966,-0.13692448,0.09362228,0.21233353,0.24911138,-0.07676879,-0.73143244,-0.02154897,0.4336789,0.089172676,0.08979108,0.06852107,-0.29799607,0.42601183,-0.18679908,0.16620779,-0.113221996,-0.65909576,-0.035882678,-0.42739138,-0.4220498,0.59587413,0.1058223,0.31671312,0.3096512,0.04683721,-0.29287115,0.5394308,-0.07900826,0.79805326,-0.082779594,-0.23514886,-0.39575619,0.16729619,0.25922728,-0.18423994,0.0509293,-0.2761405,0.11824023,-0.2862821,0.49597073,-0.027932491,-0.07272524,-0.084531255,-0.19427915,0.1251141,0.47558424,-0.20956247,-0.14902769,-0.105922535,-0.031325746,-0.39578262,-0.25660688,-0.22076099,0.19415657,0.27941033,0.0031303423,-0.2518978,-0.09330112,-0.021986725,0.505554,-0.0150604835,0.3128717,0.5669641,0.12655197,-0.18407238,-0.08592953,0.229527,0.47712436,-0.029328793,-0.12183307,-0.51812786,-0.54816383,-0.41098848,0.25890106,-0.19562718,0.36002955,0.14407666,-0.25055107,0.5490484,-0.16412298,1.0118576,0.008994303,-0.30648497,0.08911628,0.61605495,-0.04856362,-0.036709916,-0.33381197,0.8257455,0.49873605,-0.044193126,-0.057952147,-0.32905215,-0.015869392,0.084318556,-0.31139836,-0.17789862,-0.01053094,-0.64721256,-0.2933147,0.24868998,0.28692552,0.34846362,-0.16625486,0.24496253,0.11350836,0.16700263,0.10793022,-0.47637388,-0.33270547,0.3228526,0.21715851,-0.015263162,0.010568644,-0.34826496,0.29754183,-0.36547777,-0.055568986,-0.2630345,0.11285133,-0.20859398,-0.46232897,0.19491151,0.231596,0.23043452,-0.45435596,-0.26152816,-0.23330066,0.4326949,0.12561947,0.17054805,0.29151502,-0.20731105,0.05318997,0.12987503,0.54651994,0.7880225,-0.29510683,0.018265655,0.462236,-0.39698124,-0.6786703,0.36952275,-0.4422247,0.39141324,-0.18169191,-0.25926343,-0.8466255,0.37394568,0.24673684,-0.01718338,-0.117894635,-0.51852053,-0.19706705,0.2483465,-0.33758405,-0.20296003,-0.38640496,-0.075968444,0.545252,-0.28747112,-0.31006712,0.1239293,0.30634513,-0.2834815,-0.46124277,-0.05565656,-0.4740942,0.28781128,0.16634242,-0.39349514,-0.18628049,-0.012572874,-0.44538096,0.32826814,0.26849315,-0.4322752,-0.0008475355,-0.48119733,-0.01189171,0.8693952,-0.27316535,0.22592047,-0.36726674,-0.30690327,-0.98427063,-0.30073896,0.5612298,0.19570832,-0.100168966,-0.7238235,0.14792879,-0.124268614,-0.24358042,-0.15155533,-0.2987865,0.42429218,0.0844928,0.25099865,-0.04515499,-0.7280547,0.09397851,0.09062575,-0.330543,-0.48147553,0.43285164,-0.10933652,1.1178528,0.013911052,0.17896639,0.35029736,-0.4304438,-0.19420566,-0.16928266,0.008798874,-0.53970796,0.057305403 +200,0.3726441,-0.17151119,-0.5182727,-0.13327213,-0.14324372,0.2238739,-0.16754754,0.5107438,0.18689916,-0.3892855,0.02261556,-0.050778843,0.034501616,0.3121921,-0.07762908,-0.23605089,-0.02094688,0.16219565,-0.52444303,0.3487952,-0.4921238,0.13547535,-0.18081352,0.38043037,0.0974314,0.19782718,0.112995654,0.041938182,-0.064032935,-0.07816785,0.27463153,0.19499446,-0.5270094,0.3362802,-0.052604057,-0.2612072,-0.052129947,-0.43128055,-0.5284465,-0.64410174,0.31389925,-0.7287706,0.508382,-0.01123184,-0.2767952,0.27768296,0.027728982,0.2311619,-0.32409707,-0.0780574,0.1712915,-0.2736011,-0.1514652,-0.2815461,-0.016835455,-0.20624126,-0.5943893,-0.05521275,-0.33173224,-0.05346175,-0.23771732,0.10907204,-0.3233256,0.10623012,-0.1948647,0.4655309,-0.3492573,-0.055012815,0.24520466,-0.19082455,0.12961608,-0.4496299,-0.049294338,-0.196647,0.017649932,-0.18947425,-0.29642504,0.37300667,0.12203864,0.41218537,-0.20206709,-0.1635007,-0.24952078,-0.042448215,0.08756633,0.45999032,-0.11216078,-0.19781446,-0.11762284,-0.17139158,0.019470979,-0.008613094,0.17324229,-0.19017725,-0.11083508,0.1090893,-0.097130425,0.17266324,0.5643528,-0.22512244,-0.16517867,0.3738308,0.552198,0.033416055,-0.0973537,0.00817554,0.04555458,-0.46753058,-0.28507236,0.033159576,-0.12374822,0.35736874,-0.17145315,0.23984274,0.5710407,-0.21881437,-0.17308998,0.16144091,0.13703902,-0.0720136,-0.32777375,-0.42915946,0.38426492,-0.42834812,0.04739081,-0.1495047,0.66133195,0.081142016,-0.66240793,0.46558207,-0.44349608,0.08100996,-0.09210883,0.60945374,0.74910945,0.57205445,0.22250347,0.71437186,-0.45063022,0.02864934,-0.098236196,-0.38660768,0.33090484,-0.30974045,-0.13183992,-0.39329872,0.013281957,0.09593535,-0.21627907,0.11233711,0.28189096,-0.450242,-0.07124602,0.20329401,0.5923065,-0.30848652,-0.13567463,0.5760165,1.0564307,0.92022055,0.14077258,1.0905414,0.23044392,-0.22373997,0.10357443,-0.09898237,-1.0465608,0.31601524,0.18230176,0.019029776,0.35975134,0.17785147,-0.13754386,0.45583567,-0.4966171,-0.015693905,0.005933392,0.20466708,-0.078811914,-0.10256858,-0.40744057,-0.34559923,-0.002924635,-0.03666823,0.060988765,0.30386573,-0.27573013,0.46037135,0.0538583,1.5318228,-0.060083143,0.16757338,0.08192532,0.4409916,0.14857663,-0.3202097,-0.15822144,0.32412973,0.37633255,0.14020576,-0.60683364,0.262944,-0.051809836,-0.5102446,-0.14803882,-0.39314547,0.12370028,-0.10366828,-0.38911262,-0.21202901,-0.089480385,-0.33334628,0.3025406,-2.836242,-0.075730324,0.025597665,0.32924142,-0.18583916,-0.20743744,-0.14719701,-0.38683745,0.19834258,0.4818265,0.40741497,-0.58919346,0.23240215,0.38053158,-0.47158653,0.011340334,-0.6121155,-0.09028225,-0.19400693,0.21607488,0.12939404,-0.0003833294,-0.029430874,0.1781228,0.4462308,-0.11602438,0.06085195,0.38228127,0.30054656,0.039930362,0.28691152,-0.0725912,0.53218216,-0.61600435,-0.2836356,0.31904832,-0.46010864,0.09702776,-0.077669874,0.0458414,0.49222252,-0.38708112,-0.8044881,-0.50880843,0.013879408,1.2945961,-0.36731094,-0.30736235,0.20295754,-0.37947407,-0.31081435,-0.04363676,0.5226663,-0.20531233,-0.09397089,-0.8509186,-0.022702677,-0.10349063,0.3951508,-0.11538364,-0.0008722971,-0.53165305,0.41003895,-0.010920745,0.81886166,0.23490904,0.14598091,-0.32298335,-0.40051225,0.15132436,0.76964927,0.3719088,0.21912184,-0.26257125,-0.11017649,-0.14991586,0.008441516,0.2148123,0.3446153,0.63166046,-0.046596702,0.24343124,0.37048146,-0.12773013,-0.036725935,-0.089969665,-0.2677607,-0.070320375,0.004401775,0.590546,0.607017,-0.089762464,0.17700025,0.0056025307,0.36242217,-0.23832792,-0.46279222,0.5101046,0.7475058,-0.111542635,-0.3227833,0.5434684,0.5626954,-0.38614804,0.54799616,-0.62475944,-0.31961742,0.2913066,-0.122997314,-0.32358477,0.09913222,-0.32516295,0.35561812,-0.90163004,0.25993913,-0.24288994,-0.5677554,-0.7146746,-0.13524573,-3.2347865,0.10276249,-0.19060372,-0.15893005,-0.021150347,-0.07756678,0.34565622,-0.5710799,-0.52443445,0.085827634,0.10887871,0.8310897,-0.08098748,-0.112217404,-0.25253648,-0.16570446,-0.323263,0.12016327,0.27138415,0.27361774,0.07822063,-0.5372154,-0.077480234,-0.32573128,-0.3936334,-0.054896362,-0.49517906,-0.35275564,-0.16875388,-0.5514552,-0.4159385,0.64388555,-0.23345232,0.07043249,-0.19528112,-0.009139457,-0.048906095,0.31519955,-0.04315717,0.1507611,0.095960654,-0.16642527,-0.07583752,-0.30556858,0.3155871,-0.048802756,0.28368133,0.47246465,-0.30287963,0.06982422,0.6116602,0.6570541,-0.06666609,0.82095516,0.5330126,-0.07501338,0.33797246,-0.32511488,-0.23903401,-0.3619255,-0.23571716,0.075784765,-0.42567843,-0.36526474,0.049525294,-0.35702318,-0.88729465,0.5185107,-0.018124921,0.108057186,0.046164073,0.07324826,0.37110838,-0.11014705,-0.12136122,-0.064014524,-0.15826939,-0.35331306,-0.29322782,-0.67364055,-0.49501926,-0.00016438166,1.1941863,-0.12796408,0.080672495,0.076177225,-0.16830818,0.09784448,0.12144636,0.012385603,0.2880712,0.4529986,-0.024701126,-0.45889595,0.47973064,-0.2833505,-0.112400025,-0.5585042,0.23306829,0.59719884,-0.6917204,0.557376,0.39654872,0.12750895,-0.20379387,-0.5613647,-0.1729478,-0.014932469,-0.10327251,0.5057782,0.22495387,-1.0477222,0.48589543,0.32949898,-0.39328244,-0.61026627,0.5335254,-0.087853715,-0.02234122,-0.08298257,0.3358552,-0.1887921,0.09751935,-0.09347508,0.24171104,-0.46525213,0.17687996,0.1688428,0.045013208,0.44665697,-0.2771527,0.052642304,-0.52442765,0.00087176956,-0.53031844,-0.22057372,0.2312691,-0.07825244,0.087862976,0.23239203,0.03508199,0.46997222,-0.2439401,0.04416548,-0.17097773,-0.4016618,0.5264511,0.48380718,0.37976927,-0.44145352,0.62782556,0.09691906,-0.025515573,-0.19748713,0.0701404,0.43205163,0.15477346,0.41767925,0.033745836,-0.10270805,0.28766283,0.77538884,0.20200102,0.44820797,-0.0046234867,-0.15915976,0.13064735,0.11045746,0.28826982,-0.022225956,-0.46556416,0.050362747,-0.28663474,0.29187208,0.40328518,0.11707792,0.4802415,-0.12177669,-0.32648626,0.08093975,0.07328283,-0.1385534,-1.2233694,0.46576443,0.17893918,0.77162266,0.41407904,0.067015804,0.0073883096,0.6806698,-0.22725226,0.1556334,0.25746724,-0.10336917,-0.52696764,0.61630315,-0.7230941,0.5498077,0.03373652,-0.14609787,0.00046030284,-0.099571295,0.5719113,0.67874146,-0.026587296,0.18201897,0.07592298,-0.31630102,0.33118942,-0.4054665,0.21408159,-0.505606,-0.2533388,0.6042717,0.37790257,0.4283064,-0.2681661,0.01227893,0.09743532,-0.11888276,0.15416647,0.033178087,0.050937857,-0.039289407,-0.7038315,-0.2744699,0.595341,0.032956645,0.13435875,0.017484797,-0.22476499,0.2868561,-0.12822504,0.039588485,-0.11238091,-0.63948846,0.028944766,-0.233671,-0.42441007,0.4249673,-0.23992391,0.23334795,0.28928992,0.09307729,-0.5106239,0.25424227,0.13091694,0.8129888,-0.105032995,-0.25232732,-0.28767484,0.17756388,0.2911369,-0.18444696,-0.081851214,-0.42757168,0.0054445346,-0.43017185,0.43796036,-0.16459955,-0.31242657,0.17293987,-0.0044781636,0.08015167,0.54647607,-0.05894263,-0.14211035,-0.10049095,-0.061451748,-0.3313085,-0.17692414,-0.29823142,0.2953434,0.12006271,0.09506766,-0.09679854,-0.042403024,-0.0012958527,0.361508,0.05299101,0.2568664,0.40417945,-0.03370153,-0.38200948,-0.030256223,0.019853437,0.57198906,-0.017038401,-0.17454402,-0.40909514,-0.36715558,-0.18817274,0.31486398,-0.07088666,0.39165848,0.17157339,-0.34150913,0.6582001,-0.15335639,0.9052705,-0.022743728,-0.35304424,0.0065261843,0.6242281,0.052306734,-0.073292926,-0.38830456,0.7977367,0.5789374,-0.21179336,-0.14660914,-0.34217918,-0.013867168,0.12482335,-0.22771831,-0.42488477,-0.07211065,-0.76448286,-0.015776088,0.19425812,0.33519128,0.19828911,-0.08674763,0.11441481,0.268363,0.026579281,0.04232967,-0.32439488,0.01977539,0.42490742,0.22207178,0.022478346,0.0970551,-0.4699068,0.32628676,-0.7093706,-0.017617736,-0.16354424,0.1414911,-0.09002273,-0.41549173,0.14057526,0.14916559,0.21552709,-0.22765426,-0.24948348,-0.10757203,0.48069173,0.12120442,0.23656917,0.78491217,-0.21505333,0.07874991,0.14960292,0.3196956,0.7161857,-0.21439253,-0.015687283,0.17103313,-0.33952814,-0.7743724,0.3829206,-0.19946247,0.36932942,-0.13275565,-0.21947856,-0.6040751,0.33682522,0.23678122,-0.11383231,0.13833876,-0.52911854,-0.12092878,0.16490409,-0.31206733,-0.30097902,-0.40559337,0.016068827,0.49842983,-0.25759238,-0.21067467,0.21129629,0.3463221,-0.18340452,-0.41326633,-0.024877954,-0.43009442,0.17635709,0.020182414,-0.38263687,-0.0053860624,0.04603003,-0.39470997,0.32499662,0.15228884,-0.23994742,0.024234716,-0.34902012,0.015447666,0.7335558,-0.20920998,0.018876815,-0.58549964,-0.5183055,-1.0088058,-0.25739333,0.45338383,0.18985398,-0.004201625,-0.65339446,-0.0010436655,-0.060168456,-0.13791877,-0.18703532,-0.3694291,0.40872812,0.049793504,0.21906129,0.06426519,-0.63597065,0.111225635,0.13050619,-0.12693511,-0.43164775,0.4594559,-0.1308501,0.82157606,0.16840567,0.21942666,0.23954262,-0.47645637,0.115916215,-0.23083371,-0.16738221,-0.50595146,0.05889022 +201,0.34002832,-0.1392932,-0.42897287,-0.24253611,-0.40378135,0.15094589,-0.15002786,0.2848047,0.198747,-0.09914551,-0.04774139,0.01700058,-0.06240758,0.4284896,-0.11652174,-0.59247553,0.09475579,0.16250962,-0.61519855,0.50189894,-0.5543615,0.3032395,-0.005392627,0.44652423,0.08474439,0.29314545,0.11692783,-0.08273004,-0.052106276,0.08367764,-0.26393604,0.49256524,-0.6387583,0.25791246,-0.039279032,-0.2504531,-0.022499848,-0.29231647,-0.26573756,-0.79704463,0.2337329,-0.76393646,0.602325,-0.22987062,-0.5652226,0.030224482,0.022091929,0.2852361,-0.48071155,0.05167299,0.17262223,-0.371787,-0.04083654,0.032046665,-0.15921251,-0.49521667,-0.58561385,-0.0026940028,-0.6574665,-0.06017851,-0.35178947,0.29247797,-0.33662325,-0.11827043,-0.1550691,0.38840428,-0.47105303,0.046522,0.11302395,-0.27977222,-0.13361889,-0.44750765,-0.07976561,-0.22935,0.35206792,0.1786918,-0.3676224,0.2613209,0.46809974,0.61122984,0.18718967,-0.29340553,-0.14159958,-0.07961673,-0.006776615,0.43392196,-0.06942242,-0.2945679,-0.35657215,-0.07321234,0.42355248,0.13543685,0.0170708,-0.32287508,-0.0276017,0.10140934,-0.16938716,0.20148224,0.45715252,-0.503959,-0.16982664,0.4766194,0.38019383,0.13969988,-0.20806971,0.2506737,-0.0523656,-0.563315,-0.2514656,0.025221338,-0.27629024,0.70000154,-0.30945188,0.15789996,0.8108237,-0.03543157,-0.07050384,-0.07718197,0.0039646546,-0.15345034,-0.18545885,-0.121776976,0.13563381,-0.39298946,0.06730875,-0.15108235,0.81185913,0.15034844,-0.73134726,0.29676488,-0.40466613,0.14371163,-0.1634151,0.70484746,0.8889398,0.52743214,0.31518036,0.9203299,-0.50011134,0.018341323,-0.00774229,-0.4157063,0.17805439,-0.1215124,-0.13058858,-0.48004895,0.14700013,0.019075366,-0.12932527,0.014541225,0.32119182,-0.5555722,-0.015446325,0.038929027,0.5927713,-0.42318204,-0.1889706,0.8810953,0.8570318,0.93038756,0.09154347,1.2821059,0.51023704,0.009048571,-0.027912179,-0.24367118,-0.58461285,0.15421449,0.28220126,-0.20858397,0.39877573,0.09894207,0.03096352,0.60426563,-0.37563723,-0.14678413,-0.09949671,0.26168758,-0.070340775,-0.03986759,-0.40729707,-0.22294803,0.21085761,0.14284918,0.030346008,0.30940124,-0.20928647,0.42983335,0.15514,1.1790805,0.112851284,-0.02320596,0.044809863,0.33477393,0.26442215,-0.14664268,-0.1227137,0.4002985,0.5293228,-0.09125962,-0.52086484,0.042344775,-0.223065,-0.3910328,-0.15243064,-0.37121093,-0.049933262,-0.10832238,-0.5270328,-0.24658367,0.07516514,-0.15142298,0.5167255,-2.5186472,-0.24884063,-0.13463023,0.30257624,-0.19048828,-0.19738674,-0.17866246,-0.4845692,0.10192595,0.4288645,0.36038944,-0.6918317,0.41550466,0.35598847,-0.3176255,-0.081647426,-0.75617915,-0.065709084,-0.039456986,0.5223692,-0.026876176,-0.14687033,-0.15278263,0.16021992,0.7222215,0.038663857,0.050908804,0.18351936,0.37147376,0.060717393,0.42291757,0.19504073,0.637355,-0.028478865,-0.23733774,0.35017195,-0.26787427,0.41990608,-0.0770703,0.116286755,0.46987706,-0.43217182,-0.7394491,-0.569437,-0.20442706,1.3640654,-0.5329086,-0.38418093,0.2887047,-0.22288005,-0.16000646,0.044579674,0.36094,-0.15051451,-0.068523616,-0.7655427,0.008145722,0.008356476,0.27250162,-0.13620834,0.13534984,-0.23876543,0.633296,-0.25418612,0.51054484,0.29792848,0.1957547,-0.06967713,-0.61290103,-0.005543701,0.8403041,0.51366794,0.060867593,-0.23603347,-0.28053677,-0.16735989,-0.16714849,0.09098841,0.4517349,0.6569134,-0.04017423,0.16840544,0.45220295,-0.19561876,0.05824953,-0.18763734,-0.28218955,0.029878315,0.26585826,0.512221,0.6803256,-0.22313112,0.39501008,-0.15586825,0.1483741,-0.041828547,-0.6124095,0.62704957,0.90984476,-0.31886086,-0.121783264,0.62901294,0.42274824,-0.29225084,0.4304336,-0.6046448,-0.24153982,0.6379106,-0.07484512,-0.39961192,0.08738567,-0.34071657,0.17500976,-0.9394372,0.3440452,0.051932976,-0.5725339,-0.5925649,-0.06498747,-3.8833833,0.010764897,-0.26850697,0.051952165,-0.058711912,-0.30560634,0.43701643,-0.6634682,-0.5848242,0.03717717,0.00647736,0.4252436,-0.18537733,0.16797858,-0.30969638,-0.24604629,-0.17019922,0.15025489,0.24101223,0.26608822,0.0651612,-0.50110435,0.15904805,-0.3420754,-0.52134115,-0.079203494,-0.5625997,-0.4745157,-0.084694885,-0.5308325,-0.20893723,0.7003094,-0.36308247,-0.02515821,-0.371442,0.15734854,-0.1930693,0.37280923,0.12373303,0.084829465,0.1449687,0.0029751768,-0.046394467,-0.29957053,0.21688122,-0.019942397,0.22568491,0.36033297,-0.11838419,0.2020842,0.719881,0.45536405,-0.11524274,0.8309296,0.45341274,-0.16043304,0.28259298,-0.24689484,-0.31193033,-0.77242416,-0.40206355,-0.28194237,-0.551783,-0.42091924,-0.05845565,-0.42678085,-1.0006865,0.5510448,-0.06494212,0.25516808,-0.15471862,0.29539993,0.48339263,-0.12261384,0.0176269,-0.11968951,-0.3102436,-0.5410472,-0.37180355,-0.68033767,-0.6083852,0.21509366,1.2451417,-0.19393124,-0.06701117,0.00439371,-0.42294532,0.014004576,0.033395566,0.23200445,0.08078794,0.48875496,-0.22472946,-0.8864314,0.23746487,-0.17897364,0.049006555,-0.63072246,0.06019962,0.7435261,-0.7304694,0.4786031,0.34290984,0.23360272,0.18392125,-0.6396138,-0.4348802,0.0040711025,-0.16719766,0.72799367,0.22113404,-0.6649406,0.5632085,0.07613609,-0.12985301,-0.70649713,0.46097633,-0.05636588,-0.1333215,0.21153472,0.31995738,0.031489596,-0.108094834,-0.15162244,0.07792072,-0.52443844,0.3847008,0.37099516,-0.07735089,0.38924757,-0.08458675,-0.19152944,-0.6740936,-0.30900887,-0.55661356,-0.22772972,0.037149955,0.039546967,0.1105519,-0.08749641,-0.05749213,0.4851773,-0.30382022,0.1561416,-0.007638097,-0.16385062,0.35618898,0.66137415,0.32784325,-0.50513965,0.56260663,0.27846017,0.052120566,-0.11479316,0.007914773,0.5243522,0.26334333,0.30502284,-0.124342285,-0.12282649,0.21094981,0.70959115,0.21351096,0.43882683,0.10994413,-0.21939524,0.37811512,0.18649617,0.20543604,-0.07160066,-0.2763572,-0.068047866,-0.12818381,0.2678054,0.46306664,0.24620104,0.30064493,0.00546901,-0.20258318,0.18550065,-0.05016367,0.08192292,-1.3152988,0.25184846,0.36648834,0.693294,0.45095855,0.03757026,-0.102355815,0.57751745,-0.39367524,0.04887594,0.42385143,0.0873599,-0.42656344,0.52848667,-0.5651903,0.5217524,-0.15101852,0.021967385,0.15624167,0.31762776,0.3160921,0.9459451,-0.10095168,0.08903592,0.029928977,-0.18964672,0.11612126,-0.31214207,0.025972184,-0.57704353,-0.30175447,0.59619236,0.3945462,0.30820045,-0.45336875,-0.09423647,0.054958977,-0.18059883,0.089806125,-0.1317596,0.039902013,-0.2124894,-0.54202086,-0.37554872,0.5836841,-0.022997973,-0.029997746,0.1559388,-0.39746544,0.23514776,-0.273427,-0.086592674,-0.054980494,-0.5562576,-0.16641569,-0.14428613,-0.502987,0.42458093,-0.28022015,0.23684701,0.15000549,-0.0049378444,-0.37100774,0.19487709,-0.01673859,0.85642815,0.075561814,-0.15884997,-0.31846383,0.08395639,0.4272942,-0.23907568,-0.12904571,-0.32514232,0.11389828,-0.41873607,0.3218017,-0.23143317,-0.23265523,-0.10665293,-0.18346387,-0.028250678,0.29954365,-0.13913544,-0.1672726,0.16382675,-0.007349523,-0.37696606,-0.070691325,-0.429689,0.27857724,0.013134222,0.025699567,-0.07819293,-0.16643168,-0.1655612,0.3539557,0.07185138,0.07638526,0.25685638,-0.19614048,-0.33204868,-0.051939677,0.017220037,0.446123,0.048720397,-0.16452986,-0.42103443,-0.4327608,-0.24038957,0.13187037,-0.16293167,0.21650632,0.036298558,-0.4747804,0.8263846,0.24132474,1.3243164,0.020367486,-0.40419868,0.08505821,0.58397925,0.15573867,0.180935,-0.21148485,0.8359917,0.5830282,-0.17439337,-0.13418867,-0.5420742,-0.28326264,0.25438398,-0.19615486,-0.249729,-0.17386644,-0.69904065,-0.19955005,0.19339949,0.1506185,0.19544369,0.06563297,-0.116129614,0.08890544,0.1537339,0.5116994,-0.41736782,-0.12005896,0.38102835,0.25919905,0.10459503,0.23546474,-0.36433893,0.41991657,-0.6163771,0.09956912,-0.44398087,0.2339236,-0.13898917,-0.3351822,0.23208074,0.0050174673,0.26442784,-0.35237905,-0.31096682,-0.28253847,0.7419484,0.055146847,0.1941374,0.7523106,-0.31435424,-0.10412304,0.009261757,0.46844706,1.1927189,0.007787147,0.12330667,0.26594955,-0.22773221,-0.6473295,0.17761421,-0.34979928,0.13742238,-0.04967792,-0.37877777,-0.445343,0.29886627,0.08740654,0.021404512,0.14106373,-0.52967876,-0.08834076,0.3811344,-0.100235544,-0.099943146,-0.19841106,0.32082793,0.73096883,-0.49753997,-0.43579394,0.011626538,0.354003,-0.17185721,-0.61976343,-0.058205914,-0.279185,0.35774645,0.20768921,-0.4308853,0.01787849,0.26825958,-0.35654557,0.07551685,0.452022,-0.23102671,0.21929434,-0.20993854,-0.011542678,1.0629791,0.033288237,0.20895842,-0.6041674,-0.44817537,-0.986754,-0.24250123,0.3021059,0.27112466,-0.13893233,-0.73494184,0.014847513,-0.12983283,-0.024543246,0.13996556,-0.64057136,0.59793186,0.2008147,0.44098964,0.025889253,-0.93036956,-0.0275268,0.11138198,-0.12644364,-0.4952509,0.6590238,-0.18536758,0.7276627,0.08313991,0.115825996,0.0037525257,-0.5624148,0.21566203,-0.41894636,-0.067666784,-0.6812068,0.067325346 +202,0.3845907,-0.15002479,-0.5846273,-0.099755354,-0.08405132,-0.0061599994,-0.19318818,0.43087515,0.31662184,-0.29973117,0.020559506,-0.13748139,0.1206242,0.20612635,-0.10407031,-0.35916385,-0.067698814,0.09041005,-0.3741984,0.37314007,-0.48781365,0.30407065,-0.27499124,0.44195923,-0.087867185,0.21848123,0.090277605,-0.009668619,-0.092737384,-0.2021198,-0.0036572367,0.55489266,-0.3388647,0.19671729,-0.0979255,-0.16058579,0.09768093,-0.31791252,-0.41854757,-0.73973477,0.2610613,-0.58996046,0.4271008,0.16314729,-0.39713907,0.32465193,-0.0065420866,0.0556711,-0.17359705,-0.14920011,0.109036796,-0.11787821,0.11790129,-0.33186772,-0.09352778,-0.21798158,-0.46910995,0.17666878,-0.44397402,-0.17834234,-0.22648795,0.25816408,-0.3014666,-0.1189862,-0.13811839,0.55796546,-0.40857553,0.16517843,0.032200914,-0.33520788,0.41471973,-0.59624904,-0.18703847,0.024191972,0.26202652,-0.12875462,-0.18322924,0.22531763,0.28710955,0.38318235,-0.1298425,-0.02941465,-0.48855993,-0.12564753,0.005824051,0.40446758,-0.16752765,-0.5756566,-0.07492224,-0.12007671,0.010473094,0.24238046,0.12330622,-0.28932348,-0.1531349,-0.08271102,-0.2267917,0.49730134,0.6684309,-0.3233037,-0.09141065,0.27141222,0.48718876,0.1514614,-0.08483434,-0.072327375,-0.081413664,-0.5145718,-0.14830853,-0.069107726,-0.033295013,0.51532024,-0.07511045,0.29637054,0.48764992,-0.16058327,-0.20029773,0.20365886,0.12315292,-0.0064489585,-0.2961944,-0.02191022,0.17103307,-0.3376048,-0.020281913,-0.106254734,0.76400566,0.10420894,-0.69319004,0.34972543,-0.39796835,0.053213276,-0.12306738,0.46296936,0.49682203,0.4316275,0.26446947,0.70617455,-0.47632688,0.040541884,-0.048439674,-0.36607963,0.18764591,-0.06657137,-0.06567466,-0.508043,-0.0004740272,-0.009971312,-0.044689536,0.14204866,0.26396042,-0.50722283,-0.09565858,0.14768398,0.7780948,-0.22130594,-0.043691523,0.6316823,1.0115092,0.8656082,0.0014734694,1.0136758,0.00533846,-0.093624644,0.1564481,-0.27328408,-0.70576465,0.378767,0.3026493,0.14958474,0.0010806577,-0.050970476,0.020798206,0.32672533,-0.2822811,-0.1458328,-0.23343717,0.5253579,0.17698726,-0.041103642,-0.31187847,-0.35741204,0.017983096,0.0062498366,0.08818994,0.2015529,-0.20842583,0.32210323,-0.004601347,1.3815424,-0.06589871,0.16383775,0.054604094,0.5753377,0.2453048,-0.10084821,-0.14153744,0.42973548,0.13821502,0.21254627,-0.4757273,0.15530518,-0.14600268,-0.5073873,-0.1259969,-0.2898293,0.09545041,0.05891887,-0.29595327,-0.16144119,-0.102517836,-0.22994652,0.5023562,-3.0427282,-0.16228516,-0.026808511,0.38710397,-0.17678332,-0.277911,-0.034553982,-0.44272646,0.4318849,0.35911328,0.49036306,-0.6082088,0.029593196,0.42599207,-0.46824458,-0.24461627,-0.42943484,0.035066824,-0.068182945,0.28960207,0.12755956,-0.03120892,-0.17264117,0.0011802657,0.42240334,-0.09777252,0.21422367,0.17576636,0.33975896,-0.1342679,0.36021686,-0.109444074,0.43866962,-0.29901975,-0.25263965,0.4349609,-0.36066133,0.094737865,-0.12873913,0.17002593,0.35939088,-0.53731257,-0.8049174,-0.57770497,-0.05594222,1.2159239,-0.00068260945,-0.62849224,0.32825264,-0.25777355,-0.22481905,-0.023097038,0.39069864,-0.04611667,-0.0795402,-0.6513239,0.080077566,-0.16220005,0.25901017,0.021488013,-0.13652565,-0.40299997,0.46544656,0.045242287,0.2859467,0.46572426,0.14765988,-0.41912636,-0.4550411,-0.03755153,0.6872519,0.46662214,0.12268489,-0.20415129,-0.17723583,-0.15567401,-0.1576594,0.1614538,0.5931727,0.5412177,-0.10725336,0.21671125,0.30346844,-0.06967149,0.058404956,-0.17861117,-0.20945907,-0.06633373,0.003692427,0.62284416,0.7013292,-0.081865855,0.37991238,0.025157783,0.41492304,-0.21596745,-0.5341553,0.5467081,0.8648862,-0.21178281,-0.33394352,0.5788776,0.34652737,-0.2593413,0.33317167,-0.49634793,-0.43375835,0.43139848,-0.32819453,-0.52641994,0.12742154,-0.26556793,0.00445781,-0.75069803,0.21065445,-0.39373937,-0.5875047,-0.4798806,-0.1696202,-3.4488046,0.20864047,-0.31561753,-0.12450551,-0.08917735,-0.048590787,0.06397451,-0.3708361,-0.45527297,0.13548765,0.2058631,0.55261093,-0.1307471,-0.0070516295,-0.23961695,-0.25650987,-0.2874209,0.12897363,0.14860909,0.3364245,0.014210181,-0.44606775,0.043381326,0.006248657,-0.5043644,0.13081492,-0.44340998,-0.45333877,-0.13220334,-0.59532815,-0.40922812,0.65680057,-0.13839242,-0.09794827,-0.1427624,0.044782422,0.0480046,0.27552322,0.030371632,0.14851639,0.02080764,-0.15826212,0.059433132,-0.3560736,0.38556284,-0.030825486,0.1781865,0.42925173,-0.055354066,0.08970533,0.49375677,0.6192915,-0.21215351,0.74088377,0.33343008,0.02540866,0.41944784,-0.27321145,-0.27829307,-0.3159139,-0.21408908,0.13376668,-0.47626057,-0.288645,-0.14292218,-0.33773178,-0.6001415,0.7352619,0.035838373,0.020398054,0.059919238,0.3327624,0.39979336,-0.15803787,-0.041455217,-0.05366792,-0.14157419,-0.49052963,-0.19464529,-0.5992792,-0.46786937,0.0740027,0.8760877,-0.31506,0.026789354,0.0153277,-0.05854972,-0.057842407,0.0029282826,0.04177422,0.29304966,0.38866726,-0.14429219,-0.51199996,0.44554433,-0.06796037,-0.14079012,-0.4208667,0.2852726,0.58523893,-0.5807397,0.5710699,0.28749222,0.15375538,-0.24953355,-0.63015944,-0.20410621,0.04266259,-0.23711714,0.5555425,0.11600949,-0.9196854,0.47412282,0.3672087,-0.25380993,-0.79221237,0.3522783,-0.06703142,-0.42697763,-0.017215172,0.39397892,0.12781973,0.019006643,-0.17778705,0.2411408,-0.43551204,0.30091348,0.18113697,-0.11130263,0.5305758,-0.26816115,-0.24576487,-0.6343762,-0.20988628,-0.54406214,-0.33398637,0.27168402,0.061378796,-0.05879001,0.18251777,0.07089035,0.47811183,-0.2700499,0.13054651,-0.037885662,-0.1330821,0.26872292,0.3495839,0.54311144,-0.32469988,0.45917058,0.001889001,-0.0018912852,-0.08751535,0.048455086,0.44612792,0.11532593,0.4290607,-0.045071594,-0.06659785,0.30039337,0.7300282,0.0878026,0.38726377,-0.11943372,-0.104499325,0.09561714,0.050693307,0.28259557,-0.061975744,-0.51598364,0.045607608,-0.3709577,0.20188192,0.47073647,0.1687818,0.29986027,-0.09335713,-0.367405,0.048063688,0.20502399,0.09244913,-0.9645926,0.37451833,0.1504391,0.87747514,0.3450899,0.15107349,-0.011843944,0.72292674,-0.046979573,0.07930235,0.24996741,0.036835402,-0.49385732,0.44653544,-0.83897644,0.4597961,-0.057129733,-0.13197967,0.12988389,-0.06749917,0.38252926,0.7269522,-0.024426889,0.013729677,0.05886516,-0.2738626,0.19971164,-0.40789923,0.0511092,-0.5491644,-0.3429618,0.5077709,0.5592137,0.20539086,-0.20417894,-0.07444122,0.1614201,-0.06957823,0.12648323,-0.06967686,0.0909092,-0.09901092,-0.69396657,-0.08447289,0.47327688,0.48941487,0.08323557,-0.20984362,0.005501815,0.25063428,-0.3077187,-0.033735715,-0.11275178,-0.44792104,0.038497042,-0.20276092,-0.31574112,0.4890873,-0.23436879,0.32015508,0.15556929,0.18115726,-0.2824096,0.4534588,0.004717048,0.76404935,0.000254035,0.011805892,-0.49762246,0.16393141,0.15813874,-0.18736048,-0.15936187,-0.28867036,-0.10927866,-0.469408,0.30389506,-0.037796225,-0.20836475,0.058496714,-0.01894773,0.07442465,0.5628053,-0.068292,-0.12281062,0.04798844,-0.22082962,-0.35073185,-0.15697464,-0.019990223,0.20949568,0.30663633,-0.09704297,-0.10298284,-0.09273422,-0.15511966,0.38700566,-0.03779175,0.27553132,0.20247068,0.055415522,-0.28885013,-0.09294689,0.11725294,0.6565294,-0.065797426,-0.008414464,-0.14602086,-0.40238062,-0.34361595,-0.066750094,-0.10717641,0.2520953,0.04155432,-0.14178225,0.5956833,-0.04719332,1.0914924,0.12530187,-0.18280683,0.11027487,0.41788843,0.021218464,0.010058373,-0.44903898,0.98684543,0.40970364,-0.23463039,-0.0719833,-0.24473628,0.04425484,0.045556128,-0.17240438,-0.109228425,-0.014457111,-0.7239256,-0.2491066,0.22151543,0.3122609,0.07155853,-0.07707853,-0.037756313,0.19500133,0.12332167,0.28692627,-0.39848885,-0.11024755,0.30492657,0.38875863,0.039692998,0.19593894,-0.38564166,0.38588452,-0.40912578,0.22402787,-0.3011647,0.1693485,-0.22620596,-0.3655654,0.22027633,-0.13387223,0.29795092,-0.20831458,-0.35117826,-0.22912426,0.3436933,0.29068187,0.14020412,0.48508272,-0.19822346,0.005852195,0.08957328,0.48033306,0.96378267,-0.26731044,-0.19803731,0.43558258,-0.29553097,-0.67582804,0.27679443,-0.28704023,0.06687305,-0.102084875,-0.13892105,-0.45017284,0.28446412,0.17799972,0.05668464,-0.103928074,-0.61992806,-0.020053456,0.2628371,-0.36888584,-0.145337,-0.27276936,0.15985075,0.57780707,-0.11310528,-0.3858873,0.14743993,0.25911054,-0.2094964,-0.511296,0.17875743,-0.41993666,0.24833918,0.08945118,-0.2860143,-0.13242665,0.13629879,-0.47746474,0.21580645,0.055169705,-0.29889426,0.084932946,-0.27044675,-0.07336654,0.77194756,-0.35993227,0.3818951,-0.42567557,-0.42277765,-0.77144474,0.044644654,0.4955556,-0.13132218,0.013636286,-0.77510136,-0.10464009,-0.14333956,-0.25712255,-0.116818026,-0.33862764,0.36474538,0.0057411618,0.3888432,-0.3027446,-0.72409624,0.18387063,0.30973417,-0.18404551,-0.59677535,0.5313273,-0.07493605,0.6410389,0.05401414,0.05661118,0.42580146,-0.42221433,0.09761805,-0.28163317,-0.31415373,-0.6102328,0.051301923 +203,0.7041089,-0.33425742,-0.3934942,-0.105390854,-0.3119885,0.15002586,-0.2739263,0.4310186,0.038480334,-0.58142453,-0.28714857,-0.2365738,-0.04328273,0.15281858,-0.23258576,-0.4044912,-0.049303975,0.22569491,-0.2853805,0.69851106,-0.41800755,0.4075707,-0.029546771,0.40062913,0.3036613,0.1546569,0.14514017,0.06454559,-0.33018643,-0.35789806,0.0612413,0.08855365,-0.65605146,0.25848752,-0.18267055,-0.49093875,0.0151417935,-0.26554668,-0.37944433,-0.84142697,0.2343026,-0.87560385,0.65845233,-0.07243127,-0.5566115,0.112650804,0.16146602,0.15067329,0.1602091,0.0708154,0.13366075,-0.034841187,0.01578715,-0.29190964,-0.2955344,-0.5683062,-0.72758675,0.005324583,-0.35472703,-0.04768588,-0.27370325,0.32121584,-0.28907284,-0.01202628,-0.14663638,0.3834389,-0.46371046,0.15388195,-0.0011252165,-0.014068531,0.4852197,-0.6107581,-0.23186064,-0.24828891,0.015480748,-0.10885342,-0.17366882,0.28905648,0.34033045,0.5055581,-0.13494849,-0.13960823,-0.39247957,0.061186343,0.12837529,0.60580856,-0.2617415,-0.4222408,-0.2057508,-0.30055672,0.51033884,0.26610062,0.43349212,-0.21564357,-0.02152366,-0.059525363,-0.20540057,0.38791066,0.5496002,-0.30311254,-0.15988557,0.07207363,0.539882,0.045184765,-0.23542213,-0.048417,0.006181836,-0.50033206,-0.24842694,0.10583763,-0.2587991,0.51755154,-0.13234457,0.14865732,0.57267153,-0.38144335,0.03753198,0.22623493,0.017641587,-0.08876508,-0.1897479,-0.30915663,0.24033149,-0.40482977,-0.09994107,-0.3937587,0.80809003,-0.11199681,-0.7605172,0.3378062,-0.45139843,-0.059832614,0.05500045,0.49751788,0.6410157,0.6663642,0.3532161,0.6096333,-0.4339044,-0.06288372,0.011896557,-0.21778499,0.11864303,-0.12403969,-0.13148162,-0.40264705,-0.06147575,0.009371842,-0.12545101,-0.023794098,0.9243969,-0.5838571,-0.060668863,0.124953575,0.800536,-0.3442662,-0.07178826,0.8429776,1.0955695,0.8915277,0.034478102,1.2122055,0.19903766,-0.08964371,0.05364298,-0.22449157,-0.6628857,0.3508377,0.37635684,-0.5511847,0.39988518,0.18458202,0.044664495,0.3059738,-0.3608947,-0.03167569,-0.14425786,0.14478295,0.06349282,-0.37698004,-0.44947788,-0.17835745,0.035924133,0.00802158,0.1622567,0.21038315,-0.45239088,0.37361684,0.13748494,1.6809629,-0.14312556,0.027666543,0.052843314,0.5350855,0.18448175,-0.18784364,0.17330825,0.3426115,0.21765426,0.19929092,-0.39200884,0.08638531,-0.11709857,-0.61793643,-0.31112528,-0.22865613,-0.083228715,-0.23012163,-0.36042473,-0.3139557,0.0077642226,-0.33307156,0.33706072,-2.2828095,-0.036375828,-0.19561657,0.29680094,-0.16295196,-0.4853551,0.090040244,-0.44359273,0.58963996,0.42140135,0.375954,-0.7180008,0.3544402,0.67638344,-0.44060454,0.053961534,-0.59712356,-0.24225841,-0.092652455,0.47824904,0.16150928,-0.054527912,0.051925723,0.19011767,0.62113816,-0.17686,0.2550761,0.31274146,0.4376037,-0.21845092,0.4528746,0.06548774,0.42856243,-0.1681133,-0.268667,0.47174048,-0.3059661,0.061089944,0.1207112,0.22759739,0.47303072,-0.4977669,-0.6894722,-0.8975218,-0.47745654,0.9510495,-0.06651411,-0.7675532,0.16998874,-0.3253004,-0.6533364,0.014544232,0.50379974,-0.19679943,0.1152362,-0.75705045,-0.12415749,-0.1388736,0.47725978,-0.1434133,-0.060746055,-0.5305824,0.84201056,-0.09956796,0.4188047,0.35699168,0.27947146,-0.5829209,-0.6543895,0.06710399,1.2277538,0.45500073,0.1496799,-0.40197498,-0.19408038,-0.36107907,0.09895557,-0.0076262183,0.6402885,0.682469,-0.10564101,0.1356745,0.16239189,-0.18268059,-0.04575323,-0.115462594,-0.30673322,-0.14515604,-0.023613278,0.539991,0.66067845,-0.13378738,0.53451043,-0.26054102,0.50182396,-0.26414612,-0.6214835,0.34972993,0.9303326,-0.15880218,-0.3329258,0.7226839,0.57955307,-0.42764664,0.43878606,-0.74912727,-0.31782576,0.37301427,-0.11103707,-0.4519362,0.29719687,-0.44228894,0.2874382,-0.86403763,0.48743084,-0.46514437,-0.47648576,-0.5653321,-0.16669926,-2.950607,0.29677716,0.033168763,-0.35357043,-0.026830938,-0.2091131,0.44028622,-0.51455003,-0.4670624,0.01231551,0.11699719,0.65914786,0.038001295,-0.07045891,-0.31346178,-0.38549018,-0.25155097,0.32581228,0.22815122,0.26159126,-0.18264319,-0.69118184,0.0057127667,-0.22393754,-0.4625215,-0.08754065,-0.69110805,-0.8457894,-0.22158217,-0.408128,-0.3145363,0.6639933,-0.35740873,0.077468716,-0.24480978,-0.034576423,-0.07684595,0.28550518,-0.0014593431,0.08591514,0.06226025,-0.25419608,0.03949461,-0.3974827,0.47984385,0.17017317,0.34427267,0.6391261,-0.29435632,0.13206957,0.42316264,0.55062515,-0.025338948,0.9781376,0.30789074,-0.14914279,0.39130434,-0.082942314,-0.30939803,-0.5621941,-0.18731639,0.05045385,-0.5677345,-0.38695005,-0.06736807,-0.4262598,-0.8649927,0.6064683,-0.14550379,0.15987264,-0.048552494,0.5317973,0.3382415,-0.21513318,-0.18097226,-0.066339806,-0.257369,-0.5029308,-0.5098607,-0.6846639,-0.5332932,0.027951105,1.249,0.15865433,0.02453185,0.17534588,-0.17234743,0.11622699,0.04607422,-0.01639593,0.081077315,0.28814355,-0.16187856,-0.75836664,0.60664326,0.1820521,-0.13108063,-0.47823387,0.2343706,0.6866352,-0.53307194,0.3065755,0.24784745,0.041928153,-0.056909654,-0.5989128,0.011113784,-0.013282716,-0.40133598,0.58527523,0.4980522,-0.83608925,0.40823045,0.3270248,-0.15832315,-0.7101726,0.5310222,-0.036357563,-0.24369343,-0.16749239,0.48896116,-0.0049491352,0.13911107,-0.33428416,0.37065312,-0.51917744,0.3169446,0.30397,-0.03045867,0.29649082,-0.24076526,-0.16582742,-0.8818561,0.21462485,-0.42230892,-0.50398767,0.26194838,0.09027738,0.07968029,0.6038141,0.36672026,0.4961407,-0.35158566,0.10111451,-0.013865625,-0.31485716,0.42177173,0.47027633,0.5358578,-0.31968156,0.49763218,0.029584808,-0.14750732,-0.09771413,0.06807657,0.5493439,0.0002898744,0.33739924,0.027189877,-0.030098276,0.3846983,0.99087846,0.25956753,0.58994263,0.11532532,-0.30698648,0.13273475,-0.037848085,0.2854592,-0.037101347,-0.6040582,-0.0135400295,-0.121394865,0.12186209,0.5685424,0.020707535,0.18439715,-0.23723991,-0.3022854,0.077459976,0.24338457,0.07121544,-1.2622681,0.09721507,0.08147844,0.93274224,0.54065716,-0.03341353,-0.003494465,0.6183267,-0.3555947,0.014216271,0.31409785,0.151885,-0.29046234,0.4888614,-0.66808325,0.39294943,-0.11143948,-0.039267454,0.123860136,-0.40535906,0.42014116,0.976678,-0.07409085,0.12004528,0.1300569,-0.27651617,0.15784666,-0.3695157,0.10069542,-0.51540256,-0.23005438,0.75118285,0.4583528,0.35503843,-0.10577246,0.101978965,0.09857719,-0.1863819,0.20993103,0.061556388,0.15268132,-0.23370631,-0.55358124,-0.20044912,0.42060116,-0.02466016,0.09382267,0.13155416,-0.24339606,0.046959035,-0.23072815,-0.026292844,0.029542288,-0.729359,-0.1273121,-0.3903274,-0.30548257,0.398251,-0.091858454,0.015072288,0.13115226,0.07781486,-0.35983926,0.2288759,0.4113191,0.6200691,0.3259743,-0.030668488,-0.27274165,0.13200645,0.16069002,-0.32165268,-0.009407316,-0.06351985,0.07907323,-0.80674535,0.4068379,-0.09709041,-0.37839133,0.11452227,-0.032987893,-0.00024732522,0.5021094,0.018530037,-0.34923437,0.025737455,0.09692425,-0.08427828,-0.09079493,-0.1295756,0.29030013,0.059324205,-0.19935563,0.051253267,0.054134913,-0.013642899,0.32993355,0.03118011,0.4359626,0.5145961,-0.0032769782,-0.42275938,0.07197016,0.16967313,0.7217639,-0.23507826,0.13863781,-0.18923569,-0.6173125,-0.4041755,0.0049427575,-0.15411815,0.29529437,0.11848801,-0.4310464,0.9240729,0.02460676,1.2543379,0.0151926195,-0.44593725,-0.07140012,0.5593834,-0.16879097,0.009908353,-0.5897977,1.1520537,0.46093696,-0.37528118,-0.16902654,-0.16675289,-0.05846711,0.15897158,-0.24917556,-0.13641341,-0.07556842,-0.87866104,-0.21767053,0.19174957,0.47508213,-0.054974165,-0.0024234594,0.19144765,0.36923414,0.041665178,0.32189038,-0.4526915,0.08415462,0.32043642,0.35163045,-0.13111366,0.21830322,-0.3924265,0.18655083,-0.54718006,0.010209041,-0.4210277,0.101113245,-0.115394354,-0.45096943,0.3039971,0.15627275,0.31549627,-0.33931223,-0.21686025,-0.13743582,0.4861056,0.11176316,0.24279158,0.5471853,-0.11224057,0.18121155,0.07389282,0.4052396,1.3181263,-0.18390168,-0.18225731,0.253689,-0.50335395,-0.7173633,0.40693074,-0.38023892,0.21258053,-0.039642967,-0.5176172,-0.34573197,0.29694748,0.15514715,0.016312262,-0.06609754,-0.5180736,-0.17878368,0.30920127,-0.4433331,-0.29950115,-0.18064596,0.16308881,0.51629,-0.30154294,-0.33904263,0.0044268197,0.55901784,-0.38273543,-0.4236495,-0.1674212,-0.38597447,0.49029544,-0.025450064,-0.40859467,-0.14796993,-0.15364714,-0.45586538,0.044968974,0.25390634,-0.39262983,0.1459919,-0.3493328,-0.028109428,0.749279,-0.15669121,-0.10381531,-0.44352058,-0.5575538,-0.9254073,-0.42021337,0.23982427,0.3404668,-0.08597464,-0.50717556,-0.09610726,-0.30152413,-0.08310151,-0.030776756,-0.26956537,0.44356117,0.18615474,0.5803099,-0.04851249,-0.84777534,0.18541762,0.2660536,-0.06474571,-0.78798306,0.65344346,-0.18170686,0.9021762,0.14688687,0.19747642,0.35471132,-0.555927,0.20440412,-0.20617385,-0.2868089,-0.72585136,0.04643497 +204,0.482038,-0.1573207,-0.53620654,-0.11606369,-0.39465335,0.16227093,-0.26317424,0.36271024,0.18234703,-0.2659361,0.08198781,0.0014600935,-0.04048779,0.33670238,-0.06204133,-0.62128323,0.050425813,0.13638127,-0.7252275,0.6226436,-0.51551145,0.45736706,0.053405568,0.19878237,0.18149623,0.35589322,0.11645786,0.04176899,0.06229563,-0.108560234,-0.15955609,0.2606288,-0.44274107,0.122323975,-0.03981146,-0.29895136,-0.09394387,-0.387119,-0.5313239,-0.65226245,0.29152074,-0.6452675,0.58836174,0.09475538,-0.39876038,0.11590497,0.1346134,0.2636369,-0.32193574,0.17864043,0.17365393,0.019765709,-0.0637802,-0.26765826,-0.28315184,-0.4334817,-0.45443103,0.09137471,-0.6101809,-0.068930015,-0.317723,0.1359224,-0.2783959,-0.052418713,-0.20422873,0.3969376,-0.46735248,0.031304218,0.07716294,-0.06286204,0.18852493,-0.5604865,0.08838971,-0.15058447,0.1389867,-0.15420467,-0.311855,0.2366179,0.17896089,0.6119314,0.013780758,-0.291827,-0.26962522,-0.10195662,-0.04720111,0.44870064,-0.23871252,-0.44157937,-0.21426192,0.06463879,0.3685174,0.21423681,-0.021087065,-0.31928876,-0.07424033,-0.16509496,-0.26180205,0.45977095,0.5447717,-0.3458649,-0.20541358,0.4944461,0.4749887,0.1989111,-0.16149153,0.21421805,0.0147238225,-0.5613785,-0.2305804,0.026650786,-0.036015674,0.44942516,-0.24264859,0.22978291,0.5906532,-0.07029087,-0.056292627,0.20285302,0.07625386,0.025256008,-0.18875453,-0.18275326,0.06847349,-0.5515415,0.058806054,-0.12780112,0.721121,0.11791819,-0.694808,0.41484004,-0.5290242,0.15329778,-0.054485068,0.56037587,0.832829,0.47210836,0.14283943,0.7528297,-0.39152503,0.1566003,-0.22255239,-0.29092997,0.06522098,-0.058537275,-0.15371674,-0.56802857,0.02849666,-0.09031225,-0.102675475,0.022608705,0.7258022,-0.46056637,-0.24557117,0.07647311,0.7570962,-0.41330242,0.020025741,0.60138726,0.9492746,0.9528017,0.023983078,1.1471863,0.25278053,-0.08981496,0.04146836,-0.29001504,-0.6257044,0.2789565,0.4230807,0.105749935,0.32468542,-0.04235028,0.024867676,0.32052612,-0.3135934,-0.0123625975,-0.20423813,0.31394696,-0.095514536,0.029462144,-0.45320255,-0.24770752,0.0066881627,0.26018086,0.05321207,0.30852908,-0.25871786,0.23433045,-0.019810634,1.6330606,-0.12874074,0.13284354,0.20164543,0.5137684,0.36564928,-0.342604,-0.17163444,0.2549159,0.3581917,0.054042615,-0.5626491,-0.032402083,-0.26647285,-0.40540746,-0.14446075,-0.32189757,-0.079962,-0.17737861,-0.5848745,-0.22682998,0.10177024,-0.5064819,0.49992073,-2.5496182,-0.20831223,-0.11546463,0.2600278,-0.24098587,-0.43300372,-0.24716029,-0.36060074,0.4470042,0.29615748,0.38269174,-0.62839735,0.35981297,0.5787756,-0.4042579,0.046534225,-0.5454692,-0.10449589,-0.018584974,0.34517726,0.04903937,-0.22615163,-0.118043154,0.3237202,0.5516466,-0.20191884,0.13467593,0.28449383,0.2944854,0.08779521,0.43261862,-0.028664373,0.4362175,-0.2580441,-0.2655365,0.44893134,-0.25428623,0.20012246,-0.15261564,0.09543655,0.44596243,-0.6551401,-0.9080077,-0.5628519,-0.07975407,1.2079875,-0.3142389,-0.47158027,0.31525323,-0.37791392,-0.3061177,0.040791072,0.4407205,-0.077410504,-0.038799986,-0.77857643,0.18252657,-0.05561669,0.22189319,0.04031299,-0.009374343,-0.2913721,0.6245554,0.053138956,0.4672264,0.30061245,0.09080616,-0.22583093,-0.38185635,0.12705907,0.9637102,0.507118,0.14808536,-0.22810204,-0.24775761,-0.21775638,0.059182547,0.12037855,0.4923606,0.67901915,-0.03696473,0.07154633,0.27190796,0.05746626,0.05905653,-0.22531058,-0.251032,0.010066325,0.050788153,0.6241563,0.56040996,-0.08188508,0.38155648,-0.113912165,0.23580116,-0.23672688,-0.5847793,0.46636617,1.0006869,-0.095700175,-0.2460989,0.61687744,0.45520595,-0.29042736,0.4014218,-0.57118845,-0.3864796,0.3364419,-0.19486111,-0.27979153,0.33559188,-0.4009719,0.17123295,-0.7242206,0.25536937,-0.15860523,-0.5463428,-0.3727369,-0.17891791,-3.3002012,0.24883601,-0.17523399,-0.043103162,-0.018965686,-0.10527951,0.30054677,-0.5015691,-0.49718738,0.029093836,0.05551507,0.7033236,0.023653843,0.13658673,-0.105358385,-0.3709792,-0.28390473,0.15981454,-0.013355317,0.40525633,-0.09342654,-0.4495569,-0.3115033,-0.12048467,-0.34888282,-0.023991704,-0.6562606,-0.42666218,-0.22301967,-0.5369469,-0.011170324,0.6084194,-0.090833604,0.069543146,-0.29351982,-0.10354461,0.061715305,0.19067508,0.14579874,0.16890971,0.0483066,-0.114446685,0.0030687153,-0.35179785,0.17547695,-0.044207618,0.17185022,0.3201788,-0.07002251,0.1004204,0.5131587,0.58162177,-0.2391244,0.9824853,0.45863622,-0.21731007,0.38682833,-0.15617894,-0.22038256,-0.54951787,-0.2784343,-0.18912122,-0.43056428,-0.16836049,0.0030653924,-0.28708735,-0.77905166,0.45902103,-0.043353513,0.15585434,-0.03331601,0.27610564,0.47787356,-0.20337851,-0.061664842,-0.13034369,-0.29790452,-0.44823423,-0.27663124,-0.6085537,-0.39130688,0.23900865,1.114079,-0.2285679,0.021237362,0.06123062,-0.115685396,-0.108501405,-0.07405221,0.20280144,0.27878484,0.3122181,-0.2600755,-0.6539655,0.3066752,-0.06320839,-0.07122864,-0.504056,0.1497127,0.73979086,-0.5058881,0.46670866,0.21588773,0.21390651,-0.10089737,-0.6827007,-0.1665899,0.07516439,-0.26125535,0.50905204,0.20985055,-0.8692529,0.552658,0.31319106,-0.22823691,-0.7438256,0.5016886,0.02614005,-0.43492085,-0.11894328,0.3328113,0.007182032,0.0014639124,-0.23707607,0.27391386,-0.31784293,0.39034683,0.18510872,-0.15640539,0.18999073,-0.28029066,-0.33475798,-0.5710976,-0.111762136,-0.4672548,-0.42642286,0.19115382,0.038954154,0.07937023,-0.030211294,-0.11771171,0.45682517,-0.29587442,0.10584912,-0.16637816,-0.26508573,0.37554696,0.42269576,0.5284317,-0.35845536,0.6136763,0.025421027,-0.022618815,-0.117099494,0.24889854,0.46150106,-0.060246788,0.34872395,-0.029276745,-0.11522347,0.38200063,0.86726344,0.18112323,0.32642943,0.014876749,-0.18794504,0.14159645,0.1498996,0.012453511,-0.11665756,-0.42773902,-0.080599055,-0.17157656,0.25494966,0.53004044,0.119955905,0.21955216,-0.15653795,-0.28768623,0.096108146,0.19144756,0.011908488,-1.4571247,0.21880043,0.20410681,0.6845445,0.50215626,0.10875618,-0.16221674,0.6177875,-0.26934177,0.046496402,0.3008627,-0.115466736,-0.37155733,0.39658403,-0.66088855,0.4622921,0.027534105,0.050834805,0.10755585,0.030053396,0.37379444,0.8456706,0.018180816,0.07669692,0.05709968,-0.3254947,-0.014056541,-0.31519637,0.0097403005,-0.48642564,-0.3909011,0.7323317,0.3262979,0.32374525,-0.06815768,-0.05589952,0.07374872,-0.20765649,0.107644364,0.036685523,0.06762756,-0.2041615,-0.6436603,-0.15803042,0.55857533,0.22197613,0.04265374,0.097424425,-0.056031514,0.2986498,-0.10987198,0.04205653,-0.07882595,-0.5674218,-0.045290943,-0.4442468,-0.39224464,0.4120104,-0.25149408,0.21301946,0.13780375,0.07918618,-0.33379346,0.41863045,0.07480852,0.7127883,0.0077198446,-0.0961708,-0.18375693,0.21863815,0.13927805,-0.21898398,-0.20164412,-0.18738085,0.12309605,-0.780985,0.36250523,-0.096133314,-0.4238609,0.24221021,-0.06800928,0.05741455,0.42753875,-0.07076054,-0.3054353,0.0035513937,-0.15662429,-0.3350703,-0.26561737,-0.1216076,0.29083523,0.20223112,-0.14028361,-0.10905995,-0.14608017,0.03381589,0.42916927,0.0058001447,0.36920178,0.317592,0.15891579,-0.3183518,0.119710766,0.31456977,0.5730779,0.044205546,0.03193912,-0.22781065,-0.2840101,-0.37157974,0.06068769,-0.16330333,0.26687717,0.13531223,-0.20701307,0.88270223,0.095393166,1.1065903,0.035810746,-0.20679146,0.16935223,0.37940133,0.054380726,0.011933241,-0.29168493,0.9360545,0.6539501,-0.07945345,-0.16286021,-0.39019305,-0.14351982,0.061397493,-0.3064756,-0.15456128,0.012552306,-0.76627386,-0.28167242,0.24921489,0.22539312,0.21933004,-0.08346935,0.029635333,0.1578788,0.04829171,0.19309744,-0.59697914,0.009551175,0.33336258,0.20865875,-0.00789856,0.16648164,-0.5487289,0.29449785,-0.5904754,0.002976166,-0.16470556,0.23000541,-0.07691838,-0.29498887,0.27701864,0.014439993,0.3463797,-0.36006773,-0.3749802,-0.23703355,0.5352346,0.018615924,0.14435384,0.55007917,-0.33467487,0.1167522,0.07345429,0.40779868,0.98135996,-0.324405,-0.011103388,0.35240608,-0.37127346,-0.7140197,0.09218869,-0.38565424,0.075508356,0.06909739,-0.3196362,-0.29188737,0.33774996,0.006049011,0.1845126,-0.07682459,-0.6279102,0.018625524,0.24341303,0.017015178,-0.18997067,-0.29904237,0.19622609,0.62315226,-0.24941045,-0.33839166,0.10853599,0.29410183,-0.25835985,-0.6661342,-0.023083296,-0.2687982,0.17966162,0.12974992,-0.22062962,0.0023704767,-0.01244919,-0.4938134,8.017197e-05,0.36762366,-0.39398587,0.008606657,-0.30214885,-0.09547554,0.9833648,-0.22943383,0.09447043,-0.4861059,-0.5246696,-0.85036504,-0.35157543,0.4095524,0.11648364,0.073814824,-0.7340235,-0.01041048,-0.20896131,-0.06581775,0.08351836,-0.4085734,0.5301885,0.099531576,0.32997656,-0.1527424,-0.82527626,0.19210842,0.028652828,-0.2668673,-0.53505015,0.50781405,-0.07410053,0.74626374,0.14890715,-0.0065556914,0.22734503,-0.8056763,0.1335986,-0.22544472,0.017534574,-0.82074463,0.08716302 +205,0.26655146,0.018259322,-0.5871483,-0.3393979,-0.3627557,0.26528904,-0.38814363,0.1459788,0.17460646,-0.28190646,0.0676811,-0.0710742,-0.1370827,0.33385855,-0.25720736,-0.91570276,0.08490743,-0.10630874,-0.4566266,0.53183633,-0.47754517,0.25189176,0.056641977,0.31082746,0.07619424,0.37091473,0.42354295,0.047900386,-0.09901909,-0.045814753,0.06105695,0.3022797,-0.6781102,0.40858224,0.096573986,-0.306006,-0.01756359,-0.28185514,-0.12941884,-0.6952909,0.35235146,-0.75207764,0.36402813,-0.02963579,-0.39267954,-0.014852933,0.24162674,0.08575882,-0.18976559,0.06536002,0.30017546,-0.37816253,-0.093862906,-0.0063293152,-0.20588727,-0.7536672,-0.54691106,-0.007977173,-0.873004,-0.17338584,-0.36672726,0.30462033,-0.43447632,-0.17907357,-0.12934646,0.47466373,-0.5948404,-0.19284709,0.15889958,-0.36379784,0.024459204,-0.6943781,-0.28778696,0.015314966,0.17728315,0.0071801627,-0.16279243,0.57306385,0.36271808,0.27812454,0.11912286,-0.40809807,-0.41152054,-0.2870774,0.1595527,0.35254893,-0.103053525,-0.34633824,-0.24366677,-0.1582776,0.32211107,0.14961569,0.086641364,-0.25054812,0.08013164,0.026191559,-0.17248312,0.2627278,0.60641617,-0.5237002,-0.20116031,0.48931953,0.35944602,-0.10104899,-0.35687876,0.20049094,-0.08776065,-0.4223368,-0.16549094,0.1540468,0.04809906,0.41316327,-0.12374605,0.2184267,0.9089225,-0.13219678,0.19277157,0.00025463957,-0.01376362,-0.10530002,-0.22070476,-0.03294466,0.15594132,-0.41487455,0.09224123,-0.24116577,0.8743572,-0.040495217,-0.80250734,0.4320111,-0.41101497,-0.08612997,-0.15542777,0.622015,0.74214494,0.33633885,0.07828547,0.94548905,-0.33400577,-0.08570601,0.11233897,-0.33415562,0.12627526,-0.24442564,0.28719476,-0.50037134,0.17270072,0.12373363,0.20491579,-0.024617331,0.6132551,-0.34459963,-0.07818712,0.12835784,0.55007404,-0.3355687,-0.11984377,0.71542466,1.1275244,1.0868464,0.16645288,1.102003,0.41669992,-0.1782122,-0.07004788,-0.17540343,-0.4570748,0.20197546,0.47611257,0.52177143,0.2526379,0.09326626,0.08228167,0.5801029,-0.23793127,-0.0021908071,0.03136135,0.3064231,0.17338581,-0.20124969,-0.31781366,-0.19500698,0.33645147,0.17532647,-0.13121633,0.337081,-0.0207163,0.58248025,0.07043826,0.9054564,0.07539173,0.08185358,-0.08662971,0.62712634,0.12771381,-0.11583368,0.17631106,0.17927977,0.14111637,-0.10368829,-0.5103911,0.10166298,-0.48262718,-0.7191743,-0.21189903,-0.46515736,-0.145295,-0.027204828,-0.39402255,-0.3293364,0.16130687,-0.24794233,0.37075755,-2.676292,-0.024943683,-0.32109526,0.21194889,-0.113417946,-0.22842124,-0.33558622,-0.582796,0.4665482,0.47345462,0.3360342,-0.4965543,0.38102075,0.39270404,-0.43416485,-0.058354113,-0.66077346,0.18028696,-0.24323419,0.5053345,-0.0846849,-0.18236415,-0.07030804,0.24912097,0.7769818,0.10429985,-0.010569033,0.14355174,0.21663949,-0.08693711,0.36516258,0.06371482,0.5685827,-0.28840956,-0.11504044,0.36819288,-0.7002243,0.39132375,-0.11005854,0.15568972,0.4639315,-0.29700416,-0.9376115,-0.68820244,-0.3970142,1.1476412,-0.32522538,-0.54613715,0.258189,0.22083728,-0.10211646,0.20030273,0.40506572,-0.16726732,0.18711278,-0.49156004,0.20228298,-0.22807585,0.13451985,-0.12556998,0.2626061,-0.45062095,0.7953111,-0.09737607,0.55803406,0.25549045,0.19917586,-0.28197762,-0.48845047,0.022799999,0.7691294,0.47548702,0.121882424,-0.07166344,-0.25434,-0.05390344,-0.531222,0.2649531,0.6102286,0.48021203,0.042557903,0.28207183,0.27845722,-0.31468377,0.10962316,-0.04155912,-0.3680372,-0.06497647,0.414159,0.588846,0.46486712,-0.18123734,0.34003922,-0.053448837,0.25520253,-0.24568848,-0.5239295,0.49929732,0.69479316,-0.095682964,-0.2616836,0.43503517,0.46388027,-0.4783604,0.52566844,-0.5510611,-0.49384043,0.62693775,-0.04382084,-0.4925917,-0.21516609,-0.42177716,0.01086414,-0.7728093,0.43386993,-0.14839019,-0.6829137,-0.46174908,-0.45382124,-3.7155774,0.02226012,-0.234841,0.08465445,-0.19005983,-0.14263546,0.3140393,-0.70338875,-0.5200354,-0.03481423,-0.017646367,0.4301241,-0.044456005,0.07766126,-0.3503981,-0.2309866,-0.20681462,0.49310663,-0.042799216,0.26565942,-0.07623517,-0.2819167,0.42066056,-0.36942387,-0.5343699,-0.122580774,-0.48505303,-0.53757703,-0.0150376605,-0.53504217,-0.19301255,0.742621,-0.4803223,-0.0040797177,-0.14626314,0.086884364,-0.17674057,0.3509325,0.3965819,0.24137947,0.073747054,-0.077781364,-0.18866293,-0.550358,0.38892642,-0.107794575,0.38041067,0.57472366,-0.06953139,0.2620713,0.7614101,0.38505742,0.08722056,0.80529404,-0.038371217,-0.070624925,0.45612484,-0.35828876,-0.18922329,-0.8353206,-0.39092308,-0.06586149,-0.41389945,-0.5081335,-0.014887844,-0.42594174,-0.70184076,0.5142711,0.1353427,0.22187445,-0.282566,0.22868606,0.118989095,-0.10481111,-0.03492581,-0.0059917937,-0.10974827,-0.5680733,-0.5411862,-0.6967189,-0.8120141,0.13453393,0.9879566,-0.21484862,-0.40106508,-0.05395331,-0.24429126,0.113684826,0.17610632,0.31660938,-0.013518201,0.30707565,0.1325687,-0.96797055,0.50753284,-0.25828907,0.16336663,-0.5000268,-0.11503793,0.54510254,-0.7379484,0.5001193,0.47351408,0.35545963,0.17714253,-0.64385647,-0.17975037,0.026353033,-0.21005908,0.5346952,0.14592767,-0.6775119,0.5374052,0.09412922,-0.28593057,-0.47755256,0.47721484,-0.0030761308,0.21118294,0.10330162,0.44218484,0.1620557,-0.28772512,0.008939794,0.20858261,-0.5793373,0.3125982,0.21800487,0.14187369,0.7049037,-0.08827652,-0.38865617,-0.5001308,-0.22040962,-0.5413067,-0.15344252,0.06573365,-0.17157388,-0.0903653,0.22421925,0.066820495,0.41920835,-0.17230427,0.13140425,-0.19125775,-0.26304415,0.43728083,0.4685032,0.47948557,-0.5654374,0.71001637,0.14885579,0.116620935,-0.04220138,-0.17944281,0.62374336,0.3052303,0.5232425,-0.06345863,-0.0033652186,0.04021401,0.7426112,0.34507552,0.44370985,-0.019377312,-0.38080582,0.27112538,0.101658806,0.076662354,-0.037536554,-0.41434056,-0.065701514,-0.17967117,0.057786968,0.38833848,0.061387602,0.33515984,0.016715327,0.0065070014,0.28813195,0.1418228,-0.042186074,-0.9349306,0.43447378,0.363056,0.5929346,0.45784524,-0.1648225,0.05183403,0.5455331,-0.3612021,0.024783595,0.5049027,0.049797468,-0.46008068,0.69705576,-0.58655494,0.62281257,-0.3160711,0.05441537,0.07282591,0.2849589,0.32975715,0.6444256,-0.12678337,0.02636448,-0.015896888,-0.40078467,0.2833613,-0.2398355,0.23676442,-0.43872204,-0.10163695,0.55358034,0.392487,0.21942762,-0.17679249,-0.16904762,0.074844636,-0.20698282,0.24301144,-0.14474574,-0.08812586,-0.26323634,-0.5618164,-0.41883937,0.58136815,-0.0728653,0.039713707,0.19588487,-0.4069583,0.36448345,-0.012232508,0.033673882,0.023097787,-0.45279446,0.1945246,-0.12386137,-0.7115458,0.48268467,-0.467994,0.32619363,0.31192616,0.016821658,-0.19412836,0.10783668,0.1472166,0.50203055,-0.050758805,-0.23372398,-0.3469526,-0.19269249,0.31558684,-0.33917397,-0.07975391,-0.37891382,0.2399589,-0.40961716,0.39961153,-0.56322867,-0.1665992,-0.11876945,-0.18722568,-0.09847989,0.46800327,-0.122396514,-0.02612258,0.1889743,0.18436551,-0.048783787,-0.006031943,-0.47938433,0.39385343,-0.17895138,0.036060434,-0.13354495,-0.28587675,-0.018644989,0.2493438,-0.06794083,0.0077524176,0.29266697,-0.12807152,-0.44080546,0.11369849,-0.006531415,0.5433942,0.19636379,0.018374672,-0.17325445,-0.26600593,-0.32954565,0.39722756,-0.11889521,0.120116316,0.32286364,-0.49289697,0.66439974,-0.119498864,1.1545131,0.21217456,-0.43072063,0.077225916,0.550474,0.14860821,0.110842094,-0.1870872,0.9634255,0.6840291,-0.26674467,-0.23032644,-0.52137285,-0.09900975,0.23098011,-0.23150577,-0.20935157,-0.14354475,-0.79341084,-0.15927921,0.10964685,0.15982577,0.11115007,-0.04216308,-0.18550195,0.078356005,0.38610718,0.3385035,-0.54034436,-0.08833914,0.35074964,0.2747746,-0.13354138,0.09537013,-0.30640343,0.31503293,-0.84283435,0.3521463,-0.47929078,0.15754874,-0.31432548,-0.27136916,0.20442192,0.06362506,0.37042975,0.09408586,-0.4502485,-0.07967759,0.64450985,0.3322815,0.44473282,0.770826,-0.16479574,-0.053942442,0.07137338,0.46832806,1.3197678,0.012702712,-0.09314787,0.3453841,-0.39951155,-0.7811081,0.14276777,-0.66754967,-0.1298063,-0.12594579,-0.4162347,-0.35055235,0.20597337,0.15440133,-0.15145577,0.06683799,-0.48076656,-0.23572256,0.011053158,-0.43156186,-0.2847502,-0.41290078,0.1840508,0.777034,-0.47815084,-0.18743137,-0.023251394,0.42483258,-0.31326514,-0.67638713,0.3365507,-0.13106278,0.5062885,0.09815755,-0.36159012,0.08296983,0.5507906,-0.3965375,0.32603452,0.3830622,-0.36538652,0.06330653,-0.2689527,0.30474234,0.90103763,0.20410585,0.32561436,-0.7108183,-0.47002888,-0.9393533,-0.41501585,0.13718423,0.10779885,-0.07791685,-0.4788229,-0.20922995,-0.11325835,0.03597645,0.05194163,-0.6067937,0.25606316,0.06677537,0.50656164,-0.005488832,-0.853199,-0.011998509,0.104663,0.011226254,-0.42844772,0.5328868,-0.3994058,0.8453633,0.11444567,0.051839463,-0.035121415,-0.5872593,0.48335543,-0.3288644,-0.16732605,-0.48152623,0.12802546 +206,0.54662263,-0.22879829,-0.3458368,-0.010699485,-0.46350962,-0.11336089,-0.28206286,0.20882599,0.25757712,-0.14144628,-0.48436683,-0.12248909,-0.0641081,0.17608026,-0.17827612,-0.5209476,-0.19284593,-0.024769796,-0.7752743,0.679711,-0.38526133,0.4269255,0.24991424,0.33419374,0.37009394,0.33088824,0.33332342,0.10282168,-0.28891703,-0.3512491,-0.053602256,0.08380683,-0.76881397,0.12290631,-0.40045434,-0.313806,-0.04930675,-0.6980418,-0.26361558,-0.9383159,0.23977426,-1.0784065,0.52338564,-0.1526036,-0.012215101,-0.12767841,0.29447803,0.27356294,0.061292253,0.00046524635,0.28941244,-0.13648081,-0.008452227,-0.1508473,-0.10242927,-0.49518305,-0.65424377,-0.033184443,-0.5216971,-0.28852922,-0.13535026,0.31145233,-0.44284916,0.030347627,-0.2044638,0.40020996,-0.43798402,0.23201841,0.21908171,-0.2035262,0.18323818,-0.72128093,-0.13204923,-0.12905607,0.35447925,-0.034576517,-0.114469066,0.36446187,0.368989,0.14593302,0.24887186,-0.28596,-0.14418913,-0.10049825,0.118566886,0.60441536,-0.20253041,-0.2902791,-0.17332378,0.025303097,0.70046145,0.4092846,0.18287101,-0.09344255,0.0076317135,-0.15373217,-0.25720656,0.68235564,0.44217178,-0.13627683,-0.36742434,0.28451207,0.58148015,0.41535032,-0.22599176,-0.1491288,-0.055680018,-0.49563736,0.07873844,0.30587614,-0.14783219,0.57615876,-0.05229008,0.18628757,0.9033973,-0.35049966,0.22543739,-0.00047439337,0.013742245,-0.08460055,-0.1802006,-0.17634502,0.2569359,-0.5280241,0.12541056,-0.38014486,0.77689654,-0.001449852,-0.7379243,0.4370505,-0.57292813,0.14185585,0.10624976,0.57262,0.6080971,0.43335646,0.3942564,0.7209133,-0.11531401,0.20186485,0.11801156,-0.39542013,0.05941933,-0.3681738,0.19430536,-0.36434937,-0.07231747,-0.14174691,-0.022694092,-0.114569634,0.57690585,-0.57022667,-0.17667429,0.06338524,0.76857656,-0.20464121,-0.07734002,0.8852824,1.0231177,1.0637176,-0.01049666,1.2266313,0.35751644,-0.11022027,-0.050330516,-0.13590823,-0.71564996,0.30326033,0.42628428,-0.8220576,0.41258118,-0.05575931,-0.1495606,0.22418879,-0.36994183,-0.10267511,-0.11081779,0.28943998,0.28325483,-0.09524965,-0.46903908,-0.30521086,-0.04882117,0.04662711,0.23435467,0.20784459,-0.27504608,0.36534697,0.12244683,1.2918513,-0.17085508,0.028288115,0.18211812,0.57666576,0.22725098,-0.24244264,-0.0038543206,0.25853083,0.36666912,0.075548,-0.58518434,0.21602756,-0.41488138,-0.2953372,-0.23171856,-0.28319675,-0.2452337,0.1727328,-0.30746055,-0.11138452,-0.065366335,-0.27848482,0.28441563,-2.6075313,-0.15043168,-0.22670385,0.2751695,-0.28853458,-0.28656995,0.036165833,-0.65483546,0.18898733,0.28829506,0.51614535,-0.71003014,0.30062813,0.5701934,-0.6242311,-0.15526155,-0.798563,-0.022720668,0.07122864,0.5653534,0.009829512,0.019546747,-0.118934624,0.2307668,0.71198744,0.33125597,0.1679754,0.536748,0.50899065,0.16729948,0.45961776,-0.00830997,0.5098617,-0.16809033,-0.2041242,0.62393653,-0.32838458,0.3919783,-0.17321923,0.14045024,0.5902792,-0.32863095,-0.85675174,-0.51507324,-0.61558306,1.0665646,-0.34178594,-0.52172303,0.003738456,0.16749316,-0.19042096,0.02437681,0.6347096,-0.32480776,0.140721,-0.6371485,-0.13912496,-0.089043625,0.16861007,-0.026962748,0.10924042,-0.29351023,0.74697316,-0.05149138,0.3713013,0.15195979,0.35832003,-0.31121683,-0.5149396,0.1925326,0.8669093,0.42481503,0.047746714,-0.40051448,-0.09881054,-0.20821674,-0.25438696,0.00047379272,0.44527876,0.70999515,-0.07234522,0.10004132,0.3994104,-0.12351375,0.043501936,-0.13642189,-0.21001352,-0.16418225,-0.04190189,0.5296209,0.7416311,-0.1423714,0.5796702,-0.30914548,0.23510233,0.048145115,-0.48796985,0.53487915,0.46768755,-0.25229484,0.05510986,0.40771642,0.3431793,-0.46496704,0.491291,-0.5998122,-0.25200194,0.64289993,-0.11114771,-0.6252949,0.16638678,-0.3052769,0.11421875,-0.6164233,0.6296868,-0.39069846,-0.43957278,-0.41335294,-0.024228688,-1.901376,0.15871175,-0.0029885494,-0.3061614,-0.37265408,-0.15900125,0.28227556,-0.6010953,-0.6834868,0.09484784,0.1466061,0.52042645,-0.09496034,0.13124345,-0.13079044,-0.23676786,-0.33826086,0.18054256,0.3100136,0.38727346,-0.34291893,-0.2880778,-0.08747713,-0.057411194,-0.5045545,0.18669035,-0.6818625,-0.7424812,-0.10105566,-0.39541024,-0.37111157,0.63746285,-0.5369971,0.03996735,-0.2685619,0.028205983,-0.14242265,0.24043407,0.15540233,0.16604866,0.071761034,-0.11142373,0.11770031,-0.24640726,0.72045016,0.14594251,0.49693388,0.121714786,-0.10724384,0.33000666,0.5090899,0.60583293,-0.033379618,1.0999472,0.23086932,-0.140197,0.12744214,-0.13531703,-0.2293577,-0.6480836,-0.06966313,0.25003192,-0.42623737,-0.50468504,0.084644094,-0.27538896,-0.9293238,0.59420323,-0.092827015,0.46913207,-0.067913875,0.33415407,0.35899454,-0.1370512,0.049917158,0.017641626,-0.06903795,-0.52778685,-0.34810784,-0.70708406,-0.58213043,-0.034703042,0.8599926,-0.23335266,-0.06474225,-0.08561604,-0.41993803,0.22203077,-0.06992913,-0.22205292,0.1259736,0.39020795,0.07009225,-0.6362327,0.364075,0.024160229,0.07544945,-0.48436177,0.2272914,0.738092,-0.5421312,0.46538374,0.38873467,0.0015868911,-0.27621442,-0.53142846,-0.16543314,-0.086123355,-0.19691053,0.3470741,0.23619041,-0.6584963,0.51192117,0.09704818,-0.54439473,-0.77957976,0.33913863,0.08572852,-0.130274,-0.020508008,0.36113828,0.061711524,-0.13417698,-0.212721,0.3253853,-0.3821398,0.36023188,0.050271466,-0.10920595,0.39717653,-0.04582296,-0.45042866,-0.58120656,0.26787612,-0.4258011,-0.44638878,0.4345252,-0.06607346,-0.09924483,0.2943036,0.2613109,0.36784488,-0.17260577,0.027599642,-0.041703384,-0.3780523,0.32007116,0.45999622,0.5009258,-0.40542138,0.5386562,0.20869602,-0.19992469,0.38200822,0.14766221,0.30759218,-0.013778955,0.14111938,0.12415894,-0.054483935,0.15369721,0.62584084,0.31307375,0.5501335,-0.013956373,-0.20524162,0.43135574,-0.014095946,0.3380866,-0.058227226,-0.60181797,-0.057803545,-0.07980286,-0.06497584,0.54078364,0.12672934,0.26392868,-0.08347285,-0.15418823,0.08540637,0.12942187,-0.24985956,-1.2485657,0.14710024,0.14097604,0.9588874,0.2697194,-0.07885361,0.06465222,0.858636,-0.24216257,0.12132614,0.40044892,0.15691009,-0.4850333,0.6382863,-0.5741848,0.37908238,-0.24253017,-0.012711101,0.09565577,0.09883705,0.38826653,0.8458201,-0.3109834,-0.0637828,-0.19410071,-0.15655294,-0.04588075,-0.3181627,0.40400785,-0.3818341,-0.46976027,0.89688677,0.357416,0.3122698,-0.16584462,0.090926155,-0.22390395,-0.31329793,0.27020532,-0.03468635,-0.18419772,0.16230899,-0.55883205,-0.21426898,0.5609436,-0.16059996,0.044932716,-0.20283908,-0.20399342,-0.023600053,-0.22769131,-0.015062653,0.092989914,-0.85918707,0.16526125,-0.16646883,-0.5415322,0.18404509,-0.24733448,-0.015291413,0.20250705,-0.059351627,-0.07212827,0.21236636,0.32765678,0.80083156,-0.011238025,-0.30319977,-0.31546652,0.094430596,0.2047023,-0.26030207,0.18192007,-0.2173308,0.103771456,-0.57082343,0.67618,-0.1372856,-0.59909785,-0.013428312,-0.24056885,-0.21453881,0.6942854,0.041630488,-0.0570954,-0.03621919,-0.22153719,-0.3566834,0.1267843,-0.2539983,0.059497245,0.42180926,-0.42098287,-0.12403013,-0.27772805,-0.06397919,0.42385885,0.009496414,0.6312068,0.43455788,0.10696028,-0.37568888,-0.14676973,0.15572786,0.5713321,0.16401955,0.0024936704,-0.508929,-0.3306044,-0.3289851,0.5729147,-0.18127568,0.23949613,0.03573278,-0.44119194,0.89629143,0.018226244,1.3396757,0.104443155,-0.43012497,0.035371058,0.7096722,-0.17697014,-0.075459905,-0.48195928,1.0401723,0.40847743,-0.17931701,0.045378786,-0.44792175,-0.05083582,0.3084246,-0.38177893,0.009080978,-0.07869242,-0.46018043,-0.23714636,0.055949237,0.22115326,-0.16894454,-0.08475279,-0.02047848,0.32880783,0.042650342,0.4745272,-0.58613586,-0.18591467,0.24952716,0.09563686,-0.25627837,0.20009369,-0.3888454,0.36968553,-0.75649035,0.29176933,-0.46953204,0.22470954,-0.2531354,-0.47761536,0.24714044,0.06249129,0.60441613,-0.50352246,-0.48992297,-0.095641226,0.26233715,0.19129713,0.23971002,0.53578734,-0.20541224,0.109240994,0.030050324,0.5936056,1.4464746,-0.31922027,0.14546257,0.20558184,-0.52446866,-0.53790855,0.36604896,-0.30138117,0.04294997,-0.1788435,-0.44031274,-0.3772054,0.27813852,0.13412216,0.10087237,-0.12081254,-0.62859285,-0.21321939,0.2859199,-0.33840582,-0.29047742,-0.33323196,0.28407097,0.7054382,-0.23613097,-0.43613917,-0.059183512,0.37092832,-0.18143736,-0.3883753,-0.055483297,-0.14353393,0.34647655,0.006954122,-0.3201757,-0.26878738,0.13569736,-0.44059712,0.06584921,0.1455321,-0.43291503,-0.07036516,-0.036545042,0.13446634,0.79904616,-0.2744281,-0.41739866,-0.6029183,-0.5269913,-0.8419292,-0.6039537,-0.09168245,0.2859848,0.010658266,-0.37710956,-0.06472166,-0.21522999,-0.07415212,0.03680961,-0.65826637,0.3013263,0.177837,0.71191025,-0.4304803,-1.0987432,0.13200492,0.20555452,-0.060651045,-0.7100137,0.6579418,0.057173435,0.7337576,0.17484471,0.031667665,-0.1902021,-0.4387333,0.009437754,-0.3089,-0.20065968,-0.94207007,0.40937117 +207,0.38148507,-0.16403343,-0.56628686,-0.0935021,-0.5021137,-0.10930628,-0.08554264,0.560614,0.34076056,-0.24530534,-0.19358034,-0.022983974,-0.2985682,0.2114494,-0.12992388,-0.67579997,-0.072663955,0.4477023,-0.69406873,0.53505313,-0.31126478,0.04913594,-0.057179306,0.4290718,-0.031870246,0.071572594,-0.096556455,0.14764154,-0.030090652,-0.20897657,0.31033766,0.21371202,-0.9239525,0.48373273,-0.24903752,-0.27671087,-0.18126398,-0.6845118,-0.28067452,-0.8527512,0.28417876,-0.5527907,0.5644109,0.10744498,-0.34070495,-0.3046409,0.19782472,0.17216863,-0.14707188,-0.11642169,0.39971897,-0.1398815,-0.35983783,-0.015924508,-0.15617809,-0.14269668,-0.70747,0.034470882,-0.45820853,0.21739173,-0.09301155,0.2996399,-0.19035739,-0.09456446,-0.4113882,0.7839287,-0.46375915,0.1885426,0.22431412,0.14711998,0.2295596,-0.57405263,-0.107832216,-0.3538886,0.16987163,-0.04672109,-0.57150453,0.44603586,0.30848908,0.5587837,-0.03402631,-0.30057243,-0.27673152,0.20575537,0.14021243,0.391726,-0.34587938,-0.15663508,-0.14338753,-0.010964057,0.3213944,0.26966837,0.017705781,-0.44305107,0.1338631,-0.273153,-0.010493728,0.47635058,0.49983722,-0.09684685,-0.18513387,0.29465684,0.41836226,0.21387267,-0.013323751,0.1699099,0.13603117,-0.6620214,-0.33226484,0.31302407,-0.22612444,0.43611735,-0.19259387,-0.05436654,0.6518713,-0.12282142,-0.43237182,0.11261132,0.23224415,0.2518879,-0.30906856,-0.54322094,0.47669113,-0.48518226,0.19373713,-0.18084201,0.5426207,0.051020253,-1.0391036,0.19760355,-0.7565643,0.09996284,-0.0028050407,0.6279346,1.0509275,0.778928,0.41650257,0.8059679,-0.3058595,0.21520422,0.18726183,-0.091219634,0.11557527,-0.20500007,0.05873905,-0.44491225,-0.34004653,-0.41885507,-0.37900135,0.084193654,0.41915178,-0.5445495,-0.28014377,0.05370265,0.7346383,-0.2806591,-0.23476982,0.8819942,1.1625241,1.2266381,0.25115848,1.4799255,0.03566442,-0.11406441,0.069738016,-0.11462858,-0.9263435,0.22612526,0.19049063,-0.3018594,0.24072923,0.12938139,0.046659723,0.5327289,-0.71195215,-0.06671105,-0.123472475,0.37570545,-0.15285902,-0.070280194,-0.41188785,-0.42772505,0.039482024,0.03597556,-0.22002983,0.3937032,-0.11864621,0.37158403,0.12849024,0.9387278,0.09117483,0.13012443,0.117587395,0.17084683,0.10732401,-0.2684304,-0.3385131,0.2395411,0.20969701,0.04110624,-0.5967003,0.067582205,-0.33059165,-0.2457364,-0.26949483,-0.1618163,-0.05971111,-0.30197814,-0.345096,-0.42115366,-0.0060010445,-0.25793603,0.49168473,-2.141081,-0.11324267,0.035803784,0.3830283,-0.054784384,-0.26862705,-0.24727844,-0.5051117,0.41337326,0.2137172,0.5725154,-0.65167123,0.41179276,0.30729005,-0.7183131,-0.036503986,-0.8698736,-0.108072884,0.0884214,0.09573543,-0.08853919,0.031204028,-0.24425611,0.028545676,0.47267482,0.022870844,0.10937254,0.50720257,0.4371519,-0.020538889,0.37327355,-0.060647074,0.42042896,-0.50435597,-0.37774286,0.3233272,-0.43563727,0.3748984,0.07223683,-0.07621808,0.6348769,-0.6954947,-0.9210029,-0.71923465,-0.5263387,0.9991299,-0.22921439,-0.18418069,0.17837195,-0.62416637,-0.19405866,-0.028548243,0.64922106,-0.15202561,-0.046970066,-0.8271892,-0.28717962,0.14494146,0.5184375,-0.12254086,0.047799096,-0.41878936,0.6513295,-0.2559572,0.34306234,0.6426636,0.042861894,-0.6398906,-0.6738108,0.13278228,0.80735815,0.5456842,0.11644383,-0.24729644,-0.115608,-0.29052818,-0.009837595,-0.05403228,0.8517597,0.5592928,-0.30579168,0.075169295,0.4663347,-0.26786298,0.09003901,-0.20360284,-0.34450883,-0.33295125,0.0089197,0.6094962,0.8005609,0.018047772,0.38733646,-0.10400763,0.18157287,-0.00011255254,-0.4722594,0.39990455,1.0393215,-0.1764719,-0.23956423,0.78444237,0.41193935,-0.33213556,0.5125052,-0.44010332,-0.17039451,0.34569097,0.12757513,-0.4157189,-0.12761721,-0.38797104,0.18663901,-0.9073,0.52090716,-0.5051471,-0.8168682,-0.7979613,-0.016716236,-2.061126,0.19477202,-0.33389208,0.0017609055,-0.08131898,-0.21567431,0.27763864,-0.5530994,-0.827212,0.15681197,0.08909262,0.49934804,-0.20820111,0.1053926,-0.14345384,-0.42031842,-0.18116146,0.39631528,0.70723015,0.3006558,-0.0033137149,-0.4086934,-0.032561313,-0.281063,-0.353294,-0.22716756,-0.8073221,-0.59171253,-0.14741626,-0.95526373,-0.3325724,0.72001594,-0.52125835,-0.15566286,-0.19698097,-0.023828458,0.08139309,0.27412862,0.12931484,0.42750913,-0.027875386,-0.13071573,-0.41361457,-0.009680823,0.20284066,-0.014637343,0.17298488,0.4308077,-0.15728933,0.51206505,0.5680082,0.9231945,-0.15040445,1.0276965,0.55550456,-0.10879329,0.14328112,-0.24292308,-0.3322661,-0.7140287,-0.10441677,-0.23452897,-0.4683528,-0.36803588,0.254023,-0.45652235,-0.91880345,0.618834,-0.06788974,-0.12852322,0.23079894,0.11946089,0.30264872,-0.22163586,0.058218077,-0.34830818,-0.18498594,-0.39874098,-0.5902722,-0.656671,-0.6316295,-0.17446704,1.8166523,-0.08018537,0.12503968,0.30698967,-0.38983792,0.050795916,0.12668124,-0.15817569,0.17547627,0.42841384,0.26216373,-0.504347,0.089549996,0.038076185,0.027230626,-0.5698057,0.379483,0.86533254,-0.7376182,0.8368851,0.3237286,-0.083450936,-0.24885374,-0.83067954,-0.3841049,0.12121479,-0.22186762,0.55254537,0.37082988,-0.7399935,0.4171858,0.103832595,-0.39425784,-0.919023,0.47554156,-0.06171223,-0.048393294,0.13890827,0.43853852,0.021652712,-0.058049012,-0.16320866,0.5952897,-0.10721955,0.3420519,-0.07028243,-0.18111481,0.019191742,-0.41096982,-0.12446635,-0.8353842,0.1335107,-0.573354,-0.4876517,0.28700525,0.07291264,-0.09024886,0.24093547,0.50980383,0.43626326,-0.14046277,0.14209732,-0.29083708,-0.4688473,0.17256528,0.57283086,0.49318168,-0.3737898,0.57889783,0.03608865,0.0062706093,-0.33953813,0.15270714,0.31228474,-0.070570305,0.2794437,0.07784086,-0.07618472,0.020743402,0.9301016,0.11266823,0.39658755,-0.0001866384,-0.08585489,0.42951086,-0.032176927,0.3645252,-0.25441638,-0.5010073,0.095325775,-0.15142614,0.05877993,0.45690736,-0.013145796,0.16583626,-0.29998407,-0.29037923,0.05126447,0.18743557,0.23997688,-1.575201,0.44241562,0.08712968,0.6842595,0.70524734,0.15170978,0.025901074,0.7082427,-0.25820965,0.023247588,0.64604205,0.008734957,-0.25000712,0.45484307,-0.703797,0.5507443,-0.15324682,0.043142773,0.21880946,0.040613744,0.43612936,0.77236366,-0.080004595,0.12118824,0.035796225,-0.15766379,0.15821485,-0.26819485,0.25322434,-0.53762776,-0.44252107,0.79605204,0.5105621,0.331026,-0.30288947,0.017200138,0.07936413,-0.26833475,0.32513642,-0.0769414,-0.36167058,-0.07769528,-0.5260502,-0.09401669,0.7051011,-0.25401384,-0.0011009953,0.2602474,-0.078802325,0.27652708,-0.018539883,0.0100103235,-0.14351235,-0.9851116,-0.3233653,-0.64887637,-0.14239532,0.26982424,-0.50251174,0.019526029,0.13196093,0.23104735,-0.51740384,0.6007393,0.23501247,0.7008597,0.06848349,0.059167694,0.21041924,0.30425647,0.1994935,-0.20014256,0.12538098,-0.28145412,0.15453841,-0.59261686,0.56242794,-0.078715585,-0.42639494,-0.08816468,0.06481204,-0.09849275,0.4390252,-0.06647286,-0.16007967,0.06456887,-0.20920776,-0.29473355,-0.16731097,-0.26708066,0.31063703,0.1912828,0.11638225,-0.16533722,-0.115410835,-0.23947452,0.4937339,0.1892717,0.21590701,0.34641275,0.1516809,-0.5781553,0.07733124,-0.013182854,0.62240624,0.014810541,-0.21678708,-0.3682414,0.18508501,-0.18516959,0.31665742,-0.10027964,0.3670592,0.003093137,-0.48457956,0.9545923,0.22234932,1.2803477,-0.06559859,-0.35826316,-0.04704149,0.463014,-0.15482189,-0.15489559,-0.2752076,0.8515039,0.6493351,-0.22552441,-0.17795236,-0.38866755,-0.21322113,0.15292431,-0.15706943,-0.2733312,-0.08651,-0.7122141,0.057173252,0.24038324,0.23497868,-0.006705142,-0.19032536,-0.031878185,0.08277114,-0.107983716,0.09592509,-0.4026191,0.20397097,0.31264615,0.59689933,0.065668344,0.2038628,-0.21175328,0.40647122,-0.7684319,0.41763544,-0.36725938,0.101849645,-0.23503986,-0.28326824,0.043445673,0.08886793,0.26216888,-0.14220208,-0.1392665,-0.3209068,0.7440802,0.22456041,0.23582739,0.9352138,-0.26077938,-0.043343157,-0.026464462,0.4890684,0.87294096,-0.38013658,-0.20614992,0.055408403,-0.19725217,-0.46482122,0.4124399,-0.66287035,-0.060235653,-0.12801649,-0.20624839,-0.4944623,-0.012784478,0.19146647,0.19710898,-0.17553288,-0.75195104,0.25500843,0.43573388,-0.04497522,-0.1181539,-0.33037177,0.306266,0.8557444,-0.11596315,-0.4994601,-0.020242237,0.2624613,-0.20747961,-0.39063913,0.056503892,-0.6279978,0.1369218,-0.045974992,-0.43670645,-0.01077199,0.017927462,-0.47200254,0.042190325,0.2946822,-0.23486833,0.08091027,-0.12474439,0.0060378965,0.9807586,-0.053344704,0.37268278,-0.23311344,-0.669113,-0.99106634,0.08195592,0.12191666,0.47270393,-0.058089558,-0.6768582,-0.14659129,-0.111845754,-0.2678076,0.07864442,-0.5258486,0.47352713,0.22393483,0.3775569,-0.19222169,-0.8748722,0.09550223,0.2245631,-0.01627804,-0.32209295,0.45268822,0.07577453,1.0556295,0.070367545,0.03722987,-0.12984586,-0.5901698,0.312698,-0.27342656,-0.093762755,-0.39440182,-0.14659575 +208,0.48094773,-0.23860158,-0.30013043,-0.025000094,-0.2388775,0.20138207,-0.14960858,0.5479269,0.17246254,-0.35953978,-0.0719073,-0.21136868,-0.023702033,0.30317888,-0.08766325,-0.39100152,-0.09634764,0.25131783,-0.5374326,0.49428004,-0.4381542,0.2961766,-0.13540448,0.453493,0.14617914,0.2526216,-0.044988804,-0.07596849,-0.26935196,-0.11219856,-0.09601094,0.3170159,-0.6010143,0.10553435,-0.12432642,-0.31617945,-0.05107995,-0.5480808,-0.31004798,-0.7437371,0.30880618,-0.80095994,0.4277609,-0.020778785,-0.2715774,0.4409892,-0.06892544,0.33029297,-0.257792,-0.01838027,0.18109357,-0.15719628,0.02845313,-0.19886893,-0.09228996,-0.092127405,-0.521562,0.09713532,-0.32982334,-0.24963644,-0.33011198,0.06924977,-0.33210126,-0.025673907,-0.0489626,0.2832284,-0.5038614,0.08793751,0.061591223,-0.054312073,0.11160971,-0.525059,-0.110816374,-0.13401173,0.27401885,-0.20301226,-0.13378093,0.4100634,0.19858053,0.52459776,-0.099893466,-0.11313507,-0.3705387,0.043928362,0.04549007,0.5433246,-0.16711159,-0.46042344,-0.060904622,0.023330627,0.23489857,0.0779556,0.072785154,-0.19717532,-0.2994115,0.002852857,-0.10263932,0.26573864,0.45566952,-0.35185927,-0.30679816,0.3221241,0.5475408,0.17517619,-0.041652378,0.030668724,0.014659807,-0.50608313,-0.12552293,0.093766764,-0.16917557,0.42226368,-0.061186876,0.24859342,0.7056362,-0.2010166,-0.008729614,-0.045947466,0.0786562,-0.009681519,-0.21832275,-0.27442467,0.2199578,-0.325982,0.20469172,-0.18420048,0.73749834,0.17569482,-0.84804547,0.3549836,-0.47045425,0.14348112,0.009528004,0.5478258,0.68940973,0.47292492,0.48182374,0.68330216,-0.38417798,0.126885,-0.15724365,-0.23388878,-0.027537977,-0.22809248,-0.12497527,-0.48905334,0.106436186,-0.022950608,-0.18771689,0.14449352,0.21989608,-0.6358038,0.08375803,0.12252452,0.7791818,-0.23975328,-0.013994671,0.80068797,0.9106835,0.9057025,0.039287146,1.047061,0.21953063,-0.23737323,0.30064726,-0.37900352,-0.6766411,0.18340303,0.31855565,0.04154427,0.17215186,0.1956718,-0.09437573,0.40423968,-0.47201282,-0.0045509897,-0.14818458,0.08608641,0.16867884,-0.093144834,-0.32565454,-0.2675106,-0.13035208,-0.005152218,0.0012831539,0.3271709,-0.28360665,0.42339206,-0.009256732,1.9210007,0.050869644,0.09018035,0.08548267,0.5263887,0.11223605,-0.14386383,-0.14696935,0.3942846,0.36283892,0.0014436366,-0.53753114,0.10559409,-0.13927032,-0.468484,0.058781084,-0.3025853,-0.111648686,-0.064353,-0.4037661,-0.23631257,-0.13838907,-0.23665997,0.4337395,-2.7938614,-0.09615103,0.02402972,0.35522187,-0.22123662,-0.35205954,-0.041017845,-0.4453658,0.31502807,0.27382284,0.4632851,-0.70432156,0.25081664,0.28351146,-0.5179935,-0.15955025,-0.633946,-0.111667044,0.08010071,0.3647671,-0.012970487,-0.0574525,0.025479328,-0.007885039,0.49419594,-0.04814195,0.098732434,0.321114,0.40711433,0.111377776,0.41816473,-0.022889309,0.45121205,-0.21553366,-0.24387647,0.29852948,-0.39618775,0.22508521,0.055622347,0.12959792,0.3959161,-0.46136898,-0.8550121,-0.6719191,-0.10571006,1.1787012,-0.14889845,-0.45674002,0.28352237,-0.30114383,-0.20771942,-0.16014084,0.41374975,-0.053192157,-0.25885576,-0.8042494,-0.09001459,-0.09836838,0.29667988,0.037611604,0.014367102,-0.35976732,0.61761206,-0.13207678,0.41947138,0.34658736,0.12007624,-0.15594083,-0.4063189,0.08571389,0.84745693,0.3057388,0.1803968,-0.18875402,-0.26144722,-0.2715176,-0.12214848,0.053138066,0.43100202,0.5858866,0.019739553,0.14352542,0.22452118,-0.0734298,-0.08740714,-0.2785325,-0.09442474,-0.098788075,0.06006341,0.5452841,0.5615978,-0.18495066,0.47277117,-0.014453169,0.07445637,-0.12541766,-0.4169452,0.5370603,0.79615366,-0.08888079,-0.17831889,0.44286335,0.46064216,-0.20240894,0.4127709,-0.6001991,-0.28506887,0.50375694,-0.24971306,-0.34693757,0.2549107,-0.21199606,0.1465381,-0.7871322,0.269803,-0.15116552,-0.47953755,-0.59310514,0.008776873,-2.9608345,0.0712704,-0.15206236,-0.3900951,-0.02265054,-0.17443383,0.048663076,-0.53543925,-0.43153778,0.08035851,0.13623895,0.71483815,-0.08552752,0.033266865,-0.23311338,-0.29786485,-0.39870435,0.036090072,0.118839756,0.40114307,0.07056351,-0.4915855,-0.08279076,-0.2128294,-0.3793412,0.0017565899,-0.5409647,-0.43600845,-0.18397948,-0.47406176,-0.2700003,0.6176975,-0.29015857,0.07613603,-0.2720217,-0.10744342,-0.13355437,0.35825497,0.21249133,0.12250224,0.02824933,-0.13614096,0.11404399,-0.2840954,0.34605017,0.048743602,0.20620245,0.5218863,-0.18870421,0.15577763,0.4874923,0.63913345,-0.09557979,0.7788463,0.49608177,-0.075491354,0.3004126,-0.36603305,-0.17775866,-0.45002967,-0.25907516,-0.059319034,-0.43998283,-0.47020912,-0.1074462,-0.40103367,-0.7558819,0.4811361,-0.13812125,0.097354695,-0.030984692,0.2858436,0.5456389,-0.20007007,-0.007920565,-0.16479072,0.02300191,-0.4375947,-0.30070135,-0.5918128,-0.4063639,0.1022207,1.0313703,-0.10810758,0.005298279,0.11663644,-0.23054597,-0.05556495,0.06671918,-0.07371173,0.16090776,0.37673223,-0.109295756,-0.66639775,0.47527367,0.0016879104,-0.21052274,-0.51916283,0.20099446,0.44356537,-0.55397445,0.47064006,0.114350654,0.030210592,-0.057996422,-0.44381747,-0.18627317,-0.09344833,-0.17666966,0.30823958,0.115796365,-0.6859392,0.44690967,0.3742014,-0.2832114,-0.71802115,0.26316136,-0.024008185,-0.4398845,0.074158385,0.16764134,0.05622113,0.027771134,-0.26449898,0.20590925,-0.49305677,0.2894059,0.26324755,-0.043077864,0.27359903,-0.25356507,-0.23246315,-0.66338176,0.05800199,-0.3758129,-0.29184616,0.20877801,0.18722878,0.09831609,0.14068234,0.10827011,0.40214884,-0.27669168,0.019895103,-0.09360536,-0.10176037,0.20251402,0.43817374,0.4450103,-0.43167484,0.5520883,0.05136137,-0.10676138,-0.08094059,0.030429471,0.40207392,0.07882586,0.19181578,-0.0062134415,-0.3335752,0.25392216,0.6874475,0.30236518,0.50111425,-0.10641861,-0.21216688,0.34093642,0.17292279,0.25054237,0.06400442,-0.38732725,0.14262526,-0.19678031,0.09864897,0.42128026,0.16793221,0.29949665,-0.054728962,-0.27458635,0.076192714,0.1965721,-0.110075474,-1.224906,0.24111271,0.1329777,0.86651874,0.44192693,0.02406301,0.21003477,0.7354872,-0.28564095,0.08553866,0.2730211,-0.071232036,-0.63270485,0.5292305,-0.7128775,0.48098224,0.031066163,0.028601445,0.09655996,-0.042231143,0.44019043,0.5846075,-0.1688681,-0.03953173,-0.012647884,-0.24722663,0.05414713,-0.32365775,0.08331666,-0.618399,-0.18651219,0.6361207,0.43773395,0.31131798,-0.1954574,0.09309144,-0.0056514665,-0.10041557,0.09747506,0.16410851,0.15269972,-0.030602295,-0.5080737,-0.1501116,0.5513681,-0.16528478,0.13016973,-0.007828962,-0.2669562,0.24128127,-0.18802693,-0.26035202,-0.15511036,-0.625161,0.05433523,-0.2555739,-0.30671242,0.40453735,0.120526254,0.38404596,0.22809967,0.063465565,-0.3733701,0.41239965,0.26081622,0.8423704,0.022582572,-0.18538882,-0.31288368,0.26741102,0.18942356,-0.14250967,-0.13903265,-0.11482568,-0.09246783,-0.49182892,0.36969638,-0.096992396,-0.24392799,0.10061989,-0.09183417,0.09992617,0.5141251,-0.0814606,-0.09941515,-0.096598946,-0.22373052,-0.4326509,-0.1115736,-0.14933652,0.26528704,0.29210028,-0.13864551,-0.108344905,0.07501025,-0.09140473,0.5536159,-0.059416655,0.23292978,0.20892583,0.09812011,-0.3691783,-0.091804296,-0.009101048,0.44699264,-0.029323041,-0.09736256,-0.32143208,-0.39759883,-0.40090612,0.13745178,-0.1773397,0.45271242,0.11723212,-0.3655646,0.82917917,0.022415232,1.0378525,0.04935099,-0.27882168,0.24663676,0.51421773,-0.034264803,-0.03347092,-0.33336172,0.77713156,0.4986314,-0.09357107,-0.02414795,-0.2115663,-0.11721895,0.26570675,-0.18895034,-0.067024775,-0.0066356696,-0.53537995,-0.2898415,0.2689854,0.2593329,0.24782525,-0.1248029,-0.010207702,0.20709014,0.010166745,0.19115588,-0.2486355,-0.23080109,0.27071327,0.15609875,0.1328617,0.034350395,-0.45809066,0.38410532,-0.50357366,0.051429264,-0.13314939,0.19799206,-0.18858284,-0.25259447,0.21101749,0.14607246,0.300871,-0.3177878,-0.31536537,-0.34560037,0.4385128,0.06675729,0.17119418,0.43717423,-0.30342695,0.15876529,-0.003624227,0.35703045,0.84765756,-0.20999296,0.061796766,0.3976556,-0.23892179,-0.51829875,0.44637352,-0.20217413,0.14312439,-0.10048193,-0.09926212,-0.5566832,0.2306734,0.22330955,0.13826858,-0.04699129,-0.5674144,-0.25463885,0.35977653,-0.25240508,-0.23900343,-0.37025124,0.1557414,0.6975266,-0.20367672,-0.3816253,0.18559685,0.22619551,-0.20831965,-0.46149313,-0.068967365,-0.39745688,0.27468917,-0.025485106,-0.3748749,-0.07442251,0.06785735,-0.37016144,-0.019399107,0.09899312,-0.35495645,0.045038838,-0.3791277,0.09237096,0.9704188,-0.20972928,0.27767873,-0.6030212,-0.3539393,-0.9620386,-0.30873048,0.56180006,0.19040439,-0.006753806,-0.6287915,0.070944615,-0.1205737,-0.36100817,-0.08035524,-0.47389075,0.4470423,0.15231833,0.18415347,-0.104631424,-0.6343031,0.13140526,0.058737308,-0.17342974,-0.5047136,0.5090767,0.06607043,0.83702415,0.121131726,0.102602154,0.2501454,-0.5236242,0.07675335,-0.23239379,-0.16120094,-0.5660917,0.051340446 +209,0.5166831,-0.197674,-0.45583352,-0.2714886,-0.15386327,0.1564386,-0.19201078,0.6088814,0.08774691,-0.49703678,-0.1974895,-0.083018675,0.010965894,0.1619749,-0.16216318,-0.410047,-0.030816708,0.14929064,-0.4425927,0.5257484,-0.5408148,0.24777715,0.022337874,0.42543745,0.21790278,0.13498141,-0.070985965,0.06292809,0.02206598,-0.12837999,0.00353969,0.3074193,-0.64660084,0.069323935,-0.2634762,-0.48013762,-0.21981438,-0.34015378,-0.39921302,-0.77372044,0.37288824,-0.9750245,0.45140433,0.08851508,-0.38606265,0.50543797,0.050675076,0.06476377,-0.2744526,-0.067180805,0.18426538,0.02142099,-0.036781516,-0.090062134,-0.0848412,-0.38436726,-0.55906045,0.05841765,-0.31626695,0.08811305,-0.351194,0.06001955,-0.33227155,-0.016003622,-0.022186544,0.30735472,-0.47259936,0.12738289,0.08013679,-0.0016425401,0.32520434,-0.6012966,-0.22512843,-0.17237656,0.26003784,-0.3230693,-0.3595803,0.2350864,0.47923392,0.48466226,-0.20929305,-0.06899541,-0.27411306,0.055406477,0.09391109,0.4453135,-0.22560754,-0.42423862,-0.23401639,-0.19920704,0.203971,0.2059162,0.19612142,-0.16802083,-0.15480173,0.045139723,-0.30692324,0.40298194,0.47318077,-0.31371385,-0.30899626,0.2829674,0.47415286,0.28071183,-0.1534694,0.058093064,0.015299943,-0.5430306,-0.080437385,0.056392066,-0.21454433,0.59988153,-0.27452415,0.1894492,0.5861845,-0.11973464,-0.014478858,0.1937797,0.0365447,-0.15828136,-0.41504547,-0.24629661,0.30572513,-0.56425995,0.29698446,-0.25528154,0.6220526,0.109110214,-0.7053555,0.32250407,-0.55631787,0.16430584,-0.16075245,0.45236015,0.8683786,0.37350193,0.31397614,0.6443781,-0.4083707,-0.17170143,-0.032153986,-0.1316924,0.14359483,-0.19260442,-0.071507335,-0.52264607,0.06555573,-0.0014931826,0.011942565,0.10274904,0.74012935,-0.40602937,-0.13409996,0.2186232,0.6924478,-0.32543817,-0.043687906,0.9276909,1.042758,1.1220547,0.22272635,1.1541958,0.20100018,-0.22600053,0.29511538,-0.08605312,-0.82182056,0.26299495,0.29007548,0.35856006,0.11092679,0.071175136,-0.057332166,0.3976931,-0.41178432,0.056703985,-0.186426,0.1259109,0.17466919,-0.078356765,-0.27635634,-0.40294117,-0.046854835,0.21372247,0.08808299,0.20815697,-0.15682487,0.3897961,0.14360367,1.4345146,-0.009172448,-0.046430357,0.021710223,0.41760498,0.24073829,-0.2477713,-0.091094315,0.27791238,0.43609434,-0.0240833,-0.6700025,0.14137135,-0.10450121,-0.5087784,-0.13666351,-0.41558293,-0.25796202,0.009950412,-0.5610992,-0.22179832,-0.11374976,-0.3137692,0.4308657,-2.7722325,-0.27898553,-0.016468413,0.35710615,-0.10141075,-0.36198428,-0.206026,-0.48581514,0.5533982,0.33693415,0.44235054,-0.68447334,0.2602274,0.3977857,-0.5292264,-0.091759086,-0.63811195,-0.28250533,-0.049464643,0.15078287,0.07856243,-0.03739358,0.18060623,0.1873511,0.535665,0.03574378,0.21554421,0.26456448,0.44888455,-0.077153586,0.48203734,-0.023927795,0.50068444,-0.23777425,-0.24491212,0.3971185,-0.37736556,0.25765982,-0.34102294,0.12002629,0.57247275,-0.5371688,-0.93736106,-0.7643795,-0.22118463,1.0917922,-0.18921673,-0.39693403,0.17447151,-0.594745,-0.18653785,-0.11166946,0.55886334,-0.18898296,-0.11172695,-0.9122701,-0.05611309,-0.0423289,0.0112728905,-0.07965133,-0.041090924,-0.42383024,0.81462914,-0.041790985,0.5569677,0.335347,0.08702988,-0.27554813,-0.46168095,0.100211635,0.60875195,0.38815048,0.15494789,-0.42585388,-0.16819882,-0.4352971,-0.008747523,0.18265931,0.43267563,0.50273323,-0.07736171,0.24456522,0.22754875,0.033647884,0.0082366215,-0.21009561,-0.107762575,-0.21616848,0.10117589,0.7030557,0.6612659,-0.1516319,0.18734398,-0.11996955,0.11078715,-0.17171533,-0.524484,0.4944691,1.1356484,-0.08176337,-0.26754743,0.51405984,0.6192169,-0.18530692,0.4111724,-0.54226196,-0.29196268,0.25549728,-0.18968882,-0.30190417,0.1499207,-0.45395353,0.1332982,-0.85776,0.1355628,-0.30149814,-0.37824973,-0.597817,-0.12518853,-3.1715894,0.15251192,-0.1779964,-0.16759038,-0.24539863,-0.4275167,0.36274794,-0.48525524,-0.6978821,0.09714295,-0.014490762,0.7218136,-0.032301396,0.08414853,-0.23174092,-0.25298256,-0.3274409,0.045633394,0.163999,0.43842125,-0.067709394,-0.3323771,-0.06022862,-0.21212682,-0.3730612,-0.07577356,-0.4383934,-0.461304,-0.027078155,-0.39180905,-0.37692896,0.4745974,-0.31635052,0.1023088,-0.1326691,-0.13904569,-0.12241965,0.3775498,0.149616,0.20562495,-0.037056204,-0.050343685,0.08644293,-0.2651728,0.216609,0.025405064,0.012994351,0.43524984,-0.16620626,0.19697817,0.51220423,0.6404918,-0.14342412,1.0506028,0.50174063,0.11680973,0.30057663,-0.25561592,-0.22685197,-0.63011396,-0.12679923,-0.09846075,-0.53872854,-0.44359583,0.06642272,-0.43757495,-0.7914023,0.4007062,-0.0083988095,0.11623667,0.13595508,0.18120895,0.46260494,-0.1363516,0.058578152,-0.13706595,-0.068530396,-0.6097668,-0.3661725,-0.7176165,-0.5157261,-0.03575725,0.9128054,-0.10088291,-0.095077865,0.102855965,-0.2396485,0.12945084,0.24947669,-0.026867354,0.04350436,0.4019003,0.018619657,-0.5351768,0.43315288,0.06218179,-0.29194897,-0.6057325,0.19045623,0.4913158,-0.6176831,0.6281236,0.4117875,0.043187957,-0.16683818,-0.68227535,-0.17906524,-0.1551785,-0.30261287,0.5048354,0.3119327,-0.9185051,0.47062013,0.4167039,-0.09925691,-0.7475968,0.6598233,-0.08524169,-0.19826838,-0.080098346,0.27291438,0.12672387,0.032959152,-0.063837685,0.34521493,-0.50522894,0.27946788,0.18685447,-0.03568272,0.39963955,-0.24979655,0.10569478,-0.59339684,-0.10608267,-0.4961246,-0.27012548,0.13748546,0.036430605,0.13658795,0.2840304,0.18191887,0.35886732,-0.23410831,0.09404834,-0.1784434,-0.23866679,0.11759067,0.3707252,0.6083764,-0.39013085,0.6771328,0.013203687,-0.06208714,0.12378864,0.22249807,0.37376216,0.11001627,0.43096378,-0.017721236,-0.19986565,0.14372976,0.9096452,0.26154473,0.4409118,0.038102593,-0.17770688,0.234107,0.14552483,0.3652287,-0.1478457,-0.5055173,0.063399754,-0.34916258,0.17605035,0.4400801,0.09658366,0.22012755,-0.12231069,-0.25332496,-0.045762923,0.17481096,0.019381497,-1.4147089,0.3895304,0.23313698,0.9704078,0.6186,-0.16749428,0.10677492,0.553288,-0.31147024,0.16220692,0.36410686,0.061904483,-0.44220868,0.44997725,-0.8401466,0.4420646,-0.117435984,0.010261512,0.017626464,-0.11805455,0.4967982,0.6790838,-0.12597084,0.15117475,0.16092913,-0.4206285,0.31996197,-0.47776613,0.029755037,-0.46444267,-0.04104003,0.83276683,0.56920165,0.35207444,-0.2969475,-0.0004952167,0.014507145,-0.13550498,0.01279839,0.09479062,0.10893845,-0.18092921,-0.7101218,-0.13970447,0.4844877,0.06931196,0.2741335,0.07963883,-0.36083913,0.2756412,-0.13338406,-0.0010657395,-0.088206224,-0.77488613,-0.12406138,-0.38351914,-0.39507368,0.5367932,-0.1058945,0.22926642,0.3557027,0.055920072,-0.23501883,0.2132874,-0.07069627,0.70730793,-0.020633025,-0.10430844,-0.50402194,0.13250072,0.27251008,-0.17933282,-0.19106998,-0.21135817,0.100969926,-0.35093012,0.5678895,-0.05875845,-0.22457601,0.17577672,-0.017604634,0.08595795,0.6417486,-0.19918048,-0.19224904,0.016667988,-0.097218044,-0.35828286,-0.12159586,-0.124348916,0.28243628,0.1566094,0.00815977,-0.11420192,-0.095897265,-0.044833098,0.43169394,0.0716206,0.46964136,0.35230634,0.12748556,-0.38318732,-0.10637413,0.31010917,0.5866403,-0.15488067,-0.22938831,-0.31392995,-0.48907274,-0.27899975,0.3593693,-0.077019945,0.41742688,0.093087435,-0.11116964,0.6459624,-0.062157642,0.7989122,0.14386462,-0.42976686,0.22670822,0.49514195,-0.055223916,-0.20651881,-0.22519806,0.6282421,0.43080625,-0.16060375,-0.23910482,-0.18859304,0.119992316,0.0736308,-0.19015343,-0.08666147,-0.10068749,-0.784085,-0.16351727,0.12486539,0.29656538,0.19828211,-0.13984807,0.05746889,0.19862786,-0.044184346,0.30164936,-0.47050974,-0.19178568,0.3564624,0.28596595,-0.14305992,0.07047294,-0.277849,0.30743244,-0.34981266,-0.102239266,-0.33355215,0.18224396,-0.27967793,-0.28616908,0.18148422,0.119756386,0.20682034,-0.15427348,-0.30722398,-0.35829452,0.45720387,0.12780945,0.17706625,0.44141027,-0.21806832,0.11481727,0.1859756,0.42339712,0.9707624,-0.16026123,-0.057613578,0.22219324,-0.39971823,-0.5471607,0.42602563,-0.42047808,0.34475046,0.115002505,-0.06898565,-0.5381945,0.2153066,0.21054517,0.100664906,0.1618449,-0.7660045,-0.19330049,0.29587156,-0.26001367,-0.059945304,-0.36299723,-0.06283042,0.5538613,-0.16080835,-0.14208426,0.117730394,0.32837096,-0.2324836,-0.6157785,0.14420497,-0.5234307,0.37558052,0.026360145,-0.3586579,0.0620658,0.16573414,-0.43179664,0.23228595,0.095481925,-0.31309244,0.07301719,-0.51828355,0.16786547,1.0146847,-0.2500007,0.24683043,-0.3428247,-0.5385999,-0.83520514,-0.29342058,0.46899748,0.21934067,0.049631294,-0.63807344,-0.052770235,0.03004642,-0.13844682,-0.0968654,-0.36383343,0.5708831,0.14857507,0.33393297,0.033326294,-0.64485806,0.083291784,0.031928334,-0.237482,-0.42445108,0.6012672,-0.0242561,0.79982656,0.14344785,0.113484204,0.1643076,-0.5202685,0.021640416,-0.17935468,-0.0713818,-0.6009155,-0.041665077 +210,0.4692182,-0.15126151,-0.2879655,-0.19129989,-0.2817441,0.07484869,-0.08445683,0.25939167,0.28944683,-0.2962572,-0.14814848,-0.32371014,3.988009e-05,0.3393238,-0.1998523,-0.7077353,-0.10560738,0.029046072,-0.67465854,0.38618386,-0.5065337,0.34948397,0.1989065,0.43884298,0.13469759,0.12942328,0.3122273,-0.031582076,-0.06805702,-0.06334999,-0.22218381,0.12549919,-0.7455302,0.08282064,-0.0179835,-0.20310394,-0.21924551,-0.4305693,-0.4285761,-0.7095928,0.473327,-0.97187245,0.47098827,-0.16473047,-0.2984408,0.05928543,0.11723181,0.25260606,-0.17870876,-0.0487394,0.21044111,0.0070486804,0.076057404,-0.022851877,-0.25905547,-0.46431792,-0.5510334,0.102001436,-0.4233192,-0.17794129,-0.1949146,0.2633137,-0.2712339,0.086065836,-0.13985915,0.47709432,-0.2667828,0.089960486,0.22724012,-0.24700134,0.36124516,-0.5862059,-0.17961222,-0.14098272,0.09842922,-0.04257135,-0.25777876,0.21463236,0.46748763,0.40151146,-0.118470006,-0.17973208,-0.18967764,0.07420229,0.11465342,0.35214835,-0.08818192,-0.42390364,-0.26394895,0.0057744337,0.27794585,0.12631956,0.26826817,-0.4238615,0.08619371,0.07209378,-0.14052805,0.44562736,0.59466106,-0.105497964,-0.37317255,0.28881967,0.2859655,0.23601294,-0.092502944,0.002853843,-0.019784676,-0.5461273,-0.10265077,0.17639494,-0.1346452,0.6386148,-0.16117543,0.29726207,0.7367413,-0.054988716,0.17904687,-0.14901659,-0.092427365,-0.20699804,-0.12892406,-0.041326173,-0.040911045,-0.42149228,-0.005229354,-0.25193974,0.70641243,0.19584288,-0.84343845,0.39814594,-0.5199574,0.24921972,-0.09094617,0.49438703,0.8399864,0.34735987,0.15361309,0.847626,-0.6427988,-0.0060018804,0.14967027,-0.49643564,0.1948519,-0.34238088,0.100830466,-0.5456099,-0.21543679,0.2194362,-0.04380101,0.022998022,0.44201294,-0.43514436,-0.0069326963,-0.19621634,0.7563267,-0.27169067,-0.077529564,0.8884417,1.0522996,1.0091364,0.24552242,1.4729917,0.35603106,-0.101451226,0.35050157,-0.2951392,-0.7760446,0.28760785,0.30738664,-0.2532558,0.44862592,-0.03369107,-0.051216938,0.28651226,-0.24296631,0.07727598,-0.12759386,0.16123417,0.1700091,-0.19698414,-0.22884156,-0.27778453,0.151661,0.13035382,0.083438925,0.14632195,-0.13953026,0.45797715,0.11858865,1.3216622,0.012154171,0.016605474,0.014846722,0.3927154,0.08484897,-0.18446445,-0.024354119,0.21646637,0.46020496,0.12674221,-0.5337619,0.12756455,-0.23011857,-0.47414553,-0.21702102,-0.2675649,-0.22127149,-0.0040431437,-0.32168415,-0.23208156,0.050836615,-0.41534182,0.4508097,-2.457977,-0.16905585,-0.25864962,0.40441763,-0.21186827,-0.18594892,-0.1332112,-0.52324396,0.3118884,0.6053275,0.26578444,-0.7971679,0.22054657,0.25252402,-0.43704638,-0.21597226,-0.7118807,0.034125272,0.038172044,0.43552145,0.027294952,-0.08788026,0.036572695,0.22277474,0.5551199,0.25090423,-0.1419058,0.18201467,0.61102957,0.01812965,0.49457985,-0.008365576,0.42873663,0.02211269,-0.025291543,0.5042498,-0.49895513,0.20509934,0.11316304,0.1648868,0.49866676,-0.43764466,-0.70830715,-0.79553753,-0.5128994,1.2920501,-0.2650935,-0.40640238,0.23150781,-0.15556327,-0.31481007,-0.08705803,0.7594529,-0.2367428,-0.006934496,-0.77594566,-0.08272943,0.032062773,0.24602129,-0.18070933,0.0748666,-0.38261622,0.8008626,-0.11691423,0.39129984,0.25321463,0.14247242,-0.32017425,-0.5986729,0.10874491,0.8221239,0.35244545,0.0763476,-0.17909224,-0.043466635,-0.39428207,-0.26882437,0.07925472,0.67341673,0.6274785,0.013858325,0.11562058,0.2615027,-0.15954575,0.04907731,-0.16974145,-0.23922132,-0.054871604,-0.027349569,0.6128362,0.79167217,-0.32144216,0.36186054,-0.2551832,0.14624995,-0.12127287,-0.45407847,0.6307484,0.97831315,-0.22172032,-0.29955056,0.35503995,0.35065684,-0.48197585,0.39477363,-0.45432875,-0.27675003,0.501949,-0.03582336,-0.53494054,0.23015748,-0.2836239,0.055319443,-0.87534374,0.43384597,-0.10517417,-0.45312506,-0.63221484,-0.13724683,-3.450203,0.13319525,-0.15086296,-0.28462192,-0.2524904,-0.181594,0.35909462,-0.5764867,-0.57148796,0.032248277,0.009426688,0.50315166,-0.06845225,0.20931944,-0.2391945,-0.08119499,-0.3569454,0.16602851,0.12842754,0.31225622,0.09160225,-0.24334778,0.07699507,-0.33668762,-0.5236653,-0.0743124,-0.5294723,-0.78271234,-0.13726388,-0.43192673,-0.30993143,0.6725844,-0.3997436,-0.08313378,-0.28701484,-0.13640653,-0.20730409,0.5696728,0.032864764,0.05110242,0.047607407,-0.017228732,-0.16722092,-0.2674811,0.36209363,0.11624189,0.26642525,0.44456258,-0.25942644,0.38745007,0.4981267,0.6777044,-0.021550976,0.6603353,0.280494,-0.0895184,0.36083874,-0.24626628,-0.18284185,-0.5326873,-0.20596933,0.077152856,-0.39554217,-0.42698243,-0.24841148,-0.3474889,-0.7832312,0.19956191,-0.12391749,0.30732638,-0.040634137,0.115511164,0.39385203,-0.013786004,0.21128358,-0.07189399,-0.1863955,-0.5715102,-0.48166865,-0.5615117,-0.71019226,0.13716021,1.0370013,0.10321458,-0.21624176,-0.005649195,-0.40263933,0.06932657,-0.15045819,0.09242083,0.14835018,0.18199466,-0.15487258,-0.8301507,0.44234136,-0.09666462,-0.07856459,-0.6326328,-0.0065057073,0.8166592,-0.5553943,0.5473661,0.28630832,0.09272477,-0.062057927,-0.42905095,-0.2597915,0.0558296,-0.16483012,0.5221275,0.27851826,-0.46868816,0.33602884,0.17935716,-0.059496615,-0.55857384,0.47468847,0.03145617,-0.12239301,0.004265235,0.25329557,-0.17955726,-0.043570545,-0.09629713,0.19216159,-0.4636268,0.18969965,0.2639287,0.15903912,0.5446277,0.12111168,-0.117878124,-0.60288864,0.09437247,-0.30113563,-0.24220656,0.13415529,0.1914034,0.22964169,0.103175215,0.010930561,0.33026358,-0.16068126,0.09807301,0.047816046,-0.19637702,0.2824564,0.51834303,0.47153908,-0.51447767,0.5076419,0.034514345,-0.06535162,0.14887792,0.011236429,0.38597852,0.4787718,0.23914704,0.08634117,-0.18030581,0.10091209,0.6320263,0.13192937,0.46277273,0.1647845,-0.22094774,0.40618497,0.12710427,0.2823478,0.0059239496,-0.4927665,-0.11976742,-0.25554737,0.14069936,0.39464834,-0.010201901,0.13262579,-0.0928929,-0.2819374,0.103843324,0.052924316,-0.07277811,-1.3157188,0.2891479,0.36869505,0.70483536,0.4648605,-0.2537824,0.01920676,0.52693856,-0.23786896,0.15148821,0.43255508,0.21104702,-0.54613656,0.3952902,-0.609973,0.42260933,-0.1541083,-0.035894595,0.03461606,0.18542838,0.27373472,0.90538347,-0.0639072,0.057277746,0.020194994,-0.33529922,0.151516,-0.4796556,0.19824305,-0.5213477,-0.30830485,0.62084705,0.46106866,0.1955475,-0.38380045,-0.024248544,-0.057488378,-0.12955667,0.10822983,-0.18333776,-0.15146652,-0.024989413,-0.86110145,-0.21102165,0.5035419,-0.06653492,0.0072293878,0.13258201,-0.29078537,0.10258235,-0.18125485,-0.1094447,-0.086803265,-0.6594654,-0.1933225,-0.17924394,-0.46303156,0.33020046,-0.3424552,0.18505278,0.29399985,0.08435463,-0.30768377,0.09538336,0.27602738,0.82158285,-0.048488695,-0.08023442,-0.521862,0.14238922,0.2785393,-0.33286998,-0.25320333,-0.113189094,0.039433543,-0.22803885,0.48273486,-0.06574695,-0.28183615,0.08891388,-0.102033734,0.083265506,0.4884562,-0.32815966,-0.179245,0.1699324,-0.05875471,-0.2516578,0.118954584,-0.32652488,0.31613237,0.192611,-0.085273035,0.13981281,-0.088085644,-0.08837045,0.31338364,0.106747225,0.3659151,0.42122588,-0.018260416,-0.4205607,-0.07664799,0.00873574,0.50724983,0.32046568,-0.0954277,-0.41010433,-0.443443,-0.32518154,0.46041358,-0.0912881,0.068567075,0.11614014,-0.5957278,0.67668355,0.20769297,1.1548313,-0.028347263,-0.3116562,0.04583689,0.5247623,0.12777436,-0.045098886,-0.61634356,0.9235066,0.590879,-0.23859484,-0.14872965,-0.41513067,-0.1455957,0.31649685,-0.26970905,-0.2606497,-0.070337184,-0.87462336,-0.18097426,0.003105047,0.13942209,-0.11809724,0.11656691,-0.03835003,0.08427711,0.032606475,0.5089816,-0.3480193,-0.08241967,0.23652197,0.14536443,0.07572847,0.14605643,-0.43270296,0.36063495,-0.59054404,0.13404725,-0.4182153,0.107846774,-0.077915944,-0.32885394,0.1750873,0.10439094,0.36513254,-0.26733577,-0.37352088,-0.37074852,0.6721524,0.19254535,0.34656623,0.64948076,-0.14395258,-0.10287972,0.12157425,0.6542445,1.601829,0.028090578,0.13669346,0.24338792,-0.4343751,-0.7052558,0.18122277,-0.3203897,0.2660874,-0.16939312,-0.17100471,-0.32013002,0.28016308,0.0023442002,0.06468559,-0.029260593,-0.4729799,-0.43117955,0.52264184,-0.33969295,-0.27978522,-0.41174617,0.122123,0.5467819,-0.31659728,-0.17184684,-0.007642863,0.4282333,-0.26463646,-0.5189349,-0.106776014,-0.21059991,0.46184734,-0.006886739,-0.31410158,-0.012755742,0.27355295,-0.44330853,0.3588856,0.009945769,-0.4195938,0.07831415,-0.10155775,-0.2022937,0.9373427,-0.11698857,-0.053034898,-0.79317605,-0.532501,-0.86608917,-0.4538935,0.14668192,0.21928841,-0.18147582,-0.5188217,-0.22295325,-0.021493673,0.2019655,0.08265877,-0.5471984,0.45171517,0.09804834,0.6945441,-8.275876e-06,-0.83761215,0.02592674,0.08305315,-0.16516961,-0.6877482,0.68435127,0.013659615,0.5893946,0.058093026,0.16073802,0.23072457,-0.56513774,0.25591046,-0.28701305,-0.2809969,-0.7523048,0.3273338 +211,0.39340746,-0.22584367,-0.73725164,-0.09378685,-0.42159316,-0.05323661,-0.29728916,0.5093676,0.17373498,-0.34982756,-0.10708194,-0.04369543,-0.15441066,0.49336067,0.024733594,-0.6232207,0.07283921,0.48609814,-0.8786119,0.7366172,-0.34782538,0.37687668,0.2202669,0.35437223,0.21799657,0.12185968,0.017343411,0.1772024,0.062446337,-0.24009758,-0.22161704,0.2735797,-0.5879956,0.25800174,-0.108786345,-0.53776544,-0.2148826,-0.4119492,-0.28292242,-0.8665381,0.23021507,-0.83012617,0.63354564,-0.054337006,-0.4175451,0.030247709,0.10389013,0.32313105,-0.1307589,-0.080844775,0.19553845,-0.28251314,-0.33170277,-0.26391447,-0.1635177,-0.34702015,-0.45160997,-0.00630101,-0.5738773,-0.06169249,-0.27707258,0.29745606,-0.27219975,0.019218417,-0.20950922,0.38286403,-0.40560627,-0.059020206,0.070953526,-0.25627783,0.19399221,-0.65047514,0.014960198,-0.22806175,0.18647908,-0.07574313,-0.5464106,0.2647087,0.14282405,0.6620049,0.15389398,-0.29501435,-0.24552114,-0.06376564,-0.0367578,0.46646485,-0.18043306,-0.23490418,-0.23949772,0.13598341,0.49730793,-0.023474813,0.1661912,-0.33105835,-0.08926788,-0.20588763,-0.085303456,0.3924196,0.4678457,-0.30932415,-0.37311256,0.37878302,0.6317072,0.20510787,-0.018568397,0.2842936,-0.026429167,-0.41779634,-0.15444167,-0.01264993,-0.18788815,0.4222202,-0.21801776,0.21442972,0.58178955,-0.12764272,-0.3173339,0.18072914,0.17613462,-0.016328564,-0.24611881,-0.32318848,0.4517852,-0.5147377,0.02604988,-0.20525339,0.70985,0.09301706,-0.59630287,0.30511433,-0.5774341,0.2189362,-0.027858524,0.4837448,0.9234655,0.7497579,0.1583645,0.9048411,-0.24364607,0.18829867,-0.093581155,-0.12999286,0.10934135,-0.26587868,0.012051156,-0.6534436,0.032172468,-0.24710585,-0.3861335,0.24181029,0.80420554,-0.7437526,-0.20674229,0.15747967,0.57252127,-0.36222303,-0.04396161,0.98321503,0.8853377,1.1402272,0.18686914,1.1824051,0.2509337,-0.15565135,-0.100162946,-0.103260234,-0.9490972,0.17322557,0.46657407,0.016320009,0.41270912,0.109609365,0.05468703,0.51397234,-0.44485146,-0.1575262,-0.29486006,0.2861124,-0.22881149,-0.15940827,-0.6255707,-0.18302855,-0.022095777,0.2733342,0.04989197,0.3306057,-0.25423574,0.67553735,0.077513546,1.6804669,-0.23370449,0.017447146,0.029083828,0.21595325,0.40262678,-0.26193935,-0.21292473,0.25454205,0.2934658,0.025893496,-0.54300827,-0.016249986,-0.29148802,-0.38735846,-0.24989718,-0.20277049,0.05567258,-0.2584024,-0.30341053,-0.5304561,0.030293979,-0.42480892,0.37207666,-2.0971446,-0.35240155,-0.10194744,0.33975813,-0.21297434,-0.38496652,-0.2667107,-0.46033117,0.3625558,0.33225065,0.5929089,-0.63778627,0.3786252,0.3183608,-0.70948493,0.008625799,-0.5476064,0.024506,-0.0010259908,0.297166,0.04662821,-0.2189444,-0.24084178,0.0155659085,0.4602297,-0.23529376,0.01717439,0.5373019,0.34132764,-0.05754374,0.26959297,-0.017332068,0.6947384,-0.45374694,-0.42631373,0.47928783,-0.32682225,0.15572394,-0.17188542,0.18694729,0.6285665,-0.6669713,-0.9779974,-0.7570877,0.1289163,1.2188385,-0.21563363,-0.481698,0.2171902,-0.5160013,-0.32454613,0.19810796,0.39847642,-0.24888515,-0.21365203,-0.80069745,-0.034295302,0.021972766,0.47972634,-0.056282878,-0.17642055,-0.4820475,0.7122151,-0.1452118,0.43977958,0.24550201,0.23059365,-0.31295136,-0.45320335,0.06055168,1.0518134,0.60710883,0.11520701,-0.31546083,-0.12439509,-0.3823113,-0.063571334,0.0154419495,0.46783173,0.76037407,-0.111829534,0.11982116,0.36223397,-0.07867778,0.021583932,-0.21443638,-0.2741264,-0.091954075,0.27260855,0.622333,0.5341933,0.12230878,0.6679946,0.0009066944,0.2815048,0.08716813,-0.85100335,0.5348455,1.1018584,-0.28922474,-0.48695976,0.7305694,0.17979948,-0.22778057,0.5191895,-0.5110841,-0.40936503,0.2450596,-0.1763364,-0.27669743,0.29385078,-0.33068404,0.33146387,-0.9652981,0.3236078,-0.20800105,-0.6963074,-0.64985055,-0.031635303,-2.8354225,0.26000497,-0.11035906,-0.009628243,-0.13201731,-0.22385915,0.2504737,-0.46877337,-0.6548555,0.05559029,0.20302328,0.9550902,-0.008907139,-0.06776514,0.027745852,-0.6307287,-0.22338957,0.2474274,0.08808712,0.27057856,-0.08574339,-0.5025905,-0.15004483,-0.27849707,-0.41702616,-0.10472037,-0.8598229,-0.45375875,-0.18938385,-0.8346866,-0.098613665,0.70584404,-0.13657996,0.06206637,-0.39005834,0.015514195,0.197534,0.093635716,0.05092331,0.08963271,0.33945453,-0.08645657,0.033530198,-0.24793825,-0.031773064,-0.055625446,0.11738641,0.297248,-0.21058556,0.4104738,0.76846576,0.8691863,-0.38197047,1.0033323,0.7095037,-0.30430943,0.2943445,-0.08328468,-0.54596317,-0.63739544,-0.20929353,-0.15444548,-0.5787412,-0.12772141,0.09568857,-0.41549048,-0.99108696,0.7571182,0.072650015,0.1609951,0.109325975,0.45676988,0.48063204,-0.17836529,-0.097253166,-0.2312403,-0.3243907,-0.42431056,-0.22416364,-0.59368074,-0.6526875,-0.041412838,1.5123367,-0.28020227,0.086827345,0.1477774,-0.1644102,0.049064398,0.1717306,0.08432837,0.37314862,0.53720367,-0.05980023,-0.54971,0.24390484,-0.17488411,-0.011906491,-0.44594532,0.34811667,0.6349577,-0.73946124,0.29201144,0.18245283,0.052368615,-0.10979426,-0.52372736,-0.026282724,0.16726892,-0.25510007,0.4623612,0.3672756,-0.7086042,0.62372214,0.29327965,-0.28163823,-0.77710795,0.15245189,0.0600324,-0.2647714,-0.1528807,0.43775213,-0.07417921,0.0049993303,-0.38564762,0.18280624,-0.20371482,0.3195475,0.09665031,-0.33743873,0.22348188,-0.49931702,-0.33641356,-0.74595666,0.13797449,-0.4651933,-0.37647703,0.20254612,0.07839855,0.11711591,0.04450742,0.121078536,0.5092392,-0.26800746,0.041426238,-0.26985195,-0.44336227,0.40695345,0.49686435,0.32119936,-0.31868193,0.70357555,0.059968792,-0.22503193,-0.4763042,-0.055383485,0.6211446,-0.13549168,0.4065456,0.09583064,-0.16962235,0.191199,0.86389416,-0.03140222,0.34381488,-0.076758824,-0.15874907,-0.04850305,0.118338786,0.16291769,-0.05873209,-0.49762633,0.099518366,-0.2276722,0.028207155,0.64204067,0.26716945,0.3553469,-0.12353635,-0.2676949,0.053825535,-0.008935983,0.20192154,-1.4596195,0.3316376,0.26213413,0.6947532,0.47612637,0.14832388,-0.13135482,0.6647125,-0.33858067,0.16982879,0.18172099,-0.27107394,-0.23701072,0.4583851,-0.80556285,0.50359666,0.0032185225,-0.03525356,0.3182192,-0.11739358,0.52448475,0.8987074,-0.21599957,0.16906546,-0.03323068,-0.25325558,0.037849355,-0.19240293,-0.14262949,-0.54915977,-0.45008653,0.97707164,0.30028015,0.4550237,-0.22294165,-0.010438951,0.1440238,-0.2994723,0.2655961,-0.11042113,0.206787,-0.1896862,-0.326018,0.017129926,0.5121819,0.2752303,0.09642368,0.10766235,-0.2429226,0.27639884,0.016359806,0.011534361,-0.18027498,-0.5800526,0.006717526,-0.499817,-0.2633898,0.4501009,-0.15382592,0.090396866,0.18670684,0.050151348,-0.22501977,0.6331944,0.09320258,0.8521128,0.22027276,-0.123059064,-0.08537786,0.5684389,0.09253489,-0.26995632,-0.034004845,-0.29513404,0.15972002,-0.70031446,0.55414534,-0.082718775,-0.5513306,0.300435,-0.07263132,0.11405904,0.2831247,-0.21198955,-0.08449901,0.028300345,-0.09357978,-0.2664521,-0.3184479,-0.2501439,0.30423605,0.095787935,-0.09160764,-0.30815095,-0.0766315,-0.068237275,0.58878475,0.024358515,0.20401834,0.2766368,0.24276775,-0.4380948,0.13459674,0.2911515,0.5057514,-0.010671644,-0.18847695,-0.23059872,-0.26072958,-0.5753736,0.16396578,-0.11919998,0.4132276,0.11097434,-0.23189251,0.8790032,0.26525003,1.3284787,-0.19476166,-0.39007586,0.27832934,0.55341786,-0.091235444,-0.0819025,-0.28531882,0.89380205,0.6543102,-0.07271809,-0.1509681,-0.513266,-0.29796392,0.2975876,-0.38349983,-0.16039951,-0.05121902,-0.6414409,-0.43205076,0.28173417,0.24121715,0.07888636,-0.19573191,0.18263179,0.24165517,-0.13675275,-0.01167125,-0.4517357,-0.015853213,0.3433656,0.16763128,-0.075990826,0.044737097,-0.51281154,0.39109457,-0.677997,0.037440456,-0.23521835,0.19778201,-0.018992113,-0.3631572,0.22406301,0.14779755,0.25074035,-0.5072569,-0.3004347,-0.15664218,0.598953,0.098670915,0.030953903,0.7418572,-0.36940473,0.14841492,0.024037452,0.24669306,0.9171615,-0.25704336,-0.022151938,0.2703598,-0.21110636,-0.6409889,0.47858498,-0.37832448,0.14939007,0.05438534,-0.38985592,-0.55600923,0.3167823,0.24921982,0.13299078,-0.045856003,-0.6123534,0.17475997,0.28793627,-0.15190342,0.01951353,-0.3933987,0.06375353,0.5268676,-0.10063569,-0.6881142,0.3269431,0.22246936,-0.19086543,-0.6380629,-0.16809027,-0.2966101,0.26198658,0.08709526,-0.3888368,0.017441677,0.091711946,-0.60824883,-0.10401295,0.28931606,-0.28918105,0.17422397,-0.454439,0.11659812,0.9949792,-0.37620443,0.3381661,-0.5199098,-0.6016289,-0.88926095,-0.14455827,0.6330561,0.18790744,-0.029085118,-0.99928737,0.06344669,-0.31044585,-0.108826995,0.12391978,-0.38428518,0.5593484,0.17991978,0.42496192,-0.23687223,-1.0181702,0.38287634,0.11495876,-0.18172783,-0.37694725,0.47488913,0.041213818,0.88017315,0.12869407,0.11358234,0.32409054,-0.84225583,0.118296504,-0.16653708,-0.029598393,-0.6149547,-0.20422174 +212,0.3957238,-0.18953325,-0.5668139,-0.30752084,-0.5693444,0.19701742,-0.21851622,-0.026381163,0.31429031,-0.4317888,-0.088599995,-0.15942687,0.03213934,0.55453867,-0.30963638,-0.620411,-0.03184878,0.22686145,-0.85457224,0.49144056,-0.45893776,0.28585866,0.15341806,0.2505414,0.16616522,0.008144363,0.41144472,0.041537106,-0.067181386,-0.099965766,-0.15579209,0.06969796,-0.58724743,0.26993108,-0.18216369,-0.4961589,0.047859266,-0.57440495,-0.18759492,-0.720107,0.5102726,-0.8731645,0.5443932,-0.18386866,-0.1818888,0.22552776,0.32746738,0.18764988,-0.22809282,-0.022512244,0.34436682,-0.31497642,-0.15138648,0.025141168,-0.39960396,-0.5297129,-0.6710415,0.08711949,-0.7239784,-0.032374,-0.2386678,0.2374079,-0.2930115,0.15126374,-0.10909419,0.44334576,-0.37359625,-0.08606926,0.22470161,-0.0372786,-0.071450315,-0.4600689,-0.30831724,-0.1866574,0.4206961,-0.16398114,-0.17712633,0.3964369,0.15481132,0.38821995,0.0671628,-0.33539647,-0.25247523,0.027313102,0.07536626,0.48511854,0.1440308,-0.25691402,-0.2136284,0.03226976,0.43413073,0.3269841,0.15893298,-0.14176203,0.07188214,-0.11193867,-0.2197002,0.640622,0.45045596,-0.33514506,-0.39580837,0.44358727,0.359742,0.038103662,-0.1360551,0.11120503,-0.08966789,-0.67680424,-0.21122018,0.3114756,-0.0027762859,0.528729,-0.14104915,0.25600263,0.6717524,-0.26114434,-0.1492663,-0.12021859,-0.04416557,-0.16167384,-0.21726418,-0.095258,0.2966685,-0.67472017,-0.013531197,-0.31342378,0.7377579,0.007716196,-0.787885,0.19364572,-0.48187965,0.24187082,-0.09674342,0.68671477,0.81602436,0.5166134,0.31311607,0.9375572,-0.3328625,0.20866282,-0.12202473,-0.36364636,0.017346947,-0.2263418,0.04064295,-0.47298098,-0.021560825,-0.114872254,-0.0012703309,0.03232744,0.5346213,-0.49270695,-0.16589059,0.03552167,0.6346732,-0.38693973,-0.15514888,1.1704088,1.054614,1.1943073,0.18938573,1.2392794,0.3125378,-0.14992079,-0.08576692,-0.047598474,-0.71915245,0.23788507,0.26334587,0.08979968,0.32766035,-0.00014336292,0.11393787,0.27142423,-0.3994791,-0.2275323,-0.06732815,0.34786886,0.018288048,0.015693197,-0.24197325,-0.3344639,0.12918013,0.107679255,0.2009436,0.28670454,-0.18439706,0.81027406,0.10959541,1.1882544,0.10251077,-0.030519636,-0.11367304,0.454596,0.24459916,-0.13849458,-0.20354524,0.16067146,0.29591057,-0.164042,-0.60414505,-0.13806851,-0.30479702,-0.28742746,-0.24196988,-0.4040928,-0.068378486,-0.36407524,-0.09201296,-0.23126301,0.08671602,-0.49174228,0.45558497,-2.4595277,-0.2797427,-0.23636898,0.36431012,-0.057167407,-0.24791981,-0.25508487,-0.6773303,0.4798237,0.41001013,0.41455376,-0.5545418,0.44431037,0.34637135,-0.6036986,-0.1799635,-0.8417508,-0.03930401,-0.14754765,0.32667682,-0.04352679,-0.07503577,-0.124847926,0.2303768,0.53484786,0.14594005,-0.0074371602,0.3301162,0.73956835,0.060624048,0.7207564,0.1403881,0.64036494,-0.43294474,-0.09023353,0.28807837,-0.4986416,0.36108935,-0.06783068,0.19156529,0.6836862,-0.631566,-0.9353208,-0.5479823,-0.17660362,1.1682115,-0.27143797,-0.35403493,0.23258512,-0.19736885,-0.08107667,-0.017478747,0.457392,-0.14016022,-0.05781569,-0.59350246,-0.1833218,0.07318664,0.16389486,-0.15221907,0.025664646,-0.4581862,0.4805126,-0.109337136,0.39692926,0.2307033,0.22590402,-0.53065264,-0.50986236,0.3358148,0.8258644,0.38124296,-0.06415785,-0.2551497,-0.2128214,-0.25043055,-0.34570578,0.1328308,0.39524123,0.62648875,0.030264301,0.21955845,0.43197024,-0.21051572,0.12262627,-0.18421474,-0.20611158,-0.27287066,-0.055684473,0.6357781,0.7000411,-0.026980937,0.49417013,-0.085528776,0.21657148,-0.16244806,-0.5040336,0.5615301,0.809652,-0.09312829,-0.26207703,0.6172057,0.48064947,-0.16779925,0.5188742,-0.43925476,-0.3769843,0.6048454,-0.09738842,-0.38628185,-0.123431645,-0.33734906,-0.018977482,-0.89892757,0.2275455,-0.013768911,-0.53552705,-0.6106707,-0.123428784,-2.8167088,0.024722485,-0.21806079,-0.072894625,-0.12473444,-0.36224863,0.18720943,-0.39801934,-0.7128079,0.21662697,0.11787583,0.70646083,-0.08960747,0.23418894,-0.27011728,-0.26486772,-0.42797136,0.113400236,0.14107102,0.43465537,-0.038637858,-0.35833052,0.15106831,-0.47201654,-0.48877034,-0.0602202,-0.4638347,-0.36557162,-0.051005363,-0.6310025,-0.32350528,0.7513719,-0.16130525,-0.16393144,-0.33224732,0.0538094,0.1511639,0.2928993,0.050927844,0.21917017,0.11291814,-0.08926695,-0.012274714,-0.29171744,0.26747146,0.07695487,0.14308609,0.4394914,-0.16720702,0.32067442,0.40652114,0.72082865,-0.08256279,0.90177375,0.091950215,-0.1307469,0.20952225,-0.23513919,-0.36631006,-0.6269783,-0.22892064,-0.054892905,-0.5080536,-0.42362103,-0.116302475,-0.31062663,-0.8883986,0.5587194,0.22388095,0.20361081,-0.28510615,0.20418385,0.23783001,-0.2162141,0.17773312,-0.17169435,-0.1653921,-0.467967,-0.45541817,-0.788722,-0.5998774,-0.094358645,1.3599688,-0.27564615,-0.14317468,0.017989222,-0.33544916,0.28926784,0.26758835,0.014207868,0.39881957,0.29782298,-0.10754435,-0.6529426,0.47986147,-0.23571777,0.1818757,-0.37729856,0.09243392,0.7783164,-0.54197943,0.32176203,0.5142175,0.08793016,-0.072669834,-0.60036856,-0.13553753,-0.069392726,-0.05967239,0.36590818,0.3168948,-0.80798507,0.66225135,0.07835957,-0.3673039,-0.8170451,0.34072554,0.07630365,-0.026431946,0.28868946,0.35024044,0.33898047,-0.074222036,-0.43020126,0.22119887,-0.41500646,0.35766643,0.12448169,-0.0035756642,0.3207016,-0.28926802,-0.54031366,-0.6349458,-0.10462893,-0.5357049,-0.180906,0.0907677,0.038553394,0.122297876,0.21937667,-0.0094480375,0.35103768,-0.36773846,0.054105144,-0.071188696,-0.2434002,0.28834227,0.48235688,0.43385983,-0.6220735,0.7030765,0.07435061,-0.08954,-0.0047014216,-0.028164927,0.2058189,0.2900525,0.21189298,0.23182808,-0.25443593,0.13202544,0.61218035,0.12517752,0.18121053,0.25181395,-0.32066762,0.364802,0.118290186,0.25420907,-0.116043694,-0.3288254,-0.010412106,-0.1946449,0.047658384,0.28406918,0.01145036,0.33556637,0.042817004,0.035482362,0.02409537,0.086696625,-0.2882834,-1.4061608,0.31370208,0.19165447,0.723496,0.51920927,-0.03766694,0.035843085,0.710181,-0.3834329,-0.072885044,0.31575915,0.17189237,-0.2597454,0.5276156,-0.49753475,0.6105789,-0.13796376,-0.00087608397,0.093168385,0.28323597,0.34230042,0.9624622,-0.1178034,0.06278625,-0.06753529,-0.19479115,0.2687642,-0.24278821,-0.009177531,-0.494971,-0.2304311,0.87451375,0.2045664,0.36753353,-0.08823157,-0.016542275,0.10568913,-0.17856668,0.041165616,-0.10055157,-0.102323376,-0.26177236,-0.6077102,-0.11958578,0.5290282,0.056462582,0.23916985,0.21268076,-0.358721,0.13500413,-0.12550066,0.09643298,-0.08022494,-0.7493753,-0.21837507,-0.17743972,-0.47178572,0.24295966,-0.4473518,0.27228695,0.3088413,-0.03612473,-0.27471894,0.07585316,0.20124577,0.6976814,-0.0022058212,-0.077265576,-0.26250812,0.045427322,0.25826102,-0.4817945,0.19642822,-0.1528987,0.1374183,-0.61915207,0.608143,-0.09506081,-0.39098123,-0.049643032,-0.091007434,-0.040206883,0.39538816,-0.09546907,0.12723304,0.122012615,0.07960127,-0.20478293,-0.102000766,-0.43760204,0.16483815,0.1762791,-0.09448274,-0.069634765,-0.03567711,0.11542135,0.6851864,0.0656218,0.12052941,0.12371673,0.053319573,-0.5245903,0.09518561,-0.12032005,0.57947195,0.019444585,-0.24722418,-0.36601794,-0.16502914,-0.238376,0.6187611,-0.16178145,0.09080161,0.01896763,-0.36991245,0.6923977,0.11573624,1.1784027,0.018398311,-0.47806937,0.18046273,0.6555177,0.08006914,-0.006316969,-0.22314993,0.97137386,0.46132877,-0.24934532,-0.20463778,-0.60133094,-0.123162985,0.2832446,-0.352348,-0.18723574,-0.114160985,-0.5182296,-0.25528446,0.26654053,0.07854325,0.20173317,-0.282304,0.1368772,0.22485963,0.14835599,0.38350666,-0.6673351,-0.16177717,0.31391746,0.15110232,-0.015052419,0.10362442,-0.39004713,0.37433082,-0.679435,0.24240783,-0.29460016,0.18856889,-0.12296871,-0.18695733,0.3037825,0.34344393,0.36304325,-0.2526757,-0.39576986,-0.31686783,0.69045615,0.34013674,0.35087663,0.7827849,-0.33719888,-0.14406824,-0.023958476,0.3751286,1.2910328,-0.051490095,0.05472354,0.29796445,-0.35493073,-0.59830064,0.2751911,-0.43125364,0.07197059,0.01796031,-0.27390018,-0.36985874,0.28519613,0.22296605,0.29614392,0.12276887,-0.5910846,-0.18331626,0.42173052,-0.17275167,-0.28210837,-0.41415197,0.061658364,0.61209273,-0.15935005,-0.33093598,0.117141314,0.35707074,-0.23669583,-0.74716944,-0.059492495,-0.30305263,0.44159552,0.11583788,-0.25314313,-0.22197025,0.034157258,-0.41464707,0.22484551,0.19216508,-0.33240458,-0.034519076,-0.23880276,0.00391407,1.0596994,-0.16707776,0.28247553,-0.51588774,-0.46823597,-0.9044234,-0.17416981,0.12063285,0.14594749,-0.0859758,-0.552765,-0.20873043,-0.03301825,-0.11342454,0.21465053,-0.53051937,0.32737917,0.1489763,0.23418058,-0.11790789,-0.98465097,0.073655054,0.04607813,-0.2521269,-0.41312927,0.575321,-0.12535463,0.47403526,0.11427628,0.014704539,0.11318558,-0.41765293,0.35586312,-0.31365883,-0.15867224,-0.394612,-0.0544846 +213,0.453046,-0.4275162,-0.4302573,-0.19760935,-0.3112756,0.091457605,-0.14072594,0.46974003,0.05790558,-0.5304038,-0.3313021,-0.08586759,-0.12208458,0.30420902,-0.31654498,-0.511633,0.0383429,0.21547338,-0.41004595,0.70343155,-0.21716751,0.20626463,-0.033536967,0.38299078,0.19052927,0.2909334,0.1559232,0.08673843,0.04502473,-0.18554233,-0.13813108,0.1164035,-0.5056419,0.36520436,-0.16361791,-0.35646313,-0.069291785,-0.40111887,-0.44587108,-0.71188533,0.33178014,-1.086738,0.5291373,-0.07517343,-0.3662791,0.04572707,0.23816657,0.2565095,-0.1259182,-0.05190297,0.21246156,-0.14209242,-0.041994195,-0.24520442,-0.08542654,-0.5109686,-0.5740563,-0.11712779,-0.37225047,-0.2662592,-0.3100389,0.22496991,-0.35983855,0.03588462,0.017387906,0.6651162,-0.54830164,0.040210705,0.19471182,-0.25400865,0.34880525,-0.7540294,-0.18369745,-0.07298536,0.20800212,0.014985586,-0.2003894,0.42236355,0.24938376,0.37643987,0.028018972,-0.12249605,-0.21220882,-0.2246788,0.1721313,0.44035038,-0.103630595,-0.46204135,-0.12344265,0.01945719,0.44058642,0.14129274,0.1435594,-0.36205906,-0.13583276,0.032976065,-0.11228687,0.25590613,0.439479,-0.25415033,-0.16855898,0.23517384,0.5551683,0.0010136605,-0.17473193,0.016831128,0.041007414,-0.5048775,-0.26000196,-0.08393803,-0.33287382,0.70307547,-0.14634006,0.34094942,0.7194032,-0.12074173,0.034268398,0.017576609,0.1324656,-0.21653582,-0.3314974,-0.40847847,0.29452446,-0.5082855,0.08127165,-0.17935899,0.6598287,0.07864257,-0.65983063,0.28400514,-0.5157317,0.050448775,-0.2512056,0.44273594,0.5868355,0.526993,0.2738651,0.6567281,-0.41206577,0.0015856823,0.06998567,-0.38088602,0.15062551,-0.2467403,-0.113749385,-0.5277147,0.13244696,-0.020647023,-0.008495816,0.0071605127,0.42726436,-0.5759815,-0.010667243,0.07940807,0.92387635,-0.27191857,0.054329235,0.74105287,1.0349841,0.9496862,0.06769268,1.214695,0.19815406,-0.2988509,0.094194874,-0.01065768,-0.588219,0.32493475,0.5704703,0.18775047,0.33237714,0.04731149,-0.038977496,0.49803203,-0.6137879,0.043242835,-0.2004918,0.20113018,0.10920458,-0.27388617,-0.67187405,-0.12429573,-0.041363906,0.18556486,-0.09294936,0.23147227,-0.09906432,0.5171788,0.12770037,1.6237446,-0.0693374,0.106677055,0.12709679,0.49136847,0.2181839,-0.050035145,0.18139137,0.2980607,0.34797546,0.2043241,-0.52972513,0.11338966,-0.21278234,-0.55608183,-0.2959533,-0.33952174,-0.010170124,-0.018163225,-0.49397075,-0.29978064,-0.22108875,-0.121388756,0.38161847,-2.52725,-0.24833158,-0.22899322,0.4404826,-0.24324688,-0.273569,0.047950387,-0.4050372,0.49542135,0.32719848,0.51422805,-0.6463871,0.351013,0.553251,-0.5093453,-0.0039883433,-0.53020275,-0.17794326,-0.065505914,0.47049612,0.078603745,-0.06277181,0.07184274,0.2655365,0.52659076,0.037431136,0.2510328,0.30144987,0.30891854,-0.061544277,0.41719908,0.04515337,0.44634473,-0.12098033,-0.14404713,0.3756976,-0.13562553,0.17102432,-0.20667644,0.110438414,0.60272294,-0.40857136,-0.76207376,-0.7426956,-0.20912789,1.0569241,-0.22264567,-0.64911824,0.27558842,-0.34816238,-0.33690056,-0.121932216,0.31825274,-0.18949126,0.13155073,-0.85056895,0.09043611,-0.09454983,0.124057665,0.06724195,-0.31989127,-0.5260268,0.8990743,0.004328839,0.6869477,0.41406578,0.2146709,-0.22386545,-0.52412575,0.061319828,0.9099478,0.6957606,0.13806845,-0.1188684,-0.16522053,-0.289637,-0.23722868,0.1032947,0.6704739,0.7085763,-0.055362903,0.1893123,0.3210875,-0.06574316,0.079889014,-0.10766776,-0.26981595,-0.09911958,0.13204953,0.57266504,0.6479223,-0.3211388,0.36766255,-0.120255515,0.46312842,-0.031607606,-0.49947435,0.41550004,1.2489123,-0.15699972,-0.34356204,0.6351256,0.48715505,-0.26843587,0.39270937,-0.6764701,-0.26524982,0.52087474,-0.15178446,-0.6173758,0.07291385,-0.37771633,0.2974416,-0.9340583,0.5070772,-0.31881645,-0.5294196,-0.67930186,-0.25891414,-2.959155,0.22565596,-0.3795458,-0.20489809,-0.21014756,-0.22244841,0.27535373,-0.8478346,-0.5537441,0.2555977,-0.008352569,0.67615974,-0.012159232,0.08108649,-0.13514087,-0.2715597,-0.15139817,0.1966063,0.13530983,0.19409065,-0.08470873,-0.5465787,-0.12765014,0.0026812155,-0.5819884,0.063348606,-0.5643636,-0.53861237,-0.18465854,-0.38667747,-0.17979915,0.6228219,-0.17935392,0.029945524,-0.21325396,0.05034597,-0.2759203,0.20377249,0.10853887,0.13396004,0.010123811,0.06296347,0.12183133,-0.3264881,0.28623873,0.021817287,0.29116675,0.21272229,-0.33733377,0.14580794,0.50765187,0.52438295,-0.26113978,0.7807677,0.5729025,-0.19225867,0.27324957,-0.1516101,-0.46962675,-0.59759146,-0.41912562,0.16491477,-0.33944243,-0.5116765,0.061346952,-0.5122463,-0.78858525,0.58459294,0.03205307,0.26037496,-0.04155677,0.11849259,0.48026937,-0.20173432,-0.20651695,-0.13710266,-0.21396485,-0.72291595,-0.29073736,-0.6948572,-0.547658,0.10777876,1.114806,-0.20661308,-0.0982337,0.1921536,-0.27873436,0.10134649,0.2092201,-0.106798425,0.07660783,0.4596714,-0.09151292,-0.858676,0.72324693,0.00038642288,-0.2539501,-0.58639026,0.23314661,0.5679853,-0.58380544,0.44013843,0.36524683,-0.05753565,-0.30516255,-0.51801586,-0.1303324,-0.12073352,-0.28995693,0.53743434,0.22809993,-0.622296,0.4033197,0.32829767,-0.26165986,-0.6454529,0.58428574,-0.082726814,-0.109749176,0.0064118784,0.3343037,0.10505251,-0.0629134,-0.16201636,0.2254224,-0.41838488,0.27966768,0.24784373,-0.10326967,0.2561135,-0.13244298,-0.0863805,-0.8905486,0.059077747,-0.61618805,-0.16519143,0.19248538,0.054068092,0.0018774271,0.12997332,0.053495254,0.4373806,-0.34177443,0.13487382,-0.04006684,-0.40185642,0.38623115,0.42226106,0.4474774,-0.39854917,0.63823205,0.069184095,-0.04698981,-0.18432458,0.10029197,0.46528444,0.3115922,0.38242766,-0.13110468,-0.056509387,0.28178364,0.7773565,0.24548873,0.5761081,0.20362036,-0.12775803,0.16095513,0.064563245,0.24320619,0.039755665,-0.6065734,0.11862502,-0.3008256,0.07993665,0.4903344,0.17143081,0.34859827,-0.147909,-0.2853404,0.055397447,0.21083476,0.06187986,-1.3529229,0.32040235,0.25904384,0.88112223,0.41149554,-0.012402195,-0.09630448,0.8270339,-0.24968567,0.07822418,0.3934321,0.06457528,-0.44229516,0.63027877,-0.79701066,0.35355645,0.075255364,-0.06123598,-0.014695374,0.0133598745,0.3743116,0.6361082,-0.17725547,0.02223223,-0.109455675,-0.35215914,0.2691604,-0.4507589,0.03686237,-0.3208699,-0.40202972,0.4845185,0.5156084,0.273519,-0.19080259,0.03762468,0.16883932,-0.13596068,0.40989706,0.10784616,0.15810294,-0.1471541,-0.54889,-0.21520062,0.33670625,-0.19341065,0.14674085,0.0144171,-0.25294787,0.18599683,-0.0007963896,0.050457828,0.08278819,-0.6814768,0.09941398,-0.30277306,-0.37922192,0.79841346,-0.09480264,0.06240068,0.1078958,0.04621507,-0.150809,0.09849677,-0.10981992,0.6637709,0.11488778,-0.1052636,-0.32267463,-0.035136435,0.09768207,-0.22583522,0.13896063,-0.23947829,0.057119705,-0.659502,0.49577186,0.013798495,-0.17238349,0.23297206,-0.19701344,-3.102521e-05,0.40904865,-0.158938,-0.21944161,0.022628082,0.041073825,-0.2172773,-0.36965382,-0.13722216,0.2981185,0.18885006,0.25181738,-0.08593924,-0.06763589,-0.20330861,0.4558323,0.04098087,0.3754368,0.43340963,-0.21379733,-0.3478585,-0.17864919,0.1779928,0.42684302,-0.042967748,-0.026899215,-0.18814434,-0.704218,-0.4219281,0.16714634,-2.7418136e-07,0.3858232,0.109148115,-0.13164929,0.7339811,-0.028939025,1.1928991,-0.07350979,-0.50664395,0.0029492616,0.65288544,-0.043044757,-0.025939941,-0.22053036,0.86978877,0.6337061,0.0010166843,-0.08413622,-0.4434925,0.15978645,0.27817708,-0.18929757,-0.06840428,-0.10082313,-0.721382,-0.3640044,0.13771963,0.36835155,0.15491082,-0.117234185,-0.03712217,0.34818718,-0.072286464,0.3431176,-0.47666183,-0.26624873,0.34987932,0.15679929,-0.06087606,0.08081085,-0.46279582,0.40042418,-0.49169704,0.07742454,-0.33645487,0.14150788,-0.15989567,-0.24587913,0.21855725,-0.107667446,0.35698488,-0.29292896,-0.37033895,-0.12682785,0.56816936,0.025990475,0.082554616,0.54266447,-0.32148442,0.012427056,-0.00023937225,0.41537586,1.085228,-0.2516545,0.07285724,0.27655098,-0.56174254,-0.64833003,0.34539354,-0.31413883,0.29886374,0.0479218,-0.25335172,-0.5801753,0.27445304,0.25919443,-0.08297394,0.055953186,-0.63053125,-0.27380353,0.25926766,-0.4506654,-0.114396505,-0.24184911,0.097934835,0.3654703,-0.28614858,-0.35297865,0.09953639,0.27669972,-0.1324914,-0.5110752,-0.093740866,-0.3057256,0.3019608,0.0890395,-0.43383917,-0.17213972,0.078719616,-0.4663885,0.1616163,0.24586363,-0.34981024,-0.001121537,-0.3929768,-0.11966381,0.9262174,-0.13989854,-0.01655357,-0.59611857,-0.35129136,-0.7546323,-0.47730356,0.375471,0.12141024,0.078675106,-0.6720902,0.0207334,-0.20623432,0.15695849,-0.30858225,-0.2439216,0.46164572,0.16114645,0.46396977,-0.09190105,-0.72262883,0.24297409,0.05385432,-0.09542151,-0.544172,0.64018005,-0.07439497,0.8461058,0.123382814,0.15502484,0.16703309,-0.5557675,0.05816109,-0.19109698,-0.3471404,-0.5929756,0.035244424 +214,0.37618196,0.152169,-0.56795627,-0.39365917,-0.37342125,0.14097399,-0.28100553,0.13418043,0.12760295,-0.23967347,0.14005446,-0.017672796,-0.09037283,0.44900346,-0.14568591,-0.8264219,0.09646367,-0.04898429,-0.63755554,0.39912003,-0.4512071,0.5062215,0.17408086,0.31329745,0.026657335,0.22300376,0.3491186,-0.13358527,-0.027987935,-0.032359224,-0.23445645,0.33034322,-0.59109634,0.11478202,0.02000388,-0.36315614,0.03996043,-0.07146154,-0.2385042,-0.60796946,0.37464324,-0.65381074,0.5479423,-0.15404567,-0.38523832,0.076372445,0.20393474,0.2893716,-0.2711028,0.1528505,0.2512563,-0.34236035,0.008333497,-0.059233308,-0.39912322,-0.71300983,-0.65364456,-0.18302807,-0.8683908,-0.3462811,-0.38508657,0.2534347,-0.3137824,0.11094335,-0.1950481,0.30446267,-0.4022112,0.03971924,0.19327557,-0.13833204,0.15910375,-0.5222124,-0.028390858,-0.103770554,0.1496185,0.13233504,-0.07330315,0.22749016,0.43037206,0.56823754,0.074102685,-0.3940235,-0.33301932,-0.23064566,-0.014138795,0.46731266,-0.026557729,-0.02225507,-0.2832415,-0.10543069,0.34847814,0.25651392,-0.09108207,-0.22401401,-0.014704971,0.13962832,-0.19487083,0.25628236,0.41727254,-0.5420488,-0.30328172,0.39670646,0.4602359,0.122681305,-0.32940656,0.21037564,-0.01731051,-0.35000822,-0.15440059,0.25596315,-0.071755014,0.4868164,-0.032750882,0.23992276,0.9127641,-0.20946378,-0.13008595,-0.33101785,-0.17738578,-0.04342316,-0.022675663,0.0003253445,-0.09975033,-0.5303927,-0.09096055,-0.26639396,0.9538781,0.1356768,-0.6814031,0.27899018,-0.33936584,0.027766835,-0.22009043,0.6435231,0.7038977,0.3549677,0.04200721,0.84077674,-0.62549293,0.04767313,0.026603423,-0.45712978,0.13919923,-0.08630857,0.11325089,-0.47103155,-0.03812377,-0.0026795194,0.05955388,-0.09804921,0.3621283,-0.28160593,-0.06359729,-0.06496817,0.70427424,-0.50986683,-0.016296893,0.57598454,1.0232451,0.87290645,0.05568354,1.1182747,0.33478028,-0.17825133,0.056038857,-0.49559438,-0.36010775,0.17146125,0.33919615,0.16499674,0.29832208,0.084062815,0.17630762,0.50408036,-0.17959459,0.015245492,0.11584933,0.21087626,-0.0032393634,-0.11997926,-0.57694715,-0.22072431,0.23445848,0.09847371,0.069586486,0.11171482,-0.21401444,0.45746005,0.27961397,1.3407903,0.089089274,0.12037479,-0.012826193,0.43818682,0.13177902,-0.04193943,-0.017738104,0.30509058,0.325065,0.06328762,-0.5925127,-0.003374204,-0.37021536,-0.4042719,-0.3730994,-0.45243827,-0.066186994,-0.07572337,-0.5225771,-0.12649938,0.1319834,-0.32858992,0.43042988,-2.556215,-0.19385739,-0.18122259,0.17725424,-0.12909162,-0.23051983,-0.19955501,-0.5745722,0.20120987,0.45652303,0.23876745,-0.60779613,0.5509546,0.33523157,-0.13084751,-0.15017216,-0.56207514,-0.11684817,-0.10181403,0.4073668,-0.040948365,-0.068047225,-0.32777938,0.556939,0.6914037,-0.051966883,0.06583205,0.12115279,0.34988198,-0.04231231,0.58999515,0.22992262,0.52057374,-0.09719606,-0.07387712,0.433176,-0.23838146,0.23804423,0.016822167,0.21273315,0.4643455,-0.4347372,-0.7788672,-0.51710284,-0.24763441,1.0680913,-0.525668,-0.34523422,0.32664466,-0.008988794,-0.11560521,0.017792545,0.30302036,0.045748547,0.12762481,-0.51300895,0.11599898,-0.027493091,0.20314455,-0.110484496,0.029177465,-0.21500897,0.62847906,-0.22547254,0.46421507,0.2299833,0.24902622,-0.02848123,-0.4415403,0.03330083,0.8777295,0.3902916,0.00659921,-0.28438655,-0.25723904,-0.22587559,-0.24958694,0.16608347,0.29978734,0.9039856,0.078538,0.1001827,0.280176,-0.3092749,0.054915108,-0.09537681,-0.41251528,0.14527637,0.027276382,0.3243404,0.40078807,-0.22508669,0.46617603,-0.086634286,0.22677374,-0.1766954,-0.44408208,0.5576399,0.864884,-0.15514973,-0.198367,0.5040159,0.25888836,-0.34116793,0.3914493,-0.6868061,-0.2631948,0.82323486,-0.069861345,-0.3263747,0.071284585,-0.360824,-0.07443759,-0.9174958,0.37640876,-0.073774934,-0.6062787,-0.47047985,-0.28051624,-3.8084908,0.10685985,-0.23659581,-0.0827813,0.06755683,-0.06455331,0.2966415,-0.6119518,-0.45018688,0.046248436,-0.0072403047,0.48292667,0.08287918,0.15401429,-0.28866923,-0.21245815,-0.22996798,0.2968493,0.098475784,0.18552113,-0.019082524,-0.44380718,0.28584158,-0.34144768,-0.5575417,-0.00804483,-0.33785582,-0.5505308,-0.08231736,-0.35560918,-0.16213733,0.80122185,-0.30362862,-0.030541915,-0.29409963,-0.044515178,-0.1910498,0.37415785,0.46161094,0.052779894,0.08343,0.04695739,-0.18020105,-0.54577667,0.12406948,0.13303122,0.3414722,0.2921513,0.10292776,0.22394103,0.65248024,0.34680986,0.052257545,0.63257307,0.17853856,-0.20078593,0.29956096,-0.2931293,-0.14845867,-0.81080735,-0.4077018,-0.2529585,-0.39479938,-0.40407467,-0.17503494,-0.36907497,-0.77547497,0.46849942,-0.01948392,0.38835412,-0.20197527,0.3165115,0.27672094,-0.0017793253,-0.04133073,-0.24103433,-0.35296994,-0.503825,-0.45856774,-0.6665809,-0.6931921,0.19633609,1.1877819,-0.13423517,-0.20959437,-0.08788361,-0.20119104,-0.004629731,0.13117896,0.3535818,0.27567035,0.36863366,-0.1689687,-0.6997933,0.42708644,-0.19218373,0.11048263,-0.65795,-0.2643695,0.5646303,-0.603282,0.42831904,0.3492837,0.2315188,0.22712137,-0.73302674,-0.25231612,0.06716321,-0.26146397,0.49188483,-0.03312424,-0.39039204,0.53259826,0.008947566,-0.05803673,-0.5217596,0.5382039,-0.06675511,-0.37586725,0.12879857,0.3458404,0.03409125,-0.102592215,-0.129979,0.24673508,-0.5635986,0.27367952,0.4884163,0.003934793,0.44334137,-0.08121096,-0.18929718,-0.48331463,-0.14212747,-0.4562862,-0.22365633,-0.06272017,0.18664843,0.17478685,0.24481015,0.039971992,0.40980914,-0.25372076,0.21771827,0.03720235,-0.24552575,0.48047736,0.49517387,0.3375451,-0.45834002,0.519483,0.110241055,-0.077308744,-0.12472074,0.103276275,0.5929506,0.21743926,0.34918427,-0.1254614,-0.18008855,0.29862532,0.66986156,0.28797027,0.31916717,0.12221499,-0.2516372,0.27312815,0.22354792,-0.059401162,0.1687206,-0.09442139,-0.1835039,0.15128043,0.16919395,0.5131453,0.14936483,0.37683672,-0.07732911,-0.12796335,0.36433843,0.099889696,-0.2490825,-0.9012314,0.14846349,0.3949166,0.64483285,0.40636826,0.13513635,-0.1202832,0.38989082,-0.47344822,-0.04704494,0.38483822,0.10602911,-0.38709486,0.64880973,-0.6085186,0.52457106,-0.20056994,-0.0899822,0.13736929,0.17096278,0.23373666,1.0469395,-0.050119724,-0.06850311,0.048246678,-0.34990725,0.22247255,-0.28088325,0.0013652891,-0.45565256,-0.26335695,0.6042367,0.33053547,0.11365388,-0.33176628,-0.033928413,-0.008629642,-0.14050755,0.10205231,-0.16485108,-0.0285002,-0.21199802,-0.46318838,-0.5018077,0.5160162,-0.13635981,0.014285279,0.06753833,-0.36223382,0.2557186,-0.065666646,-0.04952552,0.05824896,-0.42465955,-0.03807188,-0.24489003,-0.5622147,0.40616688,-0.40923154,0.30514008,0.12471181,0.033848334,-0.32179207,0.13506469,0.18284461,0.4986065,0.117260635,-0.13294508,-0.2953063,-0.05112555,0.3483863,-0.2847043,0.10671402,-0.29074067,0.22272234,-0.68105155,0.35267878,-0.27094734,-0.27528733,-0.23184605,-0.2901682,-0.009716418,0.31729013,-0.2358597,-0.05658487,0.17331594,0.15070097,-0.21907449,-0.048543103,-0.32735163,0.2064613,-0.19366266,-0.15894753,-0.05264949,-0.13892807,-0.008719765,0.25358093,0.0837178,0.24211793,0.18338543,-0.1363277,-0.28261128,-0.061528258,-0.060705278,0.26125073,0.08682858,0.05400463,-0.2755536,-0.31109226,-0.2516392,0.45868477,-0.14555411,0.13505024,0.1819183,-0.5232576,0.891824,0.02993904,1.2972248,0.23328264,-0.31817165,0.08471176,0.6157681,0.20656495,0.26359496,-0.28954297,0.8112196,0.5529156,-0.0901531,-0.37417316,-0.2506842,-0.21214008,0.30027625,-0.27274427,-0.3573426,-0.19197492,-0.747696,-0.15054491,0.1388504,0.13825987,0.23281959,0.07560466,-0.15593389,0.13260473,0.20833352,0.64477146,-0.45854235,-0.017636418,0.28788197,0.116447754,0.058064207,0.28904617,-0.3287937,0.40462792,-0.69919956,0.14601052,-0.4961295,0.066184,-0.092708655,-0.2789934,0.28984094,0.003665924,0.25588626,-0.13938695,-0.21838227,-0.21786115,0.71483654,0.2603335,0.29449862,0.7155839,-0.21806237,0.04236252,0.06746797,0.4368866,1.3614542,-0.03239771,-0.18645862,0.20223229,-0.35084933,-0.6411893,0.13253959,-0.29229286,0.0013388582,-0.14319836,-0.5207057,-0.23239645,0.4201981,0.04901535,-0.19362795,0.24837737,-0.40432274,-0.16512838,0.31895235,-0.2930325,-0.26085365,-0.109179914,0.37015358,0.7624019,-0.53027,-0.24316898,-0.085630134,0.44336417,-0.23990332,-0.58644205,0.14804432,-0.18226787,0.5670707,0.12579283,-0.42667162,0.17452873,0.22641955,-0.36188024,0.2116665,0.6457216,-0.42182073,-0.11582552,-0.23349082,-0.15416598,0.94443685,0.12559164,-0.17676339,-0.65621114,-0.37632665,-0.8482307,-0.2952031,0.35647872,0.18355827,-0.12476933,-0.45907986,-0.14488353,-0.14008382,0.06712134,0.17763239,-0.6217798,0.26912928,0.18906005,0.460822,0.054009464,-0.91144025,-0.1548473,0.06377379,-0.23058927,-0.5828532,0.68920714,-0.37490335,0.6119702,0.07782169,0.05431195,0.060969297,-0.46772802,0.46158484,-0.4408371,-0.16911572,-0.8405131,0.02107077 +215,0.29571345,0.034651794,-0.5153885,-0.17755046,-0.28535748,0.15973054,-0.06811038,0.12167398,0.11026898,-0.27381092,-0.026238158,-0.21644643,0.020532057,0.45645446,-0.118885115,-0.70604587,-0.029057536,0.08641641,-0.68271655,0.3772372,-0.5738526,0.3727212,0.06406669,0.3762608,0.04054419,0.37814993,0.29202354,-0.15726866,-0.20310055,0.18238828,-0.15302317,0.35492843,-0.584357,0.054392356,-0.009894116,-0.2079677,-0.0009684954,-0.38911214,-0.3206045,-0.55054057,0.4790591,-0.7226972,0.36987054,-0.055400796,-0.23646247,0.15436922,0.049047142,0.25880018,-0.44702238,0.059675857,0.15652597,-0.29920247,0.048044857,-0.099357724,-0.2507106,-0.34605008,-0.5840147,0.055341687,-0.5648146,-0.30750474,-0.2190274,0.16353254,-0.37902495,-0.0073382556,-0.19491294,0.4658497,-0.43065462,-0.037260085,0.3233714,-0.23923188,0.088290006,-0.2587555,-0.11666559,-0.021785429,0.39580673,-0.05628132,-0.10183085,0.31988084,0.30117118,0.49557564,0.0073154094,-0.24994022,-0.22940186,-0.03346581,0.12497255,0.53692913,-0.04506142,-0.15635282,-0.12890534,-0.03462028,-0.1404854,0.19363421,-0.0068321824,-0.48367766,-0.05287802,0.13231187,-0.082437366,0.13906921,0.4770985,-0.38251364,-0.30159622,0.34007943,0.39088666,0.07764814,-0.12365395,0.1418183,-0.025437586,-0.56204796,-0.24607477,0.15730049,-0.19632772,0.6271861,-0.04139226,0.2310549,0.7096653,-0.088979065,0.013555024,-0.34395224,-0.12516409,0.005808994,-0.2507727,0.06415324,0.114989296,-0.31220326,0.059200402,-0.069951646,0.7078074,0.1854766,-0.88279146,0.40267932,-0.44864666,0.12438637,-0.1341489,0.5862949,0.6984887,0.2343646,0.3155136,0.86436725,-0.64877456,0.12000775,0.0036308318,-0.4829694,0.031259242,-0.041662455,0.045057528,-0.44247878,-0.0354928,0.09822804,-0.047353376,0.043100394,0.055816267,-0.3555692,0.086412124,-0.02307757,0.7471693,-0.47719386,-0.044106692,0.6524197,0.96445864,0.733037,0.10106732,1.3177836,0.3835972,-0.21351999,0.20702684,-0.44157666,-0.56941044,0.07850572,0.2969414,0.21112087,0.28834772,0.13940215,0.10569208,0.45828748,-0.3133649,0.16944058,-0.043689687,0.012163755,0.015890196,-0.03082006,-0.38305688,-0.17244913,0.044647295,0.060443953,0.006222749,0.18881978,-0.14370294,0.37613207,0.13277686,1.790075,0.11660169,0.18289188,0.03126307,0.39505345,0.19935954,-0.12802637,-0.2141524,0.3658204,0.35402128,-0.08555068,-0.5324853,-0.01870697,-0.23444554,-0.46011207,-0.19702795,-0.3989464,-0.043671902,0.00059168786,-0.48880827,-0.0768775,0.11127274,-0.26509953,0.4908064,-2.7104897,-0.115974754,-0.13138916,0.2905699,-0.30885407,-0.32463068,-0.31194854,-0.44755802,0.21469866,0.46072906,0.22992572,-0.65027344,0.31407464,0.2303862,-0.19139613,-0.18359044,-0.5218248,-0.010156333,-0.059474237,0.33039472,-0.17303438,0.008088436,-0.1274097,0.27481553,0.58884627,-0.009146713,-0.14138281,0.12392716,0.3631508,0.24030544,0.5189061,0.05365967,0.5449966,-0.101528466,-0.10285472,0.25342274,-0.24337009,0.31184125,0.03337987,0.19822943,0.27929583,-0.44371617,-0.70070744,-0.55465925,-0.4296002,1.1479506,-0.50399435,-0.18263845,0.38650587,-0.041481204,-0.18108483,-0.026563937,0.4731697,-0.02424638,-0.023858324,-0.68046594,0.087193124,-0.081665084,0.123512104,-0.03123127,0.10644982,-0.20118234,0.6052542,-0.18973927,0.3777417,0.41169167,0.21315661,-0.0024055503,-0.4982129,0.14336176,0.84534556,0.25063157,0.12184207,-0.09383465,-0.2315265,-0.103657044,-0.2661916,0.11518919,0.4101397,0.671545,0.0843424,-0.01610455,0.34229475,-0.098653406,0.009898093,-0.09487066,-0.26614752,0.09540268,-0.107051924,0.48674214,0.58371395,-0.25791302,0.38382906,-0.13773128,0.14137816,-0.058552016,-0.43513423,0.5715406,0.9427176,-0.12795666,-0.047003567,0.41888925,0.38149226,-0.3780082,0.2766757,-0.5053065,-0.13489509,0.7648345,-0.20884392,-0.42248094,0.10779049,-0.292229,0.04443147,-0.93048346,0.17951253,0.16201314,-0.24373446,-0.39233518,-0.097938195,-4.0283804,0.05625387,-0.30614546,-0.18230301,0.03448253,-0.063667744,0.18733189,-0.5931178,-0.5048195,0.11530428,-0.048896916,0.44300014,-0.040603176,0.22608328,-0.3433153,-0.039119147,-0.08878934,0.22686993,0.15827721,0.3005615,0.012581665,-0.33635956,0.08243867,-0.37805617,-0.49327466,0.057038087,-0.40637833,-0.5587144,-0.2230295,-0.5043306,-0.30811042,0.7363274,-0.37200323,-0.08860575,-0.20773163,-0.0584157,-0.31121147,0.2852339,0.3378044,0.22878532,0.08686593,0.07962333,-0.18969971,-0.38377714,0.20871527,0.07201236,0.16166773,0.43204853,0.07482907,0.07931625,0.3726606,0.5094452,-0.10696975,0.515439,0.30852437,-0.035442524,0.28365096,-0.54122365,-0.099643946,-0.7286161,-0.4879265,-0.36101496,-0.37398857,-0.63743573,-0.30294865,-0.40404895,-0.72802866,0.39362666,0.00084463507,0.20303869,-0.016723637,0.19593433,0.4285738,-0.14503087,0.03892401,-0.10421727,-0.1784683,-0.5568313,-0.4209014,-0.5830352,-0.68774706,0.24484149,0.88527465,-0.05984572,-0.18526024,-0.10194651,-0.25828075,-0.014024654,-0.06570081,0.2855054,0.30508214,0.2273145,-0.18073334,-0.62679136,0.5936686,-0.10790376,-0.17973766,-0.6974714,-0.0025372617,0.5736286,-0.59260154,0.7533988,0.25348356,0.20838599,0.24397922,-0.48299658,-0.38325316,0.0674093,-0.24154004,0.51434445,0.09299837,-0.62604356,0.40909785,0.20692015,-0.10127807,-0.7091111,0.50641555,-0.052989636,-0.29481417,0.19454645,0.34001464,-0.04872655,-0.12245122,-0.046759464,0.13036142,-0.5281295,0.21541709,0.4809171,0.10044347,0.4505679,-0.07817742,-0.13594344,-0.5427784,-0.06249001,-0.51239294,-0.14456077,0.042308774,0.11727871,0.19140922,0.04776018,-0.049003296,0.4269527,-0.43020132,0.22127458,0.03551726,-0.0927921,0.16096735,0.43767875,0.2597589,-0.5279621,0.5474698,-0.049596637,0.07727145,-0.11450142,0.24667501,0.46698654,0.34098214,0.15103853,-0.10293632,-0.21418917,0.19749668,0.64834887,0.2120658,0.43454722,0.19001175,-0.23988718,0.38503015,0.14574236,-0.0007991418,0.05873005,-0.19127248,-0.061513677,0.07983477,0.25940204,0.3394568,0.15316392,0.41089824,-0.15354052,-0.213795,0.26132077,0.21983376,-0.041663695,-0.801214,0.290424,0.2197408,0.58263326,0.4999137,-0.0053768903,0.09077341,0.30869374,-0.38703898,0.16354315,0.31145424,-0.12136272,-0.46901554,0.5322162,-0.5116687,0.51279616,-0.18574017,-0.06552005,0.123092726,0.31276596,0.1693162,0.78650373,-0.09634583,0.12666102,0.05302555,-0.18318588,0.031330597,-0.28357893,0.077687144,-0.5360081,-0.31807587,0.41842136,0.4122125,0.24180368,-0.322826,-0.056637958,-0.0065278113,-0.079782486,-0.010781137,-0.033232387,0.05888826,0.06887371,-0.5848081,-0.5608902,0.54443276,-0.19816095,0.028830718,0.029815312,-0.30507946,0.28883514,-0.20635857,-0.16788241,-0.0359748,-0.6824805,0.05590867,-0.23568371,-0.50044036,0.31522447,-0.38829947,0.32298803,0.16297029,0.019427046,-0.49610254,0.23977442,0.11230186,0.81243765,-0.004156083,-0.16249093,-0.43856868,0.0016325116,0.37579474,-0.21157146,-0.042238556,-0.3562098,0.015173882,-0.3874189,0.3858665,-0.06871767,-0.15795988,-0.18867604,-0.101831175,-0.009907749,0.52880627,-0.16837423,-0.11803034,0.014477726,-0.0002027303,-0.35625592,-0.026050702,-0.39482886,0.24921697,0.09522641,0.0033865646,0.0849527,-0.0599738,-0.12703753,0.40433946,0.12038685,0.27524146,0.24437742,-0.18543306,-0.30586183,-0.1024752,0.056859124,0.28374347,0.11615546,-0.09761504,-0.22768907,-0.3353832,-0.22502889,0.28144556,-0.17989218,0.1603663,0.19435506,-0.41356608,0.6866825,0.16186948,1.1137288,0.20918304,-0.23670089,0.120152146,0.31165987,0.1508537,0.15652105,-0.32587987,0.80508024,0.7024179,-0.0730105,-0.26440594,-0.2224091,-0.13803175,0.22578499,-0.19539161,-0.1492149,0.011932265,-0.59026206,-0.25983572,0.114722304,0.22559075,0.18005018,0.06477046,-0.12251997,-0.041939266,0.18810129,0.4895721,-0.39309317,-0.17264621,0.40348712,0.12973757,0.13896574,0.2476901,-0.23101854,0.5274682,-0.4799412,0.115824506,-0.5171836,0.05142855,-0.03941854,-0.18653145,0.1821007,-0.0474841,0.36657792,-0.15035766,-0.22755244,-0.3527671,0.6577257,0.24914351,0.3180889,0.6961205,-0.2108912,0.032037806,0.10039022,0.57383716,1.2626265,-0.2123997,0.09693317,0.3505799,-0.24351113,-0.51081187,0.14958945,-0.29854095,0.05196266,-0.22708473,-0.3063442,-0.47608623,0.23318878,0.082343765,-0.09322819,0.107386254,-0.41635013,-0.30166215,0.4591758,-0.3021075,-0.34159642,-0.29631388,0.34324715,0.704069,-0.40368205,-0.2715347,0.06336513,0.16916001,-0.18149048,-0.52701104,-0.002888374,-0.2338897,0.25692576,0.18692252,-0.37848714,-0.017764773,0.3840081,-0.2534323,0.09469223,0.4223658,-0.33697593,0.036341958,-0.121153675,-0.2265847,1.1468087,-0.013577394,-0.03640464,-0.6615405,-0.478547,-1.0726542,-0.47639585,0.42564383,0.15529187,0.042059872,-0.4374007,-0.00012510642,0.03628414,-0.013356354,0.0012644455,-0.44405863,0.40828145,0.1251373,0.42354995,-0.0029800795,-0.72407293,-0.20323062,0.09164055,-0.21269041,-0.5276905,0.4960681,-0.14023094,0.7441386,0.0002935063,-0.022375554,0.20764518,-0.4811644,0.16674095,-0.45039344,-0.19983542,-0.72625357,0.07392794 +216,0.34862882,-0.2425614,-0.72098863,-0.1476869,-0.2431171,0.19051394,-0.3216853,0.12851691,0.42616102,-0.50674146,0.042660255,-0.2904563,0.063643135,0.28780887,-0.13516697,-0.743252,-0.1565683,0.3660411,-0.22569782,0.33878836,-0.3720794,0.31126297,0.3287429,0.39136553,-0.13858347,0.049357966,0.3533312,-0.30912378,-0.16226928,-0.53338474,-0.059890684,-0.13509284,-0.7122247,0.2808654,-0.1669958,-0.18324834,0.24278833,-0.4286936,-0.39605153,-0.69961077,0.36759904,-0.95648444,0.8841164,0.13951449,-0.14883512,0.13885735,0.31946558,0.07688308,-0.02016993,0.27943724,0.35011554,-0.55030584,-0.5186556,-0.21056956,-0.34047413,-0.6243633,-0.6734205,-0.14601716,-0.49827892,-0.09744525,-0.49320272,0.34951243,-0.33999944,-0.009664568,-0.22676225,0.5218265,-0.31765854,-0.1655318,-0.12143776,-0.43815377,0.42866465,-0.7975985,-0.12805603,-0.07593956,0.007995096,0.11152923,-0.056589022,0.14321545,0.123359464,0.40492153,0.08281843,-0.24172892,-0.47184646,-0.04159784,0.12102905,0.56081814,-0.21112837,-0.39112636,-0.18816067,0.037172142,0.49989355,0.16775304,-0.0935013,-0.4162761,0.11980268,-0.23807034,-0.25386325,0.7129972,0.64343053,-0.20141731,0.26431262,0.31450847,0.17930041,0.29572532,-0.11976112,0.08212744,-0.04512506,-0.4446745,-0.0916395,0.13166666,-0.29363117,0.63571554,-0.13277403,0.06717292,0.62230617,-0.2041463,-0.012875303,0.017838685,0.14952634,0.0862785,-0.09776902,-0.253437,0.48858902,-0.4470621,-0.06745973,-0.58605295,0.8625828,-0.19345576,-0.81791615,0.33541694,-0.5770457,0.10936501,-0.21264262,0.7772757,0.5733636,0.8625151,0.15168108,0.88450885,-0.36286563,0.17136365,-0.02619247,-0.32727468,0.26024222,0.122389205,0.17345859,-0.45215848,-0.07335859,-0.18581416,-0.15324391,0.023921115,0.66106147,-0.3197587,-0.13968095,0.1750617,1.0198547,-0.34365046,0.0029593597,0.39727372,1.4878582,0.8108513,-0.015075654,1.4477787,0.13378328,-0.23954608,-0.49899703,0.12932533,-0.9504339,0.12720394,0.35222757,0.08272392,0.0941968,0.28075588,-0.02777818,0.34999874,-0.6014674,-0.2631617,0.008474719,0.35792246,-0.09044948,-0.14019077,-0.44036695,-0.10859155,0.32057732,0.1864626,0.23679656,0.33715156,-0.31500053,0.48957264,0.18635978,0.93511623,-0.2061634,0.08525772,-0.06733372,0.38459322,0.14960217,0.20703055,0.13583463,0.157745,0.39293683,0.06403015,-0.58458686,-0.022030098,-0.07610598,-0.4767885,-0.4523489,-0.1508054,-0.058903825,-0.12187858,-0.10351873,-0.3806546,0.13013405,-0.5218994,0.27161816,-2.3178353,0.043784786,0.04245899,0.42558458,-0.018005459,-0.23750778,-0.060291722,-0.40499738,0.77555466,0.3074076,0.5109611,-0.4503977,0.40828755,0.61118865,-0.43864536,-0.2520356,-0.67009884,-0.12591672,-0.3094847,0.5067964,0.08617518,-0.44719136,-0.13316402,0.25483286,0.6634762,0.20324607,0.23542951,0.21970691,0.47866553,-0.16596887,0.48023227,-0.060654357,0.6124697,-0.11994052,-0.23267795,0.15744658,-0.3076273,0.12931833,-0.5550714,0.068750136,0.39642698,-0.38641107,-0.7189457,-0.4353404,-0.03455268,1.1872772,-0.46090928,-0.9427671,0.2615476,0.2006252,-0.13437237,0.33441374,0.45911214,-0.3733301,0.12757793,-0.7341654,0.014312821,-0.122943096,0.29327258,-0.0024974414,0.10091709,-0.76363236,0.8881846,-0.17158224,0.5088184,0.6116443,0.36735937,-0.32291967,-0.6057985,0.23686689,0.98809916,0.4021354,0.03996418,-0.33502325,0.02369522,-0.086310655,-0.35115167,-0.040950473,0.72454095,0.9330273,-0.1060472,0.06348397,0.31307608,-0.3901045,0.023798162,-0.103132084,-0.745102,-0.17462236,-0.10651097,0.6845122,0.5526949,0.033403374,0.46047097,-0.05849582,0.7413304,-0.17705896,-0.33668897,0.6154773,1.0861739,-0.18963741,-0.1371785,0.97300756,0.52187914,-0.23908973,0.608551,-0.73209095,-0.5310212,0.45736617,-0.008985118,-0.7083841,0.17574495,-0.4631221,0.00055206905,-1.1403431,0.35961232,-0.20211996,-0.6841187,-0.6943293,-0.331226,-2.9034927,0.06247938,-0.54216826,0.046628322,-0.32154667,-0.0060899314,0.26995027,-0.41992322,-0.58523154,0.12678042,0.1975627,0.51134396,-0.16670987,0.18541393,-0.18703292,-0.11873138,-0.020717047,0.43412,0.2054957,-0.12634635,0.0047116983,-0.5339339,0.22637601,-0.21916999,-0.29070985,-0.12070658,-0.48144618,-0.1544807,0.051358998,-0.6744009,-0.31487882,0.5582779,-0.5562651,-0.16906959,-0.31321195,0.25340703,0.08602391,0.22955702,-0.24345355,0.35659006,0.09473465,-0.13842903,0.1423513,-0.17072493,0.22626644,0.15349928,0.16222285,0.44035622,-0.16240126,-0.13315701,0.620349,0.47653922,-0.16967875,1.0443372,0.4459035,-0.22058764,-0.0121054975,-0.3556735,-0.47195676,-0.6752624,-0.19220716,0.012733817,-0.46041203,-0.23502478,-0.01958432,-0.36553183,-0.8987066,0.67690253,0.21628116,-0.057783544,-0.037234303,0.29397365,0.26314905,0.0020529493,-0.06916228,-0.23748149,-0.11286106,-0.37926102,-0.14986916,-0.79383564,-0.33580273,-0.2774515,1.1117369,-0.06161434,-0.12278405,0.33362657,-0.16810133,0.14907669,0.15357676,0.066188425,0.21339975,0.5594869,0.3810875,-0.9266481,0.40357444,-0.27800408,0.14176339,-0.8866568,0.16353844,0.61413133,-0.8963747,0.32241714,0.76715356,0.20622416,-0.39362317,-0.688898,-0.27679077,0.2621741,0.010765564,0.40733662,0.02832946,-0.63927174,0.8606236,0.30200663,-0.20123424,-0.8063174,0.3927599,-0.0400085,-0.34356305,0.07917158,0.40998796,-0.033163562,0.1640541,-0.33405802,0.2319943,-0.2501074,0.56175405,-0.059402738,-0.05008799,0.4766537,-0.19693056,-0.16376938,-0.9851431,0.10049265,-0.3804289,-0.3157223,0.25403446,0.0031467623,0.058173403,0.27672604,0.08720712,0.41890147,-0.41796312,0.13756509,-0.28751996,-0.3508303,0.6185699,0.4806839,0.3617852,-0.39368182,0.8017463,0.034824505,-0.30090964,-0.2328319,-0.13892837,0.45120466,0.011934594,0.3946748,0.041842844,-0.14673692,0.18466191,0.8395168,0.06767017,0.34092474,0.17603672,-0.023087831,0.54555213,-0.092207,0.16955541,-0.09057468,-0.7415453,-0.19446464,-0.22056602,-0.023792136,0.42287654,0.28573787,0.74002516,-0.09106739,-0.11878573,0.07090823,0.040263478,0.087309435,-0.93963224,0.41028702,0.16891031,0.5344706,0.60924417,0.064310044,0.18385229,0.8034782,-0.30040896,-0.10416773,0.26516446,0.18245354,-0.18670025,0.60211486,-0.601307,0.16001818,-0.2676867,0.10544805,0.20459796,0.13680865,0.5011607,1.125624,-0.1267733,0.18046027,-0.054026898,-0.099761195,-0.011371165,-0.27931193,0.18610169,-0.23763813,-0.40030086,0.82357234,0.17870575,0.4111107,-0.17599483,-0.15503234,0.4211665,-0.12222524,0.41794488,0.12814215,-0.25611025,0.0034356334,-0.72473055,-0.18204013,0.5192632,0.38154414,0.019304514,-0.037382547,-0.09393323,0.3569438,-0.026820077,-0.25081024,-0.0325825,-0.5247241,-0.20457385,-0.382018,-0.59289324,0.31012508,-0.09010622,0.22513662,0.040726032,-0.043446336,-0.023338003,0.030472403,0.41282034,0.6571219,0.31680477,-0.3749015,-0.14936465,-0.28467488,0.16896053,-0.3116862,-0.16797315,-0.1563654,0.18831353,-0.6073607,0.4577734,-0.6369017,-0.34280097,0.3524597,-0.41548574,-0.21238221,0.39420292,-0.096669264,-0.08671873,0.6663393,-0.058570568,-0.211385,-0.34652594,-0.52717537,-0.024583517,-0.28824338,-0.11789942,-0.31985885,-0.16682325,-0.22983271,0.3266084,0.16349143,0.11069905,0.39590606,0.30899718,-0.41714647,-0.26841205,0.026604118,0.67702365,-0.28207806,0.05902525,-0.2637998,-0.50604796,-0.27279755,0.054789305,-0.12744409,-0.017249541,0.14405802,-0.4449596,0.85676,-0.029385038,1.0121169,-0.15386955,-0.47699234,-0.008757147,0.67202747,-0.1188255,0.024693608,-0.5173541,1.1608325,0.7854626,-0.19708386,-0.3257009,-0.9591828,0.12162199,0.40036538,-0.31586823,-0.38161704,-0.32853886,-0.69549775,-0.3481436,0.3490033,0.2983317,0.008818606,-0.04715886,0.2808158,0.2640154,0.26270536,0.3923009,-0.71277446,0.037360128,0.46325186,0.1792122,0.0096342405,0.22782773,-0.28283122,0.13746575,-0.4857089,0.1545222,-0.48428395,-0.10766497,-0.07562726,-0.20349954,0.24550605,0.004479414,0.13056467,-0.24434708,-0.19172853,-0.08230898,0.5682928,0.08590882,0.30199406,0.7170857,-0.15519439,0.052725777,-0.08332863,0.6289553,1.3841217,-0.36592302,0.29696968,0.30801082,-0.38442668,-0.55030364,0.25476804,-0.34281206,-0.19200724,0.041811977,-0.4630785,-0.62249225,0.16584063,-0.18803245,-0.27187067,0.186592,-0.22841696,-0.21614335,0.36650077,-0.19565023,-0.21138836,-0.043015834,0.046423838,0.6072285,-0.25612468,-0.13295613,-0.15890317,0.3264631,-0.31733704,-0.6961459,0.061665222,-0.36038625,0.4480677,0.2564611,-0.35639358,-0.0092502665,0.15468857,-0.6789912,0.025391113,0.2932162,-0.21275754,-0.022548482,-0.30625063,0.26461914,0.5751569,-0.20436253,0.09333501,-0.7015986,-0.56525785,-0.9548527,-0.039325118,0.0664197,0.1805657,-0.05321674,-0.78471684,-0.089419775,-0.31284487,-0.096374676,-0.17054339,-0.7156057,0.223497,0.09946448,0.7224709,-0.3200951,-0.8378912,0.21915509,0.13012472,-0.416286,-0.5533999,0.6764594,-0.023897069,0.8368173,0.13230024,0.019048238,0.1429697,-0.7319639,0.3187707,-0.11654537,-0.33873776,-0.73460096,0.20297828 +217,0.38973406,-0.0604737,-0.42929268,-0.18461321,-0.3153701,0.080991276,-0.05440733,0.42913416,0.087869205,-0.5678235,-0.18530218,-0.17973496,0.044840608,0.4123194,-0.07733996,-0.74204457,0.19520864,0.24448936,-0.5616765,0.5339146,-0.4539008,0.41929922,0.20175804,0.10654359,0.15603817,0.26042223,0.3366051,-0.31729954,-0.030742748,0.018182065,-0.39739043,-0.032159757,-0.44329286,0.31851795,-0.073389046,-0.35517663,0.10453377,-0.28260043,-0.4187853,-0.64868397,0.28574798,-0.70386964,0.39968273,-0.04905939,-0.11892628,0.12450024,0.16148742,0.4189084,-0.20094912,0.061284292,0.21891865,-0.044981055,-0.28280157,-0.13729988,-0.16780008,-0.5676197,-0.55474657,-0.02431406,-0.37858412,-0.22314365,-0.42916754,0.1353428,-0.2872621,0.011467202,-0.12668972,0.32430866,-0.34177542,0.0615479,0.21693143,-0.12429981,0.09900563,-0.48143578,-0.041603517,-0.09147032,0.31272045,-0.16322437,-0.20112813,0.3995423,0.29506984,0.499902,0.12957944,-0.14377855,-0.22396031,-0.15033783,0.24093078,0.62777287,-0.027923618,-0.55156887,-0.16976252,0.007281908,-0.10749133,0.040126078,0.050828606,-0.38668332,-0.05699438,0.018612996,-0.42562607,0.43953234,0.3666812,-0.34094962,-0.37561002,0.41984367,0.45639017,-0.020160943,-0.12927507,-0.00954482,-0.09523297,-0.5829491,-0.19129963,0.07486032,-0.16162403,0.46332672,-0.21276546,0.306428,0.60873646,-0.16888067,-0.03748291,-0.0030378103,-0.10073437,-0.008832766,-0.13803707,-0.054165363,0.06493872,-0.6079146,0.05954197,-0.21052255,0.8505898,0.26431736,-0.5907749,0.3916584,-0.48694345,0.26234522,-0.16349602,0.4293074,0.6109885,0.33742914,0.078215316,0.8214038,-0.47379258,0.22762395,-0.085908756,-0.53429335,-0.06140233,-0.12918669,0.02164352,-0.43970856,0.13562551,0.017552542,-0.0068921605,-0.049270462,0.41199937,-0.49428013,-0.13453884,0.03555603,0.9782247,-0.33162227,-0.1041716,0.6101895,0.89847094,1.0498028,-0.018289099,1.1976175,0.2311071,-0.38975453,0.34491593,-0.48431942,-0.6479085,0.28563404,0.44606808,0.40326267,0.12786524,0.13273655,0.026229104,0.29888806,-0.43222895,0.07960496,-0.25564954,0.16279764,0.094393454,-0.18719019,-0.41248196,-0.26102188,-0.08893285,-0.015155026,0.13724712,0.20792116,-0.2245659,0.38863617,-0.08019536,1.6323861,0.060449593,0.08126695,-0.005411234,0.5129681,0.14865533,-0.06380921,-0.0822951,0.18300512,0.34352466,0.00045641564,-0.54833955,0.023055146,-0.29470968,-0.5789594,-0.08943331,-0.35041162,-0.07328304,-0.13126229,-0.36733368,-0.12179351,-0.0008647197,-0.29294035,0.5386439,-2.6250768,-0.23705436,-0.14249349,0.36116105,-0.20565401,-0.2968516,-0.06767456,-0.5137958,0.38206035,0.32383275,0.59374183,-0.59385747,0.5648631,0.3408403,-0.5446457,-0.08795854,-0.6188097,-0.09181956,0.06056419,0.4025629,0.042203963,-0.0465031,-0.095398545,0.032755252,0.45898262,-0.18572031,0.04229526,0.17634137,0.36322573,0.26878676,0.543223,0.13554512,0.5703312,-0.2772545,-0.019148579,0.32876128,-0.2484325,0.3453209,-0.087748885,0.089097925,0.33345458,-0.4204785,-0.8446136,-0.68745434,-0.28657755,1.0082533,-0.18974447,-0.14462705,0.25703755,-0.31171486,-0.10152552,-0.08997793,0.32455748,0.029142026,-0.18240823,-0.697178,0.05346007,0.00232324,0.15131196,-0.09608445,-0.036592424,-0.37339634,0.7575467,-0.027544653,0.4836288,0.20924045,0.20857036,-0.16283707,-0.30714366,0.0496952,0.9406398,0.20070735,0.16518784,-0.14056437,-0.2903791,-0.60182345,-0.2229334,0.03473492,0.5413815,0.8010303,-0.0051295543,-0.034510314,0.25706822,0.02686788,-0.011164137,-0.15311599,-0.22328672,-0.07312095,-0.04187217,0.5559916,0.3707462,-0.098248206,0.6130038,-0.112983145,0.2694084,-0.27546936,-0.46955284,0.46460083,1.069319,-0.23016752,-0.2553677,0.4280557,0.44666988,-0.18706618,0.37646034,-0.712543,-0.3914618,0.54030097,-0.054317262,-0.2643007,0.10442071,-0.2978739,0.21464966,-0.94585216,0.29258546,-0.24719417,-0.740328,-0.43825778,-0.11651553,-3.5917766,0.16656439,-0.15501721,-0.09900924,0.05903176,0.16173795,0.061855704,-0.364727,-0.456553,0.17029206,0.07178859,0.7584842,-0.019742263,0.23252988,-0.24313875,-0.0657965,-0.39040378,0.19550554,-0.102207184,0.2493536,0.007190875,-0.42051116,0.03163262,-0.19318032,-0.35984498,0.21067241,-0.7642108,-0.54781824,-0.13456905,-0.31744814,-0.3767894,0.6483426,-0.4381583,0.14225043,-0.1290178,-0.0130873965,-0.22900613,0.26523718,0.11094625,-0.005288769,0.01606425,-0.08116986,-0.045555312,-0.25989896,0.3389956,0.11610383,0.58272207,0.3415043,0.013137,0.11018909,0.6116724,0.6217452,0.06019095,0.71205646,0.32472423,-0.119790874,0.31644025,-0.19889198,-0.09178763,-0.45005533,-0.3702212,-0.13220714,-0.31938356,-0.52738,-0.057572246,-0.34409484,-0.705854,0.27951,0.16060056,0.018384645,0.046619333,0.30747724,0.45016408,-0.17420118,0.06854959,-0.028437618,-0.08070786,-0.64072675,-0.4261305,-0.63710266,-0.47268948,0.16343041,1.0583843,-0.19773997,-0.13889137,-0.12914371,-0.28726846,-0.08612188,0.22560365,0.018130656,0.19640912,0.34103426,-0.30140015,-0.80391484,0.57374555,-0.21566913,-0.05175216,-0.49059612,0.0874486,0.4545409,-0.70184743,0.2986506,0.3110991,0.09103326,0.16437873,-0.32376167,-0.26678327,-0.07709223,-0.26688507,0.22185786,-0.023875728,-0.7292891,0.40870067,0.3095363,-0.20976844,-0.71466523,0.5276121,0.13177727,-0.20465958,0.0697126,0.21086751,0.16767628,-0.0885641,-0.2025954,0.14513016,-0.47519857,0.39087453,0.32588392,0.12794212,0.08272714,-0.27055642,-0.20459768,-0.67355984,-0.20337558,-0.2917333,-0.05104404,0.21828733,0.09126334,0.22992297,0.17220013,0.14240703,0.26436943,-0.2275569,0.059751175,-0.075257406,-0.29750198,0.29736826,0.34064752,0.3119579,-0.50917375,0.5817534,-0.041264314,-0.003646144,-0.046759784,0.06155359,0.39732566,0.1597134,0.4688,0.086519755,-0.30639777,0.2739494,0.91781706,0.3789946,0.24703096,0.13342337,-0.17892054,0.30940625,0.09306189,0.058361106,0.22559237,-0.5021229,-0.053520646,-0.17190002,0.15087168,0.39659324,0.07837837,0.21580578,-0.07230176,-0.2164581,-0.029244807,0.043216202,0.044369582,-1.2399777,0.48756647,0.3438926,0.75472766,0.52044696,-0.1737128,0.075447366,0.58775276,-0.16578582,0.2634404,0.27672273,-0.28892294,-0.53258264,0.4031646,-0.559507,0.61353976,-0.06949032,0.029643008,0.06632038,-0.08538739,0.31611776,1.0362886,-0.23357406,0.07792287,0.10866026,-0.4114302,0.22828004,-0.38982153,-0.0027812123,-0.70040935,-0.16414197,0.6113343,0.41901925,0.11996733,0.052105155,-0.0023631975,0.007119396,-0.13589457,0.16728266,-0.0041775447,0.13980062,-0.030139128,-0.7003783,-0.20577069,0.54039997,-0.15723002,0.2415435,0.25121647,-0.17443337,0.36967987,-0.082638755,0.012531452,-0.20956731,-0.5101409,0.008337106,-0.18236116,-0.20999178,0.41256377,-0.028928343,0.37363657,0.23824444,0.081092134,-0.31795308,0.37694576,0.047500484,0.5274994,-0.007817413,-0.32172948,-0.47456455,0.088696636,0.18316555,-0.25518316,0.082669504,-0.28612635,-0.1302842,-0.7908155,0.4666755,-0.00020213638,-0.25796127,0.15879002,-0.12655236,0.02350544,0.48327044,-0.056458175,-0.13039574,-0.08095123,0.091896005,-0.086072154,0.0713629,-0.10074549,0.22265856,0.046682008,-0.06924115,-0.117704906,-0.13791595,0.03308413,0.3729278,-0.023736274,0.37530518,0.23690894,0.12689593,-0.3428749,-0.08976887,0.27613607,0.4916556,0.07701112,-0.035756387,-0.052915145,-0.19730647,-0.3678393,0.064622924,-0.21229468,0.33136916,0.17502871,-0.38382545,0.5275865,-0.12597148,1.3792799,0.06945937,-0.31267843,0.086786985,0.6105134,0.08275799,0.052472044,-0.28147,0.84165984,0.48664507,-0.12727574,-0.19626155,-0.35479927,0.09212633,0.22101244,-0.1654173,-0.24228738,0.13700412,-0.6381172,-0.28056738,0.10907408,0.16428259,0.30428043,-0.029138407,-0.08848059,0.2022324,-0.043001838,0.36494783,-0.5698825,-0.24841377,0.23233427,0.27542487,0.06054262,0.105835356,-0.5245411,0.46689343,-0.5119722,0.071948014,-0.11618084,0.13039063,-0.22589697,-0.270516,0.28574854,0.23432074,0.40287563,-0.2437989,-0.38433293,-0.35028315,0.5578755,0.16952841,0.26087362,0.59251106,-0.17646606,-0.16914184,0.14360155,0.41708803,0.9500321,-0.24049915,0.01700442,0.41261634,-0.4425413,-0.45261267,0.23841187,-0.31104258,0.08952244,0.16724338,-0.22443832,-0.60672647,0.35526276,0.19113347,-0.05849431,0.16443653,-0.6437277,-0.32030982,0.14343795,-0.32826573,-0.42497465,-0.45680207,0.2383606,0.60619676,-0.42889684,-0.08991202,0.20820156,0.12229563,-0.3020541,-0.63520986,-0.010084225,-0.43169895,0.399831,0.13584308,-0.26627824,-0.16508792,-0.039588623,-0.39481667,0.27964535,0.23522142,-0.44098458,0.0778627,-0.37022546,-0.28265816,0.8298831,-0.09162295,0.17705737,-0.5449863,-0.23628037,-0.76602453,-0.4636869,0.6593016,0.20833349,-0.11635566,-0.4164599,-0.24073628,0.14246896,-0.13184814,-0.075088754,-0.48802114,0.5025162,0.07634127,0.21211858,0.020949427,-1.0529773,-0.005373712,0.20512421,-0.282319,-0.51445544,0.40423244,-0.0902464,0.94221085,0.1443434,0.091494076,0.43469253,-0.43825206,0.026743433,-0.28759104,0.029625697,-0.58727163,0.14386389 +218,0.46949074,-0.12914278,-0.63483095,-0.14160185,-0.29058287,0.0640402,-0.25576073,0.4453448,0.20464294,-0.5487543,-0.16093123,-0.27017933,0.006469811,0.47542152,-0.19936979,-0.6925931,-0.023808716,0.1665434,-0.520467,0.5167991,-0.36054158,0.23739684,0.14626145,0.37576112,0.3820141,0.31194434,0.25693536,-0.26383677,-0.363522,-0.054523557,-0.058377974,0.10590084,-0.58832365,0.12409938,-0.2056919,-0.5135255,0.069668114,-0.4907861,-0.34827647,-0.6532317,0.3460947,-0.8182368,0.39561194,-0.08687709,-0.11777624,0.15881607,0.17364399,0.5359934,-0.21652804,0.027157156,0.07600373,-0.1744768,-0.058812372,-0.0066223284,-0.22234176,-0.36943343,-0.51864237,0.07805036,-0.4150901,-0.19368216,-0.17737257,0.09432144,-0.36604753,0.18854734,-0.08972602,0.41563618,-0.43498713,-0.13309297,0.27671027,-0.15789512,0.2769594,-0.50353587,-0.1809919,-0.17061752,0.22085527,-0.20205595,-0.112364516,0.3647831,0.29716447,0.5460248,0.0876398,-0.24528815,-0.34050632,-0.045283206,0.22167721,0.48874316,-0.18604076,-0.52138877,-0.25744042,0.0029908146,0.3541671,0.09390768,-0.028682355,-0.3550232,-0.015701083,0.13767298,-0.33539823,0.26425904,0.45467725,-0.21158803,-0.1597564,0.2225354,0.5065166,0.1835579,-0.17600818,-0.0045642396,0.03469494,-0.48539042,-0.18021773,0.16449897,-0.2184604,0.5068651,-0.035336155,0.16523297,0.6893665,-0.23633993,0.13362461,-0.09090657,-0.038909722,-0.18514258,-0.24680379,-0.29447803,0.24945371,-0.537409,0.17497116,-0.21422184,0.8456147,0.2730269,-0.7279517,0.30415246,-0.5741762,0.23539114,-0.053513426,0.44318908,0.6519725,0.3905384,0.29635826,0.61058605,-0.4239018,0.20939817,-0.2097678,-0.42125794,-0.01361869,-0.21854869,0.027071036,-0.36897296,0.07150325,-0.043857105,-0.08425746,0.071789235,0.29439372,-0.48477668,-0.041855525,-0.03860865,0.9522326,-0.2768295,-0.021892702,0.6919656,0.90693843,1.0134435,0.017164083,1.1546628,0.26821384,-0.34624645,0.24127229,-0.2009131,-0.6617368,0.29760665,0.39410433,-0.28465933,0.30990937,0.099617384,0.08352011,0.47056597,-0.39200225,0.18799187,-0.23150726,0.12946752,0.044000935,0.0028210317,-0.3948031,-0.20736492,-0.052077897,-0.037052047,-0.045129314,0.23000593,-0.15316392,0.44239148,0.07111575,1.8249059,-0.07526557,0.0777551,0.05331209,0.46988252,0.09082481,-0.0065645636,-0.0379632,0.103281595,0.22873875,0.024438953,-0.5458187,-0.011877501,-0.28151175,-0.5076397,-0.16140115,-0.24880168,-0.11708552,-0.11713853,-0.5069037,-0.119358346,-0.113953814,-0.22942433,0.392078,-2.412691,-0.255474,-0.18312632,0.17931743,-0.43455487,-0.37109038,-0.113382876,-0.47562256,0.43669268,0.30460048,0.5361692,-0.701612,0.4249824,0.35229155,-0.46159643,-0.120716654,-0.6646933,-0.13912264,0.00023832041,0.3554647,-0.05691451,-0.17242688,0.0338169,0.12895706,0.45578936,-0.24736612,0.05531763,0.16592379,0.31515792,0.21982355,0.6279748,-0.047012683,0.52210236,-0.38901556,-0.13046181,0.3667679,-0.3750206,0.15219285,0.010975992,0.18394473,0.34091192,-0.50765926,-0.91417426,-0.69725424,-0.3491571,1.1440412,-0.1992336,-0.2668012,0.23547758,-0.24824078,-0.11546404,-0.029654594,0.27858952,-0.090776,0.050613303,-0.8245063,0.07134096,-0.14926991,0.09953266,0.117743425,0.057513006,-0.26226154,0.5927039,-0.02960853,0.32574415,0.5139763,0.27533114,-0.17002527,-0.42839536,0.12998493,1.0199689,0.30717283,0.19737785,-0.19993083,-0.20654356,-0.39060682,-0.17467827,0.13880716,0.32150844,0.7832663,-0.014196894,0.076324776,0.21811251,-0.024894306,0.028731298,-0.10212505,-0.43641624,-0.13601764,0.06699699,0.56895274,0.5995509,-0.16424179,0.50358367,-0.10782452,0.32414937,-0.1450216,-0.44511324,0.5511597,0.81624717,-0.22571859,-0.2162092,0.39532408,0.551339,-0.24983527,0.46415946,-0.62407225,-0.41227704,0.553882,-0.15842783,-0.44693688,0.20410866,-0.39064535,0.13299008,-0.9774231,0.24016151,-0.3856854,-0.21184796,-0.513722,-0.15919618,-3.35905,0.09811414,-0.14067192,-0.251669,-0.09066466,0.012561777,0.19048916,-0.664463,-0.6413351,0.10840076,0.08207923,0.69285756,0.08160791,0.13882111,-0.2885778,-0.18846238,-0.23663038,0.03259648,0.20675601,0.17663825,0.06105923,-0.6059816,-0.17967457,-0.2947125,-0.4252163,0.13159777,-0.58366275,-0.52678144,-0.22262043,-0.53121996,-0.43146566,0.63149136,-0.3579321,0.057146877,-0.10603267,-0.03477877,-0.181132,0.30398315,0.13659385,0.067536004,0.11692036,-0.07172903,0.053281978,-0.33696488,0.12174525,0.18211804,0.29741076,0.37521636,-0.058643408,0.22556531,0.56358737,0.74290043,-0.06659194,0.8330638,0.51962596,-0.118706,0.39740804,-0.4225099,-0.30861068,-0.5370589,-0.29365432,-0.112895526,-0.2782575,-0.40904427,0.023612313,-0.37608775,-0.77563435,0.57579476,0.032749254,0.057349823,-0.06079746,0.08617344,0.4467355,-0.23623186,-0.11655269,-0.06592059,-0.08693746,-0.5675117,-0.3635853,-0.74157405,-0.6015197,0.105757326,1.1559349,-0.04569402,-0.07737018,0.06987908,-0.23644316,0.0828135,0.026771804,-0.013580606,0.11861998,0.4217287,-0.10806204,-0.7186894,0.46255848,-0.07647729,-0.14629498,-0.5636783,0.13997883,0.7613089,-0.64328337,0.405302,0.44481733,0.05220951,0.05476732,-0.3668214,-0.10068466,-0.09380351,-0.17652197,0.33037344,0.100487486,-0.57914025,0.45281175,0.42157176,-0.3021044,-0.79504335,0.4433139,0.12440544,-0.096118264,-0.01690615,0.33109567,0.21500412,-0.09296125,-0.1872732,0.0665094,-0.50651604,0.24612772,0.4164119,-0.08771613,0.34354708,-0.12251007,-0.23213933,-0.81782013,0.044918768,-0.38959724,-0.18702507,0.26430145,0.10934275,0.13682353,-0.059042305,0.029047359,0.2887432,-0.2556459,-0.020629862,-0.13557456,-0.23295113,0.37694004,0.4248793,0.4170118,-0.4342537,0.61062104,0.015990293,-0.050702356,-0.02678233,-0.020260205,0.4606326,0.16156429,0.2393355,0.12989955,-0.3214227,0.25514913,0.7370294,0.19746582,0.4779974,0.115031265,-0.2436278,0.23540261,0.19786581,-0.07158448,0.23671156,-0.43642965,-0.06470842,-0.025212422,0.11619983,0.47208938,0.20440505,0.41019797,-0.035824627,-0.2595867,0.010716478,0.108662955,-0.087349236,-1.323277,0.3920329,0.15933764,0.7167286,0.59448826,-0.024261085,0.15750268,0.5623674,-0.21506691,0.16234636,0.4250542,-0.1671407,-0.5360447,0.6336006,-0.6681463,0.51504946,0.030960217,0.10910587,0.071306616,0.042460352,0.51636237,0.73673767,-0.06609245,0.115227334,0.0017824523,-0.32197958,0.036465842,-0.30452538,-0.08160893,-0.46986175,-0.23248552,0.5810465,0.39369038,0.29664052,-0.102379546,-0.06638682,0.026404629,-0.09578133,0.24808797,-0.05996987,0.16284177,0.04614855,-0.5914815,-0.38462117,0.5152233,-0.030332537,0.29809344,0.035005935,-0.23009089,0.3177675,-0.07722749,-0.04631032,-0.066048495,-0.60072696,0.018947955,-0.4246685,-0.358989,0.39543977,-0.058568455,0.3416928,0.07533531,0.032742217,-0.3848002,0.49374187,0.066260055,0.7208202,-0.15496525,-0.3285087,-0.19620526,0.063717805,0.35162273,-0.20936537,-0.10459123,-0.25539425,0.0052394797,-0.5390092,0.43552113,-0.119845964,-0.18794467,0.14973338,-0.1677494,0.030199504,0.5478122,-0.19488811,-0.078149736,0.06169263,0.075287946,-0.2688393,-0.16159639,-0.15543468,0.21419632,0.23199567,0.07399984,-0.14092204,-0.14210165,0.03246111,0.45275712,-0.12292056,0.3741318,0.36518165,0.1725661,-0.40966097,-0.19591224,0.2111856,0.427563,0.11971639,-0.115181506,-0.3405032,-0.3004097,-0.30105236,0.11558424,-0.16272295,0.23788245,0.16477752,-0.43690935,0.902394,0.006302469,1.2986652,0.004194042,-0.38886338,0.074976414,0.34477633,-0.12730004,0.074916236,-0.40822577,0.8374111,0.5370167,-0.11608588,-0.19845657,-0.45305118,-0.120180525,0.17149617,-0.2526533,-0.16635294,-0.004002895,-0.51786804,-0.40081707,0.2692375,0.34030476,0.17761329,-0.21255729,0.060694862,0.10821121,0.06615011,0.4230087,-0.42390078,-0.26392746,0.35563043,0.3671928,0.0465531,0.122772865,-0.46998546,0.4284585,-0.5096828,0.03623735,-0.2434173,0.15055686,-0.090101555,-0.31021667,0.31351408,0.029061764,0.39052403,-0.44815984,-0.34773535,-0.25111875,0.572299,0.02038788,0.15649596,0.71955967,-0.22870874,-0.008025885,0.0155533375,0.54681325,0.987934,-0.31737423,0.039520472,0.4446993,-0.22560929,-0.5084335,0.29374588,-0.30930418,0.1326672,-0.07388073,-0.33111787,-0.66558737,0.3032438,0.23562863,-0.033692893,-0.0027691405,-0.5695876,-0.1321699,0.3172891,-0.3360598,-0.38136774,-0.3807543,0.057885334,0.56580096,-0.32367238,-0.28447488,0.21523486,0.2569542,-0.1271034,-0.36308044,-0.19287863,-0.26961595,0.39498076,0.31509298,-0.34069785,-0.111487836,0.12058279,-0.48097453,-0.019114709,0.17438161,-0.40335643,-0.012299303,-0.24484418,-0.07554827,0.9148694,0.007955845,0.23840058,-0.5796218,-0.3665612,-0.9092606,-0.4131441,0.59696263,0.14721912,0.024642,-0.5851154,-0.034616105,-0.045030624,-0.15251757,0.019086147,-0.44269866,0.43557557,0.10575984,0.47102287,-0.15516102,-0.58314514,0.11423882,0.16211048,-0.108835384,-0.55019736,0.490431,-0.078613184,0.8876763,0.07879962,0.0599608,0.3667083,-0.453372,-0.13631962,-0.2550039,-0.2586124,-0.7021215,0.07855742 +219,0.27692732,-0.1817098,-0.34288037,-0.16793095,-0.3677078,-0.007027169,-0.23906921,0.16869803,0.1392662,-0.34280646,-0.22010233,-0.16386077,0.020888202,0.19059542,-0.13658123,-0.61908776,-0.18729696,0.07936623,-0.7471935,0.37550232,-0.6536644,0.29341313,0.10193381,0.24636889,0.06296376,0.5081788,0.27076778,-0.22097273,-0.06607088,-0.012409735,-0.020130659,0.26607487,-0.5553239,0.17129472,-0.19351631,-0.21793383,0.115828656,-0.48001093,-0.14731461,-0.6018149,0.0496165,-0.8981418,0.3503326,-0.07102206,-0.015883517,-0.02709269,0.19947545,0.4453945,-0.28451616,0.13278408,0.29255137,-0.058833424,-0.09452998,-0.11771469,0.03824828,-0.2346346,-0.42579022,-0.0032634235,-0.5564728,-0.4115534,-0.16589458,0.14238253,-0.3277979,0.032492816,-0.10124224,0.17781763,-0.46577656,-0.056417547,0.26994947,-0.085354604,0.13413845,-0.4886948,0.09326904,-0.08334357,0.60342664,-0.232891,-0.14451632,0.40615642,0.3257691,0.4940693,0.15879737,-0.17469111,-0.07663003,-0.14659634,0.2768171,0.4411662,-0.21032758,-0.2195112,-0.25705793,0.0762342,0.18050757,0.31502336,-0.16267487,-0.3136553,0.057062343,0.013527099,-0.22846852,0.31438032,0.40638745,-0.29191697,-0.34963915,0.41422734,0.66639304,0.09521658,-0.19552271,0.031502757,0.060357586,-0.39459804,-0.16797085,0.2501753,-0.031845536,0.3285233,-0.049530316,0.15941317,0.81991756,-0.24708387,0.23867832,-0.14626375,-0.15926532,-0.15636717,-0.19344464,-0.19076957,0.059074577,-0.50649124,-0.021290159,-0.20439954,0.77543867,0.25592625,-0.80926156,0.43829343,-0.5221158,0.1549236,-0.1854138,0.70205635,0.6926164,0.34184748,0.30176392,0.6944641,-0.31337157,0.31153256,-0.14379829,-0.42397913,0.008246173,-0.14810963,0.10184564,-0.5072421,0.036581263,-0.16778561,0.06738809,-0.16438206,0.14805445,-0.44013032,-0.071864076,0.17825685,0.69584924,-0.41169965,-0.009560029,0.5712688,1.0449733,0.752284,0.064725585,1.1900696,0.3941136,-0.18430024,0.31638488,-0.4528209,-0.72898513,0.14473473,0.43230876,0.0538022,0.17995586,0.005198876,0.035660036,0.25328645,-0.49574697,0.14052303,-0.16489673,0.38720903,0.053163204,0.07703406,-0.3686828,-0.14142394,0.01786324,-0.15056896,0.04204259,0.20692286,-0.14300108,0.21356061,0.053659108,1.4888222,-0.028884359,0.09510994,0.04872047,0.67590225,0.13306235,-0.17072885,-0.12355339,0.41193104,0.36287537,-0.011561958,-0.65031165,0.26018247,-0.16694276,-0.4766629,-0.1281102,-0.40029186,-0.038580798,-0.01109941,-0.33930337,-0.0028835137,-0.049430467,-0.30976903,0.48661086,-2.9017208,-0.1968705,-0.15813619,0.39670223,-0.3574001,-0.24441582,-0.154414,-0.5139481,0.30097884,0.27224264,0.43586546,-0.6660874,0.48394388,0.4898184,-0.36704776,-0.20281158,-0.6937465,0.01694297,-0.05233907,0.4218778,-0.0023180882,0.003285281,-0.11682339,0.13554034,0.46079293,-0.07200546,0.17833589,0.33600876,0.42969024,0.36516267,0.6739548,0.035118464,0.51217365,-0.256946,-0.17892084,0.29276016,-0.24729997,0.22282122,-0.09944449,0.1124959,0.41395283,-0.46035782,-0.85547346,-0.6853219,-0.65947926,1.0282423,-0.44558576,-0.30267483,0.19485371,-0.037376914,-0.037686165,-0.010539878,0.5053898,-0.12908743,0.015844854,-0.7720735,0.20929438,-0.1243398,0.26904544,0.11841056,0.07223471,-0.3861221,0.5301899,-0.16458705,0.5438348,0.22454363,0.17143679,-0.15669407,-0.3050968,0.104900055,0.8665837,0.1877485,-0.02244792,-0.06644421,-0.2923444,-0.1980823,-0.2857998,0.08066075,0.4106248,0.74804455,0.039287157,0.10745462,0.34982675,-0.16627948,-0.042757675,-0.14553611,-0.19309168,-0.01757998,0.1079918,0.4205241,0.49809277,-0.14995575,0.46935737,-0.25290975,0.219625,-0.11957628,-0.44078004,0.5813053,0.40809104,-0.09906245,0.15173079,0.3942383,0.58401936,-0.37367025,0.39636242,-0.62826824,-0.24974014,0.6103952,-0.13205321,-0.40688896,0.1038644,-0.2286531,0.20178786,-0.87255234,0.33783743,-0.35567346,-0.30081502,-0.440872,-0.11079853,-3.1400096,0.09918621,-0.050574865,-0.24911596,-0.10357324,-0.0071289632,0.30865496,-0.57734984,-0.45574963,0.12255974,0.09071951,0.47780335,0.10512107,0.074242085,-0.36676463,-0.032972835,-0.14995092,0.109773606,0.20215024,0.35097212,-0.14023009,-0.42802817,-0.03899342,-0.08153728,-0.40967166,0.16787975,-0.48557737,-0.36214718,-0.10018514,-0.5041557,-0.2831542,0.539461,-0.4069914,0.05598481,-0.19895144,-0.015233,-0.35177526,0.30304697,0.36107597,0.17797966,0.17035276,-0.004251802,-0.13292554,-0.3728289,0.4878403,0.02126997,0.22896951,0.12177207,0.11191269,0.049601115,0.43588176,0.5065309,-0.09147375,0.8978517,0.3174227,-0.19638804,0.23483442,-0.41933373,-0.07231809,-0.5572662,-0.33001855,-0.27106857,-0.2934192,-0.5644559,0.03029073,-0.3498748,-0.77855283,0.5382918,0.100348316,0.24669796,-0.084159516,0.20781283,0.34633324,-0.11570511,0.052082993,-0.08258877,-0.075674616,-0.5443615,-0.3694276,-0.5956503,-0.37952858,0.1959416,0.84664726,-0.2533216,-0.063742116,-0.19020642,-0.18900752,-0.045332566,-0.07015552,-0.014602933,0.43378776,0.40980986,-0.004832258,-0.55480564,0.39911497,0.042473484,-0.08296857,-0.5216589,0.08693042,0.6953599,-0.8260065,0.5828374,0.28284505,0.06350346,0.13823242,-0.43585116,-0.2548392,0.002610762,-0.23084244,0.28907296,-0.083018236,-0.7447205,0.48066753,0.27416354,-0.3024228,-0.69614923,0.4453501,0.05891057,-0.27124676,0.04492741,0.22458628,0.1572451,-0.06247319,-0.36094067,0.274296,-0.37368375,0.18388046,0.12813248,-0.0781944,0.46972913,-0.16237411,-0.3359803,-0.56006294,0.056180518,-0.5043927,-0.2550267,0.33921286,-0.057634767,0.014454526,0.21945086,0.047908712,0.31385326,-0.22345367,0.016023032,0.17873666,-0.22484156,0.01519142,0.37115628,0.28606382,-0.4567239,0.49781224,0.15322222,-0.14139183,0.05897317,0.01968823,0.38259596,0.096053384,0.18399721,-0.016932487,-0.20784539,0.34806904,0.8698236,0.20472272,0.46562448,0.0074098585,-0.09142733,0.510435,0.04903752,0.057965264,-0.002040418,-0.42363688,0.07470653,0.2773399,0.15157832,0.33008182,0.36726886,0.33097354,0.04651262,-0.11534659,0.008718469,0.21967824,-0.093957424,-0.85027176,0.2916042,0.17164822,0.7688885,0.49808258,-0.024287164,0.031523358,0.56593513,-0.4366913,0.17314552,0.34253642,-0.21369615,-0.48387066,0.6421207,-0.5549367,0.34598,-0.07595932,0.020172877,0.09103114,0.08667438,0.23013361,0.64980644,-0.1310173,0.0688365,0.017470049,-0.14575149,0.06781079,-0.26742062,0.07109559,-0.374101,-0.220657,0.6718674,0.3702186,0.27939934,-0.10420626,-0.012843478,0.017099626,-0.22470579,0.13331425,-0.08415541,0.014640258,0.3465388,-0.49497908,-0.3378057,0.7021546,-0.10467599,0.053414155,-0.06685292,-0.35997972,0.17928688,-0.16134173,0.0465971,0.020704322,-0.6746148,0.109669,-0.23362383,-0.24871483,0.3596581,-0.18856035,0.17662197,0.14921993,-0.06698877,-0.24292946,0.33195433,0.2580609,0.6732164,0.020768324,-0.28094998,-0.321338,-0.07340849,0.29678032,-0.29363295,-0.0435534,-0.38842452,0.01721071,-0.53746897,0.5414365,-0.051471017,-0.34774545,0.22843768,-0.27236184,-0.07421206,0.6606013,0.08223081,-0.06672358,0.09105183,-0.22482924,-0.47022927,0.08280266,-0.32127586,0.26762554,0.27422565,0.046559557,-0.08347368,-0.26957008,-0.23259714,0.6098746,0.063516386,0.4678552,0.19980131,0.027868723,-0.21256405,-0.018478941,0.20731373,0.3033772,0.046427734,0.09574381,-0.24932715,-0.19167048,-0.29167327,0.17194675,-0.21495344,0.22691627,-0.013951619,-0.43713775,0.7063058,-0.11494715,1.0846697,0.10016076,-0.2832627,0.055040836,0.44720206,-0.09956291,0.05635976,-0.40715045,0.775834,0.5909042,0.05871513,-0.08680759,-0.46377137,-0.31976274,0.23999391,-0.25368232,-0.11337783,-0.06164274,-0.50307244,-0.46773857,0.3050262,0.18882065,0.04722227,0.04550722,-0.09306741,-0.10584817,0.08928274,0.47386876,-0.6249927,-0.19552751,0.20047665,0.19227369,-0.001072673,0.17376593,-0.40000182,0.47468546,-0.59562,0.16559713,-0.38260263,0.10872249,-0.18265344,-0.20719437,0.06131177,-0.06508986,0.4103703,-0.1414725,-0.5036482,-0.08985733,0.4631912,-0.004686197,0.2376079,0.6425953,-0.19434084,0.15715493,0.038175385,0.55751395,1.0778888,-0.36427853,-0.08789599,0.28611076,-0.35512605,-0.5146166,0.33029646,-0.39111435,-0.1056601,-0.043684233,-0.33615762,-0.29693416,0.25243917,0.20926395,0.02187601,-0.009842966,-0.53182006,-0.061251976,0.21893086,-0.1962529,-0.25087395,-0.16895097,0.4132875,0.9288822,-0.40988192,-0.15391459,0.00688556,0.23902546,-0.25106138,-0.4446963,-0.14409715,-0.2266633,0.25451475,0.16671865,-0.19416457,-0.039424334,0.17952962,-0.3135471,0.07377473,0.2824224,-0.34577507,0.099878475,-0.03832803,0.03507317,0.8641666,-0.042942405,-0.16333039,-0.629095,-0.36266187,-0.8252491,-0.41294,0.34449422,0.2560697,0.037095904,-0.24355395,0.0823691,-0.081705585,-0.32550856,0.08009221,-0.6654307,0.3376028,0.08195004,0.40136483,-0.2135609,-0.8205396,-0.001492091,0.1434506,-0.08942084,-0.6472893,0.62345356,-0.14227273,0.9639463,0.027194027,-0.17009005,-0.045464437,-0.29819712,0.029364133,-0.40772197,-0.20187283,-0.7905384,0.115763 +220,0.39639762,-0.36132666,-0.14507058,-0.20578752,-0.327534,0.19052842,-0.18345799,0.415987,0.4007311,-0.4735767,-0.30340555,-0.27439973,0.16504776,0.58916235,-0.2196802,-0.67744213,-0.060748164,0.053471226,-0.39526558,0.55091304,-0.4140912,0.32657248,0.07876753,0.2782262,0.15405782,0.2674074,0.45272985,-0.12641649,0.010849382,-0.17338622,0.021427244,0.11951872,-0.620685,0.23238781,-0.25010183,-0.48798922,0.19541514,-0.648202,-0.3838894,-0.72063607,0.33656392,-0.8687723,0.49582863,0.14184377,-0.048756484,0.42717487,0.21103534,0.32510373,-0.17023376,-0.049086843,0.047789566,-0.045748364,-0.083998926,-0.074604824,-0.23176305,-0.45665047,-0.64616406,0.05472803,-0.30155846,-0.2335547,-0.18704264,0.0014802387,-0.2642799,0.19567259,0.063988514,0.39095002,-0.45730332,-0.020104425,0.3343728,-0.19772317,0.09661221,-0.51763374,-0.25062767,-0.14078529,0.22012486,-0.2463418,-0.11450632,0.36005265,0.36844525,0.40578637,0.051557545,-0.24975245,-0.34763297,-0.16277981,0.16059491,0.5742666,-0.10347892,-0.55192786,-0.22666936,0.03670737,0.21606116,0.16792892,0.22904758,-0.16955063,-0.035842035,-0.06639256,-0.35368648,0.46956205,0.40120903,-0.39400774,-0.48579785,0.18298419,0.56657565,-0.045216,-0.023022711,-0.028799454,0.11009359,-0.47870132,-0.20002596,0.12527081,-0.28533798,0.49835473,-0.21528761,0.1591607,0.6485282,-0.38567662,0.050055657,0.022025883,-0.00680929,-0.38683578,-0.20686351,-0.30329585,0.3096928,-0.58747596,0.15116116,-0.35851988,0.8769373,0.27437827,-0.58750045,0.30884674,-0.53938717,0.111452855,-0.10024105,0.46824497,0.51642126,0.3387724,0.3161413,0.6616941,-0.50788873,0.10334885,-0.16442935,-0.32886034,-0.0915417,-0.2208991,0.017475596,-0.43366438,0.08367617,0.00629695,-0.09301643,0.22482894,0.21645777,-0.4957068,-0.072234906,0.26329836,0.87779754,-0.3025671,-0.07270182,0.9057065,1.119361,1.0187899,0.029611964,1.2353047,0.48648888,-0.2366952,0.13950236,-0.26795754,-0.72541696,0.14297272,0.4585406,-0.15885971,0.3138397,-0.018765092,-0.005515699,0.15820499,-0.5336409,0.034891937,-0.03182477,0.18938944,0.21447489,-0.004676414,-0.47423837,-0.2356685,0.024261829,-0.13711444,0.26925465,0.27679294,-0.0934164,0.5094448,0.16996871,1.1175768,0.06761473,0.08481906,-0.004479986,0.58896095,0.2743931,-0.0399721,0.043308727,0.13812174,0.30552274,-0.0032534727,-0.699704,0.15152897,-0.2543198,-0.3691828,-0.20928586,-0.30442283,-0.049540345,0.19790074,-0.17846693,-0.18820868,-0.13629584,-0.04226319,0.5102349,-2.6602442,-0.25646228,-0.15450643,0.20556481,-0.27019063,-0.26763067,0.04980613,-0.6417451,0.33608177,0.35621196,0.42381102,-0.68782634,0.18300949,0.5648723,-0.80042523,-0.13397652,-0.650813,-0.17166185,-0.09870811,0.40937915,0.14272974,0.07206786,-0.069877,0.27949423,0.49670428,0.078063354,0.15108876,0.11135527,0.36089638,0.10396366,0.4265963,0.046156954,0.5319939,-0.35036448,-0.17191026,0.32547545,-0.35052377,0.2679207,-0.25593427,0.07743524,0.45858505,-0.31496027,-0.83579457,-0.7235473,-0.4735722,1.0964661,-0.12671971,-0.35883608,0.04310003,-0.051731136,-0.11264598,-0.10943944,0.45734453,-0.2557443,-0.069591865,-0.7571353,0.07910565,0.16850154,0.09335887,-0.0009208992,0.030265842,-0.44005838,0.58462185,-0.047332074,0.22777711,0.24220705,0.27745205,-0.26663327,-0.5041268,0.031458966,0.80827075,0.3764093,0.18479596,-0.25657693,-0.26557094,-0.22613573,-0.18281113,-0.04886778,0.38005516,0.6293512,-0.12603296,0.050417136,0.300391,0.027610967,0.26531082,-0.13222125,-0.31774607,-0.05461225,-0.06378128,0.5689438,0.5639432,-0.25614694,0.29859638,-0.10378521,0.4255573,-0.079252414,-0.39850086,0.6653636,0.927352,-0.10549008,-0.18414834,0.63968533,0.41404626,-0.30389196,0.44601038,-0.6433523,-0.23172082,0.44124505,-0.19643223,-0.3957655,0.014947721,-0.25099903,0.07256509,-0.8938239,0.27404395,-0.21392703,-0.09583443,-0.51593554,-0.06478186,-3.8832943,0.058366008,-0.21186529,-0.10859907,-0.01294695,-0.10556128,0.12806995,-0.48162484,-0.5596818,0.37853408,0.055440903,0.56321895,-0.07322893,0.24884804,-0.31033948,-0.26623872,-0.5789884,0.13617674,0.043590687,0.27774686,-0.035918925,-0.4516678,0.2172347,-0.23746607,-0.4569803,0.1800751,-0.467309,-0.29273912,-0.30763596,-0.43293476,-0.3782476,0.56563836,-0.24529423,0.12683131,-0.19457631,0.103342995,-0.2528866,0.3205095,0.106888495,0.0849867,0.12600055,-0.04148381,0.021217847,-0.34356388,0.6200276,0.09740918,0.25400385,0.27328205,-0.11445312,0.029400263,0.4607961,0.5999331,0.048891716,0.8874535,0.2828323,-0.045280665,0.32555413,-0.2084967,-0.3767912,-0.4179619,-0.23109452,-0.16314574,-0.28651044,-0.5668611,-0.042014282,-0.37610775,-0.6707408,0.5912793,0.040294744,0.12597097,-0.13098589,0.13324235,0.36977836,-0.22840574,0.11857773,0.022586474,-0.08101444,-0.5270489,-0.3209987,-0.683256,-0.43013173,0.19302239,0.6507516,-0.12373902,-0.03754923,-0.17767629,-0.14431836,0.08961376,0.12495161,0.0115406215,0.017871669,0.41962105,0.018229485,-0.7211133,0.56441444,0.07912479,-0.22705166,-0.7216396,0.25847706,0.5665113,-0.6849483,0.51595217,0.43943277,-0.037193768,-0.03362042,-0.28734198,-0.3173837,-0.011337987,-0.2105895,0.22197984,0.20579584,-0.7654525,0.4346223,0.35434252,-0.34266558,-0.75853,0.5943743,0.09009983,-0.12784517,0.09266734,0.2463881,0.36734357,0.03157996,-0.18407147,0.10818215,-0.45949036,0.0867715,0.027403653,0.014172039,0.53332114,-0.10685078,-0.10301285,-0.88605917,-0.061122544,-0.41342688,-0.23823634,0.10804599,0.15867867,-0.035400536,0.23563519,0.15168093,0.3345173,-0.18010113,0.05692243,-0.024631625,-0.2647431,0.27777654,0.32657138,0.39582327,-0.28934857,0.6897985,-0.024004603,-0.08051318,0.21867535,-0.12004113,0.3217575,0.18533804,0.35675448,0.34604535,-0.24043223,0.19691756,0.72246283,0.113413095,0.2817383,0.19022267,-0.07017965,0.4706082,0.046649445,0.030249715,0.24553044,-0.45866632,-0.1276885,-0.18929939,-0.09105252,0.5747758,0.12535761,0.4527235,-0.065451615,-0.38855362,-0.011773901,0.083074585,0.1338916,-1.2337257,0.030317992,-0.02295144,0.71211714,0.6686055,-0.12742,0.034424596,0.7092164,-0.27348927,0.019359674,0.4360433,0.08746446,-0.4081592,0.6481303,-0.56772995,0.5342276,-0.046300106,-0.056884527,-0.033191014,0.051585443,0.2436578,0.80092084,-0.22269347,0.034814768,-0.008222149,-0.37427357,0.20871027,-0.497897,0.15704067,-0.4077979,-0.12397679,0.6190986,0.33671013,0.36985186,-0.104818515,-0.011607151,0.082334094,-0.15178487,0.18237524,0.029929949,0.03141436,-0.10413348,-0.53548735,-0.23933819,0.64053744,0.035827238,0.24679157,-0.026028702,-0.26840526,0.23485994,-0.21422938,-0.10939194,0.0067707705,-0.81959355,-0.13429882,-0.10107737,-0.51363134,0.5284082,0.0071383035,0.2167125,0.24317701,0.026063045,-0.30788615,0.2281374,0.167616,0.79721504,0.12002814,-0.24081966,-0.2487456,-0.020440336,0.22613502,-0.18340646,0.29086712,-0.16970325,0.0053145885,-0.47814637,0.6168495,-0.121717334,-0.30618554,-0.0030980152,-0.16128214,0.049955394,0.50985163,-0.22251788,-0.15101525,0.01938057,-0.14692746,-0.20426819,-0.2730568,-0.23181327,0.21624026,0.22436269,-0.022248833,-0.11995973,-0.3390117,-0.15509899,0.53935945,0.011813911,0.2667952,0.24646732,0.12004113,-0.42880604,-0.055160593,-0.0043816566,0.32620472,-0.18710068,-0.27574483,-0.22252133,-0.52275884,-0.26819205,0.10617377,0.006155561,0.16755769,-0.08474815,-0.44388595,0.61006624,-0.045914996,1.0735035,0.031735756,-0.471925,0.10826898,0.494106,0.040963344,-0.043689273,-0.37204653,0.93858445,0.4854997,-0.084508374,-0.2527166,-0.50416785,0.10853873,0.1405081,-0.19425459,-0.076998785,-0.01642235,-0.52328116,-0.33472833,0.23039332,0.34511632,0.17126206,0.0241375,0.21361582,0.14631914,0.15480308,0.711938,-0.47245058,-0.20041992,0.3387699,0.36772636,0.04173994,0.08820189,-0.3539566,0.3735795,-0.5053433,0.19257304,-0.31748697,0.09092506,-0.34037024,-0.25019032,0.16429688,0.20623517,0.37767023,-0.30916375,-0.6500664,-0.21316783,0.4830154,0.113306776,0.14719644,0.5297842,-0.23510662,0.012033439,-0.014975041,0.66396993,1.1540511,-0.2076327,0.014939772,0.22932385,-0.48169687,-0.5270767,0.45308766,-0.273172,0.13021626,-0.033529527,-0.047874775,-0.62651557,0.22499765,0.18218757,0.090117395,0.1437781,-0.46619692,-0.38345167,0.39875895,-0.4928382,-0.2958753,-0.31177476,0.22287099,0.7726616,-0.2510887,-0.123956464,0.08129423,0.29416975,-0.25011557,-0.6136258,-0.30326024,-0.22845446,0.37455186,0.16420583,-0.07792229,-0.30565324,0.085370354,-0.45386943,-0.024864163,0.06049072,-0.384167,0.008153213,-0.24684289,0.022960898,0.74755484,-0.18233207,0.27794957,-0.8055339,-0.44462344,-0.91494304,-0.43986538,0.7371841,0.21951959,-0.0033984482,-0.53805393,-0.013910383,0.02200355,-0.082226045,0.08861327,-0.44294193,0.34697297,0.18239641,0.47108147,0.09334976,-0.72711754,0.003914695,0.007838423,-0.08733554,-0.54208356,0.31513008,0.05327013,0.97054386,0.13402234,-0.06791125,0.19590378,-0.36156872,0.12486364,-0.2868261,-0.31546327,-0.6085604,0.2611268 +221,0.7214715,-0.21937595,-0.5698045,0.09478138,-0.47278976,-0.006990471,-0.31622294,0.14819129,0.16639468,-0.49786478,-0.111076966,0.032706656,-0.17841123,0.20810832,0.006385318,-0.5552921,0.18086733,0.22980587,-0.7093719,0.93948036,-0.2959866,0.4576347,0.09542414,0.20491529,0.23144862,0.12827887,0.13561475,0.17908394,0.066176616,-0.20200515,-0.088734545,-0.06259838,-0.86761963,0.18938872,-0.24556912,-0.4658729,-0.16426921,-0.37594858,-0.4585929,-0.87929994,0.34084827,-0.96444184,0.63454837,0.06360046,-0.43306836,0.041049488,0.008802031,0.34460846,-0.16148472,0.16641656,0.33183217,-0.13754545,-0.20127772,-0.3001557,-0.19024336,-0.4390902,-0.55325353,0.028526668,-0.45704642,-0.078018986,-0.43494615,0.22714768,-0.38780084,-0.0013578066,-0.3261817,0.35040167,-0.46431756,-0.05585607,0.18970719,0.0032064659,0.29214916,-0.82398003,-0.18772887,-0.21978343,0.08529235,0.10505315,-0.20091888,0.34583205,0.23146386,0.68834025,0.15283248,-0.50259703,-0.087183006,-0.01595882,0.21467267,0.427398,-0.29680008,-0.094773434,-0.42672944,0.14082853,0.5541077,0.1642735,0.14629899,-0.41279522,0.006519437,0.014814079,-0.022804366,0.45384333,0.4694532,-0.39276847,-0.14128318,0.15707366,0.557938,0.15275314,-0.19462577,0.094342604,-0.1608684,-0.4334372,-0.15475695,0.26589483,-0.30906147,0.5821457,-0.05956155,0.016974373,0.56582963,-0.31480476,-0.09051542,0.1794395,0.032279212,0.19930372,-0.3584885,-0.3539726,0.42421347,-0.7811521,0.13268828,-0.36765346,0.5461985,0.047126703,-0.68386286,0.21657284,-0.53062475,0.23000322,0.0073706633,0.6107416,0.9080865,0.47738045,0.13294192,0.9537229,-0.4247148,0.072789244,-0.069118574,-0.18634082,-0.15721597,-0.22323923,0.088303916,-0.40325028,0.06019651,-0.31688815,-0.079905905,-0.06448234,0.5862326,-0.44313616,-0.2409475,0.20103942,0.71386,-0.28980038,0.21035473,0.8328353,1.1719465,1.2189208,0.044313405,1.1991247,0.3546073,-0.11955234,-0.07508937,-0.025569575,-0.61799437,0.05942026,0.36039454,0.16437547,0.39154452,0.099297784,-0.14664795,0.34386566,-0.5821433,-0.05264466,-0.26780304,0.2910853,-0.028780477,-0.21280043,-0.5949809,-0.05743025,-0.09035409,0.21076,-0.06933111,0.26810712,-0.33221012,0.2763388,0.02176497,0.9768478,-0.38811037,-0.049716838,0.11787723,0.4642034,0.3956596,-0.2367164,0.016078379,0.09827431,0.40716925,0.027146239,-0.5725885,-0.0064547337,-0.4506031,-0.3117776,-0.23694631,-0.103373565,0.1932886,0.15112007,-0.2788107,-0.4852161,0.077930234,-0.31810147,0.34685352,-2.132174,-0.22225282,-0.35112783,0.24195406,-0.24863403,-0.35896015,0.028180514,-0.64741695,0.5203367,0.1733407,0.46315902,-0.60804826,0.39437014,0.46431717,-0.73240346,0.107003175,-0.6839689,-0.27520892,0.0066055614,0.6403833,-0.027835667,-0.3650141,-0.089029886,0.10984746,0.8078332,0.106957026,0.06522316,0.41500404,0.30013576,-0.16464849,0.3994306,0.14378117,0.5690413,-0.31405973,-0.2511325,0.6373576,-0.061612185,0.21817075,-0.2707173,0.03131088,0.58443433,-0.5025315,-0.7948769,-0.66591835,-0.25792792,1.363344,-0.3183659,-0.7806917,0.2673083,-0.29911,-0.055020154,-0.045569934,0.3105076,0.038954694,0.1049779,-0.69496554,0.082675114,-0.006117412,0.11935293,-0.038531598,-0.082262225,-0.4740301,0.8228292,-0.05228079,0.3785112,0.4360254,0.4103209,0.004996913,-0.44668362,-0.030131996,1.0517612,0.6672173,-0.005578854,-0.48888764,0.0015444244,-0.22588572,-0.30406204,0.1403751,0.5585338,0.86584455,-0.18888451,-0.057141893,0.20200072,-0.039599974,0.13333541,-0.13015085,-0.3584106,-0.27307007,0.09705584,0.58803165,0.6039329,0.009741596,0.42119274,-0.20303328,0.19389462,0.15499671,-0.63532346,0.5459553,1.3487366,-0.17283769,-0.17782174,0.6737932,0.42359164,-0.36785388,0.6472608,-0.6599112,-0.31914464,0.4397656,-0.069090426,-0.4054186,0.18608306,-0.5816588,0.29507494,-0.7576786,0.35402623,-0.5777317,-0.52469265,-0.4398927,-0.23344953,-2.6218116,0.39007634,-0.4196308,0.078077085,-0.19425811,-0.39385468,0.24731112,-0.4616373,-0.52357215,0.12209866,0.048520274,0.6573195,-0.08118551,-0.010079748,-0.19282666,-0.30713218,-0.31084937,0.22987828,0.25741693,0.25982466,-0.22404914,-0.36477706,-0.05490991,-0.09128772,-0.35952955,-0.1503488,-0.7466188,-0.3848757,-0.30917946,-0.58558273,-0.28130162,0.5059946,-0.047384746,0.17886065,-0.36764047,0.06184458,0.05336552,0.23975447,0.06410342,0.45120245,0.15197904,-0.12909614,-0.059480112,-0.3292282,0.24089582,0.2469347,0.3253183,0.16517952,-0.23943686,0.13476305,0.3869957,0.73034775,-0.2886866,0.9085613,0.5748517,-0.30150342,0.33559602,-0.07890623,-0.6048396,-1.0081142,-0.32521835,-0.06804518,-0.3561677,-0.4607462,0.057289835,-0.43515715,-0.9224927,0.5136742,-0.06821348,0.47429463,0.101481184,0.29257965,0.4074983,-0.26252788,-0.17647259,-0.1414768,-0.14992067,-0.4654362,-0.32013306,-0.7416649,-0.58615303,-0.15169564,1.1402605,-0.21040471,0.03868451,0.2950762,-0.27819338,0.27523306,0.15817307,-0.010781942,-0.04099811,0.4783698,0.26185438,-0.6701904,0.30647165,0.28417864,-0.070378296,-0.47953507,0.5106757,0.6104154,-0.63262683,0.5999045,0.22824481,0.030296335,-0.05553525,-0.8410788,-0.153206,0.20677184,-0.3857773,0.56976914,0.3073097,-0.691717,0.34513298,0.4664857,-0.29252377,-0.6932403,0.5936418,-0.10707656,-0.3931155,-0.11353277,0.37214783,-0.07356005,-0.028552592,-0.15387177,0.28694025,-0.46703833,0.22443019,0.17804047,-0.23708494,-0.0082773315,-0.1852727,-0.46618673,-0.7371116,0.27638525,-0.6579097,-0.3699526,0.37528345,-0.012428931,-0.17376415,0.10890029,0.43479064,0.4590773,-0.06276906,0.26772955,-0.348784,-0.45930597,0.64136094,0.5693921,0.44617894,-0.49115393,0.6169545,0.09881734,-0.35323444,-0.12762795,0.21752277,0.5359949,0.028090682,0.30595595,-0.073852405,0.018188212,0.10519674,0.6255075,0.09715994,0.46867993,0.17701387,-0.011521825,0.18246111,0.09586789,0.1196224,-0.17323007,-0.51734847,-0.049162947,0.11582532,0.080277644,0.46825495,0.2073359,0.1648031,-0.18856311,-0.11286097,-0.06094004,0.0698511,0.0714669,-1.4520522,0.2806169,0.168344,0.66133934,0.49738407,0.025927847,-0.18504825,0.6276745,-0.17933811,-0.13801868,0.36703697,-0.044333708,-0.34884098,0.56504565,-0.6805424,0.27535707,-0.039999068,0.079434864,0.21028535,0.10544894,0.5229164,0.86330575,-0.19782104,0.055609316,-0.2639931,-0.17110516,0.09012379,-0.24342766,0.10965706,-0.31373832,-0.54355067,0.8025621,0.3458729,0.36512616,-0.31615195,0.04525582,0.057279877,-0.31097093,0.49444818,-0.047698677,0.031601958,-0.058392186,-0.34754378,0.0016588952,0.33412313,0.020321446,0.008964513,-0.05762499,0.030673908,0.20956506,-0.052679628,-0.06988796,0.076359786,-1.0076168,0.12924479,-0.6218046,-0.32675526,0.4328375,-0.06538256,-0.0028791171,0.17217056,0.14503638,-0.20460466,0.23941362,0.011447213,0.7779841,0.071108855,-0.22739759,-0.18984035,0.28882208,0.03825918,-0.19623004,0.24091797,-0.04995626,0.086193345,-0.835983,0.6751174,-0.24976876,-0.2718679,0.27553788,-0.2054552,-0.22356105,0.36517242,-0.23637281,-0.19463877,0.12560049,-0.1482666,-0.38025665,-0.4380754,0.041340616,0.11283381,0.070287004,-0.035025496,-0.11717836,-0.11479474,0.073057435,0.6430784,0.15737928,0.22506441,0.18605135,0.16418825,-0.60321826,0.056001987,0.40865567,0.497674,-0.19501449,0.065300204,-0.20378213,-0.470598,-0.41403666,-0.035590224,0.010775216,0.3962713,0.013509448,-0.1607467,0.98290664,0.39972258,1.3556093,-0.12949392,-0.38724503,-0.056291077,0.6553469,-0.28517473,-0.16747649,-0.29195803,0.88594943,0.63556683,0.04215323,-0.06266035,-0.6121753,-0.14835943,0.1656177,-0.37248844,-0.011062041,-0.15759575,-0.5357137,-0.34641027,0.18338397,0.43735686,0.004955036,-0.08427591,0.09773655,0.33934477,0.0052245897,0.2420282,-0.44888538,-0.19153617,0.2941487,0.15706618,-0.1254648,0.21921621,-0.40164185,0.18776187,-0.71823865,0.082916856,-0.09079932,0.07478344,0.037338357,-0.2983337,0.2876466,0.034997292,0.25152493,-0.53889173,-0.25796244,-0.055224035,0.39308208,0.09237281,0.17321576,0.7006127,-0.248781,0.08639254,-0.005440693,0.34118706,1.1589066,-0.16847293,0.114193395,0.022759,-0.49683258,-0.7006821,0.40134224,-0.2697644,0.08460375,-0.030975077,-0.3851525,-0.6099748,0.21723835,0.08810671,-0.12206919,-0.015415455,-0.69555634,-0.26132172,0.10573424,-0.2231092,-0.1528795,-0.31051975,0.40449277,0.63464415,-0.109164976,-0.48732233,0.03850469,0.13120942,-0.19448893,-0.5981623,0.0700372,-0.25592703,0.16765952,0.13798417,-0.3963615,0.08083481,0.14689268,-0.60094583,-0.113873124,0.28590328,-0.28558442,0.018408274,-0.31621107,0.04445094,0.8868989,-0.14812736,0.048194654,-0.33680344,-0.6795683,-0.8035684,-0.47350407,0.25890785,0.3472123,0.13611528,-0.5516883,-0.140226,-0.3755757,0.19801815,-0.0014781313,-0.38985783,0.39571133,0.18211494,0.50673527,-0.19220045,-0.68631035,0.3082896,0.14887346,0.036452897,-0.4022699,0.44386858,0.10022398,0.6682573,0.1453681,0.052474294,0.03136584,-0.70587987,0.1370171,-0.16068818,-0.21102378,-0.7554268,-0.1316687 +222,0.38256925,-0.035365827,-0.44740888,-0.1986098,-0.37818384,-0.0038397142,-0.33357957,0.021507557,0.11733995,-0.5026789,0.03251683,-0.1435969,-0.17424642,0.2769042,-0.25868383,-0.6610733,-0.20643698,0.059024572,-0.44630906,0.4030685,-0.5164184,0.45387092,-0.01518075,0.40624812,-0.19128516,0.384322,0.35174164,-0.17437756,-0.096627526,-0.17022859,-0.06256784,-0.09547526,-0.66140956,0.3254201,-0.12275659,-0.4523299,0.15743805,-0.40361473,-0.17272906,-0.6036641,0.32220006,-0.6390308,0.4643423,0.024254007,-0.13026837,0.020441135,0.086486235,0.0405839,-0.21525969,0.12248732,0.37015483,-0.19545135,0.053710725,-0.3561547,-0.35145876,-0.6534749,-0.49545243,0.021288788,-0.6414443,-0.062135573,-0.049329214,0.30787376,-0.24652705,-0.07468178,-0.1609998,0.3866162,-0.33654574,-0.09041997,0.023160884,-0.2350907,0.07643225,-0.36380443,-0.1494797,-0.18524994,0.30449644,-0.29984897,-0.066812046,0.22043599,-0.07373957,0.62183744,0.039496627,-0.10464171,-0.31516567,-0.016953776,0.13240966,0.54257697,-0.17060423,-0.3777472,-0.069040425,-0.1307719,0.18806712,0.20829819,-0.010835392,-0.33230305,0.15745409,-0.15076731,-0.25646433,0.3925846,0.48051924,-0.25240088,-0.19351129,0.39088717,0.4411904,-0.17031983,-0.2131137,0.09493375,0.036245674,-0.35863417,-0.30962542,0.21449436,-0.055854313,0.32072517,-0.045808494,0.34091002,0.70605236,-0.09190329,-0.05359655,-0.2298926,-0.20248304,-0.04841251,-0.18425514,-0.22956268,0.09405027,-0.3041432,-0.11373592,-0.26646316,0.83266795,0.107163064,-1.0095017,0.41044968,-0.5157334,-0.058171444,-0.037877176,0.66931194,0.5006604,0.48065397,0.14136516,0.7309211,-0.5631158,0.22508952,0.14282463,-0.33367962,-0.041427355,-0.095568255,0.122293994,-0.34374198,0.057636198,-0.07512181,-0.038219504,-0.0061259354,0.46149716,-0.31789988,0.032094195,0.11724849,0.8075822,-0.3907981,0.117273085,0.8154472,1.0851195,0.98343277,0.18138956,1.4532492,0.32591933,-0.1821744,-0.037765462,-0.35969052,-0.63216877,0.118835665,0.3727323,0.1858736,0.30384475,0.128553,0.14675753,0.35036477,-0.50149816,-0.01320682,-0.072441034,0.34667078,0.020662399,0.01780734,-0.353296,-0.16666634,0.13435803,-0.028346429,0.004492781,0.31160513,-0.24384151,0.3971119,0.20403512,1.4532801,0.027301995,0.15926406,0.10609184,0.3901706,0.15108123,-0.12114437,0.013588471,0.17479087,0.20949887,-0.19392617,-0.58480275,-0.15986843,-0.24270728,-0.5278332,-0.40380785,-0.16800764,-0.1485138,-0.26508793,-0.2878255,-0.19167331,-0.008597136,-0.3798117,0.35274628,-2.2236354,-0.1670665,-0.23370874,0.42712477,-0.19085646,-0.3579545,-0.15009928,-0.39599195,0.43893406,0.40271297,0.41947344,-0.4561255,0.5363587,0.4230284,-0.33123803,-0.24131873,-0.65255076,0.019656124,-0.23893721,0.20543997,-0.13044743,-0.16869341,-0.38131097,0.0701802,0.42747498,-0.07466994,-0.15653814,0.22597277,0.6222515,0.21652487,0.50470763,0.1427501,0.5131245,-0.49529824,-0.09926223,0.38069466,-0.5420632,0.21986438,0.13397713,0.17462958,0.4326543,-0.67391205,-0.8370985,-0.8437079,-0.4937385,1.0335976,-0.117942385,-0.30201435,0.25264382,0.051436134,-0.4918905,0.019769805,0.49795014,-0.33388013,-0.0912221,-0.6885619,-0.0071666795,-0.18086727,0.51321346,0.034951966,0.25643143,-0.3580517,0.5557706,-0.21673968,0.4799672,0.42775103,0.195286,-0.2764487,-0.2658703,0.25787938,1.0227296,0.30062976,0.13664009,-0.045742687,-0.23589359,-0.044828575,-0.13323957,0.020271318,0.37960956,0.61185277,0.032018118,0.008349402,0.44195268,-0.25491172,0.088773645,-0.15220095,-0.2549389,-0.19742282,0.06540275,0.48610002,0.5751796,-0.19752026,0.35847664,-0.13647713,0.30285844,-0.25002834,-0.2818972,0.36471292,0.41838428,-0.02780045,-0.13516584,0.37324578,0.4741846,-0.36898068,0.42114967,-0.60224736,-0.3372221,0.35753146,-0.034380246,-0.34892732,-0.054441597,-0.30803803,0.21457838,-0.86904,0.25745505,-0.14776476,-0.4941371,-0.8129922,-0.33836445,-2.5850415,0.115272984,-0.2100902,-0.10913497,-0.005081194,-0.040673856,0.17957054,-0.46428505,-0.5706829,0.17601326,0.020077381,0.431493,0.13736351,0.41654477,-0.21995641,-0.13643849,-0.43077248,0.34336558,0.21194255,0.25791785,0.14969315,-0.28441948,0.0009266074,-0.3868932,-0.39117366,-0.022953719,-0.54633904,-0.3910994,-0.08930819,-0.4683312,-0.2465959,0.7378572,-0.4585015,0.00080648914,-0.33143443,-0.18020149,-0.1831164,0.3590369,0.3254839,0.050315347,0.0677367,-0.03564257,-0.38805565,-0.29761428,0.22341058,-0.0031088314,0.10230793,0.37522596,-0.026393745,0.09686058,0.27257016,0.72760135,0.25936815,0.6926828,0.21201515,-0.13639499,0.45648393,-0.39125603,-0.2727946,-0.67766285,-0.38711983,0.06775146,-0.37862834,-0.40429708,-0.112628676,-0.41361102,-0.6193118,0.4429636,0.029351098,-0.17666121,0.087893195,0.42070994,0.19901554,-0.086942784,0.014775106,0.042583358,-0.09366058,-0.43790594,-0.58517975,-0.6874752,-0.49416402,-0.05161925,1.3759843,0.12365341,-0.2425327,0.17642196,-0.29229823,0.1160265,0.12593816,0.12968135,0.26062047,0.4202452,-0.027484234,-0.6447399,0.45161384,-0.13820608,-0.114306875,-0.4550149,-0.18911253,0.7972841,-0.7119664,0.3753306,0.34091812,0.2761095,0.14616786,-0.45421335,-0.20964094,0.1913602,-0.19839188,0.29056555,0.19100986,-0.48732972,0.5428553,0.053145144,-0.14644839,-0.7995919,0.25870556,0.2281517,-0.27723047,0.12914549,0.2810172,0.11236819,-0.1957415,-0.38646507,0.27663478,-0.2949491,0.22131968,0.17229356,-0.1566292,0.4666658,-0.3519409,-0.38382387,-0.5822647,-0.123334356,-0.33059445,-0.40624523,-0.07037665,0.04392332,0.09511363,0.22709231,-0.024501484,0.46215552,-0.42657903,0.08513397,-0.14878283,-0.16130432,0.14002515,0.2982433,0.2830333,-0.4692637,0.7580191,-0.0048734182,-0.055706415,-0.34877253,0.09745931,0.35329914,0.19911204,0.11485655,0.14184105,-0.20491923,0.20648037,0.6647086,0.27987465,0.33460018,0.16318305,-0.3048778,0.49450755,0.10671107,0.011682727,-0.11461934,-0.18532655,0.046112042,0.07281787,0.1200342,0.2560387,0.11675053,0.56989604,-0.24840762,-0.15975425,0.23115757,0.29358795,-0.23151274,-0.9613205,0.23112035,0.07960391,0.716591,0.5447365,-0.005881586,0.21615185,0.57229716,-0.46113303,0.056664165,0.11951143,0.029595375,-0.2170702,0.5605013,-0.25189307,0.4567804,-0.19637036,-0.09010546,-0.008844597,-0.004827644,0.26860175,0.89537746,-0.020787464,0.100958996,-0.016312549,-0.057312306,0.063676804,-0.13697231,0.09485107,-0.36637217,-0.26342806,0.7457498,0.19462569,0.4244917,-0.18166222,0.005465552,0.05070573,-0.11019778,0.21512564,-0.15163282,-0.17536111,0.104531646,-0.53366,-0.27162853,0.78356737,0.0050047124,0.02721594,0.20240422,-0.4712858,0.28128532,0.0426715,-0.035730608,0.028657198,-0.5455305,0.047193833,-0.35571998,-0.22866924,0.2083552,-0.21374585,0.32556984,0.14512111,0.038535003,-0.34173653,0.097259514,0.5773547,0.66278356,0.2366545,-0.07530339,-0.18317822,-0.04543834,0.30500913,-0.30375168,0.011360005,-0.30620915,0.17506325,-0.7217745,0.45536655,-0.0734728,-0.19536546,0.12511054,-0.19524027,0.1200039,0.4876388,-0.100577,-0.11856193,0.19928396,0.09397451,-0.22955962,-0.10947961,-0.4863128,0.25786218,0.13232729,-0.082314536,0.020624837,-0.1304158,-0.2527467,0.56308144,0.06504218,0.24958524,0.28122568,0.15295804,-0.52865165,-0.010532503,-0.29383308,0.36054352,0.02834834,-0.03971402,-0.12026145,-0.25312206,-0.046589177,0.4889349,-0.2681129,0.058671825,0.07772163,-0.59214514,0.73280746,0.17021224,1.1092378,0.12968302,-0.30800167,0.07879429,0.46459463,-0.02438235,0.2982772,-0.4564152,1.0787555,0.49450397,-0.14608482,-0.14607945,-0.329007,-0.27472192,0.14833944,-0.28069845,-0.27929494,-0.19566426,-0.6761087,-0.3217387,0.06897188,0.12167271,-0.10610286,-0.027183592,0.14326937,0.006338175,0.09907956,0.43060756,-0.60497326,0.07204709,0.3723473,0.15084656,0.10693116,0.22377174,-0.370312,0.4491791,-0.59246624,0.24955232,-0.64533913,0.15577595,0.03356836,-0.2440608,0.07506682,0.2335252,0.383255,-0.2383857,-0.4270119,-0.21066548,0.6328784,0.27936417,0.3805018,0.76816666,-0.27375707,0.0885734,-0.026577456,0.5268463,1.252191,-0.113140754,0.072468415,0.22643529,-0.4095833,-0.43141237,0.17695774,-0.5123032,-0.25569174,-0.095111765,-0.2473291,-0.43430117,0.2961493,0.13865732,-0.070412405,-0.031638406,-0.41825017,-0.27293625,0.58751583,-0.2274892,-0.27925536,-0.26601174,0.19273499,0.8477653,-0.1919227,-0.2171321,0.05845544,0.3108783,-0.36230007,-0.6675569,-0.043232303,-0.40059805,0.543881,0.20541511,-0.13659723,-0.09114502,0.15126383,-0.45940223,0.08335926,0.31581613,-0.4383945,-0.12432037,-0.25767413,-0.055608742,0.8664803,0.11574783,0.15957324,-0.6436008,-0.44010672,-0.8653117,-0.25533488,0.34701225,0.24899396,0.008462802,-0.5244698,-0.043391358,-0.16197526,-0.10876894,0.16000566,-0.71212,0.21395156,0.26333427,0.59586793,-0.18012981,-0.9838669,-0.039576996,0.064829364,-0.3498822,-0.4125763,0.30437544,0.18475701,0.7795896,0.06695329,-0.03448879,0.12742113,-0.58840376,0.43406382,-0.32857066,-0.19204186,-0.5655297,0.17610712 +223,0.5765292,-0.114630535,-0.32122394,-0.07281329,-0.104547404,0.014056858,-0.10330247,0.3280689,0.19555944,-0.5876652,-0.06301076,-0.26026565,-0.004904025,0.24145514,-0.060354035,-0.71929264,-0.08593565,0.18665496,-0.34872943,0.5124342,-0.44243652,0.324106,0.026199706,0.30932477,0.073006965,0.21792923,0.23952234,-0.21472827,-0.087560974,-0.07500005,-0.09057366,0.2949493,-0.548291,0.10433244,-0.024263645,-0.29090217,-0.0048003057,-0.31925407,-0.2714317,-0.6815268,0.2269488,-0.62468797,0.37458438,0.1907361,-0.11669983,0.38749918,-0.044363547,0.32528618,-0.1980852,0.060097843,0.17262371,-0.21595049,0.014701114,-0.2168855,-0.15891951,-0.40033492,-0.52059287,0.06980368,-0.32725435,-0.34389827,-0.36458188,0.13998461,-0.30326372,-0.15779892,-0.12481019,0.3437932,-0.42773172,0.00068731344,0.17203572,-0.1422404,0.40727735,-0.4054901,-0.13951546,-0.15479529,0.113455884,-0.2452397,-0.13837092,0.2686259,0.21543229,0.6440806,-0.043151077,-0.21311423,-0.30968216,0.0055078478,0.14749166,0.5602968,-0.20005172,-0.4996573,-0.045497105,-0.036170736,0.18292983,0.03533086,0.030483628,-0.31903616,-0.26325738,0.11445761,-0.29880548,0.30323842,0.493284,-0.3244595,-0.32437676,0.31090236,0.518,0.022956148,-0.122023486,0.029821873,-0.011506078,-0.4289852,-0.17764525,0.10997008,-0.21292448,0.33949846,-0.11845118,0.1498469,0.7026914,-0.17770042,0.12056225,-0.041403566,-0.08197134,0.00047041036,-0.3300222,-0.26698548,0.25360915,-0.32576814,0.18507828,-0.2389597,0.8679598,0.16838616,-0.8647476,0.43172932,-0.48245215,0.17662795,-0.07677649,0.6555508,0.6754687,0.28479993,0.41069916,0.6542372,-0.6750044,0.06895027,-0.14999367,-0.33698678,0.055676553,-0.07903477,0.022420399,-0.49659252,0.045587044,0.0685037,-0.0910821,0.0010078076,0.2975865,-0.6426675,-0.0053693373,0.17199606,0.77238053,-0.3485703,-0.043848187,0.51953083,0.8942235,0.87463707,0.03799932,1.1682557,0.27662516,-0.3438673,0.33202603,-0.5165903,-0.5872531,0.21543466,0.3443434,0.024373427,0.26034904,0.123003006,-0.029508395,0.29256585,-0.33490002,-0.002707513,-0.15618518,0.13923235,-0.009585121,-0.124344096,-0.3791577,-0.11757673,-0.059739336,-0.008887565,0.05801638,0.17933773,-0.36286718,0.1446633,0.011966717,1.9109443,-0.03694775,0.13456662,0.034324896,0.4425211,0.10734187,-0.078039095,0.03263644,0.43531317,0.32756063,0.09989723,-0.54386157,0.11117069,-0.19546217,-0.51549596,-0.102114856,-0.21936211,0.1004649,0.050999235,-0.34963062,-0.012408295,-0.0599629,-0.41268048,0.4878016,-2.613746,-0.18944553,-0.043230936,0.31571218,-0.31273723,-0.3391744,-0.09259489,-0.33628583,0.3649752,0.3121444,0.40015277,-0.75272125,0.27092463,0.30852267,-0.42977607,-0.13634208,-0.6395446,-0.028180826,-0.12303428,0.37445393,0.10338971,-0.01184838,-0.030964537,0.18224908,0.4117376,-0.16670701,0.015693447,0.16243629,0.31464648,0.20817241,0.44980258,0.0088344,0.38164788,-0.14399055,-0.18134238,0.36703685,-0.423501,0.1287089,0.047722556,0.06846254,0.28680724,-0.4279415,-0.86513025,-0.65311235,-0.49691194,1.0682752,-0.26710677,-0.3960312,0.2496081,-0.069413066,-0.30079293,-0.12472935,0.31087336,-0.15558052,-0.07835105,-0.8659521,0.14434434,-0.04869158,0.22214018,0.08718198,0.042748276,-0.36330652,0.57637674,-0.13349114,0.42065173,0.3347404,0.20005001,-0.12518075,-0.45459715,0.018663196,1.0441928,0.21173868,0.16093238,-0.16825518,-0.21548958,-0.19078296,0.0012782111,0.13198243,0.48797327,0.7022927,-0.047996417,-0.008791653,0.25818297,0.0065143863,-0.09597371,-0.19949588,-0.26675138,-0.035869583,0.07954201,0.600699,0.5134064,-0.2793778,0.35096118,-0.073671706,0.27400154,-0.10380143,-0.48820946,0.4807394,1.1138618,-0.15848567,-0.09950994,0.5294511,0.26469252,-0.33257312,0.42328238,-0.7392847,-0.18795677,0.5400466,-0.19099939,-0.3062947,0.18842195,-0.30237377,0.032173928,-0.9415146,0.3588498,-0.18568055,-0.41325918,-0.4476916,-0.15156019,-3.302078,0.10155689,-0.16327341,-0.22339305,-0.02681385,0.08535776,0.21393046,-0.60148495,-0.3866789,0.048450246,0.11783322,0.5255516,0.10786823,0.105286404,-0.26409984,-0.15606171,-0.33049938,0.081475325,0.11492273,0.29978982,0.069098115,-0.41393355,0.00017709592,-0.09502327,-0.40827295,0.1302398,-0.42771986,-0.4510018,-0.24415076,-0.49859613,-0.33493346,0.5145657,-0.38176778,0.03783086,-0.21308438,-0.07399046,-0.19696255,0.34278718,0.17556201,0.08602775,-0.055725656,-0.016319083,-0.10894544,-0.23557977,0.21675873,0.15977545,0.105294496,0.44506267,-0.24197015,0.13033405,0.4361674,0.627387,-0.0012853496,0.7596408,0.6070263,-0.1405338,0.36678943,-0.33649963,-0.13551119,-0.63650036,-0.44878682,-0.15626208,-0.41447458,-0.5015741,-0.028646898,-0.31664667,-0.7332822,0.4694206,-0.12256735,0.14716932,-0.0026210845,0.24618572,0.50334823,-0.19150218,-0.08951402,-0.060232233,-0.1517173,-0.51053095,-0.29780173,-0.59912163,-0.47872886,0.25728345,0.8751121,-0.119166516,0.012561216,-0.034760736,-0.0584782,-0.11748892,0.13031581,0.03239676,0.23946956,0.3578184,-0.0974974,-0.62146544,0.51197386,0.014146497,-0.14671801,-0.5776978,0.20518768,0.55585194,-0.49909616,0.47463727,0.24039526,0.0882595,0.042390052,-0.4684295,-0.274472,-0.005249879,-0.2801404,0.39433548,0.1582339,-0.6897195,0.40990236,0.44764653,-0.2650412,-0.71891356,0.30838516,0.0026328599,-0.33608347,-0.010259104,0.28751808,0.015545628,0.045991316,-0.1458775,0.22695424,-0.60747164,0.17584518,0.29172197,-0.04117094,0.3361685,-0.19958222,-0.08326953,-0.7217499,-0.0017989102,-0.5015139,-0.2884954,0.08861448,0.14802656,0.038560156,0.2395023,0.02245565,0.46669468,-0.13629465,0.08797559,0.009250241,-0.10312672,0.24135716,0.47917628,0.36051005,-0.34607422,0.45210457,0.010456674,-0.11000786,-0.20482773,-0.005157304,0.5027523,0.14615275,0.2451884,-0.074809745,-0.29785615,0.37633228,0.6403483,0.24926887,0.43107584,0.043437384,-0.2234121,0.37768802,0.13819544,0.108894646,0.0750785,-0.37220073,-0.0482987,0.0013817688,0.15922207,0.4021895,0.1773267,0.39938828,-0.08513791,-0.2601197,0.038032312,0.25462615,-0.12500435,-1.0460782,0.3547509,0.24271193,0.7872376,0.56679225,0.015577064,0.13304682,0.57944655,-0.24601758,0.18643141,0.28462118,-0.17768154,-0.57326776,0.45954525,-0.6271693,0.2539509,-0.07195057,0.03406468,0.085574254,0.00092299195,0.4554041,0.70152384,-0.22694315,0.07834217,-0.1400738,-0.18790762,0.17969105,-0.34683266,0.20488442,-0.44342238,-0.28205395,0.6471241,0.40866303,0.3403237,-0.20453885,-0.050192114,0.08692189,-0.04980367,0.10363849,0.030476168,0.066339634,0.05777368,-0.52036494,-0.23939598,0.60750884,-0.09045013,0.15396811,0.052082628,-0.2597877,0.16682748,-0.20035045,-0.21840768,-0.0426387,-0.5229403,-0.08755053,-0.11772213,-0.2819853,0.5716281,-0.15066475,0.31718612,0.062700704,8.7794135e-05,-0.2589354,0.24002177,0.30928004,0.55622315,0.08132067,-0.1817464,-0.3187266,0.17975336,0.18208586,-0.1976801,-0.17236501,-0.19522965,-0.07172033,-0.6605469,0.44638488,0.06301239,-0.26285613,0.16171432,-0.13257074,0.0327042,0.57507205,-0.04617017,-0.1721025,0.033554368,-0.20624413,-0.2378673,-0.15090613,-0.11054977,0.34604084,0.085404456,-0.09958,-0.029163932,-0.030812327,-0.120582044,0.4236836,0.13818428,0.2620278,0.28049842,0.14359844,-0.3902514,-0.08366497,0.08366422,0.26375747,0.09576887,-0.102102794,-0.060282834,-0.40865007,-0.42734075,-0.083394974,-0.16555673,0.32703888,0.045484237,-0.3913299,0.84567213,0.1409589,1.2064427,-0.085481435,-0.24478592,0.02462629,0.4932693,-0.061213836,0.13787879,-0.3945073,0.82504416,0.55987036,0.044572115,-0.14287058,-0.18284686,-0.08028439,0.19102062,-0.19985837,-0.026635226,0.0147094205,-0.66817707,-0.43954286,0.27665496,0.27684158,0.08233085,-0.041607507,-0.0033567303,0.18420643,0.042510092,0.37279275,-0.3447603,-0.12388779,0.23017873,0.3162975,0.039732438,0.0783794,-0.38481057,0.40812212,-0.49716064,-0.0071929027,-0.13011573,0.0669837,-0.13557558,-0.2041857,0.27775022,0.074161835,0.3148625,-0.26439813,-0.36683217,-0.21907698,0.4806601,0.04488459,0.1674247,0.57833016,-0.21208468,0.10033527,0.012026604,0.47868258,1.1413819,-0.30045867,0.08588624,0.41829863,-0.3370202,-0.6280955,0.30330095,-0.23585606,0.09188777,-0.20744024,-0.3005221,-0.38580093,0.1686784,0.1805345,0.0060890475,0.18920752,-0.57095206,-0.241728,0.31714505,-0.31480658,-0.18614617,-0.12779772,0.22339788,0.7186028,-0.35546052,-0.38113284,0.14680184,0.24185924,-0.34077173,-0.5550129,-0.14360042,-0.33746907,0.38067403,0.18736632,-0.33409888,0.054552104,0.21358609,-0.373872,-0.035365216,0.21611135,-0.4395031,0.13886435,-0.28785896,-0.0024483746,0.80888975,-0.07317283,0.12061038,-0.6983419,-0.3537285,-0.9941762,-0.4430823,0.57686454,0.19561923,0.024172632,-0.41490224,0.02150192,-0.035175435,-0.21312632,-0.122143984,-0.3499612,0.37617916,0.18401542,0.45821285,-0.12298525,-0.77333283,-0.10012398,0.13297862,-0.070827834,-0.63727397,0.4389571,-0.020991718,0.86274886,0.049594216,0.111631855,0.35048115,-0.4989807,0.024407092,-0.24725176,-0.22400601,-0.6971864,0.04153826 +224,0.66361815,0.043847654,-0.6982226,-0.028268794,-0.08655733,0.19402355,-0.16673009,0.5024548,0.29160753,-0.5790163,-0.1801002,-0.17891054,-0.036470275,0.27098343,-0.14709453,-0.6402609,0.3180212,0.2990785,-0.5597796,0.4671965,-0.51725954,0.45469907,-0.16966839,0.4725242,-0.010999362,0.2430085,-0.02874502,0.16307357,-0.2066306,0.060237486,-0.061568778,0.20433705,-0.2675428,-0.118141465,0.07008481,-0.38494816,0.020168785,-0.21450768,-0.30521303,-0.68090653,0.2664643,-0.6709965,0.67995715,0.09245121,-0.33222583,-0.02431511,0.1811043,0.13758646,-0.21594326,0.11369786,-0.020994306,-0.13695823,-0.01872576,-0.2766275,-0.49417496,-0.3900396,-0.5418133,0.11564139,-0.5070978,-0.10607308,-0.23330833,0.17825644,-0.272585,-0.04223032,0.07477999,0.33530974,-0.30580524,0.1438848,0.17101623,-0.32955894,0.18987043,-0.61987346,-0.15206112,-0.0076287254,0.2874556,-0.2684891,-0.35139382,0.125107,0.33895373,0.58699214,-0.15256618,0.15477021,-0.4564086,-0.060029518,0.01083601,0.66788673,-0.2867775,-0.4872413,-0.18064465,-0.024595404,0.2371263,0.15274547,0.33136502,-0.29260394,-0.14046867,-0.22793996,-0.28476658,0.433751,0.50798166,-0.5197334,-0.11182525,0.39640796,0.59382564,0.12855631,-0.19765921,0.27830574,-0.021898627,-0.5518891,-0.26942644,-0.11358603,0.109234445,0.7057001,-0.1014091,0.32517585,0.39342606,-0.23568018,-0.032803398,0.23322688,-0.027359918,0.10336859,-0.29253078,0.070995316,0.109731674,-0.25112185,-0.05538876,-0.12875007,0.4711529,0.060700584,-0.74437875,0.41398355,-0.60660094,0.0582653,0.013448293,0.4521779,0.5727526,0.56541806,0.17287493,0.5687358,-0.41606662,0.07405,-0.14153115,-0.2000072,0.09355568,-0.06024733,-0.14998142,-0.5612791,0.13507268,0.07001691,-0.24087304,0.5474791,0.65264255,-0.49083233,-0.14992741,0.13016264,0.7467637,-0.38385007,-0.2811249,0.6918885,1.0897603,0.8170131,-0.10295924,1.1577847,0.20830555,-0.0043029026,-3.4078956e-05,-0.27244467,-0.76045966,0.29949573,0.21778035,-0.39598045,0.47720647,0.09332093,-0.13016725,0.37679848,-0.22102882,-0.033625662,0.065056846,0.23919438,0.08149562,-0.2719499,-0.38896403,-0.00013074279,-0.07087713,0.011486311,0.25923812,0.21183203,-0.32799017,0.5824825,0.0024354954,1.6030515,0.1305301,0.13334347,-0.06443924,0.48921728,0.36717525,-0.17222834,-0.13350528,0.44755706,-0.03793234,0.025650905,-0.43185782,0.038467154,-0.118097246,-0.54615635,-0.28999388,-0.2059291,-0.13938577,-0.18320058,-0.36262855,-0.23667921,-0.07294063,-0.368109,0.49203315,-2.7863894,-0.27875748,0.023746975,0.5439965,-0.1418935,-0.56845385,-0.22502895,-0.27084026,0.36299333,0.33723333,0.42819285,-0.6158519,0.523793,0.43427798,-0.5023324,-0.19397326,-0.49502757,0.067733295,-0.035706062,0.21948433,0.04775917,-0.025272042,0.16887371,0.1405786,0.45865428,-0.29330692,0.11286157,0.37136093,0.45573464,0.1329262,0.41026166,-0.12122374,0.63401884,-0.27651316,-0.16314629,0.3801051,-0.4879249,0.1020914,0.06378254,0.14233114,0.42647567,-0.3972648,-0.8455638,-0.65735877,0.1560568,1.0188036,0.008999395,-0.51085526,0.20438582,-0.678868,-0.6410661,-0.068172954,0.45973194,-0.19616811,-0.1078189,-0.8031594,0.005654648,-0.13021968,0.2504318,0.03789373,-0.18206702,-0.30335405,0.6123737,-0.0037555757,0.40277246,0.3434911,0.18551035,-0.48435363,-0.4157451,0.02887843,0.96849614,0.23474164,0.21344332,-0.2146879,-0.08329216,-0.43992567,0.096446596,0.0803216,0.6033417,0.41742507,-0.053062964,0.07072451,0.2912378,0.09555992,-0.027865447,-0.28038672,-0.177655,-0.16807555,-0.041436356,0.55257785,0.7833473,-0.38273898,0.33999708,-0.10238144,0.04349572,-0.41348758,-0.5166912,0.5650678,0.6926984,-0.23381086,-0.44528088,0.60509366,0.3036029,-0.5594929,0.39784917,-0.6251591,-0.38099858,0.46353707,-0.30610424,-0.2366877,0.35477504,-0.2902525,0.16298816,-0.9557109,0.10340592,-0.18861824,-0.40477905,-0.3979644,-0.03016244,-3.0072606,0.360492,-0.15262514,-0.23905315,-0.07059709,-0.13530625,0.08204684,-0.40827358,-0.54091054,0.11805918,0.100104965,0.58983856,-0.088570334,0.1853549,-0.1754563,-0.37028658,-0.2382363,0.15543576,0.040293876,0.4874955,0.107426204,-0.5384522,-0.0025538306,-0.16053692,-0.43475223,0.19631398,-0.65146166,-0.43082568,-0.10756233,-0.46172103,-0.20011185,0.5976884,-0.39973196,-0.044143338,-0.49853206,0.07354302,0.09916196,0.3049375,-0.047014147,0.10315505,0.07559421,-0.09260989,0.033517938,-0.23342896,0.2007355,0.028472856,0.13943361,0.57529265,-0.14901245,0.10262063,0.41938806,0.7135655,0.08269159,0.8153374,0.36769593,0.14560209,0.39518824,-0.28581598,-0.30554032,-0.27574834,-0.23535724,-0.009269071,-0.49893287,-0.34843564,-0.15429558,-0.4627644,-0.80059105,0.41383648,0.06589061,-0.03466886,0.082434304,0.65966827,0.45872536,-0.30754405,0.103290774,-0.091588326,-0.2057222,-0.44518626,-0.28802142,-0.52678204,-0.5427085,0.2409801,0.9804856,-0.30630627,0.18222249,0.034581657,-0.1269684,-0.15289873,0.22778028,0.121620215,0.26247987,0.2963692,-0.3571165,-0.5327932,0.26830494,-0.30475512,-0.45304367,-0.59760743,0.20002306,0.67335254,-0.57094383,0.5115958,0.2796265,0.02914158,0.13836773,-0.5090761,0.10991336,-0.051332425,-0.32040492,0.32973135,0.25244367,-0.9124894,0.43051156,0.3942007,-0.14708972,-0.631118,0.5607206,-0.063809805,-0.55921537,-0.18687983,0.38751134,0.20107459,-0.09128795,-0.57629687,0.10281532,-0.5028795,0.1858226,0.13610227,-0.0427409,0.4261774,-0.16868846,-0.2494997,-0.79997706,-0.12647432,-0.5776445,-0.25451317,0.24503577,0.19321197,0.29543284,0.11315924,0.06751793,0.41852093,-0.5119783,0.036669876,-0.16923623,-0.13418867,0.17431565,0.32148147,0.542167,-0.47494972,0.6072983,-0.012313242,0.10263523,0.057237294,0.1443286,0.5759672,-0.11272588,0.5068721,0.3308003,-0.2189889,0.19390596,0.62589335,0.0694649,0.3810196,0.1660595,-0.26158312,0.17412423,0.08345691,0.12076909,-0.08015436,-0.46000186,0.04503438,-0.26206592,0.15209289,0.57979566,0.11279454,0.42479792,-0.11641415,-0.3678843,0.110471785,0.30346817,0.12243745,-1.1790189,0.09676973,0.2444561,0.781557,0.3878958,0.13434893,0.07832342,0.4966599,-0.20631969,0.21844481,0.2897174,-0.08929193,-0.3654548,0.25311115,-0.57240695,0.5169856,-0.09823065,-0.06002638,0.15129478,-0.097637616,0.46161485,0.85283566,-0.10598753,0.19199516,0.2717835,-0.3450121,-0.052515764,-0.41375256,-0.014441535,-0.7565158,-0.09364044,0.64373046,0.49993506,0.34376478,-0.1974184,-0.10712352,0.31437275,-0.10903367,0.016689396,0.02693107,0.2956012,-0.33109444,-0.67058754,-0.17057526,0.52439576,0.38923123,0.12708658,0.17903902,-0.23130976,0.3455659,-0.12162169,0.008544554,-0.086036414,-0.47352073,0.050042797,-0.29653135,-0.5531797,0.42050323,-0.05153358,0.29362655,0.29059908,0.117153905,-0.2894101,0.7044993,-0.015757114,0.71235496,0.22026776,-0.10670149,-0.41710475,0.2567463,0.31595555,-0.23401497,-0.07470438,-0.21294932,0.14382695,-0.31846467,0.32445982,-0.009843458,-0.22904782,-0.066665165,-0.07660693,0.15091312,0.5503691,-0.21591671,-0.25389007,0.079106666,-0.09302368,-0.27937496,0.0007464613,-0.09404137,0.43117094,0.20568068,-0.23604609,-0.05219217,0.04400413,0.009192884,0.3490108,0.07123479,0.2668632,0.38332328,0.068027824,-0.30105606,0.0012941584,0.16023938,0.72914773,-0.13515075,-0.03635381,-0.07258708,-0.6182334,-0.43368316,0.10017771,-0.14961204,0.19986673,0.2809931,-0.06070735,0.80710346,0.21000005,1.3021489,-0.044565856,-0.23628205,0.16712034,0.34011284,0.06482551,0.008930889,-0.42896232,1.1047862,0.471982,-0.30992126,-0.20020331,-0.27822572,-0.2008236,-0.0006955266,-0.28332737,-0.17040046,-0.01816287,-0.69698787,-0.27902606,0.2678502,0.1447118,0.28912643,-0.14125152,0.4669228,0.26452953,0.006056588,0.070953526,-0.47128722,-0.25246665,0.29792124,0.42083797,-0.15496908,0.044743463,-0.43320724,0.39961863,-0.533647,-0.019667268,-0.29240945,0.13983165,-0.21638143,-0.29018652,0.2377128,0.16016215,0.20969154,-0.30856782,-0.2217315,-0.2379589,0.44902083,0.16254707,0.12881804,0.4642323,-0.14203997,-0.07581818,-0.011217167,0.5236743,1.0054287,-0.022123247,-0.1392346,0.5855644,-0.27737895,-0.85288507,0.24789476,-0.46976832,0.16971831,-0.13879889,-0.14852424,-0.4798464,0.36627886,0.112629116,0.11205455,-0.034468234,-0.4773266,-0.22113998,0.23417969,-0.43424773,-0.09126264,-0.22619434,-0.021612717,0.54828024,-0.22745843,-0.43086958,0.08160973,0.42117432,-0.2443883,-0.6396045,-0.003916671,-0.3331466,0.22519648,0.2649039,-0.3673152,-0.12121097,0.11223031,-0.40943226,0.067285605,0.21730351,-0.29423794,0.13439511,-0.53338796,-0.20570862,0.9292472,-0.23007597,0.3967569,-0.30328572,-0.6351915,-0.9253171,-0.2758527,0.20501524,-0.0014473001,-0.15027311,-0.78676385,-0.11052696,-0.2771641,-0.39157185,0.08196027,-0.061498255,0.6396899,0.10088942,0.21229273,-0.1701075,-0.96712327,0.076108254,0.25257614,-0.50913745,-0.81146604,0.5263795,-0.045538645,0.8646286,0.1086227,0.1694283,0.5985798,-0.51822925,0.13745692,-0.28831115,-0.13150781,-0.5210084,-0.07877285 +225,0.29161325,-0.25178176,-0.27319366,-0.1230528,-0.2251178,0.017650312,-0.35908818,0.4845251,0.08226917,-0.57103455,-0.22102126,-0.33101588,0.100861825,0.4700535,-0.2591243,-0.5906677,0.05987046,0.29058537,-0.40967274,0.4618327,-0.53767854,0.4168026,0.16471708,0.42087895,-0.2270397,0.21662363,0.5641359,-0.09534596,-0.021555591,-0.3005374,-0.10349083,0.2217898,-0.8825339,0.30032277,-0.18849108,-0.65457124,0.20681195,-0.65856034,-0.11605177,-0.73416436,0.4173891,-0.9967766,0.7422519,0.4199132,-0.15747397,0.14268214,0.17221019,0.384728,-0.22889356,0.11198105,0.3824771,-0.19325832,-0.037323005,-0.48157305,-0.124788225,-0.3488731,-0.6558678,0.14585885,-0.3723893,-0.16041133,-0.43028355,0.25882256,-0.15266769,0.14121714,-0.2144142,0.07835905,-0.6662115,-0.18931821,0.12860183,-0.32973808,0.3270639,-0.44187897,-0.10354034,-0.2522761,0.38689038,-0.5371491,-0.14732453,0.30167985,0.20668073,0.6510541,-0.01950089,-0.28520226,-0.37980223,-0.05546411,-0.04344985,0.66212,-0.28500602,-0.72985816,-0.055962883,-0.10458825,0.2345591,0.23347084,0.054565053,-0.24988195,-0.09300162,-0.39634895,-0.17920902,0.46270877,0.5063918,-0.6485482,-0.35726172,0.2747763,0.503629,0.017573109,0.13630769,-0.17519625,0.030386578,-0.8365656,-0.2869102,-0.024016678,-0.32387364,0.4951237,-0.07966162,0.30779332,0.80877984,-0.116838254,0.0010358393,0.011580318,-0.261021,-0.22778864,-0.07764818,-0.2776218,0.44135126,-0.27799863,0.11976566,-0.36870617,0.8580906,0.033708148,-0.628641,0.37283128,-0.64808524,0.06738709,0.13909201,0.51344573,0.34780562,0.6547421,0.33173826,0.70753205,-0.45432663,0.12808827,-0.08339687,-0.2761071,0.10462512,-0.109275386,-0.058838435,-0.28232232,0.10576985,-0.07616576,-0.1522018,0.17011812,0.620379,-0.5370821,0.077500165,0.20386143,0.7224088,-0.40295655,0.0128830075,0.91809636,1.01562,0.8730749,0.0694848,1.5190881,0.28187814,-0.13330242,-0.050178457,-0.06821059,-0.79993695,0.19124945,0.5983793,-0.112727165,0.33975437,0.16395947,0.17076655,0.41119084,-0.6111658,-0.23303321,-0.24244554,0.09424911,-0.05309509,-0.1782366,-0.4878695,-0.13295825,-0.0058832616,0.045193322,0.29867834,0.43149287,-0.12398144,0.3414939,0.00532074,1.4394728,-0.03925892,0.21271029,0.061981343,0.5440922,0.21885629,0.13918783,-0.0664199,0.110547826,0.22881901,0.08022138,-0.4932111,-0.07749919,0.021130547,-0.4614204,-0.14134264,-0.009729405,-0.25141793,0.12311041,-0.3109244,-0.21152177,0.011088753,-0.03768441,0.4530429,-2.2552907,-0.10850326,0.02062577,0.38694713,-0.28756684,-0.44289857,-0.16350476,-0.45064902,0.7444998,0.42436904,0.53169763,-0.7359973,0.36964214,0.5252163,-0.74010134,-0.18810399,-0.6293973,0.055115283,-0.1422781,0.26979014,0.1565789,-0.27797025,0.07099705,0.071963266,0.5081619,-0.018460507,0.10658522,0.15552227,0.7033779,-0.10192952,0.58262014,0.102708474,0.65003943,-0.30750087,-0.3460881,0.3558541,-0.41750392,0.2828199,-0.40085727,0.01139692,0.29896235,-0.7200605,-1.1425784,-0.74940336,-0.30262145,0.80424917,0.0364318,-0.43986887,0.2168406,0.021213692,-0.2697627,0.016933689,0.68221915,-0.2190793,0.122058466,-0.9136651,-0.016978756,-0.11567545,0.32221442,0.06991561,-0.041209944,-0.8070322,0.73707855,-0.13438186,0.20829575,0.7006506,0.12714767,-0.41598353,-0.60582626,0.28272942,0.85622615,0.3410527,0.13265856,-0.24231982,-0.24227719,-0.10118611,-0.13795574,-0.07619396,0.7155969,0.5283531,-0.12744352,0.0037691533,0.2446353,0.17330216,-0.0076399804,-0.28485602,-0.21689455,-0.17526856,0.11479261,0.73809695,0.81784487,-0.32215303,0.010227772,-0.28190055,0.5629517,-0.16611029,-0.432729,0.7090663,1.0204693,0.027014047,0.076600626,0.84575003,0.61962247,-0.07522627,0.5582825,-0.66015637,-0.50928736,0.23660424,-0.20222922,-0.4120759,0.09989921,-0.25309175,0.049830966,-0.94374734,0.3882802,-0.31469485,-0.15791112,-0.7884089,-0.14867073,-4.2994404,0.2515626,-0.30303058,-0.04495288,-0.049382478,-0.2087708,0.014820993,-0.59645784,-0.5660294,0.3385406,-0.053357333,0.5079604,-0.14266093,0.2986739,-0.24042264,-0.26998663,-0.1711326,0.29128242,0.1783559,0.269683,0.01786005,-0.5504936,0.020601388,-0.29107934,-0.38177353,0.02551123,-0.75933135,-0.11521055,-0.33515632,-0.7205352,-0.17369677,0.69128,-0.4301104,0.0074020503,-0.22449279,0.1008243,-0.43485194,0.5268405,0.047808032,0.13361666,0.11377041,-0.09255053,0.09922572,-0.118660256,0.3977383,0.077980265,0.08392602,0.28366846,-0.13561411,-0.025394749,0.3088112,0.7906562,-0.118959084,0.93240803,0.44877377,-0.045685165,0.2306647,-0.24073096,-0.46588326,-0.58681154,-0.36864942,-0.17166439,-0.40168104,-0.56636876,-0.070565134,-0.37548083,-0.7384974,0.7526573,-0.044293918,-0.3146417,0.061660003,0.28723592,0.21866366,-0.47277027,-0.12183614,-0.05610574,-0.021896005,-0.6138505,-0.32033718,-0.54366755,-0.38004366,-0.08399287,1.0211333,0.07640553,0.1368864,0.26825428,0.18827197,2.0372867e-05,0.15254822,0.070972875,0.110197484,0.5665495,0.10071764,-0.9524624,0.7539175,0.028312897,-0.35723767,-0.6245729,0.3133158,0.5299766,-0.72254074,0.6126342,0.48578906,0.021095056,0.14727512,-0.44945726,-0.46260422,-0.008782631,-0.1453003,0.39615136,0.11721015,-0.7093714,0.43322736,0.4884862,-0.3953917,-0.90158284,0.5379816,-0.026045155,-0.5364753,-0.017969728,0.40864983,0.018306136,0.06392523,-0.35147208,0.21802847,-0.49809903,0.40151295,-0.03305135,0.07637988,0.470996,-0.3291852,-0.21265075,-0.9665596,0.02715299,-0.48753467,-0.3757761,0.02613635,0.07706032,-0.21069881,0.26149315,-0.016132712,0.3766658,-0.49251089,0.24867344,-0.053067602,-0.21881822,0.18029961,0.23934373,0.54055893,-0.45651355,0.69934785,-0.061321665,0.005617368,-0.30464047,-0.046551704,0.46449718,-0.16401193,0.25256124,0.0039327266,-0.08399409,0.29247147,0.8343813,0.24330792,0.20439346,0.180621,-0.003541261,0.36050895,0.19481027,0.09254678,0.22653142,-0.5721965,0.20244277,-0.2094202,-0.1133876,0.37551716,0.047525268,0.4288311,-0.26508713,-0.27694207,0.060814656,0.4121813,0.1844234,-1.0645857,0.1389871,0.07980606,0.72219306,0.5867692,0.15840037,0.287999,0.74153805,-0.34926397,-0.12242991,0.16203931,-0.06706005,-0.389054,0.6048894,-0.47712988,0.39037046,-0.028055971,-0.09889569,-0.020223552,-0.14918177,0.21384016,0.84677124,-0.14482419,0.12130387,0.027708376,-0.12498732,0.064638786,-0.3645175,0.17754288,-0.30845445,-0.25171274,0.90584886,0.36543405,0.5083648,-0.12955295,0.047653638,0.13265567,-0.063976035,0.047109984,0.06288513,0.14121374,0.13535544,-0.63337135,0.19202848,0.7202284,0.1633537,0.12923144,-0.06640558,-0.43914604,0.38249928,-0.3108674,-0.27905232,-0.12521613,-0.94144285,-0.07544117,-0.5263612,-0.17995556,0.32189712,0.11592784,0.26983887,0.19614299,0.16494918,-0.17709303,0.4207763,0.017183412,0.9747435,0.35436425,-0.021122104,-0.23659499,0.2868129,0.19011433,-0.33817795,0.19609486,-0.1644322,0.021114012,-0.63912654,0.36033052,-0.063636556,-0.30333892,0.24321112,-0.16685668,0.010555747,0.5093037,-0.18915229,-0.146368,0.37172875,-0.15620849,-0.1583156,-0.35277602,-0.21926436,0.278538,0.29872474,0.25740525,-0.026296306,0.04944873,-0.39646593,0.73712623,0.07153923,0.4325308,0.2262805,0.2368814,-0.37142974,0.07933991,-0.27152833,0.60232633,-0.21297356,-0.16397658,-0.20482488,-0.6021546,-0.45348293,-0.022210801,-0.084888086,0.097704366,0.007084371,-0.12285147,0.6279082,0.18257864,1.0468303,-0.0030813874,-0.3395963,0.21910386,0.62946326,-0.08289254,-0.062619105,-0.44418994,1.3805637,0.46047768,-0.16765155,-0.066263996,-0.22060302,-0.04040586,-6.151199e-06,-0.38491812,-0.089967795,-0.060159046,-0.6660676,-0.23301895,0.32179466,0.44242612,0.07528237,-0.16280004,0.35883665,0.24750724,0.19468744,0.2930323,-0.6426442,-0.37102038,0.55491817,0.3086482,-0.052693546,-0.007604039,-0.3613649,0.47826853,-0.35435495,0.0772752,-0.63909996,-0.01178354,-0.29568657,-0.1663385,0.122215554,-0.042196583,0.070094936,-0.40638837,-0.2582666,-0.15566906,0.2687382,0.19817111,0.2922961,0.6259688,-0.17331739,-0.0046023903,-0.20894139,0.62876886,0.90721893,-0.4679144,0.008099305,0.51738244,-0.30041012,-0.2573629,0.3556137,-0.30355945,-0.13811496,-0.15254508,-0.13500816,-0.42821997,0.2275979,-0.078008644,0.052907027,-0.012059498,-0.84801614,-0.12603362,0.49520817,-0.32512212,-0.31789836,-0.3518569,0.42229065,0.9496676,0.04819884,-0.37017232,0.26603454,0.23094305,-0.29388076,-0.73693335,-0.20888798,-0.3419644,0.2836786,0.17821482,-0.26558205,-0.20802906,0.12339256,-0.5960721,0.02239626,0.1355634,-0.3328317,0.19628778,-0.5553622,-0.030172214,1.0117676,-0.2511878,0.3030942,-0.6670464,-0.47866398,-1.2025287,-0.22176628,0.86417407,0.27309236,-0.049127832,-0.63887256,-0.0803416,-0.10949619,-0.27571535,0.04121895,-0.22459646,0.28419074,0.10266203,0.7609475,-0.23913565,-0.8148409,0.14584777,0.19547157,-0.17406969,-0.4318931,0.40577698,0.23177285,1.1045799,-0.053346418,-0.22505574,0.47455508,-0.7204767,0.119289055,-0.22680569,-0.098750114,-0.8827182,0.14785503 +226,0.44018638,-0.19031775,-0.38672277,-0.1411397,-0.24956968,0.063969836,-0.22423226,0.5797975,0.24169579,-0.386082,-0.15442461,-0.013685938,-0.040400688,0.25944602,-0.3024187,-0.34809294,-0.0023444816,0.08840488,-0.33563375,0.5672705,-0.43564293,0.19411346,-0.041750252,0.39204428,0.25750017,0.17333697,0.07283993,0.0985663,-0.20279548,-0.4304706,-0.09010173,0.41755286,-0.48049062,0.17182848,-0.2714823,-0.32657537,-0.08682577,-0.54258937,-0.42874253,-0.8044917,0.21806642,-0.85920143,0.45714816,-0.046426553,-0.39332706,0.3818681,0.14717758,0.14467758,-0.021503415,-0.17644358,0.081152946,-0.16027999,-0.06602329,-0.0992128,-0.188613,-0.32365534,-0.6174943,0.10004404,-0.4555539,-0.088984184,-0.27547503,0.2107326,-0.26622343,0.03252529,-0.09861842,0.43171233,-0.5009878,0.06604856,-0.009684451,-0.017481204,0.25667825,-0.58515173,-0.26008618,-0.107020825,0.12579527,-0.12720367,-0.2919846,0.28899294,0.34323424,0.46670237,-0.08541573,-0.21337156,-0.3943172,-0.025492985,0.07004597,0.5040152,-0.26180464,-0.6929276,-0.16180652,-0.019328007,0.42101005,0.24979767,0.054132275,-0.119078815,-0.15573297,0.058825772,-0.24816039,0.41615385,0.58543926,-0.24402499,-0.21270134,0.29898012,0.41058558,0.211943,-0.19004235,0.013749689,0.0060351267,-0.5623605,-0.101806045,-0.08372204,-0.14338687,0.5703457,-0.15000093,0.29406077,0.5050782,-0.11615951,-0.06817789,0.20754282,0.040849358,-0.13754451,-0.2915724,-0.22478652,0.28538412,-0.55258155,0.17969775,-0.20177223,0.6852082,0.008263398,-0.8481171,0.3267372,-0.41881877,0.092047594,-0.067329586,0.5405444,0.68157244,0.45817944,0.38155112,0.66674805,-0.29832697,0.0035016537,-0.06721532,-0.28769585,0.057630025,-0.3338108,-0.0806162,-0.4504369,0.03710015,0.09867927,-0.13409248,0.17202665,0.54164225,-0.59423614,-0.11895238,0.30060238,0.62002575,-0.21281213,-0.060247615,1.0655999,1.0802615,1.0062966,0.036726903,0.9929998,0.099697016,-0.0783766,0.20439559,-0.06743522,-0.5674691,0.25737396,0.3634128,0.012589455,0.15800384,0.011463429,-0.1210857,0.40522626,-0.47514075,-0.21709254,-0.13314322,0.20144391,0.11255026,-0.042273596,-0.46117157,-0.32012242,-0.006007258,0.19477683,-0.011366576,0.29729068,-0.30328277,0.5282947,0.015125655,1.4590657,-0.07278822,-0.05188188,0.05445149,0.6085708,0.18726148,-0.15274328,0.020163,0.29905933,0.22088704,0.15445076,-0.43961075,0.011720099,-0.20352358,-0.48555702,-0.05335905,-0.38954994,-0.21224639,-0.07821691,-0.5252148,-0.19733475,-0.14812247,-0.35444325,0.47257257,-2.9181123,-0.15051797,-0.04806762,0.19423157,-0.11803767,-0.4334553,-0.0022155978,-0.50558233,0.4698459,0.38839057,0.43410578,-0.7060148,0.12822072,0.39371386,-0.5373684,-0.12509418,-0.6294956,-0.18660358,-0.018227303,0.4945283,0.12524895,-0.039662924,0.13587716,0.07442168,0.6333956,0.10221111,0.19848748,0.2548631,0.34107918,-0.15919964,0.43777013,-0.08401349,0.40137446,-0.20071971,-0.2534238,0.3938322,-0.37201935,0.2700021,-0.20455018,0.21454923,0.48663148,-0.47186297,-0.8945552,-0.5731898,-0.18844365,1.2409716,-0.12155479,-0.49811804,0.23781139,-0.3164588,-0.28354993,-0.07016357,0.50286174,-0.15802923,0.06012974,-0.66421366,-0.03603927,-0.12551738,-0.02033757,-0.10207352,-0.0034751613,-0.4336778,0.6542034,-0.058342416,0.44087648,0.301927,0.12001906,-0.44920892,-0.54208493,-0.03318789,0.8632798,0.5428047,0.14574325,-0.28241304,-0.14834572,-0.33489868,-0.103496,0.07540794,0.5806804,0.67098755,-0.08288537,0.12513983,0.28916785,0.107365765,0.040497564,-0.12579957,-0.17064841,-0.1019685,0.064728774,0.66055834,0.71291775,-0.15623833,0.35462993,-0.061383132,0.29109412,-0.16879836,-0.47017133,0.2999969,0.91312015,-0.115101576,-0.28973305,0.60657084,0.5072286,-0.11621261,0.44042805,-0.5624094,-0.30892432,0.3694595,-0.08196031,-0.4284115,0.3697591,-0.35381216,0.04784091,-0.8152752,0.39110374,-0.18791929,-0.62205386,-0.59106636,-0.10470618,-3.1070635,0.1083362,-0.21560279,-0.2585539,-0.09862773,-0.36306334,0.25275913,-0.51784736,-0.48681644,0.07567823,0.09547274,0.63961,-0.17998943,0.027746774,-0.19455746,-0.24396305,-0.30979195,0.17257582,0.12215014,0.35068476,-0.23384878,-0.3004774,-0.14782552,-0.1670106,-0.46468773,-0.038441036,-0.4969892,-0.55691385,-0.06666207,-0.38504124,-0.18269716,0.60325617,-0.3261346,0.13384774,-0.24570712,-0.04827132,-0.06617222,0.18042529,0.11394959,0.13793881,0.05818394,-0.09100064,0.21321088,-0.30333886,0.3005316,0.035406247,0.22915697,0.4628309,-0.21196172,0.27767077,0.5097383,0.6614057,-0.2389974,1.0683163,0.3717823,-0.13324738,0.3095337,-0.12684654,-0.3748433,-0.5874486,-0.21046156,0.0025152005,-0.44900507,-0.28416833,-0.04752119,-0.3645476,-0.79306895,0.5353624,0.0069568045,0.22871429,-0.14935657,0.25200006,0.6118521,-0.20722711,-0.09070037,-0.04576534,-0.13908319,-0.5503752,-0.30258703,-0.6594837,-0.51546544,-0.10108062,0.9345824,-0.015635088,0.061844498,0.116714634,-0.0055830926,0.0040028393,0.11070356,0.005441278,0.047890954,0.30681607,-0.06581654,-0.6966442,0.5266475,-0.04908044,-0.20627768,-0.46187016,0.32371166,0.5998117,-0.50003844,0.3846325,0.496001,0.14893073,-0.203013,-0.6174502,-0.05540543,-0.13090742,-0.15885699,0.55261075,0.38570875,-0.8231422,0.561548,0.3240166,-0.18098067,-0.700168,0.4899999,0.012549408,-0.10574006,-0.021029335,0.3286208,0.23391539,0.06957081,-0.16751114,0.20522691,-0.35934302,0.28116447,0.22719672,-0.10631596,0.3068375,-0.2488513,-0.05214797,-0.7479502,-0.0067632394,-0.5307476,-0.40279698,0.15242115,0.031093927,0.05384831,0.12992099,-0.045855254,0.36329755,-0.27649838,0.051888064,-0.05316168,-0.27754566,0.41147757,0.55051225,0.58018523,-0.3169406,0.6292435,0.19148391,-0.12122457,-0.050906897,-0.0057580955,0.37559244,0.014479734,0.3701595,-0.045471802,-0.20263499,0.22306943,0.7722501,0.31178468,0.39752483,-0.05012504,-0.14958969,0.21969827,0.08928617,0.34016022,-0.026987694,-0.6389723,-0.012129478,-0.4674905,0.13232537,0.45031548,0.16021742,0.22349226,-0.013531387,-0.2795764,0.051817838,0.12473016,-0.009274505,-1.441498,0.33702916,0.20061627,0.90459466,0.47701043,0.033811558,0.006519422,0.78597915,-0.18361323,0.09390625,0.46720922,0.16224577,-0.37409514,0.6062411,-0.88511705,0.44514117,-0.036815554,0.09768869,0.04703327,-0.117676325,0.4895391,0.6732971,-0.13856678,0.027978437,0.041637033,-0.32974097,0.13767636,-0.43685693,0.15402137,-0.46467587,-0.1933929,0.72838837,0.4855321,0.35366327,-0.15105866,0.028505277,0.1656132,-0.113223806,0.08501735,0.059179578,0.10664966,-0.28209487,-0.58148503,-0.08408713,0.50277704,-0.10641644,0.17268327,-0.02292283,-0.2079966,0.18382835,-0.08694441,-0.15604195,-0.066551924,-0.56972736,-0.07191628,-0.28759387,-0.4627697,0.5880947,-0.23767509,0.18313083,0.24828121,0.067508064,-0.14487621,0.12569737,0.17006983,0.6970142,0.026044939,-0.059236288,-0.24717112,0.13972208,0.10965289,-0.20486432,-0.2515992,-0.19118768,0.043906957,-0.5419493,0.36755604,-0.16108248,-0.34461018,0.10802855,0.0490105,0.12495576,0.4317048,-0.086933084,-0.2055654,-0.042893205,-0.05704068,-0.20098902,-0.1968077,-0.001119107,0.33625534,0.25477138,-0.07705145,-0.00904618,-0.043427125,-0.15460685,0.34104,-0.081122115,0.40307647,0.23908776,0.0020385496,-0.3233854,-0.046220373,0.07387518,0.5216913,-0.0728175,-0.026615635,-0.23055968,-0.355538,-0.37542906,0.15677328,-0.061270766,0.4182452,0.21451196,-0.09853326,0.7487644,-0.09908532,1.1048942,0.015489116,-0.5084353,0.0923783,0.5019531,-0.05152153,0.0069873296,-0.26117638,0.91948545,0.3244759,-0.09728569,-0.094241485,-0.38873243,0.1590859,0.20517409,-0.13292915,-0.100449406,-0.052400418,-0.67778134,-0.12143346,0.20599991,0.29257077,0.19287461,-0.15479721,-0.07388156,0.38844207,-0.048244696,0.33524638,-0.39166203,-0.15463322,0.34421706,0.3249446,-0.16451764,-0.05692539,-0.5068027,0.28869048,-0.41299325,0.007823937,-0.3546448,0.21336079,-0.33001754,-0.29233217,0.2570782,-0.10071629,0.3624543,-0.3006302,-0.39802945,-0.26361865,0.4471932,0.036497585,0.0074569527,0.3748514,-0.28917605,0.0058606258,0.006535087,0.3368495,1.1037716,-0.37371188,0.016862847,0.3202143,-0.27769792,-0.52015245,0.33314624,-0.38195962,0.23386961,0.12885202,-0.20194538,-0.43324348,0.241767,0.31138635,0.23134503,0.07631134,-0.6489552,-0.102861695,0.23098512,-0.22486502,-0.14658666,-0.37800562,0.015103277,0.5243985,-0.28340587,-0.47370815,0.010940436,0.25418356,-0.19998507,-0.54121906,0.04700795,-0.28005275,0.21864866,0.08299694,-0.4385289,-0.09850773,0.052725367,-0.4476819,0.07075559,0.17630953,-0.26085377,0.095462404,-0.39270163,0.08848757,0.9913596,-0.16249326,0.27281505,-0.4234135,-0.53548026,-0.7426359,-0.36276683,0.21630332,0.21489376,0.09025722,-0.6494327,-0.036384802,-0.23405956,-0.20362127,-0.118244335,-0.30384475,0.49683782,0.16297327,0.3904993,-0.17981823,-0.6697718,0.2332038,0.046061873,-0.06356162,-0.45559615,0.54904366,0.04898111,0.6834713,0.11523734,0.14643377,0.24071416,-0.5475148,-0.005930327,-0.11469738,-0.20270199,-0.62780625,0.111276194 +227,0.3290613,-0.04997078,-0.64484066,-0.056480415,-0.15199013,-0.008720605,-0.23726441,0.54036385,0.41964,-0.5067823,0.018239724,-0.040123835,-0.00065657496,0.1690162,-0.23435125,-0.5573369,-0.054123804,0.19775401,-0.5303414,0.57294106,-0.3734926,0.27354482,0.22868626,0.24978042,-0.053737342,0.21907641,0.012344356,-0.15970853,0.04367321,-0.12550062,0.02363178,0.19513133,-0.4642673,0.33279622,-0.1220185,-0.12943108,0.047809288,-0.37780836,-0.40108678,-0.7684351,0.10609992,-0.7074166,0.54651344,0.03610563,-0.4189439,0.1698226,0.001907649,0.14272952,-0.25170547,0.045023486,0.3093025,-0.21803635,-0.5419687,-0.28334385,-0.29724076,-0.48676902,-0.47405085,-0.14567049,-0.45785713,0.28385085,-0.31942636,0.22117516,-0.30666262,-0.0154713895,-0.21928999,0.36346248,-0.45932597,0.26721132,0.16471331,-0.051657908,0.4627703,-0.5976193,0.04432952,-0.12269013,0.15624431,0.16410202,-0.35881594,0.32170883,0.08981873,0.6187976,-0.097858004,-0.10556693,-0.3038948,0.09130164,-0.059430383,0.4168487,-0.2824741,-0.107071675,-0.1747697,-0.08070827,0.36866134,0.30788282,-0.18721618,-0.38878843,-0.10144453,0.005988107,-0.38005373,0.41943994,0.58593154,-0.092834204,0.108618245,0.4192701,0.36685672,0.26116404,-0.26043314,0.10517548,-0.13387762,-0.5656177,-0.22565348,0.07275853,0.0058145477,0.4394397,-0.09752385,0.10986643,0.6583353,0.0014692178,-0.2682777,0.18312621,0.14755373,0.0929356,-0.14455853,-0.18265165,0.2946133,-0.63226086,-0.14025773,-0.3379892,0.63088745,-0.12962992,-0.96283305,0.40353787,-0.3859546,0.072037585,-0.16204707,0.7141057,0.82469726,0.8426357,0.07576804,0.90079814,-0.66491574,0.012856511,-0.23403105,-0.37672248,0.42021805,0.020566909,0.035242837,-0.44404528,-0.29006672,0.08702927,-0.2869115,0.121797055,0.49173906,-0.42707422,-0.33493587,0.10445145,0.58045304,-0.36414176,-0.13546176,0.50057256,1.0997844,0.7592944,0.19277444,1.2434611,0.07824834,-0.10668422,0.013578773,-0.15131743,-0.7973777,0.27034616,0.23780641,0.14484888,0.13211495,0.18255416,-0.044699267,0.284153,-0.10222367,-0.27343372,-0.13507025,0.3350482,-0.2430117,-0.09802858,-0.26373294,-0.36472642,0.04467751,0.16474196,0.026987245,0.2456381,-0.1862851,0.19960557,0.2808129,1.4335009,-0.111213885,0.012093612,0.13031076,0.123961225,0.29883906,-0.16198143,-0.1988612,0.43932799,0.38427818,0.019585064,-0.6217126,0.095253855,-0.07185674,-0.3318729,-0.10156015,-0.20735945,0.094385706,-0.1376349,-0.28102487,-0.17232966,0.0002736094,-0.66678596,0.5286599,-2.7283123,-0.038303215,-0.008305591,0.38514048,-0.011802875,-0.23451048,-0.3528171,-0.49623632,0.4417944,0.32945964,0.59013164,-0.47675964,0.4131565,0.4326573,-0.6232394,-0.12585126,-0.75694394,0.011032861,-0.03390919,0.18869518,0.09393603,-0.08624358,-0.0080888085,-0.023070775,0.4514119,0.0049849106,0.15759343,0.45080596,0.47490963,-0.09787367,0.48044747,-0.22213088,0.49430627,-0.3054849,-0.09846897,0.22327016,-0.26972142,0.25498372,-0.19522974,0.19097377,0.39725304,-0.4592225,-0.799013,-0.43650293,-0.049663864,1.3038821,-0.42566812,-0.45567256,0.2221772,-0.145651,-0.28790763,0.061192673,0.67474043,-0.17928974,-0.061982915,-0.78723466,-0.13749428,0.019687848,0.44829047,0.018392816,-0.007901325,-0.3938715,0.63602406,0.013388147,0.6808316,0.44797057,0.13493209,-0.12918893,-0.22239974,0.048817195,0.84798086,0.30380544,0.16848278,-0.2608541,-0.09225222,-0.28950465,0.05148065,0.053278368,0.64445245,0.57255286,-0.1673056,0.068867855,0.42759016,-0.23745863,0.011373346,-0.14218631,-0.30940178,-0.12309189,0.10120343,0.52621025,0.7431679,-0.0038994963,0.17319356,0.113936916,0.33095136,-0.056610264,-0.65060896,0.38595402,0.6204735,-0.13411643,-0.2792803,0.5805258,0.49882835,-0.018891223,0.5574243,-0.4790827,-0.48474312,0.4985804,-0.022053044,-0.44249102,0.36428055,-0.3644283,0.07668848,-0.7540747,0.20854998,-0.39495108,-0.7393925,-0.34920242,0.06575502,-2.4795847,0.27009627,-0.106680945,-0.1108612,-0.086828575,0.015428112,0.37130144,-0.36840317,-0.6193815,0.013520222,0.34964234,0.46797693,-0.016570369,-0.09526897,-0.2403953,-0.30700442,-0.30202186,0.1850868,0.14330646,0.2313322,-0.12744525,-0.60184455,-0.311114,-0.1897517,-0.18750317,-0.025552187,-0.5427781,-0.24038744,-0.0575156,-0.66115963,-0.3210028,0.5585062,-0.43421504,-0.02669505,-0.10888757,0.039424498,0.12653463,0.27068678,-0.28022307,0.14216545,-0.08720649,-0.18759878,-0.14182955,-0.2952823,0.3183969,0.051939055,0.14699909,0.32892603,-0.071548834,0.046414085,0.76935196,0.60185236,-0.21510823,1.0922264,0.4632074,-0.009919453,0.11799698,-0.020658858,-0.17681734,-0.6871844,-0.0503755,-0.29472938,-0.53533834,-0.08352104,0.100082435,-0.41620815,-1.0148411,0.5608891,0.15129124,-0.07242871,0.14039114,0.3525844,0.35790524,-0.04621158,0.039246693,-0.23681849,-0.3371926,-0.46652144,-0.3433066,-0.832888,-0.30069587,0.14700437,1.1791921,-0.32087544,0.194908,0.061669275,-0.16349524,0.048522923,0.13995603,0.005411675,0.2857786,0.4014242,0.035926737,-0.47577098,0.3603515,-0.2326805,0.07100027,-0.6356642,0.232733,0.61427546,-0.79813373,0.42562735,0.40535083,-0.0108137615,0.024278838,-0.7335507,-0.29761994,-0.011774559,-0.1767288,0.5207139,0.23374255,-0.96266717,0.54055804,0.28344434,-0.22774762,-0.7422923,0.36800683,-0.17656633,-0.19204037,-0.021224352,0.26830417,-0.049908385,0.028196167,-0.23894912,0.122526355,-0.38831088,0.40106437,-0.029259672,-0.20603308,0.26995432,-0.106400795,-0.0016636115,-0.89144367,-0.11376064,-0.6409396,-0.20195073,0.39008886,-0.029147752,0.03981232,-0.018571189,0.20410262,0.45910007,-0.32175812,0.117840394,-0.44582698,-0.36553735,0.640926,0.5760117,0.47295552,-0.31287748,0.5254865,-0.09113913,-0.084633,-0.31130183,0.22655572,0.4017731,0.07035808,0.36720133,-0.08109457,-0.21328834,0.10681209,0.8222581,0.20479801,0.2105342,0.023614787,-0.06798342,0.2422631,0.05818101,0.14339264,-0.19448288,-0.55265284,-0.023345493,-0.42977995,0.1646367,0.5477828,0.24539311,0.45314205,-0.15764305,-0.22953017,-0.0666232,0.24166647,0.30873543,-0.8712771,0.46808916,0.14621775,0.3983362,0.68232447,0.16071132,0.012243862,0.62005687,-0.076546624,0.22112466,0.1995174,-0.032534745,-0.3838474,0.41963392,-0.7727794,0.3432981,-0.05280649,-0.048464578,0.3590904,0.013267613,0.45505187,1.0092162,-0.035512384,0.20746034,0.040938117,-0.16202904,0.18804106,-0.33175847,-0.052722856,-0.48955253,-0.5040999,0.61346656,0.40764326,0.5966015,-0.20201008,-0.106998056,0.058422275,-0.15520594,0.28678086,-0.03456235,-0.059376523,-0.24480905,-0.49011052,-0.09116945,0.5391846,0.041700702,0.11074129,0.028723657,-0.007780882,0.49609888,-0.020845817,-0.043699466,-0.18785235,-0.6433734,-0.028232204,-0.41568437,-0.270284,0.59200656,-0.1956065,0.32281584,0.175514,0.05825076,-0.20422564,0.32609308,0.16223475,0.7222162,0.09804832,-0.23687671,-0.2720502,0.0899375,0.19966528,-0.28751692,-0.16840135,-0.29011595,0.005844162,-0.7892783,0.26821136,-0.29610398,-0.21074031,0.301984,-0.0670424,0.019917719,0.49736512,-0.11377736,-0.25380978,0.08409012,0.015237863,-0.281994,-0.42648834,-0.30537716,0.1147242,-0.084779516,0.015597921,-0.044456463,-0.20141497,0.05853174,0.26068056,0.09222668,0.15389329,0.20305167,0.35295933,-0.3116711,0.1044053,0.2614708,0.61915904,-0.075927325,-0.027043384,-0.31737417,-0.18201311,-0.2727854,-0.02357812,-0.051239647,0.4534243,0.1845418,-0.23117863,0.8285692,0.0075046006,0.75508314,-0.08075702,-0.19045022,0.09589006,0.50001913,-0.014189113,-0.2002666,-0.25715658,0.75909203,0.7133845,-0.114405684,-0.08553735,-0.53642213,-0.21318942,-0.014479348,-0.30988201,-0.1817453,0.013044215,-0.76919544,-0.21397766,0.14561656,0.17300566,0.10762089,-0.18740067,-0.057519324,0.122686386,0.12728333,0.02561493,-0.4000721,0.06162371,0.1708501,0.19612479,0.022323979,0.18958451,-0.49431655,0.2704901,-0.49366072,0.09102298,-0.27944085,-0.017380165,-0.18272002,-0.27133548,0.12285599,-0.026300251,0.27345043,-0.20106035,-0.30281267,-0.19684808,0.4402264,0.315366,0.25484616,0.76595074,-0.30912465,-0.062282316,0.013234879,0.59480995,0.9385453,-0.4393257,-0.09543034,0.5042484,-0.32852352,-0.533451,0.050657757,-0.36341682,0.029272325,-0.06532153,-0.32424673,-0.24201521,0.33834013,0.0017657166,-0.14272335,0.04435271,-0.64740986,0.11562784,0.050368402,-0.17995375,-0.157181,-0.20797521,0.14512393,0.67089623,-0.39927924,-0.46588933,0.07021011,0.10876794,-0.10222844,-0.47616732,0.088450365,-0.39757535,0.24090873,0.19564992,-0.3603348,0.035845462,0.0015256542,-0.524374,0.032496914,0.13410585,-0.28126246,-0.060425382,-0.327956,0.06882454,0.84428877,-0.045538142,0.11027778,-0.23940231,-0.5164869,-0.6474997,-0.16177852,0.18099913,0.13165952,0.0067371484,-0.49494222,-0.034859076,-0.18481919,-0.17445841,-0.17422372,-0.39500573,0.61979395,-0.025803594,0.321948,-0.24815321,-1.1185145,0.31347054,0.1775061,-0.23956618,-0.5120811,0.49051157,-0.18952414,0.96491444,0.11611735,0.09881732,0.2674592,-0.6659114,0.11540366,-0.32536426,-0.27558237,-0.55728483,-0.0557287 +228,0.47886398,-0.19752581,-0.59770036,-0.08005032,-0.38711196,0.059901755,-0.29893747,0.0883544,0.4083397,-0.1826593,-2.8488728e-05,-0.058994785,0.058295663,0.4649418,-0.07667816,-0.80334485,-0.019886823,0.07250383,-0.7447606,0.73905087,-0.364467,0.22849448,0.0038479657,0.49923393,0.22004208,0.42403692,0.3128613,0.16269387,-0.106950395,0.06711844,-0.09260626,-0.17418225,-0.7453964,0.20985621,-0.22752164,-0.42176068,-0.17062703,-0.4812923,-0.35371134,-0.78725123,0.34854904,-0.8830366,0.3811514,-0.17822559,-0.27684137,-0.028801877,0.13644348,0.2587336,-0.2859394,-0.13828447,0.2757975,-0.4113692,0.02472149,-0.16462046,-0.3066668,-0.50522697,-0.51718533,-0.090524554,-0.45573,-0.27566513,-0.19995672,0.24481949,-0.27086586,0.031141588,-0.3836373,0.41971308,-0.417625,0.04913124,0.37188143,-0.38354412,0.20185944,-0.4991431,-0.17927231,-0.11650972,0.07330895,0.21368074,-0.16660868,0.3721257,0.091551885,0.43021268,0.23649234,-0.29326597,-0.34861806,-0.09273617,0.3307829,0.45818424,-0.00737331,-0.0903465,-0.35529807,-0.39274108,0.08054546,0.24873048,0.06926347,-0.42161736,0.19521178,-0.0048868796,-0.07863916,0.3718283,0.48977235,-0.2660379,-0.20064057,0.22740373,0.5138901,0.111686304,-0.40986758,0.13851728,0.010935539,-0.28465855,-0.29507986,0.349411,0.030419676,0.5995435,-0.078560844,0.2549452,0.7154538,-0.045277156,-0.05570484,-0.26010698,-0.09180936,-0.117893346,-0.5426208,0.05220533,0.3802386,-0.54659104,0.33202484,-0.32090524,0.5354751,0.1818095,-0.6704291,0.38630503,-0.60264146,0.15246776,-0.010211174,0.556747,0.71736825,0.3972187,0.11434233,0.9448987,-0.40072492,0.06570163,0.05140659,-0.23820694,-0.037541136,-0.22082637,0.5252831,-0.4498656,0.14158954,0.040111654,0.07346987,-0.012713075,0.20624296,-0.15343955,-0.22928485,0.024780402,0.85056233,-0.25174963,0.06725286,0.9276208,1.1438197,1.0578816,-0.08031095,1.3174752,0.39730108,-0.27785963,0.017505554,-0.19713587,-0.6932175,0.045673314,0.30555105,0.4849425,0.32045534,-0.0018793253,-0.113654904,0.47518376,-0.16549365,0.13469185,-0.034724686,0.024965078,0.097374715,0.009059759,-0.39253664,-0.35679862,0.09465651,-0.0015480518,-0.17723306,0.2961627,-0.09207019,0.67366517,-0.08019309,1.286106,0.06511723,0.13598795,0.102377616,0.63305336,0.21307868,-0.28695473,-0.027244912,0.20537768,0.18903807,0.099459775,-0.4518631,0.12384743,-0.46875408,-0.5870832,-0.10347082,-0.48571905,-0.104831494,-0.0014636058,-0.48875183,-0.28455836,0.02566592,-0.25612992,0.3114486,-2.4351556,-0.09129203,-0.24385346,0.22303008,-0.3689882,-0.100933,-0.22114347,-0.5825672,0.27846402,0.4104937,0.5371611,-0.556176,0.40964955,0.41305843,-0.50331146,0.08967542,-0.54800713,0.010955735,-0.066692226,0.4507327,-0.06606059,-0.13832003,-0.07405259,0.2541601,0.8436681,0.21077076,0.030000338,0.3352345,0.40035424,-0.24183017,0.44745725,0.032181546,0.47267196,-0.47633892,-0.14712438,0.4510818,-0.5551428,0.4249542,0.067692645,0.24942707,0.62383497,-0.5125812,-0.7882072,-0.6726582,-0.41123036,0.99471843,-0.33756235,-0.7178242,0.33092144,-0.12838612,-0.14433195,0.10447465,0.67786896,-0.044465225,0.15776429,-0.46036005,0.015488678,-0.086407185,0.26177436,0.02511426,0.109605536,-0.3169632,0.8617194,-0.11923694,0.48076814,0.2608885,0.24420485,-0.10631265,-0.3268759,0.12652113,0.6204064,0.41664836,0.15392978,-0.08241368,-0.121198945,-0.24679483,-0.44969383,0.10138574,0.74142194,0.62018734,-0.12394642,0.1347399,0.376929,-0.26718032,-0.053818308,-0.06443748,-0.4221512,-0.15690756,0.15214403,0.38566494,0.84207475,-0.05929319,0.24266097,-0.17115323,0.34040943,-0.16271535,-0.5577646,0.469334,0.6367211,-0.12620698,-0.11740981,0.5680514,0.42412314,-0.50927544,0.47213942,-0.5262124,-0.41107467,0.644692,-0.036712885,-0.57526743,-0.08934139,-0.3030569,-0.056158945,-0.72745633,0.05418724,-0.28131846,-0.54556745,-0.38331082,-0.1549748,-3.953833,0.221496,-0.16018263,-0.16377082,-0.34596178,-0.06797177,0.27307895,-0.59424883,-0.5419603,0.099471614,-0.008191425,0.69683796,-0.04410765,0.21287963,-0.41607797,-0.059417907,-0.5216165,0.43048877,0.061595403,0.3533377,-0.28252247,-0.3243003,-0.12402133,-0.20683649,-0.6862136,-0.05097021,-0.7012343,-0.35004717,-0.28274506,-0.39955872,-0.47060782,0.60572064,-0.34351444,0.059813935,-0.31494066,-0.11282912,-0.2642566,0.4360256,0.4267775,0.2958656,0.195549,0.026316,-0.30278835,-0.3312244,0.015742756,0.12386895,0.30226517,0.47724703,-0.19495371,0.19492254,0.35118052,0.69266516,-0.05217347,0.81509584,0.061309136,0.061495826,0.61564755,-0.22635563,-0.3660348,-0.78588176,-0.19750205,-0.16780451,-0.33137527,-0.5812682,-0.12808274,-0.4023153,-0.7593956,0.3960373,0.33538005,0.36997747,-0.036098134,0.04689568,0.32132527,-0.26617417,0.09190002,-0.0989103,-0.09723937,-0.6886638,-0.4484838,-0.7016522,-0.7856216,0.17056957,0.82418376,0.056229673,-0.30287132,0.13032189,-0.59732324,0.14736381,0.37317145,0.124780305,0.077855915,0.433668,-0.01245379,-0.73478264,0.68956214,-0.08378412,-0.08827799,-0.5258386,0.11282542,0.6328615,-0.540331,0.8186339,0.18480158,0.34282777,-0.21632811,-0.45527872,-0.2839704,-0.167234,-0.16595769,0.4930186,0.3154434,-0.78858626,0.29175436,-0.00660074,-0.1128114,-0.65229416,0.3617391,-0.04114971,-0.10232261,-0.014932708,0.48973578,-0.04506245,-0.14333403,-0.012523023,0.11456004,-0.6527176,0.15111922,0.37854058,0.08677408,0.5087572,0.038090475,-0.35897747,-0.5845813,0.11820744,-0.45735458,-0.08492343,0.2820649,-0.026739923,-0.073087424,0.18236841,0.09140952,0.3162133,-0.08430934,0.29308653,-0.2092686,-0.39508897,0.49146557,0.4603644,0.30261192,-0.668733,0.682583,0.09417284,-0.25079566,0.045671824,0.1631121,0.4434075,0.39506647,0.48150724,-0.09130604,-0.19148037,-0.1396612,0.5514442,0.21516408,0.52839893,0.1145624,-0.24105461,0.5353019,0.12957016,0.15128665,-0.13576618,-0.5452459,0.08056274,-0.1917232,0.19499095,0.33505931,0.024200954,0.38871014,-0.045763496,-0.084269196,0.21506213,-0.045437768,-0.23664075,-0.9891561,0.1954808,0.25657013,1.0541995,0.5751865,-0.14185348,-0.19077028,0.6455196,-0.17931761,0.11927566,0.34960228,0.01062152,-0.4451291,0.82827,-0.53557086,0.42032677,-0.12753932,-0.14928065,0.31227362,0.37840447,0.5664047,0.6818311,-0.34436625,-0.031772457,-0.0469945,-0.26172787,0.11640398,-0.21552141,0.26074868,-0.47359398,-0.51176846,0.6059549,0.38016045,0.3886296,-0.46427897,-0.06737652,-0.1290308,-0.08254301,0.39523715,-0.08923002,-0.08337128,-0.067826204,-0.5794367,-0.3736601,0.56317246,-0.49014428,0.0679984,0.15178153,-0.38330808,0.080583066,0.07433749,-0.03839933,0.008472633,-0.801673,0.23597635,-0.23667833,-0.5590258,0.4078118,-0.3134876,0.2634251,0.21734264,-0.061343588,-0.36696413,0.17248455,0.021571279,0.8796,0.10608979,-0.05408395,-0.3475917,0.010322868,0.37383237,-0.3462622,0.12192563,-0.26751432,0.0011079862,-0.50753057,0.62195265,-0.16985711,-0.2411634,0.04889472,-0.14776513,0.07639157,0.6155093,-0.1820054,-0.22058049,0.0025339127,0.2538708,-0.49196783,-0.14364323,-0.29913628,0.28704798,-0.034908894,0.10331377,0.062174123,-0.0803736,0.097288445,0.27821398,0.062156614,0.20591627,0.26668102,-0.17290193,-0.4801052,0.18634082,0.09031057,0.31912452,0.28249872,-0.010932698,-0.14100444,-0.40585047,-0.35155517,0.44633704,-0.024335463,0.31749243,0.10243408,-0.28812826,0.7870028,0.06931657,1.2172611,0.12736546,-0.3757916,0.20482804,0.387909,-0.023653595,0.0042760004,-0.38387984,0.8190582,0.50769985,-0.29063195,-0.054117646,-0.3435807,-0.070966214,0.2375084,-0.17122306,-0.13454643,-0.14481094,-0.7593342,-0.035531554,-0.004342086,0.33874562,0.15532112,-0.16050003,-0.143996,0.09735355,0.15622279,0.38567117,-0.4235873,-0.22899406,0.48636845,0.02091986,-0.055386372,0.23273812,-0.17882036,0.4039804,-0.7409059,0.31399724,-0.6363518,0.0847691,-0.08748135,-0.37433514,0.12657279,-0.03513398,0.5602849,-0.30894846,-0.30567294,-0.34643155,0.674469,0.40553644,0.37598947,0.8394629,-0.06917185,-0.111273736,0.10249719,0.55986917,1.1823289,-0.19688429,0.06406306,0.25380284,-0.31670564,-0.7451801,0.2579904,-0.24580553,0.14705849,-0.17280857,-0.36109352,-0.4489201,0.039743207,0.18653867,-0.297698,0.057306305,-0.65979004,-0.17838383,0.22993279,-0.34488663,-0.2756262,-0.4678333,0.29290205,0.6097057,-0.21624914,-0.26032576,0.1991243,0.14483912,-0.25921634,-0.5252773,0.069278,-0.27290386,0.38421646,-0.085533306,-0.55210876,0.050873574,0.4223842,-0.5771518,0.09029606,0.1446544,-0.40725982,0.015656697,-0.22477102,-0.20187269,1.1998652,0.12294258,0.116056405,-0.66661704,-0.6019092,-0.8653611,-0.7249874,0.12580062,0.18961906,0.013842881,-0.32840124,-0.18206605,-0.32882383,0.19166748,0.07825298,-0.57432973,0.38976303,0.15587664,0.5563862,-0.1132605,-0.85056084,0.2377456,0.24066666,-0.12671718,-0.37304705,0.39299348,-0.24498051,0.6510277,0.078532256,0.00892677,0.123113245,-0.5781753,0.31700188,-0.3069775,-0.24785246,-0.5389418,0.21916543 +229,0.41386852,-0.46429324,-0.30077338,-0.40011406,-0.27096158,0.0229173,-0.25464663,0.37066412,0.47176045,-0.16975972,0.10139263,-0.21862416,-0.037415046,0.5900839,-0.22488663,-0.9165595,-0.054773666,0.071173936,-0.6322956,0.5149453,-0.48383817,0.03000093,0.027740855,0.428856,0.034117162,0.06680885,0.20798627,0.110737205,0.2684332,-0.23675565,-0.15086,0.22840425,-0.8324685,0.38198853,0.022463301,-0.40425944,0.0057462426,-0.49031916,-0.23040166,-0.9178146,0.5004657,-0.95763314,0.6380294,0.04492875,-0.3850885,-0.20560579,0.4854308,0.3175209,-0.36022735,0.08240766,0.3429917,-0.34179506,-0.12026085,-0.105397,-0.6915101,-0.79122275,-0.89965093,-0.03833178,-0.58064103,-0.23087159,-0.27660623,0.43010482,-0.3930313,-0.0010015636,-0.35733482,0.6766404,-0.4484709,0.07616518,0.30982348,-0.23236163,0.4796098,-0.48828062,-0.25854725,-0.14214592,-0.12227478,0.060907733,-0.6017867,0.35832077,0.68863577,0.42428797,0.15568799,-0.29595843,-0.3715062,-0.118696906,0.020898039,0.55539066,-0.2128819,-0.5689518,-0.35266054,-0.010521573,0.5197395,0.5483093,0.20347229,-0.581495,0.25143614,0.021472951,-0.24636273,1.0204803,0.51507956,-0.33569008,-0.36764747,0.2113039,0.2324349,-0.23901984,-0.33393317,0.25767392,0.11052247,-0.533507,-0.19575796,0.5898758,-0.28313276,0.48359722,-0.25405362,-0.07269581,0.830664,-0.3871768,-0.295479,-0.07640858,-0.0641388,-0.0043500187,-0.46870786,-0.31320834,0.27423546,-0.45970282,-0.043906845,-0.42646924,0.8325731,0.047435593,-0.8915334,0.08107183,-0.6202103,0.27243027,-0.2313383,0.8029974,1.0132434,0.6799392,0.6694621,0.9272326,-0.4630031,0.16669452,0.22624417,-0.3495552,0.13447425,-0.49414596,0.11835875,-0.4638432,0.089128755,-0.26356727,-0.16380104,0.05875539,0.7211327,-0.43872756,-0.13800947,-0.015769884,0.9039469,-0.36877084,-0.14409478,0.97139645,1.0920933,1.0813862,0.34411678,1.2518361,0.40242243,-0.13706432,0.40678686,-0.2259285,-0.8154572,0.251957,0.2772511,-0.39187965,0.33691064,0.01485883,0.21431693,0.45614552,-0.43216935,-0.17649272,0.049060266,0.2812456,0.2422318,-0.2678992,-0.408233,-0.2222888,0.19426537,0.10224466,0.017280335,0.20759034,-0.27791774,0.65881044,0.2856446,1.048759,0.046885524,-0.124217175,-0.007832527,0.59379274,0.08389328,-0.23374347,0.23793045,0.26135033,0.4860517,-0.031700917,-0.80859727,0.2184391,-0.34001946,-0.34096965,-0.30008295,-0.48195633,-0.014392158,-0.31367865,-0.25639245,-0.40733337,-0.2684784,-0.2032021,0.41663426,-2.1329312,-0.09506868,-0.2331613,0.3863709,-0.04908865,-0.076143645,-0.14036036,-0.6766952,0.42674765,0.5282952,0.37999257,-0.86670905,0.41315213,0.46531686,-0.58205664,-0.024300952,-0.9791298,-0.08325334,-0.34278235,0.39133546,0.02960509,-0.16182545,-0.22204804,0.20475137,0.7993506,0.2730674,0.24673471,0.2847814,0.69742405,-0.264479,0.66098344,0.05702739,0.5179009,-0.20923099,-0.13216272,0.13469233,-0.7406054,0.12519534,0.18792653,-0.08665085,0.7485794,-0.6841513,-1.0789635,-0.7676775,-0.49625808,1.1015295,-0.47007942,-0.58561856,0.39996845,-0.1216799,-0.2483222,-0.08137617,0.7454161,-0.39405358,0.18700895,-0.794295,0.030828407,-0.021363974,0.4396797,-0.13539878,-0.022407765,-0.22070317,0.7150909,-0.284518,0.5029503,0.18744947,0.04821049,-1.0165603,-0.7539056,0.13436285,0.8082778,0.32414192,-0.02274453,-0.15249786,-0.38228345,-0.076850094,-0.3818892,0.03230728,0.72121036,0.6654603,-0.2511689,0.09545872,0.6035019,-0.5199424,-0.031937283,-0.12517133,-0.40807754,-0.23672327,0.13217965,0.59266144,0.6554983,-0.16718537,0.27408254,-0.18791012,0.40149552,0.011090897,-0.51611805,0.6073986,1.3549244,-0.106419325,-0.33495706,0.6154068,0.4678318,-0.61021304,0.5117138,-0.48454323,-0.18029526,0.69852704,-0.031573806,-0.68754005,-0.20353742,-0.4523743,0.0017671495,-0.98745805,0.45599723,-0.30487853,-0.66674197,-0.6168047,-0.27392942,-3.8737125,0.09472289,-0.26662454,-0.17335004,-0.44608036,-0.06069987,0.3804941,-0.47587585,-0.69562435,0.211885,0.25389767,0.39755583,-0.060745668,0.24225,-0.45035404,-0.011780572,-0.4219101,0.32874203,0.26715595,0.37703538,0.05167999,-0.38470626,0.17085212,-0.0912507,-0.6575231,-0.014521575,-0.87981856,-0.7310592,-0.19432887,-0.9507133,-0.46509796,0.7137991,-0.4776217,-0.14260791,-0.32621473,0.09522605,-0.11981708,0.6251191,0.16614266,0.24191932,0.07604716,-0.09411474,-0.2164135,-0.13661651,0.2693429,-0.06161341,0.46994948,0.162936,-0.10995315,0.38793534,0.676973,0.68728864,0.14235607,0.9056031,0.45905384,-0.029049207,0.30012983,-0.13897288,-0.3094735,-0.78459907,-0.3084461,-0.0893649,-0.46427822,-0.25829792,0.0026075006,-0.33936492,-0.8143419,0.5143764,0.1490613,0.22740635,-0.043618537,0.41548428,0.26222923,-0.009911758,0.2251577,-0.120074704,-0.37828603,-0.6292826,-0.5238887,-0.7190596,-0.6786054,0.3776976,1.1166369,0.1153592,-0.27694097,0.10807333,-0.3367401,0.023654163,0.45563594,-0.07625925,0.30896968,0.46548238,-0.08970429,-0.7266838,0.41965732,-0.041072886,0.10002051,-0.7804597,0.15684307,0.7353546,-0.6609158,0.7898674,0.21334167,0.29762426,-0.40282845,-0.5462657,-0.39195698,0.16294307,-0.1766897,0.6295501,0.26522088,-0.85403764,0.6173032,0.19321117,-0.2296752,-0.63502234,0.32540607,-0.21427381,0.03400681,-0.071651116,0.42252642,0.33596808,0.0016709536,-0.31005913,0.44276938,-0.5216876,0.12301606,0.07967057,-0.035314582,0.29702097,0.07234206,-0.21329018,-0.87577426,-0.06542956,-0.67652655,-0.256638,0.09541844,-0.12949638,-0.020406682,0.34497696,-0.06970744,0.38038006,0.15027995,0.18056433,-0.18320742,-0.28079244,0.1877563,0.600561,0.41049784,-0.42925835,0.73226655,0.26085466,-0.08595599,-0.08771132,0.049709283,0.4441308,0.3718134,0.5804882,0.17186694,-0.32439527,0.11196437,0.80360794,0.09244353,0.5830904,0.10214529,-0.093476966,0.5787635,0.19438972,0.24484459,-0.18938231,-0.5345689,-0.093165904,-0.25204438,0.16314285,0.5744505,0.1252974,0.5162362,-0.09354305,-0.1935369,0.13765085,0.22022445,-0.34324592,-1.5179336,0.22603497,0.41594929,0.746112,0.61865973,0.040141366,-0.09954812,0.76536715,-0.4097678,0.011849415,0.73817384,0.34000984,-0.30847943,0.67330354,-0.70375735,0.4629911,-0.37823516,0.14963162,0.060001813,0.528074,0.27034396,0.96982497,-0.10086347,-0.009838295,-0.03522265,-0.2573992,0.4340089,-0.45529142,0.21483925,-0.29892868,-0.45044184,0.70972323,0.30244297,0.4147707,-0.14725909,-0.060858995,0.2349782,-0.055847026,0.11448836,-0.2084606,-0.5774783,-0.12025305,-0.6794348,-0.17128138,0.6601659,0.15288796,0.17302242,0.23215458,-0.3921873,0.19384038,-0.027410025,-0.3264513,-0.045998167,-0.7042813,-0.29893923,-0.10749736,-0.4844831,0.5547314,-0.56080294,0.23596077,0.31658912,0.08067779,-0.512714,-0.080154456,0.28971398,0.6997427,0.008229929,-0.16413327,-0.1731073,-0.25262815,0.20863397,-0.47745448,0.17066434,-0.24199545,0.11055714,-0.5823732,0.6047736,-0.18787995,-0.6851428,0.03161625,-0.14754276,-0.047744613,0.50824213,-0.40677696,-0.17209436,0.22776763,-0.15243629,-0.09915459,-0.33448574,-0.30847225,0.53948456,-0.19167486,0.043671153,0.07578496,-0.19843672,-0.09389223,0.596528,-0.09559539,0.30453172,0.38509095,0.27848646,-0.21275052,0.12783217,-0.13521159,0.66770315,0.15160416,-0.31060132,-0.07954671,-0.23648436,-0.2777825,0.14442748,-0.07851167,0.40021738,0.038089402,-0.9021614,0.8170813,0.0742661,1.348778,-0.043875176,-0.7415315,-0.037483603,0.6554303,0.04752346,0.020634968,-0.33218542,0.8585461,0.7100004,-0.22976366,-0.19960587,-0.6767022,-0.21516538,0.38718742,-0.32237187,-0.2412359,-0.10985397,-0.9380187,-0.122114226,0.22705114,0.12148607,0.095113985,0.008826489,0.13968854,0.043177307,0.0389872,0.5148423,-0.6278128,0.34093744,0.17119794,0.5023615,0.16700095,0.040095888,-0.31592387,0.19235268,-0.6627201,0.32869163,-0.5263123,0.22722778,-0.19085726,-0.2745791,0.17798905,0.0015220642,0.34212255,-0.03263779,-0.12246553,-0.13254032,0.9252361,0.23137864,0.49982262,0.9494211,-0.2793214,0.03841998,0.20947978,0.66050303,1.7678852,-0.18104331,-0.023986463,-0.13129947,-0.4696319,-0.7485589,0.45868626,-0.48144847,0.003816846,0.16034117,-0.33991545,-0.25216365,0.15504497,0.1672703,0.07899471,0.18862909,-0.45245904,-0.4148644,0.38599166,-0.38884968,-0.30003667,-0.17599279,0.3083295,0.7264096,-0.18487045,-0.3880794,0.059961896,0.3480347,-0.15336542,-0.5045363,-0.115111396,-0.41951767,0.46790257,-0.047932822,-0.46406382,0.111832164,0.08875017,-0.48416686,0.25166246,0.22584641,-0.30107313,0.21295612,-0.09623488,-0.12302933,0.89197075,0.038057238,0.20550999,-1.0664282,-0.4917062,-0.92977464,-0.14566368,0.25909513,0.23215461,-0.17945243,-0.71551687,-0.24677905,-0.027542844,-0.13864572,0.19323973,-1.07624,0.53703773,0.13903566,0.6978451,0.08007118,-0.8228801,0.012663543,0.31351677,0.11402744,-0.6934551,0.6259011,-0.25143355,0.83225834,0.06309907,0.19709647,0.100820675,-0.47270852,0.24648246,-0.25020412,-0.5103598,-0.66710836,0.06898245 +230,0.46819553,-0.23432639,-0.4982405,-0.15851773,-0.23801748,0.03845964,-0.17643435,0.34395522,0.29914206,-0.51332366,-0.13633005,-0.2848968,-0.02606486,0.18423022,-0.12730289,-0.5764701,-0.048734777,0.078343384,-0.4655056,0.49130383,-0.36396292,0.23546752,-0.00032781702,0.3085356,0.10411072,0.3397029,0.008640981,-0.24222156,-0.067944475,-0.3105406,-0.024651399,0.1238456,-0.5690147,0.29159927,0.013436879,-0.18151543,-0.008496855,-0.41919613,-0.44917727,-0.79257256,0.15498385,-0.8796793,0.43623045,0.09781361,-0.31143156,0.19277875,0.1987318,0.38741687,-0.12283766,0.06409318,0.38073984,-0.10350637,-0.05518083,-0.09299125,-0.112109,-0.56029147,-0.5635162,-0.14551659,-0.28198424,-0.22075741,-0.3979502,0.10242139,-0.330821,-0.16659178,-0.13195434,0.57878214,-0.48597234,0.21623707,0.23804785,-0.15740465,0.6729292,-0.4637178,-0.16972198,-0.16565564,0.25881055,-0.23339452,-0.25207365,0.20546107,0.37789822,0.19873276,0.018595705,-0.107012115,-0.25028595,-0.0146334935,0.346869,0.5296219,-0.08261984,-0.3349891,-0.06379304,-0.00088950567,0.042438287,0.23798871,0.14884447,-0.4787689,-0.14405362,0.09863878,-0.22059932,0.45413813,0.44977817,-0.10264613,-0.16320145,0.30692267,0.44422722,0.17409499,-0.20781355,0.05424822,0.06560521,-0.47730085,-0.16039796,0.07970171,-0.2565418,0.43240842,-0.25806642,0.17694858,0.79418117,-0.25258985,-0.066192865,0.11300218,0.0016385956,-0.0954288,-0.23514673,-0.2427787,0.22494258,-0.48611543,0.21544483,-0.06319632,0.6481255,0.08698566,-0.67549604,0.28593847,-0.60336125,0.014519347,-0.26826423,0.42879158,0.5617199,0.4106076,0.31386283,0.61775535,-0.44382903,0.036265314,-0.11565137,-0.48474863,0.095701836,-0.16892746,-0.036193285,-0.54573566,-0.20006125,0.0011378527,-0.16965704,0.005888943,0.28522775,-0.4992164,0.02471757,0.14537366,0.8678412,-0.28163686,-0.023030391,0.59433454,0.9413331,0.8882713,0.24210525,1.0635949,0.19415805,-0.17889918,0.13236201,-0.27225032,-0.6663535,0.38167104,0.4203516,-0.47904816,0.21635981,0.17600812,0.08164026,0.36075693,-0.30772844,0.18726549,-0.25807545,0.24193771,0.09692663,-0.27856213,-0.34870166,-0.25304326,-0.044660024,0.085738555,-0.011698459,0.13708247,-0.09292233,0.20259799,0.1778778,1.4287864,-0.08348059,0.02094091,0.0281885,0.40568808,0.17708357,-0.17725532,-0.038682323,0.4063873,0.30795723,0.26727593,-0.5882508,0.23302694,-0.05717705,-0.36956766,-0.18082762,-0.29493546,-0.008519639,-0.04094771,-0.39067173,-0.053923257,-0.07267936,-0.2884064,0.4916918,-2.6708882,-0.115876794,-0.17698063,0.3228326,-0.2549129,-0.24953143,-0.05012711,-0.429841,0.43803126,0.26612654,0.4900953,-0.6525877,0.38759735,0.601874,-0.5785771,-0.13577195,-0.5806187,-0.15547787,-0.1505816,0.33431837,0.1360902,0.13581035,-9.289384e-05,0.25611824,0.412623,-0.07396387,0.13688397,0.20318969,0.39606974,0.02327153,0.6439633,0.07593813,0.5362188,-0.023421125,-0.19932756,0.2558927,-0.24022685,0.119170405,-0.06503609,-0.0006051617,0.41637775,-0.28297472,-0.7766285,-0.6959075,-0.5455885,1.130821,-0.16094379,-0.38400102,0.3208835,-0.23855059,-0.41043147,0.040873844,0.37631968,-0.07920524,0.11901874,-0.9440759,0.03251766,-0.13461661,0.21559832,0.07583151,-0.15610948,-0.54559004,0.8029431,0.015204336,0.40640965,0.39364833,0.13778618,-0.28882033,-0.36311024,0.059837904,0.9284616,0.35359997,0.1605099,-0.27725628,-0.16459374,-0.2987767,-0.043456372,0.10888044,0.6401195,0.63545436,-0.15177648,0.14220679,0.17655405,-0.102327295,0.034382146,-0.16383256,-0.28447986,0.011537707,-0.013953532,0.496578,0.5932242,-0.09581301,0.58886445,-0.021792872,0.34361646,-0.100617416,-0.45388848,0.4470763,1.2997888,-0.12747759,-0.33016035,0.57487404,0.49226433,-0.19115397,0.35093215,-0.49671856,-0.15319039,0.41646576,-0.11051881,-0.55868024,0.23949364,-0.408623,0.20883977,-0.794254,0.4013192,-0.41452307,-0.6322616,-0.4562563,-0.114345215,-3.556639,0.2832687,-0.30586967,-0.25808448,-0.058414068,-0.058521155,0.3430798,-0.6181216,-0.6132194,0.23342057,-0.020591814,0.657176,-0.16571438,0.077859156,-0.17523582,-0.0881635,-0.11628522,0.2693185,0.099942006,0.23421578,-0.018161135,-0.5168146,-0.120993204,0.018835735,-0.469613,0.0045587677,-0.57935554,-0.59276456,-0.1032948,-0.516589,-0.25939128,0.5956837,-0.27914882,-0.026238693,-0.11678153,0.022433119,-0.11440546,0.3322997,0.07158553,0.09319173,0.051692903,0.07047156,-0.1274326,-0.22081113,0.32021597,0.12434207,0.25123873,0.26760286,-0.12735906,0.18283455,0.49375233,0.5964312,-0.094396584,0.82965887,0.38657364,-0.20596111,0.24027827,-0.32546785,-0.25795937,-0.5659382,-0.33990055,-0.023446733,-0.35715994,-0.58341736,-0.087160006,-0.36221415,-0.69252545,0.5641063,0.06869026,-0.045956858,-0.08517753,0.06283411,0.3402322,-0.07330652,-0.061190136,-0.034782495,-0.15470357,-0.61039066,-0.19045356,-0.4810264,-0.36481673,0.010341917,0.9265138,-0.224147,0.08779146,-0.050442774,-0.3100069,-0.018091304,0.17417237,-0.10835803,0.11037034,0.43440074,-0.016407505,-0.6495365,0.45568997,-0.082732774,-0.14115125,-0.6878562,0.2929921,0.8820982,-0.5917694,0.6657662,0.30534878,-0.028626125,-0.24420418,-0.43268707,-0.25719923,0.017756948,-0.34882355,0.5135717,0.094802335,-0.6875998,0.3465539,0.434717,-0.23598203,-0.61435384,0.6988843,-0.14953025,-0.25120267,-0.043141734,0.31695843,0.025115864,0.11431607,-0.12866256,0.40279537,-0.2339985,0.23250858,0.3002796,-0.056033585,0.12966983,-0.07221157,0.074292734,-0.8327809,-0.07290394,-0.34794062,-0.31832156,0.2234127,0.04414395,0.02889216,0.3836858,0.013387867,0.3338221,-0.23570575,0.08970316,-0.15212579,-0.27824092,0.24710621,0.4173879,0.3921793,-0.3853361,0.5849659,0.08494788,-0.064973466,-0.12330585,0.058555756,0.50591505,0.09258066,0.5158414,-0.13201514,-0.14422236,0.41667634,0.84558296,0.12944277,0.6392292,0.08044902,-0.08121427,0.112155505,0.075849704,0.3600607,-0.09539253,-0.64923626,0.07770772,-0.3391864,0.18469821,0.35890156,0.16547404,0.18810534,-0.041090112,-0.42347616,0.0026958287,0.21962357,0.21050282,-1.2542344,0.53388596,0.3611886,0.7167539,0.45646566,-0.022204487,0.10576703,0.69006383,-0.22909978,0.079418175,0.3072453,0.059372433,-0.49524823,0.3764794,-0.8951066,0.28559357,-0.020370629,-0.13089488,0.010710475,-0.0757785,0.38167238,0.822528,-0.17778675,0.05990495,-0.028092671,-0.33996576,0.25212297,-0.432882,0.10883957,-0.55304015,-0.43463722,0.59374374,0.66097695,0.39326254,-0.111978345,0.12843072,0.08820623,-0.081258416,0.12792377,0.22317769,-0.018813714,0.08504838,-0.7956194,-0.124741614,0.4672866,-0.07621292,0.17804496,-0.087205715,-0.17103942,0.25023586,-0.21312821,0.11625482,-0.074545845,-0.7431428,-0.11238809,-0.29681155,-0.40031686,0.36068243,-0.09844393,0.23359366,0.10218757,0.027618289,-0.057015877,0.35461193,0.18262336,0.6665083,0.13259266,-0.012597288,-0.3660365,0.14926669,0.11617152,-0.11298212,-0.1406493,-0.33870634,0.039325632,-0.5886845,0.34292886,-0.03837459,-0.46470788,0.16272333,-0.16383243,0.0034146372,0.56690675,-0.15682782,-0.28544194,0.08507885,-0.25569376,-0.07806657,-0.11785651,-0.06553338,0.34964642,0.24739303,0.05403306,-0.11153988,-0.045584355,-0.2981582,0.35993034,0.11319191,0.5716443,0.41886696,0.017860148,-0.26060745,-0.20568107,0.061454695,0.5437133,-0.06476797,-0.048120983,-0.13449405,-0.49462166,-0.27331987,0.13846005,-0.04567793,0.32590935,0.11771437,-0.17912172,0.6572362,-0.11885928,1.0950196,-0.0016370484,-0.38598093,0.08505237,0.3469155,0.016768511,-0.09245255,-0.3873086,0.8239737,0.5706436,-0.12128995,-0.11667763,-0.42636395,-0.07750968,0.095820524,-0.10692873,-0.021426065,0.055620916,-0.6989015,-0.2614395,0.20109543,0.20004319,0.023095505,-0.04040763,0.039310984,0.26481804,-0.04544127,0.24348958,-0.5544523,-0.09903814,0.2643283,0.29080248,0.03470854,0.0359028,-0.4572359,0.40650907,-0.3700808,0.1891063,-0.20510732,0.1518068,-0.3070727,-0.11446155,0.18901196,-0.061805874,0.36513472,-0.29654196,-0.2955263,-0.15230587,0.5355627,0.026139885,0.0742423,0.5664476,-0.24910317,0.20879105,0.17783655,0.54031247,0.8386187,-0.35766008,0.09687376,0.46094283,-0.465672,-0.51828754,0.2936232,-0.23580456,0.08793068,0.117794864,-0.3356131,-0.49058598,0.30660656,0.09455912,0.01143051,0.067021936,-0.5369587,-0.092066355,0.32126394,-0.35061333,-0.2762847,-0.27285573,0.19332215,0.5502429,-0.33479697,-0.34936434,0.056960285,0.13773371,-0.28621414,-0.373084,-0.0877172,-0.21791811,0.37559938,0.08769353,-0.3313653,-0.11041661,0.069957815,-0.3641253,0.13369302,0.06531825,-0.28657484,0.0880503,-0.3137079,-0.13438694,0.7391998,-0.3275776,-0.04300597,-0.60831994,-0.39853844,-0.6521292,-0.30259082,0.45917797,0.03725604,-0.011135889,-0.38228217,-0.050293658,-0.028663443,0.003309582,-0.17221086,-0.3166917,0.46833572,0.07686961,0.5043077,-0.08261744,-0.96220857,0.20588358,0.17843989,-0.14906202,-0.79367775,0.61013824,-0.1580684,0.6300333,0.024619158,0.19948377,0.17193387,-0.3891913,-0.03581074,-0.1285831,-0.20030954,-0.7871131,-0.021923143 +231,0.44415584,-0.25978157,-0.36992458,-0.16637297,-0.3478426,0.15238054,0.08399606,0.5977604,0.401767,-0.19049478,-0.17001791,-0.025314676,-0.015675718,0.5357148,-0.19455878,-0.797297,0.18124707,0.06001224,-0.39250198,0.5357175,-0.3217403,0.2915806,0.08085189,0.21970494,0.1258248,0.18506362,0.18532415,-0.013953383,0.123378634,-0.19917822,-0.044787597,-0.05469716,-0.5008761,0.35446584,0.11747851,-0.11447785,0.05645451,-0.3435613,-0.2162873,-0.69836956,0.26447758,-0.76381534,0.5355763,0.056859285,-0.32999614,0.28541026,0.16818672,0.12732154,-0.21860218,-0.12663837,-0.060977295,-0.015721252,-0.105387606,-0.10279518,-0.06444582,-0.50644535,-0.6363112,-0.10770196,-0.45046213,-0.095048666,-0.29445592,0.060224753,-0.39017963,0.062491614,0.056950048,0.5032534,-0.3482124,-0.053813726,0.35632244,-0.1333343,0.15376268,-0.64496845,-0.15184934,-0.06093083,0.2102242,0.17732374,-0.30636427,0.35591665,0.4847208,0.30016172,0.084062554,-0.23771147,-0.18573838,-0.16052873,0.23974757,0.37406287,-0.18403679,-0.48621812,-0.079616114,0.104334705,0.25003836,0.1726209,0.32194534,-0.021371624,-0.11500149,-0.011473765,-0.2969118,0.39371732,0.41331908,-0.4142159,-0.32306758,0.3603342,0.5297809,0.09071136,-0.109571956,-0.029693121,0.03418209,-0.622652,-0.15916151,0.043101598,-0.41363248,0.5483119,-0.24671881,0.10597078,0.7056906,-0.40603533,0.06015518,0.3435935,0.08468017,-0.14096273,-0.27050427,-0.18909656,0.20919293,-0.65431446,0.028943181,-0.26164064,0.8808182,0.23759256,-0.53860635,0.25183377,-0.452983,0.19959815,-0.23404145,0.44832322,0.7055951,0.42458367,0.33127442,0.6690251,-0.3617253,-0.015943313,-0.07514882,-0.37620953,0.29582667,-0.2715862,0.0985887,-0.42341468,0.043128762,0.18821977,-0.35576043,0.10780869,0.11525965,-0.5759937,-0.08627608,0.16059148,0.64966184,-0.12189039,-0.28908634,0.6100387,1.049635,0.8966883,0.11790341,1.1531066,0.11840729,-0.18722998,0.16460092,-0.024903512,-0.6787844,0.25541475,0.3264188,-0.2026885,0.4063824,0.043844555,-0.18347454,0.3135344,-0.45087084,-0.16577844,-0.11501646,0.7316331,0.171848,-0.3440059,-0.4328048,-0.29988816,-0.10759554,-0.0032013655,0.14954163,0.2993635,-0.14358443,0.36317077,0.049014777,1.0246361,0.034547616,0.05075842,0.024872294,0.44766355,0.24679752,-0.039991923,0.18594877,0.32806292,0.19918077,0.2026422,-0.6021698,0.08032017,-0.28499663,-0.4058125,-0.08488295,-0.40726027,-0.16695046,-0.027998766,-0.2886869,-0.3246772,-0.14418332,-0.08774433,0.6272375,-2.8756893,-0.18282808,-0.13265808,0.2859274,-0.21672325,-0.28295985,-0.023170277,-0.5343905,0.25890934,0.4102893,0.44558764,-0.75904655,0.14146884,0.43684697,-0.68572134,-0.17679715,-0.5982806,-0.016261637,-0.062321037,0.4059604,0.16783042,-0.11381904,-0.02942946,0.13090558,0.5227948,0.2502562,0.1280088,0.25982913,0.2511894,-0.2179275,0.3551264,-0.034481853,0.51257277,-0.058123272,-0.100403965,0.17190547,-0.32775322,0.5139641,-0.19115092,0.121690966,0.49695387,-0.16867326,-0.838226,-0.6459903,-0.24725847,1.2507786,-0.12234676,-0.39163938,0.20034629,-0.35110292,-0.22771196,-0.19310355,0.4727697,-0.14947988,-0.0029619138,-0.6148167,0.12206861,-0.027681718,0.049279567,-0.051389158,-0.12387138,-0.34060642,0.78315425,0.05241223,0.4134312,0.22923832,0.113134086,-0.23484047,-0.50122863,-0.057805195,0.6806392,0.5136483,0.08579531,-0.13628997,-0.22889036,-0.34840083,-0.14263915,0.1957674,0.57491976,0.5606833,-0.12339244,-0.05466622,0.17381518,-0.0838133,0.16888912,-0.0020979953,-0.19920643,-0.08836635,-0.0895574,0.50650257,0.815042,-0.35641873,0.32325765,-0.065450296,0.28463995,-0.12987897,-0.47659886,0.63442993,0.7238216,-0.20654309,-0.27542573,0.71200067,0.4194764,-0.27764788,0.4206569,-0.5157291,-0.1879654,0.5609999,-0.071588166,-0.25454426,-0.070726804,-0.3861364,0.0874433,-0.68172383,0.3962098,-0.27818322,-0.42542076,-0.3652295,-0.03939393,-3.1102083,0.100067176,-0.28602692,-0.050246567,-0.22246647,-0.113706194,0.22603814,-0.74428135,-0.5205504,0.27558675,0.076951884,0.69421744,-0.2408792,0.0057095475,-0.19642723,-0.39885107,-0.32926795,0.14327918,-0.15716372,0.2539132,-0.09474663,-0.31658292,0.18099587,-0.021981286,-0.3663561,0.20821619,-0.40002537,-0.58479244,-0.24571443,-0.33743823,-0.19106041,0.7499412,-0.36275566,0.010274221,-0.16589311,0.12589684,-0.1534032,0.25402758,-0.06235603,-0.025209414,0.11444208,0.052430093,0.104538314,-0.32505727,0.6071308,0.032932635,0.54175776,0.48690167,-0.19340579,0.17501317,0.74303466,0.5992057,-0.082113855,0.83233446,0.26662436,-0.19225888,0.38930002,-0.16151245,-0.26644877,-0.27977553,-0.32534453,0.1267299,-0.37985823,-0.2689877,0.021691272,-0.38586846,-0.7056721,0.39240822,0.1047479,0.2632116,-0.14333987,0.21295588,0.5687724,-0.27504823,0.056762308,0.06994007,-0.22364946,-0.7055952,-0.32356718,-0.5766534,-0.2256457,0.3591644,1.0368767,-0.41380283,-0.102225244,-0.11826078,-0.21982253,0.058284253,0.059332747,-0.11097586,-0.18677859,0.21967566,-0.10528479,-0.6653538,0.55317163,-0.1824253,-0.09373786,-0.57780784,0.18764357,0.41592988,-0.5839519,0.34259745,0.4466255,0.045042377,-0.077500455,-0.4920418,-0.121822156,-0.031104423,-0.19664772,0.2436756,0.3640969,-0.79476863,0.37833688,0.34172428,-0.3433967,-0.6250625,0.39323863,-0.07568523,-0.17378087,-0.18488358,0.3087331,0.3566375,0.047795665,-0.1264201,0.13139339,-0.5750465,0.18595624,0.25864384,-0.0034129329,0.41104388,0.18313546,-0.1060131,-0.76947314,-0.022033012,-0.49489534,-0.2155828,0.1604568,0.18046798,0.15603305,0.26150084,0.42015442,0.42123482,-0.35141823,0.13932721,0.013554543,-0.37411404,0.6034557,0.40116405,0.44141063,-0.36315107,0.62556916,0.05403727,0.07472035,-0.025364667,-0.03188476,0.46163955,0.055720445,0.43058372,0.2173645,-0.17988257,0.116838746,0.7414362,-0.04165271,0.18579918,0.11989709,-0.065845184,0.2211218,-0.09284949,0.2079718,0.30746818,-0.59932774,-0.120072484,-0.33553776,0.104596876,0.50385696,0.13012818,0.054503124,0.09078205,-0.34145865,0.010966308,0.12864487,0.056199294,-1.3493309,0.26121867,0.14418061,0.60826474,0.487751,0.0645167,-0.05330349,0.64016235,-0.113325395,0.18999784,0.46397284,0.0774369,-0.40175867,0.536634,-0.74812216,0.4917585,-0.12546147,-0.11382025,-0.13954414,-0.037745494,0.21846054,0.9216609,-0.18729241,-0.17353423,-0.009987779,-0.38642237,0.13652344,-0.4395227,0.025502557,-0.5778825,-0.31240776,0.45145822,0.24326222,0.29223517,-0.18157648,0.009154458,0.061101526,-0.066612475,0.2924802,-0.15041007,0.08169668,-0.11687594,-0.45789227,-0.16586232,0.42291936,-0.14138465,0.3179554,-0.13143042,-0.06730965,0.105322726,-0.21698563,-0.19821806,-0.048735112,-0.5739005,0.019880392,-0.12084368,-0.5769599,0.5449371,-0.24974991,0.18008149,0.18784516,0.11173358,-0.1593873,0.19361258,0.18880148,0.56630474,-0.13999842,-0.133916,-0.41697058,0.13250165,0.009668835,-0.19592597,0.14923991,-0.034073737,0.117366284,-0.37668145,0.5495569,-0.1530123,-0.22563612,-0.14081536,-0.31868708,0.008244338,0.39285764,-0.33418027,-0.16188712,-0.10047596,-0.3974917,-0.04841784,-0.2620268,-0.060237627,0.27464363,0.23947544,-0.0778267,-0.13477634,-0.31816584,0.027950972,0.053314555,-0.0041195564,0.15993166,0.3287461,-0.21831937,-0.32900643,-0.26204178,0.16708654,0.28625578,0.041620083,-0.2837486,-0.5328131,-0.5074098,-0.35333285,0.100266635,0.024848074,0.24840379,0.05778105,-0.23917092,0.6924243,0.02174913,1.1791376,0.00430427,-0.31270698,-0.017885327,0.6675317,0.052488577,-0.046474483,-0.17280789,0.8381564,0.5112236,-0.12349736,-0.11327064,-0.51786214,0.12493014,0.31023657,-0.13171008,0.020033116,0.10431748,-0.6194675,-0.22348939,0.31796652,0.21473503,0.07436994,-0.034270924,0.035823222,0.19768965,0.115844876,0.36123478,-0.5161307,-0.055425193,0.37442574,0.29802272,0.22775453,0.17061274,-0.36743286,0.30555347,-0.696908,0.1834218,-0.17802668,0.08155569,-0.20551087,-0.33269373,0.17509176,0.16987085,0.36580026,-0.3450594,-0.48880187,-0.21052234,0.5304182,0.08561096,0.13982825,0.4557407,-0.27993008,-0.27020052,-0.017922327,0.60921466,1.118868,-0.061954662,-0.003096126,0.21072058,-0.4413453,-0.8320298,0.46212876,-0.33336404,0.37167975,-0.07680569,-0.16869052,-0.6181414,0.2406553,0.29656926,0.11863634,0.15563576,-0.52800864,-0.47003865,0.09170473,-0.5872955,-0.12410814,-0.26855662,0.19018336,0.5961745,-0.2680072,-0.17091013,-0.04722688,0.3582667,-0.22411261,-0.45005962,-0.15839802,-0.20877905,0.33276415,0.02428875,-0.3061532,-0.15420283,0.11022691,-0.4180285,0.2554057,0.01547344,-0.26436225,0.30917633,-0.31452978,0.2559351,0.59729177,-0.099321626,0.13393915,-0.5849729,-0.4487145,-0.6716235,-0.31110376,0.23109972,0.012368162,-0.01211772,-0.5361543,-0.11420574,0.0321632,0.1998444,-0.1557232,-0.35797027,0.49463177,0.114382245,0.13021086,0.13058639,-0.8992851,-0.12674595,0.0073627434,0.06794201,-0.5451681,0.49899137,-0.24261941,0.95146537,0.15516187,-0.05485561,0.07486863,-0.39621165,0.1417016,-0.14564721,-0.2574053,-0.45423272,0.14515048 +232,0.46396032,-0.028424108,-0.4562451,-0.051207226,-0.3824275,0.23027182,-0.18673912,0.24976854,0.19311617,-0.5364796,-0.29557985,-0.036791388,-0.16514502,0.21314281,-0.33027703,-0.7521593,0.20611049,0.20647958,-0.49940977,0.8438704,-0.37680307,0.5845743,-0.01387341,0.28760165,0.28522858,0.3226347,0.232205,0.07175209,-0.24016924,-0.4993042,-0.1374301,0.03752614,-0.43841296,0.34004393,0.09513478,-0.2511351,-0.09069262,-0.22760174,-0.49757677,-0.83716893,0.24679498,-0.6804923,0.34254113,-0.25058097,-0.3232261,-0.14574821,0.25403014,0.18910481,-0.055010375,-0.021326503,0.083583914,-0.13831525,-0.097364545,-0.15647644,-0.370007,-0.49135888,-0.53059834,0.031048452,-0.30244774,-0.20656414,-0.34460795,0.32846153,-0.3970043,0.04826165,-0.020710716,0.55747145,-0.3148276,0.10327484,-0.11221932,-0.32782832,-0.03579246,-0.75195515,-0.22955796,-0.045157187,0.07717004,0.061691985,-0.18761393,0.19638237,0.35897085,0.36264464,0.08640884,-0.1062746,-0.3337642,-0.32699972,0.49737853,0.596503,-0.18082584,-0.42008108,-0.26568773,-0.20017451,0.33321348,-0.0031917205,0.2002224,-0.48958817,-0.040426604,-0.20094791,-0.30033252,0.29391935,0.6037951,-0.36191544,0.03850485,0.25160268,0.39159358,0.1596479,-0.4331468,0.20306748,-0.19121146,-0.31659186,-0.095261335,0.109802164,0.03554887,0.55732274,-0.15206808,0.17416093,0.40514043,-0.11196112,0.15670124,-0.09310099,-0.056950934,0.08831259,-0.24935447,-0.12143186,0.13710727,-0.37162825,0.037685324,-0.40271178,0.88637775,-0.04452447,-0.66217506,0.4965023,-0.39138192,0.14495154,0.014158007,0.5020971,0.59222144,0.372841,0.046733234,0.67676586,-0.19517273,0.062355343,0.05190242,-0.2659572,-0.13161702,-0.0861992,-0.098360375,-0.3536258,0.22976047,-0.06900223,0.03386752,-0.009414049,0.6650128,-0.41582102,-0.20395343,-0.04482764,0.83924854,-0.28898284,-0.029908499,0.86490536,1.0364833,1.0721986,0.011974999,1.1788409,0.28273648,-0.032271657,-0.33956414,-0.022040384,-0.5115187,0.19185203,0.36353308,0.36003006,0.135107,0.15362413,-0.13941802,0.5402834,-0.33455077,-0.081627205,-0.21694139,0.21119596,0.25172976,-0.04051151,-0.41416022,-0.13702084,0.3147799,0.025245396,0.21431182,0.24256007,-0.23451479,0.55898416,0.030521138,1.4154836,-0.099471234,0.017929252,0.15145025,0.4290207,0.20422077,-0.2951825,0.23666248,0.033383302,0.33576208,-0.18367842,-0.4829423,0.01994323,-0.2554227,-0.59677315,-0.15899996,-0.25831354,-0.30533588,0.08650506,-0.36545673,-0.22281574,0.0815387,-0.34159192,0.39986983,-2.523996,-0.047891498,-0.32621846,0.14067006,-0.16970558,-0.38761088,-0.060712464,-0.4338296,0.5937766,0.35883036,0.46333104,-0.498077,0.44226012,0.59235674,-0.35575658,-0.02683876,-0.6216879,-0.027382493,-0.043096583,0.61031914,6.0071547e-05,0.06342357,0.045838952,0.20108317,0.5436493,-0.06353197,0.11450221,0.4344255,0.27300066,-0.016475866,0.3642694,0.09206942,0.5234814,-0.11587699,-0.05716356,0.47281238,-0.4868822,0.22812858,-0.12336237,0.16174327,0.46065363,-0.53036976,-0.5936514,-0.67987376,-0.43090123,1.1714157,-0.21646614,-0.7049552,0.32375115,-0.086090155,-0.3458786,0.017319314,0.44110107,-0.26577497,-0.12388771,-0.5378908,-0.056916498,-0.15182854,0.25272515,-0.28390232,-0.0688962,-0.34072846,0.7352262,-0.21566851,0.50469536,0.35414663,0.39281768,-0.16523752,-0.5041554,0.021865701,0.94841933,0.4378827,0.09208783,-0.25712377,-0.15577438,-0.38353282,-0.25759855,0.019675342,0.78506786,0.5169181,0.03463012,0.06829764,0.30360717,-0.023859108,0.033368252,-0.23112823,-0.3543545,-0.24690233,-0.026789118,0.7272132,0.513147,0.050860036,0.48265335,-0.023776107,0.23548119,-0.3165582,-0.51084447,0.29878706,0.9431948,-0.26215446,-0.3947196,0.5611,0.40128183,-0.3743226,0.30309758,-0.6212482,-0.20207453,0.43787745,-0.20760845,-0.50412405,0.30305925,-0.3561716,0.069123395,-0.59426063,0.47565052,-0.31149086,-0.63136756,-0.5557764,-0.17913264,-3.1936357,0.21175243,-0.05851375,-0.28413442,-0.18031155,-0.25139344,0.3182369,-0.36313325,-0.43991432,0.1510975,0.08137922,0.5153588,-0.08689202,-0.01585528,-0.2704673,-0.14343664,-0.28141546,0.26306224,0.06806413,0.38998276,-0.3466732,-0.2624741,-0.07449032,-0.16806348,-0.50263554,0.024019,-0.49387679,-0.6427359,-0.08491732,-0.23868555,-0.19807339,0.72387534,-0.60874057,0.22646593,-0.32433003,-0.13406944,-0.32044798,0.113769926,0.15015243,0.37323385,-0.057046197,-0.10944681,-0.074098505,-0.34291127,0.16967297,0.13693167,0.16387157,0.47517517,-0.13192046,0.04047451,0.2418347,0.641035,0.04352938,0.93444085,0.23417552,-0.09082731,0.37894595,-0.14516692,-0.3929554,-0.46939686,-0.22324012,0.1079436,-0.35544804,-0.4175264,-0.23618123,-0.32823223,-0.679462,0.40597638,0.10992167,0.20729908,-0.057686437,0.24848267,0.29325646,-0.05956522,-0.09752851,0.088025205,-0.01715653,-0.4434906,-0.4106193,-0.66552734,-0.58014774,0.06056842,0.836591,0.035133798,-0.08469764,-0.019070577,-0.3888344,0.106584705,0.23799849,0.19587846,0.095654756,0.17208584,0.015826115,-0.8294353,0.6337312,-0.1870708,-0.09788031,-0.4896821,0.29865804,0.6483822,-0.43893433,0.37336165,0.23676194,0.17808002,-0.26086205,-0.7114157,-0.023729015,-0.0828359,-0.33894876,0.41253433,0.30124134,-0.8111394,0.4531155,0.23328832,0.10516513,-0.742473,0.4928769,0.06428067,-0.33841372,0.12339713,0.41469574,0.008608985,-0.12648405,-0.23282126,0.2262622,-0.39872205,0.25736544,0.1758324,-0.072345115,0.23239245,-0.243687,-0.42465687,-0.6508944,-0.045664653,-0.6314069,-0.28617442,0.0917052,0.1442242,0.13376872,0.19702831,-0.047798123,0.5256918,-0.24113274,0.18666926,-0.17559035,-0.17392384,0.4310541,0.46692345,0.41962153,-0.3529725,0.62998605,0.12566204,0.04171959,0.17221397,0.21892907,0.39937314,0.034258984,0.51193994,-0.08552892,-0.028797295,0.16903517,0.89337784,0.35187066,0.5967006,0.106850006,-0.4504982,0.24900793,0.09508861,0.35322112,-0.011770261,-0.5747279,0.018715767,-0.092794925,0.1424584,0.5143075,0.068277635,0.48589474,-0.15417223,-0.17758904,0.0750979,-0.016276104,-0.041404437,-1.1734607,0.25464714,0.09542256,1.0131663,0.4607317,-0.039547935,0.019612677,0.58645767,-0.183361,0.07346468,0.11893572,0.054233536,-0.33747754,0.41102177,-0.49404854,0.32616788,-0.04658664,0.09114682,0.17552516,-0.12325538,0.34196573,0.7304072,-0.17772852,0.12405857,0.029753463,-0.2958473,0.048192415,-0.35810655,0.33217773,-0.4500597,-0.43115997,0.5168864,0.47018102,0.3568362,-0.091199145,0.029922538,0.08287049,-0.1627594,0.10073226,0.044448037,0.09235919,-0.31513456,-0.49971488,-0.4306566,0.48584563,-0.2371776,0.01926751,0.22228962,-0.30731228,0.19809695,0.061302055,0.041526306,0.11311893,-0.54610544,0.13588518,-0.21637577,-0.4614345,0.25189397,-0.32507792,0.2662011,0.23542625,-0.049574018,-0.34166852,0.2690663,0.26655972,0.6008677,0.067927875,-0.043844353,-0.24501298,-0.052671585,0.22487508,-0.26936668,-0.16430697,-0.16097355,0.16730784,-0.6610492,0.1900451,-0.23021694,-0.25062054,0.15525128,-0.07151111,-0.121330306,0.4281966,-0.052298483,-0.11330464,0.21295144,0.1527729,-0.09196413,0.022189872,0.047758643,0.10897306,0.038913567,-0.14415956,0.16104473,0.03310571,0.046414737,0.16130893,-0.020700479,0.44625705,0.6172343,-0.07592199,-0.48563337,0.013269135,0.11436629,0.57572246,-0.020839827,0.15963253,0.04661649,-0.637397,-0.4153028,0.45225522,-0.11029549,0.34206852,0.04610199,-0.48005685,0.6366399,0.110754155,1.0192579,-0.06855216,-0.50447476,0.08107669,0.6047333,-0.032234237,0.16920573,-0.22410072,0.87675756,0.46474153,-0.23392633,-0.1281853,-0.33718804,0.031766172,0.15396217,-0.23872589,-0.21235725,-0.069123186,-0.5155709,-0.10468694,-0.08842018,0.18193588,0.010991494,-0.04819614,-0.00914348,0.3509306,0.08275927,0.45956993,-0.55616766,0.03618037,0.3943285,0.105873145,-0.1888812,0.05973722,-0.33994046,0.2010382,-0.6917195,0.19789605,-0.27047622,0.15666743,-0.09318926,-0.21243878,0.333212,0.008877691,0.35091415,-0.43768245,-0.25533807,-0.29836228,0.5259412,0.16165036,0.2675886,0.52776974,-0.11443115,0.17928581,0.16436462,0.5923042,1.2094007,-0.1640141,-0.021630954,0.32482332,-0.5319062,-0.4981705,-0.02344648,-0.3654054,0.1790871,0.01942294,-0.41301638,-0.4238739,0.22463042,0.36176726,-0.019869965,0.02903638,-0.60468185,-0.33376947,0.11181902,-0.26089233,-0.22994722,-0.28616437,0.072404996,0.5041385,-0.3203062,-0.33186787,-0.20613053,0.3181935,-0.36505497,-0.7453758,-0.029435333,-0.1874375,0.28659394,0.12917885,-0.46664187,-0.2033856,0.13944507,-0.44740772,-0.17666827,0.25380656,-0.36705574,0.019015452,-0.18145679,-0.02722718,0.7159968,-0.1352013,0.19624124,-0.70432156,-0.61596227,-0.72053665,-0.674204,0.22212261,0.21042894,-0.005197525,-0.5589374,-0.28713557,-0.47283158,0.03019685,0.08937943,-0.34137726,0.5490121,0.22800322,0.3599596,-0.17221406,-0.9394793,0.3061712,0.1634823,-0.19469446,-0.44902405,0.3855589,-0.0078666685,0.61774707,0.21751699,0.12049413,0.04097299,-0.5879008,0.3317226,-0.15541786,-0.29520464,-0.7218235,0.30168286 +233,0.28470543,-0.17640413,-0.78717494,-0.10878257,-0.1242002,0.29949385,-0.20407304,0.2783461,0.07747033,-0.38444453,0.034542553,0.006651016,-0.2533768,0.1968601,-0.12056172,-0.545797,-0.109665506,0.1657086,-0.46027118,0.24250032,-0.31212988,0.45271444,-0.13368247,0.12589069,0.08757774,0.19897082,0.13319692,-0.058261085,0.09274337,-0.16029955,0.11914904,0.20252892,-0.3206285,0.16996591,0.008266251,-0.4241691,0.04086044,-0.25639495,-0.43295607,-0.61574286,0.3991663,-0.6954459,0.5314446,-0.023583507,-0.21968265,0.17501268,0.17608365,0.27503058,-0.18689585,0.15712614,0.31201372,-0.33714467,-0.1135483,-0.26190895,-0.26484662,-0.5081204,-0.523797,-0.07156319,-0.6392745,-0.04008813,-0.29193485,0.18351766,-0.4579064,-0.10425165,-0.26690763,0.2853679,-0.40613118,-0.1985027,0.17601389,-0.20187894,0.048666842,-0.6184655,-0.091933556,-0.047763087,0.12230158,-0.14158902,0.027655888,0.29339898,0.04664019,0.54083335,0.010239506,-0.12395649,-0.45019096,-0.040569585,0.121298485,0.61607337,-0.14066587,-0.10225764,-0.13574658,0.06877355,0.38549182,0.24892338,0.032566447,-0.12874159,-0.16759318,0.08605189,-0.09392593,0.3406622,0.5052544,-0.3693022,-0.03263081,0.5337729,0.6024639,-0.027562078,-0.26099625,0.2355562,-0.13373007,-0.25998342,-0.099325806,0.022012753,-0.027097825,0.38378507,-0.0075699897,0.24604368,0.5297681,-0.23798244,-0.022236379,0.109838046,0.11143646,0.006300479,-0.07593964,-0.17296672,0.35841018,-0.37234345,0.11344695,-0.19537042,0.71794814,0.028202975,-0.6266512,0.30212632,-0.4272534,0.12569708,0.08587435,0.66569704,0.5905176,0.6076666,0.116565034,0.93255436,-0.44252843,0.09087376,-0.062053394,-0.35622215,0.055830535,-0.04600331,-0.22184815,-0.41541427,0.20798811,0.06594263,0.06812227,0.14808173,0.48584637,-0.41711158,-0.07192095,0.22744457,0.7023086,-0.37067643,-0.07204261,0.48845354,0.9358968,0.96095717,-0.06356453,0.83419734,0.14490916,-0.23886085,-0.13779025,-0.31525248,-0.62214744,0.23582825,0.39623636,0.22767237,0.33652133,0.09337652,-0.1272666,0.34551474,-0.43064645,-0.11161695,-0.04745508,0.15045601,-0.007960963,-0.21990258,-0.49004167,-0.06386747,0.22429778,-0.09274049,0.17419717,0.34339255,-0.33566156,0.15587799,0.008691891,1.2629489,-0.17579886,0.18778619,0.34045163,0.47994512,0.195024,-0.21834679,0.083028674,0.27357033,0.37468728,-0.05015668,-0.56870544,0.112356976,-0.40795848,-0.61186755,-0.24821006,-0.2717846,-0.27102834,-0.06079115,-0.46657932,-0.21170187,-0.10891546,-0.5020856,0.3128899,-2.6469307,-0.030651916,-0.13386227,0.31777295,-0.20219675,-0.29012725,-0.13292466,-0.44426885,0.276828,0.32714203,0.4394458,-0.4302454,0.45415947,0.55138546,-0.44220045,-0.057201665,-0.5349046,0.040012456,-0.15602039,0.30507725,0.08894225,-0.27398303,-0.028193004,0.16936609,0.4003772,-0.229133,-0.03822184,0.34719786,0.42638594,-0.02352916,0.38699895,0.12790416,0.5969822,-0.41468623,-0.15634441,0.45649242,-0.5911049,0.2139756,-0.20114276,0.087453336,0.36335322,-0.32328802,-0.8854818,-0.42485613,-0.080674075,1.5222336,-0.3075873,-0.3276116,0.13557082,-0.095839374,-0.21284883,-0.16956684,0.41978258,-0.16266803,-0.07195706,-0.69556147,-0.1027081,-0.23533298,0.37187776,-0.11050524,0.038091976,-0.5377122,0.53886694,-0.10175007,0.73407453,0.30493024,0.29571617,-0.23726253,-0.35180613,0.028943414,0.92052513,0.5136995,0.08713094,-0.22630152,-0.17183489,-0.15614451,-0.13943478,0.24243125,0.41301593,0.62480956,-0.0054199123,0.10228743,0.27642685,0.064233415,0.12560086,-0.22314383,-0.31001222,-0.13586134,0.20868868,0.49832523,0.31864217,-0.006627713,0.26707596,0.058639415,0.23329407,-0.3573057,-0.30193248,0.247746,0.84100837,-0.058919646,-0.41754228,0.5556891,0.4380516,-0.1627712,0.45523053,-0.74540955,-0.41936874,0.4551459,-0.34683415,-0.31213933,0.24120201,-0.4269868,0.05056459,-0.677991,0.1741016,-0.3087911,-0.62718886,-0.60787976,-0.2747405,-2.8905325,0.03916943,-0.21714352,-0.1114145,-0.03816106,-0.0069062533,0.2514939,-0.5233996,-0.5878378,0.0010829131,0.21700399,0.6338833,-0.061689522,0.06143129,-0.3438148,-0.3980709,-0.22069822,0.30939502,0.074171335,0.20788537,0.0875919,-0.42155656,0.0016326885,-0.17341705,-0.2587784,-0.054009233,-0.27672532,-0.20705755,-0.06992369,-0.3714512,-0.0971174,0.6334678,-0.44484407,0.10685594,-0.17639299,0.046583414,0.09585988,0.110300794,0.11808094,0.11909372,-0.018467171,-0.23812263,0.20500161,-0.3531114,0.3783953,-0.006331881,0.40163797,0.47078463,-0.23788638,-0.11498859,0.466931,0.5685599,-0.06166708,0.8479508,0.3387002,-0.036858402,0.34380785,-0.15144348,-0.23533887,-0.61020344,-0.29613742,0.08134689,-0.39258018,-0.51978344,-0.0021312237,-0.44365877,-0.99166477,0.41620165,-0.15535338,0.36327857,-0.15485384,0.5023037,0.41150194,-0.08290434,-0.11721253,0.031730868,-0.05497625,-0.116739325,-0.40188745,-0.77333367,-0.37595853,0.08935841,1.2602541,-0.2496658,-0.022957465,0.16767244,-0.051909957,0.05058919,0.20020464,0.29787543,0.22306105,0.4147608,0.03281695,-0.5711251,0.39308882,-0.35951844,-0.069789335,-0.58491653,-0.0039667767,0.44793063,-0.69250417,0.29134962,0.33002388,0.17271627,-0.08606405,-0.788256,0.112229064,0.15974645,-0.2025273,0.40022582,0.21142222,-0.6409208,0.4162982,0.11622175,-0.24647762,-0.6122019,0.46287313,-0.09925385,-0.21562876,-0.0009325504,0.3705515,-0.03898047,-0.16890854,-0.17334332,0.29882076,-0.32832256,0.3996257,0.20706984,-0.18793513,0.30839697,-0.3408651,-0.15590926,-0.52686465,0.11674559,-0.5631819,-0.20375958,0.22169909,0.037774023,0.17198819,0.21736088,-0.10054379,0.51940787,-0.23915316,0.026956078,-0.22818384,-0.3524937,0.58948547,0.40797287,0.32393977,-0.36557177,0.59098226,0.0658387,-0.26113755,-0.019426137,0.13454498,0.59709144,-0.073261306,0.3828718,-0.08657071,-0.119757615,0.30550918,0.8074688,0.38928756,0.34678805,0.03020835,-0.23601493,0.080371074,0.14000215,0.004744323,-0.24902971,-0.4707906,-0.1331247,-0.015623859,0.16867971,0.42966917,0.19561659,0.5549169,-0.16949062,-0.15530552,0.27806103,0.1417358,-0.24611592,-0.8873686,0.19522022,0.024691964,0.779863,0.32527217,0.22163287,0.057882324,0.39982608,-0.22831352,-0.077817634,0.37568787,0.016640948,-0.38033357,0.5036279,-0.5789039,0.54596794,0.07502739,-0.092303656,0.25543132,0.034667816,0.5041408,0.72613853,-0.025923936,0.06437311,-0.057249904,-0.2836676,0.12923978,-0.19736841,0.19354804,-0.48734948,-0.14683597,0.69395226,0.39129123,0.3011258,-0.096452355,-0.04257857,-0.0087764505,-0.17035231,0.09538791,-0.117324635,0.18366115,-0.22236064,-0.3554222,-0.1898771,0.43832314,0.17849536,-0.076493315,0.08263065,-0.26713523,0.26250848,-0.029705977,0.24424037,-0.021780616,-0.5063179,0.13725513,-0.23828974,-0.4917202,0.28830782,-0.07592388,0.3764449,0.2543287,-0.035131466,-0.33301672,0.24533674,0.16909125,0.7258821,-0.20998931,-0.08972193,-0.42560098,0.21111552,0.19605647,-0.16511849,-0.114026345,-0.31568825,0.33004034,-0.7116423,0.3383733,-0.27862585,-0.19299155,0.15149869,-0.25322422,-0.22684254,0.62103397,-0.1509829,-0.123029105,0.08227881,-0.086484484,-0.35167965,-0.20543489,-0.21447681,0.06039796,-0.08922829,-0.048791487,-0.23969859,-0.09697025,0.048285127,0.245631,-0.0070733787,0.05085997,0.3474668,0.006240467,-0.4811557,-0.019968254,-0.0038100402,0.54531705,0.0013861308,0.05180725,-0.35907593,-0.61348635,-0.28049672,0.37060836,-0.19765472,0.38731977,0.1320587,-0.29005557,0.77421683,0.041118015,0.99327344,0.016350541,-0.35042438,-0.021068756,0.7512263,0.094610214,-0.01565414,-0.2580741,0.9766262,0.772428,-0.06421723,-0.28555447,-0.21191254,-0.073317446,0.10109145,-0.27040094,-0.28219846,-0.0032770515,-0.7078964,-0.25040707,0.28193057,0.24213041,0.1379352,-0.17271315,0.069568366,0.33160397,0.13055517,0.21714608,-0.54948765,-0.3317905,0.24819939,0.13673387,-0.08069816,0.04328393,-0.5786897,0.29704645,-0.73753047,-0.15313,-0.12392448,0.16492696,-0.04490731,-0.25553012,0.3106332,0.0041222214,0.18708095,-0.35294256,-0.288384,-0.026357826,0.33891025,0.053086367,0.27803296,0.6269273,-0.25343728,0.032706253,-0.021721203,0.38397944,1.0172651,-0.17372999,-0.01353031,0.41952762,-0.45200184,-0.7740679,0.09170539,-0.5321132,0.17193201,-0.15405177,-0.42199183,-0.3842765,0.4152569,0.14403208,-0.05570082,0.14678206,-0.53982705,-0.121815644,0.10436908,-0.32016394,-0.26151913,-0.32759514,-0.077499524,0.78546894,-0.3548107,-0.22212045,0.06998459,0.5402527,-0.16267401,-0.69393665,0.16180474,-0.28725567,0.4164817,-0.04015435,-0.27937022,-0.104940034,0.011156362,-0.30902207,0.22382693,0.5389088,-0.29849568,-0.060391083,-0.3728206,0.10909427,0.62119967,-0.09402685,0.033281468,-0.5258259,-0.32962286,-0.99036723,-0.25443578,0.40436438,0.16673717,0.018084506,-0.6377302,0.05032695,-0.33985406,-0.1546653,-0.101490095,-0.406763,0.31692493,0.12750891,0.32090554,-0.27416185,-0.7619258,0.09872934,0.045970622,-0.4644876,-0.3788782,0.49603257,-0.1240226,0.7673367,0.1131797,0.022418195,0.27289248,-0.6572463,0.35386315,-0.21843545,-0.1376672,-0.6714496,0.01798438 +234,0.3639386,-0.08790997,-0.5856405,-0.052128058,-0.44570437,0.13774048,-0.3535323,0.31812468,0.21908565,-0.24607123,0.07027935,0.11530473,-0.20293339,0.3723402,-0.24463753,-0.5847393,-0.06354282,0.03953086,-0.6678149,0.48855114,-0.50736016,0.2876692,-0.14571646,0.43926224,0.081457235,0.27609932,0.036000017,0.06385407,0.15782963,-0.3077058,-0.16319874,0.08105356,-0.72812796,0.49404156,-0.19488227,-0.3702043,-0.041128907,-0.43640196,-0.29875168,-0.72807693,0.18271162,-0.7161031,0.63014454,-0.044563245,-0.40383554,-0.07849388,0.13785864,0.3519664,-0.1943087,0.11171659,0.35066548,-0.32711294,0.055144217,-0.3218745,-0.31956366,-0.27134797,-0.42796862,-0.25003946,-0.62811494,0.009756943,-0.21509087,0.17982633,-0.29066506,0.053269964,-0.34063414,0.267328,-0.33419704,0.1671462,0.027219897,-0.21392708,0.18072522,-0.45034286,0.03889667,-0.06996513,0.29892114,0.01747694,-0.20466948,0.2955119,-0.055273697,0.30801895,0.15129994,-0.11753818,-0.25951216,-0.21979149,0.15304881,0.40113655,-0.0324066,-0.10438702,-0.3033287,-0.16040717,0.40593806,0.36539814,-0.12611449,-0.41218987,0.12599523,-0.2948343,-0.21341312,0.6349967,0.4858644,-0.16793187,0.06844419,0.3068096,0.51075155,0.3091746,-0.3613803,0.20002943,-0.07485739,-0.4240911,-0.30986372,0.23305285,0.06503251,0.30377233,-0.10573845,0.28445956,0.58421147,-0.117580645,-0.12974158,0.12977675,-0.137269,0.25003985,-0.32161197,-0.21072294,0.119895935,-0.55284125,0.29065618,-0.26668373,0.70212156,0.054173965,-0.805715,0.2018174,-0.68684053,0.0026522055,0.0006005193,0.62510556,0.623243,0.6930814,0.057761192,0.804869,-0.35435104,0.07917878,-0.19977792,-0.18309416,0.030869016,0.12191784,0.20789666,-0.37969112,0.039784342,-0.18425326,0.10212878,0.041945633,0.081058875,-0.1963448,-0.20948903,-0.02627013,0.68237144,-0.3548614,-0.003093044,0.95084333,1.1946324,1.0154083,0.051951658,0.9443958,0.09935961,-0.064589344,-0.38048902,0.03476951,-0.60147595,0.1790223,0.3502525,0.3452808,0.29212525,0.027015023,0.04699562,0.25671875,-0.31714118,-0.14752229,0.08723345,0.33794487,-0.030037364,-0.02404379,-0.30689913,-0.3866422,0.22643293,0.0876095,0.0052511245,0.26433533,-0.2914699,0.52068657,0.21742272,1.0203758,0.103151105,0.17265594,0.13524212,0.45148364,0.2537736,-0.20821172,-0.12063575,0.25565112,0.25401637,-0.029506018,-0.59232694,0.13076133,-0.26047552,-0.25194404,-0.029311523,-0.43312874,-0.15422131,-0.23403935,-0.35898924,-0.044525117,0.015783204,-0.3566126,0.4773594,-2.7893455,-0.1481878,-0.08294446,0.3074865,-0.1727398,-0.26538262,-0.2155902,-0.42697588,0.47496963,0.13937984,0.4739902,-0.45224658,0.6575768,0.4745777,-0.3276557,-0.039926022,-0.59919596,-0.13517244,0.114559196,0.2870753,-0.055635255,0.017829945,-0.23859929,0.26606575,0.59729934,0.03548896,0.037363146,0.2847234,0.4468347,-0.21023488,0.6719098,-0.033470143,0.5351427,-0.5592775,0.027412502,0.33902726,-0.59321004,0.39337206,0.045786604,0.16456454,0.49609217,-0.5892055,-0.8375063,-0.573683,-0.32955548,1.3132014,-0.3696011,-0.5967744,0.20081611,-0.2691165,-0.2668536,0.14640516,0.5525932,-0.117276765,-0.040931415,-0.5774165,-0.06596985,-0.27487627,0.4467217,-0.07889671,0.112737514,-0.34841025,0.6017489,-0.13482638,0.6808395,0.28418633,0.13458143,-0.1261005,-0.30457124,0.11341377,0.6889582,0.5474023,0.099742025,-0.16841395,-0.20812678,-0.12281722,-0.0978257,0.080300756,0.91315836,0.4852195,-0.14133526,0.05342045,0.3280683,-0.23863256,-0.0014131218,-0.2737835,-0.26673305,-0.24250974,0.13507862,0.5526673,0.6845607,0.12884958,0.24434054,-0.015955068,0.23843072,-0.30029762,-0.5129561,0.23098896,0.42966294,-0.06687043,-0.23836224,0.51968783,0.60870177,-0.17840172,0.45150927,-0.5231201,-0.42890128,0.47351646,-0.030663468,-0.4792688,0.21830471,-0.23039353,-0.05051364,-0.79393387,0.19904639,-0.5709304,-0.9787612,-0.40727708,-0.119862705,-2.9739351,0.09882462,-0.005357273,-0.16913237,-0.39796305,-0.30437392,0.28180692,-0.39074692,-0.668968,0.0669025,0.017733077,0.5838178,-0.17710479,0.09117047,-0.29494688,-0.21327122,-0.24396695,0.26589254,0.20281975,0.3295619,-0.22192271,-0.2241174,-0.23318666,-0.12591262,-0.5330571,-0.029390454,-0.49932623,-0.10601011,0.06295779,-0.37399897,-0.2353574,0.5350617,-0.4696207,0.09713715,-0.09483006,-0.098465495,-0.1442367,0.34884644,0.2928597,0.3048393,0.12906857,-0.121281065,-0.25072268,-0.34282422,0.11748936,0.10282167,0.22835182,0.33822426,-0.18598521,-0.01241536,0.3459266,0.74311,0.051016465,0.9351458,-0.15925401,-0.09266215,0.45075837,-0.33964762,-0.6141781,-0.5951168,-0.18414755,-0.0029023339,-0.2944758,-0.31925398,-0.19307081,-0.2938317,-0.8316386,0.32798877,0.34024286,0.07763109,-0.15173627,0.21805823,0.214548,-0.1655374,0.06191257,-0.018812457,-0.104692794,-0.47287393,-0.36568105,-0.6370758,-0.5605117,-0.012181121,1.0074464,-0.16155131,0.055372063,0.10796402,-0.34959614,0.21534155,0.22768979,0.18086706,0.19488685,0.36357746,0.0065151155,-0.428252,0.3930353,-0.25635758,-0.16140728,-0.47511944,0.13298917,0.9560936,-0.6000455,0.44997248,0.27823067,0.1184149,-0.24227972,-0.57116777,-0.09089351,-0.08040104,-0.1774606,0.40482116,0.22906756,-0.7755478,0.44885042,0.07422373,0.027988335,-0.63226825,0.44593355,-0.018863207,-0.22958435,0.12191603,0.52487636,0.103552856,-0.12445062,-0.007459432,0.20954412,-0.23916392,0.32560083,0.19453107,-0.0033552349,0.12538365,0.049709085,-0.21213043,-0.6278246,-0.12746917,-0.66465497,-0.28732434,0.29541162,-0.09985005,-0.051845476,0.012547205,0.0064986446,0.3972944,-0.35704038,0.2650167,-0.30570516,-0.16509996,0.42999032,0.47245553,0.49434268,-0.50101465,0.6442179,0.29987994,0.06669483,0.10836845,0.26006138,0.4003397,-0.15223368,0.4570315,-0.1367213,0.10956538,0.13799864,0.5223442,0.31177938,0.29106024,0.0890829,-0.010447949,0.38696364,0.10129646,0.31351438,-0.09066237,-0.41570863,0.16058709,-0.13078813,0.0855271,0.4505464,0.12571457,0.36695388,0.079638876,0.006214132,0.05644994,0.23089443,-0.4343934,-1.3914531,0.5027411,0.16421174,0.79026634,0.43820748,0.20940572,0.100136705,0.6922731,-0.24413025,0.021048315,0.30301854,0.26257285,-0.29029503,0.6572713,-0.55419797,0.47530404,-0.01464749,-0.029209673,0.24584156,0.08614843,0.59235704,0.8634682,-0.137776,0.010374869,0.015692601,-0.19475411,-0.00786839,-0.30220276,-0.008021717,-0.37708375,-0.46203718,0.5350129,0.35218915,0.49111006,-0.33120435,-0.080423646,-0.0001501441,-0.061115604,0.089568526,-0.14091061,-0.15271248,-0.16793735,-0.45593277,-0.18837707,0.6145815,-0.33863235,0.12975629,0.16196351,-0.20429938,0.35504678,0.21892376,0.08647847,-0.0043607564,-0.7477322,0.2339976,-0.394846,-0.22281848,0.08900366,-0.54367,0.32815903,0.2190605,-0.10188576,-0.1819123,0.33342662,0.24598868,0.64271677,0.032924175,-0.12015977,-0.19886017,0.19881074,0.117203556,-0.3049935,-0.09062434,-0.26237544,-0.02592936,-0.60976744,0.11493876,-0.2828691,-0.30107698,0.18062162,-0.106957264,0.049208302,0.50972605,-0.06838182,-0.16224277,0.09025404,-0.008315911,-0.3352196,-0.32735586,-0.34597662,0.19709067,0.17435856,0.09276304,0.07430318,0.014491449,-0.021816378,0.2593852,0.26646468,0.37933198,0.14026958,0.01673849,-0.3138435,0.039408024,-0.020330263,0.45004463,0.1455414,0.10656778,-0.048844393,-0.27526945,-0.273891,0.53170145,-0.28288817,0.23949455,-0.008026123,-0.3843687,0.71780235,0.023646077,0.9165711,0.028983995,-0.3859547,0.20541207,0.5445173,0.03373425,-0.04529633,-0.21078521,0.87971395,0.40901288,-0.220976,-0.027312348,-0.44204724,-0.2823894,0.04656383,-0.25444245,-0.23953456,-0.10697529,-0.46988496,0.068377964,0.17686558,0.2869228,0.036958124,-0.08643376,-0.25494778,0.25563613,0.058636088,0.35319236,-0.5158752,-0.02599513,0.35351777,-0.033914607,-0.019291801,-0.018708592,-0.3516283,0.38039017,-0.71943736,0.24032778,-0.6126943,0.018230474,-0.18896765,-0.16770174,0.18305485,0.04204269,0.20734598,-0.32953027,-0.23661493,-0.07820422,0.45489708,0.25251982,0.33847883,0.7152236,-0.20713349,-0.08394999,0.055811256,0.4330589,0.68796045,-0.22852981,-0.07116806,0.28960654,-0.3946507,-0.53368,-0.0038883735,-0.37903896,0.07189632,-0.004427125,-0.35840094,-0.17321469,0.26233536,-0.022852818,0.2094421,-0.020938454,-0.7442589,-0.033887297,0.21282929,-0.2601369,-0.31258014,-0.4285643,0.16820978,0.67857987,-0.18354899,-0.41509795,0.06124488,0.12074623,-0.22748917,-0.5407192,0.026562465,-0.17817135,0.104265966,0.011366378,-0.3558966,-0.05552895,0.48133698,-0.5001957,0.03227452,0.081469774,-0.30044392,-0.0030278538,-0.19397129,-0.08945622,0.8824217,-0.2312511,0.0557764,-0.37546477,-0.6007926,-0.6086877,-0.24824263,0.022818573,0.30843014,0.019783879,-0.58355194,-0.09880888,-0.36349872,-0.10600863,0.03547716,-0.38203022,0.3944285,0.16078417,0.4093893,-0.21009563,-1.0815308,0.34294024,0.25127718,-0.19892295,-0.36400533,0.48327455,-0.18074755,0.4472116,0.048624218,0.046158403,0.0046202443,-0.7304902,0.32525185,-0.25766298,0.025594631,-0.67193896,0.25357577 +235,0.61866033,-0.23643894,-0.5249493,-0.18828715,-0.16143212,0.21911615,-0.25643674,0.54515004,0.14392227,-0.4555312,-0.096369475,-0.07253068,0.10592054,0.24619088,-0.26086476,-0.5677882,-0.020114804,0.22309045,-0.525815,0.53552055,-0.43271643,0.30569795,-0.044127353,0.30593273,0.177908,0.19448848,0.024898732,-0.123511225,-0.20986198,-0.29038128,-0.05221647,0.2677888,-0.6053692,0.10187168,-0.21027957,-0.33904532,-0.034426387,-0.5829216,-0.4143965,-0.71557045,0.31414637,-0.8820573,0.76781255,0.14617644,-0.22224715,0.17467256,0.16724467,0.3562125,-0.23023213,0.19060175,0.17862916,-0.046185143,-0.02103247,-0.260501,-0.1919982,-0.39535505,-0.57823485,0.0041970434,-0.48090312,-0.14852537,-0.08667914,0.0645525,-0.1653998,0.033263173,-0.12398626,0.4549844,-0.43045262,0.1364541,0.14380963,-0.10412644,0.2148394,-0.5447286,-0.18378049,-0.07118512,0.41960162,-0.27105415,-0.16188407,0.24448845,0.0863117,0.549591,-0.14022085,-0.09738455,-0.28185895,-0.107174166,0.015239843,0.6219837,-0.31559843,-0.5170764,-0.14534919,0.016498279,0.30871153,-0.0013207357,0.10716348,-0.22035953,-0.09386177,-0.06382571,-0.29405603,0.43046108,0.5928031,-0.43750387,-0.14581934,0.35002455,0.39033386,0.1268654,-0.092074774,0.03173187,0.077965036,-0.5897969,-0.19272622,0.1973797,-0.13195974,0.5114614,-0.0050898395,0.22046134,0.44533673,-0.17445211,0.1130179,0.14318416,-0.005980104,0.17306465,-0.1383806,-0.47889546,0.07346959,-0.44460496,0.014113605,-0.2520548,0.6979884,0.2682486,-0.7938414,0.43356723,-0.517764,0.0577883,-0.057190914,0.40985125,0.5245767,0.4744757,0.074623264,0.62818545,-0.31601664,0.09882038,-0.13382135,-0.23130907,0.08019764,-0.09323442,-0.03383577,-0.47293612,0.09523725,-0.029750992,-0.157027,0.2211106,0.4974221,-0.4943101,-0.110241644,0.11697518,0.873757,-0.25407463,0.010629114,0.7765165,1.1011833,0.8730004,-0.02020183,1.1754903,0.22823213,-0.26561812,0.10084381,-0.25485164,-0.6846463,0.27427927,0.30369872,-0.38235226,0.37123197,0.027645051,-0.1390786,0.25792256,-0.38268933,0.01745825,-0.11368405,0.09526213,0.08970984,-0.0700938,-0.3678437,-0.2510267,-0.17527314,-0.064472266,0.16392761,0.2167448,-0.4225991,0.2882281,0.090849005,1.6166921,-0.07533514,-0.027009146,0.0104905125,0.5272041,0.23673372,-0.0743037,-0.06733413,0.28061664,0.3981103,0.0633439,-0.60000324,0.06329742,-0.1229145,-0.34972534,-0.18013859,-0.2824699,-0.16464825,-0.018888699,-0.56347346,-0.13442205,-0.04535873,-0.16575636,0.36181983,-2.7221856,-0.15712382,0.042313766,0.5115306,-0.23132913,-0.44147202,-0.3093282,-0.46732056,0.438934,0.19469087,0.44671077,-0.5964454,0.5624899,0.37578917,-0.41611528,-0.17311668,-0.6201647,-0.12940629,-0.013847562,0.28542766,-0.0804085,-0.091518484,0.15300183,0.29343235,0.43160692,-0.06733228,0.13819432,0.19201145,0.4351157,0.12891617,0.42765948,-0.06144208,0.55676633,-0.2492525,-0.16293877,0.33754852,-0.37492234,0.17334741,0.012750228,0.091654494,0.3264826,-0.6191406,-0.9053707,-0.713116,0.051510468,0.97648466,-0.16169557,-0.38654816,0.1629596,-0.21086283,-0.4269187,-0.08290536,0.5356811,-0.08834114,-0.13203979,-0.775149,0.006759724,-0.019098807,0.15959153,-0.028297504,0.14722678,-0.4955214,0.5098363,-0.048457213,0.54732805,0.30169278,0.18836555,-0.12110582,-0.44071314,0.043616433,1.1340705,0.37500098,0.21963397,-0.15386073,-0.18584153,-0.37440175,0.051558517,-0.12064004,0.634612,0.6818334,0.0050596874,0.07680747,0.19482088,-0.046659242,0.22442462,-0.13024633,-0.34014866,-0.16339378,0.08497106,0.60993356,0.43420404,-0.14897838,0.46180135,-0.044081114,0.31764603,-0.2372341,-0.36405823,0.38631335,0.99856335,-0.21191,-0.20202726,0.58087504,0.43423113,-0.26739958,0.4194783,-0.59227806,-0.35131946,0.2709966,-0.2630729,-0.24918829,0.49157944,-0.2887705,0.21371849,-0.888188,0.32289934,-0.34211776,-0.30439112,-0.36212933,-0.17780064,-3.1089325,0.060730346,-0.082928665,-0.11750063,-0.15521605,-0.18762021,0.21428385,-0.55866605,-0.5284674,0.07713813,-0.009588377,0.6875174,-0.09528207,0.114756145,-0.27450284,-0.32679695,-0.30572554,0.22701469,0.07538711,0.42311853,-0.0052197594,-0.42035535,-0.08803382,-0.17227899,-0.24212892,0.09633031,-0.6482985,-0.45968297,0.019825177,-0.519037,-0.24493913,0.6349994,-0.27688923,0.08223891,-0.1730552,0.022769092,-0.14733616,0.27821338,0.065292105,0.16337961,0.039477088,-0.11952081,0.06046046,-0.25660738,0.34497344,0.09336219,0.22663005,0.37207827,-0.07916193,0.073766164,0.42396563,0.4801869,-0.10442998,0.81288683,0.44598275,-0.17471042,0.19979021,-0.3286112,-0.23618014,-0.37408683,-0.33775777,-0.04805025,-0.43252915,-0.48997343,-0.2211557,-0.4069986,-0.76393473,0.48751196,-0.14401348,0.046028648,0.024604466,0.35700002,0.48478395,-0.04415379,0.08783611,-0.057375953,-0.089620255,-0.4514361,-0.18334574,-0.5873229,-0.29792735,0.11761169,1.0055187,-0.17122044,-0.021048455,0.10501349,-0.16111363,0.021950781,0.08808816,0.02370129,0.090692185,0.5389925,-0.08502516,-0.62542796,0.3919841,-0.25014317,-0.33969882,-0.49372882,0.23128563,0.54366666,-0.6292665,0.5282636,0.418894,0.113701105,-0.12733412,-0.38720843,-0.12612054,0.14567041,-0.20912199,0.3498933,0.1462836,-0.7386618,0.4105533,0.27293926,-0.27706397,-0.65421677,0.60137546,0.0918033,-0.4233807,0.019251687,0.31922492,0.1413119,-0.04573626,-0.2112744,0.2536958,-0.5135774,0.3345559,0.1515612,-0.08733619,0.26838124,-0.2112573,-0.16712144,-0.7090793,-0.04355202,-0.46336308,-0.4167098,0.24906088,0.12296032,0.2018296,0.19577266,0.075647764,0.4493718,-0.4967752,0.07651194,-0.059885774,-0.24008557,0.4999646,0.28506088,0.47623184,-0.38092646,0.4507206,-0.13178448,-0.1384997,0.14261284,0.11629566,0.50007015,0.059629984,0.25285777,0.025124613,-0.19066706,0.36945036,0.665729,0.28447506,0.32603768,0.12256865,-0.18671516,0.21819106,0.088082895,-0.01599931,0.07729652,-0.40638202,-0.14473216,-0.051443946,0.1113993,0.38903373,0.21496102,0.2491142,-0.1593511,-0.275959,-0.024525246,0.19635044,-0.1530948,-1.230868,0.3678611,0.026734272,0.66754967,0.4502477,0.03363333,0.027487481,0.50906885,-0.17689861,0.09688163,0.29161713,0.028891897,-0.4261239,0.49150264,-0.45341733,0.45618263,-0.08967934,0.013583059,-0.04496712,-0.06841009,0.45060632,0.8118432,0.00088392023,0.18434699,0.09597126,-0.29890347,0.09476611,-0.36264548,0.012066706,-0.62029266,-0.13951588,0.73424894,0.407587,0.3847416,-0.17172284,-0.007073897,0.07477499,-0.15303564,0.117879786,0.18448733,0.11953318,0.01929662,-0.74519914,-0.11573254,0.60878533,-0.33175096,-0.054146387,-0.023556137,-0.32615665,0.30413148,-0.1777597,0.11699905,-0.08419573,-0.63691956,-0.07752557,-0.6194095,-0.31449005,0.4181698,-0.17048372,0.108140625,0.25294787,0.052541148,-0.33193308,0.3472646,0.20161733,0.6017775,-0.03152938,-0.22276989,-0.45647606,0.12058341,0.19085659,-0.24903777,-0.08959874,-0.3004772,0.2372642,-0.5964757,0.3371788,0.008439723,-0.23284525,0.020104071,0.013827366,0.1911499,0.5449535,-0.24408334,0.0040034573,0.12491004,-0.07126602,-0.32993424,-0.1741795,-0.27843124,0.109210625,0.36363927,-0.034177255,-0.034438156,-0.1200696,-0.08872043,0.44833165,0.11651315,0.6005971,0.5417922,0.24624777,-0.25842008,-0.1407709,0.09492746,0.549353,-0.003961722,0.015640628,-0.4719654,-0.4751159,-0.24692819,0.31027073,-0.26418427,0.22614048,0.1454491,-0.15182301,0.7931656,0.031764634,1.067427,0.034895133,-0.3348692,0.086341925,0.51791275,-0.042036705,-0.06596263,-0.41372985,1.0754244,0.5629017,0.03525187,-0.024590569,-0.25771052,-0.15496634,0.048159447,-0.18513349,-0.2115188,-0.12001983,-0.6156127,-0.4075777,0.20793696,0.25353935,0.25758517,-0.17172052,0.25683448,0.20788985,0.043062653,0.06994519,-0.55938953,-0.19116326,0.3516021,0.25837976,-0.014964261,0.12511542,-0.4679028,0.30370635,-0.4350301,0.0024847507,-0.23460563,0.122626886,0.10186215,-0.30854887,0.22194748,0.018534418,0.24012947,-0.4147787,-0.29204887,-0.15735964,0.41482002,0.020689217,0.13354158,0.6054203,-0.19182462,0.059335895,0.0031145096,0.644463,1.214638,-0.12586649,0.08132924,0.51271904,-0.3302084,-0.6241924,0.13926066,-0.30707338,0.11001615,-0.03376399,-0.12207409,-0.65317726,0.32599592,0.1246572,0.0103978515,0.0058217626,-0.5864367,-0.31691507,0.421744,-0.32559434,-0.25115865,-0.32678065,0.09715922,0.7796974,-0.28427985,-0.18433253,0.12600069,0.36812267,-0.24515203,-0.5866954,-0.006842742,-0.41515407,0.25513905,0.26670164,-0.15251406,-0.21583298,0.045049675,-0.35105243,0.17095813,0.26029807,-0.39671654,0.07695187,-0.41731772,-0.07158079,0.92536205,-0.20162134,0.039347198,-0.43850234,-0.48061046,-0.8837941,-0.34791845,0.33334407,0.22693805,0.05972944,-0.6455712,-0.0031017805,-0.17734791,-0.32097843,-0.18552312,-0.31973717,0.4800366,0.037848677,0.29577217,-0.19992712,-0.7862895,0.1881316,0.14608933,-0.46474984,-0.60608155,0.59654045,0.102050275,1.083023,0.07205329,0.034898933,0.45453408,-0.54487234,-0.099681094,-0.2512886,-0.051496625,-0.7591375,0.15119423 +236,0.35110182,-0.011837019,-0.42711157,-0.15438485,-0.2728315,0.057032235,-0.18370485,0.34303832,0.24312714,-0.48804197,-0.04217497,0.0043106205,-0.029060928,0.21309566,-0.097234674,-0.50029767,0.15667023,0.17088433,-0.46146673,0.46374914,-0.39157054,0.14094786,-0.05375162,0.3636213,0.12721664,0.27997,0.043229945,0.05788972,-0.20555265,-0.14921431,-0.116575345,0.23990944,-0.62917364,0.30454534,-0.19360031,-0.2248408,-0.033932235,-0.43167967,-0.4489638,-0.68382174,0.21292695,-0.7039443,0.46371222,-0.005560279,-0.29899696,0.3138702,0.2603199,0.28095707,-0.12728605,-0.1396699,0.223253,-0.26519197,-0.042983163,-0.3451455,-0.13714704,-0.3247244,-0.6014986,-0.07647603,-0.4672578,-0.1411267,-0.012592708,0.18554333,-0.22968438,0.044465244,-0.054758217,0.65052575,-0.4365325,0.26216277,0.30854008,-0.23631923,0.1440275,-0.57960665,-0.14405094,-0.017681006,0.009899518,0.023961876,-0.32864478,0.23320355,0.120728254,0.4022381,-0.08886729,-0.23451708,-0.25430468,0.012663292,0.15603791,0.4310717,-0.20516391,-0.12588434,-0.07700082,-0.017796755,0.1662123,0.03842304,0.15628217,-0.18621847,-0.07184597,-0.016444147,-0.18725505,0.44636232,0.56690294,-0.22011045,-0.13681868,0.30323866,0.60320187,0.07315893,-0.26434687,-0.003936861,0.12522316,-0.43753862,-0.13903823,0.04429273,-0.21632631,0.34569174,-0.23629354,0.14888634,0.7174838,-0.2792522,-0.10679763,0.28054434,0.26255155,0.22849713,-0.4054461,-0.22568265,0.3306189,-0.47803313,-0.042993437,-0.19802353,0.7269902,0.16580865,-0.5730658,0.2711451,-0.43899032,0.004998573,-0.018937783,0.4175152,0.8244749,0.59279346,0.28011698,0.7307909,-0.44479033,0.16533484,-0.10047917,-0.18937649,0.17572857,-0.21422291,0.16310632,-0.43139532,0.02060234,-0.13110694,-0.15953696,0.1262788,0.40219837,-0.53922284,-0.10860685,0.24288453,0.9551373,-0.27344897,-0.25544742,0.71328,0.9252601,0.946958,0.07024963,0.886175,0.21205536,-0.088550486,0.05483928,-0.34805053,-0.7541137,0.13432012,0.1433226,0.23276493,0.20603204,0.29070082,0.09740038,0.36767575,-0.37394413,-0.0057019764,-0.14730246,0.5680297,0.15843354,-0.110549346,-0.29083198,-0.21187617,0.037247267,-0.14099756,0.102882944,0.3465405,-0.14692304,0.495968,-0.032631177,1.4669329,-0.024972856,0.11015361,0.050993364,0.45633104,0.2730894,-0.3888614,-0.03925665,0.43550974,0.2716845,0.048146766,-0.40765563,0.13294171,-0.10531999,-0.42874065,-0.21566205,-0.3461237,-0.12328037,-0.1191229,-0.46647945,-0.29955846,-0.0498301,-0.21152087,0.33670425,-2.905026,0.06503707,0.01006034,0.37888503,-0.22927563,-0.24230759,-0.1294768,-0.5070392,0.24488075,0.2451539,0.40326375,-0.6401638,0.53725356,0.45579553,-0.46937674,0.03308008,-0.6119359,-0.14755559,-0.122292824,0.2723563,0.047725376,0.14479986,0.04697543,0.16933663,0.43428662,-0.118191384,0.14960672,0.3264926,0.42538577,0.10456954,0.31341377,0.10452504,0.46271223,-0.25811592,-0.22400428,0.34569788,-0.6286398,0.09557929,-0.1335181,-0.011411265,0.57054955,-0.21304886,-0.85436386,-0.5456454,0.044900537,0.9525088,-0.23900798,-0.4221857,0.18444204,-0.5170347,-0.32864198,-0.04066273,0.23597728,-0.036359552,-0.13574837,-0.71127063,-0.009284266,-0.0838114,0.18434341,0.00013858399,-0.083980836,-0.3145927,0.630014,-0.15659025,0.33674827,0.2925494,0.25374597,-0.40760472,-0.32667843,0.019219214,0.6861887,0.2944985,0.20115551,-0.32448497,-0.25827608,-0.16193359,-0.11532407,0.069673896,0.6007457,0.59231466,-0.1363132,0.15676464,0.34228903,-0.14647989,-0.117736995,-0.2016267,-0.3931973,-0.053540263,0.009386301,0.5207635,0.6971382,-0.15752013,0.4498269,-0.023852007,0.18659125,-0.24941047,-0.6440635,0.4537688,0.6478392,-0.062565796,-0.38892302,0.4817195,0.3673932,-0.3006141,0.3613007,-0.5166969,-0.3142007,0.3025587,-0.17699544,-0.4209682,0.06085532,-0.32004303,0.16712105,-0.5374035,0.40573677,-0.21683714,-0.72213465,-0.65691584,-0.21140857,-2.7223532,0.04886803,-0.17586446,-0.18197212,-0.018090231,-0.112059996,0.11670776,-0.42748457,-0.4452179,0.3296992,0.08093894,0.68980396,-0.026323361,0.14078589,-0.2436062,-0.24009922,-0.26340804,0.21137054,0.14178397,0.14127643,0.021949146,-0.5081504,0.06469698,-0.18630132,-0.3761945,0.051054128,-0.55008096,-0.49709532,-0.14679646,-0.53450406,-0.1499926,0.64095294,-0.30486837,0.016092334,-0.3975596,0.026622197,-0.065203734,0.31412593,0.15429032,0.12042511,-0.0037821191,-0.020196727,-0.07088627,-0.38798258,0.18446657,0.06732241,0.3427851,0.5490612,0.11608841,0.10808389,0.47346026,0.65739304,0.05520361,0.8233176,0.31690487,-0.14549866,0.25086066,-0.14507338,-0.27611935,-0.5104879,-0.24918365,0.05153071,-0.41149637,-0.27955654,0.114046335,-0.48575643,-0.7643705,0.3916208,-0.012934421,0.030058239,-0.031786073,0.25100562,0.45251036,-0.21867041,-0.009712792,-0.04348267,-0.12895434,-0.4694793,-0.3554277,-0.59435236,-0.41840282,0.2824121,1.1825752,-0.24317773,-0.08798573,0.0814323,-0.29795668,-0.03319342,0.27984402,-0.24701382,0.09006761,0.592348,0.0055679297,-0.566109,0.26966998,-0.19279115,-0.14070787,-0.64867646,0.11109984,0.5190128,-0.65176827,0.6883002,0.1748649,0.045957346,-0.20423481,-0.49291372,-0.24475494,-0.035910588,-0.36991328,0.4042646,0.34608665,-0.7839814,0.42400226,0.2336696,-0.48849455,-0.6448174,0.30655622,-0.11405457,-0.2442641,-0.19412242,0.23971531,0.047409873,0.09490675,-0.070626415,0.16508596,-0.47538072,0.115922116,0.14972374,-0.063863195,0.25946456,-0.24292634,-0.25183502,-0.6314762,-0.25235787,-0.4013906,-0.36995983,0.21575768,-0.013581238,0.27686635,0.30901104,0.24858478,0.34616494,-0.14764626,0.112785675,-0.16528694,-0.26935044,0.43437955,0.39577866,0.52084166,-0.39404836,0.5838544,0.09320467,-0.09497661,0.07186967,0.10237876,0.378468,0.11292716,0.40033635,0.13624091,-0.1483229,0.14983793,1.088863,0.10071,0.6184841,0.0140353525,-0.07713846,0.231743,-0.038125243,0.14572828,0.02018909,-0.43271875,0.039461784,-0.212625,0.23279102,0.32964873,0.10164775,0.46110293,0.019920353,-0.400104,-0.05208389,0.10986584,0.054503866,-1.3555633,0.14233966,0.24166271,0.8956009,0.44020352,0.08358063,0.006899029,0.80965036,-0.15140118,0.09954995,0.27181622,-0.15903161,-0.38074747,0.4699364,-0.7607192,0.48977828,-0.1065768,-0.102567986,-0.04535877,-0.08745616,0.4109961,0.7653602,-0.22935179,-0.03408293,0.08924447,-0.375245,0.20779867,-0.40526453,0.19188523,-0.51600957,-0.33433074,0.6684571,0.5553172,0.46245125,-0.16656373,-0.07466928,0.12635168,-0.09661317,-0.06957719,0.06445496,-0.08944927,0.08142858,-0.4941317,-0.28517362,0.5168475,-0.12316416,0.16400085,0.18692799,-0.07245203,0.28953695,-0.08886234,-0.19837794,-0.05752558,-0.67945594,0.03808754,-0.11459809,-0.53585935,0.646722,-0.055901337,0.060602553,0.25944844,0.02381364,-0.34881932,0.43957645,0.1661249,0.6402763,-0.06945413,-0.050546367,-0.33499864,0.2915883,0.14065109,-0.17527132,0.18344977,-0.22808851,0.20820653,-0.548885,0.506128,-0.18967767,-0.17734292,-0.047964115,-0.14053433,0.13593504,0.61772484,-0.075226255,-0.13352357,-0.07494099,-0.26153347,-0.3617343,-0.059864573,-0.19214915,0.15671323,-0.014565569,-0.24517858,-0.09147833,-0.22636683,-0.20437123,0.24280278,0.05152723,0.21275647,0.3834497,-0.03889378,-0.38437694,-0.109086476,0.124288835,0.52050316,-0.10102205,-0.23316121,-0.17868793,-0.40069333,-0.42979285,0.5322426,-0.009131568,0.3425127,-0.029279198,-0.25261825,0.93771404,-0.082771935,1.0606743,0.09689097,-0.28191173,0.048801363,0.41234466,-0.025004659,0.07088997,-0.34543937,0.662787,0.46924093,0.00028315187,-0.0096931625,-0.4044424,0.042718988,0.31215557,-0.17556909,-0.24455823,-0.04280961,-0.6888209,-0.04021006,0.24606612,0.16947167,0.24907576,-0.15589686,0.18567681,0.3662665,-0.02380838,0.16863933,-0.5348748,0.06467463,0.2684405,0.3121807,0.098232165,0.11570292,-0.43640354,0.26257688,-0.35117745,0.09419044,-0.029320598,0.14177403,-0.1019479,-0.30980793,0.19702376,0.13899925,0.34177676,-0.4440009,-0.24984105,-0.30893967,0.5518504,0.2735776,0.23589255,0.5313344,-0.08897005,-0.014401691,0.040132586,0.47456455,0.7620999,-0.15456775,-0.050996512,0.4286871,-0.3644729,-0.7432103,0.39242712,-0.27247706,0.2259494,-0.026955035,-0.28503403,-0.5482987,0.18637227,0.32091925,0.020703586,0.18627922,-0.4846315,-0.089739546,0.27870277,-0.3155443,-0.20247634,-0.21713789,0.077605926,0.5531046,-0.13239273,-0.0052585984,0.046340723,0.32110834,-0.21233113,-0.30057213,-0.19548114,-0.39529613,0.33939832,-0.02547124,-0.276791,-0.1773723,0.056656342,-0.44075865,0.123419695,0.18674874,-0.22983514,0.024555266,-0.15568998,0.09786188,0.67785615,-0.16559693,0.15591024,-0.502439,-0.4221796,-0.7603652,-0.213454,0.3423429,0.100219086,-0.1032819,-0.74465173,-0.117025495,-0.12243058,-0.14940678,-0.05391604,-0.5793744,0.4875075,0.07821659,0.0432314,0.09822183,-0.7878369,0.119687356,0.22600596,-0.21061902,-0.5097968,0.46106032,-0.26588634,0.90088433,0.0448882,0.07672101,0.14143707,-0.35609648,0.26022193,-0.34697834,-0.24301597,-0.6209666,-0.01755313 +237,0.43638,-0.13999018,-0.41481283,0.00067459315,-0.22628573,0.23859379,-0.10752074,0.26619557,0.23456396,-0.48267213,-0.12208838,-0.16097513,-0.01599891,0.15108141,-0.11544009,-0.49988243,-0.010816395,0.17792954,-0.41314703,0.44888186,-0.36345798,0.5112325,0.13756384,0.19449356,-0.015470548,0.27988535,0.14482868,-0.08608677,-0.26553774,-0.24948277,-0.28046206,0.17228992,-0.46162495,0.2969361,-0.19022226,-0.37396023,-0.034425378,-0.31411654,-0.29590362,-0.5065065,0.26576322,-0.7217269,0.4017013,0.061983977,-0.17431895,0.2507979,0.026506769,0.19013461,-0.07683318,0.038230296,0.06904342,-0.18598461,-0.09488899,-0.28544107,-0.20364091,-0.3118783,-0.6054931,0.08172325,-0.48175558,-0.07568474,-0.3628385,0.13686608,-0.3048713,-0.11271063,0.040908337,0.27474523,-0.3225855,0.114239015,0.024384592,-0.2612258,0.01868898,-0.3714787,-0.12544855,-0.015614892,0.31046477,-0.26727274,-0.08490967,0.22101416,0.20609467,0.525416,0.038309958,-0.096061654,-0.4247158,-0.038195383,0.18817271,0.54232043,-0.048147976,-0.28426617,-0.06955062,-0.17924313,0.07925222,-0.025691288,0.16278,-0.11320257,-0.15806638,0.020209944,-0.258233,0.3250496,0.45584145,-0.46980223,-0.33774784,0.3431397,0.58536655,-0.06592051,-0.18006301,-0.025821792,0.045219302,-0.39490685,-0.10595035,0.09254245,-0.09091205,0.48634365,-0.064158276,0.3913769,0.5736159,-0.2356925,0.101992846,0.18562137,-0.010634646,-0.17161094,-0.031340234,-0.057127785,0.09236098,-0.42376342,-0.047994275,-0.15948485,0.9013547,0.08218352,-0.77471167,0.42435673,-0.46843365,0.0924347,0.024144167,0.47441202,0.62651724,0.36363062,0.24181525,0.6333208,-0.42483097,0.0012827112,-0.13211969,-0.32886252,-0.050059047,-0.21676722,0.07595108,-0.5208879,-0.025816875,0.17269431,0.038796272,0.09036807,0.5962087,-0.41612265,-0.116831936,0.15002765,0.8451766,-0.26964802,-0.22295497,0.74280614,1.0418189,0.8697714,-0.06769402,1.0590153,0.21793206,-0.21169662,0.014445654,-0.47629255,-0.5486134,0.24633925,0.24399115,0.10449261,0.19690251,0.15124235,0.08225517,0.3357385,-0.31977445,0.14472114,-0.13087991,-0.030502,0.122983,0.054051634,-0.3376638,-0.2905993,0.10565443,-0.03944508,0.26776385,0.30261418,-0.23727076,0.47515196,0.097552285,1.5491103,0.0068150247,0.16365083,-0.016979376,0.39430055,0.14088261,-0.04512038,-0.13921702,0.14452489,0.2550123,-0.02450956,-0.44650063,0.036983218,-0.1517144,-0.50978655,-0.19636194,-0.2786687,-0.26156142,0.059304815,-0.39335623,-0.18234941,0.007621863,-0.5291993,0.44439772,-2.8207793,-0.16114746,0.0046486715,0.32377344,-0.29482365,-0.4197395,-0.15932025,-0.46297947,0.3436353,0.30702624,0.40430504,-0.54268664,0.43413258,0.3789265,-0.4336823,-0.26702687,-0.4396012,-0.019560274,-0.09600491,0.32490328,0.098459825,-0.17546546,-0.033045854,-0.055362258,0.42330083,-0.20424625,0.006717133,0.3327836,0.37880436,-0.04439407,0.32822004,0.12402432,0.48401204,-0.3209396,-0.22265889,0.43653408,-0.3918524,0.25204295,-0.16656879,0.1708373,0.23207948,-0.39974114,-0.865028,-0.6561136,-0.2576631,1.263595,-0.03796653,-0.36313137,0.18751357,-0.21256375,-0.35706067,-0.094077155,0.44520822,-0.021691512,-0.009374251,-0.7566219,0.053720884,-0.11013162,0.24287224,0.033581637,-0.08495731,-0.38797125,0.7534137,-0.097029634,0.41946888,0.23825347,0.32537916,-0.28827652,-0.2720124,0.18581073,1.0912226,0.23711495,0.12265158,-0.2807972,-0.28086078,-0.25505885,-0.17498474,0.054916237,0.42594975,0.5295797,0.05246889,0.052099835,0.2956845,-0.021735007,0.05275954,-0.16229261,-0.18960777,-0.16455682,-0.061800115,0.6237017,0.6304894,-0.0914656,0.48375574,-0.09754533,0.21320473,-0.25556752,-0.36587647,0.5978604,0.7780417,-0.09210837,-0.19904771,0.5151769,0.43623313,-0.20256475,0.34637123,-0.63794476,-0.51855296,0.3488366,-0.26357976,-0.3526524,0.15699165,-0.35716507,0.12548111,-0.7836215,0.19160937,-0.18433394,-0.46615192,-0.55643463,-0.13337724,-3.725108,0.0979087,-0.086682186,-0.13839011,0.077215634,-0.058342535,0.08898343,-0.55200315,-0.2598829,0.020120064,0.042197667,0.73901594,0.024216177,0.21005961,-0.34719372,-0.26770565,-0.38394484,0.1418788,0.028507296,0.3307419,-0.05399395,-0.34387496,0.08889455,-0.24833645,-0.23966263,-0.020131094,-0.5540624,-0.5065735,-0.1293628,-0.3038893,-0.34360543,0.6548873,-0.49996573,0.07333328,-0.25924915,-0.030610846,-0.11926945,0.34482735,0.1335102,0.039651744,0.13731349,-0.17543027,0.103042655,-0.36962894,0.47843155,0.108624406,0.36209366,0.6562966,-0.17297404,0.110145964,0.50908124,0.5799037,-0.02539103,0.8975596,0.31718817,-0.11254149,0.25245038,-0.18285741,-0.25920728,-0.5103608,-0.19126013,-0.043787237,-0.45317847,-0.4783549,-0.13818344,-0.32403633,-0.7905317,0.45341438,0.074017145,0.12655383,0.017460395,0.42788312,0.41838145,-0.13092309,-0.15191674,-0.11244125,-0.062501796,-0.37400904,-0.41700986,-0.61292315,-0.51754636,0.12474156,0.8326145,-0.16900086,-0.001323172,0.0928054,-0.15156971,-0.0008376581,0.09907929,0.26394925,0.11454026,0.3516226,-0.062338296,-0.61978394,0.57505375,-0.23895206,-0.09140999,-0.61245584,0.08283542,0.49172217,-0.6107926,0.32281655,0.31304947,0.06582812,0.2354425,-0.2707639,-0.14786525,-0.19810374,-0.24716496,0.19708085,0.18727128,-0.669272,0.3682766,0.17575036,-0.1941673,-0.71667725,0.4405737,-0.008506275,-0.3089912,-0.076821625,0.22176807,0.20051636,-0.008518358,-0.05552849,0.097018346,-0.49908128,0.3479715,0.16357836,-0.038149234,0.5316537,-0.26006737,-0.21571398,-0.5333464,0.02278986,-0.44566363,-0.30514804,0.06884362,0.2611098,0.15828148,0.34800646,-0.04416291,0.31349605,-0.36260456,-0.013548854,0.011850621,-0.09200709,0.28878635,0.25991753,0.48302937,-0.36198044,0.520758,-0.0470743,0.038368646,0.02019213,0.070895016,0.47783908,0.10943138,0.37702852,0.06256393,-0.28356427,0.29103225,0.757211,0.22226553,0.34134555,0.07185777,-0.23836644,0.23184907,0.10071973,0.08954717,-0.029461252,-0.48331696,0.06752331,-0.14439051,0.11849845,0.39833084,0.02944228,0.39642173,-0.21517716,-0.18971276,0.13527273,0.20356536,-0.11345129,-1.0373728,0.21641573,0.10015384,0.80035245,0.34204036,-0.012947276,0.14972101,0.64854324,-0.25520685,0.11712054,0.11245419,-0.15227894,-0.47176307,0.46098775,-0.6768907,0.5794935,-0.08466156,-0.025414703,-0.010443538,-0.22313963,0.22890289,0.7259076,-0.09914307,0.014630163,0.080050714,-0.3466925,-0.037016843,-0.3238311,0.29384956,-0.5621053,0.013061878,0.73911434,0.46978608,0.40718192,-0.06527306,-0.0009146812,-0.06570667,-0.012332167,0.065254435,0.010301128,0.1787304,-0.12511566,-0.64777744,-0.14279453,0.59871536,0.11305463,0.23853958,0.11648774,-0.21632612,0.27714056,-0.109464355,-0.12929139,-0.18416713,-0.52065146,0.08625029,-0.283123,-0.39292118,0.46092027,-0.01299497,0.36369935,0.2015698,-0.018504279,-0.22581993,0.4294782,0.33052805,0.5949893,0.18755439,-0.124678545,-0.4149486,0.15660696,0.16712297,-0.22669761,-0.13128744,-0.18417566,0.15849964,-0.580229,0.258332,-0.15872802,-0.23565663,0.12932119,-0.2127272,0.086907424,0.538142,0.043471847,-0.04440224,0.1178258,-0.005841621,-0.26976985,-0.018562531,-0.1110772,0.3315635,0.15776572,-0.29147413,0.014285852,-0.24773487,-0.14433686,0.16268714,0.07291473,0.3421495,0.36348745,-0.00687434,-0.29439265,-0.032148894,0.14003067,0.50162935,-0.10032749,-0.029888174,-0.33061886,-0.39238006,-0.42411277,0.25926754,-0.11102772,0.09708009,0.12515897,-0.31090546,0.70295566,-0.12621881,0.9425603,0.1688495,-0.23787351,0.20110883,0.45966095,0.0852798,0.09018624,-0.3919351,0.8944801,0.5161325,-0.029441701,-0.21088336,-0.2694808,-0.036611516,0.09226946,-0.2698634,-0.26506332,-0.0072855502,-0.7510253,-0.22625835,0.20910873,0.27193722,0.15273523,-0.027852235,0.11044635,0.17699607,0.11827338,0.23103765,-0.5613738,-0.2681767,0.4541767,0.31775624,-0.118167095,0.15471978,-0.37824297,0.39887497,-0.58184105,-0.015539825,-0.2489398,0.12922154,-0.2635558,-0.25810724,0.32735556,0.24682339,0.41955218,-0.19517139,-0.32851282,-0.3706648,0.3522759,0.06523808,0.19028838,0.3995404,-0.16703613,-0.10166957,0.06011685,0.41395804,1.1349895,-0.29724666,-0.054329198,0.4725361,-0.23541775,-0.41407278,0.23248897,-0.31234768,0.20149885,-0.0047611096,-0.22671266,-0.39873776,0.31331328,0.17745993,0.13691387,0.13783811,-0.51397485,-0.2291181,0.17610474,-0.48510286,-0.2182658,-0.136988,0.1185342,0.63040817,-0.22152467,-0.16765714,0.039007246,0.49007398,-0.2522964,-0.47403008,0.020938788,-0.31221104,0.17866392,0.15979388,-0.22565769,-0.13216452,0.096098505,-0.3660982,0.013034539,0.27555585,-0.45367178,-0.011139842,-0.32983568,0.09662274,0.819456,-0.15470622,0.3087214,-0.55758536,-0.38992795,-0.87861836,-0.39855894,0.47595698,0.15891838,-0.12497292,-0.40650406,-0.12728682,-0.10620352,-0.22407396,-0.02871791,-0.54710144,0.43723482,0.2264713,0.25703952,-0.044351645,-0.7693779,-0.057904363,-0.020966738,-0.32990313,-0.62267405,0.43016073,-0.0263778,0.86771315,0.029174816,-0.021879299,0.42847472,-0.49878556,0.03128038,-0.21946125,-0.1350424,-0.75346375,-0.024991065 +238,0.21964554,-0.28227362,-0.482843,0.013751794,0.02459614,-0.026654245,-0.25895324,0.6054237,0.31187388,-0.2966067,-0.3044397,-0.13195105,-0.07856973,0.37422895,-0.17687981,-0.412482,-0.008759906,0.12094594,-0.25082514,0.5717358,-0.27618524,0.053426106,-0.012534936,0.47414434,0.23821743,0.09076238,0.16926579,0.112879865,-0.10878586,-0.16126658,-0.059215363,0.382768,-0.4175636,0.1473612,-0.44223085,-0.33837947,-0.13477623,-0.6556956,-0.4976621,-0.7626409,0.31601417,-0.8214143,0.45598245,0.08769097,-0.23706575,0.26448217,0.03146091,0.15754333,-0.07609554,-0.15266947,0.038974106,-0.20180541,-0.07784363,-0.01877963,-0.18859571,-0.17453885,-0.60113627,0.023864733,-0.42984918,0.008692701,-0.19452816,0.17331348,-0.34302345,-0.05664393,0.08840089,0.49529442,-0.37040356,0.031557575,0.08156844,-0.13083999,0.21422233,-0.6773827,-0.344744,-0.078325436,0.38431406,-0.17046528,-0.18034606,0.18634684,0.17711301,0.46646562,-0.23429756,0.004617249,-0.4436444,0.055820614,0.045484584,0.6266623,-0.2070998,-0.6865911,-0.10964054,-0.054277066,0.16390501,0.18195017,0.021354685,-0.12680879,-0.051370252,-0.1949652,-0.19879852,0.42580009,0.5382171,-0.13897507,-0.15603621,0.2459377,0.3950522,0.4644023,-0.13832536,-0.0331793,0.11094951,-0.6248713,-0.10302616,-0.20947309,-0.1803204,0.76003766,-0.104297124,0.40262413,0.37105343,0.016003335,-0.02628834,0.06259627,0.047745276,-0.20439868,-0.240436,-0.27512887,0.2747791,-0.33200866,0.3049402,-0.036686167,0.6056703,0.10234807,-0.727132,0.42824265,-0.4012716,0.17706394,0.05734312,0.5338164,0.77952605,0.24058478,0.5194758,0.69042236,-0.34953198,0.02040642,0.081070475,-0.23445934,-0.0069336295,-0.23614435,-0.13467866,-0.46122786,-0.06184717,0.034272105,0.060699493,0.3537053,0.4178481,-0.44196627,-0.16513604,0.3536822,0.8057053,-0.1090348,-0.009235665,0.7686467,1.1569347,1.0486773,-0.08143254,1.1207716,0.057055008,-0.22062378,0.13852562,0.092365086,-0.8423589,0.22708143,0.32563427,-0.119872905,0.30328658,0.11679254,-0.11043473,0.42406604,-0.5160907,-0.0592812,-0.117968984,-0.14621447,0.24116577,-0.15127142,-0.48051107,-0.184992,-0.15341358,0.04646786,0.07613122,0.2698321,-0.1863712,0.4405589,-0.05348596,1.4750015,-0.0595779,-0.05861729,0.112971164,0.5421855,0.26388538,-0.18432756,-0.056142177,0.25507855,0.36734983,0.09463004,-0.5266497,-0.00681976,-0.24190404,-0.31465372,-0.05442916,-0.2711459,-0.23592205,0.09423357,-0.31531823,-0.24438834,-0.156431,-0.3882077,0.4763951,-3.1279957,-0.15775819,-0.08313358,0.1845574,-0.15361744,-0.30572978,-0.26140884,-0.4182347,0.5437924,0.40662813,0.5015984,-0.5627375,0.03880747,0.42341623,-0.5652928,-0.13794005,-0.5479767,-0.053741198,0.027140781,0.4804124,0.17228232,-0.1431691,0.07646102,0.24475001,0.51282793,0.3023071,0.1118358,0.34421143,0.42129922,-0.10806664,0.23581243,-0.24644287,0.35867834,-0.39090946,-0.1846308,0.3905387,-0.31444564,0.3168397,-0.47050261,0.20410043,0.5362986,-0.37462536,-0.8126593,-0.5758627,-0.1241787,1.2635552,-0.027342834,-0.5151248,0.2696133,-0.43272552,-0.3239288,-0.21898215,0.77644986,-0.20402704,-0.053509522,-0.7187634,-0.1342411,-0.0722919,0.07725964,0.0021169707,-0.14954998,-0.5478401,0.64450616,0.080878876,0.36195898,0.47975025,0.090489,-0.24599327,-0.48568916,0.08832828,0.7432611,0.370916,0.2226821,-0.39176568,-0.014555818,-0.31896433,-0.0100459205,0.0055516423,0.5607732,0.5841524,-0.110129565,0.23194478,0.28093135,0.33447763,0.10643797,-0.108735375,-0.27617696,-0.2586902,-0.04293755,0.6413147,0.8649978,-0.20176655,0.10676362,0.064252906,0.100162126,-0.1555274,-0.2184496,0.53618234,1.0350643,-0.08829239,-0.31570005,0.6328959,0.46026012,-0.29959273,0.41044676,-0.54549366,-0.3042091,0.36067834,0.01602594,-0.62443894,0.20398183,-0.38656172,0.022335136,-0.7212639,0.10182709,-0.13400063,-0.32874814,-0.6535633,-0.11173547,-3.1320832,0.07373466,-0.1986805,-0.30925998,-0.28767493,-0.26083672,0.20709918,-0.39971498,-0.6087157,0.21714611,0.04436527,0.54008687,-0.19809346,0.034045514,-0.31237426,-0.39093986,-0.34878758,0.077119775,0.1290836,0.35784677,0.030485958,-0.37892914,-0.27429348,-0.29003355,-0.39274368,-0.046020467,-0.46854365,-0.26244125,-0.089876376,-0.4044931,-0.16465382,0.54516596,-0.38994455,-0.012391768,-0.2888029,-0.030731937,-0.15945838,0.19129854,0.049037512,0.1323785,-0.106042646,-0.16939257,0.056088746,-0.09838434,0.45840606,0.083284,0.1810105,0.40635493,-0.14369392,0.19159742,0.37332046,0.71049637,-0.37708202,1.1014323,0.5009933,0.03457148,0.22907078,-0.09645948,-0.27992937,-0.406654,-0.13973726,0.1724055,-0.42513156,-0.52430123,0.017936429,-0.3995172,-0.7836501,0.5217976,-0.116588764,0.37215984,0.12071215,0.08537365,0.5108335,-0.2626138,0.0021742533,0.007376107,0.03051725,-0.4443761,-0.33682773,-0.55677503,-0.5310984,-0.07695056,0.6731549,-0.19275011,0.10191231,0.311563,-0.31997627,-0.19605894,0.13763674,0.09419551,0.042320352,0.35028538,0.094951786,-0.7154939,0.5112203,-0.11517793,-0.2188195,-0.6010557,0.11798058,0.46529353,-0.56377155,0.71613127,0.51360685,-0.09194077,-0.3012242,-0.6238031,-0.31007996,-0.28474298,-0.18531992,0.32234588,0.36173713,-0.71630436,0.40221846,0.2339478,-0.1743568,-0.6863354,0.5208283,-0.055989195,-0.11970409,0.04087838,0.34878838,-0.024312416,0.06610246,-0.023844272,0.23390807,-0.15235622,0.28741595,0.0041265837,-0.058408562,0.33516538,-0.266255,-0.010434779,-0.5989898,0.12564187,-0.56444496,-0.24577598,0.37242332,0.1288206,0.19949055,-0.019424967,0.113981746,0.26484078,-0.23724282,0.09263575,-0.0970006,-0.23025633,0.23446767,0.47818354,0.6939021,-0.39792904,0.60502416,0.0017355854,-0.18010573,0.034556407,0.0839758,0.31101334,-0.012171361,0.35714248,0.003254056,-0.21038657,0.15554954,0.82120156,0.25524786,0.30168155,0.012543763,-0.02563087,0.44189158,0.111628674,0.1774437,-0.085291624,-0.6533554,-0.05162151,-0.5704884,0.16285141,0.45314622,0.042538125,0.20095284,-0.23339249,-0.23664378,0.022436911,0.30881867,0.19567966,-1.1389391,0.179842,0.12830256,0.8873046,0.42151126,-0.03700375,0.025945565,0.75319767,-0.0014735857,0.11537498,0.50779605,0.11193237,-0.47300777,0.50057083,-0.5553302,0.50255704,0.06442125,0.037287146,0.10532856,-0.14205875,0.4148191,0.60937005,-0.13429219,0.009340875,0.13507278,-0.22907068,0.023536017,-0.44217005,0.18434854,-0.4254926,-0.16455477,0.6148089,0.7169984,0.17141448,-0.20834094,0.052590568,0.00043349713,-0.06760082,0.016279718,-0.01642007,0.09950926,-0.29493165,-0.84711725,0.13572903,0.44796196,0.07077681,0.036475714,-0.055153325,-0.18942426,0.20488088,-0.16658217,-0.06974737,-0.20070155,-0.6953676,-0.06868353,-0.2962104,-0.516879,0.57624036,-0.14460938,0.31663898,0.2788839,0.1116691,-0.28610894,0.3276631,-0.19455247,0.82743263,-0.025608564,-0.0050300304,-0.35389265,0.05582379,0.21710652,-0.22303586,-0.2777044,-0.35621476,-0.14519612,-0.30156574,0.4670569,0.044133324,-0.22263145,0.11911573,0.01898739,0.07640191,0.65515405,-0.032502007,-0.06916621,-0.050168633,-0.044406414,-0.29963598,-0.17952351,-0.17064522,0.34085214,0.2504036,0.07763373,-0.18148798,-0.12515445,-0.17086339,0.24534963,-0.058741793,0.3660448,0.3417648,0.1048427,-0.18915212,-0.10878388,0.1339808,0.69596416,0.118413635,-0.25803795,-0.24983741,-0.51696116,-0.3797743,0.27743116,-0.06938747,0.38671803,0.2106639,-0.0832837,0.40957892,0.111045875,0.9060165,0.09223786,-0.41249064,0.15859209,0.48556533,-0.051666755,-0.18034202,-0.36340192,0.81759673,0.32167906,-0.08912226,-0.077569745,-0.27157316,0.21187903,0.026995482,-0.11914677,-0.11324254,0.015273272,-0.66062015,0.036958024,0.19322127,0.3101226,0.23393963,-0.13424969,0.056223582,0.2464621,0.0773397,0.21636182,-0.3643097,-0.25206387,0.41672292,0.24362469,-0.117847525,-0.036341056,-0.4015877,0.34299365,-0.44225708,-0.29995224,-0.42362344,0.14628112,-0.41452944,-0.36009452,0.21362366,-0.08818444,0.52314484,-0.2932609,-0.20755072,-0.3364106,0.30956924,0.2088935,0.14100459,0.28890723,-0.19963403,0.007465651,-0.00603137,0.46526286,1.018332,-0.3629379,-0.034695942,0.3549403,-0.23811941,-0.5434117,0.24278061,-0.56358653,0.39461938,0.07449674,-0.071837716,-0.5879683,0.077660464,0.054845527,0.09953638,-0.036041316,-0.6386753,-0.26469433,0.11459917,-0.11281233,-0.17176634,-0.39177546,-0.14984636,0.530461,-0.20800517,-0.4134868,0.049071044,0.3094655,-0.0990391,-0.6159366,0.18556829,-0.30665135,0.21099831,0.025186008,-0.36378184,-0.26261708,-0.06476948,-0.5864525,0.30256143,0.18389325,-0.31680235,0.021489287,-0.30172005,-0.07874727,1.0760652,-0.44298783,0.31548443,-0.3598975,-0.44854212,-0.81862444,-0.28776395,0.43237743,0.18313205,0.16744532,-0.5758417,0.109453104,-0.25250298,-0.083604336,-0.07385028,-0.24130225,0.4549179,0.114332296,0.44825277,-0.26170418,-0.6299284,0.22016345,0.006058616,-0.16986042,-0.47178555,0.4759995,0.18927467,0.937529,0.06350758,0.10106223,0.24093068,-0.44975662,-0.17636967,-0.10166901,-0.1801598,-0.50876707,0.19296311 +239,0.45631498,-0.43142018,-0.45334986,-0.000255924,-0.3718727,-0.16152655,-0.16190965,0.46206158,0.2304882,-0.10957685,-0.2607488,0.13966396,-0.034697726,0.30763704,-0.21957901,-0.59618163,-0.17381158,0.022587858,-0.5975861,0.7709812,-0.5286955,0.20345658,0.071844764,0.35727164,0.38472888,0.33990434,0.107432045,-0.028544022,-0.14871019,-0.17184326,-0.1485153,0.11593513,-0.58400923,0.29717973,-0.36622936,-0.28830707,-0.024725242,-0.545356,-0.28199095,-0.85105604,0.12430465,-0.83701485,0.33735484,7.5386124e-05,-0.2770394,-0.18152659,0.07176017,0.24799758,-0.4414667,-0.15615112,0.20984581,0.037381608,-0.045545194,-0.22595072,8.995258e-05,-0.38793918,-0.5120693,-0.118006185,-0.5601796,-0.1276653,-0.06135616,0.23501706,-0.293856,-0.025555234,-0.36860693,0.5707109,-0.32649451,-0.03439448,0.16445395,-0.11843775,-0.0058644367,-0.671997,-0.10249631,-0.16003093,0.28523907,0.13611665,-0.25048757,0.39569044,0.21434046,0.16400626,0.23983772,-0.17118219,-0.2750867,-0.08606425,0.2401743,0.31882238,-0.15873893,-0.41341898,-0.3070262,-0.027575364,0.44135427,0.3114854,0.1495128,-0.2203649,0.04324972,-0.15510112,-0.23256454,0.66709816,0.54981,-0.14597464,-0.18083285,0.39068285,0.52116245,0.46028548,-0.3555409,-0.23881385,0.0029895352,-0.54185015,-0.05189628,0.34227753,-0.056928314,0.6405358,-0.10557008,0.09039719,0.76855576,-0.11972873,0.043145206,0.16127355,0.21230195,-0.24916913,-0.3943664,-0.30124182,0.16002597,-0.65050507,0.13876615,-0.24587758,0.7850504,0.14152458,-0.7212534,0.3348091,-0.5601345,0.18072301,-0.0837754,0.5096321,0.5885679,0.61470723,0.2574475,0.65577734,-0.1212337,0.14370371,-0.102212854,-0.33369386,0.09528232,-0.15136386,-0.099895805,-0.35745656,-0.032954983,-0.31646156,0.13468295,-0.11497963,0.52323085,-0.4779075,-0.2568194,0.17413053,0.60136086,-0.22727098,-0.1932784,0.70924973,1.1337142,1.1279913,0.025089923,1.0904868,0.23405951,-0.1563388,-0.013577645,-0.13892107,-0.7273162,0.1657113,0.19728312,-0.501947,0.26088765,-0.06244072,-0.18324521,0.39004156,-0.11276225,0.0065510273,-0.14416756,0.18739833,0.08001624,0.0077288975,-0.4534092,-0.4281762,-0.13299681,-0.0020838953,-0.0016272939,0.27148765,-0.3472624,0.23652223,0.0725576,1.1765918,-0.022515627,0.031169113,0.100274034,0.5995754,0.28280348,-0.19165784,0.13396761,0.407598,0.34553733,-0.045436364,-0.6458405,0.24233572,-0.43703476,-0.49350268,0.019211601,-0.41017658,-0.16691016,0.1245338,-0.57895696,-0.092182264,0.017188344,-0.10660566,0.5114515,-2.7147665,-0.18199012,-0.10560823,0.17644289,-0.3283587,-0.25177363,-0.04631863,-0.53832537,0.12455625,0.19476,0.64504254,-0.6604305,0.47366634,0.57468784,-0.58115107,-0.09639073,-0.76953626,-0.07936393,-0.03029774,0.47688878,-0.052630644,0.16380869,0.04629038,0.018788131,0.7341869,0.20227417,0.26050282,0.46399757,0.3382664,-0.001727769,0.5837405,-0.016028615,0.56714606,-0.4873179,-0.11456709,0.36259466,-0.4847331,0.5132231,0.035654232,0.09721574,0.76244015,-0.33953717,-0.86254406,-0.37817138,-0.26218107,1.214419,-0.3979203,-0.31183746,0.20553705,-0.22426353,-0.0544412,0.010905064,0.480233,-0.10260184,0.035455752,-0.54657656,-0.020991338,-0.10526277,0.18654929,-0.03128787,-0.05932057,-0.13197139,0.8142074,0.0678387,0.6743567,0.18877071,0.2674216,-0.2069597,-0.442975,0.0062526236,0.69430864,0.43116724,0.020877592,-0.1730621,-0.33237684,-0.14026935,-0.07489216,0.09614428,0.6192834,0.6090359,-0.16751117,0.17141311,0.39670107,0.053971484,-0.0071462486,-0.06320139,-0.34196752,-0.22396871,0.22723651,0.4164875,0.99971443,-0.13843803,0.41346726,-0.13503386,0.20759764,-0.1041747,-0.52708983,0.6358678,0.66170204,-0.21125391,-0.010875628,0.42375186,0.6377725,-0.39866126,0.4896456,-0.49365756,-0.2143783,0.7125809,-0.11648084,-0.39565834,0.1653002,-0.23347029,-0.060113303,-0.7265609,0.4557036,-0.49439174,-0.44326442,-0.52395636,-0.06245047,-2.9299102,0.23640245,-0.261187,-0.20261548,-0.3707913,-0.10908369,0.26477242,-0.8259166,-0.58169115,0.1188929,0.26093376,0.45947587,-0.10271985,0.032528345,-0.26617426,-0.32861125,-0.062663406,0.26537043,0.11565702,0.3622478,-0.31956115,-0.37463462,-0.060721293,0.00063662115,-0.3246101,0.19464119,-0.596115,-0.37259835,-0.027715357,-0.59323764,-0.2588351,0.5841642,-0.36455756,-0.038015056,-0.05491378,0.15229955,-0.24128345,0.15209465,0.013974831,0.15925978,0.06338392,-0.16616613,0.022070222,-0.2757281,0.3797372,0.032679096,0.46894738,0.25548804,-0.12127583,0.112514846,0.49822026,0.6232894,-0.23678783,1.1012782,0.2367958,-0.17378369,0.32000622,-0.061693147,-0.40410295,-0.6809838,-0.2698724,-0.054669023,-0.24079657,-0.44813177,0.16629292,-0.19095455,-0.9170953,0.55004895,-0.075162634,0.47007972,-0.08842595,0.057788096,0.5183604,-0.22179747,0.060141202,-0.03531186,-0.05400155,-0.5451057,-0.37991613,-0.7969822,-0.37318328,0.033186417,0.8471562,-0.3354659,-0.07157469,-0.0814217,-0.49233177,0.014094614,0.09426911,-0.04528836,0.24229883,0.35252267,0.06475,-0.5236603,0.44366473,-0.045844767,-0.025889067,-0.028239928,0.24612783,0.84086156,-0.7148219,0.62562644,0.38408,-0.026289139,-0.26514742,-0.6327063,-0.24480994,-0.014292797,0.017876199,0.4975662,0.3156009,-0.84443885,0.47045612,0.245797,-0.54486424,-0.7117253,0.45571467,-0.032202758,-0.102699526,-0.31359842,0.38699788,0.12940437,-0.04271915,-0.07199608,0.3248194,-0.35929102,0.14233822,0.14053813,-0.21975985,0.07342301,0.10131732,-0.19899262,-0.61831474,0.24024671,-0.54584694,-0.2931333,0.48790395,-0.12862922,-0.08447135,0.019673029,0.23036979,0.38789293,-0.31401473,0.15507682,0.049068727,-0.2689628,0.4841185,0.52541584,0.67280287,-0.38594306,0.50371367,0.28583634,-0.08948974,0.2932852,0.07318508,0.21947877,0.007695299,0.47622272,-0.10156758,-0.038237218,0.30115932,0.7161658,0.2794713,0.5503107,0.009033099,-0.14522544,0.3892206,0.09210614,0.3059188,-0.18988273,-0.5157694,0.054147363,-0.06466844,0.17772055,0.5061914,0.08569845,0.2301511,0.038164344,-0.018582977,-0.06503617,0.27870238,-0.025013823,-1.0759734,0.31242687,0.29651207,0.88463783,0.47524944,0.11206427,-0.22141393,0.72149825,-0.30466172,0.09495079,0.498878,0.18853357,-0.52881217,0.6270325,-0.47304037,0.48538405,-0.18010877,0.025651451,0.23660165,0.11426936,0.43550655,0.64612716,-0.18179783,-0.07191337,-0.05431616,-0.3658164,-0.08422108,-0.41065982,0.19171621,-0.4059887,-0.47624284,0.8679973,0.54553103,0.34531072,-0.13600203,-0.0660764,-0.00068319764,-0.2090168,0.32855526,-0.07681053,-0.01904992,0.06710733,-0.60093194,-0.14498448,0.6311019,-0.38243893,0.18935595,-0.21465851,-0.24824955,0.14384213,-0.12358184,-0.013164883,-0.009703407,-0.8975064,0.10659076,-0.15499227,-0.48903587,0.31297487,-0.37344804,0.14009494,0.21543702,-0.1262462,-0.23558146,0.26501685,0.114189826,0.7443939,-0.27197745,-0.12168658,-0.30768412,0.15123042,0.1631654,-0.12342106,0.1237636,-0.32750654,-0.053010233,-0.60228455,0.47569194,-0.15036342,-0.35807827,-0.1393769,-0.26215458,-0.14821619,0.77030444,-0.05572858,-0.21543446,-0.3971148,-0.08092542,-0.44435757,-0.07657829,-0.15366536,0.13897473,0.41165975,-0.04830951,-0.0607607,-0.30545744,0.12609217,0.36092255,0.04896305,0.5022474,0.2937636,0.07409695,-0.27503794,0.0065509905,0.21905906,0.33843488,0.2978978,0.07797592,-0.47624972,-0.18987788,-0.44172207,0.1200334,-0.12660712,0.26279375,0.0212314,-0.31088817,0.8159843,-0.08320128,1.2626078,-0.0055133286,-0.51885134,0.005206952,0.67367786,-0.10507402,0.05135198,-0.3975724,1.0011357,0.46858236,-0.17923895,0.013409243,-0.5956684,-0.1690292,0.24567583,-0.3396303,-0.049408086,0.04800117,-0.31789726,-0.041111372,0.12093287,0.2209287,0.09908947,-0.065404415,-0.21297786,0.29869795,0.17206591,0.39660108,-0.69521344,-0.30391997,0.081432804,0.14603545,-0.07905297,0.19401306,-0.43080002,0.36806455,-0.74991167,0.34776598,-0.44426057,0.2564646,-0.42693684,-0.41826746,0.13173008,-0.040148318,0.4611234,-0.43189436,-0.4653996,-0.13691033,0.49617723,-0.022035269,0.27509525,0.64448166,-0.34440154,-0.035650752,0.09511674,0.67486453,0.9783341,-0.48414734,-0.29142812,0.26127785,-0.44513658,-0.8068607,0.23848502,-0.39087075,0.057743482,-0.1461875,-0.3934471,-0.5477938,0.29557914,0.16056651,0.18521911,0.08861171,-0.8327424,0.11584469,0.22885285,-0.22759357,-0.2617215,-0.15380792,0.2909865,0.7518167,-0.3303148,-0.5479049,-0.08416868,0.08763492,-0.12021875,-0.38223508,-0.03540159,-0.34904596,0.20168616,0.00744385,-0.2877309,-0.14067763,0.18781526,-0.46264464,0.05483705,-0.014101198,-0.26509225,0.101098776,-0.12047453,-0.011547109,0.9858796,-0.18516773,0.022257127,-0.4677784,-0.566325,-0.68339646,-0.6298497,0.102416515,0.15213156,0.016914772,-0.50681406,0.09478522,-0.026685933,-0.24390341,-0.079353824,-0.57877064,0.55415064,0.15190776,0.30097598,-0.2679219,-0.90066093,0.24892852,0.21115668,0.07654514,-0.5862899,0.49633276,-0.16755168,0.83589566,0.16504961,0.04082729,-0.13218926,-0.4346423,-0.032435205,-0.39377168,-0.14459927,-0.6390579,0.2167643 +240,0.4771988,0.057409976,-0.513218,-0.17004666,-0.5466808,0.31844968,-0.24977626,0.0002293246,0.27228484,-0.48180085,-0.11616104,-0.024909627,-0.20784198,0.17227052,-0.28102052,-0.8110243,0.22898588,0.19032991,-0.59906673,0.53426975,-0.42078882,0.45894504,0.10760451,0.21098468,-0.058738027,0.1308029,0.36148936,-0.013627553,-0.070508376,-0.23626985,-0.21582563,0.12550603,-0.8612162,0.3533912,-0.23935102,-0.32716325,-0.01456417,-0.35963827,-0.3790018,-0.77943414,0.45868367,-0.9383774,0.49935317,0.052453082,-0.29188153,-0.020030996,0.15070985,0.08055399,-0.22641645,0.12318782,0.42204976,-0.391969,-0.05543929,-0.16012219,-0.46036837,-0.503687,-0.6423974,-0.06765218,-0.6487564,-0.08371433,-0.5030718,0.34248587,-0.20792906,-0.16306002,-0.33110598,0.37769803,-0.39063898,0.18187131,0.19694214,-0.24817307,-0.0025652477,-0.5488958,-0.16081722,-0.11105605,0.16505973,0.058289234,-0.12256468,0.40321556,0.21048658,0.6262301,0.26298755,-0.4729628,-0.23704304,-0.18379907,0.35763183,0.4069008,-0.031300224,-0.06734158,-0.2855733,-0.09907324,0.4043577,0.3307738,0.019896507,-0.39464003,0.11981773,-0.014994187,0.048792865,0.6098436,0.58129406,-0.46021292,-0.10059845,0.37630028,0.30987096,0.085130766,-0.25636858,0.03949574,-0.19693495,-0.61770886,-0.3316544,0.36115828,-0.105771124,0.6462498,-0.16662577,-0.0038157362,0.79294425,-0.15771921,-0.007323299,-0.07130139,-0.1367176,0.2407573,-0.20353463,-0.012031828,0.379836,-0.5692903,0.13766837,-0.34354278,0.61008316,0.17368834,-0.8561471,0.43115765,-0.42244953,0.18928035,0.033197887,0.7311114,0.6632042,0.62123626,-0.015586249,1.0082521,-0.66895086,0.071610615,-0.02707285,-0.29416206,-0.07230097,-0.08214157,0.106403604,-0.27283046,0.22196706,-0.20937423,0.12350377,-0.10244333,0.38163903,-0.38002974,-0.21497688,0.06490583,0.62030417,-0.34531942,0.024907658,0.7781046,1.1115555,1.0661924,-0.034502797,1.4532576,0.19419052,-0.03836912,-0.307461,0.10340253,-0.6510749,0.06893228,0.3080613,0.3432643,0.27805287,0.2084522,-0.1410513,0.20881794,-0.2960684,-0.21284369,-0.002913836,0.2580466,-0.04367435,-0.03552438,-0.29030308,0.0053961235,0.2219411,0.23786433,-0.058500998,0.26895648,-0.1993337,0.38126987,0.14182998,0.8943058,-0.006970857,0.25669163,0.105900764,0.37966797,0.25231403,-0.055805642,0.13287067,0.3541675,0.214951,0.07216913,-0.53366953,-0.10601183,-0.56518424,-0.331553,-0.15739529,-0.4549417,-0.21251951,0.021405885,-0.36378232,-0.10608823,0.07183199,-0.3221219,0.46581915,-2.3839421,-0.068466865,-0.2162822,0.43531016,-0.27425593,-0.23779674,-0.30924663,-0.60566175,0.44487414,0.19915275,0.41938004,-0.52048266,0.5081858,0.48244092,-0.45310387,0.013578511,-0.7050523,0.077751085,-0.020051822,0.59661186,-0.021756878,-0.17818229,-0.20372905,0.14734681,0.7697269,0.3703238,0.11777574,0.2901702,0.48191914,-0.11902915,0.5031986,-0.03301167,0.5967015,-0.4317138,-0.056115184,0.5701261,-0.36074144,0.5157784,-0.2400438,0.008726268,0.49898747,-0.52369916,-0.6676383,-0.59577554,-0.4063769,1.2971984,-0.3998095,-0.71605796,0.23422335,-0.024641166,-0.22780003,-0.011426194,0.40913492,0.11618563,0.2875852,-0.57275486,-0.051028576,-0.21980643,0.21484546,-0.106010094,0.28698757,-0.42383584,0.8595332,-0.13214777,0.4673064,0.32628027,0.23614573,-0.10465659,-0.33103207,0.12907043,0.7646493,0.48196068,0.1295758,-0.18631743,-0.12094965,-0.17366898,-0.33500257,-0.051652968,0.8703895,0.5342162,-0.14003761,0.049923994,0.37532124,0.10499253,0.08539523,-0.20575006,-0.41716725,-0.19925103,0.06924434,0.45724586,0.66225994,-0.27827057,0.11081378,-0.004349617,0.16750054,-0.1690074,-0.67507327,0.42220777,0.77132094,-0.09424352,-0.086631246,0.6403017,0.53960174,-0.46793467,0.49588028,-0.56447774,-0.43943834,0.7136182,-0.008566597,-0.63413817,-0.08125075,-0.3131903,0.018065836,-0.5233845,0.40787813,-0.383029,-0.72332275,-0.30656824,-0.24744733,-3.27054,0.18912451,-0.26465192,0.18204378,-0.25872535,-0.14492545,0.33645263,-0.42155474,-0.5093041,0.05972325,0.023780346,0.3634544,-0.23380767,0.2365278,-0.40169206,-0.24780175,-0.204216,0.46889117,0.17645486,0.09932707,-0.19653296,-0.20720267,0.06559594,-0.110347904,-0.36214307,-0.15904991,-0.47818503,-0.3883121,-0.12167937,-0.38122702,-0.07793792,0.6666544,-0.38986084,-0.0029940945,-0.20362023,0.07985466,-0.21212256,0.07328451,0.030878078,0.3834997,-0.022095246,-0.11098759,-0.16520774,-0.2897086,0.53541046,0.2013141,0.2786154,0.51881987,-0.22849618,-0.009557494,0.2783357,0.5484354,-0.0550546,1.0451874,-0.008722501,-0.09965547,0.5189722,-0.034749538,-0.6208887,-1.0229636,-0.18237843,-0.06942695,-0.49330202,-0.34182605,0.008551769,-0.41551003,-0.924746,0.48019883,0.12504175,0.45757008,-0.3018799,0.19400562,0.391572,-0.3698105,0.033513103,-0.10770268,-0.25685725,-0.5249205,-0.49487782,-0.781045,-0.59877735,-0.079857655,0.92745453,-0.16714264,-0.19504678,0.17445648,-0.24003282,0.16195181,0.14573832,0.15207942,0.011949986,0.4385274,0.203196,-0.7033439,0.51817626,-0.031244865,-0.03796918,-0.5610348,0.31326264,0.797595,-0.5497089,0.54328835,0.45650727,0.09633635,0.067122445,-0.8303658,-0.25734365,-0.066792265,-0.19429061,0.6412181,0.2817339,-0.7664444,0.34072012,0.14197877,-0.3011724,-0.6179816,0.61614764,-0.06370602,-0.1220699,0.04857025,0.43733844,0.018957058,-0.053694624,0.14488657,0.3275055,-0.53581,0.46747527,0.27792972,0.0013630049,0.35223442,-0.09989228,-0.54311156,-0.80507183,-0.03293717,-0.6320739,-0.31471178,0.22537287,-0.19409569,-0.1619626,0.24544814,0.15065685,0.62548393,-0.107729815,0.34201744,-0.0702327,-0.37271732,0.5730514,0.5385123,0.51380694,-0.67450583,0.7176698,0.12064042,-0.079740725,0.19834973,0.28841615,0.45570898,0.09557944,0.4970054,-0.21135947,0.13754568,-0.072261795,0.5878593,0.24073415,0.3534047,0.187608,-0.13428964,0.55818427,0.13590169,0.092157654,-0.26271594,-0.6257466,-0.04930591,-0.027817076,0.044415466,0.33067614,0.08696524,0.35894093,-0.054191343,0.06244751,-0.032199595,0.07968388,0.04012179,-1.1590881,0.27561942,0.14212592,0.77520037,0.49165192,0.13351579,-0.10293991,0.42825374,-0.27611065,0.02231637,0.55829,-0.042488594,-0.35926118,0.47942734,-0.45189294,0.3535997,-0.16276638,0.07402895,0.2744585,0.26692817,0.491632,0.89269394,-0.17236371,-0.0040815896,-0.10942463,-0.2318087,0.2317063,-0.23304081,0.17797266,-0.40884024,-0.4442224,0.6074656,0.5309048,0.4102895,-0.40667185,-0.10918387,-0.0027712542,-0.29030094,0.096011095,-0.13944961,-0.12983519,-0.15632914,-0.37791532,-0.08479268,0.59254014,-0.1804115,-0.021664288,0.009074762,-0.19103995,0.30727416,0.053224362,0.057764,-0.07262255,-0.92436224,-0.010131938,-0.299422,-0.55274755,0.3631586,-0.23304775,0.2044331,0.22560059,-0.035084628,-0.18460667,0.15734586,0.038151402,0.6170177,0.07568358,-0.05219839,-0.40189594,0.15466918,0.18345891,-0.31441107,0.25942963,-0.20086323,0.12987062,-0.63035107,0.4086493,-0.42601654,-0.182402,-0.029898789,-0.101761356,-0.15740803,0.50448054,-0.019992527,-0.05373105,0.28699794,-0.013031743,-0.33790097,-0.092453055,-0.27108273,0.105242886,-0.13561274,0.07334102,-0.042126488,-0.119306765,-0.10298227,0.18583734,0.20635895,0.0011607079,0.11904423,-0.20626627,-0.49540207,0.122515365,-0.04866637,0.5768299,0.06787628,-0.012030118,-0.022960778,-0.4360375,-0.38563973,0.54952604,-0.15909645,0.1507849,0.13633355,-0.3419614,0.8361686,0.2544199,1.1621116,-0.05299226,-0.46486935,0.00016220871,0.7497603,0.010116888,0.02364253,-0.5127886,1.0183977,0.56398016,-0.11856733,0.033028103,-0.47322825,0.0059196097,0.10760429,-0.41508886,-0.20302422,-0.14979266,-0.5182098,0.013491397,-0.0136087835,0.31144336,0.049038988,-0.10786266,-0.22180223,0.24976644,0.37628174,0.43694258,-0.6052407,-0.41303104,0.28312764,0.1586993,-0.08209423,0.19113758,-0.21554255,0.3616871,-0.68308914,0.04717343,-0.32163188,0.0152969705,-0.2944173,-0.2994461,0.21992268,-0.07283943,0.35748848,-0.41987947,-0.3338017,-0.2308891,0.2838972,0.33425647,0.33832052,0.86598,-0.15971048,-0.121548675,0.09245709,0.50698704,1.1938607,-0.055195432,0.017475052,0.29076672,-0.534112,-0.66150874,-0.0015659715,-0.6838935,0.07430845,-0.077739574,-0.4418942,-0.1756537,0.14550614,-0.0019584554,-0.20375372,0.19554766,-0.8955552,-0.16087179,0.15775323,-0.22047794,-0.32720068,-0.16949244,0.45336244,0.73252106,-0.29302984,-0.3480382,0.03574707,0.2245157,-0.2341797,-0.84395367,0.18221149,-0.26513085,0.28113386,-0.011945673,-0.32767716,0.10748954,0.2228761,-0.5473112,0.04791295,0.27733913,-0.37235007,-0.040025912,-0.26616672,0.0012234321,0.8310942,0.04105616,0.050453775,-0.432697,-0.5714796,-0.87693185,-0.364734,-0.06688982,0.2552916,0.049883217,-0.3244396,-0.2019918,-0.28771737,0.12189441,-0.0746462,-0.4450372,0.40708664,0.16994448,0.532511,-0.18597879,-0.90277004,0.09018815,0.22379425,-0.02851565,-0.37959513,0.4843572,-0.24392734,0.67013705,0.09503389,-0.058160853,-0.05490303,-0.89951193,0.24316107,-0.34841177,-0.041214734,-0.56173855,0.16271567 +241,0.44735798,-0.25732672,-0.39130914,-0.100416474,-0.29813108,0.16214289,-0.10766074,0.5601056,0.19205491,-0.24233967,0.012071016,-0.19015245,-0.05572181,0.43342447,-0.06404069,-0.4361613,-0.023567624,0.1426099,-0.6970082,0.5675093,-0.34939697,0.17754227,-0.13887402,0.4954254,0.349335,0.32220212,-0.07946491,-0.022714976,-0.23257798,-0.061257984,-0.1278387,0.34456035,-0.35775578,0.08854146,-0.26133594,-0.42964086,-0.032158628,-0.26396298,-0.4666573,-0.736981,0.26831385,-0.7420521,0.60004526,-0.20355974,-0.17160837,0.34348428,0.15809982,0.32211372,-0.30802545,-0.062074736,0.09375102,-0.04615152,0.12968537,-0.36341396,-0.30119422,-0.6626722,-0.46050262,-0.07394628,-0.5388757,-0.030974008,-0.23611802,0.14853846,-0.20373946,-0.012747431,-0.005554533,0.36661306,-0.4560091,0.32429492,0.10774195,-0.0021471104,-0.041071363,-0.57512605,-0.25177318,-0.22291884,0.32169282,-0.12583739,-0.17850766,0.4838031,0.23855747,0.29514658,-0.13737673,0.0019276103,-0.37611353,-0.026759284,-0.032835167,0.4460702,-0.12942368,-0.6838674,-0.13548127,-0.028538946,0.18857758,0.1347287,0.22843583,-0.284121,-0.003354299,-0.03203803,-0.289864,0.402085,0.4482848,-0.31363198,-0.1476752,0.43171158,0.46746796,0.29252094,-0.44346187,-0.11232183,-0.056193147,-0.508937,-0.060080927,0.17621464,-0.1960598,0.57670426,-0.1654267,0.23129316,0.6414931,-0.13290094,-0.13352245,0.0017071088,0.21429135,-0.15224266,-0.121001616,-0.3690948,0.0753336,-0.30149794,0.0826947,-0.12360503,0.55195224,0.13265024,-0.59559494,0.30552483,-0.5287363,0.08349835,-0.07883733,0.3567752,0.57935333,0.46500415,0.21471828,0.50667137,-0.16744156,0.11165988,-0.118955255,-0.26231262,0.013789757,-0.2814168,-0.12858953,-0.55168396,0.06056684,-0.10761418,-0.052025683,0.13892028,0.5209853,-0.33929288,-0.13196181,0.19703327,0.9118267,-0.3476867,-0.1362728,0.76817346,0.9821277,0.9667062,-0.019494932,0.92064553,0.27658048,-0.22497752,0.19347581,-0.24631919,-0.56676,0.27291533,0.2494841,-0.30453035,0.33421233,0.03268,0.059750628,0.32806906,-0.32344094,-0.04179888,-0.21545358,0.14409214,0.28067622,-0.0030940732,-0.2897837,-0.41235748,-0.15433955,-0.110011384,0.121636346,0.29702836,-0.29060465,0.51756155,0.16770688,1.6430535,0.25101683,-0.15693027,0.079470254,0.77846605,0.21502012,-0.05064253,-0.004777555,0.36363643,0.37464777,-0.022586528,-0.5154802,0.1816697,-0.2960287,-0.5705742,-0.15428953,-0.35254282,-0.23457308,-0.07813285,-0.68858147,-0.23455808,-0.09063517,-0.045867436,0.5282043,-2.6988504,-0.13140613,0.024254192,0.33972067,-0.18518186,-0.3709189,-0.1605583,-0.47620624,0.3051529,0.26514336,0.3477815,-0.6397768,0.49323374,0.2358359,-0.5181371,-0.08874061,-0.5583376,-0.1302153,-0.005301507,0.37649065,-0.15569551,0.22401644,0.2947076,0.04224764,0.49661005,-0.1850626,0.20616928,0.35178307,0.39097923,0.06871168,0.43860582,-0.0005806764,0.56516963,-0.49309433,-0.20936324,0.24812698,-0.44944063,0.25402826,-0.027956402,0.1730999,0.669612,-0.4525519,-0.8777004,-0.5219682,0.19154923,1.1212552,-0.21835785,-0.34603876,0.1717706,-0.47602987,-0.21328624,-0.28583625,0.46668682,-0.086367816,-0.10814626,-0.6904157,-0.05440625,-0.14309965,0.1572974,-0.11105351,-0.023240464,-0.13385563,0.5351948,0.09415556,0.37344787,0.11439483,0.09253227,-0.4508619,-0.43737376,0.0975002,0.5728839,0.31767327,0.09039366,-0.07662085,-0.21368937,-0.34659755,-0.008844582,0.16937596,0.4619552,0.33891147,-0.09811199,0.25664043,0.2761148,-0.09292765,0.03040662,-0.33947876,-0.17231007,-0.18197493,0.23892158,0.41234696,0.61950094,-0.12092093,0.6671478,-0.12623613,0.25840372,-0.22690922,-0.46206754,0.5029128,1.1289004,-0.32126006,-0.34517518,0.2967881,0.6050602,-0.24215478,0.43004546,-0.5120237,-0.36910644,0.53495663,-0.1897164,-0.24746437,0.22801541,-0.20429793,0.15669681,-0.82474834,0.13583972,-0.1919341,-0.3756057,-0.61073506,-0.08061618,-2.3015368,0.0038326106,-0.07577639,-0.27113017,-0.18563904,-0.21878259,0.13733934,-0.5878389,-0.48415202,0.14057866,0.14162272,0.65586096,-0.0092824185,0.10751451,-0.25940624,-0.24601607,-0.21235174,0.23099846,0.24534774,0.43191305,-0.1424613,-0.6294286,-0.102096766,-0.16903046,-0.33608344,0.17606421,-0.71422917,-0.22121023,-0.10443127,-0.5128731,-0.37586877,0.6151155,-0.31971112,0.042886034,-0.19438453,-0.0007687072,-0.09357419,0.22721392,0.16820611,0.025118904,0.009086991,-0.15645352,0.2835689,-0.25290605,0.12660375,-0.055165213,0.23183458,0.27543637,0.094686605,0.08594527,0.42366135,0.6672504,0.010711006,0.7605326,0.51663274,-0.14039704,0.3587707,-0.15355642,-0.24764344,-0.5038599,-0.22696355,-0.06605431,-0.31120014,-0.50326186,-0.0066856663,-0.4097891,-0.75869876,0.5142845,-0.012784744,0.11733851,0.0299487,0.37109888,0.67379695,-0.20915219,0.08851029,0.011350044,-0.21413985,-0.50090903,-0.38235474,-0.5883617,-0.3755309,0.18216224,1.0366666,-0.1239672,-0.056016695,0.13098624,-0.44748318,-0.04567446,0.35734928,-0.12713265,0.12559293,0.4573625,-0.29480234,-0.6414637,0.45075732,-0.18632504,-0.12763204,-0.49339014,0.2557394,0.4698596,-0.6745288,0.5640558,0.24089037,0.031676475,-0.20169163,-0.42843854,-0.124789946,-0.1598001,-0.048612054,0.2429326,0.25811833,-0.73156244,0.3443274,0.20009258,-0.33608347,-0.5537549,0.5996536,-0.022927126,-0.45767346,-0.1461498,0.30979264,0.2825412,-0.069956355,-0.427527,0.09172181,-0.44625384,0.20196104,0.30922166,-0.09245172,-0.014025155,-0.22271414,0.0009724339,-0.77918726,0.12469186,-0.24482517,-0.3646348,0.45866394,0.026916634,0.28840077,0.0486591,0.08034695,0.0701714,-0.30612713,0.075944744,-0.1919478,-0.1879188,0.23800698,0.31709856,0.52754027,-0.4441648,0.63575524,-0.026342718,-0.16530167,0.28916034,0.1767873,0.3537013,0.23438503,0.45685098,0.19877812,-0.33789295,0.25910613,0.74195385,0.35926315,0.32075742,-0.067836694,-0.22047657,0.20242848,0.052955586,0.18446021,-0.0142412335,-0.3900077,-0.1044633,-0.20186952,0.20360072,0.40213317,0.016758975,0.3014997,-0.0616106,-0.24722528,0.026001243,0.14274721,0.008144506,-1.3867753,0.30133066,0.43929434,0.8157419,0.23466915,0.08498004,0.021621577,0.75650686,-0.24125877,0.022354634,0.40339097,-0.026114384,-0.4562219,0.52607197,-0.6437439,0.53619474,0.013031068,-0.01865505,0.11022698,0.092011236,0.35408428,0.8094879,-0.0812678,0.03559963,0.306143,-0.5520529,0.026141118,-0.22224276,0.04264665,-0.59171146,-0.19322078,0.56504405,0.5181772,0.3803664,-0.2276075,0.034765556,0.059987027,-0.28143656,0.19773626,0.16832729,0.14219493,-0.20362554,-0.6353699,-0.11260243,0.5058974,-0.3427388,0.13952665,0.1810921,-0.28873616,0.39957097,-0.1862641,0.043108013,-0.106262565,-0.613697,-0.010669363,-0.26915345,-0.26732144,0.57965434,-0.036456402,0.20853661,0.32582155,0.059176326,-0.3698057,0.5278024,0.057257924,0.8389612,-0.23129943,-0.16429928,-0.38259953,0.060174424,0.15854833,-0.084082946,-0.053790748,-0.1736111,-0.097282045,-0.39566797,0.3274325,-0.017009199,-0.11146851,-0.33435497,-0.080648154,0.096174985,0.48511896,-0.018167783,-0.16966964,-0.2150779,0.06500601,-0.5103277,-0.14104173,-0.1378579,0.35969684,0.27765653,0.07886873,-0.17376706,-0.0719237,0.11483293,0.52489924,-0.20360462,0.44978732,0.3884496,0.10876741,-0.23305258,-0.24337721,0.13760425,0.5053768,-0.14812444,0.060891353,-0.35469463,-0.4241298,-0.40499833,0.08096872,-0.17603397,0.33564988,0.10665644,-0.31676248,0.84474456,-0.23907706,1.1618665,0.080533005,-0.3608435,0.31075108,0.4965506,0.04845098,0.08499601,-0.25714308,0.8283841,0.5473278,0.0626158,-0.18598649,-0.26904973,-0.02535392,0.13042913,-0.24955352,-0.20670602,0.09454679,-0.47772515,-0.21728082,0.15999022,0.13002762,0.38593563,-0.19666886,0.10908155,0.26903197,0.013505017,0.1859117,-0.43815288,-0.24864128,0.28542063,0.19302781,0.011779022,0.12694916,-0.50348914,0.3604207,-0.32269207,0.045354236,-0.29450962,0.24029793,-0.21233925,-0.29520482,0.21096215,0.0651357,0.23709042,-0.4203681,-0.2520559,-0.33522597,0.61305547,0.13833946,0.20577605,0.40233362,-0.24923255,0.014288461,-0.05166087,0.46667162,0.7914823,-0.3763029,-0.23076563,0.3400046,-0.3962768,-0.6637219,0.42289478,-0.26229504,0.24289991,0.1595222,-0.017370733,-0.6363665,0.5089609,0.14733076,0.19072977,-0.1251707,-0.58184946,-0.073718116,0.30583343,-0.21112005,-0.24106379,-0.4115809,0.11011613,0.4024144,-0.26381442,-0.26691502,0.15209478,0.21380405,-0.21460848,-0.34012598,-0.057827998,-0.5082249,0.29469877,0.13789797,-0.33072102,-0.22893658,-0.01850875,-0.37126678,0.2265363,0.1525586,-0.31673834,0.06460599,-0.28972948,0.010332723,0.9845997,-0.2980205,0.0977127,-0.49678987,-0.51019806,-0.81467086,-0.39546698,0.33482128,0.24666208,-0.12765594,-0.7189309,-0.0017770608,0.038192336,-0.4805241,-0.10434372,-0.41567275,0.5179883,0.0046740402,0.152361,-0.008966287,-0.80271786,0.22312604,0.07618957,-0.20700172,-0.6046472,0.3723832,-0.19878162,0.9491885,0.060024284,0.14093368,0.28001937,-0.27593288,-0.1891258,-0.27965516,-0.14380574,-0.46806195,0.053092785 +242,0.34012136,-0.24788068,-0.5807623,-0.15011083,-0.20274098,0.02163153,-0.113279864,0.60572845,0.2882323,-0.24506597,-0.17581923,-0.2179843,0.110098004,0.35290113,-0.07012465,-0.35857543,-0.049844943,0.17637551,-0.5389082,0.4518211,-0.3011809,0.07122416,-0.29824343,0.5406646,0.47172683,0.4254089,-0.11627312,-0.035607625,-0.11924226,-0.011647516,-0.054430038,0.42675242,-0.28446537,0.07492246,-0.18685825,-0.19124565,-0.11667906,-0.6041325,-0.39181426,-0.63982815,0.300585,-0.79976785,0.53958595,-0.027903596,-0.20901065,0.31682253,0.19152042,0.42093936,-0.33080822,-0.27759576,0.20867835,0.063448705,-0.046466358,-0.1350691,-0.17095837,-0.23212467,-0.41851196,-0.054967914,-0.33446297,-0.14707455,-0.31087545,0.100236535,-0.26918676,-0.118378885,-0.031228364,0.47673914,-0.46586603,0.19788066,0.18886884,-0.09267944,0.24318811,-0.48785958,-0.19482109,-0.022035265,0.40287635,-0.22900367,-0.25809094,0.1768966,0.28247496,0.17722073,-0.16545656,0.067818634,-0.3194591,-0.0003985848,0.29057625,0.53308874,0.04682644,-0.48949426,-0.0965228,0.095313564,0.045551386,0.29791507,0.38439035,-0.32121637,-0.20603159,0.04891636,-0.1222653,0.42460498,0.34165055,-0.1516706,-0.12562563,0.38104683,0.54015094,0.39619866,-0.22214855,-0.0037629518,-0.039411426,-0.46873686,-0.07290653,-0.18065336,-0.22097516,0.5206779,-0.09205818,0.24620886,0.6020754,-0.10495627,-0.10384285,0.14627388,0.08203517,-0.2891911,-0.27900094,-0.20560081,0.08096974,-0.33219337,0.23367272,0.05795526,0.5273047,0.16356874,-0.71849304,0.28660932,-0.5024889,0.16733989,-0.21826437,0.27429724,0.70213455,0.31732535,0.44509622,0.6641516,-0.38713166,0.10807699,0.055264957,-0.5950245,0.12820688,-0.18965176,-0.12201027,-0.6399105,-0.0074837506,-0.06416044,-0.2124583,0.122252926,0.2250975,-0.4887795,-0.023806939,0.18253168,0.7604969,-0.29216403,-0.1372863,0.7653325,1.0077229,0.8686368,0.00992386,0.8683316,0.07010601,-0.14542028,0.3554631,-0.3146045,-0.7201718,0.33588377,0.38652593,-0.3759214,0.19729602,-0.0126792705,0.11230375,0.448706,-0.2687742,0.14426513,-0.043643337,0.07554014,0.21489368,-0.1949068,-0.43998235,-0.18024953,-0.14192852,0.007947455,0.09929645,0.062357213,-0.22741196,0.39369062,-0.06758902,1.8280611,0.12127478,-0.04239797,-0.008194291,0.57903475,0.25996026,-0.23251788,-0.24383582,0.5308499,0.29431692,0.10065571,-0.5952138,0.18751185,-0.12360894,-0.33768377,-0.11881166,-0.5377441,-0.16547167,0.02958494,-0.39394793,-0.03707799,-0.2502787,-0.18816127,0.5297497,-3.1382573,-0.16278636,-0.06742758,0.3504263,-0.121297814,-0.3523204,-0.0013708727,-0.36275056,0.27722064,0.29787365,0.54318196,-0.57366836,0.3014996,0.38359505,-0.6264553,-0.19224909,-0.50714844,-0.096864514,0.06698392,0.32633194,-0.0579996,0.034401182,0.19192539,0.18672328,0.32265553,0.0065121567,0.15248777,0.27529466,0.42603287,0.06692913,0.62152445,-0.13368337,0.5723451,0.029189494,-0.20711078,0.14283893,-0.15073168,0.39529935,-0.01707782,0.10733472,0.5058636,-0.34917566,-0.9768955,-0.5336518,0.03155407,1.217275,-0.25346115,-0.2176139,0.27460855,-0.57597405,-0.24928999,-0.01487823,0.47482434,-0.004232645,-0.1865441,-0.8121401,0.015833136,-0.006411643,-0.09590692,-0.03036818,-0.18809524,-0.39430144,0.60900164,0.02346802,0.47660303,0.29181856,0.09829893,-0.31705135,-0.36567715,0.075534925,0.6447175,0.27327126,0.07116423,-0.12478387,-0.21276008,-0.44246393,-0.032572635,0.14151004,0.5252759,0.41746706,-0.068156436,0.28368825,0.14272676,0.00068776525,0.07341989,-0.22961368,-0.21369968,-0.10569726,0.057264138,0.41793898,0.664131,-0.19725645,0.64231455,0.0062807268,0.20256877,-0.060251202,-0.46844286,0.43136317,1.101836,-0.18196972,-0.42703348,0.57305497,0.4278688,-0.25510284,0.299754,-0.38102317,-0.013413838,0.52142155,-0.25980404,-0.33719444,0.29105848,-0.19991449,0.121773496,-0.94617355,0.008086113,-0.17122732,-0.45746097,-0.33433944,-0.05400181,-3.229176,0.12981652,-0.20766568,-0.30919668,-0.11925639,-0.2624621,0.05823209,-0.5907842,-0.661396,0.22169693,-0.024164204,0.72697985,-0.21079303,0.018064419,-0.17227213,-0.28406015,-0.31303683,0.09104432,-0.03383554,0.5871582,-0.052282695,-0.4671186,-0.1955379,-0.069988325,-0.40772465,0.03112164,-0.46565285,-0.3031549,-0.07061783,-0.5019454,-0.2046882,0.5744219,-0.29346514,-0.025437668,-0.10804715,0.04023901,-0.06161517,0.31524616,0.10889696,0.05366193,0.107108615,0.03173082,0.16594055,-0.24376003,0.26378557,-0.029165579,0.32271287,0.16996126,0.09946326,0.31545162,0.4444065,0.6538249,-0.19169988,0.7677126,0.5358611,-0.11284311,0.22056873,-0.37754244,-0.2712863,-0.396995,-0.20133962,-0.061846707,-0.41115445,-0.5170972,-0.17452683,-0.4130488,-0.6878467,0.4709997,0.0950794,0.2913279,0.019404858,0.08942624,0.615878,-0.056133755,0.029864801,-0.03626058,-0.18828546,-0.6767588,-0.14791934,-0.50151974,-0.3942046,0.21643445,0.8228626,-0.35926566,0.023547124,-0.032726724,-0.4226363,0.079030566,0.21507014,-0.08480541,0.25683454,0.349719,-0.16487324,-0.5779833,0.28834534,-0.09877161,-0.15679899,-0.5945479,0.1476394,0.36460042,-0.447509,0.7001074,0.16496055,-0.021693144,-0.20434104,-0.3838003,-0.19840182,-0.0434477,-0.17000282,0.4917465,0.3525655,-0.7667991,0.2728046,0.3679873,-0.18798468,-0.7077934,0.630578,-0.17163883,-0.11128533,-0.15293802,0.15930036,0.20054163,0.043186463,-0.30595535,0.21922107,-0.28291515,0.19388452,0.24198906,-0.12032141,0.18605891,-0.11958146,0.072529964,-0.67484254,0.031043371,-0.46168038,-0.25776514,0.3399906,0.15876998,0.22734849,-0.014035745,0.18212621,0.24062207,-0.3621908,0.014224352,-0.062015202,-0.22399668,0.19225256,0.46051905,0.4561147,-0.562875,0.43948105,0.007977094,-0.14415511,0.2188013,0.05783101,0.32198662,0.11807851,0.38575497,0.2083917,-0.26906678,0.22472098,0.6666259,0.15884869,0.44781065,0.030374119,-0.046607226,-0.033527654,0.02725151,0.3000996,-0.014480655,-0.646134,0.13491777,-0.27651104,0.23104985,0.5101475,0.23948438,0.12926647,-0.024316134,-0.5235151,0.069735356,0.2282751,0.11910323,-1.1553541,0.36570325,0.24294814,0.88402075,0.40013131,-0.027953668,-0.050515104,0.64652854,-0.12143544,0.11313528,0.36589774,-0.01876228,-0.6462018,0.44875103,-0.81342596,0.5004899,-0.0017771934,-0.13282396,0.104658954,-0.00026064258,0.3985842,0.6701325,-0.23972288,0.059107516,0.18876825,-0.327384,0.0848139,-0.41905943,-0.14569065,-0.6750924,-0.15311925,0.48819107,0.64374316,0.26158836,-0.15104954,0.045176268,0.049875677,-0.16280535,0.054106764,0.18124747,0.21152811,-0.03553697,-0.7452056,-0.1909789,0.39171743,-0.09926277,0.23295961,-0.14509888,-0.18601653,0.24831179,-0.1873678,0.008236312,-0.0038118276,-0.6833743,-0.00944254,-0.21380655,-0.59800833,0.4771783,0.12975347,0.23472282,0.26271605,0.04078088,-0.11586899,0.5982515,-0.054861076,0.93172705,-0.14028218,-0.029371561,-0.46650887,0.219564,0.2449771,-0.098873325,-0.19012323,-0.45544645,-0.007103409,-0.49805933,0.49554005,0.18185885,-0.44266754,-0.18136522,-0.012794209,0.103179336,0.6219379,-0.16783014,-0.11938759,-0.22616564,-0.1925412,-0.29575577,-0.20308091,-0.11985513,0.22592787,0.16054425,-0.0719374,-0.21328269,-0.06733875,-0.025092691,0.4410601,-0.14558318,0.59082454,0.36848417,0.05656141,-0.24822254,-0.3676307,0.35172155,0.48517624,-0.04126944,-0.089210905,-0.3200768,-0.44453487,-0.42736492,0.077874474,-0.12704921,0.4110064,0.16080867,-0.10577794,0.5178593,-0.06686036,1.1545147,-0.014608179,-0.34825888,0.36108536,0.5414807,0.08920509,-0.14171773,-0.3013639,0.7405506,0.37341648,-0.020804556,-0.039253063,-0.4395652,-0.06364318,0.15650742,-0.13565327,-0.05005438,0.014181143,-0.49230447,-0.24258253,0.16355266,0.12231525,0.47318083,-0.13965662,0.17215006,0.23869082,-0.08175266,0.1847275,-0.25194043,-0.47015718,0.18172558,0.32147995,-0.004190462,-0.013969561,-0.6132129,0.46282983,-0.28117582,-0.012680439,-0.2306448,0.33024067,-0.266967,-0.29827574,0.17220435,-0.0150074875,0.2638465,-0.25980988,-0.35161194,-0.36331585,0.5695493,0.1107846,0.1016976,0.3739886,-0.26468882,0.10910922,0.026429256,0.45028016,0.7629114,-0.086507656,-0.061974756,0.4589095,-0.32039595,-0.62305194,0.38032183,-0.36377963,0.38859582,0.13146403,-0.05951127,-0.66617835,0.25239462,0.1063151,0.03549879,-0.15653583,-0.48061314,-0.2589623,0.3676127,-0.22212568,-0.07859165,-0.30382282,-0.13377053,0.46916264,-0.26218352,-0.37458256,0.12505879,0.01882672,-0.045137357,-0.36997774,0.011812491,-0.3046077,0.32616162,-0.09598919,-0.44567588,-0.26327303,0.0012343952,-0.31111592,0.34758696,0.038345367,-0.27563885,0.21386692,-0.29812333,-0.10698081,1.0548147,-0.32673857,0.17065795,-0.407887,-0.45123625,-0.71889085,-0.2744706,0.38762093,-0.09589753,0.009453739,-0.6941067,0.08670758,-0.18098845,-0.19469324,-0.21804474,-0.36797696,0.4178176,0.031094356,0.40372738,-0.020794561,-0.83492535,0.27255994,0.06526792,-0.26306266,-0.7419581,0.58509386,-0.1120646,0.7531087,0.044563286,0.21209107,0.28373763,-0.29821077,-0.15743275,-0.2166167,-0.13886514,-0.5168198,0.034883894 +243,0.7473613,-0.12828133,-0.77294934,-0.043843877,-0.66733617,0.16519654,-0.38588524,0.13388823,0.228141,-0.5605262,0.1564959,-0.031126713,-0.21231037,0.12563287,-0.17853534,-0.67654353,-0.08011447,0.17325637,-0.7728109,0.8194837,-0.4148583,0.28941357,0.19025895,0.17268343,-0.10351919,0.16750751,0.1937135,-0.110399544,-0.28347418,-0.15419427,-0.061032042,0.14831448,-0.63032115,0.60752714,-0.024072459,-0.16988042,-0.06119167,-0.29076135,-0.270965,-0.7381163,-0.03880115,-0.6120508,0.44889292,-0.061494604,-0.36726683,0.06742786,0.07015176,0.22858341,-0.040448178,0.011744275,0.25563386,-0.4021422,-0.5885527,-0.31812203,-0.3860498,-0.7656189,-0.6289305,-0.22544609,-0.5411204,-0.082661875,-0.20214713,0.3934093,-0.31748578,-0.1705011,-0.29988647,0.649241,-0.31880066,0.07390348,0.2881298,-0.08986114,0.18456912,-0.6727494,-0.04211766,-0.0884907,0.009232495,0.28094134,-0.2856366,0.25596142,0.07206196,0.378707,0.12266288,-0.44352248,-0.41897252,-0.15151334,0.34466577,0.39995617,-0.13008839,-0.12393357,-0.2703714,-0.057714853,0.38538602,0.34439513,0.18164149,-0.4708712,0.12965141,-0.21000504,-0.23502018,0.38803485,0.4737395,-0.1970005,0.11148476,0.40601406,0.3189883,0.09101939,-0.35460445,-0.04664562,-0.26821396,-0.47331557,-0.12313767,0.3909226,0.064973876,0.26557273,-0.105513684,0.0639736,0.5150486,-0.11523342,-0.17912543,0.10862448,0.017760636,0.25725758,-0.23888652,-0.08808082,0.30975035,-0.6542386,-0.19890372,-0.517811,0.73392415,-0.12391434,-0.68293494,0.25003698,-0.51144934,0.16694103,0.08998928,0.7265458,0.8938196,0.677395,0.031079117,0.9173323,-0.29736754,0.29031983,-0.35628605,-0.24121198,0.10272554,-0.1228727,0.5554238,-0.39271975,-0.15993138,-0.11554158,-0.14512363,-0.27101022,0.7894553,-0.564495,-0.31663784,0.0009933631,0.73688686,-0.31876463,-0.11059538,0.6977903,1.1520059,1.0432367,0.32275447,1.173952,0.44191965,-0.12530789,-0.17229971,-0.3098046,-0.53699017,0.3358626,0.23944439,0.14158854,0.40564823,0.03592035,0.058414236,0.4412643,-0.14760192,-0.26876423,-0.20615579,0.4880357,-0.04360096,-0.16193141,-0.35593772,-0.119441144,0.25929508,-0.0463216,0.23409039,0.38227692,-0.169921,0.50266504,0.26358438,1.1596273,-0.21725261,0.06273804,0.12896065,-0.04201096,0.206948,-0.19456221,0.080784515,0.5030368,0.19411787,-0.12047761,-0.5041112,-0.018250234,-0.16902551,-0.5407432,-0.13426927,-0.22386312,-0.20111644,-0.093184665,-0.2208309,-0.29244646,0.02401265,-0.52448124,0.38921434,-2.2530034,-0.034986686,0.0046217917,0.20475791,-0.28095508,-0.43954545,-0.14302984,-0.5285446,0.57705766,0.26811385,0.3744875,-0.36881498,0.3094565,0.3799198,-0.6457273,0.02420748,-0.7501003,-0.06777088,-0.17837554,0.4878545,-0.05263211,-0.27291864,0.14437285,-0.036137223,0.51029134,-0.009457417,0.1134692,0.41552848,0.46331337,-0.14706412,0.5179531,0.13250534,0.5533025,-0.35011023,-0.14652121,0.44173154,-0.4246465,0.40073448,-0.115710355,0.047967438,0.5364141,-0.23242283,-0.5091487,-0.4273955,-0.14759627,1.0765773,-0.4699438,-0.61007154,0.060142938,-0.0225963,-0.18069862,0.107806236,0.3490416,-0.028936792,0.08346542,-0.6028862,-0.049475987,-0.04874845,0.30877176,-0.11687279,0.20182374,-0.50778645,0.75244015,-0.17180735,0.53858614,0.580655,0.35925215,-0.26071766,-0.35970435,0.21767136,0.77138346,0.39254203,0.021414125,-0.37122366,-0.26117358,-0.096227266,-0.07962305,0.010388419,0.5825209,0.6054489,-0.13938135,-0.05156074,0.30429676,-0.3370182,0.13017415,-0.2019099,-0.36741048,-0.28453845,0.1512111,0.30308348,0.5795912,0.08099711,0.60145503,0.010708791,0.3391097,-0.14416252,-0.6755851,0.49144,1.2826592,-0.27460903,-0.24035726,0.53976125,0.4589829,-0.057861175,0.66474026,-0.55583215,-0.37475297,0.4067666,-0.10798985,-0.5010771,0.1802601,-0.29621506,0.18648614,-0.8330454,0.41456184,-0.39569974,-0.54764265,-0.70962,-0.13813391,-1.6189901,0.35794517,-0.3242276,0.028542832,-0.19479182,-0.20960681,0.20067401,-0.4988446,-0.5700279,0.17358986,0.23809108,0.3830296,-0.024988273,0.04642284,-0.31914207,-0.4837745,-0.02840589,0.41793036,-0.013023426,0.12745593,-0.17271648,-0.3882152,0.14200447,-0.13519715,-0.17260942,0.024431512,-0.59362465,-0.2477127,-0.22756936,-0.40805268,-0.240944,0.59293735,-0.42341122,0.04430135,-0.16310622,0.08430606,0.20171405,0.1530185,-0.02458295,0.22626221,0.2217162,-0.19987327,-0.19662826,-0.387826,-0.062444407,0.22330116,0.14766371,0.70843285,-0.14844906,0.22414891,0.37175968,0.7069551,-0.05130796,0.8859048,0.038428806,-0.25843367,0.32500148,-0.23553433,-0.14825344,-0.9172198,-0.31858715,-0.016836872,-0.52153915,-0.49820787,-0.11147489,-0.35595986,-0.779156,0.60940284,0.073249534,0.1680185,-0.0036900744,0.540163,0.42529225,-0.19769886,0.004551642,-0.17248067,-0.33609417,-0.33352312,-0.6001539,-0.785546,-0.5027852,0.19805014,1.3555739,-0.2453965,-0.18381329,-0.002607314,-0.2617886,0.012353007,0.2699979,0.04200429,0.11827068,0.28266582,0.3364141,-0.44519126,0.4940579,-0.049270514,0.12022112,-0.2869297,0.42625698,0.792219,-0.68989235,0.3575369,0.44413668,0.15282811,-0.04001197,-0.8147565,-0.14617285,0.29252484,-0.2309141,0.4292689,0.39331067,-0.68375015,0.5304607,0.27094954,-0.30519107,-0.8591005,0.17715573,0.049568925,-0.27576166,0.13370104,0.45842543,-0.0065482715,0.10139462,-0.3102238,0.27836198,-0.5528065,0.29969582,0.05831257,-0.08121667,-0.067425705,-0.07144405,-0.41615626,-0.9713753,0.0062182792,-0.6083521,-0.3869574,0.31263942,-0.07745349,0.102174014,0.219612,0.28753898,0.4561831,-0.3352375,0.1132726,-0.29416236,-0.1475613,0.5365902,0.63665605,0.48834705,-0.41333243,0.6467377,-0.05439609,-0.11125817,-0.33151418,0.067483515,0.29798865,0.22698785,0.49787617,0.12253332,0.057063643,0.17006314,0.83612967,0.25068358,0.40749872,0.068122566,-0.35768688,0.25695613,-0.04312216,0.3610561,-0.21606277,-0.49948052,-0.14595681,-0.054912537,0.19628695,0.37918898,-0.025472922,0.48308435,-0.18828464,0.031229619,0.1459961,0.07996281,0.050180618,-1.0174793,0.44318098,0.40340626,0.59753793,0.615236,0.12138246,0.06166839,0.54025763,-0.4669838,0.044471297,0.29357103,-0.16912186,-0.22289288,0.37491906,-0.66748464,0.19103906,-0.26201794,0.04861579,-0.0027918115,0.069108345,0.36116958,1.060528,-0.11157405,0.053017933,-0.11776,-0.24897623,0.17049289,-0.12787424,0.0020225819,-0.35094756,-0.60593057,0.74456537,0.15193668,0.6913602,-0.17210843,-0.08977359,0.35242096,-0.35825607,0.43057138,0.020468852,-0.018394217,0.020632207,-0.19961372,-0.14214684,0.5052275,-0.27401194,-0.041579105,0.1498801,-0.119895995,0.15047447,0.06738655,-0.15739915,0.013845205,-0.60444295,-0.026162315,-0.3210762,-0.36031553,0.4007173,-0.11989397,0.041656673,0.15667015,0.15240103,-0.24431251,0.12186906,0.16560678,0.6585959,0.20413412,-0.18738988,0.08265734,0.07331485,0.21032226,-0.34919497,0.09593678,0.06501552,0.37915862,-0.8994,0.35176447,-0.27547908,-0.44569778,0.094732225,-0.3967168,-0.23829536,0.49097258,-0.26514035,-0.16384178,0.23002933,-0.019693403,-0.17555371,-0.08816916,-0.2498473,0.16507614,-0.26903453,-0.023739954,-0.0970698,-0.03438832,-0.013519329,0.38998985,0.103663,-0.001938301,0.39567629,0.051652994,-0.5802402,0.04689824,0.36388403,0.39746213,0.10994217,0.09168782,-0.17605413,-0.29614466,-0.52017546,0.4048559,-0.08620733,0.17901236,-0.045344003,-0.49549708,1.1146792,-0.039173555,0.9926937,-0.18701994,-0.4243546,-0.056271728,0.56013936,0.001010702,0.04183374,-0.3493722,0.95603895,0.5837848,-0.090698354,-0.06473546,-0.67861503,-0.11139039,0.4073859,-0.4349215,-0.13680868,-0.0052376073,-0.69663936,-0.2407948,0.24844097,0.06382377,-0.026762828,-0.18607858,0.0054695187,0.1625517,0.26707196,0.24335614,-0.6577562,-0.028799307,0.25074774,0.14470088,0.00053920463,0.23447905,-0.3567193,0.2899797,-0.8412899,0.3864364,-0.25440937,-0.08330078,-0.0056174994,-0.13184851,0.25703645,0.2353412,0.13299365,-0.3557361,-0.3517239,-0.0971134,0.40034848,0.21688746,0.23683722,0.84364027,-0.26179594,-0.03546462,0.09243445,0.57048225,1.310702,-0.19979486,-0.21985458,0.1719507,-0.3928933,-0.74015784,0.1393549,-0.3951491,-0.038088996,-0.12695377,-0.4945033,-0.4385137,0.257605,0.13488398,-0.06899316,0.1276536,-0.63974625,0.0025445293,0.1725585,-0.33500683,-0.11857651,-0.06104055,0.17337415,0.78571665,-0.34899694,-0.31674033,-0.09335994,0.15249932,-0.43310383,-0.4687673,0.17626512,-0.32291687,0.2713428,0.24189949,-0.34230062,0.08746795,0.23813884,-0.5971222,0.059614625,0.30249402,-0.21707419,0.015714375,-0.30324292,0.17977664,0.66443133,0.12574999,-0.008465115,-0.26304126,-0.66704965,-0.66996354,-0.41457248,-0.22709727,0.10703011,0.031206857,-0.75910467,0.013844069,-0.494156,-0.10334004,-0.0045515685,-0.5732123,0.46338344,0.25122356,0.32961532,-0.26543757,-1.1128354,0.34056455,0.09256088,-0.09960097,-0.4064118,0.32871577,-0.20920579,0.77198035,0.1769584,0.01636968,0.15629321,-0.92843705,0.3133613,-0.34411,-0.17365706,-0.69627684,-0.008424696 +244,0.4264018,-0.14599422,-0.5056085,-0.15750943,-0.5833232,0.23597947,-0.07876619,0.47383815,0.16775128,-0.39313415,-0.09291779,-0.017180055,-0.29822448,0.19537278,-0.21822295,-0.5071131,-0.17371458,0.073879376,-0.5053392,0.44057292,-0.22256461,0.49729118,0.0838299,0.2116629,0.33407164,0.33987078,0.03911879,0.08923038,-0.09088285,-0.21650101,-0.14036831,0.20354877,-0.6552778,0.37379897,-0.27047148,-0.22150452,-0.11954447,-0.39077085,-0.41182137,-0.63333535,0.19117351,-0.70483154,0.5072839,-0.09072106,-0.3772831,-0.05633143,0.1891191,0.13076751,-0.20958894,0.07962343,0.27836603,-0.26037315,0.013513327,-0.23790644,-0.34426773,-0.6394975,-0.49122402,0.005715434,-0.6350517,-0.17418432,-0.1216133,0.28910872,-0.24436942,-0.32897505,-0.26926616,0.6293595,-0.50399965,0.06213473,0.12518619,-0.255411,-0.05299999,-0.7037388,-0.09085128,-0.046852548,0.13923143,0.11217589,-0.40307182,0.3486672,0.20546302,0.37514675,0.07767146,-0.294871,-0.34621084,0.037340652,0.17431983,0.30456057,-0.19697838,-0.18973015,-0.2148182,0.07004676,0.5133326,0.25357923,0.100284085,-0.538792,0.11944887,0.030976582,-0.14249134,0.48239955,0.49640647,-0.30662107,-0.15324934,0.51634383,0.2868726,0.10528884,-0.3098353,0.22779097,-0.27857602,-0.23996595,-0.05077752,0.35100815,-0.03257575,0.46330833,-0.0145272575,-0.07820749,0.6884804,-0.14445727,-0.15817331,-0.08987816,0.05510198,0.14919056,-0.35762474,-0.08952742,0.1956811,-0.46142504,-0.04608788,-0.16309519,0.6535849,-0.014263195,-0.77684146,0.24806625,-0.5096119,0.12563616,0.1244686,0.59188735,0.71326584,0.6202398,-0.07984245,0.9852964,-0.391211,0.0990524,-0.097517066,-0.23072259,0.03673684,-0.27492556,-0.0895033,-0.52666324,0.14584687,-0.02078549,-0.107966214,-0.12926994,0.36116657,-0.3596168,-0.17991774,0.2282427,0.7313826,-0.37141702,-0.09382819,0.6795232,1.0738999,0.9712422,-0.017434979,1.1377013,0.19580278,-0.30131474,-0.018480735,-0.31279907,-0.22903341,0.12837829,0.39388308,0.052194912,0.3135814,0.0347684,0.07095052,0.278439,-0.3372484,0.1002901,-0.22440828,0.25429147,0.11093359,-0.018269977,-0.57851344,-0.21651226,0.23473956,0.23993699,-0.12367021,0.2621922,-0.3263086,0.22756653,0.0083698435,1.1880835,-0.057683047,0.119048394,0.15333334,0.43364775,0.29972938,-0.27053347,0.073395886,0.3647719,0.3896863,-0.02086726,-0.4684491,0.05456787,-0.4117907,-0.5950336,-0.13830157,-0.36935183,-0.17827006,-0.09658445,-0.6246466,-0.24185899,0.15616846,-0.40132535,0.527208,-2.6958208,-0.062023185,-0.22496085,0.14601518,-0.29731143,-0.3310369,-0.22171284,-0.33043778,0.2534187,0.29546145,0.34327355,-0.37285596,0.3523802,0.42370507,-0.48599452,-0.098541416,-0.55639243,0.18856879,-0.07825271,0.50266707,-0.08806767,-0.053821035,-0.062483538,0.04418963,0.6931137,-0.0659971,-0.046418376,0.2568398,0.32280764,-0.23812327,0.57085514,0.18480381,0.54486,-0.22693443,-0.26173055,0.4831969,-0.2688832,0.3026358,0.27983195,0.18064907,0.4348081,-0.53623563,-0.8455785,-0.43996727,-0.35568175,1.086886,-0.42261568,-0.5251406,0.31602603,-0.16287138,-0.17780069,-0.10915389,0.50411224,-0.021751443,0.2799876,-0.61672395,-0.017487917,-0.054598678,0.33765575,-0.17031392,0.1607522,-0.25770673,0.77432936,-0.14453799,0.5548261,0.40844756,0.37261784,-0.337001,-0.4709921,0.061750796,0.94581795,0.4238772,-0.029270148,-0.031351324,-0.1645476,-0.18970864,-0.14208065,0.2807849,0.6177944,0.6508701,0.0047484916,-0.010043907,0.31355685,-0.074560724,0.043660395,-0.21739882,-0.32350904,-0.20417684,0.17907754,0.56105286,0.32830283,0.029345484,0.58221334,-0.061445948,0.13520914,-0.15208572,-0.4529589,0.32835892,0.6692384,-0.22106789,-0.41154847,0.5547955,0.5613579,-0.29395425,0.20785634,-0.5718857,-0.2747876,0.7868851,-0.2794402,-0.6531409,0.10023758,-0.34740475,0.0015830934,-0.7831744,0.2759189,-0.09078033,-0.7514843,-0.44867784,-0.36314055,-2.9452128,0.11643014,-0.18750285,-0.12031063,-0.049542554,-0.15933698,0.28178468,-0.5106461,-0.48600948,0.022164632,0.052906394,0.556413,-0.07859507,0.04088807,-0.32209823,-0.20286798,-0.15739895,0.47862008,0.08904551,0.2877313,-0.101900175,-0.25182456,0.032025043,-0.26782963,-0.5159695,-0.023331255,-0.6116381,-0.54089457,-0.014890115,-0.42032284,-0.22204815,0.732102,-0.5455284,-0.030019823,-0.15643162,0.07402395,0.1313598,0.19459747,0.17213562,0.35739887,0.20435463,-0.05329015,-0.15870096,-0.38714755,0.14192526,0.1128562,0.36108208,0.3732614,-0.044127163,0.2921308,0.6134771,0.56810176,-0.15131237,0.75245696,0.18093707,0.019600486,0.4125314,-0.20884201,-0.19304585,-0.82638896,-0.24921638,-0.11677701,-0.44445127,-0.49504834,0.06596963,-0.43248737,-0.9050531,0.47096723,0.08476726,0.34212416,-0.10284536,0.3077842,0.43443877,-0.19647399,0.09241929,-0.11444116,-0.23235235,-0.40371487,-0.6182128,-0.6410348,-0.6210239,-0.12431685,1.2070191,-0.112158984,-0.23872663,0.09235789,-0.36256018,0.10762383,0.11076258,0.048128042,0.117571115,0.22473985,0.14186952,-0.6990401,0.26264712,-0.112331934,0.0027953067,-0.5955447,0.24991804,0.7807766,-0.56964314,0.47770566,0.32166818,0.28489703,-0.36681727,-0.6003348,-0.22875828,0.24999943,-0.2791415,0.67518735,0.165547,-0.68404526,0.39276117,0.066290155,-0.24309935,-0.7427728,0.5823193,-0.040131114,-0.04785598,0.009089466,0.4417586,0.11667088,-0.27271062,0.11536413,0.4088766,-0.46932748,0.32380173,0.45330048,-0.045240067,0.29712063,-0.14786695,-0.29861858,-0.70004255,-0.0493205,-0.44684264,-0.44280174,0.3071248,0.18583809,0.05725852,0.13478492,-0.115970016,0.40748265,-0.09805981,0.32080728,-0.16387695,-0.30389982,0.5973171,0.56409526,0.40692806,-0.47149545,0.44991636,0.08317971,0.07778364,-0.07434872,0.26241887,0.4854848,0.26490504,0.34094456,-0.17024006,-0.07715328,0.35476837,0.5399087,0.2788464,0.40098202,0.108191624,-0.21365643,0.22277482,0.13822255,0.2529236,-0.32411328,-0.5322224,-0.11049101,-0.013001815,0.25111204,0.2683822,0.04218268,0.33431354,-0.066553876,0.17128362,0.32733873,0.104354054,0.013365896,-0.921408,0.33740786,0.15353629,0.8357702,0.30004823,0.08832448,-0.12032615,0.53098345,-0.3090906,-0.030062292,0.5117023,0.16364536,-0.19860189,0.4627441,-0.7154624,0.5625765,-0.16788591,-0.13614388,0.28927007,0.28189117,0.52054614,0.85049725,-0.16315477,0.035595406,-0.034734763,-0.22231029,0.13504563,-0.33817226,0.37312797,-0.4284121,-0.5936816,0.66899353,0.4455899,0.30503735,-0.35182306,-0.068059206,-0.0011555235,-0.17289816,0.3123861,-0.02207219,-0.21486421,-0.082739115,-0.53059363,-0.18758647,0.52052087,-0.22677091,0.015110842,0.09130336,-0.18735507,0.2066535,-0.14778604,0.057909552,0.07217686,-0.5674502,-0.059848532,-0.3657343,-0.39521486,0.31124446,-0.44111827,0.21509196,0.2089529,-0.08070101,-0.40704736,0.13275068,0.3469879,0.7321306,-0.009557154,-0.13664696,-0.1864753,0.099065766,0.14556958,-0.1870344,0.0021520695,-0.24866636,0.14732638,-0.7008819,0.25446007,-0.3901357,-0.3607346,-0.008936481,-0.14151007,-0.0732118,0.44712767,-0.19980523,-0.122088544,0.009360289,-0.0027685761,-0.14918216,-0.08739311,-0.25008497,0.35031798,-0.07453206,-0.08574429,-0.019826714,-0.13104999,-0.065525815,0.098768555,0.12829593,0.32507074,0.25167367,-0.035916094,-0.33436546,0.12789668,0.047793187,0.4450842,0.16434766,0.05326542,0.011807179,-0.14512302,-0.3205608,0.16278023,-0.027841423,0.2126676,0.16648157,-0.46546358,0.8016831,-0.0028544029,1.4394362,-0.023190683,-0.4623925,0.019251982,0.60888666,0.09491265,0.061765503,-0.34491453,0.9143808,0.72053695,0.09616713,-0.13868771,-0.24347362,-0.16558406,0.20179859,-0.24801607,-0.30101326,-0.08984851,-0.62049013,-0.03634228,0.096083246,0.17011096,0.08005413,0.04097241,-0.31673586,0.2559293,0.0606998,0.24718812,-0.4319369,-0.059167568,0.33969307,0.25352952,-0.04174507,0.11859134,-0.29629755,0.38654968,-0.76839906,0.41615793,-0.27721772,0.14484262,-0.2084814,-0.17964026,0.1837438,-0.088649385,0.43208733,-0.26117262,-0.38420737,-0.26400667,0.6708472,-0.12835254,0.23648426,0.60502654,-0.2551976,0.047819026,0.13234177,0.39619306,1.1967633,-0.26354602,0.02244386,0.1157877,-0.50607187,-0.5987755,0.14995815,-0.6158001,0.20107755,0.04495599,-0.31236935,-0.051273085,0.2536883,0.1457081,-0.0020970304,-0.05647739,-0.6253427,-0.060772676,0.41898692,-0.25979313,-0.18763046,-0.2196486,0.38758275,0.49643987,-0.3400423,-0.44982585,-0.061873965,0.2869293,-0.2243761,-0.58097357,0.28028026,-0.36478674,0.3136712,-0.017729385,-0.5491813,0.009730335,0.16056986,-0.48718372,0.04440924,0.306481,-0.3106284,-0.015884085,-0.105586834,0.009501401,0.76802504,0.17970683,0.17223446,-0.5052697,-0.5545388,-0.86773986,-0.25491723,0.09353826,0.17591253,-0.04594879,-0.58692765,-0.16233441,-0.3516281,-0.013765923,-0.12878834,-0.55356914,0.42429683,0.16747814,0.6653337,-0.3489671,-0.93669724,0.08737324,0.3366531,-0.07721005,-0.43049437,0.61272544,-0.16317432,0.6953299,-0.09162219,0.12598827,0.040627327,-0.7675386,0.40301687,-0.33169192,-0.107498266,-0.6712491,0.031209258 +245,0.44929823,0.15226878,-0.6092744,-0.23463944,-0.24626052,0.11130492,-0.33874625,-0.0013192573,0.26659283,-0.16861548,-0.0019197783,-0.083448865,0.036023784,0.36583108,-0.15328784,-0.91969997,0.09507297,0.00578713,-0.631512,0.41908625,-0.57172924,0.38893047,0.14018477,0.5090371,-0.07040372,0.36414284,0.5163992,-0.13463709,0.00857059,0.036536045,-0.056024797,0.3567216,-0.8254493,0.18552111,-0.06432338,-0.33663613,0.06386841,-0.1351683,-0.16845492,-0.6364358,0.31221,-0.68610185,0.6527054,0.19853337,-0.3139508,0.05634004,0.1361847,0.044016127,-0.3251057,0.25332406,0.16646346,-0.35330275,0.004739344,-0.2201741,-0.28160915,-0.53371227,-0.6659849,0.05254644,-0.819326,-0.19354716,-0.42718744,0.22099791,-0.3204703,-0.10005962,-0.109681405,0.50173604,-0.44772696,-0.04149887,0.30946356,-0.30815873,0.17851327,-0.32397008,-0.21780892,-0.05185181,0.35788065,-0.10457189,-0.1095405,0.14898719,0.29432368,0.6714507,0.24910153,-0.3547437,-0.36898288,-0.1974542,0.08577143,0.3576688,-0.1062463,-0.31088203,-0.17877875,-0.12758043,-0.08000743,0.27965793,-0.032434523,-0.29330632,0.07825883,0.13903551,-0.072494626,0.4833097,0.41521546,-0.6170527,-0.43382737,0.38156694,0.3461102,0.0013994405,-0.12540235,0.27028677,0.029727867,-0.56258446,-0.3471861,0.17686746,-0.017068012,0.3941224,-0.07576784,0.27339825,0.80818737,-0.13066623,-0.11187233,-0.23148572,-0.19074823,-0.010913581,-0.1408724,0.059113614,0.117274985,-0.4075982,0.05629759,-0.24049255,0.6774303,0.034321286,-0.7638182,0.3704061,-0.5523791,0.08618056,-0.0973187,0.7133892,0.8582579,0.14144439,0.20313899,0.85107374,-0.6500498,0.07883273,0.041493453,-0.5537465,0.2711095,-0.09061832,0.08144965,-0.540155,-0.061989743,0.0881662,0.13911417,-0.016378565,0.37107942,-0.39798144,-0.07189401,0.10498231,0.7376407,-0.4474505,-0.045535725,0.6725322,1.2220763,0.8899299,0.027249923,1.2978185,0.4070591,-0.07732866,0.05180938,-0.32447734,-0.49510616,0.18377241,0.38967758,0.12832592,0.40743902,-0.05574814,0.20371448,0.3957402,-0.21397819,-0.02516993,0.00033267055,0.32300264,-0.036738537,-0.22450103,-0.34302112,-0.087467276,0.19550203,0.04515654,0.13237436,0.36029458,-0.030534282,0.32838818,-0.09909749,1.4829006,0.079976395,0.16358984,-0.028241022,0.4127337,0.33024535,-0.14134082,-0.16320576,0.31500146,0.24225369,0.042358637,-0.5476282,0.068679415,-0.33935425,-0.38215923,-0.26352787,-0.47492805,0.030505437,-0.035080504,-0.40819773,0.050017454,0.0477529,-0.32376978,0.28398237,-2.6839504,-0.14902468,-0.06966904,0.26030287,-0.0625846,-0.14578898,-0.31873888,-0.41132325,0.34550238,0.53716034,0.28614965,-0.48871532,0.41469002,0.3127394,-0.21368305,-0.25570422,-0.53752476,0.053595968,-0.188781,0.48182866,-0.16670561,-0.23985054,-0.26933935,0.62553734,0.6745891,0.10668065,0.0038144547,0.13276868,0.5265194,0.06592591,0.54029167,0.16801198,0.49796054,-0.2139745,-0.24476291,0.40466002,-0.35398155,0.29068777,-0.028745225,0.048235092,0.3610951,-0.55041665,-1.1101781,-0.59398013,-0.2879811,1.0832397,-0.30582553,-0.3166258,0.33194393,-0.11982674,-0.1863713,0.19696757,0.58298177,-0.18126802,0.2309072,-0.6656465,0.21316339,-0.08735033,0.06270016,-0.10105332,0.2287868,-0.3703056,0.6700657,-0.18660869,0.37992454,0.29638883,0.2145625,-0.010755981,-0.5213774,0.23540011,0.8092295,0.15057448,0.12879808,-0.16552065,-0.16923727,-0.148474,-0.012659669,0.018809142,0.5633554,0.6946083,-0.078976914,0.27762964,0.20353504,-0.14741312,-0.051783178,-0.14792612,-0.17339645,0.112800956,0.050244927,0.5012504,0.6040395,-0.30184177,0.1811663,0.044764515,0.22186624,-0.123555236,-0.48660952,0.6899768,0.6796734,-0.14816399,-0.19440505,0.6459064,0.38792852,-0.33964163,0.50701076,-0.5907229,-0.33000275,0.5486995,-0.12249769,-0.25383255,0.045334242,-0.39534357,0.013183168,-1.04645,0.110877596,0.0041846717,-0.4044784,-0.3334108,-0.30364987,-4.608096,0.21086647,-0.24917164,0.094566904,-0.12735079,-0.041755684,0.5146249,-0.5277856,-0.540044,-0.034003902,0.0064798025,0.45637614,-0.16326173,0.24839714,-0.22085063,-0.22271241,-0.2618148,0.42482376,0.17660622,0.18877193,0.20910004,-0.40357035,0.12679745,-0.2908757,-0.44469616,-0.034545176,-0.3684965,-0.4448556,-0.29700845,-0.4498602,-0.27131465,0.74572134,-0.41990894,-0.061375253,-0.30951485,0.048463114,-0.10799725,0.411901,0.24901561,0.1997038,0.117328025,0.054652877,-0.329073,-0.3505554,0.21387537,0.08523049,0.31183153,0.42085767,-0.031858154,0.14906883,0.45243284,0.42575482,-0.02828446,0.5518939,0.33169046,0.1260264,0.2864508,-0.3937271,-0.3552402,-0.8630582,-0.47898623,-0.43561295,-0.49942327,-0.54009706,-0.114503875,-0.47402143,-0.7749838,0.5145007,0.015474588,0.20222946,-0.19771075,0.30983925,0.29587144,-0.18090013,-0.015851531,-0.03614837,-0.2483726,-0.6036752,-0.17503284,-0.59662056,-0.70935196,0.12281777,0.8180912,-0.35933563,-0.07996477,0.098227754,-0.15561387,0.06535885,0.09618725,0.3132639,0.2348455,0.5519134,-0.016927829,-0.80821544,0.4974114,-0.2520902,-0.09500254,-0.7257374,-0.13042837,0.55162704,-0.5955431,0.7401468,0.3012793,0.26490575,0.36306673,-0.5809461,-0.34623465,0.13881148,-0.14417507,0.6451822,0.10230213,-0.8403582,0.51972544,0.024934156,-0.18670838,-0.6072611,0.41726544,0.065260634,-0.47500652,0.2444414,0.32997447,-0.0058372617,-0.08092735,-0.21448787,0.30859876,-0.49688897,0.28585705,0.27247736,-0.07964171,0.5499934,-0.1326446,-0.3447277,-0.64014596,-0.27470067,-0.5267045,-0.31984276,-0.057758626,0.073727146,-0.010111575,0.08218775,-0.13612422,0.5434992,-0.16120175,0.26469117,-0.08314767,-0.32079917,0.40967813,0.5718128,0.28187758,-0.57549506,0.58143795,0.061930895,-0.062730476,-0.10472944,0.04166066,0.5213374,0.1473464,0.37163833,-0.16832812,-0.065674506,0.13893095,0.6188361,0.019211175,0.3126182,0.21286297,-0.1955441,0.597929,0.09019862,-0.03158078,-0.18881014,-0.22343493,0.019640744,-0.08934088,0.16234112,0.47124004,0.19036147,0.34656888,-0.08315633,-0.027765453,0.421016,0.22302477,-0.06496542,-0.8296515,0.3458708,0.40459043,0.51679486,0.6701585,-0.14846434,-0.0031923226,0.3889769,-0.2885804,0.0848127,0.381063,0.09736774,-0.514332,0.69157875,-0.4608729,0.47028497,-0.26239175,-0.15410623,-0.0010916889,0.21712515,0.25456157,1.0194834,-0.10651224,0.13294856,-0.00501209,-0.06566316,0.0040302053,-0.23475412,0.11535058,-0.41312906,-0.22566226,0.5652665,0.43086162,0.2766683,-0.32574376,-0.16664922,0.10876411,-0.1451094,0.051660873,-0.28536898,-0.100337625,-0.12878464,-0.56249946,-0.4091484,0.58012474,0.10006585,-0.044932436,-0.004547713,-0.36991403,0.19652447,-0.14393303,-0.023135824,-0.054544806,-0.59290445,-0.023364183,-0.25770602,-0.4585896,0.57859033,-0.6070146,0.4673462,0.124745265,0.15368648,-0.281756,0.14521037,-0.016836947,0.63092965,0.19446482,-0.09268479,-0.30490008,0.094621934,0.38517863,-0.32347518,-0.32880226,-0.5181414,0.16724615,-0.47215882,0.37955275,-0.18143871,-0.30463955,-0.2581406,-0.059271097,0.14029603,0.37631002,-0.17432931,-0.23150036,0.27851692,-0.062724516,-0.23248914,-0.116108045,-0.38543049,0.3755197,-0.21804066,-0.1152823,0.054838955,-0.010902143,-0.16886269,0.2971137,0.17569593,0.11185889,0.119157776,-0.09036369,-0.24324979,0.013493257,0.085030064,0.36672834,0.2584001,0.03207926,-0.25801712,-0.43996564,-0.27262452,0.16465522,-0.1524122,-0.07343062,0.12724887,-0.3653229,0.79612416,0.40602618,1.1857126,0.21414408,-0.24779122,0.16848862,0.5085958,0.1214024,0.10740716,-0.44270334,1.0000342,0.61465925,-0.18986042,-0.2256097,-0.21967745,-0.24684656,0.19404276,-0.2438917,-0.221102,-0.2746352,-0.6678151,-0.1546595,0.08062941,0.26973823,0.12509559,-0.06155015,-0.11810893,-0.069701284,0.19005878,0.45325065,-0.5274993,-0.14946099,0.24786536,0.24622747,-0.02726832,0.3259091,-0.20464318,0.5208564,-0.71241134,0.08523994,-0.54109293,0.13597174,-0.037571337,-0.39134675,0.25947005,-0.017576694,0.31184217,-0.14590092,-0.25681552,-0.2955326,0.48228365,0.30698135,0.24004222,0.90543693,-0.2982925,0.0217496,0.044281416,0.4443372,1.4596522,-0.10474463,-0.03552883,0.31544897,-0.13284317,-0.61024284,0.0038602352,-0.53564614,0.07890359,-0.35028014,-0.5691513,-0.3282265,0.071597755,-0.0050764787,-0.01140772,0.04735658,-0.51191163,-0.20654644,0.34406748,-0.1278418,-0.21779254,-0.26208895,0.18324468,0.7806116,-0.35309696,-0.29763597,0.087109976,0.24996522,-0.12919952,-0.60955137,0.029112441,-0.20010276,0.34365997,0.29477707,-0.25283942,0.0082991505,0.38987756,-0.42877957,0.24367365,0.46421573,-0.23522131,0.04583209,-0.3375623,-0.20735039,1.0711678,0.07307907,0.15033154,-0.5304089,-0.41968894,-1.0247271,-0.33312038,0.3521828,0.16059735,0.018799739,-0.35834318,0.022506015,-0.037776332,0.065553494,0.053089935,-0.6504839,0.28995678,0.0044269795,0.7099158,0.015506034,-0.9667669,-0.061160307,0.17669477,-0.28747562,-0.5543984,0.5700116,-0.20823598,0.63018304,0.075027406,0.047184467,0.3177711,-0.68252945,0.3009581,-0.44665828,-0.049296122,-0.71859324,0.0060167485 +246,0.3823752,-0.28906205,-0.38273105,-0.21697955,-0.18428369,0.02097891,-0.082485996,0.5004456,0.17090525,-0.3391578,-0.28663746,-0.20970301,-0.005201906,0.26188672,-0.16692266,-0.5872744,-0.1498789,0.06336079,-0.53632104,0.48737663,-0.26966462,0.042921726,0.016985932,0.3393161,0.2107714,0.28054744,0.10084204,-0.16721602,0.059182536,-0.1493087,-0.18878521,0.18730521,-0.53891236,0.16504881,-0.18278904,-0.19226639,-0.07784976,-0.56303394,-0.49299422,-0.7193508,0.28020185,-1.044752,0.3591967,0.11077996,-0.22540298,0.39363316,0.0899182,0.08289104,-0.3475017,-0.17371528,0.10467006,-0.08865718,-0.08123515,-0.07432393,-0.15348133,-0.36884648,-0.50712657,-0.09344809,-0.26998353,-0.3393676,-0.4127842,0.03697291,-0.36579865,-0.012743496,-0.060361203,0.6672458,-0.4285417,0.26944372,0.34093237,-0.2258474,0.45434815,-0.5454618,-0.1916337,-0.11298137,0.20371078,-0.07463973,-0.26974347,0.32767597,0.3783261,0.22925653,-0.07657202,-0.075665064,-0.081871286,-0.14996217,0.20733023,0.32427686,-0.23565507,-0.50805056,-0.02625875,0.03584316,-0.011483103,0.33285618,0.10223051,-0.44760534,-0.109031074,0.16754878,-0.20656754,0.35927838,0.47720876,-0.14036603,-0.14719999,0.30869743,0.42727566,0.24039996,-0.1724286,-0.13138701,0.028694957,-0.5888072,-0.14804555,-0.010949535,-0.29578686,0.6945267,-0.18783535,0.1999538,0.69992584,-0.1259159,0.015509395,0.018383944,-0.0137311565,-0.08364003,-0.37766987,-0.19491185,0.2761897,-0.3266723,0.28367284,-0.14591686,0.7218874,0.1518306,-0.6223008,0.25481725,-0.6110306,0.19809742,-0.24104269,0.4717269,0.5835575,0.3746726,0.38336053,0.6102229,-0.45940158,-0.025481572,-0.044221316,-0.4083071,0.122419834,-0.12999377,-0.13482065,-0.3969343,-0.09342681,0.023182977,-0.07737541,0.077038504,0.25935242,-0.52260405,-0.09514356,0.058354262,0.89515585,-0.2355417,-0.014358806,0.6787785,0.96181446,0.7751683,0.10052749,1.0945668,0.20991543,-0.22593461,0.33774573,-0.0098464405,-0.79340285,0.3528784,0.43866137,-0.41686434,0.13128623,0.01165664,-0.16705881,0.35452023,-0.40703678,0.065165706,-0.25727913,0.16890384,0.14508723,-0.18123342,-0.3200114,-0.10300021,-0.09446224,0.081288524,-0.07014989,0.17688437,-0.090579435,0.34711477,0.1041498,1.4094579,0.034182392,0.12050433,0.13236785,0.35661635,0.14688492,-0.010599797,-0.09214705,0.41956377,0.45149747,0.29348516,-0.6512037,0.23516104,-0.1985556,-0.3754788,-0.1309074,-0.4385829,0.03591158,0.109711595,-0.41389403,-0.116918705,-0.21457818,-0.17060277,0.4383006,-2.752446,-0.18439968,-0.23208888,0.35780558,-0.3100811,-0.16544472,-0.014192545,-0.46070793,0.47164813,0.27942434,0.49938646,-0.5678426,0.19674203,0.5151497,-0.52601117,-0.2026582,-0.6435032,-0.11406927,0.022255447,0.4241014,0.024087003,0.05570027,0.1132579,0.04425054,0.46351233,0.25525108,0.18715858,0.3780399,0.41578075,-0.065031506,0.5316468,-0.084253855,0.50281084,-0.21048202,-0.1243056,0.20753588,-0.11601695,0.26143774,-0.10310757,0.12559734,0.4814073,-0.3903888,-0.834064,-0.74231726,-0.44240305,1.3138993,-0.40379348,-0.51737946,0.41202405,-0.37406236,-0.115997456,-0.079542585,0.5355078,-0.055740833,0.08582616,-0.7920231,0.21992247,-0.07100514,0.107142285,-0.026238369,-0.2190183,-0.33164304,0.7160505,-0.058285534,0.5148547,0.38302907,0.07440637,-0.13045172,-0.48988625,0.057588894,0.789392,0.35176983,0.083156385,-0.096237615,-0.19283448,-0.31214204,-0.050626844,0.083820425,0.68501186,0.64585954,-0.0546509,0.16470459,0.2421417,0.056759674,0.07043143,-0.15430246,-0.24206784,-0.1720924,-0.09084775,0.470417,0.6025572,-0.22079194,0.3370983,-0.04123239,0.39394334,0.07370038,-0.38679838,0.50747913,1.2417486,-0.16610436,-0.23160832,0.63076407,0.43259293,-0.30745372,0.365693,-0.42246395,-0.12998834,0.6222008,-0.1853274,-0.62704813,0.2265289,-0.25080273,0.04313138,-0.7360201,0.19813219,-0.25265914,-0.522015,-0.3274071,-0.1194775,-3.302566,0.25672325,-0.39300054,-0.24795938,-0.28516302,-0.21278763,0.28651693,-0.59128624,-0.5571887,0.2524484,0.0939881,0.6752857,-0.07313198,0.09371281,-0.29057187,-0.105481945,-0.18312761,0.032046188,0.1505512,0.27078423,-0.1458257,-0.4627277,-0.14814295,-0.036195405,-0.50074214,0.09323173,-0.48104984,-0.37089396,-0.11292515,-0.44342688,-0.280915,0.67192715,-0.26570597,0.07089958,-0.14949797,0.048167624,-0.18763338,0.15486977,0.08332855,0.38652703,-0.0730592,0.04162691,-0.014730181,-0.1775494,0.34597328,0.059472658,0.23436876,0.16927174,-0.19624674,0.23197949,0.3365941,0.5876481,-0.07110681,0.8123869,0.5210575,0.014962156,0.27083555,-0.250672,-0.3343869,-0.63329834,-0.2774953,0.012414089,-0.2910362,-0.45254773,-0.0590501,-0.28459758,-0.78437245,0.50049216,0.018791327,0.21005233,0.007650954,0.09627773,0.59192413,-0.23592053,-0.031356085,-0.018282788,-0.17194462,-0.7408833,-0.08493564,-0.6005029,-0.2999943,0.07390697,0.7452983,-0.2605428,-0.08129287,-0.11084386,-0.31163162,0.04119864,0.15178713,-0.13198818,0.2643382,0.4793419,-0.11681318,-0.7438475,0.60546625,-0.08603991,-0.31219155,-0.648932,0.33034304,0.5840586,-0.6400328,0.67873544,0.26537725,-0.11821975,-0.32430387,-0.47380498,-0.3036368,-0.18753645,-0.21336429,0.40742606,0.23435865,-0.7871099,0.32488337,0.31308362,-0.0766045,-0.623807,0.70119494,-0.11280143,-0.39008322,0.07713085,0.33525434,0.06201583,-0.010353691,0.033908688,0.2453128,-0.27834806,0.17657842,0.1766857,-0.046657745,0.17839123,-0.048155423,0.16570345,-0.8112563,0.15874584,-0.57225704,-0.19214042,0.29795432,0.111892216,0.025293797,0.13341144,-0.10289548,0.36929482,-0.12091863,0.21476136,-0.17573118,-0.2933889,0.32141495,0.4477896,0.4092998,-0.47125143,0.6534468,0.01551181,-0.09458374,0.1225276,0.22176202,0.3922051,0.070442036,0.39093348,-0.16818592,-0.21867938,0.24704064,0.7050334,0.16342959,0.51920974,0.07170508,0.10192283,0.33078447,0.040449347,0.23441233,-0.08988334,-0.6800624,0.022626886,-0.26413172,0.0765911,0.45293716,0.19723955,0.23453283,-0.11369131,-0.325716,-0.027297199,0.18137467,0.26719853,-1.0397272,0.4291613,0.27541628,0.84404534,0.46672413,-0.06759079,-0.16443549,0.6854406,-0.044341557,0.112428315,0.46622673,0.073561676,-0.51331353,0.5081395,-0.74220866,0.35939902,-8.888756e-05,-0.096140675,0.031266827,-0.0065345657,0.23535217,0.7735015,-0.13190411,-0.11193232,-0.050611787,-0.39040807,0.37086365,-0.5156818,0.045337077,-0.47330618,-0.3631901,0.47862038,0.6844197,0.27901378,-0.25658906,-0.039337713,0.08880808,-0.1175727,0.13783659,0.08560284,0.089371994,-0.11662869,-0.7720695,-0.21476506,0.4277956,-0.18416157,0.116691336,-0.070047356,-0.13470258,0.25819787,-0.124861,0.008080168,-0.16118348,-0.72913486,0.07072271,-0.29702616,-0.47386837,0.39248303,-0.23731945,0.20136474,0.14979519,0.04174685,-0.2498217,0.17704175,-0.09066913,0.8798377,-0.063946374,-0.08766043,-0.47436735,0.08743664,0.17939378,-0.13386868,-0.060166776,-0.4071493,-0.13474329,-0.4985344,0.47688606,0.052731644,-0.21592188,0.07237298,-0.17716667,-0.02693077,0.5975461,-0.14945357,-0.08374417,-0.24685402,-0.14376378,-0.287845,-0.19819987,-0.03122653,0.29122522,0.22519569,0.24924575,-0.12898768,0.007788505,-0.24303368,0.34698597,0.0075207436,0.47939247,0.29192305,0.04172117,-0.15117252,-0.34849903,0.27486113,0.42554694,0.13148566,-0.092716895,-0.15062432,-0.506121,-0.24800101,-0.038440917,-0.040637862,0.58846796,0.098335214,-0.017255804,0.5721668,-0.10836933,0.9377286,-0.02331734,-0.3309256,0.0027899232,0.5201286,0.053377263,-0.17768645,-0.20244299,0.7854972,0.48437467,0.020586282,-0.028390113,-0.36239353,0.06828296,0.20606299,-0.08443654,-0.16363433,-0.090503216,-0.60245097,-0.15559019,0.0031403708,0.31166193,0.31206012,0.09540777,-0.045074258,0.11009844,-0.107341774,0.3583402,-0.41675726,-0.21279278,0.16820805,0.0819701,0.006050076,0.16869545,-0.3708113,0.40915576,-0.35414618,0.0868004,-0.31182,0.15716566,-0.27547818,-0.14796643,0.1488503,-0.16897546,0.43897825,-0.2876801,-0.31333518,-0.2915074,0.47969443,0.21809962,0.090689726,0.64786136,-0.24486212,0.09451617,0.081679,0.6002328,0.8248445,-0.18128946,0.00032197792,0.28305742,-0.55034333,-0.6019003,0.37113175,-0.26989987,0.2286595,0.09013392,-0.0076185376,-0.42603663,0.28621966,0.18475787,-0.091994695,0.050916173,-0.7201943,-0.30396634,0.25820372,-0.30063528,-0.15481187,-0.3996509,0.21886158,0.5323606,-0.27333426,-0.15398839,0.014805334,-0.05896647,-0.038804065,-0.420545,-0.06570746,-0.36528212,0.22998948,0.013190614,-0.34492284,-0.05585963,-0.038990207,-0.37587902,0.3502814,-0.17006819,-0.29837528,0.06943337,-0.21388964,-0.21966197,0.9486912,-0.19758452,0.03342561,-0.49405685,-0.50281185,-0.5993243,-0.43209654,0.46952972,0.01237878,0.14734724,-0.426436,0.062334906,0.014618261,0.026629567,-0.2153888,-0.23247066,0.46839455,0.09012298,0.5054969,-0.086037636,-0.6992799,0.22551334,-0.031453002,-0.04412279,-0.66144115,0.48927078,-0.091961876,0.5354184,0.08154876,0.15889482,0.21218736,-0.38805512,-0.2833059,-0.18363571,-0.22842695,-0.5429123,0.021940073 +247,0.1816979,0.043992676,-0.6802766,0.1427717,-0.19783328,0.2619542,-0.62079775,0.10725181,0.30702835,-0.43478853,0.12727359,0.1945831,-0.43651316,0.13296425,-0.024529563,-0.51954496,-0.13993487,0.22243544,-0.41557628,0.52944845,-0.25552526,0.2663949,0.011779061,0.38318473,-0.025756534,0.35309485,0.0016646797,0.060326245,-0.2953105,-0.5348994,0.10645191,0.015037555,-0.30638504,0.4104468,-0.23065604,-0.16248645,-0.07447731,-0.27572182,-0.2950186,-0.54353213,0.21503454,-0.598854,0.6910314,0.014116347,-0.12138954,-0.05461561,0.35004103,0.12307791,0.33428282,-0.16109252,0.30618402,-0.48521268,-0.4819892,-0.67502296,-0.41522247,-0.46273744,-0.4072494,0.050092634,-0.4492676,0.07466171,-0.18230845,0.3959467,-0.17081334,-0.120191894,-0.2632759,0.3631689,-0.23130934,0.07950393,-0.17839769,-0.39745766,0.1459264,-0.8716718,-0.10578633,0.06760487,0.22717573,0.1866906,-0.10818766,0.26610836,-0.016316222,0.5212797,-0.078790516,-0.17005223,-0.619656,-0.025385123,0.35122362,0.5672871,-0.45299017,-0.034173746,-0.20493118,0.06263927,0.78418833,0.14514528,0.010194994,-0.3185625,0.121347204,-0.29617506,-0.26466718,0.55112845,0.5599051,-0.026416104,0.19999768,0.3192282,0.5269703,0.37540004,-0.3186336,0.010021145,-0.37746572,-0.21126968,-0.041777078,0.14404415,0.08850251,0.32898572,-0.043081723,0.26113594,0.3103968,0.10276698,-0.07078083,0.25815704,0.10046285,0.1972081,-0.077695414,-0.0347814,0.24268116,-0.49464476,-0.027263531,-0.47158563,0.34241182,-0.3799954,-1.0094416,0.38171607,-0.48834324,0.099360004,0.0055124606,0.6052054,0.73183316,0.7502116,-0.018512657,0.91625947,-0.32950422,0.0718857,-0.09082357,-0.09874804,0.2063342,0.08037666,0.08011606,-0.5541057,-0.08383457,0.09946013,-0.19140321,-0.023750242,0.73108613,-0.42272785,-0.17937356,0.032607313,0.88414425,-0.12321688,0.029537411,0.67250663,1.1859463,0.84491056,-0.041372214,1.0376502,-0.020772008,-0.16568692,-0.48935655,-0.29771703,-0.6498703,0.18547128,0.30508068,0.12367834,0.4781745,0.09736867,-0.118266545,0.40552807,-0.019150456,-0.3284613,-0.17059399,0.18635099,-0.023867836,-0.0834949,-0.26777938,-0.12638074,0.22785021,-0.007434831,0.22108687,0.37179238,-0.5236897,0.6076079,0.09223107,1.0615739,-0.31036884,0.08269136,0.15962678,0.013123169,0.17404458,-0.084140815,-0.06547362,0.185011,0.15965587,-0.06467871,-0.34749016,0.094611414,-0.18758646,-0.6136993,-0.12809229,0.02329538,-0.3093654,0.0342383,0.08557187,-0.37173364,-0.0053776205,-0.5905225,0.17400275,-2.4389167,-0.161507,-0.12972023,0.23776516,-0.0065822373,-0.50747716,-0.14281794,-0.25222036,0.6112496,0.2363918,0.6249207,-0.28809363,0.118083596,0.49721864,-0.6424938,-0.33825448,-0.50191087,0.007529864,-0.007956266,0.6044394,0.06247942,-0.37518045,0.19428346,-0.061938643,0.45909876,-0.1605591,0.11362709,0.5963293,0.47726578,-0.26246712,0.0986071,-0.09442901,0.6285625,-0.32329032,-0.3555733,0.40261376,-0.40059218,0.416931,-0.36080864,0.19703548,0.28840536,-0.17503023,-0.56358963,-0.27243173,0.104280934,1.4386128,-0.022649966,-0.9073425,-0.061087534,-0.060291674,-0.4855385,0.08598522,0.6197819,-0.24045609,-0.011235636,-0.57974976,-0.09043276,-0.32983753,0.40495926,-0.13043813,0.11985286,-0.47404525,0.69008696,-0.04053235,0.3501975,0.6660419,0.3428982,-0.45581084,-0.07465456,0.107401244,0.8566566,0.3742188,0.0764181,-0.24269484,-0.09180231,-0.06759313,-0.3205851,-0.004845665,0.6072936,0.56684345,0.03564676,-0.077631585,0.44781864,-0.31099588,-0.055155434,-0.21087533,-0.644498,-0.38910297,0.0651965,0.66903305,0.49253,0.30155504,0.49861732,0.24306099,0.24163018,-0.23505352,-0.46270818,0.5245472,0.49250004,-0.37616107,-0.25867528,0.580401,0.31452402,-0.21800925,0.6317149,-0.6489086,-0.4719115,0.19676232,0.09193866,-0.56933314,0.27020624,-0.40673006,0.12440848,-0.70874524,0.28087905,-0.47262794,-0.7434318,-0.7955837,-0.104459636,-1.508089,0.2720514,-0.32474086,-0.18110675,-0.330293,-0.09149216,0.11998524,-0.30511236,-0.65317917,0.06602729,0.33399597,0.46850485,-0.17555486,-0.119213805,-0.12116305,-0.4817623,0.01992123,0.34393618,0.10886671,0.118798524,-0.32215464,-0.2076452,-0.003606041,-0.19157553,-0.055725235,-0.21922365,-0.41291568,-0.13327095,-0.031537157,-0.2807706,-0.0012059028,0.6765901,-0.6969678,-0.09705767,-0.43818885,0.09827626,0.46617824,0.2580965,-0.101489015,0.12686442,0.29532012,-0.2269668,-0.08177989,-0.19011036,0.2396382,0.11811895,0.32560337,0.67059135,-0.027537325,0.20035312,0.5559945,0.76054543,0.027116863,0.8431927,0.22538403,-0.1757124,0.21656825,-0.35471064,-0.124484375,-0.4666157,-0.07207422,0.2859243,-0.36575636,-0.49034265,-0.10053796,-0.29344043,-0.8457695,0.55572295,0.2823512,-0.018994598,-0.09269944,0.60578233,0.4381947,-0.084703095,-0.13868015,-0.19115354,-0.2469944,-0.31218657,-0.37754875,-0.7727317,-0.56745267,-0.07648992,0.85865283,-0.18786761,0.21220897,0.47549182,-0.38637036,0.11310014,0.19902512,0.06554871,-0.044625264,0.016928783,0.27195308,-0.52932125,0.054361727,-0.12540719,0.12941343,-0.5099968,0.32691744,0.76296705,-0.58620316,0.1335206,0.48613596,-0.03738713,-0.3102067,-0.8458098,0.0547142,0.3587095,-0.12909612,0.35229683,0.32459497,-0.4915319,0.5356444,0.30378354,-0.04400228,-0.68730265,0.1651308,0.12817791,-0.009086797,-0.11449622,0.43132275,-0.17731531,0.060086973,-0.18815087,0.18908122,-0.16855206,0.47579193,-0.10569365,-0.108905666,0.08187023,-0.17841636,-0.35359663,-0.7843673,0.29519695,-0.5653843,-0.42788416,0.52196383,0.0277604,0.17333683,0.06512064,0.31284493,0.4436556,-0.38334274,0.08222389,-0.344446,-0.29492265,0.4140112,0.47237828,0.48341343,-0.48893136,0.38429883,-0.064495556,-0.31700248,-0.019930478,-0.12016931,0.56889504,0.09383941,0.2561457,0.0006829821,-0.06388621,0.097736426,0.7025173,0.20496601,0.31717792,-0.17063206,-0.35750896,0.13675228,-0.06876292,0.22728617,-0.2989923,-0.5218615,0.0046452237,-0.0173638,0.19067672,0.46823725,0.17213114,0.5708769,-0.17703643,-0.17542171,0.15210317,0.10206582,0.17102386,-1.0289812,0.681006,0.18727128,0.68056273,0.44794184,0.16051126,0.06320204,0.82395214,-0.25343508,-0.10300084,0.31290346,0.117997974,-0.35458437,0.30548796,-0.7871982,0.17881988,0.01722066,0.17914031,0.270975,-0.21728924,0.40637553,0.8932582,-0.19306025,0.24142344,-0.18516758,-0.037287213,-0.3581505,-0.11763417,0.25739008,-0.19996892,-0.49894163,0.8618629,0.07566533,0.55982727,-0.18345734,-0.025972191,0.32872376,-0.09406987,0.52241445,-0.020855043,0.19996071,-0.10884041,-0.37990206,-0.046882637,0.5610108,-0.040516596,0.065099545,0.03520828,-0.16618322,0.11827975,0.0033845145,-0.20674053,-0.025242776,-0.27849168,0.16082692,-0.38453004,-0.4785779,0.34498402,-0.10204803,0.075700775,0.11205943,0.16876361,-0.12346183,0.2652392,0.24230362,0.73595566,0.12566063,-0.042358153,-0.054078873,-0.051051214,0.06313476,-0.29692432,-0.09714188,-0.02812856,0.14871962,-0.84347725,0.3407663,-0.49301958,-0.48652777,0.23875839,-0.23227765,-0.10354634,0.35455862,-0.22704275,-0.25823647,0.38408056,-0.10669991,-0.21358839,-0.36973748,-0.38399827,0.14203136,-0.26623726,-0.13433191,-0.3934593,-0.07525852,-0.4600261,0.06398242,-0.09225054,0.12844603,0.53455603,0.3350368,-0.56915087,0.07889565,0.19046554,0.47606975,0.07424741,0.14602453,-0.2229449,-0.39461404,-0.47129604,0.42837474,-0.038642254,0.23683009,0.25031155,-0.48605415,0.6759657,-0.07742636,0.9964737,-0.06730219,-0.21981509,0.08614091,0.5338192,-0.04724797,0.03834151,-0.47534305,1.0675328,0.58392334,-0.10683628,0.08581038,-0.6672264,-0.21154356,0.21676104,-0.313563,0.043139722,-0.07022225,-0.7458163,-0.2567881,0.30798298,0.23798934,-0.16948317,-0.02299246,0.12110546,0.1763486,0.16579556,-0.005014524,-0.43628204,-0.06340551,0.38684934,0.183916,-0.18993284,0.18800613,-0.45017081,0.17930724,-0.6588193,0.18437631,-0.3922585,0.070922986,0.09282185,-0.26053667,0.15288879,-0.04571456,0.17748629,-0.3447534,-0.41400117,0.011316506,0.19702354,0.2204797,0.29717195,0.48037452,-0.33497217,0.1439471,-0.110025845,0.45326287,1.1360815,-0.25797638,0.044171877,0.12199218,-0.43509504,-0.5734552,0.035927694,-0.45138258,-0.17413174,-0.057241075,-0.3779521,-0.23103008,0.26798075,-0.02048409,-0.057782333,-0.2662815,-0.50729257,-0.06821498,0.011991251,-0.23100108,-0.118836865,-0.2121575,0.016683001,0.65573394,-0.1260886,-0.499793,-0.111533836,0.3533026,-0.32525942,-0.45627654,0.31561968,-0.39151317,0.26800895,0.1539161,-0.29367283,0.01492186,0.026311487,-0.5054761,0.061622363,0.27779552,-0.29231074,-0.12768775,-0.16826329,0.33618826,0.3971367,-0.18780282,0.091264,-0.11355138,-0.5811765,-0.6654797,-0.3388333,-0.41942102,0.32669666,-0.055636767,-0.80679554,-0.086314805,-0.4753229,-0.08755645,0.119886965,-0.57931596,0.33319968,0.134897,0.4987771,-0.7564305,-0.9159628,0.39220428,0.15945576,-0.12082483,-0.40753496,0.30742794,-0.035933055,0.86177444,0.21557675,-0.036092784,0.12248121,-0.9907305,0.39087275,-0.30664596,-0.24548666,-0.7283752,0.039829474 +248,0.532754,-0.26672328,-0.6846828,-0.22367324,-0.39800963,0.03981383,-0.23092812,0.4232003,0.45230097,-0.41417584,-0.08572777,-0.0738126,0.09308581,0.61188245,-0.016506275,-0.72511685,-0.07314648,0.29891607,-0.66502774,0.5344049,-0.42148435,0.33571264,0.08898394,0.23542306,0.124629684,0.14128385,0.21903232,-0.015574098,0.063204646,-0.07868101,-0.09095994,0.1108483,-0.6449217,0.22205932,0.04973562,-0.28698504,-0.041883927,-0.48292568,-0.38236177,-0.7494147,0.36237967,-0.7769501,0.67822975,0.027015567,-0.28211135,0.176887,0.03774266,0.28443915,-0.26606274,-0.057100557,0.22281407,-0.11336695,-0.2450214,0.0057347557,-0.14147258,-0.45653766,-0.5470154,0.050823454,-0.5603788,-0.2742432,-0.37138656,0.1849125,-0.31883538,-0.007536448,-0.21855576,0.5635609,-0.3022139,-0.09116724,0.28467077,-0.33894908,0.2253585,-0.5234375,0.05716711,-0.009573983,0.06228333,-0.18381938,-0.22819565,0.34990028,0.2655177,0.5944177,0.13736686,-0.31830388,-0.31963888,0.013095831,0.035059936,0.6107514,-0.07510604,-0.63061047,-0.25175482,0.1269418,0.15401626,0.010093231,0.053119503,-0.40294182,-0.12873422,-0.11798357,-0.10144416,0.53833795,0.48640823,-0.29990345,-0.26792282,0.4951313,0.49626845,0.1464862,0.11823026,0.10433598,-0.041387513,-0.68709916,-0.30088645,-0.074695215,-0.29658964,0.40760252,-0.24346262,0.1835467,0.43298832,-0.05242805,-0.09621,0.19481689,-0.08521688,0.013731895,-0.3475507,-0.13498434,0.31468633,-0.4763311,0.08346711,-0.21616203,0.82798165,0.13467123,-0.72273314,0.4265302,-0.49053007,0.27197585,-0.15168819,0.48136103,0.8363151,0.55221564,0.21984515,0.90645117,-0.46610844,0.28108808,-0.12138304,-0.5083857,0.11568361,-0.14816317,-0.0061513325,-0.6249357,-0.018921642,-0.14124669,-0.2831858,0.07371701,0.57567775,-0.6729683,-0.13017784,0.12714884,0.7255103,-0.29245922,-0.15776528,0.7273115,0.97944844,0.9890067,-0.022047212,1.3679745,0.3059968,-0.12681097,0.13013572,-0.33326986,-0.8546254,0.25975296,0.41455695,0.10770014,0.30693224,0.07735609,-0.06274618,0.46738067,-0.31619805,-0.21101013,-0.16190833,0.43399385,-0.1737743,-0.20282708,-0.60662645,-0.16549475,0.02663113,0.23606125,0.062345333,0.2902257,-0.27390397,0.2968361,-0.045692977,1.6797303,-0.18584153,0.08723908,0.0011162529,0.44079527,0.39838612,-0.2911305,-0.251023,0.25278243,0.37505385,0.049368557,-0.66807616,0.009290131,-0.29268652,-0.39875486,-0.1992573,-0.30046412,0.03786234,-0.11414851,-0.32101265,-0.14136179,-0.0072934353,-0.4108919,0.45259264,-2.3782473,-0.19830611,-0.11183468,0.33297107,-0.30361134,-0.40903255,-0.037893202,-0.41667217,0.35352176,0.3498734,0.6098433,-0.59777427,0.32463872,0.330578,-0.6589132,-0.0005773008,-0.51759326,-0.07081266,0.0028711604,0.41304207,0.09866403,-0.2088829,-0.18060233,0.24982664,0.5125109,0.006332346,0.026174726,0.37477022,0.45766675,0.0076084277,0.50357777,-0.23401953,0.58070093,-0.30821338,-0.24977519,0.38228762,-0.21646675,0.1700438,-0.2916434,0.117359795,0.26760638,-0.62186944,-1.195706,-0.73404694,-0.15763193,1.2070812,-0.23619741,-0.51705384,0.42120478,-0.27073815,-0.31175262,0.21109849,0.3865867,-0.07995439,-0.040046293,-0.7952367,0.17906171,0.008899176,0.27404934,0.13803989,-0.07765227,-0.49482918,0.78496623,-0.040964983,0.45460635,0.24456947,0.22927381,-0.23499078,-0.43472782,0.08188396,0.9970652,0.35767224,0.16839205,-0.15330979,-0.10423959,-0.3595844,-0.1772404,0.068666175,0.5391414,0.8114375,0.017358404,-0.03702046,0.1858862,0.04658737,0.10676958,-0.05329394,-0.33452737,-0.11753602,-0.01898982,0.6187228,0.6504195,-0.2310567,0.4933581,-0.16341859,0.14780726,-0.03362147,-0.6006963,0.6587766,1.0280795,-0.18733302,-0.28187606,0.77350813,0.28180486,-0.13170607,0.49141878,-0.6030518,-0.4086639,0.33956006,-0.15544578,-0.42447916,0.14820138,-0.23338208,0.06288497,-1.1286067,0.26627177,-0.24128175,-0.6639118,-0.19496009,-0.10937349,-4.024043,0.26722342,-0.11443681,-0.014154414,-0.0761545,0.034479145,0.22627273,-0.5068525,-0.70724803,0.19818434,0.045911577,0.75461704,-0.082234055,0.22109835,-0.14148585,-0.32558018,-0.27184117,0.19496253,-0.008209194,0.32678658,0.17889848,-0.44828445,-0.045567457,0.032510124,-0.5044323,0.13866478,-0.818653,-0.46453226,-0.2969651,-0.7612361,-0.1191734,0.6882749,-0.04052441,0.024696074,-0.23883072,0.18856424,-0.007418284,0.16438666,-0.17594427,0.2540468,0.18239893,-0.090595946,-0.030087654,-0.14389636,0.27385283,0.029126085,0.3134701,0.24718955,-0.31059155,0.16035546,0.69904125,0.75100064,-0.30608493,0.9194958,0.6478242,-0.11078553,0.31926277,-0.104619846,-0.32733887,-0.51714206,-0.39426932,-0.10248081,-0.47622278,-0.31127706,0.01794828,-0.26889852,-0.7344953,0.6370199,0.07085712,0.23984483,0.019899795,0.11663855,0.455322,-0.29814565,-0.067006625,-0.13338794,-0.30939916,-0.5835603,-0.27467304,-0.48714402,-0.48755074,0.12881406,1.0896554,-0.22893606,0.12316033,0.008296655,-0.06948182,-0.033320133,-0.027802072,0.066362746,0.35927004,0.30033106,-0.18827213,-0.725751,0.45179674,-0.093895875,0.06639823,-0.50227636,0.40226585,0.49639335,-0.45318174,0.44363996,0.28488618,0.23454975,-0.067230925,-0.5951668,-0.26687425,0.23730999,-0.15781426,0.427275,0.19079328,-0.81762093,0.5676782,0.437019,-0.45032597,-0.8568914,0.33749717,0.044892825,-0.20116991,-0.19888711,0.3317417,0.11932195,0.050820276,-0.3459759,0.24038228,-0.4192934,0.38243014,0.1363597,0.028993933,0.31381714,-0.25411856,-0.34427297,-0.7242844,-0.24004705,-0.5600812,-0.26685962,0.13983943,0.07056034,0.088938676,-0.0044175936,-0.053227607,0.54946315,-0.31137902,0.028045015,-0.11944994,-0.5203571,0.43779856,0.45436418,0.44490704,-0.43727896,0.6213936,0.021395495,-0.10590316,-0.22000016,-0.12839006,0.59324396,-0.02608016,0.40140474,0.05272185,-0.15430178,0.16950242,0.94448817,-0.008695146,0.374218,0.040115595,-0.22283116,0.22920081,0.16292709,0.13042927,-0.037597552,-0.6323105,0.05268952,-0.2357305,0.14374708,0.53677166,0.27316415,0.30537784,-0.10750809,-0.4160123,0.0895118,0.06032485,0.05850037,-1.2822171,0.36928067,0.17809214,0.8196837,0.5003555,0.050477937,-0.07973405,0.6833344,-0.14704858,0.119746685,0.3013167,-0.22877374,-0.4519354,0.43777406,-0.76924485,0.39700314,-0.05455372,-0.0733813,0.3189709,0.109576456,0.44312933,0.88462704,-0.16348232,0.019961994,-0.14399618,-0.25622827,0.14057735,-0.38792208,0.023583233,-0.597575,-0.4126053,0.6912704,0.4146691,0.36359766,-0.15166293,-0.06824781,0.18964949,-0.17280596,0.093040995,-0.050342903,-0.12021204,0.05424892,-0.6204744,-0.13841309,0.51534086,0.44072288,0.22250035,-0.15160277,-0.0044800364,0.23531005,-0.33260518,-0.27333874,-0.15904234,-0.6880244,-0.10129536,-0.35301793,-0.23462527,0.43754262,-0.20731041,0.19281766,0.083257206,0.13174197,-0.28177336,0.35028127,0.015343024,0.8894731,0.31787464,-0.21407357,-0.29788324,0.2253748,0.100063175,-0.26853353,-0.024695035,-0.24851605,-0.09504594,-0.7106603,0.4633128,-0.057406314,-0.54675907,0.41097134,-0.066537015,0.2082384,0.44144127,-0.15179406,-0.21127136,-0.0366599,-0.12147407,-0.26160818,-0.28905642,-0.06247034,0.25562656,0.13595816,-0.111758746,-0.17111582,-0.0068041477,-0.055420276,0.45947218,-0.031733017,0.2563437,0.17759922,0.23799118,-0.21419552,0.10367024,0.42432833,0.62483764,0.015704475,-0.14817582,-0.26554602,-0.2701843,-0.3970428,-0.1452774,-0.080374226,0.28195333,0.07670294,-0.17220153,0.82529706,0.3037511,1.2667699,-0.16952252,-0.3238467,0.13309328,0.5517628,0.08710795,-0.052951653,-0.4651286,1.0030094,0.6110242,0.0044406196,-0.15119226,-0.573443,-0.04253832,0.268501,-0.33762935,-0.06674525,-0.041877266,-0.6964637,-0.31165266,0.34687942,0.2758747,0.1141831,-0.12716071,0.16430172,0.18345888,0.084987834,0.2313931,-0.56618476,-0.07060364,0.23174715,0.4098722,0.087359555,0.17632848,-0.5533171,0.30401337,-0.719643,0.25347292,-0.061431985,0.13207568,-0.21443431,-0.22348192,0.271354,0.11477601,0.38645217,-0.35486427,-0.39009184,-0.22455941,0.5587844,0.12462559,-0.012330727,0.7326079,-0.30655855,0.061914306,0.1651342,0.419425,0.98783237,-0.18003467,0.18908681,0.36134928,-0.32626554,-0.6953193,0.3428388,-0.19524035,0.13511361,0.0027524186,-0.32342324,-0.56030744,0.12843893,0.0527054,0.016899228,0.15633425,-0.5788508,-0.053108137,0.3233587,-0.1476045,-0.23046805,-0.14731978,0.152285,0.5859521,-0.19977634,-0.418705,0.29245535,0.2833038,-0.09490069,-0.72105587,-0.11029867,-0.28381294,0.20638832,0.021827308,-0.43985373,-0.24700871,0.087181956,-0.5390247,0.069280475,0.18539988,-0.4132949,0.15379204,-0.40307263,-0.059930604,0.9098357,-0.21300378,0.36222976,-0.73334444,-0.56078184,-1.008517,-0.1988736,0.4688923,0.05538908,0.056820154,-0.7036197,-0.061733466,-0.15232502,0.04288843,-0.058865085,-0.41610187,0.3715712,0.06292686,0.4623865,-0.21549,-0.93021834,0.12166678,0.1619269,-0.27201557,-0.5443984,0.49098116,0.029071964,0.9132964,-0.041964464,0.030406965,0.24162076,-0.67345715,0.034061167,-0.1946438,-0.085636586,-0.5675141,0.105264954 +249,0.14600371,0.021789942,-0.63257056,-0.31400484,-0.49538094,0.2510211,-0.20787439,-0.04192969,0.22258337,-0.27837697,0.018337378,0.03562036,-0.2506934,0.51634187,-0.19678022,-0.8298531,0.09296721,0.048267536,-0.6484498,0.50395966,-0.3583124,0.42873117,0.13932952,0.28046337,-0.12446309,0.40084273,0.20885284,0.123462304,0.001582035,-0.23788486,-0.33306623,0.3270897,-0.49734205,0.45367125,0.11254204,-0.42302957,-0.099089675,-0.2980985,-0.015172805,-0.5936639,0.27349496,-0.6796691,0.6081912,-0.28883782,-0.38910517,-0.060040653,0.27579346,0.19151905,-0.12906744,0.064905435,0.20859228,-0.3742047,-0.1472278,-0.073626585,-0.4340051,-0.6206997,-0.54879856,-0.03322372,-0.89345706,-0.0677893,-0.2560566,0.37437886,-0.2629438,0.012867813,-0.19361624,0.3568182,-0.37898564,-0.041984554,0.18571724,-0.41844162,-0.046908744,-0.42574698,-0.12833856,0.05975759,0.2889233,-0.012363672,-0.18000595,0.26093858,0.43507504,0.50234187,0.118026786,-0.30216938,-0.22144958,-0.3235567,0.048454735,0.545045,-0.0055289334,-0.17203546,-0.28558332,-0.1528485,0.42915225,0.1955746,0.18911107,-0.3065794,-0.09703199,-0.21960625,-0.24065672,0.29681578,0.34491232,-0.5131009,-0.1047053,0.47644112,0.2827313,0.043612864,-0.40452403,0.21296047,-0.10907306,-0.32583836,-0.064660154,0.02901732,-0.06858846,0.48534584,-0.14497341,0.38066193,0.76085436,-0.03324001,-0.0050385636,0.047145553,-0.123965345,-0.2195504,-0.15175237,-0.02002794,0.10307103,-0.40301734,-0.113632046,-0.15956368,0.7068861,-0.081252985,-0.7316579,0.3608005,-0.30033085,0.0678682,-0.09538656,0.70170933,0.7585982,0.45270893,0.10624599,0.8570104,-0.4232953,0.011629869,0.0694121,-0.29924998,-0.05144628,-0.11124754,0.23127082,-0.5620562,0.2104003,0.14113916,0.06367178,0.08238739,0.4183398,-0.47280887,-0.13128118,0.027095782,0.56925714,-0.37860724,-0.25105223,0.95691377,1.0635153,1.0886272,0.10042386,1.078351,0.3232026,-0.115830384,-0.37581015,-0.18144462,-0.24202575,0.114328794,0.42308208,0.3490429,0.48162922,0.021626143,0.06886854,0.576163,-0.06457481,-0.1527002,0.1958622,0.23363689,0.016838152,-0.18356884,-0.49373594,-0.1434088,0.348828,0.07277024,0.1283676,0.31777325,-0.13691677,0.8568295,0.32301632,0.98325914,0.057900928,0.1073544,-0.08384712,0.20248011,0.1448933,-0.19973327,-0.07658293,0.2396939,0.12453674,-0.23549107,-0.36499745,-0.0342687,-0.35865912,-0.3462765,-0.21957125,-0.4349225,-0.38551205,-0.3253107,-0.3686664,-0.27226147,0.13145398,-0.4002835,0.2692904,-2.6194673,-0.24458691,-0.28271067,0.22938958,-0.20724835,-0.25579625,-0.13716754,-0.4761271,0.32073632,0.38049144,0.23110078,-0.5715887,0.5103594,0.46586952,-0.29217607,-0.23016493,-0.64152473,0.076270804,-0.11670959,0.4796131,0.0038946527,-0.3230322,-0.15382047,0.33728743,0.5875346,-0.00033361572,-0.032690514,0.28318742,0.3891658,-0.13637994,0.43979436,0.17822526,0.75971806,-0.14304452,-0.16107927,0.25659645,-0.5032788,0.3953164,-0.08002414,0.20641196,0.54039663,-0.3599949,-0.78757274,-0.610765,-0.22181307,1.2955953,-0.31204256,-0.5084547,0.2602156,-0.083901264,-0.30717543,0.23596145,0.47350186,-0.06253086,0.1266874,-0.47987774,0.10633794,-0.19478874,0.15946619,-0.20200725,0.04919117,-0.4402105,0.5834467,-0.14499702,0.5168366,0.2127942,0.23449714,-0.27662173,-0.27929333,0.12031541,0.96369785,0.5002355,0.00911487,-0.09691095,-0.14480498,-0.20114681,-0.29510635,0.19864218,0.48615727,0.5383639,0.16887243,0.10394064,0.285646,-0.15865524,0.106197916,-0.14368966,-0.28461644,0.0038479588,0.17777537,0.5805209,0.6331838,-0.06400221,0.5548951,-0.07733764,0.2879188,-0.22423837,-0.6284836,0.39786515,0.4656381,-0.22282131,-0.38512084,0.7611838,0.30860922,-0.37326744,0.3769753,-0.49898177,-0.5481044,0.4598802,-0.028869614,-0.34191114,0.15393993,-0.36865872,0.20460738,-0.8155189,0.2540676,0.035690494,-0.7741412,-0.5191759,-0.15160453,-3.201608,0.1396469,-0.10398125,0.020962758,-0.17154558,-0.24771313,0.29078427,-0.4910807,-0.6192861,0.053060394,0.071104124,0.5038723,-0.11914723,0.0493083,-0.19241498,-0.40795514,-0.10947449,0.39046893,-0.054650523,0.30175298,-0.09857186,-0.24542725,0.101461254,-0.37317386,-0.4809727,-0.12566125,-0.59847033,-0.6366846,-0.06418953,-0.4101303,-0.19979279,0.7248948,-0.46340337,0.035752513,-0.3528479,0.02420345,-0.099272914,0.17539968,0.23380291,0.18517949,0.1149586,-0.0029050687,-0.031977646,-0.41089258,0.14314106,-0.03171618,0.30606475,0.5125022,-0.07487974,0.3014279,0.42664954,0.63945544,0.062483516,0.9103618,0.12612174,-0.19418862,0.32345343,-0.30931956,-0.40610725,-0.7241979,-0.36746636,0.079187475,-0.53750867,-0.3786513,-0.030302882,-0.26143625,-0.7813028,0.5793706,0.30502108,0.19203034,-0.36490154,0.27953073,0.3689669,-0.12935503,0.061421122,-0.07089755,-0.23188102,-0.57311785,-0.4262189,-0.788905,-0.5902662,0.047766548,1.0585611,-0.2001679,0.011422639,0.09904827,-0.2688795,-0.0023567507,0.25792614,0.42076996,-0.0058431327,0.10908751,-0.24745655,-0.75050116,0.3390753,-0.4325838,0.030987795,-0.40566853,0.038956903,0.64808905,-0.51759946,0.45528433,0.37104115,0.31924823,0.039620418,-0.5853182,-0.06350409,-0.09010733,-0.22525704,0.54373854,0.25079083,-0.5215284,0.52900356,0.032880824,0.0339779,-0.5517107,0.35429874,-0.15540414,-0.03707611,0.08422259,0.48021677,0.02395727,-0.0538022,-0.14289968,0.013225747,-0.5567288,0.22256999,0.3778627,0.016286539,0.44043222,-0.111882314,-0.5145029,-0.53219974,-0.1593708,-0.54415715,-0.18065558,-0.077527866,-0.0085976375,0.09506837,0.14441428,-0.122633286,0.4542851,-0.3529603,0.13284582,-0.26775503,-0.35425743,0.39306542,0.54334325,0.37179017,-0.44043484,0.6515334,0.22459282,0.109910525,-0.31179714,-0.032201786,0.6104501,0.11408063,0.4158823,-0.10025328,-0.065011896,0.18506457,0.7725387,0.19635202,0.28435078,-0.044711005,-0.20447788,0.116068974,0.041511122,0.25133258,-0.031881202,-0.30585843,0.02911478,-0.19595805,0.16110232,0.44189516,0.12923765,0.4587255,0.010842987,-0.09017156,0.30409288,0.06521855,-0.2755387,-1.162585,0.40746897,0.35893813,0.7409047,0.41232714,0.10860717,-0.20896606,0.5720301,-0.46704176,0.012483886,0.4416823,0.011872845,-0.15749474,0.68478525,-0.583197,0.42625156,-0.19712183,0.026887903,0.121126965,0.046533566,0.32602316,0.97590363,-0.17958759,0.065851614,-0.07444812,-0.34033728,0.054079887,-0.25048584,0.05577739,-0.33164102,-0.3471995,0.5876556,0.23492731,0.44314495,-0.28813052,0.029941244,0.13420412,-0.15548314,0.124489866,-0.17375931,0.06780345,-0.32242176,-0.32615307,-0.35420838,0.5513404,-0.015738716,0.04898843,0.22179472,-0.36190346,0.2874458,0.23377965,0.021620853,-0.045190185,-0.39723587,0.090554394,-0.30765796,-0.64666194,0.27124324,-0.40676203,0.32498452,0.19875202,-0.025667382,-0.11746641,0.22515683,0.11775751,0.5971586,0.14992464,-0.19873057,-0.12860343,0.008744555,0.26547456,-0.36668348,-0.11615,-0.32591304,0.3559932,-0.6042399,0.49664813,-0.28537074,-0.39105907,-0.080431044,-0.17279372,0.10322632,0.10902514,-0.06683929,-0.019408235,0.17643121,0.04366342,-0.19083007,-0.04742843,-0.46804097,0.2455688,-0.08597757,-0.07884293,-0.06521274,-0.06619298,-0.10740372,0.20340252,-0.14796226,0.2365657,0.22490358,-0.205663,-0.43634653,0.14061208,0.04785094,0.3756458,0.033205908,0.043982036,-0.18534425,-0.32192865,-0.3926918,0.6074306,-0.092733495,0.18713653,0.11413924,-0.31214315,0.8687421,0.08761911,1.0867333,0.07637893,-0.5314645,0.081353255,0.44864967,0.14846937,0.22267781,-0.15972732,1.0679835,0.57309043,-0.1444223,-0.1070344,-0.55066615,-0.16514573,0.3377312,-0.23126648,-0.30803356,-0.030310784,-0.7079322,-0.099484526,0.122498564,0.07049716,0.15474088,-0.04756558,0.013584887,0.107293926,0.24564895,0.41239908,-0.634519,-0.06817608,0.3417463,0.067741424,-0.015526648,0.2022612,-0.37832707,0.37860298,-0.8767203,0.2182715,-0.48234674,0.1004997,-0.1606041,-0.29751724,0.3316786,0.06468,0.29471526,-0.16418724,-0.39987642,-0.2529529,0.5375813,0.15063174,0.17402098,0.77797765,-0.267153,-0.11227101,0.18973242,0.5281814,1.2448262,-0.03664208,0.16575466,0.22605214,-0.2649483,-0.5917204,0.15481567,-0.40830544,0.08826125,0.017128306,-0.4464728,-0.23052227,0.29034156,0.16900972,0.014593961,0.29343876,-0.2977968,-0.19383252,0.12678766,-0.48694962,-0.17599568,-0.3173149,0.0736304,0.577781,-0.36744413,-0.27837604,0.03735637,0.43223816,-0.31218907,-0.817738,0.1324128,-0.084366545,0.5145919,0.1605952,-0.49013063,-0.0131798815,0.2478251,-0.41819695,0.25145048,0.61406845,-0.28487536,0.04365825,-0.47313148,0.019329028,0.95596445,0.062489484,0.15503936,-0.7340069,-0.54326564,-0.8272987,-0.3116376,-0.120918,0.10722752,-0.0777271,-0.492127,-0.2637169,-0.20565765,0.016930249,0.20181002,-0.4822676,0.3673625,0.14322074,0.43020657,-0.041246396,-1.1618799,0.023769477,0.10407734,-0.012198175,-0.4954808,0.4675854,-0.19904883,0.6610712,0.24097838,-0.0047933375,0.09194744,-0.61590844,0.33626747,-0.24680017,0.009079993,-0.66969484,0.061005395 +250,0.47679836,0.10323671,-0.48943245,-0.12899408,-0.18518104,0.15684171,-0.21296264,0.5780267,0.19448045,-0.34815374,-0.012704613,0.1287192,-0.16542855,0.3369129,-0.20785287,-0.6265829,0.14117657,0.043556675,-0.42726773,0.72734183,-0.22844383,0.41622332,-0.13410343,0.35820848,0.01621577,0.308958,0.040437117,-0.0021081844,-0.16644688,-0.28462678,-0.058643855,0.40555865,-0.2998628,0.22840519,-0.3362777,-0.17539972,0.11210262,-0.23537603,-0.28358582,-0.6158897,0.22310552,-0.49041733,0.6019228,-0.09600555,-0.3304505,0.27524063,0.17056091,0.11904276,-0.109833315,-0.062538944,0.108317055,-0.16699222,-0.022496048,-0.28800938,-0.29634413,-0.6484408,-0.413943,0.059511784,-0.6115417,-0.10371034,-0.21139301,0.10769408,-0.3211132,-0.23756285,-0.06150837,0.58963203,-0.24587895,-0.009709605,0.09863846,-0.16784182,0.0371425,-0.65238434,-0.0669843,-0.09826791,0.2948355,-0.04158721,-0.06331354,0.31683254,0.21060649,0.47521606,-0.02947456,-0.24611704,-0.20037574,-0.22055952,-0.011745214,0.5297162,-0.24825104,-0.6098277,-0.16099742,0.059206836,0.366692,0.13963443,0.059568282,0.05061972,-0.038438782,-0.18567643,-0.18471093,0.48489323,0.5710935,-0.3022933,-0.27957404,0.3746681,0.42772585,0.3054131,-0.18377352,0.015676912,-0.17580003,-0.37780342,-0.24888317,-0.029902799,-0.15590738,0.3604224,-0.03611113,0.07068186,0.48948702,-0.03187697,0.01873455,0.1832677,0.15856785,0.24889097,-0.10809649,-0.27405387,0.11172389,-0.44345635,0.03189981,-0.25638872,0.6005032,0.1283543,-0.6077698,0.38801834,-0.4996226,0.016794449,0.05983105,0.42509848,0.76701033,0.5265917,-0.013579551,0.4421161,-0.29415673,0.0076065143,-0.11525919,-0.04496534,0.07883798,-0.1690376,-0.049790733,-0.45315424,0.10365799,0.07131323,0.018524365,0.010524813,0.2247055,-0.4720042,-0.21287575,0.27219832,0.9587011,-0.24257499,-0.087040745,0.6729928,1.0989513,0.8642101,-0.19731967,1.032594,-0.04160932,-0.23968671,-0.049123876,-0.27581358,-0.46328735,0.24275479,0.35671476,-0.1272846,0.45054597,-0.033940602,-0.03517895,0.24515657,-0.34844264,-0.19359079,-0.11093751,0.2654215,-0.038977616,-0.09163438,-0.64378315,-0.23096745,0.06504668,-0.092422724,0.390962,0.37832,-0.27685803,0.3664074,0.015696583,1.0833637,-0.03415807,0.16745837,0.12768912,0.45331416,0.2999677,0.07495507,0.031788494,0.30074447,0.2170073,0.16696505,-0.43200016,0.15775786,-0.42813867,-0.42512113,-0.19119018,-0.4000058,-0.09564459,0.06685986,-0.3178577,-0.05233831,-0.11631031,-0.2210465,0.29929563,-2.834272,-0.17632535,-0.13943468,0.30950755,-0.19164456,-0.24698572,-0.20156789,-0.34752738,0.35304958,0.25058705,0.51873475,-0.44723848,0.37787372,0.418742,-0.3870144,-0.114131615,-0.45840135,-0.16333331,-0.029218996,0.52807117,-0.025064796,0.012260421,0.008383397,0.30653408,0.5354039,0.10548345,0.13909218,0.17503026,0.357063,-0.0019317548,0.22228403,-0.070904285,0.5698277,-0.36407146,-0.1279746,0.22423881,-0.38513422,0.30991665,-0.21647169,0.11863315,0.39943498,-0.43556988,-0.78623265,-0.38141307,-0.12102105,1.2542989,-0.096341714,-0.34617534,0.11881173,-0.2918708,-0.414628,-0.0529506,0.40009594,-0.26644152,0.012535493,-0.58828104,0.010797119,-0.18796706,0.14941362,-0.07687471,0.04175232,-0.4978199,0.5135136,0.021018393,0.49821606,0.14832275,0.32347733,-0.27918664,-0.45168215,-0.09329255,1.0134287,0.54227865,0.005569467,0.045442414,-0.072467044,-0.4398709,-0.008061076,0.1155378,0.7688197,0.5812157,0.045296736,-0.017219376,0.1587119,-0.073587306,0.22215852,-0.0035640956,-0.39873683,-0.15697311,0.1497247,0.75213915,0.45021516,-0.26416728,0.37236717,0.065008484,0.3113722,-0.31086054,-0.36605012,0.41527098,0.7533279,-0.34235966,-0.24497885,0.8517862,0.5672886,-0.2714394,0.47178555,-0.5859689,-0.4223716,0.38705456,-0.23558007,-0.38206452,0.26186916,-0.25696567,0.111514874,-0.88176626,0.32365665,-0.39449462,-0.59297526,-0.58448166,-0.045620788,-2.525825,0.09665207,-0.1894266,-0.15145905,-0.30262348,-0.05074807,0.22060782,-0.6106826,-0.5583309,0.1549204,0.046261773,0.6604787,-0.12759143,0.13225041,-0.13339774,-0.5678099,-0.06397061,0.2627169,0.14065978,0.27481276,-0.0634703,-0.30335626,-0.04960868,0.0054352423,-0.3060713,0.18594737,-0.63721716,-0.3746626,-0.088844076,-0.47984594,0.008447377,0.73389184,-0.40316698,0.07687047,-0.33732903,0.1496595,0.027038552,0.010479387,0.0691971,0.26472318,0.16627645,-0.14275548,0.1751129,-0.38369653,0.39077446,0.13823134,0.41811296,0.24638405,-0.020893244,0.07336688,0.58457816,0.5266645,0.002682543,0.8217944,0.41668898,0.025304647,0.46093553,-0.35235196,-0.41421917,-0.4406432,-0.37027597,0.20249395,-0.29250896,-0.38507032,-0.19326153,-0.35617706,-0.85409147,0.5156886,-0.037407048,0.19172427,-0.3130027,0.381987,0.49549034,-0.17483005,-0.00918719,0.07107481,-0.2039405,-0.31858382,-0.21329302,-0.58113635,-0.3511743,-0.046257775,0.92117405,-0.23477322,0.17427951,0.10586234,-0.122375995,0.046618592,-0.017488206,0.19105162,0.08152383,0.34111068,-0.16881797,-0.6351804,0.4522947,-0.26720074,-0.16474588,-0.40337044,0.12963274,0.6739304,-0.6768544,0.40455613,0.4845515,-0.035826843,-0.46654797,-0.5982458,0.11663513,0.16547519,-0.09253015,0.3451524,0.19781122,-0.68666273,0.44193396,0.06854828,-0.32246467,-0.5539131,0.5869774,-0.07506575,-0.17465827,-0.049047675,0.41223633,0.16567153,-0.04744563,-0.09682218,0.22431011,-0.3169761,0.30162674,0.10581244,-0.04145768,0.32085997,-0.27923483,-0.040152393,-0.80576766,-0.110776804,-0.61075264,-0.31352666,0.3797062,0.067060195,0.06962381,0.061980892,-0.040174205,0.40898487,-0.5781742,0.27169782,-0.053035013,-0.38514364,0.5791353,0.3792555,0.6103321,-0.40172336,0.44683513,0.08648279,-0.14543985,0.097552575,0.112637535,0.5932267,-0.09198145,0.4148656,0.0010291178,-0.034163468,0.42731497,0.6030632,0.22212501,0.22428423,0.11980171,-0.11048685,0.1528439,-0.13557695,-0.00024303993,-0.01011979,-0.51886773,-0.31528,-0.02895565,0.094801195,0.45632058,0.022156062,0.32507217,-0.14128153,-0.28585583,0.070003465,0.08321252,0.10558109,-1.2353128,0.43424094,0.10943374,0.73678905,0.2017656,0.26054555,-0.04262627,0.57864743,-0.10654369,0.08719257,0.3603105,0.079088144,-0.35281822,0.48109695,-0.44631964,0.5085581,-0.053976603,-0.010353736,0.0064982893,-0.21382223,0.51312536,0.94916743,-0.12065349,0.07380919,-0.017448012,-0.35607657,0.077294864,-0.34140396,0.15867952,-0.438024,-0.2424744,0.4824739,0.42927864,0.32625037,-0.24664982,0.09573049,0.16503593,-0.06795283,0.17135127,-0.05126204,0.06950137,-0.21700725,-0.52090657,-0.21330051,0.45933193,0.064499795,0.11073726,0.022834023,-0.082467,0.38181642,-0.029217899,0.13225484,0.025378598,-0.47442302,0.061462745,-0.29629657,-0.38598424,0.4725359,-0.37636873,0.16806497,0.11262543,0.10717675,-0.36145872,0.28983432,0.1967584,0.44860622,-0.05659523,-0.2114175,-0.36301896,0.03621398,0.07315334,-0.3356333,-0.11394564,-0.31474915,0.27361843,-0.6355113,0.22320251,-0.13620186,-0.21308857,-0.18822473,-0.09458964,0.085464954,0.33227012,0.08241401,-0.07618641,0.0024735709,-0.15236174,-0.35158756,-0.2697598,-0.1103082,0.18295802,0.24427809,-0.047530454,-0.2713742,-0.18393181,-0.24757619,0.22955988,0.15481587,0.34833518,0.5422986,0.21702738,-0.12441412,-0.03998224,0.20886907,0.31808242,0.0140265785,-0.061252758,-0.34694073,-0.40120232,-0.2294188,0.3598314,-0.20067474,0.13621302,0.14322314,-0.1742866,0.68186986,-0.08110415,1.112326,0.048517488,-0.2726498,0.08709065,0.5053843,-0.05254441,0.035245404,-0.30610567,1.1541446,0.45873487,-0.060888037,-0.072917305,-0.34239656,0.06714129,0.050477777,-0.25407228,-0.26650426,-0.0758736,-0.49097267,-0.29569718,0.22856286,0.21785812,0.123236604,-0.12847129,-0.0688454,0.24074984,0.18393926,0.31132093,-0.50640386,-0.11812928,0.4798289,0.15083669,-0.010110521,0.23271841,-0.35981706,0.25991267,-0.6421318,0.05535392,-0.3295664,0.1276386,-0.21082108,-0.37175986,0.22933702,-0.17534946,0.37825212,-0.4575483,-0.3462891,-0.13243577,0.19975385,0.11505689,0.017198507,0.3675104,-0.23927797,-0.02402418,0.033086166,0.6176207,0.91779274,-0.099197835,-0.047123082,0.19416027,-0.3324395,-0.76643777,-0.07768098,-0.48507875,0.17974468,-0.23277998,-0.3782812,-0.46551913,0.37935147,0.1902086,0.047256526,-0.09127739,-0.4450579,-0.13224734,0.12827343,-0.26367226,-0.28631312,-0.10916353,0.08313993,0.58425635,-0.3112852,-0.3760581,-0.17275698,0.3175579,-0.28089577,-0.8120676,-0.023433903,-0.35091537,0.23308049,0.21931921,-0.39939874,-0.1072423,-0.10418404,-0.4013329,0.3316795,0.3461218,-0.31635866,-0.062388007,-0.3028083,0.0075489837,0.6618949,-0.05440666,0.09883855,-0.34329975,-0.44456893,-0.7747372,-0.42214966,0.17349362,0.1864171,-0.0011495233,-0.7062984,0.0016595046,-0.28169903,-0.06632716,-0.0134361265,-0.24036561,0.21160874,0.10189685,0.38797086,-0.25133514,-0.8926887,0.19149442,0.12522109,-0.2067865,-0.5977627,0.40905783,-0.07775011,0.8605484,0.06304104,0.07362123,0.21933511,-0.5443906,-0.07954507,-0.22035322,-0.028161226,-0.6254722,0.27432242 +251,0.5377277,-0.22152969,-0.56640804,-0.18224421,-0.16568391,0.08124601,-0.22936177,0.6146669,0.13209058,-0.5759605,-0.06600191,0.006462455,0.11496328,0.458501,-0.1047144,-0.5745807,0.034177568,0.11836719,-0.507023,0.69854397,-0.43400052,0.1299069,-0.1527503,0.6378273,0.30992702,0.3202204,0.054993007,0.110306814,-0.080904566,-0.1875345,-0.09012952,0.4199553,-0.5503047,0.08295584,-0.025906196,-0.49530667,-0.2557679,-0.3737571,-0.24748072,-0.67854184,0.23204923,-1.0794741,0.6407356,-0.03980309,-0.39302307,0.23216711,0.2724272,0.2650621,-0.20330384,-0.08516828,0.07781916,0.015823718,0.0861109,-0.30068353,-0.10939431,-0.54927224,-0.62051636,-0.053410523,-0.3983286,-0.066547416,-0.12182082,0.16306546,-0.2875536,0.054576296,-0.27011484,0.32023492,-0.5071395,0.069352195,0.1823593,-0.10407265,0.33766943,-0.49455643,-0.29337475,-0.11998994,0.124676704,-0.11331188,-0.32279125,0.20447445,0.2782592,0.49142092,-0.12113308,0.021705035,-0.34010935,-0.041960735,0.060721222,0.4825326,-0.24787302,-0.5410771,-0.31205988,1.552701e-05,0.23423035,0.1531996,0.2488478,-0.25737813,-0.04348502,-0.021289766,-0.22217822,0.27948493,0.4194893,-0.31285468,-0.45388037,0.27345482,0.41353717,0.17684095,-0.36210546,0.108910665,0.04222422,-0.536823,-0.07707466,0.0862175,-0.021495346,0.50262356,-0.12750271,0.12990664,0.56036866,-0.13408966,0.095325865,0.13228954,0.02391472,-0.17854545,-0.32469216,-0.30785874,0.19794618,-0.3496084,0.1584016,-0.34913057,0.6633073,-0.009254022,-0.7406806,0.32073012,-0.6041139,-0.03751074,-0.2065736,0.39701357,0.68995064,0.40454057,0.036942217,0.5447559,-0.24679063,0.018149793,-0.09818309,-0.24329282,0.15377016,-0.1604391,0.0021240967,-0.68128145,0.18280879,0.18196954,-0.08016864,0.08101102,0.63263786,-0.5907955,-0.2157743,0.19933309,0.82493263,-0.3483215,-0.067194395,0.85554284,1.0709534,0.9221508,0.12981145,1.1794695,0.25302535,-0.15394373,0.20308678,-0.20300902,-0.6539445,0.19368076,0.23301278,-0.14733516,0.35434097,-0.00547577,-0.15198143,0.46547514,-0.13857667,0.055222306,-0.15909772,0.2376603,0.039244287,-0.15591559,-0.38030177,-0.23305576,-0.027271403,-0.12068302,0.303658,0.19437326,-0.37711948,0.47318262,0.08161998,1.7136301,-0.16133176,0.09062847,0.025395988,0.4743721,0.22188602,-0.21512198,0.05644534,0.27998465,0.4305706,0.05471546,-0.5133978,0.25760967,-0.123537466,-0.5693987,-0.16337255,-0.40789914,-0.15671071,-0.08531477,-0.60412747,-0.14462925,-0.07379962,-0.09513688,0.3148376,-2.6939948,-0.19425043,-0.041243605,0.3169687,-0.24271218,-0.40820733,-0.25015786,-0.32044485,0.39301512,0.30407032,0.3891329,-0.6314613,0.52940357,0.26206288,-0.35634544,-0.047930546,-0.62664443,-0.22069776,-0.0129643995,0.40013498,-0.14688894,-0.0027160475,0.25879952,0.276864,0.44994143,-0.08641655,0.08661977,0.19657023,0.35381582,0.07569247,0.36523363,0.00013666494,0.6455621,-0.17677037,-0.20686433,0.28489724,-0.3504653,0.2816184,0.065308444,0.21570003,0.40831184,-0.40529826,-0.9367854,-0.78821987,0.0011792183,1.0769302,-0.27050528,-0.32922664,0.14274094,-0.36509234,-0.39232472,0.0124651,0.4620871,-0.15333274,-0.02634791,-0.9260668,0.009073443,-0.15195796,0.15396354,-0.103232734,0.050549824,-0.44412062,0.5913619,0.027171893,0.65100086,0.32144752,0.18632591,-0.36096543,-0.5326804,0.08100021,0.8202356,0.3125665,0.17242913,-0.10395842,-0.20994452,-0.44463608,0.023140877,0.22795062,0.63171047,0.5631894,0.111676864,0.20554085,0.2324663,-0.17812647,0.102812365,-0.16394551,-0.26811704,-0.12360133,0.14009713,0.47567916,0.48266813,-0.30417952,0.46988896,-0.21982037,0.505836,-0.2555351,-0.534061,0.41775793,1.0667953,-0.27306697,-0.48258966,0.69342613,0.5904204,-0.33725604,0.40381008,-0.654791,-0.27241442,0.23550877,-0.22994693,-0.19786583,0.29056674,-0.31842437,0.30539054,-1.1755145,0.1997439,-0.41759846,-0.39336014,-0.6084401,-0.14455946,-3.506905,0.28244707,-0.10491657,-0.3084707,-0.20877469,-0.322314,0.4392031,-0.70473224,-0.59215134,0.106517516,0.016880253,0.73633397,-0.07154519,0.0894257,-0.3326369,-0.25539896,-0.15470822,0.28487992,0.06563632,0.34286624,-0.0830239,-0.3936768,-0.08427395,-0.0046705604,-0.35313505,0.09752606,-0.6973787,-0.590586,-0.00626593,-0.48588738,-0.2171094,0.53138757,-0.27012587,-0.049361516,-0.19023679,-0.028465157,-0.1682874,0.36853656,0.07670183,0.17538905,0.1623659,-0.011034404,0.070881076,-0.3708237,0.13185713,0.042613465,0.14569993,0.4472642,-0.17720325,0.31711927,0.4955103,0.5553314,0.05222146,0.74776894,0.58478725,-0.0045526274,0.34553462,-0.4016445,-0.23742354,-0.5542703,-0.28752047,-0.16613708,-0.4046051,-0.42660925,-0.1778464,-0.28860497,-0.7556674,0.57131255,-0.0013803287,0.18562962,-0.080946214,0.34523836,0.52827084,-0.099333405,0.0054487246,-0.17090014,-0.16108263,-0.52218455,-0.41773567,-0.5437872,-0.44771358,-0.0104182875,1.0114604,-0.16894317,0.06771415,0.046314925,-0.2516589,-0.022868615,0.26143956,0.06476001,0.14054155,0.47057906,-0.16760233,-0.6432748,0.38716584,-0.20078178,-0.21375777,-0.5629401,0.28554174,0.43473843,-0.71814376,0.5592559,0.29634425,0.1453146,-0.35362735,-0.5213737,-0.15520681,0.063725196,-0.17395008,0.49262398,0.33989206,-0.7755197,0.40732902,0.37975153,-0.10703744,-0.6097175,0.5478011,-0.034267925,-0.3619078,-0.24077633,0.31264094,0.027146365,0.09330981,-0.18487044,0.13046561,-0.49713737,0.212518,0.09233616,-0.046979517,0.2338588,-0.21127857,0.0098739015,-0.7070759,0.10110397,-0.60026973,-0.38372403,0.3158292,0.034582637,0.31468007,0.24062033,-0.11666263,0.3323667,-0.372817,0.08930288,-0.12851486,-0.22060819,0.25725448,0.46131536,0.3615044,-0.36377293,0.5768983,0.05839596,-0.10887177,0.17754875,0.08432998,0.5763523,0.1333162,0.46491292,-0.052267067,-0.23454356,0.22016168,0.69702333,0.16598344,0.4315659,0.012424673,-0.12169152,0.17895119,0.03543375,0.1361965,0.031260762,-0.4156004,-0.22027636,-0.18151376,0.26050165,0.61761093,0.1322665,0.3186304,-0.10710088,-0.26306948,0.09462143,0.12585194,0.07527868,-1.4283649,0.39737484,0.28487003,0.66955984,0.4916187,-0.074405916,0.0137801105,0.4143267,-0.30488732,0.20053114,0.43067613,-0.008822654,-0.59631836,0.5794987,-0.7610894,0.34996453,-0.084525764,0.048478764,-0.03439676,-0.068198256,0.43268892,0.81539756,-0.08408521,0.21687706,0.23083435,-0.4388211,0.12329579,-0.32035837,-0.048995223,-0.5969599,-0.14882796,0.6814037,0.5205969,0.4733817,-0.26380387,-0.003581096,0.18063672,-0.0139927,-0.046865635,0.11689382,0.3258417,-0.04409104,-0.6050414,-0.2617415,0.54960805,-0.13763176,0.19358197,0.16395055,-0.49362665,0.29241663,-0.011668682,-0.06638905,-0.018208865,-0.6367718,0.035028078,-0.37882456,-0.45865828,0.55629694,-0.28398842,0.08111096,0.25514925,0.11642535,-0.12603222,0.14843397,0.0468618,0.8773791,-0.05854452,-0.12240179,-0.4485531,0.23043816,0.2996092,-0.15268907,-0.25150833,-0.3754444,0.13174966,-0.46924666,0.35391167,0.03961134,-0.36706665,-0.0075689596,0.07639067,0.20417312,0.4023168,-0.14700899,-0.18347014,-0.041307103,-0.023832848,-0.4611331,-0.20919129,-0.06294419,0.30741474,0.25291693,-0.0012499435,-0.1303502,0.00221073,-0.010660201,0.42994067,0.08284879,0.55963147,0.646903,0.14859426,-0.20961405,-0.07835836,0.46293524,0.36722025,-0.14075562,-0.04481938,-0.3705171,-0.4892592,-0.3478343,0.29332948,-0.1879119,0.39101,0.08440859,-0.2607489,0.8677718,0.017521653,1.0471613,0.06743372,-0.38567677,0.19316646,0.4313766,0.047743924,-0.07531655,-0.4031086,1.0187114,0.57498986,-0.04736158,-0.11039137,-0.33839232,-0.14322717,0.2792569,-0.30137,-0.16354856,-0.0913442,-0.67793906,-0.2783251,0.08093678,0.25883958,0.28533456,-0.04572962,0.21328616,0.19147158,0.002893911,0.20226763,-0.48122764,-0.06301598,0.22705154,0.35703963,-0.038699966,0.27264303,-0.54300225,0.27638385,-0.51994526,0.045351725,-0.3495021,0.124417976,-0.012859089,-0.3198321,0.13597028,0.00020017794,0.19643858,-0.36571082,-0.23522918,-0.21463099,0.5366188,0.100169815,0.1081185,0.68894523,-0.23265389,0.19488382,0.18776672,0.47361395,1.1296873,-0.11617989,-0.0076501453,0.24868019,-0.34861636,-0.8511774,0.2844211,-0.18091328,0.5017188,0.028851127,-0.21081711,-0.57993084,0.4233532,0.17290023,-0.0054434366,-0.109094724,-0.37227324,-0.21216334,0.35466033,-0.20334533,-0.19873415,-0.3301463,0.0069562537,0.50564253,-0.20104423,-0.2638728,0.04311028,0.24518487,-0.15982226,-0.57070976,-0.03414889,-0.38311362,0.3084907,0.15299357,-0.29557487,-0.110188074,0.005277265,-0.4119406,0.33038765,0.3667182,-0.23690604,0.118272744,-0.5149786,-0.01984489,0.98871607,-0.20456629,-0.015055529,-0.7227245,-0.5224811,-0.7176412,-0.4922033,0.2911172,0.09160381,0.022212151,-0.73547965,0.14783835,-0.045631774,-0.299755,-0.060946617,-0.31952143,0.5124084,0.045498706,0.353318,0.041461248,-0.6294257,0.26133844,0.05243544,-0.026110124,-0.5919465,0.5510544,-0.1322203,0.96193516,0.09439421,0.1605898,0.312465,-0.5813092,-0.12579001,-0.27005473,-0.06028073,-0.8481798,-0.007455451 +252,0.40791732,-0.2724486,-0.48890635,-0.1224891,-0.23300055,0.15884201,-0.14443114,0.57806647,0.36819723,-0.36602217,-0.035221394,-0.14074388,0.042104796,0.2673791,-0.16225335,-0.4745639,-6.187879e-05,0.21052083,-0.4452561,0.55112517,-0.23554823,0.23668358,-0.08472545,0.4366291,0.24779317,0.40814403,-0.034716986,-0.024775198,-0.10645978,-0.20748895,-0.08006362,0.124993294,-0.4289476,0.17404667,-0.1406017,-0.06576629,-0.023352278,-0.55798525,-0.41151804,-0.7971465,0.4008795,-0.8736471,0.5129269,-0.023004564,-0.35258424,0.3231112,0.23656988,0.3356353,-0.22478205,-0.04925429,0.28691667,-0.15483944,-0.0729198,-0.1428199,-0.17919014,-0.20362407,-0.5379034,-0.10017046,-0.3265683,-0.28311288,-0.28437436,0.27461582,-0.3433581,-0.0410925,-0.131404,0.8375593,-0.41028774,0.1359839,0.19136442,-0.4524578,0.4094968,-0.6736836,-0.0131700635,0.006163455,0.34515303,-0.006450039,-0.057797037,0.1442793,0.19757271,0.30056757,0.009551415,-0.22311704,-0.38056767,-0.166213,0.11371672,0.58251464,0.050542496,-0.30033362,-0.050056197,-0.1572428,0.09962444,0.06296244,0.26540965,-0.40347078,-0.18705034,-0.039642446,-0.2785788,0.46313283,0.37416986,-0.2916905,-0.056979068,0.44770506,0.71630067,0.10397957,-0.20987129,0.15083733,0.023949184,-0.54064447,-0.054168403,-0.024315394,-0.23369224,0.51465535,-0.22429116,0.20575632,0.71355945,-0.108049236,-0.13438447,0.0659705,0.15164004,0.051137522,-0.4312979,-0.12866817,0.25796932,-0.3508042,0.16908778,-0.2062032,0.6815593,0.18766266,-0.49546644,0.32490733,-0.5163185,0.11991754,0.026857715,0.4016433,0.43942404,0.4941627,0.30708745,0.81999695,-0.49849877,0.07226034,-0.05852004,-0.35570362,0.06408713,-0.107089505,0.124974556,-0.4145655,-0.0033035278,-0.07185609,-0.22620443,-0.07163144,0.40901592,-0.47123364,-0.10106402,0.23397954,0.9840278,-0.25005677,-0.064613946,0.7849797,0.9506661,1.0161434,-0.08378822,1.159484,0.06291365,-0.23067474,0.008248852,-0.3091501,-0.7053065,0.31015623,0.41985697,0.4615038,0.12447734,0.088187166,-0.033585005,0.5158731,-0.33429962,0.090380155,-0.16793476,0.2133207,0.20290725,-0.16451383,-0.54652494,-0.21141608,-0.025768647,0.17692828,0.25813803,0.08000858,-0.3063531,0.34716946,-0.07743817,1.8518565,-0.24096023,0.18926637,0.24023129,0.4637515,0.23878469,-0.17256619,-0.15744273,0.5328268,0.2703327,0.21891573,-0.61523765,0.25659335,-0.21898219,-0.48625565,-0.24591559,-0.34594995,-0.028779875,-0.105026245,-0.40442637,-0.16688734,-0.16802146,-0.47099134,0.3219753,-2.6543088,-0.25734064,-0.16878554,0.4408259,-0.2648146,-0.25165555,-0.04255536,-0.47003588,0.29178175,0.36040667,0.5458347,-0.7152461,0.36833686,0.5855704,-0.5911249,-0.1637605,-0.5327335,-0.14199834,-0.095517926,0.4404235,0.11804792,0.009365071,-0.09277881,0.22052486,0.5070629,0.08523266,0.12731187,0.45855284,0.42468813,-0.09605917,0.5069361,-0.06622282,0.48723844,-0.036040656,-0.21286538,0.33834898,-0.4120881,0.07883231,-0.19554019,0.034899004,0.40326735,-0.3141584,-0.9221223,-0.72784,-0.025719358,1.1865277,-0.25945613,-0.53268564,0.4121998,-0.38475868,-0.39970714,0.08595888,0.59115434,-0.08184973,-0.01707237,-0.80172217,0.025057912,-0.17062838,0.17210586,0.056589916,-0.22141396,-0.5253981,0.8352463,-0.087654956,0.6841266,0.3461482,0.20313817,-0.39335915,-0.37617543,0.032828625,0.86435235,0.3536835,0.10483355,-0.1765721,-0.011489228,-0.2941407,-0.13930921,-0.055504978,0.6978477,0.5169668,-0.07765797,0.10782961,0.24628662,-0.10386863,0.03546724,-0.12711956,-0.4026502,-0.14511663,-0.01723726,0.45818093,0.65293705,-0.11589448,0.28814808,-0.14642087,0.38826534,-0.057149928,-0.5348249,0.40882438,0.91383845,-0.314963,-0.3830276,0.643664,0.34594277,-0.3956362,0.41272524,-0.5770333,-0.1913638,0.44936448,-0.28046182,-0.59838647,0.15690583,-0.23937607,0.053145345,-0.7603117,0.18009456,-0.26351386,-0.62803924,-0.21712539,-0.19526552,-3.1924853,0.22002986,-0.22049761,-0.26825625,-0.2147169,-0.11756113,0.087707356,-0.57307726,-0.5985256,0.13876957,0.15398803,0.70336825,-0.14607134,0.1610464,-0.2767083,-0.18436447,-0.19025029,0.21876019,-0.097324625,0.38219386,0.039500043,-0.46744746,-0.07802537,0.009476891,-0.5356789,0.059704043,-0.6327037,-0.37535015,-0.21355408,-0.53341603,-0.27036068,0.7185039,-0.269423,0.09989238,-0.2903105,0.099232286,-0.13935135,0.22007836,-0.08216346,0.27762944,0.068990864,-0.035368994,0.09757249,-0.14255191,0.24583618,0.046926178,0.29340807,0.18995503,-0.08190085,0.11908608,0.58363956,0.60816556,-0.19686416,0.9820101,0.38569185,-0.06695306,0.19565056,-0.13289341,-0.19531132,-0.4669992,-0.257884,0.2681328,-0.4756147,-0.3339973,-0.06977495,-0.37838665,-0.73371124,0.5394936,0.12594233,0.17542244,0.122841746,0.22654754,0.5209927,-0.27530944,-0.050856315,0.053193074,-0.17613246,-0.6370251,-0.115674846,-0.63033897,-0.42593816,0.08938515,0.8959952,-0.32039437,0.12400195,0.097005,-0.34685305,0.015469388,0.18742225,-0.10241677,0.07034662,0.5887652,-0.1374169,-0.63722223,0.35340574,-0.26436168,-0.05609653,-0.45966294,0.32737747,0.53051585,-0.47638887,0.68007255,0.1926589,0.016834598,-0.43603718,-0.51739347,-0.16107577,-0.092552915,-0.24717453,0.46504927,0.24472883,-0.7598231,0.30307764,0.18242033,-0.3260624,-0.757526,0.36873677,-0.2525342,-0.35883725,-0.16805246,0.47554186,0.057085138,-0.1323732,-0.24629416,0.23358926,-0.33804783,0.23817681,0.24413553,-0.110342346,0.31943983,-0.23932208,-0.18728368,-0.7536632,-0.17945202,-0.415349,-0.30754077,0.2290127,0.006286057,-0.0243301,0.1957319,0.122005895,0.42155075,-0.2663119,0.0684261,-0.16082639,-0.27965814,0.43723175,0.41117042,0.57745355,-0.5486159,0.49228844,-0.020832213,-0.048592154,-0.077055655,0.0022192735,0.50529647,0.047547605,0.5365335,-0.055408996,-0.13369742,0.35401157,0.6272401,0.1757336,0.5947225,0.08579977,-0.24322928,0.17166844,0.08416697,0.25198293,-0.17882918,-0.7686829,0.273788,-0.34716287,0.07718706,0.5869146,0.17645007,0.3782164,-0.023053847,-0.5021452,0.043291803,0.060102575,-0.08463346,-1.2043191,0.2886195,0.1743962,0.98022693,0.43606883,0.040091358,0.10995226,0.83199203,0.119220406,0.025757454,0.22640084,0.05784993,-0.5721992,0.4761532,-0.8545617,0.41849402,0.15816562,-0.06397083,0.17148796,0.07989689,0.32386371,0.6609338,-0.1474029,-0.0057032597,-0.12077025,-0.27348724,0.2571618,-0.422389,0.0593757,-0.5732356,-0.3240738,0.423172,0.6154282,0.43168575,-0.17924294,0.047504727,0.05583378,-0.039325636,0.25544035,0.08096014,-0.09424209,-0.03980914,-0.76595676,-0.22755347,0.4302349,0.10586676,0.0991069,-0.1596947,-0.13173887,0.28978232,-0.26686242,-0.12845933,-0.046401277,-0.73599786,-0.07424196,-0.122332975,-0.53577936,0.3149645,-0.0821368,0.22461599,0.11239565,-0.059895746,-0.22210786,0.39472434,0.12693207,0.9449746,0.13289602,-0.05693819,-0.33696702,0.10501825,0.081881635,-0.2966521,0.123266764,-0.34636414,0.105156034,-0.7159418,0.42456242,-0.03115869,-0.3963428,0.22789973,-0.26144496,0.06671885,0.6755361,-0.23436211,-0.14799121,-0.11314727,-0.15459083,-0.16633382,-0.26575363,-0.13929883,0.19235174,0.100863494,-0.15122756,-0.15822458,-0.06217873,-0.030273493,0.4373403,-0.064081,0.48115233,0.43142354,0.014361333,-0.31336644,-0.057144605,0.258046,0.5104409,0.08492743,-0.15067483,-0.22612119,-0.5997975,-0.39389148,0.31206724,-0.01959734,0.41486883,0.051571928,-0.016676683,0.9724095,0.12866347,1.1991142,0.036507897,-0.41557154,0.14634034,0.63472486,0.076111145,0.061754588,-0.3611709,0.8401383,0.4601956,-0.15980849,0.029507527,-0.5586522,0.012295196,0.20451659,-0.18795076,0.041478302,-0.14389372,-0.7661826,-0.25653827,0.18956056,0.24241185,0.3290469,-0.1760342,0.1291123,0.29609945,-0.06403539,0.3296628,-0.540124,-0.080866046,0.38409218,0.15728715,-0.004629016,0.04856973,-0.4679336,0.43167204,-0.53446466,0.16846116,-0.19418468,0.20880938,-0.24699934,-0.23214532,0.24314785,0.03417868,0.3814783,-0.45675084,-0.3855024,-0.232075,0.54597217,0.2721836,0.018780576,0.6779074,-0.28934473,0.0555522,0.085554965,0.6118621,0.78433186,-0.22010943,0.20266297,0.4555102,-0.48619416,-0.7386106,0.10433137,-0.19971953,0.18976119,0.058079056,-0.26498806,-0.6231933,0.3177204,0.22058567,-0.08248249,-0.08612276,-0.5180579,-0.30647475,0.46431968,-0.32834122,-0.105182774,-0.22007245,0.057871636,0.39728215,-0.13984415,-0.568117,0.15102054,0.2542941,-0.17319614,-0.5883373,-0.18334113,-0.38459155,0.33067152,0.026391,-0.48153627,-0.23258099,-0.0048279027,-0.5028608,0.1859571,0.030106746,-0.26551288,0.11824637,-0.3845994,-0.18228596,0.86299366,-0.14202274,0.1462304,-0.6416983,-0.36812884,-0.9450103,-0.21459183,0.31478456,-0.10092313,-0.017290883,-0.6570313,-0.13058478,-0.38584456,-0.06795376,-0.028850578,-0.45010632,0.4689514,0.13099203,0.4944442,-0.28936833,-0.93722475,0.20962682,0.13404971,-0.21453342,-0.6405633,0.5005425,0.06361564,0.7101383,0.004729491,0.16062655,0.18665178,-0.4367472,0.092445284,-0.16693637,-0.27012712,-0.62293,0.040926777 +253,0.41292012,-0.101495616,-0.5391875,-0.21292628,-0.28486925,0.24175768,-0.16624148,0.21390752,0.16045412,-0.25686872,0.04305535,-0.027055575,-0.056317028,0.52128613,-0.07800305,-0.596471,0.008437125,0.13452367,-0.6284382,0.30841967,-0.52039456,0.44254717,0.021137241,0.3825806,0.15851718,0.2528021,0.27668253,-0.079515316,-0.0685097,0.04408838,-0.07439155,0.23120262,-0.41256258,0.07171135,-0.09946613,-0.39774957,-0.08856138,-0.2619079,-0.3693352,-0.63225496,0.37782755,-0.6905125,0.64777726,-0.20263961,-0.44472912,-0.04376562,0.16411586,0.32754955,-0.3038027,0.08715653,0.26896903,-0.33077553,-0.09113694,-0.027550705,-0.23879966,-0.5050548,-0.6533639,-0.070508786,-0.6536586,-0.117215745,-0.26880127,0.3216847,-0.26885018,0.120448984,-0.09090201,0.39098927,-0.39825764,-0.01724875,0.339335,-0.26786727,-0.060386296,-0.42555848,-0.11911753,-0.15373841,0.29385966,0.0333823,-0.12712102,0.26912612,0.3881835,0.55565727,0.10160058,-0.31589895,-0.3970392,-0.0012056887,-0.09819758,0.463962,0.014772952,-0.087640665,-0.2879964,-0.042134847,0.26592025,0.16101615,-0.0766201,-0.34587395,0.08437823,0.048941597,-0.22876032,0.26177624,0.40890306,-0.4689991,-0.2613385,0.4252792,0.42540798,0.0991566,-0.3262767,0.23221776,0.02592172,-0.4721009,-0.19688445,0.10323983,-0.014101656,0.5487982,-0.07973313,0.30894366,0.8261463,0.034128092,-0.035073664,-0.33142614,0.01262506,-0.11804867,-0.13881375,-0.17787991,0.077143304,-0.4702216,0.05553943,-0.18114398,0.83244306,0.011586698,-0.886144,0.340487,-0.4412757,0.09794248,-0.14009437,0.5467417,0.7902781,0.23801854,0.18241268,0.9336507,-0.5006817,0.08442889,0.100739636,-0.355299,0.050569825,-0.10147654,0.034316156,-0.56218123,-0.005829831,0.06538092,-0.035129145,0.059642915,0.4839173,-0.44575864,-0.10114942,0.024698561,0.720008,-0.43797916,-0.033462953,0.6279452,1.0440905,1.0873324,-0.05014251,1.1650548,0.5605894,-0.19215909,-0.024009384,-0.47131506,-0.3774707,0.07315286,0.27886048,0.266828,0.4193527,0.12459127,-0.0022153775,0.6400324,-0.33347294,0.119149536,-0.013158628,0.045270704,0.02610411,0.019914245,-0.43725312,-0.20727445,0.18176661,0.08056331,0.0055048424,0.21286291,-0.24464045,0.54712933,0.010235993,1.4366294,0.12560727,-0.004622712,0.025872082,0.45420104,0.1489501,-0.20450787,-0.13411394,0.050611846,0.5408745,-0.13158153,-0.4474584,-0.06590726,-0.30597705,-0.36510983,-0.15666634,-0.3147128,-0.20890424,-0.06547296,-0.4997819,-0.12870404,0.14696842,-0.29006106,0.44208214,-2.7304206,-0.1550795,-0.18116061,0.2651692,-0.1803595,-0.28555366,-0.3578858,-0.4441088,0.17194389,0.4413224,0.2891931,-0.4886611,0.5488764,0.32187977,-0.3091849,0.006857689,-0.5836954,-0.058015894,-0.17409565,0.4218331,-0.07940199,-0.026811425,-0.12191294,0.35369554,0.73809135,-0.0025719563,-0.12425116,0.21049912,0.39845726,0.050001785,0.6405377,0.30188137,0.5106537,-0.18708389,-0.20161386,0.388027,-0.37894645,0.26886198,-0.035309147,0.13640927,0.48762766,-0.47317198,-0.8304152,-0.5624061,-0.16026781,1.1606239,-0.33799076,-0.2678703,0.33035353,-0.1960778,-0.24740781,-0.037999846,0.38977367,-0.034270123,-0.04135065,-0.620678,-0.08736167,0.022835545,0.11093194,-0.08802458,0.011063043,-0.25351372,0.60127014,-0.17003626,0.44890663,0.30873123,0.21445619,-0.026814366,-0.5504747,0.075352944,0.8301141,0.3198411,0.09310538,-0.22808191,-0.14995965,-0.24537092,-0.23612538,0.29303244,0.42325395,0.71965885,0.038312208,0.16088702,0.4022141,-0.28571668,0.07053093,-0.16470149,-0.27334967,-0.03570993,0.13173953,0.45850965,0.63995534,0.06257548,0.4642031,-0.11444263,0.18499759,-0.1892806,-0.5164805,0.60074073,0.66340446,-0.14977123,-0.3193725,0.42854413,0.47202837,-0.28557128,0.30185527,-0.58550876,-0.22425602,0.70600724,-0.12313175,-0.49221733,0.11763302,-0.3323951,0.017443664,-0.90295905,0.20584737,0.09334901,-0.60278016,-0.59219605,-0.31585237,-3.6110704,0.16824654,-0.26028046,-0.08066247,0.15534207,-0.14562072,0.34367195,-0.5972587,-0.44622675,0.0032675534,0.04776884,0.49975917,0.0164538,0.08493771,-0.35849953,-0.25783968,-0.19576028,0.2705822,0.1280955,0.2759519,0.09882604,-0.46786347,0.28327447,-0.39231429,-0.4948058,-0.13164072,-0.5237159,-0.49113306,-0.14330798,-0.42421192,-0.26913688,0.7782329,-0.3373466,0.013438393,-0.2675198,0.041430943,-0.15452157,0.3486869,0.26269764,0.15287279,0.09298238,-0.05641928,-0.10552476,-0.3401149,0.19842319,0.006063193,0.30096194,0.33747733,0.011550371,0.21738401,0.65809447,0.49790055,-0.089568056,0.72437257,0.45533314,-0.10814408,0.19739528,-0.24356577,-0.12278626,-0.7042501,-0.37895405,-0.25703418,-0.49156386,-0.51439315,-0.07831282,-0.3378078,-0.75867736,0.44704014,-0.06140182,0.19048375,-0.16610657,0.15610142,0.34854165,-0.13203096,-0.07412264,-0.08284853,-0.26337695,-0.4356404,-0.42057073,-0.6644679,-0.6833324,0.17167126,1.2766764,-0.17330101,-0.12529904,-0.023531647,-0.4817293,0.0006103754,0.20560592,0.25233746,0.123058595,0.37088266,-0.2086051,-0.82804,0.29001912,-0.31504205,0.07004359,-0.67463285,0.026643332,0.64008087,-0.6221952,0.5506127,0.28737774,0.29465273,0.06351754,-0.5626386,-0.3927598,0.015810886,-0.25135365,0.58006746,0.109278165,-0.45198855,0.4091747,0.114363916,-0.2072864,-0.57753146,0.47513995,-0.09695853,-0.22081527,0.16913512,0.2980215,0.050467264,-0.23255144,-0.040475927,0.2271999,-0.54276294,0.35092667,0.31959945,0.012798469,0.26762542,-0.10125647,-0.16654982,-0.46549973,-0.17091946,-0.34956595,-0.2038287,0.08426247,0.02844686,0.3181375,0.012909007,0.0152115105,0.33138606,-0.21013997,0.14989625,0.01571583,-0.17722124,0.3605934,0.5151211,0.24814327,-0.4747511,0.6086903,0.117172725,0.0796078,-0.08496686,0.04194146,0.44253832,0.26488775,0.46659973,-0.25562656,-0.18661971,0.2178679,0.6361524,0.3087413,0.37627974,0.14401048,-0.28762862,0.23761968,0.1520122,-0.022343896,-0.08417246,-0.19732125,-0.06975226,-0.13038819,0.3096805,0.3236749,-0.013181853,0.3728735,-0.17080845,-0.06487422,0.37845647,0.058193557,-0.22666168,-1.0814432,0.27861124,0.3563569,0.6512219,0.31825572,0.029735018,-0.15202609,0.5590843,-0.44146287,0.033026937,0.45029563,0.04153706,-0.4486192,0.5430679,-0.534012,0.64863586,-0.16792461,-0.05212771,0.09137691,0.26175278,0.2587718,0.82298857,-0.057691596,0.063906215,0.0300417,-0.41705656,-0.003239123,-0.2900596,0.28667447,-0.6606018,-0.3142794,0.6020186,0.47616732,0.28722247,-0.2958022,-0.0663854,0.042169657,-0.16415758,0.04581,-0.14094846,0.032199025,-0.20727675,-0.63763773,-0.294351,0.4258546,-0.10336793,0.020160066,0.21672998,-0.268755,0.27856186,-0.13236956,0.033540107,-0.015325276,-0.54442036,-0.13952662,-0.3182148,-0.44604474,0.47791654,-0.40535864,0.31955317,0.16175635,-0.0013820045,-0.397056,0.23997475,0.00057103235,0.74773,0.049310625,-0.16712876,-0.352329,-0.045413055,0.34869516,-0.3441539,0.0017115434,-0.35216615,0.18430212,-0.59838605,0.38255432,-0.25640982,-0.27630487,-0.16723956,-0.15602972,0.09073814,0.45843378,-0.19545817,-0.041340098,0.13231693,0.114892274,-0.38859496,0.019180438,-0.37588724,0.2284398,-0.16207436,0.034824133,0.005143126,-0.16333748,-0.0036336104,0.3418531,0.088997945,0.26657492,0.3550196,-0.19816308,-0.334191,-0.003017819,-0.0906301,0.40241823,0.16197045,-0.16188817,-0.4721252,-0.32663283,-0.25487113,0.33305973,-0.18481977,0.24761759,0.049550828,-0.45146644,0.87477916,0.015817214,1.2351178,0.06857178,-0.2914027,0.13511771,0.5859969,0.28668448,0.22975221,-0.2706141,0.76812994,0.69810814,-0.103682086,-0.2915139,-0.33877194,-0.08733358,0.31431058,-0.29907954,-0.25927603,-0.103194736,-0.8190428,-0.11693989,0.12706791,0.08372945,0.24711256,-0.057551403,0.011837488,0.080167055,0.19227062,0.56157285,-0.4082063,-0.13265832,0.35061774,0.29855058,-0.01234676,0.20200604,-0.45123765,0.37730476,-0.7281765,0.23082314,-0.34177908,0.06744167,-0.04007637,-0.27247286,0.29488784,0.07232735,0.27650103,-0.28638822,-0.19441566,-0.22449693,0.7957311,0.19976954,0.36233857,0.7675032,-0.2651489,-0.20233086,0.13562308,0.47312024,1.4530197,-0.17108747,-0.038211472,0.32309228,-0.21636009,-0.53693086,0.07971447,-0.3849778,0.1660951,-0.058257755,-0.4038804,-0.3203185,0.33502653,0.001844132,-0.18736641,0.21629265,-0.44748288,-0.18019606,0.30949274,-0.2057875,-0.20891313,-0.29863244,0.26725802,0.45635217,-0.3707548,-0.4056263,-0.06925393,0.44451326,-0.27108553,-0.53667796,0.20392856,-0.3504041,0.33203512,0.15648259,-0.43965304,-0.04605379,0.18491481,-0.43364245,0.14222449,0.5214497,-0.37997139,-0.059877753,-0.2334745,-0.14866233,1.0803173,0.010874287,0.023815095,-0.63257915,-0.37750867,-1.0371307,-0.31343353,0.32861057,0.25957707,-0.17101267,-0.5939546,-0.06123228,-0.043955017,-0.0044038137,0.09396397,-0.5342051,0.40950352,0.17222409,0.39077446,0.009776687,-0.80412936,-0.07538858,0.0646834,-0.3800683,-0.44233847,0.5423103,-0.16117662,0.790832,0.046615634,0.12095938,0.14953879,-0.4340178,0.40311807,-0.37257192,-0.13409756,-0.78325194,-0.04969425 +254,0.5297926,-0.39320326,-0.30155644,-0.23616692,-0.40553734,0.12971963,-0.16054896,0.16716646,0.078432,-0.4130813,0.09245221,-0.333456,-0.10759533,0.5974411,-0.21748479,-0.74002856,-0.03363157,0.13885638,-0.6388988,0.77824384,-0.50612575,0.4024804,0.24909408,0.12253585,0.11531002,0.22008358,0.5457506,-0.09666847,-0.03485333,-0.06482847,-0.2687903,0.047860365,-0.5839865,0.25924936,-0.078372546,-0.3222806,0.21168366,-0.26062337,-0.33436352,-0.74264234,0.31819314,-0.8101328,0.2877681,0.002209393,-0.22837254,0.17354517,0.28273302,0.23362452,-0.2984203,0.12892711,0.13837343,-0.05775421,-0.050442886,-0.19457437,-0.1033746,-0.62174153,-0.6351693,0.026219746,-0.6971704,-0.40617135,-0.2126972,0.23888998,-0.38320625,0.050081473,-0.0875962,0.30198008,-0.54351944,-0.27037314,0.11963834,-0.099549465,0.27360767,-0.5053811,-0.09049355,-0.14165993,-0.08903182,-0.074700475,-0.11068344,0.5007091,0.25388804,0.6196331,0.006766349,-0.25501618,-0.067986846,-0.1453943,0.24327587,0.47628078,-0.0400151,-0.59168476,-0.21299288,0.10474184,0.17503193,0.09353988,-0.025612107,-0.48350233,0.06629966,-0.08934751,-0.23359172,0.33922666,0.3913204,-0.59043056,-0.38732564,0.30415434,0.47065413,-0.047457345,-0.0713843,-0.007267769,0.051362786,-0.5353119,-0.1654796,0.20968373,-0.31743392,0.47593555,-0.11419327,0.07636307,0.67018783,-0.24014536,0.08482072,-0.15710713,-0.19783472,-0.070974335,-0.15664223,-0.24989699,0.24930611,-0.63731855,-0.09765477,-0.32136205,0.94743323,0.16292843,-0.7494296,0.44070423,-0.58725715,0.17492406,-0.22330584,0.5605636,0.61033744,0.41815022,0.21693341,0.66118866,-0.49161807,0.19496821,-0.18565793,-0.2758428,0.09301195,-0.2987107,-0.066418014,-0.48532152,0.20731153,-0.22286378,-0.067211755,-0.26997757,0.6893451,-0.42188618,-0.11482746,0.098947726,0.85665345,-0.34943742,0.096470095,0.4630956,0.9832065,1.0460378,0.017048614,1.3356841,0.4385018,-0.24024417,0.30270258,-0.28612718,-0.6629858,0.22520804,0.5589115,0.15710682,0.26153767,-0.046109986,-0.043189492,0.37660754,-0.41169697,0.09583404,-0.27995238,0.43708813,-0.08507636,0.076191425,-0.5104329,-0.26363453,0.20503168,0.039688643,-0.015644964,0.32107347,-0.21366934,0.32339013,0.07381814,1.8504033,-0.09029611,0.10164436,0.11881913,0.47172794,0.30777067,-0.05161656,-0.012732967,0.18631247,0.36154237,0.032847613,-0.5739847,0.15405568,-0.35698283,-0.5161717,-0.24560668,-0.32850513,0.10979004,0.024538422,-0.48585197,-0.18445499,0.13028792,-0.2281235,0.351814,-2.197806,-0.24662548,-0.15193515,0.22366813,-0.4838104,-0.1668573,-0.07000563,-0.4635507,0.4499102,0.39904684,0.44112968,-0.65706766,0.34959516,0.5024307,-0.42476097,-0.120164126,-0.57214135,-0.24674495,-0.20536384,0.54154867,-0.024772102,-0.2177978,-0.12820333,0.3918548,0.5515019,-0.08441327,0.047565516,0.20734742,0.38004932,0.26847556,0.5572641,-0.027022226,0.41147855,-0.28972402,-0.11434065,0.42939675,-0.1102859,0.28219005,-0.01828336,0.18874127,0.4532518,-0.5347857,-1.0558336,-0.6660318,-0.446519,1.0383066,-0.3415075,-0.38893113,0.32964867,0.11629277,-0.050527997,-0.09720966,0.27295098,-0.15484114,0.028202858,-0.7589375,0.1406551,0.11809845,0.20067905,0.20182547,-0.08594225,-0.37261614,0.69356626,-0.08309191,0.3867654,0.26190475,0.28268072,-0.39459673,-0.5593117,0.07194128,0.9891694,0.3545896,0.12284882,-0.21728805,-0.34312552,-0.22789794,-0.1244499,-0.032478895,0.22085923,0.9786838,0.11728677,0.0026513333,0.2709686,-0.2229639,0.03926117,-0.08029852,-0.46940345,0.093670815,0.16627,0.55259347,0.37824503,-0.054609403,0.40310028,-0.09410854,0.3659075,-0.18558726,-0.3914469,0.43131173,1.2562658,-0.1544052,-0.04478838,0.6112308,0.51608115,-0.3419002,0.5623907,-0.7483976,-0.40998656,0.40038058,-0.20189597,-0.45523682,0.10276497,-0.34944054,0.1375547,-0.9922364,0.47561854,-0.26451668,-0.21009883,-0.58349335,-0.20417236,-3.5459116,0.29020327,-0.0769948,-0.18245445,0.08779909,0.14341162,0.48983568,-0.6323688,-0.38097313,0.07724056,-0.0086354595,0.52198035,0.106531076,0.14905311,-0.32942536,-0.23014812,-0.31343117,0.2622516,0.030272087,0.2228349,-0.057785764,-0.5047094,-0.016866732,-0.2405836,-0.35579157,0.1363409,-0.50956976,-0.57117736,-0.34620506,-0.5603344,-0.29100138,0.5871115,-0.010507707,-0.03703084,-0.20649455,-0.015634926,-0.08362493,0.23666292,0.22348377,0.197269,0.06417625,-0.01637135,-0.19973193,-0.3365603,0.21656914,0.031961836,0.33842432,0.34636948,-0.04648392,0.10056552,0.6665976,0.40765557,-0.09147365,0.67470723,0.39612502,-0.13372149,0.10840513,-0.19152507,-0.26819718,-0.5508109,-0.44660416,-0.21433592,-0.26844713,-0.47640085,-0.03909482,-0.39841413,-0.49531552,0.5130961,0.011850127,0.24302383,-0.12896866,0.082609445,0.34872538,-0.25858715,0.03863287,-0.15630743,-0.17991409,-0.55381036,-0.3884724,-0.7792213,-0.5001136,0.27902314,1.1349355,-0.15053448,-0.31949717,-0.08092734,-0.03847262,-0.032239858,-0.15173873,0.032703478,0.40096524,0.2936327,0.009361709,-0.77254015,0.56239724,0.023293026,0.1531252,-0.35603502,0.08635699,0.6098661,-0.5315209,0.45986456,0.33437616,0.15017365,0.10888653,-0.6244012,-0.17508186,0.15521206,-0.22289094,0.4943131,0.017542306,-0.6851266,0.44864738,0.28756398,-0.46676537,-0.80126065,0.42827097,0.06582608,-0.32838666,-0.113874845,0.31761518,0.16534677,0.121199355,-0.3948328,0.33589306,-0.69616246,0.22984216,0.4107915,0.03305763,0.21121,-0.2669864,-0.24327418,-0.6509648,-0.032592334,-0.43433112,-0.3636359,0.20510769,0.025157582,-0.0077541512,0.24693307,-0.06627844,0.4278468,-0.23926687,0.039871193,0.057274386,-0.3496809,0.46059063,0.41065082,0.4299518,-0.34882274,0.5339417,-0.035748623,-0.1589083,-0.30391827,0.014526638,0.39538443,0.3011638,0.15245095,-0.08368886,-0.19251485,0.50471276,0.99617493,0.19217753,0.4131429,0.13380463,-0.24963541,0.35105982,0.17737837,-0.10447712,0.12837324,-0.36290187,-0.16839713,0.15214364,0.11851928,0.5338861,0.013698252,0.3425846,-0.14917001,-0.10823663,0.12915455,0.21932627,-0.2497308,-1.007891,0.18004617,0.14088406,0.5122829,0.75917774,0.032994263,0.03840162,0.6342684,-0.22430436,0.06024719,0.36079508,-0.03101492,-0.528127,0.6808502,-0.5254213,0.24011026,-0.098755315,0.024787346,-0.05897931,0.10592079,0.36696202,0.8264291,-0.04543382,-0.019168355,-0.15859823,-0.2948984,0.12985654,-0.3063478,0.11219385,-0.30296803,-0.42948115,0.48238292,0.36097425,0.29643187,-0.038878836,-0.023769835,0.0010875106,-0.1518295,0.30268192,-0.02172892,-0.03228421,0.03921352,-0.5886476,-0.16947125,0.62184775,0.08153211,0.09047437,-0.06383166,-0.20108649,0.09147615,-0.22833504,-0.100168295,0.03512957,-0.6972113,0.06227041,-0.32289234,-0.25074634,0.63080096,-0.30591348,0.054862782,-0.024274612,0.040046494,-0.4410102,-0.01091066,0.23423466,0.71636134,-0.014166713,-0.17511746,-0.2781207,-0.039983477,-0.034467865,-0.24491067,0.027919738,-0.20775244,0.07171789,-0.9199072,0.5755957,-0.110476576,-0.41677672,0.16658555,-0.24071436,-0.045337837,0.53876966,-0.20210437,-0.1605869,-0.24941333,0.08722975,-0.24728593,-0.11361006,-0.032414045,0.28177324,-0.03324697,-0.039977375,-0.14101572,-0.054773632,-0.04114557,0.6457282,-0.039673332,0.20684926,0.2644725,0.10352575,-0.3847102,0.050602555,0.13592583,0.37905237,1.6506512e-05,0.05252512,-0.27885076,-0.13307945,-0.17881645,-0.017596753,-0.22185837,0.22836241,0.14721091,-0.5458359,0.92856604,0.13874346,1.2870785,-0.13934107,-0.26646346,-0.038850937,0.5171282,0.030159319,0.06081534,-0.36721858,0.791654,0.69293034,-0.059015214,-0.21767057,-0.45635623,-0.19118932,0.30340517,-0.3362245,0.007470131,-0.0039724032,-0.7313364,-0.4218171,0.3585149,0.34832093,-0.002872006,-0.086250715,0.060495116,0.1488181,0.17023586,0.4675141,-0.5122624,-0.06829119,0.28730318,0.29518744,0.15257981,0.30556506,-0.38562834,0.33267596,-0.6360712,0.24906226,-0.31813425,0.061369006,-0.0061068316,-0.2390275,0.23299138,0.0920877,0.32189402,-0.22404514,-0.4037658,-0.15888856,0.7504141,0.14028242,0.15640745,0.82850796,-0.34027117,0.2634348,-0.007331657,0.40162498,1.348185,-0.27909726,-0.19851461,0.19411334,-0.3360841,-0.8486383,0.3635346,-0.3683447,-0.03722926,-0.038921107,-0.40521246,-0.43455046,0.38723055,0.23325583,0.026272485,0.018698825,-0.5118841,-0.11163608,0.4076491,-0.17637347,-0.2814701,-0.28882217,0.27654558,0.6732951,-0.3694587,-0.20578185,0.13664795,0.33170176,-0.32161278,-0.754857,-0.16128567,-0.32427362,0.32456237,0.29149267,-0.2426321,0.13182798,0.11478982,-0.46256238,0.07614635,0.3807603,-0.41366097,-0.0044246,-0.26355037,0.06929979,0.9464264,-0.14717975,-0.31384814,-0.7754325,-0.58264273,-0.95968366,-0.46793574,0.7804591,0.16643196,0.085128374,-0.4441748,0.04733282,-0.034660373,0.1184199,0.017237624,-0.39572772,0.34235942,0.046164427,0.49108627,-0.08332607,-0.70785177,0.13501875,0.14196925,-0.090093635,-0.48493597,0.5456013,-0.19083472,0.89847785,-0.013852691,-0.024036638,0.19534105,-0.5976385,0.100127816,-0.41443065,-0.29434383,-0.6158933,0.11946401 +255,0.52842206,-0.21684225,-0.66116536,-0.059876617,-0.30716315,0.060477775,-0.11877258,0.6452166,0.2936108,-0.67409647,-0.033187132,-0.102716796,-0.18445046,0.19281858,-0.1739631,-0.63773596,0.07193823,0.06990946,-0.49230325,0.65379417,-0.27886894,0.3563623,0.0032345515,0.35224688,0.16308735,0.2989753,-0.035194643,-0.054672047,-0.16947123,-0.26275432,0.19346556,-0.065056846,-0.8139644,0.20563444,-0.30302957,-0.31346175,-0.10680173,-0.47397417,-0.48610818,-0.93685716,0.3529148,-0.8806352,0.48706123,-0.022919875,-0.3066033,0.09819483,0.10054546,0.3310921,-0.07980896,-0.22127853,0.13663676,-0.10426958,-0.10425945,-0.19711015,-0.27541292,-0.45488504,-0.58439755,-0.06116841,-0.5026055,-0.13950504,-0.3321328,0.15351783,-0.5121877,-0.12948738,-0.17731476,0.73984826,-0.29317927,0.032265786,0.3668305,-0.15032473,0.3452096,-0.73843163,-0.16316293,-0.15279599,0.1665019,-0.097792774,-0.1577203,0.5459482,0.13780172,0.42311478,0.06781617,-0.3177275,-0.2745995,0.055167403,0.19784106,0.34201998,-0.16661857,-0.502479,-0.19241007,-0.09370434,0.39228952,0.21455325,0.16071571,-0.24794456,0.0519497,0.22935654,-0.2907515,0.7473557,0.5592353,-0.13016988,-0.064157635,0.33333194,0.5093774,0.12857623,-0.22904539,-0.14851612,-0.042403854,-0.48683962,-0.14963926,0.20152436,-0.31231454,0.5302943,-0.24381875,0.15688208,0.7672793,-0.3741772,0.044772845,0.27911142,0.047732983,0.02696575,-0.47454655,-0.08578431,0.304126,-0.5567574,0.24013454,-0.55508333,0.74090904,0.23744759,-0.67482305,0.23223051,-0.71990484,0.20935914,0.023922814,0.4715886,0.79817384,0.6457581,0.09357207,0.7787749,-0.4796144,-0.058826648,-0.050420146,-0.32705098,0.09905377,-0.41539747,0.32283136,-0.25266764,-0.1274084,-0.07734646,-0.21247484,-0.049676325,0.29854676,-0.6084926,-0.31502816,0.06784058,0.9119934,-0.14640985,0.012232909,0.8104638,1.0097818,1.0005065,0.0073521617,1.361407,0.1170976,-0.2145622,0.3202102,-0.098242365,-0.7629179,0.33172545,0.18925196,-0.4084317,0.31778085,0.021656262,-0.24232318,0.33544043,-0.46411216,-0.12132828,-0.15941086,0.41244337,0.09446045,-0.20604508,-0.26575336,-0.10130549,-0.034300517,0.04522442,0.21387163,0.38160086,-0.15760769,0.2650301,-0.0476097,1.1473899,-0.095149085,0.19156076,0.042913694,0.5656036,0.16744779,-0.08863508,0.10687421,0.20812596,0.14762655,0.24818052,-0.63406664,0.027995123,-0.40686673,-0.31972396,-0.10664332,-0.33797568,-0.17946234,-0.17331907,-0.49787918,-0.12364109,-0.18402077,-0.2530102,0.42316863,-2.416222,-0.34299013,-0.13769667,0.3730961,-0.38591433,-0.3665363,0.014390351,-0.69963086,0.56386673,0.2163557,0.60349077,-0.7162145,0.3627337,0.5182771,-0.58575004,-0.06739901,-0.59756047,-0.12080378,0.0500459,0.37240002,0.027299514,-0.1182351,0.11388016,-0.12954794,0.50751305,0.20769979,0.03086672,0.2827471,0.4556187,-0.2498111,0.51241755,-0.09162809,0.5748975,-0.59272134,-0.058072448,0.4008414,-0.63728243,0.30513123,-0.19730887,-0.040677473,0.56855977,-0.53806376,-0.85889786,-0.66827595,-0.33294612,1.2902876,-0.017992629,-0.49674422,0.09655338,-0.3602913,-0.14692734,-0.16691937,0.67349845,-0.04547803,0.14755313,-0.67692226,-0.007224512,-0.30052292,0.17251268,0.01394298,0.048325337,-0.38643163,0.7707549,0.009197136,0.508946,0.18635726,0.21455051,-0.4423954,-0.4486483,0.0689859,0.87404317,0.4716863,0.12012832,-0.1988878,-0.11917228,-0.44130453,-0.21052602,0.00092230394,0.769651,0.6110224,-0.14045085,0.03550742,0.44856343,-0.08177797,0.18303023,-0.12863551,-0.55387086,-0.3811145,0.062091008,0.598043,0.75564945,-0.27256292,0.33106974,-0.090969294,0.18918747,-0.19189896,-0.5345902,0.6129565,1.0830039,-0.25173128,-0.13735709,0.5204271,0.46228033,-0.54457325,0.5774573,-0.47863898,-0.50219476,0.5745404,-0.19410601,-0.58699346,0.036233142,-0.26716062,0.046371117,-0.78848207,0.31558737,-0.7210379,-0.47415146,-0.53248906,-0.1643506,-2.867316,0.31387055,-0.2924745,0.042420592,-0.30477193,0.015389745,0.25354,-0.5930526,-0.5944385,0.21105947,0.119422406,0.8481503,0.0049374225,0.16521972,-0.38651532,-0.28181356,-0.38748753,0.17302898,0.2234548,0.19627205,0.0052442322,-0.3155173,-0.18689156,-0.08784657,-0.55272114,0.12176407,-0.6517792,-0.47664744,-0.3588481,-0.5744359,-0.30720395,0.7766832,-0.31731117,0.10387714,0.06662218,-0.011539088,-0.017596098,0.28266698,0.027613498,0.22136758,0.23968054,-0.2068484,0.19536318,-0.3518048,0.3353995,0.17894994,0.53478473,0.46265805,-0.22365515,0.26962948,0.56030977,0.93032277,0.13572754,0.9395155,0.12637956,-0.10758634,0.5290681,-0.29495975,-0.5057372,-0.65405595,-0.09338395,0.11043679,-0.30521104,-0.28185833,0.22699155,-0.2987831,-0.8367953,0.57509816,0.087859645,0.3585857,-0.013914509,0.25572938,0.5591647,-0.26066583,-0.04146203,0.014979248,-0.09428498,-0.56482154,-0.22622024,-0.684016,-0.56402296,0.081607334,0.8985484,-0.18010852,-0.12250361,0.06626614,-0.1728662,0.15710688,0.14624046,-0.037388828,-0.18357609,0.43017212,0.06831605,-0.59112936,0.38301358,-0.036009423,-0.040113274,-0.5791216,0.5227407,0.87088907,-0.64905274,0.5211608,0.3305953,-0.06429165,-0.36693338,-0.470214,-0.02394806,-0.010300429,-0.15917741,0.2597176,0.16701348,-0.87944096,0.28682038,0.2763558,-0.3093715,-0.6714754,0.5298598,-0.013267384,-0.045624394,-0.3885368,0.49978307,0.42299026,-0.017341448,-0.045497674,0.40839836,-0.50344974,0.15305246,0.14102402,-0.1327429,0.36571822,-0.027492179,-0.2718479,-0.74808353,0.19089288,-0.71770567,-0.26546147,0.4505175,-0.1084574,-0.083143815,0.21633475,0.33714172,0.31361097,-0.13388728,0.08958979,-0.14201912,-0.4298541,0.5355084,0.44283068,0.66127396,-0.6396354,0.7420785,0.089381546,-8.2994884e-05,0.4074704,0.13008688,0.545386,0.10583437,0.5881682,0.16969472,-0.07772829,-0.015566672,0.80621344,0.15207669,0.6622061,0.15657187,-0.121367946,0.08318384,0.062243894,0.1542671,-0.13230087,-0.85818857,0.09137487,0.02895115,0.00940732,0.4804279,0.109742165,0.29567498,0.08992187,-0.26106784,-0.14193669,0.08897523,-0.19432384,-1.6260393,0.56060207,0.22540991,0.95810497,0.3553772,-0.040695105,0.00897093,0.6979438,0.10169765,0.18882623,0.5609506,-0.113773674,-0.44395894,0.5288298,-0.7431786,0.43806502,0.12944995,0.113025256,-0.021763977,0.123781785,0.5186336,0.74981177,-0.26624396,-0.035438538,-0.11765773,-0.45290068,0.28619918,-0.3713131,0.19784595,-0.4069628,-0.26297355,0.488272,0.65137064,0.2841859,-0.20872802,-0.040745847,0.15819556,-0.07426517,0.34736687,-0.17255391,0.043663,-0.053912148,-0.43015766,-0.21809277,0.48799375,-0.10922154,0.2410632,0.07270717,0.0040925397,0.30363905,-0.03864812,-0.07907818,-0.07731223,-0.82646877,0.006538192,-0.45946553,-0.477729,0.36969024,0.0016955045,0.29943192,0.24954937,0.11112286,-0.3859267,0.4472998,0.058332577,0.53503263,-0.28456235,-0.3189589,-0.39737627,0.26006886,0.11593492,-0.42986014,0.13807833,-0.1078316,0.003053115,-0.38059726,0.38757208,-0.2565676,-0.2271413,-0.01658851,-0.15219966,-0.08643012,0.60801405,-0.20109683,-0.044711266,-0.0101234,-0.27679193,-0.18080924,-0.19021004,0.01998341,0.19296297,0.19744407,0.08336333,-0.2149694,-0.19141814,-0.0059635593,0.32933697,0.018147798,0.1722768,0.46236897,0.11361141,-0.4163894,-0.1713418,0.4354996,0.60018355,0.12603006,-0.108964615,-0.2671926,-0.3433494,-0.46354407,0.38782597,-0.08599233,0.32849926,0.1382399,-0.40630847,0.8104514,0.09527354,1.2426001,-0.08796624,-0.32538027,0.036290567,0.4982138,-0.029992979,-0.11486184,-0.53721297,0.96242553,0.46658024,-0.2639979,-0.051973358,-0.56676614,0.04395357,0.18363975,-0.37120873,-0.1618432,-0.06971465,-0.70082533,-0.24177995,0.17331551,0.40892237,0.054866806,-0.26623565,-0.1238064,0.36990133,0.12034755,0.41694406,-0.63116497,-0.24390517,0.24759707,0.32922158,-0.0033578528,0.24856319,-0.36011025,0.34733948,-0.6144324,0.23045553,-0.14018007,0.095208205,-0.286426,-0.43082052,0.17056274,0.036181413,0.41957295,-0.29944918,-0.53365517,-0.19851057,0.42496496,0.21754034,0.14426692,0.77018064,-0.27996218,-0.13034037,-0.028406449,0.7248484,1.0750597,-0.019010603,-0.015384734,0.23018257,-0.43705824,-0.73534256,0.22713128,-0.43878153,0.3606487,-0.19093587,-0.2577893,-0.5691071,0.19578655,0.05125274,-0.10429557,0.05063481,-0.8228305,-0.35535115,0.16349095,-0.4573527,-0.22499512,-0.35321456,0.16360521,0.58746135,-0.16200143,-0.2703173,0.18521158,0.18551472,-0.12494368,-0.53659207,-0.13757545,-0.31199104,0.14566444,-0.07126166,-0.39199764,0.051483933,0.05533024,-0.6218329,0.21462049,-0.09343119,-0.49824142,0.029139025,-0.1325259,0.008039267,0.88238645,-0.09355186,0.3235213,-0.29145637,-0.509806,-0.6554237,-0.37718412,0.23848604,0.121669546,0.016918045,-0.6932903,-0.22198156,-0.122133456,0.016989907,-0.067560636,-0.41326168,0.26709592,0.20347016,0.4649839,-0.15147966,-0.8353559,0.1785927,0.21144997,0.022690488,-0.68216634,0.38703588,-0.18984899,0.77061236,0.19428168,0.026920604,0.1981929,-0.5120832,-0.012600129,-0.2353676,-0.19657084,-0.57498306,0.21178807 +256,0.6699736,-0.08572594,-0.5307628,-0.10676274,-0.40918338,0.14518318,-0.2698749,0.3275053,0.07332748,-0.38356584,-0.19679242,0.03480101,-0.1388365,0.17439432,-0.23059025,-0.8736969,0.020678602,0.102593005,-0.5088482,0.768047,-0.37957764,0.5706767,-0.25259304,0.26650715,0.41305462,0.25979024,0.0828526,0.16002291,-0.22783926,-0.13003933,0.10479738,0.2479823,-0.41254482,0.15982783,0.13564612,-0.312831,-0.063083805,-0.11253835,-0.361347,-0.7418153,0.33008182,-0.5545376,0.54753745,-0.19233412,-0.38037086,0.08784442,0.15369901,0.03434162,-0.13653654,0.06252595,0.16674268,-0.22940463,-0.11113994,-0.17633367,-0.35962552,-0.5589251,-0.6294902,-0.008320849,-0.474235,-0.21110828,-0.2798266,0.3518231,-0.40000036,-0.1323377,-0.03886825,0.5670744,-0.5156316,0.102452666,-0.0788627,-0.29347265,0.07194843,-0.8517965,-0.17128736,-0.094627365,0.041327283,0.109770335,-0.15979564,0.24730481,0.26146552,0.35265642,0.08634281,-0.23934117,-0.59082603,-0.09447522,0.24871269,0.5063592,-0.19705744,-0.3383143,-0.32667035,-0.19518295,0.3310692,0.04979626,0.18400727,-0.46109834,-0.14871788,-0.06678891,-0.23007688,0.39729548,0.5388254,-0.34950888,0.08026048,0.3541984,0.5541305,0.2137107,-0.45518583,0.1226269,-0.1820432,-0.37208277,-0.12084223,0.12374112,0.0313663,0.52182114,-0.19751623,-0.040537372,0.43010733,-0.094729215,-0.04570307,0.0151216425,-0.014370587,0.26126528,-0.21043628,-0.07656814,0.21571541,-0.077924825,0.09278712,-0.3046628,0.6317476,0.030084673,-0.6648038,0.43291128,-0.35635346,0.13954332,0.030802393,0.5925257,0.83691293,0.4963903,-0.055709116,0.7680921,-0.2385232,0.10751581,0.10357195,-0.09932579,-0.13579978,0.091117695,-0.09077048,-0.4809444,0.2586555,-0.21360287,-0.0261999,0.11632464,1.0466002,-0.44067043,-0.15120077,-0.10032089,0.71131605,-0.40838873,-0.14062732,0.79821193,1.0347753,1.0350176,0.026275683,1.0676239,0.36175275,0.0038256394,-0.25251356,-0.3360895,-0.5453222,0.2134847,0.33115733,0.32668382,0.21384452,0.05779086,-0.004532039,0.53599256,-0.28242552,0.048417654,-0.082082435,0.4743315,0.2617373,-0.101903625,-0.37406385,0.038020182,0.3132676,0.11871675,0.15189096,0.28603852,-0.29661983,0.30840126,0.037605572,1.4814794,0.014294058,0.002012249,0.21104436,0.39815515,0.2874248,-0.32785866,0.29508466,0.18995248,0.40010428,-0.20942223,-0.59092176,0.06550807,-0.17851576,-0.6377467,-0.33368623,-0.2290245,-0.23015359,-0.157633,-0.507409,-0.1878646,0.10213227,-0.4159643,0.4733355,-2.4338353,-0.052356414,-0.17900515,0.3630153,-0.08224423,-0.46580335,-0.013521716,-0.38904354,0.4244508,0.3969187,0.31362477,-0.44017822,0.48561156,0.47386765,-0.5074238,0.063522235,-0.5077365,-0.09229435,-0.021269936,0.68017846,-0.046527058,0.018333888,-0.06440814,0.33781898,0.6391751,-0.040387705,0.12666343,0.3373009,0.31426412,-0.12407852,0.5558665,0.0839114,0.56277704,-0.07552969,-0.24937733,0.4909473,-0.6090349,0.03527853,-0.015444834,0.2612724,0.28820503,-0.45641154,-0.8903222,-0.6716393,-0.23903894,1.0453639,-0.3030764,-0.7192483,0.4120913,-0.3469664,-0.33565736,0.14610083,0.31864282,-0.3199434,0.023164518,-0.7689421,0.049210586,-0.10807432,0.20105144,-0.16625567,-0.06404275,-0.4934765,0.8081255,-0.2721218,0.5814199,0.36475083,0.3004269,-0.21333474,-0.46395808,0.014108451,0.9190858,0.5271091,0.08690548,-0.20757379,-0.11759782,-0.29106343,-0.15030798,0.117597,0.8251826,0.47455546,0.03737968,-0.014061112,0.18030956,-0.2722681,0.030851223,-0.27735758,-0.24552892,-0.0842412,0.086342074,0.52562445,0.6835273,-0.22342576,0.4610641,-0.1822299,0.47021973,-0.17791428,-0.5349238,0.37826732,0.88481385,-0.22409754,-0.49641412,0.5008134,0.45483324,-0.21039,0.29143244,-0.6248949,-0.13612786,0.47822857,-0.28038716,-0.2607025,0.2922514,-0.49694598,0.050413713,-0.76303893,0.17651118,-0.27165255,-0.6459615,-0.4348167,-0.39048597,-3.036239,0.0588068,-0.13500431,-0.28583047,-0.06846488,-0.31632963,0.2902934,-0.56614405,-0.59490824,0.021011867,0.098835185,0.4138782,0.117018,-0.053807605,-0.2811628,-0.18423404,-0.17755407,0.3579414,0.008764908,0.47265473,-0.060558867,-0.47935587,-0.13446921,-0.24153346,-0.5559921,0.017413903,-0.5049847,-0.49230242,-0.06580083,-0.4112095,-0.1283825,0.5490165,-0.545062,0.13617423,-0.33610582,0.042894833,-0.17437994,0.08887191,0.0711538,0.32442775,0.1648558,-0.13239768,0.10394441,-0.24986725,0.2434034,0.083283246,0.1203285,0.4419955,-0.15910107,0.04123144,0.3674721,0.68761253,-0.0657483,0.885486,0.47819394,-0.018739033,0.32770878,-0.22663337,-0.30575085,-0.6563922,-0.162179,-0.018549088,-0.48675513,-0.41981426,-0.37452862,-0.3885913,-0.789497,0.3832855,-0.031478293,0.10544315,-0.06965077,0.29717386,0.41431826,-0.07873349,-0.085127234,-0.021563858,-0.22113189,-0.3532712,-0.4182809,-0.6118232,-0.54555094,-0.12277228,1.118508,0.034808394,-0.111753,-0.0077246577,-0.33847886,0.065932035,0.27712154,0.18920681,0.0948559,0.3281886,-0.053571127,-0.66755444,0.38941702,-0.28081182,-0.10891557,-0.56110346,0.23622496,0.50013804,-0.3865728,0.5088319,0.1486178,0.23400754,-0.25940388,-0.73771936,0.022995142,0.08502186,-0.31658974,0.5521687,0.32073623,-0.8392094,0.47161758,0.24588096,-0.12024665,-0.64712954,0.42583364,-0.10345488,-0.6564944,-0.055923805,0.51218724,0.07158296,-0.18440914,-0.24370834,0.4075464,-0.3803469,0.28291088,0.22933231,-0.114537634,0.28386015,-0.2600127,-0.29562935,-0.8561963,-0.0861477,-0.39305907,-0.31793186,-0.02298344,0.11245899,0.1852301,0.06225162,-0.06344396,0.5637156,-0.29412556,0.24059321,-0.2825088,-0.23080772,0.20842057,0.46763873,0.41248223,-0.30553254,0.6469382,0.098572075,0.15049393,-0.09397046,0.13495134,0.54790217,-0.10802357,0.46774673,0.032719024,0.10038465,0.13754511,0.7221841,0.30974233,0.46548378,0.023541942,-0.61443216,0.24163124,-0.0055603515,0.37850362,-0.21489505,-0.53453696,-0.01768063,0.029481022,0.23513061,0.5405395,0.1586816,0.5719905,-0.17972098,-0.355457,0.13847789,0.07870436,-0.07630086,-1.2654521,0.22847308,0.17920266,1.01176,0.6046083,0.11354244,0.104434185,0.37207276,-0.23615283,0.033056214,0.40185478,-0.09907445,-0.24297537,0.2089794,-0.7433544,0.3446904,-0.16307038,-0.06856622,0.25683224,0.03312362,0.50728,0.70914793,-0.12840803,0.007835336,0.07738271,-0.2954189,0.101580486,-0.19701415,0.15892297,-0.51275903,-0.38663346,0.52755016,0.5295104,0.41326937,-0.3449121,-0.066262186,0.21776916,-0.18070437,-0.0120572,0.05114918,-0.030885927,-0.23249425,-0.40369874,-0.45704508,0.4077016,0.12552911,-0.12758894,0.20731324,-0.26863313,0.20768082,0.038416628,0.02820737,0.110189185,-0.53355217,0.092935756,-0.26449785,-0.39340255,0.3319796,-0.40469384,0.19629578,0.2573842,-0.07761839,-0.36840332,0.27685255,0.38227567,0.77078557,0.2721752,0.058883604,-0.28858262,-0.08954139,0.30362555,-0.19758986,-0.17015511,-0.17666918,0.21697891,-0.6656982,0.35486245,-0.30873203,-0.25621718,0.20858285,-0.05662784,-0.12235382,0.388269,-0.15963954,-0.29661632,0.13618961,0.019802304,-0.16425374,0.0128391385,-0.040179826,0.25761512,0.0066252146,-0.20243579,0.0036570374,0.02195441,0.100577675,0.3678719,0.0407765,0.4013238,0.51529384,-0.029852666,-0.45697623,-0.12211442,0.2836491,0.5070205,-0.034956295,0.21988122,0.035866246,-0.57110727,-0.44492334,0.29041395,-0.23700891,0.22504134,0.042113736,-0.5518861,0.6846193,0.17685106,1.2158478,-0.0027912557,-0.4814177,0.093863755,0.70244896,-0.10272772,0.20317629,-0.2506727,1.0185206,0.5884063,-0.34063596,-0.2466608,-0.39218426,-0.026708849,0.26050544,-0.24487658,-0.16325489,-0.080544904,-0.66141963,-0.14246875,0.053186495,0.09551326,-0.01215104,-0.061058376,-0.07602037,0.11327397,0.17925593,0.33324045,-0.47210285,0.106861904,0.2663225,0.109331094,-0.109502725,0.12626943,-0.30425787,0.26607496,-0.52529734,0.33296803,-0.30721116,0.12458131,-0.2242469,-0.2364251,0.34970188,0.10451964,0.17612205,-0.4289715,-0.2197988,-0.22408189,0.49159494,0.13342093,0.13255192,0.54264957,-0.16110311,0.18179278,0.1568841,0.44202363,1.2055292,-0.2337529,0.091935046,0.27623668,-0.4523034,-0.61961544,0.078792095,-0.3690819,0.14412078,-0.18914397,-0.34501934,-0.5468099,0.26488087,0.16239914,-0.0037070364,0.10744938,-0.5915207,-0.27511913,0.46320805,-0.3024295,-0.123204984,-0.20929854,-0.007922672,0.47151458,-0.28736004,-0.48392016,-0.117303126,0.3313936,-0.2838256,-0.6601884,0.14859441,-0.1954306,0.44926006,0.15668203,-0.3793826,-0.17401788,0.3032931,-0.4700408,-0.10543844,0.34757155,-0.3519601,0.12539078,-0.266913,0.09270743,0.8887603,-0.16725634,0.32170352,-0.56291187,-0.5531189,-0.93657464,-0.42985976,0.2546629,0.26367712,-0.17070639,-0.73713636,-0.20519987,-0.56555057,-0.14086984,0.1302796,-0.45041797,0.53129435,0.21823964,0.31977606,-0.10653365,-0.833668,-0.031661183,0.1669637,-0.24963158,-0.4778959,0.5671427,-6.6012144e-06,0.6997578,0.11221884,0.19809192,0.13807613,-0.57277304,0.40525806,-0.12865795,-0.16935815,-0.6493445,0.24668264 +257,0.4996561,-0.08738481,-0.3903396,-0.25991443,-0.42596027,-0.19849472,-0.056433033,0.1380352,0.23700197,-0.2198679,-0.305723,0.0039916136,0.043275226,0.47265676,-0.13627775,-1.1260662,-0.04020175,0.2335455,-0.64105874,0.46787915,-0.6412947,0.4875622,0.2053051,0.13952011,-0.11989566,0.3846923,0.66803837,-0.3702536,0.07361406,-0.01925237,-0.22140515,0.08449406,-0.58514756,0.28443983,-0.016301423,-0.19872941,0.18594272,-0.14022048,-0.05793674,-0.75504845,0.2894428,-0.8457889,0.34198394,0.05943514,-0.11892319,-0.27604762,0.10497519,0.32924148,-0.46014038,0.14694308,0.26208436,-0.3354696,-0.23109019,-0.31673184,0.30222276,-0.39276877,-0.36945888,-0.09810131,-0.50373334,-0.4122651,-0.29613623,0.19098942,-0.50858986,-0.08170704,-0.011377196,0.3230797,-0.41891825,-0.2550288,0.3558706,-0.46812686,0.26001275,-0.560988,-0.028962374,-0.09062529,0.6441528,0.11451751,0.03327407,0.62646717,0.27752918,0.35330406,0.46251836,-0.4187962,-0.1889587,-0.23560233,0.20609702,0.48552665,-0.1894282,-0.59565324,-0.037269842,0.068657935,0.0637259,0.19320141,-0.11216891,-0.2433123,-0.08082827,-0.13596918,-0.058800172,0.46725282,0.53803927,-0.18579046,-0.1733485,0.32323432,0.47600642,0.042857114,-0.031044075,-0.126942,-0.008960863,-0.6223018,-0.22750689,0.12239369,-0.087976016,0.5297961,-0.28438368,0.13094221,0.87362975,-0.2377836,0.10452182,-0.054511372,-0.041594084,-0.29258233,-0.07283386,-0.2464829,0.22185093,-0.53802204,-0.08756187,-0.36652234,1.1151685,0.23383002,-0.65736246,0.5311556,-0.4629459,0.21346517,-0.17785978,0.7168233,0.58244467,0.38474658,0.21467237,0.895345,-0.4982581,0.16367505,-0.009508073,-0.5857573,0.09001658,-0.081631035,0.1616072,-0.43824625,0.09167042,-0.18853955,0.20646997,0.029168757,0.120077424,-0.5527905,-0.024010537,0.17838079,0.76549643,-0.43100145,0.12514378,0.5772819,0.9987052,0.82964164,0.11305511,1.2105273,0.4285766,-0.3669536,0.18711221,-0.35763228,-0.7492676,0.23616965,0.56972396,0.1690199,0.27346408,-0.13011618,0.002485114,0.2497062,-0.5684846,0.13246875,-0.214693,0.568487,0.036977213,-0.17774297,-0.6172902,-0.04813816,-0.02724316,0.057046443,0.20594959,0.3002136,-0.07956702,0.452749,-0.11262437,0.88094807,0.061277006,0.15157837,-0.088120304,0.59684724,0.37586233,-0.06781479,-0.07495352,0.34376535,0.48567453,-0.13892879,-0.6467497,0.1507364,-0.43350574,-0.3474413,-0.09679258,-0.3208437,0.03132559,0.4031588,-0.13814585,-0.30011037,0.09705881,-0.16865619,0.4333396,-2.3695645,-0.28337628,-0.20646441,0.19013923,-0.30625072,-0.046771754,-0.2195818,-0.58586556,0.35420093,0.3512608,0.53194577,-0.53710985,0.38774696,0.49747106,-0.50768256,-0.15555021,-0.6496745,0.081725895,-0.20277368,0.44178542,0.20720343,-0.2888598,-0.23925811,0.13501759,0.74771667,0.17421146,0.026837623,0.43535516,0.25613657,0.22230951,0.47937012,-8.498629e-05,0.5849057,-0.40600368,-0.23277931,0.24414551,-0.16490065,0.24050456,-0.45486662,0.07729071,0.40866604,-0.56959575,-0.99002105,-0.7308385,-0.40065917,1.1917826,-0.27368268,-0.48590767,0.3825473,0.2477088,0.16001487,0.20287849,0.48034307,-0.11420894,0.15142769,-0.6428686,0.06879719,0.09936895,0.14852186,0.2171217,-0.2373718,-0.44561592,0.7100765,-0.04448593,0.43188632,0.24600172,0.2552677,-0.24079819,-0.47251973,0.09648008,0.746068,0.2474731,0.012504091,-0.02159146,-0.22001915,-0.027532032,-0.2390036,-0.06256596,0.43849257,1.0530957,-0.10865816,-0.18278162,0.3430175,-0.101763956,0.22502577,-0.013925624,-0.30362353,0.00021197896,-0.043365452,0.4859316,0.59152985,-0.078073286,0.34892452,-0.15213874,0.43458807,0.0074348315,-0.48391628,0.8336286,0.72614366,-0.12631328,-0.0146440035,0.4447492,0.40039125,-0.3509318,0.59037894,-0.55787164,-0.49409914,0.61837083,-0.20214875,-0.39895284,-0.08876526,-0.3870784,0.1692837,-0.94500166,0.44725165,-0.5065004,-0.44457304,-0.47597918,-0.124773145,-3.718619,0.27179202,-0.33010355,0.09947357,-0.28981748,0.10461348,0.28776884,-0.77368754,-0.41482535,0.25626704,0.20295365,0.5966998,-0.019801473,0.17056692,-0.19824564,-0.10970638,-0.06569502,0.14627172,-0.09565433,0.22799444,0.050327796,-0.4421291,0.2373172,-0.052399393,-0.47317564,0.27429965,-0.511509,-0.46881643,-0.23306644,-0.6558277,-0.3352656,0.62571096,-0.39077926,0.04203826,-0.20367436,0.23883714,-0.29661414,0.15194647,-0.080854185,0.12854646,0.19527389,-0.14962474,0.011795069,-0.27789423,0.65135837,-0.07464159,0.44121483,0.00034852079,-0.15659997,-0.0711469,0.5992191,0.4188206,-0.18943107,0.92021805,0.3910202,0.030477742,0.16990294,-0.36236218,-0.2827687,-0.6525545,-0.60384744,0.15340413,-0.39487243,-0.48159686,0.020717278,-0.38398576,-0.9035589,0.5824688,-0.022350112,0.22837187,0.011505852,0.07310626,0.22699688,-0.09972965,0.027840294,-0.08336603,-0.12451434,-0.52737105,-0.074455686,-0.60827595,-0.38968804,-0.07973727,0.7449975,-0.37478307,-0.066922545,-0.1650611,-0.22440915,0.13346484,-0.08443295,0.101800285,0.27250987,0.29186025,-0.08892693,-0.7128379,0.5131267,-0.171308,-0.025732726,-0.56890255,0.06990942,0.5209061,-0.86169034,0.5558299,0.48578393,-0.047797408,0.09301893,-0.42962876,-0.30482903,0.005122771,-0.017796978,0.42872682,-0.074914195,-0.54548746,0.52265567,0.30369225,-0.56975955,-0.83418447,0.24084944,-0.06732077,-0.38085213,0.15783486,0.26662055,-0.0295765,-0.10480994,-0.37601873,0.046734314,-0.4792812,0.33898982,0.10490345,0.02962266,0.5118516,-0.061514314,-0.48790312,-0.8527263,-0.17560764,-0.47384867,-0.063601434,0.15453528,0.006680353,-0.21128279,0.022076309,0.09156547,0.44990468,-0.14206848,0.13793884,0.12467641,-0.47794497,0.25238407,0.39045525,0.2788237,-0.42381445,0.63920027,0.16957879,-0.21172793,-0.21516974,0.10940138,0.48197708,0.23486483,0.33116642,-0.14682066,-0.05287485,0.5216043,0.8263097,-0.01012909,0.34279737,0.039548665,-0.09697297,0.5867712,0.15806733,0.24069916,0.10721014,-0.34540856,-0.033656437,0.035292562,0.064400144,0.49062183,0.30822808,0.39914104,0.1734941,-0.25366196,-0.05144235,0.344287,-0.14108741,-1.0685833,0.5972802,0.27239475,0.6823538,0.48965678,0.03925652,-0.27302197,0.5995408,-0.17309372,0.13618286,0.14162947,-0.19892244,-0.44491592,0.75517064,-0.5489112,0.110681914,-0.17537825,-0.14760514,0.021587497,0.15443699,0.20992969,0.76973486,-0.052880198,0.07961547,-0.25202218,-0.14786778,0.038297955,-0.4057093,0.079248995,-0.42659223,-0.31940192,0.5200817,0.16495666,0.27016506,-0.1316204,-0.0825766,0.10371578,-0.084974885,0.31851128,-0.17260952,-0.026481649,0.23938783,-0.671021,-0.1990215,0.4774232,0.25037187,0.22665252,-0.17202614,-0.24858952,0.17425586,-0.34386936,-0.12203153,-0.17550306,-0.6068749,0.103156716,-0.11321265,-0.28734103,0.45422578,-0.21004383,0.28004763,0.22675556,0.055436373,-0.14839081,0.13342057,0.13100894,0.7368552,0.1581228,-0.37904856,-0.4076202,-0.03137323,0.18768673,-0.30652073,0.1485864,-0.34717473,-0.14971416,-0.45796064,0.66247344,-0.17354196,-0.18033655,0.24761201,-0.37989092,-0.22167571,0.4875908,-0.27624056,-0.06251826,0.23525433,-0.14932005,-0.24220932,-0.005788535,-0.48622823,0.18093859,0.31261358,0.11371913,-0.1999345,-0.25903204,-0.1501065,0.6618424,0.031171486,0.21766095,0.028168857,0.07259288,-0.17764594,0.058827013,0.23518805,0.5085675,0.22952473,0.10494272,-0.4324763,-0.41930023,-0.26094684,-0.23402129,-0.058849115,0.08919412,0.06819219,-0.38696957,0.6286816,0.23694186,1.2797041,0.21271408,-0.24779864,0.051211596,0.566415,-0.019735763,0.10059285,-0.33438203,0.95590687,0.6638813,-0.31773537,-0.06945182,-0.6022451,-0.048494205,0.33540615,-0.29195818,-0.05097152,-0.05741166,-0.5400364,-0.65705377,0.38211688,0.27752078,-0.026310617,0.08025815,-0.10336166,-0.13038908,0.23680007,0.5031144,-0.7679234,-0.26296487,0.2165329,0.071736835,0.24928679,0.16520321,-0.24089451,0.5540888,-0.76998883,0.18954976,-0.41064188,0.009412822,-0.36990604,-0.33632484,0.2446866,0.15992731,0.3998282,-0.19674444,-0.53477156,0.052742492,0.4598371,0.130304,0.17614289,0.7143481,-0.3226763,0.034537382,0.22241576,0.6683046,1.2181318,-0.34788188,0.05633557,0.2536279,-0.37819675,-0.53796595,0.46432844,-0.20731778,-0.28755412,-0.27943775,-0.63375765,-0.62142414,0.21162312,0.113871515,0.032690678,0.18851466,-0.52969104,-0.2065347,0.2803055,-0.43058422,-0.2967633,-0.16726267,0.66757745,0.6837606,-0.4353529,-0.37007987,0.15673985,0.30377117,-0.333006,-0.5841068,-0.17784084,-0.12722059,0.4424578,0.26637825,-0.23906334,-0.10659912,0.19366618,-0.40284276,0.11048754,0.23794878,-0.38320205,0.17160685,-0.15065464,0.010932659,0.7265119,-0.25549078,0.1220207,-0.87194085,-0.24503107,-1.0066893,-0.3248099,0.6775792,0.1524789,-0.019027626,-0.539041,0.010198821,-0.027886264,0.08792826,-0.011280924,-0.48928508,0.30392298,0.09196284,0.6369234,-0.11099684,-0.96426296,-0.022569729,0.17612892,-0.18129373,-0.5826864,0.49443483,-0.06195947,0.9736662,-0.003570035,-0.19504811,0.06236954,-0.5397945,0.17706896,-0.34432396,-0.23787618,-0.80878067,0.094067164 +258,0.3652087,-0.23442292,-0.5348655,0.018204862,-0.19373399,-0.095366605,-0.19531824,0.5103989,0.3149485,-0.08971003,-0.043111682,0.1189774,-0.1432772,0.35011816,-0.01449533,-0.4950153,0.051096145,0.17639181,-0.52529466,0.6285484,-0.39726683,0.06686967,-0.29229325,0.45087245,0.32428077,0.2930597,-0.064492464,0.10126387,0.010499961,-0.11489738,-0.0032843442,0.11589641,-0.6696314,0.17214021,-0.05436933,-0.21698108,0.048122324,-0.4754116,-0.3589217,-0.8828299,0.28036198,-0.59498024,0.5900574,-0.12132221,-0.25287932,0.31361362,-0.02882464,0.45111004,-0.4208633,-0.13060531,0.10634732,-0.17816637,-0.2563089,-0.06213898,-0.033886578,-0.2246935,-0.6055099,-0.058441933,-0.3200798,0.03611245,-0.15953766,0.083591655,-0.43486947,-0.041847523,0.04812628,0.41068083,-0.45920706,0.25366485,0.16226146,0.04152717,-0.101165876,-0.71138984,0.047302835,-0.21689121,0.29852393,-0.040670175,-0.3039694,0.33839032,0.22821252,0.2768512,0.010166654,-0.100600995,-0.23252344,0.06546534,-0.053530134,0.5247417,-0.080174014,-0.27491295,-0.11048489,0.12190595,0.12884091,0.21418467,0.0906331,-0.08369929,-0.23843127,0.08786818,-0.18290994,0.4467753,0.49521524,-0.2889992,-0.20993812,0.41306514,0.5860567,0.3319996,-0.085990414,0.01586296,0.05235376,-0.5397567,-0.17273913,-0.011164954,-0.23278816,0.40815455,-0.12868798,0.20016864,0.6655397,-0.22310919,-0.26662177,0.0858869,0.21656558,0.0063782153,-0.35242373,-0.36899203,0.31705776,-0.53176415,0.24372035,-0.08002814,0.5498018,0.3644357,-0.5078967,0.27244136,-0.5043175,0.13001275,-0.1398425,0.49073407,0.9205802,0.53438085,0.40626657,0.8218013,-0.39643887,0.17163633,-0.0617212,-0.3097113,0.16409232,-0.22678334,-0.15050022,-0.53268194,-0.0485932,-0.10914434,-0.16743194,0.25357082,0.1047321,-0.47983977,-0.07374007,0.073576175,0.7042984,-0.16575176,0.009504855,0.78656924,1.0359694,1.1612632,0.05027639,1.1038489,0.22591528,-0.18593293,0.17458937,-0.19373196,-0.833896,0.22505309,0.20302072,-0.24434958,0.2283029,0.21961021,-0.19868104,0.40388596,-0.48069778,-0.09445564,-0.07098695,0.32028043,0.1987701,-0.103710376,-0.50437725,-0.30936944,-0.21532935,0.06468174,0.04428263,0.34288305,-0.23489965,0.2834104,0.022167504,1.4165815,0.009645649,-0.009341604,0.08326931,0.6349932,0.21787363,-0.32560748,-0.29978284,0.28697455,0.5899574,0.26138407,-0.5342271,0.07385574,-0.16298215,-0.32183763,-0.13247806,-0.28624073,0.019976946,-0.014573427,-0.15904742,-0.3137612,-0.06677823,-0.09917832,0.61808085,-2.8178084,-0.014019875,-0.022108708,0.346697,-0.1581614,-0.29133484,-0.14371373,-0.5481285,0.322351,0.23447484,0.58546245,-0.62616754,0.38902003,0.31196785,-0.735784,-0.022319267,-0.6597098,-0.17996421,0.07696013,0.33275598,0.008498586,-0.03811894,0.024988843,0.11530486,0.58422387,0.16481128,0.050577547,0.33429495,0.23024175,0.031836793,0.53726333,-0.010764835,0.5542154,-0.1537058,-0.15527914,0.11607463,-0.3168289,0.36503348,-0.22117744,0.09273055,0.5768445,-0.37755534,-0.98690075,-0.5702665,0.24730195,1.3353051,-0.24600077,-0.33282253,0.17380379,-0.6437981,-0.24944574,-0.16451095,0.2993523,-0.15587504,-0.28458104,-0.648826,-0.047214203,0.055688437,0.24115135,0.011962558,-0.07560832,-0.44765523,0.5099572,-0.16436537,0.36160988,0.35343936,0.18010794,-0.099577576,-0.48167202,-0.036378786,0.6692326,0.38588268,0.07537331,-0.2804715,-0.16910301,-0.31509256,-0.021635102,0.06488229,0.4430601,0.50783336,-0.25443652,0.17311676,0.25043133,-0.11651712,0.072712295,-0.100052744,-0.29597914,-0.17439936,-0.009818488,0.5063068,0.84368557,-0.018880973,0.43416166,0.041766856,0.17261368,0.10067439,-0.56844246,0.4739235,0.9165708,-0.2736403,-0.27345437,0.40989855,0.37930584,-0.12358317,0.46674716,-0.38413817,-0.10095091,0.30574992,-0.085548684,-0.22274496,0.007984872,-0.25495422,0.030804487,-0.58531344,0.2991429,-0.24129549,-0.49782997,-0.55783355,0.042170856,-3.3535814,0.113357425,-0.33850092,-0.1754365,-0.054121934,-0.111617655,0.2072436,-0.65857804,-0.567633,0.23107591,0.17274202,0.7231988,-0.20086578,-0.10723831,-0.2025698,-0.45497674,-0.550504,0.13510485,0.21087827,0.3265611,0.18239564,-0.46439424,0.0020833658,-0.06821599,-0.37763822,-0.07908039,-0.4843659,-0.24141961,-0.090848655,-0.5811922,-0.29241535,0.6926843,-0.18146229,0.030508349,-0.26401392,-0.00656696,-0.046746586,0.25114664,-0.010968343,0.03566351,0.11080685,-0.09148361,0.07711856,-0.15487891,0.164628,0.00866209,0.32540095,0.13272792,-0.030182637,0.08277989,0.54237723,0.6813609,-0.23154536,1.0472106,0.6203194,-0.20194489,0.160379,-0.15336198,-0.26683024,-0.372349,-0.3036256,-0.045861088,-0.4756576,-0.27496234,0.109207675,-0.3931518,-0.7667485,0.55670744,-0.10780643,0.11810304,0.12029752,0.29042184,0.6380955,-0.17271854,0.12794426,-0.017390665,-0.10984507,-0.46146232,-0.12278307,-0.4332712,-0.48950964,0.17745532,1.0140779,-0.5305668,0.16499402,0.09818793,-0.4577151,0.037967887,0.1392433,-0.15902947,0.14423272,0.3414583,-0.01670296,-0.55274147,0.24037196,-0.21839362,-0.0076906155,-0.82492566,0.2869187,0.5007855,-0.66877025,0.5125312,0.21511751,-0.09295834,-0.13831434,-0.59353405,-0.26415026,-0.08970647,-0.23858224,0.3780535,0.31398386,-0.89589435,0.4188945,0.23886248,-0.31525886,-0.61984354,0.45228228,-0.027981011,-0.14272651,-0.009953012,0.29051572,0.17229149,0.1065478,-0.2814328,0.24994506,-0.3452052,0.20374492,0.098099194,-0.16280094,0.08888002,-0.13012801,-0.016924767,-0.68413776,-0.093358465,-0.4178718,-0.31300658,0.30847076,0.08266883,0.099677615,-0.010866776,0.3464424,0.31550997,-0.2498428,0.07637584,-0.1333653,-0.41047558,0.38731006,0.49779242,0.49167296,-0.34874865,0.5875931,0.075192995,-0.18414268,0.071355805,-0.0070902016,0.31349328,-0.0029591413,0.41995335,0.20246162,-0.19496359,-0.026808836,0.7010345,0.1232802,0.4911273,-0.1092548,-0.07352627,0.11456403,0.117580816,0.23479876,0.1642687,-0.5351149,0.13566682,-0.18836318,0.28041875,0.47139645,0.24830844,0.19723752,-0.10038821,-0.2560037,-0.1265203,-0.034434136,0.16649124,-1.5273668,0.4116213,0.16619569,0.81098104,0.35401216,0.072139576,-0.09588332,0.60740215,0.026898466,0.11197933,0.26410565,0.19155718,-0.4768758,0.42223275,-0.845107,0.6696872,0.058882676,-0.00070030644,0.16746393,-0.0511309,0.5065916,0.707682,-0.22660533,-0.04498678,-0.035134874,-0.30072802,0.015034641,-0.31993178,0.13150743,-0.57552725,-0.2777559,0.52144426,0.5781769,0.3607094,-0.17014709,-0.0047427807,-0.030618612,-0.15806715,0.1302213,-0.032695808,-0.054107364,0.005908833,-0.5978419,-0.14799923,0.40516466,-0.27495673,0.097317606,-0.01907113,-0.01974978,0.22564822,-0.14909135,-0.014114151,-0.10002693,-0.74559754,-0.096374944,-0.27092832,-0.33308622,0.4960763,-0.02531964,0.21007864,0.23532456,0.09832696,-0.30240938,0.4534553,0.009341955,0.750407,-0.10067822,-0.11586,-0.3998832,0.1702342,0.14760682,-0.08977736,0.0915504,-0.3086454,0.10694997,-0.49468833,0.40781912,-0.102358155,-0.33596104,-0.07131934,-0.071003616,0.039879,0.51625216,-0.14952536,-0.12517129,-0.068237,-0.30140895,-0.33946612,-0.4003881,-0.24304236,0.060143646,0.33396637,-0.09938639,-0.062465176,-0.23733975,-0.060359873,0.41016564,0.07397599,0.2688569,0.1424298,0.07523679,-0.25414294,-0.21301804,0.14287657,0.5807533,-0.23136641,-0.2940903,-0.517752,-0.5316387,-0.38370463,0.20971686,-0.022188187,0.42559814,-0.026828457,-0.14280957,0.6111209,0.15211037,1.2016754,-0.0637656,-0.37144753,0.10891362,0.65172946,-0.104092315,-0.08915232,-0.31870696,0.84707195,0.46029332,-0.24049753,-0.12205179,-0.48469198,-0.25605196,0.2919341,-0.20429268,-0.05848109,0.025960317,-0.5126518,-0.083352566,0.3156358,0.19042088,0.20970334,-0.119158454,0.08593201,0.42522103,0.15660875,0.27304098,-0.4217609,-0.11003058,0.2915022,0.26574317,0.05320048,0.20397839,-0.4114151,0.33487386,-0.33561182,0.025746047,-0.12566197,0.23265114,-0.13998118,-0.30694968,0.28131297,0.20559731,0.5313253,-0.38678044,-0.34623832,-0.2682434,0.49218976,0.27046835,0.17949232,0.52726245,-0.2681176,-0.09117411,-0.072411165,0.43123415,0.7998492,-0.18870093,0.079828486,0.30667776,-0.2893322,-0.56166494,0.31607172,-0.27567628,0.152582,0.03864277,-0.0909526,-0.66360813,0.23659304,0.16535799,0.17987493,0.1396654,-0.6611573,-0.196591,0.12765104,-0.22413749,-0.07624184,-0.31728423,0.12568805,0.7003423,-0.21210936,-0.48312047,0.10462909,0.24378219,-0.010030884,-0.47426128,-0.13276035,-0.3450092,0.1924785,-0.018750777,-0.42692512,-0.32790515,-0.042246383,-0.4765968,-0.09912276,0.002536549,-0.2135658,0.1099621,-0.26090586,0.067277506,0.8050553,-0.39263624,0.3214267,-0.47131756,-0.43554825,-0.76055914,-0.33353895,0.3627896,0.30976298,0.036402617,-0.74075276,0.05322349,-0.21956946,-0.21875522,-0.055897553,-0.4897311,0.52716887,0.04663606,0.060394563,0.010825955,-0.9164802,0.21213315,0.13378583,-0.24819675,-0.53015417,0.52701104,-0.112574026,0.8323928,0.18768147,0.16116211,-0.022052169,-0.2113575,0.01969917,-0.24127358,-0.23309748,-0.68310136,-0.101080365 +259,0.48533392,-0.3152397,-0.39702561,-0.20647535,-0.10407134,0.09691511,-0.26115182,0.35204178,0.100342646,-0.42366344,-0.12352194,-0.15712555,0.06950267,0.40010875,-0.1795877,-0.5839318,0.015689058,0.1542137,-0.4225873,0.4629473,-0.4779288,0.21072838,-0.079196,0.5125975,0.17414734,0.34086213,0.17201622,0.0020573225,-0.21353552,-0.342095,-0.046678867,0.14763185,-0.6078197,0.10183751,-0.0060113627,-0.3296408,-0.020663708,-0.5363735,-0.3938146,-0.7222734,0.35453343,-1.0316814,0.7010887,0.02092333,-0.30648082,0.2802651,0.19015288,0.46071747,-0.337461,0.077841595,0.32007787,-0.14795354,-0.014256222,-0.2564129,-0.09921867,-0.49415722,-0.5256009,-0.085576005,-0.38397598,-0.3042533,-0.31676483,0.11396126,-0.2539893,0.06835738,-0.008700149,0.43192407,-0.56960994,-0.00957489,0.119510785,-0.22138867,0.4554724,-0.5021564,-0.21262681,-0.030481616,0.37020883,-0.13610923,-0.13639964,0.39836407,0.22842751,0.41374472,-0.03441692,-0.10169924,-0.22045572,-0.08044652,0.21428585,0.5307401,-0.21237527,-0.53936476,-0.19689575,-0.10505847,0.21814655,0.1989222,0.13161059,-0.22515701,-0.009093189,0.25856942,-0.21232997,0.36954716,0.46630684,-0.3913906,-0.11654378,0.26132727,0.543066,0.071802095,-0.15712722,-0.05975017,0.12050117,-0.49120983,-0.27617136,0.040930755,-0.29051498,0.5698063,-0.067246914,0.32397795,0.76468974,-0.19295354,0.106459394,-0.09486885,0.024641871,-0.17356072,-0.2193211,-0.3936968,0.27416003,-0.41204724,0.18030705,-0.25931033,0.7419402,0.15360582,-0.66545266,0.40578386,-0.5294769,0.012773441,-0.20711628,0.39466712,0.5499425,0.37834436,0.426063,0.769239,-0.5554841,0.010056214,0.0113150645,-0.32028097,0.13750152,-0.27867055,0.05711043,-0.5953418,0.05350381,0.047961526,-0.14203951,0.14186658,0.48806018,-0.56445843,0.06668649,0.1367671,0.9293172,-0.3297071,0.1136652,0.73379725,1.1615506,0.9082853,0.016310768,1.1122543,0.40425238,-0.34820014,0.18783858,-0.19799049,-0.60008997,0.28630528,0.48244426,-0.131183,0.25811893,0.097651854,-0.033356603,0.53621316,-0.61944115,0.18004696,-0.1035731,0.12847318,0.071034424,-0.22527646,-0.50849676,-0.07245864,-0.021672918,-0.11548244,0.20899148,0.2589279,-0.26119128,0.49490428,-0.049483422,1.8124746,-0.07272587,0.08161432,-0.025244597,0.59585947,0.2206078,-0.07830707,-0.060357828,0.35623732,0.47891766,0.12962048,-0.62127364,0.1883492,-0.19973645,-0.37784114,-0.19785938,-0.3759515,-0.0044885534,0.0026478043,-0.34460062,-0.1396713,-0.016142802,-0.1724811,0.38513774,-2.704485,-0.28298596,-0.16092953,0.41062808,-0.30909246,-0.32878283,-0.069541045,-0.40795025,0.62971574,0.31469133,0.44761357,-0.56451315,0.48373535,0.5206321,-0.43152156,-0.16686235,-0.5572585,-0.1859564,-0.059797317,0.38696316,0.0130323935,-0.23265119,-0.10041373,0.3164962,0.4432993,0.10871492,0.2142602,0.15587743,0.39495203,-0.033648513,0.6577378,0.06130327,0.643787,-0.053004093,-0.24295007,0.3347587,-0.28380612,0.119060464,-0.15588893,0.16337515,0.44229725,-0.37975183,-0.9189648,-0.8403378,-0.17421402,0.96385753,-0.23877989,-0.5888039,0.14601086,-0.14644451,-0.3851414,0.08292818,0.3404573,-0.1497501,0.009053956,-0.8805309,0.104953416,-0.11721814,0.07076205,0.057820946,-0.006014713,-0.6174016,0.6719594,-0.117332235,0.50050205,0.29102087,0.19318767,-0.2121254,-0.40046573,0.10023689,0.97450954,0.4255428,0.11139844,-0.16624245,-0.16639212,-0.30455917,-0.20320895,0.009630646,0.6585403,0.7088284,0.004696465,0.10723888,0.20921178,-0.20461978,-0.012829519,-0.12670092,-0.4249546,-0.018467924,0.04032282,0.6801533,0.53727084,-0.13910042,0.5386651,-0.15688658,0.39807191,-0.09790707,-0.43141767,0.48347074,1.112021,-0.13722368,-0.28067306,0.64917177,0.44452238,-0.30973434,0.3930948,-0.73960066,-0.2754123,0.45889074,-0.2260053,-0.48245642,0.19480637,-0.22486556,0.2330838,-0.9777584,0.29382804,-0.22279455,-0.44422475,-0.6025969,-0.30797893,-3.7129061,0.13785283,-0.30039325,-0.20915113,-0.10747067,-0.26214057,0.3640236,-0.74768215,-0.50212204,0.15488064,-0.07798997,0.8537013,-0.043915052,0.14345859,-0.31119037,-0.09122206,-0.13595624,0.1432477,0.1729686,0.3714791,0.07137675,-0.46980765,0.047355566,-0.026832027,-0.537574,0.004553497,-0.577129,-0.5415481,-0.14941461,-0.5736976,-0.21914117,0.7177014,-0.2880151,0.111040235,-0.2836263,0.10160826,-0.25875527,0.36899105,0.1338403,0.14910297,0.10651149,-0.05854204,0.1507016,-0.41229326,0.25476578,0.056375653,0.26196852,0.2652325,-0.13395832,0.09976256,0.43367842,0.54714453,-0.004424442,0.682536,0.5036458,-0.16567257,0.12287675,-0.469069,-0.3693827,-0.45897427,-0.55962133,0.0041512526,-0.40504903,-0.53145224,-0.22306086,-0.488475,-0.79794925,0.6264917,0.11070399,0.11807965,-0.08670203,0.27389777,0.4278802,-0.19570804,-0.22648157,-0.009084365,-0.134287,-0.6508959,-0.14655766,-0.6022183,-0.52636373,0.10058653,0.834569,-0.14828059,-0.06980692,0.15815414,-0.32575962,0.07267355,0.09297855,-0.0118475305,0.012570381,0.4678557,-0.024027884,-0.7132344,0.55444485,-0.18883443,-0.20215209,-0.8185113,0.21552299,0.6346875,-0.5062386,0.62181246,0.4333896,0.09676768,-0.14719748,-0.3614281,-0.11010433,0.019738605,-0.1930827,0.43225044,0.12474311,-0.71525514,0.4693618,0.3912809,-0.28616068,-0.70346075,0.60302556,-0.04844135,-0.34227696,0.05380002,0.29087836,0.11788695,-0.054426823,-0.18372269,0.4037362,-0.4444196,0.33941838,0.28328815,-0.010232717,0.5228032,-0.14058845,-0.15239814,-0.79362327,-0.09540639,-0.5562112,-0.33440542,0.15935037,0.0778093,0.102214575,0.3348957,0.0450742,0.44468123,-0.4569393,0.07198057,-0.046927612,-0.27789822,0.31750497,0.4285655,0.385111,-0.49778238,0.62853134,0.040330708,-0.07283195,-0.01880739,0.0010378702,0.49811387,0.12090137,0.4232765,-0.10200774,-0.19103725,0.29587653,0.70171726,0.22982578,0.53914505,0.2353375,-0.21112797,0.13835149,0.1826648,0.14715698,0.074747756,-0.5616306,0.11250595,-0.090390615,0.15137374,0.44566318,0.27467695,0.3139109,0.018594315,-0.3355143,0.10417168,0.13359985,-0.14460431,-1.2468144,0.44339395,0.20612851,0.78910446,0.32699853,-0.06264687,0.11796174,0.7517203,-0.22081992,-0.0073435777,0.2100778,0.023072269,-0.45382616,0.56228,-0.6732518,0.3540733,0.07373401,-0.07054092,-0.10676629,-0.0027779,0.41550428,0.679351,-0.14348982,0.17891358,-0.020111999,-0.32569098,0.23941872,-0.35315236,0.07433411,-0.4865994,-0.30692318,0.61979574,0.54168576,0.40641567,-0.14929399,-0.070868775,0.123606406,-0.113720655,0.16229203,0.22982712,0.14491208,0.08355592,-0.8010823,-0.37608972,0.46331745,-0.10323829,0.21935551,-0.09426843,-0.21534689,0.27444795,-0.19505861,-0.011520548,0.06994443,-0.68798494,0.039331112,-0.3563189,-0.41416305,0.6158206,-0.0057896078,0.12200721,0.15025662,0.029406,0.00016817024,0.31413195,0.10196904,0.82372105,0.08430882,-0.23617007,-0.4525686,-0.029494891,0.14636949,-0.23754866,-0.02848357,-0.3953154,0.12170421,-0.58233446,0.4825239,-0.006830871,-0.3035967,0.26910558,-0.1686105,0.0020453185,0.5536147,-0.29048088,-0.07998933,0.048718452,-0.22124374,-0.25499743,-0.31620508,-0.2235954,0.18974172,0.08499809,0.12528892,-0.06797198,-0.07103269,-0.3360394,0.60559714,0.04605606,0.46707305,0.5792758,-0.045078363,-0.31353244,-0.33114928,0.08643602,0.4789343,-0.19708337,-0.14987949,-0.37663966,-0.69430983,-0.4131322,0.30368757,-0.12830779,0.36630815,0.114140764,-0.2714757,0.6374654,-0.088746496,1.1578454,0.043295227,-0.49895218,0.10591813,0.654463,-0.05446013,-0.0125454,-0.3532841,0.94849676,0.5943828,-0.08080639,-0.03185563,-0.46169916,-0.08563285,0.31174418,-0.25931245,-0.14418952,-0.13941897,-0.6992674,-0.3740973,0.24613206,0.32508722,0.27164048,-0.008472272,0.2015437,0.23319581,0.024818351,0.3482968,-0.535441,-0.30818638,0.46811137,0.24530064,-0.094001316,0.122477494,-0.43153557,0.42538086,-0.40218258,0.003582069,-0.4734625,0.12987365,-0.032863777,-0.25748035,0.25497445,0.045794435,0.20894213,-0.3123419,-0.3264238,-0.07106347,0.50776404,0.23621681,0.0885051,0.6128027,-0.24807708,0.08283209,0.063491836,0.5212975,1.1586984,-0.24937336,0.18660071,0.45971516,-0.39547157,-0.6247563,0.3271759,-0.21628264,0.20388277,0.014966266,-0.31313428,-0.61093664,0.34176257,0.1503956,-0.17675869,-0.029504564,-0.5493442,-0.31523377,0.3560892,-0.26977184,-0.18107046,-0.2935302,0.03911992,0.56996626,-0.2938958,-0.1755995,0.10636628,0.34834975,-0.16542184,-0.47153807,-0.11828249,-0.43365917,0.38548508,0.11552056,-0.39349982,-0.07578923,-0.0040045423,-0.36316708,0.17790715,0.14468919,-0.4528317,0.067244336,-0.33488682,-0.123302005,0.9152657,-0.11211767,0.048723094,-0.71914244,-0.32872397,-0.8567814,-0.330051,0.5002517,0.045427036,-0.013112575,-0.5554563,0.018660758,-0.12684412,-0.074999645,-0.16997449,-0.49540028,0.3613808,0.13233952,0.5977305,-0.075703554,-0.68956596,0.07370668,0.08994125,-0.3014893,-0.6352066,0.667511,-0.07962036,0.89189726,-0.01437472,0.08835072,0.24204323,-0.4815201,-0.06933276,-0.24390697,-0.31511095,-0.8408853,0.05958763 +260,0.43126258,-0.13585809,-0.4257569,0.06335115,-0.2550286,0.0507999,-0.30744174,0.3742226,0.15388899,-0.47740784,-0.20368789,-0.060720094,-0.048453305,0.32659304,-0.18435542,-0.4657543,-0.013303502,0.20415924,-0.38985696,0.5021861,-0.5273087,0.38717955,0.1253645,0.475502,0.41756445,0.21421733,0.22889256,-0.0029554884,-0.45160332,-0.34393084,-0.107311316,0.14259484,-0.64444184,0.12412182,-0.2409882,-0.56187016,0.013014157,-0.524972,-0.23896858,-0.6628919,0.35480016,-0.78176427,0.41611046,-0.06567789,-0.19974117,0.45904216,0.02436769,0.31022868,-0.1176329,0.036724616,0.20860028,-0.1982987,-0.061900113,-0.14368324,-0.20349471,-0.35449514,-0.5721003,0.10247755,-0.45754883,-0.076476365,-0.3195034,0.25329033,-0.24502137,0.040539138,0.019861178,0.40793067,-0.47531232,-0.028432036,-0.061410222,-0.0485298,0.13541082,-0.644068,-0.2832163,-0.18128611,0.22110115,-0.16151595,-0.019498121,0.20607704,0.27527517,0.46238092,0.11352547,-0.087991245,-0.5152248,-0.11513165,0.11204159,0.5807006,-0.15339717,-0.39869493,-0.2671461,-0.20604692,0.21790355,0.09902401,0.08233908,-0.22287239,-0.0027082243,0.077191345,-0.36759064,0.33908463,0.46012646,-0.39944613,-0.19936317,0.24717264,0.50026387,0.1526901,-0.26832741,-0.08724017,-0.043448463,-0.4216946,-0.054679092,0.027709298,-0.25631866,0.58625495,-0.14963718,0.26380542,0.59409904,-0.29080388,0.14115636,-0.046120502,0.14101201,-0.006006805,-0.23994645,-0.40607262,0.30115998,-0.45875162,0.086521946,-0.2492972,0.76870257,0.02945532,-0.6189358,0.3963713,-0.45135963,0.10356086,-0.12460669,0.47024447,0.6592901,0.30212355,0.28202254,0.53877777,-0.33167437,0.09541998,-0.16848901,-0.20820777,-0.07867361,-0.11348848,0.007904847,-0.40196773,0.050580185,-0.007926325,-0.043579835,0.040303692,0.7109773,-0.41460067,-0.021345044,0.2506524,0.7907918,-0.38380817,-0.06387708,0.79557383,1.1806389,1.110948,0.03685769,1.0977042,0.37282032,-0.26745334,-0.10318283,-0.2681317,-0.50866944,0.31717762,0.29652315,-0.26391342,0.25547928,0.2184426,-0.10325292,0.47421226,-0.44713384,-0.06004735,-0.16872889,0.06287171,-0.012704571,0.11454797,-0.46747875,-0.27389514,0.1180649,0.019795299,0.11826169,0.23268357,-0.3667205,0.4341142,0.0708014,1.5804235,-0.14948195,-0.029530885,0.033958793,0.53194064,0.12674962,-0.13947502,-0.0383143,0.19618894,0.30679837,-0.044149138,-0.6548861,0.06342946,-0.2116251,-0.5324234,-0.20633025,-0.18436813,-0.09156709,-0.0003181696,-0.5010014,-0.18205126,-0.07329561,-0.3830194,0.4078006,-2.458764,-0.18443775,-0.020528989,0.29938444,-0.1825541,-0.49900335,-0.11967387,-0.50502324,0.5354509,0.2905789,0.43936878,-0.56290114,0.34056744,0.39548805,-0.35089272,-0.20928608,-0.68162763,-0.14241862,-0.13186112,0.37717506,-0.09067767,-0.10936446,-0.09205224,0.026090177,0.5903366,-0.057636,0.21231559,0.26364908,0.4160177,-0.011875021,0.56044525,0.23000498,0.5226783,-0.240719,-0.24397913,0.4061809,-0.39033872,0.15766805,-0.20631899,0.2174684,0.41392252,-0.51856595,-0.8960898,-0.77594745,-0.24922088,1.1884679,-0.15970501,-0.47124654,0.1985597,-0.076938346,-0.20918499,0.05728546,0.35811523,-0.14282222,-0.1260794,-0.7944854,0.016886806,-0.079173714,0.13046417,0.029693643,0.14076042,-0.45233658,0.5973742,-0.13035342,0.35395315,0.39181045,0.29999033,-0.23926881,-0.38570756,0.113088466,1.046976,0.3930958,0.14578763,-0.3685561,-0.19067469,-0.2968825,-0.09913109,0.06915825,0.24549204,0.63675326,-0.029408865,0.20056792,0.21301848,-0.032167796,0.09699217,-0.17447345,-0.3596055,-0.11110418,0.12529753,0.6011569,0.57282627,0.0016348601,0.53681254,-0.19497925,0.28483087,-0.18208247,-0.41196075,0.46442646,1.041605,-0.21848182,-0.19060351,0.716134,0.5223007,-0.16834226,0.5383269,-0.7129045,-0.47654533,0.38111547,-0.11920455,-0.328472,0.16000737,-0.36868033,0.098183446,-0.86466515,0.22688879,-0.2214639,-0.4050639,-0.6750539,-0.29639927,-2.7767303,0.12930913,-0.19919838,-0.18702379,-0.05865179,-0.3113828,0.2939035,-0.5827297,-0.4760896,0.15812927,0.10859215,0.6987244,0.05359506,0.17685941,-0.181708,-0.2828048,-0.32598445,0.13393204,0.1947907,0.34483558,0.07808932,-0.5239571,0.16495495,-0.21489707,-0.30629,-0.017990053,-0.59646714,-0.39716607,-0.093714386,-0.43733463,-0.38160947,0.5562106,-0.49530783,0.1121449,-0.19906431,-0.049981836,-0.22148523,0.4490526,0.17838396,0.05570543,0.11274707,-0.013018344,0.16458158,-0.31229782,0.20478445,0.13443764,0.06883461,0.41288653,-0.0928582,0.11140355,0.32279414,0.5701303,-0.06662051,0.8664368,0.49729055,-0.14247103,0.31461176,-0.30021894,-0.2373538,-0.6507797,-0.35816357,-0.1285874,-0.34485185,-0.508814,-0.17814173,-0.3747298,-0.88745046,0.59393233,0.02022963,0.18799908,-0.028476708,0.4341429,0.36450827,-0.17539981,-0.117815815,-0.044902515,0.05141622,-0.49842772,-0.46539825,-0.7615461,-0.5481003,-0.060735624,0.9093951,-0.08499859,0.0733472,0.24093339,-0.2357723,0.03342007,0.17985658,-0.0044490416,0.010802575,0.57218176,0.029189937,-0.7635409,0.426118,-0.11194324,-0.018159024,-0.6061068,0.24477895,0.59276944,-0.6555846,0.3838157,0.5379479,0.18944512,0.097389,-0.43636557,-0.15742804,-0.029130781,-0.24798483,0.5717595,0.22454108,-0.75757676,0.51970226,0.29370472,-0.22237825,-0.7850094,0.5037407,0.018402208,-0.2800906,-0.036425155,0.35448366,0.26426965,0.03095835,-0.29429168,0.14749955,-0.46055585,0.3624359,0.19254753,-0.07822461,0.43824655,-0.34936836,-0.14798452,-0.69170153,0.07036751,-0.42848822,-0.37779087,-0.022494245,0.10657445,0.045878623,0.41018718,0.070658244,0.38063747,-0.36449412,0.056291714,-0.22173385,-0.17142281,0.22224538,0.48787642,0.47846004,-0.33232757,0.57911104,0.03318872,-0.25667673,-0.18483159,-0.09593385,0.4109781,0.016505377,0.36034492,0.08143564,-0.24536844,0.23620349,0.530935,0.36933786,0.5485528,-0.04462653,-0.31803066,0.26451492,0.10304349,0.15514094,-0.021231651,-0.44715548,-0.04389047,-0.26074445,0.19844776,0.54377455,0.17140321,0.40928763,-0.18011554,-0.12152607,0.18812567,-0.013264561,-0.09232447,-1.0830518,0.28588396,0.15089403,0.6756732,0.6828306,-0.15600489,0.13145618,0.5239626,-0.31780446,-0.013165257,0.27708334,0.1527105,-0.4023038,0.56570035,-0.69913065,0.3472156,-0.19185546,0.05885361,0.051548615,-0.1265309,0.45902306,0.6872266,-0.11475078,0.14201806,0.11117433,-0.33211413,0.038617577,-0.23370437,0.28640842,-0.5904075,-0.12604566,0.7681118,0.45737177,0.25975296,-0.10525449,-0.020780435,0.030893628,-0.13941264,0.1544198,0.016793652,0.08442474,-0.001874272,-0.5893938,-0.19947465,0.5627163,-0.012686332,0.07876971,0.1373537,-0.3489055,0.20557338,-0.06762676,-0.07237436,0.095301054,-0.61764896,-0.07125201,-0.31373593,-0.33619753,0.397351,-0.09434452,0.2833006,0.07230184,0.13538708,-0.32290548,0.17484656,0.35122678,0.68189424,0.061057623,-0.08613621,-0.27865866,0.14411655,0.34094766,-0.18366311,-0.18878946,-0.30763498,0.05557784,-0.74346584,0.4772175,-0.21118923,-0.099445485,0.1445288,-0.16919571,-0.029838638,0.5827498,0.0030842305,-0.013228234,0.07943283,0.040567648,-0.3330793,-0.1717867,-0.20528507,0.21484931,0.112337306,-0.12462615,-0.15473457,-0.14636944,-0.12066572,0.47746032,-0.027125878,0.3646738,0.3749239,0.019361693,-0.39651874,-0.12591368,0.062291715,0.45725223,-0.08126623,-0.13388042,-0.3203953,-0.4365261,-0.31890836,0.2629835,-0.2174677,0.21566884,0.11795187,-0.17035185,0.8346259,0.15504217,1.1818173,0.13269947,-0.43384492,0.18610962,0.44136757,-0.18752636,0.118563734,-0.39174575,0.94848365,0.4823101,-0.16362663,-0.18257561,-0.44992816,-0.16210744,0.27449158,-0.24670334,-0.30003765,-0.19317304,-0.5915625,-0.31806108,0.21307701,0.25918466,-0.06694648,-0.017112194,0.21997099,0.32686818,0.06714358,0.5871589,-0.47186106,-0.19739914,0.3691806,0.31906167,-0.15938321,0.24092104,-0.42572257,0.49490088,-0.60138327,-0.06905389,-0.34952697,0.119871214,-0.24745147,-0.35414702,0.25524154,0.2659945,0.3101938,-0.29552677,-0.3902588,-0.29511863,0.49690476,0.05319983,0.1654226,0.5050272,-0.2949602,0.01068303,-0.2080835,0.34826916,1.1596997,-0.39844388,0.0759656,0.41052943,-0.21861748,-0.5779503,0.28033364,-0.47762877,0.057766087,0.1265219,-0.35176697,-0.7224608,0.31903246,0.09019544,-0.10927277,0.17181908,-0.4752097,-0.0036741814,0.15710425,-0.11323618,-0.20571221,-0.20047964,0.07624592,0.604118,-0.3983985,-0.36583596,-0.057737943,0.40241414,-0.21814266,-0.5700075,-0.063190274,-0.43687853,0.45748994,0.21196182,-0.23813565,-0.1979235,0.08354017,-0.32345468,-0.08708436,0.24722879,-0.33267602,0.046953846,-0.42980173,0.11706385,0.8398001,0.061413623,0.24224739,-0.58429474,-0.35030687,-0.8670737,-0.36248964,0.41362318,0.20316945,0.059080463,-0.561016,0.06274257,-0.2666556,-0.13404371,0.062445972,-0.64167076,0.46064875,0.21772909,0.4417364,-0.14172767,-0.61113304,-0.040042855,0.15684147,-0.24428567,-0.43143144,0.45454037,-0.0008990049,0.9542457,0.15076715,0.05983252,0.25155714,-0.51944965,0.07338061,-0.2321234,-0.22474174,-0.6803742,-0.049368296 +261,0.4194357,-0.047383368,-0.59614724,-0.18387966,-0.42945597,-0.081390694,-0.24508373,0.061316382,0.32383463,-0.22671212,-0.093355276,-0.1604021,0.059323873,0.3726677,-0.12284392,-0.91276425,0.07365666,0.12806447,-0.74158174,0.42342937,-0.4297429,0.6358444,0.17878039,0.46757922,-0.08201424,0.21679695,0.23789589,-0.101647206,-0.043170977,-0.387614,-0.19229154,0.11395293,-0.95031637,0.36662543,-0.02942619,-0.39525998,0.093988575,-0.4634305,-0.17916463,-0.66726404,0.16599865,-0.66054314,0.7759808,-0.038386002,-0.33850646,-0.13106884,0.11496299,0.106652655,-0.17911176,0.2403115,0.30578786,-0.49137148,-0.04309835,-0.33400837,-0.37284935,-0.8088781,-0.6929113,-0.09267952,-0.63826495,-0.19501317,-0.28120938,0.2386157,-0.4756074,-0.112563394,-0.13542992,0.2868273,-0.30217806,0.34016228,0.2123611,-0.30550268,0.13959268,-0.4075022,-0.19915895,-0.25577927,0.26573446,-0.14683937,-0.44103518,0.23632492,0.44341448,0.39961854,0.10700535,-0.2930301,-0.16782552,-0.23836017,-0.11077269,0.54081553,-0.113157034,-0.35288095,-0.1529995,-0.09143445,0.42341208,0.17918813,0.22549514,-0.24611033,-0.2156495,-0.12164873,-0.09424663,0.4685279,0.43578172,-0.24797992,-0.18576527,0.48625788,0.10068219,0.11293474,-0.21959907,0.34173527,-0.0554726,-0.57733494,-0.20100439,0.061259568,-0.0377343,0.55564964,-0.37349907,0.23778377,0.77993745,-0.38755986,-0.2969912,0.12937726,-0.05922919,-0.06104635,0.0047195554,0.0008171995,0.37454143,-0.47713408,-0.12598358,-0.34693277,0.771591,0.23838836,-0.7176574,0.2286858,-0.5967118,0.19094367,0.07220365,0.696506,0.9218819,0.71044713,0.25153333,0.8345062,-0.37637118,0.15799433,0.3264788,-0.40498015,0.12447243,-0.2376136,-0.092552684,-0.45895496,-0.012479126,0.12172396,-0.13801982,0.22522736,0.4730247,-0.5832609,-0.1787038,-0.024086952,0.54942083,-0.33006534,-0.23877032,1.0519258,0.91340715,1.1155256,0.31465396,1.4873133,0.3658495,-0.09855288,-0.1978925,0.024932051,-0.6766651,0.15403171,0.16984259,-0.6825104,0.52060753,0.05925176,0.13349135,0.15348952,-0.39949653,-0.17952223,0.10406538,0.3365295,-0.09380114,-0.46086845,-0.476517,-0.25357038,0.075878076,0.18688758,-0.06844447,0.3534757,-0.03917076,0.7784415,0.16516133,0.96703297,0.13444285,-0.12578674,-0.05503371,0.3516704,0.3309882,-0.19378674,-0.15996133,0.3029952,0.3340378,0.16709606,-0.51406354,-0.21062584,-0.30379143,-0.5225672,-0.42638907,-0.23757303,-0.07158921,-0.41172585,-0.08993537,-0.42087734,-0.041240517,-0.29536283,0.44170845,-2.1366975,-0.10531763,-0.0424228,0.44460413,0.049834087,-0.28376988,-0.25983724,-0.5590277,0.24183445,0.33171776,0.5287904,-0.8311338,0.27378845,0.36960152,-0.5472299,-0.44196478,-0.7367463,0.078971624,-0.060149837,0.26237464,-0.044599857,-0.2716296,-0.047372907,0.22296603,0.6666643,0.012857924,0.012719867,0.27169117,0.59524816,-0.2105742,0.3822002,0.16902453,0.60291666,-0.11967641,-0.20610213,0.30601326,-0.5749224,0.13976292,0.21382655,0.054215174,0.47721168,-0.64508957,-0.8310859,-0.5049126,-0.15889579,1.1013463,-0.33052993,-0.3717552,0.17285137,-0.17196123,-0.3357009,0.10368368,0.5823064,-0.32968128,0.26211238,-0.5071065,-0.14342242,-0.009021829,0.31854972,-0.083419226,0.12884021,-0.46585393,0.75756216,-0.2419206,0.38861904,0.3531811,0.12052205,-0.62708217,-0.59780276,0.08801583,1.0445257,0.4646615,0.15515853,-0.20946892,-0.18311162,-0.4066472,-0.21018922,0.11129838,0.60019004,0.73110914,-0.28847435,0.11522859,0.46340504,-0.17000856,0.26653695,-0.06010297,-0.17913692,-0.040178545,-0.04647966,0.6594102,0.91448736,-0.054991852,0.63535863,-0.11912131,0.5314603,-0.06538638,-0.6515057,0.60553217,1.1556221,-0.1473627,-0.34780923,0.6216211,0.09391091,-0.32270193,0.47678736,-0.34805354,-0.43144897,0.69503874,0.005982049,-0.47293937,0.43945512,-0.33258983,0.26643816,-1.055377,0.650933,0.06764459,-0.75650954,-0.6563126,-0.07873448,-3.2155876,0.16197066,-0.16323505,0.010261744,-0.31652638,-0.2564607,0.17632441,-0.63093597,-0.53930485,0.034175187,0.058772504,0.679801,-0.28537586,0.20804016,-0.2226742,-0.70548326,-0.1996376,0.47169712,0.18201673,0.27168727,-0.08471259,-0.26542807,0.1632392,-0.3193579,-0.5996153,-0.13454904,-0.7120514,-0.6305372,-0.05980349,-0.77782726,-0.33582583,0.86603904,-0.45874432,-0.052129537,-0.3335495,-0.013434917,-0.06756955,0.29463187,0.12797889,0.12343911,0.037723254,0.10487651,-0.039090145,-0.08329025,0.054303866,0.11263243,0.46756482,0.40356073,-0.26822135,0.3036367,0.51003975,0.6689603,-0.16207393,0.9384207,0.29121205,-0.16243832,0.27503204,-0.29581994,-0.5518511,-0.75505084,-0.40156606,-0.07881764,-0.57475585,-0.3227655,-0.07357114,-0.15884428,-0.8342543,0.62071323,0.078187875,-0.06326554,-0.078320764,0.553128,0.2099461,-0.060367335,0.07229813,-0.2033257,-0.34864983,-0.3586562,-0.24434292,-0.75762177,-0.69262415,0.019555554,1.3367977,-0.1304685,0.04531287,0.1822496,-0.13737021,0.21886922,0.050071478,0.25552475,0.18277471,0.33230624,-0.06513197,-0.6375571,0.41270038,-0.34055352,-0.10607401,-0.51588917,-0.035505075,0.8485184,-0.69907093,0.44572064,0.36161432,0.11067275,-0.055302966,-0.5416727,-0.17201935,0.10118725,-0.21808128,0.38300633,0.2341786,-0.7509392,0.52020574,0.16220967,-0.31523374,-0.47686458,0.45429423,-0.04796647,-0.09989443,0.17935993,0.4596169,-0.016931176,-0.11119618,-0.33087516,0.29581463,-0.45924807,0.20968175,0.18334514,0.07892612,0.28363794,0.008055736,-0.47507298,-0.81725186,0.13657744,-0.43800822,-0.5443799,-0.12905966,0.12624653,-0.0075326175,0.29339656,0.1236892,0.37048033,-0.41460872,0.2029597,-0.20524664,-0.2775903,0.5234681,0.51348233,0.37168816,-0.47812834,0.7579641,0.2597305,0.058084566,-0.16690779,-0.123331696,0.47241235,0.07655845,0.38020393,0.31480214,-0.18799703,0.0035764973,0.7129391,0.17032288,0.43544182,0.25341824,-0.16321106,0.20589156,0.2031855,0.36796236,0.12170291,-0.37867472,-0.047553603,-0.09752673,0.09590912,0.40670753,0.15974335,0.30947456,-0.11472395,-0.22584064,0.1260689,0.14535235,0.15206322,-1.4268818,0.3181699,0.40812823,0.5910304,0.5213247,0.14425293,-0.0018773079,0.6475261,-0.3504839,-0.10299765,0.16405986,0.034910966,-0.34343693,0.6414955,-0.6592241,0.46537623,-0.21272208,0.044530407,0.120016575,-0.00718156,0.28567854,1.210396,-0.11475015,0.18814509,-0.011480804,-0.16070713,0.10671725,-0.5265178,0.15648355,-0.33795705,-0.2697076,1.0031134,0.10023739,0.3283436,-0.29070345,0.08464196,0.13029462,-0.22985037,0.27050683,-0.10655543,-0.026391536,-0.3344696,-0.50878674,-0.19520806,0.6708757,0.0225548,0.009074244,0.10832996,-0.2556401,0.36096475,-0.10202669,0.032884855,-0.11496103,-0.55491793,-0.056579757,-0.54990745,-0.6877373,0.36538383,-0.305007,0.26967767,0.36801305,0.043649774,-0.21185462,0.1696185,0.3530507,0.6243671,0.1329159,-0.31599826,0.048687916,0.32107034,0.22374006,-0.50832564,0.010501553,-0.27632645,0.28381285,-0.55850875,0.4334532,-0.20095278,-0.46596608,-0.18776815,-0.10786741,-0.011911143,0.16113564,-0.053006966,-0.09427909,0.47144115,-0.0046389005,-0.09047085,-0.20380168,-0.36560395,0.3722545,0.16052961,-0.28174865,0.025654132,-0.07315689,-0.14471921,0.20084985,-0.02364107,0.42576978,0.2946187,0.024651637,-0.4308723,0.18886472,-0.05473401,0.49368533,0.19056995,0.0051469007,-0.25848457,-0.3756077,-0.23473279,0.33220518,-0.16194691,0.23862426,0.21012795,-0.27328745,0.8990653,0.19558054,1.3373631,-0.068301894,-0.5815549,0.19198602,0.53807455,0.09594711,-0.08934853,-0.25010693,1.4799781,0.53929585,-0.3572775,-0.14001486,-0.4983329,-0.30578637,0.165754,-0.30535713,-0.47514296,-0.04119646,-0.68087715,-0.24484126,0.14425233,0.06346791,-0.011135836,-0.055446487,-0.013155547,0.30408636,0.09152617,0.15531369,-0.6624961,0.019280681,0.3548995,0.16802692,-0.09060213,0.114361525,-0.36623612,0.38613245,-0.6658525,0.35712442,-0.38488337,0.23094706,-0.054972295,-0.3744429,0.25209776,0.16649188,0.261807,-0.4100765,-0.26172101,-0.3047662,0.5810651,0.11553117,0.275661,0.7884074,-0.27781245,-0.13738662,0.04363958,0.5529277,1.4847131,-0.006875401,0.053200077,0.40788546,-0.4742163,-0.544015,0.26645464,-0.38928404,0.012132118,-0.21188492,-0.44133094,-0.52783376,0.1406448,0.08925312,0.27351877,0.15630805,-0.44836077,-0.1359172,0.2989428,-0.5520482,-0.22866912,-0.31477574,0.304616,0.75016737,-0.32958075,-0.5234795,-0.067923464,0.08912906,-0.30881485,-0.6952441,-0.024715463,-0.05467506,0.45231986,0.11123779,-0.3561875,0.036841303,0.21379405,-0.4828886,0.23963551,0.43811262,-0.37144062,0.08640593,-0.28468677,-0.095855676,0.83336586,-0.23060738,0.1734643,-0.50969595,-0.70425415,-0.8615772,-0.4668815,0.099557765,0.33213308,0.06291308,-0.74619204,-0.1815493,-0.004303848,-0.15896408,0.10588208,-0.5002869,0.38797727,0.2358994,0.54824424,-0.2704277,-1.2569141,0.18099642,0.25945306,-0.13128658,-0.7571502,0.5463787,-0.1173189,0.7223237,0.21084853,-0.029060883,0.46317366,-0.63928634,0.35846654,-0.06721794,-0.025724495,-0.5723732,0.055997167 +262,0.39854515,-0.31949693,-0.42044643,-0.14191884,-0.40497205,-0.000634106,-0.20158483,0.24661213,0.20996977,-0.30999413,-0.04996912,-0.06920793,0.097448386,0.40844986,-0.07934694,-0.7383902,-0.14641377,0.06198007,-0.6467523,0.4960326,-0.6706474,0.3538545,0.15263276,0.28927884,0.05891486,0.51082784,0.2491085,-0.22560507,-0.06025963,-0.005205405,-0.09603398,0.3606638,-0.570053,0.111130565,-0.028584685,-0.22386725,0.13480815,-0.46473613,-0.24795231,-0.6143523,0.15125373,-0.86816853,0.57338274,0.044244643,-0.19123381,0.017971357,0.11152723,0.40639895,-0.4320567,0.17169945,0.20659722,-0.08899508,-0.09162657,-0.3069416,-0.02023822,-0.34751084,-0.515408,-0.0092617115,-0.5103817,-0.40971452,-0.10463403,0.13569646,-0.3785264,0.016137796,-0.31282654,0.44743448,-0.48267695,-0.06199322,0.267929,-0.30371305,0.39010704,-0.39437434,0.07997365,-0.07996635,0.31524172,-0.012299876,-0.14809947,0.31119257,0.34942093,0.47778416,0.23886786,-0.24603207,-0.073817745,-0.21157883,0.33872166,0.47439444,-0.1651937,-0.45606104,-0.22614613,0.110178456,0.07076116,0.38848764,-0.09846369,-0.37696373,0.060621522,0.07351746,-0.2510707,0.44969627,0.47515038,-0.40392634,-0.29637733,0.19380832,0.6198943,0.13313442,-0.10422173,0.15036227,-0.009155952,-0.611007,-0.1768125,0.25119108,-0.07431939,0.45581606,-0.11774435,0.18201739,0.81777686,-0.12375074,-0.032018688,-0.07254612,-0.14467593,-0.1390777,-0.40739816,-0.1098667,0.07851219,-0.5872488,0.11669038,-0.27329648,0.854009,0.15708086,-0.7049497,0.4404272,-0.5744122,0.1868453,-0.13492166,0.7261303,0.5647978,0.38757178,0.3095292,0.83102477,-0.5361153,0.27166355,-0.11994437,-0.5075179,0.0115268035,-0.14852606,0.15868522,-0.48623303,0.21213913,-0.07590186,0.12883858,-0.17852801,0.32769045,-0.60432035,-0.0154340705,0.054751907,0.8753109,-0.43559986,0.024404483,0.67953676,0.9738911,0.9597904,0.04036309,1.2832097,0.43689486,-0.25103888,0.1878315,-0.43502524,-0.4959845,0.23468615,0.52719665,0.26444247,0.19341113,-0.20466298,-0.09908625,0.39332676,-0.37321976,0.11797578,-0.20663741,0.44835573,0.045358393,-0.08007863,-0.5866963,-0.17350556,-0.025014741,-0.059399556,0.04111537,0.17525864,-0.25121942,0.48362917,-0.054388262,1.3569676,-0.1962942,0.18699868,0.08809892,0.4330614,0.3150807,-0.15319456,-0.07681171,0.3641344,0.53455025,-0.041267533,-0.68409336,0.31401262,-0.27532977,-0.5225836,-0.060763437,-0.41642532,0.028851612,-0.04159134,-0.5005731,-0.09223035,-0.070632935,-0.22929542,0.51425755,-2.7140532,-0.3153155,-0.13975674,0.29227963,-0.3852343,-0.21123835,-0.038709767,-0.49416643,0.21217808,0.30157182,0.4102649,-0.7274265,0.59450036,0.42603657,-0.3764444,-0.17390932,-0.7372965,-0.1208072,-0.09329275,0.49173915,-0.002510663,-0.11242931,-0.30821654,0.095826454,0.8068567,-0.05307043,0.18445832,0.25280422,0.33096966,0.22905843,0.55598414,0.10834336,0.5771697,-0.3093478,-0.11467317,0.40851575,-0.18950336,0.2082661,-0.10068067,0.11816137,0.35770568,-0.43791988,-0.9097879,-0.75963986,-0.5264984,0.9701687,-0.44450653,-0.4154989,0.25742745,0.03341557,-0.008791566,0.06764976,0.4697715,-0.05660772,0.16210356,-0.7310472,0.26002175,-0.051109347,0.15337464,0.086004406,0.0015265067,-0.24200168,0.7205941,-0.0762626,0.6046196,0.25942865,0.2616267,0.017306583,-0.35769564,0.029232617,0.96623063,0.273564,0.05485624,-0.05061458,-0.40061024,-0.012304576,-0.05693058,-0.078440115,0.4866993,0.8737714,0.07059536,0.1347123,0.24153176,-0.13675578,0.08315698,-0.13791667,-0.32946172,0.13272908,0.07357885,0.45402563,0.4940111,-0.19327591,0.5142883,-0.3026428,0.32044843,0.02202793,-0.58140075,0.6258773,0.5843903,-0.27928033,-0.041245136,0.62996083,0.5661051,-0.48083737,0.41452724,-0.7311747,-0.10852659,0.66162044,-0.22707336,-0.3820494,0.18928012,-0.16809079,0.23150438,-1.012798,0.40661258,-0.39933005,-0.4733734,-0.38428408,-0.12369867,-4.1747284,0.21918882,-0.19198272,-0.07464088,-0.16548415,-0.07791347,0.39217624,-0.51166093,-0.49577305,0.13538367,0.17298047,0.47271505,-0.031962488,0.13333513,-0.35198548,-0.031630132,-0.058909312,0.2493844,0.098283775,0.19203418,-0.21878944,-0.38938284,0.0072774114,-0.09061291,-0.5511878,0.2626852,-0.59466016,-0.5275249,-0.07585544,-0.51797915,-0.39512858,0.6713604,-0.20136149,-0.009604925,-0.20681266,0.15069094,-0.29697004,0.3111304,0.102071054,0.26414168,0.15736206,-0.07874925,-0.014716546,-0.41969025,0.3675269,-0.04271612,0.3107292,0.035124667,-0.0066097695,0.12972026,0.4828993,0.5342541,0.059911918,0.9066651,0.34919935,-0.10375222,0.3504372,-0.39478964,-0.26189727,-0.65042037,-0.4953268,-0.14933607,-0.3935006,-0.54528254,-0.04951217,-0.2503833,-0.6750714,0.5809757,0.06422237,0.39362773,-0.1353309,0.3640279,0.5181589,-0.06084277,0.016513169,-0.09614147,-0.21640362,-0.6303667,-0.1785819,-0.7667515,-0.5411535,0.17521726,0.8455888,-0.26131648,-0.023612222,-0.1848362,-0.30242613,-0.09706195,0.10407724,0.12669758,0.3771597,0.3972507,-0.15355596,-0.73481184,0.43552786,0.019319257,-0.15587749,-0.5605556,0.06656809,0.6945178,-0.80398625,0.6628278,0.21386303,0.13108706,0.06495144,-0.48035595,-0.32800153,0.04997618,-0.24481374,0.61271125,0.079529434,-0.75074744,0.5567357,0.53591543,-0.3012161,-0.66531694,0.240387,-0.03731274,-0.23329535,-0.0016895373,0.30346793,0.058050755,-0.020697793,-0.23368518,0.12402377,-0.57978034,0.2892488,0.25020173,-0.11719734,0.32643673,-0.13937221,-0.3277529,-0.76513875,-0.18181656,-0.6157177,-0.1758983,0.38546294,-0.06516182,-0.049209658,0.102656245,-0.1386885,0.47792515,-0.12295531,0.04938961,0.061178997,-0.32394427,0.28593618,0.56822,0.09724588,-0.3406374,0.56845725,0.1709805,-0.17927869,-0.0536055,0.035354007,0.41376957,0.12994194,0.39083487,-0.19877522,-0.24921791,0.49100134,0.8260119,0.16687569,0.60474765,0.032302998,-0.075594775,0.5529327,-0.022021206,0.008203125,0.14780398,-0.25950322,-0.121553,0.13667974,0.11644773,0.48407698,0.3151618,0.3327549,0.14040102,-0.2402638,0.03668656,0.20407058,-0.028532067,-0.9667418,0.45115373,0.2102764,0.7088937,0.5592057,0.059955187,-0.141882,0.65522015,-0.24727294,0.101416,0.35154217,-0.035312973,-0.57646066,0.7957733,-0.64806694,0.3678734,-0.282884,0.034055475,0.03734454,0.107336916,0.35821944,0.92260176,-0.1697898,0.022746328,-0.046497144,-0.11760255,0.100536846,-0.25391808,-0.020476786,-0.4391837,-0.32147706,0.6143013,0.37574694,0.452406,-0.16089305,-0.097701564,0.1386213,-0.12544027,0.3063038,-0.01211744,-0.016661191,0.13067771,-0.5189463,-0.41691485,0.59514415,0.12790872,0.15438583,-0.10721442,-0.38516587,0.22601178,-0.2800626,-0.13765772,0.03086558,-0.48872173,0.059472863,-0.19907953,-0.57638764,0.34279785,-0.2273313,0.07176189,0.059371818,0.044135787,-0.3147344,0.08728452,0.0463625,0.9267508,0.021447368,-0.42566597,-0.46085992,0.021329753,0.24927981,-0.27313823,-0.048897702,-0.2909146,-0.089854114,-0.6253672,0.5699436,-0.09930989,-0.46972162,0.22970441,-0.23726425,-0.10148693,0.5421199,-0.1537151,-0.2631288,0.034579873,-0.20038381,-0.47689798,-0.13489674,-0.15336657,0.24388286,0.2428347,0.040832724,-0.13511038,-0.26601413,-0.105613366,0.5870845,0.042711996,0.4256231,0.24524614,0.07617664,-0.2706221,-0.03276186,0.29923686,0.32237035,0.14082012,-0.014102356,-0.3442066,-0.43157712,-0.23365612,-0.04762449,-0.05764636,0.32549888,-0.12530217,-0.46219364,1.1343471,-0.011039957,1.3147517,0.0816832,-0.18253957,0.052665066,0.49060276,-0.046121337,0.032419704,-0.38227132,0.867643,0.5790993,-0.04679983,-0.08326141,-0.6106401,-0.14452332,0.2211021,-0.31996307,-0.078929946,-0.12904592,-0.6251211,-0.46294576,0.2749218,0.2517492,0.19971351,0.06310515,-0.050263762,-0.009624531,-0.013649178,0.46762612,-0.5929326,-0.1551886,0.16574804,0.24161483,-0.059145164,0.11111625,-0.37831873,0.30632198,-0.60827166,0.28771108,-0.40060434,0.060224686,-0.12670586,-0.26670286,0.09174678,-0.2120812,0.22105609,-0.22070451,-0.5143855,-0.03606973,0.56180054,0.09611294,0.064374164,0.9076698,-0.28811163,0.09321664,0.20848192,0.59742725,1.2591527,-0.333097,-0.0141376285,0.26976204,-0.3441072,-0.7044646,0.38439733,-0.16574217,-0.027584163,0.0061233956,-0.45420876,-0.37023297,0.26379895,0.23896927,-0.100680485,-0.064631976,-0.4757747,-0.22716874,0.4217528,-0.21565439,-0.23484391,-0.2856897,0.4605726,0.724259,-0.36010176,-0.2558837,0.072730176,0.25333473,-0.44898662,-0.565463,-0.15555845,-0.18552424,0.3857055,0.11377961,-0.25642413,0.1030643,0.21074966,-0.43945435,-0.06548255,0.23251635,-0.3773958,0.14912178,-0.07444978,-0.20020536,0.8685221,-0.21527927,-0.26849702,-0.6468773,-0.49238876,-1.0080402,-0.4962184,0.46042714,0.1020016,0.089964055,-0.45852533,0.16989355,0.047534164,-0.038736265,0.10206782,-0.6084553,0.37822732,0.046860162,0.622101,-0.20924921,-0.747234,0.05528978,0.20994097,0.031677485,-0.6085888,0.7547904,-0.09436391,0.8059397,0.027845317,0.011132193,0.00980165,-0.42127186,0.03354852,-0.46618184,-0.23757423,-0.929244,0.06694234 +263,0.022333251,-0.05842054,-0.4751727,-0.14982487,-0.060963783,0.20296377,-0.057785496,0.46276397,0.11867842,-0.38444564,-0.028883742,-0.1523968,-0.049362805,0.32303298,-0.16729262,-0.4520815,0.0065302392,0.16688465,-0.26940754,0.17044197,-0.43042564,0.25592723,-0.17898414,0.27851504,0.06475603,0.276129,0.21718289,-0.22218768,-0.22079445,-0.22401024,0.025408827,0.31172112,-0.47859076,0.36135468,-0.004038421,-0.17017442,0.23202287,-0.3589231,-0.4824255,-0.5342221,0.25750503,-0.753704,0.38759467,0.019532941,-0.081391454,0.27501372,0.23131536,0.122747,-0.3425975,-0.12563957,0.3083822,-0.3384667,-0.08414892,-0.22886345,-0.1953215,-0.4109974,-0.3759211,-0.03156006,-0.46001142,-0.15071517,-0.46700388,0.11297728,-0.2914372,0.013045811,-0.19310229,0.27426812,-0.3427107,0.016629549,0.17728494,-0.33216184,0.09493529,-0.5687217,-0.18691164,-0.031036321,0.000967247,-0.17067745,-0.06357716,0.40085617,0.18381014,0.26926583,-0.1175333,-0.0044329944,-0.24595867,-0.31715664,0.18082696,0.5480995,-0.086856,-0.38066304,-0.023591977,-0.06007576,-0.05480108,-0.010987117,0.051888518,-0.13959044,-0.12740175,0.14869253,-0.2711042,0.22863418,0.48644236,-0.25869438,-0.21581969,0.41787243,0.41247866,0.09870749,-0.04153568,-0.119744584,-0.08020942,-0.46662962,-0.21716629,-0.1325263,-0.108229,0.43453863,-0.079348855,0.19347733,0.7598717,-0.3359308,0.03955781,0.118009076,0.16952778,-0.014434374,-0.35353056,-0.19719897,0.1855986,-0.348951,0.042503186,-0.14596364,0.9061874,0.041527152,-0.45141917,0.33092833,-0.46698508,0.07417575,-0.03973806,0.60862947,0.3417964,0.37945157,0.33077314,0.6515763,-0.4685402,0.040401418,0.0043309103,-0.29703116,0.2541449,-0.23435718,-0.15062985,-0.2930962,0.015409286,0.26262787,0.06980848,0.045140937,0.2240635,-0.437867,0.07330607,0.16417335,0.8352077,-0.31047806,-0.14181148,0.3576212,1.0574276,0.74407125,0.04528606,1.128906,0.15545636,-0.2683997,0.04129007,-0.005703816,-0.8063217,0.28197423,0.3260039,-0.30600828,0.10273261,0.2864857,-0.06638457,0.28599894,-0.43028763,-0.10012475,-0.14997815,0.3767378,0.09855285,-0.07535134,-0.40188318,-0.31355572,0.084903404,-0.24183846,0.2597222,0.2712798,-0.2274387,0.23191306,0.14577636,1.3931991,-0.014876132,0.22420223,0.07589263,0.48951334,0.12013949,-0.03616949,-0.028993892,0.47234586,0.2841168,0.016875032,-0.61622465,0.17233673,-0.27356768,-0.61157,-0.12888433,-0.32708517,-0.080921166,0.041162767,-0.3054214,-0.17129262,-0.053680837,-0.29333103,0.36558956,-2.8324838,-0.025592478,-0.009394809,0.24080476,-0.28532064,-0.1133128,-0.09375017,-0.3480474,0.33815876,0.49115118,0.42205423,-0.46392345,0.19526619,0.39869535,-0.25820327,-0.31322104,-0.52990615,0.16334714,-0.10937521,0.19352776,0.048119508,-0.027507644,-0.2478822,-0.11841985,0.38019848,-0.11104805,0.080155805,0.37005204,0.2417958,0.060520127,0.26413283,0.013203896,0.54225767,-0.44708762,-0.09282282,0.24768914,-0.6311169,0.47172356,-0.024442067,0.12054336,0.3578522,-0.2012232,-0.74316704,-0.4383399,-0.3363395,1.4036871,-0.30788496,-0.19112404,0.2420173,-0.0931782,-0.23819274,-0.023207132,0.40101528,-0.29093286,-0.0022621774,-0.6399975,0.16785127,-0.158638,0.42953506,-0.019747403,0.057191912,-0.36649853,0.6228456,-0.05338577,0.4657163,0.2113274,0.06372091,-0.3716641,-0.27856773,0.01520512,0.8500419,0.27596554,0.13624573,-0.21620716,-0.19105384,-0.18487872,-0.1064704,0.18209745,0.4293525,0.5954772,0.060440786,0.16246489,0.27372438,0.00813067,-0.10272289,-0.07183269,-0.27963158,-0.021396937,0.16106565,0.6892859,0.4511605,-0.14009568,0.37592062,-0.08437435,0.33806545,-0.33441147,-0.31739518,0.29420292,0.7483051,-0.15708464,-0.26697886,0.6935308,0.5924314,-0.33273953,0.453162,-0.5532627,-0.4557064,0.625266,-0.27088714,-0.39169964,0.08927726,-0.27379268,0.02160113,-0.85769755,0.33802003,-0.041579552,-0.55478674,-0.6230805,-0.25554913,-3.2763608,0.02010246,-0.19125359,-0.23833497,-0.2095441,0.066057436,0.27947342,-0.505735,-0.38002485,0.070022866,0.11982192,0.5994313,0.00842077,-0.01652057,-0.23147812,-0.14736648,-0.08592704,0.14134401,0.11262762,0.20510362,-0.06303001,-0.37671822,0.063213825,-0.28142852,-0.34513855,0.068942465,-0.46494895,-0.310565,-0.22923395,-0.5380499,-0.36095354,0.69414914,-0.64242625,0.03292671,-0.14934151,0.105093114,-0.11714323,0.31389558,0.19231234,0.112467974,-0.01666938,-0.113875784,-0.040667813,-0.4467533,0.48176953,0.007867449,0.48120946,0.54841423,-0.059212446,-0.15670846,0.5316519,0.44335446,0.05375389,0.8267969,0.26157862,-0.06984398,0.39339292,-0.31510317,-0.20951667,-0.46753305,-0.3553915,0.07012357,-0.3017297,-0.39903158,0.052501526,-0.32495987,-0.7920859,0.5645285,-0.05035217,-0.06506956,-0.006706648,0.21317181,0.35410407,-0.08489196,-0.0928253,0.058542058,-0.058905527,-0.39454782,-0.47408164,-0.62524295,-0.29558796,-0.014007769,0.92920107,-0.17210484,-0.1152984,-0.026099913,-0.14105095,0.01007148,0.15279089,0.023608685,0.26357728,0.46259594,0.0575122,-0.6168633,0.55735815,-0.25608906,-0.16869494,-0.4708451,0.02171532,0.5927936,-0.759828,0.46718168,0.49616206,0.14653894,-0.07078728,-0.44639635,-0.28471512,-0.1847287,-0.114094414,0.3234701,0.15062684,-0.81265736,0.47721142,0.22681996,-0.39458084,-0.68875855,0.3135883,-0.11946841,-0.024878016,-0.008844733,0.32933885,-0.041044567,0.032700326,-0.16089225,0.14104268,-0.37513182,0.091417775,0.17720999,-0.13807973,0.56909126,-0.21715659,-0.047640763,-0.552815,0.042377964,-0.40514213,-0.1996478,0.14493331,0.055177476,-0.08832742,0.30039987,-0.103625424,0.38460872,-0.24180983,0.035444282,-0.054899685,-0.23339213,0.46327436,0.3982189,0.42477334,-0.37901527,0.68284255,-0.028697293,0.07366766,-0.12279472,-0.014249148,0.44794062,0.055214442,0.39504382,0.06895703,-0.113805346,0.34667698,0.82374513,0.24990524,0.43464455,0.064816386,-0.006899724,0.24295834,0.01145478,0.12309322,0.24003777,-0.49213395,-0.09308536,-0.25193346,0.15085763,0.40797776,0.08972037,0.54008293,-0.06364123,-0.07695763,0.21129563,0.23274957,-0.050788376,-0.7076622,0.55888,0.21695016,0.604303,0.36457983,0.0024330823,0.087198734,0.6513639,-0.21758412,0.1326677,0.26493132,0.010215872,-0.5336366,0.57625175,-0.61181283,0.4855388,-0.20621753,0.0072335876,0.06737651,-0.01557899,0.45946705,0.7781169,-0.13791251,0.061520584,0.12320101,-0.24509849,0.2148815,-0.3507851,0.3165689,-0.49174404,-0.23141728,0.5623647,0.408841,0.3186027,-0.26026848,-0.04529226,0.058082405,-0.089495346,0.18724865,-0.050386403,0.01993591,-0.06955034,-0.61167836,-0.33129495,0.4842693,0.113336995,0.1969406,0.019189904,-0.18904455,0.27425134,-0.18564193,0.033823732,-0.14957744,-0.37796387,0.16666254,-0.11778586,-0.68657494,0.2001076,-0.27875695,0.32404402,0.22543167,0.04050764,-0.3361211,0.30953705,0.22071102,0.7660855,-0.22251518,-0.20457667,-0.40384966,0.093592815,0.28057015,-0.11099521,-0.14970425,-0.4310261,0.002418518,-0.5412735,0.2973463,-0.31036422,-0.23012172,0.05652996,-0.34482634,-0.0721832,0.50556517,0.104466245,-0.03302705,-0.05030386,-0.26369298,-0.1482527,-0.06640128,-0.22723547,0.22338878,0.1116476,-0.10979361,-0.18092881,-0.2079776,-0.052615542,0.110288635,-0.11535799,0.13838586,0.2903566,0.090877526,-0.24478358,-0.20754123,-0.120442234,0.576018,0.07309513,0.031340167,-0.21453208,-0.2937247,-0.1877075,0.32316092,-0.21787395,0.1809468,0.20311818,-0.44822496,0.67386186,-0.1108359,0.9993427,0.02143079,-0.3818698,0.09060737,0.71299785,0.0537173,-0.023352275,-0.3940886,0.9366734,0.50568473,-0.11547124,-0.24858348,-0.3181718,-0.01867354,0.23125084,-0.13293603,-0.49386686,-0.07945816,-0.6893883,-0.17592937,0.28200743,0.35644773,0.041426387,0.019137293,-0.04995888,0.21950427,0.12407064,0.38498244,-0.43064836,-0.11333673,0.35177782,0.14425506,0.041925885,0.13313437,-0.38249877,0.43130124,-0.6836653,0.068830565,-0.19289912,0.048564516,-0.255144,-0.21196008,0.22059125,0.10281901,0.36967185,-0.27366608,-0.17964381,-0.027807564,0.33099145,0.14151698,0.26891547,0.61991537,-0.2079518,-0.023582097,-0.0161951,0.4695067,0.81939954,-0.25574937,-0.046017583,0.41568515,-0.31711355,-0.633331,0.38923296,-0.46895054,0.07638492,-0.12605602,-0.4436254,-0.27455518,0.31499717,0.25476053,-0.08567192,0.17032088,-0.45329922,-0.05320433,0.13343164,-0.26251572,-0.24411029,-0.2935134,-0.010520022,0.6590162,-0.2975466,-0.16026963,0.16875783,0.37356207,-0.18422253,-0.5157075,-0.038414035,-0.3974194,0.38786137,-0.06386421,-0.206252,-0.10164662,0.02346412,-0.3387058,0.40174058,0.15570666,-0.36470684,0.025681544,-0.19474298,0.17163515,0.45404804,-0.080545664,-0.044431366,-0.6214788,-0.50293326,-0.8797616,-0.21927533,0.55038524,-0.027676225,-0.109586395,-0.34593278,-0.028981619,0.006277268,-0.1610801,-0.23296605,-0.41509217,0.4042602,0.12247812,0.28472096,-0.06078816,-0.89523196,-0.014062662,0.016917692,-0.19059357,-0.47229764,0.46276742,-0.31408623,0.69175583,0.022475133,0.04024468,0.2755661,-0.4089197,0.22904605,-0.27800143,-0.22387902,-0.53949857,0.14297661 +264,0.4895142,-0.29338995,-0.43011734,-0.095764,-0.18130426,0.06746672,-0.12959118,0.2935025,0.21397495,-0.49913463,-0.120906845,-0.17982438,-0.065820865,0.2620794,-0.13221322,-0.7754059,-0.037267882,0.24317743,-0.5677815,0.6846857,-0.23149373,0.20405227,-0.011140802,0.28347367,0.047146685,0.17062584,0.23633619,-0.18140183,0.1024439,-0.16180502,0.00068882306,0.18450521,-0.56392616,0.37964672,-0.06794916,-0.26951945,0.071463235,-0.3681949,-0.24637628,-0.6834444,0.15395276,-0.7577144,0.42906672,0.11660405,-0.21433266,0.104009666,-0.0073500634,0.46680897,-0.3185916,0.15808342,0.19241302,-0.16901465,-0.09989525,-0.20178474,0.011924896,-0.4525749,-0.48541507,-0.057042904,-0.36651528,-0.28800467,-0.19582608,0.18268685,-0.3641605,-0.10609808,-0.01128706,0.5162176,-0.4290566,0.061918903,0.30354854,-0.3247864,0.40288442,-0.4682314,-0.1265811,-0.047158726,0.33651537,-0.16647683,-0.17802833,0.21434812,0.15847273,0.5757656,0.0966553,-0.13774627,-0.10466838,-0.08449886,0.20932989,0.5960692,-0.18970199,-0.5161407,-0.09592285,0.123860665,0.06675765,0.060558327,0.039786123,-0.46965653,-0.09256715,0.02236254,-0.058782935,0.32851246,0.471878,-0.34197867,-0.18786392,0.37526074,0.5883218,-0.02575525,0.0028774163,0.05186517,0.0864784,-0.4308423,-0.23135096,0.1270663,-0.23365659,0.48862365,-0.10982189,0.2858129,0.71035063,-0.13555638,0.08484833,0.03924937,-0.062248614,-0.1599753,-0.21310133,-0.24385315,0.4026647,-0.4202413,0.07110631,-0.18890204,0.80990803,0.20797463,-0.80622834,0.317107,-0.52360314,0.10636572,-0.21898133,0.4894146,0.59320647,0.36073345,0.13472532,0.7232396,-0.6034671,0.09419422,-0.053199515,-0.5027944,0.039192606,-0.097545594,-0.12823404,-0.55938214,-0.0346472,0.032444235,0.008783877,-0.07255669,0.1406393,-0.69873196,-0.09153329,0.08360965,0.80143356,-0.3157379,0.088105984,0.5662004,1.0382997,0.79493725,0.007740891,1.233806,0.16836277,-0.34838662,0.17811917,-0.23952405,-0.60802853,0.28788093,0.4914901,-0.050266195,0.20207071,0.06798521,-0.06542299,0.3591213,-0.3736896,0.0871129,-0.12892708,0.2091151,-0.084848635,-0.20912515,-0.5048595,-0.029320879,-0.027148671,0.07965973,-0.034141507,0.22361952,-0.14607984,0.2981707,0.117613725,1.6335355,-0.14051925,0.23887597,0.11142505,0.30436692,0.124728896,-0.047083296,-0.048821855,0.28577983,0.35031852,0.17317057,-0.55701935,0.09975269,-0.17887929,-0.40900266,-0.23118116,-0.17369734,0.05427031,0.0042212238,-0.42228448,-0.0025346293,-0.08516648,-0.24176066,0.47228673,-2.796074,-0.21380334,-0.24067035,0.43532684,-0.36784238,-0.29132345,-0.08732107,-0.38222736,0.34946424,0.35248235,0.48922437,-0.713931,0.42013866,0.3706726,-0.53444165,-0.13364854,-0.5018858,-0.1123082,-0.085258074,0.45583394,0.09157764,-0.15620977,-0.07731378,0.22672383,0.38926363,-0.12760444,0.15110752,0.2593682,0.36446163,0.14004064,0.48953468,0.03642518,0.40120652,-0.24207045,-0.1413386,0.37766474,-0.13981324,0.09625551,-0.028750174,0.10641294,0.287666,-0.41190383,-0.9101171,-0.8099467,-0.3015618,1.0545942,-0.19258496,-0.4558322,0.17784935,0.1267425,-0.24093446,-0.03575539,0.26912275,-0.016328914,0.07953824,-0.9619328,0.15796742,-0.046924625,0.2548037,0.1884324,-0.26751488,-0.5821126,0.6791751,-0.15438484,0.5649385,0.4699059,0.29640993,-0.009609517,-0.43074924,0.066007525,1.1014255,0.3610455,0.101264074,0.0023043274,-0.07245525,-0.21859337,0.03496428,0.093789004,0.5113827,0.7803335,-0.020476703,0.031403463,0.32878953,-0.0927852,0.13436331,-0.17413148,-0.37786,-0.06418859,0.029523714,0.50853074,0.53147626,-0.1680238,0.3503071,-0.008236822,0.39662617,0.028020648,-0.4095123,0.563509,1.1293701,-0.15785262,-0.21703236,0.48293772,0.3986792,-0.17064577,0.32663023,-0.63981134,-0.33301964,0.44950244,-0.20592831,-0.48906276,0.12711735,-0.3485961,0.33200276,-1.0084416,0.4822087,-0.48939437,-0.5152173,-0.56293887,-0.14377159,-3.3964076,0.22458868,-0.4233803,-0.16243865,-0.0026928266,0.048490364,0.289489,-0.74366283,-0.38233376,0.19624391,0.110147156,0.5101598,-0.054138638,0.23692387,-0.24729171,-0.11950539,-0.03637668,0.21833754,0.20551196,0.114072956,0.07244652,-0.47245967,-0.017226402,0.10164718,-0.28639096,0.13833833,-0.658465,-0.4916267,-0.19558096,-0.51441747,-0.25448734,0.6308563,-0.26624253,-0.11343262,-0.1414903,0.06755246,-0.20211795,0.30897844,0.06273147,0.11167472,-0.06443836,0.07499678,-0.14999872,-0.28579223,0.3083561,0.048184957,0.25594527,0.1456043,-0.3881819,0.088669695,0.5238076,0.46438962,-0.078230746,0.6799039,0.60678136,-0.11053631,0.30307674,-0.29946372,-0.28119615,-0.66184795,-0.46491712,-0.08898726,-0.35746524,-0.44955513,-0.056545086,-0.361028,-0.762071,0.56046736,0.006418407,0.098911,0.016338443,0.19083217,0.5231828,-0.14956443,-0.07146043,-0.06104723,-0.1859334,-0.5823805,-0.15671326,-0.59915024,-0.47919285,0.22348915,1.016384,-0.21472557,0.052518003,0.066442214,-0.11954965,0.058807354,0.18121888,-0.028044699,0.23147802,0.45162895,-0.1384271,-0.59058577,0.51244646,-0.0020618017,-0.18252203,-0.7220408,0.13921706,0.6006069,-0.567733,0.4586108,0.26846394,-0.0045870603,-0.0019462983,-0.38138026,-0.16696136,0.02401712,-0.22676796,0.3510769,0.010516198,-0.53880906,0.395717,0.34224945,-0.21329117,-0.7340061,0.5441916,0.0036883333,-0.23295586,0.09429432,0.25555056,0.041355554,-0.101726845,-0.23253827,0.29449335,-0.48768297,0.28150907,0.13457243,-0.15266106,0.33023897,-0.15395112,-0.121400826,-0.7816534,-0.08913364,-0.5940749,-0.25817338,0.25341722,0.12898225,-0.0015512545,0.18762429,-0.03481652,0.4415388,-0.294138,0.09197469,0.025312642,-0.3723974,0.34864643,0.49908352,0.28840795,-0.42281356,0.54738784,-0.009646916,-0.0626234,-0.32065102,0.12861022,0.5680496,0.21339935,0.3828612,-0.15905373,-0.14518149,0.391503,0.72381324,0.19875552,0.51210374,0.0856314,-0.064049475,0.24716514,0.12505263,0.12807468,-0.015067053,-0.5111853,0.11650833,0.078442015,0.17221245,0.43897778,0.22461838,0.3298325,-0.079856604,-0.54807156,-0.008352783,0.27254286,0.07580965,-1.047095,0.33553636,0.19191168,0.7011975,0.59280384,0.010207955,0.10984766,0.57947665,-0.16229996,0.11157452,0.30103353,-0.13792774,-0.45798743,0.5242257,-0.69136506,0.2656222,0.00019705296,-0.04789816,0.014143201,0.030337684,0.20894416,0.63422775,-0.07911084,0.10062941,-0.20469227,-0.20575762,0.0137912175,-0.3290691,0.083909295,-0.42280146,-0.3213023,0.6271253,0.5936279,0.32304943,-0.20368738,-0.01607216,0.061621238,-0.05862346,0.30982164,0.033732597,0.13947207,0.09899362,-0.649602,-0.25718084,0.62185895,-0.05212075,0.022457393,-0.04305704,-0.20353368,0.26417476,-0.11120951,-0.019332035,-0.07614072,-0.53002244,0.05056756,-0.2834736,-0.13672669,0.6702764,-0.09852599,0.1759963,0.11497666,0.07914033,-0.14238434,0.1857983,0.07801273,0.7112854,0.25613752,-0.23767538,-0.53840774,0.03487587,0.04575965,-0.124032624,-0.03445673,-0.3548455,-0.017507546,-0.70104736,0.43876973,0.089888334,-0.1840279,0.33570644,-0.1774189,-0.011128541,0.52226156,-0.08896633,-0.18708672,0.10386754,-0.04162865,-0.23789702,-0.3069515,-0.12071499,0.22838749,0.1668053,0.22782122,-0.058256205,-0.023033356,-0.324519,0.39605764,0.22499739,0.3601993,0.33293256,-0.0020681422,-0.30892804,-0.093519196,0.20089372,0.27811795,-0.05673066,-0.1107234,-0.18192582,-0.5893775,-0.38908243,-0.13616124,-0.1277634,0.2339062,0.03480949,-0.2336041,0.7567647,0.04448085,1.2322123,-0.04609133,-0.2644611,0.042163834,0.5380977,-0.0057967105,-0.07900141,-0.30357686,1.029341,0.79063237,0.08655501,-0.12622698,-0.28013203,-0.22021346,0.06651563,-0.22174476,0.036319353,0.026857398,-0.5640405,-0.4578345,0.25090817,0.27743536,0.1076491,-0.089009896,-0.06275676,0.17187439,0.0014627735,0.2038243,-0.5492824,-0.21006377,0.15288404,0.3188575,0.06753626,0.15280706,-0.45622918,0.4565792,-0.49742663,0.073463134,-0.40795314,0.08946298,-0.096798845,-0.14096016,0.13517761,-0.025012696,0.33480084,-0.29539493,-0.3417171,-0.10448189,0.47784021,0.16410993,0.056099143,0.7629337,-0.19295433,0.10947601,0.03940787,0.41585886,0.9365104,-0.37217146,0.028399674,0.42416313,-0.394293,-0.56222916,0.18229252,-0.26523402,0.18273804,-0.09064816,-0.35357246,-0.4583772,0.202368,0.13854745,-0.077139966,-0.0092355255,-0.71526206,-0.13791175,0.32774657,-0.49720412,-0.26497194,-0.2315618,0.25933683,0.6131727,-0.3820639,-0.42115057,0.13172922,0.19271186,-0.113201536,-0.65272605,-0.20351133,-0.3459418,0.29279107,0.2033396,-0.349616,-0.07901616,0.11533293,-0.30938584,0.048928134,0.15113804,-0.37352258,0.009298013,-0.3501752,-0.16533707,0.8249993,-0.03553211,0.031087661,-0.7273216,-0.20191832,-0.90169305,-0.48497888,0.5696574,0.16400889,0.095435,-0.54369354,0.022447824,-0.0043430687,0.013435232,-0.18583913,-0.30299494,0.39527795,0.13986634,0.58321923,-0.2297597,-0.8090556,0.1291871,0.2373676,-0.12473986,-0.6230248,0.42312035,0.0023653985,0.85093176,-0.041884884,0.075425915,0.2695066,-0.64803225,-0.1503539,-0.31771126,-0.22487068,-0.669873,-0.0033644119 +265,0.5173759,-0.20671967,-0.75783825,-0.034395557,-0.35395953,0.024954217,-0.26104972,0.32771704,0.1303419,-0.59701794,-0.09066869,-0.01393873,-0.147503,0.19981635,-0.2002757,-0.308196,0.010672177,0.44651562,-0.42601022,0.41385618,-0.43654442,0.3556357,0.038501374,0.19443676,0.16312051,-0.006483159,-0.065092646,0.13526173,-0.07483715,-0.43537134,0.19042587,0.2829257,-0.82426614,0.3408728,-0.20235062,-0.5311449,-0.12716673,-0.4953845,-0.28152892,-0.8290634,0.19600196,-1.0234909,0.58881325,0.012121839,-0.3481388,0.21447682,0.10149431,0.35499606,-0.10560685,0.032023504,0.26442227,-0.26736566,-0.5479484,-0.09144359,-0.009429327,-0.28588882,-0.6247967,-0.047671225,-0.42311648,0.165201,-0.36813256,0.25930166,-0.40901738,0.1699373,-0.3796289,0.3949636,-0.23664834,0.014869341,0.11533142,-0.009282248,0.15271118,-0.5669852,-0.18025972,-0.20705938,0.13288315,-0.23111837,-0.43932202,0.33724704,0.22990271,0.4761386,-0.045775477,-0.24815716,-0.20606294,-0.005150318,0.27106282,0.42403856,-0.20150682,-0.24595931,-0.17817958,-0.05060519,0.40636784,0.033311754,0.109660454,-0.2724603,-0.092189506,0.12272764,-0.32226947,0.57122433,0.55097026,-0.2485826,-0.0659835,0.3602,0.63236815,0.12167813,-0.15842488,0.277668,-0.008986224,-0.5335291,-0.1454599,0.17216572,-0.15859425,0.25189492,-0.23234287,0.14676486,0.5349701,-0.42471775,-0.374085,0.4690837,0.165611,-0.09240045,-0.19717444,-0.4731575,0.45329905,-0.60788053,0.107384145,-0.23959446,0.7992931,-0.045919936,-0.6859488,0.29541355,-0.71538985,0.16059409,-0.10487239,0.66373503,0.66093403,0.68842405,0.33088428,0.75852734,-0.33281666,0.01470255,-0.13117418,-0.399961,0.14341934,-0.44611454,0.023903767,-0.43661484,-0.04728782,-0.09909473,-0.37208048,-0.016820395,0.66733456,-0.43167105,-0.25125375,0.03316616,0.36984888,-0.3652769,-0.06837898,0.9498596,1.0377381,1.1562798,0.4072535,1.2007567,0.25548413,-0.058166243,-0.2525148,0.0607282,-1.0396374,0.33593482,0.2813564,-0.2337515,0.27971712,0.37291312,-0.0061598164,0.41665745,-0.47668138,-0.14728832,-0.1105481,0.3496609,-0.0628016,-0.30447578,-0.5095673,-0.26399735,0.15135516,0.124253355,0.009799434,0.26153657,-0.25122213,0.44205847,0.30983108,1.1679513,-0.25658032,0.03489905,0.098999925,0.204558,0.1397052,-0.25834754,-0.111525536,0.1343309,0.42515475,0.11581449,-0.5041415,0.10661476,0.0738319,-0.5013007,-0.2384106,-0.19803905,-0.047685392,-0.33731514,-0.33766547,-0.25398684,-0.06347891,-0.4071935,0.39602205,-2.3386264,-0.15193157,0.009848131,0.24970844,-0.051873345,-0.4598803,-0.11343086,-0.4633834,0.36379257,0.24735309,0.4379468,-0.63660765,0.5004323,0.47659454,-0.7199102,-0.032834925,-0.79706615,-0.2024231,-0.19859828,0.35191005,0.12688182,-0.14118345,-0.06503699,0.0755886,0.4445072,-0.31905937,0.12538436,0.52914155,0.33859396,-0.1323203,0.51418847,0.14492114,0.46060285,-0.35357976,-0.32388872,0.37720338,-0.3541665,0.07075767,0.10453302,0.062576935,0.5210901,-0.55186015,-0.9708505,-0.7274591,-0.1570873,1.28976,-0.2236062,-0.49252945,0.13629995,-0.51638633,-0.47609565,-0.036127355,0.30730942,-0.22330841,-0.04248053,-0.9423704,-0.094202794,-0.14977907,0.37222582,-0.20513733,0.031707864,-0.5412922,0.7107864,-0.17051731,0.5919666,0.48182574,0.11272202,-0.4011703,-0.413032,0.105425544,1.2537359,0.39954406,0.16805157,-0.46941286,-0.26056415,-0.24198504,0.062929355,0.11859039,0.49208394,0.5313258,-0.08906632,0.24578102,0.20818941,-0.11834519,0.021266248,-0.27454227,-0.2558494,-0.18517244,-0.076244764,0.65954316,0.5224915,0.10920918,0.52495307,-0.07620221,0.2775022,-0.1186288,-0.48589054,0.40259436,0.98216355,-0.062439807,-0.49042267,0.7440391,0.65705013,-0.19682871,0.5748912,-0.41117856,-0.28756955,0.104956985,-0.060600005,-0.2330524,0.2908794,-0.4751955,0.3402167,-0.90814173,0.36404392,-0.30015692,-0.8472336,-0.5960407,-0.026887447,-3.0458739,0.34580064,-0.08077313,-0.088668786,-0.12850843,-0.27671114,0.46499103,-0.43270248,-0.81157005,0.10138794,0.17501846,0.86998546,-0.1874491,-0.15331258,-0.18894829,-0.3096631,-0.25930855,0.11551621,0.19523808,0.2555814,0.033359263,-0.45378143,-0.024433825,-0.32061842,-0.3083323,-0.1906264,-0.8456921,-0.4352312,-0.008610623,-0.4677485,-0.5214494,0.68693435,-0.32631615,0.00064783223,-0.26252562,0.028886143,0.15894587,0.5077109,-0.13232273,0.049652927,0.03376304,-0.037208173,-0.059466656,-0.060147233,0.18622495,-0.10761627,0.12295415,0.504161,-0.39263064,0.20128536,0.5759239,0.85659283,-0.12146865,1.1023186,0.41657755,-0.283975,0.29485777,-0.10651518,-0.30801362,-0.6951314,-0.056279164,-0.051491637,-0.56668144,-0.21870944,0.1422291,-0.23564376,-0.86956036,0.7418577,0.066150926,-0.08392061,-0.013508433,0.39194712,0.38920385,0.021967279,-0.1300082,-0.19055803,-0.27345,-0.37427053,-0.40059862,-0.71737206,-0.38086456,-0.41490707,1.4702549,-0.17652075,0.18598714,0.12960292,-0.09872059,0.21811166,0.14284992,0.02892352,0.23615268,0.6282491,0.07739425,-0.55901605,0.28596404,-0.2420131,-0.04956859,-0.58402264,0.27962583,0.7216806,-0.6701466,0.36434856,0.45498943,0.16287708,-0.123618804,-0.6240138,-0.060681757,0.15425311,-0.27011415,0.63962096,0.38561302,-0.9873869,0.5835198,0.48319688,-0.2890606,-0.6810341,0.5089892,-0.04000674,-0.032249417,-0.10476167,0.43712887,-0.15767384,0.17764834,-0.08380441,0.34897113,-0.28645352,0.30530116,0.16447006,-0.11043334,-0.031415448,-0.18795879,-0.06893522,-0.67381376,-0.035212018,-0.36832026,-0.28168815,0.041606374,0.03333259,0.10330479,0.37904435,0.08619659,0.44548026,-0.39459667,0.020690829,-0.2888388,-0.45388672,0.41507468,0.65164214,0.39933914,-0.3893321,0.7409606,0.08963632,-0.15623225,-0.412399,-0.082621746,0.48925206,-0.041617293,0.46350494,0.06313272,-0.07847619,0.20307732,0.8138777,0.16546239,0.56452745,-0.000625687,-0.055120658,0.053183798,0.19575344,0.47327366,-0.115028374,-0.55951464,0.06606257,-0.17673667,0.20432499,0.47098374,0.0170407,0.2860206,-0.17225535,-0.20933516,-0.05331295,0.060763817,-0.0009723859,-1.5906767,0.5880295,0.24795873,0.63055545,0.49948913,-0.030928824,0.3238768,0.59855187,-0.27632508,0.037014723,0.21757713,0.11810671,-0.27165887,0.46561816,-0.75790876,0.4114678,-0.09031326,0.03557532,0.14842579,-0.11272425,0.50971496,0.8594866,-0.14401436,0.2421961,-0.09444898,-0.28599283,0.1604686,-0.28673938,0.061973657,-0.42463306,-0.353789,0.9358387,0.46389732,0.57038414,-0.28627357,-0.028481666,0.10401348,-0.15512861,0.1658584,0.059679396,-0.017918902,-0.17720427,-0.6113257,0.08464378,0.6980441,0.08906318,0.07857781,-0.0014991207,-0.33153588,0.30877063,0.031307016,-0.027838191,-0.19003473,-0.8171095,-0.116174445,-0.4837169,-0.37894318,0.15361063,-0.14874151,0.16519271,0.31956023,0.043337945,-0.36214405,0.17530395,0.3450285,0.67650205,0.0477116,-0.11901443,0.09851669,0.2793588,0.17555192,-0.19099928,-0.14685826,-0.252682,0.28724405,-0.6205511,0.33884278,-0.28183666,-0.5907852,0.3070998,0.061557148,0.008941685,0.40398762,-0.2699504,-0.090239726,0.093496874,-0.015368507,-0.010194585,-0.36364916,-0.19264853,0.24515055,0.15485011,-0.1602786,-0.09464055,-0.04139192,-0.119544245,0.4166403,0.06962364,0.30097347,0.44234982,0.19953094,-0.49097148,0.036148112,-0.0065974593,0.7991567,-0.14029714,-0.2686672,-0.46300945,-0.15782759,-0.25570172,0.34542474,-0.043384455,0.23876241,0.100328885,-0.40986028,0.9734666,0.03753699,1.0251368,-0.072669216,-0.53032625,0.08306708,0.56760794,-0.047825716,-0.106539465,-0.27061257,0.85375947,0.4961383,-0.22589943,-0.061326537,-0.53923905,-0.024950292,0.16608095,-0.22462256,-0.27121085,-0.080481075,-0.56892365,-0.050214946,0.18495762,0.45603678,-0.10476124,-0.17003724,0.33939907,0.5133089,-0.022924488,0.078355536,-0.4587555,0.07445288,0.3779554,0.26949912,-0.050799403,-0.10786456,-0.47521713,0.19612841,-0.7068845,0.105858244,-0.17958513,0.12713031,0.022883058,-0.13993411,0.22729817,0.11977466,0.22873528,-0.33394447,-0.2184008,-0.09770851,0.43419114,-0.014267479,0.12930694,0.7454084,-0.31312147,0.13867201,0.10963821,0.33252186,0.8223224,-0.23947491,0.042547278,0.28813106,-0.3181315,-0.45644718,0.33102512,-0.29655376,0.11299341,0.04217335,-0.45058677,-0.5724906,0.22194615,0.32480344,0.14995582,0.0702408,-0.6049951,0.012123706,0.45693678,-0.28037772,-0.2130858,-0.35989386,-0.11302827,0.59207046,-0.20758192,-0.45093864,-0.031448465,0.2717537,-0.2607315,-0.38994431,-0.07343777,-0.55431396,0.30907637,-0.10591655,-0.2496684,-0.008742903,0.06197547,-0.54061586,-0.014122264,0.29453605,-0.26436496,0.17212765,-0.47400692,0.01758696,0.8006751,-0.30525213,0.32933554,-0.4744119,-0.7561754,-0.80348223,-0.10076981,0.38483652,0.21245632,-0.041328464,-0.65672356,-0.041359823,-0.043386105,-0.35029173,-0.06368672,-0.4549675,0.563026,0.23778902,0.3496308,-0.04754911,-0.9090604,0.19159266,0.07711441,-0.10029702,-0.2807382,0.61354196,0.09099395,0.761205,0.095356666,0.29579258,0.021989176,-0.75507516,0.31328353,-0.011694289,-0.054484036,-0.7624618,-0.18767957 +266,0.4774552,0.07755811,-0.6409768,-0.08471197,-0.14882444,-0.0069275605,-0.16382706,0.36030155,0.30162218,-0.41011995,0.06571677,-0.027892385,-0.0032710151,-0.07631644,-0.14639725,-0.57964426,0.08835163,0.28290686,-0.4171194,0.37748012,-0.44732377,0.2497996,-0.17463692,0.23793419,-0.14856872,0.13285182,-0.035241853,0.0053720474,-0.17493396,-0.23303899,0.31514844,0.19966364,-0.69404346,0.20323278,-0.18447517,-0.18903682,-0.047862973,-0.4020924,-0.47479054,-0.70169276,0.2456292,-0.79657733,0.5462067,0.18221386,-0.33553186,0.36331457,-0.1625042,0.26859814,-0.17595302,-0.025105609,0.17857075,-0.2571109,-0.29881066,-0.28681093,-0.12735678,-0.2042739,-0.6230296,0.13328645,-0.45807776,0.05228166,-0.30808464,0.17112446,-0.39863157,0.11621189,-0.2628211,0.49833032,-0.28858885,0.035341233,0.25950247,-0.023242008,0.10943995,-0.3691513,0.05043614,-0.136745,0.12980449,-0.1444725,-0.22266494,0.17700934,0.20913239,0.5542031,-0.084308706,-0.27389067,-0.12859373,-0.0035053492,0.12894726,0.42138958,-0.2424123,-0.33558586,-0.15418704,-0.033628423,0.056019165,0.114021406,0.0906666,-0.1618716,-0.012213647,0.23123612,-0.31841168,0.6460691,0.6686477,-0.17691398,-0.09957998,0.33223322,0.6681647,-0.058937646,-0.057881232,0.1420569,0.033970404,-0.43303794,-0.3236802,0.06888105,-0.19446893,0.3054095,-0.25349328,0.10465859,0.6732736,-0.3937896,-0.20089102,0.31742337,0.07751016,0.18399653,-0.36066642,-0.23049094,0.44975457,-0.5649956,0.021014009,-0.25922176,0.9009536,0.017805148,-0.7841523,0.43492392,-0.49532843,0.19305624,-0.15929069,0.772124,0.76137555,0.45868847,0.20716058,0.6842609,-0.49025673,0.08790077,0.018055629,-0.44677565,0.2306402,-0.080321185,0.20600879,-0.3869583,-0.22541095,0.05739078,-0.246796,-0.017956521,0.33739367,-0.5149154,-0.3607718,0.073422156,0.6900982,-0.2879664,-0.16221368,0.7202913,1.1434897,0.8678344,0.17445973,1.1393753,0.3276231,-0.10409855,0.057257622,-0.25794214,-1.0012966,0.34854105,0.12482087,-0.35873052,0.16146223,0.2509644,-0.17503473,0.34359685,-0.46209636,-0.12684183,-0.1241587,0.4388509,-0.18541193,-0.21376951,-0.33259693,-0.101206064,0.10908972,-0.021256438,0.17936747,0.3401075,-0.25889674,0.082734875,0.095834926,1.0463662,-0.024464233,0.08082148,0.10825915,0.33379886,0.15222839,-0.22741517,-0.12931497,0.30843145,0.24817829,0.17321041,-0.5817264,0.13717355,-0.09789176,-0.448848,-0.23687944,-0.21756269,0.11215121,-0.23934321,-0.39813143,-0.05312299,-0.20066373,-0.3985896,0.4660994,-2.5860946,-0.2567018,-0.016485175,0.40378803,-0.07443186,-0.29166394,-0.06238297,-0.4932079,0.33544487,0.26278472,0.43989828,-0.6720257,0.52878225,0.36011335,-0.4184897,0.0071129375,-0.6861109,-0.03583703,-0.09070661,0.24857643,0.07562796,0.012801545,-0.0675305,0.10111337,0.3053036,-0.05240467,0.12109649,0.32683563,0.47741154,-0.052362256,0.26269394,0.07932186,0.5496846,-0.3012568,-0.28427595,0.25708845,-0.51448435,0.21961871,-0.05084799,0.08674332,0.2912204,-0.38447475,-0.83624107,-0.49499568,-0.23477206,1.1876236,-0.17996553,-0.37936231,0.19382715,-0.3203899,-0.46231326,0.025769625,0.38325614,-0.23815031,-0.07886083,-0.88794965,0.03441008,-0.1299315,0.2489269,-0.13814038,0.077819064,-0.46031395,0.5851225,-0.2820927,0.43897268,0.29737014,0.17605248,-0.44016084,-0.4488244,0.07080657,1.0735883,0.32139516,0.124014296,-0.36550966,-0.15608506,-0.17645785,-0.016465532,0.05315841,0.52371424,0.77953976,-0.043250393,0.09444778,0.36635968,-0.15870723,0.022146974,-0.08248358,-0.3802177,-0.16927148,-0.16468684,0.6816312,0.6611908,-0.32496944,0.46622658,-0.15985455,0.2970623,-0.2765874,-0.38838133,0.46499515,0.6455111,-0.051162843,-0.28631026,0.7091417,0.34510812,-0.50240546,0.5153501,-0.5182214,-0.30987778,0.26799363,-0.067748815,-0.42450666,0.22233663,-0.3262128,0.21620753,-0.87499875,0.5065985,-0.3423422,-0.7595533,-0.5777146,-0.11306653,-3.4834695,0.31191343,-0.23666473,-0.012383255,-0.11144189,-0.03962683,0.27631873,-0.33701417,-0.5164818,0.1527209,0.17589433,0.7379927,-0.12539978,0.12796094,-0.19925272,-0.18971299,-0.31322366,0.18145467,0.4513765,0.240818,-0.051311407,-0.35046965,-0.10902548,-0.21715342,-0.19378243,0.06738527,-0.6067664,-0.38734978,-0.09060303,-0.5707021,-0.35219264,0.6303166,-0.21993504,-0.12936111,-0.3917644,-0.06850612,-0.03870707,0.5415905,0.038476206,0.08978031,0.0052654403,-0.14551766,-0.18498254,-0.28626844,0.24339107,-0.06108864,0.47668156,0.46785477,-0.3248263,0.036203247,0.48786074,0.6551077,0.117308006,0.80644757,0.35638216,-0.15824886,0.39194182,-0.15638511,-0.22678158,-0.56369126,-0.22207583,-0.072417185,-0.46305576,-0.31969357,0.00054402865,-0.4073918,-0.6869454,0.49736923,-0.1255252,-0.082772665,-0.040146213,0.53670806,0.42518324,-0.07818217,-0.14792986,-0.13743037,-0.21482828,-0.3074337,-0.25759882,-0.6902357,-0.3704147,0.08820678,1.0004812,-0.12839718,0.21694836,-0.0017886332,0.0027640548,0.029816492,0.17398931,0.08843524,0.2576343,0.5761012,-0.19010136,-0.46056303,0.3697696,-0.38193485,-0.09265328,-0.8519877,0.061404355,0.62817115,-0.6892387,0.6578003,0.4625432,0.1172378,-0.064970195,-0.53619546,-0.15365075,0.11439293,-0.2642338,0.51297456,0.33905378,-1.0891808,0.62872696,0.39373335,-0.21323583,-0.6722621,0.48360634,0.08192873,-0.11980902,-0.08110193,0.40473637,-0.20346835,0.10500228,-0.09476393,0.27161065,-0.32231167,0.22674908,0.14358751,-0.18992434,0.48071668,-0.1900827,-0.14343785,-0.49136892,-0.15747021,-0.6759757,-0.19491817,-0.05007546,-0.047439992,0.085226655,0.3517969,0.035673786,0.41398406,-0.3412688,0.017685285,-0.054181844,-0.4919092,0.42506316,0.47869775,0.5052942,-0.36856705,0.62580776,0.059313204,-0.088058956,-0.20625985,0.14946078,0.63497007,-0.10823947,0.38643435,0.37819603,0.05341118,0.22037813,0.79435635,0.11606567,0.6375704,0.19035502,-0.03944504,0.19734213,0.08466915,0.2657081,-0.13874058,-0.4770573,0.054182548,-0.118394375,0.28225833,0.38242975,0.14008075,0.41455474,-0.20485334,-0.29087624,-0.05105704,0.27517146,-0.02837723,-1.2428877,0.4016443,0.22617148,0.6650297,0.34476417,0.008818214,0.16622236,0.45356628,0.007415414,0.20389774,0.13108349,0.015592135,-0.41985497,0.49947637,-0.7671003,0.3901649,-0.14962777,-0.011590077,0.059490938,-0.1598282,0.38714728,0.8022321,-0.11732753,0.13305795,-0.13424237,-0.22752774,0.2689195,-0.25813562,0.33918986,-0.4345119,-0.107273936,0.8720358,0.4951263,0.31742492,-0.31456742,0.012361372,0.09658524,-0.06328457,0.059892263,-0.054838866,0.11270646,0.0032728675,-0.6466462,-0.26938698,0.58636016,0.25183985,-0.00741237,-0.011776294,-0.09028506,0.22815609,-0.19641936,-0.07565173,-0.0011091126,-0.62643665,0.019776294,-0.23706545,-0.45193177,0.37272665,-0.20802915,0.21500762,0.17774984,0.19250774,-0.44668713,0.2424643,0.18532057,0.57402974,0.054781977,-0.18575892,-0.2902775,0.27310136,0.24783213,-0.2602877,-0.10698198,-0.38888913,0.14698114,-0.6160354,0.5254043,-0.25352415,-0.47038585,0.13903268,-0.06009921,0.029022349,0.47128415,-0.16915968,-0.14230774,0.13852985,-0.17321476,-0.15449905,-0.18310682,-0.009857497,0.223823,0.3209085,-0.32073572,-0.04481352,-0.057987932,-0.12110967,0.28307623,0.123147376,0.1869631,0.48903033,0.353158,-0.36690024,-0.08885224,0.20596735,0.6461967,-0.089070104,-0.1852711,-0.40716282,-0.30847192,-0.15064944,0.26464608,-0.031766564,0.119613275,0.007993983,-0.2878774,0.7334324,0.16090728,1.0541309,0.14465344,-0.24376357,-0.07818254,0.48715138,-0.024152312,-0.10375898,-0.47094265,0.98095024,0.45410293,-0.25416318,-0.14222133,-0.45519215,-0.09817807,0.08449961,-0.15565589,-0.3955578,0.032233357,-0.7366522,-0.04481851,0.16559322,0.33294052,0.065974556,-0.020022942,0.22569458,0.4219799,-0.018278599,0.03657977,-0.64852583,0.049865264,0.15854342,0.28097633,-0.02280706,0.20994805,-0.28626734,0.31287718,-0.66818804,0.021401158,-0.114168055,0.06447435,0.007451368,-0.4596277,0.072777845,0.2375959,0.38675076,-0.25687483,-0.17090246,-0.13495038,0.30251947,0.27830535,0.11194522,0.7218544,-0.10716933,-0.039896447,0.06915929,0.4488534,0.86928815,0.018286854,-0.06421403,0.2770483,-0.23685272,-0.87083536,0.35905114,-0.29596573,0.21909055,-0.23486526,-0.37413734,-0.52615684,0.36774498,0.22472191,-0.118638135,0.10377914,-0.55247265,-0.047534414,0.15551385,-0.2821283,-0.13313755,-0.17772034,0.047303535,0.837223,-0.1946992,-0.25545004,-0.02696642,0.39108086,-0.2341117,-0.48284158,-0.12784751,-0.48717123,0.15833108,-0.11336883,-0.22485216,0.035837047,0.14133039,-0.3952606,0.3068646,0.2701176,-0.25273088,0.09992166,-0.1968753,-0.08087617,0.5496918,-0.1770105,0.24656664,-0.5388214,-0.54082394,-0.7923922,-0.27032754,0.22561084,0.056430954,0.013668776,-0.6458252,-0.12007254,-0.0067693167,-0.025680194,-0.0036821833,-0.45854467,0.3984282,0.18174376,0.24479805,0.03593406,-0.91761035,-0.038845003,0.108456366,-0.41478306,-0.57601374,0.5069336,-0.09814727,0.7343932,0.029844189,0.24790859,0.21918213,-0.52097803,0.1435399,-0.20705292,-0.10829617,-0.68843204,-0.009917663 +267,0.25454345,-0.38206726,-0.5430808,-0.23411474,-0.19402823,-0.0040979087,-0.052266814,0.7367414,0.12974882,-0.30746692,-0.14964613,-0.26068592,-0.13253494,0.272796,-0.27472478,-0.18888596,-0.13626947,0.27825955,-0.41721782,0.25200528,-0.44429618,0.29444307,-0.0806718,0.3535501,0.19176151,0.043853384,0.24987802,0.14392403,-0.09097141,-0.39148706,0.114579156,0.037237402,-0.5150574,0.29714274,-0.26642266,-0.53590834,0.04351793,-0.63168085,-0.37940907,-0.7936164,0.29127622,-0.8144369,0.6068908,0.06913078,-0.37093335,0.02061289,0.3150328,0.37531546,-0.10837658,0.031287055,0.28219765,-0.03721422,-0.03148525,-0.15647754,0.003939605,-0.30155912,-0.52791023,-0.07987105,-0.19215655,-0.057069976,-0.099828124,0.2079734,-0.31137258,0.2314126,-0.18756084,0.7120336,-0.38828617,-0.115266465,0.016561087,-0.054795872,0.33668032,-0.5608736,-0.20053951,-0.21722922,-0.042937957,-0.08102366,-0.23146553,0.39695016,-0.01416108,0.29405332,-0.29169255,-0.11199224,-0.19271488,-0.10988994,-0.17066464,0.5433328,-0.10097011,-0.3760601,-0.04767243,-0.12229911,0.21876375,0.053494237,-0.0057110777,-0.11102325,-0.03620132,-0.097519375,-0.34776628,0.36355937,0.5589963,-0.3032744,-0.0050797,0.25723186,0.4905525,0.075056516,-0.078005984,0.043784693,0.08356164,-0.59944797,-0.28783053,-0.18926767,-0.2033706,0.63099325,-0.1695464,0.36052135,0.4874963,-0.22581294,-0.14388639,0.1391995,0.34985152,-0.10684462,-0.24505575,-0.80297184,0.50477266,-0.49783796,-0.17264375,-0.18934989,0.94141513,-0.05261285,-0.6558255,0.3457098,-0.6136882,0.037937492,-0.15298912,0.5186127,0.3681133,0.6947955,0.383976,0.6411713,-0.2657445,-0.0075468896,0.12137027,-0.19992734,0.13282253,-0.32853433,-0.13426727,-0.33847886,-0.044737995,0.14961818,-0.16368338,0.02447623,0.4990948,-0.44015652,-0.20208366,0.2258128,0.6386236,-0.3382485,0.12382617,0.56285214,1.3333248,1.1206585,0.12528867,1.0504045,0.07662522,-0.2820988,-0.028481677,0.13389464,-0.9660598,0.26645917,0.31386805,-0.16762719,0.2632672,0.18491352,-0.113721706,0.4536546,-0.6834136,0.027047152,0.004692179,0.3466193,-0.04848774,-0.029378753,-0.65755767,-0.5021473,0.14142978,0.08229013,-0.080453396,0.3356491,-0.24190345,0.15585418,0.104596004,1.4640064,-0.09301416,0.07517024,0.09189664,0.53952557,0.12245884,-0.35908532,-0.09787334,0.10565394,0.2699854,0.19788113,-0.44515887,0.16859135,-0.016685594,-0.4684043,-0.1122602,-0.2595951,-0.00512335,-0.29980177,-0.4999846,-0.25450486,-0.070893094,-0.31290582,0.34816512,-2.5877125,-0.08034853,-0.051529717,0.41318908,-0.14861561,-0.31723318,0.02704762,-0.46291023,0.35886863,0.57448375,0.47780013,-0.6772384,0.39033395,0.53182876,-0.4310263,0.018392703,-0.64218646,-0.24163342,-0.06438698,0.22340429,0.10798404,-0.09064124,-0.04098501,0.31029618,0.39381212,0.010460635,0.1193314,0.30254242,0.30492884,-0.06942808,0.57090867,-0.04451924,0.33362997,-0.5898602,-0.20351581,0.20425217,-0.6038334,0.02681675,-0.046158694,0.10636804,0.5036043,-0.6545018,-0.93973315,-0.5170795,0.026507366,1.344549,-0.3250421,-0.31293535,0.31256709,-0.31478786,-0.35105214,-0.11252898,0.45229214,-0.31593117,0.029641401,-0.8309725,-0.1189355,-0.15068923,0.46764427,-0.10487215,-0.045605075,-0.5909399,0.56553996,-0.16262442,0.68817765,0.48894167,-0.012790352,-0.66062605,-0.5365337,0.008968107,0.89334583,0.5364355,0.15629455,-0.32499242,0.012354267,-0.39620826,0.06567061,0.1701497,0.39999074,0.8793955,-0.099152066,0.24369116,0.35985488,-0.107568964,-0.013300655,-1.3653934e-05,-0.34191465,-0.04239855,0.099186994,0.7301334,0.60045874,-0.08231935,0.20066532,-0.09849094,0.49097633,-0.33613873,-0.36381045,0.31816068,0.9380349,-0.0564973,-0.24429682,0.75491923,0.73574924,-0.28144732,0.5408926,-0.51320016,-0.43324608,0.2898473,-0.03305862,-0.4571845,0.26695022,-0.258967,0.15585463,-0.8963324,0.44789806,-0.19136688,-0.5036154,-0.78951967,-0.29523414,-3.1833014,0.21425065,-0.061720025,-0.31423038,0.10822652,-0.22127743,0.29065642,-0.6034694,-0.69687736,0.061145745,0.12751588,0.6806675,0.027801162,-0.11449371,-0.18508002,-0.23357186,-0.36355218,0.2544455,0.23619516,0.25952095,0.13044772,-0.61177313,-0.21919155,-0.3634204,-0.47642308,-0.025536457,-0.63583946,-0.553469,-0.09719081,-0.78860354,-0.4720502,0.7266078,-0.022227418,0.018037831,-0.1685529,-0.0740723,0.031459726,0.28152114,-0.002243191,0.1123908,-0.1163488,-0.16681674,0.029570555,-0.11637209,0.1961402,-0.02000294,0.41769704,0.28857622,-0.24735078,0.02799816,0.68212473,0.6631584,-0.20371553,1.0179703,0.30500454,-0.113264754,0.139426,-0.03017124,-0.24052444,-0.44644326,-0.16229275,0.014712816,-0.5143217,-0.1187489,0.11209111,-0.2840641,-0.8531926,0.66427004,-0.05293218,0.017039502,0.095595345,0.2442698,0.21536846,0.025931578,-0.11988817,-0.16846737,-0.08583887,-0.41101098,-0.3031307,-0.7865567,-0.20145097,-0.09339776,1.3726715,-0.15647689,0.13024053,0.19415846,0.07429327,0.19079712,-0.020988781,-0.07351838,0.3047459,0.40144944,-0.08537785,-0.62801516,0.35315838,-0.3458088,0.008358538,-0.38672996,0.11755409,0.63065237,-0.5675313,0.35299546,0.3657394,0.0895558,-0.3521969,-0.650771,-0.22000845,-0.012694013,-0.1501496,0.70276636,0.26378983,-0.84451735,0.4503182,0.21720871,-0.3398975,-0.71321285,0.53506124,-0.14101668,-0.26819146,-0.21721056,0.34733108,-0.14116473,0.13255617,-0.1791411,0.30573037,-0.3203698,0.2095391,0.10205004,0.025801789,0.4518458,-0.32456142,0.11082311,-0.63283956,0.02537331,-0.4593791,-0.33507392,0.13900463,-0.08227874,-0.17948562,0.4636527,-0.0679034,0.3603569,-0.26939544,0.0032188415,-0.07590234,-0.32425418,0.6679041,0.4817253,0.4805119,-0.38497895,0.63954115,0.05630386,-0.15242305,-0.53316885,-0.12966928,0.333554,0.039791394,0.34817585,0.06656475,-0.16979082,0.4870401,0.6681511,0.32840458,0.503559,0.028784249,0.055200864,0.06819476,0.13842385,0.32746848,0.119549915,-0.5077223,-0.0045639575,-0.3069528,0.1822783,0.42435232,-0.050042056,0.35926193,-0.2691564,-0.24972606,0.17434683,0.21006016,-0.396219,-1.3302718,0.4665262,0.044374492,0.68049836,0.6446245,0.1007182,0.11574235,0.6513226,-0.14961821,0.08184961,0.267999,0.40265578,-0.39829734,0.72509295,-0.57880986,0.562834,-0.10191526,0.012274114,-0.13241313,-0.10978861,0.51568997,0.57962865,0.06460102,0.16566579,-0.015383279,-0.23292932,0.100153044,-0.43998942,0.2675243,-0.5534216,-0.20270932,0.75321704,0.32388726,0.31693918,-0.11958493,-0.075828254,0.085686125,-0.16531952,0.28604132,-0.04263836,-0.09570557,-0.11108675,-0.74532425,-0.06494222,0.57015616,0.062107217,-0.037838217,-0.030858194,-0.23865089,0.13168366,0.079503134,0.04441517,0.08742495,-0.6823146,-0.09390004,-0.31193766,-0.23811834,0.37125653,-0.26407337,0.13316922,0.2128601,0.13646445,-0.418804,-0.07086208,0.44754377,0.547964,0.031172806,-0.015014112,-0.077114396,0.13353607,-0.06512317,-0.1860036,-0.007246101,-0.4865881,0.12332535,-0.45008707,0.4984459,0.007250863,-0.41319808,0.21158615,-0.06570713,-0.05066939,0.48313516,-0.0036744834,0.044972785,-0.083904505,0.0014386416,-0.017025892,-0.33896652,-0.27195585,0.27553284,0.07025913,0.023598442,-0.023456369,0.037730217,0.06069777,0.57980615,-0.12941907,0.39835805,0.42601553,0.059672266,-0.52822936,0.029378995,-0.46360832,0.70469224,-0.1097631,-0.0900268,-0.4890345,-0.25041643,-0.13191293,0.3156326,-0.17631598,0.34857076,0.08567437,-0.21146159,0.83775425,0.1480566,1.0952461,-0.14420156,-0.40738067,-0.07979052,0.6427236,-0.035668276,-0.13058202,-0.35550776,1.098232,0.46239337,-0.30258173,-0.26200575,-0.3937326,0.023258865,0.138456,-0.13608034,-0.5148305,-0.18872419,-0.74827397,-0.10986658,0.20428224,0.39975703,-0.03997399,-0.059630107,0.32772297,0.5925343,-0.025409097,0.31150037,-0.28296724,0.17809269,0.4165523,0.10434451,0.03738105,0.011156544,-0.54669636,0.21890974,-0.65981805,0.11829944,-0.30276138,0.13853736,-0.07837254,-0.40634727,0.023095557,0.093332455,0.23864086,-0.38282022,-0.16724166,-0.037282597,0.48743087,0.07886616,0.26600856,0.63612497,-0.24506679,0.14587338,-0.034306962,0.3634693,1.0313625,-0.3370673,-0.15316117,0.2549554,-0.36551946,-0.6905787,0.21901853,-0.3243321,-0.0007312894,0.03205862,-0.26648208,-0.57295394,0.30497652,0.30107445,-0.042946257,0.15459211,-0.55987847,-0.08988921,0.32877344,-0.23145965,-0.16474703,-0.52901244,-0.05882225,0.40277824,-0.16691044,-0.43411598,-0.12223033,0.35628337,-0.26274452,-0.5620781,-0.06649399,-0.5188362,0.26950222,-0.07741751,-0.3223295,-0.10904577,-0.035347663,-0.4340435,0.21871957,0.23216352,-0.20558289,0.1059523,-0.31661686,0.01509403,0.9662162,-0.012182847,-0.0031435401,-0.498604,-0.56185555,-1.07398,-0.18086687,0.58180887,0.09476167,-0.06301583,-0.6718019,-0.05525583,-0.16586098,-0.2570719,-0.21611877,-0.2342942,0.4307889,0.19165215,0.4067894,0.04667272,-0.746168,0.14881745,0.08275457,-0.20769677,-0.22474173,0.7773798,-0.0014951795,0.88355225,0.08686118,0.16512461,0.17504142,-0.54604363,0.28366318,-0.053846717,-0.23404074,-0.44855723,0.114226006 +268,0.25515553,-0.1966867,-0.41208756,-0.29867846,-0.44896117,0.16726035,-0.23658586,0.44846526,0.20281525,-0.39290845,-0.14534055,-0.07544453,-0.019163245,0.18524718,-0.106972136,-0.49251947,-0.16229174,0.10499724,-0.59649247,0.43770227,-0.53005874,0.3961018,0.039102037,0.33738363,0.047330316,0.3063145,0.38851795,0.026233098,0.3069794,-0.23423259,-0.057445794,0.14420201,-0.6052608,0.39007154,-0.35891452,-0.40549326,0.19930522,-0.18604434,0.01857998,-0.5641493,0.15741472,-0.7879445,0.55007327,-0.043607872,-0.1797752,0.21583648,0.48406497,0.19162875,-0.19575675,-0.16643555,0.19095016,-0.19696437,-0.13795058,-0.25802588,-0.16624933,-0.50137097,-0.4236308,0.03364493,-0.650408,-0.35488272,-0.2973598,0.25934163,-0.30813023,0.04353041,-0.15686522,0.33366325,-0.33878002,-0.00509653,0.20161664,-0.3210859,0.18868856,-0.57188314,-0.07087914,-0.1510127,0.3510214,0.04133301,-0.0088805305,0.35698524,0.22995673,0.4691422,0.23221998,-0.2631529,-0.240876,-0.39896035,0.050212022,0.38333055,-0.1285689,-0.15601276,-0.31266734,-0.089440435,0.3227001,0.37257275,0.1061461,0.0038185965,0.111559935,-0.36165848,-0.2670711,0.6546822,0.38792896,-0.38301015,-0.45233586,0.22909625,0.66378444,0.09133182,-0.4001358,-0.039834145,-0.054809228,-0.43871906,-0.2433265,0.019179128,-0.06870059,0.28930524,-0.11028186,0.040586695,0.81995326,-0.12017473,-0.06246516,0.06304395,0.0020893465,0.013208471,-0.36279276,-0.035386577,0.19875242,-0.6654896,-0.07601982,-0.31590018,0.69513035,-0.015928933,-0.60565275,0.4199967,-0.650191,0.1401638,-0.0020372719,0.5158985,0.42960504,0.5100679,0.11277837,0.69386894,-0.19113411,0.014791623,-0.100010686,-0.09803928,0.17875095,-0.3746415,0.1135203,-0.37395713,0.46668157,-0.15366602,0.3241864,-0.07638976,0.2900935,-0.5969122,-0.1411301,0.51980114,0.76549023,-0.2625362,-0.12449023,0.5790239,1.0699731,0.9747662,-0.16962965,1.3169609,0.05684047,-0.18727557,-0.026403138,0.07861039,-0.53774196,0.1523277,0.36388174,0.24149406,0.22701347,0.01572486,0.07125244,0.23167036,-0.27896217,-0.15801115,-0.08437743,0.3118715,0.12010724,-0.03087213,-0.45715427,-0.27114165,0.34070656,-0.09081764,0.2702903,0.17652409,-0.1777054,0.35188735,0.039243665,0.912615,-0.051661015,0.16359015,0.21554606,0.4764043,0.18296526,0.073049225,0.061210405,0.3965486,0.1504835,0.16421093,-0.54175013,0.3149965,-0.34029174,-0.43712243,-0.087118186,-0.5244098,-0.39653865,0.07831807,-0.25030854,-0.33530334,-0.21571581,-0.2926648,0.25713035,-2.9152424,-0.2948067,-0.20301203,0.21799631,-0.2219008,-0.065385886,-0.06076728,-0.46174464,0.3033811,0.38293815,0.4547052,-0.46743786,0.39165553,0.7919113,-0.5287412,-0.29000777,-0.50636226,-0.13344811,-0.06183639,0.6570244,0.13880892,-0.18355553,-0.3816376,0.19456935,0.7216597,0.1344564,0.298242,0.42198193,0.417956,-0.11770066,0.59549624,0.0037095894,0.56677145,-0.4784684,-0.113492765,0.39444816,-0.39110804,0.2960598,-0.32622382,0.022452572,0.50555414,-0.39284006,-0.82530683,-0.5563696,-0.3554192,1.1912012,-0.190399,-0.3562484,0.10709492,-0.24042736,-0.084911235,0.005629744,0.42166606,-0.03748088,0.27020338,-0.5562854,0.1552409,-0.10388418,0.2245388,-0.083569825,-0.07712337,-0.46852192,0.94524837,-0.037773278,0.51720715,0.1458777,0.1994756,-0.20805354,-0.20575555,-0.033469822,0.8218918,0.50002354,-0.07382298,-0.2250719,-0.27892622,-0.2524632,-0.20252614,0.0046981126,0.6419479,0.6323516,-0.06323714,0.16961806,0.36067513,-0.054353457,0.07087094,-0.13090485,-0.18351395,-0.20373571,0.10623461,0.44798508,0.72722775,-0.071743764,0.16163029,-0.0669887,0.3555907,-0.14439386,-0.5230646,0.32200432,0.31372732,-0.043673858,0.038194917,0.87657523,0.6356322,-0.4083345,0.48534563,-0.75651664,-0.39122653,0.70942384,-0.27329934,-0.48171556,0.020072797,-0.28281954,-0.09736198,-0.63435966,0.19840634,-0.45864725,-0.40778527,-0.30289972,-0.22586574,-3.2956512,0.34063396,-0.15837342,0.030140469,-0.51113623,-0.08739019,0.21797194,-0.5883518,-0.6494088,0.09207957,0.2472726,0.45961905,-0.13740472,0.08042974,-0.35896996,-0.3764533,0.05958885,0.3444368,-0.074074395,0.09330537,-0.34086296,-0.2681431,-0.028391758,-0.10031054,-0.38962594,0.1765574,-0.50255495,-0.36209598,0.030700123,-0.37393725,-0.17253838,0.641599,-0.39260614,-0.018409438,-0.30754474,0.09094892,-0.11253264,0.056509193,0.019546192,0.17172682,0.29096678,-0.14160888,-0.052444693,-0.44978067,0.6438544,-0.018247373,0.49349287,0.1576597,-0.1345702,-0.07730196,0.3281935,0.4744433,-0.14302045,1.0385004,0.082750574,0.04123644,0.49757507,-0.13237204,-0.43938938,-0.5660792,-0.06626731,0.02255108,-0.34296545,-0.44835648,0.21971373,-0.2155125,-0.8151464,0.7242592,-0.07242813,0.28245082,-0.24442701,0.33906934,0.23172761,-0.21577843,0.009232941,-0.16024478,-0.0958815,-0.5104349,-0.3956289,-0.75629044,-0.43849155,0.049847152,0.9838298,-0.4315841,0.076019876,0.08742174,-0.09109185,0.2402876,0.28691366,0.31342146,0.23839836,0.62546104,0.16135652,-0.6565669,0.53062516,-0.039079923,-0.18919308,-0.22416604,0.21471684,0.63344926,-0.72930217,0.3689866,0.51057225,-0.02101705,-0.019445807,-0.59856755,-0.011633324,-0.12216226,-0.22074513,0.4794909,0.07038782,-1.046513,0.5133619,0.07863464,-0.41416702,-0.8123161,0.34105828,-0.25127482,-0.10242259,-0.27261522,0.32120243,0.3382772,-0.05070745,0.15624194,0.14831017,-0.38681853,0.16210797,-0.07129576,-0.038364545,0.45265317,-0.07361826,-0.28582242,-0.66716814,0.040759664,-0.5766093,-0.3555212,0.3342564,-0.20566587,-0.1977082,0.46784958,0.06197242,0.44641376,-0.14159708,0.1732239,0.18881333,-0.4327036,0.3809979,0.38936362,0.42016473,-0.3787069,0.55892557,0.12357711,-0.08000908,0.063147545,-0.111130476,0.38764933,-0.16187616,0.4684296,-0.18472885,0.029867344,0.39019,0.73044604,0.21328676,0.27474615,0.061495874,-0.04230622,0.42766532,-0.14782281,0.03625823,-0.030112125,-0.65894026,0.07586237,-0.023645878,0.02918312,0.46341094,0.18764639,0.46113953,0.11633899,-0.032722984,0.06273954,0.18646318,-0.20003681,-0.9361987,-0.031193087,0.15240227,0.8824312,0.40677294,0.21367896,0.010207255,0.78131104,-0.29160175,-0.062656455,0.52683824,0.098101676,-0.24027729,0.81199217,-0.39570796,0.41647515,-0.32023677,-0.068896085,0.059547108,0.119149365,0.44222435,0.9216407,-0.19335563,-0.069972716,0.025971415,-0.14859004,0.07912898,-0.36371335,0.16248824,-0.22622813,-0.1284614,0.65662974,0.3043009,0.31379178,-0.33216542,-0.02834489,0.064343475,-0.16255379,0.23211135,-0.18096708,-0.08109378,0.022245735,-0.28149247,0.042183246,0.4912665,0.24554805,0.30132654,-0.20058638,-0.40229544,0.1532195,0.057892084,0.11176769,0.053769868,-0.58790326,0.19194539,-0.026333908,-0.6471284,0.6005459,-0.15670164,-0.075202264,0.34892967,-0.105475456,-0.015524119,0.10401984,0.11447116,0.49440444,-0.028107742,-0.067382075,-0.31670555,-0.10842493,0.06537081,-0.3533591,0.15358424,-0.3888924,0.28602627,-0.5937108,0.48526993,-0.21253853,-0.5366456,0.10029838,-0.25574502,-0.14572714,0.44220492,0.1891769,0.035333563,-0.026851118,-0.2065342,-0.22318156,-0.1593493,-0.19737077,0.1986345,-0.0018329421,-0.1487787,-0.20727472,-0.32898927,-0.08001151,0.33654535,-0.013577677,0.2916932,0.19605888,-0.11710695,-0.2801852,0.38067952,0.03271612,0.36233974,-0.02070733,0.056124583,-0.1302252,-0.28784496,-0.24954556,0.57130235,-0.07959921,0.025966525,0.17520912,-0.30880928,0.80335885,-0.18383169,1.0273099,0.014276721,-0.37082878,0.15961947,0.6782561,-0.059616398,0.12852459,-0.40007272,0.867443,0.53644735,-0.20751162,-0.20133577,-0.4493189,0.010960023,0.1637164,-0.42130122,-0.10526329,-0.12928171,-0.53188556,-0.33482042,0.18044071,0.24402583,0.21620707,-0.10552464,0.032432564,0.16871877,0.14469649,0.6259678,-0.60143566,-0.27985516,0.24382329,0.26049435,-0.2677118,0.16417153,-0.3493434,0.4089702,-0.77856207,0.23586214,-0.471737,-0.088295996,-0.49632147,-0.22450064,0.054071482,-0.13452335,0.28260913,-0.20958717,-0.43484473,0.01662516,0.16532008,0.05704552,0.23558338,0.5678134,-0.29871318,-0.071713895,0.017246911,0.49908185,1.0074017,-0.24629152,-0.18269612,0.16958404,-0.35502282,-0.6236436,0.26311827,-0.5787378,0.084724806,0.06145213,-0.42748252,-0.15624748,0.30024707,0.39168668,0.021708885,0.1571597,-0.60719305,-0.12607016,0.12612525,-0.27243173,-0.20670378,-0.08149194,0.16593117,0.7785129,-0.21243478,-0.2133165,-0.10329809,0.43564382,-0.31272903,-0.8406102,0.01650542,-0.35853466,0.5198391,0.13383222,-0.14301375,-0.07075108,0.13353355,-0.5722836,0.15834947,0.40469286,-0.32813928,-0.027890896,-0.3970313,0.25928047,0.7806256,0.014584293,-0.14502841,-0.3917532,-0.5009942,-0.8980794,-0.41265365,0.06363133,0.17257781,-0.09724533,-0.15777259,-0.10358065,-0.2352478,-0.22560513,0.17847352,-0.47004166,0.20897694,0.15961818,0.5120968,-0.2955936,-1.0507402,0.060581367,0.19626057,-0.00021928549,-0.5678937,0.46153346,-0.25863716,0.7062046,0.22008024,-0.26665887,-0.029691659,-0.35197803,0.29505172,-0.3856841,-0.08145597,-0.58784634,0.14979358 +269,0.66734296,-0.29792315,-0.68798035,-0.14355241,-0.2187432,0.010019444,-0.075561054,0.3545662,0.4115931,-0.52918607,-0.05889061,-0.05817233,0.23897314,-0.016560277,-0.17249556,-0.4231286,0.12078485,0.22894807,-0.41787472,0.6476387,-0.34694767,0.1027318,0.067005016,0.35439026,-0.13025856,0.19385822,-0.09461259,0.03439927,-0.1390263,-0.035164174,-0.08146825,0.36773777,-0.74821883,0.29741958,-0.14461733,-0.20211278,-0.1387301,-0.37595537,-0.28168514,-0.83567053,0.22476391,-0.9861868,0.5332412,0.31124985,-0.43515816,0.028868387,0.13865441,0.26770815,-0.2640263,-0.057630602,0.10657299,-0.21878265,-0.16375762,-0.21458225,-0.12651004,-0.46625447,-0.648013,-0.040197812,-0.5445681,0.07501483,-0.20979585,0.21950941,-0.17053936,-0.09006715,-0.22608262,0.7096944,-0.29398015,0.02181676,0.2992855,-0.2797159,0.6656906,-0.66910386,-0.092315875,-0.21917601,0.07552355,-0.16184811,-0.6011173,0.06225084,0.37859464,0.59761524,-0.052180443,-0.28757405,-0.4699615,0.11122503,0.11925904,0.20008735,-0.17099734,-0.62854594,-0.16632175,0.011915331,0.13628203,0.16377448,0.2871449,-0.5273009,-0.019702235,0.07841512,-0.24582845,0.5273883,0.5569535,-0.36089277,-0.19917025,0.26422724,0.87073827,0.08671749,-0.10967403,-0.14605872,0.05620562,-0.6512959,-0.12500389,0.38405347,-0.32161835,0.7491212,-0.17895806,-0.0028653939,0.5219222,-0.33652863,-0.31512454,0.44451022,0.12441218,-0.028962672,-0.5962758,-0.3102879,0.38466525,-0.5030734,-0.013348843,-0.37965968,0.615936,0.0464965,-0.7329109,0.2614093,-0.51626456,0.089566864,-0.1285815,0.53928584,0.77269816,0.6117272,0.2804939,0.90673494,-0.541317,-0.0758395,-0.22860259,-0.33453688,0.35198462,-0.23016918,0.12798396,-0.50565785,-0.070765935,-0.13236736,-0.3276324,0.0731749,0.38873097,-0.6394691,-0.21767287,0.3027301,0.5842908,-0.1835882,-0.31901547,0.5982565,1.1408211,1.0345635,0.2693995,1.3677925,0.072377905,-0.10130942,0.16259561,-0.00852409,-0.8105552,0.38332787,0.316087,0.12934652,0.33115005,0.16933538,0.056944888,0.4326638,-0.4328513,-0.0048488975,-0.21918242,0.43733826,0.051454965,-0.15899156,-0.3861123,-0.17423137,-0.059450123,0.17486525,-0.062956,0.19348331,-0.29552516,0.12543696,0.1608757,1.3178042,-0.2964275,-0.03604106,-0.019557891,0.32979414,0.3287594,-0.13216701,-0.005932192,0.47274947,0.16726579,0.46525493,-0.5124721,0.04726556,-0.2174509,-0.4042265,-0.13164856,-0.29171282,0.099486865,-0.10025511,-0.4424139,-0.18558311,-0.046494175,-0.3443817,0.589523,-2.6563642,-0.08104221,-0.029770022,0.32985404,-0.32623965,-0.45945033,-0.10384368,-0.48931065,0.263741,0.34927547,0.5428125,-0.7734892,0.344595,0.3751203,-0.64388084,-0.05275948,-0.8144881,-0.21560758,-0.1661811,0.28101072,0.3173936,-0.19604214,0.098141044,0.16787875,0.55372167,-0.023318449,0.010761117,0.2809126,0.16828275,-0.21541424,0.6051037,-0.023003886,0.51423043,-0.24794875,-0.28727704,0.3722882,-0.47970644,0.23107727,0.19269802,0.060058344,0.55488724,-0.33601752,-1.0215048,-0.99096555,-0.009124239,1.0229836,-0.22486454,-0.5377791,0.07426169,-0.6068871,-0.5115497,-0.059900954,0.40022424,0.07563177,0.07027815,-0.9682732,0.0006566371,-0.08215789,0.51399344,-0.007284593,-0.08943677,-0.51343614,0.85339755,0.010565554,0.5258826,0.50047857,0.21906845,-0.46146348,-0.37217972,-0.07314595,1.1837198,0.30747995,0.16669677,-0.32277367,-0.13857335,-0.39485207,0.30141228,0.12529017,0.6879634,0.53359216,-0.17556441,-0.006306452,0.31926748,-0.11943152,-0.05332172,-0.045575332,-0.4510169,-0.25474086,-0.017003788,0.5411184,0.97541,-0.30418783,0.29008597,-0.12203476,0.2861967,-0.041222636,-0.59438807,0.685517,1.0851401,-0.15808432,-0.4502301,0.73549956,0.46547988,-0.4380933,0.61839384,-0.635153,-0.35454345,0.20346981,-0.07728114,-0.36672768,0.19469096,-0.5030687,0.22481062,-0.8251691,0.41792837,-0.39789057,-0.2985265,-0.5835394,-0.18685041,-3.0305092,0.38915506,-0.086389065,-0.075017504,-0.19354261,-0.05493878,0.1699814,-0.7180353,-0.63746834,0.13158834,0.14667094,0.5085427,-0.18656397,-0.15784012,-0.18282723,-0.44812676,-0.075938806,0.2683725,0.12566088,0.17957373,0.02052194,-0.5040005,-0.076339774,-0.06259187,-0.28203186,0.0838485,-0.734422,-0.577863,-0.17660461,-0.6144324,-0.41489485,0.7306908,-0.3692809,0.022641147,-0.21872075,0.11733063,0.14875081,0.27985758,-0.067302234,0.26318082,0.026985893,-0.015214008,-0.07589888,-0.23443882,0.009709935,0.08536935,0.09265951,0.5342485,-0.22514008,0.264025,0.6821043,0.8275363,-0.25773147,0.84873223,0.64019233,-0.046134915,0.25966635,0.012523711,-0.34988773,-0.6383666,-0.16004176,-0.102003485,-0.65495086,-0.067104526,0.19072656,-0.3393533,-0.79549474,0.60223025,-0.0025944065,0.028199509,0.165218,0.60720056,0.63520354,-0.45075926,0.036484342,-0.0036924034,-0.30185804,-0.53456247,-0.421427,-0.46947336,-0.27902135,0.0660558,1.0404825,-0.22721612,0.124214835,0.29270878,0.12827753,0.1742597,0.2618916,-0.046709526,0.057893377,0.65699416,0.067697145,-0.42868063,0.36454523,-0.17841537,-0.18090926,-0.5017765,0.5412416,0.54578876,-0.66149193,0.67217714,0.38113102,-0.021355035,-0.2753801,-0.6158766,-0.22914724,0.05687407,-0.18488626,0.5458135,0.38868967,-0.9212523,0.20679253,0.25387743,-0.22274087,-0.5867359,0.566575,-0.18774669,-0.4211378,-0.4552435,0.43302557,0.060893435,0.22579814,-0.24154234,0.14744236,-0.49485275,0.01516745,0.32304177,-0.03196935,0.22083814,-0.09514129,-0.069569714,-0.87457013,-0.011133577,-0.5949153,-0.37392488,0.5181847,0.040606398,0.117507644,0.18588586,0.1839183,0.4024117,-0.37512675,0.12167245,-0.10582922,-0.25825024,0.57509667,0.5093465,0.57964855,-0.5562583,0.49531397,-0.013941172,-0.03998199,-0.31131104,0.004541099,0.5216959,0.025058405,0.46844077,-0.0020578105,-0.038326126,0.33248857,0.70142823,0.08099394,0.39042425,0.03300979,0.04425313,0.14459261,0.06925821,0.34382543,-0.14712408,-0.62057847,0.2612917,-0.39336303,0.13386126,0.3524394,0.018954262,0.23007576,-0.034227256,-0.30548155,-0.1308678,0.33424306,0.08113403,-1.4853948,0.29372895,0.30965933,0.7840226,0.6283272,0.10109365,0.02907625,0.65697515,-0.17083369,0.19020343,0.2984614,-0.07558683,-0.30127493,0.550149,-0.8221505,0.46326497,-0.14303546,-0.001719296,-0.101212464,-0.26923436,0.41958317,1.0050378,-0.29193893,0.13109067,-0.116395004,-0.1401561,0.17112036,-0.5521973,0.12008426,-0.6090221,-0.48964572,0.7149417,0.46075293,0.7572022,-0.26754656,-0.09614595,0.16483861,-0.10294505,0.24305458,-0.19080837,0.036368325,0.18242204,-0.6753531,0.10613936,0.51607925,0.06298938,0.11894404,-0.12572816,-0.124822944,0.19251406,-0.014561787,-0.14170301,-0.11135521,-0.7026894,-0.17926876,-0.35148337,-0.34723726,0.73032445,-0.2348602,-0.010725384,0.14738162,0.060123812,-0.27534142,0.4781634,0.29867157,0.77288324,0.23393331,0.046403587,-0.546002,0.3483559,-0.011566904,-0.09610861,0.027491877,-0.288999,0.17254792,-0.5881818,0.36486563,-0.15626703,-0.58751196,0.0037041008,-0.031902496,0.19057679,0.65596443,-0.33317468,-0.42380178,-0.04892453,-0.19807325,-0.14755072,-0.1463827,-0.0013711428,0.33030188,0.06402423,0.026497401,-0.0980958,-0.15113294,-0.07606316,0.1802603,0.1774354,0.30163956,0.38815752,0.17702867,-0.4421327,0.13633005,0.1510207,0.6665346,-0.13532926,-0.20633669,-0.19668019,-0.37478605,-0.4753085,0.030492002,0.05875137,0.3132674,0.19574372,-0.15825723,1.0160861,0.05948494,1.4823428,-0.076220416,-0.3486645,-0.026894122,0.584278,-0.083589695,-0.026604056,-0.41922235,0.9839938,0.4486018,-0.20800997,-0.088534735,-0.48209152,-0.036704708,0.00788791,-0.15461524,0.12353476,-0.04483221,-0.7632163,-0.21738863,0.23945688,0.44408986,0.2659666,-0.13177209,0.1381832,0.33923134,-0.053546607,0.21529157,-0.45004225,0.10535377,0.19940609,0.42046392,0.022305219,0.12500823,-0.39931628,0.2995235,-0.56072,0.019414088,-0.2550329,0.11204943,-0.15658249,-0.2796334,0.2923046,-0.032877166,0.36396965,-0.48175207,-0.4186318,-0.17860979,0.5595281,0.24431546,0.09244258,0.8134992,-0.05849569,-0.06463169,0.09310884,0.51225895,1.0574998,-0.3921859,-0.060659643,0.28704345,-0.4453626,-0.73160815,0.2973673,-0.38362575,0.28259596,-0.010315935,-0.35669217,-0.5539411,0.17267872,0.19181556,-0.0411488,0.044706147,-0.6707017,0.041899323,0.21916099,-0.45417896,-0.03231789,-0.07327784,0.23515171,0.48237845,-0.16280304,-0.41297355,0.11058404,0.2888716,-0.06623327,-0.48813525,-0.23103024,-0.40290782,0.22495122,0.117506824,-0.4621748,-0.05718595,0.10681168,-0.66702765,-0.013070817,0.16523373,-0.20317914,0.26078248,-0.43660906,-0.14579095,0.8498602,-0.0386619,0.2590142,-0.39977947,-0.52372724,-0.85204935,-0.04613437,0.18146504,-0.10327328,0.020960242,-0.7326698,-0.08946928,-0.15858632,-0.104869045,-0.123468876,-0.30943432,0.71756434,0.13760161,0.39480445,-0.1511582,-0.9160586,0.20915298,0.18701184,0.13428394,-0.66211545,0.4255601,0.04086053,0.8423147,0.03260571,0.22764201,0.48231032,-0.7303602,0.05010371,-0.2483811,-0.10938952,-0.6844538,-0.0938208 +270,0.45384988,-0.09524033,-0.40732893,-0.21025448,-0.3141072,0.18412444,-0.050376322,0.20807791,0.23221757,-0.14279862,0.16040035,0.0783851,-0.07177692,0.50051534,-0.21385384,-0.9783025,-0.07474349,-0.063900456,-0.6333643,0.5651518,-0.44270688,0.4032641,-0.050284717,0.2968523,-0.0015423639,0.24083956,0.23884413,0.10812045,-0.10240158,0.12722501,-0.120169275,0.45587644,-0.36408028,0.38608843,0.15799597,-0.21159384,-0.057094313,-0.31657067,-0.10976909,-0.59639835,0.35248095,-0.45983166,0.41684547,-0.14459203,-0.35732526,0.11290743,0.19340947,0.13126275,-0.39975378,0.0009589876,0.14368545,-0.04622346,-0.054822154,0.19484065,-0.20603706,-0.5287585,-0.5974244,-0.093326375,-0.8084968,-0.13637035,-0.106141165,0.18713069,-0.39653024,-0.09343224,-0.13514192,0.6985274,-0.35030344,-0.15002167,0.45487195,-0.19792579,-0.053296693,-0.54693,-0.11423685,0.019707704,0.3222768,0.13660261,-0.14029115,0.4463431,0.30138597,0.41540787,0.071334824,-0.42031017,-0.2209892,-0.17644528,0.046204835,0.45922112,-0.072826214,-0.2471553,-0.22935595,-0.043466214,0.16543616,0.147662,0.07740207,-0.15523736,-0.07552428,-0.017179051,-0.0016736047,0.26368335,0.3247342,-0.3874409,-0.33619326,0.6157457,0.33833668,0.07557799,-0.22322676,0.20025918,-0.11835663,-0.47417757,-0.15718831,0.08145722,-0.007902359,0.23652472,-0.11430577,0.3004275,0.70621043,-0.0800179,0.0957446,-0.1374064,-0.1588621,-0.053742476,-0.33842587,-0.02913847,0.06978865,-0.34366402,-0.045720737,-0.10291972,0.73871857,0.24267352,-0.7365925,0.33562732,-0.3663352,0.10976154,-0.090667605,0.56201226,0.8268512,0.25527954,0.11480234,1.0146823,-0.42557058,-0.024495427,0.10107032,-0.18244742,-0.037381154,-0.035591614,0.38659468,-0.6668652,0.106468186,0.18341026,0.052267723,0.11307082,0.30935138,-0.3748463,-0.33359507,0.020072877,0.5140515,-0.30013213,-0.23245999,0.6642481,1.1587225,1.0096279,-0.025920404,1.013384,0.3481972,-0.14867525,0.052624844,-0.40672487,-0.47506598,0.13013095,0.44086242,0.2538574,0.5226478,0.039343722,-0.06536027,0.57047075,-0.15968452,-0.062009756,0.16279475,0.43797508,0.06142824,-0.2564674,-0.4436925,-0.15716743,0.25234428,-0.099941574,-0.00010420169,0.37821272,-0.21480457,0.4731334,-0.007931194,1.3552004,0.06886153,0.120911755,0.022827348,0.3398795,0.31383696,-0.28639373,0.026786039,0.29749313,0.35541162,-0.15411659,-0.48649994,0.12400267,-0.48841748,-0.47391796,-0.18659557,-0.44166782,-0.16670778,-0.10601066,-0.32305828,-0.099069096,0.0844565,-0.3430731,0.33776632,-3.0528543,-0.15294676,-0.16431154,0.26113138,-0.2651865,-0.18195312,-0.31975406,-0.42180008,0.28126153,0.45666274,0.25447246,-0.46191263,0.2817918,0.3162849,-0.39310017,0.049495168,-0.56703,0.032857664,0.02332282,0.26477566,-0.15663385,-0.050194036,-0.06704243,0.41769236,0.5312585,0.26220387,-0.080114074,0.18211225,0.32019517,-0.07572172,0.37700084,-0.0582995,0.57426184,-0.33342934,-0.014660982,0.43646336,-0.622971,0.42939976,-0.11627383,0.11964867,0.51060224,-0.30331174,-0.9076108,-0.38018623,-0.3507257,1.1581553,-0.5038509,-0.31775257,0.2982478,0.009777402,-0.032328617,0.16479869,0.37960148,-0.024993857,-0.04248945,-0.55774814,0.17724808,-0.094121076,0.024236139,-0.22476503,0.11763295,-0.45527357,0.49039274,-0.07948039,0.75931776,0.24380262,0.1893679,-0.1383919,-0.40334982,0.020925717,0.6766391,0.46105188,-0.024758318,-0.06109696,-0.049315657,-0.14214537,-0.2659121,0.13515913,0.5987855,0.6191048,0.008692869,0.15597306,0.22538118,-0.12997985,0.16017246,-0.008594645,-0.25976652,-0.08730652,0.16702816,0.457126,0.45796332,-0.2714389,0.40236238,-0.026299877,0.060413957,-0.115748756,-0.54172486,0.55871385,0.5975198,-0.23077215,-0.22624995,0.5111379,0.34358692,-0.24956392,0.3976784,-0.49788687,-0.30221015,0.6283165,-0.17703809,-0.3018407,-0.06421724,-0.26600662,-0.047225337,-0.80097336,0.07938332,-0.14039771,-0.5646426,-0.48687235,-0.24510968,-3.121357,-0.049203437,-0.11667514,0.007247075,-0.033992775,-0.03972096,0.1838998,-0.60043275,-0.583346,0.09640265,0.016274137,0.4811661,-0.09478011,0.07231665,-0.21927723,-0.2454926,-0.25829285,0.39115748,-0.04973331,0.33756706,0.16040711,-0.32467422,0.13105968,-0.03562955,-0.55099404,0.020641038,-0.44461316,-0.38802928,-0.048493464,-0.55445236,-0.008713946,0.71349496,-0.26840204,-0.11460099,-0.19513153,0.026655162,-0.14469719,0.24042836,0.17412548,0.27606696,0.07052217,-0.087174736,-0.15231584,-0.37820646,0.3015607,0.12430916,0.4538321,0.5539041,-0.020125683,0.25081435,0.72511375,0.4977155,0.10913236,0.67852086,0.061002553,-0.07570924,0.33854774,-0.35227537,0.018204616,-0.59049845,-0.43066338,-0.15313594,-0.45349145,-0.49255317,-0.261882,-0.42316088,-0.76870805,0.2950196,0.08067303,0.4676194,-0.3790558,0.28460434,0.30923966,-0.21886875,0.07674428,0.010871353,-0.23452584,-0.47454193,-0.38645408,-0.56543565,-0.5540651,0.35337752,1.0189527,-0.4204297,-0.17414631,-0.1718287,-0.31921658,-0.010004108,-0.014531353,0.38954735,0.13697326,0.16513704,0.06782337,-0.7446865,0.42030635,-0.42390585,0.1471453,-0.47900102,0.097790755,0.43879256,-0.43756294,0.56945574,0.17475282,0.22712764,0.12256818,-0.7588315,-0.13147385,0.19371466,-0.018415943,0.47894096,0.27757725,-0.5919338,0.486204,-0.011885123,-0.27427387,-0.5754201,0.38054007,0.060792368,-0.11902827,0.08825853,0.3620037,0.24183919,-0.1443067,-0.034198675,0.26823366,-0.61524713,0.39386144,0.16522308,0.065835975,0.5064687,0.009195398,-0.36379388,-0.46011993,-0.22950779,-0.5346445,-0.17142607,-0.016074581,0.035436977,0.17618386,0.10703725,0.0072663897,0.40704253,-0.30509424,0.22055614,-0.007347954,-0.33774614,0.4819103,0.5055743,0.37311012,-0.5489672,0.47002846,0.1601454,0.08052798,-0.01608239,-0.009620867,0.49586496,0.24696371,0.28952032,-0.17131232,-0.09432394,0.16491,0.64497524,0.080554925,0.14382505,-0.075052485,-0.37406555,0.1669266,0.0704739,0.044603836,-0.03289927,-0.31838742,-0.17849329,0.0071497518,0.14937592,0.41533026,0.19701445,0.25365806,0.06408072,-0.0783517,0.254838,0.08664439,-0.13752861,-0.92799705,0.44301254,0.19263114,0.7419315,0.48725647,0.0006380166,-0.089822486,0.39110282,-0.23895948,0.06725926,0.57469016,-0.32502335,-0.37759215,0.6472431,-0.36975506,0.6463731,-0.16666497,0.05803191,0.13862629,0.2959144,0.3268686,0.8861903,-0.094362155,-0.046670295,-0.018831534,-0.29871488,0.08058386,-0.22998418,0.04862109,-0.52938694,-0.2612485,0.528802,0.37975615,0.2593473,-0.20711033,-0.071941994,0.05308191,-0.27819052,-0.009158313,-0.19605131,-0.10896749,-0.25706786,-0.47779825,-0.45269352,0.49216798,-0.11380552,0.012347422,0.02472507,-0.27637535,0.21265456,-0.034916546,-0.0011343871,0.03304064,-0.68972826,-0.010023334,-0.27562305,-0.5304548,0.41647345,-0.47635296,0.222532,0.19566886,0.008613052,-0.3149208,0.22037268,0.025501218,0.72965676,-0.16158569,-0.2817021,-0.34219572,-0.074515276,0.16621868,-0.3433601,-0.049643468,-0.26082715,0.21194315,-0.46271196,0.5712308,-0.16769716,-0.19689102,-0.13523029,-0.27826047,0.02743409,0.3926303,-0.333508,0.0647496,-0.11664192,-0.06321566,-0.39285082,0.02326909,-0.39702627,0.3117668,-0.019209398,0.024471572,-0.016456153,-0.14975594,0.0016194582,0.16259968,0.07717316,0.04975454,0.24688137,-0.1475563,-0.36882442,0.120040104,0.19018818,0.39243054,0.19270542,0.059810523,-0.3768027,-0.2176578,-0.41617733,0.4259772,-0.25446907,0.20398414,-0.072225094,-0.45073608,0.6362575,0.124637075,1.1477611,-0.005553407,-0.26136163,-0.08468808,0.53459424,0.11416155,0.05499115,-0.20949437,0.95041275,0.62751716,-0.013506219,-0.1178626,-0.4677003,-0.120491095,0.3739079,-0.25592557,-0.20615828,-0.10156398,-0.6493563,-0.17348978,0.104201555,-0.058129538,0.19217263,-0.15354478,-0.24331091,0.020433733,0.34214646,0.36973193,-0.66792554,-0.0902965,0.27500662,0.15011522,0.04822536,0.2812464,-0.4168845,0.3356708,-0.90571386,0.35314772,-0.21836582,0.15662302,-0.24722998,-0.19639175,0.23738466,0.09119594,0.29400992,-0.05965709,-0.3780295,-0.027016087,0.5943031,0.33380884,0.15003355,0.7895232,-0.17591393,-0.088591084,0.1954813,0.6101197,1.259014,0.065414205,-0.07245908,0.15014389,-0.26587024,-0.905564,-0.0012103915,-0.42543712,0.0076610106,-0.20445634,-0.28254622,-0.4406808,0.123706244,0.13434806,0.01964331,0.18186514,-0.44167492,-0.23690076,0.1181832,-0.38049632,-0.2718307,-0.37883678,-0.09994737,0.76254547,-0.4199663,-0.19058558,0.09588815,0.28001183,-0.15005982,-0.69421864,0.19557926,-0.22320363,0.38977104,0.22119477,-0.31541237,-0.18482132,0.20032085,-0.45188966,0.27675417,0.38225105,-0.32760304,-0.0039116316,-0.1920022,-0.19103572,0.9368109,0.08517303,0.2218179,-0.6535165,-0.31244588,-0.79541034,-0.36412832,0.10194767,-0.06349365,-0.14478822,-0.4904177,-0.11282977,-0.12181492,0.10558864,-0.022505283,-0.3937084,0.26123902,0.08612023,0.3051655,-0.00011727427,-0.86005414,-0.055761497,0.028440455,-0.05650461,-0.34175095,0.5013782,-0.2133816,0.7480096,0.052652802,-0.085524954,0.1455786,-0.5187269,0.37122473,-0.32090217,-0.056770317,-0.4081131,0.20097198 +271,0.24579717,-0.14658682,-0.46320915,-0.095869824,-0.19628394,0.28422418,-0.031334113,0.55604786,0.20471337,-0.27470914,-0.1219757,0.09348547,-0.005707774,0.30103305,-0.17132306,-0.45468208,-0.052514877,0.14175943,-0.35773233,0.51481277,-0.2860472,0.37658224,-0.28460333,0.36884913,0.08243155,0.35068774,-0.0122299045,-0.040080722,-0.2781281,-0.24511719,-0.048821963,0.46402764,-0.4459595,0.29355332,-0.15607123,-0.2706973,0.05517083,-0.41586837,-0.40574735,-0.55521816,0.17792149,-0.61595637,0.4863588,-0.117133565,-0.18953378,0.5627405,0.102636226,0.13654377,-0.06094211,-0.18506654,0.045834262,-0.1171455,-0.13854882,-0.2956188,-0.25372288,-0.45559496,-0.5010063,0.0633967,-0.33820596,-0.21672685,-0.26193187,0.10708259,-0.32113343,-0.071110494,0.01688941,0.39636064,-0.42274645,0.16188443,0.058205187,-0.18744394,-0.137188,-0.5087637,-0.11030424,-0.05345383,0.24034132,-0.22456264,-0.016160654,0.2762412,0.14268295,0.34905553,-0.114629254,-0.17481408,-0.41638115,-0.18097599,0.109355845,0.55565685,-0.18576707,-0.44979137,-0.026171466,0.06278635,0.1424396,-0.02694577,0.13522479,0.060705964,-0.13666402,-0.030961914,-0.2585296,0.41712552,0.3668533,-0.4322422,-0.4169538,0.37846997,0.46857008,0.1722987,-0.22107589,-0.23591474,-0.044277605,-0.36859372,-0.18401709,-0.13819724,-0.16782995,0.33234784,-0.1447758,0.21275184,0.5229411,-0.21017572,0.0031261656,0.19384238,0.10966523,0.052959908,-0.087496184,-0.26288727,0.124181986,-0.29266733,0.12284434,-0.09979606,0.7591276,0.09722564,-0.54775345,0.4070244,-0.5064131,-0.030261619,-0.10410516,0.39762634,0.44949132,0.51832396,0.2788191,0.43802518,-0.17803974,0.10754539,-0.01848546,-0.31068897,-0.0059344852,-0.25551125,-0.08098738,-0.53565174,0.22288518,0.14976086,-0.017242905,0.14808138,0.26937565,-0.46124104,-0.1502124,0.2723415,0.8870734,-0.2710986,-0.27809185,0.60856014,0.98285323,0.7662825,-0.066434726,1.0025299,0.20812218,-0.22934376,0.114959314,-0.36434636,-0.6295307,0.23436359,0.32031527,-0.49750784,0.36526474,0.17705749,0.103461996,0.21244773,-0.20944871,-0.08066644,-0.19957212,0.17581709,0.26668796,-0.030300502,-0.44215414,-0.3355174,0.07557922,-0.052565802,0.3546771,0.3081307,-0.21495579,0.4115884,-0.0001235434,1.537015,0.08198945,0.049806774,-0.058203876,0.53914815,0.20885542,-0.024420831,-0.064606175,0.36057577,0.22147356,0.0002562276,-0.43973675,0.2645371,-0.16003425,-0.5441952,-0.17019452,-0.40239355,-0.17656788,0.1720084,-0.3079838,-0.12851831,-0.13207066,-0.12289996,0.37047714,-2.8027496,-0.09653532,-0.026376162,0.24673355,-0.2303691,-0.38261768,-0.09528696,-0.3790225,0.2557184,0.29933795,0.48156747,-0.49326906,0.3975615,0.3542773,-0.5312627,-0.22909772,-0.4166904,-0.05683083,-0.04680422,0.43060806,-0.021211224,0.019717712,0.055398952,0.122186996,0.44203326,-0.05890003,0.13416657,0.31460875,0.391654,0.012364136,0.30576953,-0.043960176,0.66162825,-0.22269814,-0.21873166,0.3485845,-0.26374298,0.410857,-0.07076987,0.13329308,0.28478193,-0.26343295,-0.8693676,-0.55737954,-0.026903927,1.3877697,-0.09695341,-0.34418747,0.090235345,-0.45395142,-0.3899776,-0.042861056,0.25983384,-0.19748743,-0.23298843,-0.6486152,0.1627628,-0.069219254,0.13670886,-0.008322247,0.07726274,-0.3555889,0.6015534,-0.035191108,0.45910946,0.12006621,0.18920313,-0.23267166,-0.32805333,-0.021863341,0.7382879,0.34149885,0.103470884,-0.2334194,-0.28210834,-0.20723204,-0.033768144,0.05412901,0.5068597,0.4161058,0.03834201,0.019121375,0.110568285,-0.06437623,0.11222686,-0.22220562,-0.13004728,-0.11424066,0.08664663,0.5521002,0.3943545,-0.22948778,0.49332318,-0.04355996,0.2616761,-0.094743095,-0.36698034,0.3865945,1.0250765,-0.28187162,-0.27608365,0.6585912,0.47950724,-0.29621342,0.27937478,-0.5624481,-0.25968742,0.34323815,-0.2809913,-0.35045582,0.0995925,-0.18747246,0.115661755,-0.9109708,0.22095035,-0.18291971,-0.5264912,-0.52046204,-0.027510703,-3.487447,0.0641934,-0.07157832,-0.18864462,-0.1506588,-0.121852465,0.14258786,-0.60019165,-0.49461618,0.116862066,0.10733471,0.6162811,0.012386901,0.06785528,-0.18170404,-0.39857313,-0.31071255,0.16625921,0.006735146,0.3681291,-0.1075755,-0.48089296,0.012978946,-0.11862743,-0.34932277,0.07381531,-0.5967805,-0.35231924,-0.109263115,-0.5098304,-0.13885686,0.6277482,-0.4311503,-0.020700762,-0.29612812,0.09372682,-0.13610572,0.25366277,-0.017020078,0.078081794,0.21672145,-0.10185406,0.21690424,-0.36012834,0.449059,0.01034918,0.48214895,0.37770694,0.013149304,0.08339034,0.57073647,0.5735253,-0.0006517257,0.7132844,0.38530254,-0.15216693,0.3424572,-0.2449801,-0.28309315,-0.40638906,-0.2928389,0.067317374,-0.276501,-0.41217354,-0.12550585,-0.27165475,-0.8127719,0.53089964,0.00082350627,0.00710898,-0.055061765,0.37146038,0.58104557,-0.11893481,0.119037114,0.0067544603,-0.15519355,-0.52116835,-0.3310761,-0.49619594,-0.31591293,0.102835886,0.95900124,-0.27931514,0.09912995,-0.11288273,-0.19547936,-0.03481598,0.0986549,0.1471566,0.18184707,0.45712143,-0.16422768,-0.5366158,0.37921348,-0.2024831,-0.118541256,-0.4479975,0.10014941,0.48917097,-0.6122666,0.48836845,0.38079858,0.0012607767,0.056075595,-0.3637388,-0.15946753,-0.06471344,-0.1724812,0.22814922,0.28365758,-0.8441334,0.422972,0.23959598,-0.36625177,-0.65010786,0.4538257,-0.09617933,-0.21882303,-0.15377326,0.2679288,0.31005198,0.012659497,-0.14219753,0.15957175,-0.31064728,0.21512787,-0.04073899,-0.009518428,0.29361334,-0.2022675,-0.06743635,-0.687784,0.05422934,-0.38388592,-0.4120688,0.18425317,0.11487909,0.12111634,0.2298709,-0.010700247,0.3044336,-0.48061687,0.058933564,0.03850493,-0.3535253,0.32897156,0.26467726,0.52510685,-0.39161506,0.42802456,-0.017369937,0.057210702,0.17094283,-0.0033393076,0.51697934,0.06903335,0.2922973,0.20811228,-0.22107546,0.14135759,0.8233029,0.20213996,0.40880147,-0.0014775736,-0.18572651,0.26917377,-0.027125362,0.0427442,0.02333327,-0.47656354,-0.053136587,-0.23233652,0.06943976,0.54086405,0.19615872,0.2996536,-0.13130738,-0.28969055,0.14401896,0.06637522,0.12871048,-0.9229373,0.3668565,0.11493269,0.80349874,0.21469013,0.12928748,0.12645216,0.6747362,-0.17052257,0.13489847,0.35718462,-0.026596291,-0.5741334,0.44585842,-0.5682912,0.47147846,-0.014554105,-0.11627442,0.09855523,-0.14647785,0.38616768,0.7765598,-0.24357268,0.023722364,0.2132919,-0.3660105,-0.0028851798,-0.29023027,0.074465975,-0.57191604,-0.10242955,0.57387716,0.46529818,0.3700088,-0.22303107,0.11102333,0.03021649,-0.024675308,-0.018745555,0.052700125,0.12666616,0.04563401,-0.5593737,-0.092334926,0.53922486,0.14808369,0.1557937,-0.03329299,-0.22898553,0.27576062,-0.17113303,-0.15735976,-0.062191702,-0.5225665,0.14149395,-0.0963722,-0.58325356,0.4883177,-0.021452565,0.17585795,0.1168062,0.058078256,-0.28027773,0.36355087,0.15779673,0.63589233,-0.022984222,-0.112879105,-0.3951528,0.079233214,0.044577207,-0.15630631,-0.030135155,-0.29016978,0.065524824,-0.3474719,0.25078517,-0.20724384,-0.33139747,-0.081077136,-0.15158269,0.12783477,0.3839094,0.022058044,0.032920934,-0.12738745,-0.12058357,-0.27277046,-0.2153383,-0.10530512,0.30298042,0.17949489,-0.2953723,-0.232625,-0.24993229,-0.1580257,0.37951928,-0.08695657,0.34749055,0.3834121,0.1370782,-0.19924174,-0.17253372,0.13588543,0.39620194,-0.23088877,-0.04903147,-0.353637,-0.22929862,-0.17392111,0.31922075,-0.18619598,0.14592783,0.16307159,-0.36588544,0.6349682,-0.12721159,0.97131115,0.019159148,-0.29367188,0.1844462,0.4498817,0.09479026,0.06076691,-0.38710663,0.8819863,0.3784526,0.07879947,-0.18614085,-0.43128482,0.02545762,0.1044303,-0.17143796,-0.16110186,-0.071790285,-0.55717075,-0.24436042,0.30152726,0.22734472,0.17814258,0.0023725785,0.20052862,0.12313751,0.104991876,0.3930857,-0.3817862,-0.22103834,0.29511175,0.25327414,-0.083580635,0.2490829,-0.44422117,0.2813469,-0.511612,0.07986663,-0.22797914,0.08812172,-0.25828207,-0.1990029,0.12906666,0.1051021,0.3348128,-0.19633843,-0.37279233,-0.24973209,0.30206487,0.022964586,0.061304577,0.304701,-0.20876524,0.12207001,0.042703208,0.4700172,0.7422163,-0.104615055,0.0653829,0.27314308,-0.23483784,-0.4768483,0.20890555,-0.2691246,0.25996447,-0.011342345,-0.10054456,-0.486456,0.3140974,0.2815628,0.0898362,0.0003995065,-0.39222386,-0.13470836,0.14577372,-0.33668548,-0.1437823,-0.19509114,0.058077477,0.70629585,-0.23646148,-0.17156975,0.034491163,0.35723358,-0.07644645,-0.40265962,-0.01110581,-0.35532552,0.31089434,-0.03979724,-0.33166978,-0.24926415,-0.032557864,-0.38488477,0.24540417,0.39607117,-0.3679144,-0.05684621,-0.26115406,0.12297462,0.81261337,-0.1379319,0.22947869,-0.45625407,-0.45050806,-0.84149116,-0.44502264,0.33448496,0.15585314,-0.14611678,-0.48308197,0.107813634,-0.031394154,-0.4613754,-0.1113679,-0.4436831,0.3428307,0.0602862,0.22947672,-0.105436936,-0.8932409,0.06638295,-0.032198958,-0.22358002,-0.4989309,0.37096277,-0.16574033,0.956117,0.081065096,0.05331933,0.14816426,-0.29201943,-0.03807681,-0.23482838,-0.11607174,-0.55415195,0.17140903 +272,0.42148414,-0.076404944,-0.4031541,-0.06551619,-0.23945116,-0.06683946,-0.076744124,0.60178894,0.22420996,-0.45301265,-0.116609745,-0.088415496,-0.13730279,0.2038467,-0.14941703,-0.36412433,0.22635871,0.16061227,-0.34099585,0.66273755,-0.4511669,0.37654716,0.059336003,0.29368,0.23623523,0.12888367,-0.008519879,0.11491615,-0.04474819,-0.39075089,-0.1943238,0.30896604,-0.52132356,0.33443117,-0.2476781,-0.5068136,-0.09696691,-0.47559085,-0.14593045,-0.767326,-0.012662475,-0.64236295,0.58611494,0.17821115,-0.33893225,0.07668761,0.20697124,0.16711156,-0.12940086,-0.035413817,0.0810754,-0.07835682,-0.08816617,-0.2524434,-0.06890099,-0.26197997,-0.6203356,0.049711384,-0.4651655,0.0021853447,-0.38139433,0.123504676,-0.34124076,-0.12650733,-0.09943554,0.48264027,-0.3806591,0.019913765,0.02330028,-0.23466237,0.2145589,-0.59615433,-0.057360455,-0.28374702,0.060059097,-0.22323667,-0.35481498,0.3172758,0.36258242,0.5058798,0.10218699,-0.20411858,-0.32625535,-0.119232304,0.013163447,0.40416014,-0.13838969,-0.53835905,-0.13596094,-0.113509536,0.30606925,0.20452884,0.256311,-0.1303655,-0.12380346,-0.009042378,-0.36151412,0.24951905,0.43501168,-0.45245692,-0.27216223,0.31329912,0.5056813,0.092562206,-0.12512971,0.075442,0.030867733,-0.5178921,-0.3009249,-0.093932465,-0.22341846,0.47825608,-0.22268051,0.2165537,0.60138416,-0.16118166,-0.052979715,0.2856249,0.16178179,-0.042995527,-0.40511608,-0.30891997,0.30060914,-0.6203597,0.1577074,-0.15146434,0.7897981,0.05763781,-0.80533767,0.2676791,-0.61459553,0.04714579,-0.03828831,0.4875188,0.630935,0.5151296,0.40078416,0.59361243,-0.3155104,-0.08952929,-0.26668602,-0.19661811,0.041947797,-0.17787226,-0.053956058,-0.43905193,-0.05273241,0.05975072,-0.09318013,0.15464845,0.60503095,-0.50742096,-0.1481645,0.2876865,0.5318873,-0.31683886,-0.14129587,0.7644979,1.0164064,1.04515,0.022057258,1.0646174,-0.003102972,-0.09053353,0.1410127,-0.085989274,-0.5288691,0.2129058,0.3480194,-0.22189723,0.1628736,0.13115194,0.06457686,0.33167845,-0.3229316,0.025990317,-0.03523055,0.17808525,-0.048746154,-0.2191334,-0.39067957,-0.49092534,-0.13506004,0.13254626,-0.06909853,0.37086588,-0.18944247,0.2953419,0.14477171,1.5234852,-0.0945251,0.0935585,0.10296957,0.5033897,0.2715458,-0.22055103,-0.06780012,0.25854543,0.16714028,0.17039111,-0.46568683,-0.0006757791,-0.097487524,-0.56689626,-0.17285186,-0.3284937,-0.15751457,-0.17981383,-0.43025643,-0.2623939,-0.14824107,-0.4708279,0.5283286,-2.6124842,-0.24446979,-0.014215559,0.3296344,-0.22136602,-0.52538496,-0.1629731,-0.38576004,0.42991924,0.18551174,0.50673574,-0.6662168,0.46648118,0.60940975,-0.5801367,-0.23717,-0.58405066,-0.129403,-0.067530885,0.21670991,0.055257943,-0.17300175,0.0036066954,0.07356303,0.68371403,-0.06723995,0.23757014,0.3378326,0.24307063,-0.14407101,0.5269074,-0.025693692,0.5260905,-0.27180177,-0.2832418,0.32011223,-0.4031629,0.25226864,-0.0930357,0.03327091,0.4676062,-0.57233745,-0.9920308,-0.6968208,-0.22511172,1.162732,-0.22056805,-0.30302683,0.28274363,-0.38935786,-0.33412635,-0.0681789,0.55704063,-0.0907947,0.030319352,-0.6257334,0.06888847,-0.1375292,0.19579762,-0.0077340933,-0.059069753,-0.5503341,0.8023259,-0.005827849,0.6042362,0.3007965,0.1338058,-0.61637247,-0.40352264,-0.014881547,1.2327157,0.47346812,0.21567108,-0.25623372,-0.21188071,-0.54796803,-0.023230039,0.18808328,0.5377646,0.6565557,-0.11744415,0.15734753,0.33369583,0.090666756,0.03411854,-0.14904208,-0.26303595,-0.10074114,0.26429752,0.66990155,0.5921736,-0.121807024,0.3404735,-0.053200927,0.24527581,-0.3064651,-0.5645004,0.41265073,1.0490806,-0.12924841,-0.17771414,0.8515917,0.56899637,-0.07060128,0.49884275,-0.51452416,-0.45982215,0.30488414,-0.10577244,-0.29303277,0.1790969,-0.38088834,0.029024573,-0.83525634,0.2188905,-0.373043,-0.61050075,-0.4429499,-0.057714507,-3.1641703,0.2774764,-0.15891376,-0.058176097,-0.09819314,-0.2898543,0.2198054,-0.64791447,-0.49448013,0.001963166,0.19695957,0.75523466,-0.13496915,0.040328067,-0.17447196,-0.47602066,-0.26277506,0.22040984,-0.07628934,0.29418927,0.046379052,-0.4075519,-0.10897764,-0.0498041,-0.4510432,0.06777349,-0.57786983,-0.50933945,-0.13956627,-0.49994665,-0.36473733,0.72260374,-0.4313183,0.11422823,-0.21705921,-0.15307607,-0.009912381,0.2515834,-0.06281029,0.014748862,0.020857783,-0.10725172,-0.11173828,-0.23094834,0.14802745,-0.0056335856,0.31836542,0.42702627,-0.2834205,0.158128,0.61639553,0.6414331,-0.27407634,1.0200818,0.3792813,-0.1381105,0.33122414,-0.09006017,-0.25180423,-0.5807387,-0.24666229,-0.14117494,-0.44421747,-0.26269227,0.06834774,-0.28810507,-0.8355774,0.6079591,0.09521464,0.08209905,-0.07420668,0.35818836,0.39169824,-0.15832075,-0.16629232,-0.20185448,-0.20088148,-0.47190526,-0.32465586,-0.5965467,-0.37043682,0.15506504,1.1559024,-0.41125697,0.04611918,0.21790287,0.08883098,-0.05585154,0.12742773,0.07638817,0.022291243,0.3923874,-0.06503873,-0.50473446,0.35798484,-0.07513886,-0.107679844,-0.30276513,0.31106818,0.65359086,-0.6666318,0.48529613,0.27964827,0.064441375,-0.1380611,-0.66618866,-0.07999261,-0.0983895,-0.27099675,0.5540639,0.38582215,-0.942929,0.4376367,0.31197688,-0.18711184,-0.76246345,0.5192759,-0.12138247,-0.1605881,-0.2664468,0.41796783,0.25089902,0.16166005,-0.10656473,0.28621918,-0.5002358,0.2984992,0.19473876,-0.11804784,0.24224915,-0.26518485,-0.027043076,-0.76644295,0.04174467,-0.4323994,-0.5025128,0.20081595,0.08918156,-0.12256555,0.4600191,0.044840768,0.36153856,-0.34675047,0.14147197,-0.009908771,-0.2321423,0.4112693,0.42890522,0.5845938,-0.35464376,0.52061176,0.09317577,-0.037702266,-0.32936653,-0.05472041,0.34735262,-0.07214646,0.44623485,-0.044106185,-0.1976493,0.33468226,0.7383512,0.1705171,0.3029023,0.03543155,0.06525307,0.06017447,0.07238125,0.2645375,0.05765664,-0.6383777,0.11032307,-0.26074713,0.19435832,0.63539577,0.2448872,0.21515721,-0.06822895,-0.10521196,-0.031069107,0.2331581,-0.16308719,-1.3832968,0.32911697,0.13779607,0.70628536,0.75608826,0.040553708,-0.01521161,0.62627465,-0.22375521,0.16911784,0.24937366,0.06651611,-0.3765822,0.5969889,-0.7935969,0.45121786,-0.028174158,0.024526192,-0.09905301,-0.17375126,0.4902131,0.83376706,-0.04943786,0.050288443,0.011234677,-0.32325986,0.032021802,-0.42833847,0.06983964,-0.54380643,-0.1665117,0.8513601,0.36290786,0.4263594,-0.14795192,-0.053308163,0.07985198,-0.1898451,0.10638012,-0.034260187,0.1288577,-0.065272614,-0.46308178,0.0013449123,0.65820515,-0.025128864,0.17842586,0.14160404,-0.26710555,0.25257486,-0.0473786,-0.087308176,-0.045203403,-0.6482799,-0.036513373,-0.44438392,-0.2494484,0.46109167,-0.1774602,0.046913944,0.29451862,0.07294308,-0.06306647,0.42001274,0.30984354,0.44646052,0.09973162,-0.032836527,-0.1224596,0.37460503,-0.04162085,-0.21655084,-0.11655978,-0.13961302,0.13354096,-0.7688906,0.2431643,0.012865126,-0.3960969,0.09621574,0.018070672,-0.009114066,0.38341168,-0.08394078,-0.13650346,-0.10660766,-0.24363644,-0.13657176,-0.31484875,-0.14027971,0.36806998,0.07815453,-0.03958187,-0.009204123,-0.16414389,0.0068651163,0.20643273,0.03646621,0.34161294,0.25263983,0.059123747,-0.34655255,0.17930737,0.03740882,0.4766514,-0.20334522,0.0821495,-0.25014803,-0.174971,-0.38101193,0.029632183,-0.09648883,0.3293862,0.071667105,-0.12487991,0.9132395,0.0016145065,1.1526955,0.02712991,-0.3895602,0.065968364,0.36867613,-0.09824991,-0.045331523,-0.27083367,1.090654,0.48978442,-0.12627871,-0.16771907,-0.36978754,-0.15669648,0.2055603,-0.20503047,-0.2742339,0.07859205,-0.68393517,-0.21439545,0.21757618,0.22743784,0.11310367,-0.14643973,0.049063973,0.42978242,0.06742854,0.21327035,-0.5031929,-0.038239975,0.39195457,0.32427377,0.037340414,0.06635017,-0.47398156,0.36873466,-0.7181642,0.22559126,-0.1179024,0.19957127,-0.35985392,-0.281395,0.3219846,0.17189291,0.31442624,-0.20279922,-0.41045573,-0.15156385,0.60312015,-0.0770233,0.13086484,0.6259609,-0.35317868,0.050348744,-0.105565324,0.35699508,1.0816208,-0.1734897,-0.1820263,0.31759992,-0.3581249,-0.5903243,0.32548255,-0.28927648,0.080475286,0.09224352,-0.3210365,-0.35197705,0.2811021,0.24240865,0.2525509,0.17065272,-0.70697916,-0.069482476,0.17611727,-0.36191928,-0.15053734,-0.19479983,0.095498964,0.638114,-0.25625932,-0.40366474,0.11298116,0.20517462,-0.27789566,-0.5786656,-0.14222048,-0.28325772,0.20546411,0.13186105,-0.39402983,-0.04093601,0.114953525,-0.47144347,-0.107679404,0.26357508,-0.16640654,0.20168826,-0.56655794,0.07798689,1.004516,-0.13846707,0.23216102,-0.3214783,-0.61221564,-0.7197778,-0.28240588,0.38577893,0.14089498,-0.06821175,-0.6075226,-0.104229435,-0.24370201,-0.26458842,0.04035946,-0.22963649,0.4709904,0.1725754,0.24916665,-0.05534269,-0.71297866,0.28269002,0.19665088,0.049716953,-0.5378162,0.36864325,-0.10219024,1.02689,0.16483314,-0.06756039,0.35447514,-0.71244514,0.06884758,-0.13936229,-0.02020696,-0.58844334,-0.074637584 +273,0.62466854,-0.17467098,-0.36381137,-0.16267124,-0.13292828,-0.14101972,-0.16904472,0.51446366,0.3377231,-0.43275285,-0.24754375,-0.28087926,0.08407062,0.27603224,-0.12754099,-0.7289093,-0.024919642,0.14204513,-0.45757368,0.5296087,-0.50353867,0.4028356,0.016097903,0.35252205,0.19071116,0.3343524,0.10659551,-0.05494404,-0.14555392,-0.27600658,0.007895728,-0.084589295,-0.67763335,0.14010838,-0.121623315,-0.4809812,-0.1325707,-0.63186485,-0.43260872,-0.775657,0.36322105,-0.86230594,0.5425108,0.1376939,-0.20608665,0.32739875,-0.041227683,0.25073987,-0.16228214,0.13129126,0.14361045,0.05544688,0.0187835,-0.18163736,-0.16552508,-0.28202644,-0.72043705,0.14889035,-0.30437222,-0.31165886,-0.30986366,0.11089623,-0.3908516,0.06833083,0.03544603,0.46449235,-0.33419958,0.12963408,0.085309826,-0.14394994,0.24014384,-0.5023878,-0.23368175,-0.050246764,0.27210602,-0.22706078,-0.2101901,0.23405273,0.098735474,0.46891,-0.043714833,-0.17233527,-0.36024654,-0.06657522,0.115488835,0.57805306,-0.15134108,-0.42474428,-0.027742976,0.06925357,0.17351745,0.078189634,0.2344501,-0.23512469,-0.21455006,-0.061821535,-0.3377124,0.44542703,0.65604347,-0.32422593,-0.34108782,0.38282552,0.46647266,0.11359451,0.013233635,0.09519703,0.055751085,-0.529505,-0.18488139,-0.08186984,-0.13674913,0.41379383,-0.17867184,0.3466333,0.66434485,-0.18047278,0.05193119,0.10882636,-0.047807544,-0.039783314,-0.13430369,-0.34205922,0.25994638,-0.35516396,0.13201238,-0.3092718,0.9149625,0.10549199,-0.8789704,0.43011543,-0.63132715,0.1878789,-0.0019468889,0.52195805,0.7343824,0.27013433,0.46919844,0.7451866,-0.3697505,0.03722597,-0.06815388,-0.29171035,0.13507219,-0.1979746,0.15760882,-0.46678004,-0.16620706,0.17789257,-0.2817983,0.31367436,0.420208,-0.41410804,-0.0036030586,0.22704656,0.77434736,-0.2611886,-0.005550603,0.81264144,1.0797782,1.2290459,0.18142498,1.1571913,0.20288368,-0.3215487,0.24437697,-0.43115857,-0.72579986,0.3674222,0.3457954,0.022631636,0.36812115,0.050779354,-0.028627358,0.2556418,-0.45297205,0.19517384,-0.042628895,0.16722552,0.12654684,-0.1633578,-0.42820367,-0.32256907,-0.28952056,0.044348095,0.13958402,0.20781802,-0.27682662,0.2724277,-0.0076111034,1.6410574,-0.051858947,0.038719755,0.004052773,0.52659845,0.10575231,-0.30037642,-0.08589532,0.050599594,0.4898812,0.05359366,-0.7062728,-0.025200313,-0.127971,-0.3257814,-0.18735804,-0.37559834,-0.07735147,0.008653666,-0.32064202,-0.20385742,-0.22622909,-0.48237142,0.31498915,-2.6864948,-0.29219666,-0.0010021074,0.41913858,-0.09280589,-0.3380569,-0.20908575,-0.5791526,0.40636587,0.40863252,0.46790454,-0.6454901,0.32233772,0.50887305,-0.57832026,-0.14769414,-0.7316415,0.16530032,-0.14381932,0.16751766,0.019547412,0.0071774223,-0.0450269,0.17618968,0.4553635,0.17345206,0.036865354,0.27829173,0.42143095,-0.060936723,0.5275709,-0.10282899,0.39928016,-0.087458275,-0.10657537,0.22408895,-0.43834043,0.0021290828,-0.27890137,0.16904391,0.39622116,-0.6600233,-0.8351753,-0.67255473,-0.27340993,1.1633979,-0.04428209,-0.39863643,0.41978648,-0.27498814,-0.3480188,-0.106259316,0.6058608,-0.17691243,-0.27094707,-0.74668473,-0.13438402,-0.1049413,0.14234768,0.021727404,-0.11454698,-0.54947466,0.71049196,-0.05200073,0.45047972,0.22704624,0.15580194,-0.08475224,-0.41105676,0.170623,1.1118474,0.33665502,0.19134527,-0.46115747,-0.1508201,-0.41675165,-0.1558624,0.05704367,0.49027,0.7251981,-0.16512837,0.08997389,0.25471762,0.13747026,0.058907498,-0.0863539,-0.13205975,-0.08034004,-0.12851296,0.66818887,0.79847425,-0.20332539,0.4219365,-0.12549625,0.19015495,-0.28513822,-0.30355844,0.6660095,0.81722736,0.062797,-0.28786218,0.57281214,0.26642075,-0.25709036,0.5899386,-0.54426044,-0.2508603,0.2831501,-0.18863487,-0.3405061,0.28500295,-0.34224573,0.10820412,-0.88340807,0.4047977,-0.050432414,-0.38548803,-0.46661785,-0.13241057,-3.161959,0.076980405,-0.095552355,-0.25217724,-0.14779384,-0.17013562,0.1665258,-0.5449248,-0.67368674,0.24867003,0.14314882,0.8698039,-0.09302781,0.1842426,-0.044461053,-0.27483776,-0.5829119,0.013448074,0.079001844,0.5164264,0.29229534,-0.19562449,-0.018595317,-0.08705574,-0.34806976,0.0597759,-0.40199742,-0.48011932,-0.19345044,-0.51984847,-0.39685822,0.65621173,-0.16928594,0.12553011,-0.2505305,-0.13016985,-0.22574066,0.3924938,0.03901334,0.029104972,0.04622079,0.03466473,0.12725402,-0.1377065,0.42401528,0.0073569543,0.34023073,0.41528782,-0.24759108,0.30669641,0.48763037,0.637014,-0.20976727,0.87770104,0.52476704,-0.016786143,0.110268496,-0.2792218,-0.08763391,-0.43518475,-0.33712342,0.02401209,-0.44150198,-0.46513334,-0.19816941,-0.31961006,-0.7257714,0.34427288,-0.059868127,0.16109045,0.087468766,0.17314748,0.3865167,0.111380555,-0.06834083,-0.0402852,-0.069594726,-0.46409306,-0.11387929,-0.72237676,-0.4349403,0.3364023,0.97610664,-0.12715481,-0.021427734,0.13455446,-0.09483108,0.042627454,0.079066865,-0.04364224,-0.023857147,0.39548254,0.049666498,-0.6668808,0.35873505,-0.12784117,-0.1707126,-0.7383624,0.15670575,0.66294205,-0.61214966,0.44494104,0.18984295,0.08047106,-0.08348546,-0.2918788,-0.23186083,-0.14636397,-0.17012094,0.2764959,0.102762915,-0.7160363,0.37637135,0.2585163,-0.25441423,-0.80922526,0.3558807,0.023738503,-0.39811173,-0.006535977,0.190585,0.14015819,0.11121389,-0.16473,0.1760572,-0.4287405,0.26409736,0.23265226,0.0012441179,0.3296258,-0.0628207,-0.081921756,-0.74657106,-0.115309514,-0.34301448,-0.3234669,-0.079889454,0.22163306,0.29305705,0.3180416,0.16995388,0.3710904,-0.24390705,0.18029375,-0.14252396,-0.20394814,0.3513708,0.27849147,0.4583324,-0.45200387,0.61565036,0.13531381,-0.09135971,-0.040943265,-0.09167632,0.34363547,0.02933151,0.19841714,0.09711987,-0.3092005,0.21333313,0.6245864,0.24309272,0.3634921,0.22462623,-0.104205914,0.29733673,0.11734662,0.20195095,0.05687636,-0.622152,0.04797725,-0.3232068,0.050060153,0.42775726,0.16001299,0.29618564,-0.08588529,-0.40696236,-0.029624276,0.24249434,-0.21586885,-1.3017913,0.3120745,0.025032332,0.83106667,0.69344896,-0.08451445,0.07795405,0.67820174,-0.12848152,0.118451186,0.10769778,-0.032689247,-0.44807947,0.54032356,-0.73359203,0.52514493,0.06653663,-0.0057477057,-0.14864771,0.0028817256,0.34481737,0.6251981,-0.08602518,0.10207021,-0.12641221,-0.15938921,0.06686697,-0.4796737,0.16792692,-0.59929127,-0.16776125,0.8235794,0.38948116,0.31596792,-0.03390785,0.116653584,-0.06036295,-0.07250147,0.011540013,0.054036256,-0.13753006,0.043743666,-0.7179932,-0.14461574,0.49463293,-0.049285233,0.11735288,-0.07326694,-0.20076077,0.08669891,-0.17424,-0.17710944,-0.08139068,-0.7073136,-0.007799434,-0.38802147,-0.40539503,0.33879617,0.011396021,0.32593223,0.28378078,0.07149785,-0.09019657,0.2247699,0.3253793,0.629093,-0.0038121268,-0.21341912,-0.25303793,0.38057008,0.14457472,-0.3071064,-0.11071804,-0.24162014,0.07696799,-0.5040545,0.4926068,0.05355571,-0.44546333,0.13911904,-0.060499728,0.09434769,0.60929817,-0.28203493,0.08395952,0.17705323,-0.32836178,-0.19300641,-0.11886569,-0.177377,0.35677636,0.32171246,-0.32446033,-0.018089399,-0.04656376,-0.1030185,0.44750044,-0.018053109,0.49110404,0.30928397,0.16731064,-0.32125357,-0.21365409,0.09183667,0.5372507,0.06428825,-0.25167918,-0.34084985,-0.4796978,-0.3740835,0.30353534,-0.0059860647,0.316509,0.08677909,-0.2766544,0.48551962,0.2293167,1.0484983,0.12338904,-0.37458804,0.25343737,0.37353468,0.040619433,-0.16236825,-0.40106758,0.9954457,0.4468534,-0.21726508,-0.16455881,-0.49169174,-0.09292845,0.13237907,-0.2562026,-0.17071618,0.083559126,-0.6745073,-0.481145,0.2767479,0.15125446,0.1396888,-0.12894756,0.29054818,0.1994618,-0.037344407,0.32413396,-0.3678311,-0.25494373,0.31725898,0.12016994,0.19869228,0.02406554,-0.47622204,0.29803288,-0.47117588,0.00060183805,-0.19985111,0.15488811,-0.08515888,-0.2894441,0.3482273,0.38597548,0.5288263,-0.41576,-0.5143669,-0.3619316,0.46629825,-0.02131997,0.18643107,0.4020457,-0.23425107,0.071826614,-0.012217847,0.6322438,1.2837783,0.04568285,0.29899478,0.48931184,-0.4389172,-0.5869991,0.26342484,-0.24268796,0.12747765,-0.020340623,-0.22114724,-0.60554165,0.13839644,0.19822903,0.1621926,0.33496633,-0.42906246,-0.5705026,0.22579509,-0.36029863,-0.16130893,-0.34833562,-0.0870136,0.7108431,-0.2262733,-0.2608126,0.10039488,0.1983353,-0.2336725,-0.5768204,-0.20285426,-0.2252049,0.35813567,0.0064769736,-0.22550392,-0.1935202,0.05849864,-0.3950447,0.12666689,0.022803625,-0.45696497,0.14841448,-0.49839482,-0.13942167,0.95702153,-0.241875,0.299786,-0.6191805,-0.56322974,-0.84968156,-0.40611264,0.55848956,0.0556203,-0.103734255,-0.5016597,-0.0576693,-0.09363987,-0.10898081,-0.012169163,-0.39644703,0.447688,0.1518919,0.304971,-0.07478572,-0.904854,-0.049034193,0.14948498,-0.35528743,-0.63689363,0.5392572,0.20677924,0.8120358,0.105632246,0.06410193,0.16178028,-0.47826838,0.08356655,-0.07454171,-0.14856483,-0.73613214,0.222365 +274,0.7007806,0.0012189249,-0.7173865,-0.2144735,-0.54488254,0.39059663,-0.14096913,0.23388274,0.303751,-0.5986899,-0.14872368,-0.19483294,-0.12991345,0.28249237,-0.15540107,-0.83663553,-0.06312791,0.14945501,-0.5717961,0.49844506,-0.28161627,0.51092535,0.22375633,0.47307006,-0.07836475,0.2812024,0.46195626,0.017332867,0.115966916,-0.34387502,-0.18497632,0.13557738,-0.81516117,0.25351214,-0.12873228,-0.35944173,-0.10419189,-0.35015163,-0.22018473,-0.79338455,0.38777152,-1.067067,0.7067881,0.075612426,-0.337926,0.034989282,0.14775531,-0.03289708,-0.1906523,0.12815042,0.26727295,-0.43032113,0.106807224,-0.3117687,-0.51485884,-0.606151,-0.5734544,-0.06878068,-0.5898429,-0.20567684,-0.49384603,0.22042139,-0.329851,-0.01724712,-0.4354742,0.35237226,-0.53042233,0.062037498,0.30724412,-0.52049035,0.31098258,-0.49853384,-0.212008,-0.215025,0.12951517,0.017690033,-0.11724925,0.24345876,0.16646971,0.69117594,0.20896481,-0.2368229,-0.25578335,-0.03565678,0.053646386,0.4835428,-0.1813642,-0.049433082,-0.2907549,-0.1890461,0.39862657,0.42824113,0.0833081,-0.36296138,0.16449249,-0.13054572,0.01482635,0.58699405,0.50148606,-0.44139895,-0.19515733,0.41309166,0.3315661,-0.065796554,-0.21560399,0.088678814,-0.13339196,-0.49879143,-0.13501722,0.25296962,-0.18979566,0.7758756,-0.1943572,0.0052286885,0.7955268,-0.2575851,-0.053089757,-0.28777504,-0.106798016,-0.076122425,-0.37151346,0.06938415,0.54355115,-0.41425672,0.03375426,-0.42970964,0.637556,-0.038622588,-0.7412529,0.2527052,-0.625691,0.12094132,0.015415405,0.71891385,0.60222894,0.56842774,-0.05005482,1.1014374,-0.7187502,-0.009538963,0.060467243,-0.32958403,0.13763146,-0.1326314,0.06616124,-0.4252781,0.24973707,0.028388053,-0.06739348,0.065348856,0.32958576,-0.31323022,-0.17887776,0.2743625,0.6469951,-0.3994504,-0.011045595,0.6883249,1.2761532,0.9782316,-0.060045194,1.3988293,0.20944746,-0.19718654,-0.14001527,0.11613843,-0.63697624,0.119085096,0.30801526,0.27747202,0.34474608,0.14797558,-0.109967135,0.19223738,-0.3307668,-0.19612998,0.053268105,0.1388973,-0.0622488,-0.08197912,-0.49133134,0.06963048,0.32409447,0.14262736,0.0195627,0.15466875,-0.20758806,0.43683156,0.1104621,1.047343,-0.06377285,0.21950547,0.21459936,0.48740435,0.29694542,-0.055523068,0.1591134,0.43630016,0.26545557,0.14161374,-0.48162958,-0.043245554,-0.37325558,-0.4776504,-0.16913445,-0.4809166,-0.11226263,0.08941728,-0.42355692,-0.16351642,-0.03132398,-0.29874265,0.3033428,-2.2374809,0.017330075,-0.17514582,0.2542617,-0.2504549,-0.2924489,-0.14431521,-0.67506886,0.4465039,0.4570285,0.34332561,-0.54548025,0.3770772,0.5137529,-0.43081915,0.043663938,-0.55650043,0.10330089,-0.0660871,0.50319165,-0.117912084,-0.34389842,-0.27447784,0.27421156,0.6958247,0.2692741,-0.03194244,0.26264116,0.46775898,-0.045200005,0.5338878,0.06512948,0.671525,-0.27401844,-0.18818939,0.6536143,-0.3291326,0.33142158,-0.22359748,0.018000817,0.45691392,-0.5201059,-0.8839638,-0.6865623,-0.43247208,1.36804,-0.54806054,-0.7251987,0.2280352,0.1777929,-0.1447593,0.022685481,0.5069748,-0.034056526,0.3220226,-0.6745744,0.01458621,-0.16276826,0.34386286,-0.03058806,0.19427545,-0.47907642,0.9060089,-0.11150479,0.4928944,0.46639013,0.22530659,-0.24721652,-0.6366373,0.023834802,0.8772586,0.38073167,0.12979761,-0.18312792,-0.05018286,-0.17467594,-0.28303874,0.15250523,0.788799,0.79271936,-0.112646155,-0.04878973,0.5056142,0.16623904,0.08555144,-0.079561375,-0.3361423,-0.23148288,-0.11108247,0.49622583,0.73159593,-0.19003654,0.08183418,-0.14212878,0.3818893,-0.06790947,-0.3952063,0.6097674,1.078836,-0.1486647,-0.25442752,0.8319847,0.39645097,-0.58644575,0.5364952,-0.7423732,-0.47463515,0.6875723,-0.13017972,-0.6093965,0.049620975,-0.22382253,0.086410515,-0.83829284,0.20396285,-0.15981525,-0.41841564,-0.40818223,-0.40745822,-3.803569,0.2361787,-0.34353587,0.08365656,-0.25006786,-0.10930309,0.2742845,-0.59567744,-0.57320255,0.032949165,0.0028249014,0.5036767,-0.19301873,0.3162507,-0.38899234,-0.20160569,-0.2547445,0.42562023,0.12710905,0.08780802,-0.09442133,-0.2584379,0.042841803,-0.037524607,-0.53609693,-0.07733555,-0.6006735,-0.48403072,-0.14800236,-0.5578214,-0.0454808,0.6542677,-0.42933515,-0.027555905,-0.2088203,0.17332695,-0.19970721,0.0881656,0.15947463,0.35993052,0.026320964,-0.020170918,-0.16383013,-0.33201876,0.3280275,0.22890408,0.41916263,0.31404975,-0.38229945,0.003889988,0.37086213,0.5244908,-0.038824588,0.89447135,0.16635115,0.045231763,0.3863821,-0.22178465,-0.5188009,-1.0583912,-0.17849386,-0.12330476,-0.5172104,-0.4870559,0.013878502,-0.4011966,-0.98471576,0.69121665,0.012798677,0.5083325,-0.09755809,0.437884,0.37867948,-0.34545168,0.06739935,-0.046602443,-0.22378297,-0.5773993,-0.44028524,-0.745629,-0.5831524,-0.037043642,0.9733289,-0.046134125,-0.0873465,0.26143113,-0.2513488,0.1871825,0.1667267,0.3008763,0.0072110393,0.67977357,0.24335057,-0.75955766,0.5235582,-0.051626664,-0.015892232,-0.66300505,0.29854998,0.66012126,-0.66541195,0.5553042,0.43153417,0.28649557,0.040674504,-0.6232734,-0.40283644,-0.07498551,-0.25729463,0.5877264,0.22696514,-0.68428105,0.4380777,0.015673677,-0.13566512,-0.6881068,0.64536625,-0.18260567,-0.3265304,-0.057409864,0.47086832,0.03518625,-0.06072263,-0.058470592,0.35868064,-0.47207907,0.18222453,0.32472837,-0.014264707,0.5472074,-0.13609336,-0.36543676,-0.734346,0.19196141,-0.6584006,-0.3858876,0.2552278,-0.027514039,-0.23837268,0.29476494,0.036842894,0.5409394,-0.048819173,0.40565935,-0.021324048,-0.23799141,0.66195446,0.44289598,0.5138164,-0.8217762,0.7806398,0.09415832,-0.07185497,0.079461955,0.23090631,0.6043405,0.07084909,0.36451888,-0.1743675,0.023940355,0.04248518,0.4143118,0.30690053,0.291634,0.22371906,-0.13072813,0.58826536,0.23308194,0.08156096,-0.21914636,-0.77183485,-0.12950884,-0.06910725,0.02808415,0.36728606,0.09318397,0.42488542,-0.060912084,-0.057719667,0.27078915,0.018038487,-0.22636567,-1.0275873,0.037324924,0.22502065,0.8327436,0.47636247,-0.016196271,-0.10950505,0.5807749,-0.36181727,-0.1402127,0.57692164,-0.02632291,-0.34046713,0.62449574,-0.48073325,0.2595142,-0.124781914,-0.04666133,0.25943518,0.4443036,0.31941357,1.015565,-0.24461724,-0.007726284,-0.17075141,-0.12824541,0.18315463,-0.4203978,0.10548634,-0.3670566,-0.41319332,0.6256389,0.37874636,0.33037254,-0.5457267,-0.17363943,-0.002226154,-0.15988512,0.23147209,-0.014010896,-0.08886445,0.032104198,-0.4719223,-0.20209968,0.51814026,0.096841395,-0.068925984,-0.113262445,-0.27890527,0.2670318,-0.12483078,-0.13271426,-0.07981181,-0.76649404,0.05213334,-0.36143014,-0.51059216,0.3790493,-0.27109152,0.28195375,0.21956389,-0.07019692,-0.1824261,0.057220846,0.14734556,0.7919554,0.07138327,-0.23195453,-0.4181734,0.18295085,0.18707605,-0.37312123,0.17805141,-0.23324287,0.12493336,-0.38405728,0.44639766,-0.2907413,-0.2568334,-0.040500533,-0.26557767,-0.1331064,0.37551904,-0.02248016,-0.049861137,0.3608359,-0.11166009,-0.50271255,-0.1251574,-0.2651556,0.003975501,-0.20042582,-0.11154717,-0.07623283,-0.08424157,-0.0644519,0.2731051,0.13769315,0.1379176,0.2015725,-0.19918619,-0.5028282,0.14326756,-0.06253591,0.45110154,-0.01664254,0.06412444,0.073401965,-0.6919821,-0.30122095,0.43131217,0.005836328,0.2547851,0.10306629,-0.40613678,0.83331347,0.36663413,1.0966444,-0.1474328,-0.3909649,-0.12136912,0.8082983,0.12732325,-0.075871736,-0.41871396,1.1814356,0.77356786,-0.146876,-0.1813211,-0.29643953,-0.06835961,0.023465818,-0.40893897,-0.21843262,-0.119124286,-0.56529397,-0.21679789,0.06417003,0.47339472,0.21100038,-0.11487013,0.031765178,0.17311887,0.2233436,0.50880766,-0.46958193,-0.48777533,0.32512382,0.14542058,-0.14965208,0.15302888,-0.19072314,0.3487024,-0.7402349,0.14182109,-0.4778525,-0.014090013,-0.155115,-0.26866612,0.103889436,-0.10051706,0.3401865,-0.40337446,-0.2996162,-0.19098973,0.50401956,0.22870326,0.29148352,0.79571384,-0.20456947,-0.05343449,0.07487449,0.49432692,1.4537352,-0.04321611,0.1849001,0.23776422,-0.55894107,-0.6389153,0.02401641,-0.4879494,0.22909914,-0.14996995,-0.51920074,-0.2460844,0.20195985,-0.14892018,-0.20828573,0.20827584,-0.712378,-0.24366768,0.33054805,-0.2776309,-0.27411175,-0.27952906,0.40198573,0.77443856,-0.27883253,-0.3718835,0.094400205,0.14754012,-0.33386615,-0.9903784,0.06832,-0.31047404,0.3920804,0.0010062853,-0.47989914,0.16062628,0.25953895,-0.5148798,0.21630502,0.34598804,-0.39817214,-0.02607531,-0.35236374,-0.056019276,0.9718079,0.10862071,-0.017311716,-0.5876335,-0.4814969,-1.1041542,-0.453034,0.1453665,0.06935096,0.07828552,-0.46902752,-0.18945341,-0.45596334,0.07377334,-0.0062986366,-0.4284834,0.33836445,0.26437733,0.8603727,-0.1385033,-1.0123729,0.12536424,0.14983469,-0.12546054,-0.5804957,0.43342957,-0.12419328,0.6714227,0.025252573,0.040061597,0.2520469,-0.8773914,0.37488317,-0.13518552,-0.15392074,-0.65596205,0.17878069 +275,0.30193943,0.070681915,-0.45363492,-0.36278817,-0.30096075,0.18913668,-0.18090479,0.30117488,0.14996666,-0.15977095,0.118453965,0.047754347,-0.19703425,0.39082348,-0.15203169,-0.9110641,0.114691846,0.028660635,-0.49711168,0.34931025,-0.49813592,0.5183052,-0.01305846,0.4257655,-0.08864086,0.35111222,0.26110083,0.027128192,0.29379866,-0.32836157,-0.31043684,0.07009005,-0.5013925,0.11599808,-0.06759015,-0.29867235,0.089268245,-0.19823827,-0.17941009,-0.7181286,0.432388,-0.5827997,0.56862724,-0.067391515,-0.49105164,0.2769553,0.19784036,0.21870235,-0.33260602,0.07444603,0.1667738,-0.24233715,0.075299725,-0.12566891,-0.3744168,-0.47164267,-0.606402,-0.099402465,-0.7475266,-0.20378764,-0.27913117,0.16778024,-0.39819482,0.074897215,-0.008462525,0.3671343,-0.2920595,-0.07909191,0.17264369,-0.1495191,0.23000585,-0.4480676,-0.03921298,-0.06156884,0.16948973,0.08280864,-0.042512067,0.336011,0.24808723,0.5367038,-0.010694974,-0.30404168,-0.084196076,-0.24819241,-0.1568273,0.49016824,-0.15243897,-0.18801025,-0.21018934,-0.14846009,0.26604956,0.21474078,-0.009851052,-0.07689759,-0.008000573,0.012752693,-0.2833861,0.40606353,0.3994813,-0.43999106,-0.12997712,0.40431464,0.37526864,-0.00068119395,-0.36646432,0.2297475,-0.054885413,-0.38670352,-0.211378,-0.10743973,-0.2496917,0.48809606,-0.10954774,0.23157085,0.77829635,-0.13465269,0.064831346,-0.14903575,-0.16599578,0.13280879,-0.15412036,-0.23251727,0.07531692,-0.5018643,0.057090815,-0.37228605,0.83054703,0.11804463,-0.7367468,0.3678591,-0.3527816,0.01860014,-0.11391857,0.6097039,0.7242241,0.5010783,0.14072062,0.86400926,-0.6545854,-0.03805153,0.020856949,-0.17658125,0.045179155,0.002565918,0.1364657,-0.5450487,0.0298831,0.20287003,0.1338487,0.084644556,0.26623333,-0.36308292,-0.099306695,0.096385635,0.71726793,-0.39121917,-0.083438486,0.6584337,1.1607242,0.951464,-0.09050064,1.0055194,0.14969212,-0.15378097,-0.12614773,-0.17733742,-0.33369178,0.1317508,0.28492802,0.31787494,0.3400647,0.047064397,0.080162436,0.39703926,-0.25978816,-0.09395116,0.16580932,0.31499892,-0.049189884,-0.11456072,-0.43986067,-0.27727133,0.3899616,0.043298896,0.2943583,0.27368766,-0.2995415,0.4619796,0.12282073,1.2000684,0.15700696,0.13366663,0.04865208,0.50955224,0.230036,0.038424887,-0.11847346,0.31348976,0.25110638,-0.03962668,-0.67126304,0.032819264,-0.28566682,-0.21108405,-0.12994441,-0.43997672,-0.19518264,-0.117658906,-0.39450726,-0.1450642,0.13523611,-0.4585404,0.3122969,-2.5352685,-0.22172847,-0.17813578,0.230385,-0.15679096,-0.25029275,-0.08774269,-0.43662596,0.4359744,0.38900504,0.21764429,-0.6032783,0.5466093,0.4192907,-0.26641542,-0.078959554,-0.43845,-0.23093185,-0.09467761,0.3261492,0.16607295,-0.15709797,-0.36901098,0.65805125,0.69872963,0.26501295,-0.09515424,0.14308667,0.45193335,-0.18038893,0.64494514,0.16175106,0.5393871,-0.08820311,0.014328282,0.33156782,-0.5872929,0.19553953,-0.0955551,0.20527492,0.3561422,-0.43395835,-0.7824688,-0.56913495,-0.26073667,1.470804,-0.3731349,-0.2898656,0.34269044,-0.13565257,-0.3276013,0.035500463,0.550841,-0.18843684,0.030570824,-0.5464297,0.04073781,-0.09693727,0.25472534,-0.00024393603,0.046708934,-0.40605396,0.6641705,-0.16865756,0.5966034,0.12556699,0.1258448,-0.1486277,-0.36367908,-0.029181276,0.87081,0.5021516,0.06656659,-0.22284484,-0.13013537,-0.20286168,-0.16771755,0.07658631,0.5812753,0.8192557,-0.0055493545,0.023105515,0.27606803,-0.22946122,0.064779304,-0.08258111,-0.3876764,-0.04315079,0.007089367,0.61650264,0.6363986,-0.12328716,0.22207054,-0.0011590972,0.32426694,-0.23912455,-0.51122546,0.46319833,0.8080568,-0.14698221,-0.16801503,0.6487537,0.34633556,-0.28115362,0.3806391,-0.629722,-0.35105243,0.7654115,-0.07504416,-0.45002812,0.085099034,-0.3133394,-0.06797424,-0.8161891,0.18015902,-0.25430256,-0.65473723,-0.35454193,-0.23266433,-3.9505105,0.11151809,-0.14354768,-0.08385585,-0.20393485,-0.07532589,0.41455644,-0.51621425,-0.57259315,0.06352718,0.042829156,0.5580035,-0.010226468,0.14561103,-0.2929274,-0.37721312,-0.28215784,0.26565412,0.007209792,0.21980515,-0.008473341,-0.3248958,0.07513514,-0.34142417,-0.6218305,0.03883136,-0.39060622,-0.48257545,-0.02938473,-0.46521336,-0.18177494,0.7936433,-0.2220667,0.10920481,-0.24955137,-0.09529552,-0.19165413,0.2161702,0.20145522,0.13599804,0.036295846,-0.013824358,0.03495137,-0.41771406,0.16951045,0.13989817,0.4702562,0.09751844,-0.06126606,0.0014381271,0.5911782,0.44380504,0.10724975,0.76914525,0.00726632,-0.082577385,0.37190995,-0.34901348,-0.41311556,-0.60918146,-0.28422153,-0.11713299,-0.39188465,-0.2770659,-0.17032975,-0.39241248,-0.76008356,0.29763037,0.00062156643,0.09991613,-0.25228915,0.41572952,0.25673887,-0.071856186,0.04893495,-0.024642872,-0.20130979,-0.46454617,-0.21766177,-0.74323654,-0.4755877,0.17252673,0.9328179,-0.17603295,-0.014389799,-0.038711015,-0.22246,0.18283412,0.02076601,0.5136848,0.19376078,0.3174164,-0.030958371,-0.76130223,0.32546982,-0.2939641,0.0065243747,-0.7160467,-0.09311623,0.71422833,-0.5595798,0.48061615,0.377885,0.16058405,0.107202545,-0.6879494,-0.10558653,0.12635945,-0.22408962,0.5351479,0.101442926,-0.6740512,0.51604646,0.07261863,0.020563675,-0.50260633,0.44755694,-0.16698135,-0.4232634,-0.006410467,0.44133362,0.100479074,-0.124058716,0.08572081,0.14587873,-0.4179943,0.19928893,0.3186056,0.07895123,0.5245956,-0.03373923,-0.1329405,-0.5711097,-0.165301,-0.6397407,-0.33191493,-0.112307325,0.005471963,0.023359917,0.15386017,-0.1157475,0.33475882,-0.301671,0.26657307,-0.010346811,-0.24394812,0.5656821,0.512253,0.36507416,-0.35620907,0.6469611,0.12811533,0.15646222,-0.08487243,-0.083198234,0.5610419,0.115606114,0.33697316,-0.022871124,-0.13441609,0.20376277,0.5631753,0.24150603,0.27947325,0.15000376,-0.13740028,0.2949359,0.14288668,-0.04058844,0.10792719,-0.3665822,-0.18774417,-0.035464026,0.0010852492,0.54545623,0.118008345,0.2962228,-0.028702516,-0.16942789,0.2202356,0.12091883,-0.40847364,-1.2644832,0.2824323,0.24686843,0.6764361,0.40801144,0.15927427,-0.020665146,0.46519846,-0.24087271,0.038772263,0.38291213,0.16973282,-0.3051082,0.6619666,-0.5064031,0.4908772,0.035401862,0.0011362239,0.088318124,0.1234971,0.3482192,0.9581051,-0.14327136,0.014569833,0.1721112,-0.33641914,0.1011904,-0.42797711,-0.0044400278,-0.38888487,-0.26353246,0.37879783,0.29092288,0.2585754,-0.29852325,-0.04106255,0.029284324,-0.21367337,-0.07306031,-0.22790597,-0.10157757,-0.21099883,-0.41731665,-0.35467726,0.3930628,0.19779849,0.07678355,0.11187211,-0.19226672,0.29959893,0.12370724,-0.04799554,0.033713505,-0.57374805,0.020739555,-0.30110237,-0.49140579,0.39141566,-0.44886458,0.22098412,0.18212599,-0.038185302,-0.21208793,0.0038842421,0.29532242,0.5407951,0.074851386,-0.28893045,-0.25985685,-0.12581228,0.07694293,-0.4369,-0.04816445,-0.43216354,0.16165787,-0.5079521,0.30116084,-0.2856533,-0.13592206,-0.1395836,-0.3227592,-0.0071846372,0.21349558,-0.26905343,-0.006558543,-0.036773387,0.074274585,-0.17736119,-0.1983428,-0.3657155,0.18226497,-0.16335875,-0.14207377,0.09069984,-0.12939246,-0.13859199,0.33924797,0.11999257,0.24070646,0.2825213,-0.122985125,-0.28003186,-0.083223544,-0.08969806,0.28958967,0.055764236,-0.069523335,-0.2763073,-0.4518998,-0.18145591,0.57626253,-0.22239414,0.13163307,0.05777985,-0.2634763,0.71748555,0.19464476,1.0226415,-0.055981535,-0.27823207,0.034402754,0.6979142,0.18576217,0.112123914,-0.14798845,0.8802377,0.4349712,-0.26729617,-0.35029247,-0.38676813,-0.06825267,0.19953135,-0.33608225,-0.28089485,-0.16192338,-0.7194328,-0.21496648,0.24536732,0.19101503,0.13870002,0.019669423,-0.0062749684,0.061517082,0.19456203,0.5636102,-0.45164067,-0.017967489,0.3828888,-0.063192286,0.06614513,0.18391599,-0.38266796,0.35787535,-0.67271614,0.1147111,-0.43227783,-0.009991209,-0.03174082,-0.27584037,0.23311716,0.10660544,0.15456685,-0.25921515,-0.22989413,-0.13848393,0.44054917,0.28133604,0.32531214,0.5772712,-0.16248776,-0.049993798,0.14586058,0.53768307,1.2523268,0.057453588,0.07611914,0.12707087,-0.44833902,-0.57203466,-0.14266032,-0.3455377,0.06501568,-0.06346577,-0.4159516,-0.32914135,0.21218723,0.006081265,0.008130083,0.29711285,-0.43048513,-0.4547213,0.3044988,-0.30925056,-0.2723965,-0.23588559,0.20764428,0.6015974,-0.26775518,-0.15627295,-0.15248945,0.4296065,-0.18678178,-0.7962792,0.07954048,-0.23982957,0.4196843,0.13416891,-0.32402223,0.04556124,0.32304323,-0.44871888,0.28358924,0.430153,-0.44245687,0.02633357,-0.21539053,-0.040649455,0.83629286,-0.014067664,-0.0027958613,-0.64911497,-0.47838905,-0.8063867,-0.42654154,0.25274938,0.16032098,-0.11136301,-0.5041857,-0.15886119,-0.29431862,0.15801205,0.079014026,-0.3745791,0.2154337,0.25288746,0.4457956,-0.041792136,-0.96326196,0.022119092,0.13086532,-0.33869538,-0.5689442,0.66492075,-0.23815268,0.56606543,0.07879484,0.001290452,0.07026526,-0.47081673,0.4852678,-0.33257088,-0.16332196,-0.5144724,0.13969971 +276,0.33543125,0.038509443,-0.5511783,-0.16154903,-0.4019458,0.2131656,-0.35244113,0.22591016,0.15751213,-0.12894495,-0.16564336,0.13520412,-0.10746977,0.10811976,-0.09343075,-0.6635283,-0.11273635,0.053083654,-0.70350367,0.44928932,-0.39858848,0.5150918,0.102440245,0.35850528,0.056185532,0.33362362,0.20259193,-0.03787496,-0.15623602,-0.22624655,-0.23858987,0.36246482,-0.5784988,0.16607372,-0.28399208,-0.2709213,0.20082751,-0.36910668,-0.18946394,-0.7251998,0.030153103,-0.8647067,0.53674465,-0.19487973,-0.17645384,-0.038083266,0.34306067,0.27273205,0.012407986,0.12851661,0.23046026,-0.2990268,-0.12001557,-0.37371275,-0.27787292,-0.6706305,-0.32626212,-0.07251504,-0.9007455,-0.2204381,-0.10238172,0.25976267,-0.3565553,-0.19005013,-0.19842486,0.2712668,-0.3279552,0.033059463,0.1930953,-0.35549292,0.19648038,-0.5857957,0.12253116,0.04838705,0.49117675,-0.08075917,-0.15545015,0.39436337,0.32871303,0.2215175,0.2585824,-0.31664678,-0.28446123,-0.1392918,0.104020044,0.44588688,-0.28305295,-0.10536039,-0.27353486,0.17291382,0.6992802,0.5527161,-0.002255853,-0.117531225,-0.0570062,-0.09550647,-0.12639502,0.6676417,0.499506,-0.31558636,-0.22796421,0.5628822,0.48600137,0.38726503,-0.29599288,0.06975685,-0.15641509,-0.39554846,-0.046724375,0.2620648,-0.038356196,0.2632372,-0.023431571,0.10959825,0.7083622,-0.06584742,0.086468935,0.0090948185,-0.038812567,-0.05701039,-0.21047926,0.058407284,0.17394583,-0.547393,0.07352491,-0.2128322,0.7429382,-0.12210369,-0.6467542,0.28712374,-0.6068653,0.08621485,0.037378073,0.55171925,0.6004361,0.6098369,0.047339376,0.84584314,-0.18792626,0.13041328,-0.116672404,-0.38986132,0.10543515,-0.17903751,-0.0048074285,-0.5729917,0.16254574,-0.17000344,0.17900531,0.07899931,0.5048089,-0.6085005,-0.2194124,0.23037829,0.9697094,-0.29339167,-0.2303742,0.633062,0.9991812,0.7586707,-0.16247742,0.8835355,0.19177602,-0.08505611,-0.23614877,-0.22106346,-0.44695517,0.19701909,0.48475143,-0.28398374,0.3872375,-0.16042088,0.022537705,0.07446912,-0.12503494,-0.29758316,-0.10114827,0.25537986,0.1442949,-0.14138147,-0.313969,-0.1253262,0.07566101,-0.1296441,0.26328644,0.26022843,-0.23864917,0.347635,0.011547514,1.0659124,-0.1498968,0.08222203,0.21403731,0.46816933,0.527325,-0.045296006,0.18232705,0.5190685,0.33726475,0.032241743,-0.5194307,0.32983908,-0.5567238,-0.48484918,-0.11843201,-0.325229,-0.29868945,0.33331266,-0.4883491,-0.03586537,0.07483346,-0.2131996,0.4780217,-2.7287874,-0.20778589,-0.22884917,0.26809612,-0.42836004,-0.286893,-0.099240765,-0.51313883,0.27965716,0.23861817,0.485424,-0.44104654,0.3397486,0.489248,-0.5781179,-0.20229721,-0.5907551,0.08774522,0.04618965,0.4724197,-0.01535734,-0.20449114,0.02181304,0.14395393,0.67859113,0.11048896,0.14033714,0.44562158,0.46682623,0.005144426,0.21460356,-0.06704881,0.63990176,-0.1727981,-0.3177033,0.44272587,-0.26285484,0.4191109,-0.10700419,0.10014396,0.5975621,-0.30936012,-0.95888436,-0.48527515,-0.27416843,1.1898066,-0.42531985,-0.49116218,0.014080023,0.17727938,-0.13734478,0.13102095,0.5723787,-0.16844593,0.21592961,-0.5181468,0.09251539,-0.21518707,0.27320015,-0.029799897,0.00032635828,-0.20499822,0.6592369,-0.101637006,0.4892215,0.10027279,0.398733,-0.19747883,-0.4030875,-0.04105842,0.80286014,0.52095264,-0.092387706,-0.24028735,-0.2681636,-0.07398916,-0.08113572,0.13750753,0.6594809,0.66844994,-0.0190599,0.07058319,0.37051854,0.051433675,0.09494688,-0.20177661,-0.33395353,-0.13095336,0.07984645,0.42965683,0.4891213,0.016143251,0.55504835,0.010834223,0.2610712,-0.20557672,-0.63507766,0.6631904,0.5964723,-0.39740813,-0.1916378,0.618882,0.27906463,-0.3627743,0.3797497,-0.70484585,-0.30251476,0.6867346,-0.30391905,-0.60965836,0.1725893,-0.18230067,0.080470696,-0.7324347,0.33101144,-0.3871259,-0.4862431,-0.3554818,-0.101147585,-3.006986,0.049614284,-0.071625695,-0.084347576,-0.4593368,-0.19580011,0.32251146,-0.59885734,-0.6215052,0.031180209,0.12102529,0.62020683,-0.30772915,0.14453574,-0.30433884,-0.30990374,-0.087700725,0.36918387,0.13129093,0.19790694,-0.21741958,-0.16152042,-0.028144391,-0.0036711171,-0.46885183,0.2300672,-0.4091257,-0.3139504,-0.051841043,-0.39987782,0.03243462,0.4754259,-0.57086974,0.1904602,-0.22253452,0.29559854,0.009829649,-0.021320796,0.29328367,0.2586501,0.23301926,-0.15201983,0.1334527,-0.39447954,0.58822507,0.03777269,0.45150813,0.1746022,0.10972321,0.1271058,0.49453157,0.46608987,-0.2890664,0.9509446,0.089457236,-0.028316578,0.26609218,-0.28616163,-0.3112919,-0.69388074,-0.3212714,0.0039833607,-0.4481277,-0.49943265,-0.05062817,-0.27826282,-0.8944204,0.528919,0.04406418,0.6372233,-0.18992598,0.5417085,0.49762794,-0.30077258,-0.06031398,-0.02064567,-0.16898872,-0.40446845,-0.3760393,-0.6518868,-0.54263824,0.14894484,0.8512155,-0.43078765,0.07061676,-0.026559195,-0.0035037498,0.0943905,-0.103010304,0.095114574,0.055546377,0.49318746,0.055221993,-0.5414438,0.24795116,-0.13193664,-0.055859998,-0.5192691,0.30980644,0.603246,-0.63198036,0.38020977,0.41657394,0.08541563,-0.19581155,-0.7128447,0.03516179,0.14846468,-0.20446211,0.46737602,0.19292638,-0.79826456,0.48665315,0.10378923,-0.48930866,-0.6559483,0.33356714,0.053075746,-0.30624437,-0.052323055,0.5057304,0.27564156,-0.23561001,-0.09844845,0.1349033,-0.41424516,0.37689108,0.21053235,-0.060056046,0.32778308,-0.20047794,-0.47685316,-0.77953035,0.07059983,-0.57462555,-0.356717,0.34519,-0.17522141,-0.06890944,0.156712,0.069325946,0.48182628,-0.23172814,0.18346022,0.030629901,-0.21773608,0.53088444,0.44359916,0.49480724,-0.37976456,0.4063438,0.21900596,-0.3297206,0.37784413,0.18442623,0.5189732,0.0025991797,0.23894499,0.0062931855,0.015091014,0.40569344,0.5611267,0.20652172,0.33582917,-0.10911742,-0.20798923,0.27956542,0.0061796904,0.22058773,-0.18528949,-0.508921,-0.16750146,0.0056036157,0.06702502,0.65625745,0.22703613,0.3211134,0.18473168,-0.042759765,0.17044057,0.21077044,0.021525541,-0.8962115,0.35356444,0.3229489,1.0132148,0.09610876,0.23270363,-0.13698448,0.63049203,-0.2693381,0.06883137,0.47645944,0.14808497,-0.35678375,0.68042094,-0.6282442,0.34277728,-0.08722082,-0.067125395,0.19484851,0.09399101,0.33486253,0.94895375,-0.2243475,-0.05598475,-0.122168384,-0.17258969,-0.10804725,-0.062399514,0.083642654,-0.35935575,-0.46629485,0.5629547,0.30126092,0.32842624,-0.39469126,-0.08674454,-0.018730603,-0.20982365,0.17923428,-0.07819184,0.1654236,-0.059038617,-0.14173113,-0.23445146,0.5891112,0.060344253,0.11305191,-0.13288172,-0.15390533,0.006543088,-0.17129874,0.16178355,0.100114614,-0.5490568,0.02159946,-0.15568762,-0.64273345,0.2989898,-0.41532275,-0.005283153,0.13717124,-0.102240734,-0.08364304,0.286652,0.20419486,0.6738803,-0.073088184,-0.2763922,-0.43195668,0.23094667,0.17019787,-0.22813776,0.10006025,-0.19885081,0.119339384,-0.591258,0.40872127,-0.33942205,-0.46602526,0.058411513,-0.35953325,-0.15763906,0.45093155,-0.009018417,-0.10719221,0.17640534,-0.19396333,-0.44545138,-0.0055844425,-0.3292614,0.07362769,0.12628485,-0.22129449,-0.313116,-0.28727785,-0.30086577,0.17086884,-0.009100312,0.3519711,0.24853177,0.057972386,-0.26377138,0.045879956,0.29166776,0.36902612,0.106064275,0.24172334,-0.279746,-0.49805304,-0.38943145,0.24105437,-0.17148,0.19336864,0.07475156,-0.3573119,0.92691296,-0.059492763,1.1421237,0.051532935,-0.32640526,-0.06905996,0.6387464,-0.032478757,-0.017193783,-0.42266136,1.0496633,0.5921971,0.025864696,0.013797951,-0.2605127,-0.11229912,0.112390995,-0.40254968,0.013923287,-0.009252536,-0.5479622,-0.36634558,0.2633103,0.21926981,0.03940038,-0.017419461,-0.16917577,0.26498458,0.14634648,0.31913802,-0.61943024,-0.37827295,0.22876242,0.15628345,-0.24314196,0.23773588,-0.38771507,0.3407012,-0.7793377,0.12259688,-0.5063927,0.17561351,-0.08553517,-0.3779815,0.17729661,-0.27462584,0.31980452,-0.23375298,-0.45545676,0.047503598,0.21327002,0.09589898,0.10660746,0.5125672,-0.24471322,0.1739366,0.1357047,0.5714054,1.2438492,-0.31559798,-0.02150717,0.2796621,-0.3708644,-0.5935123,0.2332439,-0.49017587,-0.007828562,-0.12626635,-0.45546728,-0.1258532,0.24487768,0.08600057,0.200725,-0.015120292,-0.6856648,0.16747841,0.14033459,-0.28933463,-0.11614492,-0.11918925,0.444698,0.89680964,-0.27814877,-0.351798,0.045781843,0.34794775,-0.2217103,-0.5377565,0.11107335,-0.12985498,0.23396228,0.1317945,-0.39595887,0.02568899,0.18287484,-0.47354606,0.16731198,0.26889223,-0.24022913,0.07901821,-0.0010414998,0.16081661,0.64336723,-0.34104827,-0.20272551,-0.600672,-0.49662146,-0.8616828,-0.51999414,-0.12416803,0.30463612,0.012962723,-0.55667424,0.041924775,-0.3974617,-0.2695165,0.0011483788,-0.5236296,0.2552316,0.16909094,0.7052005,-0.48375008,-0.97589177,0.2220786,0.062230572,-0.10222726,-0.7096885,0.5777778,-0.23208007,0.79673743,0.036858644,-0.21589524,0.12009928,-0.5521505,0.1633705,-0.4991145,-0.16155474,-0.92062706,0.24230862 +277,0.5132426,-0.20587578,-0.3901839,-0.2412356,-0.24393067,0.39925066,-0.25731725,0.29161617,0.28347427,-0.2237842,0.042324033,0.00796235,-0.17334096,0.30158898,-0.22034216,-0.8733032,-0.044877674,-0.106335245,-0.727639,0.55040646,-0.536184,0.4215876,0.05436675,0.24298699,0.063174464,0.24662942,0.29546687,-0.008082262,-0.09463754,-0.13092825,0.075741895,0.34293702,-0.6828794,0.20223314,0.06926853,-0.13060787,-0.09727914,-0.38909715,-0.2259853,-0.76032215,0.4649068,-0.6127435,0.4659317,0.05390032,-0.38728186,0.17444697,0.14786415,0.08607909,-0.3006141,0.025280707,0.24975269,-0.2467665,-0.010213274,-0.11135366,-0.1319678,-0.6110503,-0.6416544,-0.040125377,-0.76969075,-0.10681126,-0.25459424,0.25161105,-0.41886976,-0.17956187,-0.13852994,0.6892612,-0.3669843,-0.09188948,0.3473404,-0.30912212,0.044397715,-0.6944335,-0.10379167,-0.1292716,0.24683383,0.16167362,-0.18021949,0.38695845,0.29503724,0.535183,0.14452846,-0.48207992,-0.25937566,-0.2070062,0.14108585,0.36160058,-0.03160562,-0.43593714,-0.2560727,-0.03251125,0.29550898,0.20135999,0.12429092,-0.24531978,-0.012790878,0.016006334,-0.06621535,0.61221343,0.5640994,-0.387051,-0.34615728,0.42913282,0.5262897,0.1473206,-0.15154754,0.02895058,-0.14032859,-0.52704656,-0.19446765,0.34909722,-0.101721086,0.4523492,-0.18139654,0.096976675,0.77542037,-0.25458872,-0.008484292,0.09078132,-0.024049483,0.03733647,-0.10252043,-0.04893371,0.1647776,-0.45635742,-0.12939726,-0.34368333,0.75230044,0.1203841,-0.6927091,0.3537046,-0.3526699,0.18484922,0.071612395,0.7678453,0.9193726,0.38251457,0.17822312,0.946641,-0.3926426,-0.000978748,-0.019753141,-0.3224481,0.112134345,-0.17167841,0.23270443,-0.5566718,0.14183864,0.069354214,0.04813111,-0.031996045,0.42497545,-0.5611543,-0.23296185,-0.010238314,0.4793445,-0.3037173,-0.13534458,0.7630006,0.97525734,0.9795694,0.012947644,1.2053457,0.23352405,-0.015832882,-0.026243674,-0.4322437,-0.45202303,0.24137177,0.3137619,0.38520396,0.44438535,0.021034218,-0.029526567,0.46939087,-0.3312748,-0.071022585,-0.0264953,0.46918732,0.085844584,-0.10035101,-0.25377408,-0.17067783,0.22501001,0.08130493,0.13198854,0.31479844,-0.24192633,0.4161291,0.06829448,0.97594833,-0.07449393,0.13565117,-0.047887847,0.3214164,0.23118669,-0.03191447,0.023400612,0.4397331,0.2998662,-0.036961015,-0.6401757,-0.01880515,-0.457332,-0.4039549,-0.13655359,-0.41046378,-0.16823,-0.103345625,-0.3396191,-0.16209862,0.07606958,-0.33256614,0.45615566,-2.6572392,-0.16587977,-0.21225865,0.2813782,-0.21570824,-0.27806014,-0.2807869,-0.5573687,0.25697103,0.48155424,0.38563377,-0.6522633,0.26978585,0.37587655,-0.45114416,-0.015762258,-0.6695892,0.04987555,-0.13787104,0.5596818,-0.066107996,-0.1983503,-0.055582453,0.33930275,0.72405994,0.2550672,0.078760415,0.22717243,0.55605197,-0.27838224,0.4711117,0.0078393305,0.5136975,-0.3132081,-0.15201798,0.46184438,-0.5960289,0.49233726,-0.08831741,0.1466934,0.46444505,-0.19580005,-0.8545135,-0.46870872,-0.2874146,1.333673,-0.42085066,-0.43180797,0.1972736,0.05303342,-0.09780001,0.0027299703,0.57072324,-0.023710625,0.081436664,-0.62824,0.020608593,-0.14423643,0.028404547,-0.25283945,0.3158379,-0.35098475,0.7451233,-0.12275295,0.47222778,0.24566802,0.16337799,-0.37466052,-0.47009212,0.03464221,0.91788226,0.47718492,0.01657589,-0.13197379,-0.28237692,-0.20428911,-0.30742452,0.06220662,0.7105649,0.73922265,0.076974966,0.18953416,0.33062685,-0.23355958,0.12659429,-0.14891662,-0.3054681,-0.17716987,0.1363612,0.55385953,0.4752838,-0.28468698,0.33622074,-0.009770856,0.11494614,-0.09708508,-0.5608517,0.41417858,0.699519,-0.2834793,-0.16404317,0.41584572,0.3335398,-0.45121717,0.54796016,-0.54365546,-0.3932008,0.71455234,-0.11055014,-0.48109868,0.12316526,-0.3425978,-0.0123076625,-0.79703003,0.38817507,-0.1988403,-0.5236714,-0.5063587,-0.2820915,-3.331853,0.08064154,-0.27766138,0.037978698,-0.20509528,-0.13586071,0.2268392,-0.61930925,-0.513817,0.0138741415,0.07790586,0.5102366,-0.1789302,0.0184834,-0.2572586,-0.3141631,-0.2526747,0.31857154,0.035693742,0.2772145,-0.11749828,-0.2557749,0.32434577,-0.17018303,-0.40718,-0.05230306,-0.41587108,-0.65853083,-0.0011490623,-0.5184734,0.01192869,0.74394625,-0.35671866,-0.030122865,-0.24626032,0.07804727,-0.00026202004,0.2609492,0.18104966,0.19494042,0.12018696,-0.15321824,-0.11434846,-0.42171523,0.3421604,0.031583305,0.36047807,0.6110965,-0.09337635,0.304142,0.59849226,0.5835696,0.028246025,0.854369,-0.01091819,-0.13554773,0.37443766,-0.19709644,-0.2183368,-0.68523675,-0.4378171,0.015339887,-0.5122446,-0.4437746,-0.2666145,-0.38447347,-0.85098904,0.4159736,-0.06533666,0.4061047,-0.42533195,0.3966714,0.39035594,-0.1683461,0.08790496,0.01850239,-0.33836567,-0.45986626,-0.4007395,-0.6232507,-0.5488692,0.29567567,0.88755393,-0.34217393,-0.27772823,-0.11944563,-0.20459591,0.09571756,-0.008734749,0.3102327,0.10735848,0.2831952,0.118569754,-0.67955714,0.49569565,-0.27401918,0.07179336,-0.5452168,0.09754805,0.5681012,-0.57963437,0.5604995,0.44597244,0.08912226,-0.015874136,-0.67706126,-0.1200792,0.29654044,-0.16434231,0.5327744,0.20113815,-0.5368748,0.48498413,0.048200972,-0.25186262,-0.5629016,0.5145111,0.045202628,-0.14632536,0.07734146,0.530969,0.18993686,-0.06424959,-0.044612598,0.36971715,-0.57754415,0.38835323,0.19594008,0.062162016,0.47674438,-0.08119988,-0.5130247,-0.6801052,-0.18328567,-0.66725415,-0.2827238,0.19990936,0.06278723,0.13279694,0.13580634,0.09079407,0.5688021,-0.19664091,0.13163643,0.054525163,-0.30664256,0.68665427,0.59762025,0.4121626,-0.4478312,0.64102435,0.18883155,0.01683959,0.11263867,-0.07880899,0.5309664,0.1732941,0.3731361,-0.0074408976,-0.02134178,0.25544256,0.53518695,0.2658208,0.30992278,0.07551976,-0.3537544,0.25738394,0.0839535,0.17646927,-0.18010172,-0.31927994,-0.1211717,0.105960384,0.14130113,0.4943615,0.16256252,0.3095831,0.098240234,-0.04783873,0.19616003,0.13036211,-0.1799563,-1.1561196,0.30986378,0.2731009,0.70911,0.3820366,-0.03535957,0.060739633,0.4144227,-0.40574,0.023383278,0.54711056,0.048393328,-0.4921479,0.55603725,-0.45903784,0.6006287,-0.2928588,0.060450904,0.06523884,0.2469431,0.3841678,0.8371367,-0.1551505,-0.13161825,-0.09407434,-0.37745965,0.3070138,-0.30082285,0.2815529,-0.53809905,-0.23754588,0.5309729,0.4298221,0.24465384,-0.15604068,-0.14541125,-0.0050073387,-0.2624923,0.17966333,-0.26208237,-0.070440575,-0.24256884,-0.62370074,-0.31497005,0.37804762,-0.1987588,-0.003043727,0.07430612,-0.19203536,0.2469234,-0.09140722,-0.036367543,-0.07857403,-0.74862665,-0.13815647,-0.25521123,-0.66385144,0.3561737,-0.53617823,0.26559445,0.35749295,0.041519698,-0.46255904,-0.025266973,0.12219657,0.7569516,-0.0655088,-0.21550855,-0.4527476,0.08227395,0.23592806,-0.3791856,0.040995333,-0.23261572,0.31428868,-0.5093518,0.4422526,-0.38087174,-0.29162642,-0.11539249,-0.28892526,-0.15853582,0.53647345,-0.33733508,-0.103839144,0.01812039,-0.15026553,-0.1435112,0.10919941,-0.39763257,0.31951335,0.048328295,-0.0019010444,-0.08278193,-0.1690273,-0.009087475,0.29380593,0.08322593,0.0074851355,0.4125576,-0.036427684,-0.47089857,0.028511949,0.20993654,0.49234647,0.30072436,0.0037050168,-0.37684292,-0.38824204,-0.44761154,0.47376123,-0.19093736,0.15015984,0.11013939,-0.47826445,0.86020446,0.11699426,1.1934065,0.1334456,-0.3478367,-0.055123515,0.70976615,0.13382418,0.06970655,-0.31506407,0.97371763,0.5232597,-0.16681153,-0.12662353,-0.5190557,-0.034099396,0.24728544,-0.43375424,-0.18749514,-0.2576766,-0.6647925,-0.13663583,0.19539373,0.117346145,-0.005953312,-0.1429073,-0.3090266,0.11074201,0.21077436,0.5073777,-0.6357212,-0.13509555,0.27108485,0.059121355,-0.08224145,0.24405119,-0.39317033,0.42754677,-0.8660352,0.2708903,-0.33283654,0.119829245,-0.13466407,-0.29626915,0.27971324,-0.01632762,0.2503793,-0.2724839,-0.56911534,-0.09241776,0.54152095,0.35062817,0.2396258,0.7199857,-0.2642147,-0.12390446,0.09126508,0.5888625,1.3744768,0.03958664,0.021272313,0.18601039,-0.34689537,-0.8646332,0.12770186,-0.59652257,0.010106995,-0.19293782,-0.29120365,-0.36221126,0.3302971,0.09515678,0.050161894,0.09451272,-0.6354393,-0.30909175,0.23448631,-0.35691544,-0.17092495,-0.3008484,0.19812168,0.7429244,-0.53104204,-0.31238538,-0.12656608,0.38318792,-0.2792696,-0.7004627,0.1586097,-0.21531053,0.4545992,0.17403619,-0.26515144,-0.0036601503,0.3566698,-0.52788234,0.23942131,0.40489987,-0.2968222,-0.060632993,-0.14194365,0.033640996,0.85887057,0.09607807,0.19188179,-0.51263314,-0.34533086,-0.88017386,-0.32439786,0.15718533,0.039325994,-0.10180918,-0.5138111,-0.12431045,-0.1964569,0.08326359,0.061341826,-0.5514437,0.3236056,0.08981296,0.41788575,-0.09343829,-0.86895114,0.011692842,0.0325492,-0.11179741,-0.5515013,0.6029986,-0.19077459,0.64843017,0.18276101,0.019948727,0.078195095,-0.76706225,0.28184783,-0.3351192,-0.21785161,-0.53671646,0.2671424 +278,0.23145445,-0.009363557,-0.5582789,-0.16954371,-0.22821675,0.13257079,-0.12859263,0.0925191,0.27187538,-0.16909552,-0.032713674,-0.2871717,0.018246353,0.42203125,-0.003671776,-0.79432875,0.05206568,0.06343984,-0.6241165,0.27444932,-0.50046855,0.3354211,0.087092176,0.45370868,-0.17403343,0.4008548,0.30902964,-0.11846461,0.0029663572,0.046667542,-0.19737138,0.14370015,-0.538283,-0.06936648,-0.043421127,-0.27403122,-0.0537891,-0.3704145,-0.41839963,-0.5531065,0.46391037,-0.76514274,0.37076932,-0.04260769,-0.2810386,0.015971167,0.07469871,0.17071728,-0.39346585,0.19100164,0.24383874,-0.24362648,0.020994714,-0.0089995265,-0.39907074,-0.63010937,-0.5965679,0.018460054,-0.52120346,-0.1936406,-0.22901069,0.17400467,-0.38422212,-0.006982646,-0.06019069,0.35252014,-0.39290524,-0.10578104,0.37948796,-0.4113397,0.15191732,-0.3328584,-0.10003046,-0.09135725,0.2950746,0.043204896,-0.13298579,0.09038316,0.4309731,0.6044818,0.092334494,-0.19492066,-0.32486895,-0.18746968,0.15646367,0.6282977,-0.035118695,-0.27888307,-0.17879613,-0.07286803,-0.07466348,0.24056439,0.109405585,-0.41712853,-0.04294942,0.093739934,-0.20026599,0.17701033,0.44768327,-0.470269,-0.3982389,0.35439935,0.29898039,0.12019281,-0.0914394,0.22518887,0.0719325,-0.54857594,-0.27815908,-0.025223702,-0.10405771,0.64698374,-0.17242433,0.34745649,0.7996913,0.02792698,0.07564153,-0.31209686,-0.19617596,-0.12416097,-0.17158036,0.13788517,-0.012328037,-0.41621166,0.17814705,-0.034053486,0.5394943,0.19906278,-0.76447064,0.5340017,-0.556023,0.22500817,-0.086239524,0.63827175,0.7227512,0.17663704,0.23765804,0.87190163,-0.5253693,-0.005262328,0.0064788377,-0.4597947,0.17816223,-0.08153339,0.12432452,-0.4576958,0.1062407,0.23838423,0.07333853,0.1373302,0.36342806,-0.37514946,-0.0041216356,0.026413266,0.8106751,-0.35560375,-0.13859022,0.6121072,0.9618759,0.8597541,0.07377785,1.4753801,0.36296773,-0.17786898,0.14772391,-0.33187765,-0.6001938,0.11625909,0.29389432,0.35878462,0.374019,0.09779961,0.034188617,0.49238124,-0.12504043,0.12491894,-0.08266645,0.041504826,0.19143721,-0.13772239,-0.20934296,-0.1977237,0.14586131,0.095944665,0.029219177,0.19923356,-0.06508358,0.40474457,0.03991801,1.5733042,0.048093643,0.21243067,0.026830545,0.42499354,0.17792644,-0.07458927,-0.08896788,0.44268394,0.21980432,0.06049029,-0.5278666,-0.0116682565,-0.27249768,-0.5254522,-0.18417202,-0.3525742,-0.19308588,-0.04316438,-0.52850825,-0.05999338,0.06518905,-0.35448188,0.46312752,-2.6417944,-0.24222098,-0.19060688,0.34058395,-0.2640289,-0.18008812,-0.28770676,-0.36292055,0.22001727,0.55875224,0.28283387,-0.694956,0.42418766,0.27432123,-0.2685252,-0.21314801,-0.4953084,0.041504435,-0.02078505,0.34669158,-0.045330606,-0.23756354,-0.13936569,0.34016052,0.6377777,0.11515672,-0.08579738,0.17461678,0.5873403,0.08159139,0.46180847,0.024549235,0.56055915,-0.09420212,-0.08255688,0.4064464,-0.41464075,0.39164236,0.0076846564,0.17403606,0.27378866,-0.34013766,-0.83267486,-0.65842295,-0.46857437,1.2061712,-0.41483146,-0.32735398,0.4268702,-0.1342059,-0.25143448,-0.021561358,0.596686,-0.16641276,0.11914352,-0.6985851,0.08324779,-0.1660455,0.17336296,-0.00785133,0.043085583,-0.24992874,0.80226403,-0.07931734,0.4839487,0.36340538,0.15262029,0.07949746,-0.3438166,0.09801947,0.7488329,0.3590071,0.13016237,-0.110056005,-0.07268435,-0.11632722,-0.25402504,0.07961813,0.55165356,0.60345274,-0.0076762266,0.15698598,0.24261053,-0.012201503,-0.021787878,-0.123840876,-0.25019753,0.090719566,0.05918566,0.47622636,0.7069054,-0.3741,0.2757969,-0.09939416,0.12124036,-0.16514038,-0.45752907,0.5261883,0.79528457,-0.16461898,-0.09328121,0.37364727,0.34163094,-0.45888567,0.357362,-0.5916973,-0.23659693,0.6843496,-0.11281093,-0.39087847,0.21402399,-0.2801552,0.00027410686,-0.86811036,0.26294914,0.1750716,-0.40320715,-0.51403326,-0.27967614,-4.4950185,0.10225999,-0.18526812,-0.13812509,-0.13760053,-0.012997559,0.4065496,-0.6050057,-0.6207759,0.0625685,0.01745971,0.41665202,-0.07688614,0.2678681,-0.32680917,0.024705933,-0.24673054,0.27654293,-0.021730285,0.35006994,0.09280316,-0.36108106,-0.049855884,-0.2840156,-0.5269205,0.0009378344,-0.6327223,-0.49194476,-0.1630537,-0.40668264,-0.21566382,0.645712,-0.42108536,0.0008144932,-0.38294727,-0.083821096,-0.40859452,0.39913654,0.26564452,0.08887308,-0.0111034,0.056599755,-0.18582766,-0.21274294,0.2315088,0.09225663,0.29233688,0.46096426,-0.026391953,0.11695484,0.47379836,0.58633476,-0.07350344,0.53068525,0.26499113,-0.016660614,0.41784337,-0.35280338,-0.1543541,-0.6781312,-0.47282353,-0.13813134,-0.47766295,-0.6419017,-0.2785096,-0.3197164,-0.77968884,0.29228207,0.090681635,0.09562083,0.0015735626,0.12996532,0.41385564,-0.17895497,0.08315345,-0.048160758,-0.16572626,-0.60099953,-0.40488562,-0.5267149,-0.59246504,0.2971845,0.99169606,-0.037502546,-0.18614075,-0.014008184,-0.33184072,-0.06279528,0.09328877,0.35553908,0.16236205,0.2711089,-0.121104226,-0.7554353,0.480642,-0.28229204,-0.13182405,-0.7199136,-0.14553468,0.5885606,-0.6625319,0.7391706,0.3132132,0.29622173,0.33746368,-0.51042837,-0.4276042,0.057616323,-0.1442359,0.41375613,0.1986264,-0.6109344,0.46337953,0.058078755,-0.12426666,-0.5467473,0.44034767,-0.095588036,-0.23097238,0.20299038,0.27646226,-0.021566238,-0.15956889,-0.08657404,0.17845353,-0.5409075,0.23083405,0.43624464,0.1373289,0.69748455,0.008753151,-0.17580707,-0.4871199,-0.1321838,-0.3888485,-0.19218354,0.01758334,0.13227496,0.18057561,0.0036745903,-0.16520275,0.34927887,-0.34575075,0.20460579,0.013212289,-0.2320607,0.28847197,0.48172122,0.26833802,-0.55879176,0.63279194,0.02382456,-0.013631408,-0.010585657,0.075239524,0.48127413,0.339052,0.27306303,-0.108052686,-0.19832861,0.07050019,0.8260956,0.2609891,0.28119504,0.14101006,-0.30029565,0.4767959,0.18412113,-0.038354933,-0.12902388,-0.40929016,0.020572288,-0.12518881,0.18973939,0.32859698,0.15979555,0.3318824,-0.04624647,-0.19073853,0.20040295,0.20092826,-0.06407888,-0.8848257,0.24505053,0.30743343,0.73695433,0.5397125,-0.054699536,0.07785439,0.39660814,-0.31073388,0.13261083,0.3516267,0.0025060389,-0.6581925,0.48608676,-0.46558738,0.42157394,-0.16022475,-0.05495014,0.18692581,0.28912768,0.23845135,0.7940397,0.02065594,0.046301913,0.07926922,-0.26689094,-0.04687813,-0.27199724,0.055036772,-0.59368736,-0.25240955,0.5881119,0.4657195,0.26870707,-0.40410948,-0.078658685,0.004940018,-0.11489851,0.026614103,-0.13469787,0.054167587,-0.14018808,-0.7068148,-0.40508646,0.583715,-0.063531466,0.0342194,0.09625184,-0.49710566,0.23337345,-0.2401552,-0.07185093,-0.0021677783,-0.5764381,0.018306818,-0.22410734,-0.64606464,0.3266059,-0.3031401,0.33779842,0.1472805,-0.0056156344,-0.33839735,0.30667183,0.037287258,0.9468637,-0.019571027,-0.021709297,-0.38148436,0.00359737,0.37299934,-0.28551146,-0.2700067,-0.44281915,0.02962571,-0.26452306,0.50878817,-0.18101814,-0.17751952,0.08047997,-0.23548743,-0.03704503,0.4625899,-0.26385167,-0.20532751,0.19710515,-0.025164505,-0.32121223,0.08426776,-0.5218106,0.38554904,-0.078272685,-0.033833876,0.097524405,-0.06113896,-0.10854716,0.32471174,0.085793674,0.12125405,0.36162123,-0.048605297,-0.28388914,-0.11374096,-0.03982205,0.42452118,0.1886103,0.0057397485,-0.23757364,-0.5054969,-0.3518459,0.21630737,-0.11768006,0.1309624,0.2029494,-0.45840195,0.63285726,0.3259376,1.1145824,0.15327676,-0.32892755,0.09749186,0.51999557,0.1312848,0.12182864,-0.38056055,0.86094946,0.64743054,-0.20365776,-0.29488248,-0.26430854,-0.21728945,0.22625473,-0.22228721,-0.24474518,-0.10239165,-0.7756596,-0.23372187,0.07395707,0.1636201,0.1780242,-0.005387408,-0.06695388,-0.019158361,0.13112389,0.3930978,-0.43266425,-0.33225998,0.4231877,0.17442906,0.009009003,0.13466808,-0.24569504,0.529727,-0.5834416,-0.008617686,-0.53135115,0.15980276,-0.12503621,-0.26909098,0.16928016,0.10171033,0.45530823,-0.15439722,-0.24556944,-0.22557256,0.61978656,0.23180728,0.33058444,0.75008476,-0.18378387,-0.085930444,0.0509907,0.56429297,1.4765676,-0.17594932,0.09726155,0.3965622,-0.31849846,-0.5497356,0.05493007,-0.45284218,0.0179833,-0.120588906,-0.37539244,-0.43619114,0.30078173,0.013149278,-0.13049963,0.14204773,-0.40877387,-0.33469492,0.37398693,-0.3075946,-0.3169732,-0.44741938,0.2161769,0.85772806,-0.37935358,-0.24367662,0.18629286,0.21467316,-0.25096673,-0.55969,0.13373365,-0.21434225,0.3764245,0.18045545,-0.4050133,0.037484027,0.27276683,-0.3970843,0.2638262,0.29667354,-0.35167366,0.11412395,-0.3676397,-0.2706081,1.1700188,0.04040704,0.04857164,-0.7550408,-0.41964203,-1.0180337,-0.39300236,0.3911038,0.10896073,-0.16831705,-0.32722783,-0.14685345,-0.042952288,0.098271124,0.0034671447,-0.4536619,0.43698883,0.12567674,0.5963388,-0.058816902,-0.8189311,-0.033756495,0.036828723,-0.33976254,-0.4690457,0.6008158,-0.13092259,0.6335104,0.116472736,-0.03804618,0.29409957,-0.604931,0.28929296,-0.3729282,-0.24152379,-0.79174,0.07594408 +279,0.52070415,-0.0655786,-0.53350294,-0.3629255,-0.28516334,0.004829384,-0.2915905,0.48549446,0.33400017,-0.2915897,-0.033658195,-0.06376381,0.08457661,0.35975912,-0.19240959,-0.7688421,0.18576291,0.027687248,-0.45281935,0.32380268,-0.533924,0.2533892,-0.07226106,0.5557346,0.124541275,0.21725042,0.16805845,0.05707741,0.016262898,-0.10289644,-0.11079005,0.20779954,-0.450803,0.059586473,-0.1408751,-0.3791834,-0.12457189,-0.6139983,-0.30479938,-0.7108605,0.4381201,-0.944457,0.518042,0.014104479,-0.43471014,-0.029846784,0.10477241,0.21906564,-0.30448788,0.017746128,0.16838518,-0.05969043,0.05271158,-0.0520681,-0.39539158,-0.53938377,-0.5373522,-0.04949818,-0.39367566,-0.11176216,-0.1731411,0.14248808,-0.27360418,0.11427668,-0.11375295,0.283548,-0.38994408,0.13944,0.3314746,-0.23336044,0.3258229,-0.39452076,-0.171479,-0.14581896,0.12300294,-0.1521486,-0.33744657,0.24074763,0.45039734,0.45534912,-0.11172022,-0.13715893,-0.1434138,-0.07435065,-0.023661284,0.54083055,-0.17296599,-0.44808608,-0.27255142,-0.08544663,0.47198117,0.3620242,0.124830484,-0.303151,-0.062772766,-0.0439449,-0.25779918,0.41458356,0.57675135,-0.22542554,0.016385445,0.23923896,0.11461711,0.2110394,-0.31114167,0.25241834,0.023414103,-0.6343314,-0.20380595,0.062007073,-0.018132769,0.64146084,-0.20007707,0.31058094,0.8146448,-0.04987899,0.090318255,0.003353889,-0.03440969,-0.21750389,-0.34687635,-0.23653457,0.19353603,-0.5359468,0.22132967,-0.20763633,0.6906093,0.22128065,-0.8389294,0.26552957,-0.49716923,0.061795056,-0.2728588,0.46465027,0.7506341,0.3057151,0.22890833,0.8666976,-0.55015653,0.0020582927,0.18689093,-0.3776531,0.11778737,-0.05900442,0.1438454,-0.49243176,0.0149521,0.3016537,0.022269057,0.2980102,0.35051024,-0.36684415,-0.13928145,-0.033294223,0.58998907,-0.37173927,-0.07173562,0.90415,1.1094193,0.9759419,0.2514907,1.4036181,0.25194532,0.06410829,0.12713057,0.10040493,-0.7559621,0.27278298,0.34855753,-0.15832523,0.31007868,0.037758388,-0.095304064,0.29114878,-0.15623012,-0.1150212,0.06248353,0.17127301,0.03103033,-0.192658,-0.45579916,-0.3691159,0.052072305,0.13973221,-0.021394338,0.22168042,-0.18628594,0.45935282,0.0803167,1.1301283,0.11896922,0.019525928,0.08688529,0.45407695,0.30330208,-0.15123743,-0.003390404,0.33400604,0.4102759,0.023848873,-0.5393436,-0.047655124,-0.23567723,-0.4340364,-0.14443508,-0.46667963,-0.19486769,-0.13976176,-0.41289192,-0.13623287,-0.046453707,-0.27244616,0.49542385,-2.6045823,-0.27072096,-0.28700837,0.37764776,-0.08038844,-0.22856101,-0.25883907,-0.35646528,0.36145777,0.48243946,0.38291675,-0.6642462,0.20008478,0.4162962,-0.39981124,-0.025298063,-0.72486234,-0.016245283,0.05832263,0.12600623,-0.031312607,-0.04134782,-0.0035862648,0.44220832,0.6746777,0.26787683,0.056488745,0.15402333,0.6074102,-0.060541015,0.44074866,-0.18127841,0.499293,-0.23069048,-0.10096991,0.16280511,-0.553943,0.3082443,0.08838688,0.2031483,0.50972486,-0.5632901,-0.89066434,-0.6607644,-0.35461363,1.2730033,-0.35324267,-0.3520512,0.32046348,-0.31926617,-0.357893,0.00034903103,0.6988631,-0.14556974,0.024810953,-0.7531987,-0.04516939,-0.14004105,0.09452196,-0.12636988,0.09250377,-0.20940205,0.6389631,-0.03929604,0.5445879,0.2750603,-0.060760442,-0.17682719,-0.5661256,0.026724437,0.6301385,0.42516702,0.17365351,-0.25570932,-0.01967145,-0.3660649,-0.1534461,0.18108211,0.5977086,0.7337833,-0.08581262,0.12698203,0.26396784,0.052909262,0.0140061425,-0.06731792,-0.25876853,-0.05070734,-0.042349238,0.6568934,0.8173749,-0.28827035,0.08906534,-0.19507772,0.30021903,-0.24810754,-0.45859057,0.4686336,0.8215122,-0.16494992,-0.20760764,0.43184245,0.48711485,-0.45638937,0.42965883,-0.47882476,-0.28318658,0.5701366,0.044367008,-0.4304443,0.17866786,-0.42908776,0.102678485,-0.8746029,0.29684895,-0.07720094,-0.6567535,-0.40204427,-0.21711022,-3.7670135,0.32254773,-0.11220991,-0.24880594,-0.35998207,-0.28252766,0.34999365,-0.47285625,-0.72848916,0.1116031,0.023985185,0.67000043,-0.13143604,0.21311869,-0.32879683,-0.13436005,-0.47650433,0.081642516,0.07575432,0.41854975,0.028575016,-0.226478,-0.09409742,-0.14395243,-0.56183624,-0.05772653,-0.6074788,-0.52549845,-0.035475694,-0.4211419,-0.1721263,0.71783984,-0.30112666,-0.030833466,-0.18008186,-0.13889788,-0.32467794,0.36238772,0.16225569,0.016635804,-0.104946285,0.17429723,-0.06708045,-0.18291743,0.29430187,0.03352531,0.2599705,0.1952443,-0.24296334,0.26740116,0.582251,0.5688435,-0.041986145,0.84169775,0.1433716,0.07686801,0.37857988,-0.22148173,-0.36421072,-0.49636263,-0.25462288,-0.15054895,-0.42401668,-0.3619538,-0.11704744,-0.35230318,-0.8054809,0.3033418,0.045688484,0.13810423,-0.12606731,0.113563724,0.3114597,-0.15846325,0.08071894,0.01738109,-0.18897992,-0.47567877,-0.27910936,-0.6170524,-0.4423189,0.18228103,1.0315483,0.01703896,-0.035126273,0.041057423,-0.3757809,0.025017908,0.053513046,0.2262349,0.0714206,0.3035411,-0.14273068,-0.69135326,0.36959934,-0.27967766,-0.21463369,-0.6741226,-0.13208306,0.82310283,-0.61398417,0.5731734,0.47445023,0.18092325,-0.022849688,-0.6573187,-0.23996077,-0.082530946,-0.21427602,0.5216982,0.26475817,-0.62087893,0.46335787,0.20869002,0.08257945,-0.52764684,0.6750527,-0.035800792,-0.030720444,0.06147889,0.31540298,0.043437406,-0.14145438,-0.0076776925,0.34748587,-0.44124264,0.25465816,0.33301866,0.17636098,0.47636122,0.15014863,0.046418622,-0.6153527,-0.15827553,-0.5411759,-0.22089785,0.040955763,-0.06704023,0.21100834,0.02253681,0.0025289059,0.28757524,-0.45994323,0.20703155,-0.17558318,-0.30489105,0.43441552,0.51159877,0.47967482,-0.43961674,0.7279393,0.098865904,0.07389788,0.055921335,0.06724205,0.39722478,0.22193164,0.407857,-0.06419944,-0.18922496,-0.06717538,0.7125402,0.13323382,0.31564507,0.27549368,-0.0771277,0.30595472,0.26476848,0.24475336,0.02048531,-0.34993613,-0.095205575,-0.31086105,0.21840522,0.4541368,0.13391879,0.21131001,-0.03745347,-0.30387354,0.0804719,0.11624265,-0.070126764,-1.477752,0.419491,0.32772538,0.58505285,0.42703635,-0.06190697,-0.10008895,0.4804807,-0.09265811,0.12762177,0.4425321,0.20125414,-0.49608934,0.51754546,-0.44295403,0.4093467,-0.17210084,0.008385392,0.04943084,0.22026491,0.46664846,0.80901533,-0.01495376,0.062924065,0.12671468,-0.49035153,0.14504395,-0.5976485,-0.14301051,-0.45225498,-0.25445905,0.7156662,0.4624494,0.26287997,-0.32099152,0.0028240085,0.06441911,-0.09392312,-0.0709194,-0.069640115,-0.07239577,-0.18554547,-0.7921986,-0.28301385,0.54564327,0.0810371,0.041748002,0.036163215,-0.4019333,0.23769388,-0.09080967,0.114953026,-0.08842479,-0.7575753,-0.18709454,-0.46632844,-0.5835154,0.37655446,-0.4047867,0.23502082,0.290327,-0.0039951284,-0.1513558,0.1697986,0.053157944,0.8668225,-0.121270455,-0.27169263,-0.3480562,-0.070427254,0.4187062,-0.36761364,-0.22639774,-0.40299994,0.13615492,-0.411981,0.421807,-0.12258467,-0.18815543,0.1402188,-0.07504703,0.1279442,0.29471233,-0.419838,-0.14333938,0.13193703,-0.019071983,-0.2602684,-0.04386787,-0.36169192,0.31557643,0.16829793,-0.1145769,0.0079069,-0.048034254,-0.0032826113,0.23647195,0.047447227,0.34425977,0.42867282,0.09705083,-0.1901258,-0.017798148,-0.06712636,0.55951744,0.13178164,-0.15906286,-0.333005,-0.44207904,-0.22327684,0.347076,-0.12579928,0.21282199,0.1412176,-0.22263974,0.67237663,0.086199924,0.95031637,0.026363032,-0.4587954,0.033890724,0.39082286,0.035899326,-0.042901166,-0.18003082,0.8157214,0.4721101,-0.3185169,-0.18431924,-0.3340855,-0.010783257,0.16117981,-0.24910952,-0.25985977,-0.08619071,-0.8011743,-0.08792515,0.124421544,0.13891198,0.18973152,-0.08894908,0.10343843,0.11612462,0.048312314,0.38707623,-0.56485695,-0.05816279,0.12920438,0.2714686,0.15631205,0.047191355,-0.3429709,0.33480608,-0.702204,0.05359237,-0.5239128,0.15828635,-0.07968329,-0.349998,0.07599049,0.03978865,0.385406,-0.29182658,-0.21809545,-0.28271887,0.58247113,0.25064695,0.2978807,0.5160316,-0.13269068,-0.1980696,0.120111145,0.58221424,1.3364828,0.024707876,0.19076723,0.31326184,-0.42169425,-0.6279917,0.10720838,-0.5133956,0.28775424,0.072737165,-0.15091498,-0.43474352,0.23165125,0.1423004,0.14997014,0.15528764,-0.46913,-0.36283916,0.49945885,-0.2179166,-0.37885025,-0.43896464,0.17361487,0.52411723,-0.30834323,-0.2183864,0.06330102,0.19656856,-0.15276517,-0.57617193,0.18076184,-0.32347396,0.4225359,-0.020665947,-0.31883547,0.014192109,-0.039959185,-0.38753584,0.31342676,0.2195377,-0.31867245,0.12677428,-0.38517645,-0.24176484,0.9978268,-0.15399057,0.0743686,-0.8460999,-0.49266788,-0.80347854,-0.32785445,0.11872636,0.25529224,0.012375405,-0.46337363,-0.096494675,0.026869927,0.13279673,0.08524053,-0.3084849,0.52164924,0.07236807,0.60619736,0.0052044024,-0.9148639,0.07135351,-0.012836965,-0.35057515,-0.51282036,0.5452126,-0.06012667,0.70642304,0.1744315,0.024374459,0.108839154,-0.5220873,0.25986654,-0.30471,-0.11301964,-0.64480597,0.25844243 +280,0.38585696,-0.22826797,-0.3118259,-0.028173767,-0.36128557,-0.06341594,-0.22462751,0.37177643,0.053329192,-0.25322318,0.113442235,-0.23243767,-0.0747551,0.46217245,-0.055850826,-0.58142555,-0.0556983,0.21418765,-0.7720632,0.47095028,-0.47743994,0.31943735,-0.044569906,0.2337326,0.11522865,0.20669614,0.15195277,-0.06658156,0.08051782,-0.021297207,-0.16378628,0.08759861,-0.7238414,0.03293892,-0.07538373,-0.47269756,-0.0001305892,-0.40591204,-0.46051452,-0.6635672,0.42227536,-0.6385028,0.5440425,-0.016064541,-0.23915097,0.3838369,-0.014838344,0.41477197,-0.16254187,-0.060591143,0.31201226,0.08937312,0.09891576,-0.031067299,-0.06963369,-0.16117916,-0.5616241,0.20120867,-0.6550518,-0.3072772,-0.22755705,0.08620911,-0.2862003,0.08344467,-0.15996419,0.23177862,-0.4392076,-0.0003440655,0.2066204,0.047910087,0.39149398,-0.5368671,0.06110427,-0.0005637224,0.29049727,-0.32474282,-0.08344884,0.36747366,0.17415749,0.5349014,-0.12757236,-0.2337847,-0.22999078,0.05819691,-0.035377637,0.5790507,-0.21535493,-0.17879637,-0.21630232,0.06891166,0.072769456,0.047925882,0.013281242,-0.44289398,-0.15796882,0.011740474,-0.17481364,0.34852225,0.47567955,-0.33085153,-0.41219428,0.44145903,0.6142543,0.25640884,-0.016881568,0.07692206,0.095250055,-0.5999793,-0.1909993,0.06870634,-0.10692864,0.30779508,-0.09288403,0.27676222,0.5287254,-0.15000953,-0.00014780118,0.023539312,-0.09710283,0.08844945,-0.009228092,-0.13862415,0.122028835,-0.52586067,0.10863734,0.0063155983,0.69336754,0.26312354,-1.0324047,0.482663,-0.53464574,0.23886794,-0.21814886,0.5027022,0.85115784,0.29208195,0.10596656,0.66108704,-0.4003204,0.1672634,-0.017906679,-0.33975917,0.10304761,-0.2662551,-0.087527186,-0.636747,-0.24176253,-0.15784399,-0.09664365,0.11327824,0.35756794,-0.61447626,-0.005023663,0.058565255,0.85176057,-0.32116002,0.07201638,0.51521474,0.98029524,1.0519128,0.040070277,1.0615811,0.26499084,-0.26612785,0.43020284,-0.49504006,-0.7660283,0.1646482,0.3784278,0.18008439,0.35756442,0.063966155,-0.17575312,0.4127747,-0.21318339,0.14192517,-0.25406408,0.2232592,0.023463763,-0.0745122,-0.3364689,-0.2614149,-0.06842144,0.068476915,-0.19492912,0.26192573,-0.216503,0.16848649,-0.14832078,1.7551539,0.058807313,0.08901928,-0.0512659,0.50796026,0.16201332,-0.19618379,-0.3332078,0.12217785,0.36137456,0.18133554,-0.5461387,0.19314322,-0.21509251,-0.26280028,-0.21667616,-0.3147793,-0.009407144,0.022599759,-0.32723382,-0.124309935,0.07259009,-0.22771376,0.47563988,-2.7092996,-0.27337974,-0.036840964,0.28333658,-0.32073924,-0.27811965,-0.16395529,-0.48802802,0.39658806,0.43765905,0.5738473,-0.5172056,0.4205747,0.30336234,-0.4709272,-0.026895102,-0.54182607,-0.2574784,0.15639485,0.3121609,0.012172859,-0.08198082,0.1019494,0.31953257,0.31437236,-0.019473631,-0.13200404,0.27580982,0.3924568,0.215213,0.4225829,-0.18457787,0.41437656,-0.18110792,-0.15861845,0.37206113,-0.05605016,0.09797314,-0.13684556,0.026203077,0.37824932,-0.554183,-1.1066761,-0.62227523,-0.17110196,1.1228496,-0.085169144,-0.41157582,0.3623734,-0.20998643,-0.019750841,-0.114903346,0.21914893,0.003728087,-0.19710754,-0.74417603,0.18183804,-0.0003869992,0.27400473,0.11266388,-0.12009184,-0.4399025,0.5440095,-0.050673053,0.27643636,0.33667472,0.22120523,-0.053994242,-0.40767053,-0.0019238546,0.83366483,0.28768322,0.107301205,-0.25569585,-0.15782693,-0.35151953,-0.13720319,0.028869757,0.18998197,0.7646183,-0.0229565,0.11692445,0.25460657,0.024444746,0.03903342,-0.1457146,-0.38920718,-0.033482857,-0.13121557,0.57631916,0.45463058,-0.06836903,0.62828094,-0.022667289,-0.07089126,-0.037504423,-0.46080494,0.36015198,1.0308225,-0.095654234,-0.15053143,0.41906154,0.30323836,-0.25002593,0.46191108,-0.50357604,-0.20795393,0.4159319,-0.2641146,-0.35676634,0.21786682,-0.2863719,0.022345837,-0.7480104,0.35926837,-0.256918,-0.41635063,-0.41643965,-0.06521039,-3.3132145,0.32101753,-0.28557765,-0.12618777,0.046006925,0.027197931,0.053130455,-0.48669222,-0.43261644,0.13245577,0.030968208,0.71078897,-0.13796574,0.22076324,-0.13596264,-0.15387252,-0.5816707,0.06989597,0.12066985,0.37632772,0.04347592,-0.41016307,-0.035373643,-0.2739712,-0.43289095,0.05500467,-0.5366204,-0.4558819,-0.18217601,-0.54899573,-0.28215298,0.65322673,-0.063643344,-0.036545064,-0.3380537,-0.11279417,-0.04397194,0.39495194,0.06593116,0.15297712,0.108311705,-0.10341994,-0.20612127,-0.30644912,0.17357372,0.14990409,0.25746238,0.30298233,-0.024057636,0.18841259,0.72494423,0.6516092,-0.03110086,0.7488741,0.6283251,-0.2897131,0.24054003,-0.4219867,-0.03968419,-0.44421598,-0.32096216,-0.014955505,-0.33273312,-0.5247651,0.048426434,-0.3587425,-0.5589003,0.4123122,-0.24414675,0.20106679,0.14585368,0.17678039,0.386997,-0.17473032,0.059911866,-0.26089802,-0.041366894,-0.504021,-0.19582139,-0.64377797,-0.6196541,0.123155676,1.0708916,-0.27436325,-0.03343803,-0.0023098404,-0.17176083,0.019999009,-0.18927087,-0.039659288,0.48217303,0.05778877,-0.084468655,-0.84466565,0.41372606,-0.05747594,0.070933394,-0.6111567,0.11893476,0.5222231,-0.56207013,0.40061662,0.16009416,0.14381093,0.1579254,-0.4221103,-0.22002414,0.11400933,-0.27029032,0.35353664,-0.058539968,-0.73834795,0.53795606,0.4098185,-0.3814205,-0.7902063,0.44605148,0.13689524,-0.37779596,0.027323525,0.20078363,0.13047005,0.046881992,-0.23432504,0.20656028,-0.47323292,0.38661635,0.24191254,-0.0020760251,0.2487264,-0.12941232,-0.21209964,-0.44135284,0.13063493,-0.34684926,-0.19335444,0.1510161,0.16598687,0.066035345,0.17778006,0.23448262,0.5134559,-0.17792842,-0.023732327,-0.034984075,-0.27368662,0.24776171,0.3661661,0.44942024,-0.52858037,0.39287668,-0.08173181,-0.22699663,0.05396668,-0.02061433,0.41807762,0.0155507345,0.18544634,0.025992375,-0.21829888,0.18254271,0.82421345,0.061214678,0.3294017,-0.11299564,-0.19079638,0.24656034,0.16150907,0.17258194,0.13195273,-0.41303867,0.13852245,0.069542974,0.25390774,0.55867094,0.091492414,0.058185633,-0.16774672,-0.43139744,-0.07161217,0.11992944,-0.08248111,-1.0762902,0.29582813,0.18926011,0.7187191,0.5399166,0.072442845,0.11481195,0.6074966,-0.14415401,0.14063805,0.2818065,-0.23340549,-0.51652485,0.4103033,-0.80427814,0.45554936,0.00557148,-0.059303764,0.19795102,0.09730869,0.43542054,0.6336868,-0.2269027,0.061022997,-0.059578504,-0.36473292,0.10448758,-0.36757568,0.14213619,-0.48814788,-0.26921052,0.56371075,0.4265386,0.0018518636,-0.09105854,0.016386902,0.087876625,-0.12873934,0.20428218,-0.026590105,-0.026926903,-0.00236094,-0.6891434,-0.05748788,0.51825535,-0.040227547,0.060330693,-0.15773703,-0.08484332,0.21961817,-0.3451174,-0.07619403,-0.046945572,-0.7484216,0.10642259,-0.24206796,-0.1178433,0.40240467,0.090877295,0.2356326,0.24967256,0.07106553,-0.38852963,0.5472979,-0.057861824,0.61680263,-0.12307942,-0.07299944,-0.37924004,0.11224422,0.21509662,-0.12694168,-0.009361029,-0.07841914,-0.07546654,-0.45844942,0.51465935,0.041444607,-0.2996701,0.22987534,0.036758646,0.12364351,0.54881036,-0.16955763,-0.08504529,-0.25555217,-0.18550918,-0.283474,-0.08578674,-0.045446552,0.030943645,0.36041233,-0.20686539,-0.09614631,-0.18075283,-0.13917543,0.7312647,0.016923595,0.468876,0.1911597,0.24332125,-0.39005846,-0.09400452,0.20430698,0.4054887,-0.12302829,0.053053934,-0.31453174,-0.2302807,-0.3006863,0.15770207,-0.117779806,0.23500241,0.0075456477,-0.3092759,0.59118396,0.05917041,1.2184913,0.029727807,-0.09250657,0.14971565,0.40458503,0.03353287,-0.061072662,-0.57892036,0.70474064,0.6626462,0.07088883,-0.118972294,-0.32776773,-0.28810984,0.16001275,-0.2102932,-0.09305541,0.044171922,-0.4534859,-0.3626711,0.24810195,0.19952084,0.05080194,-0.053459898,-0.00774964,0.2446309,0.03917716,-0.026044901,-0.4436873,-0.24921252,0.30812597,0.31806183,0.055447817,0.08807458,-0.5337459,0.30817306,-0.45160607,0.18583933,-0.12291881,0.1141282,-0.1021676,-0.18268625,0.15887429,0.26940653,0.34365308,-0.015046761,-0.45949432,-0.20850655,0.49986377,0.1275668,0.20045565,0.62106365,-0.24582323,0.06251355,-0.07089352,0.35012877,0.92948955,-0.27944046,-0.123533994,0.3683148,0.012060793,-0.56818855,0.386734,-0.15791391,0.049448133,-0.0052115778,-0.11851183,-0.53226954,0.25745958,0.13898028,0.045854192,-0.025016535,-0.52652013,-0.21318044,0.23337461,-0.24148735,-0.28859347,-0.5349714,0.16887243,0.6970284,-0.35457537,-0.11489635,0.26584083,0.30763647,-0.21379226,-0.4610661,0.00093893363,-0.3410384,0.16719213,0.09364842,-0.30065295,-0.16309184,0.2315672,-0.33397844,0.1751036,0.21535228,-0.3670987,0.046858825,-0.06702693,-0.02785799,1.0540801,-0.4060299,-0.049488008,-0.54417664,-0.58856356,-0.85271984,-0.3135957,0.55018437,0.28751945,-0.01108806,-0.57367355,-0.1109033,0.010939741,-0.23168564,0.08343828,-0.35750368,0.33914438,-0.07508458,0.33296835,-0.26275316,-0.696756,0.13188836,0.13260631,-0.3118592,-0.522019,0.54037774,0.065791614,0.79123527,-0.043067355,0.055584233,0.2241556,-0.23288804,-0.030876756,-0.3447697,-0.25684935,-0.68849933,0.013150591 +281,0.41298103,-0.12337211,-0.7475688,-0.22263561,-0.39870918,0.093526065,-0.39986786,0.25470877,0.37886307,-0.3096392,-0.11243609,0.038532693,0.0040770844,0.28763,-0.14354764,-0.79887265,-0.02187092,0.23800516,-0.6720682,0.54809856,-0.36346152,0.2866092,0.17899752,0.36760625,0.07093784,0.28313342,0.26504114,-0.0040626875,0.05665471,-0.4157218,-0.2949454,0.28678116,-0.49675846,0.1458414,-0.12889044,-0.3931148,0.1412263,-0.39026085,-0.12113964,-0.7802291,0.18329304,-0.94091415,0.7682374,-0.006005837,-0.28532156,-0.118541926,0.44393086,0.35229203,-0.1339718,0.19185238,0.32839823,-0.54611176,-0.099285305,-0.51415294,-0.30414757,-0.6303596,-0.36402044,-0.17499618,-0.6530974,-0.17664142,-0.13626347,0.28452063,-0.32941714,-0.14782153,-0.33298394,0.20977592,-0.42876324,-0.066910185,0.46339425,-0.3696566,0.4217817,-0.53483635,-0.0039884397,-0.025031522,0.56003,0.027253568,-0.14963834,0.27294505,0.3700521,0.5789757,0.3583857,-0.30821905,-0.24945964,-0.47809628,0.22874095,0.5053425,-0.20513724,-0.20421036,-0.33517066,0.049750905,0.5794075,0.7146662,0.061416764,-0.22389102,0.12133219,-0.17436182,-0.110450245,0.8197322,0.6013865,-0.42008844,-0.27892226,0.28553572,0.53038865,0.29999784,-0.25731838,0.21141778,-0.092826866,-0.34539494,-0.21865956,0.14853565,0.0702968,0.46390542,-0.110285185,0.17217314,0.7550222,0.017654648,-0.06961594,0.14913154,0.016548946,-0.18169113,-0.3354423,-0.13420182,0.30890992,-0.7076991,0.101038545,-0.47273052,0.5715002,0.066391535,-0.5648136,0.34768713,-0.5805975,0.12500249,0.17361309,0.708328,0.7879161,0.68764925,0.14039792,1.1212419,-0.33394745,0.044625234,-0.08918645,-0.24941151,0.022787096,-0.2126873,0.28291237,-0.47697327,0.40955806,-0.16370346,0.23341863,0.121119894,0.5742474,-0.5608974,-0.28744328,0.358104,0.98974913,-0.29099336,0.08807536,0.89080507,1.108491,1.0924902,-0.1482292,1.2089853,0.09508413,-0.22575837,-0.37523127,-0.07814234,-0.6085045,0.18244511,0.5989978,-0.005922228,0.30416945,-0.2394415,0.028957734,0.25803724,-0.397396,-0.046589483,-0.038399484,0.32833126,-0.11965337,-0.32722148,-0.55007154,0.09954784,0.14568977,-0.16388577,0.29552695,0.34653464,-0.3760961,0.6042946,-0.19341756,1.0038041,-0.4131066,0.23730595,0.116797,0.45800677,0.43221262,-0.041763693,0.23929523,0.36692464,0.19928986,-0.18541552,-0.5117039,0.06640967,-0.52400905,-0.46184027,-0.19823976,-0.50225693,-0.41514876,0.05004431,-0.1959034,-0.13954593,-0.10228893,-0.24487162,0.25218558,-2.5842006,-0.28066695,-0.2887701,0.15788774,-0.36941457,-0.17769569,-0.04427914,-0.6551928,0.44811115,-0.023652056,0.65116686,-0.48526064,0.5914963,0.7108099,-0.5926618,-0.12586023,-0.7467758,0.11621734,0.02787014,0.51945156,-0.07156327,-0.43898904,-0.16882968,0.1520039,0.86894816,0.24488465,0.13639182,0.6457565,0.48342383,-0.060008723,0.26582342,-0.16467111,0.80551696,-0.46615645,-0.17912148,0.5099442,-0.2805929,0.31974664,-0.4696785,-0.05166751,0.675517,-0.6052928,-0.9455004,-0.66413844,-0.14227375,0.92323905,-0.41662994,-0.6080092,-0.031494364,-0.017389802,-0.20333135,0.25283238,0.7567741,0.008156717,0.2699521,-0.651401,0.017467445,-0.22324462,0.2607487,-0.022779679,0.007368932,-0.5652122,0.7900674,-0.025671871,0.6197796,0.22272663,0.28395975,-0.3284008,-0.3893695,0.05378997,1.0490981,0.562715,-0.014222096,-0.16513199,-0.23773356,-0.24906571,-0.23849572,-0.09612441,0.8866277,0.584093,-0.16050573,-0.063291505,0.46563336,0.022741223,0.090191774,-0.1860183,-0.44167468,-0.21399911,0.22054644,0.5001552,0.5940744,-0.058352027,0.39308295,-0.07136922,0.40527,-0.43846694,-0.6967848,0.852567,0.59764856,-0.30999115,-0.21535844,0.9059685,0.5794526,-0.43369523,0.700263,-0.7395859,-0.59723526,0.48067227,-0.265789,-0.5534523,0.1675101,-0.27148008,0.18948011,-0.73719543,0.034594845,-0.5663728,-0.58385605,-0.39950833,-0.0988968,-2.6045878,0.20809032,-0.17415303,0.078620195,-0.5772212,-0.08910362,0.34024903,-0.52563226,-0.8694075,0.0813544,0.34980235,0.6812579,-0.15994185,0.15286784,-0.25374487,-0.426805,-0.038701374,0.4376808,0.039303433,0.13199392,-0.24806286,-0.2981713,-0.111230224,0.16797227,-0.3731371,0.12358122,-0.63049656,-0.18988615,-0.16522576,-0.533542,0.025765916,0.5939438,-0.5806133,0.111590564,-0.41593257,0.217898,-0.1436191,-0.06909203,0.0048071765,0.3301395,0.21757887,-0.2818682,0.19492847,-0.21041067,0.4919822,-0.054858416,0.3666626,0.09531555,-0.16334239,0.092203595,0.34023428,0.6683967,-0.12153078,1.2533947,0.22521722,0.023265779,0.3732694,-0.33259335,-0.46460328,-0.76472235,-0.27920312,-0.0034552515,-0.57610464,-0.62465215,0.008178368,-0.29998037,-0.94234544,0.61082274,0.25368738,0.71720916,-0.13262953,0.5274064,0.39847192,-0.34137896,-0.0036877394,-0.0014831424,-0.17864482,-0.4973686,-0.18547106,-0.8387367,-0.4440465,0.149441,0.6760402,-0.33806232,0.019466402,0.25658584,-0.15950361,0.045284066,0.40128386,0.26896754,0.039796274,0.6893907,0.11109132,-0.6142078,0.28848234,-0.05030176,-0.004854093,-0.53606194,0.23352844,0.67979836,-0.685164,0.6045111,0.31859824,-0.005329887,-0.5326076,-0.69658947,0.02698384,0.10597768,-0.26646549,0.6671719,0.3577198,-0.7272146,0.4337845,0.21025692,-0.35122523,-0.73847437,0.31984735,-0.14535688,-0.27398002,-0.12493386,0.47151753,0.29997197,-0.16356453,-0.06476927,0.23069203,-0.38026378,0.34908366,0.21200375,-0.18380165,0.3961886,-0.22214676,-0.6441744,-0.8762761,0.00472944,-0.8888218,-0.35214877,0.3642485,-0.011714642,-0.1304649,0.29196063,0.13827656,0.489073,-0.25744188,0.31318316,-0.07319105,-0.3544736,0.4805175,0.5266729,0.39757863,-0.5060399,0.7463975,0.25401685,-0.38866505,0.04390532,0.18899961,0.49582806,-0.12153655,0.6455582,-0.1956581,-0.18585674,0.31149527,0.6928794,0.30962613,0.34238315,0.3676798,0.039420653,0.34186724,-0.084905244,0.13399726,-0.13134916,-0.60143965,-0.16310972,-0.20739417,-0.09535009,0.6509708,0.26531553,0.32103968,0.22332849,-0.10091295,0.0318862,0.15843636,-0.201388,-1.4337119,0.41345263,0.3689982,1.0227332,0.4361861,0.1793952,-0.23854147,0.6692422,-0.26080242,-0.0071980185,0.48259673,-0.09629199,-0.36673054,0.86495537,-0.5103035,0.27715686,-0.15882663,0.042819276,0.19234037,0.08703885,0.43162325,0.9541846,-0.16554506,0.12128656,-0.20388277,-0.2570599,0.07365418,-0.08772632,-0.034912236,-0.28055304,-0.6301263,0.6497425,0.31491446,0.5659385,-0.3318127,-0.10021607,0.014336452,-0.087637305,0.07441041,0.012895271,0.015642157,-0.117111154,-0.2370513,-0.17866515,0.5410337,0.2735365,0.12462976,-0.12310908,-0.32592276,0.20909922,-0.11202619,0.18228944,-0.05745773,-0.6528684,0.023299748,-0.48044014,-0.75020033,0.4825474,-0.043321133,0.012582955,0.068143845,0.040755488,0.085395336,0.39888978,-0.007382711,0.6011059,0.18496759,-0.23899852,-0.33687532,0.31047136,0.102053784,-0.30659518,0.13195123,-0.19948624,0.23037918,-0.6807251,0.52595854,-0.30023023,-0.5217561,0.29702833,-0.19926246,-0.18184783,0.5473251,-0.05130415,-0.18555135,0.29155704,-0.3257149,-0.5181007,-0.36908484,-0.32244542,0.077212386,0.042168155,0.10140253,-0.2931137,-0.10967436,-0.14522974,0.42359543,0.06078888,0.15535861,0.37500224,0.21576358,-0.2779204,0.28569826,0.23564106,0.58641213,0.23300253,0.2048825,-0.034690004,-0.61937755,-0.5166794,0.37510777,-0.17926304,0.20082866,0.077839054,-0.09833121,1.0108724,0.15166552,1.2135514,0.109345786,-0.50978214,0.048391223,0.72021085,-0.18643408,0.029448437,-0.45779637,1.183154,0.5949823,-0.08530333,0.08173082,-0.6024274,-0.036908817,0.26374283,-0.486442,0.023777207,-0.0024169683,-0.62304544,-0.41273323,0.27603164,0.20725183,0.24662483,-0.17454381,0.017379751,0.24300444,0.18742366,0.30173308,-0.68631697,-0.48051396,0.33498624,0.20267887,-0.23870124,0.08421304,-0.38773838,0.28938976,-0.93672925,-0.09339446,-0.536537,0.027666725,-0.22974499,-0.55978507,0.28418946,-0.26275393,0.17241098,-0.47885522,-0.42522725,0.099992335,0.27658865,0.13520657,-0.012053105,0.7474621,-0.17407827,-0.01453653,0.18822347,0.6343239,1.2099756,-0.3559307,-0.006259749,0.24194975,-0.6298856,-0.8857846,0.18103087,-0.7472165,0.022139013,0.10587004,-0.7753062,-0.3453773,0.19506,-0.062067404,0.016012596,0.061712313,-0.6141674,-0.04352948,0.30652192,-0.28203154,-0.19166468,-0.119728826,0.32382938,0.7565275,-0.059730694,-0.48245803,0.111166306,0.41788518,-0.40589654,-0.85006255,0.05127284,-0.074733905,0.30015948,0.108232595,-0.40304545,0.05704719,0.13337496,-0.7197202,0.049340744,0.349709,-0.3592459,0.097711496,-0.4186183,-0.09359869,0.8163946,-0.3330674,-0.1010929,-0.5394128,-0.4467328,-0.7321841,-0.38260853,0.040931065,0.15241018,0.05498913,-0.62851995,0.004710036,-0.47980985,0.0057980516,0.106692344,-0.32735708,0.45411953,0.08304848,0.70290357,-0.42709243,-1.0354785,0.33643898,0.2405989,-0.1354749,-0.66073143,0.58350044,-0.09855429,0.9524073,0.112284474,0.010304034,0.1470065,-0.79609203,0.16156285,-0.37484252,-0.023599394,-1.0512055,0.09608439 +282,0.23506545,-0.04745271,-0.5727497,-0.07582389,-0.19750595,0.20315756,-0.33212045,-0.053400125,0.20192198,-0.60655296,0.14427061,-0.15734722,-0.13434647,0.08817638,-0.023916574,-0.65983665,0.14087038,0.20868151,-0.38441107,0.68131894,-0.33795214,0.20459105,0.22740528,0.06716792,-0.3155616,0.06684058,0.12014448,-0.23017468,0.0020063946,-0.2345116,0.24186179,-0.21694052,-0.67305475,0.32572696,-0.16414347,-0.29222178,0.15971753,-0.2197411,-0.36539742,-0.66154444,-0.015355246,-0.6574688,0.42430228,0.057672907,-0.22502716,0.23743887,0.18010256,0.40019575,0.04838633,0.037103213,0.40252572,-0.3971857,-0.44743943,-0.3364059,-0.26329067,-0.527318,-0.61719435,-0.14239536,-0.58644044,-0.063568756,-0.37084177,0.27770692,-0.3108826,-0.12702273,-0.23265198,0.4224287,-0.33094046,-0.09066766,0.20439477,-0.15170206,0.3115857,-0.6825549,-0.085974105,-0.12350445,0.022962779,0.23382504,-0.0056008226,0.19072269,0.090730555,0.64246315,0.11427462,-0.28940943,-0.20679018,-0.09303512,0.313866,0.4786003,-0.1533698,-0.0074018836,-0.13114777,-0.100123934,0.23211776,0.17560038,0.07151873,-0.40858525,0.096470796,0.028265102,-0.2864116,0.24927644,0.57153946,-0.28301406,0.03614617,0.30373335,0.40365642,0.0057160174,-0.22611117,0.004922245,-0.04715121,-0.26485643,-0.09411745,0.19469681,0.057877224,0.3407772,-0.046391,0.28966698,0.4960881,0.057595883,0.035710864,0.04289352,-0.0002531835,0.23175107,-0.21414296,-0.0761037,0.25402918,-0.7588231,0.023281422,-0.56290495,0.6657599,-0.14525904,-0.9907653,0.33044153,-0.38196892,0.056695692,-0.020100351,0.6783906,0.7420593,0.42438123,-0.16499774,0.66460526,-0.5206779,-0.030737562,-0.17519887,-0.17023587,0.08936262,0.039201222,0.5385553,-0.4718495,-0.23803592,0.013537867,-0.10936506,-0.28776667,0.37929398,-0.3939542,-0.27721497,0.25239316,0.937374,-0.20250957,0.011366389,0.4086208,1.3005129,0.82735676,0.13446344,1.1866072,0.20578954,-0.18717949,-0.21709575,-0.24185319,-0.5824296,0.097295836,0.19568647,0.90137875,-0.016944792,0.08178592,-0.20212804,0.45764956,-0.34715304,0.060734797,-0.1511825,0.4183907,-0.09952235,-0.19453189,-0.15729989,-0.061240885,0.10496116,-0.00039066907,0.0071313,0.351954,-0.13738525,0.14736815,0.008602917,1.1915523,-0.2924983,0.23148881,0.058692914,0.132611,0.08887629,-7.955943e-05,0.10997697,0.2205019,0.13071768,-0.087294884,-0.488732,0.01618618,-0.24226893,-0.40457144,-0.24840225,-0.15224467,-0.15645555,-0.046377324,-0.24050985,-0.17134468,-0.06499473,-0.58784264,0.28409258,-2.7056324,-0.220776,-0.18226974,0.29746982,-0.298357,-0.19768713,-0.013742104,-0.41349012,0.7028378,0.2825901,0.29323557,-0.48170656,0.6184581,0.5156712,-0.33841702,-0.0060891933,-0.6707149,-0.07604798,-0.11223644,0.4195211,0.028574884,-0.26730528,-0.056735467,0.09488493,0.37551588,0.034919895,0.13709153,0.568086,0.33353516,0.008246945,0.3351014,0.0066131693,0.4568946,-0.24496563,-0.1098255,0.2496492,-0.30429393,0.3076534,-0.35099524,0.07167822,0.4036906,-0.23195033,-0.42708546,-0.5238752,-0.3661709,1.0956393,-0.12542342,-0.62135726,0.2226601,0.0013945954,-0.24393201,0.10872276,0.5327067,0.019966813,0.10755366,-0.71670204,0.0802294,-0.2424032,0.26144022,-0.020951275,0.03811417,-0.5845661,0.72397655,-0.0705226,0.5315822,0.5591728,0.28697506,-0.09248878,-0.14508401,0.09197513,0.90536106,0.34153137,0.04958568,-0.19902185,0.00389074,-0.13102616,-0.32949987,-0.025296833,0.5462889,0.7137652,-0.15447421,0.11116694,0.32418033,-0.32918054,0.029303143,-0.1799209,-0.58487904,-0.11712968,0.18153858,0.49415675,0.4312647,0.040252086,0.47082895,-0.0062943613,0.17371117,-0.36748573,-0.44276842,0.29046223,0.32893127,-0.25427717,-0.07648124,0.49867827,0.46321386,-0.10761369,0.5319947,-0.51826036,-0.32704774,0.41437265,-0.025185024,-0.5032999,0.066552065,-0.5031818,0.09162898,-0.8189874,0.31454605,-0.6627296,-0.7465683,-0.59417015,-0.15859315,-2.3330917,0.27484977,-0.48657227,0.06508889,-0.15107001,0.096161045,0.30081868,-0.36365375,-0.34936222,0.050955493,0.07502304,0.5049979,-0.0141285,0.003640473,-0.36659044,-0.14378937,-0.24183634,0.36410877,0.107550345,-0.104000024,-0.09445951,-0.16359667,0.073624186,-0.28917474,-0.07834829,-0.04563338,-0.5376492,-0.15025823,-0.22073105,-0.4210479,-0.37983224,0.6185767,-0.37733927,-0.017986286,-0.24423313,-0.067253776,-0.04885975,0.36018854,0.13173485,0.23770057,0.050096292,-0.11927358,-0.27239332,-0.38792592,0.18983123,0.17920391,0.23336144,0.63476783,-0.15545438,-0.023464339,0.45289484,0.4799097,0.17415884,0.8061999,0.3287807,-0.2647585,0.44024563,-0.34573084,7.688999e-06,-0.61260617,-0.155857,-0.15536715,-0.28655344,-0.6161167,0.13307297,-0.29649463,-0.6571917,0.37329096,0.22640796,0.02702873,0.05561375,0.3306551,0.36904716,0.024801042,-0.15959981,-0.13449384,-0.105847254,-0.4062979,-0.36158234,-0.8493252,-0.49576974,0.14072269,0.98784816,-0.10484189,-0.14525047,0.16839586,-0.11401469,0.05065612,0.36193636,0.18486154,0.056389403,0.32367396,0.2815089,-0.720716,0.38311774,0.030139003,0.18779862,-0.7169879,0.2111984,0.7286986,-0.7294275,0.45486125,0.43006548,0.08791359,-0.195534,-0.64197415,-0.111309886,0.25518104,-0.2890467,0.34267145,0.07358463,-0.863933,0.40855506,0.28164268,-0.13944043,-0.81207305,0.30185625,0.086203896,-0.11987233,0.082381725,0.4006054,-0.056530237,0.034323066,-0.14042078,0.30855462,-0.4376456,0.48453298,0.03619268,-0.17021547,0.37191364,-0.14366044,-0.16038443,-0.50006485,0.062946305,-0.476439,-0.2842365,0.3850069,-0.029445311,-0.036743797,0.5757035,0.15949547,0.4256106,-0.28911304,0.14295998,-0.24330516,-0.4703284,0.38000196,0.42741734,0.2619745,-0.35989565,0.64761823,-0.058916368,-0.2506696,-0.17544042,0.12699248,0.4455318,0.13854448,0.52263826,-0.07302995,0.003070844,0.0030032396,0.91548216,0.10832094,0.4887046,0.22423382,-0.05039725,0.3366821,-0.09912108,-0.0513571,-0.27621743,-0.46303436,-0.04404556,0.05101004,0.1857499,0.3757339,0.17904137,0.5864072,-0.057004355,-0.1391627,-0.09444736,0.20552173,0.07299701,-0.7875144,0.45894137,0.16535309,0.61608344,0.63577026,0.023100076,0.052445322,0.56682503,-0.31260914,0.15808606,0.3852496,-0.07059901,-0.2234327,0.60515153,-0.67257386,0.16670573,-0.209367,0.027887711,0.19126691,-0.03162835,0.40858507,0.7787079,-0.28604296,0.032812078,-0.21179898,-0.2279066,0.090337686,-0.08140225,0.27736259,-0.34703264,-0.5170411,0.61050576,0.33062977,0.34866044,-0.24473892,-0.11925285,0.35163635,-0.116137676,0.4872222,0.060040127,-0.043820392,0.14011778,-0.3457038,-0.22694041,0.57175046,-0.29952163,0.060952816,0.17425217,-0.044475906,0.21262716,-0.0762596,-0.13340154,-0.023930298,-0.55602545,0.26515266,-0.31520143,-0.33476236,0.48099694,-0.11075546,0.19033337,0.053733986,0.13605565,-0.028432418,0.27419183,-0.0017484172,0.327131,0.0029890996,-0.19432446,-0.16817696,-0.26692265,-0.03030405,-0.31126657,0.09290415,-0.041929487,0.14693949,-0.75304663,0.47673586,-0.3608628,-0.15361723,0.27294487,-0.2603488,-0.18293297,0.47379106,-0.09410928,0.00017056295,0.3106144,-0.14891891,-0.157694,-0.21539031,-0.16252837,0.21405323,-0.24938774,0.09315101,-0.17489955,-0.13110378,-0.03522433,0.26471177,0.24659726,0.021960417,0.34822708,0.24109542,-0.5371448,-0.040215816,0.19655871,0.32670835,0.14580093,0.059628308,-0.11599856,-0.29070932,-0.35009876,0.3219826,-0.094523944,0.15246384,0.02500445,-0.41996428,0.86508167,0.17430641,0.9100463,0.04083916,-0.20636511,0.011824169,0.43236595,-0.11515414,-0.012937627,-0.413527,0.8157994,0.6964965,0.07684755,-0.030262012,-0.5588953,-0.084573634,0.44830212,-0.16390362,-0.0033503047,-0.008214108,-0.713595,-0.32733992,0.16841435,0.2778484,-0.18291362,-0.21924257,0.011077966,0.15770783,0.15011744,0.18365957,-0.6343337,-0.15339388,0.2643686,0.15730922,-0.039911028,0.35315844,-0.3327794,0.2475429,-0.8166804,0.29832944,-0.1540023,-0.18807295,0.02845114,-0.119735636,0.2272815,0.20285675,0.19834383,-0.10719267,-0.33438084,0.048991244,0.38984802,0.26918322,0.3791545,0.9459616,-0.15316316,-0.098707914,-0.13698637,0.5092591,1.3019911,-0.122719355,0.01706596,0.21103127,-0.29140046,-0.8215129,0.054879718,-0.30997208,0.07057137,-0.032041818,-0.60121745,-0.39415404,0.1507478,0.060088594,-0.3017512,0.08580818,-0.5358166,-0.301181,0.012330526,-0.29904267,-0.20750739,-0.1799897,0.122817576,0.9257932,-0.20607005,-0.035502914,-0.073945284,0.39053124,-0.43875262,-0.5372509,0.18368642,-0.4261401,0.19207726,0.056486093,-0.22499545,-0.016389132,0.15977274,-0.6550183,0.028092384,0.13857412,-0.23485933,-0.14382407,-0.293104,0.15503113,0.61619484,0.05198952,-0.09378926,-0.22628419,-0.6425266,-0.43155617,-0.50960726,0.09056504,0.09554238,-0.09092096,-0.29772687,-0.17145647,-0.118963495,0.09079645,-0.05891643,-0.5441975,0.1443708,0.0668241,0.34269616,-0.32387695,-0.86564875,0.17946123,0.33108893,-0.0958482,-0.4172215,0.3428715,-0.30780396,0.84945387,0.13459818,-0.12512065,0.104683995,-0.68398154,0.46733826,-0.34894416,-0.21871315,-0.6632267,-0.08512299 +283,0.40368327,-0.18667789,-0.7265353,-0.009778909,-0.29603556,-0.073436536,-0.34801182,0.74382406,0.2522354,-0.5739235,-0.06659732,-0.13519664,-0.007725516,0.37193704,-0.3147,-0.5096944,0.12826632,0.14585923,-0.67812246,0.42781433,-0.43263724,0.22506298,-0.032566182,0.5060305,0.22331254,0.2788922,-0.00887775,-0.10236158,-0.1495453,-0.19828804,0.021619355,0.04926211,-0.6343003,0.07108807,-0.2728722,-0.43003452,0.017042145,-0.52757484,-0.33817908,-0.8190537,0.30402982,-0.82369304,0.5048509,0.06645511,-0.3193574,-0.113260545,0.20992143,0.44044933,-0.09407177,-0.057734013,0.14372124,-0.08700053,-0.06470295,-0.24347836,-0.14570004,-0.40190545,-0.5733599,0.0816715,-0.48777366,-0.09184899,-0.20458572,0.21063764,-0.30781472,0.11917309,-0.09267666,0.51822263,-0.34707102,0.14050545,0.08330275,-0.17745359,0.27680504,-0.53156424,-0.077474765,-0.15484126,0.40530977,-0.30838475,-0.2391402,0.32651255,0.12351239,0.44347677,-0.05827993,-0.073283,-0.36177257,0.037780713,0.07055786,0.47749758,-0.24602337,-0.6015714,-0.06934994,0.046430845,0.30923906,0.129456,0.1704573,-0.34067667,-0.2009327,0.062820755,-0.29532027,0.5835387,0.55930424,-0.23907442,0.045414377,0.24241656,0.581146,0.35173023,-0.20931476,0.1085271,0.10402072,-0.7352516,-0.19586547,-0.09707641,0.0542172,0.68357307,-0.2700583,0.4907446,0.6380151,-0.1812287,-0.11872967,0.40741774,0.023132445,-0.02487582,-0.11241158,-0.22177887,0.22869885,-0.42957368,-0.009058595,-0.27146533,0.6221609,0.21192746,-0.78097224,0.36094794,-0.727627,0.05196176,-0.046574276,0.3780764,0.64441425,0.6249561,0.12926969,0.6461649,-0.36751357,0.06591331,-0.135161,-0.38267365,0.23014192,-0.24155438,-0.03086356,-0.31262562,-0.19177435,-0.10480955,-0.13936172,0.16608398,0.5120294,-0.55756086,-0.1086571,-0.068990074,0.8189445,-0.17325468,-0.12467765,0.8214504,0.9508867,0.92166394,0.056550223,0.928423,-0.09963278,-0.19065891,0.20208375,0.07761686,-0.8797993,0.46727213,0.36969993,-0.027228525,0.19529241,-0.025907869,-0.027326606,0.50141215,-0.3710643,0.026170665,-0.027896293,0.23048103,0.24439776,-0.26783705,-0.22808735,-0.35992232,-0.0070437365,0.011204283,0.0065473914,0.3130035,-0.11865231,0.3779119,0.009240453,1.5892801,0.03923772,0.14775956,0.13873513,0.62881017,0.1725008,-0.21883424,-0.20186864,0.04090626,0.09074751,0.3318078,-0.50058216,-0.109752335,-0.19598134,-0.5251127,-0.13461183,-0.21261777,-0.36107126,-0.2768893,-0.5900729,-0.11014921,-0.19554871,-0.21538146,0.35180962,-2.543793,-0.35520825,0.036688484,0.4799006,-0.25720614,-0.4940451,-0.1206607,-0.5311839,0.53621787,0.2706882,0.62712353,-0.7169154,0.6054832,0.47243738,-0.4763731,-0.22226728,-0.69023675,-0.05993642,0.14915635,0.1229603,-0.037230927,-0.045613438,0.19410314,0.014328837,0.40021026,-0.22578873,0.014905323,0.17556095,0.48759183,0.107067466,0.5294116,-0.24328601,0.53370374,-0.6074936,-0.202242,0.32402351,-0.51763403,0.12502334,0.016188726,0.123771995,0.4188025,-0.5579278,-0.9845169,-0.7011056,0.003211538,1.1569458,-0.026524508,-0.46337664,0.2924541,-0.46110705,-0.3172228,-0.14795655,0.69868153,-0.036882915,0.18733196,-0.8197245,-0.1290542,-0.22327924,0.3325126,0.10315164,-0.12697642,-0.46227577,0.5192354,-0.03252129,0.43817973,0.4299101,0.0571394,-0.5544109,-0.57003945,0.20161964,0.87112117,0.3106992,0.30163392,-0.12836662,-0.08022844,-0.51514554,0.1117241,-0.002275082,0.64369005,0.5863424,-0.0942264,0.13371675,0.2709953,0.045832265,0.07272575,-0.17626299,-0.45806408,-0.16302872,-0.0063068867,0.5947978,0.8974032,-0.1724124,0.37250233,-0.040713716,0.3205609,-0.3983592,-0.3434032,0.566796,0.70413655,-0.20328254,-0.31089225,0.43211088,0.4315257,-0.3431687,0.44944167,-0.52151436,-0.5753992,0.30102,-0.115778826,-0.51458234,0.22238159,-0.3042148,0.19993515,-0.7690613,0.36104593,-0.5079189,-0.49605155,-0.5444302,-0.092275836,-3.243304,0.2920495,-0.09241667,-0.19911976,-0.18122439,-0.14790517,0.09936774,-0.56270224,-0.83782965,0.1108891,0.028958699,0.8065967,-0.15645002,0.09261892,-0.23164892,-0.40855965,-0.27286938,0.0813361,0.4075404,0.34030905,0.053216893,-0.44783148,-0.30835217,-0.18960278,-0.4501873,0.13140991,-0.7037633,-0.53129816,-0.1636572,-0.5960031,-0.24578731,0.7648738,-0.3525548,-0.0012077764,-0.13375644,-0.09961498,-0.11131993,0.42635807,0.099443115,-0.024472171,-0.008476411,-0.005695045,0.122303076,-0.16649443,0.18228172,0.08668736,0.4455464,0.33552468,0.047670662,0.26168784,0.76011086,0.9982534,-0.1162489,1.0305098,0.2604381,0.07098546,0.40148976,-0.35423052,-0.5224743,-0.3166419,0.06489354,0.26669493,-0.34896883,-0.24508858,0.07571605,-0.35576773,-0.7855785,0.5013897,0.0130799115,-0.20249696,0.23589297,0.14403339,0.38347042,-0.162196,-0.114687495,-0.09473456,-0.06610427,-0.674963,-0.20280331,-0.56569296,-0.59622186,-0.05281781,1.0582551,-0.15864523,0.101497866,0.15467387,-0.13284507,0.046753973,0.13340352,-0.008963428,0.17507865,0.3531618,-0.2000879,-0.75242764,0.36370894,-0.39465335,-0.18246335,-0.45358694,0.18471141,0.7125233,-0.6835249,0.3568406,0.29189608,-0.07297418,-0.2540934,-0.46835867,-0.0861549,-0.079092205,-0.21988113,0.3462373,0.291563,-0.89386004,0.32437903,0.32577595,-0.33123574,-0.69102246,0.6099724,-0.0031966146,-0.23102833,-0.19963376,0.38048753,0.18977176,0.040598497,-0.3131808,0.20853817,-0.33987316,0.3007585,0.24675293,-0.1290469,0.36949,-0.21178706,-0.093572296,-0.72950935,0.003788218,-0.53943944,-0.2729583,0.35267696,0.19120026,0.13597095,0.11383861,0.100827605,0.21420218,-0.305037,0.02003964,-0.18880008,-0.21128349,0.34159708,0.47927102,0.7445318,-0.630147,0.64840597,0.08802188,0.067428015,0.25240883,0.046533775,0.3776174,-0.042078894,0.43104193,0.23107135,-0.060969215,0.119871475,0.9779613,0.2374248,0.42470917,0.039848942,0.0030937393,0.04237652,0.10117362,0.15806872,0.12378407,-0.8007472,0.10754082,-0.2103563,0.17264985,0.5543305,-0.014828811,0.27467483,-0.10760343,-0.4608418,0.014817246,0.28826255,-0.16447155,-1.7478074,0.530862,0.2775619,0.8027515,0.46147814,0.13105373,0.12929209,0.7718899,0.014095955,0.23418467,0.4195037,0.12861876,-0.56511706,0.5979797,-0.7536676,0.57735044,0.08245287,0.08210359,-0.014241665,-0.06297643,0.4325184,0.75034714,-0.052594513,0.20510353,0.10276428,-0.27736306,-0.034953203,-0.56917495,-0.12987217,-0.4892728,-0.06495944,0.7252441,0.5805485,0.2702836,-0.25408116,0.03258812,0.08979989,0.022332383,0.15385377,-0.13555141,0.16878843,-0.21224321,-0.7595754,-0.032478143,0.7000818,0.015181388,0.20744991,-0.008527714,-0.16018546,0.33106068,-0.05715209,0.032318905,-0.2532523,-0.7476294,0.066919394,-0.5744634,-0.40292716,0.31194493,-0.013315,0.25084898,0.2797731,0.1655352,-0.36727563,0.725723,-0.012653798,0.6195459,-0.10598689,-0.10036969,-0.2016011,0.29619333,0.19406693,-0.2742965,-0.11315569,-0.33933893,-0.054752585,-0.36018145,0.23826377,-0.0936986,-0.33297405,0.065600105,0.06493989,0.08829584,0.53904516,-0.1650446,-0.22711249,0.27438596,0.01242134,-0.14967474,-0.29713368,-0.05202396,0.25153103,0.4423802,0.0065619373,-0.15849482,-0.2049583,0.01035209,0.42848325,-0.15163447,0.5735691,0.5457756,0.25074834,-0.33709893,-0.19192976,0.091888465,0.6825754,0.118783556,-0.17708959,-0.5050877,-0.36036804,-0.358641,0.33228207,-0.036068734,0.33543786,0.19150616,-0.24971378,0.6019243,0.059205603,1.2574618,-0.0063776523,-0.25473937,0.25750586,0.24614899,0.014333914,-0.17646396,-0.43394867,1.0221409,0.35568228,-0.37627292,-0.057361722,-0.39264083,-0.0986839,0.031419836,-0.21786435,-0.25560915,-0.047837824,-0.6247471,-0.06837129,0.22121792,0.35249814,0.16497286,-0.3201503,0.08073826,0.39036712,0.033082444,0.03207959,-0.5952647,-0.17967713,0.4183235,0.40119746,-0.06975328,0.01712131,-0.59524363,0.33461228,-0.47850463,0.01731276,-0.37045798,0.18704991,-0.17702933,-0.45577797,0.18097566,0.15466557,0.34340152,-0.2918425,-0.35325336,-0.24987628,0.46843067,0.19845633,0.2214647,0.5966143,-0.1839542,-0.11736729,-0.09231181,0.55215144,0.70187443,-0.21891229,-0.11166948,0.4220712,-0.28577444,-0.63631743,0.24762516,-0.4246118,0.28557405,0.014822642,-0.080709346,-0.6204476,0.28659734,0.2020613,0.08541011,-0.17739673,-0.79175645,-0.18531479,0.3272513,-0.29037464,-0.34889543,-0.5123429,0.032838594,0.48306885,-0.15974157,-0.22128999,0.13205172,0.34825984,-0.10412896,-0.43635026,-0.0982872,-0.32912293,0.11989879,0.13839985,-0.3763517,-0.13127916,0.11821254,-0.4911828,0.29607674,0.017265609,-0.42648324,0.16647205,-0.21804465,-0.09338852,0.95901936,-0.22276302,0.25024292,-0.2697475,-0.50698024,-0.8084245,-0.32528904,0.22030127,0.24360009,0.0032327871,-0.7904957,-0.09215117,-0.048519332,-0.39003086,-0.0033950855,-0.24093656,0.5436907,0.12909018,0.5597405,-0.13176037,-0.8570876,0.13832222,0.18313037,-0.20536327,-0.603347,0.5039055,0.021574529,0.925883,0.030913144,0.07201094,0.44507197,-0.40207377,0.002847592,-0.14667545,-0.06882743,-0.5871229,0.12993604 +284,0.17526369,-0.118611075,-0.43132076,-0.2214375,-0.28477427,-0.06371226,-0.15470363,0.505992,0.34201252,-0.40631822,-0.20887613,-0.11543586,0.15957013,0.40206796,-0.14734426,-0.6324327,0.117709875,0.23750524,-0.44536182,0.6585632,-0.36156628,0.18504196,-0.03150668,0.27931213,0.39307973,0.31670514,0.007945093,-0.11599171,-0.18902382,-0.31050918,-0.07509236,0.3951589,-0.35649163,0.62769276,-0.1356494,-0.20792995,0.05504012,-0.5375711,-0.35888568,-0.79292446,0.07462288,-0.7459088,0.3759414,-0.044262853,-0.371852,-0.0032999455,0.53583854,0.35100374,-0.1038225,-0.16447009,0.17099375,-0.22850719,-0.18672103,-0.15779136,-0.2117962,-0.5466749,-0.57644457,-0.20247746,-0.393649,-0.3341775,-0.608872,0.24157186,-0.3965313,-0.20465331,0.019718414,0.60283816,-0.52465653,0.43393365,0.0851328,-0.18050598,0.24589801,-0.5731117,-0.19930352,-0.27526468,0.31669796,-0.17989358,-0.44759896,0.4861221,0.5016353,0.053643372,-0.01598596,-0.07822859,-0.33641765,-0.3693917,0.4490185,0.4913708,-0.07402962,-0.5002174,-0.093587585,-0.107026726,0.1678527,0.3326926,0.2479313,-0.33753574,-0.179288,0.07173734,-0.34037217,0.54727566,0.27359632,-0.23534909,-0.20812201,0.25755244,0.5815857,0.26308286,-0.35650662,0.025988542,0.09295952,-0.51834273,-0.1374996,-0.074050404,-0.28693944,0.5319207,-0.2690374,-0.0052795517,0.76543754,-0.26029208,-0.20565967,0.05067198,0.33130753,-0.16908377,-0.27379444,-0.27320126,0.2710575,-0.48899698,0.13116628,-0.060918607,0.81209284,0.15084675,-0.5466349,0.32644096,-0.6675911,0.112289645,-0.16879363,0.36903325,0.5743594,0.48533952,0.529211,0.5031224,-0.20420271,0.0695059,0.13910943,-0.37734553,0.26729205,-0.48793766,-0.040087763,-0.58409536,0.030998338,-0.06667514,-0.1714289,0.21503568,0.50836694,-0.51213694,-0.09108228,0.21791993,0.8817788,-0.2408954,-0.25301516,0.6904832,1.0249223,1.107359,0.12332807,0.9707195,0.14735575,-0.20747904,0.024760902,0.08417875,-0.5728404,0.2871644,0.40742198,-0.33905917,0.08481124,0.16125299,0.19716492,0.39671758,-0.3491255,-0.06694416,-0.078179814,0.33663824,0.14250304,-0.31075555,-0.4784384,-0.47167188,-0.24683051,-0.03129275,-0.13039224,0.3154682,-0.026046999,0.6123484,0.17339116,1.6412644,0.118900135,-0.023963284,-0.058695782,0.50694853,0.2680537,-0.20670106,0.030519776,0.47231314,0.0928464,0.23399638,-0.469007,0.19223776,-0.22909106,-0.33580735,-0.017997026,-0.5337336,-0.25091788,-0.001336561,-0.3129113,-0.15253948,-0.15184647,-0.16928948,0.61465055,-2.7480125,-0.10976785,-0.07380316,0.34885713,-0.026612906,-0.23113818,0.05740493,-0.48581523,0.39305124,0.2103056,0.668915,-0.65551823,0.18508019,0.5747969,-0.7102476,-0.23794135,-0.5305328,-0.2656601,-0.08954479,0.3427546,0.03467561,0.19705935,0.21806747,0.14965925,0.490767,0.041684527,0.27663505,0.3320916,0.30277303,-0.16999362,0.65303254,-0.062214192,0.59478384,-0.05444622,-0.2956838,0.25920668,-0.43364584,0.4265748,-0.06853464,0.08803756,0.74892104,-0.3403703,-1.0195683,-0.64089817,-0.24650253,0.97107106,-0.33048522,-0.39651147,0.39185134,-0.45186388,-0.30396897,-0.05219598,0.4631678,0.07608444,0.22041234,-0.7136467,0.038643833,0.012580774,0.12944265,0.037980914,-0.22632408,-0.38427565,0.80366975,0.054953158,0.4606763,0.21753,0.04849894,-0.6751716,-0.38186482,0.011543101,0.82020384,0.39386863,0.1286303,-0.30183855,-0.32931924,-0.58580405,-0.21265553,0.13531783,0.65069985,0.37584513,-0.26857898,0.14868157,0.37302455,-0.09689799,0.08592069,-0.1521505,-0.43317345,0.060131494,0.19546348,0.48703498,0.7998102,-0.2069624,0.63065153,0.13125896,0.30442107,-0.05057399,-0.595215,0.36680642,1.2243102,-0.092436716,-0.44789103,0.76237833,0.3717941,-0.28767997,0.45059967,-0.3855797,-0.1698424,0.6953606,-0.072420955,-0.48175433,0.027981723,-0.32487437,0.06927276,-0.7528244,0.4046454,-0.34105828,-0.68191075,-0.5141895,0.0008741211,-3.4757433,0.28004032,-0.09287741,-0.29009783,-0.09602508,-0.022355584,0.10426979,-0.8058775,-0.6409082,0.1815844,0.032005344,0.8023067,-0.23528747,-0.05561869,-0.19377719,-0.37807357,-0.066722356,0.19364247,-0.0018632412,0.4622912,-0.17762138,-0.49141702,-0.048700605,-0.06415264,-0.47543213,0.102716275,-0.5368152,-0.60051066,-0.20664263,-0.78654444,-0.30775878,0.7773966,-0.5408429,-0.0052107843,-0.13370779,0.12742537,-0.14826041,0.11128626,0.3226508,0.23086667,0.03775865,-0.0038082926,0.017902851,-0.18552142,0.34569943,-0.050744936,0.4244944,0.30463865,0.06560599,0.3117257,0.67943805,0.7386532,-0.11529685,1.0930051,0.36956614,-0.15759869,0.113525845,-0.31298873,-0.49243757,-0.49115896,-0.3006386,0.11261999,-0.41978976,-0.31932643,-0.07642606,-0.27257106,-0.7594356,0.7223633,0.16839825,0.16927162,-0.11723594,0.056284178,0.34945166,-0.13758065,-0.09878549,-0.1025073,-0.1804331,-0.7987911,-0.16958708,-0.59329796,-0.4976428,0.24194856,0.7892247,-0.46410915,0.099876665,0.02246513,-0.29031226,-0.026752071,0.36453012,-0.114936374,0.10479215,0.4818247,-0.09210324,-0.60287553,0.50996983,-0.16532977,-0.22505088,-0.55628437,0.4808497,0.6829853,-0.559808,0.64538294,0.38768956,-0.07153326,-0.33654737,-0.474352,-0.35944587,-0.1494521,-0.18405738,0.39131117,0.251301,-0.8411041,0.17789534,0.23737563,-0.5249026,-0.62425846,0.6886833,-0.2173328,-0.103086516,-0.08136778,0.42092946,0.19506198,0.04505429,-0.1479761,0.3241954,-0.33804312,0.16264898,0.2356084,-0.020687707,0.111473195,-0.20107864,-0.15338412,-1.002408,0.03731267,-0.37532148,-0.44327337,0.384387,0.040665966,0.03442307,0.20093927,0.18802786,0.21624042,-0.24180189,0.07290471,-0.12023737,-0.26792496,0.4021612,0.48454607,0.63670003,-0.4213812,0.59547395,0.16786303,0.079665296,0.07758251,0.079949506,0.27082595,0.12640128,0.6084942,0.11262257,-0.27659312,0.12715061,0.95213413,0.23987488,0.5280742,0.016401459,-0.060255397,0.04644161,0.016943855,0.35196775,0.1495863,-0.6575678,0.10551096,-0.49061635,0.117075875,0.6141553,0.12675768,0.20778097,0.08916065,-0.5494181,0.10257647,0.2748056,0.28792986,-1.5472916,0.51166165,0.33123544,0.92706853,0.37795562,0.19472603,-0.08152535,0.8561259,-0.16490275,0.16245122,0.32599476,0.07859147,-0.4567969,0.67243344,-0.9043486,0.5929833,-0.062888116,-0.03919095,-0.053668775,-0.03365369,0.41507205,0.8174385,-0.28265497,-0.058401596,0.16164479,-0.44968936,0.29412967,-0.55925816,0.11236167,-0.4170721,-0.40970194,0.6015573,0.6132084,0.36488488,-0.17169777,0.11317403,0.12868959,-0.17352547,0.20979346,0.10435278,0.10922458,-0.05545008,-0.69479126,-0.08758976,0.6588379,-0.3407236,0.3616487,0.04575086,0.13085285,0.41298988,-0.13014303,0.0873525,-0.06907255,-0.72914314,0.05100341,-0.25615397,-0.6559276,0.6468626,-0.20701951,0.14339325,0.15395346,-0.002960709,-0.061497297,0.7494524,0.18445323,0.72498965,0.07994963,-0.06454984,-0.1668158,0.14737347,0.11313858,-0.11090171,0.12918468,-0.3842864,0.10305774,-0.533458,0.43427172,-0.026390763,-0.50522876,-0.24921994,-0.08994809,0.056507107,0.4811822,0.049122766,-0.24357046,-0.21319653,-0.17689036,-0.21243763,-0.21302375,-0.04848151,0.29781997,0.22603394,0.023316002,-0.19198762,-0.16830207,-0.2958105,0.010818644,-0.33054522,0.5520771,0.35831213,0.035444953,-0.2434835,-0.17366572,0.12670302,0.3955759,-0.09863129,-0.17888866,-0.11954535,-0.30797628,-0.54366153,0.15899456,-0.1002882,0.5496884,0.16180521,-0.4191078,0.6922048,-0.3905091,1.2534012,-0.03957558,-0.61303574,0.28738537,0.43210995,0.02675374,-0.0337226,-0.17107543,0.83884275,0.49351108,-0.06355996,-0.07844572,-0.55652195,0.033170234,0.1786149,-0.20456795,-0.2565831,0.15225516,-0.563892,-0.05257939,0.30960804,0.21323456,0.3431091,-0.12568437,0.0079204,0.4817191,0.107699916,0.23543516,-0.50460076,-0.1644442,0.27828434,0.4295936,0.09592898,0.10253727,-0.4187841,0.41152573,-0.50802237,0.20119077,-0.5175383,0.25839984,-0.5714043,-0.32301468,0.18358497,0.085635185,0.460075,-0.22263032,-0.28269994,-0.31855378,0.5859148,0.07251268,-0.0050067375,0.5140129,-0.24066238,0.0339104,0.10882418,0.37473536,0.74562,-0.43434438,-0.29696777,0.44269636,-0.5345974,-0.5434248,0.4085044,-0.62106395,0.2681185,0.20921141,-0.17197704,-0.6060159,0.033830173,0.26286945,0.17244394,0.043469448,-0.5786343,0.019948525,0.15280521,-0.47495106,-0.17903961,-0.2697692,0.21943521,0.34376028,-0.30426157,-0.3923581,-0.023725716,0.026607232,-0.21108575,-0.4936797,-0.084297985,-0.20128976,0.40140188,-0.088149264,-0.38559315,-0.15225402,0.11625431,-0.43892834,0.1978531,-0.037441686,-0.29066756,0.295866,-0.18841483,-0.023413874,0.8839747,-0.3920804,0.010610467,-0.576199,-0.5241754,-0.5153172,-0.27508456,0.35373572,-0.05108221,-0.08727198,-0.6519506,-0.16741954,-0.04193546,-0.097508796,-0.13754466,-0.39812985,0.43616316,0.123756744,0.33354878,-0.027352648,-1.0386761,0.24987644,0.16002284,0.20285009,-0.937884,0.46113223,-0.42279485,0.88475764,0.09716952,0.11521708,0.24051355,-0.21258926,0.0151646575,-0.14916779,-0.42294243,-0.51925236,-0.022338657 +285,0.46482682,-0.2367049,-0.41293466,-0.15291327,-0.4199251,0.025199734,-0.22266358,0.26752496,0.22617391,-0.07958986,-0.06590165,-0.051724657,0.0011637304,0.3960813,-0.07011493,-0.60281795,-0.28642103,0.059007086,-0.6624301,0.35830307,-0.6445318,0.33087337,0.08316872,0.34886843,0.057061143,0.53309256,0.26434064,-0.19251762,-0.04737882,0.0076015443,-0.09207915,0.3159871,-0.5401776,0.07440183,0.04099061,-0.1528579,0.06959782,-0.54425085,-0.17446716,-0.57291037,0.08821232,-0.7786742,0.38872322,-0.10385895,-0.16262186,0.108995974,0.12486987,0.34029073,-0.3875296,0.11589838,0.29115504,-0.020507524,-0.043108284,-0.28244334,0.069308236,-0.21026173,-0.33551472,-0.0009095166,-0.4199667,-0.32285744,-0.04025039,0.13072187,-0.21028458,0.03913203,-0.25416666,0.29876012,-0.48579204,-0.13937034,0.36163163,-0.26638207,0.24889576,-0.39328334,0.1516236,-0.08668016,0.39414233,-0.064213835,-0.14048,0.4176896,0.21242101,0.36190856,0.25545242,-0.2418609,-0.25930104,-0.16775566,0.2343054,0.43292755,-0.1822527,-0.3634186,-0.30261,0.0125075355,0.15404612,0.27219683,-0.025796078,-0.26443297,-0.009871243,-0.12498726,-0.20394105,0.38055003,0.43328816,-0.30539393,-0.317423,0.33831227,0.6766889,0.31779662,-0.20623723,0.036299944,-0.0066352617,-0.59263855,-0.15680228,0.15753685,0.021532852,0.34437647,-0.10594675,0.1910197,0.84380895,-0.1525737,0.0011090236,-0.072293505,-0.16596413,-0.12725815,-0.3620416,-0.13092911,0.023127574,-0.48273304,0.030272778,-0.12934862,0.6196461,0.22608763,-0.78343534,0.46277338,-0.5231717,0.14493808,-0.18928716,0.67770666,0.5485704,0.39272565,0.27129766,0.7826411,-0.3730647,0.24472511,-0.062907316,-0.49852613,0.18139118,-0.12736577,0.05337137,-0.5543126,0.15298145,-0.19539957,0.05488514,-0.038656376,0.28912228,-0.5539449,0.016951002,0.11411678,0.7399752,-0.36799267,0.007749308,0.6090783,1.0169533,0.9601267,-0.010719957,1.1175581,0.3025816,-0.26280165,0.2633921,-0.5327342,-0.5781796,0.28869122,0.40969485,0.025435157,0.3679145,-0.15531589,-0.06659803,0.23931454,-0.3038589,0.08667219,-0.07792717,0.24004585,0.09720029,0.02334315,-0.43835264,-0.14196472,0.020644573,0.027158774,0.09189973,0.09765863,-0.21917629,0.37062374,0.0015849881,1.6249243,-0.08991353,0.02677729,-0.014232986,0.533823,0.26522452,-0.16412695,-0.17356187,0.46728095,0.4305319,0.019489288,-0.6127329,0.351027,-0.18086804,-0.5291011,0.002015695,-0.43079373,-0.08088423,0.007121414,-0.42693233,-0.05475898,0.08315399,-0.2927081,0.43594915,-2.75885,-0.20991527,-0.046589278,0.18439466,-0.33271855,-0.18852884,-0.07507983,-0.44837412,0.15257461,0.32874638,0.44687718,-0.6633205,0.5093187,0.50177693,-0.43233573,-0.19770387,-0.6470603,-0.06289446,-0.02570433,0.4772088,0.10467544,-0.061143577,-0.13341993,0.26787198,0.5984591,-0.01087359,0.15765776,0.27132162,0.35394362,0.17400053,0.6189487,0.03724032,0.58908963,-0.19953674,-0.1365978,0.44788417,-0.2213745,0.1694233,-0.17371967,0.082316115,0.35235763,-0.34379783,-0.99681467,-0.6626587,-0.3342143,1.1381836,-0.41695654,-0.44346672,0.27971852,-0.08056223,-0.10029964,0.17221156,0.39595303,-0.075184494,0.015089843,-0.7450279,0.26344326,-0.040278703,0.15122601,0.077522166,-0.01628258,-0.32259184,0.7114165,-0.016213993,0.63124275,0.30539143,0.19982785,0.0192779,-0.40689746,0.10908535,0.6947662,0.23064843,-0.057466183,-0.1425618,-0.24990344,-0.07673451,-0.05604229,-0.08339936,0.42034507,0.75991106,0.06472949,0.17506702,0.22108859,-0.06865473,0.06585522,-0.14160806,-0.23095825,0.10714264,-0.039184622,0.39651322,0.71317315,-0.13628754,0.46354353,-0.33443213,0.37396595,0.016811656,-0.5751208,0.66748655,0.42765853,-0.2301541,0.031966683,0.4579355,0.47130448,-0.30112743,0.43995315,-0.63340026,-0.12694834,0.6054512,-0.1645001,-0.41739073,0.223953,-0.16329339,0.14664727,-0.7593351,0.34200257,-0.25307375,-0.27657607,-0.342424,-0.104836285,-3.7081454,0.18566884,-0.08603631,-0.20661332,-0.11151362,-0.058413282,0.33275333,-0.69775486,-0.5370204,0.06398712,0.20179835,0.4379293,-0.018114835,0.07920765,-0.34323847,-0.05707417,-0.06700005,0.2064612,-0.019922942,0.29337704,-0.14743862,-0.41762555,-0.1521653,-0.073534146,-0.5871739,0.19468161,-0.5529736,-0.442775,-0.038866017,-0.51293176,-0.18515846,0.5437468,-0.24071783,0.006508314,-0.14096302,0.106463596,-0.25100702,0.26176402,0.12026688,0.12553243,0.11041486,-0.014019452,0.06519808,-0.30244228,0.44967002,0.027629638,0.36711943,0.13718583,0.109171785,0.14734262,0.4255401,0.52825975,-0.18198162,0.87777925,0.35134873,-0.18213877,0.30923492,-0.3763429,-0.049793117,-0.5451344,-0.49708974,-0.092148244,-0.45326084,-0.52268565,-0.08581756,-0.31486088,-0.7202763,0.54526335,-0.007864386,0.22469829,-0.08017831,0.1323535,0.53674465,-0.1301582,0.10810583,-0.19521332,-0.15442646,-0.655067,-0.294745,-0.6212008,-0.4525765,0.15854673,0.9888904,-0.30925187,0.052787308,-0.1476585,-0.2916681,-0.04573502,0.011798196,0.0058449805,0.40629822,0.3493739,-0.06593579,-0.6249401,0.44868356,0.017956182,-0.05902959,-0.4378739,0.037936613,0.633434,-0.7205169,0.5850972,0.33453304,0.109032266,0.09191607,-0.5067644,-0.29692847,-0.077737555,-0.233888,0.5867965,0.017772896,-0.63268983,0.48865837,0.27703825,-0.4288522,-0.65132123,0.27945232,-0.056595758,-0.24588422,0.05224684,0.27837065,0.03590451,-0.08822921,-0.2793858,0.19685285,-0.43223888,0.24965343,0.20204443,-0.024833128,0.3101622,0.009889513,-0.3586685,-0.6910573,-0.12061626,-0.41335243,-0.33427957,0.26564425,-0.089674175,0.0023648627,0.020150438,0.040022917,0.43677604,-0.21727906,0.058031604,0.22695696,-0.21218012,0.2753899,0.46340024,0.30504867,-0.37998438,0.43475842,0.16320294,-0.14214797,0.0080047995,-0.07115242,0.40526897,0.040962152,0.326603,-0.15529102,-0.15370935,0.42174202,0.62068844,0.13098432,0.36812958,-0.105207495,-0.20105621,0.47086352,-0.035380773,0.15893117,0.015237302,-0.377203,0.01470235,0.09150314,0.2276926,0.3935461,0.37921622,0.27557886,0.12815642,-0.18540026,0.09854221,0.22108027,-0.14084797,-0.9416419,0.34856313,0.30223143,0.775556,0.534867,0.0120949745,-0.12003088,0.716817,-0.31581363,0.15427902,0.40255713,-0.022672683,-0.64540076,0.66075766,-0.6522582,0.27748626,-0.17457522,-0.019727506,0.17891158,0.07470819,0.35357195,0.6891871,-0.113470316,0.0074631386,-0.04844959,-0.15435502,-0.142802,-0.30277395,-0.017978258,-0.46537954,-0.3432838,0.6362722,0.4081272,0.29857942,-0.14465946,-0.024831975,0.12527621,-0.15946972,0.19739136,0.03830043,0.025384862,0.17400458,-0.57852423,-0.30299023,0.51011276,-0.060733672,0.12028523,-0.2886524,-0.2838521,-0.0574641,-0.39048275,-0.07239424,-0.017299773,-0.4789684,0.005728565,-0.17854902,-0.40518865,0.23690608,-0.17874913,0.124165505,0.07380343,-0.016821517,-0.18647096,0.19327864,0.10450328,0.86022794,0.07702474,-0.22633381,-0.39752805,0.102219656,0.23822135,-0.28617626,-0.0981576,-0.3609107,-0.014767274,-0.48421,0.49575683,-0.12089042,-0.5493649,0.19789335,-0.1645328,-0.04285788,0.5502116,-0.14766201,-0.36877507,-0.05622229,-0.16413145,-0.43070468,0.04833314,-0.25702572,0.23815824,0.33981687,-0.13657176,-0.065460294,-0.19315158,-0.085298896,0.54754925,0.08906148,0.43569216,0.25217342,-0.024662599,-0.36561766,0.088359706,0.26360193,0.41250527,0.19293436,0.098631874,-0.43132025,-0.3481529,-0.24419841,0.17678411,-0.16114438,0.22591713,-0.05458781,-0.21420795,0.850167,0.0318375,1.2384058,0.109256975,-0.27716902,0.12458202,0.43580222,0.009773333,0.12391706,-0.44808713,0.8312756,0.54763967,-0.12757716,-0.16315977,-0.50330794,-0.25836247,0.22743171,-0.28427652,-0.045763686,-0.11292458,-0.6171981,-0.4444923,0.3567767,0.11296899,0.22206351,0.058756232,-0.05756715,-0.06925386,0.08232334,0.391881,-0.52771914,-0.20011449,0.07689929,0.24747682,-0.06026122,0.10701488,-0.46857774,0.3869179,-0.49760768,0.18751715,-0.38655606,0.036379866,-0.20589025,-0.19468689,0.073582515,-0.12226178,0.2742012,-0.22216703,-0.54765326,-0.15881874,0.5173599,0.07933996,0.20199528,0.7102737,-0.28786367,0.18620317,0.17894983,0.48350063,1.1761045,-0.3764386,-0.008719847,0.4242818,-0.33034128,-0.6214805,0.3021846,-0.21011469,-0.14142081,-0.096729025,-0.4580126,-0.42958015,0.2891246,0.11477798,0.044314973,0.086280465,-0.5335342,0.011411641,0.38971823,-0.21548799,-0.23251706,-0.39068314,0.3271431,0.81211007,-0.36392245,-0.38069886,0.10815122,0.24109752,-0.39573663,-0.52059525,-0.1425781,-0.18981034,0.3535235,0.18608537,-0.216961,-0.0025526881,0.1467031,-0.34265295,0.20149335,0.24993066,-0.36663067,0.18247736,-0.079962246,-0.11189526,0.87867737,-0.20122235,-0.13984266,-0.7076607,-0.525933,-0.9802122,-0.4285947,0.29639745,0.119339295,-0.07667744,-0.34632975,0.056991816,-0.12387799,-0.154776,0.0014757514,-0.5689969,0.37879705,0.04450624,0.52647877,-0.24126722,-0.8496916,0.11342663,0.1924218,-0.08915712,-0.6461111,0.6783188,-0.1651873,0.76839495,0.07856592,-0.113268614,0.0421344,-0.3750897,0.026964165,-0.3751325,-0.1960293,-0.8433102,0.15959314 +286,0.35682166,-0.08431549,-0.5117055,-0.05524942,-0.028130343,0.24226804,-0.026480397,0.55399734,0.14843208,-0.2741347,0.06808798,-0.19246672,0.13851953,0.5764382,-0.05446295,-0.5451375,0.05017261,0.20231156,-0.54498297,0.5638672,-0.41106194,0.3244153,-0.07977487,0.35276395,0.08353947,0.38651514,0.10081795,-0.23761123,-0.35757744,-0.05559682,-0.15749684,0.18627763,-0.2959924,0.04472113,-0.1332513,-0.22779022,0.025361378,-0.362456,-0.40784505,-0.5099183,0.21158367,-0.56435186,0.50434357,-0.08646546,-0.2147307,0.39094037,0.10357317,0.41241783,-0.36903068,-0.09367068,0.16336253,-0.037888743,-0.04743854,-0.27856585,-0.3008098,-0.54851025,-0.52652633,0.11367122,-0.45823854,-0.23371635,-0.16347538,-0.015706522,-0.24266586,-0.10174342,0.09229908,0.3203458,-0.41585132,0.07029692,0.11594384,-0.112787455,0.019612273,-0.45916313,-0.11455155,-0.04880055,0.40663406,-0.28045967,0.018128224,0.36922577,0.23697786,0.45079234,-0.10516045,0.016444704,-0.3864551,-0.066131525,0.032941926,0.6015422,-0.15835902,-0.6842012,-0.028195662,-0.017873289,0.02016686,-0.0005148093,0.11552186,-0.15198082,-0.14294602,0.012749481,-0.24944697,0.3863848,0.3443024,-0.4158294,-0.23789838,0.5122417,0.45544967,0.19683532,-0.16788228,-0.1989773,-0.021564452,-0.47867998,-0.13576266,0.04042323,-0.141018,0.503002,-0.075662054,0.27099672,0.60613173,-0.13088027,0.020917369,-0.04912177,0.02530812,-0.033829447,-0.040326696,-0.10670454,0.06799438,-0.34199312,-0.06570171,-0.113684975,0.6159346,0.21404597,-0.65024936,0.51054126,-0.47738683,0.08856066,0.014904837,0.34027764,0.50251675,0.35300273,0.14237629,0.43741935,-0.32415548,0.11854318,-0.10903911,-0.3973779,-0.009707161,-0.14165512,-0.09068293,-0.63933396,0.18568465,0.17273384,-0.027197909,0.18231727,0.3167015,-0.4946762,-0.0765145,0.1962114,0.9425849,-0.31322557,-0.22866316,0.63133657,0.96637666,0.69251126,-0.12013844,1.0734026,0.18658923,-0.31606388,0.24434285,-0.6017595,-0.5262156,0.1854268,0.29904038,-0.45147845,0.45002452,0.06076348,0.0046296436,0.3068332,-0.13704461,0.14825651,-0.08360573,0.05588681,0.09873216,0.0014418374,-0.40479133,-0.3646026,-0.12917764,-0.17497677,0.30892977,0.35234278,-0.22631897,0.4057823,-0.10590356,1.9072887,0.13967685,0.1421081,-0.021807408,0.53102654,0.16415091,0.026697647,-0.25401056,0.48314407,0.24069403,0.10153753,-0.42387295,0.12403634,-0.32702643,-0.6075827,-0.07196275,-0.3533704,-0.0692362,-0.1048559,-0.50611985,0.0026560624,0.024966994,-0.23279001,0.53587526,-2.9859436,-0.3499257,-0.120982744,0.26078472,-0.34807694,-0.38844416,-0.18831877,-0.36588657,0.25550753,0.2705674,0.45775017,-0.60082066,0.4506738,0.17229304,-0.39660186,-0.24625778,-0.44856384,-0.066102184,0.028962938,0.35536423,-0.22419192,-0.019552402,0.19509482,0.25723344,0.36145046,-0.23601566,0.032594852,0.24163647,0.31931293,0.2521818,0.31766054,-0.17065634,0.6150967,-0.22716975,-0.12519574,0.14833052,-0.29803494,0.28875872,-0.024229297,0.16131543,0.24498703,-0.3580082,-0.86483425,-0.4034142,-0.018969735,1.148719,-0.15724903,-0.1602753,0.16684748,-0.3382862,-0.23890771,-0.113807835,0.4006542,-0.012283627,-0.07588177,-0.59330285,0.15158369,-0.039690915,0.11237952,0.010257278,0.08130991,-0.33426479,0.44527677,-0.01176249,0.49248543,0.28205603,0.17415921,-0.23356776,-0.23708245,0.04818075,0.8373668,0.2053731,0.1305316,-0.09678423,-0.21528868,-0.49293435,-0.12951349,0.12958576,0.40558186,0.49612173,0.046094958,0.017351035,0.23840974,-0.0036772809,0.11550756,-0.12357731,-0.20368932,-0.058217604,0.023961056,0.46656975,0.49753806,-0.3730992,0.749132,-0.100977674,0.17866193,-0.26955223,-0.35823002,0.50902164,0.73023224,-0.2719951,-0.16099453,0.39900988,0.47824675,-0.3010636,0.33986396,-0.46234357,-0.27405798,0.54007596,-0.2883417,-0.22727808,0.3369307,-0.2130599,0.14630213,-0.96759623,0.14464168,-0.09072841,-0.38761607,-0.41943935,-0.048591223,-3.5219138,0.1187543,-0.14936489,-0.20890222,-0.027283179,0.013161222,0.01088083,-0.6172448,-0.38181254,0.15450433,0.10541025,0.5789402,-0.05495337,0.0930782,-0.24092008,-0.34671083,-0.15885776,0.12415637,0.002184546,0.43420845,0.0029427768,-0.51599824,-0.08673219,-0.24026394,-0.3412316,0.15910009,-0.6935844,-0.34406212,-0.12078501,-0.5706411,-0.27465147,0.7212412,-0.3938952,0.043950405,-0.17977743,0.09698747,-0.074236825,0.3146247,0.03718468,0.039157227,0.049027465,-0.100716814,0.19558683,-0.35952696,0.2164503,0.0964225,0.37520313,0.2935222,0.056729242,0.19072527,0.61099476,0.69849205,-0.04390152,0.6519087,0.3840918,-0.20107909,0.3625731,-0.41601476,0.015138475,-0.36728314,-0.5182315,-0.041024014,-0.3467291,-0.548448,-0.17320925,-0.34915859,-0.64463574,0.47745126,0.0010862033,0.010383886,-0.054366715,0.31911546,0.53701705,-0.31601626,0.12385186,-0.06329331,-0.10785052,-0.47918633,-0.22531518,-0.55528486,-0.39802495,0.27311847,0.8825386,-0.19930027,-0.015920162,-0.092912816,-0.34883007,-0.10155072,0.017399943,0.1868427,0.21104997,0.27553794,-0.39030063,-0.5998377,0.44242477,-0.3056982,-0.15135159,-0.45235318,0.10692315,0.53769416,-0.5030742,0.58024484,0.34798247,0.003673911,-0.015488625,-0.3102541,-0.12723936,0.11073933,-0.066262454,0.07187731,-0.03479139,-0.7853321,0.31050593,0.3103956,-0.37496078,-0.5974818,0.6137219,0.023335127,-0.30237898,-0.15870266,0.30188408,0.2776473,-0.06821828,-0.3505433,0.17063287,-0.5413786,0.18947825,0.28227144,0.030145725,0.35062402,-0.10557842,-0.17972231,-0.69926465,-0.0834619,-0.33481494,-0.2483823,0.24865483,0.19753863,0.27876347,-0.05055284,0.0055091144,0.17630528,-0.5061981,0.014771719,-0.005456372,-0.2450081,0.31234166,0.22423549,0.3787566,-0.5163826,0.5267118,-0.066563666,0.017195094,0.105884805,-0.06510362,0.53577316,0.17113806,0.2497882,0.05700772,-0.34555054,0.31541732,0.6985992,0.26644394,0.28010896,0.12981184,-0.24042676,0.12528335,0.076195754,-0.048200987,0.1327499,-0.37688047,0.010546748,0.023389084,0.1680536,0.43186733,0.19018342,0.31962177,-0.030456575,-0.38151786,0.06402751,0.13136058,0.050089043,-1.082048,0.39108133,0.2880675,0.69546735,0.2420811,0.055830274,0.04892093,0.5944933,-0.23062037,0.1892121,0.3325929,-0.22979529,-0.5521476,0.49610907,-0.63525,0.58107215,0.08767522,-0.08322924,0.18225734,-0.089025564,0.3219036,0.7837425,-0.16039696,0.07703808,0.18776314,-0.38452265,-0.030146424,-0.25850278,0.031119445,-0.6418406,-0.11809946,0.48697993,0.3898855,0.28486055,-0.099373385,0.044854205,0.15657431,-0.120416954,0.038755614,0.10125236,0.31235516,0.036741924,-0.71812755,-0.19222078,0.47739208,-0.070214346,0.15733074,0.1518886,-0.22523095,0.34492296,-0.26118988,-0.024124483,-0.018431846,-0.49452004,0.032819383,-0.23611546,-0.3957494,0.586051,-0.0726254,0.37537614,0.123838894,0.054902628,-0.24505372,0.6006085,0.020849522,0.7265232,-0.13528925,-0.3095253,-0.40151742,0.144121,0.19835348,-0.16102359,-0.008785526,-0.29311875,-0.04780736,-0.48836604,0.29996726,0.0006783962,-0.10482333,-0.16213067,-0.10684968,0.1522026,0.37469372,-0.024061957,-0.06854281,-0.17476615,-0.029352598,-0.21495943,-0.045568123,-0.1827227,0.26834244,0.40161842,-0.08524516,-0.17889513,-0.0942674,-0.025764827,0.4154161,-0.051287115,0.3168309,0.30750397,0.21508308,-0.026544753,-0.16810183,0.2554812,0.3025009,-0.032200906,-0.040760357,-0.39784083,-0.21147601,-0.28636837,0.13485247,-0.21866553,0.22936265,0.23959808,-0.21318096,0.64610636,-0.13446766,1.1534237,0.13889411,-0.26645273,0.07829612,0.43797845,0.11232731,0.09800069,-0.3156415,0.99724555,0.49132118,0.08189013,-0.23939537,-0.39368722,-0.14130355,0.19399491,-0.24724264,-0.27243978,0.10890748,-0.4359891,-0.39702842,0.3205486,0.06459442,0.41588366,-0.09508808,0.16612636,0.20515701,0.15169574,0.24280411,-0.47681573,-0.19457947,0.3618184,0.34487504,-0.00029233296,0.20914592,-0.44665578,0.41712603,-0.47870454,0.09543942,-0.23698281,0.12318972,-0.15280147,-0.3291832,0.22944085,0.11820392,0.2637566,-0.29025808,-0.40046594,-0.21782564,0.40854982,0.07009199,0.050722416,0.45994127,-0.2222731,-0.08108715,0.053039763,0.4876057,0.8880024,-0.24305582,-0.03892083,0.56054837,-0.21847671,-0.6506271,0.24641185,-0.17330573,0.28819996,-0.16656433,-0.08858991,-0.6039754,0.4174395,0.15258953,0.0037312687,-0.081811875,-0.34118965,-0.19483082,0.24028978,-0.309935,-0.29760277,-0.3201222,0.17915888,0.68638813,-0.31613356,-0.3185282,0.18814301,0.24723966,-0.20382638,-0.5625999,-0.034879874,-0.39129952,0.23190175,0.10833203,-0.28961554,-0.2228608,-0.0094291605,-0.28149897,0.3404952,0.34484679,-0.3985525,0.043578062,-0.32473382,-0.1563688,0.9505174,-0.1730562,0.33529076,-0.48057353,-0.42813063,-0.77333224,-0.625029,0.4424649,0.047300447,-0.16116263,-0.6037222,0.032185834,-0.009570781,-0.37966785,-0.05494895,-0.36163524,0.3489407,0.07257804,0.14478116,-0.14537692,-0.72146815,0.11391703,0.14978947,-0.33891094,-0.60966986,0.3364127,-0.11171642,0.9089728,0.03925944,0.13480473,0.47564444,-0.31072408,-0.2071205,-0.31813633,-0.002229474,-0.51562035,0.15356609 +287,0.41422287,-0.2943224,-0.5383467,-0.1463871,-0.3592012,0.23525749,-0.2188691,0.06890636,0.44218236,-0.19153818,-0.34862575,0.03830496,0.012982556,0.44811985,-0.020386415,-0.78928155,0.004876026,0.2920682,-0.9720071,0.62216866,-0.43668276,0.40779993,0.1496673,0.3812356,0.11573477,0.3009679,0.20500013,0.013116168,-0.18857066,-0.0014657378,-0.1404372,0.12377565,-0.58990043,0.16775814,-0.20175095,-0.31415775,-0.11540948,-0.25407335,-0.2695393,-0.83675593,0.17633244,-1.0048089,0.6097906,-0.2721592,-0.094464116,-0.036238756,0.28021753,0.44597986,-0.34731206,0.024432225,0.23288126,-0.34301156,-0.39043453,-0.35066366,-0.14104474,-0.53587276,-0.614975,-0.08319836,-0.6097851,-0.21828052,-0.2523156,0.33162132,-0.29204613,-0.013833516,-0.19869804,0.419468,-0.31062248,0.024123728,0.36000174,-0.2164123,0.10618763,-0.52757543,0.052196383,-0.055422444,0.40365365,0.11543005,-0.284943,0.32022285,0.49369034,0.44099328,0.40127012,-0.35700026,-0.3380851,0.028593203,0.37232453,0.32996348,0.087210946,-0.13921618,-0.3052377,0.05754485,0.5771445,0.21345903,0.358671,-0.20637143,-0.10225104,-0.07385588,-0.023253156,0.7364507,0.4330445,-0.3535904,-0.47627428,0.4145119,0.8218102,0.3870571,-0.23263738,0.12416345,-0.005758292,-0.4891076,-0.04025991,0.19740912,-0.13120024,0.5619531,-0.29287142,0.08292891,0.77594864,-0.34635752,-0.122746326,0.1957783,-0.07461064,-0.36236483,-0.0057201213,-0.13438651,0.08247779,-0.51088005,-0.1749604,-0.35757297,0.5944252,0.08061727,-0.5516636,0.36099213,-0.47464803,0.2819126,-0.03764221,0.6845449,0.82340133,0.59375095,0.3516725,0.88500845,-0.07901222,0.17376302,0.064212374,-0.4428988,0.17613831,-0.5369817,0.14832652,-0.5612176,0.12568595,-0.26694927,-0.20990553,0.053259052,0.5509231,-0.6935129,-0.043638874,0.14644662,0.7585071,-0.28736967,-0.24030903,0.8174612,1.0321901,1.1074201,-0.0025984156,1.4536582,0.5462135,-0.23360205,-0.07894361,-0.47699183,-0.6619869,0.19214995,0.22345884,-0.34508988,0.5178565,-0.042455725,0.03957981,0.3525298,-0.58502495,0.059682317,0.060182896,0.31242862,0.1362501,-0.17211376,-0.3913498,-0.035761748,-0.039884765,0.043836676,0.46512946,0.16046906,-0.32487872,0.5574533,0.15489766,1.1870193,-0.08292329,-0.096348986,-0.14011407,0.39700368,0.2845921,-0.0009193591,-0.0151500655,0.30058178,0.4514276,-0.29305512,-0.53840584,0.19219849,-0.33929893,-0.2438755,-0.30874047,-0.3405049,-0.10093421,0.071919285,-0.20535794,-0.35754436,0.06415995,-0.45053476,0.42621517,-2.3920176,-0.3578898,-0.0910377,0.45408645,-0.21816145,-0.15700594,-0.16598919,-0.74055,0.12002319,0.18432863,0.3890486,-0.7077447,0.52499473,0.47040147,-0.7022278,-0.27535254,-0.7818342,-0.15393779,-0.008660631,0.5453033,0.15673184,-0.12410198,-0.19252001,0.21429572,0.5167184,0.0031356642,0.034937672,0.7020806,0.41521105,-0.029645149,0.4720006,0.25516433,0.79835546,-0.032638993,-0.28132123,0.5574753,-0.28260934,0.36883974,-0.20677374,0.052508503,0.64966995,-0.19394922,-0.91197693,-0.7231423,-0.21898797,1.1460103,-0.3968074,-0.5561401,-0.030862851,-0.2099096,-0.24364087,0.15282877,0.61005634,-0.12454431,-0.06537421,-0.81854045,-0.07118465,0.082376495,0.3299136,0.032521475,-0.08902215,-0.3283201,0.72991997,-0.15521368,0.51720566,0.018709186,0.46022987,-0.27836245,-0.55915755,0.24126129,1.0293075,0.41344315,-0.11478516,-0.23283848,-0.368786,-0.17535408,-0.1794137,-0.0027485234,0.540548,0.6709609,-0.14197038,0.055116024,0.41388783,-0.12831919,0.08410905,-0.29626375,-0.19613752,-0.026347263,0.060413886,0.41060185,0.89899397,-0.1438873,0.59185225,-0.37273794,0.39519352,0.11684024,-0.88276833,0.84567505,0.77452093,-0.22282699,-0.19747661,0.49995762,0.14907077,-0.59639996,0.6114254,-0.70973593,-0.3542958,0.70465535,-0.13613544,-0.3513708,0.24340929,-0.25061098,0.3737028,-0.86231846,0.4099452,-0.2570779,-0.362379,-0.5437896,-0.04353645,-3.1556756,0.09974488,-0.11966451,0.0046620327,-0.31758186,-0.0644881,0.23811135,-0.47855377,-0.70960635,0.0922742,0.2891528,0.7203246,-0.09629305,0.15877107,-0.11257966,-0.37105268,-0.17896883,0.1823679,0.086954035,0.43877348,-0.26381397,-0.47987846,0.069714285,-0.09417973,-0.46166497,0.06799422,-0.7073221,-0.54748446,-0.17001812,-0.424089,-0.20821716,0.6657731,-0.4706619,0.039242394,-0.5000986,0.20991956,-0.09078692,0.16643417,-0.055038225,0.104280114,0.27515396,-0.021481927,0.1694589,-0.16548122,0.48308566,-0.08520192,0.27945405,0.34701523,0.061094794,0.32467794,0.55536723,0.78275216,-0.22445242,1.0295669,0.4180096,-0.10943239,0.19037355,-0.09350947,-0.41806737,-0.6221811,-0.32055417,0.011535555,-0.52909243,-0.36273023,-0.03109302,-0.33695868,-1.0420599,0.5958633,0.066900276,0.40340668,-0.055586945,0.3663545,0.6038156,-0.016777862,0.07398624,-0.15633266,-0.37135682,-0.46838713,-0.3200283,-0.67951256,-0.60264736,0.13460931,1.0554838,-0.47898215,0.08197888,0.05983197,-0.45141673,0.05339806,0.29448563,-0.09587283,0.28844267,0.5928677,-0.052955117,-0.6463247,0.28734133,-0.10455235,0.07147876,-0.6244008,0.22023334,0.7724792,-0.8229731,0.4070407,0.40411615,-0.09806715,-0.14276823,-0.38910553,-0.074139886,-0.0793337,-0.11394034,0.50743955,0.17150936,-0.56471634,0.4697594,0.13175622,-0.4309257,-0.83915937,0.23526695,-0.13234656,-0.023862375,-0.039068777,0.3615252,-0.005150432,-0.0781809,-0.36609942,0.05218676,-0.35577652,0.28593388,0.27765876,-0.0532269,0.04640222,-0.123485744,-0.46968898,-0.88127106,0.0468843,-0.55876476,-0.23759244,0.16539453,0.16762713,0.1330622,0.08947947,0.24204819,0.48148617,-0.34317008,0.07638886,0.023295853,-0.44814116,0.2501488,0.48890516,0.3233653,-0.4435091,0.49995467,0.11559454,-0.33718663,0.13997217,-0.10512867,0.59831154,0.11050038,0.3610304,0.24353442,-0.0010650924,0.23947704,0.6606902,0.0019293173,0.50483435,0.04647716,-0.25403664,0.30442467,-0.056714006,0.39941838,-0.17001006,-0.49199697,0.07324767,-0.048436157,0.17898151,0.549083,0.38842985,0.39234433,0.16512394,-0.26936808,0.016516423,0.02491859,-0.067226194,-1.5885847,0.2996669,0.3587154,0.93823516,0.35347515,0.015170069,-0.073128626,0.7363321,-0.3684686,0.17983733,0.4688953,0.046107568,-0.43441626,0.5526419,-0.805416,0.41939792,-0.057587285,-0.019349469,0.109958,0.26355308,0.23278114,1.0229714,-0.38565,0.049574427,-0.106408514,-0.11130159,0.07560759,-0.32534647,0.15317467,-0.44043747,-0.60508806,0.86248434,0.3094229,0.45612168,-0.27695435,-0.01696174,0.042610835,-0.30105528,0.41352683,-0.061365597,0.09718013,-0.026130872,-0.51507455,-0.033299875,0.4697511,-0.15056607,0.13851462,-0.08536003,-0.20769031,-0.086862735,-0.1591537,0.04579411,-0.13781554,-0.6594072,-0.31265035,-0.08919033,-0.4962099,0.6063317,-0.06449095,0.15070307,0.28942418,-0.060383867,-0.20628786,0.25216216,0.13648777,0.70053,0.28103423,-0.12457738,-0.35511777,0.3015752,0.32905814,-0.30998713,0.28489324,-0.2132624,0.2416874,-0.5190252,0.72230643,-0.31652954,-0.55289805,0.09184395,-0.31549692,-0.025663001,0.44989404,-0.25686142,-0.24469344,0.21657448,-0.22480714,-0.27695936,0.021741936,-0.27153185,0.08552464,0.36268568,-0.22234908,-0.31996462,-0.3129162,-0.118679285,0.5014943,0.02186881,0.4231808,0.45308608,-0.08719741,-0.38297918,0.11444599,0.35651973,0.49280256,0.19832094,-0.2147392,-0.5753241,-0.40830612,-0.4466551,0.27586183,-0.06226572,0.046192296,0.06019978,-0.3726557,0.8354787,0.105109826,1.4252121,0.09880788,-0.36296198,0.20619938,0.6813239,-0.03376951,-0.027829597,-0.5050135,0.81745625,0.48595557,-0.15018591,-0.036095995,-0.7375699,-0.11171552,0.43515295,-0.41703674,0.027107997,-0.08765215,-0.7123496,-0.5494036,0.22714141,0.18306446,0.09863419,-0.13930377,0.23585667,0.13849768,0.05259948,0.3886444,-0.6436812,-0.19494681,0.31261355,0.13937935,-0.22821738,0.21064162,-0.442903,0.45194992,-0.75718886,-0.03929344,-0.33200523,0.053104836,-0.1281224,-0.33448544,0.23679294,0.19472957,0.14936766,-0.5006662,-0.5303235,-0.2546975,0.61261123,0.055685215,0.09285259,0.5782808,-0.4042699,-0.08201929,0.17738162,0.56082875,1.4631792,-0.33944175,0.15010728,0.22350018,-0.4549275,-0.59386057,0.45469385,-0.44884565,0.091014646,-0.17174338,-0.5180299,-0.61763006,0.30130357,0.10023614,0.19248255,0.24706276,-0.5026784,-0.17456438,0.23446487,-0.4679406,-0.13672975,-0.16467895,0.17887463,0.52063966,-0.38838643,-0.45356116,0.12674902,0.37106076,-0.35941964,-0.36836213,-0.15225145,-0.16670656,0.38496956,0.13620973,-0.4247559,-0.0909325,0.11106556,-0.5728621,0.09468741,0.34618288,-0.37615186,0.11356642,-0.2618569,0.07627376,0.7942744,-0.31549573,0.07322932,-0.6167807,-0.48906103,-0.87332165,-0.2645503,0.029899612,0.11995559,-0.23823701,-0.6642407,-0.076146185,-0.235131,-0.06515025,0.23792514,-0.65094054,0.42021975,0.2365175,0.38319737,-0.36147484,-1.1125528,0.14395793,0.03488756,-0.21224472,-0.69260705,0.63561535,-0.1354967,0.792954,0.18025868,-0.015222154,0.020042721,-0.4667401,0.21152286,-0.34093556,-0.1678462,-0.73658186,0.11051685 +288,0.41679922,-0.10556196,-0.40549347,-0.33600396,-0.24952592,0.10923029,-0.23173568,0.31091645,0.2164488,-0.30431095,-0.091544874,0.081840195,0.098155424,0.25327766,-0.35439822,-0.74735534,0.107077725,-0.0041444483,-0.5206306,0.5304234,-0.58733296,0.31704184,0.118470676,0.45076182,0.062067527,0.2495411,0.22263148,0.06389332,-0.24005276,-0.28441164,-0.105774745,0.06380252,-0.6535398,0.20448242,-0.31753665,-0.29994255,0.01823232,-0.5210822,-0.36888748,-0.7209853,0.35507792,-0.84247214,0.53623706,-0.047821898,-0.49253595,-0.12451163,0.2321385,0.15635589,-0.23526412,0.00094577443,0.11028235,-0.2117316,0.03639456,-0.19055429,-0.20628038,-0.5936153,-0.51948285,-0.030041877,-0.674542,-0.029653035,-0.2401151,0.2595691,-0.2822556,-0.047508277,-0.061876934,0.32232362,-0.41073868,0.038677294,0.13058208,-0.29806247,0.22421195,-0.43777162,-0.22013062,-0.062192526,0.23524478,0.07962458,-0.30848324,0.42394182,0.3140682,0.5030226,-0.016548593,-0.26111138,-0.027434042,-0.063043356,-0.028562518,0.52798563,-0.079868995,-0.58457536,-0.32449597,-0.19562949,0.5566977,0.20594451,0.12557855,-0.24002682,0.03764132,0.014142628,-0.29129133,0.549248,0.6788022,-0.15772706,0.06382491,0.27339086,0.23657614,0.15875028,-0.28928488,0.18815301,-0.017684413,-0.51553565,-0.19237518,0.065754816,-0.019671198,0.8239752,-0.22023922,0.32165405,0.8010711,-0.1418531,0.0057653463,0.19052744,-0.08731323,-0.13767084,-0.034431413,-0.2033063,0.17548952,-0.5718159,-0.15326624,-0.40641075,0.6423343,0.13396317,-0.7168925,0.33369544,-0.48092005,0.047898557,-0.09308175,0.5735975,0.63944024,0.580495,0.34971634,0.786788,-0.44174388,-0.06533839,0.19429518,-0.28028858,0.26672885,-0.16523647,0.11071776,-0.38040262,-0.079821706,0.2003896,-0.0069695446,-0.007310693,0.49279854,-0.42121255,-0.082200184,-0.07740348,0.63256156,-0.35029027,0.0158945,1.0211875,1.2776252,0.9269823,0.13199972,1.2929995,0.1134165,0.016036304,-0.08989636,0.05043045,-0.61697876,0.20505792,0.39579612,0.019286413,0.41619104,0.13318709,0.027927719,0.30589196,-0.37284753,-0.09209785,0.09975844,0.3142772,-0.062992744,-0.12126916,-0.46245348,-0.19692081,0.19471143,0.23377442,0.17301562,0.34670174,-0.2690473,0.4845274,0.116895914,1.1171312,0.08467768,0.024464458,-0.034944,0.5565858,0.23042497,-0.04206104,-0.028054897,0.45958817,0.23762318,0.10932389,-0.57778174,-0.13510042,-0.31338832,-0.49831727,-0.14815599,-0.5016199,-0.15291461,-0.41914532,-0.46266535,-0.124016516,0.012243048,-0.2740598,0.272037,-2.488415,-0.40724385,-0.15124692,0.41751388,-0.122872226,-0.27074337,-0.14127384,-0.4151937,0.49997142,0.43798718,0.36161155,-0.7575584,0.45127818,0.5118231,-0.3048006,-0.1831975,-0.63710314,0.0030284845,-0.0452917,0.33439177,0.04016947,-0.18837054,-0.11284293,0.32686657,0.61037445,0.25066078,0.18936488,0.09006361,0.6011226,-0.26257735,0.51730084,-0.013318305,0.4167978,-0.18191601,-0.074607864,0.19972011,-0.5674889,0.41689676,-0.05968625,0.23611468,0.4747362,-0.6093656,-0.90719444,-0.66575706,-0.27291873,1.2662861,-0.36561707,-0.48258412,0.25715476,-0.1537068,-0.44776413,0.013759512,0.6552175,-0.24193738,0.14635354,-0.7267415,-0.079174004,-0.24098255,0.2488619,-0.17342871,0.27137655,-0.40437096,0.6626053,-0.100964345,0.562312,0.18295462,0.08366825,-0.34202436,-0.5310044,0.19190294,0.84908265,0.6531403,0.055153575,-0.2209776,-0.058280505,-0.30070588,-0.0762023,-0.0007437651,0.668554,0.7533921,-0.08003586,0.07226459,0.3696016,-0.13081421,-0.06332158,-0.1748111,-0.34708196,-0.07016683,0.043859582,0.798746,0.82733184,-0.2397967,0.16321088,-0.0760454,0.41150576,-0.31674284,-0.5069409,0.5587488,0.61035883,-0.12962747,-0.05978122,0.5978759,0.4194752,-0.46452257,0.54224974,-0.5511985,-0.49128786,0.5600342,0.041502826,-0.4756381,0.26610085,-0.28619987,0.10649958,-0.9349649,0.53797317,-0.04447953,-0.61789024,-0.4822709,-0.217987,-3.2924676,0.023550816,-0.07906833,-0.22321653,-0.3743663,-0.23871256,0.2600568,-0.6452229,-0.701242,0.043262105,0.03195542,0.6525346,-0.109983645,0.2067185,-0.29151806,-0.30842227,-0.20701383,0.2261335,0.04016647,0.22893688,-0.12382806,-0.28951466,-0.04586146,-0.321216,-0.5907574,0.040018138,-0.4722301,-0.6368728,0.017811198,-0.51430714,-0.11966236,0.686814,-0.2338895,-0.04065095,-0.3142768,-0.10983766,-0.15070993,0.3042366,0.12336194,0.11665087,-0.026462408,0.037970368,0.07732194,-0.34125906,0.22575697,0.13800159,0.43174267,0.4610736,-0.27130446,0.20496584,0.6098398,0.6191889,-0.0617078,0.9056599,-0.023838501,-0.07565803,0.3191293,-0.24548069,-0.5645287,-0.59094274,-0.32615694,0.033417463,-0.35214964,-0.19389655,-0.16134551,-0.34069902,-0.81340855,0.387485,0.19600107,0.097242996,-0.25747216,0.27543658,0.31219688,-0.18285953,-0.05412399,0.07055713,-0.22581816,-0.55908245,-0.22152941,-0.7657844,-0.53904694,0.086454645,0.8019958,0.055024624,-0.13994758,0.18041867,-0.33394623,0.17893527,-0.07243119,0.186797,0.109531865,0.23412234,-0.114238925,-0.77202195,0.45180318,-0.2878838,-0.054741565,-0.5543713,-0.16136912,0.86909145,-0.6629857,0.30248576,0.60379076,0.24720098,-0.012574031,-0.5513583,-0.11927735,0.0005850975,-0.06301364,0.57981956,0.2054658,-0.7859481,0.50550056,0.0151484655,-0.025627438,-0.44888481,0.5783046,-0.11880796,-0.17377171,0.0868852,0.41259748,0.00050946383,-0.031796437,-0.2845613,0.32625502,-0.5132319,0.25163168,0.41666052,0.13633022,0.67788595,-0.012282411,-0.2578998,-0.693076,-0.17763291,-0.6034421,-0.2357637,0.07203087,0.010288651,0.080381125,0.04418912,0.09621068,0.24894312,-0.4610179,0.23200668,-0.051605266,-0.18078184,0.5040896,0.63537496,0.5938299,-0.4607778,0.78361166,0.28065118,0.10496453,-0.09530174,-0.047239468,0.4185149,0.27577993,0.32635805,0.02631843,0.020500243,0.23545423,0.6693739,0.208395,0.3903579,0.45592275,-0.24540065,0.3077535,0.121773496,0.36228272,0.017327223,-0.34571382,0.088980876,-0.08274229,0.0041510086,0.45349666,0.1394533,0.16435876,0.08284533,-0.27564985,0.078974776,0.26499227,-0.32928035,-1.6724327,0.45054403,0.42081305,0.7165944,0.49062377,-0.025084678,-0.092590645,0.54557234,-0.19201502,-0.048617914,0.3045244,0.20731474,-0.3517952,0.6322466,-0.490326,0.47190407,-0.19836083,0.038870454,0.07052122,-0.06893956,0.40503377,0.9364351,0.02411273,0.16045788,-0.07764366,-0.17052552,0.10576655,-0.53011036,-0.040835064,-0.30432206,-0.27008504,0.5741502,0.27371407,0.30331978,-0.25831836,0.009668011,-0.0059035053,-0.12427668,0.11931968,-0.10488666,-0.11116295,-0.24353679,-0.75253105,-0.28927204,0.5491024,-0.17714468,0.13639227,0.14228433,-0.22957277,0.15524575,-0.04596923,-0.046675436,-0.015353174,-0.72486824,-0.12325696,-0.38266027,-0.55056036,0.33056238,-0.40042385,0.24632399,0.20800146,-0.019910542,-0.14187166,0.017911475,0.14199802,0.7119347,0.09893953,-0.28173226,-0.18096887,-0.038197987,0.3508225,-0.47185522,-0.12358551,-0.3989534,0.15917356,-0.40792164,0.3769547,-0.17852713,-0.2866471,-0.1171439,-0.10819982,0.032882765,0.2693743,-0.32091495,-0.2008788,0.15274061,0.011996737,-0.2175264,-0.0029538847,-0.314936,0.32370678,0.19295089,-0.06154436,0.15713336,0.06970547,0.027819706,0.34944242,0.15670094,0.32391375,0.46922362,-0.12662277,-0.3414685,0.00016908463,-0.07511048,0.62734807,0.110820696,-0.009509353,-0.3009714,-0.44920585,-0.3585521,0.3917949,-0.20217098,0.12274608,0.23667742,-0.19829758,0.7663136,0.18580753,1.1937168,0.11440826,-0.47974318,0.15038726,0.6028924,0.007868969,0.012515389,-0.3376635,1.1293304,0.37623733,-0.44244084,-0.12387726,-0.6147425,-0.17684151,0.18800065,-0.21359316,-0.4262231,-0.20214452,-0.8482806,-0.15798165,0.13461915,0.22358465,0.035701733,-0.09749815,0.054444548,0.2868314,0.09901103,0.32729068,-0.77713203,-0.09063273,0.43910617,-0.012080864,-0.027765442,0.009821837,-0.41354784,0.36896732,-0.5322558,0.027841436,-0.5029968,0.17371526,-0.03540724,-0.55473286,0.17021745,0.04957211,0.40904853,-0.38967997,-0.42909348,-0.2615705,0.5802047,0.2257893,0.23577048,0.5142158,-0.19484782,-0.1784742,0.075951174,0.5093111,1.3628736,-0.049364302,0.2519439,0.2470665,-0.47650993,-0.65627056,0.006557529,-0.4674541,0.13679716,-0.044773944,-0.47185817,-0.45541456,0.30087966,0.063972205,0.072962835,0.14038828,-0.574577,-0.2651901,0.4351012,-0.25132054,-0.32818013,-0.35289353,0.013405185,0.64918876,-0.37355593,-0.35877687,-0.054379683,0.3478275,-0.2062129,-0.64007825,-0.07384233,-0.22106358,0.42093346,-0.063822426,-0.35479382,0.012787191,0.075635105,-0.42640877,0.343353,0.354489,-0.27651736,0.07182148,-0.26511925,-0.14300053,1.0447768,-0.01630242,0.063692704,-0.5646286,-0.5502599,-0.7821325,-0.35631725,-0.045514822,0.17128386,-0.014800365,-0.56536186,-0.06007814,-0.04985136,0.05707741,0.074378185,-0.4763675,0.45627493,0.17159115,0.5953269,-0.02452601,-0.9653549,0.13962287,0.16605617,-0.28883335,-0.5562523,0.6487434,-0.12317793,0.50781727,0.14525035,0.1367128,0.01804461,-0.717583,0.29484022,-0.27998155,-0.10395953,-0.61918414,0.30364677 +289,0.49559793,-0.11373223,-0.43251136,-0.14632963,-0.19897531,0.1493433,-0.16161463,0.49467295,0.21335606,-0.3100244,-0.035734028,-0.0012670329,0.055348404,0.22561404,-0.2659019,-0.63015425,0.019281594,0.0051161083,-0.31034514,0.35541645,-0.4889539,0.4937868,0.120557986,0.2594861,0.014615297,0.2531416,0.37696117,-0.1823827,0.19283812,-0.3468216,-0.18476507,0.27771953,-0.6760337,0.052805755,-0.08297432,-0.33380178,0.15654291,-0.196849,-0.24890949,-0.70695287,0.19987358,-0.7200495,0.63136375,0.13626851,-0.28433168,0.29820538,0.20393656,0.22798201,-0.20247124,-0.03076649,0.04062127,-0.19817127,-0.06957984,-0.21238755,-0.10605942,-0.45861274,-0.5532597,-0.051805634,-0.44425684,-0.12924418,-0.29716936,0.086123586,-0.33037302,0.05077682,-0.033772733,0.31115595,-0.42724174,0.061473858,0.2707785,-0.13760833,0.37149334,-0.5713853,-0.09123856,-0.15476856,0.21524541,-0.13390042,-0.21517403,0.22128525,0.39055124,0.56107074,-0.08021581,-0.19441639,-0.32442123,-0.31274682,-0.03828237,0.5767865,-0.24563535,-0.4302156,-0.15427032,-0.056905396,0.2552692,0.23315422,0.06837045,-0.09321286,-0.15945767,0.08608242,-0.37275797,0.47475287,0.493046,-0.5315599,-0.36268464,0.2633449,0.5374996,0.0070267576,-0.122400224,0.031517345,0.024978843,-0.52395946,-0.123741336,0.021772478,-0.18348482,0.4670991,-0.19471033,0.14469203,0.71549785,-0.29447335,-0.043770473,0.24669476,0.07231972,-0.03955832,-0.19741575,-0.26448476,0.21899624,-0.7420969,0.0325995,-0.355331,0.96096814,0.15581012,-0.6456142,0.32126206,-0.5443036,0.123727955,-0.16397044,0.57789105,0.64949507,0.4483924,0.25643232,0.76499516,-0.5145624,-0.0297458,-0.033858683,-0.34106568,0.3060736,-0.16569725,-0.12356111,-0.4569246,0.05571843,0.17092085,0.12655547,0.20171228,0.2941441,-0.6489216,-0.1290385,0.18374364,0.7485425,-0.32819057,0.025752353,0.6554703,0.999788,0.9271771,0.034458604,1.1994021,0.10633632,-0.27713546,0.13803421,-0.1134945,-0.78849024,0.18093033,0.29402837,-0.0053070104,0.1353151,0.12762192,-0.0099110175,0.2870932,-0.4132059,-0.16854444,-0.19052537,0.42511886,-0.0011820793,-0.02961742,-0.40785095,-0.33238402,0.033334296,0.017514799,0.15028702,0.3633521,-0.1991059,0.4534605,0.08089125,1.184954,-0.048204456,0.14738706,0.14780799,0.45956588,0.31159446,0.011529527,-0.07427903,0.26392698,0.43793032,0.28059813,-0.63937026,-0.0054347515,-0.15766008,-0.3604595,-0.14120078,-0.45003906,-0.05236817,0.07005864,-0.3279679,-0.21893823,-0.16126074,-0.22924638,0.5217735,-2.7134535,-0.05340432,-0.12782297,0.25414175,-0.16573699,-0.29088378,-0.19235066,-0.53722006,0.50292104,0.30555424,0.46586803,-0.6760492,0.24054913,0.46289274,-0.40108013,-0.17830695,-0.70742077,-0.18725054,-0.124459304,0.27575555,0.13207015,-0.15064205,-0.21220478,0.34838858,0.5934897,0.0870567,0.04210645,0.16233842,0.28705075,-0.028459022,0.5672194,0.071788825,0.62280416,-0.20214607,-0.23542754,0.35428736,-0.25265628,0.25253576,-0.19317491,0.08760232,0.3394003,-0.42750576,-0.99726963,-0.7708782,-0.07893306,1.2655901,-0.3192043,-0.33954844,0.22314608,-0.37049556,-0.1877811,-0.13034609,0.30113605,-0.12573169,0.0063122935,-0.67301184,0.14948596,-0.029858215,0.17508109,0.014185028,0.046517346,-0.40059167,0.6772412,-0.15613471,0.42476994,0.27316928,0.18544759,-0.23997341,-0.5780652,-0.07400101,0.96696204,0.4822375,0.04115349,-0.10708048,-0.28444225,-0.2819923,-0.023886519,0.08000682,0.5622774,0.82529056,-0.08609391,0.11228982,0.2543818,-0.12422037,0.091734886,-0.041907568,-0.3813314,-0.03668482,-0.16626248,0.67413586,0.5712504,-0.10466761,0.3266481,-0.012042574,0.4735229,-0.10736205,-0.5195378,0.51404935,0.87177914,-0.19922283,-0.22600631,0.73418945,0.4611109,-0.23605064,0.50375634,-0.68873066,-0.37401035,0.5238337,-0.14439689,-0.39307433,0.18632606,-0.36508408,0.09811846,-0.89398426,0.34611246,-0.37091365,-0.34721714,-0.3409373,-0.08670441,-3.940368,0.16687752,-0.35935575,-0.009286122,-0.1841316,-0.0641621,0.35183525,-0.5677574,-0.4654949,0.21680741,0.14679888,0.7035624,-0.04340321,0.0024035317,-0.26063493,-0.364669,-0.32624382,0.1935652,0.16040935,0.12904757,0.0047823107,-0.36602068,0.114143915,-0.17081808,-0.38873076,0.08726305,-0.33293846,-0.6357069,-0.07085544,-0.38170835,-0.49529272,0.7239719,-0.39081234,0.12608312,-0.108387336,-0.03946308,-0.08708911,0.18551458,0.080497146,-0.050483577,-0.056719482,-0.06402897,0.03356753,-0.42926288,0.40101403,0.05595416,0.29468337,0.23052692,-0.12873766,0.064186715,0.65792435,0.4035121,0.032985147,0.89427215,0.44678932,-0.101967104,0.24703288,-0.22984947,-0.30541328,-0.48579663,-0.3075293,-0.09529705,-0.4090558,-0.26045904,-0.014006759,-0.3781653,-0.7647627,0.5894252,0.010227263,0.12857254,-0.19146974,0.4710957,0.41553995,-0.12307893,0.028032554,0.06762308,-0.2480375,-0.5818353,-0.123690665,-0.73036057,-0.36583576,0.13080779,0.9977604,-0.4565454,0.037647437,-0.08627759,0.04401403,0.17246202,0.17388631,0.13631111,0.2678475,0.52089596,-0.051225927,-0.73280567,0.4838886,-0.25378242,-0.16902302,-0.80810845,0.16862348,0.5089501,-0.86611575,0.3332495,0.5090997,0.02905025,0.050080784,-0.5674138,-0.14508176,-0.095364995,-0.30533788,0.43593344,0.20178351,-0.7864422,0.4676523,0.29279825,-0.13468574,-0.627346,0.5907201,-0.04699189,-0.35415015,-0.048149038,0.38248554,0.31306913,0.101308405,0.020242456,0.18546377,-0.44973344,0.27846318,0.116864935,-0.10130644,0.50110257,-0.19377318,-0.10030768,-0.7212429,-0.028205799,-0.6380494,-0.2791851,0.100414865,0.053263962,-0.019127253,0.29641765,0.09172546,0.51800066,-0.33210462,0.088900685,-0.008550972,-0.34199807,0.62782663,0.48711523,0.4178056,-0.26347128,0.59374154,0.06703191,-0.0947328,-0.0550575,0.07076784,0.57627434,-0.039179724,0.45336014,0.013785276,-0.17490701,0.29675832,0.6732544,0.11506377,0.24708359,-0.039851554,0.0015737755,0.2756982,0.11487353,0.0052245515,0.28697178,-0.41382402,-0.21505383,-0.12306295,0.08021646,0.5653412,0.27264687,0.32983845,-0.10400404,-0.23886026,0.07743056,0.0054281824,-0.11269287,-1.1116968,0.37416738,0.0636378,0.6023516,0.46024424,0.0017942765,-0.022276713,0.5546842,-0.22784102,0.06954878,0.27539405,0.14331968,-0.24121179,0.5955606,-0.8091701,0.5982314,-0.09666278,0.0018714517,0.036739793,-0.12573513,0.3366759,1.0765182,-0.083498135,0.025806189,-0.005654884,-0.34972993,0.2776688,-0.40438884,0.043469615,-0.5514402,-0.14042959,0.6887311,0.3643449,0.36079717,-0.099883236,0.026071284,0.107262634,-0.12053519,0.22568364,-0.057168074,0.084020965,-0.1337264,-0.46222273,-0.18008794,0.5694718,-0.05825654,0.16200992,-0.11608183,-0.1438658,0.36051208,-0.10331617,0.038586617,-0.13465212,-0.53250694,-0.038775157,-0.29473755,-0.3539393,0.61096746,-0.35715553,0.26983255,0.30209413,0.111229606,-0.27401915,0.22210124,0.18515134,0.54665965,-0.16134048,-0.22649248,-0.4269441,0.0770527,0.08951255,-0.15783063,-0.06939819,-0.39662462,0.2511279,-0.64427316,0.31911302,-0.20703506,-0.28802705,-0.052243233,-0.17298543,0.01631249,0.52668566,-0.1958755,-0.09264374,-0.06608613,-0.28784016,-0.18444017,-0.28217086,-0.13548689,0.12296073,0.15495324,-0.097873494,-0.05212333,-0.4451458,-0.18079512,0.263612,0.04537761,0.34195575,0.23333934,0.07312072,-0.257888,-0.073168345,0.10673002,0.3543063,-0.24788664,-0.07308253,-0.35270172,-0.58922404,-0.22145617,0.27012274,-0.16884777,0.29238325,0.0077830814,-0.23176575,0.7252537,-0.061948456,0.98234284,-0.0049935924,-0.33697006,-0.06697873,0.7159947,-0.14585164,-0.067672916,-0.21299423,1.0038955,0.5832491,-0.24431539,-0.17563811,-0.35849133,-0.07624823,0.15586875,-0.21197882,-0.06810522,-0.020141179,-0.58172405,-0.20887966,0.23239926,0.3206373,0.21396813,-0.0028802922,-0.02994141,0.1642343,0.076360054,0.31038398,-0.46967396,-0.10292588,0.2554158,0.29040736,-0.00208503,0.12332169,-0.44662005,0.36532912,-0.41633496,-0.03784791,-0.32926163,0.11221717,-0.21432444,-0.2819798,0.28735036,-0.0423257,0.32543054,-0.28439352,-0.41646835,-0.14249495,0.37123448,0.19110966,0.1548468,0.59463114,-0.2531231,0.032375075,-0.071269855,0.53681135,1.21333,-0.19227734,-0.19524609,0.32789034,-0.32766122,-0.49686003,0.14225137,-0.38151416,0.10971129,0.053965945,-0.29098812,-0.4258608,0.25882098,0.22954284,0.15358911,0.19397675,-0.6161637,-0.28499898,0.1439279,-0.34807822,-0.26937792,-0.31507906,0.1480156,0.67362297,-0.27785853,-0.057794858,-0.018146308,0.31891632,-0.16522683,-0.6962818,-0.08986782,-0.3493239,0.3514214,0.2506736,-0.3485396,-0.018961983,0.0987244,-0.46628904,0.15995231,0.36719704,-0.2875555,0.049794454,-0.33210054,0.11592233,0.75685483,-0.16861632,-0.008444203,-0.45143026,-0.38255662,-0.7935335,-0.23466666,0.6262702,0.22172062,0.07367506,-0.50293285,-0.10099159,-0.1129602,-0.0059638917,-0.08813892,-0.43153545,0.5447985,0.10112857,0.346539,0.018558612,-0.96264726,0.1228373,-0.053889584,-0.18516555,-0.6271497,0.5927741,-0.16614139,0.7955293,0.29593596,0.0008276999,0.3807612,-0.42047504,-0.013684788,-0.23857678,-0.20151846,-0.8035348,0.0180778 +290,0.5070371,-0.42462504,-0.830434,0.03006535,-0.35535288,-0.13169046,-0.31133547,0.49371514,0.13396163,-0.4383136,-0.20194249,-0.20854759,-0.14682664,0.55623645,-0.19377781,-0.50605756,-0.06023687,0.36135805,-0.6720515,0.4408628,-0.17529993,0.31447515,0.13579513,0.37893224,0.15990457,-0.09878812,0.07409117,-0.0019637297,-0.3364379,-0.5069993,-0.059629444,0.022860885,-1.0948567,-0.0064116023,-0.3238164,-0.52582383,-0.22591835,-0.5556099,-0.21735553,-1.1137004,0.22561151,-0.9835953,0.74198604,-0.23064058,-0.3111739,0.062458295,-0.013442407,0.726525,0.0542212,0.12864797,0.20041735,-0.39234957,-0.20198016,-0.037889812,-0.26147053,-0.44886196,-0.69845635,0.1534173,-0.5052981,-0.06201284,-0.1402483,0.23860641,-0.39063573,0.115616985,-0.19872458,0.7143976,-0.37298346,-0.009249779,0.3419628,-0.037716296,0.5272421,-0.8363822,-0.026604118,-0.3148028,0.16802365,-0.27385035,-0.35012618,0.22036803,0.23514552,0.37385485,0.048192322,-0.24387668,-0.21702792,0.12809141,0.16998284,0.37195238,-0.088502206,-0.3743415,-0.09294632,0.19200438,0.58553547,0.09386418,0.23776178,-0.37846455,0.022421082,0.1670054,-0.24185002,0.494624,0.569107,-0.13308127,-0.12462964,0.19614603,0.8475728,0.34296823,-0.022561038,0.050285872,0.11022595,-0.50853425,-0.09109858,0.37730324,-0.15943329,0.63191646,-0.2689457,0.2222714,0.683464,-0.5753333,-0.1718118,0.2661009,-0.05254412,0.014896746,-0.12097586,-0.59774065,0.56478614,-0.4953736,0.22826232,-0.49028683,0.8352327,0.19949012,-0.835258,0.20884341,-0.7804811,0.14367153,-0.10778964,0.67463845,0.6958396,0.76238316,0.27685612,0.8157091,-0.23111264,0.1285114,-0.051023766,-0.4427576,-0.1492218,-0.5854068,0.023720047,-0.44653538,-0.42993855,-0.35489854,-0.43011317,-0.05107079,0.56398696,-0.79230714,-0.23022366,-0.12641005,0.62786365,-0.33102775,-0.1211352,0.9866187,0.8783732,1.3009156,0.23990393,1.1838734,0.4101243,-0.38323817,0.012259439,-0.07017902,-0.7890257,0.43565404,0.18605107,-1.0007175,0.50566524,-0.060116623,-0.06794586,0.40020618,-0.5707733,0.058146592,-0.2164387,0.10314631,0.06844291,-0.18330985,-0.35269538,-0.16790007,-0.08048567,0.11483583,-0.051997337,0.18716662,-0.21731107,0.70864445,0.17337625,1.2318635,-0.24332523,-0.07516892,-0.018952193,0.29271713,0.063903816,-0.32690975,-0.1815738,-0.01748087,0.48765656,0.26842913,-0.5563367,-0.0007799224,-0.15954624,-0.36881098,-0.48117757,-0.058900777,0.11552399,-0.32679904,-0.4245256,-0.28169337,-0.09251255,-0.32973373,0.457948,-1.8030814,-0.16289721,-0.14858235,0.32674935,-0.41489658,-0.4513295,0.03204629,-0.67624885,0.30357727,0.24976514,0.42356172,-0.71407527,0.31047866,0.39490637,-0.54343545,-0.05066107,-0.8522659,-0.3726089,0.07590928,0.23426056,0.21332578,-0.20801164,0.23930578,-0.0090013845,0.39266226,-0.24286918,-0.13049564,0.32845306,0.3835545,-0.04313126,0.5603094,0.014677305,0.5842036,-0.46411058,-0.25830254,0.5668165,-0.35884818,0.04166624,0.07172624,0.031453922,0.43960187,-0.460258,-0.842071,-0.9397991,-0.41325736,1.311234,-0.13585486,-0.69217616,-0.067394525,-0.031044057,-0.20919715,-0.15210585,0.37000403,-0.085095756,0.09949387,-0.8514721,-0.16659783,-0.12933348,0.46830258,0.038568832,0.057321787,-0.5564421,0.62988746,-0.15516388,0.07005508,0.68206304,0.27498123,-0.38576818,-0.7530845,-0.06612186,1.2076489,0.46099722,0.2002755,-0.48849428,-0.09213995,-0.45641986,0.12697221,-0.098216794,0.44460312,0.97471064,-0.16855001,0.049970407,0.29223076,-0.090650775,0.27555004,-0.16932295,-0.58513826,-0.2179073,-0.08746139,0.7213437,0.62870985,0.16680187,0.9115858,-0.20151997,0.29276696,-0.065876275,-0.538305,0.7051398,1.4520736,-0.281549,-0.39972827,0.40931138,0.22391273,-0.31821677,0.55139714,-0.6256892,-0.3276755,0.4050382,-0.081509225,-0.63035685,0.38099372,-0.2758781,0.3099412,-1.0819759,0.47674653,-0.608603,-0.5625634,-0.6729586,-0.11829021,-2.2331626,0.46502662,-0.14133431,-0.08569721,-0.20903866,-0.50141644,0.15058984,-0.5046758,-0.8117116,0.04869099,0.14778717,0.8518004,-0.10129544,0.065869816,-0.2633582,-0.51637363,-0.3455638,0.27691546,0.5529098,0.19863147,-0.06527868,-0.47457418,-0.013260146,-0.23199739,-0.43864226,-0.076547176,-0.8722729,-0.7618385,-0.3004387,-0.6337914,-0.4709324,0.7551484,-0.35188127,-0.016106794,-0.20104699,0.09095097,0.2662702,0.48213163,-0.10910654,0.22757779,0.18947053,-0.18678005,0.048289627,-0.1771269,-0.01729536,0.14536358,0.1129537,0.33343902,-0.3487763,0.5524673,0.70739704,1.2062671,-0.026935091,0.96955806,0.5872336,-0.15017182,0.17212649,-0.2769486,-0.54492134,-0.72207594,-0.124328524,0.17768978,-0.4130012,-0.32852113,0.095133275,-0.2027344,-0.83299494,0.83725023,-0.1263466,0.12047399,0.16742271,0.600168,0.4879276,-0.14818712,-0.07533731,-0.13313468,-0.16350563,-0.47286463,-0.42355514,-0.51319236,-0.7677074,-0.40622267,1.501412,-0.0032870322,0.098747455,0.12660243,-0.15687506,0.27250317,0.110317715,-0.13884936,0.08895966,0.30389002,-0.19554214,-0.80293256,0.07202398,0.037346315,-0.035371743,-0.80165356,0.38077024,1.0100332,-0.65333414,0.25607923,0.25864306,-0.20058125,-0.16789138,-0.50006074,-0.04390602,0.12803756,-0.32880065,0.36692134,0.26747802,-0.41532433,0.406202,0.39698872,-0.27744257,-0.84389704,0.37933126,0.19819635,-0.24093215,0.060615648,0.40979803,-0.035463523,0.021742085,-0.41380796,0.108492024,-0.36626127,0.17884983,0.4294332,-0.20784344,0.06641126,-0.15107362,-0.13400665,-0.86414737,0.3251238,-0.47240135,-0.3387922,0.38181818,0.07020105,0.15666252,0.4803541,0.3300185,0.41122806,-0.22184013,-0.13087909,-0.290085,-0.3381739,0.49459305,0.6078737,0.3840189,-0.5566223,0.61458856,0.09498348,-0.22938274,-0.06758002,-0.11074611,0.64271396,0.01916788,0.3229424,0.5734652,-0.31592143,-0.00684198,0.75154084,0.1198137,0.76120144,-0.0585454,-0.00992759,0.07341813,0.3020192,0.50610644,0.055432934,-0.7159367,0.104580194,-0.07100448,-0.02654717,0.54382145,-0.084124774,0.32635686,-0.1523314,-0.39911008,-0.114226185,-0.0012709498,-0.06256456,-1.6474361,0.56944364,0.28411722,0.7267976,0.31008363,0.05166233,0.13982032,0.6909385,-0.26109052,0.032183383,0.29439524,0.25320268,-0.3319499,0.5212347,-0.9686324,0.52559185,-0.11358126,0.05774683,-0.08987499,-0.05843793,0.5439926,0.9126697,-0.2535883,0.06937368,-0.24298869,-0.15432172,0.16952537,-0.5007974,0.09183874,-0.5990891,-0.29575673,0.9561561,0.39804104,0.41588882,-0.17790222,-0.018098282,0.14371806,-0.23711742,0.4250606,-0.038529918,0.11097213,0.04619363,-0.52032,0.090643175,0.56583303,0.07482869,0.102623284,0.056056377,-0.1437959,0.16462989,-0.13338922,-0.058178652,-0.17479686,-0.79023963,-0.07130626,-0.69632846,-0.33836016,0.21449481,-0.21851164,0.18544,0.25142232,-0.0047762,-0.43396845,0.40224862,0.35160747,0.9278736,0.105044305,-0.15014307,-0.12950782,0.4790086,0.2793055,-0.30215016,-0.004247745,0.14339243,0.00196745,-0.5131943,0.23902877,-0.15927993,-0.63396114,0.1899121,-0.043099612,-0.23924136,0.5986533,-0.33742788,-0.027631894,0.3564414,-0.17014128,-0.01002498,-0.24194014,-0.051100206,0.16930227,0.1735364,-0.17181742,-0.15924162,-0.09922683,-0.19172502,0.54952717,0.022051359,0.5449147,0.4829804,0.23924239,-0.6317976,-0.118067004,-0.011001016,0.7536194,-0.04519281,-0.19424224,-0.57135373,-0.3280093,-0.29370227,0.26651847,-0.0108330855,0.26509967,0.113770746,-0.54055226,1.05016,0.23152953,1.5048748,-0.028515661,-0.38161454,0.11447226,0.3888733,0.117866375,-0.12458822,-0.58225507,0.9538682,0.39108542,-0.12618881,-0.10480183,-0.41742447,-0.083257236,0.09056264,-0.23517245,-0.17482044,-0.066734575,-0.55676585,-0.38062397,0.4463885,0.3317082,-0.017434144,-0.14123188,0.26452968,0.5023467,-0.14877538,0.3049399,-0.37438044,0.13427863,0.3227754,0.30721614,-0.1798832,0.053270902,-0.45782447,0.25625247,-0.59414554,0.078277,-0.31952894,0.19095011,0.044188667,-0.2304116,0.32537702,0.22324379,0.3845806,-0.50128764,-0.29862416,-0.21214573,0.54700416,0.19570129,0.2888237,0.7628172,-0.3141489,0.06262358,0.058785807,0.47247794,1.2203268,-0.52142054,0.10516689,0.41625452,-0.18236364,-0.44496205,0.54707223,-0.2300573,0.14449741,-0.15610647,-0.18919046,-0.69169694,0.14167735,0.31739667,-0.039674554,0.04726863,-0.6095048,-0.026151896,0.526731,-0.4120084,-0.14132918,-0.48780414,0.2419572,0.42044434,-0.19027121,-0.6247837,-0.08848527,0.41426417,-0.14540367,-0.15271556,-0.22392415,-0.063881844,0.32477382,0.16585101,-0.40706757,-0.0128043005,0.21772873,-0.5731594,-0.066186585,0.072476976,-0.33399162,-0.033928506,-0.041805822,0.03569402,0.7308329,-0.4530206,-0.055224154,-0.37022033,-0.5240776,-0.92507553,-0.15460308,0.35476944,0.31181166,-0.015550974,-0.8845158,-0.12803544,-0.27954504,-0.2364837,0.12052688,-0.34257492,0.39733472,0.26600933,0.6714902,-0.1777281,-0.744889,0.44758675,0.100649394,-0.034347605,-0.62965596,0.41057262,0.14445165,0.66207093,-0.0061522997,0.28085935,0.34200802,-0.60772586,-0.036799636,-0.05132215,-0.15814854,-0.8153415,-0.103851564 +291,0.4466862,-0.33019894,-0.60028875,-0.1791417,-0.18302454,-0.17135777,-0.11749077,0.53893334,0.3342016,-0.4877644,-0.184188,-0.2193125,0.03249379,0.27360585,-0.052382175,-0.6290192,0.046078876,0.20607863,-0.2851344,0.57390624,-0.41289604,0.048923947,-0.119169705,0.3542793,0.28248355,0.29617873,0.18096425,-0.05900338,0.0393429,0.06195867,-0.24550363,0.50580525,-0.26749566,0.10450828,-0.12120605,-0.34436753,-0.045385424,-0.4778703,-0.46629885,-0.71707684,0.27197495,-0.89434856,0.5196085,0.25039533,-0.3194655,0.15748405,0.07759399,0.19358745,-0.36476767,-0.05310691,0.052213855,-0.098693624,0.019734355,-0.30773014,-0.31843635,-0.4165084,-0.49007756,-0.13875778,-0.4093161,-0.16647547,-0.3052785,-0.0045019365,-0.39012522,-0.089926496,-0.116903774,0.5342254,-0.45699978,-0.02640794,0.4152555,-0.18543682,0.39480397,-0.58371663,-0.21204534,-0.13529688,0.2821151,-0.056220733,-0.36562237,0.1985444,0.42430422,0.53024304,-0.018836495,-0.16814055,-0.36485583,-0.029041748,0.0781734,0.47851804,-0.22706956,-0.6166188,-0.09918526,0.05971634,0.05216778,0.5098703,0.16537362,-0.31881827,-0.07676099,0.16968432,-0.10208864,0.39930993,0.5080103,-0.35252082,-0.2204849,0.23957556,0.52490926,0.16292642,-0.063995086,0.10065953,0.069040194,-0.58264107,-0.28273553,-0.10316087,-0.17924482,0.63632715,-0.19842938,0.22589475,0.7206905,-0.018995551,-0.066015,0.12282574,0.01944131,-0.27242202,-0.39113924,-0.24275324,0.36194164,-0.40172094,0.32103285,0.019869713,0.54119426,0.13128844,-0.5731299,0.41107506,-0.5756596,0.21945761,-0.17006506,0.5288034,0.64873344,0.45536894,0.49588087,0.75600564,-0.47532484,0.09109373,-0.04672012,-0.41067123,0.14210254,-0.18334803,0.034489453,-0.6126426,0.07982775,-0.054660317,-0.039975174,0.16619395,0.5626576,-0.5764941,-0.19011639,0.33524036,0.9690076,-0.27372393,-0.069451496,0.6174165,0.9364602,0.9207083,-0.058341164,1.0193288,0.18147534,-0.21775898,0.33515948,-0.0983572,-0.80105823,0.31118584,0.40150654,-0.024188958,0.3293603,0.09903783,-0.026783235,0.53834623,-0.31841767,0.058183488,-0.24143904,-0.04909151,0.101540335,-0.22978471,-0.6075107,-0.09507605,-0.2334861,0.044791423,0.020232888,0.22701357,-0.08641493,0.44814286,-0.11599995,2.0274906,-0.05922713,0.0688789,0.19516547,0.42732474,0.32655475,-0.18349019,0.054796807,0.51479244,0.3275897,0.33865267,-0.60706407,0.16458684,-0.16443266,-0.49396074,-0.114447266,-0.4215008,-0.05082844,-0.060935095,-0.568064,-0.13781498,-0.2426421,-0.286475,0.32790822,-2.7546103,-0.21004501,-0.090843566,0.35509446,-0.2758399,-0.3269815,-0.13314106,-0.34334883,0.37523544,0.34896865,0.53445745,-0.73151696,0.41409165,0.50009906,-0.58845204,-0.032576744,-0.5996839,-0.03168152,-0.12573245,0.3740161,0.06920015,-0.07811893,0.11642417,0.20511283,0.5997671,0.075629964,0.18153588,0.27348235,0.5532155,-0.103673935,0.55144596,-0.10103389,0.5036264,-0.3558749,-0.23967141,0.30445737,-0.17179929,0.25510347,-0.046037234,0.07223034,0.49281794,-0.49752,-0.9832887,-0.6725736,0.002781822,0.9518646,-0.27758348,-0.45660907,0.33222404,-0.7954979,-0.3483135,-0.16670173,0.48819253,-0.02350278,0.015643211,-0.8493216,0.1326548,-0.010688094,-0.013149181,0.12314635,-0.26020622,-0.47305056,0.7691039,0.06742646,0.6715289,0.46661213,0.060728893,-0.18928741,-0.402828,-0.02419426,0.6805996,0.2713438,0.20585023,-0.23493487,-0.106977545,-0.23749505,0.12924708,0.10288363,0.63054776,0.6141597,-0.1168974,0.116926834,0.33447745,0.13878216,0.033179477,-0.20563188,-0.27870184,-0.10155581,0.06710784,0.48433816,0.7722304,-0.39225256,0.3151628,0.052878816,0.44787347,-0.19125997,-0.39140505,0.44640762,1.3449895,-0.14318784,-0.32745817,0.59377164,0.67825836,-0.3758127,0.44350603,-0.63202196,-0.07221976,0.36916283,-0.14844273,-0.46047214,0.18391432,-0.329476,0.17874679,-0.87695575,0.106050655,-0.18422739,-0.4873796,-0.54609495,-0.15989791,-3.670752,0.35610005,-0.47338417,-0.1715076,-0.11123168,-0.053502798,0.2425172,-0.8249896,-0.6028534,0.23557593,0.08678392,0.6372403,-0.10273683,0.09138993,-0.32318088,-0.3329508,-0.14629048,0.08977067,-0.0699871,0.34636277,0.0011575704,-0.5837779,-0.17477496,0.04676167,-0.4293366,0.046615515,-0.67565346,-0.41902086,-0.16603822,-0.5898785,-0.28934175,0.6115376,-0.099813476,-0.012782903,-0.24058954,0.087550886,-0.20773485,0.17528701,0.05706998,0.2170309,-0.06351804,-0.05751011,0.0974765,-0.19041671,0.1619946,-0.118957706,0.34884322,0.11420877,-0.14745116,0.15210357,0.5670663,0.6698047,-0.12284879,0.9110741,0.6876714,-0.089319855,0.25618207,-0.22766607,-0.29984763,-0.7032703,-0.45250505,0.029312309,-0.43634966,-0.5573033,0.0059910463,-0.48698857,-0.7969002,0.5993055,0.08902684,0.46823904,0.15206239,0.14276837,0.8073958,-0.35174942,-0.025259487,0.11200522,-0.2178352,-0.7047877,-0.12401521,-0.59163797,-0.4539405,0.27125308,0.8459395,-0.39716038,0.08818383,0.19296104,-0.3059146,-0.09729429,0.27022123,0.03374842,0.3530032,0.5385119,-0.20917676,-0.6209746,0.46044156,-0.13880095,-0.27626488,-0.570221,0.21221855,0.5569835,-0.6973076,0.86411035,0.33895344,0.02234144,-0.31248057,-0.617419,-0.32263178,-0.03197681,-0.14867224,0.52622306,0.39583018,-0.7612771,0.3043554,0.4870278,-0.22436072,-0.59877354,0.69358605,-0.21158305,-0.44373623,-0.055066563,0.29228643,0.06792252,0.032773938,-0.08034165,0.21858606,-0.3324381,0.22507375,0.29056448,-0.08354061,0.15887019,-0.15916872,0.0864249,-0.9217899,-0.090830095,-0.5701299,-0.24738382,0.48606822,0.062207684,0.14435554,0.0031410365,-0.08232935,0.34246257,-0.28124592,0.17186238,-0.048318386,-0.31586328,0.4894838,0.429717,0.41583538,-0.46980947,0.6233887,-0.028556285,-0.14947326,-0.031886406,0.20045647,0.31846735,0.124712415,0.6255132,-0.09450846,-0.3096058,0.29082045,0.9251508,0.1627654,0.47749618,0.16162124,0.0552455,0.19891691,0.14350377,0.17830667,-0.17188014,-0.66132516,0.088470496,-0.30209282,0.20259558,0.4916046,0.13405196,0.23337705,-0.12280385,-0.3662798,0.048080675,0.33032468,0.22759582,-1.2574946,0.3447532,0.26282254,0.8505213,0.40816957,0.084775135,-0.23069239,0.6211328,-0.07777733,0.115986936,0.44666064,-0.1139034,-0.54071736,0.5072407,-0.6754601,0.36511853,-0.011701245,-0.014072462,-0.08684129,-0.04746484,0.4332325,0.6729318,-0.13486372,-0.068760276,-0.022886693,-0.3499495,0.2828934,-0.4675654,-0.13579756,-0.5378765,-0.40608293,0.5449064,0.78807837,0.4450418,-0.19364189,-0.04216434,0.15869012,-0.041231778,0.1296259,0.102382295,0.12443003,-0.123550646,-0.89134634,-0.08171498,0.4768494,0.112914816,0.25848812,-0.15351701,-0.33975747,0.46417516,-0.112073176,-0.07856072,-0.047300227,-0.665728,0.10800497,-0.34134233,-0.71995485,0.717507,0.058917757,0.26827767,0.15396073,0.10679034,-0.24218623,0.4636685,-0.3746874,0.97287136,-0.06372348,-0.017961867,-0.55179787,0.12849024,0.14134179,-0.17649491,-0.13092189,-0.440272,0.13583821,-0.5246581,0.44778156,0.23710376,-0.3179294,0.01350766,-0.11042762,-0.03156176,0.61017525,-0.2213602,-0.28892013,-0.32256678,-0.16692811,-0.45430803,-0.41940865,-0.035254154,0.42093235,-0.06459259,0.23016572,-0.17669359,0.00350545,-0.11633066,0.44581223,-0.040710468,0.30633807,0.36730605,0.0773203,-0.01879759,-0.1852673,0.3604091,0.5131099,0.0068929195,-0.27343866,-0.19571796,-0.6089812,-0.34975228,-0.20728779,0.00779814,0.57804734,0.10431482,-0.098045945,0.7440134,-0.06576232,1.2585021,0.0897437,-0.41292554,0.07358035,0.5795949,0.07712368,-0.084717736,-0.21830925,0.89478105,0.5479631,-0.06452417,-0.10812323,-0.39154243,-0.042235468,0.13714743,-0.18758273,-0.067625605,0.08278545,-0.67871845,-0.13913016,0.23482727,0.2132323,0.43682215,-0.16082446,0.21339424,0.25474435,-0.04568595,0.110805914,-0.29837573,-0.52086455,0.21489531,0.20655005,-0.020982128,-0.00407406,-0.5490788,0.41326973,-0.37841046,0.025618719,-0.45762652,0.23741688,-0.3973101,-0.26101607,0.2615713,-0.1941563,0.374708,-0.35365263,-0.19890216,-0.18735504,0.4876054,0.22238418,0.00089582114,0.5688054,-0.23206645,0.058252115,0.15751791,0.55354947,0.97764075,-0.2283799,-0.15102042,0.41107166,-0.48252133,-0.7414694,0.28036305,-0.36973417,0.1662365,0.11460801,-0.2477975,-0.61884874,0.27189717,0.12078988,-0.13021839,0.06007981,-0.69891196,-0.14514813,0.18392414,-0.278703,-0.12096931,-0.34436196,0.15138301,0.5472206,-0.2978175,-0.42683047,0.012438893,0.086190745,-0.03280225,-0.52227837,0.11404657,-0.336613,0.32730025,0.039020777,-0.39790398,-0.029686403,-0.11742568,-0.46314505,0.335041,0.15792862,-0.31598037,0.18615168,-0.47376788,-0.37185335,1.1296184,-0.24712637,0.13964795,-0.47296804,-0.39192492,-0.74796414,-0.36598638,0.53740203,-0.07781879,0.05370017,-0.6284374,0.23797677,0.092324175,-0.0929877,-0.27393934,-0.16452481,0.55227864,0.014937251,0.51797915,-0.06430593,-0.7455844,0.27292663,0.12631558,-0.18173434,-0.61901575,0.61313206,-0.17300926,0.9038601,-0.019132454,0.23371062,0.33369252,-0.4632872,-0.16676722,-0.25699636,-0.27210146,-0.71020406,-0.30196276 +292,0.4101085,-0.08386782,-0.71483123,-0.15929025,-0.30844682,-0.27902377,-0.13450077,0.665981,0.24781157,-0.5156882,-0.18144679,0.06700843,-0.18596873,0.36659792,-0.2842731,-0.7932115,-0.038502462,0.11573196,-0.26266772,0.6071806,-0.30899513,0.16705693,-0.21087784,0.55188364,0.36024508,0.23167755,-0.019967245,0.1754573,-0.13753092,-0.24520141,0.0551518,0.45236668,-0.4687908,0.2663204,-0.3108888,-0.32598093,0.027551128,-0.31539994,-0.28766665,-0.8120555,0.24360943,-0.56196356,0.48160756,0.09472447,-0.39983594,-0.004745699,0.3176689,0.18917267,-0.06696611,-0.32408667,0.11455668,-0.13250338,-0.054483216,-0.2928281,-0.3126867,-0.50494504,-0.5732498,0.046308763,-0.5421269,-0.01573873,-0.10401139,0.23177655,-0.37326843,-0.20085883,-0.012450048,0.77918106,-0.32595417,-0.135893,0.34905162,-0.12460195,0.23684572,-0.77889323,-0.22643515,-0.094210744,0.04823504,-0.04964833,-0.2336913,0.45181173,-0.023219535,0.34029454,0.0019263304,-0.3995682,-0.32483414,-0.043737706,0.29770344,0.22633092,-0.5000325,-0.50334233,-0.18259811,0.020444999,0.40019163,0.3124625,0.17862111,-0.1737937,0.10915823,0.026702939,0.016293893,0.6789725,0.66181755,-0.052366395,-0.074538775,0.10224126,0.50266147,0.4176866,-0.14778955,-0.16658404,-0.01573564,-0.5760331,-0.26216272,-0.0068057547,-0.122592956,0.34692776,-0.03238741,0.22101879,0.60225683,-0.03701125,-0.0021172785,0.12874144,0.15663515,0.23566347,-0.69696516,-0.21653393,0.3863022,-0.5214144,0.3178944,-0.27385092,0.70680845,0.025192587,-0.64379436,0.22569281,-0.5847894,0.1893321,0.045024652,0.5574591,0.6781074,0.49815032,0.29663256,0.79232633,-0.32089323,0.07190239,-0.027581105,-0.12942336,0.17084596,-0.28766128,-0.052086428,-0.44802144,-0.03105732,-0.16819352,-0.0015027982,0.25210664,0.22098897,-0.7433437,-0.29439318,0.31936413,0.90404314,-0.09660693,0.015640497,0.7650352,1.0795808,1.0816462,-0.106549785,0.982953,-0.17918505,-0.17414588,0.067726776,0.04970663,-0.6660966,0.24043958,0.38412204,-0.454193,0.35519755,-0.15451714,0.009077609,0.58970034,-0.51333165,-0.2286513,-0.1938635,0.57327133,0.007638647,-0.13925365,-0.63316524,-0.16099998,-0.052194413,-0.033888273,0.09783876,0.42588705,-0.14594024,0.4778206,-0.17161533,1.0873382,-0.16410057,0.15988772,0.30947372,0.38435158,0.35692808,-0.18691467,0.12819894,0.24182765,0.04554589,0.23560905,-0.4458726,0.17291282,-0.36733297,-0.43723205,-0.0054361476,-0.38797548,-0.14871508,-0.009372483,-0.41761154,-0.24504651,-0.12373945,-0.24695174,0.37777236,-2.6040518,-0.030227194,-0.07920293,0.21576688,-0.2209014,-0.45079973,-0.11569198,-0.37442273,0.6707345,0.16607842,0.5658958,-0.3592073,0.09618639,0.50027996,-0.62390274,0.036163148,-0.56734854,-0.20497777,0.047843806,0.45165512,0.19638537,-0.14619729,0.038171988,0.17043048,0.5667876,0.14548367,0.08907983,0.31262457,0.30935624,-0.4455066,0.39744267,-0.15739232,0.46827748,-0.513408,-0.29851893,0.349494,-0.52544415,0.35445315,-0.20244649,0.14777614,0.55711883,-0.4533823,-0.9646451,-0.381676,-0.20606199,1.2056547,-0.0021171868,-0.49965975,0.2042451,-0.39074296,-0.16912279,-0.17081125,0.56293774,-0.08084442,0.06822541,-0.6701089,-0.015219056,-0.31539184,0.12831593,-0.08005684,-0.049778815,-0.39073378,0.62192523,-0.050607927,0.38434336,0.42574942,0.21636519,-0.5480676,-0.47457397,-0.13584386,0.93114716,0.5575577,0.12374522,-0.17290306,-0.21777017,-0.2937804,-0.16247964,0.12257107,0.772261,0.7410307,-0.12981847,-0.025498815,0.41953725,0.06264231,-0.019135058,0.025534473,-0.42088482,-0.3146356,0.040489554,0.70536417,0.7250275,-0.22342187,0.3249717,0.0971636,0.4074611,-0.3217214,-0.37642157,0.38836348,0.9302895,-0.26198816,-0.284793,0.92009395,0.59082913,-0.29287732,0.575314,-0.48686874,-0.43619555,0.49361786,-0.13378286,-0.6039523,0.01953855,-0.3683991,0.028044406,-0.80158234,0.28802294,-0.4933017,-0.5275058,-0.8750924,-0.26752353,-2.0993705,0.25983852,-0.33673775,-0.0029031222,-0.3776584,-0.026357045,0.17466977,-0.6105386,-0.80298316,0.20455883,0.11168489,0.78397435,-0.26314276,0.07499424,-0.22199582,-0.49321446,-0.036892686,0.32704604,0.3503316,0.2572323,-0.07297055,-0.29949707,-0.22597107,-0.032426126,-0.54347247,0.07840069,-0.63040394,-0.4920854,-0.14907676,-0.7306954,-0.0028828245,0.77605754,-0.38683012,-0.0007144648,-0.1403537,0.17223804,0.16711141,-0.02943878,0.077595785,0.4456262,0.2846767,-0.14843231,0.13081194,-0.23198606,0.17535207,0.11210069,0.5702954,0.2683862,-0.1074491,0.26929742,0.6942764,0.8763325,-0.2127452,0.96922696,0.42272323,-0.086983114,0.34746283,-0.21871747,-0.52539706,-0.5993724,-0.24277812,0.31982532,-0.37750986,-0.27294773,0.02323421,-0.4167042,-0.8815174,0.8083879,-0.0013243601,0.3793783,-0.35968685,0.10256314,0.5106531,-0.33813602,-0.2782765,-0.082095236,-0.06294438,-0.5739268,-0.22345556,-0.65955776,-0.53506345,-0.089019924,1.0324728,-0.20959122,0.06125508,0.34546104,-0.20840576,0.052586243,0.10555871,-0.08392877,-0.11626128,0.30712733,0.39337698,-0.584907,0.4209754,-0.06406182,-0.052589595,-0.46287614,0.41219595,0.653964,-0.46365303,0.63296664,0.46966082,-0.07158379,-0.33870518,-0.83182216,0.0030960029,0.13970572,0.0017349606,0.45528713,0.38254526,-0.68728167,0.4564547,0.28926915,-0.25847304,-0.7606713,0.44240555,-0.15747143,-0.060972605,-0.13836266,0.46930382,0.106994405,-0.100462876,-0.067874976,0.4331813,-0.1582286,0.2697227,0.28759187,-0.15197513,0.26728767,-0.24878278,-0.15088429,-0.8855436,0.21477996,-0.7801913,-0.3078118,0.49510786,-0.17589952,-0.16573285,0.08196019,0.15860708,0.31020495,-0.28792825,0.17149065,-0.21982503,-0.43699884,0.48377207,0.5723276,0.6970918,-0.5631107,0.6272759,0.21358848,-0.13245025,0.14398283,0.11562505,0.5144334,-0.14051196,0.510375,-0.15717782,0.041304525,0.076695226,0.77153504,0.09323859,0.27647257,0.042705655,-0.048584882,0.065441065,0.040637158,0.12506431,0.0009904412,-0.67352957,0.14622645,-0.15808432,0.0019400395,0.53907895,0.06576773,0.37298316,0.07807851,-0.2649854,0.0271361,0.21129225,0.0512929,-1.6267827,0.62716305,0.11978963,0.94610095,0.35864884,0.3677216,-0.09265333,0.6558355,-0.0033328992,0.09376569,0.45745605,0.081559785,-0.3390074,0.57548684,-0.6253301,0.5177995,0.027159167,0.074622035,-0.07801211,-0.041891262,0.6759068,0.66257584,-0.15927841,0.010436039,-0.030181656,-0.21792556,0.2926454,-0.40582463,0.14197376,-0.29426476,-0.44769844,0.48358727,0.5191587,0.28179744,-0.28376165,-0.0052413503,0.31082284,-0.14185432,0.21544434,-0.21538518,0.029108705,0.008360473,-0.44945204,-0.16839688,0.40100092,-0.09681462,0.13837932,-0.09782501,-0.08277582,0.23541087,-0.024730848,-0.08559182,-0.10625581,-0.56172854,0.087741815,-0.47850564,-0.5459341,0.40559238,-0.33006757,0.095316805,0.12917247,0.10048525,-0.32368648,0.57167333,-0.09935338,0.73985827,-0.17059647,-0.27907574,-0.26536885,0.26809266,0.02672964,-0.3426119,0.046927627,-0.35886997,0.24897161,-0.4092982,0.44368282,-0.18967412,-0.3825064,-0.077684626,-0.16980185,-0.0681485,0.4322925,-0.07384983,-0.17622541,-0.26463774,-0.32771856,-0.14941801,-0.41495323,-0.104974896,0.17775601,-0.16206712,0.08914984,-0.20514867,-0.1916725,-0.17301625,0.24260893,-0.049479213,0.24220607,0.43079332,0.20360833,-0.32113376,0.055673238,0.29206556,0.54483414,0.048732284,-0.009359328,-0.28775522,-0.3546952,-0.63897353,0.30848196,-0.256079,0.42903966,0.19296408,-0.14076184,0.7402125,0.043845877,1.3188447,-0.17332163,-0.42069575,0.026768826,0.46719533,-0.14800993,-0.090423636,-0.31011006,1.1132929,0.36307862,-0.20863964,0.06571795,-0.46198523,0.21419892,0.2500448,-0.28715116,-0.17380235,-0.06810014,-0.5185785,-0.22911538,0.27095148,0.3913544,0.28744608,-0.3803876,-0.1398261,0.2991189,0.1817355,0.21627066,-0.4177706,-0.013094801,0.23409599,0.21963432,-0.10714375,0.11979437,-0.4707993,0.3258204,-0.55754393,0.2851481,-0.46512458,0.22726609,-0.2746126,-0.5378346,0.17409915,-0.24440071,0.45512727,-0.39757472,-0.23648432,-0.14107545,0.24850768,0.23784758,0.040311333,0.55444264,-0.30757388,-0.013330019,0.14996468,0.603869,0.9357062,-0.28406987,-0.12937742,0.072769836,-0.31500202,-0.68736064,0.0686772,-0.43599904,0.0988088,-0.19631192,-0.43093857,-0.58565384,0.10636515,0.10890383,-0.028864585,-0.07691641,-0.75206935,-0.075310804,-0.05767515,-0.27827638,-0.15870622,-0.35016662,0.01047614,0.48811564,-0.12853338,-0.4806879,0.12559171,0.10670462,0.025561452,-0.5828661,0.15026939,-0.3483198,0.19549306,-0.0029002337,-0.5014972,-0.11986054,-0.13108908,-0.5268484,0.14681828,0.04063807,-0.2506537,-0.07992231,-0.04405725,0.10035995,0.8539661,-0.11746339,0.40473545,-0.30906928,-0.5281786,-0.82473904,-0.3247267,0.18218097,0.11982142,0.10907045,-0.8393192,0.062099006,-0.3087712,0.0905654,-0.15652053,-0.14314505,0.23433487,0.14620078,0.5260712,-0.3881245,-0.75117373,0.4107002,0.26061094,0.0041825953,-0.47510883,0.42413384,-0.054891907,0.83003515,0.08736898,0.024955966,0.16070755,-0.5437848,0.054953463,-0.19113564,-0.27330166,-0.53066623,0.20248541 +293,0.28159493,-0.09008052,-0.35851988,-0.21859573,-0.10078015,0.23898748,-0.18357746,0.3516666,0.09668987,-0.56820714,-0.019168606,-0.1278969,0.1164482,0.3507708,-0.24197449,-0.5357297,0.120787084,0.047414757,-0.37454623,0.15120907,-0.5220246,0.22927365,0.003119605,0.20816305,-0.0006581332,0.1628466,0.27488083,-0.25984448,-0.15970114,-0.30271927,-0.19240855,0.18072847,-0.5028818,0.06531618,-0.04432589,-0.17477274,0.14285776,-0.48105127,-0.5013755,-0.5970926,0.27828833,-0.91347283,0.62874633,0.00090426207,-0.10880363,0.38980743,0.093047164,0.0608647,-0.15490015,0.07567094,0.18637218,-0.2744761,-0.106384926,-0.028374646,-0.4067927,-0.56203526,-0.6306978,0.045597296,-0.52056354,-0.12944305,-0.40047255,0.14671738,-0.33881783,-0.05925181,-0.19373994,0.31669328,-0.2995933,-0.18483952,0.13360766,-0.16188143,0.35010123,-0.5831303,-0.21922424,0.1259298,0.26989725,-0.14875256,-0.049837563,0.2915499,0.28474465,0.5406626,-0.0038598967,-0.2557019,-0.309359,0.018738836,0.12141699,0.66684437,-0.19519925,-0.458381,-0.13882552,-0.008974472,0.166322,0.3088984,0.08747179,-0.28275964,-0.18722706,0.28707513,-0.3818756,0.427995,0.58662933,-0.405123,-0.16522779,0.45351568,0.20728591,0.13441911,-0.013877236,0.008022721,-0.014260556,-0.6051206,-0.16549538,0.22904478,-0.08895826,0.5286153,-0.12083026,0.44143218,0.6807102,-0.10177684,0.1600986,0.1261937,0.0046893912,-0.058544833,-0.143206,-0.07099415,0.12402581,-0.52669615,0.16951783,-0.26434568,0.8973502,0.1302907,-0.78422123,0.45248127,-0.4042398,0.107982114,-0.115800224,0.47726837,0.48542595,0.4724919,0.1539775,0.7567247,-0.63907725,-0.04376089,0.060177367,-0.4872165,0.13517565,0.025250385,0.10182587,-0.39450955,-0.07508711,0.17736228,0.14818919,-0.09019042,0.4200762,-0.4413816,-0.07643998,0.19283223,0.83031553,-0.31757173,-0.076601684,0.5540642,1.0984724,0.8946497,0.049140964,1.254482,0.20022568,-0.104009405,0.11268098,-0.11980418,-0.68723506,0.31014326,0.40477154,0.22942089,0.16366927,0.08687939,-0.050343554,0.3734261,-0.29195827,-0.11448509,-0.24029104,0.26575536,0.13110422,-0.21113935,-0.41911158,-0.26900706,0.0051169395,-0.08042187,0.26862928,0.10690861,-0.12177974,0.24082412,0.088424526,1.4361693,-0.15254669,0.1810743,0.0775616,0.55343276,0.17528065,0.09232623,0.041913185,0.16697733,0.4881063,-0.015613275,-0.57971424,-0.13033918,-0.23868275,-0.5025602,-0.124535285,-0.3012991,-0.1366492,-0.04695389,-0.46447513,-0.17720489,0.034138154,-0.43791193,0.73673683,-2.8819296,-0.10894305,-0.19264719,0.46314567,-0.22694276,-0.36805624,-0.054473843,-0.47802782,0.68227875,0.35112837,0.41383025,-0.6185179,0.43797466,0.4703009,-0.23008525,-0.1661167,-0.7749143,-0.04395271,-0.05057172,0.23813546,0.12573239,-0.33309975,-0.14853965,0.040322166,0.5594502,0.050457064,0.047506742,0.1467336,0.3885239,0.0024534464,0.52157307,-0.07397159,0.57425886,-0.2131667,-0.031336162,0.20886435,-0.3826352,0.30008307,-0.16429043,0.22180167,0.35037965,-0.29533592,-0.81300557,-0.5851313,-0.35586438,1.182286,-0.1305394,-0.3572171,0.3558516,0.017574744,-0.28870004,0.036054287,0.46811506,-0.1655879,0.011654821,-0.61834323,0.029440213,-0.093197025,0.075667806,-0.12590034,0.11825864,-0.5521257,0.72774726,-0.18843417,0.48767924,0.27689156,0.28918192,-0.21117125,-0.3819138,-0.1336442,0.77149,0.29592016,0.07653821,-0.172819,-0.27016824,-0.19288097,-0.27662948,0.025862062,0.50153816,0.7552768,0.0735405,-0.014104477,0.22639771,0.016623374,0.017674077,-0.07445582,-0.34109685,-0.12797607,-0.14758042,0.62788314,0.3794501,-0.08001893,0.34908107,-0.2253935,0.20848104,-0.32028988,-0.3933101,0.5169257,0.56216973,-0.21678734,-0.1866807,0.5380441,0.35748428,-0.17215298,0.33532792,-0.704012,-0.38423726,0.57617587,-0.24118617,-0.5670281,0.08663372,-0.23493831,-0.059201177,-0.81580955,0.44260755,-0.21581472,-0.6529433,-0.27505523,-0.26076037,-3.9576268,-0.001063878,-0.28487897,-0.16662642,-0.15573423,-0.19911538,0.3131079,-0.5132001,-0.3652002,0.11435998,-0.049233735,0.55269516,0.09612893,0.094597384,-0.32861423,-0.016824761,-0.46845165,0.20649482,-0.08630215,0.2452676,0.06188928,-0.20308979,0.1953109,-0.3187576,-0.5418849,0.15770392,-0.6512435,-0.40493384,-0.13433294,-0.40685442,-0.4300765,0.69944984,-0.41348234,0.10264344,-0.3318487,0.15425776,-0.33946735,0.47306064,0.08280705,0.15274382,-0.115098976,-0.14520833,0.07112529,-0.3128939,0.4343597,0.037403848,0.38637713,0.44481784,-0.1657233,-0.04231255,0.42131805,0.54437196,-0.008756825,0.8042405,0.28345123,0.012635767,0.3697048,-0.24429901,-0.23280147,-0.5063557,-0.47941834,0.18935147,-0.3851095,-0.37764832,-0.2144657,-0.28090936,-0.62469834,0.39832634,0.029927135,0.20054182,-0.063236274,0.069307394,0.39663714,-0.15228476,-0.06045092,0.080770895,-0.008482941,-0.33507124,-0.25994736,-0.6723104,-0.4723104,-0.0018891181,0.7402555,0.019478107,-0.16919883,0.072154514,-0.19969606,0.09432536,-0.047817267,0.102845386,0.050721783,0.29593238,-0.014854844,-0.81742054,0.44311878,-0.27732217,-0.1352503,-0.647072,0.12403465,0.5496348,-0.5702459,0.59054035,0.443473,0.25978082,-0.10738169,-0.52528965,-0.3117974,-0.12370287,-0.19437993,0.404428,-0.026710808,-1.0040817,0.595565,0.3858962,-0.3406918,-0.4979692,0.45907837,0.0780082,-0.04471161,0.08898073,0.3164452,0.08863737,-0.012602457,0.011625767,0.23439194,-0.6638881,0.48521775,0.32187372,0.14753316,0.57010627,-0.107427895,-0.11324309,-0.45670447,-0.24451229,-0.40877393,-0.12432181,-0.0060533327,-0.04466185,0.12497131,0.15492404,-0.09849975,0.42115492,-0.40830997,0.12672964,0.00946968,-0.19341592,0.34050146,0.4842151,0.3582224,-0.3008688,0.5817066,-0.0019252513,0.020290038,0.035262804,0.05190434,0.53376156,0.22101323,0.29383233,-0.13406713,-0.21779068,0.23111169,0.8832313,0.12255459,0.49921027,0.21257319,-0.1400472,0.23456414,0.10648275,0.052815277,0.17411225,-0.44803324,-0.09862779,-0.117552586,0.07305263,0.4904871,0.09160062,0.27864915,-0.09359776,-0.08777741,-0.034111984,0.11027121,-0.15395604,-1.0430405,0.3748143,0.12796481,0.70518607,0.20298554,-0.063527055,-0.06140862,0.61267394,-0.08260205,0.0865683,0.17917177,0.09500033,-0.566915,0.63236696,-0.57716423,0.34144622,-0.12660518,-0.07025321,0.022887895,0.06728102,0.33442068,0.8617431,-0.13432018,0.07911412,-0.08034929,-0.30619553,0.3347652,-0.3002247,0.18405107,-0.3145619,-0.15302838,0.606638,0.46027136,0.38173747,-0.17100349,-0.116270594,0.06834028,-0.09395611,-0.005945844,0.009307138,0.07530505,-0.14232664,-0.6948666,-0.3677426,0.41769674,0.19628641,0.19745357,0.10172141,-0.30410868,0.2645521,-0.33821052,-0.007836009,-0.03744602,-0.66390115,-0.033902735,-0.255725,-0.4884103,0.06407445,-0.22347435,0.30104575,0.2445388,0.03918148,-0.11303656,0.22581883,0.26757917,0.8502823,-0.065813035,-0.2340513,-0.5651774,-0.18371223,0.19380221,-0.2459211,-0.1685284,-0.31863362,-0.11587211,-0.59024537,0.1809326,-0.124523364,-0.11046847,0.37354198,-0.18331674,-0.049408674,0.5823804,-0.2403181,0.009062929,0.017719997,0.0053043193,-0.17012219,-0.13549812,-0.07277884,0.13978282,0.14212601,-0.0649911,-0.03183334,-0.18295597,-0.123145275,0.25505295,0.18427214,0.28308755,0.46825314,0.16393313,-0.32718673,-0.24234952,0.056115743,0.6532022,0.118226536,-0.05754108,-0.32717386,-0.51398444,-0.21747205,0.14578208,-0.10151972,0.26511246,-0.007017312,-0.30785307,0.59882355,-0.09615673,0.98359096,0.15641172,-0.32116106,-0.058487836,0.63857454,0.03472957,0.031402882,-0.3772624,0.82751364,0.4320615,0.025377512,-0.0844715,-0.3642068,-0.056342877,0.34224898,-0.29740575,-0.19224122,-0.1782392,-0.7390518,-0.2573679,0.2500554,0.11592059,0.093617186,0.032981582,-0.06013627,0.30659795,0.15659787,0.5810541,-0.57502204,-0.0569784,0.2816394,0.28021207,0.028255804,0.21593009,-0.38150004,0.31791434,-0.52768487,0.12078724,-0.23236938,0.1083781,-0.08306318,-0.10263574,0.31005576,0.004593747,0.4437932,-0.1572891,-0.36286116,0.09740623,0.42327628,0.22792499,0.31828958,0.69301844,-0.12224346,-0.067615405,0.04438894,0.61223215,1.1193997,-0.16454005,0.1971518,0.57772404,-0.28916326,-0.69031906,0.30040187,-0.3368182,0.12303931,-0.08645504,-0.23538947,-0.2150272,0.29614273,0.29217187,-0.0049091107,0.16713245,-0.526344,-0.40374848,0.49994668,-0.21093185,-0.23787113,-0.3483306,0.16056572,0.6515413,-0.29694393,-0.049743406,0.03226674,0.36464277,-0.15899189,-0.5570212,0.11822719,-0.33183494,0.3177788,0.06884616,-0.33749261,-0.04174963,-0.13865288,-0.3731542,0.24424338,0.055614945,-0.39405584,0.070377536,-0.19133507,-0.04234932,0.6644951,-0.13782038,0.10584477,-0.83728284,-0.4341419,-0.8475522,-0.401465,0.24365583,0.15210922,-0.13151179,-0.36371145,-0.18200795,0.06965122,-0.00011745521,-0.05445722,-0.40836263,0.35044903,0.040066738,0.44681388,-0.021000383,-0.5412161,-0.015513952,0.026568536,-0.25040138,-0.38917205,0.65636665,-0.21858136,0.7423674,0.09723462,0.0909271,0.10189156,-0.41505864,0.16337214,-0.25621024,-0.18487266,-0.71364087,0.12533066 +294,0.36213425,-0.025023798,-0.6125385,0.030315168,-0.057006586,0.026233843,-0.20279877,0.5108591,0.20497286,-0.32808903,-0.23116125,-0.2778111,0.04844464,0.44041443,-0.11664486,-0.3838496,-0.07991357,0.32980892,-0.52863485,0.5124971,-0.20876946,0.23950414,-0.091928184,0.4877378,0.09685429,0.25408563,-0.09318837,0.055930395,-0.24676658,-0.18850736,-0.05439983,0.39539894,-0.5308067,0.096891165,-0.19879349,-0.32880896,0.0053257844,-0.50134367,-0.32699716,-0.688859,0.2743464,-0.74520713,0.63600206,0.124800585,-0.18279944,0.19478838,0.1778117,0.3883128,-0.16040388,-0.1028006,0.2994277,-0.14462319,-0.031992476,-0.40977958,-0.33368912,-0.23813398,-0.47603187,-0.08805579,-0.46335253,-0.26525745,-0.23128824,0.16538681,-0.18680614,-0.028630866,0.09213972,0.3207161,-0.44037285,0.18624265,0.11468016,-0.103935815,0.34404936,-0.5329456,-0.23134471,-0.12230843,0.37841406,-0.35924956,-0.2032044,0.17783071,0.25994003,0.28467295,-0.25674653,0.048267733,-0.36411795,-0.050536763,0.26439154,0.5437487,-0.41403535,-0.41722456,0.010407339,0.1662638,0.12313682,0.45112,0.20223506,-0.33948848,-0.07447171,-0.0737808,-0.060993407,0.35624528,0.41034842,-0.21379153,-0.079823546,0.33848596,0.5519453,0.33871865,-0.09625453,-0.008843586,0.043043543,-0.4589095,-0.108082,-0.1535734,-0.3027533,0.6113833,0.03655002,0.23931503,0.5663884,-0.03552664,-0.14578204,-0.040986706,0.11052712,-0.10874626,-0.20373367,-0.2351817,0.24891119,-0.23501001,0.35766825,0.11610401,0.49435365,0.14906214,-0.7770235,0.388701,-0.6855611,0.0386188,-0.06621314,0.38147542,0.5951732,0.43827143,0.38320994,0.5959094,-0.46801722,0.12717576,-0.04359022,-0.24562299,-0.024518067,-0.0787713,-0.18123119,-0.64620644,-0.0138757825,-0.06651145,-0.19922882,0.46878502,0.3707501,-0.5584194,-0.040201288,0.19554198,0.9257706,-0.2866881,-0.13066457,0.72338945,1.0845336,0.7276039,0.027306026,1.0319772,0.110420674,-0.3124196,0.16852821,-0.13821821,-0.7814062,0.2508625,0.43547344,-0.85584116,0.34309983,0.25126985,0.07278207,0.3941444,-0.41010913,-0.031503145,-0.14198433,-0.04264742,0.04760563,-0.29816598,-0.34931004,-0.063040435,-0.18740012,-0.083756484,-0.054154824,0.24161403,-0.19751735,0.45934466,-0.027145743,2.0427659,0.025609931,0.08539465,0.07167317,0.22278975,0.27830568,-0.092787564,-0.25562742,0.6130097,0.23363344,0.16893263,-0.3274961,0.15239665,-0.15838677,-0.41808572,-0.09280467,-0.17483531,-0.035410088,0.069929264,-0.31367114,-0.10946459,-0.19726764,-0.19513857,0.5006922,-2.8443334,-0.11860707,-0.007016164,0.4098439,-0.1760261,-0.40415642,-0.1890117,-0.2126594,0.5100987,0.24949999,0.4849491,-0.51541895,0.1416067,0.31207064,-0.52093786,-0.28550532,-0.37652317,-0.008868356,0.14152388,0.18121254,-0.15024638,-0.067906596,0.1357545,0.06137689,0.34150365,-0.11599102,0.10693041,0.42604813,0.47048903,-0.029405525,0.4500433,-0.21488185,0.64519614,-0.1770041,-0.3933176,0.28036258,-0.2899467,0.30636445,0.037838295,0.121150404,0.410398,-0.3768648,-0.838732,-0.6160498,-0.12649114,1.0385869,-0.122324966,-0.33922994,0.19346993,-0.31286874,-0.36524057,-0.049975365,0.47166622,-0.12921312,-0.09591917,-0.9506166,-0.008587167,-0.020716354,0.19840266,0.055876303,-0.12226844,-0.45767453,0.51733387,-0.07067751,0.45554307,0.5019544,0.06355517,-0.35700056,-0.46161738,-0.0059138336,0.88789654,0.37296817,0.16199715,-0.12966889,-0.19757552,-0.4280952,-0.06975755,0.10183453,0.52937,0.6066912,-0.100693196,0.08077661,0.30036572,0.07711553,-0.037771363,-0.26965067,-0.2796694,0.066672795,0.019857025,0.40412995,0.6213373,-0.16129227,0.64533037,0.063681975,0.2196659,-0.045734685,-0.3438184,0.38743994,1.061439,-0.18981218,-0.43563685,0.5508645,0.28976312,-0.32128713,0.36851916,-0.42601606,-0.13845198,0.46612182,-0.09269019,-0.46233097,0.37266245,-0.22127531,0.12085789,-0.97785956,0.1411899,-0.2102798,-0.4077294,-0.57660955,-0.055042356,-2.9334514,0.16978948,-0.27862057,-0.2552709,-0.0795021,-0.13713907,0.025260257,-0.6026558,-0.73385555,0.106658846,0.03510827,0.48974597,-0.24023867,0.23635082,0.03735051,-0.42181373,-0.02045413,0.26806548,0.21402065,0.3709507,-0.07293615,-0.44856822,-0.3203012,-0.040049512,-0.3460239,-0.033116218,-0.6839648,-0.28073516,-0.09995774,-0.66793555,-0.07029729,0.61519665,-0.5471205,-0.026516952,-0.26767915,0.003742342,-0.019639453,0.1822362,0.2551839,0.22009452,0.11105489,-0.0664233,-0.009415376,-0.22964168,0.22391069,-0.0055348105,0.13846418,0.33888435,-0.092522465,0.37133017,0.32953668,0.79251647,-0.17116499,0.6800485,0.5909753,-0.14537908,0.14764757,-0.5060995,-0.3686773,-0.5367469,-0.3739616,-0.09150859,-0.42065546,-0.63045853,-0.15591767,-0.37228036,-0.80603033,0.5919451,0.056039453,0.07934874,0.10252646,0.3896345,0.52108526,-0.38130116,-0.06252687,-0.03867839,-0.07911753,-0.569758,-0.1569173,-0.47493243,-0.46178517,0.13639738,0.8895766,-0.2572159,0.13874169,0.19765486,-0.2492583,-0.01189061,0.15239482,-0.0066366442,0.16254212,0.43728665,0.016812095,-0.5109717,0.33571923,-0.08610038,-0.2904103,-0.7537609,0.19111876,0.5891676,-0.5876782,0.713427,0.36113557,-0.039528985,-0.11066265,-0.50602853,-0.13902023,-0.03253829,-0.20672745,0.3391362,0.26060343,-0.6284171,0.23962738,0.48591062,-0.29236045,-0.7536254,0.5728495,-0.022206912,-0.38726816,0.08826152,0.28518996,0.04261318,-0.14233917,-0.2846321,0.29515558,-0.19895113,0.27157322,0.20835978,-0.191236,0.14000593,-0.29947442,-0.18537718,-0.87142867,0.38506296,-0.40158084,-0.3498921,0.3894365,0.16176383,0.023513138,0.104168095,0.1917633,0.30306447,-0.47691464,0.14813185,-0.1528871,-0.1654181,0.1166257,0.36946845,0.43211612,-0.45030677,0.47034082,-0.14368518,-0.11960608,-0.027677367,0.17254597,0.5166676,0.01943458,0.28302157,0.14550954,-0.20719473,0.118909426,0.59743077,0.124870636,0.32608962,0.10079479,-0.10411823,0.053512543,0.13428293,0.17119555,-0.031415705,-0.5706658,0.2366981,-0.2706747,0.07808702,0.5230507,0.19431587,0.14853576,-0.14060988,-0.5256161,0.06084094,0.34813365,0.32786012,-0.9893996,0.44769338,0.11821634,0.7441116,0.3576521,0.21515249,0.15439476,0.49414515,-0.27747825,0.13242407,0.3773974,-0.09265866,-0.45841756,0.41521332,-0.7171536,0.38727584,0.08030359,-0.04179539,0.14810507,-0.085292585,0.45028663,0.81772166,-0.20474051,0.012992856,0.1387149,-0.19766413,-0.026090195,-0.33135647,-0.12556727,-0.54251814,-0.36467078,0.5738821,0.5319669,0.2901989,-0.20613258,0.053218562,0.087720744,-0.12751178,0.12375129,0.23881036,0.32808265,-0.00678462,-0.662381,-0.13752325,0.537752,-0.010385971,0.10401798,-0.079048775,-0.17968102,0.3931884,-0.115986384,-0.029429292,-0.08026684,-0.67670923,0.13025348,-0.43190753,-0.4090474,0.43678412,0.09050552,0.19516347,0.17627184,0.13025783,-0.17052396,0.8326816,-0.027999131,0.90082175,0.034059066,-0.17530365,-0.20532227,0.4706627,0.14542039,0.029416328,0.032509744,-0.37088242,-0.014167746,-0.5563735,0.52067024,0.17692547,-0.29941416,0.035848122,-0.09238279,0.11811548,0.55383855,-0.06255311,-0.1397713,-0.15158165,-0.30481806,-0.32709277,-0.3351567,-0.17496355,0.1610365,0.20222092,0.08831245,-0.23621465,-0.009880632,-0.33482477,0.24504025,-0.13881414,0.5028738,0.24936907,0.17815469,-0.20833246,-0.20495696,0.13412349,0.34110728,-0.09855753,-0.18675177,-0.1539218,-0.46484044,-0.4157186,0.016212344,-0.1673991,0.3842233,0.33149263,-0.111780725,0.64360136,-0.05039086,1.1620506,-0.007032613,-0.33948335,0.15665184,0.5624349,-0.08146626,-0.21860214,-0.27626818,1.019826,0.69239014,0.07929191,0.007851447,-0.17920835,-0.1447506,0.10678486,-0.21579976,-0.14903808,0.05192846,-0.4593114,-0.3285176,0.1845782,0.30627057,0.3009819,-0.1065771,0.20071225,0.27465343,-0.015120059,-0.072831675,-0.24740116,-0.40852475,0.2997463,0.27200958,-0.15559953,-0.088487886,-0.4721255,0.5163741,-0.32422736,-0.0007210523,-0.47626054,0.20130932,-0.17791347,-0.30692402,0.043373015,-0.17845084,0.3033028,-0.25770637,-0.11089351,-0.23086536,0.34531772,0.2740008,0.14120884,0.5131788,-0.27932456,0.16273883,-0.12135919,0.39188245,0.7524242,-0.36440346,-0.2229737,0.37198496,-0.2870001,-0.49363723,0.32521006,-0.40206036,0.18737392,-0.12584426,-0.110533334,-0.57806784,0.14187688,-0.050633103,-0.04594099,-0.28401694,-0.5929015,0.07406131,0.2365034,-0.23088185,-0.09817342,-0.33300674,0.09882376,0.67017716,-0.17774384,-0.38149843,0.20506053,0.053138178,-0.122998774,-0.45825663,0.053020414,-0.30596814,0.22574788,0.07429355,-0.3925984,-0.15171732,0.057980444,-0.35924658,0.114708744,0.07885241,-0.29756162,0.0948615,-0.3311228,-0.10681928,0.9403036,-0.375006,0.11666278,-0.34559178,-0.40525198,-0.6416397,-0.18239415,0.45331445,0.05210508,0.039490607,-0.7712249,0.17583442,-0.21662863,-0.28237066,-0.23208056,-0.19147955,0.4045483,0.12570646,0.4847766,-0.4118034,-0.83703136,0.22313611,0.1184207,-0.28441688,-0.6588305,0.44060853,0.05938831,0.8928562,0.00079812604,0.029217,0.5762405,-0.56233126,-0.082552545,-0.1674854,-0.17231846,-0.537211,-0.07476943 +295,0.38292173,-0.28614464,-0.37696794,-0.014990078,-0.23727332,0.1113466,-0.047057908,0.5063908,0.21125983,-0.40290174,-0.1610759,-0.30489957,-0.0024436892,0.3783602,-0.22549537,-0.4257449,-0.099076316,0.22281061,-0.5055714,0.49976826,-0.487062,0.16847102,0.09098374,0.40641102,0.19798294,0.036086004,0.199811,-0.17424652,-0.34460232,-0.19308329,-0.27111626,0.26914394,-0.5172828,0.17089953,-0.17912555,-0.32692146,0.022410832,-0.45999655,-0.25932708,-0.6974771,0.31259096,-0.6896164,0.32255659,0.07471355,-0.25267133,0.45718,-0.008002639,0.3292548,-0.283557,-0.13895202,0.11039068,-0.18510157,-0.04808885,-0.185865,-0.1088857,-0.14922899,-0.7318277,0.21491213,-0.30899173,-0.21450275,-0.39755613,0.26586196,-0.2647129,-0.07002356,-0.14982493,0.4770384,-0.41753674,0.14740826,0.03445879,-0.059493043,0.111468405,-0.5132446,-0.21516947,-0.033000838,-0.0020831784,-0.11732993,-0.08431087,0.24940348,0.26659867,0.57732195,-0.03653344,-0.14565611,-0.41771343,-0.0461244,0.053608913,0.4637202,-0.10895276,-0.64406306,-0.098416105,-0.010516803,0.07272582,0.060610987,0.088068455,-0.2023432,-0.22451067,-0.12372741,-0.25904953,0.29107162,0.4543305,-0.33477396,-0.38143715,0.3118197,0.51218265,0.10504245,-0.07178025,-0.13054334,-0.034913514,-0.6486637,-0.13023771,0.103421874,-0.18110034,0.55337334,-0.17558031,0.2171255,0.67973405,-0.2090324,-0.08752734,0.040941563,0.04485206,-0.05159665,-0.26148328,-0.24577647,0.17242931,-0.33045655,0.17354873,-0.25903234,0.94886845,0.0051161707,-0.85989445,0.347156,-0.49310488,0.2435678,0.05532845,0.5445198,0.50546134,0.38789508,0.49670085,0.5318683,-0.4097084,0.13261627,-0.10392303,-0.2715823,-0.07924709,-0.25237685,-0.0047151884,-0.43525633,0.113199905,-0.15709537,-0.14570114,0.024376867,0.42680356,-0.6218373,-0.050229263,0.15937765,0.7651337,-0.2591125,-0.12142076,0.7651177,0.95445925,1.1601541,0.0029825629,1.0980166,0.41009998,-0.31845322,0.16791034,-0.42174816,-0.6852711,0.27419332,0.2942271,0.13771346,0.13635498,0.022659509,-0.13102953,0.3275449,-0.47304657,-0.033806026,-0.25162974,0.16236454,0.1676,0.052374262,-0.38673294,-0.416708,-0.028139288,-0.030009143,0.049642883,0.27979326,-0.22545497,0.44449025,0.001328969,1.8045827,0.03167876,0.12527063,0.16972958,0.51249814,0.038651023,-0.11929958,-0.043476734,0.27918848,0.31940964,0.01898427,-0.56181353,-0.03138382,-0.28517812,-0.49979323,-0.092789896,-0.17541781,-0.13276027,0.06390868,-0.48564723,-0.23630132,-0.1423185,-0.262864,0.48879433,-2.6435065,0.077524275,0.013203204,0.28386518,-0.30875415,-0.39674366,-0.0029345988,-0.5531073,0.37870756,0.36347163,0.4184449,-0.7035629,0.3242056,0.2397008,-0.4877098,-0.07954062,-0.66565406,-0.14265057,-0.0432525,0.32781842,0.025636578,-0.05793653,-0.068444245,-0.06783767,0.5607775,-0.12401797,0.0805482,0.3436283,0.29807675,0.08767298,0.4140138,0.20959595,0.35597643,-0.28639802,-0.11584555,0.43631613,-0.43320644,0.2376595,0.005737555,0.08556327,0.4041784,-0.5327339,-0.8174076,-0.68271446,-0.15310937,1.2468317,-0.07742769,-0.32635644,0.2520444,-0.18224022,-0.17795865,-0.12808737,0.31197053,-0.15223384,-0.19854736,-0.75497067,0.043521926,-0.020085605,0.30280888,-0.009339013,0.0048346915,-0.36703163,0.70338744,-0.14779715,0.2505505,0.31742492,0.19920379,-0.41383582,-0.4514008,0.104663596,0.87165326,0.32038802,0.13877042,-0.23256226,-0.29999486,-0.3174736,-0.089665435,0.03820363,0.3781463,0.67004216,0.009829418,0.14135768,0.30156943,-0.04824029,0.10096017,-0.18353789,-0.22326796,-0.13843937,-0.011926616,0.65420777,0.690787,-0.1662013,0.3803927,-0.09195159,0.24354863,-0.0595475,-0.41753742,0.5301796,0.8214881,-0.038347792,-0.17071919,0.52082473,0.52657336,-0.25136802,0.36867124,-0.55594516,-0.3153165,0.587327,-0.1709533,-0.42309922,0.08638762,-0.29149562,-0.013691177,-0.80480456,0.35924146,-0.14863475,-0.43292174,-0.7861738,-0.14588885,-2.666061,0.27088395,-0.36328268,-0.15478767,-0.025748687,-0.06304407,-0.013247579,-0.6066354,-0.4020134,0.02797722,0.15345973,0.44646612,-0.007580894,0.19307038,-0.27261856,-0.23602708,-0.49923512,0.1176776,0.07981933,0.29160598,0.028315729,-0.39607996,0.08379304,-0.21564649,-0.3344622,0.06363108,-0.56015146,-0.55733496,-0.15817174,-0.43195215,-0.3819116,0.65051883,-0.3802633,-0.05245595,-0.15514204,-0.032761805,-0.050826807,0.3467695,0.15925704,0.11301262,0.07227779,-0.15039288,-0.015544945,-0.29352936,0.28834465,-0.0020017277,0.23393819,0.42496985,-0.16197824,0.18109417,0.3028446,0.6700653,-0.15793352,0.77625155,0.48889634,-0.09043649,0.25274733,-0.21453302,-0.16701375,-0.48087153,-0.21129146,0.008330652,-0.41022378,-0.40384388,0.045219526,-0.30530152,-0.6976567,0.4353753,-0.107909,0.10260806,0.006016135,0.31875992,0.56236136,-0.074837156,-0.07302942,-0.1415191,-0.027035965,-0.4797488,-0.43453434,-0.7136055,-0.4533602,0.08660597,1.0612683,-0.037080575,-0.05860363,0.017772608,-0.30364367,-0.1650245,0.06708612,-0.083533205,0.20100619,0.38603124,-0.20433696,-0.66039693,0.4971491,0.031700753,-0.23470841,-0.51891387,0.19638006,0.57344234,-0.46234852,0.48493055,0.30904242,0.111288644,0.1101508,-0.49507505,-0.22967501,-0.07863211,-0.1825586,0.32485187,0.2279089,-0.5742358,0.396308,0.28445616,-0.21146312,-0.87500066,0.2440755,0.08100302,-0.3517102,-0.06229552,0.28050846,0.18156436,0.100083224,-0.22843699,0.20783488,-0.56454164,0.37597302,0.22029908,0.00027012627,0.06576814,-0.31607014,-0.24225919,-0.6338464,0.019051163,-0.5154285,-0.34548122,0.2639521,0.15054925,0.0011654755,0.20037784,0.027595885,0.3153277,-0.21624945,0.01709064,-0.05402718,-0.08851888,0.21641888,0.42836288,0.4235454,-0.43122613,0.64051807,0.078556724,-0.112981,-0.18465458,-0.024912516,0.41862786,0.055436738,0.38975862,0.03657471,-0.261309,0.39968282,0.59296316,0.25697955,0.5240983,0.025177483,-0.2232974,0.39694202,0.041458424,0.15832955,0.04444973,-0.42073473,0.102965236,-0.20712735,0.14607774,0.43759176,-0.004261718,0.3884885,-0.10199157,-0.07974078,0.14782982,0.21218467,-0.16672882,-0.9753288,0.19303153,0.15384197,0.87257767,0.57980794,-0.10311658,0.14442499,0.82925016,-0.30983672,0.11344767,0.34667987,0.14438018,-0.59718525,0.7028158,-0.6442916,0.41446722,-0.24986942,0.00013910333,-0.0306003,-0.018801233,0.4384675,0.6284666,-0.17484428,-0.066179946,-0.040970586,-0.3218385,0.04876353,-0.3510264,0.33275643,-0.477315,-0.25261468,0.6125796,0.47602668,0.27351582,-0.11267241,-0.006776625,0.09182198,-0.15848665,0.17185242,0.024253365,0.10660351,0.13016947,-0.7340922,-0.18016765,0.5153489,-0.09659571,0.30661917,0.08080881,-0.22062367,0.29121315,-0.25200096,-0.22664127,-0.06854465,-0.5364304,-0.021243043,-0.17642498,-0.3172704,0.4419867,-0.19378062,0.27912143,0.1960001,0.13224427,-0.41770038,0.11064735,0.14185213,0.73761547,0.08290682,-0.061276145,-0.34019077,0.26473388,0.18684247,-0.13026637,-0.12179233,-0.12726338,-0.07536848,-0.6724422,0.41201574,-0.07410946,-0.35316727,0.0031536182,-0.17684291,-0.023418497,0.5856292,-0.025966056,-0.08506577,-0.027442273,-0.1306603,-0.19780664,-0.06307883,-0.043579288,0.33198205,0.14235406,-0.027478313,-0.020399518,-0.014012039,-0.13530813,0.44121674,0.0067160707,0.30030334,0.204957,0.003682526,-0.43299535,0.023375038,-0.09719003,0.45417908,0.14131026,-0.22008681,-0.24009632,-0.2854505,-0.2992047,0.18437344,-0.13865058,0.25973117,0.15835562,-0.34948015,0.89394796,0.036812544,1.289223,-0.016314339,-0.2685436,0.07110251,0.532343,0.099677406,0.10267544,-0.43487653,0.8628309,0.45960292,-0.109352276,-0.11560738,-0.25838566,0.025934378,0.2747617,-0.13332805,-0.15087897,0.006234765,-0.6066421,-0.27406844,0.17560135,0.23601188,0.1441443,-0.13247217,-0.030143023,0.22837208,0.05956584,0.5358328,-0.35430706,-0.16046849,0.24345109,0.26048303,0.009712419,0.20566498,-0.42555496,0.3759934,-0.5567153,0.08364597,-0.15371951,0.11699908,-0.2147418,-0.24380475,0.33902672,0.08686641,0.40227735,-0.37957504,-0.35972416,-0.3363514,0.5388971,0.29739565,0.2912126,0.52119815,-0.27601564,-0.01607675,0.114330605,0.4275055,1.0552431,-0.34404942,-0.06740257,0.42887953,-0.2043006,-0.58267194,0.5780276,-0.24770936,0.04536711,-0.03371113,-0.18967484,-0.48966405,0.28552437,0.24011306,-0.07973553,0.12033753,-0.5761227,-0.16157538,0.41796467,-0.3581499,-0.17191073,-0.28122482,0.2246469,0.59389025,-0.25063473,-0.4588381,0.10757386,0.2963896,-0.30175844,-0.46377414,0.016077287,-0.42527387,0.33171356,0.078233436,-0.20107926,-0.14135231,-0.0026090464,-0.44967598,-0.10724665,0.20563923,-0.34439373,0.04753085,-0.3145148,0.03218733,0.84411246,-0.17027153,0.27600333,-0.74556005,-0.37004614,-0.9820888,-0.36964804,0.6954146,0.014207919,0.029410101,-0.56658334,-0.1276737,-0.041772243,-0.21876757,0.0036806336,-0.4048242,0.45967242,0.13003309,0.29093245,-0.128732,-0.6331088,0.07179936,0.091274805,-0.23116796,-0.41723493,0.36630994,0.05138219,0.82600707,0.021578943,0.08312653,0.3571018,-0.5062371,0.12636925,-0.2175642,-0.27209318,-0.543523,0.08071737 +296,0.2574934,-0.40114927,-0.77438706,-0.03504726,-0.33789095,0.092737235,-0.34906378,0.23692551,0.21962139,-0.27409583,-0.3648786,-0.014192308,0.12662297,0.3882135,0.0045804554,-0.48382878,-0.060538914,0.2931175,-0.75319475,0.5086504,-0.53058285,0.27307153,0.15130024,0.44241977,0.22822942,0.29712185,0.24937762,0.053641077,-0.042126685,-0.07424921,-0.032009523,0.23643814,-0.5334531,0.08907193,-0.35862565,-0.32458353,-0.14958099,-0.47805473,-0.2697077,-0.7488908,0.07022079,-1.1014557,0.5463216,-0.11748702,-0.29842052,-0.14080156,0.39690405,0.37437645,-0.29840806,0.1389512,0.16076262,-0.34012797,-0.43123683,-0.34093815,-0.18306005,-0.3481762,-0.4192806,-0.014831379,-0.5124149,-0.07694914,-0.1822489,0.23271534,-0.25045964,0.07515186,-0.19593203,0.23649254,-0.54117423,-0.058536027,0.37012318,-0.28428286,0.27058896,-0.5792419,-0.06867781,-0.16877249,0.5400511,0.07465552,-0.49354213,0.29403993,0.36440834,0.46758467,0.2324978,-0.24986982,-0.27855515,-0.09425471,0.36036614,0.52988786,-0.025905404,0.02015287,-0.3654154,0.0656187,0.4386813,0.4555928,0.08034242,-0.28776976,-0.18160424,-0.22993703,-0.015977442,0.27237156,0.5191483,-0.1223471,-0.38885233,0.25747535,0.72541136,0.4033931,-0.35788226,0.068118855,-0.050912607,-0.5309242,-0.12410446,0.12461164,0.050240915,0.45443574,-0.19717948,0.13290395,0.7333979,-0.042614136,-0.1163406,0.0429401,-0.008304582,-0.22036944,-0.35969862,-0.18237598,0.23529471,-0.5692482,0.13837908,-0.34705427,0.43749857,0.15743734,-0.5308755,0.36060518,-0.5812898,0.24514484,-0.034506846,0.612405,0.78340876,0.47949415,0.33564398,0.83048725,-0.2077731,0.14030379,-0.20487364,-0.28735456,0.06982272,-0.37741783,0.027869496,-0.44935623,0.21074308,-0.26415995,-0.0024713385,0.14270958,0.5640931,-0.4377261,-0.14161669,0.2171431,0.6230294,-0.3301318,-0.074474216,0.91625416,0.85208213,1.1702635,0.10129457,1.2879229,0.24593528,-0.20251353,-0.14016365,-0.11022017,-0.61874133,0.24570091,0.35993713,0.33312592,0.32510272,-0.09250051,-0.067958824,0.55760956,-0.48119885,-0.010531821,-0.04441179,0.03130447,0.15587957,-0.21395577,-0.49024534,-0.18688706,0.009827948,0.16849415,0.10631419,0.21295854,-0.20873679,0.55311984,-0.10215696,1.2973393,-0.17970999,-0.048562653,0.17609254,0.24714105,0.20791762,-0.3205492,-0.05582883,0.3067616,0.46290943,-0.056136716,-0.6205133,0.13132705,-0.28461918,-0.4513669,-0.14378966,-0.42162424,-0.2185173,-0.07050633,-0.5434925,-0.18063812,-0.037738297,-0.30111265,0.36237684,-2.4485078,-0.24162133,-0.2703567,0.31408828,-0.21522318,-0.18397579,-0.31997448,-0.48836428,0.26742467,0.19975321,0.4250413,-0.5103517,0.6073242,0.47597286,-0.66578,-0.1302098,-0.74234474,-0.0959236,-0.12126713,0.43006024,0.09983766,-0.1378133,-0.14731121,0.015561023,0.80015934,-0.06985849,0.12583895,0.6485321,0.3695183,-0.08020652,0.55481106,0.058424048,0.682062,-0.51449865,-0.25678638,0.6156525,-0.27726874,0.52454895,-0.1243232,0.035467483,0.60978717,-0.47768328,-1.0278707,-0.6565207,-0.32083926,1.290843,-0.38605985,-0.5433045,0.13584544,-0.53974885,-0.24866602,0.061657343,0.7188172,-0.03536972,0.20512946,-0.80771977,-0.075458124,0.014183735,0.18962774,-0.07148535,-0.09431766,-0.4189756,0.893396,-0.058150087,0.7300393,0.26148826,0.2482809,0.056492202,-0.31473532,0.13216704,0.68390757,0.42645612,-0.077948704,-0.29055294,-0.30207983,-0.13930026,-0.07653308,0.08144585,0.7112337,0.58505976,-0.0894176,0.23265718,0.2887923,0.06049121,0.008998805,-0.33456606,-0.07235477,-0.19332297,0.23396175,0.57728416,0.93526304,0.038904674,0.31106836,-0.3171467,0.48798323,0.08797031,-0.73952436,0.5527817,0.76083046,-0.21366188,-0.12655799,0.615048,0.49690226,-0.34527066,0.5571303,-0.7252892,-0.38363823,0.3222573,-0.2143931,-0.30976906,0.2588778,-0.34218258,0.2728316,-0.806725,0.26366302,-0.35240296,-0.3779169,-0.51816714,-0.15326096,-2.836033,0.2728941,-0.062043965,-0.09299808,-0.3514356,-0.33313295,0.34463856,-0.5265837,-0.6856193,0.13369967,0.16289894,0.7562779,-0.12714483,-0.00957495,-0.27135798,-0.42940864,-0.05116278,0.2069436,0.19877045,0.30077824,-0.35490865,-0.45808345,-0.11767956,-0.17252974,-0.48795423,-0.057695556,-0.6177057,-0.46282068,-0.109795816,-0.27090478,-0.106535956,0.40238214,-0.32557625,0.108314596,-0.20600656,0.13408773,-0.11634755,0.21891038,0.061518285,0.30658373,0.24888577,-0.04554724,0.19697225,-0.13141246,0.36122975,0.0020740617,0.18004027,0.085214876,-0.0873322,0.3410838,0.422991,0.7500806,-0.48607507,1.0948254,0.49896416,0.0037487377,0.20936301,-0.19697778,-0.5132271,-0.6151103,-0.22214015,0.035898115,-0.53425634,-0.48666954,0.12913178,-0.14003573,-1.0077415,0.71197826,0.12528257,0.2993031,-0.032108277,0.23535347,0.5698732,-0.24616316,-0.02203734,-0.016279805,-0.15761553,-0.50194687,-0.45095962,-0.64985895,-0.65407866,-0.20682468,1.0640577,-0.25432104,0.23606814,-0.00051796436,-0.38317034,0.109786525,0.42807177,0.07682405,0.23474249,0.5788045,0.029265797,-0.53843147,0.29917583,-0.087419726,-0.20721881,-0.5022864,0.3054864,0.69534874,-0.7392064,0.63201815,0.42179933,-0.02469239,-0.072138704,-0.6371999,-0.25996608,-0.19703595,-0.25176385,0.69304734,0.28285557,-0.8556137,0.5616544,0.31325048,-0.3914359,-0.7256865,0.37831512,-0.22957219,-0.15454125,-0.09832602,0.3225369,-0.03885574,-0.08075366,-0.19457412,0.13000216,-0.34480554,0.10334621,0.210025,-0.09845669,0.064156845,-0.3427394,-0.22312617,-0.76380587,-0.005107965,-0.5750857,-0.21346201,0.3363541,-0.15042697,-0.06443543,0.074497834,0.1461967,0.38374904,-0.25867823,0.10114422,-0.28858092,-0.53723544,0.26573494,0.48595756,0.34681994,-0.40072426,0.63795936,0.113188215,-0.2835928,0.1584799,0.091559514,0.4124269,-0.038847327,0.4924375,-0.39283156,-0.16799116,0.19162369,0.7809061,0.13948934,0.43771654,-0.04086403,-0.16304709,0.32047248,0.10276377,0.34811562,-0.37355807,-0.3937197,0.05135366,-0.2237805,0.18890692,0.44028282,0.36238006,0.3980034,0.095078655,-0.090891704,0.04867465,0.22886331,0.111608915,-1.2698157,0.48196188,0.2850093,0.94228977,0.48211473,0.03351432,-0.15974028,0.66069657,-0.37107587,-0.08204283,0.40184978,-0.024750974,-0.5105435,0.5167014,-0.801907,0.51514703,-0.16770923,-0.0722267,0.18467672,0.179504,0.5228799,0.86814326,-0.24998224,0.20254381,0.039384935,-0.070897855,-0.0036438128,-0.4047737,-0.14257939,-0.51281345,-0.52343017,0.9973585,0.49372885,0.72592765,-0.30345473,0.027005255,0.05446944,-0.19408022,0.34509674,-0.054428186,0.100004084,-0.03162179,-0.49599904,0.09009819,0.41914526,0.086419456,0.23294571,-0.049836986,-0.50448185,0.12894312,-0.16010126,-0.017213723,-0.18602657,-0.64068305,-0.087572254,-0.37372705,-0.6951278,0.3483474,-0.07043115,0.14217432,0.3600974,-0.033825148,-0.14138037,0.3801458,-0.35895663,1.0718479,0.081044674,-0.15793668,-0.16939114,0.2760717,0.32839605,-0.30630675,0.07359262,-0.39219382,0.24280922,-0.5246528,0.6746708,-0.13171229,-0.66307986,0.3572987,-0.15533777,-0.13185382,0.606308,-0.08143915,-0.22759728,0.17306122,-0.104667716,-0.5145486,-0.1446725,-0.2991574,0.18276943,0.11839918,-0.049387235,-0.23725566,-0.15895943,0.051688332,0.63758713,-0.096976474,0.44334453,0.34568092,-0.06360694,-0.3916235,0.23029968,0.3164995,0.6017216,0.14298327,-0.1289129,-0.40752992,-0.59602255,-0.34833685,0.33165306,-0.08549216,0.24838114,0.05390174,-0.06868007,1.0323819,0.13558623,1.0578755,0.06452019,-0.3597323,0.25539207,0.491484,-0.08437423,-0.12360733,-0.3638642,0.6871579,0.5010651,-0.19469298,-0.049278047,-0.5507328,-0.08551623,0.17382407,-0.42743307,0.07429787,-0.14048325,-0.651245,-0.440095,0.10794226,0.18913524,0.3452757,-0.23924457,0.15117586,0.1460375,-0.06986536,0.2346829,-0.62913334,-0.3387831,0.30351093,0.23233049,-0.44902557,0.076261185,-0.43294358,0.41856557,-0.6064752,0.0052665705,-0.42237917,0.13228868,-0.28253847,-0.4055483,0.17495346,-0.034594245,0.25013158,-0.47321758,-0.20859589,-0.14733705,0.53044647,0.090216435,0.15151401,0.5411631,-0.31811184,0.1383043,0.24904351,0.44411543,1.1432312,-0.5068604,0.029453387,0.30463436,-0.3756102,-0.48504132,0.3516558,-0.49405113,0.098250456,0.052207332,-0.5398807,-0.5837593,0.30928844,0.25413045,0.1705254,0.01600303,-0.59538513,-0.06444395,0.21647267,-0.20876972,-0.14549105,-0.3639059,0.21176393,0.48202488,-0.1430641,-0.3466477,0.0770524,0.21014556,-0.3060255,-0.34191218,0.04658342,-0.23042585,0.30934593,-0.024699867,-0.35615322,-0.056477673,0.06226616,-0.5580017,0.05190865,0.20459047,-0.22812745,0.07978503,-0.328208,0.11100377,1.0072999,-0.34619185,0.06572926,-0.4000366,-0.5550141,-0.96381366,-0.3581104,0.23120198,0.17576577,0.0047146934,-0.5100617,0.13752624,-0.1743082,-0.2740767,0.03388181,-0.38967755,0.37227377,0.10067088,0.5177223,-0.2630598,-0.82982886,0.2693449,0.032383554,-0.17976096,-0.3790421,0.6094846,-0.08614038,0.88142353,0.13763914,-0.0023723927,-0.020015823,-0.4730057,0.19767427,-0.2147173,0.037984896,-0.7775021,-0.17384411 +297,0.4107866,-0.120959066,-0.38764036,-0.3139099,-0.24118093,0.16504756,-0.07129126,0.052971967,-0.10080738,-0.50837594,-0.06261281,-0.355898,-0.07422261,0.39278996,-0.21528813,-0.8019488,-0.07425542,-0.06715285,-0.67197365,0.37355042,-0.34085885,0.54409474,0.41196945,0.13585107,-0.004820009,0.4170338,0.505253,-0.35863462,-0.1183664,-0.019745925,-0.36425698,0.07105209,-0.60040015,0.18475851,0.03859211,-0.22006406,0.21483313,-0.13283683,-0.12452148,-0.66447043,0.21597408,-0.68675244,0.27762452,-0.14947227,-0.2860384,0.21996066,-0.008747665,0.26675874,-0.42030728,0.32084975,0.18784116,-0.2593399,0.029089153,-0.25516555,-0.15643567,-0.71986616,-0.4370806,0.051705852,-0.69075763,-0.46043333,-0.19418249,0.17935874,-0.42151204,0.008300615,-0.21006687,0.3458357,-0.50204366,-0.2600065,0.20687547,-0.2574125,0.24708056,-0.3769914,-0.069532275,-0.17354509,0.3145399,-0.101334125,0.022827882,0.25559303,0.31130806,0.56160295,0.12265201,-0.28838763,-0.056937013,-0.20628387,0.20135851,0.4924892,0.10039593,-0.37967274,-0.11279329,-0.06838115,0.022554927,0.14779687,0.045932684,-0.4407526,-0.14165811,-0.018041346,-0.24948393,0.04847373,0.41657084,-0.49327287,-0.24859826,0.35906792,0.4618706,-0.039921187,-0.13784985,0.1768506,-0.06775317,-0.3938568,-0.1880676,0.36025375,-0.11870233,0.6193035,-0.22193798,0.39915392,0.80565834,-0.1897592,0.13233094,-0.36460164,-0.1557498,-0.26379135,0.09445497,-0.049977295,0.10839481,-0.48809358,-0.0781964,-0.33689168,0.959583,0.27643096,-0.81768066,0.34246552,-0.38791102,0.16914612,-0.14925997,0.7358917,0.538245,0.25124064,-0.021017324,0.8989185,-0.7533728,0.04314555,-0.06695627,-0.45018288,-0.06762164,-0.021139871,-0.17676021,-0.32290432,0.03597876,0.059028435,0.11040452,-0.25146356,0.20024985,-0.3206096,0.117536075,-0.18341926,0.58704287,-0.5366067,0.022938954,0.6257945,0.7997291,0.8251153,0.14705096,1.25641,0.30363,-0.2643718,-0.01594912,-0.5061048,-0.39946958,0.14761367,0.53839624,0.8262732,0.21461289,-0.10473388,0.1589478,0.25447312,-0.18386191,0.34653938,-0.16043012,0.13830678,-0.1583011,-0.10977482,-0.4898563,-0.23910291,0.11437569,0.08258801,-0.0124245845,0.1662188,-0.0062666973,0.5899491,0.19900386,1.3868673,0.014864048,0.27231604,0.063796714,0.25714934,0.22004248,-0.011084227,-0.010362832,0.30443674,0.4229633,0.03088859,-0.62615144,-0.11656507,-0.3162557,-0.57682955,-0.23295666,-0.44093412,0.048235066,-0.2512886,-0.5225908,-0.11479448,0.2303153,-0.42297295,0.4407193,-2.2317069,-0.080188945,-0.28675205,0.10739449,-0.3286247,-0.2296581,-0.18313299,-0.44745588,0.27936038,0.52865165,0.29730102,-0.65160346,0.46498823,0.36810434,-0.058594774,-0.10611248,-0.63939786,-0.06415839,-0.1501153,0.3298602,0.012078722,-0.11185614,-0.23917261,0.23760769,0.51691985,-0.10311505,-0.107428744,0.13023342,0.26340392,0.2053738,0.59717745,0.35207984,0.4177253,-0.1309497,0.07886526,0.30035114,-0.24114202,0.26183167,0.11586063,0.22650991,0.17201272,-0.52655786,-0.6770939,-0.75538504,-0.555362,1.3457942,-0.4757993,-0.32671705,0.33912495,0.4519591,-0.03476209,-0.056557167,0.31942934,-0.09451771,0.1376031,-0.587491,-0.0069356086,-0.060619414,0.27958617,-0.078581005,0.0864938,-0.31531373,0.67967147,-0.21760912,0.43133435,0.33553526,0.1598408,0.00022950968,-0.43378976,0.090637125,1.0352014,0.40531337,-0.030545216,-0.080635734,-0.23613057,-0.2218397,-0.186114,0.19780222,0.28051835,1.0476058,0.13755229,0.053359754,0.31126678,-0.15570848,0.13367106,-0.049368177,-0.3926253,0.1712245,-0.08305137,0.5569531,0.26024693,-0.022173261,0.52620596,-0.23542118,0.32046166,-0.12813747,-0.42949528,0.5609089,0.9527597,-0.06722034,-0.16725422,0.27503318,0.49915984,-0.3513715,0.31750727,-0.5994833,-0.27478266,0.71016556,-0.1684862,-0.36114654,0.25223455,-0.28430137,0.16581208,-1.0990585,0.31518564,-0.051857963,-0.51857656,-0.5020274,-0.2721648,-3.7585123,0.07440519,-0.20886359,-0.12749574,0.024912046,-0.1647127,0.2965979,-0.5411098,-0.4433006,-0.0093580745,0.011298043,0.38308805,0.12959558,0.16976404,-0.2753803,-0.12295782,-0.19950317,0.22819076,5.767743e-05,0.106104665,-0.032682482,-0.3706275,0.17951904,-0.51867974,-0.45080918,0.08672643,-0.3493597,-0.5588551,-0.20067602,-0.3139844,-0.35454184,0.6409057,-0.2625591,0.02726481,-0.050207656,-0.17056134,-0.22622661,0.37502295,0.32776347,0.16550587,-0.065114826,0.12778038,-0.25355566,-0.4032767,0.13271591,0.12993042,0.28733948,0.1983753,-0.15366787,0.11471868,0.5169391,0.45236614,0.008681039,0.5346143,0.18151031,-0.052009236,0.32255942,-0.4130837,-0.2319102,-0.8978432,-0.44913843,-0.33684736,-0.27234486,-0.63390166,-0.21615647,-0.27809206,-0.7303359,0.3435849,0.059100866,0.030855747,-0.1150127,0.22687915,0.27864918,-0.07479051,0.042132393,-0.221666,-0.16953367,-0.3969495,-0.42575905,-0.80925167,-0.47969982,0.009128618,1.1458708,-0.030424865,-0.29971847,-0.18043327,-0.08069416,0.15976031,-0.013556548,0.23399934,0.32381693,0.16081223,-0.2026871,-0.7989381,0.68195426,-0.09732521,-0.051608168,-0.4504453,-0.26321414,0.557838,-0.6845573,0.2769883,0.23877549,0.15840997,0.2048815,-0.3594776,-0.24001922,0.042708624,-0.4113867,0.47754195,-0.16135985,-0.3666006,0.47931406,0.17037357,-0.007102263,-0.5095661,0.48568952,0.0014938673,-0.30315056,0.28213176,0.29779705,-0.12178294,-0.07244488,-0.359399,0.1957095,-0.55543166,0.28545392,0.55883974,0.19062056,0.4918272,-0.050593268,-0.27330643,-0.4327144,-0.070862964,-0.40688488,-0.18909988,-0.037486542,0.15224075,0.02933073,0.13964857,-0.109822385,0.45459852,-0.29275692,0.14016485,-0.032041553,-0.1764882,0.31549862,0.42951176,0.10947888,-0.47770202,0.60690916,0.10073872,0.17978863,-0.42923254,0.045780182,0.48057163,0.43645498,0.11413193,-0.055735603,-0.19441637,0.389748,0.60474354,0.37657535,0.5846469,0.25226387,-0.23208526,0.39560446,0.3267637,0.13654889,0.046329632,-0.016485868,-0.1026824,0.14777945,0.094298534,0.34953752,0.037624303,0.4665166,-0.08454538,-0.1192721,0.22993013,0.23235169,-0.23236026,-0.62030154,0.25601894,0.26510966,0.4959617,0.6443921,-0.06089735,0.094046764,0.438712,-0.4876406,0.02380451,0.19435593,-0.08550353,-0.5756746,0.6969026,-0.4983862,0.26785624,-0.18094355,-0.08135775,0.00021966298,0.09965434,0.15161449,0.9803341,-0.03374195,0.03536759,-0.19634707,-0.1248493,0.19116454,-0.43722418,0.06839851,-0.3785802,-0.2514382,0.44342047,0.18752523,0.20697738,-0.1592096,-0.013546439,0.07495381,-0.055360503,0.2991243,-0.062644556,0.10437538,0.035014175,-0.60762984,-0.51659197,0.6050464,-0.0055812597,-0.06434899,0.15891522,-0.44734856,0.33958787,-0.043149408,0.040705126,-0.0976418,-0.52879274,0.1766402,-0.23029543,-0.45206496,0.20628233,-0.4032508,0.46714595,0.17767903,-0.055781167,-0.29154575,-0.09476297,0.30221575,0.6298736,0.060257673,-0.3261189,-0.30588505,0.07201909,0.3024431,-0.33305848,-0.044340845,-0.22121146,0.16094074,-0.6638473,0.41165224,-0.13382173,-0.21888746,0.113463685,-0.23516403,-0.2669603,0.38054556,-0.23504347,0.03739943,0.23195624,0.14803907,-0.092592366,0.012590122,-0.54673326,0.20262156,-0.13104104,-0.07242277,0.033465553,0.055861283,0.079838224,0.47060153,0.1037676,0.16384609,0.07174145,-0.26651084,-0.50725114,-0.0595447,-0.046106394,0.05558404,0.25049308,0.036010664,-0.18433918,-0.3360634,-0.1306685,0.091171585,-0.23197407,0.2387731,0.16510865,-0.48699242,0.76336175,0.18196869,1.1825736,0.13600343,-0.23678951,0.092411056,0.49386102,0.14041351,0.14678285,-0.30114183,0.9365297,0.67096907,-0.12690385,-0.2895703,-0.36503604,-0.22459704,0.2226394,-0.21788716,-0.23455101,-0.023019219,-0.70462596,-0.44379914,0.1315526,0.25861654,0.13267474,0.2644733,-0.14364372,0.09302883,0.114122964,0.68060726,-0.48986652,-0.17221576,0.19607824,-0.15469022,0.14249153,0.11978242,-0.3558261,0.52140707,-0.7624493,0.22229372,-0.3110161,0.027176348,0.079784654,-0.22310854,0.24914531,0.075983554,0.3330638,-0.18253565,-0.4903612,-0.24186048,0.69796556,0.16343711,0.41436857,0.831422,-0.30764753,0.17340933,0.16068454,0.34480318,1.3801098,-0.026707537,0.029454628,0.3741789,-0.42747563,-0.4994426,0.1715441,-0.13928947,0.049031537,-0.18164302,-0.4721151,-0.40749556,0.28266823,0.16240504,-0.09285418,0.18630147,-0.38169667,-0.31356958,0.57939136,-0.29794112,-0.41005623,-0.4235918,0.48127657,0.6139304,-0.5083078,-0.2563167,-0.012719504,0.10251251,-0.44799933,-0.6535881,-0.029134631,-0.21293001,0.5274301,0.08962237,-0.24605677,0.20205173,0.3825149,-0.31485873,0.21392968,0.524237,-0.38374797,0.016899245,-0.20958737,-0.078991696,0.96515214,0.015679391,-0.20637444,-0.6699258,-0.4877023,-0.9570667,-0.40669537,0.7105742,0.1710413,0.033035804,-0.43187994,-0.0923244,-0.051615253,0.131776,0.11461143,-0.49308267,0.2529902,0.17044678,0.45686534,0.060627177,-0.81811506,-0.008404231,-0.05295034,-0.21562035,-0.4280929,0.58303744,-0.21833521,0.4790557,0.05721204,0.009697842,0.17986849,-0.54455215,0.2877498,-0.30394492,-0.24274167,-0.58471227,0.12480111 +298,0.3746278,-0.19386078,-0.42970136,-0.08081368,-0.20594062,-0.31414336,-0.29656294,0.6680862,0.3799411,-0.40551472,-0.23671368,0.22176732,-0.18251199,0.29647905,-0.14191064,-0.17228158,-0.009866958,0.21476804,-0.5101976,0.6921159,-0.19635925,0.20599219,-0.14384152,0.62542695,0.41298956,0.12839048,-0.17083909,0.3779473,0.023297181,-0.24090768,0.023588648,0.2088916,-0.4530857,0.17319764,-0.26019973,-0.4350537,-0.3776293,-0.5606566,-0.46099743,-0.7694196,0.35019344,-0.72028345,0.62066424,-0.013461218,-0.34209353,0.16358255,0.09320201,0.23623309,-0.01940613,-0.25337207,0.16115977,-0.12991567,-0.21416576,-0.10138074,-0.072815746,-0.1937673,-0.58105206,-0.09281821,-0.26728475,-0.04055146,-0.3135102,0.1962044,-0.35716438,0.07920799,0.025010284,0.58957916,-0.21285237,0.15961954,0.07480757,0.0039623794,0.112795606,-0.83209074,-0.23844253,-0.12010578,0.18899368,0.011756576,-0.37280953,0.37876037,0.07722226,0.44024354,-0.21054675,-0.031655762,-0.40925023,0.20087503,0.013745322,0.46422136,-0.30837876,-0.34282953,-0.09150283,0.09837807,0.47180626,0.10129888,0.19754076,0.0027145927,-0.1947627,-0.015902016,0.026827602,0.4457639,0.557413,0.040558375,-0.16686183,0.2599382,0.53500533,0.48788643,-0.17165463,0.0521329,0.057879355,-0.5023172,-0.14717707,-0.25994143,-0.14834735,0.3490236,-0.046328824,0.2929382,0.32707754,0.020740459,-0.22280622,0.38121003,0.20314072,0.21082164,-0.3110479,-0.56698054,0.37998772,-0.4291134,0.25430647,-0.1890257,0.45862976,-0.061380424,-0.770461,0.23448744,-0.4664796,0.14165533,-0.04422656,0.4440749,0.9814346,0.48204195,0.3802298,0.72655195,-0.24363287,0.034930196,-0.040080626,0.12763742,0.0012881664,-0.25914967,0.05202424,-0.5623771,-0.1693859,-0.04202878,-0.24709032,0.43870303,0.48759666,-0.46263868,-0.16926914,0.20876874,0.7542872,-0.1399247,0.07494811,1.037858,1.2245069,1.1705512,0.07016391,0.8827022,-0.091040105,-0.088701494,0.035641946,-0.047091894,-0.67343956,0.2560557,0.30139458,0.10587129,0.32034895,0.14429668,-0.1305729,0.42132345,-0.6068557,-0.08148705,-0.009536977,0.06045988,0.14411603,-0.22158346,-0.58421934,-0.17904575,-0.25914007,0.16431363,0.020330433,0.2590384,-0.2832784,0.41141576,-0.13814633,1.3347855,-0.14467219,-0.023152392,0.15358283,0.4952181,0.23027423,-0.41392377,-0.038632445,0.048070934,0.29933912,0.016784204,-0.56171936,0.017770588,-0.1356166,-0.36177656,-0.22234192,-0.28604305,-0.3234061,0.025475685,-0.25366384,-0.3982803,-0.19967164,-0.44761392,0.19420968,-2.6969616,-0.24641715,0.026469808,0.48339665,0.04241493,-0.35006624,-0.16195941,-0.3595884,0.5479059,0.30860597,0.5406193,-0.45203298,0.21890494,0.45343068,-0.727278,0.06386154,-0.55556387,-0.11757003,0.17901564,0.19811663,0.062582016,-0.11473315,0.1415489,0.32817155,0.5116446,0.2599897,0.03579154,0.59691006,0.36814865,-0.43528965,0.31437647,-0.21430962,0.3981007,-0.3957136,-0.28565806,0.38464254,-0.3938374,0.23369576,-0.2419986,0.16217613,0.60943127,-0.44697455,-0.9671832,-0.5140003,0.28243148,1.1760371,0.13751036,-0.60251844,0.28774732,-0.96870226,-0.35889357,-0.21633516,0.6834737,-0.21190885,-0.21545584,-0.72689056,-0.26202568,-0.20540048,0.1144081,-0.038255356,-0.21104033,-0.53406763,0.82285935,-0.013058569,0.59959614,0.40608194,0.1185132,-0.35440043,-0.41919434,0.07421614,0.659462,0.5901141,0.17156526,-0.3381069,-0.022896977,-0.25488383,-0.14219508,0.18358961,0.564488,0.33308858,-0.14948183,0.21852463,0.18608266,0.03618913,-0.025072305,-0.20399131,-0.004652491,-0.2594596,0.05036791,0.6743256,0.80890787,-0.16562667,0.31881377,0.146078,-0.011555537,-0.11172366,-0.37089318,0.31463546,1.0247194,-0.18742171,-0.5085531,0.67351335,0.44055843,-0.14290184,0.40502027,-0.47730678,-0.16482621,0.17988205,-0.012723565,-0.35859635,0.09514594,-0.3885047,0.13840613,-0.5584942,0.2429613,-0.31264842,-0.74404997,-0.8225795,-0.11323106,-1.3321275,0.21060461,-0.32121044,-0.38713557,-0.2750033,-0.4414887,0.096354574,-0.5744938,-0.69483083,0.22384556,0.07978857,0.8713286,-0.1865463,-0.13367139,-0.064761415,-0.48388892,-0.37877223,-0.013584132,0.15852925,0.43517002,0.15400717,-0.21902707,-0.12286366,0.057890195,-0.4568504,-0.19900121,-0.43329877,-0.3807274,-0.02319665,-0.39113384,-0.19232124,0.5571837,-0.1221987,0.12021197,-0.26091996,-0.11774063,0.100367196,0.26995498,-0.022310184,0.23890176,0.18862747,-0.13259417,0.1650917,-0.031408224,0.115977325,-0.07158848,0.17043965,0.24634926,-0.38081008,0.38014677,0.4658674,0.78419167,-0.3228802,1.0168567,0.6710847,-0.09290849,0.21973613,-0.23215815,-0.38664612,-0.45770174,-0.07851444,0.42213395,-0.45196703,-0.3755182,0.11968954,-0.53496677,-1.0168853,0.56502956,-0.03780475,0.19921562,0.110242195,0.07755138,0.4818022,-0.12897323,-0.12374493,-0.17271066,-0.11004024,-0.41307306,-0.28762877,-0.63616556,-0.49707457,-0.1319813,1.2702199,-0.26167402,0.20365168,0.42992508,-0.28335994,0.007514254,0.14973682,-0.11314265,0.057285395,0.24833809,0.054078754,-0.4202192,0.26700863,-0.01585203,-0.14125441,-0.57024646,0.26148272,0.50298345,-0.38844663,0.4943183,0.30200982,-0.10669149,-0.52427155,-0.812239,-0.01179918,-0.12648049,-0.19160257,0.51439464,0.45951682,-0.71537775,0.41121215,0.31352174,-0.14291225,-0.72970325,0.39559713,-0.041030005,-0.3453967,-0.030014588,0.17854333,0.012279437,-0.021500248,-0.0070819994,0.3687797,-0.21562481,0.4212631,0.05156825,-0.18752153,0.025011264,-0.3209212,-0.026273044,-0.60756487,0.14269017,-0.55645186,-0.29615375,0.2556827,0.15092815,0.30394647,0.04096021,0.3300095,0.39398807,-0.3400059,0.12792856,-0.36038965,-0.38644692,0.2731713,0.49734786,0.65424454,-0.38496512,0.56805384,0.06933364,-0.37172163,-0.006288689,0.023495985,0.44330758,-0.17305723,0.3189608,-0.001077354,-0.18922755,-0.162163,0.7698607,0.06379117,0.18566598,0.014414168,-0.093741424,0.16422097,0.032112017,0.31852758,-0.15553102,-0.514845,0.2307846,-0.476086,0.13563477,0.39522612,0.16417345,0.106029406,-0.22689287,-0.38476995,-0.05222157,0.10181236,0.13808143,-1.5609212,0.4854539,0.18057863,0.8524419,0.4009681,0.1482899,-0.1301569,0.79566914,0.060680177,0.055113953,0.21587215,0.20125076,-0.38214573,0.4398778,-0.7402167,0.5919546,0.13540651,0.009046412,-0.016479969,-0.114357546,0.4723584,0.5148715,-0.21127447,-0.0022663784,0.020926237,-0.33510298,-0.04134529,-0.3719354,0.11301042,-0.61821306,-0.29473716,0.8735924,0.5638575,0.34669426,-0.21040776,0.08630498,0.06347522,-0.10863029,0.16166148,0.0016536071,0.02104528,-0.14072496,-0.60704285,0.1349253,0.25049785,-0.23719348,0.12230992,-0.11357893,-0.047064345,0.12329398,0.07714569,-0.12685513,-0.0772654,-0.7067142,-0.02218428,-0.54253936,-0.4627524,0.33758754,-0.14804667,0.15494244,0.33897883,0.10441497,-0.16859554,0.35000503,-0.08890506,0.73110926,-0.07505261,0.0780008,-0.15610303,0.23764804,0.12525055,-0.18198249,-0.023056477,-0.09363182,0.09412764,-0.4555407,0.48995107,-0.08667372,-0.38257664,0.20188788,-0.05398254,0.14511909,0.34099242,-0.3087721,-0.26434204,-0.147583,-0.29757193,-0.23346074,-0.39918178,-0.050078712,0.3480642,0.06402822,0.07459802,-0.060155146,-0.11121511,-0.079288684,0.51303124,0.16235495,0.56290525,0.32674378,0.18284649,-0.3433956,0.027232233,0.10396442,0.57188267,-0.027110828,-0.09774426,-0.53841203,-0.5666977,-0.46658266,0.3177803,-0.03448186,0.46538046,0.13648418,-0.007283151,0.62786674,-0.02531024,0.81368977,-0.054690935,-0.3611098,0.20189425,0.38342032,-0.13401894,-0.21270299,-0.17484419,0.6100183,0.34295526,0.00088889326,0.005107817,-0.31251574,0.09343911,0.30305904,-0.28112504,-0.18315695,-0.13453571,-0.61026233,-0.1120619,0.26360476,0.24697253,0.12275468,-0.24803618,0.19371746,0.4292518,-0.068139106,0.018708335,-0.288087,-0.10597528,0.47295606,0.18213224,0.001014095,8.076888e-05,-0.5233364,0.20593366,-0.40846306,-0.08052071,-0.31334257,0.24851659,-0.08354245,-0.23493661,0.25645357,0.05904191,0.25028527,-0.31297037,-0.14464773,-0.19188254,0.3640938,0.15058766,0.09643286,0.26454538,-0.3241461,-0.027729778,-0.018469132,0.31616122,0.9119019,-0.20702508,0.064904876,0.04011921,-0.30136248,-0.39606094,0.31216705,-0.33266178,0.08062814,0.10244412,-0.08286122,-0.59032094,0.12753083,0.25568146,0.22225523,-0.034539897,-0.8026393,-0.39576742,0.06445173,-0.20326272,0.030852739,-0.43616527,-0.30813423,0.46509406,0.023113796,-0.4407743,-0.02379648,0.38641363,-0.02246207,-0.47576615,0.2696258,-0.47063276,0.22941563,-0.24501501,-0.40226313,-0.36361086,-0.13967814,-0.43699995,0.11452024,0.07383618,-0.2855779,-0.058519747,-0.43634742,0.12681147,0.89422184,-0.23667328,0.36859372,-0.19037192,-0.547732,-0.83000284,-0.1634648,0.15733925,0.34306547,-0.044208586,-0.8599291,-0.01888875,-0.22637105,-0.012507228,-0.105615154,-0.23330556,0.5086986,0.18977012,0.340738,-0.34151605,-0.67744595,0.28870773,0.06687205,-0.25392294,-0.19851683,0.5300242,0.4032285,0.7949572,0.08763724,0.16645254,-0.08134724,-0.4832361,0.13677576,-0.1153688,-0.29268518,-0.5038057,-0.041351873 +299,0.6393105,-0.18246624,-0.37171742,-0.24487281,-0.24911489,0.08691616,-0.13382003,0.31581777,0.16889471,-0.51164067,-0.047866862,-0.13106473,-0.011781728,0.0618152,-0.15431918,-0.632107,-0.06982843,0.043791953,-0.44868848,0.6135119,-0.4696961,0.33415425,0.03809944,0.21940564,0.07815065,0.27211052,0.25341454,-0.23972884,-0.08442716,-0.1345617,-0.13693745,0.26884133,-0.75430804,0.23501045,-0.056560345,-0.28437743,0.08267345,-0.377067,-0.23743361,-0.7362384,0.22316347,-0.8222725,0.448602,0.17420414,-0.21293579,0.17800957,-0.0014551163,0.21992142,-0.22143729,0.17278385,0.19870299,-0.039887913,-0.018104978,-0.08792356,-0.1464983,-0.5427493,-0.64089227,0.061044984,-0.26912376,-0.19880849,-0.27074164,0.19615623,-0.4386167,-0.09527189,-0.1478438,0.43475276,-0.46661994,0.018202562,0.12534267,-0.014557949,0.43710843,-0.5163767,-0.01573071,-0.228826,0.18100758,-0.4074707,-0.35369363,0.28448066,0.3633451,0.4879433,0.047382772,-0.23623377,-0.14539985,-0.15620235,0.15115087,0.50679916,-0.22464056,-0.7225025,-0.15856075,-0.06072219,0.14916421,0.31481284,-0.112262994,-0.37049323,-0.075703666,0.13875945,-0.2005765,0.42656523,0.5130474,-0.4736227,-0.35212347,0.4095572,0.5825471,0.0035927177,-0.031273015,-0.082998045,0.029987741,-0.7059739,-0.25045556,0.40094754,-0.089701176,0.4420525,-0.18187033,0.13944802,0.69278705,-0.40181553,-0.009624998,0.083358936,-0.061750628,-0.09721133,-0.19238384,-0.2872751,0.2962634,-0.56692123,0.108636394,-0.3041302,0.8296783,0.24874789,-0.7897293,0.27948567,-0.61748606,0.08006254,-0.19592553,0.6990119,0.6447432,0.43844232,0.2772536,0.70862466,-0.594968,0.06637668,-0.09982939,-0.44461983,0.06849618,-0.19669834,-0.118734546,-0.42892674,0.03469818,0.0982852,-0.058975074,-0.130491,0.32487094,-0.56259286,-0.006026429,0.049482964,0.6767981,-0.33311003,-0.09628735,0.68268573,0.8786162,0.9940103,0.12743443,1.375336,0.2829984,-0.3060687,0.15760067,-0.3431133,-0.7748938,0.36323196,0.47589752,-0.17172109,0.14073268,0.11213121,-0.0074196896,0.2158489,-0.46445948,-0.012055339,-0.3296181,0.38807684,-0.010383925,-0.07447591,-0.3587881,-0.23855686,-0.05152104,0.11261468,0.07272091,0.20401327,-0.18801309,0.22189511,0.19623114,1.4588293,-0.15443645,0.123160996,0.07779523,0.438361,0.17487288,-0.05232714,0.0155196665,0.23909898,0.45942086,0.30697164,-0.6358059,-0.0026572347,-0.17881685,-0.53414637,-0.15891787,-0.31411642,-0.009650937,-0.11963563,-0.38061967,-0.086321525,-0.09694249,-0.3246207,0.59400505,-2.6596472,-0.046130292,-0.12213627,0.2213158,-0.22297472,-0.44462246,-0.18859193,-0.6096813,0.57999164,0.35606316,0.5237407,-0.8454739,0.29308233,0.3510507,-0.5091794,-0.0035171588,-0.7973484,-0.13054515,-0.13135192,0.37423506,0.12452408,-0.07893312,-0.11236037,0.12888414,0.55011564,-0.051898915,0.077332124,0.07149175,0.43363747,0.08951412,0.56572545,0.10978497,0.47074717,-0.14490822,-0.18998304,0.3608562,-0.21367224,0.17803484,-0.08538864,0.13462861,0.2700641,-0.48929024,-0.9453514,-0.8995556,-0.55580443,1.0931647,-0.15318164,-0.45932496,0.09608832,-0.105907425,-0.2803803,-0.12240301,0.3520362,-0.2536705,0.040340174,-0.7871281,0.12017367,-0.08212344,0.21765785,0.012780446,0.06533016,-0.4859577,0.65394247,-0.12649216,0.32855955,0.44364044,0.08200519,-0.18646249,-0.5325617,0.03868766,1.0747845,0.37036735,0.1544592,-0.20567164,-0.298029,-0.34447905,-0.028028412,0.068936385,0.4556733,0.80213815,-0.085352525,0.083776735,0.2890472,-0.011476736,0.04719117,-0.11770203,-0.29879224,-0.09060684,-0.0985339,0.7187124,0.44063517,-0.19848566,0.46125117,-0.09951871,0.2523511,-0.05333807,-0.40659934,0.53455764,1.1147643,-0.11249338,-0.21750297,0.59530866,0.52574736,-0.26782706,0.42755452,-0.6315114,-0.261989,0.35719022,-0.08684642,-0.3546231,0.14609718,-0.38712797,0.15555556,-0.843778,0.4783663,-0.33921203,-0.44790548,-0.55017084,-0.1280928,-3.4078836,0.2685281,-0.26106533,-0.029335538,-0.05452142,-0.1453632,0.39052144,-0.55505884,-0.50967497,0.25022116,0.07145708,0.5313917,0.014770033,0.05658985,-0.24445347,-0.1408698,-0.40078315,0.122675546,0.16990574,0.2927161,-0.020360466,-0.41390106,0.053879693,-0.13630177,-0.43352118,0.1495864,-0.5386892,-0.5546323,-0.15340953,-0.48644918,-0.4199918,0.7061474,-0.3304338,0.008685636,-0.1428093,0.03807443,-0.018749733,0.41058862,0.08242985,0.15418799,-0.08399156,0.034633208,-0.14601931,-0.28851348,0.41107547,0.056851722,0.13978486,0.2446632,-0.2888585,0.2221055,0.49714005,0.5121374,0.053515732,0.85460013,0.56469333,-0.10456485,0.2131951,-0.33693543,-0.20309235,-0.59139705,-0.39819902,-0.13006775,-0.4956954,-0.40111464,-0.0325224,-0.31849682,-0.6789747,0.57938933,-0.020509934,0.062411405,-0.07347777,0.31926578,0.4437507,-0.1351437,0.053457346,-0.06910767,-0.13501061,-0.48020548,-0.3279033,-0.60795337,-0.40563032,0.046427142,1.1084296,-0.21578927,-0.11631214,-0.025612246,-0.1360374,0.0381995,0.086420186,-0.12823328,0.24278793,0.40712115,-0.07115258,-0.65352696,0.5554262,0.011477605,-0.12442374,-0.6328658,0.14020266,0.7010295,-0.74525917,0.39745525,0.34217831,0.068803065,-0.14219576,-0.6360661,-0.22900926,-0.0070027965,-0.30477574,0.44506976,0.075143225,-0.7290789,0.5185002,0.40122154,-0.18829349,-0.67241913,0.6174277,0.087176256,-0.34580985,0.07381989,0.27923623,0.10914949,0.046320796,-0.26348153,0.36960143,-0.46727234,0.33669502,0.20143436,-0.020794272,0.36975396,-0.026900165,-0.24706435,-0.6786927,-0.06215899,-0.45966783,-0.41453943,0.17752776,0.002983447,-0.0020871798,0.29981473,1.1384487e-05,0.4760085,-0.25352317,0.07856533,-0.0051113605,-0.3190165,0.2145744,0.3640708,0.40849483,-0.36846918,0.6004799,0.07952665,-0.11469371,-0.20575804,0.09375127,0.553701,0.055473544,0.31426874,-0.029794069,-0.21210852,0.3467819,0.8111164,0.22276379,0.40696305,0.002163454,-0.06650063,0.30009085,0.17469583,0.24862741,0.11255531,-0.50267845,-0.10418512,0.073727116,0.065527625,0.44997838,0.09289327,0.21771675,-0.1498971,-0.23151445,-0.006931625,0.105519265,-0.005344788,-1.1105224,0.41693535,0.11507681,0.76081437,0.59227026,-0.15581182,0.120275065,0.51288617,-0.23187973,0.08960069,0.35197785,0.0101041,-0.44590378,0.5541398,-0.7122868,0.41049644,-0.085455224,0.070766404,-0.12488367,-0.11561426,0.27412117,0.8991356,-0.10589345,0.10234995,-0.17863792,-0.15313165,0.2659041,-0.34454829,0.17741747,-0.486752,-0.20910312,0.7304084,0.41096625,0.3601204,-0.007719768,0.0004967143,0.17008963,-0.16061325,0.18015406,-0.053007953,0.080723494,0.13861546,-0.67028946,-0.18273766,0.66366667,0.021750959,0.05148022,-0.037361324,-0.22960217,0.27099115,-0.17229837,0.025241148,-0.15143725,-0.60014504,0.019288126,-0.33947155,-0.22441308,0.59148747,-0.3499071,0.24017677,0.14258115,0.0676421,-0.25273448,0.15963846,0.3128647,0.7203028,0.07309442,-0.21282692,-0.5079335,0.14531918,0.2598679,-0.23826136,-0.23569804,-0.1264078,0.0021606407,-0.74802554,0.35872588,-0.04898054,-0.44459817,0.12158929,-0.16875039,-0.06388941,0.5443228,-0.08896956,-0.20988598,0.061080147,-0.1570906,-0.1679116,0.024789575,-0.046120085,0.28843313,0.33903658,-0.0035297116,-0.079464935,-0.19523162,-0.25784427,0.34689087,0.088955574,0.29133272,0.3057889,0.1819145,-0.35244468,-0.080611125,0.15307999,0.47189704,-0.08822368,-0.09699499,-0.17533585,-0.38257393,-0.30724427,0.048115764,-0.13478334,0.34398985,0.006466232,-0.44083968,0.69398296,0.0044873,1.2605519,0.08418547,-0.29388618,-0.09205754,0.62275386,-0.0029224355,-0.0082065305,-0.333735,1.0000137,0.5810501,-0.07991912,-0.19921865,-0.31938314,-0.004863612,0.078756884,-0.11170983,-0.06135547,-0.1148526,-0.63583934,-0.351852,0.31922844,0.28547636,0.10451958,0.040488735,-0.120385595,0.18089399,0.029335694,0.45165926,-0.4720846,0.015143631,0.2578067,0.31660557,0.11751452,0.26893812,-0.30175045,0.29347858,-0.41409698,0.13917519,-0.23937927,0.20142303,-0.20482215,-0.1854023,0.21877323,-0.06679988,0.3193847,-0.21163623,-0.52987486,-0.2013374,0.46578124,0.22074983,0.23733707,0.68690556,-0.28094807,0.109623685,-0.01550986,0.4465226,1.1941757,-0.20039003,-0.004907753,0.44552884,-0.29492822,-0.5009129,0.4098484,-0.28757003,0.1305786,-0.022649534,-0.271727,-0.33607686,0.23046137,0.22673455,0.064220354,0.0035615643,-0.7106322,-0.22404978,0.21649498,-0.13818803,-0.26922646,-0.33404344,0.40063375,0.8114658,-0.41958258,-0.23429696,0.1561004,0.21912812,-0.24984239,-0.57909495,-0.05040783,-0.34728384,0.34891605,0.17544593,-0.30413455,0.05581182,0.061939288,-0.4135926,0.10193981,0.2050053,-0.41361302,0.087003864,-0.15369672,-0.079841964,0.9196076,-0.1709268,0.07359774,-0.5211588,-0.34097072,-0.8902516,-0.28843033,0.4937143,0.28899392,0.076660864,-0.42664844,-0.11337255,0.07314698,-0.08381469,-0.023271767,-0.45248803,0.4857231,0.049404096,0.44667664,-0.12441637,-0.8190632,0.14373295,0.10682169,-0.06325253,-0.5345546,0.5111104,-0.044282354,0.68676144,0.1245312,0.123272024,0.28612205,-0.49845296,-0.041309375,-0.1877428,-0.19903521,-0.8525836,0.13932624 +300,0.36163825,-0.046810247,-0.61625266,-0.019468885,-0.1818052,0.20118485,-0.18102854,0.32566687,0.048370916,-0.3701816,-0.11317137,-0.14331885,-0.0445402,0.2738493,-0.07938365,-0.457011,0.18331677,0.30939192,-0.67422193,0.29796034,-0.6129225,0.307842,0.12938768,0.14802171,-0.0048366864,0.10155188,0.15100819,-0.13011989,-0.16857041,-0.21726297,0.10020849,0.20433642,-0.5742833,0.36032104,-0.2209178,-0.36617094,-0.00323385,-0.39297697,-0.33133394,-0.66168976,0.33741465,-0.8309839,0.53423923,-0.05861933,-0.20840219,0.241226,-0.0069238027,0.29684365,-0.15078071,0.004208986,0.21166238,-0.27734312,-0.36573008,-0.2375542,-0.06620135,-0.16721033,-0.6032581,0.16448964,-0.40289077,-0.07027909,-0.27361807,0.17331395,-0.30708903,0.1445275,-0.21258454,0.34209213,-0.3152504,0.05914755,0.13796592,-0.054774318,-0.049504027,-0.429164,0.03280053,-0.10213721,0.18138261,-0.24180228,-0.21407168,0.37482437,0.21264675,0.5680881,-0.041213885,-0.25216138,-0.09569319,-0.101898246,0.24952747,0.5256731,-0.17855202,-0.26270077,-0.16865359,-0.01379594,0.15674023,0.07060062,-0.037575744,-0.27625483,-0.059455376,-0.016812626,-0.16017164,0.26581144,0.6275078,-0.3123172,-0.12664266,0.39923322,0.598785,-0.08651967,0.055737518,0.19518839,-0.027266322,-0.56353647,-0.25381315,-0.0071953437,-0.08638553,0.4135059,-0.26376393,0.23606917,0.60608333,-0.23702525,-0.07923159,0.27013922,0.05002516,0.031878628,-0.081093036,-0.19438525,0.27912292,-0.5971582,0.05627226,-0.13315503,0.84232014,0.055964794,-0.7705573,0.4283102,-0.457574,0.21460083,-0.09506987,0.7221143,0.6042113,0.49160793,0.18369508,0.6974894,-0.49683577,0.014788268,-0.14360286,-0.50000656,0.052503966,-0.09950983,-0.058254004,-0.3645237,0.039207794,0.03746446,-0.08363951,-0.05921,0.4217915,-0.42961088,-0.13407166,0.056960378,0.6512462,-0.3389186,-0.23023194,0.6990022,1.0423192,0.89491814,0.10843933,1.3248341,0.28093135,-0.12836222,-0.009235473,-0.19245,-0.8282789,0.3096033,0.22873197,0.0899452,0.22263929,0.13011327,-0.11171524,0.2880672,-0.54698485,-0.160113,-0.13897566,0.26724353,-0.13746092,-0.10091685,-0.2578534,-0.23475827,0.11041296,-0.0052800816,0.19543782,0.33749256,-0.2385713,0.34886262,0.053613,1.3930763,-0.12160633,0.110684596,0.17509522,0.3104138,0.09360654,-0.0449754,-0.25206614,0.17273133,0.32369605,0.08602691,-0.54195887,-0.05280367,-0.13507676,-0.55727,-0.17172202,-0.26181218,0.027136136,-0.19464222,-0.2771243,-0.22539902,-0.09879487,-0.46155566,0.458613,-2.592462,-0.16815533,0.023316797,0.28862748,-0.19674405,-0.3436773,-0.1743118,-0.49611762,0.27778885,0.30758104,0.4526509,-0.71270293,0.4210843,0.24444224,-0.477846,-0.08320774,-0.6953585,0.05333142,-0.1367241,0.1911246,0.14292265,-0.075260974,-0.12730628,-0.04893099,0.49836752,-0.14818574,0.0164479,0.4291424,0.30735767,0.11977706,0.39237675,0.15861405,0.57283014,-0.55760306,-0.205039,0.3215286,-0.4043435,0.18415053,-0.11025596,0.12818216,0.26679844,-0.5306652,-0.8273432,-0.6141098,-0.22745362,1.3993111,-0.25510767,-0.26696354,0.24451698,-0.19564022,-0.25105605,0.042808518,0.3010993,-0.24846824,-0.058872856,-0.68743175,-0.08625857,-0.00815615,0.32207572,-0.12190951,0.06566345,-0.5422756,0.5548955,-0.25267726,0.5004245,0.25243148,0.06353773,-0.24790679,-0.386627,0.20814465,1.087146,0.3774179,0.14873879,-0.28685912,-0.19134556,-0.22605342,-0.22537436,0.096101485,0.48193285,0.7413792,-0.057193503,0.06732382,0.31391475,0.018791573,-0.009296163,-0.11312294,-0.34984705,-0.04423354,-0.07894887,0.66934484,0.5541214,0.017434107,0.4248548,-0.057576362,0.3476269,-0.21591201,-0.38051364,0.38244084,0.7578986,-0.1512046,-0.28926933,0.5153835,0.40162987,-0.32570893,0.5411723,-0.58186734,-0.49471983,0.24843222,-0.05956086,-0.3612513,0.18779056,-0.3140594,0.2790733,-0.82683784,0.49040073,-0.21328573,-0.78446424,-0.5098368,-0.13597395,-3.1751266,0.1928559,-0.2401341,0.011675773,0.051539585,-0.054475196,0.15189633,-0.32343313,-0.48790655,0.049392637,0.1419819,0.60742164,-0.035142772,0.07576131,-0.20461674,-0.20234784,-0.39098224,0.14253631,0.23161833,0.29379424,-0.08548334,-0.4078268,0.053467236,-0.37854752,-0.18445063,0.02568603,-0.6244434,-0.3548879,-0.11051901,-0.46423873,-0.4437392,0.66027707,-0.46071473,0.08893763,-0.25687,-0.03752557,-0.039038192,0.36423102,-0.016040524,0.11996626,-0.019639738,-0.20788105,-0.07896469,-0.25711754,0.4686751,-0.020993253,0.31904286,0.43525994,-0.1924554,0.05423248,0.40986425,0.5859029,-0.07551499,0.8414833,0.4155545,-0.13918068,0.26618236,-0.21937315,-0.19906227,-0.43991262,-0.113713235,0.007542071,-0.51109743,-0.35917002,0.035411842,-0.35737005,-0.81164056,0.4330722,0.00022366842,-0.061862357,0.059448518,0.26626596,0.4204435,-0.058972858,-0.16063288,-0.15574828,-0.10363589,-0.36107787,-0.4181392,-0.6869845,-0.45887023,-0.09037046,1.2225376,-0.15468822,0.09652957,0.023397831,-0.006097833,-0.021613609,0.10807705,0.008114016,0.23010792,0.48914927,-0.22775911,-0.6835206,0.39962256,-0.35632026,-0.06853495,-0.47502348,0.17106707,0.6195286,-0.7347669,0.49599773,0.52642655,0.24456319,0.0547631,-0.43073395,-0.16872129,-0.037884887,-0.25028136,0.43379983,0.19932482,-0.825362,0.5657238,0.3350759,-0.25996524,-0.7255756,0.41952667,0.037120685,-0.14553474,0.080594294,0.45408615,-0.2408647,0.04463064,-0.24305029,0.11651781,-0.45235443,0.33561942,0.18809786,-0.01313416,0.27998617,-0.2969595,-0.16380975,-0.51199925,-0.028536336,-0.54836905,-0.2141018,0.04385136,0.010114895,0.006559952,0.19124795,0.027707068,0.4722083,-0.25266013,0.010445644,-0.1459478,-0.3818527,0.36340588,0.44939902,0.4093847,-0.4719581,0.5891525,0.033640783,-0.13093509,-0.26296547,0.037325628,0.49881133,0.009974873,0.35167176,0.13538282,0.07382121,0.35966307,0.8248952,0.34395722,0.4308936,0.079823,-0.17559321,0.18583514,0.11174571,0.2343212,0.040843032,-0.50163925,-0.05651284,-0.13347732,0.2474897,0.43234012,0.18072887,0.45896354,-0.12261789,-0.27443627,0.021232003,0.11959818,-0.17060384,-1.0978947,0.50343376,0.10196161,0.6640571,0.40255412,-0.00976156,0.15391512,0.5837294,-0.24320568,0.17805807,0.18555562,-0.17407961,-0.42720512,0.5149713,-0.6489345,0.37865102,-0.104971856,0.07031127,0.11311904,-0.10096182,0.3854989,0.74012595,-0.039093852,0.09447677,-0.082928784,-0.21654037,0.14646749,-0.27239367,0.23092912,-0.5498088,-0.2061408,0.87057596,0.40731353,0.29427412,-0.14776653,0.038990658,0.101848885,-0.1000217,0.13247329,-0.07678641,0.14351486,-0.11075284,-0.6607895,-0.19051811,0.6326515,-0.0054941694,0.04486813,0.21870661,-0.17538032,0.2852371,-0.19832405,-0.005432463,-0.18230009,-0.5725087,0.05788804,-0.20942189,-0.3101426,0.1856531,-0.23450874,0.2672461,0.24751513,0.017919242,-0.50617385,0.28934,0.15113363,0.6829425,0.059070427,-0.28178176,-0.20464729,0.31750822,0.27856398,-0.268081,-0.13481121,-0.32354957,0.043306645,-0.694638,0.41190326,-0.14473465,-0.36599004,0.24109954,-0.05945337,-0.13729325,0.5430154,-0.1296006,-0.11203582,0.094623595,-0.09191057,-0.20073493,-0.109348364,-0.20046636,0.24226615,0.2674686,-0.15004295,-0.11430906,-0.010342093,-0.122970834,0.25901967,-0.06204508,0.19282745,0.28539145,0.058945842,-0.41919568,-0.052594207,0.05342209,0.5673497,0.056613103,-0.04389646,-0.3454471,-0.13420776,-0.15654401,0.22420658,-0.07250131,0.33860305,0.075742476,-0.26543695,0.69998443,0.10802933,1.0750068,0.09035544,-0.13484271,0.02590247,0.54086,0.08891679,-0.0073646605,-0.46408173,0.98081106,0.5045383,-0.17204763,-0.11840652,-0.46037012,-0.02711939,-0.040745694,-0.12695798,-0.38628483,0.015003592,-0.59381294,-0.24229176,0.22988254,0.35570943,0.06429996,-0.008880373,0.13279395,0.29412544,0.04378282,0.16905709,-0.43156263,-0.12204134,0.26385218,0.24899887,0.015552954,0.016289007,-0.48724225,0.33636123,-0.7166957,0.07634302,-0.07044863,0.08752529,-0.05661653,-0.33797637,0.22179116,0.12346672,0.30466282,-0.32055664,-0.2837162,-0.10943259,0.43215185,0.20081404,0.269542,0.76108205,-0.23565388,-0.016122222,0.07133387,0.34160823,0.88309324,-0.14253075,-0.008306247,0.32503578,-0.15173677,-0.6358902,0.39240387,-0.25943896,0.21089935,-0.044763148,-0.39730313,-0.48756605,0.3522288,0.2056395,-0.115714245,0.15905997,-0.60121346,-0.07510088,0.22597863,-0.18860109,-0.32769224,-0.40186158,0.11158393,0.8038109,-0.21964483,-0.33473587,0.11870947,0.23092924,-0.3642346,-0.6183499,-0.016587906,-0.41780064,0.22471142,-0.055208027,-0.19869232,-0.04662868,0.08134411,-0.3989504,0.21471177,0.22568361,-0.1909948,0.14807187,-0.27587044,0.11145881,0.6423429,-0.15131325,0.039102428,-0.54532313,-0.43542007,-0.8591155,-0.19316754,0.3471249,0.14155169,-0.035292037,-0.4875473,-0.19399816,-0.08080182,-0.22067894,-0.024340717,-0.40440473,0.33429152,0.06668725,0.1883473,-0.0027890664,-0.78164923,0.11489034,0.059965387,-0.3009511,-0.39848354,0.46807998,-0.056680076,0.76904005,0.07735955,0.015545994,0.40691668,-0.56444424,0.15195277,-0.25796616,-0.049791433,-0.6027777,-0.0037390192 +301,0.3355894,-0.2326184,-0.4924815,-0.059564747,-0.37213618,0.1698201,-0.3643512,0.17335132,0.06685799,-0.5151215,-0.20903869,-0.04764578,0.110120125,0.23092507,-0.22731426,-0.4814295,-0.03994267,0.2757024,-0.6655426,0.44379187,-0.58499604,0.37011522,0.18205984,0.26764274,0.09647564,0.27431172,0.19845164,-0.2377238,-0.15738785,-0.23251913,-0.14074714,0.21169834,-0.571058,0.31105322,-0.20869817,-0.27168247,0.018495515,-0.30404034,-0.3297894,-0.686006,-0.0035751483,-1.1061631,0.61179507,-0.15052831,-0.21712087,-0.08103956,0.22005899,0.43699312,-0.3830789,0.034354057,0.34430298,-0.28105074,-0.36755946,-0.38679054,0.027592888,-0.55662286,-0.4393719,-0.014817299,-0.53399765,-0.1652361,-0.246045,0.30626222,-0.28753868,0.015068265,-0.19360164,0.2654892,-0.4904125,0.24726209,0.1698228,-0.087855056,0.059846606,-0.5590325,0.021440575,-0.113307,0.5674556,-0.050069213,-0.2061341,0.3070774,0.3040495,0.34297538,0.319297,-0.2603514,-0.18040206,-0.20635836,0.43636194,0.3364977,0.030830739,-0.12237894,-0.28483286,0.0022065383,0.42549834,0.2869517,0.09125851,-0.28970107,-0.14435539,-0.10341419,-0.13568887,0.45551792,0.51373,-0.09350164,-0.2016717,0.37936512,0.6899978,0.30589983,-0.2703037,0.07651075,-0.00788817,-0.5810848,-0.11211211,0.22426118,-0.034976546,0.4666436,-0.24534525,0.05470107,0.84480447,-0.13771822,-0.010761644,0.08851,-0.008874012,-0.24119666,-0.17660083,-0.24718359,0.12707016,-0.63158923,0.0016943812,-0.3084809,0.70723754,0.19383954,-0.67525476,0.3799902,-0.5708887,0.15210316,-0.044262905,0.7075644,0.6353287,0.48724985,0.20021056,0.78115416,-0.29704767,0.15804747,-0.03773764,-0.41987535,0.11878484,-0.37730727,-0.027701003,-0.43620858,0.04577278,-0.24737413,0.055788748,-0.20380755,0.36697134,-0.46886286,-0.16512199,0.078234695,0.60536563,-0.35371003,-0.031175345,0.7908279,0.9803403,0.95760334,0.19715013,1.3265073,0.37440374,-0.24233203,-0.06910165,-0.20607889,-0.6831727,0.2165149,0.2930029,0.0433796,0.28869286,0.039738264,0.034394655,0.29850695,-0.4530701,0.063655846,-0.12315607,0.30684146,-0.05733483,-0.019952377,-0.35037693,-0.15848505,0.026579244,-0.07771201,0.14122012,0.27981356,-0.17733577,0.40425307,0.18666919,1.155338,-0.23521616,-0.035261318,0.07789817,0.3614597,0.12479039,-0.15372777,0.03903174,0.30063263,0.5166081,-0.0742283,-0.6864892,0.09450424,-0.26928142,-0.43589145,-0.18202348,-0.3004087,-0.2204285,0.019198665,-0.26522762,-0.2123576,0.0039586923,-0.24002817,0.4061303,-2.5867755,-0.20021972,-0.22125337,0.33981332,-0.27097854,-0.20042637,-0.19504389,-0.5468918,0.32046917,0.11895776,0.49554425,-0.61831224,0.46782058,0.56033397,-0.52701634,-0.26544848,-0.7777068,-0.01622725,-0.08694105,0.4355122,0.0010218194,-0.12872575,-0.1295759,-0.15909743,0.6114253,-0.013538863,0.28931442,0.51251894,0.30970407,0.21041285,0.5580883,0.17368463,0.562512,-0.33540383,-0.07420145,0.3926638,-0.33999512,0.5212132,-0.103791,-0.014715989,0.5785926,-0.47407064,-0.6880388,-0.6418677,-0.46382627,1.1790401,-0.47970986,-0.4458005,0.049599458,-0.18045087,-0.02089958,0.12281399,0.5412511,-0.07401274,0.22363342,-0.6428771,-0.014468885,0.0061373883,0.2934601,-0.030035933,0.048350163,-0.32586747,0.8249709,-0.12552999,0.5980993,0.33314785,0.19608475,-0.054508995,-0.39695612,0.14229499,0.83473283,0.35281324,-0.02359583,-0.33974832,-0.36751667,-0.24542464,-0.19637379,-0.0050299005,0.59022486,0.5231942,-0.11263721,0.115675576,0.2351402,-0.18452801,0.09042909,-0.20725559,-0.1986681,-0.09496345,0.11805756,0.49563766,0.74178505,0.010494505,0.58477163,-0.24757667,0.3298315,-0.1466972,-0.55017537,0.6790336,0.568411,-0.19593038,-0.19263199,0.50911236,0.4911274,-0.329909,0.40779,-0.5503997,-0.24659352,0.5129728,-0.094731756,-0.37415388,0.17167197,-0.22164343,0.28915378,-0.8124539,0.34612593,-0.4451738,-0.57084554,-0.6497952,-0.03921432,-2.4687917,0.16958424,-0.16818316,-0.11919304,-0.35893133,-0.17359011,0.41751003,-0.46230003,-0.5975115,0.08693445,0.13318661,0.59186274,0.011373692,0.09468838,-0.21411411,-0.31864598,-0.004365291,0.26614597,0.20909707,0.28201112,-0.3284293,-0.36564532,0.016487226,-0.0150052225,-0.24420953,0.08269478,-0.7345862,-0.4601014,-0.047715545,-0.32461637,-0.26542455,0.6287238,-0.50094384,-0.032028418,-0.12067817,0.18862419,-0.2499963,0.16301778,0.14025305,0.2860627,0.080778755,-0.085058756,-0.11692568,-0.32284942,0.41038474,0.00094960205,0.2553819,0.19559205,-0.0073914686,0.20366554,0.38416848,0.6286689,-0.23509823,1.0471181,0.26684126,-0.08468159,0.12437929,-0.16225179,-0.39601186,-0.58639413,-0.21118459,-0.11571049,-0.42780942,-0.44847247,0.041820187,-0.3064786,-0.923327,0.66975313,0.034521524,0.14613417,-0.043483675,0.28089514,0.46507186,0.013902051,-0.03172842,-0.08671748,-0.1929185,-0.5354034,-0.48275846,-0.788741,-0.45088893,-0.066816464,0.99658644,-0.37150082,0.09035727,-0.0044030165,-0.44528976,0.04412508,0.21520878,-0.090951756,0.11786677,0.5710722,0.061629806,-0.5892224,0.46538037,0.0094826175,-0.08951136,-0.455401,0.18715115,0.80056274,-0.80079097,0.53512233,0.44741172,-0.07017724,-0.098762915,-0.4433293,-0.19932885,-0.04741958,-0.22975914,0.5143844,0.18342128,-0.75151026,0.4028898,0.3269575,-0.30089834,-0.69488937,0.34164256,-0.08049018,-0.16193642,0.078968726,0.3280902,-0.01119713,-0.020251548,-0.23920856,0.15676865,-0.37138408,0.17699698,0.13309285,-0.13799112,0.13037378,-0.1710593,-0.29506832,-0.67197317,-0.041884024,-0.529914,-0.2050101,0.23797262,-0.050408293,-0.0067254007,0.21732616,0.350223,0.40739483,-0.27399823,0.122100614,-0.16582419,-0.37047175,0.30247173,0.52700186,0.28439215,-0.37423548,0.53547066,0.21519646,-0.102797285,0.036065876,0.05706176,0.38171095,0.06977896,0.45478153,-0.16494213,-0.051098492,0.15152396,0.9740786,0.1843016,0.6843775,0.076681614,-0.15776737,0.38739783,-0.013905861,0.4113584,-0.04491925,-0.51760954,0.028351353,-0.038111784,0.22998488,0.30065915,0.17385578,0.45224223,0.058215182,-0.04556399,-0.0110203875,0.16833012,0.13394393,-1.1783918,0.50062466,0.25189954,0.7135804,0.42470798,-0.05013868,-0.09017907,0.7919434,-0.3802041,0.032949988,0.31113175,-0.12201711,-0.45721075,0.6542101,-0.6110802,0.34752673,-0.2524151,0.050223686,0.11331204,0.10431011,0.29012558,0.90086466,-0.1864022,0.05647009,-0.014686857,-0.2282118,0.0590685,-0.27532205,0.07257503,-0.37708268,-0.4405534,0.9107485,0.4225872,0.5872697,-0.26807332,0.07693527,0.12730508,-0.15383494,0.28624663,0.12092667,-0.05628876,0.020465706,-0.48113483,-0.07570501,0.56973684,-0.079804085,0.21462385,-0.1072695,-0.30888787,0.10785627,-0.23655312,0.05232511,-0.14035009,-0.7132266,-0.058230378,-0.38875026,-0.64509696,0.25630507,-0.21817097,0.19999883,0.2744847,-0.11081309,-0.044286046,0.39402086,0.044986766,0.7478658,0.019107888,-0.24020697,-0.22560939,0.15784581,0.34391922,-0.3179129,0.05683881,-0.24377462,0.112084225,-0.5904555,0.458399,-0.28943107,-0.54042935,0.115481116,-0.26231986,-0.07978968,0.5781323,-0.01589721,-0.13783152,0.3461671,-0.1718049,-0.46543822,-0.18620549,-0.25733933,0.19845699,0.3233308,-0.09903454,-0.14416079,-0.28361022,-0.20634425,0.36225381,0.063970014,0.5474159,0.36977932,-0.1497409,-0.24747959,-0.0056345635,0.16994476,0.5389562,0.18303347,-0.07261594,-0.2603746,-0.31922194,-0.302759,0.4003975,-0.048532635,0.18225434,0.08021162,-0.3324118,0.9597495,-0.07540753,0.99931294,0.10008841,-0.28602204,0.099402785,0.5383976,0.026377229,0.046993546,-0.37122226,0.94038063,0.5901819,-0.08767075,0.0965534,-0.65962124,-0.181969,0.34548277,-0.35825655,-0.060173564,0.004464599,-0.56040424,-0.25371736,0.2320234,0.27084696,0.0017095123,-0.08433599,-0.02195275,0.050776813,0.046237532,0.45295197,-0.7514946,-0.18712518,0.27380246,0.12411368,-0.1497371,0.23368104,-0.30421633,0.4103117,-0.69386864,0.19303907,-0.4154911,0.029609805,-0.16462305,-0.28094044,0.14699629,0.007860755,0.24594085,-0.45573017,-0.45490122,-0.262042,0.54887146,0.053651482,0.18416932,0.6175193,-0.2756352,0.024279768,0.23554434,0.5748406,1.097514,-0.37445992,0.008583763,0.3073769,-0.48091513,-0.4837257,0.42773652,-0.4519194,0.015860448,-0.10271426,-0.48929888,-0.47030482,0.28804493,0.2435113,0.19936465,0.12839891,-0.674519,-0.004120352,0.30316684,-0.222865,-0.21398091,-0.0994746,0.21757366,0.56882876,-0.2298403,-0.42548123,-0.11751507,0.23910053,-0.40435055,-0.32310352,-0.0693626,-0.29823455,0.195166,0.0037454118,-0.28025395,-0.021919161,0.24212097,-0.49154612,0.019524649,0.13252269,-0.4092165,0.096644826,-0.2034532,0.11732805,0.7181582,-0.29250792,-0.10123904,-0.5942331,-0.45403233,-0.74456966,-0.38428047,0.07762216,0.2652029,0.12577344,-0.43370232,0.05641997,-0.07301169,-0.18043442,0.1885599,-0.7199716,0.48218897,0.21641873,0.35178298,-0.17589927,-0.9292626,0.17545941,0.03947528,-0.14516154,-0.59136003,0.5509517,-0.18902615,0.9382678,0.12796254,-0.038583,-0.15587129,-0.48684326,0.24856949,-0.28697708,-0.08628016,-0.9011146,0.0447106 +302,0.45674267,-0.15614991,-0.51215583,-0.08574081,-0.37183523,-0.0071070683,-0.078133516,0.7549631,0.37447822,-0.41047165,-0.28985608,-0.06317583,-0.017711418,0.43090516,-0.17138956,-0.67193115,-0.08487744,0.18267323,-0.29057038,0.5938557,-0.21202712,0.47417602,-0.16512363,0.42447472,0.37697947,0.29592654,0.19763446,0.16245954,0.07427433,-0.43394583,-0.24321595,0.15730889,-0.35357943,0.10921946,-0.1654364,-0.47884533,0.09386783,-0.45103845,-0.4861288,-0.8177237,0.394481,-0.95120376,0.7254007,-0.033372935,-0.2581855,-0.0041523306,0.03258646,0.39213753,-0.0011747751,0.07819741,0.062895596,-0.19042373,0.20662731,-0.2605224,-0.33228686,-0.45935717,-0.37794334,-0.26546976,-0.34696046,-0.27616602,-0.2555175,0.21875161,-0.29855892,-0.035141166,-0.41623536,0.2880664,-0.5013644,0.013598258,0.024603032,-0.3958514,0.048591528,-0.7815778,-0.1968542,-0.19659299,0.063133895,-0.08443523,-0.16484834,0.40943202,0.13140923,0.25359127,0.028756263,-0.095518805,-0.1004212,-0.22395667,-0.024817629,0.5581426,-0.0385751,-0.34642324,-0.19388212,-0.18913239,0.6517223,0.43713856,0.1390267,-0.16805613,0.016718723,-0.12608862,-0.28802767,0.5193004,0.5529448,-0.2230952,-0.060562443,0.346755,0.52912,0.26787785,-0.38760427,0.16104446,-0.07663846,-0.3021758,-0.0825771,0.0908335,-0.23149252,0.63242674,-0.07012859,0.20361558,0.71264493,-0.23130402,0.13425583,-0.09870765,0.10721325,-0.23931406,-0.36996824,-0.57323605,0.25453904,-0.5028051,0.54079384,-0.36157933,0.6965835,0.10736056,-0.22491856,0.34480447,-0.60414886,0.24906562,-0.117361076,0.57145846,0.37487802,0.3610164,0.08971057,0.7719389,-0.34626067,0.14514972,0.10111158,-0.0787384,-0.15641278,-0.027469011,0.19653298,-0.35184163,0.059882794,-0.0981294,-0.26092204,0.10296404,0.45401305,-0.531966,-0.20160462,0.12372882,0.9858207,-0.35060677,0.24722165,0.9145416,1.1953734,0.87885475,-0.20629936,0.99817294,0.10099912,-0.25844377,-0.32743207,-0.14663766,-0.5088674,0.09246254,0.47781742,-0.08168474,0.22182602,0.047188494,-0.097524576,0.32239944,-0.41185415,-0.17315093,-0.1093801,0.17747623,-0.011148854,0.010928848,-0.5678207,-0.15591837,0.02546777,-0.0468209,0.28240377,0.28871468,-0.45809668,0.31910256,-0.19787498,1.0028542,-0.006213573,-0.056644022,0.23018852,0.637424,0.29733917,-0.22947101,0.34921005,0.33775273,0.56315,-0.23334089,-0.5875089,0.30943364,-0.41169044,-0.42817318,-0.08519042,-0.34826726,-0.15508498,0.34862044,-0.5107018,-0.24545845,-0.13673234,0.08208186,0.18677917,-2.333539,-0.15338424,-0.29176056,0.3455362,-0.20854296,-0.23954965,0.12735839,-0.47445914,0.39648315,0.32621774,0.4642103,-0.6078999,0.4080845,0.77701896,-0.56975937,0.09574892,-0.81146246,-0.14230913,0.01306786,0.4044029,-0.03574994,0.064462714,0.067829736,0.18502134,0.55891854,0.22167388,0.17476498,0.31035808,0.37800628,-0.26248613,0.32051826,0.0722223,0.59666955,-0.26922733,-0.107518844,0.36963177,-0.45275316,0.36498415,-0.3771045,0.06299705,0.6042176,-0.28953704,-0.6225209,-0.46202815,-0.19728903,1.1888452,-0.30574548,-0.60744256,0.24185105,0.09551747,-0.13658242,-0.10157433,0.75348276,-0.21045643,-0.14105652,-0.53944755,-0.14949371,-0.14575374,0.27207083,-0.026064811,0.03741069,-0.2877083,0.6023708,-0.07699814,0.5518458,0.1861578,0.48931953,-0.2598686,-0.44289857,0.012354601,0.6494682,0.6089214,-0.03833723,-0.25105482,-0.13773522,-0.16919775,-0.06866314,0.018836765,0.61332875,0.7006451,-0.16584387,0.0391266,0.45793602,0.03113706,0.043246966,-0.23690605,-0.5063171,-0.17712528,0.090468615,0.40133455,0.4070754,0.045272555,0.2282044,-0.017384302,0.25378254,-0.33806425,-0.52250046,0.4759225,0.8932685,-0.38018742,-0.089846425,0.7764376,0.46873072,-0.39381656,0.48480302,-0.96936417,-0.08419835,0.5082966,-0.07308259,-0.7226832,0.17591152,-0.15296794,0.104155414,-0.8386929,0.3933382,-0.4905763,-0.63054943,-0.6184831,-0.27146694,-2.7655213,0.08758883,-0.37031573,-0.19334674,-0.16576576,-0.31954715,0.04966662,-0.7453055,-0.4990287,0.28138086,0.13510627,0.5709579,-0.10197194,0.02602783,-0.44133285,-0.31713244,-0.4238076,0.27111188,-0.056448374,0.34386665,-0.26317695,-0.28958717,0.15127645,0.1229903,-0.43881884,0.040214702,-0.52184826,-0.1522594,-0.13020729,-0.51601404,-0.17009076,0.7063169,-0.2143603,0.2185871,-0.20316811,0.006724863,-0.027110301,0.118225224,0.29997814,0.2685667,0.011619014,-0.048911188,0.10351996,-0.32958275,0.25380608,0.15313727,0.36700144,-0.010959959,0.011765501,-0.11882236,0.5053766,0.5601871,0.10110155,0.8720465,0.24089421,-0.07232481,0.3014166,-0.056134127,-0.31542018,-0.66683614,-0.3984846,0.03279672,-0.3151197,-0.65335435,-0.10838643,-0.22577009,-0.78021187,0.53525966,0.24250437,0.4522913,-0.0077539654,0.32261765,0.44224384,-0.21396503,0.020540418,0.07117728,-0.008130502,-0.44276783,-0.19376937,-0.8346388,-0.26629716,0.20028402,0.5672856,-0.3284272,-0.08543418,0.1925488,-0.38252306,0.16188237,0.23294443,0.15970841,-0.21603526,0.37138966,-0.18203083,-0.530723,0.36656657,0.0130386,-0.0747083,-0.7020133,0.26800784,0.7373388,-0.75187594,0.54779,0.24672385,0.00012571704,-0.5873365,-0.556066,-0.21297717,0.088019855,-0.27078816,0.4558163,0.1780459,-0.5736759,0.19081424,0.19504724,-0.11298385,-0.4766092,0.7740284,-0.18907498,-0.42221645,-0.07945945,0.377703,0.14613798,-0.036916174,-0.06467212,0.279869,-0.31293088,0.29990503,0.32192305,-0.14388345,0.30247042,-0.15400241,-0.061428484,-0.8914812,0.26002917,-0.59263855,-0.19672452,0.17646438,-0.07775727,0.01814328,0.35227582,0.15434024,0.31894004,-0.19646087,0.3158943,-0.088863246,-0.39235947,0.78420395,0.30415523,0.4455325,-0.12806058,0.72117907,0.25317731,-0.3049773,0.43933028,0.17964822,0.5056293,0.13465877,0.6367238,-0.03658025,-0.097478434,0.276597,0.70174104,0.3247329,0.4052432,0.12364486,-0.0643235,0.11611898,0.1627406,0.26066992,0.024745546,-0.5428865,-0.16829287,-0.21055609,0.07430149,0.5434987,0.21361512,0.3044513,-0.04251725,-0.33231437,0.09001466,-0.09453117,0.0017454028,-1.2175651,0.28911862,0.26860315,0.9755001,0.3339178,0.14834021,-0.19493271,0.49172965,-0.12994318,0.04479554,0.22973603,0.31556204,-0.37949362,0.462338,-0.46238822,0.42042568,0.07087792,-0.0415823,0.14418529,-0.05766754,0.373786,0.7011236,-0.24485259,-0.026331257,-0.112055086,-0.21324696,-0.014326882,-0.3870492,0.1927041,-0.40648535,-0.49676597,0.5179711,0.48443422,0.3009117,-0.35053816,-0.022314651,0.04112561,-0.056741823,0.16854304,-0.010919746,0.006209785,-0.08807559,-0.442593,-0.32719895,0.4469782,-0.3796024,-0.15075488,-0.26076657,-0.3499111,0.20956235,-0.07138392,0.19120187,0.04393866,-0.8535855,0.15716022,-0.1542887,-0.4606322,0.13039349,-0.024330692,0.25211623,0.06745883,-0.10294444,-0.19946323,0.35791707,0.1786293,0.90760136,-0.20848916,-0.11899281,-0.50276005,0.023677267,0.16208813,-0.17178501,0.22060975,-0.21888013,0.14759187,-0.46810064,0.15704289,-0.066088535,-0.39533672,-0.1226419,-0.3408171,-0.16144739,0.46528438,0.029514248,-0.18691947,-0.05051315,-0.22322316,-0.3771168,-0.23951702,-0.105332635,0.21769805,-0.050067402,0.14555062,-0.27279136,-0.16686875,0.07482069,0.22632283,-0.0058119134,0.40488634,0.55122143,0.04789792,-0.5345695,0.047538877,-0.1649333,0.48895016,-0.29125038,0.0037236756,-0.018886112,-0.62390083,-0.35972247,0.24883513,-0.21027136,0.46010086,0.11037831,-0.2642066,0.8558107,0.11979075,1.1782933,-0.1710648,-0.59313387,-0.020215718,0.7423738,0.0031941046,-0.09537428,-0.23849815,1.0876517,0.5373407,-0.12502427,-0.08400233,-0.28193653,-0.06101158,0.24058224,-0.18206276,-0.19217712,0.00059187954,-0.6688438,0.031372838,0.29350662,0.41041258,0.20033832,0.0878846,0.09914096,0.5750887,0.10163036,0.48613843,-0.75282156,-0.27429092,0.27188966,0.032298222,-0.04906304,0.13196969,-0.42939213,0.3368651,-0.5846279,0.23694994,-0.4934551,0.1124067,-0.19846968,-0.4179869,0.14454482,-0.09302045,0.43604594,-0.5132527,-0.5316303,-0.17331348,0.4407302,0.14660268,0.17502467,0.56866586,-0.12789711,0.12939677,-0.09218553,0.6287447,0.9370987,-0.17901851,-0.23964876,0.34954703,-0.6300843,-0.8629418,-0.055142257,-0.38323805,0.005257742,0.055216443,-0.28061065,-0.43085334,0.21864952,-0.008094018,-0.29959977,0.068048336,-0.6019113,-0.17652653,0.14505012,-0.22376746,-0.25619653,-0.45126536,0.396375,0.6549024,-0.2945282,-0.47346294,-0.19967417,0.29395926,-0.2801761,-0.66968316,0.033548806,-0.15348844,0.48113757,-0.08860315,-0.4167118,-0.19370036,-0.09671453,-0.43439895,0.06417081,0.049084697,-0.23336744,0.20786247,-0.19078363,0.12345675,0.71513015,-0.13345839,-0.24133882,-0.6789662,-0.4126149,-0.70449823,-0.46221906,0.4146836,0.36818418,-0.08327657,-0.75307995,0.034718994,-0.3867157,0.1332088,-0.13724566,-0.32300013,0.42684296,0.123475485,0.7850748,0.07106393,-1.0283806,0.20646586,-0.0115798,-0.20939945,-0.42524797,0.57256097,-0.010967038,0.7710663,0.10598395,-0.033360694,-0.1658737,-0.41506612,0.31575057,-0.35255063,-0.37106588,-0.6574238,0.2973847 +303,0.4648741,-0.16512807,-0.33638826,-0.20528938,-0.34922075,-0.37682515,-0.18545398,0.37966245,0.33574122,-0.23108497,-0.22175716,-0.018944483,0.23971592,0.54295516,-0.23166387,-0.7887561,0.009957754,0.12387542,-0.5704474,0.67667305,-0.5720644,0.2006996,0.093076035,0.3028045,0.094068095,0.2789696,0.27052978,-0.015732236,0.17403044,-0.09324659,-0.038154658,0.43396994,-0.73007524,0.13070989,-0.1964594,-0.27131087,0.03608334,-0.41160187,-0.13571037,-0.800393,0.097738296,-0.9615974,0.4344858,0.14279975,-0.31433252,-0.13689384,0.3482415,0.33864802,-0.4869844,-0.0006079284,0.16169478,-0.2306524,-0.18174821,-0.35181156,0.16500077,-0.3753956,-0.5710259,-0.13805583,-0.6388073,-0.30580652,-0.30802038,0.1732971,-0.40367842,-0.050741784,-0.15068075,0.46572956,-0.48762062,-0.20171326,0.50790906,-0.08884705,0.44625884,-0.4358382,-0.049829006,-0.060526967,0.4267,0.04646049,-0.2570116,0.550826,0.41275468,0.4176624,0.20966841,-0.48918074,-0.17682186,-0.1968963,0.3419538,0.23730558,-0.24678278,-0.5053977,-0.19442013,0.07712849,0.055791616,0.5489682,0.083901845,-0.2320981,0.029862758,-0.07280535,-0.080094986,0.4519818,0.5145988,-0.2622759,-0.3010051,0.18018574,0.5851133,0.12789582,-0.17284662,-0.06767735,0.02330758,-0.5963123,-0.18005751,0.03434004,-0.09928683,0.64806396,-0.14626494,-0.050857287,0.89542377,-0.14202489,-0.04252078,-0.01167831,-0.006889664,-0.11950894,-0.3724264,-0.22405513,0.21015123,-0.6855395,0.11042103,-0.3094657,0.7356051,0.19805591,-0.8137224,0.2598728,-0.559699,0.20893739,-0.034226708,0.6565732,0.73127204,0.48968077,0.70262426,0.75961655,-0.3864973,0.12282122,-0.062173165,-0.5650118,0.251838,-0.2561513,0.1117347,-0.4783091,-0.03072658,-0.25350267,0.08875757,-0.032166123,0.46107513,-0.48645225,-0.114514515,0.41424116,0.757759,-0.3254534,-0.04186223,0.58233654,1.0672743,1.0099138,0.08010439,1.180746,0.20970191,-0.16469969,0.19998851,-0.16789728,-0.664782,0.18028858,0.32871148,0.046603505,0.24524392,-0.08699436,0.01231955,0.4238384,-0.50761026,0.034383558,0.02249418,0.5647908,0.056389425,-0.23028126,-0.48912686,-0.19815573,-0.064778216,-0.0782123,-0.11541168,0.37973595,-0.101835795,0.23637867,-0.1865543,1.3346435,-0.083826676,0.10381853,0.2111381,0.5823442,0.30898637,-0.034395568,-0.049350914,0.4270589,0.29959103,0.11767345,-0.61260504,0.27381352,-0.4151998,-0.5251075,0.027034678,-0.5463709,-0.055607233,0.07858913,-0.45498234,-0.0145057645,-0.028597264,-0.19033371,0.58024555,-2.6877518,-0.2938913,-0.10078642,0.303489,-0.28841037,-0.0629688,0.0065629897,-0.5598818,0.39406446,0.18628937,0.5714607,-0.6887137,0.55528396,0.5991085,-0.52271754,-0.11049878,-0.65277326,-0.12781559,-0.20801383,0.493271,0.114857204,-0.16554557,-0.09344782,0.27524793,0.87207043,0.093153015,0.3002043,0.4296645,0.17989609,-0.03382369,0.6798242,-0.1587988,0.5133556,-0.202782,-0.21395487,0.20469688,-0.35466173,0.42564493,-0.20022823,0.03476812,0.5380484,-0.4803176,-1.1618528,-0.5914172,-0.4288901,0.93808204,-0.4010855,-0.3765608,0.30215943,-0.23839444,0.13338946,0.046674833,0.6222317,-0.07557407,0.39479098,-0.72743165,0.14152883,-0.002272278,0.07190405,0.15663913,0.0016990831,-0.42595312,0.75814444,-0.040094607,0.5482714,0.2572772,0.11675103,-0.3382005,-0.44961393,0.07505357,0.6445188,0.26905882,-0.041265503,-0.17757207,-0.3093766,-0.10357798,-0.19103721,-0.035327036,0.74806345,0.8582343,-0.18362263,0.10525047,0.16056341,-0.014403133,-0.047532883,-0.16923761,-0.23322178,-0.027406126,0.17153373,0.50955683,0.9042537,-0.25452244,0.2801179,-0.14615537,0.4160214,0.109782845,-0.56721455,0.5541537,0.67040837,-0.08389528,0.03781422,0.5641347,0.6960377,-0.45882273,0.59636116,-0.5283776,-0.20891425,0.80391437,-0.06457179,-0.42879757,0.17040554,-0.36246565,0.034037307,-0.86100703,0.31007987,-0.51179844,-0.38629162,-0.39166778,-0.09063649,-3.402391,0.27159238,-0.17625707,-0.046813205,-0.3320545,0.031871755,0.33597878,-0.7643624,-0.5994126,0.15621215,0.21253936,0.668673,-0.13312843,-0.05543611,-0.375497,-0.30270383,-0.036691338,0.2921552,0.050482895,0.28597838,-0.19132791,-0.44852987,-0.1456363,-0.083977506,-0.54388964,0.24196164,-0.6382189,-0.5051308,-0.14237887,-0.6274283,-0.32495704,0.62272894,-0.39990425,0.107819825,-0.09616424,0.13971573,-0.29655555,0.20464768,0.051355608,0.3445263,0.08230041,-0.09904191,-0.0015924114,-0.23903435,0.47130293,-0.05301875,0.51094407,0.0106063485,-0.082400136,0.2196258,0.5891894,0.7338331,-0.20202534,1.0533772,0.27907425,-0.074802615,0.26942512,-0.38745043,-0.41148165,-0.6675774,-0.47410694,-0.2159009,-0.3673074,-0.4914572,0.12233441,-0.35349414,-0.79525787,0.6483612,-0.013191561,0.4183644,-0.11795162,0.1409329,0.41388416,-0.3223648,-0.030369703,0.008368463,-0.15421858,-0.73022485,-0.25805634,-0.62213045,-0.49185622,-4.5322457e-05,0.6015877,-0.46299696,-0.08637753,-0.124424666,-0.13319932,-0.026422154,0.12365436,0.004083737,0.10207264,0.39749897,0.12471159,-0.58820933,0.52128357,-0.025244895,-0.103259,-0.45142847,0.13856459,0.40738207,-0.7617569,0.91181946,0.39743346,0.070159025,0.0730823,-0.78605753,-0.339522,0.10684305,-0.1171488,0.5072947,0.19746272,-0.8893499,0.4703445,0.4405737,-0.662826,-0.71639836,0.35122567,-0.15983503,-0.45890462,-0.10166817,0.3934949,0.070529066,-0.08600222,-0.20883848,0.28783247,-0.515078,0.199282,0.26988667,0.038644247,0.294812,-0.0128846355,-0.32434002,-0.8969034,0.04715585,-0.60103047,-0.24680749,0.4004028,-0.18081093,-0.28543058,0.1608573,0.27271703,0.29811186,-0.29424745,0.24881037,0.025271488,-0.5091419,0.33390334,0.58973014,0.40031955,-0.40810382,0.52447486,0.19415596,-0.12899981,-0.15783651,0.14328343,0.26726705,-0.0753491,0.53694767,-0.37550342,-0.11546975,0.28639084,0.7661847,-0.00903346,0.4937704,0.08764967,-0.005877942,0.42258042,-0.007089982,0.23772722,0.0452234,-0.43098563,0.15838835,-0.16822958,0.1094327,0.5660355,0.30313483,0.19583939,0.33103612,-0.12754656,-0.022615762,0.45455128,-0.027574796,-1.3575407,0.5609754,0.31699422,0.76404405,0.67690605,0.22979297,-0.19034794,0.66006845,-0.2238968,0.085810535,0.53878295,0.011382433,-0.61181027,0.9074096,-0.6433788,0.3543984,-0.103126444,-0.0875783,0.093232796,0.17820057,0.4204806,0.72385305,-0.049665146,0.04310694,0.020096563,-0.16153343,0.10524988,-0.5246471,-0.120999604,-0.3220312,-0.4344892,0.6738459,0.5011865,0.45979336,-0.16261776,-0.085122734,0.05038884,-0.28117415,0.33015913,-0.2376779,-0.055070955,0.25265467,-0.4240803,-0.14038637,0.58157134,-0.040232375,0.15415595,-0.25714538,-0.05624021,0.08670178,-0.2254309,-0.12936115,-0.059044957,-0.8660908,0.08852335,-0.43860304,-0.38748354,0.63236016,-0.4125727,0.04341372,0.16170527,0.15081325,-0.1088229,0.31501836,0.091711245,0.6165912,0.013578672,-0.30725625,-0.22653148,0.10611402,0.061903503,-0.31578147,0.08842276,-0.36887354,0.12308378,-0.5036528,0.6735988,-0.07463885,-0.3567686,0.04264905,-0.316669,-0.17444007,0.5853949,-0.23120962,-0.33495125,-0.16556923,-0.16143742,-0.2656535,-0.22068049,-0.17782895,0.33092272,0.089445114,0.041172743,0.0370688,-0.28433374,-0.048944823,0.6188476,-0.040165484,0.4546076,0.24451481,-0.10552113,-0.13390413,0.10702476,0.2815937,0.48931196,0.13484806,-0.041948613,-0.5201488,-0.20546755,-0.39595604,-0.22292784,-0.1501534,0.27123407,0.096815,-0.15231197,1.027493,0.09020612,1.2334862,0.0861147,-0.43138164,0.07567159,0.59109783,-0.11230003,-0.037378386,-0.37429377,0.8573228,0.6183976,-0.21361366,-0.10161387,-0.5086405,-0.01743864,0.29970476,-0.4447641,-0.103708915,0.05848699,-0.47306645,-0.28083932,0.14308462,0.32003802,0.19152705,-0.0606489,-0.14038421,-0.060459215,0.24060948,0.4259513,-0.6469046,-0.19618091,0.19769284,0.4105152,0.07063143,0.09095231,-0.37351125,0.48002243,-0.6532039,0.30161548,-0.5667676,0.10270249,-0.4229169,-0.43607858,0.118593745,-0.059827182,0.27980363,-0.18120201,-0.31083208,0.06628377,0.37574273,0.13708374,0.21299829,0.76549584,-0.30144906,-0.0008304073,0.12357703,0.63130164,1.2112659,-0.55643815,-0.19169666,0.23487781,-0.46721146,-0.7200527,0.4442794,-0.48552328,-0.068246916,-0.22141185,-0.5537593,-0.7347142,0.052241333,0.15974593,0.0666644,0.091302596,-0.6812363,-0.16822568,0.30197442,-0.38300616,-0.30602878,-0.2302571,0.5043164,0.8262275,-0.2966277,-0.3829289,0.016023828,0.1270304,-0.20919728,-0.46251935,-0.06312752,-0.14939083,0.340349,-0.0063470784,-0.31063557,0.018542558,0.17240638,-0.42647713,0.07417952,0.291244,-0.18573496,0.31063417,-0.28064877,0.021472178,1.0287845,-0.23030978,-0.1633628,-0.46899706,-0.53948444,-0.92510957,-0.37150973,0.4779158,0.06282313,0.07535934,-0.29334,-0.006380017,-0.045499068,-0.06411804,0.027989324,-0.39620987,0.25285158,0.050961412,0.5404214,-0.17423996,-0.77558064,0.08683644,0.2596536,0.06700484,-0.6872202,0.69075406,-0.2747651,0.88920856,0.010796685,-0.1912191,0.047421787,-0.40447652,0.076822795,-0.40438583,-0.026328702,-0.69104725,-0.05597863 +304,0.3058379,-0.1556239,-0.5409863,-0.24325302,-0.17711471,0.0018576934,-0.12324579,0.08489941,0.19743249,-0.20556958,-0.059175346,-0.19982089,0.053835772,0.5520785,-0.078544706,-0.8998862,-0.14380886,0.07522872,-0.6775067,0.35065746,-0.5008762,0.2533513,0.14517382,0.5046208,-0.010323318,0.3118525,0.32755274,-0.16381034,-0.025252085,0.064576074,-0.27682677,0.21331406,-0.6537129,0.051575206,0.17163165,-0.21494436,0.036313623,-0.29432285,-0.25667667,-0.6678458,0.41933548,-0.87905854,0.296563,0.15381888,-0.36403844,0.24107958,-0.14878127,0.30352402,-0.53450304,0.049448308,0.07708561,-0.31953877,0.06727097,-0.1685604,-0.09394952,-0.41230446,-0.4818806,0.0830502,-0.5194701,-0.26704085,-0.25550646,0.075081386,-0.39491203,0.035586834,-0.2828065,0.24667613,-0.545478,-0.20125414,0.33455795,-0.2124442,0.2804298,-0.2768954,-0.12211358,-0.1428111,0.30125368,-0.0452592,-0.18921243,0.2579853,0.33765456,0.58086514,0.08918809,-0.24686524,-0.15406567,-0.046845064,0.23103414,0.40449172,-0.08765503,-0.43787172,-0.23481444,-0.19628134,-0.00086033344,0.34820002,0.008281715,-0.56440216,0.04398732,0.15044202,-0.18769155,0.101052575,0.41659722,-0.37557933,-0.20890018,0.27278057,0.48039946,0.075623974,-0.107785575,0.103138514,0.011843816,-0.54490876,-0.2915899,0.28408232,-0.0975539,0.6988183,-0.10479967,0.2007023,0.7624825,-0.19693811,0.12699112,-0.3488705,-0.28718567,-0.23144317,-0.2902704,-0.0793557,0.2330521,-0.44333854,0.16264145,-0.31297448,0.69511867,0.18247503,-0.87692523,0.38629156,-0.5164745,0.2964607,-0.25963575,0.73992735,0.6552808,0.23668583,0.36819422,0.83908856,-0.67257017,0.053379618,-0.04044215,-0.49016497,0.059538763,0.021320347,-0.0028620064,-0.3931596,-0.05657739,0.02058396,0.0007517086,-0.014778852,0.0023788488,-0.36473566,0.07350773,-0.024503928,0.5328853,-0.43563905,0.061608728,0.7743744,1.013361,0.85072076,0.1769908,1.1874816,0.4346692,-0.16863559,0.2725188,-0.23963386,-0.6470639,0.0709679,0.4505214,0.3871908,0.2793229,0.008316434,0.17990293,0.44627178,-0.2606708,0.22937539,-0.22583853,0.15734197,-0.02563041,-0.07074605,-0.49181396,-0.22865292,0.017043391,0.04530189,-0.122609705,0.2624017,-0.069243535,0.40687844,0.10241675,1.4347373,0.09422595,0.14750545,-0.0638276,0.40486887,0.19696042,-0.14449474,-0.16654465,0.39117724,0.4322022,-0.085753925,-0.7245074,0.09452866,-0.18773247,-0.508241,-0.15154055,-0.45146748,0.07929742,-0.083663,-0.4720097,0.0028078442,0.16260967,-0.33835074,0.46399102,-2.4090345,-0.0967629,-0.23626849,0.23842093,-0.21521927,-0.25006962,-0.022617463,-0.30361846,0.2704696,0.48050097,0.22256204,-0.72617,0.27866188,0.30926582,-0.13505462,-0.09281639,-0.69171894,-0.08217573,-0.06341683,0.27788416,-0.021599503,-0.05267708,-0.12493241,0.30727768,0.5715611,0.038837187,-0.07606644,0.14194681,0.3324348,0.13499689,0.5812077,0.23671624,0.5628203,-0.09728238,-0.13372271,0.31899133,-0.18663344,0.3793938,0.09725721,0.25552255,0.18153678,-0.46688133,-0.8035554,-0.73218125,-0.6434626,1.2953525,-0.59422815,-0.364658,0.35851416,0.090177245,-0.15724032,-0.021515576,0.473042,-0.17727885,0.039408945,-0.69823676,0.11144286,-0.043312643,0.26049554,-0.041345358,0.07045642,-0.22813934,0.6376243,-0.17015727,0.38507235,0.49729654,0.13951613,0.028952671,-0.54142773,0.12698579,0.7822056,0.24405473,0.010495369,-0.15081552,-0.22231524,-0.017358629,-0.15705895,0.16438235,0.35729977,0.9172655,-0.024138134,0.054838262,0.2562988,-0.08605485,-0.07110222,-0.03756591,-0.26117572,0.07328292,-0.008960476,0.517248,0.55876917,-0.11744178,0.31052622,-0.19159888,0.24351303,-0.02176421,-0.46542004,0.6207381,0.923645,-0.10209696,-0.09152404,0.61075187,0.50550747,-0.44696173,0.37927902,-0.5504979,-0.104691654,0.7283064,-0.0028427702,-0.426943,0.13785706,-0.29811662,0.032670055,-1.0358104,0.13146277,0.024230052,-0.3645503,-0.39648598,-0.07115343,-4.5157537,0.24768089,-0.2487621,-0.20089494,-0.110201046,-0.2631065,0.41845196,-0.57236505,-0.5828475,0.12981084,0.03323801,0.41287228,-0.023016023,0.148185,-0.356936,0.045139953,-0.21281508,0.16589385,0.07762062,0.20974873,-0.05366717,-0.39486995,-0.052942015,-0.2913295,-0.62504375,0.11712472,-0.38254073,-0.5506036,-0.24781737,-0.4709563,-0.38013157,0.59699273,-0.31465477,-0.056852184,-0.24313857,-0.097238116,-0.33615956,0.4018167,0.2428337,0.31517547,0.09539977,0.1157138,-0.32912084,-0.35745448,0.10353327,0.06166138,0.2431817,0.21734351,-0.09614064,0.1370813,0.49030507,0.67426044,0.03183379,0.5303016,0.38704604,0.040872496,0.22239639,-0.46982008,-0.22069965,-0.7617193,-0.5425686,-0.2846718,-0.4028155,-0.6450794,-0.2759123,-0.26019222,-0.73577726,0.42829126,0.0118036885,0.07826264,-0.061547086,0.17470981,0.3746075,-0.052969053,-0.021258144,-0.20518658,-0.10989688,-0.6273502,-0.35511371,-0.7126652,-0.5743733,0.21240237,0.85240227,-0.064808324,-0.19537805,-0.10352809,-0.33231178,0.08974747,0.0353443,0.20490687,0.4107649,0.36661085,-0.11731928,-0.6407791,0.5646465,0.02221045,-0.109316655,-0.65611196,0.04126466,0.6548029,-0.7636581,0.65451837,0.29724962,0.1566614,0.2445154,-0.42862958,-0.52811056,0.0918701,-0.25123596,0.53304935,0.1636296,-0.6242508,0.4529494,0.27483246,0.064915344,-0.653134,0.44933012,-0.04917042,-0.23953086,0.2654929,0.30791855,-0.21362135,-0.055603854,-0.14146766,0.08855089,-0.4398443,0.25748345,0.59681386,0.18958661,0.3557803,-0.04153844,-0.17915915,-0.5828367,-0.025101505,-0.6044301,-0.15408665,0.14204942,0.02014914,0.0544476,0.11118833,-0.1500551,0.43877652,-0.36166096,0.15264112,0.08317527,-0.18453696,0.28638917,0.49593508,0.1561289,-0.5163398,0.5846666,0.039246935,0.031699207,-0.18810298,0.022275753,0.5320658,0.35002086,0.29260293,-0.16551341,-0.13870662,0.1468348,0.5973662,0.2049186,0.4872545,0.17774184,-0.036772404,0.4710766,0.26697636,0.15134963,0.025394747,-0.13842425,0.1306037,0.11459185,0.17974475,0.47169283,0.1868886,0.3566044,-0.026861113,-0.15990724,0.22661148,0.21881422,-0.14128709,-0.8990792,0.3892765,0.28576767,0.44880554,0.75404304,0.02511334,-0.04300775,0.36676705,-0.47169986,0.14494325,0.29850584,0.055804566,-0.7091744,0.6703459,-0.6027857,0.29924035,-0.1569811,-0.062783495,0.15556376,0.24928239,0.25830346,0.76494545,-0.007429453,0.06617788,-0.09771147,-0.15275168,0.05491024,-0.42271,-0.0034903747,-0.5218497,-0.35267007,0.39256185,0.36103228,0.32429904,-0.28081608,-0.12205525,0.12495257,-0.16696641,0.037568763,-0.12587167,0.12373541,0.16690944,-0.6697206,-0.5867529,0.59652895,-0.28391498,0.009160883,-0.037730437,-0.48263183,0.20837352,-0.32237956,-0.26370573,-0.019667387,-0.68392956,0.18318231,-0.30904478,-0.360906,0.14847194,-0.5799515,0.38584077,0.17808339,0.025181677,-0.3685851,0.07794098,0.037573017,0.9042369,0.07002722,-0.15564157,-0.44369,0.09224547,0.3704311,-0.25048226,-0.116360076,-0.37215474,-0.10360896,-0.4579902,0.4322552,-0.007619812,-0.2279531,0.026591122,-0.12251715,-0.13227859,0.4921495,-0.3634469,-0.17386173,0.045203157,-0.064893946,-0.2158952,-0.052795522,-0.4170714,0.26096433,-0.02962459,0.112506874,0.18673088,0.04945677,-0.016921034,0.44651872,0.06923548,0.25501573,0.2102196,-0.23431015,-0.37055457,-0.12436405,0.060718235,0.19804558,0.15000273,-0.01837769,-0.30283278,-0.37224102,-0.18493924,0.08098699,-0.25554365,0.28341198,-0.040971436,-0.44944668,0.68641484,0.22168233,1.2412751,0.07336152,-0.31511334,0.0875051,0.4278494,0.12993316,0.10009417,-0.24353899,0.7697357,0.509393,-0.120136455,-0.31244066,-0.33966047,-0.30910093,0.23784825,-0.21146637,-0.0760016,-0.011934102,-0.61213523,-0.33192366,0.10035539,0.3338723,0.16274048,0.17599896,0.005899842,-0.017301457,0.09761793,0.5817868,-0.41081348,-0.11851515,0.27689824,0.08584769,0.11586975,0.2501702,-0.19082625,0.51792634,-0.587145,0.12405607,-0.63282835,0.057670303,0.15815815,-0.24720448,0.12271209,0.0025218038,0.36624497,-0.20948723,-0.27836412,-0.27231228,0.81923485,0.3257075,0.33500415,0.8554911,-0.1725534,0.112247705,0.15013419,0.5431284,1.2372197,-0.13267261,0.056861307,0.2521898,-0.22512099,-0.5249501,0.24653003,-0.20627047,0.07203801,-0.18181099,-0.3933318,-0.5412486,0.2533795,0.043759346,-0.13483393,0.1885212,-0.49424738,-0.30433467,0.5274813,-0.27166316,-0.3342398,-0.5052194,0.44386628,0.7435796,-0.52024466,-0.31678474,0.04691244,0.09250045,-0.17184673,-0.41560012,0.055864327,-0.20075665,0.35290357,0.13212651,-0.37176555,-0.01951081,0.30972993,-0.32216355,0.2002897,0.32151362,-0.20898056,0.19983569,-0.032291017,-0.14808336,1.1457375,-0.02217224,-0.12145496,-0.8144157,-0.5017439,-0.9511967,-0.44627625,0.6226879,0.0783553,0.04038942,-0.47912616,0.04571649,0.09119276,0.11468521,0.057020005,-0.41836765,0.33208826,0.084348455,0.6403438,0.11233669,-0.7758864,0.021124033,0.0292161,-0.11480265,-0.5030729,0.64245427,-0.17887828,0.64166516,0.0063079847,0.057657257,0.027065726,-0.55254734,0.22178903,-0.3935177,-0.26608503,-0.6737449,0.13409077 +305,0.43493503,-0.09905829,-0.58263934,-0.0689099,-0.260718,0.03987533,0.15705337,0.81913793,0.4617213,0.024292722,-0.049894504,0.029540747,-0.1482425,0.29664788,-0.023657821,-0.61507237,-0.0784638,0.07001223,-0.39458996,0.6130882,-0.2427571,0.25030524,-0.32327864,0.6106838,0.33194378,0.37143156,-0.079423085,0.23448646,-0.14698353,-0.37004387,-0.1264443,0.12684771,-0.6998662,0.32801354,-0.052678093,-0.18000671,0.14967959,-0.37720406,-0.40340096,-0.57203054,0.23492807,-0.6603376,0.40586448,0.07821731,-0.07567279,0.101643026,-0.0023965603,0.09523606,-0.21162593,-0.23484097,-0.08623694,-0.039368693,0.21981163,-0.4537663,-0.4349345,-0.49005297,-0.47514024,0.013192609,-0.56357837,-0.19343913,-0.42763445,0.1391235,-0.26441494,-0.272028,-0.093601406,0.6481223,-0.2704752,0.43430558,-0.06281307,-0.2103981,0.06579533,-0.4865994,-0.15018308,-0.078117564,0.15700376,-0.047027454,-0.2545095,0.3197887,0.11549288,-0.09554404,-0.014458746,-0.17155418,-0.51218176,-0.01403245,-0.1941921,0.32412505,-0.02320221,-0.5193161,-0.03745476,0.19594505,0.14110973,0.36970353,0.35214207,-0.07888218,-0.03678843,-0.060710035,-0.12627587,0.96031404,0.33565617,-0.3609262,-0.261773,0.56180704,0.35668254,0.13045457,-0.23156862,-0.25325477,-0.13616097,-0.4757539,-0.15934038,0.19345897,-0.26048186,0.49178118,-0.13846946,0.08252885,0.5737326,-0.32984105,-0.27190566,0.27235416,0.10564799,-0.054969527,-0.43788302,0.077280544,0.25586766,-0.47235632,0.22492185,-0.04872848,0.849785,0.14307308,-0.5586843,0.2278569,-0.7552885,0.058683015,0.027591944,0.373326,0.5431777,0.68222535,0.15100867,0.7593171,-0.3830459,0.102362074,-0.22874875,-0.5203027,0.23049155,-0.20804167,-0.18828474,-0.5203372,-0.041604392,0.16374926,-0.2460509,0.34124973,0.2920251,-0.5561452,-0.32871613,0.58465606,1.0048021,-0.16326974,-0.43221533,0.6894893,1.1721169,0.9395941,-0.08940079,0.84857434,-0.25885326,-0.14450234,0.41274318,-0.14474541,-0.7090199,0.2850614,0.15211105,-0.55723035,0.33903915,0.01918695,0.050472047,0.05594208,-0.18896224,-0.017838486,0.025472175,0.5762774,0.27394712,0.04201609,-0.04783167,-0.4888594,-0.0908283,0.0928209,0.32111806,0.339189,-0.13539739,0.19552156,-0.18218535,1.4959154,0.20604044,0.10875858,0.10344117,0.92401165,0.42945725,-0.061506104,-0.026900798,0.67480016,0.058186334,0.4857434,-0.46183494,0.27118063,-0.38913685,-0.43941453,0.07173209,-0.39669722,-0.08751802,-0.0040282086,-0.4054368,-0.25763902,-0.1726339,-0.14525339,0.7781583,-2.993023,0.18521202,-0.09269063,0.39988112,-0.29926226,-0.45992184,-0.008800603,-0.48374507,0.15350688,0.26310402,0.5138072,-0.6005209,0.059567567,0.39400604,-0.6322442,-0.18153328,-0.3946529,0.40123984,-0.08997249,0.51353645,-0.15941373,0.11665394,0.14055932,-0.08359256,0.80665445,0.27503124,0.14680341,0.45538116,0.29019028,-0.3670627,0.6354198,-0.092221834,0.58078235,-0.30828393,-0.18060821,-0.027085092,-0.60008174,0.58299524,0.023703411,0.080897555,0.5915402,-0.3545093,-0.9820642,-0.3242234,0.16335028,1.3395276,-0.3247761,0.01881501,0.17185551,-0.32744357,-0.28037074,-0.21719666,0.5236677,-0.21395105,0.0829639,-0.21195523,0.046005897,-0.17842971,0.23663545,-0.03940673,-0.14591253,-0.212343,0.6302156,0.12304175,0.29846078,0.014745042,0.12656417,-0.7901813,-0.63885397,0.09830996,0.6306382,0.3367184,-0.028926127,-0.16676874,-0.25647974,-0.39126605,-0.10024588,0.3295923,0.905835,0.4528455,-0.21390852,0.09478749,0.5211614,0.080693245,0.047045246,-0.07057983,-0.29266018,-0.32447273,0.06923129,0.43355104,0.9601258,-0.007929027,0.60506535,0.09696873,0.18368125,-0.3074751,-0.50268275,0.57479584,0.78303725,-0.27522376,-0.34851626,0.4103283,0.45818853,-0.565883,0.40777254,-0.42119676,-0.27177808,0.5414201,-0.14633,-0.42771864,-0.019549578,-0.10732232,-0.44209823,-0.8368415,0.08952826,-0.43707892,-0.58170795,-0.32940513,-0.09719607,-3.7053528,0.18248427,-0.24138933,-0.28703997,-0.14938997,-0.11061427,-0.24669218,-0.643135,-0.4310909,0.12718436,0.14954247,0.5445932,-0.2583374,0.20632279,-0.31333655,-0.38458985,-0.65331745,0.48936927,0.23122749,0.42771834,-0.07594142,-0.33379358,-0.13230832,-0.031527326,-0.47461307,0.15109646,-0.4934207,-0.07246483,-0.15229265,-0.98608595,-0.1740628,0.73069525,-0.34858805,-0.04074741,-0.12896776,0.21985616,0.17817678,0.07043134,-0.1861038,-0.051308714,0.2268143,-0.2077089,0.10708968,-0.4335987,0.22443576,-0.058845013,0.76016974,0.13375485,-0.03466413,0.19765642,0.47983712,0.5151298,-0.103128456,0.79948944,0.1378938,-0.14511895,0.3515126,-0.065824725,-0.07766885,-0.55179715,-0.1740843,0.04129667,-0.24280322,-0.41355252,0.111585446,-0.37072974,-0.7356129,0.5534227,0.14524461,0.50295687,-0.031372406,0.5191221,0.64995396,-0.38193995,0.12100359,0.013980205,-0.047630783,-0.5289059,-0.24890026,-0.45871046,-0.27978754,0.46344882,0.5005201,-0.5158616,-0.3543812,0.094613194,-0.26202106,0.038357675,0.18616498,-0.18907602,0.056247685,0.38662115,0.0372129,-0.46123832,0.38639072,-0.20992792,0.06184178,-0.60134065,0.51901853,0.48274624,-0.7079698,0.60927284,0.11241095,0.054007936,-0.3864901,-0.48836297,-0.027197119,0.002731964,0.00025046477,0.20701809,0.37183616,-1.2530277,0.18645473,0.15669149,-0.42591333,-0.634917,0.60821724,-0.21968925,-0.23911458,-0.51487595,0.40836257,0.46295327,0.04108006,-0.40491128,0.18963532,-0.3045889,-0.017192677,-0.02006286,-0.09894599,0.06532664,0.07303366,-0.19670494,-0.65631145,0.27981597,-0.4423408,-0.38114014,0.69549704,0.054729998,-0.0774388,0.12019413,0.18645848,0.08574135,-0.16135901,0.19135627,-0.08247337,-0.35360232,0.6328145,0.3563664,0.8402404,-0.5695976,0.50181067,0.20153923,0.05587782,0.39316875,0.21788111,0.36948714,-0.03762573,0.5262793,0.48101872,-0.39114904,0.17302701,0.37473333,0.14617217,0.40639055,0.098400116,0.14154747,0.04292074,0.06905417,0.32376295,0.009319164,-0.7554773,0.09880294,-0.3908664,0.07774973,0.3306666,0.034264177,0.04809562,0.13657549,-0.10720721,-0.0022883909,0.10968934,-0.07176326,-1.0574473,0.27696386,0.17132513,0.8815309,0.3523485,0.16549107,-0.17643909,0.82315326,0.07219203,0.10529198,0.5015154,0.25414696,-0.3826247,0.49957097,-0.80428594,0.8496993,0.27791604,-0.09935712,0.18936832,-0.108519554,0.42319095,1.047822,-0.25147727,-0.288878,-0.0375253,-0.25347942,-0.03429912,-0.3950941,0.32552394,-0.6378467,-0.27006865,0.5198079,0.44320872,0.23975676,-0.15373632,-0.14030448,-0.010430237,-0.12710606,0.08027834,-0.16008997,0.15917382,0.17963779,-0.5274964,-0.13304496,0.49499044,-0.054238252,0.23940788,-0.006595336,0.1864778,0.544331,-0.24367797,-0.14174132,-0.02963107,-0.7494844,0.32934284,0.11862853,-0.5050046,0.47667125,-0.30777115,0.37012726,0.22215506,0.1212613,-0.27212334,0.55230635,0.3582595,0.75192285,-0.31426358,-0.1801091,-0.5893757,0.34874967,-0.028988076,-0.10922392,0.22955215,-0.101973385,-0.21263471,-0.60580516,0.08439183,-0.16286571,-0.564301,-0.51920825,-0.18002395,0.034020633,0.66437906,0.11822731,-0.18305036,-0.34253758,-0.37718162,-0.31852978,-0.1285241,-0.05391913,0.28269702,0.02153087,-0.14289229,-0.05710553,-0.183666,0.17107856,-0.0838224,-0.08729971,0.33802706,-0.065415174,0.1367939,-0.20722017,-0.1669086,0.2689959,0.5897646,-0.27288455,0.15317512,-0.018502362,-0.21242633,-0.5693413,0.003298793,0.033754624,0.49095923,0.07641205,-0.3259065,0.41186875,-0.1543584,1.370656,0.0066183684,-0.40064213,0.30283275,0.74466884,0.20203696,-0.09218802,-0.3656243,1.3785957,0.48506272,-0.15119074,-0.19306678,-0.26455423,-0.2120301,-0.034057595,-0.36777022,-0.24622996,0.12579961,-0.36086494,0.10776363,0.23699123,0.18327643,0.2964375,-0.020357795,-0.20742781,0.54356486,0.092319176,0.18152384,-0.34476274,-0.22037956,0.13523328,0.43519568,0.06890762,0.10227548,-0.4137208,0.19905035,-0.63342094,0.4127804,-0.12426183,0.3373223,-0.48047292,-0.52943206,0.14278539,-0.09462628,0.5761486,-0.33863807,-0.44219422,-0.47149014,0.35018945,0.33969948,0.3353356,0.60495436,-0.26003417,-0.16453516,-0.074343555,0.40598607,0.7007662,0.099584125,-0.455369,0.28460562,-0.5644698,-0.8051828,0.35267687,-0.34834915,0.23014088,-0.14408752,-0.010398883,-0.262775,0.27315196,-0.034904823,0.23141195,0.09691333,-0.85916996,0.017324708,-0.039190218,-0.083144836,-0.15899451,-0.2261366,0.24043596,0.9331118,-0.05485695,-0.5362553,0.30044383,-0.032666728,0.07638412,-0.4307991,-0.15211904,-0.36999264,-0.067460716,-0.07900191,-0.45291555,-0.35847753,0.051606834,-0.5549042,0.18996562,-0.28796554,-0.28051388,0.27905813,-0.09181823,0.0527455,0.6249302,-0.43832514,0.21972781,-0.34134537,-0.7244289,-0.50815666,-0.33106127,0.17896849,-0.19231327,0.0026092902,-0.57539415,-0.049069922,-0.36431944,-0.44474274,-0.23004058,-0.47260126,0.20958859,-0.039553583,0.21264651,-0.085733235,-1.2009139,0.43592447,0.22430673,0.09662599,-0.9560662,0.20675212,-0.49113777,0.6871876,0.00090380386,-0.0025846194,0.45841676,-0.5129151,-0.051927842,-0.2536291,-0.055096727,-0.46359196,0.28266728 +306,0.33371475,0.11158384,-0.53515214,-0.1431583,-0.24885668,0.15911151,-0.2230521,0.4590478,0.03518242,-0.3477736,-0.016414702,-0.16157445,-0.09240887,0.28703073,-0.276961,-0.4673312,0.13589321,0.06290592,-0.41021493,0.26993212,-0.372364,0.4501934,-0.09427656,0.28907233,0.07375,0.23105863,0.019775586,0.01685011,-0.05051737,-0.30115727,-0.22629295,0.21739434,-0.5953857,-0.023863077,-0.2421745,-0.36089116,0.05151894,-0.45082864,-0.3320354,-0.6338858,0.16273186,-0.78298265,0.69223243,0.03498051,-0.23771814,0.36347955,0.20573643,0.29908586,0.09287257,-0.0066627073,0.14659235,-0.27815965,0.04101376,-0.15900697,-0.46363956,-0.4970005,-0.58836544,-0.096149795,-0.622941,-0.20647232,-0.26425117,0.1060019,-0.26590484,-0.068681195,-0.08599714,0.26362014,-0.361597,-0.018263394,0.04860028,-0.0838109,0.26591754,-0.6708721,-0.2171809,0.072707586,0.26400787,-0.30762625,-0.08055886,0.3436105,0.28461638,0.45547765,-0.15474252,-0.15105523,-0.34525925,-0.08013809,-0.017177891,0.6519942,-0.23194166,-0.0021563831,-0.06977234,0.118584685,0.38934988,0.4148378,0.17452654,-0.027003406,-0.15818289,-0.012411258,-0.17962895,0.22179745,0.43853834,-0.32139423,-0.2192341,0.5096659,0.46225137,0.22091722,-0.022899896,0.2605277,-0.13567623,-0.45571342,-0.12526101,-0.009191019,-0.20422281,0.42833424,-0.09055793,0.25212005,0.54119575,-0.11679753,0.09630853,0.09836701,0.019483238,0.15205468,-0.13665865,-0.32220533,0.33632904,-0.65693337,0.23003037,-0.12840216,0.4738529,0.16167977,-0.8121945,0.312666,-0.4658665,-0.031425785,0.04261457,0.4260551,0.617454,0.56917226,0.18509862,0.57391006,-0.52736497,0.08413102,-0.012637751,-0.16502984,0.13810709,-0.043013006,0.05339052,-0.5249282,-0.08737522,0.08177199,-0.117554285,0.288033,0.18214193,-0.4519861,-0.08593068,0.29297042,0.64518374,-0.31083468,-0.04933432,0.6420519,1.13583,0.99344146,0.085832015,0.8297904,0.10833415,-0.06465678,-0.046762984,-0.15326981,-0.63130724,0.16993129,0.36162403,-0.35277742,0.4005864,0.13894211,-0.012543614,0.1788788,-0.22058178,-0.24991842,-0.09141064,0.23652805,0.0595279,-0.2657549,-0.39571956,-0.18448721,-0.034917127,-0.12231706,0.13201283,0.30638984,-0.17753956,0.4471548,0.19043145,1.2595685,0.031270254,0.116309576,0.1385599,0.47707638,0.1926231,-0.12004153,-0.10532495,0.2998157,0.1832827,0.21845235,-0.39102316,0.0053152037,-0.2781551,-0.58022785,-0.2039142,-0.3295175,-0.030090123,-0.13644895,-0.25756413,-0.23943932,-0.056909077,-0.34079567,0.575147,-3.0195904,-0.019618485,-0.09825909,0.3385938,-0.19570102,-0.39209336,-0.08148073,-0.428205,0.5300029,0.36125502,0.2729172,-0.4345444,0.2739929,0.46551016,-0.39933437,-0.17197187,-0.5168829,-0.13289328,0.08757203,0.17937039,-0.0002454434,-0.18805812,0.03313465,0.18613802,0.33442444,-0.08778568,0.1546746,0.12428124,0.26762363,0.060565185,0.40552887,-0.021698087,0.45946524,-0.12657072,-0.193168,0.29785377,-0.39485094,0.20109232,-0.056444645,0.20552401,0.3227162,-0.3850278,-0.71817917,-0.3953683,-0.22419007,1.1770288,-0.13641308,-0.38046613,0.2653994,-0.049407143,-0.3712552,-0.100209154,0.28252226,-0.25253204,-0.019555632,-0.698113,-0.07442724,-0.20011587,0.25950083,-0.04454401,0.140057,-0.51327145,0.4390573,-0.07703047,0.4413465,0.31492653,0.24444135,-0.3637185,-0.44252723,-0.14312562,0.851222,0.5940493,0.06209197,-0.15321536,-0.108522125,-0.2322723,-0.16831386,0.29108542,0.42361742,0.72746724,-0.12245191,0.08700323,0.16866527,0.042261474,0.20212267,-0.16737595,-0.1801307,-0.06853937,0.07560652,0.44546914,0.4264889,-0.06268855,0.5129328,-0.057723675,0.19705343,-0.32337007,-0.46275,0.29259858,0.7702688,-0.16755164,-0.26072088,0.6679697,0.30180869,-0.15114126,0.3659415,-0.6464747,-0.4138063,0.604631,-0.15663059,-0.5422247,0.12213992,-0.21720354,0.07573021,-0.7630543,0.24221097,-0.35106155,-0.54191667,-0.48045403,-0.16132975,-2.514414,0.081910275,-0.21530285,-0.16759281,-0.09560299,-0.3087924,0.18274911,-0.5863036,-0.6907305,0.20418583,0.070121914,0.7562548,-0.08213006,0.057513922,-0.17194545,-0.53775764,-0.46975735,0.25803736,0.14667559,0.27063885,0.071819015,-0.2576236,-0.06512089,-0.073992245,-0.4761946,0.068442024,-0.5236276,-0.43550706,-0.25592044,-0.4724905,-0.17472291,0.58944905,-0.3320494,-0.04858281,-0.30335164,-0.045208063,0.045471728,0.14765692,0.17279734,0.21394439,0.091924906,-0.058864716,0.13939619,-0.29145914,0.22239457,0.15875323,0.3653548,0.49080542,-0.13472061,0.030159926,0.47590184,0.70287895,-0.17007816,0.7267291,0.20918725,-0.16773936,0.3891242,-0.35047913,-0.23911296,-0.5284874,-0.29513216,0.012462914,-0.35512066,-0.42241248,-0.15078224,-0.31372145,-0.69831026,0.6118185,-0.08783182,0.2926928,-0.216478,0.53169143,0.3214795,-0.2992155,-0.06586356,-0.08777793,-0.026875125,-0.28213987,-0.32778645,-0.5882329,-0.5005606,0.04639984,1.0001848,-0.26540273,0.08188985,0.19261134,-0.08680528,0.113712475,0.01722874,0.09286536,0.10236318,0.2766216,-0.060996242,-0.5923513,0.47379535,-0.12943108,-0.13952656,-0.60345757,0.038384464,0.6517928,-0.42503136,0.3518016,0.38642433,0.096681006,-0.17683141,-0.83941746,-0.0725911,0.013145952,-0.37110752,0.31338733,0.21867791,-0.7639379,0.45907408,0.39937893,-0.2825378,-0.52306587,0.49984068,0.04587425,-0.22717465,0.13100013,0.3882623,0.17747347,0.044011924,-0.014801239,0.22973098,-0.36475116,0.3302671,0.4312897,0.012514838,0.44098207,-0.27534243,-0.1812013,-0.6696375,0.10978072,-0.3890756,-0.32268763,0.15075435,-0.088448405,0.0028064805,0.34956017,0.15372232,0.3418693,-0.46775368,0.1317881,-0.120236434,-0.19906375,0.2892898,0.3816337,0.4936585,-0.37770906,0.5510802,0.06873248,-0.1419793,0.0063326783,-0.12339784,0.56120837,-0.031043043,0.21047327,0.2242953,-0.30333015,0.09540006,0.6436364,0.10930569,0.17275847,0.12654561,-0.05611991,0.036185544,0.01977353,0.08720497,0.167769,-0.47613588,0.017721491,-0.18690434,0.09169441,0.46326095,0.065665625,0.29501405,-0.19718711,-0.058613557,0.02007243,0.1996021,-0.14736061,-0.99554586,0.3170431,0.13012259,0.76516014,0.2636588,0.26035222,0.04947849,0.44557327,-0.23003791,0.02397049,0.24254544,0.13137801,-0.39425626,0.4817818,-0.6820537,0.4127274,0.12586974,0.0678404,-0.033721846,0.095586024,0.43637195,0.97327614,-0.20068853,0.09607091,0.023779929,-0.2302134,0.18849257,-0.18234818,0.10121626,-0.2770701,-0.13181046,0.7054545,0.2825997,0.24369483,-0.16389892,-0.041227635,0.028177353,-0.28398022,0.17316428,-0.009829074,0.15768786,-0.33167028,-0.25428766,-0.24326923,0.36933956,0.24641286,0.14684714,-0.0060733855,-0.22804669,0.28362873,-0.028087672,0.053409345,0.12723593,-0.63592905,0.12473064,-0.28935674,-0.27126706,0.2049724,-0.21539463,0.2455682,0.19555287,0.057025354,-0.061659236,0.33758375,0.2642865,0.59114677,-0.122294016,-0.19458118,-0.18661675,0.23294559,0.12884341,-0.19169043,0.10928035,-0.109959535,0.24759577,-0.487431,0.37019587,-0.1617831,-0.24211955,-0.08647845,-0.0974594,0.051424306,0.40701398,-0.21005909,-0.053727966,0.027249334,-0.18668294,-0.29290056,-0.2271307,-0.21192463,0.13358408,0.07661589,-0.29981872,-0.14561264,-0.005179155,-0.17977776,0.36286047,0.03619439,0.31736454,0.36607653,0.024797352,-0.5094213,-0.027577337,-0.108564876,0.46141428,-0.10996158,0.02308571,-0.22583462,-0.4252587,-0.30100438,0.29628274,-0.2333637,0.24906418,0.12445002,-0.08361641,0.8550445,-0.034404155,1.1576546,-0.07776807,-0.30487218,-0.08499523,0.44003823,-0.14505367,-0.1733315,-0.27079996,0.9993539,0.56646985,0.024850616,-0.04504357,-0.17935112,-0.10338781,0.16830435,-0.2539166,-0.20085637,-0.07279314,-0.48423713,-0.30083957,0.24199381,0.13455415,0.094204865,-0.11314535,0.04770928,0.43474886,0.14097932,0.32542655,-0.44882706,-0.15135287,0.37949398,0.2699807,-0.09349291,0.12803903,-0.38854128,0.35739297,-0.53508055,0.006267901,-0.31218663,0.058084745,-0.09001444,-0.30950752,0.16404858,0.09432916,0.34205195,-0.18102553,-0.4007339,0.007926805,0.34497333,0.089644715,0.22105919,0.4761858,-0.20732887,0.056523245,-0.081936546,0.37035647,0.93859786,-0.21497743,-0.0073667937,0.46574673,-0.35482386,-0.62957823,0.19813736,-0.42120412,0.14784518,-0.07824312,-0.19580896,-0.211136,0.17878558,0.24816206,0.15036617,-0.007948195,-0.46154937,-0.14098684,0.2145613,-0.396457,-0.19616021,-0.35686758,0.0570341,0.64191204,-0.14351256,-0.33480924,-0.05525592,0.34200004,-0.27150354,-0.5834679,0.26196757,-0.072729036,0.332423,0.047513563,-0.35171667,-0.01551609,-0.011845504,-0.36685824,0.15322065,0.25608918,-0.2750906,0.03945377,-0.3629203,0.21005154,0.65541446,-0.28357622,0.051435623,-0.540995,-0.52790785,-0.88686734,-0.20423384,0.11533836,0.13366626,0.07416511,-0.5644208,0.056364458,-0.35349545,-0.04289022,-0.01675916,-0.20303294,0.33907658,0.22762159,0.2862117,-0.25506786,-0.72559106,0.12314173,0.14809802,-0.14973433,-0.44046447,0.5714461,0.011885865,0.65355873,0.19987346,0.015277349,0.21002693,-0.48634705,0.317331,-0.20640302,-0.0719835,-0.6104679,-0.03029934 +307,0.4368973,-0.09963603,-0.49077997,-0.17946585,-0.19050731,0.021335943,-0.11588429,0.43738922,0.06337033,-0.71963406,-0.22665451,-0.3633191,-0.23405242,0.4478237,-0.380347,-0.49225178,-0.13495682,-0.05045843,-0.505575,0.6072063,-0.33593234,0.40074304,0.28259572,0.24448553,0.33608633,0.31844693,0.3318086,-0.1078343,-0.11547787,-0.35634813,0.07579452,-0.31863928,-0.8004931,0.24252701,-0.14835386,-0.4225346,0.040959936,-0.5546766,-0.3932422,-0.78708774,0.32818845,-0.9437435,0.30700234,-0.07267126,-0.12765124,0.21679713,0.20971622,0.41915438,0.009586071,-0.111483596,0.24453862,0.12954424,0.05393783,0.055741314,-0.29249188,-0.468783,-0.593646,0.0849471,-0.30968872,-0.3915053,-0.17658629,0.11104731,-0.4232456,0.26110727,-0.11430649,0.40413433,-0.5512875,-0.3137233,0.23718931,-0.21144506,0.25205204,-0.6342047,-0.09824153,-0.14491837,0.14632139,-0.21578717,0.091037996,0.40395662,0.16555932,0.53600585,0.0014558776,-0.1493015,-0.2273597,0.021234842,0.18352138,0.45619777,-0.074054554,-0.24439773,-0.17963322,-0.12053036,0.33972746,0.09555689,0.22990432,-0.43591926,-0.017089358,-0.00469195,-0.44882542,0.29545555,0.48060867,-0.22187571,-0.069386,0.37172607,0.5316209,0.2062072,-0.13658687,0.013588445,-0.079753816,-0.3594597,-0.05234955,0.16319346,-0.2368804,0.5871933,0.028460728,0.119243786,0.532998,-0.25661144,0.203545,-0.14249101,-0.17219539,-0.18589282,-0.16609356,-0.2828631,0.23743813,-0.294607,0.29068574,-0.38102862,0.78226376,0.1290629,-0.86899316,0.34891364,-0.49313858,0.08549072,-0.054910194,0.47566557,0.40157938,0.43333724,0.16461144,0.73070806,-0.51672846,0.14971219,-0.19873424,-0.16004471,-0.083423555,-0.15226217,-0.035007622,-0.21027456,0.03262984,-0.12786399,-0.30050436,-0.2101417,0.23076698,-0.44489512,0.012432918,-0.03061754,0.8531332,-0.27877468,0.06577152,0.77631587,1.0691155,1.1663159,0.14387043,1.0265933,0.27573517,-0.23109163,0.10461158,-0.07190882,-0.68740225,0.27995747,0.5361134,0.37180728,0.28356877,-0.021068415,0.04011797,0.33892533,-0.45478123,0.22804897,-0.33002648,0.16933274,0.15225755,-0.1238639,-0.28936678,-0.2229754,0.101259746,0.20126678,-0.061832316,0.14675327,-0.15358941,0.28275004,0.10900832,1.6861753,-0.11348613,0.11538635,0.26345485,0.51907724,-0.08081126,-0.22003141,0.03374203,-0.027964758,0.25800067,-0.03698836,-0.61340487,0.005343131,-0.1848998,-0.57114595,-0.15802813,-0.26482758,-0.0446871,-0.17936592,-0.4954364,-0.13505885,-0.002071355,-0.37862745,0.26789686,-2.3659112,-0.13982952,-0.39712688,0.2638041,-0.4241092,-0.3380658,0.046898123,-0.5151835,0.49630904,0.46838754,0.3713409,-0.5154057,0.4409671,0.43735453,-0.35949543,-0.01964887,-0.5617559,0.06724636,-0.10652467,0.30025008,-0.0052013397,-0.04064134,0.12911676,0.28080887,0.42499235,0.1436712,0.095439054,0.29596397,0.31996492,0.14202213,0.60739416,0.09489497,0.46717098,-0.2325952,-0.010110955,0.49420267,-0.3772728,0.16922699,-0.093209796,0.27540213,0.20752864,-0.71763164,-0.68465483,-0.7928168,-0.5947364,1.2961771,-0.11965756,-0.5874737,0.26327184,0.216258,-0.03352966,-0.09035611,0.37858215,-0.21192291,0.06320441,-0.765349,-0.113228306,-0.20198984,0.20300767,-0.029437108,0.1805538,-0.4584853,0.6289016,-0.27533132,0.43834648,0.42913866,0.25506595,-0.22241528,-0.548914,0.116974175,0.8736439,0.37885132,0.002607139,-0.20998518,-0.05747773,-0.52597964,-0.30567604,0.15902482,0.34540883,0.8214597,-0.010246242,-0.0512036,0.19114308,-0.08163119,-0.050668847,-0.15237907,-0.37296504,-0.20362255,-0.08819539,0.6400983,0.47824958,-0.03833993,0.25527784,-0.2288305,0.41761252,-0.175658,-0.35783213,0.41599312,0.5979837,-0.081662536,-0.19046037,0.39773753,0.63206035,-0.27619964,0.4417315,-0.6046304,-0.355253,0.5263909,-0.09432711,-0.59175986,0.19073078,-0.38509107,0.17230701,-0.886052,0.35321596,-0.32279596,-0.2554427,-0.504026,-0.2946715,-2.43485,0.14378391,0.046134252,-0.37855372,0.010934306,-0.106781244,0.27240536,-0.6171321,-0.89058197,0.016758187,-0.09594119,0.5741648,0.06818888,0.20207559,-0.13228734,-0.058138933,-0.44352403,0.108826235,0.071723804,0.35390383,0.052486718,-0.31411272,-0.26591393,-0.26974204,-0.65578556,0.09455337,-0.5169638,-0.6698774,-0.33013684,-0.52383333,-0.34833926,0.510809,-0.36413887,0.03587554,0.008709515,-0.10246674,-0.17093012,0.34813112,0.32695618,0.21946147,0.1548253,-0.13091204,0.017602136,-0.21125112,0.24900177,0.27047813,0.45774698,0.39498234,-0.23622718,0.2688567,0.5317172,0.68633395,0.100812234,0.72588205,0.2971274,-0.06982346,0.17871282,-0.33757225,-0.16998155,-0.4347025,-0.12878838,0.13443848,-0.22753285,-0.5465156,0.103848256,-0.25276902,-0.71812516,0.42444062,0.000871752,0.018811222,0.057987172,-0.097534165,0.32859382,0.018935855,-0.017470224,0.010115147,-0.007497385,-0.5419841,-0.5149778,-0.82032925,-0.52432907,-0.030765275,0.9978861,0.17486891,-0.22471116,0.07146449,-0.3342608,0.26674542,-0.2703721,0.003376601,-0.0071441256,0.28748468,0.035265684,-0.72761333,0.50849074,0.0013879666,0.036008816,-0.51969355,0.23732087,0.70960796,-0.39217123,0.1667329,0.27877915,0.27658114,-0.026698139,-0.45922354,0.052124638,-0.11763085,-0.35659996,0.13396446,0.010281709,-0.5750293,0.33675358,0.27317542,-0.23765235,-0.8533829,0.44304794,0.12211033,-0.060891904,0.032844476,0.3065203,0.12108505,-0.07935428,-0.12613118,0.24376056,-0.49665025,0.100040324,0.48753262,0.11941191,0.3785582,-0.18732397,-0.2369064,-0.59304744,0.0485887,-0.32932472,-0.17604478,0.10474669,0.042530496,-0.08162161,0.20083825,0.18083699,0.3350894,-0.11488475,0.08018128,-0.12289609,-0.22512436,0.46538663,0.46069828,0.58086455,-0.5215822,0.638041,-0.071405634,0.11589929,0.20313585,-0.11683232,0.4164701,0.23446478,0.02402435,0.17131591,-0.07927521,0.104781665,0.6528986,0.327531,0.48160487,0.15013206,-0.41604525,0.4407136,0.15768385,0.11286749,-0.035410967,-0.6687547,0.12194852,0.18174198,-0.03747848,0.39474863,-0.015619551,0.41199812,-0.14398427,-0.21608554,-0.041400798,-0.021265576,-0.42489854,-1.2878191,0.3819293,-0.008855338,0.76236457,0.6587504,-0.15833494,0.29359534,0.5046067,-0.17442526,0.09403279,0.26620093,-0.012484865,-0.6259386,0.4681866,-0.4579967,0.42315105,0.09216698,0.03752405,0.015036808,0.27301884,0.4354104,0.75154907,-0.18707599,0.03038226,-0.2240572,-0.23549272,0.14041884,-0.47560164,0.24481736,-0.20623466,-0.36281314,0.63879806,0.4119995,0.20040186,-0.057840202,-0.020122698,-0.010813551,-0.0962553,0.3581327,-0.14682572,-0.02092266,0.0637363,-0.67791796,-0.460962,0.49544242,-0.131389,0.14768784,-0.0452554,-0.3561514,0.14766921,-0.044737447,-0.06988994,0.040275697,-0.83644444,0.17207526,-0.41643706,-0.24527617,-0.0848137,-0.07628401,0.3209832,0.1517527,-0.16642393,-0.41301513,0.18009807,0.121384375,0.632439,-0.2690263,-0.3154126,-0.33437577,-0.06574012,0.27096984,-0.29403743,0.15490396,-0.03961203,-0.054555178,-0.61575925,0.39763203,-0.13909085,-0.3397192,0.30573374,-0.26977512,-0.15589367,0.54036695,-0.22285108,0.16244176,0.11592449,-0.032501858,-0.05437805,-0.11432151,-0.2564799,0.16038355,0.11928076,-0.0979088,0.054239597,-0.048079994,0.08755999,0.57301563,0.019029336,0.5760947,0.62674797,-0.0023428288,-0.8112089,-0.16191684,-0.028282711,0.5280053,0.20398529,-0.11118495,-0.230082,-0.44418722,-0.1945272,0.47969463,-0.26964894,0.31996387,0.15184669,-0.5056909,0.6930016,0.23824105,1.296051,-0.051229924,-0.3870706,0.16447185,0.42555788,0.039554063,-0.09858189,-0.48175764,0.85711545,0.61923724,-0.1805403,-0.20531435,-0.26250908,-0.09789176,0.07431146,-0.1567136,-0.13488828,-0.041129146,-0.6466794,-0.43270215,0.06407038,0.24467514,-0.052920647,-0.10801755,0.08702243,0.08766504,-0.028977696,0.69115263,-0.3807008,-0.20358162,0.32293802,-0.07259921,0.10645112,0.06085106,-0.42702594,0.33051482,-0.5327875,0.10877495,-0.2664285,0.11736829,0.012585325,-0.19554664,0.14128736,0.036550414,0.5183602,-0.34953174,-0.47989526,-0.21743432,0.6360552,0.15489545,0.22639158,0.67475325,-0.16003619,0.22414139,-0.011229954,0.70203453,1.0885901,-0.0446813,0.43157506,0.22088124,-0.3691757,-0.34779644,0.15959445,-0.12508938,0.2532707,-0.14186196,-0.16575502,-0.54932636,0.23606455,0.23479474,-0.3672625,0.095994934,-0.5505912,-0.5184507,0.38806346,-0.4214191,-0.35049385,-0.47756007,0.16612294,0.5119439,-0.3075164,-0.117801316,0.057609845,0.17684238,-0.21592255,-0.4854414,-0.02509884,-0.22279823,0.27554756,0.071751975,-0.42765442,-0.17267345,0.09552163,-0.32433063,0.04510058,-0.01858053,-0.46169847,-0.12117449,-0.08028428,-0.004755352,0.82180846,0.11235764,0.06450912,-0.75054497,-0.5033918,-0.9312112,-0.56900215,0.50875264,0.12597612,-0.09786392,-0.34922546,-0.20705344,-0.13749523,0.040484525,0.039624486,-0.35537058,0.31867293,0.21358843,0.7182706,-0.19516304,-0.7453958,0.0953549,0.14701663,-0.054142993,-0.41924614,0.5467128,0.18368505,0.6860819,0.09632652,0.02381737,-0.036333907,-0.53629744,0.20544703,-0.1137251,-0.2254907,-0.59775656,0.35846296 +308,0.536198,-0.20701437,-0.4827424,-0.07080386,-0.31035,0.26972836,-0.18953207,0.4416464,0.13922678,-0.5127216,-0.25114194,-0.1736978,0.11251759,0.06412201,-0.24613309,-0.34992546,0.045546133,0.1771221,-0.5658943,0.38766804,-0.23738417,0.2938529,0.1148939,0.4335906,0.090223424,0.32829973,-0.08611194,-0.061413724,-0.1892325,-0.30265585,-0.07188535,0.2749032,-0.376159,0.22940192,-0.21522284,-0.12596236,-0.020584049,-0.5462603,-0.24474546,-0.6861416,0.19454421,-0.8760188,0.40266582,0.04821173,-0.2223624,0.18657814,0.28150925,0.13011968,-0.054714985,0.006078567,0.17343156,-0.30971405,-0.21444944,-0.25325292,-0.22794986,-0.5049931,-0.5552474,0.010108322,-0.41901302,-0.14592467,-0.31818604,0.22932303,-0.31980947,-0.054942816,-0.04756478,0.6205148,-0.31408855,0.3000364,0.2387725,-0.2870639,0.13410261,-0.58998734,-0.17130816,-0.03981733,0.38228002,-0.23718692,-0.25566962,0.15891764,0.37798738,0.36317423,0.06584556,-0.11777804,-0.30030838,-0.09659337,0.10287523,0.4559439,-0.06800658,-0.29872736,-0.0039038488,0.02244541,0.13486804,0.32232094,0.1647466,-0.20661688,-0.18826298,-0.21106073,-0.28246847,0.2679921,0.35190555,-0.23538034,-0.102096334,0.33907458,0.49189478,0.110015854,-0.08991557,-0.05581423,0.11740763,-0.52841026,-0.1744151,-0.006416491,-0.20302054,0.39671478,-0.2101341,0.43424526,0.6552578,-0.17375143,-0.03431784,0.26075104,0.32887754,-0.060161293,-0.3711357,-0.09926748,0.24666765,-0.45328838,0.037821796,-0.17968495,0.88017315,0.0023894703,-0.5131517,0.08473087,-0.6420213,-0.086654946,-0.0799067,0.3984551,0.58273745,0.52831066,0.2184271,0.62214386,-0.32505935,0.021320513,-0.14983979,-0.42216164,0.03197754,-0.17851551,0.046741366,-0.44020316,-0.08751331,-0.02349331,-0.019213501,0.041517098,0.5577143,-0.47126502,-0.18313678,0.021601854,0.8037811,-0.27061957,-0.24429817,0.8022577,0.8560572,0.74024117,0.11095406,1.0559442,0.0899289,-0.11137812,-0.05215302,-0.066395186,-0.57144564,0.42720112,0.3317888,-0.36694628,0.09910025,0.05557123,-0.067412384,0.39281628,-0.28696817,-0.15188329,-0.16721575,0.19017051,0.1048725,-0.11843411,-0.41467336,-0.3313791,-0.021253217,-0.007830982,0.30347136,0.29148278,-0.07866938,0.48687252,0.012378012,1.4849815,-0.008321873,0.24062191,0.09273654,0.21037541,0.23501386,-0.089618675,-0.047176056,0.3532576,0.1936327,0.21020998,-0.517938,0.17885283,-0.18019794,-0.43193164,-0.18809186,-0.309274,-0.2238431,-0.06752749,-0.4718822,-0.17941464,-0.20582907,-0.39725998,0.46563953,-2.6510315,-0.043027036,-0.076240264,0.40304884,-0.26228568,-0.45336336,-0.06864289,-0.37279317,0.32883772,0.16148268,0.43560204,-0.49704054,0.33391476,0.4995092,-0.49150234,-0.33669832,-0.5487269,-0.004752355,-0.06819458,0.13083048,0.04834861,-0.0035086232,-0.076987915,-0.21826264,0.44521695,-0.14947489,0.1586553,0.44674492,0.48303062,-0.072517596,0.46464744,0.019722562,0.5630664,-0.28704038,-0.32898074,0.26220113,-0.35031065,0.23060977,-0.048002232,0.059002522,0.591,-0.3039206,-0.77808636,-0.7047328,-0.2291974,1.2154125,-0.22356339,-0.3462744,0.1175437,-0.374093,-0.45857129,0.051005535,0.5800914,-0.1289958,0.06754968,-0.7251689,0.05435248,-0.13100404,0.13260104,-0.060476933,-0.114113554,-0.43874213,0.59153837,0.021633549,0.4194549,0.21479201,0.29948395,-0.33054453,-0.2982927,0.012778963,0.91596717,0.38439852,0.2472321,-0.24995613,-0.1158103,-0.30336854,-0.017382758,0.13253061,0.7326284,0.34145838,0.037534695,0.25128514,0.26177266,-0.05383059,0.13768195,-0.09469392,-0.22062886,-0.20077947,-0.04724621,0.509342,0.6205581,-0.004775209,0.501299,-0.039891157,0.37377626,-0.2485324,-0.48913208,0.41577625,0.90603775,-0.19924058,-0.33920097,0.7865333,0.4428318,-0.20574263,0.33182982,-0.5130461,-0.43655893,0.38941067,-0.17030899,-0.59518325,0.15411532,-0.140095,0.12743562,-0.89126873,0.20567366,-0.27964535,-0.6411975,-0.5242724,-0.058088798,-2.6448786,0.29042906,-0.20735906,-0.15307294,-0.17043753,-0.287514,0.11621004,-0.5746493,-0.43102694,0.11487682,0.052581243,0.72373646,-0.10238378,0.16326849,-0.14924765,-0.31589705,-0.09076892,0.1318031,0.14079046,0.31951338,-0.11252741,-0.4467298,0.019383477,0.052836604,-0.2909868,0.18550017,-0.7408978,-0.4897344,-0.12776914,-0.4549055,-0.35905674,0.62386554,-0.33395416,-0.0072284015,-0.201999,0.18866754,0.0061344844,0.2301475,0.07014295,0.24113497,0.11373836,-0.12311107,-0.03054065,-0.2854786,0.46865258,0.03978659,0.22825992,0.48552892,-0.12594701,0.275682,0.3677873,0.47986275,-0.15534422,0.86459243,0.2752221,0.034296583,0.26407376,-0.15576415,-0.47551277,-0.4264979,-0.18199222,0.11360761,-0.4456901,-0.19993147,0.0063593644,-0.34916934,-0.88130534,0.6065478,0.09671236,0.001495455,-0.11620685,0.42743465,0.5433182,-0.3242161,-0.22297247,-0.026476204,-0.1478125,-0.5262385,-0.3046182,-0.46136707,-0.41913533,-0.093345895,0.9951836,-0.23666625,0.20906594,0.055877533,-0.05097833,-0.10410918,0.14708403,-0.060963333,0.02272451,0.6044646,-0.1469766,-0.58012664,0.5543934,-0.3213012,-0.29576612,-0.58516586,0.3390719,0.63230896,-0.63809395,0.54346234,0.45817143,0.08126391,-0.35858425,-0.46834823,-0.043736912,-0.08619934,-0.18875508,0.40357763,0.37588114,-0.8173423,0.32571533,0.18395723,-0.13548748,-0.67990303,0.5460412,-0.06816878,-0.33592632,-0.13250339,0.43036896,0.18333915,-0.046955567,-0.1877196,0.1195593,-0.34050632,0.32422757,-0.012076356,-0.16735399,0.32639402,-0.24214251,-0.10314537,-0.67551136,0.06020292,-0.4950467,-0.41840178,0.25716844,0.10500761,0.0037998727,0.4282303,0.07557649,0.30041504,-0.46031338,-0.035217334,-0.17088161,-0.21822284,0.18657593,0.32436606,0.58698404,-0.48152012,0.5751341,0.035944615,0.07368126,0.11201765,0.23850381,0.4674666,0.044315364,0.5768453,-0.15216948,-0.16369952,0.37420627,0.6908507,-0.0068470496,0.40194178,0.046406116,-0.07683135,0.08465432,-0.037809107,0.2671174,-0.1607484,-0.6887952,-0.014291772,-0.47330508,0.08211064,0.38677683,0.043202035,0.36512542,-0.041110165,-0.35227647,0.086672604,0.23562148,0.15933165,-1.1252214,0.37497064,0.29346657,0.90987223,0.15792488,0.09675501,-0.05887931,0.8216675,-0.21531485,0.11273762,0.28981704,0.12753046,-0.29462793,0.54578274,-0.753911,0.39432353,-0.0639784,-0.10013924,-0.027768984,-0.22563635,0.34945363,0.92102987,-0.18004899,-0.012226609,0.05921229,-0.4936219,0.08826142,-0.4073382,0.08553863,-0.6114295,-0.26626605,0.6206899,0.5386935,0.37030777,-0.23826288,0.04571357,0.16293697,-0.10166336,0.149823,0.1997077,0.15589713,0.03311512,-0.6748919,-0.11250239,0.5375153,0.20154963,0.2611677,0.0041875583,-0.03422783,0.34914765,-0.1982087,0.042841915,-0.12676778,-0.60171694,-0.0033019271,-0.4134283,-0.57104915,0.2778829,-0.3028541,0.16810301,0.17246775,0.11219569,-0.21846724,0.60928065,0.19400942,0.93949795,0.11048392,-0.09801922,-0.40681452,0.2596079,0.1642629,-0.16501728,-0.14078857,-0.26085228,0.14762719,-0.583531,0.3295055,-0.16289279,-0.35968098,0.035381284,-0.053878162,0.031657986,0.47478586,0.04673142,-0.010210226,-0.008971776,-0.101309605,-0.22020523,-0.1592497,-0.12815158,0.3057728,0.21465161,-0.054182965,-0.2269716,-0.12929861,-0.19406064,0.20008208,-0.011926153,0.41087952,0.31603256,-0.04676382,-0.13497558,-0.13717936,0.2399032,0.52474344,-0.07954083,-0.13358891,-0.31079087,-0.47247204,-0.32086423,0.17965065,-0.00971105,0.28875256,0.12653579,-0.029126635,0.92916995,-0.22692323,0.94490844,0.047062505,-0.28113312,0.17050448,0.4010205,0.020609643,-0.06405942,-0.368138,1.0572554,0.42919588,0.09021764,0.0047987825,-0.4468308,0.071372405,0.14406015,-0.21572016,-0.11259306,-0.10569771,-0.6283662,-0.28754824,0.18383572,0.2778816,0.14195327,-0.07818294,-0.0072522038,0.42353654,0.03849371,0.2260975,-0.6358643,-0.18667129,0.16202538,0.45094582,-0.09958496,0.27141163,-0.5511693,0.40066186,-0.5919338,0.09265089,-0.305219,0.21115711,-0.32069045,-0.22901177,0.25190192,0.00881826,0.47601014,-0.3437086,-0.2509081,-0.27726552,0.39059606,0.26965794,0.062965445,0.5124599,-0.28177053,-0.060146153,0.12484525,0.53006285,0.8581,-0.29739803,0.06173465,0.4125043,-0.29115647,-0.5545212,0.3597259,-0.37083766,0.25644353,-0.015573146,-0.20966266,-0.29473415,0.30166864,0.1973954,0.21579249,-0.17064552,-0.48082465,0.08240219,0.35999373,-0.28540748,-0.13305558,-0.1645275,0.20185263,0.3431526,-0.089818425,-0.27888426,0.09929252,0.37006965,-0.10419297,-0.3503355,-0.062394846,-0.404011,0.17352538,0.030312171,-0.34328896,-0.22990482,-0.13726337,-0.44762468,0.16200478,0.0921073,-0.25172442,0.041040648,-0.18743165,0.015006759,0.7111829,-0.18849066,0.15075167,-0.58757895,-0.4056994,-0.6733452,-0.29097858,0.12952366,0.0056011933,-0.0013861805,-0.56225306,-0.030861301,-0.16454771,-0.28069046,-0.17938386,-0.4128461,0.49505597,0.16502193,0.31681195,-0.14409359,-0.9182011,0.2927716,0.006498409,-0.3289277,-0.65700865,0.37621567,-0.07526118,0.6391138,0.033262603,0.05858756,0.40262836,-0.454135,-0.012805939,-0.19503705,-0.11141438,-0.7903126,-0.11552143 +309,0.44965932,-0.012491286,-0.23826784,-0.1366867,-0.31437886,0.101716176,-0.22098011,0.21704859,0.16463405,-0.57991976,-0.033653878,-0.107677326,-0.014138777,0.161564,-0.2535969,-0.7290776,0.14316618,0.049479064,-0.38313323,0.56716096,-0.4356107,0.3760401,0.04324229,0.12789331,0.007785082,0.27588117,0.38987175,-0.058422975,0.0017961413,-0.1523394,-0.15686563,0.24553709,-0.63687915,0.4521041,-0.042616468,-0.23839067,0.13887474,-0.27591467,-0.17623952,-0.5533166,0.15832746,-0.6538628,0.26468623,0.14513141,-0.18974724,0.2782632,0.21895248,0.21468097,-0.11308496,0.07889122,0.13743596,-0.15942061,-0.116549134,-0.2537914,0.09203362,-0.45714283,-0.4159016,-0.0821794,-0.586559,-0.44691956,-0.21304591,0.16307838,-0.32118967,-0.137227,-0.12535065,0.43755835,-0.38789898,-0.17369556,0.26489893,-0.32077312,0.19234887,-0.5288471,-0.16886652,0.053588435,0.20563078,-0.1404899,-0.1856145,0.3630055,0.076297544,0.45964378,0.07842146,-0.28091693,-0.15592128,-0.22324327,0.22324073,0.46088713,-0.22844931,-0.43576038,-0.096295685,2.226606e-05,0.10610615,0.064138375,0.18205222,-0.22534409,-0.08958802,-0.08638117,-0.12738921,0.39750665,0.4835028,-0.46380997,-0.10863851,0.24527457,0.39816368,-0.025452368,-0.08010955,0.0037576593,-0.05999583,-0.3602889,-0.26493955,-0.00798963,-0.061855376,0.47252095,-0.15902916,0.25174177,0.47919813,-0.23205343,0.16702087,0.031545974,0.025633907,0.15825167,-0.20490783,-0.20338032,0.31312552,-0.67995304,-0.1712704,-0.3419224,0.76004934,0.12039408,-0.6308775,0.30422986,-0.4322505,0.036446624,-0.06817872,0.4950326,0.5667689,0.42222828,-0.018100474,0.6815476,-0.5311543,0.055025645,-0.29218072,-0.18313044,0.13442001,-0.10166806,0.17657995,-0.3346434,0.012465667,0.117734134,0.121244535,-0.121423125,0.21223143,-0.6089439,-0.10775768,0.16233835,0.68067425,-0.28705552,0.010785263,0.65435374,1.1696911,0.80739605,0.105092496,0.9369353,0.047718905,-0.10033597,-0.093550645,-0.047277864,-0.4208158,0.20197876,0.40352035,0.7224667,0.1524213,0.06864306,-0.10091931,0.24837048,-0.31371656,-0.20703965,-0.17909564,0.5433512,0.015626295,-0.00011508539,-0.3636312,-0.1492497,0.11454609,0.12494828,-0.016588364,0.3180973,-0.1543846,0.1817218,0.059442677,1.1944697,-0.09306176,0.16196781,0.08307053,0.4066356,0.2634265,-0.08366559,0.13821763,0.26742357,0.20980012,0.11107563,-0.43663025,-0.08834988,-0.1776151,-0.5468403,-0.040024888,-0.36711106,-0.060097806,-0.04992187,-0.43408358,-0.19515662,0.018778011,-0.12562588,0.31406996,-2.9007874,0.007203538,-0.16946863,0.29760283,-0.23910466,-0.22198145,-0.0829051,-0.39019823,0.52698654,0.42982638,0.3816856,-0.5305895,0.30380118,0.458161,-0.37400776,-0.05797123,-0.4941906,0.005290745,-0.22430584,0.46658736,0.018734422,-0.20542446,0.027276723,0.290318,0.49352965,0.084651224,0.19502057,0.1659131,0.14282319,0.00948851,0.3282252,0.12737441,0.3016094,-0.333746,-0.11583507,0.2696861,-0.29163188,0.009271257,-0.14385018,0.026637815,0.22006294,-0.26255026,-0.65827006,-0.5698332,-0.34314194,1.1583049,-0.18830335,-0.59894204,0.26093385,0.07516149,-0.13567972,-0.050909847,0.22916009,0.014075559,0.18931614,-0.66018724,0.16244093,-0.12699786,0.058963932,0.036980562,-0.058486316,-0.6799762,0.70266634,-0.216324,0.433699,0.372119,0.34303904,-0.25484213,-0.42920226,0.06936569,0.94977653,0.48367178,0.08901264,-0.025368657,-0.2250367,-0.03939294,0.01507907,0.3085009,0.6099121,0.7803022,-0.056551732,0.18263602,0.3565455,0.03392306,0.09284076,0.009030728,-0.3693114,-0.011808269,0.0019408092,0.72072214,0.53281283,0.04100976,0.38066864,0.070111565,0.28518254,-0.21614486,-0.48015577,0.34596795,0.67862815,-0.07057515,-0.16978943,0.66014844,0.55292517,-0.05672809,0.48500454,-0.6312628,-0.5221623,0.43226874,-0.22340038,-0.43921274,0.100933634,-0.31987065,0.1335913,-0.58829945,0.465468,-0.36248407,-0.6217348,-0.54384196,-0.24736331,-3.2972555,0.15468323,-0.2585017,-0.16394153,-0.07240133,-0.13673326,0.24045272,-0.6298528,-0.31755286,0.3136261,-0.09814466,0.57621616,-0.117844656,-0.019552348,-0.24303159,-0.30083427,-0.117386244,0.2621076,-0.013908058,0.0765272,-0.028765664,-0.21715108,0.15560842,-0.077294044,-0.33920917,0.1515859,-0.3644693,-0.6034839,-0.13585556,-0.35336605,-0.19133013,0.5932527,-0.34801465,-0.018635504,-0.21215545,-0.040481977,-0.06881818,0.21939199,0.22730523,0.23595786,0.103812926,0.062165186,-0.17007618,-0.30623096,0.29333794,0.15038669,0.33560026,0.416775,-0.16654205,-0.026098669,0.43515068,0.3139395,-0.03537848,0.7586934,0.21206012,-0.09256831,0.36768812,-0.2477442,-0.32966617,-0.5853272,-0.4075388,0.06507135,-0.31284374,-0.31290329,-0.08757134,-0.30750608,-0.65021044,0.47883752,-0.08369504,0.27525824,-0.21102414,0.14523414,0.23619343,-0.10098477,-0.14859757,-0.12457548,-0.06475826,-0.46129352,-0.21891835,-0.7453611,-0.3106704,0.16948691,0.79592633,-0.2851969,-0.08805095,0.1004091,0.15612826,0.14138559,0.08278825,0.07160897,0.0020084828,0.34476697,0.062279567,-0.64731216,0.50712514,-0.18422717,-0.09775225,-0.45721623,0.058964767,0.4952042,-0.6163104,0.37199107,0.3896444,0.1808221,-0.13247778,-0.5993696,-0.1808601,0.061376873,-0.33920634,0.48739198,0.14428738,-0.8739428,0.44878718,0.23705016,-0.47269452,-0.68828434,0.5727393,0.021839783,-0.2501947,-0.012650445,0.2451276,0.20898128,0.036919795,0.088749975,0.21743569,-0.5356067,0.2682557,0.20853817,0.029430108,0.39434966,-0.14283875,-0.23933503,-0.54197884,-0.15858585,-0.52445364,-0.23386133,0.019071031,-0.0989252,-0.14496441,0.40832448,-0.0824069,0.48868418,-0.24479392,0.17941289,-0.0012213737,-0.3607093,0.4819649,0.46699464,0.466466,-0.35226846,0.51018333,0.011515854,0.06013982,-0.2673188,-0.04167296,0.379362,0.090568,0.2335052,-0.14610487,-0.08682843,0.36438978,0.7855643,0.19689384,0.36142927,0.013569582,-0.1467035,0.35497627,0.108921096,0.12727201,0.09811766,-0.3743049,-0.18130352,-0.012788663,0.069879845,0.3550202,0.11703211,0.48836383,0.06712569,-0.2705531,0.09778094,0.17378713,-0.09858515,-1.1360233,0.28502744,0.07738898,0.65261054,0.65832394,0.113726474,0.107746765,0.44346696,-0.18788132,-0.0020478629,0.17911091,-0.0019715354,-0.3368834,0.6213168,-0.58607745,0.28073788,-0.124953486,-0.0069854828,-0.18947333,-0.0023039225,0.35999545,0.72201806,-0.16308215,0.13903534,-0.13868588,-0.1964524,0.067890696,-0.3049494,0.12398377,-0.43416163,-0.3277265,0.62001,0.2826021,0.32879215,-0.070504315,-0.04094824,0.11429809,-0.13239895,0.13238302,-0.03934279,-0.01668353,-0.06016317,-0.42900276,-0.37998968,0.56805146,-0.17061506,0.026203416,-0.059852608,-0.088649005,0.09661504,0.09823198,-0.095547065,0.10931111,-0.53222156,0.16333528,-0.20017375,-0.2638539,0.4860581,-0.32150397,0.08138091,0.16658568,0.058873106,-0.15512474,0.059919696,0.20401281,0.3601163,-0.049789254,-0.25246787,-0.29221907,-0.022372179,0.06809507,-0.07630835,0.022975534,-0.12842008,0.26780623,-0.67334205,0.33319858,-0.061276227,0.003089629,0.28742558,-0.21344957,-0.041974574,0.4512525,0.08090803,-0.05662099,0.253685,-0.15534928,-0.07882127,-0.22170861,-0.24208954,0.13281068,-0.10509639,-0.01795136,-0.018478893,-0.1420052,-0.11802977,0.2877295,0.0629669,0.15711492,0.21849573,0.050747603,-0.44373477,0.15591487,0.08264783,0.26731783,-0.004643023,0.115928,-0.21492305,-0.5294821,-0.30973634,0.10349108,-0.15732431,0.0524356,0.052140437,-0.25784346,0.8722395,-0.009648927,1.0704924,-0.018436775,-0.3639718,-0.08300722,0.46737188,-0.21836588,-0.01271082,-0.25018582,0.9971074,0.54357415,0.004381068,-0.057058048,-0.41578528,-0.017320268,0.22658585,-0.19949971,-0.1531179,-0.13772225,-0.5916587,-0.36581314,0.19524391,0.2881968,-0.03569252,0.047183596,-0.12778075,0.27194738,0.22265172,0.3975864,-0.74236417,-0.026768468,0.26985946,0.21274695,0.16807985,0.1722173,-0.23521191,0.3869121,-0.5537796,0.18405423,-0.19846706,0.00030069053,-0.12627771,-0.31154338,0.11282006,-0.01859676,0.3800862,-0.23687367,-0.38500124,-0.13907385,0.3810464,-0.04898086,0.135937,0.5344535,-0.16501492,0.04967898,-0.117832795,0.44626063,1.0611534,-0.17251709,-0.12824449,0.3643983,-0.39878082,-0.67950076,0.09213553,-0.33238292,0.03812124,-0.04811059,-0.45079982,-0.38311717,0.17165512,0.22957946,0.030199585,0.1392531,-0.5515744,-0.28088325,0.20333359,-0.31705576,-0.39587003,-0.18428764,0.31247306,0.7080595,-0.28174794,-0.06997158,-0.059469245,0.39309523,-0.30169493,-0.6764015,-0.009748675,-0.24449714,0.27886802,0.16078381,-0.13740347,-0.12646283,0.1789324,-0.3620355,0.025721971,0.35268247,-0.17975748,0.04933797,-0.10914438,0.15482977,0.7097374,0.071779504,0.12740937,-0.64090157,-0.45344073,-0.7511924,-0.44520196,0.17939194,0.17452379,0.017766366,-0.4832697,-0.077077255,-0.13902506,0.046384573,-0.14481443,-0.2299627,0.39137694,0.221109,0.3369615,-0.17857711,-0.70918655,0.08056677,0.13129997,-0.021194763,-0.3360501,0.38530958,-0.123219855,0.67620486,0.1264428,-0.117245056,0.023456853,-0.5245162,0.17925361,-0.23397177,-0.2312477,-0.59004503,0.14277215 +310,0.38479254,0.19589856,-0.43219572,-0.03823799,-0.09245123,0.036281783,-0.3232078,0.13253044,0.0783573,-0.38424438,-0.11883875,-0.09031707,-0.0071807024,0.14085999,-0.15039809,-0.6625779,0.074144594,0.10063219,-0.46505547,0.75913745,-0.38821608,0.39463732,-0.02045621,0.39256877,0.15773343,0.3586566,0.28704613,-0.15568161,-0.14525735,-0.3825273,-0.24558489,-0.09487892,-0.74597347,0.1007092,-0.4139366,-0.3202868,0.18652876,-0.29057032,-0.4810483,-0.75256413,0.33486253,-0.7568789,0.48386234,0.03173255,-0.21057346,0.38344756,0.121468864,0.43531677,-0.24984786,0.030641198,0.017689545,-0.08769965,0.12286586,-0.3471541,-0.18303466,-0.40470824,-0.4279711,-0.019256907,-0.6291305,-0.16272219,-0.37928575,0.17417479,-0.29411486,-0.07516386,-0.16349699,0.300868,-0.46365812,-0.10074745,0.094176784,-0.044104286,0.1777295,-0.6546265,-0.1641629,-0.084642984,0.29902,-0.15022942,-9.2327595e-05,0.39837137,-0.052707206,0.2579667,-0.047148716,-0.26010233,-0.20923838,-0.21062596,-0.03361221,0.4970238,-0.1879628,-0.31108502,-0.02988811,0.013506608,0.213271,0.3816606,0.05175001,0.08650773,0.05556214,-0.08927806,-0.22247133,0.5138859,0.5113469,-0.38879296,-0.17245948,0.19295785,0.4859995,0.19473961,-0.27392888,-0.02566872,-0.08690619,-0.39339343,-0.25547662,0.15540592,-0.2049606,0.67632776,-0.016207865,0.15125492,0.45677954,-0.22062026,0.21548001,-0.03846108,-0.0408657,0.22611459,-0.19362144,-0.30999678,0.41776133,-0.56406194,0.22454715,-0.39326784,0.54581755,0.17125021,-0.5080493,0.24202155,-0.46986347,0.0043779314,0.0003761649,0.5841444,0.45117015,0.4025919,0.25149757,0.785688,-0.4718043,0.057847578,0.031636894,-0.14777705,-0.056361496,-0.1290266,0.09288246,-0.39065537,0.073688336,0.0075935,0.11257171,0.043538578,0.12648982,-0.31911454,-0.031199643,0.24741085,0.9922849,-0.24853095,0.23630174,0.79509157,1.2585325,1.015049,-0.044254504,0.87044007,0.3316533,-0.34420007,-0.030173227,-0.17751704,-0.5777917,0.121134855,0.36527035,0.10886047,0.33580938,0.084098,-0.12602746,0.1260986,-0.5955691,-0.024114069,-0.15967844,0.12256384,0.03997605,0.12696412,-0.48968357,-0.22778848,-0.07450707,-0.0823675,0.19148119,0.20784502,-0.28675693,0.20770156,-0.063388065,1.1124446,0.1350034,-0.01599043,0.18274704,0.8890676,0.35349226,0.10319867,-0.051943246,0.3499653,0.34672782,0.09677537,-0.44946423,0.009359136,-0.5135081,-0.2882472,-0.06476213,-0.3270889,0.21380794,0.117533006,-0.18480383,-0.07528372,0.061429024,-0.23453884,0.40090224,-2.9068532,-0.066824965,-0.20238091,0.400561,-0.20061941,-0.13373138,-0.10849446,-0.44452348,0.70466197,0.37345907,0.43244654,-0.4044924,0.26421553,0.4451774,-0.44821027,-0.07395164,-0.5208054,-0.11394634,-0.12190478,0.4841937,-0.04216275,-0.08139922,-0.13350847,0.1070223,0.5090902,0.21089725,0.05122631,0.07563245,0.21789877,0.009958991,0.4753947,0.15380467,0.32453945,-0.18411621,-0.095421486,0.31459188,-0.41306823,0.23043884,-0.2515522,0.12745498,0.5003685,-0.53326005,-0.7628478,-0.53665453,-0.2498552,1.1693599,-0.09083451,-0.6428248,0.14660789,-0.21578197,-0.21189316,-0.089072995,0.33019787,-0.19732888,-0.033196215,-0.4026859,-0.090003,-0.14513339,0.26579165,0.10256301,0.16645606,-0.44259128,0.5006401,-0.01893429,0.40091255,0.22936869,0.35389164,-0.23090193,-0.43361863,-0.01719829,0.8628475,0.4092314,0.039407305,-0.32058376,-0.26673532,-0.24257994,-0.04503431,0.14768681,0.716239,0.82893366,-0.16578542,-0.07739145,0.3115314,-0.005536952,0.03630658,-0.0582318,-0.44686848,-0.15423825,-0.034000438,0.59209293,0.57383144,0.10335622,0.29042816,0.040420942,0.47581545,-0.20790684,-0.2756684,0.34744602,1.1242253,-0.0945837,-0.15567937,0.45240238,0.6888257,-0.37535802,0.5484685,-0.76655525,-0.36314854,0.4916919,0.005659831,-0.4047094,0.12808634,-0.36539465,0.13181512,-0.7015878,0.27892134,-0.31477505,-0.32456264,-0.66506535,-0.19482763,-3.1195035,0.0347664,-0.28504404,-0.068943694,-0.15117958,-0.19679596,0.22826488,-0.4369066,-0.5361248,0.15740454,0.08859878,0.73219556,-0.10016549,0.09406563,-0.3853443,-0.27856344,-0.3949344,0.28446886,0.31351444,0.27020025,-0.20453084,-0.26407272,-0.017586121,-0.20187892,-0.24922441,-0.16400845,-0.4551172,-0.25546947,-0.26835796,-0.6394867,-0.11160215,0.6108033,-0.29940173,0.1172469,-0.20666216,0.008606536,-0.06562343,0.16294234,0.25899264,0.3686893,0.07703404,-0.052468974,0.07551666,-0.436719,0.29808238,0.34227508,0.24319194,0.22523475,-0.0039585107,-0.059411045,0.255004,0.43955746,0.012970322,0.79909897,0.28607005,-0.2134925,0.40826055,-0.4347042,-0.45429304,-0.71017516,-0.34313488,-0.06540434,-0.18871415,-0.5108746,-0.19399747,-0.51017135,-0.66622084,0.48989436,-0.041326694,0.26205915,-0.022296915,0.4085231,0.45574483,-0.24365483,-0.033513457,0.08633418,0.009921908,-0.37903976,-0.09630162,-0.64874786,-0.51328,-0.041503496,0.6136967,-0.17825265,-0.13853082,0.20387462,-0.14188327,0.1551232,0.1395771,0.16489069,0.03860993,0.5901436,0.13245721,-0.7877302,0.5574516,-0.12076487,-0.18822753,-0.59383875,0.2649999,0.64167774,-0.70428807,0.36210135,0.50464004,0.08248267,-0.28359053,-0.5091902,-0.14000659,0.037287124,-0.14489163,0.27524668,0.08066459,-0.8107074,0.23917682,0.064418994,-0.26545292,-0.70588887,0.73310614,0.028704586,-0.5720297,0.06957143,0.3730569,0.06624,-0.009339935,-0.12543151,0.21394433,-0.2306744,0.05903977,0.30567232,-0.042676654,0.3653057,-0.17180957,-0.19117273,-0.763406,0.20160888,-0.4977633,-0.26225662,0.4824571,0.0684583,-0.10543784,0.2938075,0.13976096,0.32829162,-0.20920713,0.26224783,-0.21788149,-0.2569305,0.5861331,0.3826719,0.40726772,-0.52129215,0.70456344,-0.0019576591,-0.11369912,-0.03684782,0.01805222,0.32130808,-0.17911313,0.2999623,0.08485455,-0.14448641,0.160321,0.50564605,0.35910514,0.38753325,0.15440607,-0.0419221,0.43803746,0.093133725,0.11111637,0.19363369,-0.47880262,-0.047771987,-0.13460049,-0.015665924,0.22341044,0.074667566,0.23599532,-0.061392073,-0.10593904,-0.04685379,0.04366388,-0.11137343,-0.88933223,0.3689787,0.16911456,0.73146963,0.46127027,0.10339846,0.06014749,0.64606124,-0.24685144,-0.101410456,0.33669785,0.18587068,-0.34849256,0.5366356,-0.46073714,0.59137565,0.17633626,0.0059611714,0.02002355,-0.08844851,0.42545095,0.862125,-0.2545064,0.042684913,-0.094086766,-0.20823976,0.07082177,-0.18493733,0.19923462,-0.40730673,-0.29635167,0.5948876,0.41264623,0.35645503,-0.040386625,-0.026175002,0.01786616,-0.3096591,0.23141588,-0.030437315,-0.086707056,-0.027910968,-0.5821357,-0.23805799,0.40673795,-0.15863271,-0.015805347,0.0031664541,0.16547121,0.21257146,-0.06552466,0.17089489,0.012484914,-0.7089395,0.21444178,-0.28048706,-0.06794631,0.5145311,-0.2111264,0.31909364,0.079813875,-0.033307776,-0.1739907,0.24652708,0.17506826,0.5065302,-0.074928455,-0.33727393,-0.39339972,-0.008269561,0.12471689,-0.320908,0.068784095,-0.30225796,0.13666622,-0.7710581,0.40381575,-0.2830157,-0.13376358,-0.115560435,-0.17661853,-0.1654634,0.48728272,-0.058169775,-0.16458814,0.056961834,0.059294265,-0.26796848,-0.18103325,-0.13860409,0.015509265,0.15362416,-0.080251,-0.1692063,-0.079471506,-0.24032304,0.5644366,0.043047648,0.38305125,0.0867571,0.083625756,-0.46646425,-0.09885884,-0.093710706,0.4856831,-0.08312704,0.018510511,-0.13609861,-0.42176566,-0.3355381,0.4798887,-0.03297365,0.20513602,0.15044318,-0.06038161,0.6648157,-0.026465824,1.1961733,-0.04467184,-0.43298477,0.04169879,0.7136988,-0.28631106,-0.12018335,-0.29454198,1.1243067,0.5413078,-0.02743273,-0.23638399,-0.200053,0.13230999,0.10023586,-0.15792537,-0.12472361,-0.12102543,-0.324476,-0.20937277,0.15767416,0.3660734,0.15064386,0.013475512,-0.022581449,0.07687207,0.16188718,0.31651244,-0.25315997,-0.2239833,0.58889765,0.029518118,-0.1491087,0.16669445,-0.22762418,0.33252695,-0.4302161,-0.04414851,-0.469388,0.008687685,-0.0063795024,-0.43051058,0.3110227,-0.111257136,0.36188215,-0.4840908,-0.43458727,-0.21254209,0.21268323,0.35726443,0.21024834,0.42751008,-0.15805563,0.0030218214,-0.062819935,0.56869894,1.0702498,-0.23405191,0.012589446,0.10847855,-0.4887264,-0.49191788,0.03633795,-0.5333181,0.107575454,-0.17125408,-0.2530391,-0.43628162,0.2298754,0.06982935,-0.067119725,-0.0043561202,-0.7537508,-0.2784529,-0.015984539,-0.08829873,-0.26416007,-0.35519975,0.21461456,0.7270613,-0.08342231,-0.30424047,-0.029277897,0.15320478,-0.18055913,-0.68968093,0.04899637,-0.37075323,0.20446455,0.14908552,-0.23479143,0.00019688053,0.25435638,-0.54638076,0.19220015,0.26318222,-0.46384567,-0.10711026,-0.13696952,0.065937996,0.6524733,-0.17424262,0.046257395,-0.3015531,-0.48899576,-0.71776205,-0.34984085,0.38998005,0.26757145,0.15164652,-0.4313307,0.032748833,-0.26604065,-0.0068917614,-0.10122008,-0.42568296,0.24279603,0.2220246,0.6200885,-0.24649803,-0.9905858,0.08056717,0.05726065,-0.29025486,-0.53804356,0.30208597,-0.056133933,0.68075037,0.08058391,0.005030121,0.33468392,-0.5819493,0.08383245,-0.18508856,-0.13441435,-0.710269,0.18138373 +311,0.4684005,-0.29137334,-0.55873173,-0.17480673,-0.29207385,-0.2072631,0.046012904,0.70513207,0.5075603,-0.27191126,0.02975729,-0.11627386,-0.116190456,0.5752968,-0.10203159,-0.7368686,-0.09105702,0.34881762,-0.38353977,0.2786114,-0.6111765,0.14184888,-0.096349075,0.61587995,0.2162508,0.1406962,-0.09097897,0.12189257,0.14896433,0.13986804,-0.042627707,0.37210786,-0.46238562,0.18353371,0.088857695,-0.49682721,-0.06489174,-0.7732414,-0.29011375,-0.72510153,0.28541648,-0.58572364,0.7360155,0.13399781,-0.42667243,-0.18766755,0.03703135,0.3151584,-0.39186522,0.013378799,0.15452917,-0.20715694,-0.055483148,-0.16989422,-0.2900345,-0.13622384,-0.6129087,-0.08854243,-0.31630886,-0.134686,-0.0050230245,0.28083718,-0.25825632,-0.04088575,-0.3268095,0.85703295,-0.32257575,0.038635407,0.24185258,-0.2071888,0.2170313,-0.5967638,-0.13823716,-0.16526632,-0.019159412,-0.16389836,-0.528572,0.3029373,0.17277494,0.600894,0.023636926,-0.24805783,-0.4261319,0.14568487,-0.08545396,0.65884286,-0.4332982,-0.33809614,-0.2727548,0.1878832,0.23521805,0.2251042,0.14699258,-0.41532552,0.084115036,-0.0022281788,-0.13643998,0.5527413,0.5380192,-0.28202206,-0.2308155,0.16188668,0.32523528,0.122294694,-0.09142816,0.2148692,0.03785711,-0.58446884,-0.2839738,0.07716837,-0.13751024,0.46980068,-0.094217986,0.0053437245,0.6189314,-0.27574873,-0.25212085,-0.07853776,0.071629554,0.23453006,-0.73840994,-0.63231885,0.4749374,-0.36154887,0.15712357,-0.06476854,0.7025884,0.19925351,-0.8259119,0.33516127,-0.65449864,0.14652663,-0.1638642,0.48108226,0.8039862,0.49149665,0.40060616,0.8038423,-0.4643385,0.18895093,0.044157937,-0.108121015,0.03366648,-0.01518929,0.2465017,-0.51688427,0.0019254684,-0.3065899,-0.4114092,0.32692787,0.18969844,-0.62717086,-0.22142047,0.21691318,0.66842973,-0.3659371,-0.07923826,0.93348885,1.3700706,1.3820934,0.03268179,1.3316827,0.36231005,-0.19690591,0.14422789,-0.21975422,-0.7055715,0.19468194,0.3605456,-0.25036743,0.48718452,0.20692764,0.10949382,0.5670855,-0.4640091,-0.15730502,0.0037262847,0.22035237,0.19206543,-0.2210513,-0.63095593,-0.26034537,-0.06815311,0.0828995,-0.32809314,0.19615966,-0.31941512,0.26989582,-0.10177832,1.4802302,0.1445924,0.07735616,-0.03808002,0.4082805,0.23054697,-0.29658726,-0.019055061,0.19741063,0.32784116,0.019900708,-0.64304787,0.012822729,-0.26905367,-0.3384143,-0.23650561,-0.23229192,0.05264437,-0.2549567,-0.36923495,-0.28560722,-0.093157165,-0.2524941,0.37749472,-2.4919508,-0.27911937,0.056348767,0.47526643,-0.15461063,-0.47088557,-0.23992105,-0.2856949,0.17239295,0.2713796,0.48768607,-0.56205064,0.549176,0.30658114,-0.5905805,-0.07041297,-0.7998385,-0.09512837,-0.11744211,0.18059371,-0.045028534,0.05325588,0.10300341,0.16821271,0.6409537,0.08833312,-0.08380123,0.2262662,0.5217661,-0.09564831,0.7347631,-0.1323713,0.6421273,-0.38817313,-0.22344169,0.18820077,-0.568371,0.04843353,0.31971684,0.07256234,0.5709024,-0.59815204,-1.1213433,-0.6090257,-0.09808645,0.8907175,-0.21870667,-0.28506553,0.4489751,-0.6467616,-0.49794233,-0.23327778,0.35915878,-0.09465738,-0.1636406,-0.76239705,-0.05703058,-0.034960967,0.21242024,-0.029504867,-0.014477518,-0.3693148,0.650551,-0.24311529,0.47818175,0.6378618,0.15545917,-0.39311534,-0.37890255,-0.093010716,0.79094696,0.3523381,0.116555095,-0.14413337,0.07222123,-0.04363923,0.041565634,0.21050578,0.7600178,0.79463065,-0.2598935,0.060526513,0.42427263,-0.19013649,-0.021830462,-0.062539466,-0.39787605,-0.27742508,0.23038378,0.6137971,0.7196438,-0.23223153,0.4435444,-0.015161053,0.22731651,-0.027657455,-0.45133913,0.19405493,1.1018788,-0.099460416,-0.42787316,0.7048035,0.24916087,-0.4676635,0.44332924,-0.4775996,0.10672334,0.37967718,-0.16715872,-0.2847651,-0.018578572,-0.25722873,0.0049996595,-0.9637989,0.29524982,-0.060522977,-0.86206263,-0.5101168,-0.30571947,-2.9547057,0.27940968,-0.23537415,-0.08375972,0.14991984,-0.19161853,0.10127889,-0.7166164,-0.73928696,0.15178709,0.1105537,0.47626552,-0.14544672,0.03511825,-0.21504249,-0.33006558,-0.40676343,0.33221045,0.1188539,0.40223664,0.32805803,-0.45922998,-0.022987844,0.0102524,-0.6330178,0.052286502,-0.6199892,-0.32442173,-0.07228351,-0.8576244,-0.3588988,0.726323,-0.14203802,-0.12319484,-0.30148867,0.094482474,0.025647586,0.31183326,-0.09741575,0.355156,0.14162011,0.07028748,-0.080441125,-0.02802114,0.055837784,0.121420175,0.37741297,0.14806259,-0.2975798,0.16123877,0.7276032,0.99980354,-0.118253425,0.85336757,0.6259767,-0.18348356,0.20776488,-0.35719296,-0.20748311,-0.5946668,-0.45036194,-0.20886718,-0.57166153,-0.3532444,0.08828186,-0.38977537,-0.9116331,0.577483,-0.12581539,0.18687536,0.14224233,0.29775605,0.38077796,-0.23086353,0.08861787,-0.23546715,-0.19174576,-0.37576276,-0.371745,-0.5113094,-0.52298284,0.14619544,1.4938358,-0.2682323,0.14994396,0.18253736,-0.35994053,-0.055836216,0.28704378,0.0140809575,0.28764343,0.3326416,-0.14914784,-0.5278886,0.00912081,-0.06641454,-0.12532376,-0.5677827,0.18752284,0.83387065,-0.5939507,0.9777531,0.021589572,0.062009525,-0.16902776,-0.7230446,-0.4064989,0.2074946,-0.10927935,0.65699065,0.34669808,-0.81527543,0.3969178,0.3712467,-0.36899385,-0.7580065,0.318099,-0.11812368,-0.2515666,-0.20158137,0.3579898,0.19173583,-0.13065217,0.0032880849,0.37605304,-0.39482898,0.21993865,0.19473638,0.012172645,0.19389246,-0.19668697,0.040249344,-0.8979563,0.024887638,-0.5556717,-0.21167606,0.13273588,0.06872511,0.14784132,0.0847702,0.19995667,0.5097706,-0.31151542,0.19726568,-0.18372874,-0.38160935,0.30067846,0.5759547,0.2680747,-0.44401696,0.3794552,0.045373198,0.02182417,-0.2320221,0.033088397,0.41820353,-0.00027370453,0.28722584,-0.1407403,-0.3524502,0.1875113,0.67087597,0.07792946,0.30909908,0.025798379,-0.05669812,0.20757885,0.15029007,0.18744653,-0.15408324,-0.41921666,0.15652446,-0.050837215,0.3042258,0.50889975,0.09593748,0.23263845,-0.2412024,-0.17059487,0.2520386,0.21247075,-0.06300292,-1.3038765,0.3719311,0.04743785,0.842448,0.6314258,0.17524092,-0.17172866,0.36917254,-0.27473682,-0.03143932,0.5296479,0.042585872,-0.32701382,0.5680716,-0.6743067,0.7088915,-0.042158548,0.05781865,0.056498088,0.28971437,0.6571151,0.7683891,-0.19990115,-0.09522318,0.0075521288,-0.13371386,-0.04777889,-0.45590365,-0.03355814,-0.5528357,-0.37011775,0.8245936,0.49677238,0.32907888,-0.3196263,-0.15928258,0.26434895,-0.083825916,0.27663207,-0.088805206,-0.111077316,-0.16322842,-0.6910909,-0.18575674,0.63204294,-0.055949662,0.02419557,-0.02316366,-0.19840178,0.34109572,0.106958434,-0.30809548,0.095705725,-0.7153014,-0.19937268,-0.3348007,-0.36610377,0.42913237,-0.34365866,0.037742183,0.10883882,0.16525789,-0.333235,0.47109345,0.22470793,0.85717624,-0.1240725,-0.028565867,-0.18452364,0.31574714,0.147439,-0.037048634,0.16613303,-0.37524176,0.023886291,-0.5944898,0.5225663,0.08210312,-0.38491362,-0.005616952,0.13008128,0.18496136,0.43572375,-0.43025225,-0.11925828,-0.12940319,-0.1393133,-0.32333115,-0.46148387,-0.35499462,0.41196978,0.034263883,-0.09524382,0.039871678,-0.18384123,0.006845738,0.52527386,0.12339842,0.19752832,0.22168303,0.2082542,-0.39544696,0.07125763,-0.14938487,0.4025442,0.08067305,-0.22635311,-0.28456295,-0.22877236,-0.25264433,0.023518898,-0.15854454,0.3634127,-0.13197942,-0.4378009,0.9793241,0.20396072,1.5073792,-0.26927623,-0.34259808,-0.06782117,0.46867684,-0.0036099092,0.19296208,-0.29214457,0.946841,0.62901413,-0.089049436,-0.15180343,-0.53681856,-0.15461455,0.24457246,-0.30128786,-0.34351158,-0.033222828,-0.62058836,-0.2317633,0.24185148,0.08824194,0.24152108,-0.09934039,0.2575529,0.3213761,0.08824552,0.22380473,-0.3180072,0.14757767,0.20870915,0.56424606,0.22020245,0.19419442,-0.35221758,0.25715986,-0.6902191,0.45602047,-0.31456676,0.1953945,-0.18864042,-0.281745,0.19693266,0.106887795,0.22429748,-0.16199178,-0.1426993,-0.097277336,0.8636549,-0.07366944,0.088124745,0.7459343,-0.27804658,-0.07549624,-0.08470762,0.36838153,1.1529298,-0.10380993,-0.14510423,0.29438028,-0.27546895,-0.70676285,0.33054093,-0.18361984,-0.111909024,-0.1124589,-0.19654898,-0.64510614,0.06457372,0.061797317,0.022001771,-0.045806695,-0.42980728,-0.23925166,0.47112226,-0.3176678,-0.12918948,-0.2476533,0.2623286,0.6607867,-0.20096263,-0.59962225,0.17699738,0.2439076,-0.18312454,-0.40709546,0.025803728,-0.4899712,0.29502597,0.13121867,-0.5994211,-0.038054403,0.1788671,-0.4551992,-0.1836391,0.33258963,-0.21209721,0.27526376,-0.2504472,-0.36863652,1.1529698,-0.03135599,0.48932743,-0.6330962,-0.6341962,-1.1632211,-0.21008329,0.25544944,0.11742105,-0.11928842,-0.8584614,-0.010508001,0.025555177,-0.41128695,-0.036748055,-0.39046127,0.42610896,0.16255316,0.36879092,-0.22487141,-0.8002231,-0.05214174,0.2896128,-0.07725346,-0.4740731,0.53809804,0.0704624,1.0130985,0.07176748,0.05455676,0.18030314,-0.41149303,0.33934945,-0.29059452,-0.36738938,-0.5733917,-0.33199573 +312,0.47078353,-0.11855066,-0.7087036,-0.10919465,0.017046558,0.15623331,-0.29674533,0.4230941,-0.008211942,-0.5600849,-0.14987685,0.19703712,-0.18192169,0.27797288,-0.2848237,-0.5248858,0.00093505014,0.2923364,-0.33530828,0.37928736,-0.529774,0.3703206,-0.096659735,0.23517871,-0.02078071,0.08062203,0.4316219,0.15452594,-0.036112323,-0.2015606,0.22115809,0.29112595,-0.57926834,0.39884037,-0.09607733,-0.34686595,-0.0682821,-0.20371014,-0.24961585,-0.75886905,0.3882356,-0.93842846,0.6840992,-0.09062147,-0.37771896,0.16962062,0.15357915,0.18821573,-0.24663165,-0.014917811,0.11269759,-0.21545075,-0.40941855,-0.15056378,-0.09085362,-0.33756644,-0.6789111,0.090769544,-0.59855855,0.09657097,-0.32264093,0.3165485,-0.3266787,0.19515404,-0.16319522,0.5165189,-0.35795724,-0.2224172,0.20940956,-0.11914653,0.13015844,-0.74274623,-0.09162323,-0.19259666,0.10877088,-0.2171591,-0.14211385,0.23759057,0.18595831,0.6277853,-0.016179534,-0.24489951,-0.35429728,-0.07066636,0.18588568,0.40830606,-0.27346757,-0.4463773,-0.309271,-0.11971824,0.53287023,-0.047834046,0.0910354,-0.11013693,0.06707917,0.059064653,-0.2234448,0.3610617,0.69308937,-0.39254567,-0.15641485,0.5256355,0.70174974,-0.117889866,0.005162821,0.08935534,-0.1268486,-0.48861635,-0.18568245,-0.02713871,-0.24079186,0.3899838,-0.14968953,0.1519788,0.4164147,-0.25773466,-0.06678191,0.29499784,0.000779074,-0.013241272,-0.19261466,-0.54152864,0.37295553,-0.3719586,-0.0036248176,-0.28123024,0.63809055,0.01094226,-0.7824741,0.37920597,-0.23550497,0.06697101,-0.079199634,0.7731114,0.67912865,0.6610194,0.19348803,0.8523994,-0.5662221,-0.14680853,-0.01641308,-0.1629171,0.078813,-0.12744223,-0.18520729,-0.32028463,0.08356668,0.15720524,-0.17785653,0.065686,0.6748456,-0.4820611,-0.18106171,0.037432414,0.5302294,-0.38786513,-0.102695234,0.77072644,1.2341207,1.0764757,0.0489401,1.2877532,0.29555386,-0.14836214,-0.27577782,-0.038492315,-0.8454683,0.3962559,0.4593132,-0.10530105,0.47270474,0.218543,-0.13776071,0.36397582,-0.62361276,-0.313748,-0.16290428,0.45056474,-0.032855876,-0.010110745,-0.56257755,0.0029782148,0.3516397,-0.024750806,0.283505,0.3687687,-0.3873895,0.48166677,0.17818049,0.9336253,-0.31269258,0.22926813,0.13575676,0.25003302,0.19554329,-0.05958345,-0.01730962,-0.039735757,0.43192118,0.012832422,-0.618934,0.01078889,-0.1688353,-0.5599512,-0.31107503,-0.16081418,0.09592675,-0.060563482,-0.0023391615,-0.23862149,-0.039906006,-0.4753167,0.228161,-2.3320491,-0.25636408,-0.13984719,0.22964098,-0.14949605,-0.43411872,-0.23344499,-0.4878403,0.56740385,0.32477358,0.43738672,-0.5670813,0.40409455,0.27367273,-0.35729665,-0.16417429,-0.6219663,0.06277374,-0.19351003,0.37617314,0.062963955,-0.33018652,-0.030186048,0.354477,0.5621447,0.02774883,-0.060392655,0.5531711,0.20235561,-0.008707175,0.29554394,-0.004249912,0.60787964,-0.49457186,-0.30322936,0.5317227,-0.46205285,0.20318407,-0.28828576,0.18382035,0.25865176,-0.49203014,-0.96953046,-0.6985767,-0.2888317,1.5624828,-0.36186913,-0.5937621,0.10834455,0.013330107,-0.40050924,0.03287223,0.35254493,-0.38735098,-0.0062542283,-0.8489171,0.026769735,-0.12802733,0.3507985,-0.11598861,0.05068094,-0.65618074,0.61014616,-0.27358672,0.5278892,0.44336012,0.3793844,-0.43362778,-0.5032177,0.064056225,1.3401307,0.50439036,0.12044974,-0.27887,-0.10142549,-0.1687563,-0.10317286,0.0864339,0.50574875,0.7474315,0.075504124,0.09229489,0.22617052,-0.12414937,0.10697523,-0.06018565,-0.44494453,-0.2499269,0.15550177,0.7247268,0.35593864,-0.20071037,0.2595354,-0.10233085,0.26955622,-0.19437853,-0.37527606,0.52030075,0.86698246,-0.26492766,-0.43511522,0.75154793,0.39748648,-0.22040719,0.7138592,-0.74260956,-0.47863337,0.16961966,-0.1423735,-0.24571507,0.08425302,-0.45962617,0.2950742,-0.91186273,0.40664613,-0.31812716,-0.69755036,-0.7514128,-0.19829409,-3.2488973,0.23227254,-0.21544477,-0.076711334,-0.11902834,-0.20945357,0.5164852,-0.51291424,-0.72063416,0.1257039,0.16992092,0.67734784,-0.03664093,-0.102412075,-0.116238795,-0.29610988,-0.1565809,0.20235474,0.34718233,0.19346283,0.23726964,-0.51952046,0.029396841,-0.21359554,-0.4489318,-0.19426605,-0.4625201,-0.26785666,-0.21932903,-0.47089434,-0.28149536,0.63099515,-0.39651057,0.044682544,-0.27510962,0.19843353,0.023327768,0.37403056,-0.31282732,0.1809997,0.13029388,-0.3543638,0.18974553,-0.17413968,0.3529814,-0.014376977,0.21346578,0.45359483,-0.55741954,0.023495693,0.5442054,0.6997754,-0.02263528,0.9181434,0.5689714,-0.09174791,0.12475993,-0.17014049,-0.25891495,-0.57553107,-0.29722854,0.12695378,-0.50793445,-0.33353564,-0.046695974,-0.35677212,-1.1252878,0.6726032,-0.2649191,0.32071292,-0.07855213,0.4619915,0.30880404,-0.038114734,-0.13052474,-0.17007142,-0.22591455,-0.2948722,-0.42957255,-0.7215861,-0.48086688,-0.2040764,1.3063018,-0.16435812,0.060903564,0.01254339,-0.017343283,0.19285771,0.09080986,0.2457502,0.11580718,0.31000522,0.14307001,-0.6279584,0.20645434,-0.31958386,0.010053525,-0.61902577,0.14369221,0.6959865,-0.56744504,0.36594582,0.59370935,0.08626097,-0.2690225,-0.7729517,-0.12756619,0.10873151,-0.09273263,0.62645745,0.34952858,-0.8516203,0.7129227,0.3431268,-0.32080188,-0.7946736,0.37766123,0.053010747,0.08697668,-0.14173214,0.46624425,-0.19827828,0.020155929,-0.29976895,0.19658555,-0.35563594,0.26509267,0.12160147,-0.13853222,0.6308421,-0.4536847,-0.15821497,-0.6822853,-0.07129433,-0.72806126,0.006403177,0.052077875,-0.0048983255,-0.014278495,0.11539734,-0.046721797,0.7146379,-0.5467444,0.042837657,-0.12408941,-0.46267134,0.47441167,0.6516788,0.3715434,-0.27506536,0.6185516,0.007923521,-0.11743653,-0.49545592,-0.09470913,0.5744337,0.009791017,0.16984454,0.061996046,0.12936264,0.30777806,0.64710927,0.34390244,0.47586286,0.08192326,-0.2935714,0.16157572,0.11220518,0.2830796,-0.027095221,-0.43756703,-0.14267768,-0.16495946,0.11942502,0.46558952,0.18138696,0.60070646,-0.27340582,-0.21008825,0.1166428,-0.0035300346,-0.06493114,-1.2419446,0.5857377,-0.005725008,0.58585286,0.41080257,0.05194082,0.09407386,0.49437472,-0.11083751,0.008208286,0.18221903,0.054528926,-0.3255615,0.5404076,-0.69408214,0.35471052,-0.044141926,0.09643555,-0.017570872,0.0032535149,0.5241041,0.8857132,0.04799893,0.23975998,-0.081029736,-0.0896529,0.24665986,-0.30083704,0.41157407,-0.36084655,-0.1465244,0.889905,0.2343687,0.5401375,-0.09197552,-0.16190082,0.026025971,-0.143411,0.19823082,-0.16476782,0.1534794,-0.37076408,-0.52652305,-0.24590541,0.36699268,0.5276288,0.15691978,0.078438774,-0.2519673,0.20623611,0.029152807,-0.053010423,0.007120506,-0.46583194,-0.11647114,-0.24189447,-0.27737486,0.29898354,-0.38515538,0.1628609,0.1757337,0.08578697,-0.4679982,-0.009877091,0.18010423,0.64907587,0.11370211,-0.22005361,-0.24662375,0.08101165,0.27045006,-0.36956698,0.10794711,-0.3143973,0.13344349,-0.6579867,0.41553137,-0.2904576,-0.3170973,0.4598292,-0.24717912,-0.1139382,0.47119838,-0.21763131,-0.13035299,0.19050871,-0.20033875,-0.17292716,-0.40629193,-0.26135474,0.065471336,-0.08917032,-0.026422087,-0.13900341,-0.024702348,-0.1575205,0.40987095,0.2402905,0.10499908,0.6260771,0.24653251,-0.4967044,-0.090307474,0.031149754,0.66544753,0.0046463576,-0.13622367,-0.5784031,-0.6728195,-0.2105965,0.28287023,-0.0765481,0.12570389,0.1112016,-0.4224993,0.6211684,0.06941192,0.8901622,0.028275423,-0.3192988,-0.1999746,0.7309989,0.05127174,-0.17744239,-0.20572431,1.020816,0.69478863,-0.26488063,-0.1012477,-0.57755226,-0.12548915,0.20238596,-0.33205777,-0.33621165,-0.19580522,-0.61051995,-0.26720476,0.30485427,0.42187995,-0.033637784,-0.094452366,0.18172987,0.32593074,0.17946087,0.26546595,-0.5538183,0.164903,0.5632567,0.13299687,-0.039852627,0.12418527,-0.38291252,0.15737702,-0.697224,-0.050334197,-0.24233821,0.09583926,0.005070528,-0.45567575,0.3205856,0.14642893,0.2595321,-0.14966123,-0.3182368,0.011952902,0.48649704,0.031068513,0.07719103,0.7120184,-0.31111652,0.14374259,-0.0068207243,0.39712965,1.2038133,-0.23118803,0.17449428,0.10049543,-0.2458226,-0.64036584,0.3309511,-0.39920232,0.25598356,-0.18255237,-0.44611895,-0.5527657,0.21717669,0.17241032,0.062174734,0.17062117,-0.3578698,-0.42498603,0.056128856,-0.3623408,-0.063114494,-0.1567567,-0.08529287,0.60956836,-0.3836014,-0.28096244,0.07575267,0.6606339,-0.15822728,-0.72100043,-0.14417471,-0.24287303,0.2646163,0.15671286,-0.2652138,-0.09708619,0.016476393,-0.42262834,0.191705,0.22191039,-0.25449777,0.038391396,-0.32021806,0.250171,0.48263714,-0.06385783,0.13292998,-0.5398435,-0.37040117,-1.094698,-0.21443762,0.32989663,0.23539744,-0.059853777,-0.855325,0.08644732,-0.38228434,0.07979318,0.080891095,-0.3547854,0.3469583,0.14751007,0.46651077,-0.044511136,-0.6468863,0.04242966,0.024743594,-0.14508882,-0.33268547,0.77214694,0.055997536,0.8654014,0.06853946,0.20202805,0.10525792,-0.83992296,0.17208593,-0.21958512,-0.29197907,-0.6131825,0.038733426 +313,0.34391734,-0.24701786,-0.61385053,-0.107481025,-0.05177248,0.18940642,-0.27397615,0.22550598,0.04047276,-0.53085905,0.028432822,-0.044953663,-0.12066711,0.358293,-0.11470342,-0.47156727,0.008449086,0.20114414,-0.50952303,0.24767794,-0.52037627,0.38254303,-0.10119032,0.17918661,-0.015829977,0.27312222,0.24049939,-0.0424001,-0.18664637,-0.1698312,0.1383495,0.015496961,-0.5666715,0.18450557,-0.037504364,-0.37184018,0.008534503,-0.40877715,-0.49464858,-0.5950306,0.41800994,-0.82690173,0.50986934,-0.002005905,-0.19691592,0.19943507,-0.0074485857,0.33533257,-0.30891982,0.19769557,0.2969848,-0.23835577,-0.2011898,-0.16953593,-0.020778792,-0.27409208,-0.5652874,0.057441313,-0.5387412,-0.019021956,-0.24262692,0.17454024,-0.40564385,0.18986899,-0.25051528,0.3928957,-0.46576625,-0.13225314,0.24619831,-0.0845576,0.25922057,-0.544039,-0.07978327,-0.070864595,-0.02423271,-0.14328259,-0.029244678,0.30517462,0.08872022,0.55974567,-0.054342173,-0.12671329,-0.30706814,-0.052145313,0.19289993,0.54812396,-0.046693016,-0.2984536,-0.16269454,-0.10581699,0.18714263,0.0011386137,-0.04622399,-0.20362444,-0.09808969,0.14005218,-0.24747133,0.2413849,0.59183,-0.25264254,-0.083228804,0.3884825,0.5089119,-0.07654204,-0.038309466,0.11863079,0.085902594,-0.5031365,-0.2290488,0.08512474,-0.18028669,0.45876935,-0.10497309,0.34164822,0.67883086,-0.3777396,-0.0148249185,0.0027043105,0.02314939,0.0065939864,-0.13783321,-0.4276261,0.26341766,-0.5278463,0.019988561,-0.13456751,0.82637316,0.05656079,-0.67076474,0.3244491,-0.38062745,0.16714239,-0.1763129,0.6826876,0.62077874,0.49311885,0.24462868,0.77877724,-0.6051379,0.13269511,-0.048738535,-0.3423009,0.060819853,-0.08160555,-0.10607276,-0.35556784,-0.036628954,0.07198462,-0.13002142,-0.06360081,0.6029746,-0.35668468,0.035306074,0.049680926,0.76269096,-0.39089808,-0.013806427,0.59202754,1.1693611,1.1143243,0.027629098,1.099994,0.36767516,-0.2585166,-0.07497408,-0.24964997,-0.7705814,0.22694692,0.33826917,0.07470643,0.29782063,0.10811874,-0.2600795,0.47309986,-0.5826463,0.113534756,-0.20012353,0.2746378,-0.10705019,-0.08546083,-0.4632269,-0.17645095,0.15129709,-0.025651967,0.085104465,0.29236725,-0.28520998,0.3606776,0.0310626,1.4515622,-0.12325177,0.17367464,0.12229053,0.40349242,0.11931164,-0.241436,0.012459715,0.09361281,0.5106384,0.044068154,-0.6893758,0.12107625,-0.19059515,-0.5385357,-0.2951449,-0.28967947,0.004645254,-0.19326659,-0.47254476,-0.13421187,0.015714558,-0.39481673,0.32482007,-2.4583323,-0.047141533,-0.06816233,0.34933648,-0.24767238,-0.24663876,-0.075377226,-0.39012858,0.39796504,0.39843675,0.4424835,-0.5857473,0.5031236,0.4204726,-0.28673553,0.0036333243,-0.5956407,-0.11349325,-0.16212752,0.31933302,0.14536722,-0.13082089,-0.15911415,0.168871,0.47748005,-0.20302178,0.076726325,0.2705182,0.35877132,0.029614445,0.42687738,0.1258489,0.5325626,-0.50140935,-0.18279769,0.4011962,-0.4724553,0.16923505,-0.21961358,0.15819123,0.32811287,-0.39840528,-0.8924299,-0.50273603,-0.17682041,1.3098052,-0.2314319,-0.43544897,0.27753788,-0.117512114,-0.2557751,-0.032531932,0.37971827,-0.21489404,-0.11684804,-0.8215631,0.004784129,-0.1737414,0.36093134,0.013030372,-0.03917018,-0.4377182,0.5764894,-0.17415498,0.646397,0.45972922,0.25775516,-0.20376574,-0.3609494,0.12628083,1.1232353,0.39789346,0.13624196,-0.32497516,-0.12515996,-0.16658163,-0.097872086,0.08050768,0.3688454,0.8029932,0.02038001,0.26994234,0.2087856,-0.11559876,-0.011601168,-0.07316845,-0.36199743,-0.1119325,0.030382443,0.5681343,0.5036156,-0.06383156,0.37351513,-0.08428459,0.2420805,-0.27065244,-0.34891504,0.4447728,0.77658623,-0.09982768,-0.33778164,0.65783656,0.5564558,-0.21976423,0.5390712,-0.65060556,-0.4429044,0.3455435,-0.20329306,-0.33907315,0.24708247,-0.3859708,0.18615104,-0.86564523,0.4371071,-0.23117904,-0.6408095,-0.69528073,-0.3179847,-3.5320303,0.13668247,-0.23685865,-0.19978468,0.07975599,-0.044978555,0.45877847,-0.5495415,-0.41872433,0.11628356,0.11020233,0.73362595,0.15409862,0.033859894,-0.26691115,-0.04638617,-0.31295058,0.19071582,0.24543591,0.109469794,0.15267378,-0.5598662,-0.0036216737,-0.3089458,-0.38454404,-0.00293233,-0.5194246,-0.40570801,-0.22982581,-0.35770556,-0.4199533,0.65966725,-0.17724514,0.10744369,-0.20814818,-0.014878035,-0.059351113,0.3549224,0.08364944,0.08256375,-0.03434056,-0.19123237,0.054018572,-0.30395228,0.28529578,0.030006595,0.3618142,0.43280545,-0.26943952,-0.08882683,0.57373375,0.5497986,-0.087854885,0.78049827,0.49339956,-0.16991459,0.29207906,-0.11925849,-0.22124015,-0.54554397,-0.4475893,-0.005435733,-0.43000373,-0.45569167,0.015235277,-0.39392596,-0.8906367,0.469094,-0.117366076,0.07019324,-0.05573795,0.32642406,0.28963217,-0.061036035,-0.09148957,-0.14573999,-0.03933945,-0.23249312,-0.3873004,-0.8206654,-0.40620956,-0.08308289,1.2947065,-0.08343945,-0.09973995,0.11531102,-0.15470281,0.025406739,0.0420848,-0.026918657,0.29800108,0.36914387,0.0043545086,-0.68430495,0.41112188,-0.37294313,-0.05557781,-0.6202145,-0.016737849,0.60574085,-0.63816184,0.34905466,0.56897175,0.09083076,-0.04565168,-0.64057475,-0.12913875,0.039557286,-0.11846731,0.506982,0.2697838,-0.8671764,0.59717464,0.22131203,-0.3320502,-0.6770782,0.40891466,-0.006095497,-0.22120409,0.0647543,0.22061148,-0.24800175,0.048853535,-0.31604055,0.2348984,-0.4247537,0.30191013,0.24977918,-0.11031337,0.36830807,-0.31548887,-0.09986598,-0.5647927,0.0111937765,-0.4704315,-0.12148152,0.01885738,-0.09524145,0.15651534,0.22606008,-0.10391235,0.44365633,-0.2721432,-0.0063639223,-0.13470855,-0.36423385,0.50393194,0.4720894,0.38180417,-0.41665572,0.6418592,0.037008468,-0.19047895,-0.31863552,0.13967901,0.5639319,0.091094084,0.3992583,-0.08451756,-0.09735911,0.37943682,0.82743806,0.26160097,0.59021837,0.08460506,-0.25084686,0.17360465,0.1772796,0.11643301,0.09961256,-0.32168669,-0.017378982,0.014552951,0.26308563,0.39796,0.03180116,0.66929185,-0.3071146,-0.11554934,0.12758031,0.13640691,-0.19016777,-1.0852166,0.48412788,0.120320335,0.7196886,0.3962712,0.08199768,0.09264999,0.5798567,-0.27812803,0.078187324,0.1452623,0.06668255,-0.4715183,0.43856105,-0.60637015,0.50840825,-0.06384384,0.041839607,0.07722619,-0.08867752,0.5329275,0.72309685,0.038255177,0.10745402,0.011771786,-0.3739082,0.1973235,-0.26554415,0.2906267,-0.568759,-0.24941184,0.7415592,0.38092086,0.30980262,-0.014471217,-0.051139764,0.05059727,-0.140022,0.1300924,-0.09533362,0.10070045,-0.08649418,-0.6620501,-0.23651727,0.43600973,0.057997808,0.039838385,0.058181588,-0.26362267,0.21514578,-0.056700207,0.043186706,-0.0013115645,-0.57905406,0.049358543,-0.42196593,-0.3483874,0.28923625,-0.2778589,0.26037264,0.11903458,0.053395506,-0.5496463,0.13271584,0.17161769,0.71765536,-0.06971156,-0.15844382,-0.31497845,0.035123207,0.3483656,-0.24891016,-0.10605195,-0.38495535,0.05875374,-0.69624215,0.43191424,-0.22447555,-0.27540907,0.28291592,-0.2274153,-0.06030084,0.6244572,-0.19353376,-0.119036116,0.17430934,-0.0797978,-0.28768677,-0.20504738,-0.16612735,0.21819381,0.1696043,0.03811558,-0.052090075,-0.024639416,0.004876717,0.41873127,0.1180346,0.17479496,0.43705386,0.11231289,-0.45830834,-0.16711944,-0.08283673,0.59045357,0.051703013,-0.11620351,-0.59830767,-0.54042083,-0.22523974,0.22377162,-0.20302843,0.3325315,-0.004581396,-0.32876435,0.8068558,0.006289673,0.99032336,0.08269252,-0.3729577,-0.020296521,0.68685085,0.05066008,0.14849451,-0.34247684,0.88843,0.5522837,-0.19016804,-0.25947514,-0.40620327,-0.08201651,0.087917134,-0.22515036,-0.456731,-0.103160314,-0.72402656,-0.20353095,0.27097014,0.37335718,0.03342045,-0.07074983,0.13511579,0.30113715,0.060824115,0.27263457,-0.5771014,0.0032299082,0.30402005,0.13689464,0.015366787,0.15620346,-0.52543366,0.30447283,-0.67330384,-0.012638374,-0.1480514,0.11248732,0.05013385,-0.3177691,0.37650305,0.15963641,0.276647,-0.36100194,-0.19787216,-0.098980315,0.52413744,0.17699386,0.27620646,0.81898713,-0.26787362,0.040157717,0.0052310484,0.45637995,1.1750598,-0.4059836,0.039867274,0.36320674,-0.2733321,-0.77252394,0.26341954,-0.3273196,0.052968018,-0.15082102,-0.46474373,-0.5649568,0.39633915,0.1460478,-0.14924821,0.20993003,-0.5389637,-0.19407202,0.24684331,-0.19994621,-0.2955775,-0.36954206,0.030989153,0.589241,-0.29549047,-0.2147296,0.077373356,0.52821565,-0.21139762,-0.48552817,-0.022760976,-0.4207159,0.30309325,0.015636198,-0.23878536,-0.0299129,0.0027119636,-0.36709887,0.24289624,0.34516615,-0.2931588,-0.07892458,-0.25045437,-0.070692405,0.7023014,-0.11529139,-0.038438026,-0.6204254,-0.430383,-0.99665505,-0.261881,0.6247443,0.1517916,-0.07906333,-0.5292574,0.020394385,-0.073290244,0.015833752,-0.2132307,-0.49587914,0.41417333,0.11227678,0.33521023,-0.02649742,-0.62118614,-0.043262184,0.09270062,-0.45778984,-0.40947983,0.59724116,-0.09339109,0.79686457,0.07220672,0.17406784,0.2689337,-0.60281,0.3133487,-0.27750772,-0.23651457,-0.69934094,-0.051427174 +314,0.51744205,-0.16557525,-0.5528868,-0.09729891,-0.16925281,0.22943935,-0.2023794,0.48433718,0.122084565,-0.3322768,-0.14316045,-0.07244648,-0.0017319262,0.36038506,-0.18100695,-0.47898322,0.04669307,0.14213,-0.57942444,0.71578914,-0.46716937,0.29169905,0.031010201,0.2577967,0.3154215,0.17075394,0.13102202,0.0016495108,-0.32129398,-0.3384474,-0.08444525,0.36022106,-0.33487147,0.06544135,-0.21022095,-0.42078984,-0.14278439,-0.5257675,-0.49824885,-0.70560354,0.15961011,-0.85435975,0.71089005,-0.11260154,-0.31224817,0.36282876,0.22819702,0.21136741,-0.104530334,0.0190754,0.19841976,-0.07840608,-0.088110246,-0.10006365,-0.33853424,-0.48872533,-0.58582157,0.07454508,-0.45471328,0.009687038,-0.2034455,0.11167769,-0.28783208,-0.0052770297,-0.19491173,0.44203052,-0.41783693,0.001041766,0.10074683,-0.09642465,0.12492573,-0.6600465,-0.21070054,-0.07886334,0.32790914,-0.15989906,-0.19320671,0.20593381,0.43848366,0.51642895,-0.03277523,-0.25172517,-0.5156785,0.046028927,-0.015085375,0.5484015,-0.21958661,-0.6790152,-0.25000608,0.11944227,0.42627946,0.076622844,0.15024033,-0.07878114,-0.073846854,-0.021179438,-0.3750072,0.51544654,0.5046983,-0.3181181,-0.18913631,0.4495278,0.34592003,0.23165278,-0.23927672,-0.06897535,-0.12491291,-0.5583083,-0.008057381,0.03237593,-0.13822171,0.5335271,-0.18223272,0.23925243,0.45845836,-0.10214748,-0.03189349,0.2850978,-0.012338148,0.033985488,-0.08757284,-0.26081258,0.12773632,-0.41013697,0.036723673,-0.15636362,0.61129296,0.12917192,-0.72642213,0.35976082,-0.42869893,0.12465086,-0.068438545,0.39454702,0.7316291,0.34697372,0.16843864,0.49212354,-0.13665828,0.09969356,0.0115889665,-0.23790474,-0.040726386,-0.18863821,0.09176038,-0.58138543,0.16206105,0.02854794,-0.06565003,0.22668839,0.645354,-0.5866548,-0.24688426,0.22306436,0.85628384,-0.22055271,-0.2598915,1.0531149,1.1361573,1.0095378,-0.015684856,1.0927861,0.25858894,-0.11803135,0.02233134,-0.37403706,-0.4356497,0.22398582,0.24414796,-0.41374665,0.35148957,6.52194e-05,-0.034152612,0.46845877,-0.33443704,-0.17452185,-0.19333169,0.14756495,0.21918215,-0.043046046,-0.4450086,-0.36732382,-0.10348528,0.017083919,0.33233845,0.29930368,-0.21419702,0.4788438,0.00922006,1.5501045,0.0060358844,-0.07048105,-0.04785627,0.44180438,0.21592139,-0.04788815,0.08058972,0.16016054,0.34803674,0.020778839,-0.41737074,0.13143054,-0.280384,-0.43897206,-0.10967251,-0.27319103,-0.2369971,-0.2237258,-0.50857854,0.04333599,-0.052605584,-0.39015463,0.42235318,-2.9672525,-0.3165742,-0.15515852,0.23420572,-0.19038185,-0.4760355,-0.12858397,-0.53164256,0.48270494,0.19605964,0.4981337,-0.6123926,0.55145717,0.1268805,-0.5391775,-0.12511608,-0.59449553,-0.13777004,0.048103355,0.5034164,-0.026829254,-0.17897949,0.3587351,0.19054209,0.5565561,-0.059652377,0.11878251,0.22057524,0.425856,-0.050794832,0.51381326,-0.07588155,0.7156165,-0.23139025,-0.20814888,0.41662043,-0.42972106,0.29136628,-0.17504255,0.21065791,0.4865863,-0.34096876,-1.0072689,-0.5062397,-0.0010006666,1.1635873,-0.09136148,-0.41749084,-0.0012241363,-0.21419811,-0.32397974,-0.025620075,0.39359412,-0.19712272,-0.15597378,-0.7799404,-0.0037683647,-0.1039552,0.015587095,-0.1816242,0.045154158,-0.51494336,0.5957534,0.044360843,0.46720654,0.18462642,0.251215,-0.36052674,-0.48116368,-0.035360314,1.037732,0.5261061,-0.003855145,-0.20526582,-0.024683062,-0.4049366,-0.039445713,0.102653295,0.74093235,0.5270256,0.050891154,0.004031984,0.23418067,-0.014346512,0.20883936,-0.22058313,-0.25796923,-0.2070041,0.18633427,0.65731084,0.6205649,-0.053418234,0.8033077,-0.20099878,0.33705392,-0.25566596,-0.43194532,0.49066934,0.9076718,-0.2305481,-0.39604002,0.3851382,0.469932,-0.09826081,0.34783062,-0.50417197,-0.50455827,0.27054802,-0.18014635,-0.28396347,0.42232165,-0.2887682,0.08352138,-0.93965966,0.30296925,-0.34757745,-0.5438355,-0.6069696,-0.15785584,-3.1164246,0.16314891,-0.13519141,-0.15462631,-0.0957314,-0.3505675,0.07816348,-0.5242754,-0.5703565,0.11302366,0.11115217,0.65868956,-0.14013529,0.087317176,-0.21611395,-0.24593128,-0.17120337,0.25771523,0.110564895,0.47096786,-0.09533162,-0.3760188,-0.10976664,-0.17611074,-0.40131664,0.07313967,-0.7829498,-0.44955307,-0.035664774,-0.5103843,-0.24407601,0.633489,-0.32721978,0.032608323,-0.17813975,0.13996972,-0.06537845,0.20857175,-0.057868395,0.22266549,0.04647668,-0.27474144,0.30525473,-0.19638102,0.21065713,0.041754737,0.3553728,0.43493894,-0.02197233,0.35559654,0.5395767,0.6837536,-0.07135911,0.8418858,0.36885244,-0.13668273,0.26993528,-0.29632515,-0.16387731,-0.51785904,-0.3226344,0.056618404,-0.45252475,-0.44837418,-0.22639489,-0.3472618,-0.80661243,0.57718873,0.0007567207,0.076657206,-0.15625069,0.52062595,0.6871433,-0.24549259,0.119879484,0.061517175,-0.06714392,-0.3959425,-0.33992642,-0.60661906,-0.44140413,-0.14189857,1.0567402,-0.08457085,0.110050544,-0.0120914085,-0.21781506,-0.09803454,0.14121781,0.107745506,0.039701767,0.37686604,-0.36025542,-0.68435895,0.2904105,-0.47215664,-0.12366312,-0.44707793,0.34325877,0.6174772,-0.43719786,0.47771472,0.5567977,0.15920617,-0.21877457,-0.48824355,-0.039836917,0.036790546,-0.044809863,0.35259566,0.21957022,-0.67899984,0.51615715,0.2385536,-0.28104627,-0.6093079,0.64816445,0.12486603,-0.20166321,-0.14574972,0.31366667,0.2831417,0.004740451,-0.36611795,0.23687503,-0.44515368,0.3670718,0.10904596,0.050159864,0.34366184,-0.2759882,-0.18711956,-0.6968675,-0.033756264,-0.48704067,-0.34025708,0.2571201,-0.0030698418,0.35913646,0.06847045,-0.025022106,0.23569378,-0.53315514,0.08261926,-0.112184756,-0.32739878,0.29372007,0.4598528,0.47556102,-0.4923379,0.55923325,0.11037622,-0.072529085,0.08566152,0.06898681,0.49033782,0.022164373,0.4146808,0.1086267,-0.06861701,0.34073144,0.8140741,0.24961667,0.3022122,-0.003861936,-0.24362607,-0.06348314,-0.13325769,0.1920138,-0.05670448,-0.553065,-0.11595914,-0.18644947,0.27896088,0.3936773,0.053831093,0.33480814,-0.12191612,-0.38278607,0.012477931,0.1760367,-0.016216304,-1.492558,0.4250844,0.13180414,0.9130396,0.17404357,0.0020255486,-0.032165386,0.61720335,-0.15081906,0.12190766,0.39014637,-0.016968815,-0.32611415,0.4567181,-0.7744652,0.48893872,0.07494051,0.07252038,-0.037962515,-0.038107388,0.35979825,0.8389107,-0.28942066,0.10049946,0.112653516,-0.3861073,0.10509275,-0.28702193,0.14378262,-0.5319474,-0.21051213,0.79617745,0.48727754,0.31329435,-0.119253196,-0.00089727045,0.16955797,-0.16732177,0.03552235,0.16767338,0.27780542,-0.26647818,-0.7143936,-0.08107621,0.39078015,0.004993822,0.17254023,0.14670639,-0.11581696,0.2588808,-0.16776428,0.0347496,-0.06876202,-0.47772694,-0.040695764,-0.41620082,-0.35514995,0.42192382,-0.33766985,0.19351864,0.18650071,0.06844523,-0.14295033,0.34850064,0.15204713,0.6358879,-0.07378616,-0.28526434,-0.29945153,0.07384478,0.16589643,-0.24083942,-0.12726882,-0.17421418,0.22111592,-0.607304,0.3619981,-0.1143739,-0.29285476,-0.049855214,-0.014048902,0.15128306,0.3724459,-0.07443539,-0.088414796,0.026478497,0.049413405,-0.2948267,-0.09300136,-0.09328873,0.288016,0.34659526,-0.12852195,-0.1282966,-0.028356755,-0.12611079,0.43252128,-0.03104511,0.44068673,0.5189806,0.26597616,-0.21509574,-0.123795554,0.21942899,0.63918203,-0.0969534,-0.13899599,-0.39129838,-0.3495423,-0.32848868,0.23780768,-0.11237014,0.32543358,0.10524429,-0.16046534,0.6223555,-0.13738789,1.3185252,0.07031636,-0.3643258,-0.015149092,0.5181554,0.032063182,-0.10139481,-0.24396655,1.1085514,0.40480295,0.08918524,-0.048661098,-0.42128196,0.050838448,0.12379177,-0.21776527,-0.2764435,0.047978632,-0.53429234,-0.32070586,0.27354035,0.10384249,0.2595289,-0.11905599,0.16563262,0.33319268,0.06263541,0.21392663,-0.5995305,-0.1293075,0.24465951,0.35103428,-0.20454772,0.1484944,-0.5587991,0.2319568,-0.56833977,-0.015649866,-0.23586008,0.17678134,-0.11093758,-0.21343108,0.37012327,0.009759876,0.34141967,-0.38973075,-0.3576264,-0.08593542,0.37794203,0.08103359,-0.02376879,0.4384529,-0.19799678,-0.043420196,0.21369031,0.50607413,1.1074661,-0.27873835,0.07857733,0.3396742,-0.29573902,-0.61062056,0.26449788,-0.28984702,0.3000824,-0.0045368117,-0.19220959,-0.58467066,0.40774506,0.13423282,0.14493296,0.03697891,-0.5041738,-0.0631438,0.32615376,-0.31019047,-0.17495257,-0.43483284,0.009862844,0.46569014,-0.31407708,-0.29371104,0.0011650622,0.3161537,-0.20582822,-0.5969833,-0.03121732,-0.37922922,0.21826838,0.094663545,-0.33478308,-0.2323651,-0.12077082,-0.41929403,0.33710524,0.3571147,-0.3016988,0.05009636,-0.22901908,-0.1942565,0.8857552,-0.31144392,0.32907328,-0.49644873,-0.4506749,-0.71655595,-0.39274412,0.07088551,0.20171942,-0.13533853,-0.7415056,-0.043720294,-0.26121953,-0.40248492,-0.090446115,-0.28289315,0.41008234,0.03678887,0.33322796,-0.19727807,-0.80232114,0.19397761,0.08172771,-0.13621339,-0.48183373,0.44078094,0.040148657,0.729481,0.1352846,0.23353964,0.34736043,-0.3985985,-0.092031755,-0.18197033,-0.06201394,-0.76837856,0.06631105 +315,0.3413685,-0.34847164,-0.50588316,-0.1132708,-0.33429,0.05745491,-0.2998006,0.14567547,0.14381623,-0.44857675,-0.047738247,-0.09363298,0.14198646,0.37799352,-0.09594727,-0.5551313,-0.0015381405,0.11815327,-0.6994541,0.50608975,-0.59873426,0.39356014,0.187391,0.3794183,-0.046197116,0.3703365,0.27869055,0.04268105,0.018878784,-0.11502641,-0.30363077,0.17227122,-0.5323204,0.17566617,-0.22803487,-0.45710674,0.19627622,-0.28887463,-0.11892561,-0.7771389,0.03098767,-0.9768024,0.5405691,-0.16053505,-0.20044568,-0.027385626,0.19885515,0.40703186,-0.3388086,0.17454918,0.06939609,-0.29484925,-0.06454957,-0.3879626,-0.081832506,-0.49984142,-0.4167173,-0.049688075,-0.7887731,-0.4300067,-0.09404046,0.13391533,-0.34289208,0.07297599,-0.17364076,0.15348913,-0.4117226,-0.096502356,0.29036143,-0.33627516,0.36889938,-0.4709981,0.012732251,-0.040141765,0.3627688,-0.11409068,-0.21011356,0.2881512,0.32703486,0.5549231,0.23975895,-0.37700078,-0.048059948,-0.20700362,0.1513386,0.4087588,-0.05539169,-0.31738684,-0.33811226,-0.0017443427,0.29202223,0.43931028,0.08021414,-0.17353341,0.083874166,-0.11152865,-0.24410519,0.25958976,0.53149456,-0.38260725,-0.33939424,0.18035075,0.6808344,0.00961563,-0.24305712,0.2170748,-0.020406669,-0.39946026,-0.21730936,0.13893107,0.056196306,0.53754985,-0.036977734,0.19688585,0.71750504,-0.13717273,0.059846144,-0.07037068,-0.11889909,-0.26056802,-0.24279752,-0.07000048,0.22387567,-0.74968,-0.0039890492,-0.2631924,0.66159546,0.18820815,-0.7329728,0.44959527,-0.48581156,0.0791403,-0.11065917,0.61502755,0.520369,0.36252183,0.25318483,0.8375235,-0.42767796,0.25973925,-0.08046215,-0.38327006,-0.05621304,-0.3444504,0.08987652,-0.533023,0.37819663,-0.08767843,0.26723242,0.051708855,0.41214833,-0.5397831,-0.10826145,0.27906355,0.87071526,-0.34361118,0.0095202755,0.6971712,1.1199192,0.93100685,-0.120526776,1.3139865,0.36425424,-0.19202837,-0.0065008574,-0.025127213,-0.5113229,0.10875099,0.42189333,0.25632626,0.4029805,-0.035501186,0.018977566,0.33801562,-0.29297575,0.09483989,-0.044153415,0.14416017,-0.059311707,-0.08854319,-0.5447245,-0.036735952,0.1254671,-0.25583845,0.022446709,0.28487402,-0.09574264,0.5968801,0.024444252,1.5016495,-0.18303771,0.07173236,0.11945764,0.53587824,0.37362844,-0.0725201,-0.013104728,0.45249483,0.38828135,0.0038029552,-0.45790836,0.22030266,-0.3293365,-0.54547685,-0.13153997,-0.36497575,-0.086412035,-0.010894426,-0.44954208,-0.16040398,-0.0109188985,-0.33389348,0.34596154,-2.7294085,-0.28728512,-0.1459565,0.3111225,-0.39162564,-0.18879496,-0.12298907,-0.3690672,0.31919998,0.3481038,0.34047166,-0.6539345,0.56330687,0.5877328,-0.2552635,-0.20161493,-0.6141032,-0.127122,-0.04595946,0.5514626,0.027296275,-0.28623253,-0.25894192,0.282695,0.7111715,-0.07603153,0.19228114,0.43748623,0.37278724,0.089197315,0.6151245,0.035053916,0.5672943,-0.38405737,-0.10686115,0.39670494,-0.1839509,0.24449399,0.03936967,0.17171267,0.43274498,-0.41152218,-0.79757273,-0.6827259,-0.448646,1.034089,-0.36838728,-0.48197207,0.1430236,0.025700228,-0.14166902,0.026887996,0.38307992,-0.019202087,0.30689344,-0.6056456,0.11082548,-0.095069565,0.20389497,0.02911513,-0.04155189,-0.35485205,0.674763,-0.066128895,0.6691063,0.27918157,0.21783611,-0.01610962,-0.33122277,0.01224208,1.0396773,0.2889843,0.08265467,-0.20295154,-0.24072422,-0.27959752,-0.18937135,0.0050322884,0.4628251,0.98617303,-0.12397225,0.122655876,0.30689248,0.040897984,0.0025770802,-0.04142041,-0.2019014,0.05253791,0.17797658,0.39059612,0.44800502,-0.11799506,0.42262825,-0.28598526,0.42114636,-0.17705777,-0.63221544,0.47134972,0.549466,-0.20024215,-0.0704921,0.5274846,0.48708487,-0.6413608,0.5171696,-0.798634,-0.3201442,0.7178529,-0.10512304,-0.474138,0.28995234,-0.25206017,0.28250363,-0.970668,0.24861859,-0.30139646,-0.36190742,-0.2756233,-0.27279416,-3.782872,0.27419105,0.040589787,-0.09953223,-0.2971972,-0.09674927,0.3022301,-0.5227732,-0.5800397,0.0028843454,0.20119755,0.5817111,-0.12933435,0.05062994,-0.51082987,-0.16622521,-0.042652737,0.35044572,-0.020113068,0.12851359,-0.2817263,-0.32747886,-0.24137414,-0.12401606,-0.54055727,0.22953251,-0.6443453,-0.43945575,-0.17564337,-0.42160764,-0.23268506,0.51240915,-0.26853347,0.008701482,-0.22312011,0.010047832,-0.23481742,0.11733564,0.16082372,0.21733348,0.07822589,-0.083037324,0.004298764,-0.3863173,0.23758231,-0.010193421,0.38249296,0.10012799,-0.14422278,0.05417972,0.38654834,0.59504765,-0.20630734,0.8816699,0.060109768,-0.06035,0.4594508,-0.3532397,-0.31321293,-0.7037059,-0.42837754,-0.19316682,-0.42004487,-0.6133731,0.1339298,-0.26225767,-0.7696652,0.75831264,0.11868082,0.3980697,0.0019762425,0.5632188,0.3699271,-0.15841614,-0.115436845,-0.04365133,-0.18816482,-0.5209335,-0.3199558,-0.6887173,-0.5263442,0.12140907,0.80801076,-0.4236329,0.051720973,-0.010024999,-0.14224488,0.06508715,0.21670322,0.3467074,0.34478974,0.4739239,-0.031524807,-0.74175435,0.46617046,0.078076676,-0.20973,-0.41345373,0.016331013,0.6299247,-0.81751496,0.53015935,0.3340064,0.10851394,-0.009541603,-0.49908093,-0.0684498,0.009809802,-0.31533688,0.53413373,0.059647474,-0.84414214,0.5018898,0.4423186,-0.30679798,-0.6326052,0.21183386,-0.10026206,-0.21773997,-0.1488653,0.37728882,0.0027958325,-0.037225995,-0.14524218,0.082591906,-0.66341656,0.1771324,0.39625248,0.0011035204,0.311824,-0.07639007,-0.45898676,-0.60216445,-0.023202134,-0.60513455,-0.1520001,0.30066368,-0.12222139,-0.17538984,0.35131106,-0.054073017,0.43754557,-0.3409669,0.1402545,0.106274135,-0.37353644,0.34490234,0.49237347,0.17735751,-0.38265276,0.49730363,0.14149919,-0.30327225,-0.1248366,-0.053990774,0.42192087,0.13164487,0.29222605,-0.15963085,-0.062035646,0.4317854,0.7971502,0.24201016,0.54665923,0.11649247,-0.06680634,0.42761317,0.14979695,0.070049815,0.14215888,-0.42006463,0.07436478,0.016453627,0.141077,0.4959011,0.30513898,0.3155244,0.101070605,-0.05855679,0.018860383,0.16590694,-0.1876343,-0.9537115,0.33477202,0.29541317,0.7092351,0.4424588,0.21381949,-0.10413963,0.47782776,-0.3553557,0.12647857,0.32047603,-0.048733596,-0.4157772,0.8736337,-0.624236,0.2869416,-0.1694741,0.0016933616,0.115160026,-0.021681266,0.5055233,1.0253782,-0.11298341,0.062322207,-0.07390324,-0.007259258,0.05396209,-0.3343974,-0.11052046,-0.17275403,-0.28668424,0.64164144,0.32858038,0.37515777,-0.26952794,-0.12556358,0.037664797,-0.10141083,0.28843427,-0.08142711,0.12454784,0.09506755,-0.24361052,-0.22967115,0.7016637,0.12827303,0.09889066,-0.19783385,-0.49875566,0.14628948,-0.09198512,0.0938291,0.016645487,-0.67583,0.21551763,-0.23895833,-0.5637211,0.6087044,-0.2409353,0.01275021,0.18151297,-0.044303775,-0.08990825,0.06284881,0.03299457,0.64719707,0.15687421,-0.29988042,-0.3569402,-0.036028672,0.17321014,-0.38780212,0.09880643,-0.37121627,0.13158576,-0.6093846,0.57818,-0.01348645,-0.54919106,0.32295945,-0.16392449,-0.13658085,0.5190349,-0.076839924,-0.18179809,-0.0074710823,0.0007313277,-0.43476486,-0.15906748,-0.26890263,0.26396495,0.009882705,-0.10291598,0.08788286,-0.09731964,0.027837455,0.47345623,0.056201924,0.37299317,0.11084629,-0.13744578,-0.31870922,0.26988727,0.15919529,0.27744848,0.019641936,0.121776536,-0.14501722,-0.34080854,-0.2678171,0.113336824,-0.17428745,0.23821568,0.11533741,-0.26842132,1.0720326,0.10951834,1.2355394,0.05769113,-0.41025785,-0.03563157,0.49707156,-0.03857728,0.055064537,-0.43722865,0.9965619,0.6688398,-0.11626337,-0.06246803,-0.26648286,-0.21337166,0.3290977,-0.39678416,-0.05112425,-0.08078371,-0.68577605,-0.42108265,0.31771317,0.28077212,0.23901394,-0.06634255,0.1251909,0.026167925,0.075976096,0.19781582,-0.72043496,-0.19201064,0.22714822,0.22720662,-0.31631687,0.044806607,-0.36087593,0.39832544,-0.759088,0.17398548,-0.54564613,-0.05493256,-0.061523598,-0.42139435,0.15001805,-0.12946382,0.23230852,-0.25286725,-0.398947,-0.010662858,0.3502173,0.11941885,0.21670552,0.6668495,-0.2605113,0.2613848,0.19549395,0.41687775,1.3122321,-0.32964876,-0.17860796,0.29994208,-0.3759747,-0.6627437,0.20837796,-0.3946984,0.0008844393,-0.10544358,-0.5279279,-0.40125498,0.24410772,0.3173366,-0.07022209,0.105507314,-0.68523735,-0.019500494,0.27247366,-0.3203396,-0.24784441,-0.20529246,0.28754538,0.7760014,-0.30662584,-0.25759563,0.07252257,0.34687564,-0.36977476,-0.7184253,-0.06455616,-0.11663122,0.39685816,0.16698305,-0.2567555,0.11495621,0.22679329,-0.5250549,0.10066128,0.5327891,-0.28818864,0.14844243,-0.27833322,0.0707232,0.93748105,-0.15996528,-0.35843238,-0.60659635,-0.52292347,-0.87397563,-0.57317144,0.2860518,0.20282969,0.13992074,-0.2632853,0.026705146,-0.26177973,-0.20382714,0.1348577,-0.41282204,0.27460846,0.04077145,0.635588,-0.2737996,-1.005823,0.19579895,0.21098618,-0.11110008,-0.62722635,0.6671189,-0.19848903,0.7795045,0.008611978,-0.19724552,0.19481643,-0.6057162,0.24491559,-0.4987674,-0.020390805,-0.8050543,-0.04726663 +316,0.27585092,-0.2706758,-0.4821799,-0.17857526,-0.20575942,0.26084107,-0.14715181,0.26737326,0.19940928,-0.31684384,-0.068095736,-0.09968241,-0.09909804,0.4935908,-0.07057873,-0.73941714,-0.04934778,-0.045299407,-0.6378618,0.29992026,-0.5214259,0.27546766,0.098981254,0.47338587,0.07154376,0.3204662,0.14947072,-0.06342547,-0.09790724,-0.110076316,-0.17467941,0.10296451,-0.59732115,0.12864545,0.060493,-0.22275805,-0.122224055,-0.42904618,-0.26484787,-0.62374014,0.3627009,-0.8675877,0.34456584,-0.13038148,-0.38035405,0.12576804,-0.09925724,0.32992655,-0.3092995,-0.016645074,0.1793348,-0.10757505,0.10322281,-0.15271623,-0.11382938,-0.47861516,-0.5470141,0.08398034,-0.50316226,-0.18857537,-0.065808296,0.15627632,-0.3311713,0.17669024,-0.16961244,0.32070085,-0.3882945,-0.013069093,0.2741768,-0.2927254,0.16936022,-0.4207691,-0.13340716,-0.08232916,0.2289579,-0.00020417801,-0.18438402,0.07153105,0.4735995,0.58346677,-0.0045605185,-0.12698244,-0.18400568,-0.10360587,0.17150429,0.5481561,-0.022449898,-0.431263,-0.2907994,-0.16656646,0.16488674,0.1539113,0.1987229,-0.4667927,0.02745339,-0.014062403,-0.2534331,0.23847087,0.45867968,-0.31815705,-0.19395575,0.3222858,0.51244754,0.067084186,-0.18935345,0.14603269,0.013401877,-0.45909163,-0.1206516,0.11097732,-0.1001866,0.58569044,-0.10698489,0.39770553,0.722511,-0.043314584,0.35222933,-0.10168958,-0.22335196,-0.2791273,-0.30652884,-0.10888036,-0.01569443,-0.3927081,0.003355329,-0.2945145,0.7012186,0.14765298,-0.9901944,0.39181864,-0.4223922,0.1063846,-0.13897315,0.65971065,0.6867345,0.2626193,0.17046516,0.6907657,-0.55485344,0.011893117,-0.02442818,-0.29750153,0.1259236,-0.08007913,0.11669334,-0.47254893,-0.023260068,0.12452852,0.005008092,-0.02772174,0.24277364,-0.37197545,-0.045392375,-0.058997113,0.6659178,-0.38446248,-0.06458695,0.799585,1.0111222,0.7214522,0.14182077,1.3589541,0.34214953,-0.027529286,0.2264479,-0.30098632,-0.56451327,0.13418825,0.41284788,0.47111323,0.3933077,0.058587376,0.024337191,0.5653862,-0.09523304,0.2095159,-0.093226925,0.12426163,0.050142623,-0.12014067,-0.26220274,-0.31066245,0.19191024,0.05336976,0.021214526,0.29510525,-0.24715516,0.55604094,0.19186586,1.6009268,-0.075804606,0.16958605,-0.03777868,0.40029445,0.09970289,-0.29933426,-0.14519098,0.27936298,0.31890142,-0.1460372,-0.6314005,0.1660149,-0.12827352,-0.5638486,-0.16460826,-0.34227324,-0.2140881,-0.09552685,-0.43815142,-0.082256556,0.007658087,-0.32377994,0.34111103,-2.5651026,-0.23820983,-0.27632335,0.3268542,-0.34452137,-0.3122214,-0.06543779,-0.32299107,0.21490392,0.48049882,0.3076196,-0.8329915,0.43446767,0.36577055,-0.16659784,-0.22341944,-0.6700347,-0.044589557,0.029934768,0.2174696,-0.04532508,-0.065404154,-0.1700237,0.24066775,0.5930995,0.06855281,-0.04750859,0.1695896,0.5237137,0.14033026,0.50246996,0.09543231,0.5567119,-0.10765545,-0.07395134,0.32782745,-0.5083262,0.4917335,0.13770501,0.26950675,0.25904614,-0.40580562,-0.6940438,-0.79533124,-0.49057028,1.3166292,-0.46764275,-0.4243632,0.25215274,0.005944284,-0.31451637,-0.10178639,0.6211583,-0.13962267,-0.011733862,-0.7250872,-0.06343626,-0.22554165,0.32549235,-0.0895787,0.018468142,-0.27971572,0.6985982,-0.095169455,0.53651404,0.31046316,0.12628157,-0.098354265,-0.36664647,0.04009614,0.86075526,0.29427,0.060415845,-0.1344462,-0.12981471,-0.22901243,-0.2401507,0.10289807,0.5257565,0.66419196,0.19576328,0.022825507,0.32000974,-0.23642203,0.03493367,-0.09088676,-0.32390186,-0.08547454,0.08234663,0.6255688,0.7611923,-0.24570847,0.33127278,-0.29737416,0.13012362,-0.18781151,-0.51909006,0.6155514,0.6269341,-0.1645379,-0.1735277,0.44719827,0.41150236,-0.62498534,0.27934247,-0.49859598,-0.20361497,0.6145164,-0.010375523,-0.4206373,0.19661961,-0.28329355,0.009784672,-0.9633935,0.23239096,-0.14902073,-0.5062267,-0.48474562,-0.09686614,-3.7537549,0.21630113,-0.09865689,-0.38578665,-0.21933994,-0.23068087,0.3999139,-0.5946201,-0.46715766,0.08050413,0.06638668,0.44363695,0.030511416,0.173958,-0.36132428,-0.008333834,-0.2813781,0.21199283,0.046252362,0.23145153,-0.020362396,-0.26394576,-0.029615998,-0.26872176,-0.5236288,0.07647789,-0.59436,-0.68917537,-0.14126597,-0.376141,-0.23566176,0.6048362,-0.2909765,-0.04711026,-0.26882726,-0.14898556,-0.37170094,0.57069755,0.1538011,0.1327238,0.078240946,0.026084313,-0.2086189,-0.4327351,0.1837417,0.08084405,0.40793544,0.34881005,-0.1595917,0.1487588,0.55507886,0.6377618,0.18128523,0.53670067,0.20603155,-0.023081256,0.36067578,-0.36828595,-0.19345477,-0.49533755,-0.29725748,-0.056296103,-0.37545493,-0.47888023,-0.17153336,-0.24439773,-0.71445435,0.25734875,0.12854363,-0.063427396,-0.120155536,0.26305872,0.38368383,-0.05038878,0.03736063,-0.058911126,-0.15767814,-0.57077533,-0.45033106,-0.6697041,-0.66702396,0.41524285,1.0153235,0.044820823,-0.027968833,-0.0828389,-0.3778658,0.11650208,-0.013838727,0.21426226,0.16686174,0.21155876,-0.29935685,-0.6775882,0.5209572,-0.22223656,-0.19201726,-0.607103,-0.0079331035,0.7331108,-0.6129042,0.6359234,0.31232867,0.14756563,0.057170216,-0.43366602,-0.22523771,0.069419935,-0.2125267,0.40118298,0.23338835,-0.53324133,0.36220503,0.23024805,0.075637706,-0.6227877,0.43376276,-0.03852041,-0.038246486,0.07532064,0.35148913,-0.16234091,-0.13998426,-0.092558034,0.06562545,-0.51325274,0.17797525,0.447298,0.20222506,0.65387547,-0.010798097,-0.2162371,-0.43394783,-0.012873303,-0.5983061,-0.13224734,0.15138343,0.03261463,0.33757064,0.13235578,-0.09874054,0.38671395,-0.3907254,0.12025734,0.07657095,-0.14722627,0.31972572,0.49734005,0.32247272,-0.49788317,0.50708,0.088832684,0.1659595,-0.03387229,0.06330439,0.49868834,0.52039534,0.29238856,-0.16773976,-0.1733068,0.17048264,0.72224176,0.2597151,0.46252272,0.23127677,-0.14568454,0.38070253,0.09951002,0.13552417,-0.0469738,-0.31150442,0.009214585,0.07003736,0.22849461,0.4654745,0.08960828,0.423103,-0.09621068,-0.37701592,0.18023922,0.13926458,-0.18322222,-1.0882171,0.3023482,0.32954836,0.6503019,0.44302052,-0.0047868853,0.00019992315,0.48817113,-0.28295648,0.16533376,0.28195268,0.1070908,-0.6279797,0.6732064,-0.5924228,0.3162643,-0.14165217,0.06690483,0.15059407,0.045682278,0.29672647,0.80838054,0.012609353,0.035338398,-0.069325,-0.32587087,-0.024549764,-0.42827335,0.1851403,-0.5504212,-0.24097061,0.48970237,0.43571642,0.30953425,-0.2570666,-0.022032376,0.14935248,-0.0010417516,0.0086654425,-0.107098,0.040918075,0.07316108,-0.7227595,-0.47327915,0.56843245,-0.18592359,0.009350345,0.09755044,-0.42222193,0.33829495,-0.18345016,-0.32062033,0.014546852,-0.6349024,0.13311443,-0.23257373,-0.52606165,0.026801748,-0.3654984,0.13633315,0.15457629,-0.019339014,-0.24531664,0.2072178,0.16841719,0.9471114,0.04218834,-0.15252362,-0.43460143,-0.051954474,0.24533628,-0.33292675,-0.19297926,-0.401458,0.09639929,-0.4276532,0.3953892,-0.040177125,-0.23056982,0.12896806,-0.050897516,0.048786458,0.43009853,-0.355955,-0.150283,0.061524827,0.016216727,-0.22333942,0.08345591,-0.36195856,0.38008097,0.22175393,0.100623965,0.18896416,-0.009342686,-0.019110648,0.352543,0.09675296,0.28658321,0.4809569,-0.081102446,-0.34268555,-0.18341273,0.02992742,0.2949929,0.16845027,-0.10398129,-0.36767837,-0.45164013,-0.23627989,0.4545927,-0.22549377,0.25568438,0.008880322,-0.4735018,0.7395712,0.12727715,1.0572791,0.050266393,-0.36622202,0.12645382,0.34288627,0.1396758,0.10187577,-0.36277872,0.84324515,0.45205367,-0.24276465,-0.23538086,-0.3913363,-0.329723,0.23753521,-0.33479822,-0.12060642,-0.07600779,-0.7677002,-0.18785563,0.08100064,0.25618848,0.025970798,0.05806996,0.113379866,0.076888084,0.016120842,0.44819623,-0.5712717,-0.009337526,0.2592282,0.085844316,0.07917034,0.13382027,-0.41070175,0.49260384,-0.8152541,0.1256976,-0.54915416,0.03471673,0.13635652,-0.32044697,0.15463397,0.053898938,0.39229298,-0.30345446,-0.45294073,-0.35157406,0.81479937,0.34204578,0.32875702,0.7320682,-0.16724947,-0.06767537,0.15430944,0.58859897,1.3411925,-0.039774854,0.13914594,0.2334651,-0.27561095,-0.6180225,0.1896453,-0.26858628,0.20408246,-0.05899686,-0.27708444,-0.3965932,0.39003894,0.15454078,-0.0055676354,0.10145523,-0.39261848,-0.3909535,0.43138152,-0.41191483,-0.33092028,-0.45364138,0.23426065,0.71433896,-0.3777494,-0.2074125,-0.08421625,0.3642493,-0.29471076,-0.44565853,0.02597387,-0.281027,0.25706723,-0.0023144025,-0.37421972,-0.1461434,0.22791865,-0.3651142,0.22632116,0.19331916,-0.25762063,0.09474162,-0.08954739,-0.129799,1.0323739,0.12645207,0.0064886245,-0.8498792,-0.5508915,-0.77721816,-0.5128075,0.19298568,0.110076234,-0.08348041,-0.46504566,-0.07681457,-0.026139058,0.1779528,0.1523767,-0.471564,0.38334948,0.10510078,0.6393699,0.09340365,-0.90936685,0.058891542,0.088565305,-0.16881353,-0.6376208,0.5755397,-0.08941304,0.73458934,0.06686302,0.085497625,-0.0031267186,-0.5136729,0.17377903,-0.46442926,-0.36727375,-0.79124254,0.24350587 +317,0.29736257,-0.40366513,-0.46440065,-0.069834955,-0.31536707,0.07501332,-0.17165579,0.37037402,-0.031516213,-0.56511563,-0.0017748338,-0.16473058,-0.079543,0.7016665,-0.2003561,-0.5319224,0.086977534,0.14481057,-0.62382823,0.65429634,-0.45642436,0.39201838,0.19368336,0.15559857,0.16090634,0.23881595,0.35322183,-0.1174398,0.008810291,-0.09408594,-0.23956439,0.06191707,-0.3945766,0.23627782,0.02289731,-0.48369154,0.13830091,-0.29712155,-0.2663894,-0.6077369,0.30110067,-0.8292409,0.40020588,-0.027481684,-0.28951386,0.06451604,0.18173884,0.32671928,-0.16646336,0.09627933,0.055235207,0.027486425,-0.15756112,-0.052911278,-0.11374609,-0.5070844,-0.588876,0.0070605073,-0.70184004,-0.47064796,-0.16675986,0.12662114,-0.40394306,0.15134464,-0.16054668,0.14018759,-0.6085013,-0.18119527,0.16257344,-0.14777206,0.19096011,-0.5620408,-0.01990519,-0.17961165,0.09358786,-0.21717443,-0.15852763,0.40037617,0.32236263,0.5498849,0.021213265,-0.13837677,-0.10943897,-0.29573834,0.2365863,0.66648203,-0.11432791,-0.36063752,-0.18039306,0.08788105,0.27542028,0.20835064,0.16505782,-0.3933472,-0.110010736,0.03132104,-0.2749782,0.17291988,0.36804396,-0.4875528,-0.28178224,0.33492443,0.51503,0.055556253,-0.07544787,0.15216771,0.005127102,-0.49045834,-0.20255207,0.109046325,-0.19865505,0.43541864,-0.0894406,0.4971166,0.5996047,-0.19576654,0.21511252,-0.18539836,-0.1477263,-0.24370915,-0.008965263,-0.25080216,0.111249134,-0.5451224,0.1095365,-0.16695091,0.88684434,0.14832088,-0.87871903,0.45332578,-0.54487705,0.15637729,-0.22507344,0.6167912,0.6501722,0.30554846,0.20969103,0.59284234,-0.34864727,0.11673575,-0.1187799,-0.35332215,0.080116436,-0.26832694,-0.10668357,-0.4993922,0.05254134,0.032951947,-0.163574,-0.17257136,0.673913,-0.5722046,0.057373736,-0.0051218364,0.7692111,-0.32223225,-0.08165956,0.62154955,0.89804995,0.9328584,0.15395387,1.1133344,0.32809794,-0.22536832,0.20576955,-0.24038903,-0.6795533,0.2486732,0.78339475,0.4024814,0.46521452,0.16386105,-0.061499033,0.50652266,-0.39224136,0.148867,-0.19149701,0.10810467,-0.10960826,-0.11867304,-0.6878386,-0.3093433,-0.06718339,0.09282288,-0.11313001,0.39363447,-0.2700569,0.48580965,0.05030245,2.0107875,-0.090082645,0.21224369,0.068981305,0.43943322,0.09150558,-0.24380864,-0.08288991,0.10131003,0.39926603,0.019040246,-0.66758657,0.08295938,-0.25551212,-0.5356477,-0.26140773,-0.3935828,-0.08294909,-0.17072989,-0.47369325,-0.10970921,0.053503558,-0.3721363,0.3730368,-2.4756927,-0.3175739,-0.26913592,0.17574212,-0.41752222,-0.30836317,0.07985772,-0.34386972,0.3477081,0.5002602,0.6085686,-0.6496187,0.39055347,0.37458012,-0.30256507,-0.043311544,-0.7269519,-0.12286528,-0.10006286,0.3970041,-0.10533877,-0.14119895,-0.092269935,0.3408218,0.42178887,-0.2061236,0.04366886,0.3770869,0.31942227,0.26043907,0.5669642,-0.062474765,0.448518,-0.31469256,-0.16107075,0.33625683,-0.036682937,0.3396158,-0.0019594522,0.16140455,0.19938177,-0.6624136,-0.9332809,-0.677707,-0.5108903,1.1636572,-0.40863997,-0.34177536,0.44517472,-0.22626194,-0.17897107,-0.17687152,0.44565183,-0.1717481,-0.020507416,-0.80752224,0.13733539,-0.0062093367,0.29552555,0.047475092,-0.14072847,-0.3866282,0.5317203,-0.15023735,0.4631351,0.2844261,0.16988556,-0.15200637,-0.38272953,0.023858968,0.96365136,0.53395486,0.16891593,-0.15464228,-0.3163784,-0.34951794,-0.14255628,0.15908502,0.20261233,0.8127849,0.12577114,0.13834433,0.30204818,-0.11537385,-0.049035944,-0.17081563,-0.21819374,0.053821947,0.14477088,0.65055966,0.3777014,-0.10597052,0.6056944,-0.24228737,0.20233926,-0.14025977,-0.5187339,0.2950894,0.7355686,-0.08821149,-0.010153546,0.6850084,0.6828988,-0.31732035,0.4534599,-0.77638346,-0.30220267,0.46008852,-0.14043853,-0.38286972,0.24586083,-0.3541636,0.2642453,-1.2172977,0.37929615,-0.23798622,-0.4429088,-0.45740443,-0.14620301,-3.3606372,0.27380326,-0.09555503,-0.34257317,0.07088778,-0.07285539,0.3179286,-0.7205916,-0.6396973,0.046814535,0.0011677926,0.58025205,0.064332046,0.030271437,-0.1436324,-0.15728714,-0.18252946,-0.0069002234,0.01725798,0.32947534,-0.058538444,-0.4751976,-0.05822798,-0.29028672,-0.36508867,0.15314986,-0.6853203,-0.70594186,-0.30034375,-0.4679407,-0.34192568,0.575254,-0.10796077,0.04010795,-0.21616665,-0.1309968,-0.0958753,0.31659892,0.2855338,0.07550538,0.12056624,0.04514893,-0.21807347,-0.37097165,0.11953615,0.029123453,0.3192627,0.373198,-0.12932001,0.28375614,0.8026368,0.5566272,-0.04136494,0.668162,0.6274483,-0.19259275,0.19464524,-0.31055692,-0.1289122,-0.5093787,-0.4260975,0.08634409,-0.33346742,-0.7263155,-0.030233653,-0.12898557,-0.68860596,0.5646196,-0.038143992,0.11572161,-0.042825673,0.14214109,0.324724,-0.13882841,-0.1832239,-0.15343586,-0.14343841,-0.6898666,-0.30944803,-0.81596494,-0.5464291,0.21734887,1.2429621,-0.18599749,0.03235285,0.0040435884,-0.315043,0.055107977,0.007941227,0.101721436,0.4383993,0.15033846,-0.14670624,-0.8076018,0.5454329,-0.012231433,-0.025069889,-0.32013825,0.11588095,0.62411404,-0.6627463,0.20388062,0.22601333,0.12803926,0.024163123,-0.3947533,-0.16827895,0.20819356,-0.29974154,0.3781916,0.021139305,-0.76420265,0.5076624,0.4506135,-0.33226186,-0.74311405,0.44286272,0.013152366,-0.0923009,-0.062219225,0.23968282,0.14002839,0.15963028,-0.298746,0.2603064,-0.61608475,0.36954334,0.46822885,0.036220606,0.31657857,-0.3014025,-0.25545105,-0.6121173,0.13234733,-0.47239658,-0.14909866,0.14323719,0.040693264,0.004409735,0.21980835,-0.009375067,0.4258771,-0.31616205,0.010401941,0.072982535,-0.39232016,0.30083412,0.4665487,0.47010356,-0.4186285,0.6649199,0.06203481,0.021796644,-0.44400904,-0.08947928,0.42098072,0.22590153,0.22639146,-0.15113346,-0.20670308,0.45558092,1.0774566,0.22768886,0.42168573,0.11083247,-0.116243415,0.1368181,0.13809076,0.041227598,0.13752137,-0.39556435,0.048584186,-0.0032017964,0.13888264,0.5789713,0.17784196,0.33571228,-0.17004094,-0.304656,0.15096536,0.20539664,-0.13376188,-1.109124,0.31624654,0.23951387,0.51107633,0.6007923,0.024529237,0.11995609,0.636371,-0.35034576,0.1839682,0.23146787,-0.15453993,-0.6708877,0.65653616,-0.72314614,0.48974764,-0.12523529,-0.003940798,0.09539162,-0.06322798,0.42452276,0.8237,-0.011276589,0.11150703,-0.025800338,-0.29004878,-0.011934086,-0.4285567,0.007385566,-0.53294283,-0.40156043,0.56447816,0.35207942,0.2767286,0.051320307,0.01224752,0.10057775,-0.110875204,0.3792536,-0.12414045,0.09784056,-0.10108078,-0.57808197,-0.29928392,0.67568266,0.07181453,0.2153016,-0.03118114,-0.30883157,0.2852495,-0.18437494,-0.18188137,0.06604861,-0.67036355,0.22139798,-0.31660807,-0.34722206,0.31185883,-0.20231721,0.25795645,0.15483944,-0.039520107,-0.34835613,0.24825563,0.075693056,0.7426698,-0.062013544,-0.30976707,-0.13893595,-0.026273109,0.09641051,-0.26554787,-0.024910735,-0.28065902,0.08065951,-0.8517743,0.5223087,0.0058694826,-0.417849,0.24271171,-0.12845519,-0.019514916,0.44706255,-0.06147214,-0.1132648,-0.24891439,-0.09382912,-0.20630154,-0.22874434,-0.12810796,0.24444333,0.11315485,-0.04351823,-0.07248349,-0.035931434,0.06835038,0.54661477,-0.132301,0.35187307,0.26004413,0.12360132,-0.46760005,0.0029986869,0.17214128,0.32767737,0.0085282065,0.14612478,-0.17988011,-0.22800782,-0.19737123,0.11915871,-0.35245222,0.4096499,0.102688976,-0.5060286,0.7843996,0.11843724,1.2434862,-0.02044962,-0.32630274,0.10648884,0.35896125,0.0021085693,-0.025190344,-0.24110533,0.8564514,0.5835609,0.028306391,-0.21897894,-0.5010872,-0.32921618,0.41743448,-0.25102407,-0.13625129,0.057055514,-0.53947705,-0.31717584,0.252495,0.26333252,0.097229235,0.042518914,0.24144538,0.038311925,-0.03753316,0.22216612,-0.42968288,-0.099574395,0.38530672,0.15625653,0.08036023,-0.017325737,-0.4973036,0.408646,-0.6938857,0.23795758,-0.25875103,0.13120602,0.02074005,-0.23786555,0.24066493,0.14623557,0.43087536,-0.20152377,-0.34320337,-0.13516048,0.76195246,0.13091503,0.1319773,0.7238637,-0.36454457,0.26192042,-0.050243203,0.25213897,1.1153349,-0.25822443,-0.054217998,0.16085547,-0.27558193,-0.64647126,0.43306285,-0.28403884,0.11997041,0.10124194,-0.44753736,-0.6384395,0.20136243,0.3964289,-0.049542665,0.11650908,-0.29014155,-0.2661734,0.1922907,-0.33750865,-0.32677788,-0.45950222,0.17017937,0.6005762,-0.38892204,-0.26080528,0.15542406,0.28501374,-0.29011786,-0.43155226,0.028306412,-0.18215631,0.16173424,0.121911354,-0.36200967,-0.073641226,0.1680323,-0.2737137,0.033546165,0.36626858,-0.42348868,0.10611224,-0.38467297,-0.04428238,1.103456,-0.1779961,-0.3795838,-0.77223617,-0.54642737,-0.7816036,-0.506684,0.76189476,0.19097295,0.046222202,-0.5754864,0.1824868,-0.018432688,0.05090878,0.022485444,-0.42251408,0.4184998,0.10796302,0.38660234,-0.037055768,-0.7147674,0.2641862,-0.007088221,0.103372134,-0.43642393,0.51404196,-0.08347858,0.9317973,0.11627315,-0.030088017,0.2011093,-0.47213295,0.07964998,-0.17704354,-0.20269898,-0.7315539,0.07874254 +318,0.27637112,0.023951054,-0.5398916,-0.22834097,-0.18711755,0.23905894,-0.089516066,0.32783088,0.105120614,-0.25269502,-0.07401112,-0.20183498,-0.09795244,0.44610775,-0.16400261,-0.6821953,-0.08488858,0.08763339,-0.6791917,0.4218079,-0.43688667,0.4541573,0.14273329,0.21977834,0.052722763,0.29072487,0.18419807,-0.1492073,-0.11919885,-0.006655089,-0.10919195,0.08360409,-0.7415913,0.20030206,-0.11983851,-0.17502002,-0.07910829,-0.35202128,-0.24438912,-0.634269,0.25518936,-0.5060592,0.53431004,-0.16133162,-0.286795,0.23955567,0.102790385,0.3201151,-0.35568133,0.110679895,0.20018722,-0.042938665,-0.02000411,0.011942136,-0.24121042,-0.4946982,-0.525312,0.13820557,-0.68297005,-0.20548348,-0.1452743,0.15593435,-0.23069498,0.0022336324,-0.30108708,0.51820356,-0.2949368,-0.012453111,0.28098863,-0.07331503,0.10547862,-0.4327944,-0.036467392,-0.08421547,0.30340087,0.028743673,-0.16673444,0.2441831,0.47505495,0.4961272,0.076099016,-0.21167493,-0.14207672,-0.07982264,0.075764224,0.3949534,0.054783646,-0.30855948,-0.15351412,-0.0025143793,0.005712239,0.0531534,0.056186642,-0.4989647,0.041426226,0.10748381,-0.22025135,0.1208769,0.3717256,-0.5061834,-0.35280636,0.49148336,0.4702169,0.121411934,-0.01008153,0.106069274,-0.12965956,-0.5124506,-0.18949093,0.15632278,-0.13649264,0.52368015,-0.11936585,0.15754665,0.66599476,0.009088699,-0.010683942,-0.13865875,-0.13889167,-0.006206083,-0.2816118,-0.12065583,0.0011341035,-0.41487247,-0.03926197,-0.23159203,0.65145713,0.08529976,-0.8431826,0.38623142,-0.5079842,0.121574424,0.06649841,0.5600599,0.8138802,0.30008143,0.029134028,0.7753601,-0.51677287,0.07485667,-0.037160814,-0.26548442,0.17091165,-0.08478082,-0.0057149846,-0.54920506,0.03683432,0.012269099,-0.04758834,-0.025708683,0.19905177,-0.4121589,-0.12341656,-0.053146433,0.63960344,-0.36439997,-0.19342889,0.650829,1.0271573,0.89335555,0.1650771,1.3993633,0.4096325,-0.17357877,0.16503666,-0.48833275,-0.5556707,0.123848654,0.32612145,-0.059785653,0.4030222,0.034261007,0.14300022,0.44939175,-0.23922315,0.2165101,-0.023650905,0.3015889,0.00945454,-0.18199347,-0.308004,-0.32803443,0.2048696,0.016987165,-0.03677392,0.2418315,-0.15860415,0.2508996,0.21928455,1.6789138,0.044193126,0.15034193,0.02573875,0.25079232,0.2818248,-0.26846156,-0.22455445,0.35131726,0.2954528,-0.19351403,-0.51759994,0.0010355373,-0.36156994,-0.4417529,-0.30585787,-0.3469698,-0.06941431,-0.064786784,-0.40798095,-0.14360915,0.10911908,-0.19024353,0.42209834,-2.6839554,-0.16889492,-0.1809265,0.2901039,-0.40396163,-0.26525253,-0.17457908,-0.3638523,0.3661204,0.5337388,0.26210308,-0.55046356,0.31387967,0.20231333,-0.2191825,-0.27447805,-0.6138904,0.09352113,0.04350712,0.19096276,-0.14596061,-0.0970812,-0.2657994,0.30792198,0.46587434,-0.048127748,0.0041082706,0.3237433,0.38920662,0.11223305,0.4941193,0.18894716,0.5967444,-0.10201553,-0.0008610646,0.346741,-0.3408573,0.27991194,0.1984405,0.19682404,0.25090164,-0.5784729,-0.70440537,-0.57224005,-0.45202008,1.0819682,-0.44722512,-0.14534134,0.3431465,-0.0063822987,-0.10746409,0.046484645,0.40114507,-0.014489416,-0.07295736,-0.68121326,0.042531855,0.07902051,0.22724155,-0.17587978,0.19960971,-0.32858175,0.6102369,-0.15151224,0.41194674,0.44112265,0.25302348,-0.09752867,-0.44211423,0.080784425,1.0522358,0.3897427,-0.019389952,-0.083657734,-0.1799273,-0.31494513,-0.1201673,0.10190209,0.3076495,0.6674052,0.057952385,0.024792464,0.22465476,-0.20508114,0.08733442,0.010088495,-0.3850865,0.010112792,0.042642936,0.44065768,0.40307578,-0.23866902,0.5125628,-0.3124139,0.06424239,-0.20545398,-0.52541584,0.5783214,0.66813314,-0.2804752,-0.14400567,0.3557798,0.27423176,-0.25540125,0.3342174,-0.43011743,-0.25400355,0.8660685,-0.07625889,-0.24846989,0.070058376,-0.17678586,-0.026866836,-1.0374949,0.25470605,0.036486506,-0.41556975,-0.48606256,-0.15242094,-3.4574857,0.006317691,-0.09726129,-0.0511046,-0.073624104,0.018321108,0.27174664,-0.4062077,-0.5797814,0.017884266,0.00465885,0.47252998,0.03121422,0.25302574,-0.22734256,-0.2718722,-0.37960473,0.2566372,0.10986091,0.31890425,0.060315236,-0.349263,0.03616357,-0.35700378,-0.508507,0.157877,-0.46768105,-0.50973195,-0.2850078,-0.4901801,-0.3087531,0.7836489,-0.41140115,-0.10049625,-0.19344988,-0.054891206,-0.13094112,0.30584472,0.24540213,0.20630045,0.14490597,-0.099499226,-0.17893621,-0.45602912,0.123404786,0.15974495,0.31536072,0.5245475,0.024641188,0.23608683,0.49193385,0.6178836,0.018115096,0.46115315,0.30637398,-0.088657565,0.39215106,-0.4769879,-0.03731779,-0.5164503,-0.3706877,-0.39242223,-0.364523,-0.545951,-0.20009695,-0.385258,-0.7275171,0.25673714,-0.028749045,0.10455561,-0.019460836,0.34160012,0.31835642,-0.14175068,0.12899399,-0.17842725,-0.24488409,-0.45096081,-0.48941866,-0.6301497,-0.551939,0.3136594,1.1339297,-0.086060904,-0.23565479,-0.16874106,-0.2567798,0.14310837,-0.093112245,0.16335149,0.19477436,0.30912966,-0.198443,-0.7040095,0.41681603,-0.07695875,-0.20158768,-0.61211866,0.050708905,0.6196811,-0.49144718,0.6087189,0.20981884,0.21883969,0.18235627,-0.4242665,-0.14808826,0.18152255,-0.37345186,0.48509243,0.056386754,-0.5121849,0.4267759,0.16482933,-0.058024373,-0.7316878,0.5016706,-0.037661053,-0.12341622,0.12707916,0.3209602,0.060468365,-0.11089712,-0.16111214,0.26171383,-0.53336984,0.17507932,0.50724995,0.08411773,0.52183855,-0.09707775,-0.23047099,-0.53671193,-0.12852535,-0.51414037,-0.32428977,0.025322147,0.28911898,0.17608611,0.029989148,0.07988623,0.41580006,-0.33858633,0.13942613,0.036697533,-0.12701124,0.36177245,0.38904637,0.21173,-0.46312115,0.44497046,0.052364595,0.11960588,-0.23613341,0.03630162,0.3893381,0.3115618,0.1413757,0.10583805,-0.07450256,0.2685934,0.5145698,0.18360707,0.27580172,0.114094764,-0.3499495,0.2617841,0.03965908,0.008618816,0.058918145,-0.17442198,-0.10599424,0.11918783,0.18297027,0.43739837,0.14708449,0.22179817,-0.06837585,-0.054762285,0.24718128,0.17770304,-0.11813385,-0.72927576,0.3933695,0.15837468,0.645591,0.6263954,-0.097218275,0.13913223,0.35737297,-0.37459183,0.18038744,0.42231864,-0.061057653,-0.48083484,0.55960727,-0.5724757,0.4853391,-0.2028955,-0.04235413,0.099750616,0.1817041,0.35351577,0.9839742,-0.07413532,0.035048567,-0.07674928,-0.19041291,0.08295608,-0.29077688,0.087670736,-0.5136526,-0.38208312,0.54492354,0.25014108,0.1951701,-0.4173317,-0.098216504,0.044474863,-0.2558634,0.1475378,-0.06735547,0.019612318,0.07276844,-0.5846067,-0.3881117,0.5164182,-0.22142996,0.039314512,0.17989327,-0.3835439,0.15978248,-0.25329834,0.027535273,0.02016145,-0.59751904,-0.07625417,-0.20135339,-0.29822698,0.23455499,-0.50721365,0.27262726,0.037858356,0.009228107,-0.43980408,0.20085236,0.22440015,0.68658614,-0.082600504,-0.10669644,-0.23568018,0.1436545,0.18733117,-0.28686687,0.028239029,-0.29083163,0.0933592,-0.60445184,0.35403615,-0.02259813,-0.23813261,-0.03302427,-0.11595364,0.036945507,0.45200157,-0.2472121,-0.05328027,-0.13523279,-0.113485605,-0.14080635,-0.016344389,-0.30618146,0.3244497,0.06352065,0.0140812555,0.08213026,-0.0029292027,-0.16040091,0.32275313,0.057431277,0.25415164,0.22081521,-0.0938596,-0.38077322,-0.07826676,-0.043285258,0.19666816,0.3785574,-0.120116234,-0.2576526,-0.15983275,-0.21383257,0.25782365,-0.22507551,0.09214359,0.09280626,-0.4450465,0.7538968,0.20327148,1.3212277,0.11449744,-0.22689615,0.081943415,0.462282,0.15497461,0.04239021,-0.40421066,0.778033,0.63588345,-0.05286323,-0.077109165,-0.25134027,-0.3579146,0.23682429,-0.13251427,-0.2471617,-0.057378672,-0.6888828,-0.31413278,0.035167076,0.18612243,0.03080529,-0.023950608,-0.1402326,0.13585849,0.06646338,0.46886063,-0.36311415,-0.023618404,0.32129008,0.10154204,0.17827721,0.27147463,-0.45143107,0.51390654,-0.8507633,0.27853045,-0.2518521,0.06156925,-0.05454619,-0.20504254,0.18651466,0.10677627,0.29447466,-0.18447962,-0.36551502,-0.26827767,0.7355654,0.20081417,0.28635377,0.83736795,-0.21587452,0.042808108,0.14994626,0.5297028,1.2746104,-0.021077517,-0.011378918,0.35726115,-0.39149603,-0.6679547,0.18718499,-0.3519697,0.11080701,-0.1799122,-0.28327474,-0.30686906,0.20810512,0.014587804,0.03356306,0.048298184,-0.5557206,-0.22453468,0.41035062,-0.34787768,-0.22946778,-0.28437367,0.2038077,0.80572575,-0.38184786,-0.38809732,0.032809965,0.21163766,-0.30402312,-0.6028587,-0.02957083,-0.2869406,0.38923758,0.24715143,-0.3507232,-0.019053075,0.35305846,-0.3935768,0.04690691,0.26746637,-0.4113444,0.014981764,-0.16736838,-0.14687966,0.9907744,0.15800166,0.014845294,-0.56399304,-0.5604551,-0.93632615,-0.28176087,0.30322972,0.004899152,-0.0060803136,-0.52066153,-0.090185925,-0.054950174,0.13665076,0.097818285,-0.48247048,0.33292028,0.15593942,0.35551465,0.015374438,-0.9307306,-0.13394363,0.20209001,-0.04430566,-0.5560987,0.5800101,-0.091999434,0.79486,0.049498238,0.005277113,0.17233251,-0.7147586,0.32796085,-0.36640593,-0.071166955,-0.5315115,0.124049075 +319,0.60890645,-0.32464716,-0.7739196,-0.042022973,-0.3519751,0.08342034,-0.26782733,0.30684343,0.32056114,-0.3244687,-0.25291082,-0.12480041,-0.07207375,0.5769887,-0.26493958,-0.8056291,-0.14884152,0.12697174,-0.4956495,0.45390424,-0.6618393,0.04142191,-0.0673936,0.70638514,0.24324943,0.19198978,0.20444874,0.0211398,-0.097569115,-0.114788026,-0.12863648,0.37939727,-0.81547755,0.073812164,-0.12418779,-0.4769388,-0.02095232,-0.6309503,-0.33283412,-0.89252573,0.45656136,-1.0738918,0.7519307,0.16964929,-0.30651173,0.014506797,0.048137728,0.14775772,-0.34024176,-0.03534073,0.3697835,-0.38545498,-0.11958009,-0.24838711,-0.2983399,-0.5875457,-0.8507207,0.05216816,-0.43881905,0.1729011,-0.17833988,0.25839517,-0.32791412,0.19552368,-0.42886367,0.47150484,-0.54460245,-0.1300128,0.2421291,-0.20125528,0.15248336,-0.60013986,-0.345685,-0.16859059,0.18947811,-0.0023340385,-0.30101758,0.17114936,0.29316798,0.58413535,0.11890105,-0.4504815,-0.45778823,0.11006111,-0.10734067,0.3457332,-0.38359305,-0.6589714,-0.21830165,0.12898663,0.4855897,0.3854698,0.115183316,-0.16221228,0.17097668,0.18422641,-0.10646918,0.6586979,0.57864136,-0.21200745,-0.37320924,0.22771563,0.42592856,0.07019752,-0.20205943,-0.1403376,-0.011382879,-0.5795362,-0.2203104,0.2337835,-0.25910854,0.6118937,-0.14189653,0.1238058,0.8582466,-0.40815997,-0.112685025,-0.11962176,-0.07049152,-0.15750156,-0.28021094,-0.29281446,0.37578604,-0.46228477,0.27428004,-0.4191164,0.6959582,0.051252574,-0.9304778,0.31996214,-0.60039586,0.02459886,-0.045851607,0.7805931,0.87013054,0.4496483,0.628283,0.8222688,-0.45731863,0.13557298,0.024057483,-0.49112558,0.26088557,-0.14244877,0.20586796,-0.5400201,-0.1435527,-0.13075458,-0.24812084,0.06431176,0.683707,-0.4885814,-0.027177317,0.13436824,0.5743198,-0.33597216,-0.11868701,1.0554309,1.1897496,1.3060548,0.13432269,1.4060682,0.33623257,-0.22790985,0.13085295,-0.28198937,-0.5840896,0.3368683,0.29453108,-0.6558567,0.6273311,0.18400301,0.13305692,0.63032824,-0.5033917,-0.03258358,0.11603097,0.21033458,-0.027134508,-0.007906836,-0.698198,-0.26090598,0.0050991364,0.059367687,0.22458595,0.40637478,-0.299685,0.58803934,0.08720094,1.3537945,-0.066197656,0.16876692,-0.07445269,0.48410296,-0.025832264,-0.13487102,0.058540065,0.23154593,0.4548482,0.11733518,-0.62481725,0.012598925,-0.2976167,-0.30229574,-0.31383613,-0.35622954,-0.016571328,-0.30414122,-0.39922214,-0.049606886,-0.06434333,-0.36926922,0.3594521,-2.093802,-0.22126102,-0.09191161,0.2819776,-0.09296527,-0.57481486,-0.12095923,-0.5501216,0.3588612,0.34112358,0.41722706,-0.8384573,0.5854945,0.34397018,-0.8061776,-0.10246875,-0.86755323,-0.056012254,-0.22137026,0.48954841,-0.10074285,-0.29114506,-0.27450654,0.14052029,0.6783431,0.1642704,-0.10192954,0.10099095,0.80577546,-0.21571095,0.8301499,0.15951312,0.68953896,-0.36413822,-0.27311578,0.54535794,-0.3685657,0.54588,-0.10523906,0.032976884,0.50217944,-0.45691136,-1.1762443,-0.6470525,-0.42586946,1.0550605,-0.3015298,-0.38620126,0.07925861,-0.24959199,-0.52859354,-0.07836006,0.57192606,-0.30573407,-0.04364947,-0.90039676,-0.08347895,-0.18049999,0.18095684,-0.12705515,0.29451576,-0.56629103,0.7725708,0.023083022,0.411731,0.40583548,0.24446608,-0.3044299,-0.545561,0.080185466,1.0681478,0.35200396,0.14816833,-0.28314885,-0.19519792,-0.082204856,0.016452476,0.020428231,0.6698544,0.635786,0.025220199,-0.024236823,0.3386726,-0.1803153,-0.053942144,-0.2610239,-0.3684758,-0.2186157,0.10991603,0.7759097,1.0767014,-0.37273362,0.42317128,-0.24006897,0.5144179,0.06522563,-0.33125308,0.5363049,0.94272107,-0.036974087,-0.15633047,0.8144825,0.49259362,-0.44747415,0.58456105,-0.78649265,-0.21119541,0.46338686,-0.0782887,-0.49249396,0.037457585,-0.32004747,0.09450803,-1.11582,0.1392907,-0.17831624,-0.4989771,-0.81846905,-0.18113738,-3.5834484,0.18662687,-0.36959627,-0.062070042,-0.1003502,-0.2821913,0.5148705,-0.8934634,-0.7205842,0.11043197,0.059262518,0.6586467,-0.23283172,0.29155836,-0.25481352,-0.3035554,-0.15773161,0.28341624,0.32683805,0.2745041,-0.061701104,-0.42980313,0.27052078,-0.23574318,-0.43816498,-0.089203,-0.62899673,-0.6267466,0.0006457418,-0.61675483,-0.30643517,0.7824633,-0.33141848,-0.22269136,-0.29635534,0.12474991,-0.10522396,0.42944965,-0.08033374,0.13875094,0.24692936,0.020337781,0.051674336,-0.11754837,0.26411557,0.049245197,0.4303255,0.44018936,-0.17696936,0.23994197,0.62804866,0.76038265,-0.03406847,1.0022146,0.52078754,-0.051065475,0.0521818,-0.17484866,-0.49410442,-0.96822566,-0.46978477,0.11955812,-0.58230644,-0.36988592,-0.18925285,-0.39737776,-0.969053,0.8543355,-0.066086546,0.16203828,-0.1970336,0.33408263,0.5707934,-0.39438072,0.10735142,-0.088801205,-0.11528639,-0.5978558,-0.437048,-0.583236,-0.71753806,-0.16611932,1.2800429,0.05206408,-0.18583278,0.15183313,-0.32364088,0.13579513,0.11292964,0.06423534,0.20754509,0.72151065,-0.009925991,-0.7768895,0.45177498,-0.27983344,-0.15254004,-0.70279485,-0.04534595,0.7786649,-0.76093644,0.73270154,0.40099275,0.20775338,0.048341352,-0.6489976,-0.25045612,0.17994438,-0.059427682,0.7907891,0.47165546,-0.52814156,0.5276989,0.19035949,-0.23747413,-0.64041054,0.4732667,-0.013716601,-0.20600902,0.024495244,0.3854097,0.04121213,0.041346647,-0.23310655,0.30380353,-0.36648977,0.2864237,0.34021565,-0.060389757,0.2723162,-0.07340622,0.035313014,-0.8823127,0.14434597,-0.4410622,-0.38224137,0.19022052,0.06526873,0.18981715,0.2100312,0.11573091,0.3633598,-0.4588666,0.11291027,-0.2160747,-0.35170734,0.31792918,0.6215865,0.38703594,-0.6133057,0.73113054,0.11983133,-0.17626542,-0.0066815615,-0.12065381,0.48998547,-0.023853987,0.2872978,-0.05253656,-0.33505058,0.17208524,0.7716996,0.149175,0.49037778,0.1785013,-0.0053046294,0.42656156,0.061968636,0.31959954,-0.09639027,-0.62723345,-0.052226126,-0.10544022,0.08171876,0.5013582,0.08521827,0.28610155,-0.17092699,-0.18751945,0.32580853,0.23290652,-0.0045620003,-1.5729538,0.37954125,0.13050197,0.8453985,0.4276826,0.060121,-0.03685363,0.70500326,-0.5135197,-0.16858144,0.5547444,0.31550652,-0.44894513,0.59178025,-0.52837104,0.41566232,-0.33350262,0.06705937,-0.109827615,0.06285272,0.40747118,1.0269011,-0.40196228,0.03308467,0.04503128,-0.1023429,0.11331892,-0.40457225,0.08463287,-0.54309684,-0.3406391,0.94250244,0.48219696,0.54015213,-0.27974042,-0.16075876,0.16599977,-0.100864895,0.15148892,-0.13318025,-0.23271191,0.016500339,-0.7972348,-0.043759335,0.5413814,0.16915761,0.19474654,-0.027225846,-0.48392668,0.26535144,0.005089591,-0.30986133,-0.095169626,-0.6440653,-0.2739863,-0.39503157,-0.69542974,0.33996883,-0.35912654,0.26883015,0.29326925,0.098811485,-0.16402696,0.123977415,0.2488801,1.1186787,0.30270022,-0.08286036,-0.31065097,0.27329338,0.40848795,-0.34031406,-0.24857621,-0.34040228,0.34028175,-0.53055114,0.58750933,-0.21221733,-0.5160135,-0.18340869,-0.0813563,0.07321415,0.5435129,-0.25834134,-0.22641386,0.13734578,0.04297359,-0.27471963,-0.24924403,-0.5078387,0.20861828,-0.09026315,-0.07708327,-0.08976766,-0.055764865,-0.18764739,0.57439655,0.21134882,0.24653418,0.5757243,0.012456278,-0.25887027,-0.11239517,0.016510438,0.7027597,0.050043,-0.5190236,-0.47394577,-0.2870871,-0.41199186,0.41171542,0.10324446,0.14240174,-0.027288923,-0.40163937,0.7363181,0.12964489,1.3947077,0.07479211,-0.5515119,-0.095842905,0.6465928,-0.09084817,0.086890936,-0.44968033,1.1133122,0.5296474,-0.28987962,-0.14447545,-0.7383184,-0.04319107,0.41563037,-0.43240428,-0.16662787,-0.25791982,-0.83810234,-0.09552487,0.25164053,0.37121615,0.08993127,-0.051794767,0.24912888,0.15813105,0.22588646,0.57662797,-0.5116157,-0.17677324,0.4177499,0.16827428,-0.112761416,0.06984892,-0.29464298,0.36166617,-0.5731623,0.1461326,-0.6708998,0.18593061,-0.27625844,-0.33273605,0.2936205,0.05574158,0.47718772,-0.4145919,-0.24782509,-0.19634874,0.7696858,0.21614873,0.2960423,0.7847221,-0.27478436,-0.21158361,0.0679014,0.41941082,1.5496974,-0.30510256,0.27332607,0.24140473,-0.23849817,-0.5518642,0.37126866,-0.5524084,0.010942261,-0.03725426,-0.52372307,-0.5127039,0.17437029,-0.032921623,-0.036398094,0.050512474,-0.45954633,-0.13514769,0.6487187,-0.36667815,-0.08692518,-0.17722857,0.27254525,0.7155482,-0.37367043,-0.4713885,0.007765571,0.59388196,-0.1460309,-0.48657107,-0.18159242,-0.36890462,0.58612144,0.012573771,-0.2443444,-0.043901008,0.19403769,-0.43025926,0.1894546,0.2684354,-0.38157764,0.11843904,-0.3502805,-0.108794875,1.156094,-0.048130196,0.31015578,-0.70325404,-0.47110164,-1.0141298,-0.33207867,0.009306778,0.026135406,-0.10550783,-0.71730465,0.053730417,-0.13296427,-0.09521245,0.048081126,-0.56518906,0.41164997,0.04222418,0.76220495,-0.11316124,-0.84800357,0.07550198,0.24818327,-0.0973376,-0.4810445,0.8149669,-0.032944113,0.8392255,0.10363718,0.43006173,0.033535387,-0.6486792,0.18526672,-0.29172727,-0.21315008,-0.96896696,0.086249925 +320,0.52310276,-0.42703003,-0.5961577,0.03673104,-0.23871638,0.14416271,-0.15245362,0.5798962,-0.030923175,-0.5472267,-0.13709027,-0.11724117,-0.021722184,0.41549942,-0.2031435,-0.42840806,-0.02571953,0.2628224,-0.55722815,0.66636074,-0.32955754,0.36016506,-0.062059656,0.28258374,0.06990194,0.26015824,0.057934113,-0.20309769,-0.25137243,-0.17949009,-0.093599245,0.23898774,-0.47287655,0.24656463,-0.15621424,-0.37115052,-0.012684196,-0.29828072,-0.3059241,-0.7350429,0.11797362,-0.69532937,0.5478477,0.016909337,-0.39263383,0.22727874,0.016143449,0.27952656,-0.300651,0.0984256,0.22805169,-0.11209526,-0.0952029,-0.3564201,-0.1461039,-0.6056294,-0.5759965,-0.060172644,-0.4424488,-0.12200346,-0.048913606,0.17343731,-0.25111204,-0.082351334,-0.20866942,0.41978264,-0.49191573,-0.08775309,0.104392275,-0.046926036,0.22910397,-0.56690764,-0.17753384,-0.24278474,0.14092864,-0.08311617,-0.19601656,0.24999097,0.1576345,0.4679952,0.0374187,-0.13910116,-0.24256773,-0.064103834,0.1306434,0.47655383,-0.15328328,-0.48356044,-0.07463925,-0.12439283,0.17131323,-0.1550634,0.16866861,-0.23081629,-0.116966836,-0.027160231,-0.20010163,0.045253012,0.39417896,-0.31954286,-0.3106845,0.31081465,0.60807437,0.1788179,-0.19806154,0.098807976,-0.10229264,-0.47975233,-0.20274459,0.14461273,-0.09017582,0.55767876,-0.18855406,0.20668268,0.5989758,-0.15215372,-0.005155579,0.0386849,0.029040484,-0.008553973,-0.08774614,-0.5720505,0.28740254,-0.35479593,0.069983535,-0.17439093,0.595887,0.22077826,-0.65165025,0.45148283,-0.5495004,0.0734504,0.03113846,0.4737145,0.63674664,0.563425,0.09781622,0.46050367,-0.24750371,0.10252774,-0.038250707,-0.16514407,0.09506176,-0.23786275,-0.21585006,-0.46892625,0.1530982,-0.029315216,-0.27387065,-0.17036384,0.46247387,-0.62086135,-0.06306268,0.038522944,0.7660087,-0.3127037,-0.04377246,0.6975596,0.87330955,1.0442315,0.08488052,1.1589549,0.30986804,-0.26269335,0.021451639,-0.2471378,-0.5695637,0.20418021,0.35641295,-0.027040299,0.45342207,0.015718056,-0.12195552,0.41054186,-0.29114178,0.086141184,-0.20248416,0.033315666,-0.06181719,-0.09529999,-0.5402002,-0.25584343,-0.16535291,-0.06958661,0.00835943,0.23184499,-0.20549656,0.32639486,0.17847417,1.6538677,-0.18044524,0.042091306,0.15405641,0.393065,0.14782909,-0.11163257,-0.021681791,0.29359967,0.4586993,0.14961602,-0.5061608,0.14058533,-0.16488314,-0.73564243,-0.20657319,-0.22836144,0.012932872,-0.14270423,-0.5673856,-0.18651204,0.08021774,-0.16493091,0.21301273,-2.346876,-0.056640673,-0.0761516,0.27527696,-0.17327932,-0.3994242,-0.05453237,-0.36952627,0.22641902,0.26217708,0.43258947,-0.6478617,0.47132936,0.34804776,-0.40564978,-0.06918209,-0.5919818,-0.17394096,-0.07521068,0.43627262,-0.0355804,-0.013290966,0.11643119,0.024037743,0.37603608,-0.30723172,0.12016271,0.20641705,0.20928858,0.1584817,0.29913706,0.12916976,0.5011204,-0.26853922,-0.13731797,0.39511287,-0.34318656,0.19027065,0.040771168,0.21862753,0.33559456,-0.45889142,-0.83862305,-0.680064,-0.22365803,1.1403441,-0.16380267,-0.2715074,0.096526615,-0.22374357,-0.3956149,-0.18570445,0.31973442,-0.1336976,0.05290666,-0.80887717,-0.025100885,-0.093647875,0.3746423,0.016547177,0.013230248,-0.48917803,0.576623,-0.043693133,0.63711506,0.4274505,0.1352925,-0.12551475,-0.4778959,-0.08809268,1.089281,0.4479298,0.14587098,-0.15496387,-0.21228412,-0.3489994,0.15548763,-0.04780054,0.42335203,0.74402404,-0.03918368,0.06387989,0.18137659,-0.024742085,0.22344495,-0.15296799,-0.3543943,-0.06690804,0.15711135,0.49989885,0.30555496,-0.14205052,0.5632799,-0.2738877,0.53359944,-0.15179352,-0.40879238,0.44754678,1.0957409,-0.2593504,-0.16297117,0.6145497,0.5084515,-0.31004295,0.3922924,-0.6560928,-0.2604373,0.326994,-0.2419743,-0.2432594,0.43561867,-0.23740013,0.36453208,-0.92256254,0.5205266,-0.32171923,-0.57395196,-0.626099,-0.14260203,-2.9557912,0.24866979,-0.118387274,-0.19739218,-0.027903585,-0.13352521,0.39451733,-0.6846342,-0.4559768,0.07220776,0.10952399,0.6023628,0.035981733,-0.086621955,-0.25324047,-0.50410736,-0.11179306,0.2816475,0.090291515,0.26067582,-0.17420883,-0.5293056,-0.081377186,-0.20695959,-0.34452406,0.06568911,-0.8383477,-0.5268383,-0.13691215,-0.52950484,-0.3229896,0.66399133,-0.20353632,0.1170143,-0.09400991,-0.06714587,-0.17593437,0.17342362,0.025362408,0.26092494,-0.015409513,-0.06880323,0.09900867,-0.20348406,0.0819592,0.15472294,0.2240403,0.35970503,-0.2611076,0.18964805,0.58555776,0.68323696,-0.110345356,0.82239515,0.62884253,-0.1810331,0.4301847,-0.17085412,-0.215472,-0.6414978,-0.48122412,-0.020225527,-0.36056516,-0.4695347,-0.046713065,-0.3044772,-0.81674933,0.64997464,-0.17769171,0.0011564374,0.086379446,0.38655424,0.51459366,-0.2019802,-0.06926703,-0.1106592,-0.17631921,-0.392026,-0.41969612,-0.75753754,-0.43002245,-0.020290295,1.3137499,-0.20265032,0.102445886,0.11910228,-0.23890118,0.040890694,0.13804907,0.0140869655,0.11323878,0.4156395,-0.22856797,-0.6999185,0.5260938,-0.10251741,-0.28134346,-0.18333356,0.27398655,0.74830043,-0.7420502,0.42677796,0.39903003,0.01959353,-0.24794383,-0.45325178,-0.22142096,0.096761584,-0.17791905,0.40523037,0.17879707,-0.6364259,0.40176657,0.3223625,-0.36337906,-0.674309,0.466035,-0.034596,-0.24624461,0.09229329,0.35890818,-0.2128289,0.058714136,-0.3728427,0.23585504,-0.48703936,0.19351467,0.37058797,-0.06062256,0.066548795,-0.24452001,0.006066235,-0.8277524,0.070992075,-0.3742927,-0.34809673,0.27575347,0.09067513,0.15379347,0.16030271,0.09234405,0.40889543,-0.4022886,0.1145716,-0.065352455,-0.30612585,0.4056926,0.40348282,0.21321869,-0.30048516,0.48067066,0.014155629,-0.09656267,-0.26822665,0.10614917,0.55329967,0.13995923,0.41759187,-0.07175066,-0.20809129,0.3414942,0.7960406,0.31075805,0.63572186,0.008313123,-0.13353406,0.18503883,0.10598922,0.23079924,0.094274126,-0.3302746,-0.049036987,0.08133186,0.20660114,0.50892043,0.051501267,0.38293898,-0.17100368,-0.24388734,0.040464696,0.21881573,0.035677005,-1.1121627,0.44952738,0.17801683,0.6300704,0.63427466,0.1635094,-0.1487482,0.57542026,-0.32316697,0.1152511,0.3423316,-0.034657247,-0.58375186,0.5372115,-0.64633286,0.33169693,-0.109656766,-0.052911762,0.041991796,-0.17266846,0.5426829,0.885586,-0.061672848,0.11909537,0.0026340366,-0.20194419,0.08360299,-0.34485015,0.05983253,-0.4133721,-0.365132,0.72632116,0.44687155,0.40450957,-0.16596515,0.057169702,0.11754587,-0.14681871,0.37333933,0.14159788,0.25827152,0.018147819,-0.61184394,-0.146302,0.5907497,-0.2443013,0.066687986,0.079526305,-0.5272512,0.2070147,-0.061287235,0.012469991,-0.02052462,-0.6342284,0.01956716,-0.39260644,-0.314178,0.56272304,-0.105340675,0.09672438,0.16362739,0.06874303,-0.2884674,0.29651174,0.13489887,0.62423015,0.12753966,-0.16645207,-0.18209185,0.28789333,0.16365999,-0.24058637,-0.11038415,-0.22937985,0.09673437,-0.60945046,0.3081116,0.11449493,-0.2470266,0.057097897,-0.053650375,-0.011761081,0.43658677,-0.026751598,-0.16964756,0.006404257,-0.011564628,-0.19327196,-0.2562915,-0.15231766,0.2831152,0.15324074,0.026573602,-0.067355424,0.08734996,-0.005008926,0.5697264,0.097411364,0.44382197,0.57593143,0.05398617,-0.4404455,-0.11826232,0.07837917,0.3688702,0.03857853,-0.030678503,-0.31638438,-0.42096606,-0.33231786,-0.023466023,-0.24987565,0.4095537,0.20375586,-0.24866565,0.962081,-0.012116241,1.2301676,-0.121592276,-0.33429763,0.06802109,0.41308016,0.05484677,0.0871844,-0.421737,1.0836129,0.45412222,-0.06312877,-0.097974844,-0.2605362,-0.22379008,0.09598141,-0.24343099,-0.22961079,-0.08146398,-0.6979023,-0.4134628,0.20855877,0.3279297,0.15414084,-0.10191556,0.17553124,0.2964163,-0.0066179195,0.12263704,-0.48660338,-0.025294764,0.38349375,0.2261432,-0.08421723,0.11654563,-0.5273925,0.3823045,-0.64266783,0.18934713,-0.20101975,0.08342401,-0.09682034,-0.43344232,0.21720524,0.11337616,0.23197907,-0.51437736,-0.37943316,-0.23735991,0.5510343,-0.048015416,0.12687606,0.60688645,-0.32748902,0.14510009,0.10743012,0.5069534,0.94957435,-0.3936566,0.006666009,0.42897612,-0.42128894,-0.63663447,0.11983841,-0.21399304,0.20996137,-0.13842313,-0.23002917,-0.66959256,0.2914076,0.27069017,-0.11239778,0.026939234,-0.47114295,-0.061672583,0.5208644,-0.44414523,-0.24871527,-0.30867442,0.3615519,0.593124,-0.5098935,-0.4924293,-0.037833255,0.23748241,-0.45958152,-0.50633705,-0.18309647,-0.43993872,0.46913016,0.23353806,-0.3241242,-0.015669862,0.04764737,-0.41171607,0.09243239,0.34146273,-0.3926268,0.11179863,-0.5221215,0.00039230386,0.8506596,-0.050069496,-0.10901987,-0.47792122,-0.4820458,-0.9157817,-0.5313889,0.49941388,0.25818282,0.0641017,-0.6132191,0.055982854,-0.12609883,-0.13868667,-0.026433144,-0.21720646,0.4602075,0.19764636,0.28624067,-0.10428422,-0.8474013,0.3317013,0.097263254,-0.11104898,-0.527386,0.39859515,-0.12938315,0.9752422,0.09650646,0.21941127,0.26768792,-0.56738085,-0.059617057,-0.1328104,-0.038040526,-0.74210376,0.094809085 +321,0.4404702,-0.27357876,-0.5565433,-0.10301788,0.0022624182,0.23981775,-0.1972521,0.4569587,-0.0010004685,-0.57983345,-0.059660144,-0.18520229,0.08207773,0.3449751,-0.18196464,-0.43465754,-0.122787714,0.30518717,-0.41261798,0.4890378,-0.4961601,0.30700538,-0.08566888,0.40195215,0.0148406625,0.21924862,0.13315135,-0.12732102,-0.34854537,-0.20105402,-0.09069256,0.3765743,-0.5141524,0.029992612,-0.1071848,-0.60368574,-0.040680222,-0.47316054,-0.25634858,-0.71242565,0.24359617,-0.9719015,0.5825592,0.08681404,-0.2829898,0.29269102,0.027555594,0.31433025,-0.072435215,0.1401871,0.19217774,-0.010986952,0.019490518,-0.33167428,-0.35639074,-0.5254042,-0.42791402,0.12011652,-0.38384432,-0.29168144,0.07279542,0.1459998,-0.1730368,-0.013869861,-0.18754485,0.18139093,-0.43440887,-0.16794194,0.14585169,-0.099228546,0.41437536,-0.5212616,-0.24608073,-0.1321803,0.29668915,-0.3769369,-0.053027943,0.069031924,0.33628258,0.5243486,-0.18337396,-0.010718559,-0.37390006,0.007148633,0.110950194,0.6007674,-0.3575896,-0.5688474,-0.16739517,-0.083918616,0.19674642,0.12696558,0.13882364,-0.22712325,-0.06183582,-0.1027685,-0.32745954,0.14689308,0.36457193,-0.56904644,-0.33561918,0.4149308,0.6045043,0.09329428,-0.19077934,-0.077710405,0.035155594,-0.3963053,-0.08476692,0.27509898,-0.17313187,0.5450671,-0.10158697,0.33413947,0.5720026,-0.052540634,0.21547808,-0.10352687,-0.05391023,-0.21472117,-0.17989555,-0.3507523,0.17106694,-0.2520906,0.046250775,-0.32161507,0.66864777,0.09797459,-0.7994188,0.51734704,-0.63228446,-0.034753226,-0.026334655,0.50122,0.37358445,0.44017267,0.065580964,0.42725056,-0.26784986,-0.079611905,-0.20699646,-0.109751225,0.0058469702,-0.09830999,-0.021522105,-0.4941804,0.27571785,0.10688327,-0.13703138,0.08005372,0.52594,-0.4552404,-0.13737458,0.22243008,0.8071905,-0.328666,-0.0087245,0.7045069,0.97152096,0.79615486,0.0030731468,1.3477042,0.27824232,-0.32341984,0.03670456,-0.33871982,-0.74840575,0.27352005,0.4256546,-0.41088045,0.49490407,0.14565049,-0.06077815,0.3315581,-0.20811044,0.12934838,-0.37457135,-0.14418104,0.044924956,-0.024987945,-0.3764126,-0.23005581,-0.055955894,-0.031408567,0.17631334,0.20668125,-0.24859406,0.32585767,0.14152227,1.9152973,-0.21067502,0.14232261,0.0523048,0.39257208,0.09749388,0.0040778313,0.046773337,0.29474837,0.32644254,0.023074461,-0.4465321,0.14529315,-0.06810319,-0.6012291,-0.16742764,-0.094790496,-0.15127836,0.119727366,-0.43461642,-0.057839375,-0.10537647,-0.16537109,0.31104615,-2.5499365,-0.20722674,-0.06792558,0.18389463,-0.3359123,-0.4562103,-0.25312516,-0.34107488,0.37728888,0.38491744,0.44389135,-0.62980807,0.51005304,0.26692083,-0.3601408,-0.14312147,-0.59028494,-0.15527579,-0.07597505,0.19534995,-0.17126815,-0.084650405,0.11556253,0.05766199,0.29047143,-0.15140167,0.049691044,0.31074393,0.3992806,0.2400706,0.3136577,0.031046228,0.49709845,-0.24506181,-0.25302002,0.35805878,-0.4469679,0.36155587,0.104830466,0.12741168,0.2818268,-0.5969313,-0.9206455,-0.8100944,-0.4085094,1.1382874,-0.118116654,-0.39445627,0.11239297,-0.16404827,-0.5884688,-0.17069629,0.43172786,-0.10702874,-0.09200729,-0.8412376,-0.05219569,-0.1217189,0.33288097,0.03441197,0.008167707,-0.5349692,0.5534627,-0.06932858,0.5206101,0.42741993,0.13028263,-0.18055807,-0.37002468,-0.105412535,1.0414561,0.21795982,0.17233603,-0.1684819,-0.21479757,-0.49502227,0.15596148,0.09226214,0.36831233,0.60976434,0.05519635,-0.021827493,0.28516588,0.04840978,0.11187995,-0.12679349,-0.17838955,-0.105392255,0.21588199,0.45938948,0.31503233,-0.253018,0.47228387,-0.2251254,0.3470845,-0.2437082,-0.3340707,0.42401204,0.79543436,-0.16818954,-0.1734147,0.7211023,0.5032648,-0.46441525,0.41564816,-0.53183365,-0.26854804,0.21063422,-0.2739003,-0.28970936,0.45795444,-0.29218817,0.23963378,-1.0144628,0.23117658,-0.37396696,-0.13897444,-0.6656857,-0.019198643,-3.385591,0.2846467,-0.018487113,-0.25787082,-0.043324806,-0.1276571,0.38121015,-0.6287968,-0.67523444,0.06953134,0.07662338,0.55935574,0.025896069,0.13841106,-0.24725357,-0.27373585,-0.16318037,0.19460799,0.14061667,0.2903383,-0.18286602,-0.5276951,-0.19253299,-0.21580788,-0.1612273,0.06923444,-0.7582306,-0.4046931,-0.0575521,-0.60079205,-0.20652859,0.55895984,-0.37277237,0.06339026,-0.20919777,0.0774858,-0.32040608,0.39216137,-0.0174976,0.17828992,0.065763205,-0.15749535,0.06404328,-0.17176296,0.20099425,0.04218239,0.13691756,0.35611436,-0.29238346,0.1968609,0.3889097,0.68558055,-0.040727504,0.68388104,0.50792164,-0.19283533,0.28678495,-0.38396198,-0.26356485,-0.5698134,-0.30046272,-0.0012224179,-0.37859976,-0.68225425,-0.18563351,-0.27057558,-0.6902145,0.6234761,-0.123977415,-0.006703459,0.14091994,0.46576992,0.4576829,-0.22099565,0.086981624,-0.104227535,-0.08991511,-0.43730742,-0.3561303,-0.57924944,-0.30635616,0.18098314,1.0626688,-0.10538978,0.1620761,0.17030272,-0.17595908,-0.002021511,0.2184398,0.1508593,0.043144677,0.599749,-0.14892645,-0.6195816,0.4490586,-0.07613085,-0.35732418,-0.27192232,0.05709133,0.63357174,-0.7307177,0.58596,0.40521064,0.048201647,-0.005553319,-0.47807986,-0.1497713,0.04500608,-0.23646294,0.38886398,0.23764324,-0.6158291,0.33739808,0.49405444,-0.072174385,-0.7181202,0.45923144,-0.017990204,-0.34438103,-0.07835665,0.4417884,0.016391333,0.05902976,-0.25037992,0.17712249,-0.45719272,0.16131662,0.20121154,-0.09002887,0.33988154,-0.3144978,-0.103506,-0.75627995,0.14782347,-0.4788483,-0.28663352,0.30317274,0.053231362,0.13821533,0.24504445,-0.0070791245,0.48503444,-0.5084573,0.13313964,-0.0028522061,-0.088764004,0.23126075,0.23469433,0.37274158,-0.44989723,0.49664986,-0.1163068,-0.2004243,-0.1973404,0.0055152634,0.6130905,0.117013626,0.23346272,-0.0016036079,-0.36774832,0.39809263,0.7484044,0.32056963,0.47579962,0.018817503,-0.16570562,0.1945959,0.11612392,0.07534199,0.009464228,-0.38689676,-0.16709335,0.01754297,0.114980265,0.37163675,0.01105261,0.42397645,-0.27069375,-0.19044913,0.025289187,0.24662144,0.07477085,-0.7972864,0.29686183,0.091414586,0.7301084,0.40637702,-0.028650407,0.15417871,0.49581236,-0.40983975,0.14646865,0.21488406,-0.1396691,-0.6783748,0.6100048,-0.56897825,0.17478754,-0.09916095,0.018602064,0.036482815,-0.21250373,0.5165888,0.73709655,-0.1006347,0.14233099,0.0013517336,-0.18474586,0.031199329,-0.21392256,0.00403829,-0.55947083,-0.19284879,0.63140893,0.31700113,0.44526005,-0.2313923,0.016582603,0.07559733,0.010017418,0.19046792,0.15249106,0.3033293,0.015877102,-0.6884305,-0.21359754,0.5926742,0.0841643,0.024371762,0.02476977,-0.57862943,0.40050572,-0.07580428,-0.02902155,-0.041448556,-0.49000672,0.016168173,-0.4317164,-0.37136596,0.35208064,-0.047459092,0.17919543,0.16682877,0.08471194,-0.25743696,0.40468195,0.13080874,0.7789568,0.18222196,-0.08841006,-0.33463484,0.34285986,0.1602544,-0.20362738,-0.16738823,-0.21695863,0.07309289,-0.54269683,0.44704723,0.096627794,-0.22620481,0.18391186,-0.028200595,0.09839511,0.47114393,-0.08361887,-0.10945936,0.010661387,-0.0016980446,-0.29863715,-0.16595715,-0.09792928,0.22683159,0.24259847,-0.078531355,-0.1868322,0.10312437,-0.13487633,0.55564696,0.00019449912,0.3736036,0.6169619,0.29756212,-0.30213538,-0.103250355,0.03601959,0.40471044,-0.15192384,-0.13405164,-0.26109594,-0.56184727,-0.19767693,0.28268287,-0.13553688,0.27727726,0.20812696,-0.17002708,0.794686,0.007897427,1.0335914,0.023988714,-0.35476714,-0.038196865,0.4522602,-0.096965715,-0.07967122,-0.4639832,1.0303553,0.5419768,-0.027932186,0.08156705,-0.25351134,-0.2300686,0.09567081,-0.23468287,0.075192146,-0.058166724,-0.67973036,-0.4174907,0.18060061,0.32638982,0.15972707,-0.077802055,0.41110283,0.25900874,0.167951,0.16563965,-0.38569292,-0.294716,0.31420162,0.262253,-0.12132837,0.15512063,-0.39178798,0.31670836,-0.60823464,-0.027212858,-0.37138808,0.04546558,-0.036935855,-0.4036132,0.057294685,-0.05663395,0.16980211,-0.39772636,-0.3823579,-0.051589005,0.38380605,0.11782993,0.14103732,0.60327727,-0.17125812,0.24595474,-0.013515839,0.48307604,1.0534866,-0.16428114,-0.019671509,0.42242172,-0.17145406,-0.6667264,0.29574808,-0.3535883,0.29379052,-0.02381879,-0.15483278,-0.5868169,0.4164951,0.28013748,-0.06796389,-0.016056629,-0.41204056,-0.05018889,0.3862373,-0.350722,-0.18031335,-0.31101614,0.13186303,0.71999454,-0.27556303,-0.427908,0.05588029,0.36669615,-0.42685217,-0.46563178,-0.04332828,-0.45249373,0.32819593,0.2167181,-0.29774272,-0.12119259,0.0026406324,-0.35480055,0.16319036,0.3090477,-0.37947333,0.11419961,-0.5783367,0.04889123,1.0241883,-0.0875604,0.114298314,-0.49105576,-0.5733144,-0.87537503,-0.43893352,0.5493805,0.19493967,0.064247005,-0.52130216,0.25563785,-0.090391874,-0.22826256,0.07857384,-0.13711931,0.44775566,0.1433534,0.49862286,-0.21226467,-0.6481679,0.1186057,0.14696676,-0.09829255,-0.4796664,0.5707859,0.042345185,1.0122788,0.055901308,0.07804807,0.4262734,-0.6274125,-0.108890146,-0.2387513,-0.09112971,-0.87425685,0.052497864 +322,0.45009357,-0.06826473,-0.30222476,-0.13671388,-0.24530937,0.17724206,-0.06168486,0.46605122,0.15272287,-0.40902397,-0.17848852,-0.29855818,0.06474167,0.2935275,-0.17215145,-0.66139877,0.19376224,0.11290436,-0.33860528,0.40233994,-0.49720737,0.5943419,0.19553661,0.14655131,-0.036859002,0.23819372,0.25403905,-0.23310801,-0.0940935,-0.30506286,-0.30934548,0.35095674,-0.67925155,0.14361581,-0.20196016,-0.36265928,0.26232523,-0.47734365,-0.2696553,-0.7306883,0.12130766,-0.6623762,0.6220757,0.116263516,-0.18748668,0.21414006,0.049973115,0.20349748,-0.11663812,0.18193245,0.16468616,-0.14304852,0.01425378,-0.14769092,-0.2966296,-0.65742517,-0.53076833,0.063609414,-0.3911975,-0.35367584,-0.26095837,0.08198275,-0.39122823,-0.004969187,-0.1509873,0.31453156,-0.41460532,0.029891461,0.20704773,-0.22054727,0.16817735,-0.56563103,-0.061735965,-0.13758488,0.110854305,-0.32210696,-0.17720063,0.22504084,0.34516832,0.40138042,0.03328629,-0.3239556,-0.039287496,-0.13143837,-0.04728149,0.69269305,-0.32890666,-0.6295129,-0.053345677,0.069863215,0.22823545,0.22410806,0.08016245,-0.23613296,-0.17039919,-7.2252005e-05,-0.32793945,0.34806553,0.48335966,-0.47555664,-0.27857628,0.24618348,0.38702175,0.09401432,-0.008649753,0.014869377,-0.05166199,-0.5729368,-0.20823562,0.06956543,-0.12239089,0.47483253,-0.16479713,0.18920235,0.7854651,-0.20501094,0.14053103,-0.039116308,-0.06767574,-0.081153676,-0.22014296,-0.22149631,0.25467765,-0.53832585,0.084506966,-0.25348026,0.9064138,0.22128713,-0.6306827,0.3281424,-0.4794782,0.075739056,-0.06457228,0.5006917,0.49766755,0.3423829,0.19748834,0.50103706,-0.4844163,0.068627015,-0.14570703,-0.40950495,0.1014967,0.03040247,-0.066303305,-0.2775025,-0.004308045,0.09728837,-0.08358221,0.14113961,0.27280858,-0.6558589,0.006008068,0.18082234,0.77725554,-0.37305295,-0.15122023,0.69985473,0.8704008,0.750119,0.0014455812,1.4046988,0.35476714,-0.11826256,0.05422292,-0.24990824,-0.47104955,0.19011074,0.4361843,-0.43586433,0.21359883,0.07966452,-0.026029395,0.28801292,-0.24258098,0.023052782,-0.15181123,0.123183444,-0.07332901,-0.23658241,-0.43258697,-0.26856166,-0.036484316,-0.03403132,0.2154623,0.2607288,-0.15480636,0.26862717,0.10076937,1.349501,-0.036339775,0.02781589,0.0536148,0.3078626,0.39769703,-0.03101401,0.13267995,0.35558474,0.3709222,-0.03506522,-0.49027187,0.056252144,-0.19999456,-0.55698514,-0.15924793,-0.28734666,-0.06646349,0.12779517,-0.44840798,-0.10344437,-0.0076200143,-0.10085789,0.58721614,-2.6407447,-0.11162514,-0.031509124,0.25687465,-0.18843529,-0.48556483,-0.13798551,-0.4954117,0.42022848,0.35757926,0.3866991,-0.77487403,0.21839282,0.42461675,-0.41019145,-0.26823223,-0.7084134,-0.042798515,-0.102550715,0.3252015,0.144907,-0.0593163,-0.034783714,0.08505459,0.6165321,-0.09463806,0.06530548,-0.016265664,0.4262998,0.039441526,0.43439096,0.18270566,0.5587867,-0.0022235736,-0.12472873,0.38189372,-0.3427772,0.24787122,-0.081923775,0.15947989,0.23482892,-0.22484162,-0.755123,-0.62256336,-0.49210167,0.9184728,0.061811194,-0.3126794,0.13370524,0.16687159,-0.26945853,-0.022839487,0.41268197,-0.25417686,0.07441811,-0.64414746,-0.021942772,-0.022610188,0.044101812,-0.027350692,0.01516486,-0.4826547,0.5695889,-0.047124375,0.34318197,0.3212886,0.2605259,-0.24737509,-0.48248267,-0.16020392,0.9103038,0.55320716,0.12894586,-0.21874025,-0.18943861,-0.24859825,-0.08831225,-0.029963566,0.52477455,0.8911046,-0.046443164,0.039464414,0.26717642,0.1347881,0.11021476,-0.07434945,-0.31502822,0.15407029,-0.008025162,0.60912025,0.37385786,-0.1826345,0.40524113,-0.086364985,0.57046914,-0.15301526,-0.4800512,0.4114769,1.0659993,-0.16597562,-0.007443847,0.61145544,0.35785848,-0.24757972,0.3756895,-0.68408704,-0.28957075,0.62956285,-0.20193385,-0.42818362,0.2927412,-0.2307441,0.0408725,-0.8623804,0.49758792,-0.1518028,-0.44207442,-0.48926395,-0.17849721,-3.5541794,0.1340473,-0.22006118,-0.009874959,-0.09830075,-0.17534234,0.109057516,-0.5207662,-0.27300292,0.17079651,0.13347554,0.46745878,-0.04672323,0.13992839,-0.34506708,-0.30760977,-0.22458172,0.2512135,0.026048433,0.24589415,-0.15487003,-0.2895883,0.113185115,-0.25903058,-0.4875038,0.18309629,-0.6801925,-0.4676381,-0.19158365,-0.651128,-0.25522867,0.74307615,-0.39421204,0.04966822,-0.1190694,0.101040624,-0.13957387,0.3528782,0.20223917,0.13682826,-0.068588145,0.026400814,0.053386703,-0.37945807,0.33800358,0.21951431,0.39384073,0.3194284,-0.1229673,0.04318403,0.4474368,0.43249297,-0.04022055,0.70634055,0.3184141,-0.106138915,0.41483378,-0.22813523,-0.40759218,-0.5693715,-0.5087138,-0.030261658,-0.39077312,-0.3806951,-0.17878455,-0.32247615,-0.62487686,0.5190778,-0.017060585,-0.047630146,-0.15276599,0.25718677,0.3670417,-0.23544541,-0.11420581,-0.041044,-0.03179808,-0.3963755,-0.33348745,-0.62890923,-0.49652103,0.10322596,0.85085267,-0.15825775,-0.036986645,-0.17917001,0.21328667,-0.03770163,0.011467308,0.06304647,0.046306007,0.32276875,-0.27304718,-0.64932853,0.59940565,-0.10991657,-0.3348916,-0.5863997,0.15451086,0.6529668,-0.7040514,0.51104546,0.46249935,0.019284993,0.02344076,-0.55284315,-0.2322242,0.1318674,-0.24942887,0.4107251,-0.046291843,-0.60866034,0.49953887,0.36326274,-0.3689088,-0.57072544,0.6033034,-0.009004949,-0.37964648,0.12277734,0.35687992,0.030061945,-0.027724836,-0.12516646,0.2062802,-0.58227694,0.258398,0.25961232,0.10537677,0.5381402,-0.051779196,-0.30264783,-0.87184817,0.06717482,-0.44102353,-0.3506274,-0.04628554,-0.033246286,0.018844858,0.37654954,0.018103473,0.40907568,-0.40293592,0.14624067,-0.13311419,-0.28044286,0.4007616,0.34791195,0.38809556,-0.2101185,0.5296248,0.07094013,-0.09711871,-0.067367494,0.14543515,0.5406311,0.076235,0.24884138,-0.05555884,-0.13769364,0.36070973,0.8068502,0.15595952,0.31933326,0.16412756,-0.08633782,0.27429813,0.14262846,0.13109525,0.25312978,-0.33952713,-0.10744174,-0.1313372,0.019287907,0.5694628,0.13133045,0.25691658,-0.06914228,-0.34903485,0.13200767,0.18542938,0.20827937,-0.7688954,0.12729366,0.12867428,0.64974976,0.37789226,0.09368623,0.049466647,0.518689,-0.2522604,0.16868575,0.19726202,0.0153948255,-0.472655,0.5729084,-0.5785444,0.4197085,-0.030367803,-0.02839464,-0.054569557,-0.13382638,0.36665097,0.930304,-0.18922088,0.12501095,-0.038570385,-0.16295408,0.14267582,-0.49542975,0.18173906,-0.33538902,-0.24961981,0.7441577,0.38446438,0.26618373,-0.18198623,-0.0038016587,0.24432805,-0.18463004,0.017991245,-0.012919322,0.19630182,0.0552743,-0.42257783,-0.27424106,0.62330395,0.0056038685,0.061844286,-0.10208309,-0.22892688,0.3142891,-0.23849052,0.008299299,-8.698553e-05,-0.70694304,0.07742496,-0.37418348,-0.54870766,0.42904845,-0.12799823,0.21963279,0.17272255,0.06312966,-0.13105272,0.30844185,0.28324676,0.80602133,0.06444504,-0.14927867,-0.39107436,0.19588856,0.18391594,-0.3124929,-0.14973302,-0.17476827,0.0869147,-0.6086776,0.3107036,-0.043271847,-0.26147363,0.072592095,-0.1908266,-0.09546764,0.40038958,-0.105132535,-0.20433578,0.21339774,-0.14166185,-0.14353539,0.042982057,-0.13016303,0.280127,0.23643754,-0.09933333,-0.03691629,-0.23981181,-0.19428957,0.2906858,0.019796804,0.33016783,0.16375537,-0.010773741,-0.41333294,0.011893913,-0.0054832846,0.31755117,-0.21315816,0.020036556,-0.16100064,-0.47323555,-0.2877294,0.008797161,-0.1245698,0.2464447,0.12245832,-0.2828,0.85135514,0.08623305,1.1602904,-0.056516826,-0.4333714,0.029935066,0.5272542,0.03043868,-0.008473655,-0.3567948,1.1925589,0.586407,0.029684048,-0.20505527,-0.22011986,0.036235776,0.18258825,-0.19691607,-0.15375079,-0.05018353,-0.59260917,-0.4178568,0.33024853,0.27654168,0.112610996,0.07613186,0.006979188,0.29639333,0.1512401,0.4378472,-0.69163704,-0.081369944,0.21000972,0.31169292,-0.030939024,0.18403721,-0.4187033,0.50728476,-0.50606656,0.18318686,-0.38556826,0.1260441,-0.31537756,-0.1623072,0.23732865,-0.035936065,0.30916446,-0.41894728,-0.38649967,-0.19207829,0.27592447,0.061804995,0.2859637,0.69608414,-0.23621833,-0.02074257,-0.07064095,0.63728374,1.1616383,-0.22162893,-0.10061358,0.5868689,-0.45523158,-0.5527356,0.22144678,-0.25771195,-0.011083964,-0.08529285,-0.30115372,-0.32341504,0.28762916,0.12953356,-0.03723654,0.0076028313,-0.5392165,-0.048483506,0.4160425,-0.3981595,-0.29500347,-0.3455663,0.59841496,0.85018843,-0.3248198,-0.32908523,0.023393538,0.28483772,-0.39997125,-0.72439146,0.0026414096,-0.18600681,0.540084,0.08128621,-0.1913262,0.06865581,0.0128724985,-0.3026981,0.08364965,0.4055968,-0.3854611,0.1021399,-0.196849,0.08237379,0.84925777,0.0029041432,-0.0817722,-0.7245099,-0.4327031,-0.8835263,-0.57372236,0.64858866,0.330574,0.066818535,-0.52738976,-0.1328676,-0.103529945,-0.12839971,-0.094977595,-0.20779794,0.39713103,0.16293114,0.51589006,-0.23729303,-0.8834529,-0.03957243,0.090318225,-0.18162885,-0.51154315,0.35015213,-0.0044746622,0.8398516,0.1955658,-0.118538424,0.4040133,-0.42962605,0.07115931,-0.35850054,-0.19075301,-0.8104645,0.13269085 +323,0.29698697,-0.1312197,-0.5290776,-0.14186904,-0.14783713,0.009669741,-0.0550677,0.5136228,0.30143368,-0.48306084,0.015035484,-0.2712678,-0.036011577,0.45326266,-0.15417649,-0.71418977,-0.0024420181,-0.023767956,-0.5827673,0.60227674,-0.40683264,0.21083085,0.040834162,0.4249318,0.16974616,0.40276322,0.14836663,-0.23817448,-0.09543573,0.044802036,0.01637366,0.07337324,-0.52315134,0.039404266,-0.12238096,-0.33000043,-0.011769978,-0.39965662,-0.43546358,-0.76371896,0.4292668,-0.8671814,0.42197558,-0.03351983,-0.21076539,0.18094331,0.19358058,0.399347,-0.40843385,-0.07906424,0.017588139,0.08363632,-0.06301466,0.011347562,-0.31549254,-0.3574501,-0.6588137,0.060170937,-0.52033114,-0.28284818,-0.26927146,0.13423195,-0.42989558,0.07212968,-0.06851807,0.6209894,-0.44065052,-0.12127422,0.44452408,-0.2961912,0.24589086,-0.505041,-0.10993055,-0.14604323,0.13294971,-0.11478119,-0.12846312,0.366265,0.34649178,0.60876995,0.07835164,-0.19888064,-0.284135,-0.027729336,0.22909811,0.3585931,-0.14594494,-0.58069366,-0.17093499,-0.029837433,0.0911674,0.112492934,0.18781781,-0.36188474,0.0043872753,0.24836569,-0.3269498,0.3603225,0.55414647,-0.362822,-0.36086586,0.28768703,0.51133525,0.19946721,-0.12953152,0.08648365,0.11021933,-0.5030527,-0.14343289,0.06573298,-0.30563673,0.573085,-0.12805699,0.19509216,0.79796416,-0.17465182,0.12569612,-0.11998752,-0.11224601,-0.09007053,-0.44523224,-0.18421389,0.10954188,-0.5253949,0.18904768,-0.2228291,0.76489335,0.36304656,-0.63318765,0.4394494,-0.55181146,0.31244084,-0.09807291,0.50637543,0.72540057,0.31880724,0.25768572,0.72795635,-0.5510689,0.05074553,-0.11583435,-0.38529152,0.048578754,-0.18980889,0.01325446,-0.34830335,-0.087542616,0.10296686,-0.1512958,-0.03888049,0.29801133,-0.54657096,-0.049018245,0.069006845,0.9885244,-0.25925556,-0.013709458,0.76379496,0.9359389,0.95454013,0.030502943,1.342596,0.28051758,-0.28414932,0.4029743,-0.31653196,-0.8493449,0.2691659,0.29401734,0.0074325404,0.2842969,0.0030645707,-0.016861347,0.4928772,-0.48338848,0.26023057,-0.30995938,0.29904082,0.17558047,-0.12217037,-0.17831063,-0.13086183,-0.008462427,-0.048204105,0.08632536,0.18569747,-0.082181826,0.30229637,0.08165085,1.6061499,-0.07871151,0.111398146,0.14022246,0.56435615,0.186387,-0.07312369,-0.11123467,0.14593501,0.4192011,0.11629652,-0.7274963,0.04971216,-0.43797252,-0.4685758,-0.13448569,-0.3797698,-0.035636153,-0.035189103,-0.49190533,-0.15683956,-0.17899282,-0.2893251,0.32986468,-2.6085994,-0.22949256,-0.30414644,0.2640111,-0.40345192,-0.1369698,-0.02715195,-0.5109246,0.33995527,0.46137053,0.38389668,-0.63124883,0.46215388,0.5407305,-0.45650056,0.068715975,-0.6539565,-0.13619515,-0.06972324,0.33672333,-0.0006851991,-0.05722006,-0.06484076,0.18645607,0.48198274,0.15412016,0.022718191,0.3068029,0.32234046,-0.0057476363,0.55967915,-0.03499668,0.5223196,-0.3291855,-0.08746922,0.33879617,-0.44596282,0.20211323,-0.087903984,0.12904464,0.45285237,-0.45429546,-0.81237435,-0.6899883,-0.31545863,1.1801566,-0.15960759,-0.32349735,0.45874995,-0.30440986,-0.030128289,-0.2026292,0.60688823,-0.045395803,0.04445599,-0.80696464,0.09106603,-0.18576585,0.11080552,0.04432227,-0.00837602,-0.27491638,0.6374967,-0.06311998,0.4753827,0.30556476,0.16623001,-0.22115326,-0.5407301,0.12906058,0.8850794,0.36308628,0.15572186,-0.14170009,-0.2328452,-0.5191447,-0.24839936,0.12037928,0.42806536,0.89376056,-0.04787011,0.1278602,0.29032263,-0.04218725,0.08474953,-0.09921816,-0.48899618,-0.12168992,-0.036642965,0.54221666,0.53396744,-0.31578743,0.3717041,-0.045565996,0.28241348,-0.113106474,-0.41838962,0.62176883,0.75851643,-0.2608507,-0.28329474,0.5469628,0.41464362,-0.43799093,0.5390726,-0.6318752,-0.21065448,0.6062374,-0.16927834,-0.519874,0.16768196,-0.35632902,0.15398791,-0.98024255,0.35836276,-0.34969962,-0.23652633,-0.43174335,-0.2275173,-3.505524,0.11975539,-0.3716231,-0.14787586,-0.22989407,0.0809614,0.35398722,-0.5104033,-0.81943244,0.19110604,0.122232914,0.6944678,-0.020615654,0.15682255,-0.25555724,-0.08130991,-0.40610334,0.07578453,0.22654991,0.25288305,0.09101704,-0.519071,-0.15912797,-0.13334863,-0.4279324,0.20484398,-0.48743805,-0.5366772,-0.2948496,-0.653308,-0.31652805,0.7764052,-0.18787499,0.07777799,-0.1988618,-0.0266994,-0.22557841,0.4078626,0.14971104,0.006911977,0.17004183,-0.04777142,-0.016460033,-0.33233774,0.22256298,0.06456546,0.46115315,0.15846367,-0.06076123,0.25009382,0.5310621,0.7525002,0.049703218,0.8119249,0.52127653,-0.06758852,0.42099735,-0.35946324,-0.28374636,-0.5122288,-0.37560362,0.09459473,-0.36657712,-0.41714963,0.06798346,-0.39822325,-0.77382183,0.5067781,-0.06269643,0.354783,0.03837693,-0.022989241,0.4482731,-0.1848488,0.008801904,-0.012682387,-0.1252703,-0.620231,-0.20077196,-0.80902064,-0.5563284,0.29124004,0.9808582,-0.14351459,-0.16206487,0.0012025714,-0.34813705,0.03720445,0.09745566,0.04994879,0.1337371,0.5151908,-0.120339386,-0.68155384,0.40985745,-0.07590679,-0.059004672,-0.6330746,0.07235694,0.5774775,-0.7062637,0.6338646,0.26554808,0.022985578,-0.07419659,-0.38167718,-0.1740933,-0.14196195,-0.17560284,0.3057157,0.104663275,-0.7801405,0.332111,0.3885072,-0.22990759,-0.73735034,0.43284073,-0.061232965,-0.044512432,-0.01737405,0.365241,0.18445136,0.012671795,-0.22170852,0.2133319,-0.47441503,0.16797143,0.28457227,-0.15278816,0.54668045,-0.1422653,-0.21580859,-0.7684298,-0.11727434,-0.5369257,-0.11060317,0.3369916,-0.01092482,0.058715828,0.03981335,0.10529861,0.40750802,-0.017587693,0.10032435,-0.0017610948,-0.37430537,0.47399652,0.49790946,0.5173289,-0.49857962,0.72142726,-0.01269172,-0.014450761,0.22758694,-0.04844657,0.4142085,0.09887255,0.41765437,0.24398027,-0.28565156,0.316291,0.89613056,0.1602632,0.48362893,0.18757702,-0.1885067,0.3270961,0.17474446,-0.0876064,0.112226315,-0.527672,-0.051179428,-0.075519085,0.18716845,0.5569112,0.25391656,0.37738293,0.019297687,-0.37467873,-0.06931231,0.0481617,-0.21209612,-1.1711959,0.3400134,0.18036911,0.85821146,0.5285708,-0.013400849,0.05734936,0.59441245,-0.060151923,0.23277698,0.41464508,-0.1279086,-0.609555,0.5904981,-0.6243956,0.59968114,0.06007266,0.06123052,0.048415717,0.14175917,0.4383759,0.8440571,-0.08625135,-0.034576975,-0.13680753,-0.32839668,0.3637256,-0.46455076,0.102508865,-0.38536942,-0.23541275,0.5049667,0.5181091,0.28244242,-0.13925554,-0.02895918,0.06156124,-0.13795559,0.26642254,-0.19158225,0.016070686,-0.07674362,-0.6638557,-0.43285182,0.46592906,0.036675826,0.2270209,-0.029040825,-0.15275009,0.23623611,-0.22331381,-0.1259159,-0.08209501,-0.67704004,-0.050515223,-0.21606283,-0.4760659,0.38731357,-0.18165499,0.25320584,0.1908764,-0.036414705,-0.55653507,0.28466827,-0.19973275,0.67036885,-0.30154905,-0.17113757,-0.4632634,0.036491513,0.26943907,-0.32998917,-0.021946399,-0.3163584,-0.053323988,-0.5039581,0.42133135,-0.06283551,-0.30502743,0.05053773,-0.29237232,-0.06366104,0.60618377,-0.26378748,0.031183934,0.0064475616,-0.19057609,-0.27561325,-0.24379632,-0.13469087,0.2744463,0.032910608,0.08362251,-0.10427605,-0.26003462,-0.0031120102,0.53510404,-0.07008565,0.22791621,0.44067618,0.086954765,-0.39860025,-0.2334054,0.3088226,0.50549406,0.18561126,-0.17158785,-0.34145638,-0.4548539,-0.26638734,0.23150733,-0.09162008,0.39215127,0.03555728,-0.6084437,0.7948479,0.13322715,1.1989778,0.14203358,-0.35905582,0.1076642,0.44220668,0.05050976,0.031455263,-0.39340344,0.83928424,0.5407241,-0.16143554,-0.21731396,-0.416859,-0.014059595,0.15403658,-0.22097112,-0.16632871,-0.08367739,-0.65892607,-0.28770846,0.2805441,0.26364312,0.20739444,-0.008266195,0.042959746,-0.05467499,0.010563604,0.4890671,-0.48945364,-0.19177777,0.29210943,0.18044242,0.16164133,0.19066219,-0.49637908,0.3876496,-0.52570903,0.003346302,-0.16086522,0.14717625,-0.06994665,-0.3212903,0.26891595,0.013482501,0.47295177,-0.32885453,-0.53121126,-0.33102164,0.6105784,0.23015226,0.17275056,0.7523673,-0.30936432,-0.082306094,0.13204946,0.6886537,1.0671084,-0.11674916,0.02254396,0.19180226,-0.28889912,-0.7089951,0.35529345,-0.4626295,0.24367872,-0.04116789,-0.18201491,-0.6110807,0.27121437,0.21356939,-0.23560658,0.1689573,-0.6064938,-0.5553919,0.09258018,-0.23795009,-0.23252596,-0.3656502,0.067963295,0.61641985,-0.37764266,-0.07499191,0.216781,0.2676915,-0.15103278,-0.6028975,-0.22422408,-0.3243784,0.28574792,0.18724193,-0.43418306,-0.040905822,0.098215036,-0.5438339,0.19597377,0.14449488,-0.46103022,-0.022367867,-0.18587667,-0.19401623,0.911659,-0.08712553,0.20571777,-0.581246,-0.45570728,-0.9140924,-0.3046865,0.5792324,0.018883113,-0.023733504,-0.53652585,-0.10121923,-0.019721666,0.19671442,0.18965897,-0.5306038,0.41246125,0.058767024,0.51899016,-0.021688597,-0.6243515,-0.0036898772,0.12148221,-0.07418752,-0.6016155,0.62358296,-0.046118923,0.89211655,0.1187881,0.07257424,0.2688045,-0.47107697,-0.16715236,-0.33350596,-0.36456245,-0.564738,0.14972264 +324,0.30228963,-0.067536615,-0.61117786,-0.035531808,-0.26573083,-0.064878546,-0.20360711,0.41646656,0.34674075,-0.1707299,-0.052368116,-0.06739779,-0.0369872,0.45779413,-0.060805257,-0.5448853,0.051436923,0.28298208,-0.678479,0.61842084,-0.32939288,0.18633138,-0.18126479,0.45332596,0.08117664,0.28183442,-0.14844713,0.13570844,0.037938762,0.07475125,0.034088325,0.51093554,-0.38199443,0.19786279,-0.08939607,-0.18409903,-0.10133674,-0.35674217,-0.43007407,-0.7697305,0.2869449,-0.6232589,0.49989498,0.09052244,-0.40948746,0.28862298,-0.012559128,0.3260685,-0.4290345,-0.1550901,0.16833948,0.013067499,-0.19217148,-0.33174202,-0.23090945,-0.13979167,-0.5448702,0.03431153,-0.52050143,-0.11474277,-0.15897094,0.11070768,-0.31495664,-0.020307425,-0.017535688,0.45668986,-0.34524456,0.12716693,0.3023847,-0.12252576,0.06515804,-0.6487952,0.015107163,-0.042767055,0.10445411,-0.09126687,-0.33939978,0.23666193,0.029105889,0.4395044,-0.10226436,-0.2213745,-0.24276228,-0.009153014,0.029072406,0.3374849,-0.35008967,-0.23278645,-0.07135718,0.21511024,0.18998788,0.1412939,0.013525034,-0.354053,-0.083169684,-0.09237435,0.088366196,0.26787478,0.5449074,-0.17912616,-0.34173062,0.22690304,0.72695804,0.2222189,-0.057153378,-0.0247034,0.08399193,-0.41532505,-0.2063442,-0.13534822,-0.10610564,0.3118169,-0.086852424,0.22403921,0.5891579,0.029212456,-0.2123461,0.0038327554,0.19201483,0.19492492,-0.43350798,-0.24577735,0.28595728,-0.46383277,0.15448877,-0.0016989231,0.57375133,0.06651761,-0.7327625,0.38686663,-0.5003886,0.15855104,-0.005205989,0.430751,0.92714757,0.38193414,0.20703378,0.6040738,-0.32562926,0.24594785,-0.18481292,-0.13955553,0.10732679,-0.10132345,0.12025955,-0.59033954,0.033474136,-0.17331609,-0.39014733,0.35158613,0.23833865,-0.5424963,-0.23690227,0.1913242,0.7063724,-0.2276927,-0.06586785,0.553786,0.9539655,0.78729707,-0.054502495,0.90898293,0.25671116,-0.014838946,0.3173351,-0.39216316,-0.770457,0.17852338,0.21864462,0.08720796,0.2819311,0.056348983,-0.018051052,0.42902225,-0.42213386,0.01341029,-0.14166951,0.3361045,0.08462833,-0.019277323,-0.44966698,-0.22266485,-0.059240714,0.12352817,-0.046742983,0.30809337,-0.2118712,0.2889603,-0.06541576,1.7343643,0.033648513,0.10360111,0.18804295,0.3086189,0.3963517,-0.25484577,-0.25522897,0.44530943,0.11500812,0.11061291,-0.4330023,0.1495758,-0.18887001,-0.304165,-0.14891529,-0.28006262,0.09174118,0.0047603846,-0.4627481,-0.22286303,-0.13000561,-0.2764262,0.5174356,-2.7613757,-0.13433895,0.043289464,0.40021452,-0.19839947,-0.3665157,-0.21308972,-0.3790944,0.31919482,0.15194508,0.45965427,-0.48397547,0.32196113,0.28646678,-0.67500025,-0.03843862,-0.47957578,-0.14392552,0.12050735,0.29861924,-0.03455289,-0.12226272,-0.13268822,0.18979038,0.31939638,-0.15125482,0.08527488,0.4838197,0.29604182,-0.034295257,0.15570845,-0.11928617,0.4404431,-0.3834409,-0.2999851,0.37763005,-0.3106095,0.29676917,-0.06596773,0.08001206,0.46133634,-0.36346725,-0.9426861,-0.5029944,0.16802908,1.0664839,-0.18455474,-0.41533342,0.29222503,-0.59776515,-0.27307388,-0.035794415,0.36568722,-0.0064921738,-0.16454814,-0.83585167,0.09181433,0.023353163,0.38336807,0.14099006,-0.11601322,-0.3752306,0.51778394,-0.06741055,0.3750178,0.32153803,0.20221825,-0.28988954,-0.32656878,0.06394223,0.72478133,0.40683848,0.1192498,-0.16845912,-0.25228,-0.28134027,-0.02442816,0.13915142,0.45887792,0.58154994,-0.10262265,0.15652958,0.28211316,-0.083547845,0.023711676,-0.21062762,-0.19310741,-0.016887184,0.21180178,0.49513426,0.7187721,-0.34184462,0.388716,0.047681674,0.20005375,-0.04578597,-0.6093611,0.3850073,1.0282813,-0.021898678,-0.28506863,0.6141826,0.21021661,-0.3197912,0.40851003,-0.44134542,-0.25156307,0.40500185,-0.16752394,-0.3751737,0.14147547,-0.21482168,0.16177021,-0.7170395,0.29513258,-0.15717758,-0.542775,-0.62511504,-0.108385324,-2.3310475,0.17890634,-0.19226268,-0.031430293,-0.07487663,-0.039363578,0.036404658,-0.6154147,-0.56045556,0.16364631,0.1801366,0.6873206,-0.13943352,0.071840115,-0.09185394,-0.38985437,-0.18717526,0.16047117,0.21837786,0.38584998,-0.04179628,-0.4792455,-0.26024652,-0.0077425283,-0.30595475,0.044015847,-0.6718754,-0.26601583,-0.17405178,-0.7337442,0.055885695,0.5700726,-0.1352825,-0.06756589,-0.2862086,0.0596783,0.0605548,0.16931339,0.23351519,0.2389027,0.2365024,-0.05199574,-0.0629208,-0.26854694,0.15175332,-0.036772713,0.25760084,0.32546112,0.0033570607,0.25704995,0.52810127,0.70700866,-0.3021717,0.6936047,0.618517,-0.069116354,0.3225636,-0.21404769,-0.27259102,-0.3123212,-0.25334257,-0.101382,-0.3812788,-0.22804989,-0.022612253,-0.40215114,-0.77884716,0.44121447,-0.108417444,0.010781018,0.07782133,0.14633113,0.55415,-0.32073134,-0.040023785,-0.16127115,-0.08546756,-0.47082293,-0.255841,-0.4163609,-0.46429595,0.28403023,1.1968576,-0.31525293,0.16986969,0.074276224,-0.21178801,-0.08164825,0.09749189,-0.03366215,0.29632422,0.48301938,0.04374529,-0.47119674,0.28959855,0.0028747718,-0.22019455,-0.6347248,0.23113492,0.51365334,-0.4827757,0.63967854,0.17113905,0.035748623,-0.04931965,-0.7560411,-0.20001793,0.10465148,-0.30151716,0.37049302,0.31510755,-0.77375257,0.35140908,0.40583757,-0.446959,-0.7825789,0.30045378,-0.10997973,-0.45133114,-0.1804676,0.29967013,-0.014694242,0.034748387,-0.21609305,0.36812544,-0.20262697,0.17739828,0.16376933,-0.20878181,0.25002244,-0.40545312,-0.23730436,-0.67384315,0.04706062,-0.39022824,-0.36227942,0.33600846,0.17452072,-0.053438485,-0.0429802,0.02190332,0.5042005,-0.34709466,0.13186951,-0.28792915,-0.43368715,0.31641278,0.3681293,0.496821,-0.37563187,0.45572993,-0.09833268,-0.1147048,-0.028960986,0.024042448,0.51128966,-0.15563901,0.33429334,-0.062230434,-0.10966372,0.16026713,0.70501,-0.05241013,0.3226122,-0.032059293,-0.08929922,0.08616205,0.037446473,-0.082123406,-0.15126638,-0.43642855,0.21594359,-0.12095537,0.27811736,0.385049,0.12948203,0.19584343,-0.08939627,-0.3807239,-0.0041997987,0.21974629,0.094834134,-1.2206252,0.3185463,0.1524811,0.78148043,0.4674832,0.23330647,-0.09889078,0.6745668,-0.019327195,0.13996795,0.22608009,-0.15837017,-0.4721294,0.5397867,-0.752425,0.554636,0.08672541,-0.057344563,0.20298934,0.095581226,0.45713273,0.5913858,-0.16888756,-0.104771785,0.07545719,-0.1763557,-0.04232893,-0.31654963,0.112333484,-0.5410715,-0.46742734,0.5807108,0.46051693,0.29874876,-0.3575401,-0.036635138,0.18750477,-0.13844071,0.19157551,-0.025072671,0.17855808,0.1330848,-0.5173091,-0.14329652,0.46878394,0.0789954,0.08571377,-0.10805825,0.009250458,0.23424596,-0.2052824,-0.01661256,-0.0855357,-0.5831078,0.070105806,-0.37781546,-0.3623718,0.69681627,-0.09770151,0.118723504,0.13901539,0.067796454,-0.35893136,0.6300167,-0.16197486,0.8463513,0.11525492,-0.04648091,-0.19696967,0.36865452,0.00961562,-0.12436746,0.11257656,-0.37151432,0.03604994,-0.6095677,0.5065494,-0.01876772,-0.42566153,0.1003985,-0.15145646,0.17008893,0.5058453,-0.05774231,-0.17250869,-0.30999756,-0.22775477,-0.4113706,-0.48216906,-0.07473314,0.21868242,0.16021475,-0.037062906,-0.1410472,-0.1725494,-0.04204632,0.5268556,0.0059990166,0.23895302,0.33699927,0.25939587,-0.254424,0.13867177,0.26910475,0.46907392,-0.023215326,-0.099207446,-0.20628701,-0.24300112,-0.49587372,0.16803265,-0.18039784,0.38720408,0.07317186,-0.12682821,0.6428217,0.08023332,1.1044323,-0.07253752,-0.17181972,0.25631434,0.36414236,0.048953712,-0.09096472,-0.21231535,0.645353,0.6662939,0.12233008,-0.04547813,-0.22868414,-0.09549061,0.16218792,-0.2848414,-0.074622676,-0.0053297984,-0.63537353,-0.27034104,0.24174531,0.2689431,0.2096817,-0.2154511,0.08517989,0.08617205,0.016866283,0.049416613,-0.38219124,0.015145751,0.26745874,0.29750377,0.09566087,0.13457307,-0.53010374,0.34917924,-0.47332343,0.10671651,-0.32298306,0.20989323,-0.1219024,-0.28150946,0.11029264,0.04863085,0.31164965,-0.38959947,-0.24253592,-0.28147164,0.47222036,0.3267432,-0.014203036,0.5353522,-0.27852443,0.06831012,0.012706797,0.35715064,0.7148693,-0.3073115,-0.19529176,0.2787083,-0.16714348,-0.6237618,0.3467333,-0.3353101,0.109748475,-0.092477165,-0.15727496,-0.5699256,0.10844255,0.11323867,-0.037762824,-0.16293094,-0.5588506,-0.015426401,0.03604005,-0.21567263,-0.01828601,-0.29998836,0.07342458,0.5737865,-0.11859384,-0.36773527,0.18430719,0.17616227,-0.121059135,-0.48084918,-0.044456173,-0.37872323,0.11842289,0.019968595,-0.4247591,-0.10566531,0.11604146,-0.40239194,-0.098468654,0.16977008,-0.261455,0.031774655,-0.28213492,0.05528536,0.9710909,-0.19515565,0.3115118,-0.3790244,-0.5105522,-0.8824994,-0.11772953,0.45233482,0.008860902,0.12042214,-0.8451001,-0.013149317,-0.20944138,-0.10632014,-0.025216661,-0.29609373,0.37122986,0.10640207,0.22084396,-0.3152853,-0.70551693,0.22983447,0.063714996,-0.21360445,-0.45779502,0.44635424,0.0009944042,0.9286452,-0.048393957,-0.0068104537,0.26962045,-0.48575154,0.0915556,-0.20636736,-0.16282424,-0.5044738,-0.08977772 +325,0.4723291,-0.2547022,-0.47536516,0.08065033,-0.28366867,0.060169544,-0.047948044,0.47721753,0.18480532,-0.56847125,-0.17736055,-0.20936012,-0.124511845,0.30531654,-0.08101569,-0.24994698,-0.0017548918,0.24749486,-0.42611688,0.6941175,-0.09531517,0.30543548,0.0025567054,0.29338866,0.23641892,0.37867916,-0.034761466,0.06319739,-0.1574215,-0.20094903,-0.1094171,0.18460563,-0.4541607,0.14993048,-0.18737489,-0.36180618,-0.112838596,-0.57257307,-0.5490733,-0.76919264,0.29778644,-0.9367761,0.38983127,0.025385005,-0.26454777,0.17300323,0.10985992,0.45668787,-0.09975708,-0.17342506,0.31732577,-0.14310595,-0.09044706,-0.3316051,-0.115977205,-0.37287915,-0.5800566,-0.06244169,-0.22185558,-0.41348585,-0.35875824,0.11669641,-0.37326902,0.024248285,-0.08029755,0.6673232,-0.41555417,0.06602389,0.28537455,-0.25259286,0.27902928,-0.70627606,-0.16360418,-0.151895,0.14405264,-0.048447687,-0.13748175,0.3589641,0.24748497,0.3436344,0.011446039,-0.15256971,-0.38388878,-0.10809504,0.24348503,0.4997485,-0.19721648,-0.39758456,0.044930972,0.24386498,0.031865645,0.07801144,0.25262734,-0.38695815,-0.11510923,0.20673521,-0.07367916,0.3305151,0.4285139,-0.15409604,-0.111573555,0.38352472,0.60536736,-0.004040897,-0.25002417,-0.05580793,-0.02839518,-0.35004845,-0.17358647,-0.11276891,-0.13248862,0.55797595,-0.030172165,0.22467543,0.6078592,-0.14002466,-0.12752149,0.04458981,0.089126445,-0.09172937,-0.2164128,-0.20992078,0.29290664,-0.29173842,0.21832515,-0.080212004,0.62818515,0.11289085,-0.7288749,0.34459266,-0.5754536,0.14103056,-0.008557232,0.2893296,0.55001014,0.48427543,0.4246254,0.698987,-0.43553144,0.15687281,-0.024313482,-0.3641063,-0.053702462,-0.27028802,-0.04690563,-0.44746578,0.040981594,0.004413291,-0.2950453,0.031073371,0.29405078,-0.5331144,-0.12714453,0.2394248,0.92105764,-0.24204789,-0.13151196,0.688864,0.9500899,0.98520976,0.042296685,0.91795605,0.14634007,-0.28923222,0.29820248,-0.24292472,-0.5461482,0.21929325,0.37860903,0.1898462,0.18918103,0.14677301,0.034550138,0.37345684,-0.3579529,0.08576138,-0.14661719,0.07126935,0.2297524,-0.37275764,-0.46686858,-0.1647282,-0.21966502,0.10183807,-0.11769251,0.25149095,-0.14624144,0.29891044,-0.06626165,2.00765,-0.05593392,0.13726778,0.257898,0.43044916,0.12626001,-0.22505979,-0.017239511,0.4112068,0.17519997,0.2635349,-0.4499188,0.064902455,-0.3159707,-0.50337803,-0.06314275,-0.28872144,-0.09144299,0.12529267,-0.47374108,-0.27272272,-0.22351967,-0.28860754,0.42070305,-2.6488168,-0.1575322,-0.17637922,0.43785042,-0.30641568,-0.4157794,0.016727941,-0.47168127,0.3468963,0.3934019,0.48457706,-0.6094207,0.2722675,0.334177,-0.60238534,-0.11183326,-0.4535068,0.01247524,-0.014491503,0.37257868,0.025032649,-0.089880094,0.21329263,0.12339899,0.4280724,0.03030668,0.13610642,0.56668437,0.3009082,-0.09470068,0.5618919,-0.045358546,0.4075088,-0.15901737,-0.15872374,0.34916306,-0.26115316,0.1805975,0.12009041,0.008678023,0.48872757,-0.46424752,-0.8138573,-0.75339264,-0.12619792,1.1632113,-0.16569906,-0.48503545,0.28792608,-0.42610738,-0.2648534,-0.21493016,0.45824078,0.053152062,0.072783664,-0.7621746,0.016644584,-0.11892208,0.12595224,0.05971255,-0.31495592,-0.48237407,0.82097596,-0.08317668,0.67869633,0.47342423,0.1723332,-0.17246047,-0.20730034,-0.017336603,0.9649051,0.50724,0.12820937,-0.15624015,-0.18893029,-0.3508984,-0.18490547,0.2332879,0.50724214,0.5329515,-0.08169326,0.13082156,0.31427008,0.029152978,0.038135115,-0.25142112,-0.22560187,-0.04042423,-0.03714227,0.39955267,0.6576601,-0.22476953,0.4805308,-0.04132544,0.35562545,0.031992026,-0.46009535,0.25085086,1.0762687,-0.14071731,-0.35163194,0.5150299,0.47965086,-0.2815054,0.34416446,-0.3713183,-0.13971536,0.48575374,-0.30001396,-0.5902592,0.3272319,-0.30439875,0.24626127,-0.71149373,0.34976253,-0.17139533,-0.77263796,-0.45553175,-0.16309436,-2.6473231,0.347349,-0.22272977,-0.28465226,-0.0061336635,-0.10901297,0.04831947,-0.6868431,-0.4599929,0.20003453,0.09324678,0.7301458,-0.06787912,0.16239497,-0.20240273,-0.28958318,-0.2571211,0.15255055,0.021514535,0.38522798,-0.0184846,-0.41227433,-0.17830276,0.013186238,-0.54587454,0.053100966,-0.602906,-0.36366397,-0.24317604,-0.56564516,-0.27617925,0.6190078,-0.22671334,0.11596611,-0.21628635,-0.06289543,-0.13569112,0.15850472,0.19129324,0.21243855,0.054904137,-0.053314067,0.069926135,-0.21808037,0.26302767,0.09671827,0.3810641,0.27231917,-0.19390622,0.2683634,0.46770763,0.7624412,-0.21144573,0.8237482,0.62028956,-0.15255126,0.32130024,-0.16878286,-0.31862208,-0.64545447,-0.42893,0.055599865,-0.32170093,-0.4872257,0.02314278,-0.36067238,-0.75487536,0.46949074,0.01235948,0.19022922,0.12017471,0.14756186,0.6217087,-0.37871793,-0.20951435,-0.102090515,-0.15252063,-0.64545697,-0.15503362,-0.53236747,-0.5713539,0.19662322,1.0364145,-0.28126532,-0.05711643,0.09413871,-0.22848246,0.081028484,0.23890418,-0.013044282,0.19216587,0.4487478,-0.19456737,-0.6645317,0.50355285,-0.1562646,-0.14468005,-0.58992016,0.44681653,0.5529603,-0.57761234,0.643856,0.10740736,0.090144224,-0.14902979,-0.5130397,-0.20542067,-0.15782118,-0.22034965,0.28658256,0.22266307,-0.84260076,0.10267196,0.4096647,-0.34945768,-0.69960076,0.47375372,-0.13232033,-0.25084302,0.007856925,0.22345072,0.1300305,-0.10480613,-0.18318875,0.14105417,-0.4493943,0.19614683,0.3714429,-0.108215824,0.07079767,-0.18906577,-0.15661792,-0.8374518,0.2674181,-0.5091919,-0.28240508,0.21994047,0.21204878,-0.028301688,0.050213184,0.07721977,0.3428585,-0.09112056,0.12353791,-0.16903457,-0.3639946,0.60154337,0.36508074,0.4232797,-0.51963156,0.53244966,-0.090890564,-0.20805451,-0.11003992,0.021455895,0.46184912,0.12165095,0.2715193,0.07717597,-0.20627454,0.079578094,0.7133779,0.1770051,0.62251943,0.18287176,-0.10085179,0.16483277,0.13113968,0.14531787,-0.12171183,-0.8062576,0.29546958,-0.23539262,0.02594301,0.4332219,0.18893504,0.18624893,-0.17085336,-0.3760701,-0.05957048,0.19011049,0.038276833,-1.2177265,0.3223618,0.076693535,0.8240401,0.39937526,0.028104996,-0.056720335,0.7220665,-0.06734367,0.16034046,0.28860274,-0.19587716,-0.6276171,0.53033596,-0.7782936,0.3335186,0.11471501,-0.057996396,0.11085018,0.051558793,0.31617793,0.6489128,-0.25585762,-0.049281012,-0.19006465,-0.24629848,0.07235555,-0.44526994,0.13153954,-0.5406434,-0.47813115,0.5536276,0.53426576,0.43694106,-0.1080052,0.053820685,0.05777408,-0.14941858,0.37595078,0.06645964,0.2279798,-0.045630198,-0.6068767,-0.12673348,0.48327446,-0.3293485,0.11633546,-0.021729605,-0.18066049,0.3501123,-0.067229524,-0.13187109,0.037211124,-0.72283375,0.16340517,-0.34770653,-0.46071714,0.45651072,0.13641001,0.24737677,0.09200916,0.03996973,-0.21603385,0.48804948,0.029506203,0.91164756,-0.09847755,-0.15986212,-0.24871324,0.27148834,0.028856762,-0.08505816,0.21296176,-0.22817022,0.050114747,-0.64378524,0.42444924,0.13820383,-0.3156619,0.151938,-0.117042504,-0.032763716,0.49303952,-0.1795776,-0.1190823,-0.080238216,-0.1076585,-0.14992896,-0.34995022,-0.038070116,0.2877734,0.053725775,-0.030454079,0.0059713842,-0.05039813,0.0047370433,0.4351378,-0.06834209,0.42037186,0.31359345,0.065158464,-0.34364647,-0.13429756,0.25670737,0.37492257,0.13497041,-0.06619314,-0.2650066,-0.5610638,-0.49104166,-0.07631086,-0.036016107,0.60052884,0.25184587,-0.19332825,0.7139051,-0.089031704,1.2503164,-0.052073773,-0.3622173,0.05002427,0.47997296,0.039963443,-0.15856618,-0.24003477,0.7954448,0.63982546,0.06989578,0.034006793,-0.37441558,-0.12818907,0.1286343,-0.19457152,-0.12844217,0.098442644,-0.6012152,-0.35876614,0.05733943,0.2625961,0.25979263,-0.20162317,0.09416116,0.39330015,-0.1109089,0.1753843,-0.26708806,-0.40518162,0.1649198,0.11084537,-0.009425639,-0.050739054,-0.5984067,0.41437906,-0.50979805,0.11279203,-0.15418468,0.1761934,-0.14861499,-0.19189182,0.14827207,0.03025968,0.45099443,-0.37704355,-0.31867638,-0.18972392,0.57710665,0.07283139,-0.030508721,0.64737517,-0.31506544,-0.028999066,-0.08430251,0.4444814,0.9103895,-0.26639184,0.05906919,0.46316865,-0.3554159,-0.51522267,0.36821344,-0.0430351,0.23999344,0.08935911,-0.16346772,-0.48366994,0.24319798,0.1941247,-0.22936437,-0.020259237,-0.5453734,-0.25707486,0.21278551,-0.5297031,-0.060692072,-0.3120054,0.2396579,0.55946136,-0.2995281,-0.56190515,0.052339476,0.0036607902,-0.031778064,-0.39706796,-0.06114849,-0.25108367,0.24962345,-0.013281242,-0.4500974,-0.22269353,0.051959336,-0.33806762,-0.029304655,-0.047011264,-0.37293187,0.025635328,-0.41309607,-0.21866633,1.0705001,-0.08882246,0.15264206,-0.4328967,-0.43453887,-0.7392463,-0.5024846,0.32497385,-0.09649567,0.023800876,-0.65500057,-0.042258725,-0.14232926,-0.061175458,-0.29068738,-0.17181474,0.35976642,0.13742885,0.3493262,-0.26888976,-0.7799364,0.26559407,0.11450817,-0.0038086057,-0.5804827,0.4214175,0.04899978,0.7470295,0.09154533,0.17035526,0.40974694,-0.56711066,-0.005136426,-0.16684608,-0.19427976,-0.5265363,-0.05009888 +326,0.48699734,-0.15204857,-0.5283776,-0.33265272,-0.29386157,-0.111268036,-0.24971765,0.3006655,0.11385885,-0.31478143,-0.090320796,0.058271326,-0.12133822,0.29327643,-0.13976392,-0.96642107,0.0036252195,0.017615847,-0.6046888,0.24890834,-0.6728853,0.3129936,-0.14212888,0.49405468,-0.07608247,0.3180094,0.2289386,-0.09552881,0.12595193,0.11125238,0.050528847,0.008556539,-0.759496,0.06410973,0.032554712,-0.5507219,0.055848204,-0.28262183,-0.32429722,-0.62170786,0.46495584,-0.83249915,0.59146565,0.14630443,-0.18399215,-0.041310597,-0.051106628,0.31149092,-0.46259746,0.22098373,0.19994988,-0.31092313,0.15082783,-0.23403831,-0.08600376,-0.54088444,-0.5182199,-0.09134929,-0.64237124,-0.23775506,-0.25504726,0.12942328,-0.41703942,-0.029935122,-0.19540295,0.40662393,-0.57004744,-0.0799618,0.061828986,-0.18936838,0.15902166,-0.59724516,-0.26781556,-0.14851694,0.22780372,-0.11991697,-0.066565424,0.28339627,0.12193504,0.39362496,0.14412391,-0.1678021,-0.38428438,-0.06272634,0.08393094,0.46986726,-0.14243823,-0.36881372,-0.25516328,-0.18435739,0.064895146,0.18778786,-0.025684685,-0.41567022,0.1850368,0.19245332,-0.25126046,0.55487275,0.60657763,-0.32022306,-0.25531223,0.19187689,0.17823619,0.15465023,-0.1719993,0.24547252,0.10720513,-0.39707005,-0.2859515,0.12974894,0.051931456,0.68317735,-0.034577765,0.38674298,0.8463374,-0.40521514,0.045368865,-0.23872484,-0.11671738,0.08984787,-0.03672125,-0.3659231,0.3251275,-0.58695364,0.08948128,-0.31325015,0.8365791,0.11505771,-0.6748528,0.38231027,-0.65892583,0.04128855,-0.20504655,0.62927413,0.6478743,0.24357294,-0.027507717,0.61142516,-0.56179714,0.096782304,0.17135817,-0.4438179,0.1627047,0.0828751,0.09318192,-0.27294415,-0.23348957,0.10913383,0.08524013,-0.08806645,0.2668986,-0.28877097,0.07547039,-0.09088523,0.80604476,-0.40828,-0.009850327,0.744368,1.3021961,0.91044146,0.06190673,1.201598,0.38818902,-0.16648383,0.09146518,-0.1548811,-0.6786079,0.1517352,0.24643454,0.18267728,0.35338396,0.25720736,0.037039794,0.4159973,-0.3797548,0.03735604,-0.08766974,0.42027295,0.00011853196,-0.09202984,-0.46057317,-0.0700921,0.13204876,-0.023571383,-0.16187568,0.30697736,-0.117707305,0.31948617,-0.006681117,0.9241827,0.18834096,0.21551366,-0.18670999,0.57554907,0.18037914,0.10915694,0.052725866,0.1684925,0.41384533,0.08765131,-0.7582789,-0.013815999,-0.4139536,-0.3801957,-0.3131909,-0.3973628,0.07891648,-0.028927885,-0.51520246,-0.11381579,0.09793227,-0.096860886,0.29957566,-2.5022466,-0.2231858,-0.12472067,0.48861915,-0.14769563,-0.1453378,-0.000420695,-0.44359243,0.3836197,0.47488782,0.4138857,-0.6958514,0.5720434,0.5282025,-0.2770575,-0.05487512,-0.5783261,-0.053078927,-0.07824253,0.42391205,-0.15633434,-0.09559619,0.019608086,0.10669693,0.51385874,-0.039389577,-0.043841127,-0.056522083,0.52258533,0.069794886,0.47830403,0.20709716,0.5313632,-0.48883334,-0.15167962,0.17167863,-0.38769034,0.21776561,-0.040206973,0.19586869,0.34243062,-0.4304528,-0.95193094,-0.53928494,-0.40289316,1.1497512,-0.26230648,-0.28207418,0.3412116,0.080566876,-0.274755,-0.13298477,0.46290568,-0.2949,0.075380094,-0.6581617,0.1438073,-0.15787688,0.18521386,0.17274891,0.12144353,-0.40804625,0.52472425,-0.08342417,0.23325486,0.42957917,0.28653508,-0.03764349,-0.5492645,0.16274758,0.6538851,0.2785883,0.22473632,-0.20555815,0.05155163,0.0961574,-0.17205152,0.16938989,0.54107225,0.87015975,0.03859931,0.2146234,0.29976684,-0.21642537,0.14517497,-0.025927251,-0.35418874,-0.12977694,0.20621191,0.6108629,0.56309855,-0.30565688,0.42678025,-0.02482171,0.24015497,-0.25349128,-0.27339745,0.53525376,1.0339915,-0.022955991,-0.06649694,0.617258,0.48349622,-0.6728339,0.42466918,-0.6431727,-0.2294377,0.67933387,-0.1296929,-0.48039106,-0.121641286,-0.40920028,0.084923916,-0.9870943,0.51542383,-0.26554406,-0.6638277,-0.59848875,-0.43663236,-4.342987,0.16236562,-0.5326372,-0.09072249,-0.20201463,-0.2746231,0.46659964,-0.7492851,-0.41649768,0.1568198,-0.03999347,0.5425054,-0.041770637,0.11586895,-0.37526628,-0.012625131,-0.29163322,0.18888053,0.29947492,0.16657294,0.2274325,-0.46505213,0.12224662,-0.14453769,-0.5603836,0.12744902,-0.3349947,-0.46536866,-0.020494344,-0.62854695,-0.2983934,0.87374574,-0.19843978,-0.16040371,-0.31122902,0.013042232,-0.37450245,0.6718772,0.10460165,0.19520187,0.05192125,0.020361114,-0.19035791,-0.44369012,0.31682408,0.17940688,0.4022145,0.39273632,-0.24687771,-0.10838847,0.60670066,0.59211665,0.23612413,0.5784724,0.16950521,-0.070831604,0.46054032,-0.44955757,-0.350146,-0.6609595,-0.5985586,-0.2093134,-0.34156382,-0.6858681,-0.02790567,-0.4236941,-0.80368525,0.450638,-0.22114849,0.32820818,0.014234874,0.21371503,0.13314074,0.076480284,-0.08688713,-0.198421,-0.04911227,-0.39173767,-0.279535,-0.70401263,-0.71385914,0.053367976,0.94424224,-0.20358776,-0.28425,0.046472486,-0.3785083,0.1493584,0.09272983,0.17100956,0.26288244,0.1577428,-0.06981099,-0.7663677,0.46239948,-0.16398026,-0.14020227,-0.7216642,-0.20583306,0.83872527,-0.8809988,0.4788867,0.4763562,0.07504597,0.15555719,-0.39853352,-0.46858728,0.13546051,-0.11969223,0.46007708,0.074442424,-0.84454864,0.38540956,0.1222239,-0.13404597,-0.4830903,0.6051225,-0.01564935,-0.30097878,0.1605441,0.40778396,0.0427688,-0.20398337,-0.012418861,0.41852617,-0.45916417,0.28708532,0.13680036,-0.0024035086,0.72693944,0.045569323,-0.18844245,-0.57370895,-0.00035275656,-0.6244657,-0.1192632,0.029616768,0.073495954,0.1888439,0.2440493,0.106234126,0.44042665,-0.367435,0.14553337,0.044777013,-0.3837351,0.19423622,0.51638985,0.30375874,-0.50881296,0.6511271,0.12265032,0.12440313,0.14952493,0.21686195,0.485631,0.29777792,0.38724935,-0.037832424,-0.10196807,0.045277044,0.8262834,0.33989784,0.7055516,0.3118488,-0.06765068,0.4621971,0.280562,0.11259453,0.049015865,-0.1912097,0.038301047,0.21599227,0.22563706,0.4735718,0.07231162,0.2918224,-0.16364327,0.06123111,0.29016802,0.465458,-0.11563904,-0.92406064,0.30972832,0.2823146,0.5906171,0.3681091,0.14078541,-0.08796816,0.34986356,-0.14802566,0.0053829146,0.43953618,0.26907778,-0.5268545,0.678459,-0.31159925,0.5032848,-0.26258832,-0.07603144,-0.042822707,0.045787886,0.2838975,0.6518546,0.0630676,0.08393418,0.078406945,-0.20302452,-0.09569166,-0.5817742,0.23513876,-0.4220504,-0.0009882125,0.6401684,0.5127511,-0.079720706,-0.26452786,-0.15674515,0.13240875,-0.03573462,0.17818584,-0.19323932,-0.0018352811,0.066817366,-0.6800472,-0.44826975,0.5078829,-0.060249567,-0.0277188,-0.017433036,-0.23335628,0.3420273,-0.019415706,-0.03948448,0.10735244,-0.7202986,0.3005634,-0.296721,-0.4398569,0.42119452,-0.44789886,0.3574773,0.21479945,0.08286698,-0.41784617,0.11688113,-0.00988737,0.63823164,-0.006782104,-0.114397176,-0.6127844,-0.107497305,0.35802352,-0.28071064,-0.009183981,-0.47468817,0.09115205,-0.41754723,0.5342894,-0.14156534,-0.05377045,-0.28598768,-0.14440283,-0.03246473,0.5057092,-0.19171454,-0.05798119,0.30320942,-0.03481016,-0.19491576,-0.07789647,-0.4298179,0.2877157,0.04848856,0.069664314,-0.003072072,-0.27974054,-0.103863195,0.4682724,0.22919522,0.15611881,0.40312883,-0.050034884,-0.34490535,-0.33325908,-0.039723862,0.34802532,0.104735136,0.0058015017,-0.3145841,-0.5402326,-0.13061838,0.13898191,-0.17214209,0.05544009,0.033485234,-0.5076361,0.5788162,0.24501634,1.1395446,0.10087853,-0.38775015,0.20450737,0.52732986,0.07205567,-0.011303788,-0.4205513,1.142646,0.60333705,-0.31793082,-0.37399882,-0.40861753,-0.44510376,0.24768944,-0.3146711,-0.3908777,-0.17042428,-0.69481486,-0.084415585,0.14105919,0.26877987,-0.23486666,0.13195425,0.056056477,0.14625496,0.26351276,0.47207195,-0.7480819,-0.1823952,0.30339718,0.1867848,0.13621391,0.49228308,-0.33154345,0.39123014,-0.69584316,0.20302577,-0.56691444,0.09017467,0.010310072,-0.43186933,0.17190494,0.26881772,0.30474466,-0.1665646,-0.29690182,-0.29607078,0.57433826,0.042881206,0.42411718,0.7335869,-0.31525514,-0.048080076,-0.15642266,0.38222292,1.217146,0.062519304,-0.13007018,0.3465196,-0.3799736,-0.676449,0.16239502,-0.52258974,0.12597305,-0.35616443,-0.2584357,-0.5284029,0.25951645,-0.005227934,-0.34725177,0.21754393,-0.50997806,-0.37287217,0.34423044,-0.17325416,-0.44180834,-0.2398751,0.44871542,0.888669,-0.5291702,-0.14227237,-0.19746538,0.4664871,-0.13648714,-0.41556224,0.09446179,-0.33383435,0.42318618,0.14874892,-0.27608338,0.03634053,0.2858396,-0.26796797,0.35825318,0.51527476,-0.33659166,-0.023666918,-0.103683166,-0.2539055,0.9421549,0.102702506,0.24559838,-0.65721107,-0.44340497,-0.9772217,-0.50140375,0.30791637,0.35136303,-0.03396988,-0.58584255,0.0839312,0.15179019,0.043740574,0.10829906,-0.50591046,0.39138162,0.060759403,0.62755924,0.10174901,-0.83625835,-0.25042808,0.3268925,-0.42793977,-0.59399337,0.6244956,-0.43617496,0.763455,0.1418099,0.07332907,-0.14417495,-0.34480894,0.33660892,-0.5050946,-0.36820966,-0.56473964,-0.014416584 +327,0.54063404,-0.102253236,-0.6052493,-0.12693699,-0.3117202,-0.24589707,-0.4119399,0.16163029,0.41252595,-0.19989201,-0.20703192,-0.11057372,0.12781331,0.5540054,-0.003562561,-0.74444324,-0.13397342,0.31759462,-0.902627,0.51911324,-0.5119008,0.3927934,0.08648949,0.29092067,-0.015842557,0.3162491,0.2437503,-0.11013581,-0.08784159,0.1404783,-0.103730224,0.4726956,-0.90985054,0.028594498,-0.080936745,-0.24756067,-0.04701863,-0.36041668,-0.20073785,-0.8689289,0.07477329,-0.7828173,0.5155017,0.0342505,-0.26872987,-0.19155338,0.044635158,0.5631176,-0.26965553,0.034552198,0.31025702,-0.19910471,-0.24655461,-0.32685024,-0.018953482,-0.3998422,-0.6180678,0.016997125,-0.54646355,-0.32792705,-0.28023186,0.14211793,-0.22652674,-0.0038260669,-0.26099265,0.5093968,-0.49285513,0.079429425,0.4194774,-0.24100721,0.46245155,-0.47300562,0.15614478,-0.20232224,0.58100253,-0.0956533,-0.2638978,0.4134354,0.49719283,0.4536777,0.2101017,-0.35192892,-0.23539697,-0.09428294,0.294128,0.31217504,-0.17397204,-0.31249973,-0.02014431,-0.047616582,0.15599084,0.28520602,0.12962393,-0.49720597,-0.03457929,0.0015834527,-0.022669679,0.5371281,0.5520118,-0.26101774,-0.39229706,0.350941,0.8747371,0.4063831,-0.21179543,0.03214877,-0.05239197,-0.725546,-0.20232359,0.19248745,-0.22379863,0.40242085,-0.02990581,-0.023085805,0.91927904,-0.21098253,-0.27680907,-0.06797259,-0.20193043,0.03134414,-0.25908655,-0.18116103,0.34493488,-0.53137887,0.08267333,-0.105435885,0.4570147,0.23527965,-0.8551532,0.43293577,-0.65600604,0.21220405,-0.0660581,0.74742424,0.80806553,0.5342885,0.4505345,0.8048776,-0.37585607,0.23370944,0.068826415,-0.6248194,0.16936299,-0.36664742,0.16754845,-0.5542719,-0.015583209,-0.3152521,-0.07044519,0.18881099,0.22940421,-0.6609565,-0.022015104,0.16275199,0.68205446,-0.3060526,-0.23430708,0.621267,0.96582943,1.1449515,0.1015734,1.2033012,0.4494907,-0.29846573,0.32529154,-0.459762,-0.8319134,0.16323702,0.30865103,-0.44345978,0.46763405,-0.1577836,0.13503557,0.43516037,-0.2501026,-0.008389422,-0.039054755,0.3483893,-0.029192021,-0.31239864,-0.5917406,-0.13092558,-0.14286482,-0.037479375,-0.0021323988,0.30981627,-0.12650569,0.35291725,0.028153734,1.3836317,-0.1710807,-0.013567321,0.027631048,0.45218918,0.2544986,-0.27893025,-0.16820095,0.46718964,0.3800557,0.10062977,-0.51048446,0.42922583,-0.22633503,-0.43529367,-0.06351844,-0.38199314,0.21830857,0.10152478,-0.33619976,-0.10744556,0.07702553,-0.30516538,0.57272357,-2.5402377,-0.20214394,-0.061678503,0.32167158,-0.2437712,-0.23965092,-0.06922028,-0.5829686,0.1404957,0.18424316,0.5552923,-0.6256823,0.48169118,0.54027927,-0.68782365,-0.042798292,-0.83351076,-0.1946534,0.034863647,0.45387056,0.1437101,-0.04029465,0.12505995,0.2634662,0.59482425,-0.037096746,0.14899333,0.5615603,0.33170462,0.09951138,0.63046396,-0.01178595,0.60361344,-0.22141615,-0.259803,0.5333614,-0.08566101,0.15748286,-0.06871543,0.02892476,0.6157003,-0.42052856,-1.1583726,-0.6914422,-0.4591493,0.82923,-0.37628695,-0.6074724,0.3231903,-0.12609808,-0.12682487,0.1481173,0.5670039,-0.0440965,0.2590678,-0.8340216,0.089168124,-0.039008614,0.2781301,0.1884081,-0.070569545,-0.3692755,0.6387512,0.035325013,0.47287577,0.34700647,0.26264626,-0.18918502,-0.4800094,0.08795066,1.0044838,0.18226497,-0.05277747,-0.2531071,-0.41189298,-0.18441735,-0.10219066,-0.18343091,0.54992443,0.7203211,-0.24267602,0.15347593,0.22132467,0.03357633,0.11803112,-0.1775327,-0.28383246,0.09761397,0.1029735,0.42894882,0.97901905,-0.29296726,0.51594394,-0.2773793,0.34182733,0.097232565,-0.7508936,0.70875317,0.78055537,-0.09060268,-0.051372197,0.5621095,0.3496806,-0.4102076,0.69828266,-0.6205288,-0.22748895,0.652701,-0.14691925,-0.48256066,0.2290148,-0.2700197,0.21718587,-0.84147936,0.40713018,-0.36782306,-0.25879428,-0.2446215,0.028090332,-3.5963027,0.28998545,-0.1113816,0.10455572,-0.16993691,0.030252615,0.2258776,-0.6791484,-0.60061455,0.055490177,0.19342764,0.5526169,-0.28351867,0.031137366,-0.34383184,-0.3898795,-0.08512606,0.23840399,0.19809686,0.47112414,-0.12680352,-0.5123605,-0.0040665013,-0.10272867,-0.50617445,0.076882824,-0.716093,-0.5707463,-0.17849053,-0.7511736,-0.3081304,0.66454875,-0.5546131,0.031302325,-0.28322178,0.1331289,-0.08955385,0.34305567,0.065257326,0.30121073,0.1339659,0.0048478693,-0.093486294,-0.13942182,0.34799144,0.021929512,0.2580196,0.1495192,-0.0733399,0.1941628,0.57205254,0.90309554,-0.22917657,1.0844141,0.56839544,-0.0941275,0.18703942,-0.26136902,-0.096736535,-0.75126374,-0.4276281,-0.20760521,-0.5051606,-0.5201116,0.014540649,-0.35759178,-0.80156213,0.85052305,-0.25669804,0.5641832,0.07221448,0.13587928,0.37132475,-0.33570322,0.019121276,-0.378175,-0.28805718,-0.6891932,-0.2462728,-0.6153449,-0.7572174,0.18587855,0.9070884,-0.4207191,-0.0048356163,-0.06628337,-0.21592681,0.02882735,0.24906752,0.07389666,0.43876174,0.58191055,-0.010189078,-0.6651799,0.40280026,-0.028026488,-0.08227861,-0.55916554,0.20920536,0.6030828,-0.6733431,0.820814,0.1125397,0.019116253,0.027925277,-0.59929264,-0.3901383,0.14659522,-0.275231,0.5660521,0.081955865,-0.8061985,0.3837827,0.31597596,-0.70329046,-0.75660473,0.39622298,-0.10345098,-0.2527191,-0.07602284,0.45339128,-0.0061263614,-0.07423084,-0.41673204,0.18609068,-0.44216117,0.16767791,0.31155983,-0.106094934,0.16965686,-0.081669755,-0.25493068,-0.94538325,0.110234894,-0.41034287,-0.2378989,0.3968816,-0.16973867,-0.07956917,0.07921697,0.4453105,0.27752432,-0.19297075,0.041568033,-0.033168335,-0.28872973,0.27230856,0.46766886,0.439851,-0.5019837,0.4918907,0.09736109,-0.3897686,-0.117636,-0.09028002,0.43151283,-0.08295625,0.38204083,-0.093419,-0.23761858,0.17389974,0.62243754,0.152109,0.44012758,-0.06923161,-0.10622082,0.41608983,0.08887042,0.21586323,0.002896345,-0.48198482,0.17246325,-0.06910002,0.2268986,0.65475255,0.31058073,0.16401508,0.023765922,-0.28845713,0.013943212,0.29873443,-0.024296688,-1.2315214,0.5191698,0.38159662,0.8034574,0.5407075,0.21684754,-0.20614684,0.69256103,-0.3265757,0.17453742,0.4343173,-0.15528354,-0.5512938,0.7042344,-0.7390477,0.3899799,-0.08238256,-0.044725437,0.21633044,0.12976383,0.34390026,0.85469997,-0.39478293,0.036199573,-0.07876235,0.005993657,0.17772762,-0.3015944,-0.051408987,-0.40018293,-0.418916,0.9435624,0.4871967,0.39769062,-0.16613145,-0.038958013,0.12908377,-0.30228376,0.2880606,-0.22988507,0.065710194,0.32471988,-0.5001295,-0.010015539,0.57662904,-0.081465736,0.005548439,-0.13175528,-0.25450987,0.118134856,-0.32587528,-0.13417049,-0.16259651,-0.8267131,-0.15315475,-0.17335561,-0.31733528,0.5894146,-0.13788421,0.16219105,0.12799238,0.029437708,-0.32241794,0.5382739,-0.039992165,0.8488091,0.36081147,-0.15690374,-0.226789,0.3124378,0.3151556,-0.23207597,0.09938624,-0.3075227,0.016518947,-0.55251634,0.5544768,-0.076416,-0.55909073,0.09098514,-0.08639539,-0.0297952,0.6381701,-0.22191092,-0.37060675,0.005250492,-0.12542485,-0.26248643,-0.13499191,-0.22196345,0.18150909,0.205219,-0.15861921,-0.21796529,-0.082956664,-0.12997465,0.60847056,0.06350797,0.50096065,0.20774695,-0.01682525,-0.19159195,0.17487957,0.37253624,0.388144,0.12303482,-0.05360726,-0.3641267,-0.27376047,-0.4359981,0.090353794,-0.052282188,0.22555482,0.04693201,-0.16304244,0.8423926,0.077954285,1.5160463,-0.07189349,-0.2536002,0.21212935,0.4021751,-0.074735545,0.06105117,-0.55345255,0.8824658,0.5456859,-0.09931254,-0.036341507,-0.46590042,-0.19181983,0.07050871,-0.35114196,0.14770015,-0.08799406,-0.66956365,-0.36437678,0.17548601,0.25170282,0.13582847,-0.055392265,0.08944503,-0.011538401,0.06116697,0.25602326,-0.5964688,-0.24496278,0.16667119,0.4358291,-0.116987094,0.11765419,-0.3323245,0.46361944,-0.6639167,0.19366303,-0.5217193,0.12378387,-0.3210118,-0.42308384,0.17478968,-0.016135802,0.30267113,-0.27081206,-0.30448887,-0.14947622,0.5364639,0.060762204,0.14789139,0.8601058,-0.33343768,0.07988671,0.13007702,0.5550452,1.1094105,-0.6171438,-0.088464804,0.41957855,-0.31588563,-0.6074737,0.38174182,-0.35949108,-0.0350059,-0.27884167,-0.55864394,-0.51221126,-0.00518206,0.03962249,-0.08217569,0.023842815,-0.6560802,0.022846427,0.21615829,-0.41153622,-0.13650689,-0.14633505,0.52022403,0.8760378,-0.45048407,-0.577417,0.056030374,0.0556367,-0.24393494,-0.3848772,-0.09392845,-0.0009537978,0.37771538,0.19940902,-0.44217667,-0.0032394188,0.39741638,-0.5138225,0.10933856,0.33716062,-0.37473768,0.24320817,-0.23435807,-0.1727355,1.036192,-0.37345406,-0.048646025,-0.37098795,-0.61073494,-1.1294944,-0.33685756,0.34334582,0.15900238,0.0165617,-0.424344,0.094692364,-0.23729093,-0.13322373,0.16617295,-0.5666043,0.3028621,0.08243863,0.59218353,-0.39047846,-0.90021676,0.1409393,0.34948722,0.047917347,-0.79538214,0.6025876,-0.06763016,0.89052165,-0.020928916,0.0448528,0.10607137,-0.466521,0.083445124,-0.3143096,-0.035720076,-0.7991854,-0.039501633 +328,0.55697024,-0.18593165,-0.5039282,-0.019295394,-0.22326647,0.075483195,-0.1534885,0.5369783,0.38177222,-0.4452929,-0.24820915,-0.23810796,0.1251162,0.23560087,-0.16382718,-0.5480205,0.016394794,0.2754784,-0.60459524,0.64160603,-0.45543677,0.3501196,0.06622028,0.2869432,0.3508834,0.21405719,-0.023004744,-0.13708849,-0.3945915,-0.109718084,-0.17938659,0.28068596,-0.40993366,0.12316624,-0.3108563,-0.4366441,-0.21588616,-0.6625903,-0.28378835,-0.8211619,0.40590924,-0.8522111,0.5035219,0.111288674,-0.20811357,0.22056031,-0.008001151,0.20315936,-0.2020311,-0.053275824,0.17298259,-0.20558597,-0.067892544,-0.26929003,-0.20714346,-0.18066093,-0.6497941,0.09509746,-0.518058,-0.14990303,-0.22515838,0.17328432,-0.34664303,-0.12937029,0.050427888,0.60003215,-0.40975854,0.07536824,0.10510373,-0.028178392,0.18409677,-0.47116822,-0.30304018,-0.10573571,0.53784007,-0.3373192,-0.3210096,0.29254124,0.28474933,0.5726418,-0.09053204,-0.14171569,-0.3640612,0.13013971,0.08218639,0.474404,-0.08407247,-0.75496656,-0.02176264,-0.05339691,0.26517776,0.21501909,0.19717054,-0.25870436,-0.13201593,0.037050012,-0.18276569,0.59079295,0.48852545,-0.31626612,-0.14127986,0.37192732,0.5126856,0.15504082,-0.05832383,-0.12235316,0.044239577,-0.58193356,-0.19703226,0.17518635,-0.21446697,0.5502781,-0.25447935,0.30459908,0.5433014,-0.19204763,-0.08743585,0.2930201,0.05075837,-0.17318273,-0.116882004,-0.22583617,0.22056226,-0.3924922,0.12675908,-0.18033688,0.85724926,0.229561,-0.75756234,0.42374086,-0.61452836,0.24951343,-0.024361173,0.53903073,0.7823688,0.4021015,0.46518523,0.6864443,-0.3519802,-0.022362012,-0.00046342186,-0.50454235,-0.08622565,-0.21225426,-0.12300769,-0.5626454,-0.043166187,0.019482728,-0.20439386,0.25783387,0.51267445,-0.6226255,-0.18618062,0.14805044,0.72943777,-0.23769364,-0.14402506,1.080097,0.95040697,1.0383278,0.023050351,1.1923119,0.26915386,-0.42075735,0.2656445,-0.40537125,-0.7425638,0.35108218,0.20518629,-0.570306,0.38427654,-0.016648471,0.11289766,0.22999111,-0.36592916,0.003340606,-0.15578605,0.051445466,-0.0035525945,-0.1748333,-0.43692842,-0.382368,-0.22795257,0.08547851,0.31190854,0.39458257,-0.23511504,0.4182594,-0.068598375,1.5203645,-0.09153166,-0.13837956,-0.011174068,0.48919177,0.2730004,-0.11631974,-0.2795411,0.38301256,0.30194372,0.033800818,-0.67172444,0.078263216,-0.16317317,-0.43273288,-0.17648889,-0.4079187,-0.065582134,-0.13252923,-0.32656607,-0.18158995,-0.3114312,-0.49764544,0.5038814,-2.5742154,-0.27873677,-0.04443882,0.3907192,-0.1817118,-0.36717197,-0.3107085,-0.6523361,0.3323206,0.17370269,0.4673131,-0.8304261,0.32178774,0.4597532,-0.6088423,-0.21120603,-0.68132687,-0.017884,-0.04281981,0.30558997,-0.015763674,0.00045482177,0.24616863,0.07532263,0.49082628,-0.039313767,0.14389388,0.26298058,0.5862881,0.03586034,0.42242068,-0.018302683,0.60938984,-0.272392,-0.18754135,0.35946774,-0.42153907,0.26535422,-0.11838611,0.094246574,0.5060559,-0.5948467,-0.83673424,-0.697936,0.03967275,1.0496505,-0.07720382,-0.4431572,0.20175853,-0.42991668,-0.2786643,-0.12794837,0.67957467,-0.16726674,-0.29260913,-0.8129564,0.05174287,0.0029002258,0.09787739,-0.056110773,0.13575025,-0.30557993,0.6752614,-0.0012273107,0.4289568,0.18265486,0.20026878,-0.51139337,-0.5321436,0.12301052,0.85214984,0.3963237,0.17448531,-0.2085201,-0.21602993,-0.45349917,-0.16287991,-0.05559328,0.6936042,0.7000642,-0.11194193,0.11073453,0.3760707,0.088404186,0.18644616,-0.25191027,-0.23673749,-0.22260617,-0.030015286,0.6108224,0.67634434,-0.18720742,0.5509079,0.14792418,0.14362623,-0.25137815,-0.4361856,0.6953473,1.1732641,-0.15974307,-0.28486362,0.4721373,0.4177135,-0.36143568,0.45716387,-0.52572817,-0.34853813,0.45189217,-0.23516639,-0.3930826,0.30510283,-0.31103125,0.2617057,-0.94587994,0.2797076,-0.12812746,-0.41355562,-0.45875898,0.0032238045,-2.6593075,0.20466717,-0.22059569,-0.11831002,-0.1829224,-0.1365221,-0.07640997,-0.5298944,-0.6502852,0.13167419,0.07516021,0.8640303,-0.10212338,0.20866777,-0.16757227,-0.3652598,-0.34142599,0.067264244,0.029385881,0.6174087,0.035335,-0.4294524,-0.022032721,-0.15942886,-0.377681,-0.0061515016,-0.54301965,-0.47151157,-0.028856626,-0.59145844,-0.43026748,0.70400774,-0.33440295,0.110645376,-0.2250295,-0.08147781,-0.0013902975,0.2738531,0.029743213,0.086818375,0.08560658,-0.051778655,0.19538797,-0.18278639,0.3145246,-0.09645862,0.27219397,0.42971134,-0.12495626,0.38131282,0.49391678,0.8308553,-0.03819104,1.0093307,0.49039987,-0.0058371425,0.22949086,-0.26925358,-0.27223414,-0.4919332,-0.28200144,-0.08983401,-0.5029181,-0.46217233,-0.12680814,-0.40015382,-0.8390304,0.43905824,0.024943879,0.25954786,0.0076145446,0.34371153,0.70411783,-0.14574768,-0.0018439889,-0.044968914,-0.19327787,-0.53566515,-0.122635536,-0.6606798,-0.4345291,0.26011673,0.7856217,-0.24163881,-0.03542804,0.1662003,-0.22752213,-0.033027865,0.2075794,-0.018797908,0.1853933,0.36903563,-0.105961196,-0.6574367,0.5157075,-0.027093997,-0.12239333,-0.54317236,0.282199,0.5088249,-0.6375475,0.434784,0.370177,-0.0355486,-0.028144224,-0.29626963,-0.119401455,-0.095810674,-0.09609567,0.3470603,0.2806452,-0.6897787,0.42959172,0.38174972,-0.1217852,-0.75899684,0.55520296,0.14075819,-0.30624968,-0.13982151,0.3911348,0.26539353,0.0010058923,-0.3482897,0.12959848,-0.43612978,0.19990925,0.2132415,-0.088574655,0.03750574,-0.2476115,-0.22059515,-0.8526777,0.11645285,-0.5179342,-0.2714388,0.21103512,0.21947327,0.23306839,0.14905035,0.024920782,0.30868334,-0.34347758,0.032705307,-0.1382307,-0.15375075,0.19172296,0.36276883,0.52327603,-0.541402,0.5744433,0.02658488,-0.108581565,0.001707886,0.04874634,0.459792,0.04835666,0.3795535,0.25406146,-0.4191114,0.3839533,0.7419481,0.27399513,0.30896392,0.14036857,-0.12631197,0.121784225,0.13998684,0.37121218,-0.13327596,-0.39654657,-0.0073994547,-0.19579048,0.08932972,0.49025235,0.14106277,0.21553409,-0.10819212,-0.34589168,-0.00175875,0.23115608,-0.045129895,-1.2976902,0.39418554,0.25641856,0.8807331,0.5127942,-0.11791106,0.09203543,0.5428781,-0.2939093,0.20515056,0.32551816,-0.102498956,-0.51007044,0.47515222,-0.6373621,0.5991271,-0.09410144,-0.030648692,-0.0037950852,-0.08582,0.33240047,0.7388097,-0.2793819,0.08991615,0.045845505,-0.2564564,0.22014412,-0.4123404,0.0631729,-0.67860323,-0.084522225,0.8085639,0.47783574,0.32632992,-0.046437614,0.08495159,0.10854054,-0.16880396,0.061136186,0.15951075,0.23860486,-0.027181502,-0.66102135,-0.036038797,0.58788025,0.0024369445,0.15322301,-0.034345273,-0.19147527,0.23986837,-0.35207734,-0.1461478,-0.20602766,-0.890319,-0.14895448,-0.35368863,-0.40955654,0.63352853,0.066524886,0.26654047,0.33595392,0.13399705,-0.38256183,0.45201907,0.21385086,0.6218699,-0.070945896,-0.18909724,-0.40693602,0.3064482,0.3210702,-0.18793336,-0.19923456,-0.08072082,0.03752402,-0.43408117,0.55699193,0.03952965,-0.22612047,-0.059410688,-0.012826762,0.14447357,0.657144,-0.24995513,-0.14958858,-0.066080384,-0.20317991,-0.30648574,-0.13262169,-0.100720085,0.2991689,0.4702346,-0.17082198,-0.1980567,-0.09867125,-0.17039652,0.31160358,-0.070679925,0.45057684,0.3749868,0.16910265,-0.3130037,-0.18259077,0.28161484,0.5800377,0.028862188,-0.20210464,-0.34953484,-0.29488897,-0.46844572,0.13079092,-0.09827656,0.24275301,0.15367222,-0.22495201,0.5836233,0.06614102,1.1510957,0.08154059,-0.40605316,0.15158257,0.4548368,0.036499757,-0.2798706,-0.3198673,1.0247247,0.43583098,-0.14770074,-0.121856384,-0.48774222,0.05250607,0.19140817,-0.18631239,-0.19042744,0.12512359,-0.5682424,-0.2538678,0.28129986,0.1615523,0.18018079,-0.20221664,0.08093035,0.19251837,0.017495189,0.18431018,-0.46078014,-0.19421983,0.29051742,0.3244682,0.03617965,0.10966318,-0.46352905,0.3906844,-0.46752936,0.070443705,-0.23144522,0.29797173,-0.2562425,-0.41820297,0.3189591,0.21810913,0.2801848,-0.3276282,-0.40429014,-0.5004433,0.52191573,0.11014361,0.11591799,0.4666169,-0.3197877,0.072249,0.058077242,0.52556694,1.0949749,-0.06809918,-0.06613337,0.34283066,-0.3597128,-0.65497875,0.45253468,-0.41847378,0.19166604,-0.014435644,-0.10950198,-0.7045147,0.19173047,0.20667635,0.24864015,-0.0037032792,-0.6756587,-0.27098113,0.3215386,-0.34974962,-0.18903764,-0.35776022,0.07646502,0.6125534,-0.2423598,-0.22732387,0.1526819,0.17967983,-0.20711221,-0.5804194,-0.018205348,-0.4104247,0.31099224,0.08090145,-0.3341592,-0.13814603,0.0892974,-0.4849586,0.16763623,0.08970368,-0.48104984,0.18128459,-0.32516286,-0.09280883,1.0595976,-0.29422307,0.37331077,-0.34952646,-0.5284388,-0.8959766,-0.34120616,0.41524622,0.026593575,0.0506118,-0.74969923,0.07360733,-0.045967076,-0.34900528,-0.02021257,-0.4915604,0.52618617,0.14618339,0.24061091,-0.05859562,-0.9043788,0.049218982,0.097829945,-0.39989927,-0.68584627,0.45964092,0.0657079,0.8556474,0.07199126,0.11282141,0.48143214,-0.45610908,-0.14652114,-0.17488733,0.013408669,-0.61532754,-0.032167505 +329,0.5411735,-0.15567102,-0.6589112,-0.29457563,-0.4206849,0.086046465,-0.20403558,0.19810863,0.3128853,-0.39570454,-0.19617496,-0.119758,-0.06808455,0.67960286,-0.1426956,-0.89746004,-0.074757785,0.3062692,-0.695828,0.45862067,-0.46363223,0.30750823,-0.019288616,0.3478111,-0.032857504,0.18270983,0.42232627,-0.14865914,-0.030752659,0.026813777,-0.18637796,0.23571903,-0.8981543,0.373915,-0.09539385,-0.59128934,0.05773268,-0.49519718,-0.07009415,-0.8159464,0.46296242,-1.04966,0.7481256,-0.23231025,-0.30515385,-0.22424412,0.109224536,0.42627394,-0.436669,0.03621536,0.22551216,-0.34283745,-0.3414006,0.05966477,-0.3178017,-0.7368008,-0.653189,-0.06438944,-0.67653364,-0.03629782,-0.24349612,0.34955117,-0.33966997,0.1443678,-0.2612778,0.23262939,-0.5813614,-0.18511558,0.34849703,-0.15822044,0.06102692,-0.47678253,-0.10471019,-0.19419235,0.36420375,-0.10825178,-0.34367216,0.10975129,0.43988237,0.6480726,0.306244,-0.3619657,-0.19820283,-0.041004643,-0.12609024,0.62965006,-0.10428598,-0.37938178,-0.36069894,-0.16436054,0.5707969,0.3029084,0.106217906,-0.33284912,0.1433445,-0.099980354,-0.08183456,0.3409347,0.43651304,-0.4681161,-0.33599746,0.5030752,0.48819628,-0.059070583,0.028124245,0.26924735,0.16055062,-0.5460422,-0.2971295,0.23466001,-0.20534617,0.6649808,-0.23852535,0.2306893,0.80427796,-0.37087795,-0.002052188,-0.13618064,-0.1194683,-0.38769677,-0.1636644,-0.16606863,0.3587257,-0.5713578,0.14670391,-0.23775409,0.85377383,0.19354105,-0.72859186,0.34625554,-0.4678373,0.0711574,-0.25813496,0.74957776,0.88681376,0.44359407,0.33501437,0.9273606,-0.4352972,0.21323982,0.0951937,-0.41425866,0.033925142,-0.19431911,0.07732706,-0.39671916,0.18585259,-0.10687104,-0.056596387,-0.099002175,0.5058035,-0.52179736,-0.112357356,-0.014663144,0.59939456,-0.43586895,-0.29511297,1.0540043,1.172361,1.1567096,0.08029512,1.8208531,0.49848214,-0.11251438,-0.104995534,-0.15143895,-0.71095175,0.15925354,0.44917735,-0.61824214,0.55598015,0.24406752,0.10889919,0.59707916,-0.43788147,-0.07580203,-0.049237076,0.37352931,-0.15183607,-0.045456782,-0.6855187,-0.1391322,0.22970785,0.055126455,0.11878974,0.43344575,-0.14306487,0.61719054,0.28886643,1.3069475,-0.117612354,0.17446715,-0.09456344,0.36666843,0.142614,-0.13578638,-0.042667314,0.074447066,0.4821675,-0.2426555,-0.67286325,-0.074548654,-0.45588982,-0.3534671,-0.40411374,-0.23408818,-0.052993163,-0.14834066,-0.19798446,-0.27863893,-0.11263835,-0.2940502,0.58088183,-2.0294142,-0.4577622,-0.23887682,0.24842396,-0.2782017,-0.25391567,-0.20407413,-0.61042607,0.1897996,0.31183386,0.40020418,-0.7658783,0.4786638,0.4920936,-0.55395687,-0.17561609,-0.8317505,0.12933642,-0.19677725,0.34861618,-0.119718224,-0.42175102,-0.25415632,0.03833192,0.621542,0.24818125,0.13104503,0.17012753,0.6192789,0.24675244,0.572892,0.109739296,0.8179861,-0.4879453,-0.18432043,0.48310173,-0.2606213,0.5789144,-0.13685268,0.108193725,0.50189155,-0.5630807,-1.0329428,-1.0126163,-0.56494826,0.99361444,-0.42603645,-0.46858874,0.21244216,0.08011162,-0.1657797,0.0822994,0.39596805,-0.051351354,0.06844374,-0.7377835,0.012791103,-0.033871684,0.23164457,0.046968445,-0.0012812669,-0.49220476,0.71498907,-0.28108996,0.3337138,0.547903,0.39086455,-0.08312492,-0.66562885,0.014070288,1.0248458,0.35119227,0.09299403,-0.29417765,-0.32569543,-0.21706319,-0.25824702,0.103424996,0.5493888,0.82665217,0.0022583387,0.06866371,0.45516586,-0.06575544,0.12394179,-0.055168286,-0.38113424,-0.260556,0.1773749,0.6167927,0.6897055,-0.294201,0.3791125,-0.24735178,0.19896245,-0.061201654,-0.5389567,0.75370955,1.1718948,-0.3325419,-0.22806558,0.94573265,0.31349608,-0.43508512,0.6226695,-0.8042951,-0.3542966,0.52077526,0.033551857,-0.55180573,-0.2579849,-0.35693303,0.13759352,-1.2623932,0.40432903,-0.22981639,-0.47750986,-0.5511668,-0.119413145,-3.7646546,0.2392651,-0.21069336,0.024120975,-0.03258056,-0.22315615,0.32197624,-0.8671776,-0.8078733,0.3686673,0.064642854,0.5112149,-0.15898436,0.39724302,-0.42030337,-0.2776846,-0.22773339,0.25240862,0.29198998,0.21196114,0.0062361793,-0.6017881,0.3993549,-0.06078988,-0.48653948,-0.0442456,-0.7088366,-0.48440057,-0.24306835,-0.7574739,-0.32712504,0.7719051,-0.4356931,-0.2099372,-0.39255905,0.20087542,-0.34613526,0.42997167,-0.042014338,0.21800429,0.14991613,-0.05547464,-0.28747937,-0.07588556,0.3600139,-0.00070483575,0.36118975,0.26687977,-0.39937326,0.1654088,0.70703596,0.6589124,-0.11152716,0.89253616,0.3924692,-0.10343209,0.2976896,-0.16079082,-0.28502342,-0.8911771,-0.53031963,-0.34601614,-0.59831375,-0.7400167,0.019851191,-0.32219413,-1.0700547,0.7966762,-0.05956328,0.4011409,-0.22367696,0.24633265,0.39890796,-0.2290028,0.15432729,-0.19726948,-0.1757303,-0.70621336,-0.5767985,-0.6532187,-0.6944495,0.19973215,1.4769943,-0.19668259,-0.015094784,0.22139241,-0.440882,-0.014325416,0.18847877,0.20900954,0.20939651,0.62847686,-0.13087574,-0.85233706,0.39554527,-0.09804019,0.15556282,-0.52486193,0.030209249,0.866715,-0.81067425,0.6368402,0.45217684,0.0025279631,0.2113277,-0.7204184,-0.47803304,-0.08982853,-0.15187573,0.58985895,0.29647663,-0.7736445,0.5561331,0.15148364,-0.27145264,-0.8767283,0.53915936,0.036318548,0.3183439,0.23942262,0.48777017,0.25474778,-0.16236597,-0.35475072,0.18312722,-0.5543459,0.37771845,0.20910081,-0.078216486,0.34651053,-0.20930332,-0.21146172,-0.90134126,-0.06517119,-0.5027075,-0.16280162,0.0136930505,-0.04944467,-0.025766963,0.16260771,0.22010836,0.4328871,-0.63782346,0.10570125,0.06227517,-0.34772283,0.23338231,0.5579836,0.3733536,-0.553309,0.6755375,0.049013797,-0.11311076,-0.23403572,-0.031446915,0.46039537,0.3796999,0.24963838,0.12151974,-0.18475685,0.12562652,0.89261967,0.14829168,0.37845144,0.21008569,-0.18523496,0.3911931,0.3017063,0.32585526,0.12294848,-0.46780244,-0.0867621,-0.06366749,0.07683944,0.50534564,0.2441659,0.56191677,-0.19576493,-0.14998488,0.1434613,0.15678972,-0.07113483,-1.181067,0.20651956,0.17686616,0.71829534,0.58401316,0.043018185,-0.06150316,0.46334392,-0.48599234,-0.017603248,0.5418508,0.13281612,-0.33410498,0.66159135,-0.5302159,0.33936653,-0.32396257,0.020238398,0.18908477,0.16729961,0.2777166,1.0683181,-0.0774118,0.006482574,-0.17772926,-0.028656244,0.1657173,-0.30907372,-0.05982606,-0.5593968,-0.18379173,0.94611454,0.5044891,0.29218394,-0.25209424,-0.15599209,0.059359964,-0.08454302,0.2230447,-0.118247084,-0.030821258,-0.032486346,-0.5354428,-0.14978558,0.734462,0.22691299,0.031078942,0.10561028,-0.55814624,0.3338404,-0.37670657,-0.00033000382,0.010735667,-0.83367765,-0.22364236,-0.2387247,-0.41913635,0.3993151,-0.3294721,0.22844185,0.12688924,0.020249784,-0.24622259,0.11545732,0.07626164,0.81764674,0.12826414,0.0017040778,-0.32314435,0.06508956,0.396319,-0.3967763,0.18091537,-0.33511364,0.070958056,-0.6422993,0.59121925,-0.043796804,-0.3551511,-0.009796739,-0.19417578,0.10649285,0.4796302,-0.18683648,-0.16850863,0.45344508,0.054337326,-0.40178367,-0.3242904,-0.51834846,0.19044115,0.12469309,0.14505859,-0.19302537,-0.14189193,-0.2512354,0.31579354,0.15184504,0.04192461,0.26712233,-0.045353174,-0.3013055,0.061703943,-0.061757505,0.5082573,-0.00080114603,-0.2938447,-0.30415583,-0.40244198,-0.0959888,0.1837793,-0.05752571,0.11713534,-0.08813263,-0.33722115,0.8063697,0.31123832,1.3865758,0.05368843,-0.58063906,0.053208087,0.75212216,0.016913814,-0.024316866,-0.39536026,1.2690614,0.60285765,-0.19933552,-0.27060997,-0.5739575,-0.3825033,0.45587617,-0.34205598,-0.23641492,-0.04655608,-0.72948354,-0.15397745,0.37697238,0.27439085,-0.019413663,0.03464466,0.3783448,0.14946304,0.19205791,0.67811435,-0.7204905,-0.30238658,0.2397613,0.4783573,0.13625546,0.30082953,-0.2251175,0.36815625,-0.8515168,0.119090654,-0.64226717,0.10040843,-0.22386785,-0.36711302,0.18282847,0.20332527,0.42339724,-0.18695927,-0.30916336,-0.18054882,0.8297091,0.1260024,0.25934276,0.9573177,-0.3272468,-0.071671195,-0.008807746,0.38050506,1.3702046,-0.24569394,0.027471043,0.2714506,-0.20452166,-0.68162197,0.523353,-0.64323366,0.060953878,-0.07120537,-0.5835633,-0.6194852,0.18528296,0.08686963,0.05993961,0.29728127,-0.6702926,-0.0744195,0.30242288,-0.31585115,-0.13551451,-0.11337225,0.3520801,1.0183495,-0.40446803,-0.5622671,0.070216365,0.46605358,-0.18180245,-0.80826765,-0.2019785,-0.16834806,0.5352757,0.1259823,-0.35849792,-0.0031305307,0.15641205,-0.43909785,0.14507464,0.48444223,-0.2597107,0.22909941,-0.29197228,0.042951766,1.0117072,0.068972886,0.28026536,-0.80156064,-0.49876958,-1.0554785,-0.39510706,0.09300684,0.30704284,0.027901674,-0.48534116,0.19046006,-0.12448685,0.12197863,0.28352782,-0.61834884,0.49156865,0.15149781,0.70339465,0.02192561,-1.1273528,-0.04796559,0.2046813,-0.021089552,-0.53138757,0.62553453,-0.2838474,0.9970797,0.10062218,0.06264632,-0.051546395,-0.6269689,0.3627846,-0.47578773,-0.050523818,-0.9306566,-0.07780352 +330,0.49948055,-0.0238417,-0.49510527,-0.18442877,-0.31917864,0.1850405,-0.11134346,0.15927099,0.28020236,-0.15777375,-0.11095209,-0.0391907,0.07872755,0.44460022,-0.12500328,-0.9007195,-0.029822933,0.17536281,-0.7139922,0.464587,-0.5683752,0.36366922,0.24774402,0.49759254,0.07231165,0.35674983,0.24830088,-0.17015941,-0.061126452,0.17870186,-0.09765283,0.36131305,-0.74848396,0.029133331,0.023680124,-0.18835928,-0.02040246,-0.42126352,-0.23254254,-0.71098906,0.43083853,-0.7484582,0.5342744,0.058249593,-0.351613,0.07888095,0.037444744,0.16790184,-0.45387542,0.14696214,0.10622434,-0.29376698,-0.0647867,-0.09306329,-0.18804213,-0.52902853,-0.6287097,0.09736527,-0.6107714,-0.17115021,-0.37255606,0.1991292,-0.41438586,-0.014714555,-0.22945628,0.3845149,-0.43683174,-0.057779912,0.30062833,-0.24244003,0.052639093,-0.28775138,-0.1663778,-0.16380431,0.37639996,0.034767523,-0.29018593,0.2956792,0.38209572,0.64990765,0.2260503,-0.39173144,-0.25945312,-0.06585528,0.14019057,0.44351634,-0.113217086,-0.3384349,-0.29011658,-0.05455079,0.05709728,0.3118976,0.0118915085,-0.478007,0.054063305,0.19872884,-0.1200514,0.2451035,0.46700063,-0.45125076,-0.28175002,0.23250842,0.3502038,0.15059145,-0.015063594,0.21058041,-0.048277665,-0.6614115,-0.29878917,0.23863997,-0.1490669,0.712226,-0.15597068,0.19762047,0.84309655,-0.16371064,-0.03492662,-0.30067283,-0.18008766,-0.06922017,-0.29928502,0.0008493344,0.20869182,-0.49399635,0.09591801,-0.18678853,0.7099453,0.10823557,-0.7664251,0.27772963,-0.533394,0.35774204,-0.16536684,0.8379677,0.90221137,0.16106935,0.34648317,0.90029526,-0.6390377,0.012664795,-0.023935974,-0.50553185,0.10233824,-0.084755614,0.11507029,-0.42968094,0.08346113,0.11081131,-0.03406407,0.06518437,0.4035723,-0.46378598,0.022487683,0.027264543,0.666164,-0.40578508,0.021805359,0.92356753,0.9933132,0.9543418,0.15169482,1.4923335,0.4872247,-0.1758332,0.13936989,-0.25968233,-0.69414276,0.123121835,0.31230354,0.13673757,0.44415396,0.10970008,-0.0043967743,0.4776169,-0.34847754,0.016992813,-0.19142802,0.2065021,-0.04940219,-0.05567307,-0.43607506,-0.27762908,0.15663837,0.13931808,-0.02737159,0.33467987,-0.07538594,0.49990892,0.0680792,1.260116,0.11876961,0.034227468,-0.0838302,0.31342372,0.26655182,-0.03638698,-0.102884196,0.41633293,0.52233356,-0.0349287,-0.6532041,-0.019162042,-0.31689024,-0.4122698,-0.19434991,-0.43958086,0.08563808,-0.022566387,-0.4489584,-0.106506035,0.08814346,-0.25953805,0.5495641,-2.400758,-0.19986853,-0.10455809,0.22733113,-0.08077462,-0.25614586,-0.21220651,-0.5011194,0.26153833,0.43168932,0.36390507,-0.784508,0.2631586,0.3362954,-0.36319834,-0.11365615,-0.83447784,0.014071214,-0.06415357,0.3684545,-0.08340551,-0.21879046,-0.17850457,0.25525707,0.69354314,0.13218357,-0.036505654,0.15282473,0.5644503,-0.014262215,0.5309786,0.14077899,0.6044177,-0.10089723,-0.32139978,0.29802898,-0.15800816,0.33412346,-0.0051639318,0.048732653,0.32964212,-0.5302217,-0.9058869,-0.6089084,-0.373056,1.1766135,-0.51110035,-0.27434132,0.39483124,-0.044902787,-0.14825515,0.039660707,0.46783572,-0.19813886,0.033228587,-0.7203466,0.14320324,0.00012606382,-0.0514599,-0.1207849,0.1800198,-0.31114212,0.71856415,-0.26722792,0.22563228,0.40953732,0.20055602,0.011688495,-0.53784955,0.20702444,0.84226197,0.32266867,0.15215017,-0.16329359,-0.23782167,-0.025994655,-0.19522706,0.17481318,0.5451069,0.8739694,-0.04711087,0.11246427,0.33367553,-0.030240918,0.09277722,-0.055925608,-0.3394694,-0.06263842,0.0034157832,0.56259525,0.6432299,-0.21689312,0.36291492,-0.16550432,0.20909771,0.006385541,-0.4335219,0.57981426,1.1137475,-0.26058537,-0.13556172,0.65681106,0.4044057,-0.4610621,0.52575874,-0.56466764,-0.18436667,0.6404925,-0.10120936,-0.40988588,0.15780805,-0.32868734,0.106412396,-1.039757,0.3105683,0.11886751,-0.39337966,-0.35336825,-0.20460172,-4.4022994,0.2537042,-0.3649247,0.02852158,-0.17322172,-0.28348783,0.38807243,-0.58360696,-0.5846529,0.035820387,0.023674557,0.36610183,-0.1556784,0.14197312,-0.2804493,-0.18128125,-0.22804458,0.12225429,0.1870821,0.3519874,0.046532042,-0.4015194,0.067915276,-0.33061358,-0.43053395,0.03371417,-0.58685195,-0.5537695,-0.14879933,-0.4568923,-0.4029309,0.72789997,-0.28358543,-0.022600535,-0.4252864,0.013513636,-0.23006605,0.4200299,0.20021947,0.21211487,0.038516022,0.07809402,-0.17161311,-0.2520761,0.307121,-0.0741923,0.22185637,0.34121493,-0.15246789,0.20594081,0.42848566,0.6596243,-0.13649859,0.6673702,0.4304891,0.03456463,0.25143453,-0.426883,-0.2975184,-0.879798,-0.5314066,-0.39686537,-0.59545213,-0.6166818,-0.2514641,-0.4887715,-0.7702816,0.49894992,-0.0314278,0.21828127,-0.1765068,0.31788686,0.44888574,-0.18865451,0.043429073,-0.14030154,-0.3064002,-0.5940932,-0.3206621,-0.6925347,-0.6425,0.10985065,0.93094367,-0.17142604,-0.13529973,0.055545554,-0.21775962,0.0417499,0.094280444,0.22689384,0.2504137,0.45372915,-0.10278829,-0.71811366,0.57834667,-0.1923768,-0.09636014,-0.64512926,-0.0095822355,0.4979556,-0.7591904,0.7451633,0.28015646,0.30540943,0.32486856,-0.54157615,-0.56489843,0.10190721,-0.14557621,0.8056257,0.25508583,-0.6607451,0.5421261,0.25630754,-0.14443801,-0.66912925,0.43610764,-0.112409614,-0.27848503,0.23099136,0.46814394,0.04108292,-0.15517883,0.05259789,0.18085892,-0.49956653,0.2857262,0.4022393,0.024001244,0.3673208,-0.032979656,-0.28542846,-0.6755244,-0.054128442,-0.6363786,-0.23602703,-0.04031964,0.11763477,0.051667873,-0.08440514,-0.04251929,0.5444491,-0.38186672,0.17194055,-0.03352971,-0.28909287,0.19043182,0.57212335,0.29548985,-0.573667,0.5907428,0.03253649,-0.014921355,-0.107337624,0.0964335,0.42496452,0.19771881,0.30029255,-0.19439252,-0.061204202,0.17589182,0.5674646,0.094043575,0.36458912,0.15683158,-0.1768278,0.49771458,0.30079016,0.14583562,-0.063355334,-0.17178209,-0.023402708,0.10338337,0.1745366,0.5206099,0.25884372,0.20967847,-0.055232428,-0.060663916,0.23172718,0.17802098,-0.033605687,-1.0864605,0.29960454,0.2660243,0.4849339,0.6235098,-0.04516737,-0.044273805,0.3623868,-0.52544475,-0.021458486,0.44924963,0.03574002,-0.45413944,0.5299875,-0.5109438,0.43845272,-0.34470648,-0.031099562,0.13200285,0.33388013,0.30152136,0.87982917,-0.09697426,0.08119342,-0.09041022,-0.14911304,0.13161747,-0.33272496,0.042539306,-0.56709707,-0.33886585,0.57205695,0.35905057,0.30256706,-0.39109403,-0.14114743,0.12034723,-0.23700182,0.10947596,-0.14199035,0.063496456,-0.002356708,-0.69959706,-0.37785783,0.55322814,-0.120035924,0.026757594,-0.044138215,-0.4388811,0.2138605,-0.23559052,-0.20836864,-0.05834871,-0.72840106,-0.011680929,-0.3471817,-0.54170734,0.31618658,-0.40456468,0.27922973,0.25283882,0.082328714,-0.5189261,0.13724722,-0.08601221,0.9779654,0.0022576333,-0.1770582,-0.40222663,0.14699961,0.44679448,-0.27731675,-0.10544474,-0.3407692,0.02831205,-0.37532672,0.5068644,-0.18669844,-0.3169625,-0.07765029,-0.13920084,-0.1317784,0.48493508,-0.3831358,-0.1413864,0.06494078,-0.04707526,-0.12654632,-0.098068856,-0.41419023,0.3684516,-0.055257082,-0.08064639,0.02016554,-0.09144419,-0.110547535,0.4915934,0.11116589,0.22143812,0.25368986,-0.09070549,-0.3666384,-0.022143865,0.15642187,0.27876908,0.10873009,-0.07511111,-0.33854622,-0.38233665,-0.2244194,0.08513213,-0.20689222,0.23135278,0.14174551,-0.43038997,0.870089,0.35786757,1.2708677,0.20988645,-0.2981922,0.11990602,0.6169694,0.05483679,0.1471961,-0.29568174,0.98789763,0.6330881,-0.239393,-0.28308553,-0.43597373,-0.14734316,0.14233813,-0.347185,-0.11591119,-0.17388275,-0.6424859,-0.26403847,0.06200839,0.18582249,0.14565569,0.18722536,-0.10867388,0.08852612,0.05366207,0.5646869,-0.44459376,-0.20520471,0.31579885,0.1285554,0.10943912,0.28137258,-0.26742622,0.5213567,-0.54156476,0.07666031,-0.4383404,0.20235397,0.02302045,-0.32738787,0.17899236,-0.058621358,0.34426916,-0.33896485,-0.32034808,-0.24635926,0.6839836,0.17974804,0.25117669,0.8369539,-0.36201584,-0.04969826,0.11495766,0.5626796,1.4898168,-0.09099009,0.04405079,0.2160589,-0.2185669,-0.5322311,0.12504107,-0.42056084,-0.024899105,-0.2655228,-0.4026511,-0.5816069,0.27716866,-0.014846222,-0.09433182,0.14169723,-0.4670745,-0.26129943,0.43681648,-0.13213229,-0.22500545,-0.35575935,0.4938193,0.807699,-0.504997,-0.42010134,0.06783938,0.1768651,-0.19652194,-0.6558982,0.030211182,-0.28231862,0.39739957,0.18111563,-0.4395526,0.02239856,0.33064523,-0.35171717,0.15901938,0.51674896,-0.24588583,0.20479326,-0.22986431,-0.27515164,1.2042824,0.028249653,0.18572523,-0.7001457,-0.5413606,-1.1166465,-0.35630414,0.3698455,0.16265042,0.07955503,-0.5224015,-0.10615444,0.037380684,0.035267457,0.10512307,-0.47890696,0.44744027,0.054122407,0.45884064,-0.013144132,-0.7326835,-0.1496606,0.14609972,-0.15853293,-0.57196057,0.5951753,-0.111474425,0.58230966,0.15670384,0.079771645,0.09730562,-0.65971595,0.11279208,-0.355213,-0.18207069,-0.72834224,0.052255176 +331,0.5667153,-0.28393722,-0.71194756,-0.09952371,-0.13164045,0.10087108,-0.25957185,0.49699676,0.2055197,-0.9204536,-0.21705554,-0.15657844,-0.1713095,0.3800381,-0.3114823,-0.81540847,0.14447951,0.0006848115,-0.4003101,0.5559673,-0.28464887,0.36744338,0.29096004,0.26866034,0.2907502,0.1159131,0.39797,0.06940554,-0.27648026,-0.21176672,-0.03345407,0.033680853,-0.63722587,0.29841158,-0.25809768,-0.45722002,-0.15528043,-0.47075906,-0.24159025,-0.9687011,0.23348477,-1.0383828,0.52960217,-0.110922255,-0.26621437,-0.104596764,0.47285527,0.06512614,0.18775453,-0.10475444,0.21647562,-0.17601337,-0.12118767,-0.085998446,-0.44883686,-0.7307694,-0.69674647,0.08127049,-0.6191403,-0.25676444,-0.09626249,0.3000791,-0.46769464,0.06121442,-0.08445243,0.82883316,-0.25793245,0.0015514722,0.30431765,-0.29970613,0.29872516,-0.891194,-0.31134808,-0.18565609,-0.06276668,-0.038837217,-0.21369931,0.3892427,0.41213924,0.40684932,0.21982256,-0.28441954,-0.39987832,0.0037692578,0.3161969,0.4644605,-0.2802541,-0.40887922,-0.3066557,0.057985343,0.5701914,0.19111785,0.3293947,-0.5035759,0.10483433,0.07106979,-0.35772786,0.67152,0.6348677,-0.26403612,-0.22556068,0.27126148,0.4895229,-0.03770992,-0.35803318,-0.18582378,-0.042157266,-0.610081,0.041738093,0.41900876,-0.0955764,0.6499831,-0.12964025,0.18349011,0.6499999,-0.31657094,0.10316126,0.35785022,0.0493171,-0.032978434,-0.38757116,-0.031192733,0.41238004,-0.46901086,-0.042827886,-0.44830668,0.8629252,0.14731811,-0.85212433,0.2845206,-0.45692003,0.15650648,-0.099717006,0.6209651,0.68276244,0.4918035,0.040470127,0.88083255,-0.4499453,0.004649142,0.026085697,-0.30328798,0.011046286,-0.40682027,0.1724643,-0.27928007,-0.018638287,-0.13447715,-0.034953706,0.101995125,0.71947384,-0.5722734,-0.34742314,-0.020185232,1.0262643,-0.17506169,-0.17659591,0.7461468,0.9877803,1.0552644,-0.011343406,1.2935524,0.13932122,-0.027111627,-0.027861215,0.034779612,-0.6779659,0.37153542,0.34894216,-0.089339346,0.28967774,-0.098716535,-0.18628278,0.31950238,-0.27272943,-0.0016537813,-0.24570833,0.21836713,0.28761047,-0.2580751,-0.25410622,-0.068010025,0.053982254,-0.025195552,0.094350606,0.26642454,-0.35009798,0.50435203,-0.12208267,1.4236795,-0.21112765,0.07293084,0.15161194,0.42988095,0.20032987,-0.18784155,0.3852029,0.12516902,0.096845776,0.20055991,-0.42600492,-0.012926212,-0.5186212,-0.50020957,-0.24330984,-0.4356195,-0.34106314,-0.010466935,-0.53570044,-0.2693444,-0.07106263,-0.36598098,0.33624414,-2.4536326,-0.26849726,-0.22710371,0.31984696,-0.4210318,-0.40428936,-0.21072997,-0.6639639,0.50241023,0.30223352,0.5453816,-0.60187376,0.2869816,0.44944045,-0.3437724,-0.23901524,-0.6578274,-0.007435913,-0.02221471,0.45926026,0.00037672886,-0.14461145,0.20532645,0.071328394,0.7013597,0.090593256,0.10710403,0.380253,0.4460967,-0.21848924,0.40795186,-0.117390156,0.58822465,-0.40644497,-0.1674575,0.5903366,-0.6212723,0.19866683,-0.05130651,0.1312221,0.56415963,-0.4367835,-0.7727058,-0.7572993,-0.4499173,1.0631416,-0.057098784,-0.711584,0.118597165,0.14845237,-0.06875154,-0.099045634,0.5755445,0.03162148,0.35950506,-0.7388925,0.01909361,-0.14265865,0.19997318,-0.17763759,0.01866337,-0.37600836,0.7960948,-0.018859886,0.48016408,0.35421732,0.3551817,-0.5528419,-0.5986794,-0.05784699,1.3537513,0.5065535,0.1250856,-0.32512635,-0.01204768,-0.45979878,-0.48097038,0.109047815,0.6380863,0.7672021,-0.014996994,0.07016051,0.48355007,0.089051075,0.13218991,-0.046373155,-0.56494695,-0.34871453,0.15401387,0.53877914,0.64927334,-0.12864342,0.58261997,-0.14872728,0.4163778,-0.20544146,-0.4997607,0.4882191,0.9960972,-0.3303385,-0.37679088,0.3933016,0.3347132,-0.47776797,0.5500491,-0.57228863,-0.5998056,0.6617838,-0.2343118,-0.6461766,0.12144339,-0.3935106,-0.01114863,-0.6547344,0.33152282,-0.5412282,-0.48285154,-0.49306008,-0.43158296,-2.5407164,0.17350046,-0.16938022,-0.08436238,-0.27001703,-0.07999264,0.22106475,-0.57632595,-0.60169804,-0.0074292514,0.11992817,0.69358957,-0.11075107,0.25728944,-0.34296483,-0.21093918,-0.30663916,0.3473385,0.19244443,0.2223521,-0.042948373,-0.26913497,-0.069040686,-0.16921271,-0.56562227,0.06065675,-0.65623975,-0.68208545,-0.3040562,-0.47537166,-0.2926227,0.90587246,-0.56596506,0.06542797,0.10753847,0.10645913,0.035908304,0.27390486,0.20166442,0.14225714,0.17921294,-0.25176796,0.17155838,-0.36171234,0.3340217,0.18761492,0.5020706,0.7799018,-0.20586842,0.43932068,0.6715739,0.77044666,0.12656079,0.9990047,0.14840935,-0.009129419,0.31270438,-0.16104206,-0.36156657,-0.7157173,-0.04072662,0.20064752,-0.3888249,-0.42892516,0.157877,-0.37593955,-0.94487923,0.6291695,0.0026244132,0.3477402,-0.27431142,0.4332447,0.46709985,-0.19203164,-0.21257505,-0.029003484,-0.011445049,-0.51734936,-0.5510486,-0.9009271,-0.7565048,-0.002757054,1.1777972,-0.04779522,-0.25470173,0.018674005,-0.05640156,0.0063234707,0.16215116,-0.12416361,-0.28702238,0.34198034,0.23146367,-0.78982556,0.42349714,-0.22113201,-0.010729249,-0.51263905,0.5286313,0.782438,-0.57851654,0.3153906,0.38956466,0.008321769,-0.37166336,-0.5614233,0.02128615,-0.053137816,-0.21864928,0.38029596,0.110375315,-0.6626245,0.40946832,0.32607615,-0.40768528,-0.69652313,0.4730093,0.049028937,0.11088245,-0.22320172,0.36765903,0.30173117,-0.14576098,-0.25745842,0.25341684,-0.62134796,0.23411186,0.29073983,0.026488258,0.68889385,-0.081600055,-0.50787604,-0.6409649,0.22701369,-0.6816865,-0.29089716,0.2932894,-0.046090808,0.14733617,0.48226288,0.10453624,0.38902527,-0.15703772,0.13572155,-0.21616279,-0.25572762,0.6937305,0.39694303,0.6681114,-0.5789709,0.61474127,0.0888911,-0.22976288,0.39642736,0.21828292,0.50227994,0.31195247,0.40523222,0.08840125,0.071178325,-0.023652967,0.71982604,0.29088107,0.56716603,0.22909506,-0.4034556,0.07268158,-0.0008749068,-0.012663247,-0.029983887,-0.7924521,-0.08612732,-0.16521923,0.062461656,0.618743,0.0017973322,0.40017456,-0.016485436,-0.1854435,0.050846025,0.048561215,-0.13227895,-1.2633626,0.20382276,0.048665173,1.0665438,0.2832238,-0.017305154,-0.092154056,0.6914637,-0.09302283,0.30021763,0.5245099,-0.28443554,-0.504851,0.62248325,-0.79679227,0.48477495,-0.091584004,0.1741244,-0.104469724,0.0893624,0.49266273,0.80407304,-0.18524343,0.17249012,-0.009744246,-0.3290793,0.1895631,-0.5521666,0.27157047,-0.25627697,-0.40984887,0.6369873,0.43401182,0.23465031,-0.14974417,-0.04591145,0.082632884,-0.13128425,0.25097817,-0.13703524,0.19158162,-0.16653362,-0.3059892,-0.17828403,0.57471114,-0.01967453,0.2592492,0.105834976,0.015923537,0.38226,0.01961842,0.03574684,-0.13004875,-0.51888365,0.050299786,-0.39711776,-0.5969746,0.30007416,-0.116208635,0.08696486,0.25704533,0.010439413,-0.38484085,0.4767535,0.29854375,0.5932158,-0.40264395,-0.09306957,-0.5157186,0.09987668,0.06489868,-0.44206473,0.17287531,-0.14412831,0.13534372,-0.6413304,0.50497013,-0.39144808,-0.31947944,0.12618078,-0.13086022,-0.22277091,0.60538685,-0.11295785,0.031787753,0.07878395,-0.12132812,-0.2654548,-0.067159705,-0.028354552,0.17088924,0.029343935,-0.03022209,-0.12150269,-0.29112327,-0.071560435,0.099820904,-0.015636444,0.24549772,0.48137167,0.15864438,-0.630986,-0.06402985,0.26870057,0.64090353,0.28857043,-0.024678847,-0.22481865,-0.5074037,-0.5392647,0.4188809,-0.08219327,0.20816237,0.3025842,-0.47580367,0.7848512,0.061122674,1.5282452,-0.016494503,-0.44731134,-0.017046224,0.57161003,0.13700983,-0.0024084975,-0.4826086,1.0919083,0.6230807,-0.07207678,0.037308253,-0.5786763,-0.052091483,0.28307363,-0.3720825,-0.20525287,-0.05408001,-0.59974575,-0.33657616,0.18840526,0.3769305,0.05084864,-0.37168363,-0.023834417,0.3500566,0.13246569,0.19214366,-0.53472555,-0.098501354,0.24310997,0.52594924,-0.275368,0.08383063,-0.4774814,0.31803352,-0.77038914,0.3345177,-0.1637596,0.1214455,-0.1178367,-0.31285673,0.3047258,0.15690091,0.46096557,-0.25126272,-0.39086196,-0.13750416,0.6110932,0.20242237,0.21127826,0.5958406,-0.2233147,-0.04901975,-0.07906915,0.71599543,1.5736479,-0.16410144,0.106217556,0.29324216,-0.534992,-0.85288024,0.29652235,-0.58420837,0.37352502,-0.17962982,-0.42144197,-0.49109837,0.24976818,0.062187232,-0.25488642,0.16218136,-0.6962125,-0.26969728,0.0663238,-0.560568,-0.30597135,-0.46176198,0.1805158,0.48586422,-0.22842433,-0.15324242,0.11461817,0.47414213,-0.0750663,-0.65093774,-0.049934205,-0.26841888,0.33284396,0.049031638,-0.34277746,-0.10628423,-0.029413031,-0.65593344,0.2807626,0.11070444,-0.4432567,0.034696367,-0.043968365,0.0025807666,0.75795734,0.052977044,0.095859475,-0.53437734,-0.5091591,-0.6505317,-0.46248496,0.1589466,0.21294919,-0.047686465,-0.63600224,-0.37131992,-0.39813188,-0.050953016,-0.0007572541,-0.55869824,0.27497256,0.046229895,0.50138354,-0.33655822,-0.7916944,0.23301688,0.3311192,0.012007759,-0.6754074,0.35416043,-0.14224076,0.9860763,0.22640838,-0.13116322,0.41878414,-0.70658183,0.0056885025,-0.40230238,-0.30167484,-0.5657663,0.16269793 +332,0.31788117,-0.25696698,-0.39834023,-0.04159101,-0.20051713,0.09269315,-0.13349858,0.3365082,0.024051325,-0.44688776,-0.23077671,-0.29311275,0.009740626,0.28559023,-0.23427913,-0.3173093,-0.06745498,0.14560743,-0.34101826,0.47608763,-0.42801365,0.19272831,0.16002224,0.31752452,0.24081092,0.179639,0.14980449,-0.13939385,-0.23421441,-0.30131277,-0.21401946,0.2762048,-0.3667274,-0.008193163,-0.11250501,-0.48374,0.11329346,-0.5261802,-0.29629883,-0.720549,0.31691688,-0.99474245,0.4307073,0.100516595,-0.17473745,0.50010943,0.28370485,0.38427812,-0.12614128,-0.116701946,0.29016188,-0.16512826,-0.055253983,-0.20273156,-0.18108305,-0.22122182,-0.5842064,-0.020083671,-0.2556407,-0.3256716,-0.3234208,0.08907706,-0.33245897,0.048026945,0.00745632,0.43904775,-0.48220018,0.089417204,0.17041923,-0.16174786,0.38368884,-0.5906314,-0.17053865,-0.12556422,0.25541368,-0.24374063,-0.086494036,0.27215442,0.3742784,0.36412773,-0.063196875,-0.12714155,-0.32318422,-0.061849944,0.07312248,0.5898567,-0.18863395,-0.33177838,0.0004896096,0.11209063,0.1246578,0.23679058,0.04129265,-0.17654404,-0.15287575,0.17569508,-0.30593368,0.25321296,0.36720848,-0.48900032,-0.15426838,0.35823035,0.5264335,0.12104661,-0.11204841,-0.2604911,0.03303701,-0.5267054,-0.13160944,0.070000485,-0.3284498,0.45942357,-0.096766256,0.3673771,0.59905404,-0.13894634,0.08704729,-0.11236121,0.16100608,-0.14481483,-0.2513086,-0.32150283,0.3001649,-0.30240098,0.18585584,-0.053705532,0.83053166,-0.0013653168,-0.60244226,0.32996628,-0.574677,0.12403692,-0.17515157,0.43133336,0.37736076,0.3047206,0.5191474,0.58427465,-0.4177241,-0.03790591,-0.10548778,-0.38571182,-0.0052072364,-0.084384404,-0.03875845,-0.5198439,0.009893128,-0.008614166,0.0058047175,0.103164725,0.3609681,-0.51444,0.11101009,0.15970469,0.91620266,-0.28634113,-0.011851008,0.57107985,0.91215724,0.89852303,0.007736883,0.8723634,0.14893831,-0.2681997,0.21806674,-0.23961933,-0.5971714,0.32557565,0.6275797,-0.27529377,0.14643614,0.17924602,0.00018144932,0.3989813,-0.36597708,-0.09071102,-0.27799523,-0.13433568,0.26139164,0.008886849,-0.504626,-0.2977769,-0.11109273,0.041928057,-0.04555559,0.21702108,-0.21577528,0.36687723,-0.02310439,1.9497671,-0.052179486,0.10581989,0.19350693,0.34069103,0.07962417,0.056803685,-0.079020016,0.36076212,0.30730125,0.2308516,-0.521084,0.181219,-0.17240132,-0.45505187,-0.064534165,-0.21468782,-0.02480243,0.17260706,-0.427815,-0.086175494,-0.15553907,-0.24854924,0.38205436,-2.7253387,-0.07473975,-0.143719,0.3699976,-0.2991538,-0.448196,0.031447895,-0.44779468,0.4125158,0.2878693,0.4980767,-0.57256216,0.35495326,0.29823086,-0.5537432,-0.1954674,-0.6099485,-0.2464927,-0.051848046,0.3042764,0.031938814,-0.053728875,0.0722211,0.1459885,0.42897964,-0.03684943,0.13923803,0.29638958,0.44194368,0.05686703,0.6846274,-0.049339917,0.45543367,-0.116935,-0.25654572,0.28215533,-0.1690631,0.23834698,-0.021282537,0.10970538,0.45832762,-0.4131946,-0.85965335,-0.7746706,-0.3381064,1.306241,-0.24059503,-0.41979638,0.18816634,-0.12555932,-0.32583028,-0.19376847,0.3915244,-0.097949795,-0.117155366,-0.82348263,0.13793328,-0.10488969,0.18213977,0.09989854,-0.1550647,-0.45468405,0.6184273,-0.15722404,0.45835853,0.4043851,0.1164346,-0.19470458,-0.29065523,-0.10210305,0.9065117,0.37173226,0.058271833,-0.15478122,-0.20595838,-0.22653691,-0.032713577,0.15185939,0.34581348,0.5715223,0.016694423,0.1130545,0.2859896,-0.014205575,-0.04110188,-0.23913649,-0.27188966,-0.008998854,-0.06556658,0.52926004,0.5097422,-0.10022616,0.37746125,-0.029684642,0.39935264,-0.040031824,-0.43083042,0.2335104,1.1652946,-0.118790805,-0.16883829,0.657843,0.6056364,-0.1413599,0.25612345,-0.5158906,-0.2230631,0.43334508,-0.26479533,-0.5581652,0.13221438,-0.21345627,0.009226248,-0.7408106,0.1828568,-0.22851649,-0.43164465,-0.51328677,-0.040483933,-3.5530553,0.2706695,-0.35382,-0.2167808,0.057908397,-0.2036608,0.28105924,-0.6454671,-0.4730923,0.11005423,0.116993226,0.6783435,-0.07066143,0.16726097,-0.23480418,-0.16687904,-0.2052873,-0.007454421,0.14960136,0.32776874,0.04636125,-0.563253,0.03919416,-0.08175661,-0.3973773,0.108424716,-0.6269925,-0.4690425,-0.09677801,-0.4582093,-0.41718537,0.57999027,-0.36182722,0.07371228,-0.1827521,0.00014245936,-0.19762552,0.30458832,0.22331047,0.20145966,-0.13091187,0.046265397,0.09344382,-0.2917764,0.43475574,0.1285937,0.16784754,0.22788732,-0.048889138,0.20160815,0.47423103,0.50326544,-0.025225034,0.88378197,0.5485254,-0.1466384,0.15761726,-0.19253565,-0.27634445,-0.562055,-0.3265241,0.05023747,-0.358329,-0.40103418,-0.09918172,-0.32906976,-0.75592995,0.717662,-0.072179995,0.10170666,-0.031623982,0.29422,0.5558799,-0.23706017,-0.057981644,0.15126503,-0.07131347,-0.6747359,-0.19475259,-0.6008776,-0.44294715,0.0467934,0.90156454,-0.26035348,0.11399799,-0.04283152,-0.22044884,-0.05976287,0.03547669,-0.068436034,0.3233895,0.54049647,-0.16486724,-0.7351027,0.46168444,-0.1394454,-0.094900966,-0.5574213,0.26035744,0.507733,-0.52997506,0.49220088,0.4097953,0.06748936,-0.086829074,-0.47732764,-0.2968971,-0.12288748,-0.35165784,0.36847326,0.14085402,-0.64608985,0.27658215,0.41246796,-0.2369567,-0.7273903,0.5078093,-0.04037726,-0.38539702,0.08884819,0.24473496,0.15500535,0.011032681,-0.13176987,0.22170874,-0.3930912,0.32113335,0.21744467,-0.07632446,0.19646437,-0.24702361,-0.036228828,-0.7768122,0.11009093,-0.32845518,-0.29568562,0.31603876,0.20803082,0.0042122304,0.27176633,0.019657936,0.3846933,-0.26944408,0.062229633,-0.039731357,-0.15099095,0.33723164,0.4747048,0.37721935,-0.49646726,0.57927287,-0.01211178,-0.21108313,-0.15213689,-0.05224686,0.38593534,0.07500221,0.30053473,-0.16310634,-0.30737668,0.34757867,0.5932748,0.24332394,0.43477467,0.011581315,-0.031462174,0.2461652,0.058794916,0.063898645,0.027997034,-0.6801723,0.08183678,-0.2382667,0.11432737,0.5506938,0.12516144,0.32655865,-0.1772003,-0.33614427,0.051954325,0.05501247,0.03090533,-0.8851016,0.34798485,0.061695453,0.6794652,0.4350845,0.028252881,0.010494419,0.7379795,-0.22497106,-0.017049853,0.2984541,0.020369468,-0.49847248,0.5642728,-0.7786029,0.32773477,0.015412958,-0.07476802,-0.13459738,-0.033617742,0.32097748,0.67822677,-0.23857978,-0.010410221,-0.054720726,-0.33671346,0.17866965,-0.41148812,0.037307773,-0.5905743,-0.33586946,0.46029526,0.57504815,0.4202424,-0.11125994,0.030407945,0.10335721,-0.1652187,0.22601749,0.12924694,0.17123184,-0.04755401,-0.8185934,-0.07028946,0.5092371,-0.037205186,0.16177188,-0.06742628,-0.24965717,0.26629847,-0.111021474,-0.11545913,-0.024512503,-0.5777868,0.010454425,-0.29428533,-0.4464232,0.29451367,-0.04453596,0.31052467,0.090570726,-0.014224461,-0.17430039,0.36282662,0.13778406,0.9185562,0.040507097,-0.13004881,-0.4326296,0.15414561,0.00013666866,-0.05843439,0.10575841,-0.3047386,0.096924424,-0.6595453,0.48782578,-0.030423032,-0.19168687,0.035645265,-0.14070375,0.008510709,0.56556356,-0.113189854,-0.064698674,-0.18283644,-0.10545532,-0.26637045,-0.2739293,-0.10421373,0.14591049,0.10868858,0.05490383,-0.1281946,-0.07118952,-0.3407154,0.59606797,-0.04411841,0.4715101,0.32310614,0.049370952,-0.23649596,-0.29084772,-0.055937774,0.48978,-0.114405155,-0.26435092,-0.36037332,-0.5524844,-0.17322834,0.11327778,-0.11996829,0.5104194,0.0710197,-0.12157942,0.81546813,-0.20178764,1.1140352,-0.03203037,-0.38616732,-0.059793882,0.4683993,-0.026650382,-0.054214638,-0.23693798,0.753724,0.5253212,-0.00508722,-0.10301386,-0.39734086,-0.098006144,0.11592363,-0.09334811,-0.02703971,0.00080071174,-0.5211835,-0.3604288,0.13224635,0.24523054,0.25785,-0.044322055,0.2677929,0.31793523,0.033152614,0.43555984,-0.31719705,-0.26860896,0.28648812,0.2621079,-0.08560053,0.16482742,-0.46984503,0.505014,-0.31353846,0.10409565,-0.3871575,0.116124146,-0.15099336,-0.14125288,0.19161272,-0.123405345,0.35966656,-0.26035973,-0.29205492,-0.105907455,0.5114596,0.20879123,0.09499734,0.5528155,-0.26971307,0.05688755,-0.12239669,0.5181209,1.0161339,-0.32863426,0.14022748,0.42226738,-0.24527976,-0.44258904,0.3676605,-0.1356803,-0.07093533,0.16066805,-0.11324266,-0.3930027,0.2992592,0.2437867,-0.07308663,-0.0040870863,-0.4167798,-0.19732639,0.30731472,-0.39087006,-0.21357903,-0.34336025,0.21669352,0.42643785,-0.2824082,-0.3451462,0.008815416,0.2893433,-0.11876488,-0.28638035,-0.09144386,-0.4177359,0.24962965,0.109806515,-0.35467046,-0.2152158,0.06382626,-0.3430688,0.0031005952,0.063600145,-0.3179107,0.04516656,-0.31511083,-0.15384686,1.0513728,-0.23088858,0.0050668395,-0.53808266,-0.3449134,-0.74232197,-0.3746681,0.55973023,-0.05539015,0.09443677,-0.43891606,0.0068511474,0.0059486204,-0.25874093,-0.22717212,-0.3772685,0.4004077,0.15112378,0.47386184,-0.17972147,-0.4781971,0.25029773,0.05895369,-0.102288194,-0.46680313,0.5335923,0.028285073,0.78824294,0.03493943,0.102551565,0.30865726,-0.30989417,-0.14807355,-0.23483443,-0.3264329,-0.74511975,-0.10653523 +333,0.5707794,-0.26846611,-0.35241222,-0.18668228,-0.29941195,-0.14802967,-0.2689481,0.442192,0.4854227,-0.2742309,-0.16595787,0.0251033,0.1947047,0.13076656,-0.17045532,-0.5946873,-0.22239937,0.05095409,-0.5832929,0.58390105,-0.67418617,0.22919695,0.03582695,0.3613622,0.080326684,0.40052018,0.13993098,0.04090224,-0.18350367,-0.16742928,-0.20203827,0.299294,-0.45991752,0.11144352,-0.14639969,-0.12270671,-0.012366359,-0.5277841,-0.3804913,-0.6991574,0.057137102,-0.8056225,0.35020176,0.18127239,-0.23360968,0.056095112,0.07151646,0.1387407,-0.44013548,0.02271534,0.027320763,-0.005228033,0.066499,-0.47628292,-0.20987111,-0.25251564,-0.53671724,0.014518219,-0.53237003,-0.26902208,-0.031429846,0.10023418,-0.3029993,-0.008881781,-0.2027065,0.69734293,-0.32115072,-0.07442533,0.29888085,-0.19839115,0.17313695,-0.49652767,-0.004613454,-0.1515837,0.23901992,0.057141006,-0.41771176,0.33491158,0.3440939,0.31450382,0.122525275,-0.23519003,-0.4167451,-0.20413126,0.17390668,0.31478676,-0.17503685,-0.55703974,-0.31120744,0.048716675,0.22724849,0.25601578,0.20576614,-0.13016981,0.20890681,-0.039844114,-0.41800138,0.7793346,0.50061905,-0.26350644,-0.28259745,0.29542962,0.5588703,0.16951245,-0.2828025,-0.14357564,0.022399416,-0.7182192,-0.20422234,0.26420823,-0.118771255,0.602421,-0.34890854,0.07365558,0.62846684,-0.1595767,-0.14206277,0.41774634,0.03874999,-0.06573612,-0.4834828,-0.2589109,0.25483486,-0.5938773,-0.062278196,-0.31179148,0.7241912,0.24019487,-0.7693345,0.5048019,-0.5352477,0.10283626,-0.10642239,0.56897426,0.64726835,0.5954464,0.43929386,0.68562603,-0.28295803,0.13466372,-0.008078198,-0.32539555,0.13195626,-0.2550948,0.19221918,-0.43513498,0.100335896,-0.03290425,-0.015429811,0.15570782,0.3325849,-0.43759397,-0.29478788,0.24914317,0.7562584,-0.18646343,-0.16247593,0.68106556,1.1142861,1.018291,0.041610375,1.0794016,0.22068906,-0.21816693,0.14180689,-0.23134239,-0.6784169,0.25886998,0.2690347,-0.39465848,0.34494272,-0.30889332,-0.101932265,0.17879386,-0.29987463,0.009088886,0.009957527,0.36744323,0.11045388,0.008027892,-0.46924886,-0.31168,-0.01529561,-0.07825646,0.17671633,0.3045718,-0.22129096,0.43677226,-0.14371157,1.0676702,-0.016823387,0.043831434,0.016059866,0.7241253,0.35771903,-0.115036584,0.03162129,0.6065789,0.24740398,0.18406059,-0.58245045,0.29692915,-0.2695789,-0.20097767,0.008728619,-0.4394745,-0.011827926,-0.07659118,-0.35396162,-0.06659407,-0.069926925,-0.23566456,0.41554686,-3.029811,-0.3080444,0.0017976165,0.24195826,-0.24368466,-0.21917176,-0.13434307,-0.5459732,0.27112377,0.22556108,0.6540287,-0.71113366,0.35250592,0.60006464,-0.5239215,-0.14572859,-0.72033834,-0.072815485,-0.04971528,0.43753323,0.086162746,0.03728187,-0.062323,0.15374354,0.6628875,0.14820075,0.23155606,0.30258504,0.44133702,-0.024052667,0.6632849,-0.07943326,0.557519,-0.4418317,-0.166851,0.24624227,-0.5224847,0.17868787,-0.06762449,0.06461791,0.6351678,-0.4119209,-0.920739,-0.47013697,-0.019742846,1.0851327,-0.39694476,-0.47805095,0.0837272,-0.37073886,-0.2908434,0.022588253,0.48698595,-0.038467746,0.03455772,-0.70906,0.12196853,0.014618824,0.20404501,0.021467298,0.005082602,-0.1862937,0.66026026,0.13579416,0.55381066,0.10715803,0.027348824,-0.49780592,-0.36186993,0.058557253,0.9061911,0.33035746,0.057304416,-0.17391296,-0.21926498,-0.16835435,0.0418257,-0.048116412,0.7083721,0.620632,-0.18010058,0.13675497,0.45595077,0.0014721999,0.149538,-0.07737806,-0.27045447,-0.11489455,0.038581345,0.4708209,0.97555,-0.22189917,0.4036608,-0.14002338,0.46630275,-0.072710425,-0.5584629,0.7659888,0.59964776,-0.20305832,-0.19182861,0.52603257,0.6052002,-0.5709422,0.57532126,-0.4910525,-0.20978783,0.5398988,-0.055180673,-0.4576334,0.30340037,-0.30391794,0.095822014,-0.7765262,0.3106002,-0.31970695,-0.30717716,-0.4223524,-0.05876343,-3.5351207,0.15199213,-0.19982304,-0.15447447,-0.37589,-0.0676885,0.121978484,-0.47909448,-0.6155125,0.14144228,0.20207565,0.5343219,-0.17844556,0.12179812,-0.23108603,-0.18146013,-0.15198854,0.20461376,0.11131936,0.2665788,-0.09460177,-0.36361918,-0.20335926,-0.05457716,-0.49283263,0.23808622,-0.6235717,-0.40081987,0.02463678,-0.6938161,-0.2782181,0.55947584,-0.22227003,-0.09427166,-0.20141612,0.17747454,-0.090068094,0.2248636,-0.0366488,0.22985362,0.03510209,-0.121592104,0.11798548,-0.2977393,0.3688971,-0.051642302,0.36312124,0.20376031,0.048100606,0.18589415,0.46276727,0.7643578,-0.046785593,1.0171193,0.14712097,-0.14060463,0.36579037,-0.1930439,-0.4050444,-0.5191128,-0.17652218,-0.10320098,-0.37198076,-0.30720374,0.09311495,-0.38521957,-0.76571685,0.5944759,0.09185467,0.18973754,-0.012291421,0.42156863,0.5534086,-0.22334337,0.17093806,0.0015210608,-0.1940551,-0.53795165,-0.06534829,-0.6748805,-0.2789133,0.25659055,0.6812108,-0.23875804,0.033620052,-0.017383054,-0.18381257,-0.13818638,0.21310394,0.010031412,0.36558148,0.4244727,0.023156619,-0.47351503,0.35640225,-0.10040333,-0.120310046,-0.36293843,0.12775724,0.87056726,-0.79130775,0.77791435,0.43690363,-0.0052640713,-0.28820968,-0.464327,-0.32073995,-0.048061747,-0.07750843,0.59621006,0.23627217,-0.97813636,0.37977222,0.35426724,-0.5426205,-0.6009722,0.39698818,-0.15931119,-0.2945986,-0.31556782,0.37026563,0.14505205,0.08309334,-0.16398783,0.1502787,-0.30611935,0.039324086,0.034863,-0.014949594,0.38823113,0.06290977,-0.29650608,-0.7016311,-0.15462382,-0.64832634,-0.32596332,0.46121702,-0.03245492,0.033351272,0.05999723,0.003822883,0.28709164,-0.13802491,0.061850328,0.123109855,-0.26914752,0.4308698,0.47315875,0.49610448,-0.42664874,0.5069049,0.25614882,0.0351229,0.08491548,0.00020331144,0.17816675,-0.08983564,0.5461343,0.1987855,-0.1555569,0.37820444,0.67592734,0.10771706,0.43994153,0.28195193,0.001474152,0.5157495,-0.1149933,0.21726853,-0.018813826,-0.5685188,-0.04358821,-0.23535259,0.22555475,0.30895117,0.15199341,0.19619167,0.07026168,-0.11702484,-0.14928417,0.3694372,-0.099490464,-1.3061123,0.33370414,0.27111772,0.7005523,0.454075,0.15345101,-0.20903926,0.839112,-0.169581,0.15283701,0.48788372,0.100452326,-0.48020282,0.68931836,-0.47835365,0.44978067,-0.20284466,0.12111765,-0.020429054,0.15522583,0.41517365,0.77839273,-0.30507597,0.048048258,0.066341706,-0.21560816,0.07898045,-0.48262715,0.17451298,-0.3245891,-0.34918308,0.65467364,0.24295749,0.36607206,-0.13680102,-0.11853554,0.114175625,-0.10625621,0.14248069,-0.038473524,-0.079179734,0.102607906,-0.73272985,-0.118257195,0.5477689,0.17183499,0.19122875,-0.22815971,-0.04463029,0.1216524,-0.21995415,-0.16191775,-0.053842854,-0.5303859,-0.001517574,-0.15545087,-0.65273494,0.46099785,-0.25078866,-0.0036623925,0.12997197,0.017936975,-0.25893787,0.32484955,0.0720484,0.6023647,-0.021928975,-0.15337911,-0.33065248,0.109554596,0.15542853,-0.19970441,0.017399818,-0.3403068,0.14353354,-0.48786512,0.5686708,-0.18028979,-0.53807473,-0.16923659,-0.023198595,0.07931062,0.54937726,-0.20232548,-0.30215064,-0.2397724,-0.2328276,-0.40323547,-0.19962727,-0.10584653,0.43523312,0.33983088,-0.07323936,-0.093867816,-0.3289691,-0.012476727,0.47783658,0.060697332,0.38589737,0.16335781,0.23095165,-0.21534331,-0.06787983,0.13002773,0.5667198,0.1311243,-0.1557895,-0.35584816,-0.1820517,-0.36622015,0.17903773,0.049895238,0.27618387,0.02551195,-0.31817716,0.77184314,-0.24836421,1.2311869,-0.058121342,-0.3318936,0.04010048,0.52510756,-0.1197724,0.060580138,-0.29570445,0.8960791,0.36685172,-0.2507439,-0.04601131,-0.78710586,0.03980141,-0.01736705,-0.3263317,-0.13673861,-0.062785335,-0.39175928,-0.14481188,0.2576441,0.21835762,0.368875,-0.053321052,0.21574755,0.10456584,0.07367201,0.3146787,-0.56645757,-0.13061796,0.28747985,0.30858377,0.027300471,-0.00461147,-0.34742287,0.19933647,-0.5777268,0.29789498,-0.3732265,0.129566,-0.34980586,-0.34890065,0.1318137,-0.015800526,0.30126542,-0.3935249,-0.55419344,-0.15626508,0.45045552,0.10062507,0.21504681,0.6139293,-0.21724202,-0.03623164,0.20387514,0.71213216,1.1013116,-0.20906389,-0.13849087,0.21459289,-0.39094532,-0.8352673,0.36459732,-0.3120432,0.2290643,-0.05621909,-0.24613833,-0.47764245,0.17520845,0.043684345,0.29683623,0.11304162,-0.66362095,-0.11511756,0.1810652,-0.24951506,-0.18720317,-0.2080038,0.19066608,0.64028937,-0.23848408,-0.32765272,-0.11340871,0.24960315,-0.23290052,-0.44040152,-0.20849377,-0.2402919,0.26293007,0.28045687,-0.21444036,0.021010915,0.055426568,-0.55361587,0.17182517,0.13898383,-0.3630909,0.17124896,-0.1568624,-0.21793605,0.76822895,-0.27155522,0.16713756,-0.41651857,-0.6761649,-0.7984132,-0.21924092,0.1083738,-0.13476236,-0.043482512,-0.57026964,-0.018574512,0.0022226796,-0.2328584,0.069687225,-0.49476933,0.48961556,-0.01852116,0.41634867,-0.26040536,-0.91928005,0.12193245,0.31088597,0.004919561,-0.7144778,0.51948184,-0.11189129,0.74559164,0.09578296,0.061034236,0.1413979,-0.42305598,-0.105710484,-0.35425702,-0.084934056,-0.5841547,0.12785096 +334,0.3975237,-0.07150329,-0.37568504,-0.17809719,-0.08516022,0.18670535,0.051087786,0.20031443,0.1602347,-0.45328128,-0.14289382,-0.21793784,-0.037558928,0.23534212,-0.14112745,-0.71354216,0.026568813,0.044633094,-0.41519582,0.44458625,-0.3540242,0.46782735,0.06462173,0.17934126,0.015812986,0.30725697,0.22985741,-0.49139982,-0.0867916,-0.08409158,-0.43269774,0.24890684,-0.42088667,0.14007989,0.001689138,-0.14502475,0.17884614,-0.38792905,-0.5108391,-0.59667957,0.30653828,-0.6253421,0.31575212,0.12065748,0.006586945,0.11939819,0.098318234,0.2823253,-0.32164112,0.1523381,0.19872113,-0.10353247,-0.15182178,-0.16128829,-0.21652195,-0.344328,-0.4430938,-0.04866946,-0.31780046,-0.26655287,-0.2768013,0.12442238,-0.31546253,-0.17524938,-0.12115169,0.397554,-0.34848264,-0.047455527,0.31936958,-0.2514603,0.11615434,-0.42184526,-0.02101477,-0.10097873,0.31147778,-0.19795217,-0.12603761,0.26571727,0.24838065,0.4529963,0.03171306,-0.173752,-0.16398522,-0.304407,0.20489079,0.5969963,-0.06266329,-0.5789079,-0.010473662,0.121365465,-0.10984366,0.13604896,-0.108568475,-0.3364816,-0.15190485,0.060025472,-0.38158095,0.40159303,0.45884272,-0.29066047,-0.36023575,0.33574417,0.39253846,0.07251481,-0.044481795,-0.009118382,-0.012731711,-0.5398729,-0.17935453,0.3437721,-0.23159285,0.40782607,-0.15345572,0.2753436,0.7689363,-0.3058462,0.14415625,-0.0012309928,-0.042844772,-0.07293643,-0.12394075,-0.14703225,0.014772203,-0.41752538,0.209519,-0.06689657,0.998794,0.27970687,-0.6629678,0.34377778,-0.54973084,0.23854719,-0.1765074,0.5454281,0.42230785,0.27212146,0.21901588,0.6916106,-0.43693224,0.2224384,-0.059716955,-0.5578845,-0.13032986,0.026020868,-0.07770292,-0.374108,0.04962994,0.018472092,-0.046005096,-0.01468896,0.08569247,-0.53820693,-0.0074515264,-0.023530383,1.0374392,-0.32095584,-0.069071226,0.36184436,0.71391416,0.82548785,-0.0011953284,1.181196,0.28668445,-0.42269713,0.17707856,-0.5365856,-0.71328276,0.2718832,0.36155623,-0.15673567,0.15534566,0.05584713,-0.012856289,0.10051725,-0.40495187,0.1081155,-0.26754177,0.17307694,0.16506037,-0.038028765,-0.3283302,-0.2791872,-0.24216934,-0.1240214,0.206535,0.11766553,-0.2296668,0.23739551,0.10012891,1.675573,0.044113025,0.12332026,0.019814488,0.4560518,0.20502551,0.13200365,-0.12315815,0.3600029,0.43600863,-0.008005978,-0.53648674,0.12334321,-0.17931496,-0.45656356,-0.13598938,-0.3775288,0.017013526,0.09279288,-0.32188943,-0.052154724,-0.020876152,-0.2973751,0.55241126,-2.6325538,-0.03298125,-0.037020598,0.3186801,-0.27484924,-0.171335,-0.09547026,-0.47462866,0.23697582,0.32033947,0.46751276,-0.6826034,0.3226555,0.47157648,-0.37714037,-0.18995911,-0.5777642,-0.080811776,0.008450834,0.2915432,0.109573886,0.11114666,-0.11106954,0.05834182,0.3114722,-0.0715834,-0.091209635,0.1401679,0.41239733,0.36692566,0.48186558,0.12735294,0.54955167,-0.12175811,0.012547811,0.28683832,-0.30986813,0.33211645,-0.028948935,0.0055847485,0.24679992,-0.24552004,-0.7234194,-0.581801,-0.41732642,1.1776069,-0.30613512,-0.07914909,0.28485096,-0.08577294,-0.056112964,-0.15215294,0.36113983,-0.1469159,-0.25427708,-0.66530186,0.042702984,-0.04518908,0.31850746,0.037900444,0.0094304085,-0.29162318,0.60617983,0.009349815,0.48429304,0.19799541,0.14212793,-0.06593062,-0.4508133,0.04379253,0.883637,0.22115466,0.1974313,-0.12338282,-0.26862943,-0.3539821,-0.084052995,-0.013880565,0.5369209,0.78444785,0.018356405,-0.025568822,0.34196264,0.029801916,0.03357291,-0.17013659,-0.2999111,0.05516522,-0.13714235,0.5925187,0.2123818,-0.2088829,0.4063973,-0.048267324,0.351662,-0.17007415,-0.2683362,0.488107,1.0759902,-0.13462241,-0.14695859,0.36396107,0.51757604,-0.2836405,0.22050005,-0.6481441,-0.19269614,0.6327212,-0.22621472,-0.39225397,0.26566425,-0.2986227,0.18570973,-0.94653475,0.34290722,-0.122075066,-0.3348341,-0.44506106,0.012144616,-3.6819835,0.08839456,-0.22138461,-0.20880452,-0.002501905,0.19660306,0.059323795,-0.37822267,-0.40632802,0.13534297,0.06290306,0.5220281,0.026392397,0.27768275,-0.21144775,0.071772605,-0.3040108,0.23291093,-0.06277493,0.22332077,0.07305042,-0.36986414,0.06400825,-0.16562973,-0.3198239,0.27479073,-0.58733463,-0.46542695,-0.06617065,-0.5351183,-0.37080434,0.6928216,-0.4483175,0.011752057,-0.07613249,0.031693738,-0.21203865,0.29114106,0.24646486,0.071482845,-0.11904378,-0.00861674,-0.02023882,-0.29388937,0.4244088,0.08534301,0.4145659,0.27261314,0.16127832,0.051870964,0.4297633,0.46153912,0.1025851,0.6420562,0.363669,-0.1130003,0.26647747,-0.39692992,-0.21094173,-0.40250745,-0.4124436,0.030091293,-0.26377937,-0.4500021,-0.21599586,-0.32514736,-0.5887404,0.22428589,0.11226447,-0.02817371,0.025658352,0.16494998,0.4816853,-0.050605647,0.11728409,0.14182258,-0.08586432,-0.510521,-0.31656665,-0.513169,-0.26363727,0.25757644,0.93337035,-0.26227704,-0.18700117,-0.19504131,-0.23303379,-0.14570346,0.08531074,0.05980779,0.23867242,0.41495356,-0.2257769,-0.6997548,0.5673041,-0.21730119,-0.19195525,-0.56743824,-0.037663747,0.57754904,-0.78211904,0.40512192,0.36857426,0.11240221,0.19547011,-0.36199817,-0.39802292,-0.025835522,-0.17601785,0.113893285,-0.056319434,-0.42164436,0.367181,0.2821097,-0.21947546,-0.5960319,0.4770513,0.15542358,-0.4319893,0.1339811,0.24163246,0.035450887,-0.1114821,-0.19380389,0.1262134,-0.34632942,0.31411782,0.31175593,0.059396382,0.14493258,-0.24506398,-0.16014461,-0.68109876,0.08379965,-0.3633526,-0.23300692,0.24579613,0.230742,0.22502325,0.14159614,-0.029419461,0.33657983,-0.36455253,0.07162856,0.0046151797,-0.13163462,0.38838515,0.34555727,0.27791226,-0.38040054,0.53392094,-0.042781353,-0.02853196,0.010998908,0.16028409,0.41138807,0.11103609,0.2511174,0.039964788,-0.3678562,0.38990974,0.86274517,0.21306726,0.3313237,0.042774476,-0.122960836,0.4457725,0.07238314,0.019723928,0.2336883,-0.46466258,-0.21557833,-0.10874675,0.07065126,0.4874536,0.16815631,0.3199773,-0.03455817,-0.3110834,-0.031814363,0.26677552,0.10447655,-0.9341244,0.48411044,0.23674384,0.7600806,0.46869743,-0.11868728,0.14360644,0.53311574,-0.18253899,0.24027802,0.238111,-0.17049149,-0.68472517,0.43988875,-0.3653225,0.5461585,-0.056396443,0.00076292356,-0.02321763,-0.13214023,0.15452847,0.9475878,-0.2057382,-0.0076713553,0.019487357,-0.28259087,0.073850244,-0.45654404,0.028419351,-0.607928,-0.3392231,0.4665928,0.4290952,0.16951455,-0.010921833,0.036029406,0.06412108,-0.080479816,0.06234839,0.025004847,0.010472457,0.06465672,-0.6902135,-0.32182708,0.65806574,-0.13221832,0.012610569,0.0031197309,-0.087511525,0.32875144,-0.25577337,0.09095213,-0.18797868,-0.45684782,-0.033199914,-0.17702547,-0.39001957,0.29194048,-0.18181437,0.39573383,0.21759316,-0.04875592,-0.2773839,0.32426924,0.29472092,0.6320308,-0.18118666,-0.26158106,-0.59670395,0.056149125,0.13717183,-0.22187114,-0.14860535,-0.25819814,-0.009778794,-0.6039381,0.45549238,-0.06204732,-0.25154364,-0.028153025,-0.34514764,-0.13061567,0.50481254,-0.13361771,-0.06252658,-0.057099443,-0.0658498,-0.12000385,0.13971682,-0.2526024,0.20733318,0.20994309,-0.13297032,-0.106156535,-0.2306317,-0.19571649,0.24833424,0.050034363,0.34624067,0.30857268,0.14381236,-0.21626432,-0.20568012,0.08226196,0.41445115,0.13550635,0.007043918,-0.13325767,-0.23255037,-0.27571762,0.11659694,-0.22315863,0.22671907,0.1566094,-0.4721673,0.57474667,-0.076718934,1.0716474,0.08760688,-0.23611106,0.047427654,0.5275183,0.11874812,0.15121908,-0.3984333,0.93830216,0.48844433,0.045825697,-0.25039682,-0.2660496,0.09529778,0.09677962,-0.072721735,-0.17310412,0.11421348,-0.62831944,-0.367939,0.21994543,0.13643204,0.2790785,0.114222385,-0.19008414,0.065787464,0.0320928,0.4459314,-0.50148517,-0.18282346,0.21049976,0.13233203,0.22041076,0.11423716,-0.46321467,0.4945941,-0.43583393,-0.021165077,-0.2750939,0.18414968,-0.20047115,-0.14378026,0.2406968,0.03890345,0.42964602,-0.35379842,-0.40152943,-0.30248314,0.4431558,0.09147652,0.24237706,0.56848526,-0.20010081,0.009637054,0.0842899,0.6198083,1.0146875,-0.25327867,0.08759887,0.48497722,-0.4698731,-0.44453427,0.16440462,-0.23291269,-0.026082862,0.032066356,-0.21446246,-0.43643734,0.30872306,0.12942472,0.044661563,0.09863238,-0.53612036,-0.36292598,0.38699716,-0.3233553,-0.38994235,-0.4749742,0.33184892,0.7218378,-0.41806185,-0.12827642,0.15437719,0.077755995,-0.2704678,-0.57872033,-0.089424625,-0.27901152,0.40827364,0.17481579,-0.13009925,-0.13909617,0.04453582,-0.35950556,0.28253892,0.2638916,-0.45101956,0.060712203,-0.14730431,-0.17563751,0.8473063,-0.15242554,-0.104579575,-0.6619312,-0.2351457,-0.72675985,-0.44446403,0.7130831,0.11540447,-0.0880353,-0.41370928,-0.20715943,0.21622147,-0.13536559,-0.13466296,-0.46119526,0.4397359,0.06499594,0.3719184,-0.04648087,-0.83476216,0.021690782,-0.015681235,-0.40367392,-0.65445644,0.46063772,-0.14388633,0.8018017,0.043186136,-0.082368836,0.40404028,-0.3491331,-0.15317497,-0.3125758,-0.24046065,-0.7518081,0.28566635 +335,0.43767393,-0.18851957,-0.4614236,-0.11479755,-0.17811541,0.22396812,-0.136764,0.49045113,0.10598154,-0.34354478,-0.023857385,-0.20797464,0.077185705,0.31596893,-0.21087265,-0.49698687,-0.101775125,0.08584682,-0.6652114,0.7151217,-0.31009772,0.14730111,-0.042062078,0.34529305,0.11974076,0.20026328,0.064712755,-0.15000239,-0.13165034,-0.11294006,-0.08434602,0.29874244,-0.4340723,0.08906601,-0.15590353,-0.23281425,-0.015304166,-0.34654891,-0.33905077,-0.61561936,0.31203926,-0.74875146,0.47775328,-0.07691827,-0.30803272,0.42827517,0.07405898,0.2492374,-0.31087768,-0.05961521,0.02913766,0.08618286,0.015980184,-0.16527233,-0.15347125,-0.4667281,-0.50942916,0.026866976,-0.5595637,-0.17603892,-0.14782304,0.051156428,-0.28444082,-0.0019176344,-0.21228752,0.51163846,-0.48830637,0.100436226,0.25578827,-0.038952604,0.26261422,-0.5357437,-0.15979925,-0.116564356,0.24448167,-0.09289351,-0.09108417,0.18991505,0.2216048,0.44249195,-0.14481905,-0.084323026,-0.19113657,-0.18347944,0.2504221,0.41575,-0.098867096,-0.63967294,-0.09125898,-0.037445474,0.20692028,-0.0032466173,0.20273593,-0.14649585,-0.1086726,-0.082065105,-0.34728643,0.25424093,0.49181226,-0.37310725,-0.34587008,0.34047633,0.4219395,0.31369746,-0.19711263,-0.016707739,0.015916266,-0.41216856,-0.05284906,0.14699939,-0.23842134,0.577782,-0.14821632,0.18582651,0.5292842,-0.12007084,0.21218869,0.05176042,-0.0021712035,-0.17695716,-0.17565516,-0.26189452,-0.011951212,-0.35570046,0.10299258,-0.23011331,0.6840496,0.21893956,-0.5775907,0.34342533,-0.5316214,0.15071093,-0.015899578,0.40015686,0.7182178,0.34588483,0.04246491,0.48838702,-0.28902414,0.020217432,-0.16446663,-0.25179482,0.12844223,-0.16609669,-0.035696246,-0.49447268,-0.028577086,0.019802006,0.01959885,-0.08825298,0.23747487,-0.46091262,-0.1099569,0.085934035,0.78810734,-0.2651513,-0.020541092,0.70087606,0.98444706,0.9132181,0.07155803,1.101975,0.17095463,-0.17538397,0.2389364,-0.362663,-0.7561112,0.247201,0.33635345,0.1089453,0.32397926,0.01105392,-0.08112332,0.37292272,-0.3216487,0.13340402,-0.258794,0.23814802,0.15821487,-0.04407807,-0.258814,-0.31417337,-0.05917424,-0.09694603,0.14891773,0.2252362,-0.16932511,0.37112358,0.098354004,1.4971967,-0.104072444,0.05892353,0.12404805,0.444465,0.20269164,-0.08835268,-0.047942113,0.42137736,0.4895108,-0.026843674,-0.5933636,0.20540166,-0.25936648,-0.42821988,-0.07466326,-0.42686167,-0.10142939,-0.010525282,-0.52862746,-0.0820838,-0.059885275,-0.16663907,0.30652115,-2.9708142,-0.09433214,-0.2854406,0.27960998,-0.26334053,-0.2622164,-0.090617225,-0.5091805,0.31520233,0.32378152,0.4132808,-0.55660266,0.42495987,0.30644146,-0.37329456,-0.0667595,-0.6264649,-0.24018615,0.011399199,0.49371007,0.010503308,0.14600421,0.13083942,0.22809441,0.48013335,-0.012623,0.14520556,0.19384791,0.3833395,0.06882261,0.44800642,-0.016974585,0.50297886,-0.2620047,-0.09695121,0.25907758,-0.25149542,0.3840495,-0.038449354,0.16765776,0.37947956,-0.3219801,-0.7547292,-0.6445419,-0.20922917,1.2969418,-0.31050345,-0.37840596,0.19535516,-0.30682436,-0.2216823,-0.22462222,0.4550292,-0.08982829,-0.11167819,-0.7530247,0.039070394,-0.12008535,0.197287,-0.045885388,0.0212603,-0.36518496,0.574232,0.017847626,0.5217409,0.2504177,0.21092539,-0.06477269,-0.36674652,0.06391179,0.78226197,0.40891215,0.012827728,-0.16770044,-0.21953084,-0.39727643,0.10412083,0.033038627,0.5884663,0.5690346,0.07098036,0.24880429,0.17428027,-0.0953274,0.124058574,-0.14317152,-0.22518918,-0.10952354,-0.019964011,0.49341652,0.41650918,-0.20862731,0.4174127,-0.091743484,0.19096793,-0.19698375,-0.41422606,0.52649206,0.7297999,-0.28218663,-0.21480674,0.5548185,0.60942996,-0.24177149,0.32110876,-0.47318885,-0.1674437,0.48668867,-0.22595184,-0.29804856,0.40514573,-0.30762896,0.1618875,-0.92747974,0.28683713,-0.44477972,-0.41516685,-0.5096906,-0.04571787,-3.339766,0.15057656,-0.12502326,-0.287169,-0.21733147,-0.20324464,0.32662758,-0.5579146,-0.54911095,0.13774584,0.12890233,0.54561424,-0.08936463,0.0637551,-0.26154083,-0.26861763,-0.25427613,0.19586252,0.13405508,0.31278178,-0.24483185,-0.41369832,-0.048461094,-0.1774402,-0.33714828,0.27335224,-0.5122165,-0.47614193,-0.0007220864,-0.30374914,-0.14538069,0.57440263,-0.21557859,-0.007462136,-0.23485371,-0.008233384,-0.1638679,0.2967821,0.065121934,0.13357742,-0.029722046,-0.0940384,0.0066883406,-0.37588614,0.3095551,0.11176091,0.30118206,0.4116006,-0.042474423,0.18640015,0.47863188,0.48131707,0.031938866,0.6954267,0.3645749,-0.10855376,0.39709124,-0.29474327,-0.22953221,-0.413182,-0.2703633,-0.012661612,-0.3636423,-0.55523074,-0.19760253,-0.24728814,-0.6694165,0.3107804,-0.12263169,0.17021638,-0.095075004,0.28814277,0.55986476,-0.05255695,0.11997876,-0.045962468,-0.098322205,-0.47763452,-0.3322124,-0.6602648,-0.27320197,0.0768818,0.9138331,-0.12994167,-0.037267964,-0.1025134,-0.33723754,0.004224962,0.08836268,0.07356045,0.17033844,0.45078513,-0.12967499,-0.6749799,0.51415634,-0.12586758,-0.19932671,-0.44465536,0.06051325,0.47320554,-0.64453644,0.52952176,0.29351395,-0.05088065,-0.19522576,-0.4184559,-0.154373,0.048854243,-0.20925952,0.255575,0.1633247,-0.6810966,0.39700764,0.2285874,-0.08773146,-0.6228577,0.59498537,0.058794938,-0.22783445,0.039292786,0.3267496,0.07946911,0.015194968,-0.18483098,0.19192365,-0.4384925,0.3736744,0.21688794,-0.10172315,0.24578327,-0.17914847,-0.15040909,-0.64289004,-0.02459429,-0.4308388,-0.24739258,0.3327375,0.12981062,0.24810006,0.08110742,0.01816112,0.3320359,-0.27293473,0.11939357,0.08355964,-0.24009344,0.3940568,0.38401285,0.411711,-0.38994667,0.5693809,0.051236175,-0.03411209,0.16254495,0.14544001,0.38006964,0.1235008,0.4393015,0.03338454,-0.21238613,0.42013407,0.8042796,0.22993419,0.50652117,-0.0035183548,-0.18105721,0.33271375,-0.004460134,0.043657206,-0.028410705,-0.42923635,-0.18940312,-0.03539044,0.18370251,0.46610153,0.018586587,0.24472335,-0.07681508,-0.20611477,-0.003960214,0.14810508,-0.01882376,-1.1825124,0.34260792,0.16481295,0.8032974,0.48459345,-0.052451238,0.044830546,0.55028915,-0.16441225,0.17170402,0.4149601,0.0967809,-0.59702164,0.5071709,-0.58787465,0.511981,-0.06859347,-0.006176903,0.052865468,-0.07432213,0.29549798,0.8469745,-0.15812562,0.0195558,0.050318267,-0.42949444,0.16476998,-0.3680742,0.0031992078,-0.5059017,-0.31919843,0.45273086,0.4921037,0.30483344,-0.22852877,0.020083698,0.085735545,-0.08679732,0.15103129,0.11730973,0.13774973,-0.1391961,-0.74868387,-0.25544366,0.5345745,-0.21891508,0.1221232,0.019857932,-0.39447185,0.3163005,-0.107249804,0.003870197,-0.030315975,-0.53811383,-0.0068903924,-0.36598638,-0.43196288,0.37801203,-0.33525506,0.26977265,0.20280065,0.009776656,-0.3435275,0.1673039,-0.009883833,0.6213795,-0.177414,-0.08533613,-0.45334777,0.03327797,0.2185996,-0.17216896,-0.12500986,-0.23832907,0.09326647,-0.38767955,0.36051586,-0.04896612,-0.27592218,-0.101103514,-0.14832632,0.0775135,0.571794,-0.121272646,-0.13641852,-0.17421414,-0.103901416,-0.27473864,-0.10234269,-0.052707814,0.25708863,0.23504576,-0.005211988,-0.11863457,-0.025016626,-0.017312193,0.33341777,0.05455284,0.47463787,0.47596818,0.08949152,-0.26949224,-0.12624358,0.22251481,0.40152007,0.07314224,-0.17510267,-0.35399723,-0.5292823,-0.21574189,0.25586182,-0.18605731,0.34190333,0.06690173,-0.27568558,0.7157529,-0.046829525,0.98389626,0.09154307,-0.34325412,0.08259214,0.47539818,0.056706283,-0.08405523,-0.37991163,0.80370754,0.4037735,-0.0027016322,-0.08722856,-0.29634002,-0.011265167,0.081172936,-0.19351715,-0.20504329,-0.0138919195,-0.5032106,-0.15861502,0.06980161,0.23320173,0.27405655,-0.090560704,-0.0071029663,0.18301845,0.0984736,0.24233869,-0.49193516,-0.1306751,0.25327092,0.103286035,-0.0065878313,0.14096521,-0.49546322,0.36840877,-0.51542026,-0.007389015,-0.17318456,0.106492564,0.022035567,-0.25721243,0.19700514,-0.03493595,0.29023287,-0.333488,-0.3825347,-0.2985789,0.51908314,0.17956904,0.115784965,0.52334565,-0.101800434,0.1488211,0.15712425,0.6203283,0.9127201,-0.19863461,-0.034640305,0.2774267,-0.38364637,-0.7337869,0.17815803,-0.18347263,0.3672198,0.022575863,-0.11655728,-0.5411223,0.36351326,0.17436682,0.028543686,-0.03172827,-0.51623636,-0.3859812,0.34689555,-0.34531954,-0.27142397,-0.40116537,-0.026939223,0.5376133,-0.3303314,-0.20051503,0.0123399375,0.25168422,-0.25430048,-0.53981,-0.10244792,-0.38691863,0.25591284,0.12728146,-0.21397337,-0.09703191,0.10882543,-0.40052193,0.268599,0.13162519,-0.3246606,0.037361376,-0.24320237,-0.05844899,0.88144875,-0.28348646,-0.024074484,-0.4883639,-0.52340794,-0.6562853,-0.46444148,0.48790833,0.10102599,0.019630158,-0.48052704,0.032025542,0.04867036,0.10452989,-0.07500101,-0.37350503,0.3838847,0.06437329,0.29203746,0.035985876,-0.6821616,0.23333998,-0.017535504,-0.10983697,-0.54050004,0.55781144,-0.06253804,0.73209393,0.047668997,0.16995855,0.22880942,-0.35716563,-0.2411095,-0.16348222,-0.12196248,-0.66970056,0.23609652 +336,0.40046635,-0.29611793,-0.43515113,-0.12651391,-0.32314196,0.13380514,-0.05365324,0.4527579,0.004324162,-0.434975,-0.14728332,-0.20732751,0.023515757,0.24249165,-0.20611148,-0.26053327,-0.08316143,0.08572042,-0.37950802,0.38608357,-0.38276443,0.30341142,0.11209889,0.3177785,0.35547516,0.17742623,0.13059834,-0.12695666,-0.25266382,-0.2454278,-0.19937086,0.23704801,-0.43077463,0.025463272,-0.109436736,-0.39171547,0.14189568,-0.438504,-0.2265611,-0.73988056,0.3232184,-0.85144067,0.46815193,-0.019613886,-0.24194597,0.35941553,0.19653387,0.39641887,-0.116108425,-0.046398617,0.3079939,-0.0640673,0.050493225,-0.08475462,-0.21666002,-0.2910325,-0.6109409,-0.024374409,-0.29109356,-0.41840586,-0.3160663,0.17908683,-0.30778855,-0.09082045,-0.07153291,0.46571273,-0.5016591,0.022794493,0.123865046,-0.105928764,0.37328923,-0.55406946,-0.16832952,-0.10153398,0.2965265,-0.36056724,-0.10759247,0.25992572,0.29487383,0.30983728,-0.022834636,-0.051948734,-0.25558838,-0.032164913,0.0080191055,0.52754724,-0.13259163,-0.4119514,-0.027375123,-0.093549624,0.17585959,0.24626347,0.28434154,-0.21063623,-0.13410957,0.17542934,-0.1896183,0.17541109,0.3212923,-0.3747405,-0.18947157,0.3355984,0.46793574,0.17853485,-0.13975932,-0.052205037,-0.042812023,-0.44293994,-0.14786841,0.110873066,-0.21237826,0.5258386,-0.06334504,0.3776001,0.6860823,-0.17899346,0.05216407,-0.11819206,0.0828717,-0.09912767,-0.15160078,-0.45731533,0.2534879,-0.38558426,0.24154195,-0.10224419,0.7920825,0.05953571,-0.6718951,0.29386336,-0.6054991,0.04924531,-0.12750886,0.4067844,0.30693004,0.43072128,0.37881824,0.5285873,-0.36087695,-0.0289162,-0.077060275,-0.35052106,-0.051789172,-0.22524172,-0.13613988,-0.4721847,0.051450748,0.1229136,-0.24866737,0.06210895,0.3966631,-0.5681379,0.08726272,0.15743087,0.77382964,-0.3058869,-0.042065606,0.6221654,0.8880843,0.984106,0.06358103,0.9868037,0.21629544,-0.31329444,0.21297416,-0.22813259,-0.63266456,0.31064257,0.5927258,-0.2335873,0.2531647,0.1263339,-0.027036497,0.4451097,-0.278047,0.15094763,-0.2256468,-0.10095625,0.061108336,-0.15862423,-0.50917584,-0.37020874,-0.04938638,0.020857789,-0.08468494,0.23395105,-0.13118796,0.32232824,0.119662285,1.9688969,-0.06791282,0.109770946,0.24208847,0.4620702,0.092042685,-0.09412604,-0.10712268,0.38575995,0.35241038,0.24908027,-0.5227787,0.19405645,-0.08748506,-0.6187036,-0.079479344,-0.37424806,-0.16627173,-0.059126277,-0.51597023,-0.12358746,-0.18700285,-0.19341408,0.36498502,-2.672983,-0.09654823,-0.18876831,0.25768632,-0.27391684,-0.38289985,0.12292259,-0.40264907,0.34267157,0.33738682,0.4524155,-0.62611926,0.42648083,0.41361535,-0.49276194,-0.14628926,-0.60758555,-0.27082887,-0.049090233,0.33587176,-0.009204674,-0.07323958,0.014522191,0.22777636,0.3926406,-0.12837237,0.17128824,0.22758357,0.41588116,0.105650045,0.6906603,0.059640344,0.42614317,-0.03676741,-0.1463301,0.32437512,-0.24732344,0.10007767,0.16977088,0.035860937,0.2716487,-0.41535047,-0.89976907,-0.67085034,-0.31315678,1.2172122,-0.25215504,-0.29650915,0.246042,-0.32880655,-0.3133481,-0.21293004,0.33109474,-0.0569134,0.0007410367,-0.75033593,0.07443307,-0.11919294,0.12652457,0.03929508,-0.028463623,-0.5456204,0.6338524,-0.20553395,0.6057883,0.44897753,0.13190381,-0.21836866,-0.32210854,-0.06262345,0.84253097,0.38899535,0.088655554,-0.16376056,-0.21337366,-0.37740198,-0.07355556,0.163445,0.3892822,0.7406337,0.081703804,0.24288875,0.18639213,-0.07243704,0.013527954,-0.24488287,-0.22772394,0.013420531,-0.09035157,0.5718972,0.3666733,-0.11283444,0.43044835,-0.108482696,0.36867192,-0.16678123,-0.29758254,0.23096602,1.1359181,-0.11492788,-0.1511264,0.6641665,0.586974,-0.23587841,0.2672426,-0.6138167,-0.10343035,0.5148614,-0.27478102,-0.47053543,0.24037223,-0.2775089,0.13133007,-0.9064545,0.34983578,-0.26529,-0.3959637,-0.42313924,-0.122855596,-3.2364798,0.24480152,-0.21334332,-0.2661199,0.07613538,-0.2956587,0.19815023,-0.7387234,-0.53164184,0.12279787,0.03134687,0.6990193,-0.05306563,0.10193573,-0.23326883,-0.3458372,-0.2380729,0.093435206,0.02201535,0.3444739,-0.04830734,-0.512618,-0.03310759,-0.12662287,-0.46383366,-0.0034663677,-0.6010581,-0.57659394,-0.111356534,-0.4683434,-0.36625087,0.6733342,-0.29304504,0.075999305,-0.09570615,-0.075617306,-0.111320905,0.25324738,0.12150543,0.1579757,0.0031075676,0.040757354,0.05723177,-0.25523302,0.27591306,0.09426959,0.2389774,0.14831024,-0.22820717,0.26434663,0.49415347,0.5401745,-0.059348073,0.7809649,0.5047581,-0.06530861,0.2408687,-0.35641733,-0.2964426,-0.58654505,-0.33099923,0.00095472333,-0.31462604,-0.5154527,-0.06308801,-0.28823566,-0.60654575,0.6701781,-0.0743789,0.20619182,-0.022619164,0.2982717,0.49096072,-0.1634233,-0.24588814,-0.008324551,-0.08313721,-0.5675686,-0.18265982,-0.6666833,-0.5396178,0.038017575,1.0127645,-0.17667113,0.047964804,0.08998332,-0.20500985,0.06396565,0.07264104,-0.026914762,0.2788677,0.4141811,-0.21401453,-0.7473496,0.49779668,-0.037894793,-0.23521352,-0.37174675,0.18049444,0.5007043,-0.5354358,0.4666178,0.3295532,0.03207026,-0.122354425,-0.45624438,-0.14060755,0.027799582,-0.29548275,0.49542394,0.101450965,-0.66111284,0.37758276,0.4360899,-0.18002787,-0.6708588,0.65314037,-0.05960136,-0.36346987,0.036371898,0.3349212,0.14681278,-0.06666807,-0.17473902,0.2954942,-0.44489327,0.28267816,0.30443722,-0.06595583,0.13925193,-0.14401153,0.013131555,-0.7153785,0.2235255,-0.3777805,-0.3189895,0.20411935,0.062075797,0.01629385,0.36202627,0.06324732,0.39535555,-0.3409753,-0.0037783831,-0.07381531,-0.26684564,0.259505,0.42726517,0.34155405,-0.44507122,0.44228134,0.0039177737,-0.110329196,-0.16964442,0.00082787673,0.4023549,0.014277844,0.30091932,-0.19344275,-0.36003208,0.35055026,0.61493003,0.2841521,0.5634326,0.06968751,-0.09435537,0.15272477,0.16594766,0.19963886,0.11451829,-0.58810127,0.09702665,-0.08816158,0.069933176,0.5499059,0.105223194,0.19501363,-0.23462455,-0.27322644,0.12234197,0.18018298,-0.13997628,-0.9145532,0.33709043,0.17487271,0.70248944,0.514383,0.010088761,0.024055688,0.65814596,-0.34686285,-0.019341234,0.26105282,0.0974294,-0.63739777,0.6087839,-0.7247604,0.3707703,-0.055069264,-0.15848431,-0.10536273,-0.16237707,0.3898373,0.72398174,-0.121039055,0.008479576,-0.034410015,-0.3348876,0.1806135,-0.40519917,-0.0017433614,-0.5754557,-0.20902623,0.577516,0.50781304,0.2858676,-0.066278234,0.12206851,0.1438765,-0.2097988,0.25714105,0.15995534,0.20440845,0.085095175,-0.6755665,-0.26933232,0.52218217,-0.07561581,0.15350835,-0.07075429,-0.44562614,0.2102302,-0.1498688,0.012245939,0.03675606,-0.6045276,0.08080209,-0.3349255,-0.35921696,0.34089687,0.02440521,0.24680713,0.2602569,0.031108519,-0.23836742,0.253094,0.23879442,0.7360785,0.009419394,-0.15836842,-0.32177913,0.16912594,0.025767708,-0.12196846,-0.11590227,-0.17636849,0.16376956,-0.6057547,0.45099264,0.13969475,-0.26678643,0.07772398,-0.13464214,-0.048168804,0.5065054,-0.12952775,-0.051273797,-0.15906106,-0.024897305,-0.098537736,-0.16392215,-0.08909653,0.1316008,0.108847804,0.0084969485,-0.07972803,-0.05497734,-0.13523105,0.49752554,-0.047812603,0.4991998,0.42639428,-0.15111093,-0.41592252,-0.1656126,0.021012418,0.33235168,-0.1399392,-0.044081345,-0.3407455,-0.46177658,-0.19883336,0.23820165,-0.1998613,0.4333428,0.123317614,-0.20964885,0.9036594,-0.1576542,1.0633433,-0.08468358,-0.46359673,0.06672351,0.5572077,-0.07976565,-0.0369951,-0.34348643,0.9532369,0.5395448,-0.042738013,-0.12740742,-0.19203377,-0.15801862,0.203679,-0.1839287,-0.11739084,-0.07711852,-0.5310725,-0.31388396,0.19110204,0.19232298,0.21623777,0.008965522,0.18280727,0.2947774,-0.0574711,0.3610802,-0.31353873,-0.30611393,0.2676279,0.24149637,-0.11330747,0.025415638,-0.53015435,0.512746,-0.39623553,0.16390096,-0.282983,0.1488395,-0.14632334,-0.22323315,0.19715044,-0.049659926,0.31119674,-0.22961505,-0.30424735,-0.1555176,0.42142683,0.09741333,0.16937691,0.5628999,-0.35702297,0.1871245,-0.033394568,0.42714554,1.0218104,-0.17022495,-0.07886308,0.42943496,-0.37882176,-0.48942345,0.31514585,-0.1521856,0.04550556,0.1147724,-0.13730194,-0.55057794,0.20257115,0.37830353,-0.10823519,-0.0053409575,-0.45840284,-0.29380926,0.47373676,-0.43487135,-0.23902982,-0.3763387,0.2355557,0.55898654,-0.372389,-0.26749405,-0.058899116,0.22272769,-0.14021069,-0.40012157,-0.0037192504,-0.35682487,0.41263103,0.037983082,-0.43698987,-0.1870336,0.012513001,-0.2031848,0.03352081,0.2687942,-0.36606938,0.034551393,-0.44359234,-0.051131885,1.0145546,-0.02435572,-0.14561735,-0.44425467,-0.34102058,-0.8573493,-0.49588734,0.5157765,0.04717041,0.024280049,-0.46450168,0.008818846,-0.094912514,-0.26334506,-0.06319867,-0.319905,0.46681538,0.18009014,0.4459605,-0.042114932,-0.5808563,0.18804222,0.033014994,-0.19483137,-0.5246936,0.58699906,-0.05202734,0.7130435,0.09121455,0.052302487,0.22839497,-0.37013787,-0.04211882,-0.19430175,-0.23812689,-0.6865257,-0.045485854 +337,0.54617673,-0.09075162,-0.5790001,-0.041971,-0.3084819,0.20040563,-0.059659485,0.52765566,-0.014686243,-0.4314536,-0.12093005,-0.04926346,0.00668101,0.26225096,-0.27041405,-0.42821002,0.068773866,0.23943883,-0.49352163,0.5942731,-0.3267723,0.4303679,0.014040172,0.18032883,0.074856564,0.36431083,0.11522086,-0.07294778,-0.2842869,-0.22193994,-0.15919329,0.43084133,-0.5058415,0.12711139,-0.18775244,-0.38434136,0.03787016,-0.43225774,-0.3479367,-0.63680017,0.067223296,-0.63020515,0.6370315,-0.04869181,-0.33421516,0.38253307,0.13725503,0.13332446,-0.104348466,0.02684913,0.03722384,-0.05352458,-0.10735296,-0.35828364,-0.16124037,-0.49657816,-0.4979023,0.09912151,-0.49107733,-0.13355424,-0.17392753,0.09222113,-0.21729057,-0.0018935129,-0.16610521,0.5075653,-0.4684767,0.16065317,0.028596528,-0.03287751,-0.010792773,-0.5628239,-0.115152374,-0.07867257,0.22215036,-0.18445939,-0.102773935,0.19958854,0.29064053,0.43774188,0.0097880075,-0.11243374,-0.2690094,-0.11477858,-0.01605061,0.48926258,-0.27331144,-0.49566132,-0.06380146,-0.06942113,0.19848207,-0.0064768344,0.12943704,-0.17727375,-0.12825541,-0.1684976,-0.2914902,0.29545072,0.4349925,-0.4874851,-0.20152695,0.38268328,0.3692718,0.17802595,-0.22051838,-0.019707877,-0.12185197,-0.4691687,-0.18592669,0.060279593,-0.16632524,0.5814414,-0.10216656,0.30922776,0.5921024,-0.06539685,0.04869257,0.13107611,0.109742306,0.10459126,-0.17052992,-0.17472053,0.12951683,-0.37543708,-0.03469865,-0.099868566,0.79549724,0.045089383,-0.770041,0.35019335,-0.4895205,-0.09547,-0.07251771,0.38319695,0.45225516,0.5472707,0.096879974,0.58122337,-0.28513643,0.050808348,-0.02133432,-0.35025883,-0.022241399,0.090906255,-0.22316751,-0.55895627,0.215005,0.13366795,-0.05219724,0.045983475,0.48226798,-0.52981377,-0.15352254,0.1839187,0.7912583,-0.35921115,-0.26319927,0.6848682,0.88328755,0.9354446,-0.040858872,1.0220995,0.19597992,-0.09079829,-0.011400282,-0.27971154,-0.42140192,0.20922443,0.27438828,-0.15772535,0.20877743,0.035581224,-0.11183542,0.28207538,-0.07395863,-0.09103511,-0.1723127,0.21410985,0.14180677,-0.16447712,-0.38884026,-0.46155167,-0.012227368,0.0709416,0.21351135,0.24978638,-0.18723822,0.33205637,0.19660047,1.656131,0.0067629963,0.103263974,0.111513674,0.41149515,0.31693617,0.02645339,-0.07326536,0.30724913,0.19654351,0.13717234,-0.42630786,0.094164886,-0.13976306,-0.70491266,-0.10333636,-0.3163254,-0.22913325,-0.18153143,-0.661065,-0.22426862,0.042854898,-0.22036609,0.49801403,-2.7001247,-0.06788705,-0.075606495,0.30935243,-0.21606383,-0.49843898,-0.19468974,-0.3100067,0.37747884,0.2976653,0.47353673,-0.6105989,0.59604764,0.3429035,-0.32219693,-0.25444585,-0.41768906,-0.11238602,0.019182695,0.36449787,-0.031365886,-0.017879948,0.15137817,0.10064475,0.4626054,-0.39935243,0.16381213,0.21838546,0.26585695,0.032143705,0.24584958,0.1101412,0.5607338,-0.14345992,-0.2588056,0.3489927,-0.27250835,0.2619351,-0.034100734,0.18156365,0.29932746,-0.4680675,-0.9495981,-0.558509,0.036463447,1.1256723,-0.14998217,-0.2732846,0.15258817,-0.10283857,-0.3884909,-0.030383341,0.23623195,-0.16045517,-0.0049269106,-0.6702073,0.12257974,-0.10607032,0.17871019,-0.0965797,0.04405916,-0.47042823,0.53444046,-0.06314641,0.65833974,0.29914588,0.17224449,-0.2206247,-0.3779953,-0.04850819,1.0362949,0.4693571,0.1277784,-0.20169538,-0.19088939,-0.31958544,0.040348265,0.09058785,0.53352916,0.70663846,0.1278168,0.06696987,0.054904938,0.0045837983,0.13896894,-0.17923385,-0.25504065,-0.04524288,0.06902448,0.5381586,0.4655785,-0.27027887,0.49479762,-0.17365691,0.39793068,-0.1312856,-0.491417,0.4571346,0.85929966,-0.29838914,-0.3244316,0.5231278,0.5730599,-0.26131836,0.2874472,-0.5866959,-0.4112196,0.3860857,-0.24603495,-0.24713482,0.36525294,-0.19185896,0.14782813,-0.92170537,0.3566167,-0.32596278,-0.4551863,-0.32827336,-0.14320157,-3.5996742,0.22095919,-0.11164273,-0.11939725,-0.15176629,-0.19667134,0.16730347,-0.55781865,-0.39117855,0.09581977,0.11210506,0.57634413,-0.0015874077,0.14076644,-0.14404921,-0.43271804,-0.11183867,0.29460168,0.017389886,0.39005265,-0.16479562,-0.45885074,-0.04688192,-0.19417636,-0.47668323,0.12065888,-0.669367,-0.46126226,-0.091195695,-0.5441342,-0.32043117,0.6008828,-0.38012466,0.058407776,-0.25627655,0.038466915,-0.10995005,0.20287019,-0.0015228912,0.05881109,-0.005072508,-0.07466085,0.17005962,-0.25801915,0.12494526,0.121935874,0.28197467,0.38298455,-0.025021926,0.20077282,0.50602,0.56836826,-0.023404844,0.7758681,0.38463572,-0.12704377,0.3831898,-0.20222774,-0.26537317,-0.6316732,-0.49934822,-0.048670348,-0.33889997,-0.26712582,-0.091620415,-0.3053419,-0.74090344,0.6167157,-0.019598573,-0.030167341,-0.084765546,0.44844276,0.4988338,-0.27071622,0.014804428,-0.08983956,-0.15974686,-0.45388392,-0.3106269,-0.6679993,-0.34103465,-0.06960145,1.157066,-0.3326465,-0.06418523,-0.0730318,0.04102951,-0.07096065,0.13192554,0.20049185,0.20608357,0.44367638,-0.35476294,-0.6114534,0.4403726,-0.3623554,-0.31187624,-0.2899813,0.17733333,0.5374782,-0.617303,0.43486923,0.42312056,0.1472333,0.046174124,-0.58345294,-0.026537925,0.09613629,-0.19401424,0.33304358,0.29225612,-0.8235501,0.5158567,0.2934343,-0.23617122,-0.6809951,0.64591753,-0.089271426,-0.44433123,-0.0014771484,0.4057707,0.12099845,-0.090511836,-0.28188384,0.17231992,-0.5051152,0.2633792,0.16212934,-0.038148932,0.2866384,-0.30028346,-0.16691259,-0.7090664,-0.060525596,-0.35929048,-0.45357984,0.20525813,0.07442574,0.11689471,0.118487485,-0.065692,0.4687509,-0.62440264,0.032478966,-0.044204246,-0.2679515,0.3895862,0.32816014,0.51396626,-0.30414605,0.45194897,-0.03161571,0.021666098,-0.077396676,0.1656821,0.5001634,0.0026373267,0.31670278,0.023950405,-0.16945738,0.3219824,0.66188437,0.28241313,0.48028642,0.00664822,-0.2782483,0.18737966,0.05152401,0.10604368,0.118709534,-0.3322817,-0.15187478,-0.13204053,0.12051256,0.59046435,0.1745393,0.2865821,-0.13794726,-0.15998293,0.07852009,0.24994077,-0.034726374,-0.9998122,0.29759112,0.11298844,0.6624196,0.43441835,0.13732915,-0.07829224,0.5480266,-0.32310307,0.20780629,0.28374398,0.02749221,-0.5081047,0.48785007,-0.62245214,0.39859354,-0.09704194,-0.016060358,0.14667656,-0.15423924,0.38539216,1.0391297,0.042380974,0.07209727,0.11112858,-0.40191442,0.0030593649,-0.31970865,0.018025182,-0.44005942,-0.25299135,0.7485254,0.43295035,0.32457507,-0.12515908,0.014994246,0.12421009,-0.14274925,0.0623557,0.038295776,0.44734502,-0.13127148,-0.55539155,-0.27591962,0.59509337,0.027063392,0.025443979,0.14125918,-0.30603588,0.36941367,-0.07310804,-0.015497319,-0.047503777,-0.53543687,0.09715715,-0.26234898,-0.3120916,0.34658134,-0.23574556,0.18737854,0.10878021,0.09656747,-0.3488757,0.341015,0.2642147,0.57465315,0.021865658,-0.24066357,-0.35863304,0.2611534,0.1503464,-0.28809184,-0.2123734,-0.27466294,0.22897848,-0.6458071,0.23899762,0.055975534,-0.18956093,0.055171933,-0.07429778,0.04882365,0.3464781,0.046219807,-0.06245204,-0.053969707,-0.025380768,-0.29407713,-0.13565844,-0.15441456,0.1711405,0.20953959,-0.2444736,-0.10432087,-0.033635627,-0.011999946,0.34100592,0.077648826,0.38081074,0.47697145,0.17253019,-0.4006669,-0.01677395,0.15057369,0.47500673,-0.19960791,0.02974265,-0.34704205,-0.37047747,-0.20361988,0.26734683,-0.28994086,0.21085837,0.20471567,-0.08067276,0.97802436,-0.083405375,1.1507212,0.08392388,-0.29965246,0.13027324,0.4141021,0.06921664,0.057642348,-0.4072528,1.1212467,0.5615003,0.018702019,-0.13425632,-0.26300943,-0.06096808,0.0697003,-0.26468354,-0.19553453,-0.102434814,-0.5728244,-0.34940594,0.25136524,0.16098124,0.23345283,-0.02067036,0.14937927,0.24069817,0.1515772,0.25223002,-0.5947392,-0.12973094,0.31807166,0.26168936,-0.11662132,0.18857503,-0.54193854,0.3870977,-0.62848157,0.0549308,-0.2617649,0.1520094,-0.16849227,-0.28870508,0.2205419,-0.022701517,0.35043353,-0.3749283,-0.32345292,-0.24539995,0.2917217,0.038253963,0.045333162,0.59757054,-0.25455597,0.16678327,0.050863106,0.5215932,0.90465367,-0.19989747,-0.11144165,0.42270252,-0.32350516,-0.6818217,-0.011872277,-0.24631718,0.2092887,-0.19186401,-0.15240031,-0.46561712,0.43216568,0.17997748,-0.019423373,0.011452043,-0.47050288,0.039373532,0.51786554,-0.35936004,-0.20190963,-0.20979379,0.28087252,0.74554145,-0.3179274,-0.31575057,0.03267587,0.29411113,-0.1356104,-0.613625,-0.012667857,-0.35884652,0.28134233,0.20847967,-0.32018137,-0.08919047,0.025305215,-0.31857675,0.14976388,0.51673704,-0.22443289,0.049926743,-0.44774586,-0.014446616,0.8562203,-0.07917392,0.14106254,-0.38420588,-0.54989946,-0.7904168,-0.39393967,0.33621913,0.13311608,-0.07774671,-0.6413522,-0.059918493,-0.19200464,-0.4491699,-0.10213144,-0.20057794,0.4538679,0.15457672,0.19959292,-0.060301915,-0.86663735,0.15804172,0.033081453,-0.18342793,-0.48993054,0.43991923,-0.13749692,0.9086578,0.11507535,-0.024597013,0.42568767,-0.5681301,-0.06423257,-0.3204435,0.01977292,-0.66735446,0.13686144 +338,0.4122613,-0.19398597,-0.6191717,-0.1567692,-0.57948446,0.17145906,-0.31865284,0.34016982,0.1669045,-0.21606337,-0.13918576,-0.06720222,0.0334887,0.38526943,-0.07210663,-0.54733133,-0.2427981,0.14479941,-0.85172486,0.48438478,-0.49179867,0.40053725,0.15274923,0.23480794,0.25684375,0.51157826,0.24442628,-0.017483557,-0.23695895,0.12590624,-0.11724714,0.1173373,-0.4358417,0.10660543,-0.23533513,-0.2872273,-0.04527014,-0.3222431,-0.184706,-0.59170014,0.15471762,-0.74421954,0.43941674,-0.2162813,-0.025699416,0.0502917,0.3318642,0.39000726,-0.37151003,0.15272897,0.24438463,-0.2300792,-0.15365888,-0.32631484,-0.14159511,-0.37491372,-0.3759586,-0.11065391,-0.67503536,-0.26455542,-0.10915891,0.2699544,-0.22523521,0.1961572,-0.02956523,0.23659195,-0.4646455,0.12507534,0.2324865,-0.18194816,-0.034834057,-0.4970992,0.014234873,-0.1328415,0.53399694,0.022210944,-0.17266452,0.41843107,0.24154565,0.30913287,0.31431714,-0.28570405,-0.3231903,-0.23754317,0.23035656,0.33990788,-0.12036772,-0.16029362,-0.1989199,-0.003845811,0.37932277,0.24217252,-0.03199174,-0.29290658,-0.041094076,-0.11460602,-0.24271926,0.3407054,0.44595546,-0.22792765,-0.2345754,0.3276179,0.48039514,0.22350104,-0.38283437,-0.0019766758,-0.09707782,-0.4415764,-0.13071921,0.13588628,0.11811037,0.40011716,-0.10993238,0.118355006,0.7947716,-0.115602955,-0.021213213,-0.07065385,0.062289204,-0.1846877,-0.25959685,-0.06092104,-0.027537528,-0.5530824,-0.049110733,-0.14562477,0.64637923,0.111982696,-0.75305647,0.32797518,-0.4723468,0.12569329,-0.11631462,0.4699866,0.6791695,0.40462878,0.14065844,0.7541996,-0.1985175,0.2694418,-0.20019655,-0.34262487,-0.052589044,-0.21370281,0.024497068,-0.5492035,0.23277803,-0.1214649,0.11214985,0.0828463,0.48776218,-0.42010555,-0.107173525,0.21098721,0.72826236,-0.40564847,-0.09222987,0.62727237,1.0436317,0.9093545,-0.011528967,1.1192037,0.39228013,-0.25933367,0.093753874,-0.49228,-0.40271008,0.16137569,0.30503306,0.11169953,0.32810804,-0.05493722,0.02694802,0.4162441,-0.33166152,0.06537309,0.04374234,0.25017998,0.15820971,0.037957687,-0.3275225,-0.14320002,0.15654793,-0.020503718,0.14287184,0.2700121,-0.28993392,0.40859103,-0.07102671,1.4809667,0.012523576,0.013207669,0.1336063,0.5558291,0.23047459,-0.11339086,-0.026244858,0.43167162,0.47760773,-0.12873152,-0.53881437,0.20638621,-0.33755776,-0.508724,-0.15700145,-0.45011118,-0.19321088,0.03987813,-0.5255967,-0.25014737,0.077426404,-0.27215183,0.37353218,-2.8585458,-0.30503827,-0.19077852,0.22812603,-0.33358246,-0.29877764,-0.2227194,-0.49310717,0.23648411,0.24643834,0.3519331,-0.52621573,0.583009,0.38515344,-0.4396999,-0.16011332,-0.57720476,-0.015956573,-0.034436017,0.42295462,-0.07982575,-0.03492948,-0.12611106,0.09739409,0.6569356,-0.16725641,0.22782099,0.5559511,0.33582345,0.15274017,0.6300013,0.08199797,0.5718502,-0.41493902,-0.2405721,0.31592005,-0.21651153,0.1873383,-0.035167053,0.11789964,0.51065296,-0.4379909,-0.83956695,-0.5743119,-0.15714885,0.9850605,-0.4626715,-0.36563084,0.25947505,-0.053240236,-0.1326184,0.11177458,0.51575863,-0.071616605,0.14551789,-0.6736889,0.19036284,0.050288383,0.19131206,0.021239476,-0.08398393,-0.24913254,0.6862416,-0.032827917,0.6043957,0.26895708,0.25045338,-0.115311444,-0.22091314,0.14623001,0.83909935,0.28016198,-0.0045852703,-0.1750061,-0.3297453,-0.18674208,-0.26538977,0.14118946,0.35433173,0.5389365,0.07451178,0.20275587,0.1978721,-0.11303015,-0.028613843,-0.18143384,-0.09472468,-0.034859452,0.1498544,0.4367964,0.603384,-0.034117192,0.5973212,-0.2029306,0.3890879,-0.12350607,-0.6381972,0.5409519,0.43159646,-0.21944681,-0.17402093,0.52989244,0.5782056,-0.29206324,0.41363117,-0.7013375,-0.40697742,0.6290742,-0.23110086,-0.35236335,0.18656245,-0.25596166,0.06701339,-0.72772384,0.14743304,-0.2289994,-0.3355953,-0.4032952,-0.32071975,-3.2425842,0.11370698,-0.0047433325,-0.1893723,-0.12420626,-8.0185775e-05,0.28630996,-0.6599277,-0.41849366,0.11005622,0.1879131,0.59982985,0.014813115,0.009969862,-0.25502726,-0.203467,-0.07155302,0.23150328,-0.029565763,0.31232905,-0.18168275,-0.52083766,-0.061055142,-0.07960339,-0.486881,0.17463693,-0.44258058,-0.35225415,-0.1087713,-0.28807202,-0.23177026,0.51914644,-0.39169496,0.0021370754,-0.31425086,0.05486981,-0.18794961,0.13883854,0.2237585,0.2017011,0.20938236,0.013969292,0.1473657,-0.38969457,0.37127662,-0.049337957,0.3093342,0.2864197,0.14442702,0.19188553,0.34987342,0.54758203,-0.17814058,0.9042266,0.32739273,-0.047225688,0.2930842,-0.15729606,-0.18745717,-0.55490303,-0.36364374,-0.20543724,-0.38612092,-0.44814733,0.0050179134,-0.33705524,-0.8010187,0.5769064,-0.033601467,0.22665776,-0.13781586,0.25066844,0.38744938,-0.23325913,-0.051762067,-0.0807493,-0.15129286,-0.44411996,-0.47275913,-0.59869534,-0.59456915,0.014217156,0.9801221,-0.24869728,-0.023693562,-0.15023942,-0.32106027,-0.028552823,0.21542951,0.15098555,0.39896047,0.4088475,-0.10098141,-0.7114424,0.42744985,-0.26704282,0.0014104071,-0.49270794,0.11433374,0.43761757,-0.57640284,0.50076437,0.3132652,0.2317715,0.08395665,-0.47658843,-0.17029908,-0.06985151,-0.21182524,0.49718392,0.21138608,-0.78639627,0.5637231,0.086094506,-0.40832824,-0.7527537,0.3211135,-0.015111485,-0.3056476,-0.06336047,0.326272,0.1590844,-0.13404283,-0.24000692,0.15539552,-0.41074058,0.27294853,0.3257602,-0.060040362,0.26437137,-0.13277057,-0.32007912,-0.59428895,-0.111323565,-0.2798569,-0.30685097,0.18739456,0.025561323,0.091602005,0.17117652,0.015304874,0.30351076,-0.23116265,0.0993991,-0.08522712,-0.25059915,0.2150984,0.36270618,0.3523084,-0.35441366,0.5070634,0.06257901,-0.18434298,0.06632655,0.025361545,0.33544812,0.09006647,0.38520768,-0.14689973,-0.25872353,0.4386623,0.55378354,0.21706943,0.2737789,0.04565022,-0.35867608,0.29728934,-0.009994478,0.055915404,0.0013876803,-0.42130986,-0.069344774,-0.0062520434,0.26059195,0.5104534,0.2009614,0.40442213,0.10241823,-0.0042018853,0.14816745,0.08530315,-0.040396065,-1.1935307,0.2873949,0.2768434,0.7729899,0.4066744,0.0073549044,-0.21452273,0.64272934,-0.3821755,0.050696667,0.36082894,-0.0571335,-0.36255002,0.62581396,-0.6369075,0.50513536,-0.1526032,-0.13617444,0.1802157,0.17122065,0.24866708,0.89159,-0.12251113,0.11066243,0.18776016,-0.3254629,-0.017687831,-0.1600882,-0.043286633,-0.51185274,-0.40832162,0.7190528,0.2565537,0.3845052,-0.16720992,-0.0919089,-0.018484892,-0.22179136,0.100177094,-0.055077933,0.11169118,0.106819965,-0.419327,-0.25711587,0.51086426,-0.01430847,0.20422405,0.009921022,-0.36722773,0.042980343,-0.20007756,0.020418601,0.0082852915,-0.53187525,-0.043316703,-0.15535699,-0.51960355,0.36656097,-0.18826768,0.23017663,0.12986867,-0.10427719,-0.19973382,0.38779318,0.08525443,0.758402,0.023969742,-0.19755742,-0.20300052,-0.05491785,0.3680402,-0.19079278,0.12087105,-0.42537975,0.03157439,-0.62824935,0.58692354,-0.13788275,-0.44494152,0.2920193,-0.18927962,-0.004813552,0.4696991,0.030986238,-0.09952984,0.0984254,0.084294304,-0.39137968,-0.116245106,-0.40511823,0.2374608,0.14934127,0.008321404,-0.067195736,-0.16707027,0.039341897,0.58597946,0.0034699598,0.41928017,0.26357102,0.019220976,-0.20756397,0.12128749,0.19651738,0.36695832,0.04707644,0.03656107,-0.41529918,-0.3758689,-0.3557425,0.24111602,-0.14863716,0.11001155,0.05410334,-0.24329048,0.8957939,-0.15983538,1.1349516,0.16120803,-0.32093573,0.21250737,0.40445787,-0.016847365,0.16066253,-0.32531276,0.68097633,0.57439756,0.0047500976,-0.142743,-0.3487893,-0.12712675,0.33638024,-0.33142185,-0.023241583,-0.043546773,-0.5635321,-0.5273782,0.14588629,0.043806423,0.1356157,-0.03415185,0.02012672,0.08627435,0.119660184,0.36047867,-0.6168076,-0.16317368,0.18301946,0.25464192,-0.12652464,0.26562032,-0.49002194,0.50042486,-0.72366667,0.059606805,-0.3374387,0.14745939,-0.084895864,-0.25839892,0.1405344,0.08995579,0.34554976,-0.2872235,-0.355464,-0.25562045,0.59175444,-0.050237473,0.21325988,0.51634943,-0.30539697,0.071476825,0.14870164,0.46716422,1.1255665,-0.5084717,0.034310993,0.33837858,-0.32562235,-0.5947211,0.30466154,-0.36416298,-0.05227763,0.007706488,-0.46469873,-0.2502483,0.40031168,0.101282164,0.109231345,0.14542973,-0.46554688,0.049777865,0.37716663,-0.22703299,-0.3000948,-0.12864892,0.25318074,0.66856825,-0.33845627,-0.2336659,0.074517824,0.34889817,-0.28859532,-0.3588004,0.037595153,-0.23095362,0.44134447,0.12312104,-0.11978315,-0.118842855,0.13811214,-0.40383917,0.042033643,0.36192498,-0.3824988,8.280838e-05,-0.23275498,-0.032704767,0.8453652,-0.10053263,-0.006670665,-0.702881,-0.4340173,-0.7890283,-0.42197374,0.07423956,0.18403842,-0.1248542,-0.42076993,-0.009364581,-0.07682953,-0.23563181,0.10388505,-0.5186236,0.441207,0.111750394,0.41718125,-0.15358904,-0.9215111,-0.06503879,0.019360589,-0.27575144,-0.5064532,0.5750111,-0.23371397,0.8161931,0.022409547,-0.10215564,0.031781208,-0.3793448,0.37275025,-0.4281873,-0.104642205,-0.69917464,0.039884195 +339,0.4687628,-0.3281843,-0.4725048,-0.15027617,-0.18062511,-0.057762668,-0.223626,0.33280116,0.18587913,-0.43860137,-0.09500602,-0.040475093,-0.05106326,-0.030915251,-0.1809824,-0.43369284,0.10727799,0.053138606,-0.60411286,0.69948906,-0.29810777,0.16688834,-0.14309457,0.30446026,0.2947935,0.36089882,0.019234793,-0.016676132,-0.0024307729,-0.15597501,-0.030444881,0.1864379,-0.60329837,0.29574716,-0.25993037,-0.23938291,-0.123692945,-0.40420607,-0.47139245,-0.7051559,0.28309664,-0.9683459,0.44411978,-0.020464692,-0.29681656,0.35403487,0.22191277,0.34601536,-0.352251,-0.11859382,0.30225104,0.058474064,-0.13322073,-0.09875346,-0.005396543,-0.5491055,-0.4609329,-0.08731417,-0.44480866,-0.07391011,-0.47633514,0.11745629,-0.3101513,-0.07194277,-0.08370013,0.5457489,-0.45911896,0.24174364,0.19296214,-0.05017334,0.42385852,-0.59317166,-0.10563245,-0.12133943,0.2476661,-0.049658395,-0.21540065,0.2794838,0.20244089,0.3674849,0.0496797,-0.12550016,-0.17143324,-0.041426104,0.23790549,0.31274095,-0.0892165,-0.4139043,-0.11738928,0.03154663,0.21082424,0.28941903,0.21880585,-0.27447692,-0.12445166,0.092570804,-0.17858028,0.5068439,0.55391884,-0.20414113,-0.15897904,0.24207298,0.58855796,0.21685217,-0.2591668,0.026306843,0.0044644177,-0.4523467,-0.23815782,0.11258361,-0.16987625,0.53395396,-0.12065781,0.31963062,0.6890326,-0.1119392,-0.0017122786,0.13062602,-0.0941708,-0.220395,-0.32410267,-0.25793213,0.18664159,-0.58939815,0.2591938,-0.26144382,0.6059846,-0.005992181,-0.65075225,0.3076864,-0.4771194,0.14761041,-0.066027716,0.43598855,0.74672866,0.41575634,0.31519204,0.7215342,-0.38326785,-0.027071023,-0.13440882,-0.3947887,0.18256949,-0.081414916,0.028120017,-0.5489145,-0.019126426,-0.08055345,0.023356851,-0.11376319,0.36426985,-0.412835,-0.13376373,0.03850349,0.87355906,-0.21091624,0.05364077,0.7922223,0.96540487,0.8973802,0.14524205,1.1422945,0.116558306,-0.13488293,0.15897848,-0.0919497,-0.6562579,0.2793357,0.40025902,0.38959312,0.17261718,0.072067834,-0.024875512,0.5366408,-0.42260978,0.19440313,-0.25351796,0.19054778,0.113410756,-0.23853837,-0.20949271,-0.16127442,-0.066218086,0.08248642,-0.032730475,0.15866056,-0.11205384,0.29216772,0.10753996,1.6272258,-0.0013842186,-0.0015032947,0.11530983,0.5484798,0.25029767,-0.21968238,-0.057647962,0.21503362,0.4431118,0.15485306,-0.5542688,0.076156855,-0.21507844,-0.43204376,-0.12192221,-0.4720308,-0.2073191,0.00066953304,-0.47226417,-0.16697854,-0.29797083,-0.27149898,0.39387882,-2.8977008,-0.17051032,-0.18153948,0.35997105,-0.29211503,-0.1369069,-0.045821097,-0.44591185,0.46286693,0.32014492,0.4811191,-0.6664444,0.5992278,0.4807186,-0.65425414,0.043310363,-0.59003574,-0.16473344,-0.021750612,0.46181148,0.0728723,-0.09227456,0.10264961,0.22208163,0.5078932,0.17815161,0.17002216,0.38347617,0.466299,-0.21766336,0.60569495,0.01948681,0.3330305,-0.19527133,-0.11256058,0.24354322,-0.2826334,0.34026095,-0.043988775,0.16312341,0.54236245,-0.45758292,-0.89573616,-0.7342344,-0.12786306,1.1113706,-0.22295618,-0.5066919,0.21691865,-0.65311515,-0.25687093,-0.1779725,0.49112102,0.056820434,0.029177273,-0.85079676,-0.011279043,-0.13173588,0.035125617,-0.015674481,-0.19780043,-0.5162259,0.91777253,-0.014104865,0.6474637,0.3268004,0.15443555,-0.27414244,-0.34193322,0.14357358,0.70631015,0.43112895,0.09044709,-0.24232762,-0.21838108,-0.41252902,-0.16210088,0.14064345,0.75407946,0.48800257,-0.06333819,0.22414859,0.2975609,-0.12799163,-0.057910506,-0.23591618,-0.2144401,-0.2473902,0.008473432,0.5074113,0.6414622,-0.10000534,0.29971507,-0.052918043,0.13238603,-0.17175181,-0.47650397,0.5311209,1.0137455,-0.14284915,-0.26763397,0.49218184,0.5368568,-0.124176756,0.36769983,-0.5301424,-0.2058545,0.45365307,-0.16459641,-0.41300339,0.21558285,-0.46286708,0.058742926,-0.74868655,0.19894356,-0.44052586,-0.50079125,-0.39608815,-0.16875622,-3.2097123,0.20895156,-0.25824133,-0.20169654,-0.28969696,-0.39545146,0.27768338,-0.5549205,-0.5603429,0.24457766,0.003165402,0.85911936,-0.043839335,0.05812169,-0.2557348,-0.24415572,-0.3470974,0.09088543,-0.0139958775,0.34257177,-0.22350441,-0.4378158,-0.27787125,0.043963615,-0.39330953,-0.020603104,-0.42675367,-0.31000963,-0.13089083,-0.32855988,-0.19470535,0.56790507,-0.033469193,0.076231904,-0.20973554,-0.13511978,-0.20805931,0.3368864,0.18925504,0.13364355,-0.04842615,-0.081096694,0.052139897,-0.31928736,0.26570505,0.059598207,0.3368906,0.24916294,-0.17545113,0.20195551,0.41814214,0.52205676,-0.18499668,0.8749448,0.3708984,-0.10044333,0.3615628,-0.07883553,-0.29784945,-0.6920341,-0.26887357,0.021181086,-0.39128277,-0.44383934,-0.038431942,-0.4247701,-0.71262157,0.39283946,0.06669632,0.28866374,-0.014845748,0.14977442,0.5051817,-0.16757545,-0.11259051,-0.01933812,-0.19339137,-0.55053383,-0.24959205,-0.5556438,-0.34712029,0.052552547,0.8220311,-0.20169732,-0.051761437,0.15194245,-0.2746727,0.16048694,0.23814347,-0.09945255,0.18273538,0.42254865,-0.12419179,-0.6279234,0.49075642,-0.06164359,-0.24706574,-0.5821294,0.37012964,0.53717405,-0.5367006,0.61601394,0.22849631,-0.052457564,-0.38114062,-0.54164505,-0.09909666,-0.22571668,-0.2648631,0.4848329,0.2232932,-0.8210824,0.31138983,0.4082944,-0.108616255,-0.6930645,0.7409591,-0.073177576,-0.2219548,-0.118687786,0.20881945,0.12297282,-0.058126487,-0.16554204,0.31889874,-0.34998885,0.30076462,0.16514018,-0.06966016,0.15873769,-0.09754713,-0.08523096,-0.6216429,-0.08510732,-0.48585236,-0.20250776,0.26383632,0.040481694,0.018535951,0.1715871,0.058168314,0.36576575,-0.20741664,0.14562657,-0.060228,-0.28666323,0.34553385,0.44785148,0.51333326,-0.51121527,0.6629575,0.05422377,-0.14328645,0.10659169,0.3264297,0.34580675,0.11172156,0.4754252,-0.0957869,-0.12604398,0.2925924,0.832792,0.22058381,0.57160693,0.14883518,-0.06482873,0.18118411,0.14014766,0.30255958,-0.0896167,-0.66655385,0.084613174,-0.2492945,0.2226332,0.37569234,0.124752834,0.20238107,-0.008891416,-0.2684445,-0.13233882,0.27500814,-0.03166524,-1.4423958,0.41652054,0.29315117,0.97676045,0.51733154,-0.052326616,-0.09374353,0.75044215,-0.080237225,0.085668534,0.33428568,0.13310577,-0.55485916,0.572112,-0.6792063,0.3584345,0.07156824,-0.040871415,-0.034924053,-0.013811214,0.33011016,0.6404198,-0.20562601,-0.015186922,-0.026225297,-0.3928007,0.35682997,-0.364007,0.029199896,-0.43794486,-0.39648244,0.6123014,0.5317743,0.3653495,-0.21894462,0.041092966,-0.014385984,-0.12316321,0.13543867,0.16339651,0.08282541,-0.16529551,-0.73965806,-0.17667468,0.35027292,-0.16128717,0.24500056,0.06067476,-0.2900335,0.21832663,-0.20746951,0.07909326,-0.04020884,-0.7609306,0.07073254,-0.2892564,-0.29190984,0.6454751,-0.08181168,0.20899901,0.25068825,-0.022139125,-0.14332813,0.33964863,-0.19718036,0.62720007,-0.031882126,0.01563133,-0.4988307,-0.037452046,0.1590168,-0.25248262,0.00115211,-0.26119873,0.061051305,-0.7622764,0.48422286,0.093593955,-0.3716849,0.21905638,-0.13234018,0.084513105,0.59011024,-0.2447359,-0.18087676,-0.010083048,-0.07000678,-0.32120425,-0.40751463,0.041635655,0.30876064,0.23184274,0.21405996,-0.15319782,-0.046117987,-0.031681787,0.38973218,0.050214496,0.38853297,0.33096626,0.07177385,-0.35944685,-0.14915232,0.28257892,0.518252,0.036589496,-0.09163788,-0.29701865,-0.60024315,-0.38309675,0.2242307,0.01867547,0.42583802,0.014094595,-0.062392283,0.6975423,-0.11732486,1.0197645,0.12902309,-0.31599107,0.16269821,0.6108441,-0.09260593,-0.17682473,-0.15072575,0.6116343,0.531632,-0.0591221,0.038429268,-0.40558204,0.038560238,0.14792575,-0.2120684,-0.018761761,-0.039379254,-0.6255956,-0.10896812,0.13068618,0.30398387,0.15848097,-0.19595107,-0.04102409,0.2700461,-0.06267782,0.24551259,-0.5269722,-0.28438577,0.24415062,0.07326908,-0.052286975,0.037336454,-0.46566582,0.41819477,-0.51031846,0.12510486,-0.23612252,0.079346165,-0.25802383,-0.28216925,0.2385785,-0.12529986,0.30449206,-0.34490356,-0.36114967,-0.24032177,0.39628226,0.3119818,0.18830504,0.58813375,-0.19734968,0.08408868,0.13204561,0.46677297,0.81874454,-0.22472446,-0.08903793,0.3444331,-0.5001552,-0.5834524,0.32456857,-0.3989612,0.279321,0.15340897,-0.21329546,-0.41636387,0.29230988,0.28328425,0.095613584,-0.0015440643,-0.87001127,-0.27639267,0.21579498,-0.1944306,-0.14926702,-0.3516593,0.011352476,0.49114722,-0.23121971,-0.20498565,-0.005252306,0.08144882,-0.095047645,-0.48783857,-0.035940815,-0.38478488,0.314102,-0.08470558,-0.37944126,-0.07279111,-0.014882803,-0.44085425,0.28032342,0.01123476,-0.32986048,0.043690007,-0.35896778,-0.18699507,0.90682274,-0.22433424,0.113049015,-0.3107951,-0.326753,-0.6691521,-0.33596832,0.14126155,0.1666996,0.061300613,-0.5332043,0.018122546,-0.08575228,0.09906602,-0.11206896,-0.4015292,0.50475687,0.102560475,0.4662598,0.0063608726,-0.7072627,0.25080433,0.10478377,-0.13692679,-0.5309251,0.6538452,-0.15686011,0.62460315,0.086376086,0.16498521,0.08225448,-0.53305346,-0.04317147,-0.23591797,-0.16151981,-0.5988088,-0.021895317 +340,0.5374982,-0.1569744,-0.5738089,-0.13514352,-0.2255387,-0.055583645,-0.17691877,0.61396873,0.17771862,-0.45563763,-0.06594219,-0.13466589,-0.03199487,0.38727817,-0.14384912,-0.6593915,-0.07759872,0.0964347,-0.54363286,0.48600394,-0.4380411,0.186434,-0.08555543,0.44871098,0.22776939,0.3014164,-0.052942917,-0.05648671,-0.080787696,0.0011901706,0.09701577,0.100097045,-0.68651116,0.08361436,-0.10157156,-0.392454,-0.1390262,-0.51960516,-0.41141802,-0.75572914,0.37117332,-0.7192755,0.51210225,0.055744864,-0.22918579,0.01772958,0.0065906383,0.4483801,-0.28277653,-0.003086187,0.106729396,-0.0099784285,-0.00031088293,-0.10674423,-0.18583064,-0.2607861,-0.55068445,0.044488557,-0.38594562,-0.14527684,-0.06518297,0.045215275,-0.30149797,0.0920794,-0.10247111,0.5186775,-0.3820355,-0.052894056,0.45911926,-0.09537995,0.30749625,-0.46413213,-0.06367393,-0.17553115,0.2525088,-0.18248196,-0.33924985,0.3950156,0.15248969,0.50392133,0.03785745,-0.32237554,-0.28378665,0.008020431,0.17027837,0.4187185,-0.31401405,-0.45130664,-0.12637344,0.088967845,0.13322663,0.21643433,0.1694883,-0.27960777,-0.15014932,0.12668952,-0.19891153,0.33686662,0.56535226,-0.17186396,-0.3067302,0.24256259,0.5792286,0.22898135,-0.03842303,0.1934515,0.1203171,-0.60592127,-0.3025927,0.10955398,-0.07162394,0.2590987,-0.08203316,0.21805526,0.72948474,-0.25454846,0.060549207,-0.045004733,-0.12703753,-0.0021803528,-0.40381324,-0.34741357,0.21148133,-0.42613196,0.2889282,-0.13741136,0.784644,0.24849313,-0.81257945,0.244178,-0.68741363,0.18174314,-0.21284103,0.56949794,0.8035209,0.4438437,0.22258888,0.7085111,-0.40021697,0.20925052,-0.11618219,-0.34439456,0.070405774,-0.22024676,-0.014114283,-0.3864832,0.00994505,-0.1319988,-0.14703166,0.15377866,0.19468763,-0.5360964,-0.08609586,-0.0016985629,0.85558516,-0.2903066,-0.043961585,0.79200083,0.83797944,0.92920375,0.15289477,1.0975561,0.21471255,-0.25260493,0.408292,-0.22676553,-0.92213356,0.3831539,0.26644456,-0.10641527,0.2826931,0.053783305,-0.06978202,0.41803133,-0.39205816,0.24410799,-0.2310057,0.21889737,0.1425367,-0.33470333,-0.21635596,-0.19100499,-0.1419815,-0.039204128,-0.059503913,0.2453951,-0.15814663,0.33237857,-0.040430892,1.8295555,0.08072075,0.11058675,0.08559807,0.48579842,0.16062315,-0.19305569,-0.1831169,0.12719959,0.35232174,0.12946975,-0.5912903,0.15696898,-0.17354004,-0.46471682,-0.13596475,-0.34777695,-0.01594117,-0.30648255,-0.4899587,-0.18214533,-0.13091177,-0.08949603,0.3635041,-2.5577912,-0.22979274,-0.028402783,0.30903673,-0.31359148,-0.31698108,-0.1755209,-0.48003033,0.43715757,0.34754813,0.4120468,-0.6445106,0.5435105,0.39411643,-0.5301697,-0.028508725,-0.62511146,-0.20254692,0.15363464,0.12259179,-0.0015524104,0.016866237,-0.010358579,0.13363142,0.46207762,-0.15866582,-0.040615402,0.21901889,0.38605937,0.051517516,0.5242357,-0.1295561,0.5812569,-0.41612536,-0.20720217,0.28287363,-0.3976431,0.10992458,0.0918802,0.06647638,0.31886733,-0.5574237,-0.9862287,-0.6564143,-0.23409177,0.9637566,-0.11019326,-0.31347483,0.30069026,-0.4086877,-0.16182208,-0.14813836,0.4171299,-0.038336348,-0.04218044,-0.8581822,-0.047132023,-0.21604718,0.21848215,-0.012740953,-0.0025916193,-0.3344173,0.5414924,-0.11221254,0.48048115,0.45259565,0.15765196,-0.1766367,-0.5257673,0.14883167,0.9076756,0.2707683,0.19551165,-0.31083417,-0.1432962,-0.397178,-0.038391117,0.026047979,0.47369337,0.8299891,-0.12715048,0.1974329,0.24504393,-0.028145295,-0.019030832,-0.091178596,-0.3053538,-0.1518732,-0.11826022,0.5430417,0.7063383,-0.2637635,0.48494786,-0.045231137,0.46085197,-0.18495406,-0.39515424,0.54252946,0.7768482,-0.17526394,-0.30172852,0.50695133,0.2921263,-0.3095997,0.46651927,-0.52034175,-0.15807974,0.4306833,-0.14753185,-0.35809135,0.31531113,-0.31067953,0.1557641,-0.99528503,0.30816942,-0.3308446,-0.22862741,-0.5654056,-0.22074765,-3.0638106,0.13340606,-0.20014352,-0.22436792,-0.113426775,-0.068310335,0.18532875,-0.53024876,-0.7328658,0.07943588,0.06001709,0.7830064,-0.080519974,0.13907579,-0.20811465,-0.14495699,-0.35626772,0.057573713,0.2684447,0.3101433,0.029462665,-0.47490993,-0.29675174,-0.17915346,-0.5248377,0.19954675,-0.5353439,-0.50001115,-0.15047485,-0.5122545,-0.30690968,0.73050094,-0.1744321,-0.051361144,-0.13745922,-0.075784,-0.04949576,0.4714761,0.16387813,0.08161456,0.15237041,-0.0719704,-0.041368622,-0.24290696,0.13548926,0.03182042,0.4089855,0.21363142,-0.19967899,0.292734,0.5654792,0.8470549,-0.11487935,0.6929219,0.5766893,-0.086749256,0.409958,-0.3664053,-0.34426332,-0.45101783,-0.22592081,0.038655587,-0.3580659,-0.51177365,0.01575447,-0.41225266,-0.76236105,0.5027045,-0.0821743,-0.054456495,0.04747537,0.10655588,0.360676,-0.2452591,-0.0942703,-0.11659195,-0.02489125,-0.50982326,-0.20788349,-0.50380236,-0.58803725,0.048173912,1.2562605,-0.12119748,0.0077357106,-0.009973913,-0.26598108,0.016378637,0.03007792,0.01725354,0.26880983,0.39632002,-0.13009131,-0.5925338,0.4575322,-0.1919098,-0.29474708,-0.6672596,0.09803299,0.68284225,-0.62801516,0.47443062,0.15149513,0.11447207,-0.072198994,-0.49808443,0.015098989,0.0471133,-0.14970842,0.40679848,0.14569908,-0.7560986,0.46609735,0.49327022,-0.23353542,-0.7072707,0.35376447,0.08159457,-0.30397332,-0.072170444,0.31732818,0.05514978,0.06054967,-0.1468623,0.21896087,-0.3764312,0.09059636,0.30438334,-0.10478188,0.29838246,-0.15794766,-0.12143954,-0.67486703,0.08638116,-0.52687514,-0.20782317,0.286343,0.011785952,0.19158325,0.089189306,0.23618591,0.4197269,-0.30508003,0.048004776,-0.13761753,-0.22245677,0.27170187,0.44895667,0.46624994,-0.5472317,0.5311624,0.009385949,-0.07474442,0.08320412,0.12786178,0.5304498,-0.07737001,0.327204,0.047705196,-0.20811701,0.19769853,0.81633365,0.08505437,0.3440309,0.06995067,-0.24168894,0.20623623,0.18794402,0.00999943,0.10158917,-0.47815144,0.098723486,0.011606444,0.18236938,0.5184882,0.1667696,0.2326195,-0.03375617,-0.2527588,-0.13689476,0.2282458,-0.08212571,-1.4844834,0.495217,0.15013435,0.8563999,0.47647864,0.07501026,0.1903012,0.55247885,-0.14671877,0.20366754,0.33652204,-0.16633224,-0.54918396,0.49073303,-0.6326308,0.545241,0.014487732,0.031223705,0.0723954,-0.043860115,0.6399853,0.75412273,-0.0793431,0.0208712,0.021151353,-0.23463461,0.15362675,-0.46155703,-0.088615224,-0.49746794,-0.26767364,0.73126835,0.39438164,0.22793418,-0.21159868,-0.010099843,0.14337584,-0.04692152,0.16302292,-0.16673413,0.08885998,0.059251167,-0.5855497,-0.38082904,0.5689191,-0.12391097,0.16558884,-0.05114471,-0.22490577,0.26411587,0.003911257,-0.030581027,-0.16393703,-0.72831374,0.036818627,-0.45769176,-0.29013997,0.3325876,-0.073425785,0.26777238,0.20815179,0.11651739,-0.40789568,0.61957186,-0.11032204,0.8369831,-0.16661605,-0.20734066,-0.3418824,0.2746389,0.27563846,-0.27961892,-0.08898184,-0.23459709,-0.003832791,-0.41547105,0.42574376,0.0004050266,-0.45703396,0.1926685,0.011230099,0.055116717,0.38350058,-0.21338359,0.00093242526,0.0396175,-0.16434613,-0.2095035,-0.16840118,-0.11273205,0.23959248,0.3157655,-0.03605044,-0.045753516,-0.06235365,0.05881352,0.5683215,-0.023297567,0.38669556,0.37346923,0.25253135,-0.43416157,-0.15639713,0.2502711,0.48127162,-0.037842263,-0.12465013,-0.4019767,-0.29124284,-0.31455636,0.29706421,-0.21856692,0.40758398,0.0677121,-0.43711,0.7179357,0.13527998,1.2866157,0.081546396,-0.32687506,0.18583812,0.31816274,-0.009103069,0.009928508,-0.53979504,0.8119726,0.47375602,-0.19953874,-0.19847254,-0.25115493,-0.12703998,0.120279215,-0.19245397,-0.16108932,-0.08272539,-0.5359747,-0.2805634,0.2795963,0.18795037,0.19006594,-0.08760574,0.025538668,0.16498247,-0.017088056,0.123726696,-0.43189391,-0.08566764,0.16465503,0.2647799,0.024938956,0.024756923,-0.56363815,0.4043999,-0.41413137,0.10132455,-0.23894116,0.2118429,0.0033514611,-0.30014873,0.17611496,0.010655396,0.4065007,-0.32231253,-0.30672953,-0.18793705,0.50631434,0.14063299,0.2342266,0.72646815,-0.2843399,0.15941435,-0.03480553,0.5361414,0.90072954,-0.2259807,0.0120517835,0.38832834,-0.15456566,-0.4868914,0.3339731,-0.23193662,0.15367337,-0.10027383,-0.14660746,-0.5737253,0.27223742,0.2799733,-0.038311414,-0.048151784,-0.6900945,-0.3601582,0.32697427,-0.2290556,-0.31375623,-0.47719193,0.1267439,0.73587054,-0.1664614,-0.20649034,0.26843002,0.20030932,-0.09904176,-0.37882394,-0.07320529,-0.34340245,0.22748682,0.052631777,-0.29641747,-0.04363905,0.17203678,-0.46987233,0.13059756,0.15547378,-0.33336765,0.015165804,-0.2195079,-0.13807698,0.9449166,-0.20041446,0.25686133,-0.54198873,-0.5437132,-0.9279634,-0.34218097,0.554414,0.20859513,-0.015353441,-0.7171239,-0.18753356,0.073330425,-0.16576383,0.010569453,-0.29985136,0.42721483,0.04190692,0.34181976,-0.13292836,-0.6651222,0.07168925,0.12351983,-0.23152843,-0.61075515,0.54005456,0.051695988,0.86151016,0.009772077,0.09054083,0.29945445,-0.4339964,-0.10087179,-0.23111327,-0.17894697,-0.6376392,0.037651666 +341,0.48052213,-0.27074152,-0.2918791,-0.14550574,-0.14510989,0.12731616,-0.18336293,0.42999455,0.086671345,-0.68383294,-0.14744633,-0.16271451,-0.043289304,0.32964104,-0.1715467,-0.3971807,0.06297644,0.026983283,-0.36861095,0.60263187,-0.4769048,0.25158554,0.06837142,0.344808,0.08441551,0.15112615,0.28157577,0.0008603374,-0.13035049,-0.2143813,-0.11722051,0.10177865,-0.50855595,0.25065038,-0.18767451,-0.47627994,-0.13233514,-0.34684607,-0.3393364,-0.60305077,0.24385363,-0.95062983,0.36609456,-0.06318817,-0.28039023,0.2957359,0.07158895,0.22848208,-0.1935357,0.013671947,0.053134307,-0.13116162,-0.019673824,-0.15646133,-0.082388215,-0.30055264,-0.54553086,0.035411634,-0.47111928,-0.3104316,-0.23137161,0.11079902,-0.3264423,0.0045930822,-0.07864884,0.57240844,-0.46501598,-0.018028926,0.07346358,-0.10584025,0.44464093,-0.61355287,-0.21145764,-0.05400704,0.18954974,-0.217671,-0.17659998,0.23424062,0.22102931,0.5846326,-0.013058305,-0.010358155,-0.32696924,-0.10541784,0.36863008,0.52013695,-0.08944004,-0.5802901,-0.13946487,-0.047123518,0.15444928,0.14524259,0.18586715,-0.39489555,-0.09985914,0.15082748,-0.14594717,0.32595274,0.54373616,-0.24269815,-0.2884031,0.27041528,0.49687073,0.004033454,-0.1905048,0.07246321,-0.011074054,-0.38737065,-0.12813197,0.13772745,-0.09662395,0.62717235,-0.066229485,0.36300305,0.5351599,-0.1377395,0.06831352,-0.074467346,-0.12507653,-0.19888644,-0.1960284,-0.1427311,0.115063176,-0.32838717,0.19768329,-0.26201352,0.76379126,0.114707604,-0.8493197,0.38323852,-0.5002528,0.026799444,-0.15249684,0.51998615,0.572692,0.22417389,0.19792798,0.6561262,-0.48379526,0.014093908,-0.17118874,-0.303825,-0.22277944,-0.2039738,-0.054309767,-0.45548964,0.0302824,0.14352223,-0.09265398,-0.05245013,0.3190637,-0.3492737,-0.073588766,0.09318217,0.7065122,-0.31259543,0.04107576,0.8702184,1.0999074,0.9253338,0.15757184,1.1370374,0.2570473,-0.15609612,0.16532832,-0.11583435,-0.6039435,0.2831832,0.42814904,0.7416413,0.20684004,0.022126103,-0.035164777,0.38161576,-0.54678893,0.22130544,-0.16267477,0.18053386,0.18072207,-0.14307033,-0.43501338,-0.06999025,-0.025827928,-0.007933903,-0.0034642934,0.13531463,-0.13358536,0.41579714,0.13111863,1.5941002,-0.23863935,0.12622435,0.12375216,0.4980888,0.15287778,-0.19086987,0.059446868,0.17272186,0.41226763,-0.07156661,-0.6492233,0.14131418,-0.09856244,-0.59510124,-0.25003403,-0.40749672,-0.08931054,-0.018256597,-0.485828,-0.21432787,-0.07207635,-0.34087473,0.35058412,-2.815593,-0.267265,-0.23763375,0.3243133,-0.36669767,-0.2703664,-0.09271067,-0.38063413,0.56102914,0.37768987,0.36257085,-0.703538,0.38014665,0.47222665,-0.27938688,-0.11132552,-0.5850042,-0.06053656,-0.11340192,0.45691472,0.030031037,-0.13195035,0.08443182,0.1419876,0.5897711,-0.010106425,0.121686526,0.20810969,0.21072201,0.024136985,0.40923414,0.013061595,0.37113583,-0.2758199,-0.04355015,0.34828076,-0.18869391,0.049381927,-0.056300435,0.23367064,0.31223705,-0.45171908,-0.71587265,-0.78905886,-0.44161704,1.1639458,-0.19763409,-0.56168705,0.32469252,-0.22434518,-0.18386902,-0.17048715,0.3936676,-0.04195819,0.11875956,-0.8179649,0.037113864,-0.12304447,0.11028353,-0.04725292,0.0014828086,-0.4530421,0.70279574,-0.123443745,0.63942504,0.4401168,0.27609983,-0.14953762,-0.38449907,0.06701479,0.97803783,0.37030876,0.15689084,-0.2327866,-0.2298937,-0.231765,-0.23117615,0.15711123,0.55314624,0.777477,0.022162847,0.14017826,0.27076235,-0.08286739,0.04530982,-0.078019835,-0.10721703,-0.14449158,0.03594578,0.5790097,0.451449,-0.25461623,0.51586694,-0.25604114,0.16016175,-0.20198098,-0.35461038,0.50693595,0.6933365,-0.16601358,-0.18778501,0.52199066,0.4299246,-0.34441954,0.3432311,-0.6695031,-0.11543829,0.47697732,-0.23104769,-0.4134811,0.21177833,-0.36856386,0.20969804,-0.9332675,0.28314188,-0.28890905,-0.48874518,-0.55607253,-0.28628194,-3.085225,0.08678732,-0.13904287,-0.33104113,-0.050644774,-0.44620928,0.24549977,-0.50947964,-0.45476335,0.16558535,-0.007379615,0.64169717,0.07245319,0.15899605,-0.25620857,-0.023347605,-0.33003604,0.11935449,-0.026061527,0.36171043,-0.013716072,-0.31799445,0.026241994,-0.15706116,-0.54146546,0.044248056,-0.2815933,-0.47492105,-0.18759279,-0.19335529,-0.32928413,0.59198034,-0.30887446,0.09699813,-0.21195951,-0.17720196,-0.26815477,0.45828134,0.20869909,0.098320924,0.08799951,0.056772307,-0.037905287,-0.29364374,0.19860567,0.0030317504,0.054095365,0.50124556,-0.30126494,0.21431047,0.38353586,0.51179963,-0.013158763,0.5875932,0.50822467,0.008216079,0.2519575,-0.33145866,-0.26490888,-0.5055219,-0.33600956,-0.003940475,-0.34075013,-0.6496135,-0.109624006,-0.28655702,-0.7733482,0.4189207,0.05693727,0.20140384,0.0020941237,0.12612131,0.39548352,-0.13577121,-0.19049703,-0.09387687,-0.017237421,-0.64615077,-0.3794449,-0.6748828,-0.5682067,0.014492357,0.8479,-0.018604103,-0.25972694,0.068206824,-0.23693374,0.052023787,0.15039802,0.08270096,0.057197127,0.2632704,-0.088251665,-0.7190544,0.5760118,0.021981992,-0.37663138,-0.5930449,0.2210121,0.61352545,-0.44818884,0.30574292,0.22897871,0.06263246,-0.19075057,-0.4459748,-0.10817954,-0.073257364,-0.2387365,0.40710706,0.0864817,-0.80257,0.42826167,0.39827356,-0.015311357,-0.72386384,0.51822466,0.061210837,-0.12845252,0.013000679,0.23655492,0.15707614,-0.07292611,-0.22142018,0.20745936,-0.54233867,0.27736658,0.27252927,-0.00079010526,0.4153476,-0.19661659,-0.09662983,-0.58719355,-0.04797641,-0.5691312,-0.14322285,0.017271014,0.14985695,0.22415464,0.23115775,-0.09332095,0.45951283,-0.2701545,0.14789225,-0.00039553244,-0.18006277,0.2599482,0.34934938,0.3230667,-0.41332635,0.6610319,0.0035887936,-0.008486271,-0.10722084,0.12841225,0.43274525,0.35757577,0.23207475,-0.1340916,-0.20150532,0.231392,0.79001313,0.3388084,0.44762674,0.24200198,-0.2428843,0.40683854,0.10992948,0.23467611,-0.03459924,-0.40540114,0.004053529,-0.12670109,0.10704699,0.30995423,0.18026188,0.3963618,-0.06487935,-0.21968459,0.07471243,0.15935189,-0.20337994,-1.2711487,0.32948208,0.14875314,0.83250564,0.56625926,-0.18001814,0.12083855,0.5156434,-0.19333951,0.16117388,0.19819051,0.05826634,-0.43758056,0.58744645,-0.73098576,0.3211682,-0.058146976,-0.0463862,-0.08888904,0.06498407,0.31221396,0.5950682,-0.07903312,0.23910135,-0.04713749,-0.22714655,0.18694538,-0.432047,0.08209013,-0.36137098,-0.22236449,0.6353503,0.4812064,0.31235597,-0.13860893,-0.028019527,0.14575131,-0.012746771,0.11528868,0.044159673,0.14207046,-0.014434991,-0.56577873,-0.3134821,0.4435891,-0.20913297,0.13590689,0.020622082,-0.40207,0.22595833,0.075611316,-0.21132085,0.12774482,-0.64056194,0.07081828,-0.28500775,-0.35932383,0.46927422,-0.19538306,0.25674897,0.15524822,-0.03922019,-0.24184948,0.08154114,0.16449326,0.6226637,0.08642915,-0.08288664,-0.37506047,-0.045369364,0.282269,-0.16410877,-0.103578135,-0.065482266,-0.02465212,-0.57424283,0.41561934,-0.042877503,-0.16941299,0.4431538,-0.072440036,0.023165138,0.55436355,-0.11598543,-0.18042704,0.16111352,-0.2131978,-0.24972291,-0.25671995,-0.10120964,0.40709835,0.09776254,0.017426658,0.14641072,-0.028847916,-0.0072058914,0.33682072,0.030795176,0.44653985,0.3258429,0.011504211,-0.43426648,-0.17596012,0.20761506,0.34602165,0.124026604,0.021815216,-0.12938918,-0.5396291,-0.2746269,0.07094795,-0.10458803,0.22276637,0.10192892,-0.39022127,0.61810887,0.08784895,1.0000937,0.109140225,-0.33089092,0.15960269,0.26414543,-0.0012669245,0.016950488,-0.3489256,0.7236384,0.5127229,0.016351143,-0.07720127,-0.26517373,-0.079864964,0.2877472,-0.18874818,-0.096499905,-0.06318543,-0.7162091,-0.29595953,0.13290499,0.25003126,0.058135964,-0.07504853,0.045446537,0.15243517,-0.031590704,0.35697412,-0.39140034,-0.019384913,0.36923298,0.21070354,-0.0144627215,0.013459015,-0.38672465,0.3315182,-0.543151,0.02109514,-0.22062431,0.08441689,0.045379184,-0.17047843,0.15359548,0.05859352,0.3207196,-0.14694712,-0.3684526,-0.25273314,0.5399223,0.017455865,0.07267405,0.46429756,-0.20276956,0.21171974,0.009960502,0.3671357,1.1933692,-0.16486305,0.053805135,0.26585606,-0.3564938,-0.52135795,0.36132553,-0.2979352,0.36510518,-0.06774894,-0.16241506,-0.55578554,0.22995453,0.2808362,-0.12420606,0.13024533,-0.49144867,-0.41537017,0.4063018,-0.35108328,-0.18511483,-0.39550495,-0.07751196,0.5349821,-0.34354076,-0.08763536,0.042725336,0.29891363,-0.25010818,-0.4832881,0.03428379,-0.21927585,0.26417476,0.095889874,-0.32094306,-0.13057633,0.18089868,-0.40924984,0.05913566,0.07089578,-0.34270903,0.04404601,-0.3859041,-0.03529698,1.0152878,-0.08532162,0.1279557,-0.6329817,-0.49877983,-0.81529826,-0.52605844,0.45491728,0.14477031,0.04414517,-0.4566532,0.009453169,-0.056142807,0.0801009,-0.08869658,-0.37193853,0.4636336,0.12801678,0.38062245,0.023861255,-0.54885215,0.05957481,0.044545032,-0.10558395,-0.44503498,0.49715108,0.19193888,0.7139315,0.07376353,0.102287225,0.14477219,-0.53802204,0.04652055,-0.19179717,-0.2856247,-0.5828709,0.10268308 +342,0.39148328,-0.31420752,-0.5052677,-0.15840761,-0.4776012,0.17626747,-0.2429112,-0.01179151,0.09667798,-0.4530015,-0.2006402,-0.43075064,-0.036471684,0.39964804,-0.14380732,-0.48593634,-0.07817312,0.27787873,-0.68214184,0.45430157,-0.40766868,0.23375645,0.10268634,0.42323568,0.10045,0.2194471,0.17979726,-0.058066197,-0.36100462,-0.11054872,-0.06115749,0.16433048,-0.8789382,0.38964313,-0.38307175,-0.30812326,-0.06147313,-0.5988073,-0.23024975,-0.8218509,0.37389788,-1.0210187,0.5674827,-0.05439644,-0.27309936,0.05913077,0.21174489,0.31486443,-0.19422273,0.05561256,0.34901568,-0.49003056,-0.31343108,-0.19456863,-0.36358124,-0.31293556,-0.67655694,0.11161502,-0.5015117,-0.0049299425,-0.116359316,0.3048552,-0.21015622,0.2519798,-0.44553393,0.4232525,-0.4295921,0.027822444,0.24578209,-0.14701758,-0.007753517,-0.46706557,-0.22281003,-0.1143102,0.36271906,-0.072833486,-0.12662302,0.29822645,0.16326377,0.6730167,0.099213004,-0.30596307,-0.23887137,0.0009871231,0.095317885,0.49829465,0.10457908,-0.05811229,-0.30607992,-0.2485576,0.2873648,0.42369467,0.0010261195,-0.40008014,0.08066206,-0.18449466,-0.1580543,0.13522044,0.4414485,-0.17569157,-0.41577336,0.26533312,0.5889934,-0.099177085,-0.09757932,0.028635655,0.10378337,-0.5522562,-0.25134498,0.42045814,-0.20239195,0.5541396,-0.11702146,0.15758447,0.7127547,-0.26098964,0.010029797,-0.21501096,-0.018838763,-0.056363888,-0.37729174,-0.1466484,0.3198247,-0.5251829,0.13182244,-0.27045622,0.6906099,0.09474083,-0.728643,0.35608348,-0.61645174,0.072090805,0.08547907,0.70068544,0.7715451,0.42574194,0.37210733,0.76425946,-0.32922792,0.20840268,-0.10389686,-0.27942947,-0.10324563,-0.26566216,0.31066513,-0.42300877,-0.0011803551,-0.2214518,-0.2195343,-0.20211922,0.5103259,-0.37030867,-0.040447433,0.05450988,0.6591366,-0.39889404,0.0805822,1.0887129,1.008796,1.020413,0.16551253,1.5002261,0.49386913,-0.2882208,0.078534104,-0.27500317,-0.5815798,0.11059631,0.22797358,0.14277825,0.22892046,0.11418391,0.052680515,0.56045187,-0.5109151,0.1705809,-0.08477717,0.22278865,-0.1498731,0.2782102,-0.56459385,-0.41877753,0.10083377,-0.0096003935,0.12184442,0.41394684,-0.16683786,0.6869492,0.14573781,1.2777399,-0.16159578,0.17144284,0.070459604,0.21496716,-0.046067093,-0.18759547,-0.22489317,0.18368807,0.23400007,-0.09575587,-0.57557356,-0.12475269,-0.2763855,-0.29827914,-0.38198617,-0.2340418,-0.01304741,-0.3498462,-0.38679072,-0.29766187,-0.096403204,-0.33686393,0.4530147,-2.0949018,-0.19941041,-0.2992867,0.24401675,-0.2952104,-0.48083884,-0.1589174,-0.5653567,0.3326201,0.24772082,0.22670674,-0.5683869,0.5339194,0.34444088,-0.48385218,-0.19744428,-0.7751029,-0.06765782,-0.09276124,0.2378854,-0.11559864,-0.29142213,-0.44664198,-0.06427218,0.47948432,-0.12149988,0.11298133,0.40118614,0.4713739,0.22685324,0.56859237,0.29408857,0.55994874,-0.4687126,-0.16829689,0.50365436,-0.3675692,0.49072558,0.072699174,0.15743266,0.5826054,-0.7586242,-0.70449716,-0.777939,-0.8150049,0.95682305,-0.39602613,-0.31391412,0.18485539,-0.12218319,-0.22918715,0.1183901,0.5730456,-0.20458078,0.13328885,-0.7465426,-0.05853427,0.0064024054,0.41785067,-0.02429025,0.17358235,-0.60498923,0.6805696,-0.25849104,0.34635085,0.54256725,0.23728958,-0.21688366,-0.36301523,0.18480526,0.9769146,0.34049723,0.14730628,-0.22340132,-0.5283805,-0.14870216,-0.3565204,0.042162802,0.3884997,0.60177183,-0.0074863583,0.023364065,0.32344773,-0.31181622,0.17664722,-0.217567,-0.29096812,-0.15793923,0.13676973,0.6618179,0.56926084,-0.050928585,0.43013272,-0.2428725,0.3805608,-0.09448404,-0.46352005,0.4317977,0.90875477,-0.026270786,-0.07050882,0.88828665,0.5410963,-0.54842085,0.4677278,-0.6407727,-0.38857478,0.49284253,-0.041705202,-0.5750727,-0.052942853,-0.27691147,0.23580208,-1.0478624,0.23521541,-0.22266737,-0.47847462,-0.76971847,-0.14610918,-2.4941628,0.19993709,-0.23788777,-0.025544295,0.0208218,-0.3453827,0.3521636,-0.4533495,-0.7253036,0.23115186,-0.07021698,0.47601438,-0.03619564,0.16032934,-0.296022,-0.19228448,-0.339861,0.21200882,0.35400924,0.22678988,-0.22480781,-0.4236474,0.14856169,-0.35816407,-0.39901596,-0.11672802,-0.8333139,-0.6643891,-0.26434132,-0.6143001,-0.3906577,0.6557756,-0.28452227,-0.07863797,-0.30992338,0.025908474,-0.17723158,0.32887432,0.16693917,0.49261013,0.23408367,-0.07981194,-0.30761623,-0.3826372,0.28742582,0.093448974,0.049916882,0.41954464,-0.025350442,0.32161364,0.27064505,0.7299185,-0.09607482,0.77784634,0.23493876,0.010187856,0.26480448,-0.32624754,-0.2842349,-0.6788754,-0.24302052,-0.17884788,-0.40423152,-0.5318242,-0.14874074,-0.35522342,-0.83406764,0.6553218,0.13212846,-0.06049351,-0.12305606,0.25370625,0.33582646,-0.28401655,-0.00093334913,-0.25944528,-0.026616825,-0.5386768,-0.6665128,-0.7391538,-0.64831275,-0.10635773,1.3435843,0.07080175,-0.18306021,0.21145038,-0.5208372,0.16742049,0.29633158,0.048148043,0.22809713,0.66508293,-0.019348988,-0.6705119,0.45889023,0.14506349,-0.104075186,-0.48467326,0.14123093,0.84800816,-0.7109459,0.73764336,0.50362915,0.14265239,0.04698086,-0.46969572,-0.3201637,0.011220076,-0.26779345,0.4702681,0.33218163,-0.63632107,0.4596314,0.21413887,-0.04036614,-0.97442627,0.2879775,0.044479933,-0.102288544,0.21395476,0.48285595,-0.044276316,0.034300923,-0.22934791,0.102969036,-0.36960265,0.23064484,0.4831583,-0.0074835634,0.26977032,-0.3706138,-0.19222763,-0.6702325,0.09452776,-0.38063285,-0.37923655,0.1236536,-0.04119549,-0.062573954,0.40638217,0.22381186,0.30165553,-0.28783396,0.096343435,-0.16250262,-0.33012876,0.1189922,0.41641945,0.23820616,-0.7009009,0.7632123,0.06026425,-0.133011,-0.2573105,0.048685916,0.36000416,0.19468832,0.2601952,-0.18748805,-0.1979101,0.090225115,0.7073102,0.07102697,0.55875766,0.24602027,-0.0061972737,0.35036537,0.051052768,0.20878565,-0.17069218,-0.36470675,-0.045039184,0.06482405,0.120501176,0.38814512,-0.0417099,0.5695155,-0.052143864,-0.05636855,0.20264135,0.17044719,-0.21848986,-1.1811503,0.24281634,0.08898933,0.7514802,0.6273963,0.06669525,0.011901034,0.6746916,-0.59524524,-0.08678059,0.29311532,-0.008251705,-0.3863184,0.6470683,-0.52354014,0.4970927,-0.30417424,-0.11810614,-0.096728764,0.057470918,0.40388685,0.9616614,-0.16253991,0.048689783,-0.09918839,-0.027095625,0.19942181,-0.23203002,0.074498065,-0.5323039,-0.43423027,0.82095426,0.26284122,0.5751696,-0.29706812,-0.06621692,0.12800613,-0.1467901,0.15114813,-0.024668818,-0.07755597,0.20974134,-0.59450465,-0.050901067,0.65878445,-0.16264357,0.099270605,0.2371454,-0.48846027,0.20680788,-0.1211774,-0.10467972,-0.05513602,-0.919112,-0.10125544,-0.49760464,-0.49341255,0.056290153,-0.3540623,0.10755419,0.14416353,0.15129408,-0.44167623,0.16629656,0.2314547,0.98743427,0.2452925,-0.051994745,-0.09257173,0.17392446,0.39824325,-0.36682442,0.08788057,-0.29529557,0.13689736,-0.69538796,0.6312221,-0.14644305,-0.36630806,-0.040395644,-0.03262576,0.025526868,0.60407966,-0.09225888,-0.06476877,0.20072989,-0.008949871,-0.302201,-0.13744143,-0.29618487,0.17798814,0.044729028,0.08398446,0.0048874957,-0.05008936,-0.1831045,0.781293,0.0983796,0.1782918,0.44920188,-0.12382078,-0.33563298,0.14711185,-0.06626924,0.49166277,-0.024165511,-0.33682474,-0.21819302,-0.06054296,-0.0413607,0.67158467,-0.078034624,0.16910248,0.06927196,-0.34942415,0.86206394,0.11947288,1.0565357,0.11382695,-0.27394974,0.012679781,0.38468742,0.045083832,0.027189795,-0.5172937,0.9753536,0.3994247,-0.10329938,-0.17094907,-0.51361954,-0.17783545,0.24271451,-0.17438366,-0.04412112,-0.16123359,-0.7701168,-0.31431445,0.19126,0.47197896,0.004884579,-0.16905114,0.19380276,0.1931214,0.06504411,0.6011194,-0.61916524,-0.14330073,0.47899765,0.2445685,-0.05137476,0.41605616,-0.24470136,0.43985695,-0.7685421,0.20483875,-0.5229618,-0.025239391,0.06102317,-0.17597389,0.15833183,0.08252849,0.48873633,-0.37001392,-0.19905648,-0.40234756,0.79292494,0.23360452,0.24151771,0.827727,-0.26494858,0.0035093683,0.21128154,0.5154136,1.409126,-0.28357157,0.24728754,0.07746764,-0.13108931,-0.48408392,0.39694375,-0.3488362,0.025062528,0.048176143,-0.44859228,-0.38160425,0.105863355,0.23902893,-0.10965212,0.07286371,-0.45878175,-0.054096818,0.4494608,-0.20000541,-0.24559034,-0.29112652,0.32665682,0.68184704,-0.113258235,-0.21874173,0.03845346,0.2867395,-0.35926583,-0.40924302,-0.046681795,-0.44671887,0.3674731,-0.055263,-0.37479308,-0.07559507,0.22857676,-0.4453943,-0.066190556,0.24763286,-0.29090026,0.03740291,-0.26305676,-0.01132751,1.038313,0.09317352,0.15866843,-0.51521486,-0.6563541,-0.9404147,-0.26359266,0.2755835,0.17618111,0.021560503,-0.4340479,0.1022455,-0.16819875,-0.035948463,0.31396648,-0.50368273,0.31997466,0.29451638,0.5679473,-0.04220484,-0.78001505,0.14337866,0.122144595,-0.174506,-0.3332869,0.39575568,-0.06977365,0.7692439,0.04704992,0.10778966,-0.05365012,-0.55815727,0.48540053,-0.2709639,-0.036567178,-0.8575007,-0.08299335 +343,0.4962234,-0.14468534,-0.479629,-0.114340924,-0.15230532,0.085745685,-0.13392492,0.6933918,0.23028654,-0.42883915,-0.13239685,-0.1161287,-0.017694967,0.20347986,-0.036814343,-0.3902947,-0.0040855366,0.062569804,-0.2571959,0.44139135,-0.40681738,0.29931137,-0.1297438,0.3681349,0.076479085,0.26621774,0.060061608,-0.075145215,0.06012819,-0.09746418,-0.08356936,0.35326517,-0.27341187,0.15411378,-0.14030442,-0.38073125,-0.12158562,-0.48233992,-0.40188345,-0.60674745,0.20219725,-0.70676386,0.46876556,0.1112403,-0.3406997,0.39032644,-0.12649965,0.19915822,-0.2645015,0.06408462,0.15052779,0.0128013035,0.035504896,-0.19931957,-0.27206853,-0.32562968,-0.4835284,0.05137682,-0.38236508,-0.070737645,-0.13972585,0.0199272,-0.23738606,-0.09456001,0.030511076,0.40124464,-0.50813127,-0.14376643,0.19661047,-0.14977987,0.39036465,-0.55569667,-0.16134192,-0.06722692,0.25711676,-0.2564804,-0.109283656,0.11299399,0.22027,0.58119166,-0.122622006,-0.07769735,-0.46894425,-0.029882776,-0.08717731,0.4665502,-0.19809107,-0.44311187,-0.120997615,0.008999053,0.28357276,0.26607472,0.09060762,-0.13976917,-0.1915168,-0.05883836,-0.23870324,0.2877402,0.53898925,-0.48867068,-0.21053381,0.39593357,0.61695707,0.17053191,-0.06700684,0.10078002,0.026568497,-0.46832076,-0.18848103,-0.039037473,-0.26611674,0.41563532,-0.13045062,0.28552186,0.57455915,-0.0040414156,0.07762418,0.20547329,0.08124872,-0.13933477,-0.24113505,-0.17201601,0.237447,-0.3430349,0.10577533,-0.08283626,0.59355795,0.021563845,-0.7580665,0.3550388,-0.47635266,0.08597764,-0.09302937,0.56551147,0.70685524,0.2586792,0.23808987,0.69581974,-0.5598784,0.061935145,-0.0890006,-0.23132303,0.04629232,-0.051346347,-0.16863866,-0.6121771,0.051501464,0.23577596,0.020021824,0.31962457,0.2550554,-0.5666939,-0.11278122,0.34167245,0.7198297,-0.25315112,-0.08216271,0.63797307,1.050216,0.9647111,-0.04372503,0.91328496,0.07425129,-0.2588076,0.3026385,-0.4654311,-0.6210898,0.24526644,0.39409503,0.10286393,0.3378499,0.18326506,0.061485585,0.3334288,-0.32663345,0.032373942,-0.11656036,-0.041676287,0.054940183,-0.094447,-0.51977694,-0.21762429,-0.11109093,0.13682117,0.04010438,0.30180654,-0.19607855,0.3206304,0.029036919,1.578001,-0.07727944,0.11207398,0.15168503,0.4012528,0.19097881,-0.13599531,-0.08491926,0.38184717,0.32947114,0.10468421,-0.5341985,0.14842325,-0.14068937,-0.47831973,-0.042195465,-0.27228668,-0.032061145,-0.024995176,-0.5166286,-0.025330318,-0.20272781,-0.43256676,0.4396198,-2.981584,-0.17362207,-0.090306655,0.24590905,-0.22550805,-0.33896488,-0.19883347,-0.35148653,0.42079535,0.37245145,0.4782093,-0.7241973,0.40966097,0.41617545,-0.42677397,-0.020513069,-0.57651544,-0.16857836,-0.0012811144,0.24544494,0.12539019,-0.026714247,0.056185022,0.24881262,0.43751732,-0.010683592,0.12519534,0.21124509,0.36559853,-0.023132626,0.36071503,-0.04766184,0.37382317,-0.26395485,-0.26276797,0.29909483,-0.32867423,0.2191658,-0.13451253,0.1159583,0.36389393,-0.4693244,-0.9148778,-0.5880563,-0.17725602,1.2011335,-0.112363,-0.49007824,0.29629403,-0.46761814,-0.3182081,-0.17010294,0.48336306,-0.1320009,-0.12114557,-0.830466,0.07193089,-0.11094549,0.09776711,-0.014899443,-0.074341096,-0.4249848,0.62731785,-0.071045436,0.64558995,0.47449714,0.10154462,-0.18614183,-0.36777824,-0.07672764,0.8898668,0.4114313,0.15768522,-0.26288334,-0.006373485,-0.3844353,0.14762452,0.17820488,0.391698,0.59003866,-0.012182137,0.18016103,0.2856752,0.059963275,-0.04770537,-0.1899592,-0.1378649,-0.051069524,0.07349988,0.58214176,0.64765954,-0.2380359,0.35059512,-0.027431717,0.08748203,-0.2747363,-0.42985743,0.4509388,0.6355756,-0.108001195,-0.26042938,0.619355,0.54241526,-0.22269617,0.40076026,-0.6284199,-0.37701324,0.26087976,-0.22405806,-0.40879574,0.23159274,-0.25572526,0.20381318,-0.8811623,0.10292506,-0.12582044,-0.53715146,-0.53318614,-0.09675675,-3.1131577,0.2115647,-0.18894343,-0.19141397,-0.11963852,-0.117349245,0.2278432,-0.5305765,-0.6082007,0.13789447,0.17701077,0.5953726,-0.0168058,0.07286237,-0.25155255,-0.32560942,-0.20314918,0.115098074,0.042322174,0.36983454,0.14057653,-0.54162925,-0.12620491,-0.07510712,-0.33961037,0.012974268,-0.49866858,-0.37885752,-0.07994396,-0.4948741,-0.24064894,0.53424954,-0.3041564,0.04437773,-0.22484487,0.009934378,-0.11457865,0.3098269,0.045582097,-0.00054191746,-0.082221,-0.009535178,0.11512097,-0.2959091,0.36038116,-0.00071409147,0.16667862,0.40508652,-0.2295331,0.14004658,0.5921795,0.6449732,-0.1414554,0.78730184,0.5504119,-0.026814636,0.29314086,-0.19367829,-0.2223235,-0.5430655,-0.39269397,-3.970663e-05,-0.439631,-0.4774874,-0.0338199,-0.3882392,-0.8396864,0.5085015,-0.14372008,0.21736728,0.054475196,0.18382269,0.5862261,-0.25498107,0.07080577,-0.052764867,-0.11831444,-0.434958,-0.28927457,-0.6015055,-0.3380038,0.20579425,1.0248423,-0.26469284,0.13694862,0.16029915,-0.124852404,-0.09470706,0.09288724,0.087877624,0.20181979,0.3658183,-0.0887522,-0.44384992,0.47099102,-0.098109215,-0.23836933,-0.51543504,-0.008315953,0.51342446,-0.5533572,0.39403853,0.25301307,0.004444812,-0.106692694,-0.6308626,-0.10056174,-0.124146394,-0.27532354,0.4620666,0.3391867,-0.7473278,0.4405406,0.3806691,-0.15603283,-0.5987217,0.52329564,-0.1341038,-0.31499568,-0.08107013,0.22781666,0.16527714,0.021290315,-0.06316658,0.18495055,-0.35925236,0.33417302,0.2316,-0.11076292,0.47685573,-0.2228845,0.031075787,-0.7406151,-0.19854283,-0.51263976,-0.235734,0.22352749,0.14829665,0.11242003,0.11101618,-0.0009087642,0.37883767,-0.37347215,0.12533079,-0.11127705,-0.20444325,0.36256486,0.34265217,0.4912522,-0.30597445,0.5156104,-0.020780701,-0.049839042,-0.18253177,0.03680711,0.4923256,-0.019546568,0.34404567,-0.18477722,-0.27450624,0.33153105,0.609662,0.23485817,0.1828319,-0.013909137,-0.14897971,0.20589216,0.07080366,0.09953003,-0.16415234,-0.41663468,0.11142365,-0.21107878,0.20370755,0.38017878,0.10238325,0.31005913,-0.13909313,-0.30830562,0.07296548,0.20293145,-0.035974845,-1.0602983,0.29104272,0.17937063,0.77660674,0.4292488,0.07802673,0.055873744,0.6391705,-0.157623,0.1618505,0.3979277,-0.008124963,-0.52789277,0.5319963,-0.76294005,0.5683877,-0.031180333,-0.019776108,0.071277305,-0.10168301,0.4549311,0.67469734,-0.047911175,-0.0076474985,0.050677154,-0.31513882,0.017728085,-0.33937067,0.0428459,-0.6409288,-0.1342748,0.6134359,0.564298,0.3509167,-0.17858155,0.004927536,0.06530822,-0.0102566965,0.051059864,0.060362037,0.16823182,-0.2538226,-0.6976332,-0.07384103,0.4101092,0.18704651,0.060731824,-0.101006284,-0.2727031,0.20230147,-0.06993909,-0.056706198,-0.023040036,-0.5030284,-0.017537037,-0.286843,-0.36105555,0.5243822,-0.115915984,0.3225184,0.0947208,0.09721365,-0.19628935,0.3837581,0.026221048,0.78856796,0.04437208,-0.040745094,-0.4242236,0.22521658,0.24330479,-0.14015831,-0.21756564,-0.32569078,0.0986353,-0.50628954,0.35862547,-0.050715342,-0.2304669,0.21019231,-0.084763214,0.1306047,0.49465993,-0.038863577,-0.19284123,-0.051283564,-0.1301896,-0.29277962,-0.20822026,-0.21250232,0.32892177,0.06798182,-0.12979904,-0.15187772,-0.028603133,-0.06934737,0.3313168,0.08268115,0.23265578,0.2800814,0.07542508,-0.3065593,-0.02588133,0.13144273,0.41885084,-0.009458935,-0.10432921,-0.24409577,-0.5369648,-0.27439675,-0.048579644,-0.10859116,0.37151212,0.062343836,-0.013823533,0.7505772,0.043818634,1.0845106,0.12300258,-0.30411768,0.04891061,0.42847264,0.023218174,-0.044469308,-0.27205163,0.91701305,0.544997,-0.11274474,-0.17074773,-0.17861785,-0.016147533,0.12256336,-0.1401124,-0.17575084,-0.017338676,-0.7052159,-0.21469766,0.33808202,0.20151688,0.2678105,-0.09519334,0.092302896,0.24453601,0.047907267,0.2438922,-0.39110184,-0.14937337,0.22006962,0.28181604,-0.049804326,0.09038602,-0.3917224,0.38911656,-0.54889846,-0.046907213,-0.28517812,0.1126585,-0.299869,-0.36211973,0.17302814,-0.08144187,0.33724988,-0.22787975,-0.36434734,-0.23140332,0.4641817,0.10026647,0.050233483,0.45062992,-0.24803773,0.08286516,-0.061680395,0.32638642,0.9994891,-0.22688462,-0.093979105,0.4443093,-0.20798007,-0.66026974,0.21615934,-0.4216599,0.29330933,-0.112416,-0.23557782,-0.39781153,0.40282497,0.19878118,0.037829813,0.050330188,-0.4540314,-0.023768242,0.16616192,-0.2693021,-0.23757878,-0.3205072,-0.017650675,0.5103837,-0.2822924,-0.44839928,0.11397799,0.36445883,-0.16097613,-0.5494176,0.1415437,-0.35754502,0.22267725,0.11688396,-0.3754289,-0.052179392,-0.04598715,-0.32714245,0.09042645,0.24537244,-0.3061537,0.024231173,-0.54249203,-0.012745134,0.9764422,-0.1636561,0.29547003,-0.48028532,-0.40934098,-0.89664894,-0.29568416,0.53411037,0.06775934,0.037180845,-0.5924737,0.17948388,-0.10167958,-0.103610545,-0.16651203,-0.16853961,0.5268773,0.16826579,0.35327882,-0.23203327,-0.692603,0.18553379,0.117580004,-0.18281381,-0.4941916,0.4728742,0.037601806,0.78360516,0.13198681,0.11660567,0.3193569,-0.53638816,-0.06710822,-0.22744921,-0.13671404,-0.6706341,-0.05014234 +344,0.4060908,-0.28418133,-0.48288763,-0.112924576,-0.1687824,0.10602184,-0.17159455,0.51518387,0.066764906,-0.46229172,-0.23279692,-0.099224895,0.05766911,0.52161515,-0.3037459,-0.4217427,-0.10703529,0.0124837775,-0.44113928,0.27236235,-0.58539706,0.22533864,0.059430666,0.38277417,0.14826438,0.115617394,0.13677293,-0.0761093,-0.035419457,-0.11182961,-0.024863325,0.24495591,-0.48291743,-0.0088704685,-0.12936364,-0.3985804,0.09032743,-0.57109874,-0.35896605,-0.7215281,0.39647907,-0.98747313,0.57933,0.04150943,-0.24079281,0.32950988,0.080213144,0.16824605,-0.25390863,-0.12386981,0.20339264,0.04245452,-0.11853523,-0.06671205,-0.15596487,-0.24429318,-0.59907377,-0.00096468744,-0.6228888,-0.11532406,-0.22241205,0.19645295,-0.43958834,0.15145156,-0.05231824,0.32248446,-0.49335915,-0.0655939,0.10020435,0.001631911,0.10359399,-0.6666121,-0.115138054,-0.06895609,0.19342646,-0.19415125,-0.12983784,0.3301271,0.22528681,0.4322129,-0.11849969,-0.1949926,-0.24320623,0.098157726,0.031356916,0.6678178,-0.13951153,-0.54096997,-0.11236389,0.16526794,0.38251275,0.15004791,-0.06306304,-0.13784085,-0.14326993,0.14010891,-0.1900627,0.39601994,0.5644361,-0.31273457,-0.2965225,0.49265403,0.5216302,0.2517593,-0.03842097,-0.18124177,0.07351984,-0.53457826,-0.13100015,0.051321957,-0.2875768,0.38965416,-0.06273963,0.4249284,0.57356215,-0.28909189,0.32026407,0.05173171,0.124748506,-0.1008168,-0.21417537,-0.30070922,0.08563626,-0.40871525,0.12172846,-0.16745481,0.9631656,0.099170074,-0.7437819,0.4150049,-0.5074238,0.08339966,-0.21160303,0.6084468,0.6412645,0.35492304,0.355713,0.6225951,-0.35436404,0.037149515,-0.1750372,-0.36125448,0.17428787,-0.01771186,0.0013319391,-0.4132088,-0.20075305,-0.0278874,-0.11370738,-0.016831895,0.6674935,-0.54820657,-0.07929624,0.024757339,0.775893,-0.33394054,-0.023996856,0.6103184,1.0594839,0.8003642,-0.0004648509,1.0786059,0.2570527,-0.13631187,0.22627904,-0.32503238,-0.859575,0.36295393,0.5196367,-0.26811653,0.36818898,0.1385263,-0.11837585,0.37273857,-0.47839335,-0.13136213,-0.22351122,0.30662182,0.15324003,0.1505847,-0.5402342,-0.25322238,-0.090273574,0.055824365,0.13223368,0.28060144,-0.4236384,0.13781117,-0.042413753,1.8003218,-0.0990919,0.061318442,0.05077695,0.5059683,0.1917188,-0.04386169,-0.099982366,0.3381426,0.37341216,0.012471731,-0.80789125,0.16245815,-0.24068849,-0.3855376,-0.2509989,-0.36790594,-0.06411307,-0.034206107,-0.41257846,-0.012572238,0.06536133,-0.2929722,0.44512865,-2.5781908,-0.2710445,-0.08987348,0.49351296,-0.3745993,-0.4729128,-0.23824078,-0.5083355,0.5199564,0.31971136,0.5759801,-0.6159653,0.39362213,0.46408245,-0.49640036,-0.14787787,-0.67907757,-0.17922749,0.022406539,0.29529157,0.014241489,-0.16696747,-0.044376712,0.018794857,0.44473436,0.043657605,0.10204867,0.2894578,0.7035376,0.01122772,0.47107968,-0.17325687,0.5780067,-0.36688,-0.13715771,0.31833073,-0.25020638,0.37365076,-0.3638347,0.18064652,0.46143296,-0.52643716,-1.0181977,-0.6409314,-0.1805339,1.2800018,-0.36957583,-0.33618978,0.33947462,-0.21911608,-0.22000445,-0.14103398,0.52259195,-0.168948,-0.27727032,-0.8191484,0.06746621,-0.14899786,0.1476186,-0.038098708,0.10403303,-0.31171873,0.5036678,-0.1805335,0.40966195,0.13272628,0.24831463,-0.12025886,-0.38648465,-0.0061576893,0.7810365,0.4083651,0.0913786,-0.1690345,-0.29914898,-0.24277817,-0.029534074,-0.033989724,0.4514361,0.76691014,0.10672275,0.086352535,0.19900551,-0.10016111,-0.022068053,-0.20639004,-0.36730134,-0.04901932,0.06630291,0.50608337,0.5622097,-0.2915286,0.51501536,-0.10146198,0.16593379,-0.12507384,-0.42512256,0.37365946,0.7719841,-0.15989903,-0.06858344,0.6241217,0.4560115,-0.28259087,0.3400304,-0.7290078,-0.3526323,0.44163698,-0.22447443,-0.43379673,0.090169385,-0.13437682,0.07483502,-0.91375035,0.42804432,-0.18847837,-0.35020238,-0.5652166,-0.06209733,-2.7970874,0.12168431,-0.25179258,-0.11373536,-0.039613064,-0.21635532,0.3414068,-0.64445394,-0.5292144,0.16440326,1.8972616e-05,0.6294066,0.035779677,0.15278493,-0.16191739,-0.1621246,-0.31430322,0.014572492,0.24911365,0.43744075,0.14873932,-0.46298224,0.116671674,-0.08914166,-0.35629636,0.1806582,-0.49320406,-0.56603575,-0.047590297,-0.5277757,-0.16060288,0.6757766,-0.13697761,-0.064291514,-0.0969356,0.2182532,-0.11458867,0.37546116,0.125394,0.10978408,0.05127352,-0.13738635,0.052590158,-0.3523021,0.5584291,0.013943275,0.26183403,0.4088752,-0.0034469275,0.17419197,0.69900364,0.46073797,-0.040062044,0.86696976,0.5044412,-0.20799193,0.12348211,-0.19984175,-0.25865254,-0.37933058,-0.3322856,0.03682226,-0.38792786,-0.37894645,-0.12632176,-0.3845984,-0.8614518,0.48062402,-0.10120757,0.23146725,-0.08553354,0.28156108,0.5414808,-0.13877155,-0.009618433,0.106060505,-0.022139993,-0.6122681,-0.3530512,-0.6855805,-0.40941793,0.05723144,1.0604457,-0.32018945,-0.088725336,-0.17658673,-0.11820202,-0.079356395,-0.23172198,-0.029846797,0.23352131,0.3939077,-0.055892266,-0.709726,0.40137386,-0.06973021,-0.066187255,-0.6537627,0.091487244,0.6028776,-0.6243363,0.34928042,0.46732074,0.14315091,-0.017729916,-0.65045464,-0.17761962,0.13397835,-0.17831025,0.36902797,0.14867407,-0.78394705,0.5435623,0.36909765,-0.40824845,-0.73700786,0.4574061,0.095825635,-0.28357655,-0.08461898,0.2567476,0.27879044,0.115890175,-0.23017788,0.28660643,-0.4216266,0.4325418,0.14886478,-0.102346465,0.59186035,-0.38045284,-0.16225456,-0.6460434,-0.050422058,-0.5128915,-0.26799634,0.27730703,0.015333663,0.2087027,0.1455773,0.18001677,0.4645586,-0.5262034,-0.018907119,0.0059663286,-0.2506149,0.33674857,0.46586716,0.59320086,-0.38451466,0.5784071,0.050959826,-0.19161199,0.16217066,0.005394913,0.36295503,0.034627378,0.26032984,0.0023587483,-0.17154756,0.29979298,0.98376584,0.09061948,0.3542269,0.13567963,-0.25213617,0.22483756,0.023042617,0.0010583195,-0.038247187,-0.5391957,-0.054907702,-0.10206191,0.12618852,0.5756137,0.21953954,0.22920488,-0.149983,-0.21617457,0.1083589,0.10843292,0.04579805,-1.0364827,0.33207732,0.07567484,0.6592394,0.25526974,-0.053876996,0.046902888,0.55864334,-0.10148711,0.037107177,0.33730572,0.0949781,-0.5878073,0.56384623,-0.58266747,0.48465627,-0.11615435,0.023662217,-0.027487801,0.10589023,0.35612643,0.7917991,-0.08507225,-0.025574194,0.13301574,-0.31521654,0.15226102,-0.3765955,0.04233928,-0.6761502,-0.19760528,0.5141662,0.46106374,0.32366607,-0.036361955,-0.033088468,0.071925275,-0.07455499,0.14670523,-0.008301515,0.019191582,0.07280113,-0.827091,-0.17097534,0.4962223,0.28590682,0.24108711,-0.20655407,-0.107362136,0.24470256,-0.25237533,-0.052115194,0.0192418,-0.67729354,-0.19937491,-0.5273356,-0.5903403,0.15784414,-0.16414918,0.26909092,0.18775474,-0.021971593,-0.32245204,0.28099614,0.19972946,0.93813324,-0.102325924,-0.17917307,-0.5651241,0.024470512,0.24044083,-0.25382066,-0.059143092,-0.35514122,-0.02947242,-0.6220198,0.64967877,-0.22226086,-0.2794764,0.06996297,-0.2865156,0.024959601,0.6013838,-0.083480686,0.0012478462,-0.36577764,-0.36913458,-0.3933142,-0.24752067,-0.14950654,0.09302867,0.24581869,-0.08454831,-0.13983038,-0.33097252,-0.19994906,0.59535545,0.0557972,0.38468295,0.46367496,0.2198608,-0.19063272,-0.22380526,0.14237663,0.6832909,-0.06014006,-0.1679462,-0.56786096,-0.36941344,-0.21668789,0.32970554,-0.23304786,0.32185745,0.17437561,-0.24561745,0.66377455,-0.0647185,0.89585114,0.090554245,-0.16641468,-0.034210112,0.52844834,0.17114124,-0.07312444,-0.46907532,0.89032966,0.52737695,0.023690086,-0.15277888,-0.57551277,-0.24719779,0.42932054,-0.2946215,-0.117678694,-0.18262686,-0.6673923,-0.2888672,0.28012705,0.22675307,0.077391274,-0.06763769,0.20056817,0.109377705,0.15824145,0.5012828,-0.55758774,-0.16586392,0.37924162,0.21902207,0.091117784,0.18885292,-0.5372012,0.44593573,-0.40095583,0.08629736,-0.35259908,0.2320763,-0.053603604,-0.18941508,0.16761667,0.16371349,0.44864982,-0.23824668,-0.39021048,-0.13898781,0.54823184,0.18703276,0.11059937,0.54156935,-0.27220476,0.03425288,-0.08908835,0.5997478,1.1424311,-0.18134345,0.18589851,0.35278577,-0.26281685,-0.6489684,0.45422903,-0.38200617,0.14679694,0.03187016,-0.21427134,-0.5908547,0.38175663,0.16844584,-0.033752643,-0.03908412,-0.35146672,-0.2621755,0.30640084,-0.24790359,-0.17564645,-0.22784,0.06737466,0.66102624,-0.3009954,-0.094303206,0.035719138,0.53157395,-0.13409834,-0.50295794,-0.04208443,-0.46603158,0.16931221,-0.007861779,-0.23838748,-0.16173181,0.015851837,-0.34659487,0.13773304,0.040925678,-0.38025495,0.017743744,-0.143217,0.13340522,0.9504462,-0.18510239,-0.06315563,-0.7349393,-0.40082586,-0.8252418,-0.20157006,0.48113933,0.16896142,0.099861614,-0.6356767,0.12331251,-0.00733067,-0.13284414,-0.18911353,-0.55195016,0.4076026,0.06219298,0.26335162,-0.08457515,-0.607976,0.0985669,0.00034156212,-0.3591607,-0.49614507,0.6265763,-0.086453244,0.92358154,0.03935706,0.08163112,0.019865576,-0.3414747,-0.02474575,-0.33411834,-0.23960263,-0.75082135,0.188493 +345,0.28038058,-0.058492415,-0.35166937,-0.16610023,-0.26665673,0.2545003,-0.136235,0.38708666,0.082905285,-0.41255632,-0.13199362,-0.16728891,0.002101581,0.25000766,-0.24715698,-0.32044622,-0.032410305,0.06925832,-0.5162366,0.42515436,-0.3306241,0.25940517,-0.0014066355,0.36031905,0.07784248,0.21268474,0.21626894,-0.24763907,0.025067803,-0.3478977,-0.0670227,0.09430007,-0.5946831,0.34386966,-0.2065184,-0.4100628,0.21890458,-0.33125925,-0.29717755,-0.5764755,0.22308408,-0.8959327,0.59448045,0.19909358,-0.2007751,0.3092058,0.18349501,0.314114,-0.09070194,0.083867624,0.15050514,-0.12622549,-0.079632804,-0.09048818,-0.19773175,-0.46088293,-0.50460476,0.111237966,-0.5274668,-0.10917543,-0.34331754,0.12491765,-0.23745908,-0.062044468,-0.028771725,0.21227573,-0.326106,0.10493721,0.13143703,-0.23030397,0.2334455,-0.46913496,-0.06707778,-0.04568148,0.3821609,-0.35382515,-0.23009814,0.19543207,0.19748509,0.49048725,-0.023543762,-0.121482596,-0.24932694,-0.15456808,0.112905204,0.45323342,-0.02625915,-0.40570492,-0.105429895,0.05778793,0.2013099,0.3347105,-0.048454665,-0.1658847,-0.11209602,-0.00031803336,-0.2569433,0.41716343,0.47803825,-0.5244732,-0.29606763,0.5018755,0.4736486,0.06253411,-0.0550035,-0.06021153,0.014314099,-0.4667086,-0.22584918,0.008974816,-0.20268393,0.38741067,-0.068117335,0.38088813,0.54810447,-0.28406522,0.058893092,0.11315359,0.036638804,-0.2075725,-0.04963622,-0.19491819,0.20480706,-0.5520369,0.040012956,-0.23729222,0.7509841,0.0027282494,-0.6466919,0.18987213,-0.52678436,0.049333673,-0.093453966,0.49687293,0.63775826,0.49043447,0.17425932,0.666763,-0.4437645,0.06193527,-0.2576681,-0.31815705,0.17168763,-0.25910586,-0.15218599,-0.49540922,0.038904946,0.21384346,0.045378458,-0.0031639847,0.2328136,-0.5792228,0.01740034,0.22035515,0.694621,-0.25300583,-0.08616124,0.67827284,0.9953094,0.82695687,0.00829543,1.2114784,0.04602343,-0.20659797,0.13818559,-0.17351605,-0.672898,0.24796939,0.45812348,0.109825,0.20040539,0.21576153,0.10471393,0.2943058,-0.56374985,-0.052096844,-0.15050173,0.3568565,0.012302816,-0.021724263,-0.3207779,-0.16097067,0.025829362,-0.018900607,0.1808451,0.26003483,-0.268055,0.2746901,0.093472704,1.4354388,-0.0010660291,0.23161377,-0.03954542,0.5184024,0.08572125,-0.024003517,-0.081544146,0.2908122,0.23774573,0.25606632,-0.4916382,0.014524349,-0.22635476,-0.5019,-0.13613829,-0.35828695,-0.19337733,-0.024293797,-0.30885658,-0.12087361,-0.12519903,-0.27389067,0.47799355,-2.9883215,-0.09276631,-0.119450174,0.33574155,-0.23653449,-0.3319537,-0.18095048,-0.53676313,0.500959,0.4354456,0.4926388,-0.54970455,0.25465113,0.41472197,-0.50270176,-0.20595935,-0.60474735,0.032201923,-0.07926995,0.37315074,0.020247193,-0.12206549,-0.1889224,0.11219903,0.36356777,0.09697223,0.06896337,0.20438422,0.31909427,0.20041974,0.48916796,0.054606985,0.47457185,-0.32812378,-0.1997584,0.18111053,-0.28221995,0.37926593,-0.18428089,0.060490813,0.36465245,-0.5041906,-0.9033085,-0.7867773,-0.26918846,1.2479832,-0.17630579,-0.33777332,0.17130601,-0.3254468,-0.26473418,-0.14373514,0.4580881,-0.18891795,-0.019549701,-0.6579222,0.1328505,-0.12721986,0.31760624,-0.02654976,0.054254126,-0.58032113,0.43402,-0.07352716,0.34377018,0.23516564,0.100764275,-0.22505212,-0.35637283,0.07420226,0.9012871,0.35140806,0.1741731,-0.09452883,-0.2920738,-0.39199093,0.013440869,0.20924994,0.44984013,0.59218985,0.016215654,0.13847825,0.20957543,-0.03244877,-0.0017152365,-0.15810478,-0.21919338,-0.08596777,-0.010865705,0.71440023,0.51123226,-0.018520202,0.36187196,0.030265199,0.25394133,-0.2946863,-0.42739883,0.47360748,0.72837,-0.17958887,-0.22027488,0.78967625,0.6326794,-0.14158681,0.44922122,-0.6859721,-0.45883957,0.31736714,-0.14213641,-0.40078932,0.040518906,-0.34260163,0.0934178,-0.90629184,0.32123068,-0.014541005,-0.48747107,-0.57617325,-0.119210295,-3.3258939,0.108145066,-0.07297211,-0.05287993,-0.082952656,-0.17674498,0.36335856,-0.42121235,-0.49365446,0.14468446,0.06329013,0.6921672,-0.101381846,0.1162904,-0.19645442,-0.3066177,-0.3362067,0.14617136,0.10653198,0.24328454,-0.029800713,-0.39384896,0.11665989,-0.13761364,-0.25989708,0.085690975,-0.46655107,-0.3307562,-0.17467526,-0.32310253,-0.18689391,0.642404,-0.40843558,0.03782314,-0.2650226,0.022161616,0.0146682495,0.26568967,0.19455531,-0.045955576,0.12089079,0.017213454,-0.103535056,-0.40080976,0.47216752,0.010773101,0.21799377,0.3612344,-0.064810224,0.17402749,0.43849435,0.47163528,-0.100261256,0.880709,0.32429084,-0.15268347,0.23204152,-0.2183418,-0.26847202,-0.39423636,-0.25829563,-0.15966187,-0.43841413,-0.28891948,0.06461115,-0.3094783,-0.74332875,0.58367044,0.027738502,0.07568896,-0.13088156,0.32098752,0.43493932,-0.27467054,-0.0435923,0.04005978,-0.11372704,-0.51292384,-0.40919083,-0.4128917,-0.3211939,0.0085278405,1.0215893,-0.22762725,0.06767476,0.07674747,-0.12711169,0.091790535,0.107837394,0.014909779,0.13011941,0.4807536,-0.017748924,-0.7357952,0.5569932,-0.19243596,-0.08377649,-0.60993063,0.16726531,0.47250882,-0.7193918,0.21549475,0.43728352,0.20804672,-0.1431754,-0.41476932,-0.18561554,-0.14316538,-0.24629101,0.19303045,0.15371825,-0.93077326,0.4024139,0.10270037,-0.10064961,-0.7106548,0.56300396,-0.06957727,-0.20456605,-0.024229795,0.30721527,0.41774163,0.048877984,-0.15988216,0.2253062,-0.36680394,0.30173138,0.21403222,-0.04319584,0.58681935,-0.23679774,-0.22540322,-0.68337446,-0.16359973,-0.49258026,-0.32167384,0.33126426,0.118183576,-0.028887639,0.37627116,0.023807576,0.3862636,-0.26422054,0.034481112,-0.00069948816,-0.16996488,0.37989673,0.36646268,0.55405647,-0.48042205,0.6343977,-0.016684845,-0.04966404,-0.13733175,-0.03709284,0.40884355,-0.05835077,0.3585767,-0.02817752,-0.29022613,0.35012332,0.7846378,0.19346571,0.18670334,0.012061032,-0.018459206,0.22657755,0.06740646,0.0142940115,0.13938737,-0.61142427,0.013287772,-0.22787966,0.11742204,0.36165634,0.108646326,0.23378216,-0.024833824,-0.1174796,0.08957092,0.037343554,-0.027735254,-1.130119,0.30636486,0.15889467,0.68325466,0.3859152,-0.048706613,0.06569622,0.68570995,-0.27365798,0.045624204,0.36155647,0.16046199,-0.2973338,0.5415584,-0.65363586,0.6355057,0.025152903,-0.09458583,-0.00024858754,-0.061077558,0.35681626,0.9761719,-0.16043496,0.17734696,0.01391465,-0.29935724,0.08978094,-0.19229157,0.12230379,-0.6375442,-0.21613982,0.62383515,0.404268,0.373339,-0.0802443,-0.07026039,0.04575317,-0.19799729,0.08715075,-0.05067208,0.064701505,0.016618686,-0.5838828,-0.107595645,0.5598696,0.18119062,0.16234004,0.050985422,-0.32771233,0.17711662,-0.1451525,0.08290993,-0.05300424,-0.5337179,-0.08470551,-0.2048732,-0.3783982,0.53105706,-0.3998057,0.29809743,0.17897841,0.03510789,-0.14027481,0.36164308,0.12469317,0.6452176,0.055401344,-0.18716063,-0.38604012,0.16287102,0.17101829,-0.17606077,-0.09902061,-0.24809884,0.15282223,-0.6793255,0.267527,-0.16624944,-0.36972243,-0.009288839,-0.22103919,0.037325077,0.48670107,0.08256916,-0.008961269,0.12784183,-0.19441254,-0.2339059,-0.051946707,-0.25312203,0.16737364,0.12753102,-0.021207942,-0.17307849,-0.18491633,-0.17713349,0.21837933,0.026417244,0.2803637,0.19561234,-0.026145276,-0.20924893,-0.18074621,-0.049763583,0.4627668,-0.18170555,-0.024861509,-0.1455524,-0.44278234,-0.34246352,0.12593625,-0.10341282,0.2122354,0.16752005,-0.23572707,0.57817966,-0.0650338,1.1049801,0.109022,-0.35986784,0.094534434,0.58340967,-0.0150980605,-0.020615932,-0.3858378,1.034394,0.5445029,-0.057985578,-0.20054178,-0.27465123,0.039579995,0.18187027,-0.13219702,-0.24896172,-0.096734785,-0.5999103,-0.24361695,0.2005733,0.2900085,0.1711549,0.049951386,-0.025714364,0.16378585,0.037804406,0.4115544,-0.39191538,-0.19170132,0.41657957,0.34512046,-0.021175057,0.18636099,-0.43588158,0.4190724,-0.54638344,-0.09876859,-0.24225068,0.1770519,-0.21097471,-0.28056976,0.2134815,0.07135145,0.3777926,-0.19785623,-0.51295465,-0.15553482,0.43284434,0.14055453,0.24363396,0.56520045,-0.16020809,-0.16039202,-0.20800588,0.37004763,1.0787386,-0.17772143,0.036720913,0.41890118,-0.26420993,-0.4578753,0.25358805,-0.5165363,0.25818095,0.0915699,-0.26521906,-0.21571438,0.24966621,0.17015417,0.11455178,0.03621008,-0.61668223,-0.15296434,0.06819634,-0.16484873,-0.2272767,-0.16885641,0.12672202,0.6446536,-0.21657364,-0.14329393,0.09159287,0.3903474,-0.18333144,-0.52584034,-0.104385674,-0.26684895,0.19784233,0.08753977,-0.3249653,-0.15344098,0.0648856,-0.40281504,0.035212543,0.13269888,-0.37477705,0.018515566,-0.3557208,0.11607581,0.8114112,-0.12733573,0.20979373,-0.45554808,-0.28103128,-0.83719456,-0.17166604,0.30516776,0.24470164,0.017898094,-0.36569825,-0.00022133334,-0.077727936,-0.11566608,-0.036128096,-0.38027018,0.42706767,0.06407094,0.39360523,-0.036327116,-0.9334441,0.14229587,-0.05349054,-0.2570104,-0.52114546,0.5830671,-0.111437716,0.7933963,0.06155791,0.033560812,0.33680955,-0.5780305,0.082031325,-0.17923954,-0.09085463,-0.7681051,0.12807743 +346,0.41385305,-0.24147965,-0.4935366,-0.096243314,-0.48476636,0.0699186,-0.19057226,0.36709067,0.09218217,-0.5042292,-0.117370635,-0.24032561,-0.055247404,0.54333234,-0.24499522,-0.46894327,-0.07471437,0.14563583,-0.4646268,0.2449813,-0.5781421,0.2576922,-0.073546715,0.44282162,0.088906415,0.2611922,0.15937962,-0.09714091,-0.21002379,-0.02106441,-0.17819272,0.07573709,-0.7539362,0.23156945,-0.17038843,-0.45820743,0.050101954,-0.5479855,-0.2724988,-0.6408456,0.31475672,-0.88391197,0.34913304,-0.139042,-0.16817173,0.06079891,-0.060054,0.3781153,-0.21829575,-0.018347513,0.29276344,-0.19932793,0.011439637,-0.28997755,-0.28419062,-0.49858636,-0.6094662,0.061464667,-0.5648199,0.00041769102,-0.15978736,0.15068576,-0.2411158,0.065615006,-0.22286895,0.17663318,-0.47144082,-0.055553734,-0.040052928,-0.030218977,0.101519585,-0.35899132,-0.21287192,-0.16122109,0.18670493,-0.12347282,-0.2240764,0.34180656,0.16564701,0.33694,-0.10428597,-0.10596389,-0.39143842,0.15654717,0.20072791,0.5287216,-0.028211415,-0.37243646,-0.15798657,0.09560899,0.27152756,0.28047207,0.023343492,-0.4260007,0.015549751,0.082848124,-0.34125042,0.32938117,0.53003514,-0.28108796,-0.34015888,0.4118256,0.5486772,0.08715158,-0.17264225,-0.050507985,0.028841052,-0.5302428,-0.20218743,0.25978872,-0.08652963,0.61968064,-0.12177299,0.30641648,0.74583817,-0.4017753,-0.019264776,-0.08696086,-0.022651525,-0.1435466,-0.106199756,-0.19873379,0.130959,-0.4518228,0.08601343,-0.15745878,0.7146996,0.15675506,-0.9906648,0.41049954,-0.6009296,-0.004267862,-0.05252496,0.43655604,0.52494085,0.5903332,0.3551889,0.59655035,-0.47304666,0.1842322,-0.07627252,-0.5817545,0.17468749,-0.20870028,-0.04523752,-0.32472977,-0.23667161,-0.058874838,-0.14135696,-5.924931e-05,0.46009535,-0.3836721,0.03382453,-0.046732564,0.64274687,-0.4089781,-0.14451018,0.8507403,0.9530815,1.0101602,0.19751662,1.2086263,0.21156755,-0.049506865,0.20957701,-0.20878688,-0.71392053,0.2971128,0.3802249,-0.0673213,0.34749046,0.24000336,0.2646374,0.39078096,-0.17294312,0.107065,-0.17565998,0.19977781,0.08061764,0.0186057,-0.39130625,-0.41480842,0.04203475,0.025492746,-0.12155804,0.362312,-0.12166396,0.43692604,0.21138892,1.6327139,0.12904556,0.106043085,-0.0065223714,0.5500851,0.057698205,-0.07395695,-0.17984273,0.2958748,0.22705474,0.08758744,-0.5468147,-0.0054334057,-0.1958057,-0.54651797,-0.13635787,-0.2732488,-0.14363322,-0.3801756,-0.5282113,-0.08695387,0.114449866,-0.23838289,0.5697482,-2.4686046,-0.19229335,-0.003565433,0.29505327,-0.28153867,-0.51865184,-0.080590196,-0.48996308,0.1922901,0.3373873,0.43927053,-0.67184,0.5461905,0.4190368,-0.48327225,-0.17306596,-0.727403,-0.119287305,-0.05764645,0.26104057,-0.07299643,0.072221056,-0.05299414,-0.042051975,0.4638087,-0.16385219,-0.16322634,0.10945813,0.6675885,0.28469497,0.5924486,0.09047067,0.4499866,-0.42361706,-0.031365007,0.33677477,-0.43516028,0.4944892,0.23862281,0.18781692,0.4490759,-0.48649043,-0.95697695,-0.63847446,-0.48177177,1.1799706,-0.27981967,-0.2543889,0.19152695,-0.15545747,-0.3694498,-0.26105478,0.37310812,-0.08086043,-0.003371986,-0.7289667,-0.052021444,-0.1202376,0.27656353,-0.004780391,0.15345478,-0.18968007,0.58607364,-0.02409337,0.42044565,0.39715514,0.12349315,-0.3008166,-0.47864035,0.11115302,0.6600955,0.22024444,0.18778084,-0.18594797,-0.20678036,-0.17362191,0.027559012,0.09744421,0.40403354,0.602404,0.06894427,0.067996375,0.28922895,-0.19897968,3.7986498e-05,-0.17280401,-0.20007664,-0.13082522,0.0059595476,0.49689335,0.75789,-0.2329727,0.53338885,-0.26567662,0.20073095,-0.16526328,-0.35161325,0.33500677,0.70560277,-0.04581896,-0.059097894,0.38133457,0.7216788,-0.43851674,0.34469315,-0.54779917,-0.23276427,0.5281977,-0.183982,-0.40392575,0.08452533,-0.16795543,0.101538554,-0.872992,0.24893077,-0.1785307,-0.6056702,-0.6973775,-0.11267777,-3.070931,0.16470549,-0.09916735,-0.2734055,0.14337572,-0.26934168,0.21966435,-0.5953891,-0.4882975,0.1434493,0.0044597317,0.60536814,-0.029029908,0.18126132,-0.3577181,-0.19421329,-0.31290883,0.26693928,0.24075381,0.28918698,0.028241782,-0.49845332,-0.07002238,-0.4241475,-0.48741004,0.060093183,-0.67821026,-0.5365858,-0.11358343,-0.47775996,-0.45741156,0.7186743,-0.49679247,-0.1612989,-0.03446005,-0.07088036,-0.18706912,0.4351316,0.10220746,-0.0555166,0.04393814,-0.011795963,-0.14771558,-0.36295912,0.37928316,0.091422096,0.39284948,0.47135,-0.029112807,0.13260928,0.7510811,0.7305647,0.13515122,0.8391014,0.11158972,-0.13384579,0.33792192,-0.343029,-0.30375296,-0.70583403,-0.21903774,-0.12619196,-0.33902246,-0.49031103,-0.05210636,-0.33415768,-0.7275448,0.5551568,-0.018057356,0.03215202,0.0039704293,0.22698948,0.40223354,-0.19711104,0.12461305,-0.077121936,-0.16239223,-0.538777,-0.6147486,-0.60830647,-0.63302517,0.018514551,1.3294027,0.011731001,-0.3077768,-0.05417672,-0.34254435,0.17701045,-0.0196955,-0.004978761,0.35706806,0.22148313,-0.16937974,-0.6275622,0.423845,-0.028199764,-0.11866975,-0.40045264,-0.060583856,0.8009815,-0.6878229,0.336802,0.32960102,0.084132224,0.2655174,-0.41468197,-0.2125363,-0.02389144,-0.2004509,0.3501856,0.21918859,-0.7241498,0.4496985,0.21804993,-0.33220255,-0.65606076,0.47370023,0.034287095,-0.043666165,-0.023646198,0.28839105,0.24900834,-0.025665214,-0.2921757,0.24570133,-0.49842724,0.18738149,0.35757798,0.060939386,0.15452327,-0.065271586,-0.039570846,-0.68634087,-0.035312846,-0.15881221,-0.2531236,0.29258582,0.09424706,0.1794339,0.1427344,0.14519492,0.28074488,-0.38560194,5.749097e-05,-0.017286457,-0.18689057,0.27214855,0.3942061,0.4862703,-0.52103233,0.5725411,-0.010544167,0.11776047,0.13159473,0.037665788,0.23994902,0.27455133,0.19451149,0.16081634,-0.31915414,0.042630214,0.8500526,0.3649734,0.59368587,0.11130818,-0.17782713,0.36219552,0.1910349,0.27458894,0.0721922,-0.39413774,0.21103007,0.052033957,0.2102016,0.29902884,-0.15137543,0.27321097,-0.25650734,-0.12761119,0.16469169,0.2582575,-0.12913615,-1.1684549,0.24285537,0.19462532,0.593134,0.53803754,0.02931319,0.19721888,0.553191,-0.42206904,0.06961483,0.4085193,0.13356937,-0.57970434,0.5013842,-0.6162007,0.618715,-0.24068075,-0.042652424,0.0482653,0.010424678,0.4061791,0.86839134,-0.059240773,0.045473073,0.06519215,-0.25688332,-0.008319506,-0.39164215,0.08093056,-0.58675057,-0.088882156,0.67551965,0.50082,0.3559807,-0.094836846,-0.07301806,-0.032825083,-0.10385014,0.3003645,0.021018667,-0.042997103,0.046031576,-0.7067161,-0.2189784,0.6841198,-0.06796226,0.22480904,0.14611807,-0.4870861,0.39990905,-0.14594269,-0.175236,-0.029769907,-0.7567661,-0.030802837,-0.30781978,-0.47520617,0.20272332,-0.13275012,0.32460406,0.26797137,0.069312446,-0.3161252,0.4002554,0.38630444,0.89192265,0.07176326,-0.08154281,-0.33895966,0.074013986,0.30823898,-0.2614248,0.0007083966,-0.28418988,-0.0016155496,-0.511137,0.32500616,-0.14013764,-0.28193358,-0.16916889,-0.039449938,0.06763804,0.5699931,-0.003619836,-0.17934108,-0.09846174,0.16641514,-0.21497767,-0.044169657,-0.30793858,0.21466118,0.117553785,-0.19425796,0.06921475,-0.07497647,-0.0025213545,0.53457594,-0.012517626,0.37907112,0.19170274,0.024316631,-0.33678353,-0.20604776,-0.2286289,0.5767147,-0.02216175,-0.24768756,-0.44946703,-0.14031875,-0.12436641,0.28581417,-0.15357023,0.16419032,0.10846687,-0.5427543,0.8101311,-0.11929046,1.1793239,0.009258609,-0.3496677,0.21248762,0.38136095,0.23253019,-0.0071940836,-0.40847772,0.89606345,0.46095127,-0.24607475,-0.282346,-0.42277873,-0.38357133,0.109690316,-0.31522113,-0.21944703,-0.050507605,-0.59774697,-0.0716551,0.2451024,0.20395687,0.12650725,-0.064687535,0.15580049,0.21358593,0.17061323,0.4343705,-0.36453283,-0.21283355,0.31873733,0.39620414,0.05465593,0.0932306,-0.39469665,0.4895692,-0.5695463,0.2501126,-0.6140161,0.1355473,-0.17150116,-0.2743253,0.16635516,0.26764616,0.4557109,-0.119594015,-0.36423513,-0.27976838,0.71266234,0.25731868,0.4656301,0.65112716,-0.17682761,-0.11376618,-0.052148614,0.30239895,0.9748034,-0.24491332,-0.17217544,0.45775208,-0.32948405,-0.45151842,0.3765051,-0.48229617,0.17636791,-0.029872715,-0.14787665,-0.525964,0.26615188,0.25898057,0.14217807,-0.09631252,-0.39800093,-0.042757154,0.5731909,-0.40899548,-0.33585852,-0.39185625,0.3573478,0.79963905,-0.46035355,-0.26366836,-0.11439355,0.40779427,-0.21507233,-0.2963392,-0.09774894,-0.41563714,0.32028845,0.035316713,-0.30436298,-0.020829061,0.13854179,-0.2792609,0.102722846,0.18318804,-0.431199,0.060724005,-0.25770777,-0.015938204,1.075625,-0.102925666,0.083313465,-0.58435285,-0.57471406,-0.9660602,-0.25418955,0.3277761,0.23504315,-0.038931362,-0.4638235,0.09612127,0.08810495,-0.4284255,-0.07109019,-0.626679,0.439566,0.15064564,0.34592393,0.04132832,-0.90033084,-0.0033948696,0.17608956,-0.17549759,-0.4789777,0.5888395,-0.19005106,0.7176853,0.02456952,0.15610582,0.03834728,-0.36186415,0.2497468,-0.42380667,-0.063625425,-0.6161451,0.08728261 +347,0.4291949,-0.28821105,-0.71106386,-0.12129944,-0.37268382,-0.027653363,-0.21182603,0.54624397,0.25050074,-0.5028977,-0.15852854,-0.18383016,-0.07859042,0.38789803,-0.249407,-0.46107498,-0.023039054,0.21299127,-0.69224733,0.59743804,-0.20448416,0.11141658,-0.0017242096,0.53526026,0.34261507,0.10493975,-0.059664443,-0.035021074,-0.06099059,-0.043950677,0.037824493,0.15271431,-0.6682434,-0.027938053,-0.33765957,-0.48221505,-0.15640552,-0.4669638,-0.50707865,-0.93950623,0.45571402,-0.9058737,0.5210687,-0.061740004,-0.42553473,-0.05069153,0.16437262,0.39962265,-0.114681005,-0.16411337,0.20223443,0.030301169,-0.11375928,0.10518196,-0.16108516,-0.32096958,-0.6206835,0.12954542,-0.46218097,0.08994098,-0.11368542,0.24751246,-0.32515478,0.13325047,-0.20878886,0.679866,-0.33161226,-0.118939534,0.35328028,-0.06065856,0.37998587,-0.71117496,-0.08288991,-0.1432323,0.26624638,-0.07330812,-0.21838826,0.2934962,0.22071186,0.5560187,0.006501248,-0.29053843,-0.31525105,0.24530667,0.067377776,0.297794,-0.15979466,-0.45334184,-0.073844,0.10462396,0.336223,0.1955603,0.24068508,-0.36701393,-0.09886608,0.10730366,-0.222352,0.2477125,0.533958,-0.086039215,-0.1454721,0.2386143,0.6015279,0.40954676,-0.060985517,0.1921254,0.051872365,-0.534329,-0.1796698,0.0273794,-0.2667577,0.5597007,-0.12022557,0.2800716,0.52053636,-0.104080096,-0.12801477,0.049645577,0.015448865,-0.120589495,-0.3284876,-0.31647438,0.34004575,-0.38500684,0.34805256,-0.1975514,0.63058263,0.19827583,-0.7873212,0.22307442,-0.61693263,0.25876182,-0.040084146,0.45896274,0.8612313,0.51728475,0.28315327,0.8016251,-0.37894866,0.12778457,-0.04464195,-0.3355407,0.096489646,-0.34226853,-0.059377268,-0.45239997,-0.18496063,-0.24279864,-0.19552688,-0.020164296,0.40826428,-0.6148306,-0.09452794,-0.08563043,0.79137695,-0.14777172,-0.029990299,0.8091145,0.92071205,1.1453578,0.11385803,1.0815026,0.10972233,-0.2570765,0.35598737,-0.084516585,-0.9480829,0.3758359,0.264116,-0.2794487,0.293532,0.017397664,-0.033356618,0.6457786,-0.60004103,0.20367137,-0.16138303,0.13154055,0.040053997,-0.14386441,-0.3706106,-0.21249929,-0.07149233,-0.0071269907,-0.032188345,0.2349157,-0.121761486,0.32367426,0.021268666,1.7670696,-0.097141795,0.03284807,0.11914079,0.45011413,0.055550024,-0.18107408,-0.19574848,0.04833506,0.3665065,0.115276225,-0.54184675,0.007129524,-0.27482155,-0.43483698,-0.113169104,-0.20451069,-0.19336447,-0.19952112,-0.55286306,-0.3006562,-0.17055674,-0.3554056,0.36675102,-2.383348,-0.20917189,-0.10042316,0.319714,-0.35467768,-0.36342478,-0.0042778067,-0.6141705,0.5177165,0.35715333,0.33545065,-0.6689116,0.42082572,0.3731116,-0.56873935,0.070298344,-0.6704553,-0.14852257,0.12881675,0.26136687,0.0029514097,-0.16816798,0.13364862,0.17436108,0.34579697,0.016882375,0.10900734,0.34322694,0.29767948,0.05898597,0.53200233,-0.17019232,0.4833431,-0.3351877,-0.17474595,0.41768232,-0.406267,0.18855245,-0.098478064,0.10397195,0.539731,-0.62280875,-0.87108254,-0.66880906,-0.19268373,1.2167766,-0.105017334,-0.39281476,0.32381177,-0.5843193,0.048237577,-0.10951227,0.56639326,-0.0072506703,0.0049633086,-0.8811352,-0.09299533,-0.1515471,0.2070709,0.0148293255,-0.08476448,-0.43143532,0.5300136,0.019132506,0.47553158,0.5500299,0.09470428,-0.21750623,-0.6848333,0.15341505,0.8885836,0.4015117,0.20140457,-0.27303588,0.0016714036,-0.54917186,0.021096379,0.0675202,0.47929007,0.8081669,-0.0952376,0.21774411,0.17617847,0.06299934,0.11285957,-0.24978155,-0.43298316,-0.25236496,0.061837226,0.5800404,0.73695123,-0.13972837,0.47403225,-0.12986808,0.33152568,-0.2609108,-0.35478693,0.5430726,1.0894958,-0.37963408,-0.2929873,0.57516927,0.49000758,-0.20123422,0.5049173,-0.5023125,-0.35228658,0.5116271,-0.12085181,-0.5087906,0.24875745,-0.37025934,0.26405725,-0.94107527,0.2781623,-0.39999115,-0.27880898,-0.67672044,-0.07790632,-2.3580751,0.17259549,-0.21630791,-0.17818367,-0.23644283,-0.25051373,0.28494114,-0.58261776,-0.8713112,0.06923823,0.047907416,0.74824184,-0.105976,0.10402401,-0.10769802,-0.25352016,-0.3150311,0.08781539,0.42631307,0.31141454,0.01039584,-0.6362337,-0.24393527,-0.19538969,-0.35341677,-0.0028474052,-0.65516907,-0.5305294,-0.2773769,-0.63076407,-0.35466862,0.6111696,-0.099146396,0.038474716,-0.22852762,-0.09523067,0.027793135,0.33205503,0.004744237,0.20402768,0.09292861,-0.09124361,-0.0041619837,-0.112200916,0.03605943,0.0928049,0.18718548,0.24619173,-0.20351325,0.44968075,0.65270203,0.9575223,-0.37614703,0.90970504,0.69054073,-0.09315187,0.3090247,-0.2761229,-0.35793197,-0.6143017,-0.057693187,0.10938047,-0.43937272,-0.42367145,0.1672279,-0.4959618,-0.8070546,0.68251777,-0.15308553,0.24459025,0.14264764,-0.032173418,0.5861672,-0.24514154,0.00017437339,-0.19086762,-0.12274424,-0.51014495,-0.38641527,-0.5508378,-0.59653807,-0.14114857,1.3173242,-0.052510068,-0.034550734,0.24981335,-0.25080287,0.13070239,0.07702948,-0.02962742,0.20031081,0.42852664,-0.13950361,-0.76787806,0.26360595,0.05581928,-0.047175247,-0.5518088,0.25386465,0.65078294,-0.6364436,0.5715741,0.22686222,-0.061946914,-0.28747073,-0.60323465,-0.0117738135,0.058543466,-0.24396631,0.5402713,0.3325423,-0.65591806,0.34512037,0.36967546,-0.18553938,-0.8323062,0.481822,-0.07038048,-0.16767436,-0.10869146,0.36899552,-0.029927567,0.038277354,-0.22171472,0.10213732,-0.3034458,0.2455086,0.37456328,-0.14472976,0.25686032,-0.24581403,0.09777418,-0.74744916,0.20323814,-0.5362028,-0.18917094,0.38444534,0.11278857,0.10711317,0.06680924,0.23783153,0.30069053,-0.26359597,0.07681193,-0.105846375,-0.322583,0.31243974,0.51705945,0.47287083,-0.5708442,0.6194289,-0.0042118244,-0.22016971,0.004195139,0.00803078,0.40877643,0.022853822,0.2726067,0.15206897,-0.21703202,0.13414025,0.8360461,0.04254581,0.48896223,0.01297117,-0.13081574,0.06855748,0.14223307,0.13629466,-0.020723939,-0.71084976,0.038183622,-0.19054782,0.11471166,0.53135914,0.13417384,0.22029614,-0.04238718,-0.36532494,-0.08764583,0.07748085,-0.08450776,-1.5997167,0.44131818,0.18917438,0.87932813,0.6255944,0.10597595,-0.05763654,0.49466118,-0.1770477,0.16678864,0.59550214,0.009297178,-0.49679723,0.4944925,-0.775225,0.52496815,-0.030497469,0.08725366,0.08722445,0.09570095,0.4616334,0.70933497,-0.115656845,0.0788899,-0.012162376,-0.25502908,0.09952789,-0.3248328,-0.0871189,-0.5702345,-0.31927356,0.6365249,0.52757394,0.32426995,-0.28559667,0.056501046,0.14965153,-0.14713357,0.19501083,-0.004965726,0.05443295,-0.1387026,-0.70840585,-0.10506822,0.48861367,-0.07992062,0.030167159,-0.04121197,-0.25759378,0.21388713,-0.15824264,0.05767907,-0.07146526,-0.8702571,-0.1656131,-0.5317817,-0.23576252,0.32789806,-0.17128736,0.13726336,0.23088966,0.13386534,-0.4410317,0.39755318,-0.14442451,0.7544006,-0.15867752,-0.08957036,-0.32362345,0.22336426,0.25000423,-0.22588758,-0.09510277,-0.11295687,0.0282881,-0.37272385,0.443318,0.06464506,-0.32947108,0.13461494,-0.021916721,-0.03897445,0.4506,-0.2636967,-0.19551963,0.064535186,0.036632862,-0.26034814,-0.26313207,-0.09657502,0.18765019,0.17082623,0.07452943,-0.18838236,-0.110370114,-0.064106695,0.56719834,0.033111334,0.3836432,0.54801214,0.09537331,-0.48702154,-0.06403579,0.33307636,0.60400057,0.07466239,-0.17935526,-0.46661323,-0.30200142,-0.3416547,0.17749259,-0.089830466,0.40286523,0.100445166,-0.2230694,0.7491839,0.22089754,1.2519238,0.01819296,-0.34967124,0.066230014,0.3416072,-0.039870262,-0.15832752,-0.5266115,0.7810025,0.42634046,-0.16308415,-0.18630773,-0.32245877,-0.0631741,0.1431145,-0.15611249,-0.11667544,-0.107960515,-0.7059681,-0.26232204,0.22900023,0.3376382,0.16404976,-0.18633384,0.04060767,0.3620599,-0.027917162,0.2876331,-0.44940138,-0.23009318,0.3206846,0.2082142,-0.05311752,0.06024859,-0.52132565,0.37453538,-0.4390359,-0.07576633,-0.18869102,0.110627085,-0.11719543,-0.3335291,0.25697014,-0.054188747,0.36704227,-0.32227215,-0.31644845,-0.28467134,0.54779387,-0.023444533,0.15453026,0.6626734,-0.27142507,0.0013833418,0.06412703,0.55046654,0.9310859,-0.29598114,0.09414067,0.20143351,-0.1947142,-0.6272427,0.34719118,-0.29672644,0.14813668,-0.028384045,-0.23652977,-0.6007786,0.1901368,0.1470383,-0.017991893,-0.013108939,-0.7663897,-0.16058691,0.45623094,-0.21108225,-0.15936248,-0.42354605,0.0041963086,0.4277857,-0.14079314,-0.4451081,0.12813997,0.33171403,-0.053322405,-0.4626217,-0.07482268,-0.33066365,0.20829701,0.113053784,-0.55527073,-0.17663312,0.0967851,-0.49472147,0.1619609,0.18351072,-0.3080482,0.0034329025,-0.317862,-0.104826376,1.1307744,-0.17785211,0.18007472,-0.2960259,-0.48644674,-0.97070175,-0.3288002,0.286609,0.34376848,0.015404712,-0.80537117,-0.08043942,-0.22667754,-0.15435304,-0.0057313293,-0.16462919,0.50886464,0.20084783,0.58487743,-0.07419771,-0.59506655,0.20106757,0.12862015,-0.02879234,-0.33308712,0.6409602,0.12272835,0.811031,0.0071454816,0.20208997,0.20805535,-0.46178627,-0.06107994,-0.1486339,-0.1664623,-0.5967696,-0.08169547 +348,0.3876429,-0.18664272,-0.5069942,0.02134613,-0.17535135,-0.10613557,-0.21562098,0.48356503,0.45176634,-0.22442818,-0.19536597,0.08726204,-0.111502126,0.40871271,-0.112401694,-0.6039013,-0.013224572,0.2479984,-0.50169015,0.8837276,-0.28531948,0.18447,-0.13432676,0.47638825,0.2545807,0.23529524,-0.0121126175,0.118360646,-0.081548944,-0.38927764,0.21377994,0.3614601,-0.66635776,0.35376278,-0.27999032,-0.2650374,-0.06589646,-0.4144182,-0.46459764,-0.98513633,0.49262273,-0.69557977,0.47460657,0.1085261,-0.36317137,0.0077195647,0.06123648,0.17687255,-0.11367352,-0.2709281,0.19763364,-0.25831622,-0.16151112,-0.2590078,0.09040487,-0.14649917,-0.6671292,-0.08550509,-0.31738418,0.061888464,-0.47975776,0.19620745,-0.5198525,-0.060672306,-0.21109769,0.65722936,-0.38475227,0.13231611,0.22042535,-0.14754918,0.2990718,-0.74593765,-0.41061804,-0.14620373,0.105115965,0.15511939,-0.38074446,0.50728637,0.17895801,0.39683214,0.04426463,-0.19420351,-0.29479483,-0.059556916,0.32182333,0.32273707,-0.32969353,-0.55923784,-0.121000245,0.04084518,0.22269113,0.17912841,0.11356827,-0.20216924,-0.09767525,-0.01707713,0.025830576,0.49908823,0.62406254,-0.089524716,-0.21547724,0.11616153,0.47254127,0.4653358,0.0037533469,-0.06687843,-0.016400779,-0.59415776,-0.2548065,-0.21921876,-0.40960932,0.59203357,-0.19000901,0.12305093,0.6288601,-0.16133715,-0.3131717,0.22515774,0.18475477,0.1489119,-0.39487204,-0.28459984,0.43181625,-0.54565364,0.26240417,-0.15368894,0.63277733,0.042845942,-0.5552539,0.2531211,-0.6266914,0.22776556,0.00716305,0.52889884,0.70633703,0.5351506,0.5168439,0.85522306,-0.4077935,0.046565533,0.05961385,-0.25923353,0.25849596,-0.27240112,0.0010204866,-0.4424059,-0.16716614,-0.14905277,-0.24297017,0.14931136,0.5043893,-0.6262547,-0.23036702,-0.0048522213,0.67120945,-0.13581382,0.16514191,0.87825453,1.111375,1.2728144,0.09897543,1.3431786,-0.2151255,-0.18001844,-0.01730145,0.0027805795,-0.90816087,0.2493097,0.22778085,-0.14702769,0.18264134,0.030011466,-0.03963745,0.50540173,-0.5790252,-0.18657218,-0.15943876,0.68969566,0.05407194,-0.28937933,-0.4903583,-0.3158043,-0.29314747,0.17225811,-0.17727455,0.41829398,-0.04143382,0.36083362,0.17216443,1.2949469,-0.23350382,0.06721553,0.16836683,0.37257642,0.25835568,-0.20908943,-0.15567572,0.21463276,0.103472464,0.2539833,-0.5207263,0.022166077,-0.3022641,-0.4905942,-0.1121327,-0.26606575,-0.024587473,0.0100284815,-0.12240854,-0.34796715,-0.2976258,-0.22129983,0.47137088,-2.3464637,-0.25000334,0.04014292,0.40191334,-0.18353179,-0.24867454,-0.0067770206,-0.4890668,0.52002394,0.14184743,0.62332016,-0.7353181,0.009338581,0.6411813,-0.90611655,-0.0024647897,-0.4623885,-0.19640256,0.14975391,0.44582468,0.089486875,0.024308534,-0.124876745,0.09431279,0.39179233,0.19690941,0.17502785,0.4149244,0.35276377,-0.39584392,0.26526362,-0.16215202,0.501654,-0.24718522,-0.2729199,0.32089064,-0.2653989,0.465957,-0.4349078,-0.057949882,0.6151262,-0.45446718,-0.82877064,-0.42539662,-0.047028914,1.2838943,0.044191938,-0.7242336,0.34370327,-0.7374316,-0.22097294,-0.10952,0.4941638,-0.18347114,-0.06713031,-0.7649578,-0.006371943,-0.17892505,0.074309126,0.08363937,-0.14492978,-0.5301145,0.84176505,0.121487334,0.3930348,0.57646513,0.057699926,-0.41720805,-0.5181011,-0.014344981,0.875266,0.72409,0.2361928,-0.38077897,-0.112915,-0.33613592,-0.27298287,-0.017790588,0.85000384,0.6080356,-0.28427,0.08798493,0.30275786,0.0017793855,0.029773759,-0.15268272,-0.40592638,-0.21194611,-0.0071705487,0.7667736,1.1604253,-0.2907014,0.20412137,0.15800689,0.22516412,0.08478913,-0.46802956,0.61358005,1.3918096,-0.1889627,-0.20245793,0.912092,0.30574408,-0.26077315,0.5291323,-0.36185944,-0.3743506,0.48646098,-0.0729465,-0.52032274,0.131336,-0.39345816,0.096811645,-0.6865015,0.5386416,-0.63437366,-0.39074376,-0.638004,-0.034919508,-2.2552419,0.2869151,-0.4424842,0.004715507,-0.37509468,-0.061413866,0.07085352,-0.59847534,-0.9134922,0.30610254,0.12172398,0.72073835,-0.373671,-0.047000412,-0.055119373,-0.4936486,-0.23312418,0.21956037,0.24042009,0.36942676,-0.0052910307,-0.4827259,-0.10305312,0.07544072,-0.44752738,0.07431816,-0.4340959,-0.67081255,-0.13780929,-0.6033333,-0.21748474,0.66903436,-0.091526344,-0.06900522,-0.28153366,-0.013549044,0.03405808,0.016707998,-0.09689255,0.25442603,0.13508298,-0.09666211,-0.110044464,0.04028302,0.18122555,-0.10635888,0.5145227,0.4231621,-0.21643823,0.25531504,0.5433839,0.78711534,-0.38195986,1.074835,0.6044227,-0.15989979,0.15801474,-0.18273316,-0.587924,-0.64083,-0.2758962,0.35699382,-0.3907049,-0.40465072,0.034384258,-0.4085298,-0.72077173,0.8228057,0.047542036,0.24814218,-0.03571022,0.11295342,0.42418802,-0.2754546,-0.016103717,-0.15696804,-0.15720378,-0.72069156,-0.14330162,-0.6177034,-0.49467343,0.08479946,0.9293979,-0.51113534,-0.0003110262,0.3728733,-0.2353089,0.007140412,0.14241098,-0.20339495,-0.031640146,0.51631814,0.23208846,-0.62122285,0.47991842,0.2241804,0.091537714,-0.43433154,0.34855586,0.5801944,-0.6080202,0.7569166,0.51683164,-0.17630202,-0.279047,-0.8315488,-0.16516624,0.021714078,-0.2718709,0.53879887,0.45577034,-0.7398981,0.49515527,0.34979752,-0.52079076,-0.76958644,0.4996083,-0.22673157,-0.35094362,-0.19655667,0.51547563,-0.06381333,0.08205526,0.003916172,0.56825066,-0.3214484,0.28438357,0.17231956,-0.23249221,-0.12763889,-0.25802666,-0.30730122,-1.050886,0.134999,-0.6205425,-0.2910679,0.4055789,-0.050552167,-0.2269532,0.046799514,0.6523853,0.4321039,-0.27006626,0.1558489,-0.15510324,-0.48277473,0.46830118,0.56407297,0.76960033,-0.40802157,0.557383,0.00067799364,-0.1445013,-0.04669763,0.0124380225,0.43931177,0.044056144,0.42646152,0.09556697,-0.09071673,-0.079165176,0.97943693,-0.065761775,0.23999701,0.014657784,-0.0003700073,0.15591563,0.09692733,0.54538786,-0.17468666,-0.6864463,0.14517961,-0.33028427,-0.058473267,0.5354395,0.27293116,0.049939614,-0.09696536,-0.54327095,-0.18557207,0.18853566,0.14725107,-1.654298,0.5648782,0.21223116,0.8727373,0.63655955,0.15337904,-0.01027463,0.77760816,0.011018847,0.035574943,0.44603646,0.05472485,-0.48104456,0.4261659,-0.83379513,0.41144282,0.08380491,0.12411002,0.035331782,-0.08857993,0.38534242,0.720973,-0.25696895,-0.16289026,-0.15119076,-0.3925991,0.26054832,-0.42616162,-0.0024684025,-0.5562157,-0.52645457,0.71229565,0.6383059,0.30678904,-0.24983913,0.14498848,0.05041673,-0.15603524,0.46794412,-0.078713425,-0.014022728,-0.10371364,-0.5631931,0.16572969,0.35749975,0.013668476,0.06837379,-0.26227495,-0.041496873,0.16727759,-0.27312994,-0.058236003,-0.20900416,-0.90886337,-0.088520035,-0.61371607,-0.23518173,0.45909324,-0.19011556,0.14478198,0.22106808,0.19950669,-0.26143557,0.32847688,-0.19569151,0.5827695,-0.04534988,-0.1587778,-0.12762672,0.30795905,0.056828592,-0.22743274,0.21185732,0.0049261954,0.12754324,-0.449165,0.6692415,0.013740425,-0.209599,-0.103401735,-0.13264059,-0.024806576,0.48871803,-0.28065968,-0.28307375,-0.22936867,-0.18792024,-0.17399652,-0.3625738,0.061696008,0.11295373,0.38533732,-0.044668134,-0.30551293,-0.17750655,-0.19449936,0.20982035,-0.026246913,0.24650995,0.30714655,0.07506873,-0.47070795,0.017657725,0.30555412,0.50486827,2.6409443e-06,-0.12003733,-0.30089098,-0.5007382,-0.50985914,0.15357842,-0.046614766,0.4276001,0.03203437,-0.1251167,0.6322666,0.14634898,1.0355453,0.048200544,-0.24795988,0.006697838,0.6796811,-0.3006089,-0.18907312,-0.30102545,0.8359076,0.39209753,-0.35816628,-0.016803902,-0.44122,0.38925013,0.2279206,-0.2655972,0.05986581,0.08021133,-0.53007257,-0.11609534,0.2189936,0.43461022,-0.10159469,-0.28643098,-0.2031564,0.3933831,0.21297397,0.1662382,-0.48722583,-0.30336016,0.49166033,0.14071155,0.20444734,0.0808223,-0.42013088,0.36059028,-0.47049987,0.30036908,-0.20157844,0.12322032,-0.3111809,-0.392979,0.2487029,-0.11158239,0.31255367,-0.4405897,-0.31897634,-0.21911496,0.11874855,0.20791326,0.053975448,0.5963918,-0.43375447,-0.14440924,0.25477946,0.5202706,1.0028943,-0.22185895,-0.082287826,0.23749647,-0.40412372,-0.54178846,0.45174375,-0.3007874,-0.08334536,-0.112574786,-0.27438393,-0.8673789,0.07578157,0.1131854,0.082469776,-0.095278755,-0.9050559,-0.22328869,0.081909984,-0.29640183,-0.10224851,-0.251107,-0.08306206,0.74865735,-0.112294436,-0.5794458,0.19336702,-0.0012663695,-0.22828855,-0.61996084,0.030023463,-0.41631475,0.25244263,-0.0026779014,-0.47193888,-0.20667087,0.23487212,-0.57193387,0.106504455,0.13666534,-0.3330256,-0.024548402,-0.3887351,0.043456852,0.88172597,-0.60424924,0.50470215,-0.0123265525,-0.40933686,-0.737028,-0.113928705,0.37764263,-0.039561264,0.08003687,-0.86980784,-0.05644393,-0.16971175,0.13350764,-0.11525807,-0.34559676,0.57474935,0.08406369,0.27508724,-0.26827157,-0.7509229,0.29883748,0.24007735,-0.024050327,-0.4742738,0.49101228,0.0015079471,0.7179482,0.06933732,0.02967745,0.12303138,-0.5509468,0.1289617,0.07881904,-0.19726755,-0.43189934,0.023863632 +349,0.2799495,-0.22101761,-0.5632244,-0.090169854,-0.28618804,-0.18961337,-0.2204801,0.38622993,0.12951103,-0.04724788,-0.20660962,-0.11066878,0.13826096,0.332903,-0.12636794,-0.4615941,-0.262901,0.1104493,-0.6596681,0.6132912,-0.5156348,0.1062896,0.01929852,0.4792257,0.25334686,0.43722084,0.14895001,-0.026791487,-0.07030252,-0.042538624,-0.14911686,0.29804403,-0.49076816,-0.14746693,-0.26235068,-0.394176,0.06482848,-0.52297735,-0.2795492,-0.70615333,0.3522227,-0.97381645,0.5025805,-0.020339876,-0.12154686,0.12485636,0.36120978,0.26432988,-0.40297765,-0.10032814,0.12333039,-0.027699862,-0.023994574,-0.23605146,-0.010565494,-0.24096155,-0.47145972,-0.05026507,-0.50778854,-0.27080482,-0.2474976,0.1341324,-0.34694523,0.097314365,-0.20904247,0.44213468,-0.41063753,-0.06892107,0.16963594,-0.2244788,0.32806158,-0.5972255,-0.021807143,-0.0662443,0.4960317,-0.16753305,-0.10669653,0.37049484,0.34631154,0.2952557,0.12894566,-0.23954234,-0.35023493,-0.1485311,-0.016779976,0.40195546,-0.21636678,-0.5294167,-0.16874684,0.10440813,0.13374522,0.41498134,-0.022248974,-0.03361569,0.02813716,-0.08766969,-0.14892046,0.4292457,0.43406913,-0.27049178,-0.40460292,0.22136497,0.5017726,0.33183286,-0.2868559,-0.1896449,0.0007221252,-0.5152403,-0.11951876,-0.020808471,-0.08175522,0.6090638,-0.07964543,0.24037018,0.7644253,-0.07363839,0.029834509,-0.11140644,-0.04428306,-0.27194992,-0.3780149,-0.18495162,0.14218703,-0.46964496,0.22187044,-0.16818318,0.5464146,0.028249476,-0.6208982,0.48480755,-0.60224974,0.12221086,0.015876105,0.47540018,0.5818594,0.22726324,0.5019875,0.55280656,-0.16727448,0.14571175,-0.08150844,-0.46336713,0.06405033,-0.12067044,0.17535487,-0.54059994,0.07157456,-0.017144416,0.0697767,0.14217773,0.3865695,-0.44436735,-0.027030254,0.36206594,0.7362334,-0.3347458,-0.033164356,0.6712502,1.0896496,0.947197,-0.035392437,1.0941546,0.11735999,-0.23409748,0.25335044,-0.2794105,-0.7576538,0.19322965,0.43440375,-0.19113244,0.33687702,-0.053485252,0.0010198696,0.37620422,-0.3356969,-0.0124646975,0.016131673,0.18916328,0.20563848,-0.008920239,-0.5630252,-0.21631159,-0.042320807,0.03395078,0.18470834,0.18478803,-0.15794775,0.26156497,-0.071373485,1.5536368,-0.09808683,0.11278153,0.19142997,0.6705891,0.28692725,-0.0295156,-0.16308282,0.40849558,0.3643478,0.111125596,-0.6102115,0.3083989,-0.36791855,-0.39224127,-0.03785393,-0.44161654,-0.16192618,0.14869213,-0.49460587,-0.06089555,-0.07353012,-0.2757454,0.24700773,-3.085756,-0.17903028,-0.15817031,0.29022428,-0.2561539,-0.20516798,-0.015393534,-0.50498706,0.24498908,0.3117669,0.5712789,-0.6416523,0.42856675,0.42280254,-0.49715632,-0.063603766,-0.6693858,-0.16735551,-0.020699484,0.5279208,-0.0028190443,-0.10502974,-0.06517802,0.34626052,0.6946059,0.17696452,0.1413741,0.41875857,0.34296554,0.12925184,0.6699147,-0.11543542,0.56759614,-0.29174858,-0.15939215,0.18666966,-0.17562042,0.19489472,-0.14061695,0.15265961,0.5617873,-0.5654809,-1.025813,-0.5235351,-0.24996032,0.9899737,-0.36479086,-0.31586075,0.2930842,-0.41114405,-0.16547091,-0.03538125,0.5666913,-0.22193244,0.09468552,-0.7170808,0.14675386,-0.22013395,0.18188599,0.078942455,-0.022078259,-0.43111163,0.6521336,0.022701478,0.6537624,0.29625273,0.13070132,-0.23363034,-0.36849195,0.12791212,0.69726837,0.23202784,-0.08261431,-0.17024218,-0.23998079,0.025686452,-0.10962306,0.044036668,0.48240587,0.63076836,0.006130866,0.2604691,0.23630312,-0.05804453,0.0425317,-0.08259074,-0.06153634,-0.06079781,0.11139796,0.4315894,0.7044017,-0.21106423,0.40564185,-0.24410285,0.44283018,-0.07943093,-0.46949816,0.59970385,0.61006916,-0.14317057,-0.03466715,0.62675625,0.56861573,-0.41591686,0.46486384,-0.5551251,-0.14236902,0.64405686,-0.20945333,-0.35381645,0.27890018,-0.27299136,0.12372417,-0.7656975,0.08094524,-0.19995157,-0.3160004,-0.38518152,-0.20442548,-3.589677,0.16764006,-0.17233774,-0.21242966,-0.3077951,-0.26188633,0.30700347,-0.7373549,-0.6963504,0.16780289,0.17422147,0.61606425,-0.11620875,0.09572685,-0.25463343,-0.27988246,-0.064238906,0.24591634,0.2730803,0.36675677,-0.110149756,-0.45514473,-0.08931506,-0.02179685,-0.5780389,0.10999192,-0.6263767,-0.3139806,-0.025370521,-0.6647693,-0.2010735,0.6021853,-0.2450966,-0.006232125,-0.23751402,0.025353815,-0.21461865,0.22255863,0.15361723,0.24170838,0.155206,0.15186831,0.27254924,-0.36541754,0.4717948,-0.025566015,0.33438468,0.08460718,0.07091992,0.14786133,0.43119717,0.6005753,-0.21811111,1.0934632,0.5441454,-0.1047193,0.20536889,-0.33729884,-0.24825236,-0.74177796,-0.3964302,-0.053760678,-0.38406724,-0.55909413,-0.063868314,-0.25255683,-0.7131413,0.7329544,-0.08749991,0.39288494,-0.008474575,0.30005607,0.39877334,-0.20745413,0.010224031,-0.0142499665,-0.15794598,-0.5816987,-0.18919554,-0.5934804,-0.53820825,-0.15053819,0.67180216,-0.25133103,0.0017372774,-0.06505454,-0.37807807,0.05610638,0.10920281,0.20827067,0.49420705,0.57201916,-0.0013526423,-0.57217973,0.4318466,-0.058596995,-0.23479298,-0.39332995,-0.03168098,0.48642674,-0.76271826,0.68188816,0.345216,0.08407533,-0.09639237,-0.49439627,-0.32698426,0.04668538,-0.10276383,0.51067615,0.27348694,-0.9294142,0.5693463,0.25305483,-0.3205728,-0.7030757,0.43054706,-0.12355473,-0.35323763,-0.25078565,0.30605975,0.037290633,-0.024825973,-0.09598706,0.19882457,-0.31157497,0.19095527,0.16307713,-0.045650218,0.29953837,-0.1582553,-0.08951122,-0.7024611,0.10404987,-0.43524432,-0.17531082,0.43097052,-0.018234462,-0.018696764,0.093941554,-0.061303575,0.2227784,-0.3379414,0.15671237,0.10758751,-0.26064733,0.15206024,0.4001289,0.34813064,-0.45792508,0.48343626,-0.0032303163,-0.23992153,0.21968272,-0.14523962,0.3545676,-0.20852473,0.3577941,-0.17174862,-0.26994243,0.415909,0.69011676,0.20303848,0.35749313,-0.015948722,0.05527773,0.39770794,-0.026455551,0.033648577,0.08267731,-0.53832144,0.06886741,-0.15571491,0.09186085,0.48502275,0.26541096,0.17869738,-0.014504467,-0.19843149,-0.018032888,0.24699365,-0.01672422,-1.0262333,0.3691821,0.13906579,0.8021057,0.508225,0.15347083,-0.273965,0.6684573,-0.39221933,0.04383201,0.50469035,0.1950341,-0.49955526,0.7754594,-0.49729726,0.55843115,-0.08403605,-0.13387762,0.07214207,0.026426481,0.29593083,0.7618758,-0.26373592,0.06302615,0.05361599,-0.13661753,-0.009460279,-0.26654598,-0.12232035,-0.3506926,-0.25089094,0.7327463,0.46059364,0.36374384,-0.16084753,-0.14270474,-0.05805134,-0.1785403,0.09925077,-0.039565686,0.039375424,0.13465817,-0.62124527,-0.13481216,0.5200495,0.19838156,0.2832511,-0.25739327,-0.41464907,0.19637212,-0.18903668,-0.08471494,0.02696672,-0.67265874,0.1340154,-0.2427498,-0.61916035,0.47505453,-0.30657294,0.17616318,0.14304794,-0.025990931,-0.22284304,0.3095445,0.10933064,0.77051556,-0.07874964,-0.08626352,-0.33369663,0.030034548,0.18291728,-0.16608839,-0.13994026,-0.5040816,0.11281668,-0.42072996,0.59582853,-0.0044471705,-0.4497574,0.023711175,-0.13622436,-0.019207165,0.6103553,0.012096056,-0.12218244,-0.1409467,-0.1034193,-0.31429988,-0.1569158,-0.25867826,0.25327972,0.26743,0.06746641,-0.12517011,-0.123959385,-0.14596272,0.7499055,-0.047357697,0.6268792,0.28278056,0.15464678,-0.04430912,-0.05992835,0.24059132,0.5689503,-0.031416096,-0.028249076,-0.47222218,-0.38872674,-0.20662867,0.10575043,-0.053862114,0.21571279,0.17706597,-0.18296294,0.8077939,-0.060056586,1.0468524,0.12867986,-0.41858527,0.085194774,0.4861861,-0.19082543,-0.029887626,-0.31454477,0.95615864,0.5219046,-0.15461151,-0.15580805,-0.2708509,0.049251895,0.19478825,-0.34721926,-0.03124025,-0.21113563,-0.44437966,-0.3062401,0.2019717,0.1841131,0.23171118,-0.08328766,0.099003434,0.06333395,0.094460726,0.4388762,-0.5468217,-0.27249646,0.32567477,0.120205335,-0.067790955,0.23669136,-0.47287676,0.46570283,-0.4992577,0.12053461,-0.6387252,0.21023308,-0.18420386,-0.3968027,0.034657028,-0.13359454,0.48418358,-0.23667665,-0.27884078,-0.14697734,0.36550888,0.0266571,0.10384822,0.6134887,-0.16319276,0.09782999,0.025469085,0.61588466,1.0409716,-0.32219052,-0.021804312,0.18720534,-0.2924902,-0.52819294,0.27490753,-0.35289028,-0.047681298,-0.030574856,-0.2771302,-0.5076715,0.10494547,0.12527001,-0.022883907,-0.10972514,-0.4967093,-0.1979274,0.2837712,-0.2728005,-0.17184344,-0.22568855,0.23136976,0.75324917,-0.24301922,-0.27632278,0.054750483,0.1856159,-0.09087928,-0.45001355,-0.014597939,-0.27448258,0.41573018,0.1639245,-0.35286373,-0.09915595,0.196282,-0.40660164,0.18920837,0.23950633,-0.3102451,0.057528336,-0.3433877,-0.122619696,1.195278,-0.21620813,-0.0022366047,-0.51761335,-0.5378149,-0.9199398,-0.38949618,0.34030333,0.010301812,0.1464959,-0.38683796,0.09803771,-0.095313735,-0.2950382,-0.02056302,-0.37907144,0.35215065,0.0795596,0.63703763,-0.23646137,-0.7444898,0.07212988,0.11529744,-0.033533864,-0.5570709,0.7093114,-0.03408989,0.73554426,0.055035226,-0.037417788,0.08280493,-0.26624745,-0.07089477,-0.36291203,-0.034860827,-0.8033716,-0.04121675 +350,0.5089712,-0.31802735,-0.81285536,-0.20682365,-0.29452607,0.07975662,-0.1473373,0.42172706,0.13501471,-0.65249616,-0.21798259,-0.2847972,0.05220417,0.67694336,-0.21712185,-0.7668041,-0.2597593,0.006675777,-0.7933204,0.6561151,-0.25887898,0.3726556,0.26541138,0.057820473,0.38751885,-0.06923194,0.3473206,-0.1534562,0.23960294,-0.2584112,-0.25109485,0.0607006,-0.62222636,0.35602877,-0.13707577,-0.5584494,-0.034295067,-0.46312657,-0.4076164,-0.6552139,0.269895,-0.9714027,0.72563213,0.12111172,-0.20074853,0.13387933,0.28955087,0.27715552,0.02326136,0.13082029,0.2170879,-0.00272756,-0.115934655,0.008931914,-0.47972992,-0.66956633,-0.5966206,-0.14012267,-0.70306814,-0.33159125,-0.20044747,0.009095442,-0.511053,0.11407154,-0.21393909,0.22439796,-0.494203,-0.19629388,0.18747951,-0.10352809,0.23024407,-0.60448587,-0.19591166,-0.18394302,0.23665819,-0.22497354,-0.13830763,0.25163922,0.24521047,0.45665914,0.014143915,-0.23653898,-0.08516416,-0.24949893,0.3344573,0.66848016,0.27825207,-0.45137805,-0.2591832,0.22696833,0.54334855,0.5287321,-0.016438575,-0.5679088,-0.20055428,-0.27489215,-0.19003941,0.6920268,0.38394654,-0.4140751,-0.29992402,0.52610755,0.4840655,0.33309102,-0.14853162,0.35076985,0.037164833,-0.4951659,-0.10176954,0.24721192,-0.13575892,0.5338282,-0.1221253,0.3015721,0.6558775,-0.35690418,0.043090414,-0.01637836,-0.11398752,-0.321167,-0.12325997,-0.20843767,0.19664723,-0.6763786,0.125656,-0.19692746,0.9740564,0.15428205,-0.71941084,0.24950868,-0.6266636,0.09042222,-0.16428037,0.7411204,0.6750451,0.37150052,0.19027595,0.9154637,-0.4577261,0.19600926,-0.27311823,-0.5537977,-0.22267394,-0.10671973,-0.22958437,-0.6291146,-0.03476964,-0.12603325,0.10132161,-0.11453269,0.7274886,-0.46377876,-0.1607779,-0.00037315759,0.80958056,-0.35599157,0.0009166869,0.77731586,0.8675379,1.175701,0.042630874,1.208012,0.11831212,-0.25416312,-0.10277519,0.04766869,-0.7391153,0.29848278,0.54800487,0.06646553,0.41807374,-0.067028545,0.24469486,0.030550253,-0.5167547,0.08045252,-0.14865208,0.34391123,-0.11817396,-0.077076904,-0.6222904,-0.18710397,-0.12378072,0.068394035,0.109081514,0.3399801,-0.15270065,0.43658936,0.08031785,1.4801277,-0.41164753,0.07708077,0.090351835,0.33137554,0.26276758,-0.17930788,-0.04520152,0.3466376,0.6228476,-0.00927477,-0.85679555,-0.08850505,-0.29851523,-0.38829133,-0.22095229,-0.49646062,-0.15948203,-0.18601255,-0.3818743,-0.11366271,0.04668224,-0.49740943,0.40910873,-2.4505863,-0.24345079,-0.30087128,0.1994449,-0.34711444,-0.32998216,-0.18550168,-0.64865214,0.3565489,0.33326617,0.5473697,-0.57681024,0.2942024,0.72427374,-0.5085642,-0.05259125,-0.70106757,-0.0641088,-0.13681696,0.33216354,-0.16102456,0.05522256,0.10318902,0.31691912,0.48353577,0.007343498,0.06874954,0.3404844,0.6639417,0.00024080276,0.6288882,-0.10542581,0.6941955,-0.40345404,-0.024268262,0.49479502,0.12604915,0.43996623,-0.30501482,0.1920001,0.5782924,-0.5734293,-0.7027149,-0.45288822,-0.54864204,1.1256211,-0.58832526,-0.3804819,0.32559454,0.11329207,-0.009009329,-0.08736748,0.44916105,-0.02431749,0.06978618,-0.7290934,0.12079305,-0.048468564,0.027617766,-0.09834595,-0.0566434,-0.35837862,0.6350061,-0.11360223,0.53464925,0.16812977,0.18999147,-0.14557022,-0.46903965,0.1772307,1.0866385,0.5432255,-0.039960314,-0.43261385,-0.23035145,-0.49335355,-0.07754011,-0.0026217157,0.3875429,0.80618286,-0.10269313,0.045443013,0.27368897,0.109699704,0.14462832,-0.18808016,-0.28713462,-0.034619704,-0.08162724,0.5690387,0.32978654,0.014631605,0.7313804,0.045041595,0.17019354,-0.301095,-0.58836645,0.36716473,0.8383,-0.08172953,-0.35807037,0.80143017,0.60011166,-0.12146699,0.5006595,-0.63712096,-0.37952605,0.63630116,-0.35188067,-0.5625674,0.51506203,-0.35946527,0.16921511,-1.0088692,0.104431204,-0.24024068,-0.38382876,-0.2523985,-0.107367344,-2.4417634,0.27485254,-0.22704378,-0.16429879,-0.14258566,-0.19218569,0.17259659,-0.42656282,-0.76915413,0.1629843,0.06948177,0.7128401,-0.111290194,0.08273411,-0.0706646,-0.19602905,-0.34861383,0.36362875,-0.120130904,0.38475922,-0.07729836,-0.40194806,-0.030381268,-0.07251071,-0.3255578,0.1177638,-0.37421626,-0.42183,-0.05867893,-0.51953846,-0.17542611,0.68213534,-0.20516528,-0.03924211,-0.009657302,0.009902882,0.13841489,0.103481166,0.072530314,0.17708446,0.07120922,-0.1266798,-0.16366754,-0.26133844,0.4661626,0.10521603,0.27469423,0.29694036,-0.16313982,0.22372168,0.45231116,0.44480088,-0.1702357,0.83543456,0.3175692,-0.21743408,0.17737347,-0.11657598,-0.26630542,-0.6994943,-0.2991741,-0.05853246,-0.46288407,-0.76052403,-0.09268414,-0.20689778,-0.8639101,0.5890058,0.23679328,0.5304054,-0.21861662,0.29185763,0.39277804,-0.057548415,0.032104794,0.03443941,-0.23054615,-0.550209,-0.3712389,-0.82863426,-0.4141241,0.21274537,1.3462348,-0.4319873,-0.16930579,-0.14443474,-0.33853987,0.20674363,-0.026514774,0.19655548,0.29669115,0.28807366,0.13139838,-0.58684254,0.6636208,-0.0145792635,-0.029795371,-0.41604242,0.13754381,0.7929523,-0.6297568,0.04186642,0.30811036,0.02668017,-0.12855572,-0.5367015,0.039261293,0.19425505,-0.31816968,0.35178262,0.1927453,-0.6500529,0.4092271,0.21537885,-0.22729798,-0.9369251,0.60843986,0.07882141,-0.16959228,0.09032758,0.42333964,0.17791034,-0.057100818,-0.41157445,0.29651618,-0.37893394,0.3899902,0.34129024,-0.0804283,0.27761707,-0.29246598,-0.44531262,-0.7727314,0.13607243,-0.5170458,-0.2592246,0.24311072,-0.017631533,0.095690794,0.3287449,-0.0062744725,0.4822672,-0.35033613,0.14083366,-0.00042222303,-0.31461117,0.6591506,0.3819462,0.37161618,-0.33179387,0.763602,0.17582594,-0.14865552,0.064825945,0.2493186,0.45051393,0.016683893,0.28412586,-0.013536015,-0.36390302,0.4240893,1.1368527,0.14923412,0.18434663,0.31700325,0.013011336,0.08002459,0.16170023,0.1272039,-0.09016326,-0.59825224,-0.2206133,-0.14767553,-0.012478124,0.54079145,0.18254758,0.3427514,-0.142396,-0.21157217,0.07268929,-0.005941467,-0.016185122,-1.1870773,0.10889853,0.08401413,0.65839,0.6030371,0.1227672,0.08644556,0.34005582,-0.41260484,0.025679938,0.22732696,0.09895923,-0.37884703,0.67839384,-0.47431853,0.6012075,-0.20373407,-0.02126903,0.19538894,0.0548194,0.39212912,1.0104923,-0.16299285,-0.0091793975,-0.04359258,-0.30409572,0.21695064,-0.4659565,0.004526344,-0.65526253,-0.47460088,0.7401404,0.4073005,0.274843,0.09236274,-0.074186176,0.005859765,-0.09306658,0.09500484,0.08752572,0.019350886,-0.04909217,-0.5186268,-0.12112133,0.59168166,0.05647708,0.090502314,-0.043199405,-0.19307798,0.2780042,-0.13619484,0.083043694,-0.013799516,-0.8408321,-0.16697152,-0.6072248,-0.60502714,0.083737165,-0.28732368,0.28485292,0.24283212,-0.14078422,-0.103037335,0.10247434,0.3843154,0.77187574,-0.19303657,-0.2143878,-0.40954277,0.11098025,0.21158639,-0.28693178,-0.057093356,-0.087908745,0.13659881,-0.86515695,0.59058297,-0.057623457,-0.41907704,0.06784095,-0.26040748,-0.17829247,0.6009707,-0.06932576,0.00900792,-0.051349856,-0.41201115,-0.32865298,-0.23073682,-0.2569082,0.19445838,0.12881361,-0.11873818,-0.11131742,0.050369024,0.036863707,0.26062036,-0.0029669187,0.35407087,0.25083694,0.09979921,-0.4606892,0.051043645,0.17706752,0.54148126,0.014944294,0.108548634,-0.045136616,-0.29722306,-0.3359788,0.12291931,-0.21831228,0.3246553,0.16794632,-0.27048934,0.73526025,0.14307469,1.0372028,0.12845224,-0.49321443,0.14649326,0.53370166,0.12035446,-0.2862302,-0.17182961,1.0820167,0.6508058,0.044513825,-0.30872703,-0.52190787,-0.23400389,0.22253461,-0.31943858,-0.16900617,0.33836517,-0.39525613,-0.29080993,0.3515061,0.021985842,0.18570599,-0.31161642,-0.03470006,0.20905614,0.024818247,0.3495545,-0.6742637,-0.27747074,0.05994372,0.11563821,0.05791438,0.082409926,-0.5655164,0.41394737,-0.79631007,0.22746111,-0.25103667,0.17358145,-0.092048906,-0.03446833,0.29314366,0.15017357,0.52904356,-0.39333865,-0.4594424,-0.20123562,0.74149036,-0.03239083,0.19503213,0.7952085,-0.3077367,0.15353036,-0.035328757,0.5336807,1.2995689,-0.11457232,0.043745376,0.39903033,-0.56576496,-0.7471064,0.34089032,-0.7893278,0.50738716,0.06965,-0.28214967,-0.33313182,0.33562323,0.23309174,0.09571753,0.11966608,-0.6235446,-0.14945564,0.34534088,-0.2861984,-0.28328478,-0.4555362,-0.05440725,0.6632714,-0.24952866,-0.32653582,0.06726727,0.20886122,-0.28193483,-0.78914547,0.027734486,0.0324126,0.15407392,0.012642189,-0.16348846,-0.027746003,0.03817972,-0.4658108,0.03146269,0.16259342,-0.26395184,0.08477233,-0.2674325,-0.039631642,1.0377537,-0.4432887,-0.39937228,-0.5868929,-0.55419594,-0.768554,-0.39381483,0.62205166,0.092442185,0.201277,-0.6074738,-0.0030019013,-0.111808494,0.12632363,0.034995016,-0.3021033,0.51365733,0.0943396,0.3355086,-0.06320444,-1.1704866,0.40891477,0.054628752,-0.36686116,-0.6499204,0.52456343,-0.078377254,0.7301786,0.23067011,-0.034917142,0.35183853,-0.6515842,0.25626156,-0.17140085,0.022899134,-0.8263118,0.19419384 +351,0.25476158,-0.1094178,-0.6950211,-0.13033952,-0.18008119,0.13865356,-0.2640089,0.37856397,0.03861251,-0.66222245,0.0089290785,-0.2752875,-0.14568739,0.17354834,-0.14796166,-0.57739884,-0.005749376,0.23050146,-0.3289893,0.76524967,-0.42612424,0.17126489,0.5229095,0.17236592,-0.041480195,0.0712705,0.34967616,-0.106648974,-0.17030473,-0.45338377,-0.083651714,0.08357238,-0.69535357,0.36279234,-0.16297327,-0.24595332,0.24289007,-0.28947583,-0.08132738,-0.7993788,0.048250783,-0.8998831,0.486509,0.0026749223,-0.37699497,0.3435718,0.2581862,0.048585277,-0.07991894,0.0144100385,0.21729481,-0.4378371,-0.3824931,-0.2501072,-0.39300922,-0.7024925,-0.5329239,-0.1834969,-0.48772526,-0.1616155,-0.34292403,0.15035138,-0.44675863,0.012061852,-0.47984496,0.34562492,-0.5040478,-0.08567283,0.052637067,-0.1417253,0.29688153,-0.65277725,-0.018688986,-0.154844,-0.12557875,0.2768691,-0.14261998,0.28646353,0.38209286,0.49518308,-0.0019297799,-0.18753637,-0.06064907,-0.3131381,0.1462835,0.37960157,-0.31303802,-0.22461021,-0.20540534,-0.18228577,0.50746703,0.6142877,0.053395066,-0.2158764,0.1748095,-0.18984117,-0.4524761,0.25482738,0.52424115,-0.24038915,0.026163762,0.3189884,0.15448594,0.08038718,-0.25293395,0.14018045,-0.12645476,-0.37023684,-0.12912683,0.33737707,-0.12030202,0.4726024,-0.036005937,0.073569804,0.69155437,-0.11734706,0.11219513,-0.07150431,-0.06597894,-0.052585647,-0.44087192,-0.3099467,0.46589446,-0.8378849,0.02642704,-0.5626773,0.6887424,-0.22865224,-0.7767949,0.306232,-0.4808217,0.06471505,-0.19212222,0.7464997,0.6249321,0.6770232,0.07108471,0.8714147,-0.4382198,-0.023328125,-0.22038521,-0.096960716,0.24000418,0.07177651,0.3099521,-0.35058674,0.03740074,0.007899329,-0.11336479,-0.20088488,0.39335904,-0.31471103,-0.31277558,0.2024525,0.80597514,-0.38236615,0.00036341944,0.49856755,1.2337013,0.8732662,0.12601475,1.1650809,0.32030615,-0.18758889,-0.1972572,0.32972163,-0.70546895,0.10000894,0.49745765,0.44814992,-0.022961637,0.068305105,-0.24529266,0.41611198,-0.22821842,-0.16476175,-0.21621476,0.23692967,-0.19935493,-0.14434786,-0.42196965,-0.1974958,0.16389383,-0.105519794,-0.0128831165,0.46659252,-0.11287755,0.49923047,0.25516894,1.3504158,-0.21428871,0.044997346,0.21192364,0.33784696,0.1529466,-0.014224701,0.23976481,0.45334098,0.3516558,-0.08766989,-0.5273281,0.2379746,-0.22833359,-0.6305646,-0.0595075,-0.48183298,-0.08098104,-0.24496908,-0.29584357,-0.20462257,-0.1077841,-0.4649888,0.26476616,-2.6084387,-0.0012758821,-0.2293734,0.14374171,-0.29121804,-0.18030906,0.02352115,-0.3891798,0.7319019,0.313113,0.44836316,-0.54488295,0.42120734,0.67432475,-0.1983332,0.046963964,-0.8729494,-0.21130145,-0.27244547,0.47761765,-0.095064424,-0.29117754,-0.016068816,0.021243116,0.70338774,0.24643324,0.32109246,0.37190065,0.40010038,-0.2690772,0.35802647,-0.020526528,0.61373895,-0.3377924,-0.18218513,0.13746552,-0.31422496,0.38074216,-0.25939694,0.15492527,0.4741834,-0.31711313,-0.41005465,-0.41754282,-0.33209717,1.1935071,-0.66718656,-0.674537,0.19230671,0.1739682,0.02702268,-0.13634093,0.5720983,-0.13630946,0.16370757,-0.5127535,-0.008071368,-0.09773055,0.3400537,-0.10531596,0.19872434,-0.39173308,0.8188023,-0.13847958,0.7253247,0.52165884,0.19276048,-0.3487948,-0.3193827,0.0015299817,0.8508244,0.40547776,0.012656915,-0.22295499,-0.12960567,-0.10682591,-0.22768807,0.14804296,0.636324,0.86955315,-0.08713106,0.064362206,0.33778176,-0.25807765,-0.095140256,-0.16506116,-0.63767415,-0.11106771,0.19347638,0.43925726,0.3744386,0.030793056,0.46490172,0.0345083,0.34519348,-0.31505296,-0.5193322,0.3071251,0.59480846,-0.23107804,-0.0723961,0.821707,0.7606707,-0.36575595,0.5546128,-0.64070517,-0.3798829,0.59269804,-0.08292795,-0.6967013,0.28836092,-0.23058385,-0.04497869,-0.7684538,0.14703505,-0.6146649,-0.5086475,-0.5188584,-0.05256459,-2.5876877,0.2542419,-0.20037991,-0.19350302,-0.31272623,-0.23784961,0.37867284,-0.41075826,-0.5397435,0.16325994,0.26017678,0.40245298,-0.018760601,-0.08287086,-0.40638718,-0.3399118,-0.010598862,0.31972995,-0.051395644,0.0010157848,-0.472236,-0.3980486,0.016055847,0.0025745258,-0.3024544,0.046197087,-0.49267352,-0.3940208,-0.14875247,-0.30911455,-0.22936516,0.6716244,-0.5358302,-0.013613584,-0.22328047,-0.014590498,-0.06712986,0.22493356,0.06406767,0.33201313,-0.2348241,-0.13808869,-0.0957944,-0.3967429,0.03272381,0.025698707,0.40667406,0.4067167,-0.21189575,0.045392554,0.5035663,0.490774,0.16695297,1.01713,0.20903015,-0.1207684,0.42437533,-0.14819334,-0.16285501,-0.73006153,-0.1197747,-0.14131683,-0.3673325,-0.40279898,0.08276337,-0.27710733,-0.6776485,0.67800933,0.34625217,0.08199886,-0.044913393,0.62772423,0.37760052,-0.11578863,0.009880826,-0.23924935,-0.16807795,-0.5592137,-0.30193663,-0.98067474,-0.36441913,0.14167584,0.8577635,-0.23048024,-0.23686959,0.10419971,-0.108173646,0.12610374,0.2140861,0.17677677,0.16397537,0.38723585,0.13630824,-0.7147978,0.6977388,0.15181883,0.0777772,-0.66740316,0.20760252,0.79122156,-0.7600562,0.41712785,0.52161574,-0.0007071197,-0.35983372,-0.8111717,-0.17499399,0.1081296,-0.194736,0.51836854,0.24613155,-1.0065136,0.51195866,0.30052865,-0.0014803087,-0.6985505,0.41459253,-0.25221604,-0.16856243,0.05829199,0.41237903,-0.021687618,0.14073516,0.015922084,0.08992093,-0.46506715,0.30415085,0.28091216,-0.19945748,0.46829474,-0.25588524,-0.14244054,-0.7800512,0.2777917,-0.5781681,-0.30946726,0.43053827,-0.19610412,-0.033299282,0.4771134,0.016611755,0.3895825,-0.21108705,0.2348814,-0.2482121,-0.38918567,0.63490707,0.47687754,0.43026552,-0.3610206,0.7769074,0.035869043,-0.3048377,-0.13083674,0.31109202,0.38954994,0.3294123,0.41208735,-0.32676023,-0.121078454,0.28616846,0.88902456,0.24285842,0.38007072,0.22141315,0.14853771,0.4230909,0.01963894,0.14602064,-0.05299555,-0.6150957,-0.20728463,-0.23312871,0.100161225,0.50341135,0.14932548,0.4997693,-0.07522278,0.1446571,0.025737813,0.17950737,0.0884361,-0.70990163,0.3313784,0.2241958,0.6108887,0.623506,0.06927816,-0.004722784,0.5511878,-0.38326526,0.20953031,0.3920842,0.18450217,-0.25621402,0.7916576,-0.697148,0.1511926,-0.19900943,0.15951277,0.084981196,0.02607719,0.4906238,1.0824673,-0.27179348,0.049664963,-0.099896275,-0.33925483,0.32330287,-0.21999459,0.06463956,-0.12883787,-0.6047004,0.45361838,0.14144722,0.33848774,-0.23470716,-0.16086744,0.22511458,-0.17336817,0.4371791,-0.003312568,0.027207606,-0.1444941,-0.28300187,-0.29921743,0.72431034,-0.11251631,0.17543583,0.03367095,-0.21168704,0.44149837,-0.09918946,-0.16718054,0.09099864,-0.6398772,0.25138658,-0.4049447,-0.64960426,0.46090436,-0.21787356,0.08442182,-0.006686432,0.0038060944,-0.11303956,0.016946608,0.28380224,0.44947073,-0.21365625,-0.22174436,-0.21599203,-0.20902438,7.0539616e-05,-0.37866628,-0.029908681,-0.016677383,0.10640836,-0.6993293,0.3601521,-0.4781185,-0.33094704,0.15727565,-0.14283516,-0.25767946,0.48995757,-0.094479404,-0.03751411,-0.10309147,-0.1525269,-0.29844382,-0.40614483,-0.15572406,0.23184407,-0.2803562,0.13484012,-0.21563756,-0.15185775,-0.00023208062,0.1643341,-0.0054317564,-0.008045803,0.34010413,0.22228368,-0.45746747,0.10031348,0.0056196055,0.40895247,-0.10428103,0.056030393,-0.16486281,-0.3508816,-0.28639254,0.10877827,-0.21686317,0.448447,0.09742426,-0.43177631,1.1401948,-0.13997042,0.8461825,0.049100194,-0.4386896,-0.13988197,0.5500126,-0.08080328,0.0143382205,-0.16533819,0.8281148,0.6706178,0.054727,0.008449872,-0.5149818,-0.17093657,0.5256259,-0.22224194,-0.2012664,-0.0013120522,-0.76284105,-0.066713594,0.1898063,0.36574867,0.07274269,-0.17337932,0.068345614,0.34328178,0.1970734,0.43243623,-0.55028564,0.08052619,0.23349774,0.1754273,-0.09392238,0.12769501,-0.3251996,0.23767602,-0.8106303,0.30719492,-0.52546984,-0.12966277,0.19294171,-0.1883566,0.06464921,-0.13619824,0.26203275,-0.12039578,-0.28526625,0.06357404,0.47063228,0.26789406,0.43583047,0.7520582,-0.20065916,0.14605549,0.04200073,0.5392572,1.3263569,-0.27443388,-0.27385107,0.15919496,-0.52829784,-0.9965935,0.17837518,-0.3621323,0.11378717,0.086969756,-0.5962482,-0.23755546,0.30687585,0.17985356,-0.38726756,0.08040962,-0.5132327,0.048086554,0.11898818,-0.30682537,-0.24927606,-0.33917335,0.23197965,0.82123655,-0.31774935,-0.19066758,-0.15743236,0.20444012,-0.4725883,-0.6930265,0.07357426,-0.46015653,0.34301963,0.12947495,-0.5209258,0.36616158,0.116821416,-0.60117227,0.17090903,0.12398253,-0.2146637,-0.08539203,-0.3058519,0.21969979,0.6540217,0.14091071,-0.44370928,-0.41985032,-0.73599,-0.5051055,-0.48089623,0.2387501,0.10864825,0.24522816,-0.52873784,0.088432826,-0.22178386,0.07486453,0.031113872,-0.4849328,0.41159964,0.2851101,0.48874307,-0.15369648,-0.83870906,0.16589251,-0.014458508,0.055259686,-0.4725987,0.5725243,-0.43252537,0.889514,0.1099622,0.0005075733,0.1784572,-0.66216296,0.38102254,-0.3709018,-0.30766448,-0.5827842,0.075113826 +352,0.30270267,-0.22076301,-0.6189473,0.14926556,-0.17274523,-0.18966845,-0.09590276,0.7959539,0.40552926,-0.19913363,-0.29734918,-0.12748644,-0.27541453,0.3970728,-0.07241086,-0.28980315,-0.38153383,0.31560233,-0.4212714,0.68298304,-0.12951788,0.20565715,-0.12247894,0.6605643,0.3843236,0.26793593,-0.26943463,0.15677586,-0.1166201,-0.31529796,0.12669301,0.41031557,-0.4728244,0.40231714,-0.25671688,-0.43502292,-0.2241638,-0.67856276,-0.5142509,-0.77147037,0.24770863,-0.790959,0.65192235,0.084886745,-0.33371258,0.21515858,-0.20305291,0.29214764,-0.098060176,-0.109171964,0.25643715,-0.052190423,-0.20220017,-0.34664375,-0.19484481,-0.08442042,-0.4006177,0.0641029,-0.18408492,0.02727561,-0.17834297,0.19680844,-0.13251123,-0.08759144,-0.17190008,0.624777,-0.47048873,0.09255152,0.021569718,-0.03528756,0.2754859,-0.7208342,-0.2884654,-0.19589068,0.05538894,-0.2654732,-0.33181608,0.17157844,0.06364829,0.3157216,-0.16742826,0.109820664,-0.5285181,0.09713211,0.11066727,0.513218,-0.35965988,-0.49089193,0.084746845,0.1867263,0.38207474,0.14922129,0.17104083,-0.4148222,-0.10203304,-0.26688078,0.1123267,0.33548945,0.5486258,0.13012102,-0.109762296,0.31072095,0.47567,0.4217588,-0.02630642,-0.048858978,-0.019726684,-0.49480146,-0.025907898,-0.25999492,-0.22429495,0.5755531,0.08255319,0.18189634,0.5308258,0.017910969,-0.17578329,0.23393509,0.2559988,0.121306755,-0.290284,-0.3605376,0.30848366,-0.14148639,0.29657242,0.09328227,0.48282972,-0.10626966,-0.8606348,0.3183192,-0.56649923,-0.03634771,0.0132066365,0.4072093,0.68479896,0.53219473,0.3948111,0.66986334,-0.26891333,0.117462896,0.08895446,-0.17435999,-0.1350691,-0.091905825,-0.3577898,-0.61960906,-0.21388903,-0.18317477,-0.45357442,0.3527437,0.36301047,-0.6265572,0.0004144013,0.1856519,0.6991911,-0.24124098,0.018109512,0.9163747,1.1578156,0.97683734,0.1009233,1.040815,0.05190422,-0.27917105,0.11276581,-0.28197667,-0.72021925,0.19688377,0.35673317,-0.75451267,0.36861467,0.13605925,0.2028995,0.37023354,-0.6134646,0.00044805408,-0.2181211,0.1268613,0.13748926,-0.25108463,-0.64757764,-0.29595095,-0.19406529,0.23889904,-0.20960769,0.33209544,-0.298194,0.20952332,0.051739026,1.625267,-0.1484901,-0.0783536,0.13041314,0.3384114,0.03093117,-0.31791544,-0.099038735,0.107467495,0.25284064,-0.11989101,-0.47728163,0.0048719915,-0.016481891,-0.46471724,-0.24044223,-0.041742682,-0.1638005,0.008424776,-0.32106647,-0.45334035,-0.18347962,-0.3899375,0.5565176,-2.59132,-0.029822985,-0.05196839,0.33755627,0.019497449,-0.46292764,0.026717972,-0.14367788,0.40979567,0.30898222,0.5118865,-0.5621885,0.09110691,0.4942804,-0.66669565,-0.1623046,-0.46798334,-0.03239942,0.19720729,0.30385393,-0.03161588,0.061345387,0.11203964,-0.20340152,0.3790105,-0.07015221,0.13551737,0.5832106,0.34821597,-0.19803487,0.18867114,-0.10097512,0.5630902,-0.26747185,-0.42267293,0.42185515,-0.22547965,0.2610256,-0.21860214,0.06621106,0.4726185,-0.48012704,-0.8196584,-0.55112606,-0.09079864,1.2175156,0.019074077,-0.5374434,0.469683,-0.5905503,-0.41570598,-0.09183719,0.5326061,-0.22538039,-0.17139752,-0.95652187,-0.16538826,-0.129013,0.24495402,-0.08616358,-0.21469721,-0.57774216,0.7442376,-0.022097915,0.28397712,0.6598114,0.20463257,-0.39000627,-0.5552582,0.11743001,0.9987712,0.5724441,0.19381489,-0.1714578,-0.038400866,-0.28158605,-0.029338788,0.19654219,0.62890166,0.52215594,-0.18197943,0.17837603,0.20515785,0.033242792,-0.039196488,-0.25749817,-0.15963969,-0.18630637,0.20398936,0.54398304,0.80827254,-0.14721712,0.58278954,-0.14582632,0.15486154,0.116367295,-0.2942496,0.33197927,1.0038058,-0.15795232,-0.508759,0.6181942,0.5794867,-0.25465012,0.40036505,-0.43190044,-0.057451874,0.2462533,-0.10477483,-0.4825533,0.27054948,-0.25428694,0.137073,-0.89508,0.32133502,-0.20381093,-0.83482516,-0.74573505,-0.022087798,-1.8708279,0.21439426,-0.33377305,-0.3973039,-0.14566013,-0.33303845,0.007344377,-0.6810832,-0.8494853,0.12639761,0.07450078,0.5056664,-0.10757003,0.08503419,0.21708632,-0.37124467,-0.046839394,0.18154056,0.21303454,0.34894764,0.023406547,-0.46814197,-0.34400672,0.025423557,-0.38653773,-0.1025156,-0.8039255,-0.33188498,-0.09943463,-0.70018375,-0.08163136,0.49373856,-0.49444956,-0.0467997,-0.30117166,-0.03309893,0.0049256743,0.13831834,0.030184459,0.15142366,0.22921613,-0.05346313,0.12741894,0.1076742,0.1370761,-0.00019754768,0.2718869,0.28967825,-0.2530299,0.41705623,0.39515296,0.9129421,-0.46902323,0.87496746,0.85025024,-0.24619141,0.072689146,-0.3493914,-0.26364493,-0.5387064,-0.2901848,0.1786824,-0.46474448,-0.52772367,-0.007877481,-0.29915985,-0.89551175,0.665531,-0.109972894,0.05285596,0.28978705,0.053867597,0.49439946,-0.19199203,0.013011667,-0.13756166,-0.04834137,-0.44696265,-0.31496114,-0.5211009,-0.39356047,-0.075319424,1.3975092,-0.0440032,0.20399356,0.43459326,-0.37037283,0.07989882,0.15303285,-0.18246107,0.07918112,0.4207944,0.0445681,-0.56403106,0.12194184,0.17237154,-0.10261308,-0.5626483,0.26022774,0.72434384,-0.51020753,0.67127144,0.07751302,-0.1347261,-0.21861973,-0.5821464,-0.19510281,-0.16112499,-0.2893228,0.5245315,0.47553486,-0.49811706,0.34202957,0.42412573,-0.26290748,-0.8985301,0.28712326,-0.06347017,-0.13115138,-0.047844447,0.27932057,-0.11181512,-0.09271226,0.031096166,0.52358985,-0.050747644,0.4055608,0.080615684,-0.24555309,-0.26136827,-0.35063475,0.030716557,-0.94248545,0.5017021,-0.22569835,-0.40872687,0.24896026,0.25550288,0.14862081,-0.055252276,0.34117502,0.41883516,-0.3269426,0.10983026,-0.3011067,-0.40926307,0.15401785,0.42873096,0.6111764,-0.38810858,0.42567787,0.0026372462,-0.17394291,-0.22865506,-0.08042766,0.5456252,-0.20678806,0.1742096,-0.012864068,-0.25436032,0.19405054,0.6548564,0.16487479,0.40173763,-0.23572822,-0.013203105,0.10199189,0.085073456,0.31546384,-0.16930383,-0.6588727,0.36997557,-0.345573,0.10847793,0.30302006,0.27710375,0.17191657,-0.31568474,-0.532195,-0.038974848,0.27487448,0.3540365,-1.3194425,0.42804036,0.14778784,0.8041746,0.5951282,0.24836175,0.18145049,0.7047471,-0.081322886,0.039450057,0.4379216,0.06171156,-0.56807494,0.30852705,-0.76840156,0.4749865,0.17341043,-0.008089364,0.21416697,-0.14015353,0.46177554,0.6917782,-0.22996917,-0.057888776,0.10114577,-0.26764667,-0.31835097,-0.36494908,0.06344317,-0.67690545,-0.47921228,0.8202387,0.66905785,0.2768576,-0.07485413,0.06855549,0.24263553,-0.03552719,0.28735158,0.08934732,0.07921406,0.07227193,-0.58435047,0.14820807,0.49070144,-0.098472275,-0.086786814,-0.15459765,-0.22593784,0.23153472,-0.08445184,-0.2563519,-0.10063998,-0.69373703,0.061310492,-0.5175457,-0.33065495,0.19097343,0.074567616,0.14450026,0.06058824,0.1340333,-0.2515617,0.58912647,0.15184547,0.9371437,0.0876853,-0.09577666,0.043260522,0.5308049,0.14573081,0.029528266,-0.11784413,-0.17945406,-0.1589956,-0.61573476,0.37587467,0.07217071,-0.46125436,0.11980514,-0.03607369,0.16137244,0.40850696,-0.13427147,-0.24405709,-0.072586045,-0.32826224,-0.24422567,-0.3935448,-0.2490286,0.31259048,0.33871153,-0.029287804,-0.14616136,-0.092346236,-0.14775512,0.42978683,-0.07927437,0.63862115,0.2994381,0.27081895,-0.35024983,-0.07528577,0.17701039,0.5274076,0.03239072,-0.072043344,-0.24045832,-0.30028296,-0.45330983,-0.047408592,-0.18839277,0.5011848,0.14660445,-0.16179048,0.68208826,0.19552186,1.3309797,0.004110202,-0.30171674,0.21561317,0.47605997,-0.20622799,-0.19732976,-0.22852746,0.9668209,0.59532535,-0.051672686,-0.01878149,-0.28788632,-0.07875742,0.2356712,-0.195738,-0.15341493,-0.08432339,-0.65081984,-0.15147603,0.29267743,0.29214102,-0.008675933,-0.11275707,0.16200522,0.2716751,-0.16970274,-0.008781677,-0.15363467,-0.102722704,0.39748782,0.23767479,-0.002400446,-0.11593536,-0.6314426,0.30879968,-0.50948185,0.0356257,-0.25421667,0.2052451,-0.35289168,-0.30751982,0.09691523,-0.054073382,0.3856233,-0.3559731,-0.122816466,-0.32778403,0.6241647,-0.17103049,0.0069992035,0.33717698,-0.40109196,0.20170085,-0.10761396,0.21545449,0.6483084,-0.36133313,-0.08394027,0.2589867,-0.12767771,-0.25058317,0.35106504,-0.25760418,-0.022993337,0.04421516,-0.07421805,-0.7033861,0.09005718,0.1214062,0.096605554,-0.3591244,-0.63032216,-0.07677375,0.30238757,-0.20031957,-0.024369448,-0.32612842,-0.17976953,0.6487926,-0.09596736,-0.70433533,0.1582695,0.074194446,-0.2770633,-0.23131022,0.105625644,-0.38056713,0.21632382,-0.12822986,-0.576424,-0.41820994,0.11784853,-0.34931335,-0.056243617,0.10445938,-0.34599385,0.021253377,-0.36732882,0.107814,1.035338,-0.24539714,0.5493891,-0.39745015,-0.60220987,-0.90197545,-0.27631247,0.5224079,0.22514208,-0.13186684,-0.9401415,0.08476186,-0.28811964,-0.20061472,-0.1141784,-0.13224584,0.48538175,0.19117396,0.54704773,-0.50656193,-0.8028841,0.47531638,0.27674404,-0.0742351,-0.5348644,0.5604002,0.38366356,0.9139946,-0.07520707,0.21150765,0.11969022,-0.61884993,0.01537385,0.12798546,-0.22281972,-0.5429152,0.06150139 +353,0.2691832,-0.17276919,-0.3753003,-0.19889002,-0.1889699,0.17313732,-0.13141353,0.52076256,0.43970227,-0.4937714,-0.26271105,-0.08520921,0.08969369,0.28722167,-0.086360715,-0.6134738,-0.050489243,0.1239251,-0.42772707,0.53092474,-0.40023065,0.14574613,-0.12377206,0.37289655,0.20015757,0.1345947,0.00073530275,-0.100711636,0.061113477,-0.22400956,-0.024822697,0.39947197,-0.52347946,0.279748,-0.079472534,-0.34819257,-0.10991073,-0.50499374,-0.45707044,-0.6977353,0.3279189,-0.8100643,0.56493455,-0.015572146,-0.1786354,0.33002976,0.06771883,0.1910045,-0.070318595,-0.05707547,0.05557582,-0.21054675,-0.1809447,-0.029090896,-0.36161658,-0.388684,-0.6373505,-0.019845432,-0.45558187,-0.18208474,-0.45418707,0.10164002,-0.34393203,-0.14974844,-0.07295685,0.6336834,-0.41066512,0.08040773,0.22742124,-0.14225005,0.257586,-0.6751733,-0.12010608,-0.10146052,0.26527753,-0.24919884,-0.2761349,0.16836573,0.3178825,0.42417476,0.07739275,-0.06323197,-0.25579906,-0.11454066,0.4633359,0.4453701,-0.045643043,-0.45943534,-0.15560909,0.02627434,0.14415763,0.28195587,0.26444125,-0.15876476,-0.19550066,0.0567876,-0.24793105,0.6576748,0.35198328,-0.24413711,-0.48670164,0.30976978,0.51963115,0.2761293,-0.014605552,0.20816775,0.029781142,-0.51606864,-0.1871587,0.036895756,-0.2866542,0.3642011,-0.28046075,0.26276016,0.5529627,-0.25378114,0.07273633,0.135906,-0.027513603,-0.039697636,-0.42080918,-0.044802908,0.13819662,-0.6122875,0.28300488,-0.16256765,0.87572354,0.08015712,-0.6310766,0.29071602,-0.54719836,0.23582117,-0.069852725,0.61547136,0.77920026,0.25095233,0.2939533,0.72228676,-0.33329108,-0.002197494,-0.1214196,-0.42434236,-0.1372103,-0.18628453,-0.05018094,-0.4441572,-0.09988254,0.06363125,0.064192526,0.02924884,0.45272923,-0.56348485,-0.06433756,0.081672646,0.8239121,-0.20981842,-0.18898034,0.8696556,1.0059527,0.984698,0.08532142,1.3335367,-0.020711342,-0.08532754,0.09708891,-0.26057985,-0.7106018,0.24757718,0.29947478,-0.021393022,0.22350593,0.12924115,0.055211365,0.37173584,-0.50778127,-0.0074377707,-0.15529196,0.2506237,0.090367265,-0.22125228,-0.3978397,-0.18531425,-0.12451992,0.013301303,0.1762764,0.107194334,-0.14014833,0.38545752,0.10852214,1.0356232,-0.23059995,0.10199565,0.040136855,0.35729852,0.20203006,-0.20947307,-0.017682523,0.2567438,0.4544679,-0.007942383,-0.728995,0.14814857,-0.16696762,-0.29880312,-0.19535506,-0.39725447,-0.15149473,0.08051722,-0.24930249,-0.16426305,-0.25077417,-0.49777457,0.52906907,-2.808218,-0.23596977,-0.09044865,0.25008163,-0.12648691,-0.2541671,-0.05647242,-0.43679777,0.34990963,0.30180383,0.4681411,-0.5388026,0.3658111,0.615402,-0.57747525,-0.037114296,-0.73801136,-0.17759915,0.002994309,0.29297456,0.10376629,-0.0023170311,-0.13822763,0.01598542,0.54677826,0.1305083,0.18099512,0.4376109,0.2939587,-0.19541466,0.43202806,-0.18429695,0.5729096,-0.11007013,-0.18642752,0.31042424,-0.27823743,0.36331055,-0.3201336,0.09683573,0.48141214,-0.32832918,-0.7140084,-0.7131087,-0.5854236,1.2930351,-0.15967105,-0.39971387,0.41825798,-0.50918573,-0.27318284,-0.1449495,0.7097993,-0.1236175,-0.13617267,-0.7346421,0.074225694,-0.10649049,0.028970562,-0.059576362,-0.050343677,-0.4605308,0.7287748,-0.1199008,0.41360763,0.27110085,0.21915185,-0.23116489,-0.30848962,0.02163309,0.8779389,0.323006,0.23505391,-0.3413409,-0.18239777,-0.4822085,-0.08126195,0.0076638856,0.7094369,0.6096054,-0.055855066,0.16805567,0.30651182,0.061389077,0.11526683,-0.16661541,-0.19785126,-0.17240264,0.010127445,0.5117507,0.37359908,-0.21726836,0.4501698,-0.018008582,0.023174947,-0.19626725,-0.46917453,0.3898379,0.85412675,-0.2579871,-0.3028557,0.8010931,0.40399337,-0.22916333,0.38927105,-0.47231603,-0.18334071,0.54110074,-0.20886733,-0.51381767,0.081899814,-0.3607756,0.07533448,-0.9196238,0.24012887,-0.438957,-0.89411443,-0.32117182,0.009322226,-3.4899614,0.18527997,-0.26653063,-0.1317804,-0.35224602,-0.21947797,0.22026062,-0.32751593,-0.7052676,0.12539782,0.12016409,0.6682873,-0.24354093,-0.01573056,-0.1825528,-0.1920038,-0.2783458,0.13478947,0.04494901,0.31272492,-0.13599227,-0.2503177,0.02488161,-0.0033948321,-0.3277866,0.03860389,-0.46062288,-0.46284366,-0.02949071,-0.56551266,-0.18960948,0.65291303,-0.42182776,0.014104978,-0.36440822,0.06300821,-0.057523478,0.39586115,-0.08087924,0.19518328,0.115128435,-0.07591544,-0.14137019,-0.16685553,0.46098828,-0.027846724,0.3845601,0.43889514,-0.2147507,0.26487538,0.43465266,0.58560663,-0.0442856,1.0592369,0.4552718,-0.17010872,0.3010404,-0.16749436,-0.36293006,-0.53379804,-0.2590002,0.21667518,-0.48116744,-0.5583448,-0.2011435,-0.23588897,-0.8172743,0.41251794,0.049977437,0.44822812,-0.0041049547,0.15993927,0.47534677,-0.034939535,-0.00085357827,0.015304089,-0.18199383,-0.52017236,-0.3215362,-0.6576497,-0.37795487,0.13355936,0.8618179,-0.2624105,0.11940917,0.04285829,-0.41076735,-0.0458521,0.31222224,0.055634636,-0.019130426,0.435766,-0.04522301,-0.51502043,0.39412746,0.014690901,-0.20070733,-0.682348,0.14861052,0.61726326,-0.5875619,0.7457617,0.27292806,-0.02870331,-0.22730213,-0.45349693,-0.1864245,-0.24818261,-0.286312,0.40785122,0.32047972,-0.90798396,0.39917815,0.30556354,-0.022483448,-0.81282943,0.4738914,-0.10781319,0.018829936,0.008002485,0.3817579,0.2081105,0.09670683,0.06138298,0.22004934,-0.24493949,0.45400307,-0.021398028,-0.11224624,0.3173902,-0.083818056,-0.1393181,-0.7345913,-0.16799326,-0.64915246,-0.1397906,0.17912483,0.05459286,0.17063236,0.23443031,0.16011535,0.49020576,-0.10852852,0.15659478,0.05756257,-0.43612626,0.30948249,0.49663273,0.43399975,-0.31892627,0.63531464,0.1235893,-0.042167082,0.088634856,0.21924748,0.45845696,-0.036855143,0.5643876,0.014069587,-0.2668958,0.16038205,1.0459869,0.08980394,0.43136334,0.047480542,0.07349142,0.34678006,0.047423493,0.24668585,-0.114369996,-0.5916403,-0.018835843,-0.42870435,0.17692263,0.37833512,0.25796878,0.2755603,-0.0786491,-0.31938878,-0.03957908,0.22161533,0.08175179,-1.1235696,0.16233923,0.24740952,0.98090744,0.50163394,0.015568882,0.049025044,0.51445645,-0.027730873,0.12818046,0.4737154,0.12808669,-0.5461307,0.6327589,-0.7329591,0.5310903,-0.12810804,-0.09346012,0.10031066,-0.061743062,0.38185576,0.8575689,-0.26122764,-0.05645975,-0.018973842,-0.23120558,0.25649083,-0.5138084,0.062267322,-0.5440431,-0.17240427,0.6957515,0.6428923,0.31021246,-0.25632766,0.0121086165,0.09312538,-0.07334735,0.10463613,-0.03081317,-0.083071746,-0.11229553,-0.6806565,-0.075820304,0.38951755,-0.029957464,0.21143906,0.1139374,-0.19548805,0.20451386,-0.14505354,-0.15441193,-0.15403509,-0.60226023,-0.17184341,-0.20159447,-0.58958507,0.38560852,-0.31072113,0.1509258,0.2760562,0.0619926,-0.18708992,0.25553933,0.015439372,0.6842873,0.035382003,-0.029898183,-0.39355373,0.15597163,0.19316812,-0.20441294,-0.075613044,-0.1990143,-0.03207175,-0.62881064,0.31457523,-0.14098251,-0.45257068,0.2286704,-0.098131716,0.009045641,0.48872527,-0.064643346,0.016576363,0.05483977,-0.3637937,-0.24630344,-0.08719621,-0.073902994,0.2743559,0.10478143,-0.029341787,-0.18722296,-0.16792254,-0.12617038,0.07987986,-0.009418495,0.36188218,0.3240103,0.07476582,-0.21987449,-0.25721407,0.27812287,0.520829,0.037897702,-0.09152516,-0.08024782,-0.42368403,-0.28912652,0.19212835,0.04001023,0.39187065,0.053818136,-0.36965835,0.5758706,0.13717702,0.9437507,0.10884452,-0.31975922,0.120553575,0.42423105,0.053595472,-0.12725203,-0.32415178,0.84457797,0.3241139,-0.04534048,-0.08760601,-0.4014542,0.12517555,0.2578716,-0.08321703,-0.08534371,-0.030200884,-0.6579377,-0.14803106,0.33359453,0.22083616,0.14206715,0.020222805,0.0032836497,0.21764721,-0.08307821,0.38254324,-0.5154004,-0.15169556,0.29492828,0.20475936,0.10920326,0.11412374,-0.418113,0.30087543,-0.6032793,0.030159721,-0.087815665,0.11785654,-0.4361247,-0.19615488,0.33844018,0.049947213,0.54543465,-0.18770508,-0.43239787,-0.2847713,0.38917243,0.0110458685,0.14874427,0.5328035,-0.20703556,0.055173073,0.115276895,0.45827422,1.030858,-0.06684029,0.12721686,0.2706978,-0.35446683,-0.5952681,0.33268282,-0.4686557,0.29616427,0.06739005,-0.19546175,-0.3340524,0.19592296,0.19508588,0.0906406,0.2582818,-0.47138146,-0.32614592,0.06473134,-0.23372996,-0.12900719,-0.2433691,0.036238447,0.5876713,-0.30263144,-0.23921831,0.063457824,0.29135546,-0.25523707,-0.51842815,0.020829797,-0.12054909,0.19313234,-0.16247547,-0.4370668,-0.08213994,-0.03949993,-0.48886415,0.045878574,0.084379174,-0.29198512,0.10484606,-0.20386969,-0.07271165,0.7944836,-0.34823337,0.15529136,-0.45062867,-0.5535787,-0.7068949,-0.24162574,0.3268983,0.17861392,-0.07286513,-0.40737367,-0.023050815,-0.059699148,-0.022458896,0.14627516,-0.48493996,0.4635227,0.110706836,0.43142948,-0.0674377,-0.8170635,0.20132725,0.15482864,-0.014587606,-0.6972613,0.47209564,-0.08820506,0.72246003,0.14641432,0.0877069,-0.0010185441,-0.5267119,-0.043663505,-0.1835746,-0.15809543,-0.61997455,0.11229187 +354,0.39751598,-0.1600375,-0.6400139,-0.04177462,-0.2530757,0.053641293,-0.17072906,0.36214575,0.33338922,-0.22676589,-0.060686965,-0.1827576,0.040513378,0.35857224,-0.03200791,-0.48862144,-0.010878171,0.23909427,-0.628382,0.56782496,-0.32652742,0.2840472,-0.14502707,0.48763004,0.07592062,0.19107877,-0.18056385,-0.003413226,0.014644482,-0.024331136,-0.07143942,0.48625913,-0.5362133,-0.025489245,-0.22855508,-0.17845652,0.0004368041,-0.44119206,-0.5125025,-0.8350502,0.39237228,-0.91849846,0.65307415,0.23169294,-0.43046004,0.11547833,0.051171023,0.3492318,-0.3129273,0.054693986,0.18739091,-0.026078293,-0.026823657,-0.18392824,-0.40098077,-0.22097836,-0.5212184,0.012841708,-0.47408465,-0.069791675,-0.24298766,0.21934463,-0.2535975,-0.11739242,-0.15355322,0.14041004,-0.41184136,0.2871542,0.36268267,-0.15991649,0.28928095,-0.46367663,-0.08126465,-0.14896424,0.26210222,-0.14384802,-0.3507438,0.2044693,0.2771728,0.55094445,-0.19821604,-0.17022543,-0.22045423,0.081631,-0.034645844,0.55801046,-0.28977615,-0.19872217,-0.22563374,-0.024853025,0.31507733,0.312793,0.01717638,-0.40383294,-0.102288984,-0.1795368,0.04254621,0.24137671,0.5264455,-0.22539772,-0.32995683,0.41070175,0.47531933,0.36866325,-0.015577625,0.118809454,0.15897064,-0.59946936,-0.17471822,0.027258087,-0.05655893,0.59834594,-0.01767858,0.15652888,0.59799576,-0.0068413443,-0.07197748,-0.049249373,0.16054949,0.01436363,-0.43432283,-0.16069439,0.14784154,-0.38150868,0.1802081,-0.02528274,0.52531236,0.104235575,-0.6290489,0.39423022,-0.62171525,0.2030162,-0.07070099,0.574875,0.843706,0.42030635,0.26918402,0.81794316,-0.38107467,0.13958342,-0.08111609,-0.2524126,0.23934652,-0.15434395,-0.020527413,-0.50140315,-0.0046642805,0.0053682327,-0.2432704,0.23961322,0.48273137,-0.5551835,-0.17038263,0.121626295,0.789526,-0.23943423,-0.03281147,0.5611395,0.9148588,0.71797216,0.04520338,1.2244397,0.3828688,-0.11646778,0.29676118,-0.24549642,-0.9714513,0.20208989,0.20933323,-0.34596187,0.3343316,0.27311093,-0.18859246,0.4731668,-0.4121273,-0.028894093,-0.20117,0.10757399,-0.07109659,-0.239493,-0.45167834,-0.18237938,-0.10835371,0.11759359,-0.021787567,0.25258753,-0.33106375,0.14922956,0.021561285,1.8364033,-0.09265167,0.110990785,0.08540412,0.37086567,0.3724367,-0.24135944,-0.2506126,0.5164931,0.3167561,0.01801153,-0.5068527,0.17104223,-0.18589592,-0.28193036,-0.14461477,-0.21550938,-0.032511555,-0.016359976,-0.54664904,-0.16047081,-0.08862511,-0.1900738,0.52815515,-2.6693037,-0.2306178,0.03558034,0.4812507,-0.29508922,-0.37982115,-0.33736846,-0.2908586,0.3579481,0.20459142,0.4196196,-0.65333575,0.21309425,0.41481653,-0.5879361,-0.1048635,-0.5666139,-0.107864454,0.034692638,0.28676122,-0.076427326,-0.14303191,-0.055103917,0.26135314,0.34381407,0.04555176,0.05550931,0.37722185,0.51719683,-0.030378733,0.29207686,-0.15771897,0.54184324,-0.27209002,-0.3672574,0.34858972,-0.16655353,0.44677585,-0.07852447,0.09152556,0.42627048,-0.45312157,-0.769916,-0.5817588,-0.15827772,0.9845422,-0.3876973,-0.43402693,0.32912943,-0.67062336,-0.22354415,0.040738594,0.6001233,-0.016573396,-0.07965224,-0.86541885,-0.10810753,-0.048321757,0.41740936,0.04256287,-0.045841813,-0.2006811,0.52871984,-0.074160695,0.31521717,0.3041227,0.19420527,-0.20827569,-0.56769603,0.039676983,0.78926915,0.3776687,0.15082748,-0.25565836,-0.29211277,-0.3476756,-0.07020133,-0.0014886548,0.56886864,0.69951344,-0.17566638,0.13071124,0.22825268,0.042644806,-0.073123716,-0.15229057,-0.27382314,-0.06267798,0.05781453,0.4575192,0.84022856,-0.2781684,0.3377718,-0.026131796,0.18877146,-0.10564846,-0.5577316,0.49409813,0.9362391,-0.1934267,-0.22995064,0.82827157,0.33278927,-0.40063772,0.4475911,-0.6884421,-0.28622684,0.44232175,-0.067176946,-0.40052056,0.38990498,-0.3085094,0.12760472,-0.8443102,0.29540986,-0.036536593,-0.39895126,-0.44627836,0.057064194,-2.9283922,0.22820783,-0.23185669,-0.029036496,-0.111036785,-0.08611948,0.3098362,-0.45985508,-0.64342266,0.17589046,0.04229337,0.6125882,-0.16780986,0.08201055,-0.1664159,-0.3432889,-0.18035546,0.15499462,0.28923044,0.4196231,-0.11277835,-0.48138514,-0.2937127,-0.02437513,-0.2857724,0.034568142,-0.8108748,-0.4710216,-0.19728486,-0.70085686,0.054741126,0.6277823,-0.34136373,-0.10295969,-0.27108186,0.073801994,-0.09230667,0.19813594,0.28840497,0.22149444,0.050515838,-0.09736727,-0.19534738,-0.23348461,0.25123295,0.08031767,0.13128544,0.3887406,-0.053873863,0.21287577,0.45651874,0.6285305,-0.44317648,0.74469954,0.6509136,-0.13432114,0.23176892,-0.18153633,-0.19629061,-0.4123519,-0.20666982,-0.16993225,-0.46344826,-0.41559377,-0.09063268,-0.4207521,-0.82367134,0.46626166,-0.12447219,0.26255623,0.07110641,0.09613179,0.56574106,-0.18821546,-0.047423277,-0.0906465,-0.16214824,-0.553038,-0.39051962,-0.4023145,-0.43654588,0.44439176,1.0813105,-0.31736168,0.121189184,0.20802096,-0.2652478,-0.16567591,0.020107267,0.003758984,0.16492335,0.61757594,0.11209696,-0.5091634,0.36515445,-0.025603235,-0.27187723,-0.67179614,0.25671402,0.56005013,-0.7046818,0.68094665,0.2017822,0.11604411,-0.08775103,-0.598575,-0.33124432,0.12616552,-0.21804926,0.386514,0.27618152,-0.78255,0.30398688,0.36874765,-0.36069474,-0.66858095,0.59863746,-0.11424001,-0.38334665,-0.08411165,0.3717049,-0.037981246,0.14561008,-0.12123503,0.3476422,-0.30108237,0.22918664,0.32227185,-0.22045732,0.17969958,-0.34728152,-0.084188096,-0.73329735,0.19832115,-0.3925286,-0.40262643,0.42952892,-0.023526916,0.026181826,0.04387332,0.24219052,0.45348892,-0.4151763,0.109924994,-0.13169043,-0.2702014,0.29164585,0.47132364,0.6539548,-0.41135213,0.5372255,-0.09299653,-0.22900875,0.08672059,0.1438092,0.44924846,-0.09852069,0.3785362,-0.20891131,-0.086271115,0.17017272,0.8110839,-0.025659472,0.29400212,0.078128375,0.04065356,0.2191782,0.08748375,-0.014527374,-0.07091809,-0.5619452,0.011853869,-0.2586093,0.25637332,0.4155698,0.22803457,0.19281837,-0.15864016,-0.33618885,0.09270941,0.1800383,0.17911008,-1.1461092,0.229764,0.19692448,0.6803392,0.3987523,0.13584764,-0.036052566,0.5490543,-0.16772287,0.17922702,0.4208943,-0.211877,-0.52885354,0.40228203,-0.61974055,0.5316466,0.023066742,0.025922025,0.303052,0.18197468,0.49045292,0.83002514,-0.10455004,-0.035252813,0.160452,-0.25742933,0.0041094595,-0.23842917,0.038273096,-0.73210543,-0.4129384,0.59207207,0.6150649,0.2621752,-0.3090165,-0.024467712,0.05343039,-0.18839452,0.12663794,-0.00044802364,0.1424632,-0.057553478,-0.6554031,-0.05105578,0.4838574,0.07312251,0.014714007,-0.0696715,-0.1231129,0.22060432,-0.3741259,0.093572445,-0.14900969,-0.91010714,-0.09301804,-0.66770357,-0.51637524,0.3965713,0.0050203605,0.18207444,0.20856152,0.0597185,-0.40014586,0.8091188,-0.16205457,0.99006903,0.022980882,-0.22635028,-0.32580763,0.4517366,0.19224116,-0.1342641,-0.060385134,-0.30009255,0.10091122,-0.6291217,0.5814619,-0.021944676,-0.30281687,0.007652868,-0.13369325,0.11520473,0.5938784,-0.072281525,-0.27313206,-0.0822569,-0.29218867,-0.5779866,-0.23732397,-0.12962803,0.23576859,0.31534353,-0.051613748,-0.11161324,-0.12539104,-0.13006714,0.33105418,0.05786091,0.3847887,0.52162915,0.1955348,-0.14593248,0.08776188,0.3347406,0.6540928,-0.028844109,0.0062525272,-0.16369537,-0.32270542,-0.50451285,0.21628109,-0.118392654,0.4032528,0.1487405,-0.21331121,0.8475546,0.20532739,1.0207733,0.0037299267,-0.26992306,0.17090991,0.58047587,-0.060471892,-0.18443155,-0.4207751,0.90714633,0.6680628,0.03006496,-0.08929966,-0.21261434,-0.121478006,0.16871384,-0.23564382,0.03914376,-0.019076701,-0.73819005,-0.12582298,0.16663513,0.27245894,0.21449389,-0.12637839,0.212902,0.07691832,-0.05597961,0.06951722,-0.46241924,-0.18883857,0.31368712,0.33273628,-0.011658958,0.20817111,-0.5157007,0.42425916,-0.43455312,-0.00010515536,-0.40554836,0.15691577,-0.12567401,-0.3077266,0.076305404,-0.15203094,0.3094583,-0.5263237,-0.090792336,-0.29927492,0.429558,0.16388896,0.10690957,0.59253514,-0.24553905,-0.043428637,-0.032006506,0.51593673,0.88633305,-0.36954626,-0.05550188,0.4001169,-0.2654779,-0.7464486,0.40490004,-0.45901605,0.25219616,-0.05587239,-0.2591939,-0.628331,0.22605798,0.035121877,0.019356413,-0.14224166,-0.62583625,-0.02239785,0.1364299,-0.03168542,-0.15510271,-0.30345675,0.0925812,0.6658557,-0.05020498,-0.343119,0.27540258,0.12147043,-0.26959226,-0.48931232,0.098960534,-0.3616634,0.144284,0.052158184,-0.4844868,-0.062284846,0.050720084,-0.53628397,0.1211882,0.17016886,-0.3014426,0.11831469,-0.37044844,-0.09359503,1.2590293,-0.31299996,0.09001949,-0.5746975,-0.569358,-0.9193188,-0.24614532,0.3662257,0.27543566,0.14513254,-0.60034645,0.06513816,-0.13985787,-0.08833135,-0.059319813,-0.28234115,0.50715476,0.063749604,0.38601416,-0.2619742,-0.8059048,0.05944476,0.033251464,-0.4535864,-0.59247696,0.63229877,0.016862707,0.92864597,-0.025158746,0.106558666,0.40239158,-0.5735479,-0.020989956,-0.25191644,-0.062442463,-0.763919,-0.0629684 +355,0.4613714,-0.13106865,-0.5328524,-0.39678258,-0.38789192,0.17201337,-0.23783986,0.2767117,0.14825001,-0.5455645,0.047110874,-0.019386651,-0.18367128,0.12538506,-0.12960616,-0.7575871,-0.14421667,0.0319849,-0.6157442,0.21302938,-0.52369785,0.38695827,0.2247114,0.17617036,0.062784515,0.16638121,0.09611066,-0.18164924,-0.09770845,-0.4033441,-0.17116442,0.20627752,-0.68949854,0.29162392,0.060433097,-0.43395868,-0.016104816,-0.3911863,-0.21221521,-0.5742704,0.20605275,-0.8091792,0.58454335,-0.01599191,-0.22823803,-0.008715285,-0.08041464,0.23367369,-0.05714848,0.4346709,0.39435524,-0.29006454,0.014390618,-0.19863327,-0.29324692,-0.36776713,-0.573995,0.020579776,-0.60473835,-0.03785812,-0.10695722,0.22456458,-0.18522409,0.055924833,-0.327799,0.5020786,-0.46102643,-0.19491461,0.10777674,-0.2547899,0.47095475,-0.598725,-0.19007555,-0.012951711,0.18171728,-0.32962033,-0.18043362,0.06870369,0.21158732,0.5916926,0.022808393,-0.1741363,-0.2535188,-0.049695384,0.14650096,0.47335482,-0.15793459,-0.21074183,-0.26824662,-0.052960847,0.37670884,0.235103,-0.021173483,-0.52371895,0.1074123,0.03248457,-0.27852255,0.5200277,0.44381553,-0.36537173,-0.10724635,0.3679997,0.43866214,0.14937909,-0.10522755,0.20148663,-0.051387608,-0.41748723,-0.15276177,0.4598008,-0.04345445,0.3054995,-0.085028894,0.17188565,0.6344561,-0.22659251,0.0019738248,0.0066186124,-0.16204712,0.06236985,-0.05904026,-0.26692232,0.19026613,-0.5350341,-0.0046622413,-0.32965395,0.7927996,-0.07958143,-0.8859485,0.23511529,-0.5553406,0.074456386,-0.15731467,0.6434533,0.65583616,0.35610864,-0.048783462,0.8778057,-0.4862376,0.018914664,-0.14704004,-0.2280563,-0.011851435,-0.009250156,0.08069791,-0.50678295,-0.09871689,-0.17246675,-0.02920301,0.0027553807,0.34398833,-0.42698956,-0.13552855,0.07291705,0.49390307,-0.42619038,0.08026651,0.79096097,1.0376272,1.0445815,0.1966947,1.229112,0.2760893,-0.21016566,-0.11770461,-0.3112049,-0.40285474,0.19550292,0.40889025,0.44096637,0.26979935,0.03191394,0.2547942,0.44206256,-0.3025527,0.030509692,-0.14900663,0.25746855,-0.18620001,-0.08610523,-0.41040543,-0.19706987,0.1404266,0.1892611,-0.07578814,-0.008557673,-0.28000203,0.40139428,0.22328046,1.0851077,-0.15438022,-0.030065535,-0.025720207,0.12317113,0.13213205,-0.17097083,-0.021542093,0.21081318,0.39168572,-0.15405814,-0.56320304,0.020440102,-0.111030295,-0.2187556,-0.33693674,-0.27179384,0.012783374,-0.1468071,-0.4485975,-0.08415847,0.2721715,-0.59781986,0.45767492,-2.2691426,-0.13852754,-0.20862661,0.30815506,-0.06569678,-0.4054504,-0.28593773,-0.36854425,0.37384132,0.36789355,0.34475356,-0.55472887,0.5356394,0.36347565,-0.20558967,-0.07669871,-0.81479853,-0.12661389,-0.10301925,0.16768481,0.105156824,-0.07951016,-0.27605295,0.22691692,0.6140937,-0.08256902,-0.030635683,0.17228423,0.44173983,0.019553747,0.7976127,0.24649465,0.52780193,-0.15160693,-0.09647785,0.42059997,-0.41010138,0.08414098,0.16473712,0.2017848,0.2786292,-0.66357046,-0.8374926,-0.8061291,-0.519312,1.3271188,-0.20016564,-0.51308656,0.22664483,0.103251144,-0.4526975,0.13529243,0.437316,-0.1819717,-0.062799126,-0.80388755,-0.13081856,-0.16646467,0.33660862,-0.1160668,0.15078165,-0.48100287,0.6895575,-0.216481,0.6038178,0.4451465,0.22323373,-0.010770134,-0.27606812,-0.06687148,1.1728001,0.3741654,0.12260028,-0.20549135,0.023436503,-0.14480329,0.07270602,0.18431692,0.595224,0.821694,0.05513804,0.064465694,0.37362623,-0.1813869,0.039086483,-0.09817847,-0.49979806,-0.041621268,0.08255044,0.6697994,0.24783674,0.23557556,0.54837054,-0.12975559,0.17921582,-0.17836499,-0.51536876,0.28121695,0.84510624,0.051607437,-0.3524263,0.49475452,0.4718861,-0.16675197,0.3889982,-0.5028665,-0.30466223,0.3860787,-0.11534332,-0.4556058,0.23602594,-0.46444964,0.28960064,-0.9421005,0.37696692,-0.24972187,-0.76860046,-0.5364281,-0.35538524,-2.586161,0.18548994,-0.030845689,-0.062699445,0.050214797,-0.32817098,0.3880753,-0.3779493,-0.60474193,-0.060248878,0.009554556,0.43086833,-0.020671934,-0.011652525,-0.107745625,-0.17047878,-0.21312363,0.37941477,0.121672235,0.13902922,-0.007453727,-0.33852172,0.14424051,-0.36072782,-0.43430966,-0.124653935,-0.57565653,-0.5490468,0.010388238,-0.5587038,-0.30345374,0.6947264,-0.32945886,-0.07462986,-0.14084634,0.0080375625,-0.0060089016,0.3767008,0.04392612,0.21035555,0.0012678036,0.00607511,-0.2881751,-0.30028382,0.12103777,0.17329752,0.07530161,0.26111877,-0.22543512,0.18525194,0.52287835,0.6173949,0.021102633,0.73642975,0.3178692,-0.14138891,0.12492067,-0.3988597,-0.29882008,-0.68876106,-0.40373558,-0.110047564,-0.50835824,-0.44218823,-0.16087021,-0.39121923,-0.7820958,0.4643612,0.0055738473,-0.07241932,-0.028575778,0.41513616,0.31869143,0.14372028,0.13256402,-0.07164766,-0.17244972,-0.4145063,-0.4232111,-0.64518803,-0.43868157,-0.050727163,1.3334028,-0.091445364,0.061625663,0.08905559,-0.17781428,0.2115608,0.07285629,0.10755486,0.27437606,0.4414127,0.049489,-0.66446465,0.06857254,-0.20198822,-0.094371095,-0.59263355,0.0014557338,1.0161718,-0.6785089,0.52402127,0.3679927,0.2873655,0.019045915,-0.37667012,-0.11565576,0.11699908,-0.30821344,0.7459578,0.08186676,-0.32937154,0.6452361,0.24449621,-0.040976252,-0.67292535,0.4051271,0.12254349,-0.25814977,0.20751712,0.38973984,-0.072905816,-0.09790414,-0.19046178,0.17827486,-0.33620772,0.383552,0.34226447,0.0159305,0.23242633,-0.19664189,-0.33990863,-0.6084198,-0.010714693,-0.53748685,-0.2795675,0.003487885,-0.09679165,0.17799892,0.24343322,-0.13308729,0.52487427,-0.25905767,0.16036613,-0.26945224,-0.18999414,0.41277903,0.44687095,0.17695235,-0.41776448,0.5231341,0.043921847,-0.058119614,-0.35786948,-0.046180643,0.5588344,0.0481471,0.15480046,-0.24411641,-0.19679908,0.4138012,0.6227437,0.19878078,0.28737107,0.050590318,-0.14639452,0.15178049,0.22374442,0.23048666,-0.21100381,-0.21279924,-0.031123275,0.120691076,0.082322106,0.2614002,0.016173856,0.34591874,-0.29348162,-0.07627914,0.18990088,0.24191798,-0.2219416,-1.0069147,0.376785,0.10317611,0.5919828,0.5404407,0.056972105,0.19494614,0.42676854,-0.47255063,0.06489471,0.124590404,-0.0106489975,-0.2384227,0.4445564,-0.5151586,0.40484133,-0.16279817,0.10623976,-0.0024070058,0.061286505,0.4476543,0.91674334,-0.10977091,0.08211633,-0.111504234,-0.11897743,0.066706814,-0.26133177,0.059726477,-0.559373,-0.40532213,0.7831091,0.25632882,0.44045094,-0.21752074,-0.052113693,0.1159611,-0.17653145,0.1344249,-0.03800279,-0.08762334,0.07333811,-0.54828507,-0.19399811,0.5399832,-0.0034968343,-0.13376495,0.18607573,-0.37065244,0.2849043,0.20830517,0.093816295,-0.07209254,-0.44107124,-0.14964227,-0.51841354,-0.2373428,-0.08547232,-0.40497962,0.21887438,0.12294804,-0.017096518,-0.076876484,0.24275385,0.47248918,0.81069905,-0.018574314,-0.13300523,-0.28999466,0.18336762,0.31183743,-0.21433473,-0.28509247,-0.29791743,0.2419733,-0.7701622,0.38678727,-0.17651093,-0.34910282,0.24830873,-0.15503648,0.048318952,0.4038075,-0.45872498,-0.071484014,0.3213299,0.035506543,-0.11375102,-0.081978746,-0.37901226,0.17322354,-0.07960236,-0.089213066,-0.07335414,-0.15389907,-0.16311789,0.31132653,0.26165575,0.42019,0.2720836,0.08558728,-0.5506851,-0.033468988,-0.063626565,0.30354756,0.12155003,0.054866504,-0.18239483,-0.35214347,-0.1581452,0.40682703,-0.12931581,0.1715016,0.0044469875,-0.5123235,0.7735816,0.1575396,1.145613,-0.016719606,-0.33363298,-0.16474022,0.4250682,-0.0038425007,0.05987996,-0.23886512,0.87394947,0.5803603,-0.039508108,-0.11337678,-0.5262976,-0.26371768,0.008211502,-0.1942852,-0.1909952,-0.17182887,-0.68124527,-0.39062813,0.1416183,0.1016387,0.013919693,0.08612508,0.16558114,0.11485953,0.0045644683,0.34190464,-0.4190447,0.10848228,0.092284426,0.074963145,0.03326113,0.075476356,-0.4758045,0.25139883,-0.65852225,0.1153124,-0.2175647,0.10802544,0.110583186,-0.13421257,0.13978817,-0.037865598,0.19165646,-0.33256793,-0.4653349,-0.22139776,0.7267296,0.020131102,0.22919051,0.79196197,-0.18394475,0.17275335,0.16443588,0.46844012,1.5096337,-0.097665116,0.0676695,0.38806957,-0.17578237,-0.42391726,0.11387439,-0.3024683,-0.094483376,-0.030649176,-0.42474237,-0.18328401,0.33322933,0.123213105,-0.06165282,0.017987404,-0.48303396,-0.15241475,0.53401995,-0.28549552,-0.3090283,-0.27144694,0.2654562,0.5378768,-0.37922543,-0.40097564,0.012760012,0.34261498,-0.33765978,-0.5176877,0.0846665,-0.18480454,0.48944142,0.24993905,-0.24288262,0.038647253,0.265261,-0.39164057,-0.04181196,0.302264,-0.3005348,-0.06743302,-0.17084697,-0.19729851,0.890866,0.06544782,0.05003815,-0.634312,-0.58581,-0.85008705,-0.26098362,0.2534069,0.2339653,-0.08439134,-0.5507478,-0.037292983,-0.1627231,-0.07504266,0.17855628,-0.448098,0.49979714,0.13609028,0.62764466,-0.33687013,-0.8571935,0.20697948,0.06072877,-0.34937313,-0.5426212,0.5276534,0.11082878,0.5437581,0.13626032,0.032457944,0.11512053,-0.5935134,0.25385752,-0.15107404,-0.15203135,-0.79982346,0.054632213 +356,0.592731,0.05543471,-0.3375172,-0.06505,-0.1841648,0.19834708,-0.084174134,0.13797355,0.03494438,-0.5528215,-0.20723407,-0.28709862,-0.114092946,0.20877397,-0.122639775,-0.5248171,0.06248807,0.27150002,-0.17446361,0.388885,-0.4790018,0.6536528,0.1079641,0.31087294,-0.03688928,0.23444296,0.44948715,-0.21529126,-0.3642128,-0.4051234,-0.3461619,0.0008682268,-0.47990036,0.24074794,-0.19787717,-0.5649007,0.106671,-0.44205046,-0.1426821,-0.55258995,0.27229276,-0.8471421,0.5118026,0.12955312,-0.030148242,0.27011794,0.076396994,0.22383745,-0.024035176,0.19588622,0.20804371,-0.30785936,0.05066984,-0.38398173,-0.3330824,-0.37709028,-0.35808796,-0.01099592,-0.4221194,-0.21140207,-0.2826482,0.104978785,-0.16718443,-0.12656567,-0.030485475,0.06956539,-0.43086764,-0.053354625,0.21782579,-0.28595707,0.1497076,-0.54444724,-0.22927073,-0.1249383,0.30512843,-0.36025342,-0.055922262,0.22224696,0.2005211,0.7301025,0.03212294,-0.11991216,-0.37546566,-0.21259582,0.11722166,0.6907219,-0.13819726,-0.40671787,0.00071744405,-0.13839628,0.22665094,0.22835529,0.20995869,-0.050815422,-0.07276515,-0.08836873,-0.15989849,0.20993932,0.5078103,-0.41598907,-0.15190813,0.46161652,0.4773086,-0.052929234,0.047668133,0.060551815,-0.040284276,-0.29256085,-0.22166392,-0.059289653,-0.08568864,0.5928839,-0.07246596,0.3406976,0.69478375,-0.17955254,0.2818048,-0.025085239,-0.025204957,-0.13755505,-0.061024446,-0.28221074,0.29222706,-0.46626586,0.00083901203,-0.132854,1.0037869,0.065690935,-0.49734873,0.3543686,-0.43054938,0.021353062,-0.053902548,0.5422868,0.39195442,0.370297,0.12542404,0.8352528,-0.6073211,-0.0015215363,-0.06899167,-0.2652358,-0.076048136,-0.08779482,0.021792918,-0.3943523,0.12597403,0.12735608,0.0200598,0.07749859,0.35054275,-0.5005075,0.012286289,0.21205756,0.81403285,-0.39840505,0.046176936,0.7377172,0.99576914,0.9852937,-0.033318948,1.2038705,0.38088158,-0.34526125,-0.17980349,-0.23962614,-0.5143713,0.1737354,0.33194426,-0.24008611,0.15904866,0.2227108,0.11524185,0.28301042,-0.4251614,-0.10657453,-0.37879398,0.12564178,0.022676935,-0.03208409,-0.47646168,-0.23312758,-0.12435452,-0.03661749,0.23859671,0.28019506,-0.27457118,0.354307,-0.0029187116,1.940833,-0.17680487,0.1659771,-0.03213331,0.41368634,0.28475124,-0.078644,0.0760184,0.25331888,0.14397225,-0.17924415,-0.51309913,-0.1318951,-0.17826942,-0.66989106,-0.24172528,-0.17568599,-0.10650623,0.11344324,-0.36179778,-0.12412996,-0.07015581,-0.45070818,0.36254916,-2.3818202,-0.048370022,-0.052590933,0.41770926,-0.2857156,-0.35283202,-0.09655796,-0.37421662,0.48549455,0.31700978,0.37578836,-0.5092783,0.20510209,0.49038792,-0.31308696,-0.39063978,-0.5468142,0.21148929,-0.20680825,0.17382814,0.0030524784,-0.2576148,-0.08756534,0.032623496,0.45258692,-0.100599244,0.12946649,0.12454593,0.43895158,0.21703921,0.31357768,0.21751574,0.5970181,-0.3206953,-0.23676597,0.50410306,-0.38328308,0.16896474,-0.2734344,0.11705304,0.22951104,-0.48758918,-0.68558687,-0.77126557,-0.39727163,1.0390265,-0.032842625,-0.5545193,0.17290565,0.056735683,-0.32693365,-0.13112886,0.3957294,-0.08866983,-0.17003246,-0.67488515,0.08929474,-0.14176042,0.15435405,0.06305699,0.07895018,-0.5789903,0.74976623,-0.19432701,0.3906073,0.3827886,0.2948065,-0.08641259,-0.32189035,0.03866262,1.0249244,0.5083863,0.14532934,-0.27678606,-0.14607044,-0.17921183,-0.1442565,0.16367137,0.36318234,0.7782001,-0.034821104,-0.03499136,0.2275871,0.14897718,0.011480453,-0.09988451,-0.36980262,-0.09117043,-0.12125663,0.67308295,0.48487502,-0.047561992,0.3670796,-0.1669444,0.31322506,-0.45152143,-0.36577538,0.6033859,0.74537927,-0.149444,-0.10236745,0.49527326,0.4587055,-0.19650884,0.3588573,-0.8156132,-0.47590193,0.25258717,-0.11388641,-0.46960124,0.00163017,-0.32088658,0.11470372,-0.8222737,0.29158783,-0.08618844,-0.41261795,-0.5622684,-0.32010883,-2.9369137,0.105518565,-0.19997314,-0.05402993,0.025263892,-0.16817202,0.11776316,-0.5516189,-0.38124612,0.08552958,-0.055816118,0.6803531,0.14211346,0.41813466,-0.12649286,-0.328933,-0.28474423,0.12121022,-0.1890235,0.2891764,0.10558311,-0.31770834,0.12701532,-0.24523488,-0.31210405,-0.08090663,-0.45268694,-0.3982966,-0.20478322,-0.2689424,-0.2633657,0.67184734,-0.5803561,0.15793936,-0.2739363,-0.11614169,-0.28121194,0.26622567,0.21041994,0.107707225,0.081540704,-0.06363101,-0.06363305,-0.40798637,0.29413396,0.13548966,0.15026595,0.48956385,-0.25909683,0.030997226,0.2592871,0.565936,-0.042985227,0.74522454,0.31457093,-0.13744819,0.2833921,-0.35994628,-0.18256046,-0.567248,-0.5279792,-0.105882,-0.45733288,-0.5645677,-0.16347902,-0.43541098,-0.7486869,0.5416563,0.031035524,0.062304616,0.013377577,0.32721615,0.37597862,-0.1848624,-0.13642655,0.049824975,0.10847199,-0.45720044,-0.34778705,-0.5955282,-0.33192962,0.2101868,0.9777234,-0.05858204,-0.1005696,0.2705126,-0.0071146786,0.028844884,-0.06508316,0.17751837,-0.15586986,0.51141316,0.020723006,-0.6632977,0.5581617,-0.049516056,-0.118372954,-0.63638914,0.026075492,0.55872625,-0.61946434,0.32047436,0.574522,0.19004358,0.2550169,-0.3901317,-0.2136044,-0.089547835,-0.3852773,0.12394946,0.14724705,-0.60540205,0.4478716,0.30568048,-0.2386699,-0.7808846,0.33961678,0.15986834,-0.49534503,0.055856925,0.08649453,0.28733233,-0.00926312,-0.11234665,0.12375213,-0.5099812,0.3624687,0.32998037,-0.017862927,0.5340206,-0.41310206,-0.30156687,-0.65638435,-0.030912926,-0.32486743,-0.3891795,-0.033408266,0.24023303,0.07176628,0.3552491,0.1812817,0.35868016,-0.5806528,0.049585395,-0.10111286,-0.09114873,0.3630087,0.23743503,0.3931019,-0.45912987,0.583642,-0.10886894,-0.019562943,-0.2760308,0.1110233,0.42557272,0.1790189,0.18092012,0.038604956,-0.2679444,0.32310668,0.7845511,0.18617892,0.2802802,0.08714784,-0.20210867,0.27773932,0.16835964,0.052228305,0.10959106,-0.4609826,-0.11590148,-0.17108522,0.062637344,0.41683617,0.24791737,0.47361293,-0.16758797,-0.2080197,0.11811825,0.10847013,-0.2863877,-0.8874442,0.22603181,0.02461786,0.70266163,0.4852233,-0.08466338,0.1891692,0.65997726,-0.28934738,0.11374002,0.14135279,-0.18641849,-0.2854562,0.48893446,-0.5075941,0.24064718,-0.11079986,-0.061890673,-0.0066962456,-0.121842384,0.2805076,0.66193146,-0.08813091,0.16944186,-0.013069583,-0.3342852,-0.08709918,-0.24666597,0.12110807,-0.6034004,-0.13816981,0.77992773,0.33955812,0.37605026,-0.13127483,0.034578715,-0.028955055,-0.16891313,-0.02668726,0.14501916,0.15435168,0.083375745,-0.51049405,-0.22216238,0.64544,0.16239507,0.08049776,0.0009727478,-0.42400995,0.26418176,-0.14678645,-0.07186711,0.026356105,-0.5179399,0.20959656,-0.427354,-0.3182063,0.30695263,0.15504806,0.287717,0.17343585,-0.019720022,-0.056555837,0.33240986,0.41182908,0.7226286,0.068499826,-0.16892599,-0.38696626,0.34618765,0.18411449,-0.21787651,-0.08925002,-0.035377085,0.11178783,-0.654945,0.37341323,-0.06573608,-0.05144957,0.2565963,-0.18958065,-0.015270091,0.51297987,-0.16994773,0.008288029,0.2996059,-0.19465725,-0.32548323,0.07093075,-0.37949067,0.0773576,0.07163956,-0.19593294,-0.17772005,-0.12075334,-0.20404114,0.25886935,0.10642882,0.27282897,0.3398855,-0.0010626231,-0.5291224,-0.11554794,-0.06355218,0.46494937,-0.09145673,0.03776274,-0.23267038,-0.51454175,-0.23872216,0.2881883,-0.1555386,0.038611267,0.21261093,-0.22663224,0.82696897,0.12130336,1.0786092,0.15979764,-0.2560804,0.005065177,0.53204024,-0.17085247,0.115985036,-0.3745673,1.0491081,0.5327659,-0.021439003,-0.06258277,-0.09048986,-0.032290217,0.21824126,-0.32117897,-0.24316895,-0.007659729,-0.7300201,-0.4589088,0.27589852,0.24891534,0.037309516,0.020326108,0.16542353,0.19316487,0.11371124,0.39739043,-0.4398143,-0.34935004,0.28196123,0.23547015,0.042856205,0.028500216,-0.3547915,0.47343358,-0.5619954,-0.09010482,-0.35527998,0.10086161,-0.24208842,-0.23912382,0.21362655,0.111724496,0.35409817,-0.3291312,-0.38320538,-0.19370379,0.32843715,0.11744861,0.32381183,0.4297109,-0.19186834,0.1442441,-0.13866538,0.4592407,1.2826601,-0.14848375,0.16815947,0.64393157,-0.37544844,-0.5612273,0.29860568,-0.37742025,-0.14127025,-0.15606865,-0.39787006,-0.4484315,0.31241196,0.29278952,0.008797796,0.21347985,-0.48404688,-0.16188839,0.36662194,-0.3130732,-0.26601312,-0.2696521,0.06246921,0.6245913,-0.19746554,-0.3007019,0.22306585,0.52756387,-0.2613098,-0.58614916,-0.066177,-0.31280702,0.46313915,0.20570771,-0.22651471,-0.15388475,0.015292968,-0.38988492,0.053226907,0.28059402,-0.43671724,0.00969874,-0.5919098,0.15945117,0.70870507,0.032359447,0.05228389,-0.5740749,-0.25863943,-0.98528534,-0.3731343,0.58187854,0.2241811,0.04071957,-0.35921484,-0.025349587,-0.21149196,-0.04996272,-0.17123748,-0.43764332,0.27719852,0.27336767,0.46163413,-0.15613903,-0.77607286,-0.012371557,0.16800925,-0.43686432,-0.49987346,0.44600987,0.0018009299,1.0388337,0.099889256,-0.22062945,0.33437204,-0.6166056,0.26268968,-0.20208265,-0.1690541,-0.80799454,0.13927451 +357,0.44616517,-0.14449367,-0.29252276,-0.18168725,-0.16541788,0.0048882505,-0.2417605,0.04133111,0.006568694,-0.413503,-0.21533568,-0.3369967,0.105321854,0.44799423,-0.033806812,-0.8278377,-0.18994114,-0.03923719,-0.5670001,0.35371393,-0.612842,0.4564928,0.166988,0.20321368,-0.064801045,0.5040623,0.532264,-0.32387882,0.01031546,-0.015569266,-0.07436846,0.095159374,-0.54510313,0.024831617,-0.026843281,-0.29196018,0.23346823,-0.4104044,-0.13058765,-0.6203622,0.26252005,-0.9137323,0.33261913,0.04678842,0.13880107,0.108711496,0.13167842,0.3975995,-0.35701668,0.32940274,0.251441,-0.11524332,0.049445532,-0.20633171,-0.10609674,-0.58319795,-0.48693976,0.06162502,-0.4951387,-0.5738379,-0.17849591,0.16043955,-0.36809602,0.07269921,-0.05527101,0.07073073,-0.47008198,-0.24558268,0.4110047,-0.19032839,0.31374013,-0.44736186,0.029585933,-0.16571322,0.48371086,-0.26745114,0.08349781,0.36462346,0.32766733,0.48871118,0.1956254,-0.19594495,-0.11057205,-0.20758137,0.32553303,0.50224596,-0.17399518,-0.41670945,-0.2073129,0.17218398,0.092728786,0.34190375,-0.11406569,-0.20121019,-0.100282855,-0.0012811184,-0.25000617,0.3595496,0.40191928,-0.30688033,-0.46897155,0.2933193,0.5823609,0.03981423,-0.089815125,0.05203055,0.037606683,-0.48592886,-0.07262554,0.19822973,-0.10548909,0.40786844,-0.14590415,0.21922828,0.90285593,-0.22890197,0.17401846,-0.4937138,-0.32917106,-0.3238827,-0.101663575,-0.08563951,0.11217332,-0.5265156,0.039300125,-0.3077825,0.80203265,0.28768378,-0.805627,0.53633314,-0.52007204,0.17966703,-0.19782655,0.6579171,0.56136197,0.10838485,0.3449608,0.71581346,-0.48813584,0.20746498,-0.13648868,-0.47498766,0.025433961,-0.13465753,-0.039018217,-0.4255682,0.19532661,-0.0390927,0.13451153,-0.115325116,0.34640732,-0.5411535,0.10794135,0.1614059,0.71932465,-0.4500555,0.084615685,0.5245973,0.89537686,0.92619646,-0.019294607,1.2173561,0.40948448,-0.37190717,0.30066332,-0.5507145,-0.5953176,0.10778166,0.44556123,0.16854502,0.26428553,-0.1206609,0.065871574,0.2248407,-0.35625127,0.11579824,-0.106024735,0.1434203,0.15543102,0.0010670185,-0.5062017,-0.029791793,-0.043395314,-0.14597298,0.18398596,0.035814866,-0.16563664,0.26684147,0.0036870777,1.5359241,0.026900899,0.20610933,0.07571348,0.44050667,0.22949627,-0.10000787,-0.011044041,0.3905043,0.44197902,0.024920993,-0.6965422,0.19510235,-0.36112705,-0.55257213,-0.13550285,-0.2662153,0.041055318,0.16476305,-0.31487525,0.018660152,-0.005967033,-0.2939996,0.38427296,-2.6013923,-0.35276413,-0.2590957,0.21964373,-0.4387592,-0.120596066,-0.1869101,-0.5546572,0.235561,0.39500704,0.40707085,-0.6216473,0.47342938,0.3562636,-0.37313238,-0.1645615,-0.7363983,0.034610644,-0.14868774,0.3822828,0.02057594,-0.11000366,-0.16855282,0.24008457,0.554882,-0.03485244,0.041334048,0.21921295,0.48085496,0.43560895,0.5299329,-0.015659126,0.5048377,-0.17239295,-0.12600061,0.3495861,-0.24000007,0.28240934,-0.121401675,0.16215038,0.3162875,-0.4479753,-0.9010052,-0.68598115,-0.75840914,1.0505795,-0.39906433,-0.30898112,0.21136548,0.29485148,-0.050889395,-0.029140553,0.43119627,-0.14782508,0.106552266,-0.75517935,0.24235246,-0.09606181,0.18900456,0.14192274,0.1446894,-0.26933756,0.607925,-0.15931253,0.47324744,0.30509403,0.20270762,-0.021654272,-0.39616948,-0.0073135197,0.98015213,0.21517776,0.021619864,-0.110411644,-0.26875928,-0.18182757,-0.22140674,0.09838779,0.27709225,0.8133382,0.14118953,-0.030444784,0.2950217,-0.03589884,0.029096542,-0.17885806,-0.20329003,0.16876696,0.0030484677,0.5411011,0.38580963,-0.2432681,0.42660484,-0.24527904,0.29514554,-0.059808783,-0.36891893,0.6219111,0.6959356,-0.12361703,0.055056017,0.41812345,0.42124563,-0.4558784,0.38689712,-0.73656434,-0.19952099,0.6905421,-0.32753173,-0.3601949,0.19252107,-0.20029855,0.16181153,-0.94723296,0.3333617,-0.26629388,-0.06525235,-0.54630816,-0.17315309,-3.6506877,0.111037485,-0.06157828,-0.21292074,-0.069263235,0.0073028128,0.36132118,-0.66494066,-0.5153714,0.13749863,0.06362374,0.4886799,-0.0014607619,0.22311792,-0.35667378,0.0048831305,-0.19435872,0.14316693,0.13506134,0.18234383,-0.026167594,-0.40358338,0.15624724,-0.19144277,-0.53287876,0.29260197,-0.28617185,-0.3968999,-0.15930547,-0.44178954,-0.23812495,0.45166683,-0.409276,0.0700034,-0.13628358,0.08566442,-0.33574805,0.24600463,0.25173876,0.22273895,0.07084788,0.0007410437,-0.051654015,-0.28091526,0.57620883,-0.010875749,0.2859496,0.08328109,-0.102815054,-0.02346204,0.39195317,0.5196701,0.0052631935,0.8277747,0.44435918,-0.09844051,0.2248035,-0.43834192,0.007759585,-0.6342476,-0.5115868,-0.14652628,-0.3747296,-0.77581066,-0.08002725,-0.2782954,-0.68874043,0.50884163,-0.094739236,0.26506966,-0.054302763,0.24955977,0.2734424,-0.120499596,0.15113007,0.025790721,-0.11248701,-0.5271491,-0.23108469,-0.6664661,-0.434616,0.20430177,0.84795773,-0.20386644,-0.09325694,-0.27201587,-0.18521556,0.0022319714,-0.07823343,0.10179113,0.37521112,0.28460935,-0.01963609,-0.71069616,0.47965083,0.050188936,-0.106292926,-0.55190027,-0.09108288,0.6981279,-0.6505036,0.45649686,0.35642707,0.11086757,0.13577761,-0.4618997,-0.21252136,0.024666492,-0.2910245,0.36452276,-0.16673002,-0.5608927,0.5245535,0.33848614,-0.39003232,-0.69657135,0.35216933,0.114157066,-0.35108125,0.1435292,0.229642,0.12622096,-0.12446065,-0.4033639,0.24263597,-0.5248042,0.12765428,0.321318,0.012212296,0.4091643,-0.026978334,-0.2818213,-0.68502986,-0.09698143,-0.45111006,-0.21785736,0.28027007,-0.058428366,-0.030403875,0.13119714,-0.031209985,0.44631404,-0.18709596,0.023427697,0.13581893,-0.1631062,0.07296967,0.35465226,0.21519738,-0.39636675,0.55760765,0.11658872,-0.18330072,0.021884413,-0.084819235,0.38515237,0.11332866,0.17137638,-0.040266875,-0.31669158,0.4506045,0.77232325,0.28460553,0.39239785,0.2170777,-0.19409303,0.55140764,0.08865324,-0.004476134,0.12845169,-0.20939773,-0.17948365,0.23440695,0.05472506,0.47229415,0.2379389,0.43909076,-0.08487735,-0.20792398,0.08953323,0.28270036,-0.13482584,-0.66247994,0.28679785,0.17816506,0.65573823,0.54620284,-0.058866195,0.11013026,0.4924099,-0.3639124,0.11559009,0.3014767,-0.10493722,-0.5981628,0.7290708,-0.4195308,0.17638078,-0.13216928,-0.041269325,-0.012039872,0.17819414,0.25849673,0.7413592,-0.16775551,0.037313182,-0.15850057,-0.058619604,0.13941227,-0.30141914,0.075478554,-0.27787992,-0.22252975,0.6079418,0.3423564,0.2277016,-0.0924811,-0.09866483,-0.051945124,-0.11490408,0.2565631,0.0026488602,-0.006300187,0.124318294,-0.59415275,-0.35270888,0.61221045,0.15551935,0.1724187,-0.07540473,-0.46269524,0.14271961,-0.23248737,-0.028618613,0.040154193,-0.53241354,-0.03908988,-0.095299825,-0.5121017,0.37716025,-0.21495527,0.2912612,0.13476382,-0.049081776,-0.19795561,0.0432381,0.1678627,0.80480224,-0.05789369,-0.35874715,-0.41546288,0.06235748,0.36226088,-0.2742694,0.015978483,-0.2944249,-0.05682412,-0.58652663,0.66617674,-0.047625538,-0.3546901,0.24117793,-0.33737782,-0.16763096,0.6474054,-0.19070576,0.020446952,0.1375492,-0.23499289,-0.38868314,0.050420593,-0.3698272,0.10413658,0.19261116,-0.02928977,-0.1392161,-0.10426666,-0.09852992,0.6393786,0.11700698,0.3630771,0.19983597,0.16264696,-0.3599711,-0.05836458,0.1208581,0.19953363,0.1688107,-0.10002697,-0.31933758,-0.46845227,-0.10747778,0.0070235906,-0.10679086,0.24269359,-0.026592802,-0.5564787,0.7970666,0.03925343,1.1568758,0.1614098,-0.30543965,-0.017778581,0.536632,-0.111299396,0.11801769,-0.38005254,0.73789686,0.67481405,-0.017327627,-0.28206375,-0.2744494,-0.22635098,0.21971878,-0.29531974,-0.10380731,-0.058791224,-0.5658624,-0.6774409,0.35426196,0.18276826,0.076149516,-0.005501882,0.0025612593,-0.0886084,0.14761356,0.666407,-0.58546424,-0.40025845,0.18091844,0.17388138,0.06673231,0.12801242,-0.3045588,0.48476535,-0.6405217,0.18508612,-0.41454497,0.13564402,-0.1395318,-0.23968592,0.15801072,-0.022300832,0.3454427,-0.15813513,-0.5855286,0.039549835,0.48094568,-0.0021511943,0.242839,0.62686354,-0.29549783,0.2373092,0.08759121,0.60826993,1.4270257,-0.31635746,0.11239956,0.3658968,-0.3504214,-0.59223354,0.35535136,-0.30183318,-0.054019887,-0.15628938,-0.43188938,-0.2910428,0.3333632,0.21349713,-0.046198417,0.07712574,-0.4695473,-0.34258312,0.4048256,-0.31179163,-0.23022725,-0.17567171,0.36757222,0.879707,-0.41725168,-0.11488864,0.057167538,0.31183922,-0.46746242,-0.60780865,-0.26954967,-0.13075392,0.50148547,0.27742523,-0.13152494,0.17364591,0.26210505,-0.33407772,0.14766566,0.19134738,-0.49493933,-0.028999973,-0.16225019,-0.069578856,0.8219985,-0.1532094,-0.31877887,-0.8339099,-0.3157883,-1.0234797,-0.48521823,0.5962117,0.14699793,0.06326295,-0.23396635,0.15395358,0.041672014,-0.17417912,0.08115468,-0.5783249,0.2542755,0.17762426,0.6699304,-0.2727266,-0.6775827,-0.07008342,0.107891195,-0.06309291,-0.6613215,0.60787773,-0.022086136,0.8859657,-0.0056669414,-0.018914755,0.19410318,-0.3471468,0.13384908,-0.36111408,-0.18700816,-0.9036282,0.12871204 +358,0.33155707,-0.054749366,-0.43327934,-0.03584791,-0.15694363,0.16578484,0.017331354,0.43455827,0.18575674,-0.37341633,-0.030293532,-0.13283862,0.08040549,0.27705848,-0.09545436,-0.40256053,0.018434547,0.08809252,-0.54171216,0.5333857,-0.3501389,0.24046095,-0.21003398,0.33146697,0.075566076,0.366261,0.11363597,-0.28986442,-0.108347654,0.14330427,-0.20402682,0.24721147,-0.40929186,0.01331397,-0.060906604,-0.082154244,0.10495362,-0.33030698,-0.31435415,-0.60887325,0.36320055,-0.64154,0.26506644,0.06233788,-0.10582316,0.23043989,0.012409076,0.25736654,-0.39093053,-0.06396218,0.18578595,-0.12772182,-0.050404858,-0.15854013,-0.092388,-0.35207105,-0.43673128,-0.0044008642,-0.3682555,-0.16125546,-0.28097713,0.03963897,-0.32374477,-0.16933851,-0.027531052,0.33493534,-0.49666905,0.14386389,0.1796503,-0.1527377,0.089778535,-0.48574236,-0.08085483,-0.115950726,0.35349166,-0.23574767,-0.14919531,0.35411647,0.23955444,0.4192284,-0.09705838,-0.13003762,-0.286815,-0.046862863,0.20413047,0.44326806,-0.11901217,-0.50684834,0.014049593,0.06187921,-0.13028878,0.26158273,0.045034997,-0.39007953,-0.21213235,0.1301182,-0.13696337,0.2112586,0.45260733,-0.27015007,-0.23160061,0.4600098,0.539296,0.110485725,-0.20908333,-0.19811615,0.009120047,-0.5138694,-0.15396705,0.18768732,-0.18597502,0.49652737,-0.03679803,0.21375284,0.7160166,-0.23537734,0.067113414,-0.054742876,0.029109161,-0.068317816,-0.16106029,-0.013771649,0.033153847,-0.37666172,0.27345976,-0.0052475315,0.72055304,0.27993375,-0.705245,0.32693064,-0.47236413,0.19926614,-0.19642459,0.5129981,0.6481279,0.28477767,0.3764202,0.77382123,-0.5255748,0.14499643,-0.075526565,-0.5587697,0.13993102,-0.10250962,-0.2359348,-0.5232345,0.011870917,0.08098375,-0.11414065,-0.02794848,0.045653433,-0.48073238,-0.03371707,0.14831626,0.80133575,-0.3143844,-0.12002427,0.41085887,0.8396673,0.81737554,0.06172649,1.138981,0.052293852,-0.30957487,0.5028852,-0.36997724,-0.79261863,0.14420298,0.25910446,0.061324503,0.16612105,0.22449458,0.070746474,0.33066002,-0.39622325,0.1642699,-0.18412998,0.2740128,0.23451237,-0.037855104,-0.23616418,-0.2557198,-0.1415824,0.02037551,-0.028908081,0.24098451,-0.20448962,0.044580862,-0.058384877,2.0182,0.10910216,0.12285094,0.08391702,0.6023979,0.13756393,-0.098752536,-0.26766622,0.54206574,0.37068683,0.27060226,-0.5590112,0.13160965,-0.2557571,-0.59402895,-0.04463712,-0.43636408,-0.104710236,0.09653731,-0.48003298,-0.04089271,-0.04739367,-0.23467512,0.6182135,-2.9060493,-0.008910675,-0.11870566,0.3305603,-0.3205199,-0.28048563,-0.15317717,-0.4197012,0.3023132,0.35694402,0.41866112,-0.6868997,0.26781484,0.31585363,-0.45973113,-0.09626819,-0.5678879,-0.17481081,0.007772334,0.38210315,0.054914773,0.03518718,0.12273975,0.15797038,0.3316009,-0.016089901,0.060617216,0.14553174,0.2687353,0.26100522,0.5247984,-0.051447432,0.49074373,-0.06979792,-0.109156296,0.1415592,-0.25486958,0.43666494,0.019018017,0.08283168,0.31503353,-0.29416597,-0.89317226,-0.54797244,-0.14470997,1.17808,-0.32239735,-0.16592625,0.3358339,-0.4811701,-0.072341174,-0.26069197,0.50179005,-0.028541164,-0.20341307,-0.7545872,0.22143555,-0.07854833,0.20478384,0.0312962,0.016287895,-0.29370397,0.5245081,0.009482159,0.5950594,0.40997714,0.04068682,-0.06561756,-0.3323016,0.0034664944,0.6278187,0.21329756,0.1084951,-0.16348016,-0.26612943,-0.33950043,-0.123479515,0.11051297,0.48236707,0.636021,-0.0396799,0.1016365,0.2066586,-0.023247063,-0.03746711,-0.21326116,-0.24306601,0.0416155,-0.19276357,0.45394742,0.63644457,-0.2681513,0.41795015,0.004466906,0.14366329,-0.21179354,-0.3002239,0.3763687,0.8961953,-0.15496437,-0.016942844,0.28842926,0.54448926,-0.2576217,0.32696417,-0.5314776,-0.00026395544,0.55054355,-0.2098074,-0.29360154,0.112433255,-0.2843489,0.116043925,-0.694747,0.25564283,-0.023804173,-0.27350223,-0.38753676,-0.06724373,-3.348951,0.1394254,-0.27800474,-0.23637794,-0.03385808,0.026053369,0.111359775,-0.7117706,-0.4229672,0.20017637,0.048566602,0.5767046,-0.062169958,0.07403554,-0.3272633,-0.23034146,-0.25885892,0.08847201,-0.05811148,0.36157048,-0.07377399,-0.5077465,-0.016808039,-0.13005461,-0.2828216,0.059714727,-0.44936436,-0.35157514,-0.13701722,-0.3749712,-0.31103128,0.68882227,-0.28150287,0.046742536,-0.13256662,-0.11173533,-0.18505591,0.26350534,0.27440065,0.040836446,-0.014011946,0.15409824,-0.039788477,-0.33357045,0.19488826,0.02895103,0.30880392,0.3680073,0.16202942,0.10550414,0.45848617,0.54920316,-0.1747246,0.80615366,0.62478244,-0.13076141,0.20583825,-0.40151232,-0.10657695,-0.47437686,-0.48984987,-0.109631516,-0.41299695,-0.45190307,-0.07283461,-0.3410005,-0.6604141,0.4389377,-0.03865861,0.1678094,0.110167645,0.10095479,0.514754,-0.31596482,0.026154637,0.038107812,-0.10525206,-0.6278314,-0.28449285,-0.51706797,-0.35861328,0.25630966,0.8929161,-0.34920144,-0.21257526,-0.0008016676,-0.3009522,-0.053555593,0.034312725,0.013452504,0.3290813,0.3314805,-0.12901717,-0.6063861,0.59115326,-0.07226202,-0.10949543,-0.6945873,0.13496795,0.36961704,-0.63073164,0.5636421,0.29847088,-0.0031667277,0.02484259,-0.5043012,-0.33154058,-0.03769873,-0.1488528,0.2048128,0.08759816,-0.78992146,0.31907225,0.2390199,-0.23910153,-0.62964714,0.6142189,-0.033078834,-0.37860084,0.028864115,0.21611066,0.17357108,-0.0656639,-0.2432164,0.2334743,-0.49785006,0.18375267,0.47941425,-0.03177402,0.1308405,-0.12121019,-0.051702254,-0.620347,0.055779375,-0.34614426,-0.15968403,0.36403877,0.103997186,0.19134147,0.038045995,0.16033801,0.2881682,-0.39443293,0.08990322,0.007864803,-0.13320783,0.3689,0.37134382,0.51818216,-0.4714365,0.4890403,-0.08182292,-0.0757227,0.1718092,0.13890278,0.4512117,0.13142447,0.2193766,-0.010624155,-0.32655793,0.22733387,0.8584116,0.22188324,0.36504912,-0.06451078,-0.16191232,0.25679436,0.17904544,0.17513657,0.20501724,-0.5074018,0.07283746,0.03778605,0.2717626,0.34445894,0.1415278,0.25207657,-0.03325719,-0.24857469,-0.009127807,0.2240631,0.066786125,-1.1448114,0.45167756,0.27583474,0.7481478,0.42277265,0.029055677,0.006109776,0.5245109,-0.22156322,0.21357478,0.31952336,-0.22468111,-0.6575093,0.46766692,-0.6084429,0.5374417,0.035016276,-0.060545877,0.06571078,-0.06747302,0.18456301,0.78075665,-0.16885833,-0.05237681,0.10147524,-0.28216195,0.08630716,-0.38421318,-0.06933535,-0.6450641,-0.31744534,0.46407843,0.52652866,0.30003533,-0.07274847,0.05221938,0.050558373,-0.14122897,0.04595388,0.030451294,0.29197544,0.20370619,-0.7076887,-0.25214785,0.53094065,-0.421587,0.13834083,-0.094066896,-0.18403247,0.28599867,-0.31306916,-0.11757663,-0.050333258,-0.59329593,0.008090951,-0.16886106,-0.3818356,0.42938817,-0.10308439,0.36868975,0.21465877,0.03679144,-0.3649831,0.63954335,0.040328134,0.6770346,-0.30052406,-0.09502675,-0.5721647,0.07419575,0.22440487,-0.07268019,-0.12439343,-0.31172138,-0.048603803,-0.46275717,0.3535499,0.09106381,-0.16885251,-0.14910342,-0.26213527,-0.012357531,0.6048069,-0.07485607,-0.23390666,-0.21986504,-0.13703498,-0.32051817,-0.15537706,-0.18318167,0.19744459,0.18725568,-0.024120454,-0.084912255,-0.18971872,-0.07677182,0.3305381,0.06581519,0.31237143,0.22271204,-0.039560646,-0.16576964,-0.2382927,0.21270607,0.38637006,-0.09690787,-0.014061365,-0.2606738,-0.3948297,-0.39206105,-0.014823377,-0.19025995,0.3947684,0.20084125,-0.25432026,0.5765801,-0.088839084,1.0880187,0.13296777,-0.30302775,0.036475077,0.49022686,0.0895346,0.074443646,-0.29728118,0.7242193,0.54948246,-0.0013235807,-0.23790863,-0.1680144,-0.08108929,0.26120368,-0.16237068,-0.04332584,0.11722089,-0.5371953,-0.121821806,0.32791352,0.17714082,0.3113779,-0.017668005,-0.09576451,0.09850824,0.10035844,0.22341105,-0.39672333,-0.22170497,0.25312954,0.22156088,0.15565124,0.16531122,-0.43436262,0.54988587,-0.30759892,-0.07879435,-0.22859854,0.22470848,-0.2026865,-0.19527845,0.18918118,-0.005686894,0.50923526,-0.21339539,-0.29756153,-0.38384682,0.45429635,0.17239931,0.2736809,0.48707408,-0.15036157,0.04260013,-0.008630503,0.47534665,0.8754332,-0.3008352,-0.090263404,0.4758274,-0.35154992,-0.5860794,0.2160067,-0.23345718,0.09701744,-0.086354226,-0.09568912,-0.5634717,0.18916762,0.16394565,0.068268806,-0.0037461221,-0.6070255,-0.2398425,0.14446191,-0.32420862,-0.29191932,-0.35535038,0.24167064,0.8417667,-0.41350555,-0.20089397,0.14170115,0.11968061,-0.12370608,-0.47921842,-0.051578462,-0.33146563,0.20262615,0.065315306,-0.3791016,-0.16842334,0.11068856,-0.32047206,0.15066274,0.12833443,-0.3758534,0.19098449,-0.16473666,-0.05406574,0.9717226,-0.14334421,0.026064936,-0.48183435,-0.37485158,-0.73921853,-0.39197832,0.46932343,0.14984527,-0.042974956,-0.4394943,0.03819154,0.030515928,-0.13774599,-0.18980499,-0.495983,0.5201467,0.03724117,0.15961215,0.013925785,-0.84509325,-0.044433624,-0.003315946,-0.2108525,-0.5679987,0.49346906,-0.18551958,0.8514601,0.045172665,0.019475358,0.3304889,-0.26687753,-0.053848855,-0.33402815,-0.19466941,-0.6701064,0.098495245 +359,0.3936746,-0.18311538,-0.41547486,-0.17173803,-0.2672259,0.12780501,-0.18199413,0.2093463,0.08871172,-0.21741351,-0.13882837,-0.15895769,-0.06855543,0.37911904,-0.10385078,-0.6800562,-0.19662607,-0.019178264,-0.74021596,0.4456239,-0.60135955,0.43313712,0.16770303,0.19748496,0.009831274,0.53215283,0.3206888,-0.26326728,-0.06362379,0.031666137,-0.07825661,0.08645564,-0.43347853,0.055249978,-0.09782757,-0.15630753,0.08571226,-0.2951654,-0.32859576,-0.58902186,0.34078476,-0.6549716,0.32905784,-0.06400811,-0.07814741,0.10409463,0.305062,0.44431865,-0.33808446,0.10826135,0.1900166,-0.15877785,-0.08509118,-0.24963541,0.0036159193,-0.41323286,-0.396941,0.0057408772,-0.6102721,-0.4420624,-0.057390388,0.17349057,-0.3170887,-0.025863664,-0.11856335,0.38574815,-0.3698914,-0.048397418,0.37992495,-0.13369821,0.27970904,-0.61863947,0.033189215,-0.064375944,0.42499664,0.02564961,0.041147493,0.3963826,0.28915754,0.38703328,0.22313438,-0.25127006,-0.19525975,-0.21250631,0.26855686,0.3695251,-0.19617002,-0.23846708,-0.14472511,0.15322079,0.02792553,0.27238038,-0.0702626,-0.31316125,-0.025736328,0.0099695865,-0.29244053,0.43573394,0.5955186,-0.24110898,-0.39664066,0.30569714,0.65941566,0.11324738,-0.2556187,-0.030133262,-0.072776474,-0.42604375,-0.08565914,0.24546537,-0.060305882,0.39943814,-0.05984539,0.1782811,0.79676104,-0.113632016,0.018518336,-0.27163544,-0.20680203,-0.117601156,-0.16202363,-0.008826067,-0.06686615,-0.5857747,-0.09038272,-0.25003582,0.6548223,0.20070507,-0.7121824,0.4126515,-0.4095644,0.18197969,-0.09568734,0.53102267,0.65174246,0.22372887,0.17410961,0.80290985,-0.45217386,0.1433594,-0.09599462,-0.5137825,0.017139912,-0.15192893,0.05082189,-0.48452008,0.076007284,-0.18399785,0.08096194,-0.054985393,0.17909864,-0.50688374,0.019114831,0.17369537,0.7919638,-0.33614135,-0.0037409489,0.4952516,1.1043366,0.88971496,-0.03554515,1.1494851,0.3311042,-0.32258344,0.31879807,-0.7033673,-0.5141791,0.17863248,0.44412696,0.24332285,0.34057823,-0.15234879,-0.028910875,0.3748255,-0.39420065,0.16493252,-0.09386108,0.23941539,0.1792105,-0.027972838,-0.27513814,-0.06584142,-0.048639655,0.0019773666,0.1407703,0.14449762,-0.27704218,0.30995825,-0.087172285,1.2710466,-0.07703965,0.17878053,0.04757633,0.47720656,0.13369791,-0.11652807,-0.026934918,0.44944814,0.4569597,-0.017861502,-0.6994508,0.19848628,-0.41964895,-0.4070376,-0.22375576,-0.4266952,0.0022751584,0.21586165,-0.37352005,-0.15922198,0.028458336,-0.2619252,0.3737166,-2.9559078,-0.20453134,-0.27868053,0.22585592,-0.42556548,-0.16574113,-0.041662596,-0.56618357,0.3149053,0.40462518,0.44072545,-0.52714103,0.52696186,0.3993838,-0.34891057,-0.11152234,-0.550858,0.016120581,-0.1331426,0.5116986,0.005499206,0.01523933,-0.15167674,0.18556575,0.6054857,-0.05224492,0.08054104,0.35324472,0.38063228,0.16751096,0.6367192,0.03893323,0.5538866,-0.28470477,-0.09304088,0.4074386,-0.21380974,0.12485719,-0.18091641,0.13712645,0.37392756,-0.42142394,-0.77461004,-0.61332977,-0.4365902,1.0956417,-0.34135222,-0.2849917,0.28587666,-0.015562689,-0.01011204,-0.051319584,0.527911,-0.0062532984,0.1753271,-0.67063314,0.25148654,-0.078017555,0.12753671,0.02371671,-0.07926772,-0.29218656,0.6620526,-0.023294313,0.55823374,0.22528337,0.25123295,-0.11707885,-0.38460648,0.06652727,0.8973904,0.32760534,-0.030315153,-0.049586814,-0.27908647,-0.049455322,-0.20857221,-0.01966116,0.40029478,0.7148655,0.088712275,0.11331297,0.2680614,-0.14760101,0.014435971,-0.07336948,-0.18597268,0.047448363,0.0045050173,0.43627667,0.4513536,-0.09800631,0.4683663,-0.19563943,0.24342217,-0.07638005,-0.47775823,0.6152923,0.5470623,-0.162008,-0.12777098,0.36207595,0.49670723,-0.35244772,0.4134604,-0.65351725,-0.2699564,0.7331949,-0.28607315,-0.3651612,0.17284772,-0.19610034,-0.0022698115,-0.7727821,0.27268198,-0.38681042,-0.3784616,-0.4019045,-0.21642078,-3.743237,0.14747682,-0.23800892,-0.23504601,-0.08058852,0.09975662,0.28856444,-0.6203916,-0.3070912,0.08258778,0.21568263,0.46829468,0.07684914,0.07420307,-0.24319753,0.008296132,-0.16626999,0.17441264,0.033062823,0.18115325,-0.146376,-0.45469904,0.05805111,-0.12861082,-0.52133965,0.17027421,-0.25789398,-0.4104889,-0.1629853,-0.39315864,-0.1754057,0.5908814,-0.276923,0.06620381,-0.22792244,0.07540143,-0.13707034,0.2140251,0.09375409,0.2259465,0.13727006,-0.08045605,0.057857715,-0.5039713,0.45310792,-0.015505322,0.39646846,0.18330856,0.028730523,0.13416924,0.35299557,0.4694435,-0.16674128,0.7912158,0.4190895,-0.11040533,0.28188077,-0.27531078,0.009229843,-0.53472656,-0.46739027,-0.053030476,-0.33566356,-0.6623628,-0.07483677,-0.3479758,-0.73186547,0.48368803,-0.090377316,0.32455465,-0.061142493,0.2556689,0.34860978,-0.18726638,0.06264604,-0.17610775,-0.156239,-0.4870358,-0.3393852,-0.6057992,-0.509457,0.08449575,0.7715564,-0.25158894,-0.07145516,-0.30354357,-0.24137735,-0.019717686,-0.08067863,0.13273266,0.3863913,0.2392708,-0.12495964,-0.60199434,0.52188814,-0.16805449,-0.09283056,-0.5195217,0.057031635,0.58226043,-0.5490984,0.54251635,0.25269046,0.07613124,0.09080979,-0.37136292,-0.15464675,0.034479737,-0.27342582,0.4883182,-0.02913713,-0.73683137,0.44267598,0.2148376,-0.40270606,-0.7130211,0.30512607,-0.03154402,-0.33772972,0.023617804,0.23222195,0.116335556,-0.06909864,-0.27045655,0.08772605,-0.4073944,0.17476118,0.18070412,-0.026116157,0.3304155,-0.1667719,-0.2709538,-0.6715969,-0.015945021,-0.42754623,-0.18827543,0.2743288,0.021064132,0.06730814,0.12146797,0.03209551,0.388184,-0.04986791,0.15113685,0.15241644,-0.3200037,0.22431228,0.41994068,0.23550373,-0.45793232,0.46932092,0.08354974,-0.22744098,0.0121905245,0.050679415,0.46250182,0.16538633,0.28241226,-0.13125369,-0.18610346,0.53156304,0.70979106,0.17467283,0.42566532,0.18803053,-0.25780845,0.37647605,-0.018784083,-0.021515526,0.121251695,-0.3934997,-0.080593415,0.11825232,0.22618905,0.5018752,0.344609,0.44536796,0.026636595,-0.15135156,0.048541993,0.29858637,-0.06841543,-0.8558382,0.32748425,0.26562658,0.81563354,0.3115024,0.028938452,-0.21528654,0.6308352,-0.2679245,0.08168381,0.37333533,-0.10437343,-0.50655264,0.6866937,-0.6122785,0.42236742,-0.1969662,-0.13150875,0.049354583,0.18633491,0.2736512,0.76714987,-0.1266278,0.04860316,-0.073779464,-0.22883612,0.078441694,-0.2544554,0.07379083,-0.34890652,-0.34736723,0.55803007,0.30008298,0.21382557,-0.09503891,-0.04201095,0.0006711869,-0.14171284,0.2451244,-0.111439675,0.0696787,0.06117414,-0.6004842,-0.31405166,0.4348439,0.024286166,0.24234547,-0.06909065,-0.22274333,0.047423147,-0.25999415,-0.017522208,0.02348959,-0.5229406,0.023870446,-0.0061499653,-0.4561833,0.40994942,-0.3455113,0.15584555,0.18659317,0.0039429157,-0.3233569,0.22193839,0.1012437,0.73489875,0.04045197,-0.20574951,-0.48337364,-0.012060192,0.271158,-0.26543447,0.11173094,-0.42081878,-0.03786474,-0.5856384,0.6127478,-0.16951638,-0.32303938,0.23420732,-0.28942013,-0.044190325,0.6242663,-0.157999,-0.15543534,0.19569753,-0.16896504,-0.38028708,-0.032846842,-0.298475,0.19131619,0.21374424,0.09352708,-0.10769744,-0.1543342,-0.059739042,0.5268839,0.10725298,0.37597102,0.15593913,0.059961677,-0.23729862,0.009245473,0.19020994,0.3235762,0.25275564,0.034760293,-0.31250083,-0.44699726,-0.25780463,0.11902896,-0.042709477,0.20271191,0.03818682,-0.42556947,0.744458,-0.04382618,1.2170621,0.2145637,-0.19561616,0.06546351,0.40956587,-0.008368085,0.16343959,-0.42691883,0.6763338,0.6521657,-0.016866338,-0.098490566,-0.30016506,-0.09931912,0.3059166,-0.33246517,-0.018612504,-0.004026816,-0.556497,-0.47384048,0.19669542,0.16554415,0.09801392,0.035966065,-0.11927511,-0.053268902,0.038453877,0.4745786,-0.53074735,-0.172418,0.16961718,0.1501661,-0.06641011,0.12638173,-0.32991543,0.5355024,-0.5883733,0.08747729,-0.28119275,0.023430975,-0.12757318,-0.23374093,0.1561392,-0.07532205,0.36630872,-0.18801716,-0.5029967,-0.022851668,0.5694704,0.091357134,0.22550967,0.67788035,-0.27404168,0.11011348,-9.9185636e-05,0.52894884,1.2314218,-0.40938288,0.05811813,0.2562301,-0.4039621,-0.6229368,0.43374118,-0.21983974,-0.045810614,-0.108904086,-0.4880916,-0.2554925,0.36410922,0.10245361,-0.035526562,0.10289311,-0.5019479,-0.26784086,0.39853516,-0.3702648,-0.2990614,-0.18251832,0.4374742,0.7116259,-0.372687,-0.24642193,0.069137335,0.40147278,-0.3457411,-0.3666892,-0.02177916,-0.10328949,0.3968439,0.16343737,-0.121069625,-0.017504832,0.24176347,-0.35234588,0.17327486,0.16591746,-0.44327316,-0.05843892,-0.047550373,-0.13372326,0.7871533,-0.1929488,-0.13742508,-0.73592275,-0.41333362,-0.9261804,-0.5908947,0.38292584,0.1399237,-0.0034239152,-0.30145752,-0.06225708,0.007347696,-0.025187591,0.004032135,-0.56643414,0.2692199,0.09785592,0.5832443,-0.19856274,-0.7664836,-0.053394362,0.15267862,-0.14725792,-0.6551251,0.54252696,-0.12639314,0.79422337,0.023968395,0.01826171,0.12584718,-0.36921456,0.14503877,-0.41647217,-0.26311943,-0.8675416,0.16711934 +360,0.49796352,-0.2697957,-0.46565452,-0.057399303,-0.32320553,-0.06773582,-0.073013656,0.75910234,0.38539127,-0.13349235,-0.1426747,-0.1340318,0.030845622,0.45705938,-0.15571368,-0.51465625,-0.04920579,0.123458564,-0.30633312,0.4149343,-0.4379114,0.23510075,-0.2227959,0.44311818,0.33624256,0.26956952,-0.16467358,0.11503833,-0.19825989,-0.12984815,-0.119140975,0.26000103,-0.20465636,0.05142348,-0.007955735,-0.30584118,-0.16164628,-0.6167524,-0.4233099,-0.6315591,0.49878109,-0.76906663,0.44812667,-0.031154731,-0.2413605,0.42101946,-0.04049708,0.31006882,-0.1092859,-0.15194018,0.047161847,-0.021949356,0.024048137,-0.2383095,-0.24549668,-0.29100838,-0.6499904,0.071913,-0.38131395,-0.28829315,-0.17405991,0.06322015,-0.28941652,-0.012467076,0.030949524,0.56402767,-0.45781696,0.23322405,0.0664604,-0.084551156,0.022430763,-0.58127326,-0.2107761,-0.013231501,0.23104751,-0.19888568,-0.21286552,0.23375398,0.2424895,0.22763185,-0.22607328,0.015973978,-0.50218886,0.073201425,0.032752022,0.61766076,-0.041207593,-0.7111912,0.045439884,0.09570092,0.17018147,0.22082944,0.2889962,-0.09452024,-0.14362767,0.02745375,-0.066759594,0.7054832,0.41021037,-0.17277904,-0.21569782,0.3585584,0.5400505,0.3474373,-0.100166164,-0.051146653,0.063927345,-0.572676,0.005029609,-0.15340576,-0.16904624,0.55167264,-0.03993765,0.34355783,0.5865841,-0.20456783,-0.004390154,0.1592397,0.009735807,-0.0124539435,-0.222784,-0.23096573,0.18059105,-0.32071662,0.14581905,0.05393141,0.65339595,0.16319533,-0.78641564,0.3820151,-0.5281492,0.12222937,-0.14077519,0.33736697,0.62021613,0.33349356,0.34496936,0.5224236,-0.18528523,0.17242877,-0.10149276,-0.3805376,-0.026835402,-0.16596562,0.013255581,-0.5492544,-0.13888873,0.05224975,-0.3556501,0.34153855,0.3073113,-0.4882872,-0.066318564,0.17364772,0.76953506,-0.23192157,-0.18357998,0.9090479,1.0927877,0.9179426,-0.043793615,0.8424914,0.075117774,-0.017055502,0.2183301,-0.46718502,-0.5190435,0.24570428,0.21153305,-0.48647928,0.4084607,-0.08582735,-0.032767404,0.37805733,-0.20626305,-0.02247504,0.0024596553,0.28539374,0.41151866,-0.2684879,-0.488894,-0.40035412,-0.21736646,0.15029591,0.21887648,0.32752058,-0.32223466,0.3155472,0.019806236,1.665182,0.12263385,-0.022684991,0.051961232,0.6342748,0.21928878,-0.24412835,-0.07966408,0.1940161,0.23444296,0.06763512,-0.57614857,0.23010091,-0.11798748,-0.5202549,-0.12731154,-0.35664964,-0.2147706,-0.12761883,-0.3558675,-0.13450018,-0.22420907,-0.3132678,0.5440176,-3.0485537,-0.20609732,0.06466586,0.37396464,-0.0070001483,-0.46438363,0.044091742,-0.37638426,0.23868383,0.26233038,0.4647933,-0.7472765,0.43747357,0.38410744,-0.64699596,-0.10631762,-0.4788425,-0.051989723,0.056714743,0.3458705,-0.021295292,0.14929228,0.31110632,0.22350782,0.45071545,-0.08017983,0.1093693,0.24015851,0.41182923,-0.11685765,0.35172603,-0.24293637,0.40797928,-0.07920034,-0.18675096,0.25926444,-0.3506042,0.19963944,-0.19988094,0.11289721,0.32488328,-0.2557876,-1.0048773,-0.43165198,0.12850721,1.0916387,0.064443834,-0.31877288,0.37974682,-0.60371363,-0.26392075,-0.23771052,0.44675672,-0.12705058,-0.3195714,-0.63664836,-0.08157284,-0.1493294,-0.06839814,0.028111314,-0.16536178,-0.3723533,0.5150328,0.0133991465,0.34618464,0.24973236,0.13859026,-0.46902883,-0.41662827,0.11038306,0.54764086,0.31980106,0.10581634,-0.22483365,-0.15395711,-0.28826064,-0.09373957,0.16346483,0.51692396,0.54673886,-0.03603532,0.15926027,0.14446758,-0.06297649,0.029860312,-0.18729119,-0.07464684,-0.06510341,-0.0016595721,0.57144076,0.7878882,-0.25473043,0.640493,-0.016872024,-0.010625879,-0.21930945,-0.33963332,0.47196245,0.90618616,-0.11932764,-0.3563546,0.5342173,0.45413843,-0.3176739,0.21586074,-0.4747746,0.07681464,0.4116434,-0.27194643,-0.3402544,0.25055906,-0.12883526,0.05135706,-0.7716965,0.22662741,-0.1562902,-0.58505756,-0.49600402,-0.05122937,-2.8433545,0.060083617,-0.17508547,-0.44902134,-0.10203407,-0.4002522,-0.14554602,-0.6539411,-0.63747674,0.21353191,0.13500936,0.66740316,-0.18477277,0.14975126,-0.09403339,-0.2668927,-0.2807697,0.12880905,-0.048817486,0.5408106,0.09641854,-0.24033551,-0.09942625,0.015427329,-0.57955986,0.16463907,-0.5045996,-0.39743498,0.010873179,-0.5532608,-0.21508242,0.6393408,-0.22085728,-0.017139146,-0.24680926,0.006664125,0.0022534777,0.34980264,0.0325763,-0.07486754,0.19975339,-0.009208153,0.39897725,-0.06997502,0.3320427,-0.024834173,0.46841803,0.23256075,-0.1254908,0.3265616,0.54755336,0.7591975,-0.034738783,0.83251333,0.40564713,-0.030465126,0.13627036,-0.27886444,-0.21087475,-0.2765948,-0.25680402,0.12022597,-0.3309441,-0.52429795,-0.21951097,-0.37511888,-0.76535124,0.4823006,-0.028781937,0.13318713,-0.009688401,0.26149747,0.6423211,-0.22922331,0.054339845,-0.021409651,-0.103089355,-0.57220274,-0.15593706,-0.5030086,-0.3359921,0.17963015,1.0074555,-0.27151665,0.045793284,0.09814021,-0.3857604,-0.09440596,0.083845936,-0.051037002,0.09090218,0.05484262,-0.30198538,-0.51497084,0.2902967,-0.22102128,-0.24365385,-0.54825014,0.0929643,0.48036528,-0.34201893,0.4438838,0.12282926,-0.031191962,-0.14225088,-0.4163442,-0.10735736,0.02006656,-0.14321879,0.41138592,0.35972607,-0.7783678,0.3814321,0.46680388,-0.20757847,-0.6029028,0.50887907,-0.078960516,-0.29448888,-0.19716068,0.20912488,0.45075202,0.0046360246,-0.2986335,0.22720008,-0.3888698,0.21531892,0.12732537,0.012049873,0.17602009,-0.08975639,-0.006009052,-0.7236514,0.091655254,-0.3082197,-0.31304705,0.084487,0.24733059,0.45727167,0.08431544,0.1340215,0.21010049,-0.4138324,-0.03667466,-0.054727633,-0.3063366,0.20766331,0.34061837,0.6395363,-0.39130113,0.50791556,0.0341555,-0.03363334,0.34534106,-0.08533224,0.42465147,0.0057396046,0.3078665,0.34056556,-0.372723,0.2090552,0.78966266,0.06925871,0.39745927,0.044847935,-0.08618707,0.12886417,-0.015808642,0.2874877,0.024241269,-0.46588445,0.16265717,-0.3384994,0.19522877,0.45018816,0.14721249,0.19939996,-0.09174181,-0.57688755,0.022014461,0.3286862,0.048856754,-1.4186772,0.22395511,0.2804916,0.90097666,0.29308683,0.10399425,0.046264518,0.7242346,-0.004468473,0.09063,0.33925986,0.2555693,-0.5713009,0.43583915,-0.7526204,0.6709285,0.02911075,-0.11567729,-0.0063048503,-0.07897058,0.3661619,0.4874555,-0.15414922,-0.1339942,0.09132215,-0.35150024,-0.11624241,-0.41951844,0.041156914,-0.7289927,-0.048689585,0.7410782,0.60810775,0.26435837,-0.050447453,0.055941958,0.22586083,0.03453346,0.01901052,-0.05883028,0.086624555,-0.069013566,-0.68861914,-0.09343252,0.35306755,-0.088283785,0.13835679,-0.23529238,-0.06830457,0.17022699,-0.24879237,-0.38049772,-0.07757486,-0.73438615,0.09281536,-0.12520288,-0.59210426,0.43390647,0.06004029,0.25561643,0.3036938,0.10385344,-0.2781426,0.403819,0.15010439,0.8931466,0.028133372,0.03740182,-0.41431764,0.19797187,0.14822932,-0.1006572,-0.15698941,-0.14225465,0.03452565,-0.34048045,0.39200416,-0.025960783,-0.41570878,-0.19723241,-0.12550397,0.26838478,0.5138797,-0.30377242,-0.16850972,-0.17157167,-0.3916181,-0.23108584,-0.1982183,-0.12432114,0.29135302,0.34842682,-0.37211564,-0.1293172,-0.09696916,0.0048046783,0.4414494,-0.051696867,0.56209964,0.265763,0.2283587,-0.09898021,-0.38199964,0.14950563,0.59253377,-0.0921246,-0.19344407,-0.56485647,-0.41535124,-0.20660956,0.2143333,-0.09335569,0.3211188,0.14199293,-0.13538875,0.55998534,0.1162134,1.1587653,0.07586279,-0.35801756,0.43514776,0.31593558,0.08997498,-0.16780365,-0.27644137,0.8703682,0.28539324,-0.11631227,-0.19829203,-0.36579645,0.058724836,0.20717601,-0.21306072,-0.04092129,0.06644249,-0.62729,-0.08244484,0.43916824,0.068653375,0.17587276,-0.18295647,0.2397996,0.3791226,0.015424263,0.27496907,-0.3909509,-0.105307795,0.28497696,0.24960436,0.15882643,0.11592519,-0.5766313,0.23223941,-0.37350821,0.09268231,-0.30639207,0.2679883,-0.20074786,-0.25216207,0.2229455,0.24555571,0.3777322,-0.24707793,-0.36274847,-0.367884,0.4404633,-0.019053617,-0.037717517,0.17495783,-0.28183052,-0.036937907,-0.08480538,0.40954754,0.85066414,-0.050922763,0.007511983,0.3096014,-0.3198575,-0.68704224,0.3786874,-0.22868319,0.21256213,0.030997908,0.10093135,-0.7287538,0.30951592,0.29863706,0.13492452,-0.047908485,-0.40998152,-0.3739173,0.21104665,-0.34248313,-0.1294021,-0.38881,-0.13913172,0.6571401,-0.19018905,-0.31970662,0.059811145,0.43177798,-0.07077828,-0.21280019,0.072385736,-0.32184994,0.24395542,-0.17386077,-0.2841204,-0.3714812,0.03211325,-0.32833865,0.20293538,0.08472663,-0.24003148,0.2145075,-0.22856021,0.03149578,0.92788935,-0.34682772,0.37329432,-0.5361583,-0.5686248,-0.8174775,-0.48682487,0.20098181,0.03122284,-0.07423713,-0.8321211,0.06267492,-0.031809587,-0.3081946,-0.05638581,-0.3966639,0.45537862,0.031091457,0.1511095,-0.091571964,-0.81826633,0.05498904,0.12232707,-0.40639758,-0.64034224,0.51507443,0.08025955,0.82418877,-0.0045207404,0.13866149,0.09680581,-0.21755636,-0.058518816,-0.22746907,-0.24838902,-0.45018658,0.17564897 +361,0.45662248,-0.06940386,-0.40450862,-0.0035135425,-0.23345004,-0.0041090916,-0.14977911,0.2517875,0.37264097,-0.32051608,-0.3251893,-0.18059033,-0.037998088,0.19648656,-0.059632026,-0.27029675,-0.0100082755,0.5158541,-0.5884834,0.5720181,-0.15016451,0.26012027,0.10907365,0.5882118,0.1676368,0.041382786,-0.020639108,-0.09015939,-0.11864174,-0.26545164,0.20732641,0.07218823,-0.95305294,0.28618348,-0.43749565,-0.40058157,-0.075700864,-0.49009615,-0.4315925,-0.84669524,0.20748605,-0.76185983,0.64878803,0.08019397,-0.38068658,0.21548226,-0.03751725,0.35319296,-0.01110054,-0.059469108,0.3633723,-0.31659266,-0.15557456,-0.3038613,0.034614887,-0.1825104,-0.51484203,0.1178116,-0.19669707,0.099539086,-0.410436,0.13910863,-0.21766901,0.0032834227,-0.1633626,0.49456608,-0.42041555,0.2770105,0.041172247,-0.042340115,0.3599304,-0.55605245,-0.09652995,-0.20509213,0.28546068,-0.1750491,-0.19129722,0.2374755,-0.07469245,0.5870131,0.005030669,-0.09620938,-0.13842452,0.15836607,0.0110948365,0.42672136,-0.099711016,-0.12571344,0.002815696,-0.21099307,0.12337109,-0.04939199,0.08421048,-0.18475668,-0.044773165,-0.32068458,-0.014836027,0.18739015,0.5831414,-0.100954376,-0.1321799,0.15488577,0.713643,0.27399933,0.0492268,0.05378843,0.034635488,-0.4823669,-0.3022889,-0.07279074,-0.334912,0.569244,-0.09893139,0.14303686,0.5904323,0.04061894,-0.16560186,0.1587808,0.13812222,0.09740896,-0.21073821,-0.50568074,0.63518155,-0.4061222,0.14797226,-0.11291964,0.6882797,0.13040888,-0.6501461,0.2640197,-0.56368285,0.049036857,0.024858452,0.5412529,0.67265797,0.4590939,0.3442605,0.7132321,-0.48652875,0.16490701,-0.028113237,-0.20292854,0.058979254,-0.2525129,0.14390594,-0.29241624,-0.22996548,-0.11228686,-0.33584368,0.023181153,0.4146444,-0.54425913,-0.11676823,0.24837619,0.69417965,-0.20697044,-0.041315094,0.6754639,1.0727448,1.0793172,0.11561433,1.1595167,0.23056124,-0.3465896,0.019467281,-0.08630224,-0.7357139,0.1672447,0.13536757,-0.27788928,0.15722539,0.32188103,-0.073347464,0.49506935,-0.9455317,0.0199564,-0.2006626,0.17434451,-0.13559696,0.016788244,-0.60151714,-0.26856327,-0.22534916,0.08690625,0.05662748,0.23620874,-0.27692428,0.1581982,0.110916615,1.5467308,-0.28349835,-0.0058725188,0.14294428,0.36846793,0.06401388,-0.26034105,-0.17532757,0.10400966,0.29306847,0.066346936,-0.4181236,-0.011520734,-0.033693165,-0.39837056,-0.24030367,-0.059305485,-0.04374238,-0.037158053,-0.3891263,-0.4437564,-0.06181222,-0.53158784,0.43874007,-2.0583704,-0.14553028,0.028240545,0.61928505,-0.35315466,-0.268438,-0.11023808,-0.42043594,0.31190962,0.26886442,0.3462651,-0.56777775,0.33804765,0.56865287,-0.66891503,-0.0829991,-0.60128313,-0.21847092,0.06905425,-0.016059931,0.11527724,-0.10780648,-0.16296738,0.053822048,0.2698657,0.023105837,0.14268702,0.46263158,0.2678242,-0.08031835,0.32447842,0.04933898,0.4584869,-0.46139696,-0.19132076,0.54420793,-0.32831648,0.22822809,-0.4411279,0.06411555,0.4912353,-0.44833705,-0.6851801,-0.5730143,-0.2870373,1.0642831,-0.15917514,-0.5023668,0.1846121,-0.2527309,-0.25444227,0.096873745,0.60242283,-0.05095411,0.06995977,-0.8800643,-0.17120904,-0.13796112,0.35343584,0.10901398,0.04201859,-0.6701952,0.6631676,-0.17763938,0.29285187,0.51845646,0.298562,0.014769738,-0.48301446,0.18378693,1.0511394,0.37757143,0.19302501,-0.4881148,-0.052969966,-0.36019403,-0.03702859,-0.2364838,0.58843446,0.68643516,-0.29400998,0.038432315,0.15064934,-0.048237555,0.018227926,-0.15129127,-0.4324856,-0.084153906,-0.1932869,0.6213437,1.1166134,-0.020492705,0.19328164,-0.12581475,0.2373531,-0.20758358,-0.45228326,0.5186638,0.9221662,-0.16222903,0.04864728,0.7769318,0.3324219,-0.21583956,0.5251429,-0.72718036,-0.47631696,0.24822792,0.04011325,-0.43220806,0.14564699,-0.3512997,0.2865311,-0.6516985,0.5466136,-0.14335926,-0.44017187,-0.7615465,-0.08134719,-1.3305871,0.17549871,-0.30809245,0.009010691,-0.08044234,-0.1721213,0.031768434,-0.40221915,-0.6308202,0.27847427,0.11368036,0.6130841,-0.11997534,0.3001201,-0.0808135,-0.41629952,-0.36277536,0.067361504,0.3939315,0.29458782,0.041920997,-0.37193224,0.008812757,-0.12203283,-0.103995614,-0.14119089,-0.742948,-0.49898177,-0.16708161,-0.48628986,-0.33691055,0.5740414,-0.3549464,0.001878688,-0.31491444,-0.14634511,-0.075102635,0.11882074,0.06506132,0.23528291,0.12806562,-0.18002525,-0.24028212,-0.13737722,0.41124395,0.16063362,0.036674876,0.36119187,-0.23127382,0.15551975,0.3913878,0.7249756,-0.33431453,1.0516958,0.69846153,-0.09436277,0.06725864,-0.15228441,-0.28912348,-0.50201565,-0.13375998,-0.06584096,-0.451488,-0.34970632,0.105310716,-0.3383015,-0.8368533,0.6286056,-0.10608347,0.10354233,0.27359873,0.09700168,0.3981167,-0.28269857,-0.2998811,-0.141368,-0.048776135,-0.6087055,-0.4430806,-0.5243725,-0.4268589,-0.09123456,1.1750005,-0.014393472,0.1674013,0.4966943,-0.16506103,0.07524955,0.086496875,-0.200627,-0.15622947,0.8065204,0.16551307,-0.66467863,0.3351032,0.19023544,-0.06603192,-0.6010673,0.4380449,0.62269235,-0.5603752,0.5223291,0.38275015,0.024145126,-0.15769124,-0.6256291,-0.44225502,-0.13747174,-0.23117803,0.30336604,0.24940076,-0.6369678,0.24197966,0.17923053,-0.34922367,-0.9836802,0.51383936,-0.052640095,-0.50673854,0.14143418,0.24723086,-0.21730232,0.060244117,-0.028560685,0.2909514,-0.29415774,0.46751451,0.15335305,-0.28224996,0.03826545,-0.47769362,0.0074478206,-0.8668194,0.14461862,-0.5100387,-0.50769603,0.09653907,0.12226556,-0.1922833,0.5638602,0.5694995,0.31766525,-0.28066894,-0.0082141,-0.30088842,-0.33782065,0.3478751,0.3533406,0.55732507,-0.47272813,0.5359739,-0.089175135,-0.2212158,-0.2896743,-0.08891516,0.40313542,-0.285391,0.3372645,0.045928534,-0.022677375,0.057879083,0.64533496,0.07350826,0.32225344,0.008942476,-0.10943956,0.34189433,0.05415116,0.2554478,-0.118102,-0.6595447,0.2803651,-0.27302867,0.075681426,0.25436166,0.16111249,0.3347925,-0.08619695,-0.4288302,0.107861474,0.17266501,-0.0745198,-1.2610291,0.302116,0.090829425,0.6906103,0.5972087,0.010522842,0.0719604,0.88730663,-0.0633398,0.11388858,0.21889177,-0.04704052,-0.23257685,0.50753677,-0.5575892,0.23541634,-0.14354767,-0.064302176,0.117257446,0.001839922,0.33472508,0.62706745,-0.14381391,0.010398507,-0.3176592,-0.22978494,0.035378493,-0.32813868,0.39867193,-0.7377425,-0.3820296,0.8753332,0.59278905,0.40394205,-0.24321413,0.17453298,-0.034918692,-0.19353512,0.23996346,0.13193712,-0.15846154,0.34351602,-0.54742694,0.2508671,0.4290136,-0.35814685,-0.11792715,-0.0948195,-0.24143508,0.061547756,-0.344727,-0.22112964,-0.09964614,-0.96558887,-0.18678276,-0.60505086,-0.09192419,0.34946683,-0.0187524,0.18773317,0.13134703,0.07911265,-0.24059692,0.40021926,0.096929595,0.7480495,0.3121414,-0.074564986,-0.18199374,0.4430569,0.27042872,-0.18677591,0.15590443,-0.17955218,0.17281786,-0.54073584,0.3407912,0.047842264,-0.21241197,0.21149364,-0.14443046,0.06842721,0.66337174,-0.044300683,-0.12080201,0.15615152,-0.2947631,-0.18973705,-0.108523995,-0.26028177,0.29210892,0.26354605,-0.24286117,-0.09979301,-0.06722551,-0.20208311,0.43760973,0.06492503,0.52335095,0.3573492,-0.038776875,-0.37665686,0.025918035,-0.03217978,0.67718506,-0.0036556995,-0.24559662,-0.22294539,-0.40526587,-0.36316362,0.56939405,-0.10118169,0.2122183,0.12237969,0.06711679,0.816935,0.39378807,1.0112793,0.042045675,-0.17730466,0.16699776,0.44034898,-0.08314828,0.007967811,-0.64431417,0.9319443,0.40729207,-0.15579851,-0.025418751,-0.10493781,-0.067925446,0.088246055,-0.10285127,-0.055455163,-0.035568025,-0.7946952,-0.042486522,0.13503595,0.46716213,-0.1200072,-0.13338384,0.14968944,0.33185166,-0.10093232,0.40093577,-0.5207163,-0.23144343,0.48606846,0.23542213,0.041199878,0.16052318,-0.2977057,0.3482173,-0.4543834,-0.040966466,-0.39655298,0.08537232,-0.23999588,-0.38265273,0.2075937,0.1927808,0.45291325,-0.62966925,-0.10856671,-0.33517092,0.36324868,0.28395775,0.08762377,0.55283535,-0.29530576,-0.096344404,-0.035116017,0.37772793,0.9106386,-0.43992174,0.25472447,0.40035054,-0.24985097,-0.443804,0.35018831,-0.20282644,0.01625492,-0.11628966,-0.3345372,-0.6249993,0.19554418,0.03601024,-0.21430741,0.109673895,-0.91843915,-0.00788419,0.46892676,-0.1583236,-0.13665663,-0.22214444,-0.0053221467,0.4191389,0.017552119,-0.47342923,0.04269941,0.20996983,-0.32155484,-0.49117836,-0.033615395,-0.59906393,0.15393016,0.07719814,-0.40911028,-0.38646978,0.040322416,-0.54848725,-0.12113318,0.11936033,-0.31395817,0.0116618965,-0.38574484,0.18933609,0.8890094,-0.07343075,0.19002557,-0.2734687,-0.41200745,-1.0369961,-0.18977165,0.35064098,0.22801381,-0.031021796,-0.4763014,-0.14858659,-0.2322639,-0.07882984,0.044199195,-0.40996927,0.3518206,0.35617396,0.41325554,-0.29493484,-0.89408994,0.05083853,0.13280807,-0.39288476,-0.44782147,0.2766251,0.23602046,0.9824769,-0.06702229,0.06361734,0.04281155,-0.6772764,0.17230085,0.04058161,-0.17176077,-0.68160015,0.019821597 +362,0.22216204,-0.22317496,-0.50383073,-0.040160958,-0.30944487,0.2270812,-0.2862664,0.45623222,0.14483222,-0.4599017,-0.06886654,-0.09660527,-0.10218386,0.22105983,-0.12307542,-0.23468794,-0.042792883,0.23044515,-0.5540239,0.36706442,-0.37832636,0.23072772,-0.039099026,0.3311748,0.08660055,0.29080427,-0.095801316,-0.08717968,-0.04494264,-0.25713536,0.0051985225,0.22380342,-0.5859307,0.36502045,-0.27230728,-0.2708977,0.014948899,-0.31949326,-0.25054702,-0.65569717,0.10299856,-0.8029992,0.5569999,0.0020869474,-0.24610282,0.10277686,0.07471417,0.44651732,-0.1649966,0.0740466,0.31404248,-0.31522733,-0.25918275,-0.37936923,-0.0653685,-0.45286375,-0.48868412,-0.06397649,-0.50471336,-0.111052044,-0.15257612,0.28446656,-0.21730667,-0.06568535,0.04447,0.3025929,-0.36056077,0.307565,0.049966726,-0.15869074,0.15715507,-0.6940076,-0.06323972,-0.17989495,0.23304892,-0.2552327,-0.47573838,0.3170581,0.1642903,0.40541667,0.041424643,-0.10995094,-0.34789243,-0.12000222,0.0923398,0.44986832,-0.23506378,-0.22947365,-0.026214894,0.078066126,0.29466662,0.22707106,0.0135760745,-0.3985162,-0.13356471,0.012773673,-0.12187287,0.32437629,0.5307403,-0.14478745,-0.30972096,0.43727788,0.72816443,0.08876414,-0.14154339,0.049247734,-0.06637272,-0.5720207,-0.06138247,0.030472064,-0.07249069,0.37569442,-0.11176488,0.11043942,0.6917606,-0.36083743,-0.20444734,0.07772417,0.21227923,0.01067268,-0.2694486,-0.16928817,0.3432473,-0.48472112,0.12563623,-0.13220532,0.62030697,-0.03840377,-0.68988776,0.1743981,-0.5194414,0.0186328,-0.04253309,0.53714246,0.7930702,0.53032476,0.17240402,0.70476204,-0.3358764,0.1438573,-0.18341699,-0.21884535,0.1346971,-0.24328664,-0.13707122,-0.50582784,0.079280496,-0.072450414,-0.17025934,0.18494278,0.20739144,-0.6999544,-0.12682973,0.2503899,0.56842655,-0.36963928,-0.111485265,0.6556145,0.91719043,0.8512102,0.13378535,1.1963936,0.2214536,-0.16865346,0.16296639,-0.27603564,-0.7464993,0.17846803,0.20188037,-0.1437179,0.15605578,0.19180816,0.06797199,0.32918233,-0.5371425,-0.15796791,-0.20000052,0.52744216,0.13493109,-0.11414286,-0.23302348,-0.06532092,-0.031166304,0.02651426,0.097870745,0.23133118,-0.31463405,0.32971627,0.19146723,1.3586164,-0.039210625,0.0794646,0.12817478,0.24193494,0.190662,-0.1812384,-0.0342777,0.47236678,0.33102196,0.1951321,-0.40870178,0.060125407,-0.17134802,-0.5022064,-0.17442714,-0.1996967,-0.16501203,-0.087075315,-0.3718523,-0.29992172,-0.045919266,-0.193612,0.6096435,-2.8550622,0.021341983,-0.10296359,0.312697,-0.18191984,-0.4624747,-0.18835713,-0.39607298,0.33819792,0.17199828,0.4597025,-0.54268897,0.19672935,0.3280403,-0.65010893,-0.18556385,-0.6227841,-0.07502679,0.01577553,0.33459166,0.14784239,-0.03984654,-0.06596201,-0.1862279,0.54985446,-0.26852232,0.07478944,0.42824656,0.2639397,0.054002333,0.4050412,0.20031519,0.55866086,-0.29301116,-0.34916785,0.3917485,-0.4177009,0.29026607,0.070788704,0.03576598,0.49277037,-0.2785293,-0.8196776,-0.7702165,-0.025414975,1.1815034,-0.2627352,-0.38765225,0.14172377,-0.3448019,-0.3987519,-0.07593051,0.33528948,-0.102622405,0.06126604,-0.7791069,0.054319393,-0.14776094,0.4045959,-0.008854168,-0.019600682,-0.3902979,0.5840379,-0.20543763,0.35302174,0.45067436,0.18777351,-0.40695724,-0.3463363,-0.033228595,1.0194811,0.415109,0.08032766,-0.08586346,-0.28349826,-0.2862906,-0.12211146,0.21872982,0.6415091,0.41375384,-0.1344572,0.19161947,0.27095786,-0.16987279,0.113802314,-0.15281662,-0.18241236,-0.11214439,0.12717548,0.52628744,0.5910825,-0.008980027,0.57203656,-0.083496355,0.31180412,-0.09874127,-0.5400474,0.38794377,0.87033355,-0.19178829,-0.39820367,0.530991,0.37960353,-0.1814909,0.37915593,-0.55473113,-0.3272412,0.4350796,-0.16923732,-0.44938537,0.13907005,-0.24162285,0.24696249,-0.7753955,0.30731332,-0.22908685,-0.7429904,-0.71092093,-0.2699777,-2.0898414,0.14889066,-0.17240664,-0.103244044,-0.050968993,-0.19080044,0.21450645,-0.52929574,-0.34114343,0.12959987,0.10375834,0.5292409,-0.047922213,0.00059620343,-0.22403142,-0.32527918,-0.16687514,0.3207246,0.20717494,0.21963318,-0.113037795,-0.42427388,0.003177599,-0.016468795,-0.2941558,0.08712377,-0.6451189,-0.38826066,-0.07509635,-0.4566803,-0.26947448,0.7042674,-0.420549,-0.10170989,-0.1060807,0.11611153,0.121681325,0.088501826,0.22992903,0.16013367,0.12847368,0.013707325,-0.06815661,-0.31860194,0.3272642,0.025645072,0.2518446,0.48170286,-0.17222634,0.27163887,0.49465984,0.563835,-0.33717743,0.8483397,0.60356987,-0.10314844,0.2240209,-0.14041616,-0.21797727,-0.45806897,-0.300825,-0.14564157,-0.5608286,-0.26245517,0.021395126,-0.22064005,-0.73297024,0.64149475,0.02067559,-0.11892459,-0.03483819,0.46604246,0.4138198,-0.20951134,-0.17865008,-0.18715292,-0.09658448,-0.4419723,-0.4818316,-0.5324212,-0.50453967,0.008791673,1.3586421,-0.33703658,0.1841381,0.091607936,-0.22719435,-0.026802218,0.32026756,-0.100986265,0.14977883,0.5631723,-0.10465158,-0.5352615,0.3399308,-0.19026352,-0.22896232,-0.6982948,0.35306683,0.59973925,-0.7512999,0.43529573,0.23872373,0.057302628,-0.180759,-0.58846146,-0.13046496,-0.05550456,-0.4043117,0.30698243,0.25744256,-0.7594372,0.4233511,0.2928382,-0.24866104,-0.5863513,0.3427796,-0.059439663,-0.12221754,0.015122445,0.32833913,0.16678163,-0.03268489,-0.18883258,0.2573615,-0.28580314,0.37121534,0.06297266,-0.06562191,0.18125172,-0.24805681,-0.21221265,-0.6487226,0.044487,-0.3771318,-0.40875858,0.34416017,0.015680082,0.085702516,0.33163124,0.063826576,0.4268447,-0.27219963,0.07852785,-0.29939848,-0.2716824,0.20262337,0.40132916,0.42364243,-0.37639135,0.5396241,0.07094412,-0.26062095,-0.08472673,-0.0031827649,0.62213033,-0.1362337,0.39123717,-0.040725492,-0.110041395,0.18607426,0.67901117,0.13638707,0.49778822,-0.2377939,-0.16702232,-0.012300013,0.03599467,0.18384238,0.060078543,-0.6174462,0.10955949,-0.12142204,0.22078404,0.40210587,0.07979039,0.4897384,-0.09585734,-0.21341226,-0.048643567,0.20345102,0.21447198,-1.3725859,0.39636225,0.31401882,0.7843548,0.31131876,0.11321406,0.07080007,0.63120157,-0.23718172,0.11677875,0.23016709,-0.13025509,-0.2721791,0.372245,-0.90604085,0.56556714,-0.06981301,0.07124616,0.0661813,-0.09745179,0.44544584,0.9843871,-0.26955906,0.03700069,0.10355911,-0.27502537,0.1546088,-0.2840673,0.1737261,-0.57555085,-0.39751995,0.7104218,0.44941172,0.44320408,-0.15137953,-0.050033305,0.2890595,-0.11108819,0.23423032,-0.031065112,0.17681615,0.05133455,-0.3525236,-0.10212493,0.6320721,-0.21841711,0.16944881,0.11007878,-0.20157698,0.36750358,-0.036246035,0.014566581,-0.13319452,-0.42110118,0.025052028,-0.248049,-0.37399042,0.60495794,-0.3516179,0.15611272,0.20449717,0.090964206,-0.21350582,0.53644484,0.15644707,0.8579283,0.06983432,-0.19211505,-0.29654747,0.34225276,0.14929628,-0.16460893,0.020611163,-0.27645996,0.016169855,-0.6906857,0.18149765,-0.23647954,-0.43989143,0.01575404,-0.15288748,-0.0064271945,0.5036803,0.03880385,-0.12565298,0.14577295,-0.26543403,-0.25396684,-0.20621684,-0.2497699,0.2817539,0.29578844,0.023223843,-0.21635841,-0.22775349,-0.23330459,0.19938754,0.06240917,0.31252918,0.20071216,0.00872858,-0.19221278,0.08525823,0.13522281,0.4945388,-0.16354989,-0.12398208,0.003259448,-0.3293396,-0.46182826,0.19252902,-0.15552332,0.45473078,0.2271653,-0.26142147,0.8296173,-0.115653835,1.2195494,0.082483746,-0.2655707,0.14032486,0.5077652,0.14629236,0.07875439,-0.35871398,0.9049601,0.6516244,0.071372,-0.06369691,-0.2641744,-0.13058107,0.19586353,-0.18544601,-0.15323757,-0.035795353,-0.663433,-0.29597527,0.34505552,0.19239025,0.09365849,-0.12299867,-0.04614792,0.29342833,-0.09459269,0.16704121,-0.43272546,0.044960868,0.21841694,0.3883037,-0.10741396,0.19412167,-0.49720865,0.4289107,-0.4760249,0.028203432,-0.1383625,0.22449154,-0.18398218,-0.17843825,0.14215747,-0.025443697,0.3474765,-0.4150421,-0.31950453,-0.20280698,0.49240273,0.17440285,0.19805747,0.59101105,-0.3255631,0.02420566,-0.05645193,0.29312143,0.9671353,-0.578494,-0.08784457,0.4355393,-0.2395514,-0.404028,0.3753988,-0.40372494,0.19501638,-0.03475887,-0.2396904,-0.280235,0.28966597,0.18246517,0.08546179,-0.052402362,-0.6055954,0.102035746,0.15980321,-0.3120684,-0.108807944,-0.10467779,0.29116383,0.66676456,-0.26164332,-0.46576247,0.07932003,0.25465414,-0.267979,-0.37177786,-0.055089258,-0.32886928,0.19777207,0.0095748985,-0.37020403,-0.15390949,0.08545688,-0.42583594,-0.11436289,0.10971387,-0.2488313,0.046077285,-0.20357123,0.17759481,0.68413514,-0.19542636,0.21088044,-0.46860406,-0.37512106,-0.78105074,-0.011877577,0.21195449,0.19301298,0.006783644,-0.7364767,-0.12651552,-0.2045193,-0.3194889,-0.032367244,-0.5060594,0.5632467,0.15615335,0.1637352,-0.25485367,-0.9897414,0.25318652,0.13979381,-0.020005222,-0.64337975,0.51376766,-0.088404864,0.81685513,0.09452493,0.009782829,0.34948668,-0.49947014,0.2031475,-0.20017835,-0.071408816,-0.86050797,-0.1021341 +363,0.35971028,-0.36468747,-0.48205894,-0.22272827,-0.24908689,-0.13386776,-0.15561691,0.41706812,0.23036702,-0.2952564,-0.22295114,-0.07928608,0.03345733,0.4267648,-0.026248066,-0.6298166,-0.12254857,0.10559634,-0.56204385,0.59299076,-0.54844314,0.19410071,0.118176386,0.49693367,0.119056806,0.27029303,0.29417238,-0.1822456,0.076094314,0.0058019804,-0.19781953,0.3278764,-0.37046435,0.14511569,-0.09662085,-0.36101466,-0.05936218,-0.50796074,-0.08955085,-0.76423043,0.13288651,-0.888359,0.38098648,0.09904099,-0.349642,-0.26770973,0.2817205,0.4603636,-0.41075343,0.022360729,0.21402296,-0.085666165,-0.21999851,-0.15694621,0.05393662,-0.22966957,-0.3896878,-0.1309044,-0.4989227,-0.262124,-0.01526684,0.19666037,-0.41176775,-0.13193594,-0.21362415,0.37669578,-0.42875496,-0.065232545,0.48266882,-0.23950857,0.4244599,-0.534001,-0.07521642,-0.17172012,0.35376552,-0.05825534,-0.41350225,0.32458177,0.3844217,0.36154413,0.122617535,-0.24906111,-0.10508633,-0.189294,0.16629556,0.4098999,-0.25478473,-0.2992944,-0.20234126,0.06738176,0.3142141,0.559101,-0.028161498,-0.4677078,-0.054307397,-0.06845644,-0.120835155,0.34702837,0.48798913,-0.15818664,-0.2623338,0.14069916,0.5360521,0.28692326,-0.23081534,0.073164746,0.1364502,-0.63092506,-0.09579112,0.4008249,0.03870304,0.5223048,-0.06681988,0.15885566,0.88305724,-0.102788724,-0.004044267,-0.017780405,0.04416441,-0.2607167,-0.5419765,-0.26196364,0.2094228,-0.55470186,0.13453048,-0.24482657,0.8328922,0.04512929,-0.7606526,0.2841866,-0.60687065,0.16191587,-0.19804588,0.65243876,0.7338672,0.34644598,0.4083128,0.71355534,-0.22470704,0.15890151,0.08022396,-0.38617718,0.04493849,-0.17026281,-0.017953685,-0.5815226,0.12099739,-0.022744715,0.15005113,0.07734304,0.2891727,-0.5669905,-0.14417502,0.16871825,0.71346855,-0.31537765,-0.04702043,0.56930906,0.9406207,0.9559621,0.15269688,1.0103217,0.29020408,-0.14681925,0.2687827,-0.2728545,-0.6542338,0.14637558,0.36773637,-0.018234005,0.16754839,-0.20115297,-0.1613369,0.35492626,-0.3019976,0.07266908,-0.10690526,0.16475758,-0.011687545,-0.10485586,-0.61478615,-0.2855481,-0.120422564,-0.09478076,-0.0996375,0.15210022,-0.20474349,0.37700638,-0.14248866,1.3425905,-0.09351414,0.061654605,0.17227395,0.50053847,0.20278963,-0.19295517,-0.08343374,0.43891585,0.58998704,-0.07426961,-0.5456372,0.29259968,-0.24458566,-0.46833462,-0.036985766,-0.46699312,-0.11061602,0.0011999791,-0.61041045,-0.15302391,-0.11394104,-0.23985934,0.39071104,-2.9190955,-0.19869398,-0.26836175,0.16785939,-0.25189203,-0.10097206,-0.18834612,-0.39550593,0.25086498,0.29552886,0.54204667,-0.6335596,0.40256235,0.48447558,-0.50196713,-0.17188266,-0.7461552,-0.14790536,-0.04944472,0.33927172,0.009165817,0.029728783,-0.046848692,0.120915905,0.6704662,-0.09207012,0.12808993,0.47483715,0.2843528,0.097702146,0.42907238,-0.03413993,0.5365862,-0.43276164,-0.18445888,0.25930282,-0.21793574,0.2392274,0.15646154,0.094381995,0.5141434,-0.4519699,-0.927584,-0.6738932,-0.4110487,1.0268245,-0.50579596,-0.33568323,0.20414576,-0.2885365,0.04632491,-0.024901778,0.65657,0.017492028,0.16770941,-0.7699538,0.13696748,0.026765347,0.31000468,0.059741873,-0.19017552,-0.21303262,0.66599756,-0.035879478,0.68395877,0.35375485,0.13064276,-0.2595066,-0.47091872,0.052178852,0.70078856,0.3247641,0.053281955,-0.11141659,-0.2877733,-0.12110551,-0.11770395,0.14423428,0.60138595,0.89821726,-0.052553836,0.14889579,0.39304286,-0.11321033,0.033821154,-0.081617944,-0.15498553,-0.10101238,0.1504269,0.41719264,0.5011928,-0.089847654,0.4742131,-0.19236627,0.3373268,-0.0971963,-0.51174825,0.66065115,0.5489584,-0.106182046,-0.083584115,0.39559808,0.6580743,-0.4350336,0.40643805,-0.58399177,-0.08668094,0.6668521,-0.2376524,-0.48621053,0.20674501,-0.38467392,0.2269633,-0.94053376,0.36178896,-0.47472665,-0.44993395,-0.36582205,0.014745548,-3.2836645,0.34013063,-0.19391544,-0.28404042,-0.3397885,-0.057759568,0.33008832,-0.6269244,-0.5198194,0.10268636,0.29161072,0.70756215,0.05010759,-0.061949436,-0.379504,-0.06831288,-0.055661567,0.19115283,-0.012744784,0.23435329,-0.16456074,-0.42725194,-0.123585545,0.011128907,-0.565946,0.18320659,-0.609442,-0.48598942,-0.14703074,-0.6046225,-0.3120371,0.62794644,-0.27887028,-0.06078252,-0.030962948,0.07288889,-0.14406577,0.3717068,0.17740437,0.23312944,0.11941959,-0.056915265,-0.07146896,-0.29126185,0.23019692,-0.08783984,0.20297956,0.075943254,-0.04483402,0.3312575,0.5365388,0.5256245,-0.11142826,0.8042996,0.48174497,-0.027901081,0.2410799,-0.31549627,-0.15189816,-0.47578618,-0.31587458,-0.2078823,-0.33628413,-0.49257982,0.11200314,-0.14143276,-0.79746825,0.61879516,-0.045511525,0.29224253,0.010862357,0.21237707,0.4050887,-0.09747538,-0.019652762,-0.12612788,-0.10731081,-0.47825366,-0.24686025,-0.71781355,-0.44441932,0.1101801,1.0171002,-0.32580015,0.13388707,-0.09238885,-0.34979427,-0.048629794,0.1462085,0.03390294,0.40614447,0.35198674,-0.17191672,-0.54438937,0.32047898,0.08491544,-0.3442517,-0.50713366,0.09240997,0.70249265,-0.74938715,0.6819045,0.21329778,0.02058052,-0.22860672,-0.5796156,-0.3304008,0.04421423,-0.16700205,0.36954525,0.12790516,-0.71151453,0.44904476,0.4648295,-0.28525904,-0.72496235,0.34760195,-0.12332504,-0.3441332,-0.08000113,0.3307475,-0.123855755,-0.12670499,-0.19507192,0.23489657,-0.41542625,0.16182676,0.16656008,-0.108621866,0.4861512,-0.16686152,-0.1065817,-0.5968467,0.15433581,-0.6848535,-0.19139725,0.48022744,-0.057525728,0.010054744,0.060362935,0.014129451,0.350495,-0.20650846,0.13758247,0.029017938,-0.27673286,0.23170903,0.5285077,0.24538986,-0.27280533,0.5801337,0.17884949,-0.04561992,-0.11507307,0.24786347,0.32273844,0.075580485,0.44670156,-0.50094837,-0.31442547,0.38874462,0.8211102,0.11524101,0.5265167,0.021332929,0.06763384,0.25149998,-0.008775353,0.22548261,0.0005896917,-0.23974323,-0.0578591,-0.110954635,0.14754571,0.5055943,0.23584692,0.37290102,0.09524894,-0.1554246,0.08730053,0.3236574,-0.042961504,-1.0104865,0.5636753,0.34798065,0.7667054,0.49169064,0.085013285,-0.28226832,0.5705219,-0.31431916,0.1722778,0.3109059,0.024012158,-0.52336025,0.8727173,-0.68443674,0.5063278,-0.21271075,-0.0625891,0.13897546,0.038449205,0.36712706,0.6698048,-0.077333614,0.07304769,0.008353787,-0.23288253,0.04546908,-0.43364355,-0.017084168,-0.42687815,-0.45161802,0.662861,0.4481437,0.35064122,-0.19862372,-0.072210364,0.17597121,-0.107615486,0.20542225,-0.07390815,0.06564758,0.1406943,-0.6247121,-0.15242502,0.5686227,-0.103374675,0.1493168,-0.124930106,-0.3029433,0.07534342,-0.14315987,0.11959501,-0.045558736,-0.61865276,0.15240936,-0.41338634,-0.47844556,0.38273776,-0.5555793,0.17263664,0.14198266,-0.007920637,-0.13663095,0.40884843,-0.009820416,0.8762643,-0.055511914,-0.25864947,-0.36267716,0.061950013,0.17827763,-0.23044378,-0.07791607,-0.39394933,-0.093621895,-0.5251864,0.5627453,0.1046022,-0.3509995,0.26918414,-0.20731269,-0.0746258,0.5603889,-0.052923676,-0.16005437,-0.13326746,-0.2609008,-0.45004383,-0.03399735,-0.24664317,0.30831325,0.24139833,0.14745936,-0.053659555,-0.1303044,-0.03429598,0.53024113,0.12224821,0.45295575,0.34353536,0.122645065,-0.34159756,0.12236829,0.21679181,0.4346097,0.27908596,0.057544444,-0.38556704,-0.24831054,-0.20984147,-0.06457791,-0.16919623,0.34837517,0.03410031,-0.20012951,1.0050213,-0.051662702,1.0236329,0.035477635,-0.37324584,0.003828819,0.34826204,-0.034692623,-0.014938538,-0.24890019,0.7389316,0.574314,-0.06455215,-0.03274967,-0.31425267,-0.21547583,0.42321056,-0.2655937,-0.1287336,-0.056089394,-0.53169715,-0.36846447,0.19092928,0.20744817,0.23288478,-0.10373409,-0.12798215,0.038612004,-0.014748587,0.20725147,-0.46852258,0.077016346,-0.04617683,0.31328848,-0.02021185,0.17921966,-0.43095696,0.39380565,-0.77793163,0.2875912,-0.48760796,0.09658089,-0.14863455,-0.34941992,0.07419026,-0.106084,0.28459197,-0.24995208,-0.18891114,-0.019661056,0.5637551,0.13064131,0.13287574,0.71888375,-0.2451973,0.17749572,0.16980058,0.46804816,1.1822221,-0.4823233,-0.25692588,0.30497634,-0.44396877,-0.6520977,0.3422451,-0.35784715,-0.010807239,-0.13856688,-0.45601746,-0.44564378,0.24603759,0.29968384,0.10039944,0.064368576,-0.48858228,-0.059615415,0.34697235,-0.26563826,-0.31933314,-0.3588837,0.50058323,0.6179127,-0.19016673,-0.43298537,0.00020601199,0.18687609,-0.1974694,-0.31941396,0.10949036,-0.18999085,0.23903309,0.025559563,-0.32345185,-0.087626144,0.09317071,-0.4839856,0.09989272,0.1960899,-0.2615457,0.1825571,-0.1364989,-0.2179779,0.9721352,-0.25119773,-0.2461783,-0.57435256,-0.38784263,-0.7693637,-0.37734467,0.50789773,0.081629835,0.08298014,-0.4775999,0.20338416,0.038531456,-0.17102018,-0.0957529,-0.3498071,0.41806063,0.119644806,0.38261476,-0.15798444,-0.71179396,0.31768295,0.043573186,-0.061215244,-0.6493419,0.49609616,-0.17405918,0.85047746,0.12043047,-0.12491639,0.10823099,-0.3724186,0.1681678,-0.3421842,-0.17729422,-0.8415816,-0.13845466 +364,0.34625703,0.011339994,-0.45186532,-0.06357749,-0.33647975,0.1439781,-0.14301774,0.5106424,0.021718243,-0.40238163,-0.052542415,-0.08135971,0.07799088,0.36447963,-0.29952303,-0.5067516,0.08139011,0.11059241,-0.4766464,0.6143879,-0.32290748,0.39282146,-0.085792035,0.22202258,0.19191392,0.35712227,0.09886484,-0.22790964,-0.23860504,-0.091315016,-0.10200844,0.25110504,-0.5980235,0.10774582,-0.099495344,-0.3084139,-0.008114491,-0.1614287,-0.4829694,-0.60374933,0.3231529,-0.76086813,0.43092683,-0.06194804,-0.2764452,0.37650868,0.093374036,0.28669894,-0.19800492,0.010724926,0.115388766,-0.07770169,-0.0023732951,-0.19515152,-0.15454645,-0.6453065,-0.5473828,0.022967098,-0.5714461,-0.24513987,-0.32949135,0.14148931,-0.28942317,-0.12213791,-0.14814474,0.2962829,-0.6295029,0.09484087,0.09239789,0.037925895,0.11299636,-0.5597435,-0.13889913,-0.027553022,0.25272325,-0.17752409,-0.0023442705,0.3435832,0.20266335,0.2239077,0.011187092,-0.06158062,-0.42451972,-0.22707777,0.27392054,0.39430892,-0.18693647,-0.62627804,-0.00632481,0.0167053,0.078598686,0.10687326,0.15878065,-0.116819985,-0.15296885,-0.054475117,-0.31461304,0.37972873,0.48496065,-0.34882516,-0.29106063,0.33031458,0.41693336,0.26905122,-0.28916612,-0.020652508,-0.027599568,-0.47818673,-0.09914212,0.10885032,-0.06825996,0.54977226,-0.21201071,0.27111003,0.7345347,-0.3111338,0.17386265,-0.0052669784,0.06851465,-0.026435426,-0.10497127,-0.096409716,0.07668544,-0.46510497,0.08477166,-0.1999435,0.8060169,0.16057518,-0.6405551,0.3918521,-0.56791306,0.06405785,-0.10657035,0.4013554,0.3496138,0.466101,0.045717414,0.5242549,-0.3004633,0.07102857,-0.020059569,-0.42532244,0.18264885,-0.28031498,-0.22458868,-0.4548005,0.03751082,0.08128725,-0.062273636,-0.20554732,0.53113395,-0.49255827,-0.101056576,0.20041393,0.87687504,-0.36278695,-0.13630909,0.6993581,0.939062,0.9982803,-0.0673898,1.1177777,0.039297827,-0.22023672,0.054612365,-0.2998508,-0.6343184,0.19198507,0.251564,0.05903331,0.24140361,0.2355946,-0.041118186,0.20028739,-0.24385157,0.05031923,-0.33858433,0.16920932,0.1360089,-0.14923534,-0.3706164,-0.3221807,-0.040795684,0.02914212,0.13305138,0.3555441,-0.056664966,0.39253986,0.004890426,1.7328582,0.035142846,0.08651967,0.065274045,0.7043964,0.26506016,0.100986436,-0.02617168,0.29252827,0.39453512,0.3074362,-0.4445634,0.06269631,-0.27081886,-0.81073534,-0.011138278,-0.38331014,-0.23774593,-0.10314817,-0.6813461,-0.17881706,0.043181177,-0.076697126,0.3336774,-2.7456236,-0.07263397,-0.086063646,0.27712256,-0.19831398,-0.24262063,-0.06342059,-0.35082525,0.42061904,0.31340164,0.50593317,-0.65214443,0.56024474,0.4189638,-0.42778552,-0.02825353,-0.45047233,-0.1842115,-0.032655425,0.47324613,-0.07668244,0.07868758,0.28716508,-0.009785447,0.42777404,-0.30673778,0.18277659,0.11990775,0.21643446,0.060847457,0.39223462,0.11057327,0.4124886,-0.21018313,-0.09209382,0.28292984,-0.28382805,0.40101483,-0.18272498,0.14646628,0.2925234,-0.4417206,-0.9270445,-0.5879584,-0.12872571,1.016903,-0.14652057,-0.3469524,0.2095292,-0.31104368,-0.28822866,-0.19310807,0.25762552,-0.08223845,0.09564511,-0.7114715,0.06465534,-0.08682978,0.20383967,0.0018686026,0.017447893,-0.38020393,0.6690582,-0.014627339,0.34098053,0.29423296,0.14191738,-0.32809058,-0.57930094,-0.046594366,0.72854084,0.30485693,0.092249535,-0.33029085,-0.25748855,-0.30951527,-0.0822734,0.07232778,0.4128834,0.62407655,0.057893295,0.10858288,0.14159267,-0.030482966,0.09827403,-0.17096399,-0.35211584,-0.052813496,-0.09405272,0.54902387,0.5355928,-0.2929239,0.5819415,-0.22487248,0.30165687,-0.2813987,-0.38143572,0.4957334,1.1158336,-0.17956166,-0.21112356,0.5557832,0.6071977,-0.2712439,0.3398001,-0.4801531,-0.23635688,0.5123659,-0.26661,-0.35741326,0.25586027,-0.23809032,0.054843616,-0.8914215,0.4479212,-0.46967295,-0.418497,-0.52293694,-0.11379507,-3.6562617,0.093790166,-0.22322902,-0.2764099,-0.2014447,-0.15411803,0.08957682,-0.6933047,-0.4384352,0.056177862,0.1441392,0.6299116,-0.072294086,0.12682289,-0.25453153,-0.25514343,-0.2346795,0.21256499,0.13845731,0.2987667,-0.21624425,-0.43911165,-0.025899675,-0.26976597,-0.3884764,0.14158958,-0.61503154,-0.40227228,-0.12888719,-0.457853,-0.24277078,0.6677142,-0.17159237,0.027397713,-0.17476943,-0.012704237,-0.16738766,0.27325642,0.1188351,0.044381738,0.08420261,-0.05891432,0.10628676,-0.2806541,0.28940424,0.08790962,0.5285312,0.42570436,-0.08693843,0.005120615,0.55107003,0.45612544,-0.10015964,0.8296679,0.28900862,-0.17900136,0.34987456,-0.3074375,-0.18778893,-0.6604278,-0.35080966,0.028293813,-0.32098073,-0.59608215,-0.074154645,-0.3691368,-0.7232999,0.51421255,-0.19171901,0.024192674,-0.04934422,0.37263843,0.48824865,-0.11763317,-0.025021719,-0.0567679,-0.032234218,-0.5556141,-0.33758202,-0.5907221,-0.4256995,-0.094285876,0.94715756,-0.19101678,-0.08734188,-0.13913304,-0.27688536,-0.0031154433,0.116464406,0.07844202,0.17013845,0.26577204,-0.16483113,-0.7861604,0.7586412,-0.066630706,-0.23008905,-0.302354,0.05667751,0.48559472,-0.71656144,0.35977966,0.57062477,0.040749263,0.023745649,-0.534212,-0.2176027,0.055078007,-0.13917738,0.34047496,0.10828714,-0.71243644,0.41858897,0.2933257,-0.36598584,-0.54847604,0.7728352,-0.0030615865,-0.41282788,0.08047261,0.25507954,0.011737378,-0.016393578,-0.34958515,0.36067683,-0.5302937,0.18338004,0.19170551,-0.001347049,0.3597557,-0.14027707,-0.21666236,-0.6371692,0.11316438,-0.34501138,-0.30562735,0.28862724,0.13999985,0.009315117,0.13409847,0.07312472,0.37729225,-0.4395464,0.15682913,-0.019101245,-0.1268173,0.4338557,0.27870587,0.49802065,-0.4849645,0.5309385,-0.06878033,0.0010059933,0.15290171,0.18207581,0.48026648,0.086616434,0.47757953,0.23674649,-0.21535192,0.29566517,0.9264297,0.348108,0.5636119,0.034134816,-0.30685616,0.2991653,0.12551257,0.14170144,0.111704506,-0.37486073,-0.020329492,-0.12580012,0.14999662,0.42149353,0.054713666,0.25885847,-0.1627255,-0.19101177,-0.017967869,0.26816234,0.1444331,-1.023435,0.3479101,0.23612578,0.6269628,0.47518757,0.045207057,0.11946246,0.62270904,-0.32403982,0.1787091,0.37651315,0.114816226,-0.6358401,0.46941358,-0.65571827,0.4906164,-0.017139716,-0.031250868,0.12712398,-0.10503352,0.25770316,0.77401847,-0.017665587,0.06272714,0.05483863,-0.4514756,0.061286233,-0.47339553,0.12481126,-0.3717759,-0.091709524,0.63564163,0.49595654,0.20083402,-0.10801905,-0.00899879,0.19264267,-0.11120126,0.23746678,0.16458565,0.34389463,-0.029067885,-0.5392223,-0.373526,0.54755867,-0.31086066,0.104788676,0.04090522,-0.2252245,0.3781308,-0.20769806,-0.061443508,-0.01628549,-0.6789003,0.25640732,-0.15775868,-0.31321982,0.49988708,-0.28847477,0.2917824,0.22903657,0.0063494844,-0.42419142,0.2962614,0.016501259,0.6188666,-0.06678273,-0.14695288,-0.30812433,-0.020086054,0.19513565,-0.21001269,-0.06356262,-0.09021358,0.05927141,-0.47687542,0.34720075,-0.08433204,-0.18317658,-0.24568357,-0.13701344,-0.07648385,0.433672,-0.0033281366,-0.15177199,-0.073585376,0.14319763,-0.22868031,0.024621133,-0.033473715,0.15263878,0.27876794,-0.18552405,-0.10191794,-0.122834936,0.030838294,0.42599162,-0.09570774,0.44913784,0.3844163,0.07923215,-0.3431646,-0.20651852,0.24378088,0.44160125,-0.15028347,0.04449008,-0.25952426,-0.34420618,-0.26923132,0.19341087,-0.26246762,0.24854441,0.26180857,-0.3088577,0.8737447,-0.028508432,1.1484572,0.089377865,-0.43855894,0.27693036,0.5230077,0.10906188,0.063186795,-0.31198344,1.0853007,0.58836263,-0.13216445,-0.18872811,-0.16238949,-0.07335614,0.12311465,-0.20865989,-0.2532047,0.024530776,-0.43804953,-0.13056314,0.31454024,0.2583819,0.16542734,-0.017833322,-0.07324067,0.23185495,0.21139531,0.3096542,-0.58804536,-0.32623607,0.32613364,0.2271823,0.09646765,0.1677557,-0.5270259,0.36545002,-0.49027374,0.104332656,-0.23657991,0.14995432,-0.18952782,-0.3500437,0.15759894,0.13359115,0.3890583,-0.22647175,-0.33228862,-0.30987504,0.3455349,0.25400832,0.20550154,0.5330872,-0.14688705,0.20390965,0.057424523,0.43738803,0.8953884,-0.20164742,-0.27218536,0.4612565,-0.46674463,-0.710277,0.20685536,-0.38635787,0.22868395,-0.16068941,-0.18458632,-0.6480611,0.31632602,0.35866168,-0.06684127,-0.01249156,-0.5534698,-0.17880502,0.36078602,-0.3559494,-0.3502697,-0.3008958,0.1547416,0.7804083,-0.35874337,-0.2132256,-0.03429509,0.2365358,-0.17603621,-0.54875565,0.015154209,-0.40069744,0.3901413,0.09133746,-0.19262238,-0.049302123,0.002136596,-0.26478153,0.31244114,0.45880514,-0.3437182,0.14305966,-0.3327276,0.040950146,0.8026945,-0.2389306,-0.044885363,-0.53275084,-0.47913837,-0.81748736,-0.3942421,0.5035889,0.21978544,0.052388463,-0.6126614,-0.08476851,0.024979651,-0.30029002,-0.02042227,-0.39693558,0.50363314,0.113609955,0.0766874,-0.08123512,-0.81728643,0.08719869,0.09397229,-0.24221863,-0.5151111,0.53156376,-0.22674847,0.90204775,0.0609734,0.013365784,0.25419906,-0.34630394,0.046474654,-0.2071159,-0.19148885,-0.5316352,0.061536584 +365,0.6376568,-0.1266958,-0.86025375,-0.1667313,-0.20108327,-0.21506327,-0.30618224,0.61569506,0.1866024,-0.6133633,-0.14182673,0.019732475,0.004029323,0.25807813,-0.30295327,-0.60266644,0.19825964,0.12880082,-0.48593023,0.36395875,-0.5410373,0.21954961,0.118510135,0.5998411,0.36556098,0.19418277,0.14202927,0.0056024953,-0.24925388,-0.45146272,0.047101546,0.24455313,-0.61870015,0.20146535,-0.18468815,-0.56373966,-0.07369244,-0.52387315,-0.24613571,-0.87217194,0.16963015,-0.93734723,0.50953275,-0.053197697,-0.33518934,-0.043972544,0.32045925,0.49456587,-0.051327195,-0.056717332,0.24831098,-0.21650225,-0.24584116,0.021386618,-0.17123881,-0.47180787,-0.54302734,0.12193661,-0.39320326,-0.1142275,-0.3094156,0.22567138,-0.50730884,0.044446435,-0.23669897,0.4659743,-0.28956935,-0.29929343,0.29077053,-0.1568016,0.38562152,-0.53876734,-0.10180376,-0.184623,0.26302457,-0.33985087,-0.3099229,0.034560993,0.22295041,0.39261657,0.13099207,-0.2258818,-0.18923269,0.017436933,0.1262851,0.44995755,-0.21924797,-0.52978516,-0.2920409,0.094566576,0.2553585,0.32622957,0.09849808,-0.27599433,0.040431537,0.24339381,-0.3166832,0.6999315,0.41816247,-0.23408669,-0.042250928,0.13702425,0.29734635,0.4106024,-0.24409844,0.2267962,0.08440896,-0.6482633,-0.20564885,0.10893195,0.08681163,0.5018381,-0.16586265,0.4412938,0.81789875,-0.18726367,-0.045828406,0.40307617,-0.014616034,-0.20964298,-0.25837305,-0.26077712,0.29825595,-0.75984454,0.3445566,-0.27876914,1.0128227,0.0644751,-0.7035966,0.18690108,-0.65821165,0.05836694,-0.24859676,0.5671963,0.7547311,0.41746894,0.18701796,0.8017141,-0.35977545,0.07787089,-0.09924908,-0.5064734,0.012344653,-0.13737498,0.21856436,-0.44083786,-0.20734343,-0.072070025,0.11376477,0.07619274,0.41080332,-0.39074615,-0.3028576,0.14590448,0.76118016,-0.28391582,-0.11254751,1.0282043,0.89061224,0.9639833,0.21443714,0.9170345,0.07146701,-0.021420462,-0.04680976,0.2774718,-0.6721255,0.49248636,0.28677467,-0.19885674,-0.08656266,-0.041709676,0.05472562,0.6601502,-0.38611242,-0.08084268,-0.2414606,0.21228217,-0.09387147,-0.23052135,-0.46088088,-0.21350503,0.14754638,0.11193674,0.17010732,0.2360937,-0.011534518,0.57233447,-0.06661475,1.1288064,-0.16205448,-0.02499278,-0.07647473,0.5508066,0.10985238,-0.113143705,0.0076007084,-0.27876604,0.4018611,0.071789935,-0.478209,0.074698806,-0.14111827,-0.34709758,-0.19014816,-0.33703324,-0.24005832,-0.22682372,-0.5530277,-0.06050491,-0.18595861,-0.43617487,0.38129798,-2.6313958,-0.22555159,-0.10959633,0.09068302,-0.20932513,-0.37734985,-0.19919275,-0.57499814,0.730623,0.22035135,0.744602,-0.56425244,0.50857717,0.47263443,-0.5639156,-0.065082476,-0.81885505,-0.14918767,-0.08333971,0.3193645,0.23396832,-0.17948078,-0.16299157,0.03275223,0.70230526,-0.08578091,0.04400684,0.07898878,0.36288863,-0.28131688,0.7117011,-0.019961419,0.72803587,-0.5827487,-0.27884886,0.40816566,-0.33765143,0.10042636,-0.16568312,0.12932502,0.45640424,-0.49397984,-1.0798537,-0.7531017,-0.30014506,1.2942865,-0.1142009,-0.34043658,0.33010775,-0.30477107,-0.29873285,0.32343912,0.54753786,-0.19829105,0.17356569,-0.7655537,-0.01488309,-0.33661097,0.03372258,-0.108319044,-0.06541116,-0.53399426,0.60439736,-0.036027286,0.28694752,0.34151947,0.13429625,-0.32317308,-0.47168368,-0.011198381,1.1143479,0.38817587,0.22429118,-0.40415135,-0.072773926,-0.61348873,-0.031784836,0.057647314,0.7843122,0.88496435,0.03757544,0.14981355,0.2062695,-0.051161405,0.026513398,-0.08297077,-0.43937206,-0.24524342,0.023658244,0.6978905,0.5652098,0.15299836,0.5507307,-0.18128164,0.4893013,-0.23896341,-0.4288619,0.66031694,0.5908161,-0.20780925,-0.35293448,0.7820392,0.5149336,-0.033845406,0.49168625,-0.5353641,-0.5694043,0.3959752,0.06606024,-0.5911688,0.14383596,-0.46880838,0.24548583,-1.2050495,0.12981738,-0.6789741,-0.8450132,-0.46976936,-0.23310103,-3.6198547,0.32456455,-0.22767463,-0.07996345,-0.35408154,-0.31360272,0.29219168,-0.3960932,-0.70815897,0.018926365,0.01574956,1.0463939,-0.13651547,0.08141626,-0.25263163,-0.17854749,-0.24047233,0.098672085,0.28802758,0.23811017,0.03581917,-0.28352633,-0.08975475,-0.22487086,-0.5265351,-0.072729975,-0.8087141,-0.62099284,-0.00070104277,-0.45228264,-0.42676076,0.6417768,-0.37455264,-0.03945091,-0.1776256,0.039146617,-0.035271432,0.6037579,0.13062023,0.042709745,0.17800412,-0.036948327,0.06942697,-0.30079415,0.08007354,0.0914511,0.29766354,0.36126855,-0.13042176,0.34152985,0.61068803,0.85055995,-0.018135542,1.1216956,0.31801525,-0.050389852,0.21015826,-0.2947415,-0.6324263,-0.3964096,-0.1044401,-0.034986213,-0.4061909,-0.22079779,0.082273334,-0.27413815,-0.7747374,0.71046805,0.25029376,0.016673446,-0.18563937,0.34911394,0.3478484,-0.29160893,-0.22274238,0.03784961,-0.070326,-0.5522217,-0.21101926,-0.56639177,-0.71403044,-0.50239444,1.1065084,-0.17230095,0.2791315,0.04515846,-0.030500846,0.13129827,0.12817138,0.005493821,0.08807883,0.43047154,-0.1494168,-0.8028568,0.3755732,-0.4156019,-0.15018986,-0.69999397,0.2196683,0.8458933,-0.67890143,0.39757603,0.59784585,0.1841467,-0.24070325,-0.49953744,-0.112020016,-0.03228065,-0.1298827,0.48788702,0.27926943,-0.9122214,0.6637299,0.53610426,0.084365375,-0.7123365,0.63659036,0.19301344,-0.29525563,-0.051214717,0.41470882,0.06762517,-0.02886924,-0.1686695,0.3597285,-0.37790975,0.319718,0.0897336,-0.11523687,0.5613283,-0.2411428,-0.21893372,-0.569268,-0.009665695,-0.7208213,-0.32275584,0.13264082,-0.11450753,-0.0038584063,0.3614128,-0.103966124,0.34245327,-0.38881576,-0.006156378,-0.34690636,-0.32625648,0.28614518,0.679439,0.4652801,-0.5309222,0.8605166,0.23773375,-0.08151496,0.059728276,0.14614536,0.6009044,-0.13129176,0.6574399,-0.12245654,-0.10543304,0.053550765,0.98001903,0.0011472411,0.49014628,-0.05709349,0.07844227,0.0013735525,0.09032852,0.28213167,0.054984048,-0.6868998,-0.09409079,-0.5421036,0.13719188,0.5368511,0.044024084,0.35883087,0.021695338,-0.20205289,0.044737592,0.029307062,-0.12854493,-1.6194236,0.84616494,0.3521629,0.77695984,0.15099448,0.061469987,0.11223757,0.76900387,-0.18106434,0.23470503,0.19421753,0.14630906,-0.2822868,0.6009375,-0.8410016,0.5279431,-0.053207003,0.09895671,-0.049224116,-0.080276735,0.59570724,0.8183893,-0.17334707,0.23701324,0.056835912,-0.43000537,0.25489038,-0.42875358,-0.06828579,-0.5012712,-0.2072958,0.86089826,0.51949334,0.27126482,-0.23900089,-0.023763329,0.2241001,0.079663284,0.0026029618,-0.13220182,0.06653739,0.03748147,-0.66812444,-0.17127243,0.4444629,0.32559374,0.3585709,-0.063457325,-0.096378215,0.41529796,0.01762077,0.1518963,-0.2841368,-0.512911,0.04964707,-0.7013635,-0.45215356,0.2402427,-0.5959652,0.24588038,0.28563583,0.021427764,-0.03375903,0.34330985,-0.0220872,0.72283834,-0.08684499,-0.19808136,-0.32889712,0.21114501,0.27296627,-0.33759993,-0.4487035,-0.38823068,0.107460566,-0.49316072,0.20146655,-0.24771677,-0.59668154,0.3137448,0.0010652948,-0.02119726,0.36750194,-0.075693004,-0.0037243692,0.2524273,-0.15041353,-0.08039196,-0.22245806,-0.12799792,0.31584123,0.27517164,-0.03684401,-0.08189079,-0.14528647,-0.15127084,0.27662337,0.030846195,0.43660268,0.42873427,0.12152119,-0.42046392,-0.074169114,0.24899565,0.7223658,-0.12498551,-0.18008795,-0.3762743,-0.15431887,-0.3284458,0.19043283,-0.060984746,0.28717282,0.18002012,-0.15513149,0.6127685,0.083981685,1.0690193,0.06251751,-0.38901073,0.24225721,0.39895356,-0.19532953,-0.1619663,-0.4635062,0.9279945,0.2671845,-0.29266608,-0.04070907,-0.59610754,0.00935995,0.1463513,-0.16655217,-0.36979103,-0.08633385,-0.46589783,-0.18569335,0.37746924,0.47970784,0.16935903,-0.13222319,-0.016247392,0.35852757,0.017256064,0.33708555,-0.6315696,-0.03424794,0.19196044,0.46630457,-0.25051266,0.07829624,-0.5580792,0.32050678,-0.7172702,0.101946235,-0.44506186,0.30006745,-0.24255008,-0.28073737,0.2723402,-0.11484649,0.43747216,-0.34571794,-0.2520478,-0.05448518,0.3010602,0.35873246,0.22364436,0.6589041,-0.3069103,-0.04679406,0.1274841,0.54722476,0.9215074,-0.29584062,0.041963607,0.39043275,0.048509702,-0.43673185,0.3185466,-0.41268328,0.34141347,0.11586419,-0.3127086,-0.47198868,0.23483062,0.28811017,0.06265123,-0.044683598,-0.6015019,-0.08823776,0.41534746,-0.06372296,-0.35036346,-0.3905796,0.14902972,0.40893576,-0.099135034,-0.26605025,0.06038618,0.35771593,-0.05305999,-0.3512652,0.010089587,-0.10878564,0.19879656,0.07518529,-0.43773296,-0.11012013,-0.0561738,-0.5609034,0.25866315,0.12622762,-0.22404069,0.10737579,-0.114495374,0.026811618,0.9680809,-0.37881252,0.303819,-0.44749567,-0.4681641,-0.50901705,-0.20704263,0.26093596,0.1431657,-0.046875324,-0.5473538,-0.17289227,-0.10824435,-0.029012637,-0.012692484,-0.37124202,0.49325037,0.042779647,0.6260948,-0.09559026,-0.83979553,0.2205696,-0.070101924,-0.30635816,-0.5263772,0.4963993,0.09666107,0.6894813,0.105640404,0.15071443,0.32627535,-0.4967778,-0.07419088,-0.06587272,0.009934258,-0.9917124,0.033116058 +366,0.63092357,-0.26233086,-0.5572039,-0.011875686,-0.1920706,0.029617153,-0.10887793,0.59732527,0.43189347,-0.230915,-0.19048156,-0.08137605,0.018321106,0.48783693,-0.08478785,-1.0425683,-0.073550664,0.3671123,-0.6816693,0.8009626,-0.29693797,0.49744728,0.00082707405,0.3484477,0.31403777,0.19277339,0.066463776,0.10679678,0.014693886,-0.039266884,-0.08063974,0.20304102,-0.5754669,0.3068368,0.02164642,-0.5629028,-0.11586823,-0.43874252,-0.36573383,-0.8406283,0.2915106,-0.67190164,0.75857645,0.022381878,-0.3860651,-0.07923689,-0.2284816,0.48353612,-0.212601,0.08171246,0.037710946,0.015788754,-0.1507414,-0.31208786,-0.056924094,-0.52369404,-0.57833767,-0.059008975,-0.32014754,-0.025283104,-0.07798526,0.06584259,-0.27254897,0.1610524,-0.06964425,0.30750874,-0.37641263,-0.010308244,0.41787907,-0.11031693,0.054349024,-0.67099094,-0.20618069,-0.20811458,0.19772863,-0.14031433,-0.5180313,0.16183268,0.38848484,0.48663977,0.0489409,-0.24677818,-0.045537192,0.0307329,0.16317604,0.52089906,-0.25722882,-0.5651563,-0.30947128,0.07526729,0.73856086,0.0010143667,0.38426295,-0.35987607,-0.06304905,-0.16013172,-0.13398474,0.3398805,0.49919662,-0.31155416,-0.15331261,0.22511053,0.76288337,0.3383758,-0.046588067,0.13090284,0.065724365,-0.4846805,-0.04240105,0.05034332,-0.20753479,0.48482051,-0.19216645,0.089574136,0.6494623,-0.045246333,0.023453748,0.20033531,0.0490912,-0.29418933,-0.24301527,-0.29392365,0.41168466,-0.4303452,-0.04659452,-0.34422672,0.7065871,0.28319815,-0.4946077,0.35579506,-0.57988614,0.22389257,0.023823464,0.46007085,0.8764598,0.29106966,0.1324089,0.76496714,-0.3928473,0.0057053813,-0.04467095,-0.21118514,0.05132767,-0.102656834,-0.048029464,-0.5738104,0.043960575,-0.12337919,-0.33579364,0.37658063,0.49240935,-0.70202017,-0.191864,-0.12199137,0.5456028,-0.33423758,0.017185846,0.96989065,1.1615175,0.809318,0.050964158,1.709215,0.45216608,-0.31404325,0.12705848,-0.42407545,-0.7897094,0.1925038,0.42078057,-1.0748957,0.9002757,0.04120078,-0.03371794,0.39479935,-0.4512358,0.02631636,-0.084865965,0.15510063,-0.0434909,-0.44142988,-0.5469649,-0.15923904,-0.13011599,0.039676595,0.12788804,0.3173912,-0.4019575,0.47842398,0.20641737,1.2739067,-0.063858144,-0.18820113,-0.20996524,0.11034355,0.36994433,-0.36396465,-0.10945097,0.26814857,0.5172784,-0.1986192,-0.7034738,0.18035395,-0.247009,-0.30677706,-0.31959388,-0.04805386,-0.09346018,0.14317946,-0.24278958,-0.30204836,0.1277719,-0.145086,0.4429327,-2.1750906,-0.36439896,-0.04972981,0.39147338,-0.07970014,-0.41675273,-0.223803,-0.4530653,0.099583425,0.27538243,0.3625127,-0.7822082,0.320398,0.47430634,-0.7405606,-0.10440003,-0.6344217,-0.004550956,0.09273253,0.32266694,-0.00029864907,0.026426842,0.23536575,0.37814915,0.41342744,-0.056615192,-0.059131477,0.36731339,0.38669348,-0.11051998,0.28149715,0.2051851,0.66587895,-0.11805612,-0.2731662,0.40384066,-0.3344668,0.36462995,0.1260149,0.09700477,0.46405005,-0.29650247,-0.87972,-0.62482595,-0.1868804,0.8020263,-0.18434243,-0.41403452,0.111533165,-0.29305327,-0.45646015,0.07784333,0.5396959,-0.2759739,-0.33777258,-0.9738322,-0.20499907,0.015738292,0.1711151,-0.12247184,-0.15809765,-0.47357702,0.8657183,-0.11310104,0.3983018,0.35952652,0.3469946,-0.18695812,-0.65952694,0.2298897,1.0257066,0.5317599,0.103081726,-0.29212916,-0.022042671,-0.3763665,0.18758881,0.10076862,0.60639906,0.71073717,-0.19916458,0.03072876,0.27406508,0.11069086,0.07390739,-0.11376061,-0.12184181,-0.1725624,-0.06226032,0.50987226,0.79908735,-0.3465692,0.25480542,-0.23666419,0.32011652,0.0064694933,-0.7729473,0.92315865,1.2664161,-0.21273291,-0.35353398,0.77057844,0.19042736,-0.29550216,0.4609526,-0.59114575,0.012129396,0.47347426,-0.04478104,-0.21570058,0.4930338,-0.24149792,0.31999347,-1.0194143,0.40402427,-0.21055444,-0.41799447,-0.6124961,0.097768314,-2.6532402,0.22714292,-0.2430743,-0.19078101,-0.2219159,-0.12737553,0.2433393,-0.6536519,-0.7155251,0.19293725,0.12333569,0.506162,-0.08113495,0.017496416,-0.031703204,-0.49846384,-0.12793903,0.1877646,0.16650103,0.32835403,-0.050560232,-0.42729458,-0.0025865932,-0.17432006,-0.45580316,0.15401946,-0.8167862,-0.51192766,-0.20398752,-0.6589105,0.0054376223,0.66151065,-0.27110007,-0.0076395646,-0.1996079,0.029787928,-0.09180423,0.33818388,-0.02633777,0.019788822,0.1516227,0.0752889,0.07933048,-0.225913,0.17309777,0.15517879,0.38626638,0.27291062,-0.22068578,0.29334474,0.4934365,0.8728759,-0.11954459,0.805645,0.6113406,-0.108544976,0.1809821,-0.22035594,-0.3474873,-0.5603762,-0.40005198,-0.19830294,-0.5646314,-0.4080665,-0.20321141,-0.34655747,-0.91561365,0.37584925,-0.11545678,0.12018611,0.13114305,0.28974143,0.52967817,-0.18107855,0.101831496,-0.1617759,-0.28700927,-0.32506248,-0.19549674,-0.6271661,-0.49370775,0.41231665,1.3361186,-0.21000572,0.25492415,0.11676947,-0.38108444,0.17854036,0.11233013,0.019845089,-0.0011475185,0.4110445,-0.049180683,-0.46201053,0.2555413,0.024403164,-0.40270078,-0.73051447,0.21688236,0.53990453,-0.79057115,0.5971119,0.08903476,-0.13837434,0.09605983,-0.30312622,-0.07030653,0.09870546,-0.35669944,0.51047945,0.3775619,-0.3577867,0.3574767,0.46009067,-0.20235002,-0.6663416,0.38468647,-0.05135115,-0.27952898,-0.06736217,0.33037835,0.005477642,0.028371744,-0.19591145,0.27714685,-0.4002219,0.21177031,0.24324976,-0.18492758,0.060143847,0.014022008,-0.22606343,-1.008222,0.17954397,-0.4741381,-0.28609267,0.08543708,0.19286601,0.2661431,0.028885132,0.34185147,0.3683466,-0.4736025,0.19739546,-0.15127788,-0.371614,0.43290162,0.48024622,0.268909,-0.11774523,0.299074,0.018693307,-0.02244241,-0.12423036,-0.12533191,0.5718469,0.14293332,0.3784552,0.23748,-0.09171033,0.26552543,0.6516442,-0.06339815,0.27799436,0.1848297,-0.108835764,0.036542613,0.19038129,0.3280809,0.058874916,-0.42914426,0.00829788,-0.007418548,0.18939076,0.59284747,0.17296474,0.103072286,-0.25147983,-0.62601644,0.030515978,0.13514918,0.24249943,-1.6889662,0.2506696,0.17699397,0.65444326,0.5818005,0.10279242,0.010591269,0.27787313,-0.2047164,0.13252445,0.37557563,-0.14823575,-0.42247632,0.30918,-0.7332373,0.40306905,-0.026302144,0.06607295,0.11128404,-0.15741742,0.25890025,0.97838384,-0.28940618,0.020369371,-0.17617817,-0.12528986,-0.09629994,-0.42337617,0.00895523,-0.6446957,-0.39495274,0.8146479,0.42586294,0.33261093,-0.27897748,0.1267645,0.18484879,-0.16653427,0.1152864,-0.0051001343,0.24021317,-0.015352872,-0.46957144,-0.19942148,0.52458715,-0.22923303,-0.20645379,-0.2145981,-0.38063237,0.14787531,-0.12102544,-0.031644884,-0.103460036,-1.00451,-0.1398346,-0.47535387,-0.49490976,0.55262905,0.0588537,0.0543446,0.30054343,0.006646319,-0.2338742,0.6239541,0.06595289,0.9584608,0.12340853,-0.1292395,-0.15747134,0.63552445,0.20063019,-0.2747563,0.11128372,-0.08398253,0.31162336,-0.47961155,0.7548766,0.14020203,-0.4497641,-0.030342868,-0.060561318,0.13782717,0.3440541,-0.532432,-0.2940998,-0.02831024,-0.17233093,-0.104631625,-0.4091556,-0.24765413,0.19885744,0.35353315,0.016021306,0.019201657,-0.1306327,-0.0106098065,0.41954637,0.18418975,0.45485643,0.6956455,0.017815018,-0.5470016,-0.037853792,0.41514444,0.30137765,-0.045974936,-0.26147717,-0.4077356,-0.58714557,-0.62679124,-0.01903665,-0.18197699,0.29351643,-0.048692446,-0.26066005,0.82078,0.31878233,1.4235029,-0.041329518,-0.4733982,0.2095285,0.7788027,-0.09456036,-0.18844311,-0.31745175,1.1075782,0.4466165,-0.22840305,-0.109018736,-0.36032578,-0.24418141,0.34099352,-0.32318318,-0.036523163,-0.053835183,-0.65518665,-0.4520255,0.21586788,0.26673445,-0.046953723,-0.045507696,0.37495968,0.29280093,-0.17676233,0.10334021,-0.5832204,-0.072384395,0.1316482,0.20228986,0.12135989,0.24765484,-0.46232262,0.41220883,-0.6966684,0.072757535,-0.32823163,0.091212064,-0.03497711,-0.363122,0.1159559,0.29956213,0.1501316,-0.58799285,-0.3650012,-0.37099472,0.57151824,0.016547972,0.10880538,0.71201664,-0.2303927,-0.0860019,0.06604781,0.55030614,1.2616246,-0.14235188,-0.02868239,0.3413523,-0.4455308,-0.55054796,0.31849632,-0.3010507,0.1595599,-0.30689907,-0.27437288,-0.77289265,0.304014,0.056595024,0.1466673,-0.058385458,-0.6516178,-0.26066902,0.41249862,-0.41859016,-0.13731398,-0.44677505,0.12929875,0.5850162,-0.32425538,-0.63741606,0.12734044,0.23746854,-0.28103957,-0.6278839,-0.2102073,-0.3251656,0.4090351,0.1189942,-0.29758397,-0.13335097,0.0063693426,-0.44313732,-0.0057822242,0.17486174,-0.41465545,0.2590102,-0.26185128,-0.077813186,0.98221046,-0.12091244,0.3234244,-0.74150914,-0.5978232,-0.85534984,-0.53584045,0.45897377,0.29363683,-0.1200246,-0.95819086,0.040212706,-0.112354845,0.03454982,0.18312927,-0.09701834,0.5117522,0.11843252,0.61267525,-0.06957943,-1.1130534,0.18645586,0.25430152,-0.20067078,-0.77060276,0.47296035,0.121243395,0.9468386,0.12615912,0.04727447,0.11600316,-0.67254955,0.07982678,-0.28634873,-0.08121807,-0.77452105,0.16894405 +367,0.35841963,0.033524085,-0.6125652,-0.3067084,-0.35337538,0.18302837,-0.46861264,0.17292787,0.26603904,-0.25933456,0.07083733,-0.012168332,-0.27318743,0.25406834,-0.22731331,-0.94253653,0.20428823,0.079669,-0.6238651,0.64478433,-0.39663863,0.40011564,0.11037234,0.1799827,-0.18639043,0.12024594,0.47405857,0.1095567,0.031559877,-0.39459303,0.15852652,0.20751223,-0.8775045,0.34978142,-0.015862575,-0.20516777,-0.09827935,-0.47539932,-0.10607122,-0.90845937,0.2621588,-0.7855527,0.55885404,-0.09644634,-0.43044335,-0.02755284,0.16636476,0.20559515,-0.07058547,0.08094977,0.28578207,-0.3344917,-0.19674815,0.116402104,-0.06690605,-0.5320745,-0.54980105,0.008603153,-0.66223794,-0.0012884566,-0.34466797,0.38186482,-0.33324292,-0.10398744,-0.37054187,0.22455035,-0.35980317,-0.123966634,0.2621509,-0.40300274,0.055040065,-0.49589628,-0.058193725,-0.14071532,0.49913028,0.00045166697,-0.15965368,0.380786,0.52488154,0.641002,0.100671545,-0.37351185,-0.054923225,-0.2170279,0.25817457,0.5947011,0.03641257,-0.5285211,-0.31851986,-0.052698195,0.6435156,0.053318296,0.16432206,-0.32981592,0.00847838,-0.17948224,-0.029418945,0.7024912,0.5950295,-0.5234377,-0.05704693,0.5409561,0.26536772,0.37696353,-0.28562006,0.3621882,-0.16259839,-0.4108471,-0.25313875,0.29779792,0.027369468,0.4887741,-0.2250798,0.11011721,0.85267526,-0.037500966,-0.02734435,0.20548965,-0.15657587,0.03575221,-0.13481237,-0.066905364,0.26021078,-0.5562446,0.014412169,-0.43884903,0.5988485,0.08509286,-0.8996751,0.31721744,-0.3548687,0.13750459,0.08857016,0.8333596,0.9414553,0.46645245,0.12480574,1.1018133,-0.5358247,0.014535508,0.37540987,-0.37254265,0.04596361,0.0022200432,0.067784235,-0.37132493,0.27046615,-0.09366355,0.09524261,-0.06783343,0.4429202,-0.5116623,-0.10805039,-0.013745828,0.54002655,-0.28642845,-0.14744309,1.0042828,1.0209777,1.0694338,0.015057253,1.2631617,0.22512162,0.029705862,-0.40143389,0.06552024,-0.5421497,0.31589556,0.49909708,0.7315784,0.33711267,0.047606595,0.0099283075,0.29002067,-0.46964136,-0.25698397,0.1308401,0.3918218,-0.052650232,-0.33840445,-0.43686375,0.028406573,0.4416431,0.15282205,0.08839653,0.21573985,-0.081788726,0.5647184,0.17090575,0.58580494,-0.109188676,0.08647684,-0.031702194,0.35339665,0.21766233,-0.2578212,0.1987063,0.13625507,0.26075214,-0.10449036,-0.4952092,-0.08381634,-0.40714666,-0.4358911,-0.26326314,-0.41585895,-0.4212112,-0.20620091,-0.32422638,-0.20739272,0.10604175,-0.22654554,0.49994227,-2.416045,-0.23004277,-0.36334845,0.3550728,-0.1538368,-0.21324213,-0.17412946,-0.5564394,0.46032968,0.341935,0.49120182,-0.64113075,0.38936567,0.33303812,-0.2979098,-0.13831954,-0.74343795,0.09675656,-0.017675575,0.52184427,0.051371165,-0.40599993,-0.032447316,0.39302513,0.7599692,0.31054574,0.05671944,0.28904969,0.72564715,-0.21156533,0.42871326,-0.028985007,0.68254036,-0.12887834,-0.19706538,0.37561896,-0.50770205,0.63691676,-0.3528896,0.09868318,0.5224825,-0.27487892,-0.8343421,-0.5526854,-0.38309553,1.4632858,-0.43509668,-0.7821067,0.057645205,0.42258328,-0.16304791,0.14773428,0.539522,-0.08072112,0.15280768,-0.54773504,-0.12115367,-0.30664435,0.27732515,-0.26626632,0.08681847,-0.55865246,0.8580941,-0.24462748,0.47799176,0.18269464,0.123926364,-0.28909776,-0.5210745,0.033523023,1.0427173,0.6362249,0.052338462,-0.19962652,-0.20156077,-0.50436634,-0.40124565,-0.112545066,0.84973,0.4273978,-0.0533387,0.068910375,0.36944303,-0.0893039,0.21640804,-0.21984935,-0.58047974,-0.23533382,0.1145404,0.83368737,0.6667411,-0.33521715,0.29970816,-0.038523596,0.033252448,-0.2001035,-0.50421274,0.45657036,0.5323615,-0.21897057,-0.20392779,0.44934255,0.35129732,-0.27499706,0.500637,-0.60994476,-0.65113205,0.53193235,0.12835693,-0.47815853,0.18519334,-0.41013023,0.14503722,-0.6796516,0.57946354,-0.47733933,-0.7236189,-0.3910703,-0.232357,-2.8623672,0.07029886,-0.12518395,0.17914852,-0.457584,-0.11171063,0.4613417,-0.41602772,-0.79513973,-0.00575568,-0.016499365,0.5690408,-0.24615976,0.070184745,-0.33497497,-0.28272817,-0.11490335,0.4710793,0.17330442,0.38314137,-0.01898798,-0.061907146,0.04385628,-0.35551235,-0.36946398,-0.25727886,-0.61615354,-0.67850065,0.013802481,-0.32799646,0.0954417,0.6907819,-0.70107377,0.03422185,-0.26225457,-0.019082764,-0.17717846,0.13547377,0.112162426,0.19461183,-0.0847997,-0.14392304,-0.050889414,-0.14903928,0.44517216,0.07588218,0.30758947,0.47605923,-0.2546868,0.17650345,0.520364,0.58948797,0.14636944,0.9421779,0.04239065,-0.06804083,0.44292277,-0.10201855,-0.40264267,-0.7651897,-0.31750455,-0.012582108,-0.5061561,-0.37479073,0.011060203,-0.35343245,-0.8982797,0.3623964,0.14372154,0.385766,-0.31539258,0.31010112,0.24281693,-0.17953089,0.10983674,-0.0846147,-0.23833187,-0.46356645,-0.36498114,-0.7609116,-0.5520598,0.040112156,0.8162084,-0.1734567,-0.21373202,0.18431412,-0.117937885,0.08880718,-0.016608402,0.272414,-0.026606092,0.3417354,0.1004701,-0.8740568,0.38416693,-0.28838554,0.10534818,-0.5557887,0.11600215,0.6888575,-0.5832452,0.27158314,0.60732305,0.28985476,-0.096256666,-0.77934223,-0.11762651,0.1510237,-0.2899497,0.56291157,0.13776846,-0.5464157,0.6518493,-0.015187242,-0.12314129,-0.6118094,0.64130646,0.120407164,0.08021845,0.25746244,0.4812932,-0.075629435,-0.11462755,-0.1807632,0.3272945,-0.5381521,0.44230264,0.39275554,-0.08507971,0.4845979,-0.047979005,-0.63462263,-0.52827615,-0.15833111,-0.7055621,-0.32524952,-0.026285563,-0.17777629,-0.040613372,0.046381168,0.13690732,0.5331721,-0.3079017,0.12795216,-0.17606023,-0.29929128,0.68112665,0.63323206,0.49863988,-0.4600604,0.6949709,0.29193807,-0.021262405,-0.019528363,0.09072958,0.63954324,0.27569905,0.3860825,-0.023992207,0.18023065,-0.06619502,0.5449311,0.28234118,0.3948854,0.20103979,-0.29240718,0.35078296,0.06107494,0.49703616,-0.38526216,-0.5498525,-0.09086067,-0.040122706,0.0016371746,0.45509848,0.14770164,0.24769542,0.051095646,-0.19656365,0.11747413,-0.112457834,-0.24648798,-1.535178,0.42088023,0.23182829,0.78936344,0.2559896,-0.03395394,0.08614968,0.5570526,-0.26854637,-0.15143363,0.39755073,0.088085614,-0.3746267,0.5513729,-0.49728012,0.25159213,-0.18856955,0.18009599,0.2057956,0.23421256,0.49580693,0.86042327,-0.14293444,0.040572487,-0.27263075,-0.27424064,0.13444774,-0.28143254,0.33945307,-0.3100407,-0.36618656,0.6703099,0.30780414,0.26432377,-0.34460157,0.051234502,-0.02824889,-0.315223,0.05235184,-0.17167042,-0.086740054,-0.35245916,-0.48508188,-0.1232247,0.6680501,0.0051615834,-0.1321664,0.107544556,-0.24785928,0.23370838,-0.07836231,0.19946377,-0.16125591,-0.7463947,-0.1803313,-0.58922815,-0.50588137,0.22763543,-0.26579455,0.3338627,0.2907844,-0.08042015,-0.12070365,0.090649076,0.11854366,0.41624528,0.031164348,-0.27891135,-0.32675007,-0.14481023,0.34994334,-0.43451935,-0.053350564,-0.20021772,0.3073564,-0.43758106,0.35947245,-0.39965394,-0.3116264,0.18552384,-0.03184455,-0.2445079,0.35728452,-0.25645772,-0.16180792,0.29551083,-0.302376,-0.07323702,-0.047051884,-0.25679538,0.26990715,0.08751982,-0.020799914,-0.08476504,-0.044342704,-0.17518868,0.15140118,0.07249719,0.1084401,0.6743631,-0.0015750059,-0.7138397,0.28828996,0.0915146,0.6844068,0.21879342,0.054137833,-0.20976639,-0.46539885,-0.46893117,0.7890285,-0.21633424,0.18544881,0.07005691,-0.3129504,0.7847617,0.17082377,1.1541506,0.13609883,-0.6277522,0.048309058,0.7237204,0.02780373,0.07294605,-0.36147442,0.9547545,0.53299254,-0.11391248,0.083729506,-0.5520796,-0.025616746,0.25782365,-0.17819127,-0.1480058,-0.15649335,-0.6541476,-0.15563338,0.021427555,0.20122483,0.016567692,-0.11889503,-0.24141285,0.16432749,0.17819087,0.39298293,-0.87686837,-0.34017804,0.24814437,0.124360576,-0.19889866,-0.0415419,-0.34216875,0.29262123,-0.8294169,0.12126456,-0.58808714,0.17250605,-0.065200515,-0.43837658,0.38547182,-0.22871438,0.3811029,-0.3532105,-0.4139169,-0.08122091,0.4647534,0.36106962,0.24707386,0.73684055,-0.18935974,-0.208051,0.2278982,0.61245006,1.3060305,-0.051082294,0.14894919,0.20680937,-0.400651,-0.6272258,0.018595848,-0.6358043,0.20480503,-0.1021673,-0.5262547,-0.30731106,0.15427849,-0.057535954,0.1091602,0.14734364,-0.83055866,-0.22596705,0.29305276,-0.28639808,-0.23035358,-0.39244965,0.07808571,0.74148476,-0.40395632,-0.35813135,0.0043574315,0.26891214,-0.38330224,-1.0312511,0.2154136,-0.3089432,0.37397188,0.09745752,-0.5129152,-0.011661432,0.2809715,-0.45219082,0.40165728,0.5151702,-0.31760582,-0.05324651,-0.19165525,0.07427122,0.8136725,0.0028780145,0.16233923,-0.5447603,-0.48905095,-0.81110954,-0.24711822,0.07277185,0.36522952,-0.102725744,-0.519641,-0.35829213,-0.5044379,0.118324175,0.07666715,-0.53477955,0.32322145,0.109947436,0.63854754,-0.20569287,-1.14002,0.053722654,0.015668487,-0.0023783338,-0.44409537,0.4053066,-0.09121646,0.70037574,0.13402446,0.08081637,-0.019216478,-0.93859273,0.36119658,-0.19161974,-0.0077478206,-0.63835675,0.4632717 +368,0.45018086,-0.2364872,-0.42682832,-0.24639902,-0.26220647,0.012085685,-0.09272171,0.53468305,0.20419887,-0.37097174,-0.28472072,-0.31801316,0.029789329,0.5740972,-0.17262064,-0.6296615,-0.05788323,0.0944882,-0.62491095,0.7080721,-0.30261335,0.179184,0.28362235,0.3474159,0.52712315,0.24002257,0.28423563,-0.14886306,-0.0827909,-0.16697346,-0.20850913,0.1971543,-0.46710736,0.12540719,0.0057888883,-0.34037516,0.0055320784,-0.37256983,-0.35726696,-0.8477734,0.42414325,-0.96877843,0.46268535,-0.033257794,-0.19353639,0.3913899,0.1347493,0.50050336,-0.35359982,-0.18039992,0.11364224,-0.069331184,-0.12509693,-0.07547665,-0.0039981776,-0.42887667,-0.7069145,-0.07097815,-0.26001856,-0.38633674,-0.4015539,0.08301815,-0.37187845,0.048939977,-0.00025035653,0.61480385,-0.45130232,-0.02877487,0.3759479,-0.17413895,0.26360252,-0.6251001,-0.223765,-0.094205804,0.26385006,-0.010601188,-0.058782734,0.38140345,0.44789174,0.19284718,0.08042483,-0.21695413,-0.20158419,-0.017233917,0.10363114,0.36382556,-0.111503355,-0.69591206,0.079497404,0.16727415,0.1964055,0.30158487,0.33668354,-0.29067013,-0.20308377,0.092455946,-0.28262743,0.29160234,0.3738316,-0.3095053,-0.28046387,0.44488934,0.46022135,0.13262634,-0.05513105,-0.07171651,-0.03406511,-0.59141874,-0.046294354,0.019791672,-0.38111606,0.6739877,-0.23418872,0.27122137,0.7524094,-0.13761583,0.022355633,-0.07025757,0.114162244,-0.31430793,-0.2618287,-0.28408793,0.21753727,-0.4222533,0.30175433,-0.24681011,0.83755404,0.18650429,-0.6250816,0.23035678,-0.58755875,0.248053,-0.21773006,0.46492293,0.6444173,0.2856094,0.4479048,0.59610456,-0.500884,0.0055904803,-0.06249958,-0.47770095,0.052965377,-0.23932374,-0.0366653,-0.5631982,0.015180715,-0.024858305,-0.09889972,0.12169496,0.22757597,-0.55056196,-0.027412305,0.060563378,0.78862095,-0.25240093,-0.03190504,0.7909933,1.0178796,0.9798521,0.020836404,1.0922669,0.3027366,-0.31171924,0.3172337,-0.30174664,-0.6662189,0.3371965,0.6688519,-0.50160074,0.30809647,-0.024485067,-0.021605058,0.29695,-0.33417526,-0.009997108,-0.31151935,0.16618972,0.24990673,-0.33506542,-0.38814372,-0.25952515,-0.07092677,0.020896604,0.12688635,0.25999624,-0.074658975,0.38730118,-0.014737887,1.6370901,0.029879782,0.021811215,0.04152785,0.39164788,0.20673566,-0.13458201,-0.10415898,0.3680875,0.46070185,0.12595968,-0.5606735,0.18940951,-0.3164017,-0.48145458,-0.11997745,-0.3708191,0.07982893,0.14548866,-0.3330497,-0.0766083,-0.23896995,-0.14149812,0.40117565,-2.8896368,-0.27917233,-0.22704509,0.22501767,-0.3180838,-0.23494376,0.14758505,-0.51030236,0.4250036,0.4399073,0.4854091,-0.6712359,0.22424321,0.3314421,-0.71428174,-0.13180251,-0.5831949,-0.08172804,-0.038034566,0.44806114,-0.082594,-0.16074432,0.07006355,0.058730662,0.39507908,0.07233425,0.14113732,0.39373067,0.33327463,0.05951715,0.49961886,-0.028858075,0.533668,-0.13194779,-0.14146936,0.23152855,-0.14008239,0.45134875,-0.10725074,0.091582336,0.56700414,-0.361324,-0.8489135,-0.6974581,-0.2567658,1.2355039,-0.29177305,-0.30970213,0.24776676,-0.10872082,-0.08262753,-0.056094382,0.35626975,-0.17981638,-0.141171,-0.78813106,0.094796024,-0.012444994,-0.02913537,0.0049185907,-0.1625456,-0.4069745,0.79172695,0.016029615,0.38297603,0.27716756,0.19854258,-0.39791423,-0.4506082,0.06275292,0.86356366,0.39754248,-0.038315184,-0.11740164,-0.24018177,-0.50237143,-0.18790796,0.23358266,0.42903143,0.7013589,-0.008120378,0.1064197,0.22305979,-0.06518167,0.06297445,-0.2502881,-0.23130812,-0.060356077,-0.006504408,0.43411463,0.58381623,-0.13247783,0.5108448,-0.099899575,0.31144163,0.034540087,-0.51623255,0.71534437,1.3124367,-0.18120375,-0.3211324,0.5743857,0.41743067,-0.1581995,0.47485584,-0.4402752,-0.13963506,0.59880495,-0.21872623,-0.38580042,0.16806832,-0.23843524,0.124151655,-0.93358666,0.238549,-0.30384043,-0.37406352,-0.49959913,0.02795544,-3.3704379,0.23377919,-0.33323193,-0.18908015,-0.24663281,-0.21543467,0.17018318,-0.69772184,-0.4651323,0.27264827,0.15399791,0.8555349,-0.10221087,0.21066198,-0.16135387,-0.1695761,-0.29454586,0.042551212,-0.030607702,0.29448527,-0.034098413,-0.41535488,0.14560829,-0.04287953,-0.57693857,0.13243246,-0.5299132,-0.4302862,-0.31075612,-0.44401744,-0.34190044,0.5952024,-0.20953642,0.06729386,-0.12837508,0.014778083,-0.08516636,0.18315196,0.08093578,0.10095896,0.10896306,0.0036522597,0.06985135,-0.39666587,0.41508836,0.015200155,0.3866386,0.35064745,-0.18926832,0.28811032,0.3513581,0.5719738,-0.15160473,0.6910902,0.4317614,-0.06427523,0.2576334,-0.23019895,-0.30851275,-0.5637202,-0.33755854,-0.03919622,-0.32079872,-0.40306106,-0.122133374,-0.33921337,-0.67278165,0.47967148,0.027979845,0.31175843,-0.09072698,0.29660162,0.61637074,-0.31067005,0.04269874,-0.021522235,-0.20295897,-0.65771645,-0.03905773,-0.6369948,-0.46583298,0.2645572,0.8661558,-0.28662133,-0.11652065,-0.15211225,-0.3682335,0.15073411,0.0066365427,-0.20016472,0.099026084,0.31272727,-0.14132579,-0.8002483,0.6637036,-0.026001113,-0.12024488,-0.5223693,0.26704088,0.42062762,-0.43895411,0.45117757,0.21789753,-0.044568814,-0.10976207,-0.33635995,-0.17917001,-0.09600454,-0.26763493,0.30994752,0.22785613,-0.65368754,0.38200098,0.41337943,-0.29778418,-0.76776886,0.46501392,0.016106913,-0.19495715,0.005373729,0.20719203,0.2842254,0.044989485,-0.28098944,0.19562355,-0.5094289,0.18889233,0.12876435,-0.031333003,0.251671,-0.05511275,-0.07387591,-0.7951861,0.12906884,-0.32106882,-0.21058403,0.2507641,0.22351561,-0.0046564424,0.068968445,0.105311535,0.37525532,-0.11564578,0.1628437,-0.050332267,-0.24617918,0.376841,0.4798324,0.32204118,-0.5376012,0.6425248,-0.053825855,-0.085916884,0.024189722,-0.021022445,0.49111792,0.35197586,0.35142514,0.121673174,-0.23781858,0.35746452,0.5896894,0.07868651,0.44131595,0.1458682,-0.1068364,0.23122971,0.051381554,0.22682966,0.1031866,-0.62072414,-0.04161952,-0.28455305,-0.018456439,0.6106839,0.056080867,0.12777664,-0.027316472,-0.47597966,-0.05983148,0.002438907,0.016232967,-1.0671928,0.42226917,0.31503597,0.83903486,0.49557644,-0.24149558,-0.10480498,0.78348416,-0.16794932,0.1564844,0.3604752,0.002599729,-0.6250238,0.5965725,-0.857273,0.35868615,0.04661083,-0.08284824,-0.048282016,0.08580857,0.16139562,0.7205078,-0.2515649,-0.0056303483,-0.10398074,-0.4161612,0.33235398,-0.37540904,-0.014625243,-0.5780967,-0.3329474,0.36682183,0.49345875,0.2783184,-0.08324722,-0.009551162,0.16053547,-0.16554105,0.28931546,0.16645236,0.1368672,0.052524034,-0.56324893,-0.28971466,0.40179938,-0.0251155,0.36863974,-0.087068364,-0.19574581,0.22580817,-0.32240704,-0.10566332,-0.16061376,-0.7485107,-0.005428642,-0.09760017,-0.3457648,0.50535214,-0.16338755,0.25518647,0.22567551,0.101382814,-0.14385669,0.13087158,0.038065225,0.88657486,-0.050872866,-0.28810245,-0.3029308,0.19876416,0.033512298,-0.13181296,0.16563666,-0.15080397,-0.16362773,-0.62212986,0.63726246,0.032278467,-0.2886093,-0.07156115,-0.19941998,0.07182544,0.596063,-0.23020756,-0.023789244,-0.22456113,-0.2314916,-0.15784028,-0.25769696,-0.10923431,0.3252283,0.29217127,0.2196552,-0.2200365,-0.008207634,-0.07927536,0.4966062,-0.14210467,0.3035221,0.21632311,-0.11514684,-0.22837187,-0.37795955,0.2653982,0.36760256,0.17921512,-0.22238682,-0.39218494,-0.48154068,-0.41805503,-0.0021533924,-0.039623715,0.4678237,0.03080371,-0.25437427,0.7813419,-0.10206963,1.3364226,-0.03888506,-0.4392064,0.11388435,0.65600485,0.024112549,-0.1659183,-0.11558678,0.9385404,0.52163815,-0.07014798,-0.039584137,-0.42179343,-0.029108593,0.31740412,-0.23492469,-0.07256466,0.07979113,-0.483078,-0.4755044,0.14134884,0.32114983,0.1925338,-0.086439386,0.033054896,0.27568272,-0.051608305,0.5206288,-0.2395698,-0.30700874,0.19963405,0.17467165,0.028941298,0.11058948,-0.5139052,0.48594713,-0.6361946,0.21010001,-0.21111958,0.2087475,-0.23555276,-0.32998198,0.28056854,0.051710945,0.32804176,-0.31766585,-0.51239485,-0.16497569,0.54391867,0.2812404,0.12296168,0.6671772,-0.3736345,0.016315278,0.05391728,0.43860856,0.90953696,-0.16897038,0.036656175,0.3729264,-0.45447573,-0.65065515,0.5413874,-0.22213279,0.31819883,-0.041145064,-0.1369144,-0.62890923,0.26238376,0.36432013,-0.0036253482,-0.034054484,-0.6053949,-0.2963763,0.34513617,-0.39035413,-0.16953342,-0.406173,0.18082802,0.4035838,-0.2950909,-0.3502398,0.07450138,0.09319825,-0.08200623,-0.43934625,-0.2315246,-0.32359052,0.32012185,0.04906676,-0.33267593,-0.14741233,0.089099765,-0.3963876,0.2086778,-0.23601472,-0.38777637,0.07898784,-0.35616398,-0.0077688354,0.87050164,-0.22477841,0.099174105,-0.6576519,-0.36827025,-0.7007438,-0.40481105,0.5995244,-0.1318027,0.09707133,-0.6499491,0.062337425,-0.04442897,0.07522,-0.15143652,-0.29383484,0.38383445,0.13333496,0.39302382,0.02679973,-0.7176686,0.12274605,-0.004462653,-0.033300005,-0.63700813,0.50515926,-0.07741648,0.7170065,0.06527988,0.22509514,0.2736491,-0.37002745,-0.020610092,-0.27284682,-0.33323577,-0.53018624,0.046934027 +369,0.2904438,-0.3339659,-0.4747232,-0.21492504,-0.3568096,-0.1347881,-0.12549068,0.33293015,0.3164558,-0.1556716,-0.2708693,0.092876874,0.05418231,0.5708275,-0.017712131,-0.68815684,-0.07845068,0.28228846,-0.6748972,0.4460751,-0.56528,0.30628005,0.14891805,0.47864228,0.067875355,0.4325659,0.34414017,-0.11299069,0.0649974,0.064826176,-0.10014514,0.29989856,-0.6498749,0.20109712,-0.10056567,-0.4041093,0.040274676,-0.3982224,-0.29359043,-0.78855634,0.12267749,-0.9866617,0.6393915,-0.0862885,-0.13508905,-0.1325608,0.19914666,0.41697532,-0.45788553,-0.0848005,0.21757856,-0.24618402,-0.26474532,-0.19917957,0.09269826,-0.46595445,-0.4653239,0.03130882,-0.5941207,-0.31582433,-0.27571943,0.18990889,-0.30318004,-0.06874769,-0.100061566,0.3309582,-0.37968862,-0.1157052,0.3721395,-0.3997334,0.21359086,-0.5809915,-0.0045354357,-0.031580348,0.4074578,-0.07012493,-0.34645858,0.4672255,0.39119813,0.5457083,0.413699,-0.37915447,-0.18053728,-0.110248454,0.10098258,0.4624755,-0.13822684,-0.22168292,-0.20517002,0.21385615,0.42138475,0.23858379,0.09112268,-0.16293682,-0.05570409,0.015810968,0.08834969,0.3970719,0.5630481,-0.16030894,-0.35653502,0.31004998,0.5346166,0.1906821,-0.12371589,0.005480051,-0.046815176,-0.5435739,-0.28409228,-0.11527665,-0.19805455,0.5986842,-0.22703949,0.048371155,0.9472256,-0.09340705,-0.063112795,0.06833297,0.020535268,-0.28684443,-0.36714083,-0.14473929,0.37182963,-0.47893667,-0.05841831,-0.21663526,0.6847979,0.16767247,-0.68457663,0.39369312,-0.48260644,0.15583012,-0.21310197,0.6836306,0.8018281,0.48431364,0.42641702,0.96797407,-0.2591311,0.3210076,0.1630227,-0.52265155,0.18109155,-0.38347536,0.004452561,-0.6091231,0.11373231,-0.1946558,0.009913518,0.089017905,0.33863053,-0.7879106,-0.04096739,0.24523197,0.8045077,-0.3061994,-0.1327068,0.7056437,1.1065955,0.9948076,-0.06786673,1.217076,0.44832823,-0.26513502,0.28383854,-0.37764394,-0.7442763,0.26834223,0.51918495,-0.15466021,0.35783356,-0.009937688,-0.019102342,0.46005052,-0.57302374,0.030578546,-0.06793367,0.30081585,0.029678,-0.22908022,-0.62446797,-0.046229545,-0.025255147,-0.19492237,0.17994016,0.31859928,-0.25148395,0.32765928,-0.16572863,1.3246144,-0.011062888,0.067274526,-0.0131556485,0.59918,0.28175446,-0.26089507,-0.078514256,0.3588494,0.47839049,-0.13779742,-0.5734669,0.20752014,-0.43948978,-0.56876,-0.15921809,-0.49202678,-0.13570637,0.19672063,-0.28617102,-0.35721982,-0.14226307,-0.3412426,0.3241192,-2.5946531,-0.28280297,-0.087594695,0.46125105,-0.43707502,-0.067894764,-0.03277909,-0.51541555,0.20541562,0.30878437,0.5500015,-0.66823924,0.48659053,0.44976902,-0.6440411,-0.22550589,-0.6681652,0.06884374,-0.110878415,0.53954834,0.0530171,-0.23738292,-0.09728587,0.01517648,0.7442951,0.08715891,0.2390768,0.5846166,0.33791322,0.20164695,0.35825017,-0.16641071,0.73860157,-0.33826926,-0.3154298,0.41428682,-0.17662531,0.34072325,-0.22339915,0.01767583,0.574909,-0.45506513,-0.99938244,-0.74051595,-0.24884237,1.0053899,-0.3473444,-0.57907957,0.31423596,-0.32318592,0.026485337,0.15612698,0.59646726,-0.04626282,0.09195929,-0.7136466,0.11770516,0.009342895,0.12675267,0.1405394,-0.018875016,-0.41102707,0.72971207,-0.11013218,0.55555165,0.23874386,0.38886362,-0.22281991,-0.44548064,0.12067714,0.6671266,0.2862589,-0.062487654,0.011495094,-0.28384012,-0.2145022,-0.27178642,0.04270098,0.5723534,0.8405896,-0.12042062,0.040180124,0.3294969,-0.11651481,0.009861302,-0.076012194,-0.23173314,-0.13449273,0.2551952,0.49467283,0.73752606,-0.32095894,0.51673424,-0.34438694,0.40384355,0.0045755277,-0.7259834,0.808108,0.59602284,-0.23092434,-0.06760586,0.67537147,0.43352273,-0.380817,0.6137829,-0.6962003,-0.34477425,0.63290966,-0.20668727,-0.39007622,-0.13136294,-0.18975121,0.24368367,-1.0678334,0.28310376,-0.22682475,-0.552743,-0.45716876,-0.08353249,-3.0552244,0.1603294,-0.27682766,-0.010539367,-0.34606302,-0.058735747,0.22015712,-0.8425748,-0.5334456,0.17178217,0.20275563,0.74431443,0.053980295,0.2014951,-0.21485975,-0.24110784,-0.12794222,0.23332904,0.07240263,0.2417562,-0.05766178,-0.52214825,0.0064243814,0.09581872,-0.5986408,0.18460736,-0.6843389,-0.4640228,-0.21549703,-0.72993016,-0.23785485,0.5360559,-0.34070876,-0.00334112,-0.2168712,0.26419577,-0.16760813,0.20195502,-0.00080744276,0.16932766,0.3513344,-0.14932455,0.14462592,-0.27899072,0.46841064,-0.058073528,0.5734039,0.091860786,-0.18291236,0.19579348,0.6738746,0.7062959,-0.32701114,0.9772206,0.6385977,-0.05651849,0.26174238,-0.38266203,-0.23594056,-0.639067,-0.5210868,-0.14626667,-0.466703,-0.58013296,0.29179668,-0.29693502,-1.0710869,0.7822619,0.038397916,0.58799654,-0.020698603,0.24870393,0.6110598,-0.20921165,0.014610974,-0.22193053,-0.27432156,-0.59043705,-0.29430568,-0.5569422,-0.590243,-0.027827721,0.96844304,-0.36973813,0.09975903,-0.007201296,-0.3724345,-0.006908685,0.041993115,-0.10993511,0.3315225,0.45099348,-0.1315549,-0.79111755,0.28445643,0.17483465,0.05079742,-0.6206068,0.17849304,0.54155934,-0.8300931,0.6313874,0.20683065,0.014442866,-0.07650916,-0.48958528,-0.30667984,-0.10039493,-0.031479537,0.50350934,0.17377004,-0.7776158,0.6001431,0.33205146,-0.5271035,-0.8071989,0.101490855,-0.14840208,-0.16256014,-0.03985307,0.17964877,-0.025438355,-0.07434937,-0.3017731,0.12718727,-0.46024588,0.24332689,0.21794558,-0.008198362,0.51437956,-0.2192516,-0.3109557,-0.99064535,-0.07921989,-0.5537746,-0.07839678,0.2198342,0.10712956,-0.07812733,0.2428565,0.2940629,0.43975526,-0.2097256,0.20407125,0.062216856,-0.57634157,0.20834854,0.5300429,0.23466757,-0.5579673,0.43852428,0.2294119,-0.35519952,-0.08843331,-0.07741917,0.55266696,0.14919086,0.30706096,-0.123702064,-0.22271322,0.25977403,0.8200722,-0.051619086,0.45509008,0.033986203,-0.076497406,0.36150652,-0.005002439,0.2678911,-0.07524602,-0.62123173,0.06910353,-0.089422,0.20496605,0.46933922,0.5235225,0.31129667,0.14090887,-0.251315,0.03822348,0.114478536,0.112111084,-1.067287,0.48678714,0.44844165,0.9589721,0.41238764,0.0976855,-0.3016632,0.76018846,-0.21355632,0.101760454,0.49006674,-0.20243612,-0.583876,0.6932193,-0.7913997,0.4224293,-0.09408593,-0.11414374,0.13569114,0.20973668,0.4067458,0.8793426,-0.20077842,0.04986729,-0.057059947,-0.124075375,0.108674124,-0.32701573,-0.02280166,-0.5987276,-0.30108097,0.8160439,0.4580579,0.42564875,-0.1929238,-0.1149012,0.13048698,-0.1472165,0.38335845,-0.12388161,-0.0056903777,0.1599604,-0.43410155,-0.1304229,0.49975142,0.34754503,0.27740878,-0.19557208,-0.32698902,0.09321051,-0.37832123,-0.22658443,-0.07287323,-0.65570736,0.01814404,-0.07863373,-0.43358496,0.84707254,-0.17455809,0.19590847,0.15026037,0.041852675,-0.19922656,0.29029778,-0.14207155,0.83884054,0.13464317,-0.38008994,-0.32474375,0.16053356,0.23571719,-0.3077091,0.22776063,-0.3751804,-0.059961732,-0.4156819,0.5802402,-0.06613147,-0.5687626,0.18961431,-0.25082687,0.037913088,0.5188383,-0.11446754,-0.14566085,0.13359937,-0.22225808,-0.5625688,-0.09011534,-0.33587205,0.2479594,0.16157392,0.051849823,-0.30628735,-0.25133654,-0.14136522,0.5679229,-0.01552778,0.3641848,0.10396846,-0.09153257,-0.19397052,0.109820336,0.425899,0.41358426,0.29194447,0.042017724,-0.39045593,-0.33254406,-0.32759768,-0.104758374,-0.027108865,0.26413727,-0.025876174,-0.21371463,0.8578994,0.14870769,1.4671777,-0.02323513,-0.3725391,0.12195529,0.59894127,-0.0039502014,-0.023075713,-0.45031247,0.8727439,0.7179709,-0.056808453,-0.00988372,-0.5913089,-0.22569785,0.5690922,-0.35810497,-0.23103501,-0.054185085,-0.69836515,-0.6210197,0.3191357,0.21474358,0.11564587,0.009752049,0.06628183,-0.12776144,0.031775236,0.37514502,-0.6767209,-0.32196224,0.19940995,0.40430245,-0.049340706,0.11439967,-0.46205643,0.45474848,-0.792273,0.2383125,-0.29951003,0.059756715,-0.34031793,-0.39416578,0.21125351,0.10989117,0.37571144,-0.2956789,-0.46177036,-0.012087317,0.5877524,-0.08093194,0.10950081,0.7716037,-0.4359059,0.017426819,0.10055573,0.4223784,1.2135129,-0.36170834,0.009588987,0.28202498,-0.41503957,-0.7229966,0.68044335,-0.3096809,-0.008174887,-0.14755969,-0.52631867,-0.50252205,0.1464816,0.2478567,0.018888762,0.10707385,-0.5249597,-0.07377833,0.30321434,-0.2536793,-0.09829418,-0.15781514,0.3396599,0.6597732,-0.26800823,-0.4378117,0.14849758,0.34321725,-0.16152123,-0.47960952,-0.14077859,-0.1920099,0.35519713,0.030847536,-0.52075356,-0.05461314,0.14430691,-0.4796201,0.17407693,0.29972404,-0.3423807,0.15488341,-0.31364632,-0.00023852174,0.8725304,-0.18938483,0.065221936,-0.65815353,-0.33690295,-1.0492011,-0.5365808,0.28978556,0.20112036,-0.08556879,-0.5427708,0.13384703,-0.082739696,-0.21060926,0.04978511,-0.6537799,0.37711328,0.098819606,0.5752685,-0.15370142,-0.9574904,0.09516633,0.18563502,-0.0070178965,-0.6876534,0.5828154,-0.15899266,1.0721967,0.0677379,-0.1115938,0.0921021,-0.45789343,0.07683728,-0.35736024,-0.121995434,-0.7793964,-0.11210852 +370,0.45149723,-0.16686709,-0.5143641,-0.19389842,-0.004983598,0.07874029,-0.30243346,0.840473,0.16895212,-0.38395953,-0.05519764,0.015207271,-0.052369326,0.3320572,-0.2454298,-0.66799474,0.047131438,-0.021495702,-0.35838607,0.5439169,-0.4847908,0.27925643,-0.093111075,0.44617745,0.1043131,0.25376248,0.34037402,0.2589077,-0.083007134,-0.16654304,-0.04891328,0.05935354,-0.52376956,0.29424474,-0.17505755,-0.23909168,-0.04131401,-0.40122545,-0.34994295,-0.7914288,0.38613388,-0.6593473,0.32677883,0.13710189,-0.33782864,0.09566507,0.27206036,0.12963921,-0.33272573,-0.08821422,0.11811521,-0.15811881,0.10016174,-0.14067246,-0.05288546,-0.6305843,-0.5843115,-0.08424715,-0.5491912,-0.051186223,-0.003303945,0.24551766,-0.42630032,-0.222807,0.023424553,0.62718314,-0.39775273,-0.40974155,0.35309944,-0.3355044,0.19196235,-0.85783035,-0.15920167,-0.10749822,0.1592498,0.042618394,-0.2159893,0.3725098,-0.046133026,0.339897,-0.057141673,-0.18877558,-0.20045245,-0.24095166,-0.043324042,0.4298834,-0.27446938,-0.60981315,-0.16214477,-0.09237704,0.3296979,0.1547412,0.26262623,-0.058461726,-0.11696026,-0.074444175,-0.19327205,0.5750341,0.62584215,-0.19223905,-0.012832627,0.3368189,0.6835165,0.20955026,-0.15732028,-0.024407187,0.03489698,-0.5551226,-0.21113615,0.012237226,-0.18915083,0.5191631,-0.22434963,0.3961633,0.5449373,-0.21412249,0.043669302,0.09727762,0.22328697,0.014922802,-0.21532117,-0.2933804,0.34736958,-0.45319572,-0.0690307,-0.32888398,0.7121115,0.244675,-0.60390776,0.3362633,-0.2996112,0.0465693,-0.055456463,0.66654795,0.8244133,0.42881238,0.3366952,0.94799787,-0.39300957,0.07810057,0.0117761595,-0.06639161,0.18619692,-0.25197813,0.12397834,-0.44742784,0.10922364,0.23054874,0.06603081,0.064072944,0.4806207,-0.5459285,-0.19897306,0.43232283,0.7028573,-0.19784975,-0.011255483,0.8428135,1.2069951,0.9858276,-0.011606932,0.8127702,0.027389893,-0.19663258,-0.012783219,0.16263323,-0.77928895,0.28312925,0.4347173,0.58945936,0.40837398,0.059794385,-0.03205648,0.40901506,-0.55023736,-0.11877516,-0.12035134,0.38979855,0.16157164,-0.08475397,-0.32405356,0.045645982,0.027810214,0.15853517,0.05657971,0.32184446,-0.25983086,0.30047998,-0.100205295,1.1855651,-0.12334295,0.091939986,0.1922574,0.52902937,0.2648996,-0.4210154,0.31131852,0.3603499,0.44339085,0.14011633,-0.57743275,0.06527435,-0.36844325,-0.6907764,-0.13075034,-0.33947793,0.04620916,-0.096587546,-0.45716718,-0.23752517,-0.086962104,-0.1140678,0.3355641,-3.0881793,-0.15099497,-0.23985629,0.2772629,-0.19821109,-0.21800832,-0.12361785,-0.49777338,0.5091849,0.5942836,0.4140779,-0.64576846,0.09733797,0.37194073,-0.45926058,0.016817546,-0.564405,0.065698035,-0.11262595,0.4873235,0.09710961,-0.2271276,0.07324994,0.47550288,0.50643235,0.22823347,0.22436123,0.10348272,0.382068,-0.31435552,0.26950905,-0.13284664,0.38766813,-0.43426713,-0.17315787,0.3135524,-0.6371333,0.1199914,-0.4876366,0.16073531,0.53744674,-0.17544909,-0.8256356,-0.5040781,0.12901208,1.2102863,-0.16040601,-0.7294685,0.13670413,-0.24733348,-0.1323835,-0.0908038,0.55614936,-0.17903852,-0.08970338,-0.6165952,0.08156046,-0.36988544,0.1392281,-0.07411951,-0.010831823,-0.53807807,0.81506443,0.00998396,0.51025295,0.33934188,0.08618816,-0.6239886,-0.37005875,-0.06058373,0.7842174,0.63031954,0.09928688,-0.19257323,-0.048990708,-0.1657508,-0.16450089,0.222151,0.7744995,0.81998825,-0.1048905,0.21539827,0.33827415,-0.07425539,0.05795771,0.09429663,-0.32637125,-0.26442686,0.25695404,0.7168676,0.59770304,-0.118171036,0.14932309,-0.0647525,0.16459651,-0.2634485,-0.47570714,0.39558005,0.7935167,-0.18536568,-0.3233962,0.560353,0.47902367,-0.22378969,0.6621671,-0.7086828,-0.4758842,0.49753428,-0.12516315,-0.34427705,0.13432789,-0.38629195,0.10238904,-0.75814277,0.27454486,-0.36538282,-0.60040396,-0.739454,-0.36580846,-3.2761047,0.20819353,-0.32654276,-0.13386686,-0.24153256,-0.18584792,0.21476442,-0.73757166,-0.5693023,0.1900676,0.0894249,0.71340877,0.018916365,0.017785585,-0.32482162,-0.3267688,-0.112868905,0.18697853,-0.017867932,0.21039951,0.07210681,-0.3238041,-0.101555966,-0.047094915,-0.39818358,-0.15256646,-0.40681243,-0.4728122,-0.25007865,-0.5164792,-0.079244606,0.6622832,-0.30735746,-0.032711364,-0.14677346,-0.01474001,-0.074977495,0.10181267,0.001829187,0.19922282,0.027623514,-0.10631671,0.055244815,-0.4288546,0.15425014,0.066771366,0.47029042,0.25833043,-0.1883791,0.12583716,0.6075552,0.5566645,-0.16294473,0.86403656,0.41817796,-0.05437538,0.29420897,0.03330676,-0.1152828,-0.52429277,-0.36536124,0.30229667,-0.47012004,-0.33504197,-0.14452045,-0.33201084,-0.87638515,0.46007586,0.038588624,0.58868855,-0.12119169,0.4433279,0.34091076,-0.25502762,-0.13978316,0.022325685,-0.13484356,-0.46630108,-0.20329838,-0.5987367,-0.35017335,0.30099872,0.80563897,-0.37956536,-0.12202326,0.20828335,-0.17046846,0.0138738705,-0.0022521715,0.079366855,-0.09960624,0.3290882,0.062004745,-0.587272,0.44030452,-0.2401657,-0.022148123,-0.50649786,0.0980992,0.40864873,-0.43376896,0.57349306,0.4372541,0.07772002,-0.3388139,-0.7582226,-0.09540657,0.06558597,-0.1332269,0.41850838,0.28776145,-0.74843025,0.5525573,0.086755864,-0.41001233,-0.63551563,0.48511043,-0.08227763,-0.20858096,-0.15921186,0.23165995,0.13619958,-0.027039543,-0.15424152,0.36615786,-0.2808631,0.23506917,0.1723709,-0.041493047,0.5912749,-0.083089374,-0.16002811,-0.58296067,-0.052309494,-0.7442048,-0.20650937,0.29483262,-0.18417907,0.053782433,0.08905974,0.04964316,0.35139474,-0.33904216,0.24090953,-0.0851384,-0.33953795,0.5177791,0.5677194,0.57845896,-0.5046219,0.6789887,0.16502474,-0.008933057,-0.05228362,0.012159526,0.48439702,0.12030822,0.43783227,-0.16077513,0.0012518564,0.20076223,0.77500194,0.27351654,0.40861008,-0.060548726,-0.071497925,0.08020388,0.053842414,0.27254006,-0.03575516,-0.6277633,-0.03712389,-0.23601979,0.053885013,0.45547438,0.18818922,0.39294425,0.11038057,-0.35603622,0.042959273,0.12461395,-0.0794894,-1.430953,0.4727893,0.21829616,0.9052105,0.3808786,0.0024271756,-0.04827286,0.6794769,-0.07426231,0.06434103,0.4004883,0.00060335424,-0.37444147,0.5707132,-0.70020944,0.50576735,0.029654743,-0.11087579,-0.07210955,-0.040487263,0.5909483,0.48661232,-0.20740636,-0.009790971,0.043475732,-0.22578955,0.18023473,-0.4094944,-0.057743043,-0.527482,-0.2800386,0.53157085,0.48010978,0.30588645,-0.04313883,-0.07193205,0.093827866,-0.06313628,0.053448807,-0.2430225,0.05545525,-0.18492673,-0.60903555,-0.25620496,0.4397478,0.037146453,0.13718212,-0.025596509,-0.20080392,0.11525094,-0.08400092,0.031971827,-0.02401062,-0.77171296,0.052691262,-0.21241431,-0.45932516,0.85617733,-0.30609128,0.23373759,0.24442428,0.008248996,-0.033667725,0.14558788,0.020142952,0.8103668,-0.2910532,-0.23026596,-0.5053516,-0.040328633,0.20452213,-0.29796037,0.020584038,-0.3081921,0.070778824,-0.45670247,0.41318926,-0.20344369,-0.08955252,0.26825702,-0.24536765,-0.060159955,0.58353657,-0.070893325,-0.034465168,0.034214765,-0.3924968,-0.0911906,-0.20249961,-0.36209884,0.23940723,0.03895251,0.105697244,-0.14153534,-0.15427549,-0.05557056,0.19249316,0.088046074,-0.02589638,0.4024636,0.042332824,-0.43140054,0.057415936,0.2462327,0.5203703,0.09396129,-0.14188635,-0.30541536,-0.6737926,-0.4761748,0.3366913,-0.13944836,0.2787434,0.2518625,-0.058463488,0.8142233,0.041626472,1.0872902,-0.026879543,-0.5889836,-0.1348445,0.69021916,0.043890476,0.015029204,-0.2994589,0.93279195,0.49464127,-0.037796848,0.049860377,-0.3972415,0.18929805,0.43881336,-0.13726634,-0.2785679,-0.21206611,-0.6474935,-0.20207983,0.46600845,0.2716014,0.2234204,-0.15608364,-0.07824074,0.4110558,0.11433811,0.3321019,-0.6375015,-0.07035343,0.25611153,0.10890916,0.020304346,-0.03587227,-0.40499285,0.29346192,-0.6820321,0.027658528,-0.3902665,0.25567415,-0.254649,-0.55192477,0.23191637,-0.14793281,0.5504345,-0.30687633,-0.3946992,0.05263135,0.3412937,0.32187402,0.1915753,0.38756704,-0.24605255,0.019299813,-0.07490186,0.48395917,1.0162364,-0.3357124,-0.012384196,0.38961026,-0.47799316,-0.96175575,0.101165116,-0.550697,0.15531622,-0.12879777,-0.3350666,-0.5466757,0.28945926,0.32879946,0.030944278,0.089440785,-0.5856591,-0.31660578,0.08691593,-0.21972097,-0.24682009,-0.3793203,0.07144338,0.73055935,-0.3368515,-0.3586733,0.12674691,0.5962663,-0.11472422,-0.71668077,0.14610212,-0.33105335,0.31064713,0.019800948,-0.27448663,-0.17013498,0.041166823,-0.46720704,0.4273905,0.1953181,-0.24643536,-0.0924415,-0.16723682,0.16285004,0.8444843,-0.05381917,0.30367678,-0.46431383,-0.320257,-0.7393515,-0.46892095,0.37633905,-0.018242663,0.05170003,-0.771811,0.030051127,-0.27352306,0.040224966,-0.2602393,-0.30358532,0.51286703,0.13568264,0.3808719,-0.06941333,-0.6933213,0.16668911,0.037326258,0.01402128,-0.4321381,0.36386633,-0.14846504,0.9543864,0.08972657,-0.050145924,0.022008449,-0.63858217,0.34951875,-0.3161757,-0.4042549,-0.57856363,0.27828076 +371,0.30907848,-0.39294997,-0.43636298,-0.22854419,-0.22407478,-0.10063062,-0.21873103,0.2504592,0.16866839,-0.35696593,-0.21475697,-0.3361809,-0.059684347,0.6703151,-0.25121453,-0.72135264,-0.03868786,0.185418,-0.52219886,0.83955735,-0.37746415,0.17703497,0.33324727,0.35345307,0.21607225,0.097409405,0.49551392,-0.07876418,-0.10750863,-0.15659352,-0.10667229,0.059610214,-0.8706514,0.22532655,-0.25506923,-0.37971473,0.06561538,-0.28778055,-0.46985975,-0.89223367,0.32175753,-1.0065039,0.50608784,0.18121886,-0.28725478,0.08416658,0.32682195,0.19151741,-0.18584482,-0.088937156,0.10028332,-0.1419449,-0.030334687,-0.0069440603,-0.18665385,-0.5430039,-0.79608303,0.05435351,-0.60700065,-0.27762544,-0.27934,0.22246428,-0.4105216,0.0075984946,-0.06767613,0.70201254,-0.5966124,-0.29286557,0.20585035,-0.096193366,0.6288424,-0.58595467,-0.19509935,-0.29369453,-0.0950435,-0.15057828,-0.12744687,0.35509205,0.3177502,0.38317132,-0.009761676,-0.3969262,-0.26054773,-0.06321262,0.1360066,0.44454047,-0.07018328,-0.5847659,-0.25747183,0.14802994,0.012807672,0.22351821,-0.055876583,-0.531956,0.07361307,-0.27190128,-0.21661122,0.47112635,0.54759234,-0.36779192,-0.35480273,0.092384376,0.3612008,0.136856,-0.12799564,-0.0655638,0.117069125,-0.5983489,-0.124843776,0.2618342,-0.37783194,0.7125853,-0.20044951,0.09987458,0.75137764,-0.28164676,-0.022648096,-0.119399995,0.033460107,-0.21000521,-0.1075213,-0.3683858,0.46713397,-0.5779913,0.12176696,-0.22229493,0.8095813,0.1485161,-0.6917823,0.21577562,-0.59750706,0.18010537,-0.11934925,0.60603946,0.7326772,0.2815393,0.6449943,0.6304882,-0.33752576,0.22569157,0.08275558,-0.42996383,0.2006098,-0.43810812,-0.04354036,-0.35452166,-0.19317968,-0.26828706,-0.19519466,-0.31876436,0.5114108,-0.6096551,0.08560421,0.15966208,0.87480736,-0.17566256,-0.15115198,0.61331344,1.1026434,1.1637887,0.07851285,1.3095431,0.40744007,-0.21420346,0.24946064,0.039737526,-0.8004233,0.38083628,0.6291538,0.14522552,0.37484884,-0.016493052,0.03840435,0.33828723,-0.717261,0.17550667,-0.40041253,0.31083035,0.12797292,0.03835811,-0.72549766,-0.36177778,-0.066015154,0.11718563,-0.060901117,0.28436592,-0.12089663,0.28899148,0.035780217,1.6382914,-0.17805262,0.121738315,0.15013413,0.60020906,0.18377894,-0.056234896,0.017529873,0.24538553,0.27253133,0.3452871,-0.67481995,0.10675343,-0.33199513,-0.40398595,-0.31660298,-0.37301478,0.2369871,-0.030954799,-0.5050564,-0.24111187,0.041734412,-0.3742241,0.48403963,-2.207467,-0.19061309,-0.17551184,0.06948849,-0.37796286,-0.1583148,-0.005313953,-0.47787547,0.57685506,0.52079266,0.5426396,-0.7712801,0.09965768,0.54806,-0.5726855,-0.022819469,-0.6706927,-0.15618828,-0.2310722,0.59368205,0.1106833,-0.19123976,-0.014066647,0.25428924,0.43983746,0.058610737,0.16758084,0.23930408,0.30650613,-0.07011801,0.44256556,0.048894692,0.27781403,-0.41167542,-0.17594413,0.4977529,-0.1328965,0.376116,-0.3457372,0.16208644,0.5219659,-0.75134295,-1.0232807,-0.6236577,-0.7013127,1.1409186,-0.36996314,-0.58311814,0.30951035,0.18449746,0.02138122,-0.08360133,0.5961633,-0.23634668,0.3415784,-0.73719853,0.013704021,0.08196629,0.22576888,0.099054754,-0.072284326,-0.45118448,0.7843656,0.020457076,0.102489,0.357924,0.333599,-0.4293621,-0.93246984,0.10754356,0.9957838,0.46119747,0.129873,-0.42638135,-0.24658291,-0.12481294,-0.17000179,-0.027536387,0.41827568,0.9793553,-0.16452146,0.095480226,0.27436888,-0.0648699,-0.023019241,-0.05369993,-0.42480478,-0.004354082,0.06788688,0.72096854,0.798801,-0.1990096,0.43653026,-0.21911184,0.431906,0.036460366,-0.47656956,0.47487366,1.295018,-0.05960214,-0.17496628,0.7520757,0.5202019,-0.43170223,0.6044493,-0.7375102,-0.45134577,0.46897283,-0.095400296,-0.6370338,0.19589572,-0.45389786,0.056035925,-0.91432804,0.51895547,-0.20488904,-0.26130196,-0.6856957,-0.18898274,-3.7137775,0.36404297,-0.2855653,-0.14533934,-0.14104837,-0.08713143,0.3226898,-0.6443415,-0.61256224,0.30761698,0.005018167,0.5132626,-0.11934361,0.1456338,-0.17325349,-0.227031,-0.2705878,0.30151203,0.31168392,0.23233359,-0.17878999,-0.5355234,-0.02873204,-0.29039335,-0.5072635,0.09301996,-0.6611313,-0.6642399,-0.46810874,-0.72186965,-0.40137252,0.6918332,-0.043134045,0.03650582,-0.17986305,-0.009123241,2.8789043e-05,0.2801461,0.30800137,0.4667364,-0.035904545,-0.088240646,-0.22880723,-0.18824898,0.32048467,0.02703487,0.31673887,0.38757387,-0.13983135,0.24627213,0.7155462,0.5851145,-0.26107812,0.8667958,0.7168614,-0.15799963,0.17732161,-0.100981824,-0.3320097,-0.6602228,-0.39802817,0.09680409,-0.32589737,-0.5195177,0.060869288,-0.23279332,-0.62235016,0.80043125,-0.17422302,0.32085222,-0.06611701,0.031487603,0.42530814,-0.32249957,-0.13880755,-0.16248083,-0.06675344,-0.69420034,-0.47294354,-0.71393156,-0.60602236,0.03752521,1.0035058,-0.056256324,-0.24082334,0.079993,-0.2939473,0.00576519,-0.07526266,-0.058125228,0.19147782,0.36457077,0.15906961,-0.9101282,0.6272673,0.2323969,-0.01711682,-0.42101946,0.37413415,0.7237656,-0.6742413,0.5752799,0.46361613,0.12573043,-0.20434983,-0.673932,-0.45162544,0.09689955,-0.26488984,0.44893932,0.094627716,-0.7637868,0.49552956,0.21082835,-0.64097214,-0.8919964,0.5886046,-0.096841164,-0.21164083,-0.049583506,0.51731217,-0.060567122,0.1520692,-0.45849583,0.27641836,-0.46053484,0.11629615,0.27628872,0.012928896,0.37021258,-0.2012077,-0.21986957,-0.8434885,0.20494421,-0.44586077,-0.40277842,0.32589287,-0.06277323,-0.37808502,0.33577514,0.012639731,0.37766218,-0.09098852,0.080234356,-0.04834209,-0.36435166,0.45450833,0.54733205,0.53798956,-0.51572984,0.7299836,0.054812323,-0.08789978,-0.26239216,-0.036563158,0.38340685,0.10797355,0.3526789,0.048993807,-0.042168453,0.31798574,0.88285565,0.15656962,0.6444629,0.26266375,-0.0038210948,0.36628306,0.00900285,0.12260753,0.039507296,-0.56688225,-0.0036835074,-0.25701797,0.06339007,0.5891097,-0.0941939,0.3817732,-0.19310562,-0.29305282,0.18454361,0.34869394,0.10348076,-1.213075,0.21018012,0.17522903,0.59570116,0.7323198,0.043556023,-0.0069415173,0.86791116,-0.31466463,0.029988103,0.45146748,0.13323462,-0.5663068,0.8036633,-0.70861006,0.38383052,-0.13362604,0.05085565,-0.14150046,0.2559103,0.36188698,0.7089241,-0.15295254,-0.047737718,-0.26347488,-0.18564594,0.21621484,-0.540093,0.32346895,-0.3073829,-0.5681074,0.6568065,0.4907359,0.13322873,-0.079539776,-0.06116295,-0.069029175,-0.18313412,0.40817067,-0.026275346,-0.11548557,0.06442162,-0.72803,-0.1050451,0.5557149,0.14411661,0.19388713,0.057066146,0.058728784,0.13841286,-0.3007269,-0.20317383,0.028172761,-0.9697558,-0.06476381,-0.39905754,-0.35247675,0.5741802,-0.6112371,0.24480677,0.009225105,-0.0156167,-0.63552564,0.07620182,0.09261272,0.7260254,0.1142743,-0.20075583,-0.21562712,-0.013677504,0.11969113,-0.2756802,0.06715586,-0.2690479,0.013457951,-0.68106,0.7468485,-0.14516486,-0.5090528,0.032388944,-0.14001675,-0.18992585,0.71167517,-0.050413072,-0.27833235,-0.12619282,-0.18391053,-0.11802914,-0.21233672,-0.03793506,0.31312472,0.2045223,-0.058947522,-0.17670906,-0.01023497,-0.025173217,0.62795836,-0.22203256,0.38757297,0.30768695,0.21300496,-0.37576437,-0.031741094,0.11940267,0.53038925,0.17093472,-0.038744528,-0.018477896,-0.285601,-0.32813475,0.003061076,-0.08902701,0.23243974,0.12213731,-0.3359793,0.9518666,0.16173786,1.3831749,0.006977121,-0.4535999,0.09354351,0.5036114,0.010977815,-0.10619768,-0.45170748,0.9582378,0.6696906,-0.115371644,-0.319227,-0.42401972,-0.05009063,0.27885965,-0.2426846,-0.065986715,0.024539294,-0.6778336,-0.3382819,0.23314519,0.4843603,-0.0012300014,-0.16148812,0.100694805,0.1650457,0.10421076,0.525478,-0.35276666,0.04168423,0.41387033,0.3309135,-0.012704412,0.21276076,-0.25644058,0.35504702,-0.5600961,0.17331143,-0.514853,0.22750835,-0.202909,-0.3759664,0.31461594,-0.016756365,0.58502406,-0.28302765,-0.12264276,-0.14049904,0.69559234,0.20829014,0.14074807,0.75091743,-0.30336222,0.17160143,-0.010085049,0.56835407,1.3055766,-0.6006631,-0.08813393,0.06399154,-0.24336658,-0.7276352,0.6691904,-0.5056712,0.21761853,-0.034087855,-0.37860146,-0.581863,0.124186784,0.108307295,-0.13914204,0.056142733,-0.5367173,-0.16566205,0.35631815,-0.22296107,-0.22466664,-0.5236802,0.22869761,0.49045467,-0.20043118,-0.35391286,0.1239602,0.15395771,-0.26116848,-0.64401144,-0.106312715,-0.27353606,0.29763278,0.12028333,-0.34255943,0.052235257,0.04278585,-0.5690215,0.079492025,0.20228177,-0.371737,0.03221177,-0.07932521,0.059692513,1.0773674,-0.33423916,-0.20049123,-0.70735407,-0.53544575,-1.1498666,-0.22093163,0.87681025,0.114736296,0.14750026,-0.5421476,0.15485537,-0.15169916,0.21243036,0.044871926,-0.50773984,0.30264243,0.07881489,0.59862006,-0.08962801,-0.75731045,0.1882879,0.10437769,0.11677904,-0.6372297,0.47356665,-0.12332487,0.8226056,-0.0044244477,0.0954772,0.23768596,-0.44729593,0.16794656,-0.17228025,-0.37678966,-0.70900106,0.19998892 +372,0.26078454,-0.21409829,-0.39637342,-0.15190388,-0.3581217,0.17423071,-0.22757702,0.15576416,0.07971278,-0.38774088,-0.20025234,-0.04329093,0.07824548,0.27986094,-0.08047913,-0.5966879,-0.02079057,0.15933967,-0.798496,0.44301277,-0.6156396,0.35509402,0.11437754,0.33525088,0.0962731,0.4245097,0.12970257,-0.1492869,-0.055055395,-0.23688258,-0.07410271,0.15926674,-0.3881047,0.21771884,-0.16834728,-0.20212762,0.16640997,-0.3619074,-0.22614051,-0.61363804,0.09544352,-0.97322726,0.44337618,-0.13964802,-0.10620155,-0.089236304,0.18879806,0.4627786,-0.36524472,0.10633993,0.12273606,-0.2499825,-0.23500015,-0.38961565,-0.049104653,-0.20337561,-0.31525585,0.0939947,-0.47468823,-0.40971696,-0.044827603,0.23160559,-0.2083249,0.067680076,-0.18682022,0.18743657,-0.41349143,0.090997666,0.32506734,-0.32016128,-0.05583902,-0.51837593,-0.014587259,-0.026962193,0.56263787,-0.06600411,-0.114361,0.33969492,0.18026471,0.48728,0.24359483,-0.24008112,-0.0519435,-0.3496308,0.17219916,0.56083834,-0.061735388,-0.10774982,-0.22064851,-0.0077235224,0.29077825,0.37447268,-0.0037507752,-0.2642484,-0.102316804,-0.2800471,-0.17367649,0.2754194,0.44155154,-0.22158654,-0.31259635,0.35656688,0.50589013,0.038566433,-0.17965372,0.20639838,0.03977915,-0.40098047,-0.16428007,0.18702513,0.19386564,0.4323782,-0.13541085,0.21842629,0.75963646,-0.11415381,0.08887504,-0.05208335,-0.0155107975,-0.18735425,-0.28883377,-0.16467114,0.044074953,-0.547738,0.011488537,-0.30411884,0.8367037,0.19588155,-0.6441374,0.35882792,-0.47545975,0.072664656,-0.017136518,0.63399166,0.4841057,0.3852565,0.19842069,0.6718289,-0.3217208,0.22132412,-0.16566893,-0.34468976,-0.13347551,-0.13333826,0.044500813,-0.38465947,0.28628045,-0.030501945,0.120913714,-0.056213833,0.38141266,-0.5306789,-0.0020943086,0.14886467,0.7182036,-0.38244337,0.05395723,0.78875417,0.94940394,0.7064836,0.04125541,1.2026378,0.37890518,-0.185466,-0.0048307795,-0.24879931,-0.61962116,0.0782468,0.32482263,0.43572506,0.14110237,0.020882575,-0.061881885,0.3581707,-0.47593558,0.1599231,-0.19905697,0.30603963,-0.12719344,0.1686379,-0.44455853,-0.20625499,0.040243115,-0.16715784,0.25335506,0.23607992,-0.2580707,0.42515987,-0.05804495,1.299687,-0.119053885,0.09497897,0.18809037,0.44401243,0.09406173,-0.13475566,-0.15377375,0.42616826,0.46094647,-0.1906786,-0.6234113,0.0500684,-0.25034148,-0.4313713,-0.16130237,-0.38018006,-0.1302372,-0.04778831,-0.3870547,-0.26060975,-0.038971648,-0.32982534,0.41883758,-2.6781774,-0.22309606,-0.15371844,0.33521843,-0.39047292,-0.27708676,-0.1714845,-0.43278927,0.2193594,0.1790796,0.34038055,-0.5291366,0.47913292,0.4329911,-0.29271695,-0.28115177,-0.6532672,0.04643317,-0.10498902,0.34103858,-0.016854756,-0.092426635,-0.42129996,-0.14888027,0.5899093,-0.036154635,0.14665829,0.5429342,0.30211893,0.35209048,0.51297444,0.06642253,0.6384954,-0.39531168,-0.12805375,0.38857394,-0.24783958,0.37112096,-0.18772887,0.12586217,0.38966045,-0.6033309,-0.54861706,-0.5888482,-0.49311242,1.1724377,-0.45361117,-0.36465582,0.19692533,-0.16238587,-0.18837349,0.10736305,0.63993704,-0.1695173,0.02060825,-0.5798063,-0.009108181,-0.024741888,0.41066235,-0.0012954145,0.02953537,-0.31335393,0.5768949,-0.25442323,0.6751572,0.17495622,0.22179495,-0.085610196,-0.28015763,0.12152529,0.9310115,0.26329815,-0.0058270413,-0.10431349,-0.34195006,-0.19023076,-0.31209052,-0.045928497,0.585971,0.78269464,0.077538244,0.014546224,0.32217038,-0.16124485,-0.0051392196,-0.17841548,-0.1259211,-0.10651131,0.065584496,0.47621605,0.40757248,0.05188097,0.4859261,-0.28784496,0.46550223,-0.18826638,-0.4541903,0.4848846,0.2303296,-0.20806475,-0.1681637,0.5881158,0.6495533,-0.28608522,0.34120852,-0.6117423,-0.31920528,0.58222985,-0.18025322,-0.49624434,0.28698146,-0.1601731,0.31110534,-0.80783045,0.24961138,-0.23735647,-0.5041799,-0.41627845,-0.0690866,-2.5679312,0.10047575,-0.04429859,-0.13796361,-0.17020164,-0.11765487,0.16486746,-0.389213,-0.35756508,0.13670023,0.19929396,0.6251139,0.051176038,0.13009037,-0.2876239,-0.09960375,-0.02457467,0.13774046,0.061669096,0.2748896,-0.32981095,-0.23584965,0.06073548,-0.09055285,-0.36651233,0.17255399,-0.6611858,-0.524954,0.01263939,-0.5528019,-0.21540709,0.6172826,-0.54322463,0.024148563,-0.20322813,-0.0707432,-0.22512333,0.12126226,0.20870797,0.26845166,0.13609266,-0.13699798,-0.07335699,-0.49426338,0.4669577,0.031263687,0.22493187,0.084410325,0.02031706,0.13441661,0.22367963,0.50411284,-0.18582787,0.8959843,0.2170653,-0.07340159,0.24371475,-0.27589953,-0.29980054,-0.4383438,-0.22031341,-0.021592315,-0.3517024,-0.4639605,-0.052934263,-0.25254694,-0.777561,0.5937208,0.13243145,0.0633621,-0.09490714,0.31741938,0.4214652,-0.016754815,-0.026307741,-0.06595855,-0.08129821,-0.44850424,-0.41890207,-0.6208909,-0.36130196,0.027274013,0.97012067,-0.2571618,0.057430103,-0.027613753,-0.42303413,-0.044394914,0.066215925,0.13406317,0.37155056,0.60120636,-0.1273912,-0.60059524,0.47017315,-0.13481788,-0.15746687,-0.33290288,0.070514955,0.6557039,-0.8456002,0.49548784,0.25840327,0.114420764,-0.038860217,-0.32499543,-0.2231863,-0.02154702,-0.27299318,0.38873115,0.101634055,-0.7537338,0.47714177,0.1733673,-0.16666079,-0.85859406,0.18930095,-0.06164786,-0.30545172,0.16919045,0.43364894,0.027316237,-0.044855542,-0.25069648,-0.017398022,-0.36397296,0.26884183,0.21010993,-0.17534687,0.25906426,-0.3989379,-0.36198375,-0.59067225,-0.05571767,-0.5483111,-0.22203524,0.23120579,-0.06344338,-0.035590388,0.27065858,0.067856304,0.35075885,-0.33756146,0.097371385,0.025741274,-0.2994148,0.16916583,0.33967468,0.23173358,-0.41826317,0.520409,0.06370401,0.019129673,-0.08255809,0.08969094,0.42030498,0.042576227,0.28069574,-0.2478786,-0.14570875,0.36414775,0.91289276,0.1575451,0.5106428,0.2380445,-0.11951324,0.41168964,-0.011236661,0.05549644,0.07513544,-0.37727496,0.013850365,0.10566136,0.1277477,0.34047043,0.4647011,0.5344214,0.058992404,-0.21104528,0.048337374,0.1437411,-0.118990324,-0.83896744,0.20777269,0.13365431,0.7408908,0.29100844,0.11370536,-0.1358126,0.65164816,-0.35476333,0.14030625,0.22304174,-0.18436402,-0.41205174,0.66012514,-0.36550808,0.41815317,-0.20244715,-0.071593255,0.26696873,0.06917237,0.28259805,0.8286676,-0.110330366,0.03254462,-0.07320344,-0.056939777,-0.0827047,-0.2887432,-0.031856816,-0.44686705,-0.32509592,0.6720941,0.40276405,0.45707008,-0.14182329,-0.0077411523,0.13791077,-0.15034573,0.11325385,-0.011452576,0.053455822,0.1669914,-0.43901518,-0.2981793,0.5649043,0.022358995,0.09556745,0.03309323,-0.3168513,0.10849576,-0.2710796,0.039076988,-0.10238348,-0.60128444,0.124343604,-0.28321105,-0.57971513,0.09026919,-0.24966292,0.16536449,0.21326794,-0.06952039,-0.19729838,0.39590067,0.118555516,0.94266224,0.075689174,-0.3407055,-0.23955849,0.009090984,0.32007858,-0.34935957,0.0862895,-0.38274363,0.13852367,-0.7413871,0.5453549,-0.18379964,-0.37653401,0.21202949,-0.23834863,-0.13082753,0.49443752,-0.03276856,0.021352682,0.16400068,-0.20049745,-0.47076893,-0.010693184,-0.34295723,0.11759349,0.35185793,0.023090383,-0.047417905,-0.19312058,-0.11807697,0.47376072,0.09192371,0.5176554,0.20731373,-0.045172047,-0.14888467,0.16264413,0.15146914,0.42293134,-0.030842774,0.12175061,-0.19009107,-0.2714438,-0.08468618,0.44896066,-0.052549053,0.21229932,0.07571094,-0.25399983,0.9177036,0.0046973866,0.84604377,0.17174286,-0.2353391,0.07207643,0.46583515,-0.09271596,0.16984409,-0.3440316,0.9372579,0.3913007,-0.0293629,0.03378216,-0.42025438,-0.15252203,0.34918308,-0.29911658,-0.09303393,-0.09544309,-0.4742221,-0.45741794,0.21065207,0.20343964,0.15029334,-0.03858849,0.013376715,-0.05013104,-0.059298635,0.3455649,-0.6930243,-0.10376059,0.27127197,0.1489065,-0.06776159,0.14833859,-0.44048193,0.48385912,-0.77686983,0.1594425,-0.39537245,0.008244603,-0.07548496,-0.23491865,0.0109366635,-0.013304802,0.31461823,-0.5402927,-0.42482606,-0.2639967,0.47795212,0.09010527,0.20719963,0.65656036,-0.24994664,0.00038493623,0.13792108,0.54928905,1.049086,-0.22002943,0.14283167,0.23316115,-0.3492211,-0.5589991,0.27394742,-0.2705011,-0.053063378,0.0004831925,-0.4710416,-0.2999602,0.35610092,0.3444748,0.06718295,0.08074163,-0.51923823,-0.052627023,0.45625082,-0.14991353,-0.28954583,-0.16170861,0.29062968,0.63280475,-0.08255849,-0.3159736,-0.028590463,0.29708746,-0.43535712,-0.40816957,-0.075768456,-0.25486898,0.2697625,0.04061521,-0.2268051,-0.1959913,0.12984632,-0.39820918,0.008731453,0.33205974,-0.35198414,-0.008445493,-0.101672806,0.018445313,0.8199556,-0.14468478,-0.09160821,-0.68656045,-0.4788664,-0.7758052,-0.50439954,0.20407334,0.19005568,0.052122395,-0.27807814,0.04277234,-0.19181246,-0.17379607,0.2949224,-0.51039255,0.26831338,0.1856248,0.4235444,-0.2784732,-0.9192263,0.26044187,0.030636137,-0.3770655,-0.54464954,0.4909249,-0.09196527,0.701455,-0.006522368,-0.1397861,0.08986498,-0.53469825,0.13292977,-0.35815546,0.04927652,-0.8223669,0.1032072 +373,0.26363564,-0.10444322,-0.5769257,-0.20922524,-0.17679816,0.13084625,-0.4289472,-0.113573425,0.15387958,-0.46266463,-0.14526515,-0.19190587,-0.044894207,0.50493544,-0.09700615,-0.8302627,-0.27063212,-0.053076137,-0.4553859,0.49772015,-0.4899752,0.24732168,0.0770815,0.33265552,-0.018455481,0.28423822,0.3733828,-0.26726344,-0.11854198,-0.06850278,-0.15195619,0.28733465,-0.8168526,0.16543142,0.17678948,-0.39987993,0.12779139,-0.28468102,-0.19711995,-0.76630515,0.5207725,-0.9740855,0.6216312,0.09787033,-0.10088877,0.04497582,0.26440737,0.32251838,-0.18969357,0.18485759,0.36737934,-0.5143587,-0.059247147,-0.21415854,-0.32447544,-0.60575444,-0.7284872,-0.01707536,-0.6809347,-0.28257355,-0.2621911,0.31725854,-0.4786612,0.046989594,-0.28208598,0.40476927,-0.3833399,-0.3243637,0.31162444,-0.27587786,0.5470037,-0.47856054,-0.21907514,-0.17200458,0.36117443,-0.33613852,0.05872522,0.22487675,0.41825005,0.56889874,0.078144826,-0.22135895,-0.29545364,-0.101833306,0.30106544,0.47242022,-0.18819518,-0.32394272,-0.18790285,-0.049716055,0.18900554,0.4556282,-0.27339047,-0.36548495,0.14030226,0.1769625,-0.20553535,0.31114703,0.29039714,-0.41776428,-0.51988214,0.27819085,0.36072335,-0.012723473,-0.1243969,0.01309063,0.20023681,-0.5339637,-0.2092218,0.62347424,-0.15145016,0.5113831,-0.10668627,0.29266497,0.9200193,-0.15771592,0.0047085085,-0.49707213,-0.16793175,-0.17005973,-0.23483725,0.022480875,0.27449104,-0.53930724,0.18949513,-0.2511662,0.79699516,-0.08669859,-0.781799,0.21545202,-0.6642246,0.06656281,-0.13461791,0.857168,0.72182447,0.07663456,0.36832032,0.8737766,-0.51212245,-0.032869406,-0.038021367,-0.55361754,-4.009406e-05,0.040614445,0.025231093,-0.40407977,-0.037968915,0.04578486,0.14925571,-0.030347593,0.33147952,-0.40399346,0.27699766,0.07093161,0.801857,-0.38371563,0.043031286,0.6438213,0.96050006,0.93232447,0.06243692,1.4385881,0.21782674,-0.19959952,0.18838435,-0.49824128,-0.5487797,0.23732138,0.5228531,-0.17548436,0.32874003,0.051340748,0.15148284,0.5001243,-0.38001713,0.030228177,-0.15229174,-0.03360917,0.00069538754,-0.0074448236,-0.43749252,-0.18653661,-0.03826458,0.017804405,0.14325859,0.19200842,-0.14998804,0.55580664,0.17866527,1.2537065,-0.25902656,0.3511548,0.06731566,0.25382772,0.02863091,0.04388086,0.03420484,0.35204384,0.47766104,0.05413446,-0.7042168,0.0065976568,-0.33354864,-0.38103566,-0.28156167,-0.31219634,0.058444798,0.02763915,-0.47087345,-0.11130554,-0.03431188,-0.43222857,0.30529884,-2.3976133,-0.19052243,-0.30299485,0.13778208,-0.16501729,-0.3141988,-0.25798437,-0.5577252,0.45585606,0.46306476,0.36596504,-0.61097145,0.39575765,0.5656757,-0.37193063,-0.22400306,-0.68424064,-0.04612724,-0.22745074,0.40502426,-0.10727694,-0.28435284,-0.35688075,0.33615848,0.6168346,-0.031032493,-0.00703234,0.2551817,0.51381874,0.26721045,0.6404695,0.17102218,0.6105857,-0.2062919,-0.29861662,0.3997217,-0.20606877,0.30223915,0.067207314,0.042092633,0.33956409,-0.5135412,-0.9584972,-0.8039406,-0.87873346,1.0810784,-0.47062543,-0.31967324,0.30853352,0.12353003,-0.35891733,-0.053927105,0.6490138,-0.35891247,0.16217774,-0.8610415,0.18000148,-0.2627264,0.36950615,0.033085965,0.03861693,-0.49928188,0.558572,-0.15851985,0.16074018,0.48045754,0.11288903,-0.27914003,-0.5961929,0.077459395,1.1578428,0.25465512,0.18566854,-0.18082325,-0.2901206,-0.028765837,-0.0915971,0.10668977,0.36256528,0.73652935,0.12923567,0.17259087,0.34617546,-0.16991083,0.04777349,-0.16146298,-0.3180786,-0.027362509,0.12257373,0.5494725,0.4474628,-0.020966323,0.33711037,-0.0964623,0.18060885,-0.032187693,-0.3636903,0.5444229,1.0008316,0.035943016,-0.06862165,0.84702665,0.606109,-0.4425145,0.520019,-0.62185663,-0.34342453,0.6632026,-0.18872683,-0.63363427,0.06912902,-0.44120786,-0.00586023,-0.9738148,0.114469975,-0.24462934,-0.4149522,-0.51018286,-0.11445666,-4.4062924,0.18766485,-0.39406145,-0.23255853,-0.17329395,-0.22880019,0.5596345,-0.67708445,-0.6668367,0.112184845,0.13122474,0.43653154,-0.1768656,0.19579627,-0.39725092,0.09785526,-0.05615298,0.3134,0.36891744,0.014725651,0.060306504,-0.5042544,0.16839594,-0.30610967,-0.5404052,-0.012434085,-0.4831679,-0.51800966,-0.1462344,-0.58959,-0.47199497,0.72166777,-0.45364448,-0.1033136,-0.2512655,0.09226346,-0.108974196,0.5218553,0.24718527,0.33527064,0.10073625,0.06521894,-0.43294123,-0.25835857,0.35901678,-0.048399646,0.21573555,0.38369146,-0.15442966,0.23176102,0.3643717,0.51046944,0.15629753,0.8875084,0.51105374,-0.042773504,0.19145435,-0.37667462,-0.21664578,-0.94129425,-0.5316591,-0.23896022,-0.38621843,-0.7033368,-0.15955885,-0.3316746,-0.8324334,0.64921016,-0.12111244,0.20376302,-0.086854406,0.30919147,0.21419592,-0.1988657,0.043061525,-0.102033086,-0.12837328,-0.54020786,-0.38727692,-0.77605885,-0.70394516,0.013065268,1.0000948,-0.087944776,-0.0122231245,0.079004884,-0.4884011,-0.035769474,0.2993492,0.32124805,0.36579132,0.6811743,0.04920815,-0.7794803,0.47337088,0.029962068,0.00842655,-0.6156363,-0.15519762,0.78644896,-0.80152655,0.7186165,0.39516136,0.13271171,0.04585662,-0.43613973,-0.44050142,0.008906906,-0.35848364,0.5461344,0.24808191,-0.51788026,0.41181985,0.12492537,0.0075908103,-0.76497513,0.45350528,-0.015351675,-0.14990284,0.2209803,0.46705046,-0.14724554,0.08968961,-0.09124448,0.3113002,-0.28247583,0.27712217,0.3313779,-0.032534495,0.53075314,-0.13731778,-0.1673612,-0.7123762,0.19494434,-0.48566994,-0.23250253,0.04943191,0.032585364,-0.047147736,0.3253648,-0.21119773,0.5097505,-0.17019361,0.18857129,0.09109044,-0.32615653,0.11240044,0.501223,0.06688158,-0.4445097,0.80117583,0.07496381,-0.2311997,-0.3040978,0.11770156,0.48284325,0.13435064,0.3153855,-0.29556546,-0.36029562,0.37378028,0.68661374,0.15880239,0.44647726,0.25402543,-0.012960981,0.48677957,0.17035069,0.03740721,-0.071075365,-0.36400974,-0.10310497,-0.07024176,-0.019080793,0.4738616,0.1031669,0.5285405,-0.20813312,-0.16690612,0.24156465,0.33160427,-0.17681675,-0.780335,0.33380723,0.28702036,0.546665,0.6465788,0.02915132,0.09472983,0.5089159,-0.5293587,-0.11860173,0.37602195,0.25147116,-0.51757264,0.86835074,-0.4995965,0.28263938,-0.15208048,-0.042486954,-0.022518495,0.15742292,0.23301357,1.0967668,-0.20052786,-0.0024694402,-0.18470664,-0.032253236,0.18622096,-0.12613729,0.13495708,-0.49861237,-0.37748566,0.57188654,0.40352866,0.44162527,-0.21507667,-0.20571733,0.103937715,-0.058942735,0.13417661,-0.10983794,0.000928099,0.13216181,-0.6409759,-0.30760857,0.5807718,0.068029635,-0.0025620784,0.05017972,-0.4348874,0.19353043,0.00017076482,-0.1258849,-0.06849071,-0.6570699,-0.037236422,-0.46147737,-0.5523383,0.30895963,-0.7402268,0.36720097,0.1436881,0.041211527,-0.31764263,0.021912793,0.2524449,0.8699119,0.149845,-0.09983364,-0.29985693,-0.009812991,0.23586889,-0.19411038,-0.02225081,-0.37503853,0.065077655,-0.7296577,0.54708976,-0.15015425,-0.3726574,-0.037743647,-0.18761621,-0.070141114,0.4232738,-0.10964233,-0.077906966,0.22055583,-0.11048571,-0.24817686,-0.11160946,-0.4184607,0.19696581,-0.06931233,0.119612776,-0.12691511,-0.09825545,-0.26895502,0.52585584,0.11182255,0.09602228,0.2553464,0.040243983,-0.42566124,-0.077050485,-0.043947857,0.4533395,0.18015473,-0.05015539,-0.10257528,-0.44259873,-0.06848026,0.2663447,-0.054654937,0.2678896,0.028380485,-0.5372505,0.84222406,0.15557514,1.0394114,0.20963486,-0.40044406,-0.06657608,0.4974853,-0.018039053,0.08300879,-0.40528622,0.9430523,0.568681,-0.2053191,-0.21865447,-0.3824904,-0.1964361,0.18936105,-0.18050438,-0.02738001,-0.23859859,-0.79357463,-0.33243528,0.2150269,0.30836645,0.1783884,0.081057824,0.0903636,0.05503648,0.08399477,0.67722005,-0.5522225,-0.06553027,0.2127965,0.22603251,0.02925995,0.3101857,-0.21119408,0.60788,-0.6541286,0.23924641,-0.5860196,0.06302812,0.08287931,-0.22664537,0.22612941,-0.09793219,0.45807147,-0.10023055,-0.2180296,-0.16622923,0.7991707,0.09250487,0.27730256,1.0842062,-0.29630658,0.07283495,-0.069697864,0.42023864,1.5862554,-0.2344778,0.11632788,0.26571837,-0.18443692,-0.43762556,0.29581574,-0.469321,-0.013435234,-0.058660835,-0.6128071,-0.23171718,0.12387395,0.025631748,-0.07659928,0.08696561,-0.3591542,-0.26596734,0.54922754,-0.29405764,-0.3015156,-0.15693413,0.44052362,0.7972602,-0.39629355,-0.38880825,0.02619349,0.43336022,-0.34481385,-0.37945077,0.056819785,-0.26231384,0.47362694,0.29471514,-0.34454274,0.20332642,0.32082722,-0.3405331,0.008213538,0.45978656,-0.29788372,-0.010064691,-0.17384176,-0.21084587,1.1831857,-0.18086255,-0.0778107,-0.6598224,-0.33994094,-1.0237378,-0.3167021,0.44490144,0.23490278,0.088784985,-0.18083425,-0.008433993,-0.122034825,0.14026897,0.22237349,-0.6284515,0.42222133,0.10163107,0.7956009,-0.10061881,-0.72750306,0.03223002,0.18318294,-0.14059478,-0.58335716,0.37535933,-0.20788427,0.71312445,0.16884331,0.11684343,0.1402302,-0.442085,0.22994907,-0.33014354,-0.26702335,-1.1050473,0.019657055 +374,0.41962647,-0.24215575,-0.4231162,-0.07121038,-0.2287366,-0.026348716,-0.09918063,0.54684407,0.11272981,-0.25240216,-0.16269861,-0.21478426,0.08625043,0.41847536,-0.14124256,-0.41189805,-0.15663813,0.17687404,-0.50174457,0.4236226,-0.42373767,0.0318412,-0.045377746,0.4370391,0.15096708,0.29919618,0.017456122,-0.047366813,-0.14318216,-0.14622818,-0.21856058,0.23243602,-0.59346336,0.17192058,-0.08690069,-0.3421227,0.014468848,-0.6642474,-0.35128596,-0.64152855,0.25533667,-0.90524364,0.36868277,0.0062858663,-0.20923813,0.51585937,0.007966776,0.44105956,-0.24352391,-0.13004543,0.19492102,-0.1489572,0.12019012,-0.31985584,-0.06798258,-0.033087257,-0.36068806,-0.0771467,-0.17714667,-0.41450545,-0.31787464,-0.01503545,-0.30784228,0.042968046,0.04806937,0.29918584,-0.45723245,0.22935577,0.12633294,-0.2246209,0.2456451,-0.434618,-0.14471276,-0.11994123,0.306399,-0.30436492,-0.20347846,0.4192067,0.14369173,0.19146085,-0.13881211,-0.016526729,-0.2766452,0.0029722068,0.15939057,0.5991043,-0.25216365,-0.29050934,-0.004367826,0.024380123,-0.0009909669,0.23517215,0.07282208,-0.23687315,-0.19392188,0.0061786473,-0.21763448,0.17034025,0.3603343,-0.3101643,-0.20456219,0.35246134,0.59081346,0.17791522,-0.19185525,-0.2531718,0.016744621,-0.4763023,-0.106176965,-0.041785568,-0.16555937,0.5844604,-0.08584232,0.25319594,0.69694924,-0.22180438,-0.018907085,-0.08474958,0.04461323,-0.049734652,-0.27354947,-0.32794297,0.3174813,-0.28578413,0.18808158,0.005493954,0.73843384,0.20936291,-0.6691475,0.49695277,-0.6082843,0.14331114,-0.21299629,0.3390499,0.40763247,0.5994348,0.34554765,0.5719581,-0.48238218,0.16870148,-0.18225265,-0.38105965,0.14968969,-0.1304275,0.0804388,-0.45605895,-0.09904886,-0.017439136,-0.202457,0.30732566,0.08940182,-0.40916118,-0.0080032,0.23319013,0.7931904,-0.2707924,0.036672294,0.5573152,1.0824825,0.86735445,0.0292712,0.86926943,0.23903972,-0.21861525,0.32710195,-0.15022703,-0.71629435,0.2400593,0.5039503,0.035842817,0.14856005,0.20543201,-0.005293722,0.3360436,-0.34484127,0.043413386,-0.19690435,0.06101479,0.3033131,-0.08993742,-0.3978955,-0.28806928,-0.14138657,-0.01775009,-0.2693214,0.2512659,-0.13738938,0.40709043,0.09752182,2.041231,0.14419085,0.13093422,0.119496174,0.56882304,0.15111764,-0.064672105,-0.16006117,0.44609317,0.26857364,0.24052083,-0.4242293,0.29675904,-0.05893604,-0.4611107,0.00988694,-0.39383888,-0.006790817,0.076308206,-0.43238294,-0.08256304,-0.11049944,0.0022093505,0.53417397,-2.9519968,-0.098296724,-0.008013062,0.45320186,-0.25399894,-0.34805176,0.031130895,-0.4148133,0.31011865,0.32609007,0.5667159,-0.61298436,0.34424296,0.29831377,-0.58778685,-0.14197898,-0.53017396,-0.1590534,0.011248848,0.21076006,0.017715072,0.044240624,0.0005022486,-0.007502382,0.40062007,-0.054653924,0.015328073,0.2978033,0.35989463,0.05563861,0.62773156,-0.12642139,0.35774836,-0.35586998,-0.22125165,0.17805177,-0.21471472,0.22274369,-0.0660811,0.07684178,0.3786117,-0.25591344,-0.946544,-0.7279174,-0.17874797,1.276076,-0.30838308,-0.40965214,0.31000054,-0.27718756,-0.26625225,-0.20797984,0.29116192,-0.0067681274,-0.0650567,-0.7357388,0.047658045,-0.10821357,0.21332575,0.15430248,-0.29770836,-0.39263666,0.5654754,-0.14521827,0.49411932,0.42170724,0.012421156,-0.027746096,-0.19094509,0.027755693,0.67152375,0.24702889,0.1426653,-0.18438636,-0.20476924,-0.16603373,-0.07759546,0.08240603,0.3665718,0.53921217,-0.056744333,0.09411526,0.20878588,-0.11285583,-0.0040284446,-0.18071687,-0.21565163,-0.037027482,-0.07194232,0.530832,0.76630956,-0.07670797,0.38228163,0.02407361,0.27002907,0.04349551,-0.36420354,0.2768683,0.821743,-0.05544689,-0.19526684,0.3989013,0.5069907,-0.28427118,0.31092742,-0.44567463,-0.12590365,0.41918692,-0.17532992,-0.45924637,0.21736409,-0.16109604,0.108453095,-0.5869159,0.21444412,-0.35226965,-0.42936635,-0.42735913,-0.11748185,-3.3181257,0.24506299,-0.22737092,-0.36213875,0.079099126,-0.15277778,0.08166645,-0.7484047,-0.44448698,0.16958348,0.084291995,0.633064,-0.0959532,0.0052282587,-0.2849134,-0.2553893,-0.31952503,0.04592591,0.09282895,0.3170389,0.026194364,-0.41889644,-0.13569732,-0.059743565,-0.38754272,0.16124727,-0.66792226,-0.26287004,-0.054447968,-0.45406875,-0.40409002,0.5882842,-0.33378196,0.03746411,-0.06334969,0.011568014,-0.19947648,0.13281882,0.19783504,0.16389965,-0.05841024,0.028332775,0.062269967,-0.2620375,0.366596,0.077755064,0.30793598,0.096553765,-0.102279134,0.09168041,0.50368065,0.5702499,0.0037099272,0.76045924,0.43333685,-0.10054956,0.17431171,-0.42321673,-0.27551773,-0.49410942,-0.28862274,0.07399116,-0.2950208,-0.42550454,-0.08164534,-0.31354502,-0.6524515,0.5992548,0.021744633,0.010204424,0.10038275,0.20473723,0.5303719,-0.23625867,-0.1189301,0.019440634,-0.04512304,-0.7750456,-0.09364072,-0.54392976,-0.4069049,0.07841111,0.85875803,-0.26854846,0.15600246,0.025288343,-0.22437839,0.04185289,0.1493633,-0.23291962,0.25871027,0.48341295,-0.21848035,-0.59707505,0.30792853,-0.09638542,-0.32609764,-0.714909,0.41208354,0.49693406,-0.6731821,0.70853215,0.25681022,0.01438914,-0.0034513872,-0.42947736,-0.44878468,-0.15231293,-0.13196237,0.2239406,0.09310102,-0.77947974,0.226016,0.43144354,-0.38268974,-0.60090137,0.51560086,-0.106232785,-0.47771516,0.050658137,0.13081847,0.13828483,-0.10057708,-0.014387831,0.18316452,-0.4327244,0.27554372,0.19314058,0.018349776,-0.009806282,-0.08771237,0.061156314,-0.6615651,0.1970557,-0.14683096,-0.35609365,0.40188417,0.089273654,-0.019340781,0.146945,0.17583126,0.3040391,-0.2467351,0.07240299,-0.100941785,-0.31476724,0.43639624,0.3551928,0.45918655,-0.5211466,0.53574365,-0.037221164,-0.0445251,0.035840508,-1.6490618e-05,0.389464,-0.042416263,0.2966024,-0.12975852,-0.30354193,0.15575044,0.5055741,0.23637593,0.45534372,-0.10600128,0.054879773,0.2291594,0.14409834,0.1912388,0.07858941,-0.5958707,0.24038602,-0.19279158,0.08028663,0.47520903,0.13196409,0.20827074,-0.113540046,-0.34061074,0.01214428,0.23619036,4.9407285e-05,-0.9430244,0.41061744,0.1544214,0.73359674,0.40048265,0.05082062,-0.05309176,0.79325414,-0.14517182,0.108798005,0.16288428,-0.0020825714,-0.5412918,0.5373078,-0.75547504,0.45896408,0.19268398,-0.07650063,0.02612281,-0.002295509,0.32276446,0.50180084,-0.25798586,-0.078671396,-0.016362377,-0.4020164,0.0839909,-0.51701975,-0.024243861,-0.73070604,-0.24385327,0.44274127,0.6023697,0.35036543,-0.1436802,0.05788913,-0.0035325864,-0.09701892,0.2255677,0.10915189,0.14848013,0.2262553,-0.74618083,-0.06702434,0.63729835,-0.358958,0.25387067,-0.1327666,-0.18122248,0.45729876,-0.12079116,-0.1938078,-0.057521153,-0.5518167,0.3044514,-0.36668798,-0.2912588,0.35614172,0.1181913,0.28634346,0.16777702,0.029876495,-0.14126165,0.6164086,-0.03497117,0.9719487,-0.008684439,-0.2426774,-0.54815215,0.24814671,0.0420972,-0.0067120045,0.18949284,-0.38595986,-0.14040858,-0.39426923,0.35960928,0.0906279,-0.26561937,0.05950415,-0.1137265,0.05781843,0.67640954,-0.106326036,-0.14212856,-0.37984666,-0.15337278,-0.32723954,-0.25083992,-0.12550856,0.19206898,0.19439267,0.10306406,-0.04400715,-0.04308887,-0.12744214,0.55130345,-0.032922026,0.557801,0.07304668,0.07543903,-0.12665386,-0.32391575,0.015416066,0.4050922,-0.11716338,-0.155834,-0.3352814,-0.49146923,-0.20889823,0.17466158,-0.11329385,0.48813185,0.13753115,-0.017465798,0.692378,-0.31368807,0.9422929,-0.026361967,-0.26484752,0.24360116,0.48409274,0.07788659,-0.045205098,-0.2754085,0.79869866,0.532309,0.02479322,-0.075528495,-0.27371812,-0.20528036,0.03622684,-0.18019243,-0.09493139,0.06118913,-0.47566566,-0.14408019,0.10581293,0.19720592,0.47681007,-0.0642567,0.20323335,0.34267482,0.091436334,0.12289411,-0.21668117,-0.424257,0.29357502,0.23485851,-0.09308851,0.0578792,-0.51518273,0.44566572,-0.24349074,0.14514405,-0.45425358,0.110213935,-0.107945144,-0.20133658,0.1324011,-0.044272203,0.36415043,-0.2478661,-0.24857013,-0.14650021,0.46991834,0.28807762,0.2212904,0.5286606,-0.22335784,0.08268917,-0.0641278,0.4169136,0.6006146,-0.3513292,-0.1355988,0.4920117,-0.2949657,-0.47312275,0.33759192,0.02486004,0.044603035,0.072497346,0.08377299,-0.67079955,0.22342066,0.067678,-0.13404225,0.029425493,-0.6325214,-0.187819,0.3167042,-0.39740613,-0.2607101,-0.54417396,0.24968094,0.6469534,-0.27123895,-0.3165766,0.10799948,0.079679824,-0.08176511,-0.24138723,-0.11106271,-0.3471043,0.14686401,0.09217157,-0.36543342,-0.20221984,0.10207832,-0.259901,0.13493277,-0.07151113,-0.26745924,0.12944013,-0.31168035,-0.049918164,1.0259782,-0.2645416,0.023188373,-0.5538453,-0.39743993,-0.6942982,-0.33791542,0.5890601,0.0403035,0.00042966506,-0.441681,-0.07091777,0.059324462,-0.29465023,-0.31038198,-0.3376119,0.44714728,-0.0050350055,0.35831547,-0.16200985,-0.7154847,0.34460554,0.041040253,-0.09034085,-0.6090438,0.48470488,-0.107448466,0.8313079,-0.111156486,0.04720347,0.25475705,-0.22631657,-0.190396,-0.30166072,-0.33610806,-0.54443043,0.005555878 +375,0.34747848,0.089317866,-0.52498776,-0.14957862,-0.47804976,0.3626904,-0.27542835,0.15596631,0.26213574,-0.041051693,0.025546398,0.07172917,-0.12612233,0.19472708,-0.14264545,-0.6235419,-0.0470714,0.118232146,-0.54727244,0.5373343,-0.3136992,0.43999347,-0.18176228,0.3570059,0.18234754,0.44480556,0.13535897,0.100254595,-0.050050635,-0.006547004,-0.25139558,0.29976928,-0.5793214,0.3299203,-0.046792366,-0.4041298,-0.074739106,-0.41727468,-0.22878978,-0.67062366,0.33657938,-0.7756567,0.5996088,-0.1234653,-0.3434726,0.060199123,0.22950369,0.16070612,-0.2475226,0.038126104,0.19441892,-0.24508496,0.15109268,-0.30290973,-0.31217468,-0.5648461,-0.49957004,-0.18640098,-0.65999365,-0.06291662,-0.35957313,0.23751542,-0.23250076,-0.12549315,-0.36650518,0.10137911,-0.5118352,0.17933914,0.14353873,-0.35421038,-0.16709717,-0.4899528,-0.062774554,-0.13251711,0.2100831,0.11190003,-0.06808624,0.40984076,0.18274157,0.4630803,0.13915852,-0.31964236,-0.45306984,-0.14078858,0.062202945,0.37087616,-0.08447322,0.014028877,-0.26035962,-0.14102635,0.4686729,0.36676794,0.11855616,-0.25300923,-0.017290588,-0.10529396,-0.1303508,0.28498137,0.40979677,-0.4006348,-0.22924635,0.45127273,0.45333806,0.16910452,-0.33370575,0.22093195,-0.12448439,-0.2100984,-0.29843894,0.17110693,-0.061120704,0.41092217,-0.07983069,0.13439009,0.72948194,-0.04522788,0.077823214,-0.19412135,-0.061929565,-0.02410172,-0.32412586,-0.0709095,0.15778627,-0.3758158,0.20003963,-0.13550963,0.501102,0.06634526,-0.6996801,0.34630787,-0.5589515,0.097573996,-0.0310492,0.5117209,0.7413222,0.5305866,0.085276894,0.93619066,-0.32290044,0.012852779,-0.19281201,-0.18509465,0.1414396,-0.052637644,0.11697943,-0.4783632,0.22483908,0.088357195,-0.030810822,0.13081534,0.32805023,-0.27769095,-0.11499332,0.09466539,0.59532416,-0.4378554,0.044473827,0.6916282,1.0566318,0.9509522,0.009343766,1.1242303,0.3691675,-0.13243747,-0.2477292,-0.24134031,-0.4860061,0.054715924,0.42702737,-0.067560345,0.5341852,0.16623247,0.02924773,0.30932584,-0.22995867,0.047164492,0.095232494,0.21885416,-0.05300907,-0.06318657,-0.370697,-0.2115887,0.31103063,0.10427318,0.079706356,0.23483118,-0.28601414,0.41887483,0.27453035,1.524298,0.112898365,0.12930906,0.13634777,0.38096374,0.26192573,-0.21274936,-0.035866674,0.35120878,0.29734913,-0.21915835,-0.47079235,0.064817585,-0.35896763,-0.5319387,-0.062280837,-0.3608964,-0.28208637,-0.027863203,-0.38008514,-0.18850131,0.050918456,-0.23353615,0.37904108,-2.6252382,-0.009249248,-0.114850104,0.2776768,-0.26904333,-0.2964453,-0.35849482,-0.4900306,0.21227118,0.31229013,0.18720606,-0.45779657,0.4243045,0.4364321,-0.36521006,-0.06424151,-0.5613518,0.16908032,-0.020174779,0.40542814,-0.16496283,-0.20696978,-0.17686006,0.3923161,0.65759087,0.11749414,-0.043194663,0.33994743,0.38554555,-0.029051978,0.36998037,0.10359404,0.5637358,-0.13241492,-0.16338105,0.48348737,-0.4531383,0.49226692,0.002037216,0.10276273,0.41279632,-0.4170158,-0.6916162,-0.49489784,-0.14316425,1.1474724,-0.4443487,-0.46074513,0.13463373,-0.109394774,-0.23373657,0.10353261,0.37803358,-0.036959875,-0.04387176,-0.5613023,0.03386663,-0.2548429,0.17573163,-0.12664908,0.29976684,-0.35248628,0.754312,-0.2288157,0.5575232,0.23116267,0.20786373,-0.06689963,-0.42079002,0.19300231,0.65809685,0.5145977,0.09616051,-0.24797249,-0.13231027,-0.066036895,-0.31216633,0.24526063,0.5723767,0.49850157,-0.14891456,0.051439166,0.29949662,-0.18550918,-0.067766234,-0.2809913,-0.20230773,-0.010449211,0.22001748,0.40408498,0.60973406,-0.18673325,0.16676506,-0.11896149,0.20530955,-0.18569356,-0.65351886,0.37830853,0.5251411,-0.16684633,-0.23523259,0.59759986,0.4294301,-0.25701424,0.3584295,-0.68562555,-0.2567119,0.521691,-0.09838858,-0.40011394,0.09944001,-0.2928587,0.05225282,-0.60455287,0.055932343,-0.05668055,-0.5120877,-0.39025715,-0.14220601,-2.9892108,0.07412993,-0.13281965,-0.0511002,-0.120722145,-0.19761708,0.2844038,-0.6228751,-0.65146625,0.07005748,0.01341957,0.41641876,-0.07976845,0.12281148,-0.35490492,-0.24600662,-0.26437172,0.29095864,0.052030064,0.40646234,-0.20782523,-0.29508686,0.037241846,-0.116062805,-0.44078094,-0.120620616,-0.48003694,-0.26491284,-0.18903066,-0.32445735,-0.07862117,0.6027198,-0.49806833,-0.0063349344,-0.29827648,-0.045416694,-0.08019033,0.2408998,0.35157394,0.0937375,0.23514643,0.06065296,0.018230624,-0.3547027,0.3566062,0.077742994,0.21821362,0.46014988,-0.09090811,0.06910587,0.4352725,0.5512694,-0.059716173,0.73184955,0.16478908,-0.1727506,0.4751886,-0.2885802,-0.32988465,-0.79810536,-0.39096096,-0.21926324,-0.46919203,-0.39553905,-0.2506227,-0.38587,-0.86303484,0.31984645,0.13898183,0.36908284,-0.043124177,0.23810567,0.39983407,-0.2017287,0.09361711,-0.023163386,-0.2412585,-0.4880882,-0.5334705,-0.61334217,-0.6498798,0.35715732,0.93276894,-0.16808334,-0.04132969,0.17437339,-0.34931955,0.068987615,0.18722421,0.17681788,0.09319514,0.47660923,-0.056962237,-0.45917356,0.32281193,-0.0147032775,-0.086731404,-0.49943352,0.058697235,0.6652529,-0.56440526,0.44986266,0.15877399,0.18927999,-0.05809626,-0.7591111,-0.18841529,-0.07514569,-0.285058,0.5910719,0.3104056,-0.5799296,0.38151607,0.009969203,-0.123440355,-0.55478966,0.45527542,-0.093547136,-0.18169296,0.009401761,0.4042542,0.07921409,-0.12613498,0.11825238,0.14735945,-0.5151669,0.382639,0.2495614,-0.07817056,0.2949899,0.03448657,-0.23778504,-0.7089717,-0.0743234,-0.4333474,-0.4672895,0.09228411,0.02350352,0.028075676,0.08154144,0.064168856,0.5186048,-0.3651756,0.21619296,-0.18570141,-0.24577343,0.36674514,0.3683706,0.39683193,-0.4746353,0.5569813,0.049702093,0.08782458,0.055025928,0.145177,0.55655307,0.09587101,0.3570789,-0.11964494,-0.11345849,0.066712774,0.51904523,0.31058088,0.1893675,0.041054774,-0.37681484,0.2745749,0.14977297,0.12745373,-0.028067479,-0.2937806,-0.010041162,-0.18509838,0.19850895,0.4312796,0.15391672,0.3561762,-0.028221171,-0.022124158,0.3590675,0.080342606,-0.34376758,-1.0174048,0.2631886,0.25175682,0.7936069,0.46094567,0.0065306993,-0.013673756,0.41713905,-0.43726355,0.031485245,0.5303932,0.07862244,-0.36118543,0.47529805,-0.539816,0.45356196,-0.1248591,-0.101650625,0.3043838,0.35825115,0.39769518,0.8880794,-0.16176125,0.058771774,-0.035853438,-0.22341754,0.020124305,-0.025550734,0.14607403,-0.44216132,-0.39888042,0.5986644,0.41428104,0.4658175,-0.34665945,-0.09495589,-0.11296227,-0.19135591,0.1406814,-0.006542243,-0.045687035,-0.18652494,-0.37777904,-0.41658068,0.54264283,-0.17155805,-0.077227,0.03909645,-0.3051796,0.21698567,-0.016203472,-0.014418237,0.06343947,-0.546305,0.029702801,-0.22929882,-0.38673097,0.43363827,-0.22851709,0.25454268,0.09761216,0.011668788,-0.23550107,0.28865466,0.1595303,0.67506963,0.021323517,0.036957853,-0.31714672,0.35999572,0.35125828,-0.23169483,0.009001434,-0.2458877,0.26858914,-0.6352674,0.22469121,-0.21602178,-0.24154481,-0.05146223,-0.23079538,0.016099405,0.37529528,-0.18210566,-0.16204791,0.12306309,0.03554699,-0.42765212,-0.15465203,-0.4492191,0.12295321,-0.06835364,-0.1415777,-0.0049792305,-0.0779293,-0.14048085,0.26919937,0.11811527,0.1040167,0.29010674,-0.18244925,-0.39812553,0.083245695,0.034729626,0.34731114,0.11231084,0.081097245,-0.23517483,-0.393849,-0.35793272,0.5463939,-0.2678005,0.108747795,0.08062823,-0.31892383,0.8403751,0.03869987,1.141523,0.12000276,-0.41716722,0.14974612,0.5620742,0.14902104,0.15645412,-0.28371167,0.8852012,0.65371317,-0.14414573,-0.118898325,-0.20890775,-0.19817525,0.24873401,-0.41008478,-0.18184987,0.030546244,-0.77601045,-0.07285103,0.15770063,0.10628922,0.14933795,-0.041822117,-0.14333996,0.04941197,0.1335738,0.5098408,-0.36959273,-0.2946416,0.3844726,0.092621006,0.038042575,0.26172236,-0.29427993,0.39679286,-0.72589856,0.2050178,-0.6205827,0.089968316,-0.18535401,-0.32913965,0.2151249,-0.01565774,0.27072197,-0.35286152,-0.48605323,-0.16233747,0.4992459,0.14587417,0.2928065,0.62345326,-0.23764795,-0.0511531,-0.07615308,0.3945731,1.1014624,-0.059493348,0.08849135,0.37647384,-0.3820747,-0.6656472,0.018436713,-0.4260089,0.092870906,-0.012380734,-0.44490296,-0.18292552,0.32353866,0.00011852011,-0.11627299,0.027095638,-0.51892567,-0.055340067,0.24110118,-0.2461754,-0.1685456,-0.33458155,0.19703183,0.78188086,-0.27570027,-0.5575718,0.11383383,0.35999978,-0.25874195,-0.61965626,0.15880674,-0.12036589,0.39586556,0.07290517,-0.45198423,0.08859818,0.41634566,-0.43298686,-0.027707111,0.4552574,-0.3404195,0.005769156,-0.3571887,0.097509146,0.92876315,0.02232558,0.001301378,-0.43514043,-0.4411075,-0.96121025,-0.35857368,-0.13176823,0.1982457,-0.03569322,-0.5263714,-0.042812534,-0.31212592,0.14593762,0.05534191,-0.5611141,0.44111773,0.29113716,0.53617704,-0.19764194,-0.93400884,-0.0376667,0.2036443,-0.14699933,-0.4526598,0.57375175,-0.32308716,0.65206516,0.1586481,-0.040015258,0.13417819,-0.785665,0.39845616,-0.43090913,0.029082628,-0.6543202,0.11470379 +376,0.45744035,-0.07391837,-0.3943597,-0.08523166,-0.22766961,0.09785192,-0.06976802,0.652017,0.27815732,-0.4421025,-0.10432261,-0.105532214,0.008603103,0.22878921,-0.10826692,-0.40432703,-0.12265198,0.19674142,-0.5054987,0.45093787,-0.4732623,0.33218655,-0.11646354,0.3313921,0.23699169,0.3107617,-0.044652387,0.0065103625,-0.23802279,-0.00791274,-0.09926237,0.40274668,-0.2535105,0.10602201,-0.13944222,-0.26142746,-0.14337613,-0.45795736,-0.4156755,-0.56714165,0.33121693,-0.65486765,0.37877217,0.0052859336,-0.32370317,0.2928899,-0.06750365,0.2697531,-0.14608547,-0.02586314,0.076434866,-0.0109243095,0.013600022,-0.17754044,-0.30513716,-0.23199084,-0.5789364,0.1689986,-0.4024582,-0.17610951,-0.19340345,0.065755054,-0.20340358,-0.06702736,0.049553134,0.36457318,-0.4390728,0.053967178,0.12751901,-0.010332417,0.16417575,-0.47955406,-0.082791775,-0.03655806,0.2986836,-0.28972366,-0.21506178,0.2361981,0.24107209,0.50376916,-0.09755167,-0.06267186,-0.39252192,0.005323801,0.16269766,0.4579691,-0.17845286,-0.43768695,-0.14340205,0.0017589778,0.12350486,0.27311248,0.19180912,-0.2872632,-0.18314552,0.018988717,-0.16103746,0.399423,0.4936738,-0.28480285,-0.36444664,0.43010768,0.69986343,0.10912333,-0.12021092,0.0032076687,-0.006369613,-0.49924728,-0.15982814,0.015639506,-0.10359213,0.35621035,-0.033195145,0.15946358,0.5603296,-0.14931983,0.04986193,0.08209808,-0.024095442,0.007970378,-0.31502095,-0.12101841,0.10972302,-0.39025778,0.043434367,-0.027224481,0.6692406,0.15545972,-0.84703255,0.35065228,-0.5283076,0.094695225,-0.07168086,0.4703629,0.7543261,0.31258416,0.27848223,0.6772431,-0.38206527,0.11531207,-0.15311289,-0.27634633,0.061805617,-0.17441055,-0.013076,-0.56869704,0.0010142997,0.08717788,-0.23219717,0.19550174,0.37613043,-0.54084814,-0.10312829,0.1866897,0.70737237,-0.3203549,-0.15898697,0.75554144,1.0482701,0.9015969,0.00084352866,1.1839348,0.12965745,-0.24600336,0.36341614,-0.58841515,-0.65362847,0.23244718,0.30732843,-0.041617483,0.24438493,0.07847977,0.086940095,0.3661922,-0.34595177,0.122969806,-0.11425104,0.12656748,0.025188467,-0.06052576,-0.4667763,-0.25646973,-0.058733612,0.11258273,0.16698505,0.2620538,-0.30475265,0.30894053,-0.004401058,1.8418664,-0.050939083,0.09600865,0.073855676,0.44355887,0.13302082,-0.38057294,-0.11106227,0.29477105,0.23581801,-0.08125664,-0.48189205,0.12968007,-0.1261223,-0.5118357,-0.106973395,-0.354244,-0.004211195,-0.06553277,-0.41150647,-0.057669815,-0.1466279,-0.40976536,0.59279835,-3.000711,-0.22508922,-0.07546188,0.25391018,-0.23660137,-0.5026798,-0.21006235,-0.35805467,0.3330263,0.284529,0.38389316,-0.66620445,0.3043356,0.32094425,-0.4901164,-0.11385669,-0.61788285,-0.09653697,0.005290818,0.20520833,-0.06345002,0.050771542,0.06828288,0.11761187,0.4100172,-0.070157334,0.103104316,0.31043357,0.33804107,0.016126432,0.3999051,-0.052371543,0.5077654,-0.14188483,-0.28271458,0.39219922,-0.35577613,0.20077284,-0.011500113,0.1322027,0.30007517,-0.48327675,-0.83759284,-0.57621056,-0.21758074,1.0499628,-0.15387362,-0.2976634,0.3487913,-0.51787084,-0.27821586,-0.13951068,0.53156495,-0.010806009,-0.21088672,-0.8232014,0.08617456,-0.062448245,0.09114905,-0.079334095,-0.03641425,-0.4089394,0.55811477,-0.11443919,0.52817166,0.3486418,0.22417015,-0.24490875,-0.38628352,0.072249815,0.9573705,0.30188948,0.12422803,-0.20014004,-0.23288193,-0.44314754,-0.11791626,0.15822689,0.4553115,0.62917155,0.010087129,0.14200397,0.22459736,-0.02096044,0.031065002,-0.15378274,-0.16489245,-0.088772595,-0.10982325,0.6094662,0.58060926,-0.14573397,0.559562,-0.020270895,0.09910452,-0.2646212,-0.3952812,0.40688467,0.69651866,-0.1532684,-0.26544866,0.61813617,0.39013314,-0.2127074,0.36235464,-0.5671308,-0.1539855,0.40175873,-0.30266422,-0.3775185,0.27776662,-0.2383292,0.07312742,-0.9264042,0.16548331,-0.12252238,-0.56799877,-0.5668842,-0.08547874,-2.8936908,0.13782802,-0.086563095,-0.2890944,0.05114461,-0.15081277,0.08304515,-0.46838295,-0.5479272,0.18960324,0.10894125,0.61211514,-0.076501906,0.029053457,-0.20668823,-0.24982521,-0.37220243,0.09891917,0.077292494,0.43331647,-0.02210622,-0.34895647,-0.10578127,-0.15399823,-0.43346006,0.0683835,-0.54909563,-0.40173885,-0.067569345,-0.47056675,-0.23683634,0.65020764,-0.33527407,0.0021037832,-0.21781778,-0.084391214,0.02654408,0.3276044,0.13350897,0.09479366,0.24614564,-0.03953173,0.026049152,-0.26309577,0.25294617,0.07005697,0.29401374,0.37727296,-0.21458507,0.28330076,0.48605746,0.64494246,-0.23459092,0.82454044,0.56120205,-0.05159812,0.20343357,-0.29317647,-0.079325624,-0.3779006,-0.24897553,-0.07060677,-0.40497252,-0.51960135,-0.22326528,-0.4086745,-0.73888814,0.41809797,0.04274481,0.13954636,-0.015727937,0.21172199,0.51479715,-0.18479067,-0.014241319,-0.14864857,-0.15377977,-0.5040809,-0.32652032,-0.583069,-0.48608768,0.29475862,1.0611997,-0.12740457,0.07028509,0.050048284,-0.20849656,-0.09473016,0.06828181,-0.01909914,0.21023008,0.2999203,-0.16141573,-0.41984862,0.40467978,-0.08260971,-0.198643,-0.6162095,0.16970678,0.49157718,-0.45286196,0.5914915,0.18851757,0.0748619,-0.059100647,-0.48249727,-0.08952238,-0.02860707,-0.25527805,0.45906162,0.30201417,-0.8229363,0.4430623,0.30636793,-0.14548641,-0.7421022,0.48991895,-0.07512554,-0.2083329,-0.104692265,0.2514477,0.258145,0.020828161,-0.19535288,0.19877405,-0.37337822,0.31414807,0.19874671,-0.045904964,0.33610487,-0.22129397,-0.10995342,-0.61006963,-0.01669845,-0.54782754,-0.24696968,0.14408356,0.12840733,0.2526339,0.20329897,0.080830306,0.3209952,-0.27961376,0.09618143,-0.04286141,-0.20433591,0.1697354,0.35006875,0.56470543,-0.35487702,0.40218896,-0.01433032,-0.0054769516,-0.0866336,0.020742133,0.550045,-0.020325907,0.24038172,-0.0497372,-0.32159734,0.31623322,0.675125,0.1840519,0.19060582,0.009025779,-0.22558299,0.2042234,0.036609314,0.19012126,-0.016786385,-0.47542223,0.12294674,-0.11060813,0.23433271,0.37519288,0.1960304,0.26984784,-0.10088168,-0.33043873,0.048649244,0.18050148,-0.042815626,-1.1719396,0.303849,0.19160937,0.8963756,0.4999057,0.07011539,0.07982701,0.53597206,-0.20398945,0.19238973,0.35204357,-0.15353253,-0.48887247,0.4417708,-0.7657452,0.569429,0.00632238,-0.052886695,0.08071186,-0.126351,0.47527277,0.68025124,-0.13168916,0.078394085,0.04824791,-0.23047906,0.0447364,-0.28528756,0.02869229,-0.705802,-0.17234378,0.6552832,0.47965816,0.3137421,-0.11386407,0.034620374,0.16332117,-0.029309683,-0.04964801,-0.014368542,0.09475505,0.028909795,-0.58614457,-0.20205769,0.42368174,-0.12960617,0.08680267,0.056833297,-0.18464066,0.15462562,-0.11637682,-0.22094037,-0.06402308,-0.5582095,-0.06394024,-0.23994511,-0.3186614,0.4296198,-0.11131984,0.22299507,0.18700187,0.15156838,-0.24765554,0.47202063,0.15636483,0.8508404,0.04021624,-0.047087356,-0.38145387,0.28128877,0.19466014,-0.14613977,-0.2139897,-0.29040688,0.0119047575,-0.56733644,0.34112853,-0.06139993,-0.42101166,0.14534122,-0.068631664,0.123882115,0.5250914,-0.11286679,-0.10050111,-0.04303241,-0.16993046,-0.2688641,-0.04503457,-0.089034155,0.3716817,0.26457876,-0.12233058,-0.015251784,-0.109222606,-0.026770085,0.38598138,0.083910674,0.42447075,0.26618308,0.10136098,-0.22942673,-0.08028734,0.21955481,0.3649144,-0.10946655,-0.087333284,-0.24879202,-0.31285912,-0.4034869,0.23405407,-0.15783378,0.35856104,0.106734574,-0.15534152,0.5763874,0.09514621,1.1199358,0.11774806,-0.28338832,0.22094816,0.3625235,0.10791221,-0.01510454,-0.35053635,0.84885806,0.43302196,0.0008812137,-0.13719055,-0.2723303,-0.04758152,0.19360967,-0.1941059,-0.14532101,-0.0022034608,-0.6778131,-0.2285736,0.30944502,0.10834257,0.24419561,-0.06650615,0.0546651,0.21525146,-0.016845496,0.19259323,-0.3285059,-0.16662419,0.26979047,0.36020043,-0.013948422,0.12344775,-0.46882528,0.37668163,-0.47501153,-0.008911636,-0.14080645,0.18633534,-0.18207017,-0.29421747,0.19632556,0.03233317,0.39956617,-0.19957656,-0.40884602,-0.3501436,0.48699084,-0.02354655,0.09586364,0.36781007,-0.24357477,0.08112793,0.013425876,0.32602856,0.9779189,-0.20533818,-0.0526445,0.36759293,-0.17711496,-0.5990652,0.35891756,-0.26495022,0.28383058,0.031533964,-0.14244157,-0.4018342,0.35230866,0.2105911,0.053882256,0.069433525,-0.44389248,-0.13397793,0.16256408,-0.26339495,-0.1852905,-0.2557852,0.05689735,0.6522943,-0.28897193,-0.37047315,0.12174042,0.3276794,-0.16948947,-0.43754363,0.0785079,-0.39668524,0.16212423,-0.0056059957,-0.3065818,-0.17996322,0.004511304,-0.3077485,0.08097823,0.19494262,-0.2781026,0.10876496,-0.30277494,-0.07104777,0.998006,-0.12922063,0.31413177,-0.5032442,-0.5510154,-0.83105356,-0.43637025,0.2952127,0.10998124,-0.11698732,-0.56155264,0.020200029,-0.09638355,-0.24587333,0.029488826,-0.3255632,0.49332216,0.09436758,0.24978544,-0.24671172,-0.76368576,0.009258365,0.12341892,-0.33701584,-0.5674976,0.5548901,0.123192534,0.87976295,0.07542935,0.09292491,0.28010866,-0.4837958,-0.00042272732,-0.2959114,-0.07568779,-0.63400316,0.094098695 +377,0.30533296,-0.1557929,-0.45070538,-0.14327288,0.026436014,0.17172475,-0.12622155,0.59860355,0.2076995,-0.4987909,-0.0007022659,-0.1831708,0.046967927,0.14595346,-0.18490297,-0.36560422,0.023356104,0.076920815,-0.20749687,0.35778967,-0.47839496,0.32301226,0.038577553,0.13743207,0.1365065,0.30769035,0.16408795,-0.20644644,-0.10054768,-0.11792863,-0.33979067,0.28875294,-0.37969428,0.07168415,-0.20157911,-0.20702095,0.14456293,-0.38528213,-0.4219096,-0.6554678,0.3808438,-0.75352466,0.4437741,0.07682007,-0.1596681,0.2252043,0.15739581,0.2670323,-0.18871447,0.022621969,0.24172309,-0.063716374,0.16432239,-0.16103655,-0.31740245,-0.392744,-0.37750638,0.040099356,-0.46526152,-0.21753529,-0.21292563,0.04060425,-0.31410822,-0.12686591,-0.22881489,0.29562318,-0.36541858,-0.1484953,0.17471059,-0.24093147,0.24261841,-0.5602502,-0.21320948,-0.028090527,0.19439448,-0.2929901,-0.15962233,0.22743554,0.19252181,0.471024,-0.23399611,-0.026536204,-0.13367341,-0.23242368,0.07873833,0.5570732,-0.23120798,-0.5863339,-0.010254057,0.0630858,0.2049256,0.17946178,0.06452129,-0.23084898,-0.1514408,-0.040392954,-0.33709174,0.3941611,0.6077772,-0.39613244,-0.109161824,0.29569873,0.46950716,0.257444,-0.1299276,0.03670273,-0.0672239,-0.57865214,-0.14097403,0.046825014,-0.2541858,0.62141794,-0.09485171,0.21535166,0.587941,-0.24309942,0.1533049,0.13868889,0.075991295,-0.06700942,-0.19475564,-0.25768584,0.058941957,-0.45797125,0.09087249,-0.10320867,0.76159453,0.14352895,-0.6225308,0.4078199,-0.36387083,0.109712124,-0.052882608,0.49592984,0.52639335,0.18545265,0.18084106,0.7168633,-0.62704563,0.12716162,-0.16577269,-0.34941146,0.12134813,-0.057358123,-0.023017133,-0.39254877,0.07587024,0.14929156,-0.06806908,0.10539199,0.28230342,-0.49445316,0.02463617,0.10609953,0.8903919,-0.25265136,-0.061192267,0.54811573,0.8397688,0.8259202,0.012694941,1.0125105,0.04601551,-0.3075151,0.053758804,-0.14730765,-0.76278913,0.24362427,0.2925935,-0.11263145,0.17369388,0.30270287,0.12984471,0.17025325,-0.29133466,-0.06391523,-0.18543476,0.21021064,0.17145385,0.009894192,-0.30190113,-0.2539841,-0.08822908,0.0727902,-0.008922827,0.18030605,-0.16499853,0.2252745,0.08775996,1.6135821,-0.031118723,0.11215185,0.12236268,0.42545998,0.27551612,-0.16594853,-0.08673313,0.43537548,0.45773628,0.005313532,-0.5351125,-0.07668374,-0.179564,-0.37057585,-0.08313959,-0.26209837,-0.08300929,0.011567845,-0.5180397,-0.08143958,-0.10178733,-0.27219915,0.48448464,-3.046693,-0.00020488998,0.0009623468,0.27928355,-0.31646767,-0.33299333,-0.13546751,-0.46432915,0.3241575,0.4124557,0.36553103,-0.650217,0.12191723,0.33299434,-0.26587746,-0.18296097,-0.62087756,-0.098828636,-0.06109423,0.30519918,0.120368384,0.00095648767,0.053301882,0.2285754,0.332145,-0.00015509129,0.0774678,0.025211167,0.4131465,0.2598568,0.38637343,0.0017443975,0.47908542,-0.18224488,-0.05924257,0.34003645,-0.3783055,0.18840833,-0.029307198,0.1729844,0.33767274,-0.26088235,-0.6806454,-0.48178998,-0.24484423,1.195819,-0.23786242,-0.3791579,0.2876152,-0.29329816,-0.31812173,-0.22355217,0.46833393,-0.12755887,-0.15591525,-0.73970824,0.0608697,-0.11701135,0.16964646,0.004339232,-0.043802906,-0.34375465,0.6227352,-0.00036295652,0.4362251,0.3889273,0.10998125,-0.17933348,-0.31037274,-0.05639263,0.8637066,0.37416857,0.11172963,-0.16272688,-0.08449728,-0.2983642,0.06241963,0.13085261,0.52177304,0.7466019,-0.008582128,0.05900377,0.25221127,0.106939115,-0.005878357,-0.08377197,-0.3022442,-0.0371245,-0.036040016,0.6093375,0.39002064,-0.14360599,0.38698027,-0.07923588,0.09776608,-0.305067,-0.3983929,0.28594717,0.64694905,-0.081129625,-0.1916019,0.41453227,0.44840494,-0.17705555,0.3886627,-0.5828855,-0.30555293,0.581516,-0.2554521,-0.35211104,0.3889032,-0.39333174,0.12104332,-0.74470216,0.20545253,-0.15377621,-0.46295077,-0.5315587,-0.17476243,-3.4071834,0.08662378,-0.13173482,-0.21794952,-0.098906115,-0.07615617,0.17457822,-0.5157689,-0.46905518,0.18880787,0.05401493,0.5530759,-0.018328506,0.008104726,-0.25828722,-0.28068334,-0.21976201,0.05718473,0.010581698,0.23654552,0.026852647,-0.3655501,-0.17012046,-0.21640588,-0.25516984,0.105470754,-0.44452965,-0.45455799,-0.10214718,-0.41314203,-0.27007198,0.6899281,-0.55707335,-0.08916328,-0.08131564,0.03843004,-0.13477524,0.27267888,0.23470858,0.08699468,-0.14298029,-0.049702052,0.087871484,-0.39277717,0.37642893,0.10043288,0.2786003,0.37454802,0.017539905,-0.06690764,0.402208,0.56270826,-0.0009917389,0.7931608,0.38130972,-0.15972723,0.317702,-0.31199995,-0.23696078,-0.39106795,-0.30159843,0.094526425,-0.4277326,-0.48108438,-0.19982852,-0.32062256,-0.641745,0.37806913,-0.08309554,0.21545258,0.025328994,0.41663283,0.41154426,-0.0264195,0.025178226,0.020570543,-0.0887426,-0.49107042,-0.4246675,-0.6539845,-0.30798087,0.19890782,0.91354907,-0.26475412,0.0042643705,-0.056204088,-0.19091728,-0.027646145,-0.04432801,0.07127709,0.14284308,0.35026667,-0.18067463,-0.64999163,0.4254928,-0.09461593,-0.3329741,-0.5529054,-0.1466958,0.55327696,-0.6092419,0.4220236,0.3508574,0.052242246,0.018616097,-0.45297417,-0.25355422,0.062187087,-0.3115793,0.32255235,0.107999116,-0.6007017,0.46902734,0.27871883,-0.27483788,-0.5154288,0.5648018,0.08551501,-0.2835341,-0.10295608,0.3193367,-0.007892545,0.056306206,-0.03294208,0.08399018,-0.48925695,0.18049082,0.43084806,-0.014914504,0.23565097,-0.1565154,-0.12927239,-0.637022,-0.014777863,-0.45602772,-0.2058796,0.21987718,0.09309204,0.2479584,0.16004784,0.0020145932,0.39272574,-0.4524497,0.18126695,-0.002542615,-0.084759474,0.45816612,0.31208494,0.4491429,-0.35245517,0.53133476,-0.058219545,-0.0712202,0.028401764,0.10438654,0.5266512,0.12363358,0.14614318,-0.05566888,-0.26669264,0.44208857,0.9547471,0.29192504,0.3643198,-0.07193861,-0.030645275,0.18479557,0.16097307,-0.0021189451,0.16496822,-0.46745518,-0.30232856,-0.15504879,0.1597632,0.41385904,0.07844747,0.3277014,-0.07469229,-0.28215143,0.12575656,0.2984465,0.08717772,-0.8998224,0.32733476,0.040333245,0.6975955,0.3737482,0.063598685,0.07846693,0.4645527,-0.19224565,0.17926727,0.25733286,-0.015149661,-0.45357457,0.3456398,-0.442328,0.4700638,-0.10330978,0.07327242,-0.014150337,-0.14007764,0.43018335,0.874807,-0.23799919,-0.009680662,0.1534685,-0.19228597,0.088577755,-0.4236193,-0.036662914,-0.5929243,-0.2720832,0.5172622,0.3419456,0.26332334,-0.11527563,-0.06583352,0.024363752,-0.08566954,0.06553067,-0.025103698,0.14281888,-0.10239677,-0.68666,-0.18755566,0.4610258,0.047325276,0.10064735,-0.086857796,-0.18470278,0.4006761,-0.1561608,-0.0037884174,-0.08691091,-0.4876327,0.015011223,-0.24850562,-0.43352416,0.38482884,-0.13583949,0.37660998,0.2533293,0.06730484,-0.16161658,0.29368046,0.20790315,0.7514372,-0.31096172,-0.18800099,-0.61106366,0.17357571,0.19213396,-0.08845285,-0.20144528,-0.29866472,0.072962776,-0.58872056,0.32105434,-0.057073448,0.05459921,0.05225769,-0.23093094,-0.0048825084,0.5885794,-0.020742588,-0.08645283,-0.08317283,-0.100758746,-0.14711457,-0.08610104,-0.23573735,0.21178001,0.16492996,-0.109227546,-0.15302554,-0.18668485,-0.2476826,0.12305519,0.05235732,0.3119798,0.24896751,0.16533802,-0.21653162,-0.06461155,0.012383123,0.34325856,0.11037354,-0.11819782,-0.31103337,-0.49809152,-0.24405281,0.2463975,-0.10996482,0.24620469,0.17886125,-0.18199791,0.7572294,-0.087789744,1.007559,0.022948762,-0.3112742,-0.0717827,0.58541584,0.015114715,-0.00040506918,-0.3755657,0.8724431,0.54972064,0.095295526,-0.058859065,-0.2010684,0.07255257,0.11703871,-0.12028349,-0.02020987,0.030763436,-0.50315076,-0.18937905,0.3196657,0.28337386,0.20931625,-0.06661579,-0.036983658,0.27752116,0.08677114,0.3170043,-0.4417904,-0.14682104,0.22715853,0.19160934,0.0640594,0.028159397,-0.41232854,0.44558823,-0.4752538,-0.08645323,-0.35374793,0.14589112,-0.15159303,-0.24760336,0.22300452,-0.17160273,0.42098555,-0.42121708,-0.3195386,-0.25711903,0.35556224,-0.03839528,0.2390385,0.3492549,-0.14617442,0.033702232,0.02140812,0.5732368,0.94989026,-0.13537152,-0.029812733,0.68857294,-0.2549566,-0.5661909,0.15010783,-0.35591316,0.17506583,-0.013930885,-0.08627291,-0.30162752,0.27372715,0.27607438,0.083492674,-0.02745952,-0.46329403,-0.28085086,0.31809404,-0.21561055,-0.3252183,-0.31375843,0.15696795,0.6358041,-0.3672064,-0.23864378,0.044271518,0.34673056,-0.27035624,-0.5637377,0.021663785,-0.26073655,0.4568182,0.19011268,-0.12813352,-0.07009271,0.01781358,-0.36121893,0.2540732,0.16108726,-0.3671921,0.04708788,-0.22169575,-0.027255036,0.823443,-0.08814091,0.0036639848,-0.49134776,-0.3551273,-0.72353005,-0.29634705,0.54182756,0.03266538,0.11369376,-0.50170475,0.004270758,-0.05276685,-0.048423495,-0.15216784,-0.24094613,0.5732204,0.11044283,0.3876224,-0.15733983,-0.69793725,-0.036491103,-0.018670047,-0.2976049,-0.5357084,0.5511742,-0.02871995,0.7084685,0.11949184,-0.017948382,0.37776554,-0.40112096,0.083816625,-0.26708603,-0.24737126,-0.70653665,0.10413548 +378,0.484175,-0.25802,-0.54303086,-0.1426332,-0.39823565,0.0011411948,-0.15601642,0.20226325,0.31330386,-0.5193478,-0.06991916,-0.13500224,-0.07173364,0.03666347,-0.123782344,-0.38420925,-0.14437328,0.2014669,-0.7198634,0.9246759,-0.27316958,0.25255254,0.1410245,0.36128494,-0.040648956,0.2258705,0.08328087,-0.0817889,-0.08176935,-0.27064434,-0.025477078,-0.023140226,-0.88865995,0.3846166,-0.1667534,-0.3109992,-0.14712766,-0.28726798,-0.25928405,-0.850235,0.32356873,-0.9103154,0.6293095,0.026719894,-0.36098072,0.1386012,0.17600273,0.1917318,-0.1918621,-0.023579895,0.254901,-0.13136858,-0.32080764,-0.27521807,0.007064547,-0.36869168,-0.5494779,0.026071966,-0.32881704,0.10008835,-0.24548905,0.27650222,-0.21737976,-0.084719755,-0.28185806,0.6303102,-0.34648708,0.24383654,0.15853143,-0.17715494,0.243189,-0.6976784,-0.08005613,-0.22854242,0.13196845,-0.15470697,-0.29841056,0.20342655,0.15596437,0.6447425,0.04908436,-0.23146746,-0.20301327,0.14914884,0.041085254,0.21413878,-0.23073065,-0.36890438,-0.20982039,-0.1487424,0.21977374,0.208496,0.15191129,-0.37614974,0.18454275,-0.19288349,-0.11122338,0.38708162,0.5481162,-0.3724377,-0.22478925,0.32383028,0.6016892,0.15544698,-0.077932715,-0.085028365,-0.13264118,-0.5636429,-0.22685516,0.21073547,-0.2388719,0.51568574,-0.16933599,-0.042680003,0.2637646,-0.16885877,-0.201273,0.37313846,0.071031354,0.060163092,-0.38193908,-0.33961126,0.3758095,-0.5530982,-0.04811556,-0.40468398,0.40820327,-0.01412942,-0.68021697,0.2873227,-0.5388838,0.19158776,0.060492076,0.52728593,0.8788024,0.7231421,0.15862527,0.9250728,-0.55234534,0.0019386688,-0.0596809,-0.18131073,0.18449725,-0.28559768,0.13693997,-0.42926425,0.012110518,-0.1995139,-0.20793544,-0.21279022,0.34222513,-0.6435247,-0.3138928,0.23691122,0.6556714,-0.15069151,-0.03173423,0.89353997,1.1029478,1.1457062,0.1791183,1.401556,0.25553098,-0.15002389,0.07448893,-0.16591205,-0.8706466,0.1669178,0.25515184,0.3179787,0.11484272,0.21519129,0.0039534057,0.57001215,-0.5408513,-0.05790478,-0.15450358,0.5703291,-0.035884228,-0.011829087,-0.19800104,-0.15199922,0.12747951,0.14138515,0.15264502,0.10421128,-0.41807103,0.05672843,0.25505847,1.2188696,-0.35638338,0.12351223,0.22019693,0.24503648,0.27592978,-0.12847014,0.036537316,0.24302857,0.17387404,0.0770237,-0.4645863,-0.0645598,-0.27541474,-0.45323303,-0.15603785,-0.101027966,-0.21262553,-0.16497706,-0.38777635,-0.37511498,-0.0186371,-0.35866648,0.48364726,-2.4470916,0.0060069305,-0.2735205,0.3316314,-0.34477064,-0.34061676,-0.07427334,-0.46071666,0.45021942,0.33170286,0.47050935,-0.67376155,0.32303756,0.36690086,-0.5640953,0.007974305,-0.65926117,-0.19353011,-0.06673993,0.40728283,0.22630608,-0.33180425,-0.10556132,0.049213566,0.38847998,0.122550555,0.13336499,0.42714685,0.37330753,-0.07493918,0.4632364,0.2009995,0.61088794,-0.4363067,-0.29957512,0.35240462,-0.48961663,0.2504545,-0.090235256,0.083131954,0.5135659,-0.520652,-0.7506456,-0.93943864,-0.23826209,1.2091463,-0.053782243,-0.625663,0.024819639,-0.42439845,-0.27382162,0.048617102,0.5663999,-0.07103238,0.117698215,-0.8521351,-0.05356484,-0.1484041,0.4889718,0.018045949,0.13469587,-0.6282163,0.93305844,-0.075388364,0.51576024,0.50503355,0.2568415,-0.40523106,-0.39819345,0.0871596,1.0261403,0.44572824,0.059194975,-0.123146884,-0.22142029,-0.36681613,-0.12401498,0.10637567,0.6588462,0.4258561,-0.1675427,0.03765976,0.3484006,-0.10846811,0.0030385256,-0.1657779,-0.34799606,-0.31993183,-0.05511206,0.6224187,0.7411563,-0.04048052,0.27227524,-0.06909605,0.24638668,-0.16183329,-0.68046916,0.61877793,0.8819017,-0.21364081,-0.33238325,0.7148362,0.38617298,-0.34326547,0.55141795,-0.58605,-0.51603925,0.09042396,0.037678514,-0.47330925,0.07362775,-0.43032023,0.19237961,-0.65111953,0.46613187,-0.43238586,-0.43037748,-0.65200377,-0.28729132,-2.7053905,0.3419141,-0.1610961,0.15627456,-0.16694786,-0.098753974,0.2665992,-0.41065758,-0.7770953,0.20789954,0.0513305,0.55134374,-0.12947348,0.038098138,-0.1726128,-0.3828214,-0.29672167,0.3136904,0.07144543,0.2065963,0.00515581,-0.30322388,-0.06735667,0.118233725,-0.20905626,-0.1100796,-0.6659512,-0.55296975,-0.12900753,-0.5848443,-0.31320977,0.68027353,-0.29789498,0.0022236246,-0.3979921,0.0006583035,0.074441925,0.2407086,-0.02132726,0.31529555,0.10097617,-0.11378608,-0.20072703,-0.28864786,0.13948062,0.070714846,0.023412893,0.35757175,-0.29781437,0.22317609,0.24903545,0.81831235,-0.124623396,0.9984857,0.5180536,-0.17273673,0.36389896,-0.10236149,-0.252012,-0.56937426,-0.15330826,-0.0011152221,-0.49812266,-0.24817026,0.21727583,-0.29147002,-0.8236772,0.5845632,-0.08376957,0.04564156,0.12661757,0.19000861,0.5025632,-0.2367632,-0.057889488,-0.20869216,-0.23944949,-0.3827823,-0.41865116,-0.49538592,-0.28850874,-0.08010453,1.3096688,-0.1698725,0.05353244,0.36463323,-0.07936301,0.04662568,0.19333962,-0.11875304,0.041969005,0.57952976,0.14354849,-0.60297775,0.26163292,0.11937797,-0.04711512,-0.53407997,0.5218077,0.72962207,-0.58600754,0.7324275,0.33662292,0.16097721,-0.3016109,-0.64585173,-0.18674847,0.08525412,-0.3460137,0.36357546,0.2813457,-0.8208478,0.3420863,0.30641714,-0.061356127,-0.9150662,0.4244229,-0.089864604,-0.29163155,-0.2144343,0.5539908,-0.09240927,0.17222592,-0.22649133,0.26039305,-0.49432787,0.27209178,0.14411378,-0.11963358,0.14389372,-0.26429206,-0.2775698,-0.7623335,-0.05838127,-0.6296402,-0.377462,0.3269669,-0.09310372,-0.09256896,0.51322234,0.37086672,0.45981672,-0.045116026,0.10921175,-0.19281052,-0.30955014,0.4577933,0.4991699,0.41645887,-0.5104893,0.6127423,0.03302953,-0.1452495,-0.3063685,0.017197618,0.36763185,-0.05239892,0.4052773,0.053891234,-0.009868396,0.2103549,0.77293235,0.08506274,0.32744756,-0.0028657967,-0.09957613,0.18578295,0.008235639,0.27530354,-0.19583546,-0.6978971,0.07852707,-0.12678525,0.24964544,0.28839263,0.05562825,0.2798859,-0.0021404538,-0.25882062,-0.16829102,0.09769909,-0.12548839,-1.3667657,0.27297103,0.06091092,0.86545384,0.79258364,-0.046907116,-0.053773455,0.6622805,-0.16741051,0.04917856,0.35277894,-0.13908936,-0.13666907,0.4797427,-0.6976364,0.39321136,-0.06033177,0.08972835,-0.1398109,0.11707436,0.2232791,0.9853249,-0.19804104,0.039364655,-0.31904426,-0.12707621,0.19548596,-0.30644995,0.18935998,-0.3967875,-0.4855378,0.7736811,0.4097367,0.6332798,-0.2723218,0.0038921577,-0.030865133,-0.20737076,0.27946797,-0.043650843,0.00073203444,0.11519628,-0.480599,0.11374504,0.5148331,-0.07899733,0.09505505,0.1310263,-0.2775605,0.1547921,-0.106556654,-0.060929086,-0.103183195,-0.78713405,-0.14008398,-0.2872332,-0.061157208,0.44324556,-0.28916717,0.08365012,0.1400259,0.09863331,-0.2617975,0.24605879,0.09225713,0.5611873,0.16752562,0.0065537817,-0.2682779,0.29034588,0.01826428,-0.21504827,0.15847445,-0.15815724,0.2592096,-0.81440365,0.3521246,0.05691546,-0.5201172,0.21369468,-0.04758527,0.06250282,0.5923974,-0.24941644,-0.32698044,0.17211542,-0.15498288,-0.09519189,-0.113331296,-0.048922118,0.2266346,0.036565997,0.11928101,-0.0860814,-0.0829036,-0.23651543,0.33249065,0.20562895,0.34626967,0.43826166,0.13156562,-0.5765656,0.21911204,0.17540477,0.6705771,-0.14348319,-0.09200498,-0.04515359,-0.5204259,-0.48153216,0.38660124,0.069182016,0.26114938,4.780718e-05,-0.18671687,0.8152914,0.20651875,1.1808488,-0.010527859,-0.14365561,-0.06742164,0.53123605,-0.014682548,-0.07615525,-0.44766346,0.9978164,0.62818575,-0.065664746,0.012328567,-0.23583767,0.00383475,0.20606533,-0.17154181,0.15191317,0.0047458643,-0.8009109,-0.24348558,0.038657743,0.38785082,-0.05252245,-0.109043814,0.027549535,0.26944622,0.026428375,0.2608121,-0.5548353,-0.04308009,0.4192007,0.37275606,-0.0151941795,0.21903324,-0.33339268,0.19739236,-0.72259384,0.19466667,-0.22310236,-0.03482182,-0.15965056,-0.18150248,0.14465669,-0.019394722,0.28484297,-0.48773432,-0.41540188,-0.25888047,0.5087901,0.2407411,0.09805415,0.7867956,-0.18780129,0.039754722,0.20627277,0.5334235,0.9907322,-0.10957432,0.09530316,0.14294545,-0.373933,-0.5825477,0.34871587,-0.2644639,0.010664889,0.0679624,-0.26732108,-0.32441136,0.21702719,0.11006122,-0.031477835,0.16291536,-0.88769025,-0.07874996,0.2857873,-0.18195139,-0.029459102,-0.062436618,0.22152767,0.64317566,-0.08504139,-0.27147728,0.008082156,0.15367231,-0.37018976,-0.7506615,-0.044564385,-0.671069,0.3821972,0.12914579,-0.4428704,-0.15927413,0.027674155,-0.7765187,-0.014089035,0.03773733,-0.30368942,0.021649582,-0.33544332,0.02438957,0.7417855,0.03125076,0.26009187,-0.27641186,-0.559606,-0.8659479,-0.09309477,0.11567499,0.15385008,-0.024970492,-0.55430764,-0.18379939,-0.3440869,0.061141938,0.15949944,-0.33436617,0.46456507,0.16662331,0.5217727,-0.1434997,-0.9630392,0.18943965,0.053875785,0.06399751,-0.35580257,0.35442993,0.04694416,0.62457025,0.047359638,-0.045318313,0.22598353,-0.86188775,0.19372202,-0.14732072,-0.103760004,-0.64959675,0.034931343 +379,0.3878598,-0.23697208,-0.7560808,-0.22240216,-0.3888969,-0.041478023,-0.39649865,0.3147587,0.12915562,-0.3679042,-0.3982294,-0.10265458,0.2391973,0.4617985,-0.11690907,-0.7191696,0.2119775,0.4044766,-1.0130814,0.67787486,-0.7164018,0.3682739,0.23975077,0.38144988,0.060958266,0.27760088,0.46618843,-0.106236786,-0.07822712,-0.13396704,-0.1174161,0.11176183,-0.8013393,0.23481369,-0.20662369,-0.5727446,0.036705125,-0.5365686,0.08941009,-0.8696434,0.16510516,-1.0112517,0.6080397,0.04863042,-0.20527703,-0.32657358,0.35840005,0.4526839,-0.56146604,0.18388508,0.17714691,-0.39604786,-0.46962067,-0.31093925,0.011951962,-0.44588366,-0.6373972,0.07955952,-0.7416942,-0.30538443,-0.28921366,0.09135389,-0.26700214,0.1533949,0.06577966,0.24921495,-0.4928405,-0.15302792,0.119585685,-0.25868514,0.13835673,-0.545402,-0.0062796203,-0.3591073,0.71087563,-0.2083476,-0.44008273,0.6349865,0.48746058,0.48244238,0.29250157,-0.41825324,-0.13830568,-0.18957953,0.1748478,0.47785404,0.003033611,-0.46205598,-0.41193792,-0.16536579,0.42263296,0.43674266,0.117443606,-0.32271266,-0.067445174,-0.3245845,-0.21165037,0.40575027,0.57193494,-0.5126629,-0.27226242,0.3699174,0.5762089,0.2967557,-0.22206813,0.05791862,0.03374187,-0.7583093,-0.28744003,0.084040835,-0.10663957,0.62169456,-0.27476108,0.026576502,1.0112557,-0.16035928,-0.17915148,0.012001363,0.030139424,-0.3469227,-0.15010905,-0.26891357,0.32121992,-0.58117497,-0.060180567,-0.3772443,0.8085615,0.31714466,-0.7234091,0.43994868,-0.68886054,0.13736509,-0.16887902,0.66802776,0.8203409,0.52060884,0.51772404,0.8338356,-0.23253697,0.2004991,0.028707374,-0.43890473,0.112905286,-0.38202572,0.02848553,-0.5291342,0.25615746,-0.18807106,0.15472783,0.22839163,0.76960677,-0.44009352,-0.18244427,0.21214153,0.46973744,-0.37789962,-0.18336977,0.80159205,1.0673026,1.1541486,0.08688206,1.5341516,0.3978593,-0.23133044,-0.05467534,0.15537754,-0.8826923,0.18520314,0.38895255,-0.10709162,0.38459274,-0.0015023933,0.115690164,0.2685626,-0.49336156,0.10160358,0.010872559,0.42544606,-0.10604474,-0.1568017,-0.42525432,-0.23806962,0.24353462,-0.07197296,0.031552155,0.39055946,-0.062013734,0.5175311,-0.116037086,1.1907586,0.005141486,0.04081013,-0.09491174,0.6445801,0.37492812,-0.00080374425,-0.13026847,0.46529582,0.32622087,-0.05447607,-0.74887675,-0.0051933066,-0.4430499,-0.41470078,-0.14636606,-0.44126692,-0.1312051,0.0670781,-0.30849344,-0.25750196,0.14032349,-0.3349616,0.6032591,-2.307587,-0.38431007,-0.17581585,0.35357133,-0.16437201,-0.15053768,-0.4296654,-0.53593946,0.35888326,0.20543097,0.6395131,-0.66774374,0.5197883,0.4877966,-0.54473186,-0.3425563,-0.7408809,0.033061158,-0.178637,0.30071506,-0.03208595,-0.46280354,-0.15503551,0.051672403,0.86080205,-0.057004567,0.2110783,0.5860147,0.32397398,0.22671534,0.66590613,0.007502675,0.80521685,-0.5958731,-0.32381713,0.23275088,-0.39026144,0.4110491,-0.1954093,0.06855827,0.67267424,-0.77429765,-1.1769868,-0.69597465,-0.32155097,0.929884,-0.68561304,-0.4895109,0.20704287,0.12373755,0.091174535,0.22604136,0.6354193,-0.03720957,0.3081261,-0.62327117,0.024401354,0.14809927,0.3023369,0.14464271,0.06995103,-0.3128085,0.8238472,-0.1461059,0.67331225,0.30506343,0.15608256,-0.3981263,-0.51516825,0.2781181,1.0981001,0.25749025,0.06356366,-0.24912702,-0.4440067,-0.5545988,-0.46126565,0.027611287,0.4565837,0.830075,-0.1292217,0.20332886,0.23766023,0.015912237,0.058516968,-0.25202787,-0.34785405,0.046488818,0.10208678,0.57230896,0.78923357,-0.13083555,0.43975222,-0.12695977,0.50555086,-0.06774091,-0.64300126,0.79048383,0.7846073,-0.23796977,0.021554552,0.5542316,0.4892898,-0.5386024,0.77342284,-0.71676546,-0.6248073,0.720909,0.08810596,-0.31674093,0.24160375,-0.32643566,0.3219478,-0.85947853,0.3758166,-0.42898875,-0.12588225,-0.30974507,-0.16333094,-3.313584,0.48561695,-0.02240984,0.16127427,-0.31060046,0.004662655,0.1884851,-0.6997328,-0.7157975,0.18804522,0.15872315,0.7201839,-0.32453245,0.100043915,-0.31196406,-0.4815688,-0.07485613,0.34587488,-0.034996785,0.32499266,-0.15060163,-0.49152032,0.17041768,-0.13240567,-0.4920947,-0.0059898277,-0.79558414,-0.5314674,-0.16633761,-0.80947137,-0.3030462,0.6364286,-0.60088557,-0.008577073,-0.114039965,0.06744623,-0.23453626,0.06607444,0.038642243,0.3024256,0.06291758,-0.03322592,0.013871464,-0.24581103,0.3957486,-0.08215627,0.18746439,-0.11924615,-0.11199509,0.07602267,0.56642395,0.6695661,-0.29311648,1.1772107,0.3277176,-0.07709776,0.19728754,-0.3077013,-0.3011716,-0.64594454,-0.398198,-0.31283703,-0.5043005,-0.6018967,0.15412375,-0.1414159,-0.93644214,0.8381625,0.11416393,0.15396954,0.051377904,0.41529274,0.17042428,-0.21642455,0.027460061,-0.20542307,-0.16092165,-0.5838212,-0.29750234,-0.7789182,-0.46145403,0.038399242,0.91005534,-0.46790618,-0.12791617,0.023341803,-0.20219189,0.06591098,0.17798829,0.045477238,0.30516872,0.5195302,0.015380209,-0.8346433,0.41780195,-0.13815926,-0.11432552,-0.36184165,0.047591913,0.63803095,-0.94126207,0.6638978,0.5313566,0.014760955,0.10953698,-0.57215923,-0.23369789,0.0663753,-0.17142586,0.4770919,0.04114318,-0.96849597,0.623445,0.29294503,-0.64093703,-0.88430953,0.4589427,-0.11085358,-0.021898003,-0.030727327,0.4689206,0.12162048,-0.15824214,-0.55769056,0.021911843,-0.5619657,0.27156648,0.09178218,-0.03059242,0.4903941,-0.21899416,-0.46162987,-0.75871813,-0.058545467,-0.5364468,-0.19312996,0.2584864,-0.08968067,-0.151823,0.28501952,0.16583756,0.26776707,-0.48628035,0.19093294,-0.035438005,-0.3638017,0.27851832,0.4764817,0.39481962,-0.3885082,0.63568,0.11654013,-0.048617743,0.0063632294,-0.1557279,0.32071376,0.19917502,0.5027894,0.1357551,-0.1440602,0.17028981,0.75783044,0.21640204,0.4282618,0.3261825,-0.11264808,0.30422217,0.22793283,0.3548835,0.103186674,-0.4059694,0.060194492,-0.075673975,0.03854857,0.5938101,0.32816565,0.35584566,0.1697817,-0.18977575,-0.10336837,0.23819251,-0.036155127,-1.197276,0.5458799,0.25342077,0.62231314,0.5655725,0.12553807,-0.08527991,0.5728893,-0.47002304,0.013086501,0.30195987,-0.14345303,-0.37348825,0.7504946,-0.6217457,0.42297238,-0.3317973,0.053184744,0.23578629,0.2041515,0.40033987,1.0930908,-0.17181139,0.17934419,0.017650925,-0.043695446,0.18944122,-0.42278755,-0.190333,-0.30024338,-0.3254749,1.0512462,0.22998138,0.3988918,-0.24687782,0.001024297,0.046844736,-0.2848004,0.24197723,-0.043181613,0.16620807,0.13562304,-0.6356734,0.05527922,0.8440361,0.2389537,0.15998678,-0.008674234,-0.37020305,0.3845313,-0.321673,0.07491455,-0.18255988,-0.8041197,-0.054277387,-0.3600507,-0.57234246,0.48143092,-0.19055535,0.13743241,0.26127127,-0.037777845,-0.17907481,0.6221357,0.0793487,0.7232825,0.12126567,-0.33326447,-0.090189844,0.29326853,0.38748854,-0.4147162,0.18606086,-0.50596,0.03679975,-0.5209843,0.64773613,-0.12730622,-0.54069287,0.103620656,-0.08927498,-0.18614693,0.55171543,-0.10301059,-0.07977751,0.10971076,-0.094769955,-0.30353963,-0.2055915,-0.48942044,0.12749292,0.177654,0.08581226,-0.28981057,-0.11415741,0.026323937,0.41449106,-0.15931544,0.44016704,0.22442926,0.19317326,-0.19701004,0.26509717,0.13341357,0.608646,0.09575055,-0.14318845,-0.24784812,-0.26801765,-0.29368594,-0.03010726,-0.1032793,0.18239866,0.2308528,-0.15917255,0.83065015,-0.00073792716,1.2838949,0.04222499,-0.40732047,0.19775625,0.5776867,0.042930815,-0.16074233,-0.3108826,1.0870013,0.5020037,-0.31746206,-0.05852735,-0.5609688,-0.22499298,0.29295292,-0.35672522,-0.36976585,-0.05593356,-0.6559209,-0.55291575,0.26790398,0.32310084,0.26110613,-0.2549239,0.31532386,0.16768785,0.2699117,0.18324007,-0.8043661,-0.37787217,0.31116712,0.41960728,-0.15103608,0.1421103,-0.2865942,0.49099767,-0.9082687,0.18520388,-0.6088386,0.09219191,-0.28199747,-0.497546,0.109892584,0.043662723,0.29890835,-0.24571995,-0.31718618,-0.06317613,0.45424226,0.08209156,0.38294137,0.7755565,-0.27733448,-0.0956759,0.06440015,0.5467048,1.1993788,-0.43205306,-0.08840936,0.330214,-0.27223998,-0.6186645,0.44033882,-0.5879498,-0.05632758,-0.18915725,-0.5640276,-0.6535911,0.01357117,0.024995087,-0.0015966567,0.19431292,-0.81777954,0.027028143,0.2905144,-0.17244568,-0.27669916,-0.22640872,0.4250023,0.8754952,-0.27863026,-0.30845764,0.15339956,0.201313,-0.28261366,-0.69959265,-0.09821772,-0.2855687,0.5260039,0.18979074,-0.22999105,0.10264215,0.25695845,-0.62545794,0.12895916,0.2143827,-0.31398842,0.24400349,-0.3673955,0.11325943,0.9943966,-0.3012052,0.1158777,-0.3299035,-0.5868648,-0.9663875,-0.18672553,0.39124486,0.13145883,-0.023823934,-0.46854445,0.10479589,-0.113441296,-0.2973209,0.16853276,-0.50014514,0.42481068,0.047342572,0.51738095,-0.13960798,-1.1337304,0.25282988,0.2421164,-0.16592802,-0.81183165,0.45615652,-0.2708311,1.0946188,0.0674851,-0.22119536,0.18209243,-0.61174846,0.22163433,-0.4451151,0.28583968,-0.52959704,0.07400022 +380,0.50782305,-0.026919255,-0.86487496,-0.09133184,-0.18963869,0.1949787,-0.4193539,0.2820279,0.36991054,-0.42836618,-0.10277653,0.00055760995,-0.13860354,0.09575633,-0.13921218,-0.4859634,-0.06814637,0.22646545,-0.5007494,0.49481848,-0.32876113,0.44398436,-0.13262963,0.2738611,0.10997901,0.15854628,-0.0634794,0.024084965,-0.1838253,-0.22164014,0.409003,0.2686728,-0.808205,0.24150479,-0.24859156,-0.45939058,-0.22856848,-0.38707623,-0.37662676,-0.78563136,0.27347323,-0.7986174,0.7203619,-0.08290107,-0.1785119,0.24810122,0.15331256,0.18658125,0.03453679,-0.015371391,0.26362208,-0.30244637,-0.3135981,-0.22124493,-0.15522228,-0.42319033,-0.5889134,0.041784156,-0.58705074,0.15933785,-0.27062395,0.22248344,-0.41689306,0.032266345,-0.28794196,0.565114,-0.36791867,0.17773406,0.18277727,-0.07243485,0.09620799,-0.7921758,-0.23729178,0.0112485485,0.16629304,-0.20650885,-0.24709116,0.16968273,0.28595918,0.49651575,-0.12308591,-0.1074348,-0.46362224,0.08634225,0.40516695,0.43360308,-0.21888162,-0.15188639,-0.22073138,0.019569788,0.3679592,0.014657522,0.21919744,-0.2404267,0.025536835,0.028002646,-0.106501594,0.6220253,0.5298247,-0.1814811,-0.08011471,0.5317579,0.6339408,0.3265482,-0.11362704,0.1311386,-0.11517884,-0.5199423,-0.17416222,0.069361284,-0.13956538,0.2559254,-0.16237082,0.19834408,0.42898887,-0.22510739,-0.23633364,0.3405476,0.06948615,0.11677142,-0.28112957,-0.1427267,0.40451404,-0.3934203,0.023293434,-0.30652553,0.5148274,-0.14432044,-0.7624363,0.30636454,-0.5652978,0.19163729,0.05231113,0.66708106,0.85705376,0.5377857,0.09062751,0.88923186,-0.36294478,0.049269974,0.009359811,-0.43943945,0.22043487,-0.24904636,-0.047819175,-0.5059078,0.051849876,-0.043147597,-0.14558671,0.13882653,0.5872973,-0.63200563,-0.15666959,0.025902467,0.55375475,-0.2236743,-0.18000977,0.79593223,1.0331122,1.0810813,0.1645892,1.2858257,0.13372907,-0.14416625,-0.14225018,-0.17944776,-0.9770662,0.3820798,0.18923454,-0.5262867,0.4922929,0.15753387,-0.0506689,0.48783198,-0.33323076,-0.27225307,0.016209142,0.28009596,0.040232044,-0.36923423,-0.30977395,-0.1017857,0.0549513,0.053991344,0.32787338,0.2868158,-0.33262998,0.1707124,0.23425022,1.2115448,-0.33241656,0.07852975,0.13105668,0.027805071,0.29347426,-0.31965527,0.03135222,0.10635342,0.29812655,0.06987108,-0.51965475,0.10283785,-0.20332101,-0.44983634,-0.25251532,-0.16583316,-0.3551736,-0.09294166,-0.27990714,-0.114560366,-0.26278612,-0.4271637,0.29934576,-2.3539917,-0.12223029,-0.06326533,0.42569312,-0.12693636,-0.5014356,-0.2912341,-0.35885864,0.2446352,0.25650337,0.43440935,-0.40223986,0.4409275,0.5321153,-0.71543354,-0.02936109,-0.5483586,-0.026681978,0.053984087,0.2896538,0.09285291,-0.23362522,0.06629977,0.19597457,0.45887575,-0.2031143,0.043264944,0.5407132,0.55538255,-0.20659424,0.28047436,0.001365983,0.5415703,-0.32811734,-0.3362317,0.6092159,-0.5060419,0.25261924,-0.12053047,0.14409114,0.5133377,-0.37696293,-0.9670049,-0.44060293,-0.03270168,1.3243601,-0.10497636,-0.5581964,0.066816404,-0.42973566,-0.5656499,0.045017667,0.48035255,-0.20107564,-0.08703004,-1.0447515,-0.083887115,-0.26464185,0.25254712,-0.13467091,0.11807054,-0.46521944,0.68769306,-0.09907874,0.6377412,0.38201734,0.34171343,-0.404423,-0.46964908,0.10542,1.1290932,0.5668112,0.15025273,-0.3816903,-0.04609636,-0.42416954,0.013367168,0.05397741,0.61151993,0.47978458,-0.015327836,0.11654645,0.26998454,0.052438956,0.07830663,-0.34244302,-0.2786137,-0.22360703,-0.028810391,0.5887762,0.67992216,-0.15600397,0.37922436,0.07984709,0.15912414,-0.29258284,-0.5227809,0.5750226,0.95427716,-0.1277671,-0.3923672,0.6750869,0.2202535,-0.36742708,0.55464447,-0.5657932,-0.39002138,0.16421448,-0.17048404,-0.3390489,0.26014438,-0.44842345,0.08969428,-0.8671937,0.3566182,-0.32904142,-0.51858765,-0.65891486,-0.22571734,-2.3533916,0.22476718,-0.21062073,-0.038932826,-0.43048754,-0.03953116,0.29508743,-0.41149908,-0.8931926,0.13004363,0.052217487,0.75299853,-0.30239743,0.12126899,0.008492691,-0.35714182,-0.1486758,0.19788323,0.27910587,0.21468028,0.10270601,-0.30027536,-0.10055146,-0.1446841,-0.3302245,-0.12404863,-0.375038,-0.3918166,0.030018657,-0.35076407,-0.20838521,0.67800015,-0.50628364,-0.054229736,-0.35845974,0.07976756,0.1870173,0.3781373,-0.07746242,0.22299598,0.17445697,-0.22395912,0.015357022,-0.13248348,0.37305158,-0.012814288,0.39451674,0.6602454,-0.45443028,0.12714961,0.53355366,0.8532172,-0.061886072,1.1371149,0.32273147,-0.081247725,0.3388128,-0.1610428,-0.24911346,-0.6372786,-0.17959292,0.09442743,-0.56530637,-0.38407835,0.056013364,-0.39284927,-0.9433418,0.5410717,-0.092093386,0.25582328,-0.07687146,0.46696594,0.46251553,-0.013859843,-0.08781611,-0.119633354,-0.17773072,-0.26759237,-0.3889955,-0.52521825,-0.45508152,-0.056767605,1.2185434,-0.20339003,0.23394266,0.28419954,-0.11611093,0.1510591,0.1618096,0.04780974,0.102638826,0.4689846,0.19416185,-0.5747351,0.24965146,-0.26336086,-0.121266425,-0.72769547,0.1851219,0.5979314,-0.5634581,0.5221766,0.48824543,0.1446459,-0.118272446,-0.6550127,0.06114166,0.1913226,-0.26241073,0.5232188,0.40315008,-0.74481016,0.54601794,0.36964354,-0.30104,-0.67382854,0.5889527,0.108877964,-0.019384291,-0.17427948,0.48869172,-0.04760773,0.05940089,-0.053607017,0.34233952,-0.21158192,0.27761018,0.14676253,-0.15367392,0.1500103,-0.17980312,-0.24015959,-0.7319118,0.09345947,-0.48535055,-0.19228068,0.14128485,-0.013689105,0.20670216,0.22313507,0.16963516,0.514456,-0.29598433,0.040779117,-0.2579634,-0.37593347,0.46590304,0.53839654,0.43660545,-0.40026346,0.5767722,0.055314567,-0.24655236,-0.038438015,0.07720908,0.5295798,-0.15165012,0.34128585,0.3612824,0.049142394,0.056329813,0.8138995,0.13369204,0.38428852,0.034784187,-0.21232936,0.14075865,-0.048230194,0.38228962,-0.30976132,-0.5950927,-0.11496173,-0.08327906,0.19608591,0.5361846,0.039680112,0.3095724,-0.27231923,-0.2908195,0.04704106,0.29404396,-0.051847033,-1.3522674,0.36451986,0.14179602,0.94780254,0.48639435,-0.043952722,0.23888956,0.41250756,-0.053197365,0.08706943,0.33493063,-0.10568931,-0.37815306,0.38293704,-0.7813417,0.35677555,-0.11871685,0.0043584937,0.03173614,-0.035653204,0.52094716,0.89049566,-0.16232303,0.052567057,-0.084400974,-0.21384,0.12405389,-0.31089598,0.2905113,-0.45692858,-0.24859904,1.0161496,0.581186,0.43614942,-0.43013695,0.0699609,0.10857421,-0.188786,0.19228064,0.033495225,0.07275228,-0.20554748,-0.49844685,-0.06433093,0.42723465,0.1806259,0.039268192,0.010451229,-0.23745687,0.27915362,-0.03285726,-0.0015162954,-0.09564352,-0.7098418,-0.052924834,-0.34092337,-0.53889793,0.23114048,-0.0741395,0.095740385,0.34100798,0.11082005,-0.48834023,0.3163244,0.097278185,0.72378623,-0.041254025,-0.07091818,-0.27302772,0.4181362,0.21447489,-0.17407164,-0.1054836,-0.20609458,0.3612358,-0.49163744,0.40070948,-0.21584551,-0.45114344,0.18162386,0.0146688605,0.02927483,0.5572134,-0.27126986,-0.21875787,0.16042168,-0.1324511,-0.1977396,-0.21596332,-0.21291657,0.10826058,0.055992994,-0.2729279,-0.26004297,-0.059507247,-0.24402888,0.12203958,0.07299639,0.22721447,0.59662473,0.21714938,-0.62955487,-0.062977016,0.3545002,0.77856624,-0.0029971856,-0.118626066,-0.48698995,-0.53306764,-0.3516298,0.6688828,-0.030955834,0.1862522,0.081808686,-0.39080316,0.7276269,0.159149,1.0338647,-0.03333699,-0.3391642,0.0136301685,0.64068323,-0.018745702,-0.3591094,-0.4904826,0.94969434,0.5756995,-0.24656595,-0.04844805,-0.4191943,-0.030304665,0.07795157,-0.27221617,-0.09988628,-0.07589308,-0.72468454,-0.13302122,0.07894441,0.36831182,-0.17171097,-0.2704363,0.15746641,0.37152356,-0.026099,0.07359545,-0.6181037,-0.20602775,0.22620642,0.2082628,-0.12814423,0.09266468,-0.46526143,0.14237408,-0.7687476,-0.103789225,-0.20895062,0.10860966,-0.051665027,-0.26591998,0.30950195,0.03294681,0.2284026,-0.43912014,-0.23001455,-0.21024169,0.23861238,0.059098125,0.108204745,0.745048,-0.3118647,0.18386438,0.24956532,0.4163518,1.0261009,-0.08125426,0.07383723,0.25763017,-0.35618162,-0.6922025,0.2992868,-0.533848,0.24985959,-0.2315768,-0.39186624,-0.6083603,0.19912206,0.1862716,0.18109153,-0.046604175,-0.72456485,-0.1281722,0.24811952,-0.32898828,-0.13790497,-0.23812468,-0.31320807,0.7526809,-0.19639349,-0.35121122,-0.059069566,0.4325866,-0.10962001,-0.574166,0.043250468,-0.42679778,0.34902224,-0.018944826,-0.20133911,-0.11946101,-0.038847845,-0.5880887,0.213502,0.2959779,-0.30072355,-0.054205406,-0.30627736,0.08840691,0.61025614,-0.23583926,0.31136903,-0.30371216,-0.57021856,-0.97208023,-0.0937022,-0.0059206313,0.083566286,0.033209175,-0.79031324,0.027400775,-0.240503,-0.16389155,-0.06857792,-0.45301756,0.4074157,0.19987658,0.46452427,-0.2987619,-0.9953421,0.0019682434,0.1956776,-0.26837006,-0.41101104,0.4779447,0.0740021,0.7150899,0.15994108,0.0997378,0.1317256,-0.8039426,0.18989691,-0.04732195,-0.098176174,-0.69691694,-0.044530537 +381,0.4061044,-0.11393451,-0.51231676,-0.28111187,-0.4842675,0.012623429,-0.30313617,0.2578685,0.21295628,-0.21146104,-0.21540451,0.06981294,0.05174367,0.26644385,-0.11058598,-0.66882914,-0.01661117,0.18920717,-0.7282622,0.5507897,-0.5121731,0.29677728,-0.008467366,0.34098825,0.12748054,0.4814534,0.14040048,0.061056823,-0.12866873,0.054992314,0.00921572,0.34314233,-0.5812936,0.09023236,-0.19282486,-0.28040624,0.024665605,-0.31628257,-0.1732033,-0.6613978,0.06416743,-0.8434659,0.5332183,-0.15642202,-0.19171108,-0.08838757,0.41776377,0.52229005,-0.37875745,0.17061235,0.25930566,-0.27500725,-0.1384382,-0.33470076,-0.0799726,-0.5510041,-0.5021815,-0.09909784,-0.76861906,-0.3270473,-0.21611217,0.2179231,-0.23589201,-0.03412286,-0.14907998,0.24279982,-0.5138257,0.09462898,0.258486,-0.08980951,0.22273172,-0.4448903,0.036652397,-0.12528878,0.36677355,0.015453931,-0.20733058,0.40959558,0.258497,0.39911357,0.2996641,-0.3077097,-0.30964178,-0.19888012,0.28783795,0.24590215,-0.10612127,-0.101977415,-0.40298247,-0.01032459,0.42907742,0.4490619,0.07007766,-0.15888268,-0.07911668,-0.09452296,-0.104978524,0.47401962,0.44787928,-0.23721807,-0.2681291,0.31159145,0.6238579,0.24245605,-0.43263984,0.056601062,0.0059980643,-0.4320399,-0.21121132,0.16134945,-0.09184896,0.39037928,-0.1656937,-0.019818993,0.9187886,-0.18480277,-0.0007286668,0.018304924,0.11502326,-0.15275495,-0.24018657,-0.12607448,0.067657344,-0.6266468,0.00255722,-0.2376153,0.52960634,0.049719706,-0.62773514,0.1718708,-0.53558016,0.20811583,-0.09231615,0.6605573,0.7611679,0.53684247,0.28127453,0.6904879,-0.11791151,0.26432934,-0.1458474,-0.4295142,0.14885002,-0.2921822,0.09774321,-0.53426516,0.07059892,-0.24959329,0.028615776,0.08032592,0.51238775,-0.48905876,-0.018360615,0.1994623,0.77709585,-0.40427917,-0.0344261,0.62612,1.0856283,0.9846751,0.007936706,1.2040962,0.3911581,-0.15008682,-0.008312281,-0.4186182,-0.46300253,0.14449944,0.36032286,-0.17669374,0.3947639,-0.11065855,0.093758054,0.31189036,-0.48974812,0.10384517,0.036975436,0.41259772,0.083907396,-0.11200631,-0.33854955,-0.06325908,0.14611787,0.0751973,0.17217535,0.24184474,-0.29957658,0.3845855,0.026323633,1.3726131,0.049095202,0.036055487,0.0752185,0.57609314,0.29795814,-0.136452,0.082499005,0.52064145,0.24625222,0.0015972572,-0.5721853,0.20697062,-0.34336966,-0.47361407,-0.2318593,-0.4709165,-0.10968668,-0.07302517,-0.40360045,-0.17650315,-0.08002027,-0.23996174,0.36952156,-2.5850625,-0.23029317,-0.08802398,0.3974704,-0.17296861,-0.20812844,-0.08547764,-0.53868306,0.2966116,0.30158436,0.4281463,-0.56862015,0.5928972,0.611613,-0.5128117,-0.07181012,-0.69738936,-0.17767376,-0.1292264,0.5160482,0.054544274,-0.054958396,-0.10638099,0.32434055,0.6876554,-0.092849106,0.20282693,0.5335442,0.24012358,-0.00094933016,0.5904138,0.11435691,0.52731246,-0.19015156,-0.2558199,0.35665008,-0.3050335,0.23607355,-0.06790823,0.008538804,0.60480034,-0.42311174,-0.9357032,-0.5554297,-0.2645564,0.9790867,-0.41325647,-0.48037955,0.12404747,-0.21613492,-0.19105367,0.09981069,0.53939,-0.17411993,0.25213584,-0.7872996,0.150676,-0.07163777,0.24585775,0.0040910053,0.078942716,-0.32927138,0.69254065,-0.12863988,0.63424414,0.1720143,0.23513177,-0.21658082,-0.39174855,0.16919926,0.90427196,0.42433333,-0.11324833,-0.23182958,-0.33998275,-0.058009386,-0.17360622,0.12781943,0.4763272,0.62978506,-0.15032086,0.28217012,0.354662,-0.15116796,-0.09138701,-0.23182446,-0.15529881,0.0379063,0.14080516,0.49194145,0.844854,-0.16179584,0.45479083,-0.2371155,0.38325593,-0.04125734,-0.6566228,0.5574353,0.39216006,-0.19523917,-0.15077828,0.64540106,0.5179726,-0.42363238,0.58650523,-0.759185,-0.30678785,0.65751946,-0.1144749,-0.29112646,0.20004569,-0.36657974,0.2596936,-0.745513,0.37511775,-0.30580184,-0.36958963,-0.5181489,-0.25615963,-2.9341998,0.073697746,-0.07004651,-0.13457693,-0.30623677,-0.079535894,0.24659608,-0.6653886,-0.6661518,0.029912269,0.16194107,0.5763383,-0.07629565,0.058976356,-0.22696744,-0.34461856,-0.14380087,0.29241252,0.06603287,0.29771462,-0.23005639,-0.58223903,-0.058157165,-0.12813558,-0.61761904,0.080288395,-0.42750955,-0.3998325,-0.09088826,-0.48207957,-0.16354366,0.51942784,-0.27197483,0.031169927,-0.3365564,-0.025001705,-0.107233495,0.1856731,0.28291705,0.18201691,0.2627531,0.050964385,0.04447355,-0.36949894,0.31787166,-0.11137869,0.32264867,0.17828687,0.03778121,0.26637965,0.45792955,0.549375,-0.29607368,1.0049539,0.33497226,-0.11896173,0.23555453,-0.3041763,-0.3314069,-0.64071137,-0.3654363,-0.22890483,-0.43519875,-0.47368297,0.054134592,-0.35510153,-0.8676001,0.6590142,0.02046273,0.3375531,-0.21592711,0.2631365,0.40791008,-0.11426443,-0.16869698,-0.038912747,-0.3031381,-0.5112066,-0.39865866,-0.69475627,-0.5120005,0.083192386,1.0337185,-0.32225126,0.077855885,-0.01894554,-0.23063906,-0.03139263,0.18103631,0.015318267,0.24591163,0.42227054,-0.03377362,-0.62717265,0.37917703,-0.013939507,-0.05953593,-0.46648183,0.050413404,0.6307879,-0.7642396,0.54438776,0.38771325,0.0944391,0.030100612,-0.5864343,-0.09349978,-0.10304125,-0.22952046,0.5551653,0.2269155,-0.74185216,0.54670423,0.13921508,-0.35726935,-0.6990462,0.37195942,-0.14875038,-0.31186378,-0.018242078,0.2804451,0.099979684,-0.08130947,-0.32299536,0.20822367,-0.3747748,0.27877185,0.37469044,-0.14417572,0.3126121,-0.15953523,-0.31484357,-0.7416722,0.04028535,-0.4973704,-0.3182289,0.1831014,-0.0668067,-0.0905757,0.20524803,0.07775897,0.30690905,-0.22354788,0.059304498,-0.051411103,-0.32976636,0.19563878,0.48240638,0.3980979,-0.3645713,0.55140954,0.20182383,-0.20181015,-0.00085160485,0.028622834,0.398581,-0.078267306,0.42032507,0.027026042,-0.12367565,0.4058581,0.48008996,0.21507514,0.48147702,0.14295956,-0.27160996,0.3479348,0.021263689,0.10700786,-0.10134249,-0.36774424,0.099227585,-0.17688325,0.1858419,0.46733183,0.3680123,0.4458945,0.08688447,-0.056731038,0.08493589,0.24022831,-0.107938714,-1.5752206,0.31743094,0.34849602,0.79497737,0.4567657,0.18685006,-0.20003772,0.6184456,-0.47592023,0.041341275,0.50976616,0.09975618,-0.3621507,0.7403251,-0.6943228,0.48422655,-0.13775851,-0.07908985,0.09192805,0.15232491,0.4422714,0.9208973,-0.12230468,0.13951345,0.015277766,-0.2551064,0.17603509,-0.24775477,-0.046401262,-0.42126232,-0.3784545,0.72538215,0.2512027,0.4138624,-0.18523057,-0.053911045,0.03806082,-0.32431895,0.28067684,-0.07988324,0.05319924,0.080248505,-0.28282252,-0.28705856,0.44065025,-0.15594558,0.118836306,-0.016963854,-0.35104448,-0.00661147,-0.09788628,0.09915839,0.045855295,-0.58977115,-0.111792006,-0.09282665,-0.4845972,0.59748936,-0.269551,0.062150605,0.16302884,-0.027720852,-0.2637024,0.20972522,0.0748383,0.5609723,0.087871775,-0.2501412,-0.092570744,0.035750583,0.33604407,-0.3070217,0.15523833,-0.3358289,0.20261894,-0.6340395,0.54436654,-0.17290433,-0.51374125,0.18098472,-0.2660676,-0.047007933,0.3883885,0.014362363,-0.31698993,0.12058345,-0.15434498,-0.35823086,-0.1407453,-0.34277987,0.20460075,0.08296888,-0.10944772,-0.19088042,-0.10103217,0.06353102,0.5873337,-0.059599113,0.42136765,0.29428184,-0.07246484,-0.34728914,0.14390399,0.21841791,0.35141373,0.046976924,0.15066902,-0.28660032,-0.39545086,-0.3427853,0.29485434,-0.23731677,0.14315043,0.16019782,-0.26598418,1.0523114,0.0035301237,1.2981788,0.117401965,-0.41041943,0.12801956,0.4144492,-0.1124832,0.13051589,-0.38249475,0.84356755,0.6417418,-0.16864349,-0.10678876,-0.5251222,-0.14859538,0.28419444,-0.36183152,-0.21720812,-0.06918398,-0.6511346,-0.4490503,0.21292919,0.17953622,0.20885971,-0.052211236,0.002896905,0.15891762,0.14132826,0.2754149,-0.5980054,-0.17819656,0.2602692,0.2279067,-0.10833044,0.17307441,-0.4535743,0.47042012,-0.61472476,0.09639828,-0.32580617,0.19003327,-0.2731299,-0.43666464,0.18406975,0.018735433,0.29557183,-0.27277017,-0.43338045,-0.073111095,0.49398625,-0.044755157,0.22425807,0.60835826,-0.3440987,0.059195366,0.010035094,0.40694317,1.2915965,-0.44248322,0.032216955,0.3657741,-0.40470248,-0.7105464,0.33215243,-0.4677832,0.014163305,-0.083933696,-0.61981356,-0.4320001,0.25601447,0.0052552433,0.056549057,0.09636813,-0.39283448,-0.003875473,0.31593665,-0.24938115,-0.16803864,-0.09596125,0.24154495,0.6898974,-0.36657307,-0.27471572,0.1137318,0.32644367,-0.3206656,-0.30894315,-0.052648015,-0.05427259,0.50479233,0.013074647,-0.28773728,-0.012803011,0.16326806,-0.4153854,0.022838509,0.53439444,-0.26386106,0.056894284,-0.3614373,0.051178467,0.8943249,-0.20342968,-0.12566167,-0.4779346,-0.49061045,-0.8627881,-0.3990478,-0.012246931,0.13605301,-0.056522045,-0.4145426,0.0334516,-0.22994877,-0.16839908,0.14227617,-0.552524,0.42436072,0.20186548,0.3443934,-0.2471679,-0.9951091,0.05944984,0.082710184,-0.1530291,-0.64050215,0.7691258,-0.26668045,0.75863683,0.13751812,-0.06265838,0.0007702708,-0.4697513,0.1825099,-0.31148994,-0.010389875,-0.8409211,0.029594835 +382,0.46082702,-0.08962192,-0.63523424,-0.055769913,-0.06932945,-0.016776575,-0.29317933,0.3439371,0.19227903,-0.45694792,-0.05774081,-0.09627376,0.011801752,0.25461316,-0.13266961,-0.53612804,-0.10200004,0.1417068,-0.52888674,0.5486743,-0.60615885,0.3351043,-1.414679e-05,0.33738914,0.064226806,0.1961089,0.36340165,-0.094996214,-0.17747255,-0.10340592,0.32325745,0.32484868,-0.6894123,0.099966496,-0.08576693,-0.39079514,-0.10010813,-0.31946248,-0.4109821,-0.7459335,0.33232507,-0.9229522,0.58724535,0.20248377,-0.22875446,0.26479554,0.05673766,0.18746474,-0.3637151,0.20626715,0.11395939,-0.24672112,-0.15395138,-0.3405464,-0.024698593,-0.2668964,-0.6686996,-0.012337409,-0.45506644,-0.043284073,-0.3404078,0.19276805,-0.38048762,0.08015042,-0.33416396,0.42530048,-0.5498455,0.012501545,0.3040002,-0.050060693,0.38971204,-0.46646267,-0.12374762,-0.18093783,-0.045516692,-0.13956283,-0.31585038,0.26014328,0.22429729,0.511121,-0.048158787,-0.28305215,-0.36361974,-0.062146984,0.32019347,0.31814802,-0.3196484,-0.4912926,-0.1180276,-0.10781232,0.125299,0.1732288,0.10071975,-0.38647223,-0.0624544,0.2952659,-0.122428045,0.42494303,0.6662631,-0.24374503,-0.16049686,0.31566703,0.5640099,-0.02530496,-0.07223033,0.13035405,-0.05846075,-0.6355344,-0.24243575,0.26880008,-0.18489029,0.4870996,-0.07662748,0.12131955,0.6588867,-0.2822784,-0.15613186,0.0871072,0.024239017,0.1021953,-0.2518246,-0.41598687,0.47250146,-0.5492388,0.105918124,-0.29811952,0.66464853,-0.009259708,-0.7478559,0.366054,-0.5700174,0.21153635,-0.13323045,0.7436179,0.63952786,0.54083323,0.41661417,0.76804227,-0.6194156,0.049914606,-0.046640955,-0.3922975,0.19495668,-0.1673877,-0.09822814,-0.4260908,-0.07073236,0.07513184,-0.20122541,0.12461152,0.5153619,-0.473635,-0.005981233,0.038806923,0.5459808,-0.34310013,0.033141028,0.5825072,1.084965,1.0503772,0.15431333,1.3340056,0.26759157,-0.28974307,0.100286745,-0.12690687,-0.88754654,0.3012858,0.38536358,-0.31586802,0.36238623,0.08864795,-0.11341926,0.38394138,-0.55545473,-0.06737424,-0.19528326,0.24096504,-0.13871789,-0.30982295,-0.30185828,-0.14455453,0.018281696,0.029167201,0.0039691906,0.36491898,-0.2604315,0.22303486,0.10863261,1.5513463,-0.13468814,0.16046113,0.23973647,0.26385736,0.24060722,-0.25470415,-0.007686347,0.33437654,0.51292855,0.25652742,-0.5805735,0.11902793,-0.16203775,-0.6521512,-0.16373931,-0.2506982,0.19590662,-0.1158478,-0.5091963,-0.05156257,-0.046396594,-0.38782007,0.40553004,-2.4334335,-0.051696204,-0.07954764,0.30415538,-0.18856838,-0.34330404,-0.24392188,-0.45928484,0.44230145,0.3674032,0.47147062,-0.75418496,0.3401283,0.36795652,-0.4857641,-0.015938662,-0.7088133,-0.081511796,-0.115222156,0.29719236,0.0266799,-0.23800378,0.028150344,0.28665292,0.5369252,-0.19997618,0.06882404,0.28954113,0.3470301,-0.08785098,0.5143121,0.08259969,0.33570662,-0.40350038,-0.3136591,0.509866,-0.404208,0.14409679,0.017190957,0.057013523,0.3105538,-0.46577707,-1.0761021,-0.5727358,-0.09362118,1.1939337,-0.42852974,-0.49543658,0.25915977,-0.18188997,-0.39657772,-0.005373981,0.3770932,-0.2721915,0.08879172,-1.007409,0.093016386,-0.19190165,0.3111822,0.05384399,0.15621431,-0.4426397,0.66798943,-0.17840205,0.6328775,0.53086185,0.10495782,-0.33005223,-0.49197915,0.12856293,1.0809131,0.36253577,0.15786584,-0.2881161,-0.15209489,-0.14035553,0.009309959,0.16275303,0.46994463,0.7389728,-0.06514608,0.19212109,0.24279903,-0.04931747,-0.0021284223,-0.2779754,-0.2922796,0.030089222,0.16496843,0.6207278,0.7640704,-0.14049888,0.21275233,-0.02928543,0.43914568,-0.1664807,-0.5192453,0.51034814,1.1617646,-0.032707743,-0.33736497,0.6933415,0.4064209,-0.29753736,0.6301637,-0.6878288,-0.28687435,0.3996089,-0.10261051,-0.34516326,0.29877138,-0.44264162,0.215116,-0.8420427,0.5096177,-0.37902364,-0.32016122,-0.6149133,-0.30491266,-3.3563364,0.16311494,-0.3303943,-0.09720088,-0.023398563,-0.01765401,0.3633841,-0.6603442,-0.6432242,0.07479508,0.21223706,0.59117025,-0.12416208,-0.052095905,-0.17898916,-0.14644484,-0.10470213,0.25381222,0.26437408,0.16216087,0.10796036,-0.5550946,-0.18253273,-0.117806226,-0.4400653,-0.105547085,-0.5460361,-0.47311515,-0.20971721,-0.5436719,-0.4968903,0.6066659,-0.3105177,-0.07833555,-0.17736208,-0.08082145,0.0011662329,0.3324635,0.060875498,0.34712535,0.003545612,-0.10773158,0.032816686,-0.15228847,0.20793697,-0.059458822,0.22426304,0.43668276,-0.32081848,0.041231655,0.46747848,0.61536604,-0.14433096,0.8265102,0.6582937,-0.028364308,0.3066776,-0.21750408,-0.2490914,-0.82513523,-0.4592031,-0.1539374,-0.51901376,-0.296866,-0.008921728,-0.31149748,-0.7672252,0.6465796,-0.162818,0.16651355,-0.01640901,0.38217023,0.3457776,-0.15001976,-0.124989,-0.105420314,-0.201454,-0.5066204,-0.27756903,-0.77323645,-0.5750807,-0.101468354,1.1892328,-0.06413547,0.0067826733,0.057968877,-0.052781228,0.01761199,0.2631198,0.012011811,0.33603853,0.5121347,0.11165141,-0.5088934,0.43435657,-0.15858954,-0.20648076,-0.71350837,0.020710312,0.6369173,-0.6159965,0.6552961,0.5837091,0.1803674,-0.040730555,-0.7936188,-0.32732716,0.14681058,-0.14736882,0.75148827,0.33763188,-0.91342866,0.5075604,0.50088567,-0.43057632,-0.66249484,0.47068036,-0.026697375,-0.20869567,0.045546535,0.46642706,-0.2876209,0.037919603,-0.25069636,0.3398775,-0.46430883,0.2684963,0.20089567,-0.08069417,0.3532044,-0.2653727,-0.24378377,-0.71234435,0.10764556,-0.5455487,-0.25205907,0.18840045,-0.09901987,-0.08736153,0.1693338,-0.12789214,0.57139206,-0.22580041,0.1406821,-0.17484131,-0.41634554,0.5472709,0.58403176,0.28127706,-0.27964064,0.64301157,-0.091577224,-0.10085101,-0.43248826,0.061090983,0.5990759,-0.06920835,0.406866,-0.069271505,-0.03145521,0.41586274,0.7396955,0.2862762,0.49039125,0.19778326,-0.14923303,0.22344086,0.14026698,0.24826603,-0.028069712,-0.38006157,-0.064640045,-0.13868518,0.23694071,0.47869536,0.034459345,0.48812017,-0.25825256,-0.2695225,0.069493026,0.20457359,0.014707044,-1.3503091,0.50415194,0.066380374,0.5917774,0.6323708,0.035554923,0.027800871,0.43475682,-0.20948133,0.08671051,0.23820919,-0.10427386,-0.54284835,0.5904739,-0.67705333,0.2991024,-0.16229598,0.035774656,0.020709515,-0.014020022,0.45638803,0.6642844,0.0058971047,0.20769322,-0.09097804,-0.20099516,0.21471678,-0.3172045,0.1934315,-0.42281118,-0.34600025,0.8727326,0.2959953,0.49888033,-0.21346617,-0.0944114,0.2633221,-0.16856673,0.18522683,-0.013384998,0.094071135,-0.05361446,-0.5344744,-0.26830366,0.53103966,0.124869436,0.13111736,-0.059825774,-0.17971386,0.21384344,-0.12913854,-0.060929887,-0.0948079,-0.6124508,-0.042217176,-0.41279453,-0.3148871,0.49303186,-0.38688445,0.22514108,0.2644334,0.06634855,-0.49485978,0.09964301,0.2080782,0.7000614,-0.07630318,-0.21184605,-0.14177594,0.31116927,0.23087502,-0.11278197,-0.010095088,-0.29914227,0.1338485,-0.7014051,0.42437315,-0.120198935,-0.31628755,0.23614205,-0.056782324,-0.06014569,0.60248023,-0.23159745,-0.42035866,0.17556922,-0.14176206,-0.19428822,-0.4587742,-0.15243617,0.2931531,0.09323883,0.08443828,0.016761992,0.028645277,-0.03870665,0.4124506,0.15515228,0.20208362,0.3806673,0.076543465,-0.46874547,0.010786563,0.15740435,0.63758326,0.015989438,-0.12765408,-0.509931,-0.53293705,-0.22011738,0.13412097,-0.20723605,0.34812757,0.015336929,-0.4233231,1.0081605,0.028837964,1.1033587,-0.030624062,-0.34028402,-0.044861145,0.6463156,-0.06294967,-0.17233053,-0.23497126,0.97514623,0.741453,-0.23170158,-0.15154302,-0.2734808,-0.04669563,-0.05621905,-0.2909377,-0.299105,-0.017908841,-0.6882685,-0.12153642,0.1501857,0.41134748,0.027181309,-0.12616691,0.13251323,0.21822104,0.03841881,0.14758107,-0.41358593,0.033225533,0.23174551,0.18801422,-0.015741013,0.013449255,-0.49226096,0.30589333,-0.4619286,0.07102504,-0.24885362,0.07269812,0.07374567,-0.36900532,0.27588397,-0.028994923,0.25239512,-0.3813585,-0.15375021,-0.09595442,0.44153678,0.19094682,0.1643492,0.8099092,-0.2852347,0.26555791,0.11042024,0.4508978,1.2374226,-0.38291565,0.039881453,0.33658957,-0.3332383,-0.71459544,0.26242116,-0.2929377,0.2605991,-0.20399226,-0.49789214,-0.54711497,0.12481852,0.05608498,-0.06688508,0.15559179,-0.67896795,-0.18247536,0.18160054,-0.3384604,-0.26559108,-0.4154317,0.0013394132,0.6262288,-0.2444235,-0.41903898,0.02926249,0.3565386,-0.26215267,-0.4670628,-0.08621634,-0.3086596,0.2253713,0.17181587,-0.24645899,0.10784143,0.16374794,-0.38021338,0.11552368,0.32465205,-0.33920914,-0.017434195,-0.35364193,-0.06839953,0.77474564,-0.18031748,-0.043616965,-0.44405383,-0.5682447,-1.1116331,-0.1351372,0.52314496,0.04313305,0.15153357,-0.6337361,0.08812329,0.057359003,0.0030366946,-0.14336753,-0.3687286,0.46430326,0.07643395,0.36648217,-0.04478998,-0.64428765,-0.051028542,0.13630687,-0.10747099,-0.4236055,0.58284736,-0.026702758,0.7244387,0.07405549,0.18250987,0.2586373,-0.6739099,0.18315002,-0.13565019,-0.25460768,-0.73849326,-0.042553253 +383,0.40857178,-0.13191256,-0.3706587,-0.118870005,-0.112028435,0.12954892,-0.18037558,0.25454444,0.18786488,-0.1368882,0.009210318,-0.22511603,0.025746044,0.34780577,-0.108655274,-0.62124926,0.0036862008,-0.060362473,-0.55855507,0.6021019,-0.46071875,0.23533547,-0.056235626,0.29596925,0.11493039,0.3566143,0.23371601,-0.19287983,-0.07620843,-0.085188866,-0.0662719,-0.03541802,-0.4806579,0.12260955,0.026860118,-0.115967795,0.12846327,-0.2862792,-0.37480357,-0.7031477,0.3728459,-0.6410177,0.29209918,-0.05249577,-0.12721126,0.45263484,0.08134189,0.39292794,-0.24850115,0.015244349,0.2773546,0.011477165,0.016521882,-0.041330844,-0.03779304,-0.49892926,-0.47141844,0.070066005,-0.34153783,-0.32041112,-0.17024094,0.11166608,-0.20126906,-0.032110415,-0.12634356,0.2635117,-0.49137786,-0.0030225143,0.19495839,-0.15815216,0.3736791,-0.44511992,0.09119868,-0.10633194,0.22445144,-0.12765121,-0.05953487,0.33836848,0.36181742,0.35635528,-0.10268232,-0.060845517,-0.355423,-0.046482407,0.17246866,0.4055531,-0.08131911,-0.4495163,-0.16110662,-0.056746252,-0.12101191,0.14157133,-0.009643901,-0.36723614,-0.059797086,0.088756785,-0.24315888,0.30942068,0.45931345,-0.35112906,-0.3341304,0.47492042,0.59512514,0.21074533,-0.19740057,-0.18456735,0.029446693,-0.41628382,-0.1333033,0.14845288,-0.20777225,0.4918307,-0.17256413,0.19629245,0.71402943,-0.1727849,-0.04340243,-0.14498745,-0.1012192,-0.26183003,-0.19508205,-0.05890758,0.00707086,-0.50262886,0.11518529,-0.22739723,0.5626967,0.263329,-0.6526349,0.40414992,-0.40475774,0.15195681,-0.15213284,0.46269023,0.7013746,0.2460212,0.12626337,0.81137997,-0.61840403,0.16664502,-0.108716615,-0.47759625,0.2944656,-0.13674192,-0.16028918,-0.5461171,-0.022352427,0.07342851,-0.104824975,-0.16492188,0.096481524,-0.5296591,0.025376597,0.07114891,0.7994394,-0.23114122,-0.05524823,0.45463502,1.0231862,0.9588588,0.014392944,1.0895952,0.19959761,-0.32789302,0.3989295,-0.4596657,-0.7436346,0.18026099,0.23891395,0.058641165,0.13242014,-0.031481735,-0.0113122985,0.36410227,-0.33672333,0.13069308,-0.15741712,0.22917828,0.21435285,-0.01974143,-0.11542554,-0.2392098,-0.012544334,0.14157522,0.12809579,0.21988633,-0.23040184,0.12522434,0.0076037943,1.8287952,-0.08336468,0.10886299,-0.0011463054,0.52117234,0.23228663,-0.16229194,-0.044130366,0.29871115,0.42842063,0.30440158,-0.5684603,0.24479626,-0.23866579,-0.5192504,-0.042570226,-0.24980626,0.039524198,0.02182366,-0.30690366,-0.060254384,0.08152002,-0.16036856,0.51834166,-2.8498783,-0.01755394,-0.21879016,0.24338126,-0.27729192,-0.22217081,-0.018046819,-0.43881336,0.3574493,0.46716636,0.42923063,-0.67646176,0.27751186,0.39261642,-0.5025531,-0.013827674,-0.59122574,-0.04386752,-0.059891153,0.4783558,0.07007527,0.056166478,0.040908754,0.28680348,0.3860642,0.009162955,0.17226714,0.12779836,0.29240087,0.15435848,0.545481,0.06741763,0.518952,-0.034093946,-0.12360296,0.29977056,-0.31492233,0.2967809,-0.1505134,0.16705783,0.36829302,-0.26475886,-0.8866765,-0.60547763,-0.2502882,1.0829082,-0.22548506,-0.3649658,0.28101528,-0.07073168,-0.18950509,0.010190833,0.37840876,-0.06325491,-0.030917987,-0.70787734,0.2217155,-0.038828067,0.157606,0.013051312,-0.07618017,-0.3694133,0.6351781,-0.011430139,0.46864307,0.26647708,0.12172917,-0.1897966,-0.56636316,0.06920305,0.87187475,0.2852061,-0.05579868,-0.10066854,-0.14071025,-0.46243957,-0.16422397,0.11062072,0.34490496,0.58051336,0.01777405,0.063678585,0.14106065,-0.08546934,-0.03769084,-0.05073335,-0.3020608,0.12693787,-0.21007556,0.45826933,0.6304452,-0.13992241,0.31366378,-0.044964544,0.2578119,-0.14161333,-0.4761041,0.65423405,0.7891268,-0.12716453,-0.121281825,0.3032208,0.33810797,-0.17632295,0.33974165,-0.57400554,-0.16790798,0.34725484,-0.12325791,-0.2634394,0.12573494,-0.22826603,0.026614279,-0.70677954,0.24674675,-0.24576628,-0.34765857,-0.50915396,-0.14850177,-3.8178072,0.0418646,-0.21396083,-0.32863885,-0.045310505,0.096168235,0.35172108,-0.5368079,-0.52170473,0.110465646,0.020882133,0.4832308,-0.009105237,0.12687247,-0.38693458,-0.0017621573,-0.44374,0.26279998,0.05617642,0.20768657,0.10598208,-0.4816118,0.031578615,-0.19112849,-0.45566538,0.03407821,-0.38993353,-0.38373658,-0.23407315,-0.39447036,-0.32675523,0.6668488,-0.20495006,0.067315996,-0.08832534,-0.056299247,-0.2259531,0.35781208,0.19819462,-0.029824216,-0.02784501,0.026644029,-0.022216598,-0.29307607,0.17699721,0.03709221,0.23039813,0.3045532,-0.014996804,0.043578282,0.35683265,0.5133405,-0.14972827,0.67021513,0.5408718,-0.18549696,0.22556233,-0.32439113,0.004964955,-0.30823025,-0.3715565,-0.14705487,-0.30074123,-0.59217596,-0.12549509,-0.2850417,-0.6490296,0.3091573,0.03361319,0.10465045,-0.025778782,-0.03194097,0.37375918,-0.21078917,0.22601047,-0.024497058,-0.028756447,-0.53833693,-0.26232633,-0.57160306,-0.38198352,0.25155294,0.8610672,-0.17717841,-0.25110462,-0.08364985,-0.20357056,0.056391574,-0.011062678,-0.08457717,0.1786585,0.22285864,-0.14009166,-0.68214464,0.5587427,-0.17699164,-0.006670367,-0.6404563,0.15546003,0.497005,-0.4291339,0.43898058,0.24234219,0.043631233,-0.030115977,-0.44376525,-0.06707177,-0.060702905,-0.26218256,0.3642654,0.07473485,-0.7621087,0.3145402,0.29016274,-0.23782389,-0.6042367,0.5580789,0.08863224,-0.2715574,0.015375772,0.26393473,0.0570522,-0.0068556303,-0.4021125,0.2601039,-0.5402055,0.07851815,0.35840333,-0.009888218,0.24593747,-0.10926472,-0.058691572,-0.5728455,-0.044593327,-0.31127647,-0.18426187,0.19350775,0.08422357,0.17282483,0.22377989,0.14891285,0.3150922,-0.17872483,0.15294898,0.10322697,-0.16617149,0.32764333,0.3561204,0.34719482,-0.44223303,0.47614655,0.00872688,-0.2278555,0.18977965,0.04179509,0.3774745,0.2772544,0.3950574,0.111256614,-0.20924571,0.32360986,0.6959349,0.19468117,0.3793753,-0.08346817,-0.3069777,0.23796517,0.14971283,0.18244809,0.17511925,-0.4892928,0.018436529,0.017710928,0.25712597,0.344138,0.10044318,0.28560323,-0.08167225,-0.3325166,-0.045285918,0.08129539,-0.10913531,-1.0799819,0.4512028,0.30659348,0.8170342,0.5651067,-0.096578084,0.052968226,0.66425085,-0.06815271,0.107946485,0.31404763,0.023036636,-0.56054395,0.4567545,-0.7430699,0.35813728,0.04826456,-0.069612436,0.0037453105,-0.078352265,0.25707886,0.7755944,-0.1926683,0.02786794,-0.19225952,-0.3558074,0.22613727,-0.21836632,0.096154705,-0.45147622,-0.43020585,0.5137182,0.45189252,0.19979958,-0.15392014,0.07656212,0.024686556,0.010219075,0.045495313,0.05653403,0.1349789,0.12992464,-0.6850989,-0.34248072,0.502271,-0.4354574,0.076226756,-0.039429538,-0.19984806,0.1317011,-0.23310024,-0.000922136,-0.007200945,-0.575579,-0.053752013,-0.029837757,-0.21901362,0.46559006,-0.26683986,0.29260877,0.06571163,0.09046039,-0.34796032,0.31691265,0.060036495,0.6363139,-0.0766222,-0.07351753,-0.50172466,0.09499475,0.14874075,-0.15339819,-0.111278154,-0.23581956,-0.08563559,-0.5315812,0.42456663,-0.024545662,-0.37299463,0.04424714,-0.20596203,0.0435728,0.6249589,-0.22093017,-0.30854854,-0.1137445,-0.092467666,-0.22448164,-0.13921705,-0.15380178,0.13035089,0.14647163,-0.002787061,-0.05993629,0.04550415,-0.15950295,0.38675985,0.14096321,0.32938334,0.26120383,0.07744853,-0.35203254,-0.074404046,0.085288495,0.38777483,-0.0027822554,-0.00325761,-0.23043343,-0.5043327,-0.4343109,0.07609382,-0.11373958,0.4683214,0.092587456,-0.22723113,0.4509095,0.05133113,1.190038,0.061025493,-0.28022966,0.022775456,0.48775,0.048295412,0.047853634,-0.4201688,0.7421515,0.5511458,-0.14040945,-0.1770041,-0.1285636,-0.21540913,0.20045352,-0.12524602,0.05162185,0.0661386,-0.74465007,-0.32116112,0.20112091,0.16001844,0.1730653,-0.018217843,-0.12108435,0.19505236,0.115728274,0.44062525,-0.50329596,-0.17015694,0.3248243,0.23791207,0.092591256,0.21210326,-0.35682362,0.3729586,-0.36418986,0.08811496,-0.13405363,0.19276476,-0.18255605,-0.15249534,0.16337168,-0.18766084,0.33073053,-0.17813146,-0.4157233,-0.29116485,0.57897526,0.273036,0.2645294,0.68205607,-0.17445143,0.09714066,0.051366262,0.57246304,0.99336684,-0.26974532,0.006000558,0.376956,-0.29336575,-0.60119706,0.25143215,-0.11982484,0.16563283,0.0260113,-0.24334703,-0.41902438,0.39975888,0.06376065,-0.005130873,0.10211431,-0.71747804,-0.20032129,0.31685573,-0.17041212,-0.3011832,-0.3497461,0.19762093,0.67120576,-0.33932543,-0.2090821,0.16358641,0.25404063,-0.30948865,-0.51529294,-0.115457416,-0.37971824,0.2974953,0.15470177,-0.3196406,-0.13458768,0.09702438,-0.41826868,0.25293532,-0.047530707,-0.3553085,0.043250803,-0.121124655,-0.072867185,0.8595285,-0.2151047,-0.01678238,-0.66611373,-0.33692598,-0.73850536,-0.42924884,0.39786407,0.14082937,-0.057603966,-0.4481929,-0.16079591,-0.086223654,0.07263685,-0.12224874,-0.43287137,0.44570157,-0.010452025,0.31633353,0.029178854,-0.8591997,0.02655756,0.18671556,-0.10902269,-0.57331836,0.49714273,-0.13258883,0.6787336,0.101483844,0.12430021,0.34919345,-0.2768302,0.10794826,-0.36384484,-0.24007438,-0.6887463,0.28202152 +384,0.44850278,-0.18615955,-0.47189382,-0.11289778,-0.4705565,0.04662679,-0.31288883,0.2199559,0.3078071,-0.23867658,-0.07725166,-0.041361924,-0.0035764417,0.1872627,-0.075739324,-0.6674762,-0.31074917,0.12983496,-0.905875,0.5893266,-0.5307893,0.33420536,0.11905865,0.27867943,0.2177006,0.4295022,0.16524425,-0.14265999,-0.17439362,-0.051729593,-0.17848828,0.24137707,-0.5864043,0.11965025,-0.151284,-0.27927506,-0.007255719,-0.42299628,-0.29898226,-0.6781657,0.042435814,-0.81880563,0.49511236,-0.13417816,-0.1324631,-0.10190773,0.16989702,0.40412927,-0.4815468,0.18244435,0.33608562,-0.21928768,-0.1650399,-0.2603918,-0.0011993436,-0.46529365,-0.4748617,-0.13358296,-0.62649345,-0.19733918,-0.08680555,0.26590887,-0.24774796,0.022912113,-0.21883292,0.33745137,-0.46703044,-0.03845015,0.22098714,-0.189354,0.1926245,-0.550426,0.0751438,-0.12469187,0.46673304,0.024654543,-0.22434828,0.34662756,0.30009627,0.39739764,0.33031026,-0.36446565,-0.26248452,-0.1282128,0.18643644,0.34915763,-0.16008443,-0.28845727,-0.26348746,0.037764892,0.40574175,0.15732917,0.024628485,-0.33320054,-0.021999916,-0.08189296,-0.17756031,0.5060511,0.48129058,-0.29700625,-0.2932208,0.3217926,0.45959926,0.25889057,-0.243315,0.07559967,-0.017607044,-0.4371919,-0.09472603,0.29718006,-0.010385182,0.37736213,-0.16617101,0.11461225,0.70250756,-0.06495635,-0.044140853,0.02858771,-0.06172493,-0.09007179,-0.14035466,-0.09003679,0.16124749,-0.529999,-0.0014026866,-0.25611487,0.49352893,0.21569817,-0.6600466,0.39984584,-0.5468316,0.17539138,0.011585514,0.61662287,0.7678239,0.5196856,0.26635718,0.77729654,-0.24764243,0.23937404,-0.037610214,-0.40070784,0.055134606,-0.23464483,0.09374512,-0.5054108,0.13545197,-0.32426772,0.088069804,-0.028328104,0.31569353,-0.5203773,-0.11526553,0.11845225,0.75530154,-0.3200075,-0.073502764,0.74238956,1.1299605,1.017249,0.03989187,1.1700444,0.33239797,-0.28062072,0.012369475,-0.37920514,-0.5733849,0.1878802,0.36115837,-0.24445051,0.51920193,-0.19250631,0.059881665,0.34184787,-0.3978216,0.046032187,0.0076977294,0.2886994,0.098351926,-0.10245613,-0.28720757,-0.053100344,-0.023474878,-0.033795673,0.18381299,0.13990158,-0.31240445,0.3354133,0.06311555,1.3185148,-0.17307048,-0.052044585,0.108836286,0.44748846,0.34788686,-0.18377681,0.04091949,0.4431361,0.4719998,-0.053155072,-0.61172205,0.22444797,-0.3834388,-0.35685566,-0.1529454,-0.24526155,-0.030214015,0.03255148,-0.38067633,-0.26301652,0.024210887,-0.3443657,0.38630196,-2.7138574,-0.23110847,-0.15627086,0.2393653,-0.31265318,-0.2538047,-0.10840759,-0.6015012,0.26383138,0.16488871,0.4456918,-0.6518197,0.5958545,0.5241016,-0.6029582,-0.1493484,-0.63721454,-0.056361888,-0.013619703,0.652711,0.0281058,-0.22985727,-0.11034473,0.15846097,0.61673397,-0.016401151,0.19968913,0.50827605,0.4106766,0.113984555,0.6603305,0.093446955,0.6262257,-0.26987004,-0.17864957,0.52512604,-0.34323284,0.17440446,-0.049078517,0.12790836,0.54622793,-0.4692713,-0.88812804,-0.5717738,-0.1684933,1.0593843,-0.39257646,-0.44035226,0.15858668,-0.05549123,-0.082127035,0.24544188,0.5239177,-0.025497572,0.08204786,-0.78117174,0.15119298,-0.07622467,0.24254936,0.105092615,-0.005957421,-0.28437933,0.6886941,-0.043612957,0.6066097,0.25701421,0.29921448,-0.1318579,-0.4754769,0.117095076,0.9808426,0.3812682,-0.046584226,-0.1648262,-0.25477734,-0.093351744,-0.16433077,-0.07492789,0.5921214,0.68150306,-0.08533921,0.1363836,0.3281152,-0.052180193,0.060498517,-0.21297573,-0.18710569,-0.06871122,0.13560237,0.33003584,0.7239896,-0.08488748,0.56367356,-0.14653845,0.33470327,-0.021819398,-0.6064267,0.73921305,0.78769547,-0.1968045,-0.12363156,0.41716394,0.42279777,-0.20907472,0.48707294,-0.6143084,-0.3379797,0.5898641,-0.20450707,-0.3188489,0.3634679,-0.30937073,0.2441095,-0.77109784,0.28009284,-0.35142976,-0.35985166,-0.47807553,-0.21131705,-2.8650527,0.07091489,-0.11714387,-0.12849179,-0.28398877,-0.1232149,0.3000586,-0.6477492,-0.5846475,0.1301206,0.2376571,0.490117,-0.06592057,0.14995787,-0.2847643,-0.14354466,-0.06598874,0.32222533,0.17805405,0.27495033,-0.18084161,-0.42200732,-0.13712938,-0.04291336,-0.48319322,0.070345685,-0.62027335,-0.39887148,-0.07999577,-0.539147,-0.16888677,0.5933167,-0.39948723,0.03965471,-0.25686884,0.08507141,-0.14522855,0.13489217,0.20825505,0.13442221,0.16378221,-0.07213887,0.05190827,-0.2126062,0.3082003,0.06614628,0.27189234,0.15255973,0.06258047,0.12846236,0.34749532,0.6619057,-0.2565214,0.96479136,0.3289158,-0.20476343,0.28718486,-0.2514552,-0.26237458,-0.68942887,-0.39802995,-0.13923436,-0.46264675,-0.5593873,-0.022644838,-0.31368256,-0.8960139,0.56890327,-0.019299746,0.31981882,-0.005574724,0.2240806,0.51010257,-0.09958397,0.062123775,-0.1299368,-0.18965551,-0.42145953,-0.33596587,-0.6658631,-0.43374568,0.10670881,1.0618092,-0.22343229,0.038801495,0.0041787555,-0.32526106,-0.020504935,0.066837914,0.1307739,0.29955584,0.44974816,0.085981175,-0.5630366,0.26511276,-0.1027361,-0.012871999,-0.4984868,0.17675227,0.6201545,-0.6806565,0.5763725,0.24339117,0.06511205,-0.008257256,-0.44365698,-0.1513923,-0.0148456795,-0.16182308,0.5434088,0.18189357,-0.6815842,0.49306214,0.23340058,-0.38948226,-0.7616974,0.32060555,-0.004243153,-0.20359749,-0.07268039,0.37405288,0.051079623,-0.08849813,-0.2701741,0.26117754,-0.34281024,0.27742994,0.1543677,-0.14395303,0.1338254,-0.0030642275,-0.5380242,-0.77138907,0.07662951,-0.4753336,-0.33939767,0.2616926,-0.04095672,-0.0068347314,0.0068185665,0.11138312,0.37917086,-0.27978593,0.15292463,-0.009575253,-0.19877058,0.23395334,0.5067097,0.20955731,-0.37348127,0.51442456,0.21282099,-0.24397977,0.06515188,-0.032141376,0.3069806,-0.011091302,0.28187698,0.066552766,-0.1021669,0.44450638,0.70694894,0.23447716,0.46197942,0.043127034,-0.23574734,0.32492948,-0.04495468,0.23128802,-0.07509234,-0.46951175,-0.040714614,0.12228959,0.21368907,0.3823551,0.3979584,0.31504938,-0.02377642,-0.15403435,-0.022134542,0.17704369,-0.04047605,-1.2571459,0.25886077,0.25357983,0.8990974,0.51438713,0.054459494,-0.16140929,0.6297848,-0.33439907,0.027081707,0.4199301,-0.115272045,-0.35401553,0.64816445,-0.49538836,0.26446924,-0.11661619,0.05144767,0.098383114,0.07417938,0.3434316,0.79448205,-0.22554962,-0.015686214,-0.1205235,-0.09528487,-0.04706725,-0.18711255,0.024964644,-0.3229282,-0.45712113,0.8085645,0.32634774,0.3838582,-0.23153555,-0.026867086,0.043292698,-0.17335795,0.1506573,0.03341879,0.013084833,0.12625182,-0.3573945,-0.28433162,0.5496987,-0.18919465,0.0063369977,-0.13140216,-0.2910187,0.026269468,-0.14469756,0.05674254,-0.08826785,-0.70834106,-0.04485536,-0.33089167,-0.45722002,0.40594476,-0.19448459,0.031201705,0.105604075,0.05678594,-0.1872273,0.29179332,0.15856016,0.66157085,0.06521997,-0.1795069,-0.28348175,-0.026631903,0.21555653,-0.22367087,0.039944388,-0.37347126,0.097813815,-0.6274057,0.60938096,-0.21692273,-0.44706815,0.17779142,-0.29153323,-0.022729432,0.5187334,-0.097213075,-0.2652567,0.31631458,-0.06862079,-0.4279637,-0.11670755,-0.27531192,0.27921644,0.36339098,-0.030958967,-0.08055015,-0.13315356,-0.246114,0.54560035,0.09994079,0.49194565,0.30188632,0.03626736,-0.24406901,0.07763881,0.3162621,0.46881622,0.21255884,0.053683367,-0.31767362,-0.40581036,-0.4032581,0.22636084,-0.1443828,0.19497137,-0.049755476,-0.3414156,0.90653473,0.047806762,1.2694826,0.0096569555,-0.44471636,0.01800333,0.5340503,-0.09775038,-0.047657162,-0.2842621,0.9398338,0.63034403,-0.06771942,-0.028923241,-0.42505646,-0.25836176,0.21716194,-0.32505876,0.008104911,-0.109330155,-0.592102,-0.38305223,0.2952732,0.08855552,0.027621578,-0.06454012,-0.041037798,0.048114788,0.07321078,0.25992203,-0.6984888,-0.2132061,0.1671459,0.15656538,-0.08353546,0.106823035,-0.42424372,0.34733927,-0.6492038,0.10498498,-0.38707605,0.11238603,-0.08562078,-0.22633988,0.19964266,-0.0533799,0.29038692,-0.43273112,-0.4572171,-0.2462519,0.49473304,-0.07384395,0.11544933,0.66034997,-0.31851202,0.15264976,0.19742054,0.62305486,1.1285734,-0.46506304,0.10832079,0.34454447,-0.42025805,-0.5510142,0.3248317,-0.3052591,-0.0588552,-0.032721065,-0.4515735,-0.49972612,0.3151249,0.1242058,0.18892823,0.15685214,-0.7280948,-0.09578427,0.35327873,-0.29656562,-0.17980956,-0.19358721,0.32409522,0.8489141,-0.38143045,-0.46695998,0.08535447,0.3074142,-0.27623746,-0.51230234,-0.10815842,-0.22327664,0.3373239,0.2441776,-0.15567577,-0.034227543,0.14468396,-0.5301674,0.07461586,0.33877417,-0.3454762,0.09184937,-0.11716638,-0.042598363,0.84810144,-0.22086407,0.027876012,-0.65251493,-0.43050814,-0.84154344,-0.4866996,0.100340426,0.17033891,-0.0043280404,-0.5152063,0.049822416,-0.2280817,-0.22015287,0.15395257,-0.6063627,0.4114996,0.11336633,0.53574765,-0.37398657,-0.9875928,0.044774044,0.22512172,-0.12486259,-0.60528517,0.67297477,-0.05548993,0.8269415,0.08282194,-0.0836622,0.0085278675,-0.4873591,0.06127034,-0.40013918,-0.05217778,-0.79783404,0.054251656 +385,0.35054532,-0.10264499,-0.5272358,-0.07333874,-0.16091532,0.10645963,-0.25474313,0.37639564,0.20150734,-0.34510213,-0.061664246,-0.12174579,0.033146624,0.24955411,-0.07702443,-0.397134,-0.027573593,0.1226847,-0.42415184,0.39449513,-0.43000707,0.32834715,-0.15440567,0.4288754,0.18058538,0.36800358,0.004736149,-0.1092586,-0.089811794,-0.14568983,-0.19590937,0.3559081,-0.2652658,0.01577725,0.018813642,-0.24856058,0.09044311,-0.40090287,-0.3363863,-0.70859164,0.34314257,-0.7496962,0.46196193,0.037252538,-0.20002492,0.2831141,0.1937259,0.46467572,-0.25352198,0.035387866,0.26965034,-0.15879965,-0.057627454,-0.16506048,-0.18505353,-0.4110342,-0.47027284,-0.036600366,-0.43009868,-0.30844435,-0.30796713,0.14805211,-0.25091097,-0.1031963,-0.05059373,0.48680675,-0.5196947,0.03525501,0.21939228,-0.20243715,0.2741811,-0.56625557,-0.0964388,-0.053535905,0.38565928,-0.14950386,-0.06669666,0.1512584,0.34286746,0.32742792,-0.038457647,-0.1523943,-0.39774877,-0.1440349,0.08952022,0.47720978,-0.20183171,-0.41837952,0.0016966263,0.037274104,0.06405766,0.2754503,0.14060625,-0.21583636,-0.07901504,0.14235623,-0.2498469,0.24805422,0.33695304,-0.34456146,-0.14721942,0.3682311,0.5179056,0.16459551,-0.17935811,-0.030900208,0.03433485,-0.4505186,-0.11782119,0.033802677,-0.28534257,0.4257264,-0.08949568,0.3527119,0.716758,-0.14006427,0.070499904,-0.10613774,0.057268873,-0.14618436,-0.25651297,-0.24022214,0.087151185,-0.36400706,0.28078535,0.01643575,0.78013384,0.12285651,-0.5817878,0.293304,-0.56521314,0.10617157,-0.20868212,0.39149123,0.5243409,0.29789177,0.40437856,0.6175133,-0.349485,0.09199225,-0.07853539,-0.48667124,0.0008229415,0.0287156,-0.1006749,-0.5798434,0.06213408,0.001793023,-0.11749258,0.08339731,0.31378883,-0.5071814,0.06875264,0.17981987,0.8903796,-0.3216206,-0.13647394,0.54282135,0.97486454,0.8738857,-0.0012544801,0.9490939,0.20531943,-0.319548,0.18224287,-0.41855878,-0.52436936,0.276625,0.3753914,-0.33361977,0.23044287,0.15362087,-3.973643e-06,0.472133,-0.31629428,0.059344966,-0.120250106,-0.011817662,0.22352338,-0.07333107,-0.42703724,-0.21674512,0.0038902601,-0.068629436,0.16715011,0.23604487,-0.18697158,0.24293788,0.013006385,1.830352,-0.03727317,0.10301965,0.09750584,0.47163334,0.19026877,-0.11571153,-0.052975737,0.5305231,0.3724906,0.12594754,-0.5902086,0.20981078,-0.23447566,-0.5096455,-0.10098745,-0.3075482,0.012971576,0.12232354,-0.49505523,-0.0839714,-0.17815271,-0.26338112,0.38001385,-2.8320668,-0.06314812,-0.14290066,0.27943403,-0.25546712,-0.32150945,0.09364574,-0.3753722,0.36417338,0.28107145,0.39646706,-0.5892151,0.3919135,0.41398683,-0.47925416,-0.11491089,-0.54381585,-0.2102692,-0.06298981,0.24552082,0.019982386,-0.060504008,-0.035023235,0.19550835,0.38567588,-0.10311278,0.1464723,0.275641,0.40954506,0.14582056,0.6516895,0.055621095,0.5639441,-0.03741013,-0.22243829,0.25622594,-0.23852442,0.17559548,-0.020367904,0.058962647,0.3249181,-0.2688323,-0.85061705,-0.6874197,-0.1997569,1.2549099,-0.26529953,-0.36397055,0.28143886,-0.23758346,-0.31017172,-0.03607653,0.44604757,-0.08563115,-0.17948173,-0.7899802,0.17069206,-0.18567027,0.18678102,0.11884232,-0.039314706,-0.48874867,0.5753666,-0.03686055,0.5415268,0.34281683,0.20559318,-0.17392395,-0.28085816,-0.049745012,0.79206175,0.31189126,0.11962021,-0.14042439,-0.24425247,-0.28809386,-0.10148044,0.0962565,0.49083653,0.71228856,0.06310757,0.15292458,0.2323771,-0.11211609,0.039964907,-0.18552858,-0.26635417,0.07168518,-0.0179434,0.5184398,0.37979907,-0.19310942,0.48062798,-0.067789994,0.29610264,-0.18633755,-0.26987717,0.38451546,1.0421579,-0.22298566,-0.27477834,0.5494039,0.45389155,-0.2928957,0.25356534,-0.6256624,-0.10009327,0.57288325,-0.18064533,-0.49049786,0.1816954,-0.30287373,0.16222474,-0.91143507,0.19946954,-0.16332461,-0.44767115,-0.45894888,-0.09461192,-3.945421,0.15596907,-0.34319007,-0.22871044,-0.1257508,-0.119476505,0.1944508,-0.66150266,-0.4790016,0.103605986,0.07395646,0.6381131,-0.117190756,0.13529888,-0.26608953,-0.2102837,-0.2297246,0.13855341,0.031994537,0.35157612,0.009894282,-0.5197912,0.02266037,0.045963403,-0.47685614,0.11763408,-0.59953743,-0.3681907,-0.049890295,-0.5677608,-0.27232495,0.5665999,-0.2950427,0.011749911,-0.22844772,0.02833523,-0.14150563,0.34044167,0.18596111,0.10906125,0.022465134,-0.044698615,0.05026526,-0.314067,0.30618212,0.007608664,0.23679402,0.19347292,0.10466916,0.11093195,0.41736028,0.52559066,-0.07447281,0.7446156,0.47979668,-0.177395,0.26224577,-0.40129507,-0.21430959,-0.5015292,-0.39614055,0.00346333,-0.3665758,-0.5035895,-0.16292463,-0.44795334,-0.66953295,0.5411077,-0.01755611,0.15600829,0.029330263,0.33724433,0.49148986,-0.16932772,-0.058694147,0.062376186,-0.13397278,-0.5542718,-0.129957,-0.5183516,-0.34182945,0.18704656,0.77036494,-0.26924053,0.070990674,-0.011175762,-0.21682781,-0.108179025,0.0778688,0.13542554,0.286445,0.49835014,-0.22597955,-0.6727254,0.446607,-0.13158734,-0.1994366,-0.6055452,0.190448,0.5579836,-0.6184429,0.632984,0.30374378,0.16390972,-0.11440048,-0.5239149,-0.17629464,0.12093479,-0.21448784,0.37676004,0.19257364,-0.7011557,0.39794433,0.40680048,-0.12321411,-0.5580603,0.550619,-0.06239787,-0.39114487,-0.025230369,0.3606785,0.12564664,-0.033657014,-0.25644138,0.18520007,-0.4344537,0.24627382,0.2567091,-0.1529984,0.22555852,-0.2011017,-0.03398396,-0.6641907,-0.016473632,-0.42623004,-0.24496572,0.249546,0.109420255,0.13740817,0.22210635,-0.049879488,0.33603603,-0.32754388,0.023376746,-0.079992995,-0.0977825,0.19747901,0.40056565,0.39115104,-0.45098782,0.46448594,-0.019073619,-0.17360792,-0.06590239,0.052249327,0.44893512,-0.0028640905,0.41763538,-0.11593281,-0.26044744,0.37067363,0.7000836,0.19482677,0.5301026,-0.03392671,-0.09159856,0.14223951,0.07522189,0.055878386,0.08786937,-0.6305409,0.02745777,-0.17124303,0.19829673,0.5512608,0.21469767,0.32441458,-0.08703396,-0.36028376,0.051889736,0.20967683,-0.06958601,-1.0124122,0.48508373,0.24002157,0.7548285,0.34388754,0.013946267,0.0051740725,0.67706895,-0.2897205,0.10964758,0.34112868,0.062418986,-0.5163904,0.49062034,-0.7235332,0.3591175,-0.026425295,-0.055380117,0.029283376,-0.14725667,0.3162063,0.7604191,-0.15927163,0.018350072,0.116140015,-0.28771913,0.10482235,-0.35194317,-0.06088888,-0.56565875,-0.25290543,0.4223097,0.58792996,0.2870037,-0.13989156,0.033891257,0.17167212,-0.12239271,0.11547801,0.122858986,0.18166704,0.106281824,-0.73254913,-0.3441966,0.4947858,0.011656737,0.10467462,-0.12397125,-0.1933031,0.2625582,-0.19439714,0.0075804633,0.030373275,-0.48920193,0.0546261,-0.21291488,-0.43091437,0.41367343,-0.006259565,0.25099793,0.1275033,0.01354845,-0.24648994,0.49942556,0.10410605,0.6811656,0.09311078,-0.058856726,-0.5346511,0.08024497,0.067358874,-0.07465851,-0.23199923,-0.377255,0.044107176,-0.5973165,0.4011304,-0.003039509,-0.32766595,0.0032895803,-0.2053095,-0.016434517,0.5331936,-0.0925,-0.122750856,-0.026861038,-0.157538,-0.25218183,-0.24369009,-0.20206429,0.19430926,0.078582555,0.033083856,-0.20214829,-0.07590259,-0.2607598,0.4608614,-0.039015956,0.4274739,0.41627118,-0.048134945,-0.19344044,-0.25486425,0.11982748,0.38155222,-0.19024356,-0.11975444,-0.2579899,-0.5241549,-0.28921852,0.065537974,-0.07371151,0.46402544,0.16678311,-0.12799717,0.7709353,-0.0814358,1.0765901,-0.0059670787,-0.3938409,0.045896333,0.481946,0.028182097,0.07523389,-0.35904095,0.8383024,0.58195853,0.034294207,-0.13923441,-0.32421863,-0.046289004,0.1838792,-0.16445312,-0.08484397,-0.019216113,-0.588315,-0.2769989,0.242453,0.19834144,0.22688071,0.026443118,0.14398827,0.20376097,0.018519463,0.28923878,-0.39991772,-0.20084316,0.24868867,0.28168955,-0.030704807,0.082507625,-0.5322723,0.4793568,-0.3750554,0.03051082,-0.37493026,0.28152147,-0.16829756,-0.30601946,0.2264654,-0.08717983,0.35021332,-0.24217574,-0.27076906,-0.15204452,0.44799128,0.17058145,0.15261017,0.570757,-0.25992194,0.10984944,0.02590347,0.5573916,0.9365172,-0.22814696,-0.0035516818,0.3788628,-0.35148647,-0.5782388,0.24616845,-0.27975428,0.00012212197,0.1637369,-0.178942,-0.4475413,0.28853807,0.15992838,-0.020584345,-0.039637137,-0.47571176,-0.16690446,0.2847617,-0.27941486,-0.19783321,-0.21292101,0.20982952,0.5466768,-0.4138298,-0.37737432,-0.019203926,0.3098393,-0.041814215,-0.47273967,0.0046843886,-0.3244823,0.36585724,0.1529058,-0.3514547,-0.18261383,0.033127658,-0.2679709,0.13308571,0.24723364,-0.3423794,0.12214088,-0.34006804,-0.10154384,0.8124396,-0.123958975,-0.0039459704,-0.60366756,-0.26973626,-0.7304161,-0.376594,0.36050168,-0.028470643,0.006654664,-0.5256073,0.0012006343,-0.060855806,-0.15892357,-0.13944179,-0.38440618,0.4145142,0.07112969,0.46431234,-0.08589358,-0.6525227,0.06871036,0.04721675,-0.31683695,-0.6084433,0.6295541,-0.13840695,0.9053986,-0.035758425,0.074478164,0.3137696,-0.35082817,-0.047339685,-0.27535278,-0.2557747,-0.8845133,-0.07058258 +386,0.41594556,-0.13296951,-0.3204371,-0.15966667,-0.21045326,0.07181232,-0.14989659,0.42499512,0.16989331,-0.5347624,-0.1928748,-0.15376158,-0.0029024244,0.17147675,-0.1911599,-0.5196776,0.028058577,0.12482793,-0.3560848,0.53430426,-0.43751496,0.36469948,0.12007679,0.26359957,0.05852061,0.25529876,0.20991677,-0.109229706,-0.1399793,-0.32434005,-0.15136965,0.40868282,-0.5453009,0.2323025,-0.19262467,-0.31170815,-0.037789892,-0.36910588,-0.22316314,-0.71961915,0.09083494,-0.77178496,0.45933005,-0.049483284,-0.34288624,0.3248687,-0.014635078,0.24230008,-0.11425854,0.08979882,0.040911935,-0.21794817,-0.05486485,-0.14238901,-0.21301985,-0.35950738,-0.5046219,0.009033122,-0.4592945,-0.30154693,-0.3640509,0.11397512,-0.38444698,-0.12183733,-0.06987718,0.431091,-0.5405231,-0.055306792,0.14763273,-0.091979265,0.45352978,-0.4666266,-0.1132152,-0.17153336,0.14515145,-0.255562,-0.16060032,0.14172183,0.3501194,0.567052,0.018413862,-0.1314521,-0.3118601,-0.1762657,0.22264251,0.3997847,-0.13641602,-0.42380854,-0.06968624,-0.064902015,0.19613439,0.22762752,0.06632414,-0.14683929,-0.201508,0.08194106,-0.24613978,0.18007837,0.38876355,-0.40969542,-0.38009498,0.29443753,0.58350307,0.037221774,-0.08083737,0.10790315,0.00918089,-0.33942863,-0.15305933,0.14654599,-0.1789239,0.46963614,-0.12929705,0.24249345,0.61375266,-0.17470007,0.076602474,0.0132846115,0.048307776,-0.074672,-0.19493069,-0.15604901,0.2604189,-0.5030337,0.098997094,-0.2638388,0.8034667,-0.024760647,-0.7281082,0.24938484,-0.47779578,0.07399333,0.026740806,0.6150259,0.68428767,0.40655786,0.15723133,0.5413684,-0.39494503,0.027822841,-0.16543573,-0.29350388,-0.062754154,-0.13089362,-0.062464766,-0.4746733,-0.081832774,0.13796622,-0.07199289,0.024946062,0.24195029,-0.61019516,-0.016624684,0.2009244,0.79203606,-0.2832002,-0.04932135,0.774668,0.96134585,0.8649466,0.1144315,1.1461756,0.19425449,-0.13652338,0.0997798,-0.28787735,-0.45655537,0.33130094,0.4223794,-0.020097153,0.1857088,0.060906507,0.05782266,0.30243593,-0.4594631,0.10217301,-0.27956364,0.18391708,-0.05534608,-0.12685356,-0.4522172,-0.19235484,0.013757606,0.16806234,-0.08138911,0.26198906,-0.08408397,0.42134216,0.1061292,1.3180226,-0.08786054,0.17362577,0.114647865,0.32570994,0.15967911,-0.12988463,-0.018579157,0.21586189,0.3513905,0.17838106,-0.5132649,0.028704107,-0.14342676,-0.53492624,-0.18518162,-0.34041464,0.021371333,-0.053849675,-0.37904373,-0.076006666,-0.11384494,-0.42372462,0.42680883,-2.7206962,-0.09987227,-0.18260457,0.24062999,-0.2381669,-0.30739194,-0.06880648,-0.50424933,0.3950995,0.37933084,0.38766858,-0.6187813,0.3260612,0.44059163,-0.39140555,-0.0897368,-0.60665095,-0.109298825,-0.035197236,0.28274238,0.008033577,-0.10710009,-0.120003834,0.094365425,0.53771466,-0.053289067,0.09022608,0.2762057,0.18629424,0.10075995,0.365549,0.071102604,0.36270413,-0.15935706,-0.21445903,0.30761477,-0.34059185,0.1483066,-0.05496488,0.14948587,0.3167091,-0.4796295,-0.7829845,-0.8195981,-0.63004494,1.264008,-0.1783733,-0.4751976,0.31312266,-0.00068225263,-0.32720172,-0.16469221,0.41496876,-0.111683525,0.076289885,-0.7601215,0.024383353,-0.041005395,0.2661079,-0.027094936,-0.020249192,-0.4769167,0.5588715,-0.23328765,0.36237937,0.3645052,0.2211707,-0.17892818,-0.37952435,0.0008263747,1.1910596,0.4951006,0.11108374,-0.25602823,-0.2739064,-0.4019491,0.06551325,0.11936345,0.419048,0.81763685,0.010463031,0.14579882,0.2854602,-0.05150117,0.10030452,-0.20831315,-0.22989419,0.0004622698,0.091909125,0.5980291,0.3055004,-0.095192,0.58019453,-0.08335081,0.28092292,-0.17576183,-0.40829426,0.4282336,0.7862975,-0.13226499,-0.14162056,0.7034384,0.48266417,-0.29657415,0.4531147,-0.506622,-0.3541795,0.43437624,-0.19971961,-0.48018378,0.24630491,-0.32490075,0.17222641,-0.9147377,0.28955778,-0.23704694,-0.7366695,-0.5615462,-0.1618751,-3.380588,0.2537594,-0.020239519,-0.283528,-0.04663224,-0.14858767,0.350235,-0.54632014,-0.43991286,0.09831705,0.09452021,0.6487926,0.01462461,-0.03556273,-0.20060712,-0.3613247,-0.2382292,0.17540468,0.15759334,0.21852382,-0.12669009,-0.36111528,-0.06903078,-0.24645445,-0.38373536,0.0777805,-0.43555743,-0.62589926,-0.16123705,-0.5069151,-0.27669868,0.6498291,-0.3834883,0.0737636,-0.30801657,-0.019252146,-0.0476799,0.3192875,0.22816344,0.17678685,0.058724426,-0.040335394,-0.031580128,-0.32755485,0.26014823,0.122069165,0.15703064,0.41243747,-0.241531,0.31245264,0.5186102,0.473738,-0.017403984,0.856807,0.462115,-0.11866434,0.3508773,-0.32317728,-0.37063166,-0.6335533,-0.28331006,-0.016943391,-0.40248236,-0.45569313,-0.12672347,-0.23375884,-0.7871647,0.56425744,-0.069349386,0.18355693,-0.18656246,0.36658576,0.45399052,-0.16695681,-0.1281498,-0.11859117,-0.10647693,-0.3414603,-0.3016216,-0.710984,-0.4809658,0.004567965,0.99882203,-0.14952059,0.16105199,-0.0038503646,0.010727604,0.005578065,0.16540441,0.059182417,0.13103758,0.39524564,-0.09858761,-0.6094162,0.52160674,-0.014862915,-0.210951,-0.615884,0.0904781,0.68549925,-0.6532345,0.35814926,0.32396486,0.03221885,-0.10914184,-0.5186737,-0.09893311,-0.15643229,-0.2903989,0.36098856,0.15848778,-0.70709676,0.43834648,0.326867,-0.06489787,-0.69594246,0.41335824,-0.09082743,-0.2984223,0.08546508,0.33617082,0.04010666,0.13437177,-0.09045787,0.24634436,-0.3808187,0.28686634,0.3107072,-0.08122079,0.50376934,-0.23320647,-0.15725191,-0.6813475,-0.018338358,-0.519225,-0.2853617,0.097941525,0.17913832,-0.0415516,0.35416985,-0.03739055,0.5224773,-0.22317982,0.15936178,-0.045899443,-0.37200516,0.3009635,0.451762,0.39859912,-0.21896076,0.6751862,0.12822393,-0.12640935,-0.46585166,0.0576279,0.54345876,-0.0034350078,0.332901,-0.1169788,-0.2676206,0.3461065,0.6917357,0.23164259,0.5090379,-0.050575472,-0.012030824,0.30408138,0.08678306,0.07986673,0.011964065,-0.34713528,-0.044429254,-0.17370084,0.007167812,0.3896801,0.13204971,0.35079032,-0.09993304,-0.17357302,0.09882196,0.2307888,-0.01742334,-1.0066311,0.29301637,0.15040436,0.7606051,0.522234,0.05978655,0.040310595,0.55670816,-0.28508195,0.11596243,0.27885067,0.014765684,-0.49296457,0.6678163,-0.7615942,0.42043433,-0.084781185,-0.05024492,-0.016054261,-0.20110632,0.43771157,0.8691046,-0.11954939,0.027749471,-0.107801594,-0.19442698,0.1809129,-0.375341,0.17084293,-0.4496265,-0.28090188,0.6509941,0.47210297,0.39844096,-0.16201058,0.0059764427,0.07078223,-0.09785371,0.28106123,0.020086015,0.18911843,-0.06193797,-0.4891305,-0.22974135,0.498983,0.0005080859,0.06411428,0.06429502,-0.20825809,0.22920719,0.07555238,-0.038754035,0.029857853,-0.47710323,0.09117357,-0.45121643,-0.3338272,0.53133446,-0.31067377,0.26249102,0.102191545,0.08932131,-0.22913978,0.1831698,0.3165588,0.5607781,0.20850913,-0.15487507,-0.21291202,0.31475565,0.13979611,-0.23446044,-0.22412801,-0.18592699,0.04568858,-0.77043027,0.32239476,-0.21595459,-0.35011417,0.25269127,-0.13798553,0.0328324,0.4378482,0.041652255,-0.063623406,0.09362214,-0.22033216,-0.17202047,-0.0765935,-0.14803538,0.32064417,0.0459963,-0.08203794,-0.055430364,0.019994205,-0.091485016,0.3712122,-0.007907578,0.28469747,0.29614592,0.039541133,-0.415908,-0.06910234,0.034356005,0.3551419,0.06116717,0.1074605,-0.092802115,-0.39233997,-0.29355735,0.05577445,-0.17662868,0.33233315,0.053268544,-0.28717214,0.8034899,0.036377057,1.093768,0.05679721,-0.31096166,0.08298907,0.42836374,-0.097456194,-0.049269654,-0.32155052,1.0026821,0.4776229,-0.10603037,-0.16021754,-0.30885032,-0.01943006,0.22057393,-0.17770334,-0.27548236,-0.023185236,-0.761963,-0.2573922,0.20860034,0.2649979,0.099571474,0.0008533875,0.03231249,0.2861625,0.08693342,0.36547843,-0.4237084,-0.041308444,0.34991786,0.18965694,-0.03243132,0.046607964,-0.27778044,0.36710218,-0.6321786,0.01272641,-0.217658,0.08904905,-0.18278423,-0.35784185,0.18963096,0.092151746,0.30071816,-0.2087845,-0.41260117,-0.2641651,0.47520238,0.057420537,0.050246514,0.5395533,-0.24919994,0.15947656,-0.05703367,0.31877652,1.1318599,-0.12892571,-0.0813045,0.34442836,-0.3486254,-0.5570252,0.32082474,-0.44424364,0.21441337,-0.056202713,-0.37077323,-0.30745703,0.20200929,0.2663443,-0.048860736,0.10852325,-0.3434522,-0.07684005,0.1512335,-0.33388776,-0.21318905,-0.28469548,0.22343321,0.5887238,-0.3044287,-0.33400232,-0.029178618,0.22739644,-0.32293513,-0.53349847,-0.04959051,-0.111223124,0.29606083,0.09413422,-0.408918,0.1016867,0.08880569,-0.4004571,-0.13479067,0.2328782,-0.3447086,0.057078432,-0.37293705,0.07376787,0.81725335,-0.09197722,0.07960473,-0.52012926,-0.49018842,-0.7254082,-0.3247945,0.58375794,0.15998732,0.066846676,-0.4860592,0.106400646,-0.16711618,0.10260216,0.0043105492,-0.29812476,0.40877002,0.252035,0.40090057,-0.08472548,-0.7013746,0.14990835,0.066073306,0.010788933,-0.48629397,0.51005775,-0.08191409,0.63419133,0.11994402,0.052109934,0.27426043,-0.59945625,-0.09322729,-0.15632442,-0.13789517,-0.6341201,-0.0038097014 +387,0.567862,-0.25396055,-0.53441715,-0.12439224,-0.07181092,-0.011439901,-0.217751,0.5307791,0.07386535,-0.52788734,-0.19862755,-0.10269634,-0.0789495,0.28326982,-0.13422732,-0.55527335,-0.12462803,0.14746459,-0.5179745,0.7818162,-0.3335291,0.30394486,0.054895338,0.45869648,0.3148944,0.26491964,0.451621,-0.055572692,0.075814575,-0.22012265,-0.035674673,0.010373705,-0.7272621,0.2786334,-0.26941454,-0.52476776,-0.042064156,-0.28800216,-0.34330308,-0.96664834,0.3451099,-0.8069172,0.5143491,-0.015810696,-0.4261465,0.3708603,0.048092816,0.24160506,-0.2736429,-0.0039763036,0.031500414,-0.24825884,0.099781126,-0.16331567,0.03082138,-0.40102822,-0.6792623,-0.033513587,-0.5638571,-0.07871958,-0.30484992,0.24606358,-0.3556617,-0.12464591,-0.1833333,0.6320674,-0.5165025,-0.07639968,0.23513362,-0.15592255,0.39244783,-0.75976,-0.076841965,-0.18353227,0.18608302,0.05914502,-0.059855204,0.3076772,-0.031877078,0.44375637,0.30635157,-0.27709845,-0.35804746,-0.18920901,-0.012696647,0.22905779,0.0446413,-0.38366216,-0.04502328,-0.23463687,0.46670565,0.30222338,0.15306315,-0.08174174,-0.08221764,-0.20417927,-0.17322744,0.42170128,0.57891166,-0.27387503,-0.35582113,0.38149935,0.6967128,0.112205476,-0.20521834,0.25404263,-0.097604714,-0.4086412,-0.17646171,0.3039902,-0.20432582,0.48771837,-0.1689309,0.29804358,0.57788974,-0.28507522,0.07292707,-0.026285913,0.061927676,-0.11972009,-0.16371931,-0.314731,0.36826813,-0.5488255,0.122094594,-0.32489812,0.8085171,0.12558377,-0.6140567,0.28066745,-0.53474134,0.08815102,0.07605862,0.7952508,0.8113706,0.48453152,0.34894082,0.7899858,-0.27439135,-0.017363291,-0.20333108,-0.14960033,0.04686161,-0.16247235,-0.024350945,-0.45736223,0.025301086,0.008750393,0.0483995,-0.0893544,0.39227217,-0.5239264,-0.10302198,0.2775669,0.61977357,-0.30943304,0.1191833,0.96061486,1.1087623,1.0966927,0.034437545,1.1882861,0.22855824,-0.32077497,0.100486025,-0.20838727,-0.64653003,0.27056172,0.3168072,0.33635813,0.4347483,0.09513427,-0.04358381,0.3458267,-0.5691363,-0.13418666,-0.23774692,0.102157995,-0.13669322,0.08045046,-0.4924023,-0.19876017,0.036657218,0.05907643,0.19973947,0.2927454,-0.31741655,0.43254662,0.017357584,1.2208277,-0.18583485,0.12109123,0.19490734,0.6329359,0.14530298,-0.24202672,-0.00641843,0.3612376,0.37828833,0.025027605,-0.6353179,0.18207206,-0.31842783,-0.5185822,-0.19417025,-0.40138853,0.00550859,0.09065231,-0.31716025,-0.088648684,-0.14072372,-0.65980744,0.16835657,-2.7442877,-0.15207036,-0.0649327,0.30181307,-0.4067631,-0.18127234,-0.093856566,-0.66475606,0.4170909,0.4387593,0.46836802,-0.57002,0.33143583,0.55808616,-0.57434314,0.032527838,-0.5910352,0.016542636,-0.15894485,0.50668275,-0.11526919,-0.124552324,-0.031200595,0.21994926,0.54749745,0.21694528,0.09782557,0.29483587,0.24528776,-0.094682164,0.36685848,0.112921275,0.34747702,-0.5768621,-0.12656492,0.43937975,-0.4297825,0.21418728,-0.25524837,0.15857737,0.53203803,-0.7146235,-0.8263315,-0.7362982,-0.17898251,1.2175885,-0.24904665,-0.648306,0.21009311,-0.26721746,-0.09196861,-0.0889969,0.65263945,-0.22354521,0.014053798,-0.62285686,-0.087165125,-0.14328705,0.41211003,0.09846204,0.08802899,-0.56815714,0.8552993,-0.12098964,0.54501176,0.1350094,0.31930256,-0.26981845,-0.588012,0.08500531,0.9003573,0.5515531,0.05120554,-0.24511279,-0.19374865,-0.19139482,-0.003911275,0.17503493,0.6321733,0.88009864,-0.06302698,0.074222706,0.3694965,-0.016575424,0.10574473,-0.15528542,-0.20152195,-0.29480773,0.10994522,0.51096886,0.4275322,0.09894541,0.29607195,-0.048512872,0.32498705,-0.18784958,-0.45804194,0.67207664,0.913309,-0.24119934,-0.14053239,0.6549766,0.5893944,-0.25698882,0.63737774,-0.7770987,-0.31029308,0.50882876,-0.18706831,-0.5265205,0.09855694,-0.2630499,0.15188766,-0.84204257,0.06011154,-0.5222857,-0.6181011,-0.6386124,-0.05449278,-3.0901003,0.13934885,-0.2985594,-0.16429576,-0.26301384,-0.38280588,0.23795739,-0.65172064,-0.54812753,0.10130124,0.1785035,0.7747935,-0.124186054,0.086382195,-0.35257453,-0.40813303,-0.47951317,0.26079848,0.18525402,0.26145533,-0.13746163,-0.34317133,-0.01124459,-0.016573237,-0.39970493,-0.087262556,-0.4561847,-0.40572527,-0.35605958,-0.60787004,-0.23761691,0.6162783,-0.17798185,0.020343473,-0.16686463,-0.0029821475,0.042430427,0.3099349,0.23783118,0.24483909,0.13059038,-0.05858194,-0.02795401,-0.39122552,0.09049826,0.017636573,0.30989453,0.28289524,-0.42627066,0.210418,0.46608633,0.55236524,-0.1072021,0.88764626,0.52083445,-0.005780041,0.25556973,-0.105293676,-0.46397826,-0.78269136,-0.21407369,-0.0939232,-0.3742334,-0.47378775,-0.06437301,-0.3117278,-1.0381259,0.6754304,-0.042584535,0.54256594,0.05991539,0.40078798,0.52226,-0.14171967,0.018761082,0.025526332,-0.18221952,-0.49868977,-0.14574371,-0.7321368,-0.5302206,0.059473965,0.89976823,-0.42530838,-0.032920096,0.15225331,-0.16214181,0.04698262,0.123122945,0.09116379,0.08021371,0.4403098,0.13654065,-0.55161256,0.6387043,0.14395514,-0.11423516,-0.47002873,0.28052613,0.5251949,-0.66988724,0.34388858,0.26909497,-0.058419444,-0.35756096,-0.5206616,-0.039415672,-0.09458875,-0.1469447,0.42091635,0.25995824,-0.6988717,0.40696925,-0.09076106,-0.05835137,-0.896719,0.40760425,-0.08289298,-0.46599996,-0.017909361,0.41942495,-0.0042998423,-0.019139597,-0.23709062,0.15028074,-0.3208609,0.21330465,0.22406827,-0.24399532,0.63156855,-0.2950113,-0.1350324,-0.6849402,0.11874343,-0.75463635,-0.1573565,0.42132467,0.16307563,-0.18208522,0.28499275,0.05141149,0.51099163,-0.052937314,0.23646978,-0.078350656,-0.2864371,0.5234687,0.61291045,0.43069723,-0.4251594,0.755895,0.08568445,-0.27903545,-0.20672546,0.068919465,0.28740957,-0.045824762,0.52821976,-0.15297836,-0.19202128,0.22043116,0.5508495,0.40254274,0.4770309,0.04497872,-0.0077371597,0.41256282,0.04134951,0.3436939,-0.17762573,-0.5696913,-0.030300658,-0.38973168,0.04863275,0.51838195,0.118287526,0.5108901,-0.058264103,-0.16291459,0.15410918,0.105337754,-0.38504058,-1.0185566,0.27486178,0.15209354,0.8329786,0.67985624,0.010768409,-0.013198472,0.7187258,-0.1669449,0.12612893,0.32165343,0.14220574,-0.54474956,0.72463006,-0.6729158,0.50910443,-0.015534699,-0.15774338,0.08463057,0.0048362473,0.47974333,0.8025691,-0.17839248,-0.006972077,-0.09640352,-0.26171806,0.25302047,-0.35694218,0.16333422,-0.4898929,-0.33750227,0.64102626,0.4475465,0.3447728,-0.103724465,-0.15460865,-0.0849645,-0.057780817,0.348043,0.024066377,0.05523592,-0.13079235,-0.41222617,-0.33355537,0.42111266,-0.08027108,0.16658956,0.06117381,-0.35604748,0.120084055,0.01944972,-0.06432709,-0.0020429676,-0.7062196,0.15004538,-0.13372889,-0.22867253,0.7245258,-0.33088952,0.37939996,0.17852321,-0.043538693,-0.23806919,-0.040135954,0.21184942,0.5441795,0.07710715,-0.1596537,-0.37533453,0.19996616,0.21225603,-0.3631515,-0.034367718,-0.20318402,-0.023697166,-0.5625821,0.31179267,-0.13295524,-0.29633734,0.12623766,-0.19874977,-0.12522727,0.6016561,0.036386915,-0.03534319,-0.013105794,-0.12341685,-0.33753034,-0.30852926,-0.26011017,0.13401723,-0.010453563,-0.00092676055,-0.13229625,0.13632432,0.12817836,0.49557012,0.13419114,0.26162127,0.23827362,-0.16931102,-0.500692,-0.012215046,0.26960224,0.31211483,0.17300616,0.03820566,-0.14067104,-0.5850879,-0.39455953,0.1076366,-0.06616345,0.25067225,0.12968916,-0.021268936,0.903733,0.14628391,1.0415864,-0.0344461,-0.44725344,0.22488025,0.62215483,-0.04324244,-0.20779863,-0.34585145,1.1069381,0.59121335,-0.15142864,-0.15327464,-0.117193766,-0.042193055,0.24322022,-0.23862305,-0.15659834,-0.010058861,-0.6317459,-0.28276402,0.15678604,0.31954825,0.109636106,-0.14990924,-0.03726045,0.3474903,0.093520634,0.43785155,-0.36045694,-0.19591907,0.4434954,-0.112488866,-0.009223076,0.12574533,-0.3089221,0.43484277,-0.7898688,0.023222772,-0.34350544,0.12702686,-0.16046335,-0.48212168,0.2626684,0.09228909,0.4090854,-0.32077327,-0.49556255,-0.2502964,0.4262644,0.22762868,0.24576876,0.591862,-0.29338053,0.20160708,-0.057656605,0.38808277,1.1175872,-0.25253397,-0.055520717,0.19541039,-0.49411488,-0.8343987,0.17816773,-0.37128955,0.22008851,-0.13723914,-0.37853834,-0.39353615,0.16996962,0.2318201,-0.06762995,0.29230043,-0.7400068,-0.31904903,0.05854493,-0.31961825,-0.18035449,-0.4134897,0.13142052,0.6267703,-0.34184054,-0.46743518,0.08523892,0.25541213,-0.20214151,-0.7491987,-0.11422115,-0.31885302,0.18849204,-0.014466185,-0.3987875,0.014521058,0.33411708,-0.5402268,0.098374195,0.05064459,-0.3063565,-0.06083195,-0.43607002,0.19443229,0.86957425,-0.062246844,0.041850787,-0.38731676,-0.4542146,-0.9372009,-0.43762514,0.5170116,0.17052454,0.14393707,-0.6411397,0.21730272,-0.4403124,0.2584639,-0.06471935,-0.43787426,0.33607572,0.28689402,0.47332948,-0.04486996,-0.7991537,0.35768113,0.10713823,-0.072104625,-0.54421043,0.4637378,-0.1564557,0.8594493,0.11872563,0.063666925,0.18572506,-0.6306164,0.028909473,-0.22579503,-0.2046189,-0.6495448,0.07659893 +388,0.35654536,-0.06485928,-0.79066414,-0.24005254,-0.03192277,0.0068301996,-0.10762326,0.40373623,0.28261402,-0.37000865,-0.014143586,0.25455797,-0.1955057,0.19364204,-0.15205055,-0.5562205,-0.016255863,0.020319592,-0.4939443,0.2800484,-0.4542789,0.19197692,-0.36648914,0.15560462,0.017358892,0.31025225,0.119111136,0.017184956,-0.11447981,0.036240306,0.24912484,0.25591853,-0.29986826,0.13620727,-0.1037495,-0.27013585,-0.14120045,-0.2264608,-0.4321452,-0.6362518,0.33164713,-0.6514152,0.4792793,-0.020872306,-0.2757368,0.41850278,0.118571214,0.13133475,-0.27897078,-0.07325692,0.24924894,-0.15776567,-0.1610412,-0.15685193,-0.2795786,-0.30310652,-0.5519689,-0.10811882,-0.5590034,-0.11889874,-0.14736047,0.15456559,-0.3641589,0.021264255,-0.3611232,0.5286515,-0.52890193,-0.18603091,0.20758416,-0.033546567,0.08469191,-0.66073775,-0.080345966,-0.07069322,0.0053219595,0.006303382,-0.11822862,0.2542449,0.06175859,0.42445576,-0.0658857,-0.14743844,-0.32705295,-0.20575644,0.2379951,0.27464485,-0.25436392,-0.22150977,-0.15809578,-0.0992023,0.27739677,-0.00032283267,-0.073437005,-0.2689109,0.0021933685,0.23600957,-0.1237737,0.41284835,0.57362497,-0.2313039,-0.09698777,0.40263417,0.68277234,0.06828005,-0.25281325,0.12334437,-0.13373287,-0.3074704,-0.24350366,0.07326892,-0.21698043,0.389946,-0.10114867,0.19645172,0.6331216,-0.17953545,-0.0547205,0.11456875,0.14737056,0.22032684,-0.25472218,-0.3639085,0.19824977,-0.3800978,0.17522596,-0.13151953,0.6420747,-0.050192676,-0.7853769,0.44689572,-0.33340162,0.008360745,-0.07828962,0.72743404,0.724342,0.431129,0.14297317,0.78837204,-0.51190484,0.087683804,0.055788763,-0.22137363,-0.05614723,-0.04734243,-0.15706037,-0.54396343,-0.102177285,0.0173433,-0.10789063,0.1667208,0.3555483,-0.37892446,-0.15335235,0.079881154,0.6630243,-0.37116736,-0.040196847,0.48892447,1.1252505,0.89578474,0.091344036,0.8080483,0.16569962,-0.19317141,0.023408405,-0.30829743,-0.78289723,0.30707577,0.26409185,0.029495923,0.28373823,0.10249522,0.028751219,0.39541048,-0.55840796,0.047986843,-0.16418737,0.36501116,0.029731035,-0.11241283,-0.3502126,-0.055093877,0.17421891,0.08670616,0.12204352,0.29702628,-0.32999766,0.14272544,0.1584669,1.104968,-0.14065188,0.018727712,0.2779332,0.526079,0.07536084,-0.25737748,-0.05876417,0.31405878,0.4600363,-0.14820108,-0.5984357,0.25010398,-0.1697914,-0.4514805,-0.25263315,-0.40436277,-0.05760888,-0.10615087,-0.2828437,-0.1094142,-0.07346424,-0.5927362,0.37556204,-2.5495882,-0.065560766,-0.20330374,0.32412216,-0.015666785,-0.15871711,-0.26850036,-0.4874224,0.25980428,0.32757363,0.3060938,-0.47986826,0.56782085,0.5371757,-0.5121965,0.082488336,-0.4576398,-0.019639753,-0.112848714,0.34911206,0.19624542,-0.022977514,0.070907906,0.3534614,0.49961954,-0.110035524,0.054447673,0.33860728,0.3043499,-0.10199913,0.32615843,0.04778398,0.51398563,-0.38720262,-0.14649798,0.32305688,-0.555034,0.051208623,-0.18415686,0.14977542,0.33715513,-0.3658067,-0.86866117,-0.46163902,-0.0111804325,1.4679056,-0.26569945,-0.42675573,0.3609171,-0.29484412,-0.3907291,-0.12677905,0.3404576,-0.1645243,-0.14066973,-0.80297256,0.069822975,-0.12075526,0.24799529,-0.06703396,0.07513857,-0.3319198,0.53234416,-0.15169829,0.7392737,0.2726874,0.2205589,-0.3407033,-0.3214214,0.025396006,0.78103215,0.42646745,0.03336924,-0.07396185,-0.06781671,-0.13317028,-0.10815818,0.18553811,0.49485716,0.7595943,0.05311857,0.03751523,0.23452981,-0.1087372,-0.019904347,-0.35685176,-0.248958,-0.14027418,0.21820864,0.507345,0.42715168,-0.14374685,0.16946366,-0.008207824,0.21191563,-0.27652475,-0.44482958,0.35206816,0.781415,-0.0970429,-0.3789228,0.5133398,0.4667641,-0.39188626,0.3829382,-0.7040061,-0.25142255,0.4665607,-0.22412848,-0.42552254,0.0024053256,-0.36402088,0.2791403,-0.71120346,0.372495,-0.3437961,-0.8526997,-0.4849084,-0.34093362,-2.44799,0.14377281,-0.25948018,-0.11369816,-0.021155033,-0.066524476,0.14746903,-0.51306695,-0.58135605,0.12742938,0.19748738,0.5853819,-0.026007008,-0.007103904,-0.20205253,-0.12755357,-0.16166073,0.25112826,0.047486283,0.28351125,-0.019011267,-0.43620098,0.0001654605,-0.07212099,-0.42626226,-0.1632208,-0.23559631,-0.32344255,-0.049897347,-0.45553645,-0.22602695,0.5349122,-0.27343467,0.0026611488,-0.2563918,0.062988825,0.0029175798,0.33413804,0.08110854,0.22129145,0.032763492,-0.16352002,0.09927165,-0.25924695,0.30856097,-0.06713942,0.4126581,0.5070637,-0.080785625,-0.06669752,0.7055215,0.54295784,0.16621895,0.9111015,0.3760416,-0.21323632,0.3281379,-0.15652773,-0.20450355,-0.5701017,-0.40064317,0.13800049,-0.34577492,-0.40127477,-0.030146532,-0.41304067,-0.9593108,0.31613114,-0.07542172,0.28798333,-0.06984527,0.31909055,0.4322424,0.041221175,0.02605377,-0.023448769,-0.15242004,-0.36391097,-0.27976283,-0.7796369,-0.3704755,-0.0027529956,1.2392342,-0.14605917,-0.057282034,-0.042184167,-0.15761699,0.14412193,0.2426105,0.19960366,0.2904901,0.3081328,-0.11941867,-0.4737256,0.22915031,-0.25384828,-0.078994796,-0.63622224,-0.03900421,0.62941843,-0.5007466,0.45235482,0.40868053,0.07196616,-0.19325706,-0.6938908,-0.09207222,-0.008836524,-0.17786957,0.52860236,0.14204028,-0.6888047,0.60311955,0.27335185,-0.1880634,-0.6194602,0.48955613,-0.13240685,-0.0846638,0.09592676,0.42170507,-0.15714502,-0.089614496,-0.27294922,0.21142563,-0.22538862,0.3072034,0.36206248,-0.08620939,0.32256016,-0.2415149,-0.14577015,-0.6630056,-0.14727716,-0.6762722,-0.15085353,0.1317394,-0.07887956,0.2425084,0.15969951,-0.19003071,0.5043309,-0.2950819,0.14619112,-0.121946484,-0.4580991,0.47812334,0.4965921,0.3117882,-0.17400303,0.596494,0.047615774,-0.13190705,-0.13583554,0.11019419,0.5366415,0.0665616,0.53561693,0.14648075,-0.09409812,0.33941734,0.878957,0.28762487,0.32622772,0.10828933,-0.27122015,0.17096946,0.014724095,0.16084167,-0.14947525,-0.3228435,-0.13709687,-0.04483781,0.29570764,0.25331157,0.10191258,0.45014015,-0.18336889,-0.18811907,0.08541216,0.22792539,-0.09795781,-1.0987631,0.35469052,0.10604923,0.6184019,0.32893407,0.10727375,-0.0851017,0.37910905,-0.17109908,0.18316112,0.2669753,0.058287546,-0.53206575,0.42776924,-0.5147961,0.53069764,-0.058573026,0.0401901,0.15296602,0.15668508,0.37268314,0.78733754,0.028784977,0.03353297,0.07850961,-0.2825406,0.31422532,-0.3203345,0.12479255,-0.46056375,-0.34777364,0.67376465,0.40335366,0.5122153,-0.08406736,-0.08435019,0.14564626,-0.13927175,0.24227594,-0.11649641,0.150374,-0.16146322,-0.6235944,-0.24068548,0.25221747,0.13491756,-0.02954427,0.04334496,-0.07812178,0.22145271,0.062190574,0.09872319,-0.04860317,-0.326369,0.026984401,-0.12259365,-0.5366033,0.2502333,-0.3315408,0.31421328,0.21532795,-0.018319169,-0.508191,0.12340274,0.16181454,0.5487149,-0.10958148,-0.17751502,-0.3838929,0.15160613,0.20899653,-0.17660576,0.057595145,-0.23486954,0.27356234,-0.7285912,0.49513647,-0.25675926,-0.30629954,0.22505818,-0.361095,0.024470834,0.57377994,-0.27502435,-0.27977422,0.0025709548,-0.119748406,-0.26519403,-0.25420746,-0.21142486,0.19841416,-0.26804808,-0.03826856,-0.14278106,-0.13112207,0.012443272,0.20842642,0.08164889,0.14476416,0.53176665,0.05202539,-0.5366374,-0.06769434,0.07844628,0.5171248,0.07114525,-0.09065304,-0.43364003,-0.50066423,-0.22621065,0.2490708,-0.114937395,0.36075222,0.16026513,-0.26980987,0.5405004,-0.12522195,0.95858425,0.14771791,-0.19011027,-0.05209761,0.5576604,0.16702352,-0.0684076,-0.09943358,0.6680057,0.62241113,-0.17385949,-0.21977429,-0.42765045,-0.02009002,0.08914534,-0.121755034,-0.2342353,0.020872243,-0.8085484,-0.16552404,0.29929227,0.1772839,0.0755871,-0.139615,0.13667414,0.16356733,0.0626228,0.22235754,-0.56598735,0.064098924,0.32492265,-0.002779166,0.029371109,0.01683733,-0.603898,0.18066235,-0.6205184,-0.034859236,0.096936375,0.010495835,-0.13067235,-0.22273202,0.19401623,0.09066629,0.21075375,-0.2921655,-0.22352795,-0.16365926,0.40496242,0.056588393,0.15793559,0.542236,-0.159045,0.16228113,0.17757194,0.46663603,1.0053177,0.017312765,0.067812555,0.26812407,-0.3529562,-0.74936575,0.11388652,-0.36649868,0.1663513,-0.12202971,-0.26124477,-0.5581609,0.35150903,0.19351088,-0.22598241,0.2679566,-0.54378206,-0.26210248,0.013831405,-0.31420806,-0.1348815,-0.32532135,-0.019504141,0.5656443,-0.37555832,-0.15419106,-0.07334766,0.41081354,-0.19176833,-0.5071817,0.096911795,-0.21753031,0.43097144,-0.0022945127,-0.30351028,-0.093182966,-0.05202907,-0.36096635,0.33194435,0.3507403,-0.25656736,0.021001266,-0.1750709,0.07549168,0.34599802,-0.061367907,-0.02344757,-0.28406557,-0.41441518,-0.9104944,-0.19912206,0.10724071,0.23974515,-0.19285719,-0.5783851,0.11655159,-0.08121009,0.14093709,-0.080751576,-0.41726094,0.5203275,0.020072717,0.28028256,-0.12439458,-0.7827395,-0.02287558,0.130272,-0.22086248,-0.25806746,0.58485,-0.1707608,0.7590119,-0.021068934,0.06773131,0.057690404,-0.52755105,0.33161354,-0.29700717,-0.22912888,-0.4721168,-0.041097745 +389,0.24972583,0.009260978,-0.46927705,-0.17386529,-0.1880504,0.25551525,-0.1622887,0.32666883,0.043789625,-0.53634244,-0.25139612,-0.10563852,0.042494573,0.2366461,-0.2671716,-0.37469706,-0.006079729,0.15460813,-0.21173719,0.1388418,-0.602171,0.26843378,0.062133227,0.16372587,-0.13662192,0.09914475,0.36661434,-0.18695624,-0.13850798,-0.24189329,0.043829735,0.11089178,-0.5284137,0.14983916,-0.088741064,-0.34511822,0.09218432,-0.424679,-0.41384977,-0.7162193,0.44950482,-1.0144477,0.5915294,0.0531074,-0.17753117,0.3955664,0.12879886,0.12466921,-0.22660403,0.045745216,0.1667709,-0.250892,-0.230376,-0.023672745,-0.14857998,-0.2278004,-0.6599302,0.05814147,-0.427373,-0.11076685,-0.39952633,0.19693093,-0.5078042,0.13462915,-0.25260854,0.39767233,-0.43034583,-0.10922599,0.1710175,-0.14203237,0.09903019,-0.5534991,-0.07518792,-0.0113468915,0.1375357,-0.26397353,-0.044086788,0.25115168,0.20108159,0.49780226,-0.07466247,-0.23933725,-0.23132144,-0.034774583,0.21021377,0.43602404,-0.20203972,-0.5325912,0.012106165,0.016090747,0.1395611,0.2282052,-0.0001823519,-0.18356107,-0.009295021,0.28355178,-0.28537658,0.28991336,0.71096575,-0.25302514,-0.20505273,0.45572728,0.6282919,-0.12346704,0.05883029,0.07626389,-0.021162977,-0.47765896,-0.21981624,0.10883479,-0.27041915,0.4304569,-0.17062528,0.32223272,0.6010174,-0.39974502,0.1697732,-0.035378456,0.041900326,-0.1431115,-0.23762687,-0.35605988,0.32681134,-0.4513769,0.20236461,-0.1960289,0.9913308,-0.007971071,-0.7393488,0.43699953,-0.31296164,0.14692661,-0.15498972,0.75074154,0.47645062,0.40207312,0.29978707,0.79173106,-0.6428369,-0.06785239,-0.120693386,-0.4243681,-0.013902477,-0.08512349,-0.07362021,-0.27212957,-0.00019637177,0.19456713,-0.07538716,-0.06958356,0.32808998,-0.37949437,-0.046295796,0.11365009,0.6815089,-0.38500962,-0.07528491,0.67961264,1.0795543,0.78635967,0.1088557,1.257453,0.28102836,-0.14728229,-0.02072319,-0.11450783,-0.92636096,0.32328865,0.4232758,-0.015534137,0.19877066,0.1925553,-0.059255455,0.36864495,-0.6010356,-0.08485869,-0.2960514,0.38372585,0.03320734,-0.1303484,-0.41518405,-0.08236909,0.15460719,-0.0053166235,0.25368172,0.3772771,-0.25447327,0.13380113,0.14986417,1.3674074,-0.10051419,0.14102785,0.20406125,0.38850433,0.17158154,0.057858247,-0.12099862,0.17782459,0.4367996,0.08013768,-0.588524,0.0009388583,-0.16254091,-0.60687625,-0.20543303,-0.27469984,0.05877183,-0.20289032,-0.26446465,-0.091562934,-0.11326216,-0.4947719,0.4608881,-2.6429691,-0.13708152,-0.051040474,0.29060268,-0.2365541,-0.3587238,-0.093895376,-0.53903544,0.5242032,0.3936319,0.39637044,-0.64129215,0.39297202,0.4188733,-0.355321,-0.10006989,-0.7977122,-0.037309147,-0.18339911,0.23943445,0.25874284,-0.2603374,-0.050041646,0.01060866,0.42707655,-0.04497239,0.086919464,0.30189565,0.39932773,0.1642951,0.38186383,-0.013847649,0.5281585,-0.41558614,-0.1875625,0.350386,-0.42113143,0.20300113,-0.26225427,0.19116847,0.28404397,-0.5083083,-0.7678973,-0.68661296,-0.38489166,1.3703252,-0.22691151,-0.4113121,0.3560283,-0.12055551,-0.21893491,-0.06803995,0.33698598,-0.40289047,-0.060366232,-0.7741273,0.13428286,-0.18183279,0.26426694,-0.12473241,0.20060763,-0.5139306,0.6031857,-0.36382374,0.4988703,0.40798324,0.22331078,-0.34526005,-0.31467444,0.0070165866,1.0321833,0.47098234,0.07083223,-0.27757698,-0.121110566,-0.08338334,-0.1786668,0.039295934,0.49318913,0.79130226,0.07098652,0.03685399,0.28322887,-0.042379763,0.016777474,-0.16604002,-0.38157532,-0.09151476,-0.037798412,0.5825413,0.3299151,-0.34691736,0.3435475,-0.15410313,0.25346512,-0.31752926,-0.26923043,0.43400598,0.68394405,-0.19055541,-0.20338297,0.6075736,0.40973678,-0.40530068,0.40871662,-0.683912,-0.28949562,0.33723265,-0.18178198,-0.44992965,0.0034742611,-0.1409651,0.14539467,-0.77014446,0.43605596,-0.22148024,-0.6528605,-0.5480183,-0.19730197,-3.2305715,0.12384749,-0.30253306,-0.050937057,-0.1552364,-0.13684285,0.19286063,-0.39749345,-0.54388946,0.11894226,0.08675862,0.60226864,0.09568183,0.18322597,-0.12290001,0.0174005,-0.38263625,0.031004881,0.13144681,0.23169242,0.024713393,-0.37985986,0.110409655,-0.22879136,-0.48303202,0.10680834,-0.46447867,-0.3326524,-0.17097072,-0.38776582,-0.38688797,0.63889754,-0.32554156,-0.030242186,-0.29882997,0.06030373,-0.147077,0.49417305,0.014257188,0.15146779,-0.082580395,-0.21977328,0.0460079,-0.26381612,0.5342944,-0.08606971,0.31485656,0.59778106,-0.21760552,-0.059980284,0.47799364,0.5773544,0.14480567,0.8904427,0.24993351,-0.11276617,0.23801105,-0.21140747,-0.21287163,-0.4740102,-0.33607274,0.17284894,-0.50039643,-0.34265503,-0.06366537,-0.42649135,-0.8278977,0.52510977,-0.064542346,0.07770443,-0.03770419,0.3741584,0.39572588,-0.05194477,-0.092962466,-0.10691129,-0.0937054,-0.52836096,-0.35048527,-0.70477647,-0.33789763,-0.23587091,1.0396538,-0.105388455,-0.017344456,-0.14681487,-0.040077608,0.04781481,-0.1212619,0.035312433,0.19799738,0.37999138,-0.14829288,-0.6675292,0.45826247,-0.17686315,-0.21530953,-0.6606337,0.051378634,0.58238584,-0.6213869,0.43987712,0.46767694,0.21134017,-0.12658371,-0.67522246,-0.21974976,-0.036191158,-0.14730671,0.44571576,0.12591802,-0.92045206,0.65812224,0.48379755,-0.26647833,-0.7007155,0.3860948,0.111058235,-0.08813642,0.14998014,0.34469908,-0.024219492,-0.015514136,-0.116486855,0.17377302,-0.42946172,0.37193355,0.09710191,-0.022811545,0.74372333,-0.32993904,-0.27980494,-0.6082264,-0.2124286,-0.5923719,-0.055802107,-0.048959557,-0.011473281,0.039775398,0.20754956,-0.045382563,0.5252519,-0.4468761,0.03835088,0.04572221,-0.29803663,0.37531805,0.35356978,0.3471186,-0.41748816,0.6706608,-0.01857852,-0.08092958,-0.21441242,0.0153961945,0.53311026,0.13875407,0.32110003,-0.01339263,-0.054475274,0.41490522,0.9918557,0.2162088,0.43407467,0.20095253,-0.1735505,0.3615895,0.12809072,0.17091383,0.035873923,-0.44490868,0.0002369242,-0.15860398,0.09472239,0.4975625,0.14881425,0.49187174,-0.17950006,-0.1731555,-0.01960143,0.1643617,-0.14340138,-0.99881214,0.35676524,0.0045212507,0.71675843,0.2807106,-0.12757386,0.097715676,0.5379416,-0.16199212,0.22969241,0.25968918,0.024446966,-0.46620324,0.57266814,-0.63460267,0.35417816,-0.111553654,0.02924,-0.014318168,0.084274255,0.38621017,0.69093513,-0.071338095,0.056114364,-0.07027115,-0.25851274,0.35836634,-0.36358184,0.23727322,-0.40090078,-0.1967143,0.6936321,0.40520695,0.33731762,-0.070552506,-0.16732778,0.17356706,-0.0635246,0.15252228,0.10260345,0.10717927,-0.08770699,-0.65124947,-0.40074188,0.5199564,0.48044667,0.11997967,-0.07494099,-0.2287534,0.25857976,-0.2809357,-0.12132495,0.011702897,-0.60316485,0.073321305,-0.07553144,-0.38804308,0.17926848,-0.27383122,0.31425613,0.23567687,0.008023717,-0.4480984,-0.049307752,0.32408124,0.66295415,-0.01030457,-0.22136316,-0.41282913,0.084856056,0.22673652,-0.27613658,-0.05256633,-0.24681275,-0.033090625,-0.5890643,0.36654973,-0.21199839,-0.23758377,0.3834907,-0.21644023,-0.12081587,0.67036563,-0.19275835,-0.071830645,-0.022061387,-0.20956774,-0.1745577,-0.15747023,-0.24407096,0.18339656,0.17745864,-0.023155246,-0.10416232,-0.17649506,-0.2961976,0.43952295,0.08763043,0.07763725,0.30837122,0.113445945,-0.38358614,-0.22616203,-0.0884741,0.6522341,-0.03231758,-0.122997455,-0.3364084,-0.36858624,-0.034167625,0.17807904,-0.16877365,0.17078936,0.10692399,-0.42446575,0.64304954,0.009037571,0.9386496,0.13872398,-0.27476665,-0.19679113,0.5973557,0.09507489,0.015851405,-0.24434659,0.92448467,0.50490296,-0.09660512,-0.23345968,-0.45901707,0.14197801,0.25569525,-0.14229849,-0.33567017,-0.059985988,-0.6189229,-0.2091989,0.3175306,0.3110806,-0.006129334,0.016942654,0.107387766,0.22916345,0.11036033,0.53851116,-0.4908097,0.0061922497,0.41479522,0.1338305,0.10306623,0.092057206,-0.41928148,0.30169544,-0.62602806,0.07385801,-0.16191085,0.075396456,-0.1557237,-0.1751214,0.23630778,0.1034497,0.44048765,-0.22581737,-0.35420698,0.050703663,0.39138004,0.23649357,0.1275695,0.65395135,-0.12569477,0.091379754,0.1415756,0.46532282,1.0447301,-0.070214316,0.166765,0.2798328,-0.27388975,-0.75360626,0.4922955,-0.16429773,0.08510762,-0.045047212,-0.22755544,-0.37311158,0.29333398,0.31963953,-0.2042394,0.19958791,-0.4197309,-0.22550228,0.3571531,-0.32037774,-0.19082847,-0.24730404,0.115871385,0.7091943,-0.21037804,-0.10043383,0.03605668,0.44838986,-0.28896877,-0.56596476,-0.19225201,-0.31091523,0.26350722,-0.01003121,-0.28787738,0.029408647,0.004549269,-0.37535685,0.1481214,0.13533548,-0.31029576,0.06800079,-0.20256093,0.049937453,0.5616519,-0.12372679,0.062360145,-0.72391975,-0.35575828,-0.9806493,-0.015199627,0.46657944,0.12968174,0.049715232,-0.5308417,-0.06209124,0.041940708,-0.08896939,-0.062172156,-0.56119215,0.32684332,0.14959009,0.29360119,-0.013950015,-0.50941133,-0.13310155,-0.06999878,-0.18385532,-0.2918671,0.6760487,0.037233222,0.7757661,0.056862105,0.06291078,0.16684613,-0.48802,0.16022095,-0.18429239,-0.32675603,-0.651347,0.11531223 +390,0.433946,-0.119195625,-0.4921053,-0.057085373,-0.32679302,-0.21004061,-0.25874928,0.39942473,0.25271913,-0.072294146,0.19180638,-0.16967326,-0.14392978,0.57413906,-0.075377285,-1.0452224,0.00925089,0.103055835,-0.7576379,0.7653721,-0.44988206,0.25377938,-0.21745118,0.35857907,0.1912582,0.18713579,0.12555224,-0.15366274,0.20709096,-0.24053007,0.09357567,-0.030176379,-0.902038,0.22370343,-0.15995489,-0.2647091,0.17215453,-0.37856743,-0.6833966,-0.89267385,0.37621567,-0.5622221,0.4997559,0.16731669,-0.23786345,0.20961815,0.16393624,0.54839265,-0.26287538,0.010684892,0.31528145,-0.13928334,0.052737843,-0.1932937,-0.20671806,-0.6070333,-0.6451071,-0.16885568,-0.7184805,-0.30279472,-0.36071053,0.2855275,-0.49577674,-0.21624942,-0.110368244,0.452314,-0.52557707,0.21713771,0.1941208,-0.070922025,0.24605586,-0.6257328,-0.090437554,-0.1194922,0.031776436,0.053167637,-0.07814886,0.5513385,0.12551461,0.32051992,-0.06711128,-0.25119376,-0.24547528,-0.20348567,0.11348407,0.5599975,-0.14300384,-0.36286798,-0.16098265,0.1199969,0.068185315,0.17260857,-0.105202936,-0.51846004,-0.071122,-0.08236251,-0.17328459,0.6128205,0.5050677,-0.24768977,-0.40477782,0.3855867,0.43371192,0.5170757,-0.08185948,0.014996897,0.06291323,-0.475247,-0.10466959,0.16856529,-0.18536209,0.37209624,0.031896625,0.28321078,0.87333757,-0.21142846,-0.06907103,-0.14163472,0.19829582,0.16753612,-0.36417034,-0.23117803,0.1971578,-0.54820216,0.33265063,-0.10950744,0.99666846,0.052214216,-0.631554,0.31464356,-0.7173107,0.13421844,-0.017112168,0.5642379,0.6528172,0.34539545,0.30503342,0.74136925,-0.39595938,0.22930117,-0.026164683,-0.34240797,0.02780665,-0.17752336,0.22520533,-0.46179894,-0.20594558,-0.19959946,-0.00023564967,-0.07263473,0.31310186,-0.64671916,-0.19105512,0.15195945,1.0574435,-0.23141213,0.16346906,0.41525257,1.0327722,1.2500771,-0.075203344,1.2148736,0.3966045,-0.23517774,0.34339702,-0.2954826,-0.8425585,0.2353756,0.29924423,-0.16103727,0.32866934,0.07858991,-0.026094258,0.4342516,-0.4503458,0.07600356,-0.18179804,0.47561428,0.10438023,-0.18700486,-0.37731352,-0.20950828,-0.09916958,-0.01414968,-0.05573753,0.3538108,-0.43627885,0.0333232,-0.14446624,1.602618,-0.014989307,0.14084662,0.19421731,0.67247695,0.27010342,-0.02999581,-0.08518116,0.48684627,0.30978587,0.19283009,-0.78859746,0.12328731,-0.48525962,-0.25638297,-0.1885703,-0.30773515,-0.08112109,0.033751562,-0.40886652,-0.1450725,-0.16821441,-0.016947847,0.49942634,-2.5462215,-0.33322647,-0.16173464,0.30889314,-0.36140898,-0.15981284,-0.13593741,-0.4734646,0.49267948,0.24424754,0.5173137,-0.50798285,0.37674028,0.6132655,-0.6033043,-0.03431248,-0.5655591,-0.15660848,0.014168152,0.5868425,-0.0675838,-0.009472284,-0.028113311,0.23458098,0.5847048,0.09069078,0.131238,0.37657824,0.5866262,-0.10396168,0.53459835,-0.15507044,0.35909402,-0.37075785,-0.16251203,0.25457448,-0.39510718,0.46768942,-0.2734508,-0.002792716,0.59044015,-0.40028742,-1.044492,-0.32510307,-0.15625133,1.0058799,-0.32821512,-0.47607544,0.37022343,-0.057881773,0.06785241,-0.095485836,0.4640442,-0.12463972,0.14325204,-0.6168889,0.14983173,-0.2078442,0.35387343,0.0632675,0.0072237225,-0.24813908,0.6631407,-0.11320818,0.22190224,0.26538932,0.2391013,-0.38475198,-0.46928623,0.06107149,0.65082544,0.33010656,0.12353026,-0.24995016,-0.19580694,-0.21835676,-0.27360877,0.079907574,0.68670374,0.79509205,-0.23092085,0.17280546,0.36160916,-0.20047039,0.011090717,-0.2788061,-0.45191047,-0.02930299,0.14057396,0.48260844,0.8521168,-0.02878467,0.60168976,0.034132734,0.15699123,-0.2179514,-0.3732687,0.4107973,1.0522645,-0.20986448,-0.16978163,0.47438014,0.42218924,-0.4084421,0.5595425,-0.6606073,-0.3244026,0.6894112,-0.24418063,-0.46380377,0.086548686,-0.40393874,-0.25820896,-0.6364632,0.5425495,-0.45183823,-0.47162005,-0.53118515,-0.2514501,-2.8833337,0.21088682,-0.48067695,-0.07528681,-0.16874336,0.19556826,0.07823956,-0.6522561,-0.42586794,0.1666991,0.14372958,0.72662026,-0.17242077,0.21358271,-0.255137,-0.3109087,-0.46545088,0.21133451,0.033229675,0.26351136,0.045736313,-0.44714224,0.08159008,0.029891046,-0.36635953,0.059231922,-0.5593243,-0.3552895,-0.1413158,-0.6942333,-0.10655882,0.8109365,-0.3464081,0.02094577,-0.25606373,-0.010353581,0.0030396446,0.29391164,0.31809524,0.23423082,-0.00047278404,-0.057766918,-0.28562537,-0.34099105,0.2431686,0.015986634,0.44702914,0.2036498,0.042301048,0.0036019303,0.6151151,0.5641879,-0.004794262,0.9155134,0.3959472,-0.30760917,0.32367888,-0.30999807,-0.103888705,-0.54856676,-0.484752,-0.060069397,-0.30169562,-0.5360235,-0.11677668,-0.2786499,-0.6438472,0.5817513,0.011906168,0.35883555,-0.010759478,-0.04965302,0.3431856,-0.056036018,-0.13203627,-0.025390197,-0.13224429,-0.32481328,-0.3475078,-0.65017325,-0.4198224,0.523822,1.084174,-0.3940666,-0.206625,0.036423065,-0.2888516,-0.17846125,0.061475705,-0.0928055,0.2756456,0.28629336,0.26840815,-0.7316416,0.38487184,-0.032870747,0.06668586,-0.7793736,0.12731677,0.83358175,-0.6761976,0.63180757,0.13839386,0.15844855,-0.175946,-0.70063734,-0.2874486,0.21483727,-0.14838718,0.18300147,-0.020842364,-0.7167685,0.31387192,0.21115264,-0.6603302,-0.7981552,0.5579897,-0.08868072,-0.40957212,-0.018481864,0.43221417,0.32345474,0.011419047,-0.12291145,0.5495224,-0.33790606,0.2337638,-0.028326284,-0.22484417,0.34938872,-0.13870165,-0.2237277,-0.6838041,0.068889596,-0.34937224,-0.5753405,0.37893382,-0.013533755,-0.16228977,0.32865992,0.110095,0.32878783,-0.022845106,0.11742881,-0.110471636,-0.33720663,0.57616496,0.3844875,0.5931673,-0.5001981,0.7282579,0.10123153,-0.1387472,0.31917775,0.22696634,0.39603177,-0.06063156,0.6270829,-0.037107155,-0.031949017,0.14383943,0.93548197,0.19747171,0.56762314,0.0928378,-0.13913965,0.14556818,0.11491914,0.0055717095,0.040163502,-0.51361305,0.09219634,-0.15835091,0.10356229,0.6885668,0.14827342,0.25163934,-0.08904541,-0.4317695,0.11556984,0.27271846,-0.034993242,-1.3461627,0.3599541,0.20574325,0.7722303,0.44458216,0.17895229,0.07593587,0.7848613,0.06668921,0.023166437,0.3100708,0.08334212,-0.48205835,0.65756834,-0.7303093,0.54393446,-0.1852894,0.0708071,0.11844299,0.33250463,0.45739233,0.6383477,-0.30782703,-0.15294704,-0.15098943,-0.6053091,0.02676666,-0.2680511,0.5116648,-0.51184946,-0.61788106,0.42674103,0.7571234,0.058559474,-0.09848046,0.06664393,-0.05906938,-0.18761374,0.10373402,0.025202584,-0.29094225,0.19985951,-0.72765726,-0.012620238,0.52948385,-0.23749326,0.0773035,-0.066654444,0.12987748,0.32844165,-0.37259862,0.09116921,0.07340419,-0.80309397,0.14671355,-0.27642143,-0.3731435,0.29964554,-0.24823256,0.35390428,0.116194695,-0.008307883,-0.35257104,0.48454902,0.04016542,0.88372785,-0.27998415,-0.29120293,-0.4233391,0.087461494,0.09753496,-0.15517558,0.09445607,-0.411469,-0.1217723,-0.6555323,0.3159492,-0.25106916,-0.3009611,-0.17753276,-0.2633665,-0.13541101,0.6978851,-0.059389427,-0.14033462,-0.2766539,-0.5358835,-0.27842295,-0.13282599,0.019225864,0.29731205,0.20657654,-0.16441809,-0.30439532,-0.23771177,-0.14655682,0.2834663,-0.15155637,0.3695384,0.1574278,0.5020333,-0.17412828,-0.09998827,0.1715853,0.5867535,0.13135894,0.089952715,-0.1417024,-0.34659413,-0.49728444,0.40964186,-0.2813028,0.30240613,0.11629564,-0.41037214,0.95427614,0.21481696,1.2682018,0.03428265,-0.19558357,0.25017154,0.6221133,0.01893266,-0.08736627,-0.48382375,1.0193394,0.7104939,-0.05247076,-0.18191361,-0.21133782,-0.29694343,0.26546848,-0.39513782,-0.16246194,0.035978425,-0.5067677,-0.12506622,0.22795461,0.24550194,0.0895624,-0.20244938,-0.23209785,0.27802998,0.21774307,0.47288162,-0.5168911,-0.082257554,0.18440899,0.34592316,0.19484347,0.20707391,-0.3287905,0.3698614,-0.60452634,0.31621236,-0.22442287,0.22279787,-0.29151106,-0.18873411,0.24094233,0.03520466,0.38753927,-0.37632474,-0.21183725,-0.095449686,0.48130023,0.3045509,0.21369362,0.76905924,-0.36365092,0.0662675,-0.09452522,0.6278683,0.9389277,-0.5037739,-0.22855468,0.41516545,-0.4613967,-0.8720189,0.3570486,-0.52139604,0.03492565,-0.18491082,-0.42744473,-0.47527835,0.21938166,-0.059006274,-0.07941408,-0.063298255,-0.79441947,-0.061249994,0.34676802,-0.12732935,-0.2849867,-0.27446175,0.23652549,0.8729201,-0.06905465,-0.40977955,0.14425196,0.17125657,-0.16841511,-0.64368623,-0.015729029,-0.38690272,0.26450327,0.097926766,-0.23354338,-0.046277966,0.17535801,-0.6221634,0.048520323,0.19398232,-0.37413666,-0.1424203,-0.07293914,0.02666132,0.8476415,-0.49195388,-0.017685706,-0.6602297,-0.45087186,-0.82209307,-0.2930535,0.65497565,0.22593746,0.056935344,-0.6093692,-0.052654527,-0.06672546,-0.02489932,-0.10018455,-0.5704545,0.21380472,0.059312306,0.40646917,-0.3156452,-1.1776726,0.12236318,0.30056712,-0.2725799,-0.8752701,0.48439324,-0.34139106,0.76117796,0.07625151,0.029893762,0.11829307,-0.2575802,0.10488805,-0.356507,-0.25665382,-0.71765155,0.2451589 +391,0.41069046,-0.2983465,-0.6712728,-0.12728402,-0.47849113,0.048126824,-0.3705594,0.15552884,0.14266498,-0.2705845,-0.37095064,-0.13840741,0.08932359,0.4617262,-0.14640404,-0.58417386,-0.1696139,0.19156949,-0.7411411,0.47320682,-0.5627225,0.38468403,0.16513428,0.4699052,0.014000609,0.40968162,0.5097348,-0.089939155,-0.3986316,-0.07112125,-0.24471384,0.18454641,-0.8353862,0.0019839085,-0.31260428,-0.539544,0.105700344,-0.43500343,-0.100219734,-0.7573119,0.22568002,-1.1185567,0.6611611,-0.26609975,-0.14433034,0.05163192,0.21716864,0.3712894,-0.4688155,0.16581303,0.10929703,-0.42186993,-0.2616152,-0.3347786,-0.11962773,-0.52285177,-0.49712104,-0.09020118,-0.7788977,-0.22370134,-0.21074182,0.20569748,-0.35600126,0.04906168,-0.11856394,0.21959808,-0.4889829,-0.15080915,0.20386234,-0.24554898,0.26924866,-0.49483952,-0.032801993,-0.1810049,0.48542646,-0.20299679,-0.17149568,0.37120718,0.42599732,0.41748178,0.24327454,-0.22197214,-0.3338229,-0.12015091,0.16592862,0.4391751,-0.089254506,-0.5414213,-0.2728081,-0.04746525,0.46599978,0.38385564,0.1272181,-0.12655231,0.11576311,0.015095747,-0.20233178,0.4825725,0.47773436,-0.33977625,-0.3558896,0.30357653,0.6107887,0.18613076,-0.18626347,-0.042577047,0.02503046,-0.59995645,-0.07924236,0.1794145,-0.17890662,0.68561435,-0.13809755,0.1581436,0.77032727,-0.41843966,0.18169022,-0.17662928,-0.0729374,-0.45496604,-0.039006747,-0.19379099,0.33737066,-0.4910444,-0.035912752,-0.27000996,0.6516477,0.18648292,-0.65751183,0.42898133,-0.550297,0.10400609,-0.10886361,0.67042315,0.64316624,0.4873299,0.44994646,0.7985378,-0.22953965,0.25623462,-0.07992203,-0.47606814,0.08343788,-0.41191941,-0.015592296,-0.4759403,0.087358914,-0.21035412,0.047603387,-0.017042445,0.5240878,-0.6157131,-0.033414323,0.14386767,0.5835057,-0.39878848,-0.061021272,0.8783621,0.9920933,0.86971104,0.08118309,1.3478405,0.58766663,-0.2858313,-0.05105488,-0.16975863,-0.6924232,0.2327532,0.54045683,-0.6226533,0.592612,-0.03426447,-0.011451464,0.2372661,-0.35184243,-0.1076752,-0.16788012,0.25920004,0.11211675,-0.03964562,-0.4991047,-0.0433163,0.08779097,-0.14017569,0.2853214,0.27312565,-0.26025644,0.4578153,0.11122361,1.4558812,-0.12300264,0.022904672,0.024823265,0.49963576,0.41025966,0.072953925,-0.021809412,0.50229615,0.41425037,-0.02671989,-0.71480477,0.19266646,-0.3524308,-0.575435,-0.27561596,-0.3788504,-0.028391462,0.08607384,-0.25517103,-0.19079198,-0.010780482,-0.20599383,0.4062265,-2.2843108,-0.3740032,-0.18810728,0.2884683,-0.4239745,-0.18048471,-0.1373606,-0.54463446,0.2524047,0.37199882,0.4914408,-0.71660227,0.46781942,0.5010256,-0.49967325,-0.34102863,-0.72304535,-0.006887858,-0.058031894,0.5088874,-0.0049101617,-0.42722577,-0.033799544,0.08239603,0.76678014,-0.02697091,0.17325526,0.40568668,0.6291677,0.2378033,0.53173524,0.10058172,0.5320621,-0.28570718,-0.29069936,0.47194564,-0.20197898,0.26432323,-0.1414802,0.15039322,0.5974155,-0.4440177,-1.1130615,-0.73848665,-0.31850296,1.1209229,-0.46637475,-0.64561915,0.025345244,0.13136746,-0.1112584,0.14521255,0.46037996,-0.16330245,0.1839638,-0.8352042,0.15056756,-0.01895982,0.35336134,0.15431598,0.14467552,-0.37077668,0.7316086,-0.16603532,0.40362516,0.25947133,0.4979584,-0.21164027,-0.43199056,0.15873119,1.1025065,0.3134735,-0.047410663,-0.17049734,-0.3773867,-0.027808867,-0.17152572,0.012989654,0.41251087,0.7727341,-0.024623066,0.11933982,0.3874081,-0.09289924,0.047369156,-0.24653079,-0.22201236,-0.088586554,0.15732846,0.48985523,0.7389853,-0.19728157,0.7091682,-0.37973258,0.3789315,-0.017236603,-0.6003719,0.90484184,0.93948454,-0.2831581,-0.03777273,0.64180624,0.4046534,-0.59977114,0.66187346,-0.88046134,-0.3804146,0.740763,-0.18640849,-0.34973508,0.16409577,-0.20223445,0.19252007,-0.9419102,0.26942638,-0.21587834,-0.069846615,-0.56718934,-0.21253055,-3.4865294,0.18164952,-0.17510363,-0.15353268,-0.39089757,-0.17866479,0.3477198,-0.8002366,-0.6519219,0.18072268,0.1806074,0.55397874,-0.113472074,0.301523,-0.35472423,-0.22742122,-0.05528019,0.28599903,0.22542527,0.16363981,-0.23113221,-0.56618893,0.13254417,0.0026085377,-0.57014656,0.061011836,-0.5414239,-0.44242924,-0.21975818,-0.54726803,-0.1984489,0.57356924,-0.46895158,-0.03134368,-0.34127557,0.22662173,-0.29387012,0.26939476,0.03788329,0.21763913,0.26217604,-0.08011823,0.26231766,-0.32517087,0.5923649,-0.040221803,0.17930023,0.14330432,-0.18776673,0.12220487,0.48174456,0.69734865,-0.13671158,0.96731085,0.4020019,-0.08812496,0.23679544,-0.3590592,-0.3347853,-0.7976701,-0.47879204,-0.1736869,-0.44193414,-0.55707556,-0.044014737,-0.27599415,-1.0033513,0.8015801,-0.12868246,0.3882159,-0.15505804,0.5963059,0.477342,-0.24392489,0.02178543,-0.055859767,-0.16060609,-0.5791734,-0.33649927,-0.6655906,-0.5404892,0.008731108,0.78523946,-0.23648259,-0.050530277,0.031318847,-0.19715887,0.06175919,0.011323104,0.05500333,0.29035455,0.5029142,0.05688956,-0.80854887,0.4092574,0.026730042,-0.10040217,-0.5366618,0.07618795,0.7329022,-0.7419223,0.45355445,0.51729167,-0.0009886485,0.23595898,-0.51703715,-0.15766786,0.009138052,-0.112368874,0.44042015,0.13536903,-0.80832994,0.6414318,0.30457097,-0.49041465,-0.82454884,0.39014652,0.08153567,-0.10735123,0.054891817,0.38619936,0.26530787,-0.20048769,-0.43291092,0.07151853,-0.51438946,0.1692734,0.2174765,-0.12651326,0.4804285,-0.1202308,-0.40125796,-0.8989673,0.08234106,-0.42962742,-0.24027762,0.37570578,-0.040381625,-0.025926296,0.1394775,0.07800818,0.38198668,-0.5026597,0.04194852,0.05698835,-0.2862593,0.24667928,0.4775756,0.32674125,-0.45001984,0.58878917,0.07533814,-0.2926833,0.099927135,-0.23323679,0.40278503,0.3110946,0.25993186,0.114955515,-0.21743539,0.3051281,0.6786207,0.16717595,0.51810825,0.2137835,-0.2789452,0.41690725,0.11015984,0.3263644,0.011538034,-0.4026777,0.0048575583,0.14728345,0.046382006,0.5636829,0.35858205,0.36779073,-0.0002833238,-0.10374355,0.054351524,0.24870507,-0.09714731,-1.1130421,0.2260548,0.3177668,0.7915102,0.4098048,0.040318254,0.030836545,0.6056048,-0.47505024,-0.0040801396,0.4437469,0.19464876,-0.488372,0.7658454,-0.5182126,0.24751066,-0.25105852,-0.026415791,-0.014584496,0.1645472,0.24325432,1.0511914,-0.16092856,0.11631698,-0.027884759,-0.042787753,0.0029513377,-0.28985485,-0.07292623,-0.28109005,-0.31318066,0.79851127,0.22895196,0.5020441,-0.15582636,-0.12973475,-0.009682564,-0.20636997,0.34228727,0.01830804,0.16742125,0.17576534,-0.5033705,-0.16468917,0.64784825,0.4035694,0.18729165,-0.17374226,-0.5427304,0.17220515,-0.29599598,-0.08392544,0.07238589,-0.78001773,-0.14479853,-0.17541514,-0.57903516,0.49876764,-0.00019768569,0.09633042,0.17774823,-0.11202483,-0.215072,0.068931825,0.20558807,0.863281,0.18827699,-0.22756775,-0.28919366,0.06763068,0.35554594,-0.30982324,0.118575685,-0.25963962,-0.025785863,-0.43782642,0.63599247,-0.28197932,-0.5034014,0.17270637,-0.28294644,-0.07655359,0.51179403,-0.044125676,-0.17884398,0.27824783,-0.029217161,-0.43894598,-0.20413163,-0.38124663,0.122250505,0.19423327,0.0074452804,-0.15915534,-0.10613562,-0.09717265,0.6952193,-0.047510844,0.38170096,0.3639397,0.13807082,-0.24453309,-0.11236724,0.17863491,0.47570884,0.019708138,-0.04949468,-0.43075764,-0.5875818,-0.23464698,0.05593091,-0.1111317,0.009993718,0.1972555,-0.42753536,1.0020036,-0.07422137,1.3379052,-0.02453598,-0.5037553,0.030787386,0.5884109,-0.09379486,0.04020818,-0.40949428,1.0155221,0.5481223,-0.10655438,-0.04694328,-0.50054955,-0.3322027,0.36473462,-0.45177624,-0.10351718,-0.102565534,-0.543252,-0.60186976,0.26368892,0.32471386,-0.08633513,-0.12936454,0.26256222,0.13754436,0.22412753,0.5601896,-0.69695824,-0.44164512,0.33131278,0.29245013,-0.21242894,0.146538,-0.3378944,0.43894285,-0.679161,0.009186685,-0.67752266,0.10612023,-0.04238128,-0.3239946,0.16993812,0.16724494,0.3424212,-0.2861087,-0.37389034,-0.120696835,0.5574828,-0.025193967,0.1576941,0.5603498,-0.33307633,0.17486909,-0.00763436,0.5817429,1.4460899,-0.5259682,0.08978763,0.30461568,-0.37082958,-0.5650295,0.5617955,-0.39711645,0.073813766,-0.15414296,-0.5751716,-0.5856882,0.2853402,0.035836395,0.13525142,0.024943627,-0.54574245,-0.09913568,0.3197606,-0.35497755,-0.09906257,-0.115731746,0.46456212,0.82388204,-0.32469523,-0.22913283,0.0843211,0.45629832,-0.19819102,-0.47410634,-0.17202164,-0.18323734,0.4333706,0.17421454,-0.28634164,0.05779729,0.23510474,-0.51249146,-0.041641887,0.33279455,-0.3588285,0.09880968,-0.22297002,0.19763455,0.8228366,-0.21526036,-0.107007705,-0.74362767,-0.43928173,-1.1072233,-0.37863982,0.20926043,0.1721227,0.07604094,-0.56877273,0.35806194,-0.13769643,-0.27701494,0.09711201,-0.7033351,0.42352405,0.22056419,0.7373283,-0.29401308,-0.89296025,0.06760617,0.1844653,-0.11000181,-0.6454149,0.6668341,-0.13643366,1.0230904,0.0684988,-0.08621139,0.034627113,-0.5809299,0.065617874,-0.3716284,-0.23108222,-0.915902,0.040227372 +392,0.6095721,-0.16081503,-0.51293385,-0.047129236,-0.44097424,-0.18420373,-0.30782384,0.175539,0.4167295,-0.31796044,-0.26854184,-0.13977475,0.11073545,0.19579047,-0.14949283,-0.8346628,0.02600309,0.26567692,-0.69844234,0.6740548,-0.5076211,0.2466483,0.12093811,0.33141276,-0.14594758,0.26875144,0.36670515,-0.14783114,0.26987278,-0.12887304,0.20059404,0.06615205,-0.9945732,0.21209332,-0.28034317,-0.21806438,0.029587714,-0.28139806,-0.3111854,-0.8919439,0.08648141,-0.8587706,0.59568495,0.23399527,-0.35609612,-0.12288572,0.12036768,0.3002457,-0.3802822,0.0075387578,0.27586004,-0.15426967,-0.19322263,-0.33374086,0.1072254,-0.25651813,-0.52492356,-0.051479295,-0.45167235,-0.00245269,-0.44710144,0.08147447,-0.35442162,-0.12315276,-0.22279018,0.5288714,-0.34761617,-0.024877576,0.44077036,-0.10168607,0.53276634,-0.47794625,0.028254403,-0.25767252,0.30640036,0.11893756,-0.31723803,0.3555994,0.15739219,0.47264847,0.41830048,-0.46257716,-0.07481411,0.05076977,0.24097095,0.1748856,-0.19976571,-0.25095242,-0.2634048,-0.032980517,0.15381779,0.1967838,0.10541963,-0.44461858,0.10257515,-0.18277285,-0.065613754,0.57763153,0.5908212,-0.13237597,-0.21617362,-0.05781011,0.6787605,0.17368643,-0.17176533,0.0691512,-0.0051347855,-0.6641347,-0.3000722,0.08728046,-0.034209315,0.5763213,-0.25068247,-0.08375032,0.7208235,-0.10866328,-0.30035508,0.18408665,-0.09639568,0.10052097,-0.31910726,-0.17702629,0.36520594,-0.7676524,0.021352759,-0.37505788,0.63202924,0.18507141,-0.8029854,0.3005591,-0.56838727,0.1950117,0.06752326,0.7547569,0.8575119,0.4773394,0.362621,0.8012263,-0.36265448,0.25924754,0.16361928,-0.4706615,0.16834712,-0.3806404,0.00570609,-0.34537122,-0.07489718,-0.39352992,-0.09819676,0.004407681,0.23461154,-0.48466963,-0.18434931,0.24972439,0.71282005,-0.22816207,-0.042890217,0.59963036,1.2161947,1.0361682,0.19181888,1.2818598,0.27960122,-0.25992778,0.10137982,-0.045080263,-0.8039717,0.20729978,0.32008642,0.20397271,0.32620743,-0.08569436,-0.07759778,0.35607097,-0.6957858,-0.002029474,-0.0872212,0.5279553,-0.035504498,-0.1777683,-0.4421318,-0.20392106,-0.056633238,0.11110253,-0.011969568,0.22058694,-0.046536062,0.27602407,0.08338351,0.84562886,-0.21457274,-0.004609163,0.029455395,0.47666407,0.35506418,-0.18973795,-0.14514713,0.29242772,0.37565723,0.07341273,-0.536986,0.14671895,-0.2065714,-0.19736038,-0.082832485,-0.2268665,0.19359769,0.079753324,-0.1735613,-0.2668154,-0.058016405,-0.400291,0.3905338,-2.37512,-0.16572846,0.045572773,0.33761138,-0.26060757,-0.052590705,-0.18217471,-0.6523746,0.35066503,0.26239303,0.55655843,-0.65502644,0.42426094,0.6754194,-0.7031776,-0.20396706,-0.85690236,-0.15534392,-0.14947143,0.49142715,0.16950494,0.011241532,-0.2027594,0.29415736,0.6666496,0.25515363,0.105027206,0.41053003,0.31020027,-0.07024601,0.5111275,0.05449952,0.48959643,-0.35820502,-0.19824144,0.4450557,-0.06805063,0.19186847,-0.3903425,-0.030453948,0.5575771,-0.5674161,-0.81465137,-0.57441276,-0.4139311,1.2301198,-0.30986217,-0.4837775,0.20954584,-0.2270059,0.052781902,0.24428342,0.5459136,-0.06429359,0.36718258,-0.82743555,0.080285326,0.07017897,0.23016483,0.11834002,-0.17183542,-0.45751017,0.77337044,-0.081681736,0.41856596,0.4644647,0.23757927,-0.00840105,-0.60996735,0.21127734,0.9056292,0.30931315,0.07142562,-0.39867622,-0.077757075,-0.17678073,-0.031970646,-0.14000186,0.68264264,0.8001338,-0.29947174,0.12402064,0.3123686,0.035503063,0.14818528,-0.13900489,-0.3178434,-0.13563678,-0.1835448,0.5339554,1.0875857,-0.18101858,0.14084028,-0.21530584,0.37266976,0.03426919,-0.5370327,0.76203567,0.89989007,-0.0821403,-0.0026664366,0.52298295,0.5343354,-0.39844117,0.6671524,-0.5008716,-0.33236387,0.5456284,0.059007328,-0.4315384,0.15122162,-0.44437632,0.2760894,-0.81704646,0.5391432,-0.5088266,-0.38126788,-0.30919933,-0.04474173,-3.2633743,0.452941,-0.36485514,0.027373012,-0.36523777,0.00047628582,0.34732214,-0.47316155,-0.5183036,0.22155564,0.11145231,0.52506375,-0.1673398,0.03093594,-0.16690221,-0.3755654,-0.22924218,0.22942962,0.34755927,0.17085648,-0.18429129,-0.47618595,-0.2643992,-0.21246828,-0.49405634,0.05561447,-0.6049223,-0.41059777,-0.15123726,-0.6057147,-0.26244396,0.49979395,-0.26831204,-0.039064176,-0.28002182,0.11175153,-0.21076533,0.21008733,-0.1586704,0.36886916,0.085360594,-0.008208468,-0.039314702,-0.18477869,0.49049234,0.08777897,0.11221536,0.0649467,-0.10269281,0.15892474,0.56383103,0.85371757,-0.2703609,1.0625755,0.46955696,-0.08606677,0.26820862,-0.275555,-0.4879781,-0.8157135,-0.22206964,-0.117940575,-0.36514527,-0.37174007,0.3263343,-0.35562497,-0.7635237,0.7717101,-0.05165728,0.33240384,0.11882894,0.09369766,0.32721645,-0.24023016,-0.050521307,-0.15687521,-0.21994798,-0.7144132,-0.10912721,-0.6641521,-0.468582,-0.07941385,0.8572969,-0.39822623,0.17393667,-0.042910106,-0.2247627,0.2931684,0.2299864,-0.0018160527,0.19594957,0.6444878,0.3021564,-0.6257608,0.29468158,0.081097916,-0.1281942,-0.43444303,0.39218712,0.68823344,-0.91033804,0.7387232,0.36098534,-0.008377179,0.03668453,-0.67287546,-0.43812525,0.0061639226,-0.24124774,0.72587615,0.16295502,-0.88804317,0.42428318,0.28248757,-0.67589355,-0.7314927,0.4612244,-0.18651265,-0.32628155,-0.110215984,0.32982907,-0.27117947,-0.0542484,-0.347311,0.234609,-0.24899226,0.32876155,0.09194294,-0.27748606,0.085960716,-0.029824475,-0.16838461,-0.894008,0.04972324,-0.644278,-0.21100436,0.30583805,-0.014315044,-0.35474014,0.1216406,0.3230434,0.4454282,-0.22099529,0.23264915,-0.088902086,-0.5033692,0.44712904,0.56945,0.2545477,-0.42187178,0.6502972,0.1396535,-0.28392297,-0.18069424,0.1050167,0.29481974,-0.19557868,0.39430237,-0.15574107,0.14119802,0.19812514,0.6535793,0.032576382,0.47858965,0.12482175,0.102311045,0.5806917,0.11561907,0.42739394,-0.07837364,-0.43298993,0.08915219,-0.33002913,0.09075847,0.4264487,0.31468484,0.22977525,0.059953365,-0.274045,-0.13756727,0.27347094,0.06476418,-1.5649135,0.35274106,0.18393706,0.6146482,0.6809684,0.13878381,-0.20835516,0.73085916,-0.08352626,0.13377245,0.4945094,0.0014473704,-0.38138294,0.6142677,-0.615676,0.18788542,-0.2249859,0.005462344,0.34838116,0.052187547,0.3326766,0.87656295,-0.20645544,0.060507588,-0.11968643,0.029322777,0.11601297,-0.4792606,0.1281228,-0.35754436,-0.51213235,0.6628294,0.44040123,0.43525028,-0.34025162,0.108734354,0.07348679,-0.12491175,0.3692076,-0.072178066,-0.2636848,0.15532048,-0.5549502,0.015122189,0.43614006,0.04864203,-0.014579296,-0.20723908,-0.19027098,0.086506516,-0.2985465,-0.116601095,-0.12282079,-0.9705681,-0.16169311,-0.37570783,-0.19219583,0.53273004,-0.36522982,0.035886925,0.17549944,0.027353566,-0.14736761,0.26710454,0.05328538,0.61530936,0.23753045,-0.15213038,-0.23466791,0.18547426,0.1599641,-0.3207579,0.18843731,-0.3212219,0.2092929,-0.5190125,0.56605804,-0.1356635,-0.319064,0.1573551,-0.21969077,-0.21109512,0.59899575,-0.08313031,-0.27705786,0.19164151,-0.15453185,-0.23888944,-0.11969411,-0.13978869,0.3219512,0.23551805,-0.07727841,-0.031219216,-0.15222576,-0.12844694,0.491121,0.15989326,0.4401348,0.14359659,0.0792387,-0.27250627,0.13687834,0.16772975,0.52297455,0.19997364,-0.019363271,-0.19068374,-0.3148461,-0.35604045,-0.020853732,-0.12169187,0.10984163,0.040739637,-0.088943355,0.84301686,0.3324706,1.1814954,-0.15919663,-0.34037367,0.07087904,0.5368929,-0.16682278,-0.05882007,-0.44774202,0.9533975,0.5373844,-0.4380177,-0.047152855,-0.49332345,-0.094995975,0.0506415,-0.3187655,0.06021943,-0.03236691,-0.5475529,-0.281551,0.117974624,0.38748264,0.004976529,-0.12648454,0.04423241,0.0048152003,0.03810025,0.30466396,-0.6696666,-0.22509758,0.2563346,0.2152289,-0.06508958,0.12717615,-0.25171393,0.28759524,-0.5674437,0.22722787,-0.34015912,-0.08229689,-0.44116205,-0.4272227,0.059753172,-0.04326646,0.34191358,-0.5291622,-0.27267906,-0.20024167,0.36616704,0.22224984,0.23239042,0.70448536,-0.3253555,0.042363666,0.2041192,0.5202106,0.9872074,-0.48528826,-0.094884865,0.2776793,-0.43350476,-0.5235148,0.31780818,-0.35217953,-0.03622422,-0.3669378,-0.5235669,-0.5958834,0.06583,-0.08176982,0.015710043,0.17059146,-0.87146384,-0.091873795,0.3307904,-0.31218106,-0.11791515,-0.27824888,0.36200717,0.5890773,-0.21341246,-0.4667092,0.07257293,-0.01814712,-0.27810603,-0.54926974,-0.30281073,-0.17624232,0.197669,0.30619204,-0.26725823,-0.12208899,0.25095108,-0.5342079,0.0668358,0.17542437,-0.33761105,0.11712568,-0.21424738,-0.062401496,0.96697646,-0.33013612,-0.067034245,-0.3541334,-0.5847137,-0.9874327,-0.38901776,0.41466346,0.08119129,0.09066277,-0.37969416,-0.036541857,-0.1701688,-0.0067924997,0.17606227,-0.45000055,0.29669297,0.079716094,0.629449,-0.19706538,-0.9839868,0.24537222,0.33813694,-0.039854802,-0.6825809,0.5670038,0.09910404,0.794835,0.056052998,0.049047865,-0.016041266,-0.48337942,0.042885907,-0.21323657,0.02795776,-0.57598853,0.051374022 +393,0.24982458,-0.40945628,-0.41597423,-0.044439554,-0.04474616,-0.08159276,-0.18722029,0.61466116,0.12752877,-0.6263152,-0.33669296,-0.17554994,0.1347147,0.51251674,-0.25644943,-0.5393891,-0.1111199,0.1953137,-0.48595396,0.66275793,-0.36876956,0.13430424,0.15718968,0.46368885,0.060284484,-0.0040046684,0.38649294,-0.031968106,0.13534343,-0.11159209,0.08182072,0.21804857,-0.7298891,0.21355684,-0.14815246,-0.6900138,0.06241183,-0.56294674,-0.28530478,-0.76068753,0.26803753,-0.9634099,0.7927095,0.28971723,-0.34694242,0.045450386,-0.05403887,0.45302972,-0.3587514,0.13234241,0.16452666,-0.08639627,-0.057513148,-0.110717595,-0.08904773,-0.35793796,-0.58314383,0.11574483,-0.43780437,-0.014408509,-0.010009806,0.23512666,-0.15310252,0.15160252,-0.3373351,0.42489684,-0.6268112,-0.1974718,0.25363386,-0.09225166,0.5924177,-0.6713915,-0.15802474,-0.24217944,0.15736155,-0.39310265,-0.34757307,0.14455189,0.3862438,0.51489455,0.038823888,-0.29442585,-0.18038552,0.00094045204,0.039655637,0.47325668,-0.14788128,-0.6105147,-0.20691603,-0.02518343,0.3171099,0.1766665,0.114608325,-0.53667784,-0.09977746,-0.15106149,-0.20600252,0.24098007,0.49096295,-0.4181441,-0.199134,0.15755244,0.65978414,0.19758004,-0.06325481,0.09669549,0.076039374,-0.6259432,-0.18758993,0.21242593,-0.37509492,0.7153222,-0.17707582,0.21971522,0.5217867,-0.053994667,0.10944054,-0.054949608,-0.07265537,-0.33802995,-0.33188987,-0.50779057,0.5380602,-0.3425996,0.24259563,-0.42336106,0.6872743,0.11525056,-0.76558965,0.33236733,-0.6495521,0.072047345,-0.1721546,0.6370811,0.61062855,0.34282365,0.35131767,0.63818103,-0.3303138,0.14461814,-0.110669166,-0.26418188,0.055448562,-0.06694856,-0.20663448,-0.5033314,-0.07773133,-0.17308877,-0.14918427,0.07215737,0.52528006,-0.71913594,0.02785707,0.24600725,0.6870115,-0.28850293,0.0036327243,0.7082786,1.2477949,0.9382648,0.12695114,1.5504144,0.23104157,-0.24953596,0.024355173,-0.18960936,-0.6741271,0.21804784,0.603085,0.15166819,0.5244185,0.11765453,0.03773121,0.5155648,-0.62474626,0.14321204,-0.044382017,0.020449324,-0.14582762,-0.18965574,-0.51873046,-0.08041886,-0.0034578096,0.02256535,-0.053864274,0.17229252,-0.27153414,0.33029136,2.2192797e-05,1.5557429,-0.21327937,0.10184193,0.068727344,0.32227707,0.15080081,-0.15613098,0.10885372,0.3068212,0.60699385,-0.008326988,-0.56544024,0.13136421,-0.22947931,-0.61303574,-0.24623097,-0.13569205,0.056266963,0.06660915,-0.54327756,-0.046133686,0.11232375,-0.1822923,0.29954723,-2.4105318,-0.2635149,-0.28936592,0.2869514,-0.2582784,-0.3332085,-0.052223444,-0.32282546,0.57676905,0.49219513,0.4156301,-0.7465835,0.43993017,0.4725882,-0.50133115,0.014507587,-0.75373656,-0.16239347,-0.014264475,0.34449065,0.0039756745,-0.061078016,0.12243318,0.23771472,0.4282889,-0.122524254,0.090317756,0.16251452,0.31401515,0.08283996,0.41749716,-0.0029571753,0.5526115,-0.44975147,-0.25955164,0.37294018,-0.18444264,0.32673785,-0.050355047,0.13746469,0.39874184,-0.5300043,-0.91159177,-0.79397947,-0.68118733,0.84017444,-0.2711312,-0.475938,0.17942633,0.011591415,-0.26274776,-0.053539112,0.7018636,-0.18413782,0.06256551,-1.0663234,-0.12239971,-0.083993524,0.46285948,0.030542716,-0.094031475,-0.77456135,0.60716844,-0.0930034,0.44043866,0.8062399,0.2315671,-0.10760694,-0.63292044,0.026086519,1.0471433,0.37173513,0.16915971,-0.2570975,-0.145732,-0.27041715,0.24697097,0.089630194,0.42170978,0.78006315,-0.08774814,0.022733167,0.24492462,0.17066936,-0.03291543,-0.23074186,-0.39717066,-0.06345882,0.18519153,0.66870433,0.63706285,-0.27326104,0.21593587,-0.3362132,0.6412173,-0.096068166,-0.52044946,0.6200345,0.98796076,-0.04622275,-0.17614628,0.98954344,0.5030597,-0.4016315,0.5669091,-0.86868316,-0.14791799,0.43140173,0.0024790664,-0.38032266,0.2612092,-0.37960768,0.32975116,-1.2017223,0.35388517,-0.37255585,-0.17956126,-0.91866606,-0.18604994,-3.552417,0.2453389,-0.307832,-0.13794418,-0.059163403,-0.26795244,0.37520257,-0.83873844,-0.6518181,0.32846826,0.1786722,0.40485105,-0.1739968,0.13127713,-0.25066045,-0.25847098,0.0041689673,0.32205695,0.3969663,0.1120593,-0.10131901,-0.57968146,0.062509306,-0.104101025,-0.5318318,-0.009020095,-0.774502,-0.3229257,-0.22191077,-0.77653784,-0.25489083,0.5244382,-0.36072063,-0.15043165,-0.101657234,0.20045011,-0.044686932,0.44479287,0.15165293,0.34412405,0.08012411,0.071913995,-0.14877406,-0.1901354,0.17990251,0.19947775,-0.08907626,0.12269833,-0.23701508,0.26926404,0.46712446,0.7014563,-0.19823165,0.7747519,0.81508845,-0.024361035,0.17628737,-0.13012297,-0.25602293,-0.72891706,-0.51848096,-0.1331992,-0.45882866,-0.86779696,0.05615754,-0.23523499,-0.83716327,0.8419113,-0.18285452,-0.030157944,0.20089693,0.24567549,0.43707475,-0.34060225,-0.092731,-0.058876857,-0.1185532,-0.52804035,-0.48581252,-0.65231496,-0.5838774,-0.18817948,1.1819811,-0.09274045,0.25355202,0.24010508,-0.12775593,0.009950727,0.24962316,0.09634098,0.08657827,0.5139296,-0.04420775,-0.7342684,0.40387273,0.2895147,-0.50891596,-0.60586613,0.3223653,0.7345574,-0.76178473,0.66387343,0.24789996,-0.047588304,-0.2721012,-0.63463473,-0.3788283,0.14494397,-0.2696284,0.6633072,0.26643857,-0.56784636,0.42323363,0.35974702,-0.21722406,-0.9026939,0.616043,-0.16269831,-0.2771817,0.075113736,0.41167954,-0.25485685,0.15806833,-0.31450167,0.2602975,-0.38414836,0.09504893,0.32651034,-0.13630913,0.38751897,-0.30623665,0.11123756,-0.9641412,0.30365568,-0.52848023,-0.21392739,0.22089599,-0.007669285,-0.054761246,0.2876592,0.046930343,0.42153922,-0.28612134,0.23075408,-0.016673813,-0.4156387,0.25485682,0.61595124,0.22618848,-0.29770136,0.6075694,-0.09872762,-0.26365513,-0.44489563,-0.04238824,0.52613705,0.06037274,0.3991125,-0.20763223,-0.023113899,0.3788612,0.8509252,0.23109926,0.4083061,0.1928162,0.05849482,0.3013417,0.15720485,0.2269214,0.021116039,-0.5300536,0.06855241,-0.061914742,0.09636489,0.4695859,0.122028776,0.3755919,-0.22690201,-0.4283575,0.16075097,0.26373664,0.29398343,-1.1700615,0.23003815,0.0686682,0.6392718,0.6965122,0.12572691,0.023900678,0.58724636,-0.43039966,-0.012468462,0.39654934,0.07011499,-0.4049135,0.593934,-0.7155282,0.313112,-0.16036175,0.054336082,-0.050819125,-0.28796056,0.4426558,0.9014897,-0.149076,0.13244388,0.02553094,0.054297302,0.066949174,-0.4275445,0.018990526,-0.37842214,-0.46867976,0.7577136,0.5108534,0.47257033,-0.3330727,-0.04847899,0.28086808,-0.11749687,0.2611648,0.02962335,0.14524573,0.14554024,-0.53202385,-0.12642014,0.6960352,-0.04978181,0.038943138,-0.093689166,-0.47598645,0.1858807,-0.14121246,-0.19049962,-0.01049678,-0.9458651,-0.24924423,-0.46598974,-0.22351277,0.612398,-0.27211007,0.14596628,0.007041288,0.067101754,-0.253674,0.44935593,-0.070321575,0.9849084,0.37944195,-0.0143358195,-0.1744558,0.25305775,0.22948901,-0.085728556,0.13180979,-0.37170017,0.024404904,-0.6581485,0.504766,0.15342097,-0.43992576,0.021008397,-0.065050036,-0.055159424,0.4765923,0.022685358,-0.19153555,0.18563293,-0.16911477,-0.23525803,-0.4739059,-0.21044536,0.31765735,0.17393635,0.34480146,-0.07974874,0.027767234,-0.22615556,0.7543605,0.2377839,0.37521413,0.36089802,-0.01716187,-0.47287536,0.023283577,-0.09288671,0.45454368,-0.20923883,-0.27431688,-0.11275568,-0.61470985,-0.22613911,-0.104942046,-0.20858665,0.36787465,-0.087991536,-0.1642946,0.8118474,0.25402853,1.373959,-0.09023342,-0.60310227,-0.016141394,0.5288601,-0.051323224,-0.1605624,-0.45454872,1.0421034,0.5707924,-0.054491464,-0.13167079,-0.13680713,-0.09191513,0.15502451,-0.1394208,-0.073395975,-0.054647427,-0.79225564,-0.18447442,0.12402894,0.49176893,0.04805395,0.022921637,0.32451373,0.21018817,-0.06076966,0.23508193,-0.5490743,0.07362514,0.3300935,0.31060117,-0.02243931,0.07805491,-0.46183667,0.396657,-0.49801013,-0.010377844,-0.55545884,-0.050745994,-0.17455657,-0.28005472,0.15046857,-0.12945858,0.39671576,-0.45141935,-0.19383006,-0.15053457,0.59347826,0.12737413,0.16928507,0.7810159,-0.11706395,0.2481138,-0.05407236,0.52243495,1.290264,-0.6620548,-0.0903612,0.28979996,-0.41076493,-0.47704026,0.36591506,-0.4544654,0.10631446,-0.08209094,-0.33574283,-0.6142506,0.13098122,-0.07980866,-0.22311153,0.0015776964,-0.687555,-0.08514458,0.47921443,-0.3710222,-0.23664005,-0.40868306,0.30544528,0.65949565,-0.2041542,-0.64258796,0.06311899,0.26153925,-0.22967525,-0.6211542,-0.13255395,-0.26600575,0.371554,0.2063021,-0.39409614,0.0021469493,0.10871712,-0.46314645,-0.08523812,0.38173875,-0.3011459,0.11536176,-0.40077734,-0.16224729,1.0812137,-0.1492394,0.019510472,-0.73698425,-0.45280495,-1.1301248,-0.40194893,0.6603554,0.26738974,0.012399043,-0.5652336,0.22713543,-0.19449043,-0.091272146,-0.0019552708,-0.049779475,0.543733,0.15246168,0.8957963,-0.07513456,-0.7955957,0.23267214,0.045851987,-0.03169774,-0.5043845,0.4190618,0.22762226,1.0370563,-0.06694703,5.5852037e-05,0.1741606,-0.6508464,0.13377208,-0.27679026,-0.24487717,-0.80344445,0.049473394 +394,0.37134942,-0.3724428,-0.56502086,-0.047969237,-0.21196242,-0.03431101,-0.18209565,0.63821095,0.22500162,-0.29479423,-0.19985123,-0.051484853,-0.031784445,0.3910662,-0.17067462,-0.51248515,-0.26893464,0.3015379,-0.75360924,0.8022814,-0.36540118,0.1752457,-0.2822965,0.59889346,0.39053866,0.19252296,-0.20257998,0.1438277,-0.16783798,0.10164654,0.07252168,0.4137298,-0.51087683,0.12795506,-0.20302196,-0.43458727,-0.21125953,-0.46532485,-0.5520044,-0.8138554,0.39940917,-0.7495832,0.6858881,-0.11501571,-0.3040087,0.20173597,0.16893901,0.39870787,-0.123939246,-0.13389188,0.1471232,0.035903193,-0.04522403,-0.12256127,-0.29038638,-0.45742905,-0.7073118,0.032201495,-0.5570635,-0.05189644,-0.08545879,0.24645412,-0.30522594,-0.18499054,-0.06449043,0.6660172,-0.40367857,0.11915451,0.12366575,0.14689279,0.08293063,-0.6671112,-0.29802704,-0.15339462,0.38581228,-0.1557911,-0.25466654,0.25016478,0.23656048,0.27320346,-0.16097464,-0.09384155,-0.49230528,0.11843667,0.1005871,0.4565247,-0.08493966,-0.6208474,-0.07827092,0.1576883,0.10854753,0.13363259,0.39248034,-0.17691125,-0.07771634,-0.1174773,0.011712611,0.63635355,0.44462153,-0.22069462,-0.39919427,0.3841652,0.7435727,0.43200827,-0.22577085,-0.02096959,0.050185908,-0.6588702,-0.06251093,0.07657786,-0.1535036,0.5669935,-0.09886796,0.2878509,0.48040316,-0.10244733,-0.27117783,0.19651063,0.16261122,-0.11239711,-0.18486536,-0.38623643,0.3168771,-0.2603233,0.11766649,-0.041594177,0.54148746,0.14510506,-0.7573158,0.24987173,-0.64770275,0.16156682,-0.036623597,0.41747418,0.8976707,0.47434807,0.36678752,0.49803355,-0.017358614,0.1440473,0.07658094,-0.2775305,-0.07062683,-0.34350464,-0.12575297,-0.70948976,-0.11030483,-0.20969881,-0.12627454,0.13120554,0.55709773,-0.5646449,-0.1845762,0.19183202,0.8407459,-0.201136,-0.29414275,0.82298094,1.0292455,1.0864615,0.03387622,1.2266613,0.092536725,-0.2761283,0.20204979,-0.47098717,-0.83726543,0.28780255,0.18696956,-1.0770503,0.5481551,-0.05959777,0.062498618,0.46402514,-0.45020723,0.18876171,-0.19027399,-0.04968816,0.27494228,-0.25198781,-0.5041981,-0.4041431,-0.2826297,-0.001892969,0.19838111,0.27112392,-0.21060419,0.4590292,0.06006977,1.6967968,0.016335854,-0.05204567,0.060162142,0.6170189,0.16055132,-0.33647427,-0.090413034,0.13942854,0.4938196,0.103333734,-0.5172116,0.22189343,-0.18836556,-0.3766582,-0.29869595,-0.37993765,-0.12150881,-0.095015846,-0.3544949,-0.29099262,-0.16055042,-0.24924235,0.42988598,-2.591583,-0.18787408,-0.08738359,0.32414088,-0.18489568,-0.41406783,-0.20186673,-0.49074328,0.27143642,0.15263806,0.44366273,-0.5407794,0.5259152,0.33440757,-0.6860771,0.012714326,-0.6888225,-0.31127268,0.12596875,0.41731003,-0.14239171,0.20589788,0.46102276,0.30100915,0.31841156,-0.16933368,0.10170695,0.36824015,0.50796866,-0.06015703,0.5507211,-0.08898785,0.5151069,-0.26370117,-0.28768635,0.35972342,-0.45619783,0.23692827,-0.014231672,0.09082935,0.65654176,-0.5211748,-1.0647881,-0.45630467,0.17021966,1.1223603,-0.1737928,-0.34307685,0.12100784,-0.6381331,-0.2595192,-0.2540063,0.4680799,-0.23375987,-0.3034854,-0.9098537,-0.15401644,0.0013025211,0.26828998,-0.023955913,-0.07003481,-0.52628887,0.4399083,0.14445375,0.52706265,0.30015618,0.18561234,-0.5546797,-0.66694,0.024821743,0.76528305,0.24970238,0.13524254,-0.35451102,-0.20302628,-0.39491785,0.15648435,0.014023165,0.58256346,0.39641193,-0.13446185,0.29737598,0.27367344,0.015083708,0.20552675,-0.32279024,-0.264522,-0.34453735,0.1150889,0.4539084,0.79246706,-0.30773038,0.7481629,-0.072316445,0.03647719,-0.09162751,-0.42022637,0.58450925,1.451342,-0.23542176,-0.34481704,0.68818146,0.63718706,-0.33444273,0.40056124,-0.27670023,-0.13966799,0.5602787,-0.2824725,-0.30191913,0.22856928,-0.22078432,0.103974484,-1.0490571,0.21637857,-0.26141652,-0.42011228,-0.8286002,0.15538457,-2.7606392,0.101037204,-0.18249865,-0.2381636,-0.13391604,-0.42991844,0.0028330584,-0.6636091,-0.7695282,0.22060525,0.14627953,0.63394624,-0.24488378,0.07848767,-0.16411385,-0.37544417,-0.322333,0.10495859,0.40665463,0.4603095,-0.06563597,-0.6071995,-0.11399367,-0.13510497,-0.426651,0.052305102,-0.73945314,-0.30808637,0.038494382,-0.76353073,-0.31529322,0.6524684,-0.16895278,-0.07950788,-0.30235243,0.07012602,0.23911901,0.28410769,-0.12915057,0.19584769,0.22251685,-0.18570302,0.11996305,-0.015683472,0.20528953,-0.053634554,0.35114214,0.2652302,-0.11556015,0.48971054,0.6579481,0.9272744,-0.102603786,0.9404356,0.77279717,-0.12299124,0.220381,-0.21569736,-0.2450422,-0.59344417,-0.16229574,0.0917764,-0.46616852,-0.60621756,-0.044561192,-0.33356038,-0.8691351,0.67505527,-0.11266627,0.24209772,0.074589886,0.25265697,0.67727643,-0.14961886,0.1509365,-0.23505694,-0.17473173,-0.36970282,-0.32101113,-0.52507144,-0.48017165,0.03918721,1.3040787,-0.38907722,0.16705604,0.2093782,-0.48401883,-0.011457756,0.39555368,-0.0690193,0.20998888,0.45844916,-0.11083472,-0.5682002,0.33202943,-0.118450515,-0.12653334,-0.44809565,0.2046837,0.5719542,-0.54103464,0.55910444,0.2558411,-0.20566404,-0.38720286,-0.5170412,-0.2557337,0.059266165,-0.053966444,0.44155893,0.425733,-0.74090123,0.3703831,0.21039271,-0.4099058,-0.7563433,0.66058135,0.017109461,-0.25956976,-0.09615668,0.3363085,0.16932933,0.05708896,-0.43269196,0.28102353,-0.23220678,0.24449389,0.10753101,-0.14421022,0.025153616,-0.2182147,0.040757086,-0.8723237,0.33599052,-0.514095,-0.41645172,0.42868724,0.11274061,0.33581683,0.16657478,0.13302271,0.17394245,-0.36074305,0.016070588,0.009913783,-0.30632055,0.08782196,0.34434974,0.49574533,-0.594576,0.37592244,0.055755775,-0.22880207,0.08466863,0.16511224,0.44027892,0.094625175,0.49432993,0.29822728,-0.21909547,0.27940848,0.8241939,0.1554499,0.43289927,-0.05190918,-0.14409243,0.15717961,0.025789412,0.3573172,-0.18519217,-0.48082113,0.14556605,-0.17935239,0.33477747,0.6122396,0.14759918,0.29394925,-0.2507127,-0.48488393,-0.013001372,0.2704095,0.11261338,-1.6622219,0.28076234,0.38526925,0.9400986,0.4314367,0.15391785,-0.031742617,0.6330438,-0.18983887,0.08737304,0.502579,0.09118295,-0.5134763,0.5058766,-0.6602488,0.64032304,-0.009254538,0.042948347,0.018188754,0.0077490136,0.4188412,0.73868084,-0.16885817,-0.010491162,0.23571952,-0.29944602,0.021806696,-0.3022841,0.1262726,-0.5410343,-0.15915684,0.69623643,0.6682188,0.29696414,-0.2567081,0.10287851,0.17075415,-0.21540864,0.2212566,0.027183155,0.05720297,-0.12733312,-0.83566314,0.038152903,0.45727775,-0.25732228,0.0072886646,0.05450854,-0.21419275,0.22112496,-0.16810507,-0.025744775,-0.047091275,-0.870049,-0.13963845,-0.2737727,-0.3770943,0.56918406,-0.024082491,0.08590657,0.3851045,0.13398768,-0.46440527,0.46357703,-0.19270968,0.72324616,-0.012849897,-0.045506436,-0.32853606,0.20959993,0.15167885,-0.17258316,0.04927978,-0.39417568,0.059947822,-0.26082075,0.50233823,0.25836328,-0.39947185,-0.27046087,0.06911055,0.092502445,0.48486552,-0.10585416,-0.035214495,-0.21225436,-0.18080258,-0.2583082,-0.2880874,-0.110475264,0.29979226,0.49658194,-0.06059574,-0.19515814,-0.04342394,-0.0077109137,0.6333356,-0.024153432,0.5428226,0.5531194,0.31830204,-0.27477187,-0.14700665,0.3168089,0.64124906,-0.15378167,-0.18260889,-0.5146462,-0.32806465,-0.30650377,0.30414632,-0.1685593,0.42756283,-0.038257178,-0.22129446,0.62403536,0.04002026,1.2740074,-0.017571816,-0.5478998,0.19746776,0.4449592,0.13324134,-0.16203666,-0.45629692,0.92960185,0.29032543,0.061633814,-0.12545927,-0.47823206,-0.03703314,0.0128132,-0.22275595,-0.16047491,-0.022050649,-0.4989191,-0.16078639,0.3110652,0.17076135,0.25849178,-0.21162772,0.32501394,0.3702457,-0.007228171,0.15970428,-0.48569536,-0.15447329,0.16423772,0.28697917,-0.0111449165,0.051608723,-0.5459276,0.25080988,-0.39436194,0.084815465,-0.1922208,0.29427934,-0.2041023,-0.40049395,0.22466677,0.10644215,0.36169994,-0.30798805,-0.23918171,-0.35588264,0.53977376,0.10237795,0.09098903,0.46476987,-0.31381267,0.23046596,-0.0149417715,0.39908543,0.9969797,-0.20787656,-0.19636922,0.2056169,-0.3889514,-0.77512765,0.28343013,-0.33785176,0.34856096,-0.031726483,-0.060141165,-0.8292191,0.2677345,0.0791777,0.2613894,-0.2022792,-0.5770517,-0.21128917,0.3009807,-0.36857677,-0.10253135,-0.4526656,-0.09802959,0.5045066,-0.24118592,-0.44824114,0.0492554,0.1785713,-0.102283925,-0.31387517,-0.105663024,-0.5130497,0.23965414,-0.065914616,-0.4177257,-0.40688112,-0.1428498,-0.45721766,0.3037375,0.31854227,-0.26061568,0.15699394,-0.27154538,-0.24607503,1.2049123,-0.53480595,0.27266863,-0.38711488,-0.63707083,-0.87045336,-0.36529875,0.26689056,0.22638847,-0.09792187,-0.96864986,0.13828988,-0.07350489,-0.5303616,0.07752953,-0.32365927,0.45198348,0.09960105,0.26678246,-0.1902253,-0.7833266,0.2197151,0.13133046,-0.19343974,-0.5424766,0.57696337,0.07001797,1.0080436,0.0047267624,0.30847183,0.16865034,-0.29841352,-0.1518779,-0.15952201,-0.044721868,-0.5813524,0.0010746518 +395,0.4775764,-0.16867478,-0.3551897,-0.26988202,-0.27182147,-0.017425196,-0.21346082,0.3392262,0.35612956,-0.19455945,-0.11291851,-0.18743582,0.061638348,0.30378655,0.0038680178,-0.91947544,-0.153036,0.17292492,-0.7877356,0.32521176,-0.6704989,0.2401738,0.108116664,0.45170873,0.13588285,0.24066181,0.27159476,-0.19003963,0.032977078,-0.14641215,0.07588174,0.29118183,-0.569708,0.17784925,-0.08373826,-0.3051664,0.03395291,-0.44942114,-0.26097313,-0.7867344,0.10500735,-0.89132214,0.58777416,0.099336185,-0.15087172,-0.16890989,0.1973054,0.39686045,-0.22387195,0.18900283,0.37458324,-0.29514006,-0.08140789,-0.353586,-0.08711193,-0.45619693,-0.5144119,-0.020982686,-0.39313263,-0.4620208,-0.2527533,0.29575783,-0.3099017,-0.036749654,-0.19920263,0.43593094,-0.31903434,-0.03774062,0.49538666,-0.31098297,0.38100782,-0.46857905,-0.044732638,-0.09396633,0.36860496,-0.037499852,-0.36352178,0.3570182,0.26240596,0.43977612,0.19680248,-0.2989612,-0.117956854,-0.17529885,0.107920006,0.476583,-0.362123,-0.22978865,-0.27811417,-0.010553087,0.21305905,0.44220072,-0.04235639,-0.37387824,0.1419622,-0.008404182,-0.13710748,0.5664788,0.5774776,-0.21095014,-0.38186222,0.16716695,0.486604,0.17190656,-0.14758961,0.086488195,0.18369368,-0.6333898,-0.13338102,0.2602566,0.07190214,0.41891608,-0.030894816,0.028505312,0.90922016,-0.24123593,0.0036171165,-0.050289564,-0.084140435,0.095246024,-0.52816284,-0.40064812,0.2812087,-0.61030006,-0.03436227,-0.38361236,0.8902475,0.12165748,-0.69502074,0.41401199,-0.61006546,0.13328008,-0.089188375,0.7054256,0.7156321,0.22284034,0.4040062,0.7992183,-0.2713444,0.2348027,-0.076172166,-0.21445577,0.18347792,-0.24404533,0.119455695,-0.4064568,0.07759955,-0.27162623,0.07544619,0.17714272,0.32674196,-0.6522447,-0.099578306,0.24209516,0.7458531,-0.3914385,-0.00877593,0.4972539,1.1215545,0.9683184,0.16637407,1.2866402,0.56379855,-0.299928,0.25239238,-0.34959045,-0.69081223,0.26681098,0.22954848,-0.08854822,0.14485338,-0.14270823,-0.120070525,0.28533578,-0.4995478,0.02781601,-0.12229497,0.30987898,0.08024935,0.021543162,-0.5043037,-0.19031642,0.0094431145,-0.17554428,0.1924948,0.12337949,-0.29699382,0.1459349,-0.17504899,1.1982747,-0.13165697,0.044996817,0.055146728,0.47065926,0.24491759,-0.27876428,-0.031118581,0.41144547,0.43810034,-0.022005187,-0.60700405,0.4180203,-0.24749987,-0.2413126,-0.18861698,-0.37743568,0.14885923,0.12337403,-0.38992968,-0.24899237,-0.0020264685,-0.2759779,0.41013288,-2.60079,-0.23344533,-0.043032072,0.2925234,-0.2307915,-0.1694946,-0.25576377,-0.4645376,0.3532796,0.15969333,0.38121885,-0.53166187,0.50774133,0.4980081,-0.41230506,-0.19557187,-0.9050821,-0.027538285,-0.16339673,0.37187523,0.050887596,-0.07827972,-0.2150736,0.18236473,0.7664784,0.014064423,0.14054526,0.40982586,0.348887,0.32408485,0.52928305,0.041350543,0.5214328,-0.26039723,-0.3642212,0.39952525,-0.31911713,0.1536943,-0.060587887,0.092060976,0.5327739,-0.39637655,-0.9516198,-0.70718616,-0.57070243,0.85722244,-0.343601,-0.56163436,0.20972559,0.024763469,-0.089064,0.1463602,0.7279065,-0.076160036,0.01788245,-0.79716116,-0.037792083,0.030498879,0.32561323,0.127029,0.04316664,-0.38031095,0.67374086,-0.09562029,0.46196848,0.09685694,0.30397382,-0.3091457,-0.3817655,0.13152666,1.045882,0.08976187,-0.10885771,-0.061022364,-0.33442703,-0.030848145,-0.18704014,0.014082147,0.61920786,0.99409544,-0.04342612,0.10588868,0.41833335,-0.20981479,0.044338066,-0.115481496,-0.29588857,0.038020585,0.012209995,0.6104391,0.6035327,-0.00290787,0.50399554,-0.20491222,0.48193392,-0.1567627,-0.47581407,0.58479124,0.5832923,-0.067965366,-0.12473466,0.5270043,0.4665282,-0.48301458,0.5010224,-0.69493306,-0.13779561,0.7063441,-0.18881579,-0.59908885,0.23730037,-0.26473892,0.14736843,-0.85211563,0.49861595,-0.33724242,-0.5129994,-0.4814468,-0.22045393,-3.2252033,0.2703063,-0.1333497,-0.094016634,-0.19917895,0.02279386,0.42994317,-0.48123312,-0.40863603,0.08265327,0.26371938,0.6601492,-0.048774846,0.041542847,-0.30248263,-0.13842592,-0.07849306,0.1860574,0.20997913,0.26932713,-0.09871677,-0.16891742,0.09220479,-0.019965777,-0.5352348,0.14170758,-0.56355196,-0.5555813,-0.13709147,-0.57502156,-0.3141346,0.6705605,-0.55527985,0.060984906,-0.2504572,0.12156362,-0.1412217,0.28251666,0.1941127,0.40311024,0.16983688,-0.042546775,-0.16450882,-0.34765768,0.38833687,0.0020917526,0.24000342,0.068630725,-0.06081023,0.19740187,0.40108702,0.5821868,-0.021504657,0.96318054,0.43496484,0.020493427,0.10381468,-0.36493948,-0.18166326,-0.51896244,-0.2883784,-0.07501692,-0.46939102,-0.51697326,-0.08429285,-0.2287595,-0.7552825,0.6567318,-0.07960411,0.161564,-0.12228019,0.3538975,0.26268402,-0.14226995,0.0042360616,-0.11957546,-0.15396808,-0.41715384,-0.1513904,-0.60714966,-0.57921827,0.2350526,0.8994718,-0.42845693,0.13580316,-0.109252386,-0.23745812,0.033259057,0.16664746,-0.025541931,0.42747793,0.5527774,-0.046431992,-0.6248541,0.33311573,-0.024056163,-0.22481258,-0.68705237,0.23725142,0.9213111,-0.9370151,0.8368004,0.28113842,0.086158745,-0.10684689,-0.46886167,-0.3100461,0.106358,-0.31517285,0.45717832,-0.075372204,-0.72002614,0.5047137,0.47103474,-0.3774939,-0.68637973,0.26576027,-0.044485655,-0.2608661,0.03745189,0.36106166,0.013940877,0.0261761,-0.15578285,0.3206111,-0.4607562,0.12254696,0.10593377,-0.049555182,0.34080467,-0.10803715,-0.19122621,-0.6387939,0.18202604,-0.72855467,-0.3678229,0.31519005,-0.101534806,0.012106182,0.48719996,0.10085724,0.5349063,-0.058897913,0.19137374,-0.095515795,-0.32710248,0.24074002,0.4473568,0.2861843,-0.34798524,0.46258712,0.12112881,-0.29012236,0.036816232,0.06905256,0.5523357,0.043778066,0.45648694,-0.44710848,-0.17825453,0.4294393,0.7075429,0.009139478,0.49375203,-0.009823097,0.017284978,0.42025375,-0.040683854,-0.035377264,-0.05340794,-0.34725904,-0.030349761,0.023345321,0.25718927,0.44053826,0.33083862,0.34421605,0.07607752,-0.31009308,0.02857596,0.22084257,-0.14479303,-1.0837492,0.45530114,0.18854928,0.78026855,0.41266972,0.108188175,-0.20790689,0.641697,-0.1996424,0.17172922,0.27507433,-0.08445908,-0.38056132,0.68860483,-0.66891587,0.27805954,-0.21864907,-0.06489205,0.05099217,0.13730396,0.46367273,0.8435875,-0.2512689,0.13210632,-0.011406153,-0.05433805,0.18215565,-0.39111927,0.19804955,-0.4599659,-0.49391454,0.6178728,0.40861958,0.2835363,-0.21155752,-0.0067496086,0.17734413,-0.15336196,0.26044053,-0.07339924,-0.18465975,0.32331252,-0.5699449,-0.23041086,0.5947875,-0.13684873,0.040400088,-0.1647148,-0.14378218,0.058855575,-0.22179808,0.11075697,-0.0940017,-0.64935833,-0.027684197,-0.37421897,-0.49375173,0.4297488,-0.3205223,0.085703455,0.18058507,0.15062033,-0.20601818,0.30482584,0.18211551,0.8164838,0.039736263,-0.27295652,-0.31723103,0.16286547,0.1811875,-0.30894572,0.031802602,-0.45007697,0.04459733,-0.709246,0.63452303,-0.19403411,-0.51218015,0.26744688,-0.12401665,0.014861451,0.62770844,-0.23263986,-0.1291507,0.19197942,-0.32244787,-0.37658533,0.11608847,-0.26949486,0.13273813,0.26969537,-0.11376179,-0.11985821,-0.3924222,-0.269154,0.57238823,0.06691874,0.49456236,0.3862467,0.17580934,-0.07333385,0.11245983,0.17453422,0.4783407,0.20638075,0.016851231,-0.28922158,-0.28121337,-0.24524865,0.26758265,-0.12993333,0.30804926,-0.052213676,-0.46551323,0.93558174,0.009973628,1.1264355,0.015746806,-0.33596402,0.051125776,0.5279838,-0.12983586,0.05086846,-0.6062929,0.7420221,0.5945295,-0.09361894,0.04868881,-0.32295647,-0.26110896,0.38471857,-0.3329282,-0.078262605,-0.15490878,-0.75339514,-0.52365017,0.2165654,0.23396388,0.13488464,-0.03964767,0.07035762,-0.045802508,0.005106447,0.3296656,-0.6186567,0.110017,0.02923583,0.44320637,-0.06111055,0.248329,-0.29797664,0.40618357,-0.6954389,0.24027647,-0.43201184,-0.025046801,-0.10081673,-0.36265358,0.03508853,0.042689554,0.27124208,-0.18283136,-0.2990808,-0.001835508,0.45540243,0.09000807,0.14693022,0.74164516,-0.24308804,0.05442259,0.23889768,0.6913194,1.5212862,-0.33633,-0.05428212,0.21936782,-0.38609287,-0.69031554,0.37445912,-0.3325315,-0.24142231,-0.14464422,-0.5593506,-0.38834208,0.28487843,0.16635136,-0.075364806,-0.06916887,-0.46952528,-0.080850616,0.33835357,-0.28024095,-0.29398936,-0.24192752,0.45025888,0.6737823,-0.23598845,-0.2997723,0.01737827,0.3198389,-0.44111797,-0.44544458,-0.023193631,-0.39221355,0.3883353,0.00936631,-0.32896852,-0.00092926197,0.017361926,-0.5432752,0.06217115,0.16516688,-0.37595803,0.049614467,-0.029464845,-0.047919806,0.8551195,-0.10033615,-0.2128568,-0.7929517,-0.4724164,-0.9359379,-0.57865685,0.26775137,0.23812358,0.077893674,-0.30062222,0.037366908,-0.12622516,-0.1557494,0.06739856,-0.56664747,0.28613183,0.06476032,0.6252656,-0.38251114,-1.0366086,0.12006731,0.17055316,-0.27683657,-0.81726724,0.58632714,-0.045236606,0.74623626,-0.04687819,-0.0542193,0.045644186,-0.31573296,0.22786865,-0.47004417,-0.20541202,-0.98807734,0.117833816 +396,0.32289988,-0.12556121,-0.48344436,-0.11919715,-0.11715784,-0.08486343,-0.4242592,0.14449307,0.2505355,-0.30338013,-0.11079133,0.023541806,-0.0020101864,0.22054072,-0.10577072,-0.6733065,-0.112110995,-0.023905175,-0.7602676,0.5606467,-0.54654396,0.24910611,0.062316693,0.3207857,0.06717905,0.5324941,0.112100884,-0.13172476,-0.13685115,-0.1410263,0.010297598,0.27484253,-0.5515819,0.012209479,-0.18284117,-0.1763931,0.062085018,-0.36090603,-0.2655162,-0.75526524,0.08867852,-0.9442189,0.43981764,0.011575496,-0.10340985,-0.040658545,0.22838868,0.39060268,-0.3013912,0.07778315,0.08500417,-0.19378385,-0.23447946,-0.3554938,-0.07810337,-0.16566086,-0.43981287,0.051488977,-0.59117633,-0.29309127,-0.14164788,0.14202935,-0.32926,0.04010922,-0.20587334,0.40893134,-0.42210358,0.019008867,0.3675178,-0.14514272,0.23274466,-0.5337202,0.03723212,-0.069826715,0.5414139,-0.099285655,-0.12992273,0.26613972,0.27987128,0.48357543,0.23816255,-0.2086524,-0.22046873,-0.301128,0.34136003,0.35937673,-0.21453683,-0.2323306,-0.27157295,0.11242792,0.23451686,0.49970284,-0.077318385,-0.17042087,-0.03298696,-0.13859606,-0.12369546,0.44639847,0.5807483,-0.22999433,-0.3919515,0.24009782,0.68195546,0.31500596,-0.244198,-0.01772201,0.048276164,-0.45938635,-0.12351279,0.32082495,0.009003683,0.40293592,-0.1424763,0.057734456,0.7550017,-0.18741319,0.012331589,-0.12260855,-0.07907527,0.0055565196,-0.31058857,-0.15849301,0.19102041,-0.54208004,0.12314439,-0.22663012,0.55748993,0.10311618,-0.7048971,0.35460594,-0.5168836,0.17499687,0.02885836,0.72794735,0.7308481,0.34635967,0.40444103,0.6656733,-0.317221,0.20692724,-0.096758924,-0.37711114,-0.12018802,-0.14024504,0.120229684,-0.42325813,0.06108885,-0.19245267,0.057340417,0.04163103,0.20804933,-0.43722153,-0.01989568,0.21414515,0.6765331,-0.3302748,0.035389718,0.8461638,1.1073711,0.9466475,0.12147677,1.2232056,0.30547932,-0.22943231,0.036074936,-0.36523214,-0.7011231,0.1664731,0.31919473,0.26735938,0.25934255,-0.089045666,-0.0010880192,0.37667206,-0.54744774,0.05377047,-0.07165535,0.30143464,0.028173586,0.043208305,-0.5244595,-0.09093909,-0.053084966,-0.044784658,0.16464636,0.21791936,-0.018571654,0.42313534,-0.060012903,0.9447385,-0.15059566,0.1018786,0.22346057,0.43540427,0.20311442,-0.1835912,-0.084886186,0.4439258,0.39981282,-0.05871659,-0.6531688,0.14383316,-0.3322234,-0.2598708,-0.17682497,-0.40365335,0.03516126,0.10336068,-0.31931478,-0.12364454,-0.110476874,-0.25252277,0.34179935,-2.7989824,-0.1946859,-0.23515701,0.20178786,-0.31940612,-0.1679629,-0.1525794,-0.5155411,0.4029148,0.17428258,0.48404628,-0.5674068,0.48868167,0.45342407,-0.5540076,0.019100396,-0.72849935,-0.13040547,-0.09093905,0.47151688,-0.018886916,-0.031112226,-0.1354502,0.13358736,0.63980037,0.055194657,0.05464629,0.45551482,0.31238785,0.17081235,0.46462905,0.0020288667,0.5289667,-0.3166008,-0.2336015,0.36986867,-0.2748136,0.32084653,-0.18577024,0.15030378,0.5313833,-0.5444544,-0.82455766,-0.5454742,-0.5246635,1.225129,-0.3184901,-0.5559122,0.14050029,-0.18253721,-0.22283313,-0.011767631,0.54588765,-0.10895642,0.13178048,-0.7896651,0.12749575,-0.11822731,0.30593714,0.08252669,0.024275996,-0.35245085,0.5813529,-0.114818364,0.41926658,0.33019102,0.26208577,-0.13125362,-0.3983381,0.08233533,0.8832144,0.35205323,-0.030098354,-0.19524717,-0.33421904,-0.077033244,-0.26874813,0.0019432565,0.537551,0.75444204,-0.045125745,0.07624658,0.2610774,-0.08720069,0.13654779,-0.020376006,-0.22157662,-0.12310359,-0.0154864015,0.6143909,0.696471,-0.034794427,0.4128777,-0.1311995,0.31771263,-0.05693585,-0.4101854,0.68015504,0.46425977,-0.086079165,-0.19148375,0.672008,0.5371048,-0.46749237,0.4489515,-0.4652755,-0.11945235,0.5022027,-0.23986268,-0.48624197,0.2842771,-0.24542652,0.27034754,-0.88122445,0.28738865,-0.44311973,-0.3548148,-0.47829455,-0.01795601,-3.2186513,0.16553338,-0.21892601,-0.15247947,-0.28621334,-0.15384929,0.31291255,-0.45182547,-0.5660854,0.20017727,0.16773704,0.5845645,-0.11941109,0.020197034,-0.2018253,-0.18897404,-0.13902506,0.18120496,0.317282,0.304032,-0.20746405,-0.29760855,-0.016170789,0.0022043309,-0.37450403,0.13841693,-0.47230327,-0.42186794,-0.06550275,-0.5272404,-0.19967261,0.5783599,-0.3712173,0.01376735,-0.3215226,0.018702531,-0.19640532,0.22466844,0.27407932,0.47612536,0.19883302,-0.062380888,-0.019768571,-0.25680593,0.3761764,-0.0014948408,0.21529607,0.09362879,-0.010684959,0.24966905,0.2745543,0.64936715,-0.1701618,0.9820579,0.4985953,-0.13436407,0.17314707,-0.3607196,-0.29689848,-0.68817294,-0.29540852,-0.03159486,-0.37987489,-0.56478614,-0.08106141,-0.3399936,-0.790081,0.6393069,-0.025069462,0.3144722,-0.1177526,0.3445406,0.4137993,-0.12865312,-0.0021276711,-0.04260877,-0.13478637,-0.4588346,-0.19798318,-0.619697,-0.4700731,-0.041714672,0.62215483,-0.29729757,0.07509737,-0.10324917,-0.27160233,-0.10577025,0.17309189,0.14998421,0.35442343,0.4791754,0.1374913,-0.46532765,0.3785644,-0.012131163,-0.24264516,-0.67175126,0.11761902,0.7477786,-0.73682314,0.78011954,0.406704,-0.01800735,-0.07486208,-0.534199,-0.16362606,0.04512578,-0.2022855,0.45246804,0.19116965,-0.7649018,0.50504136,0.267278,-0.12509176,-0.74924093,0.39784303,0.027885545,-0.33958894,0.1047818,0.4024351,-0.10163123,-0.09568003,-0.18850523,0.17044643,-0.19415388,0.19054943,0.27469096,-0.15568878,0.31912068,-0.20035791,-0.389135,-0.67545664,0.057699773,-0.7301901,-0.13217872,0.42881697,-0.12581255,-0.028526342,0.08685548,0.10893535,0.41548756,-0.25002614,0.14017421,-0.06660469,-0.28677115,0.1851959,0.4513137,0.32729998,-0.38498262,0.60093063,0.24153452,-0.22732183,-0.031878915,0.18910232,0.5156273,-0.1651149,0.32079333,-0.12598167,-0.2651936,0.22091939,0.71513075,0.1342248,0.5272569,0.16787186,0.04734111,0.5429667,0.0706438,0.08054426,-0.12637119,-0.29912692,-0.026359256,0.040545084,0.1516977,0.38261938,0.30668148,0.36253154,-0.0027421354,-0.12987109,-0.097042,0.29983345,0.095158,-0.91410655,0.4558689,0.15568884,0.7267185,0.47475556,0.22833906,-0.22797646,0.63685673,-0.37397403,0.02464271,0.36922082,-0.07871953,-0.4631033,0.6951857,-0.5906766,0.42812806,-0.110205695,-0.042754356,0.115555845,0.07759144,0.36829293,0.80464005,-0.15408619,0.01818697,-0.13487272,-0.14134507,0.048762646,-0.35030535,-0.011246097,-0.18219924,-0.4298683,0.7238567,0.3022003,0.38744393,-0.18410078,-0.03821036,0.14832702,-0.16435018,0.2079129,-0.060707606,0.103676386,0.090222575,-0.46204826,-0.29996333,0.42064494,-0.0062516807,0.13400032,-0.12460505,-0.11945703,0.13770384,-0.12207987,-0.05200994,-0.032260813,-0.63707936,0.027218413,-0.29358834,-0.6167406,0.3083315,-0.3589709,0.10135272,0.20132115,0.025195079,-0.3178264,0.3314442,-0.030283865,0.7789776,0.054236572,-0.32414237,-0.25282428,0.033467844,0.32536,-0.26341054,0.08613958,-0.32239813,0.17467724,-0.6517953,0.5938518,-0.21813798,-0.4853081,0.08213628,-0.18862757,-0.10456476,0.55857795,-0.123998694,-0.17996383,0.12696384,-0.2670972,-0.49364802,-0.21229444,-0.21109088,0.18126336,0.38120988,0.03774694,-0.12768625,-0.28885585,-0.24753179,0.49278605,0.08947592,0.4644786,0.24317935,0.06788887,-0.20182504,0.11174633,0.33072913,0.3619369,0.072167605,-0.0011300087,-0.2962265,-0.52678496,-0.3303055,0.27079198,-0.0037584554,0.26258242,0.011563527,-0.21168108,0.8106173,-0.024414547,0.92327946,0.17645113,-0.327793,0.009324964,0.34843355,-0.17269519,0.0038964867,-0.29656747,0.8914797,0.6057797,-0.08651365,0.0034040094,-0.46959826,-0.072824515,0.082483195,-0.30531093,0.037844278,-0.032225892,-0.46036485,-0.29868758,0.24408573,0.23389739,0.16025697,-0.06087373,0.00055422384,-0.025972996,0.11986867,0.36743417,-0.7295486,-0.2430356,0.28250778,0.11846664,-0.08311354,0.19839059,-0.23100866,0.4589569,-0.63762325,0.1191809,-0.46539778,0.014714847,-0.021529967,-0.39816633,0.07651887,-0.1699853,0.36842838,-0.39803204,-0.37223947,-0.2195271,0.37200016,0.09049301,0.09995777,0.5884149,-0.20988682,0.15166728,0.24945377,0.5895698,1.1470497,-0.30985337,0.07007038,0.03240854,-0.17325017,-0.54779506,0.33266327,-0.49670753,0.08497702,-0.12145608,-0.39659792,-0.38438243,0.12322755,0.22312044,0.03727257,0.08021391,-0.50424105,-0.20361201,0.1568479,-0.25835094,-0.20721497,-0.18037295,0.26126713,0.68116534,-0.27892083,-0.28032127,0.0025363048,0.041425202,-0.32486945,-0.4004437,-0.07203179,-0.14830494,0.17154773,0.17651722,-0.3677761,-0.013455932,0.16334276,-0.5031246,-0.016127756,0.2722553,-0.2854442,-0.032764602,-0.15779853,-0.08775063,0.7705401,-0.42295468,-0.0014336269,-0.5743977,-0.5135069,-0.8780824,-0.37006032,0.28644735,0.06496947,0.17744279,-0.5095765,0.115443006,-0.19301656,0.048057437,0.25293967,-0.5941917,0.40641546,0.1613488,0.5066873,-0.30793694,-0.7735414,0.14205606,0.031849388,-0.17928578,-0.59080505,0.5840673,0.020544019,0.77427846,0.03486492,-0.12121141,0.055467412,-0.57716674,0.033782475,-0.33472964,-0.15504365,-0.88824826,-0.06047653 +397,0.3161616,0.01815457,-0.47410515,-0.027874198,-0.3575265,0.07835531,0.0070016044,0.25642976,0.16909404,-0.13353923,0.059417207,-0.30689654,0.0021190303,0.3878785,-0.08550087,-0.7547421,-0.03974591,0.039063327,-0.51286405,0.27800423,-0.40354332,0.42843923,0.07091472,0.4617227,-0.16537833,0.35437965,0.2619727,-0.1438061,-0.05381068,-0.015033909,-0.24982539,0.19594257,-0.6559028,0.09282819,0.031083176,-0.33116537,0.21050762,-0.23349926,-0.37043986,-0.6166934,0.26906008,-0.6581888,0.49033785,0.051084448,-0.1825864,0.08793599,0.09245806,0.2581662,-0.46841198,0.16064155,0.19659789,-0.39461538,0.24140178,-0.27814975,-0.42038321,-0.51010233,-0.5344297,-0.053744502,-0.5437383,-0.36623117,-0.29199737,0.17719178,-0.29118133,-0.13931167,-0.13192429,0.28140768,-0.5089601,0.14549954,0.32074752,-0.27024215,0.30751085,-0.23431884,-0.13379237,-0.10971558,0.14135613,-0.14057565,-0.13991918,0.406109,0.1913993,0.36830744,0.042068683,-0.26860854,-0.31157297,-0.16579035,0.08245771,0.54526466,-0.2307106,-0.18512993,-0.0484682,-0.019842079,-0.228374,0.31966886,-0.0062177842,-0.2918541,-0.041349918,-0.079582036,-0.00082081556,0.1413349,0.4423584,-0.34068346,-0.47896147,0.21287797,0.32219872,0.0695658,-0.18528436,0.11062306,0.010806603,-0.4912198,-0.3030167,0.11393233,-0.0379443,0.4772089,-0.02424759,0.26434842,0.9029418,-0.24304943,-0.046998907,-0.38731033,-0.074424945,0.030307308,-0.11531067,0.04107212,0.15673964,-0.43509182,0.07837435,-0.044885345,0.7850308,0.24988009,-0.7150083,0.3688098,-0.5653798,0.07763563,-0.11229139,0.56950945,0.48318785,0.34748298,0.25733608,0.83951026,-0.6731852,0.17700246,0.079587355,-0.5755213,0.13458358,-0.043938752,-0.14660658,-0.5078303,-0.15290941,0.097366095,0.0049080127,0.07906977,0.064880356,-0.49277496,0.10469629,0.04748718,0.960831,-0.4483092,-0.13927616,0.5544345,0.94213694,0.8431634,-0.10064324,1.288148,0.31593943,-0.25767943,0.167451,-0.38108453,-0.4867072,0.12147774,0.26698917,-0.03216586,0.36306968,0.173852,0.11093502,0.21709983,-0.19759832,0.11062654,-0.06404284,0.1108669,-0.025408119,-0.082360186,-0.42296916,-0.23425247,-0.045602717,-0.015239969,-0.05935049,0.26921532,-0.00068198994,0.4500603,-0.032649916,1.7665937,0.18939848,0.28130436,0.05555951,0.54908437,0.301615,0.17198469,-0.18240035,0.36529997,0.2413796,0.34384242,-0.39947578,0.009511533,-0.26343557,-0.55590314,-0.15677588,-0.41457152,0.09918225,-0.19854534,-0.5351391,-0.06293715,0.16459705,-0.23413096,0.5166355,-2.6196969,-0.013104318,0.0019470368,0.15953149,-0.2355173,-0.22860578,-0.1110994,-0.30944157,0.29810348,0.4755918,0.38527945,-0.6214291,0.3293114,0.42820245,-0.2415436,-0.21413364,-0.48050812,-0.08376082,-0.030622393,0.32749918,-0.104821905,0.09145812,-0.17118691,0.27183673,0.52047,-0.15632156,-0.079571165,0.052924458,0.41041845,0.07703604,0.44433594,0.088678256,0.49521023,-0.24698296,-0.17476514,0.3023813,-0.27526817,0.33094338,0.05265912,0.16109125,0.24272665,-0.36544403,-0.8967398,-0.49248666,-0.4198874,1.0318792,-0.3187003,-0.2288376,0.40673643,-0.10629136,-0.11358387,-0.13856612,0.4768888,-0.09595193,0.23601532,-0.52613485,0.15302439,-0.12273652,0.2836841,0.06477557,0.15504357,-0.23204432,0.5517031,-0.15421773,0.29829055,0.4398252,0.11514536,-0.1161098,-0.5268834,0.16664289,0.744258,0.22742681,0.17282407,-0.047363408,-0.10726619,-0.015721457,-0.14829023,0.068091616,0.41885462,0.81923705,-0.016385127,0.07034512,0.27036956,-0.055919044,-0.049791303,-0.03206087,-0.27891526,0.19220184,0.028111594,0.5341658,0.7091018,-0.3465927,0.5174074,-0.07637827,0.46144032,-0.06677497,-0.45979324,0.39901495,0.9214153,-0.074725375,-0.052669667,0.5255261,0.38911787,-0.5404802,0.3527403,-0.62863296,-0.14626996,0.7894303,-0.16534135,-0.5124985,0.13285504,-0.17431638,-0.05255178,-0.9273147,0.35398167,0.084072724,-0.49553004,-0.3606561,-0.14885783,-4.5367208,0.12399893,-0.43411967,-0.16223967,0.022252126,0.009424044,0.2291391,-0.64556545,-0.36261374,0.029108373,0.08908419,0.3963223,-0.078113236,0.17095849,-0.33018237,-0.1365299,-0.16826025,0.30633423,0.22066787,0.18537508,-0.11448007,-0.5145688,0.016969323,-0.35921955,-0.6778521,0.065222524,-0.47282892,-0.54982084,-0.08942852,-0.58301336,-0.3587613,0.8495249,-0.45648235,-0.096368365,-0.26922202,-0.09724251,-0.21352999,0.37947372,0.36632538,0.19329023,0.0345358,0.09024603,-0.28241354,-0.30518508,0.17216182,0.1489907,0.42286757,0.36676255,-0.053791165,0.08449026,0.49247876,0.573348,-0.08951236,0.5758621,0.20493309,-0.19302668,0.37367997,-0.49711987,-0.20243393,-0.833745,-0.5853214,-0.14448915,-0.33738428,-0.62633884,-0.19402388,-0.33815208,-0.6921304,0.57015854,-0.11038674,0.21771117,-0.12578759,0.19966781,0.331052,-0.31733203,-0.060766958,-0.13576756,-0.20886707,-0.5814985,-0.3906176,-0.5336304,-0.6918348,0.13597038,1.104488,-0.23653622,-0.13509764,-0.0580662,-0.18554242,-0.014458205,0.011650673,0.21860813,0.37009645,0.16614683,-0.1289719,-0.7109966,0.70390046,-0.1238145,-0.13750409,-0.6965822,-0.04014527,0.6152979,-0.756441,0.6235363,0.26327384,0.12903157,0.30077097,-0.5145921,-0.38639444,0.012963514,-0.057512097,0.41371703,0.015900834,-0.56425375,0.31765014,0.1992741,-0.2417113,-0.547853,0.44648266,-0.15249643,-0.47448975,0.2590421,0.27159163,-0.08318015,-0.091153584,-0.047444563,0.30596682,-0.50900346,0.18473288,0.39533213,0.0776552,0.32890075,0.012605404,-0.22519389,-0.6647043,0.15718302,-0.30741122,-0.32185125,0.16875318,0.12083296,-0.111018695,0.21066427,-0.028784439,0.41436407,-0.23037355,0.16215746,0.012105652,-0.27724174,0.33989748,0.45529523,0.360967,-0.55529165,0.58817893,-0.06236153,0.022954047,-0.020091763,0.14226924,0.6174061,0.16782871,0.25161317,-0.07401418,-0.17728855,0.2024268,0.7646697,0.24135251,0.52369225,0.09609477,-0.082601294,0.4301787,0.26582,0.021210935,0.13104363,-0.17613056,0.074843995,0.040612858,0.18398483,0.40681642,0.16173506,0.37170568,-0.078097045,-0.19311284,0.26957038,0.34644157,0.033878367,-0.7513197,0.33346102,0.2675719,0.62007713,0.44638512,0.13077168,0.03191061,0.54926157,-0.32833457,0.016566852,0.38710862,-0.032479446,-0.5323002,0.66634095,-0.5513495,0.5995328,-0.07551924,-0.13768221,0.13165103,0.11970614,0.30886474,0.9658235,-0.04314627,-0.066490814,0.028943846,-0.20635094,-0.05181716,-0.4417328,0.11879842,-0.49565983,-0.3460973,0.49117404,0.40276226,0.119104676,-0.24420659,-0.05227852,0.026919544,-0.079714194,0.23764226,-0.13810112,0.056776028,0.014339499,-0.54081684,-0.39629364,0.6724304,-0.24816059,0.009940935,-0.06381052,-0.22256646,0.3111539,-0.14397685,-0.14341524,0.04191347,-0.64429617,0.25198787,-0.28983465,-0.5359182,0.51072127,-0.43825045,0.42188543,0.14173386,0.045387227,-0.3760304,0.3905293,0.07311485,0.8277125,0.08231759,-0.21862428,-0.274023,0.19197956,0.25738767,-0.28425997,-0.06463773,-0.3211755,-0.0025290507,-0.45756182,0.3417008,-0.11769436,-0.28073522,-0.17751034,-0.1667758,-0.09902697,0.35560355,-0.07087476,-0.18873134,-0.10513612,-0.07052116,-0.21546938,0.057558775,-0.3746911,0.20707856,-0.0105107855,-0.2216275,0.06683159,-0.040202253,-0.00543929,0.36557838,-0.0142564345,0.29630965,0.12301799,-0.13261221,-0.34190777,-0.051365174,-0.1062822,0.2814059,-0.005068924,0.1654892,-0.115840316,-0.29955214,-0.14446817,0.13915204,-0.26514784,0.17425261,0.21137142,-0.46331507,0.8804439,0.16366899,1.2094144,0.09395377,-0.36856103,0.14969692,0.41590554,0.1000942,0.15439878,-0.42355937,1.0706557,0.70970535,-0.120710574,-0.43282256,-0.12484108,-0.18084148,0.32435063,-0.3094437,-0.2687634,-0.04041016,-0.6429148,-0.11476149,0.23537299,0.22828378,0.24948713,0.057121865,-0.24297084,0.074733205,0.2075647,0.39705816,-0.4045051,-0.2044321,0.36836082,0.20849358,0.049126502,0.19930093,-0.23135035,0.5901941,-0.42418078,0.23629197,-0.5727537,0.06309839,-0.32464394,-0.32183775,0.20857045,-0.062714465,0.35785952,-0.12530336,-0.17045249,-0.2973378,0.53082365,0.32069135,0.24087277,0.7868398,-0.294941,0.09223694,0.007200935,0.23833017,1.1873591,-0.28981856,-0.22521904,0.42286724,-0.33204502,-0.49645618,0.1328285,-0.32548475,-0.099684834,-0.31957155,-0.346675,-0.31664708,0.20576009,0.14904974,-0.12360823,0.0019982415,-0.38779435,-0.05646968,0.44360113,-0.31555972,-0.456497,-0.40133026,0.48597044,0.8290532,-0.35976425,-0.27841118,0.21936992,0.080954365,-0.31617504,-0.4878437,0.06761273,-0.24677432,0.3363778,0.091572404,-0.42364433,0.12759556,0.22859754,-0.3404959,0.15648499,0.5309215,-0.3793485,0.012315358,-0.10044331,-0.14936556,1.0052674,-0.08900911,-0.16415074,-0.70701253,-0.47715268,-1.0507594,-0.4040238,0.61126614,0.20193566,-0.008434245,-0.40598693,-0.10448701,0.008443577,-0.09064867,-0.032783058,-0.51260656,0.27324095,0.05455423,0.44996566,-0.062271647,-0.9400672,0.043273382,0.18805565,-0.21619448,-0.6711988,0.49141556,-0.40860862,0.6635541,0.03214823,-0.026480095,0.43794253,-0.39274105,0.22001444,-0.35000387,-0.30273277,-0.62704086,0.10796035 +398,0.40571758,-0.22509621,-0.6935705,-0.102544785,-0.18542893,0.011636496,-0.079123594,0.46763262,0.15378746,-0.53779095,-0.17877199,-0.21668836,-0.217563,0.5634212,-0.15873,-0.5601633,-0.06769219,0.18107572,-0.5327047,0.4465301,-0.19770725,0.33570847,0.2072761,0.25652778,0.12778725,0.100710325,0.029010568,-0.20212092,-0.09720759,-0.23572104,-0.18359457,0.011220778,-0.74240595,0.29885238,-0.18681209,-0.26594916,0.020267384,-0.5291286,-0.3404692,-0.7683148,0.16962683,-0.71234196,0.6109218,-0.08179278,-0.17011344,-0.02611867,-0.043520357,0.44999668,-0.18099172,0.06858893,0.1862621,-0.16680503,-0.2401247,-0.03274923,-0.12735082,-0.39675447,-0.5318018,0.19599101,-0.41328254,-0.098280355,-0.073180676,0.13297139,-0.2587628,0.15100057,-0.039662454,0.48999944,-0.3634723,-0.07493279,0.33118466,-0.2839693,0.20047195,-0.628837,-0.019148916,-0.2215664,0.2460057,-0.3084995,-0.16854696,0.47377682,0.13796957,0.519025,0.11728512,-0.21538389,-0.087518826,-0.017578874,-0.024278065,0.5463618,-0.090983175,-0.5130765,-0.039285414,0.15488997,0.20933783,-0.016435953,0.028718233,-0.4454578,-0.11116997,-0.046945546,-0.043280583,0.2422851,0.56328267,-0.14789991,-0.08010403,0.26463184,0.49238846,0.2429612,0.115600206,0.05386715,0.021228923,-0.5982842,-0.21481575,-0.03113403,-0.12087073,0.4730009,0.0021680498,0.12105727,0.7155131,-0.2478365,-0.0588825,0.07107444,-0.09596219,0.079086915,-0.06738297,-0.53640646,0.40132317,-0.32827377,0.23484576,-0.13516651,0.80007297,0.29366532,-0.80968654,0.28218535,-0.5130574,0.091310635,-0.02236964,0.57923114,0.6049325,0.6746831,0.18911876,0.7067232,-0.49115017,0.29565987,-0.06805783,-0.4137539,-0.057160676,-0.23478203,-0.2119009,-0.38757318,-0.08793516,-0.21962436,-0.26593533,-0.022790253,0.11441855,-0.71098363,0.06975693,-0.18321334,0.9758547,-0.33363777,-0.037238505,0.6624997,0.78731376,1.0669335,0.053203084,1.0685612,0.28984287,-0.29829624,0.17132793,-0.042021804,-0.739349,0.29490614,0.39451483,-0.43153572,0.37727356,0.094320126,0.018311938,0.4110206,-0.56876594,0.06401528,-0.1705424,0.24388142,-0.060505062,-0.19473039,-0.50778455,-0.17660138,-0.09640469,-0.0354414,-0.037048254,0.21415249,-0.15634987,0.36624697,0.04688647,1.6360699,-0.12240951,0.10787887,0.10330333,0.41631594,0.049352713,-0.118090905,-0.27118573,0.11346943,0.41155997,0.055222113,-0.47068796,0.0064401454,-0.18011987,-0.34479785,-0.23305634,-0.16091384,0.055179596,-0.098128855,-0.19760248,-0.41485593,0.014928277,-0.23926438,0.4888033,-2.2504976,-0.012263362,-0.060135867,0.33897918,-0.44888803,-0.30358917,0.022072783,-0.43317065,0.2920074,0.27116886,0.3975275,-0.58688074,0.2637581,0.34371918,-0.40372705,-0.35520336,-0.5144168,-0.05441503,0.07922252,0.20064794,0.027122272,-0.08031983,0.003916681,-0.057315707,0.4183991,-0.19720615,-0.09358157,0.38491288,0.33569553,0.32221675,0.347117,-0.055352055,0.5667074,-0.57297546,-0.053856395,0.38939553,-0.2788405,0.13664035,-0.06084386,0.09116547,0.1903452,-0.6289273,-0.71094376,-0.7257889,-0.37687328,1.3065983,-0.2446278,-0.386549,0.17532992,-0.058902767,-0.02817492,-0.07378469,0.42782626,-0.10420438,0.13267523,-0.74440485,-0.20043206,-0.04908544,0.44312605,0.051815342,0.04746042,-0.5257563,0.39723855,-0.17838891,0.4025697,0.53976965,0.19186997,-0.12763633,-0.71148527,0.09079836,1.2587289,0.38710886,0.16517337,-0.15154697,-0.07553917,-0.3210755,-0.13413247,0.047461953,0.42220137,0.99501216,0.016385345,-0.07327194,0.1960983,0.08434039,0.10690357,-0.038616538,-0.44580057,-0.12543777,-0.03132943,0.6321574,0.43049797,-0.08259996,0.5077219,-0.150601,0.43299803,-0.10721593,-0.3207048,0.5192996,0.9445673,-0.21670885,-0.23771305,0.4142986,0.3774489,-0.13661353,0.4141536,-0.6609179,-0.37406904,0.57313,-0.18475853,-0.60377556,0.20035489,-0.19485308,0.30116898,-1.0596651,0.4401634,-0.2649159,-0.5656071,-0.5663374,-0.20045482,-2.6035488,0.08609086,-0.229404,-0.10488714,-0.012616639,-0.030497223,0.25787634,-0.3883495,-0.64567864,0.10897423,0.07251048,0.6048241,-0.016713295,0.18199624,-0.14293478,-0.28093648,-0.33729073,0.19626996,0.3196796,0.18702914,0.12041635,-0.43033966,-0.21280535,-0.1971203,-0.42463818,0.15511057,-0.71154565,-0.45605606,-0.33046344,-0.68891424,-0.1582148,0.740251,-0.46169308,0.022684751,0.030966822,0.053065,-0.048288256,0.10282015,0.07854797,0.15560757,0.028193329,-0.1392503,0.015285543,-0.27852887,0.17701514,0.2923412,0.3640353,0.120401934,-0.30089402,0.23907746,0.5763025,0.9774603,-0.030643817,0.70821875,0.581186,-0.09843048,0.30652985,-0.35466743,-0.44869956,-0.57015336,-0.38243622,0.1664172,-0.31393978,-0.47217226,0.14066216,-0.3462037,-0.8408421,0.5921845,-0.0804973,-0.09713663,0.091838054,0.105026804,0.4338558,-0.2980392,-0.09304881,-0.07814532,-0.019896852,-0.47829387,-0.3103285,-0.52217686,-0.5660877,-0.1078632,1.3799423,-0.030135078,0.024683995,0.07771454,-0.26581344,0.2514152,-0.23476125,-0.13518511,0.29205042,0.39208618,-0.146662,-0.83097994,0.4236882,-0.17251322,-0.2286862,-0.5598914,0.3365439,0.74546874,-0.8503761,0.21855997,0.27193215,-0.00029526014,-0.050640136,-0.42018837,-0.093149506,-0.033347886,-0.22157185,0.2750443,0.051516704,-0.50790304,0.34098405,0.3999135,-0.39938816,-0.8355754,0.21472628,0.075272344,-0.16752194,0.2533993,0.31513166,-0.11739182,-0.09108962,-0.28865275,0.08607332,-0.35454768,0.22614299,0.33082458,-0.093884386,0.22392991,-0.33274606,-0.13144387,-0.7880224,0.29206187,-0.5282045,-0.29444912,0.38801712,0.17295514,0.09647452,0.017613355,0.21640618,0.4020475,-0.20502011,-0.0020900518,-0.22146475,-0.34920523,0.42261416,0.5252019,0.3892882,-0.4627862,0.55605775,-0.049378034,0.058224943,-0.06835191,-0.059594482,0.5413126,0.078860104,0.087015964,0.06637315,-0.20976312,0.15413775,0.7753042,0.17343485,0.46949115,0.071787074,-0.1576537,0.17894724,0.2613192,0.06699999,0.25059882,-0.5992764,0.038621087,-0.027606914,0.045427773,0.5268366,0.28153363,0.38469782,-0.16080177,-0.27291033,-0.011137475,0.09560507,0.0245383,-1.115106,0.54132426,0.074723616,0.6555819,0.34154898,0.21775971,0.11754868,0.61408323,-0.06991075,0.18365584,0.28648114,-0.0751095,-0.54739463,0.40754598,-0.56205994,0.56108284,0.10329763,0.018867608,0.17219791,-0.057953577,0.5445805,0.9534575,-0.052381102,-0.002988694,-0.17231242,-0.14831647,0.030615646,-0.5721355,0.05428913,-0.48029855,-0.43494874,0.61612254,0.33338028,0.23078568,-0.080585554,0.025249656,0.14584284,-0.13802603,0.34700578,-0.124066964,0.045834523,0.034381025,-0.5846513,-0.16691075,0.56776035,0.057249036,0.013525069,0.06728067,-0.18760633,0.30101672,-0.21342273,0.011368181,-0.17802045,-0.72843593,0.024419146,-0.41604328,-0.23508532,0.20367776,-0.016956074,0.3403764,0.077464,0.11779999,-0.4355785,0.5250953,0.13573568,0.9569806,0.057239287,-0.3422177,-0.38156897,0.2906378,0.2775497,-0.27908108,0.071522966,-0.22669958,-0.12053812,-0.58549064,0.32035774,-0.08359831,-0.30300516,0.23782131,-0.10120129,-0.09340962,0.52936864,-0.1481748,0.13073339,0.22502725,-0.113334134,-0.13197581,-0.21442239,-0.23247457,0.15686817,0.2981004,0.06654299,-0.07260815,-0.11165738,-0.18927094,0.4520864,0.0056220717,0.34839553,0.31983802,0.113363825,-0.32048315,-0.1544193,-0.0676413,0.45941186,0.18405616,-0.087509654,-0.2755415,-0.2925349,-0.26308197,0.086262144,-0.24268754,0.35136157,0.122538455,-0.42292818,0.74993867,0.15498044,1.3455343,-0.10127328,-0.29205003,0.09379776,0.46115395,0.08554795,0.051659014,-0.5984607,1.071344,0.45237827,-0.10701636,-0.04264868,-0.24336232,-0.23366082,0.17887093,-0.29836673,-0.24018732,-0.12379936,-0.5202569,-0.34753904,0.21080358,0.3005055,-0.059447985,-0.12107396,0.020577295,0.19307955,-0.017623493,0.16492932,-0.38325113,0.13481952,0.3005752,0.19822943,0.05091945,0.061143797,-0.5026709,0.39504856,-0.55415756,0.07423418,-0.2519366,-0.0044783824,-0.057496227,-0.2918797,0.24375118,0.104340024,0.4010245,-0.5339375,-0.3142598,-0.20827827,0.4831212,0.06798038,0.19286244,0.7677141,-0.30346802,-0.049399015,-0.0076237237,0.5497243,0.83508635,-0.33369747,0.10121442,0.41294542,-0.2659022,-0.3240094,0.3987077,-0.20014276,-0.03608535,-0.16466679,-0.17207691,-0.4820202,0.20110822,0.21999522,-0.26322937,0.0685746,-0.8085597,-0.16525146,0.31898147,-0.33423448,-0.3387113,-0.5307153,0.24206792,0.59777486,-0.32412556,-0.48792505,0.12624148,0.1292223,-0.13559775,-0.4372292,-0.1445553,-0.2065465,0.29902405,0.19799452,-0.3885452,-0.24595825,0.13027672,-0.41364044,0.069472305,0.011547004,-0.4092149,-0.14851442,-0.10388331,-0.042010646,0.7343133,-0.018597607,0.09294964,-0.61810225,-0.35394284,-1.0680618,-0.35432154,0.56465316,0.3271387,0.03996402,-0.70063674,-0.12456514,-0.14778371,-0.08621676,-0.0014861013,-0.24918441,0.26740894,0.1291233,0.5369725,-0.2197925,-0.8048348,0.41696146,0.12632531,-0.25360724,-0.5384186,0.36061922,0.15242195,0.913134,-0.023186317,0.048701517,0.42198506,-0.6640344,-0.017513556,-0.21031378,-0.08717605,-0.5309937,0.14434126 +399,0.39169198,0.024716329,-0.4501772,-0.006098793,-0.2988155,0.10779696,-0.16364051,0.43008474,0.36413142,-0.37515867,-0.2639002,-0.3814183,0.05710777,0.034812946,-0.019284012,-0.6337934,0.1955679,0.45150998,-0.5468922,0.610309,-0.2376189,0.52124035,-0.01066063,0.25737333,0.0020719308,0.18098706,-0.19525972,-0.11770367,0.012303407,-0.25866166,0.13171934,0.22640091,-0.7387532,0.33847564,-0.41848513,-0.38747534,-0.029583372,-0.41312873,-0.50035024,-0.8908288,0.1956374,-0.7560723,0.6612824,0.0098398905,-0.27903485,-0.12691058,0.026440445,0.5663761,0.02170958,-0.08488417,0.28957573,-0.072070114,-0.31505373,-0.053788595,-0.28310457,-0.4668073,-0.44831437,0.07522058,-0.22900942,-0.037803613,-0.21521775,0.25413153,-0.24893847,0.006912094,-0.16341776,0.51617485,-0.38569075,0.4735082,0.22775212,-0.03211812,0.1742368,-0.6886987,-0.13312778,-0.18995048,0.36183867,-0.2951127,-0.35721743,0.18711862,0.37115815,0.53505045,0.08940759,-0.23274279,0.11574267,-0.09514475,0.29313976,0.5063306,-0.12717362,-0.1784056,-0.15812851,-0.034525387,0.16840512,0.14415087,0.27790892,-0.61959547,-0.06118498,-0.19187348,-0.27140978,0.27461252,0.5987906,-0.07267483,-0.2017002,0.23261364,0.68584865,0.11696683,-0.099573925,0.30304706,0.0890059,-0.40998322,-0.2238283,-0.01630408,-0.21117148,0.49446753,-0.17988321,0.110949025,0.6106156,0.0100398045,-0.1902486,0.039867733,0.138839,-0.11119938,-0.4980928,-0.14154615,0.2288719,-0.5783421,0.14862452,-0.24704984,0.8316131,0.20827939,-0.5818541,0.43367517,-0.6272023,0.11208506,0.08385221,0.50181574,0.799419,0.1718503,0.07021815,0.6876911,-0.434035,0.110783085,0.0407195,-0.24326494,-0.09654395,-0.07912098,0.16726439,-0.45888388,-0.12932207,-0.10706195,-0.23224065,0.07413255,0.34823167,-0.65145457,-0.22471069,-0.028729044,0.87127465,-0.30714735,-0.12569514,0.98697853,1.0053341,0.7008928,0.13703424,1.7807028,0.32582018,-0.22164088,0.065097675,-0.30812213,-0.82390743,0.012973929,0.09232327,-0.7793973,0.12550029,0.22955543,-0.12516424,0.5232059,-0.7462581,0.049742147,-0.28891614,0.3881095,-0.068611704,-0.22783338,-0.39407128,-0.13046457,-0.061075136,-0.06818185,0.18243697,0.26878923,-0.13774271,0.28647533,0.17266263,1.129709,-0.10659088,0.0022254656,0.044263843,0.15666708,0.23619786,-0.14004713,-0.115162626,0.3697498,0.28681982,-0.1502752,-0.46457112,0.059747934,-0.23457211,-0.2596089,-0.22759742,-0.03262195,-0.24666458,0.103975266,-0.3628046,-0.27425855,-0.2430535,-0.15459807,0.59080213,-2.3239622,-0.31348684,-0.116777696,0.45820644,-0.24574266,-0.45665672,-0.07940538,-0.4765097,0.43449467,0.05009663,0.38556603,-0.69781494,0.34894806,0.40639222,-0.64917195,-0.1775184,-0.64278924,-0.10063718,0.19878432,0.01665276,-0.036383294,0.0786827,-0.11699128,-0.11905052,0.24083652,-0.11980404,0.2067907,0.5589143,0.40126917,0.038469996,0.11251343,0.18940727,0.6276271,-0.1807833,-0.24994612,0.34836298,-0.3958691,0.34044963,-0.053627886,-0.029871656,0.51115596,-0.36574772,-0.48428434,-0.73815817,-0.6480722,0.692103,-0.08897858,-0.31481934,0.16350645,-0.39718467,-0.3752454,0.050131876,0.71458757,-0.06323253,0.020304946,-0.9607168,-0.15421669,-0.05222342,0.29109514,-0.078682035,-0.07194225,-0.48407093,0.70305693,-0.26996535,0.24874184,0.5445047,0.28979185,-0.29256824,-0.45968622,0.042924866,1.1038349,0.47699717,0.17168155,-0.33166093,-0.120849006,-0.6288695,-0.20096079,-0.10141493,0.6998222,0.58116657,-0.1998388,-0.06303459,0.34514964,0.16676371,0.119810894,-0.19439664,-0.395838,-0.09344048,-0.096488625,0.4440263,0.655061,-0.34543338,0.4428766,-0.24022867,0.2757994,-0.2817555,-0.63810074,0.52804494,1.0168408,-0.27275366,-0.08479854,0.5917252,0.095694885,-0.2777583,0.43719292,-0.6023179,-0.23387238,0.4316898,0.084232956,-0.5787878,0.12507428,-0.28163356,0.071467295,-0.92877775,0.5838649,-0.32229388,-0.6969741,-0.5150245,0.01185276,-2.1645172,0.18298443,-0.21873783,0.09540324,-0.2239467,-0.1388121,0.017745825,-0.1194669,-0.5346035,0.30577037,-0.010182849,0.5254861,-0.10830971,0.29537266,-0.10398969,-0.28569424,-0.2455176,0.10216783,0.2366599,0.25664994,-0.29798982,-0.34881195,-0.03427686,-0.18331376,-0.21923648,0.0649203,-0.97661793,-0.39227107,-0.1696729,-0.74282575,-0.1624363,0.6317158,-0.6262182,0.06303187,-0.34272972,-0.11903059,-0.1548829,0.3263861,0.2445578,0.14621447,0.113148876,-0.014707482,-0.3281837,-0.3002265,0.2597129,0.12951306,0.19028851,0.35979465,-0.0762513,0.31984636,0.18927646,0.8683921,-0.051207658,0.8613876,0.3844661,-0.24337676,0.40010446,-0.15611452,-0.23425214,-0.6480701,-0.23677972,-0.20645425,-0.5292208,-0.52595174,-0.08060134,-0.4669482,-0.6418115,0.35787064,0.18794118,-0.12731816,0.16981475,0.085875675,0.34439528,-0.18090947,-0.033797693,-0.20129624,-0.08325717,-0.5071671,-0.41607162,-0.5359608,-0.4301924,0.3051813,1.1153169,0.039830104,0.23352449,0.23164234,-0.25770906,-0.0048245285,0.29651898,0.015808774,-0.07413325,0.6954378,-0.15836035,-0.5098585,0.36777702,0.1804493,-0.30725056,-0.83685726,0.321637,0.7515204,-0.7754273,0.9001468,0.18517168,-0.10409261,-0.11533736,-0.38496032,-0.32286674,0.058079287,-0.46593994,0.2939796,0.10960452,-0.5392535,0.12100426,0.41844457,0.019027976,-0.79310703,0.5255817,-0.19184828,-0.105636425,0.08379196,0.3784266,-0.08209194,0.040160272,-0.044908945,0.14974402,-0.2506941,0.2663298,0.13422976,-0.32050565,0.3029338,-0.24111745,-0.09884198,-0.92006105,0.048285585,-0.4633592,-0.38520148,0.02001701,0.12904093,-0.16037439,0.3100189,0.5220299,0.2925403,-0.1247005,0.16551235,-0.13828503,-0.35329387,0.24069253,0.3237725,0.45171863,-0.31485933,0.63223404,-0.102187954,-0.18001501,-0.20735525,0.3043728,0.5642676,0.043295495,0.4031296,0.29963797,-0.06767594,0.1488615,0.85024774,0.051652852,0.57582206,0.22456291,0.0022703845,0.14593242,-0.0056239734,0.17899132,0.10089053,-0.56439793,-0.035115086,-0.16743049,0.11649255,0.4527086,0.22383657,0.3016822,-0.12545468,-0.59308875,-0.11578565,0.18665688,0.30668914,-1.2638664,0.20686167,0.3001876,0.8308626,0.42791972,0.0010981285,-0.008166109,0.35288456,-0.079059295,0.31381184,0.2182788,-0.256772,-0.21102987,0.3885589,-0.764457,0.32622588,-0.18475287,-0.01600696,0.28410822,-0.20143065,0.3177714,0.9724618,-0.22025385,0.0056619644,-0.1596744,-0.12828,0.09292006,-0.34497267,0.29326564,-0.45789692,-0.37500462,0.7917109,0.57877886,0.27838528,-0.5204823,0.18201014,0.1636777,-0.22739877,0.09820581,0.026130777,0.10212298,0.08516801,-0.51984763,-0.286536,0.5760132,-0.26519617,-0.034466162,0.19793159,-0.23414482,0.25406778,-0.28092864,0.18255483,-0.01908439,-0.99749047,-0.107833266,-0.360906,-0.3508724,0.4412139,0.06711486,0.11287545,0.22414318,0.12267951,-0.2474157,0.75195855,-0.10749745,0.9748109,0.26865557,-0.04427336,-0.1168511,0.47671303,0.26790857,-0.11465229,0.107821375,-0.09897309,0.10820052,-0.50419474,0.4883981,0.12638249,-0.33224875,0.119366236,-0.046301045,-0.0064810514,0.41841248,-0.17733558,-0.1453524,0.30745995,-0.14529036,-0.14081377,-0.06712469,-0.07338343,0.22776319,0.5797018,0.0053983377,-0.105830275,-0.18237416,-0.29268375,0.1888163,0.0917025,0.33729628,0.59240395,0.20551865,-0.47301775,-0.06990835,0.3419011,0.42870983,-0.24053223,-0.14363629,0.12127275,-0.39120024,-0.35870054,0.29513764,-0.044020727,0.3511153,0.021688405,-0.22085561,0.7733502,0.42831305,1.3362287,0.1583862,-0.3548425,0.09529054,0.47098783,-0.11235334,-0.02567432,-0.44651616,1.0438608,0.49899846,-0.13078068,-0.058230393,-0.37512174,-0.09505704,0.3332662,-0.02798958,-0.12272184,-0.03616394,-0.75825983,-0.30037606,0.17706765,0.41934484,-0.117912054,0.073272735,0.10553796,0.37397468,-0.18476817,0.31905794,-0.79056937,-0.02487369,0.28110167,0.38147053,0.06469929,0.20573409,-0.29464343,0.4346934,-0.6272275,0.13677074,-0.18848838,0.020598246,-0.32378584,-0.28993145,0.050051205,0.16092142,0.32939273,-0.5964824,-0.26702613,-0.399679,0.3767325,0.21573679,0.055561524,0.7631627,-0.16015497,0.012196624,0.035245333,0.5128975,0.894892,-0.23908004,-0.13832524,0.43755376,-0.4416119,-0.5584187,0.39090627,-0.36791295,0.051417787,-0.15055127,-0.2865469,-0.56528974,0.22796117,0.13266018,-0.094054975,0.054322243,-0.688254,0.14599489,0.36521637,-0.25632668,-0.13853249,-0.21872045,0.26211274,0.8803712,-0.15584405,-0.36109003,0.037549775,0.11650955,-0.44376072,-0.59885925,-0.1256523,-0.3780389,0.32428965,0.05423597,-0.29749313,-0.17721912,0.054180283,-0.47278875,-0.11159445,0.15430191,-0.26174697,0.103931814,-0.17377783,-0.14980909,0.76319164,-0.14404248,0.22182114,-0.48524863,-0.54372907,-0.6320215,-0.31018576,0.3407365,0.51332986,-0.12234998,-0.62109524,-0.12591146,-0.20233296,0.03317466,0.17407066,-0.35876495,0.4334393,0.39414245,0.51081795,-0.20866098,-1.1442418,-0.062054098,0.2414954,-0.2744372,-0.64637125,0.33266133,0.11527021,0.85634875,0.06772954,-0.032710653,0.25348008,-0.5776647,0.22836384,-0.19568811,-0.06340037,-0.70547926,0.034960542 +400,0.18438314,-0.06712983,-0.5809528,-0.21488993,-0.15501611,0.2288882,-0.15135927,0.5084624,0.15331867,-0.27004355,0.07929175,0.034397196,-0.309916,0.5028694,-0.19410203,-0.8277963,0.047391083,0.08318346,-0.6949911,0.70816326,-0.34200284,0.2084527,-0.021396017,0.288065,-0.0403546,0.040855438,0.30402374,0.12816186,0.02450102,-0.27692798,0.060928714,0.099054106,-0.5935497,0.50201917,-0.025108814,-0.11603832,-0.05946973,-0.46083474,-0.07465526,-0.72987574,0.20760965,-0.49818072,0.5476856,-0.109761335,-0.4098389,-0.041630883,0.13963018,0.0730839,-0.18943523,-0.04976781,0.29526293,-0.17900622,-0.09843534,0.13037997,-0.30715105,-0.40979278,-0.5339238,-0.11149418,-0.57676834,0.0019692082,0.006599615,0.27420756,-0.4325721,-0.18142766,-0.42222556,0.42856088,-0.34260908,-0.25476673,0.34227738,-0.17748368,-0.10136857,-0.5563496,-0.118429266,-0.08188658,0.35109332,0.023933416,-0.23786145,0.32501897,0.18954231,0.48922548,0.10225574,-0.25918123,0.04283522,-0.3123758,0.28267053,0.565334,0.03827096,-0.38031313,-0.26932004,-0.07420012,0.39134526,0.26333484,0.15749295,-0.38653025,0.04120415,-0.16808026,-0.084696986,0.5289325,0.5186755,-0.46425757,-0.14537239,0.48176387,0.37439513,0.49367204,-0.148479,0.21819139,-0.17092031,-0.36150208,-0.3321624,0.2389266,0.01862449,0.41796878,-0.08701802,0.26706788,0.5376687,0.0613268,0.019737238,-0.1419345,-0.08766084,-0.06980487,-0.32201567,-0.18454774,0.26731125,-0.5418083,0.22226112,-0.34499124,0.5626964,0.1036839,-0.61728096,0.30085868,-0.44547284,0.1313203,0.09204636,0.66884446,0.897813,0.40200892,0.011788043,1.0382957,-0.38566634,0.08823362,0.12227172,-0.0521024,-0.054198157,0.1028049,0.08839828,-0.5184009,0.23482297,-0.0775537,0.12580557,-0.04733737,0.04968788,-0.5115883,-0.3008056,0.0801576,0.53628594,-0.25475755,-0.15661146,0.7383051,1.1464804,1.1527127,-0.1951914,1.408206,0.24283539,-0.1310515,-0.27888784,0.080707304,-0.4702022,0.13018638,0.43307352,0.37001,0.39773574,-0.145632,-0.026568627,0.48952642,-0.28450975,-0.092679,0.059473295,0.41021955,-0.0866432,-0.30446592,-0.49446234,-0.08944583,0.3235149,-0.1019708,-0.02523614,0.3248955,-0.30630806,0.4604396,0.04766051,0.94457144,-0.07125168,0.13975202,0.12175261,0.2193503,0.2631149,-0.30937788,0.11916822,0.26265308,0.34734425,-0.26462868,-0.52605754,0.01913821,-0.54188186,-0.40476468,0.004603175,-0.59295535,-0.37387395,-0.1398771,-0.41180226,-0.012932439,0.08421812,-0.13882798,0.4766958,-2.8600705,-0.32316795,-0.3949271,0.074186996,-0.28530025,-0.25127736,-0.3069765,-0.35711077,0.40026653,0.23630898,0.49034515,-0.3690492,0.3628818,0.4273822,-0.24710512,-0.002718995,-0.659853,-0.07359529,0.15811552,0.28248718,-0.13738602,-0.10264055,-0.1330464,0.40638566,0.53826016,0.33208042,0.0005390495,0.38099623,0.5736803,-0.18312526,0.31723967,-0.1482151,0.70058227,-0.44524977,-0.04375757,0.35437313,-0.35530952,0.8855877,-0.19821505,0.13080831,0.57170874,-0.27552694,-0.6441197,-0.29430056,-0.42915034,1.3088189,-0.4819571,-0.5090262,0.12803553,0.13918738,-0.09984138,0.010044728,0.5919503,-0.0034715533,-0.073123515,-0.41508853,0.07142341,-0.13390015,0.35011196,-0.30076298,0.1396216,-0.39144084,0.66643256,-0.12789577,0.7325156,0.36011398,0.22067387,-0.14746024,-0.3262232,-0.07493419,0.87126523,0.57648575,0.07840335,-0.18549187,0.0035352658,-0.4568572,-0.18246269,0.097082905,0.7547906,0.4222065,0.029495252,0.02069825,0.37816846,0.07123909,0.14893594,-0.13125068,-0.48193192,-0.2833201,0.19119294,0.6450115,0.49986354,-0.25347006,0.41847822,-0.0015051117,-0.15243581,-0.38634112,-0.4814707,0.3571451,0.44090188,-0.28546923,-0.18900484,0.5191029,0.3987763,-0.19786389,0.45812368,-0.61573213,-0.39595017,0.7136232,-0.04402082,-0.3906881,0.05612266,-0.24609514,-0.13636194,-0.7844658,0.2334563,-0.4091488,-0.67591596,-0.5831738,-0.24392502,-2.258521,0.08293036,-0.081728615,0.025282884,-0.31727633,-0.12717749,0.25244924,-0.545352,-0.7547167,0.026945377,0.0626932,0.4546033,-0.2134489,-0.02926541,-0.23940392,-0.4555668,-0.1968231,0.39983344,-0.024116153,0.15067859,-0.15210544,-0.19791378,-0.06540191,-0.039814617,-0.32224122,-0.031105697,-0.42911562,-0.37162986,-0.04771827,-0.2771759,0.13218419,0.6996166,-0.6420044,-0.048090708,-0.12532786,-0.05880397,-0.022979328,0.12815835,0.17891097,0.3873391,0.06877239,-0.19296461,-0.19063143,-0.28275296,0.15972482,0.24183655,0.37391075,0.5687481,-0.16785032,0.26387957,0.4570733,0.7513013,0.15368718,0.8087233,0.054028686,-0.027156321,0.49957252,-0.13943683,-0.31341562,-0.5790949,-0.3107157,-0.030062819,-0.43521392,-0.6557111,-0.040679455,-0.23651437,-0.7313318,0.25972912,0.31293347,0.54744315,-0.33979174,0.28349397,0.31806538,-0.32828906,0.17186548,-0.026463456,-0.07673304,-0.36633512,-0.44148663,-0.8121779,-0.46738687,0.24255683,0.97600365,-0.2424509,-0.15046597,0.10849575,-0.29609954,0.042616438,-0.015520061,0.22338259,-0.0066989907,0.16598941,0.07220559,-0.68281335,0.37046576,-0.11228093,-0.0060592196,-0.3832738,0.14383739,0.8013487,-0.33525726,0.41231132,0.28059295,0.14669432,-0.38376632,-0.7373304,-0.07367362,0.2334351,-0.19366185,0.44847807,0.21259844,-0.5411003,0.43437704,-0.049800485,0.057921153,-0.6731079,0.57011366,0.022130214,0.15632997,0.14039145,0.42165437,0.12176102,-0.07942265,-0.07492801,0.43836737,-0.41499528,0.4473387,0.4340383,-0.05235648,0.29113454,-0.09143051,-0.46963117,-0.50898594,0.0061129183,-0.7845885,-0.40385988,0.12932183,-0.020604754,0.045190502,0.1055071,0.09669223,0.4378706,-0.33478168,0.3775176,0.059385482,-0.31527236,0.6285531,0.51321363,0.35348645,-0.44080457,0.5853165,0.2224235,0.12439054,0.09014842,0.15933028,0.47964814,0.32187644,0.40824232,-0.36592352,0.08690397,0.019034922,0.63412005,0.22313166,0.1175842,0.12178128,-0.18303919,0.17613514,-0.0150873335,0.18303137,-0.18347822,-0.47696552,-0.112236224,0.09464743,-0.00877817,0.6182453,0.101961076,0.15909599,0.17952721,-0.15815991,0.225563,0.06307126,-0.3101006,-1.262937,0.50164646,0.13839763,1.0218638,0.3987882,0.12880588,-0.049416166,0.29216334,-0.3315651,0.15088388,0.5859609,-0.029396215,-0.44069877,0.73975587,-0.42903474,0.4054868,-0.2213778,0.08099454,0.23642659,0.14828676,0.4762728,0.8261259,-0.1777336,0.10479156,-0.21287994,-0.1984132,0.15011895,-0.28572068,0.17857839,-0.37682864,-0.49304876,0.48137307,0.34364557,0.25263593,-0.39257157,0.044214975,-0.049285535,-0.2702462,-0.035492495,-0.10582361,0.10565353,-0.1740197,-0.36786318,-0.2131287,0.5947024,-0.36056653,-0.06293275,0.023633962,-0.32184678,0.16609515,-0.0151405735,0.22318335,0.004422406,-0.75958306,0.046479475,-0.4204688,-0.43923387,0.11465907,-0.38590863,0.22154026,0.14676987,-0.06745768,0.013707439,0.34787127,0.0075179436,0.5661797,-0.22986268,-0.07601055,-0.3447934,0.24466574,0.12485134,-0.265001,0.09883708,-0.2896032,0.18549906,-0.4944847,0.27204344,-0.069353655,-0.38373888,0.01766622,-0.014735264,-0.13124497,0.37105858,-0.08775283,0.07798145,-0.077529244,-0.3595878,-0.18077195,-0.067087166,-0.3122038,0.24581821,-0.13181688,0.19638719,-0.14252336,0.061733667,-0.08490751,-0.034582987,0.2897421,-0.09055016,0.41463947,-0.0071446574,-0.59808373,0.19701695,-0.019180506,0.35105944,0.3386089,-0.09524839,-0.24842674,-0.28167087,-0.46306872,0.7181633,-0.32949227,0.23165183,-0.046960194,-0.36215624,0.6238647,0.18140002,1.2008247,-0.057672054,-0.4680606,-0.06787715,0.7639548,0.17802654,-0.100620955,-0.3009962,0.8572976,0.4009833,0.12711066,0.13382697,-0.34554777,-0.27265474,0.3243675,-0.18209119,-0.14029439,0.060231198,-0.5327765,-0.14526652,0.053276855,0.14560074,0.13910487,-0.22512893,-0.4214313,0.27929807,0.21197218,0.4832064,-0.67984366,-0.36063877,0.2249781,0.14833419,-0.055629462,0.1358218,-0.2870929,0.2811569,-1.1080198,0.28728625,-0.53337115,0.07009962,-0.13978498,-0.3634443,0.21828406,-0.10638691,0.42543432,-0.28087762,-0.32236442,0.050365325,0.4784191,0.33737317,0.22362001,0.7025277,-0.21361987,-0.0924552,0.14688653,0.47985652,1.0939852,-0.079533674,-0.14483668,0.16337754,-0.46501315,-0.79986596,-0.19341226,-0.6416228,0.3261766,-0.27711767,-0.4191654,-0.25681877,0.092151366,0.0016870102,-0.063619375,0.039660722,-0.711379,-0.12800327,0.26494902,-0.17304087,-0.25038773,-0.3899932,0.00078008574,0.7512997,-0.2822677,-0.38073203,0.05022199,0.1635502,-0.30991682,-0.8889396,0.23530205,-0.38915148,0.28708985,0.06736233,-0.38633373,-0.03661422,0.19496803,-0.5078211,0.28209224,0.2369823,-0.30566722,-0.18840735,-0.09737966,-0.14685506,0.8884974,0.05689943,0.014101602,-0.44651437,-0.55542284,-0.5209797,-0.44859013,0.15198143,0.16997051,-0.069717765,-0.70264345,-0.08264006,-0.37385657,0.16949125,-0.08140779,-0.2652891,0.22696143,0.16141123,0.45806623,-0.17639603,-1.0322412,0.19712871,0.033901054,-0.013112068,-0.31432977,0.37463066,-0.12969787,0.6645474,0.052838694,-0.061098233,-0.13345093,-0.8828977,0.3139643,-0.31018797,0.034353346,-0.4632957,0.44868407 +401,0.5471104,-0.102342494,-0.5094384,0.016130729,-0.5048779,-0.039230637,-0.21061502,0.23475564,0.4734177,-0.1444976,-0.26843143,0.08028341,-0.053414676,0.08875232,0.05849337,-0.5760516,-0.09231607,0.32695732,-0.9860198,0.68741995,-0.44029364,0.30505365,0.033325978,0.46014315,0.01491269,0.3232201,0.003851699,0.07034318,-0.19986425,-0.011806245,0.11418476,0.20149381,-0.69465303,0.17230128,-0.2983327,-0.23810515,-0.24458666,-0.48620468,-0.22193787,-0.6861726,0.11951669,-0.7512831,0.57181555,-0.06266485,-0.35968882,-0.19204605,0.213051,0.10746444,-0.18646193,-0.035203867,0.25202852,-0.035469446,-0.37507337,-0.32677817,-0.07005272,-0.22649762,-0.54254645,0.044448137,-0.39546224,-0.029643271,-0.044414412,0.22647555,-0.18057871,-0.06598115,-0.28300235,0.5987815,-0.2755776,0.0930331,0.39858755,-0.067125164,0.06630587,-0.6284567,0.092762046,-0.012296866,0.4313602,0.10730536,-0.4719092,0.26549482,0.28976223,0.5596028,0.2627209,-0.3360422,-0.24587466,0.11042906,0.18200555,0.36362362,-0.26571852,-0.114081845,-0.15758778,0.013527312,0.27418295,0.24770644,0.1818472,-0.3418631,0.08786968,-0.43972534,0.14630838,0.3585618,0.41361183,-0.23848507,-0.32367104,0.18385589,0.6807931,0.37066168,-0.15631975,-0.027279105,-0.0117664775,-0.5666984,-0.13889854,0.030372305,-0.055059593,0.32947683,-0.16505252,0.17656955,0.556917,0.028409908,0.04928143,0.33613318,0.10837877,0.1886932,-0.5481575,-0.17996743,0.25283334,-0.5233453,-0.083166495,-0.26644513,0.39591795,0.09320237,-0.54646903,0.40888852,-0.68507385,0.2148895,0.13863297,0.5233658,0.9863414,0.6811657,0.17412826,0.715823,-0.20061418,0.19708546,-0.072913185,-0.13227941,0.25720066,-0.22774342,0.25344136,-0.5947502,0.077829614,-0.2911319,-0.1340348,0.09433324,0.5662519,-0.67200387,-0.31671825,0.033605866,0.719338,-0.2226769,-0.16693719,0.8753323,1.0970637,1.05893,0.15925315,1.3742207,0.37287885,-0.2983868,0.034582574,-0.29791382,-0.7284071,0.14380567,0.30925828,-0.40640688,0.47529772,-0.19726923,-0.09112542,0.47126558,-0.49678588,-0.046112914,-0.0129099125,0.47625503,0.0636626,-0.11293733,-0.45486137,-0.29985145,-0.035076495,0.038814545,0.21739043,0.37617776,-0.2799354,0.2130408,-0.05407295,1.0884627,-0.2079577,0.11292275,0.14806227,0.13438746,0.31721213,-0.29641375,-0.21577524,0.33762607,0.20742324,-0.09450601,-0.4169496,0.24037986,-0.37528515,-0.3437541,-0.11980975,-0.19533217,-0.16828267,-0.04600999,-0.45037287,-0.40530705,-0.10660391,-0.39708552,0.3693492,-2.4147885,-0.27191764,-0.06813977,0.4889833,-0.23531768,-0.3492454,-0.273854,-0.41203764,0.16575532,0.05832698,0.40704945,-0.53675216,0.45855826,0.52587324,-0.8136155,-0.20280859,-0.7352143,0.03758359,0.17464487,0.24876098,-0.0283932,-0.14737211,-0.044083495,0.049444515,0.508922,-0.078932725,0.13574672,0.62374294,0.32736614,-0.05415374,0.18850546,-0.095757425,0.63987285,-0.42888308,-0.34133577,0.4303626,-0.40071133,0.352304,-0.09893345,0.04162624,0.755435,-0.4523131,-0.83652604,-0.50711215,-0.16378649,0.9525797,-0.16947412,-0.30964956,0.039987717,-0.6478281,-0.13389893,0.23509641,0.79772854,-0.037618034,-0.014575094,-0.7729978,0.007199977,0.021724632,0.16015632,-0.013627721,-0.045620847,-0.43420824,0.76638776,-0.046506736,0.52396613,0.3036849,0.25887266,-0.2426871,-0.4336435,0.19417588,0.76604426,0.453819,0.0658204,-0.19364385,-0.11990649,-0.16400246,-0.036937945,0.0019122107,0.7423585,0.58726776,-0.24722163,0.17942545,0.23383021,0.020681515,0.10070085,-0.22240391,-0.21471505,-0.21298364,0.11692853,0.44811177,0.8722922,-0.11087891,0.32335708,-0.21882798,0.23004495,-0.18334782,-0.7050312,0.6287537,0.785308,-0.36477706,-0.037537318,0.63965607,0.30938032,-0.4499926,0.51444036,-0.5355936,-0.37586954,0.39578167,-0.17049514,-0.32519552,0.20430814,-0.3515363,0.29351786,-0.63583523,0.5087346,-0.47511503,-0.5130847,-0.5117984,0.018489957,-1.8063935,0.34410697,-0.16160667,0.076387085,-0.27575245,-0.21867761,0.1955783,-0.5430064,-0.77299935,0.14949845,0.18045858,0.6114222,-0.25166735,0.09015368,-0.03918266,-0.57586604,-0.10455398,0.24176393,0.28855795,0.37204367,-0.28346878,-0.29596773,-0.15381943,0.07977159,-0.34670225,0.09976474,-0.8175683,-0.5430973,-0.10771928,-0.6380182,0.027288776,0.565735,-0.44766143,0.033648483,-0.3606863,0.13129722,-0.04540888,0.36751,0.027151743,0.37362668,0.23963077,-0.09116233,-0.05578783,-0.12575151,0.33618638,0.045083165,0.26078948,0.37603572,-0.063580856,0.35216638,0.38623363,0.98912185,-0.18879817,1.0789243,0.3602542,-0.15188758,0.3024292,-0.33886668,-0.2781312,-0.5718292,-0.28747267,0.019958155,-0.47505683,-0.39313933,0.17008086,-0.4107203,-0.8422719,0.40466008,-0.06467708,0.20661101,0.10353891,0.2186233,0.5049241,-0.3770719,0.032898746,-0.18752027,-0.19589867,-0.49826095,-0.28942934,-0.53634936,-0.5912963,0.24180542,1.2218674,-0.3494901,0.3196583,0.13603322,-0.30559346,0.052145246,0.09227705,-0.105713435,0.09002964,0.5271002,0.12614669,-0.4347317,0.112653,0.019619746,-0.30326796,-0.36935148,0.49737436,0.7405891,-0.79917425,0.7812977,0.3158991,-0.033575356,-0.12137882,-0.6022099,-0.18742903,0.14682068,-0.20376039,0.45305315,0.4241402,-0.74999344,0.3628456,0.33562663,-0.36321998,-0.8941251,0.32558408,-0.035906058,-0.17803624,-0.22980908,0.526017,-0.012344905,-0.043510947,-0.17225185,0.33575407,-0.39376995,0.25269642,0.056912232,-0.1411951,0.0040178215,-0.20916112,-0.39236972,-0.81720304,0.0613328,-0.60365933,-0.4401218,0.44062132,0.02819267,-0.06492387,0.18494828,0.43984097,0.37607923,-0.32722667,0.08652729,-0.17338912,-0.39721438,0.17177339,0.44288573,0.4545381,-0.3588087,0.43971178,0.08656736,-0.083066046,0.124970235,0.113458075,0.33963466,-0.106604934,0.4317727,-0.07218913,-0.03915401,0.11007363,0.76983494,-0.034360353,0.28732395,0.045715757,-0.10233327,0.27479437,-0.057340737,0.2608827,-0.3006869,-0.3851802,0.09362275,-0.03323579,0.17927457,0.42481932,0.32890248,0.18186699,0.012985195,-0.2446707,-0.04707695,0.33710048,0.11792948,-1.4081715,0.4581771,0.17274663,0.9539235,0.59380925,0.15803686,-0.31517002,0.61806935,-0.15047288,0.12267748,0.5207463,-0.20586602,-0.37814403,0.5225779,-0.67774487,0.42493483,-0.18823764,0.014994609,0.14262539,-0.014249444,0.27261925,0.82456017,-0.14741442,-0.009808438,-0.174945,-0.12398779,-0.033172403,-0.22716321,0.09973145,-0.48163837,-0.502286,0.9879891,0.3681464,0.48560214,-0.3458167,0.033928454,0.073087975,-0.36989954,0.3994035,-0.069928996,0.09991383,0.04922619,-0.55291593,-0.09933109,0.43031642,-0.09997799,0.010296891,0.022918237,-0.16453834,0.000681817,-0.32999977,-0.045118418,-0.12653364,-0.83755547,-0.020142687,-0.45895338,-0.39502588,0.337454,-0.16907641,-0.19401659,0.2635096,0.12817265,-0.28897983,0.56859803,-0.051612716,0.7247977,0.1426132,-0.10582357,-0.04872137,0.5063122,0.1437706,-0.3164289,0.14407781,-0.19609664,0.36484236,-0.5515148,0.7059582,0.074293986,-0.47738218,0.07886108,-0.13163117,0.02131416,0.4473841,-0.21526875,-0.29108956,0.0005649499,-0.14459752,-0.42984197,-0.010250045,-0.15923794,0.15957835,0.34404776,-0.15554562,-0.22068821,-0.28101617,-0.20155656,0.5755078,0.08171618,0.33104032,0.4114706,0.03189262,-0.35142913,0.21021561,0.5025967,0.5544709,0.18451378,-0.0665852,-0.6281694,-0.24928565,-0.4248433,0.42788187,-0.10072928,0.23243164,-0.06722398,-0.16886835,0.990775,0.1517068,1.1039948,-0.050995376,-0.29530266,0.015917907,0.4688902,-0.18268749,-0.20373945,-0.52336293,0.9860501,0.5153324,-0.15083776,0.028964734,-0.371185,-0.2292877,0.2970485,-0.3351333,0.038073856,-0.055251133,-0.7181021,-0.3362632,0.06290009,0.10745569,-0.0007126161,-0.21831869,0.056263737,0.12831672,-0.06625111,0.17127001,-0.70622575,-0.13432573,0.16043079,0.41200203,-0.084573284,0.41137198,-0.2667213,0.2557935,-0.91875935,0.14382792,-0.30542946,0.007946178,-0.1842442,-0.59797174,0.2103575,0.20144667,0.3437039,-0.38506943,-0.30326128,-0.21539102,0.3038362,-0.021061037,0.12171741,0.6923857,-0.27486092,-0.097257175,0.29373288,0.60527515,1.097955,-0.21281007,-0.028898831,0.11500982,-0.40558583,-0.7295055,0.40266103,-0.3499152,-0.058669765,-0.17438526,-0.32520035,-0.48648357,0.1523195,0.21292962,0.204513,-0.08599132,-0.68855,0.10842698,0.18826342,-0.26915914,-0.036054228,-0.24223717,0.3502833,0.8200942,-0.14495707,-0.2539925,0.04806876,0.1754719,-0.3176448,-0.44471768,-0.030136015,-0.52690804,0.16281836,0.17155676,-0.38879538,-0.08323383,0.0012123095,-0.5934361,0.059643608,0.14656594,-0.28669205,0.10834457,-0.2681594,-0.012938602,0.9060332,-0.07738395,0.13469163,-0.23342316,-0.7061457,-0.89850533,-0.30990744,-0.15231626,0.2141769,-0.028175231,-0.6874219,0.011620053,-0.2661219,-0.20561567,0.12717378,-0.3598349,0.35516214,0.24905765,0.38356972,-0.36458546,-1.0594131,0.08156144,0.30487442,-0.095785804,-0.53303766,0.36347312,0.074205756,0.8818899,0.09667535,-0.114657044,-0.061289035,-0.5699417,0.1486177,-0.2783995,0.12052058,-0.71676856,0.026848128 +402,0.52976876,-0.19649707,-0.459397,-0.045846265,-0.14595553,0.08074615,-0.19763584,0.47854295,0.18107596,-0.50196755,-0.19615676,-0.18836541,0.015833903,0.26128194,-0.2551295,-0.41051203,0.003817306,0.1657492,-0.4311748,0.62703425,-0.29861277,0.31165218,0.12815657,0.3921833,0.10796503,0.20346005,0.254619,-0.17381702,-0.17309867,-0.19300574,0.038965877,0.13346389,-0.58020204,0.17898442,-0.19074275,-0.35569525,0.03574149,-0.5303557,-0.39881754,-0.8250395,0.316938,-0.8267587,0.5158011,0.050736766,-0.33456382,0.22092326,0.093644574,0.22113724,-0.2049511,0.041582294,0.11884538,-0.024821432,-0.062200543,-0.13865168,-0.08225188,-0.20289294,-0.62096953,0.08328467,-0.3441343,-0.07002498,-0.33675286,0.11970064,-0.31299785,0.017224608,0.018995518,0.5642557,-0.45350105,0.08287273,0.07088461,-0.10062255,0.3602328,-0.5631781,-0.23644494,-0.06953239,0.2513217,-0.2221728,-0.17088011,0.24544828,0.24692623,0.5868855,-0.048833895,-0.09304547,-0.31664938,-0.038832687,0.1575183,0.5762023,-0.2170235,-0.5664686,0.046721254,-0.052815013,0.4010418,0.10276245,0.12102404,-0.33338442,-0.22126958,0.018878842,-0.2071098,0.286158,0.5629765,-0.29739103,-0.186925,0.3831445,0.48709956,0.090192094,-0.097185835,0.15776081,0.0022884437,-0.47023678,-0.17601998,0.052686416,-0.26028463,0.5264108,-0.10849902,0.35368773,0.5668123,-0.16457245,0.07013211,0.20717007,0.012338259,-0.15996285,-0.07523842,-0.3302695,0.14172271,-0.41937378,0.04044692,-0.17344595,0.83374393,0.16225317,-0.9803196,0.37718323,-0.41006973,0.13949206,-0.03186388,0.47110024,0.6371505,0.41317847,0.40924576,0.7237383,-0.5559218,0.035275765,-0.046956223,-0.32237238,-0.04026491,-0.12135164,-0.112623654,-0.50292075,-0.08789406,0.01230946,-0.21421584,0.12948318,0.3536705,-0.42972645,-0.024546228,0.06498469,0.8353911,-0.26450244,-0.004617548,0.7411902,1.0351918,1.0210091,0.11152507,1.1204245,0.104216725,-0.24526592,0.16196747,-0.22699696,-0.7392753,0.29001638,0.51707727,0.051249392,0.25454962,0.10956114,0.048371196,0.33962637,-0.4906594,0.11190781,-0.11657758,0.122286476,0.098978326,-0.12354017,-0.39192504,-0.25533408,-0.053929795,0.021068012,-0.06550304,0.1964943,-0.22780101,0.33973208,0.05577987,1.7597317,-0.058957685,0.055406317,0.11130783,0.5210611,0.16092794,-0.17196724,-0.08299808,0.19627616,0.23581554,0.06922005,-0.62505645,0.056230154,-0.13386443,-0.50964314,-0.1563974,-0.2804204,-0.058890525,-0.041174445,-0.4709925,-0.15605387,-0.20066194,-0.44400266,0.39822063,-2.714137,-0.1010317,-0.019903159,0.27347293,-0.28863952,-0.43236813,-0.08660402,-0.5236126,0.41088834,0.38846162,0.46276578,-0.7969884,0.24357125,0.38704026,-0.4598357,-0.08413753,-0.68877304,-0.20550285,-0.042368047,0.3480469,0.093968645,-0.123430364,0.014748935,0.28953037,0.426025,0.025121678,0.1079447,0.26954764,0.34184977,0.12346509,0.40308458,-0.104058504,0.37234756,-0.1444905,-0.1590252,0.46984187,-0.36897284,0.11777903,-0.18489258,0.17439477,0.29624787,-0.5222559,-0.8756341,-0.745681,-0.16858646,1.2020452,-0.0984571,-0.49138483,0.31324038,-0.20647262,-0.19016454,-0.09701999,0.48238316,-0.15355946,-0.059741892,-0.97113776,-0.059318606,-0.083751366,0.25131702,0.09790778,-0.028114738,-0.46488246,0.6234446,-0.04074482,0.523576,0.4142213,0.111068584,-0.16001572,-0.4197567,0.15995486,1.0612293,0.45738122,0.17639078,-0.22751443,-0.08683122,-0.4285287,-0.10339907,0.06333045,0.45450085,0.7207436,-0.029615736,0.06952303,0.22044028,0.024242532,0.07620443,-0.18142296,-0.29345942,-0.090416685,-0.02379055,0.5983091,0.6279678,-0.18040743,0.32554835,-0.09062519,0.09370062,-0.13756332,-0.39343926,0.68801016,0.84263235,-0.08283229,-0.25138462,0.4952221,0.4620808,-0.20633288,0.4500609,-0.64669687,-0.30537316,0.38662001,-0.13578863,-0.4011576,0.31996462,-0.37327746,0.21919979,-0.84545344,0.33729467,-0.31511128,-0.33160096,-0.43405816,-0.10376431,-3.0694964,0.12836502,-0.07821267,-0.25593868,-0.06776477,-0.15722667,0.15538135,-0.49727723,-0.6140104,0.12073799,0.09683609,0.669738,0.009795813,0.14046334,-0.095278345,-0.30593827,-0.43631747,0.04109179,0.04949951,0.36537328,0.1061863,-0.4721186,-0.16807511,-0.2522529,-0.360742,0.09600319,-0.4314043,-0.57210785,-0.18943828,-0.38533047,-0.35718054,0.54443747,-0.3706979,0.037376884,-0.19925527,-0.14827545,-0.22397973,0.39196032,0.11678008,0.030658606,-0.065835305,-0.05842892,0.033928044,-0.21451534,0.3118154,0.07813521,0.19600753,0.41876754,-0.20161152,0.24987835,0.5672712,0.6578522,-0.22329578,0.8022957,0.52267563,-0.07836791,0.24866231,-0.31463856,-0.33842298,-0.50623995,-0.24754842,-0.06642525,-0.40269655,-0.3253304,0.00819056,-0.40059254,-0.8032158,0.373656,-0.022434182,0.068140015,0.04954777,0.18776347,0.42075577,-0.12986878,-0.048026,-0.08746711,-0.19876143,-0.6499544,-0.35014597,-0.6945582,-0.39682716,0.07278232,0.97599906,-0.06638887,-0.07113098,0.09892905,-0.0669453,0.026385916,-0.026687698,-0.03772882,0.12577382,0.34917113,-0.009753371,-0.80714345,0.47335443,0.0109597575,-0.1817166,-0.50942767,0.10544138,0.4438599,-0.48455924,0.44576743,0.33274314,0.062810004,-0.015225093,-0.51460737,-0.1406071,-0.070317626,-0.16913743,0.38620594,0.21078709,-0.6911382,0.43692234,0.34473047,-0.14898206,-0.7160356,0.4117562,0.061325047,-0.27992913,-0.010981506,0.22673517,-0.058509476,0.08970035,-0.31244355,0.14259343,-0.5092652,0.4437637,0.24100211,-0.028495006,0.34164056,-0.24841285,-0.17975898,-0.6952287,-0.0946593,-0.544315,-0.28454092,0.09055993,0.24761786,0.046144985,0.0978313,0.10386734,0.44020203,-0.3371954,0.0965164,-0.081090145,-0.1377026,0.3371352,0.5016348,0.5574576,-0.35233447,0.5651195,0.011285651,-0.15325163,-0.22429675,0.11749674,0.40420702,0.17849824,0.10275779,0.033690277,-0.1817531,0.32187182,0.6952573,0.26463315,0.39475575,0.046081662,-0.25579172,0.34565926,0.099002674,0.21679632,-0.014192323,-0.5084172,0.018886006,-0.2960478,0.010797769,0.47744498,0.081200056,0.25253052,-0.11183665,-0.40636304,0.065674044,0.27354875,-0.13559261,-1.239652,0.31242904,0.09150105,0.7342079,0.700126,-0.16967802,0.17612417,0.79664266,-0.18753843,0.12231662,0.28794548,-0.022314962,-0.5386069,0.536116,-0.6807179,0.39440468,-0.038445108,0.039326645,0.044280298,-0.051341772,0.26381642,0.68059593,-0.015994826,0.1436225,-0.07294185,-0.22313994,0.0343608,-0.44437835,-0.029772973,-0.53068155,-0.17466873,0.7435346,0.40093428,0.32724002,-0.06361163,0.10527982,-0.0028393387,-0.062214017,0.15983225,0.103466555,0.092944145,-0.113754176,-0.69463736,-0.14446431,0.5504243,-0.0017282963,0.21219444,-0.021490533,-0.23591436,0.21167523,-0.20125748,-0.18832156,-0.08534415,-0.6555719,-0.09626627,-0.27428487,-0.2276695,0.50991696,-0.081188746,0.33923957,0.22958294,0.07588094,-0.2299296,0.17822023,0.27221808,0.602793,0.062695175,-0.11902766,-0.26993656,0.20371667,0.18230054,-0.17588903,-0.10522876,-0.113890775,-0.037732646,-0.5567686,0.38648835,0.03546167,-0.25897458,0.29242313,-0.10173321,0.061302237,0.68790764,-0.21264677,-0.13707842,0.04239161,-0.14300379,-0.15831779,-0.16258499,-0.18837173,0.30702743,0.2308979,-0.1232251,-0.026336042,0.013983035,-0.047955815,0.3827091,-0.0059030154,0.41495952,0.23393577,0.07498367,-0.47556442,-0.042323176,0.07339377,0.4729184,0.11628286,-0.0051728827,-0.3101577,-0.4415921,-0.34023672,0.03276826,-0.12982677,0.18511719,0.16761617,-0.21998765,0.7898578,0.19484912,1.0272759,0.050640773,-0.25460297,0.091832526,0.3999557,-0.05120166,0.0022180458,-0.3268608,0.8774847,0.5471751,-0.056995478,-0.100536965,-0.2636318,0.012541489,0.11494686,-0.16228692,-0.07273841,0.06710081,-0.6751119,-0.32562053,0.23404716,0.32529926,0.08754481,-0.12362529,0.011551324,0.1159351,-0.008235367,0.2986809,-0.39006907,-0.11096891,0.3756072,0.23282649,0.051237073,-0.07829022,-0.56823164,0.41199923,-0.58806485,-0.11100997,-0.2201319,0.17248051,-0.15743509,-0.35018736,0.24832286,0.1756636,0.39488247,-0.35827672,-0.39790204,-0.29220816,0.5123152,0.038567614,0.15068217,0.4047624,-0.25702164,0.1349316,0.03452134,0.4648,1.0939878,-0.22846317,0.13905926,0.4324016,-0.33303705,-0.5119873,0.2837119,-0.24949278,0.13193773,-0.06296237,-0.18424413,-0.6685308,0.122742586,0.26767066,0.078562655,0.016048301,-0.62082887,-0.40638226,0.34489354,-0.39270642,-0.25227723,-0.34502062,-0.11856289,0.608547,-0.38185367,-0.34096402,0.12999313,0.32056728,-0.15552655,-0.5247568,-0.10869319,-0.29761487,0.2579649,0.18569562,-0.28515682,-0.23526448,0.23003823,-0.37560174,0.02784777,0.1267394,-0.3641159,0.08791385,-0.52100956,0.0359743,0.9303596,-0.15780789,0.13258187,-0.4616299,-0.42956793,-0.932046,-0.2503609,0.6153645,0.10486197,-0.003759414,-0.68878245,0.029015103,-0.14544246,-0.006025954,-0.06416166,-0.36603323,0.49647114,0.13737385,0.37261721,-0.11457411,-0.593406,0.04905789,-0.008709189,-0.19351648,-0.4580024,0.5182722,0.2020058,0.8519713,0.010745904,0.043667484,0.30301368,-0.637086,-0.019635057,-0.13512109,-0.24875149,-0.55916125,0.15156236 +403,0.47254524,-0.23516163,-0.48331732,-0.14500734,-0.2794086,0.17383964,-0.37998754,0.061408218,0.19073431,-0.41365644,-0.033781376,-0.0959167,-0.025977135,0.35331085,-0.107342206,-0.85370255,-0.11940973,0.1574378,-0.75487643,0.87078303,-0.38512745,0.31444958,0.15686813,0.12833083,0.18877077,0.16024709,0.35923323,-0.02836317,0.06620067,-0.18071604,0.019022848,0.046090297,-0.6939301,0.20814396,-0.21505539,-0.3104313,0.060912017,-0.3032258,-0.53983533,-0.70851266,0.29653898,-0.8759494,0.5326789,0.124421,-0.2806403,0.266391,0.18291959,0.18783078,-0.22489902,0.06829127,0.24779542,-0.21847169,-0.066166185,-0.2133271,-0.31509236,-0.30860087,-0.60162824,0.043069866,-0.7221159,-0.28952697,-0.18537475,0.25143704,-0.36436057,-0.15632828,-0.25128075,0.61394125,-0.45573753,-0.0061505693,0.25531563,-0.13699888,0.123328194,-0.6368993,-0.10772363,-0.087621994,0.06613626,-0.024717344,-0.11405391,0.265402,0.01433077,0.57080644,0.1838479,-0.5229303,-0.21042886,-0.15230073,0.4093059,0.34097582,-0.03551554,-0.133063,-0.2901976,-0.08526047,0.22664104,0.16943955,0.036948137,-0.35674903,-0.01811854,-0.16352391,0.00033473969,0.51785815,0.63985825,-0.42169762,-0.4546086,0.30029368,0.5298184,0.25376245,-0.157933,0.087689914,-0.03366926,-0.40834814,-0.12527223,0.3613348,-0.1758697,0.46674314,-0.20949428,0.10999511,0.59128726,-0.085861854,0.05208053,-0.063110866,-0.013809183,0.10528999,-0.27609032,-0.060054723,0.42406994,-0.6576303,0.07112213,-0.30211046,0.7272869,0.12563461,-0.5384023,0.31169686,-0.5340612,0.23058833,0.099412285,0.72699594,0.7018617,0.2901136,0.06303116,0.85628796,-0.43695396,0.20351042,-0.2180717,-0.2519194,-0.02233897,-0.27847275,0.11510539,-0.49717662,-0.030940847,-0.24605118,-0.0739307,-0.19408412,0.49756914,-0.40252873,-0.22672789,0.26668033,0.9212827,-0.22484906,0.06649286,0.69896644,1.216848,1.1476619,-0.1353126,1.1911259,0.22680536,-0.28850007,-0.13280305,-0.2921045,-0.7395331,0.20597853,0.4245959,0.85274404,0.38140106,0.034755386,-0.067434266,0.3495066,-0.47476608,0.08709309,-0.26066002,0.29515067,0.07334279,0.14953066,-0.45904055,0.00411149,-0.0050540566,0.0072371033,0.06720461,0.28962526,-0.24798921,0.3496129,-0.04245403,1.2845724,-0.3303066,0.093791984,0.26360136,0.53871393,0.2917622,-0.07978515,0.21647502,0.28520232,0.39124417,0.26142254,-0.6612602,0.020775659,-0.51360995,-0.32911697,-0.3611688,-0.4049602,0.030200584,-0.025373863,-0.43106884,-0.14904551,0.08831232,-0.38019252,0.2653788,-2.53284,-0.14559962,-0.1806247,0.2061491,-0.37727162,-0.23619907,-0.03990507,-0.5224639,0.47579116,0.33698764,0.368624,-0.46831813,0.28505665,0.46033144,-0.5444834,0.091616206,-0.5778554,-0.13055219,-0.17363223,0.76775974,-0.075617865,-0.08865646,-0.21935494,0.2051617,0.62624484,0.079198666,0.07789658,0.3632577,0.2229139,-0.04228136,0.36384916,0.077897415,0.3481638,-0.4068389,-0.19804034,0.5688581,-0.09200442,0.37499508,-0.31382173,0.14477493,0.4628127,-0.54112256,-0.7660932,-0.5811437,-0.47177172,1.3546344,-0.42873165,-0.75403774,0.42035514,-0.069977775,-0.03957917,-0.05994016,0.5177408,-0.014791638,0.18917152,-0.65258825,0.18151376,-0.0030884955,0.25419256,-0.009392893,-0.033849634,-0.41434476,0.723666,-0.12377254,0.3982682,0.32561573,0.3443194,-0.08215368,-0.5523489,0.14759648,0.9908193,0.3853364,0.008725994,-0.36369923,-0.19002523,-0.0538654,-0.07393523,0.00030538332,0.56400603,0.79907054,-0.19321191,0.049413007,0.4553552,0.01360694,0.08804513,-0.09813045,-0.3607214,-0.16819426,0.022168918,0.4844303,0.6091469,0.029853672,0.3331162,-0.0014321485,0.2752705,-0.087202616,-0.5249761,0.42435077,1.0089475,-0.25285217,-0.25153905,0.6335934,0.49910614,-0.51495934,0.51185566,-0.6598256,-0.3478327,0.53310925,-0.13581082,-0.5375816,0.14682953,-0.3196251,0.07079182,-0.64186364,0.27159423,-0.3310247,-0.5765877,-0.4800233,-0.28860617,-3.2538676,0.12790918,-0.45466644,0.076127455,-0.07936462,-0.16625507,0.28935978,-0.41429207,-0.44403172,0.12274318,0.124079265,0.57624495,-0.22172312,0.13986638,-0.23270825,-0.1720836,-0.41092852,0.37299684,0.22826178,0.21570802,-0.25140828,-0.3677327,-0.07543968,-0.13028106,-0.25002342,0.0028673199,-0.6265519,-0.38801405,-0.31306073,-0.519821,-0.0811309,0.5797063,-0.14867248,0.09033624,-0.2556015,0.115571395,0.01582307,0.051885325,0.2761086,0.43645817,0.0801561,-0.17404485,-0.26298848,-0.33607167,0.33656996,0.15003736,0.39970455,0.30826712,-0.047112882,0.19435258,0.39237183,0.4117592,-0.16301426,0.9364945,0.4240446,-0.16313018,0.2815115,-0.11271029,-0.33906168,-0.755993,-0.1920633,-0.017134229,-0.4795484,-0.5883598,-0.074320115,-0.23766156,-0.7579837,0.5765186,0.14249665,0.49674973,-0.098301284,0.13075782,0.5169001,-0.23546961,-0.17612115,-0.0401303,-0.19964395,-0.47113487,-0.341287,-0.76081467,-0.5148449,0.06579961,0.81890994,-0.18503377,-0.10641866,0.005658441,-0.33486223,-0.0093130665,0.20629944,0.13947473,0.053028487,0.6055102,0.32278314,-0.75357616,0.5524108,0.13711983,0.054670732,-0.45081022,0.27097288,0.5709631,-0.5674806,0.53732383,0.23879957,0.09505736,-0.33959246,-0.6044907,-0.20569248,0.044095118,-0.30496362,0.51042867,0.1399606,-0.7725186,0.44104466,0.09215584,-0.37906367,-0.807485,0.40508085,-0.124042936,-0.28341308,0.14554787,0.4215075,-0.09294616,0.069111295,-0.12944041,0.32360846,-0.30955106,0.30444488,0.2990346,-0.13233909,0.18368205,-0.2605885,-0.5790726,-0.66872513,0.012078209,-0.552522,-0.44230607,0.3656781,-0.043810852,-0.055890534,0.3306196,0.0934357,0.571729,0.06290458,0.22307931,-0.025273409,-0.45622435,0.67676556,0.44147015,0.50721484,-0.50291634,0.66833985,-0.011914109,-0.25671968,-0.06555087,0.17110135,0.4038264,0.14829643,0.53804606,-0.08598157,0.14447796,0.24150407,0.7657532,0.26041675,0.54352915,0.29136786,-0.19800986,0.46289536,0.07300886,0.03282202,-0.2819306,-0.6377193,-0.10241654,-0.0626164,0.2015923,0.46081918,0.027818756,0.4371365,-0.14618692,-0.22845581,0.056395892,-0.013323362,0.036565047,-1.18577,0.12479733,0.21636507,0.7150138,0.53361136,0.049181443,-0.029697511,0.60347766,-0.10190161,0.01479951,0.33402696,-0.08098019,-0.40572342,0.48716053,-0.6337847,0.45313898,0.04614083,0.08944794,0.10289558,0.15901458,0.41095877,0.78021944,-0.2142524,0.004027307,-0.14023668,-0.2885285,0.14207436,-0.26577827,0.28321305,-0.26167268,-0.54843706,0.5587771,0.44994083,0.32694498,-0.16142464,0.0040519633,0.06131942,-0.19700181,0.27696365,-0.017837528,-0.12952293,-0.12015524,-0.47117501,-0.2293844,0.51885855,0.017027974,0.0526712,-0.07309175,-0.05407083,0.20238213,-0.12652943,-0.09135311,-0.0050591337,-0.7886855,0.0784735,-0.2284715,-0.5406818,0.45488063,-0.3668552,0.19029193,0.06587423,-0.07554215,-0.4281501,0.34054285,-0.05106622,0.65982765,0.20150009,-0.23410788,-0.2978484,-0.027004166,0.0483194,-0.30133417,0.16542175,-0.26527232,0.21106242,-0.7801204,0.542223,-0.2537382,-0.41919544,0.10904662,-0.21501744,-0.16748978,0.63717234,0.12407957,-0.21465686,0.09366554,-0.20947514,-0.34933165,-0.30893946,-0.021064295,0.20549226,0.1493216,-0.24329717,-0.1797802,-0.10746108,0.10371997,0.3290631,0.018977266,0.20566507,0.18167289,-0.06804494,-0.3811622,0.065850414,0.4724531,0.3954267,0.11030848,0.028962126,0.078355245,-0.48617616,-0.500592,0.29114634,-0.122746214,0.2244699,-0.02003409,-0.21572591,0.90382034,0.2746223,1.2551239,0.0767296,-0.32740232,0.10571976,0.5815529,-0.0065537053,-0.1456939,-0.3278951,1.0690694,0.67100763,0.057609122,-0.103761,-0.52304363,0.030632865,0.09578525,-0.26853994,0.06721135,-0.036025286,-0.6523976,-0.069409154,0.1354014,0.39763635,0.116785236,-0.17385638,-0.156182,0.11128347,0.21569426,0.3645341,-0.64563316,-0.15582755,0.43921232,0.06371977,-0.1786971,0.3413466,-0.3893893,0.4055488,-0.6371693,0.20063205,-0.19931749,0.069939435,-0.01421561,-0.31120783,0.31056908,-0.0432719,0.37350893,-0.45278856,-0.39729834,-0.357151,0.50169486,0.2691864,0.111324705,0.6697851,-0.15477784,0.21056536,0.08319722,0.52727044,1.1376598,-0.25473842,-0.025252968,0.14721613,-0.41725156,-0.84998953,0.20233142,-0.48638996,0.2835806,-0.1091782,-0.4730749,-0.45386818,0.16526487,0.05189043,-0.18395673,0.12452129,-0.68916243,-0.17567801,0.008820832,-0.22062981,-0.23153774,-0.27719375,0.10511228,0.60813487,-0.16542974,-0.37251344,0.064280875,0.24993649,-0.38363594,-0.69069874,-0.09269107,-0.3642137,0.056513663,-0.022979338,-0.29901218,0.06832314,0.1746532,-0.62817633,-0.06077587,0.29195523,-0.3496881,-0.086181775,-0.053238213,-0.020293942,0.7802184,-0.140656,0.035657827,-0.61171055,-0.6373205,-0.8965336,-0.4170474,0.4179135,0.121994235,0.21575506,-0.4574256,-0.074032985,-0.3353896,0.18789063,0.08574497,-0.5843363,0.3561173,0.1261699,0.45330596,-0.24967349,-0.92686653,0.27703738,0.082740866,-0.069497004,-0.4818217,0.37086532,-0.16984282,0.6159709,-0.0640042,0.015813854,0.120377526,-0.6576177,0.103611596,-0.2479049,-0.23218516,-0.71152383,0.13358982 +404,0.6599548,-0.20711432,-0.69425005,-0.032104187,-0.23374046,0.12172841,-0.5006115,0.622955,0.25521508,-0.7266007,-0.08044751,-0.09884567,0.022789776,0.47624156,-0.25968012,-0.46698952,-0.051715255,0.30736348,-0.5487381,0.92425424,-0.19826278,0.37065098,0.14067979,0.38393107,0.36168724,0.19278711,0.3320063,0.21891555,-0.2614093,-0.30476353,0.08350777,0.25691056,-0.39959896,0.28523377,-0.35738072,-0.6668437,-0.1873038,-0.5246536,-0.13157582,-0.8160814,0.32564145,-0.9498667,0.8486199,-0.021612762,-0.25266755,0.07176209,0.3461873,0.35149992,0.034239385,0.11288788,-0.00973449,-0.03872987,-0.24603273,-0.2293272,-0.14653648,-0.7032017,-0.4908457,0.053782523,-0.52299404,-0.10880958,-0.06757606,0.19031717,-0.30253944,0.124827385,0.08643002,0.5999785,-0.3971639,0.0019393618,0.09975281,-0.023643393,0.30979797,-0.825683,-0.44371155,-0.089218564,0.39997673,-0.2831362,-0.070906125,4.4324183e-06,0.33284166,0.55305713,-0.123483986,-0.05691211,-0.47275102,-0.055744328,-0.021104895,0.43936223,-0.2639155,-0.690068,-0.18508743,0.1063513,0.36573842,-0.04531075,0.50531775,-0.18892193,0.013526391,-0.21905182,-0.31905547,0.43185046,0.40607417,-0.5236506,-0.2340259,0.29991972,0.515057,0.17852145,-0.19792518,0.12020464,0.017998142,-0.4048935,-0.10229156,0.08971122,0.01568721,0.5175893,-0.13950835,0.47183752,0.24333254,-0.05499899,-0.03272148,0.17309524,0.05849153,-0.28598955,-0.047262374,-0.3371007,0.28236726,-0.48283517,-0.1509932,-0.34133208,0.6025875,-0.025481893,-0.74376655,0.23813581,-0.6733969,-0.03204397,0.038959764,0.32571045,0.71477646,0.3619004,0.038108114,0.67264885,-0.16459599,-0.08979354,-0.19539024,0.008558891,-0.18049699,-0.39924982,0.023711862,-0.6839303,0.2210415,0.20449518,0.021321476,0.104494445,0.68490505,-0.48524484,-0.37698203,0.28473136,0.87778527,-0.14290586,-0.17662263,1.0107733,1.1110498,1.1021477,-0.029838694,1.2535129,0.20959538,-0.33020136,-0.16872287,-0.09090137,-0.57836604,0.39981362,0.40287447,-0.2685077,0.67328084,-0.017953236,-0.02519127,0.20057128,-0.28996593,0.05054793,-0.20616207,-0.09718582,0.15652992,-0.21499161,-0.45290306,-0.25130752,-0.10011547,-0.07690552,0.32108507,0.13049728,-0.12923445,0.5272524,0.12279907,1.4885098,-0.4288992,0.014832418,0.14523846,0.3657853,0.30278918,-0.2473368,0.026372107,-0.026227111,0.22260061,0.20042758,-0.3804631,-0.023389613,-0.1594691,-0.54239196,-0.30555734,-0.19031705,-0.18875675,0.17145418,-0.41468504,-0.1817822,-0.2057518,-0.28789243,0.28375885,-2.5514257,-0.30388805,-0.3058572,0.13599296,-0.2509675,-0.3316666,-0.3367034,-0.3047718,0.51309264,0.47139838,0.42726755,-0.50916886,0.4313254,0.3703991,-0.6278787,-0.1594201,-0.43798593,0.024355633,-0.06647821,0.34078053,-0.16671008,-0.46965578,0.28574908,0.2865493,0.41913554,-0.12846683,0.12607189,0.39588043,0.4227567,-0.116376065,0.310608,-0.09124045,0.46072024,-0.44877818,-0.36264694,0.640107,-0.3444959,0.26677442,-0.028323503,0.15427916,0.45827314,-0.654159,-0.9369862,-0.79926646,0.061094083,1.1720371,0.06551104,-0.69056153,-0.07811661,-0.28339112,-0.4282778,-0.030581713,0.5111092,-0.09315505,0.105182976,-0.9412693,-0.08414132,-0.10161831,0.18999009,0.0074467524,-0.13833237,-0.7098885,0.7791275,-0.0024562962,0.5512975,0.5013516,0.30905855,-0.5258306,-0.49298772,0.0061655315,1.1450535,0.57043856,0.14757964,-0.30065823,-0.11984847,-0.61205935,-0.036964092,0.19888173,0.5647192,0.644499,0.0750611,0.16460277,0.2804074,0.049194697,0.33611146,-0.028647033,-0.4088991,-0.39801013,0.34754202,0.60670877,0.39649117,-0.060757313,0.68194366,-0.098312564,0.34769222,-0.30267808,-0.39015332,0.6677277,1.0769411,-0.29794168,-0.5455161,0.73705655,0.5179918,-0.47219875,0.559486,-0.6298397,-0.5731639,0.090462886,-0.104467995,-0.40608093,0.37842348,-0.43963596,0.27717257,-1.1535609,0.16996811,-0.5453138,-0.080227286,-0.7190697,-0.19429411,-2.6463053,0.40254858,-0.036481608,-0.058866583,-0.30607587,-0.44918442,0.28301275,-0.6717009,-0.85892236,0.14509557,-0.01050812,0.86459833,-0.0758451,0.12728815,-0.04523586,-0.5629596,-0.004552401,0.30882794,0.0142613975,0.39671403,-0.109636,-0.5525871,-0.033490717,-0.1871272,-0.25093588,-0.10035977,-0.6325816,-0.46633303,-0.19380751,-0.5015717,-0.08439552,0.55913824,-0.42876866,0.08790453,-0.31311557,0.016639011,-0.11500976,0.34631455,-0.15266046,0.0142736705,0.26657593,-0.32010138,0.16029698,-0.13647157,0.12152959,-0.04524274,0.1694728,0.5519567,-0.3216318,0.5310932,0.37236795,0.6906852,-0.15234494,0.8012013,0.356388,-0.031221986,0.2721303,-0.23861562,-0.26994184,-0.48799333,-0.13957219,0.091044664,-0.4249401,-0.5397947,-0.06653913,-0.29519346,-0.78918874,0.77836555,-0.06352558,0.17086148,0.13505553,0.58669513,0.47616938,-0.22894841,0.024805225,-0.08497571,-0.11425085,-0.40625545,-0.35491073,-0.5746708,-0.47889173,-0.0015475967,0.8975095,-0.24179992,0.15023734,0.45047605,-0.037676256,0.17946734,0.37578297,0.23864026,-0.09316697,0.5847809,-0.10145183,-0.7124862,0.3207915,-0.2913089,-0.21540776,-0.45366678,0.23066348,0.38125613,-0.46766064,0.31212616,0.5775065,0.16448158,-0.26370108,-0.5080938,-0.048787203,0.14105177,-0.28862283,0.38848066,0.51806045,-0.7092298,0.46914247,0.335338,-0.16815744,-0.83172053,0.5691117,0.1811369,-0.12831345,-0.08346176,0.500246,0.43172243,0.0015430559,-0.329754,0.16230628,-0.3501519,0.28022736,-0.20727801,-0.047628842,0.29129812,-0.2889595,-0.41194603,-0.66262746,0.15773696,-0.5972159,-0.44349277,0.2847215,-0.008524745,0.03413159,0.20577708,0.03138031,0.3926921,-0.55223715,0.10965135,-0.25991994,-0.21014641,0.42714927,0.2830331,0.39543855,-0.53474635,0.54050213,-0.11409991,-0.088597395,-0.1969298,0.08182913,0.55317557,0.2911723,0.31469706,0.23503928,-0.233739,0.15289593,0.73270506,0.3059894,0.26595458,0.20980163,-0.16182938,0.187927,0.053333934,0.102470875,-0.08723467,-0.38634378,-0.34114438,-0.23593248,-0.036198687,0.51077783,-0.05100931,0.2875579,-0.21727018,-0.4349824,0.032495443,0.14016804,-0.011484764,-1.245151,0.21711001,0.09960823,0.7844419,0.5249741,-0.23098463,0.14130455,0.66999745,-0.18386702,0.07051236,0.2671697,-0.034251403,-0.51515007,0.6362193,-0.62770635,0.21517324,-0.059802547,-0.002204223,-0.09762411,-0.061272237,0.3251219,0.6823418,-0.08817088,0.29001227,-0.018693956,-0.18266453,-0.2227326,-0.24314499,0.08470941,-0.3803363,-0.13788487,0.8034775,0.3110117,0.44550782,-0.34146932,0.04693869,0.14453612,-0.16805117,0.24737997,0.14890546,0.27068326,-0.21791063,-0.57399994,-0.023804624,0.5896717,0.5203628,0.21686341,0.13372883,-0.5135019,0.25358784,0.10097492,0.05255309,-0.037317675,-0.6908279,-0.06690823,-0.6284988,-0.42541322,0.5272208,-0.24727002,0.03335434,0.3110629,0.14520416,-0.0987812,0.287862,0.079040416,0.66148794,0.03567398,-0.019718854,-0.115808725,0.3199448,0.14596678,-0.26187673,-0.27163073,-0.18778892,0.28886288,-0.6446887,0.47829658,0.065437496,-0.18597707,0.3155093,-0.02868742,0.08838526,0.50196093,-0.19649467,-0.058682546,0.36236078,-0.028195906,-0.17240584,-0.38706627,-0.18802188,0.2984021,0.15885304,-0.034753088,-0.24744558,-0.08493414,-0.22365604,0.22331086,0.005480273,0.37536347,0.5998771,0.33859974,-0.42831972,0.27104673,0.31112316,0.5268078,0.06561306,-0.18113305,-0.40125218,-0.6077029,-0.32349765,0.24609566,0.030574165,-0.037700772,0.20893188,-0.32862765,0.7852078,0.13298978,1.0398155,-0.036299035,-0.4690534,0.173558,0.3364149,-0.2999873,-0.33704314,-0.2143403,1.061926,0.6451355,-0.020234613,0.13162468,-0.38590318,-0.13553321,0.05441637,-0.3594363,0.026275726,-0.09208859,-0.66992986,-0.5023081,0.22637612,0.32106206,-0.057071235,-0.27586174,0.3531288,0.30342612,0.025770582,0.18222012,-0.52112174,-0.24650808,0.39492807,0.40199968,-0.12599869,0.19721292,-0.44587305,0.24041319,-0.9511141,-0.11485353,-0.46267784,0.25029364,-0.073540956,-0.29672122,0.23822089,-0.082174435,0.33916685,-0.4596276,-0.3950415,-0.27210596,0.41029721,0.070225984,-0.039262358,0.5000206,-0.20219584,0.08353474,0.032368865,0.4881302,1.117293,-0.2188644,0.055303074,0.25971198,-0.31729302,-0.59988856,0.29824993,-0.5950911,0.41780564,-0.112725824,-0.11390207,-0.63890654,0.31424564,0.43078518,0.18404074,-0.21697454,-0.5070429,-0.1277357,0.2953256,-0.32909295,-0.11217535,-0.31202915,-0.17254396,0.42839032,-0.040703706,-0.4214798,0.0410957,0.54373556,-0.19736028,-0.70004934,-0.12660839,-0.25631168,0.36502847,0.29050872,-0.1416018,-0.2443042,-0.023218004,-0.5361216,0.07869753,0.32835528,-0.4271477,-0.09173619,-0.5674738,-0.09110291,0.8418691,-0.07551206,0.38834754,-0.39025956,-0.48536193,-0.85021305,-0.28352094,0.27940074,0.12374928,0.20103164,-0.7499414,0.19286604,-0.42614946,-0.21321541,0.0793291,-0.20649758,0.34744257,0.16838853,0.5855379,-0.3337773,-0.7333019,0.21816729,0.15879753,-0.00074402854,-0.44637346,0.38173753,0.1524856,0.99542445,0.11022677,0.0503706,0.35680076,-0.8405689,-0.025858099,-0.004122001,-0.080987364,-0.7527465,0.025854541 +405,0.30118203,-0.5466114,-0.6223716,-0.15959503,-0.2136596,0.14784272,-0.32625034,-0.03915971,0.259436,-0.3898153,-0.2041363,-0.025330657,0.08365596,0.7168574,-0.19061832,-0.88016653,-0.17133999,0.2842042,-1.0814236,0.6935425,-0.3081173,0.24856287,0.33559847,0.4151021,-0.14379652,0.035273414,0.41615328,-0.14172088,-0.18913625,-0.17878236,-0.19498973,-0.23662686,-0.8489482,0.1188153,-0.20025587,-0.2790746,-0.03561036,-0.3031928,-0.03125168,-0.95831496,0.23150294,-1.0846306,0.5193068,-0.1052534,-0.14801703,-0.12771428,0.24984126,0.49500632,-0.5380429,0.074176595,0.1795689,-0.5119501,-0.4283557,-0.5652189,0.14523591,-0.6162846,-0.5051617,0.018589104,-0.73848915,-0.27356678,-0.069515124,0.2664306,-0.2978296,0.041334778,-0.2531505,0.5560077,-0.1921934,-0.20758174,0.39541626,-0.29100224,0.43593645,-0.6153168,0.012862886,-0.19624327,0.49487796,0.055724394,-0.24049926,0.3130531,0.24750434,0.49091938,0.3882185,-0.4196992,-0.1907217,-0.013334925,0.35793912,0.3726424,0.092731275,-0.6987855,-0.120552756,0.103595205,0.18766457,0.14401531,0.1244635,-0.4105134,0.0879002,-0.14076908,-0.104849994,0.5786038,0.6046647,-0.35936055,-0.3114908,0.12491962,0.76819324,0.23560505,-0.14120048,-0.07823471,-0.04334123,-0.6947098,-0.062486615,0.45477113,-0.10678199,0.7359292,-0.28110123,0.05737542,0.81935996,-0.21719736,-0.2953212,-0.062897466,-0.0934486,-0.15017007,0.05531917,-0.28695333,0.417326,-0.42520067,-0.16142319,-0.7016068,0.7526493,0.19444485,-0.8430802,0.3602631,-0.6104341,0.4071274,0.01770392,0.7193513,0.72554207,0.6070257,0.28572044,0.83122087,-0.3787959,0.12453375,0.077055715,-0.3919276,-0.052394092,-0.5069845,0.14315172,-0.3374673,0.0789536,-0.5141522,-8.597473e-05,-0.25310057,0.46753561,-0.5061224,-0.10815191,-0.12777734,0.6298597,-0.2976853,-0.033106368,0.7672028,1.0396787,1.1733685,0.20372982,1.4641422,0.50542265,-0.41802648,-0.101364404,-0.0458221,-0.713573,0.18650937,0.284167,0.2909719,0.4529165,-0.30689144,0.025326759,0.3910319,-0.62243795,0.1951658,-0.005969137,0.36526623,0.0323745,-0.092250295,-0.3840302,-0.06190728,0.039746407,-0.05982529,0.18773691,0.11746112,-0.17841959,0.72939634,0.06974552,0.9837592,-0.18545151,0.052145008,-0.015419312,0.25240955,0.30788532,0.14206704,-0.029359499,0.31603444,0.5742225,-0.068948634,-0.72939825,0.12810464,-0.397645,-0.3822306,-0.32286462,-0.24936444,0.012702187,0.008837636,-0.24434483,-0.3048023,0.20329332,-0.24900408,0.33349058,-1.9215728,-0.22436784,-0.26851586,0.2683716,-0.36353424,-0.056039672,0.056943834,-0.638276,0.32095528,0.31614593,0.4729596,-0.72735375,0.5666285,0.47305885,-0.44823977,-0.17933756,-0.7508056,-0.24926679,-0.068414815,0.5884534,0.017026743,-0.32631946,-0.11967492,0.07555705,0.7774647,-0.024775112,-0.041970376,0.7395293,0.35493755,-0.07074127,0.6244919,0.10628301,0.60792094,-0.57658154,0.00631695,0.4122404,-0.37654945,0.27435878,-0.16131759,0.09894096,0.5978499,-0.44488287,-0.8196098,-0.7102831,-0.2962378,1.3013417,-0.3661933,-0.6680357,-0.0056804814,0.34255275,0.08967137,-0.043064382,0.75626206,-0.074623756,0.37416705,-0.7154502,-0.030673578,-0.024354309,0.41680095,0.05014317,-0.027578846,-0.32988605,0.8844294,-0.10552192,0.49992085,0.32921538,0.35188577,-0.48634195,-0.6065212,0.30678305,1.1190994,0.17329247,-0.029179895,-0.07135942,-0.33684444,-0.14704873,-0.25006318,-0.22449301,0.5713234,0.9188035,-0.090503864,-0.008607651,0.3199087,-0.29265347,0.109598875,-0.10890609,-0.4357551,-0.07517638,-0.073806286,0.49959245,0.735892,-0.056817397,0.52925116,-0.4042479,0.4114686,0.078095265,-0.4869319,0.9181257,1.0679208,-0.20935495,-0.1256651,0.3213053,0.26662028,-0.56086713,0.6212803,-0.6380544,-0.5513359,0.812037,-0.18933141,-0.47359076,0.29714903,-0.24287541,0.2817159,-0.89612293,0.3905597,-0.41907966,-0.15543793,-0.6870635,-0.14726985,-2.951749,0.32378715,-0.2064979,-0.028219322,-0.49584332,-0.112809815,0.08449733,-0.37173864,-0.62154764,0.23636883,0.27849156,0.6631153,-0.045855854,0.26624337,-0.19783615,-0.12930682,-0.0750343,0.3834164,0.14398511,0.124618836,-0.22088946,-0.3252906,0.15532762,-0.1143187,-0.3503581,0.15107922,-0.6701414,-0.5034355,-0.22758032,-0.55944186,-0.40200695,0.7703031,-0.41924587,-0.030777127,-0.2179421,0.034139283,0.019093363,0.25216773,-0.006963114,0.29834154,0.28463206,-0.2135156,-0.04252633,-0.20845766,0.16116108,0.01282828,0.12573613,0.13820897,-0.26994407,0.21943349,0.3803045,0.89514464,-0.11604303,0.75136167,0.38100877,-0.014051318,0.2134005,-0.2736309,-0.52170044,-0.67227477,-0.25162736,0.012049596,-0.36947298,-0.4726027,-0.030241301,-0.3135955,-0.82565516,0.6647652,0.024592737,0.09019103,0.20462531,0.57091427,0.42433926,-0.23424001,-0.0029647846,-0.17990609,-0.17966656,-0.43572167,-0.37585476,-0.74801785,-0.44671974,-0.2275825,0.83783835,-0.096246004,-0.09228671,-0.040308278,-0.30268112,0.22637348,0.27085593,0.017216375,0.33808407,0.3903555,0.19973814,-0.7251509,0.4747622,-0.004884993,-0.15372872,-0.47296515,0.33626235,0.72865134,-0.8309763,0.39374366,0.42935157,-0.22608559,-0.055106323,-0.33181265,-0.15554178,0.039017413,-0.1737535,0.3169825,0.024542972,-0.46235904,0.50727075,0.28288063,-0.4209317,-0.93743515,0.15806253,-0.08692818,-0.42921543,0.04195505,0.3885769,-0.109148264,0.02534409,-0.545837,-0.0154179735,-0.6021024,0.115739666,0.24238272,0.0038955808,0.08513701,-0.17189366,-0.4079695,-0.8519774,0.21831791,-0.7249122,-0.2089517,0.3528591,0.17508219,-0.037445337,0.20948626,0.08943388,0.4839717,-0.23469968,0.07997111,-0.1500323,-0.27793643,0.33264473,0.60254085,0.16202994,-0.4885571,0.69287926,0.13596605,-0.2077622,-0.16829383,-0.039381977,0.45237303,0.32421604,0.44077078,0.14880009,0.07015652,0.357808,0.7441438,0.050967023,0.6776109,0.29286554,-0.23260318,0.46097314,0.020366112,0.39629507,-0.06884791,-0.35124627,0.18579824,0.13002925,0.10976824,0.4718989,0.17353421,0.46993482,0.13544875,-0.1682757,-0.053661942,0.3769599,-0.088230066,-1.343211,0.49319467,0.3274324,0.89261013,0.60163236,-0.014899393,-0.014326732,0.6486791,-0.3868327,0.030814812,0.27976528,0.025420552,-0.31628036,0.78028053,-0.5731804,0.19391344,-0.2781193,0.08676174,-0.026911953,0.14277779,0.13749366,0.97571343,-0.12798063,0.04711689,-0.24378651,0.09392587,-0.029717395,-0.44205216,0.14568047,-0.21430469,-0.75333613,0.71564704,-0.016737381,0.50772667,-0.35421702,0.06420031,0.036130387,-0.16345902,0.45792747,-0.11233238,0.008118595,0.21476448,-0.61471397,-0.08737254,0.5100935,0.009711432,0.09463217,-0.059444774,-0.22884612,-0.031540405,-0.17020868,-0.16602087,-0.13970293,-0.8487258,-0.08808506,-0.3564445,-0.4958897,0.47312403,-0.4341369,0.128288,0.28751025,-0.040670004,-0.42332065,-0.035081495,0.120785035,0.769463,0.3162099,-0.33615926,-0.28554407,0.087124385,0.21898328,-0.4430329,0.3758998,-0.23620683,-0.03399583,-0.6161158,0.6870992,-0.19933426,-0.4939233,0.27389646,-0.36399713,-0.36347055,0.675683,-0.3597568,-0.08070942,0.2661982,-0.22277623,-0.01832625,-0.27651736,-0.27271375,0.3086684,0.13825537,0.007901815,-0.08555332,0.007722477,-0.062711865,0.6411409,0.11853977,0.4345858,0.3402178,-0.046599507,-0.37117136,0.09233481,0.09426731,0.45326152,0.36881927,-0.118669085,-0.38782397,-0.6231614,-0.27009004,-0.022713104,-0.08368736,-0.00049177307,0.1364906,-0.3307945,0.9273274,0.22444604,1.2036237,0.18822443,-0.2473998,0.14191356,0.55079556,0.095487274,0.025783831,-0.54906434,0.92355293,0.43313503,-0.038912345,0.09736562,-0.54594857,-0.13143651,0.42047834,-0.351413,0.069045216,-0.09734789,-0.672113,-0.5570784,0.13933918,0.2805287,-0.15543495,-0.20718046,0.0013726801,0.17463566,0.03905948,0.48961604,-0.7163784,0.055079132,0.33368874,-0.034302913,-0.08000043,-0.012332712,-0.29373986,0.4341377,-0.71659535,0.14846377,-0.50445604,0.023568856,0.077423476,-0.20772922,0.2182076,0.20379257,0.12498126,-0.5235674,-0.48354957,-0.036081105,0.6755419,0.31969664,0.2651159,0.796187,-0.29658827,0.017105363,0.31286404,0.610295,1.4176589,-0.64204645,0.14802586,0.08958224,-0.39756978,-0.58039695,0.65446085,-0.1787806,0.03229584,-0.22451043,-0.51223546,-0.73314255,0.13368045,0.14774619,-0.059206277,0.19309461,-0.7626245,-0.2982702,0.67972344,-0.61101955,-0.22271395,-0.28216556,0.49781632,0.5257681,-0.19909944,-0.44816235,0.040831387,0.2522121,-0.42660776,-0.52413565,-0.20901231,-0.28461468,0.28956196,0.1923343,-0.2832506,-0.102954745,0.26305154,-0.81498146,0.14612062,0.14858897,-0.37548244,0.059333097,-0.031647455,-0.122592725,0.6849707,-0.33869055,-0.0888274,-0.6668089,-0.48651478,-1.0935222,-0.22420041,0.43864414,0.027845422,0.088461034,-0.74126524,-0.17993478,-0.14739406,-0.026373321,0.15649319,-0.48613977,0.30268905,0.17707258,0.55871516,-0.1656849,-0.9635811,0.2801409,0.012481585,-0.16417047,-0.47858366,0.39796874,-0.032616798,0.6303862,-0.08612466,-0.057521597,0.108083405,-0.7644132,0.05123816,-0.23048638,-0.17826231,-0.6225063,0.11456386 +406,0.53002167,-0.26943555,-0.41976786,0.0012981181,-0.110187545,0.10680325,-0.199221,0.4529423,0.33282697,-0.317603,-0.1991834,-0.09903736,0.0024756147,0.07614465,-0.052851412,-0.58201593,-0.11682598,0.20323291,-0.49646157,0.4787808,-0.41144863,0.25870568,-0.15317385,0.4725143,0.062838905,0.22396578,0.009017582,-0.070168525,-0.27992004,-0.16229725,-0.07230911,0.3342817,-0.6756006,0.111833096,-0.18964338,-0.3684757,-0.13558555,-0.64630693,-0.33654323,-0.7468357,0.25685304,-0.8558238,0.50583065,0.17291392,-0.23356368,0.5368236,-0.22718756,0.04565966,-0.2870207,0.011760795,0.1362737,-0.05932216,0.12645479,-0.30971402,-0.11249934,0.043077763,-0.5102221,0.09329207,-0.3024406,-0.09394853,-0.20008415,-0.018012019,-0.35281304,0.071038775,-0.056384426,0.4197721,-0.4017633,0.12455959,0.024102243,-0.16487822,0.24521115,-0.42325565,-0.1257698,-0.035291627,0.33269712,-0.25862777,-0.1627797,0.13542308,0.21953371,0.4369784,-0.13077137,-0.09581164,-0.38695806,0.029367503,0.027305553,0.48649868,-0.11450355,-0.552586,-0.06007584,-0.098471135,0.07543932,0.03287808,0.15420254,-0.18296,-0.15821022,-0.15909284,-0.20114954,0.34811,0.50859046,-0.26250082,-0.34979913,0.3738343,0.5723001,0.11917542,-0.007815831,-0.121426456,0.052627638,-0.47484916,-0.17549719,0.060440265,-0.26796153,0.35251486,-0.1367899,0.29944417,0.66246444,-0.20304105,0.0398583,0.17467158,0.03693531,0.06109411,-0.1829816,-0.23946428,0.25520742,-0.22513595,0.0947831,-0.14327325,0.78905004,0.13411357,-0.8378359,0.39045507,-0.5661613,0.0926621,-0.0069375494,0.477434,0.53988063,0.413218,0.39000732,0.58475053,-0.35441473,0.048554942,-0.03811719,-0.32113644,-0.071084276,0.011766452,0.009492664,-0.44960785,-0.030070726,0.008939991,-0.24584971,0.26050866,0.23040605,-0.43839914,-0.057203982,0.15811047,0.7949254,-0.25953892,-0.062040593,0.8953033,0.92515594,0.92970335,0.0625014,1.0819547,0.281103,-0.20071483,0.2087877,-0.4230037,-0.93172604,0.23517077,0.21372506,-0.22549178,0.3790067,0.07653504,-0.05069145,0.16468272,-0.25666815,0.027439026,-0.21036185,0.20413129,0.078863256,0.031744838,-0.3159756,-0.37970337,-0.2421529,0.085220896,0.14872086,0.2358481,-0.29849717,0.3524719,0.1233615,1.7548184,-0.025038637,0.08188828,-0.0349877,0.47490522,0.22646984,-0.07951694,-0.288289,0.29824096,0.22214857,0.023159714,-0.6339613,0.2923122,0.06356135,-0.42816833,-0.07962273,-0.27320033,-0.05633837,-0.12711701,-0.26181525,-0.19001484,-0.14616242,-0.36822942,0.42423835,-2.806212,-0.12806928,0.091429316,0.41586363,-0.22652024,-0.34116676,-0.20488022,-0.43276897,0.3229939,0.27805153,0.45923188,-0.79878324,0.31816167,0.45723635,-0.52151114,-0.19332677,-0.5526351,-0.08948867,0.1459509,0.2044475,-0.02829863,0.058961324,-0.017318824,0.08319863,0.40029246,0.05543306,0.090847254,0.30494925,0.516618,0.08564734,0.29177186,-0.005282824,0.47692686,-0.17159933,-0.16759099,0.31191713,-0.54930925,0.20927042,-0.16598447,0.1080481,0.40253836,-0.44523928,-0.87431496,-0.6097416,-0.08078161,1.1853887,-0.092637554,-0.32334116,0.20392288,-0.3126426,-0.27181536,-0.0816976,0.49478376,-0.17933644,-0.26292264,-0.7973533,-0.07488971,-0.14046572,0.30469343,0.046523664,0.0043459763,-0.36819407,0.6041653,-0.069581084,0.47339338,0.30025145,0.17912021,-0.27257356,-0.4913818,0.14512028,0.9218984,0.2514907,0.17410086,-0.23893632,-0.20614845,-0.20061707,0.026386399,-0.066589125,0.48607552,0.65704155,-0.11020233,0.093978055,0.29045555,0.012387202,0.08442546,-0.13287756,-0.18434502,-0.28004768,-0.085205965,0.5368173,0.7272325,-0.27812994,0.38265884,-0.0778829,0.25803006,-0.14337116,-0.36606878,0.6421366,0.8074439,-0.019092308,-0.15087058,0.48489726,0.37915972,-0.4163171,0.40735003,-0.5144507,-0.23753741,0.4059889,-0.26009744,-0.40746513,0.37658677,-0.17610262,0.049568195,-0.75074875,0.277998,-0.20086639,-0.3042291,-0.53344274,0.045344625,-3.033173,0.080529526,-0.13782163,-0.34995937,-0.16276988,-0.19576046,-0.016291006,-0.5017111,-0.59311473,0.2807835,0.122057766,0.6260516,-0.05743862,0.27296627,-0.17708723,-0.20100348,-0.4219507,0.119771,0.18685794,0.36249587,0.078032136,-0.41010654,-0.17060216,-0.11015658,-0.38153818,0.08346103,-0.51346755,-0.43190274,0.0025898183,-0.61848366,-0.24545306,0.63244027,-0.145999,0.047708366,-0.27370968,-0.070007294,-0.21879816,0.45005068,0.085181825,0.063640036,-0.013723369,-0.10884542,0.08970566,-0.24468192,0.36264497,0.081823185,0.18631674,0.41206735,-0.20283769,0.1401141,0.42671597,0.6480822,-0.017332403,0.7598978,0.324031,-0.07913264,0.2681846,-0.2914872,-0.32819945,-0.3934935,-0.2365074,0.045112655,-0.34337008,-0.43643206,-0.12855874,-0.408937,-0.7669297,0.42728755,-0.052203473,0.0060742726,0.10052199,0.3198319,0.5090036,-0.12752461,0.095061906,-0.07034631,-0.07166804,-0.43038028,-0.15133543,-0.5547933,-0.3326155,0.31173742,0.85834384,-0.18315217,0.08115453,0.09926458,-0.11895188,0.001754041,0.05092735,-0.05299072,0.24060392,0.47236717,0.07049802,-0.5221845,0.40016046,0.0011729277,-0.31283072,-0.5327404,0.18544309,0.6109035,-0.6641462,0.49939096,0.25116202,-0.09905957,0.018659115,-0.34482405,-0.1946573,-0.09256964,-0.109259024,0.21693482,0.27387297,-0.6392117,0.39770392,0.3382608,-0.12476898,-0.7943916,0.26626205,-0.019399848,-0.42251474,-0.14841872,0.3397702,0.051252488,0.073627725,-0.19439855,0.084444754,-0.3400025,0.17326942,0.059519447,-0.056007523,0.2665567,-0.14162613,-0.18017963,-0.68722546,0.07075661,-0.42533487,-0.28884602,0.27075043,0.14792845,0.19141029,0.22238642,0.061385337,0.35486886,-0.35204846,0.03659545,0.07105609,-0.05981922,0.2723776,0.32352245,0.5499604,-0.42565683,0.430465,0.024834292,-0.07111989,0.09129456,-0.034941677,0.38381606,-0.029419852,0.2048714,0.21995999,-0.26085517,0.34872577,0.6626284,0.16172273,0.41350016,0.03258518,-0.13263336,0.40564343,0.09536052,0.25189304,-0.041517,-0.4615052,0.124699384,-0.09865591,0.060624916,0.3257001,0.19297712,0.24777159,-0.06318552,-0.35076883,-0.0765798,0.40140602,-0.039524738,-1.103374,0.17662011,0.03489795,0.84721494,0.5673694,0.033850744,0.23501556,0.621879,-0.1226988,0.15754499,0.19094168,-0.046709154,-0.5989762,0.47838262,-0.6037553,0.43664852,-0.0035082102,0.0065681865,0.033263784,-0.14333321,0.29556173,0.5877825,-0.1191835,-0.004793149,-0.08369899,-0.20963216,-0.019387173,-0.47894728,0.14485711,-0.5121308,-0.12351467,0.6472627,0.437157,0.23342076,-0.11733748,0.09834341,0.02464985,-0.02461174,-0.017549993,0.15580368,0.116466336,0.11016789,-0.7222049,-0.107442774,0.5379975,-0.0408436,0.14343025,-0.13319333,-0.20141469,0.23997267,-0.24115053,-0.31701052,-0.0920241,-0.75056046,0.103986435,-0.258194,-0.3479254,0.27328327,0.1190646,0.20499936,0.21261957,0.050898645,-0.31134304,0.35730487,0.36710933,0.7956006,0.096554115,-0.095052555,-0.43198907,0.39095753,0.17722812,-0.20927882,-0.119564734,-0.08676116,0.00071753905,-0.39443606,0.40902716,0.0037224637,-0.35730955,0.041930363,-0.111306146,0.099638306,0.6383972,-0.13733636,-0.10214523,-0.13675086,-0.26932812,-0.4451036,-0.028778177,-0.08798464,0.251064,0.45902413,-0.22273782,0.015136187,-0.0049473,-0.19369109,0.55025035,0.07841745,0.49281484,0.3110833,0.15548648,-0.40254122,-0.15489134,0.070668645,0.51012766,-0.089279376,-0.08244036,-0.34408906,-0.4393838,-0.32288507,0.2427315,-0.12515415,0.22036894,0.043274768,-0.24114071,0.64861655,0.097958125,0.9087578,0.057025865,-0.18641017,0.13049948,0.29332137,0.06280555,-0.12163003,-0.4405019,0.97514117,0.35772485,-0.21905565,-0.10322069,-0.22826663,-0.21147797,0.054900903,-0.23145384,-0.027911544,-0.048771746,-0.6513654,-0.30943,0.17751524,0.18765756,0.15532123,-0.13806747,0.20946693,0.2446534,0.043672718,0.12012995,-0.4286138,-0.13362995,0.3840787,0.1385556,0.13466899,0.07341636,-0.42098612,0.29794565,-0.40663323,0.065862186,-0.23177932,0.1589409,-0.17297928,-0.2037852,0.21493293,0.15774855,0.32988584,-0.45473486,-0.40864915,-0.40588772,0.349064,0.10750851,0.19978699,0.4582546,-0.22051588,0.17529556,0.02890319,0.5880309,0.81390953,0.050392386,0.048867628,0.42124015,-0.24580106,-0.4962343,0.34764832,-0.13221973,0.083714634,-0.103503354,-0.057231877,-0.604386,0.30210185,0.20329711,0.2134343,0.14133245,-0.62251943,-0.228602,0.33120087,-0.33173102,-0.15369704,-0.39315298,-0.041827958,0.8024536,-0.19610661,-0.24125849,0.16606356,0.13239565,-0.2360471,-0.4098375,-0.20781183,-0.4299871,0.20735352,0.05231961,-0.2851219,-0.19328862,0.11368991,-0.3574853,0.09393449,0.060840562,-0.27360103,0.029037442,-0.2534391,-0.029294638,0.98051745,-0.22739083,0.25351882,-0.4495921,-0.5624357,-0.9015583,-0.25859582,0.50583583,-0.0066828807,-0.076980226,-0.7251349,-0.0126167815,-0.13231272,-0.31100208,-0.00056227355,-0.37127674,0.4205273,0.1055747,0.33336112,-0.08031697,-0.75392145,0.18796931,0.21116208,-0.34749666,-0.6858079,0.5139493,0.08853222,0.7374535,0.017921861,0.007163925,0.30785984,-0.47953245,-0.16184816,-0.26839688,-0.12865077,-0.59095705,0.15619142 +407,0.35159218,-0.04062946,-0.30652282,-0.13163343,-0.17718433,0.051708713,-0.09640332,0.3979382,0.22101974,-0.53689283,-0.14267935,-0.06517235,0.02097596,0.3224262,-0.10526514,-0.34651673,0.05099589,0.05572307,-0.30655882,0.4052987,-0.49983782,0.26073068,-0.046867974,0.2939128,0.08776267,0.13674363,0.0664363,-0.06910949,-0.08250875,-0.2073885,-0.03318084,0.11402599,-0.47547022,0.3067455,-0.07211085,-0.34668404,-0.19290183,-0.39880693,-0.43333003,-0.5359286,0.34232923,-0.84649646,0.35742933,0.05844209,-0.07199443,0.21390077,0.22070767,0.2779953,-0.07186929,-0.053248744,0.17488235,-0.13982643,-0.118473664,-0.09525363,-0.23143005,-0.4310125,-0.62658846,0.007855685,-0.45345542,-0.31757754,-0.4087047,0.09011463,-0.29068822,-0.09562259,0.028094081,0.4497856,-0.46942037,0.059725173,0.121715665,-0.11214356,0.2829175,-0.69554263,-0.21768776,-0.03981826,0.23933789,-0.25059083,-0.20696172,0.27421176,0.42464063,0.39167827,0.04429823,0.018140174,-0.3125238,-0.0755735,0.34134606,0.62052333,-0.16217092,-0.44726703,-0.10665211,-0.07535716,0.13723277,0.1778202,0.0970914,-0.47729582,-0.07332203,0.079411894,-0.19649854,0.4533796,0.50014657,-0.16040659,-0.3284478,0.33884567,0.31961024,0.10866271,-0.17865357,0.11832387,0.024072288,-0.37933546,-0.12249721,0.0014501947,-0.10885853,0.4809578,-0.15024266,0.31497318,0.63959575,-0.19255254,0.13119093,0.16736184,-0.056364004,-0.013650684,-0.29851156,0.00686016,0.081427924,-0.4410914,0.19085358,-0.1305181,0.7638871,0.12504573,-0.9172002,0.38424593,-0.5637893,0.028087698,-0.07340704,0.49260804,0.66428787,0.20953134,0.18833426,0.6689949,-0.50743645,0.019867154,-0.07810479,-0.29820845,0.030039238,-0.1697077,-0.047068037,-0.51658314,-0.14050502,0.24913138,-0.056101542,0.11567107,0.39421415,-0.5065089,-0.05618089,0.14325374,0.74745023,-0.24999008,-0.1367706,0.7941588,1.0889983,0.7395764,0.090342894,1.099106,0.09973882,-0.09865899,0.19087726,-0.22296587,-0.55611044,0.18217829,0.2937863,-0.08345906,0.087316364,0.15152411,-0.0076263295,0.2371915,-0.4398893,0.11582288,-0.044618424,0.29716572,0.18142946,-0.32717434,-0.2672428,-0.1810968,-0.0061642597,0.02213888,0.082388274,0.18339603,-0.25103363,0.2850663,0.09358527,1.453471,-0.07393862,0.14443389,0.04471228,0.5331477,0.12468395,-0.17092787,-0.0012232477,0.0694852,0.3536065,0.07774404,-0.54384255,0.06490774,-0.097807854,-0.49491426,-0.20115773,-0.3818919,-0.26347575,-0.01246578,-0.34043202,-0.092184104,-0.016452752,-0.57684064,0.51766366,-2.9921975,-0.23092307,-0.08582743,0.38398185,-0.2497438,-0.24337377,-0.10895153,-0.37171063,0.48796308,0.30005953,0.423917,-0.6822256,0.24786673,0.42375997,-0.45641333,-0.2261921,-0.55607355,-0.022110783,-0.056313813,0.2778753,0.09846199,0.015924646,0.19118944,0.028621836,0.4956929,0.036827043,0.17713822,0.28391966,0.27259797,0.008691705,0.37785882,-0.11188364,0.50644994,-0.20006345,-0.14994164,0.43042052,-0.35163435,0.116147056,-0.18199426,0.12525561,0.27444384,-0.31209803,-0.912892,-0.6761449,-0.5474273,1.0307724,-0.05428298,-0.4863846,0.40553555,-0.34812406,-0.23066308,-0.032663483,0.64465433,-0.003125851,0.1922423,-0.74115986,0.08025593,-0.20165178,0.04938662,-0.014662043,-0.019075146,-0.5473243,0.6897904,-0.11593831,0.44419533,0.34619427,0.31509095,-0.35410532,-0.3541853,0.08505003,0.9947621,0.3257443,0.14415361,-0.13621569,-0.15631786,-0.3592571,-0.31848955,0.22159702,0.556356,0.6210381,-0.014156566,0.1879239,0.24553323,0.041845363,0.010470439,-0.09937556,-0.18860728,-0.11518192,-0.04176037,0.573668,0.51727414,-0.22003031,0.61410433,-0.10280825,0.10421961,-0.27824956,-0.3892399,0.5154377,0.75633156,-0.05900485,-0.13391535,0.5897529,0.354938,-0.16719271,0.29420945,-0.5859927,-0.21013783,0.519276,-0.1424219,-0.48640063,0.059447885,-0.43219426,-0.0056996895,-0.7743739,0.3637632,-0.30269846,-0.77695316,-0.46834734,-0.19344553,-3.1526628,0.10423739,-0.23960136,-0.31164223,-0.11722629,-0.2371017,0.18290435,-0.4761605,-0.5098342,0.18937324,0.059038933,0.7361444,-0.074091695,0.09884904,-0.28090772,0.027219703,-0.22922857,0.07898802,-0.013248058,0.3871575,-0.15544176,-0.26498115,-0.0674767,-0.019982247,-0.5625018,0.059380826,-0.38002458,-0.5323696,-0.01270727,-0.39068937,-0.21127683,0.7190705,-0.5613715,-0.051227845,-0.2726606,-0.10595457,-0.17515557,0.46078518,0.13527891,0.09181296,0.14200157,0.026888648,-0.05344985,-0.21177243,0.40697977,0.12172302,0.3860321,0.5819833,-0.30776325,0.22343196,0.406743,0.55265325,-0.11660425,0.97297037,0.46419948,-0.06092038,0.24328105,-0.34664375,-0.16429259,-0.43477643,-0.36161402,0.028984942,-0.35767886,-0.64209807,-0.13102868,-0.29370946,-0.779755,0.42531878,0.005088458,0.16525151,-0.008225058,-0.02448551,0.28151062,-0.110818535,-0.14245579,-0.22633985,-0.0144149205,-0.60714555,-0.35531405,-0.5577274,-0.62846047,0.017166954,0.8941069,-0.07343507,-0.02308599,-0.025137233,-0.32076088,-0.1403944,0.07099592,0.07656283,0.045060415,0.1904947,-0.13716431,-0.6744827,0.56586486,-0.20513664,-0.13905388,-0.6253414,0.20493577,0.6433848,-0.44447166,0.4557001,0.28010982,0.096064314,-0.14820205,-0.43300635,-0.2662283,-0.20234005,-0.36024842,0.31329286,0.047272187,-0.84512126,0.425511,0.35413584,-0.2380884,-0.68018764,0.5540653,-0.005094721,0.009390895,0.062116906,0.23268461,0.2931627,-0.02913063,-0.16149117,0.34697706,-0.5601208,0.38727856,0.17120752,-0.030330699,0.5724281,-0.098910585,-0.18306321,-0.5757198,-0.0109757185,-0.4961592,-0.25722522,-0.0684652,0.27194998,0.2573079,0.45519844,0.003620354,0.35833663,-0.3011102,0.14428595,-0.041636325,-0.29972112,0.08475053,0.3374273,0.5248019,-0.4499216,0.6060916,0.0035431522,-0.10440503,-0.009723461,0.1146885,0.47560343,0.14870411,0.29503986,-0.0049594548,-0.19276756,0.16252184,0.94542706,0.2382366,0.41179234,0.028967999,-0.17763683,0.3217306,0.04417773,0.22222394,0.1833837,-0.622578,0.021624625,-0.26021582,0.2552868,0.36501738,0.18307194,0.36538866,-0.0989486,-0.279053,0.09923793,0.22470543,-0.059456248,-1.2124121,0.43620723,0.24427833,0.7767999,0.46630472,-0.05290179,0.16076909,0.6636021,-0.09112227,0.18599969,0.30046928,-0.035184003,-0.4663587,0.5544246,-0.79837203,0.5569458,-0.024391102,-0.054434583,0.09864911,0.09444279,0.36207154,0.75247014,-0.053210177,0.09344746,0.030915665,-0.29469872,0.09559874,-0.46616942,0.24563053,-0.45752007,-0.14274539,0.8066405,0.5508387,0.19640757,-0.10059774,0.05844572,0.0811611,-0.0054281903,-0.0061945734,-0.10767731,0.18672012,-0.13022086,-0.653342,-0.25084355,0.43277708,-0.16697079,0.20363949,0.1839303,-0.0030741142,0.20761058,-0.10805177,-0.16466394,0.008530407,-0.6235001,0.058114648,-0.23953074,-0.35523394,0.34199026,-0.37875605,0.25411624,0.12100427,-0.039225504,-0.10051485,0.40415654,0.23209327,0.6070964,-0.060378138,-0.05777285,-0.34395313,-0.016359907,0.21488568,-0.110569715,-0.09666577,-0.14031756,-0.12200959,-0.6671344,0.42805332,-0.08875464,-0.24673326,0.30973953,-0.14220884,0.05350596,0.47745937,-0.048150107,-0.11706508,0.29944664,-0.18147555,-0.17034248,-0.011084139,-0.16109878,0.35707793,0.24225466,-0.0717725,-0.02302539,-0.13787314,-0.19925134,0.02896208,0.025904136,0.47203547,0.27914318,0.059308566,-0.2666372,-0.19744796,0.264133,0.44728532,0.061138317,0.04594251,-0.06660744,-0.4196551,-0.34185356,0.09687578,-0.12837075,0.37059513,0.09069143,-0.24139506,0.44216144,0.030061828,1.098901,0.09242689,-0.354051,0.22852556,0.26659685,-0.021088783,-0.011836982,-0.2668849,0.85165334,0.5388434,0.06931174,-0.13693859,-0.3459412,-0.04402266,0.37074095,-0.15552743,-0.22369258,0.051333334,-0.75960404,-0.26843736,0.24911015,0.15494336,-0.09548084,-0.07021714,-0.0088393,0.19448218,-0.037988964,0.27448177,-0.59720224,-0.05766269,0.414834,0.46820074,-0.003980749,0.09611543,-0.39002594,0.38517523,-0.5599474,-0.0063768122,-0.14759047,0.16082558,-0.30805305,-0.104917526,0.2472578,0.16838191,0.4856748,-0.01719622,-0.30752033,-0.22620772,0.46011978,-0.02365586,0.16337048,0.4491703,-0.22872066,0.038346387,-0.067827515,0.31361657,1.0910562,-0.21121645,-0.007818795,0.35209215,-0.3600386,-0.56623924,0.5119168,-0.29601356,0.37145963,0.065905616,-0.26902005,-0.34017628,0.19164208,0.24594167,0.053791963,0.16376835,-0.47860608,-0.36472258,0.14970633,-0.32561734,-0.33551612,-0.35503864,0.042313144,0.6205488,-0.3123778,-0.22764063,0.08448439,0.41831955,-0.20222116,-0.5548402,0.0206254,-0.13193652,0.24540646,0.017067881,-0.35014403,-0.2616374,0.050026137,-0.32996362,0.19750334,0.17550865,-0.42835385,0.14153616,-0.18879212,-0.086273484,0.834439,-0.20107515,0.099041,-0.6560231,-0.46649557,-0.63238865,-0.46529543,0.18959545,0.33453828,-0.14171773,-0.38039902,-0.12503614,0.0039162533,0.0027143222,-0.075589426,-0.3685084,0.4447386,0.12336059,0.39436758,-0.16072853,-0.7701572,-0.04637038,0.19955625,-0.023677519,-0.59275687,0.54096496,-0.03074989,0.845028,0.11454303,-0.00944839,0.22663209,-0.41315615,-0.0074177017,-0.14053145,-0.2736029,-0.70747906,0.09781388 +408,0.41307178,-0.3016015,-0.78751546,-0.14961426,-0.27707267,0.25424647,-0.19615783,0.5745319,0.2609366,-0.73196936,-0.2489224,-0.077347815,0.05231856,0.29194286,-0.16899155,-0.52270025,0.00013493498,0.38677672,-0.47479343,0.40811595,-0.2979924,0.14563094,0.09737114,0.5436875,0.28392798,0.085639395,-0.13720815,-0.123135306,-0.17603791,-0.2855131,-0.19037716,0.3361275,-0.4080089,0.278456,-0.29467493,-0.6118714,-0.110997416,-0.41147575,-0.48384237,-0.75701886,0.16975026,-0.9870283,0.85464144,0.020508716,-0.43966952,-0.048145134,0.2647708,0.26734418,0.12782075,0.08648423,0.23414786,-0.2989342,-0.14490394,-0.26260397,-0.44911703,-0.6431742,-0.5855832,-0.093730874,-0.42822945,0.12377902,0.07636011,0.35148504,-0.29757285,-0.048814785,-0.2469893,0.35690156,-0.39507782,0.32264033,0.14207815,-0.13289745,0.2797921,-0.67326236,-0.3692402,-0.11811817,0.21719821,-0.13095525,-0.24546134,0.13600293,0.092528425,0.5524941,-0.0041288235,-0.090031564,-0.27804464,-0.00962481,0.09838635,0.62650853,-0.3136208,-0.14955966,-0.28002015,-0.037000615,0.3862296,0.23607974,0.23745406,-0.29344934,0.10358003,-0.19350497,-0.25551778,0.39803696,0.6107369,-0.20708607,-0.29048958,0.2533234,0.40570977,0.07887565,-0.3210092,0.11497489,0.06256137,-0.42070803,-0.07761068,0.048853476,-0.11335514,0.5362581,-0.114614844,0.3048127,0.39329323,-0.19242883,0.013398995,0.21184587,0.30507144,0.027401596,-0.42435697,-0.50470465,0.42711583,-0.53935605,0.010766474,-0.24934427,0.73494864,-0.04526782,-0.6280212,0.20046921,-0.56786793,-0.016209511,-0.10358432,0.48282728,0.55577475,0.39366186,-0.029262925,0.6575095,-0.13485764,0.013804778,-0.012408048,-0.014241626,-0.061385196,-0.35924363,0.23388658,-0.5791082,-0.045646995,-0.06627391,-0.050313745,0.14387709,0.64252657,-0.64708924,-0.49911204,0.23375231,0.9636949,-0.35183835,-0.110687785,0.8664349,1.1067692,0.8958187,-0.028752869,1.2021604,0.2770426,-0.24709038,-0.26107013,-0.16616607,-0.6546679,0.33896077,0.091059506,-0.55518264,0.361086,0.17095047,-0.14657168,0.47131944,-0.44126603,0.0323213,-0.36512208,-0.08207903,-0.014334996,-0.028234722,-0.5685279,-0.3152616,-0.09981284,-0.14351755,0.22883976,0.16006267,-0.447582,0.6093074,0.086069144,1.306591,-0.29416478,0.00069422275,0.09608549,0.3460668,0.06665868,-0.10161635,0.17871113,0.24698605,0.35954818,0.08321228,-0.45542097,0.017348707,-0.33284983,-0.3714287,-0.30456427,-0.16127995,-0.2468956,-0.003127632,-0.47798762,-0.32392564,-0.06020305,-0.29680023,0.26546878,-2.3447814,-0.26491967,-0.14376174,0.41482666,-0.27228543,-0.44379422,-0.3078204,-0.5017998,0.32642215,0.19285144,0.50922424,-0.5592892,0.559087,0.33559546,-0.43164656,-0.16061507,-0.80006474,-0.20093124,-0.09082994,0.15233774,0.027068308,0.011859134,0.15245833,-0.21596193,0.46033946,-0.26578006,0.14975417,0.272306,0.4884757,-0.058017895,0.27209416,0.14851505,0.6512213,-0.5483109,-0.24922371,0.42138448,-0.5753693,0.14266993,-0.12521932,0.14185886,0.57977563,-0.43169785,-0.6622257,-0.7812336,-0.24026245,1.1571702,-0.0639954,-0.5046219,0.03318261,-0.3200315,-0.41367468,-0.08077401,0.521154,-0.21267177,0.019006163,-0.81134254,-0.17921348,-0.08247938,0.17188315,-0.120665886,-0.026283868,-0.4181771,0.55607295,-0.15816681,0.4614644,0.47617027,0.33186245,-0.16174509,-0.35994014,-0.015927767,1.0349854,0.31972954,0.20119189,-0.3413159,-0.055916145,-0.39024183,0.12806807,0.07205343,0.54981226,0.60127616,-0.05395356,0.16080602,0.4624864,0.05459304,0.23144953,-0.08205556,-0.53791314,-0.33876798,0.20292914,0.54843724,0.45602885,-0.07460556,0.62570906,-0.14976856,0.55921596,-0.31062064,-0.48380914,0.20325428,1.2541689,-0.38321152,-0.48082566,0.81328326,0.5109305,-0.39107418,0.5353236,-0.80646104,-0.44920778,0.21905406,-0.083801515,-0.49727774,0.13759638,-0.20555843,0.3087834,-1.0215845,0.42108706,-0.29518715,-0.6788171,-0.6079801,-0.20930071,-1.6204447,0.30679616,-0.3185359,-0.09621834,-0.25273937,-0.3701179,0.24445917,-0.5271486,-0.41350856,0.037931174,0.16669983,0.55485535,0.01000008,0.11885438,-0.18746744,-0.3765031,-0.16296391,0.3987781,0.32283553,0.26433787,-0.21398921,-0.5029961,0.057767626,0.0630094,-0.1592737,0.115641505,-0.943927,-0.4805498,-0.005912623,-0.56839913,-0.26476875,0.70823735,-0.327095,-0.030299796,-0.305431,0.18080805,-0.051657956,0.16876818,-0.07114149,0.22691523,0.014092207,-0.20639147,0.086063124,-0.25843778,0.23040426,0.09064102,0.24780159,0.5214902,-0.14217055,0.22624065,0.44550633,0.5296424,-0.044747695,0.8520837,0.58476895,-0.13713221,0.20686038,-0.20630771,-0.3370668,-0.55836195,-0.20434071,0.17690347,-0.52935433,-0.42906857,0.012193498,-0.3821908,-0.9735767,0.714433,0.10989403,0.20293814,-0.026064435,0.4547012,0.60034555,-0.14529474,-0.13498582,-0.07757347,-0.13650203,-0.41274127,-0.5398331,-0.6738667,-0.48150158,-0.12881972,1.4868202,-0.15624276,0.35956702,0.32121944,-0.23770846,-0.044532508,0.5194058,-0.060270894,-0.20575665,0.6829532,-0.19387297,-0.6163478,0.2079304,-0.12438813,-0.18714094,-0.619824,0.35862145,0.70851165,-0.80657226,0.41556206,0.4752097,-0.030617507,-0.45152032,-0.5500222,-0.1317989,0.039970938,-0.22207838,0.55448073,0.270803,-0.35009933,0.23700239,0.2209916,-0.2040689,-0.55309874,0.44006243,-0.14024164,-0.31739685,-0.040135287,0.45766166,-0.012799243,-0.0053455927,-0.09067271,0.12196824,-0.27210233,0.43989384,0.07129781,-0.1898552,0.16510163,-0.3777006,-0.13674432,-0.79243773,0.14184205,-0.7185128,-0.3434881,0.3640896,0.04696365,0.24034637,0.40744886,0.14045806,0.3427666,-0.4433335,0.04085366,-0.27592474,-0.39809623,0.48339677,0.3086176,0.4094882,-0.4242493,0.5422459,0.08788409,-0.33772373,0.038469184,0.2326606,0.5956393,-0.011424969,0.4988831,-0.092683546,-0.160864,0.29018134,0.90738374,0.29352638,0.5054353,0.041890413,-0.1635801,-0.07359192,-0.03125496,0.14052975,-0.23633327,-0.4883997,-0.14607644,-0.3992988,0.2479112,0.466913,0.0747525,0.56916744,-0.15267597,-0.2037253,0.094322145,0.069934204,0.14214982,-1.3507805,0.1776576,0.16561586,0.85722286,0.13808517,0.0077199093,-0.089407094,0.62411654,-0.15918975,0.19722761,0.39925256,-0.068131775,-0.26723588,0.6155137,-0.6273393,0.387869,-0.13887414,0.1805296,0.0060431226,-0.15854631,0.49739423,0.8553369,-0.1320805,0.1263515,0.1282624,-0.3343245,-0.012078084,-0.31089804,0.22761138,-0.6840121,-0.22320545,0.806201,0.5943614,0.59947675,-0.20094042,-0.018324887,0.2931507,0.014124672,0.36965418,0.21629119,0.27156493,-0.050272223,-0.69772696,0.037798654,0.6072103,0.11078188,0.030964077,0.1873625,-0.31343052,0.29026666,-0.061998025,0.18964845,-0.0700606,-0.4115213,-0.12741075,-0.4540952,-0.51632625,0.4170444,-0.25646302,-0.0023975458,0.1962539,0.21580078,-0.20619595,0.30577964,0.08590194,0.8819682,0.12267947,-0.16248359,-0.37578273,0.28454545,0.25802392,-0.29152635,-0.10443934,-0.32208392,0.20537136,-0.4951252,0.38399723,-0.09537715,-0.15538044,0.105264574,-0.20504765,0.0026461494,0.47364795,0.00036268434,0.07459587,0.19448233,0.1875356,-0.524229,0.0064010173,-0.15184505,0.2684741,0.2744707,0.047546554,-0.2856975,-0.2027862,-0.14742355,0.2512455,0.03914519,0.4185636,0.60592085,0.12686133,-0.29049516,-0.07426807,0.25967914,0.6335528,-0.04400088,-0.1513045,-0.13627402,-0.5469853,-0.24898405,0.38489008,-0.17858417,0.31758365,0.18123262,0.032986462,1.0600108,0.01296404,1.1847938,0.04638807,-0.37832502,-0.003540665,0.47996387,0.086932965,-0.056473404,-0.28496498,1.1189156,0.55501,-0.030139035,-0.102879465,-0.4482486,-0.07959104,0.20616733,-0.20664203,-0.23637791,-0.078843094,-0.65609837,-0.19090398,0.31083488,0.30083275,0.19457929,-0.04065308,0.3768654,0.3230298,0.008819046,0.1916861,-0.69564635,-0.13669665,0.17510271,0.383906,-0.16487257,0.29080012,-0.43544206,0.27672827,-0.61221075,-0.031134807,-0.20173661,0.13597782,-0.08971543,-0.22910815,0.19021513,0.03768409,0.3437623,-0.63948137,-0.18642415,-0.1771097,0.47342828,0.1814682,0.029937305,0.56336707,-0.21280652,-0.050372645,0.10457484,0.54443353,1.2319192,-0.41644824,0.059908777,0.4850143,-0.47912553,-0.80825645,0.25158405,-0.44202673,0.18589222,-0.02093353,-0.33619848,-0.57492137,0.41734993,0.17166798,-0.16926081,0.06637996,-0.33902225,0.18945044,0.20607449,-0.2509043,-0.17765139,-0.2995715,0.2467679,0.29631048,-0.11000648,-0.40505576,-0.08064115,0.4650443,-0.22089891,-0.3274177,0.07300676,-0.4413302,0.20896429,0.155316,-0.3351383,-0.059514627,-0.24071027,-0.45531586,0.10965956,0.43745804,-0.29336298,0.13884343,-0.33297247,-0.079228744,0.65417594,-0.07992047,0.08914303,-0.63642603,-0.36562207,-0.72152585,-0.39171967,0.047152665,0.3269184,-0.071440876,-0.59603333,-0.03063599,-0.21837734,-0.4395094,0.0030759622,-0.34378576,0.543892,0.2202781,0.32446355,-0.21414852,-0.85779786,0.27339283,0.08663682,-0.26201132,-0.5110788,0.39106926,-0.115265556,1.0258886,0.14911303,0.16489793,0.2630957,-0.5754152,-0.053413883,-0.21605909,-0.23132975,-0.9100585,-0.3596723 +409,0.367461,-0.21981768,-0.5038935,-0.111332305,-0.14238863,0.20077865,-0.19544935,0.47295702,-0.043608896,-0.4872675,-0.1029324,-0.2506765,-0.022403877,0.32110158,-0.17540582,-0.34659493,-0.011594049,0.013662334,-0.54346824,0.4266126,-0.44326916,0.2327375,-0.023632389,0.35696134,0.10644266,0.21568385,0.022957452,-0.11434393,-0.18126613,-0.06775978,-0.20485996,0.14448309,-0.5194511,0.09574134,0.030538162,-0.16538976,-0.03920033,-0.33884355,-0.19152793,-0.63432103,0.3373241,-0.6670404,0.43056244,0.034813803,-0.33192864,0.27404925,0.20475931,0.3549022,-0.28028476,-0.06473755,0.21792142,-0.061678402,0.11290066,-0.14545903,-0.07846589,-0.41455773,-0.5321389,0.044260144,-0.47592303,-0.29978323,-0.016002767,0.16061303,-0.27922007,-0.037234895,-0.3003665,0.46119052,-0.4017784,0.010518197,0.25391552,-0.08749146,0.18486737,-0.5715264,-0.094501115,0.033321105,0.20284876,-0.2482739,-0.2340414,0.23179223,0.17204557,0.40952852,-0.21585874,-0.080896504,-0.24511315,-0.016257267,0.16292308,0.51369715,-0.19523495,-0.3972294,-0.113893226,0.013346998,0.091579325,0.017036764,0.21118815,-0.29295632,-0.25291613,0.09939063,-0.0917722,0.3135336,0.5370539,-0.20507552,-0.15783015,0.30051243,0.5508082,0.23922817,-0.14137593,0.05135901,-0.011537863,-0.5226255,-0.098955356,0.19096518,-0.17531066,0.44263062,-0.14386219,0.30288297,0.5416094,-0.21367364,0.016905967,0.084939696,-0.03385192,0.05092891,-0.13429448,-0.25211477,0.12545495,-0.36258385,0.0291265,-0.28239915,0.7199679,0.22223148,-0.7894282,0.4089378,-0.46649152,0.13774295,-0.03792332,0.53381133,0.75061774,0.42394117,0.22148259,0.7081104,-0.46049663,0.12162669,-0.101234816,-0.23528562,0.19417614,-0.20875986,-0.036674373,-0.5462449,-0.16897169,-0.06619263,-0.23581961,-0.1290126,0.23225409,-0.71000105,0.19055723,0.05298012,0.77387375,-0.26531556,-0.06587792,0.73758286,0.81365585,0.9291593,0.2331272,0.8892709,0.19273315,-0.27593547,0.20489372,-0.3129191,-0.7140667,0.26452354,0.3291529,0.47083881,0.31420258,0.097513564,-0.062136672,0.44692963,-0.41348988,0.16355298,-0.23787345,0.07554371,0.08468009,-0.12491291,-0.25276792,-0.19482599,-0.07022305,0.06717167,-0.068213105,0.25855508,-0.18005134,0.47058597,0.09425966,1.7330229,-0.06882762,0.07461745,0.09646846,0.3499726,0.07259084,-0.43764964,-0.061603583,0.33328068,0.59184074,0.0486472,-0.67765087,0.11276191,-0.03498784,-0.47086862,-0.16146661,-0.3310905,-0.0843996,-0.083746225,-0.54107744,-0.17591763,-0.007894035,-0.15178087,0.28633928,-2.93659,0.09085957,-0.06491298,0.30063048,-0.2476462,-0.3265873,-0.0060578664,-0.51382315,0.3253712,0.47316483,0.27764252,-0.6888317,0.3731474,0.24054378,-0.25590977,-0.00022776921,-0.6413133,-0.011508377,-0.06569636,0.28534365,-0.043547515,0.046951976,0.23886102,0.19254269,0.37316337,-0.16938373,0.11169119,0.055965893,0.41564742,0.11793114,0.3594993,0.09310956,0.35170257,-0.15899692,-0.10096536,0.28492278,-0.35892335,0.064273156,0.0102642495,0.13000327,0.31797445,-0.41903085,-0.6382814,-0.57406056,-0.13964488,1.0867658,-0.18564327,-0.4155825,0.26146916,-0.2798894,-0.3373122,-0.23886092,0.40660337,-0.06330566,-0.19329184,-0.80085284,0.010118812,-0.19281188,0.2504495,-0.042813636,-0.2067015,-0.38473067,0.71206325,-0.11663916,0.49419674,0.39134887,0.0573266,-0.21818991,-0.44149786,0.09008883,0.81648916,0.4522511,0.114847854,-0.16852763,-0.21206698,-0.29373276,0.10322032,0.17287797,0.47457585,0.74597394,-0.021031145,0.15075655,0.26160353,-0.117851235,0.050155062,-0.15309931,-0.2534685,-0.08571995,-0.008601157,0.62463486,0.5073669,-0.077402,0.56338084,-0.13522059,0.17414586,-0.19493799,-0.4355995,0.38961002,0.81525916,-0.06917436,-0.2639218,0.44742066,0.51808566,-0.18844433,0.2943207,-0.5151002,-0.22394064,0.5570269,-0.2672637,-0.34417427,0.29713294,-0.29735613,0.2530632,-0.7730109,0.41564313,-0.19169979,-0.547649,-0.714888,-0.13231167,-2.8350012,0.14030232,-0.29756597,-0.3414481,-0.08753727,-0.1354434,0.2635992,-0.5621025,-0.445324,0.203011,0.08001689,0.69285023,0.06929531,-0.027087457,-0.15638402,-0.20552193,-0.1729108,0.07780601,0.06448174,0.2080203,-0.0027337868,-0.37569797,-0.01537865,-0.19072972,-0.25820178,-0.015896667,-0.41821703,-0.5612315,-0.28449836,-0.49394158,-0.31578842,0.58679783,-0.36425093,0.020287514,-0.11879993,-0.03263028,0.011303683,0.4249741,0.23154637,0.107103474,-0.08727476,-0.059432086,0.086247444,-0.4198329,-0.053506553,0.067161724,0.30419743,0.3871794,0.103519715,0.28112862,0.46593297,0.5840398,0.02238344,0.5646282,0.5317341,-0.060330965,0.29441896,-0.29116902,-0.056533553,-0.40525237,-0.23124522,0.108620666,-0.4435288,-0.50431687,-0.03286253,-0.2680162,-0.72317535,0.32269913,-0.12864642,-0.027125163,-0.01048701,0.33931282,0.49300498,-0.10423223,-0.016277773,-0.18378963,-0.13368924,-0.46488407,-0.28503132,-0.6036977,-0.39795277,0.11695898,1.2009218,-0.13789102,-0.04552157,-0.0147486245,-0.21317865,0.06313405,0.14541057,-0.059649162,0.25115138,0.24879247,-0.23868078,-0.6745227,0.47409979,-0.08721169,-0.22296026,-0.56758726,0.07300392,0.4843398,-0.5908802,0.45146036,0.13547148,0.084544234,-0.13946003,-0.4871909,-0.08157874,0.11229508,-0.25193676,0.357006,0.08992003,-0.66107845,0.38021088,0.29904515,-0.24992698,-0.7087201,0.31917867,0.0055904468,-0.38247368,-0.0024502676,0.19162661,-0.18587752,0.060722537,-0.2698094,0.19835353,-0.46190643,0.037786223,0.45533744,0.004992529,-0.01841592,-0.24392039,-0.13532373,-0.56497395,0.032007955,-0.48512,-0.21298787,0.2599888,0.10743243,0.23017666,0.16460416,0.18513091,0.46368402,-0.3113567,0.11024661,-0.05191202,-0.2265308,0.20216791,0.45222276,0.34252298,-0.42317298,0.6139625,0.088051334,-0.0188262,-0.1414721,0.19894062,0.49437687,0.25131565,0.32820952,-0.07467187,-0.24285218,0.356261,1.0262887,0.22095136,0.6268417,0.031145748,-0.066335775,0.0711968,0.08463215,0.16232672,0.148226,-0.29893506,-0.01564238,0.052023195,0.15548955,0.38118833,0.03278928,0.32570016,-0.06138899,-0.2697787,0.12310977,0.19353513,-0.02957805,-1.1108493,0.3686928,0.23811728,0.7632121,0.4172987,0.028708482,0.060269114,0.53900707,-0.26180372,0.13940115,0.0519745,-0.022328673,-0.51819235,0.42640617,-0.7040742,0.40572065,-0.13704711,-0.036608703,-0.07327543,-0.13824573,0.45911068,0.770134,-0.22548018,0.077158354,0.050710548,-0.23830914,0.11735116,-0.4168972,0.09500847,-0.573964,-0.33072,0.59123045,0.40393803,0.4167847,-0.05867343,0.019905804,0.16715463,-0.117413335,0.060844418,0.026965864,0.13817693,0.060473602,-0.7097721,-0.31469238,0.47119176,-0.22527485,0.1733944,0.005198264,-0.23342076,0.11908435,-0.16920453,-0.10099704,-0.1176398,-0.59562546,0.17056532,-0.282061,-0.45316964,0.47483456,-0.19898368,0.26746044,0.34575734,0.111264326,-0.34861085,0.29289913,0.088977896,0.6673032,-0.15033881,-0.12841333,-0.48145428,0.25298294,0.21936525,-0.18567172,-0.15979847,-0.28532192,0.0854899,-0.5252124,0.41267532,-0.037381873,-0.25053385,0.08911301,-0.05856015,-0.027929919,0.6725292,-0.053463403,-0.17531122,0.07962136,-0.29600614,-0.20190257,-0.1693071,-0.11962009,0.21053505,0.17914085,-0.04013898,-0.023144472,0.046645183,-0.118555374,0.3141229,0.21730341,0.4165966,0.3673586,0.00093242526,-0.54282516,-0.018452918,0.03675862,0.4410724,0.08343046,-0.18688531,-0.43872327,-0.5389411,-0.3050437,0.26856306,-0.22405316,0.3879532,0.041553576,-0.31187242,0.79821575,-0.040128756,1.0574201,0.03172239,-0.396735,0.05970359,0.5073648,-0.004678599,-0.01703184,-0.38592407,0.70466536,0.47620448,0.0316525,0.03247955,-0.14267255,-0.0417823,0.3906893,-0.107030585,-0.17121309,-0.022083888,-0.5740545,-0.21355735,0.16777371,0.18663219,0.20563895,-0.067859426,0.06005149,0.2136075,-0.109783836,0.09241968,-0.4032943,0.0058688642,0.20804267,0.0530492,0.10280616,-0.03490566,-0.4391848,0.39993006,-0.3358887,-0.004657308,-0.23435402,0.069201365,0.10635857,-0.27433914,0.13014767,-0.068837866,0.17241293,-0.35604605,-0.192755,-0.32345596,0.59030557,0.2757822,0.3405619,0.5153291,-0.20917886,0.2066619,0.10336632,0.58930564,0.9374276,-0.2761325,-0.08641403,0.43060505,-0.31764647,-0.60711795,0.33947983,-0.15025851,0.09689628,0.010794019,-0.25063014,-0.46336097,0.24135561,0.26562348,0.0076382714,0.10459914,-0.5335681,-0.30198687,0.4071855,-0.35680917,-0.27977893,-0.26515368,0.24281837,0.56279725,-0.2908702,-0.1461203,-0.028551165,0.32576576,-0.2598425,-0.3179926,0.05081127,-0.33618298,0.22027776,0.004344233,-0.25195614,-0.17936026,0.18214951,-0.3303718,0.19847186,0.20150293,-0.34172696,-0.030933417,-0.24550638,-0.15630119,0.78326124,-0.23247531,-0.06531762,-0.6517099,-0.44980052,-0.82881814,-0.30236876,0.4537587,0.11184616,0.13472907,-0.724964,-0.05592393,0.0006737729,0.030239249,-0.14144494,-0.30816728,0.55910796,0.15613873,0.28802723,-0.029237783,-0.5909077,0.10543993,0.063435085,-0.17077859,-0.45175913,0.5028834,-0.006918065,0.79214096,0.036318116,0.11891481,0.23203048,-0.47642463,0.20414506,-0.23518935,-0.26146248,-0.69835436,0.09137197 +410,0.12351086,0.036737423,-0.65934503,-0.20137458,-0.26614955,0.06052604,-0.2385367,0.3006265,0.42949268,-0.23833747,0.093401894,-0.17785887,0.022318646,0.19143412,-0.10273246,-0.7305013,-0.070260264,0.17452994,-0.4158327,0.377187,-0.62296695,0.27256683,0.030894104,0.2759095,-0.04876808,0.25683212,-0.006197768,-0.37936598,-0.0056206607,-0.25622833,-0.11437785,0.21118878,-0.37098327,0.10185252,-0.06343695,-0.25338447,0.30102268,-0.40756032,-0.42890143,-0.66277516,0.17245711,-0.705874,0.5028023,0.13811071,-0.2734093,0.35151473,0.056189597,0.21590416,-0.14876638,0.038399577,0.3241735,-0.30728784,-0.32829756,-0.1413769,-0.40010455,-0.43403766,-0.60017765,-0.13829152,-0.48904228,-0.11657059,-0.23910911,0.14487822,-0.4327151,-0.05902515,-0.1477158,0.3801624,-0.42604813,0.060638078,0.13825865,-0.23568901,0.19382633,-0.5667451,-0.045785937,-0.009707929,0.13561194,0.011463659,-0.08521693,0.14790191,0.03503375,0.46633333,-0.026296139,-0.17078151,-0.3948555,-0.022489114,0.09608756,0.5642542,-0.21693747,-0.20988293,-0.035659935,0.13747345,0.20771718,0.4393879,-0.1673893,-0.12489448,-0.11573959,0.054627955,-0.39148638,0.41635886,0.53186196,-0.18537731,-0.061039057,0.4099919,0.2762034,0.2530312,-0.21538207,0.14107832,-0.0700819,-0.4401979,-0.20204869,0.065761045,-0.13738945,0.37768427,-0.12493414,0.26349556,0.61029196,-0.20474227,-0.035086103,-0.0038862228,-0.024601946,0.17925005,-0.1916617,-0.15603106,0.32386377,-0.49448732,0.099552974,-0.20698662,0.7378839,-0.07877243,-0.8366333,0.39386153,-0.5292838,0.18803287,-0.25494972,0.71090996,0.5865099,0.61190015,0.35075384,0.72063965,-0.41995025,0.2231509,-0.08020858,-0.4477037,0.29783282,0.13472779,0.14927895,-0.53911346,-0.09598142,0.04055569,-0.20407462,0.14165936,0.36323142,-0.49206457,0.02496274,0.21722195,0.82391137,-0.28503567,-0.08307298,0.57271767,1.1295166,0.8906693,0.08636044,1.0146782,0.30031508,-0.17580725,0.007440384,-0.3315896,-0.83783025,0.13104217,0.21691704,-0.110531315,0.23245737,0.046961136,-0.06646589,0.3261111,-0.32909387,-0.13693073,-0.14809522,0.29357812,0.025699649,-0.05507644,-0.32228413,-0.31886292,-0.034195464,-0.007274573,0.20776984,0.27175856,-0.1353722,0.3833708,0.046963204,1.4062366,0.052894752,0.110685095,0.099015035,0.4681892,0.19863454,0.038754296,-0.0053163213,0.566827,0.20532903,0.021458153,-0.6549992,0.12445732,-0.12102244,-0.33702794,-0.1341903,-0.25770977,0.00021371672,-0.05665533,-0.17820038,-0.28235516,-0.14040676,-0.36559802,0.48754957,-2.874235,-0.02410183,0.024529502,0.31320563,-0.06519335,-0.2401651,-0.03798338,-0.5036606,0.4484399,0.29367477,0.4944766,-0.57211626,0.45359465,0.5219354,-0.50779325,-0.21236922,-0.70716506,-0.16999473,-0.032705877,0.38360813,0.08871371,-0.1124681,-0.075550534,0.01448346,0.3107455,0.0023238808,0.14049523,0.24314417,0.59681696,0.067823246,0.4693375,-0.06010211,0.56917804,-0.08687697,-0.10866646,0.17704964,-0.33559173,0.27480084,-0.22670472,0.035121158,0.35432133,-0.327346,-0.70524114,-0.24080086,-0.02285018,1.2485622,-0.15566672,-0.4068109,0.19009627,-0.1301755,-0.16200177,-0.031073082,0.44412598,-0.16056453,-0.26257214,-0.71034443,-0.020369647,-0.16322783,0.2735377,0.056631945,0.062092338,-0.4195496,0.5014383,0.0144430315,0.53837746,0.32745662,0.09876716,-0.18057169,-0.4027338,-0.026525598,0.68713135,0.3219533,0.087373264,-0.23816817,-0.2198091,0.01087944,-0.108579874,-0.054880533,0.5463901,0.7604211,-0.11042493,0.11166376,0.37925705,-0.37089425,0.006991063,-0.23639956,-0.40260014,-0.07920461,0.021069458,0.46486542,0.5319168,-0.15301703,0.44799057,0.1783602,0.31213382,-0.12634383,-0.37942272,0.29970485,0.7761531,-0.119847186,-0.14870293,0.4654891,0.48625207,-0.16102548,0.45785162,-0.5102516,-0.2127959,0.4657116,-0.16032712,-0.5654068,0.31154436,-0.19828394,0.045708317,-0.87231094,0.28484765,-0.25281364,-0.5263426,-0.7261316,0.037399653,-3.166468,0.038541056,-0.39311212,-0.098587416,-0.13498984,0.059738856,0.14610846,-0.37652153,-0.5216904,0.13089816,0.377769,0.42458507,-0.16272889,0.09340505,-0.33655456,-0.065738834,-0.31880242,0.24518673,0.0407631,0.23266718,0.005920261,-0.5353493,0.01274193,-0.19655047,-0.27426606,0.04837619,-0.39089766,-0.18134955,-0.015318049,-0.5481058,-0.19350128,0.7152135,-0.37147316,-0.10508013,-0.30113506,0.061791744,0.1076153,0.30063978,0.016982645,0.14094216,-0.07555385,-0.0065092957,-0.023844024,-0.29966882,0.3433985,0.014423685,0.30262658,0.25121808,0.08178137,-0.03959585,0.61942434,0.49912515,0.025727486,0.8027515,0.48429415,-0.19634484,0.30556482,-0.30271107,-0.03825151,-0.43007877,-0.35758576,-0.16371581,-0.4114972,-0.4975212,-0.091602124,-0.3840962,-0.8414206,0.51162374,0.10407251,-0.03402024,0.052492652,0.32258686,0.4910903,0.0324549,0.16334851,-0.067581035,-0.18501766,-0.34348387,-0.09965148,-0.76297325,-0.2803857,0.21102282,0.9646602,-0.29717693,-0.06856503,0.119843744,-0.32559282,-0.1410059,0.18926157,0.1010376,0.37177625,0.35442767,0.123299845,-0.6531034,0.4471872,-0.10742529,0.059036944,-0.7542928,0.06921844,0.646619,-0.81997067,0.39232212,0.5276356,-0.02511701,-0.016158478,-0.61506397,-0.28087622,0.058298197,-0.14957549,0.32826096,0.031709153,-0.7977314,0.63868797,0.27172372,-0.25046623,-0.7391796,0.32203063,-0.086400524,-0.3725792,0.18850558,0.30035022,0.12034444,0.060954865,-0.21634053,0.16730879,-0.33850604,0.3441494,0.051592994,-0.15029518,0.22264597,-0.044656273,-0.07942803,-0.8174313,-0.11903507,-0.5073223,-0.30429077,0.3958756,0.036896594,0.26785567,0.04130314,0.09624035,0.4424937,-0.20193873,0.078236006,-0.1618428,-0.25162378,0.44926164,0.48280174,0.23344989,-0.46771988,0.55522364,0.05331077,-0.156788,0.06285393,0.008259871,0.40299314,-0.0018833982,0.31253046,0.05969588,-0.29808834,0.15583995,0.87151915,0.15703861,0.36892158,0.11198033,0.028933665,0.46563342,-0.051708996,-0.0017848952,-0.07486127,-0.4878428,-0.06454766,-0.27280927,0.22849067,0.37568134,0.17212251,0.460322,-0.14043395,-0.16836107,-0.019228382,0.24116635,0.21303265,-0.7198998,0.38073167,0.16236408,0.58893985,0.54283947,0.1623807,0.13446002,0.670119,-0.26101425,0.031271588,0.43078908,0.14993559,-0.470804,0.5017575,-0.6646541,0.36092734,-0.10099148,-0.023422748,0.22764595,0.08057524,0.39130673,0.84366196,-0.1901052,0.00085852825,-0.05270955,-0.23127587,0.03388591,-0.1747417,-0.012996427,-0.3372577,-0.28697917,0.56225145,0.31058547,0.32761285,-0.13613813,-0.023907542,0.29704595,-0.048949268,0.30389175,0.06364531,-0.05377862,-0.15211587,-0.5780312,-0.1673261,0.62002534,-0.008017495,-0.008483206,-0.06428738,-0.1660751,0.32859588,-0.30273682,-0.11323094,-0.03810316,-0.45635337,0.0064117396,-0.20938404,-0.66945326,0.5390524,-0.017538872,0.27457294,0.104027815,0.12464774,-0.17012906,0.1603463,0.15508518,0.7257196,-0.12719508,-0.21029556,-0.33634117,-0.18253164,0.16827835,-0.25204447,-0.3104872,-0.23685408,0.064835526,-0.54958475,0.40453848,-0.4726148,-0.32593796,-0.034668088,-0.24198975,-0.038708877,0.45203224,-0.2843924,-0.10353987,0.03802922,-0.24558903,-0.288555,-0.2495249,-0.27628937,0.15747033,0.026024427,-0.19660068,-0.2422246,-0.22291167,-0.1335254,0.3888208,-0.0006409841,0.15799613,0.26393154,0.14394554,-0.28771666,-0.25966164,0.13944848,0.56643075,-0.14626636,0.017734213,-0.26857144,-0.25549954,-0.30002612,0.14911675,-0.093910694,0.368633,0.068872005,-0.45059237,0.81305134,-0.030563751,0.9485888,-0.010457243,-0.33856964,0.15030381,0.548855,0.14553261,0.14902128,-0.2547523,0.95667636,0.6505944,-0.0691318,-0.16392647,-0.5541765,-0.11596105,0.34185982,-0.18433419,-0.1774433,0.006307487,-0.5411933,-0.20821932,0.3667483,0.082651615,0.12523939,-0.15551749,0.0819739,0.04063142,0.24846962,0.23080441,-0.40263417,-0.16300781,0.24486981,0.14801721,0.14737667,0.17901662,-0.4058485,0.25062272,-0.332659,0.18726993,-0.37948632,0.08691553,-0.11500012,0.02393855,0.19610044,-0.060245693,0.25742355,-0.2466491,-0.4575143,-0.019851675,0.43898663,0.19055273,0.3184202,0.6438021,-0.22349752,-0.04451722,-0.09693108,0.6605805,1.2066647,-0.20561756,-0.09321177,0.506288,-0.26956242,-0.6474144,0.18499517,-0.4225922,-0.16323607,0.03827181,-0.36180285,-0.41264132,0.24758582,0.13021311,-0.10605584,0.09527375,-0.37212276,-0.19622609,0.19269408,-0.35155082,-0.26606572,-0.33177313,0.124186814,0.8791432,-0.2983052,-0.23534767,0.036888976,0.16208646,-0.23008992,-0.5777916,0.16162685,-0.30950165,0.24333332,0.2873283,-0.40044388,0.055966623,0.08622528,-0.44524607,0.15778086,0.3968459,-0.29907745,-0.020610021,-0.2655422,-0.0077018524,0.8408227,-0.16394846,0.13364796,-0.5038465,-0.45893887,-0.71423185,-0.32198197,0.36723518,0.03635713,-0.037550908,-0.57399684,0.040664595,-0.06369226,-0.2591844,-0.103391014,-0.58366907,0.5138661,0.051941685,0.27694577,-0.35137722,-0.9091463,0.08275662,0.110405214,-0.4839905,-0.57101876,0.6324647,-0.23556812,0.8680186,0.116534874,0.04599231,0.23267868,-0.47757,0.35747197,-0.4456146,-0.3850265,-0.65215683,-0.018939788 +411,0.19224054,-0.11861815,-0.55022216,-0.03745103,-0.21068436,0.070961446,-0.31020743,0.35196728,0.24868076,-0.3055924,-0.18788838,-0.11392296,-0.0008227788,0.33659086,-0.14777595,-0.45878762,-0.027944393,0.23412447,-0.6467651,0.46928078,-0.4083532,0.20832911,-0.22381112,0.23888108,0.14586253,0.06675977,0.1366315,-0.075033605,-0.08125128,-0.106972985,0.153783,0.278759,-0.5519203,0.34212866,-0.22515717,-0.35871875,-0.052410603,-0.38093197,-0.47891364,-0.86106837,0.14531983,-0.6284699,0.5426832,-0.11426708,-0.20727138,0.34216067,0.04825057,0.23340936,-0.20614766,0.015441008,0.12633646,-0.30733538,-0.31368217,-0.12579082,-0.1289562,-0.3765438,-0.52537996,0.15917706,-0.45976332,-0.022840556,-0.30756378,0.15843575,-0.45021725,0.077651024,-0.1453229,0.46012187,-0.32433483,0.07964796,0.11195756,-0.1224089,0.08184731,-0.64395636,-0.07436329,-0.0834678,0.15014845,-0.08660397,-0.28744182,0.3554389,0.23401448,0.35676908,-0.07816216,-0.23587401,-0.18730906,-0.0015459917,0.069131054,0.48951143,-0.21870062,-0.28724873,-0.059607036,-0.030002255,0.3957434,0.031789623,-0.17639768,-0.24986112,-0.12111571,0.17016245,-0.16728815,0.23678069,0.66201,-0.1117012,-0.004043415,0.39411145,0.41240677,0.1225204,-0.089916356,0.028488897,-0.11113077,-0.43470633,-0.19449429,0.020007059,-0.10289548,0.38511327,-0.060902916,0.14412934,0.54410446,-0.16180956,-0.15377486,0.16569479,0.06591052,0.112287514,-0.1213204,-0.36321628,0.35571444,-0.53304285,0.15283361,-0.11608208,0.80648726,0.04665301,-0.709204,0.30516136,-0.41917795,0.14826441,-0.018189881,0.6962686,0.67463636,0.5165529,0.34946445,0.7563035,-0.3969695,0.06678455,0.023728974,-0.3434198,0.022084221,-0.2095798,-0.14562075,-0.3794619,0.04411233,0.18542561,-0.15988111,0.14993264,0.23143877,-0.5049023,-0.056648985,-0.0062003303,0.55414397,-0.28219992,-0.025983132,0.69835967,0.9587797,0.882318,0.11719304,1.1440634,0.18596719,-0.09416362,-0.019242518,-0.023239046,-0.79968566,0.28662544,0.1944604,-0.5883486,0.2774797,0.14568017,-0.20011686,0.34450462,-0.59716016,-0.23742557,-0.1771253,0.30898288,-0.005049616,-0.12804261,-0.27226725,-0.3282939,0.007440418,0.06476203,0.10732288,0.31683084,-0.2377497,0.1900284,0.16270982,1.2294052,-0.082247734,-0.025747176,0.27124217,0.32604477,0.13364145,-0.16663438,-0.10880429,0.110070735,0.49044815,0.08209589,-0.58061033,0.025422871,-0.14226076,-0.40895593,-0.15585268,-0.19895396,0.07494685,-0.08471978,-0.3430959,-0.16600668,-0.18848416,-0.5238247,0.5172334,-2.6610098,-0.11483997,-0.09690125,0.32250273,-0.12310476,-0.20936315,-0.24500015,-0.49891865,0.39519432,0.36167148,0.39525896,-0.49481776,0.32003665,0.26246157,-0.67769706,-0.12208405,-0.59363055,0.092516094,-0.012506014,0.3698804,0.11105826,-0.1341711,0.023168813,0.038622055,0.5455523,-0.14560714,0.08974991,0.37696266,0.30472726,-0.103816904,0.27583644,0.011976939,0.5280584,-0.3884138,-0.2852608,0.43816566,-0.3276397,0.21423852,-0.13850962,0.16702369,0.39887518,-0.58735657,-0.8471942,-0.49848232,-0.13568333,1.4208606,-0.30463868,-0.49763295,0.26210028,-0.24177054,-0.3015135,-0.0655482,0.43890443,-0.24225032,-0.10391819,-0.75825036,-0.008081645,-0.057727724,0.35286027,-0.063894846,0.040375434,-0.35554278,0.50754,-0.16887636,0.5690922,0.38138855,0.18927306,-0.2235343,-0.36400688,0.10713777,0.9382789,0.5083554,0.1511701,-0.18666671,-0.09915264,-0.21439643,-0.2184102,0.1854587,0.50680107,0.6957313,-0.06311566,0.111665316,0.29912356,0.0115129575,0.08199797,-0.19303702,-0.21576136,-0.011103552,0.18187542,0.6629111,0.56677914,-0.016117483,0.29381746,0.05028924,0.3307425,-0.187997,-0.40074623,0.4351523,1.0054443,-0.15364105,-0.28591442,0.42059946,0.49017882,-0.1441007,0.43423328,-0.55205506,-0.48827192,0.4593512,-0.19132984,-0.47227228,0.19666156,-0.29890233,0.19112349,-0.6447472,0.4172303,-0.22188683,-0.67311263,-0.41512185,-0.06092264,-2.973662,0.10012135,-0.31629926,-0.164365,-0.20274365,-0.09496001,0.23995024,-0.42283365,-0.5856006,-0.0075424146,0.16229844,0.7570189,-0.048534863,0.02720714,-0.16012917,-0.19863933,-0.34900028,0.041346613,0.24325302,0.23859406,-0.015949555,-0.39229512,-0.13960186,-0.25415024,-0.40854624,0.028718185,-0.44783545,-0.28971282,-0.25907406,-0.5094612,-0.28214633,0.5646341,-0.35207734,0.00958672,-0.23810978,0.015450355,-0.028829256,0.33381593,0.06197741,0.03857056,0.06762475,-0.16385542,0.059227124,-0.22072357,0.37671202,-0.0058117434,0.20860581,0.4848414,-0.25334427,0.07447862,0.49412674,0.6062057,-0.21240908,1.073992,0.44919264,-0.039287236,0.270899,-0.13575397,-0.3596237,-0.46814185,-0.20269334,0.09643796,-0.444063,-0.23622468,-0.031727254,-0.26021153,-0.8918482,0.6029829,-0.021394297,0.18921432,0.018708339,0.21648249,0.46470273,-0.11751792,-0.059276525,-0.07665891,-0.15909836,-0.24395737,-0.24078974,-0.7300563,-0.4684857,-0.0873788,1.1207459,-0.17464653,0.08864833,0.069196686,-0.087865174,0.15742683,0.05172602,0.07994797,0.30994463,0.38234764,-0.02501899,-0.70858157,0.37813908,-0.3170653,-0.16788045,-0.5044018,0.2237507,0.64211446,-0.58985287,0.33871612,0.43950728,0.11404957,-0.2240777,-0.63355017,-0.15712783,-0.00571901,-0.21530762,0.4580468,0.2135537,-0.9286687,0.5063917,0.41031662,-0.3177077,-0.66718864,0.5125165,-0.022775747,-0.05939088,0.07327984,0.4931836,-0.16006473,-0.025024297,-0.12284312,0.22286779,-0.22823864,0.33575994,0.14836463,-0.080003336,0.3442336,-0.27054244,-0.117840126,-0.647861,0.037209183,-0.43538198,-0.16298638,0.0799349,-0.027582468,-0.07333382,0.10466844,-0.09706274,0.46725088,-0.3597269,0.11254299,-0.21708298,-0.4256224,0.48560685,0.54460526,0.4134369,-0.22788179,0.6403358,0.055238873,-0.11971663,-0.2678912,-0.0032560527,0.50531566,-0.009121759,0.38463026,0.05328562,-0.08750273,0.24853373,0.8122193,0.221865,0.4260533,0.04013498,-0.21835285,0.08250056,0.17665364,0.28706396,-0.007384423,-0.39713073,-0.071523376,-0.3021843,0.21505743,0.39920345,0.18113545,0.4547893,-0.19023362,-0.29048878,-0.017620666,0.13970175,-0.045173895,-1.259601,0.53203577,0.08187431,0.7210116,0.35348988,0.12809214,0.048629627,0.5311662,0.0076486208,0.11162607,0.2004293,0.004736066,-0.46541113,0.5248681,-0.7920043,0.4481393,0.00050416216,0.005725532,0.16486612,0.07431585,0.4436667,0.74904096,-0.24857375,0.06919209,-0.07911341,-0.1594168,0.32195422,-0.40294698,0.23293464,-0.4582491,-0.46599513,0.720354,0.34954262,0.43485814,-0.21085197,-0.037614837,0.07961,-0.14433305,0.25915954,0.039426204,0.029265925,-0.066317104,-0.5086671,-0.13271585,0.38874355,0.06967576,0.03515459,-0.0006445721,-0.06015835,0.3073998,-0.19513825,0.044032335,-0.1325493,-0.4636152,-0.017427243,-0.33793083,-0.43033344,0.2844968,-0.35139593,0.3140279,0.26309228,0.0064214403,-0.44792494,0.12388407,0.29146636,0.6696036,-0.050012454,-0.28587282,-0.15957668,0.25291005,0.2100005,-0.2403793,-0.03130214,-0.30251706,0.03740938,-0.69684535,0.37431,-0.2443184,-0.2681455,0.39504755,-0.105904914,-0.031608462,0.5044707,-0.12978098,-0.08875239,0.06957179,-0.12458427,-0.2173939,-0.34157324,-0.16706379,0.30489075,0.16348204,0.015277773,-0.044715825,-0.024806513,-0.13408631,0.23508587,0.044168964,0.25457814,0.31539237,0.05208999,-0.31257147,0.011556052,0.043417774,0.6259966,0.17105588,-0.16094097,-0.35013634,-0.32380375,-0.19354607,0.08723253,-0.120443106,0.2901202,0.10470513,-0.26910025,0.61990964,-0.09684965,0.8680159,-0.030353349,-0.2781302,0.02799464,0.5528805,-0.05274694,-0.22871241,-0.22924712,0.8539982,0.481117,-0.118943945,0.010107737,-0.30171707,-0.10591623,0.1510809,-0.27569583,-0.23242879,0.03451424,-0.59514177,-0.29133087,0.20439203,0.3491341,-0.052704073,-0.15639308,-0.034649394,0.29789782,-0.0019224472,0.224776,-0.41142517,0.029995784,0.3694622,0.12096751,-0.051643316,0.12647992,-0.4065709,0.28008458,-0.59900415,0.003117174,-0.06708902,0.10614151,-0.121438764,-0.30420122,0.3216231,0.14425625,0.36560318,-0.2485703,-0.14389892,-0.21719536,0.35808802,0.087903604,0.082107365,0.51705784,-0.2942745,0.014024869,0.13643178,0.39393765,0.75853795,-0.25831467,0.14349931,0.25731188,-0.33717647,-0.5285256,0.3126998,-0.29024178,0.16163377,-0.1014328,-0.2722876,-0.41300607,0.22942173,0.27257574,0.08267803,0.023628533,-0.68719894,-0.053919785,0.129552,-0.22548848,-0.2197109,-0.3864408,0.17313522,0.587639,-0.27846795,-0.2994978,0.053898267,0.26148728,-0.15622492,-0.53532386,0.04724273,-0.36315495,0.13327634,-0.055752013,-0.28158897,-0.08607245,-0.0010953397,-0.4473805,0.15539303,0.12174542,-0.2915553,-0.055667922,-0.12668264,0.13049708,0.69134945,-0.28925928,0.24151555,-0.47847727,-0.47424442,-0.9110911,-0.25825405,0.37146205,0.29613602,0.042722773,-0.6695363,-0.0016220417,-0.054397285,-0.21875301,-0.0701389,-0.36907238,0.40393832,0.16306971,0.2908164,-0.20900092,-0.74339926,0.14408265,0.059038512,-0.22289339,-0.28470084,0.33800235,-0.010979906,0.65983385,0.14657578,0.12510094,0.15294372,-0.53349185,0.15329847,-0.15564738,-0.20416254,-0.56752384,0.09929624 +412,0.2608963,-0.19791207,-0.4556026,-0.1276548,-0.38019255,0.16607325,-0.3415489,0.18822905,0.15344569,-0.27149865,-0.31076917,-0.03603986,0.05908561,0.27160645,-0.08925081,-0.39283493,-0.11493141,0.13038583,-0.8012556,0.37406513,-0.49826413,0.30203944,0.3035788,0.4334465,0.29290244,0.22686434,0.27166718,-0.031688124,-0.07829219,-0.33271137,-0.24915512,0.1726968,-0.61425495,-0.008926928,-0.4159502,-0.45480648,-0.029399378,-0.53271675,-0.2950522,-0.8044396,0.17484055,-1.1437263,0.6019812,-0.23664556,-0.13613799,0.12382449,0.480526,0.3181701,-0.25779715,0.07135833,0.26701647,-0.3345507,-0.20434497,-0.23058586,-0.13783653,-0.41386822,-0.6291503,-0.005875311,-0.5588364,-0.19006893,-0.26766533,0.3083014,-0.41807276,0.21241906,-0.14805886,0.33075953,-0.4422815,0.018614369,0.12739976,-0.17763427,0.3116906,-0.6902835,-0.054960992,-0.14486142,0.53928083,-0.1322451,-0.14956924,0.37369162,0.43344972,0.34189606,0.20293193,-0.29918188,-0.29235062,-0.13748595,-0.07179684,0.5495721,-0.2690631,-0.26217192,-0.21117933,0.12751417,0.66432095,0.5777306,-0.088746965,-0.011428833,0.0344831,-0.10006712,-0.276177,0.6037587,0.5375115,-0.27763537,-0.44102737,0.27300003,0.48584646,0.27050117,-0.2490635,-0.04781846,0.037892647,-0.56469613,-0.11129417,0.19315767,-0.1149287,0.44246218,-0.08419274,0.2173632,0.7969359,-0.21510157,0.1528757,0.05683049,0.016312305,-0.18482693,-0.12456925,-0.30590272,0.24435057,-0.65463024,0.10769068,-0.2598665,0.7411274,-0.035965,-0.7125934,0.38755414,-0.50535095,0.18540628,-0.0024888557,0.6188999,0.75293285,0.42283112,0.46246925,0.85676795,-0.18712728,0.115084566,-0.072924785,-0.29412475,-0.037098657,-0.23468934,0.18477571,-0.45735887,-0.0045240694,-0.18382803,0.11583089,0.17323065,0.52344996,-0.5457775,-0.18398046,0.24735714,0.75915635,-0.26373008,0.0088688815,0.8108658,0.9962886,1.1158708,-0.03543121,1.1620985,0.30308303,-0.16600993,-0.061437402,-0.19512129,-0.64861596,0.2170602,0.3902777,-0.08027581,0.23723236,-0.07872523,-0.12574045,0.17701064,-0.6091073,-0.023297897,-0.060733464,-0.015951613,0.18467619,0.08263038,-0.41383767,-0.33432585,0.012273969,0.042070083,0.19989853,0.17512178,-0.31335458,0.53158224,0.048058152,1.2917484,-0.10741147,-0.036384407,0.12365488,0.5898203,0.2562614,-0.0265041,-0.13274828,0.29032773,0.5605028,-0.06630875,-0.6028036,0.18289651,-0.38803953,-0.1559558,-0.1807904,-0.3709922,-0.20915444,0.17087008,-0.2598231,-0.261982,-0.08529217,-0.41939712,0.37695518,-2.760166,-0.2513817,-0.16403088,0.28328282,-0.23677166,-0.13140155,-0.29248303,-0.7037765,0.341938,0.18344995,0.5494691,-0.54522485,0.45191264,0.5775451,-0.60848445,-0.20506392,-0.7394929,-0.30510396,-0.034655403,0.3949793,0.18333384,-0.19527128,-0.11387044,0.15736233,0.8098798,0.18744572,0.093309775,0.5625595,0.4798686,-0.011985724,0.6615805,-0.012638365,0.6318747,-0.37059578,-0.22329232,0.41875404,-0.27284223,0.19418256,-0.31396392,0.11362469,0.7321933,-0.4907784,-0.97190064,-0.62798446,-0.218205,1.1723777,-0.3243348,-0.4785232,0.10957755,-0.06344131,-0.067269154,0.044296686,0.68146497,-0.138977,0.042871624,-0.64765847,-0.16092728,-0.04804581,0.17687471,0.02297713,-0.035137665,-0.41464397,0.66044843,-0.12385775,0.56570905,0.13357764,0.33452216,-0.3475679,-0.27746907,0.14118703,0.98479843,0.4379361,-0.050480846,-0.28374764,-0.21635492,-0.15611836,-0.31404656,0.016014894,0.5976431,0.6607023,-0.08517671,0.32225636,0.39035383,-0.10166705,-0.011326836,-0.14989267,-0.23165417,-0.10733301,0.053110685,0.47881168,0.62593853,0.032630146,0.6363178,-0.12122929,0.30759162,0.022851706,-0.5936436,0.52134806,0.48355708,-0.25929815,-0.024999088,0.6052712,0.39247203,-0.43524244,0.53372806,-0.6718459,-0.4595646,0.66496474,-0.19379804,-0.54742426,0.24256802,-0.26023835,0.06854217,-0.5024027,0.23196027,-0.23537543,-0.42744973,-0.46838167,-0.063183956,-2.797512,0.114687406,-0.10868207,-0.07575985,-0.3339823,-0.39847568,0.29956725,-0.4501261,-0.6323705,0.16371782,0.30700678,0.6926654,-0.15777051,0.088646784,-0.2446955,-0.29613203,-0.2440356,0.13358179,0.28727862,0.28639945,-0.25373232,-0.38888672,0.13890955,-0.0817876,-0.46746454,-0.008220774,-0.58925426,-0.46469665,-0.07075507,-0.45212078,-0.26995423,0.61939293,-0.38032347,0.04941849,-0.33332154,0.1530473,-0.085223936,0.14955446,0.13858022,0.13778675,-0.022989238,-0.17579223,0.25469932,-0.3267672,0.7356985,-0.011653787,0.28792992,0.158025,0.14640346,0.21502994,0.48419943,0.4994951,-0.18738112,1.2257385,0.33846673,-0.10711365,0.06420321,-0.16444638,-0.48612946,-0.61925185,-0.26067978,0.09499172,-0.4884694,-0.3507173,0.020880163,-0.23846798,-0.8893509,0.72045124,-0.03782398,0.38065425,-0.11152918,0.38692278,0.3895626,-0.19273032,0.07787478,-0.078797765,-0.1365954,-0.4095091,-0.3049648,-0.75748444,-0.5316542,-0.21422526,1.010704,-0.31254718,0.08629947,-0.023082623,-0.28367874,0.13806216,0.10660056,0.085300006,0.2789424,0.5437594,0.029555395,-0.6700854,0.407387,-0.18071638,-0.07130408,-0.5894936,0.17355272,0.7286001,-0.7865323,0.38533565,0.4631439,-0.059890207,-0.22307007,-0.49516746,-0.14135599,-0.090797424,-0.20567301,0.42428732,0.1372725,-0.80762005,0.6144935,0.22713956,-0.41700524,-0.70558804,0.33797923,-0.045674015,-0.21076809,0.040276464,0.28540263,0.1778815,-0.09793752,-0.10333402,0.088215984,-0.33140817,0.485727,-0.102615416,-0.015576558,0.38105878,-0.24969898,-0.35812983,-0.68915,0.054432195,-0.4967744,-0.3616956,0.38521558,0.018441211,0.012563962,0.41136715,0.0010719256,0.3839392,-0.21700907,0.07442311,-0.07885039,-0.38059574,0.27088833,0.43879214,0.37357023,-0.39350373,0.6071639,0.14060245,-0.38303182,0.36416027,0.032320883,0.33959088,-0.028118243,0.42490265,-0.20626035,-0.25050634,0.47689396,0.7263049,0.11530006,0.3668141,0.028541889,-0.11300607,0.37975916,0.00069107965,0.07330277,0.0066299182,-0.61214393,-0.0030865776,-0.20172319,0.073723234,0.55107254,0.1781513,0.29832214,0.037347045,-0.085379735,-0.059653427,0.008143323,-0.16825345,-1.2074239,0.25394818,0.09871025,0.90124285,0.27066514,0.07520529,-0.12041949,0.7746612,-0.3226873,-0.06648446,0.44393554,0.24045531,-0.37682933,0.74264854,-0.6345922,0.5925306,-0.07838056,-0.060526464,0.039677925,0.11881317,0.29919845,0.96525466,-0.38061306,0.10432718,-0.00045104537,-0.19210641,0.10125561,-0.2875219,0.111025274,-0.4172635,-0.47396946,0.8681653,0.32088703,0.312803,-0.093338184,-0.07058827,-0.13388877,-0.24039257,0.23929271,0.11129558,-0.035660572,-0.109445095,-0.5893734,0.11180077,0.45403147,-0.012491705,0.15355146,-0.0671851,-0.1640265,-0.0033345628,-0.19319177,0.07060262,-0.076770484,-0.72342974,-0.13183364,-0.2519181,-0.5671225,0.3348233,-0.33476833,0.16514206,0.29111043,-0.0789568,-0.11480454,0.30755037,0.25698093,0.7165442,-0.12184609,-0.16979837,-0.28651127,0.12998281,0.28856617,-0.2736894,0.16669586,-0.3796497,0.08000101,-0.63776845,0.63463944,-0.3315196,-0.5681847,0.28522852,-0.21774448,-0.092739515,0.61100465,0.041028738,0.04274691,0.014249989,-0.15483162,-0.40388387,-0.14146875,-0.28210527,0.10213132,0.35041657,-0.0905983,-0.17982104,-0.2947299,-0.17445461,0.5099697,-0.08896933,0.5817073,0.27701157,0.22627698,-0.2085472,0.06644354,0.089719035,0.713225,0.08767193,-0.041710887,-0.6361081,-0.38564208,-0.17993112,0.38889155,-0.1060223,0.20187752,0.005340802,-0.33972007,0.9233622,-0.15145275,0.9815132,0.11182415,-0.31249005,-0.016855385,0.59049904,-0.15021849,-0.08737944,-0.4075168,0.9201228,0.55583346,0.0038605076,-0.009336216,-0.5225388,0.043115955,0.40751106,-0.37957758,-0.1708524,-0.08182528,-0.5354553,-0.44128084,0.19591966,0.17517349,0.15945272,-0.18749537,0.105965756,0.31191248,0.17887416,0.5299275,-0.59170055,-0.15587641,0.30557826,0.25755182,-0.44354525,0.21496296,-0.45634085,0.40023056,-0.5560451,0.039001953,-0.48744062,0.09068892,-0.12217416,-0.2731888,0.2264743,0.014810975,0.48978308,-0.2717527,-0.39275938,0.07446419,0.42021602,0.16244696,0.23496091,0.5514229,-0.25287586,-0.06552289,0.027878301,0.61573166,1.402362,-0.4599609,0.026630988,0.23597498,-0.387993,-0.52211535,0.46702924,-0.39883247,-0.11351176,0.020038579,-0.4139025,-0.2394558,0.30367973,0.099022545,0.099095754,0.017516447,-0.47217172,-0.051841624,0.20306432,-0.22915332,-0.22424044,-0.36698446,0.306784,0.56788176,-0.19684969,-0.27065048,0.016290251,0.45602056,-0.21781516,-0.5036075,0.013882982,-0.3185024,0.25468516,0.034304854,-0.34640315,-0.075300984,0.08423545,-0.5700307,0.02934419,0.09371416,-0.42459294,-0.07162418,-0.112067334,0.040681034,0.89120185,-0.28548428,-0.09406536,-0.4622623,-0.5020266,-0.7708954,-0.2716947,0.19646123,0.3313639,0.002528742,-0.41561127,-0.050605927,-0.19478133,-0.28425378,0.051421966,-0.48455307,0.31485456,0.0965644,0.51966304,-0.44939107,-0.7477729,0.23290597,-0.07036998,-0.17749739,-0.4827017,0.67169094,0.12296837,0.7345069,0.16898844,-0.0142961955,0.05886813,-0.30793437,0.081270315,-0.3843471,-0.14210846,-0.8910156,0.09613495 +413,0.52283764,0.09304914,-0.45039216,-0.1428425,0.0061902544,0.15326853,0.055367716,0.4001071,0.025951883,-0.42767745,-0.26590905,-0.2740839,-0.039829448,0.12117514,-0.2284996,-0.7676305,0.22124025,0.039288078,-0.22039206,0.43160072,-0.38461608,0.45941284,-0.028603157,0.18800806,-0.029279169,0.2588734,0.32693002,-0.14874192,-0.14723186,-0.26957992,-0.12378929,0.17742811,-0.36494005,0.11939098,-0.021129966,-0.22471005,0.19751692,-0.20118432,-0.4131244,-0.6678596,0.2529684,-0.72773415,0.4850647,0.17964397,-0.26222843,0.3734186,0.07089503,0.02890436,-0.1089354,0.053741872,0.08698754,-0.1861005,0.09546973,-0.24623345,-0.3887069,-0.5356091,-0.41138873,0.06969901,-0.32589054,-0.3364889,-0.38275835,0.016410789,-0.37472022,-0.06887902,-0.13145241,0.2376318,-0.37766513,-0.21493965,0.30189535,-0.26389146,0.1662631,-0.6254852,-0.26536193,-0.09623721,0.03236529,-0.12229618,-0.10688848,0.24259697,0.24479225,0.60384315,-0.19977862,-0.05619428,-0.23071384,-0.12667035,0.14906244,0.7095319,-0.32786173,-0.4291588,-0.08430875,-0.030859835,0.23491758,0.15028967,0.21120737,-0.03370973,-0.07899599,0.06525811,-0.3089001,0.35430127,0.61040086,-0.50735825,-0.14520663,0.24629763,0.25955105,0.040812254,-0.13453798,0.06580592,-0.14379962,-0.43548742,-0.15025263,-0.09803764,-0.22893405,0.63224614,-0.035835396,0.09649493,0.5716578,-0.23197684,0.36982498,0.1671777,-0.10959067,0.01928867,-0.117662326,-0.03098003,0.24654022,-0.33647877,0.117118426,-0.33779955,0.80055493,0.13636313,-0.5043753,0.3971409,-0.35168043,0.14875335,-0.025341133,0.52233535,0.476525,0.401886,0.3114397,0.53202605,-0.48405424,-0.0221182,0.060962103,-0.34864834,0.2284955,0.010346635,-0.096241646,-0.32230753,0.08169716,0.26427725,-0.052132837,0.093581885,0.35236987,-0.49560753,-0.022982163,0.19665144,0.75282305,-0.28262872,-0.10924285,0.51706636,1.0832436,0.7194323,-0.13746206,1.0331539,0.3034378,0.006538208,0.0689652,-0.17238222,-0.5861487,0.14478454,0.46540272,-0.04643506,0.15953337,0.19184774,-0.21409898,0.437327,-0.28453574,-0.108427316,-0.16909365,0.33814463,0.060838383,-0.29462376,-0.36620352,-0.05573345,-0.00974462,-0.059943233,0.08784019,0.3407998,-0.21565093,0.36318552,-0.07755222,1.2898988,0.087490164,0.14061943,0.14465874,0.45982248,0.2772866,0.04780542,0.21618897,0.29190832,0.08601699,0.026902897,-0.34042504,0.0345769,-0.22193769,-0.5772652,-0.08560289,-0.3078983,-0.042908918,-0.0697873,-0.42878953,-0.03960887,0.068947755,-0.11463677,0.37342662,-2.8161366,-0.04207351,-0.19099328,0.24183662,-0.23912835,-0.362064,-0.031908862,-0.4005998,0.38603413,0.48615137,0.42814368,-0.59583294,0.3396962,0.524424,-0.3642171,-0.108058706,-0.6050802,-0.09758532,-0.007011022,0.48652583,0.20225506,-0.05378469,0.034131695,0.12665504,0.54888153,-0.016130947,0.055216774,0.05624924,0.38966593,0.000113449496,0.30427375,0.035812013,0.5047001,-0.11283945,-0.064957805,0.38499674,-0.25731647,0.31802285,-0.051958364,0.17274718,0.1381592,-0.24049264,-0.6961548,-0.48494962,-0.3382447,1.2099564,-0.12365355,-0.3415615,0.32237884,-0.1512052,-0.29896182,-0.049741283,0.37329972,-0.13996077,0.01216472,-0.60236764,0.14310452,-0.2964955,0.100711815,-0.07669083,0.069908954,-0.38498715,0.72324306,-0.15457843,0.31949413,0.26892012,0.27525526,-0.14678532,-0.3774751,-0.22155038,0.8997147,0.47128296,0.05145209,-0.15668355,-0.025060542,-0.23573385,0.035464182,0.071216986,0.6651359,0.58988833,0.07652767,-0.03685806,0.15770459,-0.06932637,-0.039965417,-0.23030806,-0.22861648,-0.014765438,-0.07100785,0.72049916,0.6179976,-0.29464513,0.29640785,-0.1295646,0.36602995,-0.32292783,-0.4436641,0.33772194,0.7457024,-0.110935606,-0.13351418,0.6156124,0.39901802,-0.3146289,0.3051553,-0.6914013,-0.36980808,0.66923565,-0.24465333,-0.42731893,0.31965736,-0.327755,0.11501764,-0.83330804,0.3420054,-0.27610627,-0.4071356,-0.50279707,-0.18296571,-3.8768773,0.19248359,-0.34517804,-0.16976248,0.053524084,-0.020272184,0.21199326,-0.6149426,-0.27087924,0.030103523,0.17109251,0.38701564,-0.045025207,0.11162362,-0.3597883,-0.34018666,-0.10644548,0.22045945,0.06581504,0.18793978,-0.15136531,-0.34364802,0.088800825,-0.115744375,-0.2846341,0.08356464,-0.47909608,-0.70789295,-0.2057216,-0.252829,-0.11185273,0.61202174,-0.38321838,0.005302509,-0.15458873,0.011255564,-0.182805,0.14466755,0.23175506,0.28398198,-0.24032643,-0.029094942,0.10586225,-0.39696506,0.35329434,0.22986834,0.43874177,0.6759091,-0.14104427,-0.080402546,0.54131925,0.3586611,0.12552403,0.6776193,0.2896112,-0.070120215,0.4477043,-0.24670911,-0.29793578,-0.54389215,-0.37134922,-0.14361137,-0.26056248,-0.39560926,-0.23536752,-0.37238902,-0.65420705,0.3693829,-0.11056917,0.10719409,-0.14921491,0.4203452,0.53816295,-0.15742601,-0.11718012,0.197221,-0.056652103,-0.44187263,-0.17101994,-0.6525412,-0.5124887,0.18761882,0.788906,-0.016586844,0.024925685,-0.0935534,0.05582576,0.06156148,-0.05675687,0.26309472,0.064780034,0.20245294,-0.1030351,-0.66325754,0.5992435,-0.11959146,-0.23762615,-0.66128945,0.023572851,0.57832944,-0.6511469,0.4169232,0.3471213,0.09183829,0.15698878,-0.660994,-0.036474444,-0.018932767,-0.279626,0.28775498,0.13324705,-0.85992336,0.46439174,0.34896657,-0.13810486,-0.51195484,0.56722033,-0.00024900833,-0.5370342,0.059361234,0.21024793,0.10122096,-0.109875254,-0.020165265,0.34282213,-0.49537718,0.2425525,0.33853632,0.11621458,0.439473,-0.046606172,-0.20496865,-0.64435035,-0.029431501,-0.5618912,-0.2692998,0.119457215,0.089727,0.10596076,0.2237211,0.033489242,0.44405457,-0.42658302,0.21701351,-0.06619807,-0.15820242,0.5192442,0.44632214,0.3579249,-0.31668308,0.60281265,0.040019307,0.051501174,-0.0009880265,0.15108554,0.52639294,0.005628689,0.31352738,-0.084778994,-0.19794671,0.20924307,0.833126,0.18478225,0.5076625,0.20851365,-0.20413306,0.26773676,0.032057635,-0.036899503,0.07507339,-0.4035043,-0.13892956,0.08647003,0.055190135,0.44917,0.096516415,0.26141033,-0.21668513,-0.25830165,0.14925636,0.24875066,0.3046395,-0.8119655,0.051149774,0.13067529,0.7267916,0.4006843,-0.0015083621,-0.035294782,0.4675662,-0.14449285,0.087982625,0.27666438,-0.082100585,-0.47621396,0.41910288,-0.3715992,0.41586077,-0.10819044,-0.03509685,-0.031687018,-0.18216094,0.18887094,0.79602635,-0.25250018,0.05892933,0.02965949,-0.32167676,0.06464692,-0.3387019,0.11428626,-0.48061463,-0.18032427,0.58008105,0.5242532,0.24431208,-0.11769616,-0.13579425,0.02462192,-0.1427702,0.031825088,-0.05048776,0.27406222,-0.29454023,-0.44700292,-0.38911754,0.5327881,0.039279427,0.022647794,-0.067418054,-0.20502059,0.23223835,-0.04340543,-0.17932421,-0.046982016,-0.30985066,0.21836276,-0.36540386,-0.5050207,0.42003092,-0.18653938,0.2943428,0.11131024,0.02407488,-0.13425669,0.26235893,0.17474109,0.51828617,-0.15042336,-0.16548277,-0.56476337,0.10321171,0.15398814,-0.23463821,-0.1264097,-0.23504472,0.24403878,-0.53290737,0.15491822,-0.16420422,-0.14370099,-0.24697772,-0.12130164,-0.07382346,0.40531236,-0.1160452,-0.24466613,0.015765835,-0.037138455,-0.23696709,0.09487367,-0.06042615,0.20106776,-0.07046097,-0.17309317,-0.0027420605,-0.0412822,0.047400434,0.22214463,0.16741136,0.10071906,0.48186558,-0.097290024,-0.36829805,-0.13829833,0.054363307,0.50756055,-0.15322207,0.050997846,-0.17869076,-0.7377819,-0.34612963,0.073915854,-0.2365684,0.32786974,0.1862063,-0.2239274,0.8385748,0.029615168,1.1454232,-0.09580227,-0.35487562,-0.11883228,0.6862202,-0.013626237,0.0045561027,-0.3072167,0.9999071,0.47244537,-0.11186908,-0.30044883,-0.17493644,-0.089871235,0.13423388,-0.21433218,-0.15500759,-0.067460746,-0.59892356,-0.08264002,0.18411712,0.34635752,0.20790972,-0.026550118,0.112799376,0.19342484,0.12252974,0.42773706,-0.5074566,-0.37423265,0.24773873,0.21122865,-0.20145969,0.08072082,-0.2929931,0.34125632,-0.58638245,0.042419,-0.36966255,-0.049344994,-0.079512216,-0.3152213,0.20492938,0.0051617185,0.41979793,-0.5079671,-0.30482197,-0.0969937,0.2242491,0.12090328,0.24420057,0.40516073,-0.035626166,-0.095996186,0.09917917,0.6350422,1.3700638,-0.13799831,-0.10273475,0.37730893,-0.43721846,-0.75080764,0.100186124,-0.2997326,0.21917786,-0.31593454,-0.3113245,-0.4170861,0.32826197,0.30422333,-0.10594097,-0.022786062,-0.46504503,-0.35511622,0.16364853,-0.47798604,-0.33373752,-0.33739147,0.18907033,0.67863065,-0.38176996,-0.12034545,-0.18764037,0.36610496,-0.30944297,-0.6651061,0.059948526,-0.10990637,0.3081958,0.19444755,-0.34270018,0.030274995,0.067115314,-0.36145398,0.15477876,0.3208405,-0.36696237,0.017581536,-0.3205982,0.049368836,0.7609135,-0.04447078,0.008420467,-0.51201886,-0.5032179,-0.8451882,-0.6048195,0.5096625,0.14843506,-0.062897764,-0.43395123,-0.12452352,-0.047709934,0.029923836,-0.1348395,-0.109974034,0.5203181,0.12913394,0.25645128,-0.057762615,-0.73862725,0.016824134,0.087775774,-0.19401169,-0.6286403,0.38501078,-0.1356708,0.7957096,0.17322809,0.02064865,0.30034986,-0.4039817,0.14634424,-0.23992898,-0.21483094,-0.57983685,0.16145308 +414,0.45053414,-0.12968606,-0.43032527,-0.08667877,-0.34911296,-0.16173112,-0.20125102,0.4814901,0.33572602,-0.1984907,-0.1649515,-0.061711233,-0.16920608,0.30436474,-0.15201536,-0.6326561,-0.14460324,0.075104475,-0.530755,0.80364925,-0.29602942,0.18582936,-0.060223695,0.4995667,0.25838736,0.340873,0.1485113,0.15508768,0.098144054,-0.29006362,-0.022031672,0.11624777,-0.5413442,0.28029084,-0.098686844,-0.2171356,0.019309515,-0.5106959,-0.3735455,-0.7478841,0.3547417,-0.6946196,0.3023201,0.06623758,-0.21847437,0.26434073,0.2880452,0.22658531,-0.1833943,-0.20015447,0.07344675,-0.016495334,0.05966306,-0.17146266,-0.14117329,-0.2660478,-0.5837718,-0.060795236,-0.4107958,-0.28261283,-0.36213407,0.14663316,-0.3837417,-0.0085680485,-0.15117148,0.5406888,-0.4122341,0.024083292,0.2718427,-0.21578614,-0.015779153,-0.7355535,-0.18184519,-0.058749873,0.25844917,0.15892369,-0.13563989,0.3311257,-0.051819026,0.092387356,-0.028838431,-0.11850527,-0.42691377,-0.13092521,0.04057621,0.44892302,-0.05490197,-0.297556,-0.024141813,-0.048082292,0.05152754,0.26706377,0.18222241,-0.014875382,-0.1197241,-0.265109,-0.24206477,0.2354135,0.4077607,-0.22525121,-0.18429703,0.3245487,0.402383,0.30933437,-0.23388807,-0.14429443,0.025869288,-0.5074816,-0.031735834,0.061292876,-0.14268313,0.4863936,-0.052360967,0.12007984,0.63790697,0.036112085,-0.10574204,-0.025206573,0.13826783,0.08455249,-0.44535318,-0.15656357,0.36542037,-0.26781544,0.31238577,-0.113827385,0.63991326,0.21814753,-0.567969,0.24123025,-0.50856805,0.061935153,0.013851009,0.43112326,0.5624628,0.43885565,0.37571922,0.67723674,-0.15474133,0.24054801,-0.20398033,-0.07536561,0.012124668,-0.18793811,0.074822225,-0.47783384,0.10613504,-0.12683462,-0.16141622,0.11016939,0.23716147,-0.41080585,-0.108448364,0.2938111,0.8020093,-0.16291411,0.0184531,0.6869505,1.0904828,1.0612577,0.03552113,0.6795421,0.022588203,-0.29482034,0.17170674,-0.14844944,-0.6441513,0.22283249,0.27936995,0.36025858,0.15324046,0.03325823,-0.0689654,0.29359555,-0.38299665,-0.066751726,-0.011522633,0.2028603,0.38737252,-0.018643787,-0.43770614,-0.35731182,0.012705256,0.00062051415,0.061032888,0.25925973,-0.23798136,0.3382958,-0.08191682,1.4589968,0.14677875,0.057468012,0.31108359,0.6363405,0.17325175,-0.234537,0.11355134,0.3741726,0.22575676,0.1287461,-0.5480903,0.27188066,-0.25232676,-0.45761228,-0.093904875,-0.39893183,-0.12395722,-0.091774546,-0.38038716,-0.19246785,-0.13310057,-0.11146123,0.5092799,-3.1013381,0.20238006,-0.13032922,0.24090302,-0.33750066,-0.18544406,0.13150196,-0.44261464,0.41885892,0.42513016,0.4003378,-0.4236132,0.30439842,0.51089895,-0.7554088,-0.05039029,-0.46146822,-0.14551426,0.04337482,0.47109663,-0.0852815,-0.009223759,-0.111897446,0.1433952,0.49355194,0.085995354,0.23440562,0.2904365,0.3480347,-0.14105599,0.56606156,-0.022343969,0.44530687,-0.40116358,-0.104341865,0.3068864,-0.6323262,0.3997828,-0.20815761,0.107710995,0.5233994,-0.33471832,-0.94417953,-0.32145998,0.09543737,1.1835542,-0.29088742,-0.5407383,0.25254574,-0.46855286,-0.025928995,-0.07552681,0.3292746,-0.08619788,-0.05643637,-0.6094027,-0.04743822,-0.13172697,0.29612598,0.011281774,-0.19478898,-0.44609714,0.78071696,0.10228857,0.53853273,0.12766625,0.11791158,-0.38324085,-0.31520253,-0.0078078485,0.5046384,0.33682916,0.045180917,-0.22643715,-0.121915035,-0.24936573,-0.1501232,0.19970094,0.66657096,0.32130912,-0.057876855,0.08646389,0.23290634,-0.14692396,0.012892987,-0.13914002,-0.12615874,-0.29092103,0.0670385,0.5625491,0.8714115,0.0874528,0.186974,0.08247944,0.41659904,-0.14988814,-0.39125332,0.3024076,0.86326295,-0.042142376,-0.30202246,0.46643496,0.69446295,-0.19135119,0.36419368,-0.4729942,-0.3020039,0.46884397,-0.05297023,-0.45044044,0.02159667,-0.2776619,-0.095701076,-0.5143369,0.07156682,-0.3914877,-0.52521396,-0.67763203,-0.17012925,-3.0113401,0.09152123,-0.15871255,-0.36025807,-0.24409036,-0.11128535,-0.0094388025,-0.661238,-0.6146072,0.15610938,0.14457053,0.69905496,-0.18291067,0.08408585,-0.30388233,-0.26420662,-0.30001536,0.3324484,0.104284085,0.3303227,-0.06559158,-0.36673012,-0.2512473,0.024939187,-0.3583497,0.09609148,-0.5771745,-0.23364985,-0.12811422,-0.52048063,-0.13099584,0.5922473,-0.32478037,0.051259298,-0.101489045,0.03424187,-0.15154476,-0.014006806,0.12714343,0.27448303,0.08036459,-0.17749697,0.031120569,-0.1991105,0.31604797,0.08052195,0.49342838,0.24554682,0.056979913,0.12524289,0.3975524,0.53096396,0.0158521,0.93810636,0.3369627,-0.011414922,0.2163157,-0.21353601,-0.26669797,-0.4396397,-0.11429875,0.22411354,-0.28782076,-0.29179588,0.010417628,-0.3381681,-0.7250417,0.44944742,0.13538752,0.06005727,-0.009134951,0.107161194,0.46411037,-0.2774953,0.059000175,0.13848592,0.095686086,-0.529485,-0.31007472,-0.45626426,-0.22945191,-0.07799927,0.9524625,-0.27622953,-0.11591199,0.055483777,-0.3770238,-0.122707,0.34806266,-0.0015807375,0.12509996,0.4018116,0.1783482,-0.6075373,0.58317965,-0.2198381,-0.07062544,-0.38070354,0.339559,0.38550022,-0.42415038,0.64115644,0.20855975,0.09432725,-0.30467358,-0.583992,-0.23386808,-0.04769157,-0.0015547549,0.2007512,0.37339702,-0.7052722,0.28938755,-0.012263906,-0.35416052,-0.72140455,0.3534322,-0.15095527,-0.5260315,-0.09912232,0.29268727,0.15863807,0.017580131,-0.2812769,0.27625751,-0.26199827,0.063168176,0.12795405,-0.031226685,0.12821941,-0.2071687,-0.10983666,-0.620506,0.11929528,-0.16486685,-0.29860738,0.47203317,0.010904876,0.109077595,0.15832518,0.12560277,0.23569076,-0.039790887,0.13797319,-0.27098164,-0.20193535,0.5333579,0.37656072,0.66243124,-0.55214685,0.5925985,0.11825154,0.063399956,0.2851027,0.08127191,0.2612558,-0.09590566,0.5831156,-0.030769527,-0.18859749,0.13520524,0.66957045,0.15549676,0.24058072,-0.06084068,0.00062366825,0.44021574,-0.17325298,0.1731879,-0.06887158,-0.66524893,0.11974918,-0.2679925,0.095454484,0.35918677,-0.010335515,0.24923348,0.038491957,-0.21969248,0.013872738,0.1378954,-0.098468326,-1.1427876,0.26623145,0.18366157,0.9820182,0.5277207,0.08978953,-0.017332753,0.91938514,0.021610491,0.029222438,0.2502751,0.20583083,-0.44369796,0.5097075,-0.54677063,0.65834856,0.040694147,-0.12495202,0.024383346,0.025743319,0.46062824,0.6813106,-0.24275148,-0.0953873,0.033959884,-0.46570408,0.020211577,-0.33993673,-0.034241676,-0.5017569,-0.3308518,0.6162874,0.5671909,0.32157367,-0.2249128,0.04566586,0.10388625,-0.09281653,0.14778362,-0.043070305,-0.115916185,0.013663036,-0.5375121,-0.114641674,0.3794193,-0.3222622,0.13392504,-0.01739595,-0.06265852,0.31601852,-0.036467124,-0.10948441,-0.09035424,-0.61340743,0.31729957,-0.23377351,-0.38966784,0.31610766,-0.08843261,0.32339874,0.17435805,-0.050822366,-0.26238647,0.53764635,0.02856788,0.87224984,-0.2278171,-0.01635614,-0.36762294,-0.13411772,0.008043289,-0.1423722,0.08513141,-0.31587875,0.20042665,-0.4685222,0.48995924,-0.13273999,-0.31376117,-0.21971919,-0.1502241,0.01689162,0.542326,-0.05918285,-0.21202187,-0.27095833,-0.15807115,-0.27094522,-0.2351812,-0.2162847,0.29586968,0.03303061,-0.0560413,-0.051784564,-0.017683335,0.20534097,0.41826093,-0.15222734,0.3484495,0.18637513,0.14791036,-0.45963082,0.0449139,0.031830996,0.60585564,-0.12774996,-0.049331564,-0.21102862,-0.50700647,-0.50499874,0.33926442,-0.09382743,0.5760402,0.0985831,-0.17296368,0.5906893,-0.0569372,1.0334376,-0.114846684,-0.4317796,0.21509741,0.5620695,0.010817919,-0.10222585,-0.1911603,0.81496304,0.43670988,-0.017838046,-0.09493134,-0.33506665,0.10308098,-0.040076975,-0.1685416,-0.09189197,-0.0194054,-0.44613084,0.014978233,0.101607054,0.10472044,0.34764683,-0.27161875,-0.07275844,0.17107171,0.19607021,0.19287372,-0.40969738,-0.15705319,0.3445319,0.011938234,-0.01613759,0.099482596,-0.55329037,0.3600154,-0.45923004,0.25356057,-0.323195,0.26410818,-0.3549888,-0.24696703,0.2007044,-0.08503776,0.42549098,-0.55394334,-0.21551013,-0.3062885,0.5219054,0.3825984,0.26481283,0.43341216,-0.1193239,0.08909758,-0.027868101,0.64828056,0.63323313,-0.30009645,-0.06439012,0.10061572,-0.4458553,-0.6258742,0.110033415,-0.3569757,0.16021663,0.08081104,-0.08518827,-0.63896185,0.22345285,0.18457107,0.1935529,0.059354197,-0.6932916,-0.20265387,0.0953004,-0.32641742,-0.25159395,-0.43188456,0.06524919,0.5254813,-0.0630799,-0.2813423,0.10078668,0.06751921,-0.068727635,-0.4836805,0.0077841133,-0.51183504,0.24878334,0.04476893,-0.31214762,-0.452999,0.03313761,-0.4445307,0.2609601,-0.01841312,-0.26619855,-0.056189165,-0.30268982,0.11099607,0.94430333,-0.27264252,0.3456602,-0.48574802,-0.48585665,-0.8034094,-0.30602935,0.3105545,-0.001881803,-0.05593048,-0.5376684,-0.19322588,-0.2360934,-0.25892267,-0.22156107,-0.43234196,0.3637983,0.0307986,0.30401558,-0.15564471,-0.87117416,0.30934033,0.05042355,-0.08927029,-0.44767824,0.22960506,-0.08524573,0.7857154,0.031298485,0.047793508,0.10363682,-0.30447567,0.04239772,-0.1586345,-0.069353454,-0.3849474,0.22316633 +415,0.40067476,-0.24763907,-0.4825695,-0.12675264,-0.17145033,0.08948279,-0.33976677,0.28742546,0.11292575,-0.35295397,-0.120646104,-0.035399437,0.04942404,0.3595112,-0.06013912,-0.5126442,-0.14466122,0.025194513,-0.55908495,0.4305252,-0.6797813,0.40248474,0.14631376,0.3960094,0.26176673,0.37302646,0.10475485,-0.12640207,-0.058397196,-0.284813,-0.14787497,0.4189231,-0.556514,0.05284794,-0.006425917,-0.2840137,0.039692543,-0.416287,-0.21382464,-0.6856758,0.052905314,-0.96154153,0.5411667,-0.01891908,-0.22326319,-0.111735106,0.32519674,0.5001315,-0.22584508,0.25594425,0.28633097,-0.10585298,-0.097514614,-0.28863147,-0.11447805,-0.44714254,-0.4998793,-0.06336337,-0.5756298,-0.31043634,-0.15681352,0.32335874,-0.33276886,0.06406707,-0.41387525,0.3249351,-0.4581669,0.04835976,0.3153533,-0.18365166,0.6468194,-0.5440324,0.00047799837,-0.07883211,0.28855547,-0.11031341,-0.24782309,0.18645497,0.42690268,0.40898186,0.13204728,-0.12736164,-0.26523086,-0.25201803,0.19414723,0.5155108,-0.28912854,-0.30989522,-0.25652042,0.10109766,0.4963577,0.52287805,-0.098192945,-0.43380126,-0.007965894,0.093754016,-0.24473608,0.4217045,0.47765622,-0.2723388,-0.44660917,0.2611441,0.45933676,0.17571457,-0.25228268,0.0901952,0.070926435,-0.5813789,-0.03753594,0.2744971,0.11463293,0.48273996,-0.019726064,0.13447976,0.7879148,-0.12945183,0.017553095,-0.04146438,-0.19645922,-0.02847051,-0.32945338,-0.32115826,0.08188492,-0.5924323,0.14472297,-0.39391023,0.71741134,0.022812711,-0.6726965,0.38994965,-0.57729024,0.11456791,-0.073216036,0.6960341,0.5524066,0.437805,0.25885564,0.7101863,-0.36285734,0.07163739,-0.15151384,-0.33393964,0.088693395,-0.10784934,0.17969596,-0.46522164,0.089441344,-0.12791313,0.1254059,0.017887881,0.6244531,-0.557319,-0.09589512,0.06853037,0.80114204,-0.42302802,0.007510426,0.5940374,1.0171658,1.0046675,0.072983675,1.1739401,0.31541926,-0.17506881,0.015379255,-0.3362095,-0.4332088,0.3199268,0.37373325,-0.20858352,0.275667,-0.101615705,-0.10878658,0.32837456,-0.22293319,0.042591877,-0.1355264,0.13965856,0.09635381,-0.111029044,-0.5738072,-0.16738364,-0.00023629835,-0.079451695,0.10796155,0.02037154,-0.3275579,0.30784765,0.024312636,1.5343667,-0.37384096,0.07164653,0.13565162,0.34348527,0.20368683,-0.2991722,0.039744873,0.31913665,0.57463133,-0.00087342516,-0.6018144,0.3700948,-0.24146469,-0.43062672,-0.16168235,-0.36658007,0.032679413,-0.014302224,-0.4975083,-0.070260786,0.039507177,-0.28766873,0.40900165,-2.7549732,-0.26985464,-0.16638435,0.2516598,-0.30708143,-0.2770644,-0.08995237,-0.46398783,0.3366092,0.14369473,0.4574962,-0.5761505,0.55487734,0.45016223,-0.29184645,-0.24003564,-0.8649524,-0.13741906,-0.041391365,0.39059553,-0.009124451,-0.1651561,-0.17657125,0.2437693,0.75860065,-0.15599218,0.13465367,0.35303846,0.4466903,0.13451949,0.72013867,-0.018807197,0.62590784,-0.16638756,-0.17771776,0.4233096,-0.32746544,0.1452339,-0.005337681,0.09322052,0.38706803,-0.3766293,-0.96327096,-0.71477306,-0.39995548,0.9490308,-0.40088964,-0.5985212,0.13426915,-0.0815053,-0.18333934,0.05408141,0.5196219,-0.076428674,0.12080346,-0.84116745,0.08611953,-0.16293319,0.28831762,0.034468103,0.028420065,-0.33118185,0.50376886,-0.062548,0.60206044,0.33504882,0.28399017,-0.1173977,-0.4074693,0.008166526,1.0735584,0.3085452,-0.07009513,-0.23097573,-0.34755522,-0.03955927,0.0046015806,0.04564034,0.5721129,0.8309904,0.026750853,0.20473385,0.3109353,-0.12662266,0.006768661,-0.13233538,-0.3116722,0.0004392181,0.12696472,0.487233,0.4345687,-0.0039165276,0.6078321,-0.266145,0.3940153,-0.018623037,-0.55436724,0.40180996,0.7221679,-0.23019816,-0.114768334,0.6654223,0.49130657,-0.27419108,0.37604794,-0.682733,-0.13962868,0.65115684,-0.23816173,-0.35838142,0.40466383,-0.34323516,0.19242035,-0.89750785,0.41682014,-0.36485,-0.58685195,-0.3543434,-0.122527614,-3.3190994,0.10009501,-0.05933932,-0.2577064,-0.17837746,-0.18595965,0.5357784,-0.5616469,-0.5436455,0.044573266,0.27156284,0.5497455,-0.089237355,-0.0048028827,-0.3611019,-0.12633108,-0.0316348,0.2953855,0.19891103,0.24298131,-0.09761156,-0.35485378,-0.06630974,-0.016539956,-0.55063117,0.21806815,-0.65742105,-0.6630045,0.10995269,-0.46158195,-0.3554458,0.6969058,-0.35497603,-0.02391092,-0.11074285,0.12767293,-0.12756449,0.3610899,0.1821865,0.28744766,0.16714002,-0.057455964,0.13268368,-0.33810344,0.3857608,0.0654576,0.26338392,0.015421697,-0.06806021,0.23284133,0.42998257,0.45184612,-0.04970748,0.92490727,0.43109173,-0.0558374,0.13297571,-0.41594955,-0.25778988,-0.59683937,-0.36921486,-0.13045521,-0.5167397,-0.5018231,-0.018890264,-0.15218617,-0.7605174,0.6454379,-0.11300678,0.30720815,-0.20835434,0.43100294,0.38299686,-0.018684974,0.04749281,-0.092498355,-0.12127384,-0.45227104,-0.30051252,-0.6980645,-0.62435657,0.024288502,0.8966412,-0.31112686,0.1035016,-0.13833949,-0.18991415,-0.07169501,0.14357196,0.13682869,0.3966351,0.53498495,-0.07549673,-0.625385,0.30701247,-0.06041221,-0.14919004,-0.5724211,0.13687536,0.87050927,-0.73202235,0.44419298,0.32421955,0.10736925,-0.15201077,-0.6827739,-0.21866962,0.14665702,-0.38360453,0.62075406,0.0711453,-0.6787167,0.4495117,0.41857198,-0.33482006,-0.50034064,0.37281066,0.014998709,-0.32436445,0.035864633,0.40388846,0.029160371,-0.065655135,-0.14772418,0.20209225,-0.41190082,0.22248946,0.26536494,-0.15273984,0.26525804,-0.12980911,-0.2627359,-0.7297827,0.03369643,-0.64530885,-0.33259135,0.37655607,-0.060557313,0.05053795,0.29235348,-0.13608304,0.4342751,-0.28706184,0.037734687,-0.12670876,-0.3084218,0.24865206,0.5830518,0.19388258,-0.29275373,0.4050533,0.13691247,-0.26470414,0.046768103,0.031063642,0.43304858,-0.11343595,0.3785527,-0.46877295,-0.2082545,0.5148181,0.6206774,0.22191682,0.502035,0.030286644,-0.06833081,0.28764588,0.030046115,0.05319894,0.05065495,-0.28900757,-0.16756137,0.022763653,0.21807781,0.60415643,0.29907662,0.2828623,0.010048977,-0.12945545,0.14307404,0.1406565,-0.10778255,-1.020848,0.60940784,0.25559947,0.6189884,0.38923502,0.1530435,-0.09346785,0.57317245,-0.4283648,0.07514287,0.42539334,0.1897875,-0.50738436,0.8355544,-0.72978956,0.3966492,-0.1680025,0.09677714,0.118694425,0.060542516,0.49879768,1.0597274,-0.17854837,0.105144314,-0.0032000926,-0.06811552,0.04119673,-0.28558406,0.029009882,-0.36464566,-0.42216334,0.8153983,0.4344468,0.37347198,-0.16766138,-0.018871699,0.15360324,-0.22217028,0.28716272,-0.023940995,0.051289413,0.08173934,-0.511912,-0.24259678,0.54397017,-0.01845421,0.07980677,-0.048795186,-0.24361347,0.06526808,-0.07715116,0.03829405,0.046418216,-0.47943214,-0.1124668,-0.46428564,-0.53646916,0.25207847,-0.4562067,0.055645872,0.08494748,-0.055512194,-0.11709361,0.22543919,0.1795437,0.7855526,0.04682111,-0.29328915,-0.38362813,-0.033883955,0.20930798,-0.27373645,-0.12900257,-0.3167434,0.04835248,-0.7627203,0.45653984,-0.12880194,-0.5572124,0.27510387,-0.18259047,-0.07284207,0.54512423,-0.12535672,-0.098471396,0.17488894,-0.15684868,-0.36676416,-0.13834454,-0.13679962,0.16407487,0.23751982,-0.016655479,0.017260972,-0.27829227,-0.15110986,0.42630836,0.15770398,0.5451439,0.3557975,0.18216573,-0.15718332,0.029443962,0.18333437,0.4869786,0.1796821,0.13160925,-0.38303423,-0.4610502,-0.2597062,0.21164958,-0.11970315,0.34631944,-0.029020848,-0.4089341,1.1367255,-0.076571174,1.1289918,-0.050423894,-0.35800576,-0.039422866,0.43650573,-0.12549141,-0.06803949,-0.39863458,0.8795174,0.4950905,-0.07084466,-0.05160751,-0.46970218,-0.29379392,0.2139121,-0.30710435,-0.057399597,-0.16090563,-0.6060613,-0.3745083,0.19480984,0.1594726,0.10412911,0.0295614,0.044337843,0.15343942,-0.00049486116,0.38614416,-0.5496907,-0.01416422,0.041956007,0.31677118,-0.17624311,0.13767968,-0.51738083,0.36799923,-0.57023066,0.19689748,-0.43230423,0.11501299,-0.0050104004,-0.2886582,0.16284433,-0.2987902,0.1667349,-0.24411058,-0.25440755,-0.027151287,0.5329207,0.07182978,0.1525656,0.8398266,-0.1980999,0.17550626,0.15255037,0.577199,1.4985182,-0.47550353,0.069135204,0.29079586,-0.40988997,-0.6267465,0.3517316,-0.3172956,-0.075416386,0.15862629,-0.5871583,-0.2992681,0.22252993,0.078166686,0.097086586,-0.06204686,-0.3746605,-0.13725884,0.32366678,-0.30832013,-0.28188446,-0.28946072,0.46509784,0.66467243,-0.322948,-0.42129496,-0.05297963,0.36186934,-0.4475154,-0.3981216,0.024660388,-0.10973121,0.38760298,0.14869633,-0.26925704,0.010892391,0.08231931,-0.3997225,-0.02620847,0.2790888,-0.3751295,0.10838636,-0.11535998,-0.14480567,0.82885486,-0.2527258,-0.45757246,-0.7278164,-0.4271378,-0.8950273,-0.5173907,0.2377034,0.2529591,0.059563525,-0.33493486,0.0697245,-0.11062238,-0.082648255,0.009654446,-0.52497476,0.40886313,0.09242842,0.58924323,-0.34829378,-0.80548227,0.20946144,0.19658235,-0.14488818,-0.64640385,0.79585457,-0.11488483,0.6974786,0.10905355,0.053163,0.05131026,-0.4677827,0.048674114,-0.26714423,-0.1999005,-1.1060573,-0.054313485 +416,0.33530164,-0.3668265,-0.560308,-0.0716576,-0.008330777,-0.035952155,-0.14190225,0.25662723,0.091609545,-0.52545446,-0.14971864,0.013052541,-0.044977665,0.38672987,-0.18467422,-0.55474573,-0.0748446,0.06941301,-0.40005437,0.77188486,-0.22754896,-0.019816542,-0.07141036,0.38745716,-0.015546153,0.21334712,0.42423794,-0.04514508,0.035072286,-0.14246412,0.04759693,-0.011636019,-0.63631743,0.31475073,0.0043343254,-0.32681143,0.11591091,-0.25312954,-0.32287517,-0.6195701,0.20233311,-0.8916807,0.48212886,0.09060731,-0.23665337,0.10917834,-0.07319447,0.29573122,-0.37664673,0.079117246,0.15776233,-0.1232101,-0.052071106,-0.17836785,0.17838643,-0.46848997,-0.43404052,-0.056769982,-0.33501792,-0.18801318,-0.15504967,0.15459968,-0.4063516,-0.11239711,-0.08459435,0.5436594,-0.5631226,-0.24123399,0.13219605,-0.3328179,0.48743233,-0.7378134,-0.122979976,-0.1804939,0.07696127,-0.2323528,-0.14541806,0.18144763,0.11752007,0.4913186,0.13129263,-0.08081331,-0.26528534,-0.04979269,0.29545656,0.43468747,-0.17032088,-0.6132651,-0.08723098,0.040477604,0.04758993,0.10240799,0.0018089911,-0.4297255,-0.11828113,0.19454534,-0.056055408,0.2055927,0.5338325,-0.29747894,-0.263696,0.30740777,0.52702415,0.027178338,-0.11370199,-0.11799207,0.022735955,-0.40628967,-0.24509054,0.09219226,-0.26703405,0.81993407,-0.13014312,0.33148944,0.7009208,-0.13737157,0.10902294,0.027450735,-0.055159543,-0.2566144,-0.313951,-0.2733886,0.41540432,-0.3416817,0.22297625,-0.27582154,0.6301109,0.103250034,-0.78950644,0.351805,-0.39627144,0.07563854,-0.29268923,0.65262383,0.5699473,0.23322432,0.19317158,0.851235,-0.59833217,0.021960557,-0.0051347166,-0.42417148,0.16136354,-0.04914118,-0.2382242,-0.52505416,-0.039663,0.118500926,0.039282184,-0.13360593,0.05551998,-0.5676088,0.001462996,0.20969616,0.71460444,-0.24805768,0.09954699,0.40844956,1.1262897,0.7791068,0.055710193,1.3884562,0.06446918,-0.22901022,0.10050406,0.041302115,-0.7632976,0.15166914,0.57201004,0.61386245,0.13898145,0.2141313,-0.13505018,0.51259416,-0.5517406,0.16862373,-0.26227683,0.48807546,0.029812893,-0.24622309,-0.48568952,0.052122515,-0.08711324,0.15449785,-0.15572475,0.15750816,-0.17452134,0.17303473,0.09212359,1.5791229,-0.28948715,0.24717538,0.073879,0.45349443,0.095689975,0.032699954,0.21253587,0.24678992,0.546856,0.22467737,-0.5511747,0.06598896,-0.1505236,-0.6075904,-0.17317384,-0.1993616,0.09218589,0.14904934,-0.4805878,-0.104643546,0.0144417705,-0.16668738,0.37135926,-2.7672796,-0.080187924,-0.31544286,0.30938128,-0.43360844,-0.23183538,-0.05406214,-0.27264696,0.5625208,0.55245376,0.5549324,-0.78585356,0.3261482,0.4128643,-0.34142664,-0.017468056,-0.6033659,-0.08097363,-0.13262963,0.5753611,0.21951592,-0.2920236,-0.03823096,0.1400752,0.43813226,0.06708279,0.044163574,0.1662366,0.09745773,-0.0030768712,0.4021354,0.02334652,0.5258111,-0.14918698,-0.109270655,0.295424,-0.11690325,0.2671028,-0.17732131,0.22130519,0.29593456,-0.24485652,-0.9591756,-0.85910916,-0.27388605,1.2413636,-0.25722829,-0.68196297,0.3415368,-0.09098274,-0.2448529,-0.09158663,0.2443444,-0.06710341,0.12987006,-0.93868166,0.22159147,-0.17194617,0.27419794,0.08101461,-0.19538528,-0.6959195,0.7752116,-0.04650423,0.53440666,0.7106995,0.21495783,0.048275203,-0.4011704,-0.046355028,1.0505432,0.48614255,0.009536505,0.0021730985,-0.091790594,-0.16213651,-0.1593163,0.26967648,0.586633,0.73827815,-0.041615974,0.094251156,0.22259027,-0.09679335,-0.0889692,-0.03992934,-0.29819787,-0.081953295,0.18349992,0.6132355,0.75342655,-0.22698373,0.3019797,-0.11512076,0.23427713,0.00936084,-0.42033246,0.6341673,0.7442443,-0.06418134,-0.16235982,0.60953397,0.45749107,-0.27075496,0.3965609,-0.7485876,-0.21910618,0.39600122,-0.01849381,-0.38383412,0.035135064,-0.5370106,0.29974985,-0.9724191,0.41422763,-0.393525,-0.42465994,-0.75384694,-0.4154749,-3.524975,0.12521727,-0.4845117,-0.21497114,-0.16095354,-0.18861187,0.4520432,-0.82877135,-0.41108298,0.3093131,0.08463049,0.43314,0.021799406,0.08657289,-0.26085553,0.06427891,-0.014548525,0.23052041,0.1449772,0.041873503,0.07116721,-0.49756444,-0.05820999,0.08636012,-0.42764565,0.1678945,-0.45550263,-0.41288486,-0.2597873,-0.38098314,-0.2514175,0.70923567,-0.2658334,-0.09841463,-0.14791004,0.05575956,-0.32086167,0.3459619,0.12102006,0.13734852,-0.036965366,0.13438685,-0.060264233,-0.2938974,0.07469636,0.04185394,0.29138052,0.22054088,-0.45685053,0.030504083,0.4685932,0.4134234,-0.23136972,0.69465643,0.8925125,-0.08493057,0.2249163,-0.11000057,-0.24515676,-0.60866165,-0.65770394,-0.08432913,-0.4241921,-0.5103736,0.09157578,-0.24092735,-0.8086366,0.46596718,0.015496075,0.09150365,0.12696548,-0.013812979,0.42354688,-0.22338152,-0.16211613,-0.0061544105,-0.11712861,-0.7231057,-0.3962046,-0.63050634,-0.48123083,-0.09384332,1.0343517,-0.14102037,-0.13332637,0.17446828,-0.29469594,0.03525974,0.2642242,-0.026326546,0.04792896,0.42157486,0.058626276,-0.7266709,0.5986369,0.06352201,-0.12853692,-0.7786005,0.1799928,0.51258683,-0.606327,0.4093791,0.29868862,0.035207387,-0.2066329,-0.48692688,-0.38337883,-0.14489795,-0.14057447,0.39320433,0.12937461,-0.6458619,0.37469888,0.28391334,-0.07787448,-0.596419,0.61621124,-0.07383811,-0.13945974,0.008238246,0.19988638,-0.03719804,-0.00024219106,-0.23072372,0.25374132,-0.44305018,0.29755083,0.34163293,-0.10178673,0.44082534,-0.044612337,-0.15464668,-0.71544546,-0.010626306,-0.57060474,-0.14347266,0.23717229,0.011588689,-0.016844235,0.07148398,0.052098114,0.4354014,-0.37427154,0.2092252,0.007773792,-0.44889057,0.44021568,0.47278103,0.27053562,-0.4605141,0.70223117,0.055715498,-0.1569275,-0.46423587,0.090209804,0.57729846,0.19328684,0.29402873,-0.31932887,-0.05924253,0.19361128,0.7629475,0.1473233,0.51775837,0.015715161,-0.002730896,0.35097682,0.09671999,0.17219125,0.11915609,-0.5561971,0.13035159,0.04572931,0.24267767,0.2821707,0.19760565,0.39146078,-0.04999408,-0.22588842,0.07257492,0.25433752,0.12907855,-1.0515827,0.42178378,0.23459323,0.7800563,0.6100778,-0.053414356,0.06902236,0.6368874,-0.16142279,0.14795387,0.27900976,-0.0995093,-0.55578667,0.65327144,-0.69206,0.298023,0.029444082,0.023120366,-0.014587258,0.049628492,0.22686402,0.69306487,-0.11886272,0.13221383,-0.24093919,-0.108407654,-0.09011236,-0.29515338,0.10334454,-0.34135357,-0.41244042,0.655055,0.555209,0.4355451,-0.18568386,-0.06917569,0.19727404,-0.04134219,0.34981653,-0.12335082,0.22316803,0.17492408,-0.59712225,-0.3030757,0.59186727,-0.12798828,0.13668096,-0.08071997,-0.26269814,0.2601607,-0.0022937257,-0.1357152,0.007819126,-0.54335356,0.19387865,-0.24916089,-0.20808727,0.8475497,-0.39921084,0.2690005,-0.0043740943,0.04308486,-0.13979535,0.15312888,-0.056114513,0.7796038,-0.015815655,-0.07162307,-0.5731521,-0.031449422,0.09851969,-0.057247538,0.032906104,-0.34951186,-0.08894632,-0.6915352,0.39395848,0.0038856443,-0.12356189,0.3168429,-0.32951277,-0.07508718,0.43091425,0.017104102,-0.2062978,0.20260091,-0.15861385,-0.23603976,-0.35065368,-0.19631682,0.33179972,0.11529541,0.33013645,0.022602806,-0.027761055,-0.16682518,0.22544676,0.29349837,0.10276965,0.2568262,-0.051105637,-0.32580957,-0.26588055,0.19010238,0.39416113,0.005992415,-0.010898262,-0.10155297,-0.8325732,-0.45415354,-0.2789512,-0.10528784,0.3548768,0.061259795,-0.19194879,0.5351822,0.23213972,1.2605268,0.025938155,-0.38062456,-0.090120584,0.6222354,-0.11521991,-0.049122553,-0.21533959,0.929061,0.7433026,0.0750347,-0.08856818,-0.37307587,-0.18756855,0.2729782,-0.11981038,-0.0157631,-0.024888838,-0.76753855,-0.34143057,0.27488264,0.34432808,0.045427185,-0.07501692,-0.10199863,0.13789472,0.063834086,0.26741728,-0.4969244,-0.13353288,0.3026159,0.21825619,0.021548659,0.1904789,-0.3853978,0.3853564,-0.52068263,-0.085145555,-0.29610264,0.077656515,0.033571158,-0.18803555,0.13305669,-0.111901365,0.44280002,-0.32887217,-0.27631953,-0.14885375,0.6698394,0.2517908,0.13228165,0.7840623,-0.14069119,0.024221092,-0.18737066,0.36092445,1.0708104,-0.49491537,0.15123188,0.33397838,-0.3063686,-0.68631977,0.2961898,-0.3191883,0.3419353,-0.14434105,-0.44111028,-0.5899392,0.17828846,0.09697463,-0.23087008,0.06719756,-0.671957,-0.36423385,0.12556979,-0.37990692,-0.19943243,-0.33481026,0.1501482,0.6573819,-0.389354,-0.349075,0.20866652,0.30245245,-0.09472451,-0.5867937,-0.032757122,-0.26872438,0.3495325,0.16828902,-0.5084296,-0.17153801,0.18130521,-0.40561923,0.07072649,0.09550025,-0.3185005,0.02682273,-0.2946745,-0.12056898,0.9705283,-0.04911373,0.17210932,-0.7268064,-0.28581432,-0.79906344,-0.4068384,0.4027001,0.24540393,0.013795223,-0.53634137,0.06374439,-0.069495596,0.31118393,-0.2588547,-0.33497834,0.4993575,-0.020663934,0.47754708,-0.13306434,-0.6619578,0.112130694,0.1556926,0.14520277,-0.42560253,0.4567894,-0.041788813,0.81619,-0.0013756308,0.13211331,0.12955476,-0.5291092,-0.09770876,-0.20731144,-0.3966445,-0.6951662,-0.0077561457 +417,0.44448304,-0.05357919,-0.57774115,0.020538377,-0.41698867,0.24008113,-0.085006356,0.48158738,0.22481553,-0.3956047,-0.20796375,-0.01646078,-0.07025402,0.17067751,-0.23048283,-0.572177,-0.038632564,0.15583116,-0.31168306,0.51219267,-0.29766452,0.38414574,0.10352304,0.20528223,0.24804159,0.15425496,0.008831149,-0.11577277,-0.23449121,-0.29066503,-0.12860227,0.27523965,-0.6552275,0.41206986,-0.1263452,-0.24458233,-0.011642383,-0.36223197,-0.3654142,-0.72485757,0.16556695,-0.69599617,0.6009751,0.10272372,-0.3978052,0.06425668,0.18180582,0.262507,0.014991526,0.04219288,0.21610975,-0.09213393,-0.008141674,-0.1690414,-0.012865409,-0.5197476,-0.53049505,-0.18083817,-0.5410688,-0.11065841,-0.040880557,0.26289213,-0.23643012,-0.09693979,-0.2128649,0.5878427,-0.47625887,0.10433967,0.26932722,-0.099544756,0.2984433,-0.59229374,-0.09649122,-0.05680555,-0.017291121,-0.09258796,-0.26496643,0.25879204,0.10247259,0.43436998,-0.044187702,-0.14441268,-0.18835363,-0.007057769,0.12904644,0.3541434,-0.34443322,-0.34564888,-0.12521252,0.057067335,0.41450316,0.010541424,0.19881742,-0.2898787,-0.0984333,0.00299526,0.0004746858,0.32593712,0.5601946,-0.20131657,0.02833677,0.2683451,0.5498877,0.1646821,-0.15397334,0.08445297,0.02910145,-0.36980665,-0.107629046,-0.034580253,-0.19278763,0.5119804,-0.056423172,0.06418395,0.62152344,-0.052016012,-0.07069114,0.1933788,0.17300698,0.12284908,-0.1671778,-0.3238883,0.23469745,-0.5358335,-0.13597329,-0.059396695,0.72690475,-0.0029116161,-0.6967779,0.23502828,-0.45236146,0.07211675,0.02327825,0.5134348,0.5866006,0.5229084,0.11253024,0.81332487,-0.3252492,0.093092844,-0.07325549,-0.2441818,0.14837097,-0.097466975,-0.102137685,-0.4764642,-0.14667618,-0.09806079,-0.3717081,-0.102841295,0.3568007,-0.6772174,-0.161382,0.11359477,0.71029484,-0.30801672,-0.06334789,0.5815383,1.0361937,0.9133095,0.1622867,0.86493623,0.18093422,-0.120234795,-0.19417393,-0.2363586,-0.5367043,0.18426618,0.29315543,-0.17051071,0.4662167,0.24359998,0.111863464,0.44483924,-0.47576267,-0.027886763,-0.19423388,0.4046003,-0.054997966,-0.07051061,-0.38711122,-0.17571594,0.048496045,0.1732299,-0.016975999,0.363797,-0.24666332,0.25276986,0.25037786,1.4961476,-0.28349656,-0.041926056,0.12580717,0.28309557,0.16389883,-0.40226734,0.016144596,0.31161958,0.28688484,0.0441501,-0.50481653,-0.0099709,-0.099219725,-0.46241063,-0.16894628,-0.13575886,-0.175997,-0.15243079,-0.44455382,-0.26918462,-0.06129051,-0.25815868,0.44376233,-2.596479,0.11102483,0.00875938,0.3221828,-0.20577392,-0.40615585,-0.07916466,-0.40932447,0.19686183,0.33797723,0.33005285,-0.66619617,0.33371562,0.501018,-0.34374523,0.036504373,-0.554187,0.14252785,-0.011225332,0.41116202,-0.025126241,0.03726967,0.19823165,0.31444886,0.45007935,-0.17327113,0.20329544,0.19230132,0.26338103,-0.021352792,0.27498785,0.08112947,0.4272759,-0.0015000179,-0.19450785,0.4649301,-0.34985703,0.18863326,0.008500997,0.037075747,0.29072142,-0.3182774,-0.6231465,-0.5886066,-0.11895515,1.0260904,-0.27122086,-0.5669538,0.19008467,-0.19929296,-0.29556555,-0.046308592,0.29773527,-0.06225604,0.04881013,-0.802515,-0.07046445,-0.18918946,0.3244556,-0.08917268,-0.05248966,-0.52931774,0.74169683,-0.23895866,0.4717089,0.43688127,0.27318263,-0.29324746,-0.54553664,0.029552605,1.0227723,0.6427189,0.14298353,-0.27986917,-0.17128731,-0.21943365,0.0899801,0.09244561,0.6584248,0.83893925,-0.14810686,0.044623874,0.2963422,0.03923425,-0.020651817,-0.16294536,-0.4713926,-0.021221235,-0.043482564,0.5756096,0.6588111,-0.054035667,0.53186953,-0.0904161,0.3573795,-0.17985806,-0.50574327,0.37543058,0.7292539,-0.19337985,-0.28127712,0.70259833,0.5319041,-0.1277705,0.41211647,-0.63711834,-0.22584085,0.4130394,-0.18778259,-0.460356,0.34099495,-0.3386954,0.26599586,-0.6984291,0.6681497,-0.25254917,-0.7902309,-0.5787822,-0.17428377,-1.8986577,0.2319839,-0.20843507,-0.19278768,-0.06820953,-0.174518,0.24163476,-0.7090213,-0.5985995,0.16422954,0.058514047,0.5179846,0.03229276,0.049262565,-0.08006145,-0.369147,-0.041320577,0.2865653,0.16403157,0.16331154,-0.00037343055,-0.4273113,-0.058791965,-0.110770814,-0.2903884,0.020170484,-0.620363,-0.63271457,-0.12661842,-0.51735824,-0.13078405,0.6425432,-0.3745888,0.039179888,-0.21108957,0.043770812,-0.009243948,0.07367091,0.1221991,0.11633359,-0.025451235,0.0153685585,-0.0041462183,-0.29739195,0.09405681,0.12905961,0.4086738,0.3772646,-0.13532978,0.23251027,0.54187816,0.6247122,0.022826418,0.8297721,0.4838931,-0.26702797,0.08712918,-0.121267386,-0.27018243,-0.60572624,-0.32911754,0.0692912,-0.5690847,-0.2684956,-0.0037758294,-0.39675286,-0.75910234,0.4803298,-0.13878152,0.2646956,-0.037298903,0.2206463,0.45557368,-0.20811602,-0.13245195,-0.23944923,-0.13791972,-0.58999515,-0.33925512,-0.67303884,-0.36554453,0.19224092,1.4155059,-0.34134272,0.005990967,0.13601124,-0.1752761,0.109329656,-0.037504133,-0.07140587,0.020105675,0.49698406,-0.076577716,-0.58501863,0.20820257,-0.1659774,-0.031661157,-0.4611863,0.10797348,0.5330993,-0.61263216,0.45460412,0.2785011,0.16936406,-0.05471401,-0.6758014,-0.06557665,0.10445873,-0.39552355,0.53319085,0.31729904,-0.5203556,0.33163568,0.27247363,-0.37600124,-0.66317654,0.46586883,-0.02941426,-0.32069522,-0.09806052,0.2977333,-0.12659632,-5.1882118e-05,-0.030428424,0.23081182,-0.3208171,0.19501904,0.2903458,-0.12676094,-0.08091363,-0.25367856,-0.18778999,-0.7874133,0.14231874,-0.33681762,-0.36532068,0.10878666,0.024198802,0.08591122,0.23638028,0.2288419,0.5682353,-0.31158423,0.08328809,-0.09080383,-0.30840212,0.5767659,0.47138473,0.42238602,-0.18684886,0.46196437,0.07067905,-0.0586303,-0.26248562,0.12766422,0.4321701,-0.0314757,0.26101136,0.028892636,-0.080317214,0.34014776,0.8709954,0.10845532,0.43717536,-0.073023215,-0.15729167,0.08612442,-0.010190858,0.22311693,0.010586977,-0.5528188,-0.051751696,-0.02372301,0.13089716,0.3825928,0.19010639,0.28481805,-0.14639148,-0.37256575,0.1335514,0.20045355,0.035011586,-1.3014609,0.23483513,0.02869787,0.73898697,0.6180024,0.2585122,0.030776855,0.4661612,-0.27034938,0.051420618,0.2201368,0.047651455,-0.3517263,0.32575125,-0.6651114,0.28737113,-0.0935492,-0.02111565,-0.019281514,-0.22838348,0.33566308,0.90484196,-0.14550184,-0.050094202,-0.0724447,-0.14666288,-0.073709436,-0.29379803,0.2452085,-0.6569596,-0.5055909,0.7583792,0.5279231,0.46795654,-0.14125869,0.017453307,0.18744728,-0.22212619,0.22713718,0.04779107,0.02623648,0.007548958,-0.4562738,-0.27997917,0.5367172,-0.19792691,-0.107157506,-0.08821065,-0.12422041,0.07553616,-0.15660311,-0.10828527,0.045101993,-0.7030739,0.018759497,-0.47764555,-0.3140206,0.47328857,-0.19367218,-0.013081364,0.09971104,-0.023401465,-0.28795817,0.2874211,0.33111274,0.616909,0.09829463,-0.02550962,-0.21577784,0.3410818,0.07714887,-0.13466938,-0.042034633,-0.11649219,0.3639235,-0.5794043,0.34062934,-0.007063272,-0.19657938,0.061756596,-0.21514213,0.0113281105,0.5008058,-0.11004007,-0.1715225,0.10413315,-0.19191706,-0.15875654,-0.14892586,-0.21904443,0.12215334,0.06643747,-0.14902756,0.03230136,-0.13504845,-0.2138947,0.11616941,0.1822033,0.41306233,0.58386695,-0.11767873,-0.61478174,-0.049379557,-0.036396287,0.42808118,0.061457533,-0.09163959,-0.3860615,-0.39762378,-0.41823965,0.2765946,-0.26342672,0.35328665,0.036038034,-0.24075244,1.0386342,0.12498914,1.1844214,-0.031279653,-0.40992138,-0.15151432,0.5758287,-0.05197399,0.081967145,-0.4248561,1.0148636,0.5789015,-0.058993764,-0.019400088,-0.23893094,0.08050496,0.29294112,-0.12860397,-0.21050946,-0.060091034,-0.5833829,-0.09620122,0.29718453,0.20542824,0.021884248,0.05820515,0.022546554,0.31418857,0.016763197,0.23912251,-0.56000465,0.12864691,0.23043641,0.12424964,0.24896917,0.020845752,-0.5488243,0.3009022,-0.41971135,0.14422771,-0.21593225,0.009971544,-0.028767955,-0.36317104,0.18464492,0.015699223,0.31172925,-0.5533619,-0.23013741,-0.18177673,0.56311744,-0.078138195,0.12085394,0.59383565,-0.20421793,0.15364474,-0.04227063,0.5714767,1.0344056,-0.3346857,-0.094471954,0.51583606,-0.45386976,-0.60959536,0.1868928,-0.3200952,-0.1262541,-0.17159045,-0.47419637,-0.5137471,0.25354522,0.25128877,-0.113359265,0.06333685,-0.7074996,-0.042948484,0.33489603,-0.3554762,-0.13711308,-0.17158157,0.25480425,0.6216849,-0.4233954,-0.36223462,-0.15562102,0.37066185,-0.28603202,-0.45022488,-0.06930498,-0.25851613,0.3206843,0.071507044,-0.33683798,-0.14826146,0.18748969,-0.32607397,-0.06797536,0.35833117,-0.24788958,0.04121328,-0.18807995,0.11992433,0.69172686,0.039575655,-0.13277023,-0.49710453,-0.32926926,-0.889227,-0.35177654,0.14178836,0.1050643,0.015194388,-0.6999022,-0.06693013,-0.29074228,-0.0225273,-0.09454564,-0.34966207,0.5364835,0.22082853,0.3457569,-0.05630234,-0.90047574,0.16024269,0.09638362,-0.10617225,-0.57041377,0.46374062,-0.03193241,0.85945636,-0.0058970097,0.0054980777,0.077810705,-0.6352874,0.1988842,-0.16010323,-0.1384446,-0.8226621,0.11848143 +418,0.58248997,-0.5155177,-0.5585042,-0.1554834,-0.3319211,0.017544592,-0.3825368,0.43781447,0.30907288,-0.3994363,-0.36382157,-0.15031426,0.0874148,0.09693818,-0.33297044,-0.47944522,0.003825891,0.113105975,-0.56621444,0.33693317,-0.60867286,0.30204067,0.18471673,0.39897582,0.26333687,0.12564333,0.07995675,-0.057871204,-0.03149035,-0.362859,0.09382935,0.24052659,-0.71901685,-0.087249495,-0.4768942,-0.4892025,-0.05199235,-0.8033346,-0.1663771,-1.0403335,0.20132756,-1.1264834,0.52908075,0.09159803,-0.4129359,-0.1611573,0.30996767,0.16866931,-0.247996,0.06757979,0.23071893,-0.06047826,-0.21243432,-0.12411158,-0.20514226,-0.43436328,-0.6616068,-0.031235963,-0.5401629,-0.31204364,-0.2527091,0.26898843,-0.3309181,-0.019972168,-0.36705953,0.3952282,-0.4490127,0.045977622,0.036221363,0.07393761,0.6262288,-0.73566866,-0.21228144,-0.2634518,0.37258285,-0.16805485,-0.55575454,0.32987916,0.71520174,0.31088734,-0.07365684,-0.16729248,-0.29056698,-0.10303788,0.09434132,0.5243702,-0.419043,-0.47661978,-0.22684553,-0.042703133,0.63441527,0.72416174,0.060323514,-0.222439,0.12613788,-0.1385059,-0.31553602,0.75909626,0.65461016,-0.367728,-0.24204187,0.12808831,0.56094074,0.47915727,-0.37999958,-0.084767185,0.076876394,-0.8018511,-0.13705638,0.39586583,-0.23573379,0.71735406,-0.2249206,0.31234708,0.72023743,-0.31434923,0.111448765,0.30945134,0.060052186,-0.15346469,-0.2547549,-0.38405538,0.25277805,-0.76141393,0.11048633,-0.47124052,0.7452787,0.07701273,-0.8034981,0.3520397,-0.7028133,0.19545497,-0.17491788,0.5585547,0.8245352,0.5152381,0.4524657,0.7806853,-0.124490544,-0.019626806,-0.0139942765,-0.37369198,0.32457188,-0.35468313,0.16454132,-0.3908654,-0.07679907,-0.3124276,0.07456128,0.10887375,0.77936286,-0.6221072,-0.2402137,0.13728765,0.53229153,-0.28944892,-0.061083723,0.781175,1.0762863,1.1044587,0.27403915,1.2961781,0.24973798,-0.2482458,0.23060937,0.08487896,-0.7653177,0.35018867,0.27621096,-0.89657706,0.25957397,-0.199368,-0.17422771,0.30762714,-0.3836074,-0.08949001,-0.016162958,0.13224736,0.12657216,0.015652765,-0.571693,-0.37246782,-0.039052747,0.11476196,-0.030061115,0.28583536,-0.2238111,0.18493369,0.04416847,0.9543439,-0.1414309,-0.048155405,0.07973595,0.46333194,0.11015254,-0.14833371,-0.0036985637,0.2992398,0.40704888,0.16282572,-0.74002105,0.2299453,-0.2732069,-0.20034692,-0.00014373063,-0.42896265,-0.30365664,-0.013829028,-0.554158,-0.23263498,-0.18024111,-0.17410183,0.471222,-2.532937,-0.31899324,-0.09188224,0.29862416,-0.17253436,-0.32683724,-0.20879528,-0.55872965,0.35228592,0.18822198,0.6058821,-0.76579064,0.32704094,0.7510699,-0.61968935,-0.17150493,-0.9397398,-0.35427552,-0.037236415,0.3689428,0.123974666,-0.13906305,0.17467925,0.11151884,0.7669672,0.2419084,0.2371666,0.30975726,0.87087315,-0.113387324,0.7536417,-0.20331244,0.38946286,-0.42813396,-0.38079327,0.18882275,-0.4528067,0.31387696,-0.0702965,0.027270153,0.7118818,-0.58609235,-1.1898801,-0.6292645,-0.38558847,1.2110037,-0.30912894,-0.5848368,0.2220501,-0.33679584,-0.113047935,-0.067360155,0.8330914,-0.036501296,0.14278528,-0.8340004,-0.10319202,-0.12635441,0.09129818,-0.012358924,-0.0098244725,-0.33598965,0.76187336,-0.02987414,0.45204955,0.13395867,0.027980745,-0.47061223,-0.5851701,0.13085334,0.94880754,0.400106,0.06104473,-0.31518552,-0.23527725,-0.45173937,0.085132346,0.076802984,0.7036923,0.8526537,-0.09815043,0.36623025,0.36318356,0.05428084,0.10717245,-0.23283009,-0.37433428,-0.22333923,0.012873101,0.6145911,0.7745815,-0.02522102,0.40834093,-0.14227271,0.12280446,-0.17368291,-0.4374237,0.5727363,0.9499313,-0.18181233,0.10106345,0.6792774,0.5986222,-0.53644526,0.5886021,-0.61325896,-0.30996674,0.5525382,-0.1298786,-0.55675936,0.33862552,-0.34269303,0.1064497,-0.7757219,0.45979613,-0.53030956,-0.19178078,-0.44365054,0.012700248,-3.1960728,0.4753852,-0.06887099,-0.019453824,-0.49027044,-0.36122918,0.40141815,-0.5384201,-0.8144541,0.11438437,0.10637965,0.707974,-0.29364967,-0.007348135,-0.251419,-0.4951474,-0.13888457,0.22037145,0.2540563,0.4049727,-0.286736,-0.38756305,0.07456623,-0.07413669,-0.3664286,0.07027016,-0.65544975,-0.77066886,-0.035237007,-0.48864836,-0.34824783,0.70456576,-0.4439655,-0.060413145,-0.11898255,0.15568523,-0.020460587,0.4138237,0.059917856,0.36170852,-0.09861286,-0.034536436,0.10289303,-0.016251069,0.62237245,-0.09084515,0.14030018,0.22327396,-0.1046807,0.18169901,0.6062525,0.7809586,-0.16518314,1.4507278,0.27157903,0.043708228,0.21066587,-0.22706954,-0.4575158,-0.6592939,-0.007733959,-0.14761986,-0.4588353,-0.39545098,0.18565437,-0.10181258,-0.74351984,0.7461983,-0.13404587,0.42584544,0.01782621,0.6077029,0.35039523,-0.12041736,0.06322132,-0.1029249,-0.18774691,-0.5034326,-0.29300943,-0.6994477,-0.34530076,-0.13293992,0.8456483,-0.38165075,0.020329619,0.059867937,-0.06712863,0.11928346,0.022770975,-0.029775506,0.21421805,0.43408594,0.06410129,-0.72825205,0.3268986,0.07711452,-0.1260691,-0.48259658,0.16571645,0.8755144,-0.8925851,0.633817,0.54577935,-0.15477669,-0.28285646,-0.6878928,-0.16500756,0.14402635,-0.30602926,0.61067414,0.19857588,-0.9508754,0.49349517,0.6118819,-0.40166536,-0.7066512,0.827592,-0.07060613,-0.11010505,-0.38437217,0.43698162,0.22539859,0.04307879,0.018539742,0.3735049,-0.46182862,0.35978943,-0.14813253,-0.031561956,0.22875309,0.0028969229,-0.083321504,-0.7900177,0.26697877,-0.5906455,-0.31099427,0.52650255,-0.06732385,-0.018500831,0.5345098,0.17947158,0.45255914,-0.35354486,0.030778294,-0.10182357,-0.35286897,0.24722195,0.5952231,0.51634705,-0.40338683,0.6298608,0.33009464,-0.28612804,0.31600326,0.06905739,0.28099936,-0.0536075,0.42666483,-0.15233728,-0.38370094,0.25712112,0.88955724,0.13873808,0.6455963,-0.06408814,0.12325704,0.30909923,0.17912552,0.37086418,-0.1402466,-0.65975654,-0.12642172,-0.27729294,0.1587917,0.55530584,-0.009763909,0.11232369,-0.025679385,-0.13186865,-0.066433616,0.49953598,0.045609795,-1.3879391,0.29070044,0.15811504,0.88144445,0.5792725,0.041510504,-0.057553727,0.54513335,-0.27651757,0.06859597,0.7262269,0.41423398,-0.51806885,0.76865166,-0.5674574,0.4022309,-0.50070536,0.18804781,-0.056229286,0.11590133,0.41033572,0.95762175,-0.27219272,0.051443357,0.08779316,-0.35209784,0.060502566,-0.47651085,0.24389467,-0.38466376,-0.26468423,0.9479103,0.46652904,0.3396774,-0.16869906,0.02162965,-0.004341171,-0.26923004,0.32511792,0.03908817,-0.03421718,-0.01983245,-0.803316,0.20445009,0.76829165,0.23319674,0.02181903,-0.18566492,-0.2610987,0.20439911,-0.25402912,0.22870848,-0.076182075,-0.8878813,-0.16731188,-0.6415823,-0.68147665,0.30461273,-0.170549,-0.027421664,0.3752852,-0.005393248,-0.23200937,0.35894006,0.31919074,0.6119093,-0.12985548,-0.13477382,-0.33426142,0.21765096,0.24753308,-0.24956593,-0.24721572,-0.2304401,0.18650971,-0.35412616,0.66222894,-0.21862635,-0.5864188,0.0015159845,0.009242264,-0.15998007,0.77013093,-0.14765744,-0.12479456,-0.117927566,-0.07901556,-0.24241671,-0.17071733,-0.11397624,0.18703267,0.27138987,-0.13547057,-0.34683627,-0.3642547,-0.06679928,0.3329482,-0.1651713,0.6105212,0.60413283,0.34606206,-0.23740582,0.14812787,0.07799255,0.69606704,0.032972954,-0.21980497,-0.75416607,-0.21103103,-0.26040268,0.26170284,0.040365897,0.37339193,0.16551343,-0.3530765,0.9818114,-0.12995449,1.059192,0.043445177,-0.44523796,-0.01755861,0.52789366,-0.27451625,-0.23226133,-0.3577088,0.7913976,0.53449446,-0.33710146,0.010891649,-0.4344894,-0.1132102,0.18808493,-0.3662786,-0.12868538,-0.19113375,-0.58571947,-0.074019894,0.16019535,0.39194906,0.18463561,-0.11897153,0.19880785,0.3332333,0.089588985,0.44389915,-0.6766529,-0.28110623,0.0316655,0.60235536,-0.18183081,0.1953672,-0.23800921,0.28962496,-0.6705705,0.21990657,-0.73139524,0.16851345,-0.22352739,-0.45715818,0.018346088,-0.0873846,0.378198,-0.13580741,-0.31947255,0.031956147,0.36526334,-0.040981613,0.32060662,0.5983442,-0.23400351,0.03338954,0.031688638,0.7001654,1.3563786,-0.3604119,-0.28331703,0.20453861,-0.36181682,-0.7820616,0.5355045,-0.6522838,0.012289846,0.069546215,-0.24498609,-0.3461046,0.11271523,0.23950395,0.3383112,-0.25150225,-0.7656708,-0.19032073,0.46274084,-0.13738635,-0.1759392,-0.2813148,0.39619377,0.58669037,-0.3795625,-0.21195713,-0.36465412,0.39222825,-0.16307986,-0.44869298,0.056680508,-0.49822393,0.34086072,0.11840383,-0.3359622,0.038963728,0.1344032,-0.59386104,0.14995794,0.042615317,-0.32166824,0.13573922,-0.31606725,0.11255572,1.0112087,-0.28748626,-0.23955217,-0.29187983,-0.7097847,-0.7706811,-0.19595799,-0.03888315,0.3596117,0.13189521,-0.4342204,0.17685589,-0.1226604,-0.4115215,-0.07673846,-0.5394689,0.45563078,0.1010319,0.5835811,-0.2809784,-0.80110437,0.21843472,0.24187675,0.0038047596,-0.56545,0.68075293,0.019487465,0.78495777,0.17165212,-0.058407366,0.025410105,-0.37856606,0.073310114,-0.15268013,-0.05826179,-0.8885721,0.022545625 +419,0.48849174,-0.1582443,-0.5711394,-0.11536427,-0.1928539,-0.020564714,-0.16477807,0.66031057,0.19423796,-0.48268303,-0.15477511,-0.07308455,-0.0012405157,0.32530233,-0.14254403,-0.55494726,-0.046647895,0.20112911,-0.6685674,0.50111234,-0.38989198,0.21504945,0.0035164037,0.6391394,0.1907023,0.2071252,-0.1185888,0.12942539,-0.0449241,-0.2568779,0.060327195,0.25286338,-0.6984786,0.08207383,-0.21540776,-0.37982234,-0.19765292,-0.4599577,-0.47496712,-0.8439314,0.33704415,-0.8856557,0.6252439,-0.123770975,-0.39631155,0.03228833,0.23971382,0.50514436,-0.14538689,-0.17660482,0.089247026,-0.07767153,-0.09279051,-0.15236838,-0.17003575,-0.35248852,-0.60965854,0.1769537,-0.32168496,0.0192847,-0.23477693,0.19305226,-0.35280353,0.18427688,-0.11143017,0.47450784,-0.30772454,0.0929966,0.40962836,-0.084133066,0.25501245,-0.5421083,-0.044007838,-0.093338825,0.26692593,-0.07678464,-0.34532252,0.29407808,0.14682418,0.4748637,0.05327636,-0.34618455,-0.24826832,0.041100193,-0.037462786,0.46313015,-0.1969797,-0.48575824,-0.16085263,0.054252733,0.43983504,0.22438224,0.11852822,-0.06697743,-0.12503307,0.040851276,-0.20252392,0.47161832,0.6082565,-0.08146591,-0.2998264,0.28501242,0.54885805,0.23477171,-0.059428032,0.09851417,0.08122445,-0.60560507,-0.20028053,0.0072871167,-0.19846793,0.40530396,-0.16529998,0.25321847,0.6996977,-0.19344202,-0.11126101,0.21251847,0.063244,-0.03515721,-0.4166459,-0.3190302,0.23557563,-0.53549314,0.23871265,-0.26021224,0.77471405,0.18346676,-0.68727505,0.22623353,-0.65968174,0.2306175,-0.045523856,0.47276226,0.74901325,0.50942165,0.25582466,0.74380493,-0.38792592,0.13312745,-0.10871067,-0.32744038,0.10889505,-0.28263727,0.10295877,-0.4195093,-0.010632523,-0.02993315,-0.1256003,0.14741129,0.38143805,-0.5695141,-0.21743637,0.03592142,0.89475477,-0.21013379,-0.06960059,0.98178655,0.82848895,0.9131826,0.04264941,1.1305851,0.14699398,-0.1427504,0.18743162,-0.09031366,-0.9175498,0.43799964,0.20275782,-0.37906292,0.31895414,-0.064024985,-0.080348685,0.48759925,-0.49406117,0.072917886,-0.18254468,0.3396697,0.058025733,-0.13233154,-0.4309254,-0.24066718,-0.054309145,-0.10603355,0.21860828,0.26651976,-0.026542332,0.56775594,-0.013014967,1.444268,-0.026728181,0.08623282,0.091234185,0.40101975,0.1760597,-0.12965855,-0.13583365,0.08291386,0.32071564,0.15649267,-0.5297826,0.079304345,-0.1670923,-0.32392102,-0.18493064,-0.21598014,-0.1864528,-0.20719372,-0.4556733,-0.3053821,-0.26809344,-0.18570815,0.38358715,-2.5995722,-0.2824978,-0.0406509,0.33926356,-0.3824855,-0.48695558,-0.14125462,-0.56109875,0.6067226,0.18164107,0.5517781,-0.67831737,0.27057555,0.28173155,-0.5672777,-0.013702829,-0.7967984,-0.16788565,0.17095011,0.21266563,0.06797599,-0.19852321,-0.051414188,0.11310158,0.47684056,-0.06473721,0.01131554,0.28210488,0.44554406,-0.13479567,0.5229011,-0.17865114,0.65980476,-0.45271817,-0.25859788,0.35460767,-0.45094463,0.28454313,-0.07443158,0.060933303,0.51742846,-0.5288344,-0.8625441,-0.5270812,-0.17618115,1.029627,-0.17942767,-0.34974283,0.20393215,-0.6468189,-0.24720025,0.05136131,0.4587631,-0.17900518,0.0021662554,-0.79284364,-0.13340817,-0.22289582,0.02667452,-0.057085764,-0.10497376,-0.3416725,0.6128043,-0.14556995,0.2710986,0.38281924,0.12684889,-0.4415935,-0.5588102,0.06984376,0.8517721,0.38063785,0.22564551,-0.29723296,-0.23292615,-0.52613986,-0.22536628,0.026735552,0.7256361,0.80106646,-0.14831872,0.119303614,0.2621383,-0.01665976,0.022216681,-0.08715749,-0.33349222,-0.2579365,-0.096976265,0.76002175,0.7784495,-0.19369285,0.5362405,-0.077129774,0.32869393,-0.24721578,-0.4931005,0.5968609,0.8074852,-0.24660672,-0.40079087,0.65487194,0.33797613,-0.14935762,0.4504071,-0.4869346,-0.4074168,0.43811128,-0.09256632,-0.5141057,0.2072209,-0.2582901,0.23012428,-1.0372955,0.12380169,-0.43798986,-0.44596758,-0.75323296,-0.13755803,-2.229101,0.09494659,-0.24914196,-0.032692518,-0.37877426,-0.18576954,0.18114506,-0.40288654,-0.73193586,0.16998489,0.07016155,0.8617972,-0.09659937,0.1266672,-0.22969145,-0.12757851,-0.4526744,0.08239431,0.49578354,0.3804615,0.0011137803,-0.44716138,-0.1860418,-0.15360567,-0.5847871,0.13768053,-0.77734035,-0.5689727,-0.16074546,-0.5368387,-0.233255,0.74214536,-0.23424792,0.017783105,-0.19204544,0.05231712,0.035766937,0.3782798,0.12154619,0.04483113,0.18852353,-0.13215347,0.1442743,-0.27506742,0.21670556,0.09130125,0.38845342,0.29421484,-0.12458382,0.405078,0.45422328,0.99846596,-0.16106264,0.8383485,0.51437134,-0.010065607,0.31566238,-0.29737896,-0.42660195,-0.36170083,-0.054076534,0.053628445,-0.402525,-0.20663856,0.059604295,-0.3959953,-0.80954564,0.5723365,0.08856324,0.021879641,-0.076352164,0.16580829,0.5120365,-0.3130991,-0.14379296,-0.120899886,-0.12674962,-0.551775,-0.2700464,-0.5066673,-0.7363354,-0.1822531,1.1294007,-0.07354965,0.11637257,0.040504653,-0.29154077,-0.015114402,0.0645244,-0.09427259,0.049014084,0.48094395,-0.055275,-0.5327397,0.35136178,-0.05711599,-0.24406256,-0.7508575,0.3474788,0.6766319,-0.5172223,0.4453047,0.24323566,0.014038042,-0.30802646,-0.5631917,0.031933777,0.020115407,-0.20719299,0.4785455,0.26532796,-0.736904,0.52732736,0.5203075,-0.20156728,-0.73635304,0.44802076,0.12502573,-0.18797217,-0.16957802,0.37112343,0.16439782,0.03463644,-0.11754663,0.27137575,-0.31809312,0.17222585,0.20240487,-0.14179869,0.4404958,-0.26079527,-0.17477076,-0.7801819,0.10707584,-0.62706643,-0.31572473,0.2843136,0.053973947,0.13376264,0.1168905,0.22677456,0.3534762,-0.37388146,0.00439415,-0.30308864,-0.3633054,0.3062954,0.39641348,0.555705,-0.559358,0.62449104,0.11101139,-0.058014736,0.1817243,0.0709255,0.57972616,-0.07152724,0.37282214,0.10838968,-0.05414347,0.03611536,0.81179726,0.06160659,0.4586765,0.11745076,-0.027146196,0.086563796,0.15163599,0.14750801,0.06321495,-0.6570298,0.006448972,-0.14579615,0.1560516,0.49915224,0.16325945,0.29139656,0.02732306,-0.32693556,-0.07199858,0.028003637,-0.036116008,-1.7327473,0.55293757,0.25097293,0.95014185,0.18783556,0.09106705,0.09623359,0.74588335,-0.15173618,0.17683949,0.37815616,-0.07786754,-0.3985255,0.49555746,-0.85220975,0.53565824,0.052270226,0.0940978,0.087545484,0.046803687,0.6611098,0.729487,-0.13381882,0.053560477,0.00560801,-0.31574726,0.22986865,-0.43248132,0.05840396,-0.5243917,-0.17528585,0.71778774,0.43458578,0.321054,-0.246574,-0.017258553,0.25557077,0.0064982893,0.10474647,-0.0558849,0.11973882,-0.0048884354,-0.5474136,-0.16711381,0.46329355,0.16894814,0.2953687,-0.008173669,-0.025436934,0.2585129,-0.15371905,-0.048963286,-0.21106839,-0.75230354,0.0031637151,-0.5348412,-0.41925618,0.34100544,-0.2618591,0.15753286,0.2489184,0.11176691,-0.29104292,0.484742,-0.21986805,0.9210394,-0.06566002,-0.2728363,-0.28195947,0.25748464,0.25378835,-0.3175612,-0.07393178,-0.21412976,0.053189833,-0.3924532,0.37120265,-0.16509561,-0.5235968,0.1314611,-0.0992703,0.04918351,0.3932182,-0.2563063,0.017537594,0.11857606,-0.30786282,-0.21176742,-0.32165977,-0.044725068,0.3799176,0.44643372,-0.018531067,-0.01773294,-0.12936859,-0.20213011,0.4236522,-0.010688647,0.4200283,0.4152942,0.0884991,-0.31338528,-0.11237788,0.35844672,0.55441767,-0.09097996,-0.11493899,-0.45926067,-0.2730573,-0.3303894,0.52839917,-0.1031254,0.39490405,0.042402517,-0.24917823,0.7350956,0.088157065,1.1476914,-0.00048511822,-0.36333174,0.19599281,0.4052098,-0.005121684,-0.1059532,-0.4845689,0.8981962,0.3025959,-0.2311531,-0.05916622,-0.41721928,0.17066711,0.25157234,-0.22372201,-0.20311387,-0.13306238,-0.45943356,-0.25685754,0.32513836,0.2853306,0.18361594,-0.18107751,-0.014666454,0.23435208,-0.15586305,0.29632145,-0.43477204,-0.07536217,0.24795447,0.3339321,-0.095074974,0.112579376,-0.54932976,0.3863458,-0.44413102,0.05996388,-0.3173283,0.25330672,-0.030666979,-0.39002207,0.29140842,-0.108933054,0.3254951,-0.4759856,-0.29003245,-0.19499715,0.39708424,0.2743267,0.18555768,0.5608271,-0.26420134,-0.101391315,0.12506422,0.5277761,0.86198145,-0.25314948,0.19002658,0.22305563,-0.13678926,-0.5183284,0.46612185,-0.18123141,0.37048098,-0.033739995,-0.22698107,-0.5394361,0.27637464,0.2914789,0.06376802,-0.034657877,-0.679359,-0.20416495,0.32846102,-0.24630699,-0.24731849,-0.3821694,-0.021668483,0.53303826,0.072743736,-0.28810644,0.16159014,0.2634384,-0.08511257,-0.39259586,-0.09986513,-0.37158218,0.044774555,-0.0072139422,-0.36523038,-0.109188475,0.04495422,-0.55901736,0.1565926,0.110674165,-0.3299826,-0.016402697,-0.20647025,-0.0929806,0.9153797,-0.29625174,0.4167905,-0.5096093,-0.44573736,-0.7280615,-0.36684996,0.35221425,0.16237657,0.022234468,-0.77738076,-0.2698173,-0.09949843,-0.17075586,0.0014130791,-0.32456413,0.404348,0.18881239,0.35607547,-0.13473195,-0.6106786,0.15295093,-0.015999347,-0.26164773,-0.5394319,0.57989115,0.10255278,0.7933654,0.02126753,0.2676819,0.3767917,-0.5966034,-0.21192688,-0.08939754,-0.13496017,-0.7216127,0.012478224 +420,0.29216203,-0.23718733,-0.6186886,-0.18674152,-0.28597784,-0.010277345,-0.2215191,0.33365828,0.23455903,-0.67680305,-0.16153885,-0.33356625,-0.24208236,0.53089905,-0.3028776,-0.7236411,-0.024293402,0.12412517,-0.74217045,0.69264853,-0.27191716,0.37482518,0.25289896,0.36202827,0.27206367,0.11661197,0.2723847,-0.055082895,0.0069559123,-0.12538776,-0.03607381,-0.20347676,-0.6571105,0.10194782,-0.04843175,-0.49444962,0.0050195754,-0.33553997,-0.22880138,-0.845396,0.48460707,-0.8438722,0.41638392,-0.16538474,-0.3266939,0.048691146,0.053144787,0.57021743,-0.17168695,0.09050707,0.09670297,-0.0323542,-0.124073185,0.17011206,-0.21479353,-0.5082176,-0.6754539,0.17395383,-0.40347517,-0.23195094,-0.27939218,0.09506503,-0.41041976,0.16717641,-0.19498378,0.40469974,-0.35034975,-0.19320199,0.33632326,0.02608067,0.4225543,-0.71301895,-0.19959368,-0.36582085,0.20063022,-0.19556099,-0.18166892,0.20609874,0.4104083,0.5393692,0.037354823,-0.026173644,-0.2184624,0.0028146293,0.3295121,0.2688132,0.03677392,-0.39702585,-0.22789064,-0.09098242,0.34466124,0.10200036,0.35594875,-0.40291956,0.031560276,0.07834661,-0.35039192,0.25207514,0.42505696,-0.19393466,-0.2310244,0.2768442,0.6132674,0.36139774,-0.030801224,0.13388847,0.1653772,-0.55836,-0.20177056,0.22922546,-0.30833882,0.5188708,-0.27616403,0.27339426,0.4349618,-0.13455233,0.13628629,-0.17614865,-0.21181631,-0.2794988,-0.08723743,-0.35208362,0.26656678,-0.4676469,0.2163933,-0.39258474,0.65366876,0.33353382,-0.6278489,0.2941341,-0.6018655,0.35681498,-0.061777994,0.43349198,0.83109325,0.34122828,0.1334619,0.7705122,-0.44066587,0.14176334,-0.017149486,-0.22605988,-0.048573263,-0.38661745,-0.26585615,-0.39871305,-0.08645597,-0.22839539,-0.10382126,-0.14247502,0.51462805,-0.5684234,0.028289787,-0.10971388,0.66362923,-0.22998333,0.12073427,0.99263483,0.749579,1.2191787,0.16377266,1.4871119,0.3171438,-0.40777257,0.27786875,-0.0853116,-0.884146,0.38199493,0.4779218,-0.05970248,0.4284795,-0.15922552,-0.024440814,0.52593255,-0.64252764,0.26940665,-0.45408392,-0.16783307,0.05197721,-0.1254387,-0.2570173,-0.1441395,-0.10596228,0.04789178,0.030732136,0.1809659,0.015028023,0.42167953,0.170629,1.2846328,-0.33104345,0.07427667,0.19928874,0.28206453,0.21678162,-0.34217733,-0.060140334,-0.15056324,0.6193021,0.03798355,-0.7952163,-0.02781524,-0.2308959,-0.5706953,-0.37260753,-0.15234576,-0.021509789,-0.086839035,-0.52584434,-0.22314177,-0.10608873,-0.40469086,0.097601965,-1.9268303,-0.3337093,-0.49760845,0.24158181,-0.25992018,-0.2338641,-0.09871973,-0.54399747,0.47368556,0.5173492,0.24724272,-0.6364952,0.32470006,0.52797395,-0.4404866,0.10109794,-0.7493407,-0.18490204,0.00081356213,0.18579791,-0.018589642,-0.07401988,-0.020911392,0.2270024,0.35237756,-0.053530116,0.02631924,0.22808883,0.55007124,0.039298788,0.6378873,-0.046715073,0.6503586,-0.4575494,-0.17791043,0.5566057,-0.38288873,0.1527387,-0.051167443,0.24932194,0.46361732,-0.74611896,-0.7317107,-0.862428,-0.66999024,1.3743954,-0.014043822,-0.40615904,0.38149977,-0.26811308,-0.11426394,-0.12707011,0.62845176,-0.23396495,-0.098700054,-0.92785794,-0.03324348,-0.123962894,0.19771153,0.05779248,-0.16050608,-0.5154464,0.74821544,-0.097239465,0.4647647,0.47550693,0.22432512,-0.176678,-0.67186075,0.08561259,1.0022918,0.53698194,0.24344349,-0.31783772,-0.1526313,-0.67512894,0.010563337,0.037148036,0.2034994,0.88210577,0.02238958,0.07942811,0.30324337,0.113847,0.29014963,-0.11274132,-0.4048341,-0.14554149,-0.09215943,0.6357819,0.3421076,-0.040676996,0.22887316,-0.049510993,0.2365702,-0.17034888,-0.38658231,0.7581391,1.1685072,-0.2628271,-0.3652748,0.53282887,0.4532289,-0.3266803,0.48327684,-0.6748615,-0.34430158,0.4822161,-0.033096552,-0.43951124,0.17346828,-0.55606425,0.3187694,-1.1159093,0.41491556,-0.43809512,-0.27627102,-0.86004037,-0.06781749,-2.7165768,0.28954193,-0.25260073,-0.26414827,-0.46318465,-0.20487401,0.4791755,-0.4884901,-0.9300878,0.113118835,0.024287852,0.8787155,-0.00124297,0.10534386,-0.20568512,-0.23597339,-0.38823846,0.0185092,0.21694955,0.30794996,0.1401909,-0.39841035,-0.09724213,-0.378078,-0.40982294,-0.016208006,-0.49435553,-0.57099086,-0.4530051,-0.521532,-0.39456397,0.62566274,-0.31946552,0.11919836,-0.17258762,-0.1301634,-0.20557539,0.34909388,0.07790819,0.1578548,0.18471663,-0.14895226,-0.22723077,-0.22051542,-0.05059501,0.09549032,0.0012450493,0.18400982,-0.27586183,0.48845404,0.50253356,0.96396595,-0.21299484,0.8716446,0.68060344,-0.065457076,0.30748737,-0.35194346,-0.22480692,-0.55940044,-0.10191197,0.06256096,-0.3447221,-0.7498611,0.23577768,-0.21595861,-0.8019424,0.49680087,-0.015127329,0.17077821,0.114719145,-0.058634043,0.30338675,-0.07141583,-0.06495642,0.0038521243,-0.104872,-0.46985534,-0.45135644,-0.75631654,-0.51116985,-0.08857442,1.2728631,0.04836499,-0.09706437,0.18784975,-0.3687236,0.27832204,0.20447713,0.016819706,0.024585761,0.31300285,-0.005384107,-0.6800463,0.4018335,0.052642364,-0.1000758,-0.7084392,0.13887602,0.8077021,-0.4672634,0.34112746,0.30827338,-0.1483295,-0.17016572,-0.44272548,-0.0044552204,0.10168985,-0.29793766,0.31902027,0.24676313,-0.5209291,0.37091547,0.3153265,-0.08724214,-0.97634757,0.5277288,0.17578384,-0.067748114,0.041114215,0.3317248,-0.036756057,0.13048641,-0.30203703,0.34913555,-0.31578717,0.08888659,0.37924188,-0.13335766,0.14419377,-0.25309926,-0.1895017,-0.76801056,0.12298655,-0.6361183,-0.041863672,0.28208297,-0.064413026,0.16650066,0.11950864,0.22197448,0.34486505,-0.11700957,0.030726526,-0.1468653,-0.3593467,0.20370255,0.48243618,0.36206907,-0.50920635,0.7422911,-0.016584963,-0.16351381,0.08157405,0.09376837,0.41217571,0.1796853,0.38870987,0.20498034,-0.17112376,0.2765635,1.0019228,0.14395675,0.5412864,0.2159753,-0.20609204,0.25787014,0.37847933,0.1689832,-0.08795696,-0.4982817,-0.039479714,0.058831975,0.02087241,0.58475554,0.026844826,0.29299122,-0.117586866,-0.30911925,-0.031216644,0.023531996,-0.17548281,-1.4749107,0.3998887,0.15693368,0.80028564,0.6849571,-0.07231065,0.18967769,0.4727696,-0.17879762,0.12630829,0.33490494,0.003279466,-0.5331466,0.4709646,-0.5796621,0.27240595,-0.09928419,0.026501795,-0.030453386,0.12701881,0.5853003,0.70059454,-0.05274739,0.17944646,-0.16940607,-0.23450504,0.3555821,-0.34252164,-0.050755646,-0.33525902,-0.36811167,0.6086451,0.5090467,0.332593,-0.22080255,0.04441653,0.0013021025,-0.121138625,0.18391348,-0.12629256,0.010340007,0.05649082,-0.67499447,-0.12842968,0.51487345,0.15950471,0.18712543,0.047923453,-0.6764089,0.14517115,-0.08823586,0.0527722,-0.08515142,-0.8741842,-0.08976821,-0.5171724,-0.26355526,0.1465767,-0.27175155,0.2214531,0.38562918,0.06994884,-0.5073963,0.07767063,-0.22409089,0.74789727,-0.08088835,-0.16019355,-0.32685694,0.27920756,0.257206,-0.5322786,-0.07833673,-0.16057517,0.035320137,-0.54654336,0.45524582,0.043157678,-0.26161596,0.30525976,-0.14173485,-0.14600295,0.6011706,-0.400614,-0.05446263,0.25562182,-0.05276635,-0.13385913,-0.26102254,-0.14779039,0.27957025,0.073466934,0.25279588,-0.18857208,-0.012902285,0.0015238294,0.59599376,0.14083639,0.5152292,0.6346922,0.12840487,-0.7551301,-0.11715547,0.1699016,0.5498339,0.12547109,-0.37715954,-0.29804227,-0.4878054,-0.22677842,0.39640716,-0.15959874,0.38806766,0.2042875,-0.66421914,0.6131346,0.42030826,1.1651617,-0.041784685,-0.52689093,0.08141492,0.43508714,-0.08483602,-0.23882154,-0.42820695,0.6205776,0.4564606,-0.26186225,-0.15061554,-0.2886595,-0.07458922,0.113923125,-0.2897743,-0.020251594,-0.13309528,-0.7097247,-0.34180322,0.20795038,0.3304475,0.08270093,-0.1998119,0.19981688,0.119551465,-0.06081268,0.47332513,-0.4738674,-0.24497288,0.24934009,0.06962821,-0.010931705,0.04826272,-0.32375076,0.3591641,-0.70568305,0.011431511,-0.26166663,0.27545065,0.018058363,-0.25607646,0.22983608,0.011855226,0.41561353,-0.32205054,-0.34665698,-0.31774583,0.61111164,0.22643398,0.2851656,0.7295712,-0.3980417,0.1675556,0.16938064,0.80962753,1.1077392,-0.09024776,0.15995084,0.17136781,-0.358664,-0.42395276,0.4237677,-0.49037182,0.21485512,-0.019153507,-0.21574304,-0.6010396,0.20331922,0.30590528,-0.045935236,0.0898774,-0.7017547,-0.5022074,0.39717183,-0.2835218,-0.25986207,-0.43248302,0.03582057,0.36606127,-0.27686808,-0.28521198,0.09086644,0.40793875,-0.20863542,-0.50110394,-0.19976814,-0.20071451,0.44097614,0.1368445,-0.34374857,-0.110077135,0.06494988,-0.5349848,0.14732935,0.02292511,-0.43727323,-0.09655272,-0.2927536,-0.086207286,0.99764484,-0.22695354,0.037270658,-0.43865183,-0.46508682,-0.8900041,-0.28520992,0.6815084,0.27269956,0.10754386,-0.5707889,-0.08079657,-0.12761047,0.17583922,0.22013667,-0.24809936,0.43016693,0.16765915,0.7269039,-0.039315615,-0.5857759,0.20279314,0.12161834,-0.09533966,-0.4480073,0.505114,0.14577805,0.88357836,0.11124824,0.21513098,0.07005779,-0.6319481,0.078030504,-0.020651337,-0.24149033,-0.61462873,0.17791055 +421,0.36147222,-0.35028967,-0.46228337,-0.072776526,-0.0765855,0.24892731,-0.1755478,0.55909276,0.10223934,-0.5338808,-0.21737625,-0.1884361,0.06757313,0.6650375,-0.22310913,-0.40139404,-0.059348155,0.2154655,-0.69299674,0.5368156,-0.5152107,0.16980606,0.008884132,0.5675348,0.35075822,0.21959507,-0.027314106,-0.031823453,-0.48075727,-0.26281756,0.106505595,0.1839699,-0.41849998,0.17868944,-0.2885026,-0.35662904,-0.2556826,-0.6356163,-0.41853794,-0.82608026,0.30704924,-0.98909265,0.64216846,-0.0733156,-0.20609085,0.20228708,0.25382695,0.4767015,-0.18643558,0.0069456645,0.23873204,-0.06022605,-0.16251464,-0.20219499,-0.38146648,-0.30431458,-0.593701,0.10095542,-0.4724295,-0.15451808,-0.004705722,0.12486323,-0.14398123,0.039180394,-0.10707053,0.4288731,-0.47784853,0.11385697,0.114284426,0.1154573,0.3255086,-0.5257887,-0.29666817,-0.14537358,0.3768693,-0.26052058,-0.20383231,0.13919288,0.16112918,0.27153346,-0.20783634,-0.013150022,-0.29784873,0.03054261,0.26184577,0.53337365,-0.19909115,-0.59707415,-0.10887734,-0.023440802,0.3596836,0.2396702,0.24832587,-0.26854554,-0.010379334,-0.06501174,-0.20967591,0.45849028,0.47299588,-0.14007069,-0.22920232,0.38693252,0.49235925,0.2954757,-0.16834418,-0.10718878,-0.00425715,-0.55439687,-0.034924123,0.3331661,-0.09574619,0.5010442,-0.08178104,0.3030347,0.562938,-0.25101322,0.07237146,0.058806077,0.10651513,-0.11546894,-0.061407432,-0.40582845,0.1280325,-0.3124986,0.12031594,-0.24217278,0.6191212,0.18630265,-0.8054554,0.33298197,-0.5417481,-0.058315944,0.02799653,0.41806534,0.6713354,0.45327398,0.23952639,0.46354046,-0.1504973,-0.012744069,-0.20106815,-0.2552292,-0.13232583,-0.25727955,0.012379408,-0.5165415,-0.026148587,0.045330476,-0.3277462,0.018039228,0.635542,-0.47210607,-0.092708535,-0.05467224,0.7227728,-0.2680046,-0.11146625,1.0583817,0.9900444,0.9054148,0.14340247,1.2234498,0.2931252,-0.23800516,0.207388,-0.34619534,-0.64319915,0.35595682,0.30405614,-0.60711044,0.46876073,-0.04600802,0.06864434,0.24428236,-0.38536093,0.1828195,-0.16545452,0.0016308824,0.030581782,-0.072362065,-0.33987585,-0.40821347,-0.22412162,-0.06819786,0.23469321,0.24083018,-0.30227327,0.47003937,-0.002487858,1.7234708,-0.11876628,0.02558245,-0.11642515,0.51368976,-0.014232379,-0.22929372,-0.28188023,0.19292684,0.49131474,0.03230693,-0.5455,0.07313036,-0.09174443,-0.3962622,-0.1991332,-0.3383443,-0.11748961,-0.15944384,-0.4339927,-0.12798332,-0.14000623,-0.39885616,0.32012662,-2.6516972,-0.18234836,-0.07109717,0.3794277,-0.3122525,-0.44943753,-0.28053156,-0.46982273,0.44081393,0.16514748,0.42873988,-0.56213874,0.50408727,0.26197934,-0.5681339,-0.2235089,-0.6678533,-0.11408798,0.04027294,0.3452411,-0.1835335,0.14891173,0.24856551,0.07822461,0.3782272,-0.11323918,0.119463764,0.3558227,0.46701947,0.17974757,0.5148606,-0.1696306,0.5899193,-0.37288466,-0.15902565,0.3318213,-0.41236028,0.28919455,-0.12107196,0.18448426,0.45109335,-0.61521524,-0.87600213,-0.7996175,-0.3170924,1.2201116,-0.11941895,-0.3041562,0.10023334,-0.4648719,-0.37213853,-0.10597962,0.7234389,-0.12062863,-0.08166466,-0.75490874,-0.25543702,-0.060937632,0.23008795,-0.10505625,0.11726108,-0.48015133,0.35832608,-0.033884887,0.41549048,0.21277992,0.11680422,-0.35625562,-0.41633388,0.08884629,1.0068884,0.24861908,0.18866406,-0.08049906,-0.2728101,-0.52171034,0.015411426,-0.014589992,0.6520128,0.52696913,0.060935408,0.17252322,0.20102002,-0.09031976,0.23626797,-0.18291272,-0.28051147,-0.28634915,0.13171734,0.55094886,0.37511697,-0.0964321,0.8846963,-0.21773611,0.2919507,-0.27737883,-0.33132392,0.4417889,0.9486838,-0.19290869,-0.20507504,0.6943818,0.5315754,-0.36117497,0.43536067,-0.53276527,-0.38033947,0.38253883,-0.18156068,-0.38491395,0.3561319,-0.2247278,0.22148268,-1.0113505,0.2802724,-0.39478564,-0.4873464,-0.52401274,0.030244233,-2.6165564,0.16933203,0.0329481,-0.3882521,-0.16143586,-0.4042158,0.05301583,-0.5228961,-0.645189,0.167924,-0.020271989,0.7956133,-0.017852884,0.06404875,-0.23550205,-0.32517195,-0.20242687,0.09046644,0.15616387,0.58070546,-0.1982119,-0.49706396,-0.085865915,-0.32714757,-0.20904438,-0.012689586,-0.69177073,-0.52618635,-0.17182195,-0.54012316,-0.23851436,0.7431006,-0.31300303,-0.013690156,-0.19520533,-0.007299622,-0.14499031,0.4051591,-0.033578087,0.26909283,0.2882186,-0.24181515,0.117488,-0.15992047,0.2270034,0.16760947,0.21533884,0.4188086,-0.07224175,0.5413716,0.3903943,0.665085,-0.08482923,0.9571251,0.4876287,-0.16505705,0.22429311,-0.39678803,-0.17361589,-0.49563327,-0.14922711,0.049023822,-0.41635668,-0.6534867,-0.21540032,-0.33188593,-0.80715275,0.63549584,-0.040381588,0.14150411,-0.017023025,0.29693598,0.49666408,-0.13403334,0.09189424,-0.12441939,-0.050225765,-0.49375084,-0.2958052,-0.5416338,-0.37183383,-0.029414216,1.2033798,-0.030265436,0.13363114,0.11802036,-0.4145267,0.0901075,0.13185026,-0.07918519,0.01068301,0.31333938,-0.16904522,-0.62013704,0.35759518,-0.18676978,-0.17567773,-0.42459312,0.2700888,0.7967413,-0.56883854,0.59143895,0.39283165,-0.06460012,-0.31966665,-0.29829696,-0.14344364,0.009051929,-0.101849504,0.24931103,0.25444964,-0.6868897,0.37200046,0.34119055,-0.1826138,-0.8525017,0.55859095,0.013131182,-0.16568424,-0.048134733,0.37019798,0.20743747,0.05839849,-0.4955325,0.2563805,-0.4243208,0.32793555,0.23947053,0.0020869772,0.1561345,-0.2107348,-0.1495605,-0.83741635,0.22573519,-0.5176321,-0.32864356,0.368793,0.045367558,0.2953173,0.34211743,0.15882954,0.30839005,-0.49896303,0.028120646,-0.088257484,-0.22566342,0.092438616,0.3771639,0.45989183,-0.44440722,0.6079463,0.061862785,-0.093325086,0.017961195,0.046420053,0.42397705,0.14340156,0.400254,0.054898053,-0.41833082,0.28095075,0.8365826,0.30954158,0.39887825,0.0783967,-0.20813228,0.094231986,0.08104228,0.32327297,0.07210624,-0.49528828,-0.059634898,-0.11318431,0.113342844,0.3897008,0.06697155,0.284096,-0.04362753,-0.42048398,-0.033844028,0.13509433,-0.037122194,-1.3141135,0.41217938,0.06232362,0.74226624,0.4594265,-0.0024304714,0.05462794,0.61140203,-0.21380068,0.09836569,0.4138259,-0.085578345,-0.61797553,0.60999423,-0.7129157,0.5648691,-0.0034100327,0.061591774,-0.039227765,-0.1159828,0.5246349,0.8713452,-0.042639542,0.13120829,0.15180512,-0.2631711,0.17486703,-0.42271423,-0.0018315626,-0.69879436,-0.28829876,0.6863478,0.40735427,0.4998692,-0.0778774,0.046650544,0.10309234,-0.115407825,0.14794387,0.15176135,0.29182348,0.08806858,-0.8042528,-0.0695431,0.5047156,-0.029217025,0.1490503,0.15250298,-0.34536973,0.3267069,-0.19452988,0.019820148,-0.057768982,-0.8418923,-0.08518051,-0.5914832,-0.45729044,0.10892651,-0.173582,0.16436766,0.30692348,0.02143875,-0.2367162,0.4877883,0.2239006,0.8456035,-0.07695109,-0.27955464,-0.19490308,0.35682333,0.3397119,-0.2572968,-0.06666678,-0.16512902,-0.024801603,-0.5963433,0.42338133,0.023243926,-0.45793784,-0.06657078,0.020306163,0.10753638,0.6102889,-0.08956462,-0.039618988,-0.028495127,-0.334916,-0.27873728,-0.17422058,-0.13789578,0.24826832,0.42999735,-0.052923393,-0.11485674,0.07348907,-0.05598901,0.43126592,-0.08528378,0.56181175,0.5981313,0.25928542,-0.17259717,-0.15680705,0.11292878,0.5598256,0.03775306,-0.16281347,-0.3991412,-0.23529935,-0.32333592,0.39773098,-0.086162664,0.4375945,0.15183316,-0.32025546,0.5396289,-0.13424735,0.93803406,0.045300215,-0.3469925,0.14589624,0.3363441,-0.030574663,-0.16746758,-0.42062807,0.86219674,0.35139504,0.0033434331,0.022649286,-0.42548797,-0.16157383,0.25895542,-0.2769291,-0.26343942,0.0053297975,-0.51212496,-0.28111526,0.23589264,0.18149734,0.23800832,-0.1451693,0.3784156,0.19943862,0.07036758,0.16943836,-0.52288204,-0.08249289,0.4849856,0.37202105,0.028946325,-0.011118789,-0.4639224,0.28939387,-0.52309644,0.04012795,-0.11492163,0.17654686,-0.14556392,-0.40048194,0.2392615,0.25393242,0.35780036,-0.33448777,-0.39780465,-0.35328278,0.55248195,0.18342185,0.12792401,0.45711198,-0.31141332,0.08321486,0.082837105,0.59730333,0.9347866,-0.16395463,0.082315505,0.43065393,-0.37839222,-0.6643949,0.4194484,-0.3154485,0.35666633,0.02688774,-0.12053167,-0.59699565,0.31408677,0.3704879,0.084472,-0.13009435,-0.3652879,-0.19408311,0.39691177,-0.22841424,-0.25519246,-0.45840153,0.052126188,0.46622673,-0.27488202,-0.34070864,0.09348485,0.25788617,-0.3461,-0.31680703,-0.16437665,-0.30734387,0.27573493,-0.13049866,-0.4172682,-0.3003627,-0.20647116,-0.41390717,0.21622084,-0.0070452243,-0.43775022,0.055215564,-0.29041734,-0.21426387,0.95658296,-0.35948744,0.019222012,-0.29691067,-0.5009979,-0.7173676,-0.37010908,0.12613277,0.13619865,-0.12269289,-0.57929677,0.14228702,-0.1651472,-0.32876694,0.10413747,-0.36670926,0.34670186,0.07622239,0.36041972,-0.06693222,-0.76557165,0.36068392,0.14406013,-0.21038824,-0.60496277,0.47199082,-0.034650028,0.8978706,0.033991236,0.15316005,0.3355504,-0.4256055,-0.1737554,-0.00978089,0.013202999,-0.8120989,0.18314576 +422,0.48803526,-0.275356,-0.35190195,-0.038852457,-0.09993102,0.29836157,-0.19579948,0.4667609,0.09770955,-0.28728446,0.10543706,-0.050861895,0.05291864,0.46653196,-0.10957967,-0.38149998,-0.22567381,0.036705766,-0.57179147,0.8089697,-0.25273472,0.19979021,-0.19533612,0.4918108,0.21124892,0.32688975,-0.033866253,0.0669197,-0.09961874,-0.016594289,0.08650063,0.10198606,-0.76109356,0.016977033,-0.2590484,-0.1925423,-0.12647322,-0.36250582,-0.42950276,-0.8204897,0.48367548,-0.84026676,0.80213886,-0.008007535,-0.18254396,0.48851374,0.29153794,0.26354071,-0.2536495,-0.13596341,0.09095667,-0.09356097,0.07312933,-0.23824976,-0.27343908,-0.41781813,-0.6287252,0.009831854,-0.50420946,-0.102654085,-0.2543618,0.14933889,-0.25717214,-0.0805143,-0.13767181,0.37432715,-0.5866736,0.1289976,0.16382237,-0.030452013,0.18286209,-0.6453303,-0.20538683,-0.16509488,0.38737893,-0.134869,0.020235592,0.35624272,0.06111776,0.3357965,-0.056842368,-0.08628961,-0.45160356,-0.19546525,0.004245526,0.43634892,-0.18752834,-0.56078804,-0.09355213,-0.03611308,0.18520345,0.10631316,0.16163956,0.06408094,0.0065287477,-0.11943662,-0.14237085,0.6540347,0.5038363,-0.2560149,-0.5518887,0.34962568,0.6225554,0.33006337,-0.17845607,-0.0763496,-0.012474194,-0.47252512,-0.16379483,0.26794133,-0.11427467,0.4811732,0.025034394,0.191762,0.58229816,-0.30976272,0.07245384,-0.1218433,-0.032084584,-0.010741294,-0.13322154,-0.29492992,0.16901521,-0.3340278,0.34040293,-0.318759,0.5713952,0.18081668,-0.6655176,0.43799525,-0.5963666,0.103154644,0.2151586,0.42717162,0.65668136,0.6165007,0.19700027,0.5969877,-0.12876897,0.06290444,-0.15249808,-0.04057732,-0.018410001,-0.30741692,0.038974915,-0.38494954,0.20985666,0.009632627,-0.23268504,-0.093211465,0.53265244,-0.5345656,-0.08904052,0.05885021,0.9514249,-0.21507004,-0.050507586,0.88237846,0.98568827,1.0807588,0.010154643,1.0076479,0.24855237,-0.26885888,0.1969689,-0.46829328,-0.745423,0.22151871,0.24906988,-0.07370348,0.6579185,0.023141623,-0.03744324,0.223936,-0.43222818,-0.0041908408,-0.18681593,0.13056388,0.2625601,-0.0012788262,-0.2957297,-0.35276583,-0.06279864,-0.06049794,0.32538062,0.2668387,-0.27532652,0.42785883,0.08985416,1.7341765,-0.03222939,0.18230216,0.14331453,0.7692326,0.15951394,0.013569428,-0.09386654,0.4871022,0.3958287,0.22955108,-0.5704878,0.2753366,-0.33624655,-0.51710385,-0.034823824,-0.5075082,-0.16405039,-0.10639221,-0.3134897,-0.24033312,-0.15396579,-0.1659523,0.26697716,-2.780316,-0.048808984,0.05094275,0.4074173,-0.40181535,-0.25308552,-0.22509328,-0.48468757,0.37170935,0.2544094,0.35032937,-0.576572,0.4745646,0.36487192,-0.57281625,-0.063632265,-0.48051253,-0.16905595,-0.05358594,0.5294935,-0.13558885,0.049189754,0.2252318,0.32068482,0.48945612,0.06628381,0.053337425,0.29882982,0.49127752,-0.088330634,0.46358243,-0.16395679,0.3130156,-0.37515283,-0.12845673,0.36303598,-0.4634392,0.27548954,-0.2402494,0.11640591,0.40396675,-0.530807,-0.9955905,-0.62118053,0.08531396,1.0719388,-0.22873987,-0.49885002,0.104120255,-0.5185841,-0.09865444,-0.23637106,0.6548773,-0.22992387,-0.032610383,-0.6848207,-0.12648141,-0.17638287,0.30680385,0.102542825,0.31752592,-0.5151321,0.7233017,-0.05149347,0.4913176,0.06534237,0.19365014,-0.34159857,-0.4947715,0.1263547,0.6509126,0.2792906,0.026880225,-0.2133384,-0.34949446,-0.21537177,-0.04279509,-0.0036984682,0.6824275,0.3975388,0.03892991,0.054221444,0.2792186,-0.26843172,0.2626236,-0.3075994,-0.25164056,-0.23515598,-0.05682716,0.53688055,0.5279399,-0.20112456,0.40237978,-0.06079853,0.34520307,-0.2137054,-0.32867804,0.39450374,1.0275589,-0.17532344,-0.13697301,0.60546035,0.64225256,-0.30234247,0.4286799,-0.69433075,-0.26911953,0.5464705,-0.2973841,-0.4216331,0.2156693,-0.16873321,-0.029452965,-0.8353272,0.11881452,-0.40894917,-0.22078142,-0.56709856,-0.04672418,-3.1814027,0.043794017,-0.08208908,-0.2608527,-0.21950047,-0.1909864,0.12727578,-0.66705424,-0.6656617,0.12792324,0.11101854,0.7154317,-0.17662077,0.12008651,-0.26355058,-0.41788298,-0.4530378,0.23690851,0.22381108,0.47442034,-0.22917387,-0.35346267,-0.027569976,-0.12667163,-0.45595428,-0.0438264,-0.34809965,-0.20284685,-0.18029845,-0.56022155,-0.23725145,0.64006644,-0.19119331,0.009835799,-0.3185815,-0.07239436,0.005425036,0.39614472,0.103700034,0.2570105,0.26490957,-0.28389427,0.15451156,-0.2672927,0.39769608,0.013880354,0.24659704,0.32781643,-0.28527254,0.2090887,0.46646598,0.68313694,-0.019562343,0.8800832,0.4133763,-0.2036442,0.44211754,-0.37116805,-0.19913468,-0.6256402,-0.26334682,0.15499173,-0.26894787,-0.56476396,-0.26707926,-0.390896,-0.7785883,0.4997322,-0.22927181,0.30939704,-0.07079079,0.410641,0.5411151,-0.28628168,0.14554095,-0.002684887,-0.07905109,-0.4579065,-0.15228784,-0.45320204,-0.50703233,-0.038115773,0.8372982,-0.15649104,-0.0815475,0.048439562,-0.35753566,0.078118965,0.13778612,0.04707078,0.15459251,0.44854045,-0.13725218,-0.53137267,0.5062472,-0.14750113,-0.20123275,-0.4618177,0.27423304,0.46949443,-0.6530263,0.5177943,0.30904302,0.063616715,-0.39870936,-0.55168986,-0.056189425,0.0786242,-0.02839927,0.17468552,0.1832566,-0.75890297,0.31186494,0.15782166,-0.3271223,-0.74901885,0.6382128,0.01548455,-0.4082283,-0.054800034,0.4057683,0.13069002,0.0050554615,-0.33713886,0.2734945,-0.5117283,0.13940278,0.028297368,0.0008667537,0.29838613,-0.12974034,-0.1795794,-0.756178,0.2891956,-0.4910232,-0.39698607,0.524845,0.19781365,0.010715208,0.1636437,0.09653983,0.46794388,-0.21501009,0.12714069,-0.11188483,-0.25796962,0.38853928,0.36705837,0.48956823,-0.5695868,0.61383694,-0.0701718,-0.1073113,0.18590626,0.066907115,0.41633382,-0.08151679,0.4705317,0.22197826,-0.246896,0.1966565,0.6336876,0.26738885,0.40756986,0.049194477,-0.26752704,0.28187412,0.054029506,0.09143048,0.005382214,-0.45582086,0.023737554,-0.0024971557,0.04478589,0.49005747,0.115686946,0.20058759,-0.15427086,-0.25666302,-0.01776385,0.3138607,-0.2413671,-1.1708087,0.1960263,0.07094621,0.928292,0.5157298,-0.022437086,0.15710711,0.6550441,-0.16900866,0.0417799,0.45170793,0.23457643,-0.608389,0.61086494,-0.5799716,0.51529473,0.005578088,-0.09500701,0.09182258,0.043517265,0.46289402,0.7759555,-0.17589186,-0.07579684,0.015157102,-0.22822773,0.20884669,-0.36708575,0.19763856,-0.4929857,-0.20074601,0.5792802,0.46132162,0.45833638,-0.09253546,0.008708437,-0.021437477,-0.15962103,0.35293594,0.06710435,0.14878769,-0.107592575,-0.7301674,-0.16067235,0.5856128,-0.19591309,0.0840566,-0.0023438972,-0.3289215,0.28531665,-0.2060405,0.015241095,-0.046595413,-0.82475036,0.14858712,-0.24396488,-0.34172317,0.47461972,-0.109338276,0.28301445,0.28009948,0.004910086,-0.41281524,0.1865276,0.10432314,0.62770563,-0.04016419,-0.2004932,-0.5208643,0.0615863,0.20895854,-0.33338594,0.10827153,-0.034614928,0.08133624,-0.43173236,0.4173197,-0.06970885,-0.36305103,-0.20225546,-0.1434696,0.12335084,0.7094494,-0.09395925,-0.07107345,-0.23564592,-0.19172096,-0.2898768,-0.21376733,-0.14042373,0.14222762,0.2708524,-0.12678018,-0.1616937,-0.031105667,-0.115892984,0.6213398,0.11149181,0.4235289,0.47975513,0.23708834,-0.27927262,-0.0007741622,0.20613411,0.5119666,0.0023726565,-0.1135131,-0.48613718,-0.41332576,-0.34027752,0.5614506,-0.14068247,0.21766078,0.12959789,-0.34883627,0.8160714,-0.051936906,1.0106288,0.06982335,-0.381327,0.26770094,0.6826928,-0.062456913,-0.14917724,-0.6275717,1.0412077,0.48023817,-0.09319741,-0.07399974,-0.1303223,-0.09242435,0.10408329,-0.3403791,-0.13251686,-0.10699083,-0.58040756,-0.1543971,0.20483677,0.26678714,0.1489532,-0.17381987,-0.022544865,0.16237238,0.07440383,0.3572742,-0.4151704,-0.19848537,0.5045767,0.032154977,0.14849196,0.09954219,-0.34046537,0.27224487,-0.43112653,0.14639293,-0.36369988,0.18115386,-0.19556251,-0.37070227,0.30340335,0.06431528,0.3953523,-0.33143035,-0.4862779,-0.2436816,0.33442876,0.19848405,0.1808431,0.4783679,-0.2717629,0.15566148,0.031074833,0.5322277,0.84745824,-0.13123752,-0.045726426,0.1487982,-0.43282494,-0.79460174,0.32511896,-0.36910948,0.290227,-0.07845278,-0.0017323217,-0.4907042,0.24978428,0.1862584,-0.12554142,-0.094841205,-0.7560924,-0.42322785,0.14124645,-0.27481326,-0.17789292,-0.38515943,0.03351814,0.80156404,-0.27419737,-0.3443749,0.076322995,0.20918392,-0.12574497,-0.65469295,-0.073769234,-0.40126732,0.25817078,-0.022725407,-0.2516697,-0.1987551,0.120135084,-0.5185973,0.19996145,0.08826111,-0.38355398,-0.11349627,-0.3788331,0.015067009,0.9469643,-0.2881828,-0.10703581,-0.36828607,-0.49102113,-1.0139692,-0.3408982,0.18248634,0.1478348,0.042630352,-0.68354654,0.08210137,-0.16535392,-0.19723992,0.028632984,-0.4721512,0.26155514,0.09576897,0.39033198,-0.22514309,-0.6627054,0.32188097,0.08465792,-0.11347612,-0.5930975,0.521262,-0.09352287,0.8455184,0.01675388,0.10198307,0.21928863,-0.5345654,-0.15681846,-0.0819158,0.0036873263,-0.67283183,0.26782647 +423,0.17450686,-0.3215367,-0.23146237,-0.1093061,-0.26150414,0.26480034,-0.3029692,0.36652955,0.13357067,-0.5760895,-0.25155082,-0.27431324,0.13692135,0.63099337,-0.13202439,-0.6163279,0.06959368,0.10688821,-0.492023,0.44421047,-0.5217449,0.45039812,0.20660591,0.28736213,-0.059265703,0.17875536,0.37440988,-0.1331115,0.07365471,-0.30491823,-0.15333983,0.24343614,-0.5422788,0.31108046,-0.11757109,-0.51060784,0.23636536,-0.5824417,-0.27113977,-0.6858142,0.22607468,-0.8694658,0.6317944,-0.038102753,-0.040527552,0.20519061,0.20277123,0.38079765,-0.07243767,0.12604472,0.11072507,-0.15127836,-0.2631093,-0.066593125,-0.22181252,-0.4969624,-0.58832854,0.07946729,-0.4922426,-0.28351766,-0.13676035,0.15358898,-0.21327087,0.2196655,-0.14418535,0.27232677,-0.36939612,-0.103866674,0.36548916,-0.26523915,0.14583215,-0.5756606,-0.12458937,-0.053820055,0.39461032,-0.2999998,0.017925696,0.13987368,0.3605245,0.6201275,0.1117092,-0.21682313,-0.30472523,-0.17106536,0.031174025,0.7182098,-0.06465888,-0.5097851,-0.23251216,-0.048545156,0.19676927,0.1905925,0.17205824,-0.22649513,-0.103144825,-0.025400281,-0.3235469,0.32692358,0.333901,-0.50993246,-0.5048403,0.25618,0.6762633,0.09746911,0.043194972,0.029585311,0.10287325,-0.5541935,-0.10386997,0.13768753,-0.11610566,0.46469876,-0.14833894,0.41661957,0.64101034,-0.07177256,0.058774106,-0.12532409,-0.20487969,-0.3324189,-0.16416833,-0.18997996,0.22357742,-0.38133842,0.044468444,-0.32236502,0.9429664,0.13663307,-0.5779472,0.38591933,-0.5645444,0.037952032,0.06336967,0.5924922,0.649376,0.28627226,0.1611376,0.49209502,-0.3915686,0.0060060746,-0.3603735,-0.32267937,-0.15274069,0.0009897436,0.103117265,-0.37007594,0.16677652,0.00941429,0.10910934,0.07996808,0.46273014,-0.59502256,-0.015267645,0.12840493,0.88498324,-0.3213567,-0.18887106,0.87957084,0.94258803,0.8296442,0.03384297,1.4037564,0.32208186,-0.14669213,-0.027309602,-0.33157334,-0.51740295,0.19702442,0.52023274,0.13024853,0.32093,0.11049873,-0.04123809,0.6259493,-0.3561242,-0.02768018,-0.14647171,0.06579482,0.100817814,-0.10833268,-0.54677373,-0.15522416,0.0922444,-0.04984365,0.50547594,0.25196424,-0.15849778,0.4568694,0.03523395,1.6113132,-0.14097434,0.236976,0.0135750575,0.2922983,0.22214384,-0.030239698,0.021092827,0.1291293,0.40514305,-0.080983795,-0.66789776,0.12854739,-0.13632941,-0.5031573,-0.32117683,-0.16185501,-0.20705445,0.017460538,-0.41392916,-0.011008016,-0.08646778,-0.1738619,0.42418644,-2.64875,-0.31667137,-0.24736242,0.27032727,-0.33276513,-0.45658556,0.008092955,-0.5189938,0.6201319,0.3739802,0.42978913,-0.5450265,0.55896705,0.50018233,-0.49287412,-0.26734415,-0.67040443,0.021477597,-0.08765496,0.30189925,0.11455909,-0.2831519,-0.05948656,0.14881788,0.576094,-0.084611736,0.07766138,0.17700407,0.46364778,0.15380494,0.5464991,0.018188324,0.6475112,-0.31555787,-0.25302845,0.4051268,-0.2792676,0.34445506,-0.29862112,0.14069577,0.35829896,-0.24554984,-0.8120912,-0.78167075,-0.6683046,0.9347786,-0.08490475,-0.3873101,0.15736888,0.051930554,-0.22100125,-0.06347729,0.48920673,-0.29646578,-0.05573821,-0.75157374,0.08166443,-0.11106078,0.2956678,-0.04832266,-0.059604533,-0.69434303,0.63496196,-0.13354206,0.4046684,0.35694915,0.293505,-0.28847334,-0.30816394,0.018567953,0.96562153,0.38584214,0.124653734,-0.14495994,-0.35406017,-0.25722274,-0.15586363,-0.11091669,0.61572725,0.6110595,0.12607212,0.02878545,0.29755583,0.003954717,0.12280936,-0.14027603,-0.1908083,-0.022011185,0.08363377,0.6453921,0.4323639,-0.18322925,0.43494654,-0.27199706,0.46464723,-0.2520052,-0.46804348,0.5883406,0.6851962,-0.21851103,-0.11735307,0.70064014,0.46439764,-0.17839466,0.28911307,-0.794969,-0.3206084,0.4075219,-0.18665262,-0.46675247,0.13519272,-0.09648828,0.06974346,-0.99014616,0.15689568,-0.32197165,-0.366523,-0.6411319,-0.19133177,-3.9692307,0.14561664,-0.11587562,-0.11979196,-0.08856209,-0.2641801,0.12287271,-0.57938385,-0.4825146,0.27953306,0.025413213,0.513558,-0.0013436835,0.19486694,-0.36404043,-0.18503262,-0.076772414,0.20768584,0.042928156,0.24011335,-0.04800402,-0.3998582,0.27348152,-0.22198136,-0.5895559,0.13234709,-0.7536889,-0.3420598,-0.28625575,-0.5497028,-0.21450898,0.69223934,-0.4241991,0.13433237,-0.27322772,0.13989545,-0.2508285,0.45311883,-0.0023013353,0.1145869,0.16410144,-0.11123622,-0.010159408,-0.34498987,0.43497974,0.11338342,0.14951739,0.3964804,-0.13862668,0.17737392,0.3295452,0.56826895,0.045912843,0.73044294,0.41691118,-0.11041236,0.38430968,-0.24818571,-0.28043488,-0.4073533,-0.36078352,0.07494485,-0.38053554,-0.65638924,-0.25754127,-0.27840582,-0.781931,0.5781104,0.1882409,-0.17267905,-0.15137707,0.25057805,0.39550108,-0.39183745,-0.022345887,0.019015511,-0.04292488,-0.5038108,-0.4709713,-0.5385206,-0.5122346,-0.08538556,0.90791035,-0.06786333,0.040824283,-0.008073858,-0.10828079,-0.023117809,0.2537177,0.26696655,0.11826155,0.41973883,-0.23321724,-0.6359846,0.63507235,-0.23086299,-0.52464724,-0.58670574,0.15896378,0.6364145,-0.6654271,0.5897784,0.44707564,0.07624163,-0.15662548,-0.3632087,-0.14171429,0.1880859,-0.27232844,0.30436006,0.16390316,-0.7221082,0.57993,0.38155314,-0.16516478,-0.7667154,0.47880435,-0.017170131,-0.2900353,0.031047668,0.34857896,0.27192792,0.15887877,-0.25059995,0.013417006,-0.49153313,0.16395353,0.08207368,0.011785588,0.7452058,-0.4087263,-0.0857914,-0.81236523,-0.063515976,-0.4609786,-0.15843986,0.041591186,0.0021164545,0.094152756,0.32746193,-0.0820359,0.46367216,-0.41659683,0.15667917,0.003820679,-0.18635042,0.056373987,0.4079681,0.24916694,-0.35635558,0.56119156,0.03439465,-0.093738794,-0.08918439,0.019297361,0.505665,0.1401669,0.41840822,-0.33651093,-0.16719493,0.32929987,1.0116872,0.06524175,0.35736564,0.123816766,-0.15660265,0.28020713,-0.037036676,0.024980443,-0.003602228,-0.5392687,-0.032324374,-0.10082921,0.04203844,0.56491166,0.22657715,0.48521465,-0.05956555,-0.41817483,0.05376563,0.12055659,0.077733524,-1.0768858,0.110863246,0.17203477,0.8780119,0.2902221,0.029509654,0.12391822,0.5593647,-0.35702276,0.07492687,0.15409632,-0.037673082,-0.36481762,0.6682654,-0.59859246,0.41469225,-0.0947836,-0.052757483,0.0051511205,-0.22157037,0.33767456,0.8724564,-0.15227413,0.088228464,-0.0714064,-0.109226905,0.038117208,-0.3215027,0.16523328,-0.38512024,-0.23310542,0.74227524,0.56027925,0.51024634,-0.19466053,-0.06205738,0.2879345,-0.06978581,-0.0034796128,-0.019233465,0.19850731,0.01115541,-0.5230819,-0.21144918,0.6416216,0.12743755,0.24035752,-0.0273004,-0.46479088,0.33533984,-0.029429352,-0.054209154,-0.062603034,-0.76276875,-0.007595586,-0.3738239,-0.50360173,0.3303886,-0.07721293,0.08148186,0.11309111,-0.0043114848,-0.26121324,0.4323837,0.14364685,0.8604945,0.31717187,-0.05249834,-0.37840584,-0.026006013,0.22141278,-0.34612226,-0.033119135,-0.26269153,0.1579567,-0.7479083,0.391843,-0.013604641,-0.26989213,0.21149406,-0.16362545,0.033225738,0.48278075,-0.052416228,-0.08748401,0.27156106,-0.34476417,-0.19750714,-0.1983585,-0.16187096,0.29977673,0.14006975,0.17619897,-0.017867966,-0.21080852,-0.4266982,0.5471727,0.16856553,0.16444115,0.3818748,0.134218,-0.24132085,0.011260362,-0.04464885,0.4730899,-0.23415148,-0.1515424,-0.22622347,-0.53088665,-0.3259289,0.27087834,-0.039291166,0.2438642,0.009822324,-0.28097695,0.65937096,0.0047761714,1.0027747,0.15218432,-0.49760434,0.122090645,0.4498008,0.027927687,0.032395426,-0.42061177,1.0304672,0.41202635,0.054189008,-0.13354717,-0.3854055,0.043237936,0.20367728,-0.24438055,-0.14784253,-0.21488857,-0.7631267,-0.28183585,0.19997308,0.31887075,0.10352332,-0.05071176,0.14415905,0.2570021,0.09267426,0.52832264,-0.71744496,-0.08856384,0.42508665,0.3542646,-0.05313899,0.03456038,-0.42949706,0.50360614,-0.55399126,0.1260715,-0.5482796,0.1347014,-0.32200438,-0.051934667,0.2100269,0.059792865,0.3034699,-0.30706105,-0.45071214,-0.093070924,0.4173587,0.18907571,0.05381904,0.7594968,-0.13886294,-0.08086334,-0.06592203,0.6927709,1.2125558,-0.5119753,0.051608827,0.45171443,-0.3416086,-0.44437608,0.2627904,-0.2854376,0.03727588,0.082834825,-0.23484854,-0.37902212,0.27195656,0.11495775,0.023380103,0.09293378,-0.352803,-0.09045548,0.34630826,-0.4062038,-0.22433321,-0.25531742,0.35596296,0.82777214,-0.15378727,-0.2768391,0.08138519,0.44192547,-0.37356868,-0.63044745,-0.11060302,-0.22869632,0.41523427,0.14915879,-0.27224967,-0.26709023,0.05256788,-0.3885041,-0.076521985,0.27394503,-0.36499643,0.115002,-0.42165485,-0.015683489,0.8726725,-0.0716542,0.21985865,-0.8523143,-0.34418252,-0.88355356,-0.43014625,0.5655098,0.2379932,-0.11682507,-0.39016205,0.015400307,-0.11759029,-0.16658977,0.039312597,-0.34463933,0.30102667,0.20489776,0.4953905,-0.1484975,-0.6589981,-0.016832232,0.040842097,-0.2164872,-0.39178547,0.47347063,0.06602046,0.8683906,0.04235202,-0.029261377,0.28321356,-0.47815588,0.115951546,-0.3166781,-0.09104635,-1.0542707,0.0860079 +424,0.39630306,-0.018253805,-0.40479007,-0.24491388,-0.32377306,0.044087667,-0.04304913,0.24412547,0.40460846,-0.34110063,-0.020516817,-0.12159344,-0.054688156,0.25859916,-0.050124187,-0.695874,0.023444887,0.11865546,-0.7429116,0.42094472,-0.42816338,0.42384127,0.11432659,0.28158957,0.0459857,0.19469574,0.035061084,-0.05719238,-0.09524098,-0.14309913,-0.075751506,0.15335807,-0.7521449,0.20601335,0.024090687,-0.2325899,-0.07452585,-0.32562,-0.3036641,-0.71027046,0.33721587,-0.86281747,0.72081065,-0.09058372,-0.44326767,0.15255481,-0.0070475433,0.3327615,-0.27023947,0.112749845,0.1657088,-0.17312127,-0.017309513,-0.06973385,-0.24272805,-0.42246026,-0.54140514,-0.0688916,-0.5342331,-0.21491726,-0.21216121,0.09388613,-0.3212032,-0.0069362842,-0.33505934,0.59777075,-0.30289915,0.17616533,0.33196527,-0.0745375,0.32725284,-0.5365897,-0.1210234,-0.099043556,0.24579018,0.0012864516,-0.40973324,0.22955292,0.45527446,0.60138994,0.12950668,-0.2760054,-0.013875102,-0.0005044662,0.22335275,0.26791736,-0.12548737,-0.15783618,-0.19861962,0.006562545,0.34378022,0.25339985,0.15229186,-0.4572215,0.16868351,0.2002435,-0.111772224,0.38252783,0.4170317,-0.21018857,-0.34156746,0.4345654,0.461455,0.08413121,-0.022504646,0.3116728,-0.044370174,-0.5111571,-0.27629867,0.23269114,-0.23905778,0.3955683,-0.159988,0.019095797,0.8298267,-0.10359387,0.11722593,-0.09134357,-0.24007362,0.08208111,-0.36966366,-0.070608914,0.063347265,-0.5743961,0.02457019,-0.17467025,0.62953925,0.15104273,-0.73813045,0.25893575,-0.57740474,0.12696533,-0.1054264,0.61534315,0.84453744,0.33091074,0.15259555,1.0236707,-0.658797,0.03177016,0.07463697,-0.24156544,0.10590862,-0.24151272,0.27654558,-0.6140523,-0.1791061,-0.04127513,-0.20205964,0.01647285,0.14096847,-0.51484346,-0.22510716,-0.07193132,0.5158062,-0.3227188,-0.039891087,0.8190402,1.0651349,0.96525824,0.2567377,1.4902766,0.5052729,-0.16430578,0.250513,-0.29221052,-0.65388334,0.07318462,0.23509052,-0.19240904,0.34478074,0.004177121,0.014246175,0.2985534,-0.42427033,0.119856246,-0.09870657,0.349189,0.033485804,-0.2954009,-0.40566808,-0.16097243,0.14972483,0.045378625,-0.050803706,0.116787106,-0.16637124,0.35098642,0.25855824,1.120469,-0.120795846,-0.025818206,-0.036749817,0.28174078,0.25126413,-0.25483146,-0.050661363,0.3648104,0.45008132,-0.16518325,-0.54948395,0.12641829,-0.25926372,-0.27603355,-0.27570868,-0.275588,0.0966157,-0.14251496,-0.25105202,-0.2749926,0.047610685,-0.461832,0.445168,-2.475235,-0.25808552,-0.24337919,0.3370595,-0.20958193,-0.27890533,-0.21666907,-0.44749722,0.27990717,0.32829005,0.3342277,-0.72767985,0.2732803,0.30746365,-0.43366578,-0.053193636,-0.7252028,-0.05892458,0.04444492,0.24284817,-0.046859972,-0.07611963,-0.274332,0.23905018,0.6357749,0.15543197,0.10060258,0.34154174,0.34072953,-0.049056835,0.42886177,0.21457675,0.5988404,-0.09661767,-0.13730057,0.46138972,-0.33849785,0.14529784,0.1688517,0.09582094,0.33459914,-0.4488705,-0.671854,-0.76007926,-0.5061782,1.2840018,-0.35101095,-0.4253163,0.40596274,-0.26873118,-0.19437233,0.12331472,0.43707854,-0.050291777,0.06590022,-0.8196815,-0.044381417,-0.06581555,0.23675473,-0.15307906,0.05601341,-0.2642222,0.76467663,-0.25886977,0.48691857,0.31915563,0.12470496,-0.12399439,-0.41693908,0.09718038,1.1767921,0.5764892,0.060371988,-0.03767349,-0.18411261,-0.3151739,-0.22414629,0.1473049,0.6150785,0.75973547,-0.11328027,0.07465534,0.33656108,-0.23547648,0.07369772,-0.08355352,-0.37694675,-0.020945854,-0.0048247394,0.46787754,0.35577643,-0.081851594,0.49297982,-0.20987852,0.11326362,-0.14805458,-0.62953365,0.5439699,0.7950363,-0.268285,-0.34108666,0.48766863,0.25880587,-0.34314328,0.35127798,-0.47147718,-0.12258832,0.73728245,0.05000815,-0.5129045,-0.019237537,-0.32957327,0.25399467,-0.95765746,0.3258511,-0.24252878,-0.73135847,-0.41001722,-0.03335099,-3.2143795,0.13631564,-0.2870391,-0.07040773,-0.23049249,-0.079849295,0.41003454,-0.23998588,-0.6316806,0.061719675,0.024998458,0.4802146,-0.08891915,0.03937833,-0.24156204,-0.16296816,-0.40179268,0.15940025,0.06274398,0.18118931,-0.055376265,-0.3623366,0.10356298,-0.16268939,-0.610448,-0.06909909,-0.65994805,-0.5974986,-0.21142942,-0.5141543,-0.34487432,0.7148742,-0.41543177,-0.1630249,-0.2898213,-0.02270616,-0.12854198,0.30842498,0.106375895,0.22492291,0.012055278,-0.033119086,-0.26851672,-0.3383789,0.14668491,0.08484212,0.29932266,0.3961738,-0.18288375,0.3143615,0.50001436,0.6401175,0.007933129,0.72997135,0.34596106,-0.17347775,0.31403765,-0.31200355,-0.17465805,-0.7268967,-0.38288307,-0.18016389,-0.4251427,-0.43357518,-0.21664923,-0.31634837,-0.8781365,0.33985144,0.08462755,0.32414386,-0.040831126,0.38344413,0.33942035,-0.03465297,0.14426345,-0.20805107,-0.28768215,-0.5961917,-0.35581487,-0.7282139,-0.47893354,0.29911476,1.1561017,-0.21799073,0.02126766,0.02742206,-0.52712506,0.18717942,0.0830969,0.10342912,0.14030518,0.57515645,-0.09406022,-0.7106615,0.1581572,0.036185358,-0.06127762,-0.73924726,0.12303435,0.9711578,-0.693153,0.6833133,0.17638408,0.16290379,-0.066909954,-0.45899013,-0.23495704,0.20348889,-0.33653846,0.4753328,0.29204985,-0.44917887,0.36537236,0.2852925,0.0155360745,-0.6734565,0.4155647,-0.013938487,0.019363683,0.07823208,0.36875102,-0.09639395,-0.08243867,0.008304522,0.2542878,-0.4351216,0.41033384,0.44504377,-0.08577215,0.14962788,0.050841827,-0.305496,-0.64302987,-0.012827177,-0.5344296,-0.35480732,0.048911598,0.0907575,0.09082479,0.2514024,0.19741638,0.43097016,-0.10957505,0.12779514,-0.14687073,-0.36896196,0.51638174,0.5383764,0.24162579,-0.36751133,0.57211185,0.08215862,-0.1154579,-0.23594628,-0.021018948,0.5064787,0.2522072,0.40229636,0.05427322,-0.09603036,0.18964837,0.711423,-0.01925375,0.3105148,0.0833752,0.013063293,0.31228703,0.168004,0.1546723,0.024498655,-0.39771354,-0.06115124,-0.10039529,0.2181209,0.36116126,0.17507178,0.2334589,-0.029740917,-0.20407027,0.013224089,0.10034631,-0.12621102,-1.3512925,0.3930456,0.27528778,0.54332757,0.5414134,0.0026997786,-0.0031827688,0.41223437,-0.24862854,0.18829148,0.35416126,-0.10152991,-0.31173283,0.44900566,-0.68871665,0.48415044,-0.1615196,0.093084306,0.14498861,0.27843747,0.35307,1.0120579,-0.21041848,-0.07401185,-0.007659509,-0.26323408,0.25250325,-0.3012723,0.17130746,-0.59372437,-0.4775039,0.60764587,0.47947404,0.2502784,-0.38432154,-0.051585987,0.063685685,-0.2664981,0.13443568,-0.09781342,-0.15655789,-0.055748977,-0.54035145,-0.28533944,0.47940624,-0.15678413,-0.03243607,0.13048063,-0.19806473,0.15408958,-0.2854063,-0.0028294371,-0.12627387,-0.7289327,-0.2333779,-0.27962878,-0.27218756,0.18696631,-0.42138177,0.23454425,0.20134884,-0.02457278,-0.27077252,0.05934809,0.05254358,0.5832682,-0.1564843,-0.24030334,-0.20277113,0.13452438,0.19774477,-0.32472903,0.094530806,-0.21236,0.09854702,-0.59574085,0.49477312,-0.20966905,-0.2786558,0.1674896,-0.21360819,-0.12049552,0.3562786,-0.51733124,-0.1403374,0.052789908,-0.22185446,-0.1883355,-0.16625541,-0.23296309,0.22534928,0.10611351,0.07715516,0.061444107,-0.09145835,-0.15128615,0.14012533,0.33705804,0.26459035,0.42022097,-0.13693883,-0.32880914,-0.014555454,0.10217486,0.36712232,0.23081493,-0.09001963,-0.08177047,-0.20119897,-0.28522727,0.33092964,-0.15928017,0.29744637,-0.054471496,-0.558158,0.82793087,0.31396323,1.2622002,0.04425278,-0.2990949,-0.05384693,0.5283266,-0.026142888,0.056309693,-0.29404518,0.8317548,0.63123256,0.011293248,0.020814218,-0.3961516,-0.2064008,0.45484847,-0.105030864,-0.07381043,-0.053193577,-0.7852446,-0.3624808,0.15508237,0.2596746,0.00036241917,0.20251785,-0.025024153,-0.020964792,-0.051369388,0.36034277,-0.51622677,0.07006494,0.16215992,0.19090572,0.121132426,0.2803474,-0.3935377,0.35202518,-0.7792173,0.22294298,-0.20127241,0.082724735,0.035722487,-0.12465123,0.10062293,0.17797372,0.40301242,-0.41143835,-0.29046035,-0.2979832,0.7245986,0.17088653,0.26688144,0.8372272,-0.23929961,-0.033013783,0.24532267,0.5439196,1.3293959,0.09253732,0.16186784,0.19214351,-0.40023917,-0.6809286,0.28896403,-0.24002345,0.19083785,-0.08243525,-0.32289308,-0.25724214,0.3143185,0.06372233,-0.06704041,0.109095015,-0.5839258,-0.27606624,0.42453912,-0.4142814,-0.29002765,-0.33664423,0.20151402,0.5315675,-0.29196402,-0.29340628,0.0010971198,0.2600319,-0.4295743,-0.47154668,-0.048225682,-0.19367114,0.35731757,0.06106599,-0.37822664,0.036604814,0.2780928,-0.5513864,0.005415169,0.24259421,-0.30215746,0.051635504,-0.09446837,-0.16578914,0.7524642,0.0077367653,-0.117277674,-0.6709784,-0.58102715,-0.6679788,-0.21535787,0.27933085,0.2191318,-0.044875327,-0.47426522,-0.17999472,-0.21404082,0.3127795,0.15718427,-0.55120736,0.44777945,0.21670048,0.4863715,-0.04583697,-0.93,0.04485925,0.04891257,0.09444007,-0.6222467,0.5751849,0.08204706,0.607551,0.096242204,0.08583819,0.1633679,-0.55744195,0.3192653,-0.3088163,-0.14190769,-0.6887707,0.11450188 +425,0.63436127,-0.1755228,-0.61630726,-0.13695338,-0.31202766,-0.110784926,-0.15061116,0.66157466,0.3209379,-0.36279625,-0.2822427,0.056740057,-0.10099316,0.28743002,-0.2286062,-0.47472933,-0.06444293,0.20787796,-0.44348237,0.6259974,-0.3619863,0.18560563,-0.03456207,0.5696914,0.3296148,0.24152054,-0.11523726,0.013747581,0.022528056,-0.30749288,-0.06541533,0.20785879,-0.5247859,0.26004437,-0.29063788,-0.36228338,-0.12877552,-0.54814273,-0.5614254,-0.7735795,0.16553552,-0.7259819,0.5872865,0.056000404,-0.36412674,-0.032665737,-0.049240913,0.30754372,-0.31501445,-0.029066173,0.0063680154,0.092453666,-0.08455753,-0.16481256,-0.061632693,-0.21508637,-0.55139506,-0.11252514,-0.27784505,0.15839458,-0.2021469,0.20993216,-0.14066336,-0.032294605,-0.1157239,0.72281665,-0.45807192,0.18120928,0.0530485,0.028821,0.26578456,-0.5935115,-0.23500511,-0.19252996,0.15966387,-0.17670575,-0.416087,0.21940483,0.102706656,0.3308459,-0.10075863,-0.085386135,-0.27044436,-0.019872086,-0.00087690353,0.41337866,-0.26481313,-0.61145085,-0.2511931,-0.035985835,0.33358595,0.2745807,0.09419004,-0.35749206,-0.03872076,-0.22100623,-0.2279457,0.44454917,0.5743796,-0.23665275,0.03143953,0.28104925,0.42799434,0.3686151,-0.17577298,-0.021455662,0.016854847,-0.655021,-0.16835071,-0.063169524,-0.16146655,0.442015,-0.020913819,0.1576301,0.46447882,0.022874882,-0.2182579,0.27459806,0.15666585,-0.01833473,-0.34592596,-0.47295782,0.35138136,-0.49974412,0.2482539,-0.08227015,0.6535115,0.12898639,-0.8523919,0.14132546,-0.49199036,0.07007295,-0.11742789,0.40647432,0.7215504,0.56935453,0.18733826,0.6017745,-0.33655867,0.1056134,-0.017607663,-0.31972772,-0.029515719,-0.043854367,-0.28857806,-0.49518687,-0.04271675,-0.121556155,-0.18259227,0.15383497,0.40943772,-0.5163776,-0.2648416,0.10385474,0.7110124,-0.31557122,-0.029567106,0.7978953,1.1983621,1.082084,0.076934196,1.1038462,0.08074614,-0.24415085,0.15649326,-0.14443932,-0.73931086,0.38192096,0.3361455,-0.40233845,0.39512986,-0.011280651,-0.0337875,0.31258565,-0.37766668,-0.18588468,-0.072400086,0.19913563,0.04185152,0.028196242,-0.58850735,-0.3279216,-0.07925109,0.118930325,-0.031259477,0.24452206,-0.23048033,0.4527429,0.172555,1.3007624,-0.035175834,0.0008074785,0.17648885,0.48574534,0.29302746,-0.18352115,-0.19931439,0.29937434,0.39476633,0.056722987,-0.5287546,0.04283396,-0.21810542,-0.3613736,-0.033754766,-0.27873677,-0.13952886,-0.106193915,-0.47791976,-0.20441844,-0.032931842,-0.20754528,0.46084756,-2.7126968,-0.049163792,-0.13218336,0.18407226,-0.20724156,-0.39083338,-0.124125816,-0.3892457,0.40092844,0.2271644,0.61618537,-0.6107799,0.34997422,0.55870515,-0.5864725,0.056553874,-0.57563305,-0.19647874,0.13940477,0.35882112,0.00053956464,0.09702446,0.046380486,0.2506862,0.525581,0.07543576,0.19760169,0.3740897,0.29029018,0.06003912,0.5662776,-0.054706216,0.4529794,-0.36895055,-0.1801268,0.23235513,-0.38118345,0.18078259,-0.119050786,0.094334744,0.63489324,-0.68884426,-0.8741881,-0.61478424,-0.036570378,1.2182579,-0.26930478,-0.25693187,0.22302654,-0.5380831,-0.26591572,0.049504016,0.4107198,-0.20757388,-0.039369863,-0.80127144,-0.20967259,-0.025966397,0.28302065,-0.051016536,-0.050735623,-0.3762212,0.6179264,0.04205048,0.55786747,0.38197055,0.062542446,-0.291984,-0.5761835,0.07140344,0.75732505,0.40617082,0.2648421,-0.30451888,-0.052055273,-0.39719483,0.20452182,0.10460179,0.72859234,0.65592927,-0.15648553,0.057121404,0.25433022,0.1767486,0.10651392,-0.19931455,-0.24049668,-0.28828558,0.08052977,0.6433231,0.7021541,-0.082343556,0.25721404,0.009844899,0.4208828,-0.14152355,-0.42713237,0.41605425,1.0726004,-0.12775534,-0.4650806,0.6774177,0.6066043,-0.15412576,0.4334535,-0.4852216,-0.24707203,0.27177387,-0.06223883,-0.38562134,0.27978355,-0.29251167,0.22415796,-0.8327598,0.19327047,-0.47771695,-0.63000154,-0.6331008,0.004480596,-2.7177727,0.32194063,-0.100119285,-0.23440015,-0.120582126,-0.2016449,0.22732806,-0.5165502,-0.7410296,0.20498304,0.056424435,0.66456497,-0.15186153,0.04980923,-0.05833157,-0.3504855,-0.30270982,0.21367595,0.3889645,0.32833046,0.07241466,-0.5211568,-0.29872963,-0.113840096,-0.39991996,-0.00025872674,-0.7210652,-0.33951154,0.01485981,-0.69187653,-0.17639923,0.5015412,-0.24100903,0.03769624,-0.04013914,0.07962065,-0.06280477,0.18233855,-0.116498984,0.2164621,-0.0434807,-0.11208952,0.10338408,-0.1163725,0.183894,0.100217715,0.24360272,-0.053383876,-0.23642926,0.17668514,0.51952803,0.8633243,-0.117238395,0.93654007,0.47509387,-0.114097916,0.2590469,-0.21039137,-0.3947629,-0.5237261,-0.15318504,-0.0361228,-0.40830275,-0.21532081,0.03221074,-0.42205328,-0.82800376,0.6015983,-0.04944551,0.070246294,0.030915039,0.080601655,0.6264333,-0.13417788,0.03029327,-0.06965578,-0.11579711,-0.5255558,-0.28698045,-0.63493824,-0.28410107,-0.12142681,1.250857,-0.26933554,0.10197952,0.083103836,-0.32839075,0.10075688,0.30067566,-0.12938455,0.119429015,0.3615783,-0.07394147,-0.6165782,0.27199104,-0.09524324,-0.2521247,-0.50286543,0.29928213,0.6815314,-0.6123695,0.63502795,0.28056353,-0.047875278,-0.34308004,-0.59208155,-0.2446319,0.08848763,-0.18080674,0.60041434,0.40083867,-0.6909718,0.34220117,0.37471056,-0.25792366,-0.7364909,0.68399274,0.035487644,-0.29390875,-0.1047488,0.45500994,0.013516622,-0.07547135,-0.034347627,0.24364607,-0.1205814,0.30897194,-0.0061986274,-0.17288415,-0.119330205,-0.27890903,0.036484446,-0.82607746,0.04028062,-0.48833588,-0.35075393,0.44632095,-0.013452434,0.119615674,-0.04082489,0.11675453,0.3973896,-0.2442921,0.020637367,-0.31080046,-0.3381803,0.5207762,0.5353474,0.54908544,-0.20496342,0.51562476,0.06679062,-0.006016714,-0.04719798,0.19562839,0.35235718,-0.18995993,0.4386606,-0.008116952,-0.20507877,0.25629407,0.53738904,0.30896482,0.2833642,0.011987345,0.115085684,0.1997569,0.0889522,0.3305977,-0.021777919,-0.5941447,0.016723577,-0.30260405,0.11282454,0.47605518,0.07105429,0.09206401,-0.15332188,-0.36041954,0.0043454575,0.12019849,0.18994963,-1.5496639,0.39218372,0.06346161,0.78901994,0.5998797,0.07930546,-0.059739444,0.67366487,-0.081045814,0.09964997,0.48067173,0.17221625,-0.3902233,0.35478958,-0.4644373,0.5413805,0.068156585,0.047925774,0.09621467,-0.17644283,0.5124199,0.8414699,-0.07342571,0.06747253,0.12935919,-0.32839957,-0.010149568,-0.36121854,0.018446812,-0.5542001,-0.29856706,0.73125154,0.5621714,0.33402762,-0.21557076,-0.048037004,0.15529595,-0.14780955,0.14294098,0.091297254,-0.14900632,-0.11700606,-0.6130184,-0.0044025397,0.52215254,-0.1239833,-0.01417418,0.058588736,0.016417775,0.20303817,-0.009833,0.012796538,-0.1199648,-0.72294384,-0.12845123,-0.42574042,-0.25939566,0.34375006,-0.21278928,0.09223969,0.17806177,0.074927926,-0.28586164,0.40383333,0.014933271,0.7679849,0.028393855,-0.10622658,-0.121797785,0.21018216,0.15753198,-0.090315886,-0.18433753,-0.45245442,-0.016463665,-0.6483608,0.3200233,0.112038136,-0.31786898,0.027631888,-0.011748819,0.118401416,0.39888865,-0.16343173,-0.29496628,-0.16261151,0.05992908,-0.23241642,-0.26871797,-0.22447598,0.17483532,0.23825786,0.05447381,-0.02527828,-0.07012128,-0.0490581,0.49119917,0.0030835846,0.5865713,0.36672983,0.21195997,-0.3417488,-0.083572224,0.22341289,0.6340267,-0.0032074836,-0.1309181,-0.29000887,-0.34859723,-0.38588953,0.16546132,-0.12470198,0.455925,0.12630497,-0.13923158,0.6824943,-0.04474252,0.99133146,-0.20034842,-0.4427603,0.013187612,0.56663287,-0.034764986,-0.11675096,-0.28144246,1.0470915,0.48680282,-0.23199794,-0.15517308,-0.41633326,0.11686436,-0.121494934,-0.26409474,-0.21280222,-0.07531034,-0.4872704,-0.06695612,0.14513159,0.26362076,0.37847498,-0.05518164,0.051176786,0.31736472,0.008960651,0.26145306,-0.38170737,0.031561118,0.2039415,0.26673967,0.06749726,0.108465485,-0.54469097,0.22831175,-0.4758629,0.12973489,-0.3459433,0.19588806,-0.29588,-0.4726484,0.18706474,-0.07584627,0.33276314,-0.4215496,-0.25922257,-0.3669437,0.62948895,0.10522051,0.08446802,0.5543441,-0.16052951,0.12132098,0.049150746,0.45545465,0.78094643,-0.26716554,-0.17918672,0.28918117,-0.34230515,-0.37400454,0.057109497,-0.43992114,0.3541408,0.13044259,-0.0911988,-0.6482123,0.27085716,0.031389546,0.13346761,0.03735608,-0.87511647,-0.057624307,0.31340376,-0.15931962,-0.10485532,-0.38151282,0.081250615,0.4470389,-0.21306147,-0.42599055,0.02875503,-0.0058625424,-0.06654795,-0.56705064,0.059241295,-0.55439216,0.23888218,0.120214224,-0.35968113,-0.2916382,-0.091204986,-0.41482466,0.14262705,0.106195256,-0.2859438,0.13114585,-0.3785573,-0.06624163,0.9404564,-0.2773979,0.22023287,-0.36059457,-0.48290876,-0.7676535,-0.25687316,0.4857646,0.13445185,-0.007162075,-0.8844143,-0.004467883,-0.12256008,-0.23708224,-0.07176117,-0.24080944,0.47349724,0.13230495,0.50639784,-0.020158023,-0.8813469,0.45900744,0.02465352,-0.2630545,-0.51735103,0.49345464,0.067326136,0.8631467,0.059736557,0.17244835,0.2587282,-0.6283795,-0.1388463,-0.17092372,-0.048206985,-0.6065706,0.15696101 +426,0.3006641,0.03711903,-0.48590174,-0.16693991,0.06052093,0.04349509,-0.20053726,0.4215006,0.42587027,-0.319959,-0.30871126,-0.45778835,0.1399073,0.39716807,-0.118234545,-0.7782378,0.13174076,0.07342293,-0.5162337,0.63652706,-0.43312514,0.4289168,0.23573445,0.36910298,0.062908895,0.29791585,0.36791185,-0.081186526,0.029949853,-0.19919734,-0.1166658,0.016780207,-0.47892806,0.030525846,-0.27140728,-0.34381056,0.09221992,-0.62195945,-0.5259876,-0.70916337,0.33042482,-0.81488544,0.5557601,0.25245303,-0.06007127,0.14288181,0.13285062,0.20180283,-0.3268602,0.0113055995,0.090792395,0.028389243,-0.036473546,-0.007400453,-0.52920485,-0.2614905,-0.57758254,-0.019794753,-0.42907083,-0.30985415,-0.319896,0.017171822,-0.25404707,0.121324874,-0.035519708,0.37106717,-0.39232135,0.16035068,0.28001943,-0.26897427,0.22302486,-0.5262124,-0.19515349,-0.24533717,0.2348553,-0.32388034,-0.2042054,0.2601927,0.33913818,0.38236752,-0.07032012,-0.112131365,-0.19462049,-0.09997296,0.081088856,0.6308121,-0.21216445,-0.4638482,-0.16035277,-0.075606845,0.15142466,0.3393961,0.19007917,-0.34691134,-0.131808,-0.23265533,-0.35584787,0.4058216,0.52245665,-0.35905048,-0.31209084,0.27732095,0.27379763,0.26581392,-0.07006886,0.024776498,0.032843437,-0.59673494,-0.16572598,-0.026181787,-0.18471648,0.7000871,-0.064154156,0.14279902,0.6662485,-0.100281596,0.053477466,-0.071221046,-0.14673358,-0.15839039,-0.22673185,-0.13772605,0.21495736,-0.39460966,0.2402935,-0.20117116,0.6840742,0.31239507,-0.53937215,0.39690694,-0.60302514,0.21572717,0.03313082,0.44197333,0.6289042,0.28299144,0.29082635,0.6011455,-0.40376493,0.10106465,-0.02288269,-0.24635458,0.083242886,0.011514981,-0.053685922,-0.4344903,-0.1616803,0.16014087,-0.23014146,0.5580008,0.39552972,-0.44456613,-0.05158106,0.029457768,0.89683455,-0.20589232,-0.19060123,0.80323404,1.0912075,0.83178276,-0.014978959,1.3249929,0.24107341,-0.2109565,0.11334888,-0.16267085,-0.78290766,0.06789906,0.30488807,-0.47392678,0.26976943,0.07711614,-0.13353743,0.20563471,-0.34950662,-0.019143483,0.07351423,-0.08280045,0.034866404,-0.22761959,-0.2514468,-0.28576833,-0.16099657,-0.029994385,0.31977215,0.27528626,-0.12607712,0.4250044,-0.08189497,1.2882236,0.07151619,0.0349528,0.040475354,0.46607184,0.42933175,-0.03955479,-0.14680867,0.31712583,0.4145325,0.0020340334,-0.55528086,0.09354039,-0.19889294,-0.26121065,-0.038851526,-0.35497245,-0.21126322,0.12622485,-0.2939038,-0.020183353,-0.09403503,-0.24964382,0.32141343,-2.9004667,-0.22328125,-0.1237421,0.3573973,-0.10635957,-0.16465805,-0.24734674,-0.48057154,0.5542613,0.30180633,0.55820036,-0.57573336,0.2584491,0.49532893,-0.6042782,-0.2700857,-0.56104374,-0.035825204,0.027555672,0.2909661,-0.074614316,0.2036374,0.16363983,0.3819377,0.45629978,0.24640441,0.12294976,0.21188849,0.5853485,-0.028347686,0.41267386,-0.11991344,0.63400036,-0.18127711,-0.20004743,0.21837896,-0.370316,0.386225,-0.34109357,0.03814618,0.39762935,-0.36394706,-0.83601564,-0.4317008,-0.42910644,0.8950953,-0.18738933,-0.2871723,0.28765616,-0.29286125,-0.25404242,-0.07190783,0.9566204,-0.22948404,0.0850715,-0.68205327,-0.10320866,-0.023989573,0.19566838,0.055460382,-0.10339906,-0.4657003,0.5696243,0.020111052,0.4833363,0.3489875,0.121428706,-0.26932123,-0.5978493,0.20313956,0.93175673,0.22039665,0.19998603,-0.17045969,-0.1703093,-0.4495804,-0.068074234,0.06653298,0.61442137,0.46198186,-0.08112864,0.15109593,0.3008441,0.32866707,0.04856545,-0.08527724,-0.30774447,-0.032340225,-0.13450356,0.5448152,0.8449642,-0.36035,0.2291012,0.00024753343,0.4500247,-0.21119313,-0.47094774,0.73294854,0.8926013,-0.044921756,-0.1157128,0.5742247,0.34270915,-0.19501781,0.43924376,-0.50275415,-0.23549491,0.5580327,-0.089874364,-0.37219775,0.36836156,-0.20538878,-0.10915405,-0.9056389,0.25729764,-0.13157831,-0.12795849,-0.30305478,0.057861436,-4.1829047,0.046173353,-0.22587554,-0.23969108,-0.26251075,-0.06670704,0.06506271,-0.38455772,-0.696958,0.27227625,0.038449854,0.6024299,-0.27952766,0.18652473,-0.22064061,-0.22349168,-0.3091612,0.17612024,0.06560641,0.4050009,0.017042384,-0.40970668,-0.1611286,-0.10044994,-0.5892608,0.14208661,-0.49454522,-0.20675613,-0.1779656,-0.7364123,-0.15635398,0.73083496,-0.34687924,0.014821082,-0.22099257,-0.025965473,-0.17408828,0.23615919,0.2838288,0.19391806,-0.099855654,0.049404938,0.047852665,-0.09952211,0.35730043,0.24322219,0.20353746,0.20539403,-0.029884165,0.14469038,0.28783348,0.6295168,-0.101479255,0.7712055,0.35548273,-0.046290804,0.26443005,-0.2577341,-0.24178724,-0.55543286,-0.28784502,-0.09036163,-0.30840117,-0.65006363,-0.2016492,-0.30924007,-0.6963766,0.345373,0.07667586,0.13025013,0.05023709,0.06153378,0.3041465,-0.2257965,0.12149406,0.07055224,-0.013399561,-0.4391658,-0.12309507,-0.55575603,-0.3409494,0.3455243,0.6674202,-0.22369711,0.048125025,-0.0117563745,-0.12568106,-0.046177585,0.19488658,0.1498775,0.20456667,0.4194218,-0.12679733,-0.6031721,0.5276617,-0.19774397,-0.4336563,-0.760122,0.2557837,0.5523604,-0.7234724,0.75907737,0.3640891,-0.060372617,-0.12011305,-0.46810094,-0.36044577,-0.04271615,-0.082067855,0.18836771,0.14567617,-0.69118625,0.29109433,0.120233715,-0.2570332,-0.6633069,0.72343904,-0.079763226,-0.45650116,0.048160106,0.36239052,-0.04552408,-0.038545694,-0.17805599,0.16369547,-0.2544447,0.21155381,0.21628666,-0.076781146,0.49390182,-0.17668597,-0.058100987,-0.7710008,0.18126988,-0.4610599,-0.16077414,0.10587881,-0.016782552,0.0928468,0.10734322,0.059909463,0.17983238,-0.18084443,0.21445668,0.013964285,-0.21468814,0.35327852,0.335255,0.5768648,-0.24698128,0.63224345,-0.061019078,-0.111937605,0.22182511,0.24740012,0.35816967,-0.021157106,0.30775318,0.18927689,-0.3007606,0.10905069,0.62203246,0.14315337,0.060504425,0.33156547,0.016178856,0.36377835,0.11339363,0.002413607,0.14614101,-0.5843785,-0.14298598,-0.34737274,0.088848,0.45482412,0.1768146,0.12968771,-0.14250916,-0.54422766,-0.048605938,0.2864438,0.29428473,-0.9929301,0.17873871,0.06883578,0.71397257,0.4820136,0.102188975,-0.12582992,0.40162173,-0.102916785,0.20625223,0.28705612,-0.016065983,-0.4959365,0.5761228,-0.45965552,0.67613727,0.1162622,-0.011186537,0.07133666,-0.08409411,0.21273454,1.0931908,-0.14665976,0.03908459,0.045700505,-0.16337545,0.09780896,-0.53999734,0.009824793,-0.36294666,-0.36451873,0.75241774,0.35478342,0.13830306,-0.19236839,-0.03616123,-0.0214035,-0.124792,-0.13828665,0.03327547,0.20325382,-0.14924553,-0.7178295,-0.12846683,0.5732673,-0.16004519,0.097891726,0.0057589025,-0.19504671,0.30242833,-0.23974375,0.020026492,-0.11491404,-0.95505005,-0.12040484,-0.41055062,-0.3112228,0.29368275,-0.22188966,0.3790647,0.15290096,0.025066068,-0.2469464,0.69199306,0.07270222,0.7541997,-0.07805318,-0.16740651,-0.2589397,0.21970946,0.24548332,-0.22139935,0.017355464,-0.2591389,0.07475852,-0.44866154,0.42785537,0.094929196,-0.27663627,-0.14900061,-0.09021034,0.08516124,0.50455546,-0.12102225,-0.13580133,0.09116777,-0.2328579,-0.33887455,-0.056156006,-0.0770651,0.20082025,0.3940648,0.01838406,-0.06375743,-0.13716206,-0.12938237,0.17695726,-0.03388879,0.42129362,0.2558541,0.3308091,-0.1984818,-0.026302397,0.13586678,0.42905334,-0.0107509345,-0.12957035,-0.13774605,-0.5300775,-0.43021205,0.13595806,-0.13692683,0.3863761,0.106978394,-0.059486687,0.4607451,0.15417945,0.7997218,-0.00831614,-0.41940644,0.22482233,0.43782067,0.04745853,-0.2483862,-0.18757184,1.1533794,0.45761076,-0.059749704,-0.21848758,-0.12825309,0.026067153,-0.10231402,-0.24630593,-0.23253739,-0.051166583,-0.55193007,-0.07568375,0.14017843,0.28289452,0.41443935,-0.09479848,0.19431585,0.21669276,0.15288614,0.17821486,-0.7411461,-0.31476948,0.4105126,0.205557,0.11023811,0.16744912,-0.3737605,0.46240056,-0.37248802,0.076297544,-0.3668425,0.07624469,-0.32282126,-0.27650264,0.20787726,0.009900428,0.49910092,-0.4091781,-0.26747277,-0.48801443,0.3147692,0.16682953,0.22887324,0.6503103,-0.115021534,-0.049428344,-0.059758414,0.7009225,0.99728173,-0.16438179,-0.13724762,0.4632454,-0.4524599,-0.4343078,0.16346927,-0.4494451,0.17687605,-0.08284851,-0.0051694117,-0.5415231,0.104500614,-0.13516437,0.14521927,0.17844094,-0.73691624,-0.32087168,0.21480119,-0.16325879,-0.35045096,-0.5265897,0.1682623,0.70944005,-0.09263611,-0.18084757,0.25756308,0.015826354,-0.15384157,-0.7449599,-0.026993096,-0.1918151,0.3917303,0.13787618,-0.22709364,-0.07348836,0.05387071,-0.43483993,0.25927225,-0.06867989,-0.33693206,0.048285082,-0.36073866,-0.28255698,1.0315589,-0.3365477,0.06055669,-0.5051768,-0.5718051,-0.65518165,-0.5160827,0.62706107,0.058515895,-0.10687586,-0.5849489,-0.12820615,-0.1270197,0.1222535,-0.01008596,-0.11557368,0.41198516,0.07176565,0.4884572,-0.14190024,-0.9059295,0.15381323,0.0848755,-0.30800465,-0.70800096,0.3362942,0.09420872,0.72040826,0.0857295,-0.12732418,0.6150508,-0.47810593,0.03289619,-0.3458779,-0.025008053,-0.4782864,0.24480808 +427,0.51366365,-0.34278736,-0.2526229,-0.110519156,-0.12799208,0.15645483,-0.020287257,0.45809975,0.18976621,-0.5122078,-0.1987977,-0.092914365,0.08531503,0.16584037,-0.2689094,-0.56345886,-0.089719094,0.05284924,-0.2677122,0.6203071,-0.48295972,0.25631312,0.025560172,0.3023181,0.12103493,0.20365277,0.19177864,-0.112294175,-0.29653797,-0.12439269,-0.1819615,0.44313684,-0.44917122,0.1260597,-0.15278356,-0.35324517,-0.03717763,-0.5475311,-0.42909673,-0.6446252,0.3455798,-0.872808,0.43184668,0.08808172,-0.21182823,0.31136182,0.02745332,0.09802798,-0.17989671,-0.035636242,0.09025916,-0.0742992,0.047301583,-0.21808818,-0.12800366,-0.29300356,-0.6615239,0.21588878,-0.41469154,-0.23899187,-0.12566002,0.18408616,-0.23362698,-0.15266256,-0.15749338,0.67451096,-0.39097002,-0.089982286,0.14071995,-0.08110307,0.20331396,-0.6096167,-0.24347152,-0.03342402,0.07832109,-0.12279577,-0.2157494,0.16835043,0.3888496,0.5743028,0.0035493714,-0.20548984,-0.4645976,0.07905858,0.13308951,0.47373837,-0.21134843,-0.6846186,-0.1489114,0.051315915,0.026976313,0.14725873,0.17249636,-0.26407745,-0.017533425,0.1279818,-0.35375023,0.33233014,0.6159907,-0.50006056,-0.3908177,0.32003906,0.50685674,-0.024630632,-0.085585065,-0.07889397,0.041468024,-0.50612295,-0.11152721,0.26687112,-0.34084964,0.6309697,-0.1743487,0.21371739,0.55665696,-0.14106613,0.14696975,0.097446375,0.05186177,-0.0854429,-0.3739201,-0.14660656,0.16121556,-0.37295356,0.002829654,-0.30847153,0.9243908,0.14247808,-0.83149606,0.41339806,-0.43676642,0.176182,-0.09206134,0.46704397,0.6105265,0.30185032,0.36585554,0.71255463,-0.5914475,-0.027210891,-0.033440035,-0.26280984,-0.08584539,-0.1875305,0.028176626,-0.44275147,-0.057222784,0.10135579,0.08260291,-0.008589902,0.41550726,-0.63394654,-0.11687446,0.13598858,0.8539376,-0.24987794,-0.12754059,0.81896657,1.0301888,1.01517,0.08115011,1.2140082,0.28957638,-0.27414733,0.36500448,-0.5251852,-0.58444065,0.240145,0.38352495,-0.014208623,0.20272446,-0.050245803,-0.059216913,0.3984757,-0.42207235,0.1512483,-0.30501047,0.13464117,0.24248055,0.037863042,-0.44545883,-0.30603164,-0.029876342,0.029634979,0.14600317,0.23448586,-0.29609564,0.21168362,-0.006403297,1.5437254,-0.08924435,0.097873375,0.020392636,0.44479233,0.23897502,0.023539374,0.010919852,0.2478917,0.38500157,0.11507776,-0.60662323,0.07692267,-0.29396006,-0.55971324,-0.07470103,-0.24243638,-0.01566923,0.039272524,-0.4769078,-0.13679121,-0.13432355,-0.39577106,0.4658072,-2.8351707,-0.22481643,-0.06648358,0.34084153,-0.34815782,-0.35683864,-0.09120687,-0.5170471,0.46926895,0.4439222,0.3969976,-0.72276586,0.32086772,0.38383222,-0.4047831,-0.054716174,-0.73872524,-0.042239822,-0.14763677,0.40623084,0.20192322,-0.14644429,0.05292332,-0.09299635,0.61428106,0.021788942,0.10909099,0.21539696,0.3648441,-0.019420488,0.38240665,0.0034042087,0.38949612,-0.2742503,-0.15226956,0.42925352,-0.5005532,0.2001672,-0.023492511,0.095274806,0.4168586,-0.55749446,-0.7676878,-0.6837124,-0.36528158,1.1291236,-0.09592999,-0.483187,0.21284994,-0.20782045,-0.21485297,-0.14276025,0.5330824,-0.041712668,-0.11260373,-0.7863582,0.13353391,-0.0501186,0.06407924,-0.039419223,0.08291594,-0.40411657,0.7120476,-0.07428861,0.43200037,0.34466144,0.30156612,-0.40492877,-0.5073586,-0.04897689,1.1579325,0.2997114,0.1904255,-0.15422414,-0.131484,-0.27982637,-0.090995386,0.053954422,0.60668504,0.7769357,0.0624473,0.027517065,0.40076905,0.020349452,0.07589626,-0.19437753,-0.30933002,-0.16746283,0.0052762455,0.60009474,0.58404195,-0.24929254,0.45075664,-0.14821155,0.21455275,-0.29604387,-0.38808012,0.5656696,0.9042373,-0.13363412,-0.2593284,0.6364407,0.53353775,-0.37898856,0.36613682,-0.5604878,-0.34923676,0.39795583,-0.32020378,-0.48123953,0.20235303,-0.2863932,0.064644374,-0.74794143,0.3970892,-0.1011933,-0.39208105,-0.6801714,-0.16300039,-3.8097458,0.19553478,-0.26557574,-0.09870559,-0.017683323,-0.14269756,0.12211809,-0.58712375,-0.42305812,0.17404087,0.0922596,0.48748192,-0.08958299,0.24258125,-0.31226653,-0.19897996,-0.21183035,0.15799603,0.013194678,0.29134065,0.0001839442,-0.31778383,0.1881802,-0.15255284,-0.38226956,0.12219964,-0.5710495,-0.6183491,-0.12566267,-0.53662974,-0.4649847,0.64808,-0.41941592,0.06481037,-0.2392919,0.039127864,-0.106843926,0.49725088,0.11523632,0.12273019,0.01917175,-0.1365487,0.013294271,-0.32583585,0.38175708,0.03281013,0.17683113,0.5521,-0.1501743,0.20367506,0.5057883,0.55431193,-0.013738968,0.92890614,0.55517143,-0.09350366,0.32005218,-0.27461046,-0.12957011,-0.64005023,-0.28643754,0.04113962,-0.46067485,-0.48736662,-0.03221649,-0.40480706,-0.7994491,0.44731817,-0.06341529,0.26011625,0.019770814,0.3881753,0.60348505,-0.133494,0.088392474,-0.04459027,-0.11659279,-0.45901734,-0.30779156,-0.6635273,-0.4323501,0.15120329,0.74421823,-0.047414005,-0.14058976,0.0700054,-0.11753696,-0.2171575,0.054449294,0.020907333,0.16686545,0.33717924,-0.094296746,-0.6568188,0.4348519,-0.045824084,-0.21388586,-0.4556488,0.15209453,0.63088,-0.6482797,0.66412,0.38306236,0.16673458,-0.085722804,-0.44210666,-0.18992543,-0.0141561795,-0.24696036,0.45075276,0.21545961,-0.84534645,0.48607874,0.4345546,-0.11782583,-0.8104087,0.47551972,-0.048169114,-0.20774145,-0.120655365,0.42548147,0.272645,0.09231542,0.0021311832,0.16841769,-0.63370705,0.16931374,0.18237914,0.0073261773,0.504053,-0.19865441,-0.20916311,-0.714119,-0.09934343,-0.6110584,-0.26591617,0.24402383,0.14359857,0.10478575,0.28810802,-0.006135055,0.45707288,-0.22351758,0.076969914,0.1428623,-0.08481825,0.23288883,0.38410214,0.42626414,-0.36672786,0.45805565,-0.030090949,0.020876423,-0.0428757,0.010727601,0.37678313,0.22239807,0.47044042,0.0053303284,-0.26067096,0.4480678,0.81106776,0.18830717,0.4905203,0.15135813,-0.21644142,0.35317725,0.05373799,0.15864551,-0.103296876,-0.48655206,-0.0083118845,-0.11567237,0.19508316,0.31891146,0.07724837,0.34088883,-0.14453351,-0.20583235,0.046196546,0.2897916,-0.06547816,-1.010207,0.17776458,0.086192675,0.8847467,0.49666172,-0.09369966,-0.046714455,0.57894117,-0.263238,0.17042239,0.38875988,-0.08878323,-0.5690858,0.5871439,-0.6403182,0.48717612,-0.25659028,0.079306565,-0.14271957,0.01387919,0.28038287,0.64139706,-0.14617357,0.03782358,-0.12217043,-0.31909758,0.2075402,-0.5071484,0.33916304,-0.4691225,-0.21634956,0.7173742,0.5500659,0.3355421,-0.16120042,-0.039952457,0.07001377,-0.07757097,0.19202545,0.053769328,0.070527576,-0.05852071,-0.8500909,-0.2868762,0.50626093,-0.015239452,0.19533762,-0.07422041,-0.16640179,0.2292802,-0.30361986,-0.22544847,-0.029771173,-0.5956873,-0.044003338,-0.12847964,-0.61049515,0.41571158,-0.063595906,0.20505439,0.17660587,0.058972068,-0.44652,0.099481404,0.22590597,0.65933424,-0.0476768,-0.05877779,-0.5189723,0.051836375,0.18191688,-0.2351722,-0.06432404,-0.24476917,0.16803011,-0.6221774,0.46916315,-0.0038175497,-0.40749738,-0.0035430107,-0.08490718,0.046504386,0.6595899,-0.16836119,-0.1548126,-0.11243933,-0.21506444,-0.313617,-0.037535507,-0.050663147,0.32140714,0.14212729,-0.011747931,-0.018801374,-0.3012379,-0.18321885,0.47212616,0.16700228,0.2934184,0.39351606,0.14952575,-0.30921248,-0.09818753,0.16874568,0.5249191,0.0022406876,-0.184617,-0.23551463,-0.47462717,-0.38003296,0.08460719,-0.030939434,0.34958002,0.018040879,-0.3730965,0.6989598,-0.057491083,1.3583337,0.21438251,-0.2781177,-0.08567464,0.49325964,0.02945217,0.0627723,-0.44730368,0.98495436,0.51756126,-0.054951105,-0.07197944,-0.35705322,0.04312549,0.25611955,-0.106980965,-0.10891839,-0.03405843,-0.7782712,-0.28634453,0.18457265,0.23457615,0.11250603,0.020727083,0.024890738,0.1812649,-0.0030148583,0.34249067,-0.46362028,-0.1313426,0.28262442,0.40880257,-0.019403415,0.14516446,-0.33472252,0.3091755,-0.48352018,0.12208253,-0.2816357,0.09105679,-0.19083138,-0.17816785,0.30856448,0.06631242,0.4604828,-0.23436478,-0.5722515,-0.23147273,0.5184434,0.090342335,0.098155834,0.49512672,-0.22475357,0.004687735,0.14038768,0.6112474,1.4091034,-0.09800776,-0.058605663,0.23809217,-0.32433876,-0.8367391,0.44331786,-0.22863555,0.20034036,0.051122587,-0.20920454,-0.46342307,0.2969819,0.3005361,0.03455949,0.16826083,-0.5008758,-0.29220995,0.2466698,-0.30828813,-0.12819245,-0.24380681,0.16977215,0.7044589,-0.38415337,-0.24442632,-0.03748711,0.39673838,-0.27590173,-0.5772295,-0.046415504,-0.4991994,0.29505596,0.15200599,-0.33710593,-0.041229844,-0.008652432,-0.44234136,0.04139169,0.23644029,-0.37118545,0.06536516,-0.15682082,-0.13812374,0.9066893,-0.0536162,0.2679722,-0.66551155,-0.48915675,-0.95514864,-0.32573754,0.39269066,-0.01581292,0.051010076,-0.5910567,-0.007945738,0.0013848458,-0.11070793,-0.094374895,-0.5625068,0.5476073,0.11955606,0.47514147,-0.10723179,-0.5683576,-0.031424053,0.20349933,-0.05953788,-0.5288746,0.51505,0.023987344,0.7858524,-0.00067864306,0.09231899,0.37576288,-0.54425555,-0.11519419,-0.27467713,-0.2931628,-0.6841596,0.09551083 +428,0.40313807,-0.4503812,-0.38844034,-0.20038478,-0.3545233,-0.119619876,-0.18417384,0.3913255,0.40901175,-0.16982375,-0.22456543,-0.14937979,0.08076143,0.6196217,-0.19780298,-0.60329866,-0.20551904,0.138492,-0.8246326,0.53446615,-0.579121,0.101569176,0.02843109,0.6478316,0.12279434,0.0920192,0.2629954,0.023943752,0.12672399,-0.09586834,-0.09707453,0.4574871,-0.70040256,0.07430432,-0.2637898,-0.3693298,-0.13347577,-0.54094523,-0.28031406,-1.0656953,0.24390234,-1.1174997,0.60023075,-0.111219965,-0.28442678,-0.1362903,0.5518201,0.4359231,-0.45392978,-0.012186043,0.23895387,-0.29104626,-0.19472325,-0.23253757,0.010543197,-0.50906724,-0.6998516,-0.08934671,-0.5517542,-0.34232256,-0.26548368,0.33494052,-0.3799999,0.025631694,-0.21881811,0.5900088,-0.38934875,-0.05183484,0.42359623,-0.1304944,0.565099,-0.5456267,-0.0460151,-0.14856197,0.41111338,0.06099065,-0.53577584,0.40165827,0.49300894,0.11003544,0.17293413,-0.30406168,-0.28162715,-0.027282774,0.01845328,0.3036741,-0.25402394,-0.5285287,-0.1444932,0.16151504,0.4114213,0.6970537,0.07604602,-0.238355,0.040963117,0.05689111,-0.073208265,0.88245577,0.57259744,-0.13730653,-0.50034237,0.2116701,0.60583377,0.2140301,-0.31717524,0.05931821,0.076154366,-0.7164753,-0.06952574,0.2975799,-0.19115347,0.5096072,-0.25031146,-0.02548325,0.9566615,-0.27554515,-0.29109335,0.084369265,0.09312507,-0.24577975,-0.27905026,-0.32658496,0.36556473,-0.5030317,0.07565407,-0.42058828,0.7619781,0.07586919,-0.74905825,0.14402258,-0.7234084,0.26216128,-0.014766593,0.7035869,0.9434468,0.63138884,0.70557183,0.88207906,-0.04046495,0.23905085,0.037139546,-0.40631446,0.1544017,-0.5869985,0.14250204,-0.56489515,0.053979266,-0.24568802,0.026531557,0.15309107,0.58812875,-0.7081876,-0.2576472,0.23600312,0.68692714,-0.25461793,-0.15271406,0.7737184,0.88256335,1.1300414,0.10762579,1.1642538,0.44639525,-0.17281811,0.25318143,-0.20297277,-0.803566,0.30374566,0.281299,-0.68222475,0.31552956,-0.23217273,-0.004525905,0.23089129,-0.64391834,-0.034815338,0.01549852,0.38401818,0.290167,-0.1831367,-0.47550353,-0.12888806,-0.12515639,0.0076059154,0.201997,0.24929135,-0.24945356,0.5132933,-0.09757928,1.3239901,0.046651583,0.055247784,0.065776326,0.6324517,0.27919987,-0.058321446,0.0691741,0.381826,0.44471478,0.2419982,-0.5923167,0.31591424,-0.23521398,-0.37457785,-0.1289769,-0.4834052,-0.058286086,-0.012389779,-0.3497331,-0.31758234,-0.22219075,-0.10986104,0.45650733,-2.5666063,-0.25712317,-0.025025347,0.31138313,-0.23312749,-0.14945512,-0.15582682,-0.7108753,0.4531381,0.3511833,0.52480966,-0.6511806,0.38326105,0.50899655,-0.72029537,-0.16159871,-0.98089606,-0.2832177,-0.082864255,0.52821594,0.09111861,-0.18859096,-0.006052756,0.32148233,0.8617652,0.1559711,0.2243375,0.6172499,0.6169949,-0.104166925,0.86521626,-0.13948755,0.47083005,-0.43367946,-0.2876034,0.25915226,-0.4419056,0.16642551,0.0066803196,-0.069283344,0.8995505,-0.51536024,-1.3003627,-0.49965724,-0.12761463,0.91463304,-0.49375868,-0.57528496,0.24754083,-0.33658385,0.01784687,0.033235412,0.84300685,-0.11825784,0.20780669,-0.7933542,-0.033902675,-0.024589172,0.27402988,0.042894695,-0.1310512,-0.33369875,0.69589525,-0.09967188,0.42577282,0.109214075,0.11877948,-0.8309863,-0.68476933,0.09529742,0.78530526,0.28966105,-0.115754165,-0.18787716,-0.39354602,-0.11814954,-0.22424872,-0.1047484,0.7721477,0.7229247,-0.1727913,0.28996205,0.47669482,-0.27694222,-0.107676454,-0.33574653,-0.28817227,-0.18869591,0.08210551,0.66978407,0.87069035,-0.20386137,0.77920073,-0.20523976,0.35944238,0.041090798,-0.59287804,0.7724204,0.8780701,-0.1437539,-0.11277174,0.5674339,0.49709812,-0.41219243,0.5727278,-0.53677636,-0.3817784,0.76873416,-0.24290186,-0.64697224,0.19359465,-0.29419506,0.075520635,-0.7875745,0.2504642,-0.38478163,-0.35735145,-0.63463384,-0.10754921,-3.10011,0.21113782,-0.10139779,-0.23293985,-0.52491933,-0.16054727,0.177161,-0.66468924,-0.70033073,0.1860985,0.2862518,0.6610204,-0.18342014,0.15542673,-0.3804771,-0.08631915,-0.13335897,0.3171949,0.29792917,0.37960878,-0.0743075,-0.46178904,0.04368347,0.023279516,-0.6676635,0.112330765,-0.7293741,-0.5685058,-0.089901276,-0.7492421,-0.38694045,0.72808313,-0.4647968,-0.11987919,-0.28371117,0.2358848,0.16334467,0.3135879,0.13866241,0.26693165,0.22331555,-0.13223106,0.124432385,-0.09734646,0.42889297,-0.17499463,0.2451735,-0.006427283,-0.122188866,0.3509936,0.5593595,0.8496337,-0.15995397,1.1896195,0.6054829,-0.0040116482,0.15821867,-0.24487518,-0.35197592,-0.720071,-0.17673309,-0.16213088,-0.49411345,-0.33710727,-0.035824556,-0.30292043,-0.7865111,0.93397903,-0.017237728,0.34448043,-0.116618305,0.3325762,0.5554026,-0.16470863,0.11058563,-0.10425662,-0.24961787,-0.5084821,-0.1991949,-0.48184657,-0.677392,-0.17970896,0.8917689,-0.3271208,0.04897702,-0.14355788,-0.27802533,-0.06990502,0.24059387,-0.059750292,0.43127835,0.56706315,-0.007922833,-0.7511628,0.3722502,-0.024964178,-0.104614414,-0.74084574,0.40303087,0.78518075,-0.7906795,0.7445688,0.19272192,-0.05941397,-0.5060443,-0.6651411,-0.25702706,0.031490196,-0.11065915,0.5474581,0.1304987,-0.89082456,0.6882758,0.4480455,-0.6222276,-0.68863875,0.24884641,-0.19700246,-0.43851808,-0.033207797,0.29311383,0.1702624,0.07271131,-0.41262445,0.31450644,-0.39973202,0.14757508,-0.01319322,-0.047136564,0.38887823,-0.17999242,-0.2437545,-1.0323507,0.1871938,-0.62231755,-0.44316742,0.426386,-0.0023526002,-0.1646353,0.36262754,-0.17824419,0.31200972,-0.15345985,0.10559202,-0.14271021,-0.38945803,0.21697104,0.559004,0.32097557,-0.4759272,0.7188824,0.20203269,-0.343091,-0.065010056,-0.086908825,0.2935695,-0.054303348,0.57819086,-0.20250721,-0.25700602,0.40568328,0.6997799,0.015320365,0.6529176,0.046617907,0.06821527,0.29490992,0.014114599,0.2776979,-0.19801772,-0.58133614,0.16890936,-0.37118506,0.14165601,0.56170434,0.24232495,0.35690507,0.17730153,-0.24595912,-0.03492464,0.27851674,-0.04815604,-1.6614476,0.44181016,0.3660957,1.0593079,0.4292195,0.1225098,-0.027475381,0.92529327,-0.2692498,0.012343925,0.58274835,0.20681651,-0.32262692,0.91663057,-0.87068844,0.41979793,-0.24238144,0.022740424,-0.013347837,0.327004,0.4738458,0.88523865,-0.22439174,0.036584787,-0.09795693,-0.09390473,0.31306353,-0.47840914,0.14385004,-0.29713145,-0.5074065,0.6438685,0.36926386,0.50880605,-0.19923155,-0.023219155,0.07900085,-0.1662514,0.28669295,-0.09647102,-0.21463574,0.07113417,-0.63220406,-0.01261736,0.6364827,0.16893859,0.18732445,-0.19098113,-0.13144611,0.16669603,-0.18871953,-0.020406261,-0.11969352,-0.88947815,-0.1164907,-0.2072498,-0.55880564,0.7893183,-0.46957552,0.09517092,0.25963125,-0.010084261,-0.25764772,0.078731656,0.14157693,0.94801205,-0.019236708,-0.26750562,-0.24404915,0.05851658,0.13052498,-0.34351906,0.08730956,-0.4127083,-0.09561926,-0.38737187,0.58942443,-0.12664104,-0.6872197,0.10315021,-0.17142832,-0.03988422,0.6111124,-0.063307546,-0.07860358,-0.089194596,-0.41692758,-0.25609526,-0.19951351,-0.17710279,0.36721393,0.2393203,-0.057582293,-0.17295583,-0.07220588,-0.1529954,0.6911566,-0.19505446,0.49315813,0.41026223,0.32553008,-0.032414626,0.1565247,0.20502484,0.69755125,0.2746748,-0.11576951,-0.43327084,-0.39249966,-0.26932752,-0.03158356,-0.08170659,0.36491212,0.013644591,-0.43139789,0.94136924,-0.036384568,1.3437909,-0.022475548,-0.51643205,0.12255031,0.55147177,0.041787084,-0.042528585,-0.48707774,0.7782392,0.50153774,-0.0972004,0.1489899,-0.60334986,0.06979678,0.5200829,-0.39329365,-0.2603736,-0.11682612,-0.5280369,-0.38973996,0.2694055,0.18175316,0.22398424,-0.2335363,-0.07521615,0.14031558,0.016245976,0.53952754,-0.45016274,0.0323112,0.11673234,0.4376779,-0.048003603,-0.021927029,-0.4315907,0.3016579,-0.5332986,0.30213904,-0.63236624,0.3049269,-0.28706503,-0.29390103,0.14337488,-0.07087726,0.4623493,-0.08400708,-0.32712424,0.020910004,0.55630815,0.29147887,0.12624799,0.6863323,-0.28740373,-0.0044869557,0.16835235,0.58870804,1.4422178,-0.73298097,-0.031532988,0.24073581,-0.45532617,-0.7637794,0.744384,-0.29757264,-0.020746192,-0.0030340205,-0.5123338,-0.35852286,0.16538198,0.17403616,0.2943287,-0.16319413,-0.4969519,-0.17290811,0.49186638,-0.28094202,-0.15198165,-0.3877512,0.4572042,0.61550266,-0.17743821,-0.5048075,0.07138535,0.3364917,-0.2219999,-0.5183373,-0.07882441,-0.2967185,0.38632992,-0.0028115276,-0.33796015,-0.011685133,0.121021785,-0.69053674,0.1029641,0.02853325,-0.34228548,0.17388006,-0.24943167,-0.051651824,1.0243894,-0.45809212,0.006139969,-0.684194,-0.5022936,-0.9566024,-0.21526338,0.2788201,0.05999953,0.041336957,-0.6339918,-0.09393164,-0.057074185,-0.37508568,0.044650078,-0.55025536,0.39724755,0.12576462,0.497818,-0.29102194,-0.8474795,0.23632812,0.16726351,-0.047324717,-0.6650663,0.71865493,-0.1397196,0.81869936,0.014397167,0.13649784,0.18807583,-0.38209605,0.021854855,-0.26777756,-0.18203847,-0.85051996,-0.09696373 +429,0.554978,-0.2876211,-0.6992448,-0.30416185,-0.30579787,-0.14310232,-0.051252764,0.57669437,0.21269357,-0.57459915,-0.21035492,-0.30995908,-0.026344487,0.4523813,-0.23443238,-0.7675276,-0.026280528,0.13235453,-0.52363044,0.5370087,-0.19157502,0.45390216,0.07483334,0.46724805,0.2751817,0.23399459,0.20563987,-0.0004849157,0.03508641,-0.2296096,-0.021609485,0.18023355,-0.72455263,0.22741233,-0.18825828,-0.47732875,0.05946344,-0.39893582,-0.17513934,-0.84560126,0.2280015,-0.9299125,0.5332263,0.019223157,-0.3547056,-0.03603203,0.1871297,0.35517687,-0.19788016,0.048503764,0.13596086,-0.004130602,-0.03715289,-0.009731932,-0.1321555,-0.4055592,-0.6336368,-0.0009800483,-0.3909072,-0.15160052,-0.22629046,0.1806655,-0.4506183,0.09563075,-0.03545704,0.5423879,-0.41389707,-0.18296258,0.34572443,-0.33397555,0.43712166,-0.5233111,-0.13723803,-0.20327474,0.13190225,-0.28687695,-0.18686928,0.47883466,0.25646925,0.5782803,0.06678315,-0.3387491,-0.3300763,0.032249454,0.12923373,0.36489272,-0.105277434,-0.38178807,-0.0796113,-0.11130444,0.27398533,0.25364912,0.3628311,-0.32783017,-0.11103965,-0.030572537,-0.17692293,0.15087639,0.5640964,-0.26168463,-0.15571538,0.20978378,0.52443814,0.14509806,0.002805812,0.24297889,0.04078201,-0.4558356,-0.26654878,-0.00039402928,-0.20562431,0.59823877,-0.05937932,0.29390964,0.68830293,-0.17093626,0.061962068,0.017069574,0.036896355,-0.21088552,-0.31364962,-0.44075066,0.5016075,-0.5113627,0.1504778,-0.3511066,0.8508703,0.15345071,-0.8012309,0.2529651,-0.5098964,0.08698373,-0.24181738,0.47872597,0.64274585,0.59228843,0.16671406,0.76687855,-0.5353905,-0.008000876,-0.0483256,-0.38380337,0.13316391,-0.20840335,-0.10020293,-0.39091828,-0.056763273,-0.0017551908,-0.12619671,0.0812286,0.30127534,-0.52413833,-0.13333881,0.058276992,0.84465724,-0.28558728,-0.016840747,0.7171079,0.9150711,1.056878,0.0004796737,1.1171349,0.16857578,-0.2503667,0.2332698,0.04147276,-0.81677675,0.33851737,0.42889038,-0.12107414,0.3484246,-0.08406405,0.030179905,0.55956763,-0.4578835,0.11524254,-0.17011191,0.22430389,-0.13768415,-0.22894947,-0.5706602,-0.2962513,0.06262701,0.0131383585,-0.1496021,0.33966866,-0.10289966,0.5430094,0.13364847,1.7241004,-0.03307811,0.089334235,0.06714385,0.46740177,0.25294465,-0.18245813,-0.10590859,-0.0359898,0.3025561,0.17531319,-0.5380698,0.10102116,-0.25027663,-0.60905266,-0.13929759,-0.4083925,0.039464083,-0.29539487,-0.56072515,-0.11419628,-0.09958006,-0.2760911,0.27748576,-2.3165023,-0.08590074,-0.20927441,0.4023705,-0.32706413,-0.28557086,0.00479057,-0.6088214,0.4473238,0.39808813,0.5453509,-0.68365467,0.4282832,0.5349702,-0.4742289,-0.048186813,-0.6301834,-0.124075934,0.0018465945,0.14875767,0.14463331,-0.18387116,0.052697264,0.25096747,0.47121528,-0.09944887,0.029924218,0.3005131,0.2860622,0.0368695,0.5896225,-0.11339973,0.5615647,-0.39906338,-0.15755312,0.42165932,-0.42981106,-0.0057389056,0.030618817,0.11621483,0.3658029,-0.5540606,-0.93762577,-0.75796455,-0.37179485,1.1527689,-0.2024122,-0.46919647,0.38144973,-0.025190694,-0.07016046,-0.06417266,0.5010657,-0.19837852,0.12337331,-0.8427374,0.0070581394,-0.22655511,0.26195383,-0.013687889,-0.05000371,-0.5172435,0.5011677,-0.047598932,0.57857805,0.5132402,0.25366133,-0.40714058,-0.6628813,0.1525042,0.9984948,0.39230442,0.12770998,-0.2073966,-0.11439557,-0.61699057,-0.0053625107,0.14156055,0.39947703,1.0985858,-0.10988621,0.1403745,0.25781414,0.08900191,0.059109736,-0.0874152,-0.44589403,-0.15839098,0.16869657,0.6041528,0.7034256,-0.05461661,0.27698946,-0.13606976,0.59340906,-0.20165937,-0.5831191,0.58526576,0.98923475,-0.17685437,-0.24528459,0.6699294,0.36731324,-0.2687349,0.62535614,-0.78564394,-0.4515598,0.48818588,-0.13992251,-0.51008576,0.18069792,-0.36769125,0.29828128,-1.0435086,0.38088745,-0.42883188,-0.21783893,-0.62407845,-0.13491312,-3.1879308,0.23944418,-0.14409105,-0.17129956,-0.07650423,-0.16088045,0.32560307,-0.7810317,-0.7700593,0.1332667,0.15267207,0.78635234,-0.0058022058,0.062283732,-0.30931643,-0.2908551,-0.20844293,0.099453375,0.2651946,0.2190782,0.24178384,-0.643935,-0.22417913,-0.18852463,-0.5683134,0.118659206,-0.52564585,-0.6733286,-0.22539333,-0.68264925,-0.3506414,0.6976738,-0.09555693,0.038516648,-0.021444967,-0.12949081,-0.119747065,0.23087265,0.0059496677,0.16464202,-0.010701115,-0.019559784,-0.06364714,-0.28866133,0.114186086,0.11922221,0.2304001,0.11554611,-0.3201346,0.2415341,0.758215,0.6956531,-0.21734868,0.6923433,0.5145031,0.006752372,0.43672252,-0.29213545,-0.39268127,-0.66876996,-0.18878281,-0.06893408,-0.45066068,-0.26427922,0.14472485,-0.35534698,-0.8569089,0.79406357,0.0017373307,0.15104966,-0.002064575,-0.038449235,0.32465097,-0.15477514,-0.2623639,-0.04517717,-0.07337255,-0.5237189,-0.30450282,-0.91247004,-0.61004436,-0.016651912,1.2759372,-0.12777512,0.028077511,0.15528563,0.024164122,0.27035502,0.107914194,-0.032146696,0.13051699,0.37788296,0.0110302055,-0.70411146,0.59787375,-0.0018198745,-0.06922644,-0.43902764,0.20551352,0.51344854,-0.65751475,0.24291642,0.31904012,-0.058403574,-0.06279372,-0.5937995,-0.14026105,-0.0541536,-0.15402956,0.51452035,0.21718237,-0.72177607,0.33971164,0.38318238,-0.24816836,-0.7655012,0.4492481,-0.05782487,-0.2814494,-0.07652478,0.2870929,0.030775595,0.054286234,-0.22418694,0.18689695,-0.35297483,0.20165393,0.41410422,-0.09663046,0.5522839,-0.21162947,0.064119406,-0.8338168,0.11968309,-0.55578554,-0.31415892,0.21552123,-0.105762616,-0.13144594,0.2753511,0.14992951,0.38295487,-0.20596603,0.052951314,-0.074456796,-0.279197,0.4767255,0.49012676,0.54252994,-0.51757616,0.58977944,0.03237227,-0.083056286,-0.07375594,0.049477916,0.5255662,0.08419679,0.29666874,0.02332156,-0.1386402,0.3470549,0.6602789,0.15396738,0.45755535,0.0068124705,-0.10391651,0.07315525,0.24362536,0.16842754,0.12198845,-0.5308201,0.05682366,-0.14729674,0.044838924,0.6369466,0.15091369,0.37884673,-0.07394797,-0.25512728,0.054276995,0.14012972,-0.31733721,-1.4837695,0.45118597,0.18415701,0.860237,0.6392355,0.14380002,0.05595668,0.52240896,-0.1565188,0.18627928,0.22855751,-0.14174715,-0.53479826,0.7980841,-0.6110421,0.42789808,0.17416371,0.07110773,-0.01056792,-0.02367711,0.49855575,0.7008199,-0.0021380612,0.2770848,-0.042226326,-0.16304262,0.20723298,-0.45302382,-0.124933235,-0.39119262,-0.240411,0.71959496,0.4420605,0.30091554,-0.16046606,-0.02762559,0.107335515,-0.22023785,0.24639463,-0.13650557,0.11622204,0.02501091,-0.4861775,-0.24218094,0.6248564,0.015459814,0.17239495,-0.11704842,-0.28821912,0.20873106,-0.054963384,0.09670215,-0.0053127473,-0.8537465,-0.02183706,-0.638363,-0.08722212,0.34537268,-0.22429173,0.12070114,0.20202589,0.081060715,-0.3368695,0.3601728,0.17334248,0.68467283,-0.051591218,-0.28669235,-0.32575372,0.11441798,0.1850435,-0.34498554,-0.082224905,-0.2498569,-0.02269732,-0.47535166,0.30503258,0.082329,-0.22462396,0.20912118,-0.15140884,-0.023684442,0.43248802,-0.19468403,-0.071946755,0.096982025,0.04221197,-0.21840255,-0.277721,-0.22467057,0.22862364,0.053383414,0.07961892,-0.0023846093,-0.029759841,0.14221181,0.5454701,-0.060315188,0.34322938,0.4606347,-0.08810481,-0.642163,0.0425568,0.24382018,0.4680594,-0.07190818,-0.057635177,-0.4632502,-0.33311257,-0.24689615,0.083279036,-0.2541311,0.39321235,0.042960458,-0.33510646,0.8182478,0.256198,1.25313,-0.11800779,-0.50186867,0.06287778,0.40010306,-0.019512352,-0.19079758,-0.35833025,1.0661128,0.5798572,-0.3422231,-0.3218561,-0.4029869,-0.18620834,0.08309824,-0.28093067,-0.25492945,-0.17824122,-0.74932575,-0.3816697,0.2615684,0.35002324,0.17390393,-0.15138374,0.101602614,0.22040297,0.06065783,0.33543035,-0.50776917,-0.075732045,0.12414087,0.21540008,0.057482485,0.13067997,-0.5098517,0.4153533,-0.6101491,0.14310098,-0.26434824,0.20569392,-0.061518915,-0.42573997,0.22491257,0.022673564,0.27626893,-0.37012705,-0.3839372,-0.22440471,0.5547997,0.08168525,0.25564185,0.7715491,-0.3723479,0.1682341,0.0075344318,0.5786673,1.0506752,-0.1512043,-0.02306199,0.40523916,-0.4211629,-0.6348556,0.2273331,-0.23835008,0.13711728,-0.15907721,-0.4054185,-0.63424605,0.1534792,0.24195062,-0.12991521,0.24971573,-0.6124965,-0.20213284,0.3359297,-0.35751915,-0.36630282,-0.48110482,0.03387509,0.42765373,-0.24368058,-0.30935344,0.231446,0.17296967,-0.053970624,-0.5320739,-0.23909776,-0.2564467,0.2812254,0.162097,-0.5768861,-0.038003888,0.09142796,-0.3856566,0.18953209,0.3228093,-0.25060046,0.11296922,-0.35175657,-0.029988868,1.0418651,-0.0039693033,0.0020953822,-0.5709253,-0.46460894,-0.9688896,-0.40068898,0.5709581,0.23559071,-0.026846869,-0.71991485,-0.067585096,-0.30190244,-0.03201591,-0.06367482,-0.09328932,0.3534624,0.16508438,0.6372079,-0.05355387,-0.77089036,0.3051956,0.28220218,-0.14418118,-0.47093382,0.5512167,-0.026698688,0.81995124,0.14275233,0.09955255,0.41106907,-0.5917943,0.022206562,-0.22732256,-0.2257575,-0.47862187,-0.020139256 +430,0.43284628,-0.6280102,-0.4661105,-0.17515256,-0.36287543,-0.047564384,-0.41436952,0.14968814,-0.015466826,-0.42452893,-0.12271454,-0.034624245,-0.045457177,0.522468,-0.2844855,-0.6080216,0.10847872,0.21019675,-0.66100013,0.8495828,-0.40106556,0.2282434,0.17502668,0.33181217,0.27738017,0.0019800875,0.34651944,0.07396941,0.15078886,-0.29332992,-0.05016038,0.16299722,-0.77424395,0.23434761,-0.27744195,-0.617248,0.050838705,-0.3871269,-0.44221255,-0.96880203,0.28042835,-0.9915381,0.6418777,0.04225725,-0.51226026,0.11305916,0.36912152,0.3523159,-0.055443235,0.016743716,0.03721768,-0.20508528,-0.20688686,-0.1343139,0.053699356,-0.63119644,-0.6916668,0.047918376,-0.8362056,-0.18714762,-0.1725627,0.2547733,-0.4390029,0.075566955,-0.16596739,0.2754008,-0.5806214,-0.16796279,0.117463745,-0.005639815,0.43537256,-0.64475614,-0.061407242,-0.2125379,0.13563868,-0.040142585,-0.24656078,0.38961357,0.22880994,0.6838364,0.10613227,-0.37897423,-0.061990213,-0.2428297,0.18268108,0.45152217,-0.022304995,-0.31874546,-0.2694433,0.015508004,0.59892005,0.27575448,0.015440558,-0.2977817,-0.07071746,-0.0055633783,-0.25183246,0.46100587,0.43980727,-0.35556954,-0.29052094,0.26722378,0.59090364,0.13076892,-0.24060354,0.23072144,0.10368768,-0.5511721,-0.17587182,0.35951713,-0.1837736,0.43074137,-0.1966739,0.2963889,0.6276846,-0.23991217,0.061244477,0.1753601,-0.015634337,-0.25408587,-0.033628944,-0.4077273,0.2861097,-0.6998132,0.14496711,-0.36470705,0.8051357,0.04579676,-0.73229885,0.25501293,-0.665572,0.22327577,-0.11727078,0.82291085,0.9285111,0.44968963,0.33037332,0.67849725,-0.21060348,0.041082088,-0.04964653,-0.31556305,0.18493976,-0.49446386,-0.009948194,-0.5967956,0.016525086,-0.1458542,-0.020909885,-0.20207189,0.8140796,-0.40292707,-0.12474822,0.011782007,0.71670425,-0.24391782,0.15972665,0.83655727,0.9401504,1.1499726,0.28485844,1.2888767,0.28286752,-0.08048008,0.01778948,0.029063335,-0.8564099,0.35464576,0.65189296,0.6039843,0.4445622,0.01791511,0.043236874,0.51037353,-0.6891023,0.10123829,-0.22885904,0.27980494,-0.19494824,-0.065793164,-0.7114814,-0.2374037,-0.0039005023,0.11683541,-0.0565643,0.3685148,-0.18831706,0.5560249,0.11081842,1.3897092,-0.26877183,-0.092605524,0.06093227,0.52857167,0.28399786,-0.17740776,-0.05793615,0.1471492,0.5424413,0.079899274,-0.73677635,0.15210582,-0.29752347,-0.44465867,-0.33167243,-0.38548407,0.07313661,-0.3262031,-0.3769731,-0.2630903,-0.017629582,-0.32838398,0.24700777,-2.3635924,-0.35556835,-0.17002524,0.30407065,-0.38382673,-0.19488072,-0.03888497,-0.4871716,0.5761389,0.5383353,0.60491604,-0.80380887,0.4787943,0.53750515,-0.5891398,0.02904376,-0.7886189,-0.20184056,-0.1617453,0.7007991,0.015142388,-0.258221,-0.151033,0.38864738,0.5689396,-0.19671483,0.21312417,0.4091625,0.34866786,-0.1162609,0.45648935,0.03964698,0.36303115,-0.3758312,-0.14417017,0.5331936,-0.16194668,0.23106954,-0.14753962,0.16043188,0.49558607,-0.69186443,-0.89775324,-0.66174215,-0.3877571,1.0815637,-0.38686222,-0.66812044,0.21289727,-0.32484207,-0.051809926,-0.019710246,0.37182027,-0.26474136,0.09772807,-0.863719,-0.08953314,0.055383272,0.3581141,-0.0007618964,0.058027744,-0.36462218,0.7199942,-0.06761594,0.33313414,0.25362816,0.30677778,-0.31195784,-0.5061592,0.19012567,0.772298,0.65416557,0.11439968,-0.39700085,-0.33024392,-0.2428576,-0.21595709,-0.101591244,0.45571023,0.89096034,-0.17988463,0.10981203,0.30079055,-0.32415706,-0.018625693,-0.18784492,-0.2303251,-0.14225397,0.24581735,0.6282207,0.60823566,0.018755564,0.36375025,-0.10985807,0.37918594,-0.018925011,-0.6577368,0.5690815,0.95279646,-0.10640652,-0.033397626,0.65449685,0.69687796,-0.3084716,0.66740936,-0.90724134,-0.4656895,0.39582726,0.053339582,-0.4378402,0.18278591,-0.56315154,0.34480497,-1.1029736,0.43187937,-0.44730407,-0.35242304,-0.67487746,-0.17029183,-2.8504775,0.22267506,-0.18117142,-0.13096984,-0.30229023,-0.3546969,0.48520088,-0.5963088,-0.6671506,0.08465368,0.07685784,0.7525886,-0.053735103,0.053532492,-0.4022284,-0.28791434,-0.47493818,0.13444361,0.23161857,0.24126102,-0.2165893,-0.45949632,0.026971022,-0.29536012,-0.3797616,-0.0700827,-0.70917946,-0.78927153,-0.28928784,-0.5006194,-0.3081238,0.5159846,0.06438826,-0.07962749,-0.26482138,-0.058494605,-0.031334765,0.46151236,0.25919273,0.10375234,0.21379888,-0.021837156,-0.0661676,-0.33078906,0.14631303,-0.05084129,0.14000079,0.34447783,-0.2295144,0.39345708,0.7738191,0.37613168,-0.14420818,0.7751959,0.7302652,-0.13912174,0.32338086,-0.11355574,-0.55336946,-0.58482236,-0.24838646,0.028670311,-0.36017323,-0.42687824,-0.045702547,-0.19907722,-0.80707806,0.72337264,0.115657054,0.20405017,-0.15785272,0.31726333,0.30469745,-0.09206699,-0.22928466,0.020988086,-0.36773568,-0.6114674,-0.337596,-0.9788459,-0.68931824,-0.15149556,1.1642425,-0.14287733,-0.14026447,0.11799294,-0.20447226,0.13438429,0.19496436,-0.054627564,0.28056163,0.45910972,0.14109269,-0.7509535,0.6417025,0.13888277,-0.024071634,-0.423618,0.06717243,0.5567539,-0.6575451,0.15626645,0.47533625,0.16814053,-0.09399652,-0.53103065,0.014243892,0.11804389,-0.20817055,0.6461285,0.21999599,-0.71109736,0.7130191,0.30669692,-0.29378477,-0.7537411,0.6300587,-0.04213817,-0.20466676,-0.123919025,0.46447268,-0.03305487,0.22373912,-0.29335552,0.375292,-0.44725677,0.32518747,0.3126886,-0.07178164,0.40214136,-0.21497306,-0.27166674,-0.7782359,0.08237908,-0.68938625,-0.17179625,0.1796474,-0.21134695,-0.061766054,0.17198288,0.046942454,0.37539098,-0.23654905,0.09633054,-0.03524087,-0.4417987,0.5157965,0.6119021,0.54016393,-0.32967618,0.7145244,0.23507895,-0.22882462,-0.29690823,-0.0016917458,0.37833586,0.13610028,0.45017013,-0.029741015,0.04419589,0.36716524,1.0163033,0.13614388,0.39013246,0.11290655,-0.12199625,0.31173164,0.13506953,0.26966643,-0.09612436,-0.2997923,-0.046690065,-0.14963265,0.0362282,0.6303763,0.22596304,0.2549651,-0.038156807,-0.13123128,0.0940511,0.11644881,-0.026294043,-1.4811461,0.31540936,0.4328626,0.5393562,0.6826049,0.085493155,0.20180757,0.7791873,-0.36582354,-0.12940684,0.22311296,0.19152176,-0.5725919,0.7815134,-0.7769988,0.4661141,-0.21329843,0.08818569,-0.10172093,0.076548204,0.5480691,0.78574646,-0.051889982,0.22023942,-0.14535286,-0.33862638,0.22726735,-0.38440326,0.025570462,-0.30819145,-0.35849422,0.77723736,0.47382402,0.37760043,-0.0600793,0.023495363,0.08164559,-0.11404286,0.40762123,-0.0845462,-0.056741007,-0.21939461,-0.6050982,-0.14257936,0.5745026,0.16976003,0.27365607,-0.018804763,-0.2642059,0.25883967,-0.10292685,-0.15480182,-0.043712784,-0.8147294,0.009574541,-0.41647837,-0.27965206,0.5304306,-0.46754757,0.17952682,0.24243604,0.016142543,-0.44713202,-0.12223633,0.017101428,0.65828276,0.09651936,-0.30303356,-0.18335535,-0.19254817,0.20992324,-0.44815418,-0.027170649,-0.1306441,0.08441305,-0.77024,0.6455245,-0.15459335,-0.35121387,0.30857036,-0.24332294,-0.0784558,0.39697045,-0.11932246,-0.32643923,0.11960236,-0.10424775,-0.24402414,-0.45028335,-0.07118537,0.44424227,0.07030349,0.07087066,-0.07617317,0.0031537712,0.051151,0.75148815,-0.18449919,0.39665794,0.31481332,-0.05106966,-0.47457328,0.09710058,0.20908499,0.49138302,0.008078933,0.20304516,-0.14560877,-0.33337852,-0.272422,0.16289112,-0.24278083,0.2927628,0.06937444,-0.38847896,0.8984231,0.099612236,1.1162775,0.068735845,-0.40552852,0.17442966,0.42699718,-0.08888136,-0.20333643,-0.2481402,0.68570846,0.54823345,-0.13554819,-0.19775662,-0.7255317,-0.209469,0.21251412,-0.22640356,-0.009704198,-0.14682539,-0.5734896,-0.29723832,0.18754165,0.2578272,-0.09768542,-0.08972834,0.13073413,0.023056405,-0.17713769,0.35069165,-0.48101735,-0.029196143,0.44940624,0.10040771,-0.11128503,-0.13767256,-0.5087362,0.38933364,-0.6194506,0.10861652,-0.43967724,0.2368106,0.043781154,-0.25685284,0.25749156,-0.056629658,0.24113502,-0.44594073,-0.25878796,-0.14324676,0.64013195,0.2917498,0.22582929,0.75815135,-0.47091904,0.38455158,0.082484,0.43323746,1.256397,-0.38404703,-0.028409805,-0.0102094365,-0.48891777,-0.62799984,0.4660901,-0.4004531,0.17834575,0.09739057,-0.5559583,-0.70012194,0.21018316,0.29357225,0.11666991,-0.029324966,-0.5424128,-0.24559622,0.22452198,-0.23888373,-0.20236918,-0.5357553,0.09219315,0.5766305,-0.2216471,-0.35742974,0.07458712,0.25483888,-0.27869278,-0.4447997,0.08935673,-0.26594704,0.25092295,-0.014581586,-0.2638496,0.03922052,0.23266566,-0.5703384,0.08031212,0.30819204,-0.3271887,0.045065053,-0.35043564,0.039567865,1.0675398,-0.33109137,-0.24482436,-0.6143287,-0.58503145,-0.81887007,-0.37538818,0.6685132,0.48346952,0.16624287,-0.4953386,0.07877501,0.012031336,0.031349596,0.0752769,-0.60504276,0.4981062,0.06659727,0.54622996,0.0074401754,-0.67024887,0.22646558,0.07074107,-0.016531656,-0.45665708,0.4673486,-0.18361211,0.7505433,0.1591235,0.14052862,0.028512508,-0.5457641,0.19432212,-0.09313322,-0.1692648,-0.7331191,-0.040297966 +431,0.22890776,0.113838054,-0.726351,-0.014920226,-0.20793132,0.14508858,-0.29825816,0.29427394,0.4277551,-0.3071332,0.10326342,-0.14745137,-0.24903795,0.23885968,-0.067348465,-0.5260765,-0.06296571,0.15431139,-0.50375676,0.6803718,-0.27586517,0.27324903,0.18862289,0.22179101,-0.05908961,0.16397518,0.1766296,-0.22392255,-0.09919466,-0.096514195,0.1661685,0.09046119,-0.39903364,0.24283062,-0.1376641,-0.18943158,0.14123696,-0.26302534,-0.4696635,-0.6782294,0.15125881,-0.6244184,0.57457006,0.042557884,-0.15412553,0.40811607,0.12402308,0.22523595,-0.11995847,-0.11314788,0.15218973,-0.20954747,-0.3079085,-0.3070159,-0.48377407,-0.26604262,-0.4000831,-0.08100773,-0.5615049,-0.011612189,-0.40130028,0.06741117,-0.25527748,-0.15627335,-0.2027476,0.20353231,-0.26547843,0.089939386,0.29772085,-0.0965453,0.23922403,-0.63377434,-0.038959287,-0.08402352,0.16928883,0.08115406,-0.049517743,0.39595076,0.18610694,0.6095949,-0.031310964,-0.07185222,-0.3511586,-0.17504174,0.10512379,0.46473533,-0.20657612,-0.14224361,-0.14915921,0.0015837859,0.5520822,0.3719977,0.1307023,-0.2787145,0.048307095,-0.07188226,-0.18350762,0.3020323,0.5044309,-0.33428344,-0.052351873,0.52466846,0.31672686,0.29699403,-0.12902492,0.027508607,-0.22501943,-0.3744598,-0.17551622,0.1608038,-0.09188145,0.36764425,0.10254885,0.16575782,0.6916969,0.06504164,0.06024118,-0.043996986,-0.034291316,0.009261827,-0.24978133,-0.08730625,0.15168367,-0.5862688,0.13414901,-0.014511275,0.49811956,-0.06512884,-0.78181267,0.36606464,-0.36101872,0.20474547,0.029951552,0.6316407,0.77882975,0.5474704,0.10656322,0.8978522,-0.5544024,0.061125115,-0.105668634,-0.33512396,0.31256238,0.12681109,0.26816306,-0.48722684,-0.038369153,0.12944229,-0.19203645,0.07119895,-0.0139803095,-0.47053796,-0.17907871,0.17256543,0.8947947,-0.19800244,-0.118854046,0.45112726,1.2768867,0.7274231,-0.06757558,1.3009094,0.22891493,-0.23206387,-0.039107542,-0.3505977,-0.77351326,0.09298487,0.25090137,-0.22877833,0.35880697,0.14332514,-0.09313824,0.2859073,-0.18978778,-0.27109843,-0.13104823,0.44056645,-0.05753749,-0.10779099,-0.1661109,-0.06454791,0.025161719,-0.030791827,0.23273952,0.3096971,-0.14502877,0.30771872,0.18770064,1.5357829,-0.19036181,0.12997915,0.12761433,0.26305813,0.273376,0.090298295,-0.018164646,0.49540985,0.1634461,-0.13645434,-0.4970522,0.14668792,-0.2509213,-0.50457025,-0.018501464,-0.29409772,-0.15203379,-0.03970992,-0.17102978,-0.11551415,-0.15585211,-0.4382066,0.38637635,-2.9689667,-0.110549435,-0.12393982,0.2057298,-0.24802695,-0.22876994,-0.18009202,-0.3103911,0.5033446,0.19983058,0.47726008,-0.5234115,0.3008793,0.5282852,-0.5472752,-0.16799626,-0.53587216,0.11929016,-0.0079902215,0.39978713,-0.044172406,-0.2098518,0.13754848,0.13936552,0.45697612,0.094547346,0.1171628,0.4774646,0.5934395,-0.10002806,0.27235654,-0.20023298,0.50368494,-0.31339988,-0.109166175,0.22815919,-0.2049594,0.43924174,-0.27839762,0.25054324,0.42811403,-0.23763014,-0.51068634,-0.29703802,-0.08250424,1.1073252,-0.3431595,-0.46785438,0.19443278,-0.20726448,-0.18595624,-0.04937346,0.5382601,-0.015557552,-0.08303365,-0.61952174,-0.12805618,-0.18159316,0.2150801,-0.009318471,0.18128294,-0.32751036,0.6266106,-0.0153368395,0.4996066,0.45854917,0.18044071,-0.16909109,-0.26087785,0.113807105,0.75429136,0.33238715,-0.022061443,-0.1780634,-0.17741826,-0.141429,-0.2750777,0.08961095,0.44364834,0.53618675,-0.1281035,-0.022296278,0.32387677,-0.1837913,-0.081378214,-0.20986666,-0.40662175,-0.09774186,-0.026259832,0.40016097,0.6705741,-0.17428096,0.41581133,0.06856454,0.09589963,-0.3579468,-0.5229023,0.6578665,0.31284174,-0.29662704,-0.07184775,0.58334947,0.38360873,-0.12806289,0.557346,-0.6327267,-0.36890188,0.594999,-0.04919074,-0.4265007,0.15054967,-0.23494552,-0.119535886,-0.86548007,0.15471181,-0.44587475,-0.46556967,-0.47279274,0.10814484,-2.3724353,0.031755447,-0.39415067,-0.014994486,-0.22395103,0.13286643,0.25013438,-0.38337848,-0.5504758,0.19499278,0.362691,0.4296408,-0.06506552,0.03348671,-0.23938936,-0.35194892,-0.24634762,0.20906706,-0.00026640893,0.17962469,-0.099152654,-0.36270398,-0.1839331,-0.041577592,-0.2571309,0.0711047,-0.3370008,-0.12603292,-0.1593087,-0.36459127,-0.21466415,0.56849873,-0.54107183,-0.08225942,-0.2546664,0.04755064,0.08617924,0.28944224,-0.028966289,0.05842612,0.023564806,-0.09671029,-0.054406084,-0.32952687,0.3325786,0.051859036,0.3617263,0.47286728,-0.16813228,-0.049936797,0.41906032,0.6248903,0.0058599473,0.7485023,0.31774598,-0.19068378,0.37667704,-0.32118714,-0.004237652,-0.5579833,-0.28585884,-0.16262144,-0.296595,-0.58110327,-0.12642314,-0.37954485,-0.8381029,0.4469569,0.23810394,0.14387183,-0.090183325,0.30566877,0.5548378,-0.17953806,0.12507522,-0.15921314,-0.2910629,-0.39179212,-0.2652301,-0.87755865,-0.3503523,0.5222293,0.8544327,-0.26466256,-0.15394899,0.1515792,-0.29573867,-0.05365008,0.09408396,0.15035537,0.12397049,0.34473324,0.13195014,-0.52731746,0.45213005,0.057692744,-0.06738159,-0.7044532,0.21826465,0.6654265,-0.5872316,0.3693251,0.46931702,0.08218567,-0.17380746,-0.6644253,-0.054193776,0.18520352,-0.23852943,0.28532708,0.14040388,-0.6882277,0.44685698,0.3343517,-0.16561309,-0.78480583,0.34491715,0.16862385,-0.09007836,0.10108875,0.32198623,0.031354982,0.07392362,-0.29518095,0.17220011,-0.35657227,0.41368935,0.16582607,-0.12856512,0.32052407,-0.107827865,-0.23254314,-0.7805831,0.123113185,-0.40577847,-0.16837496,0.42662138,0.13396019,0.1520883,0.026988832,0.22891696,0.34384057,-0.32354805,0.18740006,-0.22438008,-0.25136676,0.515781,0.55562234,0.25222084,-0.40071282,0.6673427,-0.06885321,-0.29777083,0.03071196,0.14219205,0.38021147,0.16506688,0.2584687,0.10068491,-0.2695879,0.12405389,0.6471809,0.13100664,0.044908356,0.16940166,-0.08746397,0.40421662,0.06759008,0.0875672,-0.15538415,-0.563626,-0.13575138,-0.16064388,0.13723952,0.44679463,0.3400531,0.3980517,0.06093015,-0.25327745,-0.028173085,0.1053332,0.115367845,-0.8375688,0.46594226,0.16987206,0.65953165,0.570939,0.106842354,0.14643161,0.5828202,-0.07042783,0.10484045,0.3932972,-0.03334059,-0.35905072,0.5838154,-0.57537276,0.31141302,-0.08522335,0.017512536,0.24077241,0.18655568,0.36648044,0.9639761,-0.15008315,0.03594102,-0.17460544,-0.23110642,-0.00587025,-0.007126081,0.07880423,-0.38099244,-0.58931977,0.5347649,0.30405876,0.37919888,-0.1711858,-0.107284896,0.14248435,-0.20526408,0.37851867,0.033715144,0.12980859,0.0132676605,-0.3386527,-0.22397962,0.55309504,-0.11984274,0.08600429,-0.024961213,-0.109854,0.18612695,-0.28565767,-0.11013316,-0.03590669,-0.55845696,0.036426138,-0.15485662,-0.5133899,0.5041661,0.012286535,0.359526,0.075850055,-0.01621206,-0.018711202,0.46842894,0.06640463,0.4904012,-0.057856336,-0.30837405,-0.14135262,-0.012730726,0.057698734,-0.2849242,0.03225072,-0.08566627,-0.00061005354,-0.68322647,0.37308267,-0.18614711,-0.23202582,0.031010918,-0.3281175,-0.044587784,0.4339975,-0.19380663,-0.16533785,-0.14246625,-0.36800098,-0.33006334,-0.3485776,-0.21952267,0.13698778,-0.061413877,0.056338437,-0.18869153,-0.05572145,-0.075664744,0.040196516,-0.033205613,0.022633553,0.3150209,0.20072612,-0.48706922,-0.06288936,0.21830685,0.35209975,0.17148025,-0.07554807,-0.33275324,-0.34769276,-0.4765615,0.20792542,-0.14072795,0.23608643,0.07297416,-0.38175312,0.8141281,0.0039866883,1.0262221,-0.042264473,-0.23308048,0.08889755,0.51380664,-0.017783856,0.017978204,-0.35491225,0.90865886,0.6511509,0.03969964,-0.04952654,-0.34223023,-0.119283326,0.27837244,-0.32714817,-3.491044e-05,0.09920255,-0.60126716,-0.3572537,0.20529579,0.08747165,0.0009474476,-0.23690931,0.060525026,0.02949744,0.24948207,0.37049854,-0.5247696,-0.35342023,0.2641982,0.17946202,0.07398669,0.15803401,-0.42426312,0.32009622,-0.56898874,0.13690825,-0.37044343,0.018042084,-0.1523655,-0.22639808,0.16187154,-0.026690014,0.32965487,-0.32334888,-0.32625416,-0.0798214,0.38323727,0.20993692,0.21527386,0.66332275,-0.19954354,0.03687733,-0.035219852,0.5209374,1.060847,-0.24287723,0.0073129814,0.3777389,-0.37939173,-0.6958938,0.045037482,-0.521109,0.07695913,-0.11718504,-0.45692894,-0.26813787,0.31527558,-0.11605081,-0.02897408,-0.04002986,-0.7010838,-0.16187264,0.065476425,-0.33148602,-0.18232365,-0.3055558,-0.06717383,0.9336037,-0.38376188,-0.26572987,0.097251095,0.2120176,-0.28610387,-0.57553905,0.14574848,-0.3733658,0.2325146,0.17380041,-0.33640486,-0.040990938,0.12566955,-0.584885,0.09647396,0.055051804,-0.23178886,-0.03357211,-0.2954207,0.22017466,0.65970117,-0.08598492,-0.097331986,-0.38318422,-0.5248578,-0.7260253,-0.4929593,0.11713578,0.1522529,0.022386499,-0.4804512,-0.009057776,-0.154811,0.06430543,-0.09069826,-0.39520797,0.3235712,0.14656208,0.15850927,-0.4398072,-1.0068375,0.010323493,0.119161285,-0.0393149,-0.5900343,0.54466766,-0.13485104,1.0220003,0.085511945,-0.14307556,0.2733593,-0.6313299,0.2514868,-0.43660113,-0.1964243,-0.6587722,0.23057882 +432,0.343856,-0.0948985,-0.5074908,-0.25063604,-0.08810692,0.10914751,-0.15083154,0.5692445,0.1873137,-0.50176626,-0.1739269,-0.018462896,-0.034379803,0.33895972,-0.3079685,-0.37903273,-0.15260777,-0.01936383,-0.45641467,0.5393026,-0.26916024,0.20669022,-0.074006446,0.50660884,0.28035063,0.32390675,0.07101626,0.05307891,-0.038711634,-0.43659586,-0.15048474,0.33899865,-0.4850135,0.3915711,-0.14986897,-0.20409232,-0.024973737,-0.4436005,-0.31932512,-0.7485868,0.23045489,-0.8767154,0.46558148,-0.1175319,-0.26628736,0.24198332,0.3268372,0.17204182,-0.022772243,-0.26910532,0.36777988,-0.1969429,-0.069210365,-0.31689838,-0.12652668,-0.39972937,-0.47804514,-0.11150846,-0.320816,-0.28920907,-0.30192602,0.25414267,-0.2590446,-0.087513715,-0.034785084,0.68788457,-0.47445157,0.28939733,-0.004138644,-0.3484111,0.30590773,-0.7484305,-0.17524019,0.07795826,0.3440994,-0.13805816,-0.10720343,0.3331901,0.14552933,0.29048678,-0.1705899,0.039365843,-0.32719484,-0.2237462,0.17953593,0.5185706,-0.15471125,-0.41209057,-0.045168407,-0.11123073,0.30319786,0.2492409,0.13652548,-0.403683,-0.14727259,-0.07196983,-0.17176008,0.49916995,0.35899633,-0.10262227,-0.07945042,0.41335207,0.4152642,0.3110474,-0.2662947,-0.11901905,-0.12860161,-0.43980423,-0.09994961,-0.12094741,-0.12990576,0.44801039,-0.040553056,0.36061537,0.6320287,0.03590917,-0.08945394,0.07816609,0.1732572,-0.099962756,-0.2608145,-0.14124677,0.16838945,-0.28356472,0.120086744,-0.12050577,0.69493794,-0.10182906,-0.68600905,0.336858,-0.5368284,0.009907945,-0.0911419,0.41945064,0.43097466,0.45260188,0.21652205,0.6809865,-0.45700902,0.022613006,0.05569174,-0.34394646,0.097588494,-0.07998077,0.08820923,-0.6055179,0.045110688,-0.019491963,-0.03899665,0.17786247,0.34747612,-0.5912236,-0.08087374,0.19194777,0.89693743,-0.24917096,0.04276019,0.70104444,1.005781,0.8652939,-0.021982808,0.93347234,-0.048257835,-0.20771953,-0.15041897,-0.07286214,-0.5875846,0.2342375,0.44243434,-0.16356692,0.07954648,0.07397939,0.23323454,0.3699997,-0.27814567,-0.14442874,-0.15463935,0.3352466,0.16946353,-0.11300461,-0.44246963,-0.22560279,0.06190386,0.14400141,0.17425409,0.07440481,-0.3174423,0.3766527,0.20443891,1.8241178,-0.057627637,0.055460252,0.12144168,0.2949855,0.22842953,-0.03546457,0.03679227,0.41868722,0.24590427,0.15939368,-0.47162172,0.21154903,-0.23103139,-0.44903627,-0.08893318,-0.44524178,-0.27633184,-0.05714757,-0.243097,-0.1765944,-0.019293023,-0.33691108,0.3826056,-2.9015913,-0.1066861,-0.24785392,0.37551305,-0.029514648,-0.3559725,-0.068924695,-0.40976068,0.38953245,0.32792667,0.62273765,-0.5405634,0.19419065,0.49579054,-0.5207934,-0.2215666,-0.37812594,-0.12265471,0.10489815,0.3908258,0.17367442,0.021958195,-0.07691842,0.3238947,0.3537687,0.08002353,0.14515577,0.4279687,0.4446676,-0.29707295,0.560522,-0.1560958,0.57981193,-0.069870144,-0.18778434,0.34332642,-0.36547932,0.14580847,-0.17265779,0.11606869,0.4534305,-0.09748059,-0.8591627,-0.53788555,-0.16621725,1.2469573,-0.18669316,-0.56259346,0.23492835,-0.19946139,-0.41164318,0.08821122,0.46761644,-0.1638942,0.081860386,-0.7902547,0.096780665,-0.3001514,0.23954108,0.0065585147,-0.24418443,-0.5038491,0.73625183,-0.021657787,0.74044454,0.3059641,0.1915684,-0.43837196,-0.20487793,-0.032376572,0.898645,0.5116066,-0.018215898,-0.10132863,-0.10066133,-0.45333037,-0.18407463,0.21249554,0.78221214,0.4554914,-0.027458243,0.053006027,0.31514993,-0.026387779,-0.012052624,-0.16897069,-0.35053423,-0.025268666,-0.028179446,0.5107575,0.64511967,-0.059974,0.42898348,0.045181815,0.46586365,-0.114941485,-0.44369617,0.22859544,0.6508486,-0.16050933,-0.34820366,0.71848094,0.4267922,-0.16007999,0.3533293,-0.5434155,-0.37725103,0.5927583,-0.13825212,-0.53424495,0.25634748,-0.2726031,0.06394959,-0.75858086,0.3904532,-0.19458032,-0.7599863,-0.5573258,-0.13380185,-2.4899766,0.18942359,-0.1380563,-0.26068416,-0.27824384,-0.23710236,0.05042032,-0.6316028,-0.70715785,0.10511708,0.045810994,0.51845443,-0.16487297,0.09800568,-0.07393949,-0.24255705,0.09359123,0.27651203,-0.0669901,0.34897768,-0.048712485,-0.38429457,-0.21753788,0.071252026,-0.40836507,0.055488925,-0.5179299,-0.5982994,0.0997634,-0.56693965,-0.07555162,0.6558351,-0.50804806,0.021982102,-0.27092963,0.11780128,-0.065134816,0.077416666,0.18886654,0.107099295,0.14233659,0.041990988,0.06438918,-0.38432252,0.3156792,0.010673802,0.3035011,0.21519385,0.09687367,0.25362667,0.42429477,0.5610381,-0.21309185,0.93092835,0.3208483,-0.06779209,0.107846774,-0.26225916,-0.48009217,-0.4917553,-0.3520201,0.36163074,-0.34114093,-0.28183633,0.004158552,-0.31341457,-0.7132779,0.511633,0.11598532,0.2019701,-0.11441915,0.012412308,0.42709434,-0.15143083,-0.17285424,0.03732968,-0.10331997,-0.6453285,-0.31690872,-0.6826344,-0.45747566,-0.06566739,0.8740566,-0.24217829,0.019143943,0.17736514,-0.2142397,0.12928057,0.061523356,-0.011628673,0.12220489,0.4111374,0.0067413105,-0.65206087,0.40958178,-0.26368484,-0.06038762,-0.5408834,0.26382077,0.63218176,-0.46293515,0.34779704,0.36139858,0.0670078,-0.24853936,-0.40699893,-0.0006311622,-0.11891627,-0.17312989,0.394914,0.15342568,-0.5549616,0.38769785,0.13115293,-0.19223136,-0.7043369,0.528706,-0.14531864,-0.16189758,-0.018361267,0.39094633,0.07457414,-0.09636022,-0.36324582,0.114003025,-0.280498,0.3429024,0.17498933,-0.032534413,0.28859144,-0.18324134,-0.08018549,-0.6871379,0.079217955,-0.498964,-0.42795944,0.23275962,-0.009975597,-0.034107737,0.14892116,-0.02292495,0.2714512,-0.5125538,0.07255482,-0.16528323,-0.42202532,0.5136897,0.45312965,0.6359834,-0.39298072,0.57643056,0.06700694,-0.12220522,0.09719315,-0.0010364148,0.42220575,-0.03986941,0.30819613,-0.004894614,0.045130644,0.35216787,0.5603024,0.24830765,0.34538034,-0.041853603,-0.253533,0.03141075,0.00535581,0.18025826,0.002587291,-0.7802821,0.271589,-0.30704525,-0.0049092416,0.4919031,0.16462411,0.26556608,0.06290928,-0.5331854,0.14452943,0.2148259,-0.038614675,-1.0565362,0.30676368,0.05555496,1.0467257,0.32856897,0.10718958,0.06988095,0.7729941,-0.084965944,0.053171866,0.32740358,0.06209004,-0.33890995,0.50704813,-0.80064553,0.36775815,0.00043848387,-0.03715155,0.15473893,-0.054587882,0.32664618,0.70157087,-0.22221628,0.0667337,-0.048530392,-0.31759247,0.07264908,-0.40980715,0.07101012,-0.30917743,-0.42043594,0.42592114,0.57532436,0.4089864,-0.23794493,0.13963129,0.059883814,-0.11535645,0.13041623,0.011372202,0.06981854,-0.084650606,-0.63251454,-0.08739584,0.3819825,-0.005625036,0.17453417,-0.10956462,-0.15995726,0.37360522,0.06290277,0.1155156,-0.008163175,-0.51596683,0.03679817,-0.32163,-0.4518262,0.3783446,-0.21215382,0.149753,0.17776471,-0.05740908,0.016620673,0.39430487,0.31585538,0.8763873,0.15791765,-0.056180887,-0.38950267,0.18242396,0.12144462,-0.15174024,-0.032013163,-0.4112522,0.13564986,-0.6292622,0.37278306,-0.11002084,-0.42576128,0.04129764,-0.24543296,0.08624719,0.36638826,0.010903707,-0.11596047,-0.16541964,0.02156678,-0.0054763462,-0.13107058,-0.22042462,0.19442496,0.09162622,0.00021869403,-0.2019232,-0.077382796,-0.36355722,0.07335795,0.001485687,0.57080716,0.44918293,-0.069021694,-0.31304976,0.06381233,0.0927097,0.5559096,0.03615533,-0.053395946,-0.10082225,-0.5710816,-0.44076332,0.53540796,-0.06950731,0.3467476,0.2756984,-0.10927113,0.55984294,-0.1621986,1.1320007,-0.0016985948,-0.41189083,0.12600213,0.49906117,0.059116364,0.031811886,-0.3105019,0.9726132,0.46651238,0.04099583,-0.056593813,-0.412031,0.03118045,0.27098888,-0.17234462,-0.061406054,-0.19404468,-0.6274094,-0.421363,0.102954075,0.16932562,0.21891436,-0.13422707,-0.067001745,0.38995552,0.07379123,0.28266117,-0.38031524,-0.17114346,0.20348524,0.08626751,-0.16841468,-0.008108834,-0.5310347,0.35262614,-0.45907623,0.15229867,-0.49126202,0.1820316,-0.2735379,-0.11153335,0.14739448,-0.2943278,0.42547005,-0.42320564,-0.47964185,-0.09913477,0.34663063,0.14158146,-0.029643547,0.49116734,-0.3256028,0.03003542,0.00027223735,0.48486096,0.86551344,-0.33740857,0.1937487,0.4571506,-0.45279294,-0.51942915,0.104696974,-0.32436657,0.123277105,-0.0684784,-0.19864693,-0.29266727,0.35032675,0.27145046,-0.093519084,-0.1054362,-0.4011456,-0.100602284,0.36362627,-0.30584177,-0.15028456,-0.26968363,-0.141719,0.36844715,-0.3499676,-0.4729033,0.11600414,0.29602125,-0.02862057,-0.6351689,-0.041633762,-0.33410507,0.48297003,0.043108344,-0.47365522,-0.3730521,-0.07571534,-0.36056322,0.31649765,0.1357709,-0.23095372,-0.048261944,-0.2247978,-0.029008912,0.8665902,-0.1349391,-0.025372697,-0.44658074,-0.2968252,-0.6422174,-0.34824717,0.20372626,0.06284371,-0.06736329,-0.5832258,-0.20018516,-0.26256046,-0.025217175,-0.17924307,-0.19367959,0.3485431,0.08012966,0.6009134,-0.40655282,-0.951018,0.40974694,0.17830542,-0.022606198,-0.68523586,0.5149224,0.003503866,0.57985604,0.048806135,0.091219984,0.23566912,-0.5911335,-0.1028914,-0.23647764,-0.18480395,-0.471498,0.27989072 +433,0.27506414,-0.018000979,-0.41581768,-0.1941529,-0.27825344,-0.08691562,-0.15631384,0.26924276,0.2667783,-0.067048796,0.07018325,-0.010746259,-0.1526925,0.47601846,-0.07709804,-0.84789306,0.071184985,-0.028383275,-0.6882118,0.54178834,-0.5722021,0.2745378,-0.10776433,0.35728306,-0.08044604,0.20256898,0.06786693,-0.07953261,0.15952608,-0.06648321,-0.105281286,0.22886637,-0.6178366,0.35758665,-0.04646381,-0.24557965,0.0727094,-0.2417365,-0.38330925,-0.57232106,0.18487015,-0.5429131,0.59113365,0.044511054,-0.32676938,0.2422571,0.22364885,0.25574565,-0.36116028,-0.021880733,0.27908558,-0.15076983,-0.16401713,-0.15015496,-0.21954481,-0.53759223,-0.54883164,0.02197917,-0.7711905,-0.0909289,-0.24537228,0.22153696,-0.3529355,-0.07517863,-0.26274273,0.47666708,-0.34361127,0.17302468,0.14199881,-0.110319145,-0.065350644,-0.38453534,-0.08330501,-0.09884539,0.29640672,0.020152735,-0.3170217,0.3374052,0.37413904,0.48759687,-0.049121615,-0.24767703,-0.25527507,-0.17645772,0.18196625,0.47071093,-0.018328428,-0.26026374,-0.2189408,0.044349805,0.123988815,0.23286694,-0.061878428,-0.46506995,0.041886587,0.0049647368,-0.32586053,0.58095163,0.40535054,-0.5486348,-0.38362342,0.5220241,0.36098802,0.2026053,-0.24695651,0.16445614,-0.07197123,-0.5361593,-0.2416795,0.17350386,-0.1326073,0.3609963,-0.15676938,0.1752879,0.70299286,-0.19049191,-0.1593332,0.09448438,-0.21882409,0.10231069,-0.32052034,0.025062634,0.037279792,-0.5563591,0.061201558,-0.21640888,0.8062169,0.05042582,-0.8233712,0.28694677,-0.5904843,0.06371541,-0.20292942,0.6620147,0.8342132,0.33709347,0.21924034,0.75336206,-0.5078212,0.08219877,0.06672762,-0.39068043,0.02710124,-0.042492066,0.20088723,-0.6051677,-0.006406885,-0.053151462,0.086837806,0.13148037,0.17590117,-0.39512417,-0.14542745,0.09037364,0.83564335,-0.29479435,-0.30205154,0.7653671,1.098113,1.0268279,0.11007099,1.2047147,0.40358722,-0.10916788,0.14553049,-0.42058828,-0.49770424,-0.0031756805,0.2188155,-0.11219649,0.27716443,-0.02843136,0.13638937,0.43207085,-0.21725999,0.01511848,0.03223068,0.5087035,0.05926421,-0.15502277,-0.17717582,-0.24269469,0.18586993,-0.10507139,-0.03470793,0.35321766,-0.20971915,0.33442286,0.14101234,0.9994853,0.23283936,0.15363114,-0.05772137,0.4379021,0.24641384,-0.10213321,-0.09273608,0.4052486,0.37062436,-0.05706082,-0.56752014,0.07809667,-0.44452265,-0.27381867,-0.18367052,-0.44752643,-0.21235606,-0.03355104,-0.30922747,-0.22483373,-0.0040364745,-0.13165836,0.543366,-3.007884,-0.2371659,-0.15849908,0.20647614,-0.14303707,-0.1321253,-0.12513775,-0.49708843,0.3269511,0.35969183,0.36657906,-0.5580474,0.55684924,0.3203796,-0.41786352,-0.24397938,-0.6973674,-0.18248327,0.056952477,0.3430581,-0.11413883,0.047684744,-0.13796066,0.105451584,0.6598376,-0.07391545,0.026372384,0.14805569,0.5712941,-0.13256243,0.52998745,0.10593592,0.6523049,-0.27481854,-0.15595442,0.26483876,-0.39718232,0.5289889,0.07741535,0.15146627,0.5233912,-0.42702115,-0.9141124,-0.42879596,-0.3537911,1.1105874,-0.28016263,-0.29604974,0.29866183,-0.3012968,-0.13639967,-0.03479329,0.3458951,0.002916203,-0.11501361,-0.6077945,0.19712344,-0.21332678,0.2213289,-0.08797788,0.010548736,-0.19063732,0.68705,-0.061393175,0.55768496,0.2569437,0.09692964,-0.40546206,-0.30658787,0.031119611,0.8405746,0.36832288,-0.011411394,-0.12690352,-0.20708445,-0.22020754,-0.32814163,0.08614178,0.679895,0.47635126,-0.08367057,0.09548993,0.44600445,-0.27214268,0.104974344,-0.11439863,-0.32763317,-0.07361306,0.23161313,0.4303183,0.6548005,-0.22533043,0.66378176,-0.025378194,0.04156742,-0.23677577,-0.44832614,0.5446554,0.47025383,-0.10586922,-0.32562065,0.47422224,0.38578928,-0.20899075,0.3967647,-0.44834378,-0.33138803,0.6953475,-0.0836255,-0.3390644,0.030943481,-0.24314973,-0.15131694,-0.890031,0.28704745,-0.33139977,-0.6447812,-0.4947704,-0.107967615,-3.8110754,0.04313095,-0.2857097,0.07068088,-0.15384696,-0.061952714,0.2556182,-0.43365,-0.40719938,0.21396142,0.18957426,0.44481552,-0.10985829,0.16961217,-0.24916026,-0.27891478,-0.33348128,0.26178804,0.04671137,0.2011945,0.10015479,-0.39900228,0.21815032,-0.11999167,-0.5219294,-0.055111427,-0.38142845,-0.34391367,0.018223587,-0.5493876,-0.20443231,0.74220806,-0.54389656,-0.056268223,-0.3243256,0.041301075,-0.082350604,0.38007757,0.18453392,0.2130566,0.018379541,-0.04408376,-0.27184188,-0.44177192,0.18905303,0.11185797,0.40199375,0.49337357,0.1384483,0.25879824,0.6425492,0.6251765,0.052753273,0.6832656,0.16592942,-0.1961372,0.38238522,-0.24185228,-0.1790732,-0.59565914,-0.44832066,-0.2588223,-0.40903085,-0.5588665,-0.0544815,-0.20483285,-0.74498105,0.47085905,0.21696314,0.02666541,-0.23381259,0.30249053,0.27281708,-0.12545177,0.17491056,-0.17178679,-0.18360645,-0.41479862,-0.4059605,-0.69178903,-0.47890377,0.23572055,1.1220337,-0.24063618,-0.062443033,-0.04365423,-0.33652973,-0.08546483,0.024368923,0.18794507,0.31022274,0.22637513,-0.14231607,-0.6268917,0.35395527,-0.29093477,0.053068757,-0.5643132,0.035321455,0.81229717,-0.7236439,0.64057153,0.19227457,0.1905788,-0.013706519,-0.5739438,-0.34048197,0.055196628,-0.09485273,0.35647964,0.13369504,-0.6928406,0.44243982,0.27689713,-0.18081625,-0.70622635,0.4302185,0.015627421,-0.11280219,0.13772377,0.31225646,0.2611271,-0.09508023,-0.022693377,0.32059538,-0.45167038,0.2379965,0.07464379,-0.034627896,0.2397016,0.008129725,-0.20542862,-0.5499682,-0.15300393,-0.42153352,-0.36224237,0.058727667,0.11975603,0.1921302,0.061615486,-0.08100788,0.26129586,-0.15735966,0.2490041,0.010263479,-0.13663727,0.32567424,0.406462,0.30246398,-0.5482553,0.57614106,0.29942787,0.08264477,0.03970067,0.1515809,0.44184902,0.17107306,0.4558931,-0.08430241,-0.14823252,0.23844655,0.86137986,0.13607004,0.24839677,0.15051112,-0.030917048,0.22999135,0.0690355,-0.027327742,0.09377468,-0.26976562,0.05257869,0.02562621,0.24855742,0.44504637,0.16516949,0.293737,-0.0067590335,-0.06360377,0.13196188,0.22612514,0.07379262,-1.0535167,0.49289852,0.25645375,0.7360202,0.45200032,0.09306634,-0.055299,0.6673408,-0.27594075,0.040377684,0.5253989,-0.029036295,-0.3068848,0.5620307,-0.6124738,0.6465436,-0.13026363,0.074490756,0.22844134,0.16230623,0.22832134,1.0122977,-0.16244675,-0.015619512,0.061200477,-0.40276676,0.06886614,-0.21861324,0.14350374,-0.32858998,-0.35056353,0.6538692,0.43505356,0.14901075,-0.24349032,-0.0104112085,0.060658243,-0.15588555,-0.087463774,-0.15079346,-0.0349262,-0.17525643,-0.50067425,-0.11874248,0.6564372,-0.14096998,0.06481722,0.10581219,-0.16373433,0.36724275,-0.22050546,0.013092334,-0.025467783,-0.5465486,-0.01427468,-0.21476248,-0.49158207,0.28179842,-0.43909612,0.24901755,0.13798885,-0.014306387,-0.23861185,0.49110258,0.038298585,0.6724195,-0.20178403,-0.025386218,-0.21759135,0.050897956,0.256108,-0.2387836,-0.02600329,-0.49086776,-0.00669362,-0.7012206,0.34861276,-0.2651815,-0.37098455,-0.39692357,-0.099527486,0.11335841,0.40487495,-0.28231838,-0.11727974,-0.0051211235,-0.21385002,-0.29095995,-0.018618045,-0.21315274,0.30504093,0.15231012,0.14445028,-0.07986773,-0.25352138,-0.1648326,0.16766335,0.11033487,0.18310048,0.055297416,0.09861675,-0.19071124,0.035177276,-0.062242653,0.40543666,0.20353852,-0.013043018,-0.12728843,-0.13563463,-0.34110802,0.3549606,-0.09537117,0.25019658,-0.040736053,-0.5739947,0.69056374,0.0583558,1.361031,0.08555811,-0.36574686,0.12252743,0.60337454,0.12224959,0.1951076,-0.15573381,0.80154705,0.5327108,-0.04575267,-0.12613787,-0.45332274,-0.24921598,0.35782778,-0.28315282,-0.29645592,0.08535172,-0.5823361,-0.061737895,0.12189767,0.08328785,0.15577577,-0.08500011,-0.27063277,-0.010985489,0.21388935,0.4272959,-0.6575492,-0.06608736,0.20766027,0.37625366,0.065722,0.22913098,-0.3561077,0.34341228,-0.7013804,0.33457425,-0.42374232,0.10771505,-0.2853269,-0.14284907,0.21287915,0.11273584,0.31070006,-0.18608679,-0.27586764,-0.13949244,0.6920255,0.28846586,0.30705863,0.7670987,-0.28854033,-0.1829009,0.060321026,0.5354017,1.0891024,-0.074827276,-0.36102512,0.075190976,-0.2863354,-0.7064472,0.11011289,-0.47849458,0.021419208,-0.049866863,-0.28479046,-0.18538603,0.2805659,0.080863826,0.18943486,0.14117745,-0.6749016,-0.15033549,0.38749915,-0.22991107,-0.31412274,-0.20805621,0.23974395,0.8993903,-0.26757038,-0.2720956,0.11086981,0.19356304,-0.26577532,-0.5388753,0.10999697,-0.31891558,0.29821312,0.16355893,-0.3345714,0.051571324,0.28922248,-0.50919414,0.19291559,0.32773682,-0.31471828,-0.029572196,-0.14267935,-0.2584306,0.9631764,-0.15133867,0.29674688,-0.56656307,-0.5995234,-0.55196273,-0.37694848,0.25822887,0.12341734,-0.0933258,-0.57449,-0.22324476,0.0040509976,-0.08391379,0.116787426,-0.60313493,0.35845274,0.0472979,0.30340323,-0.08250827,-1.0714452,-0.066427454,0.22698127,-0.07795334,-0.65626407,0.4792207,-0.25211477,0.69715494,0.022891285,0.036821492,0.2192505,-0.48732615,0.26694587,-0.49109915,-0.09021825,-0.57533646,0.18821104 +434,0.21671604,-0.14576726,-0.4396658,-0.16615231,-0.03888813,0.13179046,0.010855798,0.44126204,0.21987823,-0.2924538,-0.07857022,-0.01784355,-0.07286522,0.28354672,-0.0836324,-0.4618145,-0.09194422,0.0064898254,-0.42765176,0.50929075,-0.3743372,0.33982697,-0.18169667,0.23905872,0.049272887,0.46335572,0.012584706,-0.23936138,-0.021453539,0.07232802,-0.13762389,0.07590981,-0.29754364,0.10422266,-0.008360481,-0.11948124,0.13518767,-0.14684643,-0.3642183,-0.5459616,0.31392956,-0.6115729,0.27617797,-0.052643344,-0.1600217,0.19264896,-0.009103866,0.26677302,-0.4197208,0.040180467,0.1247025,0.06780619,0.029970497,-0.07900189,-0.103924975,-0.3441148,-0.42463753,-0.051598325,-0.4384201,-0.16416411,-0.2241871,0.013276321,-0.3011873,-0.1275461,-0.052097205,0.30120182,-0.4744174,0.04054548,0.20979223,-0.123676576,0.17381884,-0.60366035,0.0032758713,-0.0791308,0.23745912,-0.12826405,-0.14021303,0.35379118,0.16701144,0.37537375,-0.01469383,-0.052730188,-0.23532481,-0.1460355,0.18426739,0.30107197,-0.074536756,-0.3569177,-0.06515055,0.038869165,-0.0070711565,0.14990367,-0.07133912,-0.26534688,-0.15075992,0.119175814,-0.21445383,0.13722964,0.38960043,-0.33176154,-0.28597492,0.5190667,0.680513,0.17194414,-0.1823098,-0.01662411,0.021543443,-0.34315094,-0.1665469,0.06437426,-0.16690359,0.4661752,-0.09998706,0.15844399,0.6870021,-0.2684001,0.2293706,-0.13386269,-0.00436124,-0.25857064,-0.18341725,-0.15374002,-0.023888268,-0.32417208,0.14468366,-0.0547477,0.6937138,0.19648512,-0.58449817,0.2839811,-0.39253342,0.16074158,-0.15580127,0.5660306,0.6590254,0.33114845,0.13573319,0.7046505,-0.54580694,0.15045461,-0.08017949,-0.39604595,0.23726,-0.1813377,-0.32754505,-0.5365011,0.014508668,0.18478104,-0.21864031,-0.095114104,0.011015827,-0.46738005,-0.01781035,0.0939517,0.6784943,-0.3083974,-0.02219191,0.30949125,0.97391254,0.8350811,0.020585299,1.158613,0.14033826,-0.2910104,0.39471313,-0.45877746,-0.7630686,0.21048026,0.37029874,0.08544178,0.29185003,0.17290844,0.09058203,0.32351542,-0.49232545,0.19856617,-0.21886893,0.36122695,0.151572,0.01251254,-0.30302677,-0.13059801,-0.041908544,0.033733074,0.035066646,0.24454387,-0.21232969,0.061489318,0.110588886,1.7823108,0.052308485,0.1689474,0.12798722,0.53809226,0.118555546,-0.1522459,-0.13559748,0.44925976,0.46297294,0.07505036,-0.6441526,0.1346902,-0.2959094,-0.5015023,-0.12682232,-0.40157983,-0.03287922,-0.019244047,-0.46223825,-0.07590027,-0.050374962,-0.19912843,0.44254604,-2.9483306,0.0070397565,-0.16159429,0.3562898,-0.37102565,-0.19121294,-0.08123185,-0.36290917,0.2881422,0.44043052,0.36445385,-0.5542254,0.23783468,0.4662331,-0.45513442,-0.0872135,-0.4791398,0.0019133012,0.01845998,0.40692264,0.022045493,0.087355055,-0.061258364,0.13331005,0.22835064,0.048625812,0.060216565,0.26823145,0.21728247,0.18082261,0.48613197,0.053706225,0.38416958,-0.11945343,-0.011623895,0.17045905,-0.26085472,0.40607125,-0.1067913,0.1393225,0.31817374,-0.32393128,-0.68387806,-0.6388418,-0.28693503,1.3607057,-0.30874628,-0.24896882,0.33741978,-0.3727109,-0.16730683,-0.2867817,0.4785406,-0.119139,-0.15166196,-0.7367063,0.18783692,-0.06626064,0.3471678,0.06695916,-0.0455721,-0.36661634,0.61689365,-0.002055033,0.5730497,0.3193015,0.045879528,0.0058399043,-0.40037423,0.025608849,0.6210888,0.34710154,0.08710531,-0.10710421,-0.13604528,-0.36149016,0.009469772,0.22075869,0.33526003,0.6252335,0.008230916,0.06959353,0.19871108,-0.071488775,-0.07708063,-0.13250032,-0.18792349,-0.006543659,-0.10030716,0.45465457,0.54527944,-0.29055503,0.2841566,-0.11607465,0.062239435,-0.21564975,-0.3629527,0.5978395,0.62002295,-0.16411476,-0.086486764,0.4334891,0.5570151,-0.23883823,0.30714625,-0.6174333,-0.04127473,0.5491756,-0.23076038,-0.26102734,0.10766511,-0.31696665,0.15162945,-0.8218279,0.15785922,-0.16343832,-0.2980885,-0.5737121,-0.16934608,-3.3325572,0.042349003,-0.16205554,-0.2605029,-0.0828259,0.056550495,0.32536164,-0.6897012,-0.4595345,0.18965912,0.055038232,0.5262267,0.04969844,0.01598804,-0.3245679,-0.1466196,-0.37346593,0.07014597,-0.0024300218,0.27305043,0.041909643,-0.47299936,-0.109424844,-0.024960598,-0.36665618,0.13384151,-0.36002052,-0.2999925,-0.18223931,-0.42586327,-0.260024,0.7166376,-0.22954842,-0.0021113951,-0.09062126,-0.050525267,-0.15278901,0.21508007,0.2129133,0.007687326,0.064969555,0.046053533,-0.055427518,-0.33734688,0.29560757,0.040894914,0.3251477,0.2602902,-0.02660156,-0.0086691575,0.5189021,0.45828596,-0.16011448,0.6712143,0.6384984,-0.1630168,0.2550631,-0.36852664,-0.027341468,-0.39473048,-0.33807555,-0.13182727,-0.30834988,-0.56339556,-0.09560881,-0.37580347,-0.7760876,0.32945263,-0.042556245,0.15349859,0.10896052,0.09364555,0.48124236,-0.032833498,0.12664399,0.09611745,-0.07135823,-0.50775516,-0.39750162,-0.5455232,-0.24052949,0.30076537,1.0902883,-0.32639298,-0.13519984,-0.06618771,-0.37313882,0.004219826,-0.0072148363,0.028621078,0.16849962,0.24726114,-0.06792227,-0.6091313,0.43709722,-0.017021434,-0.08778828,-0.66561204,0.02364157,0.43106174,-0.63699263,0.4579838,0.2605518,-0.023154374,0.043534692,-0.4438421,-0.22758952,-0.10779837,-0.14940977,0.25490692,0.07651344,-0.6794967,0.31475708,0.18555507,-0.15830651,-0.58056194,0.4991583,-0.09853282,-0.32719097,0.020676693,0.20717087,0.13003652,-0.01550856,-0.21166459,0.24639037,-0.44356278,0.12748006,0.42521688,-0.07021981,0.2477306,-0.12399988,0.015274067,-0.6066941,-0.038204525,-0.41775474,-0.10341255,0.2541662,0.15292324,0.18272908,0.089502946,0.12034129,0.31366682,-0.20497343,0.07347346,0.10702494,-0.19965261,0.3779542,0.31968567,0.3859581,-0.34343272,0.46561342,-0.038560223,0.051954433,-0.00574344,0.13364072,0.4407967,0.18596435,0.3075722,0.048951097,-0.3463679,0.28430682,0.7986853,0.21051452,0.3934277,-0.068278536,-0.24559633,0.2673949,0.12800585,0.17417835,0.085407324,-0.46954945,0.030054754,0.013262113,0.23162948,0.32382366,0.15022011,0.3079481,-0.09642685,-0.20055334,0.054462608,0.20303354,-0.031259645,-1.0029397,0.40816358,0.18350394,0.67130876,0.46352944,0.018331798,0.019446472,0.48546496,-0.16320726,0.2275845,0.33024853,-0.096323684,-0.58229154,0.3852275,-0.6264004,0.5840561,0.113491155,-0.07295361,-0.020507058,-0.024147844,0.16360421,0.82153064,-0.09210971,-0.098566435,-0.018686993,-0.32773176,0.074931994,-0.34864298,0.015067903,-0.5514472,-0.30133867,0.39712662,0.47135913,0.3410447,-0.10495426,-0.050739136,0.020395812,-0.0693795,0.14316039,-0.083783254,0.061367355,0.12681721,-0.63511956,-0.3395219,0.4249563,-0.28700778,0.10149581,-0.071227506,-0.22346841,0.23920618,-0.1033251,0.010728343,0.025924172,-0.52210957,0.056682013,-0.074695274,-0.24813621,0.3950179,-0.27451906,0.41199857,0.10037688,0.013862564,-0.33591393,0.38533834,-0.020052908,0.6693495,-0.22722481,-0.19083251,-0.5346642,0.07277249,0.16938621,-0.1303918,-0.04014063,-0.30327466,0.0061375815,-0.4641075,0.28829896,-0.01358366,-0.21925873,0.0027469953,-0.42330703,0.0017667651,0.56995314,-0.07197411,-0.16179824,-0.20255576,-0.14647485,-0.21535069,-0.15157579,-0.19534935,0.22805944,0.12389514,0.050383464,-0.07950313,-0.19611983,-0.06504185,0.29202473,0.11248014,0.24736144,0.30554187,-0.076203935,-0.21822467,-0.2381794,0.16769163,0.3070661,-0.04379758,-0.04476245,-0.2708465,-0.47001684,-0.3661137,0.08024383,-0.17543958,0.35475904,0.13223521,-0.30714092,0.48759657,0.011817753,0.9113588,0.039677605,-0.2528636,0.08582635,0.5415299,0.21325938,0.08358096,-0.21477972,0.7505774,0.6734455,-0.07114153,-0.22415896,-0.1771622,-0.17757146,0.16575721,-0.14455391,-0.06463777,0.046382997,-0.6542391,-0.1836599,0.28419396,0.11795798,0.22568344,0.09287238,-0.17377645,-0.034693576,0.14598796,0.36854658,-0.3911542,-0.12819725,0.30685318,0.08170034,0.26641655,0.21860339,-0.4629658,0.46206513,-0.47680372,0.024260055,-0.13578254,0.19439769,-0.20031887,-0.18354866,0.1674544,0.030734815,0.39302924,-0.21933015,-0.4391592,-0.32970962,0.54749453,0.011952051,0.19544159,0.5171263,-0.16265719,0.04936694,0.008568951,0.49962854,0.9119591,-0.20154507,0.0009536902,0.46204728,-0.37854657,-0.50593936,0.16725609,-0.2920121,0.15788864,0.07046212,-0.15697552,-0.44947675,0.24530627,0.13210125,0.012314472,0.09863009,-0.58322006,-0.34042248,0.09716579,-0.24534711,-0.1924074,-0.28697115,0.13400911,0.7511403,-0.40267423,-0.2351015,0.0774147,0.28048542,-0.17725264,-0.5122897,-0.08462319,-0.4179181,0.31514102,0.12427257,-0.2377796,-0.14533135,0.11651703,-0.30649242,0.19851759,0.115937695,-0.37711382,0.11717607,-0.26452413,-0.020178366,0.8249945,-0.08616725,0.0063017607,-0.48747364,-0.2576827,-0.7886088,-0.28097102,0.47415748,0.10135265,-0.07762957,-0.4028873,0.09501315,-0.022526132,0.15968429,-0.08344632,-0.51045203,0.5730475,0.049417216,0.14697787,0.021907179,-0.84351563,0.040999316,-0.023006618,-0.17663051,-0.5046573,0.593779,-0.18847513,0.8374857,0.033021983,-0.037884165,0.1427634,-0.3807205,0.07094689,-0.29019117,-0.2837387,-0.62560266,0.11276896 +435,0.38612556,-0.36577418,-0.64805084,-0.14325818,-0.0023077405,0.055153105,-0.36041215,0.3172119,0.018616028,-0.6378844,-0.08999358,-0.052856866,-0.08284744,0.14065307,-0.18775657,-0.48002717,-0.037628576,0.12420264,-0.5192626,0.40167925,-0.64203715,0.22407605,-0.09539854,0.18044037,-0.12099433,0.078697,0.23109096,-0.094355874,0.121725306,-0.17404915,0.28468752,-0.08704695,-0.62397164,0.25428846,-0.13252237,-0.42164823,-0.01090376,-0.30690357,-0.39031076,-0.7765277,0.31836507,-0.80998355,0.49273905,0.118196264,-0.26742065,0.20860672,-0.044341106,0.2995019,-0.32965267,0.21096016,0.23963049,-0.18447235,-0.18849255,-0.1546092,0.03940657,-0.30945554,-0.5312457,0.05052457,-0.5137011,-0.012320184,-0.24038556,0.19070338,-0.40123448,0.05966068,-0.3032685,0.25848457,-0.43497902,-0.22826006,0.28863642,0.02744895,0.31666666,-0.5797539,-0.1579303,-0.22343516,0.15227993,-0.19412059,-0.21134081,0.22207054,0.14212188,0.485822,-0.041516863,-0.081763946,-0.11246065,-0.088105716,0.5021466,0.4530557,-0.075013615,-0.37311834,-0.2283899,-0.22724034,0.15557133,0.06771266,0.00028300285,-0.2484681,-0.07811273,0.07708509,-0.26228064,0.28099996,0.62739587,-0.18695047,-0.13664082,0.34574705,0.6898061,0.16720557,-0.040943705,0.28038457,0.037483998,-0.53175974,-0.31290415,0.26730523,-0.14777043,0.33767554,-0.20943072,0.33292845,0.45738012,-0.22978657,-0.056800522,-0.00884173,-0.10710733,-0.04617491,-0.30158645,-0.37946904,0.32601207,-0.5137876,0.109315634,-0.38044655,0.6833807,0.06657791,-0.72318065,0.3842042,-0.49404156,0.20665742,-0.03391489,0.8700351,0.769193,0.38983816,0.08271801,0.8065522,-0.53308743,0.030018069,-0.00078081165,-0.35666913,0.27455476,-0.2608303,-0.2011494,-0.3215441,0.003217578,0.08214466,0.0071633686,-0.20646533,0.48183364,-0.5035376,-0.04582008,0.06984928,0.5271621,-0.29633385,0.25934446,0.7467679,1.1157504,1.09625,0.27569023,1.2815922,0.25626293,-0.2725674,0.0044703805,0.0074305166,-0.99613726,0.2920292,0.29139993,0.1571378,0.2639777,0.121738344,-0.3021676,0.4795043,-0.44507128,0.03132347,-0.27496505,0.24187341,-0.24275126,-0.18120027,-0.4364282,-0.067418545,0.10111026,-0.039573487,0.022952905,0.25974068,-0.27793437,0.33365208,0.08535007,1.1090645,-0.37956384,0.18123606,0.075741634,0.24279083,0.18160227,-0.27378613,0.03897887,0.22816795,0.5728918,0.15732847,-0.7032065,0.18694337,-0.14477286,-0.48631924,-0.14055444,-0.15850884,0.052885048,-0.13949819,-0.3388577,-0.17996573,-0.0012985033,-0.44806856,0.21870448,-2.5270028,-0.1786126,-0.18087754,0.2359333,-0.097403534,-0.15613762,-0.0706466,-0.39903104,0.49935454,0.42089707,0.46560752,-0.5355319,0.41246873,0.48429155,-0.4439371,0.11868775,-0.7620331,-0.13695045,-0.19302522,0.29937124,0.13312699,-0.106526986,-0.024025513,0.11395447,0.39247248,-0.15023006,0.12691721,0.2474707,0.44965026,-0.012727453,0.5041948,0.028873939,0.5209933,-0.48650625,-0.17395003,0.37268984,-0.44030717,0.30830732,-0.09740868,0.26854143,0.3567108,-0.5941273,-0.93377185,-0.5880397,-0.42414,1.3419559,-0.12920272,-0.5338854,0.30681878,-0.31989023,-0.39839008,-0.013203463,0.45289543,-0.26931828,0.007849052,-0.9546131,0.004702582,-0.17814478,0.40364838,-0.10826261,-0.0036757635,-0.6497096,0.721534,-0.092476755,0.53666425,0.4490355,0.15603295,-0.2477156,-0.5059512,0.010314813,1.0503069,0.38130283,0.1900042,-0.26169246,-0.031038664,-0.25397283,0.069863044,0.03560746,0.4043122,0.81946886,0.03844542,0.27041373,0.23606946,0.072109774,0.064358406,-0.077629775,-0.3291334,-0.21239226,-0.06364278,0.6391251,0.48944646,-0.11202899,0.1336744,-0.027085373,0.2909306,-0.3279025,-0.37476003,0.500781,0.7914531,-0.061506663,-0.2995443,0.6664662,0.6052833,-0.22369348,0.57237476,-0.6304757,-0.44853476,0.23932065,-0.039941814,-0.3673696,0.33679295,-0.49508154,0.25891382,-0.89032745,0.3848556,-0.6374798,-0.71232855,-0.7121509,-0.26624137,-3.5540633,0.30970255,-0.15754685,-0.1868667,-0.2291517,-0.06162759,0.549274,-0.4698577,-0.6074989,0.16479741,0.10894866,0.73389995,-0.09415773,-0.08120235,-0.3548157,-0.03179648,-0.45404655,0.15638176,0.251245,0.04449995,0.05176099,-0.36988977,-0.18147479,-0.3188637,-0.2950732,-0.07969327,-0.46124637,-0.338561,-0.14238243,-0.3781179,-0.4300279,0.6648363,-0.21330403,-0.0714282,-0.17154318,-0.010371302,-0.1533321,0.47990465,0.052835006,0.24405906,-0.095247544,-0.18808188,-0.21593054,-0.18538244,0.16859889,0.022578625,0.14796475,0.49728182,-0.59353626,-0.090741605,0.3479093,0.6515453,-0.17125061,0.9379569,0.49978513,-0.1660983,0.40830147,-0.16897072,-0.25585312,-0.51100945,-0.20810571,-0.028155813,-0.4595116,-0.5259975,0.045434237,-0.3586439,-0.8071595,0.5426791,-0.11229812,0.10929751,-0.04457983,0.19234252,0.19926745,-0.0077808043,-0.03545425,-0.18056637,-0.120877475,-0.31485498,-0.35898775,-0.81114674,-0.4819628,-0.12161536,1.22898,-0.18695869,0.09053634,0.15368226,-0.17676269,0.17307083,0.21154836,0.05896109,0.24296425,0.34876618,0.16385324,-0.6254085,0.49047568,-0.16261429,-0.2251913,-0.6485258,0.08923447,0.7884997,-0.626688,0.4737072,0.5443598,-0.033296898,-0.19141586,-0.6221998,-0.09828469,0.05185249,-0.13710898,0.57179266,0.22461806,-0.84470785,0.53954935,0.36555788,-0.13135025,-0.6747439,0.53731734,0.084302835,0.058855765,0.053131223,0.43409082,-0.43675998,0.06232941,-0.19197644,0.34078678,-0.27419588,0.33945194,0.19238622,-0.14864218,0.42771465,-0.21937473,-0.12275417,-0.51736456,-0.13019544,-0.68797046,0.01263654,0.27703208,-0.15718427,0.018103536,0.14659296,-0.02462051,0.583043,-0.2528229,0.07143417,-0.099039845,-0.4350453,0.3693241,0.5443804,0.19343932,-0.3622346,0.6809011,0.08047174,-0.26440364,-0.34829727,0.26272488,0.476821,0.041631103,0.57259166,-0.10104275,0.094004355,0.30591172,0.9825023,0.28366244,0.7124442,0.18259764,-0.050475355,0.2119891,0.25164783,0.3086949,-0.0009697263,-0.34361792,0.037936598,-0.032926776,0.26371711,0.3471623,0.00549459,0.48724973,-0.21637811,-0.12784195,-0.0005133106,0.32066786,-0.05906673,-1.2171581,0.58273953,0.10664124,0.7033273,0.64356637,-0.018158723,0.16907209,0.4692313,-0.19063853,0.07542311,0.16635264,0.13749443,-0.49577123,0.4700508,-0.753211,0.2689601,-0.16407767,-0.0024562455,0.17645349,-0.19245552,0.6580573,0.63473225,-0.019788774,0.22196515,-0.12106584,-0.13797377,0.3037813,-0.27750397,0.2965825,-0.26426566,-0.33211473,0.7997194,0.54424304,0.384531,-0.22484732,-0.04083071,0.031600047,-0.08443188,0.15852666,-0.012045879,0.04283518,0.005571429,-0.651512,-0.16173172,0.5386128,0.112484604,0.10587248,0.12703745,-0.3827855,0.22995193,0.043452714,0.11033809,-0.04357366,-0.5980783,0.13627441,-0.3870155,-0.30696803,0.27151912,-0.3525712,0.2730815,0.3191302,0.048571844,-0.37254614,0.008581487,-0.0618558,0.7128467,-0.02592203,-0.1971812,-0.38691285,0.28404,0.3305135,-0.3407374,-0.07576531,-0.40829134,0.048406202,-0.6199847,0.4953895,-0.12149884,-0.25590184,0.44032013,-0.020828221,-0.010401724,0.554903,-0.34370738,-0.22465254,0.21232727,0.025111616,-0.19375786,-0.1815834,-0.14725097,0.19109562,0.11936282,0.21887049,0.02128932,0.18610956,-0.054356217,0.38851973,0.2968734,0.2987131,0.42574328,0.110131554,-0.63899666,0.009083831,0.006050715,0.67469394,0.05975501,-0.113129064,-0.3118254,-0.7098615,-0.24958898,0.18519154,-0.12112231,0.24667645,0.05811021,-0.27982932,0.6814303,0.22606349,0.9601954,0.013110115,-0.40554312,-0.0035177744,0.73519194,0.043389603,-0.20962895,-0.35850254,0.8784735,0.63578475,-0.38214478,-0.085186586,-0.29881126,-0.1845356,0.05157605,-0.26983327,-0.26900804,-0.073147476,-0.791734,-0.07624045,0.16783795,0.3344538,-0.021129988,-0.17332682,0.11127511,0.29491755,0.025382899,0.082005896,-0.68431944,-0.030275155,0.21529767,0.16310175,-0.030474255,0.06390096,-0.30474064,0.23484658,-0.76597416,-0.024642803,-0.17664433,0.07350154,0.027925886,-0.46050772,0.10560233,0.01572572,0.34874582,-0.37138087,-0.21371518,-0.055524983,0.38297784,0.220134,0.33139548,0.8605948,-0.22735724,0.19899045,0.20264561,0.35427406,0.9645062,-0.314272,-0.01489046,0.2762499,-0.3939441,-0.69779235,0.1284276,-0.48778504,0.3323631,-0.17352353,-0.4322594,-0.47480538,0.25599715,0.24264549,-0.055839337,0.09443457,-0.79995114,-0.19018294,0.22836025,-0.18365632,-0.2452252,-0.3980026,-0.01774268,0.6120783,-0.26609653,-0.26611727,0.02867077,0.3494822,-0.4132529,-0.58840317,-0.058384456,-0.46191713,0.3669272,0.09987114,-0.14462504,0.022963643,0.10598544,-0.5073875,0.2661312,0.004644347,-0.26889646,0.021048166,-0.3722901,-0.058336217,0.7507751,-0.23191191,-0.030931445,-0.6122182,-0.58708036,-0.87859976,-0.20921485,0.6470193,0.23462452,0.07939183,-0.5361637,0.05350179,0.07982819,0.28102115,-0.14386015,-0.3461094,0.44241005,0.04415383,0.4162973,-0.11077202,-0.7480587,0.22108918,0.25950545,-0.19802545,-0.46730053,0.48759276,0.021126628,0.6443065,0.18775576,0.26130655,0.103352055,-0.7270967,0.16290042,-0.1617739,-0.20070688,-0.75491804,0.025048275 +436,0.5095377,-0.08348252,-0.53348917,-0.06252741,-0.3197182,0.14301583,-0.14777113,0.4862275,0.14269504,-0.6903191,-0.18163456,-0.25278082,-0.10903601,0.23551926,-0.27008912,-0.39146617,-0.0043227756,0.13956417,-0.36638102,0.5404882,-0.40576997,0.38602242,0.13788591,0.41320825,0.10086453,0.14546172,0.20736876,0.21386385,-0.017800774,-0.44569275,-0.0018081239,0.051329434,-0.91701883,0.31035823,-0.20374468,-0.6288099,-0.08619547,-0.3560849,-0.21490733,-0.74648917,0.42317447,-1.0525227,0.57026863,-0.012420088,-0.3166313,0.09562928,0.24485265,0.28238946,0.07386762,0.028641436,0.17826419,-0.03691123,0.070531145,-0.1686959,-0.12398002,-0.52663386,-0.54535,-0.10744305,-0.4597029,-0.16051422,-0.27432165,0.24124745,-0.28309345,0.07706879,-0.14860308,0.3933266,-0.51557094,0.0114947725,0.094772436,-0.09201052,0.38891178,-0.573861,-0.28394908,-0.16837718,-0.023552848,-0.21932687,-0.18757747,0.32501644,0.1559525,0.5677332,-0.099752784,-0.13168906,-0.18264076,-0.036606822,0.058995247,0.5426174,-0.31282115,-0.2610683,-0.20494941,-0.19426958,0.54852927,0.13463938,0.41009447,-0.14914767,-0.02553692,-0.105996266,-0.22132862,0.3782483,0.52851385,-0.35993478,-0.11211673,0.2504457,0.5746542,0.14383613,-0.20816016,0.08189333,0.018730866,-0.3396999,-0.26892906,-0.022287173,-0.24913141,0.54795194,-0.114235945,0.28389364,0.49020797,-0.33134046,0.109932005,0.22391571,0.037548814,-0.07592348,-0.13964073,-0.5134384,0.42754668,-0.57108516,0.13244678,-0.23703685,0.5077658,0.08366083,-0.7303112,0.2297206,-0.5503721,0.050214548,-0.12038999,0.59793466,0.6557003,0.6095696,0.22689417,0.7864666,-0.5344619,-0.13733801,-0.24968253,-0.019245865,0.26286557,-0.19500561,0.00066938996,-0.37140545,-0.038804647,0.0959193,-0.17477468,-0.21361181,0.44024158,-0.65663326,-0.18657722,0.2240015,0.5915928,-0.3539289,-0.0285131,0.6684126,1.2321264,0.99857754,0.16753271,1.0146178,0.13020973,-0.1995691,-0.1659269,0.12425143,-0.7243535,0.20798019,0.39366204,0.12937632,0.50802404,0.1958626,0.07886078,0.2932572,-0.46286887,-0.0958421,-0.14180422,0.35627362,0.05807956,-0.22122402,-0.32507214,-0.091798045,0.15779701,0.04268635,-0.1100061,0.2433687,-0.30593953,0.33661222,0.30014262,1.4633372,-0.12723525,0.07883149,0.06940137,0.42206034,0.16710128,-0.32429948,0.084910154,0.17568436,0.25602886,0.066696934,-0.5217611,0.1279771,-0.12486816,-0.59521013,-0.05510857,-0.3393621,-0.16784689,-0.19340065,-0.50605416,-0.28438607,-0.06319487,-0.14231248,0.28582588,-2.6520114,-0.009680344,-0.13285783,0.35235658,-0.2621681,-0.3177273,-0.124303736,-0.34274483,0.3447174,0.36276388,0.30840948,-0.66961586,0.3706039,0.57474214,-0.39499524,-0.016328821,-0.57084954,0.036053102,-0.03967106,0.36728492,-0.01161477,-0.16340998,0.14381705,0.33765632,0.46526495,0.072957635,0.33126265,0.17085029,0.4534785,-0.046792906,0.43358824,0.024599578,0.3375464,-0.31691977,-0.19957992,0.39727598,-0.45015565,0.083562545,-0.13930978,0.16237614,0.48217636,-0.35550013,-0.7826534,-0.72372085,-0.28991273,1.141597,-0.3221065,-0.8234005,0.13689096,-0.12889203,-0.29154596,-0.1592176,0.40502486,-0.17829713,0.12045795,-0.816648,-0.085845135,-0.18550725,0.34933323,-0.012382058,-0.067110404,-0.47125414,0.81768364,-0.14892693,0.46782616,0.38367265,0.21702273,-0.36138174,-0.50819236,0.07480739,0.8879994,0.567896,0.15446527,-0.28128713,-0.1555675,-0.16792668,0.09178603,0.19881596,0.6481427,0.86220807,-0.12257711,0.17208864,0.27036387,0.105758764,-0.02738102,-0.122180834,-0.39092764,-0.11003168,-0.03576774,0.61268055,0.6387981,-0.0103311455,0.3857076,-0.080802836,0.16817372,-0.24411853,-0.5871315,0.3572453,0.79156315,-0.0836299,-0.20279035,0.7724213,0.5616629,-0.23621945,0.5412174,-0.8671734,-0.4578499,0.42317364,-0.003104261,-0.37764925,0.10399098,-0.3666841,0.27288294,-0.70671505,0.39316764,-0.37144926,-0.49786693,-0.624591,-0.3245876,-2.2269874,0.25075626,-0.032372084,-0.2151916,-0.22970107,-0.45795456,0.4714396,-0.70816153,-0.71660286,0.2160234,-0.006349453,0.6253518,0.07644809,-0.005464462,-0.22814591,-0.36513162,-0.23608148,0.27534634,0.22993326,0.18250749,0.049605105,-0.47215912,-0.15030491,-0.010867813,-0.38052934,-0.12691408,-0.40831187,-0.60973126,-0.2430453,-0.31022838,-0.25617915,0.6479785,-0.33093125,0.07420929,-0.1705861,-0.04888031,-0.07457195,0.24955237,0.08643828,0.17253903,-0.083678305,-0.019774403,0.009027196,-0.21650219,0.15276404,0.11786473,0.23351768,0.37155274,-0.42275968,0.008256435,0.401856,0.61153024,-0.031711966,0.94724643,0.35657853,-0.18182682,0.43152565,-0.08374459,-0.37773147,-0.7606355,-0.19409132,-0.033358272,-0.4333828,-0.40835786,0.032501843,-0.32484457,-0.81829566,0.6417242,0.03210214,0.41304094,-0.07496631,0.33899,0.3371912,-0.17974658,-0.1853122,-0.21011388,-0.17859961,-0.6042233,-0.5486686,-0.7897404,-0.37383685,0.09577298,1.0961752,-0.09013756,-0.10623927,0.28645366,-0.017318564,0.1811612,0.14567474,-0.11897581,-0.17897354,0.4264309,0.08772198,-0.63036126,0.4047688,0.028973188,-0.015496878,-0.6486518,0.18466774,0.5710289,-0.5392132,0.35686377,0.34508112,0.11903907,-0.2578554,-0.67701846,-0.09749983,0.023936335,-0.33427566,0.44880065,0.31623182,-0.91306335,0.41230744,0.2597102,-0.33381885,-0.5775376,0.73676264,-0.10181292,-0.08791786,-0.2854326,0.2974959,0.2023423,0.06506184,-0.15478067,0.2702564,-0.46721724,0.22169098,0.28967017,-0.014440417,0.31562498,-0.08425832,-0.19451605,-0.7183406,0.21225527,-0.43797746,-0.2866576,0.15652418,-0.21797189,-0.1540647,0.5911637,0.25256127,0.48810023,-0.4357981,0.13182968,-0.20740844,-0.31284878,0.48939678,0.46295288,0.53545886,-0.35032767,0.5922681,0.10805245,-0.13042964,-0.10767382,0.11272115,0.42586702,0.1433864,0.23268273,-0.0031534943,-0.22526152,0.19574758,0.93439347,0.28044683,0.3494308,0.08153115,-0.12361369,0.21985625,0.1624246,0.24419291,-0.03212943,-0.579999,-0.0739143,-0.098370634,0.0031925205,0.443745,0.06314922,0.27025852,-0.0052017504,-0.1965976,0.14221953,0.20715025,-0.16522388,-1.3002635,0.20014241,0.011394688,0.8746254,0.65984905,-0.031817075,0.14706214,0.47989374,-0.37540627,0.044724148,0.2703529,0.16458802,-0.32766202,0.51453793,-0.6286769,0.20440389,-0.07460828,0.03957348,-0.10819795,-0.010337318,0.51950276,0.83131063,-0.18156931,0.102406465,0.037208315,-0.093723215,0.121346295,-0.26019785,0.03913496,-0.40793434,-0.21867688,0.8118966,0.35387668,0.48396465,-0.15450723,-0.0070821154,0.06547956,-0.23569389,0.07942016,-0.040906984,0.10883308,-0.22278449,-0.32198524,-0.15136327,0.62722784,-0.05902582,0.06306057,0.06447006,-0.36280057,0.18004613,0.097012915,-0.12590963,0.11090755,-0.91331327,0.0012194173,-0.49960145,-0.21667491,0.54394025,-0.08374778,-0.013356273,0.19522083,-0.005439986,-0.089732304,0.15205929,0.31103557,0.4227941,0.021557242,-0.25554493,-0.20877708,0.21157101,0.06638188,-0.21303841,0.040905893,-0.08652103,0.21389034,-0.556662,0.35951018,-0.07403588,-0.26893386,0.33508244,-0.22275075,-0.037888985,0.57818854,-0.049686484,-0.15865932,0.15658604,-0.18284942,-0.16769919,-0.3454527,-0.23208702,0.32326803,-0.22191088,-0.059115466,-0.04110021,-0.03016339,-0.107176654,0.18922003,0.1874952,0.27848083,0.43543336,-0.10038531,-0.7010264,0.093761556,-0.07224572,0.43817744,-0.17008111,-0.022365306,-0.21270314,-0.67498827,-0.42973477,0.3796234,-0.061994214,0.25005552,0.0025007182,-0.27423915,1.08272,0.14111239,0.9798333,-0.17457731,-0.52527064,-0.07141841,0.62512815,-0.1839434,-0.029492898,-0.31673616,0.86320335,0.5661364,-0.08579343,-0.058733318,-0.14578316,-0.06763081,0.22496553,-0.26101372,-0.24921928,-0.08909773,-0.60670024,-0.114692606,0.20749815,0.43357927,0.015043297,-0.0036241156,0.18445642,0.4055788,-0.006393152,0.49147433,-0.63984984,-0.23020685,0.20018496,0.25221846,-0.0075313216,-0.0006060217,-0.27170646,0.2423528,-0.59886277,-0.039981153,-0.37115237,0.050003447,-0.050262503,-0.44618252,0.13434319,0.047270235,0.36585304,-0.36503845,-0.35855198,-0.18694581,0.47493187,-0.04780907,0.3319047,0.4797913,-0.16409092,0.18836084,-0.17733407,0.49028498,1.0620644,-0.17868379,0.024652889,0.41370508,-0.56959444,-0.68252057,0.305149,-0.4128394,0.28815752,-0.020798849,-0.40747318,-0.39546424,0.2891395,0.24781418,-0.12763736,0.16860656,-0.6935876,-0.22321153,0.28988007,-0.2620476,-0.22614564,-0.20881006,0.14892483,0.58593273,-0.24414514,-0.17237575,0.00746916,0.46296856,-0.29459044,-0.5187239,-0.11926278,-0.3301176,0.4022204,0.02185033,-0.37795258,-0.04824575,0.17542386,-0.4198125,-0.054274227,0.27251396,-0.16753758,0.045421325,-0.41524765,0.21807075,0.720419,0.03576348,-0.12920482,-0.39611128,-0.50834817,-0.87924,-0.30931324,0.28024706,0.29378554,0.020044714,-0.55507606,-0.014562892,-0.25857073,0.031684857,-0.118146606,-0.2656716,0.47906858,0.15596743,0.44921848,0.023483634,-0.7542799,0.14726555,0.038696755,-0.016393749,-0.4081619,0.59241116,-0.038886644,0.8369489,0.19332448,-0.05695207,0.01144634,-0.7582831,0.3950893,-0.17002146,-0.070401974,-0.6401471,0.118171446 +437,0.5077678,-0.045964736,-0.6411325,-0.11906049,-0.09817219,0.13094462,-0.266324,0.47233585,0.30083168,-0.48895785,-0.058827415,-0.2584228,0.09013828,0.4201409,-0.22728652,-1.1005701,0.036411304,0.17537977,-0.41495785,0.40187377,-0.42371148,0.4501992,0.10084864,0.5990029,0.2287589,0.17364965,0.119942054,0.007174107,-0.21025737,-0.0831238,0.08241533,0.019961122,-0.81617886,-0.05899149,-0.1117977,-0.7290242,0.12520498,-0.28856033,-0.34676364,-0.85443777,0.47612652,-0.9240449,0.73200065,0.017431019,-0.26354438,0.04984012,0.1838035,0.49974588,-0.06080785,0.14321212,0.26169732,-0.12345925,0.095977984,-0.03653479,-0.4831287,-0.72691566,-0.59886587,0.16991115,-0.63911384,-0.20696269,-0.10508839,0.29024416,-0.36015877,0.028107522,-0.075766735,0.4486497,-0.30345407,-0.29276296,0.52462065,-0.087022856,0.49483392,-0.67496836,-0.10569855,-0.10224915,0.14086565,-0.18756849,-0.121096246,0.15454294,0.4457323,0.6013898,0.12940277,-0.30556774,-0.36109537,0.21389844,0.12679638,0.38119358,-0.339169,-0.33480453,-0.3511092,0.026234388,0.3650591,0.24490833,0.34570968,-0.36634716,0.13274175,0.32660082,-0.36844915,0.54685676,0.5630416,-0.5856317,-0.050495524,0.18712837,0.4036514,0.17875718,-0.05732592,0.27548772,0.16923556,-0.5062398,-0.18951145,0.24092612,-0.26043406,0.56129265,-0.17636982,0.31842345,0.7186534,-0.23696111,0.15422378,0.101952754,-0.06880601,-0.06279114,-0.44811985,-0.15836808,0.34017718,-0.6366097,0.023685502,-0.37996605,0.8846025,0.2598031,-0.68465525,0.28149208,-0.66802055,0.16034463,-0.20484385,0.48382106,0.7218558,0.34648398,0.19555518,0.9876552,-0.7432153,-0.04044473,-0.059900828,-0.3432966,0.103011385,-0.21558556,0.020793071,-0.3855706,-0.11667041,-0.11330401,0.09046876,0.17504588,0.57879704,-0.61338466,-0.08853279,0.15641347,1.1236564,-0.32845253,-0.12570003,0.7042904,1.1939569,0.93651456,0.07416104,1.2075508,0.3861851,-0.30158645,0.12954426,-0.21914874,-0.69288504,0.45797044,0.28005394,-0.52105033,0.46495232,0.03022977,-0.0053978907,0.6488289,-0.43316948,0.06329868,-0.21504351,0.1366159,0.07770995,-0.37311867,-0.26280922,-0.08569997,-0.022512428,-0.2244842,0.25039136,0.25328347,-0.13624884,0.2657393,0.014363807,1.3479207,-0.2244681,-0.080430225,0.012479448,0.42208755,0.30596173,-0.030700188,0.13391441,-0.054311965,0.28961188,0.061104454,-0.6290484,0.098264605,-0.36088386,-0.53343296,-0.34057707,-0.08477424,-0.06735222,0.058532834,-0.60991156,-0.18585761,-0.08919033,-0.1376453,0.3809381,-2.217565,-0.4310358,-0.1074985,0.2643388,-0.40941235,-0.43865368,-0.19359629,-0.59353477,0.5642116,0.3554532,0.32616442,-0.7080888,0.48512346,0.37822196,-0.27360636,-0.124545366,-0.7176691,-0.11448649,-0.09238354,0.16723078,0.10320134,-0.34375176,-0.018913796,0.29857615,0.61643153,0.100564554,0.006767825,0.089971215,0.46272108,0.0033345313,0.5045163,0.057669878,0.7225899,-0.19113654,-0.18845892,0.4872376,-0.42972466,0.007489122,-0.054784432,0.2018331,0.3949857,-0.5325525,-0.9314215,-0.834946,-0.29014197,1.0198256,-0.1416972,-0.5042924,0.26450533,-0.07017047,-0.16930725,0.08613502,0.39441264,-0.1764588,0.06905477,-0.95851034,0.03449654,-0.19948068,0.04486992,0.045279477,0.036325235,-0.36025804,0.68146205,-0.20271462,0.33856267,0.46067375,0.23425047,-0.23075208,-0.6827844,0.06345964,1.1042367,0.47396028,0.25163832,-0.3863251,0.020800646,-0.56075704,-0.15673298,0.057353374,0.43218577,1.1056262,-0.05900626,0.04966373,0.29015163,0.054898266,-0.026037235,-0.10519523,-0.73596346,-0.16997847,0.015053199,0.59040666,0.6389058,-0.25957453,0.59550387,-0.2636244,0.38526338,-0.39217582,-0.3632801,0.7649008,1.1894126,-0.39230987,-0.3376481,0.78116924,0.34943488,-0.3735917,0.5791652,-0.72436684,-0.45896244,0.3975286,-0.14014468,-0.5875586,0.1505523,-0.38742545,0.13224414,-1.2681091,0.31112936,-0.44766602,-0.20309447,-0.4606641,-0.2727772,-3.6500068,0.22700736,-0.2753318,0.07890816,-0.24200135,-0.061231434,0.46047628,-0.5107707,-0.73490554,0.051198784,0.07405189,0.7158209,0.04822487,0.3168484,-0.20875515,-0.18356594,-0.24371709,0.23194133,0.41310075,0.15872638,0.10097771,-0.5750876,-0.21214588,-0.22341953,-0.5351154,0.024395406,-0.71876377,-0.56401587,-0.253142,-0.71978366,-0.50068974,0.6839733,-0.49335,0.055286683,-0.38667712,0.10239903,-0.18136334,0.64379686,-0.0016968227,0.17766206,0.16742751,-0.10887054,0.005349966,-0.34110075,0.06854547,0.12003778,0.32193473,0.43736956,-0.14034976,0.21724826,0.65605855,0.8340325,0.01903572,0.76617974,0.6540498,-0.090687126,0.32875612,-0.34753892,-0.3419275,-0.5967179,-0.3318758,-0.13333125,-0.38801906,-0.50672305,0.13290733,-0.5370665,-0.85407674,0.5771161,-0.11009837,0.19502665,0.10802027,0.34389764,0.3622891,-0.25252914,-0.0004225442,-0.17275651,-0.09322837,-0.411943,-0.26157823,-0.70001674,-0.6991305,0.087468,1.0317847,-0.08680169,-0.09025183,0.2368667,-0.07422949,0.066972956,0.1736159,0.13329722,-0.11561342,0.6079198,-0.03914146,-0.74422234,0.23560473,-0.1634404,-0.059258167,-0.77120155,0.117036976,0.5937564,-0.7975627,0.6656247,0.4609186,0.26064113,0.05778189,-0.5411657,-0.0382387,0.11309851,-0.2718464,0.5710816,0.2621617,-0.71043456,0.5227605,0.5536754,-0.37782127,-0.7455124,0.52486044,0.13162807,-0.295001,-0.23399813,0.43307146,0.12517022,0.036895525,-0.27377972,0.10131982,-0.4844515,0.15312037,0.41669592,-0.13230282,0.4321281,-0.115437835,-0.29926512,-0.83477604,0.028496174,-0.75535995,-0.26262662,0.14925858,0.012130146,-0.023573894,0.3343112,0.276681,0.4183663,-0.3268552,0.1017601,-0.18689553,-0.2510595,0.34862298,0.4012205,0.4382618,-0.56337047,0.4973888,-0.025477936,-0.26555318,-0.013686483,-0.026389189,0.6149932,0.16957259,0.38443896,0.1544477,-0.046199992,0.17704208,0.74978226,0.055890806,0.50403196,0.26652384,-0.21165265,0.124904856,0.21259366,0.1078667,0.081207946,-0.54425466,-0.11983066,-0.083391465,0.17777555,0.6614793,0.10094023,0.34304053,-0.017908413,-0.43919343,-0.020569097,-0.13427125,-0.19107917,-1.368451,0.44942415,0.23151618,0.76344675,0.52637947,0.020966705,0.20293695,0.40701932,-0.13489811,0.24328288,0.40072414,-0.048508175,-0.3943331,0.5939646,-0.56231296,0.20791976,-0.14381371,0.16351369,-0.039091494,0.19047128,0.46055558,0.91129464,-0.076583356,0.17490432,0.009068801,-0.21477437,0.041842666,-0.31192172,0.04592686,-0.50276566,-0.21634547,0.7642482,0.44894093,0.25810283,-0.37086105,-0.16248274,0.15632048,-0.263058,0.16036397,-0.14968544,-0.04065569,-0.048154082,-0.6184671,-0.4741193,0.46356437,0.40797022,0.04752457,-0.1598956,-0.34218377,0.118416786,-0.16760992,-0.00096674147,0.0056311246,-0.7776107,-0.078091934,-0.64183545,-0.50783986,0.41410348,-0.14953612,0.04893573,0.11869872,0.13156503,-0.26628283,0.3752616,-0.15102202,0.56065714,-0.14909206,-0.22310577,-0.38593516,0.12751627,0.2796696,-0.3007387,-0.09337719,-0.13974518,0.068078466,-0.4777601,0.5678106,-0.03353001,-0.15303499,0.2610215,-0.12175167,-0.20154946,0.45454937,-0.38770214,0.02140938,0.5736424,-0.03511935,-0.28117552,-0.30056044,-0.15627591,0.14992502,0.0017349261,-0.17072707,-0.13238509,-0.2949699,-0.13870409,0.45483023,-0.004882914,0.31341824,0.729675,0.06389495,-0.4454529,-0.17112017,0.34222284,0.5090816,-0.047526654,-0.1697773,-0.4950039,-0.63421685,-0.23196441,0.18110111,-0.1617987,0.21124576,-0.021243356,-0.47490677,1.0311421,0.41695812,1.5857877,-0.038835023,-0.42403713,-0.0007850757,0.52322435,-0.20251355,-0.12597202,-0.66272247,1.0276127,0.7515841,-0.24429336,-0.051471952,-0.47109926,-0.008895571,0.1745427,-0.2404446,-0.1289836,-0.12360231,-0.65762943,-0.5666187,0.41103265,0.43423763,-0.04808955,0.03188977,0.3063928,0.1022567,-0.033145946,0.4241234,-0.7359779,-0.12615083,0.15128794,0.35059786,-0.025563817,0.16047262,-0.42364818,0.36500916,-0.65592915,0.031090068,-0.33583933,0.09306185,0.058868177,-0.45141622,0.25149286,0.03858445,0.24463296,-0.2710246,-0.28321522,-0.03956846,0.48835355,0.09959461,0.3811247,0.77533305,-0.24568497,-0.062173586,-0.048842136,0.7581886,1.547075,-0.12679799,0.013974025,0.35437062,-0.20751128,-0.84879875,0.3645264,-0.44805315,0.20209168,-0.11382373,-0.46055302,-0.7126506,0.36525455,0.17148891,-0.103066646,0.16686517,-0.5187588,-0.32089284,0.27442205,-0.34299326,-0.34455353,-0.13595083,0.1449195,0.6678285,-0.14577499,-0.1823031,0.1901094,0.6030527,-0.19870917,-0.46693894,-0.13887091,-0.40978792,0.27147454,0.3433804,-0.4195655,-0.0061198175,0.16662183,-0.45784152,0.18251991,0.46311796,-0.36819017,0.07564764,-0.27950227,-0.12591584,0.8958903,-0.10154344,0.14239345,-0.71850914,-0.43789288,-1.0065333,-0.28570315,0.3622952,0.31470916,-0.013497064,-0.6962319,-0.01836399,-0.20805773,-0.033435643,0.16873714,-0.46201563,0.45254377,0.08332557,0.7081634,-0.006499449,-0.616565,-0.11935397,0.3703542,-0.25190586,-0.58371484,0.6499217,-0.060229477,1.0549363,0.07368198,0.05535023,0.27839822,-0.516945,-0.011126929,-0.3413078,-0.22689596,-0.9641348,0.024075674 +438,0.35862616,-0.14920567,-0.6817047,0.044039745,-0.010379012,0.2515693,-0.22621812,0.31453058,0.25837755,-0.5070181,-0.103799544,-0.008951513,-0.043619476,0.2576967,-0.21006939,-0.3651351,-0.14994411,0.22462101,-0.43020695,0.34910917,-0.2447984,0.29860315,-0.0230339,0.20640156,-0.0121826185,0.12770948,-0.07668228,-0.06410439,-0.22879292,-0.29292837,0.13978179,0.17491822,-0.5279158,0.090781234,-0.02476834,-0.45317125,-0.04925153,-0.55389285,-0.3885522,-0.7105585,0.37641725,-0.86896807,0.5625218,0.04598069,-0.112588845,0.3284929,0.028264046,0.10218173,-0.115255155,-0.09018818,0.28971618,-0.2131468,-0.25727686,-0.17300247,-0.20751469,-0.21407744,-0.5187848,0.055109743,-0.44884467,0.07480485,-0.17127183,0.16323595,-0.31654316,0.1900116,-0.32280523,0.43108168,-0.32340723,-0.016503586,0.24416296,-0.17743942,0.28380424,-0.7056964,-0.124009386,-0.087960176,-0.0041132653,-0.23937647,-0.20265403,0.1739913,0.4025376,0.53381586,-0.21273589,-0.094973005,-0.48085648,0.11800706,0.31191492,0.5462609,-0.27520415,-0.35514018,-0.120444335,0.07501276,0.32631493,-0.14451419,0.108442284,-0.37139216,-0.060618848,-0.0132913245,-0.23622625,0.3824133,0.5694179,-0.19706167,0.024145875,0.3886045,0.5606957,0.18002473,0.08305548,0.009160272,0.054153804,-0.3558907,-0.06689624,0.109824546,-0.27434352,0.44248867,-0.08533258,0.1520131,0.4157146,-0.24272552,-0.14175077,0.25040507,0.10651418,0.07985475,-0.15647663,-0.28914642,0.25652704,-0.32055163,0.03170757,-0.22886086,0.57091147,0.017844988,-0.82073337,0.3243076,-0.5354544,0.12728123,0.011828874,0.54930615,0.6055352,0.5439218,0.12767921,0.8836403,-0.58294475,-0.03252266,-0.1536652,-0.31283242,0.10122681,-0.051412173,-0.10893085,-0.44528422,0.06128341,-0.13521554,-0.25781196,0.08856208,0.43451554,-0.4962297,0.07885981,-0.081235364,0.6495221,-0.2787686,-0.04424233,0.5940915,1.1357008,1.0642384,0.093594395,1.0844405,0.13236335,-0.29423568,-0.16068979,-0.17396896,-0.9494411,0.3415162,0.34415552,-0.36702496,0.46199203,0.19395865,-0.093640916,0.3579946,-0.46012625,-0.09782217,-0.07020812,0.16092345,0.076748684,-0.21059455,-0.37939343,-0.19211721,0.051398486,0.042283,0.108693704,0.19100103,-0.3229676,0.15662464,0.31220677,1.3441972,-0.24467526,0.07566546,0.13224675,0.011620028,0.15498777,-0.0991587,-0.10761397,0.240798,0.2700819,0.082617395,-0.56273234,0.08905601,-0.058450036,-0.41774014,-0.23942316,0.09373515,-0.10771626,-0.06161322,-0.19689226,-0.18573916,-0.052381728,-0.44495058,0.33222634,-2.3372433,-0.1016925,0.016631657,0.38530353,-0.11280662,-0.37015867,-0.14574154,-0.44288453,0.33137035,0.31980172,0.41391686,-0.6806877,0.32732853,0.47367558,-0.53333753,-0.13221905,-0.494499,-0.08694895,0.009708852,0.19720729,0.17150669,-0.19250874,0.0882592,0.17994003,0.34438398,-0.2062724,0.010696004,0.527285,0.46302631,0.027375665,0.27913645,-0.039187193,0.5553327,-0.25264728,-0.23199868,0.4779392,-0.4554133,0.25536117,0.027883539,0.11735606,0.30072612,-0.3093986,-0.8695167,-0.51515585,-0.06758778,1.4437035,-0.20709737,-0.55645865,0.14697051,-0.17625019,-0.42857462,-0.026775854,0.3504384,-0.18782985,-0.14371176,-1.0445782,-0.07054995,-0.13642105,0.28597215,-0.07047375,0.0770021,-0.47291157,0.75564796,-0.09111809,0.6260737,0.64145195,0.12966561,-0.24956837,-0.4905738,0.087415695,1.2517358,0.50064725,0.16804925,-0.23482111,-0.021867683,-0.2614146,0.014483051,0.060709354,0.46664485,0.66318846,0.002117506,0.09700147,0.11262957,0.14836146,-0.019626277,-0.24227217,-0.3259118,-0.116312064,-0.056715794,0.53870696,0.56799036,-0.25140834,0.30192345,-0.09252139,0.18742573,-0.1039662,-0.48373535,0.3917624,0.96622574,-0.14255436,-0.39285278,0.69652855,0.32723337,-0.39908618,0.46727252,-0.47455046,-0.26390043,0.24665044,-0.2771701,-0.30981416,0.42630452,-0.29928118,0.1321851,-0.77477986,0.39886925,-0.21426384,-0.3552322,-0.6049987,-0.09298881,-2.5590477,0.1545919,-0.24779771,-0.17904167,-0.20300327,0.010467768,0.3506519,-0.47863507,-0.8593445,0.10183261,0.12914495,0.5184361,-0.19665672,0.027140483,0.107624985,-0.14271805,-0.07662726,0.24324656,0.21087937,0.15347789,0.107730426,-0.46607473,-0.10948604,-0.18138511,-0.33291468,-0.013917376,-0.53246677,-0.4472558,-0.03529076,-0.39287153,-0.27053684,0.49918684,-0.44441643,-0.050690167,-0.20855351,0.035252344,0.023444954,0.3337951,-0.15193537,0.13316147,-0.04505033,-0.14428899,0.10177236,-0.020308206,0.3887468,0.08597313,0.16827333,0.57542557,-0.27166036,0.10974027,0.42407343,0.94254625,-0.04606964,0.9712907,0.4845517,-0.15208252,0.19766642,-0.16178845,-0.25316158,-0.52612936,-0.21947663,0.14557645,-0.5265864,-0.40955186,-0.030088216,-0.38304192,-0.9483367,0.49989435,-0.07831664,-0.0052465284,0.11039344,0.4047092,0.43232843,-0.15503995,0.19936265,-0.14936547,-0.17596538,-0.26410347,-0.3778798,-0.6106396,-0.30577818,-0.16547735,1.1583096,-0.12889698,0.05344063,0.16543719,-0.13004246,0.12967624,0.037198715,0.058394797,0.26639456,0.4808981,0.099642955,-0.5422765,0.27038953,-0.18296231,-0.1977849,-0.5207008,0.14113985,0.5008171,-0.58203983,0.48266488,0.39423952,0.029652039,-0.024157524,-0.5709669,-0.031085294,0.06825129,-0.29075623,0.5449696,0.40019363,-0.595822,0.44790283,0.49495173,-0.44367892,-0.7246079,0.33521387,0.090366386,-0.03998425,-0.07610935,0.42612043,-0.15090585,0.11203102,-0.1835989,0.19364044,-0.27884722,0.34639445,0.10346361,-0.16825701,-0.009766971,-0.22346091,-0.16210473,-0.7201804,0.26629716,-0.35177824,-0.17523237,0.10225582,0.14877465,0.07043753,0.10389706,0.10981451,0.5770968,-0.35666615,0.0044851177,-0.082712755,-0.30116668,0.36488852,0.48215374,0.40089723,-0.27131805,0.4962983,-0.12191946,-0.2441427,-0.20387578,-0.08854663,0.5444681,0.03237465,0.15404211,0.2366568,-0.058265217,0.337716,0.75122416,0.10110392,0.40203318,0.025698543,-0.17733045,0.15690783,0.07445603,0.22124624,-0.09047676,-0.55755174,-0.02321268,-0.06487194,0.21062903,0.53100556,0.115179606,0.33486605,-0.34544048,-0.2943217,0.012654846,0.23967569,0.048379127,-1.1659728,0.3411425,-0.05142008,0.7491497,0.6274296,0.0131689655,0.3429242,0.31347138,-0.21588376,0.062441822,0.43157926,-0.016560614,-0.5806641,0.38583544,-0.70247334,0.24810886,-0.15243256,0.13007079,0.14053123,-0.07258712,0.4683055,0.8784181,-0.157512,-0.028182914,-0.09600027,-0.20490953,-0.010160876,-0.2972928,0.19268297,-0.48975375,-0.4537684,0.7756434,0.45303705,0.43900228,-0.29687792,0.10743941,0.18958433,-0.14005154,0.33787876,0.034431387,0.116159745,-0.21071182,-0.65506303,-0.05258011,0.5622381,0.2499117,-0.06315942,-0.1797073,-0.25623506,0.16678654,-0.047629446,-0.09167951,-0.14727828,-0.67077214,-0.25747824,-0.4358246,-0.4301979,0.114832796,-0.0562376,0.059702314,0.19449432,0.02220336,-0.4933274,0.2247324,0.32447442,0.7101037,-0.06072728,0.0131797,-0.23532031,0.451509,0.15151428,-0.0034610373,-0.011097832,-0.15151438,0.20714426,-0.6231288,0.6032339,-0.20311311,-0.36058143,0.19500051,-0.18645273,-0.020168742,0.54750466,-0.35196966,-0.24043849,0.1441399,0.032653105,-0.2775651,-0.37581626,-0.23056516,0.030882506,0.18074346,-0.17922893,-0.11378447,-0.07243372,-0.3008185,0.2615985,0.19408797,0.25621882,0.49998856,0.2021414,-0.70988417,-0.06453898,0.023380855,0.55857366,0.15001443,-0.22560342,-0.6094979,-0.5616826,-0.21030743,0.25524643,-0.17840552,0.2292362,-0.017671293,-0.3492883,0.7673755,0.13343297,1.1752918,-0.06388052,-0.33785635,-0.037963424,0.69634706,-0.08575194,-0.14512096,-0.4700344,0.880902,0.5496489,-0.17556688,-0.0908319,-0.41610426,-0.068075016,0.11106555,-0.21942818,-0.15779069,-0.038990743,-0.73499775,-0.3280477,0.18460962,0.36496702,-0.1543866,-0.12715113,0.2183167,0.34138268,-0.006376321,0.20248969,-0.4687396,-0.16150415,0.26912388,0.120056204,-0.005736251,0.023494722,-0.48254195,0.35109228,-0.53607017,-0.06610314,-0.1753342,-0.031228688,-0.06154812,-0.12193389,0.2231235,0.031414412,0.15427755,-0.35342735,-0.2974681,-0.118742384,0.44577268,-0.04902837,0.20776053,0.6992391,-0.205565,0.15257896,0.15792002,0.5660199,0.99370384,-0.20426954,0.11415933,0.33979347,-0.3158303,-0.6442236,0.41099548,-0.2370604,0.006969405,-0.117975816,-0.2899973,-0.6113553,0.3782864,0.15459171,0.026916513,0.011859564,-0.564597,-0.21008638,0.458389,-0.41373748,-0.08998541,-0.24307151,-0.15540232,0.62771046,-0.29939127,-0.45093113,0.04290654,0.36545846,-0.30162284,-0.52165866,-0.055483367,-0.3723864,0.26746362,0.1674712,-0.22919764,-0.08065427,0.15127672,-0.4477633,0.07206279,0.18307877,-0.32638782,-0.01766387,-0.32230118,0.08684067,0.63787585,-0.2565764,0.13385464,-0.5329408,-0.5965554,-1.0291415,-0.15810017,0.25025147,0.06557678,-0.021526417,-0.80637115,-0.029244509,-0.08340863,-0.14712052,-0.18260875,-0.42339906,0.55157614,0.17157386,0.41950795,-0.26978308,-0.6274029,0.05607578,0.15045322,-0.18096621,-0.35422453,0.4989542,0.2004755,0.73707527,0.058457058,0.07334201,0.26940474,-0.680924,0.1969379,-0.13521066,-0.20068319,-0.6536039,0.02141474 +439,0.54258764,-0.246599,-0.46401307,-0.13401093,-0.23087756,0.33900234,-0.19774412,0.4323172,0.07745938,-0.44695294,-0.2027361,-0.20601763,0.14375392,0.48310146,-0.10974585,-0.5436607,0.16666655,0.2056728,-0.6124276,0.5778428,-0.47652674,0.36915454,0.046293817,0.33489358,0.081287034,0.36173362,0.15480514,-0.16628161,-0.3700551,-0.06235798,-0.037182026,0.16004378,-0.6095801,0.17580867,-0.16989027,-0.36857402,0.02451755,-0.48926392,-0.3591847,-0.6062968,0.120374694,-0.8361033,0.511467,-0.1235226,-0.23244566,0.41910014,0.14600195,0.33504808,-0.2837632,0.22173792,-0.0054142238,-0.020636294,-0.14695519,-0.30070373,-0.31365326,-0.5924426,-0.56829375,0.11092871,-0.45248488,-0.14528807,-0.014842431,0.048243944,-0.2570726,0.05330439,0.06740985,0.24948801,-0.39528444,0.04430207,0.19848748,-0.04453396,0.03505746,-0.36297145,-0.14525911,-0.13400497,0.4020987,-0.23488232,-0.13320352,0.27216455,0.43645996,0.54901284,-0.026727477,-0.16254619,-0.27825782,-0.014095739,0.2122889,0.6137908,-0.077269174,-0.54938114,-0.18329215,-0.0077323597,0.21121988,0.17964587,0.28528097,-0.2359538,-0.07375403,-0.14743312,-0.22815384,0.21732108,0.45957267,-0.4930841,-0.38013253,0.45482698,0.5532552,0.09782275,-0.10976561,0.11978779,-0.017978309,-0.43797973,-0.1772668,0.20328368,-0.1514101,0.5633674,-0.13491735,0.1678804,0.61902887,-0.25562224,0.08201766,-0.0033390084,-0.110295005,-0.091699705,-0.061091807,-0.2320419,0.08939996,-0.3240333,-0.013932964,-0.21036403,0.6205794,0.35103816,-0.6755302,0.39798632,-0.48208427,0.0988045,-0.12210252,0.45347995,0.61614996,0.37281168,0.081294656,0.52368087,-0.3634514,0.10820875,-0.184863,-0.2886688,-0.008437932,-0.27934203,-0.15199734,-0.5326592,0.2850355,0.036243536,-0.11862152,0.11756339,0.44532606,-0.42860827,-0.07200251,0.10442243,0.833314,-0.32861263,-0.19108939,0.79677075,0.96087736,0.8435312,0.0016756833,1.348993,0.49221423,-0.20223993,0.04956076,-0.3878952,-0.6142731,0.28427663,0.40187228,-0.44220915,0.54344505,0.08724427,-0.029447485,0.29993975,-0.24911736,0.015019019,-0.11161947,0.1019698,0.08391218,-0.14289276,-0.28745282,-0.2345747,-0.078258514,-0.16583358,0.30500597,0.26041034,-0.19057003,0.39915147,-0.031629372,1.8752548,0.040943615,0.03747534,-0.13110633,0.4498315,0.23708993,-0.08249641,-0.11400983,0.35421208,0.2884801,0.026578037,-0.5188796,0.08299964,-0.20541224,-0.59688514,-0.2394378,-0.3317428,-0.008548474,-0.03466981,-0.39279366,-0.13415232,-0.063403204,-0.14731741,0.51349026,-2.6517127,-0.34108797,-0.070747495,0.37187654,-0.4182478,-0.33380902,-0.38154152,-0.40985182,0.28428108,0.2590248,0.44057867,-0.68755364,0.47225678,0.21441571,-0.44226745,-0.2365254,-0.513542,-0.076155625,-0.08498539,0.31080717,-0.1657067,0.009996502,0.26832542,0.12820335,0.45628703,-0.12606026,0.07549556,0.22494617,0.40996578,0.28942686,0.3243815,-0.008741426,0.59564763,-0.3014874,-0.20149669,0.3634239,-0.29265928,0.32135952,0.01248302,0.16869082,0.25096285,-0.48932686,-0.7750902,-0.7087298,-0.21423617,1.0531418,-0.22631845,-0.3593408,0.03906629,-0.028267376,-0.19052012,-0.026879616,0.32058176,-0.07386096,-0.11975361,-0.7372945,-0.022608537,0.11945069,0.1481922,-0.05721822,0.18237475,-0.31587043,0.3703621,-0.10194448,0.43701306,0.15163739,0.31785482,-0.024401283,-0.42644787,0.15652078,1.0125328,0.34499472,0.14390928,-0.11637686,-0.32805404,-0.32101497,-0.051946647,0.09460737,0.3802245,0.65683836,0.020830495,0.037974156,0.24672154,0.017987955,0.17073599,-0.09993162,-0.27245033,-0.07735274,-0.047657795,0.48388854,0.39937577,-0.18051535,0.67496514,-0.25289413,0.29175237,-0.20795529,-0.4494821,0.53913915,1.0019157,-0.33376735,-0.24458064,0.42603728,0.35966504,-0.43224427,0.4507558,-0.6991294,-0.31597424,0.42237297,-0.1664591,-0.25338027,0.3574713,-0.17791338,0.17506264,-1.0693185,0.3679979,-0.1899597,-0.17132495,-0.43563712,-0.062702574,-3.2227342,0.066092394,-0.040225253,-0.16019192,0.03475038,-0.1408365,0.11083523,-0.58151424,-0.51178247,0.2986674,0.0038854082,0.7310871,-0.04056799,0.26405704,-0.2514762,-0.3101538,-0.34757754,0.19291785,-0.0060998024,0.37737125,-0.022320224,-0.4502615,0.019323412,-0.25585315,-0.25741893,0.17451675,-0.6670097,-0.46235836,-0.25638145,-0.40900338,-0.22289354,0.65209305,-0.35746473,0.018889105,-0.1992314,-0.055638324,-0.23042892,0.27066436,-0.033362944,0.15081628,0.14475702,-0.11176095,0.06402339,-0.2776836,0.3695555,0.15503411,0.20560858,0.43853536,-0.12603109,0.16790657,0.44772884,0.58048266,-0.08577065,0.5125495,0.47374538,-0.07678084,0.3377079,-0.46367767,-0.07555329,-0.38831088,-0.48258334,-0.16018876,-0.3864924,-0.6321208,-0.15208188,-0.329776,-0.7021175,0.5141173,0.003766038,0.022452127,-0.111103006,0.2626227,0.54378307,-0.26450628,0.04852248,-0.12926526,-0.12970784,-0.4869663,-0.3595077,-0.5105622,-0.43615732,0.31937847,0.9920201,-0.17012501,-0.052555274,-0.06791529,-0.11428172,-0.024013495,0.009915622,-0.041200817,0.037825234,0.46115965,-0.15694954,-0.6996648,0.43461025,-0.28368086,-0.2988215,-0.5214639,0.21178092,0.5905887,-0.6606477,0.64221054,0.40765172,0.09706895,0.1966252,-0.44738185,-0.1383627,-0.03511095,-0.21861553,0.18695065,0.0932414,-0.8054771,0.40595484,0.3215481,-0.44416216,-0.7132168,0.5830423,0.1186728,-0.21363279,0.08076416,0.2909115,0.24410187,-0.02382751,-0.5604923,0.19445625,-0.66911775,0.31675848,0.31546992,0.027116705,0.28964078,-0.072192825,-0.15808302,-0.74587923,-0.08747649,-0.46305454,-0.35790947,0.20057635,0.11210565,0.17480174,0.08205695,0.10724218,0.39606762,-0.6099175,0.14762478,0.10346263,-0.20729944,0.24740645,0.28549603,0.381563,-0.5131807,0.52725726,-0.00058473746,-0.12495572,0.0894841,0.11759755,0.46579638,0.34700042,0.18868503,0.26072434,-0.186756,0.24005897,0.66816705,0.24375452,0.30175036,0.2272722,-0.36456245,0.24374917,0.090440944,0.12907812,0.0027718623,-0.3012351,-0.13956502,-0.040932346,0.18311307,0.42047137,0.20260862,0.35313976,-0.05787495,-0.34933102,0.007861304,0.08514786,-0.0054852883,-1.0656213,0.23820442,0.11349078,0.6664224,0.41911134,-0.023586726,0.20498905,0.44156516,-0.24150859,0.12224308,0.36889064,-0.17298803,-0.44861552,0.5030336,-0.4920578,0.28536034,0.05518001,0.007999997,0.00022753874,0.04559327,0.3229922,0.9028693,-0.07651775,0.23616555,-0.005730599,-0.27374077,0.034801364,-0.39636356,-0.00096779066,-0.5380755,-0.17908049,0.6172632,0.33895886,0.3072711,-0.19728504,0.053539746,0.13079314,-0.14280109,0.09450755,0.23394568,0.34462267,-0.026597448,-0.68141437,-0.34765238,0.63073605,-0.097551316,0.052611776,0.10765692,-0.34678748,0.26546347,-0.26180103,-0.011825574,0.017166765,-0.677912,-0.19970235,-0.36127606,-0.33879337,0.3581785,-0.08292107,0.1628036,0.14587332,-0.008879966,-0.31011766,0.44574445,0.19027726,0.7204104,-0.026409928,-0.2773321,-0.42002872,0.2181824,0.3106645,-0.29849556,0.13669871,-0.101392195,0.060039394,-0.57267386,0.49597415,-0.043093577,-0.3028344,-0.03873811,0.038906302,0.049558412,0.53552544,-0.17950107,-0.08775881,0.10883788,-0.16448234,-0.3925625,-0.014114467,-0.19883868,0.15412425,0.32007235,-0.1898789,-0.087926574,-0.027650945,0.06926866,0.42873606,-0.0773761,0.35017845,0.3835308,0.14394219,-0.19057178,-0.10603556,0.20524979,0.3795796,-0.076050065,-0.08878129,-0.35871843,-0.36172524,-0.1931923,0.049968217,-0.25606287,0.23798886,0.11504405,-0.26644817,0.70056623,0.086210646,1.1687354,0.05942201,-0.36025506,0.1784232,0.33303395,0.041339274,0.004345547,-0.41601345,1.0146118,0.50752366,0.047177568,-0.057082076,-0.36628598,-0.2324564,0.14045782,-0.27126077,-0.38328457,0.03296543,-0.56882876,-0.5512951,0.19593503,0.14858662,0.22459255,-0.14378884,0.3432783,0.22644135,0.13860424,0.21858393,-0.5196174,-0.3648825,0.35473308,0.42648742,0.030439286,0.14779054,-0.36938506,0.37528738,-0.55711675,-0.010562325,-0.18242179,0.15871212,0.034374077,-0.34023717,0.21866134,0.2517031,0.299453,-0.30141178,-0.48631537,-0.22066413,0.49570426,0.06818002,0.09919355,0.57644683,-0.24831632,0.044598326,0.04498228,0.4964048,1.117864,-0.19712307,-0.00046124856,0.5643606,-0.32714233,-0.6646773,0.48886257,-0.22877187,0.28949896,-0.15140961,-0.23124415,-0.77685916,0.4423909,0.17291957,0.024645964,0.0590206,-0.414726,-0.16215661,0.3790531,-0.35398942,-0.3139948,-0.41654146,0.17150228,0.8208316,-0.3186822,-0.19564942,0.18871015,0.2891473,-0.34261626,-0.49375254,-0.21978179,-0.31975135,0.22588444,0.1661231,-0.29761654,-0.16053371,-0.044655148,-0.31017417,0.23268427,0.2598872,-0.29461777,0.1397079,-0.47095382,-0.052488703,0.8847717,-0.26345423,0.082155354,-0.66112083,-0.38306874,-0.89893925,-0.4200601,0.36022398,0.10069712,-0.08323581,-0.53106284,0.09862742,-0.03225647,-0.26637247,0.0033065677,-0.3643113,0.41694865,0.025268465,0.23570086,-0.098072104,-0.79159826,0.16295354,0.21235624,-0.31791788,-0.6028276,0.43177864,-0.083440565,1.1171308,0.09403975,-0.0116063235,0.4929827,-0.49372515,-0.09552369,-0.31784764,0.04910079,-0.649571,0.13056569 +440,0.6686596,-0.36048025,-0.5320132,-0.12252111,-0.4435543,0.09479825,-0.23706429,0.49247402,0.22193874,-0.55836993,-0.18995099,-0.15183301,-0.04397974,0.2790548,-0.08131684,-0.55513465,0.15926066,0.3631043,-0.7159712,0.6361432,-0.48848635,0.36964312,0.28011602,0.37977546,0.17570148,0.1740518,0.20330827,0.001983917,-0.077780046,-0.0876848,-0.133674,0.31965503,-0.5086177,0.1971116,-0.16902785,-0.30723405,-0.06337323,-0.43021634,-0.37055227,-0.8775111,0.30520815,-1.007474,0.4868407,0.08886889,-0.47310677,0.113349214,-0.017519388,0.17847188,-0.24231423,-0.033191465,0.1682575,-0.16041856,-0.2769019,-0.25804815,-0.19064464,-0.28090328,-0.61543334,0.15150443,-0.56353337,-0.12898889,-0.1754291,0.33045414,-0.32356933,-0.044488728,-0.20664942,0.4717234,-0.3680888,-0.0122721195,0.15839794,-0.2507674,0.12904164,-0.63161933,-0.05145958,-0.12640576,0.08572935,-0.09429218,-0.40729836,0.35318893,0.24734484,0.6532458,0.09730638,-0.38504115,-0.3285973,0.12994711,-0.010395595,0.49140614,-0.06988212,-0.34672323,-0.23322807,0.07288713,0.3664501,0.11273604,0.20718816,-0.440881,-0.069701634,-0.21505441,-0.071865395,0.3813772,0.6220422,-0.2817101,-0.33959126,0.28174335,0.48950627,0.018966973,-0.11330037,0.102936566,0.024663206,-0.54111403,-0.07270647,0.13324149,-0.11846922,0.4728232,-0.27261665,0.1321808,0.59463626,-0.09529372,-0.08806694,0.2656461,0.21972778,0.018741919,-0.34337804,-0.20489326,0.4057006,-0.57153827,-0.12803,-0.3011784,0.7709875,0.1001922,-0.57094324,0.4644027,-0.46624878,0.16311756,-0.16740046,0.5577526,0.8972701,0.4679276,0.20822217,0.8673659,-0.4395292,0.1668232,-0.1317894,-0.32173458,0.18473889,-0.23303106,0.1704536,-0.47776222,0.0067299646,-0.17259869,-0.23218636,-0.10314189,0.8115733,-0.6638149,-0.23227927,0.14699984,0.75834656,-0.3573415,-0.23959541,0.9048625,0.8344571,0.94460595,0.0059486586,1.3083595,0.47443554,-0.09620834,0.21850559,-0.30652285,-0.84657806,0.37364691,0.35001636,0.34548363,0.2722251,0.1311175,-0.14300503,0.42769474,-0.47161037,-0.0895919,-0.3329916,0.26098105,-0.035165805,0.01513602,-0.63003427,-0.24942514,-0.056090105,0.1686245,0.158446,0.30080885,-0.33636746,0.24639286,-0.15909275,1.765977,-0.09964875,0.06640264,0.12088028,0.47122833,0.3394709,-0.1960235,-0.1242134,0.37153324,0.28525168,0.063086614,-0.54420793,-0.05843216,-0.30444378,-0.47544456,-0.22259243,-0.29401073,0.05984052,-0.22110888,-0.58625144,-0.31720716,-0.02469643,-0.45510575,0.4200809,-2.198644,-0.32122475,-0.10121583,0.5036808,-0.3616003,-0.43891048,-0.29075375,-0.50551283,0.298613,0.32975888,0.5323919,-0.6542329,0.34357467,0.4546679,-0.59811926,-0.070721544,-0.6554963,-0.008051144,-0.19205448,0.43793863,0.018210616,-0.26742476,-0.03437404,-0.16320278,0.58668226,-0.11831101,0.07611002,0.416052,0.4872509,0.07002954,0.36592048,0.14957799,0.50976914,-0.37750274,-0.35843617,0.45566756,-0.31195453,0.17873088,-0.07555745,0.10153751,0.6172456,-0.578863,-0.8262765,-0.7593004,-0.038009845,1.1453636,-0.21086428,-0.45236716,0.20426229,-0.34915575,-0.28456357,0.1211344,0.49301568,-0.18677898,-0.09700949,-0.87705135,-0.019545188,0.017214714,0.24610741,-0.09529341,0.01994938,-0.37114438,0.7066645,-0.25458977,0.39595693,0.21097486,0.30127952,-0.354465,-0.6130991,0.07202438,0.96103066,0.3185632,0.1129999,-0.2746543,-0.20662509,-0.2528861,-0.19352253,0.040136103,0.5425302,0.8250289,-0.034353685,0.11345833,0.3653803,-0.054266386,-0.039425228,-0.13276389,-0.37432772,-0.18806683,0.10732552,0.6405679,0.7910314,-0.099997506,0.5701325,-0.1859281,0.37514958,-0.07180379,-0.6532893,0.5170513,1.1673367,-0.14973655,-0.34010223,0.6316233,0.24631016,-0.4870775,0.55403155,-0.67296535,-0.44472244,0.1528923,-0.21482055,-0.44880867,0.27346936,-0.32131618,0.2515138,-0.91219366,0.4264769,-0.02525318,-0.48873916,-0.579119,-0.20854142,-3.0028775,0.24404609,-0.26307243,0.10940784,0.040508218,-0.19011469,0.1585755,-0.57881135,-0.36631468,0.10423229,0.009508188,0.74373055,-0.026209537,0.2087269,-0.2706414,-0.38885778,-0.20680702,0.2191952,0.19762094,0.35021564,-0.008440665,-0.49409994,0.09300677,-0.076203145,-0.24365316,-0.0027030376,-0.9107604,-0.63629055,-0.26116213,-0.6834916,-0.17455606,0.6675892,-0.12815826,0.0455491,-0.23790279,0.0128148245,0.037689447,0.30655068,0.095674835,0.12165998,0.21751077,-0.100273,-0.11169831,-0.2977441,0.26865622,0.043638777,0.15202396,0.5121708,-0.21269463,0.24798486,0.5714847,0.6629873,-0.34918264,0.89649117,0.53949624,-0.13064049,0.26127028,-0.07892122,-0.35826525,-0.5784742,-0.17993028,-0.117143944,-0.5633715,-0.24083403,0.14564289,-0.46482685,-0.90532935,0.6722303,-0.078821406,0.13399537,0.13039394,0.43515852,0.7080044,-0.19279234,-0.123283245,-0.14666389,-0.16716619,-0.486344,-0.43818545,-0.6094779,-0.58660764,0.16599502,1.2422073,-0.22095878,-0.0040959525,0.08742845,-0.06075359,-0.065124825,0.031461954,-0.013885924,0.20345663,0.52230257,-0.020543303,-0.671183,0.41165516,-0.0990089,-0.11436854,-0.4194807,0.34881148,0.6015133,-0.8200242,0.49713114,0.32304606,0.14120428,-0.11975572,-0.5855513,-0.29689035,0.16864787,-0.20351872,0.5748425,0.24934933,-0.82855034,0.5054201,0.41323397,-0.2930801,-0.9109615,0.28895146,-0.032176714,-0.39594746,-0.18548393,0.45997348,-0.03859612,0.09265734,-0.29286882,0.19333206,-0.4419256,0.099532895,0.25436786,-0.14460394,0.40037516,-0.3832625,-0.3603313,-0.70188683,-0.0006829415,-0.54446644,-0.34714416,0.25035352,0.006795662,0.068978034,0.34159067,0.17017612,0.5407166,-0.2847202,-0.004513455,-0.08813296,-0.18453725,0.32870674,0.3796489,0.499026,-0.6015374,0.5299329,-0.041792836,-0.17152514,-0.06771104,-0.023479206,0.4765306,0.16649196,0.3684884,0.04671083,-0.094407395,0.3200957,1.0082595,0.0591713,0.50251216,0.1733071,-0.26082942,0.20263453,0.09053285,0.24708636,-0.27226385,-0.49783203,-0.027423242,-0.09531837,0.30677453,0.4557615,0.13904011,0.3852811,-0.1303561,-0.27197772,0.08156405,0.010557814,0.031277042,-1.3295166,0.06514568,0.2341439,0.8413636,0.31712088,-0.002527535,-0.13540138,0.6779899,-0.21519685,0.1715938,0.22979109,-0.2963979,-0.4587229,0.49856824,-0.663817,0.43897718,-0.16314304,0.06459965,-0.06634897,0.032749865,0.456811,0.7996991,-0.13109383,0.056379385,-0.08795023,-0.3425488,0.20621906,-0.42670915,0.116760306,-0.46722883,-0.32249385,0.71833706,0.42681208,0.3959438,-0.16683002,-0.012761305,0.1518425,-0.111107066,0.2100034,-0.009863491,0.12704,0.08537221,-0.60938925,-0.18662484,0.6075753,0.42025122,0.13643529,0.02790388,-0.06717869,0.2979398,-0.17099331,-0.1891552,-0.13177499,-0.81220716,-0.11549927,-0.33210963,-0.46229458,0.42929643,-0.056509733,0.025743794,0.2904572,0.04320022,-0.46750718,0.3875663,0.19719587,0.9535684,0.06560954,-0.19444373,-0.43717465,0.3204798,0.1440061,-0.29762736,0.032858413,-0.23169962,0.2013613,-0.70136374,0.5549343,-0.033154275,-0.5252303,0.20271835,-0.06518744,0.00043376003,0.5070589,-0.16871254,-0.22148885,0.07176448,-0.10749788,-0.4605386,-0.15358233,-0.06311987,0.21529378,0.20147684,-0.24256168,-0.15578556,-0.120735705,-0.03351351,0.6013878,0.088573985,0.3003487,0.38682798,0.16917256,-0.40618253,0.13277826,0.5916088,0.56756014,-0.045942962,-0.18823318,-0.25161478,-0.368205,-0.4157645,0.15663119,-0.05294035,0.36981267,0.13755463,-0.21999113,0.9129095,0.122708015,1.2416831,-0.024840828,-0.3559356,0.08630047,0.5319274,0.096791506,-0.10127338,-0.33271855,1.0184892,0.63800615,-0.13366385,-0.08940283,-0.54827416,-0.22244772,0.26695225,-0.33500388,-0.1314876,-0.123237416,-0.82034665,-0.31995973,0.2635107,0.2962152,0.02148901,-0.14894907,0.301761,0.21931298,-0.0110457605,0.16787995,-0.6446702,-0.048139844,0.25211045,0.46764532,-0.017557234,0.22180034,-0.48938587,0.3169044,-0.6932803,0.1895463,-0.22535641,0.18930514,-0.0112460805,-0.34473753,0.2491208,0.20374165,0.39618382,-0.53449965,-0.36411348,-0.42775226,0.54706633,0.16823514,0.14949723,0.67916876,-0.32265607,-0.010640179,0.18684961,0.49144483,1.1441948,-0.09695796,0.002796037,0.3342177,-0.27609876,-0.84338677,0.45080683,-0.28825787,0.26967606,-0.06346009,-0.352597,-0.5984878,0.27453914,0.21796116,0.031224787,0.0034838447,-0.50828314,-0.016714351,0.42949995,-0.1346179,-0.19936457,-0.28355846,0.14073423,0.54504055,-0.13493355,-0.31248587,0.09738559,0.3383519,-0.3097056,-0.5675688,-0.15800521,-0.62549335,0.16285758,0.090249725,-0.325687,0.065514326,-0.01801149,-0.5943006,0.1891135,0.317229,-0.33501714,0.17997496,-0.21773137,-0.050972197,0.91851556,-0.08122521,0.14358458,-0.6157369,-0.54687434,-1.0182117,-0.2528514,0.4425717,0.14275165,0.060157605,-0.8976757,-0.10792171,-0.28607103,-0.20690049,0.13617194,-0.52244174,0.512867,0.2538999,0.31744495,-0.120288566,-0.9902563,0.1876178,0.17161416,-0.4055087,-0.52768266,0.4076569,-0.058068115,0.9377678,0.09721865,0.10049647,0.3764227,-0.6324442,0.14748916,-0.29761535,-0.07131035,-0.7125297,-0.19541717 +441,0.26896745,-0.10740343,-0.5708771,-0.12883179,-0.3833991,0.16756882,-0.18735124,0.1541665,0.15284277,-0.2363693,0.09495448,0.067301616,0.05699042,0.5198067,0.03781362,-0.5249085,0.10475676,0.06934023,-0.53529716,0.6135422,-0.3958758,0.45458496,-0.14533135,0.3236686,-0.092351526,0.40553412,0.22465502,-0.009378354,0.071164705,0.07112017,-0.14542475,0.21984115,-0.3323936,0.13824199,0.22496305,-0.14825891,-0.062958434,-0.16412076,-0.51194483,-0.57234484,0.43711206,-0.71423745,0.45763084,-0.002926926,-0.3227035,0.20764692,0.14938416,0.28228563,-0.26616022,-0.024733407,0.17929812,-0.0102407215,-0.006647726,-0.19501378,-0.21296965,-0.6044502,-0.46010673,0.017689547,-0.67959684,-0.42818195,-0.40006727,0.19206928,-0.37383428,-0.09431238,0.0047375243,0.24779858,-0.5199214,-0.04898065,0.21555112,-0.3324429,0.13040875,-0.5620043,0.03398638,-0.059587978,0.13816282,-0.0077008805,-0.11005703,0.3226699,0.34056658,0.54076993,0.06858475,-0.28663716,-0.3375582,-0.2549183,0.16087481,0.4890705,-0.16464345,-0.38150012,-0.21576685,0.011812897,0.09412577,0.07167559,0.041501537,-0.45957634,-0.13478562,0.11491553,-0.18840875,0.30770475,0.37445953,-0.46590653,-0.2682778,0.49724343,0.42559382,0.16733167,-0.32981396,0.13754915,0.03674818,-0.35051352,-0.16508318,-0.06950946,-0.13324882,0.47388694,-0.18504009,0.3467134,0.7636854,-0.11768742,0.11831937,-0.055057224,0.008131657,-0.14134921,-0.1107031,-0.004125754,-0.05282827,-0.38633636,0.115316026,0.0039026698,0.72335804,0.10539201,-0.5853477,0.52782935,-0.440945,0.20001386,-0.17089157,0.52365357,0.7796266,0.29917967,0.13796881,0.7649247,-0.35849476,0.12116823,-0.03691281,-0.4463678,0.20851485,-0.20237708,-0.14234997,-0.5210846,0.14052705,0.21510503,-0.09196282,0.03044182,0.47134152,-0.50790435,-0.07454698,0.17267632,0.8146736,-0.2986413,-0.09089853,0.38032082,0.9480196,0.7728804,-0.017269773,0.93897754,0.3023557,-0.18798889,0.17592493,-0.35434955,-0.6940746,0.16871881,0.43652865,0.465964,0.39010665,0.07835189,-0.037259087,0.4290642,-0.28744125,0.056267783,-0.11729201,0.27144825,0.14204147,-0.17514782,-0.44891873,0.05252371,0.10194211,0.074892215,0.0632107,0.2126976,-0.28326887,0.20576015,-0.0025974275,1.6608016,-0.087926544,0.13413247,0.037911654,0.614199,0.381332,-0.1250746,-0.047601882,0.39843225,0.2636474,0.03722073,-0.65760416,0.17302996,-0.2883279,-0.59213704,-0.21397178,-0.34386963,-0.10762766,0.08921233,-0.5705139,-0.114803426,0.15151149,-0.21851291,0.32618293,-2.8045163,-0.18918997,-0.1880236,0.3438596,-0.36039332,-0.17524824,-0.16743985,-0.2689048,0.29393238,0.45491067,0.40634638,-0.6712808,0.31573817,0.54525936,-0.38775623,-0.045670215,-0.4319671,0.051530045,-0.1908882,0.5960019,0.05245511,-0.17646663,-0.07344203,0.34207574,0.42825297,-0.08551493,0.059865322,0.2764784,0.22092246,0.03338178,0.36629677,-0.013264817,0.4971295,-0.115885355,-0.2170908,0.25451177,-0.20726734,0.11201512,-0.16538692,0.1165984,0.3390215,-0.27908713,-0.88370097,-0.55210805,-0.17983995,1.0947748,-0.3310657,-0.46956456,0.4315707,-0.43523982,-0.0973777,0.100488216,0.44388637,-0.04046567,-0.013532472,-0.7058899,0.36357656,-0.15080157,0.14913702,0.063169256,-0.044321317,-0.28319255,0.6760188,-0.09129922,0.5561408,0.25162166,0.22978045,-0.15307373,-0.38177168,0.13094571,0.6316496,0.40605417,0.10840314,-0.20145728,-0.17551139,-0.1428574,-0.34476584,0.17013834,0.38601393,0.63775223,0.0616539,0.10716956,0.06919976,-0.16583137,-0.08660764,-0.18582882,-0.23035093,0.12896803,0.1650863,0.4773941,0.53852,-0.36018926,0.43757012,-0.050545827,0.15110968,-0.16830514,-0.63582575,0.5789191,0.7971772,-0.18277289,-0.21716096,0.6579115,0.3105469,-0.42388472,0.33995023,-0.81151426,-0.23992325,0.52070916,-0.2497082,-0.31183183,0.18566367,-0.35106486,0.12765911,-0.73617005,0.23396407,-0.036958773,-0.47527802,-0.34565744,-0.34756836,-3.8936741,0.13104327,-0.2960149,-0.050230518,-0.041519817,0.06416848,0.29321855,-0.5741328,-0.48469648,0.17279415,0.018194227,0.57376534,0.034800522,0.086347915,-0.25821432,-0.09164173,-0.13774936,0.25452718,-0.07217509,0.37501648,-0.07894461,-0.5468122,-0.04434751,-0.073152415,-0.46483982,-0.0026819468,-0.6028709,-0.36557525,-0.24490817,-0.49806774,0.05291619,0.66724396,-0.16134758,0.022204872,-0.29236275,0.024899192,-0.22110555,0.37459272,0.2208115,0.05469084,0.14157984,0.08474771,0.017691517,-0.43621635,0.2476093,-0.012706732,0.30462307,0.3981675,0.006018609,0.061840605,0.5992919,0.52079654,-0.19418456,0.72728896,0.6033174,-0.21242818,0.35037655,-0.24721844,-0.12458932,-0.4750307,-0.5333065,-0.10113835,-0.3281584,-0.52455634,-0.11312131,-0.31058592,-0.7175875,0.3816784,-0.0010423899,0.2727101,0.10005762,0.075788274,0.38608322,-0.10474817,-0.096909,-0.025091164,-0.22675554,-0.6288399,-0.34932372,-0.4032225,-0.5185267,0.27987766,0.8358333,-0.17551391,-0.093036786,-0.10851801,-0.22802779,-0.32125142,0.027116176,0.22041363,0.26270905,0.2142795,-0.13751528,-0.62509435,0.43654177,-0.18082194,-0.11906057,-0.54809725,0.081680365,0.4132194,-0.5474838,0.44234422,0.24213572,0.2238848,-0.04788577,-0.4955767,-0.2765025,0.12833615,-0.21978925,0.42129698,0.03024272,-0.86823326,0.50874865,0.29243782,-0.32312804,-0.57018214,0.4565446,-0.11328093,-0.37374324,-0.13589387,0.33708572,0.10707751,-0.030177813,-0.3628707,0.19397749,-0.55107814,0.21306553,0.22434494,-0.15647568,0.54402834,-0.17041518,-0.24066612,-0.50323164,-0.07935725,-0.46113694,-0.23898989,0.04084819,0.0795825,0.09182118,0.08884533,-0.1488354,0.4427676,-0.22887649,0.097714804,-0.07276132,-0.31200975,0.30932277,0.42069384,0.3707404,-0.40015844,0.6449216,0.00030736823,0.040377658,0.017215466,0.057153787,0.5802938,0.19377418,0.43529505,-0.09274291,-0.0449601,0.33002174,0.9661921,0.20209248,0.4064799,0.14292297,-0.32311738,0.17935805,0.09430125,0.03482069,-0.0054808715,-0.37548053,-0.051774185,-0.13686393,0.27683115,0.47991142,0.31690514,0.2694192,-0.061973203,-0.29378784,0.2783443,0.13182975,0.082124546,-1.2095453,0.31369972,0.32401893,0.5442698,0.34032905,0.05759793,-0.094610244,0.69811004,-0.21496609,0.07416689,0.40925542,-0.18939985,-0.5943126,0.49025312,-0.70051485,0.4917439,-0.11258684,-0.0844049,0.17221728,0.15998983,0.23794064,0.7721849,-0.0026563844,0.006779309,0.022849003,-0.30439535,-0.002625068,-0.2438187,0.0021559636,-0.45909664,-0.359191,0.49837723,0.50849086,0.11784434,-0.10509611,-0.024316497,0.07885714,-0.03951012,0.08244583,-0.19198619,0.09573933,-0.17589077,-0.5968185,-0.38269183,0.46668735,0.3034379,0.20328824,-0.04783971,-0.09281362,0.25748524,-0.15859774,-0.12175682,0.015975077,-0.5793485,0.08849721,-0.1798217,-0.5619081,0.6776878,-0.24465476,0.3624044,0.08518101,-0.027204253,-0.3008861,0.49090147,-0.033371396,0.68873,-0.067001335,-0.017703746,-0.3377456,0.016614746,0.13794388,-0.17546077,-0.13212852,-0.30311787,0.03736017,-0.5934557,0.43529007,-0.18022205,-0.25083753,0.20256549,-0.32748285,0.09207278,0.442316,-0.014954076,-0.34564635,0.0141388895,-0.15446499,-0.31981885,-0.2237486,-0.19658905,0.29799044,-0.0058306833,-0.119568996,-0.13019241,-0.210242,-0.059074398,0.37980828,-0.084992565,0.31735742,0.30063623,-0.031850565,-0.20085564,-0.09626408,0.484767,0.44096896,0.0017415951,0.2734982,-0.027083572,-0.43807703,-0.43063775,-0.010915989,-0.14972925,0.32199106,0.22113034,-0.3800053,0.71380776,0.08724819,1.1106781,0.061417706,-0.3586419,0.24715382,0.46916518,0.15893093,0.119806886,-0.30532557,0.76708233,0.73395634,0.052263778,-0.23849179,-0.35839856,-0.21668401,0.33387795,-0.33371383,-0.038075868,-0.024761982,-0.7924507,-0.2502575,0.24864857,0.10085547,0.060595706,0.022208298,-0.04697315,-0.12125597,0.06626714,0.21898752,-0.5893863,-0.00405768,0.38346985,0.27153763,0.0723032,0.17977871,-0.5141306,0.5500243,-0.6467965,0.15044023,-0.2918003,0.19742697,-0.17986913,-0.22456628,0.2078016,0.083568424,0.38711017,-0.10566518,-0.28548527,-0.24956438,0.51999533,0.048101746,0.19634227,0.58110774,-0.27111292,0.13370919,-0.08407815,0.44529706,0.9449735,-0.29026952,0.039987557,0.30539054,-0.28707945,-0.80723757,0.35417932,-0.21888584,0.23573822,0.027368577,-0.28032753,-0.525173,0.23300551,0.09721539,-0.11278558,-0.014257888,-0.3427703,-0.26415756,0.068954244,-0.20220213,-0.15614696,-0.25614497,0.17007726,0.74278235,-0.32125765,-0.19015694,0.16854759,0.44349414,-0.1577391,-0.6474791,0.17400764,-0.1254169,0.41743007,0.1980445,-0.3721631,0.04961645,0.16579764,-0.45960334,0.15325975,0.3689147,-0.45030123,0.119898655,-0.26531383,-0.005699877,0.96503794,-0.07169805,-0.010397641,-0.75520396,-0.525858,-0.8381596,-0.39594123,0.2953061,0.23393002,-0.039777283,-0.5375771,0.0021755616,-0.13506956,0.10671555,-0.026974298,-0.6294441,0.43780333,0.008076872,0.35136992,-0.086061254,-0.78362113,-0.13163637,0.03828531,-0.1654337,-0.6300059,0.57936215,-0.2786627,0.879501,0.10346565,-0.04794926,0.20527667,-0.40244955,0.10821877,-0.29419273,-0.28694314,-0.6682914,0.039246812 +442,0.32783356,-0.14121215,-0.80863315,-0.19212647,-0.34795097,-0.07910989,-0.4074962,0.13533454,0.40132746,-0.052700203,0.07182936,-0.09848285,0.033634033,0.52881104,-0.05934388,-0.91293436,-0.046712816,0.10141548,-0.7183413,0.5371384,-0.4738265,0.26756778,-0.3278687,0.5458364,0.2696471,0.25678626,-0.010623217,0.038536977,-0.082148604,-0.040225834,-0.17303903,0.3603249,-0.4349996,0.17099996,0.021018812,-0.28511444,-0.05854169,-0.2940679,-0.20786373,-0.7498687,0.35422418,-0.599468,0.6551707,-0.0861497,-0.374282,-0.092389785,0.30001888,0.38395348,-0.2988533,0.17016329,0.17996442,-0.25259998,-0.055832703,-0.1935,-0.4781233,-0.5321174,-0.6042631,-0.046075106,-0.8089991,-0.17027377,-0.21082897,0.2841814,-0.3348248,-0.17391771,-0.22513752,0.51341313,-0.3676982,0.17876285,0.27788952,-0.06210458,0.31988743,-0.4927437,-0.18678685,-0.11103027,0.37060586,-0.13294423,-0.4747287,0.25500885,0.4045259,0.28762245,0.09757918,-0.15548514,-0.29357305,-0.27519137,0.13163574,0.32066408,-0.089924656,-0.3868716,-0.34426594,-0.076472886,0.10768827,0.37247518,-0.064368255,-0.44898593,0.119787075,0.011776105,-0.048912365,0.5294847,0.37081003,-0.14151146,-0.4179039,0.27759323,0.3548975,0.22121316,-0.2022749,0.2624067,0.042073894,-0.4950552,-0.18733983,0.0967258,0.20165019,0.46898606,-0.06897301,0.31045088,0.6583452,-0.26553956,-0.1700495,-0.1349352,-0.07021574,0.009882431,-0.46192098,-0.18139331,0.06772641,-0.65643185,0.10357078,-0.18628877,0.5197167,0.07012891,-0.742888,0.2793183,-0.75954914,0.10718425,-0.045367163,0.6519857,0.9700165,0.4335269,0.2429489,0.76040655,-0.3544793,0.17149138,-0.024131685,-0.4177054,0.13148502,-0.08011644,0.1541066,-0.6389793,-0.14074285,0.0339983,-0.085521124,0.14883637,0.4091312,-0.57632875,-0.022076374,-0.045897532,0.71886325,-0.3810853,-0.11697819,1.0375754,1.1372632,1.0297323,0.03720804,1.3015872,0.34499952,-0.17563593,0.052936535,-0.23408179,-0.4233035,0.26103553,0.07893294,-0.33123174,0.47503698,-0.03891887,0.022205437,0.482114,-0.28800085,-0.08352488,0.09184656,0.26378372,-0.001402835,-0.2085286,-0.3339161,-0.25736594,0.1363455,0.045602545,-0.086301126,0.38029456,-0.26127,0.6127019,0.035428327,1.2689477,0.05054004,0.08683408,-0.1682371,0.46989822,0.23378591,-0.276758,-0.20536333,0.3218254,0.35840544,0.118543774,-0.5822745,0.014700632,-0.3425587,-0.32784572,-0.29469863,-0.4418123,-0.016462406,-0.3535439,-0.28125682,-0.17131619,0.021306323,-0.22044908,0.46070996,-2.676391,-0.2360789,-0.19736208,0.17743045,-0.07056721,-0.25730228,-0.1457852,-0.41004407,0.40883872,0.30990574,0.3471965,-0.45661506,0.48159358,0.47528902,-0.47709003,-0.15783225,-0.6742069,0.027180491,-0.048965532,0.32812056,-0.23635195,-0.0008553763,0.0053429133,0.25677904,0.6106294,-0.0608898,0.10561796,0.19915096,0.3637123,-0.023312578,0.47551313,0.05788344,0.66416603,-0.29572818,-0.18921797,0.29235217,-0.3539333,0.2916441,0.08081878,0.0595813,0.5803261,-0.56631553,-0.9653823,-0.5356793,-0.21900551,0.9645334,-0.31985566,-0.39184716,0.3405273,-0.3268158,-0.33022586,0.04582077,0.47199544,-0.056669395,0.10639358,-0.7479449,0.043334797,-0.013608803,0.22411604,-0.08587766,0.08036217,-0.4970862,0.3891109,-0.09468863,0.35795784,0.44308516,0.1675445,-0.44350263,-0.50457406,0.16587518,0.74915767,0.35848716,0.04785494,-0.14442939,-0.23252022,-0.16672574,-0.13064939,0.17319883,0.5796159,0.5799404,-0.070323385,0.29777256,0.33007726,-0.35913953,0.23153548,-0.13852699,-0.26289776,-0.068057254,0.27179787,0.56644183,0.6911908,0.11036533,0.6571892,0.05011657,0.17206798,-0.22877991,-0.6135851,0.63529724,0.9071357,-0.16652237,-0.41033086,0.6360393,0.42074904,-0.4060916,0.48527423,-0.33583546,-0.10451286,0.65632236,-0.16652803,-0.49692246,0.09632966,-0.2729173,0.040722,-0.9804418,0.20654249,-0.13787948,-0.80002016,-0.4343575,-0.026367769,-4.0432043,0.14341669,-0.2578001,-0.23617043,-0.1524966,-0.22651494,0.38600788,-0.46607995,-0.75410074,0.06513911,0.12757947,0.6309246,-0.22562988,0.015572533,-0.20652507,-0.31957218,-0.2740157,0.33741602,0.16000195,0.24625237,-0.05855288,-0.4119468,-0.017156659,-0.17783737,-0.64826506,-0.011878227,-0.45770562,-0.38812736,-0.052333966,-0.73540825,-0.18964799,0.8001767,-0.29297945,-0.159379,-0.37180722,-0.02850095,0.022039192,0.4277371,0.15493353,0.29645786,0.33116713,-0.02913248,-0.16053666,-0.19878499,-0.01063924,-0.043403387,0.22735365,0.26103184,-0.020051053,0.441378,0.42901823,0.74260616,-0.05823512,0.8365585,0.25534785,-0.09904013,0.34746668,-0.5012847,-0.41101936,-0.524951,-0.3950273,-0.20494771,-0.44079807,-0.5607094,-0.27726483,-0.36752465,-0.8299308,0.53239775,0.1297111,0.33141723,-0.22749883,0.22775328,0.23253055,-0.19481586,0.030673137,-0.19806664,-0.15283649,-0.45580444,-0.2537384,-0.6134386,-0.68332815,0.2117595,0.9838149,-0.33960596,-0.0019441334,0.10899782,-0.4545795,0.04942509,0.49985766,0.27416882,0.33193362,0.3503677,-0.050931826,-0.6518693,0.30893633,-0.1495343,-0.15174171,-0.6846681,0.09386295,0.9361908,-0.66629946,0.6226519,0.38420382,0.16632754,-0.24691863,-0.45582283,-0.19503753,0.15279539,-0.26345634,0.661809,0.38619804,-0.75721234,0.3822012,0.1014493,0.00047030053,-0.5865264,0.5708697,-0.07023962,-0.1763205,0.19321321,0.4313849,0.031697903,-0.10726962,-0.1952526,0.3856096,-0.2427668,0.2171429,0.22794133,-0.07317657,0.37049222,-0.0775599,-0.34033167,-0.7097232,-0.018632168,-0.6203138,-0.34624735,0.18059595,0.08274726,0.22479863,0.1814472,-0.029686704,0.2927879,-0.3867782,0.13515331,-0.17241216,-0.29039624,0.04533476,0.49938145,0.3343561,-0.5976079,0.6287923,0.1391457,-0.03160136,0.100563735,0.10550579,0.5014077,0.01937717,0.7612756,0.005374814,-0.2660673,0.24262583,0.74584395,0.13235384,0.47545874,0.13051736,-0.13250698,0.18055618,0.120205045,0.22911851,0.07613311,-0.15981276,-0.013152045,-0.21364002,0.25222918,0.5344222,0.10090735,0.35634816,0.0064708665,-0.21687436,0.30927572,0.15903954,-0.08656976,-1.4199991,0.58130056,0.4996511,0.71566063,0.5973009,0.22548616,-0.050321043,0.48132542,-0.30736747,-0.08008341,0.48234165,0.17783333,-0.4672083,0.70168227,-0.6512381,0.5960906,-0.074226476,-0.07115138,0.14889084,0.105940394,0.5025947,1.1180955,-0.14519116,0.21888232,0.14950027,-0.19668572,-0.011799921,-0.26002213,-0.06672376,-0.57507324,-0.35438752,0.7253851,0.41156888,0.2810956,-0.23916064,-0.16181423,0.22255497,-0.11861787,-0.062884085,-0.12597425,-0.008353104,-0.2467748,-0.5864132,-0.31496412,0.45590016,-0.16618407,0.11709121,0.089841045,-0.22108977,0.22022486,-0.12920593,0.0400022,0.04216826,-0.6874168,-0.04084873,-0.34783402,-0.54106456,0.56528366,-0.62729186,0.29337063,0.28343946,0.17687334,-0.34098253,0.51026016,0.023333317,0.7593424,0.040779304,-0.0808644,-0.06421036,0.16079135,0.3942795,-0.30746332,-0.20880377,-0.36665273,0.11491597,-0.6098087,0.40220198,-0.027266553,-0.42068088,-0.07097267,0.05204979,0.13978635,0.40854517,-0.17363025,-0.20572267,0.14697504,-0.13496771,-0.25891685,-0.26091745,-0.272779,0.3264427,0.03389463,0.100259,-0.094520666,0.04531299,-0.0802479,0.3550277,0.08833325,0.2752458,0.35165584,0.07781742,-0.16709392,-0.04694299,0.0063373647,0.45983467,0.14776237,-0.023548925,-0.13797532,-0.16249143,-0.33377767,0.33202097,-0.1809064,0.15135454,0.09683933,-0.47037062,0.8131544,0.20051564,1.2900367,-0.041328803,-0.4692192,0.2665235,0.35431468,-0.021631598,-0.02515187,-0.25962743,1.0712386,0.5746929,-0.18349732,-0.21015687,-0.56518674,-0.3646543,0.18000674,-0.3589141,-0.26288384,-0.13262533,-0.5899952,-0.10408121,0.2997261,0.16402988,0.16383314,-0.06307875,0.06507603,0.19862658,0.10558987,0.26678622,-0.6251959,0.111685395,0.29302707,0.37460145,0.027472207,0.13161021,-0.30411157,0.43364868,-0.64978933,0.21880513,-0.4326372,0.17248897,-0.3135475,-0.36426446,0.19053693,0.07938557,0.18393476,-0.12586592,-0.16406976,-0.38272485,0.71393937,0.14832516,0.19080073,0.8419624,-0.31618384,0.014650375,-0.02779339,0.3318117,1.0989479,-0.12514763,-0.26549426,0.31511527,-0.36812493,-0.72774357,0.19081752,-0.50512147,0.24134856,-0.021529237,-0.4186209,-0.31904668,0.17198877,-0.07525108,0.04243059,-0.1392061,-0.49497938,-0.083098896,0.26182362,-0.1814149,-0.32561448,-0.3397467,0.26222888,0.7223576,-0.32222047,-0.410249,0.043317214,0.3474786,-0.23383565,-0.5152723,0.12445328,-0.008263677,0.46622476,0.0510038,-0.39125454,-0.022102779,0.2561036,-0.4459417,-0.025629679,0.3542225,-0.19489424,0.18206233,-0.20099163,-0.30744195,1.0864341,-0.29313496,0.27686736,-0.58040965,-0.63051766,-0.84893703,-0.22631018,0.008117378,0.1493285,0.006884247,-0.6747535,0.14377165,-0.049433004,0.0011016031,0.14686094,-0.4896609,0.4131324,0.05173758,0.46697333,-0.10091462,-1.0797492,0.09833535,0.27927816,-0.2912254,-0.7106897,0.7075146,-0.31203702,0.6647506,0.16990499,0.22796382,0.25836775,-0.5926882,0.3048477,-0.18746763,-0.1674012,-0.685689,-0.05814408 +443,0.485247,0.0043414007,-0.6685237,-0.21352641,-0.40758988,0.17650819,-0.27452457,0.23784432,0.4444237,-0.36991942,0.09494973,-0.21820904,-0.060878165,0.5692195,-0.18995331,-0.8637247,0.14101173,0.025128208,-0.49103683,0.47477716,-0.45755246,0.49886888,0.03396411,0.16312529,0.004781017,0.2817515,0.3930367,0.041042082,-0.20779133,0.13561901,-0.19091848,-0.053238086,-0.5029004,0.27362078,0.061738424,-0.29197255,-0.021176614,-0.35836363,-0.08599463,-0.73456997,0.4784292,-0.7241261,0.5193309,-0.06270626,-0.311959,-0.0046464778,0.10338247,0.24914683,-0.2071464,0.123322435,0.08684121,-0.30307385,-0.1291776,-0.033102877,-0.5634336,-0.74028516,-0.5587965,-0.1748084,-0.7578685,-0.4090059,-0.2855181,0.22884512,-0.37735793,-0.075967446,-0.14729854,0.4272785,-0.35649619,-0.12715359,0.47462323,-0.35063455,0.037486788,-0.6534409,-0.2042594,-0.069409214,0.15899856,0.1193982,-0.043166663,0.4029628,0.521333,0.47049764,0.13976699,-0.30167925,-0.3663883,-0.091957025,0.052955493,0.6764934,-0.103090316,-0.35207382,-0.2740854,-0.053694017,0.3518866,0.2214871,0.29306948,-0.5355798,0.02751874,-0.021527352,-0.24458398,0.41533008,0.39375132,-0.58528477,-0.09875413,0.50483763,0.45124233,-0.04904637,-0.28552377,0.26481444,0.022780117,-0.5728291,-0.15863213,0.22075336,-0.015374182,0.5386541,-0.10961143,0.24914843,0.7066634,-0.13523905,-0.00029112742,-0.06522195,0.011734105,-0.20330484,-0.4432185,0.13674006,0.01915687,-0.40055263,-0.053598188,-0.17671126,0.8899583,0.23302096,-0.8331309,0.28496143,-0.4936542,0.12586437,-0.09423984,0.56273806,0.7031486,0.37035766,0.20623438,1.137501,-0.6514828,0.06984392,0.047415607,-0.37240976,-0.027138757,-0.15116161,0.3720881,-0.54222214,0.29493657,0.07307046,-0.05811197,0.15804185,0.50542676,-0.39488634,-0.16088662,0.0395009,0.7697967,-0.35463068,-0.19944994,0.8848139,1.1215907,1.0079507,-0.010421372,1.1154046,0.4251995,-0.14353971,0.13389063,-0.3776441,-0.52690357,0.15406948,0.3838608,0.2820007,0.4593526,0.11316391,-0.08989389,0.4262822,-0.0040004435,-0.08257527,0.029623875,0.21428178,0.23326954,-0.38131857,-0.3684977,-0.14844412,0.20369056,0.018656693,0.0337369,0.2551401,-0.111694776,0.48538658,-0.09606384,1.2800355,-0.044903442,0.13211703,0.03807422,0.47735244,0.35995322,-0.18644808,0.1048622,0.35580748,0.037976284,-0.098353535,-0.54555243,-0.12087718,-0.43621433,-0.6133834,-0.2107076,-0.34706512,-0.1403621,0.05138165,-0.4135072,-0.17513545,-0.02343334,-0.20567696,0.44862556,-2.429279,-0.24117756,-0.3163361,0.22459888,-0.26769277,-0.2644487,-0.19746603,-0.44577476,0.2253631,0.5170727,0.31669915,-0.63489217,0.32318476,0.39753723,-0.32910424,-0.16087349,-0.56885254,0.22624056,-0.22289507,0.32924125,-0.095580466,-0.28709444,-0.04428902,0.4113738,0.73392105,0.19618203,0.048568264,0.16330811,0.49331105,-0.11279682,0.39692357,0.06722696,0.7416235,-0.22851898,-0.07532215,0.30896047,-0.6729359,0.33914706,0.12139844,0.27612692,0.47510454,-0.3337645,-0.7700857,-0.74568206,-0.3158589,1.044056,-0.38119236,-0.6142638,0.40907434,0.09858379,-0.17933351,0.1309445,0.5151983,0.06093091,0.08174033,-0.4219778,0.1736193,-0.08106131,-0.023865167,-0.105890475,0.12078448,-0.30267906,0.91629535,-0.28396687,0.53451765,0.3473738,0.32077855,-0.25718427,-0.4244626,-0.11120706,0.8554833,0.37244096,0.026545128,-0.10691199,-0.33676192,-0.36154124,-0.5077143,0.23047742,0.48581746,0.6688188,-0.0015428525,0.0617426,0.20724975,-0.14985856,0.08643313,-0.020087687,-0.44149435,0.04160236,0.24331619,0.38553318,0.5293969,-0.30783242,0.44087765,-0.03638666,0.044140026,-0.2618068,-0.6703721,0.5000834,0.7343339,-0.26181757,-0.3658133,0.54791903,0.22344956,-0.5563473,0.37938398,-0.59984964,-0.40548736,0.7549485,-0.043925084,-0.44383985,-0.17947637,-0.35535944,-0.059997056,-0.96744245,0.30279535,-0.15956838,-0.6495912,-0.1824008,-0.21672112,-4.180641,0.24746698,-0.18257199,-0.020810418,-0.11896049,0.10025667,0.15779728,-0.6029278,-0.6436932,0.07802306,0.026834704,0.5756963,-0.14211956,0.25055137,-0.38609907,-0.21900247,-0.29609525,0.3000382,-0.35307053,0.30146366,0.09234962,-0.28335613,0.21042845,-0.24320854,-0.62977284,0.0035853845,-0.64074904,-0.5285683,-0.35799712,-0.60103595,-0.29863638,0.7760714,-0.5007838,-0.1321781,-0.24876657,0.111090675,-0.29888007,0.33356205,0.058104806,0.16541924,0.17708908,-0.09795807,-0.24763478,-0.3685368,0.151248,0.061328277,0.38763964,0.62000334,-0.24504837,0.21985278,0.6773929,0.72221076,0.122829914,0.65240216,-0.062831916,-0.104679376,0.4078678,-0.29241246,0.06694013,-0.70285076,-0.5747268,-0.16166057,-0.3048851,-0.65630764,-0.12728237,-0.3658625,-0.74127614,0.35748026,0.005031251,0.45083907,-0.16038436,0.31320125,0.41068667,-0.19349931,0.097098716,-0.096140094,-0.31562713,-0.52201414,-0.41491443,-0.5418399,-0.6298775,0.5614052,1.1712998,-0.23642081,-0.2976967,-0.03390995,-0.35522687,-0.030276863,0.09433972,0.38273457,-0.022976449,0.13722128,-0.18877324,-0.6615481,0.31324846,-0.30363813,0.04507725,-0.59962773,-0.03274681,0.62007916,-0.3885497,0.6405719,0.3278538,0.35334486,-0.023179086,-0.71999687,-0.2060319,0.24599259,-0.25770712,0.43900216,0.19988228,-0.72777873,0.41356614,0.21931693,-0.36782554,-0.68783367,0.33416286,0.041782938,-0.044880025,0.024439814,0.5250081,0.38382715,-0.20076095,-0.24176401,0.17190988,-0.81844294,0.26204255,0.35004342,0.1186292,0.47828716,-0.033258773,-0.46562326,-0.64337784,-0.31790775,-0.4704027,-0.023201855,-0.019271655,-0.1132394,-0.03771758,0.167146,0.005620287,0.38889438,-0.36632305,0.1678196,-0.007176116,-0.23741072,0.53224856,0.47694808,0.4231323,-0.5312511,0.5669666,0.08779128,-0.06626884,-0.1489126,-0.032936696,0.5252885,0.44445023,0.47036636,0.13467671,-0.049259756,0.10347022,0.65882504,0.17801629,0.27657107,0.3323847,-0.4681301,0.32280633,0.22204576,0.23031163,-0.016404454,-0.34708288,-0.050741013,-0.08330921,0.14175545,0.42693627,0.10681115,0.4348561,0.07636157,-0.16166207,0.20683138,-0.037503753,-0.17323126,-0.98867184,0.19055654,0.34415627,0.65561163,0.40602282,-0.1217876,-0.045260847,0.46317494,-0.120214224,0.0363632,0.42035824,-0.13214476,-0.46769845,0.6375612,-0.5170876,0.52550954,-0.34520978,-0.0091617685,0.22907932,0.4261598,0.4439511,0.89328796,-0.026746068,-0.11067902,-0.14813076,-0.3435227,0.010945604,-0.22495954,-0.02250613,-0.6042405,-0.3223549,0.5291316,0.37122443,0.28027427,-0.13704677,-0.16178177,0.085061185,-0.12039178,0.08672089,-0.14089411,-0.075613946,-0.13252316,-0.5522129,-0.3583531,0.5531991,0.018094879,0.124629006,0.054190297,-0.5094563,0.30776012,-0.23130593,-0.03958466,0.04680644,-0.6660362,0.025671657,-0.12396525,-0.6889356,0.31032938,-0.29198864,0.35486662,0.30839756,-0.06192287,-0.33086756,0.13960132,0.15503179,0.7904078,-0.11644996,-0.25305793,-0.19886167,0.013502995,0.3735131,-0.2796953,0.24916172,-0.1576067,0.085004956,-0.657047,0.55639803,-0.20558816,-0.19248103,-0.054465856,-0.23280217,0.037987083,0.5159959,-0.40039107,-0.12541538,0.005434201,0.083061926,-0.2814517,-0.07019133,-0.37459657,0.30845448,-0.16553503,-0.09464316,0.03981433,-0.12945086,0.12837654,0.1353485,-0.034876235,0.019046064,0.31557512,0.035173073,-0.54712117,0.047127146,-0.025982866,0.47800383,0.19110085,-0.061841767,-0.15661833,-0.41793522,-0.3857941,0.1230884,-0.14257553,0.14751954,0.1103328,-0.5462559,0.83856785,0.1851391,1.5081303,0.049803182,-0.40658945,-0.016731624,0.6592922,0.15729618,0.006747594,-0.2969438,1.0811101,0.82577455,-0.19677837,-0.051018815,-0.45009026,-0.20755032,0.41088134,-0.26441583,-0.12768196,0.028915482,-0.7163648,-0.1933129,0.1758218,0.13619806,0.16561641,-0.13288862,0.014430372,0.13001864,0.23516542,0.45016322,-0.5772079,-0.10859848,0.19313985,0.38345426,0.18851644,0.21921586,-0.30770552,0.3492072,-0.96364397,0.51543033,-0.35154134,0.14911814,-0.21266721,-0.23335227,0.2644347,0.12295545,0.38488537,-0.15025336,-0.30714417,-0.22478789,0.7459749,0.29954857,0.23244601,0.80649704,-0.23227455,-0.14514852,0.15511513,0.6412251,1.4388934,0.07525494,0.10602948,0.3412417,-0.3494228,-0.8430548,0.35692424,-0.41883674,-0.027863191,-0.2724819,-0.30754215,-0.5383139,0.36519668,0.27827072,-0.08971365,0.12452033,-0.40411553,-0.19630986,0.18058299,-0.43087527,-0.3106357,-0.25657827,0.3074649,0.79886335,-0.27885675,-0.31470346,0.14282772,0.33825353,-0.26273614,-0.72789484,0.19848411,-0.069204554,0.51959634,0.1355978,-0.41478425,-0.07530038,0.41146183,-0.47153336,0.16838612,0.21643063,-0.39127886,0.24102004,-0.2850303,-0.13219628,0.9475636,0.1734081,0.31733516,-0.8650701,-0.49942896,-0.9296262,-0.44658133,0.17931238,0.08049662,-0.07278144,-0.5230908,-0.26551184,-0.12037408,-0.031718757,0.08815916,-0.4817053,0.3060169,0.096583486,0.5620501,-0.086324915,-0.92814076,-0.12285091,0.3268748,0.019543162,-0.4610194,0.45040348,-0.23268813,0.90794855,0.19845137,-0.035904467,0.22537793,-0.55367124,0.6424609,-0.33056927,-0.23331903,-0.53075844,0.07429405 +444,0.31775296,-0.26094893,-0.31158227,-0.18869501,-0.34846622,0.06771515,-0.31666982,0.33806604,0.34535885,-0.321214,-0.24862,0.0019840049,0.09811905,0.42159575,-0.065914825,-0.7210322,-0.007820975,0.22618745,-0.5958513,0.32731935,-0.65761435,0.24715398,-0.0778516,0.6115893,0.05852376,0.22010945,0.07049276,-0.033442155,0.01939993,-0.21228665,-0.11083104,0.2819102,-0.4119728,0.08135504,-0.13145664,-0.2980518,0.06249954,-0.44456804,-0.24066192,-0.76677394,0.13960534,-1.0621413,0.5383878,-0.12070815,-0.26759106,-0.06932437,0.28170684,0.4420411,-0.26102227,0.045569222,0.19510658,-0.3621216,-0.20418602,-0.3224363,-0.08580538,-0.40113434,-0.41553614,-0.10470249,-0.44978014,-0.3383026,-0.13708168,0.33238205,-0.27477723,-0.0012547832,-0.2488514,0.4627851,-0.37541336,0.03964958,0.41564038,-0.35035425,0.4403071,-0.58147216,-0.059322033,0.06830864,0.47275653,-0.029638309,-0.28997672,0.2708866,0.29315156,0.46785113,0.291989,-0.30154794,-0.17243978,-0.19146544,0.15170583,0.56940895,-0.16067241,-0.23055403,-0.3602092,-0.03647759,0.3150287,0.46166795,-0.05405335,-0.1552737,0.097618334,-0.03464895,-0.08507493,0.58772254,0.48397115,-0.093483485,-0.29393142,0.20503443,0.6611271,0.09708112,-0.22975746,0.08745679,0.14001034,-0.49299335,-0.041201968,0.19672343,0.024487164,0.45294783,-0.21194217,0.13333386,0.8114897,-0.16576406,0.04505894,-0.011974137,-0.030524896,-0.07913871,-0.53166735,-0.3746743,0.2644832,-0.6216767,0.008693819,-0.3152076,0.6987618,0.23161793,-0.521272,0.3538593,-0.48958254,0.182944,-0.122146234,0.64139336,0.53598714,0.37719554,0.3630648,0.7413304,-0.2500344,0.1721227,-0.011007804,-0.2434925,-0.042971566,-0.24664123,0.39373624,-0.43198237,0.1749422,-0.1423545,0.016806375,-0.049789328,0.3605434,-0.5435186,-0.17561309,0.2903525,0.89848715,-0.3469447,0.06491917,0.8639441,1.1176524,0.98090863,0.03636748,1.1962234,0.4707096,-0.18425813,0.04345923,-0.2557533,-0.5856683,0.21715161,0.30035856,0.3021217,0.16840726,-0.053963706,-0.16218759,0.50229144,-0.5766569,0.021089297,-0.07605482,0.33505294,0.06960113,0.13637096,-0.72911304,-0.10121008,0.021925509,-0.15545066,0.32902193,0.19950558,-0.34110418,0.37076366,-0.16240758,1.1432393,-0.17735669,-0.004385444,0.020679392,0.53316456,0.16048545,-0.17992106,-0.0111224195,0.33959547,0.46714866,0.008464665,-0.7050706,0.22280714,-0.35783303,-0.25953162,-0.2364893,-0.34859657,-0.055700354,-0.088541284,-0.2716292,-0.11298061,-0.11360179,-0.32003242,0.3549539,-2.5773401,-0.44098407,-0.27841222,0.42574304,-0.28799555,-0.11547558,-0.0836029,-0.5502931,0.38981885,0.23731057,0.4382539,-0.5706472,0.545524,0.45442247,-0.42313382,-0.21635665,-0.8460305,-0.1071745,-0.079247594,0.39512417,0.104439825,-0.1723218,-0.2869845,0.11064012,0.72092474,0.2516452,0.15551361,0.39806592,0.42718336,0.1102177,0.43397078,-0.07170902,0.7044496,-0.35139766,-0.21774855,0.3307111,-0.3636074,0.23921365,-0.28760365,0.0581753,0.52770287,-0.4928393,-0.8271971,-0.68007284,-0.44839033,1.0544404,-0.33241192,-0.60230696,0.22953483,-0.33746687,-0.18982808,0.11948211,0.6776642,-0.19478893,0.08617341,-0.7797755,0.009251283,-0.101440795,0.3055056,-0.007144991,0.0887808,-0.45102146,0.62998366,-0.26578647,0.52547073,0.13709033,0.38796943,-0.18431237,-0.3479772,-0.034583256,0.7525662,0.30479863,-0.09295569,-0.18203816,-0.2095051,-0.12035535,-0.28118312,-0.11446287,0.7015908,0.95960575,-0.1756986,0.043226577,0.3693024,-0.1890871,0.049935397,-0.069826275,-0.4087585,-0.09242965,0.08913871,0.60724723,0.6490078,-0.044711158,0.5186022,-0.28915185,0.44968364,-0.09783312,-0.48961037,0.57724464,0.4120841,-0.27132368,-0.13646805,0.6830301,0.39564344,-0.46056396,0.5497413,-0.68786967,-0.17312358,0.5247046,-0.19673918,-0.55381817,0.032662775,-0.229969,0.21508214,-0.8018962,0.36882657,-0.35323972,-0.80512416,-0.4919418,-0.112516046,-3.199869,0.20337193,-0.16102156,-0.17168981,-0.35152197,-0.16384986,0.30217865,-0.43703586,-0.5433909,0.23316155,0.13722438,0.6843436,-0.021971872,0.100931995,-0.37283498,-0.055759218,-0.14064252,0.17623329,0.19304046,0.29138476,-0.18348394,-0.348692,0.18342489,0.06749316,-0.5670413,0.25770137,-0.79599184,-0.49480432,0.011123311,-0.61663944,-0.350367,0.58341277,-0.29466817,0.11609154,-0.4042588,0.08426892,-0.15682386,0.2638562,-0.0019249412,0.3237027,0.2920397,-0.10212234,0.16165172,-0.25636894,0.42089036,0.037186936,0.192533,-0.056698818,0.04820961,0.17688663,0.48056236,0.6713157,-0.07856148,1.1383383,0.497403,-0.06962201,0.2141835,-0.34968597,-0.35318547,-0.44583386,-0.31388718,0.03135946,-0.51581985,-0.36659703,0.0516217,-0.24899629,-0.7910677,0.6925825,0.058531098,0.3992248,-0.08063236,0.31554604,0.4746037,-0.107280605,-0.057335734,0.0028319359,-0.111283064,-0.54763603,-0.21124572,-0.7277061,-0.52063346,0.005637311,0.73927283,-0.29359025,0.18426742,-0.042886432,-0.37946707,-0.006605524,0.25527093,-0.02851467,0.26463726,0.55561966,-0.011506532,-0.58869636,0.22255662,-0.07998076,-0.020131115,-0.68289757,0.31245774,0.9508381,-0.7739235,0.7555733,0.3999079,0.002271799,-0.46685395,-0.5313122,-0.2848589,0.007977901,-0.16923593,0.53920263,0.20156266,-0.77693707,0.53925526,0.33825487,-0.31568938,-0.7342988,0.22335282,-0.12830704,-0.20078476,0.017235804,0.45956853,0.056490548,-7.183047e-05,-0.124919586,0.170475,-0.40809435,0.23538457,0.13545324,-0.021789696,0.5556838,-0.283248,-0.20505752,-0.8110436,-0.26268953,-0.74316597,-0.1797498,0.21620625,-0.1305972,-0.088985406,0.4031298,0.07676677,0.33248076,-0.15035945,0.071418256,-0.11536017,-0.5128311,0.24512321,0.51216686,0.31588003,-0.3592555,0.49748024,0.21723141,-0.23596133,-0.009441743,-0.069044836,0.43912596,-0.11493439,0.5826193,-0.30698746,-0.13086475,0.30180484,0.729714,-0.0016785952,0.58818465,0.15314198,-0.025853492,0.42638677,0.0074959374,0.26606253,-0.12407037,-0.42537454,0.12806326,-0.13858546,0.1629701,0.456514,0.4441897,0.4549408,0.19438614,-0.23640466,0.040449567,0.0542379,-0.14360216,-1.3153762,0.49639946,0.14995535,0.91677475,0.20994934,0.17483534,-0.20751542,0.80751103,-0.20704561,-0.0061231647,0.400502,-0.036340214,-0.34785938,0.81132066,-0.7115246,0.3269189,-0.1536069,0.059504632,0.098078646,0.23362881,0.5916054,0.8249401,-0.21246068,0.08428958,-0.17779145,-0.1415815,0.24393202,-0.34338155,0.02733371,-0.47410455,-0.42819244,0.64499164,0.49934208,0.4974969,-0.25002232,-0.06554249,0.18764642,-0.09011444,0.18237805,0.008975405,-0.21707663,0.12055845,-0.5931434,-0.22049332,0.41977268,0.16553035,0.1745143,-0.271326,-0.18981703,0.029951163,-0.23180848,-0.027987314,0.110027395,-0.7152669,-0.15154602,-0.32138056,-0.5927433,0.32510248,-0.32899,0.019615779,0.12420234,-0.056672275,-0.15623657,0.22346023,0.07495691,0.8892823,0.15898988,-0.35814795,-0.35005695,-0.07411974,0.27747294,-0.3668146,0.21223995,-0.40030134,0.10291011,-0.5930008,0.6753298,-0.22765735,-0.6249949,0.31814435,-0.18503761,-0.043029826,0.5601779,-0.18575518,-0.09699166,0.1675646,-0.3753994,-0.5197648,-0.103348345,-0.15689792,0.09394082,0.22930224,-0.0081413435,-0.107883126,-0.30113876,-0.13179371,0.73606193,0.039467867,0.5020966,0.32894993,0.10980633,-0.15354347,0.09481346,0.20491236,0.48118034,0.070934765,-0.03966316,-0.27563402,-0.42394587,-0.17553216,0.37230375,-0.078445986,0.3201185,-0.055463262,-0.25897396,0.9974226,-0.02795225,1.1427633,0.167898,-0.4079812,-0.0283702,0.47520602,-0.14206146,0.14779924,-0.5626677,0.9214709,0.42156792,-0.15215525,-0.0031007002,-0.6823338,-0.08716936,0.4458024,-0.3803844,-0.16350761,-0.22107047,-0.5391937,-0.45701107,0.22119392,0.29054788,0.13832054,-0.05974218,0.22312453,0.037745424,-0.03996312,0.5160236,-0.7479038,0.06396696,0.26834112,0.30673763,-0.1256903,0.20734136,-0.27858686,0.35024974,-0.6511807,0.25009197,-0.45143697,0.072189234,-0.12102992,-0.41380385,0.0939062,-0.013218238,0.28861356,-0.35868707,-0.3573934,-0.035168573,0.5481341,0.1609227,-0.08812037,0.62080574,-0.25981238,-0.036862765,0.3061132,0.6906332,1.4061285,-0.41452742,0.21216947,0.18204363,-0.32140678,-0.71834767,0.4594557,-0.24786161,-0.06779928,0.078320034,-0.53278226,-0.5159509,0.2755449,0.21025041,-0.03929036,0.114645004,-0.32336596,-0.16473685,0.3588672,-0.18483308,-0.16480957,-0.14165942,0.3561265,0.4750689,-0.093848154,-0.41444975,-0.07290498,0.47399923,-0.41826135,-0.4510756,-0.055969957,-0.25259262,0.2986693,-0.034806512,-0.4405944,-0.004802915,-0.04155689,-0.5511641,-0.03821,0.16659945,-0.32618284,0.16099548,-0.17391841,-0.10656948,0.82006043,-0.23455109,-0.060668927,-0.892333,-0.39324972,-0.79532564,-0.34494463,0.11223333,0.25855976,-0.010060411,-0.34879196,-0.020921864,-0.11166002,-0.1482924,0.21244122,-0.60038143,0.33814475,0.19472449,0.6924775,-0.31201616,-0.9171763,0.15879598,0.13306859,-0.2692621,-0.66661584,0.65257955,-0.093483254,0.7942658,0.025384229,-0.017131723,-0.08094602,-0.27514946,0.07095078,-0.24735834,-0.3030843,-1.032845,0.026638445 +445,0.42971015,-0.43067425,-0.5138517,-0.0448897,-0.20661746,-0.10231465,-0.321248,0.23325446,0.059784148,-0.3034473,-0.0654273,-0.09585978,0.023303317,0.30501992,-0.10672394,-0.7272549,-0.07528802,0.031179238,-0.8527511,0.8407998,-0.36680415,0.24044964,-0.1226189,0.2933078,0.19149849,0.21648408,0.099848926,0.07169102,0.0631173,0.09061726,-0.02973226,0.20439948,-0.6532865,-0.043347936,-0.08918351,-0.3020509,-0.05014589,-0.2863932,-0.50110596,-0.9408372,0.4049171,-0.9246527,0.5197017,0.008210449,-0.3838748,0.29975775,0.051171184,0.36085263,-0.4843139,-0.0040431344,0.10044553,0.003950668,-0.054261293,-0.1833519,-0.042705078,-0.36271352,-0.5560474,-0.0060714823,-0.66993773,-0.12886886,-0.27111122,0.18280652,-0.39466622,0.044416495,-0.22954342,0.3600792,-0.5170767,0.045111503,0.24424984,0.09770865,0.20650947,-0.67526287,-0.0043460256,-0.18030559,0.2524486,0.0056536454,-0.31754652,0.4112992,0.12978324,0.46888566,0.05448452,-0.20072368,-0.13779916,0.033665553,0.18857601,0.3953612,-0.1512271,-0.39614984,-0.28833678,0.012077059,0.30738562,0.09388618,0.11332905,-0.30906707,-0.17651007,-0.019697087,0.030134814,0.34502384,0.5295794,-0.36924353,-0.30687183,0.35397294,0.56589067,0.26143268,-0.14603257,0.116281234,0.016675627,-0.617256,-0.11255489,0.21011806,-0.20506705,0.6649584,-0.20358315,0.22229981,0.4772741,-0.14127913,-0.14896,0.023945251,-0.024450513,0.031926613,-0.20525034,-0.19771756,0.2560739,-0.51098496,0.20393482,-0.24737212,0.61774623,0.2901409,-0.6645659,0.36758566,-0.50980306,0.254982,0.049220663,0.7281432,0.8638553,0.37720302,0.35611036,0.7983538,-0.36764738,0.12310781,0.037819438,-0.32402697,0.11148343,-0.2244992,-0.10320855,-0.51429653,-0.017925825,-0.24203862,-0.12854825,-0.02554624,0.49865893,-0.45349854,-0.08415533,0.09378631,0.6494859,-0.30901942,0.13864437,0.76159126,0.88817686,0.94083077,0.13342826,1.0796617,0.27848572,-0.18337683,0.19993135,-0.28861004,-0.84658396,0.20800741,0.29478732,0.49627876,0.34354857,0.041238002,-0.12826987,0.5070234,-0.49511296,0.18717219,-0.2189665,0.17154162,-0.008375453,-0.10438169,-0.43734494,-0.04983953,-0.055664174,0.10542451,-0.105434775,0.26058406,-0.17361467,0.48508355,0.050201576,1.3960943,-0.17596748,-0.0081857275,0.10192102,0.41632605,0.35117346,-0.1828723,-0.1870517,0.2719086,0.6112901,0.15619552,-0.71936387,0.17982565,-0.23440422,-0.36587116,-0.2301131,-0.28430197,0.0791562,-0.006010677,-0.4756885,-0.1888103,0.107591935,-0.26109442,0.35306352,-2.5260623,-0.28011864,-0.1454923,0.30946943,-0.26563063,-0.21819887,-0.17292377,-0.5037879,0.46418017,0.31137636,0.4490573,-0.6532596,0.28967288,0.4278087,-0.54578155,0.108919606,-0.68477833,-0.24694109,0.06472771,0.48144808,-0.038212143,-0.1763922,-0.005932457,0.22044137,0.42077166,-0.0356242,0.1192832,0.4296281,0.3587045,-0.12240616,0.444323,0.056126926,0.5122508,-0.3526332,-0.2262754,0.39446312,-0.13920268,0.4001139,-0.035732355,0.21344523,0.51928395,-0.6480648,-0.8988322,-0.4791287,-0.13386418,1.2832835,-0.37211296,-0.64360684,0.34777564,-0.4399348,-0.07527586,-0.08011909,0.47466102,-0.03725032,0.013865926,-0.8606362,0.09568066,-0.07225195,0.41498813,0.028532092,-0.10248553,-0.29765087,0.72020006,0.002328628,0.28180936,0.37299767,0.11794372,-0.20795162,-0.65450734,0.16250144,0.72841704,0.44060662,0.04023557,-0.2911157,-0.21320005,-0.27343044,-0.082856655,-0.0033184162,0.4932005,0.7686081,-0.09548753,0.15487751,0.19403125,0.031076908,-0.0046856934,-0.24876477,-0.15919252,-0.18702327,0.041144915,0.52730745,0.72779197,-0.10792269,0.46103215,-0.05276474,0.24108613,0.09466488,-0.50631624,0.6405822,1.1864911,-0.16364226,-0.30584997,0.55796736,0.3596534,-0.27385834,0.4416326,-0.49617776,-0.35307726,0.46850497,-0.117686205,-0.4719043,0.38170055,-0.4631857,0.26944104,-0.80566436,0.29615864,-0.37801692,-0.38949254,-0.6114231,0.030225227,-3.4831638,0.22652021,-0.4131433,-0.17551781,-0.29533324,-0.3296435,0.21768829,-0.5460934,-0.6571703,0.18905321,0.111577325,0.7060273,-0.22897413,-0.07013861,-0.16270807,-0.22416493,-0.3136041,0.17102285,0.3095058,0.3441787,-0.09812689,-0.48567563,-0.2587338,-0.13332525,-0.40213874,-0.12845206,-0.5692013,-0.44958147,-0.18524979,-0.56407845,-0.11983784,0.696227,0.010034119,0.011096135,-0.33393842,-0.044046946,0.05489495,0.32424682,0.25591114,0.4015944,0.05147747,-0.13978863,-0.10717641,-0.18607445,-0.074121274,0.051808503,0.075817056,0.29346758,-0.100787126,0.22748525,0.49735898,0.68030924,-0.256797,0.75848716,0.6571765,-0.17912377,0.33598262,-0.22091344,-0.40323427,-0.6416563,-0.3009965,-0.10399248,-0.42931786,-0.49690613,-0.13444814,-0.35380667,-0.81562644,0.51307166,-0.18643166,0.2794983,0.0939093,0.26919565,0.47278777,-0.028971529,-0.052340005,-0.121537805,-0.24217676,-0.50028974,-0.2759605,-0.696548,-0.5604874,0.07528882,0.89318955,-0.3472032,-0.009133518,0.17685474,-0.3476649,-0.006731987,0.01645894,0.026982335,0.33054423,0.38643447,0.15897019,-0.6497267,0.59669435,-0.007926175,-0.2192936,-0.6034774,0.20980267,0.5319222,-0.68204814,0.5441855,0.23441961,-0.05741823,-0.25635192,-0.70023817,-0.18439364,0.12876949,-0.254559,0.48718715,0.27439013,-0.7844477,0.50011986,0.31239653,-0.3005546,-0.737799,0.53424114,-0.020206204,-0.55091417,-0.010630237,0.384489,-0.24737202,0.15686704,-0.30000883,0.33800554,-0.34126702,0.19356868,0.32005635,-0.14129692,0.08023338,-0.117558286,-0.30495626,-0.63356304,0.08644838,-0.5030554,-0.14510341,0.43710497,0.022735974,0.048127957,-0.05611326,0.09571082,0.560909,-0.3245638,0.20107315,-0.15432762,-0.3678688,0.41313487,0.6337374,0.41148165,-0.41710472,0.62781733,0.023676872,-0.1555836,-0.033845272,0.21703954,0.41092587,-0.04887951,0.3854394,0.020659983,-0.024454415,0.0949435,0.8418743,0.1601444,0.68065697,0.14826643,-0.0029342559,0.38259405,0.17493396,0.24187799,-0.1028033,-0.32447228,0.020071212,-0.028884223,0.21843506,0.5193052,0.15139093,0.18218125,-0.12915854,-0.19323099,-0.008528592,0.19649656,0.20937695,-1.2872313,0.37476534,0.2752954,0.631463,0.6269383,0.061916213,-0.073263645,0.6540188,-0.3067512,-0.03514352,0.28626558,0.029645992,-0.5597286,0.5643035,-0.68939537,0.48844594,0.029548809,0.033899445,0.1999037,0.18865538,0.41354913,0.7741431,-0.15240659,-0.07484049,0.06968018,-0.23555498,0.24667755,-0.3486906,-0.073181145,-0.2872737,-0.44178072,0.6501294,0.5082906,0.20493482,-0.18256323,0.00018431034,-0.016929755,-0.20040977,0.27340502,-0.07533682,0.08108242,-0.13670693,-0.63572437,-0.23529005,0.4434735,0.022916649,0.11909541,-0.06208127,-0.046231877,0.18170099,-0.13352738,-0.17654851,-0.19245842,-0.92277753,0.16374898,-0.5617199,-0.43515852,0.51519215,-0.299414,0.24548051,0.32982087,0.05981746,-0.5279246,0.2665884,-0.24045834,0.73466504,-0.0037831664,-0.15711546,-0.35113317,0.17982514,0.2978773,-0.31357956,0.12151205,-0.25332773,0.07118296,-0.50501794,0.6181897,-0.09313939,-0.3720765,0.0515352,-0.18940385,-0.082133666,0.5591262,-0.2684502,-0.24878572,-0.01686682,-0.23008823,-0.38273048,-0.4181724,-0.07016242,0.26952747,0.29820988,0.1176701,-0.08592575,-0.012374418,0.05184824,0.7121352,0.062418826,0.43683332,0.41461685,0.02204832,-0.404155,0.048641022,0.45278528,0.6245286,0.06368973,0.019388186,-0.29167917,-0.5025547,-0.3986458,0.13213114,-0.11218126,0.43286902,-0.020305736,-0.24788108,0.83569634,0.13937293,1.0368043,-0.05619226,-0.32030267,0.23335107,0.61664397,-0.05231062,-0.22201405,-0.20939814,0.8281078,0.6265822,0.0010651669,-0.06557132,-0.25346866,-0.01873965,0.18149793,-0.22297321,-0.004813854,-0.040280856,-0.46598104,-0.12590334,0.18417035,0.37755463,0.05311626,-0.16327485,0.07773372,0.010048787,-0.06087571,0.08386072,-0.55292785,-0.1077352,0.4090019,-0.06333287,0.0058860267,0.20635703,-0.39453223,0.40703696,-0.5809207,0.06493417,-0.37181538,0.19681872,0.15572476,-0.28580856,0.21549144,-0.0065805316,0.3704872,-0.51273245,-0.17858028,-0.39558104,0.47546488,0.27468258,0.14951505,0.6094604,-0.23226449,0.274705,0.18934436,0.44398338,0.80080426,-0.32209778,-0.03790101,-0.017443892,-0.36928114,-0.6622843,0.41885456,-0.3855788,0.3338636,-0.1501522,-0.21730113,-0.7370196,0.09780989,0.16049287,0.10921048,-0.030433616,-0.820527,-0.36885688,0.18623559,-0.15176785,-0.15836105,-0.45826334,0.064951435,0.63827336,-0.31807062,-0.15059116,0.1214739,0.06585198,-0.26754066,-0.5106597,0.00739752,-0.38421303,0.2331823,0.08124978,-0.34565988,0.0795088,0.15990482,-0.58723825,0.14981297,0.20167516,-0.3883831,0.09907403,-0.18180202,-0.050893094,1.1415464,-0.47910792,0.097290866,-0.49280292,-0.6236867,-0.97482353,-0.29414603,0.65169156,0.18781556,0.19050685,-0.78880596,0.071729265,-0.10791052,0.14789979,0.033304445,-0.47507286,0.529377,0.03403179,0.3246958,-0.12843938,-0.80984145,0.2515514,0.019287225,-0.21144114,-0.4681642,0.5423986,-0.030325158,0.7263759,0.088340424,0.11635254,0.09825229,-0.6719288,-0.040113542,-0.21631983,-0.18763816,-0.654595,0.0032099315 +446,0.3301438,-0.05799749,-0.362448,-0.1857623,-0.3572312,0.025461279,-0.023666332,0.2892419,0.28478742,-0.2938921,0.030903433,-0.045293573,-0.1313643,0.41271222,-0.20923378,-0.7574931,0.009242635,-0.0026604282,-0.53017414,0.41547197,-0.5801066,0.48745254,0.1361002,0.321324,0.03353852,0.45401588,0.14667697,-0.10077845,0.12746678,-0.07093073,-0.29771677,0.1357124,-0.7019405,0.28425044,0.05598315,-0.42288935,0.10710887,-0.16662839,-0.3639027,-0.67318684,0.33565575,-0.7310867,0.4797632,-0.0877241,-0.4327467,0.057812627,0.013744042,0.2650584,-0.515566,0.160434,0.22926015,-0.3466136,0.13608658,-0.24637042,-0.15832397,-0.60320055,-0.5153641,-0.11087206,-0.69501466,-0.20430769,-0.41383302,0.07825167,-0.44732088,-0.06572421,-0.2717387,0.22576721,-0.5718497,0.055451386,0.1777387,-0.2292194,0.18172154,-0.44452494,-0.064650305,-0.15238704,0.0136438245,0.07826675,-0.19995125,0.35081628,0.2234385,0.4894738,0.13797212,-0.30219883,-0.2669218,-0.088284954,0.11415741,0.3677792,-0.1787369,-0.23627752,-0.14348923,0.015440033,0.21850745,0.29388723,-0.10655432,-0.23296162,0.016139291,0.09815183,-0.30564138,0.12701806,0.50350803,-0.39646527,-0.3159811,0.39116016,0.41698247,-0.068348534,-0.19756548,0.31465304,-0.08549142,-0.3522324,-0.34252757,0.12761018,-0.11809046,0.46818113,-0.29933923,0.07725472,1.0254763,-0.22797664,0.14426902,-0.002442516,-0.061798036,-0.1645396,-0.10224971,0.0014219009,0.09505264,-0.54800624,0.08718816,-0.23257521,0.87866944,0.25730184,-0.80013824,0.26328242,-0.46679562,0.18590964,-0.23801933,0.67962843,0.6161717,0.5199961,0.22378229,0.87082756,-0.7078181,0.07487812,-0.0028225183,-0.46716434,0.29397076,-0.19562244,-0.05342454,-0.47377008,-0.027267141,0.025816638,-0.11608425,-0.09068264,0.23807128,-0.45954356,-0.008285478,0.055912517,0.7135928,-0.4277808,0.05269042,0.64124244,0.93718207,0.95596606,0.030071642,1.2739428,0.27818006,-0.18458678,0.19099143,-0.34745884,-0.61233276,0.09690477,0.29818627,0.28603938,0.25659496,0.22274843,0.25349864,0.35952708,-0.26320145,0.1251688,-0.16268298,0.41663292,0.07374985,-0.20944987,-0.33335197,-0.2605795,0.14384024,0.15690099,-0.24436334,0.40682977,-0.0013172626,0.5328356,0.24315813,1.5330198,0.12785104,0.11895464,0.101556465,0.55401105,0.22011669,-0.028640104,0.11562324,0.350865,0.36118692,0.14825012,-0.65650874,0.08113357,-0.30637205,-0.4879937,-0.09742875,-0.40558308,-0.026201276,-0.2206788,-0.5238428,-0.19514205,0.04135535,-0.21830927,0.39687032,-2.3684602,-0.068123825,-0.08970575,0.25373796,-0.25626764,-0.2049509,-0.037758622,-0.4376983,0.23375462,0.4751292,0.43151143,-0.7670355,0.5478519,0.62860847,-0.33507058,-0.056675933,-0.69246453,-0.19909027,-0.1260442,0.40697733,0.029574784,-0.057747737,-0.20399164,0.16146412,0.6527523,0.07347828,0.011310701,0.14507146,0.4817282,-0.04614521,0.64948857,0.2428446,0.5209173,-0.23033029,-0.0922881,0.3511193,-0.5626067,0.3185215,0.16859378,0.1461399,0.37153932,-0.5115524,-0.9778005,-0.65134454,-0.39028805,1.2296449,-0.4275595,-0.3817506,0.4854833,-0.20546053,-0.17253676,-0.14427406,0.29211673,-0.15100926,0.10114642,-0.65511763,0.0845307,-0.10541716,0.2310145,0.053189296,0.09416811,-0.18643287,0.8386864,-0.17086774,0.53447497,0.25746426,0.028994897,-0.16299655,-0.41096142,0.058737405,0.75640047,0.45998973,0.18662664,-0.14268751,-0.23647976,-0.0639218,-0.2526679,0.20245332,0.5115295,0.7350186,-0.0737997,0.08764219,0.4728443,-0.34669253,-0.13002037,-0.1946997,-0.30031088,0.04086314,0.1422176,0.5030493,0.67735183,-0.21378352,0.36786813,-0.05304054,0.2625193,-0.07088391,-0.57044023,0.31849656,0.79808533,-0.11051871,-0.122977294,0.41869593,0.38307902,-0.43293285,0.3518655,-0.6163082,-0.30466366,0.63950866,-0.094384395,-0.4763173,0.026503874,-0.307787,0.0006611164,-0.847664,0.39086834,-0.17610455,-0.74927926,-0.5918395,-0.15227804,-4.075387,0.12066886,-0.34827328,-0.14192544,-0.0886596,-0.07536221,0.35421717,-0.66401,-0.5937834,0.016477294,0.14002842,0.43647954,-0.058860525,0.20846651,-0.34249938,-0.11822777,-0.36950037,0.27569273,0.07009168,0.14732073,-0.04733136,-0.49387008,-0.010497142,-0.16614777,-0.5511928,0.100560896,-0.5371224,-0.5863913,-0.050981965,-0.43553653,-0.29457834,0.75727314,-0.30655175,-0.060664956,-0.19670913,-0.15486775,-0.41282666,0.3097812,0.27790377,0.0022927339,0.026885888,0.123032495,-0.21496163,-0.44424164,0.22725056,0.038996115,0.6173325,0.26690868,-0.19555381,-0.046963587,0.8159891,0.46747193,0.10895968,0.7594201,0.21361175,-0.27091837,0.36174032,-0.40474504,-0.36222076,-0.78342086,-0.45355394,-0.2366476,-0.39680687,-0.41935742,-0.032501265,-0.3939802,-0.8340596,0.37216902,0.18729807,0.08867662,-0.13892218,0.17889251,0.36352703,0.001074227,-0.016688792,-0.06290685,-0.30125666,-0.65586627,-0.33132035,-0.7031266,-0.5509686,0.27698243,1.1302558,-0.18500353,-0.22842811,-0.09260245,-0.26199603,0.09675415,0.13273802,0.14504658,0.15512034,0.327288,-0.15093468,-0.69573694,0.42206606,0.010846524,-0.010488739,-0.63878834,-0.05319556,0.6737659,-0.8102448,0.60880417,0.25380775,0.1708728,0.21242288,-0.52978665,-0.38058552,-0.12804028,-0.19213493,0.5843451,0.090385355,-0.72086704,0.4450924,0.21728148,-0.2454984,-0.47598425,0.41801125,-0.19954681,-0.26337355,0.04637233,0.331397,0.086971596,-0.14868739,-0.015267821,0.3124832,-0.58651245,0.3099853,0.42103237,0.042925224,0.23889884,0.048185505,-0.23584089,-0.7306947,-0.105120294,-0.43842635,-0.20420827,0.01601196,0.011802018,-0.11825115,0.19637749,0.030728515,0.43981138,-0.120493904,0.20020793,0.012540267,-0.3699552,0.49777886,0.5107728,0.3901853,-0.5080644,0.6010668,0.13988239,0.08085366,-0.071878664,0.11887249,0.45343935,0.27008596,0.40581873,0.011862149,-0.1557396,0.29732907,0.88525933,0.299407,0.54940116,0.16208468,-0.052687425,0.48375386,0.2880503,0.0939887,0.0126855625,-0.29984114,0.15834895,0.05851018,0.19047818,0.3874116,0.18392506,0.37420136,-0.029034039,-0.14473857,0.15355161,0.29026276,-0.20086497,-1.0890921,0.24478468,0.3342385,0.65418994,0.6023856,0.07615674,0.01491503,0.6412825,-0.3585664,0.017917361,0.40277264,0.07762267,-0.52709484,0.63234144,-0.70890427,0.56015795,-0.09682166,0.015209248,0.056013525,0.26932067,0.3170888,0.9555155,-0.085676245,-0.08860305,-0.02998802,-0.2961182,0.10093163,-0.5840883,-0.014304831,-0.3975647,-0.2938866,0.53956914,0.38306206,0.28925183,-0.27572298,-0.05053238,-0.08316494,-0.09468583,0.21672784,-0.10783399,-0.06857881,-0.193973,-0.44847664,-0.39851972,0.56201404,-0.19398531,0.18265317,0.04001806,-0.29957274,0.4776603,-0.06005407,-0.2557068,0.013874018,-0.50956947,0.16423562,-0.16166672,-0.44605345,0.37077075,-0.33782685,0.3507687,0.22830346,-0.017662225,-0.41821223,0.11543691,0.1521994,0.58024305,-0.0807069,-0.28255317,-0.317862,-0.004157126,0.1763691,-0.35117263,-0.012450475,-0.32457352,0.07641862,-0.5481892,0.314403,-0.22384971,-0.3187825,0.025647182,-0.2983886,-0.10276516,0.34724584,-0.25298178,-0.25566402,0.0055901823,0.008572074,-0.21536806,-0.14598408,-0.38670304,0.36598447,-0.08592938,-0.017435363,0.08006047,-0.19317183,0.070399426,0.3930143,-0.06533934,0.17017478,0.11842172,-0.09096595,-0.35949844,-0.07369558,-0.008730077,0.34581867,-0.013302649,0.15040554,-0.082642965,-0.46580756,-0.21674183,0.12478193,-0.21057552,0.3257838,0.07053384,-0.59652066,0.89876455,0.019168634,1.2304026,-0.03454101,-0.3335156,0.11012506,0.6304033,0.27707547,0.15157053,-0.101388484,0.89697933,0.7895869,-0.28030083,-0.2491212,-0.50086915,-0.30003157,0.27631044,-0.24170464,-0.24109653,0.07962965,-0.7680169,-0.04576418,0.30241245,0.19450651,0.21107414,0.121580325,-0.17533945,0.097996406,0.28226793,0.4703572,-0.50424474,-0.21209224,0.3182589,0.00020851538,0.16214718,0.1374636,-0.3712813,0.47969964,-0.61286724,0.28871143,-0.33158424,0.1105655,-0.25682193,-0.2753403,0.14478956,-0.0135416845,0.35296583,-0.12853867,-0.36238325,-0.22625396,0.6714783,0.21152687,0.3685072,0.80584943,-0.25043228,0.10661879,0.018510286,0.3547161,1.1341527,0.05615129,-0.18430616,0.27819473,-0.410497,-0.65570843,0.22936313,-0.3612427,-0.024641184,0.0029714017,-0.43452084,-0.2797128,0.24386615,0.13021776,0.010551526,0.20083117,-0.44765505,-0.15891191,0.30938965,-0.46147746,-0.3495436,-0.3159018,0.34613228,0.8040679,-0.53351974,-0.2141307,0.13469611,0.18872762,-0.32381672,-0.44156554,-0.14855477,-0.27412212,0.49660286,0.12109906,-0.439215,0.19309685,0.2976948,-0.26794702,0.05761508,0.45704556,-0.36718628,0.21868268,-0.1512952,-0.0006259932,0.9754839,0.057932414,-0.052177675,-0.8201857,-0.4188636,-0.9205844,-0.25607112,0.6017822,0.25397402,-0.11519301,-0.558725,-0.09674437,0.14755669,-0.026889296,0.045626003,-0.6086058,0.519417,0.112364225,0.31088987,0.015577821,-0.9705438,0.05079276,0.19939181,0.008863027,-0.62744015,0.7199113,-0.5423454,0.69118434,0.04897401,0.05345475,0.02388238,-0.48476908,0.3155511,-0.35720342,-0.36494124,-0.60542274,-0.021572232 +447,0.4517142,-0.16423167,-0.7208946,-0.17249434,-0.036343906,-0.20299354,-0.037998155,0.62131,0.3373836,-0.616122,-0.05345827,-0.29957587,-0.013208558,0.58090717,-0.1638729,-0.93254095,0.046948645,0.13786675,-0.2963254,0.39897376,-0.4830987,0.21411303,0.084254555,0.3497181,-0.044471566,0.19413444,0.19370696,-0.24307714,-0.03429312,0.016227493,-0.14476992,0.3776635,-0.43254772,0.013036921,-0.02105978,-0.4832961,0.08224201,-0.4007866,-0.38393953,-0.8810707,0.29607162,-0.8020315,0.56234014,0.26114678,-0.24368383,0.13569538,0.29946157,0.27393964,-0.2222366,0.05367947,0.12996271,-0.14093818,-0.078653224,-0.17005,-0.44635662,-0.46083432,-0.64117366,0.10948956,-0.50504965,-0.22849068,0.045478977,0.20268616,-0.41217974,0.12797196,-0.15758587,0.48931995,-0.35206068,-0.196579,0.48847458,-0.24843779,0.37475443,-0.49680245,-0.1933812,-0.13767359,0.097080044,-0.14323786,-0.28742707,0.2257297,0.30539423,0.66491234,-0.0076360656,-0.32152206,-0.41019434,0.041005787,0.055240314,0.34717962,-0.41378987,-0.4601908,-0.11564001,0.16761972,0.09787856,0.3379022,0.18606336,-0.45165458,0.009966233,0.080460675,-0.36497533,0.40127856,0.55874157,-0.49335164,-0.22774228,0.22236377,0.6303117,0.0990675,-0.06879314,0.18718162,0.113294,-0.63091034,-0.10793049,0.17067152,-0.21133456,0.55144656,-0.14903913,0.21827984,0.7063335,-0.24549133,-0.024209062,0.0762013,-0.065917425,0.014433624,-0.5163467,-0.06474538,0.26655835,-0.48570392,0.1887892,-0.20822746,0.8094066,0.22102803,-0.7096719,0.4055977,-0.61600155,0.21194448,-0.23520991,0.626393,0.58442265,0.3366995,0.43199867,0.80225444,-0.5783332,0.051847532,-0.2028397,-0.34576967,0.0074305534,-0.13866816,0.044402234,-0.51411927,0.035576124,-0.056503017,-0.051923815,0.24512123,0.31878668,-0.6335954,-0.15170808,0.19089589,1.0971847,-0.27284622,-0.22435689,0.6833037,0.941523,1.1018625,-0.0020007892,1.2221657,0.26669404,-0.15178639,0.36728472,-0.25296265,-0.8985698,0.35503483,0.2696591,-0.28000996,0.30025128,-0.014178487,0.016824067,0.5023375,-0.2650501,0.17075542,-0.30336767,0.311221,0.16300741,-0.24653713,-0.27953294,-0.16876672,-0.15468827,-0.19577423,0.093766876,0.20619175,-0.12957118,0.35708806,-0.30324525,1.6693473,-0.16269109,0.122883305,0.17139302,0.42499542,0.21735407,0.14048669,0.022296974,0.22328931,0.1642378,0.24429165,-0.5541634,0.10011624,-0.30109233,-0.5201147,-0.13848445,-0.28627652,0.03475498,-0.18539634,-0.46071944,-0.17028663,-0.16310552,-0.2554522,0.43698832,-2.5832205,-0.2597718,-0.06666948,0.29557645,-0.28996944,-0.3415839,-0.22932562,-0.44270658,0.5222763,0.3805123,0.5330646,-0.64872354,0.43184492,0.45660654,-0.3889763,-0.1389164,-0.70305693,-0.028623484,-0.06490347,0.120015904,0.082208805,-0.20260698,0.07238652,0.113032185,0.553453,-0.09938283,-0.06554308,0.20856938,0.43296334,0.07976767,0.5244128,-0.163947,0.6359435,-0.48425776,-0.319797,0.4459413,-0.6196139,0.23074004,0.1802056,0.0782483,0.4193609,-0.5662421,-1.041247,-0.6049156,-0.25262123,0.95689195,-0.05637266,-0.40920988,0.3216211,-0.31114966,-0.13340928,-0.08271175,0.33661267,0.041873556,0.027736394,-0.8155073,0.12146636,-0.111706786,0.08369536,-0.010783758,0.0033914696,-0.17725751,0.684681,-0.1225599,0.34696776,0.47297227,0.048824623,-0.45051214,-0.5990147,-0.1731034,0.89731115,0.20063403,0.20589128,-0.15499401,-0.21178237,-0.3486619,-0.13734767,0.12006275,0.5321325,0.9944618,-0.19228841,-0.004807085,0.37505454,0.09943051,-0.05707205,-0.116806105,-0.510684,-0.10187189,0.07184182,0.53814536,0.68284225,-0.34478515,0.43707758,-0.038658336,0.44180298,-0.30888382,-0.3351898,0.4625277,0.95243526,-0.30593008,-0.39376733,0.5484906,0.33189276,-0.5449851,0.5317586,-0.58531505,-0.35976675,0.4748483,-0.13202561,-0.5297553,0.08868972,-0.33757207,0.13505812,-1.0801041,0.16814044,-0.33685124,-0.1840322,-0.49396783,-0.37177208,-3.5774736,0.29449886,-0.41389135,0.03867925,-0.13524069,0.1394749,0.110157505,-0.4588248,-0.82731354,0.018739166,0.19411667,0.511066,-0.21263117,0.2573004,-0.2247224,-0.07433233,-0.29681745,0.15357825,0.18050256,0.28206146,0.16625589,-0.48436153,-0.022249788,-0.1924679,-0.56889236,0.0884829,-0.66723084,-0.5098301,-0.22737758,-0.8079484,-0.38252962,0.7022547,-0.43126833,-0.051208302,-0.19985421,0.19144644,-0.12427844,0.4858792,0.05053965,0.16033052,0.02206229,-0.09955641,-0.21810451,-0.20460428,0.04423785,0.10317215,0.3985251,0.38377002,-0.11332726,0.20836793,0.6825768,0.90315723,0.1267862,0.6044551,0.4915989,-0.073932104,0.40539128,-0.3822948,-0.21331006,-0.5422668,-0.37060907,-0.040167883,-0.39599264,-0.59887785,0.16068673,-0.44826406,-0.7543245,0.67748004,0.039937954,0.0911064,0.08118076,0.19979829,0.494549,-0.20667815,0.03027459,0.044143174,-0.16432752,-0.6505023,-0.26783508,-0.5697159,-0.6002665,0.27372503,1.0967923,-0.28652307,-0.008232474,-0.0037827538,0.002770387,-0.20837195,0.25412667,0.033383705,0.21181162,0.3174415,-0.08388301,-0.5964717,0.30676615,-0.07239859,-0.16695905,-0.5739661,0.17912859,0.6566915,-0.7819444,0.7739678,0.23057875,0.059697013,0.056145675,-0.59177303,-0.17840296,0.024605151,-0.16452065,0.42748374,0.08636964,-0.68722016,0.4385408,0.79160124,-0.36267346,-0.7559072,0.29829565,0.01487664,-0.3108524,-0.087924965,0.40827864,0.18514368,0.011480807,-0.08109247,0.16432516,-0.5404562,0.10065244,0.2491979,-0.07301135,0.50998396,-0.20974973,-0.26395166,-0.88874,0.040860124,-0.71133673,-0.13363647,0.36065823,-0.008641963,0.034537356,0.1266381,0.04184491,0.36615828,-0.23685661,-0.0002294733,0.035907142,-0.19265376,0.38254803,0.38023794,0.32791144,-0.5300826,0.5934373,0.07512658,-0.14490315,0.14801516,0.03245525,0.43549523,0.09871006,0.49989843,0.12810661,-0.152733,0.20617032,0.970122,0.021949722,0.3848516,0.14243066,-0.18752535,0.31312507,0.16722108,-0.11107015,-0.0064161923,-0.5116314,0.11315424,-0.12461055,0.2346722,0.57419467,0.2031094,0.42818272,0.017983878,-0.29255626,-0.042843424,0.18973319,0.026687654,-1.2306516,0.2993553,0.17514825,0.79914486,0.4800026,0.1548233,0.14962062,0.5860608,-0.20954297,0.18945128,0.38485548,-0.43419358,-0.5949393,0.625424,-0.63718224,0.42074284,-0.22801417,0.13570412,0.025466355,0.18988334,0.44522446,0.71318376,-0.021275895,-0.0035063922,-0.067001775,-0.2035124,0.23914893,-0.49124452,0.026624532,-0.3596643,-0.2316583,0.6476829,0.4147066,0.34694174,-0.22508933,-0.08427013,0.2756736,0.005314146,0.16938528,-0.12708679,0.095606014,-0.12992255,-0.62401444,-0.24285659,0.69100195,0.2652933,0.22885388,-0.1263164,-0.168792,0.4482837,-0.10783021,-0.123791024,-0.21761107,-0.55007863,0.06831344,-0.28715688,-0.61278766,0.30486038,-0.051354785,0.20112029,0.21357217,0.14012378,-0.5468591,0.5107518,-0.19049476,0.73519546,-0.3408519,-0.07872952,-0.51916164,0.15720358,0.23290351,-0.30667746,-0.123397574,-0.29240054,-0.053309843,-0.36318016,0.5331658,-0.008505734,-0.3373937,0.008213337,-0.14453635,-0.063600734,0.49900347,-0.3458327,-0.14720961,0.001858952,-0.31742314,-0.3368941,-0.23505291,-0.031984884,0.38996884,-0.018497368,-0.1280584,-0.103789,-0.26240775,-0.13477874,0.52020925,-0.07501269,0.1992344,0.3372299,0.28514925,-0.44003388,-0.09375767,0.29725772,0.54982525,0.07341483,-0.15150337,-0.18771745,-0.30711463,-0.30493304,0.11060724,-0.16372862,0.42619988,0.2024811,-0.47789866,0.88480276,0.26604554,1.4686018,0.10503828,-0.32758063,-0.06882959,0.42806962,0.096124664,-0.09660347,-0.4513989,0.8961899,0.692695,-0.24153325,-0.11483187,-0.44242558,-0.028125368,0.1648725,-0.29185537,-0.11126227,0.026621345,-0.65581447,-0.29421267,0.37088314,0.19380906,0.38259447,-0.21262087,0.23364179,0.061346695,0.03497076,0.23792753,-0.334669,-0.23989837,0.19095439,0.5282692,0.02160125,0.03575964,-0.41344446,0.35035354,-0.44651476,0.2191233,-0.3931791,0.19956507,-0.11343817,-0.21511382,0.23173922,-0.14149407,0.31312704,-0.1971283,-0.24885233,-0.02972335,0.4916336,0.2451852,0.18839192,0.81062126,-0.23785727,-0.042031206,0.13920905,0.68495524,1.2001796,-0.2101498,-0.078588754,0.3653384,-0.14024065,-0.78881544,0.44509476,-0.25849092,0.10861298,-0.06396334,-0.28732842,-0.63685447,0.31440413,0.27743196,-0.11994326,0.27988416,-0.6327356,-0.19755857,0.21316549,-0.45503807,-0.24259204,-0.4324202,0.21442915,0.78263193,-0.19891214,-0.23992234,0.30179664,0.18040085,-0.15142344,-0.52149606,-0.010602355,-0.3276737,0.31758925,0.29095381,-0.3203395,0.08472763,0.059209637,-0.5650008,0.060335334,0.2102646,-0.26347554,0.18945166,-0.25950724,-0.19035676,0.88947856,-0.12055736,0.25950387,-0.67281795,-0.42719504,-1.0289443,-0.20822194,0.7038841,0.038168706,0.061057705,-0.55727476,-0.05926186,0.0824631,-0.4336317,-0.033967417,-0.28053057,0.45467955,0.084202126,0.3833445,-0.1471297,-0.6522552,0.032949284,0.35286158,-0.19574833,-0.6780023,0.4676182,-0.09988146,0.9273762,0.14924009,0.011773069,0.5698446,-0.46446273,-0.071169436,-0.34546867,-0.33827665,-0.6288583,-0.15662266 +448,0.42296317,-0.052017223,-0.70880556,-0.03987619,-0.2345366,0.03712285,-0.24867964,0.580204,0.2869381,-0.4309534,0.029281782,-0.2975029,0.16177149,0.38377714,-0.025805587,-0.60385567,0.031196913,0.15334423,-0.58623683,0.5039192,-0.527541,0.3291439,0.23556478,0.21014036,-0.07312775,0.30452457,0.14180307,-0.27963218,-0.08210889,-0.17845489,0.022809312,-0.11499723,-0.6193334,0.17271858,-0.16647576,-0.27224028,0.18142955,-0.51511174,-0.2308327,-0.4553407,0.15757404,-0.7762229,0.44677982,0.14088723,-0.20987451,0.23751032,-0.07940657,0.30716205,-0.1379193,-0.03957927,0.18104608,-0.22877403,-0.46090093,-0.26894933,-0.19782679,-0.36300078,-0.65360874,-0.091828674,-0.5714206,0.009745588,-0.2974775,-0.09713483,-0.27861264,0.16696973,-0.00861762,0.02437373,-0.3418609,0.1400578,0.1369365,-0.23488365,0.11577002,-0.3566105,0.016029526,-0.036687598,0.31408733,-0.026226776,-0.18821818,0.36518797,0.24988787,0.49715194,-0.14570595,-0.0005223602,-0.25854912,0.011046323,0.103446476,0.64709824,-0.11407358,-0.22542489,-0.10003719,0.062954314,0.20090628,0.25248533,0.009563297,-0.19572203,-0.024902822,-0.08901552,-0.5400229,0.29990235,0.42078137,-0.3526781,-0.056800764,0.49668908,0.32054573,0.14930303,-0.11185545,-0.018257113,-0.04366648,-0.51725477,-0.16685532,0.05501124,-0.17417979,0.5007505,0.0196096,0.24089873,0.6007379,-0.12271532,-0.069117665,0.009928332,-0.06064483,0.02551321,-0.065887615,-0.09636378,0.29542252,-0.56026167,-0.17394502,-0.31972152,0.8313172,0.07452961,-0.93030024,0.45374337,-0.52306324,0.0094038285,-0.116275914,0.56244797,0.67217296,0.6663955,0.08268163,0.7604075,-0.6298675,0.15243433,-0.1845063,-0.5280841,0.46119216,-0.0010933504,0.29339278,-0.41857782,-0.100802936,0.27454266,-0.19766064,0.2777175,0.5185521,-0.41787782,-0.16449234,0.04928915,0.6023001,-0.31367722,-0.23204128,0.55674654,1.1806499,0.64042044,0.12428533,1.0957137,0.23502183,-0.18472119,0.1827334,-0.23042436,-0.8597725,0.13951705,0.26565143,0.050370097,0.272072,0.20354323,-0.14570187,0.29623893,-0.050092507,-0.09547899,0.100717865,0.32683447,-0.15579735,-0.18653363,-0.2549049,-0.4419055,0.018701242,0.00907598,0.103553504,0.5294815,-0.17205675,0.4783894,0.05814593,1.7457167,0.15224421,0.20723684,-0.03203569,0.38097063,0.2059433,-0.16095321,-0.31497797,0.34146252,0.26475415,0.09137287,-0.44297266,0.024933686,-0.13638616,-0.48184153,-0.044800628,-0.38507438,-0.030590782,-0.14984265,-0.23388696,-0.11599362,-0.023696415,-0.38635072,0.4756768,-2.915374,-0.16136265,-0.05658439,0.4538701,-0.16895944,-0.26530394,-0.16482499,-0.475304,0.31039384,0.34071663,0.5150088,-0.5434322,0.3452928,0.3685336,-0.5994572,-0.1474322,-0.60188156,0.06910961,-0.09612429,0.2348011,-0.10146699,-0.17021419,0.05776051,0.06663843,0.38509092,-0.06542458,0.05122673,0.35039982,0.6096911,0.17204493,0.50980514,-0.25053707,0.5921955,-0.39856216,-0.114972435,0.10574273,-0.3024095,0.38682786,-0.19743252,0.16279452,0.26834735,-0.32763898,-0.8646838,-0.25001144,0.065545805,1.1257414,-0.5098559,-0.2572073,0.26650274,-0.107820295,-0.27542827,-0.103215866,0.6516002,-0.04621954,-0.14038442,-0.579465,-0.020202776,-0.046209678,0.19528417,0.013157298,0.047408123,-0.32949343,0.5505418,0.109209895,0.67475575,0.3718406,0.010927807,0.01560162,-0.18423288,0.27496347,0.8864808,0.14108694,0.29062274,-0.24524494,-0.070943974,-0.3275832,-0.09906969,0.07500297,0.41890118,0.51650745,-0.030999178,0.08773434,0.28478086,-0.1588686,-0.028280007,-0.05352914,-0.4059545,-0.10432277,-0.1631476,0.5531573,0.9384963,-0.10967841,0.35810325,0.06326332,0.23668022,-0.24692816,-0.544076,0.567643,0.41628662,-0.105832696,-0.020105114,0.49189663,0.598533,-0.20876616,0.48630503,-0.4411644,-0.4873689,0.41379666,-0.1100199,-0.39484942,0.44575164,-0.21424349,0.11337263,-0.8371268,0.10123753,-0.2544264,-0.49014947,-0.40757465,0.16419573,-3.301053,0.22196639,-0.06776908,-0.25212917,0.023383088,0.118308835,0.16780673,-0.44952753,-0.41805875,0.19315831,0.24023162,0.6397651,-0.053516556,0.059886903,-0.3867544,-0.42280138,-0.21094382,0.16819459,-0.0090993,0.19257389,0.03392138,-0.46939826,-0.12568347,-0.2636378,-0.13217005,0.10938772,-0.51369643,-0.3113126,-0.08860776,-0.36936966,-0.46556982,0.6832726,-0.4746485,-0.125174,-0.07322814,0.010319288,-0.0028116603,0.18390198,-0.20908375,-0.10216906,-0.059227377,-0.08302527,-0.03530222,-0.43598256,0.3711563,0.0752311,0.519536,0.5266888,-0.078480415,-0.099617295,0.74905187,0.4392389,0.14578632,0.8737576,0.22058874,-0.10495844,0.22086291,-0.32395726,0.013752893,-0.48078927,-0.13248639,-0.35504434,-0.34919837,-0.33667135,-0.014026861,-0.30640325,-0.7206817,0.49815226,0.20727618,-0.08324965,-0.0032618914,0.4038304,0.32011762,-0.17987923,0.039625872,-0.1885312,-0.20781912,-0.43173054,-0.205746,-0.73187065,-0.38210464,0.40876773,0.90105075,-0.20538396,-0.0436035,-0.008551528,-0.21635734,0.05723447,-0.03927936,0.12418381,0.3044537,0.2923642,-0.13494171,-0.63549757,0.59369856,-0.31670627,-0.09338024,-0.7739193,0.0058440245,0.5167222,-0.77662396,0.2524046,0.48309544,0.027092883,0.25180194,-0.42744184,-0.20536186,0.112156786,-0.19285627,0.12105747,0.14883615,-1.0748521,0.42095575,0.21445839,-0.362155,-0.7155821,0.38339064,-0.10921329,-0.22195435,-0.08013772,0.21825172,0.19671036,0.10298443,-0.27930853,-0.0026170823,-0.60494214,0.27398035,0.17391519,-0.096458636,0.42720476,0.0699266,-0.066354305,-0.7163358,-0.12533227,-0.34258366,-0.13352425,0.48044315,0.10840899,0.34044066,-0.07390986,0.3138536,0.23148017,-0.548863,0.0058057145,-0.16542868,-0.30155605,0.6046373,0.46084538,0.44872975,-0.46854576,0.5915422,-0.08273322,0.05218019,0.029120097,0.04455598,0.3975263,0.1179016,0.15764335,0.24692304,-0.42535457,0.20394816,0.81925434,0.19155668,0.24884063,0.21146883,-0.024695838,0.39484215,0.054581165,0.08002991,0.06447878,-0.6418376,-0.112017386,-0.15460391,0.1738143,0.46588275,0.16313879,0.38038406,-0.19287701,-0.21487617,0.06727513,0.19690214,0.17860873,-0.7593619,0.38638362,0.17526847,0.36173224,0.5970351,0.017111504,0.051853534,0.641753,-0.2442503,0.20784055,0.22146599,-0.15953273,-0.45869482,0.5813555,-0.73402554,0.49445522,-0.027861044,-0.08665537,0.30133754,-0.14969653,0.42352363,0.95181733,-0.070109636,0.050471947,0.04327256,-0.3726921,-0.05270167,-0.23408665,-0.19424795,-0.64054626,-0.25467858,0.70645314,0.29084125,0.45520344,-0.015562098,-0.0031657096,0.07102046,-0.14600833,0.2660884,0.04265527,0.12566097,0.020064272,-0.62339497,-0.19298953,0.6968608,-0.008803246,0.20082678,0.110773884,-0.05592978,0.5179027,-0.25117335,-0.30316925,-0.15466118,-0.5402411,0.22520006,-0.33085996,-0.51462257,0.65008754,0.13434167,0.4453968,0.20878617,0.101091236,-0.20459844,0.5219212,0.22912216,0.8495304,-0.09735512,-0.4567324,-0.26555893,0.06772804,0.20151623,-0.2745225,-0.11036538,-0.28014678,-0.075822674,-0.6081229,0.25487968,-0.27274185,-0.25443485,-0.2265705,-0.093886115,0.20461905,0.42511824,-0.10137954,-0.0667735,-0.11631008,-0.017904684,-0.2822723,-0.21535511,-0.39135313,0.033787426,0.11724297,-0.13271281,-0.067128666,-0.06994586,0.11352361,0.25598976,0.008006036,0.19497938,0.08674107,0.23265012,-0.2014784,-0.15743405,0.24715507,0.51214147,-0.045573216,-0.11368352,-0.5928871,-0.3056483,-0.3212255,0.028223723,-0.046302553,0.34194255,0.18737829,-0.32898912,0.72123957,-0.1991849,0.7701526,0.057438314,-0.24236353,0.23382263,0.5050582,0.12944227,-0.1298341,-0.3458136,0.95785713,0.5188975,-0.15122853,-0.1776275,-0.540866,-0.26490805,0.05356242,-0.2738841,-0.33211628,0.09391681,-0.5777128,-0.14448595,0.17572713,0.17345269,0.2859966,-0.22095306,0.25776047,0.23719655,0.28136525,-0.038593963,-0.4486409,-0.34884632,0.24377875,0.2707614,0.12105731,0.12907135,-0.4400022,0.338199,-0.5617202,0.15600248,-0.31486753,-0.031193443,-0.048552092,-0.24581258,0.1479022,0.19960018,0.35691747,-0.32558027,-0.33154732,-0.082391895,0.44480625,0.30840242,0.4674919,0.73791915,-0.21617214,-0.23506431,-0.08352325,0.52878255,1.0754625,-0.2566785,-0.0542267,0.5971964,-0.35778335,-0.6470385,0.19774915,-0.1710182,0.28545165,-0.07088128,-0.298798,-0.37438235,0.23614155,-0.0170713,-0.13915215,0.06263074,-0.4685893,-0.12378082,0.16355814,-0.43414137,-0.42293334,-0.39888033,0.10308203,0.81404954,-0.32772863,-0.2059774,0.09178442,0.14060846,-0.2239012,-0.33685616,-0.07940218,-0.39719164,0.06623083,0.21731007,-0.33220115,0.02497004,0.23995824,-0.44238773,0.2626751,0.07391996,-0.33519658,0.023676356,-0.4522679,0.07678409,0.9947445,-0.1365603,0.025436094,-0.31028283,-0.57796854,-0.6978554,-0.4652665,0.2689091,-0.022041043,0.0034876342,-0.32935473,-0.060209442,0.006376141,-0.22139542,-0.27260423,-0.4884192,0.44864354,-0.03337876,0.24213803,-0.06465843,-1.0771533,0.10772303,0.044030298,-0.34969768,-0.63602537,0.36791983,-0.30062836,1.0368584,0.10368628,0.08369169,0.46049976,-0.59596163,0.08765891,-0.4248676,-0.0826981,-0.5206046,0.0722707 +449,0.43781084,-0.21513583,-0.42867208,-0.036755256,-0.21589702,0.034020744,-0.009163776,0.19886586,0.16105798,-0.45969892,-0.03280802,-0.19093274,0.03126132,0.45168388,-0.18143976,-0.5820059,-0.0740113,0.15522194,-0.4764271,0.4617086,-0.36416078,0.33956927,0.08092535,0.22268766,0.023865059,0.28110188,0.283955,-0.38508394,-0.16947316,-0.04418429,-0.26913548,0.16841605,-0.44797352,0.24063885,-0.034147326,-0.3525712,0.21822743,-0.31755558,-0.34015363,-0.57292694,0.15118042,-0.5977967,0.28988856,0.09138428,-0.12042518,0.26287538,-0.020045683,0.35192716,-0.3947553,0.04463777,0.12247547,-0.12596986,-0.10087487,-0.41079706,-0.04449997,-0.31044838,-0.3834426,-0.020483036,-0.29579425,-0.13942882,-0.27628875,0.14544488,-0.26824626,-0.011861388,-0.14670652,0.23287576,-0.42635453,-0.0065506883,0.15087032,-0.23010483,0.23227827,-0.44078714,-0.12910768,-0.059205934,0.17005636,-0.21779212,-0.07929378,0.3966871,-0.07620276,0.41104335,-0.027220525,-0.0254491,-0.37590432,-0.20321818,0.13636287,0.59836197,-0.18619579,-0.47510082,-0.042437345,0.08971882,-0.015778987,0.12480891,-0.1470956,-0.36138427,-0.15936552,-0.19528747,-0.20555922,0.1332601,0.5029939,-0.3569636,-0.014745437,0.34165215,0.35961324,0.0038718395,-0.09088564,-0.25078988,0.02527326,-0.49595052,-0.15914157,0.06922436,-0.20137537,0.51246095,0.01819558,0.1562649,0.57831526,-0.17365614,0.06540222,-0.092203885,-0.048627418,0.00049661845,-0.08315222,-0.20431691,0.1780979,-0.22533299,0.034714025,-0.08365071,0.83340555,0.1591426,-0.75695705,0.28945512,-0.46874672,0.12795964,-0.07742749,0.42970824,0.17497374,0.55941296,0.22462668,0.70776075,-0.56919473,0.19098078,-0.21774772,-0.28591645,-0.16783412,0.122531354,-0.19454832,-0.38063848,0.14705941,0.030065082,-0.18332988,0.15697984,0.10332022,-0.4470181,0.14670092,0.041711144,0.8553525,-0.39222682,0.06576434,0.46551093,0.88542193,0.81392473,0.03932379,0.9790069,0.1778386,-0.39091122,-0.017392755,-0.35283095,-0.6298306,0.12647226,0.41274124,0.026897728,0.18960969,0.22285119,0.12671754,0.27237076,-0.23767659,-0.029807054,-0.21803296,0.12305711,0.056528613,0.044618096,-0.29756865,-0.16819046,-0.229049,-0.05562019,0.014382154,0.1620267,-0.2990019,0.3589731,0.16640416,1.9587575,0.021926463,0.15362163,0.1468601,0.2886188,0.12790059,0.06658058,-0.071267776,0.28566927,0.15773056,0.022114258,-0.46923596,0.0664969,-0.16157562,-0.63310385,-0.06517082,-0.13996929,-0.05099164,0.064841434,-0.3035335,-0.10053918,0.023223553,-0.23908082,0.507523,-2.5080552,-0.0037736772,0.020879956,0.4034679,-0.32536113,-0.26181307,-0.10998382,-0.3386631,0.32987198,0.38857955,0.45749205,-0.610459,0.31834686,0.34992847,-0.39336196,-0.2072678,-0.4901064,-0.033035547,0.041316226,0.2647737,-0.014747538,0.00017414615,-0.008446544,-0.015282784,0.32116893,-0.25724888,-0.011262268,0.2051992,0.25604165,0.29355055,0.46299934,0.01880122,0.48313707,-0.31937844,-0.05692187,0.14150253,-0.39473546,0.21357298,0.12934463,0.12858617,0.2838316,-0.46537662,-0.73978233,-0.601691,-0.1997109,1.1006719,-0.23195887,-0.2783086,0.24991465,0.06467661,-0.17507368,-0.086099416,0.20553441,-0.023380954,-0.034051657,-0.72032225,0.097245395,-0.058779787,0.33407542,0.1257993,-0.0098639615,-0.35416853,0.6479527,-0.0978726,0.500474,0.45217508,0.20812126,-0.110906586,-0.26140928,0.06305315,0.83957785,0.29612598,0.19942777,-0.08373466,-0.2067532,-0.11200181,-0.11525272,0.17687231,0.370514,0.6746487,-0.07151493,-0.03876148,0.19942942,0.10125175,-0.14386,-0.12113187,-0.30467257,-0.00614696,-0.050488766,0.5421698,0.5059915,-0.17731848,0.32752067,-0.0958291,0.41630673,-0.13823408,-0.32059905,0.41155854,0.9301066,-0.1301502,-0.20630088,0.46302438,0.6065628,-0.119369134,0.29983494,-0.6806927,-0.25918484,0.44673896,-0.21862265,-0.30718866,0.16839704,-0.21210834,0.10949693,-0.8517305,0.3178393,-0.20233771,-0.3508729,-0.5123684,-0.16176422,-2.8129115,0.10153549,-0.27501512,-0.22333549,0.1478962,0.1656302,0.0072476473,-0.58132076,-0.3777016,0.13206932,0.13373639,0.4598436,0.049250785,0.3223238,-0.14763469,-0.035361923,-0.15980253,0.17198999,0.01572571,0.18335146,0.05700034,-0.45651513,-0.14364259,-0.17327055,-0.30962947,0.19799608,-0.49810743,-0.35249627,-0.1163339,-0.48206747,-0.25698364,0.46642146,-0.3564514,-0.009275654,-0.1362474,-0.019245826,-0.1886016,0.18600832,0.055721797,0.094432354,-0.058055304,-0.108862266,-0.043146316,-0.2939917,0.28477916,0.16737077,0.21229124,0.28591722,-0.018708197,-0.028953936,0.39715958,0.5433129,0.011447951,0.5935863,0.37799028,-0.13764074,0.20255944,-0.4085545,-0.29258543,-0.51378167,-0.5739034,-0.038388938,-0.26405936,-0.37225962,-0.08795297,-0.37014633,-0.61421824,0.5442296,0.037413828,-0.16352512,0.089506775,0.16704324,0.49366072,-0.1599202,-0.16537187,0.05007731,-0.12634182,-0.45861566,-0.415284,-0.50007534,-0.23352721,0.07611455,1.1516507,-0.14305004,-0.09699787,0.002973061,-0.086492166,-0.1302542,0.057078995,-0.019596584,0.33012837,0.26818562,-0.14553507,-0.6170152,0.5948189,-0.062919304,-0.26713574,-0.44633704,0.19367884,0.5335927,-0.61143553,0.29967642,0.2507013,0.16477537,0.188936,-0.37400517,-0.25545353,-0.08067722,-0.21095052,0.22740573,-0.023719944,-0.4508748,0.25218433,0.40775812,-0.4536792,-0.7375062,0.2842934,0.027380425,-0.63066864,0.096887365,0.24010655,0.08493017,-0.12557751,-0.19726755,0.092852555,-0.33387575,0.2708459,0.2846305,0.026758224,-0.070357926,-0.28563625,-0.16205162,-0.78070354,0.05363054,-0.27344295,-0.21068606,0.2873507,0.14787965,-0.022212364,0.011300772,0.09435603,0.37068954,-0.36008158,-0.0057551675,-0.11775267,-0.100179255,0.44986308,0.3449121,0.38640285,-0.3303923,0.53441817,-0.06790672,0.032267477,-0.31169614,0.0236061,0.5042641,0.047029894,0.097022146,0.0072631687,-0.3208039,0.38750803,0.5800126,0.2597314,0.36580932,0.052236363,-0.25024697,0.38333243,0.19925675,0.08386487,0.167124,-0.3908611,0.1480466,0.02180031,0.112443194,0.34567666,0.20063248,0.45708588,-0.12056572,-0.28820714,0.0668437,0.18548532,-0.0055058897,-0.8944698,0.3468862,-0.046429858,0.61039203,0.60631657,0.066319264,0.17739305,0.67379457,-0.2195301,0.06481975,0.27729762,-0.14639534,-0.4465146,0.43272984,-0.58816767,0.3467526,-0.016081264,0.04746805,0.08819333,0.041159738,0.2661338,0.8539129,-0.13763416,0.04111893,0.016120883,-0.17950052,-0.103637844,-0.26638377,-0.07475789,-0.4879066,-0.42783922,0.51548505,0.27434647,0.388861,0.0017372333,0.02557617,0.14575726,0.036625035,0.294736,0.15866488,0.10554601,0.1008465,-0.6085575,-0.19720122,0.5840597,-0.18468267,0.13280536,-0.032495484,-0.14290705,0.37055722,-0.116343096,-0.24877664,-0.06127502,-0.39269364,0.080358475,-0.2511883,-0.18105721,0.31034565,0.0064277556,0.42822868,0.04484033,0.01271314,-0.34645975,0.42552522,0.20476991,0.85266864,0.06967774,-0.166061,-0.3443281,0.12292977,0.28882793,-0.07203717,0.13333087,-0.04481519,-0.12066685,-0.7840923,0.34787372,-0.0010493323,-0.16462809,0.18379083,-0.2431021,-0.066569544,0.45810902,-0.14717492,-0.15824936,-0.0045077577,0.061577633,-0.22408797,-0.0749688,-0.33253968,0.16775763,0.1315274,0.06140131,0.028047701,-0.055030633,-0.0131617505,0.48298556,-0.004340902,0.41965804,0.08307733,0.06951964,-0.4569187,-0.13058856,-0.0016705543,0.34791726,-0.08096044,-0.10197753,-0.25214168,-0.48382398,-0.26396698,-0.12055324,-0.22707824,0.18096757,0.16044015,-0.31692877,0.752499,-0.07052171,1.028943,-0.049772423,-0.14732188,0.056636572,0.41218778,-0.024699215,0.16371955,-0.30704197,0.95442194,0.7143679,0.001909893,-0.15053412,-0.1950586,-0.07750409,0.00035844743,-0.16116625,-0.036607064,0.09909472,-0.39109,-0.41500044,0.18386455,0.08334152,0.13074163,-0.05359577,-0.004112974,0.13299245,0.123902366,0.21898791,-0.28608587,-0.24602596,0.2489824,0.082737885,0.21609493,0.081242114,-0.48246056,0.49584568,-0.36378145,0.105686925,-0.28096527,0.09231285,-0.12733558,-0.1537278,0.15502536,-0.04628098,0.1643471,-0.36202002,-0.24932992,-0.21630044,0.47314382,0.14690118,0.21624191,0.55480313,-0.138966,0.019930733,-0.0061383788,0.41862863,0.7916889,-0.48855555,0.113543645,0.6065416,-0.34279382,-0.25212544,0.275776,-0.052065425,-0.19472834,-0.06658526,-0.18816769,-0.5693002,0.32453987,0.1583437,-0.08200332,0.044984207,-0.59496665,-0.16283607,0.38248855,-0.3744921,-0.31576842,-0.31115562,0.4253886,0.5479822,-0.2999226,-0.3271241,0.27236816,0.055640712,-0.20949376,-0.37838507,-0.106592916,-0.40000957,0.3379894,0.30539867,-0.23323618,-0.2236504,0.08512483,-0.25052622,-0.0010803342,0.18387169,-0.2835257,0.068689846,-0.30527496,-0.08209729,0.78736913,-0.18107529,0.099369705,-0.7328191,-0.280164,-0.9776161,-0.46681684,0.680002,0.19958304,-0.051963042,-0.47569248,-0.1366793,0.056594,-0.3259861,-0.14956485,-0.3656422,0.39172444,0.12778854,0.2654726,-0.16212979,-0.72429556,0.14244741,0.11194228,-0.2971381,-0.42952323,0.38934952,-0.121523425,0.8663033,-0.023142532,-0.017417647,0.45215666,-0.5171739,-0.08851802,-0.21127596,-0.35190645,-0.52892,-0.008576974 +450,0.22598192,-0.14704128,-0.4802016,-0.21707061,-0.36286235,0.27551383,-0.18881808,0.15421484,0.056256443,-0.3439699,0.09499914,-0.0983002,-0.0483315,0.393104,-0.14326088,-0.5673921,-0.20408352,0.070091605,-0.6212999,0.307875,-0.522283,0.21583879,0.007793518,0.32109743,-0.09802556,0.36401957,0.23417568,-0.09057612,-0.19444169,0.03618993,-0.026745811,0.2544534,-0.7449648,0.138161,-0.039593115,-0.37540373,0.0061710607,-0.49466923,-0.17681544,-0.544883,0.3931712,-0.6512866,0.44309294,-0.28879482,-0.26165378,0.34187365,0.12673828,0.15932246,-0.17740327,0.07343279,0.31826785,-0.1258495,0.026288792,-0.08716062,-0.22898212,-0.5048188,-0.52942973,0.037570275,-0.632686,-0.2035349,-0.062262937,0.31249607,-0.25325978,0.13936058,-0.2563444,0.47718427,-0.31149256,-0.13128768,0.15848434,-0.14345893,0.14446178,-0.4469445,-0.023959897,-0.08856875,0.2621118,-0.20544076,-0.07699002,0.18009098,0.2822536,0.5262426,0.016247459,-0.24554682,-0.22145209,0.044900164,0.0017741807,0.53392154,-0.17064436,-0.21491466,-0.27937284,-0.074729964,0.0035257116,0.15412365,-0.076361254,-0.4209164,0.031939052,0.11500387,-0.30270717,0.27208275,0.32828763,-0.4862051,-0.39123982,0.46439302,0.4293394,0.05343821,-0.06937809,0.06103646,0.021590006,-0.5213231,-0.20480044,0.22691236,-0.11758771,0.42272168,-0.10739444,0.33192444,0.726435,-0.062053256,0.033110507,-0.22461616,-0.16674669,0.033019163,-0.3300775,0.10497814,0.066264525,-0.38181728,0.014035106,-0.12216644,0.59227043,0.08995489,-0.9354814,0.43233728,-0.43040052,0.03624121,-0.103258036,0.5435747,0.7184311,0.32337683,0.079789676,0.7697381,-0.45175475,0.114396304,-0.0942882,-0.3598317,0.14024192,0.012282187,0.081899874,-0.5603795,0.05543811,-0.011547431,0.11982538,0.007985719,0.30374515,-0.4562404,-0.013394954,0.073623866,0.66549623,-0.41210154,-0.11169527,0.6378954,0.9504164,0.85938656,0.08560973,1.3678887,0.1416264,-0.17450625,0.16355726,-0.37544698,-0.45186585,0.2090607,0.41268957,0.2052103,0.29077336,0.07035284,0.16727988,0.49613026,-0.18224987,0.12933797,-0.031065881,0.22219652,0.021806091,0.02042232,-0.41360652,-0.32452428,0.23342748,0.036298703,0.060905192,0.1543421,-0.25993603,0.40286216,0.2930674,1.5485425,-0.0189918,0.12122854,-0.029953208,0.35484648,0.18888947,-0.14245686,-0.12987724,0.31320268,0.27098596,-0.040958658,-0.5034377,0.11625085,-0.2382931,-0.44734418,-0.22986774,-0.3217116,-0.17541833,-0.2187088,-0.50167215,-0.12575956,0.13757363,-0.40869397,0.4432089,-2.7010183,-0.23842812,-0.17687248,0.2601503,-0.24059968,-0.4056443,-0.20391896,-0.3823119,0.27778608,0.4299889,0.2753017,-0.49055988,0.46376395,0.305305,-0.37366667,-0.1638025,-0.6366556,-0.082159504,-0.03387029,0.3015849,-0.045229845,-0.18679003,-0.40642434,0.37184578,0.42758536,-0.13441455,-0.017608348,0.19900338,0.4119978,0.23084883,0.5284231,0.0672026,0.5259764,-0.160936,-0.17368217,0.4814654,-0.36118937,0.15895325,0.053914744,0.2442011,0.3374262,-0.40994874,-0.914415,-0.6236252,-0.52242017,1.0922521,-0.31241214,-0.2963379,0.32823354,0.04355661,-0.29751757,0.07999496,0.39373308,-0.0802742,-0.004449159,-0.7350051,0.09415972,-0.06466375,0.25830793,-0.09293306,0.12403967,-0.45377126,0.508965,-0.113721065,0.51200986,0.41616723,0.17573214,-0.14390258,-0.317109,0.08274028,0.9492088,0.3600951,0.13371946,-0.08772094,-0.14890921,-0.16152011,-0.01218842,0.044978116,0.35519475,0.6565174,0.12549052,0.11861106,0.22592515,-0.123306304,0.071919374,-0.12233967,-0.26499572,0.011826862,0.046092805,0.4781881,0.42676806,-0.16973895,0.3711821,-0.18041152,0.22331145,-0.063535474,-0.4380718,0.32244635,0.63713485,-0.24096352,-0.07409754,0.49756077,0.43792728,-0.32434595,0.4272977,-0.5586835,-0.2997716,0.6269775,-0.21539661,-0.38385433,-0.015025707,-0.2500465,0.043417193,-0.8127221,0.16979682,-0.013463385,-0.41457024,-0.46318468,-0.26876402,-3.870001,0.0947949,-0.050552018,-0.1447643,0.005239073,-0.16067955,0.3910193,-0.47567138,-0.5923235,0.06705904,-0.022887034,0.53488064,-0.006457641,0.21659933,-0.36267963,-0.11140807,-0.21119049,0.35422483,0.09666634,0.1964644,0.05440402,-0.4540282,0.09975171,-0.40017825,-0.53439784,0.040644504,-0.5807479,-0.4846521,-0.056118302,-0.53765595,-0.4295488,0.6412203,-0.40204066,-0.17330424,-0.2660118,0.03680952,-0.08497603,0.42360196,0.153298,0.08243161,0.17792304,0.04714998,-0.091290414,-0.26183882,0.2554933,0.12789086,0.19527617,0.37850052,0.06461582,0.1847245,0.5271435,0.5492724,0.046953607,0.7649541,0.28913218,-0.062866405,0.40293303,-0.3261062,-0.12616327,-0.6374715,-0.384049,-0.13067816,-0.46195945,-0.49337703,-0.12239413,-0.32744747,-0.6728476,0.50589323,-0.005263649,0.0432387,-0.061945453,0.31313795,0.3211658,-0.2841724,0.14549205,-0.15014508,-0.11811862,-0.3794502,-0.5567817,-0.74002546,-0.60272145,0.02773913,1.130861,0.022730805,-0.112600096,-0.0030780416,-0.2007648,-0.031056521,0.03939039,0.19867729,0.41758382,0.46819204,-0.1476932,-0.6596226,0.4115237,-0.20963445,-0.041108966,-0.4366982,-0.014225777,0.5440885,-0.5310623,0.5661672,0.39880446,0.25005454,0.2366188,-0.5254879,-0.08574413,0.08046149,-0.33594278,0.58692735,0.18331897,-0.6706763,0.61883885,0.05242539,-0.14160529,-0.7879046,0.50766546,0.020081358,-0.07873233,-0.010601282,0.38525462,0.14219564,-0.052764155,-0.061375733,0.14932458,-0.5769143,0.40474677,0.32981744,0.10677385,0.6378317,-0.20200537,-0.17910227,-0.6073359,-0.3360908,-0.29496664,-0.30660677,0.019376144,-0.09696242,0.19000946,0.2749746,-0.10723195,0.48153383,-0.36498195,0.044942234,0.020230232,-0.2458959,0.17431377,0.4908017,0.2888213,-0.34581813,0.5213029,-0.04480501,-0.0752602,-0.20581105,-0.043596677,0.46152824,0.2594477,0.15499511,-0.05081825,-0.20164655,0.21306089,0.67019266,0.17821836,0.23500627,-0.091271624,-0.3363743,0.36548933,0.047398932,0.017566182,0.024836209,-0.31876695,-0.05684479,0.080826394,0.15005532,0.38751876,0.06388682,0.30878842,-0.12560558,-0.08890858,0.22197025,0.22168922,-0.26315874,-0.8766723,0.19305782,0.19607541,0.74997675,0.62120634,0.07947743,0.100240335,0.4551384,-0.48253673,0.07055997,0.3856783,0.0105064325,-0.43073803,0.59671456,-0.54189473,0.5378555,-0.19252436,-0.091198534,0.21776988,0.07926008,0.37198704,0.9700892,-0.027837114,0.11445622,0.11248578,-0.19074306,0.2082431,-0.11651388,0.077413514,-0.4098337,-0.24659565,0.5454876,0.44707555,0.28016573,-0.2791644,-0.07379182,-0.007116899,-0.20204921,0.08049305,-0.027828919,-0.14480115,0.037289813,-0.6502512,-0.38413623,0.5956988,0.062239453,0.042303268,0.13607839,-0.48799267,0.22863227,-0.10139086,-0.101408824,0.045916293,-0.5986979,-0.1373642,-0.28260228,-0.42323795,0.2542542,-0.36506084,0.18046221,-0.012801062,0.10490905,-0.35719785,0.128961,0.3117949,0.71973586,0.12066104,-0.059059393,-0.32097036,-0.01212462,0.25011328,-0.2947186,-0.11788149,-0.5099107,0.12619361,-0.5667951,0.4993897,-0.10529021,-0.27905786,0.1307096,-0.033448223,0.12688282,0.37986827,-0.011921838,-0.06855072,0.0009443313,0.1789008,-0.32674092,0.02246768,-0.45706275,0.2047306,0.06467896,-0.03290601,-0.020716127,-0.09970578,-0.2446508,0.51539016,0.21861903,0.26193422,0.28025293,0.043723043,-0.45924503,-0.049840495,-0.078095034,0.44846165,-0.055913553,-0.04544067,-0.27180344,-0.17955947,-0.18365355,0.47326186,-0.17983934,0.1447188,-0.01913283,-0.41125822,0.7068318,-0.007159304,1.1353136,0.13685548,-0.3200521,-0.010280365,0.40146077,-0.023532137,0.08877006,-0.52400994,0.8506818,0.5197318,-0.012093529,-0.24015653,-0.26018003,-0.17627132,0.20478255,-0.22207892,-0.1438382,-0.27307895,-0.7808904,-0.3905439,0.20288897,0.15666184,0.13970375,-0.015126124,0.034228116,0.071584545,0.12293695,0.54016364,-0.4450764,-0.10285192,0.3221038,0.3161898,-0.052951746,0.26152647,-0.31765977,0.5352662,-0.68677163,0.17328432,-0.42982662,0.04310813,-0.034110785,-0.14337021,0.10522288,0.0679626,0.37519386,-0.088732034,-0.40883997,-0.25242853,0.6201448,0.17328137,0.2116833,0.876794,-0.11798394,0.038947098,0.0121004805,0.44292507,1.1887664,-0.1686776,0.05479254,0.28881717,-0.17349233,-0.5630528,0.014228843,-0.4302585,0.031738523,-0.011990827,-0.22313325,-0.2746358,0.2730739,0.11880739,0.057392247,-0.042754944,-0.43954644,-0.022629414,0.6017995,-0.23334141,-0.21343043,-0.25064445,0.39434183,0.80991906,-0.43524095,-0.1780205,0.02049881,0.4578419,-0.2716961,-0.62481165,0.06375962,-0.4620058,0.4910628,0.11026174,-0.3507744,-0.004684329,0.19566101,-0.4028417,0.13506323,0.45807797,-0.3389226,-0.12852094,-0.23728588,-0.1158249,1.018357,0.10697491,0.095880345,-0.64334273,-0.51132196,-0.96838784,-0.19366743,0.14611197,0.14554307,-0.069098376,-0.30588046,-0.08012816,-0.22416013,-0.08496731,0.021409549,-0.5902253,0.36446336,0.09387514,0.61006564,-0.10275406,-0.81737924,-0.18555461,0.22805361,-0.10873905,-0.41636622,0.6150006,-0.06004535,0.7063208,0.108304225,-0.031229373,0.09897095,-0.42187372,0.26937163,-0.52702576,-0.069725245,-0.76809734,0.18014172 +451,0.44451973,-0.06777794,-0.38291168,-0.0038338602,-0.31688014,0.02914986,-0.2508967,0.4923315,0.23566605,-0.32713547,-0.1831372,-0.036829036,-0.014817439,0.23789813,-0.24548829,-0.5223285,-0.064763695,0.12193075,-0.36237022,0.7347952,-0.5016438,0.3008681,-0.04464761,0.4188319,0.37594706,0.20466378,0.12638833,-0.10129751,-0.22232948,-0.19745469,-0.11029577,0.3409887,-0.47375646,0.061071333,-0.28694737,-0.39242396,-0.026016124,-0.4874332,-0.42605647,-0.76386636,0.4239806,-0.7342169,0.4664576,0.0022662356,-0.2888924,0.37185726,0.053959988,0.24904229,-0.26739687,-0.08375195,0.14226021,-0.15141456,-0.019681713,-0.04668682,-0.21754856,-0.33891475,-0.58661103,0.023738967,-0.5496067,-0.08387506,-0.34072948,0.18507214,-0.26500246,-0.10122241,-0.029292833,0.5494766,-0.48706818,-0.1090345,-0.03735688,-0.04594233,0.21369919,-0.6222775,-0.22305241,-0.15051597,0.10786004,-0.07948608,-0.21273804,0.18319933,0.24062651,0.42880958,-0.01317884,-0.11316859,-0.39038694,-0.096172765,0.12277517,0.3660905,-0.115550384,-0.673371,-0.19699025,-0.10967422,0.2591704,0.1772237,0.08197195,-0.29399154,0.0126642175,0.10938469,-0.3154379,0.5251929,0.48738348,-0.2958049,-0.2155606,0.3477167,0.52226764,0.33037752,-0.18543407,0.017803643,-0.12711716,-0.49858353,-0.12804465,-0.06330104,-0.23419383,0.6316476,-0.094241664,0.21832013,0.56541204,-0.11450455,0.042809837,0.055936992,-0.07677792,-0.1112079,-0.32331538,-0.2848594,0.12376417,-0.43452936,0.24577479,-0.13783154,0.72263384,0.07565626,-0.6802199,0.34116754,-0.4919788,0.11431542,-0.032837983,0.5469432,0.6505781,0.37029755,0.36792317,0.6695604,-0.34103954,0.02082435,-0.13603044,-0.21642052,-0.06354219,-0.034951046,-0.13193047,-0.42580673,0.018373914,-0.053118654,-0.10929192,0.039199136,0.41604453,-0.5017575,-0.054005772,0.12805289,0.71409607,-0.29085478,-0.07647378,0.8556314,1.1425065,1.0760148,0.03557445,1.0842618,0.20835245,-0.06692393,0.1132528,-0.26821935,-0.6544961,0.24313305,0.37278375,-0.14720689,0.22906367,0.06738509,-0.04024055,0.39809844,-0.446795,-0.11443657,-0.17430696,0.23225449,0.12024864,0.062289752,-0.3886023,-0.24298842,0.01716935,0.087207526,0.15002133,0.25291318,-0.34926063,0.19671628,0.1545543,1.4659207,-0.15281264,0.021466812,0.1014271,0.5648393,0.19211501,-0.08212135,-0.028433712,0.40524265,0.40325058,-0.021626819,-0.6482338,0.12031908,-0.25453612,-0.47492322,-0.07264534,-0.3112328,-0.09192243,0.05132623,-0.41051474,-0.07318407,-0.17721938,-0.3708339,0.45419282,-2.7536168,-0.15270236,-0.04653553,0.20823461,-0.14464577,-0.32458925,-0.048686326,-0.43740407,0.3691236,0.2655349,0.44175178,-0.6442204,0.34960496,0.5631918,-0.4603828,-0.1599013,-0.6648611,-0.14000735,-0.08418821,0.56283516,-0.078805976,-0.020991009,0.029287234,0.12753011,0.5973617,0.06469574,0.20755492,0.25151545,0.37594542,0.0104018,0.4579154,-0.007879738,0.43206176,-0.12821057,-0.14657554,0.40616497,-0.30269742,0.26273844,-0.101374015,0.1903985,0.43912786,-0.5121552,-0.84748685,-0.6407411,-0.14910227,1.2123936,-0.24234863,-0.47750688,0.35077983,-0.26421806,-0.21954764,-0.03305676,0.44508117,-0.15854552,-0.11274975,-0.8308129,0.04508332,-0.15943623,0.095801525,-0.012042571,0.18231307,-0.3126626,0.6530933,-0.05925186,0.46873713,0.3610234,0.29976672,-0.33079976,-0.54814065,0.06403111,0.9431645,0.4425941,0.09532687,-0.2689594,-0.21011055,-0.25430292,0.0097181,0.063757256,0.58080786,0.63898325,-0.026053607,0.15312195,0.27615112,0.052194938,-0.035898883,-0.22418845,-0.20704222,-0.08090404,0.06050422,0.4847383,0.62873775,-0.19855219,0.4492002,-0.04957623,0.20184776,-0.21187623,-0.39393225,0.52469933,0.9672699,-0.28322253,-0.23269756,0.6873698,0.4908156,-0.1838714,0.4950112,-0.66467535,-0.27071157,0.48288906,-0.20988426,-0.3646203,0.29922628,-0.2930065,0.060858823,-0.7907873,0.27531672,-0.26698905,-0.521835,-0.53953683,-0.1823678,-3.1462991,0.13264632,-0.27978426,-0.25239056,-0.18855456,-0.2683702,0.2943592,-0.5671748,-0.5288675,0.15768687,0.15566182,0.5534224,-0.11463793,0.08209873,-0.29640007,-0.3118907,-0.30277023,0.1670716,0.122449346,0.4158468,-0.1017957,-0.400038,-0.074641734,-0.14714362,-0.39307266,-0.027425893,-0.41844198,-0.33989957,-0.0845892,-0.47680607,-0.23309009,0.60240465,-0.39279908,0.06259271,-0.26520035,-0.11259332,-0.13277516,0.36271882,0.17651027,0.13895501,0.018046834,0.0033735633,0.07413352,-0.33512992,0.1344399,0.058271248,0.08183143,0.38644612,-0.137214,0.20181426,0.3786648,0.6528541,-0.18604976,1.0017946,0.5554738,-0.13660459,0.30906227,-0.28167748,-0.28550193,-0.67691904,-0.2925469,-0.12635976,-0.40517175,-0.4923787,-0.20088254,-0.2886993,-0.78268373,0.54466355,-0.025885087,0.40203723,-0.041653357,0.24843833,0.49556762,-0.20138445,-0.018974576,-0.010221276,-0.06315457,-0.5178822,-0.30074394,-0.69728166,-0.46229795,0.018275179,0.79342675,-0.11027445,-0.049983546,0.10064432,-0.26637352,-0.038553976,0.052641194,0.08889316,0.14037831,0.47992235,-0.092603736,-0.67754686,0.39946085,-0.109763905,-0.11021565,-0.486022,0.1460569,0.5765082,-0.5845129,0.51931703,0.40864965,0.14687406,-0.123056054,-0.55641335,-0.20945549,-0.06269771,-0.18733217,0.5353543,0.30553308,-0.86182994,0.51712114,0.35761335,-0.16000679,-0.7724113,0.60773903,-0.08556959,-0.23654185,-0.013525642,0.36927155,0.17555135,0.060530674,-0.21562648,0.24285273,-0.30118787,0.317926,0.19247016,-0.18124986,0.22031385,-0.2722426,-0.12347363,-0.6888721,-0.0027132947,-0.47187635,-0.2663832,0.07643427,0.08123036,0.060416117,0.10192925,-0.079160444,0.4199191,-0.2614801,0.19619244,-0.03852416,-0.09816493,0.25484952,0.5675283,0.5387718,-0.30057555,0.6006624,0.04099491,-0.18757536,0.028604329,0.024581715,0.33817077,-0.06748944,0.34361777,0.069985986,-0.18328172,0.29266214,0.6475818,0.32609093,0.4856341,-0.039775558,-0.26801598,0.364773,0.15719143,0.35223448,-0.011515968,-0.5392587,-0.12550119,-0.20869207,0.14730604,0.6046226,0.18772054,0.33278278,-0.10720987,-0.19309412,0.04797052,0.15035373,-0.1499036,-1.2298027,0.27054662,0.15357584,0.7945816,0.6205452,-0.027833328,0.09872344,0.4852047,-0.22112998,0.06378875,0.44937187,0.23837943,-0.5269819,0.52585006,-0.66334,0.41065407,-0.095590755,0.03694419,0.046858825,-0.06429562,0.39690065,0.72412944,-0.24871151,0.08039221,0.013459016,-0.23536706,0.16490573,-0.2758496,0.10605101,-0.54851794,-0.25322825,0.6289884,0.6066642,0.31267664,-0.19809729,-0.005204918,0.10131423,-0.13338028,0.0687109,0.06552385,0.06769795,-0.16444421,-0.5765429,-0.24847682,0.47842526,-0.12210417,0.14073858,-0.06032449,-0.2514394,0.13959911,-0.067992695,-0.16648962,0.037792232,-0.6601176,-0.12724699,-0.19304094,-0.40199634,0.47108808,-0.20147073,0.21676925,0.085765116,0.07976898,-0.28404468,0.19312029,0.17117447,0.589793,-0.039467134,0.01888372,-0.285039,0.10505855,0.18411678,-0.0926998,-0.29246548,-0.31249565,-0.00074471533,-0.6613401,0.37855187,-0.06512237,-0.26753864,0.0957139,-0.16377449,0.06555029,0.56517863,-0.063127816,-0.1984927,0.0003274083,-0.063894585,-0.27442718,-0.19134885,-0.059544142,0.24685512,0.19984448,-0.11109781,-0.09896722,-0.06597288,-0.0633425,0.3933593,-0.01887973,0.4430727,0.3050281,0.13863814,-0.33240163,-0.11533095,0.15392056,0.46188238,0.027466774,-0.10235011,-0.16668658,-0.37742162,-0.3756345,0.17081767,-0.19404143,0.24598739,0.13912337,-0.3390203,0.77799976,0.1594173,1.1762954,0.03674459,-0.4078716,0.12917727,0.57666075,-0.10324524,0.030529492,-0.34246397,0.9320572,0.38197276,-0.13897514,-0.11877288,-0.3968167,0.008849807,0.27867374,-0.1897199,-0.16723382,-0.12287509,-0.5148517,-0.18317926,0.1886808,0.3113378,0.097045176,-0.11769718,-0.07414428,0.216025,0.086898655,0.538249,-0.3757646,-0.079340115,0.41433382,0.16810873,-0.03944129,0.14011088,-0.4238382,0.4069624,-0.46415478,-0.040726773,-0.30735183,0.1407053,-0.30569148,-0.3194595,0.24381743,0.017359853,0.3997707,-0.29232085,-0.4125139,-0.29271212,0.5014888,0.021634974,0.12829491,0.5011674,-0.2793029,0.13048176,-0.10696965,0.37626055,0.9781264,-0.30411306,-0.055457935,0.28805977,-0.37831524,-0.63675284,0.27274507,-0.42542124,0.11738002,0.0074362457,-0.23366284,-0.524865,0.34007865,0.16152069,0.024296202,0.019312967,-0.6829386,-0.117222086,0.32204992,-0.1196831,-0.16553196,-0.15459979,0.008027852,0.6825529,-0.32626113,-0.50765926,-0.03786192,0.27866322,-0.13483879,-0.6515809,-0.05494752,-0.3682592,0.361497,0.20074086,-0.23004934,-0.06742695,0.15392676,-0.49556336,-0.031052908,0.1737881,-0.29925418,0.024612581,-0.31943184,0.07910969,0.98359096,-0.12412379,0.22004616,-0.43851113,-0.48017263,-0.855254,-0.37630552,0.28315437,0.18217164,0.11232138,-0.5811115,0.13712528,-0.21906734,-0.08883226,-0.06112693,-0.4637902,0.4910633,0.1343608,0.49405006,-0.11999388,-0.7669378,0.03328792,0.09167336,-0.033004276,-0.5478617,0.5293842,0.039621197,0.7475435,0.082084246,0.13359918,0.13318242,-0.49829382,-0.003601674,-0.22780731,-0.18621401,-0.66213256,0.15509748 +452,0.48970097,-0.32276142,-0.509445,-0.0620706,-0.3854331,0.19760817,-0.258139,0.46204883,0.15324987,-0.32348865,-0.1210406,-0.11008004,0.018158004,0.33181438,-0.21578357,-0.41942397,-0.022813495,0.25501424,-0.5014791,0.67894506,-0.30667183,0.21472132,0.0017515756,0.34469363,0.31669858,0.2546714,0.1024344,-0.063586965,-0.26295578,-0.19464673,-0.23268732,0.3373986,-0.48450148,0.1759124,-0.072651595,-0.254166,0.0048796833,-0.42561036,-0.3466012,-0.7584709,0.32438725,-0.8264398,0.4861465,-0.08777632,-0.3636867,0.28795016,0.12640406,0.412204,-0.28201497,-0.100007996,0.2330973,-0.1641739,-0.08628783,-0.17794566,-0.102689624,-0.38586792,-0.5238595,0.063566096,-0.3803897,-0.16828367,-0.30121797,0.25154412,-0.2422475,0.04215671,-0.14886901,0.5708462,-0.53566384,0.19413164,0.16417266,-0.15734394,0.227756,-0.73700416,-0.07526253,-0.058123313,0.31198555,-0.038200885,-0.09355421,0.2579234,0.40374434,0.32284224,0.14027551,-0.24838696,-0.34498224,-0.14935295,0.048087835,0.42178017,-0.13827959,-0.52236277,-0.19118766,0.02486898,0.22405028,0.16528897,0.13619584,-0.335005,-0.11715815,0.014294378,-0.28115225,0.26518577,0.41056812,-0.3454664,-0.087646246,0.38826802,0.64591306,0.15218475,-0.244184,-0.17191675,-0.08567284,-0.57884896,-0.09219212,0.06729093,-0.2760769,0.64535713,-0.15161923,0.27760905,0.7130016,-0.11050324,-0.08690968,0.07976746,0.08052409,-0.27882788,-0.29499745,-0.25835183,0.09831718,-0.44723392,0.20034893,-0.09247703,0.8402555,0.07776435,-0.6234559,0.3423978,-0.5073413,0.13393575,-0.093979806,0.3833142,0.56892,0.4359953,0.36285952,0.639001,-0.30680227,0.10858681,-0.016439393,-0.5338692,-0.037208844,-0.08492889,-0.11571526,-0.5730232,0.14816184,-0.17035851,-0.08483715,-0.050063718,0.5670221,-0.47739226,0.017113568,0.1124806,0.8353871,-0.3221863,-0.15615767,0.717543,0.94484115,0.97533476,-0.0047452133,1.1025677,0.29995626,-0.24126339,0.07030912,-0.35386258,-0.5255387,0.34388286,0.5524342,-0.25514922,0.25553113,0.07773158,-0.029661588,0.54336655,-0.31317538,-0.03463526,-0.263694,0.0969519,0.12560445,-0.085333765,-0.44963673,-0.27631387,0.02593896,0.17204918,0.1273557,0.2188404,-0.15032417,0.47286817,0.22010756,1.7044631,-0.08853501,0.03666447,0.075439006,0.42826995,0.19254096,-0.09818779,-0.073300764,0.35728267,0.46350855,0.108758986,-0.5125749,0.08682604,-0.28448057,-0.5309621,-0.16011393,-0.28265935,-0.21276754,0.060323734,-0.48142153,-0.11940314,-0.1408792,-0.16588038,0.45379433,-2.643458,-0.16761643,-0.2237351,0.12839699,-0.3098777,-0.41528794,0.12344752,-0.5201182,0.30826676,0.32682756,0.4810847,-0.668568,0.38753864,0.29980943,-0.57107794,-0.053578023,-0.5873326,-0.24208283,-0.05329942,0.5030776,0.0015882179,-0.14431137,-0.023171319,0.04030416,0.5273109,-0.096485965,0.18695399,0.36353108,0.3820011,-0.0080924295,0.5854372,0.07705639,0.52290344,-0.09054742,-0.21995142,0.35291195,-0.22963293,0.33799717,-0.071812235,0.13399519,0.49245805,-0.3967871,-0.83425,-0.72561157,-0.06584716,1.2695539,-0.27397025,-0.4630765,0.24652296,-0.2365973,-0.242399,0.0064395815,0.33283696,-0.10885172,-0.046094354,-0.7991662,0.14408064,-0.055113524,0.12414143,0.0012358124,-0.19141684,-0.43286628,0.78256494,-0.06816846,0.47005978,0.4062553,0.13754618,-0.24049722,-0.39082196,0.008410774,0.93088365,0.45103303,0.047175743,-0.22429474,-0.19290179,-0.42619365,-0.083465174,0.046255924,0.42827308,0.5216249,0.06451161,0.11867438,0.22310662,-0.03459706,0.09500594,-0.24075955,-0.2437467,-0.0671417,0.012902714,0.55663514,0.6390604,-0.06593032,0.5407279,-0.17522226,0.3081977,-0.10864829,-0.510605,0.5392504,1.0585954,-0.27400675,-0.4313878,0.66594183,0.48913875,-0.17108703,0.33543938,-0.5188717,-0.27497625,0.48498607,-0.16752735,-0.45465022,0.19539948,-0.23373866,0.07248755,-0.87685776,0.20548517,-0.2029157,-0.457323,-0.5109947,-0.12270189,-3.195571,0.34710085,-0.3287048,-0.23440051,-0.12117391,-0.2563947,0.14349256,-0.7080406,-0.48223782,0.14339083,0.0945201,0.55100477,-0.055667117,0.12009959,-0.24235836,-0.19747202,-0.15235332,0.15257987,0.075938694,0.2454537,-0.19045007,-0.5352179,0.009226784,-0.07062844,-0.445978,0.015832044,-0.7417289,-0.48288274,-0.12648734,-0.48050362,-0.23030525,0.60248566,-0.31749308,0.08055529,-0.23101917,0.075581625,-0.0918278,0.19094688,0.05693923,0.14268251,0.0035192445,-0.12596343,0.13994552,-0.3406114,0.33406222,0.04381404,0.25181264,0.14118709,-0.06478939,0.26848477,0.39578474,0.62147415,-0.28127626,0.93217945,0.4956536,-0.14938852,0.23102091,-0.09236546,-0.3045879,-0.63632417,-0.3070701,0.027231136,-0.4377269,-0.43335178,-0.07561239,-0.32656693,-0.6774234,0.6479883,-0.011980869,0.12385017,0.019565325,0.3232325,0.6336721,-0.31901518,-0.041662183,-0.049762227,-0.17515975,-0.6120002,-0.31692243,-0.6161394,-0.4607687,0.0317719,0.9710592,-0.10486682,0.10890836,0.031396504,-0.3492474,-0.040236253,0.10653034,-0.028407812,0.26652187,0.48387605,-0.31348825,-0.75922894,0.49850577,-0.14512874,-0.15196311,-0.41803855,0.24808578,0.50849825,-0.5330438,0.5567065,0.39298213,0.104588866,-0.10215707,-0.50352454,-0.18538481,-0.040048257,-0.2825718,0.52523047,0.25670782,-0.623187,0.44068852,0.23625849,-0.19107732,-0.8110782,0.5083675,-0.09952819,-0.3322938,-0.10341464,0.33969408,0.089785166,-0.02013378,-0.3421531,0.08648404,-0.45016196,0.3011569,0.20414749,-0.14426383,0.08504156,-0.22838682,-0.1344189,-0.7712926,-0.0106553435,-0.4195356,-0.30323777,0.25534463,0.03792236,0.01841122,0.10593267,0.10071339,0.32570624,-0.26860946,0.11731429,-0.04675115,-0.22423631,0.33028957,0.45978576,0.51827574,-0.465937,0.5833431,0.05682816,-0.12173832,-0.2238775,0.027761621,0.47544292,0.08923195,0.5114964,-0.061783433,-0.20256913,0.4504501,0.60836923,0.24651252,0.5850314,-0.032466464,-0.15768981,0.12902877,0.053638235,0.29628605,0.0916736,-0.7127294,0.06591556,-0.2612139,0.14994349,0.5936433,0.13701922,0.32430965,-0.07145752,-0.30091915,0.073403716,0.119475275,0.0808194,-1.1351147,0.28080425,0.3514469,0.8403541,0.31893685,-0.026409669,-0.07377981,0.8189286,-0.31465888,0.08291411,0.4420582,0.07933493,-0.5203424,0.53158593,-0.8614752,0.37543654,-0.07085427,-0.02655089,0.09822014,-0.077863224,0.29018986,0.82717264,-0.2340567,-0.00857158,-0.0017406233,-0.42128327,0.163911,-0.35627538,-0.056303486,-0.57462424,-0.38973498,0.6324439,0.5897278,0.35055888,-0.15913455,0.057030357,0.12182324,-0.14733325,0.13761525,0.17178038,0.18513367,-0.009742692,-0.71741253,-0.19389603,0.45595014,0.0677336,0.23454629,-0.033938095,-0.18436322,0.2995515,-0.3279135,-0.09678719,-0.02364346,-0.6404318,-0.06108529,-0.15324357,-0.46335512,0.43308616,-0.12176325,0.14070715,0.13802476,0.10148922,-0.26724374,0.38658562,-0.008608237,0.8713978,0.21946555,-0.087707594,-0.29337186,0.20355272,0.06198311,-0.054784898,-0.061982546,-0.3737753,-0.012017764,-0.6699569,0.39380258,-0.046174247,-0.40742528,0.05427464,-0.17178309,-0.022128914,0.50164247,-0.07556046,-0.18383336,-0.03953463,-0.0049901716,-0.24012433,-0.28313613,-0.07801247,0.24756631,0.3045053,0.14060326,-0.17380938,-0.011570256,-0.18330187,0.4921417,-0.06377886,0.4344408,0.3125077,-0.08318418,-0.2620198,-0.21271215,0.20437667,0.4959507,-0.15720508,-0.16094969,-0.33249578,-0.5401356,-0.26201954,0.1363696,-0.045971952,0.39555544,0.11891541,-0.09909913,0.8653343,-0.16073205,1.2918534,0.11247928,-0.44905084,0.083904065,0.53866446,0.052082345,0.0377296,-0.30972183,0.926319,0.41882673,-0.022311486,-0.14763291,-0.4721365,0.020580132,0.19914341,-0.16595855,-0.018769763,-0.053506725,-0.55767536,-0.2878722,0.16859865,0.293901,0.1841661,-0.0074113384,-0.015651532,0.32804614,-0.059606872,0.41697615,-0.4413898,-0.30353385,0.2859838,0.21074477,-0.18393797,0.14545287,-0.5732469,0.44392833,-0.4445724,0.062199183,-0.35933742,0.13245098,-0.26504534,-0.23966569,0.26538843,-0.1119862,0.43508995,-0.4312979,-0.32284388,-0.30503932,0.55198914,0.22846103,0.14157641,0.550936,-0.37935892,0.09960551,0.12231882,0.44076028,0.7941428,-0.39845937,-0.0061109215,0.34992123,-0.2744378,-0.5496887,0.38279977,-0.18905377,0.11859644,0.24497643,-0.21750113,-0.44769618,0.36527988,0.109735295,0.007871866,0.041426525,-0.654228,0.031506464,0.44645756,-0.25204408,-0.079257235,-0.18408753,0.28584963,0.49928206,-0.32786208,-0.57864964,-0.00844142,0.21703897,-0.08544268,-0.46699697,-0.08930599,-0.36706057,0.34453255,0.090391815,-0.28847805,-0.17205751,0.087539315,-0.43522334,0.093107104,0.26710725,-0.38683122,0.08973021,-0.30102712,-0.12080374,0.9234961,-0.17062879,0.108650714,-0.6512611,-0.35618982,-0.7097651,-0.32116538,0.32659364,0.04021185,0.049080513,-0.6129118,-0.07383104,-0.2497979,-0.12824732,-0.05046953,-0.43088073,0.50025785,0.15235186,0.4904371,-0.052194238,-0.6710453,0.20549473,0.024793053,-0.12652586,-0.5641483,0.54020065,-0.14033356,0.8256649,-0.0131118875,0.20374253,0.26401767,-0.4817716,-0.072721004,-0.32579908,-0.18521973,-0.81394434,-0.007047821 +453,0.5245703,-0.08201839,-0.6586304,-0.064208075,-0.41573185,0.0031055936,-0.37414208,0.18976943,0.3559825,-0.45080236,0.09876416,-0.17694642,0.10406109,0.09551136,-0.28538755,-0.5844292,0.108167276,0.2697509,-0.5416554,0.74780095,-0.43465084,0.21342097,0.30526957,0.21476582,-0.046224136,0.038059317,0.17018959,-0.2412751,0.03239902,-0.22765231,0.09340207,0.2490287,-0.79227096,0.3261327,-0.1562273,-0.22478461,0.14952265,-0.42039427,-0.26670346,-0.8132161,0.19812763,-0.8105845,0.5497269,0.12799379,-0.29868275,0.26817355,0.15030916,0.07069136,-0.18148647,-0.076305576,0.23980178,-0.46332213,-0.62241644,0.028445354,-0.17024197,-0.43090567,-0.63111323,-0.05502964,-0.69305265,0.12007912,-0.32159182,0.2891937,-0.35556436,-0.13400319,-0.2327074,0.42060784,-0.39045557,0.018185964,0.09238948,-0.18951699,0.3324555,-0.5485824,0.042309515,-0.100409985,0.23251823,-0.06610907,-0.22390711,0.09590115,0.21754701,0.6034562,0.10968476,-0.36051878,-0.34134573,0.023510316,0.10302345,0.34929132,-0.14899264,-0.22164658,-0.23011647,-0.05286434,0.27433845,0.21695216,0.031130398,-0.39533657,-0.02693975,-0.22826962,-0.30992705,0.5144136,0.539697,-0.31651512,-0.0686797,0.45793417,0.39071772,0.2173075,-0.18130048,0.2495891,-0.063645825,-0.5966083,-0.22338429,0.1759374,-0.06336113,0.5054342,-0.25276658,0.2896826,0.47781375,-0.07920087,-0.19669567,0.18038414,-0.06736143,0.11330678,-0.2606869,-0.12396624,0.26844743,-0.6363679,0.034749832,-0.37147546,0.7344714,-0.09133709,-0.8195401,0.4372444,-0.48618677,0.31699553,-0.14768243,0.8726258,0.9277044,0.63879687,0.2447132,0.9019914,-0.44600025,0.13372208,-0.0973467,-0.57641995,0.41677812,-0.06144604,0.3152184,-0.48684925,-0.051687777,-0.008999133,-0.0745967,-0.15726277,0.65883267,-0.34161186,-0.23585628,0.08714414,0.7128792,-0.20918925,-0.13359977,0.7081703,1.1649574,0.948965,0.26867926,1.2677182,0.29595134,-0.03566765,-0.11014276,0.0627112,-0.91261524,0.25087565,0.2673506,0.32849434,0.15481146,0.1886371,-0.001336515,0.35297123,-0.3280042,-0.23616263,-0.1256274,0.33863026,-0.25574186,-0.21480799,-0.28805804,-0.17582151,0.1683778,0.14655772,0.094391,0.25621548,-0.042238366,0.31575766,0.21661331,1.2493807,-0.22101031,-0.07648251,-0.034113046,0.33113128,0.28984305,0.13686225,-0.14112161,0.3602385,0.3163666,0.07292477,-0.5435076,0.15214317,-0.026418442,-0.45818743,-0.14583094,-0.36089686,0.020018442,-0.32211527,-0.23335396,-0.17025098,0.04860351,-0.53587496,0.3697779,-2.641309,-0.13518855,-0.028202176,0.23857869,0.057253987,-0.12132935,-0.09555433,-0.45735452,0.646739,0.3467452,0.47653526,-0.6928358,0.46024656,0.62687236,-0.5211157,-0.14675984,-0.85775155,-0.18055084,-0.24117234,0.46890873,0.17411283,-0.30373782,-0.013252854,0.19366482,0.520021,0.03960667,0.114347495,0.37641826,0.5568339,-0.061342154,0.5880571,-0.03187883,0.40389842,-0.17744796,-0.23738702,0.3341386,-0.11338846,0.28428504,-0.36304286,0.08341093,0.38711032,-0.29841033,-0.85008734,-0.48158485,-0.030030916,1.1872222,-0.40353838,-0.5928527,0.26435387,-0.11029462,-0.02638994,0.19445232,0.5084007,-0.19174977,0.00075827754,-0.85785896,-0.09978233,-0.008968894,0.27069613,0.017863095,0.07390641,-0.54919434,0.8074406,-0.088863306,0.5515696,0.4409763,0.23552716,-0.17170651,-0.54665387,0.16075289,0.93708867,0.33796427,0.052125197,-0.29892197,-0.21842201,-0.13014151,-0.103964105,-0.12656944,0.62120104,0.7139822,-0.19246408,0.109511234,0.40901747,-0.32453138,-0.027214106,-0.19290236,-0.4794354,-0.17967303,-0.09347641,0.43625125,0.73473036,-0.11454546,0.2815576,0.009120324,0.3180497,-0.11570237,-0.55246943,0.56411934,0.7679905,-0.15697111,-0.06564711,0.58687913,0.3335112,-0.11411699,0.66111606,-0.49566334,-0.37615567,0.45691362,0.030869177,-0.43741298,0.31263262,-0.43519711,0.044380814,-0.9804179,0.27782378,-0.30904618,-0.38875514,-0.5380601,-0.05222952,-3.3579717,0.13832606,-0.20495763,-0.00549025,-0.20924327,-0.11578868,0.2843185,-0.39753813,-0.62430036,0.0972433,0.27602723,0.40078434,-0.18820013,0.020752046,-0.35427108,-0.23857376,-0.2843421,0.2726706,0.071518905,0.20451555,-0.099082395,-0.50697535,-0.039801907,-0.23649143,-0.11039174,-0.09922833,-0.55076796,-0.27219453,-0.010931505,-0.4301267,-0.41187605,0.66257715,-0.3493376,-0.06025475,-0.35060695,-0.03294832,0.012084403,0.32868668,-0.16787517,0.0876589,-0.13344671,0.06575279,-0.12373192,-0.16214971,0.22042938,-0.06433644,0.046085153,0.4587337,-0.14891268,0.038266174,0.57537425,0.45763466,-0.17852198,1.0387008,0.43703502,-0.08410144,0.33081603,-0.05961436,-0.20184804,-0.72636455,-0.1781892,-0.35274604,-0.6130303,-0.30394703,0.05287259,-0.34922048,-0.8252174,0.6140782,0.08410493,0.06525555,0.036076725,0.39256412,0.48340723,-0.046628926,0.09332122,-0.15439974,-0.34854868,-0.583831,-0.26219767,-0.87977844,-0.36607352,0.07708102,0.75255024,-0.29223222,-0.12512794,0.18183093,-0.09615783,0.029708069,0.14471333,0.038492706,0.21804142,0.5157746,0.1979738,-0.7564755,0.5789042,-0.10694955,0.10565523,-0.55426955,0.16889071,0.61769474,-0.78098726,0.3600058,0.5974045,0.1156702,-0.005277949,-0.6920809,-0.26515993,-0.009446161,-0.19249359,0.59245217,0.079442434,-1.0116287,0.77747506,0.1561545,-0.22727093,-0.85977024,0.5233248,-0.014551888,-0.23111956,0.08330897,0.35615572,0.06368957,0.18030642,-0.28135473,0.12870625,-0.43334407,0.368542,0.027507136,-0.23221795,0.37834427,-0.0332377,-0.15524109,-0.8038572,-0.20055307,-0.5668208,-0.31561118,0.25623316,-0.01831678,-0.023359181,0.009404323,0.21909904,0.5090384,-0.30899793,0.1000473,-0.12647615,-0.3387421,0.482346,0.689653,0.34730884,-0.4889095,0.6519289,-0.12452966,-0.09950174,-0.16788769,-0.019346574,0.3138244,0.09835351,0.32829872,0.05357996,-0.008175281,0.17419434,0.8562374,0.13307022,0.3562434,0.1076733,0.0066555953,0.5652116,0.030460963,0.23162436,-0.3029504,-0.55358034,-0.1371275,-0.30490947,0.19749673,0.47497186,0.18612495,0.41913202,-0.06851656,-0.023586724,-0.016266672,0.16542217,0.17934133,-0.9903554,0.39611068,0.30302644,0.49011278,0.8041171,-0.07036225,0.3391957,0.6560153,-0.27451125,0.12617977,0.4126591,0.11520219,-0.21987002,0.46818447,-0.77501136,0.19916888,-0.20228294,0.1533366,0.24353728,0.08553479,0.3920901,0.8802145,-0.12049552,0.16667996,-0.14990373,-0.23991439,0.12206478,-0.2037003,0.0894968,-0.22659619,-0.41742778,0.64880717,0.47883514,0.41737917,-0.23166847,-0.0078494,0.18976314,-0.20468964,0.31493577,0.113046885,-0.10694562,-0.061610024,-0.58246034,-0.079287395,0.8198349,0.07270396,-0.13791336,0.0030924848,-0.17026709,0.2515879,-0.17940901,-0.1621217,-0.20712207,-0.7113249,-0.113209434,-0.24135697,-0.4192645,0.6580065,-0.13727951,0.19967103,0.10838751,-0.0043133325,-0.16855909,0.05761042,0.1102746,0.4293804,0.09002344,-0.18010446,-0.2472765,-0.15901318,0.17447993,-0.33737865,-0.37495413,-0.123261884,0.23558177,-0.4269125,0.33630803,-0.40573272,-0.47094208,0.19047774,-0.20096496,-0.017487247,0.508875,-0.11423655,-0.13688563,0.14497186,0.0021245736,-0.15917632,-0.32527322,-0.250211,0.1937885,-0.06106421,-0.06298326,-0.11389266,-0.047627144,-0.11549253,0.2985544,0.18696281,0.16081071,0.240517,0.22419594,-0.49965072,0.041987862,0.26244864,0.5513518,-0.048062053,-0.06803646,-0.23549286,-0.23362921,-0.2887365,0.010838747,-0.07275186,0.18489338,0.1360722,-0.36665994,0.9183095,0.19448999,0.94904655,0.03563225,-0.3953715,0.19050145,0.5023037,0.0015505062,0.0044816094,-0.28105226,0.86309004,0.5546113,-0.19169863,-0.13861682,-0.6320944,-0.16958673,0.28731355,-0.1723394,-0.0072641796,-0.02430345,-0.72117436,-0.2182009,0.276954,0.31402102,0.022592962,-0.24803235,0.042152856,0.09862275,0.16234958,0.19117914,-0.54802024,-0.04585278,0.2981186,0.26112267,-0.03466127,0.054514714,-0.4021816,0.2901205,-0.57157195,0.07517824,-0.5291835,-0.030928025,-0.043219864,-0.019461062,0.15203866,-0.17253973,0.328353,-0.27099505,-0.3520876,-0.11065634,0.5020209,0.31585482,0.26541078,0.81877136,-0.3098605,0.030677391,0.13077737,0.60680825,1.1269511,-0.24086325,-0.0823408,0.34597096,-0.25939927,-0.62768143,0.08469852,-0.4892051,0.07762111,0.04924274,-0.44217846,-0.43092498,0.012915747,0.016112361,-0.027566712,0.083067454,-0.59940594,-0.12458635,0.32397628,-0.23836528,-0.16753806,-0.22885633,0.064832635,0.9021222,-0.39738178,-0.30454394,-0.09788479,0.124496035,-0.3231067,-0.78246117,0.11469752,-0.42016152,0.29663992,0.32598257,-0.3689029,0.0922913,0.19277914,-0.66634953,0.13049577,0.38593677,-0.27225545,0.08150984,-0.39275715,0.06304329,0.90151817,-0.11364007,0.08605274,-0.46456665,-0.6692293,-0.76134235,-0.18515442,0.18661985,0.060216513,0.058578465,-0.49034002,-0.08036914,-0.28585917,-0.046365302,0.06392871,-0.6994749,0.55249894,0.07893182,0.417999,-0.15741444,-1.0486609,0.05447053,0.08828611,-0.24689402,-0.58960164,0.6138659,-0.038154453,0.7890813,0.12967882,0.052344,0.1918702,-0.6554993,0.21219574,-0.32085484,-0.11315693,-0.64228487,0.060067765 +454,0.31618056,-0.116326354,-0.43790933,0.026592294,-0.16852938,0.2903851,-0.06488991,0.3361296,0.17899303,-0.38194773,-0.195137,-0.24551177,0.11745342,0.37090656,-0.17969082,-0.3147449,-0.1084953,0.30008966,-0.429351,0.5164589,-0.13215967,0.29060358,0.06193483,0.4586723,0.09367503,0.14267541,0.057735316,-0.095672645,-0.4136822,-0.2704216,-0.107002534,0.3689852,-0.5665066,0.18464515,-0.30608973,-0.4551904,-0.06556716,-0.5276702,-0.39089197,-0.66152316,0.1938001,-0.94808465,0.6369033,0.055060677,-0.0869205,0.23328148,0.21762082,0.19607614,0.016671443,-0.022463625,0.15367484,-0.22731006,-0.08917488,-0.26464584,-0.3217711,-0.4972878,-0.51816684,-0.030972281,-0.33606955,-0.045475993,-0.21369468,0.16431443,-0.24853897,-0.0758004,-0.069339715,0.24588527,-0.38372126,0.2944179,0.21826747,-0.20206143,0.20753574,-0.49360356,-0.21479042,-0.15251873,0.28007415,-0.35132763,-0.09000896,0.2625876,0.22272332,0.44555384,-0.20564081,-0.07539102,-0.3870078,0.068240546,0.09833851,0.61720645,-0.28936478,-0.5166749,-0.070410036,0.11155999,0.24866097,0.17954822,0.10981791,-0.0780048,-0.026320558,-0.26059872,-0.080427766,0.169024,0.41434756,-0.27063158,-0.38000798,0.3658214,0.4118275,0.10207195,-0.11968238,-0.15733418,0.08424862,-0.36992428,-0.19053893,0.09261148,-0.22552936,0.5888948,-0.005003546,0.22241719,0.5276957,-0.19011827,0.1001979,-0.06936703,0.13527547,-0.018312028,-0.22624059,-0.26054016,0.29715374,-0.21648799,0.19082832,-0.10722875,0.683982,0.21027432,-0.71423435,0.34295842,-0.6360822,0.042864706,-0.022613633,0.42624733,0.5268745,0.44927496,0.2549214,0.55131346,-0.24923193,0.095884554,-0.02841021,-0.24749017,-0.004576304,-0.2221772,0.035653606,-0.49014035,0.049118597,0.10075049,-0.22031738,0.1290582,0.35478336,-0.4897781,-0.13415064,0.19810799,0.9053842,-0.2852417,-0.12774453,0.6674558,0.98919,0.73457515,-0.011596201,1.2812608,0.2751018,-0.25829512,0.05988019,-0.33834597,-0.6567523,0.15129744,0.31121135,-0.83729374,0.4684868,0.21335039,-0.092568636,0.17958508,-0.4790186,-0.058183733,-0.1505913,-0.04241815,0.09325119,-0.054430343,-0.38918695,-0.2488373,-0.13926625,-0.23001216,0.2778564,0.29206055,-0.19312511,0.3857097,0.14409539,1.7993056,-0.049558103,0.13206714,0.10939957,0.42173338,0.11371643,-0.0098933,-0.05427279,0.3901394,0.16295193,0.12893942,-0.19777201,0.06675862,-0.24727185,-0.55657274,-0.19605319,-0.13946614,-0.17304961,0.14675646,-0.3318232,-0.17085505,-0.09227367,-0.17513518,0.44890267,-2.545927,-0.083942406,-0.025004629,0.38061768,-0.3832222,-0.35333315,-0.30756122,-0.41548157,0.32188544,0.18200128,0.37564135,-0.6383391,0.21912828,0.2900447,-0.44205683,-0.25784138,-0.56491023,-0.12760928,-0.00056857296,0.18187717,-0.04180256,-0.09300632,0.1443989,0.013139104,0.32655457,-0.03971398,0.044651512,0.33680555,0.4568932,0.07868584,0.2611157,-0.10945157,0.50395113,-0.3808622,-0.25659966,0.33386973,-0.36705294,0.42276335,-0.030035572,0.08935744,0.3902431,-0.28126594,-0.75948054,-0.63471884,-0.29564166,1.1133882,-0.20299633,-0.3548536,-0.05746139,-0.105704956,-0.24679868,-0.14359619,0.5296346,-0.15433009,0.011719248,-0.8248947,0.016382392,-0.16879018,0.34541076,0.058290165,0.15535513,-0.44282365,0.56142753,-0.1578661,0.4262411,0.28097436,0.20707619,-0.24677877,-0.4679171,-0.01422743,1.0561911,0.29769093,0.21617977,-0.16957322,-0.3568282,-0.28955093,-0.07607285,0.00051372394,0.48291197,0.40915465,-0.058799833,0.046644177,0.32129553,0.07960702,0.114158385,-0.18293251,-0.27160993,-0.0662905,0.008744137,0.51818186,0.6372174,-0.29513508,0.5256497,-0.23336227,0.38141748,-0.17272829,-0.3524911,0.3687454,1.0265478,-0.18738055,-0.10291053,0.7450876,0.40575483,-0.38553157,0.35390326,-0.66569585,-0.41744247,0.28765568,-0.1291499,-0.40353116,0.18779857,-0.12918003,0.11723832,-0.9113316,0.45026478,-0.14421593,-0.19551764,-0.6658975,-0.05347339,-2.4432647,0.08889108,-0.13047719,-0.16604027,0.020579457,-0.11541498,0.1411985,-0.57114875,-0.5322057,0.15543309,0.112610884,0.49558973,-0.1369377,0.31304002,-0.16655578,-0.3851893,-0.17268144,0.26379994,0.30795035,0.35856822,-0.2421514,-0.47688326,-0.09184636,-0.031307634,-0.22671056,0.06608558,-0.7972559,-0.34399632,-0.12408701,-0.4924877,-0.15810248,0.6315827,-0.5970635,0.008107139,-0.22418468,-0.0575178,-0.16967642,0.13785253,0.0844735,0.21048376,-0.0011657849,-0.043344624,0.008943558,-0.21838193,0.4609943,0.11901299,0.2304455,0.4736473,-0.18671568,0.18356933,0.28326124,0.53666526,-0.048105605,0.75141007,0.5706664,-0.124965705,0.19918548,-0.27873427,-0.16701405,-0.55948025,-0.4112325,0.022281902,-0.41701588,-0.4413716,-0.08834733,-0.39414415,-0.8305102,0.66897666,-0.1704971,0.09821926,-0.048736814,0.36984086,0.52050745,-0.39052588,-0.059239753,0.010127522,-0.085219786,-0.48675847,-0.4710331,-0.35235733,-0.33169454,0.06653179,0.99956405,-0.16266926,0.119042285,0.13809453,-0.14668977,-0.07535104,0.12624355,0.10017408,-0.030093106,0.6662879,-0.079036355,-0.57085216,0.43233132,-0.14044479,-0.18067022,-0.61488646,0.2701798,0.5634181,-0.7527877,0.5526246,0.4644782,0.031325523,-0.18859695,-0.52187425,-0.31564596,-0.1339675,-0.1246724,0.141844,0.16446856,-0.510365,0.24382676,0.3539441,-0.3480465,-0.7363807,0.50137514,0.0167371,-0.3756929,-0.0055554197,0.29404226,0.03125069,-0.028474996,-0.19178925,0.2448199,-0.36017624,0.3000808,0.09397477,-0.15597223,0.20863827,-0.24592744,-0.09975474,-0.8301312,0.38079724,-0.35334593,-0.45353493,0.41731152,0.11098527,-0.047071,0.27880168,0.12554505,0.32367215,-0.4110822,0.0029777843,-0.015921244,-0.21484216,0.28570157,0.2170675,0.55521786,-0.5253519,0.5566521,-0.11133184,-0.26985392,0.022650795,0.016724126,0.51205176,0.012390405,0.20428261,0.1003482,-0.32179937,0.16801058,0.7010934,0.19567879,0.38750595,0.10955145,-0.06099022,0.27743393,0.06417818,0.050914086,0.02202796,-0.5972823,-0.064147666,-0.22046116,0.11620821,0.37758908,0.105744086,0.36287507,-0.2558323,-0.27652428,0.058380913,0.14082143,0.16155526,-1.0333936,0.14998674,0.01334316,0.74782956,0.32791528,0.049934857,0.12801269,0.6438045,-0.22522299,0.07583641,0.38309908,-0.1400247,-0.39074925,0.58140945,-0.58431065,0.2779295,0.004517398,0.011674159,-0.020846201,-0.047099177,0.22850081,0.81487185,-0.22221348,0.09740906,-0.01563497,-0.27044842,-0.018504636,-0.260459,0.32570282,-0.580869,-0.20549496,0.6438459,0.4430392,0.43793112,-0.21300279,0.08310955,0.06178238,-0.18944037,0.20162654,0.22537829,0.31608003,0.11935259,-0.5644312,0.0008824212,0.7268964,-0.0448745,0.0049760765,0.039014578,-0.30686074,0.26041284,-0.26477963,-0.010470403,-0.08592522,-0.6643155,-0.025716636,-0.57011193,-0.42819193,0.4364331,0.08513416,0.15215273,0.122805014,0.03491838,-0.22972319,0.48650816,0.23345329,0.83103794,0.066767626,-0.24214318,-0.25010866,0.30551872,0.23331411,-0.14789112,0.095742844,-0.110728465,0.17573152,-0.51846546,0.307152,-0.08942883,-0.22585031,-0.08614846,-0.1531249,0.1054845,0.4898696,0.11205391,-0.03765751,-0.027226636,-0.056819685,-0.48715836,-0.019161072,-0.18929422,0.09020444,0.3412682,-0.098851785,-0.1650507,-0.16328396,-0.3097546,0.32060698,-0.00958424,0.40004662,0.5994557,0.18120918,-0.21658978,-0.022302065,0.07607259,0.5314993,-0.14182876,-0.19160354,-0.3075866,-0.32737923,-0.24435234,0.30222756,-0.19653805,0.14769255,0.2000618,-0.30288342,0.88417065,-0.045472775,0.99267,0.07567153,-0.24952282,-0.06267677,0.44708714,-0.016052887,-0.039069302,-0.42172375,1.0902647,0.6223067,0.18044195,-0.0076290583,-0.089617826,-0.048242204,0.083561614,-0.22897728,-0.20316401,0.0069287247,-0.5346065,-0.2742438,0.19882563,0.30282336,0.14941724,-0.106590234,0.29320398,0.19795202,0.13088147,0.24815392,-0.4952774,-0.24995486,0.3793966,0.40943268,-0.019134032,0.25085765,-0.3406556,0.39625028,-0.39492688,-0.00040388107,-0.4479682,0.07772682,-0.14386173,-0.23159565,0.13976164,0.00047939163,0.4273145,-0.44991305,-0.28181985,-0.15842007,0.33221117,0.1732893,0.0879262,0.44940853,-0.22395824,-0.01908746,-0.013283761,0.5034514,1.1283073,-0.38298774,0.1019912,0.4199989,-0.20208745,-0.5629258,0.3835027,-0.32030708,0.17892821,-0.17321107,-0.17520557,-0.5080156,0.2568464,0.1248749,-0.10075416,-0.1333926,-0.42779508,-0.045607537,0.23743495,-0.30251804,-0.23786448,-0.23572288,0.09460856,0.52746665,-0.15074696,-0.3405002,0.17334117,0.22794403,-0.21450724,-0.38017735,-0.11019908,-0.38004285,0.07684892,0.18212487,-0.34070224,-0.20340729,-0.024889281,-0.38877004,0.0675989,0.20533194,-0.37141708,-0.043819923,-0.26596838,0.07840241,0.8794039,-0.17934923,-0.015446224,-0.49088404,-0.38505316,-0.90032345,-0.39519963,0.30505088,0.14906137,0.027363848,-0.5690642,0.032723103,-0.10124094,-0.30199438,-0.15914421,-0.33524898,0.3074856,0.23154533,0.4322137,-0.26968294,-0.68586415,0.16260715,0.011394133,-0.1468147,-0.5941094,0.35959777,0.08027729,1.0882565,-0.073947154,0.016839594,0.45006588,-0.5727411,-0.19246863,-0.10438924,-0.069787726,-0.6604322,0.08852208 +455,0.20462254,0.03321197,-0.5317203,-0.23621331,-0.08419818,0.23038629,-0.14453268,0.38850254,0.15417223,-0.61709684,0.07592409,-0.108394735,0.07956212,0.40530446,-0.13396832,-0.4908368,0.20548926,0.011341544,-0.5356576,0.3072409,-0.46656507,0.15661423,-0.12574634,0.22547671,-0.007538374,0.28641966,0.19033787,-0.3546259,-0.28909636,0.016875539,-0.1143124,0.17436512,-0.44138846,0.22036743,-0.11785289,-0.15832019,0.19704802,-0.23093328,-0.51016235,-0.5775796,0.14859827,-0.7391213,0.5059338,0.108061805,-0.11400863,0.21856005,0.1657822,0.14466214,-0.24631135,-0.06896581,0.33065414,-0.36259422,-0.2169586,-0.23173453,-0.36112276,-0.6105991,-0.55680764,-0.0497712,-0.5123871,-0.20270446,-0.3559876,0.09900213,-0.35199967,-0.18470852,-0.045826316,0.43440676,-0.37065792,-0.053863347,0.11334671,-0.30285195,0.22069001,-0.63805723,-0.102426186,0.03328534,0.37876892,-0.2949564,-0.08548416,0.40874985,0.30403677,0.49081972,0.020392152,-0.2121257,-0.360853,-0.1493307,0.122396156,0.49674144,-0.23310423,-0.46593386,-0.009094162,-0.0808252,0.08614584,0.101129904,0.016004797,-0.31800586,-0.14185928,0.2192022,-0.24444234,0.51507246,0.59303534,-0.36675748,-0.15956272,0.45380238,0.47931892,0.065539375,-0.24750963,0.043139525,-0.07821612,-0.44788218,-0.1346448,0.2715065,-0.21393606,0.40763107,-0.19334888,0.32706395,0.80573004,-0.15352729,0.043730352,0.1172201,0.115204915,-0.0084726,-0.12614438,-0.027100038,0.06116522,-0.5416563,0.12689231,-0.2707052,0.82309246,0.17722164,-0.80203545,0.41697237,-0.431546,0.076929554,0.0283725,0.5513957,0.5662924,0.39170223,0.14955114,0.7359342,-0.5762825,0.024256127,0.10878665,-0.42153722,0.13787067,-0.06801487,0.06386582,-0.5149871,-0.11778386,0.10225002,0.078992255,0.059080865,0.22115466,-0.42561898,-0.09286749,0.37897918,0.8678668,-0.34438905,-0.18896,0.29650545,1.0682299,0.7614188,0.03888011,1.1713077,0.12005932,-0.29926077,0.109364115,-0.25547424,-0.7518957,0.28648704,0.33081284,0.23686323,0.1460271,0.19487491,0.19801223,0.30036047,-0.4844949,0.104666255,-0.18218902,0.24857916,0.15308608,-0.09690582,-0.24803284,-0.24357916,0.0380853,-0.11612763,0.20106263,0.18663676,-0.17509656,0.25036412,0.20526086,1.355651,-0.05843476,0.111377835,0.049646597,0.71653754,0.11010532,0.10620683,-0.087615676,0.40676418,0.32512143,0.015391505,-0.48317465,0.029699573,-0.35020456,-0.47494096,-0.21284582,-0.4071918,-0.1590767,0.037937608,-0.45607647,-0.10274004,0.10744758,-0.530239,0.6021012,-2.852514,-0.068862855,-0.15031849,0.32604602,-0.19996616,-0.16536322,-0.08735527,-0.413322,0.45424923,0.31316376,0.41982746,-0.61445385,0.38478252,0.6102396,-0.4029772,-0.14012696,-0.67432624,-0.13832001,-0.24894652,0.23103204,0.19186516,-0.17821513,-0.06396003,0.20849654,0.4236431,-0.09541652,0.058550425,0.23195755,0.1997973,0.03766797,0.512973,-0.09409972,0.6066182,-0.2964156,-0.14536344,0.26829955,-0.49368435,0.09730513,-0.0240648,0.13737448,0.52923244,-0.09232137,-0.79526037,-0.6063923,-0.28462243,1.0733258,-0.2770674,-0.28608492,0.40906587,-0.17628439,-0.26145032,-0.12579152,0.56421787,-0.04410303,0.12428714,-0.68367606,-0.034952383,-0.09637386,0.16614243,-0.12774768,0.10761206,-0.39829472,0.77409756,-0.043865394,0.52401096,0.236659,0.18396525,-0.4127813,-0.29832342,0.020856513,0.7541253,0.19869478,0.1560353,-0.12099888,-0.25894454,-0.22458243,-0.22434609,0.13749182,0.49403995,0.5905085,-0.09616334,0.014922278,0.30239272,-0.10660629,-0.07317817,-0.16298512,-0.3614683,-0.042840745,0.1872515,0.57739055,0.45972404,-0.1827086,0.41026944,-0.14532845,0.18429706,-0.31026417,-0.39414543,0.5284667,0.599309,-0.19180237,-0.25879207,0.4069603,0.45833877,-0.28721604,0.32245514,-0.72897893,-0.38753682,0.6164113,-0.14901343,-0.5144215,-0.06930054,-0.2710375,0.18435419,-0.75937873,0.38818482,-0.19363107,-0.6827876,-0.4175304,-0.16733791,-3.5615008,-0.07266346,-0.34251684,-0.113456026,-0.05324184,0.10717155,0.23110892,-0.56806195,-0.26991352,0.12043587,0.096133016,0.6060257,0.086772576,0.021591434,-0.4031114,-0.13424285,-0.24146244,0.22746415,-0.0068872147,0.27298814,-0.06334532,-0.4346015,0.25698477,-0.22026123,-0.34621546,0.09525993,-0.52590686,-0.37817234,-0.19076847,-0.5825421,-0.40796638,0.7606606,-0.605642,0.037875872,-0.29377255,0.039510462,-0.24348356,0.386077,0.21615908,-0.0032367196,-0.041314453,-0.020740347,-0.0777269,-0.49581695,0.3650792,-0.022289345,0.36957887,0.46989962,0.04705013,-0.102271564,0.647638,0.57719916,-0.035380572,0.95500964,0.3545852,-0.033889253,0.43808392,-0.2755471,-0.20807214,-0.50108564,-0.44877085,0.11284467,-0.3736946,-0.2754564,-0.049330354,-0.34848437,-0.6794356,0.41320756,0.107283406,0.100651465,-0.0026050976,0.1372285,0.3093794,-0.23574856,-0.096487276,0.024683671,-0.17895474,-0.48119488,-0.33427528,-0.7024718,-0.52460533,0.087852105,0.886007,-0.07523038,-0.14148116,0.09092803,-0.33551598,0.16141064,0.2894042,0.16986445,0.23567311,0.50558364,-0.13719732,-0.68220145,0.5100059,-0.24097982,-0.004180342,-0.5830709,-0.0015719533,0.705516,-0.6981939,0.58462226,0.36892393,0.05357015,-0.23802952,-0.4672344,-0.2595677,-0.2097356,-0.21539171,0.2163085,-0.15063033,-0.9821431,0.44293836,0.20209742,-0.37366793,-0.49312314,0.49066895,-0.04481062,0.026454816,0.17353562,0.38594374,0.047062654,-0.1110659,-0.111548916,0.113579996,-0.50482875,0.36200455,0.33030686,0.10294598,0.43937343,-0.14775912,-0.14741485,-0.6376999,-0.3018472,-0.4483934,-0.2896116,0.25426933,0.027416382,0.17781186,0.14619151,-0.07692694,0.29908055,-0.33790976,0.12050308,-0.104310825,-0.2952424,0.3029201,0.35952976,0.35489702,-0.34222007,0.6679916,-0.024532648,0.009123698,0.020792374,0.017828953,0.5192357,0.32089314,0.43287757,0.030111184,-0.17247322,0.2634261,1.137824,0.29527515,0.4248662,0.1471967,-0.1338553,0.24279754,0.06109767,0.022255434,0.08876974,-0.49379987,-0.08345991,-0.18888076,0.17837422,0.35893154,0.10908791,0.34605545,0.007057999,-0.226248,0.030137384,0.17025311,-0.086308636,-1.328293,0.34015724,0.34972593,0.81064624,0.17656729,0.06505007,-0.018007457,0.821349,-0.17689559,0.1669743,0.14050199,-0.21662895,-0.48894623,0.6038065,-0.7515473,0.50416607,0.008305396,-0.08163362,0.040286977,0.004669509,0.2783624,0.90890396,-0.202505,0.12573524,0.07154008,-0.3234423,0.29890266,-0.40124485,0.20980957,-0.31605196,-0.27421495,0.48959488,0.48806515,0.42292634,-0.14124103,-0.027096357,-0.05073472,-0.18707392,0.17847721,-0.14909838,0.025052914,-0.1204836,-0.6245772,-0.23515725,0.4203606,0.09322602,0.29227147,0.237875,-0.0985564,0.5112985,-0.12859014,0.14943083,-0.11665017,-0.4671075,0.0873229,-0.006844797,-0.4567501,0.4990644,-0.36241907,0.43760014,0.27268124,0.0027972634,-0.10138909,0.52878326,0.3290069,0.77573395,-0.10175736,-0.20694253,-0.4637766,-0.12888396,0.10134578,-0.26759043,-0.10253294,-0.4474029,-0.07817139,-0.49155268,0.20842838,-0.23583505,-0.2204973,0.033080287,-0.2958171,0.06364461,0.6407549,-0.06452401,-0.15358461,-0.025203113,0.032861274,-0.11831548,-0.030572874,-0.2654498,0.21667962,0.094278954,0.0478274,-0.23969911,-0.3195634,-0.17609684,0.12544468,0.04230594,0.18431698,0.40654883,0.07554851,-0.23832531,0.03490217,0.19420172,0.57640225,0.14562032,-0.034113668,-0.17715561,-0.25613695,-0.2665234,0.08281155,-0.100422785,0.22581625,0.19578576,-0.38792562,0.60698825,-0.3530536,1.1264176,0.19446513,-0.26330742,-0.010087328,0.5776178,0.025333779,0.17744756,-0.3708015,0.7202214,0.41589567,-0.022760093,-0.18000586,-0.41817507,0.013819271,0.36811957,-0.08721212,-0.20042913,0.012268598,-0.78543967,-0.20956203,0.3677114,0.19164518,0.325239,-0.06068139,-0.17927395,0.18610118,0.16893479,0.54960835,-0.6359878,0.0069857496,0.29395872,0.1780088,0.07914775,0.13088927,-0.36459112,0.3918102,-0.5344804,-0.040714372,-0.17176557,0.045125734,-0.39933532,-0.20191817,0.20292547,0.035554502,0.4807911,-0.097361766,-0.23830414,-0.077619076,0.5888534,0.22249894,0.2922924,0.67962205,-0.060159948,-0.08212356,0.11226861,0.31190827,0.87261873,-0.2927482,-0.005614255,0.42406207,-0.37972468,-0.6051623,0.28598592,-0.48326555,0.22408538,-0.053402882,-0.38837764,-0.2197143,0.23941055,0.27037725,0.021197487,0.17139904,-0.54014766,-0.22218823,0.30169296,-0.4119095,-0.2929682,-0.21648143,0.13321377,0.5390128,-0.40747693,-0.09991813,0.17728603,0.27782083,-0.16739824,-0.5515629,0.0803191,-0.34185463,0.431308,0.10946699,-0.46294695,0.014413608,0.08252458,-0.3333288,0.33023474,0.23136675,-0.41470575,0.019279571,-0.095989905,-0.061842434,0.69093996,-0.07580023,0.14232771,-0.54427946,-0.325634,-0.91907275,-0.27205014,0.3067911,0.12764464,-0.121782534,-0.44579035,-0.1739386,0.0837222,-0.045511026,0.043130044,-0.50573915,0.43880266,0.061026342,0.41602057,-0.03959114,-0.86249775,0.02721847,0.15081705,-0.040635288,-0.5076919,0.52782094,-0.29128,0.827375,0.058971163,0.1287945,0.12203749,-0.35394642,0.1700858,-0.39483786,-0.27216247,-0.55045944,0.038068723 +456,0.38652596,-0.1133988,-0.43247327,-0.06558145,-0.63056165,-0.026060645,-0.33389422,-0.096490026,0.50690854,-0.25420934,-0.34419835,0.01879453,0.019440738,0.21473464,0.0039238823,-0.44042426,0.013180369,0.36495963,-0.88250595,0.89232033,-0.38906452,0.22646569,0.18968433,0.48295468,0.18807422,0.23334843,0.27069312,-0.007845449,-0.3127365,-0.30909756,0.07389222,0.116916664,-0.694039,0.36475143,-0.420042,-0.370707,-0.07980586,-0.50207955,-0.18911679,-0.8320009,0.1422134,-0.9297409,0.5759879,-0.07918256,-0.11708448,-0.17255592,0.5546504,0.26055,-0.15617207,-0.18205366,0.28587386,-0.25173357,-0.4895119,-0.29203066,0.021211147,-0.28550455,-0.43374854,-0.10370984,-0.26422197,-0.008601991,-0.33217117,0.36791816,-0.20344052,-0.022109063,-0.2688122,0.55105126,-0.30566394,0.2720514,0.23731002,-0.19287401,0.073717274,-0.60679,-0.13889907,-0.1778646,0.35832042,0.21083452,-0.21147195,0.495286,0.40106142,0.53795695,0.3408164,-0.47206408,-0.2684901,-0.080507725,0.4007216,0.36167976,-0.18101178,-0.040123034,-0.25364912,-0.04082379,0.4591597,0.26187554,0.29850572,-0.42543405,0.06174077,-0.35111418,-0.02168812,0.53213567,0.42198056,-0.124843486,-0.03900575,0.18015558,0.53115904,0.40823942,-0.3306226,-0.081713244,-0.12092821,-0.5878302,-0.07687654,0.105725765,-0.028895162,0.43601266,-0.1598515,-0.030007469,0.70035523,0.0793887,-0.23991491,0.2453995,0.26001254,0.06888007,-0.30750006,-0.3720241,0.42030653,-0.56433874,0.067885734,-0.38536358,0.43833357,-0.022205738,-0.6355809,0.2645694,-0.6578093,0.30608985,0.028476255,0.52502835,0.7936027,0.52977484,0.4105033,0.8689445,-0.2190189,0.08479243,0.0045452835,-0.31189603,0.10762138,-0.44900268,0.19295746,-0.49784133,0.10126633,-0.36381906,-0.016796289,0.07097337,0.45759362,-0.5413605,-0.32386035,0.10601783,0.6921484,-0.21718672,-0.035334524,0.9243816,1.072231,1.4094803,0.08938178,1.279983,0.244484,-0.25098553,-0.34091997,-0.087018356,-0.7072143,0.2192064,0.33378616,-0.24851583,0.22139817,-0.094682805,0.04607869,0.40582636,-0.4532601,-0.25372612,-0.13737251,0.39184555,0.09304322,-0.11331882,-0.4375989,-0.24678345,0.10931419,-0.06517453,0.31697482,0.31215662,-0.22859277,0.40508226,-0.0260191,0.9255529,-0.20852627,-0.077297546,0.10696873,0.19640996,0.2551257,-0.25036505,-0.07031714,0.10456176,0.18813096,-0.12823766,-0.40284425,0.09531482,-0.34946424,-0.42603272,-0.086089745,-0.25505528,-0.35249588,0.14723593,-0.20282291,-0.3243208,-0.1508369,-0.16980682,0.4138034,-2.2841098,-0.16088858,-0.30812663,0.32139647,-0.35062736,-0.06631526,-0.07076599,-0.50174624,0.3148499,-0.0010163427,0.5645255,-0.48278695,0.5000686,0.5473841,-0.9068156,-0.18240331,-0.68904465,-0.12850715,0.15915368,0.50743103,0.006696681,-0.1835006,-0.009951339,0.20392206,0.6202642,0.174062,0.3062073,0.7792459,0.39736283,-0.06612911,0.41798934,0.14258222,0.6096933,-0.4216255,-0.25409478,0.47023946,-0.36427832,0.61544406,-0.17413782,-0.03101296,0.847046,-0.49687755,-0.7911469,-0.5688103,-0.15815005,1.0385529,-0.28002194,-0.5835322,0.0429224,-0.2389362,-0.03937678,0.22372094,0.59433067,0.011128727,0.09625486,-0.81570536,-0.09314318,0.123022035,0.21377611,-0.05787731,-0.047937755,-0.37075073,0.96035314,-0.08946707,0.48087198,0.33159408,0.3555049,-0.34925476,-0.2906875,0.23877177,0.6491576,0.48643726,-0.018074095,-0.34123522,-0.28447813,-0.16510585,-0.36246613,0.06146807,0.7095738,0.35329637,-0.26567513,0.106397554,0.27672347,-0.07173597,-0.00036301216,-0.36763304,-0.35486168,-0.21904966,-0.06703076,0.67550385,0.9411007,0.092963606,0.4350154,-0.12364534,0.24711244,-0.024580842,-0.74072593,0.6736853,0.77851105,-0.25962368,-0.1139773,0.5919392,0.4823923,-0.32264194,0.5985718,-0.5546407,-0.45569292,0.31354347,0.057697255,-0.44880906,-0.04750829,-0.3449964,0.2073965,-0.53158647,0.49833643,-0.5553144,-0.34472924,-0.5029566,-0.12392581,-1.2863462,0.39275083,-0.19431487,-0.049033143,-0.38676843,-0.08334788,0.13909088,-0.5070597,-0.85883194,0.178924,0.14450374,0.6453213,-0.15656191,0.20513707,-0.12674192,-0.45085984,-0.061176267,0.07917584,0.20445539,0.30557278,-0.20479682,-0.32990646,-0.001207606,-0.07368041,-0.33990914,0.01728791,-0.66590947,-0.68740237,-0.08556107,-0.43614033,-0.2604451,0.48796022,-0.57347757,0.15781109,-0.381406,0.00046070566,-0.0016563535,0.1197519,-9.4572704e-07,0.4577108,0.262424,-0.09025813,0.039898,-0.02923197,0.48055094,0.09355715,0.23180316,0.34400436,-0.15454578,0.2339471,0.31891313,0.9114038,-0.2568232,1.1464275,0.27994823,-0.06547157,0.14097808,-0.17046283,-0.49817386,-0.6692442,-0.1427642,0.13108698,-0.49088925,-0.33885816,0.12743202,-0.2615112,-0.90415394,0.73049664,0.11362118,0.2918469,-0.053355694,0.014899,0.40521082,-0.2106887,-0.14203697,-0.06589849,-0.19210745,-0.5373783,-0.38445032,-0.6580792,-0.42037347,-0.088582516,0.9794144,-0.27830786,0.098095275,0.2627443,-0.40393466,0.13460384,0.094811045,-0.23756412,-0.012197224,0.5341122,0.34607905,-0.67324984,0.33989325,0.17882991,0.11660053,-0.3247728,0.5808104,0.62590504,-0.50811756,0.6441533,0.51204675,-0.00087016023,-0.2314268,-0.70831907,-0.23502807,0.024419168,-0.32251033,0.55680645,0.33069086,-0.72041285,0.33843046,0.3017244,-0.5747073,-0.8465564,0.3929339,-0.09759892,-0.21381894,-0.07659977,0.41535056,0.125344,-0.011871616,-0.1852276,0.2302927,-0.3453175,0.4507321,-0.020308161,-0.15066192,0.029226955,-0.32234222,-0.45638102,-0.93234575,0.058690075,-0.5590398,-0.41846704,0.2923414,-0.065263845,-0.19282189,0.16344097,0.4837122,0.29213133,-0.1642301,-0.015654929,-0.29868945,-0.3750435,0.30699807,0.55320895,0.5381958,-0.3697337,0.553862,0.18142526,-0.21716604,0.10934145,-0.0825383,0.19299902,0.08310738,0.45043847,0.008629203,0.06881566,0.115263104,0.67241395,0.049600624,0.23479728,-0.0385655,-0.23239651,0.42131862,-0.16439062,0.4168226,-0.2739455,-0.45671165,-0.07575991,-0.11344138,0.030472675,0.530389,0.23019342,0.25360912,0.10093,-0.21570028,0.012304133,0.051719714,-0.06899258,-1.593081,0.40461487,0.20801617,1.0149279,0.69866055,-0.053101975,-0.14291154,0.89041406,-0.2801481,-0.0492872,0.3854216,-0.09967646,-0.37107357,0.61103326,-0.6159976,0.28246826,-0.32794517,0.019518351,0.04812826,0.2370192,0.25282595,0.78026354,-0.2241903,0.13127324,-0.32507998,-0.19453172,-0.020947166,-0.19318612,0.20054843,-0.2812566,-0.6332639,0.86534894,0.44544113,0.57615906,-0.39930883,0.047249626,0.04390707,-0.2785343,0.24097733,0.12416215,-0.09997587,0.04096062,-0.4932173,0.09701422,0.5753681,-0.37142316,0.0992013,-0.06285833,-0.17981052,-0.056032136,-0.22862308,-0.14758164,-0.10736946,-0.88449633,-0.108752996,-0.2642151,-0.32111886,0.21971779,-0.13510567,-0.11353455,0.14012466,0.014114801,-0.20446461,0.41404662,0.13786131,0.74664766,0.15236965,-0.10717675,-0.0073180515,0.28936383,0.16495815,-0.0827305,0.31649157,-0.099392384,0.2182552,-0.49873984,0.64888775,-0.13773306,-0.55058473,0.10990674,-0.09060254,-0.04770026,0.3939112,-0.19397224,-0.27014688,0.11903678,-0.17264065,-0.40158752,-0.025476066,-0.16436726,0.19714803,0.25611123,-0.09863881,-0.20758978,-0.24625872,-0.29887754,0.6009659,-0.041824803,0.46043497,0.4638656,0.013036823,-0.5718468,0.2384078,0.24756359,0.6328245,0.13555962,-0.2009621,-0.42613807,-0.25378305,-0.5075559,0.54099655,-0.101689555,0.12748829,-0.13891909,-0.25083652,0.9948016,0.008753519,1.2379973,-0.031522807,-0.32789642,0.07156811,0.5213665,-0.2195357,-0.021284968,-0.39894918,0.729767,0.50289375,-0.23387899,0.10067525,-0.59302765,-0.006963515,0.27043793,-0.44612178,-0.047198612,0.0069193305,-0.5783959,-0.2610239,0.031638123,0.20184389,-0.08135513,-0.20207088,0.06001658,0.19334932,0.15496905,0.45608252,-0.7229534,-0.3634826,0.25727904,0.376427,-0.15984543,0.079179175,-0.31032807,0.2351946,-0.7162055,0.20509095,-0.27493516,0.076440066,-0.28076553,-0.403029,0.06491148,-0.04917332,0.27678463,-0.5277999,-0.31326225,-0.19575523,0.41238514,0.17242132,0.07078169,0.69682604,-0.2727445,-0.00039522848,0.36512512,0.47927582,1.0335171,-0.37659565,0.01806319,0.280091,-0.40432614,-0.5286092,0.45819512,-0.34260422,-0.11101629,-0.008958801,-0.4917565,-0.5543863,0.12511404,0.22615841,0.16935375,-0.027552279,-0.7796648,-0.008251055,0.44229928,-0.2054121,-0.12864801,-0.18535402,0.113758534,0.41845804,0.038027413,-0.39849514,-0.029646715,0.18527724,-0.3010287,-0.54849946,-0.013045875,-0.55582017,0.3379396,0.0201564,-0.34006253,-0.20995663,-0.07626111,-0.6285207,-0.056808893,0.06504829,-0.24976209,0.17004985,-0.19323249,0.14032888,0.79273385,-0.24766506,0.17427997,-0.42405784,-0.5978081,-0.8487944,-0.2043115,-0.15940197,0.14562576,-0.073762745,-0.55543005,-0.11514707,-0.16200349,-0.30290714,0.21576889,-0.58707654,0.22720197,0.3512079,0.36743814,-0.30646998,-0.94601417,0.13474433,0.17408974,0.071185656,-0.38154075,0.4283121,0.06555453,0.7962765,0.12006923,-0.16156629,-0.16575459,-0.4238098,0.23145825,-0.28775874,-0.028972857,-0.5623402,0.0934923 +457,0.6461529,-0.11692968,-0.62517256,-0.21784914,-0.21264414,0.35960105,-0.16800654,0.49234644,0.32534263,-0.37760186,-0.17044751,-0.16161726,0.04226749,0.55255824,-0.13929884,-0.858126,0.021294,-0.032687422,-0.39159,0.19244963,-0.74641275,0.3516817,-0.035351794,0.57224363,0.102099605,0.33106595,0.32323864,-0.00859492,-0.3981003,0.13762303,-0.121082425,0.29617777,-0.4605824,-0.037554562,-0.044611428,-0.4316825,0.054661036,-0.24892955,-0.32297316,-0.7022273,0.42654085,-0.96625835,0.5449589,-0.028565267,-0.4111537,0.1492524,-0.07204083,0.1541573,-0.29856214,0.100862116,0.20342481,-0.2646384,0.02502209,-0.27228522,-0.47133312,-0.7908845,-0.5971925,0.082893066,-0.5534316,-0.22126609,-0.29120815,0.27918062,-0.22582145,0.030852938,-0.18753654,0.22205722,-0.37071776,-0.21906237,0.40523908,-0.28023136,0.22267084,-0.3723527,-0.14477144,-0.1091427,0.22578174,-0.061547566,-0.112466566,0.12888461,0.38648164,0.642127,-0.0013573306,-0.19945775,-0.3726236,0.13681848,0.16827798,0.5243447,-0.23366976,-0.60310066,-0.40078446,-0.19593243,0.22432764,0.12826115,0.17517543,-0.23143673,0.2829943,0.32642925,-0.19946043,0.50371563,0.5687488,-0.3925643,-0.27776775,0.3949697,0.5634727,-0.06566115,-0.12971656,0.09445083,-0.06116088,-0.5769618,-0.21795712,0.15947883,0.022673195,0.7396958,-0.17201914,0.2274661,0.8703559,-0.14081691,0.13153593,-0.1750701,-0.09633859,-0.1920336,-0.16445784,-0.040380284,0.09114441,-0.40388528,-0.09674117,-0.28154576,0.7769776,0.26597133,-0.729873,0.49011073,-0.32703698,0.11381122,-0.12195516,0.6027723,0.63189334,0.2415687,0.16426836,0.95520824,-0.7959345,0.021055585,0.09055189,-0.42790642,0.1737317,-0.1849848,0.15341282,-0.32979903,0.14740764,0.14575644,-0.16186243,0.014395486,0.62321615,-0.5016223,-0.09168017,-0.018895427,0.8385742,-0.5557001,-0.20356049,0.72937155,1.094431,0.8585537,0.0027479727,1.542974,0.5656689,-0.2168296,0.13305669,-0.43102375,-0.59574944,0.36172888,0.2815059,-0.053778425,0.4392778,0.19890843,0.107913055,0.61398524,-0.15252255,0.053855956,-0.07550695,0.2368777,0.04382522,-0.11895424,-0.39875567,-0.056857605,0.13776524,-0.015751222,0.3235349,0.22277965,-0.27653968,0.42675424,-0.105113685,1.6674813,-0.1316368,0.031241506,-0.218774,0.42515612,0.19985045,-0.12556864,-0.02240479,0.3455352,0.2985334,-0.0013121702,-0.560492,-0.03082273,-0.33922216,-0.53531003,-0.29302308,-0.3862802,-0.07721744,-0.068104945,-0.37023333,-0.041469816,0.07633634,-0.27807644,0.4834857,-2.2116597,-0.3678908,-0.16802196,0.38806048,-0.2339197,-0.4064114,-0.22173695,-0.36392593,0.24326777,0.5799876,0.37207413,-0.67158175,0.35693732,0.30877402,-0.14374492,-0.16362242,-0.60149574,0.16765134,-0.1194397,0.46153903,-0.04436924,-0.23316194,-0.18996894,0.42747214,0.6331536,0.18420541,0.05213892,0.09724253,0.77367586,0.028733455,0.4710193,0.15669492,0.7107311,-0.2455409,-0.14721681,0.5328854,-0.6768108,0.44638622,-0.01925508,0.34693012,0.3337172,-0.5185345,-1.0277421,-0.77684873,-0.25303903,1.1418155,-0.27624083,-0.3940351,0.28276643,-0.11877168,-0.42681885,0.015647948,0.4338697,-0.13080075,-0.029544959,-0.85386306,-0.0671067,-0.0036809247,0.08054734,-0.059709176,0.24315028,-0.27440897,0.7316434,-0.22864544,0.32193124,0.26116827,0.16177468,-0.14238529,-0.54940313,-0.030381752,1.0280737,0.33364853,0.22659814,-0.16659276,-0.22138286,-0.29895917,-0.13683604,0.15318029,0.515906,0.8986294,0.19117542,0.055264186,0.32748428,-0.11772651,-0.18060589,0.00044321516,-0.4682819,-0.013759136,0.0075508556,0.6600232,0.75381607,-0.37084332,0.36569712,-0.31762594,0.35444525,-0.2529079,-0.41929957,0.6395035,0.8577559,-0.3108202,-0.15924098,0.635242,0.2601073,-0.6907219,0.51292676,-0.7758047,-0.3319423,0.6557979,-0.034678858,-0.47407508,0.06356703,-0.34954008,-0.016187442,-1.0838364,0.3386536,0.08808068,-0.56684196,-0.46383265,-0.27077404,-4.4372888,0.16273981,-0.16697401,-0.10641,-0.08567864,-0.07119086,0.36271158,-0.6274317,-0.56230164,0.021799749,-0.038832147,0.4461671,0.059042573,0.319542,-0.48070955,0.03239631,-0.22881205,0.25163004,0.16482951,0.27228367,0.027374068,-0.47385767,0.14635521,-0.37721792,-0.4234302,0.034915134,-0.61546594,-0.66034216,-0.19923873,-0.4790989,-0.22085941,0.77678066,-0.47992852,-0.07777298,-0.40771067,0.04379117,-0.35552844,0.42910227,0.07061424,0.045268606,0.22784609,-0.08717712,-0.10379502,-0.41308522,0.11351415,0.1298737,0.33523235,0.46436062,-0.21849544,0.10081446,0.67203206,0.7790799,0.07277699,0.6684994,0.2214927,-0.00047649443,0.36235118,-0.37478194,-0.10601765,-0.63995916,-0.5495529,-0.22446515,-0.53038245,-0.6459742,-0.2370062,-0.45360705,-0.82202154,0.3494602,0.01703309,0.23661543,-0.14065926,0.3392773,0.48325858,-0.20952213,0.035937514,-0.14191249,-0.2684758,-0.7259197,-0.4004139,-0.5340921,-0.8234647,0.4880711,0.935381,-0.11348482,-0.18129216,0.0054742596,-0.36972532,0.10843035,0.08322682,0.056530625,0.036970954,0.350029,-0.17423661,-0.72690123,0.40121257,-0.23446257,-0.10737654,-0.7172561,-0.11648149,0.82414055,-0.70930386,0.71175903,0.50889415,0.22930777,0.36782086,-0.46437764,-0.34985527,0.09500649,-0.16524924,0.6160762,0.22599381,-0.58788013,0.4746214,0.31240103,-0.16634507,-0.69078094,0.39794818,0.029492103,-0.106366456,0.09860661,0.42454028,0.06949078,-0.09951931,-0.39648852,0.1269617,-0.6042112,0.23279245,0.5553073,0.2586479,0.4594239,-0.09671497,-0.29365972,-0.66537017,-0.2288096,-0.59461564,-0.17052688,0.04273206,0.030750299,0.12673792,-0.02323846,0.10904261,0.40884113,-0.463473,0.15601662,0.091610186,-0.30325508,0.35061225,0.48402616,0.35891104,-0.54786927,0.42557105,0.097217225,-0.04965448,-0.0011617094,-0.02478137,0.5503008,0.42744246,0.33146688,0.20245339,-0.048112106,0.33404532,0.67718405,0.21072932,0.49884796,0.38046268,-0.42086568,0.36587867,0.26437172,0.20208776,0.05450428,-0.41767797,-0.07526436,0.042114988,0.25747198,0.42616722,0.16917461,0.35700512,-0.03938591,-0.1810884,0.28601316,0.05506146,-0.20691116,-0.92042345,0.21804023,0.23519528,0.7044327,0.38192573,-0.15631437,0.09751556,0.31973565,-0.22635464,0.13513285,0.36605525,0.05504181,-0.7148218,0.58862436,-0.5509373,0.2998725,-0.31184325,0.10784122,0.03557214,0.30542782,0.52894783,0.9317439,-0.02289736,0.09311381,-0.09432449,-0.09344485,0.08143835,-0.34907207,0.12126372,-0.6156152,-0.24482512,0.6343592,0.45089516,0.3989286,-0.2730018,-0.20061584,-0.0135495765,-0.0066219023,0.030694218,-0.21517341,0.08114689,-0.12810679,-0.86830693,-0.53114706,0.5508509,0.37234282,0.09687062,-0.04539506,-0.5395456,0.38758394,-0.34318212,-0.13335562,0.14935516,-0.6167969,-0.18289919,-0.2326281,-0.72518975,0.40343705,-0.28899738,0.18536325,0.26103902,0.08774996,-0.3920069,0.10219181,0.117000334,0.8762587,0.16278844,-0.27086642,-0.51610357,0.119333744,0.45874822,-0.49061725,-0.13223962,-0.43198428,0.032047484,-0.44233048,0.52525693,-0.04885775,-0.45449948,0.039372683,-0.18254876,0.072149046,0.54518855,-0.3868492,-0.26210627,0.3047277,-0.008075605,-0.19150357,-0.071200885,-0.35616156,0.28538898,-0.08898923,-0.14729412,-0.022285879,-0.096265465,0.04173219,0.33624876,0.15837581,0.18355854,0.59412414,0.072142646,-0.348024,-0.11069258,0.08967384,0.40068075,0.19154526,-0.18502341,-0.3513513,-0.585367,-0.3379279,0.15421005,-0.24251588,0.07122505,0.20574541,-0.4500905,0.7899187,0.1481746,1.3761716,0.14682426,-0.38470516,-0.04482514,0.6053011,0.22369987,0.16648829,-0.6266274,1.05053,0.52274674,-0.34380195,-0.20974214,-0.52703923,-0.40741596,0.37693286,-0.36911237,-0.14277564,-0.33464384,-0.9800842,-0.18016534,0.27422085,0.3579978,0.1329404,0.037133355,0.37731346,0.111111045,0.14168279,0.53597564,-0.5196384,-0.18557103,0.35105157,0.26580614,-0.07710827,0.018507808,-0.25538588,0.40088844,-0.69932896,0.017541463,-0.51469505,0.05154489,-0.058138404,-0.46146086,0.23105021,0.06505097,0.2817432,-0.35950637,-0.4066038,-0.2504898,0.7962883,0.40264452,0.3002684,0.6646106,-0.2506226,-0.24564202,0.16977102,0.5577689,1.580574,-0.10333664,0.24687566,0.44964418,-0.30082527,-0.74910396,0.30696753,-0.39209807,0.22328727,-0.18805617,-0.55153376,-0.5611967,0.3905177,0.17090963,-0.1908922,0.047280055,-0.3595145,-0.1476493,0.4325087,-0.4437991,-0.2791613,-0.18425727,0.24463056,0.7772861,-0.6198965,-0.34359264,-0.010237713,0.57569605,-0.40256128,-0.5442157,-0.038262192,-0.2830646,0.62888604,0.17576212,-0.39913702,0.04897939,0.0827174,-0.4119614,0.36065945,0.33166304,-0.43451008,0.19993202,-0.3486835,-0.14700407,1.0095433,0.20641679,0.04817618,-0.9701398,-0.3145707,-1.0763398,-0.39890042,0.1499334,0.13323738,-0.10557572,-0.43933627,0.028667452,-0.114827424,0.050470978,0.17829712,-0.6132206,0.4463495,-0.016683215,0.74273103,0.001834297,-0.994281,-0.201694,0.3118367,-0.32032105,-0.6916971,0.63456583,-0.34533465,0.75619966,0.12285773,0.2788315,0.31818378,-0.58324283,0.29036734,-0.47256526,-0.18216431,-0.8220169,0.20711039 +458,0.3635993,-0.31528375,-0.31806636,-0.12502895,-0.06681312,-0.079418115,-0.06491435,0.7151827,0.29666474,-0.48275304,-0.20388012,-0.07203819,0.0029575874,0.38116026,-0.07638203,-0.44215536,-0.019655282,0.22299655,-0.42752528,0.48243752,-0.4782711,0.1326068,-0.057572234,0.49738005,0.24056323,0.10706382,0.04384719,-0.09815142,-0.19216911,-0.16075122,-0.025102785,0.2922058,-0.4901563,0.30845463,-0.2675817,-0.40128875,-0.16767173,-0.8030606,-0.44071946,-0.7511861,0.22574656,-0.729902,0.4927794,0.0021619946,-0.20091183,0.23381376,-0.050522882,0.23170024,-0.20042832,-0.120734245,0.24243791,-0.0585487,-0.119763434,-0.00072916347,-0.094862126,-0.18620308,-0.6160129,0.06548538,-0.34302375,0.015088809,-0.32095546,0.08559764,-0.32445112,-0.068332486,0.031994563,0.4142375,-0.4218706,-0.06205109,-0.028512567,-0.024730345,0.3092815,-0.4842113,-0.1932121,-0.14647667,0.32803392,-0.26586023,-0.32317522,0.27871087,0.26416174,0.39054775,-0.13146032,-0.017980209,-0.2502557,0.12248274,0.18394864,0.60208154,-0.1923505,-0.6387957,-0.15126006,-0.0870007,0.12171022,0.18860507,0.025432209,-0.23433824,-0.09726692,0.012386878,-0.19410627,0.47322857,0.5369393,-0.12489218,-0.27863327,0.36255383,0.45031774,0.28976128,-0.06346089,0.010672058,0.09156537,-0.5862258,-0.16566825,-0.042818833,-0.21787398,0.47259414,-0.18101026,0.29791602,0.6446554,-0.13338147,0.054201275,0.14947772,0.046246413,-0.109280884,-0.19494243,-0.16638063,0.17419563,-0.45368817,0.23040032,-0.16744919,0.7883374,0.15374847,-0.7410593,0.37938473,-0.54023796,0.14092585,-0.109874964,0.5036528,0.84690934,0.30793762,0.4485396,0.6337326,-0.36806825,0.07924803,-0.021665744,-0.40946662,0.03119246,-0.27165768,0.017574051,-0.4980215,-0.21255386,0.03708598,-0.17060052,0.16789939,0.4475534,-0.5168516,-0.12825762,0.116341054,0.72587186,-0.2288961,-0.13419773,0.9774968,1.06844,1.0963894,0.024905002,1.2139114,0.14308184,-0.13143285,0.25452372,-0.22898443,-0.79584765,0.29131404,0.33555523,-0.11460888,0.07407963,0.1772887,-0.08606553,0.39747226,-0.60510826,0.010349358,-0.14885305,0.19177318,0.019574502,-0.14993559,-0.539887,-0.45521328,-0.26690516,0.08640926,-0.004295071,0.24342608,-0.28199044,0.4392732,-0.020781994,1.648171,-0.030211389,0.042415038,-0.10175339,0.58252656,0.15183644,-0.27243435,-0.2811034,0.13893451,0.46873245,0.04177658,-0.55317473,0.17399447,-0.18145446,-0.2855639,-0.050389152,-0.33720174,-0.106408656,-0.1435717,-0.39493135,-0.08048051,-0.037558753,-0.46182215,0.559717,-2.8758032,-0.29587683,0.0050209314,0.30089578,-0.14670646,-0.32182112,-0.19501863,-0.45544264,0.49243656,0.27971956,0.5878172,-0.6230073,0.2501367,0.4229865,-0.5991423,-0.12530543,-0.6946972,-0.10460528,0.03946564,0.3555689,0.09873643,0.097668566,0.10566327,0.021794787,0.5348813,0.13709699,0.11813123,0.25178578,0.39683926,-0.07300681,0.41301623,-0.15396397,0.54310495,-0.3186241,-0.19133711,0.29092526,-0.35401025,0.3190376,-0.41016972,0.13826859,0.45800304,-0.4567779,-1.0472254,-0.62008315,-0.34603086,1.170278,-0.09570793,-0.25180137,0.282949,-0.36133638,-0.16049995,-0.00741378,0.69024485,-0.15845752,-0.09277586,-0.7483194,-0.121550106,-0.026681691,-0.035725314,-0.07046413,-0.033162307,-0.5056512,0.53651863,-0.008219724,0.44059452,0.31054413,0.22436662,-0.21421759,-0.43534088,0.13169432,0.8825412,0.348946,0.21001054,-0.27222332,-0.049354147,-0.4202118,-0.09480729,0.0027081731,0.548628,0.64486223,-0.1050967,0.20579605,0.25249684,0.19831936,0.08404052,-0.052833606,-0.1795891,-0.21039887,-0.013299475,0.5962742,0.7574766,-0.11292698,0.51725966,-0.051321805,0.06424846,-0.21286444,-0.3872241,0.4923921,0.7719738,-0.115697734,-0.066028796,0.6240189,0.4591715,-0.061872292,0.41925952,-0.43455768,-0.3117056,0.37866583,-0.15833108,-0.4991496,0.16208975,-0.23839758,0.026396802,-0.86225414,0.36879525,-0.23734789,-0.7504938,-0.5718162,0.04506007,-3.11481,0.1239754,-0.15931764,-0.2807682,-0.12132612,-0.2712542,0.2038755,-0.5290111,-0.6007126,0.25294277,-0.012616299,0.77596515,-0.14195336,0.05979991,-0.2495591,-0.1659774,-0.45413804,-0.0052198023,0.0490322,0.45556578,0.07189641,-0.36415246,-0.08677465,-0.25364533,-0.46717033,0.08587727,-0.63321584,-0.47199655,-0.043666374,-0.52695626,-0.39032102,0.73502237,-0.30801752,0.02714228,-0.19273357,-0.010732651,-0.1837867,0.46398512,0.084907465,0.13623863,0.018821849,-0.18123977,0.039845586,-0.11946244,0.418296,0.1302296,0.21897954,0.3650274,-0.24002719,0.30200684,0.5288845,0.6929254,-0.23245107,1.0485889,0.5547174,-0.16900033,0.11095103,-0.30077112,-0.27164507,-0.41474044,-0.31595814,0.09047922,-0.4053963,-0.55489665,-0.11173701,-0.34029174,-0.84446317,0.44910645,0.058980092,0.32138792,-0.013896805,-0.14475642,0.3944234,-0.2445964,-0.0023776118,-0.091507934,0.0100065665,-0.52747977,-0.21641646,-0.6947155,-0.547938,0.082009815,0.98667675,-0.12695673,-0.016162673,0.14334835,-0.31693718,0.012905109,0.048759002,-0.1646752,0.06423869,0.2447031,-0.056905765,-0.7137067,0.4977902,-0.013613194,-0.13950478,-0.5861749,0.24710435,0.6439805,-0.57856506,0.53481764,0.46892658,-0.013457959,-0.120032676,-0.51102155,-0.30560485,-0.22905983,-0.06868679,0.31450534,0.22211313,-0.8569071,0.42802787,0.32278252,-0.29366845,-0.8233838,0.49689326,0.008090851,-0.036462646,0.022556761,0.3146645,0.1763181,0.021407137,-0.25301048,0.367771,-0.42387915,0.5809398,0.041760176,-0.015840987,0.29268834,-0.19621031,-0.033679496,-0.6950863,-0.038730007,-0.5830239,-0.26195264,0.18624544,0.087812744,0.19022517,0.13285163,0.1261748,0.256376,-0.30831316,0.07180204,0.0033703148,-0.3561726,0.1438656,0.5304268,0.613196,-0.3316126,0.6140347,0.105798036,-0.07921261,0.071614675,0.13802059,0.3278061,0.08705357,0.40470755,-0.069494106,-0.32156584,0.12003202,0.88228273,0.17876203,0.33219746,-0.041092686,-0.18753405,0.20485966,0.11659413,0.4067417,0.045756686,-0.5816106,0.11286188,-0.3684287,0.19732141,0.42822647,0.17469136,0.16736549,-0.029480522,-0.40531504,-0.046984717,0.26162422,-0.00427104,-1.5518737,0.50960714,0.28031817,0.9518607,0.48579112,0.03397273,0.063501574,0.7088435,0.009310037,0.13584848,0.39432564,0.017427072,-0.53982383,0.5652984,-0.8533945,0.5908039,0.012662083,-0.0025314193,0.052753255,-0.17070235,0.4415531,0.6232115,-0.1538292,0.08394074,-0.027185967,-0.30973604,0.19855703,-0.44828764,0.16960211,-0.65685785,-0.19780447,0.7249424,0.67156833,0.14423244,-0.08148653,0.06531957,0.022875557,-0.103579044,0.022679828,0.10018453,0.091531634,0.018589618,-0.89654493,-0.047721874,0.4913379,-0.14466985,0.24754329,0.033476487,-0.080856405,0.20448153,-0.26119173,-0.099999525,-0.08895627,-0.74278545,-0.1104289,-0.402526,-0.23145859,0.38489938,-0.25367704,0.30036458,0.20310558,0.12495468,-0.09439912,0.40852013,0.0705777,0.77503806,-0.007849147,-0.24570847,-0.39695215,0.28336775,0.21218853,-0.18790686,-0.16240981,-0.2167328,-0.18412836,-0.41681066,0.5203541,-0.031487525,-0.2972783,0.23431651,-0.051286813,0.104571044,0.567519,-0.059489056,-0.037485197,-0.15913509,-0.11950368,-0.28248814,0.053642858,-0.107940495,0.36441445,0.41928712,0.015992576,-0.09196654,-0.045382846,-0.24594255,0.34839115,0.0336782,0.40912804,0.24466719,0.18866281,-0.2740973,-0.19978328,0.25250453,0.5768519,0.062103868,-0.12945999,-0.29360434,-0.28574407,-0.38315263,-0.0074032843,-0.20303774,0.41419676,0.06727322,-0.0897102,0.43179384,-6.406506e-05,1.0238439,0.16247864,-0.36645913,0.18789184,0.44681087,-0.004226332,-0.21870889,-0.3877987,0.87451106,0.33892965,-0.1758727,-0.022097737,-0.3921446,-0.05560699,0.33541012,-0.2122035,-0.3638549,0.045903247,-0.71529096,-0.17189221,0.25118187,0.21423535,0.22478063,-0.08058824,0.008462508,0.4510335,0.04241531,0.2815331,-0.45504078,-0.22336411,0.40911487,0.4012799,-0.005266145,0.15714167,-0.35455287,0.32547605,-0.43808174,0.063882686,-0.1675244,0.1963477,-0.4464798,-0.34532967,0.26587796,0.22619112,0.49539974,-0.104796976,-0.382138,-0.24971318,0.44786,0.10100556,0.14858986,0.48164794,-0.28875193,-0.042100668,-0.054393813,0.3529614,0.89062786,-0.3239548,0.027879447,0.5473497,-0.22066064,-0.5003029,0.4136515,-0.3070616,0.34156188,0.014538705,-0.19715965,-0.6185393,0.24669844,0.05645923,0.057661917,0.1017315,-0.61581326,-0.08460379,0.2923527,-0.08749872,-0.29373398,-0.47925982,-0.015482977,0.5493984,-0.35277796,-0.45143282,0.21345524,0.17800517,-0.17811923,-0.5865176,-0.048293322,-0.42799103,0.14930119,-0.02691035,-0.4587845,-0.19471914,-0.16362451,-0.4308082,0.26517832,-0.084797055,-0.31445256,0.1319681,-0.20338076,-0.035860613,1.1151694,-0.35739723,0.3052142,-0.5112731,-0.4754497,-0.72019404,-0.249839,0.48484865,0.25705734,-0.18014045,-0.5589376,0.0051656864,-0.04352792,-0.1776856,-0.12698518,-0.43798876,0.4574122,0.08776284,0.35005483,-0.14754525,-0.7809749,0.2099812,0.20761992,-0.14405556,-0.62161094,0.43620014,0.07218022,0.7842862,0.06431954,0.11533982,0.15969527,-0.30428126,-0.16772467,-0.2047341,-0.12141351,-0.5358451,0.12019112 +459,0.46886176,-0.20655255,-0.50999033,-0.091684714,-0.6117102,0.2628128,-0.27889287,0.14959493,0.31676427,-0.102021545,0.0009845495,0.07542877,-0.2813149,0.10118657,-0.033966456,-0.76311255,0.017253434,0.17665136,-0.8920032,0.744076,-0.22363731,0.4140101,-0.04420373,0.31545222,0.3223034,0.30333897,-0.07330459,0.17331488,-0.07672019,-0.34821,-0.1779687,0.18228498,-0.8017271,0.35697597,-0.17195912,-0.40947077,-0.20928656,-0.47712898,-0.40577838,-0.85139036,0.37212974,-0.8813901,0.62935936,-0.07161838,-0.39397725,-0.10620861,0.23227058,0.27693313,-0.031708367,0.016603947,0.24329174,-0.31553406,-0.091291174,-0.262283,-0.19172777,-0.363216,-0.537453,-0.12543283,-0.46770066,-0.033845823,-0.21627282,0.28339833,-0.2535229,-0.056898817,-0.40039742,0.33827555,-0.35090846,0.401268,0.18362041,-0.17732322,-0.011755854,-0.50617224,-0.10181446,-0.22773688,0.25630015,0.1926043,-0.35899085,0.53880864,0.14298989,0.6441521,0.31087554,-0.34843552,-0.15738031,-0.13525237,0.05363472,0.38265058,-0.11683048,0.04954748,-0.42046145,-0.089656994,0.6351906,0.25064075,0.036209546,-0.33580002,0.057252493,-0.28727943,0.028154664,0.48050198,0.4894942,-0.18709736,-0.008874422,0.28924564,0.5340191,0.30396247,-0.34216374,0.22500226,-0.17352013,-0.26117414,-0.22058612,0.352058,-0.07028316,0.37794134,-0.08020733,-0.008578233,0.5954622,-0.098250926,-0.17038958,0.05121132,-0.03517825,0.10502272,-0.33224568,-0.18408865,0.26997474,-0.5671518,0.2018272,-0.29931185,0.5525721,0.16025999,-0.7326907,0.32136112,-0.61770296,0.22358626,0.04515131,0.65415835,1.0332575,0.66650796,0.08271735,0.921232,-0.22166233,0.16777661,-0.04476242,-0.044198558,-0.03138814,-0.13331935,0.14486621,-0.43219256,0.14739797,-0.3078986,-0.13846162,-0.032005645,0.29609054,-0.4280653,-0.24950144,-0.06652584,0.5531924,-0.29108217,0.10532327,1.0396514,0.8870115,1.0604074,0.12585822,1.1074481,0.28849345,-0.1441488,-0.3450408,-0.011246502,-0.55182517,0.10488926,0.19734108,0.13474168,0.4076566,0.10471556,0.0060066204,0.30267012,-0.47234344,-0.13394302,-0.022720568,0.16891298,-0.12038049,-0.006131809,-0.57119733,-0.35657632,0.33671027,0.059329856,0.06947389,0.3066061,-0.32580233,0.64689314,0.26740927,0.964986,-0.0241917,0.026475018,0.034223735,0.21351886,0.17475225,-0.3390891,-0.059296794,0.31995514,0.393807,-0.14405191,-0.554615,0.03080492,-0.29182273,-0.33386794,-0.17498414,-0.31902707,-0.27235204,-0.2288419,-0.42522424,-0.37654865,-0.029647658,-0.34382543,0.50793135,-2.3886003,-0.22078533,-0.1457524,0.22622968,-0.18250349,-0.21984738,-0.2313622,-0.49980488,0.21249992,0.20554551,0.32548457,-0.63742256,0.41478813,0.45416957,-0.5692861,0.07783819,-0.62225807,-0.015067632,0.12843308,0.37161618,-0.12410718,-0.09399946,-0.16310269,0.2332623,0.5950802,0.07391339,0.08105283,0.45221916,0.3982715,-0.17795531,0.29914337,0.08253026,0.57533634,-0.3870215,-0.20850152,0.61741877,-0.3889907,0.4340052,-0.023927048,0.05173829,0.5640541,-0.5469965,-0.5005992,-0.46264893,-0.26607218,1.1591502,-0.42969358,-0.67663187,0.0055969283,-0.18015185,-0.13755485,0.104336776,0.5220637,-0.12518571,0.011313468,-0.61198556,-0.19211906,-0.08848479,0.32130224,-0.289301,0.14334121,-0.39762446,0.76925296,-0.16406712,0.5200963,0.3027515,0.14335637,-0.18731563,-0.50638455,0.19042102,0.7232338,0.63467395,0.14935116,-0.2643792,-0.15592343,-0.19731995,-0.25731575,0.11218402,0.8499235,0.5055918,-0.1701633,0.09573589,0.44663867,-0.15683128,0.10172094,-0.24061377,-0.27924734,-0.29747775,0.084636696,0.57744277,0.5770315,0.11704992,0.34316203,-0.11108298,0.28906995,-0.043394007,-0.5903817,0.44161737,0.8114864,-0.31164923,-0.2756066,0.52915865,0.3985632,-0.33423448,0.45148587,-0.64990306,-0.25434038,0.56155676,0.058348946,-0.50515485,0.16338195,-0.25033906,0.19153607,-0.75722194,0.2695418,-0.3877699,-0.7213433,-0.5207279,-0.011708781,-2.3797355,0.21107852,-0.20523071,-0.050167456,-0.37669456,-0.3577396,0.29974544,-0.36548576,-0.698448,0.037028372,0.06115564,0.5467737,-0.13448334,0.09694365,-0.2700869,-0.29653558,-0.30878085,0.28260642,0.25704625,0.34804815,-0.39029068,-0.21492733,-0.044647567,-0.13189794,-0.38889682,-0.19838521,-0.76379144,-0.3953436,-0.09856067,-0.58361685,-0.20924537,0.6296425,-0.43084145,0.011640493,-0.37923068,-0.084923364,-0.00080077536,0.1292639,0.28939056,0.32184982,0.25271288,-0.13207254,-0.10916183,-0.18825254,0.16628619,0.04009492,0.17864084,0.23787948,-0.18701313,0.4070589,0.32545185,0.7779696,-0.08435931,0.7948605,0.22701585,-0.17854714,0.4801583,-0.21620616,-0.49816066,-0.797575,-0.14934686,-0.07448462,-0.48374826,-0.37420994,-0.122389644,-0.35150313,-0.99809265,0.4224238,0.22121009,0.34065726,-0.038872786,0.32491693,0.44156373,-0.108274266,0.082623154,-0.12349582,-0.3648678,-0.3679552,-0.47154787,-0.6003752,-0.5963631,-0.03933434,1.1611147,-0.14412841,0.10559121,0.32444012,-0.374062,0.25224802,0.19560789,0.14763528,0.116327584,0.5172022,0.10405861,-0.39845386,0.39345366,-0.09014063,-0.010471076,-0.4672583,0.24274948,0.82872957,-0.6158184,0.48640653,0.29636782,0.12203072,-0.32472527,-0.7794804,-0.06469601,0.023532568,-0.2793076,0.5694411,0.40213093,-0.4679209,0.4906779,0.112300634,0.07244401,-0.66817695,0.47080886,0.0064621232,-0.27165776,0.10076037,0.5386171,-0.17163955,-0.09752088,0.14096266,0.18777114,-0.30976984,0.3383814,0.2802763,-0.21120085,0.033425823,-0.00033577532,-0.38610232,-0.697481,0.17300484,-0.7048975,-0.3848189,0.17472482,-0.0324132,0.029775828,0.1289978,0.20848833,0.5554772,-0.17272994,0.16322048,-0.27968764,-0.30120388,0.45592597,0.5264445,0.35996258,-0.46585986,0.6922707,0.1968065,0.034620192,0.10238805,0.30961472,0.53652024,0.048733346,0.41578358,-0.028721306,-0.029897474,-0.0028775334,0.5609308,0.21152736,0.35667658,0.020320268,-0.13815114,0.16016775,0.16408563,0.42593062,-0.18302998,-0.34519294,-0.014172355,-0.037279606,0.08124477,0.50382566,0.20284235,0.30233282,-0.027127005,-0.014354702,0.14541754,0.017427877,-0.26564714,-1.5171356,0.2708916,0.36185396,0.8583473,0.38602275,0.15061918,-0.027115352,0.54867643,-0.4412812,-0.043909512,0.42532903,0.019211173,-0.22735694,0.4449415,-0.6188072,0.373653,-0.17138694,-0.027756238,0.33340287,0.19937128,0.49972457,0.82977647,-0.2511179,-0.021619149,-0.047222972,-0.29078287,0.13417923,-0.1502394,0.14651722,-0.38067457,-0.5426479,0.68652946,0.36158428,0.3767004,-0.4793347,0.060959864,-0.14769778,-0.1991888,0.16431232,-0.0046870485,-0.08592844,-0.22099844,-0.43464708,-0.23959842,0.531531,-0.34190017,-0.10393067,0.1471878,-0.29622534,0.13738012,0.0069154277,0.07875419,-0.08100857,-0.7727102,0.1909784,-0.41004676,-0.33747077,0.3090287,-0.35422623,0.0519716,0.29916286,-0.016226143,-0.27408963,0.28742123,0.05808003,0.74948597,0.009360317,-0.07346876,-0.0826694,0.34537196,0.26137242,-0.26547295,0.012563869,-0.13660105,0.26527187,-0.56638473,0.32828853,-0.24084266,-0.3646009,0.112566866,-0.16475895,-0.10539009,0.3488528,-0.2537709,-0.11356455,0.13595521,-0.031183109,-0.42852852,-0.16855729,-0.3009556,0.18222478,0.17783208,-0.12281355,-0.09406081,-0.0026154341,-0.14067496,0.3403713,0.13077456,0.27968284,0.46904147,-0.05163886,-0.5643316,0.20400469,0.111629665,0.3802846,0.07557195,0.0034927614,-0.18200406,-0.21687928,-0.428573,0.6985929,-0.26925817,0.29035395,-0.10869761,-0.36399475,0.87631863,0.048324183,1.1329077,0.078912295,-0.40133953,0.03791136,0.6001171,-0.18183152,-0.036069665,-0.29597202,0.8550624,0.49319845,-0.034981057,-0.10821947,-0.2668858,-0.07429378,0.2189621,-0.32142645,-0.17905147,-0.09291234,-0.5558029,-0.0631047,0.10000047,0.20913625,-0.013449809,0.0242698,-0.25397697,0.1870891,-0.02031244,0.3091895,-0.50908625,-0.15402761,0.37388927,-0.0132588595,-0.11322971,0.18043326,-0.34236974,0.30545002,-0.75670624,0.16898777,-0.549994,0.03619916,-0.017668117,-0.27839425,0.23426622,-0.13867745,0.19179466,-0.56730735,-0.25438517,-0.24773641,0.51444924,0.18554708,0.25213963,0.6965904,-0.26571554,-0.03332889,0.22389674,0.37216932,0.98581195,-0.1866884,0.015289582,0.07105173,-0.39739567,-0.61173224,0.13623753,-0.33071902,0.15511726,0.08759408,-0.40621263,-0.2066476,0.31487063,0.15686086,0.10170476,0.033833504,-0.90718293,-0.026283199,0.41097522,-0.14111045,-0.11240129,-0.39986727,0.2950786,0.67460984,-0.20021172,-0.4147123,0.073730625,0.2334401,-0.35467416,-0.556298,0.25788388,-0.32322478,0.29053324,-0.04363065,-0.4540713,0.009225331,0.33914444,-0.52570546,-0.017982394,0.3728578,-0.24446537,0.021237355,-0.13883716,-0.019124866,0.8925054,-0.14148128,0.09937978,-0.47174096,-0.57743305,-0.8579515,-0.28863662,-0.10361617,0.45181322,-0.016256426,-0.70379305,-0.2657325,-0.4473611,-0.04072075,0.11696419,-0.4850735,0.48334157,0.31855166,0.5635668,-0.17260002,-0.9423855,0.31134874,0.08200056,-0.25184587,-0.331975,0.4487201,-0.060235277,0.5681642,0.18386196,0.084279254,-0.018757083,-0.70564604,0.32878622,-0.28284025,-0.035857957,-0.72160625,0.06374255 +460,0.4364792,-0.28320318,-0.6573085,-0.10535417,-0.31381926,0.13893674,-0.04878521,0.54235286,0.40872964,-0.6052756,-0.17745769,-0.12233957,-0.107887186,0.25627595,-0.013775479,-0.5613577,0.01582095,0.32925606,-0.5635332,0.40885735,-0.28975204,0.36553597,0.18758155,0.1319413,0.1855094,0.18185139,0.04562934,0.06636509,0.12832084,-0.33442476,-0.02713567,0.13046688,-0.5484266,0.36394337,0.0008092125,-0.35408762,-0.21864985,-0.55981857,-0.14489305,-0.6607453,0.39184403,-0.6987433,0.61104685,0.059658904,-0.2163914,-0.016366443,0.04683569,0.2793084,-0.06916193,0.052158743,0.28453878,-0.06252993,-0.18489362,0.05319706,-0.13302954,-0.3940544,-0.62737834,-0.04308701,-0.24685502,-0.2455401,-0.058566403,0.21799685,-0.25290063,0.10913101,-0.29415628,0.7709603,-0.28075758,-0.05454651,0.36531988,-0.23526816,0.15292247,-0.60898083,-0.025020929,-0.020852635,0.096791714,-0.16682255,-0.26565686,-0.015242338,0.26790997,0.64680886,0.108133115,-0.16374378,-0.15966074,0.015526245,-0.016394496,0.512379,-0.1856817,-0.32682022,-0.12693627,0.038487013,0.042180847,-0.0040249303,0.30680847,-0.4206089,-0.056638747,-0.18866324,-0.09372034,0.2988146,0.47417286,-0.17846388,-0.12529723,0.21488841,0.5945482,0.061337557,0.04340918,0.3480985,0.16079088,-0.41960564,-0.2730638,0.002812316,-0.14198388,0.34502456,-0.25254652,0.24377584,0.4459324,0.024437621,-0.09102025,0.15482213,0.063888036,0.13846473,-0.2707182,-0.3126838,0.3064585,-0.50567144,0.07171177,-0.1507272,0.7555155,0.12587275,-0.6406945,0.33478844,-0.5048563,0.11888287,-0.052592278,0.45481098,0.76523274,0.33099103,0.027884245,0.7351964,-0.2969834,0.18731642,-0.23100407,-0.047398087,-0.0771208,-0.04853506,0.08650739,-0.4521846,-0.044429656,-0.105383776,-0.40000042,0.052417535,0.41561997,-0.7397695,-0.1505675,0.14065166,0.68169194,-0.28556362,-0.066896826,0.8503788,0.9751906,1.0356342,0.11580518,1.3066401,0.34167704,-0.24520187,0.05298415,-0.22838049,-0.782188,0.1201968,0.24049282,0.23769112,0.3348457,0.07757242,-0.033504788,0.4948846,-0.67991114,-0.0014426237,-0.26908526,0.38718143,-0.061836123,-0.13090606,-0.4393929,-0.15766917,0.0226018,0.24911453,0.036457013,0.23325318,-0.30577114,0.20547183,0.14315365,1.514967,-0.33949903,0.068861075,0.07924502,0.14724769,0.09140897,-0.44578174,-0.17187376,0.11349351,0.5389934,-0.08253647,-0.64599365,-0.038920864,0.046012823,-0.32107353,-0.2885389,-0.13388278,0.035928156,-0.24031526,-0.3690124,-0.37163427,-0.13004327,-0.5103845,0.4083147,-2.464685,-0.048988853,-0.09977574,0.426069,-0.18234622,-0.39729533,-0.097648025,-0.4230961,0.19201617,0.3321171,0.29178536,-0.6961109,0.48695865,0.41000152,-0.59669733,0.13153733,-0.6145351,-0.0024507642,-0.026936622,0.25472635,0.057977196,-0.034512743,-0.15007228,0.25657296,0.25636742,-0.063491635,0.1736178,0.50620747,0.22877438,0.09251172,0.34534872,0.14102088,0.5686385,-0.33357143,-0.23345144,0.39795136,-0.23065066,-0.052616376,-0.15634792,0.013982604,0.2755945,-0.5745558,-0.7097003,-0.8486962,-0.27961257,1.0565494,-0.17412,-0.2198761,0.37100253,-0.40585354,-0.33901075,-0.05474304,0.4930745,-0.13754027,-0.19949551,-0.88822293,-0.12968707,-0.09165504,0.291173,-0.0076797195,-0.16678004,-0.7403596,0.81567687,-0.36985204,0.55185264,0.47580776,0.2150299,-0.25089088,-0.4367545,-0.037699718,1.2483674,0.5243389,0.15650016,-0.19399911,0.020481825,-0.43016353,0.032264534,0.039888084,0.75896806,0.88017017,-0.064615846,0.10397004,0.29090452,0.13138653,0.10524436,-0.15087287,-0.45967278,-0.20810503,-0.001029737,0.6210606,0.31965607,-0.025340289,0.46606854,-0.20061083,0.2863585,-0.1520972,-0.51770633,0.26523194,0.70400137,-0.10556245,-0.3902923,0.7232155,0.30627105,-0.12904786,0.41432175,-0.56536406,-0.15153849,0.2784426,-0.17733581,-0.44718006,0.41695073,-0.30733636,0.32712916,-0.8745231,0.49933895,-0.21436654,-1.0696431,-0.50321865,-0.16868001,-2.6489818,0.26038638,-0.14022501,-0.13080768,0.116161376,-0.27313492,0.15056463,-0.49466422,-0.7525658,0.27327552,-0.038304333,0.6695669,-0.023324018,0.12368029,-0.001398156,-0.3486553,-0.26105532,0.25393793,-0.008965931,0.16485642,0.121575475,-0.35553977,0.011362463,0.031835195,-0.25038978,-0.047562826,-0.89990926,-0.61288947,-0.093212344,-0.62109107,-0.17007451,0.5372584,-0.20038353,0.14885317,-0.28997838,-0.012833379,-0.15141308,0.19772293,-0.074119374,0.15142232,0.04955925,-0.04794183,-0.117417805,-0.0151324915,0.08173216,0.06979519,0.25649205,0.26333988,-0.1932292,0.37969086,0.41725945,0.82467985,-0.02556748,0.8702875,0.64733803,-0.14439338,0.19498597,-0.08033681,-0.18320866,-0.43352386,-0.23943567,0.050748598,-0.5781078,-0.40204564,0.07319477,-0.27604857,-0.8309515,0.44274735,0.1429652,0.1294544,0.21887426,0.0983119,0.46599552,-0.033947732,-0.05917569,-0.21426575,-0.19763552,-0.3986304,-0.23814298,-0.59891844,-0.25196767,0.19601083,1.4007844,-0.2191691,0.32726693,0.22655535,-0.23892719,0.13502644,0.15910709,0.07407581,0.13082565,0.59207267,0.025468903,-0.524387,0.12795267,-0.1440928,-0.04420371,-0.57021457,0.18681721,0.6589916,-0.6395492,0.57311255,-0.0408162,0.031143665,-0.38493538,-0.45651722,-0.10563948,0.12208605,-0.39600214,0.4436321,0.35395467,-0.58552283,0.39336398,0.20791323,0.013102755,-0.868488,0.21933328,-0.050568655,-0.08336705,0.010130018,0.2453537,-0.0709881,0.0016175011,-0.09935909,0.1918058,-0.19584614,0.24232365,0.18712282,-0.11207622,-0.1276228,-0.49288306,-0.06015859,-0.646334,0.060972784,-0.6535053,-0.25792286,0.05744003,0.05592838,0.19041611,0.4020721,0.08115702,0.41786954,-0.28840685,0.114905775,-0.04057937,-0.49857497,0.45798466,0.29257363,0.15066338,-0.32598415,0.47132602,-0.039903518,-0.0048183077,-0.3137747,-0.11979184,0.5527948,-0.104899615,0.31312093,0.066964686,-0.21670975,0.4554362,1.0342246,-0.02147991,0.35529044,-0.1210148,-0.002213766,0.10582381,0.104021214,0.10656127,-0.033454318,-0.5830919,0.05335732,-0.004568994,0.14011472,0.24437083,0.2710162,0.44493625,-0.2232374,-0.4946603,-0.0018462291,0.09183354,-0.044448163,-1.3529624,0.29500234,-0.034611944,0.7779827,0.6010032,0.18251169,-0.011681658,0.39694735,-0.11464194,0.21898471,0.17523652,-0.17756367,-0.2969415,0.3045043,-0.5285018,0.31833813,-0.057254136,0.0070280028,0.0040906467,-0.15735815,0.44276738,0.8069343,-0.201478,-0.034420826,-0.19654842,-0.23264122,0.025358269,-0.44232643,0.017893642,-0.7958495,-0.41363403,0.70674473,0.5262403,0.4713414,-0.11122342,-0.027162677,0.12605216,-0.034409788,0.10123038,0.06627509,-0.01597456,0.03205923,-0.5766533,-0.24889039,0.49641132,0.011338155,0.07011578,0.030076772,-0.43689048,0.1611361,-0.064865,-0.13104951,-0.22160721,-0.7656819,-0.08922288,-0.44662693,-0.2698803,0.3235836,-0.049864154,0.021641115,0.24055521,-0.0010916753,-0.32680622,0.30012405,0.29445454,0.71116066,0.0022748485,0.019619694,-0.036212374,0.44205233,0.088510506,-0.20224567,-0.024348937,-0.19810693,0.3084897,-0.79958373,0.46297368,0.19055013,-0.45502877,0.5044729,-0.0125157125,0.14734179,0.50844914,-0.21232845,0.0072936863,0.21078722,-0.40942457,-0.14209338,-0.3657702,-0.22314928,0.17841716,0.05173437,0.018134668,-0.07618775,0.03245281,-0.14256789,0.3780481,0.35966143,0.38011226,0.48327425,-0.001629124,-0.54368687,0.013746222,0.088810004,0.35854593,-0.022912046,-0.14880766,-0.2009896,-0.37999114,-0.361413,0.14068906,-0.096311204,0.41094315,-0.07847607,-0.12905863,0.869694,0.34047946,1.2294756,-0.090617985,-0.36980036,-0.08607439,0.498415,-0.060455907,0.027160563,-0.35871974,0.90740347,0.5019723,-0.007997549,-0.16294347,-0.35839486,-0.03859714,0.29887256,-0.024635958,-0.1715727,-0.057014663,-0.6505948,-0.32710275,0.3463484,0.20610125,0.03700312,-0.015573124,0.34650055,0.32314357,-0.24993174,0.1451217,-0.5152365,0.14310415,0.19621278,0.18089183,0.1877339,0.014538598,-0.5159637,0.20276849,-0.76486593,0.20770524,0.003316154,0.07418049,-0.08371966,-0.19884598,0.09803331,0.11975237,0.2746686,-0.47808048,-0.2998513,-0.25750008,0.6886406,-0.058967095,0.10703059,0.63671607,-0.30314347,0.0330305,0.07672935,0.5843429,0.9409322,-0.04726109,0.12784809,0.37804404,-0.29186973,-0.531951,0.21620023,-0.06007744,-0.09030813,0.008455341,-0.2758262,-0.5432749,0.16962312,0.29612583,-0.11295568,0.29193845,-0.43202272,-0.20373894,0.32754767,-0.3283917,-0.15130603,-0.28549722,0.19210088,0.58021706,-0.3441815,-0.36265305,-0.02055952,0.31418702,-0.35754856,-0.5116718,-0.18939276,-0.23077208,0.23882596,0.079766735,-0.37022945,-0.2605497,-0.014745593,-0.31750807,-0.20734842,0.23898156,-0.30800918,0.025382385,-0.34394494,-0.11320681,0.79317635,-0.07573531,0.17736042,-0.55659705,-0.4508277,-0.7995963,-0.390064,0.2801828,0.1486492,-0.089648664,-0.71325725,-0.097241364,-0.22553886,0.0024414163,0.124027275,-0.1267906,0.5724724,0.24657303,0.3800477,-0.18067628,-0.9393156,0.2693694,0.17842811,-0.26105478,-0.46948192,0.49671292,0.3036822,0.7450569,0.06457729,-0.03366803,0.14636914,-0.63176024,0.2474007,-0.13064015,-0.039689824,-0.7250609,0.14084633 +461,0.5076115,-0.35023946,-0.20874335,-0.08229304,0.09557371,0.16416693,0.011757135,0.72024924,0.46122846,-0.26861927,-0.17783321,-0.28630152,0.119913965,0.4590187,-0.11800382,-0.55824304,-0.19279465,0.14419205,-0.35319927,0.4256667,-0.5039384,-0.06363558,0.10269079,0.6703341,0.092464514,0.22142096,0.11944198,0.036303148,-0.3497221,-0.3040609,-0.009432558,0.42589462,-0.5639356,0.06954347,-0.27672547,-0.4050384,-0.20964375,-0.6737455,-0.38764656,-0.81206137,0.2577017,-0.9798084,0.43956822,0.2780101,-0.31772435,0.41804254,0.11749806,0.10045877,-0.29477242,-0.22649874,0.10439932,-0.22915958,0.036643144,-0.32860807,-0.19134527,-0.15055352,-0.64619887,0.022162838,-0.20684749,-0.05996721,-0.25217515,0.04098052,-0.3212425,0.017279593,0.02720862,0.62043524,-0.32762086,-0.008336875,0.24539155,-0.22735806,0.41365355,-0.38432646,-0.28071377,-0.12011693,-0.033851657,-0.20627743,-0.414094,0.19275995,0.36375463,0.3654374,-0.2641796,-0.13347858,-0.4314401,0.1666701,0.0047032726,0.57253623,-0.423684,-0.853603,-0.19484685,-0.10991133,0.028529463,0.29057574,0.108873755,-0.115044214,0.0053501367,0.13427414,-0.26199207,0.5974648,0.47873643,-0.28117943,-0.24551457,0.1658466,0.3421787,0.17820027,-0.10927246,-0.35102403,0.16665114,-0.6200446,-0.101161644,0.06998389,-0.40584117,0.61008793,-0.18257241,0.25008893,0.70846796,-0.28323433,0.047242034,0.16291101,0.093401596,-0.1564784,-0.4908729,-0.289904,0.38614228,-0.30656248,0.19737186,-0.29214442,0.7630312,0.037629534,-0.7019349,0.34612465,-0.56488353,0.12844227,-0.18123268,0.4667567,0.70409006,0.34631062,0.6713232,0.50144905,-0.4276024,-0.11868434,-0.090694316,-0.25904053,0.18412094,-0.33483526,0.16548266,-0.52126783,-0.19263583,0.22498664,-0.11521218,0.35919487,0.33198768,-0.6516521,-0.08743116,0.30201957,0.89699274,-0.1967962,-0.17991723,0.79638976,1.1478599,0.97743535,-0.016088445,1.1114388,0.2551368,-0.14904626,0.35622957,-0.17465371,-0.6264403,0.3249699,0.3464364,-0.7242088,0.3083023,0.029231494,-0.097851425,0.3123915,-0.43878946,-0.10441578,-0.017363267,0.13839771,0.19133784,-0.055100147,-0.53665984,-0.41651866,-0.18029283,-0.029317927,0.12587704,0.32214835,-0.2482817,0.37574932,-0.10887775,1.3970383,0.10111956,0.07265256,0.077067286,0.49869397,0.08045553,0.015531888,-0.114638835,0.31182498,0.20350236,0.23376603,-0.43340674,0.29553804,-0.25461718,-0.35395572,-0.009797928,-0.38629466,-0.053574726,-0.04734185,-0.3483075,-0.12778634,-0.18430279,-0.27297565,0.44863108,-2.9671197,-0.14550471,0.023497896,0.2697291,-0.25492528,-0.3984477,-0.077980325,-0.5513916,0.36018705,0.36488923,0.59866387,-0.7552128,-0.012399441,0.2986872,-0.5645261,-0.25637132,-0.6634214,-0.06768036,-0.047968343,0.3014751,0.124899,-0.1069869,0.12896855,0.107110076,0.62915426,0.19074363,0.14691716,0.22610006,0.38101044,-0.15639624,0.379525,-0.28304294,0.38338575,-0.41466486,-0.2418777,0.31680194,-0.54011464,0.23419929,-0.18758616,0.071233645,0.5287668,-0.17017184,-1.0702381,-0.6623159,-0.28546393,1.1594071,-0.1862573,-0.43899423,-0.0026292964,-0.28648233,-0.24758376,-0.097078495,0.7641441,-0.19678959,-0.005671826,-0.83840084,0.031298283,-0.12950853,0.15557212,-0.0075695217,0.06944495,-0.28231013,0.5987759,0.06124039,0.28159073,0.21761371,0.042378172,-0.5081926,-0.5367811,0.07267791,0.9574425,0.23583554,0.25035843,-0.15180263,-0.13558723,-0.25611943,0.04560463,0.021997713,0.59520555,0.4799302,-0.035693992,0.12072747,0.28066424,-0.007417744,-0.04469557,-0.10068686,-0.22239529,-0.17860635,-0.046901718,0.73552316,0.8562927,-0.2518505,0.30431554,-0.14764614,0.37192476,-0.14083852,-0.29990116,0.54788357,0.92416835,-0.032793615,-0.18981284,0.70908827,0.58616185,-0.40508983,0.46907815,-0.57585007,-0.39731562,0.4749358,-0.20481537,-0.52976525,0.18042043,-0.19138798,0.12518184,-0.76886386,0.19916467,-0.15613557,-0.28312498,-0.61049813,-0.032386873,-3.633195,0.2389485,-0.2208067,-0.41020852,-0.20161204,0.046878137,0.19387488,-0.54702497,-0.5313295,0.06367877,0.07668433,0.67136025,-0.15256423,0.09238484,-0.30877638,-0.23391284,-0.209105,0.019245094,0.20737432,0.3695234,-0.0031351934,-0.4128154,-0.039980482,0.013470542,-0.43771237,0.1422903,-0.6548234,-0.52823377,-0.1518709,-0.52273184,-0.324594,0.7226098,-0.4217431,0.007964605,-0.19837722,0.01915033,-0.11581977,0.42066842,0.24455337,0.0976054,-0.10300157,-0.025370417,0.16171287,-0.1945343,0.44985607,0.09814735,0.33645752,0.5842609,-0.20321707,0.3053851,0.54231745,0.6440888,0.13329878,0.92775023,0.48760653,0.031707004,0.14707294,-0.26918328,-0.17639638,-0.5255218,-0.26425925,0.038147867,-0.37078837,-0.2247301,-0.05779476,-0.38327178,-0.8356157,0.5885583,-0.13624601,0.22076736,-0.024667041,0.41322204,0.66404843,-0.45705768,0.06981986,-0.02923057,-0.13575102,-0.54786414,-0.15205325,-0.58654493,-0.37845972,0.10511141,0.6492982,-0.124316745,0.14034532,0.105743416,-0.1261449,-0.23124439,0.1033644,-0.1317635,-0.0018567063,0.47255784,0.033678595,-0.6688251,0.49277675,-0.048901033,-0.2621861,-0.64322615,0.3776311,0.5890391,-0.72501355,0.6681539,0.50014913,0.07066608,-0.23512922,-0.49183524,-0.33752444,-0.15706551,-0.007902276,0.24571896,0.28994036,-0.74108547,0.37480393,0.3937556,-0.33288375,-0.68658644,0.4647568,0.06888375,-0.4782299,-0.27303788,0.3699336,0.1599311,0.078344695,0.039288677,0.237075,-0.5233324,0.1448778,0.112772815,0.07114404,0.44485474,-0.06257841,-0.008017031,-0.7658665,0.25012556,-0.55443215,-0.4112352,0.3695788,0.15732646,0.1663713,0.37180164,0.07482355,0.25413954,-0.11105988,0.0018881437,-0.117974326,-0.22691607,0.28930762,0.5338787,0.58517045,-0.39599445,0.6421189,0.14492749,0.014973694,0.13504928,-0.060719576,0.46125433,0.014636598,0.45368993,-0.024448026,-0.42716444,0.18983509,0.71628743,0.15992099,0.41891745,-0.071316116,0.15227121,0.3363509,0.03975585,0.33270475,-0.03511584,-0.6546641,0.07271713,-0.4714329,0.15710515,0.50348073,0.061427828,0.13434882,0.011827344,-0.38955268,0.105830885,0.28383175,0.10957618,-1.3834649,0.35486397,0.1696576,0.8429443,0.46255264,-0.105702765,0.009302857,0.7990186,-0.15163273,0.23514418,0.5058423,-0.06182359,-0.5492458,0.7664963,-0.7690014,0.4780064,-0.12408001,0.035817835,-0.21262704,-0.03395753,0.32798383,0.6464457,-0.22678342,-0.03877984,-0.044844475,-0.44263223,0.16626166,-0.585174,0.34283754,-0.6567784,-0.1688795,0.69495374,0.6345327,0.32446477,-0.21524908,-0.000627221,0.038328867,-0.040637437,0.16917898,-0.0042539346,0.15477432,-0.0034629554,-0.912497,-0.07452088,0.5742515,0.022977652,0.30829173,-0.06865802,-0.012127074,0.12798022,-0.15708642,-0.300906,-0.15823083,-0.66494197,-0.005616589,-0.39093435,-0.44985113,0.55443174,-0.21202415,0.21958518,0.24383493,0.11092372,-0.32479417,0.29855874,0.24615383,0.8493814,0.090408474,-0.29192272,-0.39227116,0.34146017,0.14568084,-0.11676364,-0.1809379,-0.2744006,-0.056413304,-0.27316907,0.48027992,-0.1263392,-0.42111957,-0.08263791,-0.01444709,0.20449814,0.55418724,-0.07999742,-0.21314669,-0.35928926,-0.3945645,-0.31444937,-0.043517567,-0.044838548,0.38873526,0.28568527,-0.1025807,-0.045265585,-0.173038,-0.3442735,0.46287486,-0.06509705,0.36195806,0.42755747,0.17745383,-0.17669591,-0.12559056,0.23379244,0.54210436,0.031334564,-0.34145418,-0.47988293,-0.34063652,-0.42480794,0.056049194,-0.117248416,0.4784934,0.10661921,-0.2589572,0.81408274,-0.23847164,0.9848926,0.09188735,-0.36612532,0.029301655,0.4054669,-0.080702394,-0.06965704,-0.43393335,0.8426525,0.43285716,-0.17331909,-0.06754381,-0.28329527,0.09197517,0.27048904,-0.17730762,-0.23113535,-0.014360002,-0.7819757,-0.16164091,0.1867075,0.37217912,0.33070382,-0.09745017,0.15446411,0.20949163,0.037875235,0.43523324,-0.3518414,-0.055457674,0.31304285,0.48904133,0.017737947,0.18632135,-0.29665187,0.31757423,-0.43674755,0.061103996,-0.5622941,0.061054014,-0.34332952,-0.47475827,0.31753948,0.100438975,0.4322872,-0.19025232,-0.39514083,-0.13478743,0.35606864,0.20427586,0.042378332,0.5209443,-0.2230134,-0.029883178,0.086310424,0.5244804,1.2234005,-0.32114193,0.08584443,0.18589792,-0.2714696,-0.7547604,0.6462665,-0.13285315,0.39251944,-0.009351871,-0.020700509,-0.557884,0.17513698,0.18060623,-0.011146829,0.08324787,-0.49233177,-0.1286399,0.27185777,-0.30851784,-0.27862713,-0.40115455,0.14335427,0.4562029,-0.17582592,-0.21037906,0.13881993,0.34152785,-0.12581268,-0.39807215,-0.076096684,-0.5309995,0.18204632,-0.024747519,-0.45378572,0.035683706,-0.10643177,-0.4703987,0.18096437,-0.06789133,-0.30245462,0.10861833,-0.2779856,-0.06502631,1.0392745,-0.13763766,0.20416659,-0.632753,-0.4400884,-0.81290936,-0.2740851,0.49678734,-0.12513155,0.0066733225,-0.49892223,-0.019225923,0.07528725,-0.23177561,-0.19348422,-0.47378168,0.42466688,0.1057319,0.48844197,0.009210722,-0.6489875,0.09733874,0.16250935,-0.039756734,-0.6937137,0.34257224,-0.01048533,0.9466844,0.06652854,0.10421844,0.445278,-0.4589326,-0.22403346,-0.21696176,-0.28849518,-0.5820862,0.22115445 +462,0.46679348,-0.258114,-0.48746365,-0.24510612,-0.4291197,0.002858327,-0.36941534,0.27715012,0.23146158,-0.24384299,-0.1565294,-0.22025508,0.15999897,0.32073843,-0.18362696,-0.47251987,-0.13212262,0.05021506,-0.7363552,0.29297888,-0.6637655,0.19486706,0.05113759,0.4211538,0.15650257,0.29264718,0.16881107,-0.0077053127,0.16607888,-0.20694557,0.01800211,0.011641667,-0.7409176,-0.08248993,-0.2354129,-0.47981304,-0.04364474,-0.67854893,-0.38269165,-0.74565065,0.31939715,-1.1682574,0.71237075,-0.021057116,-0.20077714,-0.25223178,0.38538373,0.5500469,-0.227272,0.19060375,0.28766006,-0.15008129,-0.017523352,-0.22611512,-0.09014472,-0.477277,-0.6681848,-0.124739096,-0.5834329,-0.44993654,-0.083679505,0.31391823,-0.22386377,0.186608,-0.13537578,0.17527606,-0.41009971,-0.055059772,0.43303674,-0.11378872,0.51183474,-0.6126381,-0.006608832,-0.094580255,0.4184659,-0.038512293,-0.2699695,0.2906877,0.31603777,0.4376602,0.11744217,-0.2516114,-0.24508773,-0.2289786,-0.060551602,0.5407471,-0.22776446,-0.2625646,-0.31979164,-0.04848818,0.6591215,0.6817798,0.037225418,-0.27043372,0.04451383,-0.0055819703,-0.3523501,0.675112,0.6311897,-0.3085512,-0.34194276,0.19282165,0.55800176,0.17535767,-0.3383971,0.26963308,0.11441447,-0.60249645,-0.15725987,0.10526668,-0.030717466,0.4327676,-0.1360218,0.22368163,0.77544373,-0.17547435,-0.010233361,-0.06363002,-0.14827277,-0.24144346,-0.26518032,-0.3364498,0.18284376,-0.6049453,0.040833957,-0.27971193,0.6416451,0.029097885,-0.7600281,0.43706682,-0.776415,0.20571741,-0.030977923,0.75276226,0.80641395,0.40128958,0.51817775,0.71071583,-0.23004836,0.1047685,-0.12003647,-0.24772035,0.19693345,-0.47439963,0.31651482,-0.44469076,0.094311684,-0.19578725,0.009257784,0.093450755,0.7066082,-0.5323626,-0.06998814,0.32983333,0.777812,-0.32568794,0.012037428,0.70232964,1.2049534,1.0645335,0.09928624,1.2635653,0.40010065,-0.3366585,0.16819102,-0.2956183,-0.6636209,0.14701013,0.31940874,-0.19760616,0.5057352,-0.09686418,-0.03621757,0.31320804,-0.5016379,0.04365585,0.17738718,0.15783852,0.24537775,-0.18215325,-0.5496732,-0.09828048,-0.0015590305,-0.08166616,0.2836912,0.1618367,-0.2667138,0.3377922,0.002825746,1.3485807,-0.14879341,0.06591575,0.16773184,0.5983654,0.22615913,-0.15374303,0.00946718,0.3949513,0.39879754,0.070384756,-0.614022,0.31429067,-0.17323014,-0.37391567,-0.30088285,-0.3875303,-0.31009457,-0.028898107,-0.4681767,-0.295279,-0.14389594,-0.17562184,0.39011952,-2.7252414,-0.48040932,-0.23068437,0.43663535,-0.21940711,-0.15586424,-0.055567943,-0.53484976,0.20279016,0.3956599,0.4787661,-0.764198,0.62003267,0.6651777,-0.5341467,-0.14885522,-0.855463,-0.050979033,-0.096013665,0.4107907,0.089922555,-0.24677493,-0.12528132,0.30247784,0.7422997,0.16809104,0.10423387,0.31698924,0.62630373,0.042204473,0.79584086,-0.18115054,0.44904324,-0.2604384,-0.16229905,0.32545218,-0.25212112,0.1627735,-0.17415515,0.07244346,0.58382607,-0.56789017,-0.9434869,-0.71469104,-0.34479952,0.82579815,-0.15735349,-0.5580492,0.17072669,-0.48122236,-0.1835714,0.032257564,0.76109815,-0.14731005,0.26449353,-0.86559135,-0.043166656,-0.21927682,0.19239953,0.066974,-0.05869478,-0.41143486,0.78502536,-0.19226602,0.56008065,0.2775566,0.23370042,-0.3191886,-0.40266228,0.17659679,0.74032474,0.39556745,0.02882257,-0.23370674,-0.2945639,-0.1547574,-0.26994607,-0.0021114533,0.48820436,0.78593457,-0.12080933,0.21524818,0.49653673,-0.17548603,0.040668026,-0.09723551,-0.17404468,-0.03525934,0.047157783,0.5654558,0.74054337,-0.23323932,0.45258194,-0.3016872,0.33797666,-0.16196664,-0.5022022,0.53102106,0.429838,-0.106530935,-0.10602821,0.6277424,0.58215505,-0.44019333,0.57838535,-0.8348971,-0.29265347,0.53440225,-0.0032482366,-0.54683995,0.2714548,-0.3681084,0.2130293,-0.9193607,0.3795168,-0.25935087,-0.3841987,-0.39043564,-0.2725199,-2.8420932,0.21870469,-0.15088403,-0.039913043,-0.3002767,-0.24988899,0.443351,-0.57854974,-0.7330604,0.0330557,0.100979015,0.62023616,0.06013892,0.14914267,-0.30901366,-0.14777778,-0.22276293,0.25125915,0.15130088,0.32635546,-0.10841559,-0.4130699,0.07787016,-0.12740925,-0.59469175,0.1903988,-0.6352999,-0.5856416,-0.017582532,-0.44629732,-0.36827946,0.6304289,-0.3770209,0.050642166,-0.33821696,0.044060245,-0.21880102,0.34022874,-0.054258034,0.15844356,0.11755002,0.026461324,0.0929555,-0.22187828,0.47667342,-0.097997196,0.274488,0.08351728,-0.07394115,0.20335284,0.44346985,0.6952779,-0.16577421,1.0255427,0.5397111,-0.08291234,0.13249364,-0.25640017,-0.21124306,-0.5630793,-0.26273766,0.0108809015,-0.4276548,-0.5871551,-0.0036435951,-0.2843621,-0.77488035,0.7146098,-0.14866835,0.3779864,0.065150216,0.32274547,0.35644802,-0.08631488,-0.0019067571,-0.0341768,-0.17817718,-0.5940577,-0.34596682,-0.6794665,-0.4869816,0.035850324,1.1122477,-0.11072091,0.13035771,0.10863897,-0.28379446,-0.047307637,0.1848351,0.08825148,0.2464042,0.4545113,-0.045919523,-0.6397813,0.21753357,-0.2194628,-0.26764244,-0.5813469,0.11752919,0.7849597,-0.75033367,0.51671296,0.44702148,0.14571558,-0.21877956,-0.5064706,-0.18989754,0.045521352,-0.38072425,0.5521194,0.1327429,-0.80912334,0.60151774,0.3264708,-0.42355797,-0.7029067,0.5133795,-0.12390112,-0.2371993,-0.109171286,0.24023518,0.24845555,0.005585817,-0.2961877,0.23487933,-0.40887308,0.32948363,0.13370673,-0.043570288,0.43904394,-0.04554713,-0.19411817,-0.7623532,-0.005679943,-0.60860103,-0.29504773,0.3083192,-0.0864937,0.108901575,0.37595522,0.05389462,0.38241023,-0.2409574,0.15408714,-0.07413705,-0.42354038,0.11482299,0.46078536,0.35882616,-0.39853165,0.6466989,0.10430848,-0.26781213,0.05308052,-0.0120094055,0.38710898,-0.10421408,0.39798468,-0.23328549,-0.19636084,0.34760967,0.8134555,0.20661889,0.46538243,0.24542218,0.052971635,0.40814787,0.015604924,0.112606175,-0.026743192,-0.5486286,0.0151478555,-0.21776502,0.23178442,0.52703744,0.2818812,0.3108197,0.0106478445,-0.19371334,0.034470204,0.17638241,-0.34236485,-1.3047105,0.27216122,0.23418294,0.8023576,0.35201243,-0.01352843,-0.0030189843,0.6247078,-0.23363484,0.032541282,0.53521526,0.27076122,-0.3843436,0.78900665,-0.5805365,0.46085307,-0.22762917,-0.0411548,-0.030261708,0.31336552,0.46006152,0.814996,-0.1969138,0.11855517,0.0899158,-0.09387442,0.060937352,-0.33990914,0.0351958,-0.44103116,-0.23918816,0.8804155,0.31160122,0.44053745,-0.110421166,-0.06270074,0.08149932,-0.09165946,0.21824461,-0.12237556,-0.27305892,-0.018381901,-0.6202122,-0.09722757,0.5297892,0.13929796,0.20793414,-0.086971484,-0.4215323,0.0045279837,-0.14589931,0.068033084,0.03145873,-0.6990531,-0.17747065,-0.26458415,-0.62091476,0.5418528,-0.23645419,0.046365783,0.23698662,-0.087687716,0.032657787,0.19294967,0.053129986,0.7983014,0.07974454,-0.24181181,-0.16758893,-0.03631313,0.38891765,-0.33675525,0.02097521,-0.37446138,0.13070534,-0.5907341,0.7385713,-0.17154656,-0.4938243,0.2960007,-0.2140527,-0.04234922,0.6628417,-0.19138001,-0.06304546,0.31403834,-0.2051174,-0.17848325,-0.0823546,-0.37288377,0.2767445,0.22074237,-0.09583517,-0.05468649,-0.3350048,-0.067731254,0.5611629,-0.037242945,0.5780391,0.4417178,0.10998507,-0.1996637,0.0201541,0.1762295,0.6106459,0.12774825,0.030549984,-0.35942045,-0.568943,-0.17109449,0.28464603,0.0386921,0.29022425,0.1659645,-0.2773938,1.0701611,0.045032863,1.1922319,0.13137084,-0.41920993,0.05535058,0.5092197,-0.016406314,0.042671144,-0.4996708,0.8885444,0.5480272,-0.15076326,-0.093501955,-0.4963015,-0.07316804,0.37369007,-0.38841832,-0.210581,-0.13853656,-0.65009874,-0.37601727,0.24312733,0.14277278,0.15717953,-0.06718306,0.31834057,-0.03152525,-0.10775777,0.46420938,-0.5907627,-0.16870292,0.2617486,0.33940008,-0.19332123,-0.005716012,-0.3704038,0.40674928,-0.5996202,0.08882027,-0.63355446,0.09119049,-0.124149635,-0.35504356,0.056968313,-0.0018295416,0.33268648,-0.20020407,-0.35653597,0.06848046,0.548382,0.08958989,0.16588427,0.62267864,-0.30848673,-0.0658132,-0.058573928,0.58896744,1.5626928,-0.5170836,0.106233396,0.23886405,-0.47655562,-0.6970561,0.49750185,-0.4486212,-0.017699186,0.02976859,-0.44973361,-0.4595012,0.23260736,0.14967932,-0.12292601,0.035516612,-0.4703827,-0.33491665,0.36857584,-0.32040212,-0.10324262,-0.17280081,0.40336066,0.65542847,-0.15867358,-0.30872184,-0.072882816,0.60226053,-0.3457284,-0.4321993,0.08603936,-0.16733606,0.38699389,0.06890031,-0.28969333,-0.13263069,0.074999385,-0.5729169,-0.015244434,0.29165265,-0.41436324,0.16913247,-0.33820608,-0.10239559,1.0272807,-0.21657851,-0.2890525,-0.6664221,-0.535418,-0.9303372,-0.42192188,0.059157424,0.3177365,0.008500645,-0.28354946,0.01505943,-0.063130155,-0.2390259,0.13160744,-0.5255438,0.36911073,0.09260217,0.6202849,-0.3674608,-0.8162812,0.09300881,0.12819329,-0.2714407,-0.71169,0.82437736,0.05229954,0.9114202,0.14731516,-0.045596227,-0.118491046,-0.43186203,0.11910303,-0.27072436,-0.27929166,-1.0536376,0.007841312 +463,0.2892776,-0.096222095,-0.55279756,-0.23315361,-0.3079243,0.10616893,-0.15809539,0.5833818,0.16556583,-0.45990136,-0.08805764,-0.09088994,0.07103196,0.24568154,-0.13811989,-0.33965573,0.03635318,0.057373386,-0.5094068,0.3099789,-0.44415075,0.19275245,-0.021100132,0.24967018,0.32063565,0.2431412,0.09113905,-0.06038402,0.051309366,-0.23575686,-0.23636106,0.20386097,-0.35464603,0.22159657,-0.14749739,-0.36332005,-0.0270652,-0.54669183,-0.29775408,-0.62796336,0.4148229,-0.71698475,0.49287483,0.016693665,-0.18896158,0.25658697,0.2123127,0.24720143,0.023163052,-0.1757767,0.134967,-0.014457262,-0.078282624,0.048613828,-0.21374084,-0.3021882,-0.46300867,0.05672822,-0.5738674,-0.21047424,-0.18755557,0.11112221,-0.20276625,-0.031414714,-0.21828414,0.5877641,-0.3594427,0.021862773,0.13150565,-0.036308166,0.21114543,-0.6073946,-0.15325688,0.040390767,0.314148,-0.28936937,-0.23288931,0.13426341,0.14875028,0.42394108,-0.16686608,-0.08475714,-0.15777174,-0.08504073,0.13643977,0.55682874,-0.14123307,-0.47011626,-0.04847483,0.032545228,0.24059772,0.1695845,0.18249324,-0.3023206,-0.1788635,-0.08579573,-0.24134597,0.53569853,0.5019285,-0.33504778,0.040184215,0.36346638,0.39989662,0.27624154,-0.13409323,0.026559133,-0.018916331,-0.5568772,-0.1727012,-0.030707065,-0.078447744,0.4788141,-0.08047155,0.4885812,0.32592127,-0.063686,0.051386926,0.18135525,-0.026361635,-0.042740382,-0.21265125,-0.08759463,0.11693846,-0.5120552,0.17228566,-0.106759325,0.67144907,0.08235052,-0.81164753,0.30913976,-0.51177734,-0.026202839,-0.1125671,0.45170873,0.715207,0.28320068,0.19022171,0.58140576,-0.31531614,-0.02005711,-0.23525074,-0.17841434,-0.13394994,-0.015422647,-0.0025772406,-0.6016257,-0.16234484,0.0013809571,0.099953964,-0.01565109,0.2506268,-0.62739944,-0.099873334,0.27929893,0.6230396,-0.25518972,-0.2019698,0.8907765,1.0241284,0.8371111,0.13424899,0.86055154,0.008566911,-0.1694089,0.11190396,-0.11421195,-0.5739769,0.1974521,0.3674968,0.38500708,0.060306434,-0.0033509685,0.08037892,0.3874276,-0.36930102,0.061622698,-0.124647304,0.22048649,0.10326894,-0.014119749,-0.2463936,-0.44189388,0.0315031,0.08804179,0.07368717,0.17274567,-0.32557064,0.28296474,0.0509244,1.4716479,-0.15704168,0.051972803,0.031155583,0.44243732,0.14094175,-0.36504143,-0.20114814,0.14704943,0.4147285,-0.077446334,-0.60574764,0.08166126,-0.10234356,-0.40340954,-0.08000005,-0.35837853,-0.22841658,-0.22403485,-0.4670655,-0.025124284,-0.116102256,-0.476983,0.46167162,-3.1838849,-0.14426436,-0.1471855,0.22824231,-0.19851127,-0.4129969,-0.11559437,-0.35492626,0.4303695,0.22952358,0.42449972,-0.48502403,0.46943277,0.2733727,-0.482299,-0.1277954,-0.643528,-0.13341437,0.08012405,0.15222144,0.03621691,0.10415631,0.07655688,0.21076201,0.39686936,-0.142233,0.23160638,0.18290994,0.37628874,0.13870548,0.51676095,-0.10117916,0.44614542,-0.24664041,-0.14339203,0.24154812,-0.24617492,0.17567436,-0.16391315,0.1527833,0.3757859,-0.49005178,-0.78489345,-0.57506835,-0.3023624,1.258031,-0.20482375,-0.46509174,0.33873212,-0.47480303,-0.24834178,-0.08306154,0.5892166,-0.026768832,-0.21437287,-0.6453718,0.12214956,-0.24797322,0.14091255,-0.14446418,-0.10661995,-0.45342892,0.46445772,-0.062064044,0.56666875,0.31259757,0.1985248,-0.32217664,-0.28001758,0.005920234,0.81816,0.4007549,0.06515745,-0.07565454,-0.09710695,-0.41562033,0.120034605,0.06527214,0.69278204,0.6476295,0.032880165,0.23326534,0.24496497,0.11781226,0.07331508,-0.16966741,-0.27833053,-0.1567382,0.109850414,0.60968745,0.26554906,0.07310362,0.58270085,-0.073388904,0.09746291,-0.3149096,-0.42555624,0.23203531,0.48468426,-0.15708624,-0.27936906,0.5322456,0.5903898,0.025101367,0.31539932,-0.5409615,-0.37629515,0.4814277,-0.21280836,-0.36564186,0.18393192,-0.27713817,0.15480086,-0.859352,0.21208562,-0.26901916,-0.8230843,-0.26901934,-0.030820774,-2.9286807,0.17606783,-0.07992076,-0.2520787,-0.07514573,-0.47380877,0.15373695,-0.28919396,-0.5414116,0.16463654,0.030445097,0.7830439,-0.033471912,-0.018557338,-0.12053038,-0.12819734,-0.2022093,0.11693446,-0.016608147,0.28346783,-0.15088527,-0.24578835,-0.12867738,-0.18681993,-0.4127094,0.06294605,-0.37624756,-0.36068624,-0.085353024,-0.36256278,-0.23982853,0.5928204,-0.28269878,0.010263354,-0.2773584,-0.0037057896,0.055315867,0.31734514,-0.05602663,0.23791926,-0.021870337,-0.041138988,-0.006431843,-0.21307865,0.13094975,0.09250614,0.22059004,0.29430377,0.105524436,0.35644725,0.45963037,0.6366416,-0.034969073,0.86508507,0.39660078,-0.034686718,0.28790432,-0.14091454,-0.22548905,-0.3772989,-0.15131006,0.1424316,-0.4115984,-0.42052138,-0.15325062,-0.19855087,-0.62166935,0.519336,0.13288385,0.14601746,-0.033749975,0.2903077,0.4324442,-0.14872469,0.019326594,-0.17059158,-0.067934,-0.57571083,-0.31731227,-0.59690964,-0.24791978,-0.025347453,1.0540819,-0.3097687,0.15953788,0.002706961,-0.08863215,0.1436217,0.13022141,0.07548188,0.2576589,0.29265544,-0.2610262,-0.6366721,0.30679318,-0.30630022,-0.09703641,-0.456253,0.098250166,0.58181405,-0.47288784,0.29127395,0.16879933,0.10471253,-0.3039717,-0.5543198,-0.08810357,-0.002564758,-0.2925008,0.28178126,0.23734856,-0.88193345,0.53924996,0.24314049,0.036563616,-0.78916895,0.5550103,0.06826406,-0.2272765,-0.15592974,0.28265423,0.14237908,-0.064895645,-0.25683495,0.1268763,-0.33268452,0.33502606,0.20751268,-0.04522947,0.13715726,-0.3211225,0.057278283,-0.47479242,-0.05475229,-0.5584674,-0.18060857,0.14486618,-0.035972767,0.31905064,0.3102171,-0.14525613,0.3231924,-0.3615969,0.12065454,-0.0018623793,-0.27674213,0.19499299,0.421373,0.35735723,-0.4470881,0.53849643,0.100110084,-0.05128732,-0.023525449,0.082927026,0.41111374,-0.08772767,0.2499291,-0.21475968,-0.318595,0.30373868,1.0132455,0.110549875,0.25417712,-0.13181065,0.089232296,0.11797619,-0.06334014,0.11232985,0.05416385,-0.48813704,-0.009011007,-0.23606294,0.12447519,0.463936,0.13088162,0.3093594,-0.025802324,-0.35635334,0.030901663,0.08225406,-0.105268,-1.1920661,0.4878598,0.10563194,0.853418,0.49677354,0.018198324,-0.035068743,0.50234514,-0.1644379,0.16190727,0.17582291,0.10618536,-0.3741188,0.46259066,-0.71655875,0.5722081,0.05024862,-0.053262945,0.016671915,-0.12601498,0.49118507,0.8735056,-0.14995503,0.12632617,0.16688673,-0.21648511,0.13728788,-0.3106394,-0.10377994,-0.79663473,-0.22460644,0.63540643,0.35691673,0.40225062,-0.017341137,-0.0029595448,0.20990625,-0.06586421,-0.0504729,0.07676982,0.16662869,-0.18828462,-0.6126023,-0.1531666,0.48530167,0.006151707,0.07566108,0.034226835,-0.3485916,0.19078746,-0.16003095,0.011334835,-0.09778093,-0.57316136,0.017457072,-0.33184153,-0.35292333,0.35732657,-0.30969298,0.21658982,0.20930058,0.082186386,-0.06253411,0.3374154,0.20726794,0.69593817,-0.10049888,-0.033084843,-0.30711433,0.16245845,0.16078523,-0.1317936,-0.37057912,-0.3250241,-0.002083329,-0.6284791,0.24517584,0.010699987,-0.23025315,0.2630326,0.0129082985,0.10138113,0.4821553,0.029480843,0.113538355,0.020995338,-0.24786064,-0.11437859,-0.12956683,-0.09036117,0.21892956,0.089924246,-0.070678,-0.12952209,-0.042029914,-0.0929458,0.15526533,0.024656834,0.41748527,0.20273909,0.10342341,-0.3750534,-0.0022332072,0.047526672,0.46838406,-0.06655211,-0.12685539,-0.28513476,-0.2059779,-0.22011478,0.22712845,-0.059833348,0.37191072,0.020088973,0.014348929,0.64393395,-0.03541014,0.96609867,0.0018875301,-0.33009848,0.062794924,0.33732063,-0.049096465,-0.13755377,-0.23185284,0.7379342,0.31821647,0.14739433,-0.048892114,-0.31537136,-0.017129358,0.23383142,-0.033433955,-0.2152591,-0.05019973,-0.46206248,-0.15469643,0.21564844,0.13015546,0.2574616,-0.11835175,0.09513699,0.29361373,-0.0627219,0.1967659,-0.5527456,0.032753084,0.3224285,0.2951998,-0.013642645,0.034948662,-0.4928088,0.24694315,-0.5639895,0.032006033,-0.19166708,0.21923491,-0.103984594,-0.1992032,0.17255051,-0.0056752446,0.37802717,-0.1848804,-0.28754777,-0.21804298,0.5631257,0.19886912,0.16742875,0.476394,-0.25931373,0.17819251,-0.02342652,0.46419704,0.7996686,-0.18042403,0.02474793,0.45794237,-0.24726953,-0.5503795,0.24469516,-0.3017723,0.14013794,0.17708398,-0.11990325,-0.25778946,0.27433878,0.41930988,0.109715134,-0.027080046,-0.6245809,-0.2085026,0.3223967,-0.101860136,-0.2430508,-0.43942058,0.045581486,0.4505989,-0.20156178,-0.10370108,0.09205376,0.35509712,-0.17435138,-0.4742017,0.111674055,-0.25604692,0.19296315,-0.06025354,-0.368111,-0.30036572,0.035637803,-0.35809153,0.15546788,0.08382566,-0.21164802,0.024645315,-0.14438732,0.028370012,0.9125281,-0.21196082,0.15800579,-0.4184696,-0.5261669,-0.5319342,-0.29676443,0.21089815,0.032573916,-0.049891934,-0.5406144,0.0024770086,-0.13011052,-0.1744456,-0.043859642,-0.19763573,0.4919713,0.10230397,0.24981183,-0.120362125,-0.8598023,0.3611945,0.027388124,-0.29320267,-0.29942855,0.46723062,0.112426385,0.6369941,0.07033397,-0.017317377,0.18444851,-0.3124763,0.049129937,-0.19596246,0.03292751,-0.63568056,0.25098258 +464,0.39893162,-0.27513134,-0.45944378,-0.033637475,-0.31174165,0.26648477,-0.224493,0.356489,0.21880385,-0.3677296,-0.18778022,-0.21917261,-0.015666299,0.2634962,-0.09231173,-0.4774355,-0.047826655,0.21653247,-0.5173281,0.4515332,-0.44078532,0.26600334,-0.063328214,0.412376,0.15309456,0.2570921,-0.008792253,-0.055902123,-0.05362066,-0.26638168,-0.2749125,0.2430659,-0.3473919,0.20338202,-0.1015409,-0.22325799,0.0652197,-0.422354,-0.40777,-0.68820816,0.22725011,-0.81209755,0.45772177,-0.04377501,-0.22556782,0.35324818,0.13568054,0.3632331,-0.16736025,-0.04956247,0.16705759,-0.18558596,-0.13328846,-0.1917452,-0.270501,-0.3576294,-0.44992113,0.09795694,-0.23023123,-0.16067824,-0.2355189,0.15160926,-0.2705509,0.018761834,-0.05412874,0.46874878,-0.30601978,0.27451274,0.31221452,-0.25124106,0.17435858,-0.49771416,-0.1186413,-0.048015308,0.38550365,-0.08570119,-0.11730423,0.17389669,0.30146295,0.4209674,0.0010551374,-0.17523393,-0.2591251,-0.102130145,0.045324706,0.5942576,-0.14265624,-0.21648288,-0.13628465,0.114829145,0.05810138,0.21948798,0.14486483,-0.22331055,-0.2449949,-0.08368589,-0.2674711,0.254949,0.34777805,-0.33047402,-0.16487056,0.3526753,0.5571198,0.23977055,-0.08728221,-0.0048523825,0.0716531,-0.50284415,-0.10649813,-0.004790632,-0.15850039,0.37719557,-0.17662899,0.3691246,0.72300684,-0.045431886,-0.049658794,0.058448814,0.06803334,-0.26643065,-0.27382573,-0.04959711,0.23008355,-0.35425338,0.23677579,0.030770082,0.7963149,0.13846442,-0.51164335,0.3559539,-0.5712607,0.21987948,-0.10773623,0.4822587,0.53590864,0.30366567,0.37139353,0.6759819,-0.33707675,0.11717863,-0.1794326,-0.47165075,-0.0365356,-0.08367948,-0.06046052,-0.52629334,0.2065585,0.06907559,-0.04102192,0.1264525,0.2719045,-0.53060853,0.008700303,0.1396578,0.91147447,-0.18850726,-0.22712971,0.72831833,0.83475804,0.81854415,-0.00662694,1.0660021,0.17482957,-0.24149957,0.07873664,-0.19690758,-0.66232646,0.32864732,0.38586494,-0.20422669,0.38650098,0.19956166,-0.06644816,0.43603453,-0.18984611,-0.06167204,-0.14852484,-0.028109057,0.07856913,-0.037909616,-0.5198077,-0.27372512,-0.050104942,-0.089382716,0.24605672,0.22143345,-0.036076196,0.4230078,0.018669853,1.799132,-0.05780097,0.09997327,0.11988466,0.33573535,0.17625989,-0.05208937,-0.13261737,0.45580044,0.27893108,0.14215712,-0.46542466,0.15939544,-0.17809767,-0.3679531,-0.054945447,-0.26906845,-0.14674467,-0.011225927,-0.33044305,-0.14661138,-0.22202727,-0.2811415,0.44051018,-2.9048626,-0.114695095,-0.14808077,0.22074631,-0.36624253,-0.32018915,-0.0496231,-0.39814112,0.25225842,0.26704434,0.40527192,-0.61520976,0.36392567,0.35251692,-0.5718573,-0.15775792,-0.5717426,-0.0729386,0.018649915,0.32428256,0.049137402,-0.034372076,-0.13838957,0.13248776,0.39441517,-0.0038037659,0.11595071,0.3449112,0.5279821,0.09504504,0.59190166,0.025965648,0.56188065,-0.18313059,-0.2122495,0.3508387,-0.25417817,0.41484064,-0.072116375,0.0296793,0.48722488,-0.37714463,-0.73803,-0.57176113,-0.20356987,1.2802218,-0.3405231,-0.39932775,0.14847206,-0.3305619,-0.22720289,0.04911542,0.36255082,-0.010599622,-0.1707747,-0.76806366,0.060309667,-0.0564972,0.14581588,-0.006008125,-0.15665272,-0.37109908,0.6903752,-0.051935576,0.5137524,0.27937967,0.1252403,-0.08957222,-0.26003167,-0.016127653,0.7371719,0.27461308,0.12980086,-0.2579992,-0.2489021,-0.40590897,-0.09828579,0.017798722,0.5672098,0.48952636,0.01285923,0.12920184,0.3028025,0.0856834,-0.017013645,-0.13327073,-0.1601449,-0.03469352,-0.14009802,0.55043024,0.60079676,-0.09728865,0.41562927,-0.004469522,0.35397857,-0.2046654,-0.41727942,0.36247647,0.8591955,-0.23617058,-0.29616565,0.5967297,0.45168218,-0.2656794,0.3099942,-0.5671007,-0.25499952,0.5312514,-0.123385,-0.3985906,0.22719416,-0.25162137,0.08263216,-0.84370273,0.15135676,-0.037137613,-0.45539805,-0.48404625,-0.05503636,-3.2090352,0.30708873,-0.23538037,-0.16736175,-0.13031547,-0.09521333,0.09416116,-0.5377744,-0.51578724,0.16059269,0.060392603,0.64026713,-0.15504518,0.18217164,-0.2527408,-0.23603755,-0.20915255,0.054963693,0.050098095,0.39482927,-0.16155007,-0.40006378,-0.040258866,-0.08711263,-0.2034186,0.05908637,-0.69939816,-0.47384608,-0.07847778,-0.59376115,-0.14721926,0.5510239,-0.28366405,0.04086101,-0.35878527,0.08169736,-0.23140584,0.18566613,0.05924351,0.0628555,0.01735398,-0.12132611,-0.03577683,-0.3254023,0.4026366,0.055012453,0.22655062,0.29084238,-0.10110746,0.1583989,0.36701238,0.6141685,-0.19294651,0.8114223,0.24473481,-0.108378075,0.2366868,-0.17659302,-0.2640036,-0.46747112,-0.2339651,0.0289984,-0.40519634,-0.5026208,-0.12572983,-0.3801171,-0.76402867,0.6103604,0.117247604,0.14931637,-0.06878074,0.28094947,0.6695011,-0.28130147,-0.0140015045,0.055956457,-0.16695718,-0.6156227,-0.25512788,-0.45694366,-0.29306838,0.19684696,0.8300785,-0.2801218,0.22451775,0.09034217,-0.38190684,-0.13054398,0.13537754,0.07461043,0.23391794,0.54984784,-0.1619323,-0.60564154,0.46174648,-0.24171187,-0.20488653,-0.50666124,0.17323564,0.5820857,-0.52922153,0.59021324,0.33588943,0.15899648,-0.04839502,-0.35985374,-0.18324202,-0.034226045,-0.24212125,0.33989725,0.29207394,-0.62531906,0.4116582,0.30437702,-0.07651488,-0.6494156,0.48401892,-0.08080585,-0.26448333,0.047655176,0.36993924,0.091836944,0.03672589,-0.10922213,0.06900466,-0.35913655,0.22178431,0.13003689,-0.096956864,0.16240555,-0.1367619,-0.0970874,-0.7089643,-0.04980938,-0.39079005,-0.3133087,0.1969718,0.058527194,0.06956775,0.14922647,0.09333031,0.32499954,-0.34554005,0.05793226,-0.09470393,-0.11205448,0.2883033,0.38767383,0.4385476,-0.4968958,0.59612614,0.09129074,-0.05996274,-0.031376578,0.01465379,0.40363452,0.01602726,0.42093906,-0.06018173,-0.21803604,0.25312933,0.7583265,0.101977155,0.42397854,0.019528484,-0.10915195,0.13003162,0.04310181,0.19717026,-0.09299179,-0.657623,0.06692357,-0.31019884,0.15070547,0.4350446,0.23953056,0.22007415,0.026894707,-0.39289463,0.033966172,0.055071868,0.009214874,-1.1022936,0.23403695,0.30982897,0.78558296,0.22168787,0.04225823,0.06260369,0.72273606,-0.23424512,0.057163604,0.34929028,-0.056265958,-0.45841452,0.45411018,-0.67973113,0.3916281,-0.090275005,-0.105162166,0.047478918,-0.07759573,0.36992353,0.76011974,-0.2517627,-0.063261345,-0.047101703,-0.29026002,0.03946118,-0.34358725,-0.01769081,-0.53949946,-0.30555883,0.5031242,0.6251201,0.41828716,-0.3122365,0.08994175,0.1255159,-0.05968712,0.06841978,0.1687198,0.042720035,-0.048429232,-0.698019,-0.030292857,0.4844853,0.05638198,0.16091548,-0.06465828,-0.24664369,0.3319135,-0.20422623,0.044570826,-0.1448844,-0.58275586,-0.06316691,-0.2785248,-0.5959435,0.27302346,0.010974821,0.24294277,0.2041748,-0.036586415,-0.18411733,0.4450825,-0.03411734,0.91232115,0.16219282,-0.15009643,-0.4391629,0.14359075,0.06881847,-0.14392696,-0.20295925,-0.37342948,0.07828246,-0.49417406,0.41015598,-0.00035152436,-0.44509727,-0.020900821,-0.10173389,-0.029982623,0.47202882,-0.09233283,-0.0775934,-0.07992127,-0.08524019,-0.31726468,-0.12874936,-0.119358525,0.24641673,0.17717521,-0.114004225,-0.17716551,0.02581381,-0.21816446,0.23543282,0.021883544,0.28908473,0.37721482,-0.028215058,-0.21923088,-0.11608362,0.09406569,0.5070717,-0.1546141,-0.19708855,-0.13187961,-0.44535434,-0.3014229,0.38252315,0.059480906,0.43438992,0.11873278,-0.08081896,0.65931576,-0.050016057,0.98457664,0.004440093,-0.29194355,0.057613246,0.44175225,0.0059262295,-0.062467977,-0.37255624,0.78833014,0.38859072,-0.026158221,-0.117158055,-0.4122087,-0.028936421,0.17094453,-0.13716987,0.06590886,-0.0012632052,-0.54495996,-0.3028504,0.22191606,0.1398873,0.31142533,-0.10148773,0.059711024,0.25849804,-0.05350331,0.377543,-0.36319768,-0.35844183,0.2126334,0.17757,-0.09338929,0.046696,-0.4691342,0.49632883,-0.5018467,0.11532046,-0.38710606,0.1572878,-0.26165643,-0.14244431,0.23678038,-0.14933348,0.43886903,-0.50001985,-0.2716451,-0.2880069,0.3627557,0.20421878,0.05490222,0.4884616,-0.30744162,-0.021608679,0.20551856,0.55646193,0.7610827,-0.18325427,0.17084439,0.4101085,-0.24469115,-0.44920558,0.31044826,-0.3394708,0.15677755,0.07482872,-0.17599398,-0.41126797,0.3702116,0.2308498,0.20239243,0.03328601,-0.5778696,-0.036837403,0.36554432,-0.24240042,-0.2126797,-0.2144662,0.0370155,0.5094787,-0.1490786,-0.43032658,0.050224468,0.06307737,-0.12970187,-0.45565835,-0.02391095,-0.2903218,0.3290081,0.02243137,-0.29006794,-0.18963,-0.0950929,-0.3865117,0.1462397,0.18085746,-0.33501577,0.09060943,-0.33784738,-0.09531889,0.8641667,-0.26351127,0.17074485,-0.5911338,-0.3106005,-0.6669511,-0.42356452,0.3000766,0.01137735,0.031152477,-0.42108622,-0.011915958,-0.16520678,-0.3302016,-0.050793275,-0.35648057,0.42547634,0.12137343,0.4616556,-0.07721111,-0.7750032,0.25263876,-0.027598495,-0.31900755,-0.5814077,0.463561,-0.12984724,0.66560155,0.049179256,0.07936774,0.30803075,-0.4521705,0.01691585,-0.24321891,-0.0626752,-0.80516076,-0.047899667 +465,0.43468145,-0.32778743,-0.6378153,-0.07537391,-0.22286658,0.0014487902,-0.24980967,0.5680304,0.19973443,-0.23412816,-0.12468111,-0.26197764,0.104857825,0.5576377,-0.20768309,-0.7494345,0.008806233,0.1365617,-0.602349,0.36861277,-0.5255426,0.4077092,-0.064956866,0.48495516,0.09715178,0.20840067,0.19165371,-0.03115061,-0.032823235,-0.17069846,-0.06626991,0.10086295,-0.47331032,-0.1718897,-0.00080262247,-0.49247012,0.16798961,-0.32860032,-0.40202776,-0.7886472,0.48319232,-0.8533456,0.5444115,0.16255331,-0.40104005,0.12620278,-0.06729282,0.29299927,-0.36570486,0.1278951,0.13260199,-0.043319363,0.1448191,-0.34695137,-0.34313694,-0.59892464,-0.52529025,-0.10800981,-0.64593387,-0.22161657,-0.27916446,0.10475788,-0.38011912,0.06217432,0.06277213,0.03803088,-0.5180028,-0.086959004,0.23042472,-0.1464588,0.35289,-0.59240466,-0.16862762,-0.16540973,0.07589836,-0.054151442,-0.07151825,0.33539864,0.28367326,0.5181174,-0.1383204,-0.13962246,-0.23565096,-0.06611648,-0.10396841,0.58276826,-0.22462924,-0.5435249,-0.20286275,-0.06958641,0.30187944,0.29261252,0.112519376,-0.11663694,0.021125654,0.16163714,-0.36667967,0.36916795,0.49694154,-0.4120945,-0.11798153,0.38705316,0.3537395,0.3179913,-0.09228077,-0.1295821,0.0625107,-0.5474675,-0.22993092,-0.016065026,-0.3187267,0.5943188,-0.1491173,0.32775566,0.75516814,-0.2769083,0.25443247,0.0070634335,0.08230103,-0.26642284,-0.12689157,-0.26341763,0.17338397,-0.4920163,0.12798254,-0.22968914,0.7305677,0.2422501,-0.48936835,0.40759793,-0.6144001,0.20949109,-0.13114482,0.50198066,0.6246523,0.4342718,0.27711114,0.63921916,-0.35001037,0.028343031,-0.06839686,-0.23467867,0.41900802,-0.11466536,-0.13484725,-0.43848673,-0.07384939,0.10581652,-0.08066111,0.20254247,0.7310481,-0.7000818,0.0190653,0.038066614,0.81773585,-0.33839583,0.12395424,0.4978304,1.1405934,0.95738226,-0.10435811,1.166765,0.30637783,-0.34402764,0.18427734,-0.16099165,-0.8910801,0.3255132,0.43821657,-0.57311064,0.5628775,0.029623033,-0.11393402,0.43854782,-0.22367871,-0.06320438,-0.17491882,0.17535351,-0.0110611515,-0.15673833,-0.40472892,-0.23292035,-0.17871487,0.053756464,0.040957004,0.35970864,-0.34646836,0.21079904,-0.12510242,1.6096225,-0.060927648,0.079478465,-0.014804646,0.64376837,0.2846066,0.014734118,0.08511704,0.46053943,0.34493637,0.20925796,-0.81195,0.15103602,-0.32432714,-0.47822514,-0.18323769,-0.34125766,-0.03703774,-0.121746026,-0.57029897,0.0727072,-0.019028932,-0.20243323,0.26956603,-2.2692046,-0.32648847,-0.21148781,0.435339,-0.25432223,-0.30387792,-0.108122796,-0.32036915,0.45107567,0.3448635,0.48474565,-0.72574204,0.3058966,0.59507173,-0.4627348,-0.06865216,-0.5621698,-0.1423498,-0.15511791,0.2845238,-0.027363976,-0.18755007,0.13160504,0.33141991,0.5663989,0.023659488,0.23025428,0.118510485,0.62327987,-0.098898135,0.4175036,-0.12764682,0.49132648,-0.27142295,-0.17767431,0.28261948,-0.4708527,0.27174905,-0.23965698,0.14332752,0.42916545,-0.46184158,-1.0332993,-0.5392585,-0.040673513,1.2490892,-0.40313712,-0.4558861,0.3466197,-0.19190198,-0.19361897,-0.08894268,0.6041493,-0.17794447,-0.103881665,-0.8383789,0.16489233,-0.1552632,0.12661622,0.092876665,0.11307057,-0.21113239,0.64597183,-0.015749725,0.3381028,0.14303547,0.21579534,-0.1749232,-0.50349617,0.05121843,0.7044843,0.50453264,0.13066101,-0.11927682,-0.16582388,-0.39923653,0.08998406,0.11958472,0.38447914,0.81905013,-0.0054069213,0.18987362,0.2646994,0.050803095,0.0024577181,-0.29792282,-0.36380133,0.11342412,0.06307279,0.5963059,0.7518668,-0.2163213,0.35757485,0.060107056,0.27433398,-0.27117658,-0.48493174,0.5374944,1.1014739,-0.22829014,-0.024173537,0.60574466,0.5743809,-0.52365375,0.5823479,-0.8677711,-0.44730827,0.5071706,-0.13981093,-0.41277936,0.2520177,-0.29271165,0.117085494,-0.88158035,0.4052968,-0.1476142,-0.16358918,-0.52955943,-0.13329042,-3.837535,0.24645321,-0.34735635,-0.1507623,-0.14602792,-0.015776915,0.44834018,-0.86221343,-0.5805947,0.022199722,0.07169509,0.6678495,-0.0952257,0.07280054,-0.26572448,-0.44194445,-0.3434523,0.15565902,0.08627965,0.32777607,0.009513855,-0.56568843,-0.09377909,-0.18441482,-0.4966631,0.16960816,-0.6385654,-0.4770769,-0.19772714,-0.57492554,-0.22622709,0.73831797,-0.033591706,-0.031719875,-0.20536196,0.008323519,-0.1156345,0.24069785,0.22358716,-0.040516336,-0.076749586,-0.11804446,0.041198473,-0.33269867,0.19071741,0.062922634,0.30253816,0.18786968,-0.141952,0.015936106,0.7471269,0.66350365,-0.06524366,0.8670804,0.52813077,-0.1037642,0.26471445,-0.28832453,-0.31833476,-0.5163911,-0.41365895,-0.099099696,-0.3529618,-0.39060232,-0.18221445,-0.32233164,-0.75663805,0.5702872,0.06010686,0.38158128,-0.13352804,0.2829392,0.47674838,-0.09235714,-0.0928591,0.09329403,-0.16098152,-0.54107314,-0.119636066,-0.6624513,-0.3741612,0.46867982,0.8102947,-0.31446812,0.055401534,0.13385306,-0.11360752,0.115595184,-0.009673521,0.06486491,0.06779344,0.31446505,-0.0948151,-0.72686774,0.44875765,-0.075552665,-0.12939723,-0.72208714,-0.019126922,0.6934213,-0.7023893,0.3136761,0.44531405,0.16537993,0.03477857,-0.5419633,-0.0186238,0.24655561,-0.15507732,0.20395863,0.21164544,-0.7299984,0.34087434,0.36390457,-0.4410626,-0.4783372,0.7591321,0.004365807,-0.3577856,-0.17412753,0.41391388,0.22184277,0.13514672,-0.29428402,0.40873694,-0.57185614,0.26212138,0.29895863,-0.112461925,0.51526463,-0.013212125,-0.15267918,-0.8209025,0.22550605,-0.47366634,-0.3999587,0.26169524,0.036973383,0.11087588,0.2144966,0.17105883,0.3991252,-0.4430038,0.060322892,-0.071374156,-0.29101273,0.5168557,0.5464495,0.53157645,-0.32411674,0.74106294,0.055158705,-0.15457268,0.23820657,0.011373748,0.4326109,0.032844495,0.5213975,0.11744813,-0.2541832,0.38295457,0.8534271,0.103293516,0.34093884,0.16455893,-0.11150966,0.16676916,0.21280809,-0.04141204,-0.019778142,-0.4584596,-0.08299256,0.07142968,0.21280806,0.719248,0.1532297,0.29535303,-0.013991068,-0.39428496,0.19726408,0.28694776,-0.035986796,-1.334855,0.25851986,0.24334736,0.6642985,0.5016798,-0.0061913184,0.015834963,0.43824276,-0.12541576,5.0519902e-05,0.35788378,0.10078772,-0.6285989,0.7115574,-0.59648395,0.4082137,-0.1710322,0.04007521,-0.06478617,0.051377963,0.4333993,0.8129433,-0.07335081,-0.056339473,0.09332299,-0.39306298,0.002992183,-0.407168,-0.05659665,-0.5930199,-0.29213956,0.5034406,0.45451102,0.2635859,-0.20251285,-0.015140157,0.0021009545,-0.19811969,0.28268543,-0.06342112,0.043977547,-0.21623991,-0.7118148,-0.30787036,0.4636664,0.11828646,0.19066697,-0.10477164,-0.19970576,0.34882447,-0.28465092,0.07851851,0.11909708,-0.75541836,0.03410038,-0.56279,-0.60259455,0.35929433,-0.030630061,0.308725,0.20151426,0.031651437,-0.35701153,0.2917328,-0.07424768,0.88936776,-0.02161105,-0.32492957,-0.35389042,0.13559987,0.123230666,-0.2582234,-0.15526606,-0.29967955,0.096868984,-0.37268606,0.4704553,-0.12125028,-0.2091559,-0.089731865,-0.27810556,-0.033071984,0.4643226,-0.19702005,-0.3123853,-0.21902442,-0.13155837,-0.3380301,-0.33937135,-0.21878009,0.19002075,0.0751096,0.02704519,-0.16193524,-0.17362387,0.14148687,0.5735886,-0.0753211,0.30505848,0.5561245,0.30316907,-0.28853512,-0.26362953,0.26136085,0.5627782,-0.103973456,-0.04298061,-0.44789353,-0.6448752,-0.38976905,0.14935142,-0.32538182,0.47630307,0.215223,-0.3442336,0.8586676,0.097689055,1.1054982,-0.13796109,-0.34551477,0.04946643,0.7045744,0.009752795,-0.14722134,-0.42461395,1.0468912,0.5496555,-0.2517901,-0.3481935,-0.3371123,-0.29325712,0.3482984,-0.37957776,-0.20615955,-0.116542935,-0.7460905,-0.32858655,0.20272334,0.4512001,0.19021003,-0.04609414,0.25673983,0.21600562,0.20443778,0.25693157,-0.60154504,-0.3981553,0.34043404,0.23942153,-0.12412796,0.1311509,-0.40229404,0.43026295,-0.46142054,0.010997802,-0.42575562,0.19856791,-0.048993815,-0.514909,0.18897648,0.003361779,0.28450927,-0.30804113,-0.39385024,-0.19121878,0.4390413,0.13203983,0.21943177,0.5688741,-0.39610443,0.030927265,-0.10099503,0.71287966,1.1627444,-0.12244239,-0.11057352,0.45954534,-0.59248483,-0.87996656,0.34981743,-0.3354477,0.14416118,0.030238977,-0.34484783,-0.69608873,0.4083188,0.02335906,-0.062085103,0.13873766,-0.438761,-0.29695714,0.31199095,-0.30555347,-0.31476712,-0.4325179,0.20432086,0.6230083,-0.39270028,-0.18086445,0.090168215,0.444803,-0.16635828,-0.6073637,-0.12905051,-0.4495714,0.47878805,0.117934205,-0.3973503,0.1380776,-0.04589175,-0.48588145,0.15547948,0.26059085,-0.35628104,0.17642236,-0.3833324,-0.027417326,1.0398469,-0.19622523,-0.16527694,-0.6980717,-0.45744416,-0.7640919,-0.4159218,0.60224044,0.22531821,0.12004294,-0.678675,0.17501782,0.0061290674,-0.07401656,-0.15619296,-0.26748526,0.43631387,0.14550622,0.48798504,0.04705253,-0.66397625,0.15589847,0.10031108,-0.454891,-0.6642371,0.6472674,-0.30349913,0.8321271,0.16371413,0.09963576,0.23893769,-0.36027035,0.016467681,-0.27022693,-0.25439999,-0.7077131,0.19873774 +466,0.39498043,-0.1846466,-0.45923853,-0.048765987,-0.14194578,-0.25621954,-0.07456515,0.6306386,0.23242573,-0.3445705,-0.24152379,-0.19105506,0.04437296,0.4929615,-0.14326704,-0.65039915,-0.124863185,0.22396636,-0.47205043,0.63467216,-0.29675588,0.12653889,-0.05949043,0.52479464,0.15144731,0.13235414,0.19694877,-0.03475495,-0.021960616,0.06540939,-0.019790133,0.29414544,-0.5124518,0.12572,-0.110549115,-0.4476095,-0.12713324,-0.5577552,-0.42262658,-0.71396416,0.4257101,-0.7305996,0.5095436,0.19019906,-0.28204662,0.40148762,-0.115849115,0.2619875,-0.35138285,-0.17011636,0.033868033,-0.056694206,0.022683987,-0.31959477,-0.122723736,-0.13310438,-0.5984611,0.12477374,-0.34161362,-0.035141762,-0.32669127,0.13489772,-0.32293585,-0.115035415,-0.0031230499,0.47051588,-0.43773842,-0.107787974,0.1827846,-0.043037713,0.5250706,-0.55884856,-0.1472153,-0.20898652,0.18349324,-0.27816716,-0.21855848,0.40449348,0.13480304,0.45241866,-0.09973931,-0.15445496,-0.48638096,0.14539774,0.08214589,0.4710625,-0.23806633,-0.6764942,-0.031014303,0.10818762,0.061650634,0.21759538,0.20350654,-0.27205274,-0.11389816,-0.08951471,0.0071471133,0.426716,0.5365912,-0.1391356,-0.30552956,0.35558447,0.59854907,0.17648691,-0.05747639,-0.13052581,-0.010463144,-0.5674457,-0.22187693,-0.12179614,-0.24688238,0.64014125,-0.16304286,0.22148061,0.5544966,-0.11352697,-0.112430096,-0.034102768,-0.053670686,-0.018675208,-0.3512303,-0.3135691,0.45098162,-0.2359302,0.32910326,-0.11582901,0.6895118,0.23799467,-0.85873324,0.41358694,-0.5596879,0.21124025,-0.15920241,0.5728101,0.81413645,0.4470559,0.39100692,0.7352647,-0.44978634,0.12084105,0.0011402766,-0.46952057,0.07848633,-0.18906434,-0.14720415,-0.5407229,-0.14959306,0.036383193,-0.2686944,0.28311613,0.19319057,-0.5769201,-0.02908056,0.2213761,0.72896963,-0.27263775,-0.10002605,0.8134901,1.0975164,1.079846,0.021860063,0.9966143,0.1713868,-0.31935894,0.42895755,-0.43703112,-0.8524339,0.25845483,0.28617683,-0.31367728,0.30546036,0.09302575,0.03973156,0.39005423,-0.5555932,-0.03488308,-0.23339029,0.11957737,0.003278258,-0.23935981,-0.6231013,-0.19008346,-0.2511534,0.06399628,-0.0077764317,0.31302106,-0.1922629,0.42660832,-0.056663107,1.5396461,0.0038256745,0.09683678,0.043725315,0.5163861,0.21408796,-0.16081442,-0.20464808,0.32479212,0.31266996,0.124316074,-0.6252346,0.20838137,-0.15885915,-0.5373458,-0.06277185,-0.23859817,0.15485741,0.11202743,-0.31256,-0.15741819,-0.1530634,-0.33982202,0.46539295,-2.6925857,-0.18663247,0.057382483,0.37488472,-0.21610934,-0.30924854,-0.07699487,-0.5009017,0.5310425,0.3881999,0.5404802,-0.6870071,0.16474135,0.3275601,-0.5896196,-0.0649365,-0.59858155,-0.12359882,-0.050987486,0.36995038,0.018912008,0.06783143,0.28017202,0.21967228,0.4584471,-0.006420354,0.028275639,0.15401582,0.28266752,0.0024471283,0.25027663,-0.19725831,0.48987722,-0.33058056,-0.27945176,0.22434372,-0.21532829,0.16863938,-0.20696343,0.1434525,0.42661998,-0.43331861,-0.99289036,-0.5120856,-0.065751195,1.0456439,-0.110474795,-0.4136417,0.4139024,-0.34044215,-0.061683137,-0.16297852,0.48461214,-0.1116029,-0.21164648,-0.8309696,-0.048907865,-0.050464194,0.10994935,0.050046246,-0.13688916,-0.5233147,0.6125181,0.032633316,0.38099155,0.41536632,0.21544282,-0.27539012,-0.64042145,0.052416395,0.6563134,0.33302423,0.1542778,-0.2520872,-0.15632033,-0.28830048,-0.035245437,0.103936076,0.4346824,0.7631333,-0.11607329,0.044340704,0.34051895,0.05363814,0.081414595,-0.089763016,-0.24704766,-0.096317135,-0.11049963,0.6336004,0.9125492,-0.27678218,0.38316965,-0.091812246,0.3447611,-0.0654691,-0.32884148,0.6809843,1.2308904,-0.10923847,-0.19085068,0.61199605,0.41150025,-0.26936814,0.51568395,-0.57071024,-0.121716835,0.39358306,-0.18972683,-0.39216506,0.07699216,-0.28338555,0.17826729,-0.9864156,0.2009641,-0.23179038,-0.39535293,-0.82529974,0.0017228723,-3.3333256,0.15492627,-0.4745911,-0.26823676,-0.032958224,-0.17475446,0.09025067,-0.80898476,-0.57243526,0.25609842,0.16733404,0.6978747,-0.11882442,0.19359471,-0.20487015,-0.24775167,-0.2980012,0.061074555,0.26738653,0.3118092,0.19811754,-0.39510584,-0.04593696,-0.10486916,-0.4741961,0.046238143,-0.4804881,-0.30591905,-0.3184199,-0.6861925,-0.35560802,0.5441061,-0.2513503,0.06400014,-0.18152083,-0.106382035,0.01802564,0.3256715,0.07943214,0.28045708,0.12707542,0.025565654,0.15935378,-0.1891879,0.10740035,0.07706735,0.2733995,0.3279226,-0.27306178,0.21599068,0.64052004,0.8603063,-0.18568899,0.7309206,0.88907003,0.057028443,0.1580968,-0.34195653,-0.2606137,-0.6725807,-0.42005157,-0.052294344,-0.34568262,-0.69495463,-0.044130694,-0.4396303,-0.86581916,0.5905685,-0.110511065,0.36566505,0.1241061,0.09422789,0.5818946,-0.264726,-0.006078293,-0.042154253,-0.057972908,-0.5846706,-0.1742152,-0.5591596,-0.5797958,0.06944715,0.99216205,-0.13744037,-0.027709356,0.043070752,-0.1269703,0.03269147,0.16581191,-0.11440762,0.28132832,0.22182584,0.053517163,-0.6126373,0.5207824,0.21899967,-0.24386747,-0.6234016,0.2861567,0.46149072,-0.6200452,0.55305845,0.2343244,-0.12536815,-0.13974883,-0.6983094,-0.26401302,-0.009409882,-0.12794419,0.37931088,0.32584378,-0.78229064,0.4690121,0.48199877,-0.44369534,-0.8268588,0.45109963,0.035139408,-0.47128668,-0.05479008,0.122216485,-0.01956912,0.041728575,-0.36888623,0.32730582,-0.3581908,0.23036341,0.23633225,-0.008602497,0.26798937,-0.23803693,0.08562777,-0.89259404,0.28961632,-0.6260622,-0.1638547,0.30447838,0.2259513,0.09438595,0.04179198,0.21694076,0.3864732,-0.27946746,0.15827294,-0.06811127,-0.21657403,0.18038131,0.5078874,0.4225954,-0.49797478,0.51644963,-0.040159877,-0.17652436,-0.17669697,0.0011887898,0.47439042,0.00786445,0.32768974,0.040192783,-0.27733403,0.055407565,0.56857514,0.1765284,0.3386121,-0.040173445,0.035242874,0.3946497,0.11726737,0.35110986,0.00748088,-0.4414413,0.091558926,-0.22631784,0.1715643,0.46880743,0.16441129,0.32977495,-0.25162387,-0.43158078,0.0014184279,0.26486248,0.12206795,-1.3512353,0.4387599,0.29383263,0.804418,0.73842806,0.19965146,-0.045906752,0.70968604,-0.20933919,0.22486635,0.3382151,-0.0071049533,-0.69619054,0.51069105,-0.82364494,0.37297976,0.010632376,-0.12944268,0.05870758,-0.047849316,0.27875006,0.55717564,-0.21164858,0.097675584,-0.024623385,-0.15837018,0.100206316,-0.4074721,0.1282252,-0.7037615,-0.27047798,0.58771676,0.56830627,0.2550374,-0.18705185,0.02001839,0.15889832,-0.011065225,0.13999663,0.02064105,0.18382053,0.10555809,-0.60235643,-0.2362153,0.42641202,-0.040165823,0.13042311,-0.20729046,-0.19705468,0.094380535,-0.16272287,-0.38277373,-0.05835546,-0.7336922,0.074363485,-0.13465114,-0.18088089,0.6827233,-0.081338786,0.34304562,0.18225108,0.25680813,-0.36647078,0.2675622,0.022092521,0.8198983,0.12139321,-0.2153822,-0.28522506,0.28502956,0.20219582,-0.17021833,-0.039049152,-0.19392705,-0.08452516,-0.34678987,0.63318205,0.091319025,-0.22129607,-0.03234793,-0.05954552,0.06870352,0.624992,-0.14679138,-0.1671719,-0.12284794,-0.22739106,-0.32897407,-0.26396486,-0.13166448,0.32108662,0.26388392,0.046272904,-0.025240997,0.04951315,-0.06312236,0.6736052,0.047119632,0.37618995,0.21898745,0.121347345,-0.37221512,-0.27749744,0.16708319,0.3705939,0.045862336,-0.19384648,-0.2542024,-0.41936693,-0.36775216,-0.2318395,-0.09486374,0.4285945,0.07766176,-0.120034,0.527631,0.23464982,1.1619549,-0.030212333,-0.40320686,0.22319023,0.443656,0.012147297,-0.17295621,-0.31306514,0.948154,0.55720407,-0.16908377,-0.13861667,-0.15171246,0.017086783,0.18977256,-0.20440696,-0.19415247,0.053135555,-0.5816708,-0.28369698,0.28876892,0.2202369,0.29685256,-0.15866749,0.19637525,0.13315131,0.011360452,0.29425934,-0.24270584,-0.19158655,0.38856867,0.278308,0.10032063,0.12199665,-0.3295761,0.37411836,-0.3187071,0.03049565,-0.30900946,0.18367988,-0.22198947,-0.5519886,0.17435496,0.12313048,0.34312353,-0.060725633,-0.27967098,-0.26422378,0.4995595,0.14571242,0.13821702,0.56297797,-0.28103396,0.07650518,-0.10801635,0.30185822,1.0208479,-0.31288955,-0.11570728,0.2700191,-0.26503047,-0.69408154,0.456409,-0.12959006,0.15803866,-0.28915122,-0.12788415,-0.8098914,0.108927466,0.18161368,-0.021938095,-0.0013047172,-0.6271832,-0.27594283,0.18149066,-0.2993687,-0.19077568,-0.4253184,0.07733696,0.604233,-0.32551822,-0.41148105,0.20347631,0.07698164,-0.123678,-0.46160784,-0.10928873,-0.3642381,0.23025036,0.14726175,-0.5283381,-0.10611666,0.20302089,-0.3349729,0.113084435,0.036302228,-0.26801932,0.13454838,-0.41265082,-0.09265804,1.1038938,-0.3007794,0.22629388,-0.49778035,-0.46926853,-1.114575,-0.3240455,0.7242964,0.03583156,0.084474385,-0.80797696,0.11010436,0.011465128,-0.20150131,-0.15701781,-0.16466542,0.3007389,0.12968366,0.3065263,-0.08173359,-0.69131327,0.13388757,0.20965695,-0.03413689,-0.6362897,0.55495864,0.10343114,1.0766311,-0.025069088,0.15694602,0.3047211,-0.43022457,-0.058667164,-0.26001897,-0.3121992,-0.51847833,0.025583217 +467,0.5330191,-0.1667318,-0.5979684,-0.21661724,-0.31873578,0.1847531,-0.35157543,0.24135756,0.29157168,-0.16154051,-0.118956044,0.022826228,0.18211898,0.45495528,-0.12701829,-0.9416556,0.05478539,0.32023033,-0.5873104,0.57069606,-0.5189806,0.3081165,0.042499278,0.43890736,0.25148222,0.084100805,0.12671581,0.1676334,-0.083465986,0.062386017,-0.052630518,0.23900546,-0.56440693,0.13852407,-0.25714606,-0.4925379,-0.2707037,-0.4802126,-0.3406231,-0.89660424,0.3659552,-0.81505287,0.64076334,-0.18869124,-0.46702358,0.075103804,0.08309867,0.12680931,-0.22646295,-0.094251394,0.18992485,-0.23522094,-0.17030177,-0.17503121,-0.290785,-0.4058681,-0.5958201,0.025679203,-0.6895266,0.119196855,-0.13713269,0.13987735,-0.3385661,-0.013327869,-0.10916033,0.48509052,-0.32110897,0.08962561,0.28383118,-0.0950739,0.08112711,-0.41722077,-0.10262445,-0.10617894,0.36495638,0.08079965,-0.49980664,0.29923338,0.39927548,0.50163305,0.06778607,-0.44364443,-0.3715029,0.069530465,0.096547626,0.49398112,0.05101761,-0.38893107,-0.4836538,-0.011009506,0.3332341,0.08898958,0.045824032,-0.28104416,-0.08224607,0.050877668,-0.09012128,0.61609566,0.5140289,-0.24315913,-0.09807386,0.32651773,0.53889364,0.19663158,-0.31465262,0.095394,0.029827228,-0.6278275,-0.16264808,0.10563507,-0.07440402,0.63085526,-0.37564352,0.1530642,0.5700884,-0.1420683,-0.37685442,0.09291696,-0.005156449,-0.07915517,-0.23557453,-0.20555861,0.26810485,-0.5505105,-0.023003897,-0.20916994,0.6543546,0.2734217,-0.9180976,0.39887252,-0.49257892,0.3053176,0.04522913,0.63025033,1.1193212,0.44462886,0.34975663,0.9043481,-0.32072097,0.114062384,0.26825044,-0.44048056,0.050498135,-0.19412567,0.14496008,-0.5831021,0.04252961,-0.07051417,-0.23405112,0.15674771,0.7475868,-0.49850026,-0.123800874,-0.1026078,0.5922588,-0.37285396,-0.24854349,1.155596,1.0522152,1.1924458,0.09310765,1.3050703,0.44460732,-0.056056015,-0.09163545,-0.18914123,-0.69370365,0.24584839,0.10351692,-0.34525728,0.7776331,0.02032673,0.058569986,0.48850566,-0.3200376,-0.11050554,0.054222196,0.17947683,-0.077548705,-0.07096248,-0.51022214,-0.34365073,0.16162512,0.11502273,0.19209644,0.3374465,-0.22208823,0.7720833,0.103966355,1.2387229,0.13902943,-0.18703093,-0.16870871,0.37853232,0.41318497,-0.23474209,-0.26285234,0.33675876,0.42831537,-0.114244774,-0.56569254,-0.15096048,-0.35532758,-0.16538687,-0.1893989,-0.33982614,-0.09651508,-0.29884106,-0.3796887,-0.2262713,0.101205066,-0.41988117,0.4655302,-2.3690765,-0.5515973,-0.025084661,0.29448012,-0.04705145,-0.473073,-0.42834383,-0.6292137,0.3577493,0.2425939,0.4287708,-0.78517085,0.45136425,0.3500723,-0.6655427,-0.07627903,-0.7227332,-0.05354442,0.026352942,0.38610226,-0.032472108,-0.24658029,0.13580814,0.31289315,0.7065887,0.060676064,-0.012802647,0.45765516,0.6167108,-0.17701821,0.49257842,0.09911042,0.66507083,-0.18410088,-0.12393902,0.4396135,-0.35046366,0.3321612,-0.2645026,0.12258851,0.623478,-0.51108754,-0.84686595,-0.55176216,-0.016006645,1.2800217,-0.36925894,-0.48422793,0.020060828,-0.391355,-0.29050046,0.18295991,0.46826896,-0.048698187,0.03188449,-0.7405637,-0.21788533,0.1855615,0.06023676,-0.17839918,0.22696564,-0.32355312,0.6922129,-0.17950591,0.39593193,0.35403326,0.14745788,-0.21186724,-0.65531284,0.23293538,0.758701,0.26954132,0.07630899,-0.427749,-0.25052845,-0.35214335,-0.20463812,0.056917462,0.6315225,0.5910166,-0.11527895,0.05618828,0.42980137,0.0307614,0.14642325,-0.19221221,-0.30266908,-0.23444855,0.04947256,0.6615532,0.9798058,-0.2510038,0.5656871,-0.10848717,0.20513186,-0.0794975,-0.68924683,0.759028,1.0664815,-0.27242455,-0.35717988,0.3592486,0.14927197,-0.43355793,0.46017966,-0.39804888,-0.20650163,0.58868724,0.034187123,-0.2585444,0.29134035,-0.38001236,0.1264576,-0.8696385,0.24103239,-0.09447446,-0.582701,-0.6391342,-0.19633736,-3.8801448,0.14357014,0.022768319,0.031859428,-0.23497216,-0.29553345,0.2042661,-0.50808316,-0.7671798,0.048669994,-0.00653424,0.7056952,-0.3117195,0.0943627,-0.31060606,-0.45420012,-0.35507086,0.25134033,0.2712632,0.5105565,-0.0074871522,-0.37540603,0.080536745,-0.45896897,-0.59008604,-0.16322266,-0.75989485,-0.4909644,-0.12733427,-0.66200536,-0.28495792,0.7882622,-0.34639543,0.048239343,-0.32531086,0.04779189,0.05537392,0.34343284,-0.021041395,0.101729564,0.19006209,0.017877916,0.10529393,-0.08193477,0.22082332,0.007715766,0.21664225,0.4054515,-0.0944634,0.43367764,0.6389619,0.8726286,-0.15004556,1.0424182,0.35250887,-0.077623256,0.26869297,-0.20384811,-0.34467217,-0.6675028,-0.14499633,-0.23725213,-0.6755763,-0.43084636,-0.19248597,-0.45007125,-0.9804129,0.4485759,-0.0031151006,0.19879031,-0.10055732,0.4452822,0.511835,-0.17552508,0.17732306,-0.21976106,-0.38580346,-0.5527529,-0.39557832,-0.69031364,-0.6121529,0.08453585,0.84333813,-0.14281853,0.026894907,-0.053002425,-0.49867788,0.22118306,0.27583647,0.2226878,0.20848384,0.2958364,-0.15365975,-0.7124157,0.14585085,-0.253722,-0.1268501,-0.6206721,0.22762145,0.71896166,-0.47069654,0.5792284,0.41299608,0.17947435,-0.045531187,-0.58848953,-0.042626016,0.17019643,-0.14231773,0.72698075,0.35790667,-0.60233194,0.58027077,0.2204748,-0.13581927,-0.6171277,0.5704659,-0.00806966,0.007966944,-0.083045505,0.5022331,-0.036080923,-0.035101365,-0.18200563,0.1290781,-0.5600055,0.21921457,0.22408852,-0.029977152,0.2804773,0.057324264,-0.26405483,-0.7558343,-0.14574681,-0.6109322,-0.29110596,-0.040184226,0.12420894,0.27269605,-0.18710062,0.28254262,0.43300357,-0.31751826,0.05339023,-0.23290761,-0.2559578,0.31862,0.56127816,0.3198585,-0.47991082,0.687839,0.030767053,0.07700542,0.034779344,-0.08881031,0.39519194,0.26162767,0.43373445,0.27189702,0.026131127,-0.051584255,0.6444705,0.23589425,0.41749796,0.23139203,-0.27273256,0.10618604,0.08642864,0.43720534,-0.21380305,-0.20344631,0.047951933,-0.30753464,0.22346838,0.5427629,0.2099085,0.08816164,-0.123097196,-0.30663034,0.13235576,0.119602926,-0.062898815,-1.7911146,0.46382698,0.38976097,0.75287706,0.35957885,-0.046060685,0.0010597706,0.43549326,-0.39297867,0.10312695,0.54671717,0.048710447,-0.2944837,0.49158064,-0.7454896,0.49775696,-0.18913303,0.16221325,0.2171541,0.099503435,0.37986448,0.9279334,-0.15158577,0.09074599,-0.08242234,-0.120383516,0.15196338,-0.33405086,0.027688235,-0.4786769,-0.3191785,0.8149253,0.41157055,0.39042202,-0.43032566,0.04920571,0.04564147,-0.17439492,0.1333688,-0.0006919993,-0.011026795,-0.3229761,-0.65500915,-0.17547129,0.49503753,0.027817488,0.11415822,0.14848697,-0.21728878,0.2404627,-0.06509222,-0.011213005,-0.19140713,-0.9028273,-0.19765688,-0.31633767,-0.5627081,0.56782764,-0.38702223,0.25355902,0.27232778,0.022865878,-0.3455537,0.19468312,0.041420996,0.7091693,0.20754561,-0.09592422,-0.22344184,0.19278334,0.43546385,-0.35846907,-0.060100455,-0.30916032,0.26498583,-0.43827057,0.5251824,-0.1816306,-0.37167114,-0.13502665,-0.018787,0.008310063,0.41329965,-0.34044117,-0.10459956,0.028686536,0.06182479,-0.23982465,-0.160293,-0.30986282,0.26674542,0.14774469,-0.26389328,-0.018074155,0.031345267,-0.1336559,0.4357381,0.0040164376,0.27534673,0.461164,0.0040677446,-0.32616535,0.03682675,0.17411272,0.5409387,0.33095354,-0.33613792,-0.45187297,-0.20800985,-0.418576,0.35941258,-0.15816939,0.052963313,0.08676902,-0.25230595,0.68751776,0.1497835,1.353577,0.04190443,-0.3650991,0.13804662,0.5968947,0.12225338,-0.10777758,-0.23915373,0.9385548,0.46846333,-0.26851568,-0.05559483,-0.5011332,-0.09660586,0.30155304,-0.25347278,-0.21199211,-0.1516095,-0.69089764,-0.18697342,0.204772,0.10054896,0.16591416,-0.14875767,0.100975044,0.10012921,0.04064581,0.33367515,-0.5596051,-0.12300159,0.4332552,0.2500196,0.013446687,0.11812067,-0.33414772,0.39182827,-0.562736,0.08875382,-0.50397825,0.23190962,-0.12239998,-0.38404015,0.31091315,0.17680784,0.20563708,-0.30087137,-0.3147722,-0.4315836,0.5561442,0.15652843,0.08483742,0.50858647,-0.19046034,-0.20882286,0.45430037,0.47277185,1.2341012,-0.092440896,0.12396972,0.2916114,-0.2847471,-0.62933403,0.22398856,-0.5226856,0.34525946,-0.09369801,-0.26205948,-0.65338475,0.13202292,-0.013208575,0.19206135,0.12937471,-0.58249086,-0.28788158,0.33593076,-0.26222256,-0.05584254,-0.37733343,-0.005944844,0.57770854,-0.34350422,-0.47728953,-0.009096571,0.23910463,-0.26747552,-0.63146335,0.13581456,-0.3869265,0.43859452,0.04351254,-0.38524956,-0.033966567,0.21911065,-0.524518,0.2552654,0.43461823,-0.43204588,0.17553835,-0.19446182,-0.11715715,1.0965954,-0.38026524,0.42662236,-0.49315313,-0.593456,-0.96869105,-0.24104404,-0.010782204,0.12508836,-0.107077,-0.81482476,-0.089553766,-0.18560669,-0.14987575,0.14156635,-0.5591289,0.46610168,0.17239107,0.3607963,0.04907493,-1.030659,-0.013105606,0.13659994,-0.2752121,-0.54997593,0.60628045,-0.045944426,0.7191931,0.14083888,0.2778742,0.15999115,-0.5802719,0.31150988,-0.27138105,0.0047249966,-0.5742178,-0.06595205 +468,0.5694362,-0.045545444,-0.6567918,-0.16152166,-0.39166275,0.0018534542,-0.2025833,0.534766,0.03863627,-0.58068836,-0.20792815,-0.3717796,0.06981537,0.47408772,-0.3724737,-0.8340614,0.11061323,0.10622995,-0.39202365,0.50145584,-0.44730175,0.47078595,0.18634887,0.32501885,0.26200092,0.15653175,0.3311375,-0.13024692,-0.34398207,-0.1911309,-0.108324386,0.32078496,-0.72230214,0.1393197,-0.32934442,-0.5654846,0.07851417,-0.32270595,-0.29330513,-0.84005517,0.30694386,-0.91152483,0.51341325,-0.15923618,-0.23596317,0.14728983,0.2834655,0.40178096,-0.20904014,0.06443634,0.11716759,-0.16554922,-0.13095458,-0.008097989,-0.39184144,-0.55909073,-0.6347715,0.1329393,-0.5670653,-0.24730816,-0.19617723,0.24799798,-0.3398357,0.05089439,0.0935219,0.4527336,-0.49371782,-0.03655938,0.38852826,-0.13805647,0.4887022,-0.53734726,-0.1574557,-0.24303418,0.24079219,-0.3143063,-0.16126718,0.31307808,0.41961893,0.43285763,0.058459684,-0.33690426,-0.27176344,-0.21016781,0.18493634,0.494751,-0.18826623,-0.56379014,-0.20818153,-0.016517513,0.30653659,0.37329707,0.29713675,-0.3158129,-0.07903948,0.0325079,-0.26331785,0.4756122,0.52664477,-0.23032397,-0.1417218,0.22359155,0.45854428,0.22639732,-0.17914693,0.16905712,0.07562078,-0.7192885,-0.1778873,0.19281892,-0.121832736,0.697498,-0.22266191,0.25773308,0.9327785,-0.2724339,0.15420313,0.015427204,0.021237902,-0.18667905,-0.30387154,-0.13220374,0.26376787,-0.74570835,0.054934446,-0.26093423,0.8243821,0.23680855,-0.60221225,0.25497615,-0.62610155,0.15484299,-0.22279929,0.49917072,0.5152369,0.36380064,0.23158789,0.59554917,-0.5169226,0.094676815,-0.0061039287,-0.55615354,0.024587043,-0.2585487,-0.1709692,-0.26491964,0.050577387,-0.07545142,0.12366561,0.064256035,0.61806995,-0.5330256,-0.11496716,-0.14558731,0.9690666,-0.42834598,-0.16172476,0.8795845,0.81578314,1.1187946,0.013124556,1.5365936,0.36042482,-0.13002534,0.087107584,0.051697426,-0.750873,0.36151406,0.3703942,-0.71594584,0.39005703,-0.09079264,-0.027910419,0.38555342,-0.3546127,0.100117035,-0.32270682,0.22854996,0.06073568,-0.16054402,-0.4601846,-0.28247404,-0.0245358,0.057271685,0.038846295,0.2606992,0.08761713,0.5411055,-0.06802724,1.5880955,-0.08125904,0.13467526,0.099474095,0.415061,0.3249755,0.048425045,-0.08574625,0.11099127,0.29650113,0.28552723,-0.45852357,-0.1320109,-0.29333696,-0.6580312,-0.30955347,-0.33189562,-0.118848085,-0.18446025,-0.6329572,-0.063443676,-0.1789582,-0.13315052,0.40237454,-2.2036738,-0.26487154,-0.22669211,0.29827932,-0.30443236,-0.3790379,-0.25211227,-0.6146263,0.6847127,0.3280901,0.53863335,-0.6835512,0.28991327,0.5407935,-0.39009902,-0.14215222,-0.6779359,-0.19242784,-0.05570994,0.107545115,-0.12406877,-0.22959423,0.13553128,0.1530127,0.6526268,-0.09071956,0.1306795,0.10841612,0.38031873,-0.030167906,0.5533865,-0.023380661,0.4938306,-0.38116512,-0.14643027,0.4494171,-0.26113644,0.22982273,-0.1011976,0.13486129,0.40130553,-0.5657818,-0.90987647,-0.7154313,-0.47931245,0.96021706,-0.0851903,-0.36519533,0.22734267,-0.11186109,-0.07209642,0.0027656397,0.34960216,-0.061800797,0.29029667,-0.7543672,0.02354443,-0.051277813,-0.061154533,0.053558,0.1165133,-0.3637019,0.58580405,-0.098105565,0.21500629,0.5473404,0.30110174,-0.4090695,-0.6384815,-0.0034111936,1.1455867,0.47410074,0.21043733,-0.394033,-0.25384638,-0.6328111,-0.18580763,0.006926947,0.45213747,1.0388315,-0.12356716,0.21587181,0.2820144,0.1511597,0.1824902,-0.14172688,-0.39611655,-0.057936795,-0.07209533,0.5374087,0.5290193,-0.12880313,0.6246079,-0.1743706,0.4996091,-0.14563355,-0.5275067,0.5137852,1.0851667,-0.25813758,-0.33103976,0.5569635,0.5536142,-0.32755914,0.5742542,-0.5823851,-0.44722813,0.62234956,-0.15531859,-0.5955569,0.30225095,-0.31492862,0.064557865,-1.0704379,0.38066757,-0.37314954,-0.25716257,-0.49047655,-0.3308787,-3.4224653,0.20862335,-0.25060907,-0.024794834,-0.24585867,-0.18734269,0.23903729,-0.6177775,-0.7722081,0.10074129,-0.0906843,0.7663236,-0.0066243648,0.28899378,-0.26008508,-0.2656857,-0.20333356,0.21012473,0.1969313,0.15820608,-0.09857491,-0.57334936,-0.023481274,-0.33546653,-0.563549,0.10508467,-0.66605085,-0.71694237,-0.21032622,-0.60977185,-0.41091475,0.75702184,-0.45806524,0.021797976,0.011723267,-0.045442645,-0.042591907,0.3876433,0.17269984,0.20082276,0.08146052,0.033284757,-0.028113969,-0.27631226,0.25965393,0.14084278,0.33432138,0.19251941,-0.17234534,0.3617272,0.5884174,0.78149915,-0.14923705,0.82120425,0.28184345,-0.028897293,0.33643007,-0.33393392,-0.45530263,-0.6963509,-0.31716177,-0.08062904,-0.45691442,-0.5209208,0.051162466,-0.38278368,-0.8395326,0.8080013,0.05453224,0.17349972,-0.15566581,0.19670945,0.34018523,-0.15582912,-0.1887927,-0.039628897,-0.07984843,-0.5691029,-0.2493794,-0.8363539,-0.7310105,0.02135911,1.1448365,-0.15287393,-0.12880261,0.00047286352,-0.07172527,0.10442982,0.110671885,0.0020067215,-0.046139017,0.34964854,0.020575562,-0.7822373,0.6030692,-0.05616985,-0.28616545,-0.584144,-0.029994993,0.74244773,-0.79164207,0.5150002,0.5590571,-0.024475146,0.021805732,-0.6554764,-0.014583544,-0.030517658,-0.29271114,0.59870833,0.08644864,-0.64893526,0.45745564,0.52890515,-0.34850532,-0.7322605,0.628178,0.076029174,-0.10696439,0.0806115,0.3802415,0.12152807,0.0021896164,-0.2655089,0.23153356,-0.5780228,0.1678379,0.47986373,-0.04138851,0.59878933,-0.12956911,-0.22104102,-0.9099701,0.13185428,-0.36196476,-0.2062635,0.1542663,-0.14435396,-0.16171265,0.25299913,0.06997255,0.3978914,-0.33267644,0.14926572,-0.219002,-0.21294504,0.39335486,0.47041887,0.51469547,-0.5206653,0.73330265,-0.08476596,-0.16304734,0.035882663,0.16385338,0.5520488,0.1185403,0.38841802,0.11244586,-0.16676359,0.19792883,0.8489735,0.10552221,0.5963798,0.19092256,-0.15851332,0.06372576,0.19248514,0.13121895,0.19728324,-0.48614424,-0.16688581,-0.12501852,0.059115663,0.5892159,0.105067015,0.48116416,0.0059654335,-0.33459935,0.0009852102,0.080878004,0.07515598,-1.3566903,0.30285266,0.22764717,0.8920843,0.40222946,0.091073014,0.048583522,0.3775204,-0.19113146,0.18655281,0.39360335,-0.11856291,-0.50294566,0.6919609,-0.57635915,0.5024783,-0.1783759,0.0110368375,-0.0037930012,-0.05435969,0.6135474,0.89854866,0.010507288,0.1140223,0.05447936,-0.23004971,0.30336332,-0.6266911,-0.10918453,-0.29183453,-0.11162158,0.73773444,0.49698284,0.18333739,-0.17900151,-0.045455106,0.1434399,-0.13051495,0.2667118,-0.09862111,0.18023509,-0.17006269,-0.48324153,-0.4592799,0.6445926,0.112227425,0.2215218,-0.06930779,-0.2679171,0.33825633,-0.10253001,0.22151624,-0.09406375,-0.73859125,-0.10993918,-0.5388996,-0.51947576,0.40642068,-0.06620653,0.2266729,0.21116644,0.030445836,-0.5238965,0.34703663,0.0012410044,0.6720889,-0.2766537,-0.36506838,-0.34387502,0.24630737,0.29574403,-0.43736014,-0.08887484,-0.23353502,0.073640704,-0.54015976,0.48328,-0.039863057,-0.36647052,0.07674026,-0.117581606,-0.20248102,0.54289925,-0.21788451,-0.10414974,0.16442111,-0.029093647,-0.25249073,-0.15226151,-0.11789094,0.18268143,0.23407531,-0.08502472,-0.09266079,-0.025917102,0.014579328,0.4339548,-0.13475773,0.43891767,0.44292685,0.07244816,-0.59632,-0.15169027,0.22511454,0.5440343,0.020658651,-0.069149986,-0.32812515,-0.3908347,-0.18009663,0.1944123,-0.17861442,0.2687419,0.2702864,-0.3332638,0.9500536,0.1831935,1.3382818,0.16496107,-0.4837237,0.057945617,0.44196382,-0.007693823,-0.11990871,-0.40256557,1.0953541,0.48434475,-0.3166872,-0.24361286,-0.42650408,0.08375989,0.18295123,-0.2508431,-0.37046131,-0.13178165,-0.6161125,-0.38914502,0.26980764,0.30756366,0.06765128,-0.21959805,0.045868803,0.22361161,0.06671004,0.475627,-0.6937468,-0.1336626,0.2703088,0.4327648,-0.07898669,0.045054156,-0.38731676,0.4192975,-0.46221238,0.033195946,-0.35589954,0.21616293,-0.20653062,-0.47860065,0.22097236,0.015150745,0.31411144,-0.23792733,-0.3243026,-0.26388216,0.39152676,0.115569495,0.1841967,0.67150855,-0.33367026,0.063769914,-0.047513787,0.62710446,1.309365,-0.29785246,-0.042742293,0.4945941,-0.30562392,-0.5963565,0.34882644,-0.49564323,0.21501279,-0.10385745,-0.3882588,-0.59803975,0.17356734,0.21764903,-0.06481422,0.20525083,-0.52402794,-0.07124679,0.37868994,-0.32311156,-0.37154058,-0.4894406,0.12808558,0.6414986,-0.2765657,-0.19058684,0.1702247,0.24600692,-0.21476075,-0.52790517,-0.06553994,-0.109370895,0.42539462,0.15812577,-0.25552,0.05898606,0.058731247,-0.4665165,0.26971608,0.31672874,-0.27228454,0.14687923,-0.17677666,0.050093874,0.9403122,-0.14880241,0.010554866,-0.4226775,-0.53928924,-0.90770394,-0.35637558,0.6093209,0.35292488,0.14260936,-0.5655623,-0.029381497,-0.12859195,0.06150277,0.09396294,-0.23745887,0.36145183,0.09000961,0.5220073,-0.15203851,-0.7947434,0.0057942867,0.16839121,-0.3035725,-0.6018902,0.5762491,-0.20163898,0.8294765,0.12866051,0.03559098,0.48364004,-0.48182756,-0.10671293,-0.20616667,-0.13502903,-0.69442344,0.014549955 +469,0.3773507,-0.26607946,-0.5519564,-0.100700244,0.057584368,0.0068896506,-0.17786814,0.6888168,0.2798844,-0.3467474,-0.16974856,0.13790967,-0.08411369,0.3493107,-0.25829726,-0.4123363,-0.0009548412,0.19569801,-0.33169875,0.5792411,-0.27725393,0.13886186,-0.30581433,0.530786,0.18562943,0.45478284,-0.090969816,0.03696487,-0.24754082,-0.07170061,0.17891072,0.33411056,-0.4138795,0.32086897,-0.18783495,-0.110570125,-0.053223126,-0.35360795,-0.57946783,-0.802126,0.1428101,-0.8869103,0.58767056,-0.037537124,-0.41849777,0.391266,0.02265373,0.25970942,-0.3138645,-0.22012816,0.067727245,0.07137661,-0.15302542,-0.22237056,-0.192724,-0.5319063,-0.37748262,0.028709196,-0.40502226,-0.026652185,-0.21429381,0.11836258,-0.12109232,0.0005049522,-0.11639004,0.5990899,-0.4925561,-0.004744209,0.14417383,-0.14006463,0.16333342,-0.742705,-0.16989134,-0.14385055,0.18297723,0.030521406,-0.19389969,0.08936704,0.33329943,0.36603352,-0.08722716,-0.04390466,-0.2874096,0.0045756195,0.0602688,0.36097592,-0.18714274,-0.6552705,-0.08004579,0.042375036,0.32358444,-0.06976716,0.3040964,-0.16881584,-0.01617079,-0.0024612867,-0.21042424,0.46083274,0.50016636,-0.22257394,-0.10362502,0.257254,0.5785363,0.24511209,-0.1637282,-0.064351335,-0.06676232,-0.39700752,-0.1392686,-0.1263247,-0.21152171,0.6950575,-0.10043751,0.17203537,0.51935285,-0.11707355,-0.1059378,0.28939208,0.1063248,0.12609799,-0.4026329,-0.49401963,0.19500579,-0.31462464,-0.07166779,-0.19301875,0.37074238,0.13256362,-0.7853129,0.40736076,-0.25000608,0.0016934321,0.0015461708,0.45171526,0.5249304,0.48965538,0.259525,0.5250779,-0.29444692,-0.010015017,0.09007508,-0.22742048,0.054524317,-0.15618023,0.010360997,-0.5159372,0.09638306,0.0024739136,-0.33450046,0.12481002,0.34792474,-0.50671345,-0.15631682,0.15402032,0.81092274,-0.26304027,-0.02262982,0.712527,1.1979294,0.7926531,0.056832466,1.1581004,0.3138514,-0.017918114,0.18027137,-0.2619663,-0.6981513,0.22773398,0.3375561,-0.24018827,0.50628173,0.10818023,-0.07995416,0.3011061,-0.41120666,0.09130675,-0.24867564,0.2788048,0.17173547,-0.07008393,-0.5310981,-0.2831715,-0.070379026,0.10226449,0.15816173,0.2419224,-0.329226,0.20643218,0.17076111,1.3603234,-0.06783582,-0.107611746,-0.0038485527,0.6767104,0.23380612,-0.15978187,0.036012556,0.3551119,0.38173342,-0.05025529,-0.52656883,0.06434659,-0.14207175,-0.40082,-0.19485815,-0.31550518,0.04604051,0.03771512,-0.30545375,-0.2322488,-0.031036433,-0.26939905,0.3426846,-2.7390108,-0.18609282,-0.13521637,0.38869566,-0.13947545,-0.21226655,-0.08260775,-0.38459074,0.27402204,0.38972634,0.45055264,-0.49590856,0.40443105,0.5028271,-0.54503036,-0.12656495,-0.45195162,-0.120275706,-0.05174034,0.42400688,-0.057226602,0.07177866,0.0968746,0.2309694,0.5437782,0.09667058,0.14233087,0.4017841,0.20665462,0.0007559428,0.1626028,-0.027171195,0.5559725,-0.12587138,-0.20312871,0.22717908,-0.34140375,0.29319197,-0.09611389,0.19108406,0.3549971,-0.4537501,-0.8028771,-0.7195494,0.053469583,1.3524724,-0.15851113,-0.49248546,0.29707193,-0.60500187,-0.43554094,-0.050689835,0.33866495,-0.010883844,-0.029989246,-0.77757585,-0.069148585,-0.05818344,0.13082828,0.07233084,-0.054015376,-0.4443135,0.7900519,-0.041135646,0.3838121,0.20874459,0.14420745,-0.22403431,-0.5046533,0.06664815,0.88487244,0.47081602,-0.036405005,-0.16496482,-0.12789038,-0.4221823,0.016828729,0.12901717,0.6133592,0.6575748,0.021207752,0.008905358,0.15367739,-0.07532439,0.18926653,-0.19810821,-0.40964168,-0.21740717,0.22501208,0.58675057,0.5563449,-0.36104357,0.3736332,-0.28324816,0.3060951,-0.03759884,-0.36029917,0.5465762,0.76475817,-0.23735425,-0.30623367,0.64052683,0.58472323,-0.4524544,0.3958185,-0.616171,-0.15680496,0.28907043,-0.113312535,-0.36486107,0.40999413,-0.27323306,0.12766597,-0.8869593,0.4666128,-0.34241173,-0.5685309,-0.4343382,0.0065589,-2.9788208,0.23118779,-0.16827556,-0.32785827,-0.21180497,-0.15481465,0.3619835,-0.5926279,-0.62677866,0.25801146,0.026005553,0.58512574,-0.12488378,-0.045292452,-0.075136095,-0.3254873,-0.12286652,0.16362058,-0.026022749,0.29482773,-0.012389448,-0.4749553,-0.15690136,-0.07626024,-0.30056936,0.052718647,-0.7060379,-0.34488395,-0.11980624,-0.5346871,-0.039552845,0.5178009,-0.19721207,0.123527355,-0.27278298,0.10292062,-0.20766214,0.22175948,-0.101309486,0.18100078,0.117319025,-0.031634506,0.12660517,-0.19501029,0.2881932,0.07704825,0.42229638,0.13447055,-0.12242535,0.14745489,0.5568139,0.6924374,-0.16557987,0.9540631,0.54240006,-0.23551252,0.40153974,-0.23396836,-0.36500123,-0.5076244,-0.28073052,0.07292989,-0.35953337,-0.39625514,0.07320999,-0.40388057,-0.86373925,0.543943,-0.12965518,0.17299396,0.12283161,0.1617838,0.5003635,-0.11219794,0.16157103,-0.1498953,-0.21857627,-0.5483726,-0.20872802,-0.64600503,-0.3217462,0.08587499,0.95288235,-0.23397864,0.21592237,0.12384856,-0.2708144,0.1384072,0.028254487,0.06420973,0.1074605,0.43782407,-0.2425878,-0.61636347,0.18202637,-0.096099846,-0.16757832,-0.45821708,0.29877624,0.62218255,-0.6380594,0.7828162,0.33551362,-0.05612445,-0.3864951,-0.5485208,-0.320818,-0.13953139,-0.20528556,0.6043969,0.29573807,-0.8363275,0.3311427,0.41286257,-0.37145123,-0.6545534,0.54021615,-0.24777736,-0.061079565,-0.23819491,0.36036873,-0.09413024,0.095272556,-0.24049816,0.2508838,-0.21106951,0.054208342,0.16360757,-0.105530314,0.24999632,-0.17601545,0.01711607,-0.81077546,-0.08822027,-0.48321384,-0.16256054,0.26752302,0.11332527,0.17737092,-0.038519245,0.050216578,0.4420944,-0.4066548,0.13839039,0.008038231,-0.52034813,0.53828627,0.4762463,0.5971004,-0.320499,0.5470489,-0.013793198,-0.18632475,-0.14223923,0.012971174,0.37793362,0.025326777,0.35090902,0.1492756,-0.060021795,0.31755447,0.8190545,0.21044184,0.71216893,0.07178481,-0.039341513,0.29208997,0.04978574,0.18662585,-0.03784424,-0.50999683,-0.010869127,-0.1800805,0.25239477,0.3988783,0.15426911,0.34041166,-0.19686532,-0.3797936,-0.09917481,0.095729515,0.29917076,-1.1318634,0.4636757,0.17536995,0.74667513,0.3295152,0.16808571,-0.16413692,0.7868362,-0.04698314,0.09192102,0.36166975,-0.0021578257,-0.7509662,0.47229415,-0.64324516,0.31473425,0.02464062,0.028355662,0.18344013,-0.07686438,0.5048986,0.92335904,-0.10888261,0.011650656,-0.039304197,-0.24389139,0.11597155,-0.41678503,0.15591599,-0.49318138,-0.4178977,0.59321797,0.6068665,0.43386656,-0.2317447,0.027227027,0.13846129,-0.05970667,0.2691895,-0.018719474,0.002186218,-0.07929453,-0.79357624,-0.15619272,0.3138551,0.041662678,0.037196957,0.0018627369,-0.18289989,0.2711614,-0.014403064,-0.13347504,-0.015170019,-0.5838716,-0.02715135,-0.2037281,-0.43722403,0.48331207,-0.063209146,0.013387859,0.10392574,-0.036382865,-0.24578007,0.313173,-0.007113819,0.6012367,0.017976884,-0.104492314,-0.44197023,0.20712164,0.08099721,-0.13585535,0.09038444,-0.57348037,-0.0012246737,-0.6238809,0.3948701,-0.036771458,-0.33972442,-0.01672858,-0.13341188,0.16459091,0.40280426,-0.23844847,-0.19606437,-0.10875548,-0.15519343,-0.31745836,-0.42454866,-0.13104701,0.29944247,0.27098852,-0.10870095,-0.13174035,-0.102817565,0.08611875,0.4763417,0.030823244,0.4741593,0.48337027,0.19006136,-0.27075678,-0.114078075,0.20847185,0.5081584,0.13511862,-0.060266815,-0.4585403,-0.55902743,-0.31726155,0.14257543,-0.12321798,0.32333905,0.16544054,-0.1250659,0.7262839,0.06767725,1.2804809,-0.052489154,-0.3458338,0.11233489,0.591995,0.0133575015,-0.021367176,-0.34195393,0.9322994,0.4330257,-0.10738341,0.018435039,-0.62976485,-0.066618316,0.12789264,-0.26520127,-0.20427714,-0.120379046,-0.7433383,-0.2277708,0.14951293,0.38569605,0.15001503,0.08596937,0.35723412,0.089465655,0.066541225,0.2418311,-0.44159475,-0.10343965,0.3259726,0.20996127,0.008497806,-0.0275969,-0.45031342,0.28101286,-0.5128381,-0.017886817,-0.16865459,0.06506637,-0.1650757,-0.5050206,0.099769555,-0.015177882,0.40359205,-0.40050867,-0.46272993,-0.18041195,0.5470504,-0.045708224,-0.008026228,0.33692232,-0.23892544,-0.028979192,0.18130706,0.6234103,0.82093495,-0.12350594,0.074199274,0.20481242,-0.35548654,-0.79378384,0.22260642,-0.29911777,0.41611913,0.009380668,-0.21910451,-0.7350832,0.32840383,0.31473377,-0.17305122,-0.058987737,-0.50747514,-0.41623312,0.21313363,-0.3199511,-0.044071976,-0.28198257,-0.068007044,0.45747727,-0.3965731,-0.465202,0.0143621955,0.14843403,-0.26140815,-0.50596994,-0.062212475,-0.38302854,0.34741163,0.01272948,-0.39200354,-0.29976082,-0.038951874,-0.42440763,0.24138647,0.24751824,-0.38866836,0.03245666,-0.41042322,-0.0051730047,0.65195143,-0.2021653,0.14646903,-0.4180573,-0.48893908,-0.9129057,-0.4429485,0.2574474,0.1853412,-0.16713482,-0.71281326,0.1183226,-0.1700213,0.06412786,0.04593778,-0.21339384,0.47106442,0.024691941,0.5137346,-0.079554,-0.83963335,0.17270668,0.15398833,-0.102998465,-0.5281132,0.5224073,-0.071260676,0.998189,-0.0019232447,0.21836883,0.14695862,-0.5418681,-0.17630593,-0.22256985,-0.16465957,-0.53166807,0.20569783 +470,0.39165783,-0.28674686,-0.42994496,-0.17055002,-0.26839757,0.012411118,-0.17865655,0.45396894,0.18469885,-0.45540002,-0.10159512,-0.014693503,-0.125877,0.35409653,-0.1564561,-0.4204757,0.008173237,0.05151888,-0.5271197,0.5701556,-0.28926173,0.30257845,-0.10981006,0.28644097,0.060212724,0.37000424,0.1834662,-0.12918173,0.13980433,0.0448013,0.0008476743,0.041206364,-0.45552048,0.42823797,-0.17770377,-0.3786222,0.065545306,-0.3938684,-0.45727232,-0.6835645,0.31211382,-0.6066389,0.40506473,0.08813383,-0.22977032,0.022907188,0.3257389,0.40447375,-0.290758,-0.053445585,0.14935635,0.20013398,-0.11371365,0.05748946,0.013915961,-0.4635031,-0.62536055,-0.08839734,-0.4296189,-0.05676166,-0.34507325,0.20612074,-0.36346757,-0.09327539,0.09806083,0.45679426,-0.34954965,-0.014491077,0.22880663,-0.14065708,0.23985301,-0.6108808,-0.123439394,-0.17095631,0.45516062,-0.14815545,-0.13981815,0.23388818,0.09005387,0.41182297,-0.06378557,-0.112871446,-0.35235184,-0.053063784,-0.055437677,0.49248064,-0.13530022,-0.4105271,-0.017537566,0.009111469,0.047246553,0.113212794,0.01111026,-0.11297606,-0.12466412,-0.018781176,-0.2418891,0.2515714,0.4116082,-0.2941629,-0.23269334,0.41779897,0.6310572,-0.0012555397,-0.10119014,-0.01954671,0.16312562,-0.37902206,-0.16957489,0.00075718074,-0.006798822,0.44804227,-0.04581513,0.47421524,0.5517031,0.032323387,0.046053015,-0.014066772,-0.019896774,-0.12338478,-0.058553394,-0.24743699,0.093797095,-0.4352697,0.18105555,0.019912353,0.6384084,0.21851602,-0.78252506,0.25814924,-0.4695348,0.11989219,-0.006236685,0.46884155,0.7693213,0.3595921,0.23449406,0.70692146,-0.24863142,0.10293078,-0.15034768,-0.20726803,0.099354215,-0.1386062,0.04063564,-0.54818463,-0.06502317,0.21409193,-0.1014105,0.07501132,0.2681788,-0.4439378,-0.09553036,0.16669485,0.88222927,-0.13182053,0.019994259,0.53047353,0.93763,0.83791393,0.0959384,0.9784628,0.07231559,-0.20591189,0.39811623,-0.3529785,-0.6740965,0.27270472,0.46061662,0.3035202,0.34126422,0.15556325,-0.06090619,0.46399996,-0.41280305,0.14057629,-0.23262534,0.10841285,0.16933621,-0.07806851,-0.3118189,-0.30849096,-0.11636452,0.040871557,0.01990879,0.19219452,-0.1608196,0.18500659,0.13576461,1.760269,0.058203213,0.07483806,0.14794233,0.6334331,0.098633416,-0.35662454,-0.22825654,0.13437259,0.26202923,0.14784724,-0.53962,0.2667644,-0.13888377,-0.48824412,-0.12503529,-0.268675,-0.2200961,-0.04234809,-0.5348758,-0.1318556,-0.20343934,-0.4176648,0.3934855,-2.9961066,-0.17519492,-0.164771,0.40632206,-0.28820807,-0.20091401,-0.086499214,-0.4130383,0.37521183,0.5211715,0.42260906,-0.5671111,0.42756766,0.4374861,-0.62178004,-0.104900785,-0.48735178,0.0043113735,-0.0016427475,0.41253027,0.104767315,-0.071361236,-0.012096245,0.33172843,0.27254856,0.03226719,0.09179621,0.3433539,0.43149045,-0.020201953,0.5440891,-0.059362777,0.3207781,-0.42796454,-0.16670473,0.24979307,-0.5349342,0.22887537,-0.12715796,0.16131225,0.3911336,-0.58330274,-1.0395966,-0.78013414,-0.1710651,1.0338428,-0.0071807746,-0.17636387,0.28045732,-0.7217548,-0.123945944,-0.16869235,0.6533737,-0.029780086,-0.07507919,-0.7990661,0.00056468067,-0.17085077,0.31556436,0.04878777,-0.20424232,-0.56109256,0.694264,-0.031684842,0.67992336,0.18114184,0.1718122,-0.2914724,-0.39083284,0.043479823,0.65641403,0.26841635,0.20170794,-0.26979765,-0.15434252,-0.4373446,0.06876338,0.14553285,0.59943146,0.5031615,-0.032623906,0.10542793,0.18937752,-0.04774895,0.00015350488,-0.15754771,-0.15653977,-0.20589143,0.1398455,0.6227795,0.5268252,-0.06534323,0.24529894,-0.06006498,0.12854105,-0.35534558,-0.28017452,0.40827927,0.7897158,-0.035331488,-0.2360913,0.47129995,0.7369329,0.0053775264,0.291807,-0.6803083,-0.40846708,0.24125499,-0.07488033,-0.3657616,-0.03305914,-0.39531755,0.09165629,-0.8070052,0.21810338,-0.4328496,-0.62098515,-0.5910339,-0.004743553,-3.4950233,0.19883682,-0.018831994,-0.3166722,0.0034179597,-0.15640141,0.34240195,-0.6501405,-0.53477424,0.2027702,0.025990807,0.82758486,0.055945974,0.03200715,-0.27913204,-0.2391981,-0.27534348,0.081187434,0.056450844,0.325992,0.07703839,-0.5715989,-0.15659073,-0.14110105,-0.30457076,-0.031984333,-0.49320033,-0.37483972,-0.22340004,-0.5260115,-0.28064114,0.59031963,-0.1706613,0.124542445,-0.25459197,-0.06329029,-0.24442445,0.41156265,0.11687009,-0.046251792,0.056670647,-0.0882105,-0.05248952,-0.21965617,0.32386643,0.107070774,0.47252968,0.31935903,-0.11165916,0.24901234,0.6728893,0.5007205,-0.15243602,0.83072597,0.44795477,-0.030709453,0.25737953,-0.09316162,-0.1357846,-0.33154044,-0.21369651,-0.0044976105,-0.29577497,-0.35070637,0.11179324,-0.4619231,-0.76997375,0.35861233,-0.118582696,0.058777656,0.16244167,-0.045321032,0.47722414,-0.20343333,-0.019539384,0.0027327584,-0.09170257,-0.50824064,-0.37642235,-0.46996337,-0.46588993,0.06518661,1.1809356,-0.21879779,0.08810865,0.14387293,-0.21174754,-0.032797515,0.15626904,0.025190432,0.19094841,0.33305776,-0.08623835,-0.5464172,0.41469118,-0.24764282,-0.09325556,-0.48216152,0.20740463,0.36896643,-0.5151847,0.4177086,0.2606026,0.09592286,-0.16366124,-0.42393655,-0.19385634,-0.12905632,-0.15959321,0.24000877,0.2321594,-0.793062,0.28415072,0.077356376,-0.16412772,-0.67209435,0.6752378,0.036802802,-0.30700994,-0.16895764,0.14354068,0.19460867,-0.054180667,-0.29636562,0.2337339,-0.15067285,0.294299,0.08742729,-0.06379597,0.42913246,-0.22826226,0.11334014,-0.5990743,-0.06502731,-0.32867175,-0.21716644,0.37760094,0.1777403,0.090892985,0.18775629,-0.042484693,0.2194393,-0.22315417,0.026595125,-0.058316734,-0.3371696,0.288508,0.3629033,0.4332037,-0.4062761,0.5744345,-0.030989073,-0.035463966,-0.073960274,0.10904003,0.32019836,0.09101462,0.4282633,-0.15924142,-0.2844892,0.3223286,0.81098163,0.28855836,0.24789454,-0.053056955,-0.10711701,0.30963105,0.089091495,0.054778796,0.08586466,-0.614087,0.07234431,-0.192199,0.15128866,0.37169743,0.050053317,0.13909562,-0.11863402,-0.32746425,0.02617836,0.13186556,-0.12103589,-1.2577817,0.50553167,0.14439754,0.9021447,0.51258093,-0.04103645,0.020367738,0.82185304,-0.05063717,0.16446082,0.3383153,0.049520567,-0.44724348,0.5228729,-0.6082572,0.6252314,0.12131989,-0.06080943,0.010475055,-0.099266924,0.37539244,0.7342664,-0.119579405,0.05266107,0.040102933,-0.31662023,0.087448545,-0.23127797,0.0995192,-0.74413556,-0.18057145,0.57269675,0.59859765,0.32619843,-0.090782,0.007624351,-0.06450946,-0.045075003,0.15480322,-0.13123009,0.0040324377,-0.044360377,-0.76572984,-0.0125963185,0.4547377,-0.00089172676,0.24104108,0.08574458,-0.30081776,0.14901362,-0.077117555,0.067711286,-0.09873311,-0.5956895,0.011069975,-0.2964647,-0.1371523,0.6291033,-0.2654925,0.31107572,0.27383298,0.02872467,-0.1858616,0.41797206,-0.064723425,0.6815988,-0.08041418,-0.009294083,-0.3772877,-0.086496994,0.21261214,-0.24820283,-0.1349174,-0.45507452,-0.016806712,-0.63198286,0.371,0.11061588,-0.23071326,0.2094915,-0.22552332,0.18950166,0.5116081,-0.11970021,-0.1655259,-0.13247919,0.03638282,-0.234824,-0.15618251,-0.19812404,0.37936303,0.014141931,0.15713388,-0.036248058,-0.1129433,-0.034436278,0.36831018,0.105909154,0.33178288,0.35186327,0.1913383,-0.27396473,-0.014648474,0.060334187,0.64452654,0.059238553,-0.06640789,-0.37144312,-0.4650075,-0.34309414,0.16338855,-0.059662644,0.29824883,0.08818836,-0.25052875,0.52404594,-0.10768226,1.0848857,-0.016792594,-0.3619285,0.15119551,0.40799934,0.064767495,-0.01329134,-0.39075246,0.71267086,0.43576685,-0.09316797,-0.14717868,-0.2578216,-0.040135484,0.11905714,-0.13295019,-0.26098987,-0.027669106,-0.76205856,-0.23891038,0.28744662,0.16332348,0.19657254,-0.01902897,-0.018408217,0.12936231,-0.04012892,0.22546461,-0.41757795,-0.10142905,0.28249028,0.21413949,0.096950844,0.08147964,-0.58290625,0.43391684,-0.6225944,0.019059297,-0.18258968,0.25295335,-0.3237079,-0.34299275,0.19764009,0.11715695,0.5185117,-0.14638022,-0.3340435,-0.2890884,0.61332947,0.1734101,0.1426904,0.40313628,-0.1504785,-0.019911302,-0.036594465,0.48192486,0.78183705,-0.41169208,-0.010138402,0.28287208,-0.31991693,-0.4804157,0.12816356,-0.48870704,0.22809432,0.14749135,-0.13268282,-0.47890833,0.3304095,0.3057182,0.15385808,-0.08273796,-0.6739505,-0.30162022,0.14729787,-0.36214522,-0.23305362,-0.35508063,0.12647113,0.47426298,-0.24586917,-0.19376789,0.1740358,0.3997517,-0.049470887,-0.5508012,0.026424063,-0.36190736,0.22325894,0.039392628,-0.386081,-0.43365282,-0.055123147,-0.38114598,0.26212925,0.18761604,-0.43763632,-0.038122036,-0.42487592,-0.19774716,1.0299853,-0.10619941,0.21850055,-0.36497226,-0.25515202,-0.77582455,-0.37307656,0.47589552,0.33114326,-0.16725738,-0.42720574,-0.01109335,0.00786133,-0.020895757,-0.07211428,-0.38790002,0.39133167,0.13063666,0.46319884,-0.009487675,-0.8376239,0.06692942,0.040306766,-0.23834261,-0.446105,0.5336,-0.029945333,0.9912479,0.040512268,0.09779506,0.20849006,-0.521067,-0.10127906,-0.1952798,-0.1405301,-0.60225207,0.097133115 +471,0.40264237,-0.1679899,-0.4802995,-0.16587515,-0.3385637,-0.122598335,-0.17884423,0.15004854,0.4015525,-0.098975085,-0.122951716,0.10523403,0.108599186,0.41238675,-0.036142685,-0.8389684,0.06586108,0.18451773,-0.7927752,0.62938124,-0.6026385,0.30705795,0.050622907,0.3586607,-0.13338585,0.3384333,0.2470652,-0.12651502,0.15894248,0.06733705,-0.037348356,0.40742412,-0.6940885,0.16403697,-0.15072492,-0.29120797,0.0013699974,-0.31999704,-0.35883293,-0.65369827,0.052788757,-0.83779615,0.61086464,-0.10236256,-0.27847534,-0.030789483,0.31547043,0.3263547,-0.39821205,0.03977517,0.14430091,-0.16071323,-0.2845145,-0.27838293,-0.0748302,-0.5678392,-0.52975965,-0.15292598,-0.7378346,-0.32457206,-0.37417176,0.15698227,-0.40398923,-0.034340993,-0.1590193,0.49490058,-0.467993,0.0693861,0.42905357,-0.13018341,0.33153114,-0.46483555,0.103470564,-0.034271635,0.36299297,0.08515073,-0.33168876,0.4535913,0.46132988,0.49434987,0.40377745,-0.46179172,-0.15472965,-0.2620904,0.19504209,0.14637883,-0.1289727,-0.47534427,-0.22798967,0.20194012,0.43463197,0.37168255,0.06701417,-0.37030327,0.058213223,0.04651204,-0.08579958,0.76853645,0.6561216,-0.3148426,-0.4586521,0.28744113,0.5400926,0.2352219,-0.26615295,0.08903926,-0.09365411,-0.5974342,-0.16592295,0.08152588,-0.09793986,0.5435093,-0.1489741,-0.066526,0.9434576,-0.26292762,-0.17151895,-0.014344088,-0.12173598,-0.16984482,-0.41598448,-0.090555936,0.17037673,-0.7166803,0.023040874,-0.3468689,0.5286281,0.22024134,-0.6375852,0.38217577,-0.6225869,0.18510556,-0.11241291,0.79707325,0.86218005,0.5771703,0.43639365,0.7727119,-0.2516052,0.217182,0.050815653,-0.56935245,0.10150441,-0.3254128,0.20252076,-0.4329255,0.14347376,-0.11034744,0.0734012,0.085888796,0.27662626,-0.55712295,-0.19565961,0.1894011,0.79215276,-0.251946,-0.08477225,0.74282825,1.1983415,0.98072374,0.017142685,1.3027227,0.4314759,-0.20012216,0.16040663,-0.3643107,-0.6324326,0.10922242,0.36723772,-0.027771624,0.4173622,-0.12919718,-0.10553925,0.27690157,-0.42829916,-0.054744843,0.03645568,0.69203764,0.15345676,-0.23056652,-0.4603467,-0.008741983,-0.017277567,-0.015804755,0.17543039,0.2086896,-0.21341361,0.37641633,0.053131886,0.9020494,-0.062506035,0.030403731,-0.1152656,0.60998845,0.3912758,-0.052451935,0.002091988,0.40899217,0.43053246,0.03163508,-0.63821244,0.21744363,-0.50723493,-0.3547179,-0.19217713,-0.46288604,0.0886047,0.05282236,-0.16833964,-0.122076795,-0.07247559,-0.18829711,0.487346,-2.7271113,-0.43160036,-0.15277363,0.32974333,-0.20026925,0.05458251,-0.04628582,-0.6105356,0.31303596,0.24420676,0.4496746,-0.5878092,0.559889,0.56634414,-0.7042741,-0.20820251,-0.7237227,0.008749434,-0.079438224,0.57016903,-0.065462366,-0.13022466,-0.092350975,0.28175557,0.74576443,0.14566132,0.1824383,0.48860988,0.3137966,-0.010853142,0.46728972,-0.013269965,0.61667764,-0.1638158,-0.1360174,0.3738917,-0.0631612,0.23167762,-0.24796392,0.025450626,0.7373124,-0.37363407,-1.0226855,-0.57299334,-0.25294617,0.99691457,-0.4323025,-0.5981588,0.20805521,-0.31898823,0.02989483,0.08152571,0.51482016,-0.031195957,0.20846108,-0.6984798,0.2817214,0.019241596,0.059979416,-0.0008292834,0.061655216,-0.29306775,0.70791173,0.0027418255,0.48814824,0.21141897,0.30796114,-0.20194016,-0.4094245,0.19896351,0.7243965,0.4610249,-0.14198421,-0.23805697,-0.29160976,-0.08953678,-0.09012641,-0.1162019,0.62386364,0.82184345,-0.2543752,0.051061127,0.3409057,-0.15528393,0.048176885,-0.23208478,-0.20457897,-0.09700008,0.15830947,0.41666165,0.80857646,-0.32378516,0.44817743,-0.25571215,0.2758323,0.2320409,-0.7453896,0.86601156,0.66774625,-0.23892625,-0.009428555,0.45488185,0.39534423,-0.48612964,0.623642,-0.6771604,-0.06891642,0.6992304,-0.1966953,-0.32750842,0.06889579,-0.26192525,0.1353365,-0.8691903,0.3266271,-0.39943114,-0.4998302,-0.34504732,-0.12775302,-3.6425161,0.30892035,-0.2862628,0.05915526,-0.38295072,-0.04279165,0.25471914,-0.6611821,-0.5877094,0.26642668,0.36803037,0.6639195,-0.18796274,0.15095739,-0.22626643,-0.3324293,-0.2104165,0.19815639,0.10099713,0.2077355,-0.17053273,-0.41506454,-0.01403478,0.11509439,-0.6910662,0.16829161,-0.43747824,-0.23969136,-0.12183391,-0.5644625,-0.24282815,0.5909234,-0.21675219,0.10820128,-0.33073172,0.13363484,-0.17158455,0.26759666,-0.026994854,0.23135492,0.29034585,0.034865927,0.14056556,-0.1978089,0.36183196,-0.17650212,0.48780957,-0.0007567763,-0.052789416,0.13261048,0.5345865,0.59983814,-0.066914655,0.8796711,0.4554692,-0.051919222,0.30856806,-0.29004657,-0.44903424,-0.7918664,-0.4638548,-0.1577936,-0.4680774,-0.43184605,0.07549201,-0.3712273,-0.83562976,0.6444734,0.0029356799,0.5948388,-0.1306425,0.35062495,0.50715554,-0.22746609,-0.020211438,-0.028579751,-0.27126104,-0.56844103,-0.16707583,-0.75737417,-0.48937505,0.17597456,0.797004,-0.48038006,0.06113341,-0.22747265,-0.17231701,0.019535951,0.19578744,0.098189086,0.2937029,0.5372142,0.03540136,-0.5914997,0.31664032,-0.055628855,-0.13960162,-0.61754143,0.26761684,0.7195384,-0.7770387,0.6353987,0.2705665,0.014424769,-0.06322281,-0.6677824,-0.21808268,0.03931054,-0.13507421,0.56758285,0.13026549,-0.9313913,0.6034678,0.27021593,-0.49770212,-0.5794212,0.35773066,-0.10855148,-0.2663315,-0.2126008,0.2784246,0.27975038,-0.019800669,-0.3955657,0.21825118,-0.4911017,0.27191678,0.1166403,-0.19984072,0.37733242,-0.0017712235,-0.34880814,-0.9019867,-0.18262109,-0.52948093,-0.2096619,0.242797,-0.14585882,-0.07349178,0.053852383,0.070988625,0.4181868,-0.20659043,0.23330545,0.015437833,-0.39694998,0.30882367,0.52060676,0.2341966,-0.30035153,0.581251,0.18466516,-0.27055562,-0.0729872,0.05937369,0.38695866,0.030509952,0.459898,-0.10667605,-0.15272735,0.33822125,0.62538356,0.076241724,0.38628012,0.14242738,-0.018508645,0.42223194,-0.012086492,0.18580872,-0.067156784,-0.35046992,-0.08083158,-0.15711002,0.1707714,0.60828024,0.5481842,0.27994165,0.13695367,-0.30547562,-0.033413336,0.26602995,-0.018843746,-1.3407369,0.5025725,0.30432996,0.8258727,0.4634705,0.14890303,-0.2510684,0.6962435,-0.1755028,0.08142104,0.60119706,0.050164707,-0.33969113,0.8420652,-0.6600982,0.29359716,-0.09641974,-0.033273146,0.15300956,0.19201978,0.2941261,0.9414423,-0.26637694,-0.0009395043,-0.19296323,0.031890508,0.16091847,-0.30636585,-0.10357095,-0.28125197,-0.43055546,0.6232706,0.32930854,0.2822669,-0.27511173,-0.08919775,0.1605299,-0.29356524,0.14910358,-0.17360216,-0.05493941,0.026408393,-0.38974056,-0.16568565,0.42394632,0.14332575,0.10950978,-0.21883012,-0.1299108,-0.10316682,-0.24408515,-0.21685001,0.012423986,-0.77624476,-0.06440873,0.033205662,-0.36507982,0.8470451,-0.31291613,0.097918384,0.15519004,0.036392026,-0.08737563,0.25788847,-0.0009627501,0.50689656,0.0663882,-0.3147925,-0.2345365,0.09990947,0.13711183,-0.27160576,0.18044646,-0.2926778,0.01966494,-0.51048726,0.57023895,-0.10606127,-0.2820379,0.16576494,-0.3169913,-0.00088473357,0.47804725,-0.1461518,-0.19200061,0.14841466,-0.25599733,-0.34453616,-0.24292348,-0.17681411,0.31818995,0.11786975,-0.11687513,-0.023234315,-0.18918686,-0.09051234,0.6321447,0.006842812,0.22169085,0.035454035,0.012289532,-0.13913621,-0.024021022,0.29861557,0.38044676,0.22473916,-0.011205125,-0.22849837,-0.321861,-0.3987836,-0.05001629,-0.019317485,0.13575663,-0.031625975,-0.30479184,0.93475723,0.26358253,1.2906178,0.017313337,-0.4342965,0.05821686,0.60550994,-0.10493471,-0.0013019105,-0.36613658,0.83893734,0.5547371,-0.14328977,-0.003948768,-0.57559264,-0.07534344,0.3483943,-0.47379225,-0.1374268,-0.110899635,-0.5551668,-0.447746,0.261144,0.18661141,0.04721183,-0.024330325,-0.053635262,0.00513889,0.054393817,0.51995367,-0.65040535,-0.15834548,0.09016817,0.26446426,-0.02076137,0.15654446,-0.29633945,0.40986907,-0.7441176,0.123767495,-0.2691026,0.097788915,-0.3343062,-0.4758188,0.18294725,0.040220723,0.2543623,-0.22073312,-0.48605564,-0.16058478,0.42471427,0.04549056,0.0036770504,0.710548,-0.29306373,-0.028941998,0.23719932,0.57139564,1.3411558,-0.34187216,-0.04408992,0.2913475,-0.5639336,-0.67906183,0.40670022,-0.47291362,0.015020418,-0.15354668,-0.42358112,-0.42419356,0.16900189,0.015539757,0.05446518,0.15059544,-0.6204142,-0.16018179,0.25396922,-0.24390006,-0.1122199,-0.28971785,0.3620259,0.81081414,-0.23847413,-0.36359996,0.17661034,0.30815956,-0.17797399,-0.60271555,-0.12922941,-0.18960471,0.33357424,-0.018445302,-0.34076518,0.06560121,0.2830579,-0.5635571,0.020346701,0.28085878,-0.2849933,0.18086338,-0.28658238,-0.0942934,0.8416429,-0.2508003,0.0146010835,-0.6066969,-0.48557863,-0.8587854,-0.4075348,0.07379707,0.17893726,-0.012194244,-0.48366338,0.06092388,-0.06576065,0.082846574,0.076963425,-0.53676605,0.25551307,0.04144881,0.58008575,-0.1678303,-1.1045245,0.00042969186,0.16893476,-0.0089258235,-0.77357864,0.7295714,-0.19708322,0.8021853,0.06801106,-0.09513078,-0.09980035,-0.3896207,0.08362843,-0.4190507,-0.15520318,-0.6910627,0.016965771 +472,0.47834542,-0.14273867,-0.29396996,-0.07148707,-0.10321995,0.29629704,-0.13581808,0.30490538,0.048996765,-0.5285431,-0.26527706,-0.22844408,0.07804785,0.35737976,-0.25225264,-0.40626097,-0.022298638,0.18054093,-0.42861217,0.47528532,-0.4040227,0.4135201,0.18762067,0.40130132,0.19780533,0.28647348,0.30674738,-0.23660158,-0.37085757,-0.22642335,-0.20719096,0.17380211,-0.53191835,0.096261226,-0.117081285,-0.44121125,0.0151199205,-0.46471828,-0.2350401,-0.70348686,0.42364755,-0.9670745,0.53387064,0.04722766,-0.21249728,0.39730725,0.11125275,0.1429217,-0.2209284,0.06716423,0.20941556,-0.26445538,-0.00022329178,-0.2327832,-0.09205141,-0.3242218,-0.6198438,0.17572837,-0.45218903,-0.20575173,-0.31681678,0.15203223,-0.19429366,0.06489094,0.0039503616,0.4172361,-0.4120946,-0.1262351,0.105002105,-0.23599707,0.2587073,-0.5415287,-0.25997385,-0.10543947,0.31753424,-0.28707042,-0.08554826,0.1833569,0.301425,0.5426118,0.027715117,-0.055105235,-0.39167854,0.014865892,0.041886587,0.5375585,-0.14165404,-0.56566757,-0.19106553,-0.18491246,0.20122756,-0.014087021,0.15767698,-0.1346183,-0.09189733,0.027668906,-0.25206265,0.3334939,0.47403198,-0.44608182,-0.30771664,0.4029728,0.5066122,-0.07105916,0.014976497,-0.08739761,0.006150995,-0.4796583,-0.11637713,0.16961214,-0.2697091,0.5873187,-0.18102908,0.35393476,0.6685295,-0.2506042,0.07073304,-0.014760624,0.039826963,-0.20489308,-0.031375222,-0.19306247,0.18047203,-0.3282624,-0.010342581,-0.31250316,0.9941836,0.17792289,-0.67012817,0.3206697,-0.4378552,0.15759684,0.009119206,0.5681391,0.4646509,0.43517366,0.33092484,0.6528572,-0.5261423,-0.036819525,-0.0554034,-0.35204133,-0.07871906,-0.24062102,-0.0633462,-0.33775237,0.10746177,0.20798783,-0.10537411,0.032233406,0.60738295,-0.5664944,0.11184013,0.13819213,0.77027434,-0.3321503,-0.13390757,0.8850283,0.9684697,0.88508904,0.028071016,1.1544313,0.30947632,-0.361401,-0.061746716,-0.4036133,-0.5511868,0.2741974,0.41246256,-0.35990843,0.38138396,0.09498457,-0.08059193,0.3398289,-0.46642825,-0.0076928735,-0.2226292,0.08522027,-0.011280141,0.086814515,-0.45054606,-0.27627507,-0.02022894,-0.01787528,0.33966848,0.23866208,-0.29789656,0.54302174,0.083687015,1.4842957,-0.13509949,0.120852254,0.0067044008,0.47973388,0.09071381,0.104137145,-0.084988214,0.34260824,0.32221323,0.08875646,-0.6628242,0.027477475,-0.16212818,-0.5601004,-0.23479693,-0.26837987,-0.17239383,0.07552232,-0.37929183,-0.22553132,-0.0706687,-0.37191895,0.40022114,-2.53021,-0.14075881,-0.0059220493,0.2584999,-0.2438203,-0.41069454,-0.08630369,-0.5841952,0.33918157,0.35793945,0.43193692,-0.68013877,0.19325624,0.38031787,-0.3932825,-0.26710746,-0.58458996,-0.051080763,-0.080982484,0.32722563,0.018969268,-0.1983618,-0.089057155,-0.037435073,0.5131995,-0.04111827,0.064887695,0.27377498,0.3669548,0.12414432,0.40885878,0.2147224,0.6025972,-0.19425377,-0.13677125,0.4637147,-0.3714103,0.2876635,-0.2482251,0.13624169,0.3339395,-0.5006591,-0.82777923,-0.71667445,-0.19117442,1.3112704,-0.14159362,-0.49120674,0.14423452,-0.038095795,-0.19699891,0.015087182,0.42287722,-0.23576058,-0.013387923,-0.79356843,0.031094562,-8.752303e-05,0.30506244,0.074099004,0.12745441,-0.49695587,0.6360439,-0.065863825,0.26943046,0.24544685,0.2229161,-0.3178065,-0.57876045,0.10973228,1.1577307,0.32045317,0.19523844,-0.30666497,-0.27053052,-0.29169875,-0.13054667,-0.025758576,0.47461677,0.78242856,0.11383244,0.10551683,0.29963073,-0.011297425,0.19299795,-0.10346796,-0.26170525,-0.11906821,0.0028480205,0.5796453,0.5650291,-0.1700059,0.39991316,-0.23907603,0.38327318,-0.16548602,-0.3736441,0.6550188,0.95657635,-0.1802921,-0.1982332,0.6610366,0.5654248,-0.30399707,0.43530703,-0.6621068,-0.5542451,0.45476896,-0.23253189,-0.42049533,0.27675885,-0.2983306,0.21789679,-1.0321711,0.3250154,-0.049117785,-0.28829965,-0.5461354,-0.09546673,-3.5224717,0.1210578,-0.24117978,-0.10598196,-0.059979822,-0.29842982,0.19106375,-0.6130075,-0.4405396,0.15613382,0.09770105,0.5898047,-0.012364619,0.31603995,-0.19201884,-0.15035531,-0.24371807,0.14983566,0.14494033,0.3464353,0.01738579,-0.42458826,0.18521254,-0.21755256,-0.32482022,0.009004703,-0.5053716,-0.5899496,-0.17798677,-0.5025193,-0.40624288,0.6367754,-0.42190072,0.111820474,-0.17143007,-0.037885703,-0.113824494,0.38734266,0.09257709,0.10335362,0.08742523,-0.084867276,0.06385702,-0.25210315,0.35799244,0.056541093,0.18609087,0.5141508,-0.19476035,0.14632739,0.40106845,0.5521548,-0.08811133,0.7540046,0.47539926,-0.083811246,0.24167268,-0.36564043,-0.30596787,-0.65356344,-0.3274782,-0.057332516,-0.42820403,-0.48377195,-0.15168135,-0.407338,-0.7926753,0.5332542,-0.008894001,0.09947449,-0.13330297,0.43643835,0.5276832,-0.23853885,-0.13384669,-0.089277886,-0.10609286,-0.58307296,-0.30630055,-0.70745766,-0.41171455,0.004326471,0.7480218,-0.11121053,-0.027715072,0.12864996,-0.1845105,-0.07956008,0.041007586,0.07617341,0.0507359,0.403765,0.018040424,-0.8339385,0.60174185,-0.02750416,-0.14240015,-0.39867765,0.23723176,0.5359272,-0.7377078,0.31670547,0.5691313,0.117694,0.06542619,-0.34230354,-0.2155324,-0.13194442,-0.13957441,0.36795434,0.14987996,-0.5395425,0.48262814,0.3363521,-0.17732294,-0.7225872,0.39455935,0.023065014,-0.29998326,-0.020497799,0.34806442,0.14329095,0.12159048,-0.23598132,0.006841949,-0.55812114,0.34973192,0.21048912,0.024477025,0.5358507,-0.24611057,-0.24960367,-0.7194459,0.078753665,-0.5620007,-0.30186465,0.1667614,0.18224338,0.031208206,0.28462452,-0.011563046,0.4165442,-0.34417912,0.06256272,-0.03046048,-0.06323458,0.16445932,0.40199164,0.48228803,-0.47184324,0.6105046,0.038341917,-0.05123357,-0.10137047,-0.080731936,0.47339037,0.10900394,0.2762616,0.08257325,-0.26065943,0.33520907,0.5585338,0.3090765,0.5159389,0.071949355,-0.17561163,0.25345707,0.090983994,0.23317711,0.021867799,-0.5446184,-0.07597648,-0.2701026,0.037664212,0.41876116,0.13599828,0.3852521,-0.2319968,-0.20101412,0.15903974,0.118313245,-0.112893775,-0.8716914,0.30408925,0.17415714,0.70912826,0.5131167,-0.17659497,0.19550355,0.71825033,-0.41525242,0.14387551,0.28071523,0.087724485,-0.60468096,0.56006646,-0.6320154,0.37976217,-0.13706997,-0.041266866,-0.024611253,-0.14765191,0.2595878,0.7448616,-0.12951444,0.103886805,-0.09278076,-0.26267895,0.14608097,-0.46025127,0.23598811,-0.6618681,-0.062461384,0.7686892,0.28381088,0.27799687,-0.040711105,-0.0784321,0.08320427,-0.111297354,0.13647392,0.1678853,0.1532984,0.032804172,-0.59472454,-0.28070706,0.6088398,0.12213447,0.19129659,0.09366029,-0.30020759,0.21381816,-0.2992139,-0.11632972,-0.108323626,-0.59898597,-0.051988143,-0.34381977,-0.4909316,0.4499664,-0.09810189,0.2344397,0.17039743,0.07745866,-0.38498583,0.09540395,0.30170658,0.711991,0.16729693,-0.20579302,-0.35783157,0.21320668,0.34380072,-0.24461316,-0.2053521,-0.1531268,0.08583229,-0.6395771,0.50514233,-0.17792462,-0.23486833,-0.050843988,-0.1684056,-0.0373016,0.56537914,-0.12114572,-0.013596735,0.19174089,-0.09642895,-0.24094085,0.008061192,-0.26481357,0.2211236,0.3564153,-0.14149372,-0.12889113,-0.115619384,-0.25841242,0.42161343,0.00073150866,0.25997907,0.3234501,-0.05489647,-0.39262143,-0.14971839,0.098041914,0.49803233,0.011333619,-0.09439596,-0.28882432,-0.46839955,-0.35173002,0.19195381,-0.12861116,0.10824144,0.17499205,-0.27419502,0.82581675,0.076291844,1.0173525,0.05273598,-0.40852362,0.018266609,0.57618797,0.0062448094,0.01507522,-0.46546954,1.1882131,0.49010712,-0.14823115,-0.13295095,-0.41186148,0.031236961,0.24047025,-0.20370445,-0.20741437,-0.13229953,-0.70105827,-0.4268525,0.25295392,0.41972753,0.12680651,0.012571649,0.14520216,0.17608872,0.029684484,0.5105627,-0.4971525,-0.3395217,0.3974443,0.19660068,-0.03750858,0.16654894,-0.40732625,0.48599434,-0.57520264,0.010806552,-0.2559836,0.11518476,-0.2131282,-0.3659223,0.27648923,0.19498166,0.37301296,-0.39158177,-0.5647087,-0.31126902,0.5127131,-0.009354413,0.18427125,0.51452553,-0.29419675,-0.07448358,0.008407449,0.44809827,1.2273704,-0.17500615,0.182286,0.39361694,-0.1771497,-0.58504105,0.39358807,-0.30401167,0.15616526,-0.02145212,-0.24331443,-0.5335873,0.27114144,0.23722686,-0.051294863,0.14357135,-0.58211166,-0.18663232,0.29245797,-0.32292014,-0.15953408,-0.18760225,0.17055367,0.47737616,-0.36391163,-0.2199604,0.09326797,0.3665192,-0.2737425,-0.52071583,-0.1715989,-0.38578436,0.3115855,0.20267394,-0.27269053,-0.19222876,0.16795646,-0.3925005,0.13603535,0.24143039,-0.4357883,-0.009750153,-0.38888735,0.18481538,0.84388953,-0.052360766,0.20082834,-0.5767425,-0.33736476,-1.0888405,-0.316205,0.50517404,-0.04345619,0.043374192,-0.6352596,0.024537696,-0.19477741,-0.14159267,-0.0052439948,-0.59244937,0.48096782,0.17431612,0.37915948,0.04275645,-0.6650351,0.04448546,0.109432,-0.24115281,-0.60683316,0.49104425,0.027474489,0.80769587,0.13358144,0.08541971,0.45547774,-0.67976385,0.011475989,-0.26062748,-0.1542573,-0.8181335,0.089647196 +473,0.5396634,-0.31399593,-0.46249247,0.017070945,-0.19791177,0.105316825,-0.2538402,0.20443419,0.28465316,-0.33042827,-0.05719804,-0.25166887,-0.05434982,0.389205,-0.22078513,-0.70166796,0.007332983,0.036397014,-0.5424922,0.6244523,-0.35287935,0.37023988,0.2085559,0.19063865,0.14944077,0.17963667,0.43677917,-0.09815756,-0.022476068,0.0032896486,-0.07767612,-0.060404222,-0.53130955,0.1535478,-0.10406256,-0.24079047,0.07366645,-0.3422571,-0.5243782,-0.79908645,0.37095356,-0.7108527,0.4745392,0.19174434,-0.2890828,0.2512397,0.114043154,0.15256259,-0.4302616,0.16920964,0.10528301,-0.004400089,-0.14095697,-0.15823261,-0.18908131,-0.5340425,-0.50335485,0.08588594,-0.4703806,-0.14678124,-0.11961746,0.16248877,-0.30847546,0.033740293,-0.07912927,0.3932779,-0.40653077,-0.141048,0.31509352,-0.19697224,0.12328304,-0.6109017,-0.11119946,-0.06618659,0.10057939,-0.0011894575,-0.09716238,0.16659045,0.21171466,0.5859098,0.089831874,-0.27781954,-0.09281441,-0.13636151,0.10244235,0.5800997,-0.11993706,-0.6720788,-0.22950518,0.019701406,0.17252302,-4.432031e-06,0.26347765,-0.6123265,-0.11746968,-0.13726644,-0.25076324,0.41406587,0.6168162,-0.43606848,-0.025104033,0.3917481,0.36574134,0.14300115,-0.03646185,0.11436505,0.009817166,-0.53549886,-0.12648684,0.09790119,-0.1957127,0.47163978,-0.21403232,0.35185447,0.5147995,-0.1252698,0.1477188,0.1484594,-0.011762423,-0.2500074,-0.10294869,-0.13220783,0.02126419,-0.53163874,-0.011202357,-0.20956881,0.9536065,0.18163922,-0.7216956,0.46352914,-0.47163367,0.3391408,-0.12370978,0.5606577,0.6692509,0.210457,0.13911566,0.8670963,-0.54362446,0.0010549149,-0.035569303,-0.33097023,0.017286122,-0.11986494,-0.14791308,-0.42557862,0.14479855,-0.14052199,0.0041251546,-0.11431401,0.38257876,-0.43131533,-0.12038821,0.10964436,0.8825551,-0.30769068,0.08107583,0.51259965,0.9565508,0.97412163,0.036836714,1.3956966,0.4196043,-0.14033784,0.020380428,-0.1665772,-0.8407025,0.25391957,0.5453308,0.39816317,0.34528804,0.057986103,-0.057529602,0.3608689,-0.31974903,0.037663747,-0.29295477,0.2498269,0.0841655,-0.03806903,-0.23557864,-0.18637326,-0.035262477,0.14488284,0.04556193,0.23025343,-0.2079498,0.04065162,0.10300023,1.4017977,-0.23275454,0.031073261,0.053511087,0.44391727,0.37666702,-0.06502775,-0.009980313,0.14086536,0.4203585,-0.11370055,-0.7110864,-0.049711432,-0.21110871,-0.6013214,-0.23244362,-0.15665743,-0.10002206,0.010764049,-0.47786847,-0.190991,0.02933796,-0.2112254,0.5109759,-2.5846746,-0.30690187,-0.19825625,0.18236789,-0.31323975,-0.22382474,-0.1437616,-0.3440431,0.330211,0.41936332,0.4073541,-0.80397975,0.23697077,0.45044497,-0.42487118,-0.047191612,-0.5844585,-0.112229824,-0.1649724,0.51929945,0.16582943,-0.24811503,-0.023863282,0.18588623,0.4047074,0.02230628,-0.000532989,0.23021759,0.4215024,-0.058846373,0.29838997,0.09402964,0.4531223,-0.30668506,-0.004896631,0.42742702,-0.2586678,0.34690756,-0.11117823,0.1300173,0.34452638,-0.5712518,-0.68109274,-0.6237173,-0.1760359,1.2190361,-0.16175653,-0.49210072,0.3604048,-0.06968348,-0.010855677,0.029872417,0.32889464,-0.15880361,-0.012419377,-0.8040394,0.15822251,0.028884713,0.14461875,-0.0067041037,-0.13505162,-0.24065053,0.9396798,-0.036284667,0.43200812,0.33258668,0.21866168,-0.05917201,-0.5202837,0.12625541,0.9282964,0.5705313,0.059839573,-0.16580391,-0.22412835,-0.29018325,-0.29543957,0.051501483,0.45894644,0.8516312,-0.05186992,0.012892683,0.17697403,0.057865627,0.07908558,-0.10129563,-0.41051707,-0.12665638,0.043896075,0.50790125,0.5624905,-0.25843897,0.3148912,-0.18292375,0.2235812,-0.031346034,-0.42630607,0.6183612,1.0759866,-0.17713983,-0.31028983,0.47759873,0.4625885,-0.33527872,0.3480081,-0.7306885,-0.3828071,0.5167595,-0.05958146,-0.30984232,0.3222427,-0.35679564,0.14743233,-0.9904518,0.5156226,-0.21384767,-0.13500263,-0.45789504,-0.28958482,-3.3545833,0.30969673,-0.38983074,0.070639476,-0.19812475,-0.05521032,0.2441157,-0.45840052,-0.5714348,0.13843335,-0.039263852,0.4466169,0.053041387,0.40953085,-0.137292,-0.06487385,-0.3255253,0.099454924,-0.17420135,0.2998615,0.033919718,-0.3352706,-0.099762745,-0.22572753,-0.13753308,0.18936238,-0.6269825,-0.50104934,-0.17473376,-0.36400706,-0.23063429,0.57079375,-0.11962557,-0.043651104,-0.28235072,-0.064779945,-0.2992802,0.3076864,0.14869222,0.048317883,-0.09579594,-0.054875273,-0.17657158,-0.34135813,0.10190426,0.059578955,0.17324932,0.37860364,-0.17071964,0.09825848,0.32776,0.5737329,-0.16081929,0.70804864,0.37271643,-0.25963226,0.369175,-0.07224507,-0.22561835,-0.6031323,-0.44826132,-0.0038019929,-0.29107842,-0.39169475,0.013881372,-0.21568203,-0.54010147,0.3547976,0.030172566,0.24091335,0.114920124,0.038597416,0.50223035,-0.026370207,-0.00931456,0.052065305,-0.22610529,-0.5509344,-0.30892515,-0.6628942,-0.43234894,0.2442443,0.9077875,-0.23172572,-0.19069226,0.086179,-0.3025653,0.018142525,-0.090542,0.07923741,0.19940348,0.27601722,-0.018142594,-0.81432545,0.54748785,-0.08803046,-0.07544417,-0.33675125,0.06567091,0.5253135,-0.63127095,0.37548873,0.32461435,0.26749977,0.1560094,-0.42495432,-0.25045958,0.17099588,-0.19057767,0.35596874,0.08627951,-0.63705444,0.50592357,0.41239813,-0.3868323,-0.7002622,0.36620805,0.14194393,-0.24162416,0.022719,0.4323153,0.024625616,0.0229372,-0.09275227,0.3213787,-0.46611744,0.36709884,0.20889838,0.0075213155,0.32102713,-0.03597302,-0.3960773,-0.47165608,-0.04957358,-0.563424,-0.29183146,0.112123795,0.069540545,-0.05077925,-0.06744247,0.03339174,0.48383072,-0.40836763,0.23992789,-0.012883748,-0.16752163,0.49886027,0.50299925,0.44810933,-0.3294458,0.7309986,0.038595412,0.004849415,-0.08493485,0.04078693,0.33221224,0.33809948,0.20370004,0.10670073,0.1696758,0.30818313,0.7677041,0.15130493,0.32658103,0.15874591,-0.2323231,0.3474114,0.19438942,0.11460585,-0.17716815,-0.38027757,-0.17675686,-0.0088421535,0.14713049,0.47863135,0.16057943,0.33183807,-0.053956065,-0.37906316,-0.0024701399,0.14913477,0.06047334,-0.9533178,0.19734374,0.09885175,0.65934974,0.5261752,-0.29872292,0.18021987,0.5742325,-0.023599382,0.03815196,0.3706564,-0.01683159,-0.6296508,0.56189364,-0.41843694,0.2555106,-0.23573725,0.06811024,0.036277413,0.25855896,0.14799416,0.6515004,-0.053424794,-0.025484834,-0.12271087,-0.34269962,-0.09739251,-0.38306412,0.08835875,-0.3120377,-0.4679342,0.53197205,0.4266057,0.111723125,-0.10483612,-0.0056715873,0.008121592,-0.091951184,0.3536419,-0.11067919,-0.021201747,-0.17274778,-0.76559454,-0.28464925,0.6411811,0.22657318,0.12548025,-0.09896823,-0.1807398,0.23720251,-0.35692835,-0.026581135,-0.05502247,-0.67987645,0.058886033,-0.25941572,-0.4561494,0.27192697,-0.18623354,0.21277867,0.34865,-0.056536905,-0.38124654,0.019052532,0.042151254,0.70740986,-0.224514,-0.12212366,-0.39280048,0.076823615,0.15164945,-0.29673108,-0.032652743,-0.18878242,0.0014119148,-0.6645383,0.61221164,-0.09330249,-0.18761043,0.23464558,-0.3249393,0.0008337008,0.5519726,-0.31274647,-0.20948176,0.06595833,-0.1145877,-0.13820745,-0.24850729,-0.20429376,0.2855385,0.29718897,-0.12836742,-0.05496319,-0.29147986,-0.023166602,0.36047015,-0.069302075,0.26827312,0.34558472,0.2125162,-0.47680405,0.011486175,0.3677664,0.48176688,0.123642504,-0.01915833,-0.21683457,-0.44149342,-0.35536623,-0.032935046,-0.2358344,0.114039205,0.19078901,-0.52655447,0.7673176,0.37195262,1.2136955,0.06627154,-0.21799581,0.042425327,0.5874902,-0.031909276,-0.084510185,-0.26157,0.8135508,0.61048955,-0.0323906,-0.14860474,-0.45423833,-0.11491657,0.22481349,-0.22713542,0.11009042,0.03620639,-0.55129784,-0.45078692,0.2593903,0.25742856,-0.06602163,-0.05318639,-0.066994414,-0.015432426,-0.044997673,0.4201041,-0.59236187,-0.19972368,0.15518394,0.15398335,0.09890117,0.019382102,-0.5341007,0.41506624,-0.78670347,0.08212757,-0.30380705,0.090330146,-0.14504926,-0.18568611,0.13146362,0.02283293,0.4871359,-0.4285205,-0.44198123,-0.21600161,0.56132567,0.08725827,0.22798422,0.7061295,-0.30609962,0.07547762,0.18325637,0.57264787,1.1108373,-0.22160976,0.1292739,0.30404565,-0.34591633,-0.68735105,0.34990257,-0.30252153,0.1984609,-0.038416263,-0.3067247,-0.73162156,0.18390162,0.3056238,0.10701859,-0.050892152,-0.6729762,-0.35505182,0.42548415,-0.21661088,-0.27866918,-0.3856236,0.04312053,0.67150074,-0.3424744,-0.2228164,0.14345683,0.115917526,-0.32763818,-0.71558446,0.01915629,-0.38215336,0.40484047,0.36256027,-0.052240193,-0.15539919,0.1215161,-0.5163617,0.13737942,0.0628377,-0.42103437,-0.004834805,-0.1952214,-0.016864385,0.9679488,-0.20935598,0.057781164,-0.7774364,-0.54415697,-0.8467488,-0.42672208,0.64609474,0.19535731,0.23362707,-0.57989675,-0.08090522,-0.008021106,0.09898678,0.03508275,-0.4944648,0.43569687,0.04964013,0.47773814,-0.13075402,-0.70338064,-0.027370343,0.027970959,-0.15720975,-0.42635137,0.46157768,0.07230195,0.9080463,0.04677427,-0.099040456,0.27510354,-0.55190897,0.15868902,-0.25764412,-0.27573997,-0.5866504,0.23185599 +474,0.47691774,-0.16193405,-0.48991284,-0.36763057,-0.32041317,-0.06409705,-0.32162353,0.19941531,0.26958537,-0.46059224,-0.09610996,-0.04108553,-0.021258041,0.2643075,-0.25772116,-0.73202634,-0.063091315,0.13891818,-0.8203034,0.4689678,-0.55755895,0.17026679,0.30905744,0.42433557,0.18163274,0.33976912,0.21620369,-0.065695435,0.1396621,-0.009571716,0.21112435,-0.20573954,-0.7982855,0.3038131,-0.17060868,-0.38437518,-0.03058925,-0.5547232,-0.39462313,-0.6775376,0.29182336,-0.7079921,0.44065842,0.17656517,-0.23905893,-0.37767053,0.072414815,0.23795736,-0.3507565,0.22871739,0.36562037,-0.2511568,-0.022578625,-0.084693335,0.10506507,-0.5336763,-0.4017261,0.06849151,-0.435563,-0.030326271,-0.10351621,0.15172297,-0.23787351,0.041241143,-0.11977816,0.42174998,-0.48258314,-0.2124893,0.11390203,-0.19752152,0.26183605,-0.50305015,-0.38446924,-0.14864543,0.23551226,-0.12024528,-0.31768563,0.3607117,0.12975313,0.5753326,0.20085645,-0.21759377,-0.056587335,0.09790907,0.06401277,0.48155892,-0.053444054,-0.31120345,-0.2704935,-0.14553373,0.28966972,0.10109773,0.054474384,-0.49431428,0.13712056,-0.008715575,-0.29909885,0.45368278,0.6548465,-0.32217965,-0.037830085,0.27225175,0.15550643,0.3000626,-0.19957201,0.20025969,0.0124542015,-0.45277128,-0.28309712,0.15766068,0.00048167506,0.71626395,-0.13415809,0.38567185,0.67124385,-0.097919285,0.02532879,0.0007315874,-0.018435394,-0.03165061,-0.17050529,-0.45171842,0.35946086,-0.6515536,-0.030464694,-0.36557746,0.6846792,0.16688013,-0.81706804,0.3406807,-0.6843143,0.15400527,-0.29763767,0.5686845,0.8592327,0.46122953,0.20649308,0.7415514,-0.5802516,0.08102374,0.08854952,-0.25680414,0.19044735,-0.14226125,0.24287541,-0.4012846,-0.23397724,-0.042492528,0.12415514,-0.075362094,0.42420062,-0.26655173,-0.12275771,0.12454891,0.6478134,-0.30703062,0.06907328,0.85117006,1.3699918,1.2096654,0.22813708,1.4427084,0.30563548,-0.16350166,-0.115650766,0.101365924,-0.62237537,0.19426809,0.31261957,0.6028732,0.25786898,0.16369309,-0.18528087,0.43738842,-0.6368362,0.17616822,0.02553535,0.26951385,-0.06637983,-0.06303206,-0.40788043,-0.1899507,0.070388086,0.12918414,-0.3577728,0.3088682,-0.13508649,0.26124164,0.05285876,1.0907363,0.11804745,0.039089963,0.036603525,0.6599221,0.14809406,-0.35130402,0.038416844,-0.008644484,0.42773843,-0.07791258,-0.6763191,-0.12915973,-0.30080685,-0.48225296,-0.25158313,-0.43258628,-0.18118958,-0.18575454,-0.5773232,-0.12970938,0.15552849,-0.29499164,0.2585598,-2.389139,-0.320107,-0.20488691,0.4520876,-0.14550287,-0.066591226,-0.20566891,-0.23774154,0.45892176,0.5303744,0.57858074,-0.6900387,0.67700726,0.5027484,-0.40094972,0.04325561,-0.65503156,-0.03833131,-0.11573679,0.05642764,-0.045088097,-0.21745495,-0.08712741,0.18174537,0.60370976,0.14796297,0.0591736,0.1334029,0.53173983,-0.044119965,0.78125995,-0.048922658,0.39159894,-0.41885352,-0.22481918,0.2538608,-0.5493802,0.13473295,0.03259032,0.19265594,0.5929082,-0.5716071,-0.98957795,-0.67077214,-0.33341095,1.1373171,-0.258289,-0.38365176,0.36307105,-0.07376455,-0.23696782,0.069738775,0.6991756,-0.28478137,0.17359103,-0.7912801,-0.052496895,-0.15388037,0.1558498,0.0017635425,0.06581962,-0.52584475,0.79613465,-0.027994903,0.5318726,0.48038152,0.15050842,-0.04791811,-0.44907987,0.26992658,0.83205026,0.44972563,0.10645195,-0.14492875,-0.012430511,-0.23027913,-0.077306814,0.18213822,0.67201835,0.77646303,-0.19028477,0.20497292,0.42804587,-0.23864198,-0.033268932,-0.06087561,-0.5067165,-0.128253,0.14762713,0.68943834,0.9626458,0.0014165143,0.19336838,-0.094940476,0.17130516,-0.29516134,-0.4067018,0.5493016,0.5135378,0.031733114,-0.0972051,0.5683226,0.48493552,-0.2835462,0.42441192,-0.55565745,-0.5181753,0.420041,0.1108905,-0.32841945,0.03588816,-0.5932355,0.11410882,-0.9574384,0.5757708,-0.19692798,-0.5624474,-0.59114295,-0.39263055,-2.89624,0.095203616,-0.30530217,-0.2459157,-0.22200137,-0.17988239,0.41987333,-0.6640334,-0.60228395,0.22119176,0.07810467,0.62896186,0.07495479,0.094279446,-0.21542925,-0.15746462,-0.37516102,0.21993844,0.13738339,0.2470904,0.1688165,-0.35237274,-0.0689295,-0.30107912,-0.41314316,0.085808694,-0.51428604,-0.56214064,-0.020643897,-0.48473728,-0.40623498,0.72646093,-0.18757649,-0.09281907,-0.17327201,-0.16453646,-0.3185631,0.34659806,0.24561436,0.16764264,-0.056290567,0.039940316,-0.39293876,-0.24644147,0.08224248,0.1462145,0.30612007,0.25642672,-0.3032178,0.09561028,0.54948956,0.48557582,-0.119367175,0.7231803,0.34694767,0.00962129,0.33621466,-0.26817125,-0.36001515,-0.6062063,-0.3169097,-0.100579955,-0.37283692,-0.3828317,0.06703718,-0.29024133,-0.78633875,0.35034943,0.11744008,-0.08308225,-0.056315064,-0.06056876,0.064162366,-0.008961335,-0.094320156,0.025407834,-0.023737073,-0.5480374,-0.32412234,-0.90858,-0.5086055,-0.17868656,1.1836501,0.025118887,-0.17424202,0.37283137,-0.37424707,0.28766987,0.114973255,0.05597956,0.03241073,0.31770945,-0.13526097,-0.79999703,0.3542961,-0.30996928,-0.13766527,-0.59479064,-0.0621351,0.900822,-0.6229483,0.55339086,0.5574348,0.25378242,-0.18334843,-0.5279575,-0.44816634,0.012516111,-0.05796976,0.5309575,0.063991405,-0.73498154,0.51158303,0.036701772,-0.2598603,-0.6652833,0.6035982,-0.05312908,-0.2468168,0.31399372,0.22639032,-0.09754904,-0.26989016,-0.15001887,0.52204496,-0.40752423,0.55493206,0.13954927,-0.040137917,0.5133371,-0.008544791,-0.28029022,-0.5381163,-0.12464375,-0.5806152,-0.26782915,0.06442665,-0.006590525,0.07893911,0.22021544,0.088871144,0.32580975,-0.19143985,0.24078561,-0.27279365,-0.40598145,0.26431462,0.6253472,0.4791766,-0.6174446,0.7717921,0.21114711,0.08172501,-0.35560703,0.11257068,0.28105506,0.31600082,0.22444735,-0.23134486,-0.052072663,0.0632864,0.84072924,0.30012825,0.41867337,0.39437357,-0.13099934,0.40581688,0.1646723,0.12534507,-0.14734526,-0.2929134,0.029268406,0.036282625,0.20729357,0.24494927,0.032937996,0.31905305,-0.11721227,-0.12653768,0.19283734,0.2190675,-0.19652705,-1.3245804,0.5148305,0.35494184,0.690947,0.7295406,-0.11902404,0.09608809,0.5978875,-0.15007307,-0.015027653,0.11691496,0.14845626,-0.39682198,0.63883203,-0.37758437,0.4310741,-0.16569753,-0.036788642,-0.025816761,0.08884738,0.46971107,0.6391126,-0.05283824,0.17165989,0.01890481,-0.24687111,-0.19716705,-0.44246793,0.14286968,-0.56210023,-0.3567975,0.84675485,0.39391986,0.14119692,-0.19132541,0.010006945,0.008044953,-0.19794911,0.26608768,-0.16351335,-0.38802004,0.11825833,-0.8261352,-0.22890943,0.62875545,-0.38019833,0.02895803,0.14318173,-0.26262796,0.19894056,0.078380145,0.061468836,0.026174719,-0.7049265,-0.0058275214,-0.54656076,-0.19649106,0.26503414,-0.53630894,0.19200593,0.19622485,0.02886797,-0.06304907,0.19969316,0.07389628,0.6738846,0.13025719,-0.28150627,-0.21871513,-0.20454359,0.25387678,-0.2512764,-0.17255329,-0.60133547,0.11997992,-0.52030534,0.47776887,-0.043966696,-0.053406674,0.22794724,-0.13054818,0.010539651,0.40016636,-0.27254003,-0.12316823,0.30827036,-0.012468721,-0.22447796,-0.055520177,-0.48635152,0.42212498,0.14189686,0.24815275,0.0028164138,-0.060233504,-0.002761364,0.37275597,0.34248912,0.3071349,0.3437979,-0.029598659,-0.47057533,0.091132216,-0.117271245,0.45789036,0.36301842,-0.19241233,-0.41393554,-0.37221393,-0.16111644,0.33944598,-0.21865262,0.110120974,0.08107524,-0.27430865,0.7389787,0.3182791,1.185531,0.008644273,-0.39299902,0.119223095,0.45568717,-0.1710751,0.11845579,-0.43503007,1.0025352,0.5288082,-0.16157539,-0.24643576,-0.5605847,-0.38989496,0.121358104,-0.30742317,-0.41774783,-0.18329547,-0.7336127,-0.10521028,-0.013558109,0.16158904,-0.10979119,-0.027885154,-0.04208744,0.19166203,0.19384663,0.27416393,-0.7969963,-0.121002525,0.27155074,0.20741095,-0.03154858,0.14874046,-0.416383,0.46614417,-0.69903296,0.20217091,-0.5418124,0.031852666,0.013663414,-0.30558074,0.18489797,0.029396117,0.5134842,-0.37202707,-0.19581799,-0.2248283,0.7746075,0.26241654,0.37679553,0.7190583,-0.26491746,-0.08362528,-0.040956616,0.50135756,1.3230695,-0.32613418,0.11348582,0.29584903,-0.35681364,-0.45161334,0.09856704,-0.5157133,-0.039913867,0.013262439,-0.35137174,-0.53061104,0.20820993,-0.09483933,-0.20547496,0.11291853,-0.74340314,-0.29624704,0.5101918,-0.14337151,-0.462381,-0.34811613,0.18597741,0.6181674,-0.35089457,-0.12465721,-0.03153787,0.32868484,-0.30490014,-0.5506454,0.07908874,-0.53685135,0.48725,0.0022784073,-0.24709213,-0.21644938,0.18473889,-0.49885634,0.28181934,0.26304808,-0.26331237,-0.024453903,-0.21290796,-0.1611551,1.2273185,0.16952622,0.3156307,-0.6635654,-0.48576844,-0.8167555,-0.4570388,0.18380986,0.42669192,-0.0698806,-0.46113205,-0.14670801,0.0040592104,0.03383918,0.0061823525,-0.5911127,0.5217686,0.11515385,0.60927176,-0.058513075,-0.87291175,0.09463922,0.08877188,-0.32371798,-0.30853906,0.5043893,0.05157691,0.85552263,0.081885636,0.08257197,-0.23757589,-0.6316754,0.39079043,-0.28709745,-0.2643647,-0.57175094,0.038079754 +475,0.37181288,-0.21333095,-0.33367524,-0.22168739,-0.2510693,-0.016126756,-0.08960874,0.22437029,0.33605364,0.044008248,-0.075987436,-0.2675028,0.20073251,0.3383484,-0.06907474,-0.921218,-0.07142811,0.1955915,-0.6991018,0.3769854,-0.5969512,0.21821916,0.05055613,0.40002674,-0.0044082874,0.3646048,0.30506405,-0.17169435,-0.017808642,-0.21406238,-0.13883771,0.16590516,-0.54584754,0.09907503,-0.12294708,-0.17309128,0.23174052,-0.50262725,-0.21491814,-0.72339123,0.2154148,-0.8140504,0.348763,-0.021201735,-0.035069037,0.16071594,0.14768001,0.26064986,-0.46844453,-0.066571645,0.20785879,-0.15512776,-0.08714954,-0.21862705,0.0039825267,-0.22588398,-0.47146273,0.002696205,-0.33978036,-0.3810349,-0.26589122,0.06852253,-0.36994085,-0.08555342,-0.068146765,0.4875162,-0.34070444,-0.04673856,0.44598657,-0.3048244,0.2334603,-0.42147604,0.09436655,-0.0054620174,0.38013533,-0.012185301,-0.07033981,0.36732435,0.30810374,0.3566374,0.19497588,-0.32863528,-0.19523928,-0.16994987,0.0988304,0.48461744,-0.1272511,-0.5441102,-0.16876017,-0.05224622,-0.04451099,0.322295,0.018044634,-0.20233293,-0.014828918,-0.07536846,-0.25772604,0.5155071,0.5102716,-0.30738372,-0.37843132,0.14375623,0.42264417,0.2183548,-0.066641614,-0.1531529,0.1334788,-0.5872269,-0.2553528,0.103061385,-0.117725134,0.5031179,-0.15286693,0.1092127,0.8323057,-0.21366824,0.13951205,-0.04756003,-0.040115397,-0.031940784,-0.43344888,-0.22378264,0.18003912,-0.5446847,-0.026739206,-0.2945425,0.96203625,0.22818467,-0.74764144,0.4825504,-0.5714355,0.221261,-0.21471913,0.59494126,0.5912038,0.1544199,0.41967997,0.69490254,-0.28299505,0.2205206,-0.018805798,-0.56916684,0.098794945,-0.1659645,0.25299266,-0.358926,0.10167586,-0.2049947,0.18057005,0.15246332,0.048901957,-0.5688508,-0.12642224,0.17486344,0.77505726,-0.3044211,-0.024260942,0.49803782,1.0760187,0.9109182,0.04367476,1.2829998,0.42828718,-0.3317061,0.25414363,-0.31893826,-0.6736904,0.18531029,0.2903122,0.058366843,0.04788989,-0.18170512,-0.11757953,0.3110489,-0.2782823,-0.020943651,-0.040128417,0.43259814,0.104442425,-0.025626838,-0.46906194,-0.37164015,-0.013902971,-0.18995054,0.21661799,0.21364617,-0.13643835,0.22130395,-0.03343285,1.3085943,0.10248013,0.044309024,0.015488273,0.53369516,0.3799371,-0.14857301,-0.1783062,0.45454052,0.33972308,-0.20560725,-0.6494093,0.3453868,-0.2867485,-0.23947088,-0.10996973,-0.35754362,0.016690228,0.18062197,-0.33412513,-0.15133122,-0.065621786,-0.14074989,0.5499321,-2.909515,-0.20690699,-0.035257123,0.3034969,-0.3386434,-0.13329677,-0.0686354,-0.5601739,0.17534228,0.19766672,0.47350317,-0.5988861,0.45719978,0.49662122,-0.49610543,-0.26139474,-0.7098216,-0.1577611,-0.08348004,0.3458519,0.111871995,-0.12081417,-0.26749307,0.19391418,0.682865,0.21269287,0.1435493,0.3719949,0.3855853,0.15098238,0.5857361,-0.007308564,0.5566106,-0.19567406,-0.12781146,0.25524992,-0.2717668,0.26819652,-0.16322947,0.10496514,0.55680764,-0.31246203,-0.91540325,-0.5839227,-0.30909082,1.0163525,-0.29883915,-0.41883412,0.27426204,0.04015961,0.082806654,0.18342574,0.5035051,-0.07765211,-0.09110948,-0.58370787,0.23234256,-0.004429005,0.16081978,0.11935247,-0.118972756,-0.28170744,0.6871428,-0.10647978,0.44573084,0.18681507,0.31004506,-0.20960252,-0.35976237,0.03518817,0.7042465,0.11631697,-0.04723447,-0.054056812,-0.32615286,-0.14837871,-0.2366996,-0.103491135,0.5469021,0.8960725,-0.026508909,0.09486049,0.3473723,-0.15537049,0.070746526,-0.04977266,-0.3415611,0.03766782,-0.13014777,0.49327877,0.60561603,-0.1361306,0.45106453,-0.083858505,0.32312408,-0.08997051,-0.47739628,0.6412754,0.4045372,-0.14412144,0.05491974,0.41590056,0.40299892,-0.5243655,0.4385964,-0.5668972,-0.13324332,0.69117004,-0.18965642,-0.40824476,0.12897018,-0.18793483,-0.054578934,-0.84266204,0.39114454,-0.32616186,-0.3157701,-0.29701257,-0.18596826,-3.8472435,0.20449676,-0.17399761,0.047981262,-0.3152202,0.07975662,0.24652901,-0.511547,-0.47450134,0.19445927,0.23560679,0.5707169,-0.031051407,0.20862484,-0.32820204,-0.04940578,-0.18080328,0.17900898,0.066496804,0.3112774,-0.090745464,-0.30086476,0.10482552,-0.08086186,-0.5458969,0.29764956,-0.6247057,-0.4574538,-0.0812021,-0.62691915,-0.37989402,0.67355996,-0.3337067,0.038957503,-0.24606164,0.16659227,-0.37625107,0.24519132,0.056739993,0.1482025,0.00617608,-0.0081811035,-0.0044546383,-0.32634577,0.4538321,-0.06594364,0.41694552,-0.03088059,0.16548088,-0.0053590154,0.45242682,0.52393717,-0.018375358,0.8177867,0.30092523,-0.02728512,0.22997113,-0.33146933,-0.16971993,-0.44337362,-0.3900886,-0.11160367,-0.3802635,-0.4895012,-0.13047187,-0.26264217,-0.5969754,0.42763737,0.06911225,0.2261057,-0.045491397,0.14994693,0.4524432,-0.055189546,0.11664729,0.008225098,-0.07770084,-0.5593487,-0.063835606,-0.7130119,-0.33013153,0.28150135,0.59675354,-0.3037875,-0.028691968,-0.18776624,-0.27889398,-0.0032274222,-0.009477409,0.0722316,0.43921456,0.39362517,-0.03567613,-0.4765405,0.4264233,-0.14228553,-0.18546431,-0.5378469,0.10475601,0.6989427,-0.72620547,0.79617023,0.3795672,0.068952605,0.01398095,-0.40878645,-0.3247764,0.13599786,-0.05585063,0.44017062,-0.012434147,-0.7930266,0.5314025,0.32850048,-0.34725672,-0.7135796,0.28552952,-0.0038423985,-0.33007273,-0.12380376,0.21601944,0.21348803,-0.10422294,-0.26010108,0.21022895,-0.5666493,0.253984,0.069510184,-0.005698749,0.364537,-0.03499111,-0.22044523,-0.66094935,-0.15774715,-0.54960436,-0.26947877,0.28430563,0.009043434,-0.00041836075,0.2157185,0.12074758,0.39719057,-0.21552147,0.08722095,0.1077522,-0.2885428,0.25948706,0.39221743,0.24400434,-0.37024778,0.45222765,0.08297696,-0.101191156,0.16980512,0.041477036,0.40542752,0.107189775,0.31205288,-0.2670146,-0.13655406,0.36794338,0.73897886,-0.06759857,0.43923476,0.022044985,0.0049577695,0.5044541,-0.090241514,0.056561984,0.18831436,-0.38634083,-0.0005192182,0.028174324,0.19237329,0.5711821,0.31353584,0.19015037,0.22783132,-0.36805153,-0.036004033,0.26657632,-0.22418642,-0.8112668,0.48410895,0.20676576,0.81375027,0.54709584,0.026563047,-0.19671461,0.6681601,-0.13549589,0.26122352,0.35790467,0.028426642,-0.5502654,0.8240779,-0.4810517,0.32349315,-0.24159832,-0.10949765,0.08827436,0.16745016,0.3250433,0.6510564,-0.24263729,0.049244545,-0.047229312,-0.09668206,0.12027625,-0.38949013,0.13736463,-0.37922344,-0.33609533,0.5488861,0.41322502,0.22299597,-0.17180155,-0.033840474,0.09710874,-0.08076988,0.11357926,-0.043787006,-0.14773412,0.40486977,-0.64422745,-0.21231304,0.652876,-0.09009192,0.14349365,-0.3164621,-0.22470354,0.06652896,-0.246953,-0.060103416,-0.109198175,-0.5923504,0.1025927,-0.15468302,-0.48397443,0.53263867,-0.29996392,0.047069542,0.121449426,0.06010032,-0.14645858,0.20329727,0.2351556,0.78035724,-0.09985415,-0.15396737,-0.49132323,0.030259123,0.17171183,-0.13824931,0.0013319403,-0.50621945,-0.09017162,-0.4028133,0.54887533,-0.16937026,-0.39911842,0.1133761,-0.20487438,-0.04808449,0.5677315,-0.210615,-0.002399996,-0.13560236,-0.23144628,-0.29781055,0.056233916,-0.21104158,0.24769463,0.30026746,-0.035536345,-0.12439958,-0.3181491,-0.19637172,0.43698445,0.04124838,0.40455136,0.17299776,0.13694717,-0.10764237,-0.01831449,0.11495984,0.39992833,0.09191256,-0.02667124,-0.40375134,-0.18043308,-0.19676106,0.11346163,-0.09705693,0.18106723,-0.0438464,-0.37814385,0.8318089,-0.022097,1.170502,0.06313501,-0.29340583,0.11432878,0.52851665,0.026577126,0.100743994,-0.4497142,0.86940545,0.44375062,-0.086464815,-0.13955274,-0.39991635,-0.16165264,0.39509693,-0.2408478,-0.064168625,-0.033428144,-0.52392757,-0.45043325,0.2612609,0.18229087,0.097766705,-0.010995223,-0.038235676,0.04279237,0.11198696,0.48127678,-0.6320924,-0.1422611,0.08956231,0.34462452,0.024340803,0.342292,-0.35033903,0.4357861,-0.6479,0.26061246,-0.47236896,0.057489764,-0.22762366,-0.23849452,0.056969117,-0.024064763,0.30138633,-0.23852055,-0.48351583,-0.044497646,0.414008,0.24255247,0.20416965,0.70736355,-0.21331096,-0.048304122,0.23507215,0.7654069,1.1706308,-0.40117723,-0.03217777,0.29430452,-0.2644277,-0.67222995,0.3343213,-0.14583673,-0.21841058,-0.16686454,-0.29749563,-0.49456885,0.23001745,0.20352319,-0.07994496,0.07710729,-0.4910482,-0.19007213,0.38770416,-0.29840502,-0.2962708,-0.31135818,0.39790183,0.76814777,-0.30140513,-0.25770932,0.076758325,0.20306407,-0.28162345,-0.55544937,-0.05332733,-0.36099738,0.38196787,-0.009613902,-0.21402155,-0.09176389,0.1088391,-0.38282797,0.1177938,0.030831883,-0.3380069,0.167553,0.010593504,0.05783658,0.8582414,-0.16357324,-0.11427291,-0.73542815,-0.52096474,-0.80841285,-0.4462777,0.44347164,0.09771502,-0.05415795,-0.3237231,0.07309692,0.039836876,-0.12929228,0.0037521315,-0.5130424,0.22753723,0.01699404,0.48139605,-0.29904944,-0.94878143,0.015812175,0.18241088,-0.2718944,-0.6463084,0.6186535,-0.09410877,0.8098346,-0.03465987,-0.08353015,0.02989566,-0.21201102,0.10237908,-0.512924,-0.23333962,-0.6689312,0.16095778 +476,0.466701,0.063577764,-0.52145016,-0.14826263,-0.2577547,0.26817626,-0.18518524,0.43287912,0.1445649,-0.46556458,-0.06212636,-0.15743457,0.03898955,0.229805,-0.23335226,-0.68718714,0.15536563,0.061059084,-0.56738967,0.28567863,-0.5096383,0.30882448,-0.18711063,0.38318136,-0.084978685,0.25591713,0.02826688,-0.23734137,-0.014263784,-0.19482274,-0.06825484,0.24440213,-0.68683994,0.13027741,-0.12650353,-0.13150716,0.20697178,-0.5688533,-0.44909462,-0.58406013,0.265348,-0.80525094,0.59916407,0.10507011,-0.22074953,0.25599298,0.015047384,0.05923329,-0.15264562,0.19099961,0.05340105,-0.18608366,-0.104828335,-0.16370165,-0.3831797,-0.36594534,-0.5981981,0.04360998,-0.40987426,-0.08350413,-0.2848942,0.058261693,-0.27509645,-0.1106183,0.039622836,0.26469928,-0.36562496,0.18834427,0.17109069,-0.13359466,0.13267621,-0.5169949,-0.13457182,0.08303816,0.42971912,-0.38434657,-0.19026197,0.22647998,0.33575106,0.46212795,-0.09267305,-0.14095727,-0.22419763,-0.10060125,0.07931619,0.7073311,-0.10745708,-0.361981,-0.14029162,-0.10727135,0.07890655,0.4065526,0.13431966,-0.3610303,-0.2783043,-0.13437936,-0.24785657,0.3604262,0.54593176,-0.32636458,-0.24663024,0.48540375,0.42854384,0.29203245,0.01319004,0.18064448,0.048891734,-0.63609296,-0.2791104,0.07099193,-0.0989484,0.4595025,-0.2386484,0.29555783,0.68325347,-0.22092569,0.015606582,0.020052237,-0.013544382,0.005496583,-0.26005882,-0.20651332,0.18576072,-0.46002728,0.13227174,-0.17434047,0.88485724,0.26405635,-0.8576475,0.34129667,-0.6493049,-0.05406143,-0.027811876,0.52268034,0.46288612,0.41797924,0.16006182,0.49804425,-0.5724631,0.100990705,0.031340033,-0.4557808,0.08402158,0.0024786505,-0.1021976,-0.4092029,-0.02573881,0.070117824,0.08555799,0.06636701,0.26333833,-0.3441141,0.044242553,0.13370526,0.76402515,-0.39015582,-0.124970295,0.6539456,0.97887594,0.82303935,0.1948833,1.4172984,0.2606225,-0.07145027,0.07608058,-0.11536717,-1.012989,0.32416603,0.33226332,-0.31605586,0.3459641,0.16814877,0.052033428,0.19744995,-0.25267163,-0.11856433,-0.15877317,0.3950841,0.065638825,-0.17891923,-0.36843127,-0.29035383,-0.019782593,-0.13708211,0.20786247,0.21020485,-0.074342474,0.31883606,0.23965468,1.4327984,0.012923769,0.22452058,0.09119288,0.3495135,0.2813955,-0.040317304,-0.22542624,0.4330275,0.35066327,0.03454111,-0.5460412,0.07366222,-0.07732902,-0.48214558,-0.25465286,-0.3204674,-0.1427235,-0.09176403,-0.38815784,-0.1680506,-0.15330113,-0.14230178,0.68950814,-2.7654834,-0.07417271,-0.101534076,0.5027987,-0.23799336,-0.42287308,-0.12167722,-0.39981732,0.5642904,0.2966173,0.31891236,-0.5654944,0.308827,0.55808014,-0.21474981,-0.2236878,-0.6197206,-0.01021914,-0.012696047,0.09543346,-0.103479646,-0.088614896,-0.07199762,0.06128071,0.37231496,-0.08579273,0.13579506,0.1968659,0.3771946,0.25393826,0.33303016,-0.04309424,0.56460553,-0.21006986,-0.1443658,0.20033444,-0.3526471,0.36660698,-0.14626494,0.15924396,0.42807823,-0.3901406,-0.57143444,-0.6142302,-0.4417243,1.0732244,-0.1875648,-0.36294073,0.25631064,-0.20259003,-0.41482827,-0.07647681,0.27335164,-0.30726424,-0.13861367,-0.7032798,-0.05936247,-0.06129327,0.29876164,-0.06746237,0.009496548,-0.40933576,0.6299427,-0.10351247,0.47435635,0.29428616,0.1631227,-0.19942223,-0.58136255,-0.043884106,0.80263007,0.35884684,0.24384281,-0.29813936,-0.27553174,-0.15268819,-0.16354541,0.08856231,0.46063063,0.7439887,-0.010649144,-0.02778734,0.28526792,0.060695767,0.13954891,-0.043958418,-0.20368035,-0.16079943,-0.11505138,0.6029722,0.44198585,-0.2690676,0.31885046,-0.1717762,0.28406817,-0.25227532,-0.31843826,0.51329726,0.8322664,-0.1668222,-0.31577566,0.6282014,0.31961676,-0.35492092,0.3460873,-0.55276126,-0.20127296,0.46547285,-0.18036537,-0.48488447,0.19507074,-0.19722925,0.09139245,-0.960195,0.36185002,-0.23786506,-0.3935419,-0.3553404,-0.12914434,-3.3018222,0.114918195,-0.30458382,-0.10910446,-0.27325764,-0.14612804,0.2996516,-0.5265701,-0.63881445,0.22480758,-0.033199422,0.57531327,-0.040874295,0.18416773,-0.17599164,-0.14017951,-0.42697647,0.109589815,0.16000092,0.3571732,0.04654608,-0.24200343,0.05237024,-0.1478061,-0.45077106,0.18543613,-0.57239103,-0.3532338,-0.12289314,-0.5008252,-0.32810187,0.6586403,-0.5306062,0.007364984,-0.33401746,-0.047781263,-0.29409394,0.37479088,0.1302047,0.25411308,0.037182886,-0.0044334745,-0.17522028,-0.3415944,0.36817703,-0.017873645,0.22474118,0.3767075,-0.1293454,0.017531583,0.2932416,0.61763614,-0.05962955,0.6660691,0.25980222,0.01464578,0.37121916,-0.3582801,-0.28065267,-0.45935464,-0.33594006,0.07429417,-0.4091406,-0.45779082,-0.24941407,-0.31648996,-0.66101325,0.3583632,0.060205292,-0.103007786,-0.040099956,0.17519537,0.4278913,-0.14653297,-0.08445358,0.017637078,-0.116930015,-0.42319646,-0.28774858,-0.52302396,-0.39253864,0.19852564,0.82706606,-0.1245906,0.001579059,0.10500852,-0.27154356,0.010604552,0.063272506,-0.044541974,0.18139699,0.38723627,0.058578033,-0.58070517,0.44975963,-0.07676356,-0.42187086,-0.6502544,0.043991905,0.64579976,-0.753851,0.66521156,0.39120278,0.122686945,-0.034469545,-0.6778265,-0.26029077,-0.055648427,-0.2746801,0.39233992,0.18476449,-0.8213664,0.52663475,0.3504713,-0.24137296,-0.71272224,0.56035525,0.025657784,-0.22479142,0.18913957,0.32925767,0.07128988,-0.08584551,0.022242596,0.1655751,-0.43042222,0.3102778,0.22530167,0.1205123,0.4888136,-0.16030252,-0.07625139,-0.65573466,-0.13502742,-0.4721957,-0.26960698,0.14137198,-0.019343589,0.04792469,0.06697499,0.12205422,0.41304973,-0.51238286,0.21321656,0.022145381,-0.17041706,0.10942067,0.3226781,0.47258392,-0.29968593,0.5343314,-0.076701574,0.21422677,0.10243105,0.28589854,0.5509651,0.15351157,0.2459897,0.0022564617,-0.096292995,0.083334304,0.9673395,0.11707902,0.45164284,0.18435942,-0.013835409,0.32171923,0.09422188,0.13292548,0.1269252,-0.4346871,-0.0449575,-0.110672824,0.14834835,0.43419906,0.1969773,0.31439406,-0.2010828,-0.27967682,-0.016572878,0.2884399,-0.022360427,-1.1606305,0.30799314,0.20681879,0.72290057,0.36891922,0.06697996,0.08259814,0.4561885,-0.15412776,0.18086015,0.24488685,0.12959771,-0.4827238,0.4619332,-0.5620467,0.3202219,-0.13412105,-0.11067158,0.063983396,0.06825273,0.37595245,0.7764087,-0.07783602,0.11179025,0.054722376,-0.2510215,0.17894666,-0.46507066,-0.03917528,-0.29461557,-0.09642226,0.5946774,0.48355785,0.34515166,-0.3038182,-0.058464266,0.12234696,-0.07102336,-0.053364657,0.049983066,0.009248146,-0.0009978244,-0.48715696,-0.45342168,0.57682574,0.17948072,0.09764942,0.02412199,-0.30057892,0.23260124,-0.31007403,0.04533746,-0.07090672,-0.8341857,0.07033906,-0.21287884,-0.4756792,0.20775102,-0.123131596,0.054582994,0.28812355,0.120199546,-0.2647319,0.42789063,0.12910149,0.8676943,0.03283601,-0.21044262,-0.49046573,0.039435916,0.3707025,-0.21214284,-0.05720804,-0.3683736,-0.016955333,-0.36021286,0.22416975,-0.092478454,-0.17996083,0.11721604,-0.017442951,-0.001048301,0.55420107,-0.16931598,-0.0764217,0.10887296,-0.12860681,-0.26934835,-0.11593153,-0.21432386,0.13259806,0.37029487,-0.120051794,-0.057006627,-0.11066883,-0.24689393,0.30083126,0.17620654,0.39733812,0.35400137,0.15531142,-0.31285077,-0.25136355,0.11454104,0.52448493,-0.12886985,-0.10155564,-0.24664749,-0.48731092,-0.050408714,0.38116437,-0.12492945,0.11487621,0.103442565,-0.313167,0.6639742,0.06545146,0.8610789,0.122057155,-0.2960522,0.03205396,0.3944113,0.016502466,-0.047675434,-0.42174813,0.98920244,0.47099012,-0.101998195,-0.15787123,-0.16347368,-0.020510124,0.102361046,-0.25295073,-0.10640925,-0.13025491,-0.61514145,-0.21624687,0.21445836,0.053843968,0.036255006,0.03751983,-0.04285596,0.26612148,0.13574865,0.35861796,-0.57615125,0.06106243,0.26293442,0.21978606,0.2070411,0.3541095,-0.3494627,0.3510151,-0.44677845,0.035852347,-0.35812035,0.10719202,-0.10758043,-0.193879,0.029673113,-0.07559567,0.36219662,-0.19018261,-0.34158987,-0.16404316,0.40705734,0.18360035,0.24969395,0.6382937,-0.14831273,0.13571075,0.034009855,0.53058136,0.914899,-0.1480421,0.12703311,0.42827997,-0.28752726,-0.5753279,0.20266683,-0.37865216,0.14340873,-0.17810516,-0.14227872,-0.2123266,0.18523815,0.25613222,0.15298651,0.13054866,-0.55325747,-0.1983613,0.46067205,-0.2095186,-0.29824862,-0.21367928,0.16614945,0.94582224,-0.19214654,-0.020193292,0.16298823,0.1769658,-0.2257148,-0.47859487,0.018581271,-0.25323996,0.19734953,0.063831076,-0.25800484,-0.089913525,-0.001920253,-0.28800598,0.20936258,0.26316532,-0.33398136,-0.061276946,-0.2561413,-0.010838611,0.68935204,-0.27951807,0.06464971,-0.682312,-0.5317368,-0.9671317,-0.30438456,0.36220798,0.13067476,0.051939316,-0.4922612,0.010337174,-0.025800357,-0.06123566,0.0065417713,-0.36345553,0.46601343,0.17498492,0.39786604,-0.104756035,-0.86362755,0.07654511,0.09742106,-0.38064417,-0.61981636,0.62640876,-0.16305313,0.75771505,0.048997436,0.03404967,0.05508778,-0.5393652,0.2753441,-0.3166401,-0.04940458,-0.73237187,0.22605732 +477,0.55987656,-0.113476455,-0.40422213,-0.046877395,-0.14786562,0.08240479,-0.19167861,0.48580974,0.16146863,-0.37183526,-0.22011071,-0.24412322,0.09089124,0.3827627,-0.16637063,-0.576145,-0.1589401,0.13505791,-0.37792096,0.5053246,-0.42139786,0.2262488,0.05459927,0.40036732,0.2113016,0.33393407,0.20162284,-0.08403645,-0.24188668,-0.06348808,-0.07006805,0.4390813,-0.5905725,0.02381491,-0.06670663,-0.36391807,-0.164704,-0.4968606,-0.28092578,-0.6397628,0.399194,-0.70792186,0.3851941,0.19194153,-0.16899914,0.3391639,0.03701485,0.15857375,-0.23755533,0.022019722,0.10188388,-0.18772954,-0.030041747,-0.14234565,-0.1236618,-0.22254004,-0.6755693,0.03647419,-0.4245108,-0.23709728,-0.23920657,0.17159575,-0.24910937,0.032253623,-0.12128946,0.49398777,-0.43664593,-0.07659982,0.24413607,-0.12882489,0.25172645,-0.50949895,-0.21600379,-0.056444652,0.23015143,-0.25735936,-0.059790403,0.15713668,0.29314986,0.5591259,-0.009291768,-0.1452046,-0.4616272,-0.0039381757,0.114572555,0.5461145,-0.3235031,-0.62132436,-0.14968073,0.046686463,-0.066981845,0.17056233,0.07472732,-0.28067473,-0.099128306,-0.016425185,-0.104376316,0.30707207,0.39745742,-0.39796123,-0.36475092,0.2723598,0.44790033,0.13431445,0.0022537597,-0.0687439,0.062964246,-0.58466244,-0.11380616,0.08164819,-0.25293484,0.53887546,-0.004511562,0.3079708,0.6033297,-0.08597009,-0.00014880672,-0.10902071,-0.06457043,0.013414107,-0.35196766,-0.055240422,0.25996858,-0.26356953,0.21417224,-0.06143526,0.7916312,0.06257202,-0.86198604,0.3285754,-0.5224923,0.13433042,-0.034209475,0.49257267,0.68735963,0.23385113,0.4440467,0.7124036,-0.498939,0.052032705,-0.13357584,-0.32312334,-0.052143943,-0.07698007,0.104066506,-0.58672965,0.046238806,0.030548364,-0.025886144,0.21242452,0.4383691,-0.6091192,0.01500589,0.21737443,0.77939934,-0.28152248,-0.08907705,0.7088105,1.0593488,1.0916336,0.021725936,1.1087545,0.16730575,-0.22536412,0.32355052,-0.45114,-0.6817584,0.17980225,0.3788038,-0.008008048,0.20546597,0.1368496,-0.11123401,0.3992867,-0.36435997,0.004030615,-0.07106517,0.029933944,0.17381293,0.023921961,-0.424706,-0.21117964,-0.08979235,0.05748434,0.13924994,0.2272803,-0.21082519,0.39195856,0.005957395,1.8882668,-0.13782428,0.1744794,0.10946442,0.43584442,0.13005584,-0.15748218,-0.12182912,0.21593246,0.31854877,0.050708696,-0.5589001,0.06828946,-0.1657542,-0.53334594,-0.067700416,-0.29245734,-0.13095874,0.011413803,-0.51455015,-0.113770336,-0.13861099,-0.40174824,0.43368635,-2.9760284,-0.06461412,-0.010623328,0.25802648,-0.2215704,-0.45243692,-0.17071602,-0.42618665,0.36781245,0.37113973,0.39708096,-0.629917,0.25978097,0.25330546,-0.4511979,-0.1433442,-0.6058028,-0.08396982,-0.05874797,0.33299077,-0.036919672,-0.14100555,0.058032084,0.17116605,0.5480056,-0.02258461,0.13481483,0.18575493,0.378319,-0.0120676905,0.48147854,-0.03128034,0.4563833,-0.18027806,-0.27357033,0.36288017,-0.34158513,0.1835229,-0.1962981,0.17793927,0.2976477,-0.39355752,-0.9429245,-0.57727695,-0.23318839,1.0441918,-0.21031645,-0.3417229,0.27351364,-0.14371899,-0.17068075,-0.0468701,0.49349585,-0.085301176,-0.08005212,-0.8334856,0.16380444,-0.14484581,0.051502645,0.05414681,0.017443081,-0.5018524,0.7209642,-0.08313431,0.4917996,0.465151,0.20364021,-0.16146186,-0.45674625,0.11460626,0.96013534,0.24832392,0.19576128,-0.16585547,-0.18137994,-0.17595562,-0.08315089,0.0527326,0.53254825,0.6537018,0.07333877,0.21743599,0.24017769,0.04124111,0.07887219,-0.16257358,-0.2537681,-0.10022578,-0.09890157,0.5823503,0.72721213,-0.21700728,0.3899423,-0.10657567,0.23427793,-0.08267856,-0.28363758,0.5176084,0.93412507,-0.11022433,-0.18609233,0.6019459,0.5440167,-0.23399329,0.3908231,-0.5681313,-0.2958311,0.4680771,-0.24225569,-0.41935426,0.25937712,-0.3079641,0.0004594396,-0.9012984,0.15208332,-0.1867853,-0.2533476,-0.5595981,-0.15409157,-3.7883723,0.1622963,-0.35969937,-0.21367334,-0.04440467,-0.09463053,0.16068242,-0.64417946,-0.46898472,0.098254934,0.06189393,0.5401655,-0.10704103,0.17929739,-0.2062802,-0.1750161,-0.16872244,0.16971156,0.11807665,0.32678562,0.0403292,-0.36706105,-0.019199044,-0.14117111,-0.34874076,0.01960501,-0.537062,-0.45221043,-0.10663716,-0.524799,-0.40181297,0.5423006,-0.41466618,0.019166376,-0.22432305,-0.08823477,-0.14502373,0.35897568,0.099411085,0.20102471,0.028065383,-0.06724247,0.019153185,-0.24104086,0.25424904,0.049052887,0.23990612,0.5533716,-0.19127515,0.20864119,0.38172033,0.53450316,-0.07564603,0.8533062,0.64765924,0.043963253,0.18687277,-0.3038343,-0.119794734,-0.62205404,-0.42502272,-0.11579797,-0.3932628,-0.5128648,-0.18225747,-0.41625202,-0.7436744,0.5132638,-0.0803491,0.28901052,-0.04284702,0.30316338,0.5206559,-0.30973968,-0.03859575,-0.07129637,-0.035214797,-0.4814106,-0.27180773,-0.5703091,-0.63148797,0.052716166,0.7819148,-0.055599667,-0.031797655,0.05279605,-0.15624693,-0.16861044,0.19442397,0.06729712,0.1858277,0.49377772,0.024141889,-0.644818,0.5771538,-0.11846945,-0.22608304,-0.66379434,0.12162564,0.34868076,-0.58005905,0.66805726,0.33928835,0.14500016,0.12158221,-0.5396582,-0.19197361,-0.07804249,-0.19061086,0.43305504,0.26698452,-0.77521193,0.4631802,0.37354156,-0.22458456,-0.8366779,0.4483614,0.017103255,-0.4476115,0.012667246,0.2950526,0.14161794,0.05609715,-0.16004513,0.20430629,-0.4826255,0.3058162,0.17402315,-0.084713414,0.38087595,-0.21611843,-0.07519282,-0.5917759,0.0927123,-0.47234327,-0.31720048,0.15945588,0.12277676,0.15621763,0.16509081,-0.050343707,0.37626594,-0.24770534,0.079277486,0.03182346,-0.19070083,0.17807506,0.43882617,0.40875685,-0.4082431,0.5388138,-0.02680791,-0.09181556,-0.03236695,0.1294542,0.48123303,0.017367065,0.36844686,-0.11594848,-0.33964297,0.3203935,0.6112784,0.12766185,0.35760802,-0.014385151,-0.2370823,0.47082135,0.05672317,0.08630409,0.007017538,-0.5779403,0.007475402,-0.16066456,0.21461949,0.5043167,0.14254616,0.3695081,-0.15418366,-0.1910215,0.12222126,0.22270907,-0.075151704,-1.0298469,0.22445802,0.08475925,0.85024196,0.6439278,-0.06532645,0.061030786,0.4981109,-0.24038182,0.12065603,0.3091877,-0.06305881,-0.56218934,0.62002516,-0.7056688,0.42314374,-0.11576476,-0.027392827,0.0093635805,-0.109872654,0.35358024,0.6107987,-0.12431471,-0.0021337233,0.023974115,-0.2557769,0.016626012,-0.30540425,0.24270518,-0.6026249,-0.15807395,0.64142215,0.6189202,0.33547372,-0.13326332,-0.027924387,0.0754807,-0.05534531,0.010594575,0.034458026,0.15977766,0.044858918,-0.64310193,-0.27615103,0.59650064,-0.12740088,0.12187313,-0.04064888,-0.29910034,0.19305253,-0.15088984,-0.30097032,-0.05750697,-0.6029158,0.08806686,-0.36551178,-0.44576228,0.5558195,-0.08121514,0.3053885,0.14610192,0.14582413,-0.43012884,0.20776322,0.1727629,0.8837738,0.03301818,-0.16233736,-0.41705662,0.13133153,0.2378582,-0.11485269,-0.2969228,-0.29741046,0.03877889,-0.58520454,0.44285107,-0.053061314,-0.29909387,0.12145206,-0.10681027,0.087995626,0.56623346,-0.016040355,-0.17022216,-0.010272458,-0.085755646,-0.35005322,-0.087275654,-0.14637545,0.29673114,0.12549414,-0.09313042,-0.0726043,-0.10067952,-0.1429712,0.4365617,0.1219841,0.35132334,0.32518405,0.06774732,-0.3537661,-0.072107844,0.30614185,0.42289826,-0.03781103,-0.17094271,-0.2951406,-0.49537224,-0.40277472,0.14518897,-0.1729851,0.3493729,0.09709449,-0.23099163,0.74406767,0.021246959,1.1078784,0.1322333,-0.28826553,0.12820557,0.4225341,-0.026788294,0.015837558,-0.43517148,0.9647877,0.5796401,-0.009549692,-0.14288771,-0.17013618,0.049139127,0.1300731,-0.17862976,-0.08787852,-0.13490205,-0.6292217,-0.26904348,0.14112023,0.27342343,0.23917706,-0.09328098,0.012191951,0.19514665,0.053975582,0.41383877,-0.396808,-0.22262092,0.32365492,0.31383362,-0.061502982,0.11290604,-0.46473038,0.45936057,-0.3748819,-0.026397139,-0.37923014,0.15763137,-0.18220073,-0.19688772,0.26356867,-0.08692074,0.46646142,-0.2094245,-0.3334953,-0.2559689,0.40854925,0.07684653,0.07816401,0.59327394,-0.24279904,0.13812667,-0.0003117174,0.52447927,1.223969,-0.34779084,0.005622633,0.32784027,-0.17034632,-0.63712823,0.35256574,-0.1658857,0.12090272,-0.043136552,-0.21534272,-0.47956574,0.22356063,0.08528167,-0.019580454,0.052211083,-0.49247813,-0.2237237,0.21818888,-0.28591034,-0.1921817,-0.24663532,0.14661187,0.6965349,-0.29732037,-0.32464954,0.11344212,0.33471954,-0.07677485,-0.60833734,0.050364092,-0.37842667,0.24678163,0.19589408,-0.28209856,-0.15838148,0.087868325,-0.36181483,0.009384707,0.25544742,-0.3354674,0.046571314,-0.34836873,-0.023866748,1.0036452,-0.1434604,0.25220722,-0.5899623,-0.4776214,-1.0184579,-0.42918056,0.5529223,0.06515078,0.087232195,-0.50939274,0.0461761,-0.1446162,-0.1819715,-0.14276353,-0.40325308,0.46731696,0.13824245,0.42187953,-0.15712032,-0.45288387,-0.0019828398,0.1606966,-0.13042863,-0.4952998,0.45152473,0.09987415,0.86081535,0.028688904,0.081214495,0.34712043,-0.52493006,-0.13780625,-0.20559573,-0.1945796,-0.7390426,0.086000346 +478,0.47030336,-0.12382321,-0.43200123,-0.10787996,-0.31666964,-0.045495573,-0.29886252,-0.0057393215,0.28539732,-0.23917821,-0.1138192,0.032287005,0.005490287,0.18215059,-0.13292313,-0.65306973,-0.11636744,0.1447219,-0.6805506,0.8408645,-0.34412882,0.2941564,0.086771436,0.41297176,0.14035244,0.37761247,0.33090955,0.05532503,-0.058240794,-0.13951156,-0.04737824,0.1496028,-0.50030726,0.30747518,-0.13254887,-0.24069716,0.059921097,-0.3627982,-0.1941293,-0.75907934,0.15999056,-0.78499794,0.3869626,0.023792572,-0.14516428,-0.029927218,0.41226277,0.22549309,-0.32532245,-0.16217443,0.28483158,-0.22040492,-0.28885555,-0.27228928,0.110194854,-0.19554469,-0.37378946,-0.11044302,-0.48025802,-0.3023078,-0.23055,0.22586387,-0.33574283,-0.09194414,-0.102435365,0.48875037,-0.30935657,0.039108045,0.37999153,-0.34704426,0.09757417,-0.73246455,-0.17117085,-0.02953732,0.27428162,0.10828622,-0.09495786,0.45223674,0.119314566,0.33957565,0.31951702,-0.38803795,-0.18008515,-0.21238898,0.24219012,0.33937117,-0.17177013,-0.22086522,-0.19188349,0.093322195,0.21242398,0.3151699,0.25175476,-0.3252796,0.081558384,-0.3074439,-0.015702466,0.53585374,0.53082293,-0.11487128,-0.25159654,0.16666521,0.41710955,0.31224123,-0.20522642,-0.17757617,-0.13089126,-0.43956295,-0.23153816,0.09465303,0.084501535,0.30879217,-0.04399096,0.08179938,0.68984693,-0.046490442,-0.067063875,0.059866015,0.065924205,-0.021964995,-0.45074564,-0.17786215,0.39382643,-0.48979932,0.02538972,-0.34409046,0.59683824,0.03236767,-0.6288564,0.3225623,-0.4654854,0.1155677,-0.01711152,0.54116285,0.63873786,0.32638073,0.2344422,0.8358296,-0.2980549,0.073835246,-0.07781514,-0.2864107,-0.07788048,-0.06616335,0.31570658,-0.45035902,0.21842507,-0.16205911,0.26817912,0.052548204,0.09569286,-0.3689413,-0.18923952,0.26485267,0.7982805,-0.25392732,0.026975425,0.58984894,1.2129834,1.0012575,0.0003303965,0.9605588,0.0858284,-0.14907299,-0.21320334,-0.18485136,-0.6409288,0.19263858,0.39822438,0.2994529,0.25292623,-0.19229083,-0.14724661,0.30881223,-0.22752836,-0.18335511,0.013963699,0.38049185,0.16831703,-0.017850947,-0.41433632,-0.11954306,0.028140258,-0.15870208,0.2125004,0.19946294,-0.24939913,0.17895705,0.006854109,1.2886649,-0.29690397,0.1544307,0.2513698,0.38195366,0.29637802,-0.064860485,0.046371922,0.4045496,0.30369377,0.038386367,-0.39843026,0.23978344,-0.38048786,-0.5190824,0.0063522756,-0.3915844,-0.16208294,0.26756752,-0.35068992,-0.11032726,-0.10739317,-0.12030192,0.27758357,-2.9376643,-0.10380237,-0.16189797,0.24158047,-0.33441848,-0.103581905,0.045619685,-0.41782892,0.4191181,0.16285749,0.48837617,-0.47192398,0.37869474,0.5534115,-0.6130695,-0.0994754,-0.50511754,-0.035105307,0.03381056,0.57454795,-0.006147424,-0.23159024,-0.09327661,0.32564506,0.53936744,0.2717692,0.12019763,0.5253094,0.37321794,-0.13043651,0.53590786,0.025582092,0.4707106,-0.41828945,-0.15935649,0.37404498,-0.27766985,0.4952207,-0.21099456,0.06511244,0.6093656,-0.26741073,-0.77248496,-0.37330583,-0.31275722,1.0384653,-0.40115225,-0.6547409,0.19970585,-0.07321348,-0.04142379,0.0048542065,0.46735448,0.0287352,0.22637078,-0.67256665,0.18632777,-0.19419362,0.25391018,-0.028424911,-0.045752898,-0.5811668,0.83850235,0.036520947,0.6724111,0.30365753,0.33806622,-0.2530914,-0.2921957,0.14048833,0.6794681,0.34818634,-0.08094124,-0.084546454,-0.14727281,0.096137956,-0.29252782,0.09165815,0.71714425,0.5451957,-0.080865875,0.13629359,0.28111008,-0.0014202555,0.0393824,-0.030639656,-0.24427687,-0.22061807,0.021524465,0.4547795,0.7199711,-0.11166605,0.2989497,-0.04100675,0.354047,-0.009013606,-0.51691926,0.54293483,0.42437935,-0.18236552,-0.10180202,0.61028737,0.46645936,-0.3818508,0.46439382,-0.5938354,-0.2577843,0.5333914,-0.20111643,-0.39023834,0.13437746,-0.33438575,0.06354568,-0.6771197,0.25497347,-0.3282618,-0.15515219,-0.47706768,-0.17354825,-2.8039384,0.13186206,-0.26118222,-0.07980277,-0.40595323,-0.11011651,0.14879677,-0.51034164,-0.6257267,0.28858036,0.20343968,0.56465054,-0.1392574,0.17549817,-0.2110906,-0.19576403,0.10569927,0.33166885,0.004492915,0.24676204,-0.09773184,-0.24426739,-0.13837244,0.15881017,-0.42587057,0.14581485,-0.42331377,-0.44050542,-0.090379745,-0.4728394,-0.14113645,0.55961055,-0.2815408,0.02760228,-0.24617685,-0.02961019,-0.13426287,0.012797316,0.16607136,0.41780454,0.13309114,-0.0055924216,0.0133326845,-0.2553809,0.40099776,0.09869549,0.27054068,0.2710856,0.0067336964,0.11159813,0.08274969,0.5941608,-0.1989284,0.80283934,0.15692739,-0.030454764,0.33128726,-0.278935,-0.36638066,-0.68152267,-0.22147924,0.09644888,-0.28583616,-0.53466445,-0.12384317,-0.26952636,-0.723726,0.56330806,0.018342761,0.42829463,-0.13614883,0.14142103,0.40419525,-0.18961406,-0.14288162,0.08609458,-0.1363856,-0.38276762,-0.20161219,-0.66264313,-0.38842118,0.042569347,0.59465504,-0.34669897,0.063829824,0.16208805,-0.28983596,0.042587135,0.05615646,0.11304732,0.14866382,0.53490514,0.3787939,-0.56459373,0.55026984,-0.034878317,-0.10549453,-0.3415631,0.26898178,0.5184943,-0.46782383,0.6232356,0.29802486,0.009802962,-0.23468809,-0.55343753,-0.21195044,0.1728758,-0.20560642,0.57113236,0.22781888,-0.7315177,0.46654415,0.25922376,-0.38590783,-0.692561,0.28727564,0.041224837,-0.45729315,0.026143724,0.35880896,-0.03680621,0.021831274,-0.039615728,0.25768363,-0.32829374,0.22524339,-0.02661035,-0.064226195,0.2302323,-0.07636175,-0.3981028,-0.5385476,0.14268026,-0.5128967,-0.38191268,0.43933782,-0.1663895,-0.24006179,0.16179769,0.12841697,0.45186406,-0.18896645,0.2358978,-0.07054364,-0.27432343,0.34671846,0.52014846,0.43073317,-0.5410951,0.42240062,0.17932945,-0.18451977,0.30551916,0.08912828,0.41089332,0.06353755,0.22521213,-0.2824908,0.093319535,0.22239552,0.47275847,0.11956131,0.24117169,-0.03295285,-0.17114744,0.42410502,-0.08698741,0.17637524,-0.10285983,-0.5775597,-0.053677734,0.08866464,0.11050888,0.40767708,0.39131305,0.29940793,0.19047739,-0.23478274,0.0256391,0.25271493,-0.12852639,-1.0528485,0.50462836,0.11280503,1.0054989,0.48177993,0.07846915,-0.15995571,0.60223866,-0.13273205,-0.014953659,0.31004703,-0.09144094,-0.46465594,0.83458066,-0.19363855,0.24718536,-0.14867072,-0.047913425,0.018456837,0.05020195,0.22127247,0.6428595,-0.29292932,0.06353542,-0.23844801,-0.056788135,-0.099622406,-0.2565548,0.021396257,-0.12123122,-0.60265654,0.550267,0.401275,0.4201867,-0.29050907,0.054774225,0.012377064,-0.23867856,0.103356205,0.060058594,-0.107949145,0.1811686,-0.40326855,-0.16319723,0.6731566,-0.29047737,0.13636188,-0.17894024,-0.18244092,-0.09232155,-0.04122754,0.07138678,-1.9425153e-05,-0.76484436,0.17513342,-0.21104869,-0.46381262,0.32010728,-0.32179075,-0.017126737,0.18861757,0.032146133,-0.13840438,0.28038058,0.13554975,0.72477186,-0.042426016,-0.14977105,-0.3147482,-0.0408451,0.03850789,-0.15080936,0.177581,-0.25458524,0.20394757,-0.6047825,0.6816853,-0.10510604,-0.38074145,0.07370193,-0.24582325,-0.06092384,0.5309495,-0.13157865,-0.13862595,0.051736522,-0.22265993,-0.41893435,-0.14890173,-0.2975327,0.19590974,0.3068139,0.042323697,-0.10705698,-0.2705095,-0.23052618,0.43632132,0.04117399,0.4118611,0.24608612,0.08545904,-0.30646548,0.22496013,0.22636904,0.46816912,0.11845934,0.0035791874,-0.3174936,-0.42486572,-0.41038027,0.47694066,-0.103052236,0.07016414,-0.12733015,-0.32926908,0.9294547,0.08182379,0.9798088,-0.029839583,-0.2829137,-0.01267459,0.41821158,-0.38664955,0.0014038205,-0.3021614,0.92593056,0.53017545,0.026752762,0.063498065,-0.43599644,-0.040578965,0.27317008,-0.47614065,0.1083906,-0.14000839,-0.38277033,-0.454651,0.1047108,0.20991118,0.035671305,-0.2523863,-0.13136911,0.050349046,0.22235523,0.405712,-0.6843719,-0.28448927,0.066416614,-0.012993407,-0.17843069,0.22112706,-0.40248844,0.4811987,-0.70605177,0.3352693,-0.62764823,-0.03971332,-0.14437507,-0.2290132,0.019431893,-0.17385188,0.30895475,-0.5501502,-0.3465805,-0.08776433,0.16470076,0.14932217,-0.0019922291,0.6394512,-0.18697913,0.2084384,0.22602068,0.60304046,0.9122563,-0.27982897,0.0050390563,0.024264129,-0.43281466,-0.5782881,0.2209219,-0.23682334,-0.19622773,-0.20594765,-0.45337477,-0.42305267,0.10870511,0.18522808,0.12343751,-0.0001959006,-0.7729304,-0.20786247,0.27740154,-0.22727199,-0.25421098,-0.24691932,0.11886832,0.69378656,-0.10741542,-0.20928262,0.03261651,0.08752545,-0.12952584,-0.61705554,-0.0052858195,-0.30612105,0.36797503,0.006764652,-0.14068452,-0.32526004,0.1156328,-0.5311716,0.11612766,0.12631108,-0.25387356,0.0077846926,-0.06559841,0.010169395,0.8510865,-0.08765635,-0.0126039665,-0.6141083,-0.46034253,-0.77730817,-0.43219388,-0.15997785,0.046831507,0.063703306,-0.40754193,0.01719188,-0.309379,0.026767237,-0.0659427,-0.3925048,0.15180531,0.15214032,0.5109432,-0.43177038,-0.8273869,0.21565224,0.15370144,-0.042857815,-0.38572964,0.53017956,-0.0594554,0.65357345,0.05928616,-0.15313295,-0.01051596,-0.46236676,0.15513134,-0.32522982,-0.10407261,-0.7575789,0.13852435 +479,0.46494067,-0.31955165,-0.49006227,0.0074068583,-0.27775788,-0.13978687,0.027098903,0.36092678,0.30686748,-0.14702085,-0.17654663,-0.18210533,0.08032934,0.43788052,-0.07854676,-0.7004143,-0.12874462,-0.0034137666,-0.6080962,0.45479208,-0.543875,0.37339422,0.16227725,0.2820764,0.073135704,0.39920872,0.11830132,-0.11945543,-0.16772032,0.10323822,-0.34143606,0.1533613,-0.571454,-0.039720498,-0.037749466,-0.39030567,0.13063289,-0.47311223,-0.24909988,-0.6063393,0.13955584,-0.81281865,0.5486625,-0.01626319,-0.058334075,-0.024859034,0.039333366,0.33588105,-0.43497747,0.06367464,0.0946511,-0.19412503,0.069245785,-0.52050155,-0.10534281,-0.3531224,-0.48890203,-0.06328305,-0.6043472,-0.389686,-0.11477196,0.046717443,-0.45090505,-0.096065395,-0.111121945,0.28307343,-0.49938604,0.112065434,0.37904108,-0.122008614,0.12529041,-0.44965234,-0.039907806,-0.09571245,0.26760802,-0.13098882,-0.23257956,0.43051666,0.35872254,0.29925883,0.23291829,-0.3558971,-0.19497606,-0.07903829,0.098041624,0.50369006,-0.2514022,-0.45287913,-0.11316535,0.30780733,0.2809032,0.4479067,0.1583958,-0.04987316,-0.09208527,0.01860955,-0.20116733,0.40694508,0.5265518,-0.2781521,-0.42635548,0.35456488,0.5897447,0.14038357,-0.09021192,0.021805223,0.0013368806,-0.4240434,-0.22223602,0.060726427,-0.18805665,0.4200641,-0.057409365,0.1649778,0.871693,-0.37715986,0.06211189,0.101159625,-0.06276436,-0.17995217,-0.28473428,0.0066250013,0.1306889,-0.49336654,0.044793963,-0.18857387,0.82615334,0.298692,-0.7756427,0.38436604,-0.5722743,0.14542875,-0.12690543,0.6704035,0.63945144,0.5646906,0.3962136,0.74433583,-0.4269363,0.19839834,-0.025074009,-0.6575501,0.19077192,-0.29583046,-0.06539677,-0.5810428,0.07291005,0.006514258,-0.05778329,0.104431316,0.31173712,-0.66911435,0.011140933,0.19532332,0.85943544,-0.36814684,-0.15318862,0.6744401,0.960346,0.8398578,-0.056873064,1.1324717,0.29392093,-0.23706509,0.35526708,-0.5119106,-0.68739384,0.15880649,0.42835903,-0.5154568,0.4792691,0.05975804,-0.13987055,0.15263966,-0.10849651,-0.016942225,-0.058343694,0.34426963,0.07358846,-0.21160175,-0.40184563,-0.19303538,-0.25793526,-0.20872349,0.04340434,0.3300533,-0.32779124,0.4159185,-0.11456793,1.5591779,0.0452593,0.10811183,-0.059980307,0.5981748,0.31762716,-0.013713418,-0.057215407,0.62664986,0.2733196,0.13438052,-0.57490194,0.2587354,-0.30869082,-0.6050586,-0.07539826,-0.4264147,0.08380635,-0.07102936,-0.33787107,-0.09709096,-0.11804439,-0.23126748,0.4571519,-2.763409,-0.22777136,0.033063214,0.37295532,-0.3618288,-0.3456531,-0.005778203,-0.47685972,0.060651146,0.2548591,0.5487095,-0.8001559,0.47258684,0.42772028,-0.42800045,-0.2779391,-0.61978954,-0.05201306,-0.065631166,0.43279216,-0.057158526,0.01554497,0.022407008,-0.027606914,0.7283039,-0.10548806,0.032323018,0.42529356,0.47520873,0.12683572,0.5039386,0.031439956,0.7045087,-0.35562816,-0.14121386,0.23960015,-0.23427366,0.24858437,0.1297567,0.06315397,0.40223947,-0.440436,-1.0578719,-0.41126245,-0.17337526,0.9207331,-0.43537867,-0.20667814,0.21705683,-0.21413061,-0.13294917,-0.15144552,0.46048135,-0.04256963,0.11106999,-0.51973057,0.16003507,-0.083157375,0.008762281,0.0447992,0.05191162,-0.16117246,0.5914503,-0.024987984,0.61499727,0.118648894,0.2109113,-0.20564602,-0.32058594,0.11583759,0.76742077,0.2985055,0.015698595,-0.034470797,-0.28159672,0.004238931,-0.12120188,0.1299641,0.4654565,0.9017246,-0.05805128,0.14947869,0.39711654,-0.03825516,0.018987156,-0.07727747,-0.1669322,-0.00045599847,0.05207265,0.3561298,0.7469037,-0.41505656,0.6699118,-0.1315323,0.49794608,0.007382952,-0.6479673,0.60946137,0.62298656,-0.1334301,-0.019641988,0.48837274,0.39879587,-0.63338184,0.43250528,-0.60184634,-0.11672656,0.7665486,-0.20264374,-0.30550945,0.3920315,-0.075858116,0.11634838,-1.0163487,0.36834285,-0.18932328,-0.4630007,-0.36480346,-0.08991533,-3.772402,0.20184313,-0.3051852,-0.20137277,-0.20612353,0.041422166,0.058871888,-0.76067543,-0.46331736,0.1524988,0.29448837,0.5253377,-0.12620626,0.2395273,-0.19642814,-0.1639671,-0.20500205,0.12473573,-0.010977305,0.270576,-0.21561678,-0.3969019,-0.12665406,-0.057148658,-0.66486037,0.3647637,-0.54158264,-0.4825673,-0.07966623,-0.6905089,-0.2675919,0.7134644,-0.15735668,-0.17766438,-0.2508845,0.14652252,-0.23252736,0.264945,0.01388739,0.13606623,0.086273745,-0.09590785,0.221009,-0.3764773,0.43547016,0.046647456,0.702582,0.19543102,-0.17008239,0.07726049,0.5628784,0.62804514,-0.012623865,0.7631474,0.344464,-0.2745185,0.42773947,-0.41733748,-0.1817743,-0.67461115,-0.5483342,-0.14737283,-0.34874365,-0.5545838,0.020794878,-0.2774688,-0.8300692,0.6324182,0.0147717,0.43547535,-0.10851341,0.43322754,0.5434058,-0.22170442,-0.071638495,-0.15437225,-0.2667572,-0.57161605,-0.1284261,-0.61559683,-0.5223637,0.21413547,0.9351451,-0.37360904,0.07593788,-0.27746642,-0.16779591,-0.0027548005,-0.0015313992,0.04518091,0.4304569,0.20061725,-0.20562026,-0.6903636,0.45528156,0.017116722,-0.22301711,-0.46241555,0.016797602,0.5564662,-0.7736646,0.56098634,0.074158974,0.026998933,0.19815913,-0.47070315,-0.12725528,0.03616466,-0.1422273,0.24454077,0.14053503,-0.83981293,0.46374124,0.5790397,-0.5853501,-0.6114396,0.13294646,-0.018413447,-0.3029752,-0.14261031,0.22283602,0.15825449,-0.07866723,-0.18551356,0.18513666,-0.51194006,0.29308298,0.16942343,-0.09335538,0.26272538,0.07733512,-0.4479917,-0.75725543,0.2154105,-0.4546866,-0.1933377,0.3636352,0.09313411,0.00085401995,0.05457913,0.25697815,0.37310192,-0.42037576,0.047662996,0.16804324,-0.46389326,0.24963981,0.4670696,0.3698714,-0.43273354,0.4160511,0.20730904,-0.2696894,0.13985491,0.043653168,0.51441616,0.046603844,0.19348238,0.15079601,-0.30604637,0.40358955,0.7057794,0.09468404,0.55091864,0.16826397,0.04186368,0.42497462,0.15630467,0.06063927,0.20141408,-0.39938685,0.23140973,0.19280913,0.2239592,0.5917852,0.43611315,0.19997492,0.07444926,-0.20631708,-0.026302058,0.36646932,0.020882245,-1.1543972,0.30292556,0.34060642,0.8217445,0.36827552,0.19889584,-0.13336393,0.68069834,-0.18732038,0.06608394,0.39766663,-0.14423053,-0.6372779,0.7093783,-0.6561583,0.52756304,-0.09789773,-0.08782439,0.08131818,-0.0017786187,0.39551815,1.0044729,-0.24390186,-0.12551059,-0.025164586,-0.11379034,-0.016488846,-0.4497399,-0.053012677,-0.45217472,-0.2897592,0.6776995,0.22774476,0.27501184,-0.011870204,-0.050990764,0.12974904,-0.20117106,0.37404597,-0.06190942,0.15662855,0.113194376,-0.48600438,-0.32352698,0.6506927,-0.020465164,0.24284495,-0.26812473,-0.24779616,0.23914215,-0.22234176,-0.31675127,0.011283732,-0.5643297,0.30101398,-0.1521855,-0.6460504,0.48674452,-0.093409695,0.26131776,0.24253093,-0.00025002172,-0.27451527,0.28263676,0.17015935,0.8289718,-0.16614506,-0.41792154,-0.37527138,0.21877597,0.17909454,-0.3191921,0.22962059,-0.24389932,-0.036517628,-0.5203858,0.6762116,-0.031057596,-0.47395563,0.005651286,-0.1628935,-0.063223764,0.44178736,-0.077698246,-0.15809217,-0.24045658,-0.23690608,-0.4228999,-0.15733679,-0.22548944,0.27604848,0.29357406,-0.23214811,0.03673286,-0.17729561,0.11285948,0.6098432,-0.031899765,0.42227834,-0.030977456,0.0829441,-0.20798498,-0.0820866,0.31129682,0.3146412,0.04605814,0.14002748,-0.4350039,-0.2834223,-0.29214844,-0.08676065,-0.21439226,0.32901147,0.04304495,-0.36401013,0.921671,-0.0010338334,1.4267461,0.009748628,-0.2460363,0.100674465,0.56526625,-0.037134048,-0.0009891575,-0.39887968,1.1395621,0.6530036,-0.04013175,-0.13174325,-0.58845943,-0.2884085,0.3699621,-0.45659402,-0.16859634,0.1153053,-0.3931972,-0.4887316,0.25762904,0.07570772,0.27472454,0.024927814,0.029017888,0.17114703,0.06035894,0.11754001,-0.47130007,-0.35149992,0.15732907,0.18592356,-0.059031446,0.14127561,-0.5306161,0.41644585,-0.5957876,0.3962455,-0.2678662,0.18812507,-0.11102454,-0.46143392,0.13121751,0.032125615,0.38829824,-0.23755851,-0.3953605,-0.039249346,0.468301,-0.017905818,0.1723825,0.68744975,-0.28916293,0.03775505,-0.03293516,0.45277756,1.2636836,-0.22563502,-0.076828636,0.34546143,-0.45603555,-0.72232616,0.60420346,-0.16860925,-0.06239722,-0.25250813,-0.36601856,-0.51116693,0.27379873,0.23055166,0.16862835,0.062923744,-0.4290817,-0.2305994,0.2447621,-0.4790626,-0.23007125,-0.2921075,0.41706747,0.9764117,-0.3053518,-0.29431984,0.19582242,0.11633588,-0.24374372,-0.35438892,-0.15879491,-0.114061765,0.3656581,-0.01531981,-0.20403257,-0.004316963,0.21191421,-0.21320699,0.043974288,0.2194407,-0.3991719,0.2680379,-0.138495,-0.12365743,0.9478044,-0.28491196,-0.101488866,-0.7288901,-0.54219866,-0.8853419,-0.6030073,0.40979576,0.04735223,0.012436484,-0.56094486,0.065268755,0.07922184,-0.3995755,-0.06944268,-0.58096623,0.30927607,-0.01575267,0.2945865,-0.2703708,-0.9429463,0.18273929,0.22536659,0.008831634,-0.89155644,0.57690895,-0.2680799,0.84667075,0.1066814,-0.11506856,0.3028321,-0.35156476,-0.01331148,-0.46015352,-0.22799836,-0.66975623,0.041471504 +480,0.5565596,0.001014638,-0.39452943,-0.10205022,-0.2806684,0.2514066,-0.24811004,0.3062008,0.22566423,-0.3634821,-0.024679966,-0.10519368,0.06715044,0.13678767,-0.10071471,-0.4392462,0.012023584,0.20153719,-0.6624418,0.78134364,-0.20048006,0.31373346,-0.0863777,0.2886173,0.26701933,0.3751425,-0.0018278281,-0.109060444,0.08950884,-0.17216259,-0.21932332,0.12284465,-0.5530083,0.26651025,-0.20567025,-0.14571913,-0.044920865,-0.29647195,-0.31605455,-0.772935,0.23730183,-0.83639544,0.4961613,0.002967002,-0.30208358,0.15355358,0.39226705,0.2700983,-0.16980138,-0.039603658,0.14487073,-0.2311276,-0.05442745,-0.14529628,-0.17175217,-0.4834022,-0.5478736,-0.16690132,-0.562111,-0.16771163,-0.48308524,0.21976046,-0.229923,-0.06839485,-0.10650604,0.45634142,-0.40165532,0.3422474,0.26433203,-0.19517508,0.22845072,-0.46133268,0.032179203,-0.20071827,0.4602693,0.077383325,-0.09353827,0.33593082,0.16309503,0.2966157,0.20231646,-0.17203331,-0.36772,-0.17743604,0.16726777,0.386844,-0.13259348,-0.22328593,-0.13034287,-0.041871503,0.19496737,0.28850573,0.14811665,-0.17132749,-0.13695696,-0.18250886,-0.12455538,0.5237429,0.4143058,-0.2733456,-0.16397524,0.464641,0.6814518,0.28583857,-0.27510312,0.17140417,0.07979922,-0.3765202,-0.1404794,0.2069309,-0.1441841,0.38116995,-0.10828586,0.20025219,0.7454322,-0.08242383,0.003189977,0.016902555,0.028587364,-0.076067075,-0.14237013,-0.2207287,0.2776535,-0.55504376,0.28471035,-0.20622204,0.6982969,0.1722763,-0.47217277,0.27559844,-0.6603091,0.13191028,0.058897413,0.50102746,0.6900408,0.58794576,0.277227,0.8420978,-0.29676828,-0.015329782,-0.18593569,-0.2936049,0.13896431,-0.28373146,0.104763635,-0.40610632,0.13544385,-0.14360183,-0.05176534,-0.04187589,0.35587972,-0.47548848,-0.14097333,0.053512465,0.9155363,-0.24317786,-0.07727809,0.7919911,0.9625138,0.98141986,-0.021779247,0.8720299,0.11247955,-0.31919867,-0.037246782,-0.27294254,-0.5120315,0.2988402,0.25200033,0.17004435,0.3131504,0.16637413,-0.023090772,0.26101035,-0.4458696,0.0017499209,-0.054721642,-0.0002966881,0.13476764,-0.026597532,-0.31129983,-0.24380137,-0.04900132,-0.023709033,0.33241406,0.09723968,-0.22426198,0.4231661,0.18082695,1.6020249,-0.0547217,0.15313055,0.18412256,0.51544094,0.23042901,-0.043775834,-0.17784038,0.5068665,0.23921238,0.2522454,-0.5319441,0.26436108,-0.33466884,-0.36099002,-0.042726222,-0.4251827,-0.16288668,0.03358221,-0.28307423,-0.11823023,-0.092441835,-0.405771,0.43041328,-2.8306253,-0.07392807,-0.1145712,0.44754502,-0.217266,-0.081353836,-0.081167124,-0.48721343,0.21003816,0.2673691,0.39298025,-0.5746794,0.40002587,0.5803181,-0.7053322,-0.09355271,-0.48051426,-0.12873097,-0.06602333,0.4449786,-0.003792413,0.021664698,-0.051151354,0.25068027,0.4888807,0.0905791,0.15790042,0.43314478,0.33533624,-0.18184546,0.6439336,-0.056554716,0.41554984,-0.22596039,-0.22199942,0.3070428,-0.40896252,0.35123,-0.15150723,0.05218337,0.57322043,-0.37014818,-0.9044865,-0.5964401,-0.06167831,1.0840732,-0.3701391,-0.5276752,0.19910583,-0.42822555,-0.25000075,-0.040012337,0.5978554,0.039152972,0.02140624,-0.692407,0.05445837,-0.12935044,0.34284163,0.047389325,-0.039191406,-0.4067235,0.7551787,-0.022685679,0.64650434,0.06633422,0.15584382,-0.31677362,-0.5512352,0.052156396,0.68443215,0.32999796,0.018397637,-0.32295278,-0.19650653,-0.30369613,-0.0824622,0.061167736,0.7001484,0.439401,-0.15422884,0.15945773,0.34338838,-0.14527005,0.095101476,-0.2655562,-0.34933332,-0.07440605,-0.15720804,0.3919157,0.66076505,0.013529015,0.3315768,0.10575512,0.4154255,-0.12153879,-0.49202988,0.45450088,0.7359192,-0.24859677,-0.2780832,0.66113824,0.46690273,-0.10077245,0.50858814,-0.66406316,-0.27397364,0.543147,-0.1228115,-0.54515076,0.14235385,-0.3079553,0.16386385,-0.69163394,0.12923545,-0.3975081,-0.5556571,-0.26057488,0.087407865,-3.3762577,0.12447238,-0.21019082,-0.19468693,-0.2502053,-0.10398283,0.1742851,-0.5340776,-0.6259345,0.040173195,0.0991522,0.70143026,-0.25923645,0.07641177,-0.31579062,-0.41359165,-0.28982598,0.31573611,0.029007895,0.40743822,-0.24325815,-0.41231102,-0.08611085,-0.004247512,-0.31361067,-0.10143534,-0.5348637,-0.30053625,-0.115518026,-0.48985875,-0.2635148,0.6198047,-0.24485391,0.11988519,-0.3054697,-0.06875708,0.014686712,0.2813327,0.17083628,0.11297465,0.096010916,-0.07539725,-0.09969567,-0.20441015,0.38780203,-0.05072358,0.2258125,0.294024,-0.09015414,0.18772344,0.45011356,0.50179106,-0.17580834,1.0423039,0.2971355,-0.14233555,0.3757504,-0.18318197,-0.3706164,-0.6034339,-0.16539663,0.066200264,-0.3955898,-0.4234204,-0.21054031,-0.36241144,-0.86686337,0.56962806,0.07732786,0.34917447,-0.06137536,0.2368003,0.63127786,-0.29724208,-0.07930647,0.1097428,-0.22851999,-0.5608085,-0.06558181,-0.5648476,-0.42144352,0.15351343,0.76937795,-0.5304941,0.080068834,0.17058153,-0.30259132,0.027632337,0.2256319,0.07996328,0.19740209,0.593881,-0.079950385,-0.50300467,0.5649126,-0.25457147,-0.12995185,-0.569021,0.34534058,0.6686257,-0.728349,0.48995253,0.25716186,0.00034776528,-0.41193613,-0.5337886,-0.076362155,-0.18756442,-0.19862194,0.38194525,0.20623474,-0.8936212,0.18158813,-0.0128142275,-0.19752786,-0.7382225,0.5942086,-0.1641398,-0.3466717,0.031827632,0.43952453,0.11489895,-0.014067594,-0.20384963,0.09091962,-0.42569244,0.24528852,0.20657666,-0.12523662,0.2956799,-0.22260815,-0.20744921,-0.7358882,0.09697333,-0.48084825,-0.26980317,0.47813836,0.091024645,-0.09443197,0.3397319,0.087874934,0.3648707,-0.1629006,0.105427906,-0.104829066,-0.0859797,0.50651646,0.5087295,0.40387884,-0.53560066,0.663229,0.087092526,-0.18985817,0.19209221,0.13020107,0.31715918,-0.11710718,0.6547695,0.0895999,-0.21247967,0.29330498,0.6103923,0.22144876,0.2858406,-0.0035787423,-0.15542601,0.17794551,0.12123504,0.30031157,-0.040972367,-0.73878765,0.084267505,-0.350545,0.106483124,0.43828896,0.1315311,0.23272608,0.023804126,-0.36880767,0.020903386,0.1505939,-0.17040902,-1.2632378,0.29644737,0.30662337,0.94967043,0.3770173,0.07921381,0.019584406,0.8563141,-0.17099245,0.0741104,0.34174082,0.14633815,-0.44162452,0.62062305,-0.85102785,0.4239444,0.04819463,-0.08636169,0.11984114,0.018904828,0.4140892,0.76016915,-0.2510807,-0.081790365,-0.105447024,-0.39056093,0.270441,-0.3479864,0.10570372,-0.52056056,-0.4715854,0.48564994,0.50990295,0.4731695,-0.1972195,0.05594609,-0.07918159,-0.12327822,0.23353821,0.15017897,0.054240204,-0.19241914,-0.56382245,-0.1481204,0.57486284,-0.3003273,0.10146518,0.032356147,-0.16381626,0.28990656,-0.08787267,0.07811465,-0.14074747,-0.6749861,0.049375717,-0.14588541,-0.3829723,0.54236156,-0.07821553,0.32192785,0.20241661,-0.061381463,-0.15369691,0.59076345,0.06567837,0.57159495,0.08319429,-0.042405583,-0.37434617,0.2084994,0.15771252,-0.21933502,0.04690043,-0.15954584,0.17712136,-0.5717495,0.4328825,-0.22294684,-0.43317923,0.0067470195,-0.18518928,-0.006211537,0.63330495,-0.05425,-0.227042,-0.16825113,-0.12905437,-0.357712,-0.29674903,-0.12548338,0.07270065,0.21549359,-0.13365367,-0.20918849,-0.119295925,-0.16186818,0.26028237,0.069605194,0.49336928,0.22844149,-0.067051075,-0.3090594,0.09382091,0.3175434,0.46209946,-0.022948574,-0.019369427,-0.12738104,-0.56994045,-0.5597131,0.22794189,0.037833616,0.2962376,0.13320015,-0.14221494,0.81448555,-0.20014653,1.0671436,0.13923642,-0.35873163,0.24475415,0.5818163,-0.036068074,-0.11772822,-0.33370668,0.90548426,0.54589725,-0.07942363,-0.06478038,-0.28817686,-0.096708044,0.08135331,-0.273225,-0.06489112,-0.008814188,-0.50204283,-0.010261583,0.15584472,0.23855467,0.24352536,-0.17741965,-0.09196485,0.2610336,0.0347062,0.23413117,-0.42212582,-0.3583519,0.37200195,0.13065995,0.041174565,0.075345956,-0.3684381,0.51740175,-0.44131315,0.1036541,-0.44811124,0.18957087,-0.3058061,-0.29408118,0.26651117,-0.01684734,0.3719679,-0.37931675,-0.35730037,-0.27596468,0.36024266,0.3236111,0.14777349,0.6046576,-0.23734204,-0.005022588,0.031690706,0.5036472,0.6563694,-0.29987144,0.0042250515,0.2826678,-0.4143149,-0.6429402,0.26464683,-0.44847286,0.07655353,0.1636629,-0.23060669,-0.31237724,0.24221581,0.073820226,0.064866945,-0.00035971802,-0.8087186,-0.16521874,0.08795827,-0.18909802,-0.17043617,-0.26678938,0.1771544,0.52459,-0.27464774,-0.41073525,0.08429897,0.1124145,-0.10537586,-0.74380016,-0.180296,-0.28389937,0.31253582,0.002023856,-0.32355502,-0.0919795,0.21620461,-0.57038474,0.1961173,-0.03952004,-0.29273683,0.04299965,-0.28345966,0.020231605,0.787958,-0.31959313,-0.123534456,-0.46743917,-0.4127839,-0.8110569,-0.2859067,0.15664919,0.2228241,-0.021096965,-0.45638457,-0.125491,-0.22584338,-0.067909926,0.012375092,-0.57798386,0.40289906,0.14047,0.4398155,-0.105975464,-1.0128057,0.2804725,0.009341021,-0.19815612,-0.7327353,0.43498433,-0.21123073,0.7607819,0.11017787,0.07734346,0.21936718,-0.53031856,-0.034036182,-0.24109516,-0.039126635,-0.6918738,0.011636992 +481,0.3446981,-0.44895157,-0.53131795,-0.28600302,-0.3401588,0.036297195,-0.30300373,0.22405945,0.160829,-0.456469,0.0036115348,-0.10315341,0.015480216,0.36093363,0.0285424,-0.7186662,0.08517812,0.23627737,-0.9391098,0.78271115,-0.36955288,0.2217963,0.034920607,0.13595484,0.058731396,0.09379522,0.17939027,-0.041408997,0.073401555,0.06199302,-0.07455923,0.13421357,-0.7445584,0.28141105,-0.20095423,-0.33517963,-0.13337891,-0.31245366,-0.5188165,-0.950206,0.24335076,-0.9110027,0.50644624,0.039341625,-0.51388675,0.049606062,0.18611836,0.2650939,-0.2717563,0.017839551,0.17463943,-0.18237665,-0.18936817,-0.25466672,-0.10277689,-0.6350408,-0.6190461,-0.039528172,-0.7300132,-0.1872833,-0.24788703,0.16080384,-0.4046075,-0.08587929,-0.3306314,0.61956173,-0.41508606,-0.008369259,0.32258892,-0.07125074,0.36944762,-0.62250036,-0.023002336,-0.1981043,0.17519979,0.12670384,-0.40943593,0.29794577,0.16331956,0.63759816,0.15036337,-0.4046936,-0.051092785,0.0109653305,0.2660345,0.31626627,-0.09123443,-0.3509334,-0.30947286,0.005896021,0.25037402,0.031069806,0.06642436,-0.5162772,0.07187538,-0.012485419,-0.22352849,0.4982935,0.5556559,-0.31020445,-0.29634953,0.28944764,0.5796889,0.16979769,-0.07966401,0.103787936,0.015965786,-0.49549118,-0.19434987,0.37545165,-0.2175075,0.45082203,-0.2678699,0.059414454,0.48658317,0.0037657928,-0.12699112,0.09333408,0.04808536,0.02224498,-0.25748068,-0.29558092,0.27003944,-0.6314634,0.18850546,-0.34594443,0.7615763,0.15848604,-0.5761566,0.3895026,-0.5593753,0.31427914,0.013534094,0.6570907,0.9746126,0.5527911,0.16617881,0.8750424,-0.25807407,0.1862736,-0.09001192,-0.21804866,0.22819516,-0.42207056,0.20527972,-0.5365431,0.032096915,-0.3545961,-0.16382241,-0.19022521,0.5040234,-0.63877237,-0.17117366,0.10111792,0.7949027,-0.29082975,0.13986737,0.8165994,0.95571774,1.1601247,0.24320388,1.2477351,0.4640977,-0.17121112,0.137036,-0.09354247,-0.8260344,0.30504563,0.30733278,0.37130037,0.34520164,0.0026144162,0.09345382,0.61273605,-0.5277161,0.09902471,-0.33532366,0.38427618,-0.07502501,-0.08004982,-0.4070718,-0.1386293,0.12426896,0.18438493,-0.040158067,0.23648202,-0.22295353,0.36663008,0.20673643,1.0580344,-0.26938254,-0.08884532,0.009385331,0.3524361,0.37831184,-0.24191894,0.023143645,0.28925195,0.35558385,-0.033783454,-0.79406154,0.14315674,-0.31712213,-0.24020742,-0.28221944,-0.32763788,0.22481622,-0.23294957,-0.431758,-0.29828763,0.054554876,-0.25025484,0.3954709,-2.3132937,-0.39016366,-0.13204758,0.2083218,-0.2779142,-0.20296358,-0.02638838,-0.48257142,0.45955205,0.35014105,0.36370888,-0.61281097,0.47405097,0.4480531,-0.5628478,0.013833689,-0.6525315,-0.114714704,-0.08018499,0.5946168,-0.0066779256,-0.23804423,-0.17822869,0.24611673,0.45881408,-0.13430789,0.118027054,0.3619514,0.23682788,-0.13338907,0.2569114,0.04901245,0.46788666,-0.4213934,-0.19691847,0.41718966,-0.20837021,0.17170055,-0.116739385,0.11898391,0.56358135,-0.63153166,-0.79474896,-0.7002859,-0.32297948,1.2073725,-0.27529714,-0.62552696,0.18794203,-0.4468477,0.034488156,-0.028994232,0.41926554,0.036781397,0.09314256,-0.8882141,0.08254867,0.0086760735,0.42214495,-0.004392994,-0.10795855,-0.37483045,0.8276431,-0.029094057,0.3684821,0.31150725,0.23249182,-0.37547573,-0.5532921,0.22170803,0.9406944,0.5557275,0.1007442,-0.3011255,-0.24136247,-0.2985219,-0.086977184,-0.049281757,0.54291683,0.8109626,-0.20000724,0.01209448,0.35702363,-0.19569634,0.16462313,-0.30073524,-0.4714241,-0.13762853,0.16948102,0.4977108,0.4520151,-0.027210103,0.35495177,-0.048761863,0.20385087,-0.010256158,-0.61549133,0.5965192,1.2913922,-0.19476148,-0.1989266,0.6071829,0.40991262,-0.42021242,0.55877227,-0.6836597,-0.42937043,0.47851223,-0.11835712,-0.41921633,0.17916194,-0.4946306,0.30473432,-0.83768827,0.4315755,-0.39990163,-0.43733335,-0.63325816,-0.11398571,-3.253381,0.3036407,-0.2803442,0.0710411,-0.33472922,-0.09997046,0.3824268,-0.24666573,-0.5949564,0.18102732,0.12530799,0.7483324,-0.114572264,0.05206603,-0.26432696,-0.25162292,-0.35198328,0.20799412,0.0584948,0.25185174,-0.13025129,-0.3728643,-0.021846652,-0.24040566,-0.45419958,0.035828386,-0.73920745,-0.4706059,-0.30657127,-0.74601406,-0.17693543,0.60772896,-0.096330605,0.030734697,-0.43310028,-0.0040172297,0.067361765,0.37035236,0.2165047,0.23860228,0.17636187,-0.027228998,-0.25064304,-0.33158416,0.024306433,0.062073197,0.10654241,0.35511035,-0.021082338,0.2199429,0.56371146,0.63575107,-0.0332176,0.827007,0.5785913,-0.20276248,0.58576244,-0.15063807,-0.3839807,-0.5564206,-0.24253988,-0.14812963,-0.44857496,-0.37659758,0.0960396,-0.33331856,-0.80137354,0.54700553,0.087239124,0.2703602,0.20868738,0.2560515,0.4594238,-0.06833914,-0.023812333,-0.16541897,-0.3005306,-0.5694122,-0.39608738,-0.6338049,-0.48586056,0.11632083,1.1495736,-0.2274802,-0.16503975,0.081672944,-0.25027758,0.03928293,0.2812274,-3.022807e-05,0.2858149,0.4215847,0.105300106,-0.59960705,0.29299498,0.0903017,-0.08451391,-0.45328754,0.40020236,0.6666755,-0.7209038,0.57542473,0.3370042,0.13611527,-0.31106117,-0.6425049,-0.05878133,0.13289821,-0.26115808,0.46443796,0.13502368,-0.80219287,0.49807438,0.34479758,-0.16899464,-0.8916413,0.4032764,-0.123030506,-0.24576625,-0.107962444,0.4579865,-0.052145384,0.16378136,-0.32477376,0.30145612,-0.4723224,0.2924786,0.29785267,-0.09744661,0.28177136,-0.16717906,-0.35961398,-0.63651377,-0.14331175,-0.7018643,-0.27880505,0.40082034,-0.017179267,-0.01816873,0.10889349,0.06382406,0.5628017,-0.01676592,0.14416294,-0.1233222,-0.41358042,0.5208892,0.63726467,0.3685739,-0.34542805,0.7672245,0.08465236,-0.13712831,-0.2728043,0.21390018,0.44746274,0.29141337,0.54758126,-0.036837477,0.093219735,0.30114624,1.004418,0.09164839,0.49753904,0.139169,-0.05807044,0.24656649,0.058347754,0.15503871,-0.18110932,-0.27774262,-0.040491965,-0.10498619,0.21551068,0.43747273,0.07029659,0.25099745,-0.025549177,-0.2761487,-0.10708822,0.16598178,-0.029048989,-1.4760295,0.4216263,0.36572525,0.71032715,0.6233597,0.060009796,-0.12306412,0.659377,-0.2300411,0.07849259,0.30409268,-0.20172314,-0.41167974,0.5335789,-0.8334393,0.29376957,-0.098123655,0.05289316,0.07460264,0.29767373,0.5026459,0.8809232,-0.27575547,0.027093444,-0.14800835,-0.22050692,0.31127867,-0.2806977,0.16225983,-0.25612456,-0.61611134,0.603638,0.3532825,0.3548103,-0.41453415,0.027744489,0.002525385,-0.2815999,0.3194154,-0.06939762,-0.1810629,-0.051865228,-0.5963478,-0.19312513,0.49020672,-0.014619546,0.12350474,0.044522427,-0.21039455,0.172246,-0.20379052,0.018166568,-0.1394292,-0.86263263,0.057494458,-0.28509843,-0.30622318,0.64622515,-0.2793717,0.027674558,0.14356425,0.0009827401,-0.4291846,0.3813491,-0.10855518,0.55784494,0.23079333,-0.125542,-0.24308501,0.16948901,0.115061365,-0.30899972,0.1318811,-0.3088037,-0.0007382887,-0.7091292,0.60305595,-0.07058236,-0.3306806,0.3538305,-0.14973833,-0.10040041,0.5855913,-0.30753675,-0.19099239,-0.039292198,-0.20103848,-0.16584696,-0.28274596,0.011865114,0.41493845,0.11940997,0.06125245,-0.2029678,-0.055056214,-0.020756837,0.62593764,0.12777461,0.26513335,0.49173784,0.113789186,-0.53538895,0.05885556,0.27131665,0.6156203,0.27704784,-0.14141823,-0.008318944,-0.30869347,-0.42671338,0.02710058,-0.18111612,0.2613876,0.0366774,-0.4045739,0.81488526,0.16179757,1.288468,-0.053524118,-0.32443067,0.16435088,0.51865035,0.04019245,-0.08727678,-0.46207744,0.7073207,0.6525154,0.0659947,-0.0013403083,-0.5149099,-0.10821118,0.24705853,-0.215009,-0.019211207,-0.05594259,-0.84382313,-0.22009227,0.22800843,0.29682872,-0.072564304,-0.14104661,0.032985296,0.1266232,0.013661628,0.20524856,-0.5879334,0.092829965,0.37852404,0.18197353,0.00014162276,0.10840397,-0.37827772,0.313699,-0.74499226,0.13234398,-0.29465818,-0.021507947,-0.091185294,-0.2815914,0.29958007,0.09873747,0.23377822,-0.4307025,-0.32582277,-0.21070337,0.7003452,0.2119062,0.041645806,0.7520593,-0.32461643,0.217276,0.27087972,0.42050728,0.9822566,-0.2887566,-0.002582005,0.084696345,-0.50304806,-0.7517198,0.3969216,-0.2326304,0.2230886,0.069109164,-0.33217782,-0.46613583,0.13542648,0.15016055,-0.04583892,0.018731007,-0.81891817,-0.1509881,0.22004938,-0.20738307,-0.06985763,-0.34514925,0.16719405,0.52554816,-0.34140936,-0.21248582,0.19371383,0.29839143,-0.3890055,-0.6722707,-0.044255793,-0.43471226,0.33229417,0.13940834,-0.3868007,0.054467957,0.14617382,-0.7322666,-0.012103117,0.23382302,-0.32873815,0.039469905,-0.19420226,-0.0025587422,0.82877046,-0.1501993,-0.036237843,-0.51485795,-0.6644575,-0.97766685,0.017928004,0.6561464,0.24747238,0.21327095,-0.8198747,-0.07563334,-0.09750442,0.17982088,0.15113533,-0.60780233,0.41690734,0.13126907,0.53133184,-0.05363765,-0.9889039,0.20856924,0.14920865,-0.056085493,-0.47483233,0.3767992,-0.16384973,0.79292476,-0.011915388,0.07458056,0.056340553,-0.68785137,0.014652938,-0.3198536,-0.22292875,-0.6256132,-0.047882777 +482,0.3680927,-0.17802821,-0.5020959,-0.09681561,-0.083916456,-0.05829483,-0.21205862,0.4026619,0.20841344,-0.6391501,-0.26950482,-0.15919639,0.14847188,0.2844012,-0.2310756,-0.64751357,-0.069654554,0.16193981,-0.5556933,0.68544513,-0.42621616,0.15217979,0.07578818,0.42804572,-0.05539647,0.13183907,0.25967988,-0.1355461,-0.18885684,-0.08525142,-0.12396642,0.4569594,-0.37894592,0.13780497,-0.3004277,-0.33680508,0.10689247,-0.49968085,-0.06439202,-0.8550853,0.17104274,-0.82022476,0.26955178,0.113072306,-0.27125183,0.15104313,0.081318855,0.23200697,-0.25876242,-0.077595055,-0.040959407,-0.08123361,-0.25987023,-0.23712929,-0.19847143,-0.27743337,-0.50973815,0.032304283,-0.56395715,-0.10172518,-0.11154304,0.1724958,-0.26642358,0.0028044533,-0.1792212,0.7252848,-0.4026785,-0.101094484,0.15483202,-0.07780754,0.2890387,-0.59348804,-0.23093426,-0.19230944,0.30733195,-0.1941445,-0.2645487,-0.025192574,0.3024675,0.39617774,-0.07599529,-0.17757845,-0.32872,-0.12209172,0.17401473,0.4537361,-0.1814978,-0.6898916,-0.12435738,0.1254031,-0.08698317,0.19888408,0.12718195,-0.26445675,-0.03883365,0.011026424,-0.28891647,0.3890581,0.43154278,-0.43010652,-0.16140276,0.28725842,0.58660525,0.1184017,-0.22543307,-0.18703806,0.10443139,-0.58047485,-0.067829095,0.27441117,-0.26035655,0.6353659,-0.16035855,0.37036267,0.32464066,-0.12046385,-0.063895054,0.035866816,0.06502962,-0.09945768,-0.32891205,-0.19305593,0.32924494,-0.32863492,0.144157,-0.31417564,0.7577662,0.09985822,-0.7639168,0.29778728,-0.57171375,0.06886345,-0.105039574,0.4579043,0.6313531,0.261232,0.33997628,0.50248766,-0.2592369,-0.046441827,-0.26601493,-0.22334735,-0.2823026,0.03696199,0.17782788,-0.4021947,0.00915432,-0.0945876,0.006243492,0.018680537,0.19175164,-0.4677752,-0.21482146,0.18638472,0.7026705,-0.25134152,-0.27324256,0.7802126,0.96474665,0.86570734,0.15706451,1.0477813,0.0563297,-0.14543933,0.21794467,-0.22571822,-0.65235186,0.34697708,0.48739636,-0.016956776,0.20974962,-0.064872034,0.009345611,0.4768796,-0.3228402,-0.033066202,-0.16981514,0.057147533,0.18059689,-0.023630932,-0.36948848,-0.2499125,-0.15384872,-0.031266943,0.10373353,0.21383287,-0.1659232,0.17305861,0.10577831,1.3152114,0.0028357257,0.08811456,0.16976328,0.2479387,0.17987269,-0.0975701,-0.07831529,0.29538757,0.2093984,0.19929409,-0.5606661,0.11708444,-0.20533027,-0.39945015,-0.15565181,-0.31653416,0.030204332,-0.035486255,-0.4732393,0.019760981,-0.14664106,-0.46450686,0.48428893,-2.8248692,-0.15618971,-0.2124116,0.38695887,-0.33242828,-0.38454112,-0.17617404,-0.51763135,0.421855,0.3056482,0.5044339,-0.48701605,0.45514187,0.33276936,-0.5351357,-0.107011996,-0.72792363,-0.11625707,-0.07293781,0.31738058,-0.09219267,-0.06764362,0.016294496,-0.04474553,0.46451917,-0.022503927,0.06312462,0.29289564,0.41530475,0.08503589,0.51386297,-0.07541355,0.46877038,-0.4626012,-0.26796433,0.13744275,-0.44739556,0.35423616,0.08251255,0.14617541,0.5219975,-0.5275907,-0.9683178,-0.7245836,-0.3876989,1.2783278,-0.23663945,-0.3895078,0.15660828,-0.23477913,-0.28021362,-0.13820279,0.58389306,-0.013100128,-0.117115356,-0.7355346,0.099408895,-0.14491548,0.37204966,0.0040958,0.027392983,-0.42161146,0.5348225,-0.039235603,0.47889552,0.44609985,0.2188797,-0.409407,-0.31788647,-0.19277768,1.0557438,0.13949938,0.12165292,-0.15697162,-0.35040057,-0.4021742,0.27750865,0.09388695,0.74075985,0.5675491,0.014215897,0.11520877,0.33270726,0.104798265,0.15873285,-0.19236402,-0.32535148,-0.18757741,0.17124517,0.5752916,0.50631076,-0.15881954,0.4485104,-0.042029787,0.2691277,-0.26462778,-0.26594272,0.35145918,0.9674747,-0.09853941,-0.30646852,0.74094385,0.719539,-0.35167336,0.41874337,-0.5260508,-0.3572937,0.39678374,-0.25017175,-0.3767973,0.14686368,-0.3073516,0.16728765,-0.8747851,0.1449458,-0.48315677,-0.31545404,-0.5780743,0.0010515526,-3.424012,0.3827115,-0.109360635,-0.15555638,-0.13798217,-0.15910459,0.018431088,-0.65622485,-0.5783015,0.20994139,0.06746939,0.6809094,-0.122740276,0.13843288,-0.3075814,-0.4329826,0.04763906,0.2099222,0.25434333,0.26720157,-0.059416264,-0.43813968,-0.036172524,-0.116003335,-0.20152117,0.15492015,-0.5981397,-0.48090395,-0.11535943,-0.6537575,-0.28278923,0.54180837,-0.51031893,-0.0089074625,-0.18556423,0.09583602,-0.053083126,0.45567992,0.081845745,0.39932826,0.05941093,0.014935772,-0.13302918,-0.23409574,0.31011805,0.06778354,0.23541522,0.38932326,0.06325383,0.34955302,0.5845549,0.6039702,0.14760168,0.8936169,0.46552268,0.039246727,0.22717594,-0.21896766,-0.32471418,-0.59390926,-0.14267023,-0.058956314,-0.41429797,-0.37917015,0.019844458,-0.18190773,-0.6599408,0.69880223,-0.09909115,0.001403451,0.061128434,0.55974597,0.6587231,-0.23471898,0.025614897,-0.010047853,-0.054871585,-0.35463926,-0.2955975,-0.5357981,-0.3110038,-0.10788178,0.85357505,-0.25452772,0.053947877,-0.04939456,0.014128526,-0.10597712,0.2819809,0.14990559,0.25493518,0.5647495,-0.0056687393,-0.5365109,0.388611,-0.1608354,-0.22556917,-0.43479443,0.19930847,0.64636296,-0.7107871,0.63650185,0.42096996,0.04780018,-0.28461298,-0.53540236,-0.23372777,0.15430146,-0.22394316,0.33417436,0.33336282,-0.74318075,0.36351907,0.27256477,-0.04090199,-0.83145255,0.60773826,0.011119316,-0.43495902,-0.2496084,0.46472147,0.18653458,0.13097341,-0.10472986,0.061486024,-0.18590677,-0.036512237,0.20388897,-0.089826554,0.28353426,-0.36755848,0.010045166,-0.73890036,0.015098144,-0.49558416,-0.1934046,0.4605206,0.036387663,0.020382958,0.30146632,-0.0506373,0.36190984,-0.3248471,0.022556469,-0.10716281,-0.08263152,0.27927423,0.45790133,0.43004894,-0.43771216,0.55160224,0.0761954,0.0035238713,-0.2910907,0.0057200096,0.34161735,-0.093068264,0.46885642,-0.14533901,-0.2855583,0.38040745,0.6747206,0.16858149,0.46839082,0.021459272,0.08767029,0.25260928,-0.009002621,0.18485768,-0.09792581,-0.44267365,-0.01759786,-0.15373796,-0.027357524,0.42607614,0.01530686,0.30338442,-0.06630662,-0.2642001,-0.01427238,0.27547076,0.13692363,-1.0545596,0.36181214,0.07957124,0.8607734,0.5423514,0.008356363,-0.021922419,0.5241275,-0.23899902,0.13711514,0.3453258,-0.06966578,-0.45794976,0.6761485,-0.52976304,0.42854548,-0.15178262,0.015324754,-0.17590208,-0.22519304,0.4211646,0.9027171,-0.1841778,0.11527262,0.14193963,-0.19941129,0.12058446,-0.39560536,0.048696768,-0.5761337,-0.2674315,0.4982275,0.50425965,0.42288318,-0.2740592,-0.011326909,0.24211435,-0.12323973,0.22719419,-0.007071609,0.16106993,0.024796464,-0.6118535,-0.1447489,0.59738356,0.25148895,0.2800387,0.024563989,-0.14956535,0.3813567,0.07926197,-0.10836562,-0.0725881,-0.4563551,0.0034674257,-0.4729656,-0.44060907,0.36560142,-0.18868224,0.25128055,0.23655313,0.09356292,-0.414757,0.3636509,0.23272878,0.685023,0.030600289,-0.013199575,-0.34513053,0.18476315,0.14205872,-0.13200577,-0.08802409,-0.4675368,0.14861448,-0.76402706,0.42604887,0.06751121,-0.43613508,-0.20445114,0.07857543,-0.00295798,0.66916037,-0.0091582285,-0.13805912,-0.19121253,-0.17215236,-0.23363644,-0.18955682,-0.1457638,0.30662978,0.0639665,0.06781434,-0.14392199,-0.12541218,-0.11335526,0.47278056,0.0631947,0.312511,0.3522167,0.32387736,-0.4009056,-0.06123505,0.07694664,0.50238585,-0.084206276,-0.2816946,-0.257107,-0.32206288,-0.2652543,0.08800163,-0.016536668,0.35263705,0.14305891,-0.2731249,0.6468348,-0.07937608,1.1791633,-0.032992203,-0.31403407,-0.10018466,0.32840565,-0.106072895,-0.1626646,-0.2789586,0.85290784,0.35189542,-0.004644955,-0.09580579,-0.39918983,0.1500341,-0.029667,-0.14894325,-0.1393308,-0.01087334,-0.45258352,-0.23812751,0.03907764,0.25344074,0.20783354,-0.11652749,0.17713992,0.22548658,0.038902845,0.24920593,-0.3990078,-0.019840576,0.21123226,0.28630772,0.00030078492,0.10482761,-0.32196563,0.41027805,-0.58076704,0.18018985,-0.42460394,0.23148747,-0.21893483,-0.23339461,0.25763878,0.10446908,0.4271207,-0.22898181,-0.304901,-0.24874587,0.53885114,0.2531109,-0.008401553,0.4579518,-0.061605264,0.04808296,0.03822043,0.5878777,1.0280324,-0.23038262,-0.049731623,0.265932,-0.18498583,-0.64200646,0.23533864,-0.4564383,0.20225249,0.016241482,-0.116034426,-0.6439997,0.20018019,0.24539763,0.13053848,-0.047569346,-0.5365928,-0.21714692,0.23033683,-0.35180655,-0.17945059,-0.32306972,0.15749131,0.5608894,-0.17930917,-0.17932236,-0.099270016,0.113193505,-0.18600471,-0.5064929,-0.079776905,-0.38072324,0.19600303,0.16510856,-0.3093695,-0.14949168,0.07949004,-0.5001359,0.056138445,0.15466931,-0.3054588,0.049749475,-0.22840214,-0.10697479,1.0248339,-0.15210494,0.23264627,-0.28489563,-0.60403883,-0.701225,-0.17489605,0.44654128,-0.09915937,0.044123083,-0.59065443,0.13556875,-0.08597923,-0.33683276,-0.12920116,-0.33641073,0.3973249,0.0867643,0.5178963,0.02853328,-0.71267796,0.09669775,-0.0018144349,-0.105965845,-0.4077413,0.3202885,-0.031813707,0.8605363,-0.026618041,0.13049266,0.42361653,-0.4385073,-0.089540064,-0.15675153,-0.08760571,-0.5363419,-0.016362138 +483,0.41468373,-0.09196275,-0.55435437,-0.1214716,-0.11826503,-0.14683099,-0.15782227,0.2198779,0.35867888,-0.18709598,-0.3146702,-0.31576434,0.2846279,0.16742921,-0.06188257,-0.8114487,-0.06568711,0.14635652,-0.53191566,0.4527221,-0.60914856,0.35852468,0.33933425,0.33971366,-0.059890293,0.35047886,0.27039048,-0.29865685,-0.029888082,-0.11161339,-0.24424772,0.24371971,-0.7739017,-0.12531857,-0.21162567,-0.2036048,0.13977164,-0.5641339,-0.3500991,-0.70042455,0.24432544,-0.95734614,0.4606911,0.24878922,-0.0751344,-0.046024095,-0.020077862,0.28752172,-0.2931567,0.02662653,0.0906151,-0.34208474,-0.002066157,-0.44715604,-0.062127892,-0.18601812,-0.41633147,-0.03362689,-0.4822922,-0.2932989,-0.18071495,0.033155546,-0.3779434,-0.09779904,-0.16360193,0.42471418,-0.31878945,0.039113674,0.37039435,-0.33589777,0.32221738,-0.442227,-0.004224934,-0.17997502,0.43430978,-0.27508304,-0.30348292,0.3814306,0.32114103,0.39426127,0.14790478,-0.25982243,-0.07085142,-0.12632102,0.2391735,0.60797256,-0.17542592,-0.6130548,-0.0792402,0.21223901,0.14969274,0.38219917,-0.054610487,-0.27077445,0.014337759,-0.08198594,-0.2533697,0.5973839,0.6143032,-0.12527715,-0.35978687,0.11405497,0.36524916,0.27522066,-0.077755995,-0.19575585,0.062579446,-0.66874087,-0.118875355,0.23571433,-0.29303405,0.77097917,-0.11248409,0.031778913,0.89873886,-0.41248763,0.015608197,0.0329663,-0.046716347,-0.08079368,-0.27210048,-0.15339485,0.22060637,-0.5158376,0.09058625,-0.31688365,0.86081386,0.34391972,-0.69337964,0.3571451,-0.6287071,0.28249434,-0.14130239,0.70648015,0.5733765,0.3390687,0.6177938,0.707979,-0.39581358,0.24032404,0.1475097,-0.8223902,0.116772324,-0.09212711,0.17319344,-0.29933894,-0.18678738,-0.097293615,0.015006742,0.22908849,0.1777355,-0.50169545,0.018276805,0.16769662,0.8107839,-0.28385794,-0.015025312,0.46031407,1.0292039,0.8653759,0.07354442,1.0172328,0.35171145,-0.36108735,0.21806125,-0.08617736,-0.89967763,0.18938078,0.25277415,-0.5586364,0.3761939,-0.07591844,-0.11112602,-0.024085673,-0.50102943,-0.1379978,-0.04010065,0.30900174,0.16433102,0.08352267,-0.5772628,-0.25229168,-0.1917626,-0.12467872,0.15180658,0.123482466,-0.21440049,0.19983426,-0.016272712,1.2549942,0.002748232,-0.027571656,-0.0054207323,0.59438443,0.339283,0.08322363,-0.16882075,0.6369066,0.36253738,0.063966006,-0.58441776,0.15136792,-0.3388516,-0.2334256,-0.030703926,-0.38100398,0.17038852,0.19879875,-0.38602355,-0.011216239,0.016996296,-0.19339241,0.5392911,-2.644583,-0.15856415,0.021060353,0.39258865,-0.3251529,-0.09324595,-0.073048346,-0.5477039,0.12278008,0.22823748,0.5515657,-0.8286682,0.23999853,0.5073494,-0.34494156,-0.23731488,-0.7060643,-0.09566034,-0.099241406,0.25202683,0.17837568,-0.054371174,-0.030307604,0.18946391,0.57678026,0.14012839,-0.024455212,0.3882116,0.49627057,0.2632949,0.59634584,-0.093343996,0.617474,-0.25579283,-0.04988688,0.29167542,-0.18014918,0.16182432,-0.1883297,0.102228835,0.48048887,-0.19753915,-0.7737007,-0.44606903,-0.43852293,1.0528249,-0.6223246,-0.3435864,0.10966144,0.046761915,-0.0761227,-0.15014611,0.63806176,-0.16443335,0.07887698,-0.6650824,0.11843776,-0.007366663,0.3038946,0.15883376,0.070902795,-0.17557658,0.5874482,-0.01390318,0.35160643,0.34017518,0.22097798,-0.09067186,-0.5977724,0.2367058,0.826603,0.16281079,0.044081714,-0.2705638,-0.22862807,-0.025052048,-0.050094996,-0.10095399,0.6875002,0.9649733,-0.25697592,-0.008910465,0.36893636,0.14794411,0.059714172,-0.08184657,-0.34810868,0.03557866,-0.34976757,0.54960436,0.84653074,-0.29979154,0.43303186,-0.12721948,0.45608833,0.22614022,-0.4022708,0.55126613,0.8147377,-0.05074475,0.11878893,0.30470002,0.25987422,-0.5370075,0.42307436,-0.71529907,-0.082321525,0.8087146,-0.19771014,-0.4095373,0.46678594,-0.22663428,0.21422273,-0.9117601,0.6158185,-0.061930634,-0.046547867,-0.35950646,-0.07415092,-3.815584,0.12595716,-0.22275823,-0.15120345,-0.33480757,0.029296564,0.18481316,-0.45524025,-0.45994437,0.2608657,0.20650621,0.59331506,-0.14105724,0.16764012,-0.24992627,-0.22617526,-0.11401326,0.22587603,0.3175953,0.3138998,-0.110022776,-0.27828872,-0.05733393,-0.057353582,-0.3866719,0.3002067,-0.48100817,-0.50390106,-0.025627958,-0.74678934,-0.52845216,0.70726734,-0.32969484,-0.057585336,-0.124151014,0.09018517,-0.24200033,0.19451088,0.16286002,0.20765615,-0.1334762,0.22882175,0.20632638,-0.2905429,0.63656515,0.13414244,0.29295728,-0.15071115,0.12772328,0.028778953,0.38186315,0.52718383,0.04247505,0.88878196,0.3652195,-0.057634678,0.13163163,-0.35872358,-0.2335667,-0.5776398,-0.34129003,-0.0072112354,-0.31299734,-0.383937,-0.118051834,-0.34145296,-0.6811235,0.45698547,-0.22855577,0.28968665,0.21824785,0.42096394,0.56105524,-0.20279603,0.13118722,0.12779164,-0.16156918,-0.6184406,-0.058021355,-0.6859257,-0.36269614,0.021612173,0.474344,-0.25044155,-0.062303305,-0.13821992,-0.23636632,0.09452391,-0.13270348,0.075831935,0.32333955,0.5550867,0.009726779,-0.63680035,0.4642895,-0.05527141,-0.26960853,-0.6155989,0.052518193,0.70425725,-0.9492418,0.5282096,0.52604747,0.021719651,0.13868397,-0.3537662,-0.52611566,0.13976549,-0.19827953,0.20002404,-0.002688045,-0.6216044,0.3152712,0.1996573,-0.5531097,-0.61187005,0.43108085,-0.032857124,-0.53108513,0.044680197,0.3146233,-0.11276805,-0.107530616,-0.26893547,0.020957666,-0.4337597,0.14316799,0.22204114,-0.07987369,0.29330727,0.1892573,-0.16563457,-0.74304825,0.2173625,-0.48126495,-0.31595343,0.47908762,0.043276664,0.079224534,-0.0021680484,0.16388874,0.27770147,-0.26869386,0.066832885,-0.009487727,-0.3518072,0.47082683,0.538049,0.39591888,-0.35014957,0.60189193,0.06692076,-0.097745225,0.29810742,0.029242473,0.26485884,-0.12500918,0.14571701,0.17138341,-0.32031778,0.28771195,0.62744516,0.22828649,0.5100068,0.12503193,0.20650244,0.5644784,0.060926005,0.096098565,0.28051317,-0.59713405,-0.21263222,-0.07867039,0.1772799,0.49564803,0.37516487,0.22020365,-0.024268549,-0.30665037,-0.025352625,0.53365934,0.049967006,-0.88808995,0.31026408,0.17749232,0.6521399,0.41048443,0.15975332,-0.030025197,0.42605492,-0.24217692,0.21560341,0.28508332,0.09281384,-0.52609915,0.7161135,-0.37606642,0.446194,-0.18101634,0.04911323,0.07067147,0.044907644,0.20359187,0.92681557,-0.35340583,-0.031600896,0.024253286,-0.017648047,-0.0675049,-0.6400311,-0.0044783223,-0.43983018,-0.39932016,0.59330183,0.35103768,0.225725,-0.14387143,0.10490182,-0.038996067,-0.27425203,0.26006567,-0.154989,-0.065798976,0.32656497,-0.7976768,-0.08558437,0.59953827,-0.03966357,0.10801413,-0.3093643,0.002504327,0.15168843,-0.36158073,-0.22276597,-0.15455563,-0.7192139,0.077026,-0.27216253,-0.5463976,0.41437054,-0.2738833,0.29141644,0.22317825,-0.03998784,-0.15498972,0.39796802,0.35912216,0.899507,-0.06722627,-0.3870354,-0.602114,0.083060645,0.26067954,-0.19712353,-0.075372465,-0.44949257,-0.08786717,-0.3159276,0.6071389,-0.07526563,-0.33807823,-0.2438528,-0.23863024,-0.06614404,0.7737423,-0.14984424,-0.06812119,0.030247962,-0.21278638,-0.4012521,0.038438845,-0.33750665,0.19510213,0.5610616,-0.26677096,-0.0644934,-0.29199818,-0.28915465,0.42422426,-0.021715848,0.62834793,0.23344989,0.27233046,0.0065888925,-0.31566676,0.04962412,0.54229474,0.16518107,-0.16037582,-0.3867976,-0.2981759,-0.24568881,0.048675373,-0.08625417,0.19459246,0.010061459,-0.3467271,0.96450704,0.04279264,1.130672,-0.06600762,-0.27032995,0.029909855,0.4023741,-0.10190008,0.037134256,-0.4713744,1.0231051,0.4044379,-0.17036897,-0.17290027,-0.3330536,-0.08060198,0.05481175,-0.15160766,-0.027871989,0.033888187,-0.43338802,-0.46810588,0.28626013,0.34787026,0.17224862,-0.07028877,0.050695613,0.04675288,0.07701766,0.38195646,-0.5499669,-0.24490692,0.13194424,0.13522771,-0.031606294,0.16915782,-0.2547262,0.5003412,-0.42174625,0.06647516,-0.76952934,0.06809152,-0.13250014,-0.27667096,0.21505746,-0.14553542,0.45589036,-0.5817711,-0.30724066,-0.18586536,0.30763876,0.030643074,0.35094774,0.63685596,-0.11216123,-0.06331896,0.08429374,0.84275,1.40242,-0.36921835,0.0018304099,0.4316415,-0.46670654,-0.55770665,0.39700648,-0.27988508,-0.024275905,-0.2951224,-0.30643114,-0.6104589,0.09055045,-0.083010904,0.10934841,0.07261829,-0.5903828,-0.258372,0.3138783,-0.4306489,-0.2517041,-0.35514915,0.45214346,0.81211776,-0.2699087,-0.208111,-0.0071903286,0.07391267,-0.09990215,-0.50373155,-0.17926614,-0.15715672,0.29721078,0.123843886,-0.29027557,-0.20083322,0.32837793,-0.5480579,0.17063493,0.12813458,-0.43242761,0.19408153,0.13401024,-0.16860597,0.9092398,-0.3090979,-0.3502766,-0.6154711,-0.59996545,-0.96054214,-0.5265124,0.42534983,0.062921435,0.16953698,-0.40218914,0.050283004,-0.014091421,-0.2550759,-0.14354756,-0.45944998,0.3803039,0.0549363,0.716744,-0.3307141,-0.9966795,0.107012205,0.025318416,-0.30783927,-0.9282655,0.55419916,0.07059111,0.7267962,-0.009467423,-0.16390434,0.23477548,-0.16822395,-0.07160408,-0.3105769,-0.15781696,-0.82840323,0.082508974 +484,0.38969797,-0.29060543,-0.2663957,-0.11714233,-0.13108118,-0.07289187,-0.12515196,0.49373004,0.19919012,-0.28955537,-0.093853146,-0.23619193,0.050282534,0.24608923,-0.14966248,-0.6367692,-0.00320985,0.28522092,-0.270581,0.4734952,-0.5587191,0.20496355,-0.22184001,0.39116177,0.12840138,0.108650334,0.022894073,-0.16656138,-0.07391688,-0.27116483,-0.19154842,0.33272326,-0.56326187,-0.036964934,-0.04069362,-0.37722492,0.05092412,-0.4957345,-0.2905173,-0.8968311,0.27246246,-0.74483365,0.43637624,0.15690678,-0.24305765,0.416223,0.082771726,0.33975542,-0.25676265,-0.03203971,0.20537655,-0.123842,0.06636779,-0.19087921,-0.17720453,-0.24642505,-0.63064206,0.07048765,-0.22036567,-0.23919442,-0.26070815,0.20332097,-0.34668472,-0.11685333,-0.16280161,0.61614037,-0.39093626,0.12643759,0.0034058462,-0.1593323,0.2570468,-0.5612141,-0.2314991,-0.13873616,0.1589032,-0.12333167,-0.22146481,0.34574965,0.26304188,0.35150734,-0.11412993,-0.16886112,-0.38225392,-0.055584982,-0.015766643,0.50752074,-0.17463091,-0.5525947,-0.01657453,-0.011177695,0.03180044,0.14719924,0.16960427,-0.2238175,-0.21248291,0.11950926,-0.4037312,0.46074423,0.53092295,-0.36398178,-0.27102214,0.24752945,0.43957335,0.18760441,-0.11623517,-0.12983185,0.015051087,-0.6111193,-0.113290735,0.12518857,-0.3848602,0.534628,-0.30781123,0.1761241,0.6327734,-0.27774718,-0.06229382,0.04538822,0.15002576,0.09330916,-0.4066772,-0.48112524,0.33564758,-0.3030904,0.28387135,-0.33850747,0.91291326,0.21637847,-0.6245507,0.39686888,-0.6222864,0.19399871,-0.06158708,0.5701441,0.5552681,0.34661433,0.54240286,0.5553331,-0.3191128,-0.0029621674,-0.018887222,-0.23741971,0.044054627,-0.18611191,0.03861421,-0.34462547,-0.037932232,-0.09184202,-0.17104897,0.1155942,0.36307353,-0.49009305,0.060173567,0.14840303,0.7748218,-0.29971978,-0.03605555,0.6130259,0.9426437,1.1857355,0.1371089,0.9484594,0.26614702,-0.25756794,0.22487181,-0.28086954,-0.7177852,0.34570682,0.312149,-0.18825828,0.15765318,0.050151944,-0.04441841,0.34123978,-0.39460367,-0.09279744,-0.11617914,0.19028275,0.35401395,-0.071071856,-0.41226482,-0.44542724,-0.2586658,-0.0058756517,-0.004834819,0.2241332,-0.2720035,0.14984305,0.1232154,1.5246613,0.10882731,-0.022759655,0.13754065,0.5465782,0.10509081,-0.08265771,0.034993097,0.39013803,0.31367317,0.117795855,-0.6722657,0.10424492,-0.1766749,-0.40186608,-0.10587435,-0.17772517,0.0103564765,0.11315211,-0.45333093,-0.21532948,-0.21490589,-0.24735083,0.46882904,-2.498413,-0.09292466,0.07113424,0.40265882,-0.18865837,-0.43114412,-0.07990874,-0.5343421,0.44182867,0.2906455,0.4053485,-0.6931144,0.25961003,0.47890857,-0.47993743,-0.17156993,-0.72080386,-0.26198527,-0.09148069,0.18382852,-0.0028129725,0.13118914,-0.014330594,0.07065381,0.48617035,0.07968081,0.074919924,0.24258725,0.3790859,0.08153557,0.49538466,0.017760845,0.40980476,-0.18639752,-0.14299855,0.2070469,-0.5474497,0.12520656,0.02337017,0.015784632,0.49349028,-0.47134346,-0.8617743,-0.5661478,-0.25121778,1.2514383,-0.17007817,-0.39601284,0.27406687,-0.18296202,-0.17169641,-0.2721759,0.42770416,-0.24639456,-0.32940477,-0.7371876,0.02398667,-0.08917637,0.2938938,0.031533606,0.0017494765,-0.35686225,0.6868257,-0.036323544,0.3123861,0.33440492,0.070049375,-0.32253388,-0.6178952,-0.10168206,0.77632564,0.23397739,0.16241026,-0.26820067,-0.22235486,-0.14183912,0.038129702,0.02149564,0.43636507,0.6535951,-0.22056785,0.16492556,0.3043732,-0.014363931,-0.0033610738,-0.16423172,-0.26497933,-0.07922811,0.008703103,0.5628609,0.657091,-0.19286548,0.37230846,-0.028841317,0.1893163,-0.24690355,-0.26821387,0.39500067,1.3300744,-0.12202323,-0.2742434,0.566082,0.35431913,-0.36617997,0.3986712,-0.5030292,-0.18028353,0.4863854,-0.27207357,-0.41431966,0.13449016,-0.23648089,0.0014323466,-0.6214166,0.3958177,-0.08708931,-0.35460123,-0.6403735,-0.107139416,-3.2126613,0.13202275,-0.26144338,-0.21243364,-0.18286814,-0.081636354,0.06904316,-0.56108445,-0.6532069,0.19504881,0.17886904,0.635211,-0.088929646,0.11969283,-0.23458287,-0.30791405,-0.45593196,0.11626393,0.1420142,0.35560486,0.1714468,-0.42053515,0.0075652874,-0.03483508,-0.4084476,0.16155115,-0.5379554,-0.36552656,-0.097214855,-0.60076046,-0.46585524,0.64197856,-0.36413208,0.03986079,-0.17624341,-0.07517909,-0.11495188,0.45599616,0.13309576,0.12158251,-0.13257143,-0.02640659,0.025697025,-0.18500589,0.281587,0.0012934575,0.1631709,0.2574019,-0.031659234,0.096565045,0.41998944,0.7282584,-0.028078636,0.91309273,0.54559255,-0.05171961,0.28158367,-0.3412774,-0.1872789,-0.5444099,-0.3086866,0.012595003,-0.3650034,-0.3991877,0.017530737,-0.31130153,-0.73946345,0.52927995,-0.20829138,0.08117519,0.12632664,0.23832399,0.5496102,-0.043128755,0.049869753,0.05760139,-0.066623636,-0.49515718,-0.191806,-0.64260256,-0.27790648,0.29136306,0.88346016,-0.2233247,-0.023139307,0.02695813,-0.18887725,-0.11035749,0.13568428,-0.060574096,0.2418902,0.47783643,0.04741587,-0.65823257,0.32644004,0.05372761,-0.18142924,-0.5185365,0.19041386,0.7027038,-0.7321454,0.5935577,0.2353563,-0.047393158,-0.101906165,-0.45079672,-0.31121314,0.049580853,-0.26370722,0.3850096,0.15489075,-0.7421526,0.4253316,0.35800645,-0.18544064,-0.70537305,0.35356152,-0.005867399,-0.5061224,-0.106776275,0.37633684,0.074245736,0.18275896,-0.07933279,0.2518439,-0.5059045,-0.013690912,0.27584472,-0.110255666,0.113374956,-0.1675815,0.028687665,-0.7867546,0.05782682,-0.4280748,-0.31841245,0.13816,0.24059357,0.03618499,0.34380165,0.09771776,0.36225173,-0.104650006,0.1039375,-0.08799085,-0.081879325,0.2621768,0.4171589,0.4619482,-0.3446657,0.6039991,0.071035735,-0.094566345,-0.050225,-0.13421567,0.24246076,0.0470953,0.3726394,0.062233493,-0.29499513,0.38292143,0.72550994,0.2636645,0.5977366,-0.015489734,-0.009813162,0.30709144,0.13708515,0.22459039,-0.024705576,-0.48003948,0.06295141,-0.23979503,0.099396,0.5183478,0.04247709,0.27965254,-0.12270229,-0.19770098,0.015254388,0.30505493,-0.15167196,-1.0622377,0.37101644,0.1594189,0.84809846,0.6260608,-0.01151719,0.11257232,0.57847154,-0.28461555,0.052691616,0.31246153,0.12808622,-0.51550287,0.5752798,-0.6788698,0.33991468,-0.19223492,0.101688266,-0.13147381,0.05867881,0.40634376,0.5714092,-0.23547922,-0.037308518,-0.091356955,-0.21084279,0.19109347,-0.42489237,0.17483704,-0.50205415,-0.24352866,0.6237312,0.42322233,0.30134347,-0.3009154,0.10350033,0.10676826,-0.169216,0.15923288,0.0634754,-0.11589698,-0.0044707814,-0.69898605,-0.07245524,0.6609592,-0.18905717,0.08535076,-0.06886852,-0.14344479,0.18178664,-0.26903397,-0.16758479,-0.008076773,-0.6985257,-0.008129717,-0.14985725,-0.41639492,0.402243,-0.014703567,0.28889486,0.29198244,0.13828991,-0.3308573,0.22873066,0.34079537,0.541469,-0.117623165,-0.005319587,-0.3254966,0.23882093,0.03184732,-0.089802265,-0.025405837,-0.17701899,-0.08508389,-0.3394856,0.40364203,0.005046707,-0.29462305,-0.121092215,-0.08408345,-0.04656631,0.5901,-0.17358865,-0.01659197,-0.082700625,-0.30733484,-0.21780278,-0.22467087,-0.07797395,0.29058906,0.15380135,-0.16339114,-0.18893164,-0.23683871,-0.2239589,0.55341613,-0.08054121,0.34355816,0.30699342,0.1274973,-0.26828438,-0.26912636,-0.14034835,0.56407726,-0.003660147,-0.243799,-0.21945731,-0.42799,-0.2944527,0.1721135,-0.13560551,0.4158252,-0.020522278,-0.436632,0.7822161,0.054519698,1.1730683,-0.079865016,-0.41366702,0.09711027,0.3959565,0.02262673,0.014049315,-0.38195065,0.871509,0.38737854,-0.19502391,-0.08957524,-0.29522616,-0.018799443,0.29680303,-0.059897926,-0.082235664,0.044251904,-0.5443676,-0.30119544,0.2381354,0.19788414,0.108767636,-0.10102567,0.07668103,0.32426384,0.07859976,0.39811146,-0.24828616,-0.005082974,0.22702001,0.20604222,0.19722417,0.16104129,-0.31603268,0.308449,-0.2996963,0.15761563,-0.35635123,0.21460119,-0.06519757,-0.2093388,0.29970104,0.15822817,0.3204635,-0.27506813,-0.38518393,-0.26394218,0.41380072,0.02070001,0.22441237,0.39710525,-0.24847716,0.042621143,0.031754535,0.60825634,1.0103569,-0.061175868,-0.074004054,0.32502142,-0.4838463,-0.6558314,0.45209163,-0.18259433,-0.15593466,0.07857306,-0.121327244,-0.5976673,0.18807885,0.2492017,0.23706895,0.24608847,-0.5023367,-0.4109698,0.37764496,-0.41418082,-0.17429782,-0.2941267,0.16224486,0.6857822,-0.28189933,-0.39759383,-0.014582327,0.111139536,-0.23570636,-0.52275664,-0.08352829,-0.6087716,0.40190536,0.05323744,-0.30936903,-0.09738697,0.16344541,-0.53178287,-0.058239285,0.14555813,-0.33818755,0.179283,-0.27530444,-0.057557087,0.9356591,-0.19798425,0.2526424,-0.5714459,-0.56688225,-0.93941295,-0.2639699,0.6558907,0.09155154,0.063300565,-0.668529,0.048640914,0.03790241,-0.42433923,-0.070006326,-0.40370685,0.5083679,0.27193645,0.28531435,-0.059043936,-0.61101174,0.012906143,0.016461708,-0.19037768,-0.4875329,0.44673803,0.00886366,0.80846477,0.033554055,0.08550538,0.117894225,-0.31054962,0.1424885,-0.12837031,-0.2847175,-0.61555743,0.025539454 +485,0.41734442,0.032107465,-0.364383,-0.25434116,-0.31611258,0.13663131,-0.14266853,0.20950963,0.23545246,-0.24931218,0.04150709,-0.098652475,-0.08477325,0.3182973,-0.12393169,-0.8945287,0.01030964,0.077589706,-0.6556323,0.3013976,-0.65162724,0.44278318,-0.008824845,0.38407022,0.06356993,0.17263816,0.21055596,-0.15930709,-0.012525376,0.12156153,-0.2265851,0.2817343,-0.29606524,0.15154846,0.10988108,-0.2612451,0.117799595,-0.28944728,-0.28138685,-0.6335317,0.41919738,-0.59597605,0.45109928,-0.043896746,-0.30002818,0.037377674,0.10064909,0.3188865,-0.33438513,0.079246715,0.17226568,-0.24693012,0.036236834,-0.2021506,-0.35478926,-0.45924333,-0.5644122,-0.038965657,-0.56108195,-0.23079206,-0.33412108,0.2533205,-0.34071064,-0.006980101,-0.15593949,0.394797,-0.2764689,-0.00031154155,0.40935323,-0.11275485,-0.03064653,-0.31782553,-0.13119921,-0.1074595,0.1820878,0.09629426,-0.22312202,0.27598968,0.40000474,0.5128987,0.018037518,-0.35320896,-0.17016882,-0.099013075,0.009405152,0.58429044,-0.16730422,-0.20264015,-0.23394765,0.042656757,0.06903614,0.22369912,-0.032147296,-0.3537906,0.076079085,0.15081613,-0.30502367,0.36943296,0.46556023,-0.44589356,-0.2599653,0.2909275,0.4285552,0.04843103,-0.21173699,0.13990706,0.04079827,-0.51403135,-0.22921304,0.37316486,-0.056392193,0.48360792,-0.119490676,0.1432643,0.7523906,-0.1556934,0.05249833,-0.22229895,-0.009507533,0.08328617,-0.43152,-0.15951003,0.052070513,-0.5091399,0.039126977,-0.2727074,1.0884264,0.21335483,-0.81835014,0.43780506,-0.54061186,0.15408255,-0.21127032,0.6040577,0.8256864,0.2185546,0.2610691,0.875517,-0.56027275,0.015749995,-0.05623114,-0.3301946,0.042662553,-0.040633313,0.13845341,-0.39705893,0.19201492,-0.07857264,0.06858122,0.025433216,0.2089569,-0.37709013,-0.14044315,0.015652705,0.787912,-0.45706284,-0.058766555,0.5977118,0.93756014,0.83390737,0.06613851,1.3614888,0.48435095,-0.22961117,0.12218382,-0.50305927,-0.4409407,0.17012812,0.2721626,0.111680046,0.28193656,0.11574253,0.0031500577,0.49559408,-0.32864246,0.055018116,-0.068747304,0.17546192,0.10336504,0.030275583,-0.4112853,-0.26887062,0.14286469,-0.084532954,0.14306515,0.24072647,-0.23894222,0.18229917,0.022856057,1.5050857,0.13544154,0.093968056,-0.016281486,0.3972023,0.21210776,-0.06153575,-0.013180212,0.24651736,0.39821658,-0.17159064,-0.6285613,0.037964236,-0.33896497,-0.34201044,-0.22458461,-0.36216062,0.054853033,0.038762208,-0.4830969,-0.071849465,0.04667924,-0.19025213,0.42786208,-2.532677,-0.27716866,-0.116141416,0.28226337,-0.1711639,-0.35799122,-0.37980384,-0.45411274,0.26665574,0.27959195,0.26275122,-0.6068007,0.48750687,0.2220682,-0.16410685,-0.066993594,-0.7362683,-0.08484002,-0.1522462,0.22386935,-0.09782956,-0.01778605,-0.2926633,0.2512123,0.75370353,0.061484497,-0.0899707,0.08758545,0.4522552,0.093020044,0.66067594,0.1293091,0.60016507,-0.05754958,-0.092567235,0.2649162,-0.4075515,0.3799878,0.20254189,0.16841109,0.3717327,-0.44961846,-0.726921,-0.5960909,-0.4339878,1.0390383,-0.40740526,-0.24107066,0.28296635,-0.07704559,-0.19402638,-0.020713849,0.42234933,-0.14451388,-0.23190306,-0.6283511,0.09828969,0.02107157,0.20252508,-0.09448437,0.08679313,-0.10352895,0.70317096,-0.28252926,0.3904838,0.16417433,0.21957922,-0.09767883,-0.4848143,-0.07313397,0.7652919,0.25604862,0.11287297,-0.14044835,-0.30667064,-0.1672428,-0.22066982,0.13055287,0.58363265,0.76009476,0.08679023,0.0115874745,0.42756268,-0.34846336,-0.012623112,-0.020344911,-0.36720958,0.012905631,0.040615592,0.6027014,0.37206486,-0.18184786,0.39373034,-0.046638586,0.12509362,-0.245399,-0.46883938,0.50530994,0.8539597,-0.16142759,-0.21921794,0.5235124,0.3104758,-0.42077243,0.21107379,-0.56436086,-0.1335812,0.75665843,-0.06970928,-0.3385124,0.03481854,-0.3463318,-0.08473335,-0.85969085,0.27324483,0.0099931145,-0.514117,-0.43520844,-0.16013509,-3.8147469,0.09146308,-0.29556212,-0.007866031,0.023433836,-0.026441677,0.2630406,-0.495179,-0.4125681,0.025029985,0.046881445,0.43023345,-0.003936555,0.1441969,-0.33647403,-0.12908359,-0.23005971,0.15543595,0.085037455,0.27734974,0.07832193,-0.24219665,0.37715694,-0.31150502,-0.44736817,0.115591414,-0.46324876,-0.5403146,-0.088277325,-0.45755556,-0.34975323,0.7564452,-0.42429674,-0.047129493,-0.26793945,0.031721175,-0.21011919,0.45941082,0.35338357,0.25768253,0.08743162,-0.055250842,-0.27718097,-0.4331547,0.24377945,0.07554488,0.2767014,0.31518194,0.119532585,0.08073091,0.48033306,0.5672486,0.10911797,0.5876024,0.26323518,-0.061717037,0.28166348,-0.42445284,-0.108327605,-0.54162794,-0.3906819,-0.29524803,-0.40904674,-0.51528126,-0.208848,-0.36067614,-0.74762714,0.31928506,0.026361426,0.07090931,-0.18029475,0.34679997,0.45874307,0.054783616,0.07167601,-0.018900782,-0.22496991,-0.5105425,-0.46083322,-0.61477774,-0.49397048,0.42092884,1.1265072,-0.18893534,-0.07641395,-0.17274904,-0.28365517,-0.024145277,0.1020317,0.2752439,0.36716402,0.35295677,-0.3010811,-0.5739882,0.31315392,-0.2081193,-0.18537287,-0.6826966,-0.029155118,0.75428444,-0.72874093,0.77448493,0.24664919,0.2939429,0.013815471,-0.5788707,-0.36805838,0.21889606,-0.27550495,0.5825959,0.0635544,-0.57834435,0.47076142,0.22512633,-0.0022233527,-0.65895665,0.429067,-0.06988521,-0.31060722,0.1130606,0.3421274,0.13303287,0.007185646,-0.07076802,0.20943078,-0.571334,0.19036002,0.3325674,0.14691098,0.41206276,-0.17317909,-0.15373367,-0.5162937,-0.12890056,-0.6233116,-0.24935442,-0.048186406,0.07178435,0.18147253,0.20885865,-0.06618293,0.4545835,-0.32149774,0.2188624,-0.010577491,-0.06893722,0.19121447,0.42364174,0.08485958,-0.44303137,0.5151211,0.08743424,0.083336,-0.024008267,0.14659627,0.46846783,0.23571663,0.40200812,-0.33853918,-0.10871223,0.17022607,0.7598021,0.13255502,0.27384704,0.23178443,-0.14711234,0.38509548,0.09758519,-0.048868276,0.07964332,-0.098074645,-0.22285321,0.11020344,0.2754385,0.4251478,0.09269862,0.31811893,-0.05204374,-0.22775091,0.26474205,0.14661631,-0.21563976,-1.0023925,0.33279592,0.25577906,0.66456765,0.41931295,-0.037953105,-0.06526154,0.40740055,-0.32925713,0.16976805,0.2945205,-0.06253786,-0.43783873,0.6196474,-0.49415386,0.499644,-0.2541005,0.006472842,0.040018365,0.29276946,0.3870161,0.80553985,-0.06775699,0.08509946,0.009347041,-0.28879306,0.107281,-0.24164991,0.15329823,-0.5164315,-0.2756891,0.47277874,0.40139726,0.24459137,-0.34180614,-0.10453653,0.08460323,-0.10603401,-0.005828138,-0.20270552,-0.14028719,0.017357413,-0.57911646,-0.503255,0.58712757,-0.24893516,0.0874513,0.07068627,-0.17406961,0.24178529,-0.038649686,-0.024918763,0.0026033083,-0.561291,-0.08994734,-0.18726215,-0.5737962,0.28748688,-0.5075052,0.2339295,0.26989654,0.06692989,-0.43340454,0.30448493,0.3243407,0.6614228,-0.12367081,-0.15968212,-0.51209515,0.06352102,0.14876227,-0.33155948,-0.10855395,-0.40736675,0.17962167,-0.6534311,0.47129157,-0.15407015,-0.25289476,-0.18321608,-0.13068983,-0.027925126,0.52726364,-0.36096197,-0.08142764,-0.0648442,-0.13352497,-0.2721487,-0.06926647,-0.27861246,0.27020866,-0.0055104415,-0.03432359,0.059763264,-0.26674092,-0.15950152,0.36276403,0.16736998,0.2048799,0.24189927,0.059514545,-0.2914439,-0.074749134,-0.12058282,0.2713597,0.057712745,-0.12537216,-0.32051694,-0.22349897,-0.19530776,0.4612986,-0.17352858,0.18869925,0.07940967,-0.5393043,0.75172776,0.08511984,1.1027681,0.15248843,-0.23096053,0.014046828,0.5569145,0.13602854,0.1951108,-0.2785739,0.7277736,0.55787903,-0.07992129,-0.2507455,-0.35367343,-0.1342503,0.26938984,-0.2592941,-0.23165806,-0.15565583,-0.6946861,-0.28206483,0.066675834,0.09330918,0.2253451,0.05201825,-0.15040486,0.06697524,0.10416536,0.63713515,-0.3698373,0.0869663,0.21915096,0.26948187,0.16278794,0.3706822,-0.23830882,0.3860996,-0.69539225,0.25482374,-0.4823139,0.09530724,-0.058513213,-0.19434121,0.19961151,-0.021228233,0.3125321,-0.120600715,-0.19782962,-0.21318303,0.6860308,0.24947461,0.32659626,0.7552935,-0.18872125,-0.046473976,0.19864415,0.5684659,1.5070076,-0.027800512,-0.029433267,0.18967454,-0.2282456,-0.6585687,0.17065343,-0.2865457,-0.054248538,-0.10678712,-0.39579725,-0.42084616,0.30868977,0.15467754,0.055920806,0.17788093,-0.46760628,-0.34359607,0.44427374,-0.28246453,-0.3020274,-0.3155184,0.40644592,0.74221367,-0.29820454,-0.30469558,-0.09209277,0.38524598,-0.2722197,-0.61173195,0.058447346,-0.44128215,0.47654375,0.1317241,-0.23229375,0.03223694,0.30961615,-0.4004135,0.11975608,0.42019045,-0.37301016,0.17179851,-0.015747407,-0.20799974,1.086701,0.12731074,0.061620545,-0.8432789,-0.45463958,-0.9356426,-0.39365166,0.5035292,0.23634954,0.0050926646,-0.47499448,-0.19861937,0.12664746,-0.07207707,0.10397796,-0.591059,0.25285357,0.07724382,0.37943587,-0.05154522,-0.8984446,-0.28088242,0.023083298,-0.37018028,-0.5068994,0.5617437,-0.29495364,0.80422443,0.050915506,-0.012605276,0.078231014,-0.36268967,0.4015505,-0.5249638,-0.21818975,-0.84573936,0.10090483 +486,0.36918116,-0.12376928,-0.46930483,-0.07703581,-0.19395348,0.18459842,-0.22597407,0.55067533,0.22955169,-0.46510595,-0.14746772,-0.17466094,0.0593395,0.2769387,-0.06226444,-0.3381257,0.10825781,0.20287843,-0.37160447,0.3508251,-0.41906562,0.25641164,0.10773391,0.3919311,0.29138693,0.31472537,0.0062254667,0.12999788,-0.2097381,-0.20794842,-0.090347424,0.20006402,-0.4187228,0.09051294,-0.22893003,-0.2174584,-0.19791009,-0.6451367,-0.44812396,-0.7005209,0.23697965,-0.87545824,0.5806478,-0.001510122,-0.25940678,0.15564089,0.2980392,0.33410224,-0.054335017,-0.043057587,0.14496829,-0.08837391,0.039817356,-0.041830745,-0.28982228,-0.40191165,-0.59570324,-0.020642992,-0.43324047,-0.04087192,-0.15342604,0.13976507,-0.20234835,0.10658358,-0.09259153,0.28023556,-0.3795021,0.17024705,0.38054466,-0.18512209,0.18855783,-0.50041777,-0.16523325,-0.0714312,0.18161467,-0.1315357,-0.31198516,0.1937749,0.36607343,0.41899508,-0.16718586,-0.12461083,-0.3480157,0.054964755,0.123506345,0.6136123,-0.18062183,-0.2597765,-0.22334707,0.057005588,0.33802363,0.23244484,0.22961123,-0.11551223,-0.18917963,-0.15121873,-0.26051012,0.30449295,0.5423416,-0.3163592,-0.20206022,0.41690138,0.602485,0.29076776,-0.1738336,0.1628289,0.11964804,-0.6251605,-0.06663338,-0.0047467947,-0.22695172,0.56737953,-0.08994063,0.16568504,0.52107334,-0.1551442,0.019189147,0.23170315,0.104091965,-0.085067384,-0.26156175,-0.20383517,0.16137084,-0.5133223,0.05737659,-0.11962811,0.5638185,0.2083355,-0.6207875,0.3547449,-0.41042852,0.09347285,-0.064253196,0.3674436,0.8786945,0.3523119,0.18169917,0.76318634,-0.32991424,0.067923665,-0.21032305,-0.24317774,0.2657499,-0.19514664,0.025074553,-0.5484258,-0.05048784,0.102725066,-0.18653925,0.27828258,0.6357112,-0.51743037,-0.13167731,0.17192881,0.85309345,-0.23436524,-0.2720596,0.82924527,0.9048427,0.91327274,0.091707334,1.0412929,0.19762121,-0.10953792,0.0178441,-0.18680182,-0.72603065,0.30041662,0.27631885,-0.37465957,0.3326741,0.21521606,0.02530135,0.27170318,-0.24475773,0.002188606,-0.10551425,0.10148174,0.094567,-0.14583695,-0.22592159,-0.27291688,-0.06827385,0.073468804,0.075675465,0.18724056,-0.1882914,0.5531789,0.027893903,1.6030598,-0.058949925,0.025526192,-0.02265698,0.3297805,0.26699337,-0.48784086,-0.18649022,0.33446583,0.47559044,0.104570866,-0.43466383,-0.011343254,-0.11117266,-0.27028576,-0.17981836,-0.295943,-0.22935806,-0.10469465,-0.39255333,-0.14020036,-0.12074558,-0.30174333,0.40017393,-3.076598,-0.11670299,-0.05787915,0.2722972,-0.26140156,-0.4168689,-0.31020245,-0.5110487,0.31426218,0.29437986,0.42059755,-0.6271516,0.25745288,0.21409342,-0.5386486,-0.057297893,-0.706962,-0.04856097,-0.027128713,0.24579236,-0.0025189668,0.011451781,0.1429847,0.371368,0.50119126,0.061768018,0.16109884,0.3183496,0.4751093,0.17090607,0.35270697,-0.14613228,0.60931695,-0.13167801,-0.22038145,0.34924704,-0.4223922,0.29591402,-0.20766017,0.14905997,0.4953501,-0.3792695,-0.89261085,-0.5922273,-0.08354538,1.0527318,-0.20893583,-0.34435305,0.16243908,-0.47471032,-0.3627959,-0.038939927,0.4688109,-0.09897138,-0.15389864,-0.77764183,-0.19967021,-0.097773604,0.060167454,-0.18646394,-0.1317621,-0.3491409,0.536078,-0.098912,0.30813876,0.30585784,0.17552896,-0.24920967,-0.5095488,0.034563083,0.9966367,0.4141571,0.13623108,-0.30210486,-0.20940141,-0.5313026,0.03546454,0.16126664,0.5284532,0.6948975,-0.11651276,0.2267582,0.27018994,0.117125764,0.051958892,-0.087911926,-0.27867582,-0.115356624,0.0019841024,0.5474631,0.62499607,0.0070869857,0.6295083,-0.078117564,0.1355033,-0.23667121,-0.6685155,0.33932325,0.73261845,-0.18607321,-0.39424846,0.6102791,0.28994566,-0.07685772,0.43891138,-0.4590679,-0.33917826,0.28868523,-0.103485,-0.2529741,0.33721253,-0.33586994,0.17914906,-0.8366548,0.22720702,-0.04604578,-0.65425557,-0.49172285,-0.1268816,-3.2902963,0.2107015,-0.068809785,-0.25460002,0.03299603,-0.27502462,0.25444317,-0.46677405,-0.6264983,0.20541202,0.04287466,0.8152104,-0.12543797,0.049959812,-0.11535786,-0.35010242,-0.4341028,0.105487876,0.17370787,0.36181825,-0.001777734,-0.4196965,-0.08191117,-0.2981759,-0.45090294,-0.018914979,-0.57116014,-0.4958814,-0.21769752,-0.37538925,-0.12070187,0.6154044,-0.41157827,-0.0031959626,-0.20295747,0.081853725,0.01780599,0.30315706,0.15487167,0.026861522,0.015459577,-0.023703447,0.095806904,-0.22527803,0.3262665,0.2382283,0.24732235,0.5349394,0.052126233,0.23738249,0.4628634,0.62522143,-0.21098234,0.9241265,0.4302945,-0.13703261,0.1976928,-0.15889283,-0.15886736,-0.34998116,-0.15500543,0.020929093,-0.5925647,-0.44924274,-0.13966413,-0.33692354,-0.81862366,0.38425532,0.075024344,0.24396369,-0.03361254,0.28145412,0.4992699,-0.2283829,0.015827557,-0.16231051,-0.19008,-0.5511165,-0.39206886,-0.5800877,-0.45433268,0.32418796,1.1466277,-0.26380777,0.17459403,-0.03319757,-0.24640675,0.0021353576,0.12839553,-0.10322668,0.058229625,0.3834381,-0.14459483,-0.59560716,0.3055697,-0.20783089,-0.18192177,-0.70571136,0.12795582,0.5604935,-0.576459,0.5868598,0.32249063,0.043817084,-0.3354031,-0.52887475,-0.12981406,-0.093036704,-0.33092052,0.45796487,0.28139082,-0.7276449,0.41588134,0.2876335,-0.41669032,-0.6335104,0.56626123,-0.015450587,-0.077408634,-0.19055526,0.23172651,0.09463567,0.11134834,-0.22582507,0.12483721,-0.45629027,0.17011239,0.20665576,-0.008621393,0.21461177,-0.2929649,-0.19482647,-0.5836738,-0.06578624,-0.4058771,-0.29913813,0.19568726,-0.0140659725,0.28848934,0.18191852,0.2513081,0.36161885,-0.42309552,0.139853,-0.14337263,-0.2466688,0.3330953,0.41639462,0.6092824,-0.39586475,0.5529612,0.0359775,-0.18526353,0.15488508,0.06327586,0.46228045,0.1264709,0.24863566,0.041393936,-0.2515519,0.13941933,0.84455544,0.123740904,0.34168777,-0.060349006,-0.039870173,0.044239026,0.06418372,0.20249344,0.07639601,-0.61580247,-0.17513232,-0.46792722,0.22987683,0.44636998,0.1471231,0.3079349,-0.04560992,-0.3070846,0.0157606,0.09205581,0.1920968,-1.262082,0.3108543,0.18462732,0.8104434,0.34652933,-0.027371513,0.0467655,0.58570015,-0.19802403,0.24048771,0.3519757,-0.09877543,-0.48734468,0.39210322,-0.8414416,0.5515191,0.01194562,-0.001501905,0.063254125,-0.081174575,0.54466236,0.9720624,-0.20647527,0.093331195,0.16908382,-0.18687008,0.10062361,-0.38247898,0.024721907,-0.8183793,-0.24078356,0.86308664,0.4404209,0.40290254,-0.10136127,-0.11936562,0.06780085,-0.02314662,-0.0234746,0.054527283,0.21453407,-0.19330451,-0.6269578,-0.15680476,0.49911907,0.06324262,0.22349472,0.06679288,-0.11583454,0.21018216,-0.220862,0.04935683,-0.1292802,-0.7578959,-0.1809129,-0.3811813,-0.59323794,0.49803644,-0.14907242,0.20920195,0.2733969,0.07471984,-0.14386933,0.50817937,0.12084804,0.80090183,-0.076627605,-0.08706988,-0.39955968,0.38302046,0.26346186,-0.15986598,-0.07012163,-0.28335747,0.14826189,-0.5104391,0.49170634,-0.13460143,-0.27807355,0.08103696,-0.05383871,0.14613663,0.57976186,-0.08446998,0.002876782,0.09243227,-0.28910765,-0.3975153,-0.06084072,-0.1674945,0.22087602,0.22523072,-0.26202437,-0.07077751,-0.10810805,-0.12845378,0.15552938,-0.00928766,0.34227303,0.31987476,0.016717723,-0.30955595,-0.11093012,0.1336768,0.56901705,0.0439741,-0.2212532,-0.41171366,-0.4698282,-0.4110961,0.38441822,-0.09461049,0.35688308,0.084600076,-0.048914585,0.8264497,-0.072348885,1.0096207,0.078982964,-0.45141095,0.06440391,0.477897,-0.040236473,-0.12795302,-0.43364257,0.9005085,0.4316137,0.057627518,0.011223636,-0.38695422,0.10066223,0.28248027,-0.1709644,-0.29289076,-0.052817326,-0.60576427,-0.10877304,0.30044016,0.25659975,0.28152832,-0.11040217,0.25152746,0.350521,0.0054239524,0.11658756,-0.45094466,-0.19612369,0.34574747,0.35575145,0.09715692,0.11397147,-0.44640183,0.298898,-0.4385151,-0.109301485,-0.12411549,0.19206718,-0.16191813,-0.5007127,0.22217146,0.13428898,0.4092694,-0.31008658,-0.37515035,-0.37814167,0.49688774,0.1644912,0.20138517,0.4463484,-0.20247896,0.025581151,0.008358674,0.45496324,0.8958201,-0.2974356,0.060318656,0.64988,-0.27334887,-0.7225567,0.3900561,-0.5100945,0.38472024,0.027973441,-0.21613303,-0.5421509,0.26698816,0.17466176,0.18683897,0.063233115,-0.40411255,-0.035122197,0.1365324,-0.13051149,-0.26887634,-0.41744962,0.10402475,0.49941716,-0.20986399,-0.2543813,0.110813186,0.38911125,-0.14093404,-0.38489813,-0.047972288,-0.17721748,0.23416497,-0.037411004,-0.27094236,-0.15986612,-0.060033318,-0.41515923,0.26462942,0.03918012,-0.2616303,0.120825045,-0.32717827,0.019259809,0.72237504,-0.24966972,0.07886908,-0.58457565,-0.43620366,-0.63426167,-0.28095084,0.22700688,0.116003715,-0.0784973,-0.6954121,-0.05900988,-0.1686429,-0.17864592,-0.09106009,-0.38298365,0.56184846,0.1324372,0.14507745,-0.026878506,-0.68105274,0.11024565,0.084049754,-0.24346818,-0.6004745,0.5665983,-0.08004756,0.87726814,0.19389184,0.09432892,0.32206106,-0.48143312,0.13242052,-0.2676211,-0.07121243,-0.6912423,0.058586296 +487,0.47552627,-0.049618296,-0.53528297,-0.3627831,-0.3705599,0.25790825,-0.22503291,0.1357572,0.190998,-0.6340478,-0.13584255,-0.191563,-0.023357842,0.27616042,-0.089262195,-0.7640916,0.11690206,0.23234406,-0.8002558,0.4738219,-0.5208193,0.47461537,0.39865956,0.2871291,-0.0049603325,0.19732334,0.1677996,-0.22836593,0.015019,-0.3009657,-0.27409703,0.17114356,-0.7354598,0.39861658,0.022655046,-0.3235972,-0.09063427,-0.29644293,-0.25149933,-0.781325,0.16348322,-0.87127864,0.4979424,-0.12708794,-0.34649044,0.09593747,-0.120679624,0.21263467,-0.3657453,0.24209774,0.16930489,-0.41965765,-0.22221024,-0.30265966,-0.26447687,-0.47460514,-0.687786,0.04873717,-0.48950472,-0.027855141,-0.37497,0.26927283,-0.30570653,0.16310672,-0.24170658,0.37132934,-0.39242128,0.12151776,0.21471755,-0.15917492,0.0531396,-0.30881286,-0.15047598,-0.21384239,0.363151,-0.13332106,-0.3217036,0.09871854,0.31012446,0.6502934,0.33293024,-0.38187757,-0.08834823,-0.2237541,0.22198145,0.4314136,0.09189476,-0.25900793,-0.30897412,-0.18983206,0.41243282,0.11122879,0.023699598,-0.3750408,0.043053742,-0.21344955,-0.35557604,0.3352058,0.5478794,-0.37842542,-0.18018498,0.3612307,0.43490744,-0.0929841,-0.24255231,0.17523275,-0.09232252,-0.51832765,-0.26167387,0.4377292,-0.07467967,0.54469544,-0.3168029,0.13871875,0.72195655,-0.23249009,-0.04264036,0.015386106,-0.07791401,-0.07130713,-0.18384756,-0.19742009,0.25363812,-0.55028176,-0.055041235,-0.52323955,0.91382176,0.18880264,-0.81814575,0.29421827,-0.46845263,0.21681885,-0.06655864,0.89513785,0.80245143,0.5054904,0.26129022,0.858126,-0.59490025,0.13698062,-0.007937188,-0.35192367,-0.02768089,-0.24724542,0.18557541,-0.33625653,0.06942613,-0.19888829,-0.008008084,-0.02781052,0.4203648,-0.3788815,-0.25907794,0.038088042,0.45980963,-0.5327565,-0.03579855,0.9768796,0.81598514,1.0673163,0.18679965,1.4493355,0.65559834,-0.31562576,-0.22930689,-0.042413823,-0.6637573,0.20526794,0.2647849,0.67141765,0.22239836,0.017527806,0.22457696,0.36703295,-0.5120503,-0.0070108133,-0.26323977,0.14238255,-0.20674013,0.08527725,-0.5023974,-0.3248088,0.21640396,0.05652355,0.0399263,0.3381656,-0.0869445,0.64799106,0.28477722,0.9552737,0.041525073,-0.01042293,0.026104173,0.28109804,0.08656763,-0.1350191,-0.03708716,0.20624678,0.50657594,-0.18076041,-0.779753,-0.20729458,-0.1972679,-0.24271965,-0.32825089,-0.35351875,0.05421457,-0.19452007,-0.36652133,-0.18369459,0.14554882,-0.44282645,0.4517756,-1.9298805,-0.2836086,-0.22704124,0.22895353,-0.101700015,-0.3068266,-0.29537842,-0.5596975,0.4235718,0.32114676,0.40688667,-0.7771473,0.5309826,0.31753942,-0.26703686,-0.056271818,-0.8686609,0.0066033774,-0.20936666,0.20942108,0.026520206,-0.21831687,-0.39296356,0.069291525,0.62931055,-0.079985484,-0.014138922,0.3514125,0.412986,0.0671676,0.579189,0.30958152,0.62481946,-0.2764024,-0.08201579,0.40879473,-0.45367464,0.30646738,-0.029748008,0.1334139,0.48760098,-0.65648043,-0.59672654,-0.7258422,-0.5825337,1.3598607,-0.61974424,-0.46495792,0.13879265,-0.0035351047,-0.24777998,0.08339264,0.39848855,-0.19188444,-0.012609013,-0.5717039,-0.14089617,0.13715379,0.41455576,-0.17775321,0.1138492,-0.32839122,0.77243435,-0.3203428,0.45853266,0.385712,0.10281751,-0.17879905,-0.46052054,0.12330204,1.1033342,0.38010105,0.113791645,-0.29193598,-0.5032205,-0.22514048,-0.2634005,0.09096517,0.5614199,0.7786732,-0.12673306,0.049853954,0.5244598,-0.151003,0.1388531,-0.17694494,-0.31482333,-0.17587273,0.004343716,0.73982936,0.52032745,0.08462299,0.3151706,-0.16569486,0.22632335,-0.045498915,-0.5363408,0.6428332,0.95658666,-0.0684914,-0.30378065,0.54400474,0.2576519,-0.43309504,0.42056307,-0.49310535,-0.45911855,0.48044276,0.04544925,-0.32258442,0.12164911,-0.30564335,0.32391962,-0.9910699,0.2968027,-0.10550935,-0.6517624,-0.5202494,-0.11698628,-3.2121506,0.23268549,-0.12679191,0.096116476,-0.2195196,-0.2317975,0.39265904,-0.30302206,-0.5979467,0.045009393,0.036472674,0.58334297,0.009889014,0.1246109,-0.3158962,-0.24728929,-0.35689703,0.04390978,0.15169014,0.2291276,-0.008044043,-0.2612735,0.2040209,-0.31777525,-0.34864822,-0.05043404,-0.75588906,-0.6548495,-0.15511712,-0.4017556,-0.29388162,0.7082859,-0.4067344,0.08775653,-0.22270177,0.0103279725,-0.18364742,0.23376454,0.23804767,0.2813883,-0.05974155,-0.0061316234,-0.23075901,-0.32621735,0.119715855,0.035784714,0.121985264,0.16021016,-0.26482698,0.19142565,0.37257907,0.68662864,-0.05440342,0.7296592,0.30462748,-0.091844305,0.25758287,-0.123939,-0.4689033,-0.70861477,-0.26891395,-0.14492072,-0.5088817,-0.3439081,-0.07396306,-0.24049024,-0.95618314,0.41045538,0.14719906,-0.14621337,0.0069732154,0.45652184,0.47506526,0.058699794,0.019586692,-0.10299375,-0.3227522,-0.47640234,-0.51486725,-0.8688482,-0.55980045,0.17531641,1.237541,-0.108657524,-0.11777594,-0.04977939,-0.38094157,0.26700068,0.33569518,0.22078393,0.23654678,0.54846734,-0.13232043,-0.6887782,0.51913863,-0.056490805,-0.123474665,-0.5429563,0.13947766,0.9822248,-0.796348,0.48987255,0.38877693,0.12814654,-0.037608426,-0.44866443,-0.30392462,-0.044069324,-0.32040712,0.5365157,0.15842421,-0.59294283,0.6300964,0.17535912,0.08202796,-0.70414436,0.3978339,-0.04467148,-0.112086244,0.23755987,0.50338924,-0.069548026,0.032301355,-0.13126372,0.04283009,-0.45596543,0.16009195,0.51323,-0.036059577,0.118526615,-0.18395032,-0.33365256,-0.6061712,-0.19973211,-0.7955922,-0.24451283,-0.016385375,-0.06970816,0.0148300035,0.15562764,0.078412004,0.48416963,-0.116018586,0.1616381,-0.26199308,-0.22960036,0.4572056,0.46934572,0.27503592,-0.5497832,0.7897201,0.21074353,0.17358887,-0.3184933,0.08012565,0.5155858,0.25912246,0.42258886,-0.15721965,-0.08176577,0.10549233,0.7132164,0.36225396,0.413951,0.27365252,-0.081730664,0.45672098,0.30331168,0.28031835,-0.1354052,-0.1983757,-0.12376434,-0.031108277,0.16167477,0.34016728,0.019686922,0.50609046,-0.07438527,-0.05218202,0.12758991,-0.0323064,-0.16646543,-1.2199333,0.3098201,0.2840747,0.5934347,0.37171555,-0.026229382,0.0033071872,0.6401698,-0.61679965,0.019126778,0.123690546,-0.14438908,-0.32175848,0.5846583,-0.604128,0.42492062,-0.15845574,0.040611763,0.10467994,0.28810278,0.4282067,0.92782295,-0.15963955,0.067620434,-0.14751032,-0.15039523,0.2802032,-0.5158349,0.013172047,-0.46784216,-0.37822595,0.68692726,0.1292102,0.44248182,-0.39165846,-0.030991161,0.057343926,-0.15399596,0.11243453,0.020592107,-0.11359525,-0.13166814,-0.61103487,-0.26659337,0.5896522,-0.098538026,0.2194921,0.28952187,-0.29498053,0.34578982,-0.07092856,0.009573979,-0.25965184,-0.65915245,-0.13449004,-0.41123804,-0.40227073,0.17935495,-0.5162844,0.25582865,0.3062499,-0.03801651,-0.27609205,0.16583502,0.14776002,0.6445055,0.12778163,-0.36552027,-0.17589308,0.113786526,0.31858665,-0.4354352,-0.057439215,-0.23119248,0.11912899,-0.68900985,0.38957787,-0.2312522,-0.29927343,0.14161423,-0.115709044,-0.02944226,0.47800663,-0.27302057,0.018695993,0.21139719,-0.06468714,-0.22219276,-0.14281635,-0.30848163,0.22514923,0.062400084,0.038363438,0.094152704,-0.09032676,-0.036879547,0.4108704,0.11157979,0.220302,0.33162668,-0.09997697,-0.35959122,0.105753556,0.0045127785,0.31166926,0.25725833,-0.19555925,-0.13731472,-0.24602939,-0.21085814,0.49405834,-0.1302068,0.22599576,0.0023385542,-0.52142197,0.99559087,0.12343591,1.0207226,-0.016389813,-0.4007906,-0.012027702,0.6030968,0.081976466,0.12930496,-0.022948068,0.95125145,0.52222085,-0.1595447,-0.11480212,-0.48773673,-0.18990898,0.19305773,-0.19497243,-0.254619,-0.023158569,-0.63336146,-0.27692422,0.13448767,0.33614245,0.108983755,0.03864414,0.07296302,0.0647318,-0.024458472,0.5263785,-0.63156223,0.055265743,0.32098386,-0.0015873994,-0.0908581,0.2253696,-0.21663009,0.3840065,-0.8610352,0.19225146,-0.36665156,0.06776952,0.15656063,-0.24086435,0.2949927,0.07932188,0.20641886,-0.4159067,-0.31962433,-0.38830563,0.7143027,0.305147,0.36641726,0.8656761,-0.32013518,-0.06059318,0.33209515,0.567106,1.3324662,0.014236455,0.21557967,0.23788579,-0.47115287,-0.5151002,0.27889967,-0.19573542,0.08470575,-0.020349517,-0.4755078,-0.32107323,0.25931618,0.11621871,0.054510858,0.31214735,-0.5681959,-0.19867133,0.36486942,-0.25645915,-0.34868482,-0.3045604,0.29261133,0.4817135,-0.28636807,-0.24119529,0.018504713,0.14056514,-0.48395988,-0.602469,-0.01963514,-0.4720711,0.3518751,0.112714775,-0.28849903,0.11087727,0.3265493,-0.52059263,-0.070827946,0.2475414,-0.4031736,0.09590657,-0.24294119,-0.037564296,0.942092,0.09202175,0.20237994,-0.7620286,-0.63056594,-0.78004616,-0.36891195,0.6104716,0.24995048,0.04099479,-0.5146437,-0.1677909,-0.1807839,-0.053369064,0.25189543,-0.49218354,0.3695366,0.356939,0.38098726,-0.010640867,-1.0293877,0.20811176,-0.09003256,-0.27451214,-0.4936726,0.4213222,-0.12978305,0.5899199,0.12869155,0.124934964,0.09350366,-0.5764919,0.4243081,-0.1796078,-0.19899143,-0.6533968,-0.05192439 +488,0.6771746,-0.18933274,-0.35046014,-0.05649352,-0.36075774,0.10477588,-0.19909556,0.3502059,0.1511701,-0.40327558,-0.22858474,-0.022732342,-0.13549575,0.27908677,-0.27986035,-0.5649878,-0.08505822,0.13310114,-0.33396482,0.5751959,-0.48205584,0.2867801,-0.0066894847,0.42658952,0.34199473,0.31065693,0.11051672,0.032303445,-0.36654967,-0.42728347,-0.047742512,0.16548967,-0.5887235,0.3017563,-0.18076913,-0.46149865,-0.11210847,-0.3648793,-0.39678589,-0.5994063,0.27214274,-0.9023823,0.47575814,0.060282245,-0.15304647,0.16812068,-0.025315214,0.23988806,-0.19203043,0.16134879,0.13532989,-0.25775552,-0.11956618,-0.29031697,-0.16755982,-0.35004807,-0.57640666,-0.019232472,-0.38065752,-0.017346315,-0.35187447,0.29141957,-0.21815224,-0.030994643,-0.11323437,0.33759016,-0.6065396,0.20912905,0.100333974,-0.14950228,0.0916238,-0.68038255,-0.26354447,-0.1672933,0.10668508,-0.22189312,-0.2853414,0.2482424,0.22576329,0.54188144,0.1196741,-0.09702485,-0.42292354,-0.14398794,0.19425553,0.44488445,-0.21314666,-0.47284317,-0.18174477,-0.20908254,0.46924534,0.24428104,0.1342668,-0.30162686,-0.011187295,0.007120947,-0.28434753,0.43732733,0.5616703,-0.321261,-0.13360998,0.288598,0.44810066,0.0773484,-0.17565988,0.09523428,0.006875506,-0.40525302,-0.13641357,0.105656095,-0.2592502,0.5543644,-0.15134883,0.1600632,0.693194,-0.30793306,0.15786695,0.078978695,0.0665052,-0.05154059,-0.28215355,-0.41192505,0.2209549,-0.47997102,0.13502121,-0.17666125,0.84916705,-0.0128371315,-0.7453364,0.29941642,-0.47816986,0.030485954,-0.2056121,0.57805127,0.50318563,0.3736557,0.3648634,0.7553074,-0.4003002,0.074360386,-0.16151695,-0.24841572,-0.14258316,-0.104590885,-0.05500184,-0.44591948,0.067093804,-0.052993543,-0.032732103,0.13473774,0.6146399,-0.49073225,0.007925693,0.19440025,0.6908632,-0.48728865,0.10243584,0.8745335,1.180151,1.0878825,0.044613454,1.271089,0.4183136,-0.20075141,-0.104546115,-0.318875,-0.41936073,0.20354423,0.35335335,-0.2995311,0.24957825,0.17654237,0.016491778,0.34075877,-0.5320472,-0.02437845,-0.23410797,0.27983925,0.025118995,0.07119671,-0.4166675,-0.23422691,0.09387562,0.022904355,0.083964795,0.28655598,-0.4053819,0.32457176,0.10832551,1.4089652,-0.096554294,-0.06704379,-0.039492354,0.59283066,0.16580805,-0.10813924,0.15186939,0.121707715,0.3530808,-0.22234297,-0.6457811,-0.034408636,-0.23630738,-0.57692087,-0.17085025,-0.21944171,-0.14422426,-0.10842579,-0.35567385,-0.21518761,0.09292955,-0.3405832,0.49253052,-2.3453827,-0.15417449,-0.041341417,0.26105016,-0.11117775,-0.3976975,-0.118645445,-0.38870084,0.47038767,0.15315394,0.32384047,-0.63806117,0.46862787,0.57426864,-0.44279012,-0.12331005,-0.7231334,-0.056766447,-0.1609589,0.31495324,-0.03134869,-0.029871194,0.05493563,0.00048578184,0.70556706,-0.12097355,0.2558536,0.20976128,0.1970041,0.08248244,0.43027946,0.33640262,0.51399004,-0.24876696,-0.35432243,0.3878237,-0.36165914,0.19344038,-0.10307266,0.061248444,0.39714354,-0.51585495,-0.88288593,-0.71442914,-0.35918558,1.0962906,-0.20980929,-0.602327,0.25262558,-0.14209819,-0.37027842,0.031746723,0.3583205,-0.23171923,-0.094765306,-0.8288881,-0.041521255,-0.0672808,0.18095544,0.022436267,0.12643424,-0.41544935,0.6220386,-0.27612934,0.3795333,0.4524755,0.28281823,-0.2379993,-0.44060317,0.08905805,1.1049416,0.53098416,0.13687344,-0.31308013,-0.20664595,-0.07493031,-0.11120499,0.09692171,0.47841948,0.6173541,-0.06035509,0.113743134,0.16701236,0.05537912,-0.05743698,-0.28781447,-0.35662174,-0.11819984,0.1352391,0.7631451,0.59948194,0.06603796,0.5624069,-0.10389139,0.29336932,-0.19041462,-0.48007196,0.5404078,0.8783299,-0.16469781,-0.32846695,0.8155115,0.48105183,-0.30179256,0.5062186,-0.7979796,-0.27750364,0.30358955,-0.124956205,-0.4051711,0.13849793,-0.27556956,0.107378915,-0.8400603,0.4226179,-0.21264455,-0.62219876,-0.5787697,-0.38136283,-2.4211605,0.13844348,-0.30861017,-0.20985392,0.01841074,-0.3774509,0.25032836,-0.6468754,-0.5730569,0.12809776,0.08841979,0.5102208,0.028514652,0.15078214,-0.063489534,-0.16042337,-0.20913473,0.19829664,0.070886105,0.34469602,-0.01123902,-0.40256062,0.18634507,-0.0508185,-0.37321767,0.009624811,-0.63791883,-0.43901184,-0.079959854,-0.3847197,-0.2003992,0.57745343,-0.51871437,0.026467387,-0.35262316,0.013233998,-0.20647839,0.34112284,0.1376742,0.17545962,0.08667817,0.06156163,0.026630938,-0.25045437,0.1924443,0.108870655,0.084136315,0.32683536,-0.19434375,0.07235206,0.37776697,0.56683564,-0.07597058,0.9358022,0.54800767,-0.20420215,0.107009284,-0.18384266,-0.23547395,-0.66753083,-0.45165017,-0.082845695,-0.46687385,-0.48713174,-0.011206611,-0.3535175,-0.89888597,0.6628106,0.010451762,0.09786172,-0.015606379,0.2525505,0.3667843,-0.15482183,-0.056796867,-0.08644628,-0.0759247,-0.54595834,-0.43646047,-0.7149159,-0.35182026,0.031312272,1.0667329,-0.09673167,-0.06427263,0.3159858,-0.42426687,-0.040393054,0.10159678,-0.08248145,-0.021087121,0.5643266,-0.0041656257,-0.59736407,0.31190178,-0.036322888,-0.11972645,-0.5688087,0.1866845,0.72845197,-0.6460865,0.46045917,0.40505296,0.2166061,0.010672923,-0.54083425,-0.19058944,-0.12940179,-0.2403757,0.55036914,0.28571197,-0.71133727,0.5277549,0.33050898,-0.15967195,-0.726697,0.4924107,0.019214239,-0.2534804,0.006036838,0.23934379,0.24597129,-0.0036033874,-0.20968013,0.25268048,-0.40616304,0.3929337,0.28432903,-0.12536997,0.25092345,-0.32323965,-0.22712317,-0.75341034,0.034405947,-0.322361,-0.46381328,-0.013262633,0.09814789,0.11519162,0.3078801,0.21554963,0.3823654,-0.35012978,0.08848371,-0.14336236,-0.24726157,0.336981,0.5122333,0.5622838,-0.22202516,0.60152066,0.07110792,-0.15503922,-0.09034422,-0.097560376,0.48515707,-0.07631029,0.3263676,0.009240075,-0.20296517,0.37912115,0.70439947,0.25831065,0.39637628,0.011729197,-0.16120577,0.2816576,0.14317992,0.2858573,-0.018229397,-0.4464708,0.061396692,-0.030487688,0.18676478,0.34390822,0.2741631,0.42646676,-0.1186914,-0.2121481,0.06305133,0.03853774,-0.1500923,-1.4222913,0.26606888,0.06550066,0.75597084,0.637896,-0.057857372,0.06675088,0.60481197,-0.31257483,-0.074588105,0.34316596,0.07199159,-0.24900834,0.41155356,-0.6356558,0.436155,-0.08990897,0.091215506,0.038313277,-0.0010289471,0.36119977,0.74574834,-0.13283505,0.1012098,0.037832838,-0.33377087,0.026758019,-0.27272728,0.23158069,-0.57807237,-0.22675394,0.9531425,0.52224845,0.4400533,-0.10721293,0.00073380274,0.0672494,-0.10275384,0.1927108,0.13642098,0.013657181,-0.10947332,-0.51248604,-0.27077886,0.571066,-0.17701085,-0.012303487,0.053581335,-0.23612888,0.13779251,-0.052274924,-0.16176215,0.00060118735,-0.6144115,-0.08898397,-0.2498189,-0.27419585,0.21879816,-0.1292091,0.11944027,0.18357004,-0.050114784,-0.19495322,0.25906336,0.24731025,0.713437,0.18018939,-0.16577168,-0.08902285,0.22261162,0.2871929,-0.030041456,-0.06295838,-0.21000935,0.15763777,-0.7705932,0.36718887,-0.19699351,-0.38165298,0.16229142,-0.12645693,0.037955347,0.4502388,-0.12260506,-0.16067918,0.21896096,-0.09880975,-0.35289034,-0.15283523,-0.32844552,0.18857603,0.12393144,-0.062001027,-0.13002926,-0.1471182,-0.12977225,0.5286256,0.19084409,0.42009798,0.40014294,0.017278433,-0.46612567,-0.16052395,-0.034653846,0.513057,-0.2006602,-0.029803399,-0.23055588,-0.41102222,-0.3197821,0.23653339,-0.23990028,0.28175375,-0.016161462,-0.32399222,0.90125376,0.052914597,1.3135465,0.10912595,-0.4120038,0.17575432,0.5487168,-0.19654875,0.15280072,-0.23745598,0.95695007,0.5910067,-0.08944195,-0.23922281,-0.41537267,-0.039260093,0.23831914,-0.21172322,-0.29219633,-0.07069206,-0.7357147,-0.31062654,0.23059402,0.17080829,-0.036665265,0.061089672,0.247465,0.3813226,0.011893004,0.46293864,-0.5195523,-0.12714791,0.42705435,0.2709461,-0.042189114,0.09854113,-0.4083598,0.29110846,-0.5243744,-0.109641396,-0.25563952,0.1437818,-0.17147087,-0.2575832,0.21807583,0.107029915,0.41226283,-0.3528772,-0.29003084,-0.17408305,0.5778283,-0.09777316,0.10349556,0.44606146,-0.32782146,0.22029829,-0.11003087,0.37876967,1.178648,-0.3685544,0.13370892,0.33300468,-0.26712272,-0.49916515,0.33983314,-0.42795965,-0.08252878,0.11208407,-0.36291638,-0.54557407,0.3074264,0.14404781,-0.03958591,0.20212097,-0.61723965,-0.082830526,0.32404977,-0.11057563,-0.18169644,-0.1972575,0.12096931,0.6433605,-0.40482223,-0.3704136,0.029718788,0.37057763,-0.29868275,-0.43946043,-0.020743124,-0.32860625,0.41806367,0.11147587,-0.30863044,-0.1747557,0.11615745,-0.3912564,-0.14885044,0.37310597,-0.24738249,0.075691275,-0.34225675,0.21175508,0.6856361,-0.11162198,0.20146951,-0.68213195,-0.4450857,-0.9199956,-0.24465127,0.32154617,0.2025326,-0.10825407,-0.6672765,0.08664866,-0.21333763,-0.1722345,0.012691768,-0.5022673,0.49649277,0.19681378,0.45751247,-0.0494985,-0.81673527,0.056115076,0.04499763,-0.21449505,-0.5520179,0.5441961,0.059564088,0.889512,0.103809625,-0.012824378,0.005857573,-0.6393315,0.070208795,-0.21486661,-0.21427448,-0.83237904,0.14279476 +489,0.36313927,-0.3790143,-0.3228584,-0.087354496,-0.22513638,0.011488942,0.051946037,0.57417923,0.02965292,-0.37962893,-0.117036216,-0.08115336,-0.09269293,0.13110767,-0.083935335,-0.05116925,-0.2353425,0.10060028,-0.37800202,0.45166126,-0.36132747,0.2026007,0.002332912,0.29830724,0.09339813,0.19648519,-0.07542475,0.090607695,0.088412285,-0.17004688,-0.035566453,0.14308298,-0.58230585,0.18481511,-0.085150704,-0.40431228,0.009824202,-0.4676058,-0.29898977,-0.62878704,0.31011838,-0.8948832,0.43484864,0.045194488,-0.38355556,0.4326014,-0.26601526,0.3321381,-0.15656915,-0.00905763,0.3346658,0.06940765,0.04582813,-0.07929906,0.13238026,-0.2652521,-0.4298324,-0.09737266,-0.10008236,-0.17750248,-0.1426892,0.008901209,-0.21966356,0.0591924,-0.1778536,0.28926912,-0.35988137,-0.0914892,0.18251003,-0.104559295,0.38831902,-0.6291099,-0.024014,-0.22891371,0.18255672,-0.25721562,-0.19897403,0.20348364,0.16496332,0.48351896,-0.22574756,-0.028042546,-0.23345691,0.066881515,-0.111884005,0.37735826,-0.114932746,-0.22754073,-0.079438105,-0.0761846,0.107602134,0.19695161,0.11380903,-0.24679068,-0.05495298,0.13817066,-0.10872274,0.116731375,0.35696432,-0.24487494,-0.25864604,0.2979077,0.58597624,0.12398122,-0.025168657,-0.2073218,0.0065666856,-0.50212365,-0.07608132,0.039383017,-0.41237456,0.55870557,-0.01861477,0.08262442,0.48874775,-0.15432034,-0.025684148,0.060587768,0.036362268,-0.022847231,-0.42457172,-0.39790598,0.3874759,-0.39539778,0.14592281,-0.09412743,0.44547632,0.048192043,-0.6142947,0.20764868,-0.4363876,0.0034841322,-0.081223965,0.38336557,0.5947734,0.42068562,0.10827499,0.67899776,-0.5771664,-0.018656552,-0.23717627,-0.09835135,0.16179278,-0.063566245,-0.029666662,-0.54892886,-0.10977602,0.045370873,-0.20824337,0.012129087,-0.12740459,-0.63397694,-0.0434732,0.3263003,0.5368005,-0.24977154,0.17702326,0.625926,1.0621989,0.73145556,0.20048968,1.1419836,0.0893154,-0.13534018,0.38574663,-0.16762103,-0.7645795,0.10418634,0.40453148,0.0566951,0.11787072,0.1449452,0.12288319,0.4089766,-0.338076,0.05000125,-0.26123816,0.30580574,0.1364751,-0.19541131,-0.4602576,-0.17813395,-0.05831911,0.3197926,-0.16434084,0.18771039,-0.26341113,-0.040043257,0.13783601,1.4780132,-0.17542961,0.11303055,0.22771071,0.25318652,0.08471819,-0.19840632,-0.10513782,0.25661546,0.4542657,0.11324986,-0.4754984,0.34434363,-0.11115393,-0.45865625,-0.103592284,-0.2097782,0.13779606,0.005444224,-0.41866487,-0.19911385,0.015755828,-0.29232317,0.5085939,-2.9080265,0.017121397,-0.2619824,0.34870645,-0.29151827,-0.37840587,-0.02777284,-0.26520893,0.34172827,0.4398732,0.43551058,-0.5729381,0.102674395,0.27038896,-0.60456795,0.02118349,-0.53700507,-0.22582571,0.022725467,0.27013785,0.29464203,-0.020322012,-0.004680835,0.050507147,0.33021492,0.09333165,0.073568694,0.32228562,0.22832632,0.0034740842,0.46532902,-0.043525193,0.36992285,-0.2469735,-0.16196299,0.27875865,-0.226147,0.099940434,0.073742256,0.20773202,0.2600709,-0.39974082,-0.7381572,-0.7330829,-0.22442132,1.3509681,0.00035155966,-0.4356531,0.28726995,-0.44495112,-0.36204025,-0.13322145,0.27554426,-0.08724281,-0.1353381,-0.84992826,-0.017594108,-0.2608158,0.38458696,0.029217703,-0.19659151,-0.6011032,0.67985713,-0.0083162375,0.5269203,0.52228075,0.14840676,-0.04548556,-0.3088613,-0.121991664,0.8014698,0.43331578,-0.007539742,-0.032293413,-0.015619239,-0.24492548,0.1479418,0.29242247,0.32938883,0.5861312,-0.054731123,0.040458057,0.04841653,-0.032912545,-0.023587713,-0.00013341125,-0.17542283,-0.11606209,-0.13823462,0.4795473,0.50695306,-0.09650918,0.23460276,-0.18294437,0.22407508,-0.057974156,-0.4891836,0.31113863,0.73872125,-0.14051008,-0.20870623,0.62304604,0.56858546,-0.099396706,0.30866617,-0.4919907,-0.07964575,0.2188185,-0.08175226,-0.4208712,0.15645303,-0.40270934,0.21475789,-0.7325615,0.18356206,-0.37719786,-0.44505337,-0.72869956,-0.21967578,-2.3674054,0.28417647,-0.14299065,-0.2250234,-0.07083417,-0.19409752,0.41526604,-0.6898114,-0.5639733,0.22332583,0.03001657,0.5411198,0.02688502,-0.16384634,-0.220377,-0.25665653,-0.13756418,0.17584588,0.08125635,0.12906107,0.078419924,-0.44010654,-0.21731088,0.0021722019,-0.40889886,0.033695534,-0.6921192,-0.4170037,-0.17184916,-0.4746068,-0.31636384,0.5899621,-0.22816303,-0.001985284,-0.13584429,0.038348787,-0.07157171,0.23182583,0.041211147,0.2540475,0.123902634,0.026333291,-0.039942123,-0.26265243,0.1331864,0.22473095,0.1319002,0.2852115,-0.36558276,0.08653314,0.47658074,0.6265805,-0.18123068,0.81294906,0.73746884,-0.16139036,0.20153467,-0.23770165,-0.17407902,-0.41997844,-0.3025308,-0.08726247,-0.39994043,-0.45162246,0.09157757,-0.21256098,-0.6494229,0.62660253,-0.09903869,0.031181565,0.23286365,0.13574171,0.43930838,-0.25944027,0.06538845,-0.08078074,-0.018017402,-0.43832833,-0.39719063,-0.4863621,-0.36394197,-0.1503115,1.1557103,-0.1548059,0.21099006,0.12679873,-0.3011492,0.16426131,-0.00854434,-0.07482021,0.08551932,0.42426914,-0.05412696,-0.51388484,0.36501583,0.0920138,-0.1007736,-0.5984625,0.19256212,0.55041796,-0.5205469,0.4250776,0.15049574,-0.02073233,-0.20878448,-0.48041776,-0.25336125,0.009374132,-0.3390637,0.27143443,0.18281955,-0.6394998,0.22584938,0.3814673,-0.04133181,-0.6153634,0.50096184,-0.054810926,-0.35855022,-0.12774624,0.27743915,0.0077424785,0.09825866,-0.0051273406,0.35752138,-0.35467723,0.19943771,0.4540376,-0.020799499,0.20937449,-0.21002898,0.1863816,-0.6581752,0.1537073,-0.27208254,-0.10337908,0.3725176,0.061281208,0.05544334,0.39067873,0.30812597,0.3521485,-0.3253236,0.14916097,-0.10580586,-0.3594399,0.32931238,0.43395218,0.4450228,-0.25230125,0.38523838,-0.0029188967,-0.13917267,-0.18951797,-0.05252729,0.5081757,-0.056854643,0.13664979,-0.32147372,-0.20356329,0.25210744,0.68560463,0.08116984,0.30294803,-0.19519332,-0.06175256,0.1631502,0.039476093,0.19323209,-0.01668069,-0.56702036,0.32189783,0.00076687336,0.21200754,0.2499191,0.07065757,0.1133423,-0.23144963,-0.25801405,-0.046264455,0.14040893,0.17513797,-1.0591261,0.40543252,0.078512624,0.74815327,0.5695,0.10217551,0.04764647,0.39084145,-0.10791151,0.1312557,0.23710534,-0.033622377,-0.4514825,0.37885353,-0.6047534,0.39019835,0.13431652,-0.09363193,0.089541435,-0.17445676,0.40422648,0.7374429,-0.24896969,0.024115054,-0.052978653,-0.26109427,0.045379758,-0.3002226,0.14846037,-0.5381918,-0.36833414,0.6105654,0.51789826,0.37175095,-0.25138667,-0.026060088,0.13801269,-0.06281039,0.26003247,-0.075529926,0.06392648,0.20002754,-0.5064768,-0.013182847,0.33571845,-0.07326106,-0.021802617,-0.15998012,-0.30037436,0.11178664,-0.06524981,-0.08895634,-0.083206646,-0.66366476,0.16853389,-0.47273877,-0.10245769,0.31040192,-0.091352805,0.1770563,-0.023468686,0.0137981875,-0.17809552,0.2899442,0.0015682166,0.7469968,-0.09848188,-0.0037004764,-0.3738941,0.13109101,-0.017959429,-0.07401551,0.080189295,-0.26422068,-0.01780758,-0.6162916,0.25084403,0.083995506,-0.18776067,0.18002954,-0.22824004,0.11097327,0.43083823,-0.11946849,-0.18617003,-0.10321966,-0.051178914,-0.0830298,-0.23908383,-0.16149785,0.22067785,0.10410622,0.22462471,-0.022058047,0.02866535,-0.17860079,0.43905464,0.38118806,0.380545,0.31895855,-0.009276867,-0.22129609,-0.038986776,0.07148771,0.41735741,-0.20497172,-0.12897891,-0.21705343,-0.5530174,-0.2481319,0.14927171,-0.11894928,0.54675364,0.062024813,-0.010251169,0.6472898,0.1402093,1.1164355,-0.0817378,-0.35853478,-0.07876827,0.51631093,-0.040831387,-0.13662848,-0.28081557,0.715165,0.5487021,0.024608195,-0.015394954,-0.04996672,-0.005427434,0.15088572,-0.012360986,0.07864283,-0.14348875,-0.8078851,-0.27184156,0.116728336,0.3094558,0.07983367,-0.040445626,0.08035676,0.23052186,-0.1076572,0.18216808,-0.23374034,-0.14201383,0.26577508,0.23577714,0.00943944,0.17914654,-0.43372032,0.32764578,-0.47833002,0.057080455,-0.28187594,0.10092178,-0.09334278,-0.099788494,0.040981732,-0.11882096,0.42635316,-0.37685326,-0.42715073,-0.20885023,0.54767954,0.12671229,0.13121937,0.5348618,-0.09869581,-0.0027724276,-0.045892827,0.3652814,0.78377926,-0.26034796,0.09461261,0.18071455,-0.3113192,-0.43055674,0.23278649,0.01996911,0.2012961,0.0669028,-0.1706199,-0.38954398,0.2862371,0.22921287,-0.113982886,-0.13547304,-0.552775,-0.21196094,0.17643268,-0.29998782,-0.0924528,-0.31932825,0.22873023,0.56380945,-0.18624696,-0.4529721,0.13260414,0.24812481,-0.24454728,-0.34216627,0.03443983,-0.5069277,0.17342679,-0.020170024,-0.48572657,-0.34545884,0.04347606,-0.41224292,-0.013743653,-0.002980489,-0.2444827,-0.050359707,-0.298937,0.044965487,0.91745543,-0.023446359,0.10107838,-0.4336174,-0.35666576,-0.7567203,-0.41547582,0.52644473,0.2076558,-0.029822316,-0.33462098,0.15431826,-0.20091532,0.058348384,-0.1931014,-0.06312703,0.51166,0.121445365,0.41453546,-0.20468657,-0.5865731,0.15420881,0.017482487,-0.007239741,-0.36866057,0.48174554,0.18727365,0.5732193,-0.098634325,0.16864474,0.03575317,-0.38311687,0.04120437,-0.098353535,-0.11148587,-0.67727,-0.036027428 +490,0.4197061,0.008952935,-0.6930895,-0.16147007,-0.20514016,-0.17641716,-0.25315595,0.41071644,0.37900975,-0.59944814,-0.16221146,-0.35355556,-0.083976865,0.5962799,-0.33464238,-0.727158,-0.084249,0.1503193,-0.4343659,0.71046454,-0.3997393,0.2933941,0.05791081,0.5613304,0.26224828,0.16260162,0.40686712,-0.062427133,-0.17410457,-0.18328635,0.18518631,0.12888898,-0.6889948,0.10686004,-0.24344672,-0.7173235,0.053900737,-0.5236468,-0.23559736,-0.9238791,0.4597682,-0.89444405,0.585608,0.2842897,-0.2795212,0.07616768,0.451733,0.39879593,-0.12351749,-0.019349152,0.0935773,-0.026864627,-0.062416818,-0.06823699,-0.4652749,-0.56454414,-0.7872341,0.25727776,-0.41607985,-0.27244982,-0.2794682,0.22849013,-0.44358516,-0.02359199,-0.06343154,0.5334706,-0.32147592,-0.3024706,0.4514482,-0.18138091,0.41098198,-0.5527967,-0.26271304,-0.30373368,0.12963246,-0.2592089,-0.15834413,0.23545635,0.3409133,0.6612576,0.003934244,-0.35498548,-0.5455758,-0.0024848357,0.19246435,0.21799172,-0.3009236,-0.6105605,-0.17973489,-0.0053896704,0.1686186,0.33624926,0.3417846,-0.3112942,0.106870614,0.08177408,-0.33886895,0.4240178,0.5426601,-0.5077061,-0.3276129,0.31611872,0.5399456,0.3482908,-0.11493191,0.01582489,0.05558913,-0.6822732,-0.3541056,0.05000006,-0.24899305,0.7118395,-0.1489123,0.22274727,0.6334706,-0.21545269,-0.07344011,-0.065453894,-0.15960658,-0.23185135,-0.37797663,-0.33267266,0.35291854,-0.40749446,0.19144702,-0.33596477,0.7257107,0.14599682,-0.6564772,0.36814275,-0.80470127,0.19855334,-0.06656968,0.5231693,0.77800775,0.35713968,0.43765518,0.7228344,-0.44625005,0.015969634,-0.04697596,-0.30402434,0.13478439,-0.42047283,0.04582702,-0.3492745,0.047369216,-0.09515149,-0.1522033,0.09134385,0.47067627,-0.52144617,-0.07444259,0.3639566,0.85092664,-0.120654225,-0.08504478,0.80329704,1.01613,1.2048804,0.09548926,1.4238142,0.24986996,-0.31677637,0.3555216,-0.13116394,-0.93901634,0.3924161,0.31295744,-0.7481661,0.5107929,-0.011937936,0.18145086,0.5729504,-0.45194492,0.15558918,-0.42336038,0.21468915,0.14914323,-0.25812227,-0.24465953,-0.17874672,-0.108527504,-0.11436918,0.14475627,0.285947,0.043352153,0.15038247,-0.12314906,1.4782991,-0.17853846,0.14656365,0.08306701,0.40713045,0.2621218,-0.15059365,0.010668457,0.055695225,0.19902599,0.16362761,-0.55469304,0.05837296,-0.32857263,-0.51067674,-0.2518014,-0.316523,0.028420143,0.086722314,-0.50357866,-0.06252802,-0.19537552,-0.20092516,0.3021401,-2.3909209,-0.27935743,-0.123878054,0.05390334,-0.30226883,-0.3110532,-0.17794748,-0.5408693,0.6065014,0.3458269,0.35960403,-0.5726184,0.32702172,0.6560512,-0.54872304,-0.011341427,-0.73769593,-0.15291913,-0.17032908,0.39150998,0.0070418664,-0.28688025,-0.049880225,0.3319269,0.44148088,0.1803621,-0.018939978,0.063850276,0.611573,-0.1713835,0.69959885,-0.15179045,0.62459,-0.46803275,-0.3777516,0.45586035,-0.43726873,0.32889065,-0.07994852,0.11160687,0.47021106,-0.6399495,-1.114094,-0.7080485,-0.37264323,0.97815967,0.08689738,-0.5058949,0.28592843,-0.28738552,-0.17451723,-0.1208255,0.51724404,0.013742874,0.26721707,-0.94235444,0.10665991,-0.1704395,0.12725067,0.09484062,-0.013222158,-0.6146388,0.6961524,0.09152942,0.31414437,0.54871637,0.22543752,-0.43380055,-0.7028024,0.113119304,1.0626668,0.35594007,0.1822471,-0.45556894,-0.24605481,-0.5504579,-0.040094834,-0.006564399,0.39263737,0.7849417,-0.12299359,0.11661818,0.2957808,0.17610578,0.080892794,-0.123046,-0.47290096,-0.07614391,0.076716475,0.60184497,0.744853,-0.2559468,0.37167165,0.023224512,0.46887353,-0.3422438,-0.27754503,0.7662112,1.2326105,-0.033383425,-0.25124702,0.8461993,0.4752988,-0.30866858,0.7146179,-0.54113394,-0.39098713,0.34863567,-0.062000707,-0.5100766,0.16633876,-0.48298085,0.086525135,-1.1496662,0.31749263,-0.33543012,0.042236906,-0.8624308,-0.2559143,-3.614584,0.3427603,-0.3084226,0.04180521,-0.16330206,-0.016952349,0.42276883,-0.6078894,-0.9959312,0.10421201,0.07992903,0.9017484,-0.34738234,0.22654288,-0.17238365,-0.26771006,-0.29789314,0.17779781,0.27273428,0.30704135,0.06493336,-0.5597421,-0.15392424,-0.2935807,-0.40532413,-0.019934973,-0.59446275,-0.46124685,-0.3887289,-0.687212,-0.2611499,0.7119941,-0.40191534,0.0024885882,-0.2638254,-0.0087448405,-0.12215953,0.45860517,0.09716863,0.32720348,0.33956918,-0.107381366,-0.06831888,-0.16134748,0.07945591,-0.011545758,0.15561572,0.36246192,-0.20347561,0.4261305,0.5708956,0.94027835,-0.15244864,0.93652314,0.6475689,-0.056016874,0.2644502,-0.36713448,-0.36362147,-0.63772607,-0.37359467,-0.030606555,-0.41216543,-0.60385674,0.085281216,-0.32419816,-0.7940659,0.85407376,-0.1171977,0.22616607,-0.07108337,0.0070191524,0.35846713,-0.35878935,-0.09685969,-0.046240896,-0.10417149,-0.44989792,-0.4282963,-0.5010259,-0.5606676,-0.03945035,0.9821272,-0.07770989,0.039893534,0.33231303,-0.05906439,-0.0012570173,0.17042004,0.11956056,0.030672327,0.5580815,0.14873376,-0.7522096,0.4351885,-0.038019866,0.051411062,-0.6592961,0.23252113,0.64970595,-0.6338834,0.68621963,0.4999105,-0.019826418,-0.09476807,-0.65049744,-0.21051829,0.15443356,-0.1393184,0.41522446,0.27882382,-0.72759295,0.45128426,0.46693325,-0.35669228,-0.992692,0.68147826,-0.022239998,-0.22831923,-0.252588,0.44170296,0.22837047,0.16257913,-0.27448514,0.26226726,-0.37219962,0.04168449,0.29363456,0.017670337,0.38021278,-0.2806277,-0.17058659,-1.0347408,0.13402532,-0.57817155,-0.32747638,0.3070229,-0.00788489,-0.10596158,0.26765198,0.08985028,0.2767368,-0.21488136,0.22149892,-0.14272879,-0.18685515,0.32010934,0.46829298,0.5896683,-0.72001046,0.7066458,-0.0692474,-0.13400784,0.09157107,-0.10833335,0.47689936,-0.15452679,0.4480597,0.079184055,-0.2423537,0.16481057,0.8868165,0.07161015,0.3351073,0.22981568,-0.02890035,0.3380704,0.19983383,0.06271416,0.02764525,-0.68787503,-0.13767691,-0.24364167,0.16111414,0.4979544,-0.054549653,0.335421,-0.0799252,-0.43121707,0.047269534,0.114290945,-0.11770576,-1.2959641,0.31811574,0.16161765,0.894056,0.7683688,0.12786125,0.15974867,0.638351,-0.15377016,0.17212784,0.57023054,-0.0665605,-0.56969017,0.65520716,-0.48290667,0.35421476,-0.02876974,0.0015107145,-0.23417489,0.11652267,0.6218837,0.6019015,-0.22663665,0.22916764,-0.032386195,-0.21319933,0.16126077,-0.32014427,0.11133164,-0.33473957,-0.32291755,0.8206651,0.53778917,0.26640192,-0.23688538,-0.07057571,0.16584626,-0.16268152,0.09594003,-0.15017454,0.05100982,0.082003325,-0.6455774,-0.08559644,0.5864478,0.27633876,0.24698134,-0.06544028,-0.41866323,0.17925502,-0.254432,0.019783521,-0.104352176,-0.70130616,-0.1607227,-0.4651222,-0.48641655,0.54363483,-0.17426401,0.2627668,0.14843564,0.21260794,-0.36204383,0.42034706,-0.11871792,0.64823127,-0.14463158,-0.025226852,-0.2274433,0.36410034,0.18037944,-0.42657447,-0.21152677,-0.29022986,0.30150554,-0.5235664,0.5483082,-0.03266704,-0.36699247,-0.044173975,-0.06327019,-0.047707215,0.68003863,-0.29891577,-0.16101687,0.16099994,-0.22137773,-0.15941961,-0.186782,0.04433364,0.4326633,-0.028324386,0.033330362,-0.20986764,-0.15407205,-0.111937426,0.4631813,-0.12923305,0.20922165,0.54815334,0.150635,-0.3541893,-0.11908642,0.17619938,0.7226756,0.022924483,-0.3358387,-0.3277144,-0.34622812,-0.37999848,0.3261187,0.07244622,0.18278007,0.1669146,-0.46914014,0.63940215,0.42273495,1.3820043,0.046875507,-0.5135828,-0.026799003,0.4747205,-0.16257279,-0.29265746,-0.48054484,1.0062068,0.6435053,-0.22486703,-0.14466125,-0.4119152,0.16160071,0.09738044,-0.33304438,-0.13627727,0.04001561,-0.58413935,-0.26327464,0.2761127,0.45048425,0.14444475,-0.22339207,0.20289725,0.13814956,0.13953398,0.45996174,-0.45164025,-0.3347681,0.3013843,0.5130649,-0.034045275,0.048652917,-0.31268132,0.34154156,-0.6277662,-0.0074743927,-0.5271276,0.20827417,-0.26643276,-0.44017473,0.18266523,-0.08514738,0.2929655,-0.30726814,-0.29974708,-0.1485926,0.49902713,0.20412888,0.18366475,0.6869831,-0.26321003,-0.04534823,-0.061000567,0.72199994,1.2864287,-0.24365985,0.002136469,0.24333255,-0.019142816,-0.6196924,0.44168022,-0.7080769,0.26377377,-0.109585546,-0.28682292,-0.69977957,0.08067846,0.21434312,-0.16264628,0.053637173,-0.66844136,-0.29516098,0.11968521,-0.18908823,-0.20615588,-0.28657237,-0.070643805,0.5493472,-0.16360267,-0.34977826,0.13134374,0.33545592,-0.16563025,-0.5117508,-0.1711783,-0.22728886,0.3657867,0.30249116,-0.372646,-0.0306604,0.12179487,-0.64372736,0.18065463,0.18390667,-0.4071881,-0.101680376,-0.40283856,-0.09511182,1.1908921,-0.15851073,0.32719484,-0.35759392,-0.5041607,-1.062574,-0.26162672,0.5316008,-0.0022874575,-0.023994192,-0.652566,0.053076062,-0.15522878,0.05015863,0.14686792,-0.2966083,0.26124188,0.056745637,0.6839041,-0.16876169,-0.550635,-0.047635783,0.24016808,-0.07309022,-0.59906566,0.61383283,-0.11297759,1.0708766,0.0353693,0.0919801,0.38560346,-0.5107781,0.025256285,-0.16903867,-0.22622108,-0.65612906,0.16585834 +491,0.24049966,-0.25650468,-0.35081318,-0.15486254,-0.43201378,0.19977714,-0.1477667,0.2767664,0.19764386,-0.43069348,-0.37798762,-0.06538121,0.14273253,0.27482396,-0.13981353,-0.5460409,-0.10728748,0.20747402,-0.61586946,0.38590056,-0.61422014,0.4227015,0.21010001,0.29989582,0.08795591,0.33450365,0.31367126,-0.06290937,-0.18199857,-0.016130766,-0.23801391,0.22766519,-0.47460708,0.062440302,-0.2663318,-0.294549,0.11309331,-0.54005724,-0.3084114,-0.68727547,0.32481366,-1.1061409,0.5095324,-0.08924583,-0.07773471,0.13881186,0.23639631,0.21814713,-0.30465502,0.102339335,0.1845167,-0.20898366,-0.113840766,-0.17316072,-0.23545928,-0.37148646,-0.5389961,0.11170624,-0.43004194,-0.30294746,-0.19877698,0.20172803,-0.3832216,0.21284424,-0.1051054,0.21522224,-0.39597628,0.005538436,0.31719413,-0.2097667,0.112185225,-0.5185978,-0.024987202,-0.09792093,0.43629304,-0.103742935,-0.04803598,0.40494743,0.40414408,0.5914603,0.22149475,-0.30786142,-0.24588068,-0.11918129,0.1634904,0.6615373,-0.14518595,-0.2547179,-0.26584843,0.070927225,0.24300899,0.36647967,0.056816135,-0.005589749,-0.100280404,-0.07472236,-0.35654083,0.32771155,0.5381891,-0.3901971,-0.44937128,0.3223255,0.6798707,0.035518203,-0.17454728,0.041549627,0.054826148,-0.49146575,-0.09604473,0.14068106,-0.111484475,0.5337062,-0.22541912,0.1314343,0.8221125,-0.081436194,0.19506754,-0.088639416,0.054544803,-0.32908052,-0.23533659,-0.13595568,0.09485108,-0.5343618,0.1044483,-0.2753038,0.8092946,0.15623654,-0.6405343,0.511319,-0.44651845,0.22515866,-0.08287496,0.55536443,0.5644436,0.27323848,0.44281715,0.7968812,-0.3594253,0.16605963,-0.11821497,-0.413579,-0.04871491,-0.33374646,0.17202497,-0.3850631,0.27665702,-0.09101761,0.02205508,-0.057876505,0.5965052,-0.5077107,-0.14587271,0.20236471,0.87502,-0.41358763,-0.078966975,0.725758,0.9060388,1.0287869,-0.012302036,1.466627,0.41627914,-0.25700906,0.040289182,-0.3156326,-0.804728,0.20624433,0.4121268,0.27241448,0.26203835,0.08838998,-0.11450576,0.3168089,-0.49585503,0.004920491,-0.29611486,0.17910595,0.13232867,0.08058932,-0.5300722,-0.20783648,0.080422565,-0.13000453,0.2768353,0.19208468,-0.17472894,0.44306558,-0.13640691,1.4733334,-0.08034211,0.08085072,0.15453216,0.48754546,0.26823792,-0.046763547,-0.09105503,0.4350633,0.42298684,-0.10602269,-0.67380106,0.12389201,-0.31826422,-0.4154997,-0.20427693,-0.2885882,-0.21571632,0.18087408,-0.28404826,-0.29074886,-0.13466732,-0.3203303,0.35601753,-2.5626054,-0.35376593,-0.20012115,0.3546547,-0.33442837,-0.23183951,-0.12931518,-0.60754937,0.28037095,0.22312157,0.43933445,-0.6638493,0.39519802,0.5122952,-0.48109192,-0.10607187,-0.7351743,-0.13075699,-0.024608906,0.4086538,0.035446096,-0.17725696,-0.3106169,0.032262024,0.61593664,0.17568922,0.15958211,0.5475098,0.53174764,0.275964,0.53856725,0.0885408,0.6162292,-0.40910688,-0.1080181,0.4506381,-0.31541744,0.41208276,-0.20825349,0.11079256,0.5109929,-0.5200481,-0.8167587,-0.6801787,-0.52835506,1.1095207,-0.38326547,-0.35103115,0.20963576,-0.09402021,-0.14740051,-0.06354953,0.5087591,-0.19040813,0.00019700613,-0.78881747,0.034407355,0.09635035,0.15168382,0.071097836,0.022998348,-0.24746041,0.7624922,-0.1570469,0.5550908,0.16787876,0.20394818,-0.08572284,-0.29920247,-0.0003667942,0.89904225,0.3558384,0.069069214,-0.22790502,-0.36833778,-0.12832537,-0.36795992,-0.022180377,0.4184281,0.7078802,-0.0025173745,0.08097653,0.3576396,-0.07038939,0.036240183,-0.18318343,-0.17029135,-0.10653346,-0.031675704,0.4210295,0.56222636,-0.24781227,0.42234325,-0.35484833,0.31479773,-0.12695341,-0.60702235,0.4988849,0.60067034,-0.16035624,-0.0528103,0.6646458,0.48825735,-0.48121718,0.44435582,-0.74385357,-0.22544673,0.64820784,-0.17316996,-0.49759415,0.05599352,-0.25946897,0.16006884,-0.7843433,0.26820204,-0.13740091,-0.3268542,-0.49138913,-0.13506404,-3.1376898,0.13621387,-0.1559253,-0.14180402,-0.22454797,-0.26244855,0.17242989,-0.47129375,-0.63881916,0.2407074,0.09744728,0.5387248,0.009609767,0.30426827,-0.30412918,-0.014744282,-0.3220704,0.1257601,0.16067502,0.3770955,-0.23541567,-0.46236324,0.09211063,-0.1591716,-0.4708733,0.20273037,-0.69097954,-0.5296236,-0.15625797,-0.42948723,-0.26033407,0.5814754,-0.40240175,0.05849433,-0.31948707,0.013574489,-0.32453632,0.14763677,0.16678728,0.22189035,0.11208214,-0.18452753,0.06487828,-0.31902406,0.7479038,-0.038089115,0.27666014,0.21928212,-0.08761239,-0.024765449,0.3092138,0.5931781,-0.1718813,1.034897,0.3109731,-0.12868576,0.231788,-0.29721993,-0.16202618,-0.5909713,-0.24336112,0.023425927,-0.47332856,-0.6011899,0.041985925,-0.35454848,-0.85075873,0.56016797,0.0133578135,0.30726844,-0.06080394,0.3211135,0.41902143,-0.15341285,0.0034302622,-0.060696237,-0.16623776,-0.6247167,-0.37520885,-0.65204686,-0.44418493,0.091399364,0.9784308,-0.19595559,-0.067911886,-0.20541285,-0.35310864,0.0032667858,0.08546572,0.09298807,0.2621731,0.56676036,-0.027684463,-0.7658719,0.48584446,0.11372022,-0.07633956,-0.45818433,0.01414824,0.59020865,-0.8008461,0.5866347,0.46149462,-0.027776761,0.05344332,-0.4602847,-0.36368564,-0.18196462,-0.2610374,0.39363232,0.18488696,-0.78311974,0.5357692,0.34809685,-0.4836966,-0.9061679,0.16995142,-0.041989915,-0.052498903,0.058848985,0.300245,0.1860214,-0.098636165,-0.107964754,0.019652953,-0.4482054,0.3582767,0.22324446,0.056754094,0.42296726,-0.28898,-0.40699124,-0.75623196,-0.070392266,-0.49742618,-0.12603198,0.30556387,-0.03440812,-0.10464525,0.17269857,0.06986349,0.46615845,-0.30318406,0.076848924,0.12991564,-0.2643686,0.1495523,0.32345596,0.37905365,-0.40746525,0.5594481,0.07473806,-0.18154904,0.13777538,-0.028327227,0.32387856,0.15809543,0.26147553,0.06450045,-0.20622848,0.41452068,0.91338265,0.13269158,0.4411873,0.2614374,-0.1821406,0.52567387,-0.012781224,0.055977397,-0.02346846,-0.44840124,-0.03940257,0.000494693,0.10506599,0.39140844,0.2999632,0.34501797,-0.076751806,-0.067636274,-0.05278519,0.11583813,-0.055959642,-1.0166038,0.029227462,0.12569581,0.8728918,0.35079426,-0.015393466,-0.055236083,0.6326057,-0.33106866,0.14261167,0.4680124,-0.045290954,-0.50824344,0.73145527,-0.4385407,0.40895873,-0.27024737,0.004637137,0.031189825,0.19667777,0.2470245,0.86403495,-0.18380283,-0.00996095,-0.10466308,-0.19363086,0.101552926,-0.30756727,0.02654752,-0.3786249,-0.26984617,0.67045826,0.31924817,0.3771551,-0.05254137,-0.08315575,-0.0877995,-0.11419921,0.20395228,0.13524589,0.11333089,0.08829391,-0.63777494,-0.2396911,0.6212556,0.2462039,0.27758262,-0.15963146,-0.43831182,0.19649199,-0.33649006,-0.056602936,0.028576186,-0.7434961,-0.025093505,-0.09836234,-0.6731024,0.20964544,-0.008966736,0.125217,0.25914183,-0.056307603,-0.25978437,0.07973023,0.13479689,0.88057965,0.0014810839,-0.2813923,-0.37142643,0.09021664,0.369314,-0.36581627,0.27037463,-0.29463348,0.0476729,-0.51806575,0.85209095,-0.20572202,-0.46943498,0.26269013,-0.32060322,-0.03859728,0.6160592,-0.09097718,-0.08856673,0.02552453,-0.15582047,-0.51106745,-0.010115491,-0.19569792,0.17990068,0.35163397,-0.12245524,-0.13312794,-0.29021087,-0.076667294,0.647457,-0.0043669906,0.42226702,0.2485706,0.026489917,-0.23228455,0.05743951,0.14424588,0.5617785,0.03257354,-0.033987906,-0.34224796,-0.46543485,-0.110826,0.22119235,-0.12924854,0.21967593,-0.024768349,-0.4545451,0.87734693,-0.03113241,1.0942985,0.25728545,-0.3145669,-0.06913582,0.56542253,-0.04725821,0.011067905,-0.2780939,0.82006294,0.48684222,-0.06088891,-0.0466506,-0.55456465,-0.040983073,0.31217146,-0.28900725,-0.12483189,-0.05816463,-0.55871457,-0.3614203,0.24297215,0.1852074,0.16935508,-0.054281324,0.16819116,-0.013995273,0.07951559,0.6004039,-0.587409,-0.32908455,0.2399843,0.0864948,-0.019100705,0.17615688,-0.40097308,0.39563814,-0.5855812,0.15585874,-0.41246095,0.0036230257,-0.24689354,-0.3655618,0.086315,0.060868464,0.45178843,-0.29124743,-0.47105378,-0.07474317,0.46805468,0.086907096,0.20511863,0.5763214,-0.26477298,-0.0080574835,0.12288236,0.60919464,1.3523681,-0.27977487,0.18777944,0.2662827,-0.34053904,-0.7141678,0.51940435,-0.3442092,-0.021166964,0.015155767,-0.36530557,-0.4621285,0.26711634,0.31644276,0.0066254246,0.18409058,-0.47874138,-0.21503296,0.35291085,-0.2293924,-0.14943527,-0.1805984,0.29415736,0.74694264,-0.26531652,-0.19709133,0.03666767,0.31154448,-0.39468876,-0.52017367,-0.18567984,-0.2736902,0.3085635,0.1552821,-0.23129228,-0.073614106,0.13333401,-0.42639682,0.10838835,0.13791497,-0.41617584,0.0412565,-0.2883721,0.0334217,0.86791563,-0.17496344,-0.07519891,-0.7573551,-0.3849383,-0.9090906,-0.3532929,0.37311077,0.1800841,0.021201761,-0.3681224,-0.013363277,-0.056459077,-0.23226474,0.17409587,-0.586082,0.45195103,0.18127675,0.46537906,-0.2388355,-0.7730765,0.014573693,0.042989526,-0.1642467,-0.5539171,0.6301418,-0.04067092,0.8724877,0.11080713,-0.12999311,0.047357257,-0.38099998,0.16045892,-0.41615534,-0.094602756,-0.8604995,0.0259652 +492,0.520342,-0.2658092,-0.71149826,-0.042771846,-0.5879007,-0.056008488,-0.096246965,0.3785757,0.15514563,-0.49668285,-0.21395816,-0.079818316,-0.011984487,0.14164646,-0.17352246,-0.30862692,-0.062651396,0.39094055,-0.77205586,0.61897314,-0.14964549,0.26729178,0.15878294,0.356113,0.2954142,0.09248778,-0.049624104,0.13472973,-0.030714171,-0.4771037,-0.047859024,-0.05945371,-0.9219084,0.07439216,-0.21435124,-0.59951967,-0.1453206,-0.6103785,-0.4569035,-0.95973897,0.43114412,-0.95015526,0.67767715,-0.08481363,-0.27047506,0.25034347,0.22072256,0.4240508,0.071554296,-0.09261825,0.33438882,-0.22349799,-0.14139092,-0.10558358,-0.018738827,-0.32063246,-0.6644415,-0.15325789,-0.43129587,-0.260253,-0.26540914,0.2535695,-0.37427536,0.07845341,-0.3084297,0.8508887,-0.42905512,0.40600267,0.11334545,-0.06566826,0.11836406,-0.7239402,-0.13500336,-0.18815927,0.3295369,-0.17943175,-0.16471003,0.29939595,0.21992809,0.22956878,0.10460534,-0.25018266,-0.23334736,0.016347952,0.05729741,0.50553393,-0.18664818,-0.23882794,-0.07782537,0.07521797,0.2629691,0.24788284,0.34818223,-0.1587636,-0.03884752,0.042610664,-0.07992603,0.8471523,0.4432211,-0.35266402,0.013933678,0.4174787,0.7464769,0.28156707,-0.243602,0.10220149,-0.135344,-0.51896596,-0.1391526,0.12770559,-0.29677233,0.4455899,-0.23041292,0.29154804,0.51742136,-0.2813084,-0.3639799,0.3997376,0.061439905,0.07066012,-0.19778742,-0.4421239,0.54101175,-0.628527,0.3652792,-0.19760782,0.6434215,0.035050254,-0.72742623,0.28722754,-0.6649964,0.25939295,0.061125796,0.5523723,0.7140949,0.55847836,0.31309298,0.74737245,-0.3277436,0.13204326,0.076957814,-0.3337066,-0.2701782,-0.37076083,0.13324328,-0.45684066,-0.014836639,-0.48355758,-0.15096574,0.0011316066,0.56545824,-0.64044744,-0.43521166,0.20307438,0.8210357,-0.20148681,-0.17186145,1.1494873,0.9169063,1.3280958,-0.0069330237,1.0532962,0.035583157,-0.14975798,-0.09425926,0.037400115,-0.604391,0.31606713,0.37588024,-0.020788796,0.07943753,0.123782456,0.08563437,0.4548775,-0.47931466,-0.1001299,-0.13574518,0.1778128,0.16376296,-0.24735199,-0.53372747,-0.1957118,-0.08980199,0.1646552,0.05745719,0.2763289,-0.23683472,0.43213263,0.19801068,1.3275372,-0.10489905,0.14927368,0.13591151,0.6027379,0.23217303,-0.27924457,-0.012172937,0.17831671,0.32140324,0.21596317,-0.5258543,0.08088184,-0.29985094,-0.4372361,-0.19249535,-0.35969564,-0.49924454,-0.08741468,-0.39461184,-0.39830813,-0.13558333,-0.44279385,0.33343327,-2.4889994,-0.21100879,-0.15751998,0.44294417,-0.1745234,-0.41926524,0.05324167,-0.6664286,0.35358617,0.21790437,0.6793744,-0.6577699,0.5128326,0.51211727,-0.8159016,0.19627966,-0.68788093,-0.21127439,0.039304744,0.23053907,-0.068803094,-0.13847528,0.0576638,-0.04120626,0.52643234,0.1898756,0.15612951,0.39500514,0.47975227,-0.20216607,0.8017002,-0.017350676,0.5064232,-0.41819975,-0.24671058,0.5571878,-0.31308636,0.21486188,-0.3676224,0.021931099,0.7408963,-0.57381684,-1.0611814,-0.6725464,0.03382786,1.2870256,-0.15810134,-0.6032328,0.21340346,-0.58271486,-0.23075263,-0.10160824,0.49784622,-0.06255526,0.016577335,-0.60313433,-0.1349973,-0.15829796,0.041228037,-0.05340628,-0.030796722,-0.625207,0.7465677,-0.15478538,0.53363734,0.23592453,0.19253348,-0.4917909,-0.3979597,-0.0027694304,0.8648353,0.5083235,-0.0020075936,-0.31374136,-0.13252214,-0.2868018,-0.15778744,0.028375706,0.74699074,0.4908948,-0.18190043,0.14585792,0.4341537,-0.014136613,0.19940864,-0.22024387,-0.34805164,-0.34859416,-0.13409854,0.60960805,0.6492029,0.014709805,0.7812063,0.014270608,0.07654638,-0.09798623,-0.62628937,0.39590684,1.0140544,-0.36391136,-0.5005501,0.6924572,0.30919418,-0.33154032,0.4758695,-0.40897623,-0.26487866,0.45606112,-0.049020942,-0.7307547,0.041227,-0.23920207,0.14741032,-0.5308487,0.19518411,-0.5764479,-0.7901376,-0.42315707,-0.27963343,-2.1318777,0.34768367,-0.34568986,0.09848402,-0.16573435,-0.4688889,-0.14255603,-0.43509424,-0.7726801,0.09317122,0.076063976,0.9162715,-0.19493489,0.12303389,-0.24429588,-0.43469325,-0.35888842,0.3132386,0.25444984,0.3956274,-0.17456406,-0.31258163,0.11880133,-0.036098417,-0.35963917,-0.17508478,-0.70783615,-0.46538067,-0.09552752,-0.5933187,-0.46134984,0.6390025,-0.19926326,0.21704586,-0.3445774,0.0036150722,0.15748487,0.10426576,-0.061465774,0.3003358,0.18647893,-0.19285291,0.12006072,-0.10812568,0.25138763,-0.0534465,0.4142822,0.16391653,-0.2623775,0.39008817,0.42782223,0.91332644,0.0080150375,1.1824275,0.333416,-0.19407529,0.29569834,-0.07656846,-0.43156245,-0.79213595,-0.12228539,0.2870216,-0.4845954,-0.55373996,0.16404088,-0.3326119,-0.9390021,0.80634004,-0.0067745545,0.42177102,0.052263767,0.5191385,0.6842404,-0.23430061,-0.13622765,-0.0598723,-0.24326496,-0.54995817,-0.20080298,-0.6653318,-0.5063523,-0.30582735,1.1752257,-0.46335712,0.023626527,0.23275608,-0.33588064,0.19851585,0.3194599,-0.1445522,-0.012645498,0.5529886,-0.15110162,-0.65340406,0.330663,-0.1977008,0.084128715,-0.6329227,0.45309448,0.64462346,-0.60524654,0.520236,0.3616519,-0.12432758,-0.46264783,-0.68016595,0.0316444,0.07998082,-0.2634363,0.44735715,0.36608526,-0.8374467,0.46709546,0.34168124,-0.14513026,-0.9543991,0.7175146,-0.0062193573,-0.49409485,-0.043573257,0.55061626,0.20937105,-0.070693545,-0.27611992,0.23782794,-0.40608212,0.40232623,0.038280766,-0.18946719,-0.03474586,-0.26467738,-0.37593773,-0.81444067,0.16529985,-0.6354923,-0.29227474,0.30534253,-0.079041354,0.058782134,0.5228193,0.3387543,0.41071928,-0.10098243,0.018735593,-0.4094727,-0.45179796,0.4595375,0.47155285,0.58708525,-0.62349415,0.6826981,0.094993465,-0.36610237,0.08285355,-0.0011371473,0.47716287,-0.13772124,0.63401663,0.27446225,-0.112865806,0.015067573,0.76522785,0.25777063,0.4563931,0.025511762,-0.038456842,0.038149346,0.13717079,0.5020166,-0.27494383,-0.81532127,0.20628984,-0.33012328,0.0055382303,0.5601179,0.009494926,0.16269475,-0.11936291,-0.33849752,-0.04282075,-0.0010365596,-0.19750232,-1.246848,0.36250302,0.3045836,1.0943075,0.5250783,0.040673006,0.01846253,0.8496143,-0.29302195,-0.028417692,0.33240503,0.063979074,-0.22914803,0.541265,-0.91126555,0.56627613,0.078921326,-0.05055231,0.06389579,-0.051458117,0.42410913,0.79168534,-0.21547057,-0.108680926,-0.15805756,-0.33550707,0.28890845,-0.4042687,0.14257605,-0.49052128,-0.24439223,0.8726804,0.575698,0.3188472,-0.25811523,0.1662835,-0.003386562,-0.25723782,0.24735884,0.114588894,0.048066746,-0.13569169,-0.51803035,0.072216325,0.4661555,-0.08197377,0.030482167,0.14569597,-0.13670526,0.391543,0.040418237,-0.021142036,-0.14234553,-0.8632006,0.09053004,-0.24092078,-0.350433,0.29875186,-0.037968498,0.21198839,0.3176055,0.0026882563,-0.17466597,0.31673595,0.021729177,0.55730134,0.014719139,-0.006025642,-0.24367958,0.28787157,-0.023545578,-0.16719688,0.21463831,-0.0634318,0.23102961,-0.62077665,0.4331747,-0.07064399,-0.53499234,0.17187603,-0.035697658,-0.07064516,0.57175344,-0.09311918,-0.09397164,0.041505467,-0.114243396,-0.14306176,-0.3621255,-0.07274213,0.14766796,0.07035775,-0.19729292,-0.3941517,0.019190183,-0.17273748,0.5121607,-0.030533478,0.49417457,0.17679645,0.051319867,-0.56264263,0.09202039,0.22744231,0.68031,-0.28856805,-0.10702872,-0.20207958,-0.27428532,-0.36358544,0.5130965,0.0075695417,0.3212644,0.052731026,0.097603254,0.77816564,-0.07291849,1.2768844,0.011915073,-0.33561432,0.07461143,0.56576777,-0.038342457,-0.25864306,-0.25250313,1.0124038,0.5263315,0.040681858,0.09583449,-0.41120687,0.07889414,0.14873473,-0.14984788,-0.118303336,0.13510005,-0.38372573,-0.075953774,0.14535423,0.29895115,0.2115082,-0.19963448,0.17882253,0.68126637,-0.13007341,0.17307079,-0.5931412,-0.40919027,0.390826,0.2349331,-0.2137479,0.04289932,-0.51052314,0.27720734,-0.6038322,0.22345708,-0.30316338,0.17422909,-0.28995946,-0.28037512,0.2564859,0.12949002,0.49223718,-0.24951144,-0.43715248,-0.17727064,0.3561237,0.3800098,0.04421547,0.57428384,-0.31800416,-0.010869493,0.10545873,0.31293663,0.6521382,-0.073328026,-0.16222993,0.12866066,-0.45703158,-0.74508214,0.544215,-0.41386577,0.15358488,0.22329189,-0.011604215,-0.37540996,0.17567928,0.18700503,-0.09520978,-0.020832727,-0.92225426,-0.05131994,0.30477703,-0.33135262,-0.004577182,-0.34980062,0.116042465,0.63483787,-0.13919967,-0.32816657,-0.13793826,0.2604795,-0.14755498,-0.56209475,0.0892168,-0.44424295,0.26135883,-0.17780845,-0.4560915,-0.23082662,0.036246758,-0.6063269,0.16951312,0.14207298,-0.28096363,0.12815751,-0.29245093,0.11214453,0.8342605,-0.30387908,0.14928927,-0.1888455,-0.52111083,-0.610653,-0.10508738,0.084987104,0.16458859,-0.02874249,-0.7656832,-0.23407543,-0.32794634,-0.3436929,-0.05370428,-0.47249314,0.39311504,0.14791656,0.46356666,-0.10077146,-1.0127312,0.35031286,0.018599981,-0.06963225,-0.44009387,0.44424388,0.08179615,0.7016174,0.03962819,0.16505136,-0.031358164,-0.46879444,-0.07151509,-0.067833595,-0.14404573,-0.5642708,-0.12608342 +493,0.51450217,-0.4394157,-0.37761635,-0.15012561,-0.4108265,0.058883984,-0.12671632,0.60278016,0.22898443,-0.5806503,-0.1748298,-0.13106689,0.0019435063,0.28406787,-0.17747894,-0.490166,-0.007862031,0.24689633,-0.47664583,0.6712477,-0.34325504,0.26076856,0.0348287,0.30510983,0.26327935,0.24096984,0.15377204,-0.048471898,-0.21184543,-0.10107516,-0.16077548,0.3216729,-0.42602658,0.33546287,-0.13129649,-0.20471361,0.14388643,-0.4011659,-0.18806866,-0.7240249,0.21831799,-0.71786594,0.39711303,0.066711515,-0.39734143,0.36214226,0.08657156,0.28894657,-0.2716765,0.0014729686,0.09158144,0.03784483,0.113993704,-0.15236689,-0.08608249,-0.47339272,-0.5792835,-0.03958689,-0.358381,-0.30504775,-0.30031672,0.14850122,-0.39188504,-0.02520074,-0.08377628,0.6138009,-0.5178393,0.100233406,0.24866715,-0.16493292,0.3213302,-0.62356,-0.14525318,-0.17710093,0.221596,-0.029401395,-0.17586958,0.33510745,0.30495262,0.32229927,-0.023339923,-0.20760679,-0.3688017,-0.06467153,0.28255185,0.38899305,-0.18195923,-0.40723103,-0.008990396,-0.011511371,0.20916128,0.21180859,0.25347507,-0.23261595,-0.18031764,0.030418772,-0.17258403,0.19686796,0.2806762,-0.23546425,-0.25130975,0.18650684,0.5575591,0.05377645,-0.18863939,-0.10338688,0.05319529,-0.5410229,-0.2622896,0.10142292,-0.33971858,0.47490036,-0.19796333,0.15907559,0.6911714,-0.22993621,0.0014298633,-0.030565152,0.14864218,-0.119818866,-0.33378765,-0.33164772,0.22260754,-0.4737396,0.012079585,-0.10772078,0.71114475,0.1253757,-0.5826591,0.21138194,-0.45822275,0.123172306,-0.14993227,0.3454042,0.5599738,0.4751796,0.3580061,0.62286305,-0.45719138,0.12381175,-0.07133427,-0.35302174,0.07804133,-0.26135045,-0.0621849,-0.53356063,0.044413857,-0.06761194,-0.13010791,-0.009547897,0.4184552,-0.5557638,0.011275047,0.12819508,0.78336114,-0.31296116,0.002960654,0.70699775,0.8193278,1.071048,0.06612349,1.0872217,0.23684858,-0.2792827,0.24350396,-0.2212893,-0.63647014,0.31872588,0.51398754,0.08691114,0.2823378,0.012685649,0.11452568,0.4268002,-0.2379596,0.17927364,-0.28566587,0.08133734,0.0293569,-0.31863552,-0.48738053,-0.35666752,-0.09984346,0.11141048,-0.18663085,0.2635428,-0.08451975,0.33030778,0.078437194,1.825329,-0.022392813,0.051737092,0.14636981,0.33464938,0.27296734,-0.20250969,-0.008961476,0.5684296,0.2912759,0.26771998,-0.56891525,0.15966411,-0.25505444,-0.54676664,-0.14367746,-0.3546793,0.03217999,-0.057143345,-0.5016639,-0.18397595,-0.12538359,-0.24246922,0.35006514,-2.6359115,-0.24969566,-0.28098664,0.25483721,-0.21819478,-0.3132183,0.017166961,-0.41681635,0.29024047,0.3651513,0.46209568,-0.58286893,0.2148005,0.42114815,-0.5823205,-0.050383724,-0.51296484,-0.2627843,-0.1720549,0.4014666,0.037724763,-0.020394623,-0.012593016,0.15800425,0.5351353,-0.15003252,0.26994675,0.2675277,0.31472713,0.028243814,0.5602941,0.07512971,0.39356464,-0.1905364,-0.22571626,0.3569373,-0.3741917,0.15896714,0.19378158,0.21910529,0.41695294,-0.43322092,-0.85730326,-0.7693228,-0.31039667,0.9974409,-0.15008616,-0.38338658,0.32412386,-0.27695617,-0.31879053,-0.10930998,0.2405304,-0.06433832,0.051781446,-0.8697221,0.14044039,-0.014078848,0.076762296,0.01325421,-0.23876299,-0.3882746,0.7961986,0.0009035021,0.50886667,0.38627958,0.13083223,-0.24710312,-0.3781613,-0.07313366,0.8932732,0.4950974,0.12248451,-0.2745929,-0.23981844,-0.34068918,0.03756319,0.060391698,0.36196744,0.7687806,-0.13861081,0.17437957,0.19026011,-0.025225462,0.109273896,-0.19788298,-0.28796163,0.02416107,0.098615885,0.42977673,0.46237725,-0.16317846,0.37588117,-0.10322266,0.46517193,-0.05785299,-0.49428165,0.47168815,0.9477996,-0.114693575,-0.32307476,0.57809484,0.6500872,-0.1852963,0.4297251,-0.4582606,-0.12810037,0.5766963,-0.27514562,-0.36755317,0.14001466,-0.41198906,0.19228579,-0.8826092,0.3410434,-0.3116568,-0.38369882,-0.48474476,-0.14792956,-3.0003169,0.2532333,-0.22966374,-0.372626,-0.1404463,-0.1200147,0.17609195,-0.7777301,-0.48375952,0.17434254,0.16269645,0.6836459,-0.008549045,-0.03231941,-0.1901587,-0.38627532,-0.14251216,0.15352555,-0.07391624,0.19019589,-0.10010338,-0.5761239,-0.04236804,-0.16542394,-0.3854165,0.117599815,-0.6835582,-0.5532621,-0.24991766,-0.56725556,-0.37137094,0.7021184,-0.05458394,-0.008904889,-0.047393546,0.02709626,-0.059093148,0.24542254,0.12657845,0.13282825,0.10054098,-0.093122415,0.0015109777,-0.28305182,0.27192,0.10600096,0.23404469,0.30906263,-0.1654539,0.19067585,0.5975564,0.5745152,-0.22257681,0.7656855,0.41349852,-0.124148294,0.2957762,-0.28315538,-0.2928117,-0.49751395,-0.41410655,0.01844336,-0.4170686,-0.45352063,0.043775134,-0.35192412,-0.64317095,0.6327739,-0.011273105,0.243785,-0.06439926,0.20353642,0.43162096,-0.31558037,-0.112318374,-0.11371808,-0.15715599,-0.52121305,-0.2913548,-0.75538605,-0.47865453,0.19623527,1.0827334,-0.2550724,-0.01445058,-0.013590792,-0.2154878,0.060397454,0.117225036,-0.06833062,0.20554361,0.38497278,-0.059617758,-0.6409999,0.5360558,0.09443759,-0.21863562,-0.35914046,0.18112344,0.6033334,-0.46488726,0.6153524,0.33969188,-0.014853289,-0.12873018,-0.6013917,-0.116277635,0.02693107,-0.17697728,0.5085231,0.27035642,-0.70439464,0.38552237,0.3085831,-0.47284904,-0.69788355,0.5237934,-0.14106151,-0.27734458,-0.065759495,0.35984498,0.15039998,-0.028662158,-0.23665795,0.3293237,-0.44351518,0.26445287,0.36489275,-0.03161947,0.16449186,-0.16000411,-0.07518034,-0.88932335,-0.035089523,-0.39319602,-0.32154825,0.34537965,0.10083298,-0.04725185,0.26293075,0.070765205,0.41718173,-0.3801624,0.10479267,-0.03489121,-0.24799635,0.44555855,0.4074707,0.41811842,-0.38794056,0.455936,0.0038498528,-0.035669334,-0.18566537,0.0337345,0.4504866,0.098785974,0.42702717,-0.19061524,-0.16329253,0.49601975,0.79946935,0.15892695,0.46141642,0.09640754,-0.27208817,0.27450886,0.09946765,0.18644702,0.0264249,-0.46368232,0.06694684,-0.1637163,0.06995263,0.48901778,0.09922795,0.18275593,0.001098223,-0.2622887,0.11942159,0.27722943,0.14264579,-1.1999959,0.24562171,0.2003403,0.7761741,0.5483485,0.09546644,-0.04127019,0.65805924,-0.31222796,0.088382535,0.37700784,-0.010706186,-0.5869038,0.6045048,-0.718072,0.3419427,-0.09813504,-0.10428536,0.0046618897,-0.13420421,0.54017365,0.7370821,-0.16615714,-0.0025347807,0.010544991,-0.4129222,0.31113875,-0.47930858,-0.07469328,-0.52424306,-0.38129738,0.5646982,0.5298802,0.34873214,-0.13421158,0.002711975,0.1434752,-0.18305583,0.24135737,0.10245929,0.16995195,0.11705602,-0.6670128,-0.16914034,0.40744817,-0.042200387,0.21844679,-0.09452155,-0.26875955,0.15605305,-0.18943341,-0.09922117,-0.0008189799,-0.709428,0.07904452,-0.25186032,-0.34784266,0.5222299,-0.07400407,0.09894849,0.18321991,0.084301874,-0.29621992,0.28059095,0.18403088,0.7532196,0.01219596,-0.057880335,-0.18587075,0.2221905,0.05882949,-0.15423003,0.046714634,-0.22529808,0.06566857,-0.68991655,0.46964335,0.10103734,-0.3182744,0.07739161,-0.19025037,-0.018186798,0.5704186,-0.16022463,-0.28413856,-0.35238016,-0.017950408,-0.14285871,-0.34376758,-0.05534992,0.3805801,0.07483011,0.14812388,-0.12590925,0.0853831,0.0067647584,0.47428775,0.031436183,0.47383085,0.2709019,-0.09755212,-0.4955034,-0.016059887,0.15795079,0.30614188,-0.0871561,-0.11977194,-0.22192529,-0.410052,-0.38310504,0.07787123,-0.11845904,0.38033873,0.14359672,-0.22952503,0.9416295,-0.11627372,1.3021328,0.007909581,-0.4611296,0.1313607,0.5658734,-0.07080194,-0.04991001,-0.30647314,0.88599443,0.55538476,-0.05381173,-0.12876324,-0.36814833,-0.0807578,0.16385582,-0.24603215,-0.13788721,-0.058419958,-0.6183747,-0.29607594,0.23141901,0.21292126,0.22913171,-0.09215565,0.037420474,0.3128252,0.014554638,0.27980718,-0.36562005,-0.2895254,0.212585,0.19323276,0.033779837,0.15631306,-0.5642903,0.39151302,-0.53948,0.27669156,-0.17526597,0.23184069,-0.24758646,-0.3161172,0.25274402,0.06428022,0.25437728,-0.34166652,-0.34398508,-0.17823824,0.5962768,0.07749504,0.17021239,0.580907,-0.32202056,0.20170566,0.11469978,0.4734745,0.9078936,-0.2859613,-0.107488334,0.37572068,-0.48364797,-0.7106856,0.34516162,-0.23140001,0.11898661,-0.037287265,-0.32276264,-0.58089584,0.3105905,0.25231972,0.02627831,-0.051745538,-0.4738366,-0.13591681,0.49145705,-0.46834853,-0.2867842,-0.24719727,0.31938314,0.48715663,-0.2951513,-0.5222243,0.004109338,0.19844712,-0.26779842,-0.3791399,-0.16778074,-0.256285,0.41904438,0.023115885,-0.31511003,-0.077754,0.014147047,-0.39879766,0.10310477,0.18442795,-0.31468093,0.11439511,-0.3863155,-0.108878985,0.9554932,-0.05303095,-0.010622915,-0.44938016,-0.3333888,-0.8333485,-0.2995353,0.6689798,0.0031455234,0.09076264,-0.47607118,-0.037416324,-0.043444812,-0.07909857,-0.12551057,-0.25977278,0.43809772,0.15316302,0.38378912,-0.079694346,-0.6919452,0.15919852,0.15811954,-0.031719197,-0.61314505,0.5278294,-0.26418033,0.8772219,0.07086868,0.081973076,0.27237183,-0.45608944,-0.021405365,-0.16365597,-0.33444098,-0.5409193,-0.08278483 +494,0.46343616,-0.41619137,-0.5334911,-0.04582523,-0.2059081,0.033180084,-0.41266504,0.30400503,0.21699607,-0.35076296,0.028170833,-0.027866667,0.00012880564,0.26644698,-0.15996227,-0.5095085,0.043964665,0.12509392,-0.6371346,0.61034,-0.2502394,0.002171417,-0.27317557,0.45502925,0.12047485,0.24100764,0.005003271,0.11039164,0.02973693,-0.24606864,0.034425173,0.108069815,-0.7397359,0.267102,-0.040187757,-0.3620628,-0.12381408,-0.46765187,-0.516337,-0.8173032,0.32585192,-0.8673286,0.622765,0.024660408,-0.3239994,0.13093962,0.17525877,0.44434473,-0.1088445,-0.012281497,0.2596068,-0.21885307,-0.057211816,-0.23729807,-0.053971227,-0.4887713,-0.6762538,-0.04310869,-0.4591874,-0.24275239,-0.35620484,0.31877723,-0.4398429,-0.012640317,-0.19730055,0.74860185,-0.50354177,0.2694193,0.20060356,-0.079644404,0.480902,-0.65115136,-0.098038085,0.00019278626,0.28665486,-0.11013257,-0.22500987,0.11879108,0.2536586,0.30564234,0.03226876,-0.1712749,-0.2378589,0.05898133,0.07219868,0.42105618,-0.1867422,-0.34144488,-0.14350563,-0.007769257,0.09257553,0.14042164,0.2617413,-0.27394092,-0.08378158,0.24835563,-0.17645437,0.62975496,0.5526455,-0.34797788,-0.1993726,0.32182837,0.64089185,0.14774446,-0.33639184,0.12300553,0.09134787,-0.50706685,-0.15421908,0.12348837,-0.16385192,0.4826397,-0.26966572,0.42535236,0.73472095,-0.17297788,-0.22587956,0.20226765,-0.01257513,-0.04969449,-0.34574106,-0.22001529,0.20437978,-0.47303525,0.29161656,-0.28565535,0.76458454,0.09755877,-0.7600867,0.34548306,-0.6159964,0.24995913,-0.06314022,0.42919055,0.7737654,0.4846519,0.41152176,0.73950815,-0.35510036,0.08029193,0.04106042,-0.3625066,0.1776809,-0.3319828,0.0670861,-0.5938218,-0.17261016,-0.21713807,-0.107873686,-0.0031729538,0.4318676,-0.51340675,-0.08076424,0.3118243,1.0577928,-0.15638064,-0.121298514,0.91375417,1.1084557,1.1843578,0.0892089,1.0188146,0.25975254,-0.23432474,0.14478534,-0.1075446,-0.75351554,0.28852403,0.32085472,0.37628773,0.19146578,0.15984027,-0.034022693,0.6289808,-0.47994757,0.1092942,-0.17998771,0.13045973,0.21592279,-0.4636273,-0.3201755,-0.048023224,-0.07370349,0.045530308,0.024218261,0.119648,-0.16886361,0.49031413,0.07408923,1.5420517,-0.15562695,0.0488784,0.10033467,0.58218235,0.22995172,-0.3333731,0.038370788,0.07618651,0.38531113,0.30980897,-0.51695865,0.30236182,-0.19945621,-0.43626007,-0.24387419,-0.27361688,-0.2947319,-0.17135215,-0.45676115,-0.28027868,-0.09075758,-0.20032358,0.31028742,-2.8569298,-0.21270423,-0.1711816,0.357546,-0.06439507,-0.17167287,0.15164796,-0.4980588,0.45185533,0.35440886,0.4672196,-0.64999574,0.6252162,0.53507763,-0.6124859,0.08668393,-0.76832837,-0.21745062,-0.18905018,0.565708,0.18669651,-0.11848272,0.01837599,0.31024578,0.49370492,0.15846312,0.08240223,0.286142,0.44780335,-0.25230154,0.5658722,0.09666124,0.49863645,-0.14775172,-0.2191227,0.2414648,-0.39615682,0.05750808,-0.11031673,0.022551244,0.5301773,-0.323053,-1.0910935,-0.8042343,0.10052028,0.9403901,0.0121413665,-0.6622489,0.24534297,-0.42801142,-0.33209822,-0.030325308,0.51125026,-0.09328166,0.06546557,-0.85539764,-0.029545298,-0.30219343,0.22889544,0.048025925,-0.3168564,-0.71415824,0.9148715,-0.13822562,0.50021124,0.36102676,0.19747885,-0.40646517,-0.51467556,0.0052678916,0.8438644,0.35884842,0.08570842,-0.39070264,-0.191845,-0.20005314,-0.10637534,0.0046396516,0.595277,0.46340445,-0.14469723,0.23290907,0.3800199,-0.18445623,0.014897303,-0.12915127,-0.4194934,-0.17601834,-0.15643303,0.5797371,0.8308666,-0.11502046,0.4189744,-0.22065772,0.27233252,-0.14103599,-0.4590231,0.507496,1.1508747,-0.15043141,-0.5122412,0.59201056,0.3127133,-0.27241215,0.3575655,-0.5057221,-0.17155762,0.2776836,-0.12712757,-0.5613349,0.11191123,-0.4916577,0.042040367,-0.70832115,0.45197168,-0.39742208,-0.79985094,-0.6242239,-0.30626038,-3.7250443,0.31722477,-0.3646467,-0.18854026,-0.13861422,-0.18335326,0.23685052,-0.57972413,-0.5623389,0.1517592,0.056946233,0.8317762,-0.14730941,0.12612684,-0.2759514,-0.19054453,-0.49926463,0.2731675,0.24268062,0.20975114,-0.022387,-0.32688817,0.024546495,-0.10774497,-0.48698592,-0.024422375,-0.65907955,-0.49145696,-0.04933967,-0.47558418,-0.28711233,0.66201574,-0.13429323,-0.023180187,-0.50078845,-0.034283906,-0.1759916,0.4326795,0.12481771,0.03984176,-0.023246577,-0.12552826,0.07115733,-0.2855219,0.16032003,-0.08490765,0.42682424,0.25967908,-0.114581384,0.17611535,0.57091933,0.5731153,-0.023536662,1.0453686,0.52916586,-0.091037594,0.1920998,-0.21585245,-0.34193027,-0.62824243,-0.26289684,0.23409784,-0.49046817,-0.44943354,0.18818368,-0.47702408,-0.5887503,0.54927933,-0.049188714,0.18364494,0.15643124,0.3006802,0.52399445,-0.098217845,-0.20092504,0.009714666,-0.1981089,-0.49450204,-0.15368499,-0.5700622,-0.74598056,0.036052655,0.97552615,-0.18456827,0.13098292,0.31998095,-0.225622,-0.031517368,0.35613278,-0.23402606,0.095436335,0.52758676,-0.23708938,-0.70537883,0.2705902,-0.36425602,-0.16134161,-0.76070195,0.33135107,0.67132264,-0.4453325,0.72823113,0.40398395,0.19927652,-0.40511957,-0.511401,-0.026091957,-0.104281835,-0.24410348,0.45683596,0.17841573,-0.9063821,0.53753746,0.3857272,-0.21468906,-0.6630584,0.5641543,-0.06408065,-0.33676553,-0.06633223,0.30406716,0.046921562,-0.16079198,-0.29485142,0.38692394,-0.43485495,0.38842908,0.061273098,-0.11793,0.04676796,-0.0911181,-0.113757074,-0.63063025,-0.1642934,-0.5350903,-0.33478472,0.2111485,0.024201414,0.15051363,0.37785196,0.052714605,0.41470793,-0.15559644,0.0460823,-0.23191452,-0.36410654,0.29780403,0.51603407,0.49144375,-0.56787986,0.5740214,0.13247068,-0.08901992,0.14992142,0.15409757,0.4681623,-0.06992119,0.71120566,0.008774404,-0.047442097,0.123664945,0.85743254,0.176068,0.80698806,0.06613154,-0.17726319,0.27740696,0.113764465,0.36563635,-0.013047864,-0.679547,0.30612722,-0.31991342,0.29017854,0.42456737,0.037046563,0.3144534,-0.091571845,-0.39088318,-0.025648003,0.30480728,-0.013437018,-1.5597771,0.37570855,0.3558724,0.94366795,0.40420008,0.034075454,0.02236695,0.9020378,-0.016504154,-0.0020265777,0.3221128,0.23180752,-0.29838952,0.61502457,-1.0258936,0.28256017,0.04933014,-0.024400821,-0.054602932,-0.13350268,0.36749783,0.71365595,-0.241943,0.013254997,-0.14137588,-0.31780127,0.25645083,-0.48209608,0.2808678,-0.27864686,-0.28470936,0.70484525,0.7218087,0.3818756,-0.19435465,0.08658904,0.02168403,-0.062185418,0.078652956,0.13524163,-0.07925492,0.0178267,-0.7957802,-0.17136814,0.47280505,-0.16043425,0.24749935,-0.087727375,-0.17487304,0.3340297,-0.156047,-0.041410007,-0.059842408,-0.65209967,0.09098617,-0.1466032,-0.44566515,0.64101785,-0.015374725,0.21766834,0.241051,0.06363401,-0.14174102,0.37998128,-0.13290058,0.6023764,0.19153188,0.030022025,-0.42776036,0.024472052,0.13026355,-0.28574437,-0.10429289,-0.33880785,0.31004056,-0.47380546,0.39789262,0.040940244,-0.6336801,0.3000668,0.00594868,0.011340615,0.6648161,-0.2605625,-0.25930616,0.2198899,-0.08640623,-0.14420389,-0.29339787,0.049055066,0.27614114,0.1806974,0.0016750097,-0.119725145,-0.115529954,-0.21279943,0.45676574,0.11065712,0.5935686,0.55450344,0.027138317,-0.29476595,-0.23618281,0.14007105,0.6890221,-0.10156027,-0.2837111,-0.24875307,-0.7428369,-0.41940007,0.31651744,0.07537297,0.41390204,0.09151485,-0.20438255,0.6703569,-0.104909,1.2073326,0.015194446,-0.40472162,0.20139123,0.42550936,0.1001557,-0.047634836,-0.42899668,0.77601355,0.6196199,-0.19320162,0.0007875909,-0.4179332,-0.06560879,0.05766691,-0.1701535,-0.10173776,0.018268669,-0.7687702,-0.03704625,0.20154835,0.29290217,0.33851555,-0.19065881,0.15502602,0.476935,-0.13721412,0.102933645,-0.55687696,-0.15851663,0.38869748,0.35556945,-0.12361789,-0.038651723,-0.60623497,0.25955942,-0.38248512,0.1269208,-0.3949809,0.23438637,-0.10834528,-0.3236339,0.28738096,-0.13041908,0.3681194,-0.26713228,-0.10938164,-0.1117953,0.47862196,0.4765062,0.1430274,0.72557735,-0.20691466,0.031551372,0.12282276,0.559274,0.85327554,-0.34989873,-0.0855879,0.2900679,-0.35976994,-0.63736075,0.38089052,-0.2369953,0.1807824,0.16849244,-0.18248408,-0.58252084,0.09914061,0.17218183,0.036076378,0.011727077,-0.68639994,-0.29265866,0.255412,-0.4730517,-0.10793165,-0.22243236,0.13122584,0.6011185,-0.2331355,-0.124781586,-0.06349374,0.39988616,-0.14337581,-0.51258576,-0.053846404,-0.34792122,0.4620259,0.011042863,-0.51804775,-0.20000468,-0.0039871335,-0.5784947,0.18955976,0.22588438,-0.34303942,0.10584915,-0.32121763,-0.2368396,0.8531156,-0.4380573,0.061003704,-0.61797374,-0.38553837,-0.75207233,-0.10894898,0.19123806,0.15330751,-0.007387212,-0.6811579,-0.2759236,-0.17854422,-0.12199986,0.044696715,-0.6079064,0.42457876,0.06278818,0.5599506,-0.07680101,-0.7627065,0.18496944,0.12975466,-0.16203557,-0.66860276,0.7988685,-0.14345448,0.7440899,0.025699401,0.36915568,0.08019576,-0.3411223,-0.0046224445,-0.23585035,-0.3356665,-0.86430097,-0.057143062 +495,0.40957752,0.11999353,-0.49313012,-0.08773901,-0.1660156,0.14940752,-0.22911574,0.2187241,0.016397187,-0.69589335,-0.11370385,-0.17495383,0.016849527,0.062205825,-0.19457848,-0.41425326,0.039078392,0.23286664,-0.6533104,0.5912842,-0.3265009,0.5976964,0.12796818,0.26238817,-0.14214122,0.255438,-0.026710358,-0.3586472,-0.1841687,-0.2086397,0.0019886494,0.03788557,-0.6373493,0.27938315,-0.15312119,-0.3253734,-0.028432326,-0.14915381,-0.34640327,-0.600811,0.013078188,-0.6644224,0.48389593,-0.119478345,-0.22977994,0.09962108,0.17074703,0.3239492,0.07614691,0.13462779,0.19933787,-0.104040794,-0.29151177,-0.33463043,-0.04483784,-0.7683415,-0.2808219,0.00028755408,-0.5312181,-0.15263358,-0.24836108,0.14341034,-0.2601735,-0.16437423,-0.16462053,0.44300368,-0.2262405,0.26468012,0.11462758,-0.00981637,0.25317544,-0.61284447,-0.0974704,-0.18278255,0.5289124,-0.28087106,-0.0213356,0.09088574,0.14404671,0.42540652,-0.06202782,0.047892597,-0.1875608,-0.1479154,0.36259347,0.47590885,-0.1340721,-0.43158183,0.06912942,-0.0022550907,0.15612169,0.006839288,0.053656302,-0.4099102,-0.045484312,-0.27216402,-0.12646171,0.24355534,0.38608938,-0.19955406,-0.098125644,0.4316652,0.548171,0.098296985,-0.16826873,-0.03554227,-0.008116399,-0.30366236,-0.11074125,0.19976155,0.021789687,0.48953348,0.04313067,0.21781012,0.5890776,-0.050903626,-0.079566516,-0.04565683,0.031743355,0.12685408,0.037872333,-0.13873081,0.034041185,-0.4575961,-0.1982709,-0.29115772,0.90496856,-0.052941877,-0.75291765,0.3193373,-0.46172443,-0.06378902,0.14004196,0.520972,0.5155723,0.59178346,-0.21492144,0.46915463,-0.3875735,0.030371334,-0.08748363,-0.31238633,-0.023894574,-0.09052177,-0.06509574,-0.30465874,-0.07490616,-0.03350439,-0.18198295,-0.08792215,0.45586538,-0.4176796,-0.14520612,0.100571476,0.78610146,-0.25578028,-0.028711604,0.6298484,0.94569725,0.5963103,0.22096321,1.3387206,0.21131994,-0.2264546,-0.10388042,-0.33031988,-0.4871142,0.22939841,0.13852061,-0.45389608,0.24669157,0.19730636,-0.044691775,0.35234,-0.4390345,-0.048372895,-0.33258182,0.39638895,-0.019987125,-0.0066766357,-0.22627221,-0.08574755,0.062152464,-0.030812768,0.25861782,0.1558648,-0.17601204,0.25870356,0.27441868,1.439314,-0.2606625,0.12677042,0.06257414,0.078750476,0.13284835,-0.118072405,-0.05356333,0.31448677,0.27308956,0.082048856,-0.439434,-0.0299823,-0.13302372,-0.5263086,-0.28509837,-0.07057647,-0.16627577,0.16979663,-0.5219182,-0.10968452,0.010548661,-0.3238518,0.2902655,-2.268442,-0.1506385,-0.18366721,0.4547577,-0.23120263,-0.34181184,-0.21160515,-0.27013534,0.4989118,0.2025013,0.44511694,-0.49863428,0.33381313,0.3016582,-0.23073734,-0.32500443,-0.46968696,0.085409455,0.05281176,0.092073336,-0.12713863,-0.105287276,-0.018091397,-0.11193427,0.24622543,-0.4124625,0.067857325,0.4795544,0.3106406,0.105141915,0.29208073,0.13528086,0.5762864,-0.19991668,-0.13603339,0.27687877,-0.29267806,0.16173863,0.009887912,0.2008769,0.25877914,-0.43768993,-0.59411716,-0.71129173,-0.51993877,1.1573576,-0.2110173,-0.40649912,0.062492903,0.033247363,-0.46679983,-0.107487746,0.5065573,-0.019510482,0.11948715,-0.90883887,-0.086227365,-0.11847741,0.5996647,-0.017031142,0.026136998,-0.50876176,0.6310698,-0.20653684,0.36299664,0.3647832,0.23770912,-0.24452119,-0.35105085,0.14252521,1.2969247,0.32742238,0.16253278,-0.13677499,-0.18466996,-0.43636194,0.08012222,0.0043390947,0.5534811,0.54167426,0.06703831,-0.09758448,0.16619399,-0.03362948,0.14736386,-0.16849576,-0.36757448,-0.15486588,-0.092182174,0.47871074,0.3316166,0.008846326,0.6621641,-0.22461207,0.2891728,-0.30124086,-0.39503106,0.5418387,0.82403433,-0.29095525,-0.24935041,0.43055186,0.33493638,-0.20489617,0.25190696,-0.4956496,-0.49898833,0.2544159,-0.113531485,-0.29980895,0.3898964,-0.23270825,0.33533213,-0.9609255,0.4259179,-0.4533015,-0.62894577,-0.58867127,0.015733182,-2.291132,0.17050026,-0.07745962,-0.17222096,-0.102336235,-0.04290631,0.2469976,-0.41330048,-0.3917862,0.20059372,0.026990457,0.42765215,0.059651084,0.27581272,-0.02991036,-0.36319256,0.025655495,0.32545638,0.1666316,0.08025478,-0.12347505,-0.33745012,-0.089693114,-0.1362686,-0.14684807,0.0025477686,-0.6468759,-0.3728858,-0.08087111,-0.44138837,-0.2932806,0.6352161,-0.7611085,0.14843376,-0.26682708,-0.058532655,-0.017396914,0.24286495,0.15221092,0.13380599,0.08860384,-0.12928274,-0.23506583,-0.39740777,0.3238755,0.16697834,0.08817304,0.36263254,-0.21543296,0.1880063,0.2758036,0.507845,0.045509692,0.69559276,0.48340598,-0.15898809,0.18791568,-0.292101,-0.15591455,-0.53587055,-0.29736456,0.008996538,-0.4390448,-0.39907947,-0.2303088,-0.37105316,-0.7108653,0.46163246,-0.029097144,-0.2464381,-0.037768316,0.41391554,0.35982534,-0.0750611,-0.08799702,-0.1079133,-0.09980756,-0.38351223,-0.4675021,-0.5468569,-0.25626564,-0.11509216,1.106819,-0.0734082,0.12338811,0.09171382,-0.123221226,0.09516704,0.1094218,0.021777224,0.02781251,0.59113634,-0.13116057,-0.5469657,0.41182545,-0.26574644,-0.21975306,-0.48237637,0.26554924,0.69354403,-0.72165984,0.5301344,0.44505718,0.008087103,-0.24236782,-0.38746077,-0.14800511,0.08460774,-0.3834171,0.11534856,0.021282554,-0.5903816,0.27515408,0.2303257,-0.1088957,-0.7586469,0.5043569,0.08967268,-0.45380083,0.10898081,0.36243448,-0.13321361,-0.08839529,-0.39206403,0.027470836,-0.33982736,0.29615778,0.14151205,-0.18173543,0.18132128,-0.27716222,-0.15191567,-0.8400777,0.028307596,-0.24984476,-0.5026743,0.21557891,0.22841308,0.02822942,0.29751995,0.050765276,0.4269352,-0.33539537,0.031464554,-0.28213686,-0.19209497,0.32295623,0.24987066,0.2814909,-0.41836128,0.578762,-0.086830415,-0.17739883,-0.30491278,0.37385184,0.54668295,0.11775773,0.2739927,0.066980325,-0.09870706,0.235322,0.7200841,0.14240238,0.59355056,0.100829355,-0.1973373,0.115800515,-0.046813082,-0.017971788,-0.054226775,-0.4437438,-0.16694845,-0.11453598,0.15641782,0.38291264,0.052624997,0.38750392,-0.23262176,-0.4496438,0.05992181,0.31570715,0.15993772,-1.1349107,0.43548864,0.11151294,0.6950946,0.47197503,0.09095604,0.094951294,0.5092766,-0.31609562,0.2330222,0.032284375,-0.24736731,-0.1312262,0.41250664,-0.6289595,0.12995283,-0.09525219,-0.09593914,0.17667441,-0.21118914,0.14648175,0.93737113,0.0072542257,0.09745385,-0.0056567276,-0.20672889,-0.0884498,-0.26107213,0.27026865,-0.4791929,-0.3793933,0.51778436,0.38847706,0.34643242,-0.37193745,0.069802605,0.046257257,-0.26040486,0.13352789,0.109210625,0.16199313,0.14842346,-0.5720435,-0.1496804,0.62444484,-0.19373807,0.026198464,0.25152496,-0.21701853,0.3389376,-0.0043151462,0.1455971,-0.011103911,-0.5638166,-0.0022169563,-0.63300985,-0.19878879,0.2774575,-0.20296879,0.22370307,0.17043246,0.06874932,-0.25994274,0.57638836,0.33816057,0.5763914,0.26000306,-0.1833564,-0.22096054,0.27675882,0.21237054,-0.17027818,-0.007573511,-0.13823418,0.24681881,-0.6937651,0.22111544,-0.01020733,-0.055535905,0.13914415,-0.14324816,0.02633184,0.43324742,-0.06975906,0.0067073107,0.4011948,0.10608958,-0.10607404,0.041811705,-0.1593122,0.02502018,0.36632252,0.027794357,-0.031233212,-0.045871537,-0.2936835,0.23575775,0.12685128,0.4694076,0.55286694,0.21932428,-0.3724579,0.04058264,0.16624393,0.44612646,0.031737573,0.04267056,-0.1366461,-0.4457148,-0.3138546,0.26840416,-0.12821104,0.043136287,0.3245361,-0.28114226,0.81307095,0.12356249,0.9173684,0.0676653,-0.1550635,0.078044124,0.37283617,0.010724626,0.08863907,-0.4530097,1.0955489,0.63781846,0.08425275,0.15893129,-0.11544687,-0.17704798,0.09683372,-0.18702756,-0.19328655,0.0075439704,-0.6225219,-0.6263286,0.08448601,0.36351246,-0.15897797,0.045558177,-0.004666818,0.15109052,0.08268625,0.2675198,-0.7323845,-0.03579545,0.205961,0.23000588,0.061386254,0.28169844,-0.4055255,0.52104527,-0.6713843,0.010144889,-0.26484132,0.09270166,0.0411448,-0.23176332,0.06724241,0.12846586,0.33140805,-0.47436237,-0.20645568,-0.25007114,0.44688532,0.0041702176,0.09093958,0.6852023,-0.10164292,0.3093283,0.036131937,0.51415783,0.95370305,-0.23984215,-0.007126727,0.43273848,-0.4109383,-0.40789843,0.10472744,-0.38105163,0.2053765,-0.19998685,-0.28972858,-0.38867265,0.35127494,0.11332048,-0.14216657,-0.11750934,-0.64490193,0.0069175875,0.40340844,-0.26910594,-0.1616981,0.013055878,0.18679364,0.44868046,-0.1491396,-0.31419322,0.03699497,0.30119702,-0.3452697,-0.52542835,-0.15645969,-0.46720925,0.3221007,0.24855348,-0.30247977,-0.3073859,0.13683169,-0.38339496,-0.013086421,0.25626707,-0.25331825,-0.11349618,-0.24937005,-0.14910464,0.63229626,-0.016712418,-0.0748743,-0.40190262,-0.3467553,-0.6353832,-0.34084892,0.35708088,0.33373094,0.017665947,-0.65521014,-0.1096593,-0.2522871,-0.012593431,-0.13435967,-0.3657577,0.2999141,0.30575958,0.46496367,-0.1637856,-0.9967105,0.0997573,0.14797081,-0.24922517,-0.62488264,0.43071842,0.046997003,0.8286425,0.008023896,-0.006981741,0.47023895,-0.77033824,-0.0227438,-0.10196392,0.01808829,-0.7547907,0.08569453 +496,0.4260507,-0.041456725,-0.57330424,-0.2416503,-0.31320113,0.16769218,-0.19609343,0.18106298,0.13703378,-0.45384318,0.0017665704,-0.21759002,-0.025797209,0.32230815,-0.17708327,-0.72591287,0.13467021,0.0061785253,-0.5420479,0.30295345,-0.6630065,0.48324487,0.1730757,0.24568774,-0.047355246,0.35019392,0.28674078,-0.25544426,-0.1414086,0.019312883,-0.12425909,0.1569486,-0.7356097,0.14125894,0.018959641,-0.32273108,-0.0008977016,-0.23604779,-0.307885,-0.59959817,0.45597032,-0.7535713,0.46501198,-0.1340874,-0.3554589,0.16910018,0.06546009,0.29539862,-0.38109028,0.24689461,0.2594168,-0.086204566,-0.048384834,-0.067582436,-0.2622359,-0.60133857,-0.52892435,0.010396512,-0.5815715,-0.2360063,-0.31796482,0.17645188,-0.31688184,0.010985064,-0.21507107,0.33281243,-0.43673864,0.03725346,0.16184555,-0.114866875,0.23731384,-0.48175696,-0.1327474,-0.07752385,0.29368958,-0.13112608,-0.117987424,0.24477428,0.33107367,0.5439813,0.05747135,-0.1662654,-0.24056283,-0.17266493,0.19129829,0.53176206,-0.04300858,-0.29053155,-0.2880593,-0.12522583,0.029031456,0.21845552,0.06240581,-0.5766298,-0.013478746,0.14009279,-0.24189289,0.3908036,0.4782076,-0.48234737,-0.2346391,0.4256676,0.3700802,0.116852984,-0.14483516,0.29996485,-0.07708069,-0.6045606,-0.21645936,0.20782763,-0.08397301,0.5800007,-0.20554574,0.2121243,0.7957056,-0.13162464,0.078204624,-0.23360306,-0.24338265,-0.08227086,-0.1859596,-0.0064813453,0.13373835,-0.5107894,-0.022922348,-0.11848413,0.6765725,0.1777051,-0.74761045,0.41901118,-0.473689,0.01599839,-0.18269673,0.5875699,0.72766346,0.23120533,-0.0032277545,0.8247843,-0.65174663,-0.0013365905,-0.055017337,-0.55222255,0.17912436,-0.05262318,-0.033997003,-0.41375324,0.0011123011,0.19308046,0.09119236,-0.15103714,0.30023772,-0.38154152,0.06584989,-0.101963416,0.5656914,-0.51589495,-0.08358307,0.70466894,0.93820226,0.89442724,0.26276892,1.4216658,0.42328778,-0.15274204,0.20638159,-0.29092553,-0.52444977,0.13866693,0.29855412,0.13614163,0.24921721,0.14916325,0.08864615,0.32656005,-0.11687945,0.06780216,-0.05321157,0.23145603,-0.05424579,-0.17291114,-0.3546139,-0.1749223,0.1631808,0.0942302,-0.00086769264,0.110730365,-0.07789004,0.31636333,0.21879432,1.3762795,0.04159168,0.20756012,-0.02273035,0.2978897,0.21879171,-0.1373148,-0.10923188,0.34217697,0.28667516,0.007970643,-0.60958415,-0.024692647,-0.23538907,-0.46525815,-0.15139347,-0.35108584,-0.11632361,-0.15620016,-0.58988065,-0.08702615,0.1884466,-0.26338878,0.60235536,-2.5126905,-0.2872066,-0.2444885,0.23230022,-0.3045491,-0.30871376,-0.26542625,-0.49109048,0.33880728,0.46991724,0.34536391,-0.67147917,0.40334728,0.34200498,-0.12593421,-0.18836823,-0.6176599,-0.046559326,-0.0720977,0.33602676,-0.17696005,-0.10517728,-0.17257455,0.19691268,0.58153224,-0.121819325,0.054937758,-0.04055547,0.5046529,0.18958613,0.5877725,0.19550864,0.5742586,-0.23986258,-0.0040692864,0.3247896,-0.28191903,0.35523808,0.034908675,0.2712956,0.28698498,-0.42339668,-0.7539161,-0.6444075,-0.5209481,1.1312039,-0.38193005,-0.30122143,0.26143792,0.12088397,-0.19171911,0.0754156,0.35185447,0.044007346,0.074268706,-0.7406698,0.052376118,-0.12886047,0.11556726,-0.09724119,0.14255136,-0.28382534,0.67653006,-0.14048252,0.44832295,0.4404712,0.14394946,-0.0074288687,-0.5201291,0.029718745,0.9160059,0.34660515,0.09921103,-0.17751905,-0.18659058,-0.116777726,-0.23079745,0.16938387,0.4509724,0.746144,0.14421508,0.118416555,0.23800442,-0.07412307,0.11960276,-0.041490827,-0.26755682,0.05649643,-0.019839263,0.49990425,0.4775711,-0.3004927,0.40445417,-0.15791057,0.02969169,-0.23049614,-0.49824747,0.5841517,0.8621031,-0.17751579,-0.1526309,0.40965033,0.45110422,-0.39290848,0.40979636,-0.55596274,-0.2257886,0.6999373,-0.13433628,-0.33755988,0.08151173,-0.3120584,0.013600239,-1.0323287,0.34016842,-0.10856249,-0.409393,-0.41542754,-0.34969458,-4.389174,0.19443472,-0.2662714,-0.06757997,-0.13485391,-0.09176891,0.42584118,-0.5757305,-0.52625185,0.14487596,-0.09407184,0.45977706,0.02969556,0.25653225,-0.3719373,0.039164003,-0.17368388,0.23828726,0.045060694,0.1877448,-0.004050636,-0.40154073,0.15344462,-0.3298525,-0.5120347,-0.0048387805,-0.49545118,-0.60669845,-0.16421948,-0.43540546,-0.25449896,0.7973221,-0.49280944,-0.046071984,-0.1932977,-0.070183605,-0.39026827,0.493025,0.15549608,0.16151592,0.08764076,0.11984439,-0.2662701,-0.41061285,0.10419414,0.11869314,0.18012573,0.37139443,-0.21686259,0.1003991,0.4518965,0.5667928,0.021673024,0.62257695,0.11553285,-0.09339795,0.45376363,-0.3774943,-0.14032741,-0.7970993,-0.58032584,-0.4317385,-0.37714043,-0.72344244,-0.25961643,-0.32019052,-0.6930588,0.4172084,0.04666374,0.17583065,-0.1406435,0.13732506,0.24478808,-0.11363016,0.10373313,-0.1111063,-0.1540301,-0.52088714,-0.52449167,-0.61337173,-0.64965326,0.20800617,0.9400947,-0.068108864,-0.26268145,-0.00056989194,-0.27011248,0.012023994,-0.007306075,0.29198435,0.1757852,0.30857712,-0.14737895,-0.7113407,0.59444034,-0.18152998,-0.12790585,-0.5567494,-0.1807567,0.83793217,-0.60300606,0.5151582,0.45566064,0.25856888,0.2786433,-0.56340444,-0.33000082,0.08990244,-0.35037887,0.5935021,0.061965328,-0.5869939,0.50400364,0.28888848,-0.07437956,-0.5983354,0.70820206,0.078223705,-0.17251012,0.1793667,0.3773742,0.05947916,-0.10515296,-0.19270252,0.2962204,-0.6337755,0.23755787,0.44433117,0.078158885,0.52905285,0.009628359,-0.19615754,-0.6312147,-0.27077582,-0.3984486,-0.14443718,-0.04514854,-0.044935085,0.13769743,0.079850316,0.076608226,0.43296665,-0.44077697,0.23778777,-0.0349999,-0.11104055,0.17848912,0.5098152,0.2765442,-0.5091335,0.61410695,0.1092033,0.12787305,-0.10165558,0.08139895,0.47126517,0.38931766,0.32216308,-0.10376118,-0.15385208,0.11808273,0.7869704,0.341024,0.49576625,0.31365407,-0.30107126,0.34818122,0.26754457,0.2421952,0.06313331,-0.1836128,-0.072151676,0.017230935,0.20488717,0.35460442,0.123448804,0.34721455,-0.14326088,-0.046367295,0.1846247,0.22929786,-0.09777414,-0.9206468,0.3287646,0.30349013,0.49715182,0.58207417,-0.06377684,0.22208364,0.27470973,-0.3450295,0.10734818,0.34152743,0.02637427,-0.5648502,0.492406,-0.49852848,0.4060406,-0.34346077,-0.09362197,0.13707685,0.22748218,0.27158463,0.878912,0.07349127,0.20128404,0.12911256,-0.2414151,0.18022276,-0.3208228,0.068411775,-0.31157053,-0.13152732,0.621413,0.47892615,0.21963838,-0.28288367,-0.0751801,0.0115781985,-0.035841055,-0.02219599,-0.059721943,0.04660797,-0.035336114,-0.6682852,-0.4585522,0.5452604,0.006535061,0.029895313,0.13732593,-0.48070225,0.34666,-0.1961594,0.076739505,-0.036853734,-0.6701098,-0.058627892,-0.23477596,-0.48220712,0.2656652,-0.27452666,0.34083155,0.109840594,0.006385394,-0.3136595,0.10133372,0.12376644,0.7541223,-0.04470478,-0.22178572,-0.41152763,-0.12625211,0.5089019,-0.34954742,-0.17381331,-0.30586892,0.10661181,-0.46614513,0.33438358,-0.059254117,-0.058231276,0.07409743,-0.12812495,-0.011560345,0.43342283,-0.29820105,-0.10683085,0.21965216,0.0690607,-0.20388646,-0.020467173,-0.32373917,0.25798622,0.008836976,0.019799419,0.06094823,-0.052609634,-0.1317051,0.34384248,0.2418812,0.21376519,0.35426006,-0.055689495,-0.37276125,-0.12752435,0.027770517,0.3475291,0.071630575,-0.044812597,-0.12209376,-0.41415194,-0.25611743,0.34851483,-0.1403029,0.07074283,0.115758575,-0.42110613,0.63908696,0.14902648,1.1201528,0.15606856,-0.3779395,0.086231455,0.38689807,0.01554087,0.10874043,-0.35835248,0.92182696,0.70270467,-0.20342067,-0.28211066,-0.2790842,-0.27059403,0.1858035,-0.36377433,-0.23813592,-0.0694303,-0.6645744,-0.15208088,0.11750902,0.18753293,0.0057435534,0.092028625,-0.097098134,0.008972061,0.12656517,0.5603694,-0.65790784,-0.20419003,0.30605787,0.2762751,0.061420243,0.11290951,-0.23522994,0.4968618,-0.5844204,0.1212689,-0.4988243,0.09149123,-0.15528414,-0.1994429,0.14003812,0.06933274,0.29857475,-0.1305348,-0.36116028,-0.32710397,0.62028044,0.13004914,0.32014477,0.7553169,-0.21481527,-0.0070501724,0.0751962,0.5422491,1.2426059,-0.12069538,0.041498695,0.44873014,-0.39638695,-0.557943,0.14902149,-0.46525446,0.15981577,-0.19185804,-0.36623254,-0.3263475,0.3332563,0.1288301,-0.0050262213,0.11822633,-0.5171491,-0.30509266,0.5290843,-0.21043536,-0.38300574,-0.19316076,0.43420035,0.81521255,-0.5827686,-0.21522847,0.015696477,0.2751899,-0.27452743,-0.6045921,0.114308454,-0.2576196,0.4751105,0.18653539,-0.23896506,0.081379585,0.3081492,-0.28220752,0.20599073,0.44591448,-0.30017498,0.08806753,-0.3675541,-0.20242685,0.9789877,0.08075064,0.08367419,-0.7365542,-0.4814342,-0.9995377,-0.37939575,0.3524249,0.21287781,0.0186713,-0.36968583,0.04270952,-0.04074514,0.04208542,0.09797328,-0.49883178,0.44904894,0.115536585,0.45145407,0.02384944,-0.794624,-0.16266823,0.21865317,-0.26878262,-0.45658287,0.6429067,-0.2168968,0.62854886,0.15819179,0.06840715,0.11454192,-0.6022984,0.34847978,-0.4304603,-0.12515752,-0.79392934,0.07304946 +497,0.44793394,-0.1494282,-0.46540242,-0.07423659,-0.16244462,0.21318494,-0.12557997,0.54064995,0.11332112,-0.4733925,-0.045416966,-0.10939525,-0.09131634,0.35143444,-0.12198211,-0.45723686,0.008526276,0.16327527,-0.6528274,0.51666814,-0.38718292,0.25523174,0.026681887,0.36292073,0.20546368,0.34626237,0.07131039,-0.21754017,-0.3344808,-0.0625394,-0.16578004,0.31314442,-0.4255001,0.06341316,-0.17611067,-0.21418813,-0.018207554,-0.4034848,-0.35136673,-0.6621596,0.11067505,-0.7758629,0.42992118,-0.077997066,-0.22498429,0.2926533,0.031320684,0.38103485,-0.26397842,0.054876726,0.16343725,-0.17816448,-0.024718424,-0.20774749,-0.21802972,-0.3901824,-0.41303462,0.043182407,-0.38444918,-0.22532117,-0.1902197,0.09069182,-0.28966913,-0.06038448,-0.14212401,0.2802012,-0.45422623,0.046404764,0.12898536,-0.09606999,0.08101102,-0.55932665,-0.08171847,-0.1608552,0.19179758,-0.15213734,-0.14744452,0.38414422,0.27070072,0.452445,-0.055614218,-0.074212365,-0.30787024,-0.068962544,0.12815148,0.45198178,-0.22682257,-0.48143286,-0.005244171,0.062261973,0.260841,-0.0040944815,0.11186896,-0.15881695,-0.13171272,0.017953781,-0.1989128,0.2045925,0.528377,-0.33113953,-0.34321055,0.4258009,0.43469024,0.111404076,-0.18737103,-0.050935812,-0.061911106,-0.42046702,-0.13957153,0.18259275,-0.09167723,0.34118828,-0.13526046,0.13949282,0.6285074,-0.20762923,0.076780915,0.02099533,0.025804698,-0.006549085,-0.098751694,-0.15781105,0.1077195,-0.22466092,0.044657994,-0.19349141,0.6270752,0.32323268,-0.6388776,0.36249495,-0.47644126,0.15803878,0.008791033,0.5046344,0.56324506,0.53813696,0.18784492,0.6256115,-0.32936192,0.16501561,-0.10396369,-0.27974415,0.115373924,-0.2616597,-0.034806896,-0.48188636,0.11731933,0.049475525,-0.19383638,0.077845275,0.3137089,-0.6340639,-0.05062917,0.08863096,0.83337736,-0.3213895,-0.1316674,0.6859959,0.8356136,0.73635244,-0.017780349,1.1255234,0.3196868,-0.3256797,0.26519865,-0.51095897,-0.5949452,0.24189793,0.24456558,-0.32598433,0.33713534,0.07163411,-0.1641987,0.25470352,-0.26301754,0.061703738,-0.27396798,0.038706716,0.10392377,-0.08391613,-0.25159004,-0.297865,-0.14546038,-0.02082655,0.17950882,0.26446527,-0.3153355,0.38318425,0.012599798,2.0231104,-0.064529754,0.014081001,0.026972791,0.47394493,0.14438544,-0.060811576,0.006604426,0.41874236,0.3399437,0.04494628,-0.4600637,0.13751984,-0.24800093,-0.57717466,-0.06241122,-0.40390444,-0.06779573,-0.026290867,-0.41556612,-0.14280383,-0.020559479,-0.23883645,0.40592256,-2.5994017,-0.14200792,-0.053549707,0.37782282,-0.27196306,-0.3379832,-0.32502288,-0.40768752,0.28656757,0.2917132,0.49574515,-0.62464803,0.40227303,0.22556248,-0.48342323,-0.13429631,-0.46307507,-0.058862742,0.0019214854,0.3398506,-0.06982119,0.057821717,0.18500814,-0.03884411,0.4564825,-0.14308444,0.044766538,0.28988335,0.38251796,0.17844823,0.3199956,0.0099327145,0.61292034,-0.28529286,-0.23913841,0.2955352,-0.39112988,0.23990479,0.049686972,0.12085522,0.32982904,-0.41571656,-0.8549779,-0.60741043,-0.061788775,1.2350107,-0.19472894,-0.27624562,0.18987083,-0.2007484,-0.2358654,-0.107364364,0.35347316,-0.08007469,-0.120114885,-0.78006774,0.0526217,-0.09517358,0.24356855,0.007596349,0.06941745,-0.3381768,0.6446506,-0.16913508,0.51677907,0.19039173,0.14096598,-0.047950193,-0.40234578,0.118477166,0.9414622,0.32535997,0.11664764,-0.110787325,-0.3453853,-0.2904678,-0.045902666,0.105688654,0.40039802,0.58223987,0.04059905,0.08763488,0.31150082,-0.060285266,0.046853367,-0.21857318,-0.27414328,-0.0871411,0.057619408,0.52995425,0.4200761,-0.27327392,0.51304454,-0.09021075,0.3573962,-0.046317108,-0.43304673,0.508943,1.037287,-0.2635072,-0.17474388,0.365402,0.4357003,-0.3567566,0.3538766,-0.5760376,-0.32995728,0.4408996,-0.22456595,-0.24339135,0.33265412,-0.28608397,0.16027416,-0.8623396,0.369879,-0.18594551,-0.36978403,-0.61187696,-0.00962466,-3.0172203,0.06532308,-0.17153782,-0.29862842,-0.06112643,-0.051836945,0.101112716,-0.6147979,-0.3001852,0.08850803,0.1307684,0.6510409,-0.032118745,0.034257684,-0.28884166,-0.3215524,-0.26933584,0.14051482,0.17267634,0.42439717,-0.09836896,-0.46213293,0.000537129,-0.20187327,-0.3054634,0.10807266,-0.62637836,-0.41290793,-0.19992292,-0.46739808,-0.24267124,0.62997866,-0.2918853,0.009428315,-0.19411844,-0.007451734,-0.13639925,0.19218731,0.07929872,0.12160462,0.10966602,-0.14686637,0.029920638,-0.2662778,0.25374737,0.10728369,0.32096684,0.49887815,-0.072340816,0.09803122,0.4777214,0.59125865,-0.13178603,0.76103836,0.39557457,-0.1574145,0.33246443,-0.38462642,-0.15343136,-0.48338076,-0.3150905,-0.0076148547,-0.3897082,-0.47988117,-0.054825854,-0.35734576,-0.7585861,0.42189723,-0.13177997,0.026724128,-0.050087158,0.3255669,0.5788189,-0.07821286,0.0448592,-0.2121205,-0.019773953,-0.47094333,-0.33891964,-0.5861697,-0.45328188,0.18566427,1.1690663,-0.22068843,-0.057301104,-0.0364038,-0.23399965,-0.044594914,0.04999838,0.088576026,0.15960406,0.4191388,-0.3196649,-0.59734625,0.41270345,-0.22823967,-0.2105391,-0.48157126,0.22386289,0.6013329,-0.6376129,0.5396365,0.28524572,0.067419276,-0.06496304,-0.389851,-0.17729509,-0.049528927,-0.17337053,0.16719571,0.08807731,-0.60439575,0.40496644,0.3211966,-0.362072,-0.61581844,0.3866287,-0.041306537,-0.2771032,0.1029961,0.31987846,0.064853914,-0.058474038,-0.20921737,0.21668178,-0.41459802,0.27534795,0.2433744,-0.013445002,0.14688851,-0.1079545,-0.21519151,-0.6846241,0.12615427,-0.4280077,-0.3155024,0.26852873,0.1816003,0.25763714,0.0635826,0.048281994,0.38463345,-0.35172972,0.07612125,-0.064413235,-0.15996605,0.35820866,0.26613846,0.45448226,-0.53341407,0.5138694,-0.026852548,-0.21912098,0.045564614,-0.032699957,0.44572854,0.10878402,0.28425628,0.123835295,-0.27729496,0.35419926,0.74633306,0.2705765,0.528759,0.03537709,-0.30927086,0.30362582,0.10894987,0.10798758,0.038903616,-0.39140317,-0.044966474,0.071087584,0.14843139,0.39359525,0.10560279,0.37529022,-0.053635687,-0.19788165,0.031440966,0.16658486,-0.003787139,-1.0937774,0.34716478,0.16907942,0.76791465,0.30655527,-0.033484213,0.080851495,0.6582885,-0.22926442,0.119170144,0.23573625,-0.20261565,-0.62404037,0.42637858,-0.63758934,0.37919766,-0.015165462,0.04369452,-0.038658984,-0.028167684,0.33580488,0.7907121,-0.16634586,0.071699485,-0.0038514822,-0.26789448,0.04345793,-0.25405464,0.084071465,-0.5574502,-0.34248567,0.65978366,0.3797093,0.41852602,-0.14156422,0.03649678,0.05208122,-0.112468876,0.086552665,0.12463039,0.246678,0.008620973,-0.5677821,-0.20872939,0.5369245,-0.34343162,0.11430424,0.19928703,-0.32542923,0.2967151,-0.08833428,0.047900718,-0.12343707,-0.50195843,-0.019148178,-0.2547135,-0.36814034,0.29710722,-0.08132526,0.3148736,0.22343287,-0.029814979,-0.33247325,0.32815132,0.15136899,0.716302,-0.12701824,-0.3114965,-0.34377167,0.24557434,0.14491381,-0.30235344,-0.017331332,-0.14574051,0.09706193,-0.5011579,0.30541128,-0.028131071,-0.33758226,0.04960446,-0.19184792,-0.07957764,0.45618045,-0.12037799,-0.13199502,-0.1136154,-0.09417871,-0.32941073,-0.049708337,-0.13789979,0.22777021,0.21401526,-0.06451526,-0.10810919,-0.027232265,0.016480096,0.4323747,0.022757228,0.29140425,0.4420438,0.21139699,-0.20857659,-0.121846676,0.17467903,0.47002557,0.052882224,-0.0076241563,-0.3077058,-0.44358972,-0.3656969,0.17448285,-0.23223737,0.34797317,0.3081173,-0.4758468,0.71638834,-0.03497885,1.1674553,-0.01819394,-0.3151746,0.10596991,0.46938178,0.16033217,0.07764114,-0.33698916,0.9003211,0.52620494,0.051372312,-0.12602346,-0.35183096,-0.21068855,0.17954223,-0.19981611,-0.18124926,-9.8691264e-05,-0.5729617,-0.4106652,0.27722034,0.115467094,0.29016325,-0.053404324,0.116992906,0.23698534,0.10787417,0.13768283,-0.3773988,-0.34248534,0.2997682,0.16084455,-0.014719276,0.08996049,-0.40377885,0.34221253,-0.47733092,-0.0148239,-0.112540945,0.11340155,-0.045732904,-0.18728681,0.17403592,0.016805867,0.385646,-0.3995097,-0.28948787,-0.27783304,0.5175724,0.04106185,0.21129663,0.5537427,-0.24938262,-0.0026661789,0.11864993,0.50874835,0.96724373,-0.23379768,0.09379514,0.54973197,-0.27878258,-0.61383706,0.32627404,-0.19323914,0.11123926,-0.14630347,-0.32028997,-0.49381396,0.37172282,0.23167005,0.056491986,-0.03185257,-0.47981766,-0.14614141,0.39913845,-0.38303027,-0.2648517,-0.38648695,0.24063416,0.7094922,-0.36743748,-0.38337868,0.19805478,0.17532493,-0.23610777,-0.47872868,-0.16915046,-0.29980427,0.32349056,0.064778425,-0.17355537,-0.11166602,0.0077640363,-0.32842818,0.24520645,0.20167753,-0.38782835,0.08880678,-0.2863594,-0.014640967,0.84939957,-0.14697675,0.10566608,-0.5623397,-0.42037264,-0.75113386,-0.5257456,0.40822175,0.12607253,-0.060002193,-0.68243104,0.027512213,-0.028865432,-0.39794403,-0.06512493,-0.33839867,0.401029,0.08608997,0.14964488,-0.11009507,-0.74088115,0.22532184,0.041870333,-0.122671545,-0.5397228,0.4428882,-0.036583643,0.91306955,0.14571564,0.03336792,0.33487567,-0.37243515,-0.1775429,-0.2670408,-0.103786334,-0.6428684,0.03357805 +498,0.5318661,-0.24511266,-0.74447155,-0.111088865,-0.114138074,0.03133242,-0.35242602,0.326442,-0.020824768,-0.69648623,0.030616414,0.05486759,-0.02831491,0.21328668,-0.25868243,-0.71011686,0.08790558,0.083713524,-0.3907056,0.2758788,-0.5817414,0.11341102,-0.018735908,0.2564222,-0.19205818,0.14806326,0.35481453,0.044020113,0.004517157,-0.31082743,0.38519028,0.099469356,-0.6074958,0.44311878,0.1086227,-0.40637082,-0.071558446,-0.16507897,-0.40071356,-0.5559744,0.17691278,-1.0662344,0.63358325,0.13875502,-0.2989131,0.15332995,-0.121254034,0.16212767,-0.2489802,0.21980014,0.14391202,-0.2964473,-0.23891196,-0.38590917,0.07301721,-0.5697054,-0.47504416,0.12710327,-0.66589046,-0.121523835,-0.15616517,0.34050772,-0.36039734,0.14634328,-0.30971444,0.37054855,-0.38236627,-0.3023334,0.118870854,-0.19503999,0.2924693,-0.47173396,-0.21447612,-0.060421396,0.1281438,-0.27596337,-0.2801097,-0.07846237,0.072062925,0.5826712,-0.12009922,-0.16899997,-0.12219472,-0.07728066,0.50548846,0.51076895,-0.29707536,-0.665322,-0.37888715,-0.17053427,0.35333222,0.11017644,0.069221355,-0.44707707,0.066846006,0.16038495,-0.21673721,0.62703514,0.74854445,-0.41620922,-0.05210275,0.3136226,0.5271315,-0.10587526,-0.10231454,0.2487157,0.004761666,-0.44568816,-0.18138415,0.09913505,-0.003451369,0.548764,-0.042124446,0.33176553,0.5735295,-0.48171794,-0.015154773,0.23285326,-0.20471643,-0.15187424,-0.28745857,-0.18858719,0.29387745,-0.55986446,-0.08374755,-0.32613778,0.8339711,-0.006402108,-0.8341019,0.47849253,-0.36812484,-0.019199127,-0.18735419,0.78969646,0.5569872,0.47786185,-0.020254984,0.7564749,-0.5840862,-0.052038845,-0.14753594,-0.3674506,0.12472559,-0.11250644,-0.06902056,-0.29573515,-0.05886561,0.16708232,0.048060916,-0.2523984,0.6526978,-0.4554079,-0.030348886,0.10732202,0.5254741,-0.318057,0.05243277,0.70269656,1.4453024,0.8017216,0.23098673,1.2806331,0.31192872,0.06895693,-0.17253856,0.17599535,-0.8388013,0.2996829,0.50730854,0.36312893,0.32456586,0.1416055,-0.12823959,0.6608677,-0.39681676,-0.1297749,-0.14381877,0.502538,-0.15291482,-0.2642093,-0.42079258,0.20549712,0.31318298,-0.066120386,0.065948285,0.34302008,-0.42891595,0.27628207,0.23189844,0.99494684,-0.33911753,0.19811669,-0.060148988,0.24318056,0.11776003,-0.13328719,0.22841386,0.14391166,0.48786113,0.03562462,-0.6366661,0.11544938,-0.05973439,-0.80833155,-0.23363695,-0.12897575,0.022289168,-0.18430923,-0.41643333,-0.07155743,-0.0067470726,-0.3320669,0.36138317,-2.5649607,-0.250455,-0.089251906,0.34225857,-0.08791267,-0.38429716,0.020988367,-0.22233354,0.3936982,0.4836644,0.41041052,-0.5597778,0.6805842,0.34128243,-0.22090702,-0.14416002,-0.7314945,0.21881229,-0.32193375,0.5382032,0.08864179,-0.4350169,0.11579141,0.03641239,0.6649472,-0.2973699,0.10916907,0.13666983,0.29675913,0.020813037,0.33079073,-0.0773099,0.5775021,-0.5031337,-0.3080312,0.43085095,-0.35833287,0.15710586,-0.09696992,0.33377817,0.14496416,-0.3945981,-0.97323436,-0.66486365,-0.25830767,1.2185429,-0.20697221,-0.5951915,0.24355522,0.08402132,-0.42284384,-0.010234594,0.28205588,-0.18763013,0.28259695,-0.8091417,0.09629204,-0.29704994,0.26762822,-0.06414156,-0.03420128,-0.58866686,0.63254106,-0.14703494,0.4996599,0.55515635,0.2503411,-0.22255164,-0.36019892,0.14787255,1.188371,0.46511757,0.22282475,-0.09098256,-0.12712765,0.27191648,-0.017444454,0.15358135,0.6187695,0.8050131,0.12964618,0.09758286,0.1959318,-0.06719861,0.017388886,-0.10734425,-0.4783776,-0.09739917,0.23079781,0.78380734,0.5147841,-0.1659787,0.31812328,-0.18919978,0.3332001,-0.34405804,-0.35230073,0.51561254,0.61250734,-0.110419035,-0.4952966,0.7496515,0.52754116,-0.49648902,0.5376436,-0.8247691,-0.36465922,0.19406533,-0.12652922,-0.2652929,0.3464422,-0.4383622,0.41405356,-1.0763966,0.6434171,-0.5508333,-0.61568147,-0.5709348,-0.53249705,-3.9761076,0.2593648,-0.32633093,-0.1324464,-0.18653503,-0.22133207,0.522731,-0.53479916,-0.43919545,0.10032385,0.020584838,0.50067043,-0.07614317,0.039353024,-0.20442967,-0.120112635,0.15127963,0.3945947,0.11549282,0.080392145,-0.05744314,-0.23602585,0.0093584275,-0.13440652,-0.2969137,-0.03499886,-0.53399366,-0.37606448,-0.06965243,-0.28570873,-0.27236468,0.690093,-0.36685464,-0.1519688,-0.20797187,0.074359424,-0.31105283,0.6947868,-0.0068607223,0.1561345,-0.010170356,-0.046839204,-0.0738737,-0.39457372,0.18305661,-0.047068,0.39763406,0.43533066,-0.4870796,-0.061083756,0.5422117,0.46600133,0.12765852,0.74477464,0.20350231,-0.11850396,0.40266106,-0.22575597,-0.25056016,-0.5907226,-0.49447238,-0.0060706516,-0.5444445,-0.3844849,-0.15520854,-0.31563532,-0.80334437,0.7167092,0.0156135345,0.10841675,0.07046968,0.56976503,0.14231634,0.07903897,-0.2643665,-0.09170341,-0.16410933,-0.47779855,-0.45498466,-0.705834,-0.46269885,-0.14484693,1.0849975,-0.0155308135,-0.027918529,0.07080142,0.045740448,0.04248376,0.22047386,0.16146351,0.05129081,0.43002957,0.033644833,-0.6652769,0.29497808,-0.31312874,-0.28417343,-0.6404064,-0.101115726,0.62032264,-0.63744485,0.58376884,0.4888421,0.41014668,0.043249346,-0.43826154,-0.17025395,0.2603724,-0.109248616,0.6838877,0.32786843,-1.1130028,0.59544903,0.52329725,-0.20244637,-0.7472014,0.476649,0.026596654,0.13906993,-0.101538375,0.43500802,-0.2170463,-0.047982097,-0.28138474,0.24841617,-0.5503071,0.3089175,0.102917,-0.08582788,0.6241767,-0.16714941,-0.21314313,-0.51315826,-0.113150746,-0.6615797,-0.0684014,0.080689706,-0.21838027,0.12335015,0.21939507,-0.06393202,0.6259046,-0.3296382,0.1709184,-0.05291011,-0.47978345,0.3421663,0.69659877,0.29288688,-0.3536502,0.7017359,0.13826789,0.046506427,-0.43414584,0.21085744,0.6173353,0.18551077,0.34354916,-0.16959323,0.05004419,0.45137691,1.037778,0.3580945,0.75668436,0.22272073,-0.1675584,0.23980427,0.16111487,0.22127585,0.108790495,-0.422307,-0.09231014,-0.06696685,0.33232328,0.41008618,0.06276224,0.4409353,-0.27212662,-0.20524506,0.06128267,0.49424726,0.0597893,-1.3197169,0.42647693,0.1828468,0.5354083,0.42629144,-0.0025965518,0.20180832,0.21666841,-0.13568376,0.020471351,0.09492843,0.028862411,-0.38875178,0.68414056,-0.78115964,0.18525676,-0.21101,-0.0012051951,0.03429207,-0.09404471,0.33407107,0.7263046,0.0632866,0.2714623,-0.08591562,-0.13723603,0.048465088,-0.2581298,0.23450185,-0.23950242,-0.22131914,0.93400055,0.3849919,0.4809841,-0.25073615,-0.19153762,0.24963813,0.051570904,0.29770458,0.01911544,0.20717321,-0.15089144,-0.6225819,-0.30970925,0.67403406,0.3823824,0.061549794,-0.059629276,-0.3700166,0.36772376,0.02027341,-0.26659966,0.063747354,-0.4202808,0.08180775,-0.40949297,-0.68913406,0.41318738,-0.16334993,0.10175382,0.3030693,0.0035009126,-0.2655342,-0.07546152,0.049933173,0.68341184,0.12710749,-0.17420727,-0.3494717,-0.051500376,0.28240517,-0.27046764,-0.28118336,-0.4999595,0.12754622,-0.72611934,0.36607507,-0.25391924,-0.35491148,0.45508575,-0.055445258,-0.015015141,0.5484913,-0.2249869,-0.27292317,0.45892525,0.03598768,-0.27961606,-0.4595602,-0.17183174,0.16631044,-0.04190575,0.15676211,-0.01664142,-0.08200511,-0.15896381,0.18759294,0.23313557,0.21053891,0.51469564,0.24486643,-0.38421118,-0.15408613,0.06252914,0.568983,0.006222391,0.033703506,-0.23360105,-0.7805904,-0.1563142,0.00012423775,-0.043891773,0.13421626,0.06061952,-0.43888614,0.6237635,0.08926412,1.0134213,0.13133273,-0.29753688,0.09454077,0.6334005,-0.044525765,-0.13722219,-0.3076531,1.1650043,0.68275136,-0.14230235,-0.1206557,-0.4866079,-0.26374432,0.04079199,-0.34079847,-0.23104912,-0.103432246,-0.8297934,-0.1404131,0.1365254,0.47966897,-0.115142725,-0.031433284,0.30315658,0.3126965,0.10977509,0.05729051,-0.6548029,-0.02956211,0.41343707,0.37715366,-0.09521273,-0.05971625,-0.39546746,0.20463677,-0.75204545,-0.06243296,-0.39272708,-0.023822678,0.22462234,-0.25237587,0.11660092,0.082082294,0.24475622,-0.2305106,-0.21709043,0.18114394,0.518754,0.16126443,0.16293806,0.84911215,-0.05686581,0.0975322,0.0022043532,0.41544393,1.1772046,-0.29633895,0.033646896,0.25618723,-0.3407706,-0.87133354,0.25448477,-0.42410737,0.2567096,-0.06206597,-0.5892886,-0.5640586,0.2105944,0.14122313,-0.28818586,0.09457508,-0.6329458,-0.2833541,0.20981936,-0.4322957,-0.13632306,-0.18596016,0.069806054,0.83471733,-0.35129294,-0.18784119,-0.030406285,0.57106423,-0.49039316,-0.54569167,-0.00741536,-0.3257465,0.32289946,0.1256169,-0.31797585,0.13613068,0.17842427,-0.46520853,0.23759142,0.21059841,-0.17976092,0.041088287,-0.22184229,0.024522977,0.5164966,-0.060212586,0.09949145,-0.9038946,-0.6434407,-1.0193925,-0.4599012,0.16135551,0.26631087,0.12401747,-0.53441006,0.11416225,-0.18645038,0.1567696,-0.1735307,-0.5851876,0.4430066,-0.029975869,0.6784616,0.018049277,-0.6897302,0.15024582,0.16293646,-0.10739493,-0.5276199,0.5593239,-0.2561386,0.82113284,-0.040877078,0.054010466,0.1482696,-0.8343656,0.040003482,-0.20041813,-0.38184527,-0.92281747,0.0614527 +499,0.6610824,-0.4318547,-0.79166734,0.0822906,-0.582223,-0.1047054,-0.30484316,0.76651865,0.12916961,-0.60741574,-0.12019611,0.14108878,-0.29145402,0.10579144,-0.35336226,-0.4510149,-0.011327559,0.18612465,-0.48550603,0.4843971,-0.31452802,0.5331209,0.14094685,0.281946,0.32389224,0.03997545,-0.23442483,0.19308029,-0.02831346,-0.55991346,0.053750455,0.2267821,-0.74718374,0.3039012,-0.37114188,-0.7683092,0.026526345,-0.59006643,-0.21577907,-0.7849461,0.36953676,-0.7818602,0.75660384,-0.025466204,-0.6059902,-0.17734411,0.0302756,0.52482617,0.08577495,0.05950931,0.22355957,-0.18456899,-0.16288796,-0.22988628,-0.058418762,-0.34170282,-0.69093245,0.10153962,-0.5161529,0.0875488,-0.04747678,0.34609345,-0.31968403,0.1041127,-0.20510374,0.54716796,-0.37762782,-0.0041769133,0.122615926,0.05759928,0.31568202,-0.93206143,-0.04742131,-0.29160726,0.13682579,-0.37912264,-0.3085537,0.12541097,0.09612486,0.65334463,0.15151842,-0.12314867,-0.17654297,0.18388051,-0.23193568,0.40397942,-0.40110913,-0.28381765,-0.13924022,0.09775981,0.6128938,0.2794445,0.26672113,0.027985213,0.098148875,-0.110643655,-0.1841998,0.64247876,0.4167806,-0.2614031,0.18046567,0.007930869,0.73347586,0.24580704,-0.03736799,0.15608579,-0.005968511,-0.57153594,-0.26787513,0.00056456437,-0.23636952,0.49727115,-0.070591,0.3399463,0.46998912,-0.34972745,-0.08018858,0.66234684,0.21012536,0.011702841,-0.103737116,-0.659231,0.4533162,-0.6394244,0.07213765,-0.25412387,0.8474826,0.06356514,-0.6923923,0.029835511,-0.7051004,-0.04457982,-0.012632641,0.5061674,0.6046801,0.8752034,0.14841388,0.7490545,-0.35398793,0.015894849,-0.19246398,-0.090971686,-0.08343742,-0.19685169,0.009029966,-0.34066153,-0.26592368,-0.5194712,-0.2706982,-0.04684632,0.6187668,-0.779602,-0.19073986,0.04531548,0.6259112,-0.29492092,-0.13627546,0.9848175,0.99827707,1.2212809,-0.076447174,1.0433627,0.0652891,-0.14634305,-0.10755489,0.16615205,-0.6421953,0.41317606,0.48715642,-0.15460223,0.40936276,0.22914958,-0.001136811,0.5400646,-0.543205,-0.037335254,-0.17505866,0.13716637,0.015208479,-0.30479366,-0.5893971,-0.31524104,0.10553735,0.18845235,-0.0999697,0.4847422,-0.25950024,0.5867476,0.09516302,1.2060775,-0.24649125,0.15112342,0.2276505,0.34928018,0.039160527,-0.21022578,-0.14076129,-0.3224987,0.28569934,0.2720731,-0.59784234,-0.077368386,-0.111855745,-0.4040206,-0.29641116,-0.14264274,-0.35779336,-0.5061981,-0.59026676,-0.43485597,-0.17627412,-0.2707926,0.2960193,-1.9629265,-0.27391088,-0.09361625,0.46995065,-0.20816651,-0.6244674,0.045479264,-0.4623032,0.4008106,0.19506116,0.54332787,-0.6228802,0.6501925,0.58178675,-0.40040255,0.10200372,-0.70391685,-0.3431641,0.05710994,0.05768696,0.20564103,-0.29286873,-0.0175039,-0.20182584,0.557743,-0.34764272,-0.03066989,0.26216802,0.4389342,-0.27676365,0.7020693,0.010181709,0.5396271,-0.6643005,-0.42659238,0.66484857,-0.49211475,-0.06891909,-0.08245858,0.00058043003,0.41329768,-0.678629,-0.911306,-0.8152905,-0.25280637,1.3361126,-0.056359448,-0.4619686,0.08783645,-0.6834228,-0.39599323,-0.2029873,0.2895424,-0.13638228,0.087849975,-0.7668907,-0.32383215,-0.31000704,0.32574427,0.067825176,-0.100857854,-0.7258583,0.71316105,-0.07641976,0.3786745,0.49688908,0.11739481,-0.30135024,-0.53301877,0.07980058,1.1683503,0.6910934,0.20606862,-0.3693636,0.07391623,-0.20380996,0.41582146,0.021947784,0.7094068,0.7666531,-0.110450916,0.15025462,0.2230408,0.0015738715,0.14125295,-0.063537,-0.5723808,-0.35271966,-0.0027641682,0.8898976,0.8391049,0.11159749,0.43551895,-0.115209885,0.445871,-0.15250403,-0.4477029,0.34049243,0.97179693,-0.24382162,-0.42340127,0.85406685,0.6017683,-0.16986771,0.5758623,-0.5794819,-0.528108,0.18684587,-0.11471145,-0.44639805,0.29274487,-0.3286514,0.33149,-0.98508584,0.42233017,-0.74228853,-0.630115,-0.6182278,-0.23709202,-1.8238641,0.491975,-0.19826902,0.026903791,-0.05317416,-0.5098929,0.2051931,-0.6669209,-0.7961344,-0.034704708,0.15119566,0.71766335,-0.05081668,-0.09845979,-0.035015795,-0.7442539,-0.19697885,0.119934365,0.40480626,0.15196289,0.0065015717,-0.4363967,-0.019577948,-0.34265634,-0.3014537,-0.13440055,-0.90231186,-0.65133053,-0.08328199,-0.62552774,-0.4060826,0.8225651,-0.23282123,-0.043651395,-0.21555905,0.055570375,0.15512466,0.29456326,-0.25741503,0.0397846,0.069071025,-0.24946715,0.07558834,-0.14870375,0.079857446,0.178382,0.43707916,0.33943394,-0.46896428,0.32504025,0.84733987,0.933568,-0.16833733,1.1750985,0.5030539,-0.14385635,0.27368304,-0.16946357,-0.6427262,-0.618012,0.12402162,0.2663152,-0.50681597,-0.15310456,0.35785297,-0.33625612,-0.9310512,0.85471576,-0.20226212,-0.031150877,0.1255688,0.6097573,0.48306406,-0.2988309,-0.42893317,0.04155411,-0.2024185,-0.38732642,-0.42721912,-0.5408054,-0.49806872,-0.6329289,1.7786618,-0.18397747,0.37920886,0.46986458,-0.067446575,0.19768216,0.05827947,0.011402789,0.08771371,0.59075433,-0.21133779,-0.8095614,0.12603615,-0.22685537,-0.06643958,-0.30063033,0.21809706,0.78497255,-0.8378416,0.1296451,0.41327703,-0.020817501,-0.109329075,-0.6892826,0.1410702,0.18444906,-0.29078272,0.5450382,0.511933,-0.5656782,0.43143034,0.345904,-0.2840061,-0.76454985,0.52902454,-0.06637083,-0.41884154,-0.16049789,0.39482358,0.22992998,0.006036466,0.07778573,0.20638758,-0.40874565,0.48231384,0.027472723,-0.18474227,-0.21687722,-0.2777311,-0.24740265,-0.7903187,0.3343685,-0.5378125,-0.58447236,0.35767624,0.059309363,0.08643457,0.47522643,0.50161874,0.5208501,-0.32327202,-0.076787695,-0.34572232,-0.5450659,0.56824774,0.5512759,0.6430682,-0.49288788,0.5388911,0.17711458,0.04977006,-0.11272097,0.13792668,0.59587634,-0.48966244,0.37953168,0.049915258,-0.13342303,0.22159442,1.0765634,0.16061015,0.40407676,-0.10824654,0.008099556,-0.14610499,0.22125855,0.266798,-0.03268321,-0.69739825,0.054404322,0.027792638,0.048307624,0.6651757,-0.07578421,0.17918563,-0.28701356,-0.3225291,-0.09300835,0.17973928,-0.2104939,-1.7403547,0.4461137,0.089724965,0.8655657,0.35083297,0.370177,0.13766377,0.6353227,-0.32144636,-0.00089198624,0.427642,0.18585008,-0.15272653,0.5265227,-0.57549584,0.6347252,0.041152433,0.1397031,-0.068539806,-0.37717655,0.5718887,0.88887686,-0.18833952,0.07064881,0.010134664,-0.38140938,-0.16428326,-0.51652616,-0.07554401,-0.60594964,-0.123675585,1.0227557,0.46402597,0.41159552,-0.191948,0.028366674,0.16589078,-0.12266369,0.4606969,-0.20550914,0.048682537,-0.2480341,-0.33399305,0.19454727,0.6572683,0.1264926,-0.0064616124,-0.06039703,-0.11252118,0.28880182,0.08491146,-0.07932551,-0.18714686,-0.8466547,0.09864055,-0.7621019,-0.21203123,0.123685576,0.0058878334,-0.0851982,0.2926865,0.12563306,-0.35715985,0.46311873,0.04189417,0.5843908,-0.03041656,-0.07590899,-0.096555494,0.4547758,0.08764198,-0.31716105,-0.1916859,-0.13548519,0.45250985,-0.56719875,0.24447137,-0.13324484,-0.40631372,0.118195035,-0.046368983,-0.0946979,0.38953254,-0.20741655,-0.09142039,0.34334043,-0.01216754,-0.022856258,-0.34771794,-0.19459642,0.092336066,0.27966633,-0.19822446,-0.2506387,-0.34566176,-0.0344481,0.50798804,0.10443134,0.45327684,0.47722006,0.19845603,-0.47565463,0.039976254,0.14199246,0.7327333,-0.2732535,-0.0708746,-0.58251965,-0.22913092,-0.33790523,0.6297911,-0.1313821,0.33338895,-0.048445366,-0.35352919,1.1814541,0.4145827,1.3604579,-0.038607087,-0.3133427,-0.011319258,0.54603744,-0.34614763,-0.16168019,-0.4839814,1.2941773,0.38985175,-0.26062486,-0.12836608,-0.5182286,-0.041548092,-0.18065949,-0.34206226,-0.26911452,-0.100340255,-0.5821259,-0.1014739,0.43819606,0.46755487,-0.026515007,-0.17687038,0.21562615,0.576184,0.016866384,0.01788153,-0.41251087,-0.12334018,0.40840933,0.34146583,-0.28648213,0.029136397,-0.637622,0.26474944,-0.758033,0.07775923,-0.38137913,0.15439178,-0.20079578,-0.51092345,0.31348684,-0.1705113,0.30968726,-0.47617912,-0.28055122,-0.03819679,0.26094747,0.04004667,0.20342135,0.6265891,-0.35854125,-0.017233757,-0.25386813,0.3512522,0.8896647,-0.19030127,-0.23989083,0.18210465,-0.30894575,-0.5517234,0.28919217,-0.34809282,0.06429014,-0.0065753,-0.2650285,-0.52210593,0.29486415,0.40169457,0.097722076,-0.10571203,-0.77307606,0.10176389,0.5412868,-0.45478103,-0.2857179,-0.315021,0.17804004,0.64797443,-0.0577948,-0.32062104,0.0020701452,0.63697714,-0.17161523,-0.41208783,-0.0043179337,-0.35483673,0.17204365,-0.08570438,-0.34064052,-0.0928677,0.020469742,-0.5386498,-0.100015596,0.5198692,-0.34384358,0.0033674024,-0.19176155,0.15916711,0.8987076,-0.117452934,0.115329735,-0.16743508,-0.5169461,-0.9508438,-0.28768885,0.18081596,0.50979954,-0.07439233,-0.86741185,-0.14014763,-0.36550573,-0.4558201,0.051723924,-0.08479918,0.5256512,0.24639797,0.6136264,-0.28174993,-0.7989495,0.34444502,0.14395514,-0.1816053,-0.3277304,0.4897981,0.15252568,0.7985458,0.049757812,0.09622779,0.21548805,-0.6061947,0.19567494,0.028551238,-0.038278803,-1.0292283,-0.22610584 +500,0.47934106,-0.1596756,-0.26435047,-0.13674746,-0.14446059,0.24349762,-0.014144784,0.51497906,0.21576613,-0.44875783,-0.0713023,-0.33221695,0.015919244,0.35741183,-0.11036571,-0.37945196,-0.04062205,0.085865445,-0.5029161,0.40101779,-0.44267836,0.3111629,0.063042775,0.37267935,0.08086705,0.25478926,0.17371774,-0.28873765,-0.20144895,-0.13535866,-0.15672608,0.07375113,-0.38369435,0.09307286,-0.13260351,-0.23443845,0.049991485,-0.41248983,-0.29493922,-0.66740566,0.19982651,-0.5720454,0.37882122,0.10658465,-0.1706007,0.4192859,0.031324517,0.2053292,-0.3392344,0.0030265688,0.23765244,-0.13244122,-0.025834598,-0.12782493,-0.12717612,-0.17495842,-0.4226179,0.022790283,-0.38319722,-0.28897622,-0.2784859,0.08576926,-0.23604693,-0.05465922,0.008835968,0.3702113,-0.40517557,0.020120287,0.12744065,-0.2197395,0.2629408,-0.3936269,-0.20476636,-0.088859685,0.30568713,-0.19949108,-0.09188767,0.3057283,0.12688252,0.5358114,-0.10491757,-0.1031264,-0.37604204,-0.10303364,0.07091076,0.53363436,-0.1167702,-0.56543595,-0.014011327,-0.10291125,0.03013722,0.09075793,0.11971423,-0.20556055,-0.20960355,0.022504533,-0.2880661,0.26348045,0.394829,-0.29730338,-0.28639558,0.38997838,0.47623986,0.041374613,-0.053792093,-0.12228927,-0.030720767,-0.51360697,-0.17936471,0.03875346,-0.2568685,0.3950164,-0.064293586,0.3385393,0.5763129,-0.15138507,0.05498759,0.04919665,-0.0075206677,-0.07824227,-0.049294513,-0.12256401,0.10559084,-0.29080874,0.11006028,-0.20335884,0.79926187,0.18851084,-0.72487414,0.3849027,-0.50068134,0.11796041,0.010367441,0.53870976,0.661992,0.32933146,0.32099822,0.6742644,-0.47833315,0.071744636,-0.1584395,-0.23890625,-0.03444445,-0.16834857,0.04645842,-0.46300977,0.032674022,0.18449458,-0.06854502,0.108107835,0.28789172,-0.5202123,0.004352021,0.17686574,0.7977058,-0.28511104,-0.033376567,0.59298044,0.95016503,0.79225427,0.010243264,0.94188476,0.21471867,-0.3670662,0.36471745,-0.4521349,-0.62638414,0.2943888,0.3099366,0.24831854,0.1630781,0.15866566,-0.013069505,0.26907107,-0.46876648,0.0983198,-0.11589846,0.114703946,0.170151,0.016611164,-0.27699262,-0.2909492,-0.13469583,-0.016810572,0.19469234,0.23527312,-0.21776484,0.30036786,-0.108137034,1.8105998,0.03500437,0.13166337,0.03184895,0.5121337,0.02210259,-0.019783003,-0.2107032,0.42102548,0.25478905,-0.031801384,-0.60793394,0.1885922,-0.14122869,-0.41360804,0.013239511,-0.3762879,-0.118795514,-0.030731698,-0.36402103,-0.0810068,-0.035013195,-0.4230321,0.48479268,-2.9111395,-0.18792789,-0.07084112,0.2277339,-0.25252813,-0.18919782,-0.15817288,-0.45269832,0.35824803,0.4488002,0.41411713,-0.60153395,0.2389153,0.29458395,-0.4093034,-0.21882716,-0.48219642,-0.058170192,0.04155537,0.3289896,0.06986656,-0.072275795,-0.07499752,0.11937588,0.36843392,0.019017844,0.055076923,0.23066787,0.40351954,0.09023321,0.4252113,0.022840777,0.42504492,-0.32553264,-0.12449643,0.22262189,-0.36308333,0.1967899,-0.11397317,0.120418265,0.2685916,-0.40558255,-0.8222036,-0.5626514,-0.21052662,1.2997204,-0.19722243,-0.28278822,0.3350393,-0.22568811,-0.116558574,-0.09175444,0.5139975,-0.018941225,-0.038652293,-0.79184353,0.1158224,-0.09791071,0.2916661,0.013910353,0.054633576,-0.4206083,0.67146236,-0.10959189,0.5158792,0.24554816,0.08451322,-0.26048645,-0.29246178,0.08997456,0.82248205,0.20637421,0.1516894,-0.054605056,-0.15831108,-0.30688605,-0.13942362,0.07510129,0.4302192,0.69035065,0.12708707,0.12929483,0.21979144,-0.021554856,0.030138314,-0.13058794,-0.1620778,-0.06056327,0.008128715,0.5460397,0.48446214,-0.19781272,0.40849712,-0.12107571,0.260068,-0.17506786,-0.35225576,0.52280045,0.52622265,-0.17110582,-0.1078285,0.48306274,0.5027574,-0.19196387,0.3880382,-0.5828667,-0.44320595,0.5921567,-0.23987235,-0.4617477,0.1697637,-0.27209333,0.16248061,-0.90433615,0.19779243,-0.092228316,-0.39398205,-0.4784432,-0.07382973,-3.4486873,0.03736379,-0.1185052,-0.28509533,0.08362018,0.0039408705,0.041916132,-0.56301063,-0.42461735,0.06494415,0.0046516676,0.5717274,0.010382014,0.14627688,-0.24368502,-0.23527925,-0.32381842,0.083201304,-0.09264967,0.36870325,0.04336308,-0.44927654,-0.0689442,-0.22106291,-0.34748375,0.04575577,-0.42850438,-0.4287627,-0.14829901,-0.4807476,-0.2592807,0.53705764,-0.3875402,0.0104044415,-0.20200695,-0.06160388,-0.1340401,0.41032505,0.20237058,0.1005133,-0.023796504,-0.039056037,-0.01745177,-0.2849882,0.28112152,0.09029015,0.1620295,0.503353,-0.051007506,0.15533727,0.44599405,0.63399637,-0.094303645,0.69889313,0.34122074,-0.11119275,0.2877049,-0.3583912,-0.1721176,-0.40814447,-0.2971381,0.030920785,-0.32101068,-0.38291562,-0.18318193,-0.3240513,-0.67985284,0.37898487,-0.0374472,0.12420061,0.043589063,0.15977392,0.4924708,-0.23210208,0.04330326,-0.117521666,0.009895444,-0.538906,-0.31560585,-0.6173624,-0.36629662,0.18522042,0.9179873,-0.11860275,-0.031933084,0.088500604,-0.174207,0.01795212,0.0049612005,0.080724865,0.16627066,0.36044046,-0.063482635,-0.6624907,0.5888884,-0.18924928,-0.13467093,-0.5744103,0.14002581,0.42489475,-0.55588967,0.39847437,0.29386997,0.16026898,0.019645441,-0.36050823,-0.19188073,-0.16229773,-0.1579803,0.18094209,0.03366091,-0.6006492,0.40661365,0.3179493,-0.24977309,-0.7432251,0.34186834,0.01672398,-0.4045687,0.053638794,0.26856562,0.21312396,0.052792773,-0.12974145,0.10229861,-0.45986488,0.383584,0.19167209,0.03222287,0.42825952,-0.21842642,-0.18123169,-0.5668695,-0.05904075,-0.39567268,-0.26509446,0.14850076,0.20830488,0.14868547,0.1935654,-0.038270786,0.29767832,-0.25784758,0.02939715,0.01197522,-0.12671374,0.2748081,0.37773094,0.47499588,-0.45261115,0.60513365,-0.020475268,0.021202154,-0.10617325,-0.11598126,0.37572908,0.07116546,0.27480513,-0.093989305,-0.3429353,0.3473114,0.6590141,0.23510985,0.28685942,0.035116866,-0.22555949,0.31072798,0.14757027,0.10765807,0.07095248,-0.42571828,0.014426375,-0.1593711,0.13292116,0.36754766,0.11240664,0.33507204,-0.024839604,-0.26051086,0.038339652,0.22332273,-0.21485281,-1.16645,0.30556786,0.10751455,0.8176301,0.49056482,-0.058963794,0.15096132,0.6678404,-0.22259562,0.13041261,0.19847076,-0.08573287,-0.6760368,0.58013,-0.56158733,0.48682755,-0.14626673,-0.024599869,0.006257677,-0.04520084,0.32114217,0.6496513,-0.14281705,0.017117003,0.094561115,-0.2677738,0.060284723,-0.35596138,0.15436387,-0.62164783,-0.189905,0.41371816,0.3473665,0.26520675,-0.17791346,0.05414849,-0.009258425,-0.06666002,-0.020357788,0.053581495,0.14501959,-0.027932383,-0.76135796,-0.15002309,0.5196544,0.00076028507,0.18483013,0.10076413,-0.25844678,0.15720078,-0.20808302,-0.10711077,-0.13265486,-0.451731,-0.057078507,-0.2809909,-0.3091249,0.3223864,-0.11607633,0.3785782,0.16961072,0.03504878,-0.26312014,0.33136776,0.2367527,0.6350434,-0.002236581,-0.15304706,-0.36731353,0.16106315,0.19100532,-0.14436038,-0.14873329,-0.16844334,-0.14407928,-0.49205893,0.4597715,-0.026609052,-0.16743806,0.18988337,-0.22368802,0.042327013,0.54639333,-0.054528333,-0.037367,-0.14363585,-0.2337556,-0.22067611,0.020677272,-0.1958432,0.28148574,0.13375495,-0.070136756,-0.05317998,-0.028933508,-0.07675794,0.40718687,0.04587681,0.251277,0.2458478,0.047864117,-0.30083483,-0.03098611,-0.006275928,0.3458983,0.06585122,-0.050879758,-0.27897498,-0.37383544,-0.36201757,0.094852366,-0.15044095,0.2694983,0.14536117,-0.33382872,0.6107499,-0.0016957521,0.96920913,0.05276328,-0.24637909,0.12446022,0.46308577,0.043644957,0.064442776,-0.4019514,0.75253814,0.46583265,0.016071744,-0.15143734,-0.19513386,-0.059775088,0.26152197,-0.19983643,-0.20583579,-0.06905233,-0.55679476,-0.36358684,0.28092724,0.20982693,0.22459193,-0.065380365,-0.03309358,0.1315197,0.054903116,0.37199852,-0.3859194,-0.2556311,0.34136513,0.17131875,0.11082614,-0.0076861638,-0.3611298,0.5042296,-0.57205606,-0.033677638,-0.13700955,0.09342549,-0.3181222,-0.19590276,0.2060601,0.19618651,0.3550865,-0.25679624,-0.36000004,-0.32593113,0.4484766,0.10376713,0.18462618,0.4345466,-0.1848118,-0.03027785,0.12891522,0.46240488,0.9416462,-0.26153857,0.05239524,0.47730866,-0.21378371,-0.5346909,0.35333374,-0.22992104,0.11896697,-0.05431315,-0.12646773,-0.46116582,0.29498917,0.18630543,0.08766388,0.037404962,-0.50992244,-0.24115713,0.40411982,-0.27383354,-0.26914513,-0.3378278,0.14699058,0.57543725,-0.28580686,-0.16993122,0.16046809,0.3159179,-0.24724385,-0.5816995,-0.019254986,-0.26391527,0.25992802,0.10192467,-0.25639048,-0.232995,0.093012385,-0.35149416,0.09335995,0.05950465,-0.45183438,0.022173723,-0.40594965,0.025595158,0.93114054,-0.08345785,0.26461002,-0.6177657,-0.38855875,-0.8689812,-0.33530897,0.72004396,-0.023254562,-0.17269227,-0.40391633,-0.08570218,-0.0750818,-0.15006648,-0.09361201,-0.31389925,0.39172748,0.14495216,0.3042969,-0.02125732,-0.60768783,0.075360455,0.017005173,-0.21266934,-0.4917694,0.4431333,0.06913815,0.74396497,0.059622664,0.0030501762,0.3748806,-0.47613484,-0.00314341,-0.17185974,-0.13038643,-0.52440447,0.16448304 +501,0.37973613,-0.24020703,-0.29820785,-0.10328083,-0.31426185,0.05764691,-0.17165308,0.56068057,0.108654805,-0.40981343,-0.19682193,-0.05067043,-0.005895086,0.22199017,-0.2422795,-0.3936381,0.109445676,0.07518103,-0.35367793,0.6106816,-0.37531388,0.20349605,-0.12284434,0.47238198,0.12139759,0.20807672,0.010169997,0.11443151,-0.031389546,-0.23657608,-0.04176379,0.4970083,-0.51438075,0.353245,-0.21401855,-0.2999906,-0.044518422,-0.47874394,-0.31198072,-0.8349547,0.19803686,-0.78211224,0.5351187,-0.15934245,-0.32784307,0.2914609,0.11563102,0.20660701,0.10794115,-0.18829863,0.06157569,-0.19227849,-0.0062109153,-0.15855023,-0.097897336,-0.3750442,-0.5351309,0.06260281,-0.46735686,-0.09771497,-0.33960503,0.169304,-0.30242622,-0.01721739,-0.0678194,0.53148913,-0.4745431,-0.043821275,0.13405846,-0.099488616,0.26835594,-0.6874162,-0.1159246,0.005892376,0.20629008,0.015419803,-0.24939826,0.2862381,0.3122508,0.46488082,-0.020059535,-0.16897802,-0.21618271,-0.05007823,0.1919642,0.6330119,-0.06287813,-0.47108567,-0.16283207,-0.11746909,0.3066507,0.18381189,0.14516404,-0.08106061,-0.2616255,0.056730725,-0.16361256,0.29720607,0.5128968,-0.26762497,-0.22676441,0.34229377,0.39488128,0.2984504,-0.09561868,0.08105477,0.016536148,-0.5009095,-0.16655357,-0.11443313,-0.23378533,0.56349903,-0.18428424,0.361596,0.55234057,-0.10134997,0.0025708356,0.22818293,0.07163432,-0.10046904,-0.33371836,-0.17605038,0.24926546,-0.55474406,0.1656505,-0.15807503,0.82301843,0.007219887,-0.6557226,0.27381974,-0.4450339,0.0015749614,-0.037498925,0.49771836,0.71959186,0.45521376,0.37322176,0.60853094,-0.2685891,-0.08225613,-0.13839136,-0.25929397,-0.083056614,-0.29005238,0.034299936,-0.53669757,0.0032261333,0.0830861,0.080503955,-0.048758525,0.3656708,-0.5535281,-0.06598093,0.09378286,0.72081053,-0.2438718,0.0025913268,0.93111813,0.9930488,0.9053267,0.19597673,0.9080839,-0.0022179803,-0.011110131,0.1242067,0.027402673,-0.5026949,0.29376423,0.35973495,0.43682507,0.12708068,0.015943909,-0.05157837,0.57461804,-0.33370203,-0.14042886,-0.16814466,0.2697968,0.09930487,-0.13774611,-0.5212557,-0.37077686,-0.0074839336,0.06616263,0.045540452,0.31322414,-0.19509272,0.41694075,0.13830169,1.3766351,-0.18481812,0.029330527,0.16449252,0.4403226,0.25117788,-0.20843367,-0.004635143,0.2643428,0.31050456,0.111523725,-0.5842211,0.22338744,-0.11074621,-0.50874895,-0.1167892,-0.3792626,-0.28068072,-0.027381087,-0.6063121,-0.15285152,-0.17332618,-0.24939051,0.41038808,-2.864657,-0.18219529,-0.04261452,0.29441112,-0.1639276,-0.4027771,0.10188819,-0.4762491,0.48605672,0.39394653,0.41799232,-0.5601625,0.3911373,0.4117007,-0.5316478,-0.10455168,-0.5650858,-0.18887635,0.06346748,0.3532258,0.21836516,-0.07848155,-0.029403877,0.021886593,0.5633897,-0.07938683,0.19745257,0.1822912,0.2550251,-0.21511021,0.31341723,-0.11097832,0.41641834,-0.14643352,-0.14857803,0.38433376,-0.3088727,0.29011604,-0.18222356,0.1829568,0.564395,-0.37894627,-0.8023671,-0.73622704,-0.38085017,1.2613108,-0.114979476,-0.45295924,0.2944755,-0.4996432,-0.34360075,-0.11667332,0.38442072,-0.17254296,-0.0095051015,-0.6409668,0.033645667,-0.17795709,0.005804288,-0.028688876,-0.08885148,-0.43791136,0.7016046,0.028424565,0.59725696,0.29865912,0.28048858,-0.26318267,-0.36941722,-0.07872556,0.6875697,0.64137596,0.18300216,-0.43164933,-0.18353605,-0.36353332,-0.06279787,0.14798495,0.57775635,0.6520315,0.010302013,0.18392883,0.21228646,-0.0034802635,0.051420704,-0.16730374,-0.16618367,-0.07180928,0.1642976,0.6816036,0.5754817,-0.15602855,0.37299076,-0.07747989,0.1788516,-0.26503322,-0.49039212,0.39737085,0.9095213,-0.20064835,-0.24372987,0.72528225,0.58796024,-0.078009404,0.33900625,-0.60296375,-0.34360605,0.38474637,-0.17165047,-0.437938,0.12968679,-0.31237248,0.21776079,-0.84571916,0.35046303,-0.34852192,-0.7759292,-0.5617236,-0.026347978,-2.9023771,0.24746071,-0.09669791,-0.26422295,-0.24112305,-0.48073474,0.23035595,-0.5785645,-0.5592143,0.15158479,0.04116533,0.72107065,-0.075413816,0.050355904,-0.23493095,-0.37774652,-0.20974083,0.11725021,-0.03213637,0.272597,-0.17732912,-0.2732924,-0.06729995,-0.15092497,-0.46394333,0.096385695,-0.4029547,-0.5767908,-0.17282775,-0.27685538,-0.27986276,0.49670985,-0.25148335,0.10742987,-0.23071188,-0.06045395,-0.09863225,0.35223112,0.11019232,0.22369304,0.12362803,-0.100492135,0.13199158,-0.29898226,0.17286961,0.023051314,0.22688776,0.52049047,-0.1005676,0.3285905,0.5916316,0.47557268,-0.20089836,1.0503544,0.43616676,-0.008764724,0.35480973,-0.14545682,-0.4418293,-0.46686694,-0.20785376,0.122204505,-0.42750493,-0.38651326,-0.029577564,-0.3198695,-0.78175324,0.5104903,0.093056805,0.29585725,-0.07268151,0.105200835,0.47922,-0.25145784,-0.14489584,-0.05454852,-0.08486382,-0.5706237,-0.4024487,-0.7510216,-0.63237965,-0.110246256,0.96357137,-0.15121704,-0.02483238,0.052031223,-0.17127705,0.028095761,0.10410966,0.010375985,-0.08288085,0.29895976,-0.108957544,-0.7255261,0.56193715,-0.009024119,-0.29379666,-0.3687577,0.2572913,0.58077115,-0.53113365,0.37254927,0.3919956,0.15925191,-0.225838,-0.64002967,-0.026658202,-0.16317873,-0.23310052,0.54279655,0.36821836,-0.8031657,0.4874629,0.28451353,-0.10840105,-0.76015157,0.46296754,-0.06009863,-0.21451406,-0.103446074,0.25488433,0.2418711,0.120006606,-0.12554003,0.19867174,-0.48395106,0.22778368,0.24575557,0.009767375,0.35537624,-0.25915366,-0.042005744,-0.67448497,-0.14208578,-0.60350454,-0.25264397,0.11792461,-0.026532345,0.088171616,0.23454615,0.12613818,0.3747514,-0.35734546,0.17222439,-0.058133963,-0.24731295,0.27197757,0.555292,0.54286104,-0.23670082,0.6125339,0.14811231,-0.012461766,-0.038427927,0.19300191,0.45436624,0.08428168,0.4716276,-0.23808217,-0.08743334,0.068941675,0.98420143,0.14480996,0.49381608,-0.101661175,-0.09863148,0.23069206,0.025737613,0.42481238,-1.9598006e-05,-0.53872234,-0.032794528,-0.3890207,0.07261038,0.5270915,0.087148994,0.24196924,-0.00085702934,-0.23571876,0.092689484,0.12128583,-0.07540814,-1.327005,0.3627529,0.29320842,0.8807564,0.47875676,0.053721204,0.071154036,0.7385511,-0.19133136,0.18036614,0.27926254,0.15882272,-0.4811956,0.5599805,-0.94487244,0.3787279,-0.051614273,-0.08802879,-0.040950757,-0.12418036,0.401093,0.59777015,-0.2049621,0.03439321,0.019441886,-0.41512254,0.2096034,-0.46419683,-0.041474994,-0.47371835,-0.23466955,0.72477204,0.56981176,0.3337148,-0.28087014,0.005231581,0.21057497,-0.07983933,0.110242404,0.038777165,0.08534687,-0.12972438,-0.45540947,-0.1430529,0.5506068,-0.059667077,0.29720017,-0.055576514,-0.26672336,0.19912027,-0.005748419,-0.23455824,-0.010383767,-0.6496974,0.10546659,-0.37993076,-0.55973727,0.45646408,-0.15257473,0.06886645,0.18303236,0.07571146,-0.12730366,0.18514591,0.07801485,0.64098495,0.052273862,-0.019520227,-0.31852925,0.13213506,0.1904097,-0.23632553,-0.20547065,-0.2291488,0.08304896,-0.45685995,0.28935555,-0.0937659,-0.19815236,0.12499056,-0.036672514,0.094604746,0.39467195,0.03949051,-0.12382393,-0.009866301,-0.20524146,-0.33218077,-0.20857283,-0.03720599,0.2989403,0.055330165,-0.08751013,-0.1035573,-0.12270708,-0.120934404,0.34755218,-0.0023668776,0.33427987,0.26274812,-0.17224601,-0.28908926,-0.047518842,0.19140667,0.51718545,-0.08931386,-0.09372511,-0.20590973,-0.42785487,-0.31051922,0.15531185,-0.032263644,0.31690255,0.09882224,-0.19139466,0.82096,0.0143622635,0.9008208,-0.012421777,-0.41067976,0.17797548,0.3346867,-0.01893372,-0.09597003,-0.33236548,0.78266186,0.29083106,-0.026694138,-0.11425122,-0.32833788,0.1184999,0.22305365,-0.14538176,-0.019383287,-0.066076554,-0.7319768,-0.17031386,0.27159357,0.29236957,0.015788956,-0.12562472,-0.14658995,0.31923616,-0.05214445,0.30544126,-0.44252524,-0.19162253,0.3708223,0.10593996,-0.091690384,0.12071596,-0.43916938,0.26910952,-0.6003021,0.07183839,-0.2266719,0.142945,-0.3562879,-0.23904593,0.27755642,0.021654343,0.36707643,-0.19188677,-0.35630074,-0.2825428,0.37505576,-0.0075883707,-0.00038990827,0.34129706,-0.223327,0.055246938,0.058829468,0.41291746,1.0220274,-0.30748194,0.108687945,0.2557109,-0.36895084,-0.54801,0.23808673,-0.30554885,0.19203204,0.072718844,-0.1957152,-0.53845036,0.16896993,0.38908184,0.17486241,0.007005318,-0.61534745,-0.15595001,0.13424608,-0.32238284,-0.1852909,-0.2580567,-0.015746208,0.56714183,-0.2571089,-0.23196311,0.032609895,0.3362004,-0.16384955,-0.512843,0.08768209,-0.3012399,0.23550098,-0.11773858,-0.41922912,-0.1376799,0.03422577,-0.39961174,0.08374774,0.18444853,-0.2661365,0.08093724,-0.4826073,0.22713418,0.9551332,-0.15906072,0.18432857,-0.46059695,-0.549822,-0.6649315,-0.39104903,0.22009425,0.28170303,-0.033032183,-0.5124953,0.07786395,-0.098496065,-0.08353775,-0.14138618,-0.35067004,0.4947073,0.17333221,0.34105304,0.010438045,-0.71524084,0.2810153,0.061013527,0.040848512,-0.41594493,0.39104757,-0.031287562,0.71633023,0.08763389,0.15330939,-0.022410464,-0.48342305,0.10272276,-0.20603244,-0.21885824,-0.6371656,0.042993255 +502,0.47348526,-0.13783331,-0.46250674,-0.23882219,-0.35402694,0.094659574,-0.20632228,0.13780919,0.14928171,-0.42971244,-0.3375693,-0.09647892,0.09929888,0.4643588,-0.08623574,-0.850038,0.014174532,0.1489138,-0.9729093,0.5281824,-0.59610945,0.43097478,0.20893383,0.1668884,0.23609553,0.51554453,0.49223906,-0.23785885,-0.19238617,0.06446986,-0.105932996,-0.026264615,-0.54457074,0.13667816,-0.099304706,-0.33708042,0.09978412,-0.46422133,-0.20984975,-0.6445492,0.23405139,-0.934042,0.4005385,-0.070310876,0.054960873,-0.06421557,0.26556534,0.37870464,-0.45802042,0.2791655,0.18949763,-0.27474937,-0.22780478,-0.29011297,0.06388188,-0.52895457,-0.49593818,-0.021187592,-0.5708545,-0.43993077,-0.2223,0.13762242,-0.3417303,0.13774905,-0.09979221,0.26516268,-0.44865096,-0.030231535,0.37912947,-0.15831794,0.059686534,-0.44471318,0.058840632,-0.0972448,0.4922255,0.022899894,-0.12939042,0.51835257,0.3760395,0.54535496,0.31540242,-0.35857132,-0.12430917,-0.22487845,0.36069712,0.39705235,-0.010178011,-0.37464792,-0.18792215,0.07540199,0.2639892,0.3239111,0.08236116,-0.34137586,-0.029664196,-0.04773048,-0.17136304,0.51986015,0.5816116,-0.31566438,-0.37806982,0.40406924,0.5154479,0.15703134,-0.14093718,0.02981016,-0.039245263,-0.5692242,-0.19939637,0.31262493,-0.012271348,0.43949366,-0.10657795,0.06573734,0.9312744,-0.37173587,0.029184595,-0.3091861,-0.20248824,-0.2658538,-0.0982163,-0.11942295,0.075924546,-0.6010235,-0.0770693,-0.43369573,0.70443964,0.317771,-0.71201664,0.2971518,-0.5220341,0.18749897,-0.22776106,0.6518684,0.65932393,0.32468975,0.304266,0.8533787,-0.41735363,0.38759202,-0.10669266,-0.5080389,-0.010650314,-0.41444463,0.09460445,-0.4362793,0.09511533,-0.30012167,0.016924925,0.026860744,0.47127026,-0.49183035,0.015522853,-0.025233645,0.66086733,-0.47018087,0.00304088,0.70385295,1.0884315,1.1476834,0.09861373,1.2699256,0.59953076,-0.3553074,0.16611724,-0.4674024,-0.60678,0.20325933,0.45166638,0.25338712,0.28193212,-0.1729607,-0.01173383,0.20006011,-0.57734436,0.15681179,-0.0405015,0.35407212,0.06717324,-0.082988255,-0.32041845,-0.20322594,0.03771069,-0.034583084,0.1338308,0.23637593,-0.2182017,0.43826032,-0.062391363,1.3389617,-0.017665874,0.050938338,-0.16484855,0.5546859,0.21815278,-0.1898351,-0.06801336,0.29164532,0.4858863,-0.13823657,-0.75678754,0.1390171,-0.44077194,-0.3999242,-0.26298058,-0.4297482,0.05567981,0.00064085796,-0.25863063,-0.09577274,0.04009255,-0.3003874,0.4244941,-2.4923532,-0.31792313,-0.1982219,0.3178141,-0.2791265,-0.07832976,-0.12345046,-0.53686965,0.31151733,0.27848703,0.4531342,-0.60060304,0.46573412,0.3467982,-0.55563056,-0.24255101,-0.827495,0.03267911,-0.1394227,0.47700834,-0.11722441,-0.061673373,-0.11888704,0.16948673,0.69856083,-0.13061218,0.12913306,0.4347866,0.36067265,0.23044962,0.5957397,0.076629594,0.6776781,-0.28922027,-0.12911946,0.40262994,-0.21793172,0.30150005,-0.22099628,0.09752904,0.39729905,-0.5465139,-0.80302393,-0.70916665,-0.45147532,0.9673617,-0.42121896,-0.4099781,0.10416779,0.057753675,0.14876412,-0.017344896,0.5622899,-0.06864289,0.14423129,-0.6192086,0.08224525,0.07769417,0.06221426,0.09681189,0.11729282,-0.3240568,0.5925386,-0.06674118,0.5302609,0.18649301,0.3562982,-0.14156668,-0.3572879,0.30008325,1.0425876,0.20476946,-0.10151471,-0.15173087,-0.3307028,-0.19017468,-0.31945884,0.026705246,0.36620018,0.8386214,-0.031539973,0.14993499,0.22562133,-0.21252753,0.038885944,-0.14804688,-0.23781197,0.07478716,-0.02393777,0.43999827,0.6594087,-0.09712075,0.5112262,-0.2640217,0.34708127,-0.005694689,-0.5944346,0.7166811,0.6458108,-0.06300139,-0.005247634,0.46344256,0.47354138,-0.44193053,0.5939622,-0.6779815,-0.2766113,0.8445196,-0.23103637,-0.35903174,0.16971338,-0.27815422,0.15494019,-0.8571571,0.43348745,-0.28338924,-0.22192436,-0.35315657,-0.031566955,-3.5704775,0.11862823,-0.081231356,-0.14246683,-0.0775799,-0.053725332,0.21838614,-0.63149405,-0.5010522,0.18958034,0.22435188,0.72799206,-0.008667545,0.22188509,-0.24481618,-0.15038499,-0.2472234,0.19442938,-0.016668811,0.2517555,-0.06381045,-0.30595055,0.092452876,-0.10513154,-0.5314549,0.19811355,-0.43658802,-0.48515335,-0.18054013,-0.40735742,-0.36621097,0.6059056,-0.34117416,-0.048020877,-0.14636318,-0.05727138,-0.29682472,0.24971168,0.16037542,0.19528909,0.25299633,-0.029660894,0.0040817894,-0.2862609,0.45286328,-0.03882528,0.41004616,0.12341542,0.01611101,0.13600978,0.40485507,0.5410124,-0.14612918,0.8360958,0.39441705,-0.09437984,0.116673715,-0.3561527,-0.23407793,-0.55744344,-0.45491093,-0.116168484,-0.28891814,-0.5435478,-0.022124913,-0.34816098,-0.8114065,0.43878135,0.104655646,0.3121234,-0.11585195,0.22441025,0.3136974,-0.10598377,0.0034575872,-0.12712128,-0.16490021,-0.5718492,-0.23005438,-0.69560754,-0.51484776,0.12440481,0.7788714,-0.2882353,-0.122558996,-0.21613605,-0.3106336,0.048657805,-0.009422336,-0.07071061,0.32307285,0.3303553,-0.0226829,-0.805784,0.47967827,-0.16969468,0.0069321617,-0.5809068,-0.011489274,0.5753552,-0.750329,0.47893924,0.4247216,0.045780312,0.23766537,-0.48146763,-0.12387139,0.030285783,-0.11503125,0.31045392,-0.03463081,-0.8716383,0.5708845,0.17785086,-0.48234028,-0.7419029,0.37320578,0.13170373,-0.18893918,0.18435733,0.2021912,0.09613375,-0.13062803,-0.46209043,0.25866768,-0.5603709,0.3635781,0.22126125,0.019612487,0.3320825,-0.1520532,-0.46158224,-0.6126039,-0.046670146,-0.502614,-0.030087277,0.25512964,-0.051360223,0.10763466,0.13612747,0.058964282,0.43860483,-0.2660908,0.087606415,0.06616871,-0.39124438,0.18207856,0.443845,0.33085135,-0.4925266,0.5768494,0.12328462,-0.29671952,0.18503745,0.033382773,0.37046516,0.29266256,0.2681534,0.022801548,-0.22686668,0.41863522,0.7364608,0.06748929,0.2707771,0.19058034,-0.34924775,0.5001633,0.0824566,0.113190554,0.109324396,-0.25946724,-0.019516699,0.19873932,0.120457806,0.483222,0.373463,0.58997047,0.111705825,-0.18740398,0.037690267,0.1128279,-0.06512548,-1.0982428,0.30557936,0.15564004,0.76929724,0.6245052,-0.04297693,-0.16245052,0.60365075,-0.28846228,0.089253455,0.33263004,-0.095675915,-0.5433169,0.66877186,-0.6088795,0.43080124,-0.093857825,-0.10463246,0.0052811727,0.1710616,0.16225773,0.8777402,-0.13799721,0.12996888,-0.081092134,-0.2047216,0.15800714,-0.36438316,-0.037358716,-0.48672372,-0.42646807,0.69114083,0.19944195,0.22131228,0.025697127,-0.088987306,0.102104396,-0.21672162,0.272033,-0.012308657,0.022165336,0.07449392,-0.5623024,-0.37756804,0.40322724,-0.18156715,0.13610585,-0.156177,-0.27495295,0.015222952,-0.3350036,-0.026962966,-0.073904954,-0.7378411,-0.050145905,-0.19403814,-0.3862401,0.3941734,-0.21477455,0.2898174,0.27081457,0.031593315,-0.20824261,0.20642085,0.1806033,0.77209646,-0.013364304,-0.35129154,-0.31703866,-0.054897897,0.44019163,-0.31335005,0.3191267,-0.3546133,0.030981295,-0.6950992,0.7462082,-0.20209724,-0.38686016,0.27428687,-0.21747702,-0.06595485,0.5761453,-0.2173526,-0.08799252,0.19413069,-0.06497089,-0.31394905,0.024328474,-0.40274128,0.1408274,0.18880993,-0.037363555,-0.1334554,-0.16888891,0.06645142,0.6437085,0.0075868256,0.45890537,0.118058115,0.04681447,-0.20328712,0.05621554,0.22766127,0.3868758,0.29609695,-0.014929088,-0.4783838,-0.34209025,-0.3497582,0.20282781,-0.16924015,0.093678385,0.04975808,-0.49595717,0.7083204,0.024646766,1.2771386,0.17479905,-0.38965535,0.16518623,0.48999915,-0.12884827,0.074886695,-0.42380095,0.7734209,0.54524267,-0.018663388,-0.008788981,-0.44950703,-0.2344409,0.42487007,-0.32288447,-0.15135789,-0.029564466,-0.6628902,-0.52351487,0.22836453,0.03869583,0.14095566,0.023386894,-0.02498395,0.030847725,0.22320883,0.5076515,-0.6922929,-0.23504108,0.19732891,0.22927849,0.039944082,0.21376655,-0.3978778,0.5207772,-0.74035794,0.17134407,-0.25289357,0.08248071,-0.099746384,-0.4054979,0.20641796,0.21935505,0.4008483,-0.23676133,-0.5648046,-0.015384253,0.6256716,-0.06259893,0.2560432,0.66615355,-0.43128368,0.06568417,0.035793975,0.5940081,1.3642629,-0.35368073,0.17173153,0.34281802,-0.4234056,-0.6050324,0.47510242,-0.29659808,-0.093057446,-0.10048365,-0.44828188,-0.431284,0.38170213,0.19544294,-0.03591147,0.18287444,-0.5095478,-0.17227845,0.39568794,-0.25283545,-0.41641045,-0.25272468,0.3650126,0.6773737,-0.48589897,-0.14755684,0.2086299,0.36604244,-0.28092042,-0.34893972,-0.12164796,-0.2205647,0.3912482,0.15874226,-0.22804344,-0.14142297,0.16241078,-0.4187703,0.112600796,0.20717089,-0.37474322,-0.05815331,-0.087441325,-0.06390187,0.80177057,-0.17681618,-0.052820176,-0.69235903,-0.3789117,-0.89898837,-0.5138289,0.3306432,0.07748174,-0.016659051,-0.39490548,0.057233676,0.060194246,0.009971049,0.17974386,-0.6262853,0.3709812,0.07243952,0.4149689,-0.21933728,-0.87319344,-0.01824873,0.15677027,-0.27021837,-0.6337986,0.5767727,-0.13782915,0.8767363,0.094026044,-0.11150934,0.06833776,-0.41507933,0.13358963,-0.4135067,-0.1540873,-0.7698557,0.22093849 +503,0.47078818,-0.16959016,-0.43959963,-0.19772743,-0.28984544,0.17583479,-0.25424224,0.106228605,0.25042415,-0.0836203,-0.0003531933,0.07959489,-0.19837332,0.30148897,-0.10391138,-0.6412183,-0.0053943973,0.06189034,-0.6731709,0.6042294,-0.3466716,0.3799207,-0.10622565,0.36984184,0.056904666,0.46662918,0.06265338,0.0972615,0.07527294,-0.049315352,-0.122472264,-0.005011038,-0.685783,0.3513983,-0.18633865,-0.3466702,-0.1378856,-0.3524424,-0.27425116,-0.72669256,0.32801867,-0.71254843,0.4779557,-0.22398624,-0.4170572,-0.08348176,0.16730952,0.3099147,-0.37385038,-0.115548834,0.13404961,-0.18760593,0.013581167,-0.11783629,-0.16076094,-0.6188792,-0.48782757,-0.11207645,-0.5590894,-0.037715618,-0.21282199,0.28102133,-0.30330345,0.017782044,-0.1810047,0.33166963,-0.40255097,0.033433095,0.27332312,-0.3057905,-0.15036091,-0.40459552,0.022757845,-0.14226022,0.2837972,0.27845183,-0.10723553,0.33074033,0.23162319,0.5637292,0.30540064,-0.30567947,-0.26410097,-0.17145504,-0.037131857,0.4285456,0.034030396,-0.19832917,-0.3156757,-0.20218521,0.5882446,0.13517745,0.097867414,-0.3169811,0.06378483,-0.17858212,-0.11586938,0.35974583,0.57002985,-0.29560956,-0.16842517,0.4363893,0.40864372,0.08409428,-0.33706146,0.27692947,-0.095046975,-0.22199488,-0.1925252,0.06529094,-0.07861824,0.46260878,-0.033400305,0.19749339,0.69350946,-0.04075213,-0.011591085,-0.0945696,-0.12282631,-0.07890694,-0.32686502,-0.19126488,0.19776143,-0.45283228,0.021864064,-0.28618547,0.60789263,0.058126587,-0.88998026,0.36044753,-0.44425672,0.07933437,0.034379017,0.6511932,0.79303956,0.5854669,0.17825945,0.8232966,-0.34639597,0.10717309,-0.0507854,-0.18796453,0.14033447,-0.20463659,0.14098732,-0.45737132,0.26521018,0.078127116,-0.072514854,-0.062329803,0.23114513,-0.43491375,-0.15263334,0.039187655,0.61328727,-0.3564087,0.016919034,0.8977121,1.0204091,1.0001845,0.070126645,1.1875837,0.4001156,-0.09054337,-0.093353905,-0.22734803,-0.43112096,0.053077593,0.32472813,0.31819,0.48235947,0.084059514,-0.07538209,0.49042332,-0.26890835,-0.0336048,0.047571026,0.26773027,-0.053869966,-0.023829728,-0.43020073,-0.2604762,0.32001698,0.1528768,0.0113118645,0.39928564,-0.22277983,0.55896974,0.1815949,1.1570085,0.17255625,0.10131014,0.09174042,0.44319162,0.15109368,-0.3699838,-0.048404567,0.25959048,0.29711086,-0.19444065,-0.51621443,-0.0901705,-0.34294024,-0.37633628,-0.21737316,-0.413964,-0.22433634,-0.10851264,-0.31201327,-0.26691416,-0.0005960822,-0.29033864,0.43940315,-2.4993908,-0.09806886,-0.25322142,0.2946105,-0.3290776,-0.15705791,-0.18439502,-0.50646263,0.13953243,0.35673636,0.31530195,-0.6007674,0.45049953,0.36098224,-0.51752186,-0.035520125,-0.6019681,0.18329407,-0.06298067,0.45381248,-0.078538746,-0.209047,-0.22472224,0.2730123,0.72282284,0.3886042,0.054959483,0.31793195,0.37624472,-0.07523026,0.3991932,0.08397557,0.44190425,-0.34725994,-0.110217944,0.43032664,-0.54275364,0.37833968,-0.06763103,0.19073887,0.47057286,-0.56730336,-0.64612454,-0.55737895,-0.26484433,1.3748542,-0.48656946,-0.53225404,0.27357972,-0.088858895,-0.21474247,0.062648825,0.5362236,-0.13824943,0.0989989,-0.48550975,-0.07573934,-0.10364883,0.22809839,-0.0903356,0.07766868,-0.3196179,0.7309775,-0.23707788,0.53600526,0.24856658,0.23910576,-0.1248514,-0.46110305,0.14378087,0.7123608,0.61396325,0.055498164,-0.074848175,-0.12601008,-0.22824939,-0.35471237,0.09567787,0.66062903,0.5786549,-0.09954928,0.07887055,0.33532888,-0.2650199,0.1397493,-0.13826875,-0.29051667,-0.1997463,0.17880633,0.5969414,0.6278963,-0.107069425,0.13517164,-0.12553866,0.16236594,-0.12240375,-0.60368407,0.5205523,0.5835295,-0.21658655,-0.14519024,0.5747841,0.47219247,-0.3622423,0.47366798,-0.62916696,-0.3697137,0.53706586,0.0029649993,-0.46906677,0.10137481,-0.3370965,0.058787894,-0.7064143,0.24366006,-0.13224284,-0.67323047,-0.42695218,-0.11644344,-2.8689017,0.115013756,-0.035312593,-0.11677567,-0.120356135,-0.11522511,0.42865425,-0.55951744,-0.5637369,0.20698342,0.062480614,0.43018153,-0.034608047,0.12389679,-0.29281434,-0.24345447,-0.4118797,0.25573274,0.10481093,0.2830097,-0.1445265,-0.357662,-0.0810739,-0.110865235,-0.5041584,-0.08195067,-0.65035075,-0.39926496,-0.19097878,-0.4818357,-0.18288682,0.6100058,-0.3433716,0.09331739,-0.34599647,-0.121699266,-0.2384107,0.23922087,0.22239408,0.16667245,0.14368607,-0.12464102,0.035099737,-0.2964404,0.29228547,0.055106103,0.32857648,0.41517422,-0.18506838,0.108320154,0.5188413,0.6022464,-0.01554536,0.7857017,0.07448629,-0.07300145,0.5422216,-0.19992606,-0.4019932,-0.61828697,-0.3142205,-0.13028578,-0.45282713,-0.3724334,-0.020886092,-0.2942103,-0.8571589,0.3468485,0.12726162,0.3441753,-0.1881868,0.13133296,0.45212355,-0.14691353,0.0873461,-0.09710515,-0.21223497,-0.5035948,-0.40999004,-0.65676516,-0.6037548,0.28938434,1.0585825,-0.100962594,-0.009290362,0.037373934,-0.3888879,0.0779617,0.10041855,0.21049014,0.057953235,0.31370825,-0.075140916,-0.628587,0.4186882,-0.17904653,-0.041752737,-0.48823044,0.21586703,0.6300146,-0.5939914,0.51003045,0.24273029,0.18233518,-0.14931351,-0.7652298,-0.15303864,0.005486107,-0.10808496,0.5803907,0.34802625,-0.6498818,0.38916004,-0.005467121,-0.1402888,-0.6347091,0.37950525,-0.082730226,-0.06603432,0.014764738,0.43993774,0.058834195,-0.20072702,-0.14250953,0.14007153,-0.5756965,0.2590576,0.39960727,0.027512755,0.43209597,-0.037211105,-0.33461085,-0.63977164,-0.17405656,-0.56369674,-0.20594254,0.09123346,0.046129253,0.023654552,0.022905236,-0.034796778,0.41065267,-0.21330027,0.21484426,-0.10073986,-0.284957,0.58776295,0.508003,0.47278252,-0.44728792,0.6766785,0.24964467,-0.043639265,-0.12957197,0.058331575,0.48121887,0.2242212,0.3588497,-0.07351885,-0.017601904,0.012746751,0.53635937,0.3406104,0.40694264,0.08009555,-0.29071534,0.33209208,0.14829364,0.1076866,-0.10493448,-0.31019703,-0.037237186,-0.14515024,0.17659439,0.411279,0.06808378,0.47717178,-0.10826111,-0.035353877,0.2435017,0.01520447,-0.31545582,-1.1771249,0.29579464,0.3091425,0.8082207,0.45086887,0.15383783,-0.15351573,0.6646829,-0.29941443,0.06304648,0.3900101,0.0077313026,-0.39505714,0.58997667,-0.44986698,0.41992807,-0.018658495,-0.011639134,0.3504486,0.2687287,0.45519385,0.8079949,-0.101371594,0.026122864,-0.115607545,-0.26687425,-0.007088356,-0.2253042,0.26510292,-0.4664851,-0.45108128,0.58221537,0.32669073,0.35677797,-0.3091245,-0.09619379,-0.010383652,-0.1708481,0.11161712,-0.15635708,-0.021924365,-0.24634014,-0.53244287,-0.3704396,0.5265905,-0.2861474,-0.057678837,0.13432887,-0.3273163,0.15344815,-0.13930945,-0.03730391,0.04354048,-0.63320345,0.14448781,-0.23426278,-0.33513588,0.3932673,-0.29867032,0.2511179,0.14070779,-0.040786274,-0.36464444,0.06473133,0.07482691,0.7454719,-0.014653317,-0.19208957,-0.2606706,-0.02277985,0.32015565,-0.38232043,0.10607801,-0.3391598,0.054487552,-0.6106317,0.32054654,-0.2389432,-0.22203453,0.052068885,-0.13024895,0.011159425,0.38450032,-0.1982844,-0.16203478,0.22971365,0.03697184,-0.4944211,-0.25036728,-0.3430194,0.28787374,0.101358004,0.06838725,0.07120703,-0.08351316,0.07929257,0.35855597,0.09825872,0.13068579,0.29981664,-0.18698259,-0.46072626,0.24790828,-0.0093858,0.34441042,0.21706527,0.031570774,-0.32015827,-0.37585753,-0.36161432,0.3243226,-0.22943905,0.19179024,-0.06699875,-0.2657576,0.8389632,0.08063242,1.1422323,0.08566458,-0.42219195,0.18950576,0.59679484,0.007348754,0.084843226,-0.30621612,1.0158727,0.62803155,-0.177215,-0.18494233,-0.4284724,-0.26156232,0.21936226,-0.36831194,-0.27675804,-0.014772505,-0.6586495,-0.11794748,0.017680092,0.17894863,0.033971462,-0.057630047,-0.13158354,0.22462621,0.127537,0.5353279,-0.4981984,-0.17048544,0.32518804,0.020447278,0.06641692,0.17964908,-0.3808858,0.3858639,-0.82052684,0.12153331,-0.45020404,0.0432832,-0.100096814,-0.4184206,0.16404481,0.039735034,0.3590731,-0.39517292,-0.51610595,-0.17813708,0.6464522,0.24218264,0.20806861,0.67336756,-0.27401263,-0.15241215,0.118727475,0.53367865,1.1535027,-0.13901709,0.09852834,0.18621698,-0.3403856,-0.7053595,0.11636943,-0.35639194,0.093617685,-0.00654765,-0.44449535,-0.2731891,0.30371687,0.11919567,-0.14636315,0.19484776,-0.5612856,-0.15462217,0.14505482,-0.24870926,-0.18550208,-0.33834794,0.20864144,0.6852292,-0.33725864,-0.502464,0.0026091218,0.22241758,-0.24838775,-0.7015769,0.04131611,-0.24420626,0.31017044,0.0006816864,-0.49213573,-0.099748135,0.29169372,-0.42491737,0.043673143,0.36015892,-0.37152913,-0.0031460046,-0.29898208,-0.118331686,0.9559891,0.20549883,0.14686604,-0.64772666,-0.40780053,-0.8605577,-0.44120774,0.0569125,0.27079687,-0.051351972,-0.5060028,-0.03326165,-0.30878222,0.21530391,0.116863504,-0.5192934,0.31598425,0.21828909,0.5714489,-0.13957296,-0.94697213,0.12607187,0.20519136,-0.1275159,-0.41974264,0.5192279,-0.12995404,0.74565226,0.210361,-0.012354863,-0.061585434,-0.6951185,0.228117,-0.3165492,-0.17665698,-0.6166454,0.2218052 +504,0.34947008,-0.037415575,-0.5401853,-0.25259864,-0.41191542,0.1494754,-0.27967772,0.1658052,0.16032194,-0.3358309,-0.00020453334,-0.06613841,-0.110926986,0.28264672,-0.0932029,-0.5621502,0.1405038,0.11705259,-0.67848855,0.48192212,-0.6309001,0.3160143,0.044101954,0.3205712,-0.034660317,0.24073629,0.13894,-0.08834412,0.023835996,-0.07328084,-0.13924718,0.36494955,-0.76529515,0.2560805,-0.109521486,-0.31699154,-0.0032312472,-0.23791961,-0.21647525,-0.696727,0.18521948,-0.7012474,0.5452983,-0.10672405,-0.4418848,0.027408374,0.059812233,0.29901823,-0.30516112,0.15635599,0.31280607,-0.14205557,-0.13682999,-0.09219635,-0.10068042,-0.41617125,-0.5071201,-0.026027216,-0.6717859,-0.08151453,-0.27493662,0.23977095,-0.34104434,0.006991601,-0.3718139,0.4172579,-0.37461442,0.057042487,0.013666423,-0.13551189,0.04543812,-0.43251938,0.0017121792,-0.09721469,0.3594937,0.022327201,-0.23912078,0.056593616,0.32582673,0.673204,-0.0035496673,-0.2244497,-0.16678225,-0.24049574,0.21544844,0.33704773,0.03381252,-0.18659994,-0.22451226,-0.080966264,0.22486286,0.2407053,-0.06365953,-0.47215202,0.12103991,0.05665218,-0.25138897,0.24639218,0.4118077,-0.4176186,-0.2354566,0.4053322,0.45070824,0.12564509,-0.26300147,0.3090626,-0.07560987,-0.44713694,-0.29580015,0.2803383,-0.03182378,0.31537655,-0.19800942,0.23819488,0.77033347,-0.08287461,-0.028406302,-0.05821781,-0.14771049,-0.0862445,-0.2575934,-0.07602237,0.04333668,-0.5147659,0.11626462,-0.2622347,0.7658812,0.04502745,-0.8742846,0.31491116,-0.55377674,0.06870469,-0.13744614,0.71501356,0.85898966,0.3054727,0.10673485,0.7151481,-0.49766046,0.07611248,-0.11032586,-0.39927092,0.018364366,-0.09346934,0.15816246,-0.47076994,-0.05825435,0.015767861,0.028918136,-0.22259732,0.17513438,-0.3926097,-0.16522236,0.04084378,0.5615256,-0.41922665,0.005677076,0.7426283,0.89717776,0.95109934,0.17499945,1.3631443,0.35381094,0.007837304,0.024793236,-0.27064294,-0.5445505,0.086006634,0.30260774,0.23688792,0.16841622,0.07497723,0.15437654,0.58597565,-0.30386174,0.07180907,-0.06713063,0.2894865,-0.059268963,-0.114638805,-0.24835481,-0.14672539,0.34108385,0.091942295,-0.0944716,0.38451284,-0.13863716,0.3426472,0.28570208,1.2385406,-0.03867278,0.0866679,0.09930624,0.27781916,0.12962858,-0.31207985,-0.092601046,0.33378547,0.45151833,-0.12459662,-0.539864,-0.026621092,-0.22722344,-0.32300287,-0.21734768,-0.33514988,-0.1409127,-0.16766702,-0.4603242,-0.14592272,0.009320175,-0.25673702,0.49855837,-2.6803937,-0.16127406,-0.116202496,0.22463153,-0.22706273,-0.2976301,-0.33538043,-0.47528553,0.3264701,0.30524987,0.34593168,-0.6221701,0.6002011,0.38497737,-0.2730389,-0.17443953,-0.74076235,-0.12372797,-0.027772052,0.42647,-0.052658953,-0.13876642,-0.24530564,0.18365638,0.64205575,-0.048691437,0.1484153,0.15136878,0.57838815,0.07086606,0.7033161,0.2412108,0.5571063,-0.25580895,-0.115103595,0.32977343,-0.30899844,0.41301683,0.07101323,0.18164212,0.36914328,-0.42502794,-0.68006855,-0.6213518,-0.4432951,1.2329772,-0.48599538,-0.35217422,0.27608618,-0.10814789,-0.27044323,0.13022453,0.47187233,-0.026007365,0.042371426,-0.70753545,0.011715635,-0.09138338,0.32213518,-0.16298757,0.1944469,-0.345864,0.6967152,-0.1307335,0.55269307,0.42681,0.1883829,-0.048614264,-0.34081814,0.043687582,0.9798616,0.4237226,0.096959956,-0.17219235,-0.2549332,-0.22252528,-0.117662676,0.116424054,0.5850916,0.5049745,-0.02334974,0.27389982,0.35729876,-0.27241242,-0.029979836,-0.25849682,-0.3414784,-0.031916093,0.20878454,0.40535837,0.5182329,-0.16404766,0.45468143,-0.16370554,-0.055561606,-0.18797049,-0.56169546,0.46609047,0.52902716,-0.24478269,-0.099182114,0.51626337,0.45489326,-0.26000458,0.36910564,-0.4460624,-0.3335067,0.62808496,-0.06589348,-0.40283865,0.2352562,-0.312113,-0.0067774337,-0.8981773,0.27580884,-0.29842246,-0.6840631,-0.6073467,-0.19512925,-3.5629687,0.13347314,-0.04222304,-0.016676713,-0.16032162,-0.2440505,0.41376358,-0.45115831,-0.54360956,0.05541509,0.0077474616,0.40790537,-0.09502018,0.19608015,-0.39514834,-0.27568468,-0.27999896,0.2997509,0.14260027,0.24804758,-0.06578065,-0.40698782,-0.021268262,-0.17175461,-0.35179582,-0.04879084,-0.5452899,-0.46166018,-0.070140496,-0.33135378,-0.18539077,0.72128415,-0.36259288,-0.01936612,-0.32187563,-0.1041173,-0.2285299,0.43359053,0.2946287,0.2053197,0.014455278,0.01978915,-0.28781626,-0.3845103,0.02793723,0.053752553,0.22730058,0.40487856,-0.017714404,0.11946774,0.38102975,0.48617393,0.025194407,0.7278254,0.20994386,-0.15488516,0.4665345,-0.30500704,-0.3158473,-0.70447034,-0.3412094,-0.3617207,-0.444096,-0.479031,-0.13568586,-0.23961735,-0.78996634,0.40624025,0.14008994,0.06526665,-0.26717025,0.27019483,0.4024107,-0.040314034,0.030472837,-0.11919613,-0.27236593,-0.49212188,-0.58212173,-0.7211332,-0.51569366,0.17339522,1.0852114,-0.22496475,-0.16778582,-0.037157293,-0.2689392,0.037166674,0.10206654,0.15101784,0.21553849,0.4702845,-0.08972012,-0.7286608,0.39089635,-0.1192526,-0.075145,-0.585874,-0.031114427,0.8971062,-0.7309656,0.5787468,0.17650573,0.16490243,0.10469149,-0.68143934,-0.24794243,0.07061409,-0.28801638,0.66822433,0.15757132,-0.6665975,0.5169859,0.22416018,0.16068366,-0.6237503,0.5127439,0.06925983,-0.035714213,0.14069079,0.3631991,0.026523607,-0.02849264,-0.06692353,0.25838587,-0.38231087,0.3839706,0.3794154,-0.15277322,0.2630684,-0.067080356,-0.26014766,-0.47052592,-0.16603208,-0.5256061,-0.23494077,-0.020125242,0.030133603,0.1267203,0.11608707,-0.0643459,0.39511806,-0.24677357,0.21009485,-0.009150382,-0.15126596,0.32674465,0.5060927,0.26217684,-0.4669406,0.57245654,0.18096629,-0.06439016,-0.059821185,0.14042705,0.4237993,0.26720753,0.40694058,-0.19403562,-0.1221652,0.22839823,0.7718093,0.2216153,0.5044104,0.07799064,-0.09444402,0.21970682,0.18657748,0.13172239,-0.1274938,-0.3108692,-0.058141377,0.05811154,0.26447293,0.4433282,0.19016916,0.37967265,-0.059408147,0.043068595,0.20741338,0.115572624,-0.11723181,-1.192817,0.39120582,0.23779099,0.6380126,0.5420091,-0.00535237,0.14265281,0.38767853,-0.41918564,0.068656534,0.31928667,0.114356056,-0.40550023,0.5624226,-0.53873163,0.42840147,-0.18128523,0.06652691,0.07341895,0.07123765,0.3251556,0.95956486,-0.11330571,0.14183985,-0.009267681,-0.20225026,0.16597085,-0.22567043,0.040514637,-0.47848836,-0.33494103,0.621949,0.50840396,0.25693858,-0.48997843,-0.10495486,0.021398136,-0.16884102,-0.034680095,-0.09044244,-0.0250472,-0.041526258,-0.4736602,-0.27477887,0.65786564,-0.10678108,-0.08601298,0.1242656,-0.42708784,0.39081162,-0.027914755,0.12085328,-0.03299934,-0.5573375,-0.061951797,-0.36193618,-0.4526181,0.27919734,-0.3561111,0.32004228,0.19339152,-0.041098427,-0.24734996,0.28048027,0.06529272,0.694488,-0.008546948,-0.005823815,-0.15305836,-0.01301932,0.33504456,-0.2560396,-0.24791694,-0.43964192,0.113516964,-0.557836,0.21957661,-0.16207296,-0.31748745,-0.08570672,-0.103960626,0.04936601,0.44592407,-0.113518916,-0.11185603,0.18667619,0.022657549,-0.34198064,-0.110417694,-0.3012872,0.2802612,-0.0058322507,0.1665424,0.020076983,-0.10134433,-0.052640155,0.22964798,0.10329192,0.1740181,0.30499655,-0.009320561,-0.34308872,0.04875172,-0.02367781,0.29121864,0.18068711,-0.16696633,-0.17996763,-0.32259098,-0.25217277,0.41232428,-0.17228647,0.16825533,0.005019593,-0.4211788,0.8270014,0.18838876,1.0747948,0.13839908,-0.40298328,0.11901602,0.47521192,0.09262927,0.19861427,-0.20101728,0.725662,0.56358224,-0.10090234,-0.050162863,-0.37486744,-0.28733787,0.20811826,-0.28906327,-0.309953,-0.08362282,-0.6606472,0.024310084,0.07119907,0.2145705,0.073858365,-0.08892129,-0.13186292,0.14005966,0.12620457,0.5459231,-0.6123091,-0.08467414,0.30626944,0.1675542,-0.0020335119,0.16510716,-0.33512318,0.47246546,-0.7551639,0.17424825,-0.43287563,0.12792546,-0.12580553,-0.23397176,0.09669127,0.015966212,0.28076893,-0.2523824,-0.3452019,-0.28428742,0.64891624,0.23467524,0.34040126,0.82760406,-0.21253271,-0.033090122,0.110265814,0.44822198,1.129997,-0.07540289,-0.19587891,0.268262,-0.28149548,-0.6558182,0.117896,-0.48345944,0.1622316,0.007694801,-0.50545573,-0.12880345,0.2822836,0.045217037,0.07446216,-0.103905566,-0.57868195,-0.05623637,0.44733208,-0.06317298,-0.19320989,-0.16995606,0.1838262,0.8207055,-0.39749396,-0.29436162,-0.10573004,0.217073,-0.32906947,-0.51168597,0.038720217,-0.31275573,0.36664453,0.24053457,-0.32472762,0.10085012,0.29451123,-0.4658117,-0.018503796,0.38163865,-0.3166495,0.07431031,-0.23397213,-0.07319231,1.0651536,0.02268556,0.087398715,-0.42912945,-0.50278324,-0.685559,-0.20910087,0.20566256,0.2679666,-0.056068107,-0.45789957,-0.021263702,-0.17129542,-0.03979141,0.1723031,-0.5781847,0.46364367,0.19091773,0.40762377,-0.0042109014,-0.87440324,0.07426281,0.15031637,-0.007358742,-0.47500473,0.6472823,-0.17938073,0.7030401,0.040423695,0.051119283,-0.038817402,-0.58162993,0.22655058,-0.33153498,-0.083903044,-0.8124988,0.06356659 +505,0.3776622,-0.19073853,-0.23871598,-0.32204252,-0.16539063,-0.027343664,-0.054398227,0.3979992,0.15788527,-0.5177097,-0.2093895,-0.22812216,0.019995868,0.36409548,-0.18213786,-0.7690657,0.048724853,0.12390971,-0.43656057,0.5757774,-0.52017814,0.48680454,0.1885718,0.08320509,0.033491034,0.312478,0.27238637,-0.28215042,-0.13495855,-0.19383676,-0.14629053,0.2509891,-0.6242667,0.1434271,-0.037966616,-0.2599751,0.08351033,-0.36365113,-0.31622916,-0.9517889,0.4249122,-0.9296743,0.39698854,0.067640536,-0.29569906,0.4702575,-0.09746294,0.14374152,-0.35288957,0.18858545,0.15504017,-0.224515,-0.060322158,-0.21733566,0.01936322,-0.3830411,-0.63347703,0.020303141,-0.33303303,-0.3262488,-0.3699372,0.13873309,-0.46832296,-0.10951625,-0.12518704,0.34841985,-0.5566494,-0.1794437,0.15867434,-0.14402188,0.42658654,-0.5813232,-0.057056602,-0.23115203,0.25319648,-0.20067856,-0.11894108,0.5882451,0.37916437,0.5565706,0.093417905,-0.2464228,-0.26836848,-0.18895552,0.33902302,0.45814997,-0.07765529,-0.64466566,0.119447455,-0.07001786,0.15210493,0.21330312,0.17979462,-0.26829484,-0.26864594,0.07132088,-0.3291876,0.3791885,0.55694944,-0.28987122,-0.207486,0.36051902,0.5992742,0.054575566,0.039914377,-0.07260083,-0.16145019,-0.71638834,-0.18474351,0.18758236,-0.5557099,0.7813269,-0.41350538,0.02546061,0.68588597,-0.34773463,0.08768691,0.022468854,-0.05726288,-0.02347417,0.046977036,-0.36465052,0.3158713,-0.36842448,0.1496226,-0.39314857,0.7658621,0.35534006,-0.9086899,0.33332095,-0.46551418,0.40887457,-0.24895467,0.6912378,0.6420112,0.40727305,0.4046242,0.7462015,-0.52820754,0.009886578,0.0821315,-0.34898487,0.10885195,-0.24393643,-0.19668683,-0.36902738,-0.077861264,-0.112007834,-0.25078154,0.072283685,0.50076693,-0.61641663,0.24424736,0.025921097,0.6951219,-0.36573917,0.084323645,0.86733943,0.8537272,1.2119743,0.234617,1.1763481,0.27934057,-0.3930599,0.15417449,-0.35022038,-0.77808267,0.24922505,0.55687654,0.051307652,0.2478752,-0.0045726425,0.08724795,0.22726043,-0.58252996,-0.07123559,-0.38911363,0.3589391,-0.051204734,-0.22924447,-0.6051356,-0.21182013,-0.15662296,0.18730018,-0.048405863,0.23513797,-0.095165886,0.44563198,0.09189533,1.146101,-0.01823644,-0.041586194,-0.0049595153,0.3434525,0.22198334,0.056500282,-0.09101389,0.3709384,0.42003074,0.036123026,-0.73773205,0.009314452,-0.18679582,-0.580136,-0.11185621,-0.39850768,0.20582195,-0.054674324,-0.25638565,-0.2399691,-0.02471592,-0.3690736,0.5831003,-2.2949822,-0.24633233,-0.044817924,0.28770047,-0.14960508,-0.18889797,0.06434474,-0.50592667,0.5914294,0.4122831,0.6633234,-0.8784452,0.17055485,0.44591135,-0.4458466,-0.044827964,-0.8115594,-0.23765466,-0.07676884,0.26495036,0.25017983,-0.051754117,0.16637741,0.07028188,0.49093837,0.11184429,0.09311847,0.22054294,0.3628985,0.024150005,0.45426533,-0.08800514,0.4971573,-0.056553196,-0.22453682,0.27509436,-0.4074778,0.22946917,-0.24572547,0.1050879,0.30357185,-0.51919407,-0.81879175,-0.71733034,-0.57432574,1.2265636,-0.110966764,-0.54059154,0.49626356,0.019181821,0.024553189,-0.12958436,0.46160224,-0.33855775,-0.06068043,-0.83350426,-0.06085884,-0.08669377,0.1037185,0.060901176,0.109903894,-0.47986767,0.7827137,-0.13737275,0.16481768,0.37795806,0.14363666,-0.3421731,-0.56780773,-0.020770805,0.9770436,0.5562417,0.17378542,-0.1763296,-0.29757962,-0.2350642,-0.1590188,0.13006428,0.44196466,0.9639663,-0.16581598,-0.013195003,0.2707779,-0.048571806,0.061610818,-0.21000555,-0.3408359,0.07981328,-0.09942139,0.6708001,0.50854665,-0.1717565,0.45486832,-0.15824471,0.25401872,0.005884092,-0.44915038,0.57423794,1.2891377,-0.029511433,-0.19346417,0.6367288,0.48088127,-0.2886067,0.5658994,-0.65586704,-0.3581593,0.63397354,-0.12669845,-0.36582866,0.13686205,-0.32096085,0.2723896,-1.0731643,0.56930363,-0.20956981,-0.38851485,-0.7032881,-0.14955695,-3.1579587,0.06700551,-0.26190022,-0.17043492,-0.12990938,-0.13343501,0.1341849,-0.59960175,-0.64611137,0.17957088,0.034095243,0.6510474,-0.15223686,0.05484257,-0.11920406,-0.16857612,-0.26668116,0.09682142,0.04985721,0.37213796,0.04456365,-0.39462146,0.08512693,-0.28163034,-0.54073256,0.06121976,-0.47066054,-0.6290683,-0.28449494,-0.604672,-0.32145882,0.65621614,-0.26370257,0.010676826,-0.18880095,0.022238735,-0.110339925,0.23885243,0.20106827,0.18273826,0.030812472,0.0016327186,0.052024193,-0.16654944,0.2944625,0.012731456,0.18375142,0.4594845,-0.399357,0.23567936,0.6246579,0.718948,-0.10402964,0.7991084,0.63207716,-0.08649915,0.2605513,-0.46951482,-0.32461897,-0.7556798,-0.5961203,0.1831087,-0.3888447,-0.5931329,-0.116168104,-0.36162776,-0.80229664,0.46044722,-0.18877305,0.06203235,0.0018301478,0.3549935,0.4266279,-0.13233212,-0.014749868,-0.083573595,-0.20546784,-0.55800307,-0.19413963,-0.83215123,-0.30240673,-0.09343876,1.0189754,-0.14054121,-0.11911224,-0.07274071,-0.08254702,0.0024566597,-0.06717985,-0.11015654,0.14552777,0.07574097,0.10837562,-0.6964427,0.63570553,0.12054981,-0.12890954,-0.54538614,0.10863929,0.5802708,-0.65999955,0.31542715,0.5125038,-0.13520029,0.052612,-0.5053682,-0.16871464,0.057995852,-0.2064663,0.4398237,-0.030771,-0.54675853,0.635791,0.43605447,-0.33660126,-0.8251292,0.4859064,-0.11430342,-0.36568955,0.20809756,0.25128132,0.06220003,0.09136436,-0.41902986,0.36885738,-0.55979866,0.32594427,0.44618505,0.13843496,0.19957183,-0.022341486,-0.15999381,-1.0052902,0.026159981,-0.5480793,-0.061001576,0.006244523,0.015297068,-0.005296477,0.06778036,0.27590445,0.6201549,-0.27932796,0.1737101,-0.062897526,-0.29850218,0.23520799,0.54659015,0.4661226,-0.47829285,0.6480842,0.08242159,-0.08577398,-0.35928917,-0.087721124,0.5566074,0.080599435,0.17518584,0.14994009,-0.17778303,0.3461516,0.75340474,0.3128495,0.43993658,0.16915084,-0.1832727,0.32132763,0.2810559,0.39937097,0.020028105,-0.30431986,0.07768302,-0.0004307713,-0.045776468,0.6065112,0.1234845,0.33719802,-0.12436432,-0.2551021,-0.084507175,0.4053972,-0.008723186,-1.2565581,0.45467377,0.24748568,0.625967,0.74911255,0.0074140835,0.109278,0.61432785,-0.37555838,0.102008305,0.28981456,-0.068855904,-0.6862579,0.37639675,-0.79939973,0.28517672,-0.1146696,0.118357114,-0.102863565,-0.013341425,0.36851075,0.76176995,-0.14554204,-0.011351377,-0.30769315,-0.2611567,0.29261297,-0.59240735,0.030134294,-0.3068015,-0.2737405,0.5486036,0.20595762,0.20504144,-0.048595157,0.048396517,0.17330109,-0.047307365,0.46355757,0.066287324,0.14409135,-0.12754838,-0.63370407,-0.17766427,0.55238736,0.024584243,0.20656122,-0.06944228,-0.1850402,0.13330294,-0.3278115,-0.28809503,-0.1737282,-0.76498044,0.021983203,-0.22552983,-0.14955355,0.43548802,-0.15342149,0.37308493,0.2999466,0.040647216,-0.33776146,-0.14628257,0.20738505,0.63497275,0.023779264,-0.26716474,-0.24414758,0.27747348,0.28212988,-0.27127925,0.12275759,0.14243369,-0.15991269,-0.54621226,0.5460853,-0.13109799,-0.25943002,0.033573948,-0.3025918,-0.19448566,0.5990418,-0.3933417,-0.105658405,-0.039933033,-0.34950063,0.03010256,0.022035966,-0.20478086,0.31586966,0.27085945,-0.07362535,-0.20204237,-0.001351746,-0.14786772,0.6302661,-0.05264015,0.31627947,0.20230351,-0.016525416,-0.51653385,-0.23318912,-0.012691728,0.37309834,0.11489659,-0.047195487,-0.35165665,-0.38884598,-0.23566459,-0.06929792,-0.27207965,0.42303753,0.039220214,-0.44823456,0.67782634,0.27309874,1.346255,0.00056073227,-0.39831695,0.055036515,0.58908516,-0.06328044,-0.010029604,-0.16111813,0.9717658,0.5386214,-0.22486337,-0.05786229,-0.45043063,0.07594795,0.22350383,0.008552472,-0.10973159,0.069299534,-0.60499793,-0.42425582,0.36807543,0.3339807,0.026801584,0.0011262809,-0.07697029,0.056710757,0.109512724,0.4744703,-0.43983626,-0.12182515,0.42008162,-0.035663955,0.29956177,-0.08881245,-0.30627504,0.40379858,-0.4661799,0.071073376,-0.32735443,0.21221375,-0.18866086,-0.2832913,0.35601005,0.13923018,0.26993313,-0.22940397,-0.6670755,-0.17135978,0.442279,-0.037831936,0.20532705,0.5373944,-0.46002927,0.20981956,0.11885678,0.541616,1.1426439,-0.17849667,0.07381336,0.30185315,-0.42215395,-0.5630511,0.5812513,-0.2349269,-0.08902122,-0.16765802,-0.22008531,-0.75338393,0.11614585,0.25295907,-0.077020586,0.21019188,-0.5923797,-0.36828664,0.31643203,-0.3684766,-0.19210364,-0.36390617,0.30577537,0.75760883,-0.5563052,-0.37002033,0.13803658,0.06588309,-0.44969982,-0.5158602,0.021081243,-0.22359623,0.47174576,0.12917721,-0.36962134,0.0464632,0.20129633,-0.32670003,0.20732056,0.18120255,-0.31371,0.18449762,-0.25653985,0.12019903,0.80872077,-0.31957576,0.13023528,-0.6413918,-0.553357,-1.068574,-0.15295954,0.9667389,0.153649,-0.01044264,-0.7748019,-0.026529504,-0.002765451,-0.05117031,0.0033882984,-0.33212522,0.5075608,0.20707546,0.31240305,-0.040369947,-0.55796546,0.055511385,0.010815082,-0.040092174,-0.51864547,0.4802167,0.10610471,0.7101803,0.14961866,0.11431418,0.13137303,-0.53040326,-0.065282516,0.076980665,-0.26327327,-0.45804876,0.045973103 +506,0.52170515,-0.13285601,-0.5648892,-0.12425259,-0.24816622,0.037382558,-0.14109461,0.43734244,0.0542057,-0.5352376,-0.058186024,-0.21258216,-0.15729606,0.48484132,-0.33443993,-0.81617844,-0.13163379,0.2109634,-0.5657329,0.5374635,-0.30666816,0.31918347,0.06354454,0.3533397,0.1600517,0.2223414,0.28255063,-0.13557482,-0.21545278,-0.06993626,-0.034247786,0.13454974,-0.5693052,0.026162714,-0.23486373,-0.49694413,-0.075295456,-0.35761708,-0.25418985,-0.8901343,0.51437813,-0.86185604,0.43964344,-0.19588917,-0.30327648,0.0877228,0.25832975,0.43977576,-0.13426517,-0.033913888,0.20349678,-0.074039474,-0.033196386,-0.064454995,-0.22702983,-0.34089875,-0.56497645,0.27347955,-0.5228778,-0.11784705,-0.22888991,0.2821878,-0.38343543,0.057421215,-0.11248047,0.49131274,-0.3759163,-0.2606138,0.46452516,-0.146323,0.47110355,-0.620228,0.0049508065,-0.14134042,0.12309774,-0.11867687,-0.036384955,0.28558087,0.30832276,0.6035104,0.1370127,-0.29373193,-0.32936832,0.13258314,0.1714812,0.37656796,-0.19734661,-0.5645822,-0.180033,0.08635003,0.23639476,0.1452907,0.1527401,-0.3993376,0.0126517825,0.12447407,-0.2907689,0.4386357,0.45779428,-0.3171821,-0.19106704,0.34603375,0.63286823,0.27255058,-0.14185914,0.09589616,-0.015310781,-0.48528963,-0.17863072,0.17379622,-0.17886856,0.46559548,-0.14229871,0.2369272,0.6711033,-0.19193932,0.0518886,0.06859626,-0.0705412,-0.17404231,-0.24011138,-0.21499565,0.21871267,-0.4885295,0.052627653,-0.3176297,0.84324795,0.12312962,-0.7945703,0.41367602,-0.5622601,0.32565582,-0.15994556,0.5050875,0.72826725,0.36465997,0.16818494,0.96606964,-0.534282,0.045043923,-0.118827716,-0.44135028,0.13423464,-0.21364763,-0.05818242,-0.3847381,0.018107593,-0.18687926,-0.1478502,-0.07158527,0.39841804,-0.6770703,-0.043488726,-0.16594325,0.9085908,-0.3308688,-0.018572327,0.7074506,0.97353613,1.0701294,0.03406394,1.4197917,0.23451778,-0.23328452,0.2965413,-0.2552301,-0.7525039,0.42636275,0.33426043,-0.2690872,0.31526908,-0.03431625,-0.062330436,0.5239173,-0.41972452,0.090489835,-0.38385522,0.22158533,0.056151822,-0.15234184,-0.37917265,-0.13916324,0.05341899,-0.023568776,0.1921309,0.14266303,-0.12678203,0.388952,0.00559932,1.6365064,-0.17101943,0.06044312,0.097689286,0.42689914,0.11442323,-0.039486952,-0.095828,-0.019767068,0.41079897,0.001114238,-0.44418657,0.097466595,-0.23182407,-0.6040264,-0.22754075,-0.21054621,-0.0753946,0.075459994,-0.4595502,-0.2165697,-0.09075263,-0.24298725,0.38571694,-2.3236651,-0.20252606,-0.09099139,0.20574096,-0.3481487,-0.39192063,-0.0924723,-0.6081388,0.5777367,0.34804156,0.46722442,-0.6694723,0.41004488,0.39272264,-0.4728449,-0.06724772,-0.67454904,-0.111632586,-0.008547043,0.35582986,0.12836343,-0.3454675,-0.0377196,0.18419012,0.53984475,0.05004242,0.01719879,0.19426209,0.25367236,0.091853015,0.46536142,0.08595514,0.5894506,-0.25093645,-0.21205004,0.49640316,-0.24768785,0.1064221,-0.05801931,0.049633056,0.3482671,-0.508214,-1.0516051,-0.82704556,-0.26508993,1.1915879,-0.009831635,-0.49165827,0.22227083,-0.0385456,-0.11404574,0.09500462,0.38277236,-0.06537528,-0.05325242,-0.9452573,0.07520776,-0.106931746,0.09342767,0.1728538,-0.12353043,-0.4376125,0.6926387,-0.12361396,0.41172677,0.51664996,0.18955638,-0.22020684,-0.6706181,0.043883666,1.0660995,0.33150384,0.09801978,-0.17889665,-0.20684011,-0.51820195,-0.1655609,0.09904662,0.45974624,0.89670956,0.1609546,-0.026467334,0.2435235,-0.09820351,0.039387673,-0.10861181,-0.48735076,-0.19250038,-0.09308903,0.5900126,0.58068264,-0.09075725,0.5297491,-0.27275807,0.4307341,-0.086193435,-0.429067,0.8282827,1.1774987,-0.32325816,-0.24600407,0.62263525,0.32009298,-0.24447784,0.5692564,-0.56806195,-0.40786362,0.49114165,-0.16535614,-0.51479274,0.23848006,-0.37757042,0.20233282,-1.0886284,0.31112358,-0.45631427,-0.21362221,-0.6959161,-0.23856488,-3.1855962,0.24658494,-0.21167973,-0.111564,-0.15416369,-0.09954588,0.3091655,-0.5621631,-0.72451586,0.052167475,0.14068536,0.6403351,0.054293778,0.20916651,-0.1676727,-0.13155958,-0.25302055,0.1237998,0.30230987,0.30052283,0.05777806,-0.5666816,-0.17852291,-0.30348054,-0.36262006,0.0037162472,-0.64051867,-0.5431485,-0.38454276,-0.5833739,-0.3903873,0.6634249,-0.44217312,-0.022078188,-0.21313836,-0.0230292,-0.029380482,0.44214204,-0.05538659,0.10274442,0.14373952,-0.06567611,0.043159015,-0.27161664,0.16411889,0.12020031,0.36538833,0.3422634,-0.24251725,0.35019505,0.63855064,0.80766815,-0.11073792,0.74883974,0.66341645,-0.051124338,0.25712037,-0.33989906,-0.29406285,-0.6932161,-0.28929237,-0.1279478,-0.37189525,-0.4226249,0.004201457,-0.48777753,-0.8140116,0.58164006,-0.039826594,0.14095278,-0.0041970722,0.20262651,0.47147048,-0.11047186,0.0028124396,-0.15521559,-0.22038577,-0.5346464,-0.27683535,-0.7022545,-0.71008044,0.062422164,1.1230365,-0.15201548,-0.10951766,0.107605174,-0.12390341,0.16171122,-0.0101823285,-0.08306558,0.16553299,0.41407317,-0.12028677,-0.7341524,0.31324053,0.06761247,0.011471946,-0.5303277,0.13583595,0.63058203,-0.597388,0.41172817,0.37276697,0.10925056,0.07895529,-0.4676444,-0.06836802,0.062859684,-0.23461658,0.6184139,0.18187052,-0.5229805,0.5841044,0.45957977,-0.1936485,-0.92866147,0.40600216,0.08828328,-0.17667682,-0.1886813,0.24882373,-0.024088949,-0.029673757,-0.30820185,0.08622379,-0.48131114,0.28124565,0.35825938,-0.061743803,0.36745334,-0.26729003,-0.25340256,-0.6905452,0.16214883,-0.5503806,-0.17395964,0.18328269,0.041106045,0.019604731,0.082232684,0.16238788,0.4805307,-0.22468038,0.10285151,-0.017888643,-0.21148491,0.3380402,0.4454913,0.3171479,-0.607056,0.5354024,-0.119355515,-0.15936193,-0.103248544,-0.026202422,0.64383394,0.21649964,0.22639458,0.12139503,-0.08568726,0.22429335,0.66953313,0.05957594,0.42400986,-0.061743736,-0.2647403,0.12464081,0.173993,0.24924242,0.14972349,-0.5251728,-0.12273117,0.106848955,0.104491696,0.51261073,0.12375878,0.37403643,-0.0117866425,-0.42539254,0.0010055285,0.05595319,-0.23353758,-1.3679272,0.5101995,0.2024255,0.78379,0.60941887,-0.07901084,0.054283045,0.5749655,-0.12608641,0.28336906,0.33682722,-0.092303,-0.56350106,0.57602584,-0.71581674,0.2882563,-0.10420859,0.1410575,-0.009975071,0.09160344,0.33575362,0.7623726,-0.11770995,0.18565272,-0.1747688,-0.18007614,0.10436301,-0.25565535,0.103374474,-0.38512015,-0.25739288,0.61867255,0.4302876,0.33319375,-0.24443501,-0.0063125696,0.14319667,-0.11743276,0.15431398,-0.057813384,0.0772323,0.018249536,-0.62588215,-0.37793243,0.47649837,0.16340238,0.039940946,0.008920386,-0.38022688,0.18037164,-0.14496167,0.0062564462,-0.13012658,-0.54625314,-0.12133275,-0.34112805,-0.24767676,0.2801756,-0.10709107,0.1961945,0.15489593,0.183792,-0.45645413,0.23486793,-0.060793154,0.74731946,-0.17967851,-0.1426555,-0.38451743,0.19241704,0.24019426,-0.3330243,-0.20241873,-0.114957705,0.08429216,-0.53088975,0.5311335,-0.121205434,-0.36668733,0.33024198,-0.1459177,-0.20862797,0.5351223,-0.32723758,-0.14194568,0.16726997,-0.13526385,-0.13295425,-0.21063852,-0.074215375,0.12364962,0.15387417,-0.056263976,-0.20883426,-0.18133911,-0.09906908,0.55449986,-0.034634087,0.363932,0.5250805,0.12499833,-0.56252116,-0.10490906,0.23900151,0.49729097,-0.0006201826,-0.07706905,-0.3766813,-0.38094088,-0.3018663,0.16469367,-0.18712887,0.1982541,0.10457156,-0.3922218,0.8249459,0.28560928,1.3343024,0.044970617,-0.28924483,0.08792336,0.45943016,0.10189337,-0.022838023,-0.49097782,0.8034469,0.5996519,-0.20851144,-0.08147007,-0.4475213,-0.14176244,0.18330702,-0.29057068,0.081415996,-0.12081801,-0.6354636,-0.5538856,0.33521032,0.3670527,0.098927006,-0.12212902,0.005339101,0.15741602,0.03378948,0.41776088,-0.4511478,-0.14278826,0.2459788,0.2852576,-0.02686239,0.06805973,-0.59983814,0.41500285,-0.5535377,-0.029408373,-0.21762724,0.19271731,-0.0075684637,-0.27893198,0.22631392,-0.1728106,0.32148758,-0.2657426,-0.4695487,-0.20752159,0.4932028,-0.02349351,0.1292718,0.81911826,-0.30254567,0.07849406,-0.0102658495,0.6507214,1.3171916,-0.2409753,0.119210266,0.3343367,-0.12051056,-0.5227331,0.250262,-0.27417266,0.049789585,-0.15738943,-0.35175762,-0.58839464,0.28609577,0.14777304,0.049011778,-0.057101276,-0.6690514,-0.30355403,0.39460266,-0.30946317,-0.27752906,-0.34359163,0.15097596,0.5926835,-0.33754903,-0.34327602,0.13805723,0.3900475,-0.11368032,-0.5729352,-0.14913228,-0.2871392,0.35934526,0.40133113,-0.4258793,0.025387136,0.1778894,-0.48499024,0.28737068,0.18711114,-0.33225876,0.042448543,-0.25904277,0.008726031,1.0055988,-0.13098311,0.11874038,-0.4955399,-0.4313391,-1.0515406,-0.3454129,0.4232963,0.21246657,-0.016991425,-0.67989564,-0.05344806,-0.28802478,0.039112017,0.11819378,-0.35237795,0.32598948,0.15395218,0.6715691,-0.22191483,-0.6123781,0.04854154,0.12338349,0.001405701,-0.5008192,0.61426705,0.0693547,0.8141793,0.11205638,0.12138124,0.3170588,-0.5937315,-0.021878751,-0.25134543,-0.2619084,-0.74588823,0.14190456 +507,0.61291754,-0.1743935,-0.60405684,-0.16173771,-0.42314413,0.13305414,-0.22976385,0.40418768,-0.030602379,-0.4939389,-0.3733731,0.090130396,-0.11051422,0.17416954,-0.3408303,-0.48287064,0.13033165,0.33607802,-0.45178056,0.5255784,-0.35519344,0.37692523,0.03499505,0.19721402,0.11064913,0.1742979,0.17977658,0.007509994,-0.103576675,-0.3452931,-0.18611957,0.39361635,-0.6203288,0.32166526,-0.2767451,-0.518355,0.024427755,-0.25764894,-0.30656263,-0.7849123,0.08394306,-0.938542,0.5287951,-0.09660999,-0.39690208,0.033834048,0.13690002,0.17648466,-0.19665393,0.003177366,0.16604432,-0.116865456,-0.39634758,-0.24537063,-0.16206674,-0.51028115,-0.6172957,-0.0029911995,-0.5954603,0.024780473,-0.25699422,0.2090652,-0.21578155,0.026139243,-0.102135226,0.5693269,-0.5088487,0.030257208,-0.013153894,-0.0046165967,0.17197539,-0.71704453,-0.13214879,-0.2160323,0.32305288,-0.27164337,-0.2877815,0.087895036,0.24773005,0.50190884,-0.002235653,-0.20459954,-0.34544283,-0.16610506,0.000725082,0.42664808,-0.20168747,-0.5840207,-0.13809007,-0.12611307,0.43380496,0.1710478,0.06892044,-0.1467139,-0.024224052,-0.017259547,-0.32003406,0.45064566,0.54901445,-0.41754952,-0.08360052,0.30628076,0.7711447,0.018888298,-0.28452757,0.023023708,-0.0869477,-0.5895379,-0.21397673,0.07155541,-0.1898315,0.5916691,-0.22695234,0.25850192,0.5804053,-0.22302392,0.010593414,0.5069662,0.058690164,0.015032336,-0.04452598,-0.48263428,0.28948444,-0.57156426,-0.00076808676,-0.20599614,0.69914085,0.1488985,-0.9221164,0.24986432,-0.41857734,-0.08581338,-0.15868106,0.5728979,0.5347301,0.6258749,0.13169873,0.6634921,-0.3736362,0.047566377,0.043911483,-0.20080069,-0.08228583,-0.09490853,-0.09696041,-0.3486115,0.026317282,-0.18103907,-0.12067306,-0.079612836,0.6540557,-0.6773161,-0.29038236,0.00820102,0.6804039,-0.42961338,-0.2621313,0.8438315,0.9021054,0.97921723,0.086110584,1.273344,0.19023266,-0.09653612,-0.09486592,-0.19760929,-0.5443093,0.32495573,0.3638718,-0.15562315,0.2944917,0.04661516,0.11925124,0.2800315,-0.31333214,-0.06858079,-0.23318622,0.2758088,0.05741263,-0.004338552,-0.40185097,-0.2898263,0.12015995,0.14941335,0.16545057,0.34553698,-0.2168113,0.4102168,0.35940948,1.5186504,-0.07247265,-0.077145375,0.10317602,0.38048798,0.24350344,-0.066664524,-0.06673306,0.14040144,0.1860437,0.025306532,-0.54457676,0.070529915,-0.22197822,-0.5206334,-0.34245273,-0.332241,-0.028218577,-0.2632986,-0.42667338,-0.19500338,-0.0846089,-0.33850846,0.5538781,-2.2106266,-0.16367877,-0.06303832,0.4567612,-0.1639627,-0.46036482,-0.20368187,-0.5458818,0.3863244,0.1732616,0.5943969,-0.6705805,0.6348642,0.64195216,-0.5680695,-0.13671717,-0.75192356,-0.1540668,-0.045192074,0.2761069,0.19464506,-0.123363614,0.080301404,-0.020002646,0.5352621,-0.07008683,0.13465759,0.31180364,0.38871378,0.11288678,0.56564057,0.1656997,0.5302177,-0.40992185,-0.2537571,0.55024976,-0.40624303,0.20336355,-0.2479262,0.1116993,0.46580023,-0.5744385,-1.044994,-0.82292575,-0.27864328,1.1741949,-0.22493543,-0.5589569,0.1279597,-0.25283542,-0.23788159,0.013345114,0.3425682,-0.2467433,0.039394345,-0.81762666,-0.100494385,-0.011171971,0.3303647,0.027634498,0.05647099,-0.5402733,0.56691784,-0.106135726,0.49769384,0.30213282,0.27900973,-0.3786797,-0.4343756,-0.054908894,1.160743,0.486747,0.08627667,-0.305526,-0.28272176,-0.32789835,0.14644723,-0.013553883,0.6863987,0.63251984,0.0017583178,0.057867937,0.25206277,4.715153e-05,0.08520079,-0.28470963,-0.36319605,-0.22200845,0.21472253,0.57942927,0.5993857,-0.12700854,0.58547074,-0.09880565,0.44245413,-0.07582772,-0.57926136,0.37596402,1.1497585,-0.21912594,-0.3827253,0.67404366,0.44620946,-0.36410537,0.47275427,-0.84757966,-0.47759086,0.35597435,-0.08072996,-0.34518725,0.2532936,-0.33242288,0.30769423,-0.8758071,0.48911864,-0.4589456,-0.5748619,-0.56303495,-0.2132227,-2.8146808,0.30550224,-0.08105976,0.02779861,-0.0025793484,-0.48459557,0.13829839,-0.64873666,-0.6723239,0.114758015,0.07173819,0.6520204,0.030732628,0.09970135,-0.15369861,-0.467851,-0.0613064,0.39537653,0.2336824,0.3081348,-0.15357237,-0.5580712,-0.024628673,-0.19657342,-0.36649057,-0.117419206,-0.6251931,-0.54572785,-0.04940513,-0.62394947,-0.24818094,0.63048416,-0.37036243,0.02979814,-0.14898536,0.029472578,-0.09482376,0.3164346,0.019544752,0.051955145,0.04667334,-0.117092736,0.040031973,-0.24494873,0.25141364,0.014512032,0.2235163,0.4030783,-0.18157971,0.27480826,0.63967794,0.67050844,0.0070349746,0.97552997,0.40479738,-0.16330361,0.3183809,-0.1256587,-0.57070667,-0.75885004,-0.21215561,-0.04409207,-0.43700388,-0.2859377,0.11777533,-0.43195254,-0.87708706,0.7547706,-0.07837959,-0.092785425,-0.043085046,0.52179897,0.49738804,-0.15807867,-0.14426324,-0.17407598,-0.29206735,-0.5402227,-0.48489562,-0.64499325,-0.34467492,-0.15670545,1.3866061,-0.2685298,0.047249325,0.03626975,0.12775984,0.09643229,0.34840775,0.013143202,0.19670527,0.4676502,-0.14841302,-0.62913185,0.3854765,-0.114134505,-0.18173984,-0.30648157,0.13139711,0.7278232,-0.7690965,0.37414792,0.5263116,-0.025305884,-0.1052118,-0.7448648,-0.17947422,0.11804652,-0.17801574,0.49437883,0.3708706,-0.75158066,0.5030981,0.24964583,-0.1790199,-0.68911177,0.66398114,-0.06364953,-0.21535107,-0.12999548,0.49429178,0.10783128,-0.036014337,-0.36312225,0.056695104,-0.2813106,0.20534785,0.11974406,-0.06666069,0.24530001,-0.39439037,-0.19629121,-0.96668285,0.022833666,-0.5089227,-0.29511333,0.18957336,-0.124597296,-0.008068391,0.4052,0.25973675,0.4872571,-0.47717842,-0.022538813,-0.16663341,-0.3417999,0.3749954,0.42389226,0.6250715,-0.4330447,0.46622214,0.04444066,-0.06100104,-0.23928706,0.03006805,0.4953284,-0.048820037,0.41666082,0.15004608,-0.1023289,0.24131565,0.8904285,0.28687721,0.40201634,0.068516575,-0.21680303,0.033601053,-0.034933332,0.37385172,-0.11702054,-0.5667213,0.12855636,-0.11728766,-0.0075449455,0.5240912,0.08043708,0.34811,-0.20810196,-0.23131824,-0.032257415,0.27899426,0.05800849,-1.3133522,0.42814094,0.19144467,0.8426914,0.56162643,0.12847196,0.04759874,0.6171497,-0.38772205,0.19126053,0.33991084,0.169364,-0.33197388,0.42029324,-0.59347343,0.52014583,0.00566414,0.06721917,-0.095189296,-0.32044214,0.3486214,1.0984744,-0.024728434,0.124039635,0.013223103,-0.25848714,0.31832942,-0.47482994,-0.073808685,-0.50862503,-0.11967309,0.9427367,0.44967103,0.4305849,-0.03150616,-0.05962146,0.122101665,-0.10715289,0.36575896,0.00050196477,0.26454666,-0.1336417,-0.43448713,-0.06592412,0.5237514,0.15613307,0.08716404,0.14683056,-0.2796556,0.37802213,0.009770905,0.13327734,-0.10000765,-0.6710826,-0.056632962,-0.39309806,-0.30826113,0.49525532,-0.19964156,0.099357486,0.28787392,0.040040605,-0.41682407,0.12847802,0.26544163,0.46975836,0.23276523,-0.0322666,-0.21355602,0.2025163,0.26340154,-0.2979818,-0.045622732,-0.29763627,0.34565213,-0.86204445,0.33246794,-0.23620622,-0.49146292,0.16166271,-0.0037549522,-0.021800442,0.5702455,-0.022532126,-0.2836308,0.03708234,0.059124894,-0.14245515,-0.1297233,-0.2571903,0.208967,0.19360168,-0.13655356,-0.21870331,-0.11913336,-0.07878531,0.47261164,-0.047800038,0.4248342,0.35337016,0.17897627,-0.50535077,0.02511606,0.09262203,0.6228438,-0.2531528,-0.018838236,-0.27158114,-0.3876405,-0.2563881,0.2259904,-0.078105055,0.25026882,0.20934023,-0.19859298,0.6626855,-0.15299633,1.1214526,0.018013034,-0.31272227,-0.0001765745,0.54442227,-0.04562504,-0.07327569,-0.30081782,1.1418607,0.49382016,-0.15650065,-0.17507641,-0.46027848,-0.08335883,0.005897624,-0.15984178,-0.26795965,-0.09737213,-0.58734846,-0.21525216,0.16399722,0.35212097,0.053332526,-0.041445564,0.09786839,0.38727397,0.14970635,0.2418495,-0.6298361,-0.04728503,0.4479727,0.30458122,-0.17710291,0.05192085,-0.48240545,0.30799457,-0.49904945,-0.013042869,-0.40439504,0.19384088,-0.27237418,-0.31183353,0.213101,0.26095963,0.31768373,-0.18824475,-0.38642427,-0.3096199,0.4331443,0.10172911,0.07648832,0.5157792,-0.26507398,0.14030328,-0.07440597,0.50048107,0.93351567,-0.31754836,-0.04695469,0.38710532,-0.2568533,-0.49647596,0.27009884,-0.6073813,0.07589245,0.048839383,-0.19149558,-0.6261514,0.3103662,0.3251221,0.026031375,0.1432866,-0.652362,0.019387024,0.23764549,-0.31652758,-0.05868073,-0.266287,0.13235702,0.74091846,-0.42323425,-0.22149386,-0.0055227196,0.32854956,-0.21251014,-0.51715153,-0.022621645,-0.3400996,0.36440706,0.1614826,-0.387881,-0.056432962,0.019768408,-0.4077356,0.18736006,0.5180903,-0.31055602,0.12900944,-0.39164025,0.2169429,0.7833253,-0.09360523,0.26324707,-0.16244231,-0.45642784,-0.7905174,-0.098566905,0.2890366,0.29012677,-0.06633099,-0.7344963,-0.010158663,-0.26839757,-0.2543927,-0.021457851,-0.30755973,0.5195106,0.17591882,0.39036307,0.033405118,-0.9576683,0.18699421,0.08609979,-0.18342482,-0.40166825,0.5650664,-0.16533026,0.89307976,0.13033597,0.027356679,0.21848191,-0.65858024,-0.053048976,-0.23565276,0.078851044,-0.7189782,-0.07035757 +508,0.20839795,-0.23320669,-0.27750412,-0.04980665,-0.18748668,0.055032555,-0.06227998,0.29266256,0.1639896,-0.21177272,-0.22720115,-0.13077432,0.122595504,0.51428556,-0.1438552,-0.6003743,-0.1773817,0.053184763,-0.7050668,0.39590275,-0.6086069,0.22855447,0.052104782,0.38749468,0.089229725,0.3958674,0.33624285,-0.33034974,-0.038188815,-0.00874265,-0.23820741,0.06611471,-0.46945572,0.15981182,-0.073936544,-0.2302358,0.18852122,-0.5036356,-0.3205728,-0.6207835,0.2419629,-0.79980177,0.41477972,-0.08368016,0.022315998,0.1517894,0.22836414,0.30916864,-0.54370755,0.0060100695,0.1673507,-0.13305551,-0.06994187,-0.2710195,0.10055666,-0.37678066,-0.3653343,-0.013991123,-0.5194181,-0.3997281,-0.1611868,0.08979817,-0.35782018,0.07012733,-0.0904293,0.2678831,-0.37236091,-0.050727885,0.2674165,-0.25884256,-0.010002887,-0.46436444,0.036662403,0.046198267,0.48913842,0.038891055,-0.057374246,0.41782808,0.24387763,0.36066395,0.1364927,-0.18038104,-0.16360071,-0.2470551,0.11827299,0.4955911,-0.07534606,-0.5710203,-0.03743149,0.26970273,0.03373424,0.32503065,-0.031631026,-0.20782048,0.010159182,-0.07733572,-0.2173833,0.36621937,0.5810435,-0.31397438,-0.30379498,0.39764553,0.5666706,0.2321152,-0.11119384,-0.11216596,0.02879507,-0.4752715,-0.10426514,0.044573452,-0.14516118,0.5159735,-0.04959281,0.25480476,0.8805731,-0.14999028,0.06975384,-0.029953847,-0.070353515,-0.2051437,-0.1547232,-0.13674076,0.06360181,-0.41977125,0.03948715,-0.31875798,0.7702372,0.23827794,-0.66416717,0.45041835,-0.5116927,0.16042216,-0.0275418,0.58020717,0.46578053,0.39802685,0.3841069,0.6971602,-0.44998223,0.2127112,-0.14229806,-0.5316585,0.010969766,-0.20471616,0.06775243,-0.42824575,0.16859215,-0.122657865,0.10875727,0.053225335,0.15869766,-0.48015058,-0.042655006,0.17679039,0.89434296,-0.35091242,0.049605347,0.7387804,1.052665,0.95692027,-0.06810602,1.096569,0.35503095,-0.2759077,0.18909487,-0.35015264,-0.7133649,0.20246018,0.4262921,0.10074175,0.18186472,-0.05648321,-0.047233775,0.2458559,-0.4369094,0.03354633,-0.088084176,0.40625817,0.23921426,0.0069398223,-0.44216108,-0.16312605,0.011547157,-0.10910844,0.15703987,0.26126608,-0.26586926,0.38057986,-0.029813834,1.5497915,0.07182158,0.19633128,0.08472312,0.6411896,0.18148498,0.060799997,-0.2095695,0.44616386,0.45691592,-0.08926323,-0.61614645,0.21047634,-0.382286,-0.4640936,-0.10250981,-0.40365422,-0.11133407,0.05314288,-0.30793524,-0.10434841,-0.04011968,-0.16628547,0.36191216,-3.0749674,-0.2583524,-0.04691015,0.2740029,-0.4123543,-0.041827958,-0.035196066,-0.56119734,0.24517842,0.23645741,0.47178724,-0.6819917,0.5082113,0.35597423,-0.41326487,-0.2399642,-0.57066065,-0.091552615,-0.022821682,0.5277411,-0.02290957,-0.08598062,-0.23876637,0.088137306,0.6431096,0.008476222,0.12092975,0.36383066,0.44280016,0.26654023,0.5831228,-0.01291406,0.5544596,-0.4441959,0.022135073,0.26708892,-0.21151753,0.29444394,-0.19012037,0.07324306,0.4004845,-0.4730144,-0.7996073,-0.53986275,-0.22314148,1.0690863,-0.45345482,-0.31310543,0.17817098,-0.09113694,0.055129964,-0.074682444,0.52140063,-0.18120816,0.00072346925,-0.64170057,0.19855699,-0.037251554,0.16203955,0.02145792,0.07729039,-0.26647803,0.612851,-0.06269524,0.6137769,0.25697377,0.26548257,-0.14306569,-0.12861617,0.105325244,0.7395187,0.18780541,0.015139715,0.039813768,-0.23960909,-0.007055072,-0.2518522,-0.053980887,0.5303297,0.7304611,0.06820318,0.09529962,0.22569595,-0.089351445,-0.02165415,-0.15829936,-0.124389075,-0.01912738,0.0051570544,0.41668993,0.70881444,-0.2420039,0.47696218,-0.22367702,0.25765598,-0.01352064,-0.47084185,0.56833816,0.29707372,-0.20589164,0.034228943,0.3490315,0.53448826,-0.36384937,0.35548952,-0.55056036,-0.24288599,0.80232847,-0.24763156,-0.44734085,0.20435794,-0.12481297,0.11353137,-0.7913501,0.27229118,-0.18913594,-0.40545088,-0.5004558,-0.06992841,-3.4078085,0.049801525,-0.14979678,-0.16734466,-0.23197703,0.023737805,0.13882573,-0.63004786,-0.4997985,0.14695533,0.20479712,0.46078414,0.029173354,0.19426364,-0.3316216,-0.07571193,-0.2821493,0.07650148,-0.020092558,0.16488044,0.0037822365,-0.4331816,-0.065908246,-0.070711754,-0.46980843,0.3106557,-0.48416424,-0.33258632,-0.07550541,-0.45034778,-0.3005513,0.6201936,-0.34847316,-0.02811767,-0.19596092,0.013378571,-0.23241732,0.12555437,0.2390733,0.12045538,0.04843549,-0.110753424,0.17247722,-0.39617643,0.5144502,-0.057102904,0.3602637,0.17197797,0.17037304,-0.028372265,0.3579535,0.6469074,0.0012759328,0.85182387,0.28165582,-0.11215033,0.28517768,-0.42840183,-0.29204655,-0.39734328,-0.38868216,0.07822945,-0.33372396,-0.52150315,-0.0737362,-0.33275935,-0.6164905,0.4778062,0.056864142,0.29943052,-0.09426728,0.24004501,0.48201567,-0.18861346,0.05746245,0.034541164,-0.035441402,-0.6338628,-0.25615594,-0.68101275,-0.48094234,0.0912857,0.80958164,-0.2509604,-0.13571982,-0.2574697,-0.30659547,0.011363983,-0.09425783,0.057255816,0.4353219,0.38961878,-0.11752563,-0.75688773,0.6063356,-0.1646851,-0.14404087,-0.50294393,-0.03364609,0.5429381,-0.7923281,0.4646396,0.26130265,0.06894981,0.085501246,-0.42884588,-0.21538846,0.0148402015,-0.04262594,0.19443093,0.003464663,-0.7475923,0.50215834,0.3155751,-0.50843626,-0.6796672,0.14713958,-0.024417615,-0.389388,0.042213973,0.24534872,0.29833105,-0.086186394,-0.23765449,0.08675163,-0.5208524,0.36465406,0.120590284,-0.035075285,0.39880288,-0.15015851,-0.3509518,-0.61410147,-0.13649149,-0.37729114,-0.121116035,0.34097666,0.11279712,0.042892918,0.07226248,-0.046709027,0.37337816,-0.32652834,0.050248936,0.06262281,-0.25056642,0.1961977,0.35190842,0.32426804,-0.47776878,0.54540455,0.105317675,-0.11327278,0.20266373,-0.015762066,0.3106225,0.1296676,0.29394072,-0.11297576,-0.22048712,0.47677276,0.7471686,0.14858226,0.29153264,0.02340018,-0.17456481,0.5044922,0.04349832,-0.04062321,0.20919634,-0.39088258,0.060083885,0.021342056,0.110790364,0.4506606,0.34082305,0.37306765,0.12187294,-0.21260755,-0.0077311792,0.25242084,-0.10807726,-0.99494344,0.3898706,0.18738794,0.85920936,0.34764448,0.10305931,-0.04751265,0.6591494,-0.20833853,0.07726297,0.32604933,-0.027611073,-0.53769857,0.76106566,-0.54628557,0.5096291,-0.14135045,-0.09010019,0.08005655,0.14824532,0.22023821,0.79537845,-0.21662147,0.010202727,0.025147093,-0.14722899,-0.036445554,-0.3421126,-0.04020146,-0.4163221,-0.30746603,0.41317406,0.3452093,0.1940438,-0.13853852,-0.07013928,-0.04059168,-0.1731722,0.17404468,-0.047544356,0.02659425,0.07827243,-0.66422355,-0.3382024,0.54838365,-0.03807079,0.22371654,-0.21210937,-0.23217858,0.17735665,-0.32955158,-0.14616974,-0.0005591651,-0.49233797,0.1673562,-0.1367045,-0.46099937,0.29351494,-0.18337385,0.27548367,0.1403826,-0.04404513,-0.23636302,0.23062481,0.07609712,0.8932096,-0.107576095,-0.3001852,-0.48724887,-0.07873292,0.21253572,-0.1446023,0.10306371,-0.38947037,-0.050744805,-0.44966692,0.6175711,-0.1723141,-0.2696219,0.14666374,-0.35738984,-0.018506024,0.6130837,-0.08078194,-0.08468275,-0.18496396,-0.15866007,-0.4553086,-0.051194,-0.3607294,0.17377545,0.30147108,0.06749033,0.03134951,-0.2381488,-0.23098345,0.64429206,0.052484546,0.48885968,0.16680704,0.032432318,-0.07077717,-0.082979426,0.07639112,0.38752773,0.21132298,-0.03225182,-0.40512225,-0.32806763,-0.30944923,0.21456775,-0.20168668,0.18709926,0.020672692,-0.31849864,0.7369372,-0.010077574,1.1888893,0.1415722,-0.24943513,0.13204564,0.5863121,-0.06802692,0.06485756,-0.4306335,0.81594646,0.5474809,0.021629453,-0.0027074656,-0.37101367,-0.089971304,0.37857386,-0.34131902,-0.18305579,-0.02299652,-0.30568233,-0.43412405,0.19655643,0.2177692,0.24572173,0.032668784,-0.2167448,-0.065462664,0.16652988,0.49474207,-0.5181627,-0.2517432,0.26983958,0.1365966,-0.03679619,0.09916702,-0.39485553,0.5084354,-0.48146492,0.18993454,-0.4001261,0.06785533,-0.14014135,-0.2210931,0.13707668,0.0020803988,0.41797325,-0.32763547,-0.53455395,-0.0196409,0.362101,0.07432036,0.20666704,0.56917155,-0.1668588,-0.0457383,0.11482366,0.5756724,0.93623084,-0.4000294,0.11484321,0.37344503,-0.37916392,-0.55875415,0.4432464,-0.2523752,-0.08712778,-0.07450824,-0.24464537,-0.4987177,0.3309341,0.23246117,0.015201994,-0.05468239,-0.45960584,-0.24078865,0.48327824,-0.2995408,-0.32160708,-0.2878685,0.28138766,0.75479543,-0.35262054,-0.16076487,0.09951404,0.26154423,-0.24667886,-0.51935166,-0.14093632,-0.30760816,0.33769673,0.16104965,-0.106294125,-0.14407301,0.19411786,-0.4365902,0.13406903,0.08673752,-0.37980232,0.09441535,-0.078465395,-0.032174803,0.8800115,-0.27224478,0.03377303,-0.87254006,-0.31522706,-0.8543139,-0.44105855,0.49436945,0.08839854,-0.028785255,-0.38387024,-0.046300914,0.10581711,-0.1387763,0.0038062194,-0.5287147,0.31793335,0.020916771,0.49384117,-0.21031275,-0.74347967,0.07708573,0.035511136,-0.1761414,-0.564087,0.68760693,0.044524226,0.7202451,-0.05151031,-0.09010072,0.107418604,-0.34851846,-0.032090366,-0.45176107,-0.17366965,-0.7371662,0.22641271 +509,0.34157935,-0.023922686,-0.606838,-0.06673883,-0.076514125,0.24658781,-0.09421153,0.55009604,0.13826074,-0.4114552,-0.2023406,-0.05154179,0.06869525,0.16960065,-0.16511229,-0.40778053,-0.08105531,0.14820513,-0.49626762,0.50523967,-0.31743354,0.15948498,-0.1411955,0.37607566,0.06051261,0.27799812,-0.03243781,-0.1342978,-0.24768128,-0.013453372,-0.046368472,0.5576168,-0.31858087,-0.04153593,-0.2168766,-0.18663603,-0.0033457354,-0.38407332,-0.38675952,-0.6125736,0.27401355,-0.7777752,0.45928875,0.027890973,-0.2531763,0.3865473,0.082051456,0.13654232,-0.20181039,-0.11271596,0.114402026,-0.060320348,-0.02227594,-0.20044675,-0.23711443,-0.35444692,-0.49171883,0.07627821,-0.39557108,-0.0718357,-0.22084403,0.1259596,-0.2837754,-0.096698105,-0.11620523,0.41359806,-0.5014896,0.2064957,0.1305733,-0.059807204,0.14695969,-0.72850806,-0.15017025,-0.088214,0.2311876,-0.25626338,-0.07343424,0.21707411,0.3450745,0.47056097,-0.16001034,-0.039211754,-0.43206042,0.036354307,0.13694014,0.42253518,-0.31067625,-0.49435723,-0.005742319,0.10118528,0.14469868,0.11951689,0.11065602,-0.14254785,-0.19999766,-0.1044385,-0.15003242,0.25288478,0.5065657,-0.28659767,-0.2947607,0.42845938,0.49867266,0.2311281,-0.15777661,-0.14926551,-0.015509626,-0.4046049,-0.100613,0.07163233,-0.17748138,0.5095337,-0.06199587,0.18784921,0.5331971,-0.03454249,0.11536198,0.093470015,0.16272892,0.086436056,-0.23424923,-0.0057746675,0.046145722,-0.2248755,0.1181921,-0.082236305,0.57102776,0.08271201,-0.6587555,0.35667786,-0.47368288,0.09789752,-0.06081073,0.43766886,0.582811,0.32894617,0.15525448,0.4986275,-0.25108805,0.046744443,-0.055290103,-0.2698717,0.12110754,-0.047518287,-0.11918993,-0.5910953,0.11654732,0.023602467,-0.101889834,0.13974035,0.22135891,-0.4853893,-0.10693413,0.2622011,0.85471946,-0.2939383,-0.1965149,0.54653037,0.92094964,0.6760081,-0.03962151,1.1542281,0.11625635,-0.11581996,0.31722325,-0.47994307,-0.6787537,0.17615739,0.3177692,-0.28109342,0.26844883,0.18117365,-0.051123302,0.4253009,-0.34890622,-0.004456859,-0.24720046,0.16616261,0.17697653,0.01785085,-0.3443696,-0.2871576,-0.1560046,0.026296176,0.16008289,0.24121475,-0.22321065,0.1939906,-0.017104715,1.7335783,-0.045002766,0.10295726,0.11129656,0.36502355,0.16687551,-0.009994863,-0.007945754,0.4733106,0.16557568,0.06051163,-0.43050998,0.1779605,-0.14241487,-0.57666993,-0.12406877,-0.32881042,-0.096191764,0.09478017,-0.51903003,-0.09574711,-0.19645111,-0.33008724,0.45503128,-2.9099863,-0.08496471,-0.08675025,0.42122355,-0.21980652,-0.41660067,-0.3360968,-0.35979056,0.35964102,0.26749936,0.46349797,-0.6444826,0.36007625,0.18874864,-0.44916293,-0.10241818,-0.53386587,-0.1884939,0.035470165,0.27754843,0.021465996,0.021886382,0.16099903,0.08124321,0.34349436,-0.17788845,0.10415368,0.28439653,0.39128327,-0.008542702,0.30713493,-0.15201893,0.5395478,-0.1547949,-0.2802233,0.2803898,-0.38075966,0.38325173,-0.091581784,0.13933809,0.27442282,-0.32244253,-0.863032,-0.544452,-0.08379724,1.2983624,-0.13540016,-0.32243136,0.18617995,-0.33480442,-0.20663804,-0.1621324,0.46406096,-0.16447984,-0.14708519,-0.84204054,0.12153278,-0.1825875,0.19419253,-0.049948473,0.003869757,-0.38433385,0.6170863,-0.057538517,0.5176301,0.3528072,0.18967009,-0.09242091,-0.31395227,-0.031619254,0.8220685,0.39414954,0.08096506,-0.15190053,-0.28910798,-0.28629836,-0.0005709864,0.11649657,0.54788125,0.38296035,0.036579113,0.19949421,0.2664249,-0.0039080624,0.057572458,-0.17758858,-0.2756489,-0.07416308,0.050982174,0.4599828,0.63963956,-0.39821336,0.39004666,-0.15690488,0.31738335,-0.10463937,-0.37751183,0.3245914,0.77337426,-0.17769298,-0.2572422,0.59403706,0.5562748,-0.33229697,0.2899308,-0.47139144,-0.28449616,0.43024495,-0.23124646,-0.29044455,0.17729114,-0.2663445,0.03178668,-0.8857272,0.3558402,-0.2807519,-0.33465648,-0.56831044,0.020939395,-2.9039965,0.14404982,-0.22073679,-0.16693005,-0.1489835,-0.08954622,0.10178978,-0.6303819,-0.47500262,0.15580873,0.12733713,0.43709713,-0.0773471,0.16810647,-0.14337404,-0.29248032,-0.10531397,0.11913216,0.21655166,0.37410372,-0.17569637,-0.54652846,-0.07181366,-0.10051243,-0.24348855,0.18566993,-0.65546393,-0.37176737,-0.011885009,-0.5102558,-0.19579661,0.5107192,-0.44262478,-0.07331212,-0.21626224,0.09589228,-0.0851886,0.27680796,0.07799817,0.15398681,0.022237182,-0.041050643,0.09426908,-0.25572628,0.43900204,0.04692482,0.27931678,0.5199548,0.020512078,0.15231277,0.5064546,0.49500835,-0.08970583,0.75521123,0.5782895,-0.039026733,0.26596716,-0.25659895,-0.15687399,-0.4288153,-0.3548838,0.011191161,-0.40710792,-0.3923485,-0.05605556,-0.40254146,-0.8343761,0.4162707,-0.10254046,0.00082897395,0.0071487874,0.22313657,0.597272,-0.17586334,0.049345143,-0.06994296,-0.100469775,-0.4713808,-0.362175,-0.57031834,-0.33965775,0.07255953,1.0855725,-0.2587304,0.10264119,-0.0635017,-0.11536461,-0.14450729,0.1809677,0.01905346,0.16882476,0.58469087,-0.15733282,-0.52442145,0.3925706,-0.13319334,-0.2965153,-0.5525868,0.21022128,0.40449202,-0.6107421,0.67727,0.4080771,0.04868027,-0.07070542,-0.57324976,-0.1710342,-0.095227584,-0.22268689,0.26242954,0.19464919,-0.66827756,0.36689132,0.29329118,-0.24801345,-0.6767843,0.54896116,-0.041492265,-0.3291109,-0.027718272,0.3043273,0.062902644,-0.007173948,-0.18144764,0.13441932,-0.28224245,0.37969267,0.11959619,-0.07981466,0.3751038,-0.21035369,-0.10213128,-0.7110472,0.01627276,-0.4824239,-0.29085535,0.2998021,0.11275213,0.15333264,0.020666145,0.038776886,0.34757793,-0.5058874,0.043958515,-0.058672015,-0.21227194,0.2314901,0.25740254,0.48288548,-0.42099577,0.45630607,0.0059055574,-0.103597626,0.09503804,0.19101125,0.5185507,-0.011895396,0.24660324,0.06724633,-0.17201589,0.24670248,0.68486345,0.11083948,0.360709,-0.053197384,-0.26067847,0.32386485,-0.07884242,0.00371461,-0.12803613,-0.42871925,-0.0036641285,-0.124214396,0.21787284,0.47740746,0.12671465,0.37365618,-0.12875941,-0.26958188,0.046958845,0.26484263,0.2304119,-0.93619955,0.22884694,0.10317109,0.867447,0.27160847,0.089605644,0.011914946,0.5039022,-0.146534,0.14738247,0.45308238,-0.15117316,-0.5785719,0.529095,-0.6337825,0.37587747,-0.007462986,0.015689226,0.0648572,-0.010419935,0.26591274,0.7871925,-0.1830388,0.019254304,0.12056307,-0.41283715,-0.014745681,-0.25706574,0.098291434,-0.57861906,-0.22812992,0.46941617,0.62062484,0.31149408,-0.22140019,0.015657067,0.14664853,-0.09362446,0.11224674,0.11577102,0.29426485,-0.01986004,-0.68226326,-0.21307878,0.53406274,-0.029262774,0.1374754,0.029203907,-0.19446439,0.36444265,-0.10816142,-0.07810031,-0.03517254,-0.36330473,-0.0525829,-0.29827008,-0.43972746,0.4174324,-0.2018006,0.29573053,0.17298281,0.037171736,-0.32406533,0.4844776,-0.01624412,0.8007661,-0.040196735,-0.10087323,-0.48921725,0.24918208,0.22643107,-0.101514,-0.13375378,-0.39125037,0.13890451,-0.39964315,0.40228853,-0.09181355,-0.15479134,-0.05305604,-0.19405083,0.02339533,0.5003283,-0.013722625,-0.122898325,-0.15126473,-0.10288292,-0.44408137,-0.1388985,-0.09905031,0.26042143,0.23454323,-0.070431605,-0.17782465,-0.17942303,-0.11996086,0.31754813,0.12423085,0.33273625,0.45350683,0.11064408,-0.28281772,-0.16776676,0.2548172,0.5118124,-0.04644253,-0.11958513,-0.3270952,-0.43889675,-0.28446943,0.1229409,-0.21707338,0.2788066,0.23826706,-0.1155281,0.65457535,-0.01008147,1.1214718,0.15866926,-0.23649268,0.02888693,0.357108,0.011191264,0.01470547,-0.2852224,0.845538,0.53377587,0.1328396,-0.07638456,-0.33134606,-0.026962664,0.021973591,-0.087795116,-0.12373543,-0.09703592,-0.6209841,-0.3488757,0.15667583,0.14936286,0.2865191,-0.0642,0.15137559,0.11722288,0.0991855,0.21478803,-0.40652022,-0.25991008,0.23792392,0.28447548,-0.023545831,0.191135,-0.44626504,0.4242072,-0.42088312,-0.090425625,-0.22685549,0.1945417,-0.044930626,-0.2645342,0.11925585,-0.2045081,0.38098627,-0.3924472,-0.2552952,-0.26329666,0.46020013,0.13902307,0.09864537,0.4811896,-0.19148669,0.050597217,0.011634536,0.5209958,0.87277603,-0.2524661,0.07355094,0.3919471,-0.23806642,-0.70445293,0.2306765,-0.24892384,0.20982939,-0.16221917,-0.12909405,-0.536921,0.39143467,0.07909874,-0.026850767,-0.1363773,-0.42237455,-0.095541745,0.18998966,-0.33815545,-0.17099628,-0.22000827,0.04333123,0.6225916,-0.26319906,-0.29409933,0.065678984,0.24645203,-0.13362908,-0.43098128,0.03533683,-0.4224137,0.2454951,0.1260989,-0.25707224,-0.15720078,0.11166128,-0.297859,0.20532468,0.28550017,-0.22586803,0.024189103,-0.26645386,-0.023769952,0.8902818,-0.1386474,0.16303535,-0.4628289,-0.44162938,-0.7596909,-0.22960547,0.32654655,0.06742707,0.024761844,-0.6873275,0.01617793,-0.12898965,-0.33389673,-0.18967474,-0.3390442,0.43482065,0.07929659,0.15486851,-0.2739867,-0.6001564,0.12658358,0.059300013,-0.16198337,-0.50946647,0.43244886,-0.035971396,0.97465044,0.058645286,0.13327631,0.34830558,-0.32875365,-0.16424775,-0.19363579,-0.15451927,-0.6150231,-0.051552847 +510,0.41129443,-0.15848988,-0.4143674,-0.37374204,-0.55595124,0.10497449,-0.25126848,0.07307747,0.217644,-0.59411,-0.051971808,-0.25898525,-0.039266504,0.24783534,-0.28095502,-0.8336814,-0.017509073,0.007286384,-0.49403983,0.5338863,-0.60000414,0.31099173,0.12576683,0.12469872,0.092047505,0.295469,0.4564037,-0.28796414,-0.12951055,-0.13519557,-0.066649966,-0.07266942,-0.8005556,0.42031315,-0.18231367,-0.35461947,0.2725218,-0.36302167,-0.2693352,-0.63710403,0.40300104,-0.90672356,0.51108354,-0.04651401,-0.26341248,0.12137138,0.2986181,0.18188198,-0.30810708,0.1477004,0.29541835,-0.23893283,-0.025051478,-0.122713804,-0.2781091,-0.73585045,-0.7059699,-0.024835011,-0.7627185,-0.2705064,-0.4053763,0.3491367,-0.3776091,-0.0721591,-0.28747368,0.45180097,-0.4927642,-0.038290773,0.06504896,-0.19327109,0.35837877,-0.45196757,-0.29707548,-0.18214224,0.12654355,-0.1325908,-0.010237102,0.3506089,0.17770712,0.49904612,0.21288148,-0.34787947,-0.18877046,-0.07919566,0.0905505,0.42817885,-0.031253356,-0.23207012,-0.23722951,-0.15689391,0.18251991,0.3756675,-0.013634159,-0.23686594,0.15494975,0.10433826,-0.42551547,0.4830566,0.47485656,-0.31856588,-0.35798916,0.21811257,0.25090504,-0.28344557,-0.1931229,0.14691065,-0.05796703,-0.44666788,-0.37313846,0.30926964,-0.25305197,0.5552851,-0.34871066,0.23829857,0.8593501,-0.26904207,0.0402349,-0.15066156,-0.10703052,-0.17669106,-0.18913959,-0.094238706,0.24420527,-0.7601173,-0.025674032,-0.34816912,0.87205887,0.07202061,-0.7102891,0.3081608,-0.5271884,0.013279488,-0.18743102,0.59872127,0.54454684,0.47171742,0.27361652,0.7849598,-0.610738,0.03043463,-0.034839507,-0.45016736,0.1803721,-0.28075105,0.2389557,-0.36109522,-0.05576063,0.13128206,0.24412958,-0.24724367,0.47027934,-0.40182698,0.020035084,0.16996704,0.78457963,-0.4176114,0.11543802,0.89040685,1.1433985,1.0150585,0.1141731,1.5407217,0.23575085,-0.24347752,0.1616714,-0.26052597,-0.48899093,0.17366208,0.3800361,0.24390925,0.12043785,0.14808936,0.14902352,0.3737848,-0.32370996,-0.0056351516,-0.18414123,0.27320334,-0.11599306,-0.055970564,-0.5417474,-0.23384163,0.21393606,0.044372484,0.14115268,0.32135704,-0.07591745,0.40820238,0.21818517,1.103016,0.059112504,0.1946454,0.008150715,0.5525911,0.17095663,0.121388994,0.09917518,0.1555971,0.16778935,0.23676579,-0.6168444,-0.10369077,-0.33543462,-0.4636998,-0.25798732,-0.42842403,-0.06819168,-0.38484985,-0.4671653,-0.24379233,-0.069874436,-0.45691353,0.3494446,-2.3296666,-0.36748812,-0.23933417,0.2877398,-0.15375766,-0.1709884,-0.0020360856,-0.60986894,0.5479459,0.48519304,0.49379143,-0.63329375,0.5196921,0.5707064,-0.4343509,-0.08330404,-0.6643992,-0.14135021,-0.33215138,0.47996983,0.096642256,-0.24878153,-0.39154866,0.1487201,0.70679134,0.13496414,0.12652904,-0.009609823,0.5335153,-0.05510632,0.7821507,0.2554832,0.41715506,-0.36159915,-0.06689734,0.25382644,-0.46759132,0.26459953,-0.045104206,0.20816357,0.4651977,-0.72163856,-0.9039241,-0.78364444,-0.7194456,1.0027636,-0.19951695,-0.40730646,0.31029508,0.058385007,-0.29636416,-0.037740346,0.42204666,-0.15568492,0.25859195,-0.68142384,0.12483089,-0.17765154,0.2475276,0.0144214425,0.14213352,-0.4758208,0.8586343,-0.16272023,0.38104203,0.25026646,0.18134008,-0.41798884,-0.43455428,0.22042133,0.9710782,0.4520861,0.13025111,-0.15758404,-0.29145575,-0.023419619,-0.20885287,0.118304975,0.5640234,0.78681886,-0.063256264,0.0069444273,0.47960335,-0.28321642,0.16957949,-0.062383812,-0.33931258,-0.14029573,0.16786374,0.5515493,0.5382021,-0.078052655,0.2845528,-0.1725777,0.38259146,-0.29360723,-0.49083328,0.43859193,0.91371316,0.016896416,-0.05591784,0.73634785,0.70635724,-0.32035553,0.5849424,-0.58437276,-0.51770806,0.53360564,-0.09947182,-0.6110047,-0.19308347,-0.49341008,0.02916034,-0.9570593,0.314625,-0.30350664,-0.510148,-0.46993384,-0.3025251,-4.275504,0.11838729,-0.31861037,-0.023168923,-0.19995227,-0.23119426,0.42333797,-0.58478075,-0.59701604,0.1447563,-0.09261887,0.63584656,0.14381282,0.3098475,-0.41918102,-0.15741822,-0.32110888,0.34450948,0.02123166,0.07189344,-0.060220126,-0.4930935,0.25884166,-0.39793873,-0.47555125,-0.025813993,-0.5406227,-0.61483777,-0.17257255,-0.61428607,-0.6478314,0.77975315,-0.15880075,-0.09821946,-0.24570605,-0.084065914,-0.20209654,0.34240496,0.11645221,0.1530135,0.07986251,0.009523036,-0.23977143,-0.41674307,0.40965682,0.10176338,0.37077004,0.49697983,-0.21156587,0.03626422,0.49691042,0.4736901,-0.0061809216,0.91837794,-0.029662771,-0.1565802,0.46382582,-0.2260452,-0.38791782,-0.98877215,-0.36804244,-0.18846975,-0.41074023,-0.49674562,0.0058142613,-0.37017742,-0.70675874,0.57533514,0.116275616,0.26494074,-0.25035098,0.19262213,0.19727764,-0.119238764,-0.10679478,-0.14744094,-0.20782903,-0.53803307,-0.3732259,-0.9110184,-0.5674207,-0.058468316,1.0383513,0.06553717,-0.2696595,0.18899877,-0.18565471,0.28897095,0.19338314,0.1800985,0.250251,0.51376164,0.0024959857,-0.8319665,0.65377,0.034454457,0.16657227,-0.309769,-0.057637766,0.8166532,-0.7352634,0.54959863,0.54552287,0.250473,0.061392527,-0.44400018,-0.2794154,-0.05851651,-0.2113529,0.47745907,0.24419369,-0.8630508,0.5690453,0.0965044,-0.18575433,-0.71775496,0.63755137,-0.076326326,-0.14637417,-0.0049450216,0.4351522,0.2557301,0.041050937,-0.14075647,0.26517546,-0.5903638,0.3123984,0.33495638,0.07250242,0.558218,-0.16267094,-0.2672879,-0.7705371,-0.31939203,-0.41326112,-0.16464692,0.056601517,-0.11491806,-0.17743233,0.46228868,0.076182365,0.3591664,-0.23996504,0.15169056,0.029782057,-0.2842329,0.23832592,0.50913167,0.42453733,-0.50793445,0.7178033,0.14356637,-0.025243236,-0.30021393,0.06416873,0.3240557,0.28274587,0.39601392,0.0669943,-0.17369369,0.37648866,0.878239,0.25174335,0.47016907,0.31761762,-0.17634198,0.5418425,0.14184622,0.08931299,0.08922701,-0.4020242,-0.008964995,-0.009951674,0.062401667,0.3304089,-0.03924689,0.36736393,-0.11787416,0.0164832,0.06358257,0.24523799,-0.28661156,-1.1293278,0.2598199,0.270779,0.7132625,0.7242771,-0.013666823,0.06342457,0.6466823,-0.42080593,-0.075018674,0.29699972,0.19348064,-0.24352632,0.7946224,-0.44225305,0.4878116,-0.2478637,0.037951723,-0.08459135,0.14958504,0.24736287,1.027883,-0.061499868,0.08563762,-0.015590246,-0.26167205,0.32330042,-0.28364357,0.155169,-0.38362768,-0.17074205,0.64227307,0.4368019,0.38374907,-0.106332794,-0.1432638,-0.107080184,-0.13073964,0.25919795,0.05491287,-0.18771124,0.005000756,-0.59392846,-0.34343937,0.65064746,0.0964781,0.3047833,0.20004624,-0.3944006,0.27316812,-0.08110364,-0.02473864,0.071828775,-0.71904916,0.004620944,-0.2002983,-0.3962069,0.39476126,-0.3510469,0.25053114,0.18083392,-0.00085901987,-0.33530667,-0.31171018,0.37713435,0.35937107,0.17627081,-0.25515667,-0.24053948,-0.36492532,0.30710715,-0.4596395,0.08648382,-0.22962166,0.20194183,-0.58735,0.55815643,-0.121039614,-0.261128,-0.10896769,-0.26654908,0.027259516,0.4166368,-0.088714086,-0.10751809,0.18317358,0.20275787,-0.24289285,-0.14174563,-0.31816804,0.2000651,-0.010608948,0.118014224,0.021871714,-0.16719583,0.0079773115,0.5806769,0.16719058,0.114315234,0.12498014,0.008002283,-0.4736736,-0.056991182,-0.115514114,0.45617726,-0.10159363,0.05247393,0.048028138,-0.30657345,-0.20941088,0.2673228,0.0006904625,0.0411485,0.111217864,-0.39694798,0.824865,0.10568835,1.1093171,0.15020221,-0.3648418,-0.028467132,0.54099494,-0.24866806,0.10654784,-0.24433917,1.1356746,0.5730324,-0.34962434,-0.24967399,-0.60833,0.009486764,0.10920587,-0.31485572,-0.20418002,-0.13723351,-0.73614544,-0.24809821,0.3254297,0.35405365,-0.060320225,0.06721484,0.05313963,0.09340528,0.2498276,0.61084497,-0.76187605,-0.15175936,0.33057636,0.19522108,0.19478963,0.23091283,-0.22798349,0.45321244,-0.7283975,0.28110364,-0.34860307,0.036188558,-0.23136605,-0.28731945,0.19305955,0.07770565,0.42504787,-0.11456287,-0.3795121,-0.312771,0.65908486,0.21543606,0.31360066,0.8057978,-0.18290922,0.022997783,0.06182084,0.4991945,1.3624952,-0.018086186,-0.017851435,0.27042624,-0.42644188,-0.6530565,0.17168196,-0.4906324,-0.097892776,0.033774886,-0.5450535,-0.27680895,0.2670603,0.19912966,0.09009935,0.17867658,-0.50979304,-0.17583561,0.5029286,-0.36048853,-0.40582913,-0.10647628,0.3400033,0.6738176,-0.34178492,0.0230052,-0.049173556,0.48792166,-0.41462347,-0.6632853,-0.09420129,-0.2833789,0.690199,0.027771382,-0.36174026,0.078498006,0.26036984,-0.45853233,0.101387225,0.49011448,-0.32950082,0.009867257,-0.34913096,-0.122141905,0.89978683,0.10864939,0.08842325,-0.6896906,-0.35487196,-0.8545262,-0.2803075,0.25749916,0.2687764,-0.013768609,-0.26721486,-0.049693234,-0.10550824,0.09014741,0.16518937,-0.67401975,0.31058624,0.1977183,0.61620295,0.06822778,-0.9715041,-0.057428323,0.3469928,-0.04353204,-0.4105236,0.6444453,-0.33054098,0.5534707,0.15089723,0.04296191,0.027888967,-0.5394801,0.46829054,-0.3381408,-0.17068546,-0.6822954,-0.07966575 +511,0.26272914,-0.22772,-0.2882349,-0.18136737,-0.08938908,0.1180809,-0.117764875,0.22091235,0.21253271,-0.38571966,-0.11939384,-0.337305,-0.0011851862,0.42762125,-0.09626112,-0.7196283,-0.076490365,0.091663666,-0.66235346,0.54872555,-0.32902604,0.22925673,0.023229357,0.2337921,0.08864347,0.1367702,0.2714266,-0.19314842,-0.15497287,-0.113766156,-0.14321056,0.17152436,-0.7658842,0.19136581,-0.032089923,-0.34764752,0.0046402137,-0.39441463,-0.35132405,-0.7142977,0.3762662,-0.71282065,0.40152732,0.07000971,-0.14995964,0.55017763,-0.054090023,0.2557897,-0.27093303,0.047016144,0.13097808,-0.13116166,-0.012028182,-0.03552265,-0.07167603,-0.272339,-0.64984494,0.11347102,-0.28447706,-0.3427164,-0.29687998,0.120672636,-0.312708,0.0065006656,-0.11615406,0.46382242,-0.3948094,-0.09167648,0.20548235,-0.04405747,0.28424263,-0.4589403,-0.093868814,-0.06865978,0.30458668,-0.20978801,-0.081710644,0.30186087,0.28168952,0.5369276,0.031864144,-0.204218,-0.28152573,-0.074324444,0.15806171,0.4383387,-0.06813073,-0.65194887,0.10504044,-0.020877134,0.028677246,0.07662519,0.14101614,-0.30057475,-0.23392671,0.11218336,-0.23146074,0.32905665,0.46733978,-0.22544833,-0.44344914,0.31022835,0.4427262,0.106851354,0.069589265,-0.022969551,0.060504936,-0.5323748,-0.20963697,0.229115,-0.39103386,0.49533924,-0.16211747,0.21496339,0.61603475,-0.21436258,0.05379103,-0.059510984,-0.16307707,-0.007656606,-0.011927973,-0.21081534,0.19835587,-0.36303812,0.24924086,-0.2646294,0.8649432,0.162245,-0.89449674,0.38050455,-0.5232171,0.24066798,-0.105506524,0.49822286,0.65308756,0.25285822,0.25862497,0.5836324,-0.5308531,0.0629567,-0.069975615,-0.29822385,-0.121720634,-0.18939777,-0.1644682,-0.4549017,-0.09969446,-0.012921901,-0.05085804,0.06572349,0.19211751,-0.57700235,0.18534318,-0.0054733157,0.8073563,-0.30679855,-0.05346987,0.7006249,0.94292957,1.0887277,0.108090386,1.1634543,0.36098003,-0.32139906,0.3392576,-0.44263572,-0.7386344,0.24885885,0.3902038,-0.1385574,0.2047191,-0.061083894,0.07248007,0.25868964,-0.48272312,0.14958216,-0.19290206,0.2722599,0.14010467,-0.18587698,-0.23837239,-0.25160363,-0.12621944,-0.030781623,0.08441942,0.24780017,-0.06936366,0.35322964,0.101213306,1.4887097,0.020894436,0.006390067,-0.059412036,0.43372378,0.09904029,-0.12413964,-0.103471026,0.21746582,0.3396921,-0.028025659,-0.6982956,0.13495913,-0.11533766,-0.4182248,-0.22199167,-0.23857592,0.09598257,0.09602179,-0.28377303,-0.1688214,-0.13693123,-0.27469215,0.5622471,-2.576571,-0.17165892,-0.08564626,0.21916114,-0.29266223,-0.25108743,-0.015995828,-0.64459056,0.44355857,0.30030766,0.35338017,-0.69153404,0.24955139,0.31805187,-0.4881281,-0.12288265,-0.6132826,-0.19568771,0.05132554,0.3502865,0.038194895,0.012275894,0.05704986,0.22743526,0.41302612,0.055626296,0.027003247,0.20132042,0.34167856,0.23298305,0.39650324,0.066622294,0.53066397,-0.16761066,-0.059077222,0.35267073,-0.30868948,0.23768239,-0.1388858,0.11996408,0.35183373,-0.44724062,-0.7829474,-0.6400465,-0.37521067,1.2226056,-0.09353139,-0.42193028,0.3009426,0.08001487,-0.0024428288,-0.12997141,0.37340164,-0.1952499,-0.09766063,-0.7134703,0.028019872,-0.0077770553,0.15567869,0.06677984,-0.037070647,-0.4499844,0.5085554,-0.08032047,0.30347204,0.42972305,0.2583783,-0.22081408,-0.5977986,0.109716006,0.8856382,0.35757312,0.09480477,-0.11803708,-0.19845985,-0.340968,-0.15606576,-0.016955966,0.2912427,0.8143424,-0.03285544,0.03376417,0.21733321,-0.012667712,0.18091859,-0.17152539,-0.2906529,-0.0334222,-0.026013525,0.46797886,0.4847224,-0.18899265,0.36680204,-0.0147957895,0.15212923,-0.042386137,-0.3309167,0.7006709,1.3575647,-0.017212989,-0.17121647,0.4324191,0.39182574,-0.16164121,0.3781279,-0.53186935,-0.17965606,0.6221391,-0.280218,-0.3997142,0.17265339,-0.2769605,0.12418392,-1.007046,0.3132887,-0.2829351,-0.33772194,-0.65126693,-0.001200223,-3.0645423,0.04380722,-0.30655634,-0.21301118,-0.02367088,-0.09458869,0.08973112,-0.45734197,-0.5407464,0.27906764,0.09651407,0.56182694,-0.012659138,0.35498697,-0.09509715,0.031973567,-0.44231603,0.1981473,0.124345556,0.20708415,-0.032713007,-0.43339488,0.022765178,-0.2215793,-0.48638743,0.22244257,-0.40087324,-0.41803405,-0.23522167,-0.47663593,-0.36833936,0.59611624,-0.33059838,-0.01021936,-0.24066891,-0.05995293,-0.15854478,0.387584,0.12931268,0.09344888,0.024804382,-0.101024665,-0.09204681,-0.27926216,0.28872287,0.12128422,0.23047495,0.38978302,-0.10995151,0.102583535,0.4011485,0.6098389,0.08671908,0.5474687,0.5908371,-0.043690324,0.27697966,-0.37254006,-0.24498574,-0.45885712,-0.4157354,-0.0011982997,-0.295866,-0.5665907,-0.12919278,-0.3086084,-0.62121975,0.28898916,0.036809493,0.07656355,-0.0070573133,0.08290111,0.3265619,-0.12716934,0.04659176,-0.11674614,-0.07184649,-0.456147,-0.22945307,-0.6175939,-0.44147837,0.18568398,0.8867477,-0.03209604,-0.17577177,-0.01836118,-0.12626705,0.033013273,0.046896324,-0.20812137,0.25854266,0.19033581,0.020348763,-0.76214516,0.6457659,0.07979665,-0.13794184,-0.558737,0.09331919,0.4049556,-0.43902656,0.38583076,0.23315702,-0.085117795,0.051193174,-0.36695406,-0.14285374,-0.10936601,-0.25590506,0.20197791,0.07818357,-0.5480642,0.45733076,0.28725776,-0.27291048,-0.79722524,0.32626218,0.16018803,-0.26132205,0.09747161,0.2587148,0.026752282,0.04991246,-0.3267152,0.23086244,-0.48172697,0.32004008,0.21201201,0.024275146,0.23774086,-0.13180296,-0.19293927,-0.7525907,0.045402322,-0.46492118,-0.20714083,0.07984998,0.21246459,0.05433546,0.20977508,0.07825799,0.38336438,-0.20099173,0.1288967,0.041512366,-0.28745395,0.15834092,0.399498,0.3900248,-0.39860395,0.552031,0.0017957409,-0.09128548,-0.09488596,0.0016855558,0.44564942,0.1671148,0.14013998,0.16420645,-0.26614273,0.3677538,0.7564139,0.12940189,0.33536866,0.008056871,-0.23411082,0.43406755,0.10461093,0.19296604,0.116316035,-0.42422396,0.0008361022,-0.119509,0.13213173,0.41809246,0.037199296,0.31624985,-0.093885705,-0.37174782,-0.076425195,0.23789713,-0.1614096,-1.016524,0.30638137,0.17908505,0.94460857,0.8238256,-0.08782514,0.23204234,0.52083385,-0.21517912,0.11755691,0.32421646,-0.08713479,-0.64063376,0.5913946,-0.6301206,0.313612,-0.06034905,0.0034137985,0.0088522965,-0.0076362095,0.17827211,0.6338132,-0.22377568,0.04718038,-0.16425091,-0.2525712,0.23124212,-0.43352994,0.2140688,-0.4166778,-0.2426332,0.5612537,0.35721365,0.21545695,-0.05729365,0.051584173,0.23985939,-0.1489441,0.26179653,0.1142228,0.03909627,0.06483532,-0.6634812,-0.25209945,0.52723885,-0.08420698,0.08155822,-0.08737927,-0.28472334,0.09968879,-0.42227095,-0.19037716,-0.12894902,-0.68332297,9.498596e-05,-0.21895865,-0.1486847,0.44417006,-0.17398281,0.23930341,0.16419882,0.18591736,-0.27569738,0.052870393,0.21475355,0.5819769,0.10250326,-0.14494728,-0.33569032,0.034988206,0.14846367,-0.17111482,0.01948135,0.1504675,-0.1528835,-0.6229642,0.50438,-0.06584834,-0.12464678,0.14994453,-0.20758574,0.013166964,0.50012016,-0.21436192,-0.0060241045,0.14620931,-0.14924075,-0.11655847,-0.03332882,-0.08645291,0.332601,0.29287827,-0.017214911,-0.048599277,-0.0366614,-0.18571551,0.44615474,0.052891497,0.30917376,0.16183032,-0.072371416,-0.37708017,-0.25679672,0.026221566,0.24623537,0.06467515,-0.018111292,-0.25193715,-0.3547802,-0.32600358,-0.030068127,-0.14878526,0.3051328,-0.093837894,-0.44031996,0.52645105,0.12605573,1.0852422,0.10216353,-0.2916269,0.15040687,0.36433417,0.038842823,-0.004660055,-0.45567068,0.822652,0.47202045,0.026310543,-0.110913925,-0.22489296,-0.0043310644,0.18842998,-0.06354765,-0.08591063,0.063114755,-0.5938486,-0.45208848,0.25393337,0.22208157,0.069097914,-0.120456584,-0.088596344,0.18548624,-0.040275138,0.31125742,-0.45408437,-0.12398497,0.3052936,0.10438809,0.1928017,0.090650894,-0.3919554,0.3504078,-0.52111864,0.13222086,-0.12525758,0.17089316,-0.16013715,-0.0846031,0.28729126,0.25267273,0.2210057,-0.2037785,-0.4437577,-0.22634731,0.5125012,0.070867464,0.22211751,0.60527116,-0.28190258,0.045457896,0.02053577,0.4764558,1.0072715,-0.14421968,0.060379528,0.35957465,-0.33412874,-0.3978451,0.61505926,-0.083790526,0.039798904,-0.0880369,-0.21131748,-0.6069762,0.15451466,0.21859767,0.08710385,0.16869506,-0.64940166,-0.42917055,0.3063716,-0.40160066,-0.2786021,-0.32520702,0.15225662,0.643203,-0.43403354,-0.1626127,0.2537452,0.17524013,-0.29071432,-0.5314435,-0.081955805,-0.32939416,0.20484404,0.09512374,-0.39983746,-0.17790177,0.2877397,-0.30925676,0.09598958,0.07062583,-0.39021462,-0.04513091,-0.22967942,-0.04676125,0.89194554,-0.3201835,0.14420582,-0.6394674,-0.4332433,-0.9492042,-0.3584102,0.67319924,0.12594979,-0.01068548,-0.6278858,-0.008193183,0.0036655266,-0.021850187,0.05628791,-0.40073958,0.436264,0.18061113,0.35720718,-0.049773466,-0.5318665,-0.0065409304,0.09311843,-0.12950203,-0.47046325,0.4969228,0.05737768,0.7089646,-0.011083547,0.008345628,0.34942624,-0.49267128,-0.036855314,-0.17115323,-0.21269657,-0.5187098,0.10314908 +512,0.5090282,-0.22086236,-0.1665506,-0.18345739,-0.091481104,0.30191782,0.008856298,0.45796153,0.115140185,-0.53096974,-0.28341052,-0.27856442,0.008047393,0.23231767,-0.21256542,-0.3596721,-0.06265961,0.075123645,-0.34759548,0.38600698,-0.48405024,0.36185727,0.13925087,0.36527285,0.18144391,0.1320782,0.0711196,-0.09997299,-0.35294417,-0.37284645,-0.14425614,0.013982713,-0.5933162,0.11506268,-0.2237394,-0.46413234,0.041454196,-0.5028953,-0.34490368,-0.6859697,0.31958354,-0.96414304,0.4098581,0.044842705,-0.23830391,0.5359595,-0.10953549,0.08250843,-0.05054362,-0.0701188,0.15402198,-0.13441141,0.076185994,-0.26941806,-0.18124318,-0.3113414,-0.61461747,0.14530635,-0.28374562,-0.20624638,-0.21483469,0.12589866,-0.21955672,0.12496769,-0.15760276,0.42244714,-0.32199398,0.10551861,0.03240838,-0.17535421,0.13845469,-0.59336144,-0.24936946,-0.051044382,-0.0100435065,-0.15632263,-0.048492156,0.22887349,0.20772563,0.49864244,-0.07146365,-0.167343,-0.2953351,0.10237881,-0.053009365,0.5297992,-0.18184575,-0.39557326,-0.10576504,-0.13710085,0.23818551,0.22305125,0.24457666,-0.05038207,-0.023694621,0.022630692,-0.45727178,0.2673005,0.62570006,-0.36203206,-0.3079619,0.36372954,0.4091771,-0.10716748,-0.012599102,-0.29351348,0.03470011,-0.40852544,-0.032957725,0.080221064,-0.3454935,0.60466486,-0.14241053,0.30705217,0.5642615,-0.22644421,0.24289626,0.10620684,0.06530823,-0.038454525,-0.38122478,-0.2606761,0.22888257,-0.44234908,0.06471667,-0.37927598,0.9906116,0.027122539,-0.65457577,0.37255794,-0.4092421,0.095995866,-0.029187623,0.44406807,0.5127556,0.43051174,0.22026494,0.56765354,-0.49563602,-0.07514054,-0.18922976,-0.11367079,0.036693756,-0.19115232,0.27675596,-0.356377,-0.058662713,0.08009631,-0.12989074,-0.05593624,0.50110346,-0.514172,-0.02608792,0.2416504,0.86089396,-0.27561727,-0.08327504,0.8147539,1.1526225,0.81850106,-0.012757645,1.122485,0.3754505,-0.30329153,0.2653394,-0.29812703,-0.5790392,0.21928088,0.28975803,-0.04492935,0.07448563,0.13386424,-0.25637472,0.34885332,-0.412532,-0.072651215,-0.1755943,0.18074645,0.15877166,0.20565759,-0.39323857,-0.36158404,-0.080257066,-0.11206611,0.12403921,0.24908683,-0.4433706,0.2562831,0.034488324,1.5697007,-0.1028109,0.049585205,0.019275766,0.4445508,0.019905534,-0.08336648,0.057176314,0.32328576,0.18060364,-0.05921845,-0.57688475,0.08827932,-0.23590817,-0.5266829,-0.11210956,-0.16115347,-0.12751514,0.029478531,-0.48667255,-0.21732815,-0.101612315,-0.3052184,0.47577316,-2.6798844,-0.13248327,-0.04616133,0.4323911,-0.35306928,-0.5241991,0.13641001,-0.49466595,0.50610375,0.36034852,0.33893505,-0.66552216,0.22227438,0.32017934,-0.37718794,-0.18996103,-0.6645516,-0.038311005,-0.0029085898,0.21829261,0.014670551,-0.06794659,-0.14104894,-0.21744321,0.51923853,0.11826429,0.13081755,0.3427096,0.36606738,0.06076061,0.27259395,0.061336737,0.5408814,-0.32798645,-0.092950635,0.32233348,-0.5598147,0.1965263,-0.10201435,0.20987867,0.4391152,-0.41452137,-0.603853,-0.7402378,-0.3893631,1.2317464,-0.05949715,-0.5132321,0.15409479,-0.004778635,-0.16274577,-0.13608402,0.47039875,-0.09535318,-0.2121439,-0.63740724,0.026743952,-0.09859169,0.21476905,-0.05474948,0.08581615,-0.35060993,0.6892666,-0.104750596,0.29087916,0.2083537,0.2863154,-0.26674768,-0.2983058,0.066206984,0.95642483,0.37617937,0.14358251,-0.15871866,-0.19949849,-0.20069951,-0.12835674,0.11476935,0.36770236,0.67096716,0.07185933,0.026316883,0.28325447,-0.044565532,0.042226203,0.006891787,-0.36021334,-0.23752007,-0.08759376,0.58553195,0.52232987,-0.08821811,0.37504804,-0.2270325,0.28123558,-0.33435866,-0.40172255,0.4175406,0.84982044,-0.1273911,-0.13955787,0.61189806,0.4016169,-0.31707218,0.33529982,-0.6471087,-0.37511533,0.40782374,-0.18674384,-0.5344113,0.027667113,-0.18058927,0.033036944,-0.70474327,0.37063557,-0.16873035,-0.51146644,-0.6607038,-0.14760199,-2.9154904,0.112161525,-0.23547599,-0.21233885,0.02372215,-0.2854726,0.15973538,-0.5350288,-0.2835135,0.14889503,0.023313664,0.5814011,0.100347556,0.2571368,-0.24364045,-0.116342254,-0.46780857,0.11114231,0.09180014,0.25987688,-0.07184973,-0.30660778,0.10876687,-0.04374307,-0.40056944,0.22790645,-0.6458709,-0.60900444,-0.18430826,-0.45084348,-0.32280177,0.6718326,-0.31331035,0.059911814,-0.16033116,-0.020525614,-0.18639381,0.3255072,0.12644257,0.13659313,0.021222414,-0.20154308,-0.020308604,-0.49740526,0.43609384,0.18979551,0.25467426,0.57653284,-0.22272037,0.12219714,0.30201942,0.51996136,0.06951944,0.6908808,0.3206938,-0.12932402,0.3035955,-0.2758817,-0.16873305,-0.4960538,-0.24655375,0.029001493,-0.4235565,-0.2938989,0.02455058,-0.34777158,-0.69100124,0.41173348,-0.09383341,0.15457606,0.036496587,0.32351625,0.60945904,-0.08323741,-0.06246852,-0.057444178,0.044420555,-0.54102474,-0.45345122,-0.7097552,-0.42274886,0.15851013,0.9462331,0.05958645,-0.028026508,0.075908616,-0.069690116,0.008441438,-0.1224588,-0.13628556,-0.15447313,0.3857714,-0.0403632,-0.6631707,0.40491962,0.12339525,-0.14327544,-0.5672072,0.37588516,0.6104647,-0.5539173,0.44105765,0.4549162,0.19106224,-0.03384371,-0.37440616,-0.21525805,-0.08830496,-0.26205713,0.15544352,0.2487231,-0.7028108,0.33336988,0.33883625,-0.20534751,-0.8064594,0.29022712,-0.016884156,-0.31944278,-0.15078798,0.3391897,0.30060938,0.023891173,0.05172692,0.15609114,-0.6029524,0.21825822,0.27117437,0.010204684,0.52861464,-0.18552701,-0.18859409,-0.5690391,0.08148983,-0.46103895,-0.37295067,0.20896152,0.13946119,0.0024752824,0.53217435,0.31342414,0.37763232,-0.20816845,0.019540312,0.07357991,-0.17975913,0.38407356,0.3413417,0.53549874,-0.38336813,0.5175308,-0.013224478,-0.026706379,0.059043128,-0.04003279,0.39559463,0.17952879,0.2674357,0.048674718,-0.31561935,0.28918883,0.693108,0.21206306,0.4964522,0.115701444,-0.116257615,0.3395146,-0.014946048,0.10780425,-0.020046793,-0.6489351,-0.01240254,-0.13087688,0.1465185,0.32611263,0.043052875,0.31396213,-0.11790491,-0.18049566,0.033377673,0.110005505,-0.27902448,-1.0029057,0.20221901,0.0020095683,0.8591006,0.42847776,-0.13240066,-0.023770183,0.69253135,-0.22217844,0.10231086,0.3036601,0.07121905,-0.39025533,0.63220793,-0.6772015,0.35886568,-0.061299894,0.022731006,-0.14004233,0.013505837,0.27441487,0.59639823,-0.14016059,-0.032773994,-0.094705105,-0.4035821,0.11458015,-0.40340278,0.33988607,-0.5981077,-0.17646359,0.66599154,0.3556066,0.3422721,-0.1193782,-0.016068352,0.06964864,-0.115609735,0.15176445,0.21795759,-0.009411385,0.12662183,-0.6028083,-0.22589646,0.54189426,-0.082020134,0.28970343,-0.031105684,-0.19443053,0.11495567,-0.3511831,-0.24350199,0.10941499,-0.49947256,0.011764746,-0.41553497,-0.36145836,0.17630744,-0.044859327,0.13504794,0.094906,0.022982882,-0.24819133,0.036182184,0.49494055,0.710888,-0.0061496864,-0.1617588,-0.512345,0.14036368,0.08557523,-0.2576329,0.10053499,-0.026115537,-0.072893046,-0.65893805,0.46327966,-0.14022711,-0.18239322,0.11866072,-0.16166767,0.03204981,0.54515827,-0.04889113,0.06929596,0.005443449,-0.12760805,-0.29426846,0.016378578,-0.039957292,0.17225121,0.19792151,-0.06677212,-0.00080153346,-0.25998777,-0.17707282,0.37370205,0.07712478,0.31813204,0.4096709,-0.0019699885,-0.25852925,-0.18685181,-0.04502048,0.47358978,-0.051329337,-0.13006276,-0.22421314,-0.49205297,-0.22186916,0.24743302,-0.031675085,0.33511308,0.06826039,-0.25231877,0.80495113,-0.11300899,0.9842291,0.09447496,-0.3055981,-0.069739476,0.47733828,0.024311772,0.03405195,-0.38545662,1.0423543,0.47118548,-0.055075057,-0.12794045,-0.27329016,-0.054429896,0.32772392,-0.101417944,-0.1061916,-0.09074888,-0.76948094,-0.2966566,0.16732618,0.3294732,0.0030540503,0.007617068,0.1450813,0.38013855,0.01072421,0.56159395,-0.40655378,-0.20298482,0.3241033,0.3174372,0.069629885,0.2564004,-0.33274743,0.2924005,-0.6726065,0.048950203,-0.24745645,0.0860804,-0.045963354,-0.14970689,0.25591865,0.19933516,0.45695004,-0.31343126,-0.47817233,-0.22497079,0.432998,0.12896124,0.2135465,0.47522512,-0.12088561,-0.16862181,0.07264068,0.5683344,1.263173,-0.030877706,0.27846798,0.2694511,-0.4340747,-0.74317765,0.5775393,-0.02755912,0.07524833,-0.0051912987,-0.13014825,-0.46464485,0.2792958,0.2804744,-0.13851115,0.20776878,-0.5045795,-0.23545907,0.24422097,-0.36189026,-0.18296552,-0.25219458,0.21451408,0.579812,-0.20389539,-0.067288026,0.0068909023,0.535266,-0.35326612,-0.4598926,-0.10968847,-0.56744224,0.22092707,0.03806956,-0.35259807,-0.14498053,-0.04037582,-0.3039731,0.029144693,-0.065444194,-0.39126506,-0.003000186,-0.26680878,0.12615986,0.7507368,0.16687836,0.08592277,-0.72910726,-0.42049664,-0.7606444,-0.49051648,0.33546227,0.2141814,-0.03706921,-0.45164937,-0.10794093,-0.12829028,-0.14893979,-0.10404159,-0.49151626,0.41292784,0.25003645,0.40267426,-0.01736285,-0.5449308,0.13512342,0.19180062,-0.16712266,-0.5237251,0.36142874,-0.0632739,0.8137195,0.009968469,0.003201205,0.16279595,-0.45712692,0.087458804,-0.24131301,-0.3161956,-0.6475429,0.2119371 +513,0.5089107,-0.39344767,-0.5765568,-0.19216156,-0.19188073,0.14993174,-0.1536203,0.5347287,0.18393236,-0.59513706,-0.16576502,-0.2898908,0.03856995,0.030010305,-0.13817057,-0.46506107,-0.19612151,0.29849693,-0.48264763,0.33165792,-0.37161726,0.20055962,-0.08166873,0.512941,0.19115084,0.16720922,-0.080114685,0.0005579178,-0.14535531,-0.2107365,0.12399158,0.2710354,-0.6597372,0.08421034,-0.16516337,-0.52486396,-0.07744459,-0.55495834,-0.32554385,-0.8407136,0.45544258,-1.0964067,0.81780946,0.03233697,-0.42452848,0.28202406,0.12508914,0.38469303,-0.13325946,0.15201792,0.34039873,-0.14285183,-0.11721479,-0.070217066,-0.29668862,-0.32741964,-0.59938174,0.024136182,-0.4114529,-0.12301071,-0.16479929,0.18172683,-0.22732902,0.23105961,-0.16877405,0.41109565,-0.4662588,0.024073623,0.25661173,-0.12416531,0.50293756,-0.61793685,-0.13728882,-0.13522622,0.27878523,-0.31296903,-0.2892869,0.048597332,0.2867858,0.622915,0.004778899,-0.22949699,-0.16343786,0.03811519,-0.050152995,0.4933947,-0.28800362,-0.3272039,-0.2254466,-0.20725808,0.30929,0.30047053,0.23095028,-0.23665205,0.008649936,0.081395626,-0.22908543,0.34237304,0.5198564,-0.35814828,-0.10590102,0.32124227,0.69395745,0.061083134,-0.037819743,0.20423014,0.078851685,-0.52417153,-0.24770865,0.0639207,-0.31311035,0.38861826,-0.16264637,0.15685333,0.55000556,-0.21140242,0.07727383,-0.037560828,-0.013914695,-0.1251801,-0.50634253,-0.60982317,0.38437095,-0.4191613,0.26328075,-0.18319392,0.6940431,0.14624292,-0.6550807,0.3305171,-0.6157005,0.12561457,-0.0819013,0.55189264,0.6195596,0.33563244,0.4354317,0.74746776,-0.31237662,-0.040676557,-0.06572633,-0.011434183,-0.043601613,-0.24232548,0.123422936,-0.4701158,0.08202894,-0.14905931,-0.18924618,-0.029178904,0.71306545,-0.6783358,-0.054378632,0.24870385,0.8322964,-0.35436395,0.0057142056,0.88485074,1.0504963,0.99527526,0.096627235,1.4578427,0.39140967,-0.3527755,0.124912016,-0.14397441,-0.79745066,0.3089562,0.46522048,-0.04999379,0.29171273,0.28402883,-0.15619867,0.6005016,-0.55395687,0.050514594,-0.21495351,-0.044764895,0.04137856,0.003704722,-0.42715743,-0.08433371,-0.03396917,0.022100508,0.14623931,0.07356327,-0.2755408,0.23935558,0.13268913,1.7826797,-0.33779538,0.06408321,0.15354799,0.37718704,0.10803375,-0.16983272,-0.11509096,0.34437877,0.41433626,-0.0030364578,-0.693603,0.12697843,-0.1588636,-0.35239884,-0.28602722,-0.13950044,-0.14099225,-0.09212438,-0.3770673,-0.2771072,-0.23925963,-0.43032667,0.2385673,-2.336477,-0.19935966,-0.18075721,0.4149771,-0.21998169,-0.5032942,-0.08116714,-0.37234285,0.4275878,0.3014855,0.27785316,-0.64945424,0.5678327,0.5010115,-0.47672096,-0.06005567,-0.7484846,-0.21989308,-0.07498348,0.17513315,-0.07508887,-0.16092221,-0.11434555,0.16370961,0.40494892,0.15124032,0.18578163,0.34035423,0.58413404,0.047570292,0.68681526,0.10939272,0.6296756,-0.22097088,-0.23773256,0.45019862,-0.5138396,0.07303015,-0.011639962,0.09605576,0.37876037,-0.6592388,-0.8210614,-0.96652955,-0.45970517,1.1237733,-0.19808133,-0.51588976,0.19871174,-0.49511582,-0.42194477,-0.09189921,0.5932232,-0.08331703,-0.070276335,-0.98574644,-0.15856196,-0.108027786,0.2777979,-0.0056747934,0.035067447,-0.6060516,0.78409237,-0.29957053,0.48814037,0.42740667,0.15358527,-0.15962079,-0.56291664,-0.10626336,1.0849373,0.38032863,0.18593472,-0.17179108,-0.09233824,-0.33581975,0.035519425,0.012604734,0.5268613,0.8260755,-0.038610756,0.12484799,0.33973792,-0.020583896,0.02744523,-0.16504908,-0.42014816,-0.28381985,0.023091912,0.6332041,0.42180306,-0.15926565,0.37803885,-0.2286134,0.4146636,-0.2212076,-0.331243,0.2622506,1.1601914,-0.20509328,-0.36308286,0.90836835,0.35114703,-0.40059775,0.4344517,-0.7731677,-0.15805252,0.30129626,-0.14800496,-0.6043094,0.2718881,-0.3269682,0.08463674,-1.0687928,0.34691185,-0.25152352,-0.5266322,-0.54901236,-0.20288672,-3.020621,0.3213744,-0.2668483,-0.12818597,-0.106886946,-0.30361474,0.34712622,-0.5058974,-0.75012237,0.19579676,-0.036790144,0.6490638,-0.040956557,0.1374719,-0.23533106,-0.27867505,-0.35815552,0.10463948,0.2844055,0.36884293,-0.12453142,-0.45758873,0.02966072,0.015563871,-0.32841095,-0.02529678,-0.74038386,-0.49856326,-0.1286963,-0.70336497,-0.22267172,0.6130468,-0.26090837,0.022557782,-0.3654273,-0.018549332,-0.19363293,0.37292543,0.025951143,0.29456815,0.018937739,-0.17810036,-0.13616621,-0.22530922,0.2074271,0.03287953,0.037112154,0.12709525,-0.31660464,0.20287775,0.30729574,0.63752747,-0.08707281,0.9649836,0.553649,-0.12911291,0.229731,-0.23635975,-0.23949239,-0.5716058,-0.2924171,0.034217633,-0.53192496,-0.48855942,-0.0552224,-0.39621335,-0.82754546,0.6516332,-0.12380001,0.1178525,0.17503211,0.4881001,0.5535377,-0.10775685,-0.04666078,-0.09573459,-0.18438706,-0.52503365,-0.292476,-0.5551587,-0.41596112,0.16124545,1.1183442,-0.14825958,0.20485717,0.39664122,-0.21235721,0.041552186,0.25133798,-0.08338798,0.09935614,0.80054486,-0.10403914,-0.648812,0.1970829,-0.04926946,-0.23823167,-0.64977425,0.28620613,0.7894811,-0.74416,0.7878376,0.42704958,0.064101085,-0.3406131,-0.59929615,-0.17643642,-0.06459987,-0.3353315,0.51270306,0.3016453,-0.76644427,0.38272065,0.42523214,-0.0662068,-0.91249454,0.5545272,-0.12760904,-0.28591898,0.0131222885,0.50510263,-0.010619927,0.046493657,-0.1326583,0.26847035,-0.34086528,0.22893293,0.22476842,-0.20094512,0.10400295,-0.20590773,-0.061146118,-0.77024585,0.058786336,-0.69157666,-0.28226966,0.24610311,-0.09775675,0.056407996,0.46130422,0.14130937,0.53386503,-0.27243155,0.087227836,-0.108306736,-0.37749034,0.2369971,0.49415764,0.3627761,-0.5202841,0.5961564,-0.11030127,-0.1741883,-0.27666503,0.02442597,0.5264069,-0.08129314,0.38943213,-0.124988645,-0.12384435,0.3904333,0.8693852,0.25088957,0.5860098,0.16375622,0.0155448,0.22634667,0.21126343,0.27693835,-0.1671709,-0.6722879,0.05377352,-0.085508436,0.16368912,0.4357791,0.14360894,0.36218676,-0.2135301,-0.33294266,-0.044382695,0.11713365,-0.17760497,-1.0536427,0.23369122,0.0006712744,0.8218479,0.5268312,-0.04910136,0.13048752,0.5302378,-0.11602742,0.016817214,0.3016555,0.06155346,-0.36254817,0.5106675,-0.69639164,0.28361037,-0.17531368,0.07383268,-0.07812376,-0.034425642,0.5778641,0.817097,-0.13553038,0.03396103,-0.111176364,-0.04101452,0.2553114,-0.4997698,-0.010342703,-0.5853218,-0.2663429,0.76062214,0.5977555,0.5181391,-0.30566242,-0.041530803,0.11190552,-0.14764515,0.18461488,0.14165017,-0.033889778,-0.016327139,-0.68698657,-0.2769562,0.4875938,0.077381134,0.062082887,0.007941232,-0.49491236,0.25355676,-0.16596912,0.042714544,0.033236604,-0.81674266,-0.16726646,-0.41374123,-0.45950222,0.3046196,0.09310095,0.0680724,0.2127277,0.062453922,-0.26418453,0.2540108,0.050155144,0.8459063,0.18442413,-0.04843923,-0.36106876,0.19149238,0.13759181,-0.292436,-0.0012111939,-0.27069774,0.2199436,-0.7547355,0.5583127,0.100667715,-0.53265643,0.4167768,-0.15124597,-0.03416568,0.6117334,-0.22588918,-0.110412724,0.2522897,-0.29229015,-0.2465163,-0.28827363,-0.11313323,0.19453672,0.03995103,0.14240903,-0.09331381,-0.034964424,-0.1952152,0.6851034,0.09188839,0.43883345,0.6730236,0.0693216,-0.28916198,-0.07975078,0.10156584,0.57190377,-0.2056924,-0.3481354,-0.13321802,-0.6969203,-0.12693748,0.4071492,-0.08828121,0.43723387,0.08369497,-0.27966845,0.9984944,0.21954864,1.1060665,-0.097901374,-0.39935333,-0.113594376,0.68320805,0.024079856,-0.17015566,-0.43444008,0.9124612,0.51324284,-0.07701351,-0.0051091816,-0.3585205,-0.20711364,0.2277348,-0.15176679,-0.0009410748,-0.13253045,-0.6614368,-0.29680032,0.17721128,0.36300808,0.15347286,-0.08330417,0.5327788,0.3651689,-0.23813747,0.30484784,-0.5064742,-0.17829615,0.37186712,0.20988688,-0.024714649,0.04430948,-0.3233064,0.2975493,-0.5817659,0.0007065764,-0.37589586,0.07601185,-0.065044515,-0.26440424,0.12089015,-0.03144056,0.3345172,-0.47809204,-0.13523847,-0.12188936,0.44759244,0.29947582,0.16565312,0.6154668,-0.2759517,0.12281758,0.05846649,0.59367526,1.1200734,-0.08806522,0.1201049,0.27471843,-0.42249808,-0.6376308,0.44931918,-0.30418384,0.015517216,0.22711664,-0.25815076,-0.42758548,0.31855875,0.330732,-0.19024572,0.10485225,-0.6803824,-0.22875382,0.31297824,-0.21016847,-0.033455428,-0.23172417,0.1529097,0.7588611,-0.1642134,-0.24502207,-0.0099544665,0.38446712,-0.3432711,-0.56055975,-0.061538585,-0.5665242,0.40786332,-0.011631274,-0.3625929,-0.06086529,-0.019472687,-0.40556434,0.050743677,0.21868812,-0.36088532,0.11853178,-0.44526705,-0.11932572,0.9568609,-0.006469543,0.05161116,-0.5655903,-0.45600563,-1.0328988,-0.2951635,0.2696185,0.16409718,0.111264475,-0.45234755,0.082202025,-0.2232962,-0.22625971,0.22266576,-0.3463217,0.45991796,0.21092854,0.74549675,-0.23284842,-0.7404269,0.111493066,0.052715864,-0.29631287,-0.5065703,0.63215,0.14543712,0.8928741,0.05775594,0.03925946,0.10943564,-0.5523168,0.0381254,-0.1274517,-0.17857677,-0.87056553,-0.14672865 +514,0.48197073,-0.061342563,-0.45668152,-0.011954708,-0.27047703,0.16332696,-0.15466452,0.41166702,0.33326578,-0.45663118,-0.28306413,-0.18849131,-0.02223739,0.3092856,-0.16948073,-0.45185804,0.05562898,0.30123243,-0.54344255,0.5388325,-0.33164755,0.3706492,0.1750067,0.44973454,0.22612607,0.07988347,0.27614293,0.046701077,-0.32495198,-0.24781707,-0.17170425,0.24931227,-0.6731955,0.27631146,-0.3490515,-0.5199603,-0.099082574,-0.664885,-0.318804,-0.6384924,0.25604314,-0.79156464,0.63724834,-0.052079625,-0.09595452,0.42929322,0.07452599,0.17583264,-0.1359459,0.0032138804,0.057920627,-0.25093603,-0.16566303,-0.20546614,-0.30525237,-0.16722178,-0.6393629,0.14203788,-0.402797,-0.02202194,-0.3196862,0.15397176,-0.1392433,0.045760337,0.07287069,0.43152437,-0.40414777,0.23591089,0.09010327,-0.26046208,-0.06348385,-0.5477546,-0.23734729,0.009179096,0.38101873,-0.30524173,-0.2048545,0.1551945,0.28803024,0.6082279,0.087987185,-0.097749285,-0.33575693,-0.070490904,0.10445998,0.65012974,-0.05188236,-0.37954548,-0.25660548,-0.055395387,0.26850334,0.024265762,0.2554818,-0.14648663,-0.15154922,-0.2555127,-0.18976632,0.38095492,0.36763063,-0.46962157,-0.2523508,0.37988016,0.50274265,0.2888897,-0.089328006,0.12942624,0.048902307,-0.5734991,-0.1414085,-0.118572675,-0.30316168,0.58378685,-0.17735514,0.36908174,0.40282488,-0.08600831,0.07610305,0.2513934,0.091098905,-0.08819591,-0.23774567,-0.16942559,0.31475085,-0.374108,0.060888257,-0.014551693,0.7827085,0.1921104,-0.6438712,0.34347057,-0.51205015,0.18469355,0.04393112,0.42703938,0.6932568,0.35087922,0.29303408,0.7173406,-0.39730924,0.09064971,-0.050332963,-0.24176535,-0.1565721,-0.3064952,-0.089758106,-0.5060802,0.09768762,0.07757513,0.048570838,0.3356485,0.6076594,-0.4846476,-0.19798665,0.090030834,0.78781253,-0.28143176,-0.22696483,1.0394915,1.0440272,1.1884528,-0.05963816,1.33527,0.25977725,-0.19547412,-0.102550015,-0.09014682,-0.7415423,0.2336858,0.29003724,-0.30118254,0.36546925,0.15836896,0.012938985,0.18723074,-0.40280375,-0.051302414,-0.103241704,0.04995988,0.023341464,-0.08722866,-0.43739817,-0.32942614,0.016187048,-0.009957954,0.2804931,0.22869857,-0.16719699,0.60356534,0.0752791,1.527516,-0.09680014,0.060055044,0.06718566,0.4134173,0.30433723,-0.09212196,-0.20545562,0.14142616,0.26839444,-0.1055416,-0.49682182,-0.045243736,-0.18778421,-0.46841478,-0.23671408,-0.24416848,-0.29892465,-0.081632785,-0.2139862,-0.2104081,-0.097332604,-0.48418215,0.46125698,-2.5712144,-0.37145934,-0.04391895,0.33210403,-0.21561678,-0.3797168,-0.23680802,-0.43473572,0.38521174,0.27739272,0.4447723,-0.53759754,0.28150782,0.48209766,-0.58446455,-0.34902623,-0.5390419,-0.05484909,0.08908422,0.2773306,0.008518615,-0.23198535,-0.11361421,0.10977055,0.4417434,-0.108751945,0.05642912,0.43497586,0.41550294,0.07942484,0.42144087,-0.08646689,0.5341489,-0.30742362,-0.20445307,0.52585185,-0.35006645,0.3798918,-0.32511982,0.1789658,0.51699764,-0.45030528,-0.9141561,-0.6682324,-0.23232964,1.2322241,-0.104681745,-0.41169545,0.15916313,-0.3068111,-0.30245176,0.069676735,0.51083577,-0.14764461,-0.06409879,-0.75331336,-0.041977722,0.103810586,0.0681777,-0.0047856653,0.051478095,-0.5298614,0.6847064,-0.055840276,0.41975814,0.37279612,0.30283123,-0.1774135,-0.39526916,0.08302379,1.0417384,0.4088089,0.14596902,-0.3296307,-0.08833301,-0.41528532,-0.08599152,-0.0036327168,0.38748935,0.58192223,-0.059907254,0.16031465,0.3164659,0.28533527,0.17988017,-0.25646996,-0.19642743,-0.2052838,-0.004833426,0.65223414,0.7069742,-0.13723728,0.41589913,-0.10451355,0.16331029,-0.18160698,-0.49550208,0.67247003,0.89690983,-0.25757232,-0.307983,0.6280777,0.28028724,-0.21759656,0.47133717,-0.5714602,-0.44906905,0.35223866,-0.13744566,-0.35586166,0.1347886,-0.23930891,0.10792948,-0.89060056,0.17242484,-0.07326252,-0.37042728,-0.5076579,-0.21793799,-2.6897995,0.16254638,-0.057730373,-0.0810305,-0.18805793,-0.31640643,-0.038644295,-0.40918854,-0.6871605,0.12619011,0.07950759,0.73107237,-0.22047487,0.27059203,-0.033469584,-0.4325626,-0.48097998,0.035613023,0.0031985599,0.4118888,-0.047595065,-0.32633618,0.054505873,-0.30392936,-0.3960977,-0.031680252,-0.66701895,-0.3388098,-0.06834135,-0.41227937,-0.26623413,0.5744041,-0.5571161,0.068721734,-0.38322368,0.0006418377,-0.11267976,0.2796223,-0.03809147,0.061931092,0.1415118,-0.12806162,0.014090802,-0.11463589,0.33467028,0.18059766,0.12555125,0.4971113,-0.29760554,0.2447416,0.30070263,0.6848917,-0.1624693,0.96325845,0.38881892,-0.10597398,0.30734292,-0.318373,-0.3430765,-0.46821976,-0.19742109,-0.06959063,-0.47874665,-0.4981673,-0.09082169,-0.33263615,-0.9718415,0.54394627,0.12237848,0.20664643,-0.0160078,0.3591761,0.5171694,-0.25434044,-0.052956235,0.008691364,-0.160135,-0.4894402,-0.44427726,-0.6432393,-0.48145145,0.04837052,1.0664426,-0.19288592,0.15682958,0.31882706,-0.28250137,0.02213644,0.22322538,0.022059662,0.014445926,0.48690417,0.029992793,-0.7343717,0.37987366,-0.14712,-0.22391383,-0.5600048,0.20896554,0.6287195,-0.5953616,0.4626865,0.5064057,0.054582495,0.03600158,-0.41252443,-0.16306044,-0.30180082,-0.2244565,0.30378813,0.32856926,-0.7478631,0.5323864,0.28040403,-0.2462431,-0.91677725,0.46125776,0.04863194,-0.15272294,-0.00037347418,0.38098758,0.3380631,-0.0570153,-0.15134035,0.055212803,-0.48080403,0.47159344,0.03983908,-0.06530111,0.23130682,-0.3210056,-0.32798216,-0.69353926,-0.08697856,-0.4038516,-0.3355019,0.06439992,0.1253318,0.073889025,0.114670716,0.21441428,0.3552293,-0.45402312,0.054142572,-0.10221573,-0.2047508,0.21514638,0.42591694,0.5809721,-0.37797803,0.56099015,-0.011031353,0.009363924,-0.0005376935,0.005885797,0.35367376,-0.05210528,0.27881598,0.24963416,-0.23696797,0.15699145,0.6086916,0.18176067,0.22177164,0.123025246,-0.17158148,0.24629888,0.10435124,0.35035488,-0.077136196,-0.4634729,0.03891664,-0.35376135,0.088120066,0.41488966,0.26048777,0.4071483,-0.095944166,-0.24479449,0.02580188,0.10501503,-0.13656503,-1.2302291,0.10770529,0.078644134,0.8356027,0.5205106,-0.0639307,0.17404659,0.6664468,-0.165978,0.11151902,0.36351618,-0.124976814,-0.4247301,0.5148438,-0.599,0.5062441,-0.11445648,-0.067786284,0.15838826,0.005742026,0.44644314,0.7589081,-0.15173802,0.016111165,0.008738165,-0.23210306,-0.016171467,-0.41529346,0.1087235,-0.56881696,-0.08100842,0.9186384,0.51858777,0.3295543,-0.20185111,0.04265982,0.00096121005,-0.15891409,0.03926726,0.14374109,0.14651088,-0.12250918,-0.6803785,0.04698736,0.5124446,0.15822713,0.16729133,0.1783167,-0.37623772,0.26958936,-0.20121494,-0.04812215,-0.13476199,-0.7555834,-0.08030361,-0.30423257,-0.45176274,0.25574547,-0.025475154,0.1781036,0.21905306,-0.009262919,-0.21899168,0.43603468,0.10472657,0.71449697,0.111766085,-0.22487108,-0.14738823,0.41312948,0.24122335,-0.22839996,-0.039644923,-0.20321354,0.04752975,-0.4792238,0.529211,-0.053353515,-0.20725545,0.2265607,-0.029929727,0.15831664,0.5465531,-0.057634775,-0.012592867,0.111148104,-0.19241191,-0.42244843,-0.053439695,-0.28129247,0.21976373,0.34149918,-0.29494184,-0.12273021,-0.10596291,-0.11709727,0.34195164,-0.043279205,0.47047982,0.2923648,0.013521319,-0.43393072,-0.07903051,0.19602005,0.546125,-0.07338721,-0.18848218,-0.23710953,-0.38177687,-0.28319404,0.3705387,-0.14239483,0.10776687,0.12986574,-0.13261887,0.7308531,0.17530043,1.0750307,0.12765129,-0.2932077,0.13014717,0.47666985,-0.15094827,-0.20950206,-0.4131891,1.0670345,0.44124696,-0.083605304,-0.11688995,-0.33333415,0.027218755,0.01294033,-0.25377217,-0.24542761,-0.0584959,-0.5538857,-0.20768218,0.18634148,0.17456268,0.15361612,-0.2137474,0.18354538,0.32648274,-0.04993229,0.31357422,-0.4708592,-0.40863803,0.40821913,0.30465826,-0.08538548,0.06253214,-0.36820894,0.35934687,-0.683438,-0.08684117,-0.19738163,0.10762106,-0.33738202,-0.2355591,0.31717777,0.2180189,0.32953167,-0.3574418,-0.35518423,-0.38776797,0.26436347,0.09637491,0.12620118,0.4503948,-0.29485112,-0.015412659,0.013613863,0.37167838,1.0630339,-0.2401048,0.15123065,0.34261927,-0.22465035,-0.37589172,0.3077193,-0.437515,0.30907395,0.10004433,-0.12376343,-0.7224196,0.13063031,0.17707062,0.23490962,0.14299668,-0.6041283,-0.100542545,0.2250325,-0.18625805,-0.18560424,-0.34009284,-0.1847955,0.55251527,-0.17058055,-0.2486724,0.21929066,0.29250106,-0.22685972,-0.6422077,0.00026128974,-0.36783692,0.26280484,0.11681234,-0.29436573,-0.2923848,0.011313447,-0.5053023,0.018994076,0.1966474,-0.37786105,0.049556576,-0.48233637,0.07388045,0.88761914,-0.27489325,0.43548456,-0.46160984,-0.5398181,-0.9685891,-0.26653633,0.3275884,0.16025813,-0.043820154,-0.5474768,-0.04240766,-0.28007892,-0.3369891,0.10605831,-0.4583837,0.4983669,0.18402554,0.3880326,-0.11725033,-0.8360345,0.13597305,0.009715042,-0.29382768,-0.4829895,0.35990858,0.14712791,0.8405577,0.08919967,-0.12700406,0.27784726,-0.62635463,-0.029586043,-0.19147627,-0.010333159,-0.5974594,0.089426704 +515,0.4993614,-0.52453095,-0.6405702,-0.19302619,-0.20565088,0.017973565,-0.23986216,0.293776,0.11151024,-0.47147074,-0.16933481,0.022182494,-0.0014487008,0.46190706,-0.14149065,-0.84546113,-0.08859652,-0.011795341,-0.48838553,0.4250857,-0.60410094,0.32896617,0.0039023906,0.48934996,0.099514484,0.33806786,0.20425999,-0.069855645,-0.12112283,0.062181797,-0.08554045,0.2238305,-0.7028679,0.19185303,0.22230999,-0.4561727,0.030653298,-0.43123963,-0.3083536,-0.65025336,0.32770675,-0.9053592,0.58898246,0.13211039,-0.35258362,-0.026130551,-0.21469301,0.30916944,-0.61188227,0.2903035,0.09373236,-0.24762322,0.005221226,-0.3435935,-0.23652351,-0.39729846,-0.6384265,-0.011516675,-0.5735945,-0.12580536,-0.04353434,0.10448303,-0.40063366,-0.040005505,-0.38246012,0.5406416,-0.609557,-0.19744629,0.24971366,-0.12763706,0.22559637,-0.565579,-0.18722223,-0.26036927,0.12879096,-0.1084793,-0.3880429,0.039679233,0.18453635,0.6754852,0.19256978,-0.31282035,-0.37244025,-0.035591196,0.24418916,0.51530606,-0.17088576,-0.45962515,-0.26870435,-0.03249641,0.28868547,0.23513447,0.054646295,-0.45512363,0.05599167,0.10860199,-0.17074454,0.54828733,0.5670833,-0.21303982,-0.30439812,0.27982673,0.5539916,0.040811434,-0.049316343,0.33350554,0.00839815,-0.46095213,-0.28991887,0.3894924,0.15611327,0.6487446,-0.19390722,0.27251697,0.79829246,-0.33247247,-0.021631658,-0.06433573,-0.13897012,0.088286005,-0.22321981,-0.31747425,0.2784065,-0.5165944,0.08384811,-0.39260408,0.78951234,0.19258142,-0.8873988,0.3003686,-0.48553458,0.19937132,-0.213893,0.8682526,0.71893173,0.4642385,0.25290382,0.70351344,-0.69385093,0.12440914,0.14666475,-0.37095556,-0.095794745,-0.10218493,-0.07919801,-0.37789688,-0.04459876,-0.19873166,-0.12458765,-0.13412966,0.4597012,-0.47380757,-0.02787424,-0.1828571,0.59744817,-0.43043885,-0.052605186,0.9886713,1.0376182,1.053196,0.098294295,1.2792009,0.45234847,-0.12750575,0.06281814,-0.21362258,-0.5772253,0.2684324,0.481956,0.22386025,0.55009407,-0.0024424095,-0.07218271,0.47801006,-0.24786146,0.16377948,-0.23263335,0.1502163,-0.092299044,-0.15404513,-0.56160563,-0.1100212,0.06965807,-0.037640862,-0.17289847,0.31311062,-0.18214393,0.6896911,0.021004893,1.4127522,-0.05519122,0.14291327,-0.09298015,0.4206419,0.20356452,-0.24814947,0.094800055,0.28936377,0.60199404,0.035607353,-0.8823538,0.04093905,-0.31551948,-0.6152709,-0.2713348,-0.399628,0.08763859,-0.3285258,-0.6020859,0.053506706,0.038547352,-0.27580357,0.23666398,-2.243103,-0.26643217,-0.06517772,0.32834914,-0.20216839,-0.35447666,-0.06654274,-0.42382732,0.25917366,0.48679557,0.43273187,-0.91326445,0.53088003,0.5058736,-0.31706628,0.00023096055,-0.8070574,-0.17593347,-0.18103445,0.32423195,-0.15452538,-0.06592751,0.06594856,0.09394977,0.67476934,-0.16259833,-0.057632234,0.045811485,0.5934177,0.011791264,0.61386496,0.22987634,0.5503816,-0.5000685,-0.086230434,0.42336652,-0.41567865,0.3324189,0.14110671,0.1775168,0.35985556,-0.6081373,-0.8931981,-0.70021635,-0.42651176,1.1646641,-0.36344823,-0.41901794,0.19832355,-0.16717225,-0.32030046,-0.24239628,0.3913689,-0.32744798,-0.029070335,-0.8584772,-0.0016644945,-0.10975248,0.20790692,-0.069435805,0.11516055,-0.26193854,0.6272358,-0.19972758,0.47488582,0.5677574,0.20866053,-0.12992065,-0.58634627,0.08783426,0.9393453,0.33852378,0.1765439,-0.28122172,-0.1992587,0.014022599,-0.002403438,0.105068445,0.5797402,0.93381506,0.021581432,0.110175826,0.3714129,-0.10922339,0.112595625,-0.2595029,-0.4107221,-0.28754863,0.22071011,0.62726736,0.62196296,-0.32507506,0.4936492,-0.12933217,0.25569096,-0.058161687,-0.45733523,0.59254366,1.1548194,-0.08504636,-0.21496814,0.6224411,0.4891955,-0.67249876,0.44138741,-0.72167593,0.042565748,0.5758803,-0.17143582,-0.42260575,0.19421445,-0.3493255,0.16459294,-1.0045431,0.40504026,-0.28789297,-0.6369382,-0.592029,-0.24390812,-3.5310354,0.26692203,-0.37137294,-0.24010836,-0.12825659,-0.42286345,0.24946052,-0.85417366,-0.5458463,0.27396917,0.13070856,0.37007606,0.015383795,0.12388459,-0.4006665,-0.061826333,-0.18316191,0.24437277,0.2203923,0.118504375,0.0015399456,-0.34988406,-0.033413846,-0.16997935,-0.57155484,0.08043623,-0.58061355,-0.6463675,-0.12423556,-0.615902,-0.34512123,0.73233265,-0.05684785,-0.124907315,-0.10675516,-0.03429011,-0.28366622,0.45179144,0.050648343,0.3099304,0.06526465,-0.06653326,-0.17145602,-0.30442628,0.09732163,0.06277903,0.4024664,0.24937749,-0.3943604,0.28254095,0.71475583,0.78373903,0.08747738,0.5378195,0.38612735,-0.044730738,0.29073706,-0.3467051,-0.3091301,-0.85047513,-0.47115585,-0.2823098,-0.5194978,-0.5570919,0.059948266,-0.32221723,-0.9128135,0.57973975,0.006307187,0.276064,-0.10030771,0.36848494,0.41130814,0.0053775706,-0.02347076,-0.22090203,-0.21537317,-0.53313977,-0.34711495,-0.79136634,-0.7571447,0.18114668,1.12166,-0.034005433,-0.09118051,-0.0040522516,-0.45873603,0.16426583,0.2941161,0.08768494,0.26535347,0.22753887,-0.16291584,-0.60638684,0.35441867,0.052136708,-0.28488764,-0.5447442,-0.121259846,0.8361657,-0.6990425,0.77850085,0.29911435,-0.055457886,-0.035320923,-0.62947315,-0.43090308,0.12582342,-0.017629514,0.6037068,0.1894297,-0.70631456,0.31511095,0.32995367,-0.074641235,-0.5960447,0.39525452,0.0036232274,-0.18999599,0.12584396,0.43901715,-0.08750826,-0.16058299,-0.16278672,0.31217018,-0.46914646,0.23367858,0.35878053,-0.06389292,0.30168223,-0.035371277,-0.26489946,-0.74830943,-0.0158338,-0.8227079,-0.11999971,0.2222532,0.02758702,0.22032027,0.0012089213,0.06429594,0.541764,-0.4445248,0.13434677,0.04333042,-0.39019442,0.26082093,0.55212426,0.16914056,-0.53812474,0.61929065,0.1830294,0.04521576,-0.051640898,0.35508272,0.45866346,0.29131585,0.44516048,-0.012040894,-0.0885605,0.2887354,0.8621581,0.3092618,0.7557278,0.38032636,-0.13356082,0.38059327,0.23362432,0.33458373,-0.15743934,-0.08641412,0.11370777,0.29027113,0.19075592,0.4806423,-0.039522085,0.5308934,-0.29364672,-0.09096133,0.2895867,0.26036057,-0.056853533,-1.1354244,0.24843115,0.22991507,0.63137406,0.54641944,0.08389958,-0.08352023,0.4226749,-0.39960155,0.005800287,0.3636265,0.13042101,-0.57749265,0.7800224,-0.5031924,0.35104966,-0.2265122,0.16202737,-0.028956363,0.06511859,0.4103371,0.7529022,0.022022093,-0.00022647779,-0.06298473,-0.06924351,0.013204694,-0.62775517,0.064645104,-0.470404,-0.30783102,0.794625,0.49576774,0.35691395,-0.08218012,-0.19045796,0.18520927,-0.06643113,0.29665866,-0.073752716,0.0132722035,0.049592227,-0.6177211,-0.3913047,0.5425258,-0.007377515,0.20436817,-0.05137968,-0.41703868,0.38427404,0.0059494376,-0.23274446,0.04854768,-0.6558129,0.12427407,-0.48907685,-0.54067504,0.3186442,-0.3999051,0.1378284,0.24298346,0.08776033,-0.5000604,0.06901966,0.04333785,0.8672678,-0.06366845,-0.22843993,-0.40840045,0.0701325,0.4156628,-0.34848508,0.100789316,-0.30658877,0.17527731,-0.62519664,0.42325506,0.0055918843,-0.4180862,-0.10420781,-0.050730154,-0.04084143,0.565515,-0.32959536,-0.30730549,0.10301901,-0.09005741,-0.28229442,-0.312084,-0.24976148,0.37070575,0.053724747,0.13268243,0.13665994,0.0396686,-0.0052458644,0.4611297,0.23835717,0.2568329,0.37316844,-0.10117433,-0.54165965,-0.1014267,0.12539828,0.35235667,0.24694002,-0.16173273,-0.3463802,-0.4906589,-0.18314809,0.17086244,-0.27485648,0.33512464,-0.010449062,-0.5640379,0.9491031,0.15452062,1.2930257,-0.036763106,-0.3961326,0.006306559,0.48066974,0.1146124,0.00092152756,-0.1642904,1.0058953,0.5741555,-0.19179118,-0.30819634,-0.5687682,-0.36809552,0.17608742,-0.30302432,-0.28485477,-0.099648595,-0.7261159,-0.09996287,0.26587802,0.14048503,0.17975198,0.056310367,0.14426541,0.13805097,0.013138414,0.38555232,-0.5847197,0.1218349,0.17462908,0.13755943,0.020893475,0.09332079,-0.4250014,0.32303914,-0.6940224,0.3825264,-0.4715338,0.17741273,0.086616315,-0.2834515,0.26371494,0.059113335,0.22483851,-0.4074115,-0.284589,-0.32738855,0.8359904,0.16048272,0.39079687,0.83127713,-0.3075176,0.15219049,0.13249806,0.43873847,1.4162006,-0.06608615,-0.10885068,0.32398906,-0.31419334,-0.78523713,0.2569466,-0.32204852,0.33324566,-0.19793268,-0.44329453,-0.62042063,0.15346353,0.17548622,-0.1185837,0.18738091,-0.53252214,-0.3244343,0.51283926,-0.4478674,-0.25187686,-0.38746095,0.2471602,0.70434374,-0.47150633,-0.31144688,-0.043369222,0.3767183,-0.29320085,-0.37050724,-0.028696133,-0.24355714,0.32352456,0.11080479,-0.35664198,0.080036364,0.2751111,-0.2846638,0.2011009,0.5507856,-0.32949972,0.13588591,-0.0946249,-0.4107801,1.0683262,-0.081864916,0.081457496,-0.56785005,-0.49161342,-1.0512761,-0.4415667,0.46336463,0.20626305,0.05736346,-0.87218803,0.21393521,0.035754096,0.08760336,0.012326658,-0.5123022,0.4895537,0.059185922,0.5368712,0.05066358,-0.8067798,0.082265735,0.22561389,-0.22916047,-0.55669504,0.67747086,-0.16796398,0.6900237,0.09077088,0.25338888,0.11768945,-0.6172897,0.20156397,-0.40437606,-0.38784918,-0.7195093,-0.0491136 +516,0.38833612,-0.22331135,-0.52271444,-0.12273347,-0.12431395,0.16939034,-0.09247494,0.6382496,0.27548364,-0.3102471,-0.17320326,-0.027663182,-0.058637083,0.116113916,-0.071918644,-0.35571423,-0.06136479,0.1586879,-0.34655595,0.3064436,-0.44671223,0.2414625,-0.23587857,0.48288026,-0.008385726,0.32277557,-0.07698591,-0.11211856,-0.0941967,-0.06990364,0.05249656,0.20009701,-0.5034653,0.18468535,-0.21073274,-0.22205885,0.06657764,-0.45091024,-0.4037541,-0.6351467,0.20208056,-0.6702794,0.55680877,0.13670053,-0.25671017,0.11518077,-0.11038587,0.31982288,-0.31118867,0.15661652,0.2090733,0.027147233,0.030620605,-0.1681282,-0.22373803,-0.31891897,-0.41708788,-0.02758566,-0.32593456,0.11481057,-0.046057265,0.09571905,-0.20403457,-0.09606123,0.054483037,0.19025488,-0.39812157,0.07492752,0.2316018,-0.07115957,0.31761572,-0.50349575,-0.057465546,-0.18771955,0.25031942,-0.22806609,-0.35054383,0.17225806,0.2420878,0.38626626,-0.1512172,-0.08956813,-0.21874169,0.06613641,0.057965923,0.51313066,-0.19409218,-0.3461878,-0.15828688,-0.011607059,0.16461551,0.3179911,-0.026774362,-0.3284735,-0.08825741,-0.034104887,-0.16962685,0.18697026,0.45311317,-0.17066193,-0.21684077,0.44100827,0.65835094,0.24251921,-0.13190435,0.0752204,0.102691785,-0.48528567,-0.26936752,0.01613711,-0.066913486,0.42126852,-0.060636204,0.16561364,0.6005497,-0.22534576,0.044430885,0.120794944,0.14491403,-0.065843925,-0.36835107,-0.2605808,0.11833144,-0.43479106,0.11647391,0.043301325,0.48612022,0.16654356,-0.773811,0.30379072,-0.48768565,-0.039471574,-0.14506564,0.46018973,0.72339904,0.36310267,0.07732113,0.7533568,-0.45862404,0.10227449,-0.110116705,-0.28834465,0.24392779,-0.13726631,-0.27819216,-0.5619251,-0.032947216,0.14481668,-0.21748923,0.15719615,0.20727518,-0.523127,-0.094047174,0.2356285,0.6971577,-0.28402767,-0.012766817,0.5297279,1.0229372,0.7881781,0.07888118,1.2174414,0.18318437,-0.20288096,0.29827246,-0.2973515,-0.8583035,0.25729942,0.28398997,-0.40823895,0.2862857,0.25567427,-0.012447382,0.3170905,-0.42167473,0.08163545,-0.17569928,0.23242274,0.061080612,-0.09977215,-0.37198335,-0.16264954,-0.11002148,0.07559826,-0.0015894409,0.11625483,-0.29918084,0.045533735,0.022542706,1.6936404,-0.07523538,0.07114402,0.075862214,0.42995828,0.29672602,-0.23903057,-0.24739002,0.4621695,0.32670325,0.041548435,-0.49088898,0.16538931,-0.0797954,-0.4529497,-0.12314649,-0.21235672,-0.053712767,-0.030795734,-0.41835418,-0.11368662,-0.07464092,-0.24491286,0.56734085,-3.059758,-0.10532091,0.003775867,0.35041922,-0.23188867,-0.37307963,-0.31519964,-0.2910796,0.40052363,0.32258347,0.41370985,-0.61624783,0.22014007,0.363107,-0.4923654,-0.114020094,-0.5607327,-0.023496827,-0.06608774,0.15475067,0.0771901,0.1309532,-0.030567693,0.07930277,0.3489821,0.018736694,0.13106754,0.26429686,0.35062,0.17577538,0.30789492,-0.023885157,0.5513549,-0.2675776,-0.22770227,0.20964594,-0.40178388,0.37846312,-0.06684296,0.1389732,0.36363724,-0.39439696,-0.7744605,-0.7433511,-0.31585464,1.1352737,-0.09913169,-0.2153703,0.24405824,-0.5355391,-0.43868738,-0.06903053,0.48335218,-0.09939657,-0.0769936,-0.78720874,-0.05873576,-0.038698558,0.27711424,-0.04215037,-0.03711682,-0.37498218,0.50465405,-0.057129834,0.45776924,0.39279482,0.12618186,-0.012689216,-0.3630752,-0.023393128,0.785497,0.32899597,0.20225,-0.07186721,-0.13021104,-0.405376,0.0692464,0.19601624,0.47516492,0.6628803,-0.102444,0.08269201,0.23164591,0.06555754,-0.025081446,-0.02912559,-0.20446995,-0.10370314,0.024416719,0.45920214,0.59561026,-0.24884753,0.32938102,-0.09980643,0.19121528,-0.23458685,-0.35581827,0.4562308,0.5041022,-0.16201106,-0.1963712,0.50435513,0.46318203,-0.28969607,0.38621807,-0.64365673,-0.11743344,0.28480133,-0.08074578,-0.3521429,0.150037,-0.28981858,0.13107076,-0.79782486,0.23039038,-0.22508118,-0.4897918,-0.4676891,-0.16299696,-2.8842413,0.17161553,-0.04767397,-0.2199321,-0.03647903,-0.016548077,0.32486483,-0.5375487,-0.5473927,0.21780573,-0.04375713,0.56129247,-0.003473912,0.009881073,-0.24555066,-0.24787806,-0.40026268,0.12710682,0.15591598,0.2842167,-0.06013745,-0.45987344,-0.28798217,-0.085960254,-0.29672313,0.07611145,-0.5548916,-0.3613945,-0.15378754,-0.49677753,-0.14918923,0.6432471,-0.35095105,-0.057669677,-0.12719306,0.08900799,-0.15803662,0.31349915,0.110995464,0.094371065,0.08574986,-0.07379801,-0.11800366,-0.28091666,0.35467649,0.09679745,0.18052319,0.35030276,-0.18648815,0.15694794,0.46464893,0.6000938,-0.306918,0.72578526,0.52251136,-0.15294524,0.24063852,-0.23957387,-0.14215067,-0.22439204,-0.31809774,-0.12336874,-0.40557358,-0.539231,0.006299351,-0.4309814,-0.7978844,0.435462,0.014740025,0.081438676,0.1100124,0.080727376,0.4315572,-0.27138776,0.122676685,-0.07700186,-0.097629316,-0.47163102,-0.39857492,-0.3978262,-0.3688722,0.30588004,1.1482184,-0.31783336,0.111741535,0.10866649,-0.27924946,0.056049425,0.08459227,-0.16037706,0.090525344,0.37600285,-0.021039503,-0.4892521,0.35818842,-0.057451643,-0.29454756,-0.6373922,0.13496672,0.580719,-0.682951,0.6825738,0.28685755,0.053204834,-0.108203545,-0.54174274,-0.21337937,-0.10752963,-0.19485526,0.3608994,0.21234797,-0.82354206,0.3405473,0.3306524,-0.24025595,-0.6275448,0.5392286,-0.048282135,-0.19040336,-0.11758081,0.3242289,0.04252881,0.016574526,-0.21178806,0.33499452,-0.32685512,0.18553202,0.24644177,-0.16500379,0.2565045,-0.13946515,0.053721078,-0.651409,-0.0107235825,-0.48967028,-0.23522295,0.31902176,0.017734239,0.10538375,0.12381495,0.3133313,0.3854634,-0.42783532,0.12252243,-0.038534544,-0.29124936,0.2801945,0.3393428,0.56087905,-0.3006709,0.41770062,-0.057990793,-0.11904045,-0.0030625719,0.1921287,0.4377543,-0.015368079,0.33037472,-0.075745344,-0.1595839,0.22038443,0.7580947,0.10138223,0.2752753,-0.0872621,-0.15076981,0.11103281,0.09289605,0.20930317,0.07032858,-0.54036325,0.02331886,-0.15755013,0.23237015,0.29873863,0.18970571,0.21243954,-0.0559495,-0.189694,-0.012608631,0.24153194,0.20415767,-1.0268854,0.39578167,0.17760292,0.77834475,0.42622256,0.08212763,0.08329691,0.40949455,-0.059366845,0.28372476,0.33710548,-0.08628937,-0.44249153,0.30271143,-0.67503136,0.51849496,-0.018409982,-0.07165513,0.14513305,-0.16667823,0.5154821,0.8824849,-0.018630203,0.06440751,0.095688686,-0.23508975,0.07822567,-0.32318863,0.02838583,-0.7235297,-0.27100685,0.5965193,0.6087044,0.38756707,-0.14220642,-0.09228063,0.1200924,-0.02517576,0.10349225,-0.032620136,0.19798912,0.12773319,-0.65192395,-0.15634228,0.39740413,-0.036646504,0.12046402,-0.016483588,-0.23910722,0.24229966,-0.111569546,0.12344681,-0.041060958,-0.62715924,-0.037428796,-0.32049394,-0.31357384,0.39542732,-0.171041,0.22838278,0.09627167,0.10945397,-0.20470282,0.6211692,-0.029025625,0.8853103,-0.019933837,-0.10746665,-0.5064913,0.38052484,0.2602938,-0.14660631,-0.1354453,-0.31137872,-0.023626294,-0.5569784,0.37750122,0.07631942,-0.28032735,0.14412387,-0.15677586,0.09409598,0.59469193,-0.027029783,-0.2643743,-0.006740303,-0.31215635,-0.32933596,-0.08587032,-0.17764787,0.29176834,0.27838564,-0.023414543,-0.045399833,-0.05734392,-0.10742295,0.2633249,0.15554766,0.36365095,0.3519566,0.054677896,-0.22603965,-0.13619456,0.101514764,0.47555453,-0.10387429,-0.05155593,-0.20075993,-0.4374599,-0.33564574,0.094728775,-0.14956252,0.41792765,0.12843904,-0.01950568,0.58704346,0.10175575,1.0230757,0.00044902734,-0.20295751,0.085918866,0.5136093,0.036655564,-0.106070876,-0.48443553,0.8632657,0.5609482,-0.12572148,-0.05539332,-0.15916406,-0.20072302,0.12997498,-0.15604237,-0.0060414374,-0.05049076,-0.802777,-0.23569909,0.20526157,0.216581,0.18862118,-0.0282926,0.045478284,0.14863284,-0.015162939,0.08676096,-0.41315168,-0.103475,0.33504367,0.43372563,0.053130936,0.21073537,-0.44872794,0.35919023,-0.44350109,-0.038127013,-0.14805089,0.22195847,-0.32858464,-0.39106295,0.07755886,-0.025020916,0.34471464,-0.2918748,-0.36977807,-0.28468725,0.45821968,0.15993173,0.28593203,0.50085837,-0.27479056,0.0029102224,-0.1112896,0.47432423,0.8080816,-0.29033586,-0.10473098,0.65009767,-0.23298731,-0.53662026,0.24487206,-0.4323873,0.24325152,0.004288465,-0.23300405,-0.4819757,0.37656382,0.16236892,0.04206158,-0.015672365,-0.65486866,0.034143515,0.12655939,-0.08472326,-0.1970004,-0.20172271,0.15831752,0.80228585,-0.20139053,-0.43808657,0.14902271,0.27639422,-0.2716797,-0.36635795,0.011995784,-0.34800863,0.18315998,0.021726653,-0.3397448,-0.2607095,-0.047696956,-0.43470588,0.13297163,0.029529164,-0.29815742,0.08648811,-0.38835558,-0.062221687,0.9051545,-0.17566507,0.16766466,-0.40332016,-0.3963302,-0.72719127,-0.28132984,0.40798035,0.17752822,-0.026491674,-0.4702769,0.1110251,-0.07457851,-0.08913636,-0.10886905,-0.21515281,0.5078572,0.041224293,0.28782955,-0.19349328,-0.89094603,0.119098485,0.13676505,-0.3079392,-0.59664965,0.5205686,-0.05867044,0.789832,0.06408534,0.031049516,0.30337867,-0.44049922,-0.0005747463,-0.27063534,0.038371198,-0.72152084,0.045927692 +517,0.33949152,-0.20070569,-0.3661718,-0.25766653,-0.37147003,-0.06265949,-0.22641332,0.39752445,0.36346084,-0.021167597,-0.116263725,-0.023844277,0.029534552,0.37301397,-0.16863884,-0.64720047,-0.12016706,0.089146666,-0.69567645,0.61729413,-0.5375858,0.18476631,-0.12404548,0.35801294,0.11571063,0.32390437,0.27228266,0.005044005,-0.0040098685,-0.18534507,-0.022531044,0.15861061,-0.56282115,0.24063604,-0.32350186,-0.037807524,0.124340914,-0.5360676,-0.18581088,-0.72776526,0.09515054,-0.6874679,0.46683955,-0.02383943,-0.27957252,-0.0833083,0.3909436,0.26441282,-0.33253166,-0.15712701,0.12972276,-0.1674533,-0.13134804,-0.27624756,-0.042887695,-0.4149039,-0.49686316,-0.07574123,-0.59960204,-0.29105255,-0.19169684,0.28824827,-0.3477016,-0.108755484,-0.07414108,0.6010569,-0.360931,-0.014700617,0.43940252,-0.26088265,0.20430791,-0.59572786,-0.05637086,-0.07227381,0.4967608,0.2314489,-0.28829622,0.3910317,0.39056233,0.23166673,0.30001926,-0.4445486,-0.18255602,-0.3403688,0.13489059,0.3992059,-0.056445558,-0.31357303,-0.17656676,0.00081918604,0.17922238,0.3975183,0.07886408,-0.17238823,0.006945263,-0.20911275,-0.207427,0.75127316,0.51957786,-0.15244927,-0.22767782,0.32152963,0.5785348,0.4466157,-0.38715464,-0.046930183,-0.01622633,-0.535277,-0.008269697,0.1795002,-0.096442156,0.4096267,-0.1680118,-0.067171015,0.8796133,-0.12060789,-0.0992809,-0.029498054,0.082355216,-0.091423154,-0.48478022,-0.0908234,0.18309096,-0.46302864,0.008795355,-0.32366195,0.6725833,0.18658392,-0.5941537,0.3425255,-0.5645772,0.19795227,0.103757985,0.5932007,0.6799821,0.48648423,0.40656796,0.74242103,-0.027751466,0.27681166,0.12040358,-0.3559436,0.17667103,-0.5308135,0.10913899,-0.331173,0.083653025,-0.20209798,0.064247645,-0.054295022,0.31048554,-0.5349658,-0.17774987,0.37710115,0.85476655,-0.20432271,-0.090273924,0.8198703,1.1652324,1.0710176,-0.025045034,1.1872075,0.28742024,-0.20646413,0.1547462,-0.30346107,-0.6536328,0.18912141,0.40820494,0.30146512,0.25219655,-0.15918902,-0.05158231,0.37880865,-0.4623862,-0.042484485,0.06207048,0.3892656,0.25290695,-0.12116999,-0.4240438,-0.22208425,-0.013571969,0.038322117,0.1765564,0.22692506,-0.29850525,0.33163553,-0.12422116,1.1116062,-0.03540106,0.07542974,0.13775304,0.6847376,0.35401648,-0.11396014,0.046361186,0.5649513,0.29622558,-0.04059126,-0.5849214,0.31628567,-0.44145808,-0.29760224,-0.12050109,-0.45554584,-0.16002215,-0.031741805,-0.35825038,-0.01507027,-0.0015139729,-0.21089162,0.39718658,-2.9375892,-0.2850377,-0.25079384,0.28967264,-0.23757844,0.002164909,0.0051420764,-0.5348647,0.2719648,0.34505334,0.52413327,-0.5676058,0.44794697,0.53873956,-0.58741695,-0.16050935,-0.7504301,-0.107261255,-0.1689028,0.57303774,0.06272994,-0.008776789,-0.14324729,0.22324161,0.86179113,0.301037,0.123164475,0.43868825,0.33898577,-0.1665778,0.61541194,-0.05191976,0.45878622,-0.2450907,-0.14884038,0.2495244,-0.48932287,0.3564107,-0.27862927,0.10847836,0.6873024,-0.40015522,-1.0393573,-0.6020239,-0.36551064,1.0717199,-0.30708784,-0.5148239,0.1828358,-0.34156674,-0.094219685,-0.016182525,0.75304544,0.0012509525,0.29130363,-0.5800832,0.088306464,-0.07512146,0.11124885,-0.006912407,0.009249449,-0.37780094,0.7758461,0.023352828,0.5301181,0.09016233,0.2847861,-0.28746843,-0.40639523,0.024790483,0.5349082,0.3473506,-0.14758515,-0.19496632,-0.26830512,-0.052820094,-0.20411314,0.02255323,0.6692376,0.5510106,-0.18012966,0.07254432,0.349935,-0.15900032,0.052762408,-0.17165907,-0.19223033,-0.13730422,0.06248315,0.46478945,0.81206566,-0.09930769,0.33994243,-0.10474931,0.27081156,-0.09895999,-0.49407625,0.73636,0.5480734,-0.20434867,-0.1127793,0.38996,0.5520915,-0.5069791,0.52191967,-0.54074585,-0.0797854,0.7088179,-0.10327946,-0.50373805,0.12548365,-0.2080772,-0.045786362,-0.6957407,0.351242,-0.41451117,-0.46045998,-0.46791092,-0.11367808,-3.3669028,0.13199821,-0.14244471,-0.21550952,-0.4342012,-0.03449956,0.21400462,-0.5479299,-0.53610605,0.19209363,0.28913537,0.6305569,-0.1398451,0.087943606,-0.37232646,-0.22629209,-0.23366629,0.27425426,-0.07296874,0.35995224,-0.3146865,-0.30339304,0.0077622705,-0.15548947,-0.5952776,0.16158509,-0.5372005,-0.43212146,-0.080859415,-0.57563597,-0.10812926,0.66147363,-0.34311932,0.06335683,-0.18709336,0.18232597,-0.10635511,0.23645541,-0.047658127,0.32307878,0.18418038,-0.1637768,0.16117045,-0.31350708,0.48576263,-0.027235596,0.4227688,0.06011542,0.11512655,0.20881854,0.63083947,0.62474674,-0.16712868,1.1182814,0.36084148,-0.097982824,0.28227726,-0.2790447,-0.25279865,-0.5101895,-0.26686192,0.089692846,-0.42671207,-0.47581577,-0.03324584,-0.2983916,-0.7334337,0.5155846,0.084039465,0.31528863,-0.010122932,0.17395563,0.37558573,-0.26022688,0.045293696,0.0583965,-0.11377406,-0.58279794,-0.192561,-0.61516434,-0.4196798,0.07792831,0.7142571,-0.36282596,0.018629897,-0.20431328,-0.48237616,0.002079044,0.16648297,0.08033202,0.16033961,0.36896887,0.059422206,-0.5893253,0.3564301,-0.030046506,-0.04251074,-0.49313977,0.2529236,0.6624368,-0.72577983,0.77104837,0.369411,0.108242,-0.3055554,-0.63192147,-0.2258923,-0.014671796,-0.10869271,0.45150185,0.05627925,-0.8667702,0.49957734,0.02784665,-0.44075772,-0.6947287,0.29736045,-0.24868275,-0.13404815,-0.023045972,0.33364484,0.24249499,-0.18510392,-0.35582533,0.2805248,-0.41463703,0.12197246,0.114646114,-0.007808217,0.44117424,-0.11703551,-0.31361192,-0.8005079,-0.08827671,-0.56683517,-0.33361688,0.3826608,-0.055935476,0.019058645,0.07535078,0.18224931,0.21644713,-0.15548666,0.16859491,0.003997726,-0.4327583,0.43786258,0.53771496,0.48995224,-0.50181234,0.5096802,0.21069722,-0.11353461,0.101858035,0.14871696,0.20353325,-0.013750808,0.54738003,-0.102774434,0.013716067,0.22960792,0.69664925,0.17447911,0.46085587,0.1838633,-0.20890068,0.5073528,-0.154382,0.27331594,-0.06949333,-0.45640564,0.06909912,-0.29525656,0.12717174,0.48778385,0.2550766,0.3466241,0.23242353,-0.34245226,0.05261422,0.2827404,-0.17327465,-1.3304205,0.42857003,0.4366507,0.990396,0.390164,0.13987996,-0.13701652,0.93126494,-0.10515259,0.0009897479,0.5254093,0.1262027,-0.3773009,0.70384496,-0.7342596,0.6542513,-0.08831779,-0.15930246,0.16340172,0.24163808,0.5244047,0.7377287,-0.22946028,-0.028894896,-0.077958785,-0.2615372,0.12278998,-0.43388563,0.09773923,-0.24693811,-0.4118125,0.5986914,0.37117788,0.42354134,-0.21730836,0.04461465,0.07352718,-0.2284969,0.2522934,-0.20339087,-0.38460732,0.027473314,-0.6005041,-0.18533404,0.54496753,-0.08826851,0.18067011,-0.13153982,-0.11051762,0.019451307,-0.24963458,-0.06567695,-0.029983094,-0.69883543,-0.008472143,0.0556611,-0.5875796,0.5119576,-0.4115087,0.16150965,0.22823927,-0.015712619,-0.16294768,0.46766493,0.06618328,0.87326324,-0.051734217,-0.33043915,-0.40646964,0.014879746,0.13863486,-0.34227392,0.060438126,-0.43264857,0.0627189,-0.47879925,0.6559077,-0.27612025,-0.4463329,-0.01416191,-0.17165093,-0.0576892,0.6075812,-0.12950768,-0.23369339,-0.15767513,-0.23112185,-0.20394969,-0.008873982,-0.18980739,0.24516416,0.28966147,-0.22193614,-0.17107923,-0.14386265,0.07930287,0.55486155,-0.038144324,0.4140814,0.14447449,-0.11780294,-0.12608092,0.054339997,0.27004206,0.52443606,0.22102149,-0.057210326,-0.28548998,-0.3309346,-0.33903316,0.24450125,-0.026404846,0.15942955,0.0073761493,-0.21668456,0.74335384,0.021051237,1.2473463,0.058607962,-0.3869975,0.19728735,0.58683544,-0.10375144,0.058996383,-0.48889425,0.852097,0.442645,-0.15452072,-0.044596683,-0.6609602,-0.0076586604,0.38390133,-0.350852,-0.011492344,-0.045855463,-0.5948416,-0.18379724,0.13838162,0.10901173,0.23826525,-0.16189913,-0.18512893,0.05404681,0.17540121,0.41915822,-0.59141976,0.03747328,0.3095822,0.21159098,-0.08912647,0.021992058,-0.32274392,0.42944124,-0.65717477,0.25852826,-0.3569037,0.18164046,-0.51286155,-0.36490706,0.17170827,-0.060125034,0.35814667,-0.30539924,-0.38648096,-0.059861097,0.55702764,0.12070383,0.081315234,0.51700836,-0.30452496,-0.04683638,0.16297688,0.67116946,1.0302159,-0.45002407,0.045879632,0.10720159,-0.53879535,-0.5351858,0.31014776,-0.4585783,0.120293796,-0.08679892,-0.42309448,-0.51387393,0.21604571,0.15036038,0.16404247,0.12294048,-0.6393046,-0.26838377,0.27430266,-0.3662474,-0.27902514,-0.29113847,0.21275207,0.76446456,-0.2308295,-0.5559972,0.073203966,0.20767297,-0.15564434,-0.53018963,-0.05991116,-0.23635612,0.34308308,-0.066764854,-0.36685798,-0.08738107,0.015051656,-0.57273394,0.14312468,0.16755798,-0.3406535,0.074231744,-0.062952206,-0.05742562,0.8850764,-0.27587715,0.029869225,-0.55934054,-0.5385291,-0.8898288,-0.5081867,0.22854187,0.11521884,-0.022107124,-0.35047546,0.05087418,-0.15571903,-0.061591525,0.09802619,-0.67995805,0.2460023,0.113257594,0.5274517,-0.36351702,-1.0325301,0.1601031,0.16909401,-0.020510452,-0.73227566,0.52326804,-0.20608732,0.67304903,0.05537481,-0.030717824,-0.10629785,-0.32251474,0.111405864,-0.36169273,-0.1740632,-0.731676,0.31502342 +518,0.5444685,-0.26923248,-0.5171682,-0.11406352,-0.22871889,0.08830041,-0.15120816,0.5004249,0.20164907,-0.37079677,-0.24754131,-0.16667248,0.0063584405,0.106739216,-0.19081299,-0.50848913,-0.028106462,0.20920028,-0.5490055,0.5429812,-0.3117643,0.28440946,-0.033421487,0.3585636,0.22844757,0.24998637,-0.16117649,-0.0119080115,-0.20612405,-0.24398364,-0.01973643,0.15134564,-0.3326995,0.09896245,-0.17044297,-0.36720043,-0.01606724,-0.57679385,-0.32055685,-0.7829844,0.35365012,-0.78844357,0.51207495,0.13623714,-0.40550715,0.2264155,0.1288547,0.49160028,-0.19442652,-0.02432957,0.24252304,0.024019914,-0.09389806,-0.1741869,-0.106620856,-0.29543775,-0.62763584,0.023108972,-0.23439372,-0.12636988,0.013059588,0.1210956,-0.26316825,0.10822676,-0.00067121006,0.6333934,-0.3539775,0.124961935,0.34793755,-0.1204573,0.34931442,-0.6126613,-0.17628582,-0.09704177,0.26015696,-0.16698167,-0.21887903,0.0699109,0.26761478,0.41083437,-0.0947174,-0.18576486,-0.14826906,-0.071932115,0.07436579,0.4974605,-0.2585598,-0.35833946,-0.07319069,0.018174853,0.20376869,0.20856558,0.2367918,-0.20109245,-0.04839954,0.0087228585,-0.28496534,0.27797857,0.40796205,-0.33579317,-0.06956398,0.33067378,0.68473834,0.07044094,-0.079063006,-0.15306576,0.1349285,-0.46631542,-0.14556547,0.114348315,-0.30480966,0.49334583,-0.0570325,0.22794998,0.4740836,-0.14068979,0.040486194,0.09545808,0.14693509,-0.11963398,-0.27677798,-0.40265203,0.2329882,-0.3969691,0.059898607,-0.23828936,0.8401147,0.16774063,-0.6659552,0.25401723,-0.6062568,0.113073215,-0.12438255,0.3890083,0.62923825,0.38287964,0.2839822,0.5760953,-0.24101345,-0.030601945,-0.051433094,-0.17983472,0.00564866,-0.09989716,0.1759645,-0.56019145,-0.07609552,-0.018107167,-0.100168034,0.062055536,0.32502517,-0.6167044,-0.11481125,0.04326868,0.85815084,-0.20557824,-0.095451996,0.76034635,1.0749606,0.8486592,0.024171766,0.98829085,0.27455088,-0.23947895,0.19090907,-0.4013501,-0.5535781,0.31503564,0.344145,-0.4548457,0.22933903,0.0066316235,-0.12759782,0.5180373,-0.38124913,0.14016205,-0.24108876,0.117847405,0.098777756,-0.081355326,-0.39372855,-0.36904603,-0.08433016,-0.042393416,0.122357525,0.338772,-0.2109933,0.2573511,0.017099764,1.5270119,-0.036187153,0.11605795,0.12324598,0.1634526,0.12092668,-0.13237199,-0.17898533,0.38184658,0.20047851,0.063769974,-0.5453073,0.21415019,-0.23957255,-0.3512581,-0.059739348,-0.13890274,-0.122023776,0.074916296,-0.43780988,-0.14722167,-0.30807877,-0.32005876,0.40079448,-2.735909,-0.24133444,-0.18648541,0.44041434,-0.3251175,-0.47496685,-0.026219854,-0.47661275,0.40612406,0.2963865,0.4291429,-0.6123451,0.47326368,0.20476885,-0.532607,-0.15945256,-0.5865502,-0.08077465,0.08242049,0.0944988,-0.16486566,-0.12871632,0.011145779,0.17503557,0.3735349,0.02152094,0.1439691,0.40857357,0.43270758,0.0071570063,0.40549448,-0.027233137,0.47172302,-0.27289245,-0.19744286,0.2596244,-0.53199875,0.18722776,0.0768106,0.07722323,0.45300967,-0.48401165,-0.73962146,-0.7259621,-0.24670915,1.1367357,-0.12202596,-0.3444929,0.07896956,-0.47390768,-0.3712539,-0.07569647,0.50769657,-0.026257515,-0.1628776,-0.8633893,-0.02831162,-0.095869504,0.1938964,0.07370608,-0.090323076,-0.44205108,0.62487406,-0.107906945,0.467124,0.31950215,0.15678032,-0.258504,-0.3152893,0.011627818,0.98717505,0.47960737,0.19296907,-0.14710948,-0.0926127,-0.4224508,-0.09400444,0.105292656,0.5363502,0.7035986,-0.016716788,0.098692246,0.25193673,-0.19080488,0.09736194,-0.16921902,-0.34140706,-0.076371856,-0.006796445,0.5436337,0.5310419,-0.15521447,0.463974,-0.017886935,0.3840097,-0.2753853,-0.34154463,0.43433857,1.065564,-0.17945302,-0.28622463,0.56592053,0.4207377,-0.27646786,0.37954426,-0.422852,-0.27260712,0.3394902,-0.20768431,-0.5032957,0.20274237,-0.23715438,0.25165817,-0.7421269,0.38511297,-0.34357005,-0.39749637,-0.5503772,-0.011600745,-2.5508654,0.36512586,-0.20824705,-0.20345654,-0.11270356,-0.09805191,0.16521527,-0.5729088,-0.5946099,0.20804635,0.0870961,0.7205623,-0.08251894,0.17756028,-0.012665885,-0.3648305,-0.2922613,0.06781763,0.09314896,0.3570359,0.0011155562,-0.41630608,0.00691492,0.008456601,-0.3009846,0.11580617,-0.6975927,-0.47804186,-0.152216,-0.6065035,-0.26478723,0.5945884,-0.2603709,0.09870006,-0.2547776,0.020297846,-0.08593003,0.3802937,0.1376594,0.18617797,-0.03601735,-0.10464966,0.025902187,-0.32786292,0.28592715,0.121214606,0.27120206,0.24654357,-0.04161477,0.4372644,0.38747448,0.61188716,0.09113622,0.68309546,0.44727358,-0.06731173,0.23399314,-0.24605939,-0.30485,-0.36360437,-0.21995625,-0.038462706,-0.3233396,-0.33692142,-0.13383375,-0.3913465,-0.7369107,0.33744946,-0.08162021,-0.004143432,0.10394055,0.41784358,0.58245754,-0.20521869,0.020662675,0.00041237473,-0.06547385,-0.50249916,-0.14665782,-0.51276064,-0.2659423,0.34729555,0.9093596,-0.13233076,0.21067445,0.07086803,-0.1408435,-0.022731423,0.09512318,-0.085210375,0.061555546,0.43670887,-0.21933351,-0.57972866,0.25888795,-0.06510197,-0.18476723,-0.6264725,0.30709997,0.57567394,-0.61467826,0.6386304,0.359703,0.030497218,-0.14787386,-0.38530746,-0.043143563,0.1083886,-0.28335378,0.29857412,0.24747176,-0.59899235,0.22720012,0.37775165,-0.12839888,-0.78820884,0.5757459,0.0360353,-0.41547993,-0.16374885,0.37853226,0.13839172,-0.07476497,-0.10556908,0.17047499,-0.37044147,0.16129212,0.14549434,-0.13696799,0.31165674,-0.19226818,-0.08599682,-0.7124685,0.18181626,-0.62569463,-0.31533903,0.35269174,0.19635805,0.15104869,0.22051491,0.24829452,0.3536149,-0.31717533,-0.0071229837,-0.09716178,-0.2731275,0.30839515,0.4575627,0.47808757,-0.39011383,0.5161732,-0.03213758,0.05617118,-0.116018586,0.020198124,0.41423145,0.025018675,0.36707976,0.06953789,-0.27182359,0.28478107,0.5786663,0.13604103,0.48290607,0.1888217,-0.036687735,0.031225245,-0.011951945,0.038304534,-0.068002515,-0.58364445,-0.0942639,-0.1816916,0.089839,0.46565697,0.07089685,0.20380652,-0.09703133,-0.48376098,-0.03658533,0.21886806,-0.15242657,-1.0907135,0.35419255,0.07893695,0.7925881,0.41858673,-0.047060974,-0.027745545,0.60002023,-0.10036936,0.14220771,0.42902642,-0.05495102,-0.44482404,0.58800274,-0.64166003,0.36136395,-0.075016595,-0.095560595,-0.08470564,-0.12813349,0.32472703,0.65529937,-0.17178878,-0.053054087,-0.03565738,-0.44264203,0.07411885,-0.35409832,0.05862059,-0.7349291,-0.2879727,0.61104065,0.37406036,0.34500784,-0.2700212,0.14616182,0.18516997,-0.16962764,0.27089196,0.15838851,0.11344472,0.09617839,-0.8107049,-0.21507049,0.44346768,-0.20828114,0.07327994,0.009583524,-0.10998452,0.092413746,-0.19116643,0.03559899,-0.012131019,-0.7005133,-0.0025024798,-0.40481773,-0.4061658,0.4980575,-0.003947652,0.13427988,0.16170415,0.14792112,-0.26474872,0.46975031,0.11414158,0.7853312,0.038382743,-0.0911082,-0.39247355,0.24792473,0.049994104,-0.061373584,-0.054547876,-0.29539108,0.16541906,-0.70610017,0.61290467,0.13055924,-0.25613084,0.019526856,-0.084021345,0.060491852,0.49755856,-0.33577552,-0.08772534,-0.12090932,-0.17728266,-0.22599517,-0.24879424,-0.030164609,0.15329537,0.3110501,0.02701916,-0.20324019,-0.09622906,-0.18389848,0.4154672,0.01120816,0.39368486,0.57715255,0.11582478,-0.27511838,-0.23390767,0.15759984,0.40664318,0.0030379551,-0.21570632,-0.5040253,-0.527064,-0.22437708,0.35199362,-0.10336582,0.42337003,0.08297376,-0.04985244,0.77107984,-0.0559238,1.1371796,-0.006415561,-0.24535394,-0.09051407,0.46226782,-0.10325559,-0.16828242,-0.30785832,0.8592068,0.4878704,-0.08254646,0.02926599,-0.3511813,-0.13374828,0.27088538,-0.10826401,0.010308598,0.024896959,-0.5969154,-0.3799993,0.07116727,0.34945914,0.093279116,-0.056981314,0.19443159,0.3337915,-0.06862486,0.21631935,-0.3490564,-0.13590017,0.22867326,0.25967833,0.082204334,0.17866051,-0.50271714,0.34440327,-0.5801262,0.13696203,-0.28848213,0.07955655,0.017879823,-0.34606576,0.20639603,0.12695542,0.2635983,-0.38177863,-0.32051474,-0.1417806,0.4841461,0.21295655,0.09219655,0.580161,-0.21277103,-0.019913286,0.041810982,0.61870724,1.0343295,-0.011776676,-0.04130277,0.2586916,-0.29015929,-0.71868545,0.4400771,-0.24587771,0.14000158,0.058950417,-0.15331374,-0.58845294,0.34393862,0.31662717,-0.052876096,-0.023873275,-0.5687891,-0.17701468,0.26236114,-0.38821626,-0.18733253,-0.31571573,0.15924859,0.6184212,-0.1972398,-0.24098857,-0.12900971,0.25741774,-0.11185622,-0.3685204,-0.06316566,-0.55010104,0.14708158,0.069455706,-0.32739297,-0.20162772,0.046343926,-0.3367884,0.122719154,0.09126198,-0.31268725,-0.020988831,-0.29139522,-0.21791495,0.802399,-0.07754439,0.06655956,-0.36070156,-0.33812448,-0.6331113,-0.46390668,0.306078,0.019323025,0.009850489,-0.67140526,0.0073436648,-0.078738175,-0.10073928,-0.034408417,-0.3457519,0.40184426,0.27232832,0.37805313,-0.07845465,-0.5823106,0.113206856,0.06001512,-0.36509332,-0.5629125,0.4034373,-0.054038525,0.84001714,0.020208964,0.07885271,0.291637,-0.47143754,-0.058087617,-0.17724034,-0.277513,-0.642933,-0.06724663 +519,0.20914426,-0.2966808,-0.33269888,-0.14282367,-0.32173258,0.13666882,-0.21478432,0.39558583,0.14498304,-0.30024332,-0.14002983,-0.09113794,-0.06123455,0.6829671,-0.31839576,-0.63398975,-0.1456251,0.22475931,-0.5894757,0.56309074,-0.3501446,0.33295536,0.20286602,0.29792878,0.21740381,0.10886444,0.391038,-0.010187085,0.018324045,-0.34911522,-0.13558626,0.23314582,-0.42502764,0.42229387,-0.11213784,-0.35749468,0.108089,-0.26423752,-0.4581055,-0.583723,0.35025305,-0.8663488,0.44301206,-0.08500174,-0.36046442,0.34885687,0.35771242,0.067998566,-0.1055826,-0.15675908,0.109485775,-0.08857291,-0.056643836,-0.24375024,-0.22033776,-0.5511415,-0.5263627,0.06477931,-0.636056,-0.22670746,-0.23246266,0.15308496,-0.27832076,0.027620513,0.03470486,0.42672998,-0.32637638,-0.17345873,0.20526996,-0.19047403,0.22914937,-0.652284,-0.02304084,-0.09897761,0.09752226,0.056642573,-0.03422919,0.37789148,0.07790943,0.49039206,0.028769255,-0.29664937,-0.32827213,-0.18490373,0.11398341,0.428868,-0.23770277,-0.42608532,-0.19304968,0.20408522,0.48019505,0.29770976,0.023965565,-0.16608554,0.0361855,-0.067014925,-0.33160892,0.48210484,0.4405002,-0.46881816,-0.30836165,0.5332937,0.45472643,0.1402379,-0.096455105,-0.049243577,-0.009830335,-0.396483,-0.14315093,0.11143159,-0.33235282,0.36207902,-0.2206135,0.15395644,0.59469855,-0.19913626,0.19937691,0.06711074,0.0794493,-0.20726147,-0.20084332,-0.35765022,0.19333234,-0.5322577,-0.025966447,-0.075238146,0.8757487,0.023277182,-0.51418835,0.307844,-0.42216295,0.17868121,-0.20213117,0.582401,0.6962328,0.47754493,0.18767193,0.8496408,-0.3873661,0.05809862,-0.23420347,-0.2118107,0.20421559,-0.23789419,-0.17069355,-0.5197923,0.0684988,-0.0018850679,0.03114936,0.024439834,0.36254984,-0.55889916,-0.11230003,0.25947806,0.85468066,-0.2612329,-0.0066597094,0.57225513,1.2154223,0.9186564,-0.06068974,0.9937626,0.26511556,-0.2299123,0.13757212,-0.10043741,-0.6739184,0.24792796,0.66126895,-0.04205238,0.36050302,-0.13745053,0.06252286,0.2072163,-0.48203418,-0.17776185,-0.31051847,0.38440564,0.071680665,0.13632375,-0.5100803,-0.2562861,0.0696406,0.0022828246,0.12370357,0.3150589,-0.3128019,0.36486083,0.11460929,1.1286107,-0.17049439,0.15592924,0.079958186,0.51328385,0.21866685,-0.028407652,0.050899662,0.27987587,0.24933812,0.047100488,-0.7715095,0.16630608,-0.35320103,-0.49333864,-0.18781216,-0.39904335,-0.047931187,0.087216586,-0.19447653,-0.25013313,-0.030095844,-0.25582185,0.42020765,-2.6076484,-0.21657711,-0.2752328,0.2218305,-0.39577696,-0.24995096,-0.061316784,-0.47835767,0.5376975,0.33035213,0.53791875,-0.43898508,0.21263605,0.39720413,-0.57022166,-0.19356629,-0.5157901,0.100848354,-0.10086402,0.54445213,-0.002178465,-0.33170018,-0.18543823,0.12687762,0.58200496,0.16101912,0.1868102,0.35473076,0.3554116,-0.076734655,0.33555,-0.1222464,0.50743806,-0.5175562,-0.18984734,0.45933583,-0.13368428,0.33017766,-0.28272593,0.18584211,0.4785287,-0.4384989,-0.7487351,-0.6152555,-0.34462655,1.4001069,-0.4345282,-0.6141025,0.149607,-0.009182717,-0.10868514,-0.068321355,0.40426382,-0.102833144,-0.030666938,-0.705749,0.19262768,-0.0777537,0.31015733,0.0807689,-0.08981383,-0.32571566,0.6609515,-0.037258957,0.37277773,0.03946698,0.15607467,-0.39213943,-0.4873403,0.0009617828,0.9551556,0.512778,0.033522654,-0.09932076,-0.21898064,-0.25168324,-0.12634173,0.07625497,0.444963,0.59974617,-0.045488592,-0.021061026,0.2697325,-0.22062953,0.10919845,-0.10508662,-0.3615143,-0.15692714,0.13128196,0.6594066,0.44299638,0.13065356,0.41241938,0.027912725,0.19194862,-0.17554869,-0.5326245,0.5692502,0.79058164,-0.20651037,-0.24560587,0.8684081,0.5998984,-0.1729645,0.5343025,-0.67829067,-0.6265049,0.37637514,-0.22495839,-0.43982103,-0.00095836935,-0.29778162,-0.013912916,-0.8230671,0.1387314,-0.35663545,-0.3425137,-0.5608272,-0.18460788,-2.79047,0.17944512,-0.2875516,-0.12791584,-0.21187328,-0.07018172,0.44549677,-0.5078952,-0.47971126,0.13113488,0.17345564,0.6774155,0.08185654,0.15490547,-0.25977004,-0.23530212,-0.23458283,0.25769645,0.14529869,0.2568897,-0.07574692,-0.4754545,0.13345392,-0.10420943,-0.29806656,0.10054033,-0.5858222,-0.3046102,-0.3651058,-0.5132132,-0.14704572,0.57686436,-0.4591196,-0.00041532976,-0.19230388,0.13224392,0.05878128,-0.030293612,0.07488374,0.114389606,0.14360037,-0.16593273,-0.013349497,-0.5049635,0.49524164,0.10327336,0.3396716,0.26843616,-0.10938956,0.07618152,0.6477843,0.5289631,-0.06735211,0.8945163,0.4936001,-0.061985947,0.2693432,-0.07147597,-0.24393742,-0.50332874,-0.312331,-0.059347685,-0.35396928,-0.46518084,-0.09154646,-0.33491406,-0.88495076,0.663318,0.07237941,0.39022684,-0.16522905,0.31441832,0.40336508,-0.30182403,0.04868259,0.0285338,-0.20468187,-0.51476014,-0.3159156,-0.59639525,-0.27565655,0.13287893,0.98174596,-0.20283943,-0.13332303,0.057390332,-0.28159618,-0.06096476,-0.086413614,0.04209064,0.26888517,0.4139444,0.12628414,-0.61612827,0.551275,0.01902296,0.1520238,-0.44391394,0.24240604,0.6023708,-0.6266104,0.17731652,0.3965092,0.12204779,-0.28451893,-0.45523232,-0.039425492,0.11081584,-0.18585083,0.38200107,0.26466638,-0.8144301,0.4711948,0.17106383,-0.36355653,-0.80962366,0.4268475,-0.054248966,-0.086969584,-0.0406655,0.22709924,0.28715917,0.0734026,-0.2357886,0.121563874,-0.36100706,0.27340433,0.060291633,-0.013864934,0.51024437,-0.4001012,-0.2464666,-0.7800921,0.006219671,-0.49845728,-0.37527677,0.36316285,-0.015079856,-0.104817934,0.27933642,-0.017274048,0.49563506,-0.13699482,0.17253953,-0.095069356,-0.24738759,0.57441306,0.53276783,0.44623283,-0.45933002,0.68111986,0.012655214,-0.12163505,-0.30543068,0.043717053,0.44309947,0.16852483,0.31893027,-0.084107846,-0.13513896,0.40773186,0.7552666,0.082645655,0.19981429,0.043627374,-0.06471397,0.18708041,-0.10643235,-0.010685361,-0.033288278,-0.61313117,-0.16616474,-0.2803547,0.063659236,0.5005222,0.14330848,0.3547142,-0.019696318,-0.12540573,0.102884136,-0.026339961,-0.04383364,-1.0308099,0.33491677,0.09826236,0.50711477,0.48029238,0.015107155,-0.1192528,0.8550714,-0.30582154,-0.024242131,0.45071,0.06553417,-0.3440278,0.6451366,-0.754227,0.53896904,-0.103176005,-0.0058021443,0.011229918,0.22620502,0.3578817,0.969335,-0.097141065,0.09014789,-0.0011437627,-0.3610482,0.17191985,-0.18412232,0.2179447,-0.47559687,-0.34266183,0.5577771,0.26997682,0.38150597,-0.063853495,-0.07960569,0.044801194,-0.10983519,0.2024084,-0.1353356,-0.030741084,-0.2015091,-0.5228174,-0.113842875,0.44175285,0.4341653,0.31695002,-0.07649703,-0.097108014,0.20929143,-0.2413749,-0.11667434,0.06173659,-0.676814,-0.0778072,-0.1856948,-0.43990687,0.38334146,-0.4929276,0.19878064,0.054258373,-0.002121091,-0.2212454,0.11651094,0.2358741,0.7376514,0.08801566,-0.29700235,-0.24800006,-0.15972677,-0.0032469905,-0.23374209,0.010496552,-0.27262232,-0.036382165,-0.78856623,0.54919297,-0.31428045,-0.24873558,0.21141984,-0.26430607,0.044365086,0.46150124,0.025514685,-0.059190173,-0.0643799,-0.31889486,-0.37481207,-0.34268254,-0.14555596,0.09646141,0.049155787,0.086232826,-0.2644707,-0.22207865,-0.19299085,0.4003778,-0.1736035,0.15802996,0.3051148,0.18439847,-0.28920227,0.026091466,0.19475302,0.51438576,0.0071677472,0.11640836,-0.061471183,-0.3152261,-0.35225356,0.12309929,-0.10158171,0.310521,0.010323396,-0.40056208,0.6952354,-0.115515046,1.1488879,0.01278545,-0.3490763,0.09177804,0.4927338,0.0076082144,0.002822711,-0.23995084,0.8619341,0.56718665,0.05068224,-0.18684891,-0.5235741,-0.11401717,0.2700078,-0.26899827,-0.13903579,-0.07265445,-0.5129868,-0.42314318,0.3064968,0.30507347,0.032432124,-0.046773467,0.035284467,0.0163787,0.13574564,0.545283,-0.37902626,-0.05240857,0.33077937,0.25176367,-0.14287871,0.18039131,-0.413657,0.4787172,-0.66628945,0.15257701,-0.42593902,0.057795938,-0.2824197,-0.24292047,0.26604122,0.08593733,0.45226428,-0.25976565,-0.513015,-0.11581536,0.5911359,0.1173492,0.0983533,0.6507995,-0.2985996,0.04019652,-0.08257668,0.54038817,1.0775695,-0.3278697,-0.039363924,0.042598527,-0.46702322,-0.77010375,0.45014748,-0.59336543,0.11688961,0.10098373,-0.37511688,-0.3024618,0.3368362,0.20797107,0.09623904,0.072258204,-0.47297356,-0.12186089,0.14696303,-0.2669632,-0.20958194,-0.2712445,0.18619925,0.42418486,-0.29704946,-0.3579515,0.15167323,0.5691419,-0.19059053,-0.7001979,-0.025040992,-0.34059808,0.24824524,0.09965229,-0.24924126,-0.009547105,0.07054683,-0.47602007,0.0370653,0.10055256,-0.34144512,-0.036276277,-0.17374004,0.2273732,0.5866172,-0.12820962,0.030281644,-0.6450559,-0.43179065,-0.89153916,-0.39360598,0.4233025,0.22472146,0.16991727,-0.5169354,0.068864055,-0.22772066,0.03616725,-0.060840316,-0.4780207,0.32041022,0.09562476,0.53147066,-0.08859314,-0.74618345,0.20057312,0.07699979,0.10203045,-0.513621,0.46941552,-0.25039345,0.86735463,-0.017632624,-0.0011625359,0.20795172,-0.5838626,0.24229468,-0.32709444,-0.32571647,-0.66360784,0.16250291 +520,0.6587957,-0.13766381,-0.31318069,-0.17675631,-0.23469721,0.010239944,-0.11576856,0.44209656,0.05683001,-0.29746968,-0.25343412,-0.0548942,-0.090636194,0.21635021,-0.2058048,-0.7384821,0.2034158,0.17000851,-0.3157579,0.71952397,-0.46677855,0.3789429,-0.37068063,0.4143053,0.18189219,0.34883335,0.1448166,0.1190803,0.031481266,-0.27180123,0.05709872,0.051083785,-0.31873795,0.28686446,0.049250934,-0.28629112,0.066655494,-0.29788694,-0.47388777,-0.7324397,0.10041996,-0.7195489,0.50927055,-0.10395245,-0.4976199,0.11253329,0.13231578,0.045869052,-0.19847775,-0.018048307,0.07941477,0.040339317,0.029330041,-0.08592762,-0.051077466,-0.6162158,-0.5193759,-0.06316158,-0.27665883,-0.11802621,-0.2170082,0.14955719,-0.40049425,0.002462668,0.0012633672,0.37568188,-0.3878494,-0.1332459,0.18798149,-0.22501144,0.2398478,-0.65961516,-0.17739932,-0.21977878,0.13529544,0.13828231,-0.16279124,0.27468282,0.15663333,0.34335676,-0.006823097,-0.11882118,-0.21063672,-0.078083254,0.09375123,0.66937286,-0.22335473,-0.26526278,-0.24114962,-0.2057469,0.23200624,0.089456744,0.16245835,-0.023655836,-0.075009815,-0.22545537,-0.31513026,0.16322754,0.5580336,-0.35454327,0.046579618,0.19749999,0.3985493,0.07309202,-0.2759948,0.23503749,0.02443183,-0.37061396,-0.17155185,-0.2691411,-0.009892668,0.568806,-0.22407295,0.30144793,0.546567,-0.08115142,0.18120234,0.13176174,-0.1009062,-0.1354436,-0.22881682,-0.2122009,0.22319166,-0.38768396,0.20083015,-0.21024407,0.7340339,0.11486108,-0.5912402,0.36387005,-0.29867366,0.17531577,-0.03478753,0.4974131,0.6264576,0.3738752,0.2985997,0.5928379,-0.30842534,-0.039940603,0.12849353,-0.25058582,0.2254978,-0.0143224,-0.08833648,-0.4453034,0.15646325,0.22966179,-0.12990859,-0.008610581,0.42398745,-0.44256717,-0.08438211,0.22534159,0.78409326,-0.28587055,0.0751357,0.7125525,1.1518152,0.9314273,0.012732923,1.0155487,0.33539554,-0.020464735,-0.10256274,-0.13230011,-0.5940876,0.18738714,0.43907672,0.4506325,0.24318917,0.17025603,-0.15620807,0.5329351,-0.44117957,0.037201654,-0.08672003,0.3540718,0.07652228,-0.2132316,-0.57361037,-0.13101068,0.12525524,-0.0010054836,0.04432229,0.28283614,-0.17671023,0.50362206,0.0431554,1.4457743,0.09633159,0.03855907,0.120333456,0.65441996,0.25090545,-0.23418263,0.18409511,0.10075356,0.32265016,0.017396446,-0.39936286,0.18060112,-0.1534147,-0.50725025,-0.1829422,-0.2737251,-0.06807969,-0.12810984,-0.36431012,-0.23274414,0.010079088,-0.20646341,0.27855355,-2.8886206,-0.100750804,-0.21565059,0.22337295,-0.111753,-0.17542498,0.07945154,-0.35661426,0.4198669,0.61073685,0.40721768,-0.6231095,0.47650674,0.57358605,-0.55548996,0.141139,-0.5352693,-0.11798079,-0.11391764,0.61641985,0.24817179,0.059567023,-0.07701181,0.42131725,0.48203853,-0.012819707,0.13702567,0.21714926,0.22421451,-0.13414662,0.2903839,-0.052514885,0.3653517,-0.07655388,-0.105131365,0.30232415,-0.42392445,0.058077075,-0.15378563,0.18452719,0.34410724,-0.4484718,-0.6468257,-0.69495517,-0.3074975,1.171665,-0.051414672,-0.4998445,0.34957093,-0.41334108,-0.24760978,0.012047193,0.3896294,-0.31673148,-0.113054,-0.7166689,0.002693815,-0.16610262,0.13155884,-0.071357384,-0.20381853,-0.5107383,0.80290943,-0.09623214,0.50507957,0.22939084,0.2695144,-0.15207171,-0.51315975,-0.05146151,0.6958647,0.57151425,0.19127691,-0.297782,-0.03331673,-0.23908891,0.06809656,0.0998084,0.62448967,0.6326715,-0.12974985,0.1273099,0.19175036,-0.21652095,-0.062983826,-0.14569452,-0.114517465,-0.05134407,0.0529922,0.682924,0.7583016,-0.14400575,0.20305249,-0.12635937,0.39274785,-0.3004293,-0.49079624,0.3829093,0.60734314,-0.17039643,-0.19772074,0.6460619,0.53589123,-0.24792366,0.35419554,-0.6935793,-0.22840047,0.3179404,-0.1402683,-0.30291286,0.24131629,-0.47833443,0.260294,-0.75249493,0.44354233,-0.1802657,-0.65208626,-0.6374726,-0.23571716,-3.6355777,0.19242701,-0.08161656,-0.34535167,-0.0012074624,-0.3070319,0.4843397,-0.59090245,-0.496367,0.16394024,0.03998103,0.6031008,0.010327361,-0.040890064,-0.3598432,-0.25242037,-0.37116623,0.15348387,0.10802613,0.37580338,-0.008651167,-0.43736163,-0.032713592,-0.12170501,-0.4708257,0.029748809,-0.5039537,-0.6426191,-0.18229267,-0.32982093,-0.13005061,0.5663863,-0.08205861,0.17538333,-0.3627115,-0.19087765,-0.29816762,0.15846084,0.1276693,0.08387679,-0.16375038,-0.07995763,0.043844905,-0.29254866,0.30945322,0.15539674,0.34234613,0.4508479,-0.24166103,-0.04429731,0.61639434,0.37579027,-0.06970694,0.83062065,0.38686106,-0.15833592,0.43363625,-0.15066974,-0.38222727,-0.40950748,-0.3085482,0.020858943,-0.424532,-0.36781237,-0.22963257,-0.40277147,-0.661045,0.50156254,-0.008038606,0.07612418,-0.018987432,0.015243269,0.36747342,-0.07535299,-0.09058995,0.19691657,-0.14752848,-0.5244233,-0.24556987,-0.64594203,-0.3537996,0.09693124,1.03912,-0.012788425,0.11464784,-0.025054445,-0.29463318,0.053127985,0.03939461,0.090034604,0.025566492,-0.0011964568,-0.0220392,-0.6938353,0.5012318,-0.05489164,-0.13229097,-0.4254945,0.16816461,0.6059776,-0.64320266,0.31962404,0.29023853,0.08842556,-0.15521131,-0.62003547,-0.19793734,-0.14926486,-0.3056036,0.47002056,0.29204726,-0.87910736,0.43942636,0.22770736,0.017063703,-0.5670983,0.52254,-0.12527487,-0.39128903,0.06648846,0.18294474,-0.0029849666,0.03121362,-0.3069722,0.35755607,-0.4507324,0.1536728,0.19123231,0.022419985,0.46680218,-0.056525372,-0.029145787,-0.60462,-0.22670087,-0.6031799,-0.2698046,-0.011452769,0.08526741,0.00829471,0.21846654,0.10219032,0.4446973,-0.18834041,0.13387302,-0.10289859,-0.35491425,0.4616778,0.4897905,0.4473308,-0.33456162,0.74543184,0.19666465,0.14410213,-0.16036725,0.16170199,0.37749553,-0.015122367,0.4898732,-0.0180403,0.042462904,0.16704223,0.9084324,0.11757974,0.52569485,0.12063426,-0.32444876,0.2942029,-0.037349872,0.23638144,-0.026254904,-0.4476564,0.051423762,-0.16280238,0.2075322,0.36869144,0.13118292,0.26413244,-0.046026286,-0.4535605,0.06083194,0.18781216,0.034383945,-1.259246,0.26696858,0.19740845,0.7983093,0.5464738,-0.023400223,-0.10978887,0.69501895,-0.14607988,0.09951516,0.23171796,0.046624295,-0.3313265,0.39459345,-0.56595093,0.3811787,-0.014606276,-0.054990944,-0.046588004,-0.09522164,0.38542393,0.65840656,-0.099231474,0.16095705,-0.003481667,-0.33700266,-0.008499588,-0.25377238,0.012015425,-0.5046443,-0.2187415,0.55370367,0.4791646,0.35407346,-0.15347219,0.025501583,-0.0070768567,-0.06548876,0.16283004,-0.032347612,-0.03232702,-0.40675634,-0.5563746,-0.37776068,0.41004023,-0.12923793,0.08036472,0.012089129,-0.26458433,0.035698954,-0.06827426,-0.032944858,0.14360373,-0.5485277,0.101898775,-0.16658004,-0.30645037,0.5351099,-0.24491167,0.23674165,0.18475573,-0.01729242,-0.15877475,0.10743014,-0.008755432,0.5089775,0.14391987,-0.17399241,-0.32958388,-0.032994457,0.20789716,-0.33184034,-0.23844539,-0.37355906,0.10457446,-0.3923049,0.3524383,-0.07175725,-0.32193497,0.09627807,-0.13534662,0.02383698,0.3815913,-0.09406157,-0.2739603,0.13116482,0.0887718,-0.23455903,0.007524324,-0.09889477,0.34668946,0.13066004,-0.2103497,0.077054635,0.01602542,0.20034178,0.33255714,0.12298017,0.25850576,0.48233318,-0.116315626,-0.35281864,-0.04291207,0.058165126,0.58579785,-0.06389194,0.1432289,-0.15628688,-0.7425161,-0.3810401,0.034781497,-0.18163657,0.33048287,0.08941518,-0.20461813,0.67415196,0.1583998,1.0118779,-0.048417576,-0.39538223,0.019197745,0.5324941,0.013743903,0.077199884,-0.27243882,1.004817,0.48438063,-0.4217214,-0.31219482,-0.29667643,-0.04929363,0.23688915,-0.13029331,-0.21647009,-0.113445304,-0.7624015,-0.1008143,0.2369286,0.27798986,0.04669208,0.009368676,0.0659708,0.20468317,0.024118645,0.3441372,-0.39655045,0.01031191,0.40167236,0.08819259,-0.11536479,0.07738646,-0.37122288,0.24557948,-0.59073746,0.09153683,-0.28047195,0.117039025,-0.17056324,-0.40052834,0.21710598,0.068807274,0.3714687,-0.41507366,-0.29953048,-0.16855605,0.47501656,0.09783767,0.11763412,0.37980404,-0.15879479,0.084984735,0.09184133,0.44799975,1.1070482,-0.10509571,0.04902047,0.26436958,-0.47149712,-0.69784135,0.071745835,-0.1016945,0.1677717,-0.114444956,-0.4051067,-0.5318335,0.33728194,0.40123802,-0.038378578,0.21851563,-0.38383317,-0.34996146,0.16876519,-0.42218584,-0.22653215,-0.4287819,0.018532855,0.4601708,-0.3478729,-0.25533888,-0.10283186,0.27953854,-0.35956457,-0.67909575,-0.08479677,-0.29642513,0.41684595,0.121629424,-0.48065296,-0.15753052,-0.09073765,-0.4188992,0.09327187,0.22506817,-0.39440152,0.21397689,-0.39038482,0.023935573,0.86889297,-0.16274872,0.18138303,-0.66659164,-0.5322946,-0.8586332,-0.58012444,0.4160428,0.35167697,-0.15790065,-0.47914585,-0.11644302,-0.2646239,0.13715358,0.010130955,-0.17656581,0.47829375,0.20215066,0.4139605,0.065506,-0.8655936,0.040462673,0.09849991,-0.17462817,-0.47597593,0.57198995,-0.0574084,0.7611719,0.18951012,0.15983252,0.088225365,-0.32345653,0.24368349,-0.20483017,-0.36955765,-0.49301043,0.17482866 +521,0.24929059,0.100198805,-0.6359823,0.06336234,-0.39375865,0.19247355,-0.3932277,0.09322749,0.22990336,-0.22637774,0.10555887,-0.03507271,-0.21170989,0.060398635,-0.10450687,-0.58358586,-0.0063702553,0.09707198,-0.5044861,0.8204946,-0.28739667,0.38981748,0.10359985,0.2290248,0.018032754,0.30346847,0.053861793,-0.112853095,-0.22866766,-0.23434651,0.029997062,0.11336242,-0.50181323,0.4210152,-0.11807372,-0.2139651,0.20059128,-0.28547877,-0.36282045,-0.6009009,0.13008477,-0.5558262,0.571407,-0.012492143,-0.27914196,0.2837855,0.10753058,0.15171887,-0.11463416,-0.007190417,0.23439586,-0.35195684,-0.3675967,-0.26745394,-0.40447745,-0.5136493,-0.58681154,-0.1806865,-0.6316184,0.039780706,-0.34296677,0.23236914,-0.37059814,-0.12103419,-0.12659353,0.2783639,-0.4671485,0.21833897,0.0431755,-0.12669516,0.08442101,-0.62622565,-0.08492398,-0.14297532,0.018993363,0.23545453,-0.061661083,0.3736341,0.087659806,0.42092904,0.1238243,-0.24253267,-0.37724525,-0.25361457,0.26648033,0.44971973,-0.16657531,0.08816618,-0.25924644,-0.13220519,0.45196614,0.34178713,0.119189054,-0.12958202,-0.039788958,-0.19322419,-0.34258765,0.3064684,0.47888178,-0.23988348,-0.0032771826,0.5151324,0.38824928,0.24251808,-0.3208393,0.1315194,-0.122778244,-0.267751,-0.2282436,0.10841309,-0.12783451,0.45654824,-0.037014686,0.22541498,0.54428846,-0.12587027,-0.027334943,0.00088702934,0.0066656647,0.14725052,-0.17207238,-0.1014524,0.21741147,-0.6415015,0.06598228,-0.25750983,0.5280139,-0.112104,-0.6708791,0.28751084,-0.4678278,0.035341073,-0.05900723,0.6118842,0.8170962,0.7197202,0.13730565,0.72927046,-0.30118334,0.09995299,-0.29736513,-0.12904319,0.2149537,0.108904906,0.11009978,-0.5359367,0.0049848137,0.02495931,-0.12149707,-0.06832054,0.5181213,-0.28126436,-0.2000185,0.1681523,0.798583,-0.28611267,-0.098578624,0.5543738,1.2183927,0.99345285,0.10004728,0.99623436,0.16452564,-0.06093657,-0.32479954,-0.18386838,-0.68097484,0.11734845,0.23689671,0.15585223,0.30000293,0.12017323,-0.07746272,0.41468582,-0.21480481,-0.15188599,-0.1651893,0.43469954,-0.04374467,-0.15593363,-0.27672338,-0.13689855,0.22847848,-0.028904347,0.18220603,0.43467715,-0.2004916,0.43619648,0.2760708,1.3150089,0.015135727,0.06973051,0.15320404,0.23766091,0.25118458,0.004203658,0.07233399,0.5706053,0.2302293,0.0071282326,-0.45619178,0.1520089,-0.23169495,-0.6544538,-0.07661866,-0.28658542,-0.12016626,-0.14717418,-0.2415749,-0.15667804,-0.14100367,-0.4515272,0.33156925,-2.8826807,-0.08990941,-0.122741155,0.1216688,-0.12793514,-0.19352229,0.056223925,-0.32124144,0.5171766,0.23608103,0.39561895,-0.4575896,0.5289791,0.56419635,-0.53659993,-0.07704265,-0.47476274,-0.25685295,0.00015930568,0.54269236,-0.10069496,-0.12687477,-0.101999834,0.18548043,0.5038511,-0.019953834,0.18062414,0.35828647,0.4179237,-0.20358375,0.28235716,0.0155307865,0.43215388,-0.16119839,-0.20558034,0.22862667,-0.30025297,0.5067069,-0.30155328,0.17098607,0.47278753,-0.2696577,-0.46583536,-0.30188045,-0.00045814234,0.99753255,-0.44531175,-0.557569,0.07612136,-0.22315487,-0.2030809,-0.014014209,0.3765373,-0.109638855,0.033121053,-0.61696106,-0.0058367183,-0.15152489,0.21663223,-0.050445676,0.19819185,-0.4336927,0.62952054,0.034805823,0.7465238,0.45685792,0.2266902,-0.29448605,-0.28975353,0.17725751,0.69734836,0.43511733,0.16599166,-0.3811908,-0.24908912,-0.00502958,-0.24186558,0.12243236,0.51272416,0.5491186,-0.12129774,0.14967945,0.2975053,-0.28840163,-0.16374265,-0.2223269,-0.2780041,-0.058522575,0.033653677,0.343632,0.74164623,-0.12839226,0.39718428,0.006686919,0.38934043,-0.19316293,-0.44286856,0.39458966,0.70139575,-0.26888466,-0.20112708,0.6629612,0.58276623,-0.07086956,0.5597805,-0.60038537,-0.35064954,0.457111,-0.05511122,-0.44433174,0.2161357,-0.38047057,-0.05271511,-0.7274078,0.2756793,-0.4058995,-0.5142778,-0.6876142,-0.067445196,-2.285068,0.1020991,-0.37324056,-0.15377155,-0.15870221,-0.13973399,0.21684068,-0.50632626,-0.6216202,0.23708293,0.3228939,0.38407052,-0.13146807,0.074673146,-0.22782937,-0.3831648,-0.10720442,0.3508541,0.0938743,0.10572018,-0.31121108,-0.50508726,-0.1651687,-0.025822453,-0.25236323,-0.023393441,-0.35001665,-0.19814093,-0.007323556,-0.2876103,-0.06388552,0.508397,-0.4510478,-0.065036766,-0.4153118,0.0056593698,0.1727875,0.09738278,0.07949446,0.17099422,0.0036118084,0.00079563435,0.039308697,-0.3458064,0.18680826,0.056446843,0.30431703,0.5253106,-0.030683728,0.05560581,0.5246072,0.50560385,-0.13550024,0.8375307,0.25949693,-0.27489656,0.325373,-0.15201043,-0.30387282,-0.6922307,-0.27808505,-0.050344244,-0.40772262,-0.45610526,-0.04180717,-0.35132927,-0.7961777,0.56717765,0.18900694,0.08368441,-0.18344986,0.42873806,0.3902621,-0.21998453,-0.030101446,-0.13623765,-0.23252569,-0.34055176,-0.36455074,-0.9697646,-0.36840636,0.12575614,1.1622884,-0.22594345,-0.19484234,0.2772524,-0.23380423,-0.09613633,0.16059518,0.22706708,0.2153256,0.2530143,0.20493867,-0.49962312,0.6092767,-0.0936349,0.07444882,-0.6109308,0.006202053,0.63524,-0.61394244,0.34095624,0.5690285,0.013470191,-0.13959771,-0.94287986,-0.13340022,0.038768977,-0.21455358,0.51270807,0.32219893,-0.79844,0.59390754,0.16786504,-0.23743178,-0.6889338,0.420534,-0.15125895,-0.2484525,0.0096690655,0.3727142,0.13805234,0.024419231,-0.13618736,0.24265862,-0.2550795,0.45200947,0.01098145,-0.2019444,0.26005092,-0.12717177,-0.25483927,-0.8495495,-0.022887178,-0.37524915,-0.333779,0.3703427,-0.018666046,0.10383773,0.13960662,0.1696175,0.4239613,-0.28564802,0.078929216,-0.20344256,-0.32560062,0.36793414,0.5015666,0.5464147,-0.25643215,0.5831404,-0.07107417,-0.10304952,-0.066161394,0.14369504,0.41925344,0.029079929,0.36773065,0.01660107,-0.10785832,0.10358122,0.7987857,0.23917353,0.26085785,0.15627606,-0.22821732,0.4302385,0.03856907,0.15681374,-0.020649128,-0.5603484,-0.06713239,-0.24342832,0.2201199,0.4893248,0.12016894,0.56775576,-0.1473287,-0.00962533,-0.02841939,0.07476667,0.17432228,-0.9052022,0.2656604,0.24771996,0.6950332,0.58511364,0.24529937,0.14321335,0.57574314,-0.35849193,0.01355408,0.45276356,0.016390625,-0.31020397,0.49548844,-0.6236972,0.2708492,-0.04730002,0.038461827,0.21573503,-0.0897062,0.49452108,0.9806104,-0.23209515,0.015548072,0.055020522,-0.35588127,0.06463657,-0.13210328,-0.07248683,-0.20199423,-0.40312257,0.62153184,0.3224924,0.31296474,-0.22978115,-0.05304584,0.21389598,-0.18325959,0.3264528,0.07033083,0.030886194,-0.14024904,-0.29142547,-0.3493011,0.6032973,-0.19043674,0.046220537,0.08361522,-0.14256081,0.18877865,-0.14431128,-0.2097801,0.13981174,-0.50187546,0.030039767,-0.2094897,-0.5327313,0.57703847,-0.000754977,0.08727817,-0.011370161,0.012083616,-0.13321303,0.28538626,0.10046307,0.46100268,0.17208512,-0.10428101,-0.04634845,-0.18019114,0.09174684,-0.26709098,0.050136693,-0.041059986,0.26173604,-0.84401584,0.3284883,-0.3911795,-0.34200278,0.053862456,-0.34107158,-0.0928156,0.2730254,-0.05072508,-0.20461711,-0.020962825,-0.13036129,-0.37468153,-0.4120107,-0.27378297,0.08796976,-0.11344877,-0.11093527,-0.17142677,-0.09213606,0.027123788,0.167771,0.033441186,0.06462873,0.20766917,0.08392343,-0.43927455,-0.12741244,0.2069542,0.4042102,-0.20388891,0.053523153,-0.23229116,-0.38685554,-0.31616092,0.34669754,-0.20170514,0.2302535,0.030808799,-0.3656367,0.975698,-0.05332233,0.9854407,0.046794683,-0.43783525,0.08521273,0.6293235,-0.02614212,0.19520298,-0.18326499,0.89390737,0.6435467,-0.023626955,-0.19472612,-0.5418208,-0.014810153,0.24926873,-0.3335628,-0.19564968,-0.0065989634,-0.55355865,-0.06770196,0.30229604,0.14000204,0.019239051,-0.13664791,-0.027519543,0.2017058,0.30953187,0.29171696,-0.61919004,-0.120150976,0.38705292,0.007113534,-0.0045850924,0.18843138,-0.4061833,0.28933555,-0.55972934,0.19445491,-0.3932372,-0.00652586,-0.06834152,-0.14997752,0.17120709,-0.002043584,0.26476288,-0.23420276,-0.33782855,-0.04649903,0.28681314,0.20355123,0.3678658,0.60866976,-0.16659792,-0.00036285556,-0.15028852,0.5030005,1.0824155,-0.37189186,-0.15313914,0.31856143,-0.35426965,-0.6580095,-0.023777338,-0.5206786,0.08702048,-0.010276135,-0.5335598,-0.35713455,0.25029984,-0.111870706,-0.021200605,0.07106398,-0.54333663,0.03304056,0.076969385,-0.26180243,-0.15213305,-0.109306335,-0.048046898,0.85725486,-0.2578981,-0.26332924,-0.0023934946,0.2601153,-0.34681404,-0.5499387,0.1988462,-0.27758178,0.24856529,0.122838214,-0.33707866,0.12823276,0.15396813,-0.4705222,0.018502962,0.47933656,-0.2704557,-0.042223725,-0.42253852,0.28021273,0.72620684,-0.14385945,-0.03161138,-0.2922527,-0.5433248,-0.6564266,-0.2879257,-0.06912236,0.13350002,0.0039337524,-0.57837534,-0.009694983,-0.2371548,0.009701473,0.004267959,-0.60856843,0.49335957,0.26384,0.2693206,-0.3339511,-0.87016565,0.04200284,0.056165185,-0.1563647,-0.4892957,0.5813343,-0.28389668,0.8988161,0.09493354,-0.05623954,0.09847184,-0.71379507,0.39653125,-0.40347278,-0.14520946,-0.5570829,0.06269128 +522,0.4805629,-0.401172,-0.5102972,-0.16485667,-0.24178126,0.24353388,-0.28043553,0.20308682,0.08176412,-0.53996193,-0.087102234,-0.37563568,-0.023235831,0.51304156,-0.28559342,-0.75344616,-0.005648315,0.19017114,-0.707202,0.6512906,-0.42700514,0.3494954,0.19431588,0.0065245456,0.2254966,0.19863705,0.49413636,-0.18096747,0.06729265,-0.07791939,-0.18586542,-0.03646102,-0.77602714,0.018054297,-0.21831584,-0.30139425,0.13121074,-0.34113497,-0.4412067,-0.87981164,0.5381213,-0.9748783,0.29442674,0.0154152345,-0.3287548,0.3496534,0.15350077,0.19511771,-0.21469785,0.077939734,0.19512774,-0.03205961,-0.078642,0.023381472,-0.28175774,-0.6399555,-0.71100414,0.07953048,-0.77283305,-0.43676716,-0.1926643,0.28990045,-0.38199,0.09918397,-0.19394474,0.25647333,-0.48818615,-0.4149219,0.19270065,-0.06764854,0.26499417,-0.71123326,0.05366216,-0.17473526,0.051479112,-0.106894724,-0.011006756,0.36390445,0.29243177,0.56229836,0.10234494,-0.28681347,-0.1997632,-0.18465081,0.3520582,0.58547866,0.105349064,-0.5099883,-0.30626887,0.08210863,0.33029824,0.1712866,0.07549632,-0.4299161,-0.08075641,-0.06643027,-0.25950092,0.53875023,0.48774672,-0.5127215,-0.3895561,0.42601892,0.6628989,0.20648716,-0.19982277,0.096871495,0.009105909,-0.6078641,-0.087983,0.3965218,-0.3373018,0.60767555,-0.22721966,0.12735668,0.7309635,-0.20241408,0.16981599,-0.3640181,-0.057066094,-0.19345617,-0.010281444,-0.23597577,0.22544363,-0.5614723,0.12644923,-0.29071063,0.8332381,0.185937,-0.70011604,0.43142205,-0.58843696,0.31244397,-0.1756632,0.8073569,0.60624987,0.27327222,0.16305752,0.8252115,-0.44108626,0.2022885,-0.04989593,-0.38065535,0.089889355,-0.35370654,-0.22843643,-0.25774518,0.098702446,-0.27931774,-0.10688763,-0.30759457,0.76348543,-0.38211623,-0.08527275,0.0045034206,0.769813,-0.33070067,-0.005089249,0.5910691,0.9577503,1.2816465,0.04671687,1.4093354,0.4755115,-0.25816467,-0.023687933,-0.18359184,-0.8158215,0.27576822,0.5374752,0.464844,0.3046259,-0.060704228,-0.05952885,0.29733127,-0.4961451,0.12856178,-0.28008613,0.19711651,0.012830623,0.034779247,-0.38972944,-0.08969637,0.083166294,0.17433546,0.18715964,0.29017815,-0.26344654,0.3586473,0.053966798,1.5807146,-0.32188565,0.046632368,0.15753104,0.59199417,0.2218077,-0.08766645,0.13714437,0.17815872,0.502955,0.012720363,-0.9151735,-0.00012831177,-0.47566932,-0.5213008,-0.3202625,-0.31119418,0.11571524,-0.010102762,-0.41481033,-0.36891857,0.16621163,-0.29776812,0.39701673,-2.137866,-0.2120719,-0.43228698,0.16975823,-0.36767584,-0.1953825,-0.07990437,-0.63731545,0.34262648,0.4487327,0.32316038,-0.7509567,0.35200998,0.5248913,-0.44788024,0.04242431,-0.77455175,-0.10186816,-0.25127655,0.64123785,-0.0056350543,-0.03233393,-0.054855056,0.21051039,0.48034254,0.21063831,0.09376056,0.19685616,0.4877544,0.19300124,0.524924,0.18884648,0.35579374,-0.24694169,0.03807766,0.6462273,-0.29957047,0.51788217,-0.40536323,0.15370591,0.4184796,-0.5785518,-0.81597155,-0.7135919,-0.44369918,1.1617978,-0.30921957,-0.7522522,0.44405863,0.14896749,0.0024050304,-0.13126884,0.465587,-0.29542464,0.00065304124,-0.69257206,-0.045736175,0.06738965,0.22518526,0.03663202,0.057736117,-0.37533018,0.8624825,-0.007043268,0.36960378,0.1946139,0.23087811,-0.2243005,-0.72478145,0.08480639,0.9266051,0.49803346,-0.025153533,-0.27647382,-0.24070771,-0.3368452,-0.31229013,-0.09573257,0.31765786,0.9381666,-0.013546995,0.08726398,0.26538816,-0.12178528,0.06702127,-0.114954196,-0.38889974,-0.04786208,-0.121234655,0.52681357,0.45521185,-0.12401653,0.31366706,-0.16216199,0.29377636,-0.0063700355,-0.47657886,0.53899246,1.1542803,-0.09247851,-0.067002244,0.47309664,0.6559579,-0.42443958,0.6517442,-0.8479914,-0.2774828,0.5933186,-0.21950798,-0.43208987,0.15536399,-0.39803043,0.000199476,-0.8879537,0.45259875,-0.3115588,-0.07371169,-0.51857054,-0.30023378,-2.7423131,0.17999187,-0.21977665,-0.0612212,-0.16256367,-0.054716878,0.3775673,-0.37273392,-0.6354249,0.11958305,0.03470511,0.5332727,0.12774654,0.2035502,-0.2856928,-0.0015195012,-0.6421523,0.19826181,-0.03887302,0.32461062,-0.11884109,-0.42323452,0.09464158,-0.41073015,-0.395042,0.015973227,-0.45006016,-0.45805788,-0.29219383,-0.35019264,-0.23346625,0.5638397,-0.06669981,0.010497366,-0.12037935,-0.090399995,-0.036258645,0.2791942,0.13062055,0.2619957,0.052921932,0.0050627505,-0.06836392,-0.29496905,0.3799193,0.0015622868,0.20980392,0.26891443,-0.16044573,0.038943715,0.44103643,0.5109443,-0.20550646,0.8270799,0.5083593,-0.12580712,0.11565901,0.13021632,-0.22757672,-0.5912501,-0.25949544,0.022757104,-0.27996582,-0.66612285,-0.16134538,-0.31963438,-0.76362115,0.357661,-0.012796981,0.34266424,0.058340006,0.055858213,0.3496568,-0.13185465,0.07924993,-0.11261362,-0.13939336,-0.5442739,-0.40540245,-0.8712968,-0.55811673,0.2015177,0.9465584,-0.16954236,-0.44309196,-0.051465034,-0.27834752,0.04207951,-0.1096738,-0.039148718,0.24395084,0.34183273,-0.015232084,-0.8993756,0.75329393,-0.023845183,0.16041772,-0.35268018,0.058978762,0.55338424,-0.5183841,0.24953775,0.5442211,0.14432767,-0.016774297,-0.6739612,-0.20639507,0.06536215,-0.26586035,0.43694773,0.053045534,-0.68414956,0.51479846,0.015776025,-0.5532006,-0.84598213,0.5505603,0.061060328,-0.17068611,0.024650266,0.3129469,0.0344778,0.03879559,-0.5584622,0.35635805,-0.57082766,0.2661375,0.34751394,0.027435804,0.41494253,-0.24060687,-0.41776162,-0.62178373,0.072572686,-0.40787935,-0.12311975,0.18409596,-0.01605105,-0.015914185,0.19592007,0.07635792,0.550198,-0.25040206,0.120504804,-0.00026902132,-0.2580899,0.61234635,0.4770479,0.5067448,-0.5185143,0.6995302,0.11167705,-0.2065595,-0.089003205,0.030621039,0.21321987,0.2299211,0.28050622,0.11959604,-0.07137892,0.2573047,1.0228517,0.26542303,0.42943606,0.24760243,-0.4897682,0.4679844,0.19092976,0.07968719,-0.09694285,-0.5343086,-0.24944337,-0.07011719,0.016364312,0.55813795,-0.028948456,0.55587137,-0.10810661,-0.18718402,0.048869606,-0.038781676,-0.19644573,-1.0373569,0.100199565,0.110627696,0.644231,0.7199109,-0.15938345,0.1717373,0.5911718,-0.24662733,0.037620563,0.40615535,0.17575301,-0.6915354,0.5162057,-0.5049167,0.29957882,-0.14813061,0.030944845,0.18365182,0.28253266,0.43159977,0.7272007,-0.0043857074,0.06513057,-0.17672122,-0.30280992,0.31364632,-0.37573224,0.26176962,-0.29662457,-0.37707832,0.57506216,0.4862557,0.18701081,0.060082283,-0.049655076,-0.013565055,-0.14788201,0.29425567,-0.039031107,-0.06468693,-0.072542086,-0.6467127,-0.24608503,0.60582143,0.10976248,-0.008601568,-0.033001624,-0.35626617,0.16246238,-0.39703798,-0.017303998,-0.06022642,-0.8859814,-0.045884736,-0.09952767,-0.43472952,0.35117808,-0.19542591,0.27236515,0.27329516,-0.18204376,-0.367747,0.03791505,0.148296,0.7600447,-0.048308734,-0.08510937,-0.49198776,-0.15290785,0.2986186,-0.31943402,0.09951317,-0.05339821,0.018909859,-0.73113,0.67743367,-0.27767316,-0.28317225,0.23091117,-0.26231572,-0.20014845,0.6110484,-0.15750761,-0.07496427,0.1264895,0.0274092,-0.1837246,0.011433197,-0.205361,0.10951956,0.15004559,-0.19915833,-0.21056522,-0.09561163,0.119962804,0.5331293,-0.10602302,0.2806835,0.32931963,0.059065945,-0.58214444,-0.08139573,0.14469202,0.45298788,0.19046403,0.084620796,-0.1508085,-0.37417862,-0.30593994,0.27080554,-0.13959198,0.2817164,0.19661883,-0.46615776,0.63938135,0.3883355,1.251107,0.04855142,-0.35706544,0.16495533,0.69312775,0.076937065,-0.06836974,-0.503528,0.76144785,0.6518088,-0.20874767,-0.16328296,-0.40343314,-0.15399988,0.26056957,-0.2756645,0.073252626,0.02579956,-0.68453443,-0.26306197,0.20230415,0.36443773,0.027480448,-0.1521544,-0.0031994197,0.045794465,0.13648415,0.6227154,-0.6356084,-0.25879344,0.34030324,0.03327111,0.118972614,0.06538494,-0.300198,0.42323923,-0.6802071,0.09706782,-0.27340153,0.18939964,-0.2072228,-0.35618547,0.20931663,0.2531114,0.3625972,-0.35157043,-0.53849924,-0.23772885,0.770148,0.25956076,0.41399002,0.72377664,-0.4198709,0.29128236,-0.09850002,0.6312561,1.2988656,-0.25605378,0.06817025,0.18760154,-0.4749277,-0.8168098,0.3737104,-0.4865597,0.23445916,-0.055146463,-0.28835994,-0.54488105,0.32866198,0.1571921,-0.146947,0.14078033,-0.59070724,-0.44858894,0.310186,-0.12967572,-0.37091064,-0.47616556,0.23575817,0.74927384,-0.4361506,-0.26184845,0.15273967,0.3570377,-0.37164953,-0.79824334,-0.022811592,-0.35796338,0.40321985,0.04575319,-0.10666021,0.054524362,0.09922743,-0.56206787,0.17430487,0.22334819,-0.39462128,0.04188297,-0.30552012,0.25723317,0.9327876,-0.21025173,-0.31291676,-0.7713121,-0.6235854,-0.95715624,-0.5540763,0.5950858,0.22212096,0.18476741,-0.45720533,-0.06479044,-0.2206253,0.36505443,0.16647615,-0.62152725,0.37274107,0.013075856,0.50307876,-0.12786703,-0.7734398,0.0420706,0.091535985,-0.23394208,-0.32651475,0.622489,-0.15445654,0.8544506,0.16597857,0.12453629,0.12971413,-0.6177627,0.3508451,-0.30154327,-0.31608567,-0.634788,0.30920097 +523,0.21488595,-0.006994162,-0.5379756,-0.26192886,-0.34797043,0.33477402,-0.32463378,0.20393796,0.23935628,0.041577708,0.15281399,-0.16882102,-0.23181942,0.35261136,-0.13711601,-0.83219105,-0.010814727,-0.05439614,-0.63581264,0.47934565,-0.468309,0.4209028,-0.18170205,0.2756286,-0.06875079,0.47634655,0.31502816,-0.07471355,0.07640751,-0.112480335,-0.11548715,-0.06623511,-0.66363984,0.15266027,-0.14816794,-0.15918711,-0.06865139,-0.51769257,-0.3117105,-0.7185868,0.33953652,-0.6999339,0.38332626,-0.17091744,-0.372006,0.074086435,0.14270253,0.25040796,-0.3622543,0.048061676,0.24307539,-0.29835537,0.037330475,0.014448411,-0.33649355,-0.75342256,-0.46961573,-0.124739096,-0.61160904,-0.22842745,-0.25002646,0.21070036,-0.37196255,-0.08783458,-0.13721669,0.1614867,-0.3993821,-0.05408751,0.27501866,-0.43276724,0.07917715,-0.51249737,0.10109272,-0.13243648,0.27709994,0.18037142,-0.100685164,0.4512995,0.31829503,0.43867925,0.19069116,-0.24477267,-0.18570079,-0.2290297,0.107686296,0.5300781,0.06369701,-0.33918503,-0.22179988,-0.14054361,0.31186703,0.19419445,-0.024364263,-0.1676791,0.0067832046,-0.009549303,-0.25634125,0.46704218,0.5371026,-0.33688623,-0.037867554,0.5000622,0.4640862,0.2814272,-0.17257135,0.23281625,-0.078688845,-0.34886137,-0.30051583,0.21059915,-0.11465882,0.46492848,-0.20519228,0.17770298,0.7817993,-0.103769325,0.08903803,-0.19624129,-0.21679817,-0.11825164,-0.17916492,-0.025577888,0.13629742,-0.42634028,0.19209974,-0.24080372,0.59048927,0.23002806,-0.60889477,0.44221607,-0.4105416,0.2027391,0.02881128,0.6882989,0.82157755,0.55905545,0.069630034,0.95067036,-0.36369893,0.05792942,0.035432033,-0.24459545,0.27919286,-0.07859901,0.13333853,-0.5026776,0.17866695,0.162564,0.056275126,0.04179465,0.229924,-0.3791599,0.023644624,-0.017808845,0.6640636,-0.30256003,-0.06598572,0.7853146,1.1642562,0.8421425,-0.0065050083,1.3253384,0.27516425,-0.27308565,-0.027892262,-0.1983464,-0.60757107,0.1992292,0.4153281,0.4167154,0.46505406,0.14115301,-0.08415301,0.30853027,-0.33802193,-0.043192264,-0.019270267,0.21664958,0.119120136,-0.042694844,-0.33190307,-0.12551455,0.28456026,0.08367627,0.068731524,0.2368528,-0.262354,0.4377597,0.09194863,1.2394177,0.08688251,0.09464768,0.008802925,0.5580221,0.33546352,-0.0546692,-0.005549748,0.48971257,0.14783154,-0.027805133,-0.5530562,0.082786515,-0.39790747,-0.5168486,-0.14213024,-0.40022555,-0.18537949,-0.075776294,-0.3672658,-0.04373633,-0.021129148,-0.40085143,0.47293523,-2.584526,-0.16183257,-0.3420256,0.32525158,-0.29491097,-0.14066264,-0.2262111,-0.4163909,0.30708006,0.42723435,0.40134478,-0.650929,0.44488305,0.4388191,-0.4320781,-0.047172885,-0.4697378,0.10646598,-0.08224575,0.4340164,-0.069754295,-0.25104183,-0.109086156,0.47309342,0.7064601,0.38554594,0.03549222,0.24492113,0.59534734,-0.1810941,0.4332575,-0.08101218,0.5351581,-0.22163339,-0.0001538066,0.2956377,-0.62217087,0.5142592,-0.1497393,0.20024356,0.3713291,-0.3017334,-0.8624135,-0.62381077,-0.3996243,1.3280708,-0.47660616,-0.6360958,0.36202368,-0.116361804,-0.21461026,0.090588376,0.7595355,-0.07784516,-0.03969252,-0.5444379,0.105679035,-0.20405634,0.24896309,0.004284317,0.25468674,-0.36262473,0.84220856,-0.233623,0.5096028,0.15780583,0.14303496,-0.031665303,-0.39073104,0.03420688,0.5766778,0.59741265,0.038731694,-0.045255106,-0.10185533,-0.1989088,-0.38795885,0.057106238,0.7724166,0.5529238,-0.050082948,-7.124032e-05,0.29413676,-0.14657864,-0.0052998653,-0.18474758,-0.23957276,-0.066846855,0.052040108,0.52081674,0.5843905,-0.19103663,0.13042943,-0.064783275,0.17453721,-0.19028142,-0.6022175,0.44294482,0.66899985,-0.21370146,-0.042781573,0.20497279,0.403831,-0.36335224,0.47134995,-0.711154,-0.36515537,0.66751605,0.07000143,-0.5064644,0.121298835,-0.23701465,-0.05383087,-0.74386567,0.22850962,-0.10465259,-0.68746835,-0.3928888,-0.2005776,-3.7038271,0.048718035,-0.04442594,-0.15713601,-0.33821827,-0.03210341,0.42688808,-0.52260625,-0.604857,0.04910555,-0.028472926,0.59371185,-0.1636893,0.18889272,-0.32970795,-0.094665356,-0.38909656,0.2474264,-0.06466244,0.37300286,-0.07656657,-0.24857788,-0.072444454,-0.25091696,-0.6232577,-0.08409166,-0.5451937,-0.38994327,-0.16536972,-0.36399904,0.021734076,0.61046284,-0.39068168,-0.010529169,-0.21718307,-0.028417895,-0.27256727,0.25802833,0.2917569,0.05746457,0.013105699,-0.09767907,-0.060187165,-0.30504397,0.39581412,0.07435722,0.37326193,0.36402115,-0.19411048,0.040964548,0.6041001,0.63883644,-0.029023958,0.7016217,0.044451892,-0.0671978,0.5480334,-0.22487459,-0.1939427,-0.6603758,-0.39220187,-0.041147243,-0.41686204,-0.45308822,-0.3151361,-0.31298786,-0.8580799,0.07547845,0.22652142,0.30297494,-0.09219641,0.116999306,0.4156783,-0.13091718,0.11986222,0.088465706,-0.25014487,-0.57768583,-0.3034169,-0.5302928,-0.5178894,0.37627697,0.8318249,-0.060613196,-0.14103307,-0.065634444,-0.3895611,0.10447345,-0.11342076,0.3033487,0.13567066,0.2368858,-0.087358356,-0.5715207,0.47791067,-0.22284935,-0.11798381,-0.7396266,-0.020945577,0.62618244,-0.5067776,0.4054861,0.40802497,0.23887992,0.021635754,-0.6070389,-0.14718984,-0.018548131,-0.18980037,0.4042259,0.1197587,-0.6282544,0.43490624,-0.20337443,-0.07922935,-0.48982033,0.4731662,0.037380867,0.02045766,0.046058256,0.39932433,0.12870874,-0.19209039,-0.19311726,0.21623231,-0.5326422,0.2885404,0.3799583,0.07404918,0.67404807,0.06149509,-0.2923243,-0.6382274,-0.19453931,-0.49034172,-0.1538532,0.11844514,0.021341026,0.07218086,-0.08546233,0.014937631,0.3356178,-0.31628507,0.25531095,-0.039148502,-0.3412619,0.5896615,0.5646642,0.41482475,-0.5453387,0.6926672,0.122196145,-0.012196928,0.10966066,0.020232186,0.4934404,0.27077952,0.40873665,0.08820844,-0.016842322,0.057605643,0.55215484,0.2849522,0.2629039,0.07356262,-0.3737931,0.4913697,0.11220671,0.16308339,-0.14557488,-0.4886859,0.0063584275,-0.032751746,0.15313159,0.3993507,0.255007,0.39761263,0.08363026,-0.25849512,0.1745611,0.05558782,-0.35751185,-1.0600605,0.33151785,0.3761955,0.8371142,0.45006004,-0.11138137,0.1679082,0.49331623,-0.1763197,0.050760366,0.34565443,0.11025201,-0.5272783,0.5132108,-0.5656847,0.3942306,-0.03492635,-0.09661041,0.34007192,0.37263364,0.51081234,0.75895244,-0.1943403,-0.04137551,-0.022844464,-0.28655547,0.08328704,-0.17642684,0.09010514,-0.46510705,-0.3408925,0.42625588,0.3264545,0.33429092,-0.28849083,-0.15952794,-0.13958009,-0.17326416,0.1663429,-0.16638486,-0.15943933,-0.31194973,-0.72935694,-0.44837388,0.4178832,-0.13588418,0.05263317,0.075101696,-0.52177966,0.15476848,-0.09589387,0.05353754,0.06702868,-0.6733814,0.08360604,-0.15577619,-0.44456795,0.46447924,-0.3566362,0.44161573,0.1874532,-0.16959794,-0.31485072,0.10712503,0.12603779,0.90790254,-0.014307984,-0.19542088,-0.47584078,-0.051326238,0.30083698,-0.37824202,-0.11675215,-0.3317224,-0.0634376,-0.3560136,0.39093825,-0.38356623,-0.20399089,0.21875587,-0.25421497,-0.078118615,0.3985751,-0.32907873,-0.2638887,0.07681555,0.0002923927,-0.21266769,-0.0016175935,-0.4460236,0.2726564,0.13525064,-0.025988536,-0.033180326,0.023266288,0.031189706,0.24571483,0.06405317,0.08085517,0.28968862,-0.092780046,-0.34054795,-0.12103723,0.049109805,0.44810015,0.20567404,0.033245087,-0.17796671,-0.52290803,-0.33657667,0.26286224,-0.20335959,0.10288726,0.16529499,-0.28422603,0.57067746,0.15066074,1.1712369,0.0685007,-0.39490393,0.22136381,0.6555114,0.07058764,-0.020683339,-0.366297,0.83703434,0.5302487,-0.24638237,-0.18545625,-0.37581292,-0.15869066,0.3931827,-0.20765473,-0.19293885,-0.11315719,-0.79856193,-0.17577113,0.13739653,0.19117667,0.030918185,-0.10117334,-0.25616035,0.03082249,0.1698885,0.47288388,-0.4617829,-0.22069347,0.4886301,-0.11207999,-0.055654056,0.05980727,-0.24104299,0.4427673,-0.60888755,0.034578387,-0.5397715,0.042225067,-0.16223018,-0.25457817,0.18863153,-0.14838386,0.3592078,-0.19416308,-0.40918532,-0.07133349,0.57785183,0.38196418,0.39748022,0.6124615,-0.15740974,-0.10403474,0.046202403,0.63489395,1.2045892,-0.1612344,0.2415292,0.31609038,-0.58569896,-0.54210144,0.026515901,-0.47128457,0.033730157,-0.10511994,-0.41066408,-0.27477375,0.29519218,0.041446745,-0.00073862926,0.18454583,-0.63376087,-0.30468607,0.17503093,-0.3100532,-0.28485572,-0.4835202,0.18022303,0.84862083,-0.3498809,-0.4284665,0.13174072,0.24185872,-0.24439815,-0.6541972,0.1459919,-0.16964924,0.38082388,0.07230145,-0.41584596,0.06595864,0.32252353,-0.44682032,0.3366631,0.080113895,-0.35986808,0.017181393,-0.2018564,-0.049078,0.8235939,0.1233687,0.11258314,-0.79032546,-0.36151674,-0.86615974,-0.47357342,0.12749171,0.22434127,-0.10986989,-0.38903108,-0.11628728,-0.23316206,0.17335913,0.010286055,-0.4991341,0.37255356,0.17996731,0.6790153,-0.18147771,-0.87363243,0.111390844,0.2127579,-0.22322972,-0.49211115,0.5511008,-0.19818768,0.64576876,0.16143815,-0.0014438586,0.06755887,-0.59697247,0.34935883,-0.29382712,-0.13790132,-0.57304686,0.41210365 +524,0.59429115,-0.055924278,-0.7033105,-0.035893563,-0.32566503,0.16779576,-0.45581,0.19517066,0.4509099,-0.44612184,0.040565617,-0.061961576,-0.0014912598,0.24247514,-0.12562767,-0.4640767,-0.095932364,0.18726453,-0.54490685,0.68458486,-0.48155266,0.22398046,0.27984,0.39683178,0.0831654,0.12864453,0.16150501,-0.20623766,-0.18533832,-0.23714355,0.14391285,0.15175493,-0.64948523,0.21334395,-0.26840943,-0.22707218,-0.07524197,-0.44402152,-0.34291595,-0.72441405,0.23849678,-0.76196766,0.64740616,-0.011388354,-0.33862948,0.12654427,0.19614702,0.070390105,-0.19774696,0.07737994,0.23548174,-0.35212725,-0.63210905,-0.12369519,-0.1369028,-0.4386711,-0.6547485,-0.1112683,-0.60848236,0.18786272,-0.39044905,0.337729,-0.3921489,-0.0419408,-0.20959745,0.4813521,-0.45942312,0.15423574,0.09130153,-0.21590386,0.06845897,-0.62818253,-0.056827966,-0.029956017,0.23976383,0.2961538,-0.20757012,0.11795701,0.28431427,0.5760829,0.19834238,-0.36599743,-0.4797525,0.025034515,0.048265412,0.38418984,-0.21852882,-0.17369884,-0.17202915,-0.025683448,0.5529057,0.31171793,0.010610057,-0.30190012,-0.07751022,-0.15279193,-0.2852039,0.38924408,0.6119039,-0.26315925,0.011911824,0.40675336,0.36143637,0.21186496,-0.2294138,0.14759272,-0.1661661,-0.57919985,-0.113695085,0.10676515,-0.11280028,0.42351478,-0.112173446,0.34306583,0.59590095,-0.106886804,-0.19637859,0.15539177,0.074024096,0.12194196,-0.3281684,-0.1935342,0.37607944,-0.58408755,0.08480912,-0.3333671,0.5958689,-0.13284087,-0.85238314,0.3771259,-0.36626163,0.2011484,0.14254332,0.72821236,0.999197,0.66497433,0.23321256,0.94015896,-0.35810316,0.12401199,-0.18854815,-0.3171002,0.3164052,-0.029423699,0.47083795,-0.56091124,-0.108346716,-0.1045295,-0.18023466,0.02693653,0.8530592,-0.48966786,-0.20955299,0.15498537,0.7025744,-0.23535222,-0.10000898,0.88079405,1.0939652,1.0701774,0.048291054,1.2450148,0.30534405,-0.16142772,-0.2622923,-0.24390173,-0.92180836,0.20411292,0.28620666,0.43825567,0.3041661,0.27433023,-0.13452137,0.53813124,-0.35199064,-0.27583212,0.0149623975,0.44167817,-0.057439517,-0.12534457,-0.40429187,-0.18841875,0.17445248,0.022418475,0.22943616,0.38291246,-0.121629745,0.45847416,0.07840437,1.5685436,-0.16055328,0.08643058,0.13677007,0.22812274,0.23723432,-0.082048595,-0.05205709,0.3344913,0.44513866,0.006215574,-0.44091392,-0.011735849,-0.26269567,-0.47092357,-0.19512776,-0.31968987,-0.23735337,-0.31684533,-0.2233644,-0.24103497,-0.048861083,-0.6107954,0.25727782,-2.7214353,-0.10711194,-0.10794976,0.26394832,-0.16957672,-0.32505554,-0.15055601,-0.44629246,0.65486383,0.3006161,0.55312634,-0.6282548,0.518124,0.54532015,-0.65121716,-0.04841967,-0.86060417,-0.15974651,-0.22512189,0.45648316,-0.04699749,-0.46687424,-0.078938,-0.03736265,0.6194781,-0.028132048,0.13201074,0.5673267,0.47262657,-0.19352224,0.4193422,-0.1271864,0.6240632,-0.2986945,-0.24280035,0.37133452,-0.401689,0.25957435,-0.48243994,0.0862086,0.4469136,-0.35544744,-0.7151343,-0.39827558,0.1444657,1.0792215,-0.42121997,-0.5966895,0.17457198,-0.40497988,-0.1646719,0.25783408,0.60913414,-0.12700294,-0.034371294,-0.8381989,-0.16988534,-0.055483736,0.13418561,-0.09420976,0.19315562,-0.54252666,0.8197991,-0.106484674,0.59738827,0.42461756,0.3165979,-0.25543788,-0.2981287,0.21051735,0.9344827,0.37773976,0.014676617,-0.27912593,-0.19480552,-0.11519421,-0.33309484,0.012179827,0.7007722,0.5482773,-0.12710553,0.14071879,0.30431962,-0.27228263,0.0140062645,-0.20519868,-0.36546153,-0.28263658,0.05759711,0.5889472,0.7627771,0.043059662,0.5340115,-0.004652027,0.29645765,-0.13457969,-0.59021974,0.57765085,0.6371213,-0.27929282,-0.2028428,0.5784392,0.29176608,0.011857361,0.62172437,-0.59404504,-0.43071026,0.25010154,0.008681687,-0.4408834,0.3270262,-0.4522758,0.029241465,-0.8929063,0.1815297,-0.34464556,-0.6520222,-0.6822798,-0.23213989,-2.617296,0.10191874,-0.3349041,0.0010177772,-0.17004858,-0.11196635,0.26471484,-0.45180142,-0.64120877,0.10188027,0.21728416,0.5480944,-0.18721053,-0.03510474,-0.21670283,-0.44892353,-0.3230601,0.26151276,0.13854755,0.21286127,0.039734643,-0.41342407,-0.021547372,-0.20724453,-0.13606998,-0.17063117,-0.58247685,-0.25711495,-0.04817173,-0.44047368,-0.31946254,0.69964206,-0.39590958,0.08514185,-0.34308058,0.08145752,0.09448248,0.18884407,-0.15056428,0.22882888,0.06820454,-0.15248072,0.0048172977,-0.29666752,0.2617179,-0.031226201,0.3665784,0.5989737,-0.10303074,0.15462402,0.4800384,0.7786517,-0.14283903,1.1348684,0.46918643,-0.11244486,0.1951659,-0.10630394,-0.20633027,-0.6904177,-0.17363587,-0.040764857,-0.61227053,-0.33059385,0.020194769,-0.481786,-0.8493649,0.58732766,0.1950663,0.056336366,-0.055031568,0.47732493,0.5633157,-0.19578591,-0.06306833,-0.15368693,-0.34366554,-0.41731688,-0.27960625,-0.81282985,-0.51916677,-0.12881483,1.1972195,-0.12404098,-0.14500824,0.11799263,-0.3365607,-0.044016417,0.2180633,0.10375649,0.1539774,0.4133653,0.18189305,-0.679309,0.49850917,-0.24603051,0.095022395,-0.70336944,0.28814477,0.58961606,-0.75144863,0.41545478,0.482483,0.23154083,-0.19463576,-0.7882138,-0.18497205,0.15822837,-0.13892512,0.49200666,0.36289865,-0.8303683,0.7303865,0.27769613,-0.14302516,-0.8055819,0.25000358,-0.0019366089,-0.3022324,-0.027120396,0.3502926,0.09276549,0.17684597,-0.41173202,0.26539776,-0.41058356,0.5630485,-0.0058521964,-0.27025875,0.3287072,-0.15925932,-0.25375038,-0.8003937,-0.07231979,-0.45579273,-0.34301305,0.23788583,0.14597799,0.14606068,0.020649455,0.22551352,0.51020455,-0.41760284,0.12868343,-0.51312494,-0.32030517,0.5098387,0.5891497,0.3213219,-0.38337085,0.6447078,0.050053064,-0.25877854,-0.136167,-0.038910724,0.3768948,-0.08206052,0.49398655,-0.055373106,-0.15645707,0.30968845,0.7926107,0.081880316,0.30656856,0.10633649,-0.1438826,0.37870586,-0.09451027,0.15256603,-0.22143261,-0.63096553,-0.14791203,-0.2013728,0.2476597,0.48913652,0.21070407,0.57667065,-0.14817084,-0.046677716,0.1044647,0.12506013,0.16728783,-1.1045251,0.35436827,0.18292674,0.72681427,0.46651977,0.000892777,-0.035896644,0.7158251,-0.2969066,-0.026805306,0.41531307,-0.0038238093,-0.21161738,0.5641379,-0.84094983,0.3718341,-0.2610937,0.10079077,0.17527558,0.08250446,0.47905806,0.99269366,-0.2534274,0.13432029,-0.047868386,-0.2723496,0.12176722,-0.110445835,0.06329052,-0.48891923,-0.3739506,0.77245283,0.30137426,0.5632506,-0.22898757,-0.047956653,0.3063481,-0.19299802,0.2846247,0.048995722,-0.0018952321,-0.11999667,-0.4274829,-0.16550678,0.5076617,0.08832002,0.109888576,0.10309323,-0.10640568,0.31634814,-0.14718215,-0.19663727,-0.06045807,-0.5607773,-0.04529698,-0.34805736,-0.53223705,0.5977751,-0.030391209,0.25137037,0.17557883,0.035250593,-0.06771594,0.27906376,-0.014999688,0.78157187,0.092440456,-0.28556192,-0.056301106,-0.0706289,0.20738672,-0.27925476,-0.12353979,-0.18314098,0.2420198,-0.6867301,0.38930798,-0.45627084,-0.4414689,0.20494826,-0.22922425,-0.00894168,0.47076082,-0.14114043,-0.16173705,0.23834842,-0.12976688,-0.18440579,-0.39483997,-0.40537623,0.17222454,-0.17542934,-0.042704783,-0.12318621,-0.07580116,-0.12365899,0.38556674,0.17218211,0.017583646,0.42508113,0.1884771,-0.43836358,0.050945487,0.43224412,0.60804194,-0.036212824,-0.083694965,-0.55041504,-0.36634555,-0.4413026,0.26819074,-0.06937688,0.33947727,0.08488926,-0.37819105,1.0618993,0.10726053,0.9910326,0.061405025,-0.32011998,0.08815082,0.6761754,0.06300612,0.07770229,-0.32341993,0.9440323,0.553918,-0.12242288,-0.0075032692,-0.62293833,0.021619286,0.4218481,-0.3618033,-0.15965414,-0.07919012,-0.73053193,-0.102252655,0.15544473,0.16597873,0.063663445,-0.23602793,-0.004201226,0.17262188,0.25160813,0.17690468,-0.6012459,-0.1304853,0.46128935,0.20411535,-0.086057,0.17669556,-0.44855917,0.2289544,-0.5983783,0.10883327,-0.3063901,0.109912656,-0.079941444,-0.19396386,0.4581118,-0.010169897,0.2851074,-0.37847218,-0.31825185,-0.08604437,0.2900256,0.2395827,0.3374486,0.6457684,-0.31839967,-0.085732155,0.1572047,0.58116335,1.2233826,-0.34378463,0.19005656,0.2916345,-0.37135664,-0.775524,0.26546726,-0.39070997,0.09868758,0.033952985,-0.53639483,-0.44756836,0.2226884,-0.005451534,-0.05636154,0.05626699,-0.44868276,-0.14510721,0.23378861,-0.34745663,-0.12382526,-0.1915454,0.026057068,0.81967545,-0.28699547,-0.2967317,-0.07960458,0.28872132,-0.111159146,-0.5254252,0.13314213,-0.45970762,0.2220383,0.24403065,-0.3444858,0.0030437186,-0.046296027,-0.75437516,0.025721382,0.36121702,-0.29326633,0.03972645,-0.443063,0.055465948,0.8753252,-0.083000794,0.22710901,-0.44979206,-0.49696285,-0.81589746,-0.0934196,-0.06282313,0.0032953247,-0.017924191,-0.5552939,-0.09080522,-0.35938096,-0.123325415,-0.0449121,-0.64806247,0.39566302,0.15443835,0.39127672,-0.27824238,-0.9802826,0.045726717,-0.005224675,-0.24352297,-0.38576564,0.6193359,0.044900343,0.92835563,0.17066541,0.055161633,0.13634112,-0.6519726,0.1465154,-0.27087086,-0.2760916,-0.82671416,-0.02734004 +525,0.32526845,-0.10144975,-0.6639423,-0.047369216,-0.25075015,0.1953845,-0.19068736,0.33284485,0.16297859,-0.367813,0.030794542,-0.13061056,-0.014745977,0.38845187,-0.013777081,-0.5308367,0.028261295,0.21221833,-0.6510348,0.40963054,-0.51123303,0.343443,-0.11783797,0.17266583,0.15416974,0.29586965,0.17970422,0.02011276,-0.13056499,-0.0018653534,0.08467642,0.20458874,-0.39443463,0.23585421,0.003190089,-0.301055,-0.07686164,-0.34491426,-0.35179454,-0.5336864,0.289062,-0.5591303,0.5852437,-0.20747778,-0.15933767,0.2891776,0.171672,0.23713282,-0.2552393,-0.08329907,0.058771566,-0.28095508,-0.23634312,-0.3167987,-0.2123224,-0.22963497,-0.54898256,0.06823331,-0.54237664,-0.09197006,-0.3031274,0.1087034,-0.3383334,0.121926725,-0.06859459,0.51842993,-0.3911151,0.10904503,0.11972511,-0.20853546,-0.07198855,-0.62431145,-0.033397384,-0.04586863,0.0995339,-0.20698312,-0.27953976,0.3381037,0.17259628,0.44039628,-0.043986592,-0.11048412,-0.4192029,-0.17117628,0.07337201,0.5852814,-0.16659299,-0.11517004,-0.15886556,0.014113128,0.09367801,0.06622795,0.044898957,-0.22041011,-0.15119544,0.059695676,-0.121510066,0.32360736,0.49265128,-0.44315463,-0.18775493,0.49363256,0.5948058,-0.03999634,-0.10764932,0.10366977,-0.10765182,-0.48740095,-0.19263917,-0.020560972,-0.058915474,0.3886137,-0.17798045,0.20677158,0.5234543,-0.27495396,-0.12882599,0.24148151,0.16366082,0.061233673,-0.245301,-0.12935318,0.19458619,-0.45942914,-0.07180007,-0.0899343,0.6189029,0.15157513,-0.60385406,0.35059324,-0.45464808,0.13182035,0.01982373,0.5914477,0.7818122,0.46823406,0.17907497,0.72575885,-0.31565684,0.14341629,-0.12867843,-0.31313205,0.038081557,-0.08184837,-0.117880814,-0.51247567,0.16295813,0.10943897,-0.013257029,0.29279897,0.5382198,-0.43896243,-0.100706175,0.09932619,0.6776245,-0.3433539,-0.21907452,0.7117421,1.0298043,0.9382893,0.025255416,1.1699511,0.14938113,-0.21600297,0.092810735,-0.27341676,-0.7101183,0.22291473,0.26328698,-0.123923644,0.33361536,0.15481503,-0.029305026,0.3863079,-0.40581757,-0.025364451,0.0053738104,0.2407232,0.01796294,-0.042859968,-0.36055022,-0.26238933,0.08555652,0.032278605,0.20595077,0.33415642,-0.42202932,0.41635787,0.09419788,1.5516872,-0.041093785,0.16260675,0.13760756,0.29352295,0.14790845,-0.24890675,-0.21875905,0.26459473,0.31962022,0.08805053,-0.49257246,0.034157522,-0.17407314,-0.4928072,-0.1176061,-0.31692886,-0.078808,-0.18501276,-0.4192653,-0.21862376,-0.052241717,-0.5642253,0.42004097,-2.723856,-0.18756893,-0.0744454,0.3374355,-0.11614647,-0.3947353,-0.28863296,-0.46889764,0.17617218,0.3722633,0.41971177,-0.475922,0.34987172,0.26871604,-0.42100975,-0.15438277,-0.50682664,-0.0030116625,-0.09931369,0.2274795,0.0414119,-0.110512644,-0.010888159,0.1833509,0.49681938,-0.31156683,0.049332842,0.31903327,0.24931511,-0.012067404,0.3431378,-0.028422505,0.659976,-0.47294784,-0.28829777,0.429056,-0.5321865,0.062672846,-0.06705813,0.19837159,0.36228955,-0.49966407,-0.84978783,-0.4700501,0.05164349,1.3255169,-0.25688595,-0.23780414,0.26629508,-0.3761394,-0.44135696,-0.10653433,0.36021,-0.14304177,-0.112642355,-0.7500033,0.07021873,-0.18043756,0.24937037,-0.12167309,0.0010601319,-0.37776482,0.49690711,-0.057896398,0.71192336,0.31048605,0.17083436,-0.3684773,-0.23263685,0.21513267,0.96593237,0.39072645,0.14393345,-0.18296659,-0.17364258,-0.25483862,-0.14200568,0.21902862,0.5013536,0.6207731,0.025576435,0.117153,0.29901415,-0.019573372,-0.042400375,-0.2127408,-0.21733828,0.03149733,0.07345317,0.6003015,0.43151295,-0.05741708,0.37925044,0.0490328,0.30129567,-0.26997158,-0.5349347,0.32908878,0.8917818,-0.17892274,-0.45418978,0.43691495,0.5253706,-0.2807163,0.478807,-0.5261634,-0.38434616,0.24239507,-0.3151205,-0.17360248,0.17701684,-0.32384968,0.16083728,-0.70111144,0.18348911,-0.018982448,-0.6873566,-0.5398575,-0.20668797,-3.3466072,0.04986553,-0.13181515,-0.10657129,0.054792494,0.023178335,0.114400834,-0.42922533,-0.47084057,0.008435257,0.19417672,0.6701287,-0.07382832,-0.086353466,-0.10392146,-0.39206713,-0.2279025,0.1549448,0.077782914,0.30733567,0.0009456761,-0.41325897,-0.0033193715,-0.29206192,-0.40048173,-0.093787074,-0.48989844,-0.33964586,-0.12738073,-0.5140064,-0.32857266,0.6572802,-0.4532056,0.13269442,-0.2660115,-0.0150772,0.043154128,0.30387637,0.03481394,0.050037537,0.15680647,-0.12705731,0.18954141,-0.38416964,0.2388382,-0.025898237,0.23021276,0.5844489,-0.16987783,0.088541664,0.5387726,0.64760786,-0.03212945,0.9571339,0.40560704,-0.103998184,0.33208346,-0.26550847,-0.20800102,-0.3662871,-0.31241283,0.07586433,-0.46156758,-0.32560337,-0.06458337,-0.3649884,-0.84462905,0.45873222,-0.026106343,0.09205688,0.034269758,0.3753695,0.40667132,-0.20459563,-0.055665366,-0.07945424,-0.14497003,-0.29755592,-0.37821257,-0.67542726,-0.54790026,0.100091085,1.2989877,-0.21618266,0.06258691,-0.004994899,-0.22531143,0.018255979,0.17190626,0.2750144,0.42602807,0.3868728,-0.18652567,-0.5210935,0.28878176,-0.5143623,-0.18080415,-0.5604231,0.1059899,0.5020606,-0.5848162,0.39238268,0.3504184,0.25503865,-0.045754142,-0.48988473,-0.0065757334,0.021238148,-0.21255279,0.45967537,0.30229783,-0.8831317,0.5468966,0.24952477,-0.34310478,-0.70461285,0.44687876,-0.02704601,-0.058233026,-0.034993906,0.40145367,-0.034318954,-0.053889148,-0.27234024,0.02740432,-0.4068439,0.32459465,0.20302492,0.053552985,0.37498492,-0.3420652,-0.14586985,-0.5249008,-0.13039425,-0.45218498,-0.1829633,0.07696217,0.048145875,0.23130043,0.17255342,-0.09264386,0.3778761,-0.35452807,0.061354313,-0.18803306,-0.36845538,0.28999227,0.41110602,0.34617478,-0.2924903,0.5733039,-0.033450194,-0.008921862,-0.12865682,0.008139454,0.49856657,-0.012663737,0.37826344,0.0856424,-0.09019528,0.2618704,0.8944862,0.2513649,0.2325426,0.073913805,-0.3067779,0.02829101,0.058847472,0.13909593,0.08738397,-0.40918037,0.02895065,-0.15289424,0.2292107,0.5363481,0.21977563,0.55311465,-0.18309367,-0.34738404,0.050505616,0.12407571,-0.069697335,-1.3746457,0.3344848,0.09370223,0.7363719,0.4263652,0.111288905,0.05781661,0.43806654,-0.29348826,0.20440075,0.23980534,-0.26760483,-0.35414982,0.488194,-0.79682803,0.6063173,0.06755085,0.017839843,0.15147997,-0.052594446,0.47651994,0.87675184,-0.11418027,0.016982058,0.23817801,-0.2270203,0.2011309,-0.32348704,0.06646,-0.5705452,-0.20914519,0.7534969,0.34294578,0.43889648,-0.15921953,-0.035880253,0.05420556,-0.19902213,0.16779152,-0.03194139,0.23194247,-0.22990659,-0.54678065,-0.21833004,0.40812993,0.14063305,0.19289063,0.22717986,-0.1237878,0.2965149,-0.046910085,-0.099315636,-0.11448746,-0.4614092,-0.026479661,-0.2575424,-0.5444343,0.27073416,-0.17950714,0.3045498,0.2720514,0.04767154,-0.50288314,0.42696726,0.23772223,0.82610476,-0.0322339,-0.15978532,-0.19229741,0.26250684,0.2703729,-0.20483619,-0.122742675,-0.48433942,0.14885195,-0.64737993,0.43026453,-0.16958839,-0.29793423,0.28376037,-0.08228508,-0.023374364,0.53157574,-0.10727183,-0.09891847,0.030004412,-0.051697824,-0.30689913,-0.2246782,-0.3149112,0.23402584,0.002598565,-0.09999849,-0.1990253,-0.106419556,-0.106682345,0.24921583,0.051671114,0.27070183,0.2835851,0.09521541,-0.32211894,-0.018417902,0.12281724,0.5477993,-0.0029652454,-0.15244283,-0.41684213,-0.36712205,-0.19304697,0.29687777,-0.066617094,0.25544536,0.18303156,-0.24448287,0.6788263,-0.20744804,1.0734968,0.10663144,-0.26261404,0.11049198,0.51853937,-0.00085695833,-0.08789933,-0.25695515,0.91550875,0.5266954,-0.105708666,-0.27629015,-0.38320687,-0.029229265,0.17536686,-0.23306158,-0.40695667,-0.107346945,-0.6178523,-0.36416098,0.19721733,0.17079407,0.24396339,-0.17530909,0.15721169,0.30242214,0.050663453,-0.03066133,-0.39740855,0.08460522,0.411836,0.24617986,-0.090816446,0.12501979,-0.4878365,0.3649771,-0.604018,-0.057965726,0.024162918,0.15326916,-0.11881991,-0.31214154,0.3177734,0.24061587,0.26935893,-0.22236478,-0.22911078,-0.2547738,0.48598397,0.026490834,0.045865834,0.68494266,-0.2519661,0.003636674,0.06984052,0.34577942,0.910621,-0.2109925,-0.0126285665,0.25873595,-0.31845582,-0.5961969,0.29930663,-0.34972262,0.15052831,-0.119972125,-0.25742692,-0.5281704,0.36930424,0.18600042,0.07923671,0.11025898,-0.44453585,-0.1475099,0.15150577,-0.31732532,-0.1559179,-0.36876535,-0.06517278,0.628386,-0.21396211,-0.21206895,0.20554945,0.4499949,-0.17908686,-0.58647555,-0.018298738,-0.38684368,0.2700679,-0.027790073,-0.19344401,-0.112088524,0.02751819,-0.36205292,0.25628042,0.3324346,-0.22451177,0.09679867,-0.23368557,0.01864621,0.72066045,-0.17730722,0.20765164,-0.48406988,-0.5583443,-0.9305092,-0.2364796,0.36233783,0.12004247,-0.022206372,-0.6404655,-0.006802369,-0.17639975,-0.28986073,-0.007468488,-0.47250152,0.38593483,0.027501876,0.18901014,-0.19028898,-0.8240031,0.08119241,0.13794275,-0.24096549,-0.43204802,0.40994185,-0.044460934,0.7507831,0.22461702,0.05808507,0.41808003,-0.5380412,0.13484575,-0.17839801,-0.102822155,-0.58610874,-0.014051076 +526,0.44879216,-0.20394604,-0.4532657,0.10141205,-0.3139833,-0.088288955,-0.24372028,0.057105556,0.32635066,-0.22438303,-0.35854167,-0.22445217,0.13676713,0.20226695,-0.032677464,-0.5841843,-0.063384876,0.24201989,-0.82208884,0.58602494,-0.42500064,0.33865717,0.29019588,0.5217706,0.07757326,0.3250804,0.19984862,-0.05271969,-0.27311474,-0.084649175,-0.0036009504,-0.010904088,-0.97428745,-0.066938356,-0.4388309,-0.30859816,-0.024967395,-0.5601456,-0.4360742,-0.8855091,0.38429424,-1.1168237,0.63912797,-0.024959253,-0.036999263,-0.05387117,0.04613351,0.32832578,-0.29540783,0.011735995,0.21724036,-0.47954082,-0.06660354,-0.49685222,0.069368616,-0.28787497,-0.44779623,0.020499326,-0.5651464,-0.19712509,-0.23343185,0.12552625,-0.28891593,0.09958382,-0.2445613,0.43655586,-0.41902205,0.28933614,0.29563835,-0.22755125,0.23459552,-0.5616386,-0.093763314,-0.11110987,0.42794177,0.040377297,-0.23877944,0.45514914,0.30943805,0.5158219,0.3394375,-0.42498308,-0.072023466,0.09919981,0.2107163,0.44559887,-0.14256535,-0.23896298,-0.20490707,0.017298369,0.3766109,0.23774052,0.17896794,0.01322319,0.1296522,-0.12797326,-0.08046666,0.44783682,0.6448341,-0.26359767,-0.2929207,0.059783485,0.6045419,0.18130884,-0.101593524,-0.19244541,0.057829723,-0.5370112,-0.117082275,0.054187205,-0.22850443,0.7751208,-0.07645675,0.07269303,0.8256327,-0.3063927,0.13766286,0.21033849,0.09112762,-0.064684704,-0.27376258,-0.18471564,0.4042864,-0.7149922,-0.05197271,-0.44167122,0.6612328,0.19946653,-0.5452958,0.43066517,-0.51099974,0.21763483,0.066389844,0.67300946,0.64124906,0.5004599,0.6046399,0.7365624,-0.34844068,0.19230549,0.13174751,-0.3979171,0.14158246,-0.45016268,0.3383757,-0.37399152,-0.13052535,-0.2424399,0.013758641,0.0034373861,0.29758582,-0.65195906,-0.15281881,0.28316686,0.9482721,-0.20670062,-0.049014244,0.7491826,1.231745,0.96422553,-0.054199174,1.4628251,0.3710717,-0.3013419,0.06343777,-0.21420647,-0.79187816,0.1777787,0.21710041,-0.33910835,0.2334154,0.13452314,-0.16032726,0.3470662,-0.79122174,0.06648746,0.1266962,0.24637589,0.0070385863,0.048092283,-0.60099864,-0.18384954,-0.14972031,-0.18115605,0.21734849,0.25192896,-0.2877892,0.43046087,-0.045231983,1.2628459,-0.1377444,0.09795204,0.06980081,0.66025513,0.26214993,0.088660054,-0.041494362,0.31783935,0.3376217,0.106491014,-0.47666854,0.19293457,-0.5866351,-0.3487123,-0.24855638,-0.23447114,-0.111943685,0.04703235,-0.39221618,-0.26893428,-0.021594506,-0.2142563,0.2854865,-2.5668893,-0.38569638,-0.0769545,0.60179985,-0.42192534,-0.14872618,-0.0373224,-0.54463744,0.17125617,0.08871277,0.43857747,-0.7977279,0.51072925,0.5007687,-0.56687343,-0.26170814,-0.7590125,-0.151184,-0.0037511748,0.43312904,0.0823517,-0.24633636,-0.39792532,0.033936918,0.77612627,0.11498124,0.17179935,0.59425855,0.53950644,0.009282029,0.5501727,0.10227975,0.64618486,-0.463156,-0.09940198,0.36139604,-0.30607885,0.38145542,-0.2681011,0.10704965,0.6497288,-0.34955603,-0.75130916,-0.55378634,-0.3726971,0.9844822,-0.304896,-0.62997407,0.039140668,-0.36355668,-0.022247832,0.049292088,0.65330976,0.019946052,0.28017068,-0.7215011,-0.13694476,-0.06710158,0.26983404,0.14210567,0.07522862,-0.34283102,0.78915465,-0.017293958,0.29457837,0.2035885,0.4050528,-0.09382219,-0.40432137,0.21932837,0.99167264,0.2854896,0.115226544,-0.28456977,-0.16406387,-0.3069041,-0.23750417,-0.17768182,0.5133041,0.8095703,-0.2171004,0.033942197,0.33945215,0.0455486,0.059228834,-0.08910349,-0.40122253,-0.16634513,-0.08885704,0.55297405,1.0744674,-0.20439483,0.5298849,-0.2999248,0.39638144,-0.043068234,-0.55804116,0.59714353,0.69947475,-0.26292166,0.24007583,0.49304536,0.4059665,-0.6790931,0.5573623,-0.77010494,-0.4918253,0.6399677,-0.06846543,-0.48601085,0.15784948,-0.2736122,0.13825813,-0.6471789,0.48733467,-0.24631287,-0.26828736,-0.4539797,-0.1371875,-2.4563174,0.2505514,-0.21670192,0.06359181,-0.36905953,-0.120878175,0.23568204,-0.50586784,-0.5231076,0.1912219,0.19024959,0.6649421,-0.15697613,0.16679867,-0.28062078,-0.27737278,-0.13279969,0.19798224,0.4210338,0.24986142,-0.24353248,-0.41498503,0.057747927,-0.05135902,-0.3048483,0.20260009,-0.842391,-0.63654625,-0.12064147,-0.48437002,-0.47175688,0.6459875,-0.2474654,0.056584045,-0.44700974,0.04569502,-0.15743674,0.18158963,0.050427087,0.21369685,-0.015750239,-0.10828463,0.13046369,-0.22972742,0.5614075,0.086656146,0.41739988,0.20426634,-0.11571692,0.11812571,0.37002373,0.67700696,-0.14669698,1.08299,0.33890402,-0.19781743,0.28674358,-0.2765245,-0.40802372,-0.7806653,-0.29106295,0.08036439,-0.3834369,-0.40183386,0.19929284,-0.44687653,-0.88791907,0.6898949,-0.042443417,0.3013884,0.1552306,0.51047105,0.5383374,-0.28018805,-0.026678396,0.02500192,-0.10079599,-0.64763737,-0.27498913,-0.6997988,-0.5459785,-0.20293261,0.8276257,-0.20313846,0.10692087,0.1617062,-0.36589786,0.0876443,0.12122545,-0.13586673,0.11919646,0.704378,0.12038354,-0.6860476,0.4059359,0.03737803,-0.06415015,-0.5678727,0.3425998,0.70747215,-0.8641967,0.69642836,0.54371446,0.03134135,-0.042482145,-0.42861256,-0.31868997,-0.111343786,-0.06707604,0.42224953,0.22106431,-0.75420576,0.34128177,0.22073653,-0.57397336,-0.78854764,0.2997165,-0.14864576,-0.37810832,-0.12118939,0.37147486,-0.00041894728,0.01423248,-0.19800803,0.15045494,-0.5025399,0.34411636,0.23361829,-0.15702611,0.36973482,-0.13436507,-0.39276254,-0.74856514,0.1734543,-0.48362118,-0.2474352,0.4744445,-0.090936415,-0.1538355,0.4024177,0.41394186,0.26927117,-0.22799203,0.004029751,-0.04964669,-0.52032065,0.3575555,0.5232408,0.47462577,-0.5078215,0.6294642,0.14085981,-0.4156335,0.10549942,-0.014225116,0.38111675,-0.06093136,0.3735022,0.1313327,-0.040484585,0.22878817,0.722897,0.075484104,0.590507,0.14659368,0.09234975,0.51561964,-0.009782443,0.23442517,-0.047292683,-0.6071006,0.13386308,-0.049712364,0.09027912,0.39035955,0.33062792,0.16765174,0.10401427,-0.21188563,-0.14269498,0.15178087,-0.026822237,-1.2293142,0.17863414,0.18262061,0.8257626,0.17773302,-0.018366477,-0.17555656,0.82878834,-0.14632016,0.10277304,0.46078733,-0.03931817,-0.32747686,0.80059874,-0.57416433,0.4530481,-0.13163576,0.11359182,0.038334534,0.18995704,0.31417623,0.9623804,-0.36028522,-0.056105375,-0.22217767,-0.084846824,-0.04564872,-0.52180946,0.16051194,-0.46604127,-0.49578497,0.96666944,0.34294945,0.39537874,-0.19973351,0.06879918,-0.092497915,-0.3089477,0.46970075,-0.027321467,-0.091700755,0.26411518,-0.5957747,0.0811586,0.45879695,-0.16338246,0.13151759,-0.2249326,-0.089349434,0.084183164,-0.33725742,-0.2238329,-0.07465757,-0.9407342,0.01697774,-0.436387,-0.60607785,0.4931746,0.025988404,0.026575267,0.10975372,0.011822669,-0.22166021,0.48252985,0.0015280613,0.69374317,0.1759085,-0.45524004,-0.3542227,0.11171191,0.23401393,-0.26845026,0.37758777,-0.3951059,0.19961245,-0.40152338,0.83864254,-0.13413502,-0.47003475,-0.06245791,-0.25862136,-0.13742413,0.6702674,-0.12484889,-0.19160047,0.0051796734,-0.25180355,-0.39255017,-0.06807394,-0.19153307,0.15119682,0.47024626,-0.17537317,-0.16503319,-0.36688775,-0.16064757,0.69060475,-0.02289491,0.5051743,0.25033897,0.0060411463,-0.21525511,-0.052874804,0.3249212,0.67939913,-0.044945616,-0.20281996,-0.499659,-0.42860582,-0.37966225,0.36942455,-0.037870977,0.17178401,-0.037865028,-0.08138193,1.1205522,0.08535728,1.3419236,0.21665147,-0.24661158,-0.010306468,0.56614584,-0.21625185,-0.028509911,-0.63647586,1.1103603,0.47970244,-0.1287335,-0.071380146,-0.49549162,-0.07394206,0.3227802,-0.3378035,0.012774364,-0.10405089,-0.57009137,-0.35201794,0.16785677,0.43131477,0.033662833,-0.031104542,0.20073321,0.17901827,-0.0094759725,0.3867486,-0.83285993,-0.40242693,0.46581233,0.20449382,-0.2646912,0.2216627,-0.38030273,0.43512625,-0.6297268,0.20051931,-0.5250604,-0.016456343,-0.111816995,-0.5503645,0.3151283,0.07847366,0.47818896,-0.7322601,-0.3118387,-0.20943841,0.29916236,0.27874315,0.18845645,0.5936892,-0.22934411,-0.15792002,0.16345504,0.61594355,1.3186798,-0.4976369,0.19040087,0.1633125,-0.43263912,-0.6699613,0.44885558,-0.28419793,-0.03624285,-0.19623272,-0.52438,-0.7143556,0.20825823,0.02220914,-0.031234851,0.09433686,-0.7410698,-0.19390967,0.2564522,-0.26971155,-0.16891879,-0.18414395,0.34845448,0.5849857,-0.03392055,-0.25393537,0.042996313,0.3195871,-0.22697943,-0.42152196,-0.13219975,-0.44012964,0.25667408,0.12838395,-0.35690647,-0.14512442,0.17725402,-0.57710266,0.073954515,0.2321853,-0.4239261,0.070763454,-0.14815713,0.031562347,0.8290532,-0.18137988,-0.057830118,-0.5658115,-0.50510144,-0.93050766,-0.29287407,0.12436588,0.13400735,0.017668111,-0.39713553,-0.16576293,-0.09602829,-0.2185187,0.095889375,-0.6830136,0.32505527,0.1524984,0.67824906,-0.43413624,-0.9833152,-0.03308893,0.1985422,-0.25284183,-0.6023401,0.50534177,0.05998006,0.8695667,-0.03138909,-0.03284234,0.05695599,-0.44982332,0.020422658,-0.33558825,-0.1439692,-0.75953805,-0.014414602 +527,0.46489426,-0.080914535,-0.5603358,-0.01607945,-0.45637348,0.08908556,-0.26436177,0.044016838,0.38521352,-0.75172263,-0.3867313,-0.20551966,0.056307774,0.1923141,-0.18509795,-0.43364254,0.1748556,0.4596932,-0.6606428,0.4988626,-0.19012944,0.2641181,0.23063894,0.26206836,-0.01952676,0.08608926,0.37358892,-0.22377402,-0.3168204,-0.1538834,-0.11754706,0.20217796,-0.77856225,0.50253373,-0.47575536,-0.32173392,-0.0072146654,-0.5896167,-0.44256935,-0.73573565,0.21753854,-0.88243335,0.6038023,0.28327024,-0.23768939,0.056103896,0.24824683,0.10862449,-0.04261231,0.17465484,0.21968524,-0.48658827,-0.2683849,-0.29916972,-0.42565468,-0.5340615,-0.5896616,-0.0050404766,-0.2819147,0.182018,-0.2813431,0.20310038,-0.16047262,-0.047460306,-0.15438607,0.36836848,-0.21008527,0.13451049,0.26531217,-0.23376715,0.16443649,-0.6718289,-0.28138146,-0.017727332,0.424143,-0.012113555,-0.23064832,0.35057512,0.19576983,0.68962526,0.11399468,-0.3238023,-0.32918757,0.17151435,0.22325128,0.43001652,-0.33970594,-0.18625121,-0.24973607,-0.2716731,0.329667,0.31041396,0.09354269,-0.5253436,-0.012679678,-0.35184297,0.054911237,0.05773489,0.6586571,-0.31090614,0.0068746805,0.3483177,0.28474793,0.2169454,0.099553324,0.082379304,0.1161429,-0.52076274,-0.17792624,0.10878762,-0.1590911,0.72354037,-0.021502987,0.26434448,0.44119433,0.13356102,0.047438044,0.2885491,0.29458627,0.0523587,-0.17253953,-0.2719183,0.5270502,-0.64132607,-0.07574615,-0.3079477,0.76159424,0.0014789067,-0.6927111,0.24807817,-0.5106454,0.08854165,0.09024923,0.4909807,0.59468263,0.75402117,0.014966738,0.9606848,-0.69132215,0.0472503,0.012857415,-0.18665366,0.07484126,-0.18246438,0.22764957,-0.49222812,-0.12141687,0.025027692,0.12098161,0.035447884,0.613228,-0.30517924,-0.33783832,0.19334882,0.9060604,-0.25201973,-0.022665525,0.58435315,1.1401585,0.9788354,0.18903248,1.5388894,-0.0072895787,-0.13219666,-0.3103596,0.16310988,-0.9819463,0.25526282,0.22338028,0.042497616,0.12813662,0.39810362,0.018059308,0.2616624,-0.57643384,-0.14252296,-0.23102057,0.27633688,-0.113161355,-0.050904114,-0.27999,-0.3911244,0.03235189,-0.064794324,0.0008562605,0.29015294,-0.21404171,0.3385719,0.16080149,1.3648256,-0.320645,0.27970013,0.11882273,0.09532428,0.20559092,-0.19784229,0.004360378,0.12105187,0.15651761,0.012039016,-0.24365556,-0.11202011,-0.27928132,-0.4955304,-0.16677962,-0.08323633,-0.19176678,0.046653774,-0.37176636,-0.44686827,-0.14074804,-0.54765254,0.6512199,-2.2453876,-0.07589967,-0.1630513,0.5412848,-0.3218253,-0.18296646,-0.27713364,-0.52281183,0.51837677,0.18368463,0.32399395,-0.5439763,0.2422895,0.54591084,-0.578328,-0.16907929,-0.71551675,0.0968704,-0.055506814,0.110830724,0.0265795,-0.3514026,0.007447183,-0.11159446,0.29818112,-0.0069809607,0.14288606,0.4644545,0.4358708,0.10847229,0.25556374,-0.054175083,0.60609835,-0.6909468,-0.31206045,0.37369108,-0.48038638,0.2921957,-0.096880086,0.10572141,0.6683199,-0.5248725,-0.5227189,-0.73812073,-0.23407884,0.83112764,-0.25650468,-0.51873446,0.23231298,-0.14604937,-0.25423166,0.08191677,0.66606796,-0.041495055,0.2580029,-0.80864066,-0.17352879,0.019924039,0.28494594,-0.042050485,-0.12615202,-0.6553001,0.7910448,-0.009698613,0.5607448,0.6268596,0.3028841,-0.27517852,-0.30020997,0.12188426,1.004996,0.36885405,0.24371439,-0.28643677,-0.05198429,-0.3279193,-0.32074842,0.17714204,0.52182144,0.5699978,-0.3660129,-0.025262676,0.38761047,0.30034354,0.08513698,-0.14527698,-0.45281252,-0.26750633,-0.18114348,0.53210276,0.96619636,-0.058530796,-0.027107084,-0.23836224,0.31860077,-0.2664652,-0.42971873,0.6978461,0.9160096,-0.15142627,-0.19475032,0.7145017,0.54189533,-0.3171321,0.49634567,-0.7034827,-0.6649735,0.27364004,0.0046206363,-0.5829501,0.061549913,-0.38981676,0.22513403,-0.65547097,0.6720672,-0.32873434,-0.43710634,-0.59927315,-0.16533104,-1.7507143,0.26565364,-0.36301747,-0.027615448,-0.2086739,-0.044673342,0.0563546,-0.46766067,-0.5364134,0.3017448,0.009602994,0.6682985,-0.12741886,0.26870412,-0.20931412,-0.2663159,-0.47533345,0.19083948,0.10463367,0.19203442,0.022080516,-0.3960723,0.030484227,-0.12454957,-0.0843815,0.031953633,-0.8895278,-0.32276428,-0.2435946,-0.4890798,-0.4096608,0.6088092,-0.5524445,-0.028436167,-0.40381217,-0.022891497,-0.23442583,0.22978444,0.089727335,0.29387847,0.002704922,-0.24089484,-0.28212208,-0.20332426,0.3552821,0.17055173,0.1445942,0.70120215,-0.41180262,0.07748502,0.20294221,0.7574566,-0.27845147,0.92737675,0.2969319,-0.013705641,0.285651,-0.10696995,-0.46717462,-0.5616616,-0.16529745,0.021299222,-0.54177195,-0.32253495,0.16121288,-0.33162138,-0.7957905,0.60897803,0.22415133,0.15095507,0.12712573,-0.046708494,0.2796847,-0.46710315,-0.27374157,-0.047111493,-0.08082888,-0.39711538,-0.3982537,-0.6330051,-0.47210178,-0.0076304176,1.0754668,-0.105659746,0.16578595,0.6781318,-0.039883774,0.20365252,0.12022341,-0.15145242,-0.16818516,0.6783962,0.27476498,-0.62972504,0.5522768,0.10688049,-0.12395001,-0.58078915,0.4341909,0.5852459,-0.585213,0.7371262,0.61037654,0.13749798,-0.32548708,-0.7700227,-0.40729317,-0.3086619,-0.28522035,0.35533366,0.22403616,-0.7896617,0.27110016,0.31770965,-0.7098362,-0.8314062,0.43259302,-0.12159028,-0.20684119,0.16241784,0.42198125,-0.060501207,-0.008413166,0.2311673,0.2891141,-0.47239017,0.5595214,0.1327994,-0.031207347,0.2871298,-0.3120229,-0.49383664,-0.7499152,0.01292979,-0.4692813,-0.40572098,0.32028982,0.02832134,-0.17734228,0.25407416,0.38359413,0.3482376,-0.322956,0.1488853,-0.12460189,-0.17708498,0.3787446,0.315532,0.7049379,-0.42522183,0.5413931,-0.13885303,-0.036403816,-0.28904346,0.21832292,0.3186312,0.22849102,0.3884997,-0.23989932,-0.11172005,0.056751233,0.98504084,0.04741883,0.26667103,0.16760385,-0.050162327,0.30840763,0.23826714,0.18536274,-0.1173087,-0.79522616,-0.015196408,-0.4372847,0.090374805,0.27509904,0.020029379,0.34342656,-0.09815777,-0.19723046,-0.113595925,0.1017978,0.11990281,-1.5270268,0.30107477,-0.057876673,0.79333115,0.49804425,0.015057147,-0.1312614,0.7143955,0.0052443817,0.0890399,0.27054444,-0.27773845,-0.26565006,0.51681185,-0.5429511,0.14967549,-0.10963262,-0.062202673,0.062401142,0.055060238,0.33075714,0.7308932,-0.099045314,0.0069638393,-0.2592462,-0.33342686,0.19892804,-0.32529545,0.2865139,-0.4461052,-0.4996383,0.6929156,0.4171134,0.43475112,-0.4175663,-0.018594196,0.014516582,-0.15337233,0.21830434,0.25861263,0.042130377,0.06705863,-0.631347,0.1828109,0.6637067,0.18932365,0.034155365,0.10022005,-0.3173081,0.16455004,-0.3323743,0.022530103,-0.15426244,-0.9550707,0.087630056,-0.6273313,-0.20688975,0.23572855,0.10781617,0.05584355,0.21049552,0.052021146,-0.1520134,0.51057464,0.11125171,0.83902043,0.26768914,-0.18626618,-0.2547226,0.39258957,0.22002034,-0.17402194,0.37396002,-0.19636218,0.20385163,-0.52415353,0.37659335,-0.05005924,-0.040785324,0.42371014,-0.014425139,0.095285594,0.6017681,-0.037577588,-0.11368971,0.18443038,0.110530734,-0.3973572,0.004981642,-0.22509044,0.13860776,0.114387214,0.05895633,-0.14183067,-0.3335669,-0.28807297,0.06753692,0.1322214,0.3236408,0.36518702,0.085925065,-0.39612627,0.2773756,0.20503211,0.5889208,0.05433513,-0.17870636,-0.11503763,-0.38558844,-0.40337062,0.26209906,-0.040086415,0.117525555,0.07054291,-0.19847937,0.83474094,0.11844192,1.067824,0.17721815,-0.09756365,-0.09664213,0.57114416,-0.17067377,-0.20348053,-0.399546,1.0003939,0.75110966,-0.073875524,-0.020741686,-0.15290315,-0.004430771,-0.02332878,-0.27370223,-0.1911835,0.013797902,-0.7550661,-0.09635517,0.040866405,0.3326392,0.052912742,-0.26716563,-0.040285736,0.49654838,0.24805696,0.16019215,-0.6342507,-0.31459832,0.30224597,0.30864963,0.14581512,0.2888073,-0.32831055,0.42033625,-0.67349845,0.05373319,-0.31841996,0.027989013,-0.2286833,-0.32681745,0.15576322,0.08592079,0.4440948,-0.3906866,-0.13090356,-0.1522705,0.36935106,0.23304224,0.41916445,0.76356906,-0.04897285,-0.09084255,0.045003552,0.51515335,0.93093514,-0.4949402,0.096994184,0.497403,-0.46582285,-0.6509005,0.31229964,-0.48072314,-0.021643033,-0.22061078,-0.41284332,-0.39269698,-0.011224274,0.09085085,-0.104284674,-0.06427384,-0.8420165,0.08343502,0.3023015,-0.1777158,-0.370899,-0.19103883,0.2665255,0.47950792,0.048566118,-0.2493905,0.11260132,0.10974938,-0.2959933,-0.6647978,0.056953203,-0.5674863,0.21002771,0.13501437,-0.46325707,-0.14604479,-0.10729282,-0.5789389,-0.018849293,0.0023309987,-0.3142484,0.0114500625,-0.29038313,0.038688857,0.8089847,-0.027377367,0.28414705,-0.49172142,-0.42116585,-0.9721172,-0.18535225,0.10533663,0.2180149,0.016108578,-0.539222,-0.29063,-0.22805469,0.13413133,-0.034631494,-0.3758278,0.40240347,0.12376917,0.43609032,-0.23472027,-0.76739854,0.20556982,0.23956211,-0.22504096,-0.27197757,0.41881976,-0.047708612,1.0563544,-0.07734628,-0.086021,0.17484672,-0.74408406,0.29356137,-0.18216045,-0.09828276,-0.6095014,0.023467546 +528,0.4730344,-0.008141155,-0.6503826,0.090540774,-0.25683215,0.27714622,-0.42355463,-0.017840624,0.11900023,-0.7044454,0.025338786,0.11186929,-0.38658392,0.057584837,-0.078355044,-0.37387183,0.2922253,0.18715747,-0.7628218,0.649184,-0.23114516,0.43420416,0.1279753,-0.02189156,-0.18817958,0.10263947,0.27682588,0.17408516,0.057429057,-0.6051258,0.064028874,-0.16465221,-0.812041,0.57379586,-0.13875198,-0.22961348,-0.24719144,-0.27496535,-0.38147402,-0.7486446,0.1394199,-0.81953174,0.6206237,-0.06414526,-0.33808035,0.08483534,0.19880962,0.18113597,0.2902604,-0.11036868,0.230541,-0.40944722,-0.40566716,-0.24298246,-0.16307935,-0.42363086,-0.51070964,0.1145172,-0.53968376,0.013104806,-0.42804855,0.33122766,-0.39483228,0.11138044,-0.3017386,0.61657727,0.009972047,0.1103739,0.046623792,-0.26885012,0.07112314,-0.53994554,-0.028488997,-0.07754414,0.34131387,-0.0049697435,-0.12078676,0.43353432,0.14046322,0.60935414,0.013741509,-0.3048751,-0.12913217,-0.25269955,0.36638114,0.5920492,-0.1244538,-0.06847698,-0.23702183,-0.19615412,0.5604057,-0.07073835,0.16831297,-0.32623738,0.0015504796,-0.14797495,-0.16689602,0.587366,0.5571843,-0.16996886,-0.008203726,0.3635119,0.66562086,-0.028861586,-0.18318488,0.090740256,-0.1544555,-0.26909986,-0.23762354,0.24270612,0.10436346,0.25533018,-0.20179318,0.33198804,0.5092177,-0.1583786,-0.22905304,0.6043978,-0.029391041,0.34483972,-0.07598075,-0.13980372,0.39146423,-0.75622857,0.0051199337,-0.5836544,0.6801492,-0.13516688,-0.8437706,0.45272824,-0.41542453,0.07919052,0.16138826,0.7081921,0.6877423,0.84061915,-0.060156584,0.9358227,-0.35234377,-0.13925043,-0.077205606,-0.18026403,-0.052955702,-0.267176,0.027190413,-0.2611223,-0.07233917,0.043996327,-0.01730244,-0.07897,0.32599655,-0.42410624,-0.3970755,-0.04407451,0.83645976,-0.19796024,-0.024664283,0.81150925,1.0882124,0.9930893,0.12645374,1.1441727,-0.036013044,-0.17229316,-0.515074,0.2289976,-0.7590144,0.35887656,0.1935257,0.53240144,0.27791116,0.06557681,-0.204792,0.15684308,-0.49679,-0.33245167,-0.06658311,0.29313654,-0.1416946,-0.15231477,-0.30461484,-0.0449995,0.29455253,0.07258298,0.3069824,0.25891787,-0.34053496,0.50338256,0.14890805,0.630767,-0.28575554,0.093159184,0.06696362,0.22081396,0.07856778,-0.35822228,0.0695247,0.14323834,0.26672763,0.23209557,-0.54083,0.022727687,-0.2448275,-0.30675027,-0.26319122,-0.20350493,-0.2984897,-0.102544345,-0.11117841,-0.42617494,-0.19095877,-0.45809704,0.30506366,-2.5677009,-0.13730791,-0.09699479,0.30242524,-0.17236209,-0.24169654,-0.09616903,-0.65055394,0.4170381,0.16079783,0.46897206,-0.53889954,0.42552269,0.4626277,-0.3703405,-0.14163646,-0.5945075,-0.0001583512,0.045401853,0.48048922,0.11708564,-0.18531504,-0.16258198,0.09875835,0.5311555,0.007645836,0.117953315,0.58155024,0.40629718,-0.07469483,0.18544902,0.025045175,0.5665134,-0.52453583,-0.1756991,0.51724184,-0.51632386,0.2554558,-0.2028723,-0.01117505,0.45135567,-0.38890135,-0.5664883,-0.49720544,-0.15734926,1.5004003,-0.17434567,-0.8740274,0.03439154,-0.05028093,-0.3372876,-0.091855355,0.38583085,-0.064834364,0.1313711,-0.5407254,-0.072065026,-0.20956443,0.5543336,-0.20210248,-0.22237231,-0.46242425,0.7251151,-0.052262213,0.72488487,0.31214988,0.31984228,-0.42844164,-0.29110003,0.04492967,1.336679,0.5934176,0.18991579,-0.28757828,-0.07454605,-0.27926522,-0.42575172,-0.022534508,0.76649857,0.5251789,-0.020018853,0.070547484,0.50849205,-0.07292619,0.24228914,0.0585972,-0.42171147,-0.37363493,0.0053193294,0.743521,0.47027808,-0.023037454,0.3293596,0.019234447,0.16202277,-0.30206817,-0.492352,0.48761448,0.7427905,-0.2161689,-0.28787258,0.50962555,0.57037014,-0.3444947,0.57012933,-0.5763436,-0.66160464,0.3524666,-0.07712043,-0.47459376,0.06898789,-0.43396562,0.2581483,-0.39068967,0.57626814,-0.57667637,-1.1166294,-0.32635257,-0.0488557,-1.6124737,0.2859507,-0.20649551,0.0091881985,-0.38849103,-0.13253309,0.23847939,-0.21791182,-0.56300503,0.03761154,0.14665464,0.8454313,-0.09422203,-0.016913066,-0.17295045,-0.36247206,-0.1547731,0.29965398,0.12849285,0.120591596,-0.28081146,-0.10309573,-0.12116151,-0.21644229,-0.12175751,-0.18407425,-0.44095558,-0.31405133,-0.2418015,-0.21596774,-0.17487954,0.6601357,-0.40968984,0.13896751,-0.29262316,0.047385298,0.09791653,0.23202246,-0.042695846,0.18482637,0.05033276,-0.37269592,0.042198803,-0.2849396,0.36608493,0.014939523,0.44438207,0.5199061,-0.40788218,0.075798236,0.3503736,0.6481273,0.13133751,1.0765784,-0.045221284,-0.21261787,0.4403985,-0.03180411,-0.4919441,-0.65345997,0.1725565,0.4807623,-0.382298,-0.199565,0.2186401,-0.23443991,-0.98105824,0.57278156,0.20290415,0.2654925,-0.23851922,0.5395467,0.19701368,-0.17570908,-0.14427249,-0.21066219,-0.28177398,-0.36971074,-0.4079752,-0.7282866,-0.47995663,-0.1320295,1.0071696,-0.09846006,0.07432901,0.33526084,0.020653386,0.27367818,0.15044788,0.16529836,-0.04642048,0.43909535,0.14672497,-0.6396402,0.477459,-0.37233564,0.1024898,-0.41293982,0.5156497,0.61202216,-0.48594317,0.124475956,0.5367857,0.07852332,-0.39820942,-0.6567226,0.13671671,0.0053517567,-0.17740026,0.28978515,0.3082522,-0.8603824,0.5025222,0.19652966,-0.23688293,-0.64918995,0.25699085,0.0024276834,-0.05482064,-0.061961643,0.48498484,-0.12431354,-0.040123872,-0.04459726,0.17143592,-0.34558156,0.32561514,-0.008684392,-0.14968985,0.22532281,-0.2614045,-0.42154947,-0.5421054,0.084622785,-0.8278455,-0.13657102,0.23750472,-0.16241309,-0.0848689,0.47790962,-0.016376985,0.47491565,-0.19966926,0.13069269,-0.28008264,-0.3553526,0.62381274,0.46061713,0.46682066,-0.5598687,0.77520853,0.22992085,-0.20222405,-0.086852394,0.20680879,0.4865858,0.095649056,0.4687607,0.0109869605,0.13345575,-0.034147076,0.81949055,0.34679046,0.32634524,0.0596196,-0.056861877,0.25410667,0.019297095,0.3693071,-0.13737677,-0.6570536,-0.10135892,-0.16216166,-0.0017920182,0.37773877,0.034827266,0.4344789,-0.02686031,-0.14738944,-0.083463736,-0.06704101,-0.17790006,-1.5044205,0.44064033,0.1685634,0.745546,0.21681306,0.18413195,0.021661805,0.7098423,-0.106366195,0.009757672,0.12986046,0.024155827,-0.3370773,0.49259627,-0.78474844,0.2778656,0.06764741,-0.014136798,0.091061756,-0.10221676,0.40795678,0.8376417,-0.13598657,0.18973556,-0.23994437,-0.3136131,0.16561607,-0.36696097,0.54023886,-0.30628648,-0.46353543,0.72983146,0.101493485,0.44136652,-0.30812755,0.07514251,0.10727252,-0.19565865,0.3029742,-0.028195769,0.17036544,-0.3161085,-0.2356836,0.13203624,0.507723,-0.055318337,0.0330635,0.21275337,0.014761352,0.11318027,0.16386183,0.07888622,-0.06361253,-0.7165861,0.3110456,-0.33622858,-0.46224898,0.100496516,-0.19298735,0.0077682505,0.29258066,0.14331304,-0.2158526,0.31350186,0.33702978,0.30239275,0.032714624,-0.14450344,-0.25832742,0.15770909,0.005551118,-0.3998977,0.21026811,-0.008869629,0.19295874,-0.5878058,0.39068285,-0.39764926,-0.3321423,0.44692013,-0.09572249,-0.1260409,0.41032633,-0.045953266,-0.012494729,0.4021007,-0.16709001,-0.18071714,-0.29748806,-0.0103297,0.11691345,0.06037519,-0.13532957,-0.07395414,-0.14220718,-0.2534664,-0.074344985,0.15955822,0.2560457,0.3993061,0.042802773,-0.6597346,0.27819434,-0.0008679812,0.52850425,0.030879421,0.17301312,-0.217994,-0.41679847,-0.46013469,0.6565039,0.062176052,0.107604794,0.15421282,-0.4075219,0.64530945,-0.10696941,0.82659924,-0.011903156,-0.31183964,0.029182963,0.60515165,0.042873416,-0.18322532,-0.36789984,0.93748826,0.44711035,-0.10572868,0.08250291,-0.5624128,0.027713913,0.07373057,-0.24862124,-0.21648718,0.029875685,-0.6633905,-0.1714018,0.14403212,0.413612,0.05619768,-0.21043733,-0.07304126,0.5278629,0.049578905,0.028608102,-0.5297742,-0.11239138,0.383561,-0.05219553,-0.23071441,0.072231404,-0.4937349,0.16376597,-0.8764063,0.06848888,0.04585349,-0.084016636,0.051133927,-0.3255319,0.3562236,0.17132014,0.28849828,-0.331653,-0.21379264,-0.005936359,0.2285436,0.27848396,0.31050593,0.6884851,-0.19338351,0.011398282,0.090552844,0.3491828,0.9278638,-0.058167763,0.031175168,-0.044387594,-0.49546754,-0.73002493,0.066227205,-0.35573688,0.20733769,-0.052727994,-0.4109542,-0.3555463,0.2655936,0.11411505,0.0076545156,0.1250643,-0.90825903,-0.2789195,-0.10977467,-0.44580394,-0.24381612,-0.2715465,-0.021774825,0.53488946,-0.018277435,-0.26245564,-0.04237949,0.38894904,-0.2586659,-0.7654197,-0.10548549,-0.32216138,0.07607742,0.017848881,-0.23946443,-0.16991176,0.13253722,-0.499935,0.17715599,0.11238973,-0.28348047,-0.13545574,-0.34099784,0.08507626,0.3726586,-0.11441869,-0.07954547,-0.24947897,-0.6762534,-0.63879627,-0.37794712,-0.18154882,0.32303736,-0.0053647067,-0.63256115,-0.33803913,-0.4949772,0.049428187,0.0066157123,-0.43138936,0.31426528,0.20714341,0.27070072,-0.26946607,-1.0151604,0.25742775,0.033899095,0.022354722,-0.3731434,0.2620656,-0.019803403,0.5825393,0.18183932,-0.015253599,0.21085602,-0.85361284,0.31750947,-0.23536086,-0.042004295,-0.67459166,0.17810021 +529,0.39425248,-0.27943,-0.38352886,-0.09607843,-0.44737053,-0.19187959,-0.27445135,0.26668027,0.25711608,-0.17982292,-0.17666334,-0.18041697,0.04206842,0.3558868,-0.107024334,-0.6331807,-0.17019469,0.27525896,-0.69889504,0.46406925,-0.61390215,0.25239742,0.1168876,0.4776715,0.18482862,0.28370997,0.13229635,-0.05084498,0.124335684,-0.086127594,-0.16056857,0.27174857,-0.59606564,-0.07169138,-0.07407079,-0.36844397,0.0063325227,-0.5155333,-0.27099383,-0.8616423,0.3166615,-0.97003555,0.51267207,0.0073908814,-0.1360838,0.02898761,0.25344315,0.48356286,-0.32856452,-0.034765862,0.27119815,-0.2302112,-0.09990709,-0.19508545,0.044650827,-0.3159238,-0.5857594,-0.035406444,-0.49548826,-0.28236568,-0.287948,0.18573989,-0.35233793,-0.01185532,-0.23180467,0.39277184,-0.34774825,-0.0065742093,0.29843855,-0.15853548,0.3740297,-0.53095526,0.045960825,-0.05174681,0.38953227,-0.12450516,-0.29762274,0.38717115,0.25888613,0.35502508,0.2577149,-0.32396993,-0.24255733,-0.12111986,-0.052272234,0.45078033,-0.20006628,-0.33362392,-0.17311688,0.28174958,0.4400085,0.4614755,-0.115555204,-0.28185034,-0.076972276,-0.0069587547,-0.13641547,0.596915,0.5872042,-0.124745734,-0.2993246,0.2417874,0.5183824,0.24573107,-0.1878232,0.025510598,0.01934358,-0.64249015,-0.08463354,0.08935259,-0.039246965,0.44609097,-0.16222474,0.12925224,0.72964346,-0.15715204,-0.068879366,0.02739763,-0.07539643,-0.041196954,-0.31629503,-0.28939238,0.27889648,-0.5529308,0.22854522,-0.18911871,0.69313556,0.11464217,-0.8274912,0.44628233,-0.6512623,0.26352343,-0.08769759,0.6480729,0.70578307,0.47227922,0.554936,0.8153793,-0.22917941,0.38711005,-0.12007497,-0.54654026,0.15033947,-0.19253989,-0.10945201,-0.55421895,-0.0037634731,-0.3499098,-0.11210441,0.15601276,0.2739062,-0.6402837,-0.03611044,0.22486895,0.80695724,-0.33258888,-0.08499904,0.6417342,0.99844956,1.0936404,0.025664996,1.024837,0.2363756,-0.19054644,0.3344604,-0.3851976,-0.7403592,0.19478863,0.19719206,-0.1629586,0.32965755,-0.13605139,-0.11980493,0.40966207,-0.2516808,-0.14144418,-0.054500673,0.16362165,0.16831616,-0.026499128,-0.56190807,-0.14985567,-0.027123865,-0.113935016,0.11353779,0.16330314,-0.2637261,0.2896947,-0.080792114,1.5230082,-0.021756949,0.00041204592,0.12026083,0.6394543,0.23425764,-0.23695119,-0.09104692,0.46396178,0.46889514,0.05551688,-0.6614171,0.33024204,-0.20627907,-0.43069133,-0.034106452,-0.34782833,0.005320144,0.10125827,-0.4573421,-0.20110345,-0.25073162,-0.24602102,0.48590326,-2.7997935,-0.16068786,0.061953876,0.35531884,-0.3303852,-0.23091078,0.020018332,-0.5354753,0.27211544,0.19686121,0.5673133,-0.7382107,0.52548873,0.46717384,-0.6252556,-0.10292755,-0.84496224,-0.13979739,-0.01882077,0.47952306,-0.010684212,-0.08510297,-0.05681509,0.1518769,0.6476096,0.039772447,0.09278619,0.3580974,0.48887846,0.3075186,0.6178802,-0.12999049,0.5683026,-0.20964536,-0.18046458,0.31240207,-0.28629822,0.17225844,-0.024168214,0.014205563,0.49200794,-0.4929064,-1.0476972,-0.5195132,-0.085963845,1.0043538,-0.40719688,-0.46464807,0.2092286,-0.1838623,-0.054906268,0.024131322,0.5414,-0.11795199,-0.08916895,-0.67866236,0.046419326,-0.045572057,0.17876813,0.15644178,-0.03807719,-0.29982477,0.59548825,-0.070882685,0.37286848,0.31674317,0.28670698,-0.28102097,-0.51387495,0.06942495,0.6330758,0.1687788,-0.021429634,-0.14313854,-0.3602406,-0.09612155,-0.14904073,0.07289528,0.6180406,0.78663915,-0.033544905,0.13690136,0.36192238,-0.089968406,0.07585524,-0.14352337,-0.21886571,-0.09220155,0.013603886,0.5206219,0.71632135,-0.14861843,0.58472514,-0.110718,0.21305908,0.06955732,-0.5212205,0.6100155,0.89795506,-0.18433352,-0.0700809,0.40688947,0.42712873,-0.3237,0.4036145,-0.5845422,-0.05268787,0.63303494,-0.19650245,-0.45307997,0.22729507,-0.16498251,0.15660448,-0.91847324,0.31274906,-0.3240844,-0.43099013,-0.5449096,-0.037921224,-3.3201709,0.25478002,-0.28309804,-0.18824038,-0.30989558,-0.095819905,0.26313114,-0.6283938,-0.53329164,0.1047244,0.24193197,0.6431878,-0.075832285,0.09405122,-0.33973604,-0.13607319,-0.25743675,0.15934464,0.21657303,0.40078792,-0.09754014,-0.46231553,-0.006373045,-0.036307946,-0.66470563,0.1839198,-0.56218135,-0.40253586,-0.03585791,-0.59191185,-0.26860157,0.54673505,-0.1900775,-0.0049006464,-0.30025098,0.15079568,-0.11054646,0.29729167,0.17625245,0.15728538,0.14146711,-0.014219081,0.12340326,-0.26880226,0.3987742,-0.02625528,0.31011182,-0.0050750654,0.055025026,0.1226837,0.4663458,0.7596209,-0.12791568,1.0220008,0.46544078,-0.082923315,0.23265703,-0.43038622,-0.21761635,-0.5011789,-0.36211297,-0.13619779,-0.37604234,-0.45570073,-0.009007406,-0.35562038,-0.75497615,0.65616804,-0.15178797,0.34887904,-0.06589797,0.33134988,0.5892731,-0.15064378,0.0809,-0.1449062,-0.23948641,-0.58015263,-0.15809545,-0.47517186,-0.49893874,-0.07782105,0.86399096,-0.3931545,0.12722407,-0.123050645,-0.26470006,-0.020696245,0.086950764,-0.055823293,0.5092772,0.37643963,-0.10611746,-0.681502,0.3860528,-0.035555795,-0.15204898,-0.60601336,0.27867705,0.6112429,-0.6346226,0.6186135,0.25136754,0.07847901,-0.11090063,-0.65543044,-0.2387092,0.2103696,-0.20485207,0.5085061,0.19133997,-0.783501,0.59209126,0.43820542,-0.4020433,-0.64448965,0.31074855,-0.0066532535,-0.42702103,-0.10887669,0.25472027,0.125956,-0.016388515,-0.2283197,0.29009697,-0.46167767,0.19354844,0.13803138,-0.113350056,0.28554687,-0.07589895,-0.20223165,-0.6966664,0.10321706,-0.5015205,-0.23210093,0.36426327,0.086859226,0.0070874733,0.13898157,0.053819664,0.4888981,-0.18689609,0.08185795,-0.13928773,-0.274174,0.06230533,0.60320276,0.2799866,-0.5594224,0.4609294,0.14374089,-0.4169774,0.11906708,-0.033139847,0.38902676,-0.07536792,0.32140845,-0.18732995,-0.22743489,0.27069905,0.613176,0.105798535,0.523062,-0.09609128,0.08766178,0.40912306,0.015807267,0.14521977,0.029210063,-0.5261582,0.030238628,-0.06077874,0.21401009,0.58906347,0.27276745,0.31832436,0.10100543,-0.26380432,0.02350189,0.16089109,-0.11215386,-1.278216,0.45013097,0.37577337,0.837688,0.4374314,0.14519085,-0.12014118,0.7240542,-0.38437536,0.06657267,0.4586747,0.14960645,-0.5346369,0.71578497,-0.74875504,0.41631052,-0.17464621,0.0076550017,0.2180817,0.20861807,0.38707766,0.8045995,-0.23724985,0.048845522,0.048035275,-0.13413051,0.0802928,-0.32131797,0.0036497752,-0.46915832,-0.3062687,0.63624364,0.3847966,0.32944977,-0.16030383,-0.053786017,0.20048866,-0.14303586,0.21011229,-0.010519874,-0.0668918,0.14910553,-0.5226456,-0.16175808,0.5596455,-0.024107965,0.15383552,-0.28142297,-0.17615916,0.09483667,-0.27062437,-0.1106424,-0.07260578,-0.736985,0.08135627,-0.17190836,-0.42282364,0.4896909,-0.25144556,0.18530267,0.2467943,0.08956682,-0.24836417,0.21674234,0.08519812,0.8154827,-0.020613719,-0.15946075,-0.458496,0.0059734504,0.27034596,-0.2097784,-0.07088627,-0.27620974,-0.012735617,-0.40163666,0.54242,-0.05131664,-0.4696728,0.10912969,-0.1148663,-0.0016056955,0.65697724,-0.19682044,-0.12836792,0.10556396,-0.26373658,-0.47444934,-0.14656787,-0.1379829,0.24417894,0.37605187,-0.15811189,-0.12406637,-0.18559602,-0.1566062,0.6982773,0.020637074,0.55401766,0.17627941,0.09175287,-0.17806835,-0.052524447,0.19064805,0.5284837,0.120976426,-0.036863282,-0.46541438,-0.24945217,-0.29878145,0.06189642,-0.03778087,0.3146885,0.015218946,-0.28710252,0.9606058,0.10255634,1.2306828,-0.09393989,-0.37121338,0.12721759,0.5158751,-0.0633123,-0.002784427,-0.4549825,0.83001,0.6103017,-0.04727642,-0.093755476,-0.3659332,-0.14847043,0.3455719,-0.34916884,-0.03215027,-0.005395317,-0.4383582,-0.30632845,0.30701303,0.19887818,0.087316945,-0.093950406,-0.08969578,0.0030283094,0.019830205,0.3136141,-0.46717706,-0.092353545,0.0762571,0.33411366,-0.035201486,0.1582346,-0.5631902,0.36035052,-0.46379706,0.21045771,-0.5016899,0.18127844,-0.10568517,-0.32818794,0.14526659,-0.099661335,0.22755848,-0.24066485,-0.33776492,-0.075023256,0.41139805,0.11198393,0.22215533,0.69748706,-0.32533875,0.16517782,0.13069758,0.5072856,1.1970555,-0.4308309,-0.120995365,0.23161678,-0.40188587,-0.6495561,0.4318821,-0.3676644,-0.22162676,-0.1214726,-0.23814635,-0.56149393,0.18861505,0.15965652,0.17446679,-0.004602305,-0.57100016,-0.15336673,0.39140835,-0.31114933,-0.22052911,-0.25100726,0.4212127,0.7487372,-0.22291903,-0.3788242,-0.013641062,0.21032873,-0.08342394,-0.42863828,-0.00803113,-0.24539852,0.38575575,0.035332028,-0.32598412,-0.11239885,0.1891232,-0.48903838,0.03143607,0.060275912,-0.30630052,0.20413749,-0.18297866,-0.031582892,0.90987813,-0.38859683,-0.12704968,-0.6833017,-0.4690488,-0.92000836,-0.38521203,0.24550171,0.120307714,0.10143101,-0.5594992,0.11842752,-0.10493803,-0.48873252,0.033478413,-0.50358623,0.40043926,0.12582757,0.4122029,-0.3315261,-0.7757549,0.08248493,0.10288853,-0.23520802,-0.6713839,0.7177364,-0.007792393,0.8148325,0.0466549,0.10843302,0.06694411,-0.298591,0.14666967,-0.25982454,-0.2572915,-0.8552096,-0.12186468 +530,0.5707178,-0.22915268,-0.32688242,-0.16969909,-0.10958416,0.14510226,-0.085622676,0.6179935,0.30128056,-0.4015501,-0.030157885,-0.11614748,-0.025386512,0.23091312,-0.14179191,-0.34386343,-0.18930407,-0.0033661823,-0.32094488,0.41928136,-0.48330557,0.37185755,0.04447672,0.3319605,0.10848842,0.35190347,0.114974484,-0.08978895,-0.31066892,-0.06865385,-0.029613016,0.36245593,-0.4402831,0.11104924,-0.076711155,-0.2736133,-0.09284257,-0.4556368,-0.25022015,-0.6385911,0.34541863,-0.76406294,0.36364162,0.04793903,-0.26354995,0.51054335,-0.21962428,0.2304453,-0.3258892,-0.012602258,0.13238995,0.020368882,0.1076292,-0.30949312,-0.12310596,-0.10736658,-0.54240835,0.06825514,-0.34231907,-0.20631857,-0.22807267,0.031145705,-0.28273928,-0.12076382,-0.061801057,0.424043,-0.55109847,-0.015984686,0.0929405,-0.12279649,0.35534278,-0.4728735,-0.17223594,-0.13416764,0.17312641,-0.32651553,-0.1910461,0.26749372,0.2891282,0.4890186,-0.18076637,-0.075268276,-0.42362192,0.03603119,0.10864694,0.44806066,-0.14184949,-0.5496952,0.008433302,-0.119901165,0.2117529,0.105342075,0.22078072,-0.19726877,-0.12136277,0.10461128,-0.23307796,0.32930967,0.44025618,-0.37106958,-0.3502039,0.39069477,0.6016716,0.10853281,-0.05819233,-0.12614778,-0.0019349098,-0.4786247,-0.15421107,0.13470554,-0.22356321,0.4366851,-0.048849624,0.14086252,0.68320984,-0.29604965,0.1563502,0.027212283,-0.050698176,-0.050993647,-0.22578636,-0.36251214,0.14544824,-0.33589974,0.065204695,-0.1832161,0.7138172,0.14724733,-0.8198378,0.46879488,-0.4440986,0.1249767,-0.073789276,0.5416035,0.6212524,0.48710364,0.2951107,0.52571255,-0.52907366,0.06452446,-0.10788288,-0.33512545,0.16181925,-0.1947449,-0.008943256,-0.48847097,-0.021962786,0.19723123,-0.27144778,0.21262808,0.26985252,-0.55114746,-0.034477178,0.05838022,0.7066914,-0.31954917,-0.04004299,0.66080266,0.9858348,0.80964255,0.02136246,0.9933701,0.29769897,-0.30462012,0.35576832,-0.5580161,-0.698203,0.24706252,0.3904193,-0.26935062,0.43841752,0.076874286,0.010457941,0.24860236,-0.22937585,0.08254752,-0.14400263,0.086887866,0.046514224,-0.133624,-0.33516148,-0.31429157,-0.09308198,0.025322856,0.102646686,0.2948164,-0.2654885,0.29528993,0.07593642,1.8958958,-0.06904671,0.10139693,0.026158722,0.5268253,0.13384432,-0.18134978,-0.0865307,0.40415943,0.3231854,-0.010674343,-0.6228542,0.21934459,-0.07288299,-0.556397,-0.043346517,-0.38523585,0.019675542,-0.027056165,-0.41233927,-0.032556485,-0.08574215,-0.34345138,0.43928662,-2.8515074,-0.12323789,-0.0416488,0.31227702,-0.36972153,-0.38756612,-0.12817578,-0.41586643,0.22304726,0.37859645,0.4526693,-0.76413804,0.1770911,0.41950214,-0.43952566,-0.10412369,-0.51305807,-0.18949969,-0.030587418,0.20911212,0.047697432,-0.0694903,0.08604036,0.07768781,0.47292697,-0.018267225,0.040081467,0.15063897,0.39656964,0.057039283,0.42102614,-0.0456809,0.35478225,-0.18005866,-0.12886314,0.3785879,-0.46068648,0.1912765,-0.011549822,0.110718586,0.2949603,-0.37153092,-0.8887024,-0.68053406,-0.23378658,1.2096263,-0.22687913,-0.43649295,0.2281425,-0.2401919,-0.32768828,-0.15670091,0.46191165,-0.038370993,-0.17155242,-0.86915547,0.086669795,-0.12872487,0.2091406,0.09268635,0.087758206,-0.32843882,0.59178865,-0.0064039226,0.55023277,0.30981934,0.12551233,-0.2541566,-0.32094273,0.062150232,0.8494743,0.2411541,0.18245491,-0.2353941,-0.16443253,-0.23996633,-0.013250749,0.1107543,0.36907223,0.59659934,0.053862497,0.107991055,0.23920579,-0.09740862,0.013748421,-0.21041423,-0.25294894,-0.053573046,0.035827875,0.59602445,0.5933854,-0.3012532,0.38963354,-0.032155316,0.13472182,-0.17153317,-0.44816077,0.5391309,0.8053616,-0.08506659,-0.1963992,0.55528206,0.44084072,-0.39432374,0.42507216,-0.65163887,-0.15227176,0.5065031,-0.26818287,-0.3483668,0.17429687,-0.3020786,0.20581713,-0.85906225,0.20632957,-0.22026332,-0.19233035,-0.47896814,-0.04962462,-2.965305,0.05129439,-0.07322886,-0.32431927,-0.014939936,-0.0457824,0.15137815,-0.68463117,-0.46489826,0.13480756,0.07220246,0.55156296,0.012217129,0.092368215,-0.29555458,-0.2915633,-0.27511975,0.104854375,0.016350504,0.39299732,0.07951956,-0.42081764,-0.14246188,-0.108864926,-0.31891492,0.06751914,-0.41592675,-0.5899133,-0.09564883,-0.50621736,-0.255864,0.59413797,-0.28655714,0.009639531,-0.072628975,-0.022543278,-0.19964594,0.30569503,0.13805081,0.10827314,0.0320297,-0.045498528,0.08143756,-0.33154428,0.4031804,0.06924748,0.23276795,0.37519833,-0.20527712,0.17261535,0.52013934,0.71375257,0.021798754,0.7164875,0.48248863,-0.10608717,0.24552749,-0.4388315,-0.15046555,-0.54838455,-0.31679666,-0.121491216,-0.33414438,-0.4837471,-0.124422185,-0.3776301,-0.726588,0.4088782,-0.13094571,0.20405401,-0.024301311,0.30326098,0.5595557,-0.11283469,0.010339325,-0.03657768,-0.13136502,-0.5749846,-0.27084216,-0.6403155,-0.45148343,0.34983927,0.89844704,-0.10943446,-0.03422386,0.048128698,-0.11439856,-0.0011019906,-0.05137334,0.023596514,0.14585263,0.34451395,-0.096857786,-0.50850165,0.44908032,0.12059531,-0.25907248,-0.5734663,0.1285597,0.55150425,-0.5317703,0.5158151,0.20015389,0.03150216,0.089614086,-0.44086948,-0.2714061,-0.0040705204,-0.13388847,0.3916257,0.2095671,-0.677525,0.3703944,0.44112974,-0.23860508,-0.5648707,0.48113325,-0.02293874,-0.2774019,-0.1619166,0.32382807,0.12834075,-0.0023869157,-0.023925578,0.2041594,-0.54179597,0.17244036,0.2787438,-0.03196903,0.3491226,-0.09051822,-0.05593811,-0.71163666,0.0996035,-0.40220478,-0.2484058,0.26816496,0.12416907,0.27319184,0.15000436,0.15516454,0.41006953,-0.28535542,0.010998539,0.09272087,-0.1385835,0.34066164,0.3875204,0.420029,-0.3761884,0.44330847,-0.034874253,-0.0111031495,-0.01842045,-0.016221635,0.48170382,0.14484215,0.19667652,0.105635785,-0.42231804,0.33641207,0.6547386,0.28344172,0.33345142,-0.001035738,-0.18430886,0.27906454,0.13341744,0.1496511,-0.0051676035,-0.43642232,-0.022709308,0.07051318,0.09876918,0.32199726,0.067667454,0.2649804,-0.17863421,-0.29242542,0.12327651,0.31808227,-0.10045255,-0.93599254,0.23425776,0.1562151,0.7555878,0.49484053,-0.03266505,0.035049286,0.5972716,-0.24334869,0.16219005,0.35407597,-0.043177128,-0.7165413,0.5067681,-0.54792005,0.5169957,-0.0065203826,0.0074227136,-0.06776716,-0.18704662,0.3580536,0.5959286,-0.1504757,0.02472644,0.006539178,-0.27095243,0.103219636,-0.3929966,0.12283961,-0.5437423,-0.08406026,0.6536373,0.34421575,0.36520654,-0.09422276,0.006038326,0.12332212,-0.062225834,0.10689971,0.044822566,0.20134917,0.077294014,-0.6021036,-0.15229605,0.47273,-0.009209394,0.10788686,-0.0569961,-0.2670164,0.25569206,-0.15071446,-0.2818903,-0.09768221,-0.56059974,-0.023100447,-0.26617864,-0.32331836,0.44421807,0.100439675,0.22323425,0.1706738,0.04912295,-0.26497024,0.33274317,0.28326443,0.79783064,-0.083492175,-0.21239497,-0.4713663,0.2650766,0.20714131,-0.15323777,-0.21676664,-0.12170402,-0.10031442,-0.43519402,0.36867175,0.031295374,-0.28016788,-0.044076275,-0.10434297,0.1442537,0.53345853,-0.18839951,-0.2605895,-0.25447407,-0.17215373,-0.27854052,-0.1791634,-0.12011981,0.31184137,0.21592419,-0.049311146,-0.14167532,-0.035982568,-0.0008346081,0.33349985,0.047715798,0.37798107,0.3763321,0.066698484,-0.32023576,-0.14285943,0.19795264,0.34616655,-0.033790655,-0.11227246,-0.40990308,-0.44001496,-0.33699366,0.25497884,-0.1252696,0.31565,0.064853534,-0.3775427,0.72050244,-0.053696092,0.9948027,-0.053009074,-0.28090152,0.121537425,0.4756259,0.068905085,-0.044904593,-0.34651458,0.92783296,0.51368433,-0.0366678,-0.1529705,-0.25817767,-0.110162355,0.075323865,-0.2356347,-0.05516041,-0.034571268,-0.78669876,-0.15999158,0.28282663,0.2980397,0.17384318,-0.04506452,0.12180747,0.15639986,0.10746429,0.33753502,-0.3282423,-0.21614113,0.31817982,0.24238695,0.13277534,0.086729005,-0.4183219,0.29783782,-0.5180337,0.06259544,-0.28141063,0.0790802,-0.12648931,-0.36072528,0.2306808,0.037944753,0.25941747,-0.28866777,-0.4467501,-0.30332428,0.46037,0.008887267,0.22014008,0.45645636,-0.25223827,0.13175668,0.069509335,0.4720781,0.9956886,-0.117507316,0.030500496,0.3938716,-0.31295094,-0.6513949,0.3646858,-0.22425693,0.31771106,-0.08651468,-0.07520021,-0.5512536,0.21877731,0.2193312,-0.019239118,0.04533035,-0.5307178,-0.32937375,0.24804278,-0.46261463,-0.19790073,-0.3373027,0.048713025,0.701821,-0.36205283,-0.21694906,0.0666547,0.26562884,-0.23956896,-0.43559054,-0.08179858,-0.30307397,0.269322,0.14234802,-0.30875942,-0.038898468,0.095926724,-0.24818635,0.1873394,0.15291952,-0.4443043,0.04734587,-0.3886613,0.050016984,0.8912079,-0.09153037,0.11909221,-0.51233697,-0.45615712,-0.9934617,-0.3432814,0.5646578,-0.0379322,-0.03880613,-0.5737598,0.054364145,-0.076579615,-0.11517052,-0.07355148,-0.39419183,0.49051887,0.10474825,0.28039372,-0.048863087,-0.66173774,0.026420971,0.13896376,-0.12531088,-0.6393932,0.45866823,0.0053327004,0.8580247,0.06922313,0.1480309,0.31805116,-0.54064,-0.13214971,-0.27012682,-0.30176607,-0.5454509,0.12671691 +531,0.38451442,-0.22912131,-0.4120676,0.0051033497,-0.2723107,0.13728738,-0.19350107,0.40037158,0.04868893,-0.3271786,-0.34832254,-0.23117682,-0.09249425,0.24982065,-0.1796277,-0.24556652,-0.14195497,0.1116268,-0.6133363,0.7772437,-0.24150953,0.1846226,0.07845459,0.349026,0.56231105,0.34712696,0.0128827095,0.059888594,-0.07190984,-0.18036194,-0.09029868,-0.01263423,-0.44660476,0.23007794,-0.33327484,-0.30468968,-0.14790025,-0.5534443,-0.40368646,-0.7879623,0.48768583,-0.92217076,0.5127223,-0.10249814,-0.18971278,0.32237193,0.3239916,0.4580649,-0.083050504,-0.23808973,0.23107643,0.027887743,0.0027758598,-0.11063998,-0.23291388,-0.29357606,-0.65329,-0.015784467,-0.3513617,-0.1585705,-0.3213494,0.15791318,-0.2371966,0.09429715,-0.08900988,0.49959967,-0.48798472,0.1884696,0.16794991,-0.05903607,0.19499345,-0.640777,-0.10629061,-0.1002954,0.26984656,-0.051415052,-0.050530538,0.3901178,0.18022975,0.27815625,0.036095854,-0.07292471,-0.22216678,-0.08569781,0.20174739,0.42404234,-0.032930065,-0.20695862,-0.09234211,0.077451356,0.3120233,0.2554724,0.2464438,-0.172723,-0.16765413,-0.10271914,-0.09351371,0.3872866,0.40154165,-0.31774828,-0.2304986,0.45623732,0.72181094,0.39027327,-0.16579264,-0.10262781,-0.06291194,-0.45813975,-0.05991841,0.07526692,-0.23052505,0.47358528,-0.08395777,0.30078313,0.59150547,-0.08884787,0.023949917,0.055674236,0.07297225,-0.28517953,-0.18394588,-0.2988308,0.16285841,-0.32093576,0.23305477,-0.11778324,0.61356276,0.0822988,-0.6274124,0.30112842,-0.6376893,0.17141543,0.0750531,0.39646137,0.65647,0.41235942,0.31366622,0.6864847,-0.21286711,-0.04079107,-0.1812328,-0.27811202,0.027899317,-0.16279088,-0.078411244,-0.50289226,0.06568034,-0.027447548,-0.17758434,-0.060001127,0.46927872,-0.47269762,0.027250059,-0.033060454,0.83157176,-0.19608808,-0.05357278,0.8610446,0.9617091,1.0754783,0.01436369,0.95875156,0.0469486,-0.18247803,0.24227217,-0.3113976,-0.61949635,0.29477307,0.48204416,-0.2649053,0.4323608,0.03799783,0.04403523,0.19794528,-0.37173712,0.04947981,-0.16647092,0.028147634,0.17591238,0.021013642,-0.40264797,-0.3262515,-0.033806585,0.045617413,0.15317042,0.15543877,-0.18876056,0.3559432,0.11196886,1.6745857,-0.03979645,0.11393415,0.22075526,0.43005645,0.105262965,-0.186132,-0.19604556,0.31178606,0.2801737,0.13101022,-0.5844612,0.12249541,-0.31034496,-0.3619117,-0.07157412,-0.41892287,-0.18456681,0.005860158,-0.28783026,-0.124327324,-0.29698378,-0.40665302,0.37768242,-2.9048107,-0.075870804,-0.20348834,0.31973222,-0.31551287,-0.31430808,-0.032212805,-0.46881694,0.44148862,0.28853193,0.4446188,-0.44643804,0.33669567,0.4594274,-0.7862787,-0.010174662,-0.603855,-0.027886685,0.059227057,0.4355834,-0.15318875,0.066711895,0.05476357,0.13083455,0.39279196,0.16304497,0.15319188,0.44971055,0.3585196,-0.0040305974,0.59054416,-0.05489309,0.35447592,-0.21688086,-0.06942418,0.35026494,-0.29762954,0.45189843,-0.18581297,0.08939649,0.5156509,-0.6395427,-0.67733186,-0.52971715,-0.34373215,1.2153848,-0.3202256,-0.42416012,0.21689695,-0.38366997,-0.23293614,-0.14829381,0.49061933,-0.14367057,-0.15152134,-0.6724691,-0.06322834,-0.08915739,0.08473872,-0.06740678,-0.04401844,-0.44527277,0.7851099,-0.02760812,0.5066779,0.2341895,0.1766328,-0.24354927,-0.44941577,0.102180496,0.6145531,0.52308816,-0.07819516,-0.2202219,-0.2025365,-0.46440184,-0.1383834,0.1481191,0.53451,0.44442898,-0.10079051,0.12089523,0.23293978,-0.016107695,0.09864157,-0.27301127,-0.17270856,-0.18966807,-0.12246934,0.5278772,0.55546534,-0.043973286,0.3915366,-0.0076789046,0.19903399,-0.05155929,-0.43649408,0.38285998,1.0291483,-0.20663717,-0.28937122,0.4997246,0.49922836,-0.095501885,0.39583486,-0.4485025,-0.1297204,0.49762994,-0.18491836,-0.52593637,0.14369126,-0.2733965,0.092975505,-0.6816719,0.07090418,-0.32890046,-0.4489938,-0.49198705,-0.03244262,-2.6909902,0.1997114,-0.22223641,-0.31593996,-0.20429493,-0.26784247,0.13346083,-0.5205931,-0.74022734,0.10459896,-0.024469035,0.7476031,-0.16572623,0.09893784,-0.111353904,-0.3171551,-0.5040371,0.10292607,0.17270851,0.48149505,-0.22569636,-0.35260668,-0.0066010356,-0.12445373,-0.431714,-0.05453132,-0.4908375,-0.27331343,-0.2070567,-0.45266002,-0.27862123,0.5405051,-0.22694273,0.12836237,-0.20043509,-0.05750947,-0.002043438,0.2409798,0.1117202,0.15200955,0.16745421,-0.07785211,0.033529177,-0.23591141,0.4084547,0.06536665,0.2705221,0.29206753,-0.14563054,0.48662817,0.22913072,0.5650631,-0.13740991,0.8830263,0.37351578,-0.10385704,0.24951622,-0.12688692,-0.25191846,-0.5284082,-0.040019803,0.011422913,-0.3194125,-0.60701066,-0.21646158,-0.32319462,-0.7339354,0.46559212,0.04856634,0.42129382,-0.081453085,0.14398544,0.60104537,-0.14321724,-0.028732311,0.027421588,-0.10309114,-0.5271026,-0.26925468,-0.5593267,-0.47169542,0.090848155,0.9813882,-0.21768995,-0.026257379,0.016415948,-0.42336166,0.05209573,0.16524537,-0.13155,0.15371273,0.3635093,-0.12223085,-0.6444117,0.5266067,0.11497761,-0.11250194,-0.4972655,0.27900696,0.5274279,-0.45685798,0.41580746,0.17517394,-0.06449894,-0.40586936,-0.36833766,0.04687099,-0.14631823,-0.38576502,0.3478075,0.27996063,-0.6333738,0.23965698,0.13048328,-0.11530604,-0.8057335,0.62500274,0.009913338,-0.1747816,-0.06194573,0.33888534,0.17114067,0.07321683,-0.29240692,0.24184094,-0.39979076,0.2253155,0.14373954,-0.07702633,0.09824824,-0.22005422,-0.06316783,-0.6976134,0.20292956,-0.45248362,-0.20674899,0.39956748,0.17946559,0.07429843,0.1312234,0.26357633,0.3531495,-0.18251851,0.12516245,-0.10049868,-0.14223416,0.2752106,0.4562359,0.52110124,-0.51189405,0.5667346,0.10875599,-0.12073615,0.15855257,-0.022304932,0.31598994,-0.040910535,0.36689964,0.1587916,-0.26399043,0.19379759,0.44476023,0.25127524,0.40785334,0.12711893,-0.22519556,0.2424851,-0.020004774,0.29757357,-0.1726962,-0.7760048,0.050790954,-0.17576332,-0.006689489,0.42528522,0.11089594,0.17642742,-0.12565418,-0.27486506,-0.017784135,0.08790623,-0.181703,-1.0172242,0.32748762,0.2226622,0.8344374,0.48944822,-0.101404294,-0.040087834,0.80652505,-0.2187006,0.020347845,0.38919735,0.08359609,-0.58448434,0.53354865,-0.65446216,0.54141337,0.039652992,-0.16201933,0.015926171,0.06324487,0.38182485,0.74555135,-0.25340423,-0.07361223,-0.079375155,-0.3132626,0.23029505,-0.26296356,0.07688745,-0.6536752,-0.3476806,0.5483973,0.48380837,0.39077646,-0.061434396,0.04457328,-0.022792079,-0.1858681,0.31598055,0.22343366,0.024894655,-0.11084868,-0.6988575,-0.14787151,0.35394594,-0.20464954,0.18131712,0.10738205,-0.21078472,0.16569851,-0.10784519,0.103019305,-0.06464643,-0.81658643,0.016178926,-0.18445517,-0.34890592,0.25828475,-0.081935935,0.39278945,0.21244766,-0.018164687,-0.2400628,0.25497472,0.025861586,0.7073709,-0.04221126,-0.13598819,-0.26175842,0.24756299,0.10224519,-0.15095115,0.03117278,-0.0689624,-0.0007068356,-0.6774488,0.55143625,0.008313179,-0.37234586,0.009211158,-0.12858982,4.972418e-05,0.59941155,-0.036438607,-0.11054944,-0.20705572,-0.2339974,-0.34996003,-0.31474656,-0.067489006,0.175283,0.19735752,-0.049004447,-0.16428988,0.029407978,-0.08460761,0.46499607,-0.023872351,0.49352965,0.3061215,-0.036170542,-0.3475081,-0.17768279,0.098134756,0.4048987,0.059972513,-0.055605765,-0.23762989,-0.43664104,-0.3536788,0.3588949,0.004201887,0.4808551,0.12513512,-0.11964246,0.58591205,-0.1444568,1.1316231,0.10280406,-0.35380822,0.10504864,0.5876607,-0.013239384,-0.28377548,-0.25179768,0.80796224,0.40503556,-0.00087288616,-0.117676,-0.40212968,0.01493994,0.12426688,-0.2035357,-0.07804171,-0.036323536,-0.48826426,-0.23250729,0.04283445,0.22397305,0.24732514,-0.14636874,0.004423173,0.30178696,-0.103850685,0.43613917,-0.18742631,-0.41840804,0.4386085,0.035810925,-0.0692958,0.09319995,-0.51575166,0.48729312,-0.47365946,0.115238756,-0.106589414,0.22913964,-0.23238482,-0.30520502,0.24321993,-0.04464469,0.42439142,-0.31290588,-0.48680156,-0.34980997,0.44748682,0.16248083,0.14563455,0.53684276,-0.29701152,0.031181427,0.019898552,0.50678796,0.8139259,-0.051488716,0.08310942,0.2954849,-0.45821625,-0.6089315,0.4165226,-0.38458893,0.2633879,0.12832968,-0.06863859,-0.39638153,0.203774,0.21044649,0.075928465,-0.04332743,-0.7302349,-0.30885828,0.19578432,-0.1608621,-0.06998941,-0.3616597,0.009835561,0.5704781,-0.23210195,-0.38824043,0.036449306,-0.022930019,-0.06552999,-0.53935397,-0.07670857,-0.317154,0.29138896,-0.19466496,-0.27331442,-0.2229313,0.18580271,-0.41869804,0.136691,-0.13269398,-0.35596895,0.027184209,-0.36177298,-0.02116838,0.8405291,-0.3194846,0.032440808,-0.27421156,-0.46384528,-0.7114867,-0.32290745,0.13345142,0.13243014,0.11171617,-0.4940538,0.038499847,-0.293056,-0.057788435,-0.026607621,-0.4219708,0.37301022,0.1628065,0.32832012,-0.030159187,-0.6851539,0.32519934,0.011662317,-0.07488518,-0.5273293,0.48555508,-0.029389897,0.5605408,0.11073222,0.1386485,0.110132344,-0.50503916,-0.10811723,-0.07964236,-0.04905549,-0.5525917,0.12518866 +532,0.3820969,-0.088073574,-0.5793608,-0.061827358,-0.07225851,-0.0077517508,-0.22685553,0.55981505,0.2183953,-0.42226565,-0.053866245,-0.18005185,-0.18630987,0.4918951,-0.18309686,-0.6819814,-0.046354655,0.000118923184,-0.47278067,0.6597842,-0.2700864,0.23608041,-0.11788319,0.34120214,0.33288518,0.44748646,0.09532474,-0.07130203,-0.15068556,0.0029317776,-0.021108676,-0.02608375,-0.6153705,0.09977843,-0.2295256,-0.22400256,-0.050035994,-0.4024643,-0.4424393,-0.8104376,0.52382624,-0.70431507,0.4950709,-0.15628478,-0.1504769,0.12414264,0.3255392,0.49455833,-0.2737632,-0.11674843,0.18192032,-0.031295024,0.0146857025,-0.11750098,-0.27755865,-0.3047283,-0.5072533,-0.0009602785,-0.5466208,-0.17661135,-0.28514707,0.06883911,-0.39540675,0.114421606,-0.21815681,0.44285005,-0.42073393,-0.095839135,0.25549558,-0.20718518,0.16723807,-0.6482728,-0.07781479,-0.06180749,0.23090926,-0.06203403,0.083808206,0.58721095,0.012009605,0.35661882,0.11605073,-0.11943548,-0.34603855,-0.13197869,0.08850599,0.39985734,-0.07481059,-0.4996216,-0.021753248,0.13548718,0.22002415,0.24361105,0.07467014,-0.18781596,-0.050393123,0.03232095,-0.16029003,0.35801136,0.563551,-0.17030008,-0.17071046,0.23872334,0.6787743,0.43174362,-0.104217194,0.025018184,-0.047067594,-0.38032562,-0.20982672,0.14769341,-0.09427571,0.42851058,0.00016978482,0.21944323,0.71355814,-0.23413788,0.14414598,-0.20520504,-0.059119105,-0.038411703,-0.3585287,-0.15289226,0.14613758,-0.45715123,0.3526107,-0.16634175,0.6950501,0.23994507,-0.53510827,0.40430278,-0.5594606,0.10749598,0.17022328,0.47987634,0.54426986,0.44859582,0.2782686,0.7751447,-0.41850427,0.15921988,-0.24349871,-0.3879226,-0.011316367,-0.12286695,0.111426815,-0.3382489,0.11908548,-0.008582557,-0.1503625,-0.0071307025,0.25147727,-0.37522376,0.02502543,-0.12974282,1.0481355,-0.23483826,0.020733627,0.78575253,0.92751163,1.0326531,-0.054846484,1.0307711,0.19428025,-0.31395277,0.30006334,-0.29519948,-0.7715538,0.26649016,0.30754262,-0.13241759,0.38712266,0.10561561,-0.07168508,0.28576082,-0.39084443,0.11797669,-0.17114058,0.3278052,0.22556342,-0.054772984,-0.27769443,-0.26203385,-0.07248165,-0.098583184,0.17468247,0.15893528,-0.06114203,0.36190504,-0.04117233,1.9271721,-0.007333215,0.1013124,0.23950627,0.7627947,0.20731324,0.09763401,-0.20125493,0.21726602,0.32251665,0.0977752,-0.56655705,0.10397147,-0.4253206,-0.5007806,0.006588155,-0.3507413,-0.11417234,-0.18944542,-0.37426907,-0.113614894,-0.16675453,-0.21670271,0.3806774,-2.613446,-0.097498335,-0.042102143,0.28172618,-0.46553692,-0.33406267,-0.13802367,-0.49364248,0.51440394,0.27026272,0.45515078,-0.5351471,0.36551753,0.45648187,-0.5096778,-0.13438174,-0.47891137,-0.002643445,0.049485724,0.41791207,-0.18385817,-0.05464101,-0.022782546,0.18188652,0.47651485,0.046780646,-0.06535123,0.3511774,0.32622442,-0.03752717,0.5079734,-0.07828857,0.36292145,-0.47280538,0.027952898,0.3427032,-0.44402263,0.360635,-0.14414527,0.105669476,0.35953072,-0.54527056,-0.78206384,-0.46743843,-0.21676953,1.1784885,-0.22487354,-0.30451897,0.21800779,-0.36192197,-0.046034332,-0.21124716,0.51495147,-0.13596712,-0.08614957,-0.5979719,-0.04183153,-0.17316829,0.20204605,0.057443567,0.13780187,-0.29921913,0.68660843,-0.09003343,0.4302542,0.31010565,0.14729923,-0.20162958,-0.50862163,0.18648429,0.6715842,0.33636686,0.06196626,-0.14622228,-0.1874018,-0.33580476,-0.3218861,0.09482949,0.56253356,0.79877734,-0.0043620467,-0.062318258,0.28457502,-0.11226422,0.07622392,-0.109895155,-0.3512202,-0.19582948,-0.07375871,0.51641905,0.52362806,-0.2535986,0.42565066,-0.11973627,0.27377662,-0.15914348,-0.25122064,0.44206536,0.7170327,-0.26482168,-0.21526346,0.21818672,0.378814,-0.24867047,0.45722216,-0.622829,-0.25389516,0.6418078,-0.15459843,-0.5006903,0.20698348,-0.21701524,-0.03631486,-0.7693129,0.08759741,-0.46674055,-0.1977021,-0.56180024,-0.22519669,-3.0392113,-0.040971972,-0.297244,-0.2731575,-0.27030477,-0.014659218,0.098073706,-0.62313306,-0.7338054,0.058029197,0.030712523,0.63632333,-0.06509123,0.13224591,-0.23815273,-0.14945598,-0.49708667,0.05319996,0.18101232,0.4135119,-0.01582137,-0.35032994,-0.17168526,-0.21654005,-0.53750294,0.14006029,-0.4298349,-0.26629573,-0.31108874,-0.63414055,-0.2502905,0.7016183,-0.30720875,0.07201998,-0.08891097,-0.040722728,-0.04396362,0.3550963,0.27765483,0.102863386,0.1411747,-0.13969061,0.1192691,-0.27154133,0.29723972,0.13968916,0.51709825,0.2761596,-0.16963361,0.18372224,0.42964408,0.8804442,0.036601044,0.64014524,0.23475161,-0.07592262,0.5130797,-0.50005466,-0.33799165,-0.45593512,-0.26932546,0.12306671,-0.15099595,-0.5585602,-0.23700124,-0.48176,-0.7462581,0.46115252,-0.0043763616,0.2716374,0.058381774,0.0690809,0.49016997,-0.079750456,0.06465104,0.13119473,-0.0035997361,-0.5577,-0.22890504,-0.59340125,-0.6508402,0.153274,0.90268695,-0.18648118,-0.25484648,0.04441581,-0.37903562,0.11838824,0.011986201,-0.05062574,0.08374482,0.33430877,0.00957065,-0.64219356,0.5637011,-0.041872792,-0.25807568,-0.5285435,0.18775466,0.5760157,-0.7129056,0.3940607,0.14004748,0.078977264,-0.15778205,-0.4184922,0.019470425,-0.078218736,-0.09684394,0.20080137,0.024698235,-0.5522025,0.30556193,0.28827986,-0.35755688,-0.713233,0.421725,0.012685581,-0.20837933,-0.06698772,0.36359635,0.21068461,-0.022601627,-0.3008121,0.14557037,-0.46998948,0.12084135,0.2915612,-0.050676566,0.36922127,-0.092262894,-0.21689278,-0.6737157,0.2585283,-0.4484783,-0.27880973,0.40904495,0.1616672,-0.0073615075,-0.10671607,0.12608194,0.28587568,-0.24610987,0.09708818,-0.05743162,-0.19064493,0.44186744,0.35789368,0.5322842,-0.5377003,0.6228058,-0.06907807,0.031368382,0.4014665,0.04474932,0.3475141,0.04098988,0.2603094,0.18062595,-0.28351593,0.11008488,0.6662636,0.2548567,0.35202286,0.08443562,-0.25186926,0.297135,0.16477509,0.056221765,0.19482626,-0.561824,0.08793828,0.126157,0.052371185,0.5437838,0.2052543,0.26731464,0.016517902,-0.30709985,0.012947952,0.30655816,-0.40731537,-1.2751864,0.43072632,0.11093124,0.83036524,0.4258531,0.03373867,0.1573413,0.67917067,-0.0065622567,0.13793232,0.42718518,-0.0048842034,-0.57419115,0.5725982,-0.5209876,0.6065622,0.17998269,0.031422924,0.06525864,0.22921608,0.46780547,0.6805441,-0.19295806,-0.1697097,-0.120248675,-0.1861339,0.012291924,-0.4342782,0.064116694,-0.3632597,-0.3653317,0.35991818,0.4000184,0.23075594,-0.098808765,0.01794465,-0.00609897,-0.1463447,0.32876962,-0.1712978,0.041318152,-0.0070347786,-0.5538344,-0.4868167,0.445443,-0.18788053,0.20153375,-0.07968361,-0.11169513,0.33745876,-0.046024267,0.09320072,-0.113003224,-0.6936963,0.2614745,-0.3218431,-0.32302862,0.19921528,-0.033113636,0.4500661,0.21437404,-0.014674308,-0.46797925,0.51511383,-0.012887995,0.7504503,-0.37626633,-0.4037213,-0.5068785,0.12855585,0.27132717,-0.28908154,0.07717698,-0.17067914,-0.12955269,-0.4628006,0.38633072,-0.16821732,-0.18118912,0.06711295,-0.3358088,-0.13518216,0.63206214,-0.28103822,-0.08110391,-0.20826991,-0.19390734,-0.13198216,-0.39454982,-0.12383927,0.17311804,0.22282681,-0.10514658,-0.124366425,-0.11611791,0.06523564,0.56015,-0.04311881,0.32845223,0.26432112,0.11791755,-0.4128771,-0.19005278,0.23507851,0.4219301,0.28608173,0.01644746,-0.3757218,-0.42240956,-0.3344118,0.37025866,-0.21193379,0.3051134,0.2151231,-0.38955978,0.6589552,0.12878689,1.1655457,0.108304895,-0.30248848,0.21932861,0.5868586,0.049500704,-0.022223437,-0.45700207,0.93555486,0.4629549,-0.16279794,-0.12695633,-0.25552592,-0.08329641,0.14215094,-0.3086677,-0.029412726,-0.09530118,-0.4916124,-0.26942444,0.21116047,0.21083727,0.103882395,-0.13219768,-0.2322052,0.037856262,0.044379298,0.53589493,-0.32608262,-0.31605992,0.3830363,-0.044404354,0.02039365,0.05739343,-0.5534676,0.52220565,-0.48405486,0.18834049,-0.31982085,0.17598289,-0.13486268,-0.26979822,0.22872803,-0.046627782,0.43483263,-0.37327424,-0.42812642,-0.32306376,0.38762406,0.18447848,0.22726528,0.620107,-0.24429867,-0.0076429048,0.011424422,0.58880603,0.8177354,-0.063547954,-0.019198166,0.31170732,-0.3435845,-0.548966,0.2871248,-0.2630906,0.17524329,-0.13267362,-0.106529795,-0.56463695,0.25890106,0.1520353,-0.15789977,-0.08487972,-0.7837884,-0.3781883,0.10068281,-0.27274936,-0.314779,-0.5165736,0.03857998,0.7668648,-0.29353616,-0.3221098,0.27986076,0.10168077,-0.05915629,-0.56283927,-0.131665,-0.2383309,0.33403715,0.10050027,-0.27659643,-0.13550477,0.27968735,-0.48661545,0.1551917,-0.024632962,-0.43903705,-0.115376435,-0.114144914,-0.0904587,0.81964505,-0.13357607,0.051888693,-0.5166939,-0.3922862,-0.90544796,-0.36296654,0.45018014,0.074843384,0.057582345,-0.66141814,-0.058127474,-0.14651212,0.11077838,-0.0067781,-0.4801492,0.32140383,0.19365433,0.36860266,-0.30881748,-0.6791235,0.21328619,0.19444942,-0.1990111,-0.57437515,0.47803268,-0.067816906,0.7500679,0.05433382,-0.048538376,0.27566776,-0.4439266,0.0071169455,-0.23932555,-0.16818307,-0.47740585,0.27210522 +533,0.5388405,-0.075732134,-0.4764496,0.007016465,-0.32325414,-0.109426044,-0.27000263,0.16492535,0.3157039,-0.113277525,-0.077779435,0.20048194,-0.15334095,0.24671477,-0.17374921,-0.6435368,0.016150564,0.22771466,-0.78536886,0.6888378,-0.3384409,0.46726775,0.007326757,0.33318058,0.0062987655,0.19966893,0.18106802,0.082417965,-0.08172019,-0.40350756,-0.051146436,-0.04159929,-0.7604533,0.122224726,-0.30137148,-0.30021736,-0.09551209,-0.5825315,-0.27449286,-0.80718565,0.29654595,-0.62248784,0.5730939,-0.11471126,-0.31750128,-0.08381504,0.11714617,0.31603715,-0.16327797,-0.12895481,0.27852836,-0.31140438,-0.056533486,-0.25293356,0.2623873,-0.22555894,-0.48701033,-0.060096722,-0.52323574,-0.069963686,-0.106180705,0.26068017,-0.4924581,-0.06810358,-0.3686925,0.3910657,-0.23616727,0.09986061,0.15867043,-0.23812938,0.088244855,-0.6975427,0.104463704,0.043997813,0.61965245,0.035550714,-0.07730386,0.54871887,0.046445712,0.33595785,0.12791218,-0.397163,-0.054352075,-0.117262565,-0.06634109,0.50317353,-0.32949418,-0.18111886,-0.12192479,0.18975289,0.57265586,0.2259124,0.073745206,0.17857255,0.06485763,-0.30768332,-0.017987708,0.7135572,0.5874261,-0.108998,-0.120851465,0.1834327,0.65608525,0.6123852,-0.08779774,-0.1288641,-0.11180731,-0.4521428,-0.14580405,0.037272464,0.012501205,0.32173154,-0.11107675,0.29830074,0.6729899,-0.11135411,-0.0697053,0.33057168,0.10260784,0.33468518,-0.05347131,-0.24024232,0.4397703,-0.75129825,0.14449733,-0.47585824,0.54595315,0.15419614,-0.7967711,0.39813003,-0.5203053,0.19308393,0.18142295,0.6496803,0.80592984,0.57467806,0.271149,0.829288,-0.34697947,0.21998377,0.061574757,-0.23853649,-0.03175093,-0.15660258,0.2320563,-0.41538915,-0.117238574,-0.35894606,0.032480616,0.06075452,0.109490074,-0.6462373,-0.41831768,0.07596731,0.7367337,-0.15810005,0.0756624,0.880364,1.1881894,1.0043426,-0.13366164,1.055265,0.016568413,-0.22853106,-0.25507924,-0.08081757,-0.5684135,0.2211235,0.36983028,-0.10588676,0.396407,-0.16465436,-0.22123636,0.21030836,-0.41346255,-0.26395866,0.032996383,0.39038578,-0.008305937,-0.03704716,-0.6037292,-0.23487872,-0.052479725,-0.0445123,0.13407107,0.39620385,-0.36175963,0.283325,-0.041884243,0.83349866,-0.042484034,0.14220822,0.09678468,0.4454358,0.30326062,-0.25638604,-0.065244265,0.23230113,0.44714704,0.04269721,-0.571657,0.24247587,-0.6676931,-0.2673428,-0.03999589,-0.33540976,-0.2714369,0.1081898,-0.17486073,-0.1844634,-0.080958106,-0.103977345,0.27102166,-2.8445394,-0.24047899,-0.015858674,0.4034734,-0.30328414,-0.25270948,-0.12852913,-0.5071723,0.25653085,0.05962189,0.5794241,-0.5087347,0.40637055,0.46135953,-0.6939295,-0.06691112,-0.58464503,-0.06247439,0.21326743,0.48469058,0.06989134,-0.21786149,0.0012392203,0.24663927,0.6508688,0.31023958,0.11443577,0.48487842,0.5206325,-0.045761067,0.3386213,-0.1306764,0.553158,-0.51786804,-0.100726545,0.3467209,-0.4358578,0.28739086,-0.37367523,-0.019470075,0.55885357,-0.33614933,-0.91409284,-0.35367227,0.07120843,1.2300369,-0.19858612,-0.71323586,0.01656405,0.11068779,0.028056234,0.08552089,0.5354257,-0.0030870736,-0.088120885,-0.48018384,-0.13360757,-0.27361596,0.19263814,0.007363303,-0.07477323,-0.40848923,0.67366296,0.008958782,0.5869205,0.09277666,0.4214641,-0.2561599,-0.37604108,0.16633117,0.7932593,0.4922198,-0.033097297,-0.16427372,0.029292053,-0.09625413,-0.13191609,-0.10648817,0.906127,0.68392867,-0.127187,0.04337576,0.36408463,-0.0744121,0.19735956,-0.019527191,-0.3941795,-0.3846432,-0.19198422,0.63878983,0.84169227,0.06908996,0.4977051,0.06852742,-0.05142938,-0.16429152,-0.5321736,0.5962417,0.4465573,-0.35034204,0.13524334,0.41446522,0.41313732,-0.27977583,0.4500076,-0.6332106,-0.3956875,0.6956437,-0.13703506,-0.5752968,0.17349453,-0.20537055,0.12400669,-0.4284731,0.53376514,-0.6405113,-0.8328366,-0.6226842,0.008472954,-1.3576895,0.25299013,-0.26697883,0.017164016,-0.5409212,-0.06560323,0.035674635,-0.6565481,-0.6390656,0.17139399,0.28799814,0.7488113,-0.29911312,0.08493381,-0.28944382,-0.4817386,-0.21553159,0.20992716,0.30441806,0.2604359,-0.07624942,-0.07732294,-0.16420893,0.1820445,-0.31797215,0.09735918,-0.49441376,-0.49118948,-0.10280342,-0.4573743,-0.16012542,0.69328433,-0.32947412,0.12702248,-0.23826742,0.13017386,0.0895231,-0.08051099,-0.02190273,0.29756093,0.1436598,-0.31681207,0.20645057,-0.22110361,0.55805534,0.17646794,0.6274225,0.06364221,-0.13159733,-0.026857957,0.52565026,0.77889746,0.1106222,1.1297666,0.12384259,-0.10187993,0.315697,-0.2688744,-0.45600548,-0.5835714,-0.21646039,0.3690498,-0.41589454,-0.4128606,0.028692508,-0.33467317,-0.8675086,0.5935978,0.08750505,0.57384163,-0.22857885,0.5197485,0.4530588,-0.40081254,-0.080682136,-0.016865104,-0.13446192,-0.3068143,-0.04313776,-0.8049963,-0.3677212,-0.1397547,0.6746073,-0.3992546,0.16703485,0.16478913,-0.17146665,0.26389447,-0.24320333,0.04116005,-0.07430562,0.19947542,0.1099867,-0.4909723,0.31453183,-0.08120961,0.04880173,-0.4862026,0.31712225,0.6763933,-0.58305883,0.41647196,0.40190268,-0.24861081,-0.26317206,-0.7215872,0.13099241,0.27106825,-0.11559514,0.08635215,0.28498366,-0.7222037,0.41393456,0.22338672,-0.40007284,-0.72044563,0.4069914,0.04078434,-0.40031755,-0.10670337,0.34561822,0.059532207,-0.084194005,-0.06908773,0.30482554,-0.4246582,0.5334135,-0.097776115,-0.20259254,0.09080567,0.0004244099,-0.40041065,-0.80928755,0.22999696,-0.7782077,-0.3800284,0.5299701,-0.10943258,-0.14085509,0.23996337,0.33780667,0.37480965,-0.37838283,0.12188217,-0.18741234,-0.38900352,0.5227886,0.4915069,0.6124273,-0.4940989,0.56592035,0.3460233,-0.21299589,0.48287663,0.0063131354,0.46804214,-0.12602079,0.48928866,-0.019812634,0.093347855,0.09037015,0.45709494,0.14709185,0.32111904,-0.07083708,-0.11107788,0.18636446,-0.08253374,0.4016985,-0.06148092,-0.48054203,0.09502286,0.026136583,-0.062946044,0.55086416,0.1425963,0.033888917,0.1072411,-0.36752418,-0.11377636,0.20041697,-0.27219114,-1.4221096,0.75142986,0.21615066,1.0535105,0.2672923,0.33956468,-0.13508116,0.7162742,-0.030390888,0.08217759,0.28014705,0.10231558,-0.3144592,0.6229761,-0.6600531,0.459214,-0.0024291675,0.047012016,0.18955827,-0.100613706,0.35710225,0.73662764,-0.21356289,0.011598177,-0.26618394,-0.18002494,-0.23237781,-0.33154103,0.34310493,-0.3698307,-0.3943317,0.6583786,0.25930178,0.25293496,-0.23735707,0.17158449,-0.17932224,-0.30643752,0.31393573,-0.08106138,-0.0587047,-0.04484059,-0.42357802,-0.012093355,0.4330018,-0.26525453,-0.046777368,-0.28836882,0.120132856,0.080891095,-0.098382376,0.025477692,-0.031087995,-0.83532023,0.32702333,-0.44105542,-0.28553087,0.22089016,-0.13552712,0.095760226,0.15039293,0.12392289,-0.13262758,0.31633142,0.14661002,0.4810854,-0.11787551,-0.46588492,-0.51820916,0.21163201,-0.016153028,-0.28960225,0.24064004,-0.08399775,0.13351886,-0.28214058,0.46375358,-0.23303115,-0.48642853,0.023266265,-0.18284942,-0.144324,0.48760387,-0.15761766,-0.1656164,0.021820545,-0.38553238,-0.2457213,-0.19840746,-0.20230366,0.12266763,0.49733236,-0.23961337,-0.13747092,-0.1425089,-0.31554404,0.4616791,0.13399495,0.44677857,0.4141465,0.2545546,-0.48878717,0.22737016,0.25035083,0.55074537,0.0609861,0.10325691,-0.6004756,-0.36266127,-0.45037642,0.72020334,-0.25288412,0.19226371,-0.12033522,0.030932268,0.9704311,0.05385765,1.1539025,-0.108954154,-0.22195147,-0.13049161,0.6410733,-0.20950365,-0.21633099,-0.5181369,1.084653,0.35780907,-0.11137983,0.19922237,-0.27091804,0.030697992,0.2997159,-0.29990044,-0.15403347,0.015043855,-0.41778883,-0.43091437,0.24882756,0.32951736,0.10708284,-0.19445582,-0.23119931,0.45252302,0.17155188,0.27329925,-0.7345248,-0.34518757,0.23487116,0.1372429,-0.24157834,0.24973206,-0.37876758,0.31357348,-0.73730785,0.25463408,-0.5523873,0.18986791,-0.1060715,-0.43594456,0.22431801,-0.04839888,0.40302786,-0.44565463,-0.47531453,0.090512075,0.030911619,0.31622994,0.09428963,0.4993688,-0.16882797,-0.015228194,0.18539904,0.6318125,0.9748549,-0.29897997,-0.045991093,0.123577476,-0.478542,-0.76356125,0.1632031,-0.34184575,-0.109566174,-0.20595759,-0.36043382,-0.46578574,0.19951141,0.09560878,0.2335844,-0.14898583,-1.0217983,-0.13604264,0.21680729,-0.32113656,-0.17436612,-0.38634527,0.32436725,0.7896655,-0.15396339,-0.38473415,-0.12496967,0.41181406,-0.23844163,-0.7016251,0.03433615,-0.48110488,0.15339395,-0.091080874,-0.34599257,-0.21415438,0.047233712,-0.6307195,0.21911614,0.13160495,-0.30503443,-0.099515595,0.105962075,0.24176194,0.6166389,-0.43939868,-0.042810958,-0.32957613,-0.44626746,-0.7727411,-0.2885402,-0.16120268,0.4559872,-0.067570806,-0.7406582,-0.0063821874,-0.38952732,-0.15163745,-0.15006721,-0.4053111,0.25205836,0.21491419,0.52809846,-0.49176225,-1.0646347,0.19637656,0.11185437,-0.1329139,-0.46283093,0.381997,0.15736824,0.6832836,-0.031957787,-0.11357864,-0.14569734,-0.45781025,0.20498566,-0.324543,0.03525586,-0.77891546,0.31981444 +534,0.23811346,-0.07309845,-0.3059545,-0.2046873,-0.24830309,0.09492013,-0.0171434,0.39501163,0.24176015,-0.13240942,-0.0048894454,-0.20549704,-0.026525626,0.46161348,-0.012379573,-0.78415024,-0.14671305,0.048294324,-0.57131237,0.35951024,-0.487316,0.2804071,-0.06456619,0.49091128,0.1134413,0.36142284,0.10326373,-0.08145363,0.07214056,0.15744402,-0.27657902,0.18561332,-0.5366342,0.12087667,0.11750566,-0.20949475,-0.11693545,-0.3999349,-0.38725778,-0.6067906,0.34361485,-0.59818465,0.42886522,-0.10938546,-0.28732923,0.1641323,0.072684675,0.23629355,-0.52670956,-0.0092793815,0.2669678,-0.12726262,0.19929364,-0.111771025,-0.29588547,-0.37922555,-0.48806655,-0.06089846,-0.41940692,-0.22226843,-0.27613685,0.06375539,-0.36869806,-0.12834165,-0.17524853,0.47324243,-0.37062213,0.22711545,0.25653416,-0.15709975,0.15578406,-0.43139923,-0.13881639,-0.16076134,0.085861534,-0.021527745,-0.21597753,0.33239767,0.3056528,0.31844383,-0.088569015,-0.121601835,-0.2213915,-0.022641677,0.0074356887,0.432848,-0.21637902,-0.28467023,-0.12223761,0.035100535,-0.014441635,0.18698627,-0.04675613,-0.4446871,-0.04707184,0.13032508,-0.23529941,0.15261349,0.29068625,-0.29842672,-0.2797127,0.37298664,0.24005304,0.16433352,-0.104988165,0.12200098,0.01367558,-0.5106298,-0.2020451,0.16538833,-0.033133145,0.36999696,-0.08033219,0.13126303,0.78200984,-0.14302751,-0.0065295147,-0.1767699,-0.0252811,0.022706985,-0.32917374,-0.12110912,0.05131519,-0.32867214,0.28493118,-0.06342102,0.7586435,0.15241274,-0.8688951,0.3164967,-0.5291576,0.16340016,-0.12354978,0.49812725,0.70527977,0.31116536,0.20240267,0.8423763,-0.47841755,0.05242979,-0.017147861,-0.32024986,0.18640845,-0.026397912,-0.0013443736,-0.53677696,-0.030368218,0.11963001,-0.070021994,0.18347992,0.027302088,-0.43459657,-0.065688714,-0.032459177,0.7713067,-0.33946323,-0.15706357,0.53972113,0.8398612,0.9080321,0.14737494,1.195724,0.29719636,-0.21153274,0.30472866,-0.37819433,-0.6582498,0.16291276,0.28702235,-0.10148107,0.231781,0.045912307,0.025971761,0.22916242,-0.12734857,0.16106136,-0.10940315,0.16742983,0.1695917,-0.120350435,-0.13836968,-0.3884895,0.06392603,-0.04366521,-0.099699646,0.21138474,-0.18924528,0.32481065,0.06418287,1.724189,0.19083378,0.08694708,0.07332965,0.38682142,0.1882469,-0.1096393,-0.13877146,0.45852053,0.35475275,0.06223132,-0.5805517,0.2436286,-0.17103657,-0.4605112,-0.0029975732,-0.4247606,-0.065121025,-0.11804747,-0.4363718,-0.22851986,0.007845681,-0.28195763,0.4451821,-2.9042587,0.0036205994,-0.009115458,0.22013241,-0.27177784,-0.24541415,-0.2783238,-0.3056534,0.29840022,0.4328933,0.38659653,-0.5786155,0.21417497,0.31018847,-0.28135234,-0.312561,-0.5735887,-0.08799878,0.08203392,0.18672647,-0.12191228,0.13409215,-0.11661533,0.19574502,0.5715682,-0.024357852,-0.036911123,0.2680678,0.4998794,0.17364946,0.53482157,0.06395371,0.47147018,-0.13249363,-0.09909045,0.27785036,-0.48993322,0.3018706,0.23807158,0.088057905,0.3979874,-0.38964775,-0.82450473,-0.48407382,-0.36013615,1.2442305,-0.4260432,-0.21485028,0.31342798,-0.25634918,-0.10678319,-0.103947006,0.4533226,-0.1361573,-0.18630257,-0.6454292,0.0194962,-0.060521465,0.33229563,-0.040986005,0.042833064,-0.08778033,0.55856615,-0.05244518,0.47992632,0.3329975,-0.017159197,-0.18240738,-0.46023324,0.112714894,0.6726433,0.18390411,0.18615586,-0.03874342,-0.07218286,-0.052655872,-0.107849054,0.1996776,0.5905661,0.57794493,-0.01109246,0.17416558,0.40143937,-0.2386435,-0.08769524,-0.048408847,-0.20139226,-0.015839221,0.05051644,0.4567329,0.5694579,-0.2412793,0.44114617,-0.07671538,0.17965595,-0.17159358,-0.4718868,0.50309086,0.8231443,-0.14839718,-0.14546844,0.27706736,0.48497933,-0.33092526,0.24127078,-0.47183955,-0.14675349,0.79613936,-0.14457901,-0.33208874,0.14737675,-0.26215336,-0.15112591,-0.75328535,0.15934794,-0.034462478,-0.43193018,-0.524953,-0.10861099,-3.6963515,0.022741826,-0.27249634,-0.326956,-0.18863359,-0.048614137,0.23261547,-0.5032269,-0.5596275,0.012409542,0.063714154,0.44878438,-0.046657786,0.18638285,-0.31744164,0.012248195,-0.36295986,0.1581227,0.019364376,0.39733568,0.071173295,-0.35219002,-0.07263144,-0.2515098,-0.61652946,0.10290216,-0.44659775,-0.41079235,-0.13475008,-0.5509223,-0.28142262,0.6715368,-0.46279588,-0.11686886,-0.14285041,-0.11197022,-0.23217049,0.3846858,0.3751776,0.07993157,0.062098905,0.01660626,-0.29757196,-0.31050056,0.19216236,0.102367096,0.35013574,0.41308576,-0.0018520906,0.15362443,0.52275246,0.58367467,0.11034428,0.5334998,0.27183402,-0.023744611,0.34358212,-0.50822854,-0.034467246,-0.5201161,-0.25376102,-0.2577282,-0.26624033,-0.50417006,-0.17659834,-0.34519672,-0.68330914,0.19921662,0.04268159,0.081159905,-0.023276385,0.072057314,0.36546168,-0.13376766,0.18771309,-0.04511334,-0.15982884,-0.46859643,-0.40079653,-0.5009937,-0.48533195,0.2764509,0.99726135,-0.16994482,-0.21616003,-0.16436094,-0.3919906,-0.08747926,0.04143658,0.06686321,0.32590136,0.24551392,-0.14223753,-0.6327123,0.3312693,-0.1070299,-0.12766753,-0.69811565,0.13190733,0.6114815,-0.6126288,0.6502844,0.0875796,0.180675,0.031028142,-0.4783502,-0.34878066,-0.01722813,-0.13844426,0.37126273,0.09697234,-0.5658923,0.37178108,0.26818264,-0.13469872,-0.5615621,0.39296645,-0.021737365,-0.36618295,0.08574056,0.25253212,0.07836402,-0.092250995,0.071022175,0.268061,-0.48772028,0.18016948,0.2496976,0.04883675,0.35085183,0.084289715,-0.09496788,-0.48206905,0.081597656,-0.3213967,-0.3611112,0.2202582,0.1309706,0.15456489,0.04039426,-0.1270595,0.29075745,-0.1278502,0.083309256,-0.04819358,-0.061876237,0.29462364,0.42084467,0.33150667,-0.50139433,0.4612885,-0.013640711,0.1975787,0.23131841,0.20464513,0.36855492,0.35323903,0.19655353,-0.11094462,-0.27156723,0.15341736,0.5887674,0.14596346,0.35421783,0.031046368,-0.12281629,0.41761252,0.09593666,0.11783986,-0.008597255,-0.2930011,0.010225324,-0.13005096,0.24207425,0.39937815,0.108661614,0.21596028,-0.010321475,-0.18479535,0.14154445,0.28408208,-0.06556906,-0.9461374,0.3390713,0.2968775,0.63499355,0.5501406,-0.02899561,0.05526871,0.5267846,-0.22623135,0.17468221,0.42096123,0.0578787,-0.6321497,0.59893775,-0.6247682,0.5918755,-0.14999436,-0.07674168,0.05698437,0.29779112,0.30718237,0.8757213,-0.07589232,-0.07927973,0.13858652,-0.35438633,0.024730159,-0.42183086,0.18990056,-0.57215345,-0.2991142,0.36290976,0.3634873,0.16443665,-0.36867985,-0.029938968,0.0008280369,-0.16961035,0.090073556,-0.006085694,-0.09020721,0.051962554,-0.62439835,-0.5137569,0.54754186,-0.21593396,0.09487137,0.10282454,-0.22492838,0.3468963,-0.23471092,-0.058713026,-0.06517637,-0.5465937,0.07828351,-0.26891437,-0.47305197,0.24735212,-0.30487883,0.3005298,0.22179733,-0.0018236866,-0.49085698,0.37061617,0.17799972,0.8053869,-0.22977774,-0.14787532,-0.40475973,0.048522856,0.24835514,-0.15430519,-0.24048415,-0.28574798,-0.1248378,-0.32102224,0.36011165,-0.014169324,-0.23603524,0.017134923,-0.13543354,0.013267821,0.3770168,-0.1208433,-0.07935039,-0.3013436,-0.19249216,-0.31240985,0.0612767,-0.33147228,0.4183539,0.05452925,-0.0006631842,0.086534604,-0.13153365,-0.11268464,0.24411613,-0.024736252,0.2718826,0.20592664,0.11515816,-0.25827175,-0.044395007,-0.09391807,0.4003185,0.27422735,-0.031600237,-0.14088625,-0.17630014,-0.2946447,0.28787243,-0.26837066,0.3000646,0.16761369,-0.6645248,0.6540556,-0.008321494,1.0093929,-0.024589868,-0.18783917,0.126499,0.42985928,0.2480167,0.08298084,-0.27219212,0.6561612,0.65395766,-0.024822744,-0.19681194,-0.1442628,-0.27841842,0.26694477,-0.20747529,-0.2691766,0.0064293053,-0.6150652,-0.15587163,0.06642041,0.06950521,0.30966246,0.07955496,-0.25212517,0.058983766,0.13488448,0.3585079,-0.20701121,-0.056083385,0.25095302,0.111333005,0.26344043,0.22229902,-0.35126045,0.43387902,-0.6027308,0.34109193,-0.30723593,0.19910192,-0.14288828,-0.12733954,0.096978195,0.03657565,0.3580101,-0.13299383,-0.24130553,-0.26331857,0.6632118,0.21041836,0.3894207,0.7999137,-0.18286672,0.013367231,0.082544915,0.4829739,1.0243853,-0.08897396,-0.123780265,0.32613137,-0.4313125,-0.60884696,0.21567973,-0.27583548,0.11591805,-0.039220765,-0.092250384,-0.26303193,0.24243182,0.082597815,0.14719023,-0.017296195,-0.5239312,-0.2861238,0.4353499,-0.24179038,-0.2920564,-0.45249063,0.32641503,0.69268066,-0.3617684,-0.21321605,0.18645485,0.18431138,-0.19935611,-0.3499125,0.07711477,-0.38369262,0.35971898,0.111034885,-0.28258863,-0.031066183,0.16815391,-0.3295583,0.15975857,0.14854066,-0.34905034,0.041299343,-0.111111194,-0.1504197,0.9223906,-0.03544758,0.015687564,-0.6475885,-0.45007923,-0.8518098,-0.23767583,0.5157988,0.020768883,-0.19478036,-0.5432354,-0.1767535,0.14126964,-0.21141146,-0.101251125,-0.51118064,0.4294232,0.03627736,0.17895328,0.02445689,-0.789733,0.08021101,0.10573197,-0.14890848,-0.6557254,0.5415983,-0.2997101,0.6570531,0.03181008,-0.071151264,0.28068465,-0.35680965,0.2526203,-0.43962306,-0.25423762,-0.44730398,0.20690249 +535,0.28974363,-0.43786776,-0.64213127,0.0054681934,-0.36915472,0.06286543,-0.28493205,0.3188917,0.26290622,-0.3875344,-0.20417021,-0.099599384,-0.117679335,0.19166829,-0.17073892,-0.39179298,-0.20832683,0.24738292,-0.761658,0.6349954,-0.27548409,0.29308996,0.19391966,0.39922774,0.15550335,0.15434116,0.15394837,0.12541641,-0.13039784,-0.116763115,-0.14394489,0.26003966,-0.7773592,-0.014614898,-0.46351945,-0.37789008,-0.0065100216,-0.58744305,-0.37363574,-0.956754,0.35718468,-1.1307992,0.73375076,-0.08156783,-0.12214569,0.11178311,0.39210823,0.37285408,-0.057617094,-0.07726734,0.19251025,-0.427675,-0.060173783,-0.35981175,-0.28965232,-0.34135476,-0.5145985,-0.0057997354,-0.6200071,-0.17366238,-0.21339433,0.25694585,-0.33924493,0.025287798,-0.42924607,0.382224,-0.32620475,0.066635095,0.3484119,-0.15059443,0.33879933,-0.6910505,0.06975298,-0.09424462,0.35565105,0.061938126,-0.10248422,0.43617213,0.3279883,0.5046268,0.14401977,-0.34692708,-0.21953852,-0.17453612,0.32314026,0.5008082,-0.17747246,-0.29695037,-0.18256998,0.22649772,0.5993965,0.68333155,0.074816495,0.041476388,0.04587716,-0.17754011,-0.005174806,0.7557575,0.6172593,-0.3796421,-0.47864294,0.12388588,0.7819064,0.34622577,-0.1746161,0.008072714,-0.10281073,-0.4670565,-0.17240125,0.3479115,-0.2552289,0.689353,-0.21342397,0.040171083,0.7323796,-0.14061448,-0.08434937,0.064450115,-0.0017482663,0.02932004,-0.2727305,-0.13653842,0.40865973,-0.7404845,0.22665322,-0.35949823,0.48984084,0.059496637,-0.71907157,0.25881776,-0.5702446,0.27638265,0.33848062,0.5852638,0.7132306,0.7469101,0.37059128,0.94009835,-0.33040237,0.046708267,-0.0069314935,-0.3433138,-0.1321588,-0.37460807,0.1489918,-0.42880812,0.16501907,-0.51670724,0.028426135,-0.060641598,0.40382156,-0.6388871,-0.22972874,0.18514399,0.8933718,-0.20421839,0.09703223,0.94225997,0.91893506,1.2323366,-0.05928487,1.2952794,0.1046679,-0.23418415,-0.035721224,-0.056225937,-0.7865966,0.22058988,0.47426522,-0.06571376,0.37227324,-0.1571322,0.054524645,0.1996109,-0.5596878,-0.071784794,-0.07754093,0.19218333,0.10258164,-0.15363508,-0.5304878,-0.02473844,-0.15363818,-0.023004541,0.041445892,0.2818166,-0.15177247,0.68408424,0.075683735,0.85944957,-0.36470532,0.109743364,0.27513131,0.46109596,0.2821109,-0.09572342,0.08986511,0.39169183,0.36278853,0.20103748,-0.57891446,0.07123899,-0.57046723,-0.26564565,-0.28032133,-0.4181049,-0.3190077,0.1672883,-0.32751492,-0.41558233,-0.24828397,-0.22685595,0.35600066,-2.6005895,-0.16838504,-0.28148916,0.32451436,-0.41316128,-0.2610829,0.15543354,-0.72152084,0.26759943,0.15776886,0.5763397,-0.4633919,0.38836512,0.6081161,-0.80060226,-0.00040451685,-0.7420742,-0.19106455,0.09636215,0.5875728,-0.00048492601,-0.10243026,-0.0015266935,-0.017464058,0.7223859,0.32822087,0.18458958,0.6823342,0.66820544,-0.078422494,0.49948063,-0.1701569,0.5596368,-0.5996868,-0.17918126,0.5943509,-0.26266775,0.5751813,-0.3999246,-0.017037123,0.77811486,-0.49010196,-0.71640635,-0.52182883,-0.25421745,1.2435087,-0.25227857,-0.79631025,0.019644046,-0.2199973,-0.023217387,-0.18216263,0.5937043,-0.013729672,0.23956217,-0.5881104,-0.10296649,-0.28156468,0.2809103,-0.05454427,-0.101411164,-0.3438021,0.7990787,0.0005702488,0.40961275,0.23380013,0.22074789,-0.31747195,-0.462581,0.011960391,0.7229659,0.5940942,0.007497015,-0.22814906,-0.18056566,-0.162979,-0.28165194,-0.14288272,0.76496285,0.577612,-0.2743,0.08858345,0.47209522,0.1811034,0.16639972,-0.21777289,-0.40186235,-0.38388,0.032953966,0.5923801,0.7426493,-0.17287183,0.40479288,-0.10793871,0.202698,-0.108513236,-0.58034325,0.61857265,0.7969119,-0.2860845,-0.09141356,0.7656141,0.59271485,-0.5233132,0.58653885,-0.64389473,-0.26451018,0.75109315,-0.3874778,-0.74535745,0.1798969,-0.30063966,0.088947214,-0.5743679,0.15018211,-0.6272239,-0.35130918,-0.56599444,0.037549753,-1.9711194,0.1954153,-0.3401005,0.08454636,-0.4971697,-0.27019405,0.15384822,-0.38734022,-0.8798733,0.21497719,0.28488693,0.66473645,-0.23263343,0.11171979,-0.2291245,-0.40693748,-0.21969666,0.4500599,0.33980152,0.15844718,-0.4599112,-0.3293015,-0.07715412,-0.029167116,-0.36479056,0.092422724,-0.6191154,-0.40610436,-0.16010426,-0.3835374,-0.0760796,0.5939037,-0.32534268,0.086025864,-0.22476132,0.08648836,0.048232753,-0.05242144,-0.018975342,0.57165474,0.25842717,-0.31860423,0.21025805,-0.19215412,0.56669587,0.0033548698,0.38668644,0.1995027,-0.08531544,0.27171347,0.22516663,0.88530225,-0.1879191,1.1587371,0.2670298,-0.13783334,0.37680855,-0.10178428,-0.5625333,-0.82528406,0.014214146,0.20031266,-0.4234551,-0.69401425,0.083072074,-0.35218778,-0.8145709,0.75480336,0.041842286,0.86307734,-0.065330476,0.576606,0.5560235,-0.4066621,-0.044778924,-0.09256539,-0.25214994,-0.4837052,-0.32426247,-0.75811523,-0.5462374,-0.11238297,0.8062158,-0.23064731,0.029431678,0.21948342,-0.23582093,0.114033096,0.24758823,0.04236861,0.10430806,0.5875885,0.21739535,-0.63067967,0.3465662,0.2989391,-0.021972215,-0.55246145,0.4377799,0.50804263,-0.64369553,0.63899446,0.4178939,-0.19871478,-0.3836197,-0.7143035,-0.016648298,-0.10546881,-0.29830503,0.55122524,0.42068172,-0.65847504,0.41227743,0.26428285,-0.40526745,-0.9698412,0.28288797,-0.080806725,-0.41635442,0.0069441744,0.4172198,0.088567115,-0.04614639,-0.17824632,0.20329313,-0.30977586,0.28061378,0.15627043,-0.22603114,-0.055560738,-0.17967361,-0.47417638,-0.8581045,0.39911494,-0.6216673,-0.20995729,0.6962736,-0.13181126,-0.2589573,0.27720362,0.28070742,0.45104477,-0.023243865,0.1991501,-0.034244508,-0.52307034,0.50721973,0.5145862,0.4418559,-0.6243265,0.6853177,0.18355708,-0.50321907,0.27631336,0.20262444,0.3491163,-0.12971576,0.4872655,0.10321194,-0.27834353,0.16688855,0.77099305,0.2642508,0.5104559,0.19888614,0.10498631,0.5285764,-0.08325764,0.28526124,-0.28543308,-0.79031307,0.032761704,-0.118873,-0.0986014,0.5906406,0.105154246,0.28911954,0.0011142939,-0.0025213335,-0.18046923,0.11397499,-0.012638737,-1.3114694,0.12248849,0.18831353,1.1888977,0.45831943,0.35380745,-0.14559014,0.7913397,-0.34646225,-0.08824899,0.69782287,0.09854925,-0.5149161,0.80147123,-0.62868005,0.449531,-0.10138605,-0.052978273,0.1075929,0.11610886,0.3262881,0.9251668,-0.21323685,-0.16276488,-0.21348332,-0.17986172,0.30082622,-0.32543647,0.14685458,-0.25811577,-0.52890843,0.67952204,0.29602215,0.46885267,-0.3243825,-0.004726795,-0.016077045,-0.2305518,0.3665458,0.13457245,0.10908162,0.028112188,-0.2121476,0.18445659,0.49188837,0.113368176,0.14440836,-0.23013283,-0.27296534,0.101875804,-0.2371196,-0.091333,-0.10404267,-0.9048489,0.052554276,-0.42103776,-0.8871905,0.37151837,0.029806614,-0.07560875,0.2115798,0.025703616,-0.15550835,0.2351054,-0.10377586,0.7000664,-0.10321935,-0.15992284,-0.40203723,0.31253436,0.108414344,-0.24694173,0.42704698,0.07352037,0.27160707,-0.42062917,0.6042539,-0.26276416,-0.6024162,-0.033864077,-0.24926142,-0.28334585,0.7020337,-0.04418218,-0.11987088,0.015054042,-0.3341999,-0.5352189,-0.4999145,-0.1104685,0.14974599,0.23938413,0.012123828,-0.3268012,-0.16774939,-0.1700372,0.6642042,0.072550215,0.37921643,0.22992541,-0.035923433,-0.53294826,0.18648934,0.13584137,0.6041593,0.109290354,0.013494733,-0.2696984,-0.60999286,-0.38761532,0.4719511,0.02885962,0.37592432,-0.02717603,-0.097538024,1.1593335,-0.088668466,1.1161007,0.007810369,-0.31172928,-0.025462756,0.5931467,-0.16610599,-0.17934386,-0.5346028,0.90277857,0.51951855,0.032888252,0.1353875,-0.35790992,0.24839528,0.077967755,-0.32572684,-0.08799293,-0.011472236,-0.44881988,-0.34282187,0.18818569,0.33429834,0.31925392,-0.28522503,-0.06678758,0.36476746,0.042733908,0.3482157,-0.4726695,-0.7431925,0.41479635,0.10866346,-0.20218986,0.110640585,-0.39129272,0.32381627,-0.69859713,0.041376248,-0.51907456,0.04747656,-0.1545061,-0.4107778,0.1819808,-0.2519993,0.37227735,-0.4424442,-0.45598876,0.0058964514,0.2747902,0.26529258,0.12462645,0.5338704,-0.22968946,0.01180917,0.18792196,0.5962386,1.127682,-0.39448872,-0.10604302,-0.013604519,-0.6018027,-0.7221415,0.5360213,-0.48687768,0.06946382,0.038010333,-0.3593423,-0.32859668,0.09022268,0.09406135,0.051121917,-0.22020958,-0.8438864,-0.303508,0.2792116,-0.39589342,-0.07629528,-0.3077302,0.2876743,0.78202724,-0.045491133,-0.43040118,0.06261023,0.2527226,-0.35163307,-0.5565599,0.042642605,-0.24837027,0.16317774,-0.12084544,-0.4812627,0.062370364,0.18427129,-0.70703393,0.038565334,0.23694944,-0.3713342,-0.0956319,-0.30013525,0.10496905,0.8356343,-0.5625878,-0.2821806,-0.16065641,-0.6027782,-0.9032793,-0.26409557,0.05493185,0.13505785,0.08397177,-0.72547215,0.0017538866,-0.4835659,-0.098237,0.15213759,-0.45703176,0.40388575,0.08897393,0.5819741,-0.4054273,-0.8542967,0.34262824,0.12234748,0.12293301,-0.4876937,0.5604474,-0.07414506,0.80060536,-0.022768294,0.04149406,0.09212976,-0.79855686,0.07914802,-0.22401597,-0.107211,-0.86622065,0.081097536 +536,0.76107115,-0.33354887,-0.6878814,-0.25452816,0.0043636216,0.061218195,-0.3302631,0.8232317,0.36436856,-0.4662754,-0.3061758,0.03907133,-0.042215984,0.62280107,-0.2581543,-0.75841445,0.15727416,0.21948063,-0.39896402,0.48067442,-0.45183268,0.27424437,-0.16797063,0.6385861,0.16299847,0.21131417,0.12721296,0.046425402,-0.011177635,-0.2608758,0.04838066,0.35665274,-0.531115,0.13551936,-0.17568554,-0.4349026,0.025590574,-0.49319673,-0.30447993,-0.88811433,0.30808347,-1.0481827,0.84242535,0.0583152,-0.30615482,0.13830428,0.10470903,0.101464294,-0.26697105,0.06298722,0.07324226,-0.07249192,-0.07477914,-0.2859618,-0.26614136,-0.7520963,-0.47823173,-0.062955186,-0.32651058,0.038876675,-0.34956545,0.124001145,-0.34143656,0.049589496,-0.12360398,0.33035713,-0.5364504,0.03829226,0.11501509,-0.17043371,0.026695762,-0.7160897,-0.29178184,-0.15600617,0.22688088,-0.07324906,-0.28535706,0.13258441,0.34416825,0.55067414,0.023281792,-0.24951248,-0.28912959,-0.04470015,-0.19543484,0.49356842,-0.44594917,-0.64348996,-0.22078443,-0.14344418,0.56029886,0.17340544,0.3094582,0.021491861,0.18077321,0.16440812,-0.35131636,0.5991965,0.63011134,-0.44040775,-0.063975275,0.2871391,0.269671,0.4381064,-0.20844486,-0.06697458,-0.00010195039,-0.5405618,-0.25667766,-0.16128683,-0.3263805,0.702354,-0.06946546,0.2806061,0.61038077,-0.10804232,0.037742157,0.26886225,0.26498747,-0.11974915,-0.25498864,-0.5219434,0.3198513,-0.48108858,0.25426108,-0.335541,0.87099046,0.22280276,-0.40746206,0.291326,-0.50453675,0.019934729,-0.24285977,0.44926682,0.6229442,0.56107783,0.19604044,0.6299086,-0.46283206,0.027663594,0.06828056,-0.19644889,0.22756943,-0.28343195,-0.024998346,-0.416642,0.374948,0.04745242,-0.053753734,0.265599,0.82883036,-0.44700733,-0.3019634,0.3409379,0.9972084,-0.33464226,-0.03504865,0.8648211,1.2064121,1.0059295,-0.045864914,1.243735,0.32672006,-0.2282494,-0.04305157,0.15046509,-0.8765324,0.41638032,0.45356828,-0.5874554,0.45351687,0.19167952,-0.19541505,0.5205971,-0.41202703,-0.3403534,-0.16031143,0.3003194,0.039209895,-0.19341554,-0.71802247,-0.1398088,-0.031900357,-0.061023116,0.3506616,0.34142983,-0.23127356,0.30168867,-0.13754562,1.1517813,-0.2272801,-0.037717454,0.02394698,0.70013744,0.29107812,-0.04517481,0.38629627,0.042595237,0.5642801,0.0726527,-0.70378363,0.21703184,-0.3264979,-0.51073015,-0.11001159,-0.3724157,-0.037574865,0.17619045,-0.52581865,-0.31118608,-0.110335864,0.13539279,0.15710986,-2.2011828,-0.18227808,-0.15521458,0.54517156,-0.2174205,-0.38004476,-0.13414271,-0.40837446,0.5482746,0.25563842,0.51681584,-0.6105675,0.4675506,0.44637638,-0.54876566,-0.0625054,-0.7225623,-0.08235377,-0.16307874,0.39555678,0.14147356,-0.25817862,0.16511779,0.09013806,0.7557828,0.19834426,0.31578547,0.3288295,0.61881196,-0.29279202,0.27164418,-0.19827786,0.7391446,-0.3509359,-0.22836447,0.30417198,-0.4805495,0.14168124,-0.46540552,0.22636211,0.52144676,-0.57834613,-1.1274776,-0.6395138,0.23437342,1.3231552,-0.1279957,-0.6905333,0.15777494,-0.23534298,-0.3376526,0.03589834,0.53219485,-0.2292699,-0.1551706,-0.8211651,-0.06958101,-0.19518504,0.02879783,-0.013614145,0.13659194,-0.36960858,0.68601054,0.023625914,0.48145208,0.09358826,0.32495227,-0.1510875,-0.48285574,0.009481487,0.82517165,0.54841363,0.17328921,-0.20749989,-0.17171887,-0.26082486,0.026597396,0.11545249,0.8257141,0.7088741,-0.13421886,0.044113494,0.15039071,0.15431046,0.20959921,-0.08896743,-0.5516224,-0.31944138,0.10838944,0.65054494,0.6279726,-0.3209692,0.14258851,-0.1100831,0.43199334,-0.33875102,-0.3493195,0.56507224,1.2488817,-0.42327124,-0.20241506,0.86407566,0.35659337,-0.43878046,0.5756332,-0.86346817,-0.5101024,0.36015952,-0.0460855,-0.34649295,0.04760475,-0.3380536,0.1735132,-1.003236,0.38453954,-0.49666348,-0.44088715,-0.49972385,-0.22702244,-3.6957119,0.26078492,-0.28197774,-0.13634655,-0.44448757,-0.30150804,0.45344287,-0.7263861,-0.7104238,0.16352043,-0.015445677,0.7324864,-0.14644569,0.14468685,-0.30732673,-0.44311935,-0.23792624,0.052220292,0.12932728,0.46109754,0.077161,-0.49655432,0.11756353,-0.023069937,-0.351383,0.061868764,-0.7828541,-0.3921109,-0.13751571,-0.6209365,-0.13781531,0.6919366,-0.26381117,0.010760257,-0.3692044,0.26551536,-0.5370556,0.35102007,-0.22867303,0.14596407,-0.07163367,-0.23937015,0.3086532,-0.25036603,0.40265623,0.08898175,0.41364416,0.26441392,-0.32932058,-0.16845435,0.5894524,0.6160768,-0.07499508,0.99458426,0.52525395,-0.058457177,0.43192416,-0.16729233,-0.3499663,-0.4918375,-0.47798938,-0.024776183,-0.5280254,-0.389141,0.041383795,-0.52626723,-1.0200789,0.5156878,-0.06973629,0.4971025,-0.016152669,0.23193395,0.6190909,-0.15089394,-0.10577662,0.04221902,-0.08079006,-0.54800934,-0.10216445,-0.62957394,-0.39054865,0.014983076,0.7607673,-0.18022144,-0.007841313,0.19691172,-0.14996548,0.12418165,0.12664992,0.014516002,-0.25118724,0.61362666,-0.05809685,-0.85180223,0.397092,-0.28472415,-0.14041206,-0.6325384,0.2746243,0.48453036,-0.7522296,0.69172144,0.65025914,0.06718791,-0.19690295,-0.6646942,-0.3430817,0.056385987,-0.07314896,0.35810146,0.23240311,-1.1132221,0.42300463,0.51208264,-0.43110055,-0.5295738,0.69212395,-0.077261545,-0.21828754,-0.17477489,0.50372607,0.15225784,0.0052844523,-0.16012457,0.28611404,-0.5568978,0.54376346,-0.01941717,-0.06470199,0.3520357,-0.07712868,-0.047408655,-0.84291077,-0.00977386,-0.6819855,-0.3315422,0.35118464,-0.027084216,0.24204655,0.031993292,0.252796,0.3941078,-0.5558108,0.21926601,-0.24636261,-0.47198382,0.5228762,0.5479879,0.641657,-0.39166126,0.62782556,0.16127424,-0.28429803,0.32461375,0.2657841,0.44978252,0.08553614,0.5517651,0.06104193,-0.105569504,0.13246484,0.89182776,0.2210784,0.43475938,0.11985467,-0.11618004,0.34372798,0.19119683,0.041043967,0.05138098,-0.5205325,-0.23820587,-0.26489657,0.09307994,0.7076658,0.19632569,0.29458532,-0.039429985,-0.1924413,0.006311202,0.07243003,0.13549203,-1.4000612,0.34711814,0.08716114,0.8372998,0.27481657,-0.004775393,-0.13687015,0.5328943,0.04382139,0.036748875,0.39833325,0.021877874,-0.44730163,0.657668,-0.42496553,0.22773671,-0.22705793,0.06743524,0.00873515,0.16493931,0.38216943,0.89543074,-0.031172097,0.11048603,0.09222296,-0.38110894,0.09235612,-0.5534919,-0.06793509,-0.5562042,-0.098782256,0.6949595,0.58834195,0.41757688,-0.4105513,0.013672042,0.08142565,-0.049196135,0.1161958,0.044099636,0.13524568,-0.12811033,-0.89257944,-0.016553547,0.6263242,0.16942212,0.15479906,-0.04793928,-0.3817929,0.39158133,-0.1786246,0.07445023,0.08082893,-0.71326816,-0.15560913,-0.5544112,-0.56266916,0.43003696,0.120294645,0.10898368,0.22256951,0.13784409,-0.14247201,0.052193295,-0.124595165,0.73328316,-0.13775012,-0.3924558,-0.6964018,0.06791736,0.2340425,-0.35735354,0.018874586,-0.3357772,-0.017594362,-0.3562084,0.40079445,-0.039268147,-0.112666905,0.083953835,-0.13483328,0.07978262,0.51136047,-0.2968301,-0.07491088,0.14401838,-0.12283883,-0.46324173,-0.40087795,-0.21405277,0.29649252,0.15934888,0.06083698,-0.31339258,-0.2217947,-0.07411294,0.3916299,-0.0043887035,0.2852305,0.69831693,0.2604316,-0.05403299,-0.13391913,0.37317905,0.7254583,-0.08861059,-0.3418988,-0.43987423,-0.77054876,-0.43157583,0.15028316,-0.1079849,0.32237613,0.1903816,-0.14113069,0.67287105,0.10614057,0.9962284,0.019379342,-0.48260736,0.018503105,0.7370756,-0.0929242,-0.10255227,-0.4808529,1.1825413,0.56080973,-0.1353104,0.020163335,-0.4497335,-0.059444536,0.24522085,-0.33925933,-0.22783999,-0.20770828,-0.87100714,-0.26444104,0.23769519,0.3868738,0.20805533,-0.015735906,0.35609922,0.44679037,0.28226763,0.35976738,-0.78514135,-0.41292697,0.29206362,0.28619486,-0.08870681,0.21210656,-0.43588978,0.13057463,-0.5850906,-0.1371415,-0.47849727,0.24617608,-0.17862919,-0.55649203,0.29474768,-0.12621717,0.34497645,-0.4706233,-0.33927137,-0.0876385,0.37309995,-0.010974282,0.13643956,0.42646867,-0.30353186,-0.022094551,0.11468472,0.73179924,1.0603579,-0.061592102,0.2656073,0.41938406,-0.5490657,-0.9115345,0.18885782,-0.22855778,0.3029531,-0.1219453,-0.17404456,-0.69487435,0.4142068,0.1522939,-0.09612067,0.13181055,-0.58719933,-0.16824222,0.23405898,-0.14547619,-0.23051906,-0.24287276,0.087376855,0.62411183,-0.37498024,-0.24312058,0.08211042,0.508157,0.013663804,-0.7603016,-0.08967814,-0.55541545,0.4920053,0.1212009,-0.37896657,-0.27647287,-0.26133233,-0.53165543,0.4076189,0.22633728,-0.3588973,0.19075216,-0.58899534,0.09721885,0.75802964,-0.20283797,0.23945908,-0.7038445,-0.5633706,-0.9378582,-0.4831645,0.35527217,0.29579014,0.06603722,-0.76139647,0.18189995,-0.0050913664,-0.16234276,-0.24091025,-0.29020727,0.40627307,0.011122468,0.5236806,-0.06552081,-0.7427475,0.18599558,0.1184745,-0.29442316,-0.5038971,0.50410306,-0.19810739,1.1512175,-0.012286427,0.14129779,0.077940024,-0.61522305,-0.14777678,-0.23170403,-0.21209475,-0.86231315,0.17823504 +537,0.25146565,-0.36239854,-0.46195096,-0.17846766,-0.030383293,-0.038663693,-0.14251819,0.60467017,0.08071542,-0.55977243,-0.29627043,-0.23407285,0.066041134,0.5829401,-0.19931321,-0.4372336,-0.08424716,0.036948893,-0.46307644,0.43159837,-0.46095222,0.21861713,0.17253987,0.37726778,0.23958106,0.25667542,0.35697597,0.17047718,0.20813587,-0.2859998,-0.30024034,-0.14760461,-0.33646128,0.054200433,-0.027144387,-0.71718293,-0.1734325,-0.4854104,-0.22499737,-0.5637577,0.49921948,-1.1099613,0.45546237,0.015346269,-0.16491331,0.16454454,0.3034156,0.38559538,-0.0378892,-0.031251557,0.09656974,0.11370997,0.22648223,0.049811803,-0.20767908,-0.6719302,-0.607261,-0.006629196,-0.3630274,-0.38002688,-0.031628285,0.114696644,-0.41344985,0.2723577,-0.02605618,0.30011505,-0.3764512,-0.3970302,0.34434038,-0.26757368,0.5623962,-0.68408227,-0.17326185,-0.13325848,0.05226478,-0.17401382,-0.16875824,0.0366466,0.31785268,0.47127628,-0.19306785,0.024639254,-0.1683627,-0.22315283,0.0039616586,0.53784484,-0.11389546,-0.44393507,-0.17793298,0.09860934,0.23374113,0.27292278,0.36928526,-0.23672815,-0.021434875,-0.05565951,-0.48663402,0.2978006,0.45024213,-0.38383925,-0.2094402,0.325099,0.69800746,0.16371588,-0.1774627,0.16328962,0.11864607,-0.40190515,-0.16346039,-0.13461745,-0.13192126,0.74220717,-0.20137219,0.50364596,0.47221413,-0.14475393,0.29181308,-0.13719226,-0.11439254,-0.56266844,-0.088630185,-0.30495346,0.15950361,-0.54049,0.13224006,-0.15436341,0.68119097,0.18972512,-0.6210319,0.41559115,-0.4491225,0.15006527,-0.20722468,0.41996813,0.6493941,0.15628079,0.15296581,0.632965,-0.3659001,-0.03181108,-0.3245522,-0.18209164,0.10554123,-0.10517621,0.04810431,-0.5896927,-0.008960945,0.40967494,0.012899597,-0.05722496,0.59813035,-0.54094684,-0.030906623,0.184329,0.8332197,-0.26030633,-0.1530753,0.7897295,1.1822182,0.9764759,0.19803278,0.95892274,0.15985918,-0.21533923,0.061662674,0.010924434,-0.70094544,0.17120898,0.5150702,0.2160147,0.5223998,0.09066653,0.14176263,0.54494536,-0.38419345,0.3169902,-0.15465288,0.25976148,0.073010944,-0.100018665,-0.32513303,-0.066341646,0.06294809,0.08663825,0.027362537,0.27235827,-0.083625935,0.5492647,0.11738205,1.6098287,-0.22932334,0.16196625,0.028331721,0.44042388,0.08241896,-0.40713596,0.11875558,-0.09945594,0.6318799,0.00047674478,-0.5615265,0.08124201,-0.052179825,-0.5593338,-0.2508977,-0.26402816,0.08153734,-0.09460066,-0.4242534,-0.18437462,-0.16299477,-0.22523698,0.25812417,-3.0541427,-0.22008014,-0.36111024,0.2682073,-0.31470677,-0.34892654,-0.07668745,-0.45646495,0.5008044,0.6099874,0.3032151,-0.7582136,0.43905106,0.28174287,-0.31623527,-0.012971786,-0.6819671,0.11633494,-0.15565397,0.3746521,-0.004777658,-0.093678616,0.09545787,0.41635942,0.4022603,0.043399468,0.2588596,0.1680002,0.34392446,0.09070216,0.42480263,-0.12445531,0.47148308,-0.16749242,-0.10267912,0.27506557,-0.23630437,0.057430785,-0.36618072,0.25923425,0.3277903,-0.43718886,-0.66205525,-0.7080142,-0.37738746,1.1897832,-0.32453924,-0.50519043,0.20983887,-0.2777659,-0.27111688,-0.12392092,0.5380029,-0.26526585,-0.10016801,-0.8172328,0.08877921,-0.26912856,0.1377155,-0.060359783,-0.32956594,-0.4909719,0.6870039,-0.087008275,0.43054813,0.4218976,0.16767006,-0.24018745,-0.32327288,0.049709253,1.0030338,0.52499044,0.07412461,-0.20601669,-0.08097871,-0.6124064,-0.19578381,0.32838738,0.4497052,0.8770156,0.05616992,0.23105642,0.24465004,0.0650012,0.0025896549,0.0014468462,-0.25802687,-0.0038978006,0.075740784,0.7061713,0.31781274,-0.101489164,0.51368177,-0.19863081,0.1573227,-0.30687958,-0.5023764,0.5060366,0.6360158,-0.0821475,-0.2536915,0.6462416,0.5854733,-0.18799944,0.43528676,-0.6599348,-0.314481,0.3737895,-0.02372005,-0.3472527,0.20387907,-0.42144394,0.2452313,-1.0558549,0.11604321,-0.2641372,-0.5077899,-0.67449147,-0.29413858,-3.6810029,0.24186301,-0.045708794,-0.38862675,-0.033386398,-0.4845708,0.42744023,-0.60769576,-0.76995873,0.29024988,-0.022613788,0.6906186,0.035256676,0.035009008,-0.20564842,0.026508782,-0.32213774,0.0021779598,0.010449916,0.29175797,0.15339115,-0.42168155,-0.09352004,-0.13852815,-0.4669262,0.096406356,-0.5456158,-0.5343258,-0.3078894,-0.4429717,-0.30043173,0.59080845,-0.24727666,0.027278492,-0.23654528,-0.16640729,-0.21570782,0.4231971,-0.0021898418,-0.016026502,-0.05004553,0.059437342,0.086974606,-0.29156655,0.0702867,0.13395925,0.24956533,0.25277615,-0.20853579,0.29060578,0.53533983,0.65141165,0.02607106,0.6429986,0.5553969,-0.015204499,0.25329894,-0.19566508,-0.048588417,-0.31867254,-0.2982521,0.0023973763,-0.4900961,-0.7084067,-0.23453279,-0.20380493,-0.7404719,0.40862298,0.10799199,0.27756304,0.1889734,0.2721776,0.3387161,0.10035913,-0.017762896,-0.16833699,-0.114141144,-0.726946,-0.3803521,-0.68072724,-0.35748744,0.28378028,0.9569088,-0.1333141,-0.057980895,-0.01836977,-0.2053746,0.09231975,0.12983456,0.014093732,0.09742623,0.22504883,-0.22058907,-0.75415576,0.37873903,-0.17092246,-0.21587129,-0.6526051,0.043790765,0.45885658,-0.609529,0.29001933,0.16693126,0.12675422,-0.28252262,-0.39151436,-0.13737163,-0.04793901,-0.43186814,0.2999757,0.19431607,-0.7086452,0.4594244,0.30452102,-0.0070779147,-0.6755818,0.548213,-0.04621318,0.021126425,-0.22816613,0.14291403,0.16925508,0.13764688,-0.19976917,0.045249242,-0.40091118,0.17655928,0.26914915,0.084024236,0.57173884,-0.17064103,0.060973454,-0.49057484,0.15102243,-0.596001,0.013570631,0.061663527,0.045418065,0.27627704,0.3714901,-0.1205284,0.26659966,-0.36558825,0.212751,0.02940548,-0.21026659,0.19994621,0.36015505,0.14652462,-0.4771615,0.7069659,0.12805484,-0.0050783753,-0.2908144,-0.04486268,0.3694432,0.36612505,0.19531626,-0.0800946,-0.3177886,0.22674341,0.92455447,0.22564058,0.29654917,0.034609426,0.1073875,0.15278979,0.0769481,0.038303513,0.19982278,-0.5264274,-0.10808619,-0.26596937,0.092132896,0.47617406,0.17438999,0.46398455,0.010688079,-0.44045967,0.05279116,0.0826319,-0.19128682,-1.2302033,0.31819692,0.21581419,0.66851056,0.6567126,-0.10798297,0.028066855,0.46024346,-0.3640132,0.24032016,0.25778276,0.10192846,-0.4716088,0.5480753,-0.75848776,0.493308,-0.019654462,-0.054971587,-0.20923634,-0.02314666,0.40733385,0.80473155,-0.14659278,0.2051394,0.0524307,-0.19726494,0.087720715,-0.36915112,-0.2278914,-0.65865177,-0.1927174,0.7494503,0.2806104,0.43973747,-0.020316636,-0.071292005,0.09419592,-0.001557681,-0.072523125,-0.08344648,0.20953634,-0.19854863,-0.58968216,-0.35944614,0.5180296,0.23056214,0.17555487,0.13632715,-0.55525845,0.19976725,0.053011365,-0.11703117,0.09470331,-0.7692485,0.02106909,-0.21449736,-0.37149283,0.47899145,-0.38023692,0.29712147,0.18092579,0.025171164,0.07265536,0.09985517,0.11690112,0.68000954,-0.07209325,-0.10040627,-0.41472167,0.043143004,0.10909231,-0.18103197,-0.17036077,-0.3280405,0.06720707,-0.6371404,0.49101108,0.15419355,-0.22132988,0.3317132,-0.13214473,0.06377424,0.4720746,-0.163684,0.16079195,0.34600535,-0.2706767,-0.075044826,-0.23981848,-0.1900035,0.41549674,-0.17927521,0.13606687,0.08313281,0.013730327,-0.19115594,0.26006573,0.14765489,0.34857607,0.41830772,0.019830292,-0.38829094,-0.20123956,-0.088417515,0.3442195,-0.06535942,-0.27372947,-0.20581654,-0.7011366,-0.33602294,0.2138646,0.014942378,0.37424374,0.036925543,-0.08403344,0.52530587,0.18145624,1.0500834,0.01296849,-0.5281436,-0.052318476,0.42800212,-0.036613256,-0.12926188,-0.19019283,0.7113983,0.43092126,0.014468759,-0.13731341,-0.31790385,-0.138254,0.41510803,-0.09619165,-0.27930713,-0.054992937,-0.6185856,-0.3846688,0.19084981,0.26594394,0.11475314,-0.0014808982,0.43198252,0.19907334,-0.17651248,0.46003932,-0.52178836,-0.12001421,0.3770507,0.17854603,-0.009352893,0.0003406167,-0.39072633,0.3019372,-0.621173,-0.12554218,-0.33900762,0.14303368,0.06258216,-0.35945314,0.22727661,0.06794651,0.41208172,-0.2569406,-0.35723227,-0.1113631,0.6339697,0.039190307,0.2656964,0.47666678,-0.21335849,0.15029716,-0.0782964,0.4468503,1.1928475,-0.17043826,0.11126516,0.3616547,-0.36212796,-0.7341191,0.38705525,-0.23974738,0.37413326,0.11592597,-0.2201829,-0.5388762,0.4618104,0.35150686,-0.22980814,0.23647055,-0.30715448,-0.50497496,0.22698197,-0.31993353,-0.32340586,-0.4768513,0.04428351,0.43668857,-0.2640402,-0.1001639,0.03839059,0.5078451,-0.17363098,-0.49738225,-0.16818154,-0.10475986,0.356692,0.16838457,-0.26837784,-0.09580114,0.19244345,-0.31477657,0.16188869,0.03253244,-0.29172903,0.10256374,-0.42495552,-0.15615645,1.0134465,-0.1547524,-0.14616272,-0.6636546,-0.42484665,-0.5164844,-0.56602585,0.4971016,0.10549915,-0.035481397,-0.49427122,0.010575402,-0.026489545,0.12617418,-0.052016426,-0.1197175,0.5438965,0.06704782,0.5613714,0.1666486,-0.49223357,0.055591308,0.028340992,0.025434593,-0.43259087,0.7088851,0.019461792,0.7887747,0.15545525,0.07288001,0.14524925,-0.46404523,0.1705465,-0.15683095,-0.23857732,-0.7843734,0.21565488 +538,0.6090177,0.04098755,-0.5328307,-0.09267609,-0.12561153,0.08774397,-0.17231122,0.3071688,0.18407795,-0.5368694,-0.4277728,0.022478415,-0.17226832,0.21504182,-0.39114574,-0.80301285,0.1027402,0.21564351,-0.23187762,0.78869176,-0.29621822,0.4412103,-0.0996685,0.23374394,0.12166689,0.13208903,0.29642585,0.07120249,-0.15165043,-0.28285056,-0.118856356,0.34274772,-0.3980869,0.2920903,-0.20012563,-0.23405248,0.023252575,-0.20016098,-0.4139408,-0.8773858,0.25888225,-0.72289175,0.6912936,0.015436358,-0.53184307,-0.12301069,0.19653445,-0.06720707,-0.15923318,0.099943176,0.11450582,-0.2551193,-0.057276662,-0.32154402,-0.40263745,-0.5027727,-0.5070629,0.011471446,-0.37593862,0.10400575,-0.45080784,0.29681233,-0.41654396,-0.18334082,-0.062410172,0.3734472,-0.3829404,-0.027469039,0.10622215,-0.12748367,0.3336349,-0.88762176,-0.3115536,-0.1633574,0.111263126,-0.033584952,-0.16567567,0.39995936,0.21046686,0.67618304,0.01935072,-0.18769082,-0.21204267,-0.18229792,0.085475735,0.5418525,-0.5196203,-0.6244679,-0.21233581,-0.1798837,0.48839536,0.30106682,0.08161934,-0.26656044,0.058528386,-0.29221854,-0.10946748,0.30929154,0.7724275,-0.35047156,0.17113993,0.19139999,0.3445397,0.14291164,-0.1194784,0.054902654,-0.18252578,-0.62432545,-0.38839525,-0.21451943,-0.1476948,0.645806,-0.09656766,0.14834884,0.47233555,-0.09021755,0.21127741,0.33755222,-0.017688064,0.19928163,-0.1445434,-0.2944331,0.25412935,-0.3129279,0.22007996,-0.3743423,0.6399652,0.092733435,-0.61402076,0.31754526,-0.41288787,0.24065281,0.07691837,0.7749969,0.69561744,0.63035935,0.27273905,0.8280305,-0.5552982,-0.0960697,0.23606454,-0.08512707,0.08300451,-0.09220926,-0.21280447,-0.48275054,0.11876961,-0.096717276,-0.11398884,0.10952166,0.5698588,-0.51543576,-0.22285363,0.07406927,0.81751883,-0.274296,0.18303499,0.6649734,1.1028104,0.98216176,-0.19223438,1.3672028,0.24307753,-0.10272991,-0.38773364,0.11664534,-0.7656755,0.2531265,0.45373026,-0.23198754,0.32505116,0.20360002,-0.12693521,0.45643404,-0.65361226,-0.29852885,-0.14750917,0.4360533,-0.111795664,-0.19986698,-0.6595426,0.06801079,0.0874888,0.109563045,0.06943972,0.489411,-0.29196465,0.51172745,0.068498224,1.2304479,-0.1768782,0.11449519,0.18596688,0.4037134,0.27240354,-0.047418978,0.149626,0.12930076,0.22834888,-0.008661187,-0.42415088,-0.061055284,-0.24945384,-0.5169665,-0.19297232,-0.21868055,-0.16562748,0.01753857,-0.29400456,-0.30680335,-0.10545325,-0.44164672,0.29356462,-2.399343,-0.00022746279,-0.07519801,0.30066398,-0.24211396,-0.34407762,-0.16280852,-0.33821118,0.69206303,0.34210613,0.42357937,-0.7183847,0.27989465,0.75702405,-0.46200264,-0.016080031,-0.694642,-0.098872915,-0.106302366,0.6282655,0.27125221,-0.22774747,-0.040025588,0.26125497,0.63970596,0.27290475,0.16520081,0.22067226,0.38380578,-0.35863787,0.2582061,-0.09512811,0.4633498,-0.26284537,-0.15936361,0.49735647,-0.3046838,0.26974308,-0.30740264,0.10667764,0.40262794,-0.5792417,-0.63761014,-0.76095015,-0.23258089,1.190738,-0.020746391,-0.75275266,0.30258787,-0.44087675,-0.35710156,0.010474508,0.67137057,-0.30407172,0.1270282,-0.8000789,0.014607819,-0.21441418,0.16106217,-0.0520459,-0.036737587,-0.68907547,0.93568045,-0.14240462,0.4236002,0.42088747,0.24604405,-0.26323992,-0.5780572,-0.010108124,1.0230292,0.80418193,0.191622,-0.31699535,-0.026105693,-0.25469473,0.012207678,-0.04895733,0.963539,0.63015527,-0.1071362,-0.07954432,0.27654016,-0.059279736,-0.021637525,-0.24789111,-0.34316924,-0.122542344,0.16496475,0.75795066,0.7310994,-0.30685753,0.19112413,-0.16302244,0.374618,-0.42715532,-0.42064968,0.38749272,1.0433737,-0.20282911,-0.17064136,0.97987694,0.57004535,-0.25717786,0.6184139,-0.68839705,-0.5965753,0.41417167,-0.20220588,-0.5935992,0.22910985,-0.4645486,0.118876114,-0.78960145,0.36998522,-0.43292838,-0.5261097,-0.596637,-0.10882894,-2.5159247,0.31082428,-0.36131018,-0.07955663,-0.27196217,-0.118940905,0.42726606,-0.5627614,-0.57261777,0.20986709,0.09427807,0.46710762,-0.07601108,0.0339997,-0.17370392,-0.47676325,-0.1373484,0.16974324,0.16679026,0.2533033,-0.10250913,-0.4878008,-0.1404573,-0.10617456,-0.29247332,-0.048292764,-0.60279006,-0.5287531,-0.12179898,-0.23667619,0.0039622504,0.54714805,-0.4116929,0.09725277,-0.40991578,0.07777619,-0.16459414,0.044076502,-0.008925681,0.41580835,-0.20941386,-0.3037028,0.07054611,-0.24734071,0.39785093,0.110632695,0.3646457,0.50294673,-0.34037,-0.092080705,0.3807389,0.6386284,-0.10294919,1.1170131,0.5506721,-0.06572443,0.34464008,-0.08456484,-0.6301545,-0.6707936,-0.37210506,0.17389861,-0.48529595,-0.25730193,-0.13912684,-0.53521883,-0.89588153,0.59918493,-0.00036483773,0.2802749,-0.112935595,0.2338909,0.46503168,-0.3546949,-0.16464688,0.055700462,-0.21950558,-0.49878305,-0.2830211,-0.68259627,-0.44288862,-0.03690848,0.95561993,-0.0923008,0.09889205,0.17615971,-0.1644937,0.0497416,0.052412704,0.12771852,-0.11807353,0.2955764,0.050951835,-0.7652625,0.4549742,0.11338019,-0.20586099,-0.5527867,0.22258799,0.79884326,-0.5322174,0.5816555,0.3619558,0.0031363093,-0.3094712,-0.90113574,-0.095091835,-0.10061695,-0.2983657,0.5652667,0.2796667,-0.80281126,0.4241493,0.35872915,-0.12418978,-0.6795522,0.518916,-0.11173531,-0.63573045,0.0894666,0.42281517,-0.13148102,-0.11888708,-0.08783269,0.42331997,-0.2557526,0.4192793,0.088726684,-0.006068569,0.24133411,-0.23795924,-0.19129366,-0.96510416,0.032060605,-0.7574272,-0.28173172,0.24274302,0.082597174,-0.2238494,-0.0076749693,0.08891744,0.57601196,-0.4199127,0.37310168,-0.24800764,-0.4253405,0.50064087,0.50115544,0.48932618,-0.2782257,0.7774344,0.12822741,0.020046206,-0.32268095,0.23929907,0.4680814,-0.047401153,0.5226153,-0.35995796,0.006294209,0.23276573,0.7279943,0.19977877,0.333729,0.18569528,-0.103244424,0.30393597,0.07523486,0.16616961,-0.06509424,-0.54166055,-0.12349444,-0.22424287,0.034153495,0.45165315,0.16585511,0.4370411,-0.21137282,-0.2861985,0.09129473,0.22497389,0.18346885,-1.2639658,0.2849642,0.02817579,0.81258667,0.6049834,0.13788773,-0.042496268,0.5709247,-0.047318097,-0.0022262563,0.5257145,0.009971802,-0.27519143,0.4242795,-0.4646116,0.19819432,-0.031719003,0.16707054,-0.00017404786,-0.06357733,0.44594288,0.8306003,-0.1819677,0.13357632,-0.052409448,-0.2757107,0.0930206,-0.35992205,0.12426467,-0.4038868,-0.5457826,0.4451199,0.5113631,0.37854153,-0.19995154,-0.076614134,0.13187179,-0.17264324,0.10811898,0.037221793,0.04180267,-0.42269886,-0.47395295,-0.0063009034,0.45368063,0.1452527,-0.09896446,0.0371309,-0.050492726,0.23700887,-0.09434407,-0.03053744,-0.019828402,-0.4738328,0.08576154,-0.47658175,-0.2889134,0.58539283,-0.33443853,0.1772859,0.15925004,0.006965651,-0.12907784,0.278248,-0.031436764,0.639255,0.20670363,-0.23275667,-0.2910399,0.13614541,0.25534502,-0.3588739,-0.08131074,-0.15127252,0.21831335,-0.54869074,0.3007022,-0.17133263,-0.12405969,0.19573344,-0.21155216,-0.17495833,0.44856527,-0.10584496,-0.30980724,-0.09274781,-0.026838463,-0.29304215,-0.16855359,-0.06531046,0.23908383,0.08366881,0.17192973,-0.093150035,-0.081814036,-0.08494889,0.15771021,0.19192515,0.16548692,0.5285654,-0.061446767,-0.38577506,0.07874311,0.1802865,0.6611852,-0.011073183,0.12842865,-0.11091364,-0.7879568,-0.41883025,0.043863077,-0.3287311,0.25479788,0.14543514,-0.15379262,0.8708983,0.27583292,1.1065694,-0.0026437228,-0.38480106,-0.26625633,0.80258167,-0.22251478,0.020428717,-0.22639187,1.2738012,0.639289,-0.3416106,0.036701117,-0.3537863,0.1724564,0.18112095,-0.22126311,-0.21229456,0.0061131944,-0.6583884,-0.019152144,0.24448389,0.41586986,0.0038799988,-0.021377834,-0.07049242,0.24195717,0.28988233,0.30603427,-0.4587592,-0.046128374,0.4692267,0.15392496,-0.11962635,0.035047926,-0.32704017,0.21224411,-0.60852534,0.037770323,-0.33770898,0.011125566,-0.326359,-0.46737194,0.33686006,-0.10751014,0.28033647,-0.5338491,-0.1438191,-0.087030895,0.18252338,0.10690679,0.094058394,0.49679023,-0.1225598,0.018964635,0.06888972,0.50054836,1.2207068,-0.14586757,0.037964437,0.37825018,-0.54976666,-0.7422698,0.025294028,-0.5476844,0.030543271,-0.190483,-0.5755555,-0.4070994,0.16576649,0.110587604,-0.017820487,0.013954365,-0.5878309,-0.17587735,0.18888593,-0.33327535,-0.17076348,-0.19336846,0.16035852,0.5041343,-0.29955083,-0.39688328,-0.16719334,0.28075716,-0.37513843,-0.9041379,0.080538705,-0.27698612,0.30029285,0.32658005,-0.43155453,-0.124055415,0.0021456708,-0.52208257,0.1446712,0.22183448,-0.33377832,0.030226776,-0.27774075,-0.009355714,0.7389877,-0.19829819,0.19326574,-0.2888503,-0.49541092,-0.85562474,-0.42205244,0.3860137,0.35113877,0.0139424205,-0.77339524,-0.12376853,-0.4291244,0.22661924,0.058413632,0.026462574,0.5365437,0.23020898,0.3677808,-0.27654502,-0.72485936,0.22544256,0.19305642,-0.075695716,-0.513143,0.63842237,0.12681893,0.8996277,0.12973821,0.10420998,0.23975658,-0.7109537,0.22045022,-0.10676163,-0.34481698,-0.5826549,0.07257377 +539,0.5299336,-0.119712055,-0.5737795,-0.053311445,-0.41182956,0.17510359,-0.20176855,0.32523298,0.31859055,-0.36602148,-0.050976016,0.1416305,-0.15879878,0.19739789,-0.18745393,-0.6125623,-0.051329203,0.10683901,-0.3770923,0.61481565,-0.38199753,0.4477176,0.0017060991,0.22286928,0.054519318,0.34081122,0.022426743,-0.0633907,-0.108002886,-0.30379945,-0.07283636,0.19389573,-0.6181721,0.30222642,-0.017400056,-0.28615868,-0.036709264,-0.36754194,-0.15282512,-0.6782506,0.22038195,-0.5611668,0.6040133,-0.0303232,-0.26990792,0.18015537,0.043270335,0.26199657,-0.079712406,0.015338529,0.2556057,-0.058472387,-0.28165781,-0.10058556,-0.06941734,-0.35668844,-0.477359,0.035257906,-0.39193398,0.019330544,-0.16242635,0.21245624,-0.25284824,0.00694409,-0.17970128,0.40852526,-0.32623643,0.101566374,0.09979515,-0.11396398,0.22202489,-0.65930724,-0.00828832,-0.1291128,0.18082853,-0.1156363,-0.23720872,0.26187408,0.3328086,0.47319594,0.10081493,-0.19507879,-0.35222626,0.01344084,0.20316112,0.41174063,-0.2750865,-0.3727646,-0.22281788,0.08966566,0.2571653,0.064957395,0.041535452,-0.41601783,-0.03711579,-0.14306049,-0.26417837,0.4188767,0.43055475,-0.3472445,-0.05336556,0.41983667,0.5937897,0.20717287,-0.07553825,0.016731502,-0.086637214,-0.46887338,-0.19459756,0.07650323,-0.055666573,0.33861327,-0.0918315,0.099876404,0.44913775,-0.12151457,-0.225276,0.22102669,0.037387922,0.033939272,-0.19244164,-0.1638228,0.17264512,-0.5594638,0.0027519874,-0.24586795,0.5599358,0.115016736,-0.7630632,0.27368742,-0.45707077,0.032116186,0.011316504,0.4711671,0.77113414,0.5067013,0.08981614,0.8627989,-0.4655012,0.049727976,-0.18809393,-0.35342547,0.15198202,-0.08450579,-0.10510534,-0.61389065,0.19950613,-0.07148476,-0.18233056,0.09051452,0.17855084,-0.595754,-0.029156156,0.116812065,0.6321983,-0.33506268,-0.031212322,0.65278727,1.1203363,1.0556722,0.07908062,1.3572732,0.09541459,-0.18834989,-0.02784653,-0.3098987,-0.68081677,0.28340447,0.3631249,-0.09165092,0.3315794,0.17721127,-0.032149762,0.38653147,-0.32814482,-0.11013037,-0.12659107,0.46685073,0.029283747,-0.115893364,-0.3467259,-0.21676062,0.064875275,0.18486893,0.022639103,0.19192791,-0.32170013,0.24293192,0.16805917,1.368526,-0.22372365,0.039139427,0.12507154,0.23586933,0.27426895,-0.21547568,-0.1001806,0.22344726,0.3091622,0.18514416,-0.4552368,-0.034451026,-0.17112724,-0.43854946,-0.13276312,-0.15246198,-0.15618712,-0.07285302,-0.2194378,-0.23030153,0.04291907,-0.26567686,0.5561055,-2.6145256,-0.035375386,-0.12944037,0.16665274,-0.11687632,-0.4942421,-0.11583814,-0.45468652,0.3447874,0.2750615,0.43203205,-0.63955665,0.36189806,0.42499927,-0.55995613,-0.13140196,-0.5077952,-0.13780625,-0.015981125,0.38037914,0.13276675,-0.16478245,-0.15644999,0.21765454,0.41689432,-0.14174774,0.09407386,0.3887563,0.33151776,-0.057755936,0.45439088,0.13652739,0.60886955,-0.13529415,-0.21663764,0.401533,-0.3360127,0.20480159,-0.07301368,0.14622858,0.3228651,-0.404427,-0.88190854,-0.7581035,-0.1558178,1.3306019,-0.19312441,-0.4430816,0.14779317,-0.23579833,-0.49175957,0.061932236,0.19030476,-0.072216675,-0.12885642,-0.8371941,0.07871011,-0.10232245,0.20316568,-0.075686365,-0.015154716,-0.6355525,0.7538853,-0.11825861,0.45718542,0.5377065,0.15713033,-0.11542064,-0.44370946,-0.08253458,1.0834823,0.54966515,0.025907632,-0.17029291,-0.13707021,-0.35342407,0.059329055,0.16347206,0.59071827,0.5090927,-0.037430447,0.04326486,0.15450318,0.01438003,0.06337915,-0.207477,-0.36049202,-0.05627147,-0.19084811,0.5899891,0.62258536,-0.07281919,0.4312031,-0.048147645,0.26466858,-0.007265631,-0.574181,0.4310481,0.9515383,-0.1519793,-0.29897207,0.73434365,0.37140027,-0.07399689,0.4428526,-0.4546788,-0.36601135,0.17827265,-0.10056832,-0.27594006,0.27127588,-0.24068148,0.09023104,-0.6171125,0.35193986,-0.32912964,-0.6620139,-0.42974293,-0.1559606,-3.032799,0.28250134,-0.12889653,-0.057874627,-0.012882199,-0.047814902,0.29702404,-0.5688583,-0.62223583,0.13196763,0.08143738,0.5048202,-0.14742705,-0.012888711,0.013036879,-0.37160277,-0.13330066,0.26481566,0.054294672,0.27153242,0.07492443,-0.3767238,-0.08485874,-0.10945335,-0.32313693,-0.000327399,-0.55964494,-0.52986073,-0.08391571,-0.43887672,-0.22871716,0.7235667,-0.48730248,0.03797582,-0.22294539,0.02821263,0.031575486,0.16993658,-0.15589263,0.07896264,0.004863739,-0.018450607,0.03686332,-0.22546867,0.30278265,0.10612109,0.27925617,0.3316208,-0.11380872,0.26339865,0.46751028,0.7395648,-0.10838328,0.94200724,0.43111598,-0.17446733,0.25965238,-0.14853062,-0.30368084,-0.5157283,-0.34504503,-0.023651712,-0.54552984,-0.24412231,-0.02347364,-0.35196114,-0.7982096,0.55354506,0.06546947,0.0030313283,0.011498272,0.27092236,0.5052166,-0.12783802,0.08484201,-0.16097902,-0.24026631,-0.44402874,-0.33209544,-0.5606233,-0.31974968,-0.015949491,1.2859938,-0.38026124,0.11450536,0.09765959,-0.16981411,0.09001225,0.03220187,0.017881092,0.16513127,0.41545427,-0.03348886,-0.6502037,0.3007602,-0.2352524,-0.029375408,-0.5362127,0.27261436,0.61824197,-0.62014925,0.34706858,0.34894323,0.18815178,0.035449825,-0.504827,0.0058782306,0.060712095,-0.3689076,0.597717,0.2628854,-0.6293486,0.45545888,0.36138952,-0.23488094,-0.73868126,0.42838562,-0.067826025,-0.19846858,-0.07284898,0.36229616,0.1696867,0.042342626,-0.19210558,0.1826947,-0.27599886,0.38217127,0.13025393,-0.09489293,0.061179493,-0.16972502,-0.20688528,-0.7708963,-0.03945017,-0.3885211,-0.40803194,0.13144824,0.045393802,-0.031531043,0.10190649,0.13244766,0.46465695,-0.3760162,0.0790125,-0.10928235,-0.30779716,0.45784575,0.47195402,0.37442935,-0.276602,0.47955823,-0.00022386573,-0.2037161,-0.22456895,-0.07807088,0.5182091,-0.027539417,0.2910819,0.07374756,-0.0045631714,0.29902285,0.6214487,0.05165613,0.25435895,-0.17903164,-0.31814954,0.07539787,0.01935316,0.24356024,0.045607165,-0.5108663,0.04246967,0.030812431,0.16539565,0.5788237,0.18051676,0.207048,-0.14307891,-0.33230293,0.035422537,0.14758949,0.032458715,-1.431038,0.34700432,0.038287267,0.78758645,0.64553094,0.010792816,0.14668858,0.5317235,-0.122686855,0.073112026,0.421969,-0.014765263,-0.29864383,0.28348494,-0.7699202,0.3339244,-0.07079777,0.11755325,0.121407524,-0.14102615,0.31238177,0.9925064,-0.14518136,0.03173295,-0.17511438,-0.19979914,-0.15427276,-0.26607943,0.09239873,-0.5214056,-0.41901842,0.75216484,0.44758558,0.49338982,-0.20934889,0.07988189,0.10095156,-0.15916465,0.16123754,-0.027408775,0.027896114,-0.05355698,-0.53268576,-0.13482954,0.58971983,-0.071901396,-0.018751284,0.03521783,-0.23152058,0.18831539,-0.059777766,0.0050517824,-0.04645495,-0.62583435,-0.19470438,-0.38353032,-0.2421973,0.2881024,-0.12502415,0.12900649,0.07851526,0.12995014,-0.2168689,0.28936344,0.25511765,0.7428379,0.118615836,0.011441879,-0.21915662,0.31024596,0.10478999,-0.15971951,-0.10259826,-0.15325254,0.20454764,-0.7553601,0.40368998,-0.03644833,-0.4071414,0.17138043,-0.039424144,0.055563435,0.42917594,-0.26785696,-0.23948863,0.092380166,-0.066878825,-0.0651666,-0.23543167,-0.12315134,0.07691464,0.158667,-0.16991606,-0.119924545,-0.21479985,-0.14691705,0.21711329,0.11517088,0.33029917,0.35752818,0.09453127,-0.518082,0.048589915,0.13845539,0.51389676,-0.06746194,-0.13587634,-0.3031754,-0.4953366,-0.3809603,0.21902698,-0.11901705,0.25715607,-0.09255629,-0.24157766,0.71612906,0.16115323,1.3393891,0.019933375,-0.30006862,0.042271502,0.5101028,-0.028231248,0.09351201,-0.39792675,0.99757624,0.6121471,-0.21930267,-0.12741299,-0.48013043,-0.052778408,0.07262147,-0.1757741,0.041683394,-0.09094004,-0.68105924,-0.38287205,0.2810238,0.21484277,-0.018767953,0.019336477,0.0059100688,0.21220498,0.05359085,0.32431838,-0.47253597,-0.031220905,0.24409948,0.27805462,0.053592555,0.058155067,-0.55720353,0.34522474,-0.503228,0.09225313,-0.17758746,0.04239578,-0.19841754,-0.12773491,0.14333218,-0.11728555,0.24770574,-0.4273508,-0.49343586,-0.20455985,0.41041967,0.021606125,0.05126465,0.66197026,-0.22676125,0.0945203,0.04521574,0.41208613,1.0293245,-0.2645388,0.033540823,0.3896476,-0.27334043,-0.4486019,0.016322471,-0.21603274,-0.06864646,-0.023515977,-0.32327998,-0.46038458,0.3616588,0.1070558,0.11396462,0.049514554,-0.6829914,0.024928167,0.33085746,-0.20537427,-0.1434924,-0.16441175,0.10756622,0.7183168,-0.39056206,-0.5766759,0.07027486,0.26363474,-0.19549254,-0.6590604,-0.14799032,-0.30990058,0.3605055,0.22161919,-0.3036175,-0.1939565,0.07573663,-0.44804156,-0.10100937,0.26036233,-0.30526096,0.025409443,-0.29492608,-0.067158096,0.7309532,-0.08963003,0.24139978,-0.46718943,-0.4512794,-0.8731165,-0.23194283,0.19312683,0.262052,-0.072356865,-0.6617424,-0.09092212,-0.26149896,-0.12394957,0.011563063,-0.38115793,0.4539492,0.14940977,0.3868367,-0.19805312,-0.891557,0.15100096,0.20842397,-0.028275289,-0.43262523,0.47060126,0.064499184,0.6522759,0.15599813,-0.001107309,0.18329407,-0.63325906,0.107636124,-0.1624769,-0.0767656,-0.7242565,0.11816088 +540,0.5190452,-0.25818977,-0.28044242,-0.20523398,-0.13307624,0.11555139,-0.06850347,0.51554525,0.21901357,-0.5699329,-0.130034,-0.22012968,-0.01562348,0.28067356,-0.13213348,-0.5370329,0.026533753,0.1867207,-0.38791627,0.52192694,-0.52196664,0.23497605,0.046862464,0.39263248,0.06326459,0.22047058,0.14908396,-0.1613125,-0.23519541,-0.19437878,0.011303084,0.20265998,-0.6060033,0.33045343,-0.17448187,-0.332617,-0.07834854,-0.49719042,-0.44616684,-0.78653985,0.34330246,-0.9652888,0.5044622,0.09031124,-0.18140896,0.34748587,-0.05101112,0.25810042,-0.29864207,-0.0025145356,0.28233936,-0.17213129,-0.050712552,-0.14927784,-0.10575312,-0.18425371,-0.58968246,0.11856927,-0.37608114,-0.12686159,-0.35917607,0.16363427,-0.21980672,0.030147675,-0.08553807,0.37198952,-0.46047583,-0.01793112,0.13734423,-0.14809132,0.34720638,-0.49021286,-0.16997471,-0.11699506,0.17819794,-0.1819958,-0.2040995,0.35579696,0.22788729,0.5223647,0.008900396,-0.21892986,-0.32921368,0.03502339,0.20510796,0.5640992,-0.17672013,-0.632946,-0.16968463,-0.17081822,0.12262235,0.09039237,0.051976006,-0.2418963,-0.057168026,0.02499327,-0.20959057,0.33892804,0.5973605,-0.22246747,-0.32557264,0.32594976,0.59325683,0.102125965,0.04724117,-0.09732266,-0.06539857,-0.45290312,-0.18485881,0.1069413,-0.29602915,0.51981914,-0.044959046,0.13268682,0.7237474,-0.22499646,0.12947305,0.04771923,-0.05779885,0.023554554,-0.3489775,-0.31756037,0.2544386,-0.402824,0.17063081,-0.2784107,0.8763777,0.121444285,-0.7410267,0.5130726,-0.3828779,0.06748947,-0.033223443,0.5921817,0.66728646,0.4518253,0.40580007,0.7446479,-0.62758446,0.024015177,-0.13770841,-0.24353471,-0.016769607,-0.1783965,0.17949389,-0.33476844,-0.0021550101,0.078175224,-0.19235133,-0.09732572,0.5121001,-0.5435704,0.0020862904,0.17764173,0.8396984,-0.3136315,-0.017414523,0.8714805,1.0979576,0.9557892,0.07258296,1.2940766,0.39493516,-0.31776863,0.25957367,-0.2693382,-0.775878,0.26483724,0.32723546,0.24935646,0.009392832,0.23350227,-0.048519082,0.43443868,-0.6178834,0.03956139,-0.1632736,0.36067644,0.018202756,0.0064690784,-0.49521774,-0.2910862,-0.14478625,0.00040531158,0.06499706,0.18869486,-0.35760722,0.27328518,0.06411279,1.7802916,-0.16423178,0.07616373,-0.068799466,0.5456,0.069624744,-0.09913601,-0.09714628,0.23419568,0.31917995,-0.078369774,-0.5711488,0.053760957,-0.15480033,-0.48996305,-0.1384423,-0.24665998,-9.563991e-05,-0.08356537,-0.42155796,-0.19042066,-0.064721845,-0.40396172,0.5000889,-2.5664613,-0.18477903,-0.009285235,0.3261816,-0.21516664,-0.3529298,-0.06883429,-0.47984287,0.46805954,0.38344914,0.39910308,-0.6949088,0.39224574,0.38450652,-0.46682456,-0.14491017,-0.663524,-0.041549463,-0.047229063,0.38112357,0.20554349,-0.08080488,-0.076282926,0.012532075,0.51709235,0.06578245,0.15997496,0.31449717,0.3849353,0.07943255,0.4313183,-0.013663226,0.5582616,-0.2749305,-0.14189373,0.37641844,-0.47322822,0.22538264,-0.3179674,0.2092136,0.34472346,-0.45882514,-0.8484916,-0.89041215,-0.49756685,1.1210641,-0.11290494,-0.46617433,0.30402747,-0.24282338,-0.22695121,0.00050867134,0.55038154,-0.12617566,-0.068655476,-0.7746018,-0.068830006,-0.06884332,0.1914604,-0.031750724,0.071925156,-0.46328872,0.79585886,-0.09857433,0.40775782,0.2797916,0.21659414,-0.15471013,-0.39831686,0.10683364,1.0450066,0.35550103,0.18438552,-0.106724,-0.21203835,-0.20833097,-0.15817595,-0.013047963,0.5176667,0.77397346,-0.002955642,0.03227054,0.2715203,-0.07129613,0.016322926,-0.091436975,-0.3621294,-0.22653624,0.0421029,0.7045041,0.62957144,-0.18114944,0.3873338,-0.341338,0.20546399,-0.13075967,-0.35835978,0.5289607,0.78522,-0.13420808,-0.08935772,0.54716,0.424349,-0.2939637,0.46167496,-0.7614437,-0.3713213,0.44391838,-0.14301327,-0.46935493,0.14709413,-0.32261905,0.14459682,-0.89002705,0.46991786,-0.24044533,-0.70675385,-0.495179,-0.16693582,-3.360561,0.076304436,-0.13871299,-0.12081178,-0.055422373,-0.19522886,0.20754762,-0.49216405,-0.5610424,0.19150934,0.013609686,0.62745446,0.11844268,0.13071005,-0.27923894,-0.07461543,-0.4614274,0.026062336,0.10475143,0.33021027,0.020775547,-0.3911967,-0.023110254,-0.1870433,-0.24502386,0.04761646,-0.5794687,-0.5411281,-0.2189388,-0.4494469,-0.26927635,0.6608597,-0.36729473,0.07172791,-0.20613118,-0.08025585,-0.3685441,0.4197044,0.07761478,0.18782978,0.04603896,-0.2038143,-0.07145584,-0.33383328,0.4147424,0.1618341,0.14827867,0.46419606,-0.23372957,0.127746,0.46467143,0.5796199,-0.0920309,0.9645747,0.4446014,-0.090897314,0.34816557,-0.35752568,-0.1499499,-0.64680946,-0.3319079,-0.04414245,-0.4068884,-0.48075524,-0.053989053,-0.4719284,-0.9071669,0.4492932,0.009811367,0.15130424,0.027297305,0.09690697,0.45926183,-0.17309478,-0.12456922,-0.11004914,-0.05161329,-0.648529,-0.3364951,-0.716165,-0.52109325,0.12918332,0.96377057,-0.007812858,-0.066834435,0.16324724,-0.12255488,0.13562202,0.11250804,-0.19764055,-0.08352012,0.41487542,0.009574183,-0.73176724,0.5801949,0.03872504,-0.17756002,-0.6086284,0.31765977,0.65229034,-0.6623906,0.5792634,0.38630813,0.10527086,-0.0043562567,-0.42237744,-0.28508398,-0.2618207,-0.13888629,0.3170615,0.063191876,-0.84195787,0.46805218,0.45722088,-0.25163943,-0.9638356,0.30943805,-0.068692185,-0.17733094,0.05588132,0.2755303,0.16063856,0.012689168,-0.25052175,0.21196079,-0.64190066,0.36284348,0.28651777,-0.0006484368,0.27865893,-0.1516392,-0.11893896,-0.67846686,-0.17011525,-0.5953684,-0.30372864,0.1268289,0.088456355,0.046718437,0.28889203,0.23406407,0.46660694,-0.19844206,0.10226748,-0.019767238,-0.31165746,0.1882608,0.42637524,0.46423602,-0.42199415,0.58504057,0.0066534854,-0.030745456,-0.1680227,0.12553765,0.38795704,0.1429694,0.37204796,0.012865058,-0.20720336,0.2847729,0.9481339,0.29215154,0.46418524,0.063523166,-0.240448,0.39903164,0.18782659,0.3209804,0.023348536,-0.54298955,0.13495697,-0.18563178,0.11313653,0.34956476,0.23013541,0.37325493,0.005464409,-0.2437607,-0.021927472,0.20695874,-0.22056378,-1.176644,0.41875353,0.028167682,0.87981266,0.5781765,-0.12587228,0.17350934,0.70431626,-0.112841144,0.08531757,0.23980297,-0.19578911,-0.5097927,0.5434341,-0.8034231,0.33950052,-0.09473239,0.07182197,0.013683374,0.00809661,0.4471839,0.6455478,-0.1305049,0.06585181,-0.11551307,-0.18553376,0.2148247,-0.4924154,0.24515586,-0.58083165,-0.26567715,0.7719043,0.54385436,0.36758548,-0.067770176,-0.006543662,-0.008047434,-0.092439756,0.112722084,0.059414305,-0.036877666,0.060401924,-0.6519886,-0.18816338,0.5614196,-0.06711644,0.18591945,0.052594792,-0.37764493,0.2444994,-0.25805736,-0.23398979,-0.0044099456,-0.7033367,0.053329997,-0.3000376,-0.27879956,0.44864908,0.048335142,0.28695995,0.19489965,0.07184259,-0.1870056,0.22047962,0.18224187,0.74056536,0.14438042,-0.25985566,-0.4950826,0.17654082,0.25614807,-0.3610335,-0.0009256474,-0.17668726,-0.10398691,-0.66856575,0.42811838,-0.104357064,-0.28466564,0.28549367,-0.17505002,0.04029704,0.68802696,-0.19753551,-0.12091797,0.05125314,-0.2572197,-0.2722351,-0.10088384,-0.071534984,0.29008928,0.20162311,-0.032405846,-0.009429149,-0.07847254,-0.1233034,0.441508,0.12315468,0.32947585,0.3371737,0.04374546,-0.32057914,-0.10109925,0.124723956,0.5257436,0.036258917,-0.14361665,-0.14670287,-0.4112884,-0.38606954,0.074663214,-0.12170297,0.31122366,0.045978326,-0.3887978,0.71213686,0.039310317,1.0822277,0.2082574,-0.25389996,0.13838977,0.5608953,-0.003499789,0.055717833,-0.5209642,0.9099525,0.48552886,-0.09064714,-0.038772207,-0.3435752,-0.090039596,0.37085888,-0.213678,-0.049910817,-0.078014016,-0.80773586,-0.29626665,0.22417453,0.32957605,0.08155363,-0.032947604,0.08181038,0.17004661,0.026138488,0.4123574,-0.60540295,-0.1326388,0.44346806,0.25353575,0.016669432,0.05306379,-0.28701356,0.38628736,-0.5592948,0.004975515,-0.1993902,-0.011028002,-0.33637482,-0.28130823,0.27263024,0.13157064,0.40443844,-0.29148695,-0.44697067,-0.2271827,0.49332008,0.18844049,0.19369711,0.52868515,-0.26260373,-0.039134163,0.12701397,0.5174037,1.1296697,-0.28039506,0.14875484,0.40952176,-0.39709014,-0.5171492,0.45398584,-0.19286117,0.1403465,-0.0041977507,-0.34455207,-0.5715831,0.29002288,0.24325036,-0.13826312,0.17563283,-0.69979125,-0.17241669,0.2070686,-0.25944382,-0.25474587,-0.26823077,0.11943468,0.74258167,-0.38577485,-0.31506062,0.23996043,0.30399033,-0.3613754,-0.60860014,-0.18858555,-0.50398654,0.41069052,0.040154338,-0.4389861,-0.09873917,-0.041906733,-0.41692182,-0.02913265,0.055860903,-0.435687,0.07937329,-0.3975907,0.045981746,0.86705583,-0.005041097,0.18524453,-0.6927243,-0.36554185,-0.9686455,-0.34557822,0.521479,0.24814503,-0.032124784,-0.40024135,-0.02849414,-0.092792764,-0.05450511,0.028014554,-0.5222566,0.42598563,0.14208268,0.4236713,-0.124077305,-0.7683272,0.03703916,0.16600393,-0.09858662,-0.5232851,0.44912523,-0.027323186,0.80155194,0.012373729,0.01693448,0.18851617,-0.64590484,0.012321419,-0.26337197,-0.22439767,-0.66417027,0.1901152 +541,0.46070936,-0.19075465,-0.44737095,-0.22102329,-0.18991594,0.0015873994,-0.27012843,0.33230135,0.14434595,-0.7463569,-0.11978583,-0.28784242,0.033184264,0.07789111,-0.26427338,-0.38419458,0.0021051702,0.17211446,-0.53770864,0.64787287,-0.3126753,0.30989757,0.14294727,0.3308633,0.18522072,0.26013198,0.1456444,-0.15375005,-0.09070264,-0.20408764,-0.08587804,0.36335394,-0.549972,0.22521842,-0.15873067,-0.29050106,0.040319365,-0.53125876,-0.34221438,-0.83282334,0.29593387,-1.028884,0.5504218,0.07812268,-0.22407582,0.127721,0.3632248,0.23408826,-0.005970027,0.058686316,0.2484924,-0.1196937,-0.023962319,-0.14499965,-0.21789792,-0.5397487,-0.5463773,-0.038980458,-0.39411947,-0.25093266,-0.47541544,0.12598836,-0.35753986,-0.02094558,-0.089322925,0.6651772,-0.44560024,0.11988122,0.17360224,-0.10276849,0.6296363,-0.5097002,-0.13185583,-0.23807715,0.37115532,-0.35246128,-0.22557423,0.18436949,0.37927008,0.3690446,-0.030010585,-0.124936104,-0.11485613,-0.21885109,0.21360905,0.4806467,-0.010342787,-0.50536495,-0.1238636,-0.0009467261,0.1897175,0.3124682,0.1581382,-0.38578114,-0.11204074,-0.05212199,-0.29674855,0.5937808,0.46666268,-0.26449198,-0.19662812,0.2823273,0.4917175,0.15214992,-0.19744785,0.087739035,0.027864996,-0.6073193,-0.15557657,0.11245848,-0.14479665,0.49604106,-0.20252459,0.33299485,0.68594646,-0.17619804,-0.08880835,-0.0093736565,0.032994848,-0.24534146,-0.20114551,-0.26099062,0.23637894,-0.4973693,0.16014624,-0.120479636,0.7733072,0.064822756,-0.6749433,0.2168806,-0.69757175,0.02950255,-0.14289232,0.48617974,0.6131758,0.4116594,0.41195112,0.65505993,-0.4102704,-0.04515322,-0.07796453,-0.46002966,-0.08725158,-0.24615279,-0.0048888326,-0.4896164,-0.033595104,-0.07437853,-0.039319776,-0.10894464,0.45025247,-0.53845483,-0.049883973,0.06712138,0.8421885,-0.3413071,-0.031344812,0.70331234,0.80885315,0.9551035,0.17095795,1.0570896,0.18874943,-0.25331283,0.12165881,-0.13882415,-0.71429247,0.48166603,0.48163393,-0.20279762,0.16102542,0.12713917,0.08562336,0.2823698,-0.48783943,-0.056219798,-0.25558394,0.103275195,0.08536389,-0.16563939,-0.38946792,-0.1830773,0.008649264,0.04586635,0.19290476,0.037681498,-0.17105304,0.39579266,0.15402003,1.4801512,-0.22009026,0.14981076,0.16714922,0.37490946,0.25946468,-0.1153657,-0.112266876,0.38525146,0.3684321,0.33745456,-0.5315021,0.10863508,-0.18471263,-0.36036688,-0.13739152,-0.3786123,-0.029613184,-0.05173077,-0.5152,-0.12678318,-0.193276,-0.38618717,0.33388934,-2.5909514,-0.22558078,-0.22466834,0.38326263,-0.23080046,-0.18550666,-0.12208356,-0.4429172,0.47326994,0.27961856,0.49335125,-0.60449374,0.30533132,0.50919586,-0.43608353,-0.16928218,-0.6028274,-0.1879036,-0.12595643,0.2656,0.019482514,-0.01656809,-0.0012611406,0.21405147,0.45292228,-0.068205245,0.12508318,0.2520345,0.5553151,0.0042225486,0.7276955,-0.07788719,0.41902187,-0.15155695,-0.24290243,0.3018952,-0.24169837,0.12847464,-0.07113643,0.119613506,0.6010265,-0.5178853,-0.7848158,-0.7785476,-0.48739418,1.1482166,-0.2500204,-0.4429132,0.15924338,-0.2920423,-0.4009774,-0.023941722,0.5565399,-0.14512838,0.105771266,-0.8993251,0.029347632,-0.14451313,0.30722946,0.053318582,-0.06975235,-0.51735973,0.68899286,0.027767641,0.55971247,0.31596655,0.11791329,-0.45909443,-0.5209578,0.034780294,1.046466,0.30813095,0.09339379,-0.30463403,-0.13909325,-0.29340306,0.15775199,0.05444341,0.5541713,0.5889679,-0.037268996,0.25652987,0.27391347,0.08989757,0.044307504,-0.17458291,-0.22218286,-0.16260271,-0.16776207,0.57247037,0.466978,-0.10966221,0.44751713,-0.14564261,0.3586259,-0.20291568,-0.42288256,0.5055782,1.2499007,-0.13301584,-0.34105065,0.7684523,0.50043195,-0.24360763,0.36104298,-0.5570567,-0.2734981,0.5126963,-0.26081342,-0.58967274,0.21822047,-0.34257942,0.17902468,-0.9283904,0.32699987,-0.26552996,-0.51311284,-0.5125806,-0.07960071,-3.4321027,0.23914878,-0.12986258,-0.2575005,-0.19010891,-0.20743951,0.24830219,-0.5392637,-0.6366302,0.19423877,-0.032425847,0.83358943,-0.14054379,0.048233297,-0.16697825,-0.32857245,-0.15649213,0.13278653,0.14537606,0.25255585,-0.036396574,-0.43987986,-0.029103573,-0.090749666,-0.49892673,0.017623423,-0.45461348,-0.51091546,-0.076075755,-0.51812255,-0.4448507,0.6432592,-0.23551203,0.087448426,-0.15949766,-0.033112515,-0.036848713,0.3756364,0.047209147,0.32449144,-0.04230138,0.020417849,-0.13356413,-0.24061169,0.32427257,0.0670976,0.015003903,0.21353279,-0.23352115,0.24960926,0.43499878,0.51785964,-0.06579567,1.0368136,0.47894213,0.011037922,0.23129804,-0.22907844,-0.4125362,-0.622796,-0.23474357,0.11774964,-0.42655092,-0.49279505,-0.06569909,-0.22398531,-0.67885256,0.66230166,-0.031651232,0.17035246,-0.08142527,0.31023124,0.3813313,-0.18471913,-0.07762623,0.039807446,-0.21916984,-0.48525223,-0.17777275,-0.5485196,-0.41137686,-0.07601182,0.9336225,-0.19453035,0.11318209,-0.02832058,-0.122351594,0.038227003,0.1325377,0.039903786,0.29213238,0.51638305,-0.07301862,-0.7763921,0.48883197,-0.1660401,-0.18546076,-0.5671962,0.1734333,0.8388263,-0.6847497,0.5102927,0.40660954,-0.0517107,-0.4456469,-0.49965903,-0.22046028,0.0019476755,-0.34959173,0.41901827,0.24845171,-0.81228954,0.40779802,0.32454687,-0.06295215,-0.75970954,0.6901831,0.018238416,-0.34775713,0.14377023,0.4325829,0.032325026,0.07796095,-0.25668186,0.29284135,-0.29974207,0.22098766,0.19563672,-0.0648913,0.21399538,-0.19010046,0.034706473,-0.7697268,-0.037591957,-0.5491894,-0.31475472,0.3490599,0.037778,0.05101455,0.46392304,-0.10232393,0.4018932,-0.22925816,0.06938108,-0.16865978,-0.14809974,0.24919094,0.3920626,0.40035793,-0.39507386,0.65785754,0.10974187,-0.11931438,-0.113751315,0.1717714,0.46299663,0.048796397,0.5087224,-0.09508143,-0.27350232,0.38943225,0.8624183,0.1423827,0.5347348,0.14194383,-0.0536997,0.23528273,0.16231439,0.32791567,-0.07951302,-0.6031208,-0.058053337,-0.3923474,0.07441368,0.47770327,0.048844926,0.23132399,-0.13059933,-0.41816407,0.030966401,0.23898955,0.09413675,-1.2559927,0.35984167,0.2595108,0.744174,0.46782997,-0.0075600552,0.049007952,0.7169825,-0.14282045,0.08070064,0.29073793,0.0925296,-0.40089175,0.52468437,-0.7008137,0.30241945,-0.067515425,-0.08413851,-0.051279243,-0.10106256,0.3594549,0.8611022,-0.16988352,0.13233604,0.015742056,-0.23080035,0.4026546,-0.51407105,-5.264793e-05,-0.45380408,-0.33536768,0.5733825,0.529895,0.3663888,-0.21156211,0.117030226,0.051326316,-0.16708292,0.08588327,0.19162926,0.037591882,-0.092968,-0.70663023,0.008580208,0.5461823,0.21663283,0.16583297,-0.03787783,-0.17531323,0.25538927,-0.07071145,0.11272343,-0.12031497,-0.7572866,-0.18720445,-0.3325358,-0.429499,0.40114993,-0.2503269,0.2566074,0.23443747,0.059800297,-0.1264852,0.3145152,0.23621416,0.60686386,0.16139923,-0.13439113,-0.38251457,0.18234482,0.11878472,-0.23737358,-0.123354636,-0.37256053,0.1547385,-0.6624637,0.36598486,0.027507534,-0.45193774,0.17730989,-0.049674876,-0.03186258,0.62980705,-0.06281131,-0.12860267,0.014846512,-0.19902705,-0.15507376,-0.19779982,-0.04519147,0.24927227,0.13636352,0.043141466,-0.18801682,-0.0145301325,-0.32639986,0.34152898,0.061907716,0.6037415,0.42025205,0.11670057,-0.1502659,-0.011956432,0.10683049,0.5400249,-0.013241397,-0.14530008,-0.1548544,-0.48154134,-0.2594365,0.088286914,0.04838689,0.31253046,0.16336298,-0.18669772,0.8005972,-0.07325376,0.92095226,0.021953242,-0.43839216,0.042591717,0.42367622,-0.043005444,-0.13353518,-0.31555352,0.8194839,0.46151283,-0.041968025,-0.13088836,-0.23536791,0.021256091,0.0048753535,-0.17959738,-0.14092557,-0.02579473,-0.6667247,-0.3353205,0.173241,0.2885186,0.13005841,-0.101235114,0.00016155413,0.30530658,-0.09969431,0.33664083,-0.51418364,-0.09137595,0.23382904,0.3377781,-0.05998562,0.06126448,-0.4232562,0.4944888,-0.4309192,0.11501817,-0.36818442,0.2563955,-0.29411554,-0.19211249,0.25782114,-0.059780873,0.40796188,-0.3078077,-0.28905058,-0.22172871,0.44885603,0.09244267,0.110765405,0.52898103,-0.22205839,0.15159278,0.1038411,0.5700578,1.020898,-0.19524479,0.095352374,0.42639518,-0.40582004,-0.56230813,0.30500504,-0.34849748,0.10249252,0.143185,-0.17693904,-0.26353168,0.18907015,0.18245338,0.1451822,-0.059424873,-0.628188,-0.20748027,0.44355896,-0.24674447,-0.15552095,-0.23067543,0.061669465,0.40281466,-0.21570112,-0.28005642,0.0012918072,0.17029865,-0.23799971,-0.6563713,-0.22415839,-0.34234914,0.36514035,0.108976856,-0.32298613,-0.10941016,-0.016548842,-0.5107885,0.19147067,0.08505658,-0.34292814,-0.024192136,-0.30471244,-0.19129749,0.98382384,-0.2922385,-0.16485927,-0.37348786,-0.46817106,-0.8013772,-0.22793637,0.4981139,0.0883111,0.15304056,-0.39010695,-0.037714157,-0.09818648,-0.06701531,-0.059879035,-0.30787128,0.3680577,0.17418239,0.6000972,-0.10076071,-0.8848596,0.1262537,0.020700326,-0.24095045,-0.62617916,0.6362471,0.008905726,0.64895695,0.034239825,0.12271856,0.33340353,-0.42981243,-0.122130975,-0.11079568,-0.13422522,-0.8026416,-0.023888567 +542,0.40442163,-0.08123167,-0.6056547,-0.16819912,-0.11548204,0.12582904,-0.16457354,0.3861938,0.24139209,-0.57544583,0.019221505,-0.1380443,0.15153152,0.35569292,-0.1725809,-0.5044201,0.032734226,0.12909347,-0.49027568,0.3221062,-0.41953653,0.12741166,-0.0722337,0.31730187,-0.025165025,0.29910722,0.1485233,-0.1865643,-0.22512512,0.0025541463,-0.038138323,0.21283272,-0.42616904,0.0195658,-0.21043468,-0.21442154,0.047116317,-0.50392365,-0.55756444,-0.4750412,0.2697921,-0.7512556,0.5374317,0.20556338,-0.2236019,0.29409888,0.12256398,0.1643001,-0.1419254,0.007970095,0.25140652,-0.19135343,-0.050286707,-0.30701068,-0.50710374,-0.4173355,-0.63686424,0.016453655,-0.46704683,-0.084633775,-0.28034678,0.050777555,-0.20386457,-0.13815099,-0.061498247,0.41751137,-0.31999677,-0.12563531,0.2391749,-0.10615802,0.38456213,-0.41537544,-0.15988533,0.03483314,0.2089818,-0.31056228,-0.14790876,0.29693907,0.24335714,0.5252275,-0.13660456,-0.16799815,-0.49529022,0.021595526,0.12631041,0.5223433,-0.36398697,-0.23947555,-0.12432846,-0.06540878,0.012418326,0.20017369,0.083569564,-0.38193217,-0.050902344,0.12088564,-0.16640557,0.35349256,0.5921717,-0.33706185,-0.27352592,0.32733336,0.4129138,0.09023586,-0.2085221,0.04619504,0.047906827,-0.6035566,-0.22602458,0.23460184,-0.08471303,0.55065984,-0.04001383,0.24688905,0.6699047,-0.06407554,0.042376336,0.04506607,0.12215665,0.080776915,-0.27913803,-0.051217444,0.16142768,-0.5390567,0.091703154,-0.11036103,0.60023665,0.13714263,-1.0163794,0.4236026,-0.45667565,0.11891305,0.034049317,0.39704028,0.66087306,0.32645336,0.17437236,0.6410806,-0.5883756,0.10671806,0.01634549,-0.43908235,0.21797352,-0.023597471,0.04411515,-0.63107437,-0.21807712,0.18461987,-0.016700847,0.20308219,0.37512964,-0.4023948,-0.0581223,0.3933917,0.9511436,-0.25813672,-0.13609505,0.53107285,1.0509137,0.8122865,0.06987946,1.2067205,0.032219205,-0.21678302,0.4146429,-0.45112324,-0.827004,0.20578642,0.27369243,-0.08732664,0.31386292,0.20336756,0.122685194,0.36846834,-0.40719974,0.12969166,-0.11589073,0.09763624,0.041723046,-0.08073279,-0.33485857,-0.2897376,-0.06616119,-0.15018041,0.036390748,0.2623325,-0.15099292,0.23953393,0.06812994,1.5751191,-0.044978146,0.16620535,0.14277591,0.52211124,0.15894076,-0.066616274,-0.2391009,0.34549272,0.3071578,0.124911405,-0.3346106,0.037237413,-0.23078607,-0.42013216,-0.13482854,-0.40814734,-0.09584619,-0.012111904,-0.6387438,-0.03787052,-0.0138065135,-0.5877527,0.5923494,-3.0001588,-0.055710666,-0.028506227,0.39885297,-0.20607813,-0.36721045,-0.1978909,-0.45700464,0.50227153,0.3463092,0.35671017,-0.6097113,0.44118786,0.43691355,-0.37586215,-0.034354124,-0.677391,-0.113170385,-0.16064616,0.21741988,0.035387453,-0.078068495,0.08108146,0.32282346,0.4208648,-0.08580421,0.035527576,0.15323423,0.24251394,0.13158907,0.40061933,-0.079218976,0.48492584,-0.31268248,-0.22301564,0.28247052,-0.43069908,0.04721039,0.048336107,0.15924694,0.38467172,-0.40704778,-0.8663333,-0.54176676,-0.19924137,0.9437541,-0.194537,-0.19839248,0.4505013,-0.35510364,-0.5248245,-0.12968987,0.46366245,-0.0020316492,0.06141912,-0.769205,-0.04386504,-0.061893288,0.06710594,-0.043087896,0.087775186,-0.3732501,0.51766104,-0.0759377,0.5568269,0.3699414,0.15465643,-0.34759566,-0.31850478,0.051756285,0.8571453,0.14962134,0.22531568,-0.07673324,-0.18938926,-0.220764,-0.14189383,0.09203492,0.42089608,0.65293825,-0.08021048,0.040816884,0.29334864,0.0035381773,-0.0006641666,-0.09007309,-0.30919763,-0.061366737,-0.013069626,0.49385267,0.5815024,-0.17614664,0.33075988,-0.1071584,0.20826514,-0.29130477,-0.34214363,0.5047706,0.7822544,-0.11923668,-0.24404725,0.52258575,0.48718387,-0.36659,0.42352235,-0.54432815,-0.21703626,0.3677247,-0.17232116,-0.5281635,0.1376244,-0.27621493,0.10931907,-0.70345145,0.36138353,-0.08928741,-0.5565757,-0.3606208,-0.21342705,-3.7484941,0.1135875,-0.31698242,-0.24421015,0.09917816,-0.03562154,0.24850792,-0.59363014,-0.33293897,0.17227268,0.0637794,0.68085986,-0.02270337,-0.0008588314,-0.32792467,-0.22862455,-0.42714664,0.2260301,0.12128305,0.33607987,0.03148444,-0.38862106,-0.006755646,-0.30501387,-0.438517,0.07882186,-0.66919124,-0.32066664,-0.20059116,-0.547961,-0.49754703,0.65296835,-0.38147697,0.028314868,-0.32191196,-0.026321758,-0.20739625,0.50367796,0.1882268,0.22023672,-0.08353199,0.022636019,-0.09661916,-0.32451364,0.3380394,0.058313694,0.27293503,0.48422757,-0.014656887,0.15795197,0.5427446,0.69297576,-0.030803012,0.853639,0.5277909,-0.033244465,0.36326542,-0.322524,-0.15621088,-0.5241208,-0.43398544,-0.04119315,-0.42947558,-0.495792,-0.14891683,-0.3748618,-0.6685139,0.51758903,0.028504014,0.13673791,0.04017908,0.059303537,0.37930673,-0.38779387,-0.07347205,-0.07014886,-0.17408492,-0.43505695,-0.22757745,-0.6495183,-0.6232826,0.17880979,0.86824787,0.015522566,0.00090084475,0.13434651,-0.24151418,0.070069045,0.26332188,0.09174445,0.27602798,0.41884714,-0.08565818,-0.5779466,0.4876122,-0.17686033,-0.25464457,-0.6716124,0.12808451,0.46908206,-0.60537255,0.8255456,0.31517,0.15126783,-0.22277735,-0.53462297,-0.3979751,-0.09821275,-0.19146729,0.48231933,0.16739537,-0.9301793,0.3937098,0.3373383,-0.34159335,-0.5795872,0.558829,-0.014851188,-0.109344214,0.06788782,0.30000108,-0.08848643,-0.081091516,0.08003749,0.23117085,-0.42254582,0.32893947,0.41800186,0.11903105,0.4891686,-0.20488565,-0.066349275,-0.6359942,-0.13484058,-0.56312734,-0.22317266,0.27112296,0.05607494,0.14985372,0.13754426,-0.06564642,0.30620968,-0.38096467,0.19468366,0.019565642,-0.31898203,0.3046161,0.36035487,0.4621755,-0.29839134,0.5416137,-0.15273425,-0.098465726,-0.06086874,0.09621586,0.4874147,0.20681718,0.3490301,-0.12259617,-0.26881352,0.19579177,0.79427874,0.14219648,0.3755613,0.14067243,-0.120031714,0.21268173,0.093881935,0.0012795528,0.047250643,-0.42937025,0.012777378,-0.17561558,0.3116453,0.31051067,-0.0079833465,0.30803692,-0.20127797,-0.22180298,0.043738764,0.23398356,-0.030399524,-1.3152848,0.2956077,0.23801205,0.7509679,0.4224254,0.07035017,-0.13400714,0.5786928,-0.10242233,0.19551611,0.26652965,-0.19185114,-0.56209296,0.510366,-0.5671568,0.54265076,-0.02613899,-0.10114645,0.06784757,-0.0018281654,0.3587522,0.796125,-0.08298149,0.15065564,0.08630352,-0.27999762,0.26481918,-0.38603157,0.23687258,-0.48718184,-0.24056077,0.64144015,0.5472791,0.4944003,-0.11693453,-0.034229632,0.04051752,-0.16217558,0.09168022,0.047263548,0.12365634,-0.020405002,-0.71955925,-0.3245416,0.45217654,0.04864826,0.1321517,0.13598041,-0.17268063,0.25681317,-0.20383257,-0.01584537,-0.09850068,-0.5945017,0.027962986,-0.1898621,-0.45659977,0.5162639,-0.2811966,0.32828522,0.2232822,0.15022616,-0.34753767,0.5945737,0.1983313,0.8142888,-0.045667242,-0.11127166,-0.49163967,0.047867797,0.22743173,-0.1737002,-0.013891022,-0.5312694,-0.022971185,-0.5422159,0.3342931,-0.018096784,-0.19324191,0.028737184,-0.071358405,0.20080802,0.6096227,-0.13091625,-0.25469705,-0.0903944,0.11084136,-0.29966697,-0.09073779,-0.10668739,0.28700578,0.06199495,-0.046238128,-0.025146667,-0.15466881,-0.007247631,0.21321079,0.1324916,0.3790287,0.40678692,0.11657388,-0.3118717,-0.032521542,0.19699615,0.47502175,0.05605821,-0.024291592,-0.27082887,-0.35342452,-0.25867656,0.102861516,-0.12632567,0.2869629,0.136403,-0.117317446,0.69344574,-0.15268378,1.0766796,0.18151958,-0.22733116,0.031913195,0.38966998,0.023252197,0.040859576,-0.41025078,0.8226144,0.59307647,0.008558678,-0.20109305,-0.26692465,0.0042661824,0.2006708,-0.19508366,-0.14069447,-0.032011967,-0.75411165,-0.08047335,0.10235042,0.16435657,0.3971958,-0.11050156,0.036255524,0.20979944,0.04455695,0.22672892,-0.4517458,-0.0069828867,0.2908512,0.42140776,0.0395617,0.21158628,-0.3776851,0.41965505,-0.38485998,-0.093783125,-0.19425559,0.0975925,-0.16897024,-0.33387688,0.16578704,-0.008538397,0.44770786,-0.100067444,-0.22681968,-0.16833471,0.51851207,0.20240897,0.2940588,0.68809336,-0.15999451,0.013917879,0.049218122,0.42281106,0.99714625,-0.19708459,-0.093996815,0.46524334,-0.2780272,-0.74622154,0.09917723,-0.373542,0.31131217,-0.13772412,-0.22201914,-0.33909687,0.22100642,0.10379359,-0.13873006,0.19520734,-0.44082865,-0.21902353,0.19778076,-0.3126455,-0.32414767,-0.36091194,0.14009267,0.60273683,-0.31638357,-0.13549486,0.13123444,0.17295106,-0.07792045,-0.46240193,0.08883119,-0.33221582,0.13732024,0.11511079,-0.45836112,0.05942426,-0.081147425,-0.26828042,0.24951321,0.23565947,-0.34520617,0.059329167,-0.22124977,-0.23362795,0.9004616,-0.1340279,0.10930226,-0.5446579,-0.5124388,-1.0169582,-0.42726192,0.39859846,0.028733628,0.015436019,-0.49476385,-0.053150535,0.034338497,0.019477606,-0.06376112,-0.37611148,0.3985359,0.085941225,0.3751416,-0.10830288,-0.6069002,-0.03569002,0.17906937,-0.22445525,-0.58518684,0.57297903,-0.116414025,0.89877665,0.12657101,0.094147034,0.34858236,-0.41948527,0.060816135,-0.38234884,-0.12912926,-0.61778045,0.059449792 +543,0.4056616,-0.17708063,-0.62789726,-0.057793196,-0.23298539,-0.27565858,-0.110915095,0.71206367,0.22970016,-0.4098967,-0.04764477,-0.23650089,0.062159237,0.4977514,-0.23947753,-0.75994086,-0.13953789,-0.007587231,-0.4031391,0.49155384,-0.34696645,0.13226713,-0.10506361,0.52480817,0.31698215,0.18709938,0.060675126,-0.013976806,-0.18689595,-0.022593472,-0.016241623,0.37776878,-0.529919,0.1338542,-0.14341788,-0.36030075,-0.057922244,-0.5604851,-0.37469038,-0.79474545,0.3503853,-0.6470304,0.37271002,0.1678574,-0.3283299,0.16140778,0.16367984,0.36270824,-0.26439258,-0.1556986,0.096587405,-0.045689683,0.032343682,-0.18042172,-0.39251283,-0.35425457,-0.6167449,0.2484152,-0.41898024,-0.10752074,-0.14700936,0.16184415,-0.33276218,-0.08338167,-0.12650847,0.6015471,-0.4270106,0.09372859,0.36072716,-0.094410196,0.38730007,-0.50797075,-0.2527195,-0.07107416,0.056859348,-0.3344164,-0.3740252,0.35997778,0.31854022,0.4172443,-0.077708475,-0.24323827,-0.36705458,0.12268224,0.05627755,0.5174646,-0.378116,-0.62794536,-0.11958117,0.08897717,0.047461573,0.36116594,0.21841358,-0.3780743,-0.10436766,0.1019461,-0.16567662,0.5370228,0.55328697,-0.24008428,-0.13963313,0.22129895,0.35577348,0.20414092,-0.15521277,-0.005848316,0.088055834,-0.7177341,-0.11633541,0.17973782,-0.0071186377,0.50151896,0.0023412073,0.12430028,0.58177125,-0.14432329,-0.11547151,0.1093164,0.047702946,0.1019938,-0.6068541,-0.10294028,0.25971058,-0.38325393,0.23055857,-0.18701246,0.68618834,0.19335777,-0.8664248,0.28037953,-0.72095406,0.09451255,-0.18713567,0.317743,0.6993274,0.39054933,0.39268976,0.6658549,-0.3867995,0.16499883,-0.08603401,-0.42465594,0.052668452,-0.11013405,-0.11377284,-0.42465293,-0.18996364,-0.13404319,-0.08197955,0.21845095,0.18231465,-0.6271934,-0.10613743,0.16244744,0.919773,-0.20768449,-0.1842579,0.80187356,0.89483684,0.9787015,0.019570043,1.0648996,0.080579445,-0.0574307,0.39254856,-0.20477489,-0.69490397,0.25397483,0.22278753,-0.54184854,0.0850978,-0.09008607,-0.05290886,0.54768854,-0.24974498,0.1633096,-0.21360885,0.25496346,0.21289983,-0.21988407,-0.40911546,-0.3003139,-0.1738925,0.00018906823,-0.09017886,0.26516947,-0.07346081,0.23995763,-0.23301473,1.6803752,0.0839104,0.18611974,0.19832823,0.5032337,0.23420373,-0.20342717,-0.18846567,0.03435523,0.17218648,0.2443303,-0.4626148,0.22888035,-0.21405488,-0.46922684,-0.054794285,-0.41242725,0.008649762,-0.2697591,-0.6612251,-0.01822311,-0.10030385,-0.14451799,0.5005915,-3.0144718,-0.13750051,-0.045316383,0.22604224,-0.23346618,-0.4607271,-0.106895216,-0.47815847,0.6678772,0.23438343,0.56192863,-0.5491691,0.30354622,0.3475444,-0.42919478,-0.0507713,-0.6660324,-0.1186546,0.054470595,0.23961791,-0.021438777,-0.032388683,0.18348251,0.03192785,0.5193268,-0.23353139,0.04960672,0.05070857,0.39268377,-0.024011303,0.57155854,-0.2710603,0.50502867,-0.4208083,-0.38962042,0.2667317,-0.40227082,0.2056579,0.16958894,0.092147045,0.37203085,-0.47872654,-1.1455042,-0.5210578,-0.25269535,0.8032369,-0.13353515,-0.34016603,0.37792173,-0.38968483,-0.10541907,-0.15957655,0.37283128,0.1164834,0.12681518,-0.8007657,0.0073434734,-0.16362938,0.06371395,-0.009426295,-0.17866296,-0.27387697,0.4090495,-0.03997226,0.23530036,0.6248645,0.09991591,-0.42247465,-0.5411512,0.03528411,0.91621876,0.18434307,0.16350082,-0.13657348,-0.18486391,-0.28361666,-0.13120781,0.12124907,0.590634,0.695064,-0.07041013,0.12283058,0.22365001,0.12073333,-0.040314138,-0.08241645,-0.36386302,-0.14454235,-0.02999845,0.6689377,0.8587227,-0.060433313,0.6008114,-0.06667708,0.427002,-0.17683141,-0.34180447,0.5271519,1.0357609,-0.06720089,-0.43301246,0.6779693,0.48099026,-0.24569637,0.41246703,-0.3118266,-0.20024869,0.51793545,-0.20155074,-0.49356332,0.25421807,-0.26239502,0.045515444,-0.9217483,0.16365074,-0.37483957,-0.3058109,-0.51431113,-0.21317913,-3.4372673,0.24406657,-0.33354643,-0.13839945,-0.08665712,-0.112636514,0.02774999,-0.54677,-0.645028,0.15249854,0.17532825,0.7174213,-0.21586895,0.1419501,-0.21567138,-0.17560457,-0.109207705,0.08417818,0.3381114,0.3235394,-0.009889419,-0.34184378,-0.27540705,-0.21331567,-0.6519941,0.22629294,-0.71873105,-0.48410732,-0.20876637,-0.75931066,-0.40259218,0.79947305,-0.34870714,-0.12679985,0.004176649,0.109668225,0.05911828,0.34694782,0.1699729,0.35256514,0.035648104,-0.026612502,0.07531184,-0.19112776,0.09520899,0.10422177,0.45666042,0.24511415,-0.06393749,0.38260084,0.589541,0.8383003,-0.05098444,0.8192478,0.5934091,0.010724019,0.25045794,-0.3601392,-0.31153804,-0.45909372,-0.3119567,0.028871408,-0.36302382,-0.37076157,0.056718692,-0.37520742,-0.64077157,0.74619514,-0.116131864,-0.046039782,-0.00045221357,0.21725038,0.47476518,-0.39736712,-0.13568202,-0.05545872,-0.014703374,-0.5401324,-0.3056395,-0.47819468,-0.66686887,-0.039548054,1.0788167,-0.19953893,0.02287221,0.012048547,-0.16867083,-0.049511082,0.14510801,-0.05236957,0.3153709,0.23892404,-0.06128988,-0.6660592,0.4562672,-0.2085008,-0.25478303,-0.5230991,0.2578664,0.56348294,-0.5820734,0.7188726,0.26362637,0.057705063,-0.11481536,-0.6573089,-0.20080318,0.14536446,-0.078132406,0.4111219,0.24877785,-0.87320733,0.46228558,0.6660135,-0.29050198,-0.8068327,0.48185286,-0.011647075,-0.30966237,-0.13584942,0.31675756,0.15106069,-0.07323671,-0.07572002,0.31013906,-0.38549036,0.18552233,0.26235145,-0.021512188,0.36551717,-0.19018191,0.03163954,-0.68228555,0.21671098,-0.5055781,-0.29711148,0.40890986,-0.008034321,0.04130787,0.13213499,-0.009337529,0.25029048,-0.24912558,0.059996467,-0.14923836,-0.26678863,0.19016251,0.49956182,0.52252054,-0.5562806,0.46838978,0.03327863,-0.018556166,0.20940682,0.13438685,0.46179432,-0.11488458,0.40242708,-0.183763,-0.206747,0.24860327,0.79089016,-0.029747518,0.42666963,0.043799594,0.032239463,0.11728729,0.037309144,0.055155627,0.111880675,-0.5511936,0.24558797,-0.03994097,0.26893032,0.54300684,0.010514711,0.3040813,-0.103705406,-0.44119638,0.014338945,0.3527698,0.11708852,-1.4094315,0.4762351,0.16855201,0.8811947,0.4724004,0.2598173,-0.07918271,0.63050365,-0.03154432,0.18892384,0.41551006,-0.13297707,-0.41077846,0.5176344,-0.65795255,0.6926998,-0.068494014,-0.034195356,0.032471158,0.08291514,0.52543426,0.74081874,-0.12697554,0.03498042,0.15834707,-0.34304354,0.21284005,-0.49842644,0.13975972,-0.44217843,-0.3141955,0.6075278,0.686106,0.22442244,-0.18388622,-0.044030324,0.3913115,-0.05666434,0.12727812,-0.15508445,0.07776785,0.089928776,-0.67773175,-0.18495281,0.6145408,-0.031913407,0.26325417,-0.12625928,8.812318e-06,0.31755707,-0.1364609,-0.13822879,-0.21330807,-0.75042504,0.14051278,-0.54112047,-0.46560666,0.34366444,-0.22497654,0.20123388,0.24057946,0.12297675,-0.5295065,0.7357447,-0.11268951,1.0297828,-0.3447035,-0.11138638,-0.47039992,0.22577778,0.26049095,-0.15842448,-0.22783767,-0.43613333,0.03247368,-0.4753531,0.4414372,0.011787627,-0.3630218,-0.16994959,0.0756473,0.024973579,0.50587934,-0.15419616,-0.058744356,-0.12868603,-0.22676903,-0.2010011,-0.11809091,0.0065276003,0.25042313,0.23388785,-0.01582264,0.053961232,-0.10650235,-0.012244491,0.48669037,-0.058878668,0.46741125,0.2922828,0.2674726,-0.16798022,-0.0964405,0.2821328,0.66524786,-0.04249612,-0.1990328,-0.3589562,-0.15488683,-0.25051105,0.14606191,-0.20779821,0.5186027,0.071736865,-0.29401737,0.7247391,0.025138604,1.3660672,0.056849226,-0.3401077,0.1274884,0.27585062,-0.03534762,-0.05067022,-0.40991643,0.9750915,0.4593976,-0.12372523,-0.09327423,-0.19938058,0.044300836,0.05024837,-0.19688162,-0.118674435,0.032547884,-0.5369765,-0.13186818,0.1887512,0.2607351,0.38668662,-0.28185943,0.042468563,0.21837482,0.085966945,0.10515352,-0.391165,0.08400411,0.15259954,0.53407913,-0.020431038,0.106158786,-0.5559644,0.37013185,-0.27456695,0.2363967,-0.40046751,0.18943821,-0.15702055,-0.24296525,0.24743366,-0.2508827,0.4198268,-0.23304923,-0.0949515,-0.19963768,0.43128303,0.24785307,0.108626194,0.7189627,-0.24222888,0.05436096,-0.0013766426,0.58875084,0.9081843,-0.3627922,-0.25556353,0.3082001,-0.124870226,-0.5686022,0.27456528,-0.2714913,0.25001287,-0.1370181,-0.10465552,-0.6289376,0.18500346,0.25205103,-0.042376526,-0.12884086,-0.6731326,-0.11752545,0.23576447,-0.25469628,-0.29653156,-0.48272178,0.1302747,0.70796114,-0.10605175,-0.29287735,0.26783735,0.07460925,-0.018919935,-0.2781088,0.085300975,-0.3465638,0.08280099,0.035206456,-0.39009264,-0.12210517,0.031717267,-0.4109135,0.14537154,-0.013361555,-0.24681455,0.065481566,-0.034872368,-0.21020606,1.1672885,-0.21614406,0.42995626,-0.46976092,-0.60357994,-0.95622647,-0.32717034,0.51277894,-0.029547848,0.01006634,-0.7469682,-0.17666945,0.04247492,-0.39747244,-0.10227369,-0.24941023,0.39850044,-0.042831793,0.44323823,-0.21021166,-0.6986439,0.14718772,0.2862971,-0.19921626,-0.60423905,0.3393448,-0.028149046,0.7944308,0.036701,0.11267467,0.4984775,-0.29567453,-0.1964046,-0.29643834,-0.23281544,-0.64716,-0.023842921 +544,0.35816383,-0.13896003,-0.39540946,-0.07878546,-0.16796422,0.056594294,-0.1082544,0.4953292,0.15760191,-0.34612653,-0.10978533,-0.2127011,-0.042428937,0.35834935,-0.020865945,-0.5946268,0.09069168,0.19018391,-0.44009134,0.47085062,-0.41354397,0.22399308,-0.054479744,0.2310707,0.26049247,0.2737064,0.043051746,-0.26035845,-0.016272558,0.03806197,-0.30168912,0.24620603,-0.17897147,0.1494889,0.17277588,-0.26039746,0.021893712,-0.3423227,-0.36699846,-0.6695424,0.39591676,-0.6090945,0.3980369,-0.0027540922,-0.06761057,0.019000271,0.10617593,0.60835004,-0.28101593,-0.01718063,0.23508468,-0.012030845,-0.09007902,-0.087046474,-0.09156546,-0.36186197,-0.5430025,-0.029285578,-0.3790286,-0.3416255,-0.1644148,0.17640981,-0.43986648,-0.13155463,-0.003710169,0.46084097,-0.4543485,0.009647434,0.3472522,-0.1510174,0.25577775,-0.6103469,-0.14311713,-0.05741373,0.49291164,-0.19073898,-0.06724033,0.25950795,0.4117951,0.36263138,0.012205105,-0.120711334,-0.2940292,-0.030842565,0.1123866,0.65456104,-0.24811424,-0.457779,0.0001210662,0.07468957,0.078164026,0.18927462,0.1043036,-0.3184407,-0.101338,0.21252856,-0.21239087,0.20548424,0.2740702,-0.39325052,-0.20492572,0.38954812,0.54382807,0.15500186,-0.056788232,0.02051591,0.09497293,-0.46098378,-0.13322297,0.025007006,-0.22984369,0.41492602,-0.06861124,0.43834892,0.732839,0.0018808658,0.15902121,-0.09786815,-0.03597874,-0.10824765,-0.22973031,-0.23656255,0.10548072,-0.40234885,0.2678801,0.03337002,0.7473206,0.16947764,-0.631944,0.3768938,-0.6201639,0.21675709,-0.20306683,0.4118128,0.629996,0.17645177,0.30580518,0.7347076,-0.42077562,0.049277425,0.006791768,-0.46839175,-0.037640233,-0.040910684,0.023446936,-0.54962665,-0.041197564,0.034116525,-0.05407427,0.16525069,0.09589525,-0.6635221,0.029522149,0.071722426,0.9095872,-0.26801857,-0.08770884,0.5087222,0.90133464,0.89413464,-0.027908228,0.88481647,0.2552395,-0.3335565,0.3915965,-0.5054972,-0.5360116,0.25359637,0.48093367,-0.2741335,0.18824036,0.036853906,-0.19487497,0.5962975,-0.3066311,0.1282587,-0.22908424,-0.0302217,0.16033506,-0.21645601,-0.42283887,-0.33856207,-0.2382161,-0.01605187,0.034031134,0.32123172,-0.111589834,0.22550653,-0.113110736,1.87462,0.076156415,0.086161934,0.14445725,0.4608816,0.1253621,-0.11378349,-0.17755239,0.28826892,0.46713746,0.085225455,-0.5903917,0.26348156,-0.3432294,-0.3529738,-0.0315272,-0.27705923,-0.12245015,0.10850942,-0.46890146,-0.06634263,-0.14578642,-0.28192317,0.5205578,-2.934577,-0.214904,-0.19710304,0.3321272,-0.3192658,-0.29896894,-0.04011703,-0.42743227,0.20526387,0.24207568,0.5649375,-0.59156257,0.4775488,0.3351598,-0.5296005,-0.17546375,-0.6300726,-0.14955367,0.020605328,0.17554328,0.05604922,0.017457949,0.14487979,0.19062024,0.33176595,-0.10381468,0.08500462,0.32234928,0.40352386,0.1669507,0.6312291,-0.09011956,0.56807333,-0.13656127,-0.18045303,0.21965793,-0.25186735,0.116830915,-0.07509504,0.025235187,0.4289232,-0.33165917,-0.9402335,-0.6081529,-0.18089046,1.1777561,-0.23133704,-0.13250592,0.41381344,-0.32125062,-0.11768985,-0.1218146,0.49934322,-0.043743666,-0.24797153,-0.78073955,0.122838184,-0.14377776,0.07344706,0.09195949,-0.25641996,-0.41638348,0.51391566,-0.1429707,0.54235476,0.34238476,0.16972455,-0.071191296,-0.25664812,-0.015097221,0.673758,0.24308476,0.068605125,-0.01896893,-0.050037246,-0.43721315,-0.0005563773,0.093164556,0.45400026,0.64984965,-0.0025464343,0.16228813,0.2945903,0.06626671,0.027381612,-0.102616735,-0.34953254,-0.0057208696,0.06729274,0.46862262,0.5194164,-0.21266763,0.5310574,0.030688496,0.14218229,-0.20040666,-0.35803193,0.41559362,0.9869555,-0.22589031,-0.1514361,0.44768128,0.48586333,-0.11480768,0.23939016,-0.48331717,-0.15015744,0.5128652,-0.25945187,-0.40878546,0.12930308,-0.30462843,0.08907537,-0.92366135,0.29555553,-0.38397,-0.540051,-0.3753082,0.0067583597,-3.505353,0.19047019,-0.45558488,-0.20495392,-0.0070032133,0.048038814,0.10872805,-0.8535966,-0.39541134,0.0973867,0.0794309,0.6463356,-0.094077736,0.047037106,-0.2323641,-0.13310665,-0.25835982,0.0316163,0.039307527,0.33190903,0.11019159,-0.4570312,0.043656625,-0.031578794,-0.37906837,0.18972093,-0.6885401,-0.38134164,-0.073709205,-0.6380418,-0.44915125,0.63294005,-0.27096123,0.17276603,-0.17557567,0.029094104,-0.09673281,0.29595873,0.14697419,0.14220876,-0.057625514,-0.010014396,-0.06236309,-0.21505621,0.2802057,0.010475071,0.40469298,0.07584477,0.039645456,0.212903,0.5694423,0.526006,-0.08543766,0.7903111,0.64708126,-0.13916558,0.19130588,-0.36060098,-0.1724846,-0.42569262,-0.45450175,0.109944,-0.3006372,-0.6843563,-0.0810961,-0.29069048,-0.6143033,0.38715157,-0.052720267,0.3150646,0.0023440432,0.057237286,0.4904208,-0.20531636,-0.029798033,0.0911613,-0.06845553,-0.56902534,0.008725862,-0.6359965,-0.47808176,0.33261442,0.8926396,-0.37609562,0.09915999,0.01802362,-0.3491888,-0.028114822,0.16113044,-0.029981641,0.25379556,0.31991932,-0.34872818,-0.70873463,0.3071992,-0.26106188,-0.086272925,-0.5789139,0.19187333,0.53780854,-0.57537854,0.63770556,0.19268686,-0.05938222,-0.08927514,-0.38589767,-0.26367396,-0.012647037,-0.20011054,0.22200654,0.0722787,-0.7093176,0.22335212,0.44555223,-0.3053969,-0.55537885,0.50820404,-0.015614129,-0.30087572,-0.03478165,0.2758757,0.24317035,-0.06249346,-0.12898096,0.18442297,-0.4565258,0.34952193,0.21520187,-0.18763453,0.15838967,-0.12330006,0.050181333,-0.7112513,0.06210598,-0.40513703,-0.22113389,0.30122307,0.12197766,0.2516163,0.028350811,0.0547569,0.28855312,-0.2064677,-0.032061413,0.13702682,-0.26785058,0.15889956,0.38893017,0.2859739,-0.47621676,0.49409962,0.011549121,-0.111690335,0.04325336,0.08354698,0.42289498,0.05989862,0.46168166,-0.22488506,-0.34082222,0.41254586,0.7572927,0.16010341,0.44030845,-0.017094554,0.0016461107,0.0335444,0.065871544,0.010938313,0.08740226,-0.506218,0.031027608,-0.15153146,0.23828061,0.64038473,0.19103941,0.24723099,-0.13699357,-0.45880458,-0.013500204,0.19638799,-0.04218116,-1.1776848,0.59308416,0.33447948,0.8119138,0.3417227,0.06716682,-0.033372242,0.6498733,-0.1364865,0.14567201,0.27378994,-0.18728612,-0.56179214,0.59533346,-0.8287322,0.4245488,0.058360025,-0.04169544,-0.009992485,-0.1236508,0.30918005,0.6090804,-0.2200174,-0.07994028,-0.06592633,-0.3314936,0.0585686,-0.34974077,0.17407773,-0.80412585,-0.33177012,0.37697843,0.72390264,0.18892011,-0.12555414,0.11307592,0.1507113,-0.04952326,0.19059907,0.016372409,0.1251124,0.08479067,-0.7380065,-0.25580594,0.49216413,-0.3270684,0.1378416,-0.073468976,-0.08819543,0.32098153,-0.2441222,-0.038971823,-0.09402338,-0.42624313,0.1169048,-0.24456501,-0.32404095,0.52031934,-0.038756672,0.28998443,0.18967925,0.07365825,-0.13714376,0.5638556,-0.12473588,0.7130959,-0.10151443,-0.23384021,-0.5129189,0.032168396,0.042577524,-0.014110153,-0.10389609,-0.39919478,-0.019876339,-0.45786554,0.49301112,0.19232494,-0.16873649,0.03289261,-0.24248083,0.0020389785,0.5582965,-0.18654491,-0.016121099,-0.20997629,-0.23044035,-0.27693504,-0.16812348,-0.06651009,0.17992646,0.26023343,0.23602965,-0.14944401,-0.11211956,-0.20571245,0.41482627,0.019242644,0.35763696,0.30044392,0.11531018,-0.095707186,-0.26433378,0.28722686,0.29587346,0.014152231,-0.14919697,-0.36953622,-0.4181824,-0.32901904,0.054518737,-0.17939216,0.5961824,0.014002692,-0.14642248,0.67005324,-0.03917452,1.1839579,0.006983466,-0.31683528,0.03484035,0.5543264,-0.025471352,-0.037467368,-0.22691822,0.82779056,0.49888128,0.050566796,-0.083683915,-0.29347867,-0.20134355,0.22539261,-0.17843,-0.07100557,0.11332656,-0.48259962,-0.3576488,0.22048889,0.10969555,0.26749262,-0.021764288,0.054171447,0.27479225,-0.07050767,0.21685109,-0.3699476,-0.4694491,0.22012475,0.31817257,0.056168642,0.17395224,-0.4998511,0.475385,-0.43635103,0.17160533,-0.23351629,0.22011471,-0.19721015,-0.17926511,0.2773334,-0.046036743,0.4457288,-0.19312249,-0.19960602,-0.13910809,0.50450236,0.20918515,0.06115113,0.6921225,-0.3241688,-0.023439636,0.08814111,0.47881082,0.7808411,-0.2957024,-0.075020514,0.493208,-0.3141333,-0.6264299,0.30463535,-0.18826698,0.044307653,0.14417964,-0.20858333,-0.49420956,0.2527049,0.16212644,-0.010819504,-0.09107128,-0.53608316,-0.2948781,0.15797184,-0.30381778,-0.16093418,-0.3880672,0.32513952,0.55386996,-0.37312853,-0.3411404,0.08823562,0.21862537,-0.109911166,-0.4430712,0.050321106,-0.3270056,0.23338103,0.12629727,-0.37790787,-0.23521468,0.039355107,-0.29483137,0.1374068,0.11903475,-0.36317757,0.17449203,-0.19095418,-0.28155234,1.0303582,-0.27399155,-0.019403577,-0.5670916,-0.28387785,-0.64365613,-0.47382516,0.58504236,0.051131897,-0.118722916,-0.5500735,0.011194816,0.087948285,-0.1918281,-0.2609658,-0.27581355,0.42597005,0.030351318,0.38842872,-0.08745696,-0.6903845,0.21730962,0.036477905,-0.17698534,-0.58748746,0.49932748,-0.081226215,0.93254447,0.022023259,0.09235242,0.24571115,-0.110494606,-0.14057311,-0.28891036,-0.30791414,-0.7507998,-0.16452552 +545,0.42676592,-0.092413254,-0.48785624,-0.18532579,-0.49393088,0.05026161,-0.32434678,0.21731278,0.13206774,-0.2815878,-0.11480349,0.05106269,0.044835076,0.3809694,-0.10602163,-0.671316,-0.10454391,0.18089648,-0.7452983,0.5316739,-0.5821596,0.3787261,0.16800027,0.32315433,0.115712516,0.4770876,0.38972086,-0.11526604,-0.08470085,-0.003648758,-0.099901035,0.25220823,-0.55620795,0.1495883,-0.1929217,-0.33831435,-0.0006710326,-0.23470223,-0.1437783,-0.63899004,0.12547311,-0.7687661,0.5664186,-0.10745035,-0.16482855,-0.023526588,0.39476764,0.4241861,-0.3325171,0.115881786,0.21050519,-0.2805153,-0.1452035,-0.38349593,-0.06050509,-0.5068851,-0.4111368,-0.10210258,-0.8031937,-0.38071543,-0.15293936,0.2394811,-0.28893065,0.05926438,-0.10590209,0.23979995,-0.47104874,0.0052037514,0.3020829,-0.22024852,0.2956889,-0.5068455,0.0039032907,-0.0684564,0.4745241,-0.020230126,-0.11917574,0.39716333,0.27585897,0.471385,0.33918297,-0.35743332,-0.25788662,-0.29331318,0.1298392,0.2775004,-0.15569475,-0.12149269,-0.2376948,0.026375918,0.4509596,0.4083951,-0.040469725,-0.1315305,-0.07646036,-0.09059179,-0.14505595,0.3608396,0.426311,-0.26683438,-0.34674436,0.20190766,0.53862405,0.13677311,-0.36050227,0.1429884,-0.084578745,-0.49871096,-0.19194373,0.1395971,0.08205213,0.35864955,-0.14608698,0.054346196,0.8822751,-0.17121363,-0.08674529,-0.06277293,-0.03225936,-0.16566628,-0.19360924,-0.019174652,0.03321722,-0.6015062,-0.040966094,-0.23751853,0.6543724,0.05275309,-0.6953696,0.27733764,-0.5230307,0.14049393,-0.0027369612,0.65101653,0.7356067,0.45853147,0.25007987,0.8025882,-0.27156994,0.22148682,-0.06496592,-0.40134788,0.104571454,-0.20385705,0.06580897,-0.5108701,0.19254528,-0.0688544,0.11362846,0.09370572,0.50268346,-0.5220926,-0.04278419,0.18698636,0.7575626,-0.35937622,0.0024781018,0.7236754,1.0131627,0.9712587,-0.0051591136,1.1416237,0.33902538,-0.17313747,0.019519437,-0.40863284,-0.4453477,0.13487844,0.4049013,0.114126794,0.4373541,-0.18205409,0.10997057,0.32764992,-0.3629634,-0.054970074,-0.0114370305,0.30119285,-0.007560935,-0.14624833,-0.40853047,-0.116095476,0.06900975,-0.011872313,0.10664476,0.29788375,-0.25130856,0.42530924,-0.09646825,1.4294958,-0.037341483,0.047602065,0.09029006,0.50023603,0.29748645,-0.07135147,0.063033886,0.46478468,0.36328694,0.008453194,-0.4993143,0.15985602,-0.36188596,-0.53444684,-0.19177583,-0.5547732,-0.10742122,-0.00855422,-0.40052766,-0.225772,-0.05357364,-0.31353232,0.30231082,-2.7720659,-0.21103045,-0.13244829,0.2633203,-0.26647827,-0.14900897,-0.10857344,-0.54118264,0.2853858,0.31773582,0.41883194,-0.5709442,0.62111056,0.50566477,-0.47896743,-0.13008225,-0.6261328,-0.12432463,-0.13020793,0.52347934,-0.03776696,-0.08270283,-0.076962724,0.33532923,0.761855,-0.0837527,0.17600326,0.44589496,0.3044799,0.07095089,0.5861697,0.0971655,0.50111467,-0.24875581,-0.22044098,0.4451689,-0.2102604,0.14454988,-0.076402694,0.021561485,0.45514172,-0.4533388,-0.9329871,-0.5785256,-0.19044554,0.94285494,-0.44992423,-0.4670104,0.19081448,-0.13578062,-0.07119005,0.14254193,0.46326408,-0.119530156,0.31389785,-0.66421473,0.17219158,-0.022354078,0.12235117,0.025981836,0.011338508,-0.31140572,0.6892806,-0.077214494,0.62628543,0.22784954,0.32650942,-0.18096225,-0.3303453,0.18047607,0.90160024,0.35382167,-0.07376243,-0.17504697,-0.39822942,-0.15470679,-0.22007407,0.08930296,0.41737628,0.6562028,0.022614345,0.2570336,0.29069212,-0.1731579,-0.0077639013,-0.1325688,-0.08990533,-0.00081767055,0.13540804,0.37716478,0.63177586,-0.07721125,0.50662243,-0.14737357,0.5034575,-0.08054373,-0.63345194,0.5947993,0.4281856,-0.18052399,-0.07651211,0.552412,0.59026414,-0.34146821,0.56295204,-0.7464294,-0.32602358,0.655177,-0.15365006,-0.32504478,0.2443444,-0.34007135,0.18035254,-0.7859254,0.21984488,-0.2470417,-0.3551035,-0.39935353,-0.3677726,-3.4313772,0.13572991,-0.097253,-0.11576462,-0.23737301,-0.058981992,0.31866282,-0.70285374,-0.510842,-0.0022698992,0.15743382,0.5901254,-0.039996658,0.07054987,-0.28631827,-0.29466945,-0.06592291,0.25426617,-0.010498965,0.24027407,-0.25267074,-0.53953326,-0.08480013,-0.109101236,-0.5583023,0.13214532,-0.42197537,-0.39379352,-0.13227497,-0.36571768,-0.20649588,0.59673476,-0.24101846,0.048182756,-0.28488135,0.017251585,-0.17744164,0.09562033,0.26035264,0.16802478,0.2123419,0.041567355,0.04377893,-0.3846132,0.33980414,-0.09879494,0.4304027,0.21972138,-0.018755361,0.19686921,0.43498605,0.41790238,-0.1682444,0.9448353,0.30418265,0.004421277,0.27957273,-0.2015519,-0.32129994,-0.7022786,-0.4579652,-0.2372742,-0.41746756,-0.45586595,-0.002583658,-0.35175645,-0.73978674,0.6961526,-0.03849848,0.36506423,-0.21476936,0.33201566,0.41001734,-0.2013696,-0.1261191,-0.050482597,-0.31507814,-0.44731444,-0.3146595,-0.7219419,-0.6169931,0.039563973,0.95748454,-0.33030513,0.029049776,-0.10593519,-0.10405994,-0.015523614,0.17302617,0.13203083,0.32409358,0.43894392,-0.0549025,-0.6937531,0.4939413,-0.1624617,-0.10040266,-0.40958494,-0.020801533,0.5034864,-0.72280777,0.45887688,0.3116215,0.13030347,0.16013591,-0.5459226,-0.051350325,0.047937654,-0.22792593,0.5072379,0.14897764,-0.7761903,0.5873137,0.16483569,-0.37398273,-0.6419937,0.33542752,-0.06775281,-0.32391235,0.025104284,0.3647251,0.124858916,-0.16317089,-0.18150128,0.17800036,-0.47381642,0.24935745,0.26145357,-0.057702586,0.3642935,-0.092510656,-0.38104108,-0.6747798,-0.055495467,-0.44062933,-0.31818917,0.100906976,-0.01640243,-0.047155954,0.19027698,0.001995788,0.3876452,-0.26542652,0.14701262,-0.022172824,-0.33777934,0.3270653,0.46835232,0.37834653,-0.32602787,0.51349425,0.15529835,-0.20475891,-0.025146568,0.04751921,0.3898799,0.030607501,0.43469906,-0.18822803,-0.15391193,0.5134518,0.5297598,0.19982211,0.36816403,0.08029195,-0.26779866,0.37683558,0.006213583,0.070502914,0.024609586,-0.3861199,-0.014976042,-0.03647158,0.18123727,0.47602105,0.30038112,0.41230634,0.106880456,-0.065659605,0.15306413,0.2034371,-0.17003058,-1.1982033,0.3441272,0.35734513,0.69183713,0.47244874,0.118127026,-0.22711046,0.6242628,-0.39130998,-0.0039217053,0.38269755,0.007973804,-0.32914072,0.8004637,-0.6300311,0.4937825,-0.1869059,-0.12611046,0.08515031,0.0571704,0.34911865,0.9435314,-0.09533269,0.118279174,0.054362837,-0.20437855,0.09172169,-0.22349863,-0.06968987,-0.31542614,-0.36942986,0.70617723,0.21896884,0.4235166,-0.18660723,-0.09136225,0.058775697,-0.23178254,0.28450677,-0.08886609,0.05814209,0.031083688,-0.3012902,-0.3389045,0.4874148,-0.012921256,0.16542695,-0.12820311,-0.36112148,0.036808643,-0.16382243,0.072348826,0.026205175,-0.5708141,-0.019105325,-0.21960768,-0.5161577,0.59363806,-0.3290762,0.18151586,0.13215786,-0.06627122,-0.23936269,0.15227424,0.031294398,0.5967126,0.11003257,-0.21647994,-0.12891541,-0.024994746,0.28972292,-0.30351895,0.0619145,-0.33851567,0.16323127,-0.63718694,0.4891613,-0.19629762,-0.4741138,0.22886604,-0.18752076,-0.015799837,0.4349718,0.06988022,-0.2281322,0.13568231,0.07405576,-0.3356396,-0.1203291,-0.32831043,0.2473905,0.08202448,-0.096917085,-0.12659006,-0.14303195,0.009071084,0.5130189,-0.014623187,0.39025858,0.18563387,-0.06553456,-0.2388835,0.17135644,0.22008084,0.33897176,0.10148146,0.10301774,-0.26817188,-0.4526284,-0.30624127,0.2143262,-0.18120295,0.17292397,0.08694731,-0.3063668,1.0454699,-0.025035521,1.1560079,0.07634526,-0.29601076,0.11087933,0.45163777,-0.06755044,0.14299114,-0.35614485,0.8487108,0.5914589,-0.20606922,-0.18039243,-0.36896336,-0.046132255,0.3625371,-0.43767968,-0.060983866,-0.07891343,-0.58480364,-0.4951641,0.21552481,0.16577867,0.14363071,-0.033433948,-0.039693784,0.100004785,0.077893436,0.36362973,-0.6579671,-0.16726822,0.25306445,0.24108899,-0.1579904,0.18404257,-0.45631382,0.49052772,-0.6671123,0.14810304,-0.42266092,0.09509012,-0.13470575,-0.43857467,0.16472319,-0.011613446,0.25497478,-0.27182114,-0.45628238,-0.046100155,0.52486014,-0.021525815,0.16737483,0.6864923,-0.35350284,0.084943116,0.042903025,0.41971254,1.2452444,-0.408714,-0.116912164,0.28569952,-0.43662453,-0.6193389,0.28262255,-0.4211526,-0.06382681,-0.15076624,-0.6623723,-0.3116979,0.30590096,0.13118306,0.071568444,0.12675111,-0.46768048,-0.0019315752,0.2841503,-0.28340152,-0.26635274,-0.12783222,0.34040084,0.72096807,-0.32390907,-0.20611098,0.03609228,0.3213023,-0.31230304,-0.47906342,0.0027013104,-0.15457757,0.46406594,0.049231447,-0.18415299,0.01619428,0.13956791,-0.37205294,0.12908186,0.5057578,-0.32553616,0.0027591656,-0.30784836,-0.08253807,0.84768057,-0.10981888,-0.14528431,-0.47580898,-0.4321211,-0.9088715,-0.5624868,0.11487756,0.15556903,0.02093191,-0.37331554,0.05764825,-0.08931253,-0.14563121,0.1920509,-0.5130823,0.39516348,0.11654767,0.47905603,-0.17382413,-0.9205907,0.0865462,0.13571306,-0.1510169,-0.6528585,0.6351069,-0.25267926,0.7705915,0.09579508,-0.08266172,0.074254304,-0.37435588,0.27099815,-0.3624497,-0.054985188,-0.8119465,-0.042681698 +546,0.40010044,-0.4011125,-0.5130579,-0.07328784,-0.10146293,-0.07814579,-0.24375735,0.3928626,0.41587305,-0.20579968,-0.24905902,0.05055678,0.14615153,0.40059346,-0.14415874,-0.70281506,-0.19890517,0.19371401,-0.62488407,0.4810293,-0.46687806,0.27585465,0.009558907,0.40735933,0.104336455,0.38261706,0.16161115,-0.009348557,-0.087450914,0.04158093,-0.17708112,0.39336762,-0.51258963,-0.021028932,-0.2323809,-0.27191177,-0.06819194,-0.35829383,-0.46364912,-0.8071508,0.32637978,-1.0379556,0.5476849,-0.047426745,-0.25425673,-0.14489628,0.22994004,0.3310095,-0.50756085,-0.08473598,0.23136099,-0.21314606,-0.21769592,-0.38962382,-0.068011835,-0.26969016,-0.5348567,-0.008390257,-0.50424033,-0.17612007,-0.1476573,0.30598906,-0.25628722,0.047131684,-0.2889018,0.32387745,-0.40994897,0.042085275,0.55893624,-0.2549481,0.25583,-0.66219836,0.003562863,-0.042787287,0.42662513,0.18644069,-0.35777935,0.39751127,0.5768829,0.4357438,0.29080203,-0.37795708,-0.4300236,-0.0669755,0.21873361,0.47088,-0.31535274,-0.41835684,-0.14678676,0.055824675,0.41809368,0.29866135,0.12219561,-0.13370898,-0.08972238,-0.025069036,-0.0013192686,0.5362605,0.6928953,-0.20766751,-0.40327394,0.2906799,0.6274825,0.37038672,-0.107781775,-0.12015385,-0.08084749,-0.55699575,-0.13656107,0.09123291,-0.2870714,0.61543745,-0.16170758,0.089119725,0.8701217,0.012369289,-0.12405847,-0.06928721,0.03386998,-0.09987906,-0.48736987,-0.10838742,0.19825648,-0.42616907,-0.028474726,-0.22777121,0.46297625,0.08875612,-0.69421333,0.46390554,-0.40956414,0.21836469,-0.007340789,0.6667054,0.75716305,0.6434917,0.4405378,0.95843667,-0.4103395,0.04539223,0.037044488,-0.4317716,0.1011219,-0.3760246,0.1847186,-0.40387917,0.21750242,-0.2989083,0.06765147,0.21583289,0.53032047,-0.58355,-0.20997097,0.24560253,0.7597409,-0.25143465,-0.11102295,0.63278604,0.94898564,0.895078,-0.066097066,1.3379171,0.35473666,-0.20815077,0.07218997,-0.36731467,-0.80390006,0.18110028,0.45324105,0.13087524,0.34710568,0.0056848573,-0.13980922,0.514802,-0.39528656,-0.020708203,-0.11201504,0.27346843,0.16225658,-0.18804012,-0.49628654,-0.04299798,-0.19955325,-0.021822095,0.1996164,0.12515916,-0.33182466,0.33964866,-0.0920958,1.491657,-0.17546853,-0.0069825146,0.09737253,0.50312996,0.31167233,-0.12043564,0.030819017,0.50389093,0.5003521,-0.024343142,-0.58029467,0.22001132,-0.36573908,-0.44229868,-0.13885428,-0.36885172,-0.22774515,0.14276096,-0.43437284,-0.15486453,0.0031765471,-0.10464855,0.33286333,-2.5712903,-0.37292764,-0.22737652,0.39297736,-0.29038838,-0.21225952,-0.057713397,-0.5836167,0.32067955,0.22597793,0.6317062,-0.70383734,0.49287716,0.5264647,-0.673307,-0.032046024,-0.6492968,-0.09027282,-0.069746144,0.51889175,0.07893737,-0.25043407,-0.18910058,0.02562411,0.81575924,0.12388612,0.1219228,0.78635746,0.5354044,-0.28700647,0.509819,-0.14514455,0.71561325,-0.29394788,-0.20276326,0.49263757,-0.291308,0.5102112,-0.28684896,0.028714428,0.6907516,-0.4044389,-1.0472993,-0.53593224,-0.05299323,1.020507,-0.4143373,-0.6180235,0.28663152,-0.4165511,-0.2352766,0.019258497,0.7534546,0.12281636,0.19134524,-0.6745453,0.0198677,-0.12542133,0.21576524,0.047319695,-0.22675492,-0.32987386,0.9548378,-0.040894803,0.66361916,0.31906906,0.1946989,-0.22601286,-0.26245242,0.070847645,0.81134886,0.42521226,0.022968577,-0.12710527,-0.2662006,-0.07918203,-0.25461295,-0.17103036,0.7414342,0.64622307,-0.2051492,0.113393225,0.30130914,0.18168102,-0.18270746,-0.20214356,-0.20122987,-0.2299359,0.07915953,0.38974208,1.0913441,-0.314328,0.30369696,-0.2501745,0.3309277,0.111189075,-0.6962933,0.751633,0.5210297,-0.22601043,-0.1340636,0.7956658,0.36746475,-0.42591894,0.48766062,-0.7414944,-0.25131208,0.64312947,-0.17319417,-0.4543482,0.3259192,-0.31823447,-0.041685656,-0.69829834,0.21193933,-0.17867139,-0.30352893,-0.43129513,-0.13422845,-3.1222837,0.22593714,-0.25636542,0.0068687657,-0.3941471,-0.09805958,0.28041384,-0.7299588,-0.66872185,0.32860184,0.2981656,0.51793957,-0.060901627,0.1359246,-0.1716462,-0.1281627,0.10340735,0.19496796,0.0723129,0.22769362,-0.15906051,-0.54185146,-0.08576916,0.0074552116,-0.5968328,0.21175687,-0.6934343,-0.49802992,-0.14134425,-0.5929125,-0.088455915,0.6040256,-0.4567172,0.0002300556,-0.29397035,0.2005895,-0.17047574,0.08690696,-0.08492542,0.33876494,0.097211875,-0.17300144,0.24107759,-0.121421926,0.5320584,0.029453686,0.47339675,-0.004515171,-0.1359212,0.14763466,0.4063379,0.82243663,-0.4464889,1.142458,0.57741046,-0.07361303,0.22890283,-0.0011785534,-0.26819447,-0.6773206,-0.40574265,0.16289082,-0.57741827,-0.45056045,0.06005744,-0.4909827,-0.9303316,0.633974,-0.049134668,0.5307666,0.05317863,0.28275606,0.586901,-0.44547954,0.039608486,-0.06603651,-0.25356582,-0.5363947,-0.35069895,-0.6109784,-0.55763173,-0.030530801,0.8996289,-0.25847176,0.078874916,0.009323881,-0.350374,-0.0863992,0.15083821,0.01374368,0.19130953,0.7101629,0.055018984,-0.67214274,0.44942126,-0.078127146,-0.08669865,-0.56880426,0.20947228,0.42333305,-0.80542666,0.83096415,0.312803,-0.06365558,-0.032290623,-0.6502364,-0.38967612,-0.20199277,-0.18416712,0.64344543,0.27195185,-0.7313565,0.5378414,0.43694365,-0.64088416,-0.69353074,0.28589427,-0.23488078,-0.33722863,-0.29190123,0.27463058,0.21903093,-0.012715266,-0.1439791,0.15626076,-0.40338737,0.30738974,0.1925042,-0.16369708,0.28815788,-0.19786112,-0.35912684,-0.9779556,-0.040332302,-0.48423958,-0.19383337,0.42419764,-0.14953937,-0.040623114,-0.052566543,0.23033156,0.4192743,-0.3219661,0.1455602,0.051373184,-0.58302844,0.30900744,0.4571339,0.49505666,-0.49402338,0.49860412,0.13768,-0.42860237,-0.0012857777,0.049403496,0.44795698,0.02631583,0.4904204,-0.23251557,-0.035184246,0.3657343,0.9138399,0.025982806,0.48666164,0.12530454,-0.118029244,0.4821631,0.08269335,0.17991462,-0.12637514,-0.6426421,0.08731919,-0.09581113,0.16595362,0.62025267,0.41407472,0.28603995,0.06140024,-0.2733484,-0.0027249032,0.16692199,0.18014309,-1.1912055,0.30230427,0.3453994,1.257133,0.24521755,0.19520536,-0.31787217,0.69347984,-0.110234454,0.11804809,0.4849301,-0.2422072,-0.5527105,0.6789779,-0.6641391,0.31142104,-0.1638681,-0.039062344,0.2657327,0.26890475,0.326259,0.9136304,-0.23526806,-0.028989378,0.026602749,-0.17313674,0.12857477,-0.44393656,-0.058257937,-0.41728038,-0.5392347,0.68874836,0.5870905,0.5309951,-0.24103044,-0.04693655,0.04563568,-0.23031497,0.20419241,-0.144506,-0.081589565,0.0091001205,-0.6814259,-0.018375289,0.49899098,0.16848357,0.18156716,-0.33921528,-0.27619043,0.12981488,-0.32297662,-0.24250051,-0.13445823,-0.80698735,-0.10729842,-0.34339464,-0.7671336,0.60716516,-0.056145407,0.087019734,0.29567665,-0.0772829,-0.15437657,0.491255,-0.16166753,1.1016986,0.06339332,-0.25894326,-0.48575976,0.28454477,0.3122414,-0.25629744,0.33959338,-0.49376696,0.059194207,-0.44705644,0.70292753,-0.22585584,-0.43273816,0.24405967,-0.32153767,-0.048194,0.51534235,-0.22763707,-0.19855836,-0.011097748,-0.26296142,-0.4667285,-0.29264316,-0.29165003,0.24459466,0.27955666,0.027219405,-0.08267595,-0.24665792,-0.22168483,0.56497824,0.0820857,0.43783882,0.33324718,-0.031864174,-0.15669163,0.1251448,0.40630677,0.66616166,0.19032016,-0.17257024,-0.5429094,-0.6535318,-0.4399112,0.26108617,-0.0015640488,0.34223667,-0.027468609,-0.16707842,0.9823441,0.083617456,1.2168218,0.20900853,-0.37327954,-0.04873459,0.7187278,-0.19717774,0.097579904,-0.50780344,0.8071575,0.47436947,-0.13277198,0.19122069,-0.55103153,0.13570857,0.38918126,-0.44078827,-0.04554597,-0.09336197,-0.6915069,-0.41168773,0.19579981,0.18382683,0.2937349,-0.08019649,0.10029804,0.05313817,0.11795466,0.26446855,-0.6459837,-0.49485844,0.27989727,0.20394073,-0.18109773,-0.13882755,-0.45544508,0.47448623,-0.48483467,-0.017765045,-0.5125564,0.08307834,-0.30731076,-0.40570518,0.15840207,-0.19910343,0.4188332,-0.5039583,-0.46206692,-0.06902605,0.3786109,0.10434219,0.09714343,0.55650914,-0.36302522,-0.030248495,0.21836373,0.6763856,1.2244596,-0.6714259,0.13967624,0.38137674,-0.4991318,-0.670914,0.5750407,-0.23134503,0.08563748,-0.005358297,-0.49922377,-0.57454705,0.2428403,0.105536625,-0.0074958475,0.065921955,-0.62873244,-0.2735433,0.36898452,-0.29684144,-0.09849973,-0.014299411,0.37853816,0.7090721,-0.3352383,-0.5307146,0.2457849,0.30423266,-0.18012787,-0.4495306,-0.064820506,-0.35253355,0.24259886,0.039379843,-0.4087334,-0.11805444,0.09909793,-0.6184177,0.08500493,0.24747115,-0.41468212,0.17567381,-0.24766019,-0.11417178,1.0681807,-0.31119904,0.06062657,-0.776387,-0.43605083,-0.9822022,-0.42890328,0.19085161,0.12806135,-0.19881727,-0.55155563,0.010808908,-0.16796145,-0.0029314721,-0.061091576,-0.52007043,0.53154415,0.0543521,0.6898263,-0.38463798,-0.84313864,0.061995186,0.17686334,-0.17043863,-0.5281293,0.7626855,-0.016746558,1.0343251,-0.05112344,0.09421044,0.08148125,-0.4514414,0.07280152,-0.40895572,-0.14969099,-0.86084455,0.06460089 +547,0.51568323,-0.2674424,-0.38963905,-0.101524904,-0.118014805,0.09241285,-0.0015864457,0.3375191,0.26705712,-0.2737455,-0.08297624,-0.16346404,0.025960108,0.27623987,-0.17072947,-0.8083639,-0.037483923,0.123640485,-0.3263637,0.42308024,-0.37784904,0.34544924,-0.07603365,0.23208325,-0.09907281,0.32714692,0.25112623,-0.29099995,-0.013130145,0.0019552857,-0.19526227,0.16383699,-0.60430086,0.021226197,-0.0020345193,-0.18841097,0.21000752,-0.35345054,-0.2332803,-0.63018167,0.3379211,-0.7633683,0.39286858,0.14706846,-0.09884382,0.30216202,-0.19223757,0.26311168,-0.31120515,0.05585184,0.047737896,-0.07144358,-0.019898316,-0.18275991,-0.13051543,-0.37274057,-0.48406228,0.028127978,-0.32176128,-0.18899354,-0.16111241,0.041528992,-0.297456,-0.10957297,0.06032764,0.24096592,-0.46627048,0.050600078,0.33421153,-0.17035381,0.25618455,-0.40059265,0.024879022,-0.097407155,0.34315267,-0.25641784,-0.16878045,0.22826442,0.44325835,0.3940112,-0.08145278,-0.1459633,-0.21784171,-0.08635575,0.19549678,0.5300181,-0.12922364,-0.5816822,-0.1234162,-0.021094492,-0.028785374,0.16751547,0.020076016,-0.36501098,-0.12431042,0.1068346,-0.27940556,0.27746886,0.44003874,-0.41382048,-0.31760964,0.3997321,0.6428029,0.13052307,-0.037689645,-0.029313995,0.1738118,-0.49746588,-0.18615505,0.23775665,-0.28774303,0.61603105,-0.18406709,0.2248695,0.6405425,-0.35973138,0.20151745,-0.06325697,0.019265512,-0.20486614,-0.14049332,-0.12867878,0.29231492,-0.47070804,0.14847526,-0.22325647,0.90250885,0.34255102,-0.6830158,0.47097495,-0.50742304,0.17281236,-0.20725104,0.56791145,0.63718647,0.24622223,0.17743602,0.73827946,-0.6321686,0.053674288,-0.107192025,-0.5172413,0.14630751,-0.06409539,-0.1962444,-0.42440027,0.07876384,0.15118659,-0.050079104,0.07618432,0.033282883,-0.5835019,-0.043731757,-0.021716604,0.7989453,-0.3093808,-0.03842282,0.4396043,0.8500537,0.7292576,0.08877695,1.2998568,0.32486406,-0.34841195,0.22457579,-0.3519916,-0.8763793,0.1795298,0.37426096,-0.39093986,0.2971129,0.13367887,-0.08557142,0.32335573,-0.3197483,0.019106904,-0.22156502,0.3497918,0.02358016,-0.035291784,-0.32084513,-0.17242952,-0.076307885,0.026922744,0.20706545,0.27999836,-0.18735263,0.24025975,0.22609894,1.6920542,-0.071257696,0.2063636,-0.010559755,0.4286614,0.23226693,0.04800723,-0.1899121,0.40474734,0.4008099,0.21555343,-0.63175136,0.1119685,-0.1926204,-0.50190645,-0.10098672,-0.1936507,0.014248759,0.13513419,-0.24638236,-0.08533596,-0.06094462,-0.08696639,0.6604367,-2.6592064,-0.16641323,-0.19326143,0.37690592,-0.39631358,-0.352025,-0.11299207,-0.51146954,0.25621584,0.33987805,0.3865704,-0.80152035,0.17609453,0.36738768,-0.4635234,-0.20163603,-0.59029925,-0.11080301,-0.032453798,0.30243784,0.06509818,-0.053298257,-0.016786452,0.11239966,0.30501264,0.063389756,0.012759618,0.18129984,0.41565377,0.27638173,0.32972902,0.018102573,0.49704382,-0.12030617,-0.104883365,0.20953846,-0.24739827,0.48891982,-0.11624866,0.1302023,0.2609017,-0.34398818,-0.81280524,-0.74153507,-0.42519385,1.194133,-0.24803059,-0.36525688,0.14178917,-0.037176576,-0.16534296,-0.2191684,0.4205308,-0.12684244,-0.1628094,-0.8014436,0.18176362,-0.083103135,0.26161534,0.13746315,-0.0445191,-0.28872514,0.6424042,-0.110802375,0.3666079,0.333951,0.1482207,-0.008987563,-0.521475,0.02005182,0.89384973,0.2576986,0.17516662,-0.14440596,-0.11220901,-0.34875712,-0.042619742,0.052152928,0.3734817,0.8119596,-0.03505372,-0.116010725,0.37763402,0.08409149,0.06701321,-0.09803694,-0.28451782,-0.060512338,-0.25343746,0.5021587,0.6002387,-0.39597878,0.31111187,-0.013894683,0.17654128,-0.14254029,-0.33667582,0.73203224,0.9799171,-0.18605646,-0.0727613,0.46163034,0.33769602,-0.46944332,0.3086372,-0.6998784,-0.1158335,0.51621383,-0.15858619,-0.36660808,0.14742303,-0.31714985,0.12855771,-0.8131651,0.3502226,-0.12932628,-0.07904802,-0.48664555,-0.034486473,-3.7010481,0.2715206,-0.24371007,-0.09232955,-0.15242028,0.05819788,0.221579,-0.61762667,-0.47184733,0.35467482,0.01612806,0.5346699,-0.0066451197,0.2489827,-0.31851768,-0.2141908,-0.40200514,0.0036273429,0.10491353,0.21934983,0.021905115,-0.3974072,0.050924875,-0.17835389,-0.2724535,0.23861173,-0.39717227,-0.467886,-0.14252672,-0.44430476,-0.30482382,0.7032653,-0.43998143,0.07164502,-0.23068886,0.016489347,-0.26080674,0.30255753,0.050719433,0.026786625,-0.118037425,0.07243546,-0.07991849,-0.3314788,0.4326641,0.056959014,0.20131257,0.24404632,-0.14411448,0.015735183,0.51915485,0.65104806,0.051762037,0.69516885,0.41931105,-0.11386383,0.29918113,-0.2901279,-0.10846947,-0.4321501,-0.38544145,-0.07728305,-0.38666183,-0.48847595,-0.16924174,-0.33379784,-0.6286513,0.42240328,0.003920172,0.14514913,-0.012142627,0.2686855,0.51996005,-0.24208105,0.12752098,0.0762856,-0.14990725,-0.6135988,-0.22372939,-0.5512685,-0.21391544,0.45054218,0.78341764,-0.3475761,-0.16298553,-0.023787903,-0.19290686,-0.025038991,0.041400485,-0.028866012,0.18202294,0.30495828,-0.19010016,-0.6151823,0.57872295,-0.08580029,-0.25188664,-0.71354496,0.038617726,0.53370416,-0.7708327,0.5005287,0.34782505,-0.027748445,0.20353971,-0.38525528,-0.3109341,0.060038473,-0.3127444,0.2088971,0.12849902,-0.60102886,0.29951388,0.3976782,-0.18725345,-0.61479825,0.5509848,0.016378125,-0.29953668,-0.004340949,0.35286894,0.24385493,0.048936166,-0.12447716,0.13810113,-0.46850938,0.10767969,0.35567078,-0.07285981,0.4382711,-0.078805745,-0.026943717,-0.7994413,0.018669413,-0.53986603,-0.1611854,0.21651459,0.1029992,0.093509056,0.04971854,0.23252876,0.42285585,-0.40428463,0.050992332,0.16221943,-0.13110706,0.30802208,0.33213946,0.34726575,-0.37157372,0.54092276,-0.024847584,-0.0073313927,0.041767474,0.1047293,0.47571626,0.25944316,0.25859728,0.15692422,-0.26077744,0.29837936,0.8006088,0.13420317,0.3916826,0.011306771,-0.07290652,0.33117953,0.24504313,0.077145256,0.26988357,-0.4665483,-0.12235492,0.08251437,0.13963965,0.5123952,0.25474268,0.34951606,-0.13411827,-0.28517863,0.002750069,0.16145894,0.006222908,-1.0207411,0.23619436,0.24176274,0.6579806,0.39658743,-0.07405118,0.076133505,0.34279054,-0.1796962,0.24294178,0.35092688,-0.112593494,-0.56090504,0.49031025,-0.62273943,0.34151396,-0.0851091,0.046266735,0.042259395,-0.074723735,0.17715219,0.84932816,-0.08842609,0.00010552151,-0.16965567,-0.27998644,0.10395197,-0.39735144,0.0630849,-0.59245354,-0.2560026,0.5573951,0.49281248,0.37788078,-0.17245825,0.037470575,0.009386854,-0.0892421,0.12056724,-0.102498576,0.1835911,0.10572393,-0.68002087,-0.2993164,0.59812194,-0.120242305,-0.013643137,-0.21440932,-0.17688973,0.27815557,-0.23814689,-0.10281285,-0.074621566,-0.68858296,0.031551667,-0.11405829,-0.47413325,0.46332914,0.04592875,0.20785515,0.18873072,0.071696766,-0.37055284,0.37825212,0.17287104,0.77964294,-0.08781387,-0.22510158,-0.69447106,0.23086669,0.24997686,-0.14267494,-0.041450433,-0.25856024,-0.005453604,-0.4693105,0.44591472,0.057123307,-0.11349409,-0.011207036,-0.2936439,-0.007698402,0.60271806,-0.2854319,-0.20757703,0.01658082,-0.22297192,-0.27598125,-0.1430695,-0.23373199,0.21235396,0.3475078,-0.03993268,-0.06558777,-0.22618021,-0.24935268,0.3288305,0.18366113,0.18198964,0.41333872,0.09575007,-0.24750592,-0.3630043,0.110984154,0.31750014,-0.18949951,-0.21194272,-0.3752547,-0.6614006,-0.3103731,0.030865695,-0.11034404,0.34770563,0.04483521,-0.24926038,0.5575182,0.028272403,1.0636145,0.12908855,-0.23559897,-0.045020778,0.5529898,0.04417502,-0.03417152,-0.42622146,0.93286073,0.5025278,-0.17228699,-0.2073694,-0.2536076,-0.17332435,0.14184023,-0.19783816,0.12674752,0.065393366,-0.73519856,-0.36195877,0.24483828,0.21561602,0.12208898,0.09055551,-0.022238161,0.084375344,0.14296699,0.41702494,-0.50471354,-0.2601127,0.23639403,0.21501262,0.18360053,0.27692667,-0.21517162,0.48314548,-0.39589623,0.016479015,-0.36160707,0.18575104,-0.19339553,-0.24250937,0.17590424,0.06764383,0.42579156,-0.34475204,-0.5468681,-0.25077948,0.4550435,0.20175031,0.15460436,0.5382799,-0.1932037,0.0038465688,0.017492592,0.55945134,0.99932915,-0.11580886,-0.011035462,0.5048159,-0.38570762,-0.59346473,0.19941917,-0.29468325,0.19841042,-0.071028754,-0.13144697,-0.62589127,0.30731383,0.20118788,0.078037724,0.11782757,-0.68679196,-0.31394482,0.24682817,-0.4455438,-0.22697568,-0.2879303,0.3381768,0.84521854,-0.39286375,-0.2783049,0.09340318,0.2070028,-0.15639997,-0.5169321,-0.21719684,-0.39916542,0.33674297,0.21219052,-0.2975793,-0.14427991,0.103346534,-0.37039572,0.21010546,0.14517106,-0.36284113,0.14304115,-0.22732762,0.05508756,0.8669445,-0.15553491,0.03718389,-0.6558679,-0.3662848,-0.823505,-0.4225656,0.5319678,0.14217289,0.08809978,-0.460499,0.09649592,0.009423473,0.039121162,-0.12505394,-0.38292128,0.49980202,0.14076522,0.34827238,0.025522564,-0.8249292,-0.11643256,0.03393365,-0.21643913,-0.6013864,0.51613563,-0.119953506,0.80022043,0.057217818,-0.011767368,0.37033367,-0.4341159,-0.107401155,-0.36626515,-0.21539056,-0.7660518,0.15987955 +548,0.30875817,-0.31982443,-0.50262606,-0.17107148,-0.17111687,0.10202718,-0.124803536,0.42721042,0.13809742,-0.4927179,-0.073740244,-0.18806301,0.022218456,0.1367421,-0.13128221,-0.4299131,-0.12094506,0.14543805,-0.5777926,0.50783765,-0.3187925,0.09323556,-0.10867474,0.310299,0.16631658,0.34396204,-0.11494126,-0.11403109,-0.1019107,-0.033471633,0.030735109,0.3512536,-0.6509897,0.22670303,-0.05535348,-0.18411948,0.051076118,-0.49780035,-0.50481135,-0.7258393,0.39580607,-0.9013811,0.5358705,0.13133694,-0.16118181,0.3215247,0.12038396,0.34842965,-0.27611533,-0.10547737,0.29409933,-0.18236296,-0.07000028,-0.25601903,0.11486639,-0.31474692,-0.49054766,-0.011470703,-0.39895663,-0.3827731,-0.3221427,0.14955345,-0.35412127,-0.1848785,-0.13127455,0.7992834,-0.460887,0.159571,0.20590737,-0.20858887,0.4144197,-0.64718246,-0.13120957,-0.052373935,0.40471736,-0.26403934,-0.2652451,0.31052324,0.30649948,0.27271408,-0.018448949,-0.18930969,-0.23964259,0.01576577,0.29828882,0.39731073,-0.16970359,-0.5059225,-0.010186568,0.06377875,-0.17109013,0.12483476,0.12303661,-0.42609975,-0.1217907,0.17669296,-0.14699593,0.42773703,0.5475913,-0.14682774,-0.21793151,0.35167545,0.581304,0.1854759,-0.010212285,0.022837268,0.062797114,-0.47010064,-0.23974656,0.0807277,-0.22214173,0.4796255,-0.2013717,0.17859736,0.71812165,-0.17283395,-0.09690865,0.11784321,0.07754888,0.038948417,-0.32842,-0.2776852,0.2737865,-0.44526443,0.177844,-0.11226697,0.59862053,0.20910628,-0.6817195,0.25257373,-0.4989302,0.19570984,-0.06064058,0.49109176,0.6905862,0.5766963,0.41413808,0.65862805,-0.5425482,0.12353051,-0.0123291975,-0.40107885,0.115219064,-0.28336987,-0.03785305,-0.5952496,-0.038752895,-0.14690728,-0.044051316,-0.05129098,0.12712203,-0.52802217,0.02921938,0.1159702,0.897282,-0.2659799,0.010161653,0.6864279,0.88925844,0.9010662,0.08997548,1.0132214,0.16463096,-0.34231743,0.39226553,-0.1619672,-0.7658666,0.32141414,0.36647388,0.2576507,0.10405155,0.14340773,0.064476855,0.5535034,-0.5633596,0.10897901,-0.21343371,0.26578426,0.23228168,-0.21660236,-0.34665203,-0.13128941,-0.1450247,-0.0268487,-0.15009773,0.14650556,-0.16345404,0.3502153,0.14303407,1.7337452,-0.022526069,0.084525295,0.027411535,0.4636797,0.1089476,-0.12052013,-0.070883475,0.5251408,0.30827922,0.307756,-0.6565892,0.14287034,-0.093242414,-0.47936395,-0.13047884,-0.3817045,-0.04653847,-0.071592584,-0.4706857,-0.25553444,-0.18941642,-0.2027893,0.41366524,-2.8154237,-0.06752796,-0.061074786,0.4484914,-0.24672388,-0.35248327,0.0820275,-0.43045053,0.3145654,0.3002201,0.46254316,-0.65518224,0.34791797,0.3692817,-0.6803737,-0.04837806,-0.5551178,-0.11405944,-0.11242322,0.37340617,0.019925723,0.027968619,0.10921068,0.03606754,0.46598586,-0.17471208,0.15845494,0.33176002,0.4208955,-0.009276067,0.6682091,-0.06290591,0.4640757,-0.2909508,-0.19878875,0.23894587,-0.363547,0.13467352,-0.04323066,0.03264668,0.44246894,-0.49009943,-0.8724774,-0.7880369,-0.17864569,1.0812868,-0.28812045,-0.43331861,0.34542444,-0.6303504,-0.16561112,-0.1581011,0.46681514,-0.0012639835,0.032659505,-0.80877155,0.10694974,-0.12197248,0.11944078,0.052141182,-0.13975775,-0.49696127,0.76735383,-0.031755794,0.5381169,0.33309892,0.04960799,-0.39781502,-0.50659955,0.0736627,0.7677153,0.32917714,0.18677017,-0.13407384,-0.19357629,-0.16306125,-0.12393583,0.07674115,0.66376895,0.6220914,-0.04319539,0.19072689,0.27624688,-0.118283086,0.07338763,-0.23523216,-0.35176426,-0.15046866,0.039805464,0.5455079,0.5667876,-0.19129166,0.39987674,-0.060315665,0.23560587,-0.029085146,-0.38710123,0.4794212,1.1287817,-0.106387995,-0.306014,0.4633972,0.461263,-0.32407537,0.32923433,-0.522147,-0.1725374,0.56308764,-0.31667447,-0.581205,0.14823686,-0.28410387,0.12414096,-0.78759444,0.29647207,-0.34731865,-0.5859322,-0.5579714,-0.053389568,-3.5300632,0.11258374,-0.348662,-0.15659143,-0.12836877,-0.09956469,0.112104245,-0.5315159,-0.45324877,0.26049253,0.03693018,0.6601804,-0.122835256,0.11533991,-0.21687038,-0.1879782,-0.17890398,0.16529377,0.15395106,0.2197221,-0.038766127,-0.44471693,-0.056580134,0.0028939843,-0.37684456,0.105158195,-0.5436153,-0.3666672,-0.16365735,-0.5714266,-0.38592204,0.58426434,-0.19527078,0.019183097,-0.0055399365,0.026711373,-0.19266526,0.2870099,0.12733756,0.30422166,-0.022236211,-0.036960874,-0.06844868,-0.25930825,0.2912329,0.023769064,0.2775992,0.20492856,-0.10956427,0.23734276,0.4817584,0.6972732,-0.11626311,0.9674097,0.5630831,-0.15436438,0.39878646,-0.30301914,-0.3596177,-0.55136067,-0.33664903,0.07169919,-0.3881862,-0.46108887,0.115326636,-0.44244787,-0.6656469,0.5343963,0.10273309,0.13225333,0.13797602,0.25307363,0.54089683,-0.2066226,-0.07784552,-0.071442835,-0.19318111,-0.6474268,-0.17942905,-0.5913452,-0.52459127,0.07529771,0.80212206,-0.1911455,-0.004086117,0.045822535,-0.2934049,0.015015007,0.29374558,-0.12656489,0.33731747,0.503986,-0.09475587,-0.6798615,0.536729,-0.07793922,-0.2537482,-0.6133485,0.39776424,0.51071817,-0.68529713,0.82661295,0.2764551,-0.012355427,-0.26406333,-0.3541581,-0.31732932,-0.08908571,-0.35036105,0.4443082,0.2055114,-0.8924207,0.3881398,0.4781282,-0.3199942,-0.81310517,0.6116831,-0.118541665,-0.21760656,0.1294611,0.31061798,0.1382185,0.0069505787,-0.17096595,0.22885774,-0.46488646,0.26008913,0.14392321,-0.09734026,0.17239991,-0.15905987,-0.12046533,-0.8005754,-0.058980707,-0.5243898,-0.27528265,0.3807213,0.05166643,0.15990745,0.2307113,0.13412751,0.44460696,-0.108118095,-0.0018767224,-0.05498302,-0.369564,0.24733648,0.43650237,0.37137318,-0.45767114,0.54551905,-0.017698612,-0.03959608,-0.080656305,0.17438519,0.39296103,0.18262546,0.54598796,-0.0046650767,-0.20504034,0.28373274,1.0322254,0.22520924,0.63812774,0.027961688,-0.017573697,0.28561908,0.097398415,0.23695843,0.020411888,-0.708809,0.30208698,-0.20489593,0.16997002,0.4762937,0.10377072,0.30952767,-0.18763556,-0.35365137,-0.03251515,0.42985812,0.1298609,-1.1744442,0.45474234,0.2373346,0.9701737,0.5387354,0.048491944,-0.032310586,0.74501044,-0.1554576,0.028270055,0.3183048,-0.15455164,-0.5528809,0.5067707,-0.8671566,0.39166594,0.029493583,-0.028431445,0.039650016,0.045507066,0.343088,0.6105023,-0.15314369,-0.05052952,-0.026339035,-0.37547782,0.3410129,-0.48208794,-0.0045297616,-0.43943042,-0.3060777,0.52923524,0.68156713,0.33313683,-0.13844767,0.024127241,0.053008746,-0.18632977,0.2831497,0.098324895,-0.03562986,0.06651957,-0.764349,-0.1594021,0.54421586,-0.07395883,0.19777285,-0.036932748,-0.19737853,0.39057806,-0.22753558,-0.08805324,-0.1012771,-0.662844,0.21808188,-0.39013702,-0.49272153,0.6174328,-0.019394372,0.23084164,0.30392203,0.05536103,-0.32143563,0.48292357,-0.11285017,0.81123346,0.012033678,-0.142527,-0.55641454,0.022897022,0.13402386,-0.14111789,0.04239967,-0.4099335,0.035110217,-0.5320586,0.51778823,0.04688664,-0.31422907,0.13085511,-0.18498622,0.03199542,0.6736613,-0.2351558,-0.12802288,-0.007850911,-0.23157826,-0.22394302,-0.36675328,-0.14983419,0.27569455,0.078061104,0.25259873,-0.18470736,-0.09741773,-0.13553298,0.57085127,0.036830287,0.518928,0.2883673,-0.018728767,-0.29200095,-0.2298274,0.24389179,0.47693262,-0.059201233,-0.11315244,-0.19886371,-0.45242754,-0.33554557,-0.0860163,0.031050546,0.4981421,-0.04714032,-0.1745491,0.7316157,-0.21714924,1.1851661,0.057695184,-0.4025865,0.20354983,0.45014757,0.0041064,-0.0063948375,-0.39834663,0.71514654,0.4856205,0.075232625,-0.0150696505,-0.35348624,-0.04292364,0.15169954,-0.15113628,-0.064939044,-0.0009967664,-0.6584118,-0.25222608,0.18215795,0.23774667,0.29725805,-0.067215964,0.010666992,0.14587508,-0.06685887,0.15416436,-0.4748513,-0.25027683,0.26238075,0.23398706,0.0017994003,-0.03057514,-0.48122096,0.51100415,-0.39953837,0.11126824,-0.22947593,0.17223103,-0.28905937,-0.2078058,0.21353947,-0.062809125,0.36635903,-0.21600378,-0.29012758,-0.12382008,0.5279769,0.18487048,0.13960455,0.56075555,-0.20080653,0.056047954,0.08618599,0.5584715,0.69037247,-0.31822035,-0.09563104,0.34311262,-0.52909696,-0.6115409,0.4806995,-0.25164863,0.13120583,0.14493802,-0.08286856,-0.4056389,0.14373194,0.26632398,-0.02613618,-0.08209114,-0.8047238,-0.27377447,0.3282223,-0.48243567,-0.19133233,-0.17702611,0.23987661,0.68307745,-0.33707312,-0.23045108,0.092034176,0.19178514,-0.19071224,-0.3427262,-0.02572762,-0.45403472,0.33038434,-0.13896063,-0.3961375,-0.17198041,0.11057686,-0.46025616,0.20733579,0.030352166,-0.35105258,-0.008709957,-0.23934126,-0.10270449,0.9222396,-0.20231405,0.14764452,-0.49186987,-0.41866454,-0.8745972,-0.16231643,0.4633163,0.027254691,0.13410607,-0.6244697,-0.019556986,0.0058480203,-0.15331466,-0.17620002,-0.5004891,0.4629589,-0.017745646,0.3985291,-0.092951454,-0.7546377,0.28901234,0.22900318,-0.14546137,-0.6430756,0.5599118,-0.14215484,0.8540684,-0.05051748,0.14258854,0.21462353,-0.4071266,-0.11241384,-0.22760336,-0.2808972,-0.6996389,-0.09388385 +549,0.38085282,-0.06742072,-0.6622934,-0.003776749,-0.13768879,0.022629745,-0.33199197,0.17981215,0.06288911,-0.3519815,0.007963999,-0.046364315,-0.122743614,0.16838057,-0.2904321,-0.52923626,-0.09409551,0.13104846,-0.52770865,0.47922948,-0.32938612,0.3362265,-0.06240447,0.23100458,0.07442028,0.18141259,0.29000875,0.0005567044,-0.107144274,-0.18461789,0.23481931,0.09131852,-0.77262574,0.14758497,-0.23612516,-0.47944212,0.04406679,-0.26523092,-0.4384953,-0.66859794,0.2482704,-0.8046566,0.57475203,0.12262327,-0.23926172,0.28903654,0.10351919,0.28008977,-0.21973675,0.15315269,0.23735365,-0.32709485,-0.08287631,-0.34200275,-0.13263087,-0.3304279,-0.54807186,-0.11756631,-0.6931213,0.08809606,-0.3053312,0.17567548,-0.2607134,0.093248576,-0.2706481,0.30454636,-0.46712402,-0.07673081,0.12575296,-0.026095828,0.3759283,-0.53968453,-0.13346152,-0.06470242,-0.1367651,-0.10751936,-0.1048664,0.35849756,-0.020451205,0.4049601,0.048439067,-0.17126186,-0.24719235,-0.13213101,0.23657556,0.34888414,-0.20615426,-0.14390947,-0.20595078,-0.16496179,0.25407898,0.1813497,-0.060438737,-0.098493144,0.10035305,0.047753986,-0.20361385,0.40361753,0.65204227,-0.3246089,0.0045952797,0.18809018,0.44110346,0.06175473,-0.12322358,0.06060213,-0.11791734,-0.43611953,-0.27758518,0.06644075,-0.2720316,0.49949735,-0.091269,0.2027557,0.43912405,-0.33951387,-0.011350846,0.1372371,0.09207355,0.1370598,-0.15849236,-0.49874866,0.57459235,-0.57801217,0.032246955,-0.29287606,0.5049907,-0.031085866,-0.5587758,0.23209305,-0.5042239,0.08130336,-0.057360753,0.69872475,0.5054218,0.58191323,0.27781633,0.8283847,-0.55166835,0.02096682,-0.075489394,-0.2660562,0.1360973,-0.14036743,0.025471712,-0.33178654,-0.093660325,0.05753582,0.020738553,0.120336026,0.29772326,-0.44747767,-0.07154789,0.18494767,0.68669194,-0.31122106,0.19347157,0.6289354,1.4027661,1.0020355,0.0035467674,0.95931077,0.15043738,-0.30657575,-0.23318271,0.022521181,-0.62820154,0.25460228,0.31969458,-0.2831789,0.42821723,0.054086674,-0.096415974,0.25201675,-0.64979976,-0.21743444,-0.08780745,0.25889763,-0.095466964,-0.09167417,-0.44471312,-0.08136437,-0.004915043,-0.031072017,0.06929579,0.3875248,-0.30202702,0.26729432,0.19583626,0.9870445,-0.07629483,0.08110363,0.27080372,0.3699103,0.23301719,-0.039864812,0.025248932,0.15696262,0.29938897,0.31262824,-0.5251324,0.0068505467,-0.2716777,-0.5687384,-0.16641887,-0.2203429,0.080154024,-0.1820921,-0.37706232,-0.22637695,-0.07737621,-0.41057274,0.31142634,-2.6098611,-0.102013074,-0.088024266,0.38352603,-0.083543025,-0.23268987,-0.063654594,-0.42132905,0.4982763,0.40045193,0.32200253,-0.47078377,0.45437717,0.40280122,-0.45244822,0.052549638,-0.49933738,-0.14588745,-0.14282684,0.37425143,0.113080226,-0.23908481,-0.060131736,0.3169605,0.45137584,-0.13194618,0.19683306,0.24054457,0.2992185,-0.30353013,0.43890905,0.15731785,0.31443512,-0.57841337,-0.23095515,0.4088674,-0.3919253,0.14916301,-0.17386168,0.18973789,0.3617139,-0.46805292,-0.862383,-0.47963476,-0.0881536,1.3286211,-0.27212816,-0.64651895,0.22325936,-0.03733109,-0.3546123,-0.050072454,0.38838488,-0.17776951,0.1249919,-0.7589956,0.09227796,-0.30697075,0.31830266,0.035648186,0.12979192,-0.5226502,0.59936583,-0.14276142,0.5617913,0.45482367,0.25011736,-0.25528148,-0.48167408,0.24445662,0.9828824,0.5997791,0.07706203,-0.28886947,-0.0331567,0.036678042,-0.007856385,0.12122477,0.49367222,0.83524907,-0.12669522,0.21700595,0.28170907,-0.0010722796,0.014364633,-0.10132802,-0.3351351,-0.045301307,0.091669835,0.6195389,0.6805573,-0.024725394,0.14967784,-0.025698483,0.46403047,-0.16895537,-0.3481918,0.36689675,0.9599725,-0.02211872,-0.23062156,0.7803937,0.604684,-0.14610146,0.70008713,-0.7239791,-0.70066553,0.32022515,-0.030507123,-0.37787977,0.27241156,-0.4499317,0.18548091,-0.7467474,0.34706864,-0.38207757,-0.39079836,-0.6099111,-0.39910582,-2.8782275,0.17958327,-0.33713597,-0.058017183,-0.19590253,-0.11645138,0.32501113,-0.48029292,-0.5411405,0.101280466,0.1494408,0.5354773,-0.14201389,0.09926745,-0.12895775,-0.35209405,-0.24984874,0.24297498,0.35692108,0.12503272,0.01613551,-0.49234095,-0.09780507,-0.2018138,-0.37347463,-0.011788062,-0.4502084,-0.32763594,-0.18962656,-0.3826763,-0.35445538,0.6008343,-0.15079173,0.052409936,-0.29244575,-0.074298516,0.07773861,0.25269774,0.17463306,0.29031688,-0.08269518,-0.09684177,0.13717273,-0.15560946,0.2515342,0.12982906,0.4081664,0.4446005,-0.31143722,-0.08567799,0.39706662,0.48445675,-0.1183207,0.8111588,0.38278225,-0.15358521,0.36463684,-0.089845344,-0.40342888,-0.7822042,-0.3908352,-0.035743006,-0.33310872,-0.29986477,-0.041810084,-0.35919935,-0.83798367,0.73922706,-0.16821143,0.23783194,-0.07365048,0.42046693,0.37343618,-0.20268092,-0.24247552,0.019263554,-0.18031724,-0.28273484,-0.3169267,-0.83112663,-0.33892834,-0.25107828,1.0463289,-0.06357371,-0.09897058,0.34239703,0.055915967,0.13006428,0.2764975,0.023793833,0.123577155,0.65724087,0.26194373,-0.66680235,0.48892814,-0.18517107,-0.17532755,-0.6329596,0.103517085,0.5756907,-0.64483553,0.36323005,0.55555147,0.22181155,-0.082196824,-0.64098656,-0.033305444,-0.008945823,-0.15150131,0.6122438,0.32096916,-0.76052296,0.5064967,0.19586569,-0.37090188,-0.5962995,0.63024837,-0.052563332,-0.3279423,0.00473272,0.35796925,-0.13628553,0.05394325,-0.08550278,0.31787097,-0.30622584,0.3434721,0.28139746,-0.09353294,0.39416325,-0.25512996,-0.22606961,-0.6980599,0.074782595,-0.5763193,-0.19775729,0.14603554,-0.11291588,-0.22238792,0.26399252,0.008804563,0.4561617,-0.25326154,0.0631837,-0.22074887,-0.42813867,0.6348725,0.59308344,0.3749585,-0.35427365,0.6805219,0.10789795,-0.1655676,-0.39929682,0.047552798,0.49795854,-0.16218852,0.420251,-0.02733791,0.17962806,0.31960356,0.5054219,0.30528548,0.4281852,0.1995259,-0.04018317,0.19078507,0.10910257,0.06189302,0.03316226,-0.3711131,0.034517385,-0.24366716,0.12790868,0.44329178,0.105023764,0.5355392,-0.22202425,-0.124828674,0.021900574,0.22251698,-0.14991666,-1.3082211,0.45245978,0.026171435,0.5840672,0.55428386,0.10031603,0.09745834,0.5128736,-0.2728076,-0.08293841,0.23679747,0.24401169,-0.25757587,0.64180017,-0.6100843,0.4293394,-0.104146,0.031119756,-0.060810376,0.0535744,0.5254248,0.7684837,-0.09931672,0.139361,-0.023588214,-0.21447489,0.24311881,-0.26233086,0.27276048,-0.37760115,-0.34656507,0.7707445,0.29229945,0.35035527,-0.24543397,-0.012219445,0.06398235,-0.25582752,0.363079,-0.027225064,0.016646456,-0.16028315,-0.4807031,-0.12353815,0.46423975,-0.018679181,-0.015328783,0.048331086,-0.18206218,0.06107629,0.088633224,-0.07900517,-0.02057057,-0.5473176,0.13008352,-0.37351754,-0.2840495,0.44616783,-0.27458265,0.2210633,0.18711877,0.0112432195,-0.45125884,-0.030655837,0.11038222,0.5069636,0.06355749,-0.2868786,-0.18669862,0.10594635,0.22249483,-0.26345226,-0.020551106,-0.33459902,0.28303945,-0.673499,0.5144113,-0.22747014,-0.20967585,0.16958629,-0.1993397,-0.12573777,0.51247954,-0.17112255,-0.11948948,0.059301242,-0.08954889,-0.25865477,-0.4513925,-0.2441248,0.11118793,0.08510963,-0.021042172,-0.029714258,0.065019704,-0.040016912,0.43441695,0.11763813,0.24301949,0.26511353,0.03526608,-0.5560729,0.022890644,-0.11795983,0.55806464,-0.08627278,0.0044699153,-0.36429018,-0.666914,-0.1865752,0.29858023,-0.17118959,0.21158719,0.13188712,-0.13042517,0.99426675,0.10241256,1.124645,0.00016543269,-0.3042805,-0.052823428,0.66059506,-0.29284108,-0.16934289,-0.29251912,0.9553387,0.64598536,-0.21458639,-0.20996472,-0.2615507,0.09732737,-0.084271,-0.23015015,-0.37144747,-0.11765353,-0.67371136,-0.25097418,0.14633636,0.42349702,-0.07067951,-0.15167457,0.11168614,0.4194153,0.12723742,0.20251945,-0.48325342,-0.15840606,0.51012284,0.0481289,-0.058917332,0.060952947,-0.36317107,0.33948454,-0.49654335,-0.13892053,-0.31559098,-0.009617325,-0.038629737,-0.4533949,0.31140384,-0.07545767,0.20653722,-0.39664462,-0.099163555,0.005616051,0.2236309,0.25625405,0.14785086,0.6567015,-0.2036461,0.11356856,-0.041363187,0.40345758,1.1276792,-0.32447538,0.041131597,0.2187164,-0.4176595,-0.6982502,0.11639709,-0.45607063,0.02179912,-0.14323992,-0.46005338,-0.5079647,0.31309286,-0.033646364,-0.06493278,0.18642655,-0.6745778,-0.21971565,0.22848286,-0.27326262,-0.2526653,-0.32372823,0.013526329,0.6238477,-0.20959559,-0.32390803,0.039225213,0.3949589,-0.26610553,-0.55498695,0.14935793,-0.3265373,0.3338007,-0.04117986,-0.1929101,0.080613956,0.11652549,-0.46032482,0.07573087,0.4086596,-0.29285005,-0.04254302,-0.34720847,0.019710895,0.5440957,-0.13144879,0.12020759,-0.45180404,-0.5036585,-1.0523045,-0.16497359,0.28229797,0.10331485,0.07719709,-0.5027674,-0.041934133,-0.18126637,-0.06855796,-0.11763299,-0.34467852,0.3160899,0.13775437,0.48270544,-0.20216209,-0.7537028,0.08309902,0.17428796,-0.27273458,-0.19223714,0.5382902,-0.10736386,0.62550056,0.0489605,0.1005478,0.10990753,-0.7065081,0.2677641,-0.086807065,-0.23371443,-0.58776206,0.00092234614 +550,0.56727403,-0.12481538,-0.43146855,-0.20822519,-0.50135154,0.40555078,-0.29213637,0.2421826,0.2464297,-0.28281966,-0.13450126,-0.095183305,0.015861064,0.26749057,-0.21287332,-0.6822195,0.048578434,0.22013858,-0.56974274,0.33567613,-0.65639114,0.44318697,0.05640333,0.47950593,0.08746459,0.29339233,0.14108501,0.025046114,-0.38796335,-0.00036678315,-0.10822281,0.22450924,-0.5917366,0.17296098,-0.30070984,-0.4033574,-0.10553963,-0.32545072,-0.22086586,-0.6501015,0.23973446,-0.81548345,0.6128777,-0.18482867,-0.33887926,0.08934984,0.10223846,0.1520443,-0.2399882,0.13439171,0.08549156,-0.1672654,-0.043954246,-0.32802135,-0.45433372,-0.53159344,-0.5342778,0.15312289,-0.6218744,0.027624415,-0.19414823,0.2694983,-0.1990131,0.082173735,-0.13291289,0.2890135,-0.27536616,0.20844455,0.257805,-0.32760695,-0.2693151,-0.48304942,-0.16257595,-0.13679132,0.2871653,0.056739345,-0.32037848,0.010900433,0.39470783,0.60354435,0.047036003,-0.27520955,-0.3616527,-0.11101837,0.102894165,0.5240526,-0.09580162,-0.17245798,-0.32435018,-0.1359165,0.4806487,0.18569802,0.15370008,-0.29007742,0.09688307,-0.12145162,-0.22379327,0.20339727,0.52044547,-0.4521801,-0.23895298,0.35701334,0.4281578,0.04625477,-0.17635117,0.24647234,-0.006215787,-0.546353,-0.1833722,0.10473275,0.110263556,0.618239,-0.26905116,0.23589562,0.69393057,-0.1487575,0.021891275,-0.044619314,0.052203346,-0.08864071,-0.31960583,-0.025896946,0.06436207,-0.49589494,-0.1600399,-0.25789824,0.58371407,0.09575831,-0.70080525,0.40813535,-0.5246556,0.04266713,-0.03755563,0.40206805,0.864165,0.348852,0.032459434,0.7361423,-0.3373222,0.047689836,-0.16706075,-0.27137044,0.07522988,-0.19173536,0.13684374,-0.39325052,0.18170029,0.10509084,-0.10090377,0.043959476,0.7141277,-0.41668376,-0.15838803,-0.05016174,0.51681656,-0.4792013,-0.15632248,1.0176435,0.8724085,0.9390427,0.09736322,1.5357877,0.5096198,0.08540311,-0.015741842,-0.22229414,-0.5119764,0.16475365,0.14943895,-0.1826182,0.42344257,0.19161278,0.014607605,0.52362186,-0.17312293,-0.08192758,-0.038530577,0.24569298,0.049370475,0.0622188,-0.25500524,-0.3980158,0.25301117,-0.0012744387,0.121528655,0.39860016,-0.14436322,0.4409514,0.12407123,1.5283009,0.061158106,0.033625,0.07232623,0.23937152,0.30350497,-0.24982338,-0.079799175,0.292605,0.1925602,-0.19058962,-0.4857159,-0.16061245,-0.30561975,-0.4010881,-0.20024997,-0.3280564,-0.25094935,-0.15862392,-0.50968474,-0.23215698,-0.01312817,-0.3310658,0.536103,-2.3184354,-0.403927,-0.14943291,0.35978475,-0.20755723,-0.54225093,-0.44727585,-0.5074083,0.16323242,0.21047395,0.25124398,-0.5389917,0.27833304,0.35955334,-0.40707532,-0.34142062,-0.6905005,0.07377585,-0.08370028,0.22758977,-0.2698059,-0.1476719,-0.19672656,0.07876566,0.75477415,-0.04606665,0.10551087,0.4051337,0.64346117,0.10241225,0.45756587,0.23504385,0.6768011,-0.35903102,-0.2858071,0.43115357,-0.48945245,0.44848397,0.05711017,0.19983073,0.5639633,-0.4773473,-0.7480174,-0.65294427,-0.24157873,1.1765608,-0.3108965,-0.29068616,0.027263952,-0.31399265,-0.3728834,0.05064655,0.43054417,-0.08882164,-0.07493441,-0.65166456,-0.040620573,-0.03195894,0.112881966,-0.19421917,0.25877127,-0.27765718,0.6010891,-0.115802355,0.35771438,0.264385,0.2453617,-0.028111223,-0.32333967,0.0755358,0.8655415,0.35556135,0.124871686,-0.26550442,-0.22875471,-0.23839352,-0.11882378,0.060418606,0.5465897,0.53914666,0.024548301,0.22602259,0.34971103,0.0035081585,0.05147322,-0.17027596,-0.1988895,-0.14439838,0.17822386,0.5745005,0.71836495,-0.1867494,0.45388713,-0.21771608,0.16988198,-0.27690214,-0.6471827,0.42240143,0.69723946,-0.23171256,-0.20286518,0.57344383,0.32897452,-0.43825683,0.38972962,-0.49664548,-0.3931764,0.51601005,-0.10833274,-0.45778498,0.19136031,-0.34049806,0.005897848,-0.82025784,0.33802155,0.043286443,-0.47070345,-0.4780835,-0.27628785,-2.9935496,0.22262995,-0.03209548,0.0060936767,-0.041236177,-0.35852635,0.23836157,-0.5559828,-0.5343907,0.16117303,-0.040715978,0.4873455,-0.12623009,0.26724443,-0.30192414,-0.28779763,-0.28287876,0.2315011,0.13717842,0.35182497,-0.13498668,-0.3230597,0.08267941,-0.31713742,-0.3240924,0.053908005,-0.73252815,-0.5347895,-0.055471875,-0.3474442,-0.20534325,0.7452291,-0.5407766,-0.11176041,-0.33756238,0.0115068,-0.2168711,0.4061838,0.13923311,0.11831167,0.21586803,0.07148765,-0.1315278,-0.4225482,0.2613912,0.047653675,0.2310854,0.59429157,-0.14687027,0.22801049,0.4064904,0.65990853,-0.08061635,0.73586977,0.11061563,-0.012068317,0.4109951,-0.19405165,-0.24799137,-0.62845254,-0.2891408,-0.27777404,-0.5521938,-0.4527993,-0.06289946,-0.42425162,-0.77817714,0.52026635,0.074081905,0.12612817,-0.16009255,0.36418253,0.5752248,-0.22200276,0.018060315,-0.107268535,-0.26575077,-0.4192305,-0.5800033,-0.50686496,-0.67181337,0.41523272,1.3229403,-0.09553901,-0.0147778215,0.0676144,-0.2514172,0.058892895,0.14438525,0.1804469,0.0017173251,0.5385254,-0.12148021,-0.65616506,0.28934756,-0.22519697,-0.19116801,-0.5987785,0.031254236,0.788602,-0.6801443,0.5892449,0.48678023,0.2953555,0.21852341,-0.63530284,-0.19464913,-0.005095767,-0.21716617,0.569232,0.3780209,-0.59640694,0.49929056,0.17451094,-0.14692971,-0.6881111,0.43455064,0.050119884,-0.10027452,-0.087004855,0.45915973,0.18565963,-0.08919444,-0.028182156,0.11595039,-0.5717894,0.22127104,0.37718853,-0.04604406,0.44921103,-0.06535982,-0.3159003,-0.7255037,-0.13533194,-0.32620484,-0.3879042,0.049295582,0.08711221,0.21003075,0.20424767,0.112680584,0.32978344,-0.5421477,0.08298545,-0.06930241,-0.15695214,0.28235683,0.33235958,0.43877605,-0.49168795,0.569102,0.015319387,0.04261225,0.12214902,0.018638404,0.42270857,0.15780085,0.3270225,-0.020047562,-0.06824487,0.126022,0.70662075,0.1354088,0.34160557,0.19115622,-0.4235726,0.2732752,0.20542759,0.15845184,-0.15178935,-0.2846747,-0.087898664,-0.10436814,0.31674522,0.37458208,0.15640524,0.36563593,-0.092206575,-0.15455057,0.22297017,0.031209907,-0.066507444,-1.2201155,0.05786802,0.25178203,0.69730973,0.3163953,-0.012878434,0.0046813986,0.3146243,-0.35505995,0.12420644,0.4025282,-0.13588074,-0.26704788,0.44235426,-0.48557532,0.46577016,-0.24127795,-0.00034626125,0.0811659,0.18899943,0.39624876,1.0071167,0.0055744736,0.019326758,0.09908161,-0.31981897,-0.0040541687,-0.30193803,0.019343495,-0.6087712,-0.19971623,0.9017436,0.41389903,0.36142403,-0.4728137,-0.13709646,0.009063214,-0.17991628,0.034334492,0.042054903,0.062404417,-0.20909758,-0.5612968,-0.2509382,0.5838764,0.060267814,0.06679074,0.15272127,-0.43990287,0.30163166,-0.21009302,0.0562974,-0.010078947,-0.6536223,-0.17947952,-0.40555525,-0.69550437,0.25047365,-0.15839347,0.06675645,0.19098625,0.03462953,-0.33844927,0.28183562,0.10595486,0.95299995,-0.048466526,-0.06092206,-0.23118776,0.20321494,0.43851286,-0.26185554,0.002549267,-0.25457516,0.2751522,-0.504059,0.42476672,-0.20203556,-0.23050229,-0.13480766,0.017385293,0.07282066,0.43344697,-0.19716215,-0.09284285,0.124129586,0.03189729,-0.40739474,0.049492143,-0.33671626,0.2784592,0.065059915,-0.19705442,0.017383516,-0.1666243,0.017401194,0.2512616,0.106949694,0.14511853,0.4267255,-0.055035256,-0.27203313,0.0712651,0.04707354,0.5066331,0.0036918442,-0.16465409,-0.3425127,-0.30660385,-0.39668533,0.6303471,-0.14758253,0.065913506,0.106203645,-0.28404462,0.83958435,0.14529055,1.143694,0.14059053,-0.3739188,0.06383536,0.5500459,0.05653548,0.054383874,-0.29652923,0.90937793,0.5863754,-0.1525034,-0.16186357,-0.25401223,-0.2355916,0.20424777,-0.38778496,-0.20249948,-0.14680801,-0.7158914,-0.09589977,-0.017340787,0.10698258,0.07362993,-0.19510178,0.1629569,0.16305518,0.0909694,0.5646487,-0.5423963,-0.17045334,0.27383092,0.3983542,-0.08279003,0.31409442,-0.30962792,0.38726285,-0.72994643,0.09629773,-0.4991097,0.19745909,0.0020874818,-0.37263072,0.13684319,0.18456106,0.3200221,-0.3685347,-0.3872393,-0.42537835,0.5371334,0.08696316,0.29713824,0.6153201,-0.24770811,-0.29406464,0.08369085,0.5509334,1.3157476,0.100147806,-0.019859107,0.4567221,-0.2437081,-0.68844205,0.2614221,-0.50183207,0.15235479,-0.08463655,-0.33311552,-0.3923903,0.39393845,0.2663725,0.11299028,0.05108243,-0.51728016,-0.028441422,0.38974422,-0.20753309,-0.21433306,-0.19269043,0.17741175,0.76378757,-0.32525048,-0.36634833,-0.03698719,0.33490238,-0.3665529,-0.51091427,-0.017443193,-0.44794658,0.4321817,0.24695061,-0.25038633,-0.055706702,0.1519514,-0.45672318,0.035845652,0.23903266,-0.26713672,0.06781195,-0.3384449,0.0017240762,1.0637202,0.053908728,0.2749742,-0.5306082,-0.5554558,-0.96386313,-0.28265908,-0.008623147,0.11067511,-0.023619385,-0.53208464,-0.0543794,-0.11689366,-0.21574463,0.08331716,-0.4113993,0.47148132,0.24519315,0.47153717,-0.014758078,-0.9569566,-0.089314505,0.1113029,-0.43659985,-0.4659949,0.5318812,-0.18082409,0.72448623,0.19170062,0.0020286718,0.13078572,-0.61543834,0.36115253,-0.35310224,0.03533729,-0.69640833,0.0006256302 +551,0.20015462,-0.11799073,-0.45342574,-0.017225707,-0.07266738,0.13536623,-0.14587136,0.35895947,0.039143916,-0.65271664,-0.10626748,-0.24754727,-0.04619819,0.037442744,-0.24171104,-0.27418527,-0.0722884,0.21493848,-0.47898343,0.21911745,-0.5285193,0.32085988,0.14795732,0.03817646,-0.14631328,0.13794313,0.26890162,-0.23812921,-0.18729667,-0.32222596,0.109641224,0.026846737,-0.7833051,0.28182033,-0.13302046,-0.3025603,0.03908384,-0.4007467,-0.46636328,-0.6946802,0.44376764,-0.88265353,0.5158794,0.118107714,-0.08744935,0.3029053,0.092026,0.31725505,-0.19208823,0.14231841,0.45712975,-0.098437965,-0.05551068,-0.18837143,-0.18847577,-0.16138966,-0.51249564,0.06043588,-0.4576054,-0.21775223,-0.4553114,0.26157248,-0.32775757,0.08086643,-0.27909073,0.32465017,-0.32409033,0.041353602,-0.03954682,-0.08378645,0.3236508,-0.5612709,-0.031829935,-0.12122267,0.106330134,-0.37355185,-0.038862288,0.30161405,0.14080143,0.5111595,-0.052766357,-0.017121777,-0.17615421,-0.075217985,0.14646068,0.49080595,-0.23989713,-0.34274018,-0.021803081,-0.13702302,0.047357883,0.07405925,-0.124425136,-0.3349005,-0.038746145,0.057119977,-0.3446149,0.3299424,0.6717561,-0.24081069,-0.18795045,0.3937485,0.49659744,-0.1052258,0.1403865,0.07714148,0.06864355,-0.54046625,-0.2793912,0.1481986,-0.17437617,0.39151493,-0.071492456,0.255448,0.6308744,-0.35661447,-0.008311641,0.1559667,0.095175944,0.08904624,-0.15264863,-0.30895117,0.2846934,-0.4980527,0.026717743,-0.24710111,0.94128543,-0.0072807926,-0.85051465,0.32478413,-0.48152336,0.055458248,0.038698778,0.63329774,0.45044866,0.5790518,0.15067412,0.7445128,-0.58866996,-0.010889645,-0.13655399,-0.34935763,0.09787475,0.009393573,-0.12288645,-0.17553179,-0.10765002,0.17452681,-0.12727605,-0.21831144,0.44807616,-0.3897836,0.016787728,-0.002112319,0.69940376,-0.3429903,0.07935217,0.513848,1.0518328,0.717459,0.20265524,1.4046768,0.095653795,-0.27943203,0.14933336,-0.17439759,-0.9903566,0.26428688,0.3094009,0.13431758,-0.015992701,0.2990763,-0.09733218,0.15304853,-0.5009926,-0.05462873,-0.3047774,0.25896212,-0.1028151,-0.11712936,-0.29011336,-0.17176718,0.1013318,0.05361761,0.116625905,0.15501922,-0.31938756,0.037293848,0.20543182,1.2529706,-0.2474044,0.33173195,0.21889721,0.32724044,0.07086306,-0.016900113,-0.13593693,0.24108303,0.395573,0.24393952,-0.6253636,-0.07118358,-0.13751866,-0.44709292,-0.12200529,-0.14683785,-0.06177522,-0.076858275,-0.29188862,-0.26088318,-0.14080155,-0.6226742,0.3122861,-2.5677593,-0.067696586,-0.064373404,0.47732508,-0.18637168,-0.24915652,-0.14609434,-0.4327083,0.53648466,0.43019542,0.46086392,-0.6734109,0.34976295,0.5276585,-0.3535377,-0.050041478,-0.57104474,0.049923908,-0.11266842,0.2707719,0.1300305,-0.16690218,-0.16263653,-0.045442265,0.29642656,-0.15284234,0.07133765,0.4075221,0.44365743,0.18352382,0.47551283,-0.04666409,0.45198694,-0.45125794,-0.20761962,0.27948707,-0.5138197,0.032068282,-0.033944268,0.16754736,0.23172492,-0.68316674,-0.83218235,-0.6833413,-0.51808816,1.3697819,-0.28516886,-0.3606054,0.46917662,-0.11297505,-0.34840932,-0.18788572,0.47320354,-0.16565253,0.09271645,-0.8675057,-0.05317059,-0.2481765,0.5337865,0.010847968,0.113711655,-0.53869337,0.6425515,-0.23913622,0.4211184,0.4440712,-0.03255752,-0.5296622,-0.44914934,0.061736804,1.2379532,0.26063907,0.25440654,-0.13665228,-0.16150375,-0.24430929,-0.067366086,0.01631798,0.4766527,0.7470019,0.059478845,0.04147862,0.27473417,-0.00016047557,0.036900375,-0.042860318,-0.38749966,-0.16328971,-0.11786459,0.65156645,0.40467775,-0.09538818,0.2244764,-0.111567535,0.21363513,-0.3102213,-0.27714503,0.3407255,0.6526327,-0.02372425,-0.2479309,0.6283936,0.49227104,-0.25621954,0.44928607,-0.5331703,-0.5667687,0.27588657,-0.22788316,-0.5247043,0.2882182,-0.35973784,0.11614274,-0.72776264,0.5385166,-0.31352594,-0.70003,-0.51622075,-0.19994695,-3.5556939,0.18286891,-0.21097668,-0.18457837,-0.063351065,-0.06884059,0.21383817,-0.3286747,-0.5108308,0.05029181,0.08542162,0.5182153,0.0029591906,0.033451468,-0.1980576,-0.043257892,-0.266069,0.24118741,0.2578575,0.12973036,-0.00403064,-0.38943854,-0.12388512,-0.17277716,-0.16688836,0.006882814,-0.5351679,-0.40776834,-0.07837827,-0.6559928,-0.4534019,0.7523864,-0.412631,-0.040429983,-0.23286788,-0.02019392,-0.14393948,0.45871553,0.10092089,0.18753518,-0.072226174,-0.22103477,-0.24452268,-0.14767526,0.5651395,-0.00786304,0.32315412,0.5061114,-0.41553497,-0.15132606,0.33293068,0.6041183,0.031134715,0.99317855,0.2603276,-0.18328495,0.26561037,-0.1886232,-0.19367194,-0.55778694,-0.12430539,0.061571747,-0.401216,-0.27854148,0.040712297,-0.40015602,-0.7006569,0.5359163,-0.12166223,-0.033801634,0.11342555,0.31011948,0.22355956,0.04086708,-0.19206937,-0.18078315,-0.09087625,-0.39750266,-0.3486173,-0.7267158,-0.2796772,-0.168703,1.1822997,0.061441142,0.13077502,0.14988597,0.020317161,0.111346535,-0.031686783,0.062077958,0.27827552,0.5070084,-0.05560891,-0.6135246,0.38559735,-0.197563,-0.08544803,-0.57699525,0.0510288,0.66344213,-0.67182285,0.53687257,0.4528388,0.13198969,-0.23599708,-0.4515591,-0.3312885,-0.067444265,-0.19851011,0.28936994,0.15186876,-0.81532437,0.412294,0.329803,-0.21458645,-0.73875403,0.48324445,-0.094917536,-0.09243282,0.13173287,0.4809425,-0.3094202,0.047600195,-0.11485708,0.24897473,-0.21545869,0.48179784,0.007514199,-0.073671386,0.50835836,-0.3422121,-0.22565621,-0.5619601,0.078998886,-0.4792877,-0.14512907,0.15054077,0.0037648405,-0.026426012,0.38744855,-0.11499258,0.5417201,-0.3050114,0.03819171,0.052641213,-0.22787617,0.36113456,0.3215407,0.3897055,-0.38513115,0.65570074,-0.013818492,-0.1375464,-0.46323195,0.18602057,0.41266093,-0.055775937,0.26885006,0.090362586,-0.097781144,0.46121225,0.9491101,0.3350583,0.59018564,0.16790496,-0.019301271,0.33889067,0.2287354,0.13898887,0.18810946,-0.6519757,-0.05089805,-0.0869908,0.12677474,0.30437407,0.06204322,0.38551185,-0.29653832,-0.2305996,-0.07142642,0.3978301,-0.13102658,-0.9761629,0.3650795,0.014637157,0.562005,0.5138561,0.02838993,0.16365838,0.5500364,-0.15960056,0.0610023,0.13560326,0.051501393,-0.46936318,0.5513758,-0.60030115,0.34075582,-0.14604832,0.03766923,0.094382055,-0.081881754,0.39316395,0.71659833,0.053723603,0.019426906,-0.13081867,-0.09984999,0.17746536,-0.3669277,0.33119848,-0.32876906,-0.27526724,0.7161729,0.25440294,0.25063702,-0.07093683,-0.024247602,-0.10383946,-0.14975804,0.09093539,0.034425814,0.073154785,-0.025871957,-0.73327583,-0.109211385,0.5330026,0.32753095,0.17394985,0.14918368,-0.21641405,0.36496785,-0.12826908,-0.06998919,-0.110129006,-0.5822385,0.07802217,-0.36226735,-0.24960943,0.033808265,-0.21945198,0.37568244,0.22755341,0.02097094,-0.52924025,0.17097561,0.47887626,0.5523014,-0.04565933,-0.27202925,-0.20652135,0.2132687,0.15639216,-0.21905775,-0.021696342,-0.2778233,-0.072855465,-0.76822454,0.35915998,-0.110433914,-0.23844905,0.37695834,-0.19519328,-0.04413739,0.587827,-0.011312445,0.014609297,0.31180567,-0.17217797,-0.12599783,-0.09812981,-0.17311333,0.13032325,0.30497053,0.06259606,-0.047797773,-0.029083215,-0.20394294,0.3432952,0.08767387,0.29303426,0.2975308,0.4057046,-0.32643732,0.0030984383,-0.12934011,0.6968043,0.038110066,0.07318299,-0.2145626,-0.39495358,-0.16138679,0.26827475,-0.06148382,0.22601992,0.18655439,-0.44265756,0.71260947,0.05132736,0.88341635,0.06414673,-0.1507663,-0.14357899,0.6154178,-0.03652099,-0.13490482,-0.36097836,1.0636332,0.66640186,-0.20232894,-0.19695874,-0.2945696,-0.06460601,-0.11517277,-0.12638429,-0.26095784,-0.058427524,-0.5899183,-0.17426002,0.27658916,0.48458803,-0.10230768,-0.013777991,0.20464306,0.27432212,-0.030616118,0.27709043,-0.5152065,-0.085182585,0.36265263,0.118032195,0.11586085,0.056513846,-0.40263176,0.3240571,-0.64924884,0.06476711,-0.077764116,0.0043327212,-0.06693469,-0.19471185,0.16316493,-0.0743046,0.4694178,-0.32474375,-0.17391682,-0.11379593,0.31011704,0.08067233,0.28367138,0.7437454,-0.11402128,0.1027577,0.07724401,0.49050128,0.8128777,-0.15307312,0.052815955,0.3037769,-0.3616457,-0.5371979,0.333653,-0.3395195,0.020672023,-0.075104594,-0.2976682,-0.09843924,0.34130704,0.17609428,-0.13840686,0.12981422,-0.640806,-0.15294157,0.34804937,-0.23359753,-0.21115895,-0.20570461,0.1669146,0.7192464,-0.24447481,-0.17972429,0.053353388,0.40384388,-0.42381844,-0.6555027,-0.22160548,-0.33838323,0.32023498,-0.026054442,-0.15177841,-0.027160773,0.10807835,-0.3157754,0.121610545,0.060987826,-0.3874353,-0.030210525,-0.25370625,-0.04738735,0.53542846,-0.059130568,0.04007113,-0.5283388,-0.44814038,-1.0192263,-0.08390388,0.44034377,0.12606372,-0.01183226,-0.4436883,-0.19406427,0.01717008,-0.17434096,-0.022893453,-0.42781746,0.46229926,0.08300731,0.48343673,-0.14598581,-0.81426096,-0.0028723974,0.07520025,-0.17998986,-0.5102388,0.52684873,0.10272917,0.7204351,0.08589971,0.09774166,0.25911525,-0.7744377,0.14116906,-0.12478729,-0.23815988,-0.73331946,0.06886034 +552,0.373612,-0.15696748,-0.3170803,-0.0904883,-0.18496956,0.11349816,-0.15783235,0.2843292,0.18354747,-0.5697309,-0.15715663,-0.21571036,0.08382939,0.07455737,-0.21695317,-0.39157706,0.068053834,0.14912601,-0.5601665,0.5342973,-0.41007942,0.2929494,0.17837922,0.27829248,0.2681772,0.13966395,0.13149966,-0.18083988,-0.26543874,-0.19839826,-0.14436814,0.19725612,-0.6725235,0.23682284,-0.2553285,-0.47400883,-0.09367097,-0.2529672,-0.4087213,-0.73272836,0.25560635,-0.98990923,0.45676008,-0.0014438672,-0.16991211,0.30628103,0.022465173,0.18279971,-0.3384262,0.048345156,0.29704785,-0.28658465,-0.123946846,-0.13294782,-0.1909902,-0.43713814,-0.50221103,0.07501849,-0.38782692,-0.14039521,-0.53588057,0.17999408,-0.24728398,-0.11842406,-0.11850227,0.42961496,-0.5490819,0.119214095,-0.13916375,-0.055117916,0.24056947,-0.59320456,-0.25150973,-0.11643864,0.27717948,-0.32340476,-0.18655273,0.2654956,0.2883094,0.43423897,-0.0010341427,-0.106798396,-0.40015134,0.05166081,0.19303103,0.42410618,0.03822956,-0.53006566,-0.23173311,-0.17212038,0.15206112,0.016897324,0.22388425,-0.20701455,-0.1677446,0.10453491,-0.40497616,0.43235794,0.6036582,-0.40282068,-0.15896344,0.44530222,0.38633165,0.14806427,-0.14737962,-0.0019289723,-0.024597036,-0.43279308,-0.14480735,0.21098247,-0.31266123,0.7575265,-0.23003353,0.34812334,0.64174926,-0.25203326,0.023101857,0.21902661,0.12901907,-0.20124647,-0.051880676,-0.26490003,0.2547262,-0.55279607,0.09978207,-0.3163603,0.8082611,0.17434128,-0.5783189,0.3665092,-0.3753849,0.0814751,-0.13532422,0.5229668,0.56152165,0.4984868,0.38249436,0.7288146,-0.5668109,-0.11252538,-0.12961534,-0.37756422,-0.059115477,-0.2377212,0.00432212,-0.36333913,-0.07357514,0.0007525938,0.012515025,-0.058528494,0.4923134,-0.35851958,-0.11399924,0.14570141,0.76644486,-0.28971997,-0.15139662,0.8999683,1.1115106,0.99030447,0.12115395,1.0616821,0.27431244,-0.36019227,-0.015512343,-0.17297284,-0.70989865,0.2625859,0.30943248,0.34488073,-0.017632058,0.24479055,0.019692926,0.21332386,-0.55218786,0.058584716,-0.25217813,0.09128384,0.078138895,-0.0031336653,-0.31299302,-0.2954762,-0.04989153,0.014163665,0.08336009,0.19039711,-0.19226725,0.4839111,0.12252658,1.4513662,-0.002254801,-0.0044464385,-0.062164493,0.6818995,0.12900816,-0.023545295,-0.0018000092,0.25494406,0.3447041,0.0694732,-0.61914885,0.006526883,-0.23029445,-0.61592954,-0.12014258,-0.31995264,-0.16791104,-0.047557943,-0.48624343,-0.1790153,0.062318377,-0.46105045,0.41301367,-2.732553,-0.18511936,-0.050472137,0.46153095,-0.19581853,-0.17984973,-0.094511986,-0.6261372,0.5467256,0.27593315,0.54287964,-0.8007635,0.50744355,0.521713,-0.3989964,-0.2431878,-0.6534068,-0.14410914,-0.089862175,0.3668202,0.07567023,-0.06765306,-0.012747415,-0.07557608,0.546966,-0.074287675,0.22810163,0.2849525,0.372758,0.009346387,0.42228362,0.07436206,0.545982,-0.37809148,-0.043427013,0.25866884,-0.34458998,0.298721,-0.13592957,0.13491002,0.58566093,-0.5200429,-0.8048037,-0.71615946,-0.2285182,1.1509696,-0.17521127,-0.5220645,0.23213765,-0.2523559,-0.1524239,-0.102233686,0.56409866,-0.04817944,0.025723588,-0.7422199,-0.012371684,-0.08513856,0.22418484,-0.0026758898,0.05088187,-0.38657755,0.71169406,-0.103224926,0.49249235,0.28019515,0.23227689,-0.3834471,-0.42450452,0.14839526,0.9863777,0.32150474,0.14569625,-0.3860896,-0.17472482,-0.32789594,-0.07064224,0.07719517,0.48537084,0.43619004,-0.06324481,0.14854643,0.3370152,0.025101883,-0.10527567,-0.23264866,-0.24734856,-0.20490994,0.06015351,0.5464935,0.8085608,-0.0821897,0.4643596,-0.22702594,0.15251252,-0.1744548,-0.4281884,0.6764656,0.87157726,-0.12699974,-0.22458129,0.493431,0.46031985,-0.18938006,0.40708822,-0.49859935,-0.55700266,0.35249615,-0.078177966,-0.3371542,0.1386734,-0.3405724,0.112070814,-0.75954646,0.4281402,-0.0824244,-0.55143857,-0.608069,-0.088622935,-3.1533296,-0.01815113,-0.21871074,-0.1703775,-0.12691233,-0.37119743,0.15880813,-0.49800715,-0.39669088,0.1451718,0.062925115,0.7194649,-0.008815714,0.20957875,-0.24775639,-0.1228144,-0.26063222,0.14780758,0.16774797,0.30679837,-0.057570573,-0.56149954,0.010830079,-0.2151845,-0.2758573,-0.018345568,-0.6247214,-0.4287381,-0.093886696,-0.3975597,-0.40612063,0.5539629,-0.40844655,0.087515526,-0.21651646,-0.0710191,-0.1371996,0.36615035,0.16801631,0.0787768,-0.0890638,-0.111527316,0.012618328,-0.19964603,0.27088255,0.06776782,0.16941762,0.45329693,-0.09234699,0.118248776,0.4709156,0.5300003,-0.16900818,0.98240554,0.39970812,-0.15435591,0.285034,-0.14219852,-0.34460473,-0.7334982,-0.2627497,-0.08464517,-0.5263278,-0.40995908,0.20681964,-0.28147012,-0.93840504,0.50940293,0.08260317,0.23889562,0.09197492,0.20115693,0.48419133,-0.10411431,-0.076743975,-0.04241357,-0.04386402,-0.5428976,-0.49407142,-0.80859333,-0.45593277,-0.0638616,0.7609424,-0.054751523,-0.030915763,0.23768936,-0.22868745,0.020081053,0.1618212,0.044229306,0.050134268,0.4734619,-0.02296452,-0.6268893,0.67229927,-0.04189088,0.021175636,-0.47063917,0.27586663,0.6320664,-0.5884005,0.44388628,0.4163138,-0.041678745,-0.23400353,-0.32847616,-0.338188,-0.32600382,-0.13742912,0.4063305,0.10086276,-0.87155396,0.4198293,0.29382414,-0.15273425,-0.7266796,0.5608124,-0.04840573,-0.18303442,0.0064231455,0.30484205,0.16212232,0.06561445,-0.2938495,0.19098808,-0.48884815,0.2698251,0.19287507,-0.10287432,0.39532492,-0.29936978,-0.19022469,-0.6614691,-0.11380378,-0.42824095,-0.26655918,0.11442985,0.07829748,0.0074838675,0.37652677,0.17950146,0.27017388,-0.23866619,0.046746723,-0.0518211,-0.16691686,0.22865392,0.44116837,0.5867817,-0.50090265,0.5820032,0.016921353,-0.09757684,0.05106926,0.10488166,0.29155353,0.15637712,0.35808793,0.16424093,-0.25648886,0.34106705,0.95097774,0.3434692,0.5605046,0.20386209,-0.23894612,0.35079196,0.23791073,0.38538522,-0.12671399,-0.5814581,0.13668767,-0.31690794,0.13910504,0.21765241,0.104948215,0.3581548,-0.13214214,-0.08819564,-0.0871946,0.119138,-0.00031550654,-1.1694683,0.3605226,0.29591116,0.85066235,0.47645047,-0.21383753,0.08025748,0.82819515,-0.26704788,0.053028133,0.24430075,-0.027178848,-0.44149575,0.5870289,-0.694727,0.37924168,-0.064477906,0.027847806,0.03983238,0.05100585,0.30487496,0.6908798,-0.17197241,0.1098609,-0.008395295,-0.38878128,0.26407185,-0.41789284,0.26409587,-0.44023815,-0.21016707,0.88008416,0.46570295,0.3118975,-0.14711511,0.050013006,-0.09780569,-0.15369332,0.1941798,0.19906215,0.04849455,-0.112680726,-0.706277,-0.13362302,0.64022416,-0.14187463,0.2897747,0.11352159,-0.16985764,0.307919,-0.14296737,-0.1081457,-0.023088412,-0.6660181,-0.11381871,-0.30566654,-0.35911447,0.43008894,-0.010671428,0.33450732,0.25458905,-0.046231534,-0.26477933,0.40045664,0.18934962,0.51358926,0.14193867,-0.10067427,-0.38685116,0.019970225,0.24252415,-0.14694974,-0.04004645,-0.17851043,-0.0022930077,-0.56092393,0.4361327,-0.120782964,-0.18816961,0.08444296,-0.09994141,0.04815065,0.6154005,0.06886897,-0.102518626,0.1939143,-0.056423817,-0.32581654,-0.026864976,-0.18808149,0.33216485,0.26473904,-0.03770004,-0.051964052,-0.08741622,-0.04111328,0.34728995,0.016361307,0.3727109,0.20457721,-0.041103788,-0.37160328,-0.14122348,0.08522662,0.6109025,0.0029628107,-0.11263294,-0.15672477,-0.4096958,-0.37428504,0.07186214,-0.0556033,0.22014438,0.07394062,-0.2293351,0.742106,-0.08507783,1.1020051,0.1926897,-0.41845956,0.08455549,0.4313352,-0.10579884,0.0052770204,-0.302558,0.8921055,0.5574556,-0.04276315,-0.1375799,-0.4194635,-0.07415937,0.22497301,-0.13888262,-0.32226604,0.0101398,-0.7026028,-0.09281666,0.15668309,0.2720235,0.14345495,-0.021554861,0.06778825,0.3514946,0.08728435,0.24896465,-0.70265144,-0.21206822,0.44193038,0.16869542,-0.043848403,0.039153855,-0.3630934,0.41528144,-0.4557565,-0.07537242,-0.2149308,0.118150644,-0.30276838,-0.2584973,0.35282612,0.14220951,0.42762497,-0.2515029,-0.42640772,-0.42535517,0.4702044,0.12668814,0.30557364,0.4257737,-0.17230892,0.00027060084,0.042998914,0.38670912,0.963363,-0.30890867,-0.03005906,0.43301463,-0.38049722,-0.5361683,0.40715072,-0.3843721,0.216393,0.16028638,-0.24099183,-0.60331887,0.25401956,0.12881534,0.07626857,0.25024804,-0.7260095,-0.16615672,0.24430661,-0.23633362,-0.22373827,-0.2166054,0.03792223,0.4515271,-0.3679221,-0.22097911,0.12920745,0.3022154,-0.24204366,-0.48496243,-0.011191877,-0.44542146,0.30614302,0.06295176,-0.38021252,-0.032685626,0.10340949,-0.4093004,-0.0016975339,0.18337071,-0.41651514,0.10102989,-0.36089805,0.073983945,0.91309994,-0.14316988,0.3048326,-0.5719401,-0.4259042,-0.79084617,-0.3376744,0.45391634,0.22692636,-0.094684295,-0.5846842,-0.1344947,-0.060804844,-0.16408746,-0.06660021,-0.6396517,0.61283904,0.11958458,0.3059251,0.035304457,-0.7608523,0.044541616,0.11810743,-0.22898205,-0.50412244,0.49240702,-0.12017404,0.8396665,-0.0045772535,0.14631271,0.3113521,-0.51202095,-0.017707156,-0.20522703,-0.14963292,-0.5341045,0.007077462 +553,0.41994146,0.024352066,-0.5777867,-0.09908808,-0.32584688,0.12520157,-0.2753945,0.036409684,0.4547356,-0.65237653,0.013983635,-0.17664933,0.027649406,0.23208357,-0.09879342,-0.64011943,0.18104467,0.3454998,-0.43602732,0.6939423,-0.53330463,0.23343563,0.23823158,0.39959496,-0.114586025,0.0020532827,0.050365932,-0.29189116,-0.21211842,-0.39323103,-0.05905191,0.056809478,-0.6360694,0.54471403,-0.07085445,-0.1604997,0.111746825,-0.33686405,-0.28760624,-0.74000096,0.1929026,-0.77522653,0.59092325,-0.041264,-0.2849167,0.24432446,0.048141662,0.053354263,-0.17142795,0.14161427,0.14215168,-0.50096923,-0.56030685,-0.29415396,-0.37975752,-0.3617252,-0.5944351,-0.06045999,-0.5498777,-0.08334573,-0.35044828,0.32584256,-0.3583215,-0.058994148,-0.13890722,0.4662207,-0.4169944,0.26113868,0.28435227,-0.33278415,0.20254722,-0.5538135,0.010101834,-0.0038620508,0.24253839,-0.043316398,-0.24376991,0.05717612,0.23007518,0.54026365,0.0852654,-0.3218645,-0.19253911,-0.30271724,0.2928786,0.45155743,-0.252234,-0.20848681,-0.15383208,-0.18366742,0.11732716,0.22123946,-0.13260722,-0.27531707,0.19056419,-0.27993,-0.19306758,0.3930655,0.55482316,-0.30665773,-0.12735678,0.3570841,0.3133856,0.0861187,-0.14302911,0.09522348,0.014473884,-0.66088146,-0.24205254,0.14862145,0.04042884,0.332853,-0.18761054,0.3719783,0.61248255,-0.07038545,-0.090328805,-0.065240934,0.06098727,0.12359877,-0.3701735,-0.101258464,0.39833075,-0.5856338,-0.053647928,-0.40234247,0.8553127,-0.024198243,-0.73234653,0.4435625,-0.43703407,0.08896316,0.06910127,0.7552137,0.7888793,0.609766,0.13087328,0.7363835,-0.42919672,0.071492024,-0.2308956,-0.39829758,0.24289657,0.06150631,0.39061376,-0.34343508,-0.005112772,0.03684043,-0.0046461727,-0.03220971,0.72153795,-0.39802396,-0.25034776,0.098227665,0.8897683,-0.2928785,-0.08390375,0.5943438,0.94492364,0.7547873,0.08202815,1.4800409,0.38274604,-0.13756718,-0.21155721,0.057080336,-0.80029356,0.23810779,0.13716394,0.20580699,0.030354332,0.1647581,-0.14441296,0.39587897,-0.26680386,-0.16739123,-0.2450929,0.30960017,-0.28688484,-0.013228183,-0.47167903,-0.32852608,0.10946373,0.084280185,0.3380349,0.33863136,-0.11821938,0.6662458,-0.06630329,1.4618132,-0.26429388,0.19001998,0.11864409,0.18108438,0.20761491,0.0696117,-0.17508738,0.36142242,0.35949883,-0.0150672775,-0.4908757,0.041480817,-0.013154988,-0.34017313,-0.24448036,-0.2221631,-0.07640093,-0.37040234,-0.28469554,-0.1472803,0.070196494,-0.670893,0.3160801,-2.471926,-0.11169414,0.034656066,0.26713976,-0.05937147,-0.105399854,-0.28980735,-0.40449238,0.7487207,0.16149667,0.51985335,-0.45647234,0.41847837,0.65851593,-0.59449077,-0.23073545,-0.76694715,-0.064490825,-0.2645508,0.35409987,0.043585207,-0.34283978,-0.16115028,-0.014977474,0.63071895,-0.011619341,0.021836529,0.41387507,0.43571347,0.043752853,0.44691548,-0.055726454,0.6692854,-0.28813174,-0.27732277,0.32211766,-0.361293,0.29918376,-0.5071652,0.1027472,0.4623273,-0.3515482,-0.789162,-0.48978245,-0.33447254,1.0220734,-0.3208737,-0.6332153,0.22252482,-0.15046453,-0.41011795,0.27608237,0.6356701,-0.2177736,0.068561666,-0.69016045,-0.052922957,-0.05667385,0.43908623,0.017302517,0.024262419,-0.59296477,0.70500076,-0.045398038,0.52235466,0.4477952,0.27811375,-0.2236502,-0.39053917,0.19849755,1.0388837,0.3089234,0.17932382,-0.41657183,-0.19902417,-0.13535386,-0.13707414,-0.20669991,0.6282873,0.7939208,-0.0114699295,0.042444844,0.4324118,-0.20140402,0.03248123,-0.17762426,-0.47592682,-0.2659225,0.0822603,0.6612764,0.5769063,0.04542493,0.35162947,-0.05164594,0.38395584,-0.15135697,-0.5734259,0.63450724,0.821146,-0.18006366,-0.08654635,0.6931969,0.34545523,-0.3393131,0.5234371,-0.5659105,-0.4505599,0.32355097,-0.0725741,-0.54624575,0.2739178,-0.35202232,0.02033956,-0.8201816,0.29935333,-0.2505493,-0.78110915,-0.58466476,-0.042555068,-2.9357684,0.28779587,-0.18345444,-0.037003253,-0.24845281,-0.01304817,0.23889098,-0.231069,-0.43053085,0.111945495,0.23426816,0.66869324,-0.14150336,-0.016805997,-0.2766242,-0.18267271,-0.1786251,0.066606216,0.172052,0.14469813,-0.15815306,-0.31208098,0.027030377,-0.3371012,-0.18796304,-0.07323046,-0.69385684,-0.20071767,-0.043078043,-0.5800906,-0.27514592,0.72794163,-0.46944538,0.06694614,-0.49999124,0.14806098,-0.009072588,0.20064497,-0.2343224,0.40493238,0.067571595,-0.21240014,-0.29017594,-0.13861142,0.14333017,0.043828547,0.14647871,0.5474054,-0.1385004,0.09364046,0.32009363,0.52506053,-0.021010637,1.1048484,0.25215212,-0.005310994,0.20086047,-0.22337188,-0.22702871,-0.5818739,-0.18563019,-0.07320391,-0.5839568,-0.3375942,0.026505686,-0.39209983,-0.77226776,0.7313582,0.25183994,-0.2715418,0.027842939,0.30444583,0.3153547,-0.19891421,-0.006179557,-0.23135236,-0.20143846,-0.48673466,-0.28992948,-0.72930145,-0.40056723,0.0034487844,0.8838813,-0.34168726,0.07127506,0.2223673,-0.29009265,-0.0028600716,0.36091334,-0.019743273,0.12112396,0.490973,0.21355192,-0.79999554,0.57007116,-0.30291802,-0.09063216,-0.6338303,0.3294495,0.7976252,-0.82330936,0.6732016,0.63835835,0.15641502,-0.062786154,-0.56385005,-0.35576683,-0.021369044,-0.18270744,0.40765297,0.15436994,-0.88495624,0.58513737,0.205011,-0.10352039,-0.8813798,0.26669928,-0.117877685,-0.25441852,0.13396417,0.49653614,-0.07087765,0.18392144,-0.22697257,0.13731185,-0.5023937,0.26053488,0.0043269396,-0.145424,0.42740792,-0.21313259,-0.23531125,-0.77202725,-0.10402247,-0.55759245,-0.28883076,0.25017098,-0.056448378,-0.015975565,0.21301502,0.07032083,0.50203335,-0.39912495,0.046897575,-0.26862043,-0.3350001,0.3881399,0.4591039,0.30589643,-0.48063883,0.71817845,-0.0862866,-0.036787793,-0.21427418,0.17556104,0.5392507,-0.0052859783,0.6125581,-0.27695024,-0.08390085,0.23110884,1.1206373,0.02666571,0.43153828,0.31551552,-0.10058456,0.5918571,0.012090006,0.19750632,-0.24618758,-0.511834,-0.03991193,-0.33948252,0.16931406,0.4418836,0.15060219,0.6870812,-0.03905233,-0.0016742578,0.033895284,0.19748951,0.24110618,-0.77598315,0.40542597,0.30971405,0.6635402,0.50992304,-0.082770586,0.19543971,0.7955348,-0.21183528,0.025265751,0.22737288,-0.14632748,-0.22124997,0.6470789,-0.76961195,0.18284005,-0.14189675,0.14944276,0.30805573,0.0069577717,0.58677495,0.9327771,-0.22004281,0.11351369,-0.19251864,-0.115977846,0.16971289,-0.2286101,0.15462825,-0.41542068,-0.56966627,0.74661577,0.48283917,0.38398796,-0.32445967,-0.07122519,0.41998202,-0.13673452,0.111958556,0.13338211,-0.16083163,0.02024745,-0.5046676,-0.107588805,0.6093691,0.18677856,0.00085257564,0.23321018,0.024358401,0.43866858,-0.29272863,-0.07444246,-0.2417133,-0.7021374,0.07439869,-0.479561,-0.45649618,0.45941353,-0.24937394,0.1710898,0.2202362,-0.0049213823,-0.043942496,0.38210493,0.16003975,0.711169,0.21406563,-0.33672932,-0.119209476,-0.10074917,0.16125692,-0.4308537,-0.21803872,-0.19917819,0.22084881,-0.7407465,0.24893138,-0.43108946,-0.20823182,0.39380378,-0.20035623,-0.024408044,0.57950974,-0.0504243,-0.10364505,0.12858109,-0.19811766,-0.3064389,-0.07516435,-0.28759414,0.10571757,-0.028284954,0.004541892,-0.11811134,0.00039257683,-0.34580362,0.2134133,0.11476852,0.08688773,0.29915774,0.25668934,-0.29711035,-0.05023949,0.2547166,0.6513675,-0.12879927,0.12674262,-0.09895169,-0.23582642,-0.35953647,0.38184264,-0.061105844,0.22855332,0.09097397,-0.33515507,1.0167025,0.07548448,0.65685683,0.06258149,-0.41787353,0.042844698,0.53792256,-0.106423564,0.018184606,-0.40482134,0.9573214,0.47663042,-0.023866292,-0.1377616,-0.698352,0.08346324,0.31650817,-0.3905846,-0.15291478,-0.14436617,-0.7093841,-0.1716562,0.24700055,0.2025858,0.101702414,-0.18581687,0.10512464,0.14895378,0.32871306,0.083429575,-0.8001439,0.20108615,0.42210034,0.24783672,-0.0065322565,0.21072644,-0.15372911,0.3181853,-0.70840573,0.2299541,-0.2783648,-0.07429065,-0.22835913,-0.057338826,0.27400377,-0.08627109,0.22868861,-0.38499472,-0.23110078,-0.23324324,0.28468582,0.4792361,0.1953629,0.99742305,-0.2867426,-0.058476217,0.09027122,0.63816637,1.2296115,-0.33938578,0.054356202,0.45680097,-0.2450777,-0.5645276,0.14189011,-0.44908094,0.086420424,0.14940774,-0.47124413,-0.2529425,-0.058141343,0.1453109,-0.10220885,0.06238895,-0.47100064,0.025004255,0.26593226,-0.087140486,-0.16522701,-0.25439703,0.004202359,0.6904039,-0.15187468,-0.14199401,0.025583807,0.12146783,-0.3680833,-0.634593,0.13428603,-0.43092898,0.2382175,0.08267533,-0.38512185,0.058201525,-0.00968553,-0.62213194,-0.015828123,0.25538987,-0.33852196,-0.024707912,-0.31360298,0.055322472,0.77181065,-0.23916706,0.14973912,-0.43065813,-0.6202703,-0.7094408,-0.2512557,0.16636151,0.045197506,0.043642245,-0.32648513,-0.15768915,-0.38957733,-0.021370951,0.103289,-0.47662494,0.28385922,0.1034761,0.42442322,-0.32515752,-1.0443323,0.34608862,-0.0021123062,-0.4232034,-0.52218974,0.34190306,-0.10843285,0.5426741,0.012303774,0.03383788,0.28756922,-0.61168313,0.11085976,-0.2532771,-0.10768244,-0.8426132,-0.009784561 +554,0.5231232,-0.12859257,-0.64393955,-0.13116202,-0.36419985,0.07118392,-0.23158875,0.291925,0.22980876,-0.25192967,0.02600876,-0.03667025,0.02464954,0.49523336,-0.14858887,-0.66793483,0.13657375,0.18753041,-0.6244656,0.63483995,-0.3700618,0.47672012,0.022559313,0.14657965,0.13887516,0.2081555,0.16525884,0.091315046,0.038594473,-0.02346781,-0.18675537,0.28334576,-0.35622045,0.13524845,0.0076338965,-0.35560176,0.027687455,-0.34613147,-0.37948143,-0.6998665,0.33709848,-0.61959547,0.5746588,0.045071658,-0.43605843,0.22024806,0.2168052,0.31749025,-0.29450846,0.125299,0.0830722,-0.10627078,-0.10572662,-0.14896022,-0.29239064,-0.42289844,-0.50270474,-0.025481287,-0.68230987,-0.1556967,-0.37097472,0.13699916,-0.39446798,-0.007681374,-0.07480159,0.28574145,-0.3176388,-0.10818894,0.27038255,-0.17099148,0.10118716,-0.44504398,-0.0358599,-0.060530424,0.30560604,-0.09501466,-0.1278849,0.3022971,0.18126135,0.56001174,0.07711325,-0.37260762,-0.23726879,-0.09890812,-0.06544405,0.45626932,-0.118359946,-0.3492109,-0.24741589,0.1774843,0.26510993,0.107509516,-0.017494153,-0.13582477,-0.14488885,-0.0539562,-0.21077985,0.47198993,0.5188158,-0.4002781,-0.18112227,0.5493483,0.4518078,0.19077645,-0.13356066,0.19027558,0.0007732401,-0.5353672,-0.1372807,-0.028171273,-0.17781456,0.36492836,-0.09188501,0.30156633,0.58175963,-0.12254991,-0.104952306,0.057370868,-0.019172285,-0.045856792,-0.1274414,-0.12733258,0.028701417,-0.37298357,0.1492856,-0.05417065,0.8361653,0.116759695,-0.62685513,0.3856958,-0.43921047,0.26550233,-0.11190287,0.51168233,0.8375316,0.43844718,0.123561874,0.84323883,-0.3704788,0.10561382,-0.23315448,-0.3737577,0.014138941,-0.14708243,0.13169977,-0.53234124,0.071464285,-0.067645654,-0.1368293,0.15394051,0.58120275,-0.43486422,-0.25230452,0.109146126,0.75182766,-0.3064631,-0.07993293,0.66615766,0.92156464,1.0027006,-0.0018806055,0.76088744,0.30610988,-0.0654056,-0.05043803,-0.4070348,-0.7201308,0.19594769,0.37487411,0.45177123,0.29900745,0.055351317,-0.050269112,0.428436,-0.30663487,-0.16039939,-0.19491081,0.41589954,-0.056784756,-0.062898465,-0.55662125,-0.13553809,0.012970909,0.20381455,0.19684026,0.23087373,-0.19460759,0.29819667,-0.035472084,1.6784686,-0.048207883,0.09536989,0.07233653,0.4912983,0.448484,-0.05810443,-0.25524554,0.24103852,0.33832118,-0.03583692,-0.5157947,0.101495914,-0.26306075,-0.29231185,-0.14639802,-0.28537807,-0.0104904175,-0.14727086,-0.4484768,-0.04432101,0.091654256,-0.46414793,0.41310832,-2.700026,-0.30518296,-0.12763551,0.28246024,-0.15937856,-0.4006553,-0.19250916,-0.36511704,0.4566427,0.32202095,0.42647305,-0.6146914,0.43604413,0.4213787,-0.44435042,0.0005974571,-0.5038999,-0.07082532,-0.10142656,0.4065529,0.064034134,-0.26872227,-0.07717453,0.37826833,0.52797973,-0.07475567,-0.026038243,0.31772283,0.35642356,-0.008034702,0.44354972,-0.034285896,0.47739035,-0.24813436,-0.23092394,0.32861704,-0.29650882,0.15045999,-0.1986882,0.204904,0.43334395,-0.43806374,-1.0249839,-0.5590572,-0.008193628,1.207764,-0.30278575,-0.34219706,0.36457685,-0.38127887,-0.19948098,0.06069537,0.4436424,-0.104773805,-0.11028341,-0.6387839,0.18061538,-0.086252026,0.13367759,0.004606986,-0.047526613,-0.34194073,0.6001358,-0.09769623,0.4688384,0.110392906,0.2750215,-0.16976161,-0.34877726,0.07950388,1.0302824,0.40122074,0.049852673,-0.23210277,-0.17489572,-0.17514539,-0.1279516,0.11885583,0.45742184,0.7030415,-0.035607394,-0.042281713,0.21765958,-0.05331141,0.10799181,-0.13102956,-0.21415631,0.011359187,0.007841102,0.4970463,0.60420895,-0.12031083,0.59022826,-0.060522676,0.07604453,-0.22140035,-0.5618675,0.54354423,0.7229703,-0.24851461,-0.29617283,0.6312847,0.39167327,-0.18705197,0.33790478,-0.6538058,-0.40212414,0.2997832,-0.25698513,-0.23934577,0.30553952,-0.39113188,0.20487493,-0.8801196,0.18790086,-0.050722852,-0.5240816,-0.35056457,-0.06926332,-3.9511385,0.19958846,-0.15363489,-0.09070078,-0.026072232,-0.103528515,0.30025136,-0.55353826,-0.48436996,0.1683362,0.062249493,0.81924033,0.014074045,0.11639272,-0.12184366,-0.36110285,-0.25727195,0.17361537,-0.09892505,0.4417332,0.09203396,-0.36407518,-0.11259945,-0.18921496,-0.44123894,0.033941984,-0.6223396,-0.39951804,-0.19107153,-0.5678105,-0.036442574,0.6027919,-0.08391881,0.13871908,-0.28569892,0.083389044,-0.08389093,0.22517961,0.20392114,0.08022277,0.12972993,-0.17600441,0.077983506,-0.34613413,0.20606461,-0.038910184,0.25612313,0.2951016,-0.015795963,0.16629696,0.65011185,0.5863866,-0.15033658,0.86274517,0.5083535,-0.20507322,0.17866516,-0.20907608,-0.18080963,-0.5002485,-0.296872,-0.11397173,-0.42843544,-0.20817086,-0.15770626,-0.35278186,-0.71966046,0.49299917,0.05962891,0.16921046,-0.0764284,0.20753461,0.5192737,-0.31144476,-0.119667806,0.07908109,-0.30507764,-0.40413687,-0.21547228,-0.5614064,-0.41179127,0.15464257,0.9774601,-0.30963215,0.040988002,-0.04349215,-0.14617775,-0.11217635,-0.1444967,0.29827192,0.2332203,0.25356615,-0.15031618,-0.60667443,0.34298575,-0.3292828,-0.03928556,-0.64903533,0.09214832,0.5168863,-0.3644543,0.37546647,0.30452558,0.17085974,0.01020441,-0.55870885,-0.101462506,0.19736522,-0.21477845,0.3319084,0.2258945,-0.87289244,0.5686916,0.26867348,-0.28070578,-0.65874773,0.39816177,0.045662288,-0.49687767,-0.07613926,0.29834175,0.19930081,0.008240665,-0.28610376,0.1682411,-0.3669163,0.3316868,0.19470552,-0.16165046,0.31625107,-0.21452469,-0.25323817,-0.4455144,-0.2465037,-0.53628254,-0.24469146,0.14104484,0.077091806,0.19287175,-0.11797794,-0.07393029,0.4338583,-0.46999824,0.05398655,-0.17700471,-0.3279416,0.47033855,0.54622597,0.5334091,-0.31750235,0.6576119,0.010115937,-0.066328116,0.01259985,0.07081353,0.50490624,0.03982846,0.36103624,0.0078092893,-0.20620997,0.3271875,0.8363047,0.1154202,0.3460929,0.14121626,-0.23264049,0.12884328,0.16238065,-0.058353074,-0.05774383,-0.3031614,-0.15640083,-0.15953301,0.21336919,0.4385461,0.18769567,0.28254217,-0.075213976,-0.2308344,0.07337927,0.14497979,-0.0150806345,-1.3648635,0.3142329,0.17892711,0.6614063,0.27005088,0.09549462,-0.1568193,0.6783528,-0.07604752,0.12056758,0.15698496,-0.17819971,-0.26773602,0.4319611,-0.6481364,0.48019654,-0.03480258,-0.056412484,0.107211575,0.13697058,0.35806847,0.7800763,-0.17054524,0.040777795,-0.004252843,-0.357707,0.004098622,-0.25241476,-0.012511905,-0.5912846,-0.4015083,0.4846919,0.35754645,0.27780324,-0.15103026,-0.04547311,-0.031933706,-0.076823905,0.01297737,-0.09074841,-0.043191552,-0.16180977,-0.6341726,-0.227665,0.45226675,0.29315484,0.11440294,-0.124010086,-0.04253633,0.3111491,-0.106883936,-0.030997988,-0.06316717,-0.47247913,0.004508386,-0.31421995,-0.47838935,0.5148578,-0.28394014,0.3329549,0.16119899,0.008154458,-0.14966656,0.39553973,0.05672457,0.7704004,-0.003603669,-0.22726487,-0.35172838,0.080219135,0.14093575,-0.24436656,-0.15540941,-0.20497891,0.18140364,-0.69607157,0.43742695,-0.18265633,-0.3976164,0.25013894,-0.22833596,0.12448178,0.42989242,-0.19318034,-0.19489272,-0.14613435,-0.112393826,-0.3067486,-0.26653707,-0.24377877,0.22189131,0.017476344,-0.21648918,-0.09643997,-0.14357014,0.055982057,0.42794818,0.029332126,0.30038968,0.32054773,0.25411466,-0.24848346,-0.014458688,0.32899207,0.5845104,-0.029146316,-0.053717352,-0.34901798,-0.36199564,-0.4286743,0.032853793,-0.16211359,0.150396,0.102615766,-0.23934005,0.717348,0.14807771,1.0445675,0.050293807,-0.18808122,0.18722682,0.4269345,0.07881052,0.053885635,-0.25469792,0.7571197,0.54923654,-0.020255422,-0.106080174,-0.4625599,-0.13846299,0.2841875,-0.2876152,-0.08905725,0.024383456,-0.67777526,-0.2880047,0.27445835,0.17635952,0.25285876,-0.15938003,0.0398279,0.17037576,0.17587443,0.2500834,-0.58359617,-0.043326266,0.31681487,0.19206555,0.024152882,0.15637036,-0.531399,0.30654252,-0.57102245,0.0023103633,-0.2909202,0.22794327,-0.058340088,-0.20042671,0.31559902,0.069112726,0.37509066,-0.32265148,-0.2934243,-0.20351115,0.48437583,0.07730486,-0.04439706,0.47993818,-0.23704052,-0.060928702,0.11765577,0.46775967,0.9501611,-0.25155357,0.15357432,0.4091164,-0.21670562,-0.7289324,0.1999404,-0.26494005,0.1682218,0.016824782,-0.27160046,-0.49641177,0.36357826,0.075799,0.17210573,0.08479066,-0.3816815,-0.10450387,0.21069282,-0.12700732,-0.1835892,-0.24532379,0.18797515,0.5804034,-0.19526537,-0.19284493,0.15437026,0.37483528,-0.09625348,-0.7331923,-0.07370634,-0.24755621,0.22957294,0.17282228,-0.37481314,-0.16486053,0.012523921,-0.5281898,-0.020178216,0.27696648,-0.3518396,0.05009177,-0.22368288,0.005479932,0.9924231,-0.31076622,0.23512448,-0.6588127,-0.55603313,-0.8444702,-0.3508932,0.49004108,0.14745755,0.081712656,-0.6536259,0.0136347795,-0.17839164,-0.015769117,-0.0069754003,-0.43048885,0.4039981,0.10462917,0.25299364,-0.07542806,-0.8570001,0.101442575,-0.043939274,-0.39074278,-0.5736855,0.57694435,-0.056939546,0.7498642,0.0519833,0.08660765,0.20253663,-0.5748933,0.15915559,-0.27349404,-0.16557099,-0.68365747,0.06471855 +555,0.37335458,-0.25785488,-0.40171435,-0.18236682,-0.1296548,-0.10749281,-0.08234057,0.5094057,0.25991556,-0.17192292,-0.17462324,0.17247437,0.07713289,0.5562645,-0.14776528,-0.6469847,-0.17041172,0.13035916,-0.5116725,0.39309788,-0.5096212,0.10220691,-0.015510871,0.42466047,0.06536233,0.37821776,0.21112302,-0.036447387,0.032595508,-0.019926507,-0.05837232,0.09139057,-0.28588507,0.1077331,-0.07537772,-0.2568438,-0.017691515,-0.35383046,-0.17446296,-0.77498525,0.1857415,-0.9386263,0.40553343,0.17898244,-0.24993092,-0.0806644,0.24370344,0.31015873,-0.5632704,-0.10805874,0.18984519,-0.19121288,-0.27598125,-0.30351952,0.067041345,-0.2459558,-0.48638922,-0.048432432,-0.4209451,-0.22851914,-0.16049168,0.1372475,-0.34475356,0.094636485,-0.106845416,0.48111156,-0.35942298,-0.26126397,0.49601045,-0.30630657,0.2906406,-0.66267556,-0.0002161998,-0.043165684,0.38197047,0.083176665,-0.1483149,0.33413702,0.3155553,0.39176422,0.11257185,-0.25797474,-0.45850885,-0.15427479,0.10753334,0.40056977,-0.2614675,-0.33701736,-0.0885837,0.1361936,0.32680082,0.34438345,0.09134762,-0.13913317,-0.08802095,-0.086159594,-0.113877065,0.41415113,0.5245645,-0.18799545,-0.23563522,0.22577633,0.558029,0.16227606,-0.16435632,-0.18923269,0.033961758,-0.54809725,-0.08836794,0.058352496,-0.12473878,0.5414559,-0.020405272,0.016619701,0.7939349,-0.04375806,-0.10094983,-0.16305949,0.08412258,-0.04561978,-0.48237756,-0.34452236,0.35684508,-0.4171449,0.03135806,-0.25475004,0.5831703,0.071089596,-0.6887443,0.3727763,-0.41782835,0.17078546,-0.09031563,0.5610326,0.6286176,0.36128286,0.4680252,0.72009474,-0.4069794,0.05772183,-0.12592174,-0.28584015,0.13934019,-0.17985828,0.19798602,-0.49748462,0.11750825,-0.056619074,-0.022576243,0.26642463,0.29799554,-0.4293377,-0.12081657,0.34824005,0.66231537,-0.2580326,-0.071097024,0.60395443,1.1481131,0.97176635,0.02994147,0.9750305,0.23713371,-0.13723344,0.09745137,-0.35266715,-0.5272161,0.15280144,0.43071523,0.16664189,0.32778734,-0.15704927,-0.10093637,0.5613167,-0.4011069,0.06025573,-0.031884983,0.36501363,0.17404467,-0.04789694,-0.6782289,-0.2095796,-0.06263501,0.07275563,0.07366891,0.2770323,-0.21220566,0.24934067,-0.298909,1.2828797,0.022785438,0.13031684,0.29715565,0.422776,0.17193875,-0.18279043,-0.09171552,0.30952924,0.40500024,-0.080357075,-0.49311912,0.29488486,-0.37345618,-0.46947083,-0.05232149,-0.39092684,0.08555441,0.19417885,-0.42654303,-0.0813775,-0.037777636,-0.24440703,0.41316992,-2.8051646,-0.17471384,-0.20319329,0.2801966,-0.24833316,-0.098575644,-0.06246782,-0.48484457,0.29208505,0.2961579,0.5094205,-0.5483825,0.3793211,0.41489077,-0.672539,-0.11129148,-0.6729834,-0.13121408,-0.117974386,0.28763333,0.13405028,-0.18780947,0.016824622,0.2748519,0.871033,0.054045603,0.102136,0.60568565,0.21907267,-0.05903581,0.45576444,-0.1887309,0.4998819,-0.36250055,-0.22687222,0.27699357,-0.31131136,0.26214308,-0.13315347,0.12923428,0.4566536,-0.36295208,-1.0594491,-0.55382,-0.16349131,1.1760303,-0.28322855,-0.45338815,0.33185294,-0.193057,-0.07379003,0.06326246,0.659901,-0.026990963,0.14066301,-0.6781305,0.103899844,-0.032165878,0.18045703,0.110263355,-0.1885661,-0.41363132,0.66592777,-0.1263146,0.6198007,0.36951047,0.3380453,-0.22627701,-0.22197713,-0.010127797,0.68145525,0.3750698,-0.0810905,-0.140872,-0.26713225,-0.08934538,-0.27145836,0.09623588,0.5649967,0.78974396,-0.08936548,0.069187,0.22075929,-0.08852984,-0.09810325,-0.00417274,-0.1785135,-0.14238456,0.09187277,0.48681992,0.7189417,-0.13425742,0.3233169,-0.14694534,0.44786292,-0.06301547,-0.4741376,0.5814091,0.1729901,-0.12185172,-0.05987503,0.7152164,0.46455243,-0.31158537,0.45665455,-0.5632519,-0.23898031,0.5829266,-0.19027914,-0.43281814,0.09800493,-0.35058638,0.06948612,-0.8053275,0.3189618,-0.36009932,-0.40684494,-0.45766416,-0.11895982,-3.284323,0.2534316,-0.24221398,-0.212428,-0.23409939,0.038140878,0.20877555,-0.8159684,-0.59833485,0.24414451,0.29556355,0.6576952,0.047835357,0.0049802205,-0.25894275,-0.2574749,0.11547672,0.11771519,0.0060605705,0.31826442,-0.040209524,-0.32135358,-0.03376511,0.12283272,-0.5257143,0.21551657,-0.63383186,-0.48121086,-0.16995667,-0.6477639,-0.18142298,0.572137,-0.3577102,0.06621565,-0.103817634,0.17096446,-0.15944344,0.19036195,0.072537616,0.29896286,0.15771817,-0.15271114,0.22396877,-0.29020533,0.38054258,0.04146628,0.5039457,0.015002718,-0.124395244,0.1553286,0.6030878,0.76362574,-0.1423176,0.9413408,0.50610536,-0.09440716,0.11882356,-0.22137581,-0.07885267,-0.38942146,-0.48727527,0.024141889,-0.33783948,-0.46236897,0.08829946,-0.30365926,-0.89936566,0.66114396,-0.15848821,0.22873801,-0.011597608,0.11295075,0.4363661,-0.35423902,0.06963975,-0.05721378,-0.10800575,-0.50279063,-0.20751056,-0.606724,-0.44422233,0.05898881,0.8477218,-0.27864432,0.21335633,-0.04309868,-0.37646964,-0.0017258892,0.04342665,0.13075498,0.20673463,0.30171582,-0.015523384,-0.5059925,0.36144572,-0.058336742,-0.1800646,-0.5534744,0.23723768,0.6280738,-0.61118543,0.7555099,0.39812458,-0.04659816,-0.15447286,-0.68956155,-0.37359804,0.030838288,-0.08747509,0.4057614,0.079445824,-0.76308256,0.45923483,0.42882708,-0.5913696,-0.7006607,0.20267338,-0.23572199,-0.41845497,-0.14689668,0.23051286,0.09768418,-0.06545631,-0.22278768,0.19709963,-0.374844,0.14453211,0.17786336,0.0025279843,0.48764932,-0.12760691,-0.15206271,-0.84208673,-0.01665958,-0.6175181,-0.15364417,0.35342237,-0.02389421,-0.08887683,-0.00086685555,0.05510556,0.31086418,-0.37022558,0.09120031,-0.062840894,-0.49481866,0.2855921,0.48474103,0.40061697,-0.3347604,0.55540717,0.12121879,-0.15209699,-0.14385627,-0.085302286,0.43936846,-0.014758564,0.36422488,-0.4431786,-0.20479526,0.39575812,0.6025748,0.015408502,0.3618801,0.17920142,-0.08348766,0.36995938,-0.018644445,0.0050892415,0.0061043683,-0.3340113,0.22698215,-0.10550996,0.20618032,0.43338963,0.26327422,0.2946706,0.18905734,-0.23038816,0.027336912,0.243128,-0.06529902,-1.0185826,0.5601543,0.12239452,0.8550632,0.3913549,0.33421502,-0.32368073,0.739467,-0.17897977,0.042634506,0.29912823,-0.041350465,-0.5617793,0.6887685,-0.6946789,0.48090377,-0.05915087,-0.19174066,0.06162866,0.17861812,0.37968364,0.58544296,-0.18950592,0.02542765,-0.06810643,-0.15713893,-0.030188212,-0.46831375,0.07557152,-0.4870733,-0.51201445,0.7261219,0.3967527,0.46902445,-0.13774279,-0.107540086,0.14769903,-0.08805128,0.3187409,-0.28105116,-0.091780625,0.23124838,-0.64293534,-0.16165182,0.3502679,0.17389959,0.1876238,-0.3128406,-0.1906397,-0.045968734,-0.15272877,-0.20234965,-0.0131511185,-0.6295065,0.05679586,-0.27684033,-0.445045,0.48731798,-0.39929384,0.19352292,0.10001466,-0.040522512,-0.11293011,0.2649346,0.021638045,0.97127944,0.04619319,-0.17081629,-0.3272987,0.14740235,0.028914332,-0.18334855,0.35483938,-0.5359536,0.04439525,-0.5651542,0.6186437,-0.20927033,-0.47302204,0.18775599,-0.2966727,0.008364448,0.5174328,-0.25991797,-0.251164,-0.15626453,-0.29698306,-0.3433893,-0.17185314,-0.2989272,0.2917321,0.18015964,0.061987165,-0.07682274,-0.2003231,-0.0693216,0.56419307,0.09805096,0.3958448,0.3047602,0.03730444,-0.1612259,0.19061668,0.18757862,0.4679682,0.30632788,-0.17268036,-0.70000744,-0.4134488,-0.26832947,-0.0066953646,-0.15627035,0.25310138,0.023644438,-0.034879588,0.8403218,-0.07857318,1.1378856,0.060649913,-0.3260609,0.015015712,0.49355137,-0.09037268,-0.0022056182,-0.33768955,0.8195325,0.5475279,-0.12896952,0.0030264992,-0.57268006,-0.016490089,0.46635062,-0.3554265,-0.1146014,0.016025256,-0.53941923,-0.41763777,0.22512802,0.1191609,0.29176375,-0.121693455,0.15973455,0.013009314,0.17233385,0.36908117,-0.53621125,-0.009193512,0.16044976,0.22446051,-0.008015449,0.12523529,-0.4032705,0.42830864,-0.6003039,0.23926511,-0.4666375,0.06834285,-0.12661079,-0.38290936,0.15660103,0.07238744,0.41425446,-0.38064396,-0.3886002,0.0941325,0.490996,0.14498053,0.10491265,0.60687834,-0.23323737,-0.027308168,0.19095184,0.65710574,1.1955835,-0.5872773,0.12803735,0.29527518,-0.3386604,-0.6862997,0.40885413,-0.14194433,-0.046527274,-0.17358278,-0.52498066,-0.60704124,0.29836285,0.36802056,-0.080457695,0.0642466,-0.36303315,-0.23139018,0.22342502,-0.34038007,-0.24009642,-0.1474142,0.44852483,0.4939749,-0.1990358,-0.53157085,0.04370992,0.3107174,-0.09152831,-0.3964876,0.014349951,-0.25428867,0.25009134,0.054300666,-0.3914908,-0.17825763,-0.035601947,-0.38316876,0.012778124,0.069494836,-0.30907476,0.15254557,-0.25501373,-0.08522039,0.7998555,-0.196117,0.06497009,-0.606371,-0.35717472,-0.9790888,-0.4985518,0.42848256,-0.04657547,-0.10300244,-0.49985808,0.11262076,-0.045726594,0.04801791,-0.021699332,-0.4336572,0.364569,0.08592481,0.50219405,-0.3103376,-0.59902614,0.123615965,0.084862344,-0.14412409,-0.50378394,0.5001933,-0.021956764,0.8879811,-0.03160062,-0.07365355,0.03542889,-0.38561425,0.11434747,-0.43795604,-0.28431168,-0.589012,-0.031290468 +556,0.3899457,-0.21048424,-0.6091427,-0.15539016,-0.4561545,0.3109129,-0.11440333,0.27694717,0.34508634,-0.39242926,-0.036429934,-0.056504246,-0.068478845,0.6232346,-0.06629886,-0.57970804,-0.19245955,0.1541456,-0.73891383,0.36507508,-0.49247247,0.38687292,-0.07218344,0.3485361,0.079925016,0.36295295,0.123414524,0.11423409,-0.31401703,0.039478276,-0.17960595,0.16323192,-0.47002625,0.2748696,-0.061341736,-0.40637088,-0.12267285,-0.5014663,-0.07986273,-0.6216853,0.4222323,-0.7329559,0.63923156,-0.32900435,-0.18754964,0.18690751,0.08441241,0.19136998,-0.1687617,-0.044308756,0.18078461,-0.24788864,-0.19751784,-0.09479304,-0.46033153,-0.4821389,-0.6965439,0.040168535,-0.6373823,-0.025243798,-0.09248232,0.26428607,-0.27716595,0.11923026,-0.28073674,0.34507555,-0.42680666,0.0037160218,0.13500142,-0.1530726,-0.23112212,-0.423791,-0.15495683,-0.13027795,0.27369982,-0.19978918,-0.16743045,0.2867817,0.3087086,0.45740137,0.089741334,-0.28582612,-0.374999,0.04988103,0.015513254,0.6173108,0.036292683,-0.14020377,-0.22530653,0.03144015,0.3428248,0.22242782,0.03510184,-0.30017248,-0.013350929,-0.036322188,-0.26553184,0.37036484,0.3297666,-0.4270337,-0.4052553,0.4728959,0.461336,0.065031655,-0.13553278,-0.019050121,-0.0061993515,-0.534759,-0.2460278,0.22993481,-0.01721237,0.41863087,-0.18445136,0.35500357,0.7093791,-0.20024021,-0.094766006,-0.06489722,-0.022289816,-0.109717,-0.29501772,-0.038510475,0.09167868,-0.41316468,-0.006586262,-0.24789023,0.5640188,0.16637984,-0.755628,0.41056857,-0.5622849,-0.011875557,-0.137633,0.485991,0.8414103,0.47503424,0.19168445,0.77204144,-0.32602087,0.1546825,-0.042738695,-0.42714366,0.09716009,-0.055412523,0.16258648,-0.5924028,0.085611425,0.096881784,-0.20824751,0.107508436,0.56894505,-0.41005343,-0.06604463,-0.011219705,0.6004372,-0.39396754,-0.30654016,1.0542166,0.89463574,1.0560353,-0.016499931,1.3083967,0.37643304,-0.15372075,0.15859413,-0.44053173,-0.49043226,0.20428024,0.32992807,-0.1978142,0.57192165,0.15474014,0.084487,0.49112058,-0.0013336454,-0.05566007,0.13429976,0.18673138,0.044162326,0.009846619,-0.48618677,-0.434976,0.17304751,0.10468959,0.15044677,0.38079602,-0.400205,0.6084083,0.1734009,1.6599513,0.11888326,0.09920042,-0.028558541,0.4207917,0.19501437,-0.18499042,-0.17194705,0.18857983,0.30335236,-0.09068041,-0.5189944,-0.02535567,-0.34617335,-0.4358199,-0.1416797,-0.4024296,-0.15840384,-0.30557504,-0.431475,-0.16177127,0.095688656,-0.4431503,0.46755362,-2.4606793,-0.33569452,-0.123285115,0.2600244,-0.14132771,-0.58682007,-0.27771848,-0.58047926,0.054277964,0.22843206,0.29708675,-0.67382324,0.61016846,0.31793782,-0.5286078,-0.27479216,-0.7021337,0.0038506442,-0.0056122965,0.20756146,-0.109311596,0.033627205,-0.2652282,0.19708057,0.5196097,-0.12322215,-0.107935704,0.34516788,0.6271052,0.10436276,0.5090982,0.08909263,0.7595862,-0.25891915,-0.27288404,0.29928097,-0.2623379,0.42749125,0.05897687,0.22312368,0.52293104,-0.5185021,-0.92440605,-0.6494362,-0.30561453,1.028013,-0.24039073,-0.17058566,0.26416874,-0.36019257,-0.5012816,-0.0677441,0.45997477,-0.059981447,-0.269237,-0.6543728,0.07276868,-0.049748957,0.24882625,-0.16943322,0.17152117,-0.31233644,0.49586508,-0.0778682,0.49803632,0.20099105,0.25230756,-0.25805867,-0.2802805,0.13484491,0.8211316,0.3185103,0.069810495,-0.1383346,-0.26364857,-0.20584798,-0.096130036,0.12141878,0.39798015,0.56827205,0.1857651,0.04501763,0.27523014,-0.17698915,0.008311257,-0.18235636,-0.14764288,-0.09528359,0.12586556,0.49084568,0.5858365,-0.14478578,0.604325,-0.12469951,0.15976907,-0.16399583,-0.5730435,0.45107916,0.601179,-0.15942909,-0.25386903,0.6266363,0.30977362,-0.28418708,0.43353277,-0.545638,-0.26111576,0.46762004,-0.24232975,-0.28177205,0.06710804,-0.15328245,-0.05039425,-0.8522908,0.1159827,0.12434345,-0.4815263,-0.35903522,-0.1829363,-3.7193024,0.07009753,-0.042958163,-0.13398564,0.088053904,-0.15740518,0.23682077,-0.63425,-0.50896317,0.11925354,0.1048455,0.6996918,-0.13098523,0.117039904,-0.21305908,-0.36039153,-0.2201279,0.24372308,0.10930126,0.3651824,0.04703113,-0.47433758,0.14096673,-0.33230308,-0.5555238,0.031410746,-0.6218503,-0.5210992,-0.110161625,-0.46370748,-0.28929323,0.77973324,-0.32753187,-0.03763191,-0.25460967,0.07069456,-0.1045053,0.37642765,0.12098759,0.10749842,0.16304891,0.07283813,0.010416001,-0.31900746,0.26708952,0.044676416,0.31736845,0.4792737,-0.03964098,0.3490079,0.63720894,0.7552637,0.03576913,0.81300527,0.29437137,-0.18379773,0.3573645,-0.13247588,-0.14559329,-0.7122614,-0.33546272,-0.11009822,-0.4361938,-0.5270733,-0.11400108,-0.34494567,-0.819747,0.52379507,0.103404365,0.09735954,-0.2150347,0.34447902,0.47123975,-0.3510286,0.16702707,-0.17222254,-0.26142564,-0.41117623,-0.57591015,-0.54368013,-0.57887936,0.20973766,1.3643291,-0.071515806,-0.023149295,-0.04975819,-0.41331202,0.045178752,0.117860936,0.24993144,0.3966132,0.2975529,-0.360182,-0.65981716,0.3320196,-0.46508798,-0.0069833016,-0.4959927,0.025807139,0.7032083,-0.55248034,0.44767746,0.18991892,0.2469398,0.009067059,-0.45352718,-0.06484892,0.09462763,-0.20256354,0.44408223,0.36483952,-0.7557355,0.56103843,0.02761673,-0.16772492,-0.6848555,0.4193898,0.053770866,0.06558818,-0.08167456,0.4603355,0.29107,-0.014014636,-0.22996904,0.21593356,-0.41857833,0.16081037,0.3542231,-0.020288583,0.20196274,-0.17091489,-0.11916258,-0.64425975,-0.08073437,-0.15127198,-0.36307842,-0.060448606,0.05824134,0.3691329,0.13677421,0.0077523673,0.29458168,-0.5568016,0.08695958,0.004999116,-0.26999852,0.20787445,0.38159007,0.33675313,-0.43748358,0.44833857,0.08989055,0.045229588,0.11001911,-0.17645113,0.49261624,0.3017277,0.24269965,-0.008355467,-0.3241896,0.20335911,0.7808,0.20184493,0.15993454,0.08127137,-0.35636657,0.069747984,0.10296447,0.21242078,-0.055933475,-0.34912392,-0.0817734,0.093882255,0.16258423,0.48891935,0.03131054,0.32802844,-0.16369252,-0.1578703,0.22089966,-0.010451292,-0.113969244,-1.1414483,0.3046061,0.21949159,0.76691717,0.31157318,0.004827278,-0.054724436,0.51887745,-0.43822113,0.15515396,0.43971446,-0.14967217,-0.38510084,0.48090544,-0.535299,0.6451991,0.00918095,-0.029039199,0.24182574,-0.014206899,0.41733816,1.1800163,-0.13312641,0.056985058,0.0898981,-0.25551745,0.083432205,-0.1557879,0.030423565,-0.7015633,-0.2928037,0.79506075,0.43866137,0.4675409,-0.22418666,-0.026661327,-0.008752798,-0.14808805,-0.010811006,-0.106234364,0.06311847,-0.18652022,-0.59835863,-0.24444234,0.57772094,0.057604153,0.07227319,0.078705944,-0.50847036,0.23471002,-0.18130064,-0.066134766,-0.032847878,-0.7387138,-0.2023426,-0.35873222,-0.6002082,0.25921538,-0.2316382,0.21229376,0.06991879,0.03825396,-0.3304676,0.47358766,0.42895004,0.9920258,0.121357,-0.04336012,-0.20369814,0.22015418,0.38128212,-0.26991978,-0.03294929,-0.34907404,0.24786465,-0.675982,0.49066445,-0.11589056,-0.4913982,-0.18720403,0.07483507,0.20543024,0.38097766,-0.10114233,-0.07218859,-0.16392824,0.112365305,-0.32518297,-0.027244803,-0.34071913,0.217414,0.028891388,-0.27563033,-0.12298673,-0.09837309,-0.005145026,0.3433039,0.11407245,0.18013002,0.28749976,0.041299257,-0.37891483,-0.0057889563,0.0056850677,0.5180022,-0.006097451,-0.2493417,-0.44293642,-0.066161245,-0.22404933,0.6265865,-0.10925843,0.23433574,-0.005215881,-0.3994483,0.68597937,-0.07670129,1.3113554,0.12754205,-0.4024245,0.18209513,0.4817349,0.003715607,0.17348683,-0.41540107,0.96421087,0.46250024,-0.13460787,-0.38073447,-0.45953614,-0.19011565,0.4228417,-0.36206102,-0.17475574,-0.14899336,-0.78898656,-0.2548634,0.17313945,-0.08123296,0.29109162,-0.14496042,0.31006882,0.23143078,0.1620841,0.4461096,-0.5351804,-0.01662551,0.29682955,0.43554443,-0.028438535,0.31768602,-0.43339,0.38677076,-0.8444195,0.24909948,-0.430336,0.17917824,-0.038091753,-0.20283411,0.23783623,0.3609076,0.31705502,-0.13233684,-0.4354003,-0.38723364,0.6797051,0.12022046,0.23569825,0.6946264,-0.2980421,-0.1667316,0.07179396,0.37308455,1.2064302,-0.03986017,0.010042846,0.32656997,-0.21625529,-0.55968183,0.25143677,-0.39944008,0.13348135,0.024180114,-0.15488723,-0.35480142,0.38352552,0.2099812,0.13148391,0.069508016,-0.3153722,-0.046775453,0.40559003,-0.24013494,-0.21685998,-0.28256944,0.10447843,0.8881775,-0.4347441,-0.1680244,0.1513697,0.3828711,-0.22834687,-0.51221436,0.044326037,-0.4401989,0.40452698,0.05844658,-0.30752298,-0.029018758,-0.0051113493,-0.39997822,0.1349528,0.4709237,-0.35987705,0.0013839559,-0.28355387,-0.21105136,1.1193668,0.07634701,0.25597695,-0.6351448,-0.5939182,-0.8952524,-0.36729327,-0.010548336,0.035912078,-0.13245943,-0.5207299,-0.041167676,-0.002976392,-0.31868523,0.18420598,-0.61632985,0.3928037,0.063022636,0.31850132,-0.05002858,-1.1097671,-0.11734159,0.13190739,-0.26040402,-0.44980568,0.5663916,-0.18733434,0.7682672,0.10635574,0.003292799,0.13885918,-0.36602405,0.3725219,-0.5582401,-0.0038173646,-0.6882791,0.051228292 +557,0.3283444,-0.1997674,-0.535592,0.013441605,-0.23627353,0.028263258,-0.27932993,0.23811512,0.4710455,-0.20147939,-0.25040725,0.040686686,0.09394077,0.6258913,-0.08085646,-0.65580624,-0.060902085,0.18576843,-0.75478905,0.5085261,-0.4277452,0.3046485,0.03201775,0.46872064,0.106885396,0.2286972,0.23536752,-0.023439536,0.054349948,-0.23867424,-0.1770157,0.34116805,-0.69083136,0.046171468,-0.3626,-0.17535739,0.013630261,-0.52137786,-0.340587,-0.9572725,0.3859578,-1.0398076,0.70010155,0.051297132,-0.09740728,-0.1012305,0.45263514,0.3191177,-0.35319147,0.008110632,0.27869436,-0.49913692,-0.24209988,-0.47929123,-0.29230884,-0.31520024,-0.5660096,-0.07207564,-0.6904664,-0.142237,-0.22617942,0.2975084,-0.39485013,0.080024056,-0.16326497,0.27190965,-0.3011246,0.17888586,0.33992466,-0.31707782,0.17233388,-0.63804656,-0.03607792,-0.09195235,0.6557396,0.0029180099,-0.33947682,0.5106793,0.43520752,0.44315138,0.18708754,-0.33262628,-0.22052854,-0.11275218,0.15972288,0.5231433,-0.35521755,-0.42571864,-0.1333067,0.12637545,0.53311306,0.5383837,0.07011578,-0.08226351,-0.005223438,-0.28954092,0.05686335,0.7193775,0.6420362,-0.13161252,-0.32237524,0.11288353,0.5923757,0.47489938,-0.1784383,0.0774788,0.008363289,-0.73156506,-0.18947963,0.0023704867,-0.087994814,0.4789064,-0.16436356,0.13699551,0.86883354,-0.018905744,-0.26112846,0.069287695,0.0023549546,0.043714385,-0.22449268,-0.21288395,0.39092502,-0.58960396,0.17635448,-0.4315482,0.44885966,0.15494432,-0.62925094,0.32419065,-0.5714237,0.22291376,0.14775813,0.8059856,0.7662215,0.5249297,0.5979844,0.93170375,-0.38219175,0.10534855,0.022284845,-0.407863,-0.01238133,-0.44536626,0.19253035,-0.42279908,0.2458119,-0.3495182,0.12086662,0.31552503,0.49411437,-0.5139417,-0.26180896,0.1604683,0.96784395,-0.25213727,0.03412422,0.7900386,0.90961283,1.1219511,-0.022579297,1.3122196,0.06933617,-0.25944883,-0.16927075,0.029363662,-0.7379158,0.21643536,0.26522824,-0.4941969,0.32566342,0.023231292,-0.019422397,0.25608462,-0.7303398,-0.29445496,0.11900743,0.15511754,0.1675945,-0.15852378,-0.47979447,-0.078002125,-0.1612376,-0.09764996,0.32934874,0.2327956,-0.32030946,0.6366376,-0.08115517,1.1968007,-0.12107285,0.060631543,0.22675978,0.4528172,0.2698327,0.03194626,-0.07572321,0.42832556,0.51595026,0.0432138,-0.601947,0.013717584,-0.49367237,-0.17033328,-0.146048,-0.3284342,-0.34959212,0.1631044,-0.024572799,-0.27822158,-0.21592952,-0.18923914,0.38197768,-2.5289614,-0.23053582,-0.051476877,0.39940074,-0.28581318,-0.09042302,-0.31059447,-0.63325477,0.3994788,0.04857148,0.510658,-0.57997006,0.25397635,0.5036476,-0.81419396,-0.33176658,-0.67992705,-0.15958251,0.09440502,0.56296843,0.19547935,-0.2830936,-0.24227126,0.16838859,0.83406544,0.2798307,0.01905612,0.7234972,0.67408794,-0.06385136,0.6986027,-0.21643694,0.6955711,-0.480348,-0.2853789,0.42514816,-0.3906615,0.45091832,-0.3849032,-0.03496657,0.64625615,-0.44304633,-1.0608386,-0.48469147,-0.121714264,1.1875656,-0.29627332,-0.57906085,0.07199139,-0.36900255,-0.013929526,0.017999893,0.8974034,-0.140492,0.2031991,-0.57347304,-0.190189,-0.17025669,0.27076244,-0.0064232647,-0.07288759,-0.32011023,0.6781176,0.037600625,0.37210914,0.2059675,0.13878417,-0.3867568,-0.4651865,0.11292177,0.8470547,0.3679534,0.07860843,-0.15229245,-0.1851153,-0.1682768,-0.4284943,-0.25607184,1.024552,0.6257892,-0.25007924,0.08595357,0.363659,0.15002991,0.110775165,-0.30030033,-0.3174725,-0.25391537,0.007897873,0.60062736,0.9876812,-0.19513881,0.35941327,-0.04481469,0.39815772,-0.03521159,-0.37988153,0.6118849,0.73329085,-0.25129023,-0.040647298,0.64565593,0.291384,-0.4638114,0.58155864,-0.5587369,-0.45473847,0.77762026,-0.19555305,-0.6228456,0.26487955,-0.27128705,0.015728846,-0.5603942,0.15728179,-0.32990253,-0.3620532,-0.51786757,-0.16598962,-2.7226927,0.20297796,-0.23990981,0.11472082,-0.6893447,-0.13424966,0.13342308,-0.38643053,-0.77224255,0.25981733,0.27224562,0.6001902,-0.2726157,0.18662679,-0.33725646,-0.29738232,0.047502134,0.2493695,0.27701196,0.31197497,-0.1733432,-0.3600948,-0.15169102,0.15283743,-0.3713993,0.062534906,-0.65231884,-0.35833266,-0.0025964875,-0.5506078,0.06390505,0.6684594,-0.61811084,0.00062170625,-0.32317206,0.19853538,-0.036274094,-0.01664459,-0.042693913,0.38930252,0.20388345,-0.27891305,0.22168086,-0.05790521,0.66103137,-0.05524872,0.4748372,0.06438818,-0.114734136,0.17305005,0.29352877,0.8512284,-0.37091437,1.2723385,0.38114524,-0.10873578,0.20026356,-0.23927684,-0.6196615,-0.56884915,-0.21341066,0.32998756,-0.5312908,-0.36335906,-0.027523851,-0.4142927,-0.99451303,0.70008403,0.025178978,0.34022543,0.0028660123,0.47019652,0.51482946,-0.32989982,0.029262641,-0.033242084,-0.1798452,-0.5356259,-0.2299376,-0.4853634,-0.6017472,-0.1298367,0.82449037,-0.33281365,0.19243197,0.24343066,-0.21461292,-0.013978581,0.23258133,0.09514312,0.11090746,0.6166282,0.2077498,-0.7575166,0.4404459,-0.205597,-0.23803164,-0.7706874,0.25655958,0.5431521,-0.7943215,0.7479436,0.5000279,-0.21625279,-0.12064504,-0.7786021,-0.20417662,-0.02232886,-0.084289394,0.40852165,0.2693182,-0.65850896,0.50446224,0.30522135,-0.685019,-0.7759622,0.26470435,-0.18147148,-0.44894782,0.12692353,0.47443953,0.15752335,-0.030535927,-0.05054285,0.19345272,-0.25008035,0.39320946,-0.046281476,-0.18496968,0.11827737,-0.20103914,-0.43051967,-0.8906636,0.18632226,-0.57990414,-0.32377172,0.4686624,-0.09262306,-0.17628674,0.07730743,0.22051442,0.34603497,-0.22248395,0.2268912,-0.26317698,-0.48245168,0.28338012,0.5244263,0.49710616,-0.46745816,0.6835284,0.17479666,-0.3647621,0.33477113,0.05793472,0.4268924,-0.26139045,0.43513942,-0.053083494,-0.09557516,0.25890544,0.846945,0.022752075,0.289041,0.03561163,0.03417858,0.46125463,0.06539088,0.23987205,-0.005353853,-0.69164306,0.013513644,-0.21226293,0.08945828,0.61512405,0.3797921,0.29356575,0.1205383,-0.26713625,-0.17506148,0.2569894,0.04454769,-1.395414,0.3917091,0.15963186,0.9382117,0.12401354,0.2786182,-0.028461596,0.8133634,-0.075401865,-0.055177424,0.6335699,-0.04800855,-0.3471006,0.67741364,-0.52849203,0.39409545,-0.113779016,0.086351246,0.19701123,0.21962433,0.30459228,0.9244835,-0.28775847,0.010720696,0.0014878213,-0.12974674,-0.12681024,-0.54014,-0.05791388,-0.2718447,-0.5601892,0.62828404,0.433769,0.4943982,-0.26550192,0.06548046,0.044931103,-0.17587315,0.18478799,-0.14991212,-0.06543784,-0.1188299,-0.603429,0.2958283,0.4638143,0.17597312,0.11847859,-0.30552864,0.06889223,0.28680474,-0.33315086,0.0866221,-0.2554085,-0.726978,0.05328167,-0.4620335,-0.7209936,0.41831946,-0.12377664,0.0330141,0.35333097,-0.01012827,-0.09675338,0.4210445,-0.037420865,0.9703854,-0.02172038,-0.42938784,-0.3350273,0.25322986,0.13545716,-0.38753676,0.2747402,-0.2738134,0.23129785,-0.42609894,0.65636164,-0.32198313,-0.41901827,0.051081788,-0.33486673,-0.09408861,0.5905123,-0.2113987,-0.07596437,0.10436552,-0.36245093,-0.43212524,-0.26698518,-0.33272633,0.17838265,0.33828273,-0.038401004,-0.31095576,-0.28314134,-0.43536758,0.37890497,-0.10235635,0.47615758,0.3126122,0.18669687,0.0072814524,0.19948621,0.23542435,0.8420186,0.16137713,-0.120960794,-0.42895046,-0.59558433,-0.49929282,0.37045315,-0.09256035,0.27375478,0.09783309,-0.10447058,0.8909867,0.08382663,0.9788889,0.0910666,-0.3633581,0.032015968,0.642582,-0.16395591,-0.14389168,-0.4242928,1.0221862,0.51501083,-0.11925471,0.10187168,-0.47890857,0.31965446,0.3084102,-0.43405965,-0.052059557,0.02571179,-0.50775576,-0.3279559,0.2860575,0.2312205,0.2812311,-0.2127905,0.06527739,0.06804282,0.09958079,0.27236652,-0.6474877,-0.3085991,0.31975642,0.19375002,-0.21100514,0.013785536,-0.42366147,0.44791898,-0.48905113,0.008495924,-0.7196076,0.11358089,-0.25248846,-0.2978523,0.26894698,-0.12595439,0.32805148,-0.6099462,-0.29246613,-0.109513305,0.17581661,0.27055895,0.16337727,0.5042958,-0.27531305,-0.14613391,0.24853878,0.66052204,1.134259,-0.5809099,0.13004525,0.29417622,-0.45230207,-0.57955617,0.4260185,-0.4811766,-0.122084856,-0.08133865,-0.5045312,-0.42010316,0.14213058,0.004440576,0.29270902,-0.006560882,-0.73172027,-0.1429876,0.25498495,-0.23430963,-0.1798427,-0.30588147,0.27380052,0.73963934,-0.012824375,-0.48116994,0.088651694,0.26084125,-0.29770032,-0.6749921,0.053306405,-0.24200183,0.27917174,0.09333411,-0.21002704,-0.20372574,0.023689678,-0.7161016,0.21568565,0.14770865,-0.4151651,0.011953925,-0.1719452,0.066016674,0.85396075,-0.5510543,0.03216082,-0.49770474,-0.5037508,-0.89770174,-0.29751846,0.14405325,0.17877276,-0.019982198,-0.728435,-0.10621313,-0.21345659,-0.21164994,0.101235695,-0.37564826,0.3813195,0.07915166,0.6172696,-0.612085,-0.9656897,0.13153885,0.13643692,-0.30477878,-0.621023,0.5507378,0.12567489,0.8248391,-0.044571567,-0.12863077,0.18801223,-0.46753287,0.010348052,-0.2515268,-0.11774939,-0.8566281,-0.0684521 +558,0.17344344,-0.19760697,-0.42138943,-0.10569317,-0.01996396,0.13008931,-0.15764727,0.25127956,-0.012694695,-0.51226735,-0.1475238,-0.17357612,-0.041751273,0.1353132,-0.27502292,-0.4490881,-0.07152088,0.11967427,-0.3830016,0.39301667,-0.59589356,0.32301468,0.01403667,0.19102022,-0.05907219,0.16523767,0.2892205,-0.089065194,-0.11374863,-0.24457847,0.08972842,0.05829237,-0.57047725,0.261893,-0.19687687,-0.34649,0.08404939,-0.36269918,-0.50857276,-0.6303238,0.45248988,-0.94699293,0.44703218,-0.0037386587,-0.16302136,0.46107262,0.11044567,0.20461938,-0.15623678,0.032300863,0.1888179,0.011607095,-0.09158266,-0.1305208,-0.2572175,-0.31183457,-0.5668928,0.12814412,-0.41767243,-0.14751029,-0.25924125,0.17060931,-0.25351536,0.14283058,-0.24142446,0.4698824,-0.37347132,-0.061281618,0.025642773,-0.03718082,0.21332963,-0.46905765,-0.12718321,-0.07261862,-0.05327841,-0.28384277,0.007159936,0.18188766,0.08985595,0.54232335,-0.18050179,-0.10308472,-0.19725633,-0.08104137,0.18461363,0.4273621,-0.13557917,-0.3423608,-0.17250855,-0.16081153,0.17278144,0.1039684,-0.026842926,-0.1888672,0.03690062,0.11084221,-0.33678177,0.24489541,0.6277527,-0.1878225,-0.22004874,0.46878266,0.5775713,-0.122640096,-0.044665348,0.02686641,-0.07316114,-0.38815266,-0.1289719,0.046244442,-0.2639849,0.4374273,-0.15057324,0.22108173,0.45719382,-0.22960155,0.16229819,0.047652155,-0.019227022,-0.10938126,-0.23293486,-0.29006144,0.19160615,-0.4497655,0.046655778,-0.17709391,0.81612444,0.019145515,-0.7603372,0.40596178,-0.35413367,0.1656308,-0.09429604,0.6587158,0.4285856,0.347164,0.16134603,0.6221165,-0.6174746,-0.020555288,-0.11618971,-0.31661466,-0.008675703,-0.030297475,-0.14250877,-0.23757681,-0.031684812,0.14732026,-0.11513074,-0.241569,0.33956173,-0.35377282,-0.0122639835,0.12305006,0.7775454,-0.32754725,-0.01129508,0.70586663,1.1926193,0.84487754,0.13315995,1.2186116,0.35765198,-0.2026858,0.13744998,-0.23313716,-0.93799055,0.23638146,0.42316967,0.04523129,0.2323358,0.085560374,-0.097799756,0.25014395,-0.56707865,0.017150497,-0.33903435,0.3875192,0.027902897,0.09076958,-0.2771913,-0.19772394,0.24071409,-0.022993548,0.22790241,0.23524643,-0.32483622,0.12315594,0.20020796,1.1872635,-0.15271322,0.17170504,0.22907652,0.3302655,0.030067584,-0.13757123,-0.017402705,0.23700438,0.4418656,0.05444745,-0.69841653,0.0483618,-0.23406842,-0.49851936,-0.27329072,-0.1807148,0.020062849,-0.1276086,-0.3262176,-0.07839525,-0.20023534,-0.52765316,0.27724513,-2.6456354,-0.06599059,-0.2867887,0.2863617,-0.35096794,-0.34828216,-0.023837613,-0.47424597,0.43426886,0.44503504,0.3482466,-0.59365124,0.34586263,0.38250205,-0.24444829,0.005273938,-0.63503224,0.07793494,-0.16124184,0.35561356,0.13073274,-0.0626562,-0.15169919,-0.029314917,0.33161995,-0.033026736,0.19105193,0.28582993,0.44369152,0.14449188,0.41415793,0.09731735,0.43395567,-0.38392884,-0.047008246,0.4109324,-0.511769,0.15415919,-0.0778692,0.20692734,0.2933054,-0.6620345,-0.57659495,-0.58884686,-0.5762343,1.5265578,-0.25543973,-0.415552,0.2647079,0.06359545,-0.27218065,-0.1267325,0.36264807,-0.40870315,-0.060435183,-0.8685377,0.06805324,-0.17545016,0.36552912,-0.0891758,0.22155316,-0.43919995,0.6501776,-0.24263693,0.5614498,0.3115779,0.16237606,-0.44718108,-0.45105866,0.030653046,1.0814348,0.4317836,0.0923404,-0.14977911,-0.11894512,-0.24996507,-0.13938464,0.13510753,0.36815187,0.7110095,0.031245653,0.041362096,0.31566438,-0.088467896,-0.0025897026,-0.043014806,-0.2855424,-0.17701368,-0.013276594,0.64959896,0.33289573,-0.2091891,0.24093376,-0.22532865,0.28541884,-0.31740203,-0.30376515,0.32186127,0.73699373,-0.1507682,-0.32137898,0.6550766,0.6135589,-0.33604908,0.45507106,-0.60419166,-0.42779037,0.2626098,-0.14813508,-0.43927255,0.18613927,-0.29029512,0.13302854,-0.8242143,0.3736455,-0.27316588,-0.6183094,-0.6266251,-0.28324917,-3.1263385,0.13064668,-0.19486757,-0.14042738,-0.032936968,-0.15528941,0.33605003,-0.36298683,-0.60008496,0.15013336,-0.0155068915,0.46387672,0.1058117,0.15069939,-0.21104534,0.0112922955,-0.45355755,0.1695614,0.2937934,0.13887592,0.025295751,-0.38893393,-0.07085215,-0.3108295,-0.38473415,0.015452032,-0.4388897,-0.3693363,-0.17273355,-0.53279597,-0.439545,0.470056,-0.34649387,0.062007565,-0.18812929,-0.07621651,-0.1599995,0.44862324,0.1444615,0.22702314,-0.07382639,-0.22120658,-0.023934225,-0.3262786,0.4229293,0.059574265,0.18106796,0.34844568,-0.21634997,0.0069930553,0.30480364,0.5737499,0.05685387,0.79104847,0.33424595,-0.1487371,0.27786642,-0.21265338,-0.118443556,-0.5299821,-0.13583864,0.05131456,-0.3612244,-0.43322855,-0.04105797,-0.35228127,-0.73323363,0.4267106,-0.1163887,0.053517196,-0.0074722543,0.25523165,0.36051807,0.11010699,-0.01690487,-0.08349142,-0.06119987,-0.40064034,-0.50684756,-0.78347605,-0.2497374,-0.15423287,1.0627509,0.14971974,-0.10580097,-0.08979223,-0.0718187,0.054201145,-0.035567366,-0.003849866,0.1988816,0.47305605,0.003313339,-0.6274883,0.3566464,-0.14436749,-0.08074739,-0.55018896,0.044470515,0.65066403,-0.56706774,0.450466,0.4564657,0.16386326,-0.20172651,-0.49362212,-0.14547214,0.069711566,-0.20923793,0.42932752,0.26316562,-0.8982668,0.5079803,0.36852342,-0.04029165,-0.7170344,0.43902498,0.13493682,-0.021024061,0.050928533,0.41516066,-0.21912408,0.05352512,-0.15777552,0.14305045,-0.25979862,0.24044757,0.20792279,-0.093554474,0.52573735,-0.41096252,-0.11592398,-0.5260971,-0.062103987,-0.53702545,-0.1412687,0.037973676,-0.16942272,-0.08313221,0.23962818,-0.25080687,0.4488638,-0.081591144,0.078955874,-0.02792646,-0.17912062,0.32870603,0.41745812,0.3217214,-0.40720364,0.6411397,0.027097702,-0.15185194,-0.20762946,0.03710246,0.40318364,0.09105412,0.2546111,0.12917735,-0.043043915,0.45286158,0.7366262,0.3459084,0.6318869,0.20769115,-0.16158125,0.31409654,0.07261579,0.12607418,-0.04314765,-0.42751664,-0.13403992,-0.047362287,0.16828121,0.42253426,0.08456107,0.53604054,-0.32092628,-0.15931721,0.013325567,0.23442851,-0.19141018,-0.954593,0.34710026,-0.05004233,0.6491879,0.5492172,-0.13983954,0.15110159,0.50457865,-0.21532758,0.0768312,0.30425027,0.07902106,-0.4500671,0.49757877,-0.5073355,0.38303375,-0.18899548,0.09960519,-0.00286233,0.009070741,0.40332842,0.78788054,0.003985222,0.06328765,-0.100461416,-0.22000991,0.34412128,-0.32336825,0.25590706,-0.32228255,-0.216411,0.6192244,0.28008965,0.25710836,-0.115435265,-0.07757262,0.016981538,-0.11877769,0.12579145,-0.014634375,0.04049764,-0.105918385,-0.6675681,-0.30767846,0.46858478,0.32094198,0.12937282,0.15663484,-0.34634185,0.23905976,-0.13896142,-0.01389019,0.13141727,-0.53366995,-0.05636478,-0.051220458,-0.3106594,0.15938805,-0.38522774,0.21297611,0.15671103,-0.00833089,-0.5790936,-0.15863612,0.25015625,0.5797006,-0.09365536,-0.1764201,-0.3587227,0.07618822,0.21416013,-0.26734048,0.0144816805,-0.3743243,-0.016508972,-0.80647373,0.52199966,-0.16585183,-0.26898134,0.33454782,-0.23132019,-0.042147834,0.63020813,-0.15945575,-0.11278541,0.107484184,-0.076342806,-0.20224585,-0.20290153,-0.11680982,0.21073504,0.09890324,0.08582814,-0.0372067,-0.007892793,-0.19776423,0.43332997,0.06423935,0.24593136,0.33515522,0.26181576,-0.4042186,-0.021653567,-0.068205245,0.53671837,0.026728021,-0.052422978,-0.11384572,-0.41898867,-0.027890358,0.29200786,-0.100422345,0.2614701,0.10453678,-0.37130833,0.6454201,0.078477606,0.94456005,0.06593143,-0.17902014,-0.17822194,0.5829643,0.069392316,0.0017305559,-0.2656571,0.8785335,0.5322924,-0.116757356,-0.10706054,-0.33003896,0.023267064,0.023270786,-0.1350439,-0.30894044,-0.006188415,-0.62504405,-0.23391686,0.12741737,0.46258798,-0.121998854,0.022038039,0.14502756,0.16595738,-0.0312867,0.5345411,-0.3992203,0.0112066055,0.33428025,0.14600058,-0.05173623,0.1988268,-0.40695837,0.25022712,-0.62032896,0.10580759,-0.15663883,0.0073609757,0.026038935,-0.28453413,0.12738205,0.010757302,0.36921936,-0.3359587,-0.3316252,-0.16801932,0.5381342,0.16140446,0.18311903,0.6646771,-0.14340839,0.18306836,0.093929715,0.59900486,0.9683924,-0.086461894,0.11004906,0.09017193,-0.2637343,-0.7305255,0.3732008,-0.26702622,0.13449718,-0.008604935,-0.22870918,-0.30114514,0.3823306,0.16898875,-0.2373575,0.1674775,-0.5258343,-0.2256808,0.36153576,-0.1449363,-0.15359998,-0.32767397,-0.04313693,0.5943966,-0.25699145,-0.08580159,-0.056012936,0.30984762,-0.3411181,-0.5234427,-0.106412046,-0.46001083,0.3142317,0.017033597,-0.19503327,-0.013912345,0.11573162,-0.34358892,0.25687486,0.09005928,-0.27884534,-0.08938934,-0.14457902,-0.004843014,0.5659707,-0.080845885,0.040088587,-0.6568398,-0.4595922,-0.91803247,-0.28898144,0.5777572,0.083692364,0.08885624,-0.42023107,-0.06021757,-0.0665539,-0.014677508,0.086770594,-0.4083987,0.2721676,0.1280565,0.533788,-0.025793413,-0.57099295,-0.042913157,0.0373323,-0.17415415,-0.3646321,0.65114033,0.086291485,0.6490417,0.01729234,0.16470489,0.24485664,-0.65865767,0.14374658,-0.1780977,-0.24141833,-0.5627687,0.11953248 +559,0.59687823,-0.1423956,-0.5763544,0.01478908,-0.28555477,0.14058676,-0.18093139,0.5031454,0.38927662,-0.4573216,-0.30764884,-0.34465373,0.15015036,0.1212264,-0.18711735,-0.36248106,0.01984831,0.40293473,-0.5237313,0.49378604,-0.22961365,0.23872823,0.22021738,0.50849605,0.16563721,0.16242827,-0.083194114,-0.29472005,-0.334735,-0.52028775,0.14517832,0.19096018,-0.7816723,0.18310584,-0.4857664,-0.36421764,-0.00808825,-0.6386822,-0.5701896,-0.8036611,0.29413462,-1.0410256,0.71436524,0.22685748,-0.25561514,0.2821735,0.24562879,0.27408788,-0.031674694,-0.06565163,0.31654054,-0.30166376,-0.19003981,-0.31463355,-0.28332588,-0.41229114,-0.6622818,-0.009757403,-0.29500648,-0.021331359,-0.4329085,0.26486647,-0.29410133,0.07644855,-0.2908046,0.54410547,-0.37952426,0.42532614,0.08978078,-0.18437591,0.27082703,-0.54447716,-0.311296,-0.25543404,0.25988844,-0.06794423,-0.257218,0.2499632,0.15740927,0.377514,-0.118050985,-0.20959999,-0.3068403,-0.0018924583,0.09283912,0.5836516,-0.46248153,-0.40110156,0.04083648,-0.15055834,0.1083642,0.13845088,0.0953258,-0.23941694,0.037556678,-0.064419575,-0.287501,0.4647788,0.63122934,-0.27725837,-0.12399936,0.18355256,0.28313267,0.16848134,-0.14063682,-0.17741208,0.12144881,-0.57103103,-0.19772048,0.17213167,-0.34661025,0.66015506,-0.13173626,0.19086127,0.6129351,-0.31609195,-0.024056586,0.4279434,0.4050561,0.27954122,-0.37390473,-0.3525391,0.47438872,-0.584999,0.083354965,-0.45095712,0.9336977,0.047165968,-0.49952975,0.33086023,-0.7565325,0.09832616,-0.01542236,0.47897825,0.431231,0.6042824,0.23352566,0.53342795,-0.17353886,0.01669641,-0.0812229,-0.22027983,0.040543076,-0.27965605,0.31208456,-0.25297928,-0.16635956,-0.016459053,-0.18710035,0.12189369,0.4319765,-0.37527427,-0.2858393,0.25675297,1.0189077,-0.24735741,-0.2678424,0.8680195,1.1703657,0.873159,0.0889036,1.4829051,0.19057487,-0.27145633,0.017853223,0.022247167,-0.7646839,0.2875294,0.084030636,-0.73809165,0.053487007,0.2740278,-0.24645938,0.16086638,-0.5646426,-0.16983268,-0.2431429,0.20418645,-0.015262062,0.029670082,-0.5178194,-0.31429684,-0.30211946,-0.12979211,0.25282758,0.19062595,-0.2810454,0.25397962,0.12318111,1.0853778,-0.17703037,0.1063675,0.047661997,0.49961475,0.06296389,0.06236939,-0.015802365,0.2622639,0.30694816,0.38303137,-0.44153145,0.00019363924,-0.23938619,-0.30798313,-0.07385311,-0.1042254,-0.09536707,0.07969912,-0.48573226,-0.39158437,-0.17052966,-0.104033425,0.37264153,-2.4103234,-0.12989284,0.05995244,0.45642567,-0.24315782,-0.4049948,-0.21145396,-0.6370914,0.3507883,0.12966135,0.4857189,-0.6421928,0.28293726,0.43890998,-0.6345439,-0.17960669,-0.7334812,-0.20816995,-0.065311626,0.052206837,-5.1246447e-05,0.075117104,0.0451937,-0.20138092,0.46957967,0.048625264,0.13597962,0.40164745,0.43864545,-0.15460517,0.44977713,0.036093876,0.53322697,-0.5217187,-0.3200665,0.244918,-0.44717267,0.3590722,-0.16083446,0.07842321,0.59557366,-0.53781265,-0.8344234,-0.7927298,-0.06923411,1.1004989,-0.14239886,-0.46595934,0.12983602,-0.37922305,-0.37828684,0.013963011,0.67797786,0.016357226,0.2575072,-0.77596074,-0.20674853,-0.2815888,0.33899945,0.0546532,0.02623272,-0.44332626,0.7208281,-0.034434784,0.29355657,0.3909956,0.20716234,-0.31582978,-0.4566704,0.039698035,1.0948033,0.30572847,0.23219018,-0.320165,-0.2616344,-0.44138068,-0.07651432,-0.05924815,0.81341034,0.6297145,-0.16602302,-0.012674589,0.3566461,-0.009837478,0.25149986,0.014340153,-0.57814366,-0.29938725,-0.10999758,0.5153695,0.8924831,-0.08680063,0.30614007,-0.14316322,0.59548515,-0.13001601,-0.391108,0.3169309,1.1618327,-0.19920197,-0.12064446,0.9829846,0.4932701,-0.42704478,0.5389076,-0.5626393,-0.6060315,0.23297729,-0.10277202,-0.55143636,0.26591825,-0.27990386,0.08747525,-0.7894541,0.5677113,-0.27424708,-0.45293418,-0.4136535,-0.12794195,-2.7000604,0.36094174,-0.35776633,0.007992983,-0.20661329,-0.16090587,0.15324889,-0.4283539,-0.402919,0.26032817,0.18285526,0.65451527,-0.16775817,0.21714784,-0.17931424,-0.41810694,-0.18236518,0.29332954,0.41010398,0.2832717,-0.32424802,-0.4382211,0.04540348,0.065267034,-0.034159627,0.09905167,-0.9252228,-0.5152008,-0.14335151,-0.6658512,-0.43603772,0.6814387,-0.3976,0.036296308,-0.22808193,0.03051619,-0.20340417,0.2838115,0.0023454537,0.3375518,-0.04581274,-0.15184605,0.024525069,-0.23752676,0.57065964,0.10070632,0.4399184,0.27645954,-0.036072526,-0.018457808,0.34417132,0.4920165,-0.2126461,1.058387,0.36238506,-0.16902663,0.22853684,-0.15437669,-0.48023263,-0.6186505,-0.02932002,-0.114867754,-0.49292758,-0.18119453,0.06642695,-0.39723024,-0.80159736,0.71400493,-0.00888708,-0.010259702,0.13046242,0.33713037,0.40425873,-0.25767648,-0.20261914,-0.058590177,0.0036208087,-0.64400005,-0.21402402,-0.630047,-0.42302313,-0.10345899,0.85981935,-0.10189665,0.23309673,0.31398165,-0.20876512,0.04850533,0.21421756,-0.05462738,-0.06765184,0.95730036,-0.041452345,-0.67872024,0.55368036,-0.2697815,-0.06723599,-0.60678804,0.6145912,0.5192875,-0.8005955,0.81129766,0.78489107,0.07268144,-0.3346027,-0.43685502,-0.48334876,-0.12537421,-0.07552448,0.27800784,0.24668965,-0.94387835,0.19532771,0.26384652,-0.4394577,-0.7490788,0.6022534,-0.13816518,-0.46120557,-0.058317743,0.47404596,-0.06779668,0.09410114,0.028147524,0.32158113,-0.3603839,0.39185488,-0.07818102,-0.21802236,0.16656037,-0.21804671,-0.031584717,-0.8104737,0.2802261,-0.42572525,-0.4240795,0.4078867,0.09195732,-0.11110301,0.48293382,0.28671482,0.32796037,-0.35131022,0.10440647,-0.23790435,-0.32068187,0.5364058,0.35539582,0.6618009,-0.6143074,0.6932139,0.007223304,-0.39787188,0.14415275,0.25051624,0.48252365,-0.11439759,0.49635667,0.14390329,-0.121740416,0.09304447,0.8456135,0.219726,0.5598871,0.058501266,0.10599582,0.19752264,0.0806711,0.11651967,0.09847806,-0.81734484,-0.12251561,-0.446451,0.09280643,0.42506,-0.003176578,0.38711298,-0.17300078,-0.34469417,-0.06946675,0.12391796,0.22442746,-1.2838731,0.2172738,0.083724625,0.7868141,0.30505112,-0.047944188,-0.024095839,0.85813135,-0.0054716645,0.05402137,0.22775203,0.057599388,-0.31578892,0.66284335,-0.49439794,0.30422142,-0.21230197,0.100706436,0.06871665,-0.11398259,0.30642363,0.9473259,-0.22853531,0.034254495,0.11131165,-0.33587587,0.16032039,-0.4465342,0.39668074,-0.6423986,-0.27939448,0.7835543,0.50768065,0.4092225,-0.15880431,0.09648035,0.115613915,-0.17728795,0.2681738,0.047732476,0.08602223,0.17483903,-0.81233305,0.13484138,0.64882165,-0.10355339,0.13876317,0.08336855,-0.060960904,0.40423152,-0.314517,-0.0005680675,-0.17324184,-1.0123998,-0.13721825,-0.7627218,-0.5231141,0.27509722,-0.189197,0.09804566,0.09779243,0.103231356,-0.29698288,0.5308098,0.29648665,0.72270393,0.039713167,-0.25639024,-0.41743806,0.28116152,0.12723385,-0.1842369,0.029430855,-0.2548838,0.12249041,-0.5272939,0.3745985,-0.11202776,-0.14402801,-0.22448856,-0.11714708,0.030490112,0.5788698,-0.0149449,0.04742304,0.27952728,-0.06286337,-0.3638202,-0.1698377,0.0044805678,0.10366671,0.50041974,-0.0541775,-0.20985842,-0.35929298,-0.19951554,0.12156933,-0.017250983,0.5863917,0.4794976,0.32198307,-0.01743675,0.011289943,0.11187098,0.6517521,-0.22139154,-0.22475916,-0.3088216,-0.39043283,-0.29459846,0.45027235,0.05946946,0.34658182,0.2934871,-0.043728296,1.0367609,-0.059759423,0.9628618,0.06801062,-0.25153065,-0.0060995873,0.42765445,-0.28405073,-0.22320677,-0.44365403,1.1517434,0.5088775,-0.11068826,-0.10568767,-0.4355903,0.08912515,0.090871185,-0.14474668,-0.20517808,0.03072068,-0.5283347,-0.16091634,0.1645857,0.53502065,0.060330693,-0.18778385,0.29049218,0.3804042,0.048677918,0.31303704,-0.7828494,-0.20724021,0.44684884,0.42647526,-0.05046827,0.38061142,-0.3323269,0.39886856,-0.4779091,0.10482225,-0.3612441,0.0673927,-0.18800591,-0.39788094,0.14125322,0.018883927,0.5233869,-0.6183447,-0.057043508,-0.22198291,0.43743563,0.2522651,0.04960027,0.58553237,-0.21611987,-0.3203897,-0.007580073,0.6931885,0.9601349,-0.43346596,0.008983883,0.47321406,-0.3494477,-0.57602143,0.35572585,-0.3563071,0.11067295,-0.07068923,-0.17322992,-0.52968156,0.25032786,0.11807886,-0.077705495,0.022070317,-0.64549977,0.107564546,0.23809947,-0.20345551,-0.31324568,-0.077840194,0.3389176,0.54540473,-0.09786127,-0.24333325,-0.0010364272,0.25294635,-0.23515506,-0.37980774,-0.03817831,-0.5060671,0.10966962,0.04091444,-0.30478483,-0.26301062,0.02917505,-0.54138875,0.054397885,0.09089086,-0.35569692,0.12387867,-0.2051834,-0.020820921,0.62135774,-0.13503014,0.057159185,-0.4409343,-0.61030257,-0.90590453,-0.3380772,0.02729283,0.2086815,0.107890084,-0.48937356,-0.120736405,-0.047714677,-0.24877526,-0.03439444,-0.35786748,0.51361454,0.24907555,0.41319788,-0.30650976,-0.86025447,-0.07044292,0.08982837,-0.2131981,-0.70063096,0.2668338,-0.071566395,1.0588254,-0.018846376,0.13977498,0.47631833,-0.47768247,-0.15414782,-0.10104471,-0.13712639,-0.8356653,-0.04923031 +560,0.45958945,-0.19606574,-0.5577052,-0.05877566,-0.24110681,0.12363316,-0.3175939,0.53653437,0.10907821,-0.32848728,0.0156101845,0.066459656,-0.0032308102,0.34562454,-0.18205564,-0.5936393,0.018985678,0.17682639,-0.528781,0.80895025,-0.2771897,0.28711665,-0.12466164,0.40976366,0.090167075,0.254827,0.013152564,0.094349906,-0.114746295,-0.20972206,-0.11806537,0.43070236,-0.46498662,0.23546444,-0.24869372,-0.3075401,-0.21297082,-0.31533092,-0.24546142,-0.7219662,0.16495477,-0.61816823,0.7586414,-0.024492817,-0.341825,0.3114971,0.1942608,0.2706769,-0.18460362,-0.12435038,-0.10002234,0.036067255,-0.07719423,-0.36706492,-0.1741036,-0.6039542,-0.48041782,0.12024286,-0.48897424,-0.027353797,-0.14486672,0.18179981,-0.2507781,0.045641523,-0.059882537,0.6282299,-0.4193812,0.22481449,0.10222268,-0.06669179,0.1278224,-0.5914308,-0.23793742,-0.1272239,0.33368716,-0.075672396,-0.2011428,0.2396669,0.28681746,0.43723568,-0.11230316,-0.1907425,-0.3720679,-0.06239485,-0.07516796,0.57828486,-0.21376872,-0.70755947,-0.07835512,-0.00013400316,0.33929715,-0.006162079,0.11576936,-0.21768573,-0.1492703,-0.16739267,-0.31118578,0.4341532,0.44156024,-0.33226737,-0.19842982,0.36013195,0.45798105,0.20478414,-0.3119054,0.045265384,-0.114926144,-0.51098764,-0.044494875,-0.06680488,0.043604884,0.5437257,-0.024336267,0.22065468,0.39512312,-0.026141029,-0.17807111,0.2638131,0.13527387,0.076842695,-0.15135323,-0.45113465,0.13998564,-0.35772145,-0.059300892,-0.15942238,0.5673264,0.18101545,-0.8341564,0.362659,-0.51387304,-0.032857917,0.06320009,0.3090766,0.5989262,0.6391497,0.10017134,0.51591736,-0.1604152,0.11602541,0.010851971,-0.181817,-0.057635617,-0.17106208,-0.06686461,-0.54630417,0.20462781,0.043874893,-0.20198376,0.12273507,0.523347,-0.4573776,-0.15822071,0.21541044,0.8778921,-0.21002407,-0.20819543,0.87978786,1.062631,0.9780338,0.0013433754,0.92726153,0.15379958,-0.010077273,0.07851042,-0.23239683,-0.53057814,0.25551698,0.31027368,-0.01422046,0.49299017,-0.024225838,-0.11329705,0.508004,-0.20631447,-0.14611647,-0.16956648,0.2599679,0.2193628,-0.22807594,-0.42013988,-0.31532848,0.06976802,-0.028351005,0.13443097,0.31567708,-0.28115055,0.4007993,0.14837942,1.5535325,0.06637454,-0.021877158,0.13749853,0.59727025,0.31544885,-0.096915655,-0.042069033,0.29758245,0.3313542,0.19448109,-0.44687924,0.1360945,-0.12931539,-0.67448425,-0.15760438,-0.26957098,-0.28519633,-0.14679922,-0.5355455,-0.23105296,-0.02781954,-0.15338892,0.4200467,-2.8771424,-0.2411206,-0.14178897,0.34357175,-0.2333983,-0.43788326,-0.1950545,-0.3974508,0.3386203,0.3602347,0.39630705,-0.5800818,0.52838016,0.2038741,-0.4227099,-0.25204164,-0.5264961,-0.14200625,0.066215605,0.4882252,-0.094802395,0.022189057,0.24807006,0.27282438,0.5056428,-0.3073964,0.14813955,0.18618308,0.38595912,-0.054169003,0.19566625,-0.10614399,0.5209496,-0.33202046,-0.2515208,0.299593,-0.41714236,0.19998123,0.012354664,0.2736065,0.39237574,-0.47762814,-1.0006566,-0.6631976,0.19543648,1.0805668,-0.13782552,-0.4377604,0.18523748,-0.4598035,-0.31380215,-0.16508356,0.26344392,-0.034567177,0.06522953,-0.74623674,-0.022955071,-0.106921785,0.23915397,0.01552701,-0.05248255,-0.40354404,0.63995206,0.058628395,0.48136446,0.31482455,0.15137571,-0.36868545,-0.3643123,0.03499805,0.80107635,0.44012558,0.10955084,-0.17558643,-0.10890021,-0.34464186,0.06111722,0.13678819,0.6250569,0.38420096,0.004549648,0.066499546,0.13194658,-0.06512021,0.23056565,-0.19603613,-0.2352512,-0.16702603,0.19451226,0.58410925,0.5340755,-0.21842387,0.5476144,-0.19616267,0.3750954,-0.23737653,-0.48728544,0.47953522,1.0045561,-0.2461768,-0.40895334,0.51609474,0.6413906,-0.19869159,0.3528079,-0.60139114,-0.48203737,0.3149727,-0.13712282,-0.2255495,0.43780953,-0.24113229,0.12263738,-0.7759498,0.23360246,-0.3280436,-0.5745705,-0.52794164,-0.17486337,-3.0769136,0.14272575,0.011482364,-0.2986069,-0.16937011,-0.23434238,0.19941305,-0.5619802,-0.55074996,0.18604541,0.14265461,0.6137105,-0.0751094,0.064050056,-0.11042783,-0.44150034,-0.102006435,0.30142874,0.14659233,0.3524548,0.008438964,-0.43846866,-0.2020792,-0.05568659,-0.36800626,0.13146216,-0.69031805,-0.4055056,-0.09805245,-0.49434063,-0.109294765,0.592436,-0.3704017,0.09671524,-0.32176763,-0.009939786,-0.087002255,0.19530989,-0.010386833,0.15620655,0.017081618,-0.086020015,0.36537415,-0.29734153,0.095315315,0.044798527,0.23878089,0.2574827,-0.016071307,0.250168,0.5469818,0.6968432,-0.041365854,0.83272934,0.4521155,-0.098848276,0.5142229,-0.19802389,-0.37162945,-0.46994123,-0.21308164,0.1232722,-0.35658902,-0.26006517,-0.09755953,-0.39675942,-0.76783055,0.5108147,-0.1367925,-0.04871136,-0.07601299,0.50504583,0.48190948,-0.29341877,-0.042743396,-0.103368185,-0.15735689,-0.43122074,-0.3747157,-0.47915748,-0.33843276,-0.16400142,1.1490228,-0.1438245,0.109375335,0.11887971,-0.13534243,0.0105538685,0.10886776,0.22139329,0.21638498,0.3916865,-0.31217453,-0.7538079,0.29848567,-0.47869352,-0.34171745,-0.40491208,0.34673753,0.5132654,-0.53279257,0.51219565,0.39551678,0.18859448,-0.24402888,-0.58494735,0.008847507,0.095198125,-0.10997211,0.32754225,0.38159555,-0.76214325,0.43444118,0.20436755,-0.23419547,-0.6164407,0.5844959,-0.045080144,-0.35419628,-0.14847226,0.3705476,0.11779742,-0.016560066,-0.39933178,0.10985046,-0.3624605,0.2143376,0.21560645,-0.032375872,0.21323465,-0.2803149,-0.05890554,-0.8264164,-0.09939567,-0.43036085,-0.3662584,0.24319439,0.13553505,0.2531024,-0.039365865,-0.19245876,0.31624526,-0.4893368,0.07816424,-0.16837433,-0.30764377,0.3785467,0.42103234,0.49855912,-0.40791193,0.59612626,0.05320258,-0.11101643,0.018232886,0.06375011,0.50389045,-0.0016509652,0.43003038,0.07294654,-0.055589374,0.30368042,0.7626123,0.32235858,0.4696914,0.03199095,-0.19671048,0.15050605,-0.06126475,0.06686627,0.04046996,-0.4025249,-0.08085908,-0.16114902,0.16391598,0.5534805,0.030089557,0.2549048,-0.18088475,-0.30149874,0.017564217,0.2686836,0.20573823,-1.4088341,0.35394853,0.26525262,0.853532,0.28751287,0.17855325,-0.084476165,0.67985976,-0.20341443,0.08834286,0.34707165,0.043085624,-0.34734488,0.5230878,-0.7229337,0.49840593,-0.029065423,0.042157125,0.1128382,-0.120438114,0.41550192,0.8593216,-0.16091475,0.075081386,0.19242607,-0.44341898,-0.066845894,-0.4074874,-0.0065947217,-0.46631202,-0.33495277,0.71370953,0.5003739,0.32797593,-0.31473213,0.09098938,0.23177221,-0.20870405,0.081562504,-0.06146614,0.22422384,-0.23036174,-0.6237098,-0.032790173,0.54484534,-0.100907214,0.11681144,0.15695053,-0.26607138,0.35947335,-0.07480167,-0.1078685,-0.036953326,-0.60368574,0.1221201,-0.3907032,-0.35753575,0.5321472,-0.118205,0.17694591,0.2683539,0.073630445,-0.27894074,0.31887773,0.12096044,0.71554095,0.112051584,-0.1069614,-0.34756497,0.063015535,0.21300672,-0.2413304,-0.14270109,-0.3559559,0.23150559,-0.55923146,0.32127494,0.0061988872,-0.20479284,-0.03410878,0.050650276,0.20486934,0.46603358,-0.11160033,-0.15025039,0.0601253,-0.01974115,-0.2771879,-0.2566584,0.0030336916,0.33862174,0.3582411,-0.027466757,-0.085726574,-0.10048518,-0.07751923,0.48329931,-0.045610707,0.47172812,0.42709932,0.30373916,-0.1401796,0.021024322,0.11393426,0.5586754,-0.097791605,-0.045924846,-0.44432184,-0.4485224,-0.34260324,0.25818646,-0.07805329,0.21815774,0.012243467,-0.23432723,0.92816955,-0.11588133,1.2254771,0.04793947,-0.31998122,0.25264892,0.35689962,-0.02334731,0.023429113,-0.3331745,0.992923,0.5412272,0.044701416,-0.10962621,-0.29183018,-0.034160554,-0.008851469,-0.3025333,-0.199177,-0.0035203537,-0.5255617,-0.24602506,0.1390751,0.12239507,0.21831764,-0.1393986,0.20137429,0.22956604,0.11270256,0.09424799,-0.53712016,0.024073545,0.24582288,0.25323156,-0.14255933,0.016174944,-0.5116388,0.3165125,-0.44852582,0.051979072,-0.43655378,0.0978017,-0.08689462,-0.28322777,0.21118087,-0.018087456,0.21684061,-0.4805237,-0.26891893,-0.253342,0.44780204,0.15107483,-0.10341184,0.42251545,-0.21119471,0.033602238,0.14106274,0.51286715,0.7585771,-0.3718356,-0.083925836,0.19180273,-0.42226657,-0.64643204,0.12042059,-0.31137726,0.30238736,0.028142087,-0.07105914,-0.5592748,0.4052323,0.25467494,0.03777332,-0.13754044,-0.6177708,-0.2128243,0.33300534,-0.3943418,-0.15503149,-0.25854766,0.05527232,0.5715926,-0.1967496,-0.34105858,0.037506722,0.29325977,-0.18617767,-0.6352075,0.070996374,-0.46264973,0.29187316,0.13031644,-0.2801833,-0.29191875,-0.016541522,-0.4925579,0.15315291,0.35616115,-0.32759652,-0.004547191,-0.42189312,-0.16294406,0.9301117,-0.276521,0.20996337,-0.45862094,-0.47397438,-0.7783136,-0.2987391,0.21075013,0.27477086,-0.019663302,-0.7744001,-0.047428664,-0.16955954,-0.38766772,-0.06825711,-0.2689365,0.39595497,0.056644235,0.3795716,-0.10057692,-0.8918037,0.1980513,0.06339217,-0.19782512,-0.49892077,0.4322452,0.079017624,0.8769404,0.05309499,0.16864702,0.3443044,-0.51382583,-0.12349081,-0.1534524,-0.11472774,-0.5959007,0.046753414 +561,0.8203944,0.11829589,-0.6102905,-0.054485537,-0.5523195,0.2301805,-0.2165027,0.3746491,0.31355366,-0.6119582,-0.0065056616,-0.119514726,-0.08118839,0.21005155,-0.06850548,-0.62138194,0.17748316,0.18216535,-0.69707006,0.8896598,-0.15543732,0.49441662,-0.070610024,0.24181616,0.10210804,0.1555773,0.18352403,0.11516516,-0.1234599,-0.2383527,0.036830842,0.19142388,-0.6493351,0.3554571,-0.12639843,-0.36923584,-0.121044196,-0.2539622,-0.16524899,-0.80195534,0.321184,-0.77381384,0.7288903,0.034216825,-0.26193,0.23884296,0.34363514,0.09239683,0.067219615,-0.11486031,0.13584317,-0.15277743,-0.062709495,-0.2826294,-0.33254507,-0.5371652,-0.6298031,-0.068872,-0.40408415,-0.17977752,-0.39208022,0.15971376,-0.27352598,-0.08498577,-0.27828386,0.86941844,-0.2951088,0.28307194,0.20218144,-0.2924181,-0.03095207,-0.7415872,-0.22149928,-0.13029955,0.11386267,0.0742938,-0.14539573,0.3984492,0.32965803,0.41439694,0.11081227,-0.42475826,-0.41316146,-0.13232267,0.1374166,0.39322326,-0.25265566,-0.19844863,-0.15771756,-0.09708559,0.40826866,0.033827342,0.29061702,-0.140685,0.13141045,-0.13986793,-0.13192068,0.5745104,0.40615454,-0.41517368,-0.22990446,0.27563134,0.3670915,0.0080544995,-0.30088308,-0.029704724,-0.19575164,-0.38004056,-0.0550557,0.25904992,-0.12384943,0.2643652,-0.20410681,0.1141141,0.47827402,-0.14656211,-0.1281904,0.22968677,0.12415462,0.27210417,-0.3074972,-0.1535985,0.34616703,-0.4682855,0.17193301,-0.368561,0.6793466,0.19209953,-0.5462469,0.35858864,-0.550294,0.1084122,0.11074203,0.4181299,0.77909714,0.58470917,-0.045259953,0.763352,-0.23365124,0.05097356,-0.0076807165,-0.026494225,-0.02040121,-0.23789285,0.31161538,-0.4403123,0.31523982,-0.031704873,-0.055890232,0.04965961,0.5080668,-0.5638483,-0.36234662,0.23449433,0.976498,-0.23463726,-0.3326351,0.7504112,1.0151182,1.0709629,-0.15558998,0.89942014,0.114400394,-0.18222438,-0.07618021,-0.19708334,-0.45035067,0.304492,0.19936688,0.11134328,0.36171967,-0.017794965,-0.20148294,0.26174092,-0.25659424,-0.2729995,-0.09432344,0.3864843,0.21756625,-0.14162461,-0.37620398,-0.19187763,0.101342306,-0.070835434,0.35214847,0.2889933,-0.30914024,0.4055014,-0.05967229,1.0137693,-0.13571943,0.12551482,0.1361282,0.41833046,0.33533022,-0.03062593,0.17732514,0.26936564,0.08057332,0.18740593,-0.4776337,0.3233001,-0.45538524,-0.44139412,-0.03856789,-0.41630283,-0.20869526,0.04484707,-0.43513718,-0.31854644,-0.11876667,-0.29376927,0.26652926,-2.5732825,-0.0075896042,-0.08810633,0.38512832,-0.2536161,-0.28718516,-0.22362784,-0.58078086,0.3481227,0.16173843,0.38519368,-0.41290832,0.39950517,0.3836749,-0.657462,-0.07410725,-0.5448033,-0.09641157,0.042760722,0.42496863,-0.15891562,-0.17539512,0.035916228,0.22652675,0.63993865,0.15366784,0.26032978,0.38479072,0.3083516,-0.20229067,0.23683389,-0.13235496,0.5575025,-0.51515144,-0.17759685,0.5261664,-0.44382003,0.07058694,-0.17967705,0.084566556,0.6155138,-0.3800862,-0.97689235,-0.62947905,-0.010987161,1.0412674,-0.23853289,-0.7334704,0.06047207,-0.17501831,-0.1430557,-0.008935304,0.57011384,0.11274648,0.18947445,-0.65052706,-0.02698359,-0.027888963,0.3338318,-0.07136831,-0.0061969734,-0.46745425,0.7161837,0.00957703,0.5917228,0.078353606,0.3176901,-0.39363942,-0.4319396,0.039497938,1.0347157,0.45122725,0.11193932,-0.17592993,-0.12920964,-0.34998927,-0.21288694,-0.0052277124,0.79322594,0.540352,-0.05606418,0.08082684,0.2718418,-0.15383656,0.33772025,-0.19108708,-0.4161797,-0.3309436,0.05983522,0.5075344,0.46386406,-0.17530362,0.45763612,-0.012584575,0.4153556,-0.30061096,-0.63789445,0.51477647,0.97555274,-0.33801487,-0.32661104,0.65581334,0.37087247,-0.39317146,0.58997506,-0.6333092,-0.56147987,0.4378038,-0.19529302,-0.51908296,-0.0014714301,-0.32427934,0.12789622,-0.51699317,0.2679433,-0.66832,-0.6325775,-0.28798088,-0.25598505,-2.5572083,0.20617995,-0.09713127,0.0010268603,-0.29631788,-0.04188161,0.15210967,-0.39796835,-0.5592877,0.038431328,0.16436648,0.83113676,-0.13284358,0.06004592,-0.22708078,-0.517228,-0.298597,0.37879673,0.15013969,0.25654832,-0.09363661,-0.34096128,0.14761303,0.0888126,-0.39494064,0.010848994,-0.68955904,-0.41069502,-0.22549231,-0.5621378,-0.2290294,0.650847,-0.4245861,0.08648541,-0.26566097,0.12085427,-0.057398044,0.15207665,-0.022016589,0.2817406,0.072393835,-0.24277341,0.2023968,-0.26748896,0.4976454,0.09024131,0.4810357,0.49467805,-0.16233255,0.095209725,0.46121627,0.5389355,0.37419605,0.99413955,0.05300813,-0.044970307,0.58280694,-0.1090809,-0.3707776,-0.5973617,-0.104975544,0.06656123,-0.42320323,-0.29443192,0.058033496,-0.407921,-0.93680316,0.5460258,-0.14524367,0.3730699,-0.19465192,0.4244087,0.5458914,-0.26082832,0.02832179,0.07916127,-0.12387641,-0.44965786,-0.3526411,-0.638441,-0.44511938,-0.061222613,0.7244662,-0.25922322,-0.0688508,0.054526653,-0.057956073,-0.025852306,0.27666798,0.16485007,-0.051578104,0.5997757,0.02210827,-0.6783026,0.4547895,-0.31155303,-0.019528517,-0.44144017,0.6811658,0.45607045,-0.63760483,0.5582046,0.25377828,0.110239014,-0.52479154,-0.6621906,-0.06881653,0.17116246,-0.19379695,0.32063642,0.33103672,-0.81595147,0.38316822,0.108021274,-0.20762451,-0.71711093,0.5428874,-0.037660833,-0.33501747,-0.2544988,0.5596004,0.28426203,0.002370464,-0.08624538,0.1799313,-0.6264482,0.32706922,0.031764127,-0.1492493,0.37188414,-0.102041535,-0.31199518,-0.76958454,0.14958198,-0.56986743,-0.47846174,0.31838888,0.07196803,-0.08906102,0.4908497,0.2105304,0.5105135,-0.18571822,0.1705115,-0.3021829,-0.30895707,0.616168,0.35120112,0.43174177,-0.42403835,0.6246155,-0.03276066,-0.25626367,0.29860285,0.19912155,0.47620997,0.11954035,0.7084028,0.1399004,-0.05066631,0.11403111,0.4971362,0.1798627,0.31671444,0.04731344,-0.14494547,0.14938603,-0.09890628,0.046086285,-0.08212427,-0.5749174,-0.27707776,-0.14539674,0.028984329,0.6588856,0.03897,0.33129317,-0.0036334523,-0.24712765,0.081411935,0.023774501,-0.2450022,-1.2991276,0.32672366,0.020533284,0.9296202,0.4083698,0.04157304,-0.17714651,0.6976735,-0.028484225,0.09395598,0.36634707,-0.060496844,-0.21712509,0.5989633,-0.5105885,0.3387917,-0.1381465,-0.033099882,0.037210133,0.10815774,0.44411317,0.96060044,-0.1565985,0.0032141295,0.10981203,-0.41166177,0.22630177,-0.24623473,0.2541384,-0.5468862,-0.33043846,0.7240561,0.33198354,0.33085164,-0.36229426,0.08686676,0.1327655,-0.26884535,0.17016712,0.07076673,0.10707242,-0.14668694,-0.3748731,-0.12024362,0.53171194,-0.25637004,0.04849771,0.24787012,-0.16245301,0.2610259,0.040428776,0.030855162,-0.058548003,-0.7813516,-0.039898593,-0.27918494,-0.39134255,0.48971772,-0.1243723,0.084627345,0.15407276,0.07184603,-0.36094195,0.39496782,0.27252457,0.255564,0.08401015,-0.1097958,-0.41045588,0.16074882,-0.19319566,-0.25614005,0.18841903,0.0012469122,0.2522078,-0.56121904,0.49335477,-0.11441517,-0.22812496,-0.12954788,-0.07154512,-0.027504751,0.5344656,-0.054612722,-0.108367525,0.052354276,-0.14112924,-0.41347393,-0.31108457,-0.058170464,0.10186333,-0.039731044,-0.18085288,-0.20315899,-0.14398345,-0.075803146,0.15155761,-0.0241593,0.13853177,0.41035798,0.14771724,-0.47125864,0.19197476,0.29952782,0.50237906,-0.020162685,-0.06370221,-0.26405543,-0.40784165,-0.5007126,0.50479937,-0.061658077,0.19505182,0.10493048,-0.3705897,0.87155694,0.092348464,1.1842258,-0.119528316,-0.37361678,-0.0074634976,0.5723614,-0.111986555,-0.0700498,-0.4933872,1.0411931,0.62541896,-0.014668347,0.05753839,-0.4128421,-0.007673309,0.13548867,-0.3263872,-0.11484684,-0.052714713,-0.6349398,-0.22382419,0.07085311,0.29975718,0.09163944,-0.19771041,0.17245828,0.31925339,0.16614212,0.21272253,-0.60378605,0.009571168,0.20027594,0.41176242,-0.021593736,0.27431226,-0.31798616,0.10370684,-0.87946045,0.13918379,-0.11128586,0.09963686,-0.27126223,-0.46864036,0.2742587,0.10181276,0.3073408,-0.42358488,-0.2810566,-0.23998983,0.43384022,0.20253168,0.14581254,0.81067973,-0.22160146,0.032403443,0.20968713,0.6279977,1.101463,0.09781183,-0.17269464,0.055369206,-0.45050684,-0.94791174,0.11537175,-0.31058645,0.327604,-0.16150713,-0.24432732,-0.5179426,0.3003077,0.08032449,0.014753408,0.14910635,-0.6341607,-0.15227643,0.10536308,-0.44589213,-0.2363936,-0.23294422,0.27124685,0.53291154,-0.086784504,-0.16132364,-0.024795678,0.33335894,-0.21029344,-0.7795057,-0.030859768,-0.3909637,0.22065173,-0.030098166,-0.28458008,-0.20355631,0.00031210162,-0.6056904,0.1642277,0.13209967,-0.28466767,0.034438483,-0.36073884,0.1335333,0.59841615,-0.0048952317,0.12946112,-0.35875374,-0.6749147,-0.8088955,-0.33419272,-0.0010390027,0.068992764,-0.0779951,-0.73602444,-0.27384087,-0.42133263,-0.053002764,-0.06590987,-0.41415957,0.27559572,0.16641939,0.3498819,-0.15303585,-1.0214632,0.105362244,0.15651152,0.057922,-0.44852862,0.21760856,-0.22829954,0.99909985,0.12664412,-0.045551088,0.29028693,-0.5469492,0.17448221,-0.20961976,-0.06353099,-0.49006262,0.1451021 +562,0.33907786,-0.13960437,-0.50341797,-0.09088147,-0.3813889,-0.3022633,-0.31075045,0.21167862,0.3523437,0.045321714,-0.2706943,-0.1250026,0.085516214,0.36675188,-0.17604677,-0.6106035,-0.0061023138,0.1640142,-0.71342945,0.66385674,-0.37931827,0.2850053,0.101528905,0.3687928,0.38740206,0.43783212,0.16004023,0.08818265,0.12912552,-0.28928152,0.05385053,-0.14361288,-0.84262484,0.081439905,-0.47284022,-0.30661544,0.17351037,-0.64146596,-0.44859543,-0.7992017,0.2833176,-0.91051954,0.5083198,0.07371169,-0.09239561,-0.2935044,0.23183976,0.35981503,-0.27695066,-0.07493139,0.23081069,-0.27336952,-0.094978094,-0.29203176,0.0007206599,-0.226104,-0.4718142,-0.087655164,-0.5657513,-0.33039057,-0.22003396,0.16641721,-0.3483715,0.15133074,-0.15879972,0.547412,-0.41441965,0.33552718,0.2521867,-0.2768545,0.11288025,-0.56767124,-0.13785826,-0.14435335,0.44527867,0.13524622,-0.17806011,0.5474926,0.08598993,0.14936478,0.16656618,-0.33037254,-0.21849942,-0.20508039,0.05848797,0.5789198,-0.047677007,-0.12995602,-0.18039541,-0.0075019896,0.28669038,0.26804027,-0.058290195,-0.2244252,-0.09469613,-0.24571566,-0.073459156,0.58270234,0.5815411,-0.08458104,-0.18530793,0.12647112,0.46841088,0.4426491,-0.39800987,-0.10928468,0.13750513,-0.50218177,-0.112350516,-0.027127007,-0.09024074,0.76797056,-0.09591179,0.010619174,0.8514218,-0.01817139,-0.19530219,0.003641059,0.1261,-0.011047636,-0.21176992,-0.29447687,0.33676776,-0.5150543,0.33415487,-0.24051535,0.66940504,0.2246231,-0.6416703,0.40038386,-0.6836559,0.120351344,0.020231927,0.4812583,0.6031427,0.47127494,0.49258086,0.68288,-0.17525572,0.29609504,0.012141245,-0.35954794,0.037370548,-0.24883716,0.22997506,-0.29794,-0.06436803,-0.2630745,0.12725507,0.16227879,0.5245622,-0.27735934,-0.09080416,0.39297402,0.9179592,-0.1900232,0.09544104,0.68809146,1.2060434,1.1521721,-0.056293353,0.7885792,0.05697022,-0.1896918,0.042504895,0.021329245,-0.7549818,0.12869309,0.21218388,0.08794723,0.20964678,-0.047302183,-0.004781475,0.35374367,-0.51455337,0.08589793,0.08190066,0.21874379,0.32074672,-0.051617566,-0.50041,-0.32638824,-0.11961647,0.0059394143,0.046963036,0.21700723,-0.24613583,0.24306388,-0.11803383,1.337565,0.124037325,0.0610057,0.21764058,0.82881355,0.3378272,-0.1961077,-0.054990783,0.36737943,0.33667752,0.16211687,-0.5324437,0.14145882,-0.41335663,-0.25438675,-0.13662986,-0.35206762,-0.23388255,0.10958269,-0.49669245,-0.22187042,0.00044325492,-0.2004056,0.38449728,-2.8465736,-0.19028436,-0.12868047,0.41692242,-0.15876694,-0.04449402,0.03313774,-0.57914346,0.17019232,0.2644821,0.57493967,-0.60757095,0.6089595,0.6537948,-0.5696924,-0.09225395,-0.56801325,-0.07280878,-0.007937183,0.4100864,-0.026017427,0.08427009,-0.16092758,0.23112917,0.8056395,0.2988502,0.16107687,0.55041915,0.43094194,-0.01541433,0.7266883,-0.07930892,0.45843956,-0.3944117,-0.14791489,0.35644138,-0.4304577,0.32398036,-0.31970528,0.05207756,0.6952998,-0.49773178,-0.9620604,-0.4947867,-0.050296903,0.9516154,-0.37695718,-0.46532285,0.3908368,-0.5530221,-0.029506743,-0.007947008,0.790292,-0.19894457,0.2871324,-0.4281009,-0.07880361,-0.18336378,0.23357886,0.106605805,-0.08165527,-0.3537198,0.8473463,0.08320466,0.6493642,0.233113,0.17954798,-0.10708328,-0.30374292,0.22716856,0.49951637,0.2500503,0.005999694,-0.3520095,-0.07033684,-0.12736326,-0.29724255,-0.04844441,0.72303724,0.64253736,-0.35614383,0.23114629,0.28184238,-0.06804828,-0.077345274,-0.115418255,-0.22534132,-0.046859983,0.086159825,0.39848268,1.2165767,-0.054784004,0.29356298,-0.08196547,0.46543726,-0.04787454,-0.44388637,0.44987914,0.58502555,-0.031734172,0.004685285,0.3272259,0.6042977,-0.43596005,0.44822732,-0.5774326,-0.22766693,0.68221635,-0.010158978,-0.41338494,0.18955278,-0.44678262,0.04497221,-0.5722434,0.31398168,-0.32096896,-0.51300615,-0.31376183,-0.29508138,-3.318103,0.12236025,-0.24572277,-0.100267716,-0.42704833,-0.041277364,0.22575748,-0.6296132,-0.5662906,0.13224356,0.29675943,0.7507429,-0.12128935,0.1151062,-0.327638,-0.32857165,-0.23483157,0.3987799,0.19562453,0.33857918,-0.23185503,-0.38760176,-0.23732917,-0.029604375,-0.47440204,0.17200224,-0.51528615,-0.38695803,0.032355737,-0.59362817,-0.4599237,0.4649241,-0.29081413,0.021067664,-0.23451476,-0.04923658,-0.32453954,0.061032128,0.09581836,0.18422861,0.12253627,0.023554875,0.24570997,-0.19500549,0.47809586,-0.071702644,0.50568146,-0.08868497,0.15684943,0.057801466,0.43493152,0.4351697,-0.42032805,1.1539093,0.33363983,-0.10595912,0.22606671,-0.13460194,-0.37436703,-0.69663095,-0.17393194,0.07490861,-0.20167808,-0.48914042,0.058216974,-0.32766506,-0.7144173,0.6063209,-0.028812269,0.20367885,0.16270308,0.025547503,0.34509435,-0.17937408,-0.09163233,0.08388006,-0.06294317,-0.523503,-0.16957861,-0.58577704,-0.5130153,-0.30323124,0.8937583,-0.26416144,-0.103209995,0.2170807,-0.5120825,0.090199776,0.23109193,0.12701832,0.2337486,0.56509805,0.16083057,-0.6586974,0.4175615,-0.26794013,-0.07319976,-0.564315,0.15901445,0.6081908,-0.8097043,0.6677766,0.2606232,0.16558664,-0.16991432,-0.6261017,-0.27451277,-0.05437093,-0.16251238,0.37154877,0.28310847,-0.96481556,0.3641177,0.013907808,-0.6873624,-0.72710514,0.34580836,-0.19871639,-0.502164,-0.15317781,0.30399624,0.07979837,-0.15483218,-0.020339916,0.34065482,-0.25923684,0.2531972,0.04582053,-0.20151539,0.11212909,-0.13121457,-0.20678349,-0.6500653,0.124400295,-0.31165096,-0.24704802,0.46736833,-0.16181229,-0.12720792,0.11214914,0.18822984,0.15969649,-0.10402894,0.105854,-0.110651575,-0.4453852,0.304863,0.53371483,0.60854894,-0.468276,0.616218,0.1156447,-0.14515413,0.26321954,0.11078143,0.12602954,-0.23927712,0.44443026,-0.044512253,-0.083194785,0.062363535,0.79679614,0.24569114,0.5270274,0.073276125,0.048503418,0.49017358,0.0032308921,-0.0131710125,0.06340966,-0.6260062,0.16010553,-0.26602855,0.074187204,0.55279154,0.2869848,0.27226087,0.0055577555,-0.14701438,-0.035406318,0.22578044,-0.16988198,-1.2617316,0.27443263,0.24466081,0.8938373,0.4898634,0.14813006,-0.21985197,0.86081725,-0.1966939,-0.016044216,0.43583456,0.16711627,-0.3193994,0.6992915,-0.45289245,0.6951421,-0.0369975,-0.19366415,0.32709238,0.09495545,0.5726071,0.64910847,-0.30773088,-0.14802179,0.135515,-0.2947273,-0.1144177,-0.35241297,0.01965093,-0.47496715,-0.3761269,0.80511826,0.5229786,0.28342196,-0.24450839,0.011584945,-0.15367655,-0.18793373,0.24863337,-0.13063532,-0.26519355,0.17551287,-0.6269964,0.027518844,0.60406333,-0.281963,0.17440887,-0.07174275,-0.20033985,0.23570351,-0.17313534,-0.022435738,-0.15592308,-0.8030278,0.20737155,-0.20398724,-0.57463264,0.5399112,-0.29303756,0.1697157,0.23751515,0.0061959177,-0.057845473,0.5406398,0.017918786,0.7216342,-0.08818028,-0.15292591,-0.29260194,-0.009380515,0.22887488,-0.20752935,0.12640812,-0.52443457,0.13699582,-0.54947525,0.5837677,-0.21668684,-0.30574137,-0.055957645,-0.14268745,-0.12900244,0.7678809,-0.022592494,-0.12455591,-0.016266057,-0.14461458,-0.40769753,-0.30726352,-0.35996637,0.17672175,0.22830267,-0.12973502,-0.16468075,-0.1883985,0.06979817,0.4616067,-0.1369621,0.7605286,0.0070392787,0.18734376,-0.08353323,-0.08548486,0.059785515,0.5936066,0.09312868,-0.13834488,-0.4803883,-0.38414046,-0.28552186,0.27841172,-0.00641893,0.27762112,0.12496754,0.022009691,0.86446315,-0.04309253,1.1557139,0.09704375,-0.35309473,0.3624433,0.52936417,-0.20396967,-0.0381187,-0.41536173,0.92037314,0.403625,-0.27024812,-0.22995788,-0.46787015,0.108232826,0.0032924477,-0.3368609,-0.048116386,-0.08135605,-0.37218443,-0.073575675,0.06832213,0.29879436,0.18174005,-0.18344645,-0.07094991,0.14738837,0.15847324,0.1788133,-0.5370441,-0.352447,0.45205888,-0.023790916,-0.12727964,0.052062873,-0.5221998,0.4552656,-0.48898697,0.24624439,-0.6562765,0.15656452,-0.40629148,-0.35866597,0.15715216,-0.06973538,0.42051712,-0.60567176,-0.08802236,-0.23512071,0.37530598,0.21717338,0.23647134,0.6272463,-0.1786746,-0.14370279,-0.09055037,0.74617845,0.96429294,-0.730725,-0.05036651,0.24698444,-0.47123718,-0.46658865,0.26105317,-0.4943427,-0.1284036,-0.050056856,-0.22869052,-0.6441713,0.085893236,-0.04506029,0.035196498,-0.050166845,-0.7566903,-0.18471913,0.29352263,-0.2633476,-0.27664393,-0.30452418,0.25661823,0.71664333,-0.046685237,-0.41008452,0.06027016,0.09105617,-0.09776876,-0.46792558,0.033015568,-0.20751189,0.28215632,-0.13723353,-0.34352055,-0.25597072,0.39783868,-0.6050332,0.070447,0.15820849,-0.3595903,0.14498794,-0.21309912,0.10440261,1.1350362,-0.50627786,-0.016584694,-0.4297628,-0.6448472,-0.89460474,-0.43544817,0.19775122,0.25343397,-0.030496141,-0.16654444,-0.10309732,-0.14690515,-0.26105133,-0.060684945,-0.5397424,0.39341238,0.0931414,0.51202893,-0.42638683,-1.0776672,0.07853652,0.11891975,-0.25575197,-0.5020603,0.52896595,-0.061771203,0.80905205,0.03762966,-0.023890072,-0.13672729,-0.28921178,0.16033803,-0.26494256,0.032162357,-0.63903916,0.15405728 +563,0.3350386,-0.15703943,-0.5875541,0.029690811,-0.22655497,-0.03501378,-0.39947483,0.3750526,0.27724317,-0.40948895,0.100460805,-0.2226713,-0.14934409,0.11841844,-0.1999608,-0.4866628,-0.03846294,0.200072,-0.4364524,0.5801692,-0.432101,0.20079327,0.095229305,0.23702273,-0.12218637,0.2589906,-0.0051339758,-0.28436893,0.025795903,0.046937324,0.20401356,0.09122162,-0.61449903,0.27792427,-0.18912613,-0.16146812,0.1431055,-0.56350744,-0.56499773,-0.58212197,0.17602767,-0.6214899,0.53956324,0.03564131,-0.3333278,0.28639403,-0.04277139,0.2851266,-0.08863734,0.07171065,0.28577837,-0.17837487,-0.5011706,-0.2445146,0.039688654,-0.48787403,-0.45230156,-0.050694253,-0.4703881,0.20035364,-0.22324331,0.24529903,-0.15383871,0.10581382,-0.11063645,0.13279246,-0.50567085,0.089127846,0.07504349,-0.087264605,0.37559742,-0.66995806,-0.1204614,-0.0016885698,0.19126084,0.19258912,-0.15782128,0.19092837,0.016009582,0.6697779,-0.09711821,-0.07337325,-0.26186663,0.005683754,0.060097802,0.57208,-0.2430084,-0.09048629,-0.16677022,-0.09047786,0.40532207,0.18941453,-0.061106198,-0.3913763,-0.06942902,-0.03706732,-0.3563071,0.15072306,0.6713883,-0.29246372,0.16049124,0.3624827,0.3330607,0.32403424,-0.06916066,0.075962715,-0.079805136,-0.38532543,-0.12271099,-0.024883678,-0.13323146,0.49493477,-0.020159248,0.2637278,0.4639595,0.049768627,-0.10002591,-0.038880367,0.0048025805,0.06642474,-0.08623072,-0.17831199,0.3123695,-0.5612938,-0.0046566087,-0.13120031,0.52223915,-0.16910431,-0.86137384,0.45762625,-0.47998673,0.06917486,0.06555341,0.596224,0.7032619,0.7404996,0.0870722,0.89453804,-0.5633551,0.15303013,-0.12878715,-0.229624,0.35527244,-0.14669539,0.23021157,-0.45153126,-0.04440651,0.14759819,-0.14062789,-0.15268609,0.6495957,-0.54685235,-0.001882468,0.21186201,0.72556156,-0.29861477,0.14228691,0.6092494,1.1353904,0.8330983,0.2782727,1.1971667,0.27543333,-0.19863252,-0.07824954,-0.059697144,-1.0604625,0.099962555,0.28564772,0.7165567,0.18496545,0.36039916,-0.03295574,0.6722166,-0.25080544,-0.16064216,-0.22130595,0.375392,-0.054795478,-0.21607362,-0.2200378,-0.18823375,0.06370303,0.13181305,-0.046574254,0.33827713,-0.060912065,0.2673764,0.18713239,1.5472937,-0.19366369,0.11431346,0.12620656,0.14618209,0.19032557,0.010505642,-0.12621741,0.36477163,0.35578346,-0.021803724,-0.55449355,0.0069865286,-0.12746613,-0.63336116,-0.1533675,0.056360643,-0.13575543,-0.10508282,-0.28444007,-0.2645571,-0.06347077,-0.3297232,0.57226026,-2.6871376,-0.11243469,-0.17818257,0.43832207,-0.17686081,-0.2664087,-0.11310103,-0.2804342,0.5431568,0.48976332,0.42599398,-0.56392664,0.4554209,0.38955018,-0.5847383,-0.10919584,-0.6451064,-0.029518614,0.029705787,0.27229974,0.07653398,-0.31412056,0.053689737,-0.16342251,0.2974729,-0.20107748,0.15250906,0.43788937,0.51228416,0.014118097,0.39879823,-0.19627477,0.36442152,-0.28763488,-0.11148806,0.26756144,-0.36211976,0.40914991,-0.20540306,0.20062813,0.3672063,-0.5464794,-0.62524205,-0.41516963,-0.055049304,0.9580328,-0.26389137,-0.5304104,0.22443001,-0.35304955,-0.32028052,-0.038923714,0.38694876,-0.15847073,0.027346853,-0.85387695,-0.07859804,-0.07945393,0.26875368,0.022588039,-0.003817918,-0.47207877,0.6964862,-0.035699993,0.5766055,0.6662506,0.2758915,-0.060607374,-0.27807578,0.11153237,0.67090166,0.48554975,0.171804,-0.1936544,-0.041951988,-0.04112702,-0.22544037,0.10298306,0.5103138,0.58756256,-0.16496928,0.10241078,0.2098311,-0.19652727,-0.123066776,-0.07391044,-0.43580213,-0.099805534,0.12034048,0.48272082,0.789688,-0.18535025,0.26288548,-0.014225778,0.15228446,-0.0010543125,-0.45993838,0.4029548,0.53158927,-0.10734483,-0.18071012,0.4724866,0.4878609,-0.09143002,0.46919766,-0.558262,-0.47160238,0.32963482,0.0049885428,-0.61443454,0.37574658,-0.45383072,0.14507529,-0.97361577,0.3777234,-0.349529,-0.5770553,-0.6950432,-0.08403759,-2.4698815,0.22477886,-0.27426764,-0.08655033,-0.1778857,0.011360322,0.2809131,-0.52514315,-0.6647791,0.19398654,0.19098876,0.35279983,-0.0014725582,0.043459687,-0.18836986,-0.1572125,-0.2888184,0.17325592,0.20376119,0.15050414,-0.032551296,-0.4444785,-0.23910478,-0.23080859,-0.097493626,0.082851104,-0.5858265,-0.29083967,-0.16521814,-0.46228853,-0.29188892,0.50009257,-0.38341406,-0.071830325,-0.33286378,0.016328672,-0.13566019,0.32918686,-0.1311252,0.11307402,-0.038784694,-0.12574033,-0.057431627,-0.23497938,0.11787776,0.09122646,0.12791814,0.5672902,-0.113099255,-0.075325884,0.5730285,0.6578768,-0.21031602,0.78992164,0.49433258,-0.29454237,0.3638092,-0.36857313,-0.13545643,-0.62273175,-0.27347443,-0.11414545,-0.39076582,-0.4859529,0.04702249,-0.421732,-0.7218777,0.5102633,-0.0101068,-0.044553824,0.19146106,0.13750665,0.3799183,-0.08483861,-0.122255705,-0.14381981,-0.20558996,-0.51782924,-0.3464281,-0.70256466,-0.49971423,0.16343047,1.1629188,-0.14234357,-0.14772399,0.28221095,-0.22471072,0.04135992,0.20590101,0.07904865,0.16350208,0.2731193,0.15813632,-0.75622314,0.4329849,-0.07403342,-0.19723788,-0.6647498,0.06473958,0.6055294,-0.8005174,0.43719092,0.3950677,0.15208931,0.2916655,-0.6257015,-0.22371697,0.038157318,-0.27842042,0.3571132,0.26710656,-0.81527704,0.5653678,0.49070904,-0.2960649,-0.8827692,0.23571874,-0.045205623,-0.13337587,0.10791675,0.30046603,0.08219319,0.033460796,-0.1076893,0.21197973,-0.51985055,0.44774002,0.07181007,-0.1723331,0.44170538,-0.20526095,-0.08813067,-0.9043861,-0.06764251,-0.4225025,0.019306336,0.39993724,0.050978076,-0.042244375,-0.2616694,0.38635454,0.44177863,-0.43690866,0.16798909,-0.2760244,-0.36581096,0.27999574,0.5496573,0.4286532,-0.31876987,0.48578972,-0.13174228,-0.11528802,-0.20596504,0.068888105,0.36147264,0.14081885,0.08277158,0.007917813,-0.10690167,0.1184669,1.0193561,0.13639888,0.35951108,0.08891287,-0.1242735,0.5164179,0.115405016,0.08755926,-0.14194699,-0.526622,0.035221703,-0.06093904,0.21686505,0.42745617,0.19204679,0.4951376,-0.3164448,-0.12553397,-0.09839075,0.35218468,0.35152128,-0.84145325,0.47656268,0.080317445,0.6029692,0.6756266,0.056652274,0.30968237,0.68599683,-0.17526576,0.06716626,0.32946375,0.042849522,-0.4437645,0.38062754,-0.7575056,0.28656402,-0.20296128,-0.033984922,0.38884845,0.23091057,0.5214688,0.7894373,-0.062880106,0.003508611,-0.09923909,-0.11840367,-0.10839907,-0.20223448,-0.1784621,-0.33975467,-0.41602662,0.6823087,0.41125104,0.45449883,-0.31322604,0.016594272,0.18026762,-0.0069140964,0.60962564,-0.02280079,-0.010445176,-0.1614858,-0.61015993,-0.22764526,0.67719424,0.042658843,0.039977588,0.0031139723,-0.08393727,0.3883269,-0.21225247,-0.20553215,0.014982073,-0.6580173,0.18362649,-0.28723887,-0.48101848,0.6107546,0.22792152,0.19888012,0.06667252,0.090024844,-0.2351376,0.33540282,-0.024529388,0.8421251,0.008993119,-0.27768356,-0.18757196,-0.1413278,0.20230351,-0.18794498,-0.15884164,-0.24564731,-0.029635224,-0.5823422,0.4561964,-0.20881979,-0.07884501,0.31294063,-0.29345924,0.04484563,0.48113397,-0.2846359,-0.30103603,0.20870717,0.11376516,-0.2713335,-0.45604038,-0.46621466,0.06508044,-0.07868481,0.10079881,-0.07457827,-0.1477952,-0.03872108,0.48026976,0.08379451,0.18509217,0.38132167,0.31703338,-0.5027236,-0.18410417,0.20256308,0.4621916,-0.004454215,-0.09604697,-0.2593218,-0.6509635,-0.3433502,-0.0863878,-0.10709442,0.34557396,0.1372829,-0.41822955,0.9127653,0.122466855,0.94358593,0.08356544,-0.17198613,0.08598524,0.54007834,-0.0998684,-0.026380513,-0.4274545,0.8397242,0.8095974,-0.0943539,-0.077638045,-0.5034057,-0.12903298,0.18405755,-0.3217352,-0.022343738,-0.093657054,-0.7188546,-0.23432776,0.10847359,0.23299193,-0.17373657,-0.14251746,-0.08205337,0.018279774,0.101134576,0.12776938,-0.36435556,-0.26156104,0.40617278,0.206568,0.10286361,0.13601786,-0.34693933,0.2828153,-0.456807,-0.043071758,-0.4610605,0.019617332,-0.016326537,-0.24421223,0.05843566,-0.12084507,0.29462144,-0.31234977,-0.31720564,-0.060908,0.4114395,0.22812359,0.33808684,0.64747447,-0.18254794,-0.07585131,-0.13084503,0.49411747,0.998539,-0.5109126,0.08473998,0.41171935,-0.39321473,-0.42705485,0.21834072,-0.37130553,0.009213784,-0.09327037,-0.4198821,-0.5462917,0.17723843,0.12118828,-0.19004896,-0.25503308,-0.62264025,-0.014612113,0.19781268,-0.30932823,-0.14031668,-0.19877349,0.06538944,0.9765376,-0.3626797,-0.30974963,0.17619045,0.10135238,-0.30755138,-0.31685933,0.21118583,-0.4036413,0.24472524,0.36635408,-0.3634962,-0.0058502215,0.21430556,-0.5950743,-0.04921731,0.12867549,-0.29002553,0.03170403,-0.47535753,0.19210377,0.82541263,-0.03605122,0.20425443,-0.45520094,-0.55716133,-0.9977077,-0.30995092,0.169434,0.27171195,-0.044684555,-0.4395297,0.08402264,-0.14861332,-0.088514045,-0.08310044,-0.51255345,0.59262955,0.09192155,0.40576747,-0.39061823,-0.9268905,0.09116932,0.1815963,-0.21159947,-0.29333702,0.4985183,-0.12091913,0.95954216,0.06611966,0.094684176,0.16498467,-0.7390995,0.23263991,-0.31160998,-0.3778378,-0.698125,-0.046795342 +564,0.48200107,0.0021809042,-0.6145715,-0.19136804,-0.2533081,-0.15175608,0.005125334,0.62549156,0.30923533,-0.26852348,-0.15629894,-0.14982976,0.042206317,0.4307609,-0.1433898,-0.5414991,0.10931649,0.30316532,-0.5019536,0.54442215,-0.46095416,0.36717883,0.03344117,0.6099344,0.40217265,0.18581665,-0.03831787,0.15398024,-0.021969488,-0.25427997,-0.3161059,0.31791392,-0.49868402,0.12461803,-0.12863003,-0.39880502,0.040821414,-0.4555236,-0.39430746,-0.9045107,0.09233528,-0.56916183,0.574866,-0.055566058,-0.40351295,-0.19730626,0.4633505,0.46444583,-0.2199583,-0.04639332,-0.04793698,-0.033504836,0.048556965,-0.20399153,-0.4094982,-0.4634556,-0.59689856,-0.100160144,-0.46877614,-0.08147126,-0.33402762,0.2545477,-0.2990859,-0.095784985,0.0058359304,0.58086354,-0.2731268,0.15626891,0.08206991,-0.008675831,0.15019129,-0.5207758,-0.29466477,-0.19367218,0.0993801,-0.14594065,-0.45989326,0.30342177,0.23595482,0.21574517,-0.22438847,-0.14175077,-0.324255,-0.09900617,-0.30734167,0.5398553,-0.3215423,-0.5539347,-0.11601517,0.029040078,0.24944592,0.63299716,0.2880942,-0.132425,0.01900874,-0.011210263,-0.36274466,0.4281052,0.4092845,-0.37314996,-0.25002524,0.29096135,0.32284182,0.14354903,-0.30214763,-0.0014790446,0.040011063,-0.59905773,-0.16211806,-0.076689444,-0.17857683,0.5328539,0.032959815,0.14729317,0.6160593,-0.118628494,-0.24467109,0.18151605,0.21879031,0.016299346,-0.47464517,-0.40615845,0.29815164,-0.54059094,0.11352771,-0.097631745,0.7384772,0.10461276,-0.6950508,0.15655023,-0.6933405,0.037946317,-0.1486371,0.3583386,0.59894884,0.4478276,0.38254952,0.59726745,-0.3070782,0.0246673,-0.055942614,-0.17475943,0.04157042,-0.20228891,0.051711034,-0.50907046,-0.064447485,0.09111299,-0.21479662,0.4335592,0.53036743,-0.5381109,-0.3872359,0.2586099,0.80815053,-0.32964987,-0.29798952,0.66657233,1.0161492,1.0807484,-0.026803285,0.9055354,0.1633774,-0.17998107,0.18347764,-0.12772651,-0.5385268,0.24278027,0.23379236,-0.8269048,0.24208026,-0.052746225,-0.04818831,0.34380618,-0.1695729,-0.054314952,-0.035630148,0.13162737,0.08906302,-0.10765975,-0.43649194,-0.5560643,-0.08390541,-0.09431403,0.137202,0.34063685,-0.29253924,0.3811226,-0.05797283,1.7612771,0.16061157,-0.09415764,0.0909124,0.59106785,0.35843262,-0.18454303,-0.13925521,0.28748503,0.23461463,0.08668453,-0.40136588,0.15945044,-0.26519164,-0.3936267,-0.12015182,-0.41342553,-0.033369552,-0.25117084,-0.43735316,-0.25044617,-0.23237671,-0.27497724,0.57315993,-2.9049509,-0.1112532,0.05484577,0.30615094,-0.15270285,-0.52849865,-0.09477822,-0.5282701,0.39819348,0.1851501,0.4443777,-0.5439989,0.39718208,0.53831476,-0.5383039,-0.29573038,-0.6890333,-0.1317984,-0.035157595,0.13459428,-0.030125067,0.009410034,-0.08277861,0.15437703,0.57223815,-0.0051313937,0.12322555,0.39281297,0.33388296,-0.097897805,0.6785957,-0.036752965,0.58721894,-0.24038933,-0.22130118,0.23521674,-0.62241656,0.11727405,0.04373784,0.016764726,0.71632004,-0.5703691,-1.0386072,-0.5301871,0.04804385,0.8573416,-0.29887748,-0.089472346,0.41598487,-0.5388455,-0.25999215,0.012811247,0.6370689,-0.14693098,0.081889175,-0.5130608,-0.12609708,-0.022015354,0.21755813,-0.14740628,-0.09514421,-0.24162771,0.52852565,-0.032091677,0.51731414,0.054573815,0.1447346,-0.5773058,-0.4021574,-0.037303146,0.9435356,0.30257377,0.20722967,-0.18495543,-0.1939881,-0.63438874,0.05278046,0.17548132,0.6831255,0.7493823,-0.16821878,0.14794563,0.29636696,0.035071474,-0.03455325,-0.12979285,-0.33973292,-0.04861638,0.14116077,0.57401013,0.56505704,-0.0059120804,0.7001906,0.16606738,0.5010597,-0.33714664,-0.46610072,0.30196583,0.9912095,-0.25175813,-0.39177564,0.75853014,0.4960176,-0.25727844,0.47152734,-0.6164005,-0.42846498,0.6055266,-0.0355617,-0.3207299,0.22477005,-0.21376944,-0.008432806,-0.9084851,0.048229646,-0.3206614,-0.5405776,-0.42208302,-0.019003531,-2.9425533,0.32569212,-0.06112957,-0.15818138,-0.10823673,-0.13467272,0.06051207,-0.5966153,-0.52847713,0.0690509,0.19985704,0.8140497,-0.14959143,0.0014139563,-0.14085421,-0.45021543,-0.34176758,0.21919917,0.14053805,0.4135232,-0.04623286,-0.44643426,-0.15235959,-0.21721585,-0.50608665,0.15744783,-0.67575556,-0.5475495,-0.13064349,-0.8493889,-0.34982455,0.73701096,-0.39432588,0.06697188,-0.1540746,-0.022872373,0.06900125,0.15658762,0.21575846,0.06909337,0.03659576,-0.105951935,0.092085816,-0.29567906,0.10683658,0.036864918,0.4924328,0.12817067,-0.0055086613,0.3180293,0.62562615,0.6764388,-0.090368,0.94901323,0.3469068,-0.09630784,0.24784988,-0.2923806,-0.352072,-0.4170959,-0.10915748,-0.1386349,-0.25875196,-0.23677097,-0.1033667,-0.35353222,-0.66354024,0.6183165,0.06275052,0.2688795,-0.08380418,0.44508246,0.52233416,-0.24093223,-0.07673662,-0.12114366,-0.1892556,-0.43769893,-0.28647152,-0.5550992,-0.45923448,0.15750241,1.1510328,-0.412588,0.0061403713,0.069078706,-0.06316203,-0.026260234,0.29308692,-0.03701121,0.17225903,0.45641813,-0.29472694,-0.54083127,0.28471726,-0.3584926,-0.19092236,-0.52830344,0.29578647,0.63787895,-0.5967822,0.66525996,0.15078516,0.116355054,-0.27965513,-0.5614151,-0.07611143,0.23444963,-0.15249237,0.43483365,0.3114614,-0.97302085,0.33450374,0.290657,-0.39172506,-0.5817155,0.63425833,-0.045340087,-0.55655926,-0.41461623,0.4807581,0.324546,0.13251466,-0.11982524,0.15616788,-0.36748648,0.17281197,0.19479208,-0.0655712,0.20122094,-0.3527473,0.10753822,-0.79918003,0.35733774,-0.25376943,-0.52470416,0.35510674,-0.055533063,0.05021015,0.46255198,0.057490498,0.22795789,-0.44072703,-0.017888904,-0.28013182,-0.27081463,0.48985013,0.41708195,0.6443248,-0.32385388,0.569074,0.10703081,-0.16342038,0.06498044,0.08406957,0.35144734,-0.12435167,0.5505595,0.06368809,-0.38374305,0.3573265,0.48668396,0.13511221,0.21779908,0.13032503,0.17264622,-0.11599275,0.034750417,0.09652945,0.22948222,-0.5351729,0.008388202,-0.38681707,0.18090685,0.638051,0.08022218,0.13942946,0.09426406,-0.26353678,0.06781953,0.08903786,-0.13653187,-1.4163299,0.39053723,0.1884631,0.92998654,0.474057,0.22575788,-0.09738094,0.6256889,-0.17000504,0.26044777,0.34957537,0.14084816,-0.27258882,0.63542026,-0.6419928,0.7225879,0.017583018,0.024550488,-0.07873744,-0.07985247,0.6405832,1.0901198,-0.17146747,0.074097455,0.26189002,-0.29786935,0.18296434,-0.3501196,-0.09694827,-0.84156626,-0.2191881,0.6490125,0.48303393,0.33003232,-0.1263393,-0.13877797,0.16406424,-0.16825603,0.180676,-0.026638964,0.08622811,-0.023819834,-0.5296754,-0.057741046,0.59954685,-0.09944183,0.056243036,0.23782611,0.03444837,0.3674917,-0.09018248,0.1384583,-0.06321209,-0.60924643,0.049612958,-0.4161398,-0.45539021,0.42730293,-0.36670676,0.12672801,0.25179422,0.15788375,-0.28617278,0.5709126,0.3106033,0.7178939,-0.20205148,-0.12696746,-0.23596437,0.26257798,0.0070975516,-0.16121171,-0.05630302,-0.4023342,0.07284049,-0.58380866,0.4165757,0.13211201,-0.44731745,-0.22388236,0.06607282,-0.0070238397,0.39337143,0.0023152877,-0.12974797,-0.41026035,-0.20144837,-0.12139695,-0.19301444,-0.06558717,0.28772175,0.030217448,-0.14233278,-0.0049185134,-0.14018008,0.13435,0.34793243,-0.27155957,0.47597364,0.25131264,0.20028774,-0.20706157,-0.03645432,0.1320825,0.55913275,-0.23876412,-0.15927614,-0.318922,-0.004760901,-0.4602991,0.25366583,-0.12314042,0.551961,0.2022307,-0.254424,0.7839505,-0.073416084,1.2594881,-0.13319476,-0.46141148,0.11507376,0.6100981,-0.036120716,-0.05555442,-0.2979919,1.1442786,0.5340051,-0.07381743,-0.2418227,-0.40049025,-0.033574644,0.18773556,-0.32236502,-0.3508006,0.07754313,-0.49231216,-0.1801122,0.17500855,0.17539813,0.46380353,-0.07608023,0.18375826,0.58106834,-0.0028598506,0.17339875,-0.28127038,-0.014197116,0.20354868,0.40048108,-0.096406735,0.19668962,-0.49361503,0.34643683,-0.49977693,0.19952317,-0.37824854,0.3152294,-0.36035874,-0.44240868,0.21890318,0.08959759,0.30647913,-0.24703324,-0.24471207,-0.21012674,0.5458409,0.16741501,0.20985329,0.5305046,-0.27273598,0.0058891675,-0.10851574,0.5103124,1.0854573,-0.3316057,-0.36289212,0.44178668,-0.41425052,-0.6906288,0.2079066,-0.37706372,0.1996723,0.17841767,-0.20397002,-0.5613962,0.23626797,0.21696012,0.24769445,-0.055562317,-0.5501601,-0.048903476,0.17079578,-0.14221393,-0.14304426,-0.4220051,0.32726365,0.52982813,-0.10919046,-0.26749924,0.07607467,0.119747974,-0.09095186,-0.5771251,-0.01201811,-0.39969516,0.4067265,-0.021298388,-0.3993086,-0.17384432,-0.07521689,-0.5089087,0.23097181,0.24741435,-0.14257406,0.27381286,-0.36504436,-0.077638604,1.0501047,-0.2928867,0.07404333,-0.25170973,-0.55063194,-0.5020952,-0.45616433,0.38246512,0.008136444,-0.14821549,-0.7559014,-0.0028388996,-0.119395964,-0.3942745,-0.048469465,-0.2854847,0.31992385,0.09811439,0.39103726,-0.0040053427,-0.9900612,0.25627628,0.044564564,-0.38609254,-0.67373735,0.4877971,-0.18457323,0.92987126,0.15497571,0.087821,0.5584927,-0.32592404,0.028183505,-0.23507385,-0.068234794,-0.58878654,-0.068096064 +565,0.38083997,-0.14701307,-0.49127018,-0.18092112,-0.28758293,0.28221333,-0.0750658,0.41349486,0.27164468,-0.40781,-0.14123438,-0.09111164,0.027750038,0.36985835,-0.20197958,-0.39186412,0.017688446,0.046445593,-0.47010353,0.28682917,-0.45773557,0.3462428,-0.016566098,0.23271915,0.17578353,0.31513128,0.15808469,-0.20200843,-0.23642811,-0.090671375,-0.008980811,0.25754324,-0.3776862,0.22532547,-0.1456364,-0.26655984,0.05581682,-0.34106082,-0.28957263,-0.6825587,0.240331,-0.8821328,0.34166718,-0.102520004,-0.22528307,0.28743854,0.119667076,0.2417572,-0.10894889,0.05435502,0.2461097,-0.17559566,-0.15567002,-0.16032958,-0.21755946,-0.35029206,-0.45557564,-0.0347552,-0.38354796,-0.18662725,-0.18561628,0.29492718,-0.20621893,-0.024476554,-0.07256741,0.30345702,-0.47502214,0.14777231,0.14158696,-0.16492432,0.09961053,-0.5618205,0.03645142,-0.057957307,0.24909951,-0.24789906,-0.24480483,0.362677,0.26184875,0.32892498,-0.0075228307,-0.106154054,-0.44018558,-0.13299583,0.1851976,0.42855284,-0.142032,-0.311205,-0.13125363,-0.06231138,0.14598128,0.26038322,-0.051007524,-0.46425366,-0.099257484,-0.04722254,-0.19540161,0.34629184,0.5592688,-0.3090838,-0.3086341,0.48277408,0.6708342,0.101994455,-0.29922995,-0.0688176,-0.058169663,-0.5850347,-0.1259192,0.2551266,-0.08695202,0.5490763,-0.11505354,0.13471547,0.7353192,-0.4236738,-0.00051481277,0.13517922,0.18270804,-0.028941154,-0.26727647,-0.0835262,0.1322267,-0.5513489,0.06644823,-0.11739834,0.7162698,0.09687105,-0.71492034,0.28124347,-0.3776104,0.01309745,-0.21902874,0.52131975,0.58857054,0.42784256,0.13774353,0.7618528,-0.4433296,0.08670027,-0.20887548,-0.40787426,0.20794162,-0.13732621,-0.13673186,-0.44402257,0.058078013,0.10363793,-0.10347264,0.088661134,0.3143279,-0.59047,-0.13823223,0.18693931,0.59008455,-0.42417276,-0.11252594,0.57168883,0.8637125,0.849306,0.094247356,1.217708,0.2521461,-0.17037699,0.12320533,-0.37881008,-0.55022955,0.26070058,0.22309485,-0.00558953,-0.017127827,0.12471664,0.045555193,0.26187375,-0.4416361,-0.040497214,-0.21549708,0.39182305,0.14134416,0.06957278,-0.22793797,-0.2673188,-0.022742953,0.15862812,0.1643674,0.12539709,-0.38796198,0.19291109,0.102408126,1.699971,-0.05668494,0.08060767,0.03450686,0.31369773,0.16078933,-0.13584381,-0.07675749,0.42518198,0.3224901,0.103522554,-0.49287412,0.036874406,-0.22109818,-0.46796525,-0.13184072,-0.40804625,-0.09143464,-0.08758661,-0.41754878,-0.14236,0.04065818,-0.2428539,0.7108415,-2.7156549,-0.09887997,-0.02405239,0.28111824,-0.1937217,-0.3947448,-0.255688,-0.47592598,0.36376897,0.3236484,0.44663423,-0.64942825,0.20619127,0.34152055,-0.4342695,-0.1675535,-0.6790519,0.033838682,-0.07549137,0.2790833,0.15239799,0.026588462,-0.036784217,-0.012887694,0.48374352,-0.09240992,0.14907908,0.3696419,0.26511958,0.12423024,0.44960722,0.052053265,0.6104571,-0.24533755,-0.2662994,0.36855498,-0.3698551,0.3007195,-0.099745505,0.25472987,0.35895854,-0.27282476,-0.9464022,-0.7555714,-0.2253762,1.2197027,-0.22632894,-0.40480965,0.20615974,-0.19257557,-0.33908913,-0.013428215,0.3742708,-0.04232241,-0.04525057,-0.762587,0.08256009,-0.07813238,0.20838293,-0.13922319,0.017084055,-0.31849152,0.45358646,-0.12541224,0.36462694,0.31005785,0.2085307,-0.27587956,-0.4358378,-0.027684998,0.8325659,0.33008456,0.09797772,-0.09523983,-0.320354,-0.31337726,-0.14384997,0.18995953,0.45304766,0.6389687,0.051077705,0.035365455,0.15593961,-0.078622326,0.0095595885,-0.11790143,-0.29357067,0.004255846,-0.10194945,0.53506035,0.5000595,0.0108247325,0.518083,-0.12517434,0.27113837,-0.09146252,-0.55522585,0.33046386,0.7087182,-0.292354,-0.3240904,0.4341624,0.41032818,-0.25157338,0.392985,-0.63914007,-0.25728703,0.38391134,-0.1521574,-0.45473507,0.0557134,-0.29545307,0.1319246,-0.79272485,0.29075217,-0.10996759,-0.63021857,-0.45342878,-0.1619526,-2.8628776,0.17436832,-0.101447105,-0.13229914,0.07172798,-0.16597262,0.17515042,-0.504664,-0.39880994,0.16158119,0.16752072,0.62530977,0.04593051,0.042384326,-0.29723865,-0.089246914,-0.27751446,0.18322422,-0.050189987,0.36170948,-0.1258882,-0.44806546,0.059949547,-0.024299264,-0.36114603,0.11667194,-0.5007416,-0.41991717,-0.18013036,-0.3617961,-0.37240806,0.75003976,-0.44618294,-0.029717833,-0.027710598,0.07217729,-0.0066823885,0.24219228,0.20071715,0.08214532,0.17683649,0.06850879,-0.10546659,-0.38276798,0.43400037,0.0006510429,0.07165596,0.42417052,-0.033424474,0.17103766,0.45774424,0.45416713,-0.16644944,0.8515452,0.5614844,-0.06504411,0.13354649,-0.20971106,-0.13504404,-0.3455832,-0.38669527,-0.2015851,-0.5435518,-0.2783745,-0.0801782,-0.259179,-0.77251554,0.60302013,0.17407875,0.034132928,-0.07392773,0.21163589,0.5900458,-0.2240275,-0.033730052,-0.09665778,-0.22620311,-0.6368456,-0.49538177,-0.59837353,-0.5285759,0.10766359,1.1162953,-0.29131654,-0.050584562,-0.05260671,-0.14782329,-0.020633817,0.18468887,-0.13064331,0.1613577,0.35469353,-0.28860462,-0.5352528,0.51465374,-0.17910118,-0.12387834,-0.680219,0.2809155,0.57773364,-0.6051731,0.42089754,0.46921152,0.09323598,-0.05386591,-0.55431014,-0.20266494,-0.10609004,-0.26324734,0.34096748,0.13011722,-0.74410605,0.3940669,0.2517486,-0.27774408,-0.72464275,0.50087804,-0.04479066,-0.264949,0.112193905,0.32253888,0.22400604,-0.12156149,-0.31547412,0.1548497,-0.395971,0.35694966,0.31911346,0.115325645,0.32522628,-0.20680322,-0.18127473,-0.70528895,-0.064091906,-0.41988096,-0.2199691,0.21203627,-0.06930726,0.06798549,0.33428988,0.17484699,0.41428596,-0.42309976,0.053027887,-0.20625427,-0.23806038,0.34884423,0.4108212,0.4591444,-0.27643144,0.45991135,0.048949912,-0.10471061,-0.0505334,0.100888446,0.52988946,-0.0034093335,0.36537766,-0.04559031,-0.20054045,0.2699828,0.7305693,0.19696397,0.37584123,-0.15229262,-0.4055187,0.10582675,0.10807303,0.22367035,0.11469068,-0.4746356,-0.036144048,-0.21960339,0.2831795,0.36106598,0.190564,0.47582334,0.0057565663,-0.2436003,0.069872595,0.16509342,0.08358726,-1.0665827,0.37192875,0.17823553,0.83611465,0.47313017,-0.020185478,0.053075712,0.5275387,-0.15869159,0.27028286,0.30287227,-0.11820082,-0.47756624,0.39354357,-0.88314044,0.54852885,-0.07675718,-0.044993322,0.096969485,0.008644283,0.36024737,0.88538635,-0.064900294,0.11370639,0.05709907,-0.3401821,0.14348412,-0.39377487,0.19189711,-0.67390484,-0.33369014,0.6243516,0.44718677,0.44621146,0.029470388,-0.07778694,0.115016825,-0.13696626,0.14824441,-0.09679679,0.24167466,-0.010032775,-0.54331774,-0.250777,0.49079955,-0.10955783,0.23358184,-0.002526082,-0.093690746,0.23113628,-0.17944069,-0.029652368,-0.072598234,-0.47022584,-0.09613967,-0.17114356,-0.3504057,0.4783932,-0.35473448,0.30718374,0.18815534,0.051244847,-0.32844186,0.42089775,0.25405174,0.87487787,-0.06899245,-0.15410739,-0.4416384,0.1803598,0.34108314,-0.2028679,-0.0791741,-0.2576738,0.034672342,-0.70365703,0.2431603,-0.102705464,-0.36225772,0.05140471,-0.20349222,0.05994023,0.5628666,-0.12725382,-0.2051478,0.010985434,-0.15426132,-0.35208306,-0.005683437,-0.22789776,0.15837975,0.24491914,-0.04655651,-0.07700814,-0.22184685,-0.14039317,0.21822105,0.0872401,0.3455211,0.3031611,0.049864784,-0.26573434,-0.11755346,0.17229931,0.4476749,-0.11038241,-0.10193394,-0.22435123,-0.36777258,-0.2898278,0.13691115,-0.07150657,0.35635996,0.162456,-0.15433846,0.70092356,-0.14991137,1.1250427,0.17191902,-0.28351736,0.09441628,0.4431069,0.1763938,0.09278321,-0.32543504,0.8677921,0.6319175,-0.07934384,-0.060552835,-0.23899686,-0.07827871,0.24761431,-0.08185103,0.0042747743,-0.019547839,-0.6567844,-0.32009643,0.30312026,0.18379328,0.17769179,-0.08342156,-0.06843815,0.16599862,-0.021412326,0.43506184,-0.48330826,-0.045116853,0.24142411,0.42701325,0.092695065,0.27268076,-0.37724423,0.43593696,-0.4668095,0.0061896928,-0.11295384,0.21759014,-0.24841453,-0.21763217,0.1834676,0.059749074,0.41862047,-0.15759307,-0.4519609,-0.25033644,0.48772043,0.14073321,0.16808456,0.59325135,-0.24012433,-0.026423458,-0.06715081,0.39498836,0.9882684,-0.43240416,0.059857283,0.5651096,-0.22052181,-0.5010334,0.29002148,-0.36198342,0.24312906,-0.043943122,-0.27163365,-0.2776914,0.4316241,0.23004486,-0.03413716,0.084698424,-0.52242863,0.04118243,0.19017324,-0.21748708,-0.19255058,-0.29827064,0.2957778,0.6261865,-0.4721165,-0.26492253,0.17114061,0.35718948,-0.2604408,-0.4068352,0.020535335,-0.33963507,0.28302935,0.021088196,-0.42050695,-0.14898631,0.011324266,-0.3552463,3.0055642e-05,0.09082551,-0.2479829,0.10175425,-0.21783671,0.170142,0.73540086,-0.05738136,0.06789946,-0.57249296,-0.2877454,-0.88310266,-0.20047945,0.16352484,0.27988297,-0.11713968,-0.44764525,0.011965536,-0.106759384,-0.17577553,-0.085219435,-0.4320894,0.60937554,0.04256682,0.20192254,-0.16539678,-0.90647185,0.040320218,0.07528445,-0.1532763,-0.51752913,0.4774679,-0.22639747,0.7678292,0.15023026,-0.06937169,0.27606025,-0.48296803,0.09497601,-0.37375152,-0.28464562,-0.7787373,-0.024573762 +566,0.35435542,-0.1462607,-0.45163387,-0.24254361,-0.5028902,0.1704154,-0.23484713,0.05119779,0.31342506,-0.34420618,0.13936171,-0.15484504,-0.24674334,0.2515337,-0.23536427,-0.70520216,0.07085291,-0.124779984,-0.5068377,0.4510277,-0.48763162,0.43153873,0.068298,0.25690812,-0.030120404,0.33287093,0.33048448,0.14773805,-0.0647446,-0.062088497,-0.06850605,0.34470317,-0.72574335,0.34789357,-0.0064169886,-0.30244386,-0.09493359,-0.22951081,-0.0688245,-0.7100759,0.31349525,-0.7881526,0.5208934,-0.16395801,-0.49100736,0.0632316,0.15120967,0.123247415,-0.271555,0.13205777,0.22820117,-0.29315045,-0.07179305,-0.11904163,-0.30414996,-0.761979,-0.5985184,0.012200324,-0.82044214,-0.31732187,-0.39114323,0.38246298,-0.2661902,-0.10432815,-0.12505351,0.4280772,-0.4124463,-0.28480536,0.17450692,-0.30905762,0.15333249,-0.6395538,-0.28354925,-0.06489451,-0.0021592935,0.14583606,-0.20785104,0.30370578,0.38363138,0.47833213,0.25191584,-0.32532686,-0.19085118,-0.081466086,0.020116825,0.39058086,-0.14649002,-0.07639435,-0.30768272,-0.14798781,0.4455324,0.2564912,0.3074102,-0.34008962,-0.01830007,0.17294559,-0.29387322,0.39053348,0.43531215,-0.50862145,-0.00021384557,0.5031102,0.3576829,-0.10315771,-0.2873769,0.3510642,-0.1336216,-0.51838356,-0.049006727,0.21390297,0.10577204,0.5110592,-0.2612847,0.14922021,0.9501125,-0.13907222,0.042871952,0.030096408,-0.08819164,0.001647532,-0.22955424,0.03947406,0.04964378,-0.41264036,0.009911886,-0.23248713,0.70570433,-0.124049865,-0.8227518,0.26532713,-0.25151762,0.09224413,-0.11445982,0.7770021,0.8657124,0.48407573,0.14172636,1.0142857,-0.4507136,0.011004941,-0.02147088,-0.27193478,0.18936706,-0.31189153,0.15562251,-0.53637683,0.15915601,0.033807453,-0.08704905,-0.087087184,0.52377164,-0.44807854,-0.06660952,0.09560533,0.69385445,-0.36985224,-0.081272475,0.8869465,1.0467454,0.92434627,0.18070559,0.98814785,0.33985174,-0.081563,-0.029045796,-0.23565468,-0.36061546,0.13024937,0.41872284,0.6799294,0.32299826,0.00398312,0.10682622,0.52270484,-0.15324678,-0.097182594,-0.07527276,0.49267244,0.105380274,-0.19805814,-0.3721572,-0.13526647,0.34896797,0.081834085,-0.011946333,0.20965144,-0.12497715,0.58032995,0.046444193,1.0396222,-0.08563482,0.028965004,-0.029633407,0.41775644,0.22547366,-0.20861006,0.18359917,0.30960616,0.14848259,-0.020685066,-0.31482193,-0.043042026,-0.17384084,-0.57952225,-0.21748003,-0.43135512,-0.14506228,-0.23065631,-0.5145521,-0.30803725,0.06980114,-0.33253917,0.34835613,-2.6163538,-0.14616285,-0.31917545,0.2551576,-0.16023134,-0.30073547,-0.0547181,-0.32324252,0.265212,0.53221005,0.19879174,-0.5358828,0.42254302,0.42249578,-0.3536251,-0.11627956,-0.6249531,0.036737658,-0.19057992,0.5823335,0.020898392,-0.26643416,-0.28505573,0.2545582,0.7784961,0.082823925,0.13836078,0.1999341,0.42158312,-0.17884605,0.43068016,0.3062678,0.5310557,-0.07610122,-0.19932428,0.25990337,-0.54770285,0.2036417,0.15903144,0.23740667,0.5434534,-0.25886124,-0.80597293,-0.6379057,-0.24025042,1.2399695,-0.33397147,-0.60526574,0.41199186,0.0033650736,-0.22597663,0.15489633,0.45520878,-0.0559214,0.26189873,-0.6433791,0.0625219,-0.101327136,0.14884223,-0.16093054,0.03771458,-0.35075542,0.8266652,-0.17189468,0.5283663,0.21552172,0.25524816,-0.3973266,-0.39117908,-0.03570768,0.9960617,0.4923585,-0.038607527,0.010000661,-0.36430404,-0.06742151,-0.377831,0.24092102,0.5311903,0.63210195,0.10349788,0.117117316,0.43094525,-0.34976822,0.053193223,-0.09550622,-0.23179549,-0.06440564,0.24772255,0.49318582,0.46384463,0.0057844897,0.4491561,-0.07744698,0.28561988,-0.13671932,-0.61308473,0.34093413,0.7187309,-0.12554666,-0.33441156,0.5326583,0.42877325,-0.39164612,0.38297474,-0.53544223,-0.2805161,0.59465104,-0.024169782,-0.50326955,-0.05231948,-0.54621035,0.1501054,-0.9065393,0.3576623,0.008505607,-0.7318884,-0.60827154,-0.26447934,-3.6557648,0.0042307614,-0.203335,-0.061694372,-0.20265464,-0.33637774,0.42783433,-0.5717858,-0.53427875,-0.024519157,0.015307239,0.44785497,-0.008672926,0.055893794,-0.29866266,-0.16914211,-0.18138024,0.42065084,-0.09288413,0.28311664,-0.035729457,-0.23835881,0.23443724,-0.39188388,-0.60479325,-0.13298078,-0.7087609,-0.6987389,-0.22645052,-0.4280306,-0.26400116,0.8114517,-0.2810863,-0.06429257,-0.3663797,0.03685314,-0.10443991,0.18794788,0.26635718,0.25617695,0.13888513,-0.04041406,-0.16001266,-0.4111746,0.123888575,-0.11158633,0.33239728,0.46791974,-0.2537554,0.27769554,0.6221929,0.57060444,-0.1114785,0.72368395,0.043246053,-0.24006936,0.31810838,-0.17614494,-0.2549251,-0.9378487,-0.5304355,-0.044132028,-0.4133364,-0.26884282,-0.019708999,-0.3252761,-0.7243467,0.53925127,0.12742145,0.2604564,-0.2836989,0.2984767,0.35437763,-0.08291393,-0.085580096,-0.07549377,-0.2988538,-0.56168216,-0.4125387,-0.7697381,-0.7058314,0.13358083,1.1993835,-0.11297125,-0.2542866,0.14168753,-0.22849773,0.0609811,0.09030754,0.20803656,-0.07055274,0.20222838,-0.020573227,-0.80884856,0.4285675,-0.1869952,0.15112057,-0.5324621,0.10937419,0.5174893,-0.5726724,0.52521724,0.39091483,0.37677708,-0.010665706,-0.6452283,-0.2779685,0.08255081,-0.2542702,0.7046677,0.22154528,-0.6561582,0.548758,0.24628364,-0.15655854,-0.4721011,0.38050044,-0.16699073,0.010790697,0.08768614,0.4488898,0.09893182,-0.16375871,-0.2602853,0.23077658,-0.6874902,0.29297146,0.40607494,0.07155673,0.58824176,-0.04075802,-0.428844,-0.4827741,-0.22451633,-0.4936901,-0.22202441,-0.12755989,-0.21936753,0.011237814,0.26822436,-0.10378289,0.5062012,-0.22861893,0.15184374,-0.14023033,-0.22248815,0.4508561,0.6476728,0.38706318,-0.4536084,0.6171927,0.2045383,0.069433816,-0.33479887,0.05933113,0.47794956,0.3029272,0.3728652,-0.04437103,-0.012385893,0.14469393,0.6993711,0.1718801,0.50607324,0.092135735,-0.30546817,0.280742,0.029445698,0.21709763,-0.075369,-0.40346375,0.04320952,-0.07122061,0.15175001,0.32805336,0.12375314,0.4529499,0.04455786,-0.049058355,0.19897255,0.07923562,-0.08167546,-1.0960622,0.23632114,0.42243257,0.6328765,0.4536108,0.011854249,-0.095229074,0.6458395,-0.3213357,-0.012727507,0.2951911,0.04279786,-0.23525839,0.5671622,-0.67018324,0.3141064,-0.21484843,0.008664075,-0.01882404,0.21404448,0.34488487,0.82464314,-0.1136591,0.025876194,-0.069897525,-0.39960945,0.23627977,-0.22518164,0.15348862,-0.27662787,-0.4106323,0.4071914,0.3115521,0.37684673,-0.23540117,-0.12783183,0.20375344,-0.17926897,0.17841448,-0.1733902,-0.16131729,-0.14685781,-0.3721415,-0.38497165,0.53441197,0.033020787,0.109948955,0.10115156,-0.38432404,0.2936734,0.012923128,-0.17166023,0.025710799,-0.38292426,0.14747518,-0.27133605,-0.61219275,0.37577575,-0.40039566,0.1164531,0.22592543,-0.018486502,-0.29978856,-0.08643694,0.22464786,0.69500506,0.021354247,-0.25798884,-0.25219283,-0.18285333,0.21038131,-0.41062313,0.015493075,-0.218188,0.3033206,-0.5664767,0.39699242,-0.39528382,-0.44800264,-0.0072102766,-0.26108572,-0.029799158,0.24839993,-0.36296698,-0.1253315,0.2451051,0.2245222,-0.18828864,-0.087755635,-0.38087958,0.38935086,-0.21620117,0.011342022,0.074053034,-0.14061484,0.031565916,0.47923133,0.023518134,0.09928955,0.20943291,-0.21128944,-0.50517017,0.0032942852,-0.07888683,0.42998883,0.044564597,-0.01494506,-0.12707566,-0.32154274,-0.4008213,0.22281784,-0.08164136,0.24586128,0.14698394,-0.5783966,0.9462674,0.09828379,1.2838274,-0.017935833,-0.49567014,0.0346806,0.56045943,0.096081115,0.26283208,-0.13359462,0.9379114,0.6808201,-0.27916196,-0.020026127,-0.64912224,-0.17179747,0.34065145,-0.34974608,-0.22306643,-0.1817498,-0.7797735,-0.23464803,0.11458915,0.22234073,0.021148456,-0.056920603,0.0055683134,0.09153171,0.1576931,0.39803684,-0.56940514,0.058823235,0.33088204,0.16635567,-0.038078804,0.11037924,-0.397844,0.40941617,-0.7764844,0.30946797,-0.3024572,0.16291536,-0.08399442,-0.21881549,0.30127624,-0.024011532,0.3378027,-0.22232369,-0.4434493,-0.2130064,0.6582862,0.20058504,0.30660802,0.7161846,-0.3478241,0.014593633,0.058280326,0.5474024,1.504583,0.08388853,0.09936838,0.13709322,-0.36106578,-0.6655074,0.2124055,-0.3733775,0.034640465,-0.098616436,-0.54820645,-0.25920194,0.3337444,0.29842046,-0.045849785,0.13907671,-0.37084305,-0.22060725,0.32392475,-0.37267387,-0.13422565,-0.22944044,0.2886752,0.56608796,-0.39307663,-0.2261684,-0.09877264,0.4890838,-0.3637196,-0.6646551,0.066764735,-0.106784925,0.5630525,0.053142134,-0.49939862,-0.07075324,0.23094505,-0.35744056,0.21609946,0.4291816,-0.28641197,0.1549553,-0.33589298,0.081567176,0.83239996,0.2024588,0.26156673,-0.7969281,-0.55648816,-0.9588612,-0.41025537,0.044505335,0.22099079,-0.13874534,-0.58663946,-0.17743091,-0.29949224,0.14043556,0.25126943,-0.6423988,0.42381725,0.030921,0.5478589,-0.12010103,-0.8214352,0.063290246,0.23797123,0.026705258,-0.363597,0.5920423,-0.19166085,0.7702138,0.1942907,0.10935552,-0.06761069,-0.5962745,0.50509155,-0.26001012,-0.14831024,-0.63575476,0.010188254 +567,0.3641321,-0.3285671,-0.35682657,-0.21263316,-0.5039266,0.05022504,-0.21996902,0.18514076,0.26444852,-0.36629567,-0.13569121,-0.09672479,-0.008604686,0.21889101,-0.12611692,-0.5200489,-0.04627991,0.1461642,-0.7488537,0.7993514,-0.3393734,0.37211215,0.11768467,0.2611485,0.14068036,0.41942436,0.37991142,-0.10097677,-0.16394208,-0.21952356,-0.27672774,0.0012908935,-0.6496217,0.20861267,-0.3169335,-0.2122912,0.07512303,-0.47120172,-0.28861713,-0.8804579,0.21166022,-1.0203367,0.48197386,-0.1934226,-0.13656689,-0.21963324,0.35533407,0.34371504,-0.322828,0.058267854,0.30499068,-0.34520617,-0.122949675,-0.3445749,-0.02572898,-0.42291513,-0.45129016,-0.22761402,-0.626691,-0.3434494,-0.19386178,0.27435032,-0.30410698,-0.042659897,-0.17313436,0.5237314,-0.37489325,0.11976406,0.24313325,-0.34343496,0.12532593,-0.62180007,-0.04355411,-0.15605496,0.40569314,0.1269729,-0.09002589,0.6041773,0.31160393,0.33645666,0.3107978,-0.4197004,-0.22129837,-0.36225006,0.21389112,0.42544323,0.034250334,-0.3982314,-0.15853831,-0.045161773,0.40464917,0.30201992,0.12425981,-0.30565968,0.0062713763,-0.10413166,-0.15885516,0.7144512,0.5122957,-0.107031696,-0.12537524,0.30673105,0.49659303,0.13953774,-0.44811118,-0.064401165,-0.027559854,-0.48751697,-0.15469994,0.1762635,-0.13208738,0.60697234,-0.19877511,-0.009872913,0.8507101,-0.14994155,0.036003835,-0.004506453,0.090918384,-0.07631996,-0.291083,-0.20668949,0.31135547,-0.60938513,-0.03079561,-0.41854763,0.6501118,0.21346189,-0.6494017,0.3872102,-0.47537115,0.18890275,0.013193854,0.577453,0.62254936,0.47652712,0.30449554,0.9363898,-0.24153806,0.18250212,0.1566568,-0.38840657,-0.03957881,-0.4954738,0.26809624,-0.48336825,0.23397227,-0.16260144,0.14380446,-0.13474597,0.22964549,-0.48244056,-0.21609767,0.22295992,0.9772962,-0.1919055,0.0041131377,0.64507604,1.0511853,1.0466714,-0.038626824,1.2999233,0.17570136,-0.3440141,-0.089428745,-0.16935296,-0.7080832,0.13977721,0.32438743,0.25779477,0.22792374,-0.036752183,0.02129347,0.20566836,-0.61507,0.062568694,0.042220403,0.3746187,0.26505348,-0.03684734,-0.36996228,-0.08680533,-0.10754511,-0.035973463,0.23144293,0.18715003,-0.21846946,0.36841002,0.04363124,1.2290133,-0.014793754,0.041388948,0.08726541,0.6471624,0.29543063,0.08855548,0.1532031,0.48011068,0.26714382,-0.031894207,-0.5222762,0.22694871,-0.53883725,-0.30670747,-0.19927764,-0.4251871,-0.12112724,0.2075066,-0.29730108,-0.36888617,-0.002911369,-0.22615772,0.32663617,-2.6676803,-0.14813347,-0.26315132,0.36988193,-0.29601014,-0.04066263,-0.03505075,-0.6621048,0.2418177,0.19527674,0.52976125,-0.7751942,0.3319262,0.66953063,-0.5854046,-0.18231644,-0.64647686,-0.11365585,-0.05224856,0.69378203,0.08941492,-0.048905145,-0.042408943,0.10947279,0.7128298,0.26133016,0.20471615,0.5783303,0.38802597,0.03166808,0.5696246,0.07106163,0.52944064,-0.28222275,-0.04509231,0.36696878,-0.39727613,0.25862065,-0.18762103,-0.025692936,0.7306542,-0.38045043,-0.5335823,-0.6413263,-0.17223097,0.9341436,-0.35637024,-0.7125582,0.19681492,-0.1074732,-0.045744386,0.04648535,0.5575601,-0.11538657,0.21427733,-0.5537389,0.012985389,-0.11662857,0.23415309,0.07248449,-0.11941208,-0.27558726,0.90596163,0.09632568,0.5719964,0.17239004,0.23731305,-0.28984383,-0.36236274,0.091282286,0.80400026,0.532253,0.053832103,-0.1314494,-0.060227867,-0.1603299,-0.6037113,-0.07855738,0.7606438,0.6574279,-0.19284527,0.19938287,0.46425906,-0.11425508,0.10297977,-0.0802101,-0.3493698,-0.13990904,0.078597315,0.44776458,0.7679093,-0.14643103,0.37535134,-0.12077667,0.26754874,-0.0011869312,-0.6499405,0.6591117,0.7614895,-0.24260622,0.052153196,0.41364032,0.47709498,-0.63690734,0.5333834,-0.68900084,-0.30243582,0.75456804,-0.14237432,-0.59990335,-0.0022268295,-0.23628874,0.20958205,-0.58349407,0.341005,-0.2811488,-0.3756922,-0.38416356,-0.3397959,-1.9740218,0.03674039,-0.20477623,-0.04734815,-0.4396884,-0.020685546,0.11182441,-0.52566606,-0.51191825,0.18888174,0.13240515,0.50352967,-0.115604326,0.272895,-0.34336546,-0.09339151,-0.22667769,0.37346885,-0.04863662,0.31177744,-0.2820482,-0.40082836,0.0029091756,0.006413386,-0.52855927,0.17256495,-0.5658705,-0.3824298,-0.19083725,-0.5747724,-0.3083354,0.7040043,-0.26144922,0.02001127,-0.16400975,0.09503756,-0.19429448,0.053570922,0.19160758,0.31777972,0.15601581,-0.0641595,0.19743271,-0.303302,0.6114956,0.0044459878,0.48656806,0.15508038,0.034557827,0.1500268,0.35429573,0.62498194,-0.20000006,1.0000417,0.2172888,-0.14128007,0.38200328,-0.18481693,-0.38311478,-0.6517994,-0.30580223,0.04467637,-0.37471676,-0.4332328,0.21283515,-0.33226985,-0.8099347,0.54243886,0.09684706,0.46002865,0.05551302,0.12002659,0.3742269,-0.25325832,0.04144834,-0.014346933,-0.09018274,-0.70005155,-0.31235087,-0.7861122,-0.44724306,0.07536242,0.65593916,-0.34037545,-0.27736828,0.011013743,-0.39981797,0.025877276,0.20241846,0.09239651,0.0946454,0.5318432,0.1325818,-0.74803466,0.42044842,0.02710503,-0.020003073,-0.44123694,0.30898598,0.5802061,-0.7776014,0.5783506,0.33160874,-0.038559604,-0.38255522,-0.46196187,-0.31160408,-0.18176833,-0.16323169,0.4674209,0.04368053,-0.7625694,0.41098925,0.0017051081,-0.61776066,-0.6806218,0.33433536,-0.13004467,-0.22074638,-0.09519466,0.38357636,0.172194,-0.2009775,-0.17208077,0.13924882,-0.5781222,0.29805005,0.18725868,-0.06119453,0.47908038,0.034669578,-0.43830553,-0.771079,0.1520669,-0.5614123,-0.29389983,0.3786644,-0.12740763,-0.2676845,0.27597985,0.21984059,0.3381454,-0.1243494,0.21209428,0.044690423,-0.37517598,0.46842286,0.37180784,0.35760215,-0.49435076,0.70479834,0.13314925,-0.20314242,0.13508174,0.07974544,0.27709243,0.16146736,0.5181093,0.040147346,0.02894694,0.2653887,0.72946984,0.28287944,0.51233375,0.15317671,-0.13257648,0.500842,-0.102383375,0.24087909,-0.060525376,-0.6623304,-0.028768318,-0.07094992,0.051225565,0.46735352,0.25855598,0.4986534,0.16856454,-0.059423678,-0.0004626145,0.19051288,-0.23637499,-1.3739879,0.2284677,0.32069397,0.9973787,0.33196065,-0.049310006,-0.17287436,0.8621825,-0.22764848,0.16295208,0.6041407,0.004271587,-0.4403295,0.69718134,-0.49203044,0.43093884,-0.15384261,-0.016192315,0.14942776,0.31786874,0.28858602,0.6303491,-0.32771423,-0.019255666,-0.04481964,-0.3412935,0.050742574,-0.27499375,0.09402681,-0.2731863,-0.49049565,0.47584993,0.40274462,0.33976144,-0.27611035,-0.008416953,0.07019319,-0.18236771,0.33157927,-0.06355398,-0.078546844,0.068328135,-0.3706499,-0.1039175,0.56332743,-0.33152974,0.024584595,-0.1677683,-0.11457889,0.039635357,-0.16983004,-0.031425767,-0.029094284,-0.81819916,0.18888727,0.027628891,-0.608297,0.5614644,-0.10793498,0.017259272,0.17907038,-0.07306447,-0.12158,0.27252772,0.17530109,0.6321194,-0.12959339,-0.27945554,-0.4240147,-0.0094324825,0.13065542,-0.23581006,0.47810397,-0.24746062,0.0055268924,-0.52827483,0.74424005,-0.28806433,-0.34656104,0.068133384,-0.3933448,-0.1415426,0.56365114,-0.0218809,-0.15521407,0.10802335,-0.030878386,-0.26023924,-0.087768316,-0.2672923,0.22262529,0.25226477,0.004317244,-0.26674047,-0.21488495,-0.07943072,0.4231449,-0.16733544,0.28155598,0.0683637,-0.14984967,-0.42000538,0.070972696,0.22804554,0.54492706,0.12941407,0.13875593,-0.14168479,-0.302069,-0.414793,0.31620863,-0.12763375,0.21572362,0.12940264,-0.37185585,0.94383174,0.0021973252,1.3164895,0.020028802,-0.46469143,0.10251974,0.6622167,-0.050942913,0.09733684,-0.39706612,0.9020149,0.51260227,-0.030256204,0.028058134,-0.63954365,0.1721451,0.3558018,-0.2669862,-0.050660912,0.041408118,-0.52038336,-0.42948034,0.18728583,0.1556042,0.031761114,-0.09213452,-0.1371996,0.1786526,0.23627666,0.39874384,-0.66385466,-0.24208961,0.2065316,-0.0010568897,-0.01742882,0.2126641,-0.34200695,0.37667438,-0.68686223,0.19005574,-0.3452926,0.090514965,-0.3473204,-0.3167935,0.10449055,-0.038559176,0.41843495,-0.45838922,-0.5493399,-0.17848697,0.49592808,0.020135792,0.23118702,0.61227334,-0.25584498,0.094325766,0.12445645,0.5194317,1.2596889,-0.35903865,-0.0075487616,0.21676204,-0.6154334,-0.73728526,0.43793997,-0.26675007,-0.030551014,-0.034832932,-0.46771476,-0.5590524,0.13472089,0.035796497,0.0061530173,0.08754317,-0.7119642,-0.29482454,0.2331019,-0.40177876,-0.20604853,-0.28260693,0.3319538,0.6489395,-0.14532205,-0.40472013,0.007869756,0.2993811,-0.29238066,-0.59241366,-0.10279522,-0.2282471,0.3379036,0.09504031,-0.17836891,-0.07436594,0.23019193,-0.5920989,0.19385347,0.18102527,-0.5105027,0.059882306,-0.10584095,0.006713335,0.7910615,-0.108235255,-0.08666917,-0.589751,-0.52667385,-0.80214906,-0.42225644,0.14461002,0.10310993,0.05074548,-0.5001203,-0.17029883,-0.24376345,-0.071851835,-0.017451946,-0.70412236,0.35420173,0.12141626,0.4917303,-0.34697464,-1.017238,-0.0041816873,0.12867244,0.06958206,-0.63441736,0.4692049,-0.090555295,0.85463446,0.1541002,-0.23027416,0.0011676193,-0.42285055,0.115395114,-0.32610196,-0.35037878,-0.51081157,0.19651002 +568,0.45782,-0.2929919,-0.49779695,-0.19136761,-0.106423296,-0.075431466,-0.15989417,0.5724963,0.0738707,-0.46446642,-0.18997972,-0.10718528,0.01740393,0.23892786,-0.22894455,-0.52256453,-0.03730619,0.016564313,-0.51423573,0.5816759,-0.29453757,0.14116885,-0.15193139,0.41737068,0.27420032,0.34946206,0.140243,-0.08216127,0.11068858,-0.03734906,-0.16127883,0.37724304,-0.312792,0.24504617,-0.0017414895,-0.2641241,0.06780032,-0.27047107,-0.4243852,-0.71562743,0.4893548,-0.72438514,0.4678774,0.117482185,-0.22039925,0.38022995,0.10045266,0.28239518,-0.44301033,-0.10730035,0.22398189,0.060480356,0.11493505,-0.31222513,0.06602402,-0.4566832,-0.43992835,-0.10506554,-0.3480953,-0.32521838,-0.19547917,0.1051647,-0.31009784,-0.09616581,0.060092703,0.64048606,-0.44624525,0.012156706,0.17096457,-0.16656828,0.37856916,-0.79758555,-0.22658303,-0.10926597,0.32426664,-0.12410471,-0.13202511,0.22133805,0.08801731,0.19669169,-0.07399336,-0.04162178,-0.27454332,-0.14417106,-0.12771633,0.41273886,-0.10433451,-0.48907217,0.064746246,0.05029981,0.012295216,0.15045339,0.17010887,-0.18392251,-0.1972529,0.015890956,-0.19073476,0.34745884,0.39663422,-0.16660835,-0.17828736,0.34771654,0.5067402,0.18162826,-0.09112529,-0.06335293,-0.039144613,-0.41697842,-0.110524856,-0.1511236,-0.13715222,0.43977553,-0.21625572,0.44702926,0.67059255,0.003675626,-0.0096324105,0.02609523,0.12976156,-0.08051152,-0.3042587,-0.40300354,0.21051297,-0.39236242,0.19479102,-0.02715766,0.65790373,0.13200209,-0.6438472,0.33293822,-0.45910162,0.025519352,-0.08424877,0.39166382,0.59955627,0.37835073,0.28886607,0.6195154,-0.4655793,-0.020532373,-0.015019756,-0.2930446,0.08236976,-0.013316031,-0.12547351,-0.547406,-0.07774234,0.08823829,-0.02653839,0.18624075,0.21894473,-0.538535,-0.027979195,0.19605635,0.84913707,-0.33298174,0.052246753,0.5909721,0.98900676,0.88468575,-0.009648387,0.78578514,0.066342995,-0.26224157,0.2621486,-0.22079442,-0.6892162,0.3070541,0.49759272,0.10325206,0.2252558,0.07190744,-0.03518727,0.34548032,-0.23742826,0.047085006,-0.20423006,0.20864756,0.11629189,-0.14001574,-0.45924562,-0.23204406,-0.09616904,-0.0038371498,0.014600368,0.18341532,-0.10951665,0.3590126,-0.05575989,1.4549222,0.003002538,0.13915864,0.19920865,0.52591765,0.262066,-0.094694614,-0.14701833,0.43455443,0.41845146,0.27910855,-0.6002189,0.26311633,-0.23807819,-0.4806235,-0.15336129,-0.39415646,-0.011709535,0.08328581,-0.48455077,-0.17597204,-0.13260683,-0.19633248,0.21316722,-3.1167738,-0.1455732,-0.03414057,0.28586861,-0.21577582,-0.20138825,-0.030087702,-0.37904942,0.385886,0.46613052,0.53624636,-0.50770366,0.26336333,0.42827803,-0.5184808,-0.06618668,-0.44079894,0.038040757,-0.12388113,0.39329153,-0.10489874,-0.035960343,0.028428884,0.10584294,0.4185084,-0.026734918,0.07818397,0.19111522,0.34160465,0.053619362,0.43557665,-0.091448836,0.37708375,-0.3590786,-0.1410452,0.2210424,-0.2854126,0.115550436,-0.2125519,0.20105784,0.5329818,-0.50856537,-0.85428625,-0.552206,0.08963346,1.1928048,-0.1087383,-0.2319479,0.31397808,-0.4483454,-0.24250294,-0.09567031,0.41043955,-0.24540776,-0.13181137,-0.7444974,0.053522225,-0.0949266,0.13802348,0.092379555,-0.26427215,-0.49459055,0.74541056,0.12158573,0.64490676,0.30879703,0.10470582,-0.37337396,-0.41369918,-0.0047310498,0.56488544,0.39567852,0.05654337,-0.024008252,-0.010167471,-0.25915027,0.08432135,0.24330434,0.47586167,0.6336061,0.018179419,0.20429558,0.20932175,-0.058375716,0.10065884,-0.10184678,-0.20373672,-0.16099586,0.058763806,0.4624973,0.47667524,-0.1417009,0.28397906,-0.0029593003,0.39812925,-0.16012008,-0.4115473,0.5564676,1.0716325,-0.1347384,-0.41253915,0.5168611,0.559363,-0.12931594,0.31096599,-0.50718063,-0.20371725,0.5114155,-0.29781386,-0.42650288,0.1338109,-0.30867213,0.087518744,-0.8656254,0.212051,-0.37343854,-0.5411516,-0.65106,-0.21634649,-3.1814969,0.12481928,-0.4254169,-0.2538486,-0.21641201,-0.19739304,0.15932934,-0.8087155,-0.4969786,0.25713018,0.062964104,0.78260696,0.050552666,-0.024961503,-0.14752041,-0.30507848,-0.15273806,0.09439158,0.06874036,0.22247447,0.119930275,-0.43084833,0.027072264,0.080517575,-0.4078667,0.048801783,-0.44583958,-0.34752405,-0.21345708,-0.6285673,-0.2778156,0.6000661,-0.11197583,0.085865244,-0.12473877,-0.06471275,-0.08661735,0.192364,0.022441698,0.20181645,-0.0040609995,0.021181574,0.04740604,-0.39819214,0.11598703,0.089511245,0.2881436,0.16058734,-0.11456616,0.13971594,0.44206637,0.49375856,-0.12497024,0.691727,0.53378963,-0.061223105,0.2757664,-0.2562993,-0.34811813,-0.5318119,-0.36827442,0.08653663,-0.23359783,-0.46642753,-0.03259047,-0.4823951,-0.68776405,0.59524405,-0.12316816,0.11470549,0.10554267,0.33235466,0.58183295,-0.12870818,-0.0021426608,0.16268624,-0.13461484,-0.57431906,-0.009487687,-0.5443207,-0.4457369,0.03167455,0.879701,-0.37259516,0.03155125,0.026233952,-0.20074752,0.10250039,0.066344135,-0.07370697,0.37421668,0.25897333,-0.13544509,-0.591727,0.576177,-0.2695756,-0.20431897,-0.3922593,0.17414504,0.4375567,-0.67644256,0.42447308,0.23952998,-0.11463317,-0.33887297,-0.3826302,-0.16763169,-0.010626362,-0.16235925,0.38273662,0.20811908,-0.6705109,0.38342035,0.33190987,-0.20767792,-0.7313489,0.48671392,-0.07330174,-0.5147499,-0.027956797,0.2592635,0.13334152,0.055180762,-0.21504082,0.20164457,-0.2644971,0.1549854,0.02901125,-0.11964119,0.3885863,-0.19277154,0.09481887,-0.6434737,-0.051186465,-0.46790436,-0.18049416,0.35238478,0.122093216,0.113656126,0.11663799,-0.09267994,0.39766657,-0.2254431,0.17804617,-0.16610146,-0.2678178,0.2714527,0.36784616,0.34344733,-0.43883032,0.5676235,-0.029334761,0.034759674,-0.08023913,0.15386018,0.37651983,0.06509987,0.483455,-0.11920757,-0.24022664,0.3658217,0.7094659,0.21160272,0.4703361,0.06590039,0.01303977,0.11171362,0.03814211,0.141061,0.0972935,-0.4725249,0.06344233,-0.2420514,0.12774307,0.48872724,0.0671506,0.2405792,-0.082096085,-0.33375803,0.02087196,0.2881184,0.13561973,-0.8955604,0.54919696,0.21234849,0.7355264,0.4178545,0.058071163,-0.15742978,0.79353017,0.03832043,0.12451315,0.25144365,0.012803669,-0.5376767,0.55533457,-0.6791322,0.53314126,0.04824491,-0.1933472,-0.10183621,-0.061218612,0.3944925,0.6335282,-0.17390516,0.04390222,0.12444584,-0.34237188,0.3159429,-0.42303556,-0.00021283902,-0.4424299,-0.25932777,0.41872352,0.5546544,0.22735573,-0.044823818,-0.06518758,0.04678219,-0.06264968,0.17784408,0.025384422,0.06131712,-0.03401138,-0.6738656,-0.2526296,0.35783356,0.19326305,0.29545486,-0.07641484,-0.113202766,0.32019046,-0.041985948,-0.0037852,-0.051265035,-0.5748966,0.20333044,-0.14020668,-0.35213518,0.56068814,-0.14457823,0.3630236,0.20320176,0.090348,-0.119502746,0.26709288,-0.08365459,0.7090674,-0.099737115,-0.09163766,-0.4006974,0.19983704,0.08373484,-0.17211781,-0.02340485,-0.47440678,-0.0026073272,-0.5378859,0.44868726,0.0924365,-0.16697748,-0.0041736807,-0.21556006,0.05771682,0.559801,-0.05129274,-0.051662996,-0.23321694,-0.2029267,-0.21442273,-0.34303203,-0.19735578,0.30268925,0.13729778,0.3540482,-0.20732005,-0.063843735,-0.0857227,0.58483195,0.11321778,0.48608214,0.1785936,0.05344379,-0.11795396,-0.23738204,0.1522923,0.42789188,0.019572694,-0.12698159,-0.22163679,-0.58729434,-0.3068397,-0.027745353,-0.062266205,0.4680074,0.15280363,-0.081380166,0.663565,-0.11534107,0.9862051,-0.022198327,-0.35731122,0.07355007,0.5240288,-0.0764677,-0.14894739,-0.06704518,0.9111525,0.5760931,-0.055458207,-0.11645913,-0.2144716,-0.05184821,0.16260375,-0.25479373,-0.11585469,-0.11184227,-0.4435179,-0.3199155,0.14004669,0.23133649,0.19330564,-0.09204575,-0.018824257,0.1091255,-0.053509746,0.17322849,-0.3472956,-0.17497307,0.35166058,0.059127733,-0.02088487,-0.0025962775,-0.50642693,0.54212034,-0.4853953,0.1688275,-0.29963094,0.21483533,-0.2699798,-0.29900593,0.19370945,-0.011488144,0.3306207,-0.3710418,-0.38586813,-0.22657882,0.40857804,0.27997488,0.095605,0.50713736,-0.28058985,0.030795995,0.057707712,0.5558361,0.6499299,-0.21864568,-0.093547136,0.20455208,-0.43526506,-0.6245914,0.2345692,-0.20749713,0.15690793,-0.01665804,-0.07343665,-0.488972,0.2430483,0.32690188,0.044518325,-0.09465778,-0.5991271,-0.2665962,0.23682928,-0.36284435,-0.15381558,-0.36500898,0.120060004,0.51546776,-0.33170465,-0.29499093,-0.019942282,0.1361939,-0.0770558,-0.52071327,-0.10040967,-0.37512133,0.41809064,0.13996531,-0.1770905,-0.20611653,0.042079903,-0.3636133,0.36819443,0.012202758,-0.3647352,0.008608231,-0.35330504,-0.11998881,0.84460247,-0.2418762,0.061283514,-0.45089835,-0.32590806,-0.78619605,-0.29002926,0.7402909,0.02187988,0.17166114,-0.7018022,0.17432836,-0.11967835,0.01116798,-0.22846673,-0.13319804,0.42313734,0.04127141,0.39924514,-0.07767054,-0.8013356,0.20832671,0.03271289,-0.26261842,-0.5498199,0.4126062,-0.016868714,0.6599379,0.03867433,0.12979466,0.27881548,-0.3181504,-0.112140805,-0.261529,-0.25975984,-0.5361119,-0.02751551 +569,0.45672718,-0.04364032,-0.5025879,-0.16011408,-0.32982144,0.32888645,-0.1123761,0.28984,0.12620597,-0.20689033,-0.16687885,-0.14624165,-0.025112377,0.26035628,-0.16510245,-0.76520723,-0.083382174,0.12177559,-0.65987456,0.31447646,-0.51155955,0.35421306,-0.079267785,0.41231936,0.021696739,0.3658381,0.06372871,-0.10523259,-0.1815735,0.096555874,-0.036781423,0.1696392,-0.5883019,0.14828703,-0.09387908,-0.18428043,-0.084717765,-0.430665,-0.3471198,-0.5761569,0.39007336,-0.62667,0.5254008,-0.15504818,-0.38252494,0.14268818,-0.06904666,0.1857928,-0.3073498,0.09012724,0.18705438,-0.09739722,0.009721197,-0.11566606,-0.22061586,-0.39691043,-0.502585,0.06700802,-0.5082178,-0.114132926,-0.18051888,0.1543434,-0.2921369,-0.030495722,-0.22423226,0.39440286,-0.34483832,0.15881035,0.23499978,-0.16708921,-0.0045097694,-0.44660646,0.00889433,-0.08012851,0.27856797,0.022765273,-0.225185,0.098064646,0.21794237,0.52411723,0.012797156,-0.19419402,-0.21415053,0.01347346,0.06661831,0.38973093,-0.10026617,-0.22649693,-0.23885292,-0.017006818,0.11231425,0.16693383,0.017071597,-0.48112884,-0.07910979,0.0682732,-0.20078678,0.20338002,0.41011512,-0.27282634,-0.30058402,0.444427,0.4298218,0.17595886,-0.0020121727,0.036581878,-0.04807176,-0.4433576,-0.3358043,0.10822934,-0.033195537,0.5277779,-0.109321706,0.29410353,0.6755418,-0.052214783,0.10433002,-0.09388834,-0.075447135,0.11458227,-0.20931813,-0.034711093,-0.030273017,-0.42399383,0.0069576157,-0.159374,0.67267525,0.16183269,-0.8497707,0.41877887,-0.54876554,0.098745555,-0.046391718,0.516201,0.84629524,0.39803764,0.028117545,0.67151576,-0.43470728,0.029036833,-0.09924052,-0.45033735,0.1897567,-0.019650593,0.03417453,-0.4877841,0.008190285,0.10675241,-0.08522901,-0.062127754,0.24821246,-0.45121062,-0.0043870807,-0.08102854,0.6466404,-0.4008168,-0.11807402,0.75354224,0.92423064,0.799059,0.11858949,1.4505732,0.39967483,-0.12079908,0.18042357,-0.40188918,-0.58542156,0.20389584,0.26244128,-0.05000116,0.42408037,0.07836704,0.007666204,0.4648401,-0.15391436,0.09984302,-0.052433677,0.23889537,-0.013902202,-0.019348767,-0.2967134,-0.38254964,0.15159944,0.07179157,0.10895759,0.26714385,-0.19159906,0.24719433,0.15055694,1.5851836,0.095961854,0.15351133,0.00095736794,0.31228325,0.20056531,-0.2098841,-0.15437758,0.35951114,0.31473756,-0.09467474,-0.5835365,-0.014592588,-0.238508,-0.44758406,-0.2045149,-0.2927512,-0.185632,-0.1537632,-0.5188752,-0.1947619,-0.0445743,-0.25416896,0.56578267,-2.6217852,-0.1647683,-0.04429737,0.3967031,-0.32026684,-0.44688126,-0.27740508,-0.4260566,0.23006408,0.3557335,0.26034877,-0.62124896,0.46650106,0.25426114,-0.38696328,-0.22802989,-0.57736695,0.06735411,0.15151672,0.29868537,-0.18992296,-0.14379211,-0.23606932,0.1972048,0.43087503,-0.08321451,-0.005584771,0.23885849,0.49601066,0.13383321,0.30310798,0.17319784,0.49438107,-0.07716659,-0.0422713,0.374909,-0.34008506,0.38540402,-0.0131093655,0.13022164,0.20135273,-0.5332228,-0.56955326,-0.598546,-0.40986204,1.1557555,-0.3225443,-0.16951025,0.16233918,-0.20898229,-0.30212566,0.038188346,0.37384507,-0.07930436,-0.15980308,-0.7276956,0.042078808,-0.03834394,0.26026127,-0.11278789,0.21713662,-0.41086483,0.6367868,-0.20210889,0.48272127,0.32498676,0.20016253,0.033909723,-0.452565,0.08396437,0.7721334,0.39947557,0.16712274,-0.09341252,-0.094809026,-0.1740295,-0.079077095,0.06148753,0.56562454,0.66938967,0.13367108,0.06810235,0.24557987,-0.21473853,0.035134062,-0.12789229,-0.26598835,-0.052875817,-0.0020499872,0.5764368,0.5706196,-0.30514863,0.33396032,-0.19564013,0.2199009,-0.24654137,-0.52391064,0.52932787,0.7213555,-0.19631468,-0.101998806,0.42934513,0.37225455,-0.29473716,0.33283758,-0.4425403,-0.16717081,0.6686091,-0.18141907,-0.42860037,0.17016885,-0.22460388,0.017235031,-0.88344806,0.37516925,-0.0038099512,-0.5363281,-0.42586324,-0.1208397,-3.3595364,0.11709617,-0.07470898,-0.116866976,-0.08313277,-0.14573923,0.24398313,-0.5226871,-0.57271457,-0.017611768,-0.059933312,0.46264216,-0.022202257,0.17513406,-0.22101763,-0.19494368,-0.29119056,0.23855007,0.19985689,0.31752223,-0.03965715,-0.24666983,-0.03326606,-0.31991258,-0.37182835,0.12996075,-0.48958617,-0.5574439,-0.07757365,-0.4428553,-0.15438977,0.7094971,-0.36763278,-0.058817834,-0.24566415,-0.035099044,-0.2129445,0.36349717,0.18492585,0.10232033,0.19707859,0.009221256,-0.0731758,-0.38747776,0.29401252,0.13151932,0.27281684,0.50388396,-0.01923503,0.23269622,0.45505884,0.6084975,0.012184069,0.64235497,0.18918438,-0.05287914,0.34824502,-0.291984,-0.17482054,-0.49464872,-0.26386613,-0.17268032,-0.3782936,-0.43954206,-0.24921627,-0.45109016,-0.7683133,0.20838654,0.013125397,0.09191753,-0.04698278,0.23680514,0.47743514,-0.09855213,0.09407033,-0.07235556,-0.18022229,-0.49617037,-0.4721551,-0.5207487,-0.48333073,0.2930755,1.1520513,-0.003285244,-0.054552455,-0.07928035,-0.31012022,0.025036853,-0.004242271,0.1023413,0.1600026,0.3294961,-0.18991905,-0.670434,0.37750483,-0.11020163,-0.26058656,-0.608015,0.07070532,0.65300286,-0.57492477,0.5840586,0.24124244,0.17362686,0.2846805,-0.49031478,-0.1456943,0.105755,-0.23028359,0.497908,0.3007398,-0.5102645,0.42589384,0.18891492,0.0013576783,-0.7118728,0.4936013,0.00031312555,-0.19870779,0.025221135,0.3341896,0.027341716,-0.16415754,-0.05845186,0.19682156,-0.48372754,0.276725,0.35250998,0.056672588,0.42708826,-0.0012441985,-0.16698112,-0.585221,-0.16413507,-0.5029468,-0.34719616,0.111016974,0.09646699,0.2796457,0.058765113,0.13286793,0.49078256,-0.41298702,0.10064784,-0.07335534,-0.16797377,0.24341689,0.4296123,0.26497185,-0.46288747,0.4815396,-0.013697688,0.24957798,-0.007202722,0.13909659,0.42499518,0.1898542,0.26410592,-0.0123760365,-0.14675693,0.08741614,0.61837494,0.1889016,0.3601439,0.110441454,-0.32182124,0.30173138,0.079329535,0.08446252,-0.043902144,-0.21920332,-0.09182887,0.077790335,0.22888471,0.38974068,0.12110992,0.21669886,-0.20576674,-0.213416,0.1995728,0.15118368,-0.11206256,-1.0292234,0.23546809,0.14708176,0.7095043,0.5265782,-0.0316834,0.001514215,0.32973468,-0.36049727,0.2239753,0.39672622,0.005122995,-0.567107,0.4450817,-0.4650726,0.4719776,-0.22889727,-0.13544363,0.1256591,0.07535719,0.2515077,0.9003794,-0.001959037,0.09576678,0.00081380457,-0.22445554,0.00094683375,-0.30009675,0.029911503,-0.6054412,-0.18375055,0.58153653,0.44414166,0.26268914,-0.46973497,-0.07112785,-0.028691888,-0.18290219,0.117164455,-0.00043263845,0.037371743,0.005974807,-0.6121346,-0.5268679,0.5333961,-0.20725018,-0.029107869,0.08258507,-0.3775629,0.21322678,-0.22887543,-0.05932156,0.010266904,-0.6206195,-0.03270732,-0.33685833,-0.47626933,0.32110777,-0.21064848,0.11775773,0.184441,0.11175808,-0.37319157,0.27844584,0.18247545,0.8214995,0.10148608,-0.09145721,-0.39233464,0.2516948,0.35710067,-0.2748912,-0.24205999,-0.22622563,0.2085059,-0.52975583,0.40648648,-0.07284573,-0.16881058,0.029742353,-0.04225286,0.072897896,0.36301324,-0.19805253,-0.13363172,0.1253376,0.0285175,-0.29959524,0.07681881,-0.37056908,0.14169225,0.13253725,-0.0980621,0.1061167,-0.050064117,-0.14343931,0.33502948,0.21433541,0.28523996,0.50718415,-0.08325385,-0.46748596,-0.14043516,0.027675536,0.36228934,0.16101591,-0.023138247,-0.385432,-0.2869436,-0.27470377,0.5158973,-0.1705308,0.10020561,0.09679793,-0.34602717,0.6724419,0.22683012,1.048275,0.06375254,-0.17300658,0.17929034,0.44033188,0.121440485,0.047076866,-0.46919775,0.7967845,0.56421375,-0.10566774,-0.20920461,-0.15674771,-0.2418741,0.18658343,-0.27795056,-0.19141403,-0.17698142,-0.7552952,-0.27270952,0.08736466,0.07763873,0.05173654,0.0342568,-0.054428965,0.045062155,0.11346398,0.42893544,-0.36763465,-0.07157548,0.3139168,0.19482195,0.14603691,0.3257079,-0.37762058,0.46242946,-0.7131714,0.16313522,-0.42055905,0.064166665,-0.017712194,-0.30850774,0.08304863,0.18817735,0.3119029,-0.35423678,-0.3954563,-0.36797705,0.49871972,0.19314663,0.25286645,0.68246037,-0.13827156,-0.043393288,0.12542441,0.5872382,1.1768357,0.1243449,0.0890518,0.5120794,-0.37009364,-0.587641,0.051543932,-0.3433972,0.14300191,-0.15050495,-0.2092708,-0.37982196,0.3259087,0.10585062,-0.049904495,0.033412807,-0.5838927,-0.16395709,0.43308753,-0.2743705,-0.2269324,-0.30486217,0.286423,0.7861786,-0.39415267,-0.17857692,-0.0058079436,0.35041672,-0.26865292,-0.45533246,-0.014708713,-0.33146328,0.32809624,0.11676774,-0.31291655,0.027741294,0.1688604,-0.37080133,0.06002993,0.33380356,-0.3963383,-0.0041552093,-0.2629647,-0.12326129,0.984527,0.08129108,0.042662248,-0.55885375,-0.5120075,-0.94479173,-0.36338723,0.11172578,0.16405565,-0.049024794,-0.61867493,-0.112954035,-0.042548712,0.05004219,0.04383765,-0.4842365,0.41149062,0.20528913,0.32965434,-0.013216078,-0.82642746,-0.14370103,0.19926903,-0.27813452,-0.51948416,0.653718,-0.16040921,0.7336424,0.096752405,-0.01723998,0.0861105,-0.63865733,0.31338745,-0.42235523,0.038124487,-0.6954888,0.21326295 +570,0.5006606,-0.25961414,-0.5240752,-0.056626327,-0.23433152,0.15749949,-0.107389465,0.6796223,0.2761033,-0.32230985,0.077705465,0.024711637,0.09817162,0.31645557,-0.0028074423,-0.44939473,-0.06979203,0.22158486,-0.6071957,0.6022241,-0.40353385,0.18486646,-0.35847643,0.4884574,0.12831527,0.21206091,-0.25012463,0.062248126,-0.27246696,0.03200829,0.006370461,0.44860554,-0.4659213,0.057360865,-0.16926602,-0.22064021,-0.17838502,-0.5247781,-0.4442753,-0.6595623,0.32888243,-0.67794174,0.7379744,0.010212461,-0.28369018,0.34059417,0.024101803,0.37370238,-0.30116877,0.014605761,0.048122283,0.07170975,0.001727581,-0.33934155,-0.37301296,-0.41046843,-0.5867977,0.025302999,-0.48452613,-0.03152045,-0.09183402,0.07221315,-0.25324437,-0.0731518,-0.020882536,0.36442864,-0.3853302,0.275889,0.18899213,0.009985507,0.05062515,-0.41426745,-0.18899727,-0.06760672,0.33191568,-0.14953996,-0.27136087,0.24829264,0.17459822,0.46135673,-0.18061294,-0.08807078,-0.43210283,0.026734918,0.020104464,0.5183916,-0.21904193,-0.57348055,-0.16134477,0.1788752,0.14990336,0.12609433,0.30491808,-0.13267614,-0.15537545,-0.1037017,-0.05747788,0.559192,0.45023003,-0.21258894,-0.40366426,0.34960416,0.5362339,0.21432127,-0.19379999,0.0048309355,-0.02588975,-0.5001625,-0.14212903,0.08007899,-0.045754734,0.3716877,-0.041058324,0.12714086,0.51770806,-0.23018363,-0.11648313,0.09850369,0.016128344,0.082224704,-0.26848486,-0.3185573,0.13317086,-0.32326335,0.11373464,-0.08561468,0.38108188,0.28641257,-0.7807414,0.39748433,-0.605478,0.13223317,-0.07848992,0.2751975,0.71447194,0.54763734,0.08714008,0.47226098,-0.17171358,0.16581678,-0.105687335,-0.2175849,0.11738633,-0.22497813,-0.02960213,-0.5881624,0.13135825,-0.0082943,-0.34094125,0.23864196,0.38407034,-0.47265425,-0.15765801,0.2699614,0.8988931,-0.18254974,-0.18552177,0.83494085,0.9405527,0.7618702,-0.0223927,1.13966,0.11838944,-0.15699619,0.32784075,-0.50359327,-0.759417,0.21817048,0.25201884,-0.36197954,0.43442598,0.08993748,-0.08692812,0.27303174,-0.16524991,0.0029353618,-0.03447945,0.15249167,0.11322458,-0.28985348,-0.30574715,-0.2711893,-0.22658665,-0.031031013,0.21883895,0.3406152,-0.3171756,0.36174324,-0.044257026,1.6852793,0.13892668,0.033017,-0.0025770883,0.5918613,0.26960513,-0.20462093,-0.10021695,0.43492883,0.27669558,0.06229322,-0.47039464,0.16745311,-0.1885887,-0.3535352,-0.18149312,-0.3326316,-0.14778668,-0.045990277,-0.47009456,-0.1369348,-0.19183418,-0.124876045,0.48488668,-2.9932106,-0.21770564,0.11415353,0.4576374,-0.2664091,-0.34840363,-0.29201716,-0.27986696,0.3339721,0.21414056,0.52632403,-0.64827514,0.54784936,0.26283824,-0.6501302,-0.09023798,-0.52433604,-0.20719984,0.048019424,0.29959196,-0.23414065,0.071697995,0.24386056,0.14745475,0.42466772,-0.10601049,0.003981911,0.13409534,0.46044606,-0.026745152,0.32090428,-0.2025437,0.5570109,-0.22982503,-0.25449207,0.23189951,-0.38788784,0.3506969,0.0890974,0.014797565,0.45823115,-0.53358525,-0.9977098,-0.5573134,0.17783774,0.8854498,-0.05269508,-0.19004603,0.15673354,-0.6958836,-0.3959988,-0.13521235,0.39615032,0.04306459,-0.14995058,-0.7254612,-0.10892328,-0.027114134,0.16807798,-0.03330284,0.005041945,-0.40127698,0.5003588,0.06640768,0.53576595,0.17615816,0.20143972,-0.33101988,-0.40625748,0.041447315,0.6758836,0.30348113,0.24097122,-0.17613868,-0.3224393,-0.42562836,0.06644392,0.041639652,0.5472773,0.34725094,-0.12228368,0.121573366,0.23037656,-0.11299963,0.18714698,-0.21469888,-0.13464335,-0.16178958,0.13369684,0.41943353,0.6123227,-0.32495376,0.6197213,0.08275963,0.1879388,-0.106572844,-0.47725347,0.46277714,0.94941366,-0.21262957,-0.36041343,0.46901718,0.3456403,-0.38110998,0.3757365,-0.3953397,-0.12101404,0.3613158,-0.25539103,-0.19125421,0.37225267,-0.26089296,0.12946406,-0.93927777,0.11267917,-0.36253643,-0.40589502,-0.45467994,-0.021824146,-2.881691,0.11747139,-0.13827486,-0.25139967,-0.041377697,-0.17657147,-0.00942719,-0.5855881,-0.6216715,0.20597032,0.1097881,0.63895303,-0.23816517,0.09324622,-0.21373224,-0.47588578,-0.3162769,0.18179348,0.12944838,0.45536867,-0.09721026,-0.40233144,-0.21065302,-0.04917985,-0.32074106,0.11341592,-0.6699475,-0.29016453,-0.00784614,-0.6000897,-0.10036565,0.6691532,-0.105919704,-0.09703148,-0.2743403,0.07802331,0.0013272663,0.36150363,0.034150913,0.083680466,0.17147468,-0.17183848,0.26619974,-0.21967635,0.31599486,0.007199474,0.40324834,0.27102646,-0.115931034,0.2697263,0.5047473,0.6958299,-0.21672513,0.7171003,0.476488,-0.16286659,0.39438412,-0.36606655,-0.18167333,-0.28905922,-0.2225805,-0.04459794,-0.37128833,-0.48038217,-0.16780567,-0.5076272,-0.75458807,0.33025983,-0.09366167,0.023705535,0.027919639,0.3997172,0.56078184,-0.16036221,0.120933644,-0.15975904,-0.096089505,-0.4496151,-0.1973864,-0.3625758,-0.39527225,0.28773022,1.0650331,-0.24241509,0.059833124,0.011020255,-0.24941495,-0.012974804,0.22405796,0.0013275543,0.21671699,0.4558635,-0.22600624,-0.46066505,0.28452492,-0.23359694,-0.27408168,-0.57632995,0.2247288,0.4377044,-0.5344559,0.7446907,0.14432955,-0.01586655,-0.15396217,-0.50087935,-0.07000611,0.10275326,-0.048697527,0.38434836,0.2903757,-0.8325312,0.3441344,0.3700574,-0.3613144,-0.53553325,0.5191575,-0.038724996,-0.29703405,-0.23701124,0.24213105,0.19149654,0.006472103,-0.28358445,0.31035408,-0.44200188,0.20281066,0.14503196,-0.0352662,0.11064932,-0.07934506,-0.0836021,-0.698403,0.11373178,-0.42137825,-0.29710862,0.38723361,0.16011125,0.3905789,0.022041567,0.17584206,0.3335109,-0.3821382,0.09777422,-0.14345774,-0.28504127,0.24308306,0.29839668,0.4841814,-0.41993657,0.45284763,-0.030481331,-0.21672124,0.19312605,0.11402374,0.56348723,0.06502745,0.3065399,0.1933266,-0.21847717,0.19532868,0.74456954,0.11755524,0.2502471,0.04999138,-0.13125639,0.14247578,0.051033672,0.06766767,-0.03178037,-0.40338343,-0.014801939,-0.053909462,0.21975794,0.48925215,0.20586497,0.08564221,-0.11156736,-0.33113077,-0.099793464,0.29460236,0.11602401,-1.2505143,0.15403825,0.27745456,0.9055178,0.28729236,0.2304533,0.028198648,0.60363764,-0.15105598,0.111420855,0.40327775,-0.10117383,-0.5309659,0.42336363,-0.6001348,0.5946718,0.018664801,-0.019376997,0.08499145,-0.06255037,0.5766258,0.78902835,-0.21294431,0.06484076,0.21463113,-0.31612253,-0.034135077,-0.31252104,-0.050138894,-0.61532396,-0.09340311,0.6873812,0.5097269,0.33836433,-0.27588713,0.011802284,0.17632367,-0.05536023,0.044506624,0.028396158,0.22568849,-0.09133125,-0.6307638,-0.0609621,0.48000768,-0.21489027,0.13400745,0.085080214,-0.2015963,0.30259565,-0.13450035,-0.0023644646,-0.09672858,-0.62706757,-0.044764794,-0.27712855,-0.4460399,0.5988179,0.100126125,0.20892903,0.27484226,0.14594612,-0.23770376,0.6165127,-0.08469663,0.88898945,-0.07180524,-0.11570468,-0.3977752,0.33062333,0.116472326,-0.17170094,-0.008474678,-0.1926515,0.07927586,-0.5268002,0.4020127,-0.010655775,-0.33474118,-0.2166804,0.13355793,0.24224092,0.49837196,-0.19657736,-0.08606003,-0.14189714,-0.09766543,-0.4450623,-0.23571996,-0.12645449,0.23915638,0.38606843,-0.08776864,-0.12913801,-0.08735583,0.035305507,0.48553407,0.01000617,0.41024116,0.33162048,0.308051,-0.12800014,-0.18848723,0.2651948,0.48533854,-0.19617991,-0.040594485,-0.39145535,-0.29511163,-0.37435958,0.19790834,-0.14506763,0.20601068,0.08964939,-0.21925129,0.66884106,0.039346743,1.1467788,0.014751214,-0.32731897,0.32768723,0.5085181,0.0054034987,-0.08064154,-0.40227714,0.9443909,0.47154018,0.08359763,-0.08730695,-0.31955096,-0.08188731,0.044021018,-0.3027215,-0.15966898,-0.0016890158,-0.48766613,-0.2368173,0.22589056,0.108159386,0.383557,-0.14610118,0.22707288,0.26102468,0.029199414,-0.03703354,-0.3831485,-0.2384106,0.31446177,0.3457858,0.05467875,0.073525116,-0.5371855,0.23204233,-0.32044092,0.0348113,-0.08135283,0.18131629,-0.074691296,-0.40056127,0.1660385,0.06821055,0.16205388,-0.33554265,-0.31867948,-0.2449232,0.46390757,0.04272323,0.16960287,0.48622614,-0.23362605,0.035530843,0.016385874,0.43245298,0.7750298,-0.072004944,-0.19903533,0.35299334,-0.36198565,-0.71535516,0.37633342,-0.29422575,0.38167953,-0.0073692403,-0.024767602,-0.6930942,0.3670459,0.1249996,0.15696642,-0.14456578,-0.51286757,-0.2172031,0.21933335,-0.3036217,-0.19803722,-0.34388515,0.06950227,0.7523178,-0.1282812,-0.36704937,0.23534168,0.1769794,-0.16810846,-0.41745955,0.013675002,-0.3205599,0.17698327,-0.048205253,-0.25704828,-0.18578409,0.0645942,-0.38622802,0.21242332,0.17765428,-0.3371642,0.18202646,-0.4497424,-0.17664744,0.9224277,-0.41920644,0.25366965,-0.42290586,-0.60232747,-0.77972263,-0.32997528,0.26155016,0.10651714,-0.004260143,-0.8536705,-0.026763098,0.027003828,-0.42732003,-0.065493815,-0.26454836,0.4166674,-0.013134926,0.12547265,-0.27394718,-0.74309707,0.12667139,0.16410327,-0.28424683,-0.70739245,0.45013174,0.029465223,1.0548929,0.124105774,0.20655139,0.4354268,-0.37501425,-0.2899537,-0.20021291,0.012329833,-0.46477515,0.02028904 +571,0.5224451,-0.047031958,-0.44421396,-0.1864995,-0.16978732,0.40513012,-0.25297838,0.26531568,0.028388454,-0.6132866,0.021265788,-0.17909281,0.011620011,0.3868324,-0.23113884,-0.36343488,0.17093176,0.08931694,-0.65100676,0.26999074,-0.5355743,0.32417393,0.15473114,0.3691081,0.0030104062,0.28307056,0.27861586,-0.25274804,-0.309902,-0.1929904,-0.06337869,0.17094643,-0.44290516,0.17167993,-0.08517329,-0.18684532,0.07068012,-0.49767333,-0.4405645,-0.58144164,0.17237854,-0.72366977,0.57776314,0.0011381785,-0.26175755,0.20831044,0.1623822,0.14700694,-0.2599726,0.20010398,0.2922535,-0.2915611,-0.14931077,-0.17291185,-0.25172666,-0.48389062,-0.5866512,-0.009603286,-0.47420415,-0.08415368,-0.30429772,0.21266463,-0.17532791,-0.10599982,0.015752135,0.38904244,-0.34066898,-0.013660725,0.12078652,-0.22658561,0.29765594,-0.40327626,-0.15440693,-0.07937584,0.33685315,-0.21985474,-0.09354218,0.2703946,0.33173898,0.6038457,-0.08439991,-0.15778227,-0.37691438,-0.027528524,0.09325544,0.6284865,-0.19854759,-0.33034265,-0.16150597,-0.18023223,0.25103733,0.1812467,0.043353695,-0.38340035,-0.14805248,-0.07644019,-0.21633889,0.262238,0.53808117,-0.34771279,-0.10380961,0.43853617,0.41887036,0.1029789,-0.034542013,0.054737933,-0.04003373,-0.63325447,-0.07932186,0.15609632,-0.16606222,0.5071785,-0.079555385,0.3083932,0.6646206,0.020251626,0.0641969,0.10865645,-0.038906164,0.060581706,0.050611265,-0.20160584,0.08768323,-0.38266832,0.020544343,-0.19688514,0.7070785,0.20960419,-0.836113,0.4247324,-0.3824136,0.0058583557,0.09118397,0.44062436,0.61594945,0.48082075,0.058703978,0.6740806,-0.62403065,0.047782738,-0.09702415,-0.19157773,0.1856001,-0.07522358,-0.05535758,-0.4339756,-0.06904725,0.12349219,-0.042152245,0.015815457,0.5499211,-0.48589858,-0.05833499,0.14502707,0.785004,-0.3897782,-0.102513045,0.5424384,0.9574438,0.87822837,0.18097457,1.2170523,0.19561863,-0.2469045,-0.0579171,-0.30198467,-0.7117303,0.37289292,0.34289125,-0.071920395,0.2140546,0.08383064,0.15390159,0.31916556,-0.40017202,0.030311614,-0.14804891,0.23391019,0.03296589,-0.10307236,-0.25475287,-0.36587796,0.11168361,-0.11418295,0.2383143,0.17375062,-0.28156045,0.39364627,0.061501287,1.6480045,-0.15638395,0.14553435,0.09268238,0.31750625,0.09758907,-0.061665963,-0.29900995,0.31870854,0.4176019,0.024966013,-0.38163444,0.057814598,-0.05390147,-0.44176954,-0.15007724,-0.28557584,-0.065802984,-0.13835853,-0.35940698,-0.2035223,0.062052887,-0.55754006,0.5370311,-2.7160466,0.003979687,-0.1687679,0.35352185,-0.2366176,-0.3337931,-0.26419055,-0.33217642,0.48763937,0.32474425,0.40330994,-0.52806515,0.24712548,0.5028074,-0.29459903,-0.2074798,-0.6639337,-0.09833144,-0.09973565,0.16436972,0.085565016,-0.22073063,-0.08909533,0.28355885,0.43180412,-0.0923529,0.05092508,0.24839242,0.34672794,0.18785079,0.553189,-0.031971682,0.5758975,-0.35658818,-0.19675128,0.41445905,-0.51204294,0.09471902,-0.0811731,0.18821338,0.30116174,-0.42541257,-0.87991357,-0.6123194,-0.21654627,1.1922917,-0.28781632,-0.3102872,0.26946113,-0.0848192,-0.32745373,0.0856652,0.47516373,-0.20205852,0.035482265,-0.8388599,-0.2289849,0.060812343,0.23787326,-0.05159596,0.14727163,-0.5578096,0.52156025,-0.09943889,0.52909094,0.26105767,0.19477554,-0.29448217,-0.4434986,0.032166917,1.0662419,0.25925806,0.17697135,-0.042115886,-0.20413612,-0.21178809,-0.11900077,0.09465538,0.47165993,0.6867829,0.07044759,0.13137487,0.2051389,-0.09639111,0.1340845,-0.10335101,-0.28746685,-0.07007933,-0.042818505,0.63216007,0.5238801,0.0614851,0.29503757,-0.18528071,0.41366416,-0.2857824,-0.41057727,0.54348207,0.6544597,-0.16819136,-0.22521444,0.55777895,0.40926445,-0.14366011,0.42181173,-0.6580868,-0.52189875,0.44410887,-0.15992025,-0.49776122,0.18964604,-0.3175656,0.22456887,-0.8838994,0.40704647,-0.19227982,-0.49588776,-0.37495145,-0.16125849,-3.2722707,-0.036334895,-0.11598958,-0.25774205,0.03006797,-0.10487337,0.25673607,-0.49146774,-0.53066516,0.010023328,-0.046419796,0.6222628,0.05933215,0.10701488,-0.25900927,-0.22922663,-0.37251198,0.16362496,0.09740921,0.37384102,0.112950474,-0.4253654,0.09406948,-0.37484044,-0.36860752,0.035145402,-0.5853288,-0.3839733,-0.17467766,-0.5087718,-0.38929388,0.67185825,-0.5627609,0.036861587,-0.28453013,-0.0046939086,-0.18148802,0.4743388,0.16107579,0.22101511,0.06394946,-0.1377921,-0.012342525,-0.2993536,0.39625087,0.15634796,0.0742983,0.4735195,-0.12748876,0.034327615,0.46572012,0.65863717,-0.17422631,0.7979795,0.3622036,-0.0005505463,0.2459167,-0.44230923,-0.24474801,-0.33952445,-0.35071835,0.14877467,-0.46182406,-0.33908427,-0.18050562,-0.38796934,-0.7882345,0.41945267,-0.017580334,-0.028620923,-0.094314665,0.06879738,0.25917363,-0.33860463,-0.12391424,-0.07358755,-0.17955235,-0.39328024,-0.23663655,-0.68226403,-0.4910415,0.03727142,1.0441136,-0.027919794,0.07958845,0.14618723,-0.21490759,0.15157877,0.01906387,0.027745305,0.120474555,0.41744772,-0.0040395022,-0.720064,0.44403797,-0.3156032,-0.15939471,-0.5421064,0.11107337,0.6605601,-0.6480845,0.5747563,0.4246529,0.19018348,-0.11767374,-0.57921976,-0.26572883,-0.04276758,-0.16648947,0.42921,0.03138961,-0.75989693,0.45208836,0.38857812,-0.32211092,-0.67728955,0.45445532,0.032440722,-0.18968712,0.19179344,0.42480087,-0.07945347,-0.042904545,-0.12985834,0.1275539,-0.545646,0.5073857,0.38082156,0.14237247,0.5255622,-0.29513696,-0.17724878,-0.6030971,-0.2498091,-0.35199413,-0.30634278,0.21285366,0.04219293,0.086547464,0.05698005,-0.012657539,0.4470596,-0.4281204,0.0846506,-0.06539377,-0.049985472,0.29366982,0.41605076,0.5465117,-0.38607958,0.51361483,0.013523049,0.014592187,-0.19985265,-0.004727801,0.45663765,0.16603893,0.23912263,-0.14974493,-0.23097645,0.35712808,0.76028264,0.19622664,0.27383164,0.13980666,-0.23620072,0.18074672,0.12670039,0.03501611,0.023573522,-0.41986927,-0.04988803,-0.20975567,0.2183244,0.386685,0.063050225,0.35297072,-0.096608,-0.22913978,0.06383018,0.1412859,-0.22556669,-1.2847666,0.38335133,0.097033866,0.73778504,0.35835323,0.115452655,0.0547543,0.68284744,-0.19790499,0.11704424,0.174903,-0.11855011,-0.4618103,0.52170527,-0.591325,0.45808688,-0.05553918,-0.04064334,0.052945904,-0.032376822,0.44124064,0.9416718,0.0045679966,0.19414479,0.030540466,-0.2137554,0.16339915,-0.41942933,0.12587492,-0.49740806,-0.21063732,0.6169039,0.33561373,0.47318015,-0.20665579,-0.013695671,0.043869212,-0.09706295,0.124671966,0.09940703,0.093587995,-0.06882987,-0.7309643,-0.2892603,0.49270904,0.25531587,0.055507954,0.28466704,-0.24917978,0.28637192,-0.30380905,0.02218558,-0.12097571,-0.5557481,-0.119919926,-0.35053444,-0.38292435,0.12589398,-0.16444975,0.20480485,0.23623861,0.0506639,-0.25028193,0.46678856,0.19996771,0.805632,0.09515565,-0.21533434,-0.30722836,0.1504527,0.23761554,-0.31048048,-0.036413774,-0.32528704,0.031163542,-0.5583528,0.32559842,-0.12380998,-0.25098905,0.22555071,-0.15430956,0.07092441,0.5856655,-0.1575366,-0.14127731,0.107841626,-0.048460793,-0.32708842,-0.015072337,-0.25862628,0.14941053,0.17110465,-0.05545714,-0.031271797,-0.030505124,-0.118965864,0.30146188,0.10038648,0.38776174,0.43447775,0.11243789,-0.37985098,-0.026614534,0.025919229,0.5777784,0.10058122,-0.07992576,-0.39853585,-0.44701046,-0.29683545,0.19213282,-0.23115657,0.19118781,0.13479419,-0.24744138,0.6927752,-0.09913506,0.9451109,0.14376312,-0.16706578,0.014996481,0.53268886,0.062238872,0.06580356,-0.4026175,0.92988235,0.48197392,-0.089588165,-0.015826812,-0.31009927,-0.126008,0.16182733,-0.3095075,-0.23278685,-0.1691873,-0.7166492,-0.25973746,0.25475928,0.14822143,0.15180111,-0.07681397,0.009576384,0.23309317,0.21551155,0.3269625,-0.50571305,0.054045167,0.37468037,0.27900952,0.031089,0.15073945,-0.4061847,0.33891147,-0.47134268,-0.10597244,-0.20573916,0.056514557,-0.13360725,-0.37211317,0.23999093,0.1231886,0.2947468,-0.32320487,-0.33022922,-0.09506545,0.51314056,0.24896431,0.31044436,0.6895101,-0.14125128,0.0075441045,0.11222887,0.48535258,0.98572904,-0.31221122,0.15886612,0.47857606,-0.2285202,-0.6043856,0.15767035,-0.40756765,0.17189075,-0.09216664,-0.3531311,-0.320107,0.2745458,0.13678065,0.049650054,0.065334894,-0.49611512,-0.18846492,0.41849905,-0.24836697,-0.35549667,-0.40737343,0.10331139,0.47841305,-0.29646155,-0.17352007,0.044528715,0.40157095,-0.28304335,-0.59928674,-0.054527353,-0.37392583,0.19241224,0.14824514,-0.38100052,-0.124549694,-0.07806506,-0.3777774,0.2377237,0.06993671,-0.39574626,-0.016292643,-0.31519505,-0.018305413,0.7961962,-0.08642362,0.08280401,-0.62380725,-0.4332067,-0.9953911,-0.16473958,0.42617878,0.07268967,-0.18072367,-0.46644458,-0.122220606,-0.06717821,0.06570373,0.04321674,-0.38549504,0.34508565,0.07358564,0.43591484,-0.07079722,-0.6632857,0.01995836,0.052818228,-0.26807708,-0.5253557,0.5958974,0.03175115,0.7309402,0.13431937,0.040322885,0.2548259,-0.6026603,0.13937096,-0.23028262,-0.05817449,-0.7062992,0.22257467 +572,0.3704906,-0.0024966185,-0.6078345,-0.3376276,-0.09878536,0.12660497,-0.15815155,0.10614827,0.12716118,-0.38169414,-0.01965939,-0.2949735,-0.022235371,0.49515992,-0.123758785,-0.88254154,-0.110029906,-0.07786691,-0.6764683,0.5014741,-0.43006772,0.4628828,0.117574304,0.3746721,-0.012941787,0.34378308,0.3536633,-0.13410822,0.10519035,-0.06337169,-0.30515218,0.0777306,-0.73161477,0.18258992,0.22247903,-0.34472463,0.015620346,-0.13988529,-0.21879798,-0.5602292,0.45586997,-0.78606707,0.51165235,-0.03889197,-0.32249227,0.11315564,0.06922117,0.30808085,-0.5150905,0.13904612,0.23102997,-0.13385858,0.17709014,-0.18072279,-0.19761038,-0.53742945,-0.4896811,0.020304931,-0.6591568,-0.33111814,-0.30976275,0.19817623,-0.32435784,0.0943123,-0.2447048,0.37071338,-0.41318643,-0.16770472,0.21867545,-0.34720626,0.30561417,-0.40135098,-0.13930947,-0.06998007,0.20556389,-0.06366516,-0.095218115,0.13326655,0.1153708,0.5587013,0.15844005,-0.13776158,-0.120332725,-0.20079091,0.061294224,0.45058867,-0.008516959,-0.35359034,-0.26317888,-0.15662977,0.06396182,0.23150107,0.04734645,-0.4673372,0.025083922,0.06528172,-0.30972055,0.15549964,0.40163884,-0.53482354,-0.278275,0.44502875,0.35022062,-0.051499195,-0.13557006,0.24511172,0.07774603,-0.37057844,-0.24080302,0.2581614,-0.028914033,0.54088026,-0.09365915,0.34858453,0.8465974,-0.051860604,0.13950744,-0.35795063,-0.29921764,-0.32906854,-0.14490317,0.016485123,-0.032257777,-0.4082926,0.0536352,-0.30904084,0.9665435,0.10964254,-0.69985175,0.29124412,-0.50104445,0.09456228,-0.15842026,0.63847095,0.6566902,0.16543795,0.00039223983,0.947208,-0.78155077,-0.06589315,-0.053634174,-0.46789947,0.051999476,-0.019270118,0.003263125,-0.41766363,-0.053494714,0.26184437,0.15794824,-0.12738179,0.29369804,-0.3139771,0.07167729,-0.04272574,0.61859894,-0.47048706,0.043338712,0.669235,1.0672736,0.8215411,0.12879734,1.3254813,0.36603674,-0.2657211,0.20424904,-0.3618965,-0.60527396,0.18617226,0.47377974,0.5712154,0.29075214,0.05967664,0.1409252,0.401632,-0.20452,0.25863212,-0.034284517,0.13097781,-0.13088554,-0.030317325,-0.36140898,-0.09675277,0.21856774,0.081788644,0.10523792,0.24365467,-0.07466993,0.45681491,0.16877052,1.5409739,-0.09589516,0.2701803,0.06880413,0.44221753,0.22814098,-0.09280384,-0.04497907,0.33261523,0.515924,-0.05629001,-0.72890913,-0.02931672,-0.20883894,-0.4878392,-0.21019793,-0.43449944,-0.12006059,-0.05919582,-0.57266724,-0.0538595,0.102951065,-0.4044246,0.29243523,-2.5042737,-0.1592358,-0.23908004,0.25711364,-0.32585767,-0.2747831,-0.12992099,-0.35366088,0.4501148,0.60351264,0.29025716,-0.626775,0.45889366,0.4085879,-0.022737969,-0.10096605,-0.59827167,0.02307206,-0.13436069,0.38939655,-0.15506744,-0.14792088,-0.29807475,0.33181652,0.49456173,0.0063462993,-0.14716305,0.1022406,0.39782116,0.24029444,0.63522726,0.2632121,0.6745999,-0.0496363,0.03245518,0.3686847,-0.25326177,0.3015849,0.12378986,0.22635542,0.26610997,-0.6037119,-0.6965404,-0.7519516,-0.49166366,1.2428483,-0.54094875,-0.34398368,0.3635046,0.11756534,-0.29182965,0.011949851,0.53165185,-0.1461918,0.0014229462,-0.6825263,0.09546314,-0.08611577,0.366412,0.0088551305,0.028418344,-0.39833933,0.7115653,-0.11990796,0.6001343,0.42601982,0.07431814,-0.046511896,-0.5521421,0.13209987,1.0443099,0.2852264,0.13274124,-0.10720874,-0.20142776,-0.19738986,-0.17913525,0.24348791,0.43225816,0.80574524,0.18231909,0.15394977,0.3871842,-0.2210769,0.032039277,-0.06311304,-0.32540497,0.07437127,0.0438877,0.53180104,0.37878424,-0.15526769,0.39384466,-0.18384682,0.23000516,-0.28434533,-0.42010528,0.6735372,0.781448,-0.12275211,-0.17346868,0.5107866,0.4369064,-0.35651773,0.27670005,-0.5126902,-0.28360432,0.59708273,-0.077135794,-0.4100117,0.15773311,-0.30875885,0.08034511,-1.0700608,0.1208208,-0.10409494,-0.45077446,-0.5620203,-0.2472896,-4.5446544,0.22608344,-0.24572727,-0.20022987,-0.15676244,-0.18803263,0.4945951,-0.62312233,-0.500335,0.026677074,-0.07256996,0.5382846,0.085007444,0.308592,-0.3507331,0.081357755,-0.24333912,0.19732578,0.07620731,0.22085612,0.12042323,-0.3361302,0.12847503,-0.27414656,-0.52316785,0.019529043,-0.3777504,-0.6106163,-0.16314776,-0.51161706,-0.30633932,0.7514979,-0.36180407,-0.0691611,-0.31041685,-0.17417867,-0.30727595,0.4297293,0.17865944,0.14475185,0.021169974,0.056503363,-0.2741966,-0.49852827,0.06843695,0.068593994,0.2904306,0.22134799,-0.26995146,0.025199037,0.4570482,0.42510265,0.07679897,0.40871873,0.33806822,-0.035617195,0.3592388,-0.40951458,-0.14891766,-0.7544132,-0.44508868,-0.2890462,-0.3496856,-0.6235176,-0.3308096,-0.319147,-0.7561843,0.38979685,0.0144517375,0.095774494,-0.026040109,0.25284058,0.2470024,0.06591354,-0.016411178,-0.14693993,-0.19804981,-0.502788,-0.42779768,-0.6396113,-0.55402094,0.27764672,0.9983455,-0.08266051,-0.2918923,-0.033244003,-0.4674911,0.12450567,-0.029615935,0.38131967,0.43151698,0.35628513,-0.11772589,-0.7495959,0.55310804,-0.06309201,-0.017817222,-0.58149236,-0.16416192,0.7012847,-0.7605921,0.38953882,0.2416288,0.19845602,0.18002568,-0.33912256,-0.32298607,0.0816286,-0.29406554,0.51394105,0.14320269,-0.5884494,0.4308343,0.15811405,0.2616398,-0.6484924,0.46063954,-0.089653954,-0.31827608,0.14873847,0.28450277,-0.12773998,-0.04386209,-0.19349942,0.096090786,-0.47902107,0.2875078,0.47855794,0.06531459,0.5546788,-0.101750575,-0.1333084,-0.40126726,-0.047736984,-0.6226486,-0.11740172,-0.027166951,0.14218542,0.060517572,0.15683314,-0.11073436,0.40841818,-0.31252113,0.27491176,0.095369324,-0.12788974,0.3392026,0.43087006,0.15250053,-0.56600374,0.6996615,0.019472765,0.11548297,-0.13262135,0.11808252,0.599398,0.38676625,0.29119322,-0.25129038,-0.17821983,0.24600722,0.5708876,0.2714534,0.43081334,0.29492956,-0.057233855,0.3890949,0.28837216,0.029172858,0.10356716,-0.2058352,-0.0654705,0.106357485,0.23054862,0.35195652,0.13409434,0.43422583,-0.12512472,-0.23224185,0.2670596,0.18784314,-0.4067643,-0.81175804,0.31429064,0.28546137,0.52043885,0.65726715,-0.061120935,-0.008889391,0.40624663,-0.42647776,0.09297173,0.14746477,0.16670784,-0.612316,0.62455875,-0.46424693,0.42813656,-0.22549915,-0.015680313,-0.045665376,0.20980667,0.103288375,1.0160304,-0.029036455,0.087338194,-0.070241995,-0.1527746,0.09081978,-0.42446405,-0.009374142,-0.47231197,-0.25122312,0.55082333,0.29434964,0.27162474,-0.2916415,-0.14760798,-0.03326629,-0.0960103,0.0034406553,-0.13918355,0.043545716,0.08082381,-0.6548503,-0.5313502,0.5712553,-0.047715876,0.07423105,0.10165061,-0.46995604,0.29894632,-0.16736071,-0.02995934,0.026437186,-0.54117036,0.11096562,-0.32373735,-0.5182496,0.16253175,-0.6269196,0.3588803,0.1737208,-0.02457403,-0.19536725,-0.05106122,0.2293356,0.64164674,-0.047707465,-0.19885272,-0.42593908,-0.0791671,0.3283944,-0.33387807,-0.18380943,-0.3265562,0.030456487,-0.55654144,0.31635576,0.015986571,-0.23285338,-0.0062007857,-0.22281606,-0.042744543,0.35009167,-0.29389355,-0.034430675,0.25670296,-0.08242726,-0.17909919,-0.03897386,-0.42855275,0.245049,-0.031615175,0.14913402,0.1898621,0.0027670264,-0.056939326,0.2755435,0.17974922,0.29521048,0.35522473,-0.13969943,-0.2941732,-0.04351427,0.05137945,0.19411789,0.1555362,0.035218734,-0.10409711,-0.4798487,-0.22219552,0.22748202,-0.14327127,0.12856127,0.016208824,-0.5712154,0.6861508,0.2346516,0.9484586,0.14028288,-0.36645332,-0.012950833,0.499754,0.123996146,0.10076763,-0.22648494,0.951306,0.6289707,-0.21529172,-0.3240351,-0.28022182,-0.32028204,0.2932619,-0.26227978,-0.27169755,-0.027865509,-0.6892421,-0.25166124,0.05225011,0.28679878,0.12929606,0.16174713,-0.033634387,0.015412809,0.098608226,0.4570091,-0.5849642,-0.058925383,0.27570614,-0.02444965,0.14953627,0.3000015,-0.38410944,0.5251148,-0.78316075,0.07863617,-0.48914865,0.016378181,0.14858674,-0.22610983,0.13924792,0.04019409,0.39449283,-0.24174117,-0.21843903,-0.28280032,0.7983399,0.18926719,0.3815571,0.8738933,-0.13126579,0.005876825,0.10326339,0.43475068,1.3562093,0.07496767,0.096602716,0.19311197,-0.3180332,-0.5928426,0.11259401,-0.2726093,0.19224486,-0.082831904,-0.4443488,-0.2528242,0.26969293,0.026693119,-0.10974321,0.14111087,-0.49526644,-0.47276127,0.5009546,-0.2431688,-0.33921242,-0.32855308,0.18279296,0.666187,-0.39993063,-0.1720627,0.10615837,0.29312906,-0.2871535,-0.614437,-0.04195822,-0.24253368,0.42021412,0.23707727,-0.24080889,0.10287281,0.36776236,-0.2790095,0.27031457,0.3201463,-0.37987024,0.035015162,-0.25066006,-0.16069461,1.0888652,0.010030921,-0.08398448,-0.77231085,-0.5070087,-0.97626245,-0.52653503,0.5920335,0.014948911,0.031881526,-0.4700065,-0.07874116,-0.09314818,0.33517054,0.20469409,-0.454041,0.45289552,0.14482418,0.648312,0.06568882,-0.89530987,0.047225315,0.07957457,-0.19108392,-0.6428037,0.5904815,-0.20107427,0.46862215,0.013774536,0.083425775,0.22927618,-0.66316354,0.24931091,-0.4611444,-0.21475609,-0.8658473,0.1419757 +573,0.36487186,-0.15735105,-0.40603644,-0.10858952,-0.21422479,0.07587158,-0.036278434,0.5649571,0.22209597,-0.30876815,-0.13093139,-0.17546934,0.08698602,0.34677935,-0.23712808,-0.37429258,0.10209255,0.03606982,-0.2936663,0.3297567,-0.37030178,0.14193675,0.10523136,0.28143886,0.08598394,0.2913902,0.24766713,-0.07830617,0.04246454,-0.17772597,-0.2069162,0.2723641,-0.5221668,0.32562062,-0.21798134,-0.19150877,0.17684709,-0.49475825,-0.40121195,-0.618454,0.23950148,-0.76482624,0.3955431,0.30253854,-0.20717217,0.3800053,0.28354105,0.1400258,-0.21416521,-0.2586512,0.09252768,-0.059241794,0.1125129,-0.23433568,0.09505956,-0.27203226,-0.4695549,-0.027588844,-0.40705585,-0.23775527,-0.30755073,0.12670654,-0.33082217,-0.034398057,-0.049606755,0.41541594,-0.37695476,0.037125748,0.28027636,-0.27944553,0.37555435,-0.5579993,-0.21389577,0.030857814,0.15571894,-0.16625811,-0.21262433,0.3289281,0.1584754,0.30884707,-0.20830187,-0.1114603,-0.06729938,-0.11116348,-0.007844293,0.56387377,-0.38590086,-0.4817026,0.035510343,0.07612739,0.09649165,0.0006910723,0.19436306,-0.18825667,-0.14861844,-0.06062585,-0.12053133,0.28698957,0.46780393,-0.26250643,-0.14935772,0.14022371,0.43516424,0.13880783,-0.14417535,-0.09952119,0.0701884,-0.50339884,-0.19237396,-0.19342747,-0.11571736,0.61346364,-0.1285482,0.30513164,0.60439306,-0.10619171,-0.0004105568,0.20337346,0.10566708,0.09551663,-0.25469238,-0.13550456,0.20589226,-0.58784574,0.044305343,-0.16523114,0.7956984,0.16792253,-0.72742695,0.30219197,-0.4836797,0.1081998,-0.08339043,0.3595732,0.59581906,0.3667326,0.29409367,0.6864671,-0.5591088,0.01968529,-0.06891887,-0.34025905,0.25899127,-0.11950262,0.07350041,-0.42969233,-0.06713787,0.11402215,-0.08936583,0.10727937,0.10910424,-0.52970093,0.034138866,0.31761152,0.80344254,-0.21611995,-0.012334457,0.55283123,0.9761511,0.78989947,0.064429365,0.760446,-0.07329458,-0.21778774,0.26870957,0.08577368,-0.64646965,0.17098615,0.3581287,0.5360583,0.028128084,0.13280785,0.09595335,0.41508833,-0.4944331,-0.01696681,-0.16742608,0.33524317,0.13540341,-0.10611889,-0.39425856,-0.40820327,-0.08038007,0.1379245,-0.14051296,0.32386974,-0.011596262,0.39489874,-0.025119938,1.5391686,0.087512955,0.12434785,0.20656958,0.49825728,0.17958157,-0.17152795,-0.10980876,0.2708407,0.19434598,0.17895089,-0.38010788,0.03329817,-0.06493342,-0.43827564,-0.08397853,-0.35903242,-0.13588804,0.10369018,-0.6106847,-0.21709129,-0.17785452,-0.1053445,0.45567995,-3.1364088,0.017727228,-0.013997509,0.3163004,-0.17809513,-0.16251029,-0.021245709,-0.41896123,0.2638531,0.45045346,0.40471458,-0.7250293,0.10738647,0.3858263,-0.47423846,-0.0712769,-0.5306304,-0.07433407,-0.047359724,0.31114784,0.19727887,-0.03815686,0.004069766,0.300046,0.4259308,-0.010850549,0.021450039,0.051839527,0.21390635,0.021358414,0.35116836,-0.1050971,0.20646851,-0.26389673,-0.18044621,0.25504223,-0.39922297,0.14133269,-0.2713465,0.016770054,0.32540685,-0.2356995,-0.8448976,-0.57746917,-0.06593796,1.1248306,-0.19906637,-0.318263,0.3842452,-0.53339994,-0.18166214,-0.17792627,0.4189815,-0.07544995,0.04829167,-0.69563645,0.039243285,-0.17892888,0.036410194,0.04327134,-0.27369606,-0.41860586,0.8631046,0.044234872,0.5093612,0.3775049,0.042112395,-0.36403576,-0.4050355,-0.0641644,0.6234499,0.37810084,0.23893073,-0.09883881,-0.11282611,-0.19130291,0.06352267,0.17322353,0.6009586,0.68987477,-0.10012674,0.14164528,0.2237534,0.019470004,-0.008741269,0.060782436,-0.3047749,-0.020210322,0.07060344,0.6979951,0.8690271,-0.1300342,0.21024229,-0.17208345,0.36621696,-0.16086648,-0.37075642,0.3308096,0.67002517,-0.048630908,-0.1766703,0.5847574,0.6011928,-0.07629934,0.36038905,-0.5292763,-0.36716363,0.44677794,-0.13447748,-0.39908966,0.13676362,-0.36247152,0.13051604,-0.84555346,0.4224925,-0.2769841,-0.55936176,-0.4890343,-0.11993058,-3.331907,0.14892006,-0.29043004,-0.20199296,-0.031736817,-0.084262796,0.24007085,-0.6458901,-0.32709247,0.22959112,0.07369077,0.679696,0.038907316,0.03408392,-0.21555866,-0.30226326,-0.09821362,0.07489743,0.00034820117,0.17390767,-0.113660924,-0.3699608,-0.065756746,-0.24902947,-0.20581843,0.12234871,-0.35199922,-0.5117419,-0.15856239,-0.36399922,-0.35591,0.5555224,-0.37756795,0.063142456,-0.10938342,-0.08380957,-0.21180026,0.14840639,0.13943698,0.15776433,-0.11915596,0.115483746,-0.038107175,-0.33568624,0.3705156,0.080587216,0.51402265,0.40794915,-0.10334595,0.029449355,0.7133268,0.47209594,-0.16104317,0.8802102,0.44832292,-0.030198066,0.27989018,-0.15777133,-0.34679496,-0.44833463,-0.2788043,0.15107176,-0.24771592,-0.2771022,0.09027354,-0.4184148,-0.53129363,0.41237915,0.02647378,0.06754282,-0.029750952,0.098583385,0.46163642,-0.32695484,-0.113814145,0.00078631134,-0.16998744,-0.78207374,-0.23729931,-0.61048514,-0.3510167,0.10749744,0.9547361,-0.31028542,-0.018411666,0.08861833,0.024442453,0.15771468,0.17782345,-0.19979924,0.06722303,0.43626016,-0.095481105,-0.735105,0.5349543,-0.24664567,-0.18110472,-0.5320863,0.028751502,0.31892532,-0.6028829,0.5912987,0.30100173,0.10383158,-0.04933876,-0.5648189,-0.31361723,-0.09418878,-0.24511887,0.4022285,0.25927007,-0.8276809,0.3563175,0.2331914,-0.47087905,-0.6684607,0.45047528,-0.038743872,-0.4084714,-0.130413,0.14425841,-0.0037812178,0.029688615,0.053717468,0.06655186,-0.38933712,0.2621404,0.24553493,0.021414671,0.20402241,-0.15853368,0.044494517,-0.5733832,-0.006178448,-0.38631403,-0.302607,0.27018154,0.022653012,-0.031134052,0.14989218,0.07937172,0.33086526,-0.2578857,0.15969007,-0.08154494,-0.3109733,0.48956048,0.3755663,0.446209,-0.48295778,0.57090217,-0.020160824,0.03570551,-0.09727131,0.10426628,0.3609069,-0.038691558,0.17323357,-0.2175774,-0.21235381,0.22570907,0.9667329,0.10636003,0.34667775,-0.04310389,0.19468147,0.32573044,-0.0209755,0.13003436,0.27151683,-0.5552086,-0.10563533,-0.3066209,0.09698325,0.32191724,0.07990571,0.25959116,-0.019816756,-0.40381426,0.1277609,0.27234295,0.12099433,-1.1278561,0.29309514,0.087579146,0.7249315,0.5890416,0.078352876,-0.04586204,0.8833365,-0.13150644,0.08633289,0.2753619,-0.033942763,-0.46184632,0.59450114,-0.7508964,0.39216217,-0.050725617,-0.16384825,-0.19671535,-0.13778223,0.30825365,0.6422788,-0.26303464,0.0024278255,0.09699763,-0.33619946,-0.01989204,-0.49500492,0.014317971,-0.71850085,-0.21244925,0.4993407,0.42984736,0.37613523,-0.077636905,0.0024775588,0.08819175,-0.06938907,0.048655234,-0.01563572,0.046906646,0.050342016,-0.64830166,-0.07150157,0.57715565,-0.023251662,0.17771989,-0.11790054,-0.14456694,0.3097256,-0.28609392,-0.18225648,-0.11755837,-0.45587867,0.2587191,-0.28284097,-0.38521937,0.7576005,-0.1501302,0.21267447,0.3062247,0.14151451,-0.04774638,0.3277108,0.07386164,0.74113995,-0.20337826,-0.20833698,-0.36716557,0.18142898,0.07573543,-0.038065538,-0.10126583,-0.3030024,0.19074291,-0.35858396,0.4363665,-0.07249643,0.06454779,-0.07984298,-0.19171391,0.08275691,0.60538113,0.032815713,-0.18457168,-0.09546041,-0.13476315,-0.16024445,-0.17629863,-0.22860739,0.21152815,0.05886388,-0.014866618,-0.023400893,-0.23168813,-0.11729583,0.16257858,0.019105779,0.40533713,0.13475114,-0.05441346,-0.32085493,0.070650086,0.091399945,0.30416968,0.0122523755,-0.11366984,-0.336814,-0.4617168,-0.34474578,0.14029959,-0.04012637,0.24084578,0.04606841,0.010848867,0.9192137,-0.14068483,1.004067,-0.024323292,-0.30235815,0.073883414,0.5064039,-0.09290746,0.06411802,-0.2460843,0.7714477,0.4465623,0.055536173,-0.10101962,-0.30912507,0.2349051,0.15252198,-0.089073986,-0.14692242,-0.007294508,-0.57263845,-0.088549286,0.2365784,0.36042306,0.24740201,-0.109700784,-0.091730826,0.22408067,0.043796062,0.26321125,-0.45895672,-0.25988615,0.3227423,0.28336352,0.03501521,-0.032554492,-0.39873427,0.37442926,-0.36012918,0.010770449,-0.24743748,0.14290193,-0.23538734,-0.32850975,0.100060895,-0.19232838,0.39732757,-0.49120155,-0.20163797,-0.22693275,0.4168165,0.14274296,0.13137843,0.41465357,-0.23760289,-0.11899756,-0.05523672,0.4767103,0.7551727,-0.42371625,-0.14022508,0.5331826,-0.22838178,-0.5789301,0.20693396,-0.28635606,0.121796794,-0.11788073,-0.151007,-0.5204892,0.2288805,0.40021098,0.036449146,-0.049711235,-0.6046771,-0.25556546,0.3168557,-0.41721475,-0.2987592,-0.37950963,0.16966292,0.42859334,-0.12612677,0.014226435,0.15641788,0.20908825,-0.15869261,-0.44512287,-0.0036151523,-0.25409147,0.32614067,0.06511996,-0.3271728,-0.27418646,0.24853578,-0.33358085,0.26590303,0.15494926,-0.20351802,0.03222323,-0.29151586,0.18761417,0.88673306,-0.1573971,0.06851116,-0.46804062,-0.43199474,-0.73295915,-0.29144892,0.61283755,0.04544755,0.14306742,-0.5337109,-0.18104461,0.030023117,-0.011706031,-0.25101992,-0.11255347,0.4799202,0.08295868,0.3429472,-0.05461913,-0.6626924,0.11996538,-0.042791665,0.039422836,-0.45831713,0.3744942,-0.032638706,0.8477905,0.060393132,-0.062040623,0.21936128,-0.31222498,0.10694924,-0.18789695,-0.25829026,-0.5805616,0.112458535 +574,0.25823024,-0.0054817796,-0.31073985,-0.1282332,-0.53063196,0.098712236,-0.13768496,0.19586997,0.35281312,-0.3303991,-0.35753158,-0.2027952,-0.0614866,0.37524995,-0.059425186,-0.33439985,0.01843354,0.24748372,-0.9776656,0.41707468,-0.4511803,0.38925436,0.16358708,0.38680103,0.36891553,0.20716377,0.22657502,-0.06327938,-0.18544757,-0.12337165,-0.4871991,-0.04761679,-0.41724634,0.24545519,-0.35590878,-0.35562134,0.058256403,-0.6241742,-0.17073442,-0.7171857,0.19847433,-0.8835192,0.6049927,-0.13321559,-0.08705968,-0.19224383,0.6554646,0.3232893,-0.115042806,0.008796572,0.23295295,-0.23101492,-0.1635356,-0.28584042,-0.41337362,-0.33938995,-0.447675,-0.13953207,-0.5045246,-0.3512545,-0.24855019,0.24508882,-0.24257475,0.025078556,-0.04114282,0.3685042,-0.27051207,0.26527277,0.16135986,-0.25900757,0.020663058,-0.6120275,-0.08952093,-0.18964142,0.5366236,-0.019113556,-0.2736672,0.51202637,0.3696598,0.28516594,0.044417173,-0.18729381,-0.28534374,-0.2483632,-0.0043518147,0.5280309,-0.17077471,-0.22050191,-0.13002215,-0.049407925,0.48407856,0.5518082,0.14425395,-0.23416723,0.080054775,-0.2766187,-0.18956272,0.4528474,0.32641125,-0.29879698,-0.30342254,0.24311435,0.39687613,0.23265205,-0.32255694,-0.060955364,0.11597607,-0.51807886,-0.07614499,0.16039574,-0.1768011,0.50186205,-0.053271938,0.28908873,0.69612265,-0.17636389,-0.036957502,0.061385006,0.15183687,-0.1547309,-0.20964746,-0.3031436,0.12622581,-0.5347865,-0.07818857,-0.1185872,0.8007999,0.07941147,-0.5434696,0.3490232,-0.6021107,0.082380444,-0.034165602,0.3786324,0.68019223,0.59144366,0.353963,0.7577413,-0.17715369,0.14495932,-0.011536022,-0.14777309,0.0076204143,-0.3746791,0.3109347,-0.57546407,0.0053631566,-0.15438265,0.16140334,0.23710613,0.633457,-0.4011134,-0.26010242,0.23014982,0.8683292,-0.32194284,-0.22905111,0.68303823,0.9149451,1.0769244,-0.023926064,0.9189613,0.25986496,-0.26103437,0.091534674,-0.21474533,-0.6041346,0.15189706,0.24099092,-0.45646593,0.11002412,-0.13529317,0.0075673214,0.1327215,-0.35396242,0.037562262,0.03688248,0.11725026,0.16394554,0.06420192,-0.3415694,-0.5163624,0.017469486,-0.2062536,0.21933424,0.17720212,-0.39670947,0.37583104,-0.090989865,1.5993797,0.11880535,-0.0224234,0.022486366,0.6486918,0.18912964,-0.18481348,-0.30953345,0.27895167,0.20060772,-0.16484247,-0.46721926,0.18637036,-0.3449765,-0.2901685,-0.11037168,-0.4034435,-0.43979332,0.103204496,-0.25628152,-0.3194333,-0.06187545,-0.54581636,0.42891335,-2.7126179,-0.30161834,-0.0981748,0.34157494,-0.2531968,-0.24765997,-0.28986952,-0.6425767,0.30612472,0.006333865,0.48881778,-0.55897355,0.5132975,0.50634736,-0.5863978,-0.41563976,-0.7030992,-0.06475097,0.05423255,0.1434789,-0.13699414,-0.044013437,-0.04895998,0.12220549,0.6681755,0.06836963,0.1684355,0.53121966,0.449329,0.19090569,0.6902167,-0.13401768,0.7291228,-0.49599814,-0.21597487,0.31840268,-0.4123787,0.23775528,-0.20236863,0.07356844,0.83393794,-0.5167351,-0.79294854,-0.6472686,-0.23769474,0.8888264,-0.35085425,-0.349713,0.2178235,-0.4661909,-0.12578608,-0.024906596,0.92135566,-0.11419582,-0.01660107,-0.5062974,-0.023057967,0.03485409,0.28107682,-0.006200619,-0.08618826,-0.17954683,0.49253142,-0.025392896,0.7263984,0.10639852,0.15037341,-0.62482285,-0.22308187,0.1607898,0.844762,0.28436863,0.01671271,-0.06704881,-0.11589736,-0.42964792,-0.30168155,-0.0013750693,0.48225865,0.6750388,-0.05484884,0.16897255,0.43082008,-0.024846142,0.03192834,-0.15109451,-0.19121206,-0.09056631,0.05879778,0.3980206,0.54325,0.08014701,0.6848939,-0.15006067,0.3121196,-0.2936913,-0.52875346,0.5143781,0.32810012,-0.22363384,-0.04304226,0.5605584,0.5250395,-0.33987582,0.44225034,-0.6626106,-0.4356803,0.6832685,-0.117983945,-0.4771184,0.14468943,-0.29648054,0.18400635,-0.54449105,0.114556246,-0.2689784,-0.37618962,-0.2739122,-0.048024714,-2.2961445,0.17957099,0.020422151,-0.15493026,-0.21692352,-0.07380877,0.022508642,-0.46572125,-0.66261876,-0.00030629337,0.2006138,0.83510685,-0.079145044,0.17381698,-0.1552536,-0.343282,-0.21024977,0.26396397,-0.0299372,0.40136102,-0.21357785,-0.4741015,0.059035074,-0.08390174,-0.5543576,0.07392393,-0.7324784,-0.35631537,-0.08626909,-0.5572378,-0.40379074,0.69644946,-0.67790085,0.07189011,-0.37543392,-0.008642807,-0.08801717,0.14755936,0.20094447,0.14607418,0.093616486,-0.02344128,0.07430217,-0.2907093,0.44958344,0.021361709,0.41487584,0.16989489,0.28556547,0.31187382,0.33767867,0.7614173,-0.25764322,1.1703509,0.22137345,-0.16103469,0.18072437,-0.32595375,-0.26395097,-0.3540381,-0.06504988,0.10951666,-0.38876137,-0.46837226,0.12544698,-0.20759213,-0.7383867,0.6720876,0.15925832,0.28260037,-0.037292574,0.29894024,0.29613945,-0.32296786,0.11492121,-0.10109645,-0.120251335,-0.616961,-0.35808972,-0.51215655,-0.42289397,0.08553579,1.0218688,-0.437989,0.11648142,0.08561487,-0.44026437,0.0952655,0.11259979,0.022780886,0.3391533,0.4239421,-0.09070917,-0.70292777,0.24496996,-0.21263118,0.08307799,-0.43196118,0.15678422,0.7213092,-0.70009273,0.4357319,0.26313874,-0.075252414,-0.34425005,-0.45807353,-0.16661613,-0.15130274,-0.17811604,0.18998529,0.23074335,-0.7624492,0.40341768,0.15355451,-0.47634205,-0.7598405,0.2912147,0.049279016,-0.31992802,-0.10944763,0.31436434,0.3659153,-0.05054262,-0.16056736,0.15660281,-0.4011813,0.41154203,0.06318383,0.018528923,0.24967487,-0.3549117,-0.45070162,-0.7126245,0.2540785,-0.26520762,-0.44619927,0.4998012,0.045399535,0.12752524,0.4974135,0.15788046,0.1301911,-0.20900501,0.05109474,-0.06262896,-0.25388736,0.1426229,0.28870827,0.57996786,-0.41428447,0.535438,0.016309762,-0.11775548,0.32689187,-0.07163912,0.19353867,0.07971945,0.34846187,-0.10735322,-0.51255137,0.31924275,0.7831896,0.20412719,0.06895956,0.020685077,0.093402185,0.17159472,-0.07669,0.023453882,0.15561211,-0.59572184,-0.041159812,-0.33722243,0.19738452,0.41223285,0.18309946,0.30276465,0.08416191,-0.09203496,-0.038045865,-0.018836617,-0.18493421,-1.2303038,0.33713803,0.11118994,0.944393,0.406199,0.11228868,-0.24456763,0.8929077,-0.22233815,0.22497405,0.42072463,-0.061330978,-0.2582496,0.7283048,-0.49310076,0.73136187,-0.020287193,-0.043473843,0.14992349,0.09391647,0.37268457,0.95299417,-0.25250748,0.12455634,0.29408833,-0.2983587,-0.0002825459,-0.23410757,0.008699338,-0.68855745,-0.32707325,0.70102805,0.21219146,0.3521547,-0.12598458,0.032972354,-0.09392885,-0.25750068,0.1305412,0.05913195,0.10234391,0.00090964016,-0.57420117,0.14544316,0.52293545,0.0146642,0.1862278,0.011459991,-0.16772394,0.08863729,-0.29848436,0.13580243,-0.12961632,-0.67667454,0.14164111,-0.38782108,-0.5002505,0.31466812,-0.25059018,-0.020694142,0.17973834,-0.022564203,-0.03028071,0.74875516,0.47288653,0.69726664,-0.1476732,-0.07542882,-0.052025538,0.19896054,0.11331401,-0.27478704,0.24991226,-0.31104735,0.07458652,-0.6492066,0.6775937,-0.036158975,-0.4455247,0.11630996,-0.15945777,0.00028865537,0.5589015,0.07378987,0.005622556,-0.13772531,-0.13175459,-0.49607894,0.0103346305,-0.32941708,0.091230966,0.17317204,-0.03642741,-0.30745724,-0.31452474,-0.17896797,0.39253995,-0.24248414,0.5604293,0.19083823,0.21693122,-0.14988579,0.23133814,0.10524869,0.62236166,0.0569258,-0.007971545,-0.47920677,0.04516394,-0.27868384,0.49443832,-0.08905927,0.21384867,0.08776941,-0.4134059,0.8299207,-0.28918073,1.1124634,0.1524886,-0.3249514,0.02017796,0.4582343,-0.22423065,0.0475485,-0.23680288,0.7874656,0.42201528,0.06726069,-0.05548039,-0.33245608,0.014983982,0.34364796,-0.40507698,-0.26788193,0.08618095,-0.3817648,-0.2972714,0.14786811,0.08336113,0.35588503,-0.24299705,0.22773139,0.2863544,0.11021358,0.29314044,-0.42977008,-0.080676846,0.37224922,0.39469588,-0.12084353,0.1622778,-0.4926965,0.40841427,-0.7332695,0.15202507,-0.5074966,0.21112196,-0.40459976,-0.2684187,0.20977467,0.25601137,0.4292941,-0.15263006,-0.291073,-0.09353677,0.44021282,-0.026722157,0.31684825,0.5382977,-0.24534196,-0.08915051,0.008457974,0.5089197,1.0657443,-0.32209975,-0.05979239,0.23759699,-0.43315184,-0.644526,0.56857187,-0.4046204,-0.1247786,0.18212466,-0.28916597,-0.29679096,0.2849544,0.2818375,0.2634518,-0.12206372,-0.5066809,0.08727715,0.27398905,-0.17033845,-0.28714973,-0.35976687,0.24780197,0.5091956,-0.009010454,-0.19589283,0.0257562,0.4352012,-0.3153819,-0.49694106,-0.08846717,-0.20677757,0.30268937,0.059855524,-0.3644335,-0.27508694,0.007480444,-0.521754,0.08933615,0.056710023,-0.50877136,0.05130738,-0.20833533,0.04544274,0.97905344,-0.14644688,-0.1836407,-0.2575644,-0.5809434,-0.7220559,-0.37104496,0.05089773,0.18201791,-0.24972576,-0.37798914,-0.05062908,-0.20553267,-0.3981746,0.07186287,-0.428159,0.323356,0.19253449,0.38934532,-0.22662328,-1.0194508,0.13510185,0.11419168,-0.11598292,-0.5880143,0.4520227,0.016768664,0.980123,0.12828052,-0.2157924,0.2805545,-0.18390381,0.15260296,-0.3501719,0.022743225,-0.68834496,0.15041615 +575,0.6302332,-0.19617958,-0.5123554,-0.0061059156,-0.48593664,0.11925609,-0.3311963,0.14016317,0.41393915,-0.13774204,-0.3955885,-0.15352266,0.141906,0.0312931,0.023398595,-0.48482355,0.036041655,0.46806452,-0.94124585,0.5874742,-0.36700517,0.3459111,0.28290948,0.542,0.07159356,0.15863821,-0.013070651,0.0689997,-0.021671385,-0.28510123,-0.022054765,0.07343398,-0.769955,0.17667219,-0.42178398,-0.37011364,-0.22200546,-0.38874522,-0.32962963,-0.8243333,0.16736066,-1.1916534,0.67565006,-0.041503448,-0.31447873,-0.42363676,0.24065374,0.4294843,-0.22165944,0.12914462,0.2613275,-0.5668173,-0.38421518,-0.5006462,0.077719584,-0.37905183,-0.4867924,-0.059302203,-0.54064995,0.022206638,-0.14701316,0.20853718,-0.32182625,0.11122962,-0.23864402,0.35638472,-0.21294072,0.08550864,0.36894423,-0.2387668,0.101443924,-0.569245,-0.09276519,-0.10520037,0.62942606,0.1120113,-0.52582294,0.3900388,0.1106608,0.57913303,0.33626255,-0.4330146,-0.03414609,0.03006741,-0.027257653,0.4286702,-0.048794843,0.0339896,-0.21711977,0.052020933,0.644657,0.4308609,0.18558182,-0.15635839,-0.024296364,-0.2765829,-0.034110215,0.40720895,0.58546084,-0.09454522,-0.28195983,0.061481178,0.70629793,0.15764035,-0.2288048,0.17647232,0.09054906,-0.5428481,-0.12207586,0.12102199,-0.0014502747,0.59283465,-0.18528116,0.064669326,0.6891037,-0.16323021,-0.17659947,0.22755504,0.17294881,-0.032530546,-0.34080315,-0.22683968,0.39558023,-0.56268054,-0.15286115,-0.44659558,0.70303965,0.17957239,-0.49995035,0.36908704,-0.56943405,0.21850625,0.07975345,0.7233534,1.0558631,0.6930312,0.4296156,0.84204096,-0.030736744,0.19683419,-0.22084174,-0.13049805,0.17153303,-0.40910253,0.3258505,-0.44311038,-0.09858622,-0.38777146,-0.30734608,0.09060914,0.739388,-0.55715674,-0.2740777,0.23348248,0.6747574,-0.26428685,-0.13796885,1.0199538,1.034192,0.83494854,0.16154324,1.1764575,0.38327414,-0.25882396,-0.13417816,-0.026711391,-0.8267989,0.11566651,-0.02122939,0.008161579,0.42405272,0.1344563,-0.2069769,0.43599,-0.79411614,-0.01809791,-0.004697374,0.12324731,-0.11554773,0.046116095,-0.5303668,-0.1874688,-0.110294245,0.04809674,0.29448298,0.3725036,-0.22803746,0.38792354,-0.0754407,1.3429374,-0.11550497,-0.14390542,0.10497837,0.33490488,0.22945349,-0.16615745,-0.2132356,0.41802007,0.28405482,-0.108073235,-0.490761,0.16111578,-0.27258497,-0.20481381,-0.2608845,-0.19649994,-0.018354962,-0.1651841,-0.35319692,-0.53888637,-0.031548582,-0.44106045,0.27896243,-2.215398,-0.31131425,0.14503445,0.59705245,-0.3152699,-0.24944712,-0.2159638,-0.62776023,0.16550553,0.0810313,0.44393083,-0.8032115,0.54258806,0.56509674,-0.63945854,-0.24548616,-0.8970276,-0.001015859,-0.049079083,0.23963833,0.039751768,-0.35754874,-0.39449963,-0.052792966,0.5615017,0.047218714,0.090751946,0.7522765,0.47685644,-0.04073743,0.38599077,0.13266036,0.6297551,-0.305406,-0.37672716,0.42266035,-0.33693948,0.29121703,-0.11412697,-0.014665706,0.7840036,-0.4746697,-0.7032561,-0.5631291,0.033540983,1.0116316,-0.48618922,-0.49081802,-0.016930245,-0.5717006,-0.21264158,0.25159535,0.88211393,-0.18242119,0.10753155,-0.85288435,-0.1928583,0.0044549108,0.3640993,-0.047465634,-0.0049971365,-0.44858482,0.7490918,-0.31498042,0.62790245,0.109323315,0.36739,-0.2658008,-0.4540903,0.31357405,0.95851564,0.35634857,-0.06999504,-0.34606367,-0.25727764,-0.20879732,-0.22450005,-0.16023003,0.80733955,0.69213265,-0.20875272,0.25380754,0.42618206,-0.18127047,0.004544552,-0.09721061,-0.22659321,-0.22823535,-0.013830402,0.6647301,0.9914934,-0.07408701,0.5330208,-0.23125944,0.49262595,-0.12650004,-0.7301118,0.5833677,0.8650955,-0.35253882,-0.04189561,0.5513102,0.30358478,-0.50087553,0.5063053,-0.64113015,-0.44014195,0.3866237,-0.01738509,-0.4814065,0.43085042,-0.28421983,0.43857726,-0.78428304,0.42100453,-0.20438115,-0.44091034,-0.69656456,-0.021021273,-2.0109575,0.23715727,-0.25069922,0.028811475,-0.27104658,-0.37652227,0.21750845,-0.46363205,-0.5323721,-0.017038073,0.24365723,0.7615747,-0.16811109,0.164247,-0.17252903,-0.48277688,-0.09659256,0.21212564,0.3744757,0.31455848,-0.27293485,-0.30194643,0.041013893,-0.12851143,-0.28555948,0.021628967,-0.8634887,-0.6558032,-0.0037412005,-0.61545837,-0.29885104,0.5224572,-0.34539643,-0.03319799,-0.5419311,0.033415213,-0.0031156358,0.09189709,0.16749005,0.27605128,0.19132912,-0.076332584,0.0071913684,-0.27397797,0.36139423,0.000100904275,0.18397999,0.18306255,-0.049207296,0.283233,0.2964079,0.66138256,-0.32841152,1.1274698,0.4086995,-0.16588712,0.053753573,-0.23659304,-0.6032756,-0.59454095,-0.12997517,-0.093875006,-0.6327022,-0.26591352,0.082490705,-0.43030554,-0.9965544,0.61094517,0.02997647,0.05360634,0.098699674,0.6388325,0.6642639,-0.071398,-0.12189678,-0.057012618,-0.318858,-0.50818646,-0.36869547,-0.4648571,-0.48206612,-0.16021928,1.1958811,-0.21916294,0.3064575,0.25112948,-0.26567593,0.08940763,0.20329335,-0.021119306,0.061230797,0.9074774,0.08554066,-0.44825655,0.27807215,-0.22264226,-0.13577226,-0.6856203,0.44829136,0.67964166,-1.0228356,0.6196336,0.49438137,0.03368939,-0.1814986,-0.45979837,-0.13306214,0.041163035,-0.22712652,0.47844872,0.24047518,-0.68324214,0.42537233,0.27385718,-0.33906367,-0.7336553,0.22049253,-0.14279126,-0.5726963,-0.09453331,0.42465773,-0.19334105,0.0520202,-0.30097553,0.127924,-0.28690678,0.21020555,0.06955833,-0.25945073,-0.004513619,-0.30329233,-0.33843368,-0.72456443,0.13943465,-0.61064166,-0.4388237,0.26754937,0.20859022,0.008326663,0.3858885,0.47355717,0.4146501,-0.37217075,0.10784573,-0.28995255,-0.43405965,0.30000597,0.46133786,0.4346006,-0.4731098,0.5015705,0.08421524,-0.31273466,0.01806678,-0.052749276,0.4112277,-0.13931812,0.3507832,-0.12908046,-0.119820826,0.23357524,0.7256742,-0.05509228,0.63612187,0.22512433,0.028080652,0.3286216,-0.03075774,0.2198532,-0.27913806,-0.5577951,0.033797625,-0.16560431,0.18433094,0.35170332,0.41892782,0.32765946,0.031109154,-0.1867698,0.013450068,0.12060467,-0.05699311,-1.5961418,0.28768247,0.27130088,0.8327345,0.31482813,0.10207578,-0.21449633,0.55949116,-0.29350123,0.113080546,0.26759666,0.003124403,-0.0771011,0.6211296,-0.5080936,0.49417147,-0.12228518,-0.045941524,0.13379563,0.063127026,0.34636182,1.0361536,-0.29657266,0.16232422,-0.0845225,-0.069452,-0.10814099,-0.30504316,0.075250566,-0.63409805,-0.5089492,0.9197716,0.25607795,0.6863149,-0.33333847,0.045028258,0.010472126,-0.2345848,0.3891501,-0.024390923,0.009545388,0.23503964,-0.5722586,-0.06770302,0.5386738,-0.24117617,0.005991923,-0.033828855,-0.089366876,0.03751735,-0.09946327,0.02009021,-0.13509564,-0.86348915,-0.079254806,-0.5632283,-0.46207795,0.45997688,-0.11937423,-0.0033447084,0.3385871,0.038127203,-0.08912208,0.5279184,0.066314645,0.93836105,0.2779511,-0.23356156,-0.23241296,0.20844495,0.40535858,-0.33910322,0.23037995,-0.24117573,0.4277954,-0.565578,0.70756453,-0.16148217,-0.58401936,0.103212155,-0.18395136,-0.1364332,0.35973915,-0.19923364,-0.028391035,0.37802026,-0.06618905,-0.37951797,-0.041913442,-0.36105162,0.18720399,0.34845024,-0.24934591,-0.14999898,-0.15743585,-0.071035914,0.57669497,0.08629823,0.5104915,0.5192066,0.072582364,-0.21845365,0.15891878,0.2959191,0.591033,-0.08998033,-0.18770166,-0.6015058,-0.4026758,-0.29115075,0.46419254,-0.026453963,0.12265343,0.25579613,-0.07782209,1.1061304,0.11946707,1.1756661,0.0011588745,-0.37559894,0.075409584,0.56685185,-0.13381423,0.04539563,-0.5079961,1.0492982,0.45149878,-0.24173129,0.062281072,-0.552752,-0.18184015,0.4226193,-0.3174092,-0.010800472,-0.2273815,-0.6214981,-0.36321315,0.1118712,0.3303227,-0.020635894,-0.24591604,0.32797056,0.26488736,-0.1748615,0.025111869,-0.72004455,-0.23079069,0.46950242,0.19509436,-0.24874626,0.20733085,-0.29199696,0.45238122,-0.75751257,0.03593528,-0.5285121,0.04992784,0.18049313,-0.38976866,0.10650065,0.13700843,0.2299563,-0.6919524,-0.18973601,-0.21352126,0.49096152,0.24719824,0.20189479,0.6463066,-0.2623327,-0.11300428,0.1670507,0.6115666,1.3213208,-0.32807776,0.15845172,0.10813502,-0.3606221,-0.5483195,0.47783732,-0.29263014,-0.096243896,-0.14673932,-0.531954,-0.65565735,0.2700786,0.15403649,0.107074074,0.009629054,-0.52976733,0.010834694,0.31303543,-0.27946335,-0.064495996,-0.16685413,0.2092075,0.5566685,0.123198405,-0.3656645,-0.12053765,0.25587016,-0.35795784,-0.33194658,-0.14625154,-0.46330193,0.16412576,0.03834027,-0.35204628,-0.22434223,0.03764067,-0.62960726,0.06435752,0.37107685,-0.24896458,0.18241335,-0.2622714,0.03763449,0.9424411,-0.1741271,-0.013445326,-0.41823485,-0.6895363,-0.8399639,-0.27645212,0.0017958283,0.26358145,0.07123633,-0.55538243,-0.100915216,-0.11913304,-0.2928409,0.11881101,-0.49771532,0.37999606,0.34902257,0.39293304,-0.45183596,-1.0664896,0.21395461,-0.020098979,-0.5409499,-0.5532324,0.46740502,0.07809909,0.83295333,0.07266058,-0.06287686,-0.012847845,-0.5447584,0.21352601,-0.2216821,0.11119362,-0.8233226,-0.19290498 +576,0.5890892,-0.2000686,-0.5983676,-0.23406166,-0.22933213,-0.022515833,-0.17893875,0.42591,0.29938233,-0.61592555,-0.05979056,-0.18933588,-0.041763086,0.40327048,-0.1464606,-0.7415271,-0.0017602555,0.120383315,-0.5089557,0.5872653,-0.44370586,0.30358297,0.1427166,0.38231277,0.13582453,0.2578746,0.15342537,-0.15451159,-0.17847583,-0.07879473,0.10079104,0.18598002,-0.68929255,0.14437705,-0.096847534,-0.3457873,-0.11008037,-0.3264109,-0.444965,-0.78250384,0.2845118,-0.8412618,0.51820654,0.00032930076,-0.38531354,0.101768896,0.22909476,0.40091074,-0.17174315,0.04713645,0.17623895,-0.1411058,-0.15910856,0.049833506,-0.2529881,-0.5672877,-0.63199556,0.10271862,-0.5041493,-0.19434261,-0.28848132,0.20433997,-0.43165982,0.045871265,-0.14874673,0.72502047,-0.34274256,0.033496615,0.49110824,-0.12907033,0.41969064,-0.55814016,-0.08462863,-0.2090658,0.12358201,-0.1462107,-0.3119505,0.18648297,0.3361264,0.6020355,0.11058536,-0.3508628,-0.29997706,0.008718297,0.25445172,0.19589642,-0.24287426,-0.56713766,-0.2506281,0.059905335,0.32100558,0.123915665,0.1644161,-0.34545037,0.0007850006,0.26881725,-0.25334057,0.5901841,0.56923205,-0.19091812,-0.2000671,0.19973889,0.5461218,0.23021315,-0.1303463,0.23248394,0.016724637,-0.53620756,-0.15500867,0.19822602,-0.22137168,0.46574724,-0.26741076,0.20175074,0.7084892,-0.24700382,-0.006748289,0.15907937,-0.076035485,0.09125709,-0.41511992,-0.16589114,0.33798453,-0.61819804,0.114270836,-0.3093584,0.8155747,0.1784086,-0.68202096,0.33957404,-0.5637313,0.26383263,-0.059350938,0.56655276,0.8116893,0.43557423,0.22525641,0.80890644,-0.5382019,0.09723821,-0.22456807,-0.39417472,0.17569914,-0.3280535,-0.05363685,-0.42241442,-0.119872645,-0.046907585,-0.2067653,-0.0039136857,0.32658243,-0.65114343,-0.08767556,0.11156211,0.93392277,-0.23624292,-0.09485197,0.8543627,0.97905797,1.0079237,0.074313454,1.3461707,0.26636016,-0.23825343,0.29041123,-0.2843711,-0.82490396,0.45342338,0.34397447,-0.16692121,0.3582245,-0.02810248,-0.008091226,0.47040302,-0.49116337,0.10000838,-0.21828285,0.33750638,0.08040463,-0.25384748,-0.46626246,-0.056152966,0.0017660931,-0.04146628,0.041022263,0.17717257,-0.046926856,0.37697148,0.010420218,1.3093606,-0.26593253,0.05707058,0.09752256,0.4892866,0.2234613,-0.18540922,-0.043018322,0.13466984,0.29922724,0.23742908,-0.64502496,0.0032593533,-0.3466152,-0.47962078,-0.29525745,-0.3317631,0.044323526,-0.16787393,-0.39146987,-0.24725813,-0.14620654,-0.26998097,0.37858716,-2.5423472,-0.30539253,-0.2290149,0.2577312,-0.45669684,-0.36571205,-0.029040113,-0.5533081,0.46834686,0.36971036,0.49681616,-0.67540634,0.4576983,0.43271512,-0.5383756,-0.03905703,-0.8311937,-0.09666549,-0.1600607,0.38302743,0.07869439,-0.2644422,-0.08750364,0.20896462,0.5058576,-0.016264934,0.12142648,0.17918193,0.31138206,-0.015408374,0.60890687,0.040657423,0.5712348,-0.3404408,-0.21128242,0.42323685,-0.37228882,0.1230305,0.070315555,0.11973115,0.41123304,-0.45078146,-0.9446785,-0.7808574,-0.3592361,1.0338522,-0.14892375,-0.45058608,0.33717775,-0.46437103,-0.24949291,0.02111809,0.4273616,0.051973227,0.10680312,-1.0048702,0.089012995,-0.12569371,0.00851424,-0.0044781864,-0.06769699,-0.38312885,0.75492066,-0.19283047,0.33377331,0.4395935,0.21427989,-0.35937908,-0.5871724,0.047428645,1.2017637,0.41448307,0.21762845,-0.24327904,-0.26511028,-0.4501984,-0.08214882,0.026799962,0.5256526,0.8653494,-0.08666919,-0.0155647695,0.2755936,-0.09780209,0.18933743,-0.13225722,-0.4607998,-0.16641787,-0.09142858,0.6309335,0.51115274,-0.22500032,0.565892,-0.045756377,0.3682698,-0.15908849,-0.50304294,0.60352135,0.93695843,-0.24497813,-0.3862761,0.6526559,0.41659582,-0.3582319,0.5762291,-0.570838,-0.3125907,0.41266304,-0.07666491,-0.57686937,0.2413066,-0.530359,0.23452741,-1.0914382,0.36098862,-0.4691128,-0.47597054,-0.56505805,-0.23603293,-3.2898788,0.29004636,-0.33760783,-0.07523896,-0.18685395,-0.004565574,0.36101604,-0.5580521,-0.7970774,0.14862591,0.08164777,0.7368453,-0.11803989,0.14486408,-0.22562248,-0.19353306,-0.33840826,0.18894821,0.35020727,0.16772883,-0.017429475,-0.57798755,-0.07610783,-0.16211212,-0.41905978,0.08659232,-0.6416763,-0.6048921,-0.24120677,-0.6268021,-0.28790465,0.73985803,-0.29469657,0.023941867,-0.22801337,0.11380878,-0.01522639,0.40914205,0.059823934,0.17521903,0.17255163,-0.06533481,-0.049893126,-0.31659555,0.11335621,0.1582296,0.39985788,0.29550675,-0.25788558,0.3425447,0.6875131,0.88115597,-0.032898225,0.9381517,0.6617218,-0.07203431,0.4291582,-0.28129748,-0.36500937,-0.63740027,-0.17680201,0.036509227,-0.48810464,-0.40941918,0.08416028,-0.4022687,-0.8769498,0.6721581,-0.002475869,0.15228401,-0.13924903,0.20647313,0.43859398,-0.21027765,-0.022537336,-0.09047499,-0.22364017,-0.53432,-0.23732692,-0.62688166,-0.6609175,0.051533617,1.1115708,-0.13410999,0.10423889,-0.040709637,-0.17082775,0.011993311,0.105918154,0.00966578,0.06351787,0.54973084,-0.06235592,-0.6337208,0.350966,-0.03364496,-0.104971305,-0.64642733,0.24730355,0.7785602,-0.57645935,0.62518865,0.3841375,-0.011818297,-0.13601501,-0.5811026,-0.08853845,0.11329629,-0.24983703,0.5766267,0.22155194,-0.77281445,0.3887081,0.4368991,-0.23377497,-0.7423059,0.4794725,0.037748933,-0.078749344,-0.051124513,0.36427638,0.03638337,0.019625809,-0.19595447,0.25375807,-0.442034,0.22470064,0.44380134,-0.17495604,0.41653723,-0.2352149,-0.22240141,-1.0025403,-0.09287229,-0.59452873,-0.25799227,0.28816393,0.12861201,0.09683025,0.22322482,0.123316824,0.46849304,-0.12810358,0.08301127,-0.17788297,-0.42745733,0.45464906,0.54489166,0.33218652,-0.57456255,0.64718395,0.12504494,-0.19433811,-0.078644365,-0.03573798,0.6140777,0.0069253556,0.47211316,0.16226646,-0.14724629,0.31875074,0.9478196,0.041965324,0.52910453,0.22313285,-0.06958874,0.25016505,0.14443168,0.042383876,0.08448546,-0.5862342,-0.09203512,-0.08955613,0.20746179,0.43160358,0.1456972,0.3359539,0.013551738,-0.375629,-0.030375805,-0.06372566,-0.0076695937,-1.6085268,0.43330306,0.30265415,0.73454314,0.5204376,0.16288596,0.0557163,0.642828,-0.17733033,0.17622866,0.41120338,-0.017962836,-0.42343634,0.56972,-0.75690055,0.4725806,-0.080278575,0.05997335,0.014263542,0.031221211,0.5578009,0.8493547,-0.098386586,0.10068859,-0.19198702,-0.29952392,0.32275257,-0.41813117,0.1586625,-0.3912918,-0.25746682,0.7152585,0.50212175,0.34497938,-0.19741456,0.0122259,0.20656517,-0.074951336,0.2112662,-0.15343942,-0.0563186,0.044987287,-0.64390874,-0.28299665,0.4515119,0.26893747,0.14075798,-0.04173261,-0.18639824,0.21957234,-0.06624965,-0.10944612,-0.08136058,-0.66980004,-0.15624733,-0.39711553,-0.53791416,0.38376147,-0.2625579,0.21728048,0.14243953,0.10081985,-0.38258523,0.24300183,-0.04635209,0.62696743,-0.030391261,-0.20589837,-0.29297727,0.13955978,0.21103749,-0.2668839,-0.14406742,-0.3316058,0.102955304,-0.62127227,0.5047579,-0.14692423,-0.45151526,0.2056753,-0.14109123,0.056778662,0.40863878,-0.34895408,-0.17909974,0.25095305,-0.1689451,-0.1067653,-0.26260772,0.054027323,0.35905468,0.16685429,0.032453366,-0.12500603,-0.14194989,-0.07054394,0.4992469,0.07359575,0.30365062,0.4722999,0.12390641,-0.46460652,-0.10421114,0.3540824,0.5912633,0.09389253,-0.09259355,-0.3184386,-0.38268527,-0.3478022,0.19080566,-0.016850226,0.32883286,0.102894954,-0.42301047,0.9610723,0.1974683,1.4115216,0.03904257,-0.43641287,0.076054305,0.3466843,-0.039824348,-0.0859773,-0.47391412,0.93859684,0.5779059,-0.2617734,-0.11046122,-0.6083766,0.017484196,0.10211141,-0.25220504,-0.15804885,-0.051128224,-0.6799681,-0.28407538,0.29442453,0.33045703,0.12881392,-0.13226452,0.16162129,0.110970974,-0.056123033,0.46997973,-0.60461885,-0.028724853,0.16942069,0.4070586,0.044138204,0.056138948,-0.490628,0.35504413,-0.6434029,0.166255,-0.18969475,0.14086734,-0.07447791,-0.39037707,0.29355097,-0.03660798,0.35590088,-0.39666897,-0.36054668,-0.26983836,0.6060203,0.07548933,0.04577828,0.7615965,-0.26332203,0.053036384,0.23708017,0.60715127,1.1523252,-0.14928243,0.06084211,0.27873465,-0.2041567,-0.7201881,0.33580235,-0.35924092,0.29864603,-0.07927826,-0.44191828,-0.5372509,0.2268592,0.19599864,-0.07920509,0.06660408,-0.6164198,-0.33228987,0.35995704,-0.42972198,-0.23156035,-0.1906807,0.07907508,0.5182145,-0.2225506,-0.29823875,0.044360436,0.4477627,-0.22704785,-0.560397,-0.25717345,-0.2470605,0.33717,0.18374014,-0.37437397,0.011713374,0.08625468,-0.50059605,0.06389435,0.2679258,-0.40958703,0.029800087,-0.22096641,-0.20884353,0.7956103,-0.014606798,0.21989831,-0.5597357,-0.42184603,-0.9386667,-0.2545323,0.39169067,0.14907223,0.08248682,-0.60019326,-0.053037874,-0.16477254,0.11124322,0.09144841,-0.5124732,0.43254733,0.17501935,0.5987989,-0.07481361,-0.71755636,-0.08800026,0.27057064,-0.131196,-0.6009686,0.5826792,-0.033022497,0.9554458,0.12674862,0.19840789,0.35277724,-0.61043817,-0.05751456,-0.15722632,-0.26909545,-0.77622503,-0.01165954 +577,0.30875695,-0.23732068,-0.5509156,0.020380475,-0.07775757,0.21573271,-0.16042471,0.2370437,0.33943087,-0.3140556,-0.2869775,-0.24967133,0.03108962,0.14938688,-0.12839308,-0.6080162,-0.039513987,0.3841324,-0.69723874,0.6247476,-0.20017453,0.38167328,0.16987307,0.28259277,-0.19308577,0.10899686,0.17674303,-0.19754337,-0.011069997,-0.1752719,0.033462103,0.16042128,-0.72617173,0.29803532,-0.55062807,-0.41371223,0.02395503,-0.41389358,-0.35791743,-0.8616202,0.31479168,-0.6057746,0.78389,0.2430554,-0.22076088,0.091235444,-0.059791572,0.35040754,-0.14591067,-0.021778408,0.19737607,-0.084534526,-0.19315046,-0.29950133,-0.10122065,-0.24640599,-0.5931551,0.17386627,-0.42783633,0.10735299,0.047664046,0.25248474,-0.09782236,0.15672965,-0.23033835,0.41490257,-0.4346089,0.12325244,0.31824362,-0.089824006,0.1259662,-0.55042994,-0.04118338,-0.07855174,0.341714,-0.2064736,-0.17626145,0.17746201,0.007232261,0.727817,-0.012938603,-0.2820123,-0.0062082605,0.10427625,-0.18095607,0.60239285,-0.16800708,-0.22115935,0.05349541,0.016097583,0.3254129,-0.004092155,0.029667366,-0.3274515,-0.083820485,-0.45719415,0.02122105,0.13025256,0.6856677,-0.37393227,-0.16089816,0.19962679,0.5914565,0.115316786,0.13804054,0.016613288,-0.022812216,-0.5253016,-0.21190023,-0.19139606,-0.3077919,0.6490657,-0.11219948,0.17853087,0.3760678,0.071468815,-0.106693715,0.18272549,0.048611864,0.046948437,-0.093550205,-0.5131338,0.47397944,-0.38039038,0.055988837,-0.29459298,0.48457634,0.11313565,-0.65314454,0.4204368,-0.50095284,0.13493507,0.24736223,0.6549016,0.6768552,0.57801753,0.14272204,0.5982813,-0.5261807,0.11637611,0.04330199,-0.10527272,-0.009147707,-0.09028278,0.015975833,-0.43576905,-0.04664735,-0.18043266,-0.18382664,0.07660591,0.2611586,-0.7334806,-0.18833233,0.044510677,0.73411644,-0.22130762,0.042583276,0.8984998,1.0798584,0.8608481,0.02389109,1.2696856,0.35108408,-0.30779395,-0.09423815,-0.21001281,-0.77169216,0.05849112,0.22792415,-0.15362176,0.50610274,0.13599914,-0.19531833,0.50256336,-0.78869647,-0.07847865,-0.08912552,0.15883023,-0.16515715,-0.059592508,-0.41019338,-0.13379188,-0.05173064,0.007262202,0.22321743,0.2765981,-0.29152817,0.2918953,0.23864177,1.278384,0.006237356,0.07697312,0.19608341,0.08385578,0.2279497,0.02895184,-0.14303507,0.28020057,0.26842928,-0.1354166,-0.37022933,-8.608699e-05,-0.31450573,-0.22217448,-0.3069296,0.099292345,-0.09240966,0.093743704,-0.3874832,-0.3612576,-0.15477608,-0.18208441,0.267108,-2.3976054,-0.27875438,-0.092753544,0.5635427,-0.356765,-0.30749854,-0.10918541,-0.5103745,0.42617834,0.29942995,0.18837102,-0.62550175,0.31059062,0.34749037,-0.6133396,-0.22478034,-0.49930948,-0.05378728,0.118503965,0.19512777,0.05648091,-0.14491293,-0.03789967,0.01841266,0.21220715,-0.18633607,0.0014980823,0.40300083,0.39017183,-0.016731199,-0.019689139,0.11694424,0.49014297,-0.4409235,-0.110989414,0.41778454,-0.36657575,0.30880007,-0.30414227,0.09712258,0.35038173,-0.40890482,-0.48978838,-0.54311466,-0.19212088,1.0349672,0.0325796,-0.4342481,-0.058551725,-0.19449463,-0.27344942,-0.061776917,0.6247255,-0.1961574,0.08984327,-0.8809312,-0.2067225,-0.07276475,0.5115566,0.123275846,0.06224127,-0.69402605,0.5784663,-0.15292431,0.41871956,0.5958113,0.32212335,-0.23970181,-0.5746766,0.15561633,0.96350783,0.53127116,0.12405588,-0.19219358,-0.00824819,-0.19522366,-0.02106743,-0.1908659,0.7129907,0.60977674,-0.17959747,-0.0647892,0.244464,0.21213225,0.120977394,-0.26786283,-0.37305415,-0.14142475,0.03266246,0.61546886,0.84394735,-0.34202766,0.045256678,-0.094921626,0.56654644,-0.14931239,-0.48324922,0.5028548,1.0408088,-0.21037538,-0.042978983,0.6573549,0.23960139,-0.2664522,0.44006214,-0.82553935,-0.5124615,0.4101244,-0.06327049,-0.48992112,0.22749239,-0.2622321,0.22017483,-0.8569752,0.6063887,-0.1553784,-0.1040317,-0.80795187,-0.11754202,-1.7949547,0.18372704,-0.41390812,0.1504069,-0.06970821,-0.06851111,-0.0030867895,-0.48137733,-0.6394722,0.23777552,0.08460213,0.3375456,-0.13112755,0.25302154,-0.09203663,-0.49118474,-0.1403241,0.31054,0.34065354,0.16872296,-0.09279574,-0.3018907,-0.06052347,-0.0913714,-0.13878576,-0.020103374,-0.6487025,-0.37958303,-0.24560426,-0.668917,-0.083635256,0.5057735,-0.35868347,-0.005371928,-0.2941141,-0.02213604,-0.038024902,0.17478947,0.15418641,0.2821516,0.040797565,-0.10983152,0.026413647,-0.29576862,0.29928428,0.14535053,0.069769576,0.3680803,-0.19705552,0.113422886,0.12998027,0.90153337,-0.14946267,0.66935617,0.46311855,-0.10061861,0.2982648,-0.17156452,-0.45906308,-0.51935947,-0.24597107,0.031469658,-0.33074743,-0.3378603,-0.103685535,-0.5065046,-0.74955446,0.4218085,-0.121585384,-0.16824761,0.16536249,0.27098784,0.5265313,-0.36835453,-0.062271748,-0.05080213,-0.027995484,-0.3616832,-0.2864399,-0.41252604,-0.42568982,0.053158727,1.10739,-0.022471985,0.23603389,0.2801949,0.01955978,0.014550511,0.12491504,0.09873848,0.08163194,0.62078315,-0.08539912,-0.64751357,0.35280043,0.011757779,-0.4533725,-0.6553782,0.3733365,0.5216087,-0.6952555,0.5120479,0.5170691,0.0073513826,-0.08218776,-0.4939698,-0.19926356,0.11182262,-0.27727333,0.36368644,0.14704797,-0.28926516,0.2632314,0.2562749,-0.3290424,-0.91848904,0.44327745,-0.0027703205,-0.605399,0.10542736,0.46940354,-0.21654813,0.038193814,-0.09217066,0.08316677,-0.1413496,0.20373707,0.0956423,-0.22902384,0.2545434,-0.4542141,-0.115322046,-0.96887964,0.23813233,-0.6237573,-0.37991816,0.22129545,0.1206876,-0.10253919,0.15845622,0.2943081,0.5194014,-0.36697206,0.14784545,-0.16895501,-0.3008422,0.38052547,0.38049126,0.39451092,-0.29214084,0.58353215,-0.094728105,-0.011761779,-0.38824856,0.08526671,0.4528677,-0.114576206,0.27624387,0.12290964,0.10837509,0.19101359,0.61310446,0.14635988,0.35444894,0.24401043,-0.100552,0.21011576,0.05251195,0.024707533,-0.077834256,-0.4529288,0.06840513,-0.12758408,0.010935041,0.42934623,0.23878829,0.4577758,-0.19628035,-0.48049024,-0.0065149567,0.2901959,0.24794634,-0.9537984,0.12679379,0.07089831,0.70068604,0.5220641,0.27551812,0.036733177,0.4603505,-0.13396484,0.038553525,0.3857851,-0.06865587,-0.21791573,0.4684265,-0.45935196,0.41354102,-0.020807164,-0.01751829,0.056545556,-0.17880109,0.18695037,0.8107521,-0.13789962,-0.056508437,-0.17901729,-0.06897602,-0.03999362,-0.44022855,0.2707835,-0.43183377,-0.46157494,0.7736176,0.36928004,0.33497033,-0.3155926,0.13001898,0.081611685,-0.17881319,0.22933514,-0.023690943,0.20620058,0.08597153,-0.502122,0.036384534,0.50316554,-0.07522722,-0.09394882,-0.049317397,-0.22909828,0.11315915,-0.27450985,0.0014397621,-0.04451101,-0.9394423,0.027865108,-0.40045387,-0.16432495,0.58292603,0.05311271,0.18829659,0.07964978,0.10609916,-0.46332327,0.36529955,-0.1273016,0.8426796,0.40358713,-0.07492551,-0.16536264,0.46132082,0.27768594,-0.2598599,0.30697045,-0.2377331,0.25238138,-0.5684318,0.41875497,0.17453334,-0.10912761,0.073705226,-0.19498275,-0.025232488,0.51378137,-0.17941692,-0.22885376,0.28252602,-0.1233543,-0.21183176,-0.28609765,-0.23318526,0.15376534,0.4254139,0.08984542,-0.077321865,-0.122767575,-0.44337854,0.5232205,0.1873321,0.29044473,0.46696955,-0.026965046,-0.47554347,0.10007569,0.0028649806,0.37434858,-0.10908322,-0.23592915,-0.22526945,-0.66028976,-0.3063315,0.2589693,-0.15772691,-0.008799124,-0.019013064,0.0843839,0.8461443,0.3204705,1.1517533,-0.018695457,-0.16455005,0.0952424,0.51884925,-0.018593272,-0.10142032,-0.5231334,1.2538445,0.5636701,-0.013622617,-0.07398537,-0.06948369,0.047553502,0.07240848,-0.08541016,0.008189702,-0.025112264,-0.58271855,-0.29062957,0.11233744,0.42498967,-0.17274027,-0.08711884,0.11478182,0.10815137,-0.056793258,0.27125868,-0.5304956,-0.14045702,0.40189824,0.12559931,0.013859517,0.21315853,-0.36363462,0.5007908,-0.44936934,-0.10480785,-0.4702214,-0.11083461,-0.17330518,-0.31109968,0.22652458,0.1301097,0.2486796,-0.69730747,-0.31212664,-0.38920414,0.21399908,0.25107196,0.043890648,0.58270395,-0.14461906,-0.09121613,0.053301208,0.5714465,0.9181402,-0.48418587,0.13768409,0.35253653,-0.44745195,-0.49675757,0.22122195,-0.17225622,-0.09647258,-0.22898223,-0.21614389,-0.5533932,0.15586954,-0.04637867,-0.07601942,0.07173834,-0.82869405,-0.03693197,0.3402783,-0.35844052,-0.090085946,-0.27146503,0.23696774,0.7532984,-0.119608484,-0.44930997,0.04372888,0.19328038,-0.3652681,-0.8128728,0.0046399315,-0.44282493,0.21353486,0.19771074,-0.22662917,-0.27527043,0.24351908,-0.5549062,-0.004639558,0.31504872,-0.4154654,-0.062618025,-0.35130814,-0.06409898,0.7001963,-0.09384561,0.13737965,-0.5197547,-0.39380997,-1.2113746,-0.2642487,0.46410522,0.28296965,0.10271514,-0.8266974,-0.087110676,-0.27232197,-0.108240195,0.041815814,-0.0629107,0.37401542,0.35214588,0.64689696,-0.34437168,-0.88213295,0.08856284,0.036660507,-0.38638318,-0.34303126,0.2020476,0.3800115,0.8403492,-0.055757858,-0.023849169,0.40861008,-0.825923,0.13935511,-0.16004257,-0.115079165,-0.663573,0.0068027335 +578,0.5631794,-0.18610334,-0.63841903,-0.15219802,-0.3376785,0.113472715,-0.25132173,0.63303936,0.24251544,-0.5905495,-0.28256452,-0.20788836,-0.06658968,0.53314495,-0.18187504,-0.67204463,0.025385298,0.11375891,-0.5092734,0.47517666,-0.3802408,0.2580156,0.18432382,0.41033933,0.28770405,0.24210289,0.21593422,0.027130716,-0.21907762,-0.2421665,-0.0870444,0.12867185,-0.79801446,0.108062044,-0.18009862,-0.38294014,-0.13466729,-0.3765911,-0.28914303,-0.8353172,0.33030704,-0.89612985,0.5600221,-0.15670958,-0.31563032,0.15840858,0.16469975,0.35730827,-0.23777655,-0.01847624,0.06613573,-0.06762272,-0.11123125,-0.030432027,-0.25641188,-0.3421731,-0.65738267,0.110951945,-0.39654365,-0.1685879,-0.25550747,0.19430935,-0.29101044,0.34054714,-0.1172512,0.48423105,-0.4077343,0.0058721006,0.39687836,-0.20795627,0.14833164,-0.64110297,0.028657341,-0.25075212,0.19973251,-0.03594597,-0.21965155,0.34069148,0.3061444,0.54329526,0.20789571,-0.37806553,-0.3025752,-0.072820365,0.13064641,0.36361545,-0.15300551,-0.3798846,-0.24449699,-0.105242714,0.31134158,0.17357285,0.23844482,-0.32974863,-0.09556766,0.03769624,-0.3739017,0.31385073,0.48023218,-0.33229902,-0.23561338,0.3685441,0.4806109,0.096695796,-0.09599431,0.11495894,0.012187259,-0.6430717,-0.14595607,0.06523456,-0.2213881,0.53944224,-0.12768386,0.22195895,0.69108295,-0.19402535,0.0348474,0.109205544,-0.1419862,-0.239363,-0.42960727,-0.23844343,0.16011359,-0.54571146,0.20305392,-0.17217262,0.8560807,0.2371689,-0.73565096,0.34865448,-0.5398913,0.14487638,-0.13147563,0.46795157,0.7072539,0.5556216,0.16213277,0.7560142,-0.3420601,0.09942372,-0.19973245,-0.36875477,0.08196516,-0.29191083,0.049687684,-0.34767348,0.058553092,-0.15405314,-0.04684944,0.03573684,0.47540322,-0.4710226,-0.14248551,-0.0852994,0.8537127,-0.31987324,-0.16027609,0.80833036,0.82984334,1.0384836,0.06384693,1.1818525,0.33054268,-0.09903662,0.23494142,-0.09764572,-0.695835,0.39686108,0.3549968,-0.20693666,0.2723552,-0.028794909,-0.032667458,0.5408758,-0.25939977,0.051630966,-0.18709019,0.20852305,0.12448664,-0.12629098,-0.29875186,-0.27773538,0.16444959,0.026444886,0.11445971,0.28578418,-0.08965774,0.5012889,0.103452265,1.7584224,-0.077641346,0.04426726,0.17653623,0.50255847,0.1426307,-0.24188942,-0.05114522,-0.070431806,0.3817663,-0.008139089,-0.56427443,0.034169503,-0.21921018,-0.5114731,-0.17445374,-0.3095612,-0.18682848,-0.24321681,-0.57472897,-0.25483578,-0.055635117,-0.20509884,0.42497665,-2.3591573,-0.25272927,-0.20782676,0.27135387,-0.4899035,-0.38342273,-0.13721123,-0.5614024,0.4482622,0.25666526,0.4697277,-0.64012134,0.47510543,0.3942469,-0.4609208,-0.16109052,-0.5790582,-0.06658878,0.06359802,0.18319732,-0.016684007,-0.28243923,-0.078218326,0.07389166,0.5997834,-0.07066393,0.12616006,0.3062261,0.32704678,0.0047870465,0.57534957,-0.18771999,0.5907061,-0.4508853,-0.16513695,0.49004415,-0.36092496,0.17770186,-0.16779289,0.13722686,0.40675998,-0.5171025,-0.8577569,-0.81139624,-0.382092,1.1750727,-0.2622526,-0.43418244,0.23662426,-0.22497281,-0.064425185,0.036942184,0.46103108,-0.06001399,0.17942634,-0.72522014,0.113309465,-0.08966681,0.20288579,-0.024539037,-0.017235406,-0.34897956,0.6708213,-0.10679149,0.40368262,0.43200004,0.25265774,-0.21418089,-0.5569642,0.16144006,0.96673584,0.40777558,0.12105319,-0.3063361,-0.19749966,-0.46391603,-0.1950177,0.04198038,0.5187918,0.7513813,-0.029945323,0.07633875,0.20382291,-0.023915153,0.037296347,-0.18058263,-0.3699744,-0.1977256,0.026477233,0.6034975,0.5793223,-0.096957624,0.4948063,-0.2708126,0.4371876,-0.19053498,-0.526981,0.5854699,0.68017066,-0.35569584,-0.33659637,0.5403422,0.36398193,-0.16073878,0.52884394,-0.7258004,-0.5001755,0.37396792,-0.09747006,-0.4456358,0.09792076,-0.34437522,0.041787,-0.93220013,0.21222487,-0.4690969,-0.20784257,-0.42186123,-0.28152156,-3.1914923,0.20608908,-0.0857282,-0.09526835,-0.16147196,-0.18078074,0.25512758,-0.5772948,-0.73624694,0.055871952,0.041844204,0.70335424,0.04117952,0.20353673,-0.33629966,-0.1595168,-0.2988745,0.18852049,0.21689543,0.3236006,-0.035179406,-0.48738134,-0.09756607,-0.15832542,-0.5845926,0.07727915,-0.6555586,-0.61935914,-0.2706353,-0.44473407,-0.32011446,0.6699634,-0.38257492,0.15349793,-0.13361508,0.06668735,-0.124081634,0.32673472,0.040075924,0.10539723,0.24735202,-0.074546285,0.0626532,-0.35040373,0.20821223,0.15107343,0.36322492,0.29304802,-0.12150283,0.28649262,0.6083141,0.7254995,-0.09207311,0.793019,0.49757606,0.005024396,0.37379575,-0.19541752,-0.3730977,-0.43019593,-0.17056465,0.099417865,-0.39785767,-0.31847274,0.13620052,-0.30949777,-0.7430104,0.55068505,0.14313197,0.025609866,-0.021187332,0.108890705,0.4376266,-0.28505126,-0.05410602,-0.061663445,-0.1742093,-0.67067134,-0.49451008,-0.6506497,-0.64789706,-0.013280243,1.1855291,0.0011203121,-0.03907933,-0.028783284,-0.1691791,0.09718488,0.065241694,-0.051026374,0.0021096058,0.44932976,-0.15393433,-0.73979354,0.41399503,-0.11974183,-0.09513511,-0.57744724,0.2956984,0.61888206,-0.6155733,0.38300896,0.4017218,0.11369741,-0.11124933,-0.5897898,-0.056054175,-0.08715209,-0.23208734,0.3813395,0.22997731,-0.7834917,0.46072724,0.4277109,-0.25383222,-0.7606696,0.48983648,0.032138895,0.030940467,-0.0073815733,0.3798641,0.2177813,-0.035217788,-0.22581004,0.08937333,-0.495937,0.13228494,0.32852405,-0.013469765,0.44040683,-0.23862335,-0.103351295,-0.7142814,-0.10216081,-0.4926256,-0.26211697,0.14529991,0.008593753,0.1480366,0.11662265,0.19194117,0.33590204,-0.21984038,0.06350644,-0.06901513,-0.37885654,0.39701,0.42457443,0.58791727,-0.4326768,0.607956,0.09459415,0.019461669,0.27243268,-0.042759728,0.43703288,0.100040525,0.40962854,0.10233131,-0.15393631,0.059176445,0.8157853,0.13057917,0.38555542,0.10608289,-0.2578679,0.18117094,0.05616466,0.11828403,0.16818842,-0.69589114,-0.1258885,-0.20260273,0.10146442,0.6172918,0.29552013,0.4241581,-0.0056350864,-0.25800288,-0.045389496,-0.04414676,-0.19365463,-1.5591581,0.33676344,0.1917966,0.88829434,0.42489618,1.956895e-05,-0.040512584,0.55891657,-0.17690703,0.21809271,0.48649308,-0.027614981,-0.47995612,0.50991416,-0.693201,0.49685484,0.06541486,-0.0036301771,0.024710093,0.056816842,0.4868039,0.8692323,-0.08853367,0.11883144,-0.0660508,-0.37999296,0.27377406,-0.51560414,-0.02328381,-0.35164428,-0.25105152,0.71307325,0.4375137,0.2984755,-0.18953186,-0.053687513,0.11895389,-0.08626924,0.0964989,-0.09329736,0.05711059,-0.042599697,-0.5529783,-0.31481418,0.52741426,0.010480449,0.29024947,-0.0016052872,-0.29423234,0.24892813,-0.18137202,-0.15519565,-0.120834574,-0.72284234,-0.06557655,-0.54552466,-0.3778561,0.15818964,-0.11611902,0.15971312,0.1292331,0.05569133,-0.35860196,0.4529858,-0.003955722,0.6879262,-0.076611996,-0.22194871,-0.28365457,0.105580576,0.24846351,-0.3554541,-0.022696912,-0.18416806,0.023321431,-0.5084202,0.27871716,-0.16163051,-0.3652103,0.33245313,-0.08608423,0.03602653,0.48561126,-0.14843896,-0.042601444,0.14751631,-0.07581889,-0.24202831,-0.18839753,-0.09319511,0.2794014,0.26202577,0.08132351,-0.059976652,-0.116194345,-0.0005816519,0.50923115,-0.03550728,0.38706607,0.5165174,0.029134825,-0.45018697,-0.12961477,0.30602446,0.6073191,0.081654966,-0.10400681,-0.43401337,-0.35647818,-0.2683884,0.34269586,-0.16949959,0.3423205,0.030174403,-0.40431315,0.80367404,0.06741674,1.2114112,0.13198866,-0.3709944,0.07957843,0.3765229,0.047627658,-0.023194423,-0.45502388,0.9111536,0.4084513,-0.109091535,-0.19310312,-0.35201383,-0.087526545,0.15324156,-0.2883254,-0.19398499,-0.19012555,-0.662942,-0.25602266,0.2413392,0.2959768,0.13537769,-0.14373086,0.124847546,0.21989924,0.05511567,0.41271523,-0.5333202,-0.14317255,0.45205608,0.35814393,-0.094935834,0.1334166,-0.50330657,0.3583563,-0.57614523,0.12326166,-0.2800999,0.142063,-0.046745814,-0.2240711,0.3259279,0.083070256,0.39128608,-0.33986893,-0.43358323,-0.27716047,0.57735807,0.10720307,0.22944303,0.6275444,-0.21146728,-0.038963232,0.06892959,0.6284547,0.96403253,-0.25937292,0.19229619,0.32073593,-0.2528792,-0.6010747,0.39374256,-0.23848389,0.18160255,0.004832506,-0.20201929,-0.5590482,0.34784055,0.16074309,-0.06398767,0.23621319,-0.6802348,-0.24639368,0.31092864,-0.29314926,-0.18359166,-0.3911813,0.13014689,0.6345159,-0.17279163,-0.20697737,0.15538949,0.40602142,-0.14431605,-0.36502314,-0.17648259,-0.2573729,0.07470739,0.09801857,-0.2920606,-0.14856078,0.022170164,-0.53842986,0.11397131,0.18413557,-0.31733593,0.055183973,-0.2639198,0.082199134,0.85452276,-0.022435501,0.21056457,-0.5736803,-0.4750725,-0.7902595,-0.40527377,0.34456202,0.21980336,-0.0669743,-0.53910524,-0.20018724,-0.14957173,-0.006578028,0.012867775,-0.37655395,0.434303,0.030982424,0.47348318,0.057783265,-0.6400362,0.14539367,0.07647619,-0.11268194,-0.4484209,0.5372536,-0.12390475,0.888038,0.008288976,0.044465527,0.16084619,-0.52092844,-0.029768988,-0.20629185,-0.17377836,-0.70528364,0.095994815 +579,0.5335504,-0.47940782,-0.53678036,-0.14916216,0.016672673,-0.13496001,-0.09117677,0.8210806,0.31645492,-0.36511105,-0.26760226,-0.2652327,0.075405605,0.66012675,-0.06949621,-0.66344756,0.0487154,0.26444858,-0.52026314,0.7481466,-0.39180744,0.15226668,-0.04463575,0.48981667,0.26072675,0.39340603,0.14955455,-0.11691294,-0.196379,0.07823979,-0.04234005,0.0956727,-0.46505365,-0.030652784,-0.16366991,-0.4734084,-0.14122863,-0.53023183,-0.52725255,-0.8184048,0.296051,-0.8899068,0.6193447,0.060695324,-0.3413291,0.19494213,0.07334008,0.4080958,-0.4193327,0.026266104,-0.0049125,0.100966446,-0.02639739,-0.1661266,-0.2265036,-0.64497334,-0.66357607,0.07582159,-0.27691406,-0.022220904,-0.07929592,0.012628313,-0.3516036,0.013916644,0.03491296,0.40476924,-0.5063351,0.019106453,0.2685239,-0.106072165,0.21193595,-0.52689844,-0.3560713,-0.27776912,0.32542327,-0.06322213,-0.22934757,0.2610744,0.4368765,0.5800199,-0.049757328,-0.14360671,-0.30437967,0.096973725,0.04305039,0.5991965,-0.23499058,-0.77737653,-0.20666213,-0.047431782,0.34852856,0.14670266,0.33480185,-0.2591445,-0.059357252,-0.01688915,-0.35096473,0.37812427,0.5600035,-0.4051505,-0.25751448,0.32720307,0.48156434,0.2677748,-0.23455343,0.062921874,0.04843397,-0.5090211,-0.16563722,0.024883877,-0.24606484,0.8581448,-0.2533431,0.27235544,0.6715229,-0.15723892,-0.025561506,0.057841714,0.0769046,-0.28141716,-0.24602006,-0.33798045,0.33133787,-0.3177666,0.026245588,-0.2669365,0.64405894,0.35966328,-0.6706895,0.32298043,-0.57482344,0.31220138,-0.1814653,0.40215448,0.7109206,0.40193412,0.29401472,0.5722818,-0.37794217,0.055095494,0.1755569,-0.35888675,0.08047152,-0.26270312,-0.20579177,-0.5937798,0.19863376,0.22204265,-0.17818269,0.19487958,0.73287106,-0.6158228,-0.22356099,0.05191581,0.85054016,-0.25762737,-0.16177124,0.9682464,0.9448686,1.0969008,0.03639323,1.3829207,0.4719114,-0.26612532,0.29013866,-0.3297728,-0.88254637,0.24646765,0.37611207,-0.65689826,0.62839234,0.0007023107,-0.2442884,0.5401259,-0.2925832,0.06748976,-0.23299819,-0.101274915,0.065553434,-0.36107796,-0.5773333,-0.39921352,-0.27394345,0.038713466,0.15901622,0.27027166,-0.142002,0.4593128,-0.00020168045,1.7029877,-0.006571022,-0.011107043,0.019937364,0.71739376,0.16839193,-0.21806854,-0.030263739,0.26695308,0.51737034,0.17198052,-0.67539716,0.014261051,-0.2930958,-0.6428869,-0.16964155,-0.29903692,-0.06599615,0.07802967,-0.5347778,-0.24028358,-0.26471633,-0.062698156,0.36788273,-2.263115,-0.33015433,-0.31524917,0.5397016,-0.32690445,-0.28745213,-0.24742395,-0.3853656,0.25333416,0.41871712,0.58063835,-0.9622627,0.47244385,0.31263384,-0.5968783,0.03552562,-0.61471236,-0.15377563,-0.07458801,0.41865423,-0.14932369,0.003583919,0.4475973,0.16752501,0.4835451,0.103152126,0.20365883,0.3240867,0.4739561,-0.0033985486,0.26322058,-0.09614728,0.5780589,-0.27843294,-0.17379631,0.18748488,-0.42819852,0.1422618,-0.14492902,0.17268233,0.47010812,-0.68684393,-0.9988428,-0.5801354,0.056350384,1.1607347,-0.2601903,-0.46463454,0.18649782,-0.3133798,-0.23221658,-0.15784146,0.53275454,-0.1555923,-0.04910065,-0.95769143,-0.03856539,0.026963824,-0.07444433,0.014716185,-0.097759224,-0.21462923,0.6719954,0.046935562,0.54701436,0.25241697,0.18960375,-0.2304411,-0.6638826,0.08922216,0.8376261,0.3764384,0.2289938,-0.12578359,-0.23221599,-0.60828876,-0.08546542,0.21340461,0.39114368,0.70422083,-0.13656941,0.1095784,0.3990138,0.21012749,0.2454034,-0.13215876,-0.3598552,-0.29841363,0.007140127,0.6013964,0.8566509,-0.5762988,0.49666223,-0.15364324,0.18494043,-0.0027471618,-0.53980374,0.77803457,1.1412811,-0.30922368,-0.29556015,0.6882193,0.49853298,-0.59715027,0.5323547,-0.60993123,-0.27356455,0.3566869,-0.063342065,-0.29738402,0.29566777,-0.35681772,0.32238638,-1.0715063,0.44851044,-0.30532143,-0.16408409,-0.49745095,-0.008640966,-3.6034882,0.43784705,-0.32880434,-0.21938218,-0.31113642,-0.18571825,0.10175278,-0.7815845,-0.72102284,0.2928925,0.054363597,0.7273489,-0.022729905,0.1514623,-0.2758989,-0.3194044,-0.3048565,0.030140894,0.13142352,0.4786018,0.04462892,-0.68254703,-0.22238235,-0.030675411,-0.42944872,0.25351745,-0.84069306,-0.50840145,-0.11014816,-0.65697896,-0.3537777,0.60550404,-0.18531333,0.0811849,-0.23921989,-0.039109465,-0.3366269,0.39468578,-0.17558599,0.05631192,0.022053735,-0.07641663,0.20427479,-0.078729674,0.19953305,-0.050530933,0.45503023,0.08587087,-0.25950655,0.24284229,0.65014225,0.7948342,-0.029194105,0.74858755,0.7663451,-0.07550302,0.34670356,-0.21899462,-0.09690084,-0.5159811,-0.46587422,-0.08808423,-0.45227745,-0.65825444,0.04389495,-0.36519775,-0.9144078,0.5224741,-0.022842916,0.45345366,0.08685675,0.097419545,0.636844,-0.048894044,0.101275064,-0.16328268,-0.35192037,-0.65559494,-0.08323758,-0.77423745,-0.3997513,0.5093049,0.8475531,-0.20263553,0.05260018,0.05838656,-0.40769145,-0.04784386,0.27511004,-0.07511556,-0.016874898,0.30671015,-0.3493674,-0.8001661,0.3970949,-0.0956507,-0.27378055,-0.53308845,0.18489023,0.51328593,-0.71157736,0.7929213,0.41013864,-0.029411769,0.002765287,-0.5363782,-0.44666204,-0.06092213,-0.10294983,0.3324815,0.3505402,-0.8888481,0.34596923,0.44242936,-0.38725746,-0.6210863,0.82975936,-0.12959868,-0.060826167,-0.10381877,0.30998152,0.1529199,-0.12149321,-0.4086548,0.28891665,-0.5252264,0.30489942,0.2702584,-0.15147215,0.36994556,-0.0392836,-0.005308953,-0.9701923,0.063982576,-0.6275556,-0.1194864,0.3938255,0.14530845,0.26823303,-0.27170038,0.19192408,0.2461595,-0.3473693,0.15660642,0.013761184,-0.35961255,0.3913964,0.34743536,0.475039,-0.5008641,0.65461403,0.04510316,-0.17936529,0.16661173,0.18448947,0.44809473,0.4065132,0.41927183,0.25951192,-0.39915457,0.2857534,0.7816,0.3071435,0.4443163,0.32640374,-0.07081887,0.35938975,0.24799977,0.19818354,-0.089015,-0.43312645,-0.26741326,-0.1545496,0.2651122,0.6133397,0.22224626,0.42043492,-0.23066579,-0.38334426,-0.03783158,0.17564797,0.19289559,-1.5214137,0.23997559,0.35668924,0.7502617,0.5248682,-0.22972474,-0.094364114,0.52749354,-0.21370386,0.17361456,0.43719274,-0.024090929,-0.77073824,0.6722616,-0.5459728,0.4252691,-0.11578999,0.070311636,0.048042916,0.25483555,0.3050409,0.65949625,-0.031132845,0.054031182,0.02127256,-0.40902576,0.008867248,-0.47371358,-0.06835442,-0.63398844,-0.10062745,0.6751812,0.5017461,0.38426608,-0.26083025,0.05913677,0.10553408,-0.16155137,0.19590427,0.058504775,0.2452282,-0.10861272,-0.9600842,-0.1550054,0.521906,-0.06645174,0.27693808,0.1337563,-0.44760647,0.37806797,-0.30226794,-0.08796225,0.03987214,-0.8703428,-0.1699719,-0.3280047,-0.45170593,0.55327857,0.14206572,0.2526962,0.2803628,0.10368762,-0.48788893,0.23494096,-0.34304747,0.8409023,-0.22801374,-0.45966598,-0.4629157,0.13653885,0.3541268,-0.1892951,0.17795339,-0.35482457,-0.21778022,-0.43942964,0.6213569,0.3291279,-0.25267732,-0.012968648,-0.08146275,0.062143814,0.5567402,-0.39029816,-0.19127601,0.07339766,-0.09874806,-0.27410164,-0.3582341,-0.11267298,0.40963048,0.39198416,0.08477941,-0.19143124,-0.087590046,0.11355701,0.5333218,0.003947908,0.31308773,0.64464974,0.33503968,-0.2931175,-0.19687085,0.51404244,0.42669305,0.093742706,-0.31785235,-0.48515767,-0.7324774,-0.36785355,-0.19236611,-0.1547772,0.4748963,0.08396513,-0.25104943,0.8181667,0.060273565,1.3487236,0.06463163,-0.5820632,-0.020313136,0.47845563,0.0519145,-0.20252861,-0.21635456,1.0364845,0.6831332,-0.17168091,-0.22671801,-0.5328111,-0.24519318,0.20612575,-0.33549574,-0.2574619,0.13715924,-0.56350446,-0.42486325,0.16140951,0.23400931,0.38420218,-0.13863967,0.43304902,0.26863915,0.041105837,0.2607714,-0.56581765,-0.47156173,0.1968533,0.31857386,0.047101382,0.20698506,-0.46038055,0.2839603,-0.6024319,0.12181113,-0.28326187,0.2653574,-0.09898431,-0.57689685,0.2121916,0.04591838,0.45260173,-0.43470535,-0.46917212,-0.26025277,0.7108484,0.07320866,0.09272463,0.6089163,-0.43118897,-0.10295456,0.1081432,0.58140415,1.1542993,-0.14879297,-0.057619378,0.43373358,-0.44941643,-0.92330325,0.47073528,-0.12846205,0.61951566,-0.08641022,-0.112090655,-0.98493266,0.41158706,0.1866793,-0.15922242,0.06772679,-0.46364644,-0.39242095,0.3072417,-0.33865812,-0.21195477,-0.47791308,0.20000814,0.54531693,-0.4235038,-0.3702281,0.18852915,0.13485633,-0.15085755,-0.5096975,-0.17991771,-0.45846233,0.3413144,0.19718151,-0.36022905,-0.25832966,-0.21116844,-0.42717925,0.40826112,0.15708572,-0.32214394,0.3016048,-0.5819321,-0.35510752,1.1500373,-0.34880286,0.41808262,-0.54834837,-0.40988004,-0.9117395,-0.66805744,0.57230395,0.13420822,0.02893392,-0.81562144,0.18999995,0.1150012,-0.16078101,-0.06347721,-0.24743158,0.56642413,0.11120398,0.36729088,0.060587123,-0.73785025,0.110933356,0.106592625,-0.17110328,-0.719108,0.5110126,0.050271437,1.3043381,0.1559943,0.25105265,0.4561021,-0.51210076,-0.46008274,-0.2301507,-0.2613289,-0.64050746,0.020239623 +580,0.4885347,-0.25289077,-0.46699992,-0.0979048,-0.25911012,0.2324778,-0.34496954,0.44348672,0.20120585,-0.38410687,-0.115621954,-0.25692773,0.01998992,0.36650243,-0.083439544,-0.64463586,0.180621,0.1296069,-0.4644027,0.5277572,-0.52764136,0.45015204,0.030687906,0.36630392,0.1607343,0.3507349,0.40984696,-0.020937115,-0.18022892,-0.16064101,-0.1703848,0.11864877,-0.5339615,0.2413798,-0.21353899,-0.48031035,0.11668692,-0.39363986,-0.39307022,-0.7491622,0.1774084,-0.6509248,0.61043394,-0.015406404,-0.16649884,0.20163025,0.011620972,0.393581,-0.2591617,0.23121461,0.17670864,-0.08120383,0.059682153,-0.13001208,-0.36764637,-0.65304685,-0.5114319,-0.0013227444,-0.47578177,-0.28475928,-0.1841666,0.18222168,-0.124910176,0.21405149,-0.18262051,0.29577315,-0.36741105,-0.16085404,0.2303802,-0.20984088,0.19245306,-0.5903547,-0.15267688,-0.21600345,0.19685468,-0.21223159,-0.14472921,0.23881777,0.2728689,0.41521764,-0.038805332,-0.24777012,-0.32628664,-0.11015554,0.024201604,0.5968694,-0.12358414,-0.53040963,-0.22389644,-0.07519551,0.28504592,0.08348796,0.097559646,-0.2661963,-0.015859347,-0.04538995,-0.42163822,0.3611693,0.47350794,-0.4706716,-0.22175889,0.26012987,0.46430123,-0.056198534,-0.13086917,0.020089723,-0.060784932,-0.48063117,-0.17178062,0.04009156,-0.17037536,0.5020301,-0.16876033,0.07627771,0.7519697,-0.08774932,-0.03997242,-0.16976309,-0.09170333,-0.25801986,-0.08131857,-0.2957715,0.2310445,-0.3796742,0.037909977,-0.3098878,0.6729073,0.23660763,-0.6348886,0.40397912,-0.40512478,0.090555176,-0.0036808513,0.39109933,0.60663855,0.28504908,0.07559856,0.5394586,-0.4660344,0.18977666,-0.19566312,-0.27888808,0.05723526,-0.056135654,-0.034669764,-0.46377254,0.06560878,0.019566052,-0.12499118,0.156158,0.43935156,-0.5143987,-0.078204215,0.16648486,0.7693608,-0.37336168,-0.08457614,0.7586427,1.1065634,0.89821243,-0.019810738,1.2290059,0.5413406,-0.22843528,0.07296737,-0.40438873,-0.47047505,0.25196502,0.3945468,-0.1664984,0.3942574,0.052432492,-0.09778346,0.3607835,-0.2370517,0.08264567,-0.09106867,-0.015125781,-0.043015648,-0.18637043,-0.42719033,-0.17002085,-0.0042071445,0.0050363317,0.36087382,0.20982262,-0.276099,0.46116072,0.0713186,1.4085046,-0.042758487,-0.07348443,-0.046607055,0.4105717,0.3591557,-0.07544478,0.08411601,0.23648643,0.3708953,-0.014358701,-0.43640006,0.095686466,-0.27864444,-0.39424282,-0.26971015,-0.17425977,-0.087529205,0.06951195,-0.40473688,-0.08001769,0.12087452,-0.14707729,0.33298695,-2.6873102,-0.20737809,-0.15351658,0.16278249,-0.13563067,-0.45687068,-0.073667035,-0.4976992,0.4953365,0.39486775,0.32560995,-0.53076446,0.37581658,0.43899286,-0.4395084,-0.037675183,-0.63533926,0.017364211,-0.20146665,0.55200607,0.12848555,-0.0153724905,-0.014172974,0.27628583,0.567128,-0.029559508,0.15543461,0.060698185,0.43830714,0.03919494,0.45012453,0.34612012,0.6946465,-0.24492726,-0.22827098,0.40160146,-0.42009914,0.25972015,-0.186254,0.28079787,0.35101184,-0.3132281,-0.81361926,-0.5793434,-0.31759283,0.91568726,0.088733345,-0.40460813,0.14304797,-0.008141695,-0.3402013,0.16752732,0.34610793,-0.3361598,0.06036949,-0.7796253,-0.03152149,-0.011238445,0.030377818,-0.08205041,-0.005675379,-0.43712717,0.646752,-0.050522488,0.30192727,0.32544702,0.18735558,-0.18856564,-0.52814186,0.14026843,0.89381516,0.42053014,0.19805968,-0.24221265,-0.20425105,-0.27064657,-0.08259067,-0.08050335,0.43922025,0.64390314,-0.05293377,0.087005325,0.2161721,0.07881326,0.05483729,-0.1417833,-0.26775685,0.056069918,0.107494295,0.57989967,0.579911,-0.18054798,0.38864043,-0.16528097,0.67087376,-0.14900169,-0.46681136,0.7161784,0.9216505,-0.22232544,-0.20824288,0.53867084,0.4760875,-0.29629746,0.43767297,-0.812847,-0.43123126,0.35922986,-0.077047005,-0.31507862,0.20322198,-0.28389132,0.11970186,-0.9417772,0.257522,-0.19323865,-0.27192077,-0.661683,-0.28809518,-3.8945293,0.15710995,-0.13880362,-0.10329875,0.05773163,-0.050351404,0.26053482,-0.56904644,-0.38242674,0.18336186,0.050674394,0.53183484,0.0025766282,0.17448668,-0.21374702,-0.2266314,-0.23317727,0.2131293,-0.038642786,0.28965253,-0.01760476,-0.5139637,0.19016352,-0.36560673,-0.51094025,0.04784508,-0.68870914,-0.26282945,-0.2835986,-0.5655077,-0.21109228,0.5588031,-0.39680922,0.102985576,-0.2027556,0.099142924,-0.24566963,0.34133026,0.08034062,-0.022312837,0.08188679,-0.10478833,0.08546044,-0.33367115,0.17783058,0.12214319,0.28049088,0.38633257,0.035660453,0.024022818,0.3599559,0.57897854,-0.104437724,0.64165395,0.34652346,-0.20586613,0.34558374,-0.28945592,-0.26629022,-0.46507472,-0.4722348,-0.14906052,-0.38022333,-0.5563989,-0.14366172,-0.366127,-0.62165093,0.41586292,0.042617902,-0.06855748,-0.056473754,0.16736773,0.36944306,-0.31691557,-0.012718517,-0.025881695,0.004303165,-0.40965515,-0.41569448,-0.6111665,-0.53939253,0.18436927,0.8891099,0.044032026,-0.0410683,-0.008329363,-0.17741863,-0.07314011,0.17695168,0.09944329,0.045338534,0.40238577,-0.20184693,-0.70904946,0.49013466,-0.16967653,-0.23414977,-0.5969437,0.20537496,0.5961097,-0.55739045,0.49451894,0.5088165,0.15095638,0.06387874,-0.3866427,-0.1646804,0.1248261,-0.18306091,0.52169615,0.1488244,-0.6009904,0.53587747,0.2873984,-0.3934172,-0.6357183,0.5215835,0.076607674,-0.3135634,0.1199283,0.33682415,0.0054624826,0.027871564,-0.40397692,0.10010565,-0.48673218,0.12981865,0.3160366,0.11184084,0.43361193,-0.20272577,-0.16408506,-0.862086,-0.13117498,-0.35378212,-0.26146707,0.014458921,-0.008865664,0.044404157,0.23747788,-0.11766346,0.30960488,-0.2721166,0.19158404,-0.10263555,-0.21791479,0.4090132,0.2592218,0.41171548,-0.36165243,0.53926,-0.0238909,-0.078048036,-0.06405921,-0.007547494,0.56549394,0.091553055,0.44963673,0.057041973,-0.08418225,0.35822263,0.6869269,0.2972033,0.38028517,0.23532297,-0.36271107,0.23512326,0.1334787,0.10609405,0.16329093,-0.31875363,-0.14486462,-0.1965827,0.1342093,0.39357495,-0.01767942,0.42392755,-0.09030949,-0.28647906,0.17097217,0.14817187,0.13485286,-1.1102012,0.2533441,0.23719922,0.6973941,0.4316795,0.021266904,0.06369686,0.54698044,-0.3130218,0.0670964,0.23891214,-0.028065193,-0.4254951,0.38440108,-0.5538439,0.38571757,-0.07945645,-0.024879362,-0.009470872,-0.13379306,0.40933385,0.96809727,-0.19938333,0.223427,0.08033608,-0.28810158,0.02288203,-0.34404504,0.21389571,-0.30941296,-0.34897834,0.76226604,0.45899552,0.35113412,-0.14397885,-0.061429776,0.09510672,-0.1398935,-0.10154247,0.057342514,0.18809667,-0.06967252,-0.5763221,-0.30263546,0.51597047,0.08892112,0.15955181,0.0063866638,-0.3242784,0.193236,-0.102406,0.036778323,-0.0051331315,-0.59103596,0.04077891,-0.16838607,-0.41663885,0.60283154,-0.043140296,0.23382172,0.11292798,0.092211656,-0.29025188,0.32548007,-0.008739762,0.75584173,0.097435735,-0.0997209,-0.21181937,0.14627594,0.4599234,-0.29402447,-0.08668418,-0.29826188,0.07120999,-0.644238,0.31358862,-0.007325992,-0.37867394,0.047869086,-0.13271168,0.0766907,0.44033617,-0.14427917,-0.27414823,0.27436924,0.08460435,-0.23367368,-0.1599708,-0.21789391,0.30599323,0.1308653,-0.0031184182,-0.07869819,-0.016837459,-0.1263878,0.4710097,0.033719003,0.2905451,0.33148926,0.06847809,-0.4340052,-0.0020569265,0.08469119,0.4197754,-0.07096994,-0.0713287,-0.07658261,-0.60761404,-0.47562015,0.05085089,-0.100448266,0.11026676,0.12101601,-0.30271992,0.6285364,0.10738591,1.2852006,0.029032465,-0.44045725,0.14772598,0.6012708,0.08878483,0.092987396,-0.42809308,1.0352142,0.59241647,-0.16553597,-0.07971862,-0.30428022,-0.025948448,0.14041476,-0.210224,-0.2222888,-0.13486364,-0.65946925,-0.27494374,0.23159605,0.34351355,0.1602486,-0.023542892,0.22647034,0.17401396,0.083258495,0.43753976,-0.5105617,-0.39434206,0.36210203,0.23155987,-0.09796812,0.13825274,-0.4011866,0.4090507,-0.5015365,-0.0029838458,-0.34600455,0.19798657,-0.22966269,-0.31840366,0.24140657,0.06560914,0.30459505,-0.4596185,-0.40858132,-0.18840307,0.48338988,0.15629463,0.2232779,0.6110905,-0.14705415,-0.052560378,0.016629525,0.5129683,1.0337232,-0.334482,0.044944756,0.5160154,-0.3077851,-0.5526769,0.22005898,-0.2918604,0.15480591,-0.0062187687,-0.4050933,-0.4626602,0.3993166,0.04696154,0.01345697,0.085283175,-0.50418425,-0.06707461,0.34532827,-0.28534675,-0.28947732,-0.3604617,0.389027,0.6703647,-0.31545314,-0.47589043,0.16978559,0.33570656,-0.34086645,-0.5823482,-0.105864584,-0.14727622,0.56008637,0.31792527,-0.089972585,-0.05138509,-0.049013145,-0.42147034,0.08719705,0.2892717,-0.46337986,0.1074304,-0.3556275,-0.118091345,0.72058094,-0.017656155,0.12171538,-0.7705313,-0.42492157,-0.9553791,-0.5121224,0.61049944,0.24837439,-0.1602629,-0.5643201,-0.00040219352,-0.017907236,-0.027889272,0.0045955256,-0.24651161,0.4417049,0.039365742,0.5587565,-0.1128525,-0.7961422,-0.06914139,0.2668512,-0.20307389,-0.5432202,0.36176774,-0.011562943,0.92014533,0.14745593,0.013830133,0.36176163,-0.5427001,0.080230296,-0.31183034,-0.08602801,-0.7205459,0.14482643 +581,0.23074225,-0.16917458,-0.44086844,-0.17449304,-0.4133629,0.097096995,-0.18025057,0.33731174,0.08206504,-0.36256757,-0.38152507,-0.11038833,0.0986633,0.44965115,-0.18175073,-0.35140306,-0.19739777,0.18346332,-0.741018,0.43209362,-0.6612651,0.2680188,0.1564812,0.41351536,0.20365888,0.30821383,0.16692454,-0.1791237,-0.16839796,-0.00040225982,-0.06134678,0.20606674,-0.49287593,0.0499261,-0.15722783,-0.29058412,0.013378477,-0.4469358,-0.1243748,-0.7764898,0.2819663,-1.0093015,0.43317455,-0.16132168,-0.11600022,-0.0048076073,0.31988776,0.30836505,-0.3738095,-0.046674944,0.27374706,-0.20920762,-0.27546167,-0.25182092,0.059088252,-0.33517954,-0.51921886,-0.035729602,-0.42364654,-0.27164757,-0.22263767,0.27935326,-0.39305368,0.10248285,-0.13613774,0.38555345,-0.36838678,-0.064383455,0.22779803,-0.15717982,0.10457348,-0.5756063,-0.018047087,-0.08053408,0.53931767,-0.16027841,-0.1427925,0.36798328,0.29847747,0.36694938,0.15216129,-0.30369392,-0.21102455,-0.06040474,0.15485582,0.51292413,-0.17189728,-0.4233757,-0.04206724,0.1287557,0.26374528,0.33952764,-0.016916787,-0.2025004,-0.028111044,0.0031658174,-0.26461986,0.33659703,0.5052601,-0.20359488,-0.34779993,0.37015226,0.61309177,0.20998819,-0.14062041,-0.10239234,-0.05827687,-0.613658,-0.12802796,0.21346456,-0.19431664,0.44537324,-0.1912067,0.15719248,0.9476353,-0.11372997,0.047382012,-0.12129662,0.039686084,-0.25407004,-0.24680918,-0.31215745,0.17922713,-0.5278517,0.20854566,-0.31067926,0.7496801,0.15406232,-0.6541331,0.44278854,-0.6231754,0.14320016,-0.059974615,0.4765772,0.62804615,0.3789411,0.4207622,0.77742326,-0.31339934,0.09639835,-0.09288405,-0.46454015,0.08056275,-0.27324137,0.16887306,-0.3987565,0.12465104,-0.050496563,0.045582645,-0.07494116,0.49589223,-0.5546652,-0.0145327095,0.1561912,0.6667818,-0.43198618,0.018205702,0.7247301,0.9199523,0.98019487,0.06131159,1.3077227,0.3472561,-0.29684466,0.28628653,-0.34907717,-0.7723357,0.246864,0.41997853,0.0329784,0.16612665,-0.08175947,-0.07517039,0.35421115,-0.5295598,0.1548596,-0.2180904,0.25492442,0.21647103,0.02936128,-0.30525,-0.30754608,-0.033202957,-0.028387718,0.18049479,0.21380149,-0.13602096,0.30888262,-0.058914192,1.5308797,-0.07293069,0.13342156,0.13137907,0.5612568,0.15297715,-0.033297766,-0.0890987,0.4056177,0.4619827,0.00058075984,-0.6312781,0.14584714,-0.3173476,-0.5199144,-0.12549384,-0.3281903,-0.1236489,0.064072944,-0.39716852,-0.15444653,-0.06743403,-0.23234291,0.38144717,-2.4568353,-0.26295874,-0.2440771,0.20297144,-0.37693086,-0.25960347,-0.15724376,-0.60397404,0.3520679,0.2560097,0.48900068,-0.67197865,0.3783924,0.46537766,-0.5325653,-0.17536621,-0.6971541,-0.1663473,-0.034981888,0.36525622,0.049978342,-0.1234238,-0.09052333,-0.024526788,0.55853355,-0.02058833,0.08925946,0.542369,0.37413892,0.32291374,0.64435416,-0.032791223,0.5558621,-0.41978988,-0.1290116,0.34632245,-0.40782923,0.23924835,-0.23229091,0.12302836,0.61835897,-0.49460623,-0.8753127,-0.7329632,-0.5158769,1.170493,-0.39607614,-0.24702635,0.15924215,-0.17102149,-0.093852095,-0.08235944,0.59243333,-0.2967537,-0.010507242,-0.7702005,0.0814054,-0.06334107,0.20190634,0.026151182,0.020984828,-0.3224537,0.7741004,-0.0044942102,0.5270795,0.13370875,0.24206422,-0.31415188,-0.28376085,0.025631579,0.712321,0.33115408,0.032765638,-0.1325201,-0.2523459,-0.13801241,-0.28669646,0.09548267,0.41369545,0.7161519,0.058553528,0.149827,0.32234284,-0.14292243,0.08053441,-0.23508266,-0.18322514,-0.13847715,0.08036724,0.4906502,0.5281603,-0.19392985,0.45808926,-0.2896418,0.31130803,-0.049135853,-0.4762565,0.64018536,0.69126624,-0.114219256,0.0049569765,0.42051303,0.44779846,-0.34435323,0.36586615,-0.61393505,-0.24120691,0.6352136,-0.2273993,-0.52675235,-0.037517525,-0.1842666,0.15013562,-0.72287387,0.33964863,-0.30515766,-0.3063639,-0.5541534,-0.064909466,-2.7569745,0.07189151,-0.12177071,-0.19373897,-0.24321966,-0.1712829,0.21539026,-0.61803764,-0.5896324,0.12686366,0.15107985,0.7190353,0.08673039,0.11243283,-0.18701926,-0.09564762,-0.25424197,0.05043493,0.08148603,0.4333679,-0.114308745,-0.43949,0.061174907,-0.07715417,-0.5082985,0.20427187,-0.595356,-0.44544217,-0.11392412,-0.48404172,-0.313643,0.7001475,-0.40940478,0.051496264,-0.14085127,-0.0019255658,-0.14576587,0.18931536,0.122096285,0.15750843,0.1533487,-0.16367538,0.16926341,-0.37995148,0.49217907,-0.03184072,0.21067733,0.1768759,0.009687743,0.18746682,0.41512483,0.6912514,-0.2486172,1.0563133,0.38854265,-0.06325543,0.19438003,-0.31128272,-0.16515972,-0.5412516,-0.32575914,0.0043308614,-0.3957087,-0.49597982,0.050534718,-0.31285396,-0.78068477,0.59496117,-0.049519148,0.14369647,0.04455708,0.08438774,0.36630192,-0.101868644,-0.003205966,-0.066622436,-0.020004986,-0.5514048,-0.3193739,-0.5872931,-0.49239418,-0.14014368,1.0411092,-0.24935918,-0.07547612,-0.20279479,-0.33738396,0.17168532,-0.04876779,-0.011379191,0.23904733,0.3822837,-0.12691687,-0.71355635,0.46624434,0.025372537,-0.09272274,-0.50006115,0.16251177,0.7067243,-0.685278,0.52382714,0.41033867,0.008672972,-0.09439308,-0.5736253,-0.32413942,-0.023055848,-0.24988429,0.3039934,0.030355828,-0.73698837,0.4689402,0.26852846,-0.40715352,-0.85444605,0.25536418,-0.057300154,-0.1660481,-0.0070773046,0.33038175,0.13136344,-0.059618935,-0.28587675,0.104809366,-0.51498514,0.22161235,0.1478755,0.02935756,0.32501474,-0.19691685,-0.2876248,-0.7196888,-0.036995992,-0.48179528,-0.26411837,0.29421136,0.036112152,-0.07232593,0.22230892,0.13591798,0.3508266,-0.3510626,0.061955556,0.028412338,-0.35970086,0.06550005,0.2978192,0.3671223,-0.47708252,0.57778126,0.1166848,-0.11653956,0.07019434,0.017744351,0.36927617,0.124149404,0.29919985,-0.04831738,-0.21809816,0.49726525,0.8791581,0.13733517,0.420821,0.09920211,-0.23975468,0.39384323,-0.025962751,0.12028502,-0.0133930445,-0.4739935,0.025260432,0.057370193,0.17792101,0.48578098,0.18394853,0.3531839,0.11035563,-0.16216323,-0.0836902,0.29627857,-0.120130755,-1.0174198,0.36151236,0.13971077,0.97461253,0.36649796,-0.14373416,-0.03087471,0.71880215,-0.32758993,0.09753864,0.35301107,-0.022470491,-0.5500666,0.72405684,-0.6547417,0.4579105,-0.13690901,-0.040544935,-0.07080852,0.2483415,0.2302261,0.7177996,-0.28267136,0.06674145,-0.022516282,-0.18738289,0.16829354,-0.2913182,-0.006496815,-0.4641322,-0.31976193,0.63447446,0.32527256,0.42296782,-0.13490602,-0.037860632,0.045904133,-0.19703825,0.1696097,0.021029977,0.10466609,0.12539405,-0.6678532,-0.26959276,0.5899235,0.122213386,0.31255305,-0.124863274,-0.35173956,0.084805496,-0.44128796,-0.01899929,-0.0657998,-0.71914697,0.021417666,-0.10756472,-0.4645366,0.34866327,-0.31567702,0.17478284,0.30021116,-0.028541524,-0.14823008,0.11154868,0.22369242,0.87017477,-0.045958687,-0.352896,-0.39332378,0.070946015,0.21813542,-0.3214244,0.13958563,-0.29250866,-0.07340749,-0.49121848,0.5944146,-0.1226029,-0.47641808,0.27259687,-0.24265797,-0.16481964,0.74163324,-0.064415045,-0.13513966,-0.058992926,-0.22750066,-0.28118554,0.11585344,-0.3225012,0.22630817,0.38072428,0.12037758,-0.14312674,-0.23335908,-0.15623567,0.73978657,0.009956232,0.43908748,0.25436193,0.01532778,-0.23253275,0.002711336,0.18841147,0.56513053,0.13782969,-0.07837649,-0.38696793,-0.2809978,-0.24219412,0.29883066,-0.1463576,0.22673538,0.079209924,-0.44487062,0.7409276,-0.14877698,0.9771273,0.21632756,-0.29176486,0.021691317,0.5014581,-0.020386267,0.041481458,-0.30832818,0.8257956,0.53963566,0.0256594,-0.04554824,-0.466418,0.0033420145,0.4445914,-0.26912117,-0.05354605,-0.06394349,-0.6382196,-0.447209,0.31097764,0.24637146,0.04169651,-0.12990227,-0.10908831,0.027646963,0.20929588,0.6369187,-0.6466772,-0.18001561,0.2589862,0.20562313,-0.0077835363,0.18312168,-0.38744342,0.43107027,-0.59515166,0.14868559,-0.40712088,0.13144945,-0.23946108,-0.2185469,0.12260587,0.07703014,0.37013918,-0.18254386,-0.46977323,-0.058122966,0.57548255,0.1273698,0.19992656,0.64808905,-0.28483146,0.034969825,0.11318039,0.49980485,1.1442245,-0.3457269,0.15857707,0.24815035,-0.44225204,-0.5612089,0.459639,-0.16470619,-0.056288537,-0.0049832244,-0.3733925,-0.4569252,0.28167468,0.29567686,0.03971409,0.011538267,-0.46686167,-0.10425741,0.5176386,-0.24915497,-0.23961495,-0.2303522,0.40804693,0.684702,-0.26534173,-0.18226251,0.063865475,0.37199512,-0.34381956,-0.4809093,-0.1377462,-0.35485947,0.34575972,0.018282449,-0.34655163,0.011670351,0.11397826,-0.4262626,0.061771646,0.08030771,-0.39414728,0.07599974,-0.19944797,-0.0076553533,0.98785746,-0.21635865,-0.026211198,-0.7070024,-0.36576137,-0.95227367,-0.28688166,0.3826334,0.17117338,0.07067547,-0.5079538,-0.027605545,-0.044684105,-0.2827545,0.12473631,-0.47871667,0.29347903,0.20877382,0.42007938,-0.21788594,-0.647153,0.1264178,-0.06334232,-0.052511968,-0.44933903,0.5764424,-0.053854965,0.76393443,0.05722519,-0.043155216,-0.07326435,-0.31069365,0.06519773,-0.2897983,-0.1718185,-0.86862206,0.10234918 +582,0.30219248,0.032740355,-0.57263374,-0.113830246,-0.11907914,0.045354888,-0.35498407,0.42685422,-0.100812264,-0.7324199,-0.040941343,0.15494521,-0.24596278,0.4225045,-0.19803302,-0.21927615,0.11742101,0.14491847,-0.3810638,0.31527343,-0.5702026,0.3038402,-0.024952898,0.18863954,0.104591995,0.2236008,0.052614544,-0.05694942,-0.21632957,-0.40829337,0.073017746,0.006499062,-0.4530114,0.30511555,-0.1026449,-0.41034088,0.022606641,-0.44654906,-0.14235868,-0.6170375,0.23926197,-0.84487516,0.5220199,-0.01964905,-0.19399925,0.22936265,0.18397641,0.4123399,0.19468375,0.045400634,0.39578226,-0.21849303,-0.16685958,-0.032493677,-0.12442968,-0.68828315,-0.54211235,-0.078339,-0.5880217,-0.19897379,-0.21157949,0.21471597,-0.21438967,-0.073673025,-0.20329024,0.25657162,-0.3386298,-0.18928559,-0.053782914,-0.09864169,0.3958584,-0.9161554,-0.16350104,-0.078790374,0.3721765,-0.4509213,-0.14925498,0.26918682,0.4699284,0.43155074,-0.01620713,0.021750152,-0.41089502,0.004451657,0.12542991,0.49717107,-0.45949635,-0.30743745,-0.1172573,0.005266329,0.49177936,0.14262988,0.15379463,-0.46990478,-0.03556059,0.16055064,-0.37877992,0.37594652,0.3330767,-0.23336935,0.013186623,0.5264738,0.5211142,0.11425584,-0.17707695,0.1298602,-0.035741854,-0.45558667,0.03554021,0.31117454,-0.059826914,0.3441632,-0.05505633,0.3331989,0.5214701,-0.12571615,-0.078859486,0.20222266,0.045953017,-0.12512973,-0.048211206,-0.3082071,0.18918492,-0.502309,0.20649488,-0.18129091,0.7330806,-0.060495347,-1.1342822,0.28356692,-0.4511274,-0.052011877,-0.13823624,0.5203658,0.6357318,0.40174174,0.025357304,0.7199967,-0.5200818,0.06721691,-0.039672773,-0.24784416,0.1912853,-0.078132875,-0.1446269,-0.5309412,-0.068427846,0.03690228,-0.10239658,0.075964324,0.44600162,-0.501507,-0.009885441,0.18091191,0.53182554,-0.29778162,-0.09875361,0.6036437,1.1265198,0.7732788,0.2713559,1.1201756,0.043088824,-0.0560393,0.040609706,-0.2180811,-0.6285297,0.19215465,0.51911145,-0.39079273,0.2231725,0.23535101,0.20588326,0.27391094,-0.23792373,-0.20412649,-0.16483603,0.17188536,-0.13261057,-0.49972034,-0.38686523,-0.12973818,-0.012418668,0.07194845,-0.140785,0.056405827,-0.27355352,0.21523081,0.32363817,1.4574574,-0.32257915,0.14360307,0.10221439,0.28885296,0.06739842,-0.2939125,-0.07847848,0.06831955,0.38971683,-0.0815082,-0.38773453,0.015781537,-0.07574562,-0.65360117,-0.2304654,-0.116635,-0.19396593,0.083044894,-0.2519513,-0.107024044,0.05616991,-0.5213116,0.47657117,-2.8450756,-0.104746126,-0.25749773,0.35807535,-0.1731189,-0.5212898,-0.07466748,-0.22620846,0.5381376,0.37752545,0.4024895,-0.5151203,0.30565527,0.42257753,-0.4260827,-0.11133003,-0.6797776,-0.13639349,-0.09618566,0.23672338,0.13720475,-0.24978487,0.056053545,0.09865583,0.44352964,-0.24025255,0.30889595,0.40827528,0.14138196,0.08299465,0.5470144,0.0457962,0.5922776,-0.07783704,-0.3110715,0.34000096,-0.2819828,0.06238367,0.10270702,0.27983195,0.266503,-0.3506744,-0.8143241,-0.7571896,-0.50258887,1.1456159,-0.054500367,-0.43271694,0.40057445,0.04186408,-0.59549904,0.032951456,0.33652034,-0.20274425,0.004902164,-0.9949359,-0.15065674,-0.25376788,0.35955152,-0.08028152,0.088865936,-0.6157756,0.6574417,-0.21829696,0.43263006,0.46536162,0.23652224,-0.46776107,-0.2710885,-0.15703905,1.2499146,0.43738642,0.0048454055,-0.06511658,-0.12613557,-0.37221336,-0.13419199,0.23248135,0.31544128,0.4965012,0.04871805,-0.07520252,0.14306812,-0.18500853,-0.036116228,-0.0718621,-0.4345669,0.0039739385,0.12099355,0.5199103,0.2843349,0.09899839,0.68307227,-0.23972757,0.12622239,-0.2372822,-0.41364312,0.51535565,0.5334041,-0.1139498,-0.33636197,0.6085065,0.38967252,-0.07655604,0.3849618,-0.53380543,-0.26818025,0.34766114,0.14851253,-0.44020918,0.028400898,-0.386044,0.2336936,-0.96683645,0.38487282,-0.46716943,-0.7538455,-0.5239908,-0.19303997,-2.8579285,0.1278917,-0.055018764,-0.48985147,-0.09867165,-0.23130132,0.4457922,-0.6272373,-0.6602682,0.07122559,0.042390022,0.6562627,0.018676097,-0.09678813,-0.14294375,-0.22935732,-0.10345792,0.27955517,-0.016625373,0.12905662,-0.0123056695,-0.28027824,0.043513983,-0.07701044,-0.27086964,-0.041576713,-0.6927681,-0.38201916,-0.16233885,-0.39973387,-0.43049523,0.73857284,-0.71071297,-0.10525676,-0.22812855,0.069233805,-0.018586734,0.4986876,0.06881904,0.12612455,0.17673862,0.0014785329,-0.21984403,-0.25746855,0.15306671,0.07360981,0.35418466,0.484785,-0.3906902,0.26863578,0.6857503,0.7030635,-0.1135857,0.85993284,0.61710846,-0.13458182,0.08670653,-0.38421407,-0.08543498,-0.51128215,-0.27653953,0.018885583,-0.3716009,-0.4284943,-0.05402948,-0.21523339,-0.73603773,0.5581444,0.025550336,-0.13967298,0.042290423,0.29863125,0.16295333,-0.080199,-0.13248341,-0.05325463,-0.092687525,-0.4280475,-0.36929712,-0.70828027,-0.38542464,-0.17766844,1.1508147,-0.053917196,0.3459004,0.27878284,-0.25743428,0.11388747,-0.016451731,-0.039352044,0.054493535,0.27133128,-0.008467565,-0.6579959,0.17229952,-0.19498439,0.00632675,-0.53127545,0.06948486,0.83408546,-0.36245298,0.42350164,0.3689538,0.18042691,-0.17804962,-0.5497578,-0.07118143,0.03358864,-0.47061506,0.44842955,0.092624925,-0.6148403,0.54998475,0.41295633,-0.17806797,-0.592199,0.50427586,0.059063178,0.25995567,0.19625469,0.25358072,-0.046958435,-0.11620317,-0.08547137,0.25785816,-0.3602674,0.4800547,0.35749552,0.16458876,0.295434,-0.23599143,-0.16775715,-0.61076075,0.027787978,-0.22284858,-0.22642088,0.09569331,0.089551784,0.21152397,0.39008448,0.16906874,0.37241518,-0.52522594,0.20880015,-0.14403331,-0.16541065,0.11106884,0.51245826,0.4277824,-0.44437337,0.46757424,0.054595888,-0.16451637,-0.4469541,-0.195594,0.64051,0.1450715,0.08662363,-0.019542307,-0.1837612,0.25042543,0.8783253,0.21703386,0.3395227,-0.06983032,-0.2137001,-0.03527352,0.035341103,0.31229612,0.09697213,-0.6011966,0.102953255,0.084170066,0.12098982,0.4494268,-0.019191876,0.0693987,-0.26343146,-0.27054712,0.115300536,0.14929356,-0.07784876,-1.1396527,0.6253842,0.17368108,0.5377443,0.41624352,-0.025376013,0.22495466,0.7102804,-0.298569,0.13041945,0.050473947,0.05006258,-0.3309609,0.50602984,-0.7733233,0.21843176,0.061535086,0.0073364205,0.001087139,-0.18596244,0.27825856,0.952553,-0.19966526,0.25277588,-0.101893395,-0.22776377,-0.005410557,-0.18120147,0.080682404,-0.31809953,-0.26565534,0.8318951,0.40995106,0.3812758,-0.11596168,0.008968045,0.12113797,-0.063318096,0.17492028,-0.124299444,0.09550082,0.013585784,-0.39305198,-0.14758915,0.53736156,0.16548072,0.067119814,0.18062158,-0.37341914,0.36261442,-0.036380086,0.057944696,-0.13728614,-0.45951948,0.12314335,-0.19217055,-0.113657676,0.059666146,-0.32635266,0.21661772,0.101578765,0.045486737,0.031245759,0.39485064,0.39840722,0.6699627,-0.09311237,-0.016893512,0.011658654,0.07378573,0.012750402,-0.018718971,0.022954633,-0.36632323,-0.118819594,-0.78978604,0.27212057,-0.1731426,-0.2855055,0.24852371,-0.007114686,0.13563913,0.32590175,-0.26137912,-0.08902409,0.08415613,0.16815786,0.114032425,-0.2650918,-0.35761532,0.13387771,0.08237847,0.1248489,-0.24724014,-0.01429078,-0.36594677,0.13550262,0.18675031,0.55878896,0.36313602,0.21260695,-0.460695,-0.038872298,0.021330168,0.38534388,0.039557297,-0.112633966,-0.07331649,-0.2916304,-0.22958393,0.21694808,-0.18484557,0.26548836,0.13853733,-0.31433043,0.6515585,-0.040792663,1.3847398,0.013595429,-0.36757132,-0.024309248,0.37439954,-0.038446516,0.092106104,-0.18618685,0.80466366,0.5709358,0.040412765,0.09863452,-0.3588543,-0.38199767,0.2024188,-0.18846714,-0.118395984,-0.08553908,-0.7760691,-0.43426538,0.24271144,0.098027386,-0.20814924,-0.027577639,0.12349441,0.36697468,0.045598015,0.35474452,-0.4437271,0.05892547,0.2497197,0.3103014,0.024968931,0.028960312,-0.6372349,0.41333666,-0.7446491,0.108447455,-0.31023243,0.22652476,0.09933821,0.0050519607,0.048697796,-0.07204273,0.39331353,-0.115893126,-0.38132623,0.064821355,0.6904111,-0.002153312,0.25172064,0.5963605,-0.28150097,0.37798497,-0.08118294,0.23604345,0.88174987,-0.3134933,0.16205512,0.3744571,-0.12171636,-0.43027434,0.18870996,-0.41599107,0.120686375,-0.035528604,-0.36742368,-0.20040949,0.2846526,0.32676485,-0.012692906,-0.1108276,-0.48044404,-0.07404914,0.35713437,-0.4350067,-0.29667848,-0.19706553,0.1751446,0.54171723,-0.39719534,-0.5581141,-0.058444012,0.46365058,-0.22189458,-0.37519288,0.1398771,-0.19894798,0.37426028,0.14190818,-0.44273862,-0.15677114,0.05841777,-0.33154374,0.0013367584,0.1953785,-0.34482744,0.0340822,-0.20322023,0.04758664,0.6599709,0.06346003,0.05893289,-0.61920005,-0.44310966,-0.6823299,-0.2674261,0.10048727,0.28867948,-0.02207415,-0.6334181,0.018299228,-0.15954432,0.012072225,0.06075111,-0.37894812,0.5181883,0.10986873,0.5665858,-0.4139539,-0.65477103,0.08647397,0.21145372,0.22176386,-0.5570198,0.4619863,0.06256775,0.91646314,0.15630506,0.030639678,-0.03839536,-0.5441462,0.34540096,-0.08666662,-0.18639122,-0.8216209,0.06122795 +583,0.2951019,-0.47747055,-0.3779799,-0.2274859,0.03488745,0.0013182277,-0.072509795,0.5363439,0.22806257,-0.48291272,-0.12893535,-0.20901237,-0.034299973,0.29450253,-0.21028207,-0.37157533,-0.22853246,0.02467591,-0.53312707,0.46513146,-0.5283334,0.13161011,-0.1208648,0.2904093,0.20796555,0.23342909,0.09500004,-0.01965587,0.11234784,-0.19546248,0.0140570905,0.268496,-0.37393174,0.26018646,-0.09928743,-0.30937058,-0.06257622,-0.40234062,-0.4367342,-0.816021,0.34019944,-0.8094437,0.24875514,0.0774849,-0.42129436,0.038872495,-0.13266823,0.24414724,-0.30443928,0.0506447,0.17633702,-0.07690513,0.13622771,-0.13751106,-0.042490996,-0.26972508,-0.5528937,0.09182589,-0.30182916,-0.20826967,-0.05209609,0.13087882,-0.48717138,0.015423389,-0.28316313,0.54558206,-0.4549983,-0.16926406,0.2488474,-0.27218372,0.41588223,-0.7606404,-0.3773542,-0.14614049,0.12740342,-0.08123536,-0.22824925,0.24790621,0.24449264,0.48633415,-0.011118247,-0.03816932,-0.22192828,-0.08152258,0.28319106,0.31362915,-0.10653989,-0.4883482,-0.03458453,-0.11416657,0.14733464,0.28748277,0.19149105,-0.32668245,-0.059260108,0.251594,-0.31999052,0.22715984,0.5001345,-0.31005663,-0.25638515,0.23735796,0.6390134,0.29606798,-0.12502974,0.00734506,0.019128557,-0.53959054,-0.21687375,0.21030211,-0.2472783,0.3607475,-0.101086326,0.27019536,0.68299514,-0.3567846,0.026992382,-0.16219164,0.009225154,-0.3019104,-0.38879293,-0.3530049,0.20813963,-0.26720232,0.11039289,-0.24033754,0.92206985,0.24677232,-0.71007454,0.32801723,-0.3631046,0.22504385,-0.22120056,0.70695454,0.7094723,0.39365372,0.37241906,0.74552464,-0.399048,0.09176107,-0.1507061,-0.14291352,0.10682189,-0.30353305,0.0009828302,-0.48499945,-0.16659003,-0.052217424,-0.13377748,-0.050092187,0.55210185,-0.58208495,-0.02733778,0.1554233,0.6449007,-0.27628046,0.21464667,0.65198165,1.0154315,1.0612098,0.1967316,1.2150362,0.25104567,-0.34449542,0.34259027,-0.32803342,-0.8678865,0.2887476,0.4714788,0.36833826,0.098198146,-0.06440044,0.018577438,0.30879658,-0.5616592,0.2897759,-0.29862642,0.46298033,0.0976009,-0.09837738,-0.41289502,-0.28695264,-0.1324562,0.025301393,-0.16129738,0.13681039,-0.18144979,0.36436015,0.022038195,1.6192061,-0.25436723,0.10890247,0.0779666,0.5733795,0.026662905,-0.3712464,0.06987702,0.30043286,0.47692505,0.03207353,-0.73545486,0.29499772,-0.1399464,-0.41172057,-0.13103594,-0.38317686,0.13317388,-0.020195773,-0.24455017,-0.2546911,-0.009630208,-0.4629497,0.4232354,-2.5864055,-0.231864,-0.21449134,0.3786863,-0.16102263,-0.23264867,-0.043612845,-0.5804104,0.4489187,0.43803793,0.43204758,-0.7341036,0.08008644,0.50635344,-0.43747228,-0.04140746,-0.6396945,-0.123788245,-0.058332562,0.27426794,0.08199261,0.083261214,-0.12967418,0.025130602,0.35335982,0.10192359,0.11945712,0.2447904,0.30251673,0.013553172,0.5233403,-0.013614835,0.4273335,-0.30776295,-0.11153329,0.5000726,-0.45226794,0.13027702,-0.1312794,0.086209774,0.47952938,-0.5916985,-0.695608,-0.69808763,-0.4235616,1.3040494,-0.116312355,-0.53597945,0.4066068,-0.35484698,-0.22301592,-0.36714518,0.54181725,-0.2561061,-0.2246895,-0.86815655,0.01656131,-0.121194325,0.29951507,0.020294258,-0.08783223,-0.32283306,0.5441158,0.0018180883,0.6233861,0.32692495,-0.13243955,-0.15995778,-0.41680485,-0.014898699,0.8911488,0.39452913,0.14724709,-0.18725102,-0.082851924,-0.26613954,-0.039296865,0.1302485,0.4768701,0.7366035,-0.112221725,0.13895467,0.35665828,-0.19566256,0.05692502,-0.10916057,-0.22192731,-0.15239997,0.09764057,0.57896817,0.463893,-0.10586647,0.22753888,0.009175273,0.25079095,-0.038784746,-0.42902285,0.3784248,0.8864245,-0.09431656,-0.22534283,0.51892287,0.5517864,-0.3613807,0.39260957,-0.44968012,-0.20927739,0.5171766,-0.23763426,-0.44631752,0.20541619,-0.43128344,0.2620093,-0.7456089,0.2636603,-0.4094917,-0.38021633,-0.7765802,-0.1363119,-2.5665948,0.1289308,-0.10527576,-0.3138582,-0.024750553,-0.09904964,0.2776565,-0.45547026,-0.56174374,0.14517261,0.18559934,0.54750293,-0.014361979,-0.06266448,-0.29971507,-0.23179197,-0.42526627,0.058940366,0.11405595,0.3181308,-0.009467432,-0.465223,-0.006173863,-0.14314719,-0.42317012,0.05085886,-0.53280705,-0.63135105,-0.24290554,-0.5283538,-0.51656497,0.6213235,-0.07237422,-0.031696014,-0.080421686,0.024048833,-0.0964662,0.30637157,0.11116031,0.12854774,0.030179657,-0.09487753,-0.16819994,-0.34770787,0.1339327,-0.02453839,0.12403871,0.32546085,-0.18743195,0.23653391,0.52186054,0.5952022,-0.028383361,0.6919007,0.6508399,-0.12105938,0.16769339,-0.19151387,-0.2442242,-0.55598694,-0.23612055,0.20982496,-0.44708723,-0.5620359,0.017309437,-0.29050305,-0.7010753,0.4906709,0.0060053514,0.15052748,0.22735284,0.19919914,0.49781865,0.06623501,0.09752607,-0.04425202,-0.06817445,-0.53777707,-0.3056374,-0.823179,-0.47245768,0.28925183,1.0528618,-0.25770023,-0.14663976,0.13586222,-0.37219998,0.046207007,0.04413589,-0.119155005,0.15823682,0.38190192,-0.012047181,-0.46144933,0.33829638,0.15814503,-0.13636523,-0.5145436,0.15357651,0.5920357,-0.699803,0.55511886,0.15322557,-0.022123434,-0.24500741,-0.3312715,-0.25558352,-0.15893991,-0.16876656,0.41280732,0.19413108,-0.692656,0.5567151,0.25151423,-0.044384122,-0.734559,0.36505303,-0.11405521,-0.18615882,-0.027913276,0.3148429,-0.10195708,0.041372154,-0.1877756,0.31383738,-0.4702865,0.28055555,0.26821,-0.22554214,0.39158043,-0.10434242,-0.129588,-0.6999133,0.071140066,-0.58816946,-0.21929908,0.38963154,0.09206548,0.008583454,0.22673383,0.21377905,0.5026277,-0.047744334,0.15561059,0.074788935,-0.15148745,0.34000224,0.3860405,0.45860404,-0.4179524,0.5828567,-0.020427873,-0.04673392,-0.13017358,0.11087261,0.3641674,0.34761792,0.35820845,-0.19009866,-0.3969777,0.4118117,1.0552158,0.1221964,0.4567384,-0.074380346,-0.1267308,0.27871138,0.17142835,0.3226999,-0.16557792,-0.42625517,0.15822864,-0.103482634,0.0659936,0.3583466,0.14660713,0.36892554,-0.14502221,-0.37685812,-0.025943944,0.19257925,-0.075970605,-0.9712134,0.31957,0.029138135,0.85625577,0.6612677,-0.07310274,-0.04399865,0.5226905,-0.13062915,0.12617853,0.21559437,-0.0073792385,-0.6037578,0.4366636,-0.6732968,0.5342337,-0.012825351,0.01805679,0.06910551,-0.16614045,0.50022054,0.5315594,-0.15785061,0.0029222334,-0.06901527,-0.31893033,0.23019767,-0.51189387,-0.045027785,-0.61323863,-0.476353,0.53506786,0.4959768,0.36304876,-0.1632792,0.035102077,0.050737087,-0.16425602,0.26655078,-0.0924687,-0.039701283,-0.005212408,-0.7183448,-0.19505763,0.47264078,0.18692642,0.011945699,-0.024086159,-0.5117899,0.19876102,-0.22279817,0.05100437,-0.10161305,-0.66821533,-0.047525883,-0.37790135,-0.15625122,0.40168196,-0.094825655,0.30662963,0.30072308,0.10722662,-0.2676701,0.030716758,0.09602273,0.8617738,-0.29514116,-0.10120551,-0.5939073,0.147845,0.2579865,-0.2047616,-0.107938655,-0.14843586,-0.11653878,-0.497921,0.6082146,0.059441462,-0.26479873,0.13912779,-0.1846327,-0.10636111,0.66907054,-0.12178914,-0.1531282,-0.1816489,-0.18822543,-0.21180059,-0.16294983,-0.079410434,0.20000838,0.2575495,0.18479435,-0.16237439,-0.12354506,0.03833047,0.45460173,0.14185208,0.22912785,0.34812766,-0.046224717,-0.37543023,-0.03745268,-0.041031383,0.54289937,0.16807358,-0.1075836,-0.11055228,-0.4781883,-0.34305775,0.08351382,-0.15391205,0.44775596,0.00715076,-0.48624527,0.50962365,0.025599498,1.0280795,0.059068523,-0.36519688,-0.063537985,0.52436393,0.025299283,-0.04849464,-0.3504098,0.7196649,0.51658785,-0.13819586,-0.097342364,-0.32651237,-0.17288682,0.33979762,-0.102832064,-0.08176829,0.000555568,-0.7928117,-0.3435163,0.14509414,0.2431515,0.21149482,-0.08247071,0.051180996,0.18341404,0.11398116,0.22810557,-0.38924348,-0.015855514,0.285005,0.05003556,-0.029795518,0.055875696,-0.4666532,0.34216702,-0.51512897,0.18108551,-0.21387137,0.11947824,-0.083382845,-0.27091494,0.24310398,-0.07714541,0.38435757,-0.33697003,-0.48598891,-0.19396144,0.5668347,0.1529811,0.23761562,0.72601545,-0.29934505,0.05992899,0.13119705,0.66379696,1.3415153,-0.14073549,-0.15088783,0.32721984,-0.38695014,-0.64295,0.3637355,-0.16431968,0.06739934,0.010904711,-0.12777312,-0.44880965,0.28669214,0.3046099,-0.12915923,0.07584499,-0.6498161,-0.20248178,0.27373502,-0.42961925,-0.13304971,-0.4959701,-0.013218818,0.57664824,-0.37334788,-0.28010064,0.1368942,0.33744764,-0.38080546,-0.34709167,-0.061325606,-0.40579444,0.29908293,0.059910104,-0.38183948,-0.05928645,0.15884282,-0.3930152,0.10040911,-0.04185478,-0.47171608,-0.060392637,-0.23697075,-0.09935905,1.0937786,-0.2794643,0.2219829,-0.37469,-0.47768638,-0.70829684,-0.12818836,0.72514164,-0.040652506,-0.0682669,-0.5523942,0.026746796,-0.023756614,-0.001427176,-0.102429025,-0.30059144,0.49972886,0.05914143,0.45338637,-0.057715178,-0.55513203,0.37014654,0.16840132,-0.02221211,-0.49303418,0.56976354,-0.018356044,0.61239535,0.033398267,0.06907205,0.18276769,-0.45712006,0.0988108,-0.14147626,-0.3456822,-0.5762665,0.1772557 +584,0.29806644,-0.05422237,-0.51852703,-0.0812731,-0.2624065,-0.08482114,0.07613993,0.5427373,0.38202783,0.016778419,-0.21389477,-0.12825187,-0.112879656,0.27716598,-0.010108518,-0.61563015,-0.21679907,0.35066864,-0.540158,0.55184895,-0.24899113,0.24221991,-0.006512634,0.5286308,0.20569499,0.21960258,-0.00859576,0.043324333,0.019535035,0.02224064,0.0030903418,0.27600458,-0.6705943,0.22099693,-0.22967172,-0.27626732,-0.24540143,-0.5367616,-0.47417966,-0.74744684,0.48459673,-0.6504323,0.6275274,0.09753261,-0.330138,0.1266718,-0.07692316,0.28011164,-0.18745433,-0.11915647,0.07121255,-0.084748805,0.026808077,-0.14396842,-0.21790709,0.06977204,-0.54658335,-0.013618104,-0.16269928,0.046385825,-0.08156943,0.12927142,-0.24272652,0.072144635,-0.17957209,0.5885444,-0.28026038,0.32058167,0.25408384,-0.012131549,0.17320581,-0.49262056,-0.09885349,-0.19075687,0.19435962,-0.08930323,-0.38340044,0.3724608,0.14922686,0.49196708,-0.14402367,-0.14961076,-0.16646299,0.21826208,-0.041872825,0.5057647,-0.3253956,-0.08253864,-0.12012141,0.04996911,0.18940298,0.251894,0.018930972,-0.36872903,-0.027729385,-0.2692935,0.13671587,0.13681905,0.4491253,0.045300346,-0.22393936,0.2112689,0.3021005,0.2379431,0.034304265,0.13394517,0.0047690845,-0.53576916,-0.22081584,-0.048401758,-0.2810233,0.57992536,-0.075710095,0.039055046,0.47316027,0.06807274,-0.12352889,0.018181294,0.27499226,0.1086031,-0.41200718,-0.3024587,0.3547237,-0.32868096,0.2591864,-0.05168357,0.52582985,0.19986022,-0.75203615,0.31944665,-0.6057432,0.21166086,0.006178595,0.479717,0.9805961,0.38611734,0.362703,0.81450623,-0.52512044,0.21575136,0.15566264,-0.24478216,0.12564217,-0.05715451,-0.030418262,-0.5303508,-0.20786428,-0.09764052,-0.44232735,0.2702125,-0.10315976,-0.52812284,-0.09480091,-0.058631677,0.67391664,-0.25677672,-0.038249403,0.8568523,0.9992117,1.0156474,0.06339091,1.1978167,0.17653792,-0.15350725,0.25195205,-0.1705914,-0.8926982,0.124248706,0.2516361,-0.67099494,0.39853796,0.12276716,0.087656535,0.37432864,-0.6366284,-0.019197961,-0.096428186,0.18791471,-0.05818973,-0.112557925,-0.4685382,-0.41651225,-0.07064372,0.14928797,-0.056635488,0.19996405,-0.2142061,0.45523167,0.080881886,1.44815,0.09859986,-0.061825063,0.07792909,0.16864729,0.16524823,-0.26573518,-0.350378,0.23604025,0.36764765,-0.012980133,-0.47261068,0.035850655,-0.13152398,-0.19912477,-0.1705234,-0.14543636,-0.0057988637,-0.087352455,-0.37009454,-0.37622377,-0.09644326,-0.32492122,0.55898094,-2.6123512,-0.09822162,-0.06664255,0.46260837,-0.18743901,-0.33320957,-0.30510294,-0.4191322,0.22938831,0.28239587,0.39238772,-0.5907456,0.08012802,0.15260671,-0.5989047,-0.07404975,-0.5996134,-0.12020755,0.26213336,0.08084076,0.005647067,0.18481505,-0.071577154,0.13165738,0.35295033,0.07477974,-0.01623126,0.28538924,0.39864993,-0.010204986,0.29674792,-0.077037066,0.50588924,-0.27575323,-0.18901469,0.37850308,-0.36447656,0.32000348,0.013025862,0.10372943,0.526388,-0.53551906,-0.6906869,-0.5396233,-0.30126488,1.1229295,-0.235355,-0.30767617,0.28497997,-0.58854336,-0.23593532,0.054624204,0.46941617,-0.15614486,-0.31557098,-0.8245477,-0.24515037,0.038169958,0.2788642,-0.011061902,-0.038628165,-0.32056847,0.61064345,-0.16469763,0.33302185,0.5434443,0.11619679,-0.14120252,-0.5835592,0.036130443,0.56855017,0.49019778,0.07411745,-0.19671667,-0.03765912,-0.21506213,-0.10090474,0.08642518,0.79457134,0.579398,-0.28088567,0.10953734,0.33552352,-0.024038194,0.044376567,-0.017956823,-0.25475565,-0.17060488,0.006739998,0.60307825,0.90027994,-0.18051231,0.2241826,-0.047928736,0.2731903,-0.010203577,-0.59954756,0.42561236,1.086068,-0.08886073,-0.25980422,0.58029586,0.22884925,-0.27062407,0.4268311,-0.48563334,-0.09506913,0.5518792,0.060009908,-0.41925204,0.030421535,-0.1921658,0.068281434,-0.9453135,0.26456597,-0.120551966,-0.6434235,-0.7105666,0.033180088,-2.2533538,0.06619302,-0.34668848,-0.037127543,-0.07827895,-0.08726106,0.12273321,-0.49629736,-0.84274673,0.1657746,0.08373344,0.42179716,-0.1572351,0.12082812,-0.05039801,-0.32876468,-0.23467036,0.13342677,0.43603835,0.28946528,-0.106704146,-0.39400387,-0.21518259,-0.13922401,-0.47247562,-0.049665857,-0.6167359,-0.5441602,-0.14372705,-0.83809525,-0.1356528,0.6011007,-0.3922193,-0.1763543,-0.21116537,-0.06702409,-0.120825656,0.21981756,0.03416792,0.30898866,0.091290854,0.005429335,0.03642528,-0.1356677,0.21969128,0.06999258,0.31253937,0.30404282,-0.20958996,0.3509216,0.44896033,0.81849915,-0.20682824,0.75348026,0.61759555,-0.021638542,0.12640576,-0.39047757,-0.3189117,-0.57446426,-0.26276657,-0.1944499,-0.39154348,-0.2625365,-0.10804441,-0.4286007,-0.9316154,0.42044544,-0.14711475,0.17498583,0.07616825,0.004393319,0.5027335,-0.18139625,0.12300986,-0.14947516,-0.2221998,-0.44570288,-0.32171035,-0.38086963,-0.571668,0.13207805,1.2090935,-0.018035015,0.14402874,0.15332936,-0.39765093,0.027096406,0.029114842,-0.09222958,0.2628158,0.52062017,0.021161282,-0.51583415,0.19791155,0.15340531,-0.14520341,-0.79342014,0.21312527,0.63622826,-0.5560749,0.763606,0.19471103,-0.03659608,-0.083870836,-0.65907013,-0.32763922,-0.008764337,-0.17319286,0.44241726,0.4138124,-0.39207697,0.33175656,0.1731919,-0.15283914,-0.7123863,0.3863947,-0.010410234,-0.19227774,0.040755782,0.34881195,-0.17631555,-0.059425574,0.121014304,0.42570308,-0.04590492,0.26798716,0.22322355,-0.10553219,0.032162715,-0.1616649,0.002099216,-0.79579943,0.24237688,-0.43538156,-0.34579146,0.31889763,0.102246635,0.105800055,-0.0041217827,0.3231163,0.3769972,-0.20409657,0.12760638,-0.17093533,-0.35083798,0.17748974,0.44361028,0.36217847,-0.4934592,0.39947894,0.021538762,0.09195647,-0.037669796,0.12584893,0.43533838,0.027357548,0.1624357,0.07945625,-0.18942113,-0.06058188,0.6006213,0.064601436,0.17561857,-0.081601135,-0.010519718,0.26719028,0.05693336,0.18020882,-0.1707837,-0.3735148,0.14816777,-0.15298383,0.16265507,0.3840104,0.15077265,0.19587462,-0.22331886,-0.4060849,0.11336588,0.15238042,0.18505575,-1.3299209,0.2599952,0.07602356,0.76184154,0.53927046,0.13550664,0.038864527,0.43522492,-0.23190403,0.115549,0.48568523,-0.076403685,-0.4806575,0.3877431,-0.6429285,0.5757816,-0.004272852,-0.03462248,0.14572361,0.1985784,0.37447092,0.7197462,-0.10291376,-0.04002404,0.0034736346,-0.18543018,0.018161252,-0.37501636,0.078541584,-0.60400057,-0.37587407,0.6551562,0.56921035,0.20727538,-0.34353817,0.014299248,0.055088717,-0.10344408,0.19610111,0.070821494,0.08311907,0.073445,-0.5828818,-0.1053962,0.56066513,-0.02101407,0.018818637,0.06676749,-0.080555364,0.3068305,-0.15601218,-0.18371934,-0.21254392,-0.8394777,-0.019496182,-0.3685896,-0.16427459,0.35477233,-0.27279556,0.1706144,0.175851,0.1584226,-0.5017537,0.40034226,0.10342241,1.0023832,-0.082815506,-0.052201647,-0.25908366,0.4400313,0.27869728,-0.12195533,-0.04471718,-0.2658442,-0.054319054,-0.36599728,0.423498,0.08129414,-0.25396767,-0.015571962,-0.037120596,0.07472003,0.42496383,-0.21729384,-0.0886813,-0.054700937,-0.14366364,-0.49792218,-0.20269948,-0.30260158,0.24433424,0.3527801,-0.12096426,-0.031169772,-0.056608107,-0.24746192,0.32938477,0.104414515,0.35014686,0.20434411,-0.018315932,-0.40997323,0.043108415,0.117726356,0.48626745,0.06645712,-0.22959213,-0.26639834,-0.12192931,-0.32678065,0.2528584,-0.17850685,0.3213149,-0.07694878,-0.211403,0.67105323,0.15844405,1.207705,-0.16580386,-0.21170773,0.042615533,0.43294096,-0.010693274,-0.17680752,-0.21026085,0.8354922,0.55469865,-0.07955713,-0.17308033,-0.19803806,-0.06240947,0.15649745,-0.084281705,-0.15462388,-0.006200368,-0.58660215,-0.24829167,0.11570669,0.16663796,0.122689806,-0.058746073,0.0018687894,0.055214416,-0.051796395,0.3095548,-0.13158496,-0.115815364,0.27737325,0.2549591,0.20492905,0.25358614,-0.3997675,0.3238913,-0.51708007,0.14143203,-0.46563855,0.14887573,-0.21175094,-0.28334916,0.06980697,-0.08582022,0.29536387,-0.3787448,-0.102692254,-0.44811532,0.62123424,0.16242243,0.1591992,0.6354302,-0.20030344,-0.048157174,0.1575883,0.375652,0.897281,-0.16976671,0.0038631558,0.15513825,-0.33389363,-0.52484137,0.28368095,-0.11857616,0.10726905,-0.21830247,-0.08837854,-0.5912454,0.06894422,-0.018798612,0.06823558,-0.17951535,-0.5943994,0.010131481,0.24364339,-0.22572558,-0.18950772,-0.43342936,0.08286085,0.55793387,-0.10584036,-0.5479091,0.20997758,-0.022095188,-0.1303455,-0.36183214,-0.0037956338,-0.39972606,0.13692349,-0.027574295,-0.52129215,-0.088775955,0.17087947,-0.3872436,0.08680221,0.052537393,-0.31069198,0.036948193,-0.076515764,-0.10211045,1.1473632,-0.2152931,0.23720586,-0.50837445,-0.5464278,-0.91965103,-0.27522472,0.3510208,0.25460568,-0.1101081,-0.7777162,0.037171762,-0.07008136,-0.1355055,-0.05466738,-0.27904478,0.40345648,0.24926585,0.39419362,-0.17996196,-0.80372477,0.071081705,0.15241322,-0.10762314,-0.44528905,0.40343583,0.1843967,0.7992955,-0.031027654,0.02859272,0.16454358,-0.49213228,0.18306541,-0.107091956,-0.16643889,-0.44850874,-0.060074586 +585,0.32698306,-0.4153019,-0.4568508,-0.07372327,-0.56168926,-0.009706276,-0.121080205,0.23424257,-0.16074672,-0.54159087,-0.07101375,-0.08694384,-0.034488004,0.25641376,-0.20630424,-0.3017104,-0.32893568,0.23304787,-0.6220214,0.67267865,-0.36392975,0.4683203,0.18996796,0.17798738,0.16156694,0.32056358,0.18920697,-0.019475846,-0.09111788,-0.06988372,-0.2267668,0.26298138,-0.646089,0.3174995,-0.2235965,-0.5411739,0.16577122,-0.43345478,-0.09526224,-0.67116517,0.09254299,-0.89253575,0.6525496,-0.12632297,-0.21911772,-0.021798015,0.10305577,0.43556663,-0.19374704,0.20476069,0.29239312,-0.08828802,0.040828686,-0.42838764,-0.059033714,-0.33554655,-0.39929768,-0.034347564,-0.6077028,-0.26684338,-0.037734907,0.17691861,-0.18304026,0.08040893,-0.24124144,0.2868013,-0.5077738,-0.1255971,0.18243293,-0.032000028,0.39594027,-0.6024905,-0.09257846,-0.21739875,0.27506563,-0.181049,-0.011432792,0.43139213,0.016824331,0.5787672,0.09755111,-0.1904435,-0.17454518,-0.18937674,0.10691934,0.4291584,-0.2637929,-0.19714616,-0.1304469,0.05657546,0.4154772,0.26808962,-0.057466585,-0.3263987,0.023306863,-0.19359148,-0.13896014,0.18312278,0.433947,-0.18940838,-0.2917538,0.09218548,0.6357421,0.06890006,-0.16589968,0.008074875,-0.06362851,-0.40758926,-0.19459201,0.17229234,-0.00379166,0.41643196,0.0715249,0.07763733,0.73476833,-0.16514812,0.019646117,-0.21931358,-0.15077804,-0.12598507,-0.0024183989,-0.37026313,0.07526283,-0.4754517,0.08903448,-0.17355537,0.674435,0.09634805,-0.6863542,0.19373408,-0.6082201,0.026715236,0.011164508,0.6273161,0.42167744,0.61579406,0.0625454,0.78840923,-0.41249985,0.14831017,-0.18478642,-0.15415426,-0.14941426,-0.16816266,-0.17780767,-0.48688444,0.18869296,-0.19302268,0.048757453,-0.3300657,0.35066622,-0.60873145,3.9396542e-05,0.16715908,0.65099186,-0.4343205,0.2769437,0.7885967,0.99156296,1.1341646,0.14738202,1.2091467,0.2881306,-0.26619598,0.02591857,-0.21167357,-0.57188445,0.09986083,0.57851803,0.2452599,0.3164213,0.047650952,0.06852226,0.34283024,-0.43890694,0.10828425,-0.32323223,0.44082,-0.05360139,-0.12759756,-0.6339698,-0.19035599,-0.020864965,0.044027664,-0.2578656,0.16621885,-0.33598137,0.44487068,0.14043768,1.504613,-0.3727834,0.07798183,0.17542766,0.23174353,0.17635547,-0.08122238,-0.028373409,0.37469912,0.48843774,-0.045321785,-0.61655027,0.21652505,-0.27806097,-0.59361976,-0.18114176,-0.2418985,0.06203198,-0.09494831,-0.46456614,-0.40127322,0.112062335,-0.33041698,0.3390488,-2.3269272,-0.110495806,-0.24417453,0.26934347,-0.2859045,-0.20551722,0.053738806,-0.3243677,0.2861337,0.35364726,0.28636858,-0.5672003,0.49660197,0.4412096,-0.38266727,-0.12788187,-0.6984617,-0.08641473,0.016505476,0.46063423,0.066086695,-0.1277066,-0.08051986,-0.0038021845,0.62078464,-0.29702595,0.10892685,0.5334314,0.2628002,0.16296665,0.5404463,0.17507349,0.33229938,-0.42442662,-0.1314288,0.47478685,-0.14470677,-0.007731442,0.19156215,0.17490889,0.36737362,-0.6821719,-0.6448666,-0.73603964,-0.46557692,1.0950763,-0.2046447,-0.5273782,0.18243258,-0.025727382,-0.078943595,-0.044622567,0.23513548,-0.14435916,0.21654531,-0.6688613,-0.030394422,-0.0901695,0.35650665,0.0677064,-0.006043054,-0.46491888,0.66072196,-0.06890753,0.6011872,0.45305166,0.37845835,-0.023802383,-0.25537443,-0.03428681,1.0167992,0.5402701,0.0114348335,-0.1693873,-0.261091,0.19495907,-0.083590224,0.095363386,0.2680152,0.8862319,-0.042329736,0.19134007,0.2852586,-0.13635416,0.06613921,-0.08397155,-0.22618045,-0.0506096,0.2117363,0.34776992,0.32501093,0.049199708,0.4713254,-0.3020446,0.4581729,0.005626968,-0.59916246,0.3867968,0.7320389,-0.21565068,-0.0391333,0.5153867,0.6949745,-0.36532313,0.5414806,-0.703049,-0.15465455,0.6053983,-0.24051763,-0.44257042,0.3176864,-0.2674782,0.390821,-0.944682,0.4418831,-0.43104172,-0.49709633,-0.7742619,-0.20333146,-1.9539179,0.23098274,-0.16245958,-0.16706295,-0.056458883,-0.28816155,0.3606712,-0.6808979,-0.5316946,0.06582271,0.12297501,0.4375139,0.0719645,-0.054307584,-0.25042704,-0.3902712,-0.10332155,0.29744396,0.16436948,0.1250064,-0.19698493,-0.4890183,-0.16338311,-0.22069332,-0.63549674,0.18905976,-0.6423624,-0.45299858,-0.19928731,-0.46260595,-0.22687353,0.5501901,-0.082272254,-0.05223803,-0.13944772,-0.009909375,-0.22454132,0.18074356,0.19605933,0.35011038,0.1772275,-0.2717376,-0.021993961,-0.46647277,0.22590348,0.14138612,0.06536294,0.1799585,-0.29475227,0.17679061,0.4863235,0.6477645,-0.08904467,0.8814766,0.4834095,-0.2516677,0.33284917,-0.42267385,-0.37439808,-0.80229014,-0.425533,-0.042783994,-0.37048978,-0.61600405,0.07017249,-0.28467897,-0.7110814,0.7579961,-0.18758737,0.3268737,0.021916376,0.32982704,0.323857,-0.08210548,-0.07576526,-0.22519366,-0.1573924,-0.42906922,-0.39384,-0.8002433,-0.4683192,-0.2499719,1.3093847,-0.118010946,0.019900432,0.05270671,-0.30304033,0.34556842,0.03899041,0.108634576,0.36913842,0.33867306,0.1008269,-0.69678813,0.37674993,0.2719265,-0.1140344,-0.296916,0.06718888,0.72847646,-0.6358074,0.27752897,0.15744771,0.09516067,0.11229302,-0.5094509,-0.039225526,0.010665404,-0.37306204,0.39544603,0.12724781,-0.51659673,0.474195,0.3568124,-0.38748756,-0.6987985,0.13692226,-0.074631795,-0.15405545,0.092539735,0.3241797,-0.078952774,-0.17229891,-0.28001356,0.2548527,-0.41823024,0.26697198,0.3118612,-0.07028923,-0.009980346,-0.23613071,-0.3642258,-0.81585914,0.27389312,-0.38232654,-0.2568379,0.40321735,-0.016037975,-0.25553796,0.36233148,0.16800635,0.48385257,-0.29477423,0.09849744,-0.10503466,-0.30992624,0.3200999,0.45735258,0.21069585,-0.2731332,0.46781558,0.03753844,-0.10891642,-0.31635508,-0.020862805,0.30699447,0.07828973,0.097061686,-0.34566903,-0.21819162,0.5035506,0.74272907,0.24676748,0.5468172,0.0024778268,-0.23091304,0.3381458,0.20237528,0.09774738,0.08906656,-0.23926142,0.20269196,0.18358366,-0.005974103,0.38967124,0.17391801,0.29546627,-0.12051549,-0.10474624,-0.01209751,0.35587564,-0.19360103,-1.0796729,0.22909215,0.13049322,0.6272484,0.6865665,0.21628782,0.10877253,0.53542525,-0.48647544,-0.049574196,0.35453525,0.011457758,-0.39746907,0.6255951,-0.5969803,0.29791164,-0.07190175,-0.000268057,0.092472635,-0.11304832,0.3550994,0.85766345,-0.115440965,-0.03123339,-0.083180256,-0.010560983,0.010699489,-0.40299812,0.021024564,-0.23646823,-0.43283033,0.62752813,0.17846014,0.477276,-0.13673164,-0.05188089,0.1673131,-0.32402918,0.56639194,0.09093604,0.06584123,0.03177155,-0.19245787,-0.19386463,0.5121862,-0.0031160542,0.024449902,-0.06190757,-0.5866456,0.15444212,-0.04304866,-0.012394832,0.14336355,-0.65526295,0.31421384,-0.38487926,-0.301423,0.31192514,-0.047100868,0.035479564,0.06290589,-0.0568124,-0.25684574,0.055843476,0.14633079,0.76576084,0.056901593,-0.33634076,-0.09736871,0.076558776,0.17243645,-0.37859637,0.18792011,-0.11245748,0.122346796,-0.7861766,0.5252659,0.061320074,-0.37482414,0.3824319,-0.28555688,-0.1592025,0.50783724,0.03436764,-0.06747576,0.07985401,0.07155243,-0.24505083,-0.28800553,-0.2870519,0.06642108,0.0615494,0.065800734,0.03301314,-0.1113953,0.013361065,0.7266422,0.13159385,0.508493,0.16573702,-0.077191114,-0.53099835,0.08062967,-0.06118806,0.18702814,0.10135051,0.2857418,-0.15099466,-0.45105448,-0.2517225,0.009053563,-0.24136059,0.30163702,0.10659128,-0.4509265,1.0849847,0.048021138,1.1932623,-0.010859762,-0.30404267,0.065078035,0.55954975,-0.14479709,0.09677531,-0.3472019,0.92195374,0.68005645,-0.10712313,-0.04062166,-0.23759554,-0.27242798,0.23760554,-0.2913173,-0.01597367,-0.114992246,-0.5229719,-0.63766706,0.19880913,0.34229207,0.03183653,-0.0029226243,-0.04501713,0.20322953,-0.034070335,0.37657598,-0.32271904,-0.13954255,0.15328793,-0.035930555,-0.061046857,0.11984187,-0.55553836,0.31314704,-0.65230995,0.2842033,-0.36424154,0.1307652,-0.003149867,-0.29781228,0.010006699,-0.011975833,0.21970798,-0.33241183,-0.3290123,0.0516954,0.5570424,-0.15267135,0.23828271,0.782782,-0.25464806,0.29094929,-0.042539943,0.34986755,1.1285423,-0.36862373,-0.0008775592,0.17302577,-0.5314435,-0.48058322,0.33386388,-0.18447383,-0.19031276,-0.13257952,-0.5628789,-0.4066329,0.2282268,0.30126998,-0.14263509,-0.055771586,-0.48122665,-0.032610517,0.36665395,-0.48684406,-0.16617772,-0.23107457,0.47197446,0.74408966,-0.35391882,-0.4610967,0.059545867,0.26354656,-0.5350713,-0.34707513,-0.11104089,-0.22591887,0.51940984,0.05178914,-0.26792863,-0.050508764,0.17236368,-0.35648522,-0.3369592,0.22342502,-0.3727808,-0.08633475,-0.3322532,-0.016221954,0.8425025,-0.048767872,-0.32085818,-0.43937835,-0.43614265,-1.0036114,-0.5641801,0.5554804,0.29918072,0.112170205,-0.4754565,0.2705829,-0.23237583,-0.19984205,0.09770717,-0.3728227,0.33041117,0.31352663,0.44315848,-0.32829806,-0.72252935,0.31324974,0.1942804,0.11263404,-0.55783856,0.76053727,-0.040186286,0.6177658,0.046606116,-0.101672545,-0.044427585,-0.5716558,0.24893169,-0.23765509,-0.15503731,-0.7579282,-0.11159326 +586,0.8037048,-0.12326792,-0.37064317,-0.19048482,-0.28422126,0.12661678,-0.26183823,0.5641649,0.39199364,-0.54897,-0.38457662,-0.23914677,0.0013268049,0.3917947,-0.2597335,-0.9597449,0.24265684,0.12479103,-0.3877198,0.6516674,-0.5113407,0.22597612,-0.32956278,0.417663,0.21602258,0.39659908,0.24625611,0.1199308,0.11710394,-0.3076452,0.26470086,0.02153324,-0.538229,0.25848845,-0.02160259,-0.41237324,0.0072636767,-0.5397314,-0.44946444,-0.80339885,0.3657665,-0.8212251,0.5635588,0.019013323,-0.1698073,-0.025995314,0.14141497,-0.07809878,0.12382162,-0.14015016,-0.10537613,0.03940915,-0.32698217,-0.21622299,-0.29394054,-0.7017092,-0.69032013,0.027602,-0.29764375,-0.13079049,-0.41540653,0.038579766,-0.48278219,0.0728235,0.075950466,0.52455467,-0.551766,0.11865311,0.12945794,-0.14386757,-0.12542643,-0.6309111,-0.3451586,-0.12189955,0.25871995,-0.082180336,-0.21530789,0.18049818,0.4653304,0.51274467,-0.036101278,-0.03985009,-0.2244137,-0.032849487,0.33153832,0.7508347,-0.11135778,-0.8441565,-0.1877336,-0.05950948,0.43289003,0.12257309,0.49387833,-0.30616382,-0.004122604,-0.011715575,-0.3343804,0.73475766,0.58866096,-0.5938604,-0.109537356,0.22181673,0.44324666,0.25238585,-0.2651203,0.27173844,0.048721693,-0.5589067,-0.26052824,-0.22130364,-0.07859891,0.53408545,-0.11821573,0.31145433,0.46515477,-0.4378522,0.08184126,-0.044500187,-0.22906183,-0.22009769,-0.26629803,-0.10478024,0.24948101,-0.2556348,0.15004815,-0.38124353,0.85388094,0.20545945,-0.6978973,0.36174735,-0.6170984,0.12742735,-0.04685688,0.58067334,0.70224124,0.36573735,0.55049634,0.58623016,-0.2351302,0.013443909,0.019429414,-0.32987946,-0.045644023,-0.13917015,-0.10977225,-0.31783116,0.23964292,0.10603959,-0.15221392,0.15502809,0.8939823,-0.47763625,-0.054774024,-0.003595168,0.89217377,-0.27248937,-0.21683007,0.81085515,1.1174319,0.9597908,0.11149334,1.4141338,0.2546829,0.001918958,0.054059993,0.13367414,-0.86119676,0.28579003,0.54275805,-0.16135551,0.40630814,0.21824323,-0.11206308,0.41649663,-0.48684558,-0.12684907,-0.07892942,0.4695385,0.32688266,-0.37380522,-0.4574617,-0.10160272,0.09902844,-0.041265424,0.30298474,0.21478137,-0.2564,0.26317504,0.022909435,1.5918903,0.06908763,0.004862097,0.060817864,0.68055683,0.30128404,-0.2317002,0.20996466,0.039325345,0.06948215,0.025735343,-0.656801,0.17129844,-0.18832515,-0.430645,-0.25079587,-0.29002833,-0.42510644,0.11609964,-0.120031,-0.27279055,-0.18742982,-0.0941044,0.46663362,-2.437995,-0.24118096,-0.099930406,0.40727612,-0.10767233,-0.41356304,-0.06789864,-0.43832615,0.3240945,0.2777184,0.39389923,-0.75914675,0.51596004,0.66073674,-0.65543294,-0.10008877,-0.6452101,0.16810374,-0.073140286,0.40713835,-0.026278816,-0.01538851,0.21404529,0.14649571,0.5541125,0.07146955,0.20753886,0.27233452,0.63284343,-0.05293161,0.37074935,-0.2636864,0.5718778,-0.0164528,-0.20218706,0.19738154,-0.25422856,0.23511477,-0.37420788,0.15275432,0.40624514,-0.4899516,-0.93698955,-0.68486667,-0.336522,1.0162796,-0.027305214,-0.62775534,0.2469614,-0.52323085,-0.4016692,-0.18891953,0.6199054,-0.4281678,-0.2500067,-0.66213703,0.08738118,-0.07319044,0.15178066,-0.011404883,-0.05413783,-0.5321036,0.69357324,-0.14164595,0.40326014,0.10644245,0.32343316,-0.22403361,-0.55691904,0.09628489,0.9206415,0.4643324,0.25524467,-0.34060392,-0.12404378,-0.44099805,-0.08757403,-0.029896235,0.9686509,0.42814767,0.032368097,0.05394785,0.15810795,0.1240362,0.08826273,-0.18651725,-0.23824745,-0.3287255,-0.11746542,0.6247957,0.8780356,-0.5437805,0.3250411,-0.019551711,0.03742909,-0.32891354,-0.42707622,0.45372698,0.8593652,-0.25602406,-0.27630216,0.5994141,0.38410243,-0.57034665,0.38747045,-0.76471883,-0.08190415,0.3878555,-0.03011738,-0.34052017,0.19380201,-0.28111613,0.09969643,-0.808219,0.4795618,-0.39918268,-0.38345587,-0.38029462,-0.017236942,-3.6225302,0.2920032,-0.05377495,-0.17566513,-0.27804613,-0.20516807,0.26747176,-0.43319356,-0.7487023,0.20266414,-0.07466144,0.8055256,-0.095274545,0.1895008,-0.24763714,-0.30868977,-0.30293006,0.09516833,0.062977724,0.59664404,0.005744392,-0.3093997,0.09393723,0.062441353,-0.3048031,0.16723976,-0.1779277,-0.6714367,-0.07375794,-0.17786044,-0.17016885,0.6887748,-0.5766331,0.06627195,-0.50933987,-0.059548978,-0.4147648,0.3277807,-0.06879273,0.020369953,-0.04703096,0.038949665,-0.11858437,-0.19697623,0.5641783,-0.042932566,0.5201056,0.5841047,-0.20462953,0.05513899,0.39483336,0.6144298,0.1867486,1.0193914,0.17932151,0.08759935,0.2654666,0.042228352,-0.3193835,-0.40448797,-0.35735103,0.23528719,-0.48225203,-0.4037278,-0.22007293,-0.4510331,-0.7094364,0.29576498,-0.014359073,0.3774974,-0.04812349,0.23451494,0.6356468,0.028972896,0.006627749,0.21065535,-0.15492569,-0.81390667,-0.19259797,-0.40762198,-0.4374277,0.37270078,0.8022291,-0.033712316,-0.070792235,0.1060565,-0.32885572,0.13850144,0.01706112,-0.025256569,-0.041584875,0.21744758,-0.12725194,-0.77170396,0.47822103,-0.3721593,-0.27471226,-0.75897807,0.2723808,0.63820404,-0.62197614,0.4338045,0.2692856,0.1701584,-0.046398092,-0.47827145,-0.022290533,0.020173918,-0.32100502,0.2552658,0.43968704,-1.1954789,0.3562333,0.15216045,-0.064678065,-0.71732134,0.6383987,0.08842332,0.01376675,-0.006027406,0.40516186,0.5182505,-0.051013518,-0.5778374,0.37944385,-0.5218381,0.28159896,-0.054619443,-0.004796597,0.12896757,-0.08055753,-0.15566826,-0.88677824,-0.16429041,-0.5149033,-0.27865,0.12944907,0.15628533,0.48764756,-0.030702634,0.32356635,0.43217075,-0.34196827,0.1772895,0.14649019,-0.38584653,0.2833139,0.5021574,0.56252104,-0.31215486,0.6643031,0.034979716,0.07261785,0.3160908,0.16123971,0.32068413,0.09655792,0.36337188,0.32528946,-0.20583218,0.06125861,1.2032148,0.09050346,0.38566485,0.1314088,-0.2759334,0.5336254,0.011492132,0.2995715,-0.011334446,-0.7565064,-0.17849563,-0.12663826,0.15716009,0.6286352,0.24349405,0.27194196,-0.24442948,-0.480886,-0.0032887838,0.27155894,0.094617866,-1.3890923,-0.10433856,-0.0589466,1.0119572,0.604451,-0.29720688,0.031511866,0.4425092,0.088154264,0.13753934,0.4451312,0.21578103,-0.41634056,0.36845815,-0.5073955,0.35309908,-0.20725523,-0.04826744,0.13963968,0.022381626,0.24119629,0.7803264,-0.1347417,0.00062994525,-0.0931052,-0.09817577,0.0027107922,-0.48360854,-0.044049457,-0.6229949,-0.015601724,0.71832174,0.6623592,0.36460713,-0.092301875,0.072289556,0.061285757,0.0018405609,0.044149738,-0.0075389636,0.079879574,-0.36966237,-0.7196066,-0.43191198,0.4031255,0.023555474,0.052491244,0.11285999,-0.36794224,0.17678393,-0.08373439,-0.19774471,0.12611245,-0.6862974,-0.2011446,-0.22909804,-0.57972044,0.32582033,0.1844895,0.10614974,0.4015772,0.06373401,-0.2845021,0.263135,0.2268812,0.76400757,0.06634975,-0.038737215,-0.5885229,0.055795833,0.32036301,-0.3077773,-0.020515388,-0.10678401,0.12008543,-0.6451083,0.41943872,-0.07633409,-0.4526644,0.24705482,0.034260865,0.10517247,0.58059514,-0.29772168,-0.090101115,0.28226247,-0.107665844,-0.13250247,-0.07529754,-0.09946032,0.23228806,0.02746011,-0.28383902,-0.09272612,-0.11247275,0.04701159,0.010040197,-0.00917157,0.33228853,0.624995,0.29544953,-0.2665351,-0.23631527,0.2351644,0.81806636,-0.03847357,-0.17830773,-0.28995305,-0.72781223,-0.51190555,0.034708478,0.018803434,0.1796331,0.10087021,-0.50189054,0.33403805,0.116348416,0.9339173,0.13746849,-0.46363112,0.20191585,0.5258965,0.017519344,-0.12163889,-0.49981976,1.0055301,0.31272793,-0.25905967,-0.081170626,-0.41044274,-0.10856583,0.1687081,-0.28568092,-0.067226365,-0.024165122,-0.72339594,-0.11617258,0.120112054,0.20393454,0.0083237775,-0.09531965,0.36250997,0.3090318,0.061661243,0.4373628,-0.67763406,-0.35788175,0.30773437,0.329399,0.021920783,0.16265234,-0.3065196,0.17044817,-0.6269467,-0.0071770605,-0.52148145,0.13705835,-0.17554499,-0.2819438,0.13917571,0.36053473,0.56876606,-0.28781483,-0.49484682,-0.2547336,0.49119046,0.04209623,0.24849753,0.44373444,-0.18070492,-0.07977276,-0.03338224,0.6429712,1.3378092,0.074245065,0.22199531,0.2825896,-0.57192177,-0.734248,0.47981232,-0.58738446,0.15733884,-0.0023520698,-0.029038608,-0.60769117,0.2366511,0.26266536,0.007912219,0.09831598,-0.5788619,-0.5601638,0.15411355,-0.32414687,-0.22226442,-0.3503145,-0.12130964,0.8033005,-0.42798263,-0.17105184,0.0029756264,0.49353448,-0.12634867,-0.74521023,-0.3091397,-0.32070154,0.38591287,0.03411046,-0.26216695,-0.51422673,-0.33830994,-0.50500363,0.13502774,-0.007838043,-0.3908582,0.2662145,-0.36222094,-0.00516348,0.81190544,-0.2912656,0.32476842,-0.59000164,-0.5932905,-0.7743911,-0.49496737,0.12716569,0.1394222,0.03359847,-0.5711394,6.785718e-05,-0.039955497,-0.007033749,0.009361169,-0.3857937,0.4711428,0.10240132,0.529438,0.03864788,-1.0581523,0.1526652,0.12533604,-0.21035342,-0.7422437,0.6250084,0.0031730263,1.1072516,0.13380441,-0.020992003,-0.029569643,-0.47777253,0.15038869,-0.29405922,-0.19587833,-0.5522395,0.42898738 +587,0.2998212,-0.20368661,-0.4247642,-0.09670154,-0.19633774,-0.01818316,-0.23171844,0.18520153,0.17660537,-0.31722623,-0.018266082,-0.2320554,0.049667038,0.17401312,-0.117644615,-0.72319794,-0.13122256,0.02857081,-0.679072,0.57992846,-0.43206462,0.22068074,0.15305234,0.15476485,0.09549921,0.27416107,0.26118067,-0.23763637,0.07570897,-0.02404301,-0.00087280787,0.08261279,-0.77585447,0.15660183,-0.14856632,-0.032921545,0.12191224,-0.29227313,-0.61483943,-0.71483886,0.31875318,-0.7533511,0.48068503,0.17660162,-0.25204128,0.32515407,-0.0036176953,0.23428059,-0.4243235,0.13317193,0.19362506,-0.005045993,-0.05408412,-0.025676157,-0.15840735,-0.32588914,-0.60810757,0.098721825,-0.4941866,-0.3018089,-0.45931748,0.055276256,-0.35465094,-0.07846235,-0.12329104,0.32737175,-0.4318386,0.017961,0.2539886,-0.04553003,0.34781307,-0.5828739,0.048165653,-0.17815523,0.16313317,-0.14304976,-0.16487162,0.42347285,0.2255419,0.38973188,0.03996805,-0.21360943,-0.08215829,-0.07541631,0.16868581,0.40894505,-0.2342755,-0.31166703,-0.019483803,0.045525305,-0.014377473,0.14085978,-0.082332626,-0.46690673,-0.10736004,0.058648404,-0.046589263,0.26849014,0.6225672,-0.23240569,-0.38379017,0.33000636,0.35964727,0.3137512,0.0767243,-0.014287536,-0.0034500095,-0.59108293,-0.16704348,0.19924144,-0.22141302,0.5346859,-0.12355016,0.052072454,0.6388788,-0.16153696,0.07622909,-0.12057377,-0.03961476,0.12770241,-0.10773473,-0.17079438,0.29575175,-0.54609686,0.18567468,-0.18516822,0.68500817,0.19762142,-0.65649134,0.51279813,-0.5610241,0.23406434,-0.056824088,0.6326771,0.8457801,0.30639657,0.0720763,0.7463202,-0.5264932,0.15094325,-0.090754405,-0.4380808,0.33115783,-0.1898206,-0.057929743,-0.33612007,-0.2396314,-0.029632227,-0.21436603,0.0068975175,0.32436213,-0.53186524,0.033779986,0.0110321,0.7297227,-0.30236173,0.033453584,0.40996864,0.96785504,0.868801,0.1005558,1.2557856,0.36648232,-0.27308407,0.40268874,-0.29412356,-0.9075107,0.19286713,0.40889812,0.11518967,0.19878559,0.09971933,-0.18707402,0.23773184,-0.45248514,0.07279148,-0.29722527,0.3471364,-0.08649992,-0.1533352,-0.34136257,-0.19722867,-0.1074558,0.12791313,-0.09058435,0.29292107,-0.13837649,0.06277863,0.035667527,1.4503534,-0.20446433,0.2541741,0.0883821,0.5015919,0.229103,-0.1788197,-0.10040756,0.31624562,0.466806,0.30962968,-0.65396917,0.13798583,-0.18228228,-0.31584305,-0.16577384,-0.37405285,0.12480914,0.07082375,-0.37219235,-0.079312906,0.11424885,-0.3048634,0.4970787,-2.7174115,-0.11193369,-0.11926542,0.3245124,-0.31677675,-0.17890158,-0.20278727,-0.47237173,0.5033844,0.36203933,0.5382926,-0.5949462,0.13254859,0.46422502,-0.54272985,-0.003291905,-0.5419224,-0.07150592,-0.014335955,0.48034105,-0.0060175485,-0.023194566,-0.019023884,0.31121415,0.4119309,0.15744832,0.027421901,0.15990876,0.35029808,0.0676296,0.4157064,-0.09814894,0.32030553,-0.27413717,-0.18686096,0.43922064,-0.0813825,0.37819886,-0.112800635,0.13338992,0.22015204,-0.51154673,-0.93231666,-0.5932558,-0.45195183,1.1677636,-0.43331283,-0.4585082,0.3610175,-0.11427285,-0.09051515,-0.051394336,0.5912767,0.021738788,0.19072117,-0.7071643,0.051399656,0.026514815,0.3274646,0.16603367,0.032020085,-0.41911998,0.6005686,-0.05861113,0.13592042,0.32227045,0.18668255,0.12634805,-0.58506984,0.13917877,0.849052,0.3794081,0.085034244,-0.22063844,-0.2650352,-0.023096355,-0.1196819,-0.010545512,0.55467147,0.7833571,-0.038956583,0.060273502,0.10759834,-0.016670082,0.123433575,-0.12769522,-0.31925276,0.0042165774,-0.047654334,0.5173764,0.56206596,-0.09758348,0.2776345,0.07369367,0.15367362,0.012974701,-0.42468023,0.5274172,1.0686283,0.06910253,-0.076818295,0.5216071,0.5198514,-0.20252274,0.3933187,-0.54603547,-0.31152788,0.48723164,-0.1860009,-0.46640876,0.33044624,-0.34852022,0.03963875,-0.6802661,0.39682022,-0.31559685,-0.4303593,-0.5214337,-0.018218726,-3.85453,0.20598142,-0.3701151,-0.17159887,-0.15367256,0.03309554,0.46840897,-0.4471984,-0.4117916,0.22519521,0.05374641,0.50751203,-0.121085085,0.041822977,-0.21335186,-0.11850927,-0.32088667,0.19239187,0.30690703,0.17930092,-0.18068603,-0.3764649,-0.24670537,-0.18561946,-0.4291627,0.13439612,-0.47430465,-0.5075539,-0.26393634,-0.5538222,-0.024426047,0.8149997,-0.21641256,-0.025765078,-0.14012754,-0.015245655,-0.1345773,0.19348504,0.36110988,0.28688312,-0.024367508,-0.048136335,-0.28999677,-0.3183884,0.33874622,0.18039492,0.30893952,0.38611788,-0.19254704,0.023049304,0.5257485,0.4549026,-0.28569728,0.7971168,0.43921795,-0.12297162,0.33754608,-0.25544378,-0.24337217,-0.5955773,-0.39425823,-0.18647252,-0.2671154,-0.6037938,-0.09661948,-0.29827586,-0.6581941,0.42434835,-0.17559804,0.27073738,-0.0086430395,-0.05504281,0.37930062,-0.11095597,-0.075407855,-0.06736316,-0.12800929,-0.5362039,-0.22706138,-0.60320884,-0.5346354,0.22050892,0.8633738,-0.2778338,-0.16737649,-0.073357865,-0.19193129,-0.08288447,-0.18625145,0.01301081,0.2549778,0.35500082,0.16628885,-0.74187034,0.6937429,0.06136799,-0.17422691,-0.69127476,0.21619208,0.5577834,-0.6883425,0.5524116,0.26745114,0.057704594,-0.06851681,-0.51314706,-0.34487048,0.040420566,-0.2558279,0.33275932,0.06649439,-0.78716516,0.37217078,0.12507921,-0.4175312,-0.675976,0.5743365,-0.029855559,-0.31478074,0.10985255,0.31023726,-0.1582187,0.13098994,-0.13638154,0.45964575,-0.2774714,0.35326698,0.26122788,-0.06826972,0.3878823,-0.09089075,-0.15597937,-0.5610007,0.1279565,-0.42489752,-0.26152706,0.3376722,0.09540326,-0.041488107,0.037952505,0.08946431,0.46053424,-0.14910842,0.16027157,-0.008889573,-0.4240252,0.41627678,0.50836176,0.48816195,-0.39662382,0.6405934,-0.010048364,-0.24324729,0.06309112,0.2737054,0.35280243,-0.036093056,0.2393804,-0.06795376,-0.024843782,0.26290038,0.9304576,0.08188777,0.46215174,0.039994378,-0.021578338,0.4611413,0.12718216,-0.025153415,0.029243529,-0.5191384,-0.047205605,-0.0035087892,0.21301118,0.3960397,0.06815784,0.21530096,-0.18116894,-0.27247468,0.043701477,0.31516057,0.2103934,-0.9974028,0.2648075,0.15282695,0.5471373,0.62350804,-0.0021696878,0.055906318,0.65575874,-0.07830126,0.022765351,0.25119624,-0.06019656,-0.6711582,0.52173007,-0.593026,0.32566303,-0.014604209,-0.06043643,0.15054108,0.0813771,0.38514787,0.8395794,-0.17318912,-0.07421471,-0.07304357,-0.3064485,0.16848142,-0.3693952,0.14399531,-0.27893475,-0.4832911,0.546531,0.53453207,0.2080742,-0.07821892,-0.025735008,-0.0537112,-0.20364963,0.29172823,-0.0734389,-0.07229742,-0.004231078,-0.6978464,-0.2592208,0.5809065,-0.0904956,0.15855849,-0.11840587,0.023808075,0.26145956,-0.29542065,0.014241091,-0.19057314,-0.78683656,0.06987547,-0.49733225,-0.26881692,0.39354214,-0.3406877,0.33019647,0.14363779,0.014973627,-0.4151915,0.3725907,0.059241615,0.7033066,-0.1294205,-0.24394502,-0.5067528,0.055405475,0.15644339,-0.2185485,-0.1312252,-0.21784271,-0.04214459,-0.72162664,0.49104553,-0.1390749,-0.26048505,0.06136941,-0.19233611,-0.059267487,0.6456631,-0.1002062,-0.1554378,-0.11377026,-0.18903187,-0.24164869,-0.13382296,-0.05598822,0.21340862,0.32646576,0.05508872,-0.0104616415,-0.047763128,-0.09434421,0.35855204,0.19964997,0.33877197,0.1337611,0.113129675,-0.18944502,-0.035389,0.28976682,0.47338486,0.25359362,0.18866968,-0.18392897,-0.43792614,-0.42470056,0.056508534,-0.0990909,0.39723402,0.08137425,-0.40365896,0.60295856,0.10931873,1.0480721,-0.0061672097,-0.19527832,0.12367363,0.5293731,-0.05904596,-0.25236732,-0.3404615,0.8890156,0.725133,0.02727485,-0.19415809,-0.28755215,-0.1821781,0.12728201,-0.24998453,-0.016238566,0.04901456,-0.7044867,-0.09012761,0.1507121,0.41675234,-0.0018669942,-0.07994708,-0.20422052,-0.0063035255,0.032236297,0.23904805,-0.5504119,-0.15984729,0.31417316,0.06649683,0.04751721,0.17375861,-0.36298963,0.47935182,-0.48253712,0.031913865,-0.23682687,0.08351584,-0.13690317,-0.2670421,0.21656837,-0.046011303,0.4866387,-0.30332613,-0.27993006,-0.24458267,0.49480978,0.16131945,0.19343229,0.6999179,-0.19972281,0.074549325,-0.0006375291,0.47470936,0.95497745,-0.2558924,-0.03549253,0.26600742,-0.4679682,-0.5721747,0.30751878,-0.4000934,0.219209,-0.12678854,-0.2718032,-0.4243378,0.12986854,0.0916233,-0.00074732304,0.012863551,-0.78395474,-0.2613597,0.12475274,-0.1301425,-0.2955935,-0.4104847,0.2883063,0.7261152,-0.422813,-0.19417599,0.20268805,0.057792496,-0.27650514,-0.47489664,-0.030260669,-0.2384417,0.1251739,0.06486987,-0.24981976,0.047082085,0.19642842,-0.36382005,0.17890474,-0.024550255,-0.40242824,0.013729299,-0.045912284,0.008366479,1.0181668,-0.20480332,-0.07872092,-0.63926643,-0.5608946,-0.87837684,-0.40165514,0.6706471,0.24955034,0.13525836,-0.36046746,-0.04394281,-0.025553342,0.24006605,-0.06061036,-0.36661196,0.4417873,-0.051629584,0.46382824,-0.17281404,-0.78214055,0.09858084,0.1665614,-0.24090454,-0.5517184,0.46723673,-0.12994434,0.6979098,0.07813902,0.11731561,0.20052369,-0.43387604,-0.048508532,-0.2569992,-0.15106657,-0.67383045,0.15804799 +588,0.47202674,-0.23228772,-0.39951912,-0.16698663,-0.30991045,0.2960037,-0.06965855,0.3517452,0.05222285,-0.5525894,-0.19045869,-0.14385366,-0.025770307,0.15513521,-0.29101974,-0.6253093,0.007368342,0.120987035,-0.6009108,0.4231989,-0.35054073,0.37235555,0.19859122,0.16837367,0.10311723,0.2558642,0.23907879,-0.16933168,-0.14374427,-0.06694104,-0.31272003,0.27883157,-0.30274335,0.026368601,-0.102330774,-0.2774104,0.04857983,-0.27204964,-0.23719718,-0.7972656,0.44164425,-0.937021,0.4780162,-0.029631257,-0.18695101,0.35430977,0.25557762,0.23646943,-0.14257841,-0.0308838,0.20827709,-0.18465304,0.013082111,-0.19983703,-0.2249889,-0.41308796,-0.64697,-0.043306954,-0.49782264,-0.35478768,-0.30058452,0.21509491,-0.4511054,-0.028942198,-0.042324014,0.5887791,-0.49415225,-0.043874763,0.23999475,-0.24802235,0.4300744,-0.57399046,-0.11699225,-0.14173698,0.263813,-0.085456975,-0.13875957,0.18265969,0.6661656,0.32267815,0.16078833,-0.25462273,-0.31058887,-0.20526679,0.17514333,0.46336725,-0.1342768,-0.4465388,-0.0009892096,-0.0011203368,0.022494277,0.12297375,0.18769696,-0.1957539,-0.11843569,0.13721342,-0.32349172,0.44211873,0.34302202,-0.5050382,-0.31827068,0.30349067,0.7197066,0.05088819,-0.24900037,-0.018062355,0.0060859364,-0.5095652,-0.15741847,0.31523433,-0.45084304,0.4866179,-0.2809659,0.35291588,0.8536202,-0.30188343,0.07248685,0.06246282,0.14819407,-0.14577344,-0.02026999,-0.27028242,0.21664156,-0.54915774,0.012616428,-0.15856081,0.87504876,0.101189695,-0.52393264,0.25364527,-0.54540855,0.13092214,-0.17917477,0.49436253,0.5443306,0.39133433,0.25326675,0.59543735,-0.38527432,-0.029301144,0.0011762499,-0.51007915,-0.020644013,-0.15492342,-0.014974267,-0.44777113,0.048774384,0.002891604,-0.11051116,-0.0865757,0.3926911,-0.57764554,-0.016175512,-0.07375984,0.94395983,-0.34765294,-0.19042349,0.6060383,0.7916749,0.9143606,0.02682749,1.0326321,0.21799564,-0.30806714,0.23198624,-0.31802076,-0.6145544,0.3666951,0.54607636,0.04975563,0.3447299,-0.00016637643,0.0343724,0.32765844,-0.27206257,-0.026738537,-0.2324461,0.02253639,0.19499683,-0.108347625,-0.37714154,-0.19593053,-0.12346136,0.016196135,0.24551232,0.16349666,0.03064368,0.5506319,0.16592652,1.5040698,-0.080822594,0.06356669,0.111400574,0.39302158,0.13353696,0.19326021,0.016903529,0.33006427,0.31137162,0.27919742,-0.610572,0.19270635,-0.26139945,-0.48586807,-0.18044402,-0.3560912,-0.03089773,0.04725154,-0.4137074,-0.11957288,-0.13091938,-0.30633277,0.34894297,-2.55455,-0.23292154,-0.18012358,0.3057866,-0.2654637,-0.3211278,0.015379838,-0.60999274,0.24186295,0.37934926,0.4798922,-0.7431002,0.33443508,0.5478598,-0.56719553,-0.060940918,-0.5054442,-0.25125358,-0.005575676,0.37109944,0.075216256,0.10938821,0.061413784,0.20070513,0.38864127,-0.06771668,0.078073256,0.34088045,0.34665692,0.09362257,0.52725136,0.1544993,0.5440573,-0.16773905,-0.22215833,0.24979731,-0.2467358,0.20989195,-0.07966051,0.14470002,0.5728932,-0.37821475,-0.8510227,-0.7113367,-0.34943286,1.2171074,-0.2507926,-0.28513435,0.29335383,-0.12841728,-0.2669926,-0.22592995,0.38330114,-0.15143612,0.036394645,-0.8167892,0.16635129,0.02175126,0.1708204,0.0737084,-0.11916375,-0.25201258,0.65171474,-0.15277758,0.40767345,0.18495132,0.14090061,-0.26312864,-0.49712875,-0.0068490584,0.97253263,0.4197621,0.075529404,-0.18855028,-0.21704215,-0.33253595,-0.05246083,-0.05553661,0.46289164,0.8330261,0.12785572,0.110140465,0.2287285,0.048640266,0.16795747,-0.1842668,-0.38211295,-0.027680075,-0.16038185,0.44968066,0.35460874,-0.26012477,0.49823382,-0.03384932,0.4702205,-0.030926703,-0.33762997,0.4432266,1.2704374,-0.13324806,-0.21692052,0.63298666,0.38199174,-0.44328746,0.35573304,-0.619077,-0.12397669,0.6488792,-0.26575002,-0.4710166,0.22257735,-0.20148008,0.1092114,-0.92721546,0.34587038,-0.27725354,-0.34954602,-0.4350443,-0.085091144,-3.6230948,0.16148822,-0.33493772,-0.19034514,-0.1818091,-0.121968955,0.13465811,-0.6488909,-0.51600546,0.14491065,-0.012898978,0.68812335,-0.1507948,0.071867734,-0.18263075,-0.31997186,-0.093004584,0.18919444,0.1561452,0.24391551,-0.13962255,-0.50613946,0.18612562,-0.19288881,-0.526818,0.15793973,-0.65157306,-0.6466232,-0.15258238,-0.48954043,-0.36377114,0.73028946,-0.2777424,0.17824885,-0.16224675,0.11691415,-0.024187375,0.40968233,0.20697631,0.16651613,-0.039711017,-0.0037981232,0.0582698,-0.26864916,0.40783167,0.042080924,0.27018455,0.4267903,-0.113044314,0.24178746,0.53258055,0.5602745,0.0411706,0.7812627,0.38863292,-0.13805182,0.28012505,-0.26447666,-0.41177404,-0.65990716,-0.26085815,0.13920921,-0.27450278,-0.55476725,-0.09471791,-0.36066246,-0.7985525,0.66041183,-0.14258647,0.31352842,-0.06626071,0.49934095,0.49315903,-0.18453947,0.05994429,-0.07231752,-0.23875459,-0.54380745,-0.15007058,-0.61342007,-0.48462868,0.041442562,0.8893077,-0.30468744,0.025722418,-0.10174997,-0.13393988,-0.0052583655,0.20046954,0.10152226,0.27260956,0.41812247,-0.28023782,-0.75766957,0.71566355,-0.18342964,-0.21493766,-0.46867016,0.08924584,0.55296695,-0.6216265,0.40736184,0.47366273,-0.07934133,-0.15668172,-0.34736538,-0.20345174,0.047140457,-0.27094308,0.37402567,0.17203626,-0.57792795,0.40135828,0.26531485,-0.227747,-0.64723486,0.5325337,-0.016690802,-0.31338996,0.033000655,0.4622461,0.10629297,0.042903543,-0.23010804,0.07358484,-0.48147246,0.10617245,0.16584438,-0.11718659,0.31804118,-0.13626595,-0.18435484,-0.7916469,0.22835726,-0.51724875,-0.164695,0.27353942,0.14948575,0.10014132,0.37551606,0.0066941422,0.4626112,-0.30910435,0.04482736,0.11247684,-0.2814662,0.30698967,0.42642802,0.32249013,-0.36329252,0.56976825,-0.0766885,-0.056348898,-0.077644266,-0.022279564,0.47162673,0.176648,0.39506996,0.17355463,-0.22849351,0.46410483,0.864132,0.25181872,0.5398257,0.07707798,-0.1360099,0.2909228,0.11638379,0.31089357,-0.052122217,-0.55323523,-0.10514763,-0.08979716,-0.0008128246,0.5934808,0.025642468,0.3205442,-0.13693346,-0.2795471,0.021760348,0.20454231,0.06904079,-1.1156152,0.26540026,0.27416155,0.7896225,0.29558083,-0.035129946,-0.011587981,0.69470495,-0.33842617,0.13937016,0.4574596,-0.05930271,-0.57320213,0.578989,-0.5888754,0.3480608,-0.19187155,-0.109561995,-0.17314106,-0.13975565,0.25696552,0.8775881,-0.16861738,-0.13682012,-0.05873863,-0.44322842,0.43145573,-0.5376517,0.17723534,-0.47547004,-0.2503924,0.44592345,0.48230088,0.20945077,-0.19193476,0.07598429,0.14153977,-0.094631225,0.3857117,-0.012120808,0.31061178,-0.22795948,-0.62680143,-0.24751134,0.503455,0.14026332,0.20089598,0.010419607,-0.13235149,0.24557708,0.012475936,-0.024340017,-0.12212079,-0.67014325,0.029438037,-0.19779049,-0.5355248,0.5056563,-0.23731253,0.21813364,0.28372064,-0.07837834,-0.42549154,0.2390705,0.286205,0.553955,0.067603454,-0.13894388,-0.44727528,0.13870248,0.01899803,-0.19310299,0.013305368,-0.16092807,0.24295466,-0.5524036,0.5313538,-0.17218262,-0.30476096,-0.12693852,-0.31112248,-0.19598223,0.44965628,-0.17576481,-0.023504445,-0.22726847,-0.24462959,-0.15379024,-0.16464478,-0.12087048,0.30876577,0.07165483,-0.03982625,-0.28168944,-0.13718969,-0.18180059,0.5266619,0.026662353,0.3903291,0.39649242,-0.17526245,-0.43250746,-0.3128358,0.19477396,0.26255566,-0.03494245,-0.09349657,-0.3004661,-0.4444744,-0.30014834,0.2263159,-0.09582674,0.40748814,0.12180066,-0.33854902,0.9119918,-0.19208571,1.1346234,0.02643961,-0.45613912,0.049306694,0.5568924,0.020387711,-0.03930801,-0.3271314,0.8649788,0.51127666,-0.094897375,-0.1808671,-0.32995227,0.10221443,0.11096909,-0.1862039,-0.07763586,-0.10993551,-0.59162647,-0.36662847,0.18941936,0.28164816,0.16301021,-0.0051347017,0.117969066,0.26904958,-0.04863688,0.47893903,-0.46862203,-0.2602806,0.31572774,0.14415012,-0.0020481804,0.14327663,-0.30760145,0.52099025,-0.5524349,0.07025719,-0.2932255,0.21836407,-0.17948692,-0.24568525,0.23548716,0.06879491,0.38865787,-0.07701254,-0.40555236,-0.30363783,0.4618659,0.18517222,0.09569177,0.502448,-0.32395998,0.08305397,0.10820269,0.5899438,1.0598322,-0.09650794,0.05784304,0.25657812,-0.44385013,-0.5662398,0.402413,-0.2516511,0.23826465,0.015784483,-0.13744931,-0.5271092,0.2381663,0.34193116,-0.0025023976,0.027370019,-0.44487488,-0.3376071,0.275659,-0.51384884,-0.18129928,-0.2519486,0.29859892,0.5119432,-0.49280325,-0.26728252,-0.054519016,0.2598635,-0.20008598,-0.48451698,-0.116539076,-0.32142004,0.38305032,0.14981395,-0.25360447,0.07397763,0.020374505,-0.38952792,0.21735425,0.34758216,-0.4080958,0.040648345,-0.30202147,-0.03055753,0.8041172,-0.10527817,-0.14241266,-0.57714343,-0.42837283,-0.8425741,-0.44212157,0.5168429,-0.014672681,-0.014004037,-0.5589718,-0.02862059,-0.12471655,-0.13022172,0.023819815,-0.335581,0.44071358,0.1571602,0.36496148,0.060386017,-0.72789484,0.08311394,-0.0531931,-0.05489241,-0.66817486,0.41325867,-0.16460484,0.6567106,0.07060887,0.00039658943,0.3739587,-0.3213285,-0.115211025,-0.23639698,-0.2879031,-0.7200161,0.010268376 +589,0.5277773,-0.16448466,-0.5106334,-0.024312168,-0.17133054,-7.169694e-05,-0.057063177,0.5213452,0.32974315,-0.2603935,0.08581039,-0.07795075,-0.010819058,0.2902152,-0.09299208,-0.2729294,0.06518017,0.09710671,-0.41565728,0.519332,-0.41701728,0.21187022,-0.27132052,0.49360895,0.12981115,0.33112356,-0.01721548,0.07907429,-0.10898171,0.008690121,0.19007382,0.59635496,-0.20286247,0.17536421,-0.080353916,-0.14932281,-0.059269503,-0.28944203,-0.43505946,-0.76917934,0.2475656,-0.54016405,0.3885017,0.06307943,-0.42776877,0.037092835,-0.07815232,0.18893805,-0.3205039,-0.13595508,0.014018447,0.014196418,0.08511302,-0.29810846,-0.12847349,-0.25189048,-0.4528194,-0.03263118,-0.4435204,0.020936325,-0.15634309,0.16502742,-0.29702312,-0.13458611,-0.11384551,0.5883504,-0.4798036,0.16757919,0.15211266,-0.120612375,0.31555665,-0.54673624,-0.32019582,-0.095692456,0.13396297,0.15240195,-0.31820256,0.29337794,0.30639872,0.40898135,-0.08954522,-0.06474053,-0.37669292,0.00087610167,-0.029975345,0.3606629,-0.1930047,-0.53220814,-0.15792395,-0.008987382,0.23672491,0.27668375,0.1691237,-0.22270879,-0.15640488,0.091978945,-0.2223497,0.40114665,0.5244871,-0.31981444,-0.077570155,0.26975775,0.4521191,0.34543842,-0.23535782,0.054398045,0.06275024,-0.527839,-0.07904725,-0.044677176,-0.08458456,0.57983315,-0.09341933,0.29511365,0.61385703,-0.18038209,-0.20787472,0.15079795,0.16989928,-0.14246126,-0.30869925,-0.106236815,0.026825171,-0.35268033,0.056626342,0.001046326,0.6332735,0.14724806,-0.51238143,0.3645159,-0.4581589,0.132185,-0.06374285,0.54563564,0.7127638,0.41139597,0.45702657,0.7590789,-0.30043656,0.04574825,-0.12254493,-0.27483118,0.08706255,-0.107413396,-0.18206003,-0.5323438,-0.11194962,0.033386193,-0.28999788,0.19531623,0.36121416,-0.53764296,-0.21406968,0.107184306,0.70675695,-0.24098599,-0.1049448,0.58186084,1.0735378,0.84146607,0.016460579,0.91897464,0.123857796,-0.077563,0.302423,-0.4298994,-0.6531899,0.29824394,0.29277968,-0.005133856,0.1894779,0.035131358,-0.14232375,0.3950582,-0.22841516,0.03339631,-0.05606938,0.44466913,0.144307,-0.17063294,-0.36450434,-0.24272521,-0.14147915,-0.048112053,-0.11205808,0.2919472,-0.24483787,0.29277304,-0.019532047,1.6285964,0.006721434,0.051956687,0.1575981,0.5349188,0.2633994,-0.26359233,-0.10715787,0.41579497,0.19588523,0.16870134,-0.49339178,0.25090855,-0.27299726,-0.5756002,0.013012312,-0.35866177,-0.089241154,-0.047551606,-0.4906684,-0.12382731,-0.10401363,-0.31630248,0.5030979,-3.085985,-0.29599565,-0.03236821,0.42310667,-0.24166909,-0.22483574,-0.0976324,-0.3741389,0.29151088,0.32414398,0.4341947,-0.80144155,0.16494857,0.39266896,-0.41939792,-0.07031774,-0.5324315,-0.03093426,0.016533915,0.35586643,0.038233727,0.077249296,0.10375407,0.16821684,0.4510638,-0.034658723,0.1903791,0.19360483,0.2320664,-0.048382707,0.41667354,-0.099148646,0.3768307,-0.2918126,-0.24202666,0.2995506,-0.3465334,0.19999456,0.07579319,0.123943,0.52053547,-0.33894682,-0.8109459,-0.48167613,0.08077206,1.1072085,-0.19306447,-0.41124138,0.3318794,-0.68214387,-0.230967,-0.23774898,0.38168576,-0.020542456,-0.18205681,-0.7414469,-0.0092238095,-0.14029855,0.058703896,-0.10054423,-0.077905595,-0.19024348,0.4997875,0.009305178,0.46035707,0.42258328,0.045543723,-0.2997703,-0.5834362,-0.060727052,0.51051855,0.42694607,0.16508074,-0.20947129,-0.17547494,-0.18621093,0.100776255,0.18756919,0.55680525,0.5140201,-0.14035833,0.23514389,0.3234158,-0.10506326,-0.134425,-0.22513154,-0.20963144,0.025331635,0.09601973,0.51185256,0.84186417,-0.18755552,0.43826595,0.07059863,0.17628558,-0.15440486,-0.48561165,0.4765814,0.8333106,-0.3027981,-0.31146246,0.5400232,0.37860078,-0.38153654,0.30551258,-0.45387304,-0.22890635,0.5224157,-0.20546255,-0.29371923,0.3218304,-0.2641744,0.21259989,-0.71316844,0.16225937,-0.317164,-0.5050627,-0.44024256,-0.11708413,-3.105273,0.16463478,-0.27678677,-0.26345438,-0.01110021,-0.13624066,0.1379153,-0.6549986,-0.46907753,0.13103549,0.20509557,0.6114433,-0.1260888,-0.09026898,-0.3032932,-0.49132872,-0.19459619,0.13171475,0.15466705,0.49112654,-0.056159604,-0.58386815,-0.07573411,-0.0013813749,-0.36028373,0.09542532,-0.53373766,-0.55027014,-0.13025649,-0.53263235,-0.34326592,0.65755004,-0.00732141,-0.04421695,-0.21206798,0.023957673,0.059917264,0.2453295,0.094498396,-0.0021329643,0.032847125,-0.04679536,0.013541292,-0.3404308,0.0668179,-0.05209865,0.19247009,0.4601849,-0.06595811,0.2515089,0.6009761,0.64469814,-0.13134418,0.85589117,0.5648874,-0.059522524,0.28965572,-0.29405394,-0.26871926,-0.45831275,-0.33288968,0.010922328,-0.40592685,-0.4207684,-0.11189664,-0.38049498,-0.6090007,0.58127666,-0.19212833,0.27301124,0.03335727,0.23935102,0.62288487,-0.15787861,0.011747621,0.051299613,-0.21180996,-0.59063494,-0.29602408,-0.6016624,-0.47640023,0.33255717,0.9300497,-0.38588062,0.003961997,0.0991118,-0.3465315,-0.13317627,-0.0059775915,0.024286821,0.17545415,0.38598806,-0.20994344,-0.34523058,0.2715773,-0.11483741,-0.14244226,-0.47631466,0.21936378,0.63642883,-0.54198027,0.62819195,0.152994,0.039949432,-0.3149407,-0.61244875,-0.10725488,0.082676485,-0.1656416,0.58365315,0.3845362,-0.8579045,0.46708164,0.3848734,-0.25604266,-0.5661024,0.4622202,-0.17265005,-0.40033907,-0.21017861,0.31147832,0.1096469,0.09381728,-0.21300396,0.35478336,-0.45712036,0.20362648,0.32859254,-0.25440368,0.31529793,-0.18046598,0.019938875,-0.73944193,-0.126411,-0.4780837,-0.32297564,0.31618187,0.1001923,0.08857547,0.008757178,0.17008059,0.33289132,-0.3256709,0.09235257,-0.01755568,-0.15701072,0.31467044,0.49171305,0.5234486,-0.31734836,0.507372,-0.01404296,0.021849621,0.05048473,0.02288095,0.28222758,0.09128566,0.42342198,-0.023755025,-0.21489652,0.325372,0.82713675,0.09019834,0.4467922,0.0020666653,-0.17699248,0.040328547,0.032921962,0.32109725,-0.18385945,-0.4259738,0.08609679,-0.26767945,0.21521144,0.43497238,0.19362554,0.17435275,-0.0027515106,-0.4280895,0.018295133,0.20488507,0.117468365,-1.3743944,0.32870072,0.21472347,0.6903527,0.34536362,0.20802496,-0.1475495,0.68760717,-0.18408391,0.08630358,0.4196625,0.021770526,-0.48554254,0.42331415,-0.8159739,0.6235675,-0.09020806,-0.03793644,0.06816512,-0.059746716,0.42973348,0.7015029,-0.052218154,-0.1022193,0.15430203,-0.32020104,0.077426665,-0.30406708,0.022564316,-0.7650436,-0.37033165,0.51847345,0.6129735,0.3256716,-0.17249279,0.016464934,0.22127773,-0.06304403,0.21136552,-0.036462445,0.17563325,-0.22834921,-0.6720043,-0.09937109,0.44221637,0.16984282,0.14518286,-0.08394569,-0.043441765,0.2282883,-0.1779259,-0.03663664,-0.0092167,-0.6619891,-0.13384545,-0.34158736,-0.3967097,0.5341519,-0.16148742,0.35182235,0.17071642,0.074355856,-0.34013933,0.4430663,0.0007849885,0.82359636,-0.17406806,-0.029780556,-0.4863212,0.19747321,0.136074,-0.12653324,-0.21324599,-0.22132428,-0.026353091,-0.35413384,0.41623873,0.07023181,-0.24547227,-0.17888525,-0.07843224,0.08088586,0.5304611,-0.08628557,-0.33998668,-0.34799916,-0.13245723,-0.41474748,-0.19405563,0.05892627,0.2672308,0.28121153,-0.10396883,-0.05803532,-0.12519602,0.13400033,0.31844044,0.117403865,0.15363741,0.41003093,0.0138841495,-0.24531342,-0.1520761,0.22918358,0.51957107,0.06386703,-0.08606957,-0.36062425,-0.47764605,-0.42369828,-0.11187339,-0.11341238,0.4035415,-0.023825807,-0.18801263,0.73281693,-0.11351469,1.1314176,0.020254295,-0.2580668,0.08482939,0.45245415,0.046581555,-0.008784324,-0.3130918,0.78636694,0.5141734,-0.1908136,-0.22478974,-0.2557773,-0.021732505,0.21812028,-0.19746092,-0.093624406,-0.027071293,-0.6380787,-0.039344512,0.20200817,0.18333343,0.24893437,-0.17895606,0.050209254,0.29881215,0.061775405,0.2673967,-0.35237756,-0.010769218,0.25620693,0.35506868,0.06710037,0.056354035,-0.50113463,0.4118897,-0.3573609,0.22716643,-0.22925009,0.24103472,-0.123704314,-0.4365366,0.21173114,-0.069793575,0.31322503,-0.31468487,-0.20658809,-0.32694468,0.40879846,0.1408382,0.013489006,0.54123414,-0.2864099,-0.07963523,0.12273883,0.47519428,1.0099192,-0.28288907,-0.17459781,0.3672909,-0.2711864,-0.7833955,0.28020617,-0.30656847,0.2021285,-0.07889598,-0.15120849,-0.64477646,0.24708375,0.17916986,0.11361152,-0.10645331,-0.5742597,-0.03720072,0.21155296,-0.3697171,-0.1319804,-0.30174217,0.029810723,0.4770581,-0.20724995,-0.51069313,0.024973247,0.2813179,-0.18360674,-0.39292878,0.03111083,-0.32521468,0.3217086,0.06140454,-0.40221316,-0.09600524,0.13227972,-0.45983312,0.022504555,0.10178903,-0.31165045,0.19482657,-0.324248,-0.14870802,0.9946754,-0.3421424,0.3280834,-0.2515268,-0.427153,-0.67206407,-0.16945082,0.34979272,-0.028888356,-0.032575354,-0.7616229,0.103311636,-0.058113623,-0.25317848,-0.20877442,-0.30428296,0.54726815,0.06993552,0.27236813,-0.020427026,-0.69501185,0.14312778,0.13530007,-0.10308997,-0.5461365,0.5936762,-0.24500722,0.7168569,0.12794617,0.08870855,0.29198793,-0.35920793,-0.02013734,-0.203473,-0.23475519,-0.5400156,-0.044311326 +590,0.46921524,-0.35449123,-0.4258545,-0.2185201,-0.23156789,0.08020195,-0.025979647,0.64141786,-0.05056244,-0.38542598,-0.17611903,-0.048907004,0.05648031,0.41835305,-0.29986075,-0.45293957,-0.30277875,0.03995406,-0.43218744,0.60158926,-0.3777593,0.11590132,-0.23936258,0.42742524,0.18887268,0.24180919,0.05882626,-0.074504755,0.019948598,-0.09870986,-0.104826465,0.30514738,-0.59983927,0.11849825,-0.06294548,-0.54492176,-0.1301026,-0.48696247,-0.45500973,-0.64034843,0.35473654,-0.90221083,0.6278037,0.04985475,-0.2740884,0.42774293,0.15819423,0.2244686,-0.2519077,0.0032331645,0.031040628,0.21491326,0.20407869,-0.19304739,-0.089661516,-0.42232835,-0.71113,-0.035221323,-0.42713964,-0.119228855,-0.12725724,0.05354837,-0.26502004,0.050983515,-0.11947601,0.4010926,-0.563481,0.05136433,0.115984395,0.072107606,0.3252168,-0.58576655,-0.25236848,-0.07346051,0.2261878,-0.18388996,-0.10486378,0.28632465,0.21002817,0.33045623,-0.24696405,-0.1221267,-0.3556171,0.11165906,-0.08367748,0.4817616,-0.26691315,-0.59332794,-0.06833866,0.03936454,0.34947914,0.08933227,0.1890129,0.051776633,-0.1572446,-0.06497375,-0.24025951,0.38209394,0.45094898,-0.42209628,-0.40566295,0.44316393,0.40455708,0.22996514,-0.13487272,-0.06378314,0.0105514545,-0.5443542,-0.11098858,0.10272411,-0.3134203,0.5075223,-0.14286403,0.42638204,0.5205457,-0.15043384,0.15180649,0.120758645,-0.009090011,-0.072160445,-0.17599696,-0.4481018,0.2165439,-0.1529635,0.22526616,-0.13818334,0.68712044,0.008868653,-0.74141955,0.25830027,-0.5932135,0.10053063,-0.15185499,0.38998857,0.6093939,0.61541307,0.15071376,0.5942001,-0.21420401,0.05058286,-0.06358278,-0.22326423,0.09494955,-0.10700873,-0.16721153,-0.58024174,0.04079816,0.09949264,-0.12872522,0.044332404,0.555788,-0.5920913,-0.112973064,0.14492393,0.81516194,-0.30083707,-0.058004014,0.74427766,0.9738318,0.9299514,0.066779085,0.86999065,0.17504314,-0.2238241,0.22389087,-0.3687424,-0.7419761,0.28284198,0.41990674,-0.39678067,0.49192408,0.0068007065,-0.115191296,0.33963197,-0.37805513,0.010145183,-0.22950271,0.08022309,0.2585883,-0.17090024,-0.39064613,-0.3746002,-0.19174875,-0.0139981005,0.10163454,0.27620748,-0.32534188,0.3511809,0.06090343,1.6284868,-0.0018338698,0.057758674,0.11589641,0.64104366,0.19922297,0.04242709,0.05754486,0.24278392,0.4217766,0.21805343,-0.70635724,0.35403702,-0.09839373,-0.67928857,-0.08552318,-0.34721273,-0.18638155,-0.105759576,-0.5863279,-0.31610042,-0.07419854,-0.048528884,0.39916867,-2.6654334,-0.13491458,-0.073391944,0.4820789,-0.27234364,-0.30352747,-0.0788744,-0.38219497,0.49100515,0.3915203,0.4147027,-0.6972141,0.47937328,0.3634773,-0.51316637,0.006102226,-0.58873105,-0.097637855,-0.04254777,0.35296896,-0.054072984,0.08698913,0.4018526,0.18069674,0.39688647,-0.06879352,0.14031349,0.22140744,0.42092833,-0.010926628,0.46170458,-0.10641437,0.43180597,-0.2948527,-0.14154142,0.22210595,-0.40309933,0.11848183,-0.10812127,0.1877173,0.33474356,-0.5797754,-0.9742759,-0.61732984,-0.009314216,1.26924,-0.2090138,-0.35632688,0.12148355,-0.34013277,-0.15779313,-0.26667297,0.37837747,-0.30454248,-0.20067914,-0.9192367,0.07198368,-0.17729655,0.20864855,-0.034544602,-0.0034542084,-0.45077616,0.49422166,-0.027503835,0.6145761,0.26495412,0.13680515,-0.29125318,-0.58796567,0.057856616,0.60102165,0.44777536,0.07496638,-0.08966084,-0.14744458,-0.0797028,0.1379765,0.11901955,0.5527817,0.5183099,0.023210464,0.20221922,0.26623195,-0.11799554,0.11018681,-0.20224437,-0.16167897,-0.26418048,0.011218584,0.50082135,0.56386393,-0.314282,0.39898634,-0.22908953,0.30720723,-0.21297233,-0.47043756,0.50591993,1.1339711,-0.155909,-0.28808767,0.6596706,0.7150081,-0.28047878,0.25157502,-0.56317735,-0.3489183,0.42544234,-0.23935698,-0.35161033,0.10499598,-0.22553103,0.197452,-0.9324306,0.2486051,-0.3866913,-0.30288956,-0.5678792,-0.06774397,-3.1997793,0.11842488,-0.3035502,-0.26086468,-0.2315221,-0.41676065,0.19727468,-0.72705215,-0.63986075,0.1374422,0.13204035,0.5946777,-0.03717508,0.10624313,-0.18456429,-0.17494267,-0.29145372,0.1802203,0.19010568,0.35603845,0.10266909,-0.53987795,-0.06610529,-0.039577182,-0.5499747,0.155464,-0.55565864,-0.4390705,-0.049363974,-0.5644115,-0.34202856,0.5170969,-0.12205843,-0.0114296395,-0.11168819,0.04912527,-0.050402276,0.3383742,-0.08978617,0.120819405,0.047232565,-0.14185064,0.23629211,-0.18990186,0.34990552,-0.03452331,0.33388442,0.20524622,-0.25739905,0.19567785,0.6238747,0.48574126,0.014302856,0.6144739,0.695764,-0.111469746,0.266446,-0.3035999,-0.19169651,-0.5438702,-0.31269243,0.07968767,-0.30370614,-0.5526778,-0.009214897,-0.32305643,-0.8898314,0.5394926,-0.24212343,0.23507023,-0.047104232,0.23470281,0.66772896,-0.063007884,0.10939029,0.017090265,-0.13889143,-0.46513999,-0.3015346,-0.61722934,-0.2936326,-0.049494524,1.181314,-0.19233425,0.06821038,-0.06561947,-0.26189047,-0.007154915,0.09050859,0.008341716,0.18305159,0.38002616,-0.16514263,-0.68851334,0.40163663,-0.061880853,-0.22282313,-0.45587698,0.20817839,0.56795657,-0.6262436,0.39912707,0.31825578,0.015896609,-0.25163257,-0.5541338,-0.09288908,-0.04029008,-0.09870417,0.2443691,0.2834721,-0.77787393,0.49590385,0.32320693,-0.31197745,-0.6865879,0.66326624,0.03206688,-0.4422787,-0.10932275,0.22544803,0.24614127,-0.029845513,-0.12881497,0.26422766,-0.37034962,0.34675962,0.024921127,-0.068700075,0.30146715,-0.11177672,0.15306337,-0.7804391,0.13474193,-0.51826704,-0.29445785,0.45333216,0.044314284,0.22660989,0.14561465,-0.041231174,0.34568164,-0.43765017,0.050214887,0.014419957,-0.27542064,0.25580484,0.3252571,0.4414775,-0.4189984,0.5139941,0.026766159,-0.0063515534,0.16012059,0.14926226,0.42678657,0.13135797,0.40056625,0.04080345,-0.18762325,0.2938607,0.6804269,0.19965686,0.38846105,0.04379527,-0.15077803,0.30424723,0.0068404856,0.0695341,-0.14818671,-0.37696213,-0.07587363,-0.22485925,0.08422041,0.39871496,0.19775607,0.21347696,-0.26558435,-0.26598448,-0.04760148,0.3470089,0.027308602,-1.217382,0.36677596,0.111572474,0.7415022,0.479064,0.07161535,-0.051069837,0.62872,-0.2550038,0.14137506,0.4528238,0.2761026,-0.551751,0.5536841,-0.6247097,0.4854355,0.027901951,-0.03800771,-0.055706896,0.084446356,0.31517962,0.6855371,-0.042243913,0.06526584,0.1629645,-0.47504324,0.051182874,-0.31719434,0.081609845,-0.62104446,-0.07769963,0.6542279,0.4757833,0.2848118,-0.09258171,-0.023903133,0.04871716,-0.14976658,0.19281395,0.10728928,0.16957048,-0.110415615,-0.76287997,-0.11782826,0.5025948,-0.06315841,0.20158389,0.015606784,-0.45650652,0.23136392,-0.15722746,-0.1266515,0.049891505,-0.685405,0.10818133,-0.34388065,-0.27077147,0.4481544,-0.20489308,0.17153706,0.20637268,0.10098387,-0.29598328,-0.041765735,-0.021187397,0.7598635,-0.13879625,-0.2638526,-0.45920914,-0.051253933,0.13719454,-0.21158229,-0.0742418,-0.20298275,0.029620638,-0.27986372,0.41108286,0.1412955,-0.22288135,-0.023985047,-0.1342028,0.1296585,0.4780703,-0.07922462,-0.104960114,-0.19121607,-0.15678619,-0.28848386,-0.2875028,-0.22459698,0.29165122,0.29613495,0.09483734,-0.092545,-0.05335187,-0.12278063,0.7362999,-0.007456727,0.59460723,0.471683,0.2757569,-0.33389232,-0.26190224,0.21272947,0.5322125,-0.07464422,-0.0038836736,-0.44793323,-0.5608916,-0.11965822,0.011551518,-0.25253984,0.37356853,0.06307705,-0.19462575,0.7518067,-0.12045814,1.0263717,-0.021607904,-0.39530393,0.049847227,0.46701,0.03500277,-0.12874737,-0.24851523,0.9964293,0.60527265,-0.026292209,-0.16270001,-0.19153072,-0.047874067,0.083500914,-0.20898588,-0.22302479,-0.117472515,-0.61580634,-0.3686978,0.16479945,0.1084933,0.22908704,-0.006963363,0.110727616,0.20679805,0.011725137,0.3606561,-0.4413013,-0.17265345,0.22931567,0.26966122,0.121716775,0.20825328,-0.5928442,0.27345508,-0.42846283,0.07255301,-0.3001865,0.16626239,-0.022357885,-0.33358556,0.14300004,0.048807565,0.30804464,-0.21597527,-0.34998566,-0.21240889,0.46359533,0.02481233,0.059503928,0.5167328,-0.21932054,0.20336077,-0.034224622,0.6115338,1.0027299,-0.13294086,0.010163922,0.27592394,-0.44523412,-0.8655853,0.31713903,-0.20455623,0.2734388,-0.07659927,0.033062294,-0.5700344,0.3433707,0.25040668,0.06608885,-0.014192805,-0.5969633,-0.31255835,0.41698104,-0.31944048,-0.22266494,-0.4605136,0.13110663,0.6264973,-0.25043052,-0.15203013,0.05664197,0.3512489,-0.09030564,-0.38667026,0.05876631,-0.4928152,0.22577731,0.09069601,-0.34907973,-0.2484996,0.098304085,-0.3228054,0.3184919,0.25948116,-0.23981158,0.10901348,-0.40443838,0.024365513,0.99872726,-0.26711753,0.14070974,-0.5719588,-0.43436578,-0.9731053,-0.40125495,0.5211176,0.25251773,0.00038212078,-0.7770957,0.19637579,0.05346536,-0.4112163,-0.22216225,-0.3440245,0.5020025,0.097807065,0.28031886,-0.053414464,-0.61997765,0.2959971,0.09177112,-0.11346306,-0.40594,0.59638876,0.06941451,0.9659768,0.079547316,0.22376229,0.09228124,-0.45722926,-0.2266822,-0.114496075,-0.19428748,-0.70437753,0.11652662 +591,0.5681739,-0.1530087,-0.36485252,-0.19430129,-0.30421966,0.0046898685,-0.24957618,0.39911488,0.28432837,-0.4314766,-0.2648556,-0.25659883,0.13237037,0.08293189,-0.060254604,-0.29890177,0.0039403364,0.27200657,-0.64513355,0.6811705,-0.29624993,0.2602382,0.10464605,0.4366364,0.2155937,0.19268112,0.04356681,0.03079696,-0.1449937,-0.22685042,-0.0016963221,0.19839185,-0.6227999,0.21632929,-0.42298692,-0.41404364,-0.21602081,-0.48269925,-0.3014122,-0.8025819,0.11513133,-0.89819247,0.48358306,-0.09427075,-0.41270345,0.3506137,-0.003119439,0.2536955,-0.18096429,0.056075748,0.11094093,-0.02997128,-0.18737194,-0.20942874,-0.16078456,-0.27373904,-0.45486253,0.13191837,-0.31388324,0.059712257,-0.42666852,0.13614346,-0.26282805,0.10450439,-0.10345486,0.4320255,-0.35744,0.2172994,0.09742993,-0.12814319,0.19753751,-0.46282682,-0.0529058,-0.15539001,0.2904137,-0.09946982,-0.27170926,0.1348725,0.2320865,0.5398661,0.06674691,-0.19554411,-0.22827817,-0.07024041,-0.068354845,0.3947691,-0.012686461,-0.3105818,-0.17656028,-0.2450886,0.34020162,0.22350518,0.16544706,-0.15805039,-0.16542038,-0.18856072,-0.21926752,0.26614437,0.55000156,-0.28440228,-0.18742403,0.39512074,0.62694335,0.06828721,-0.12791136,0.0020815432,-0.031455044,-0.45857844,-0.18070975,0.050738946,-0.26615185,0.4563735,-0.20391074,0.17623189,0.5661567,-0.12697592,-0.16459131,0.2065725,0.060054526,-0.08033395,-0.3254481,-0.25889683,0.28010088,-0.5773592,0.07778561,-0.24480039,0.7126309,0.03455773,-0.7395313,0.2426587,-0.5489974,0.19778906,0.0132112745,0.47473556,0.85700876,0.43134832,0.27882633,0.6622622,-0.31921297,0.027181992,-0.21968073,-0.23397803,-0.077574596,-0.19882144,0.04164903,-0.4997053,0.031676035,-0.011417657,-0.17659956,0.08963868,0.6060209,-0.5106645,-0.19555517,0.10536918,0.69997406,-0.2888217,-0.11551607,1.0926661,0.8075115,1.0179629,0.14322022,1.1258324,0.27682242,-0.09686448,0.116461284,-0.30689338,-0.51317084,0.25872907,0.2706509,0.072996646,0.12889804,0.06277101,0.03595616,0.31057936,-0.49514437,-0.06800375,-0.318383,0.14689052,0.014019966,-0.00077231415,-0.4629991,-0.4360992,-0.05782549,0.21314096,0.18466382,0.28738895,-0.19316368,0.41028363,0.060227428,1.3264551,-0.022792643,-0.049730096,0.17553474,0.37847203,0.23788746,-0.23211052,-0.17911394,0.27150238,0.3233157,-0.09170963,-0.49073493,0.042776987,-0.117928796,-0.3466838,-0.054265253,-0.36094534,-0.12069875,-0.13222922,-0.45314384,-0.26640576,-0.15584505,-0.4847607,0.52151096,-2.5107436,-0.18714169,-0.059049524,0.39495283,-0.12044434,-0.3710876,-0.20322657,-0.5679178,0.44255713,0.27140734,0.4606073,-0.66843235,0.42887807,0.3113923,-0.6557116,-0.047677428,-0.69263756,0.01937823,-0.00455115,0.27935794,-0.0116875395,-0.1073634,-0.12357725,-0.087423496,0.6107895,0.097062,0.2733279,0.5420295,0.3127361,-0.012122162,0.39151156,0.12387106,0.41878992,-0.2896481,-0.30556843,0.36896867,-0.3682248,0.154266,-0.25233242,-0.023611672,0.60451317,-0.60528624,-0.8558035,-0.69179773,-0.1865425,1.2162769,-0.21248925,-0.44937184,0.20601648,-0.3522367,-0.2830935,-0.02432461,0.5918709,-0.18290977,-0.05717261,-0.8224027,-0.06726443,0.048606098,0.12371602,-0.051320873,-0.007596612,-0.39477926,0.6422309,-0.1667492,0.39018482,0.30977252,0.12814452,-0.15864386,-0.3872912,0.18429598,1.0024757,0.36409593,0.1523428,-0.32619783,-0.2981109,-0.39618486,-0.06424968,0.08614839,0.5538402,0.5527815,-0.074390166,0.17650256,0.33741656,0.026658662,0.10334652,-0.19357847,-0.094996154,-0.24637248,0.15302947,0.6757407,0.7416059,-0.013495991,0.33193916,-0.21025369,0.20401601,-0.174263,-0.6410677,0.5821466,0.8475403,-0.17462136,-0.24540085,0.5468116,0.4821951,-0.09016344,0.5396495,-0.5154098,-0.48249727,0.27104667,-0.15467672,-0.33714682,0.26911837,-0.25490007,0.20107764,-0.77594507,0.22925854,-0.12902611,-0.48618412,-0.4696705,-0.1211708,-2.3600366,0.1919561,0.06874699,-0.22242017,-0.110103555,-0.4804582,0.09562057,-0.31757793,-0.60987294,0.13405402,0.041403018,0.71467656,-0.0682133,0.11015242,-0.113053456,-0.4631825,-0.48842964,0.07003009,0.16341019,0.4510911,-0.113373265,-0.35279563,-0.0073620006,-0.17765658,-0.41712612,-0.05650776,-0.6127924,-0.422106,-0.22825265,-0.44944054,-0.30143717,0.46536785,-0.19717857,0.19739708,-0.28952533,-0.041077826,-0.064807266,0.29443967,0.047745906,0.0911367,0.17229034,-0.0837947,0.09059644,-0.20296276,0.32326177,-0.0034853239,0.05661275,0.28644642,-0.22981398,0.2881683,0.4724843,0.6340348,-0.15942805,0.9396832,0.42454243,0.024620948,0.27355754,-0.12539199,-0.3706233,-0.56946635,-0.16768606,-0.13123275,-0.48940963,-0.16631621,0.018026646,-0.29843622,-0.83426666,0.47546342,-0.013501078,0.17698386,0.009884089,0.3082693,0.5841798,-0.25259653,0.018721886,-0.12098273,-0.13552538,-0.4169621,-0.39922187,-0.74495065,-0.4220414,0.08815551,0.98510736,-0.09191776,0.08558169,0.119992785,-0.022033254,0.07662112,0.25996643,-0.03001783,0.07361525,0.5704144,-0.14125955,-0.5116916,0.37289912,0.027112491,-0.20788206,-0.51125187,0.31865954,0.45779294,-0.59822464,0.40556508,0.37597376,0.089541316,-0.18108056,-0.5001706,-0.17085248,-0.23165585,-0.25799555,0.45643836,0.4294241,-0.7709181,0.49974748,0.29462332,-0.042617828,-0.9375118,0.45144027,-0.09423985,-0.29265893,-0.1491974,0.36499473,0.15966894,-0.11034423,-0.24715407,0.096583575,-0.4311277,0.39046997,0.18921217,-0.15242386,0.3351548,-0.34211797,-0.14236036,-0.69986284,-0.10723285,-0.47376797,-0.35479385,0.032188892,0.06649925,-0.015955929,0.14655872,0.16060156,0.38176155,-0.2194048,0.0923138,-0.24398631,-0.24578536,0.35736057,0.32965687,0.5711434,-0.24394861,0.69620895,0.018943213,-0.045363225,-0.17162399,0.056679994,0.40950885,-0.1214879,0.2900306,-0.07875487,-0.30950207,0.19391455,0.5281167,0.18446222,0.35087606,0.07100165,-0.11275355,0.13687128,0.11340815,0.32216778,-0.14386985,-0.4034217,0.0017131567,-0.44718093,0.063787885,0.35081726,0.16924922,0.30292144,-0.072584525,-0.21411142,-0.007363986,0.15440759,-0.13110428,-1.425344,0.2985461,0.20361623,0.7989713,0.5175352,-0.013771843,-0.07135401,0.72307044,-0.24368374,0.12177837,0.18228447,-0.122698516,-0.3435298,0.53961927,-0.8188913,0.4354019,-0.053851344,-0.029616842,0.1790177,-0.03616398,0.37451303,0.7487599,-0.15035243,0.086031035,-0.07187548,-0.30795708,0.1585726,-0.34190708,0.08469496,-0.6379594,-0.3026614,0.8158574,0.30029586,0.45588607,-0.31109363,0.013642031,0.0069097094,-0.16531175,0.09693377,0.19647086,0.100075126,-0.00033029914,-0.54417974,-0.1471946,0.4046203,-0.05236686,0.21193388,0.16833076,-0.23245245,0.123002924,-0.19519278,0.0066589545,-0.092482336,-0.6466294,-0.24800774,-0.36091423,-0.18988027,0.35524336,-0.06866869,0.24899122,0.19411837,0.13291106,-0.22977479,0.18689391,0.15878592,0.6561173,0.08216375,-0.16302341,-0.14068165,0.33072096,0.32808432,-0.20896187,0.045674905,-0.123548985,0.06534815,-0.69836974,0.4301113,-0.07513861,-0.36331555,0.33554816,-0.08816221,0.042922422,0.51458246,0.006332651,0.035426095,0.1111355,-0.049808007,-0.35827422,-0.20518856,-0.12417021,0.24602911,0.24504484,-0.17816904,-0.06568454,-0.019023782,0.023073878,0.635345,0.049226195,0.30516282,0.26335487,0.14076062,-0.3360073,0.09736003,0.16274977,0.4734142,0.070918314,-0.058056623,-0.23475288,-0.30821437,-0.34609264,0.15481056,-0.10870117,0.23392662,0.13170114,-0.05566664,0.7591735,0.094782114,1.0098007,0.11609247,-0.32170093,0.21124008,0.42367464,-0.068926945,-0.05933579,-0.23729378,0.8807067,0.37151504,-0.1630826,0.029082557,-0.28521255,-0.026327338,0.09046739,-0.2893847,-0.11388688,0.01828615,-0.5597646,-0.33056575,0.10533878,0.28815615,0.15565261,-0.20110533,0.09344293,0.31454048,-0.079872295,0.29701856,-0.3816548,-0.21545926,0.40475398,0.20686767,-0.10394019,0.09209,-0.43684435,0.3224846,-0.5401953,-0.04175402,-0.11302263,0.13317366,-0.16970953,-0.34600922,0.2278537,0.062817454,0.37112686,-0.28584403,-0.46158564,-0.31727645,0.43639523,0.09511115,0.116830125,0.36862993,-0.23913452,0.04578576,0.045365695,0.45400158,0.9323564,-0.048389908,0.108746305,0.37317565,-0.22213574,-0.53512895,0.26282048,-0.2557662,0.28982335,0.086331606,-0.17097023,-0.44504887,0.23152283,0.18981507,0.080972046,0.19629388,-0.6017761,-0.04883394,0.2846753,-0.083301686,-0.1021233,-0.26395875,0.07037025,0.41598594,-0.077656195,-0.3972202,0.06956786,0.08544829,-0.30675745,-0.51774114,-0.09143998,-0.43346566,0.1271915,-0.06457898,-0.3370911,-0.10809159,0.17983031,-0.35450786,-0.010501638,0.003008172,-0.20770565,0.07725057,-0.4556325,0.1393207,0.87259036,-0.122360855,0.4038844,-0.33886355,-0.5867585,-0.8349099,-0.25083113,0.37536252,0.083609775,-0.04943662,-0.6583682,-0.043641746,-0.1726307,-0.27768412,0.020967107,-0.33647144,0.47104296,0.2650875,0.35380527,-0.0038628802,-0.7484584,0.22255336,-0.010556601,-0.2820466,-0.43614233,0.42671525,0.1255,0.6648488,0.18605736,0.06346968,0.13872582,-0.58686286,0.015887931,-0.10031892,0.058124192,-0.5286971,0.014504135 +592,0.4759487,-0.35324124,-0.44202548,-0.22663608,-0.34515092,0.10785187,-0.06518855,0.5115873,0.13062452,-0.47690734,-0.18419565,-0.2018464,0.0069303378,0.39289942,-0.4394813,-0.55332255,0.10652501,0.2721366,-0.4629214,0.5071177,-0.2917278,0.33502167,0.16917115,0.34128615,0.2850075,0.18997516,0.17575583,0.20442963,0.032018732,-0.45848224,-0.25587028,0.15246755,-0.18348473,0.2668887,0.056751207,-0.38328856,0.098265894,-0.57825184,-0.15138277,-0.8173182,0.5323625,-0.88569623,0.62547106,0.03064348,-0.30957434,0.15151304,0.68818027,0.37681475,-0.008861953,-0.1641288,0.20057462,-0.120724656,-0.17525153,0.0039304276,-0.13225763,-0.4411642,-0.77380353,-0.07334106,-0.23875855,-0.40755063,-0.45219058,0.29657695,-0.41832924,0.13559951,-0.013664167,0.9119953,-0.4097248,0.010103929,0.1507296,-0.31779245,0.2789568,-0.76140803,-0.16019072,-0.030358948,0.34416425,-0.058548067,0.0018553503,0.2195639,0.4689354,0.3343774,0.007966042,-0.18736538,-0.38783824,-0.22575864,-0.17981216,0.6039598,-0.15809868,-0.5488574,0.043981377,0.050016835,0.27874926,0.3005923,0.35552305,-0.06973537,-0.13111533,0.08280995,-0.2949378,0.46480283,0.2796244,-0.4565263,-0.104798466,0.2594181,0.4253576,0.0012149405,-0.13504979,0.024565643,-0.010213983,-0.63004804,-0.13361156,-0.16363792,-0.31088737,0.34347072,-0.1124681,0.4457061,0.60123175,-0.083813675,-0.15663117,0.073835924,0.10339522,-0.11409462,-0.23039718,-0.429028,0.39083177,-0.4889325,0.21153736,-0.042725086,0.92346746,-0.089256644,-0.54465705,0.3414338,-0.5929739,0.12791844,-0.037579782,0.2920535,0.522728,0.35492316,0.4576772,0.6448798,-0.21360126,-0.08230693,-0.038923204,-0.37309694,-0.115377314,-0.17939077,0.21705656,-0.5731806,0.18264484,0.082225375,-0.03577721,0.111103036,0.6964624,-0.6244001,-0.106405474,0.10599206,0.8870658,-0.22911245,-0.20108858,0.8214722,1.0025357,1.0942205,0.08051053,0.90981805,0.06152541,-0.2710908,0.008058369,0.02506475,-0.37708524,0.39575005,0.6311663,0.02162209,0.14742452,-0.015513972,-0.00062105194,0.5919505,-0.30665562,-0.15421158,-0.11562486,0.21663886,0.15023206,-0.37566864,-0.62746257,-0.436151,0.07472373,0.015994001,0.32909977,0.33415967,-0.066792324,0.3487779,0.007701142,1.4620068,-0.062821575,0.24037045,0.21916388,0.30709317,0.14295182,-0.14978693,0.02652973,0.047593072,0.21333443,0.09189951,-0.5023647,0.20977598,-0.24793659,-0.44655752,-0.13925026,-0.37786058,-0.28172255,0.09046782,-0.39352304,-0.25808522,-0.26065817,-0.37005866,0.36208558,-2.5904465,-0.18242273,-0.24332489,0.12705818,-0.1959429,-0.4605424,0.053128053,-0.46361437,0.5825195,0.33790854,0.5602789,-0.5768348,0.46126062,0.39161003,-0.560426,-0.060106732,-0.57150644,-0.20817819,-0.13370313,0.20635079,0.13317038,-0.3992822,-0.06758496,0.38497946,0.5104451,0.14112352,0.08128983,0.38428828,0.3369737,-0.2188326,0.77853113,-0.15989421,0.5151687,0.0001615611,-0.21171193,0.33694768,-0.39217633,0.008333496,-0.27240753,0.1770681,0.6027536,-0.52286136,-1.0500166,-0.6675269,-0.23829955,1.2353959,-0.1270474,-0.45848006,0.41044232,-0.20414147,-0.28085187,-0.00017559528,0.64102435,-0.33586,-0.023494266,-0.7131911,0.13989006,-0.24012609,0.039533496,0.1062673,-0.32205322,-0.69754815,0.74242723,-0.14582461,0.749617,0.22888814,0.17346603,-0.60935587,-0.30759785,-0.07579132,0.9616701,0.5903515,-0.023747943,-0.18392433,-0.055246178,-0.4787769,-0.22987829,-0.031206625,0.6713378,0.593,0.085410446,0.14244944,0.15666904,-0.098870724,0.12112895,-0.14280905,-0.2832766,-0.06593404,-0.07372089,0.7154995,0.38267812,-0.1368545,0.46872905,-0.057539344,0.37371162,-0.20596133,-0.41299534,0.27083275,0.9385586,-0.12803435,-0.5383124,1.026724,0.4879957,-0.06338584,0.3000541,-0.5375706,-0.3383975,0.4990055,-0.23299627,-0.5820663,0.05503246,-0.37059364,0.05851557,-0.8344815,0.25955644,-0.35220107,-0.5832927,-0.5449465,-0.16992222,-3.5572188,0.3658521,-0.15810765,-0.19987124,-0.14530902,-0.27487758,-0.07198041,-0.69508815,-0.71821326,0.16158746,0.079624586,0.8842281,-0.15818335,0.08403817,-0.03427343,-0.44491255,-0.02674318,0.0793276,-0.20147921,0.35289872,0.04403395,-0.28586158,0.108203284,0.053568367,-0.567538,0.12493543,-0.57896465,-0.66200066,-0.21570277,-0.62660396,-0.40309438,0.6363659,-0.36180943,0.21513523,-0.32015762,-0.016047599,-0.0042516263,0.21892025,0.013686413,0.14069743,-0.014721897,-0.17533241,0.24364161,-0.1529533,0.3380862,-0.020148657,0.45265073,0.2594844,-0.11025043,0.2946764,0.64369947,0.7035043,0.0070350943,0.9863365,0.2802121,-0.032427546,0.080760546,-0.17299162,-0.26255426,-0.38185632,-0.19375534,0.34094456,-0.43401432,-0.32021818,-0.10032272,-0.2429112,-0.65639776,0.67209643,0.07859946,0.16837353,-0.16665222,0.44802257,0.44917583,-0.2897878,-0.043764036,0.099460535,-0.14333601,-0.57642096,-0.10929077,-0.6515602,-0.33546898,-0.17034769,0.98432803,-0.37402132,0.13879332,0.0027954795,-0.13330956,-0.007379001,0.16399293,0.15222909,0.11525152,0.4186273,-0.27787587,-0.7214188,0.5042762,-0.43336695,-0.13069902,-0.48742488,0.25282946,0.45746934,-0.4147273,0.46732095,0.37395105,0.1360954,-0.4698291,-0.5174995,0.026768183,0.22809395,-0.22181915,0.38275242,0.40989968,-0.6289198,0.4856817,0.26611507,-0.018533273,-0.8473044,0.44518754,-0.006683007,-0.42443034,-0.19011298,0.44803047,0.3974682,-0.0063818395,-0.27374724,0.16902305,-0.45520055,0.34517717,-0.08784041,0.015026716,0.33711407,-0.27685663,-0.08721972,-0.90960103,0.029857956,-0.6416371,-0.2470769,0.14327416,0.03863811,0.089263745,0.3245794,-0.12454503,0.41243,-0.5169661,-0.013698559,-0.16642264,-0.2671129,0.36137715,0.44186413,0.4172864,-0.48765782,0.668881,0.061467513,0.09982571,-0.19173717,-0.0585147,0.53124946,0.041573774,0.45505857,-0.24550754,-0.25721022,0.27974027,0.6542381,0.1257184,0.31148565,0.12972112,0.052597214,-0.08913205,-0.06437433,0.12356344,0.17443366,-0.66036725,-0.03145996,-0.40439847,0.017538108,0.6899397,0.07777247,0.21205445,-0.02930485,-0.43285105,0.10871745,0.12894093,-0.15082526,-1.3060282,0.4946303,0.11393666,0.9433235,0.45410138,0.0884057,-0.11773756,0.847423,-0.15928048,0.14421675,0.2675174,0.12687671,-0.2823857,0.6772577,-0.8338948,0.37216747,0.0068205134,-0.13016644,-0.23544441,-0.19715005,0.3100968,0.6634767,-0.19138913,0.048319876,-0.015624019,-0.37395546,0.12245858,-0.3481437,-0.09457931,-0.40753564,-0.32204887,0.5719726,0.41262817,0.3283806,-0.15003724,0.18510303,0.13529362,-0.091776565,0.1407024,-0.0029045343,0.022679122,-0.1283081,-0.5853668,-0.06843435,0.40382326,0.3057923,0.29080808,0.042213082,-0.12614101,0.1926633,-0.034592107,-0.1335926,-0.038382176,-0.61689,0.020423306,-0.36506703,-0.5130358,0.2727998,-0.26532766,0.17125179,0.16325554,0.01585538,-0.0660536,0.28632668,0.33434302,0.682814,-0.00037413294,0.018389551,-0.092854135,0.14583692,-0.120783634,-0.19487485,-0.1185096,-0.29165107,0.24337927,-0.75653684,0.4284788,0.03248867,-0.38199723,0.2454115,-0.19962749,0.024580467,0.35003614,-0.2946478,0.044710148,0.003742229,-0.2338532,0.067600556,-0.427302,-0.071947925,0.24213338,-0.052664116,-0.011754941,-0.10683634,-0.04092324,-0.34108132,0.37884504,0.009836704,0.47259247,0.43344498,0.0061262306,-0.31091428,0.07624269,0.010988111,0.47276324,-0.20915331,-0.30450413,-0.44605464,-0.4197302,-0.36479655,0.30182183,0.014833484,0.35573927,0.014587995,-0.22132589,0.82110304,-0.025032682,1.0409749,-0.07789517,-0.4846344,-0.08994262,0.42755172,-0.2153051,-0.062272374,-0.15700364,0.8595267,0.42066023,0.020055907,-0.023659784,-0.49469966,0.20442237,0.22719054,-0.09734582,-0.146717,0.048273865,-0.499521,-0.4344094,0.26610404,0.25871366,0.22349806,-0.24753796,0.19941324,0.5133623,0.009779936,0.44527432,-0.52494806,-0.13970166,0.21377373,0.34487313,-0.118724935,0.118720464,-0.513076,0.33759725,-0.7965136,0.2839835,-0.4057616,0.21890236,-0.26845476,-0.19809571,0.4310479,0.052823815,0.49525395,-0.2212454,-0.2810899,0.008726456,0.49312842,0.04048586,-0.079277724,0.49473622,-0.34017113,-0.047571205,0.16371478,0.6134972,1.1328651,-0.23082586,0.21008067,0.10065456,-0.3208376,-0.54698586,0.37505054,-0.1126378,-0.00023082712,0.27864572,-0.12990178,-0.42442292,0.2628537,0.44578534,0.13598658,-0.05361775,-0.40297887,-0.42186296,0.43181607,-0.52116054,-0.113378234,-0.29948154,0.06911168,0.21899681,-0.17073716,-0.13867426,-0.13516931,0.45743734,-0.13523795,-0.6016789,-0.113245204,-0.26458487,0.44023973,0.035904795,-0.46637908,-0.4220135,0.022569237,-0.45841074,0.1173786,0.19557005,-0.2602454,0.06980577,-0.3982069,-0.05743703,0.87021214,-0.14402679,0.10434318,-0.5208797,-0.314509,-0.7245147,-0.36404827,0.40801096,-0.15752797,-0.0911892,-0.7974387,-0.21245171,-0.2736789,-0.04641627,-0.09458064,-0.19889078,0.21892175,0.18541679,0.51843876,-0.034609903,-0.59210116,0.13704775,-0.12221971,-0.1306702,-0.39776212,0.52896225,0.16064143,0.7689302,0.05167483,0.016035013,0.18181568,-0.4094609,0.1307974,-0.08232653,-0.25712693,-0.69957894,0.06921481 +593,0.5819588,-0.35381025,-0.58260304,-0.17441562,-0.37265432,0.15305416,-0.28181523,0.5732736,0.24795471,-0.44701704,-0.15212949,0.023882378,-0.20158793,0.29497993,-0.16176668,-0.6918157,-0.20351785,0.20950331,-0.34223363,0.55105466,-0.19786784,0.35724884,0.02213928,0.3373343,0.26328713,0.1410398,0.097925216,0.14604497,-0.0030670166,-0.2389702,-0.063574456,0.24668407,-0.56207526,0.28551483,-0.13021241,-0.42123452,-0.18766664,-0.4677392,-0.2836549,-0.6629578,0.33563504,-0.6442095,0.5557955,0.069054924,-0.29751346,0.078368455,0.099709615,0.14803928,-0.1547222,0.10875796,0.13985477,-0.24677612,-0.10156237,-0.08554586,-0.23372942,-0.41150185,-0.69619006,-0.04048349,-0.47763354,0.19314446,-0.22576073,0.17497005,-0.24090108,-0.17593254,-0.089537635,0.31988242,-0.3450699,-0.028658938,0.17618227,-0.12828286,0.053798072,-0.634722,-0.10530976,-0.07304662,0.32593364,-0.10469899,-0.08566042,0.099793874,0.12644514,0.6475936,0.15409769,-0.29682067,-0.53541696,-0.037194252,0.09788162,0.49037647,-0.16060123,-0.40446457,-0.29064575,0.025348442,0.6323414,0.30681705,0.24846472,-0.15857859,-0.26043257,-0.15794465,-0.044351105,0.4310949,0.52958375,-0.3638396,-0.24910542,0.42665908,0.4785561,0.23206235,-0.15507193,0.13981433,-0.12715119,-0.33601603,-0.14662847,0.03148022,-0.11521641,0.38311455,0.0010329088,0.17480369,0.4498131,-0.05477283,-0.09389117,0.07184769,-9.867946e-05,-0.014588186,-0.23211238,-0.32111126,0.30929556,-0.38674462,0.18029672,-0.15384337,0.60218817,0.12026398,-0.84677035,0.2963958,-0.4324439,0.13074428,0.1486953,0.5712308,0.9357942,0.5201828,0.11863515,0.89824986,-0.2753146,0.05415953,-0.0794868,-0.09528592,0.023272276,-0.18746136,-0.092850715,-0.5903521,0.3274409,-0.091488376,0.06896769,0.34852213,0.77635205,-0.49277174,-0.17680477,0.3418569,0.7856542,-0.21681556,-0.030681849,0.8987375,1.0129852,1.2177459,-0.17101495,1.1045331,0.026188342,-0.2373433,-0.14015077,-0.2907539,-0.5829379,0.2802462,0.5180072,0.42969054,0.42059258,0.14649025,0.023997474,0.50925964,-0.46537897,-0.079680204,-0.018571412,0.2069582,0.05194282,-0.19377075,-0.64704335,-0.062285103,0.19311555,0.16162284,0.13211612,0.3868857,-0.3006074,0.31385675,0.0070169866,1.4337852,-0.16189222,0.14934267,0.19415101,0.40125751,0.18772517,-0.20953242,0.09267058,0.20897703,0.37115964,-0.1463871,-0.48478064,0.032525476,-0.30390644,-0.64343345,-0.2436003,-0.380054,-0.50583285,-0.036891945,-0.49839216,-0.09228386,-0.094358556,-0.52899843,0.39611098,-2.6095622,-0.14483494,-0.18639691,0.22294623,-0.30485725,-0.47377643,-0.07536614,-0.41800305,0.513967,0.30900452,0.5021305,-0.56116027,0.45012555,0.42962533,-0.47099534,-0.0032586337,-0.56949705,-0.07861858,-0.05852269,0.37696254,-0.008935706,-0.2517302,0.16815996,0.2888293,0.6124885,0.12869464,-0.01756538,0.3432713,0.51369846,-0.23835386,0.34110153,-0.09893894,0.5659022,-0.20876889,-0.24845283,0.61695135,-0.38646445,0.3032092,-0.3180793,0.076073475,0.48416653,-0.45565,-0.8507244,-0.5435221,-0.1626166,1.1195073,-0.25356632,-0.5413179,0.14675279,-0.44725487,-0.28917122,-0.11924884,0.54749167,-0.16740614,-0.053510223,-0.81473917,-0.11075671,-0.21845365,0.21856947,-0.07682768,-0.08638108,-0.71503943,0.9379065,-0.16728139,0.75025004,0.41406932,0.28881237,-0.17341365,-0.4995758,0.15640862,1.0444953,0.6411213,0.14635131,-0.25256258,-0.082353,-0.3462502,-0.118789196,0.13962321,0.6739689,0.38270518,-0.013842376,0.14633235,0.17755455,0.056083832,0.07413897,-0.16818462,-0.25078806,-0.3696437,0.11190621,0.684653,0.6189486,-0.25349322,0.49760073,-0.11975662,0.24230203,-0.24847764,-0.43886283,0.43078595,0.86124706,-0.14419535,-0.39776105,0.7608926,0.53634745,-0.076645404,0.505434,-0.79884326,-0.49197164,0.2733059,-0.30234435,-0.302462,0.25676787,-0.41566902,0.044716112,-0.7990728,0.08556015,-0.29187632,-0.49849537,-0.7082194,-0.34662265,-2.1166735,0.09944725,-0.16381855,-0.16072473,-0.199761,-0.2978187,0.18143915,-0.71462,-0.7515438,0.074413665,0.088859506,0.61726266,-0.12131779,0.10245753,-0.20280312,-0.4922292,-0.20547362,0.28184325,0.021076966,0.4019537,-0.0054551642,-0.29953533,-0.118902855,0.01701619,-0.31803194,-0.11370726,-0.56675446,-0.3455185,-0.038213536,-0.31005794,0.02499679,0.47658208,-0.5272639,0.21715263,-0.18165363,-0.010808176,-0.08602517,0.14722954,0.015452814,0.15118681,0.14134607,-0.131059,0.32865006,-0.25848904,0.3819482,0.11461168,0.32701138,0.50619113,-0.43999752,0.1436921,0.39999014,0.7267916,-0.22501704,0.8621981,0.49725264,-0.04728015,0.3157124,-0.13642383,-0.29818228,-0.79933614,-0.25630733,0.16129671,-0.52753365,-0.5662702,-0.09711158,-0.45096052,-1.0055256,0.37578884,-0.044876255,0.4444204,-0.05380209,0.3030457,0.49615872,-0.3398486,-0.019065937,-0.03617018,-0.19079943,-0.22101746,-0.44280666,-0.64049774,-0.3870379,0.010982219,1.0983238,-0.12731622,-0.045316387,0.29688233,-0.24444307,-0.013485988,0.1522567,0.19134818,-0.043541923,0.42731062,0.10839893,-0.58508366,0.45913538,-0.0734582,-0.09018994,-0.62297934,0.029396327,0.39512235,-0.5875878,0.39828664,0.32172108,0.127983,-0.18106899,-0.76859623,0.111923255,0.0386273,-0.25083822,0.5579762,0.46791738,-0.60554004,0.50492305,0.16574755,-0.05637783,-0.7695001,0.5039973,-0.07734014,-0.26093197,-0.17813176,0.34948376,0.24702993,-0.028259583,-0.08445047,0.32038075,-0.3852471,0.55453014,0.19745575,-0.076235294,0.1792007,-0.33333254,-0.1356558,-0.7665676,0.039858986,-0.60438997,-0.35391483,0.19436213,0.14948015,0.15408495,0.070677646,0.1239622,0.4852667,-0.41093433,0.12098909,-0.22253557,-0.3779764,0.3850773,0.45891002,0.54641277,-0.3066178,0.58919024,0.094253816,-0.06007428,0.015766017,0.09098479,0.60283005,-0.07634382,0.3971695,-0.20120987,-0.24763708,0.21077092,0.6082746,0.29192176,0.1710198,0.12269419,-0.2952254,0.16663803,0.031455275,0.23118706,-0.42461586,-0.7088445,-0.040351965,-0.13096832,0.124814786,0.55457497,0.20264298,0.28741214,-0.17329496,-0.10131775,0.22236386,0.10997324,-0.14312346,-1.3898506,0.09754586,0.10804375,1.0849317,0.49671328,0.08990409,0.1238555,0.35770264,-0.2356752,-0.027057577,0.51124513,-0.018164175,-0.3200899,0.57804054,-0.7145961,0.6074193,-0.041054785,-0.0850678,0.13342564,-0.032798897,0.49799955,0.6632455,-0.18532333,0.053739317,-0.014964944,-0.3450978,-0.01428685,-0.19624081,0.22308968,-0.5706581,-0.19123703,0.6735745,0.5004891,0.4294836,-0.31629857,0.033545688,0.0375764,-0.079972185,0.044917576,0.0489722,0.09277475,-0.16417177,-0.42610395,-0.09854712,0.5518702,0.1320433,3.889998e-05,0.06742611,-0.37366548,0.09531019,-0.03768833,-0.09582813,-0.033178553,-0.75838596,-0.08161707,-0.32212478,-0.4252132,0.4962888,0.0626491,0.18699218,0.24083069,0.061696876,-0.046604104,0.2122467,0.17604803,0.7677167,0.16988777,-0.021269469,-0.37198195,0.22106434,0.12874563,-0.13578868,-0.18780628,-0.19192001,0.23579757,-0.5669207,0.30361614,-0.19586897,-0.26789,0.3791995,-0.07688079,-0.033922117,0.4799333,0.02468791,-0.17627482,0.16854505,-0.026364386,-0.29762587,-0.21936424,-0.24926455,0.2452773,-0.012674888,0.041956846,-0.19266169,-0.049857315,-0.09410146,0.24959017,0.20450796,0.16702554,0.5132788,0.039882217,-0.3939075,0.13020958,0.25976974,0.46911559,0.015745541,-0.05263155,-0.2829691,-0.62221986,-0.5362018,0.43594798,-0.2431763,0.17427632,-0.019640334,-0.12558196,0.76224315,0.07715804,1.1025914,0.14202172,-0.4872647,0.18154259,0.5847503,-0.14264776,-0.021353725,-0.33085296,0.9173613,0.57706463,-0.029806597,-0.1939853,-0.24908637,0.07600013,0.17161724,-0.31192556,-0.14732313,-0.02821639,-0.6375679,-0.22532384,0.23434004,0.11384286,0.1356379,-0.1363744,-0.122769736,0.42737192,0.18373619,0.22029302,-0.5710577,-0.2971705,0.31391653,0.23454566,-0.17991005,-0.029284775,-0.5238584,0.31816447,-0.6404119,-0.14557393,-0.3286968,0.11920099,-0.30283123,-0.29713663,0.38612115,-0.031120753,0.3201266,-0.3988385,-0.4190243,-0.14829166,0.37011668,-0.07897116,0.11559645,0.40934435,-0.23437992,0.03360438,0.16224292,0.32200998,1.1149751,-0.3179037,0.02910217,0.35859904,-0.48806313,-0.69234186,0.19455619,-0.5993653,0.2127122,0.067011766,-0.3545149,-0.49228212,0.28939596,0.116532356,0.00855192,0.12116429,-0.6041695,-0.09527213,0.21180902,-0.3631701,-0.1203888,-0.22539635,-0.11255752,0.74478275,-0.28632325,-0.36500016,0.13041104,0.5175491,-0.18523987,-0.71128774,0.22971661,-0.46687278,0.19039494,0.0044667004,-0.44638252,-0.23938422,0.014519558,-0.47901386,-0.024387725,0.46344578,-0.39337045,-0.066163786,-0.45414898,0.048260268,0.8934868,-0.048377797,0.27742,-0.56745946,-0.37658137,-0.92611945,-0.32911777,0.3225023,0.22151566,-0.081448466,-0.8102808,0.04106372,-0.50771344,-0.11467915,-0.13120854,-0.30950433,0.3638491,0.26213613,0.42863977,-0.17059812,-0.79442036,0.2516201,0.010773889,-0.25063282,-0.43324873,0.6101057,0.14750372,0.9271496,0.055072036,0.14559723,0.13883205,-0.81895036,0.15798095,-0.09174582,-0.077040024,-0.7288821,0.13590166 +594,0.49487942,-0.074430555,-0.58837694,-0.027760327,-0.09330961,0.10299892,-0.30858243,0.5837196,0.2772526,-0.3838787,-0.30300546,-0.0344078,-0.13556008,0.42391986,-0.13178477,-0.51168704,-0.076729745,-0.030935256,-0.30676138,0.6497796,-0.27796057,0.19506457,0.024799703,0.5301737,0.08374821,0.072493486,0.057435855,0.11507445,-0.000849733,-0.43438175,0.11152216,0.23601992,-0.81896627,0.12515849,-0.3725037,-0.44926283,-0.16783287,-0.42948145,-0.14781928,-0.9369252,0.22299154,-0.82376456,0.6584476,0.13224052,-0.29238832,0.4878281,-0.024043588,-0.024084412,-0.007788521,-0.11816649,0.041902266,-0.2569169,-0.19366525,-0.27558687,-0.070612736,-0.2686416,-0.564053,0.050939284,-0.50502056,0.0059530577,-0.44518974,0.032802254,-0.32265773,0.057958536,-0.10947446,0.39219564,-0.49503598,-0.010291613,0.096128315,0.017602136,0.24139301,-0.6578853,-0.19617933,-0.08212383,0.16384242,-0.10579245,-0.11504633,0.30090797,0.21664794,0.47814816,-0.098753095,-0.19737779,-0.32833096,0.15296614,0.13198444,0.39268652,-0.25182423,-0.43105337,-0.03367947,-0.055827342,0.42288283,0.22027756,0.28852156,-0.0014898136,-0.094854705,0.042051837,-0.08262445,0.4967945,0.48213106,-0.3069327,-0.16067553,0.24456325,0.62869483,0.3647539,0.030786904,-0.19681567,-0.08221602,-0.5609073,-0.16846943,-0.11398188,-0.3126836,0.43197918,-0.08909308,0.1810415,0.4717913,-0.1465974,0.009344926,0.2673407,-0.057722505,0.09534606,-0.12080973,-0.30161026,0.41514808,-0.35380748,0.2606265,-0.23734643,0.47587988,-0.020248808,-0.66662127,0.23882249,-0.6113361,0.11903,0.058885142,0.5633052,0.8027963,0.66659856,0.41921228,0.7095995,-0.3883901,-0.16734654,-0.069567956,-0.1492478,0.20812902,-0.25223103,-0.04192912,-0.46275133,-0.09992109,0.01621554,-0.20686285,0.27384874,0.4599294,-0.6631781,-0.10564535,0.2230699,0.6904609,-0.17835258,-0.043660123,0.88645434,1.2322382,1.013654,-0.00074246986,0.9899053,0.13494252,-0.17094009,0.0789177,-0.0049437513,-0.7992621,0.32263944,0.43216234,-0.43483475,0.56951463,0.00056659715,-0.026556928,0.32373884,-0.53493124,-0.2742494,0.01831462,0.25328282,0.040694673,-0.3295687,-0.40159443,-0.14928684,-0.052133914,0.22989559,0.062371694,0.42113718,-0.25956497,0.3678654,0.116062604,1.1396419,-0.17215584,-0.031534158,0.098883905,0.32610497,0.26641104,-0.12923615,0.016182771,0.20459501,0.1838037,0.21214335,-0.5283391,0.17033714,-0.20079088,-0.54694086,-0.1022208,-0.24080665,-0.16691484,0.03475624,-0.2602409,-0.32459545,-0.24039735,-0.2841419,0.29158017,-2.4335704,-0.04780666,0.04915458,0.44147512,-0.14216453,-0.39256814,-0.08755,-0.34335473,0.45286995,0.4243936,0.39194414,-0.6119216,0.3000297,0.4631757,-0.6387685,-0.06790978,-0.51641154,-0.12898229,0.10289,0.36310804,0.10528845,-0.24874714,0.14203638,0.22856562,0.62642086,0.22801515,0.15607856,0.4187598,0.4615805,-0.3753548,0.18860015,-0.19295558,0.4547331,-0.2686689,-0.25700915,0.40724218,-0.33411598,0.31584784,-0.40503567,0.14658543,0.3850899,-0.36965272,-0.86062825,-0.60454935,-0.15361005,1.4684203,-0.09294032,-0.63954926,0.15783247,-0.33674246,-0.2387206,-0.081823416,0.61334443,-0.2819359,-0.010891593,-0.77083075,0.018572796,-0.1884815,0.26933038,-0.0060693976,0.043226585,-0.6136258,0.82242733,-0.050777853,0.44604117,0.2815434,0.19611952,-0.2731786,-0.58805996,0.05985037,0.97564596,0.6554658,0.15304552,-0.33456367,-0.1967477,-0.30767086,0.04498746,-0.027385028,0.72050154,0.5475592,-0.07598553,0.06917245,0.14073694,0.10299543,0.08359788,-0.17642106,-0.24823216,-0.078816876,0.05867763,0.6012405,0.86765265,-0.22931668,0.117594585,-0.11651545,0.28785178,-0.11236543,-0.4377494,0.5188168,0.8828733,-0.18399312,-0.15733562,0.7198668,0.51487595,-0.20165464,0.6073279,-0.59068227,-0.49215016,0.4592452,-0.10719834,-0.450839,0.13422006,-0.25954193,0.08913557,-0.752257,0.35477135,-0.52574044,-0.32849854,-0.51700115,0.029337117,-2.7813916,0.23093256,-0.20363854,-0.11170571,-0.40757385,-0.22109023,0.3019622,-0.7782129,-0.84851265,0.015719516,0.056519013,0.6940985,-0.25484896,0.03891647,-0.16286403,-0.6781261,-0.23279212,0.22088228,0.25677803,0.3001127,0.023660155,-0.2871252,-0.18794385,-0.08950085,-0.35621312,-0.13727702,-0.47750774,-0.4756985,-0.27076676,-0.41685915,0.039541975,0.55189157,-0.398732,0.038349446,-0.24233559,0.019184727,-0.06887677,0.09079982,0.01624773,0.19097121,0.11990647,-0.2286339,0.21734715,-0.10510895,0.4085784,0.118609786,0.3716306,0.51035476,-0.3781128,0.27358198,0.49779665,0.7462743,-0.18539554,1.0326756,0.42216367,-0.052611325,0.35552025,-0.20930783,-0.45087022,-0.6817439,-0.25590485,0.14304157,-0.269566,-0.34807685,-0.0044514765,-0.35928625,-0.944865,0.5545193,-0.17911737,0.4156364,-0.0054061688,0.4400981,0.622384,-0.3275396,-0.15809093,-0.06905666,-0.09714617,-0.54913485,-0.25248763,-0.639014,-0.47610807,-0.037656248,0.83917683,-0.10476962,0.071999714,0.27261397,0.14656264,0.234181,-0.057253208,-0.008418596,-0.17297432,0.43580574,0.27549478,-0.62285864,0.44458133,0.08880504,-0.1397555,-0.6064402,0.36573315,0.47939807,-0.5785911,0.4525506,0.44679543,0.0165323,-0.07511625,-0.7344373,-0.027801743,-0.096522085,-0.18413374,0.35430437,0.50099957,-0.8495302,0.4682326,0.3635747,-0.24141566,-0.6500297,0.5218267,-0.07102688,-0.25300157,-0.17752875,0.4463255,0.13383113,0.07834111,0.043784313,0.3050293,-0.3294265,0.2552352,0.10052859,-0.015602774,0.15917894,-0.13675311,0.0021198345,-0.8992414,0.33930084,-0.6075281,-0.48179764,0.23384827,0.020488583,-0.071699694,0.15910792,0.47825387,0.4124909,-0.3719773,0.16966632,-0.16141103,-0.33129615,0.53388965,0.59864616,0.68370247,-0.26025817,0.49197307,0.110360414,-0.112390995,0.11267286,-0.1146866,0.40092516,-0.2062156,0.3615143,0.17040883,-0.17398259,-0.030734267,0.60274446,0.12019364,0.23373975,-0.0047255983,-0.07539363,0.3429612,0.030478518,0.2967435,-0.1845685,-0.70883507,0.10049073,-0.26727903,-0.11213299,0.59746903,0.20077507,0.14178726,-0.09800805,-0.20180799,0.026483396,0.286911,0.042757828,-1.1708323,0.24160904,0.02116053,0.7527424,0.67072225,0.069746576,0.074663326,0.49846077,-0.09715659,-0.055435598,0.5482996,0.18326172,-0.62787604,0.523924,-0.82065994,0.3357982,-0.013295627,0.04602532,-0.024824105,-0.16277379,0.3832373,0.76134205,-0.22997545,-0.033411328,-0.14503077,-0.27218395,0.08555127,-0.4355318,0.08643194,-0.38668382,-0.25491697,0.78550565,0.4016871,0.3306433,-0.3414698,0.042416573,0.07494093,-0.1188393,0.21687,0.027559139,0.10497408,-0.27222067,-0.35259277,0.017488021,0.4221905,-0.073066846,0.07089551,-0.095475905,-0.28687426,0.07368626,-0.22265364,-0.30237362,-0.12368143,-0.7416283,0.03418999,-0.5039562,-0.32088044,0.38947108,-0.014691119,0.07118865,0.22663666,0.14094004,-0.21158789,0.18323551,0.018294005,0.48241255,0.19217542,-0.1334983,-0.21705945,0.48046634,0.106709644,-0.31612936,0.07621897,-0.06071577,0.21888468,-0.4414273,0.3957372,-0.19536622,-0.38313583,0.0188411,-0.012896787,0.007349961,0.5612984,-0.18459526,-0.23401779,-0.25266245,-0.32117504,-0.17209306,-0.48314777,-0.10430953,0.20452735,0.04979098,-0.07184091,-0.17567934,-0.041841034,-0.21208137,0.27755272,0.05030412,0.29202458,0.4171572,-0.016985036,-0.46412504,-0.044744153,0.15426397,0.49083564,0.05661761,-0.1758278,-0.380125,-0.5365769,-0.44160113,0.28619844,-0.098097734,0.26270416,0.20106956,-0.12522358,0.6667788,0.18416585,1.038001,-0.094315335,-0.3686344,-0.0396565,0.54469395,-0.17711337,-0.22978841,-0.32845455,1.0229794,0.46670738,-0.24926382,0.08116806,-0.19242509,-0.0057956944,0.17621389,-0.28503135,0.0724501,-0.14817972,-0.7695092,-0.14115372,0.16263774,0.41422617,-0.007231718,-0.19829684,-0.032459855,0.27714044,0.13796473,0.15385877,-0.3589476,-0.33855793,0.44286,0.12943174,-0.06359708,-0.031495456,-0.42252234,0.19533256,-0.5658718,-0.082568415,-0.38844526,0.07950453,-0.19703981,-0.45021376,0.26288876,0.04483529,0.2982528,-0.3745875,-0.323016,-0.16315816,0.19832355,0.08658365,0.095748864,0.35688993,-0.25104028,0.030754896,0.029689321,0.5919517,0.96613353,-0.05616141,0.21586142,0.10241602,-0.4286734,-0.58505607,0.29367268,-0.34680474,0.22772804,-0.11561759,-0.19720045,-0.5967113,0.18306461,0.0770288,0.01663981,0.12907727,-0.7725276,-0.18062016,-0.005949185,-0.3892079,-0.15652278,-0.26174685,0.014387241,0.64326024,-0.27296466,-0.3768314,0.00966891,0.24963452,-0.13792089,-0.5176059,0.02169958,-0.2797776,0.19030152,0.018335499,-0.5005976,-0.10370238,0.16348784,-0.46088043,0.10867576,0.11227809,-0.30969143,-0.016555123,-0.4874305,0.28559875,0.7522633,-0.19703546,0.21916252,-0.2985802,-0.61373997,-0.88801646,-0.25197822,0.26044178,0.1046454,0.06808043,-0.83811116,0.06727193,-0.27211994,-0.07786747,-0.11381614,-0.25348032,0.32358426,0.20003003,0.5146338,-0.16408788,-0.6770214,0.29126737,0.103408895,0.06503868,-0.48311356,0.42582813,-0.0020942825,0.84120136,0.09499009,0.070680074,0.13924626,-0.76445806,0.059430387,-0.054249447,0.04572739,-0.48223978,0.23529795 +595,0.33262697,-0.23322052,-0.4480124,-0.16287711,-0.2591956,0.009403958,-0.14020199,0.61685973,0.16560158,-0.5134455,-0.3039234,-0.1842192,0.046789344,0.42095962,-0.1938335,-0.55754685,-0.06300206,0.1397411,-0.27565295,0.52394354,-0.39975247,0.3210904,0.13940185,0.5075319,0.34545678,0.08546186,0.1959983,-0.16437052,-0.38934964,-0.3372798,-0.28412804,0.31071922,-0.66127557,0.17444518,-0.117443,-0.48831624,0.028475102,-0.5636418,-0.3203065,-0.77267355,0.35849574,-0.98682934,0.42923287,0.08804323,-0.27743334,0.23917507,0.24017191,0.2791115,-0.30432078,0.004691454,0.10863277,-0.2982624,-0.03985681,-0.17479068,-0.14548603,-0.41155154,-0.7866904,0.08471652,-0.3818344,-0.16140562,-0.45434093,0.22895017,-0.3597598,-0.0974033,0.0019918794,0.5556051,-0.45930877,0.006947719,-0.007819478,-0.05995788,0.190276,-0.63230354,-0.34693658,-0.10960664,0.12771946,-0.2257842,-0.22511841,0.23775457,0.37532946,0.34954393,0.007474349,-0.16812772,-0.40392822,0.01115467,0.09762248,0.482701,-0.18181467,-0.69837844,-0.04740695,0.10953275,0.25435936,0.29247248,0.13992622,-0.18636802,-0.12870978,0.10290454,-0.21237373,0.35193202,0.4451335,-0.3229244,-0.34666923,0.35990196,0.26856157,0.036780633,0.005592649,-0.068965405,-0.004691887,-0.62579715,-0.104387484,0.19624971,-0.24198416,0.66357714,-0.1865694,0.21402393,0.754323,-0.28850505,0.0029458862,0.10244395,0.15375121,-0.103263535,-0.15358967,-0.32030255,0.21833222,-0.34625137,0.2815758,-0.2585046,1.098936,0.092329316,-0.70112824,0.17621326,-0.6310576,0.18821806,-0.16393232,0.54451185,0.6159586,0.41239935,0.5572649,0.5800392,-0.43199703,0.050197784,-0.017590614,-0.33284792,-0.11958038,-0.28863543,-0.057592474,-0.45242313,0.016630998,0.07236265,-0.05642336,0.047382098,0.7073134,-0.5358675,-0.036601357,0.15782325,0.8602382,-0.30111468,-0.13525961,1.0002408,1.0132475,1.1758635,0.099899605,1.192829,0.24745004,-0.22792178,0.078545496,-0.14401418,-0.74303013,0.36265346,0.45059937,-0.32248148,0.05730881,0.16594961,-0.067368284,0.24668112,-0.5494485,-0.076872304,-0.27859613,0.19858493,0.14227933,-0.09273936,-0.42145127,-0.37135997,-0.051064875,-0.020342588,0.088420376,0.29323924,-0.20969057,0.52785677,-0.0715085,1.3601284,-0.04752417,0.027788965,0.059724055,0.54988724,0.19868135,0.03325183,-0.020210322,0.3457891,0.383928,0.08698457,-0.6058364,0.10420863,-0.25298077,-0.5846633,-0.12233698,-0.35818386,-0.16016708,0.08000103,-0.45466396,-0.24657065,-0.19459435,-0.30183154,0.42417198,-2.5421405,-0.08736559,-0.0185045,0.27316195,-0.13169333,-0.4264746,0.06248589,-0.54693985,0.6128439,0.36818328,0.52995485,-0.6767598,0.109078124,0.40291855,-0.48228645,-0.21514294,-0.7613624,-0.11095036,-0.07104003,0.442612,-0.13330762,-0.11473691,0.07465586,-0.122445926,0.6951153,-0.033159155,0.1308355,0.3849224,0.36973497,0.053185787,0.45393917,0.05892494,0.56441396,-0.32364178,-0.19136088,0.32856166,-0.51923543,0.32145882,-0.044717975,0.09753831,0.43263754,-0.5835979,-0.89541465,-0.7547761,-0.26515132,1.1699156,-0.1226228,-0.4598106,0.27246183,-0.13702354,-0.03273756,-0.10826242,0.45822966,-0.26899534,0.012820601,-0.8047724,-0.013880604,-0.024121296,0.20810324,-0.03329781,0.13382198,-0.38093236,0.6328073,-0.101350494,0.21715952,0.30124018,0.19654109,-0.5903405,-0.63084817,0.07669657,0.95786464,0.34397826,0.13684043,-0.25104967,-0.27412155,-0.19855484,-0.22477926,0.1436532,0.48290616,0.78191024,-0.021449236,0.24092816,0.31523916,-0.028769195,0.037929952,-0.21249768,-0.25459164,-0.1627346,0.03076501,0.6519493,0.545958,-0.10273722,0.6368194,-0.13107878,0.32825917,-0.18985477,-0.39727944,0.579525,1.2864254,-0.06963437,-0.28040642,0.6760355,0.5523606,-0.26019296,0.46928823,-0.58601385,-0.3711928,0.5591414,-0.21735011,-0.5281403,0.056204602,-0.34241518,0.007517276,-0.8987461,0.37895143,-0.19810031,-0.54486233,-0.7052904,-0.11772421,-3.033984,0.095952444,-0.37722936,-0.20271817,-0.2040425,-0.414193,0.12487494,-0.57013905,-0.47129104,0.15689747,0.11450793,0.6544813,-0.1680425,0.25719914,-0.2541148,-0.12922278,-0.44959357,0.06611001,0.1096829,0.30837741,0.05140929,-0.35298765,0.21912122,-0.22443606,-0.5540983,0.04146773,-0.57588714,-0.5244167,-0.19693463,-0.5142395,-0.46484625,0.6793995,-0.47591722,0.03365693,-0.11308141,-0.048515815,-0.094705276,0.48155755,0.2181917,0.08578592,0.028869238,-0.108007945,0.02082489,-0.33523062,0.39469478,0.030031947,0.29080278,0.48549607,-0.22463354,0.18242992,0.4009975,0.63615733,-0.030796565,0.8502906,0.54831517,-0.007710333,0.19920439,-0.43407425,-0.3199271,-0.5468835,-0.29813477,-0.07907438,-0.38555908,-0.41669843,0.04400222,-0.2948442,-0.9366683,0.61948836,-0.018799396,0.13252777,-0.13017444,0.38116506,0.46454528,-0.21788734,-0.13782288,-0.0074685034,0.047531717,-0.5931384,-0.33645236,-0.6236594,-0.48397306,-0.097573295,0.9690453,-0.093007766,-0.13319382,0.0134196235,-0.23993587,-0.18818787,0.09272568,-0.17249672,0.12724727,0.29871666,0.038919184,-0.81685096,0.54185385,0.083596826,-0.1456181,-0.5053865,0.28258955,0.56858885,-0.7462572,0.40714964,0.45535403,0.067619786,-0.14777897,-0.5148729,-0.3105788,-0.15570909,-0.067741685,0.3210025,0.25693247,-0.7578099,0.57551664,0.40707582,-0.21725559,-0.9027488,0.3777256,0.043430027,-0.3448728,0.01380173,0.30650502,0.1516052,0.07651803,-0.27353492,0.23497787,-0.50390327,0.37820053,0.13985246,-0.026724754,0.46734196,-0.2420266,-0.21301773,-0.78094304,0.17203258,-0.52402467,-0.2816614,0.1611251,0.18861455,-0.083495826,0.24596313,-0.055546753,0.3816064,-0.29049322,0.08388744,-0.1559119,-0.15574652,0.13559762,0.5149936,0.56035113,-0.43463948,0.6909019,0.10616715,-0.09890866,0.026272627,0.06645781,0.39476216,0.15042703,0.4490143,0.048122272,-0.2590739,0.35943377,0.73103803,0.15545617,0.62352794,0.07558366,-0.11287585,0.33571848,0.09231929,0.28742197,0.10929572,-0.5368084,0.04855719,-0.44278526,0.056373425,0.53961575,0.06652816,0.3045178,-0.12599736,-0.18658462,0.14869973,0.23561698,-0.002984141,-1.0515168,0.43756235,0.20378326,0.83044374,0.60764074,-0.13003553,0.101088524,0.76831466,-0.3591333,0.12732264,0.4050213,0.1842483,-0.47472972,0.6846091,-0.8682802,0.48696682,-0.27968594,0.032578588,-0.15673436,0.03738636,0.39415815,0.7528218,-0.1452602,0.07280651,-0.012390465,-0.32611975,0.23136702,-0.49474275,0.20599435,-0.5792706,-0.22822008,0.74201745,0.39061067,0.19204313,-0.124933414,-0.037597027,0.16609842,-0.16002487,0.1444361,0.109448716,0.09467589,0.081503026,-0.6122732,-0.29639867,0.5974235,0.023021642,0.24748328,0.080554,-0.17599359,0.2666337,-0.25085104,-0.22768423,-0.03748118,-0.7380881,0.07941531,-0.19071652,-0.4764199,0.55407333,-0.33624724,0.23519179,0.2912489,0.1654826,-0.38533223,0.06965582,0.41471612,0.74069095,-0.06687985,-0.22353894,-0.3466169,0.11738194,0.209684,-0.15970431,-0.14107169,-0.098819494,-0.157105,-0.56550854,0.43989187,-0.16356781,-0.2577974,0.021565152,-0.1900932,-0.021038247,0.51294065,-0.0332498,-0.17175692,0.03594437,-0.23895217,-0.22899629,0.07151166,-0.14978155,0.40102613,0.22429506,-0.08150188,-0.149607,-0.08158366,-0.18288766,0.46325767,-0.28179696,0.3110057,0.21299829,0.04174704,-0.3397733,-0.24027713,0.003305472,0.5646013,0.018504573,-0.055059608,-0.16559973,-0.3413768,-0.30936784,-0.021168806,-0.20851539,0.28767708,0.13575235,-0.43758222,0.8021339,0.02203558,1.2008564,0.0018488353,-0.50483096,0.14900237,0.5016674,-0.0074049053,-0.031234466,-0.38936725,1.0908259,0.49909732,-0.16045696,-0.13022241,-0.38137627,0.07941894,0.33676723,-0.17662308,-0.3791985,0.016212579,-0.6384929,-0.25413945,0.28095457,0.3006221,0.123133846,0.03641104,0.012185037,0.33577377,0.08029934,0.5390831,-0.38125128,-0.03140543,0.30369118,0.40748623,0.053950135,0.09947287,-0.39713156,0.33797482,-0.54101616,0.20824787,-0.23604268,0.21769401,-0.29552156,-0.36525944,0.3356982,0.21156484,0.48587418,-0.16125649,-0.31931955,-0.22586401,0.55358577,0.11808087,0.23269558,0.50224584,-0.41980273,0.07559317,-0.1037808,0.4137169,1.1546154,-0.246954,-0.1294255,0.3331896,-0.3589363,-0.6749066,0.6837988,-0.37877035,0.07166546,0.085386366,-0.30182,-0.57061714,0.15972842,0.39963472,0.029572707,0.11964484,-0.53994,-0.2307242,0.3654617,-0.22304885,-0.2650172,-0.34081644,0.28222916,0.6161889,-0.27604452,-0.36608425,0.12052366,0.27801815,-0.12778625,-0.49426234,-0.03976004,-0.488627,0.34631926,-0.01165534,-0.3250191,-0.19014524,0.064146966,-0.40051225,0.08144665,0.13388625,-0.26237124,0.1119684,-0.3108223,0.10269166,0.8548098,-0.15048814,0.27929652,-0.72730976,-0.36926115,-0.8982996,-0.15882543,0.67219573,0.046354536,0.04831791,-0.7184721,-0.00400015,0.042717602,-0.20653722,-0.06826474,-0.62644184,0.4579465,0.12275712,0.27115014,-0.016968371,-0.6343972,0.13575682,0.09811081,-0.18105443,-0.550657,0.46698028,-0.05061554,0.8306973,0.06883594,0.028105924,0.35105798,-0.42642975,0.052986506,-0.19650306,-0.30391884,-0.6386799,0.02801019 +596,0.4182347,-0.33517778,-0.41119745,-0.120538376,-0.07484951,-0.24972771,-0.0031005342,0.410656,0.09491555,-0.22790892,-0.27822447,-0.0764984,0.15480642,0.5284175,-0.13091525,-0.90422016,0.004343102,0.23061197,-0.6923783,0.6479064,-0.5415634,0.17268586,0.047367115,0.27577913,-0.063210875,0.29078123,0.3953619,-0.06652901,0.12017136,0.22426212,-0.16130553,0.16507886,-0.49147078,0.18914084,-0.010705511,-0.31705448,0.019194087,-0.2834047,-0.13981128,-0.7533435,0.23857726,-0.75594735,0.44296494,0.025924757,-0.31457976,-0.15602352,0.16209514,0.29993972,-0.70014066,0.06929793,0.1183,-0.057771128,-0.14258035,-0.31366828,-0.10356471,-0.45060062,-0.6166273,0.027074195,-0.531414,-0.22760384,-0.10186999,0.18290623,-0.42201045,0.0012594858,-0.11465424,0.57278097,-0.39472106,-0.07016846,0.46641648,-0.049250294,0.12392262,-0.48970857,0.0057526506,-0.16447574,0.32745266,-0.07233497,-0.26977405,0.3967955,0.40165773,0.5441633,0.3465879,-0.35190406,-0.22449875,-0.21796887,0.1623285,0.37441158,-0.092377566,-0.7046861,-0.2175976,0.18952928,0.20842917,0.27992344,0.09149101,-0.20180695,-0.031102462,-0.23592044,-0.1386057,0.24830486,0.63954514,-0.22485423,-0.5133357,0.29776746,0.5541901,-0.06695048,0.03352205,0.1821106,-0.07438282,-0.5650882,-0.2524399,0.056470413,-0.19046666,0.61607975,-0.2719012,0.11642206,0.7671108,-0.1093461,0.05314778,-0.102011226,-0.16208234,-0.17908639,-0.48567414,-0.21042092,0.22632463,-0.41608825,0.028455695,-0.39603665,0.84099025,0.356752,-0.74752015,0.49854615,-0.55551046,0.2922946,-0.0982424,0.7665828,0.7253712,0.33971095,0.45362592,0.8540764,-0.40226588,0.26007056,0.19231468,-0.40223274,-0.11693037,-0.21026403,0.071194835,-0.5082159,0.21565336,-0.1635869,0.018786127,0.056850147,0.47484124,-0.67545456,-0.18135458,0.21121688,0.7796169,-0.37553498,-0.09569576,0.72039336,0.98383,1.0756115,0.15752554,1.4358956,0.59476656,-0.28345373,0.3504349,-0.42879733,-0.87461835,0.1285229,0.39512083,0.1933624,0.37527815,-0.14849392,-0.24347351,0.41415653,-0.47493935,0.055491615,-0.25073925,0.54540086,0.09650058,-0.18231861,-0.41735557,-0.12354112,-0.09491414,-0.25655577,0.030066958,0.33838138,-0.21548201,0.46169844,-0.08836795,1.232216,0.014235866,0.04085932,0.17010391,0.44830096,0.27423728,-0.09954607,0.073515765,0.5032828,0.4911472,-0.22343247,-0.7467594,0.079189435,-0.51289946,-0.5058486,-0.23329937,-0.2273407,0.028561525,0.10755501,-0.2117755,-0.27634463,-0.099916816,-0.29110327,0.48923185,-2.4146101,-0.38276088,-0.20348074,0.43819097,-0.44764015,-0.15902947,-0.17693909,-0.51137185,0.40927377,0.26631108,0.48350593,-0.73283654,0.48707592,0.35488343,-0.56188184,-0.054790527,-0.8388377,-0.026371652,-0.12781407,0.25039896,-0.079595104,-0.08543471,-0.0610525,-0.080710374,0.6470149,0.09355716,0.087109715,0.4729685,0.46741715,0.17842717,0.3683962,0.06481748,0.6569557,-0.5330476,-0.073359855,0.3320723,-0.41918626,0.2974978,0.11181697,-0.030173754,0.48550406,-0.7318533,-0.79778385,-0.6343747,-0.42757395,0.85288906,-0.414067,-0.25714728,0.24748415,-0.049753543,0.14036669,-0.12717432,0.52763546,-0.14276081,0.017802492,-0.6782053,0.23244004,0.18418427,0.23483473,0.085238956,-0.035354752,-0.2589504,0.7096073,-0.2630832,0.6163778,0.33359337,0.30745843,-0.24929889,-0.5369961,0.081735134,0.70524216,0.3349481,-0.045919035,0.023508428,-0.28211775,-0.091733396,-0.261557,0.055143017,0.4858096,0.8749323,-0.14213069,0.11137694,0.5116534,-0.10779222,0.054130346,-0.030198798,-0.2740331,-0.2004242,0.09691056,0.42057577,0.7129254,-0.36092344,0.5682219,-0.20834132,0.34719276,-0.09827057,-0.53032404,0.73975354,0.8025925,-0.24388969,-0.099089645,0.47092748,0.28071022,-0.550895,0.468262,-0.68348426,-0.16298555,0.81810784,-0.2012875,-0.32557496,0.051743235,-0.23088671,0.19640893,-0.9210214,0.55255336,-0.37015152,-0.38030156,-0.61964774,-0.08970889,-2.8928852,0.19049476,-0.518976,0.0027077298,-0.27031446,0.028409585,-0.064302005,-0.6975426,-0.71097475,0.36683878,0.2433347,0.34545326,-0.061440557,0.32701707,-0.23025881,-0.11791124,-0.3231825,0.21403472,0.14552014,0.23043899,-0.09668797,-0.5110406,0.055070806,0.19421673,-0.51535505,0.34121394,-0.6791327,-0.42061278,-0.16838862,-0.84202355,-0.3176612,0.58796614,-0.42109382,-0.077962056,-0.23208408,0.099474214,-0.23884244,0.20797914,-0.028961599,0.17411067,0.091584526,-0.14696857,0.106013454,-0.29975075,0.39217034,-0.06962163,0.36956963,0.0068364986,-0.13217336,0.09783254,0.45615816,0.68338555,-0.013214588,0.6086914,0.5880817,-0.051986497,0.32577515,-0.20896439,-0.09593645,-0.61962324,-0.5495538,-0.13633303,-0.42994884,-0.6423021,0.10903274,-0.37821254,-0.8166921,0.4194806,-0.13879877,0.31238294,0.065096974,0.23380114,0.47989956,-0.03756312,0.110490285,-0.14590769,-0.20444334,-0.55234414,-0.28174174,-0.6960712,-0.43570462,0.41135368,1.070784,-0.27852833,-0.061573952,-0.25694862,-0.37567952,-0.05881615,0.18728732,0.05164336,0.35934615,0.32203257,-0.05739287,-0.64979523,0.32851508,0.16013835,-0.2296416,-0.49585167,0.14687575,0.6122832,-0.8225102,0.7910977,0.17396224,-0.056060057,-0.003967704,-0.6829181,-0.37140873,0.18415125,-0.065514125,0.39659277,0.1351719,-0.6428091,0.4864944,0.44197738,-0.48550916,-0.89127,0.13336541,-0.073046096,-0.121247016,-0.07345932,0.4167242,0.007129202,-0.24737602,-0.41522503,0.2543964,-0.39662632,0.33008805,0.15926082,-0.2485578,0.19139016,-0.125165,-0.2860529,-0.802571,-0.012629469,-0.8333741,-0.028888648,0.29529852,0.11931515,-0.15799977,0.016671559,0.14334176,0.47094822,-0.29588887,0.21282487,0.16093178,-0.5095523,0.080268115,0.37749568,0.26513782,-0.41623285,0.57716405,0.13283546,-0.12144149,-0.055228252,0.11005559,0.38833785,0.22124904,0.38476077,0.017337106,-0.010956491,0.44554567,0.8335204,0.06144765,0.44196844,0.28219846,-0.088611804,0.455027,0.06348807,0.07732134,0.07949897,-0.26881698,0.0024283428,0.17814672,0.25377885,0.46503702,0.32295403,0.44500265,-0.012248696,-0.29824564,0.006611629,0.32580566,-0.08623326,-0.94844955,0.369694,0.21514231,0.8669808,0.52882606,0.08322448,-0.17737234,0.5236105,-0.17387027,0.1720016,0.4415383,-0.2178802,-0.42220712,0.76415676,-0.54677814,0.39444026,-0.37694624,0.088754006,0.0472112,0.34052753,0.2404827,0.7661479,-0.18013193,-0.036433514,-0.121464066,0.0031442468,0.09567129,-0.5238195,0.08474662,-0.36130115,-0.39883098,0.6481035,0.22296686,0.2511785,-0.176627,-0.014506561,0.21229601,-0.22866456,0.29498053,-0.058212806,0.029671907,0.16665697,-0.57331043,-0.39723694,0.63478214,0.22244696,0.27313295,-0.092511855,-0.31191334,0.10519647,-0.46240988,-0.20944305,0.0021534462,-0.603798,0.04883339,-0.1763457,-0.34528598,0.52449995,-0.28662685,0.19738014,0.37314427,0.121528886,-0.44298658,0.05522424,-0.069270015,0.80478287,-0.064533465,-0.28980246,-0.32355055,0.07470413,0.2994086,-0.28930864,0.44463563,-0.31149018,-0.15276584,-0.5531617,0.78622776,0.05930844,-0.49704853,0.16056328,-0.311317,-0.22527254,0.6477008,-0.20436697,-0.1342286,-0.009017299,-0.30505326,-0.4619545,-0.27033857,-0.18736519,0.34444132,0.23076607,0.18993992,0.031886905,-0.23198693,-0.064619765,0.5185121,0.14278117,0.28364065,0.17864305,0.16187277,-0.15022187,0.11644357,0.25602078,0.41257575,0.2219221,-0.114317186,-0.22136593,-0.41641378,-0.15313812,-0.34005037,-0.20749503,0.25763008,-0.11010196,-0.3904539,0.7261314,0.13055427,1.401628,0.01365303,-0.30761555,0.0444598,0.5587627,0.084440015,0.009831381,-0.18681693,0.96447915,0.67777824,-0.069586806,-0.06870434,-0.5000542,-0.3156813,0.501839,-0.27412617,-0.22202718,0.19192411,-0.510017,-0.56704706,0.31895807,0.07041689,0.0026107032,-0.058391754,0.023493549,-0.00017905235,0.05407561,0.31913477,-0.6420408,-0.10097653,0.11402133,0.29499704,0.14101256,0.2945698,-0.39837566,0.3352327,-0.7422931,0.36116418,-0.23597519,0.09500299,-0.08561227,-0.37658015,0.13634217,0.005855764,0.36489165,-0.32157204,-0.4618064,-0.05526642,0.63884014,0.19185431,0.27987447,0.71688175,-0.38303304,0.058043096,0.23309815,0.666894,1.4477566,-0.26249325,-0.1832216,0.047775757,-0.43419442,-0.9326164,0.7994334,-0.20312835,-0.1426377,-0.30477557,-0.37452248,-0.643785,0.21159174,0.10486084,-0.07962427,0.22360177,-0.5603848,-0.2471088,0.34003246,-0.3840529,-0.15613213,-0.21962583,0.49517593,0.7918668,-0.24532974,-0.2479006,0.15663281,0.14840348,-0.3271418,-0.60174817,-0.24271242,-0.33970976,0.28251448,0.17010055,-0.2876279,0.010845506,0.20752625,-0.48612586,0.16690178,0.03695935,-0.28398588,0.29304904,-0.09515198,-0.207702,0.8132917,-0.24982162,-0.062507756,-0.79781055,-0.45067516,-1.012076,-0.32198957,0.60723954,0.113620244,0.009703546,-0.6793687,0.10520762,0.1979893,-0.10354612,0.010793735,-0.41501617,0.3722479,0.121105395,0.3945017,-0.30959097,-0.8623398,0.06320662,0.108252585,-0.008140296,-0.6514204,0.40723756,0.0032562416,0.9515564,0.017709464,-0.14508194,0.11334852,-0.4812126,0.010189389,-0.37727872,-0.1802261,-0.5502694,-0.1117604 +597,0.34143355,-0.19380826,-0.36735857,-0.21914768,-0.45558566,-0.0014899597,-0.24832296,0.05893723,0.17182112,-0.25884843,-0.08959293,0.048691902,0.03493788,0.34055907,-0.18874352,-0.75422055,-0.13918397,0.011545315,-0.66396606,0.529325,-0.6426405,0.47803617,0.07805182,0.22376351,-0.014823988,0.4613407,0.33999968,-0.26560086,-0.014667787,-0.053217083,-0.22945176,0.38328934,-0.55579436,0.15545684,-0.029132204,-0.25009742,0.29215646,-0.35311028,-0.15064171,-0.5945092,0.175782,-0.74869514,0.4944235,-0.06876597,-0.06782263,0.049416,0.3660809,0.31236,-0.46951467,0.22002655,0.1661354,-0.26515794,-0.053199574,-0.2546426,-0.04421524,-0.50674933,-0.43870634,-0.13581668,-0.8442553,-0.43510568,-0.21184231,0.19761945,-0.38430402,0.074088916,-0.18062302,0.27865458,-0.5134847,-0.015462071,0.22880417,-0.19645661,0.12052775,-0.5133506,0.009577688,-0.044034146,0.4612611,0.0185709,-0.14176093,0.4267382,0.2302147,0.37194037,0.27055892,-0.34749866,-0.2011906,-0.44841495,0.21247388,0.3435135,-0.17650193,-0.19871865,-0.1782059,0.08450562,0.31079492,0.37100273,-0.09462576,0.010295615,-0.06971718,-0.030994996,-0.25679454,0.3872768,0.55588627,-0.29285628,-0.5117512,0.28052744,0.4722175,0.12607244,-0.1363998,0.095108,0.029572725,-0.45339137,-0.2121044,0.08291323,-0.13296297,0.4464296,-0.17758963,0.13600752,0.9501691,-0.28804263,0.11133559,-0.16374367,-0.17464742,-0.123833954,-0.07250982,0.01018611,0.018412706,-0.69090486,0.026717596,-0.19826506,0.84403217,0.24086079,-0.55515397,0.33383414,-0.5796634,0.114894226,-0.042867973,0.62486446,0.5129621,0.44496998,0.42590648,0.73623496,-0.30174822,0.15098953,-0.081712425,-0.4317444,0.08104611,-0.33106506,0.03344705,-0.4453544,0.142412,-0.09782219,0.1476462,0.0010504983,0.37626532,-0.5815898,0.07988064,0.19475971,0.815536,-0.36682668,0.030641694,0.6007702,0.9509595,1.0587084,0.044258907,1.0669837,0.29357472,-0.2652474,0.05470684,-0.34792846,-0.5174297,0.13885008,0.37127748,-0.049988687,0.3504712,-0.094313204,0.04202623,0.36786193,-0.44486722,-0.10457543,-0.05702403,0.3683486,0.18690273,-0.09004751,-0.3852015,-0.15450971,0.08267584,-0.1550879,0.13481684,0.305467,-0.11885084,0.49578017,-0.013573594,1.2714119,0.0447063,0.14694181,0.12991557,0.5531204,0.2916425,0.13959014,0.05863866,0.54513323,0.34365955,0.08271158,-0.6849554,0.121056065,-0.40936363,-0.4288392,-0.18501222,-0.46285343,-0.17551391,0.027197719,-0.36339352,-0.20743847,-0.08703021,-0.19053859,0.37868896,-2.8037946,-0.24650332,-0.11487284,0.2463018,-0.35144427,-0.07901792,0.02584619,-0.5864517,0.22058177,0.26571774,0.35850242,-0.6644287,0.4837517,0.58519065,-0.5028239,-0.225144,-0.61303043,-0.094521396,-0.10971587,0.640996,-0.06411622,-0.10014814,-0.29466566,0.15874189,0.73564345,-0.06068309,0.2556352,0.39878988,0.40506703,0.2545125,0.5867346,0.07580754,0.57428443,-0.35562444,-0.09511066,0.39498013,-0.33912355,0.2729856,-0.10468793,0.049146477,0.4027736,-0.5163832,-0.90160906,-0.47882247,-0.2702102,1.0310442,-0.42152765,-0.39682508,0.2764155,-0.09908062,0.0002565179,-0.0037666298,0.3905512,-0.1770069,0.22886376,-0.5915968,0.29641902,-0.06052036,0.23555091,0.12550549,0.036455162,-0.235876,0.6410452,-0.052511334,0.53407454,0.15805486,0.27863264,-0.1821723,-0.42352086,0.065667704,0.8018693,0.48012632,0.0050917417,-0.11531832,-0.37886912,0.118086316,-0.25075728,0.010445611,0.5338747,0.77938455,0.022152133,0.16055529,0.29331464,-0.12336629,0.15324628,-0.18447123,-0.048405528,-0.009202857,0.12832133,0.46983975,0.60456264,-0.2079575,0.4729198,-0.13237947,0.48133466,-0.08612663,-0.5416949,0.59202325,0.714164,-0.12796496,-0.043596543,0.58384603,0.6284599,-0.34109688,0.46634245,-0.6369175,-0.3252725,0.77891886,-0.2929908,-0.472596,0.061437752,-0.24201459,0.14866626,-0.85142875,0.35551655,-0.31895638,-0.42660618,-0.5500285,-0.1938034,-3.6720805,-0.025941849,-0.309931,-0.07124642,-0.32716632,-0.068936266,0.17663252,-0.86066395,-0.55789244,0.15945135,0.15505555,0.4393968,-0.07365964,0.14753088,-0.32491678,-0.21896386,-0.12234703,0.293265,0.11724365,0.14799166,-0.13312079,-0.4116816,0.01622248,0.011112969,-0.51582587,0.29141408,-0.3587558,-0.5128715,-0.064497314,-0.46995452,-0.14899144,0.66570216,-0.26270887,-0.013348063,-0.28437203,0.12032207,-0.2137654,0.07912466,0.2952888,0.29710895,0.21914762,-0.1637605,0.043573704,-0.37380403,0.5197245,-0.05895637,0.47583604,0.20230806,0.04223737,-0.0025396235,0.48210174,0.3615501,-0.09162491,0.87220734,0.28644297,-0.15534812,0.37418744,-0.37252486,-0.3283026,-0.68659246,-0.53286535,0.028669585,-0.44639438,-0.5978967,-0.06159064,-0.30319235,-0.74136925,0.6413177,-0.112174004,0.38773614,-0.24529323,0.35155725,0.3941142,-0.029125996,-0.049660016,-0.072506316,-0.16875097,-0.6007756,-0.28024852,-0.7267024,-0.46142307,0.08344741,0.9640552,-0.35102642,-0.09516704,-0.20040306,-0.21473193,-0.046040393,0.09175654,0.21155599,0.36071408,0.4426729,0.058825966,-0.8176305,0.54061234,-0.06473086,-0.04469544,-0.43332952,-0.029256463,0.605687,-0.93540144,0.51057345,0.4215241,0.02586687,0.24047935,-0.53039956,-0.17878266,-0.017233893,-0.1433859,0.3503877,0.09376535,-0.736706,0.54104954,0.16092312,-0.5383687,-0.6524104,0.27972293,-0.085890785,-0.29426277,0.067354456,0.3473312,0.30130076,-0.06987969,-0.024904959,0.21192124,-0.49369353,0.24786234,0.24054146,-0.043285128,0.39493632,-0.09647764,-0.5220762,-0.7432798,-0.12496929,-0.45239466,-0.25066578,0.20961569,-0.04823496,-0.10904777,0.17485759,-0.030463051,0.4649881,-0.23089394,0.1438628,0.1471178,-0.35242513,0.27768564,0.4766572,0.3747468,-0.29540446,0.6605558,0.23026434,-0.07449553,0.06789696,0.018254735,0.31152624,-0.09533371,0.43254226,-0.11251539,-0.23716709,0.5378082,0.818107,0.2013863,0.37800226,0.08260943,-0.09742223,0.4953429,-0.013111645,-0.08329718,0.1559453,-0.34016278,-0.12388283,0.07438178,0.10103603,0.48497128,0.33042628,0.44526902,0.074633114,-0.020370748,0.029841758,0.34199333,-0.0964876,-0.9253617,0.2665338,0.25812173,0.7406843,0.42560485,0.1903458,-0.05890882,0.6300718,-0.4394231,0.026389996,0.4382323,0.10960899,-0.43934685,0.78595567,-0.48404923,0.50216436,-0.13636291,-0.0039666165,0.015237138,0.12335491,0.24370615,0.89318573,-0.0891995,-0.049862623,0.017665511,-0.3546682,0.11444778,-0.33345395,-0.090247005,-0.25455824,-0.24428816,0.6422781,0.30845934,0.30170515,-0.14657554,-0.12399368,0.04549537,-0.2085604,0.33535814,-0.07326631,0.14692271,-0.05201476,-0.25496256,-0.36332834,0.6478002,-0.05580711,0.32537225,-0.24988802,-0.23646569,0.19472085,-0.22554252,-0.10913056,0.08389623,-0.41328385,0.26937944,-0.1195309,-0.67083144,0.43787256,-0.2715465,0.14117233,0.26261994,0.036153983,-0.2603291,0.0820637,0.028093874,0.553632,-0.13874881,-0.34628633,-0.33167553,-0.12812304,0.22969489,-0.30433,0.17540446,-0.26560396,0.14203589,-0.5163005,0.59783745,-0.2465232,-0.4186847,-0.0044517145,-0.4078957,-0.112533905,0.46973056,-0.040210042,-0.14558198,0.08989965,-0.1931771,-0.397047,-0.17573611,-0.28708804,0.21532091,0.22473237,-0.014244035,-0.08089641,-0.32589427,-0.10753348,0.5578367,-0.0420858,0.35684177,0.08986744,-0.043779977,-0.24511665,-0.014062423,0.15237746,0.34954268,0.07755801,0.20167844,-0.30219465,-0.48099935,-0.31193393,0.22427963,-0.22328293,0.22702676,0.081991665,-0.45471048,0.9717611,-0.07914564,1.051659,0.09489341,-0.32867938,0.054946363,0.56900406,-0.08980115,0.072114944,-0.17773996,0.97013444,0.6324372,-0.087855324,-0.17280869,-0.41837344,-0.082887694,0.333068,-0.37533885,-0.19574912,-0.03326933,-0.482408,-0.33535635,0.29811773,0.11986479,0.12651478,0.07748047,-0.22312295,-0.13065472,0.18699884,0.37375796,-0.6688432,-0.34871405,0.29061627,0.12894978,0.037645224,0.1609996,-0.40710348,0.43190292,-0.6050025,0.19672036,-0.40625727,0.14586091,-0.24228628,-0.22350352,0.20208542,-0.016980872,0.28203812,-0.28210223,-0.47077107,-0.07414065,0.38880637,-0.012296997,0.1849455,0.5857076,-0.267782,0.09694423,0.051362876,0.58447003,1.2482195,-0.24766362,-0.122351095,0.21143036,-0.48182464,-0.7125141,0.41110057,-0.4010385,-0.24472243,-0.056345537,-0.54198813,-0.41742676,0.24733573,0.26155263,0.13463813,0.23231673,-0.61491066,-0.24612999,0.23006645,-0.4090952,-0.242528,-0.17935139,0.3831086,0.96604556,-0.37627286,-0.11206209,-0.001053486,0.29975903,-0.38539886,-0.58390653,-0.092870936,-0.01832461,0.51590276,0.20151755,-0.09902659,0.028084364,0.2775982,-0.38957888,0.16915762,0.48805952,-0.3811133,0.06618442,-0.15867653,-0.0044088736,0.8002136,-0.32675505,-0.20472538,-0.73747146,-0.40678242,-0.9100323,-0.3919247,0.40544307,0.15176788,-0.009195216,-0.36648953,-0.0002682656,0.039489344,-0.18525302,0.10015262,-0.6795235,0.37157646,0.15773042,0.46900874,-0.22947781,-0.8261248,-0.08032566,0.10942466,-0.039033636,-0.6659942,0.672927,-0.34637177,0.78454745,0.060097307,-0.25787416,0.042469412,-0.3263782,0.13468607,-0.33044216,-0.14230931,-0.84513634,0.038870238 +598,0.4603727,-0.27867603,-0.47110733,0.033541147,-0.35226664,0.023878297,-0.45335892,0.24898624,0.28144833,-0.11542962,-0.08310749,0.12885348,-0.13476384,0.3478045,-0.13423903,-0.7606854,-0.20701453,0.045928363,-0.59006447,0.8011022,-0.510345,0.33667874,-0.23667134,0.31298813,0.18897322,0.45295367,0.20281304,0.077731185,-0.078535564,-0.07528794,0.07874538,0.17870982,-0.55824834,0.26227385,-0.24626608,-0.32952467,0.1400033,-0.5101317,-0.23193555,-0.6655814,0.17228864,-0.667572,0.52748877,-0.07201522,-0.114595234,0.056774028,0.24408627,0.30753762,-0.30749828,0.09766967,0.076917425,-0.06862021,-0.08031734,-0.30369514,-0.10217776,-0.097847275,-0.42097315,-0.11678415,-0.65966177,-0.27191144,-0.114483476,0.19224766,-0.29130453,0.05776157,-0.02883929,0.21112405,-0.42022133,-0.018570619,0.27690876,-0.15954266,0.058231104,-0.78253233,-0.018276794,-0.0391344,0.45646566,-0.045764897,0.040155716,0.50472915,0.12057937,0.4130609,0.16343811,-0.2908569,-0.2983457,-0.27397656,0.24884152,0.44686022,-0.099399365,-0.20181021,-0.4191539,0.13856433,0.46724993,0.30180115,0.0009640179,-0.17553282,0.0074094906,-0.34700137,-0.095708355,0.56321156,0.55138904,-0.19860777,-0.27153614,0.29140097,0.68023884,0.50332475,-0.18042217,0.049146313,-0.027717004,-0.35070047,-0.13030449,0.14790085,-0.04554121,0.40681773,0.09418005,0.19723049,0.6043191,-0.069673665,0.021765003,-0.15046991,-0.011743145,0.055272453,-0.4235137,-0.18644704,0.14455687,-0.5029746,0.13584457,-0.09785725,0.46786326,0.08957725,-0.69128793,0.35903826,-0.5209779,0.1007057,0.16430406,0.5301053,0.58867943,0.3640471,0.22879314,0.89819527,-0.33557558,0.25909504,-0.08132337,-0.21163093,-0.17143787,-0.12467365,0.21104598,-0.455092,0.35018554,-0.27527577,0.07884394,0.07706342,0.38373843,-0.42894512,-0.10720042,0.068248115,0.8056003,-0.24616088,0.09229857,0.8357329,1.2100716,1.2029076,-0.1658425,1.1951592,0.2363055,-0.13133518,-0.09225311,-0.32639804,-0.62239736,0.17316069,0.38220435,0.03406518,0.6249901,-0.05641104,-0.03133745,0.1806297,-0.3973753,-0.008025916,-0.019549387,0.32959113,0.26557174,-0.06602859,-0.4556751,-0.15739611,-0.014159381,-0.13111384,0.18141447,0.21032618,-0.2527922,0.34180504,-0.05173862,1.3074769,-0.12634929,0.0822564,0.1986619,0.40941933,0.34851235,-0.030869212,-0.101775214,0.46270627,0.32237726,-0.14573132,-0.6669374,0.10222733,-0.44218636,-0.35698,-0.15038402,-0.3126903,-0.080562055,0.021769142,-0.20073195,-0.1133947,-0.13447022,-0.27231723,0.4166669,-2.7550073,-0.3616455,-0.20252737,0.271687,-0.3260696,-0.14557187,-0.12079992,-0.43646076,0.46612406,0.29652467,0.37703475,-0.30596766,0.40637913,0.4597168,-0.6097885,-0.16670159,-0.37414548,-0.006240219,-0.0012977315,0.6561139,-0.09555197,-0.096048005,-0.11056017,0.35890183,0.7300932,0.1822183,0.17011544,0.6449261,0.40687254,0.049051724,0.47168964,-0.07789079,0.4957692,-0.4475889,-0.045197766,0.42354417,-0.375536,0.45637164,-0.26154917,0.07447873,0.48452908,-0.5243043,-0.8176219,-0.4466191,-0.25476697,1.0951302,-0.29460636,-0.5635356,0.08074772,-0.16972251,-0.065364696,0.062206876,0.52967703,-0.14736855,0.024526546,-0.65986204,0.03858636,-0.09450968,0.13269699,0.03348751,0.033924203,-0.3783438,0.6962877,-0.08533143,0.62956965,0.3998221,0.37054825,-0.04333413,-0.3752761,0.14723013,0.6640444,0.465551,0.004857806,-0.10781113,-0.10240489,-0.019030979,-0.31967166,0.07860933,0.662649,0.5769062,-0.092618786,0.1517081,0.26705107,-0.09995749,0.082773924,-0.13999566,-0.15128966,-0.13559496,0.1052867,0.4438924,0.8247245,-0.14386071,0.23610364,-0.09196406,0.21310684,-0.052316926,-0.42240185,0.55784065,0.44439024,-0.30796078,-0.08993476,0.49178928,0.49354118,-0.41467014,0.5826245,-0.6673732,-0.2830547,0.7651476,-0.16000739,-0.32757488,0.16129749,-0.3295782,0.06008238,-0.6898826,0.22479418,-0.35297093,-0.3063772,-0.42734274,-0.20796444,-2.50992,0.23565248,-0.1647584,-0.17385745,-0.47634146,0.0061826366,0.1833419,-0.69975007,-0.75959486,0.22341476,0.16933592,0.4870966,-0.16167334,0.16765523,-0.19465698,-0.28408507,-0.22883114,0.21363382,0.03009052,0.26270908,-0.10207593,-0.25447705,-0.118584044,-0.0011262213,-0.44064537,0.1316231,-0.3676571,-0.2172793,-0.11203061,-0.52916133,0.035322104,0.5832519,-0.38393202,0.04566902,-0.23139095,0.034812693,-0.12508367,0.03310029,-0.018279893,0.35215256,0.30016065,-0.20898592,0.068809606,-0.24479564,0.5358502,0.028880265,0.29990456,0.024072042,-0.12719451,0.1571327,0.35571298,0.6569924,-0.10724444,0.94774663,0.23505796,-0.09939052,0.3475234,-0.32893184,-0.23391183,-0.5770187,-0.30340937,0.042154968,-0.33523864,-0.7293037,-0.07468283,-0.34326407,-0.8474429,0.4588821,-0.0132663315,0.6219581,-0.072323464,0.18889736,0.355658,-0.23424672,0.061552882,-0.043417867,-0.14167662,-0.4021856,-0.29370707,-0.5953437,-0.48003128,0.24662362,0.701048,-0.44178015,-0.09065298,-0.006201259,-0.47210386,0.10747266,0.05730951,0.08087056,0.3047455,0.33999544,0.3605108,-0.61259073,0.21931338,0.059934873,-0.1966337,-0.4178656,-0.009466559,0.6412597,-0.6400701,0.5463955,0.30135164,-0.025883798,0.11005884,-0.6867881,0.024615819,0.119654655,-0.17311423,0.41604766,0.19915023,-0.69113344,0.4986836,0.10792874,-0.5889479,-0.77371997,0.27643877,-0.11229932,-0.19044006,-0.07618793,0.4831889,0.27320716,-0.02049012,-0.16128953,0.24816035,-0.27992254,0.1727145,0.028506193,-0.1588779,0.27158633,-0.121939525,-0.5372341,-0.6769786,-0.006603543,-0.5250157,-0.22282144,0.4683447,-0.02796024,-0.21601607,-0.10275315,0.3174972,0.40794954,-0.36158293,0.26006302,-0.031403195,-0.39226678,0.29631138,0.45596105,0.4278461,-0.34861284,0.42576838,0.09686584,-0.06353985,0.32476297,0.017245378,0.2744765,-0.026432684,0.3356518,-0.03440523,0.046687674,0.1637107,0.5567749,0.13780892,0.27103874,0.16823383,-0.34477273,0.44534725,0.13192663,0.10633381,-0.19810836,-0.33966732,0.037169714,0.05864886,0.0437291,0.49547863,0.39858943,0.30579066,0.0919266,-0.21955141,-0.08132141,0.31752712,-0.20880935,-1.1060623,0.3274041,0.11943253,0.90401566,0.4459332,0.19831507,0.08249646,0.51211107,-0.08719951,-0.029899647,0.47568303,0.070617475,-0.48257694,0.5976558,-0.3934036,0.35570303,-0.13754871,-0.04165428,0.26930514,0.3057564,0.52579486,0.6748869,-0.21094058,-0.10027246,-0.16605604,-0.21771467,-0.10721302,-0.18290424,0.2516928,-0.23909567,-0.44451037,0.59222984,0.44948572,0.34847802,-0.21159902,-0.016643459,0.006730452,-0.2787663,0.24877921,-0.112839304,-0.07543285,0.05020726,-0.510835,-0.1344496,0.4089656,-0.025343375,-0.011216776,-0.32479593,-0.30314073,0.034473907,-0.19331042,0.06631408,0.05935865,-0.8251866,0.13382258,-0.07368356,-0.45859054,0.32051,-0.1259512,0.074247345,0.23875652,-0.025592577,-0.23661123,0.26944163,0.017028153,0.7940398,-0.046332564,-0.3907241,-0.3051969,0.039518613,0.23766232,-0.28141758,0.26874372,-0.26593068,0.2156841,-0.6190688,0.6514703,-0.21091442,-0.25735217,0.12668751,-0.26893663,-0.19634198,0.55688834,-0.17083351,-0.08871573,-0.12091359,-0.3247531,-0.4893119,-0.30375502,-0.3619573,0.109680906,0.26275513,-0.14613733,-0.1378225,-0.23562217,-0.010911486,0.5208566,0.08726072,0.37527177,0.17821786,0.06755014,-0.3859808,0.09802823,0.23553808,0.29687637,0.24323227,0.14417683,-0.34968874,-0.4786108,-0.34023866,0.51416725,-0.25682622,0.12762089,-0.070095435,-0.28702903,0.9264723,0.11562734,1.117239,0.05401206,-0.2787167,0.07410073,0.66646516,-0.31646666,-0.06964994,-0.36874527,0.9491778,0.59012127,-0.17480914,0.048857115,-0.3538343,-0.20216711,0.2849409,-0.4689477,0.063994214,-0.20843394,-0.33779377,-0.43807745,0.1486328,0.13803211,0.0080710305,-0.19840679,-0.11836188,-0.019699434,0.18131278,0.40384457,-0.5443326,-0.23064362,0.29283255,0.0667197,0.036608458,0.117472015,-0.35439137,0.4431908,-0.665307,0.25395173,-0.40323034,0.0672655,-0.2009916,-0.41992873,0.16193247,-0.08230747,0.2834535,-0.3528838,-0.46826395,-0.1472023,0.1891347,0.0065994305,0.13573658,0.50245196,-0.29019848,0.069728844,0.08091177,0.65097016,1.0646399,-0.27017447,0.06566915,0.17244013,-0.5239518,-0.5960828,0.14936662,-0.48719543,-0.055459976,-0.26049536,-0.49204245,-0.7156002,0.18244389,0.107923664,0.16828713,-0.08026072,-0.7776082,-0.20308897,0.22882614,-0.21573313,-0.20310311,-0.17950991,0.2524269,0.92022556,-0.17605105,-0.58145505,0.10130082,0.23215587,-0.20247194,-0.64388555,0.07567289,-0.15039556,0.34586427,0.12925552,-0.13581063,-0.21996114,0.21826528,-0.52505285,-0.06799954,0.21000825,-0.3201756,-0.14173034,-0.24902055,-0.010604705,0.70878464,-0.39206558,0.022681365,-0.6066329,-0.47176236,-1.0286871,-0.49799448,0.11455438,0.24157543,0.10477544,-0.5745989,0.20360616,-0.366102,-0.08957599,0.18302348,-0.45279,0.24995656,0.18398036,0.5166952,-0.4414064,-0.9406749,0.12279823,0.25673386,-0.22555919,-0.56177956,0.54537374,-0.008439318,0.66445047,0.13824211,-0.15447442,-0.13368282,-0.5599637,0.22356082,-0.3885417,-0.15376553,-0.67336446,0.25373003 +599,0.49602368,-0.14981247,-0.48584712,-0.11592956,-0.32700682,-0.020034326,-0.26755854,0.414429,0.39258748,-0.13817,-0.17740943,0.15011896,0.019702924,0.23238517,-0.2401689,-0.7093197,-0.054169733,0.13937472,-0.52610564,0.7200023,-0.43614095,0.31013444,-0.057442244,0.43763727,0.32318354,0.50537956,0.21216756,0.059700448,-0.27935308,-0.22970739,0.00402192,0.017136686,-0.5423044,0.23061356,-0.2825384,-0.24124756,0.12687063,-0.47284544,-0.28353304,-0.7272607,0.17299733,-0.8031983,0.47782332,0.17340377,-0.0741145,-0.16442333,0.23681402,0.12755565,-0.28798676,-0.14498445,0.12847942,-0.068657264,-0.028201649,-0.48483336,-0.31327263,-0.49980018,-0.47398233,-0.03317586,-0.6429819,-0.31900936,-0.2026472,0.3106867,-0.275982,-0.18593457,-0.19550464,0.5016524,-0.43039814,0.024569873,0.19219019,-0.35997316,0.11296236,-0.8203989,-0.1457949,-0.08139201,0.19931151,0.106435366,-0.18062918,0.42773965,0.18389748,0.24058048,0.32961273,-0.43814877,-0.43228623,-0.2289595,0.31608754,0.33487993,-0.34254068,-0.3131173,-0.28451037,-0.058796525,0.5409082,0.32480377,0.2261166,-0.14056772,0.157597,-0.2523525,-0.16527885,0.7200235,0.67188966,-0.24182162,-0.2840154,0.24469258,0.53718257,0.19169067,-0.43031123,-0.18746911,-0.107755,-0.32503536,-0.18736888,0.26931655,-0.112786606,0.6080798,-0.05754716,-0.042373933,0.73235375,-0.28066033,0.053009924,0.06757913,0.15049043,-0.04973928,-0.52014935,-0.24100232,0.08178263,-0.5595595,-0.015243154,-0.35130963,0.67721856,0.090980016,-0.7009595,0.33991,-0.46244866,0.020131204,0.08932679,0.5328684,0.526609,0.5704509,0.29200312,0.6569841,-0.14380987,0.21930371,-0.03580773,-0.32817805,-0.07952494,-0.21586122,0.052583575,-0.37235686,0.19243461,-0.23598807,0.08198224,-0.0301493,0.5933999,-0.40222913,-0.20244329,0.25051638,0.86202437,-0.3072914,-0.15868099,0.6111427,1.3440163,1.0694654,-0.107006274,1.096587,0.20126882,-0.1484668,-0.10389233,-0.2736103,-0.62292266,0.1981364,0.3065013,-0.31091684,0.4151488,-0.13048795,0.004825858,0.2440454,-0.2273431,-0.050084617,0.026817117,0.37639993,0.2086734,0.06648984,-0.44422114,-0.22464599,0.0903293,-0.100868136,0.23273516,0.35650954,-0.5740357,0.16556934,-0.08213925,1.0485191,-0.13117655,0.029310625,0.1116461,0.70898116,0.30553746,-0.078942895,0.22958948,0.6321048,0.17324024,-0.16463582,-0.65756196,0.17307279,-0.5732674,-0.457586,-0.08208799,-0.51522005,-0.17567095,0.23588528,-0.34046194,-0.17609787,-0.014657772,-0.2535567,0.33950475,-2.6561785,-0.2144848,-0.13928819,0.31975916,-0.3257243,-0.2257112,0.05873015,-0.4934631,0.2334455,0.120146185,0.44380137,-0.44078276,0.50858253,0.705616,-0.59856665,-0.10710769,-0.627051,0.07684365,-0.29568288,0.7354791,-0.22437835,-0.017168788,-0.06661697,0.17531937,0.9498068,0.27010423,0.2692293,0.5445271,0.32210353,-0.013925355,0.4269633,-0.0064769615,0.6855253,-0.3332523,-0.22197665,0.35324523,-0.4286031,0.47801253,-0.055400636,0.12390719,0.6444164,-0.4814061,-0.84458286,-0.47840658,-0.2866249,0.9842664,-0.33990633,-0.47725472,0.16294517,-0.10952,-0.15311068,0.006371443,0.572547,-0.04327178,0.27707756,-0.46425295,0.1442257,-0.053121917,0.17945684,-0.014180515,0.20734447,-0.06711976,0.759009,-0.0079641985,0.54766375,0.12985688,0.2652983,-0.3227648,-0.33031052,0.10564584,0.81398106,0.30524057,-0.03614662,-0.10389535,-0.21758768,0.029667556,-0.22371355,0.058821622,0.66169745,0.7228668,-0.10944964,0.11427729,0.34894198,-0.025657954,0.014892981,-0.12063014,-0.35266873,-0.29126012,0.16136727,0.4452359,0.7276719,-0.13694617,0.38502482,-0.15042344,0.29103354,-0.2849589,-0.3695656,0.531423,0.51759213,-0.26650655,-0.15026802,0.6696163,0.63892025,-0.7421586,0.5461551,-0.6786471,-0.11993192,0.6953182,-0.27101266,-0.48010826,0.09152622,-0.26528832,0.046088044,-0.7224117,0.26530468,-0.3837748,-0.39370456,-0.20382045,-0.20421019,-2.8007064,0.22101298,-0.23657733,-0.120479695,-0.34856635,-0.04770147,0.18724035,-0.7085279,-0.4527257,0.1303877,0.21228467,0.5728219,-0.22927721,0.119119644,-0.29618055,-0.3239837,-0.16048685,0.44032103,0.0060154106,0.3574031,-0.41918027,-0.29563814,0.06482151,0.011371186,-0.47005197,0.16797918,-0.5362284,-0.31466866,0.040636208,-0.55940217,-0.14315757,0.55538327,-0.4372311,0.009062813,-0.20849106,0.17141159,-0.13017263,0.23568353,0.025690857,0.37718627,0.2810777,-0.1387174,0.100131854,-0.3805443,0.4934542,0.03173925,0.45823926,0.17802033,-0.02018824,0.023615006,0.4465788,0.5649376,-0.040719252,1.1656339,0.21540612,-0.2389057,0.41466972,-0.28334117,-0.39881423,-0.6570384,-0.23463117,0.041290063,-0.3419955,-0.60521466,0.055497248,-0.29135954,-0.8428564,0.6414114,0.071208626,0.55788225,-0.11173929,0.42592505,0.2939307,-0.21851029,0.030385444,-0.0055425605,-0.24718674,-0.48064226,-0.33011,-0.70456725,-0.44441417,0.20471637,0.5630648,-0.3433398,-0.07428042,-0.006243339,-0.49429247,0.038173717,0.08943197,0.1293465,0.25856054,0.45636266,0.16470711,-0.55258983,0.25704518,0.056051478,-0.069810584,-0.24430649,0.11054848,0.67046773,-0.7245754,0.7779116,0.40389407,0.10020665,-0.28952998,-0.61815125,-0.100335725,0.13855383,-0.08672873,0.6053075,0.357155,-0.9774882,0.59261805,0.17734043,-0.600176,-0.8203742,0.36340302,-0.12420066,-0.19381367,-0.40637764,0.5014944,0.23919685,-0.14301592,-0.08572573,0.2880194,-0.28388068,0.20320271,0.22043195,-0.20561783,0.2528468,-0.067133546,-0.461046,-0.81381893,0.15568802,-0.60872835,-0.3987924,0.45555958,-0.15420093,-0.11830197,0.29358652,0.28295395,0.47007376,-0.27978924,0.213655,0.06343598,-0.33295888,0.49881807,0.47661906,0.6450446,-0.36183086,0.43249512,0.119033694,-0.2708383,0.37625968,0.06442373,0.31671807,-0.048041306,0.41579157,0.004768454,-0.0637486,0.26994407,0.5471256,0.26983806,0.5732392,0.15853783,-0.22218052,0.4239699,0.03707945,0.12135513,-0.006905657,-0.62504643,-0.036732003,0.05251703,0.17111206,0.53451794,0.16532382,0.48312905,0.088496596,-0.07195163,0.040448543,0.22507904,-0.099987745,-1.2385886,0.26227006,0.1819124,0.9309062,0.45750782,0.2441513,-0.35117382,0.63300145,-0.30253294,-0.06235826,0.59499043,0.08908924,-0.45401222,0.69585156,-0.3357668,0.41395995,-0.18253404,0.036846347,0.21479514,0.03573198,0.5742533,0.97454,-0.16857164,-0.13078938,0.007607206,-0.24204066,0.06391505,-0.27543885,0.21323031,-0.24026391,-0.45916632,0.7610532,0.29779556,0.38961175,-0.11862709,-0.0998062,0.073990114,-0.26002368,0.2675337,-0.01295484,-0.115716785,0.047478233,-0.5378375,-0.18614417,0.641646,0.031249633,-0.003037086,-0.19796321,-0.20289442,0.14835241,-0.14647582,-0.052820545,0.099617116,-0.771464,0.05794231,-0.024773864,-0.7646285,0.38502842,-0.33248833,-0.09126023,0.15862545,0.0008439559,-0.355734,0.38256243,0.2670707,0.6652612,-0.01427473,-0.11826341,-0.24535717,0.04158066,0.1224619,-0.21420535,0.27821633,-0.42270067,0.13821347,-0.6901398,0.52787197,-0.3233751,-0.37032458,-0.2166105,-0.2599601,-0.19295979,0.62810814,-0.03009245,-0.16476451,-0.13375896,-0.20744535,-0.43257105,-0.29532406,-0.14848348,0.120520115,0.105650894,-0.24337055,-0.20638339,-0.3439002,0.009344073,0.3747327,-0.043020424,0.5000791,0.2248385,0.036897663,-0.22082236,0.06042334,0.17868105,0.36808622,0.051479775,0.15748368,-0.28854963,-0.29062697,-0.29118636,0.39189434,-0.10436478,0.11173015,0.22044183,-0.33205664,0.96760327,0.007003844,1.3972753,0.043463048,-0.5719069,0.07272632,0.76890814,-0.193645,0.093164556,-0.5009681,1.2037255,0.58542186,-0.1807677,-0.020485777,-0.65538305,-0.13025095,0.19055837,-0.5418583,-0.0983805,-0.086078726,-0.39168912,-0.12228605,0.17029902,0.24690022,0.13038865,0.007169132,0.063834734,0.13861229,0.27114004,0.4036682,-0.7125631,-0.23526922,0.35124603,0.2435925,-0.07541858,0.286326,-0.33483377,0.3845641,-0.89752746,0.31584284,-0.3718371,0.11953403,-0.37088424,-0.5633789,0.15381771,0.012554948,0.44903836,-0.40684754,-0.43123457,-0.10478987,0.379448,-0.0023568845,0.18616344,0.5731112,-0.25433052,-0.0055324617,0.06555089,0.67655176,1.1965454,-0.2634418,-0.1865294,0.23707458,-0.5478686,-0.8534054,0.21003205,-0.6183549,0.056646015,-0.060950108,-0.49329382,-0.5198186,0.23097447,0.19968535,-0.021531196,0.04811058,-0.6754529,-0.20086424,0.2562223,-0.2768187,-0.23480788,0.11201341,0.29795104,0.84547174,-0.2118118,-0.47941065,-0.15428708,0.26003996,-0.3566503,-0.56236804,0.003434007,-0.21227218,0.33403513,0.034564774,-0.29768306,-0.06907069,0.15643509,-0.557124,0.07490555,0.3091574,-0.3076642,-0.009584959,-0.16104811,0.06252319,0.73604405,-0.07523349,-0.052826066,-0.5246261,-0.5922931,-0.9562479,-0.67961746,-0.08788896,0.021518432,-0.049483374,-0.47608328,0.037838485,-0.4195316,-0.15805116,0.12002477,-0.7707439,0.44829077,0.06986611,0.57938915,-0.36052,-1.1579083,0.19505802,0.27336645,-0.014490063,-0.7946826,0.53165305,-0.24795693,0.9084176,0.16845027,-0.17596194,0.11490398,-0.62525237,0.14666373,-0.4780793,-0.109710105,-0.7395535,0.22552459 +600,0.3321963,-0.15222836,-0.39556476,-0.13505332,0.106330514,0.12167844,-0.06733379,0.65330106,0.1263629,-0.33364287,-0.006542951,-0.10255843,0.10209859,0.43208537,-0.24033268,-0.50085706,-0.0010432353,0.11371102,-0.31282553,0.631308,-0.31750005,0.01137608,-0.090946,0.44286665,-0.024022901,0.29352036,0.0350966,0.018070241,-0.3331759,-0.03045786,-0.120087355,0.4470916,-0.48267433,0.17088534,-0.06011073,-0.1095046,0.03546748,-0.3131913,-0.3698415,-0.6909326,0.25952956,-0.751303,0.4060854,0.036004778,-0.30989888,0.4915497,0.21536517,0.15784778,-0.32974297,-0.30187312,0.036262255,-0.2232088,-0.026446382,-0.38065124,-0.09399817,-0.49941912,-0.5557366,0.06597706,-0.38988018,-0.15196186,-0.22638579,0.08995227,-0.22842632,-0.031398278,-0.1251461,0.6367236,-0.41736576,-0.0021279156,0.2039485,-0.20197271,0.25913838,-0.6174198,-0.24233986,-0.016254196,-0.0028478552,-0.011067472,-0.19718541,0.3213925,0.29560697,0.38339487,-0.2005787,-0.13175501,-0.37200418,-0.029610166,0.14255951,0.40555215,-0.37509164,-0.79367024,-0.015648967,-0.03741872,0.0030042443,0.042549808,0.2275375,-0.108944915,0.04027472,0.18233341,-0.35124624,0.4491018,0.5862105,-0.46937302,-0.13651349,0.15798967,0.45478725,-0.004385469,-0.24740988,-0.31751874,-0.014668864,-0.47583485,-0.07249942,0.021701485,-0.48957467,0.5841517,-0.103031754,0.006117945,0.49403277,-0.15244393,-0.16266143,0.08396741,0.23819888,0.11976486,-0.44169894,-0.17220838,0.2292432,-0.23605354,0.0052370825,-0.20307398,0.70467615,0.1520561,-0.5422929,0.3410759,-0.347069,0.099465705,0.009948921,0.36065552,0.48453274,0.55369604,0.29088184,0.69582015,-0.40761152,-0.032644957,-0.05651617,-0.23632114,0.15749411,-0.19068043,0.012203932,-0.4711837,0.18853498,-0.053883642,-0.17046571,0.1493683,0.1414966,-0.4966104,-0.13850252,0.28683898,0.91729707,-0.2777454,-0.14480118,0.580515,1.10927,0.74519706,0.013590548,0.9312405,0.23925626,-0.15029146,0.38062218,-0.2076115,-0.6824236,0.2681494,0.35084596,-0.28933537,0.24471009,0.036915433,-0.08630774,0.49236956,-0.34767297,-0.03789642,-0.12917113,0.36835328,0.306526,-0.008197705,-0.49865803,-0.1824147,-0.13144825,-0.11992681,0.24989724,0.15272033,-0.18979758,0.3836554,-0.009958953,1.3510442,0.08442076,0.006623482,0.044884022,0.47824708,0.29168996,0.041107375,-0.004047712,0.50076365,0.17986786,0.14986181,-0.49214745,0.19741626,-0.20133899,-0.61134917,-0.06609095,-0.35164902,0.08858033,0.051058054,-0.47240117,-0.17715324,0.031175025,-0.11015543,0.33534387,-2.8106925,-0.046686824,-0.13881224,0.45381236,-0.3116981,-0.322679,-0.06113008,-0.40817067,0.34206614,0.32320413,0.5066394,-0.57280535,0.21260597,0.18757443,-0.5026954,-0.04459158,-0.510494,-0.15942316,-0.1747539,0.48346078,0.13596213,0.015986234,0.1885569,0.0783355,0.64018935,-0.13687958,0.17830104,0.2606357,0.27180114,-0.11660548,0.4165345,-0.15221836,0.58938295,-0.33200327,-0.1508033,0.23538353,-0.52450675,0.18454204,0.11187339,0.19208546,0.41973063,-0.2823998,-1.0356089,-0.56058073,0.13069613,1.3006972,-0.27493343,-0.58284515,0.18298252,-0.40099216,-0.25545767,-0.07516926,0.39062735,-0.088791795,0.022634313,-0.8185896,0.143673,-0.09159743,0.19101058,0.03484676,-0.020507539,-0.3162626,0.6618566,-0.12677439,0.44894123,0.33246434,0.075507425,-0.38816556,-0.3775957,-0.16289097,0.93900365,0.2719809,0.10793524,-0.06475892,-0.24248855,-0.18526131,-0.09630827,0.12504208,0.5627497,0.41616902,0.009807713,-0.0017071068,0.19926806,-0.08588349,-0.017487438,-0.097405374,-0.47710562,-0.1576183,0.008306503,0.6162775,0.69095165,-0.32066637,0.3141302,-0.23802312,0.34964725,-0.13444792,-0.46926108,0.49766722,0.9987922,-0.16944052,-0.3724672,0.7264189,0.6131647,-0.4453912,0.34729186,-0.5631097,-0.35342136,0.5181332,-0.20353003,-0.31613985,0.2042616,-0.27876577,0.07695343,-0.72437096,0.25880256,-0.37749398,-0.3527756,-0.554026,-0.11872086,-3.6257517,0.22415347,-0.29705665,-0.25053814,-0.2739013,0.04836579,0.102378815,-0.5862033,-0.37657547,0.24435662,0.13871454,0.4207205,-0.010417104,0.13046475,-0.2400857,-0.20586263,0.045829486,0.22324008,0.14106672,0.23972909,-0.10505318,-0.5421065,-0.15002684,-0.13211466,-0.47304752,0.2607359,-0.7781642,-0.48113123,-0.13977589,-0.63102907,-0.32505855,0.6047817,-0.41331577,-0.063975014,-0.17887026,0.14657886,-0.18336399,0.1686977,-0.07583674,0.27493268,-0.021306926,-0.05583558,0.23651321,-0.31474555,0.2520062,0.11818317,0.46444955,0.32678422,-0.018020004,-0.0058492622,0.5747587,0.63680995,0.08843661,0.8518779,0.59674716,-0.014713119,0.35872182,-0.21860236,-0.20112745,-0.503779,-0.35319805,-0.06238957,-0.37673786,-0.22160245,-0.015859762,-0.34691286,-0.67994094,0.57865316,-0.08354908,0.074425176,0.020655636,0.35586727,0.6357397,-0.31981948,0.049779523,-0.15297301,-0.18180095,-0.56561023,-0.3046724,-0.53072816,-0.35794553,0.10656792,0.7541607,-0.049606916,-0.017730681,-0.15481709,-0.24576366,-0.0061053634,0.09773617,0.023988986,0.18960293,0.4848237,-0.07524604,-0.66280675,0.43875346,-0.1654536,-0.24725436,-0.46236134,0.3071269,0.47439983,-0.58980685,0.8754556,0.4732387,0.008451874,-0.13864714,-0.4147296,-0.2677831,-0.010206307,-0.1383032,0.3513756,0.25729918,-0.92804223,0.34313604,0.28494287,-0.4544498,-0.63070655,0.42068323,-0.15867944,-0.31743166,-0.23515594,0.39038,0.040364124,-0.027632883,-0.14363128,0.104574084,-0.46988487,0.19117634,0.18838654,0.01815784,0.5040943,-0.1327852,0.05809726,-0.8331706,-0.051405746,-0.49618936,-0.26830545,0.4087403,0.13574244,-0.028703703,-0.057556406,-0.07963292,0.35140622,-0.3419023,0.10800075,-0.052544426,-0.31337783,0.40860328,0.40565333,0.5143478,-0.4090352,0.52845377,-0.028285764,-0.029391253,0.02590406,0.053329956,0.43406317,0.24210574,0.37834427,0.11751745,-0.065843865,0.3449514,0.6918356,0.12573804,0.6073352,0.090744376,-0.14319569,0.30647466,-0.027076446,0.053731397,0.06102854,-0.47925934,0.10528169,-0.108664654,0.1574005,0.5284908,0.04947916,0.4534441,-0.11583535,-0.27196681,-0.05579142,0.30005208,0.09898924,-1.2275192,0.26660302,0.07547362,0.8367576,0.30845323,0.08754367,0.00017052889,0.7618194,-0.1427209,0.085965425,0.3833842,-0.07515937,-0.46734643,0.59751874,-0.6455344,0.34884346,-0.19170642,0.005236762,0.03711081,0.1202265,0.2962282,0.81159097,-0.14709978,-0.06441563,0.1480007,-0.42068765,0.186502,-0.362883,0.120808445,-0.3828152,-0.37096593,0.4456884,0.61021054,0.39924765,-0.2392451,-0.027204439,0.19482438,-0.041006263,0.1996109,-0.00074345124,0.15593117,0.07713734,-0.85803956,-0.18668057,0.49890053,0.24896522,0.23304193,0.018955627,-0.21476488,0.41107377,-0.16096579,-0.22812836,0.00022497028,-0.4798118,0.10220083,-0.20832002,-0.54350984,0.48872194,-0.2465329,0.19788007,0.1150741,-0.04478268,-0.44168213,0.25315854,0.07459195,0.76423913,-0.06380577,-0.17078651,-0.56777686,0.042225916,0.074614696,-0.0853555,0.24552667,-0.42287782,-0.10302482,-0.30746374,0.3789934,-0.12684815,-0.21376158,-0.20282978,-0.11586419,0.091614,0.57961905,-0.21350093,-0.2232594,-0.28124988,-0.14634925,-0.22842942,-0.45631066,-0.033233497,0.2755981,0.09323895,0.09243444,-0.041960374,-0.12251884,-0.06313978,0.49726304,0.04746894,0.31530514,0.36780426,0.2606158,-0.19484459,-0.07530984,0.28581515,0.49219394,-0.07599031,-0.23191254,-0.26627383,-0.4777008,-0.3402206,-0.09211493,-0.14637429,0.40312386,0.19112796,-0.26011774,0.7745251,-0.24659838,1.1860107,0.023195246,-0.3857073,0.014779049,0.41108355,0.06937584,0.13926657,-0.32784125,0.7475836,0.50106347,0.012797254,0.0045697764,-0.4527807,0.0040864446,0.109407574,-0.17595439,-0.14468378,-0.041917723,-0.62613004,-0.36025926,0.25226894,0.27597204,0.39561927,-0.06125921,0.19130866,0.12619123,0.07920147,0.26573196,-0.35774747,-0.032887027,0.26934198,0.32328862,-0.039052963,0.02937504,-0.36932346,0.34190583,-0.3771095,0.06479915,-0.40562153,-0.033953357,-0.18076442,-0.29803154,0.16684236,-0.14322942,0.3788067,-0.35702923,-0.2022353,-0.12481183,0.54686207,0.17769547,-0.00028371313,0.48851624,-0.13362761,-0.07001098,0.20287709,0.5803124,0.9354065,-0.47037402,0.046417844,0.16986103,-0.35764527,-0.81552035,0.41523778,0.012325431,0.33459413,-0.0749089,-0.15264775,-0.7113715,0.18183704,0.1843077,-0.032060165,-0.11368982,-0.43056592,-0.20364387,0.30707958,-0.45803335,-0.121748604,-0.08812157,0.18770538,0.4782656,-0.2788209,-0.40301585,0.08735559,0.23571365,-0.116115354,-0.36280265,-0.10490253,-0.54777414,0.30700818,0.13379991,-0.34002265,-0.117727935,0.081162885,-0.44269863,0.18231916,0.06292445,-0.3352919,0.017291792,-0.22680211,-0.055909056,0.8121896,-0.15845172,0.29260793,-0.5983382,-0.53080577,-0.9242275,-0.3579093,0.46789145,-0.102323644,-0.046326384,-0.6502714,-0.006601624,-0.036887947,-0.22984,-0.17078441,-0.4496641,0.40526748,0.098118104,0.36927268,-0.035659045,-0.5024551,0.1809128,0.19212162,0.14508815,-0.58160806,0.3298858,-0.05650264,0.9818254,-0.115924954,0.19913864,0.36045098,-0.35525224,-0.25849602,-0.20792985,-0.2984034,-0.46522948,0.08188709 +601,0.67489713,-0.31701237,-0.670028,-0.1011074,-0.28572497,0.0068246573,-0.18065661,0.42666864,0.3952455,-0.24484769,-0.08567484,-0.14912444,-0.029835861,0.13474181,-0.10850787,-0.31004727,0.0796874,0.11016606,-0.656757,0.5689234,-0.5235207,0.20967916,-0.0430562,0.49211287,0.38541102,0.3253953,0.020939944,0.13628477,-0.120033175,-0.16261572,0.206875,0.28915912,-0.60075116,0.15213828,-0.32260808,-0.2831203,-0.06752011,-0.45657778,-0.5181693,-0.8411739,0.40832585,-0.715244,0.43143463,0.0023809671,-0.25385734,-0.0021976605,0.085805036,0.13523723,-0.30008233,-0.096265525,0.17454812,-0.061415665,0.023260929,-0.22158472,-0.14654183,-0.28852475,-0.54226696,-0.071479656,-0.51078033,-0.06494522,-0.39827916,0.15217102,-0.34097457,-0.11095437,-0.1158705,0.6327008,-0.43913418,0.28856522,0.029973209,-0.13482857,0.13189173,-0.68752885,-0.41812265,-0.17853574,0.10850202,0.09364277,-0.38949656,0.35716403,0.19508216,0.30138662,0.004329808,-0.07568532,-0.327111,-0.15185955,0.15418701,0.31048328,-0.06672592,-0.5841541,-0.12967226,-0.21797936,0.34729555,0.26392075,0.28109816,-0.38493058,0.050606586,0.091993704,-0.14465888,0.5306364,0.6479891,-0.21854764,-0.11843432,0.10002342,0.31560242,0.34968415,-0.23841172,0.032628357,-0.05789084,-0.62373495,-0.18578684,0.040049996,-0.11269902,0.6160033,-0.09357995,0.30736157,0.5919688,-0.28046933,-0.23055807,0.19708002,0.094498426,-0.042682715,-0.41967195,-0.30313662,0.17718157,-0.5338277,0.09138855,-0.16017553,0.66710246,0.2278341,-0.6075138,0.3097173,-0.4355352,0.15352304,0.018568857,0.5637045,0.826911,0.42339453,0.44735062,0.76615375,-0.16828565,0.023218356,-0.1669121,-0.25330424,0.05127924,-0.20085056,0.06961328,-0.3540355,-0.12761527,-0.1000887,-0.037392303,0.21635142,0.66753244,-0.47722885,-0.30362052,0.111170344,0.70563745,-0.2587421,0.10558601,0.77681625,1.0899692,1.0434084,0.1329631,1.1354189,0.07348268,-0.100563355,0.15507603,-0.1515608,-0.7249212,0.32569677,0.16327326,0.111394964,0.09738337,-0.14809285,-0.07711977,0.23829073,-0.49035558,-0.023985133,-0.025938753,0.5383507,0.14823535,-0.018611655,-0.23568249,-0.39844203,-0.036274612,0.08294684,0.039852016,0.28360313,-0.29468873,0.3681615,0.10423911,1.458862,-0.046736337,-0.045389183,0.060049754,0.730526,0.32091692,-0.2194374,-0.04734026,0.4284721,0.2045798,0.039271936,-0.5343894,0.09816407,-0.32832897,-0.4248091,-0.05422502,-0.46188802,-0.21478888,-0.09600389,-0.3769856,-0.2379829,-0.095362194,-0.2932934,0.47780263,-2.7834575,-0.2693731,0.0021699667,0.36233872,-0.15719451,-0.32770005,-0.30816543,-0.5036654,0.4430805,0.09848455,0.49552512,-0.6836107,0.13685277,0.5558264,-0.5548308,-0.11309979,-0.55102277,-0.09558955,0.018843014,0.3370451,-0.09126503,-0.0059390515,-0.08910808,0.14577031,0.48541188,0.092117764,0.2902735,0.37709934,0.31297934,-0.13786456,0.55158514,-0.11037277,0.32708308,-0.3778994,-0.27509767,0.31954914,-0.4482752,0.27155143,-0.28127348,0.09057167,0.6691193,-0.6202365,-0.80457985,-0.4534378,0.13586095,1.0418534,-0.16381629,-0.5662066,0.32638842,-0.7303166,-0.15866135,-0.17047375,0.5816611,-0.13754109,-0.013030833,-0.6976031,-0.04774876,-0.06441443,0.10704045,-0.013958301,0.029756397,-0.2910056,0.57631147,0.017519219,0.5056823,0.2719044,0.067899466,-0.6091609,-0.5086133,0.24073462,0.742317,0.41264945,0.07957034,-0.18889731,-0.1071472,-0.32600686,-0.14182118,0.10717295,0.7619516,0.6742064,-0.19098347,0.22028258,0.32602715,-0.016134135,0.0021002162,-0.19398327,-0.17658049,-0.26513353,0.03657744,0.58587205,0.78569674,-0.13340798,0.36595532,0.14022326,0.2364879,-0.14789161,-0.51881063,0.44968805,1.0505064,-0.21158957,-0.32877845,0.41998267,0.37574935,-0.362585,0.4514489,-0.4973673,-0.46525627,0.4554495,-0.089493155,-0.34091583,0.3250894,-0.395351,0.019671362,-0.57287085,0.33981895,-0.4416749,-0.38829315,-0.44990793,-0.23419537,-2.5288367,0.15590528,-0.19714081,-0.06820285,-0.26834872,-0.37429327,0.07124546,-0.45316684,-0.6761044,0.17194219,0.11310765,0.7958165,-0.19696023,-0.13324043,-0.16982722,-0.4959253,-0.44476905,0.16119394,0.21771815,0.5516115,-0.08423639,-0.4153694,-0.083259135,0.027425736,-0.40021026,0.042668145,-0.45474857,-0.4917277,-0.11165902,-0.5353066,-0.5184027,0.6272743,-0.114709824,0.01813128,-0.13788255,-0.056855477,0.069797635,0.23247465,0.17150977,0.21067701,0.027325869,-0.054341055,0.052846,-0.18135318,0.022781488,-0.073556624,0.2158218,0.34340614,-0.08208561,0.17318973,0.31073666,0.73359513,-0.23817556,1.0083066,0.2182932,-0.080909014,0.35958558,-0.1493205,-0.47682458,-0.5338067,-0.20835969,0.03918712,-0.52116835,-0.29219723,-0.07335084,-0.3623628,-0.6642703,0.5787013,0.078273065,0.19748424,-0.006144684,0.29045156,0.52537614,-0.092163764,0.04062061,-0.083160624,-0.17140344,-0.6120655,-0.28536218,-0.74674773,-0.49093702,0.16935347,0.8378964,-0.3575319,-0.100666985,0.33786228,-0.30188593,0.039232574,0.2330385,-0.088920005,0.07688122,0.5305192,-0.10223319,-0.4390531,0.39447612,-0.1269629,-0.094521925,-0.56825066,0.42014194,0.6034893,-0.62115324,0.7213624,0.2857719,0.07544617,-0.45306614,-0.5741509,-0.13595295,-0.09647888,-0.123264164,0.5494838,0.3075414,-0.8397675,0.43580368,0.30684876,-0.14189288,-0.7328421,0.57252365,-0.115567766,-0.34463358,-0.19777827,0.48584712,0.16050817,0.06760029,-0.23048995,0.34088498,-0.42426834,0.34141237,0.22965397,-0.23828883,0.30422056,-0.24798043,-0.33214796,-0.6907197,-0.06077555,-0.48120037,-0.35173136,0.3509035,0.011192182,0.09684887,0.16650122,0.1710119,0.36501065,-0.22308064,0.06483001,-0.19122875,-0.195256,0.36146963,0.529968,0.6193569,-0.35898674,0.6027763,0.08998333,-0.19208536,0.21159342,0.17925772,0.16695884,0.025022447,0.41486788,0.06803739,-0.2589759,0.1631305,0.8290684,0.21356404,0.36167458,-0.011676408,-0.027704164,0.18455686,0.084702596,0.38369042,-0.036510095,-0.5624577,-0.0068713725,-0.3410745,0.24316815,0.41566992,0.23046553,0.22960497,-0.04988417,-0.23425376,-0.06585343,0.34517854,-0.10248751,-1.4778116,0.31408602,0.16204712,0.88030267,0.5304576,-0.011031121,-0.18489552,0.5923028,-0.01021209,0.054037184,0.31126156,0.18659747,-0.4013772,0.48769346,-0.5570013,0.6059987,-0.00079390034,0.04388742,0.069871806,0.056861386,0.6060602,0.7265108,-0.12954807,-0.076777585,0.12106238,-0.26234984,0.32381773,-0.36993933,-0.024460532,-0.60473496,-0.37307167,0.6900941,0.5295282,0.2881317,-0.19529134,0.016157746,-0.044924285,-0.25678423,0.18073452,0.0054724887,0.071433574,-0.20008753,-0.6643487,-0.05541232,0.42928332,0.0064458884,0.08884332,0.13586354,-0.08510086,0.19020551,-0.053403817,0.15893482,-0.1072474,-0.64039296,-0.08552787,-0.38363403,-0.36463994,0.47067043,-0.11641677,0.2153962,0.31969258,0.061946005,-0.23480122,0.41373056,0.029148698,0.6135228,-0.26239187,-0.05886744,-0.3775874,0.16740689,0.20731896,-0.22124657,-0.034047037,-0.18489975,0.088061504,-0.59846586,0.5206385,0.08584694,-0.14997739,0.021304578,-0.044751152,-0.029887617,0.61138844,-0.17199977,-0.2183314,-0.049556606,-0.1351532,-0.30880302,-0.2041283,-0.015370913,0.21959098,0.24457502,0.036574148,-0.1915709,-0.081064254,0.17590396,0.35761094,0.034022212,0.32353008,0.29791188,0.25317192,-0.3644807,-0.11077489,0.24450576,0.6927277,0.034618475,-0.056339957,-0.35791188,-0.5356666,-0.54268944,0.28358847,-0.11120363,0.3312147,0.15118936,-0.15939663,0.7248873,-0.107658386,1.0539589,0.122167885,-0.32605433,0.17190804,0.6356527,-0.10221362,-0.084693074,-0.16171332,0.7867978,0.42908984,-0.2317452,-0.12667005,-0.29635423,0.20051181,0.15140039,-0.24275742,-0.12163929,-0.119822115,-0.63126814,-0.08415134,0.048812643,0.29146582,0.13302463,-0.3028333,0.006607432,0.35742182,0.029584197,0.22272998,-0.49734372,-0.16226003,0.3244892,0.25470552,-0.05273404,0.13574259,-0.39082038,0.33521113,-0.47927773,0.12687086,-0.29902938,0.28884917,-0.14921927,-0.40429875,0.23483168,0.03386309,0.36359364,-0.4729864,-0.3134588,-0.3360112,0.29410398,0.18258461,0.2008607,0.53563195,-0.22366214,-0.09134484,0.039295517,0.5183425,1.117518,-0.15386304,-0.15806523,0.3472231,-0.43994898,-0.6405642,0.2682175,-0.5115494,0.17769386,0.15996368,-0.10022989,-0.589303,0.2685679,0.14273298,0.11589203,0.025449622,-0.9010446,-0.14348868,0.25226653,-0.26859692,-0.05475332,-0.43817395,-0.066472344,0.59899974,-0.24711184,-0.24203667,0.010677692,0.16554059,-0.19766352,-0.6269739,0.009395867,-0.38833183,0.35316187,-0.006345935,-0.21646714,-0.19290237,0.10063663,-0.59812415,0.1541992,0.015683427,-0.27767575,0.08778831,-0.359953,-0.010875685,0.95561385,-0.38908327,0.26222134,-0.057316467,-0.51840675,-0.72473204,-0.018288381,0.22247446,0.021134699,0.04263778,-0.67195815,-0.11764705,-0.17535087,-0.052023515,-0.09483874,-0.3642155,0.49994045,-0.020542664,0.37935683,-0.15975448,-0.8484945,0.30022764,0.1096984,-0.23597428,-0.40701967,0.5536219,-0.126934,0.5646198,0.14667909,-0.05035177,0.25925136,-0.5495796,-0.019143302,-0.22720851,0.009718187,-0.6248659,0.13769878 +602,0.29488343,-0.0839818,-0.37943363,-0.0503967,-0.31755733,0.13379732,-0.17399146,0.23044126,0.059045833,-0.15114151,-0.24072352,-0.08657117,0.034130774,0.4447789,-0.11829192,-0.64918154,-0.09033705,0.051401954,-0.7904042,0.36422715,-0.6491703,0.43107647,0.2066147,0.25611737,0.1830809,0.43251944,0.35326093,-0.1918229,-0.21735807,-0.13684694,-0.23272687,0.10744957,-0.48201382,0.013324722,-0.16611412,-0.27492344,0.14652859,-0.549133,-0.19038206,-0.5491845,0.21936385,-0.7112754,0.52227855,-0.045102775,-0.04242364,0.08394243,0.28712603,0.38909766,-0.3673788,0.053332545,0.23621836,-0.22940935,-0.19339012,-0.18207884,-0.11546338,-0.27715233,-0.5408062,-0.024474198,-0.65783244,-0.40854582,-0.17915486,0.096352115,-0.3165618,0.09299024,-0.03309761,0.22134545,-0.38061315,-0.09006845,0.30987003,-0.19929151,0.043349646,-0.5375431,0.061516885,-0.04252638,0.5305898,-0.13057083,-0.018116355,0.52533036,0.40545043,0.3809683,0.21462926,-0.2473451,-0.20841618,-0.20175555,0.14800106,0.6331329,-0.07460156,-0.2650581,-0.13885693,0.20969139,0.25970837,0.41939119,0.02158513,-0.10248574,-0.09796073,-0.046183977,-0.26007923,0.48630148,0.48257127,-0.37185898,-0.38505256,0.37111428,0.5359856,0.24788567,-0.12168854,-0.06038696,0.032755386,-0.584709,-0.1543571,0.19250251,-0.07995381,0.41265315,-0.117943965,0.2801634,0.89760745,-0.14843982,0.13847505,-0.17768496,-0.048774634,-0.1770367,-0.15968564,-0.12718067,0.060690038,-0.630038,-0.041457653,-0.2293515,0.8106357,0.13739389,-0.62388635,0.39784306,-0.60339355,0.16499226,-0.13254008,0.547004,0.6506879,0.34734294,0.2850993,0.8314856,-0.33837596,0.21265084,-0.12323252,-0.4766217,0.071552604,-0.25784692,0.1654924,-0.53935945,0.09886362,-0.043950733,0.09372368,0.116472,0.38160005,-0.56869614,0.0059956987,0.15824296,0.8441749,-0.37442163,-0.05339745,0.7378532,1.0545496,1.0295368,-0.032219633,1.129912,0.26944277,-0.29095644,0.119752556,-0.4138867,-0.52306217,0.13722774,0.47751603,0.01948676,0.2583407,-0.091425516,-0.10661518,0.2849137,-0.40579832,0.05636598,0.025644522,0.14910768,0.1681708,0.00643275,-0.41240093,-0.27209988,-0.12688926,-0.12920764,0.14537162,0.29144388,-0.24499099,0.42441592,-0.121830896,1.3247473,0.03550807,0.11426064,-0.042970065,0.5858477,0.23319595,-0.03468395,-0.1648058,0.31657973,0.3934965,-0.051925343,-0.60908395,0.097290434,-0.37843937,-0.3640073,-0.15183122,-0.4710817,-0.123243175,0.24038042,-0.30107602,-0.14872108,-0.05387088,-0.17934538,0.52113944,-2.9893079,-0.25491494,-0.14640836,0.3080548,-0.3017774,-0.1632038,-0.075310625,-0.59895664,0.33756363,0.22563334,0.53153014,-0.57441217,0.4083281,0.3386118,-0.54031295,-0.24478467,-0.61122406,-0.09412306,-0.025918337,0.33935544,-0.04477132,-0.12701221,-0.16015564,0.086890906,0.6437277,0.044480268,0.08797784,0.4631637,0.38845837,0.21292546,0.5634989,0.06498785,0.6271592,-0.34452474,-0.14636989,0.17508216,-0.1920649,0.23579264,-0.2527354,0.089667894,0.42948645,-0.50496423,-0.8071393,-0.53527325,-0.2487132,1.0079005,-0.33955115,-0.2761738,0.2046945,-0.024015069,-0.06757452,-0.0034634033,0.52913225,-0.07797205,-0.12506856,-0.5174111,0.072766274,0.009907433,0.022760129,0.040173132,-0.050010018,-0.3079299,0.66361046,-0.032952357,0.5110683,0.1363618,0.2999819,-0.043632977,-0.25139728,0.095389225,0.80411875,0.34680375,0.008866966,-0.05600367,-0.3001121,-0.19755459,-0.3813019,0.11083407,0.4281386,0.7873367,0.041988928,0.123625085,0.3486801,-0.1529009,0.12041439,-0.030783387,-0.16394752,-0.055803917,-0.12661497,0.45682037,0.566595,-0.07620622,0.55635315,-0.16386493,0.2787081,-0.082560584,-0.5551096,0.62364274,0.5068953,-0.10627951,-0.016264567,0.44743994,0.4352358,-0.3068752,0.389414,-0.5151509,-0.3127981,0.8188913,-0.19413309,-0.35402176,0.16730806,-0.21357228,0.02097311,-0.789428,0.24142446,-0.27129593,-0.4103136,-0.31571046,-0.10387595,-3.6597874,0.1675354,-0.25945616,-0.047650453,-0.1873767,-0.06365936,0.22786897,-0.5972183,-0.41286838,0.11694689,0.20702836,0.7171094,-0.060670424,0.17568977,-0.14676805,-0.18053599,-0.22767141,0.10534657,0.121640645,0.37171414,-0.119597845,-0.367005,0.11558143,-0.13289729,-0.5484579,0.23122635,-0.48442045,-0.49533704,-0.12936531,-0.43521208,-0.30653858,0.7058082,-0.3618434,0.07154314,-0.19713923,0.11378738,-0.17716761,0.14080639,0.22702734,0.13111417,0.15627508,-0.09455838,0.24711587,-0.41259366,0.59322476,0.0211905,0.49041727,0.16305646,0.10837873,0.16473071,0.45688835,0.46186352,-0.053005293,0.86646074,0.37496102,-0.059710924,0.18703605,-0.30585152,-0.15702848,-0.44373456,-0.4635249,-0.0657466,-0.37817448,-0.5463613,-0.04731202,-0.2787107,-0.7244977,0.4958891,0.020454288,0.29336298,-0.12129576,0.29004827,0.3756407,-0.24340127,-0.030127414,-0.07012064,-0.0949661,-0.46557257,-0.086102225,-0.65567327,-0.5384731,0.078770466,0.9138721,-0.33172086,-0.0032513738,-0.19309014,-0.2994355,0.05000124,-0.03701224,0.085212216,0.31574965,0.334125,-0.16464584,-0.7018989,0.5192978,-0.20124926,-0.12759487,-0.59496796,0.13060075,0.6528405,-0.66629183,0.39681756,0.40341467,0.13031253,0.043082602,-0.40458933,-0.10351409,-0.0025041462,-0.24837317,0.23602626,-0.03814588,-0.7794787,0.5479357,0.17808685,-0.5704862,-0.7721046,0.30398598,0.038690805,-0.15897103,0.11392535,0.13095716,0.320468,-0.1498514,-0.25449857,0.14956303,-0.49612704,0.40436876,0.12993297,0.02190001,0.48059738,-0.23017076,-0.46427324,-0.5327782,-0.022112114,-0.44197935,-0.1819335,0.32041207,0.06171785,0.13606542,0.22314903,0.1457787,0.36286172,-0.3038524,0.101931326,0.07105077,-0.3934039,0.21567944,0.35357,0.30734903,-0.4384478,0.573114,0.047362883,-0.100995556,0.15219595,0.04064354,0.3672029,0.12208394,0.27281368,-0.05496413,-0.2773216,0.37894562,0.66697973,0.11555941,0.26972967,0.19936053,-0.17913835,0.4127599,-0.053459708,-0.06093549,0.141968,-0.45653707,-0.07200775,-0.018715095,0.12371567,0.50717384,0.32044983,0.30655092,0.09984978,-0.23521715,-5.133152e-05,0.07652119,-0.13429819,-1.0460893,0.45135975,0.20324954,0.76834756,0.30366942,0.05199762,-0.15781261,0.6728846,-0.30456698,0.111179605,0.28774288,0.100790076,-0.45504013,0.69930434,-0.63265485,0.6004194,-0.09570292,-0.13364857,0.038923644,0.06894483,0.27221066,0.8628132,-0.21874084,0.079518594,0.020293497,-0.31489375,0.1019863,-0.33031178,-0.013712795,-0.570067,-0.23639944,0.6189438,0.20945987,0.3092513,0.00496736,-0.088145,0.068776324,-0.19090529,0.23278162,-0.08962553,0.081715256,0.059216063,-0.611544,-0.27191454,0.53731334,0.02172875,0.25076503,-0.15268023,-0.17567042,0.10223239,-0.28463498,-0.0027381857,-0.026147366,-0.60478663,0.09253664,-0.2129206,-0.539684,0.34291902,-0.25186506,0.31453678,0.16014925,-0.047148585,-0.091930404,0.34486714,0.20913826,0.78066176,-0.11326858,-0.36717728,-0.40575734,0.02605455,0.2837312,-0.28546494,0.20962617,-0.29472378,0.004669098,-0.62817967,0.6816519,-0.2624523,-0.3907875,0.13292967,-0.17420143,-0.022239225,0.48254043,-0.14338307,0.038285635,-0.03562665,-0.21731663,-0.37003607,-0.0015901128,-0.35872588,0.11227064,0.39097685,-0.025205966,-0.17047115,-0.2788156,-0.118072085,0.5308839,-0.058713153,0.38002524,0.1057508,0.12558047,-0.21506211,-0.067940675,0.08727001,0.3444685,0.10956735,-0.060384545,-0.53264886,-0.28401974,-0.2344261,0.25900936,-0.1226817,0.20559852,0.035930283,-0.3011579,0.8461488,-0.17611521,1.175496,0.22924945,-0.30909395,0.12551314,0.51129997,-0.05045111,0.10784253,-0.37675682,0.9117538,0.4994023,-0.014896512,-0.1158464,-0.46603182,-0.010002805,0.43176657,-0.40751088,-0.1767949,-0.04114,-0.4564594,-0.5349247,0.2684514,0.11983533,0.22273558,-0.035254605,0.020687493,0.094931886,0.14586487,0.44816166,-0.5788576,-0.27912152,0.24682035,0.21382026,-0.094268255,0.2783343,-0.45381922,0.5209512,-0.7081283,0.15712725,-0.338193,0.095625795,-0.16022852,-0.30514362,0.21272214,0.11788514,0.38668105,-0.13192275,-0.53895867,-0.055864,0.37945536,0.05180305,0.1964014,0.6619046,-0.3276393,-0.10657134,0.015760962,0.56294566,1.3320968,-0.32798836,0.018721374,0.33007586,-0.33871594,-0.587126,0.39842197,-0.3038393,-0.1516392,-0.09720114,-0.34604466,-0.3669419,0.22389951,0.19184358,-0.00013680458,0.09390853,-0.39261538,-0.26541576,0.2084581,-0.28340694,-0.314979,-0.31630066,0.41590947,0.70587784,-0.25991836,-0.23313943,0.11504397,0.45791194,-0.20595632,-0.4334393,0.035115823,-0.19095668,0.25734892,0.08374974,-0.18413812,-0.06153838,0.21762456,-0.3836598,0.04288676,0.08940036,-0.43690532,0.033496227,-0.19423264,-0.05370059,0.8049417,-0.23070015,0.023223173,-0.6893364,-0.43110326,-0.84725267,-0.5087226,0.26534125,0.13706213,0.015024042,-0.4058573,-0.018918466,-0.022970628,-0.16179578,0.10389112,-0.55480444,0.3460224,0.0978614,0.35145804,-0.25868368,-0.73769295,0.079297796,0.04488025,-0.1828567,-0.6274019,0.5134451,-0.030611511,0.8379816,0.09063903,-0.17283204,0.10065718,-0.25024214,0.22567914,-0.424101,-0.23021092,-0.7852128,0.11188378 +603,0.34195268,-0.2947987,-0.48586664,-0.041148815,-0.14109696,-0.10442039,-0.2562921,0.3771586,0.09083266,-0.4778846,-0.09373093,-0.21867876,0.047056124,0.23503846,-0.32381642,-0.8218512,-0.0033171503,0.24851522,-0.55381316,0.6885018,-0.46266288,0.07040899,-0.10905191,0.4413753,0.26405478,0.063154206,0.35566476,-0.19998561,-0.117264144,-0.42558575,-0.09819874,0.40963352,-0.77863026,0.5137623,-0.038374435,-0.3617605,0.13053142,-0.49292564,-0.21564072,-0.92428917,0.19107994,-0.90899736,0.4880586,0.17856152,-0.31828862,0.2890123,0.29500133,0.3134955,-0.35333064,0.087763764,0.24989223,-0.23106895,-0.18054114,-0.35775587,-0.049332906,-0.37221554,-0.49051186,0.059838735,-0.3786526,-0.2918001,-0.36096126,0.36238965,-0.31962574,-0.09397802,-0.05801077,0.6022993,-0.48229378,0.14284922,0.057857513,-0.21807376,0.34479138,-0.7357815,-0.1693737,-0.23455077,0.27113172,-0.2435738,-0.27627704,0.15670377,0.35619807,0.24627422,0.10758469,-0.122508734,-0.15172498,-0.29533455,0.2705713,0.4477735,-0.31476277,-0.8041288,-0.13540526,-0.0983196,0.101439625,0.18344112,0.17925833,-0.6057446,-0.1396538,-0.06644673,-0.30916336,0.5426086,0.4050371,-0.25075415,-0.19366713,0.20611845,0.4877411,0.2025887,-0.098763116,-0.049620498,0.060543787,-0.7025794,-0.17547102,0.29395697,-0.19679219,0.44897336,-0.20361151,0.22816633,0.7956997,-0.3463752,-0.08011531,0.13973597,0.14530541,-0.06998314,-0.51160073,-0.40008324,0.37753898,-0.49605644,0.20436606,-0.25361225,1.1295815,0.033700358,-0.6947861,0.28038523,-0.6939728,0.022278348,-0.24794032,0.52400583,0.3757157,0.4119104,0.28285244,0.63117814,-0.453522,-0.07535105,0.1277838,-0.46431875,-0.1183868,-0.11863067,-0.23102418,-0.43536803,0.056517676,-0.17471696,0.1740993,-0.035369396,0.44657257,-0.45465127,-0.039781414,-0.06786748,0.7593016,-0.39644718,0.005883271,0.7009788,1.1167158,1.0058125,0.26378065,1.4578875,0.0786847,-0.1714862,-0.09718652,0.13282229,-0.8754248,0.36505082,0.60892946,-0.53910583,0.031227736,0.11266158,0.10620988,0.32087106,-0.4230005,0.063430205,-0.3558788,0.42132872,0.023733051,-0.32474893,-0.28646228,-0.302614,0.11055576,-0.011148212,-0.18340403,0.13266426,-0.09200042,0.33751562,0.21371995,1.2313911,-0.1574966,0.09861324,0.103455976,0.33575833,0.25418276,0.07697799,0.110017516,0.39834413,0.44373825,0.13746077,-0.6555881,0.18126571,-0.0678027,-0.45591927,-0.20455457,-0.20594145,-0.031961527,0.11882263,-0.30445123,-0.20740904,-0.22340254,0.023318319,0.58077925,-2.4865224,-0.05349557,-0.19352742,0.31480083,-0.19858931,-0.28831273,-0.011430424,-0.4361398,0.6056455,0.27981722,0.56504005,-0.63826543,0.34945595,0.4736902,-0.55517364,-0.29564303,-0.68307555,-0.2622578,-0.17817162,0.62330395,0.07612117,-0.072509795,-0.08313918,0.03127697,0.5783446,-0.024180325,0.17101549,0.33862665,0.43080768,0.033900872,0.57691616,0.19628538,0.6049605,-0.27555415,-0.28021702,0.39657623,-0.29746583,0.25265923,0.09533532,0.021803632,0.4898877,-0.44358614,-1.0041037,-0.90308344,-0.36007246,1.0223836,-0.26130056,-0.52008694,0.2597717,0.11825559,-0.17475374,0.08926088,0.22426198,-0.106592156,0.1365202,-0.850079,0.09867857,0.058479037,0.2977707,0.17084417,-0.1835079,-0.57617545,0.74584585,-0.04833901,0.43363798,0.5675342,0.16204196,-0.45929363,-0.5332082,-0.074847415,1.2381275,0.38687354,0.15236478,-0.14223541,-0.1680335,-0.29500458,-0.1680616,0.098797075,0.7498712,0.65467405,-0.06426839,0.1223816,0.3409557,-0.13315088,0.08393279,-0.21919008,-0.493106,-0.23706824,0.104197,0.59151644,0.54509926,-0.112125084,0.45869264,-0.013348273,0.43474483,-0.021593923,-0.3924835,0.5749427,1.5008923,-0.12599124,-0.35499552,0.7384583,0.5795794,-0.26513377,0.3823408,-0.44585907,-0.36597157,0.6805172,-0.18499504,-0.49237338,0.1009989,-0.36145985,0.09761446,-0.94501567,0.4961333,-0.6321145,-0.49736518,-0.7087311,-0.21066743,-3.2768297,0.3292436,-0.5085953,-0.13022093,-0.36581343,-0.11222708,0.2604763,-0.6400026,-0.41983184,0.1547434,0.17950493,0.491205,-0.17476149,0.2886674,-0.22908086,-0.012031403,-0.06215867,0.17366561,0.1563318,0.057117984,-0.035797067,-0.39383557,0.09376658,0.119267724,-0.2581675,0.14369994,-0.69721913,-0.56618756,0.05653913,-0.5830032,-0.4163047,0.68217385,-0.6307073,-0.14936961,-0.06422593,0.09386351,-0.2552829,0.35968247,0.114155345,0.25121364,-0.10488909,0.019253438,-0.11251447,-0.31841823,0.38287175,0.0509889,0.21628651,0.07413226,-0.2570882,0.12259882,0.4284261,0.53370357,0.08851201,0.81051195,0.46987346,-0.0877208,0.22173166,-0.31977057,-0.5055275,-0.70137143,-0.41225395,-0.06182164,-0.4172536,-0.37725127,-0.011257941,-0.2800257,-0.7576287,0.6774215,0.138416,-0.035455108,-0.07766697,0.33144796,0.30653262,-0.006518884,-0.1106792,-0.0746476,-0.14207548,-0.5741304,-0.10362626,-0.6719627,-0.41047096,0.019596238,0.8796144,-0.38810122,-0.021146584,0.11166153,-0.3049715,0.048492488,0.2242267,-0.23652361,0.34138444,0.61981946,0.034359727,-0.70491827,0.5383546,0.015927374,-0.24060498,-0.52291465,0.19944693,0.6601286,-0.6631699,0.6386142,0.4831437,-0.02585308,0.05002339,-0.36257744,-0.13731562,-0.009512869,-0.20595446,0.5082995,0.18307662,-0.6897209,0.6078602,0.44397992,-0.21484135,-0.8354339,0.57339925,-0.023955248,-0.33849746,0.083789565,0.50182885,0.13034703,-0.05997403,-0.15487793,0.4382145,-0.38361323,0.34939867,-0.06854194,-0.17991652,0.12054365,-0.1615846,-0.21580702,-0.8318519,0.09014417,-0.5724581,-0.40371168,0.26982677,0.06676652,-0.21476096,0.2682484,-0.073059134,0.3568648,-0.34452918,0.20282143,-0.091260746,-0.26911655,0.39639112,0.5713441,0.36978543,-0.42082623,0.6030722,0.050357398,-0.0083478745,-0.20230232,0.24946551,0.42056894,0.10571547,0.49341413,-0.15235755,-0.020486714,0.4973357,0.70743024,0.17952631,0.68885875,-0.09047565,0.07245522,0.3229636,0.1816544,0.45943537,0.13173513,-0.6185484,0.04981682,0.0005192431,0.16714849,0.6149929,0.13625924,0.37558565,0.007719633,-0.43306157,0.010978439,0.374827,0.24588604,-1.1359614,0.46229994,0.26815173,0.6546989,0.6602421,-0.1744668,0.26272488,0.82672656,-0.10078283,-0.045477737,0.3628732,0.09406969,-0.38896644,0.5798659,-0.6853718,0.23455815,-0.39882565,0.029377175,-0.0923467,-0.058457576,0.2492906,0.68931216,-0.17210838,0.019963438,-0.07069835,-0.411943,0.1629199,-0.5811968,0.09663237,-0.20428146,-0.31641394,0.64667225,0.7129224,0.29145855,-0.27749676,0.03085971,0.30021355,-0.19737712,0.21841884,0.08011806,-0.040689234,0.11793933,-0.9338219,-0.08195728,0.7334041,0.04335371,0.15766735,-0.13133274,-0.20215009,0.57156426,-0.22004405,0.017968893,-0.16751233,-0.6195007,0.1181706,-0.26592222,-0.37140167,0.3832876,-0.30844924,0.1098038,0.25526515,0.051824108,-0.20173043,0.25861147,0.2264068,0.7828762,0.10445388,-0.13805038,-0.46371374,0.0895307,0.107593305,-0.14848495,-0.10283401,-0.34885094,0.03657283,-0.7725907,0.44865322,-0.14769278,-0.2617816,0.0887289,-0.16780023,-0.16739446,0.5368023,-0.016521601,-0.1032867,0.15698323,-0.16991693,-0.065877944,-0.32547048,-0.15662585,0.2509774,0.3283704,0.2789133,-0.12927018,-0.19007164,-0.5001066,0.32936442,-0.010768817,0.5744615,0.29137346,0.10330898,-0.16040218,-0.21313332,0.11437438,0.586899,-0.17956656,-0.094350554,-0.023774229,-0.5137705,-0.17916268,-0.04505122,-0.23234501,0.18831004,-0.00506064,-0.42670926,0.83834857,-0.07934788,1.2573453,0.06375451,-0.50224626,0.11785464,0.6122128,-0.0713065,-0.089837104,-0.29149464,1.0215095,0.57159,-0.09268682,-0.03813291,-0.55311257,-0.18100652,0.0068538296,-0.18160215,-0.05760256,0.040898442,-0.5047462,-0.41275576,0.21016861,0.32570276,-0.049223613,-0.0697526,-0.13640219,0.3152678,0.029181266,0.44373325,-0.64429307,0.017812403,0.095933706,0.22402762,-0.00808796,0.10064952,-0.5045049,0.53196925,-0.5640428,0.22313985,-0.49943846,0.17808022,-0.29745463,-0.052238606,0.11394871,-0.209828,0.3216293,-0.37825367,-0.21119738,-0.104991384,0.48057356,0.17085093,0.19286384,0.82029307,-0.29860634,0.27801073,0.0802191,0.5008822,0.94610506,-0.42105684,-0.16485348,0.421393,-0.43113545,-0.4207199,0.33063138,-0.3740308,-0.07768735,0.04867855,-0.30871043,-0.6462176,0.11394734,0.22345716,0.2050047,-0.057448328,-0.8565439,-0.07217575,0.49028328,-0.32986638,-0.30990767,-0.29715535,0.29082167,0.63047004,-0.42214498,-0.48786032,-0.018931838,0.04658167,-0.09573905,-0.6093212,-0.17281131,-0.4522158,0.5825676,0.19705757,-0.27731955,-0.18025075,0.15127648,-0.44150445,0.060630307,0.12422239,-0.28967464,0.03861581,-0.067553475,-0.17398807,0.83029026,-0.32272398,0.07817704,-0.6833832,-0.5090774,-0.68053174,-0.26232615,0.68643516,0.08973924,0.22531031,-0.625327,-0.08185838,-0.03704637,-0.20684381,-0.012607228,-0.48964694,0.53136206,0.06696944,0.76583457,-0.04094256,-0.7511125,0.17024198,0.28003526,0.05946429,-0.8183903,0.47376382,-0.059910417,0.6982656,-0.0050583887,-0.0010179338,0.2158606,-0.51203215,-0.0041834223,-0.35695404,-0.37799683,-0.7442951,0.04197322 +604,0.5575402,0.07421418,-0.5964438,-0.3038337,-0.5781856,0.0008765009,-0.07794409,0.18751079,0.46188486,-0.3033107,-0.10312759,-0.043581966,-0.15509994,0.47486782,-0.08867256,-0.98723096,-0.027977003,0.40488103,-0.69442284,0.57954526,-0.44065318,0.69018406,0.14247891,0.4457536,0.16391625,0.2131364,0.44115862,-0.003927231,-0.11086823,-0.030115714,-0.27763727,0.056025513,-0.5769638,0.49771583,-0.033685762,-0.466589,0.035503175,-0.42686448,0.024636159,-0.73183036,0.3208072,-0.7084369,0.5587777,-0.10661848,-0.29864523,-0.10841654,0.18107542,0.24503341,-0.25208065,0.04002317,0.28207707,-0.2706136,-0.107713,-0.18408951,-0.3656961,-0.5159601,-0.51325524,-0.010148635,-0.37547296,-0.19459827,-0.26365048,0.3625085,-0.21532127,-0.09826799,-0.19895886,0.32198986,-0.240403,0.0051649055,0.23448539,-0.38094535,-0.15639935,-0.46173617,-0.17447184,-0.17515975,0.24927267,0.14543119,-0.37198442,0.34559932,0.19784172,0.60747606,0.3013337,-0.33585453,-0.2515558,-0.10550205,-0.09800349,0.50071436,-0.19877735,-0.12149833,-0.23224966,-0.06498292,0.29805022,0.061238583,0.15881398,-0.32052857,0.025317878,-0.1487321,0.027835902,0.16492793,0.43300942,-0.4277655,-0.22786424,0.45790365,0.3092416,-0.038013026,-0.030813495,0.16319095,-0.06928037,-0.47133097,-0.20702289,0.011818308,-0.01222179,0.40229586,-0.09611864,0.05220365,0.65832,-0.045826092,-0.11103118,-0.059101164,0.07155861,-0.0448602,-0.25427628,-0.18489884,0.37918547,-0.3670835,-0.17954598,-0.2740808,0.8972506,0.10179615,-0.6033701,0.33193848,-0.39872706,0.15584494,-0.0014808178,0.47374198,0.85973555,0.5325152,0.11416065,0.9352223,-0.5052239,0.24773012,-0.03171335,-0.08592547,0.24760808,-0.08976122,0.15570508,-0.54431725,0.23049879,0.05008085,-0.114606604,0.22233063,0.4123079,-0.6135533,-0.25551206,-0.088640176,0.6000081,-0.46338862,-0.007396494,0.87330014,0.9892326,1.1286502,0.17289284,1.4952252,0.455418,-0.2582604,-0.052499715,-0.27476758,-0.5198177,0.14168453,0.22251661,-0.16688244,0.23383135,0.091371074,0.20937552,0.4816413,-0.2317414,-0.15829948,-0.102531314,0.4066643,-0.21625724,-0.034082133,-0.56847,-0.4287185,0.10308305,0.086006604,0.13374229,0.3910723,-0.36309144,0.46235985,0.009420801,1.5517663,0.0002879592,0.1019233,-0.20834933,0.06917227,0.2820831,-0.44351408,-0.11134003,0.21075687,0.170012,-0.24451417,-0.41441706,-0.16524349,-0.409118,-0.4060192,-0.18158779,-0.27909437,-0.0099528525,-0.028648075,-0.19857986,-0.49339244,0.108065404,-0.3871462,0.33437082,-1.9389259,-0.23198766,-0.1890162,0.22610536,-0.0615773,-0.3901432,-0.4361614,-0.5457185,0.15228452,0.2469303,0.38524917,-0.45319888,0.21777447,0.14550155,-0.5124174,-0.28154713,-0.62346715,0.26252726,-0.011991198,0.33934003,-0.24012835,-0.20572871,-0.29968077,0.20442805,0.56750214,0.15650608,-0.07914074,0.33898604,0.5448981,0.21681723,0.40435743,0.22862405,0.8034198,-0.44771916,-0.16177975,0.37030074,-0.59014916,0.40495425,0.07993865,0.24626453,0.55048305,-0.703441,-0.7936166,-0.7701438,-0.24894994,0.9925511,-0.225501,-0.35125157,0.36112154,-0.10652547,-0.19708814,0.21598771,0.516207,-0.12978545,-0.06934518,-0.59355235,-0.17592151,0.059132252,0.15267631,-0.092746735,0.015086771,-0.37070316,0.6452898,-0.21157588,0.4182315,0.3193003,0.25321266,-0.18451905,-0.45168936,0.1056602,1.0252458,0.44901732,0.105636835,-0.08942056,-0.17138878,-0.24588141,-0.22419572,0.21268842,0.49011168,0.7090127,-0.11238972,-0.07173993,0.35442197,-0.10834457,0.0515588,-0.026927246,-0.30004933,-0.10891069,0.058251355,0.62518924,0.5381521,-0.067453094,0.1889753,-0.0063928184,0.36882356,-0.16274646,-0.6405308,0.70050085,0.97194284,-0.1698717,-0.35274842,0.7839035,0.21653968,-0.04025185,0.4756026,-0.55585206,-0.34259266,0.42516083,-0.07327929,-0.3130378,-0.14375676,-0.26855466,0.13705012,-0.9496222,0.4485295,0.07850445,-0.7117062,-0.613006,0.016534436,-2.934174,0.24142835,-0.11221388,0.09923501,0.05830211,-0.14551595,0.20026326,-0.60567385,-0.5477886,0.19340363,0.11078671,0.72934383,-0.0017664754,0.21798691,-0.093284026,-0.55079854,-0.16531342,0.23356797,-0.050009582,0.27563387,0.14502485,-0.28416044,0.25061578,-0.31922418,-0.49761683,0.047669567,-0.70869327,-0.5608764,-0.3574455,-0.7926998,-0.14459015,0.7722188,-0.4846821,-0.06302774,-0.34380156,-0.035687454,-0.0689535,0.18724276,0.20854871,0.23091015,0.27788776,-0.112806484,-0.23613892,-0.37402165,0.062782794,0.22884107,0.3053583,0.55481184,-0.24879692,0.20838448,0.47782707,0.775258,-0.12625955,0.76525205,0.20835258,-0.039660033,0.23038544,-0.3275239,-0.37079334,-0.57825416,-0.5158209,-0.38023093,-0.5688309,-0.31865564,-0.08991469,-0.40625307,-0.8932149,0.48697436,0.115731366,0.15494753,-0.12104392,0.23395255,0.2383085,-0.19290349,0.048404317,-0.22664595,-0.17812508,-0.4112258,-0.41388777,-0.47084224,-0.6773882,0.22470453,1.437245,-0.16411787,0.100313336,0.16482535,-0.26584002,0.119271114,0.059704103,0.06662148,0.15549962,0.39953694,-0.005067078,-0.51062834,0.42853943,-0.10701093,0.056089003,-0.4110524,0.32599148,0.644495,-0.5775103,0.5437038,0.369602,0.20125437,0.07324867,-0.53985196,-0.2541617,-0.025453985,-0.21901523,0.45479786,0.33337575,-0.4278507,0.49677783,0.13889672,-0.1961798,-0.81878704,0.049697995,0.01479893,-0.21143888,0.14175771,0.37496156,0.114756055,-0.067956164,-0.24613819,0.17926288,-0.5253259,0.23860179,0.21756554,-0.0016096991,0.41247764,-0.24075177,-0.51523566,-0.8012609,-0.060474195,-0.41991055,-0.4485616,-0.0807722,0.1820835,0.116868705,0.2180322,0.14503326,0.44636625,-0.3206708,0.175186,-0.21306388,-0.24874698,0.44473317,0.4514205,0.34970972,-0.48276404,0.4151819,7.13055e-05,0.09301718,-0.3380894,-0.02219627,0.5379025,0.21651967,0.23550683,-0.018753456,-0.17039435,0.09572768,0.60488904,-0.01731724,0.068236485,0.10002895,-0.42908823,0.20644471,0.21217245,0.10273127,0.016233059,-0.3239872,-0.117659144,-0.059103984,0.03393466,0.40260902,0.09705646,0.43629754,-0.05916065,-0.23173144,0.3435121,-0.02451982,-0.0420298,-1.2310035,0.3604032,0.035033043,0.69582236,0.62733585,-0.07965013,-0.14709854,0.5793691,-0.3053459,-0.006567995,0.2874215,-0.23102681,-0.2883697,0.44884026,-0.57071817,0.34660536,-0.18877012,-0.109042294,0.24203609,0.34548947,0.34501702,0.9047962,-0.09364472,0.07096478,-0.115216956,-0.16734146,0.11291114,-0.047336128,0.07783665,-0.56120586,-0.444936,0.80908877,0.20466627,0.30644006,-0.4127827,-0.07164713,0.09911658,-0.21155429,0.10205837,-0.18092695,-0.028658608,-0.007024889,-0.46169016,-0.14438623,0.5789811,0.078684755,0.045659903,0.13250247,-0.5119268,0.058174036,-0.21229032,-0.037430067,-0.059323218,-0.68971455,0.03591166,-0.42622897,-0.3435945,0.3630698,-0.38079813,0.22163394,0.17474288,0.20209083,-0.2612193,0.3352633,0.37516207,0.9533354,0.09577996,-0.11281061,-0.101223454,0.50747335,0.34507158,-0.41081128,0.15316471,-0.2804007,0.30279344,-0.7473291,0.44748023,0.025237756,-0.23755512,-0.032351397,-0.036523737,0.19781998,0.30309588,-0.40914005,-0.009922642,0.26264605,0.13375643,-0.29264086,-7.528296e-05,-0.40166393,0.18270478,-0.08533927,-0.17557001,-0.077113576,-0.12709834,-0.12841006,0.28779563,0.020476285,0.07055669,0.08990569,-0.18407337,-0.36314598,0.20383205,-0.017399788,0.29214928,0.16150005,-0.15156937,-0.33938548,-0.10912701,-0.46644053,0.3414211,-0.07130484,0.21477908,0.014513144,-0.35126173,0.8180966,0.3049878,1.3609579,0.081675574,-0.328032,0.12000383,0.64126587,0.039028488,0.05987595,-0.3658095,1.1068511,0.7148556,-0.25537667,-0.14317301,-0.3104665,-0.3954655,0.37621844,-0.43106237,-0.28956982,-0.02876329,-0.720925,-0.4674784,0.167281,0.14205192,0.038384635,-0.15286016,0.007276251,0.1288714,0.07155723,0.42545763,-0.499299,-0.07902153,0.1238488,0.2817546,0.24266252,0.3785567,-0.31264818,0.39814204,-0.9855777,0.3182171,-0.36514255,0.11640932,-0.23502873,-0.3346898,0.23411557,0.30575243,0.27220827,-0.40114468,-0.33936515,-0.31958663,0.75109255,0.044849474,0.21829937,0.8450013,-0.40026262,-0.06894263,0.13358828,0.3723163,1.3233432,0.06940881,0.08772295,0.3958947,-0.3797936,-0.5446104,0.1951603,-0.31720513,-0.08500131,-0.31506136,-0.46852005,-0.37727305,0.24900492,0.31825012,0.064826176,-0.028483527,-0.4952291,0.09800732,0.3350573,-0.24714848,-0.20197879,-0.21963295,0.19570233,0.62516606,-0.34557217,-0.71813244,0.079426914,0.18457681,-0.2557373,-0.7372046,-0.118117996,-0.2912486,0.57514745,0.18485291,-0.48089588,-0.1600822,0.10005946,-0.36416516,-0.022179522,0.32619315,-0.47994137,0.10241115,-0.39899084,0.01031601,1.0105474,0.30214673,0.4246485,-0.6326532,-0.4584542,-0.9173839,-0.5219911,0.13393356,0.13839418,-0.13854703,-0.6813042,-0.08440052,-0.15543967,0.042023018,0.14222899,-0.4583402,0.31804198,0.19393328,0.46130773,-0.15478942,-1.1947392,-0.019763457,0.30465555,-0.22381185,-0.42717463,0.44229332,-0.1905447,0.75949275,0.08218471,-0.09538034,0.27730888,-0.8172481,0.58752286,-0.42142776,-0.10415073,-0.5767798,0.08453059 +605,0.48931524,-0.0030343276,-0.5105416,-0.25668636,-0.3532347,0.16054556,-0.22562978,0.17315255,0.4137017,-0.22144954,0.016345961,-0.056916647,0.047544487,0.40893054,-0.051293265,-1.0003006,0.1186416,0.14677295,-0.4356725,0.2767928,-0.6263861,0.51039106,0.011562629,0.28535554,-0.03219322,0.14455439,0.30562493,-0.18718891,-0.073142536,-0.12941511,-0.1261055,0.1628593,-0.53649175,0.14320016,0.028635785,-0.23512258,0.024548037,-0.33442053,-0.25675103,-0.7283478,0.43607023,-0.6697467,0.4792247,-0.051597007,-0.36686936,0.12192867,0.01677989,0.25574782,-0.36039108,0.20701928,0.21597779,-0.45284313,-0.097791575,-0.17790832,-0.3654129,-0.48193577,-0.5849709,-0.07148874,-0.46152738,-0.25487694,-0.5083934,0.23773351,-0.4853217,-0.096023574,-0.07799981,0.35627064,-0.28886387,-0.04010972,0.31474185,-0.175697,0.13673815,-0.34046957,-0.10628726,-0.021813262,0.24357864,-0.026139854,-0.19476917,0.34160915,0.41418478,0.4429548,0.024594668,-0.34624267,-0.17828062,-0.09794106,0.14184545,0.6368971,-0.1691339,-0.35568315,-0.18377678,0.0055089956,0.10095386,0.13551427,-0.20328525,-0.24929312,-0.015811348,0.2743524,-0.17432417,0.5427161,0.43048105,-0.36099955,-0.19432071,0.34707823,0.3280377,-0.025770243,-0.24660742,0.1880623,0.07618087,-0.66913927,-0.22540331,0.3451284,-0.1160546,0.4228107,-0.13112703,0.08206582,0.87227863,-0.33370665,-0.07193103,-0.20952594,0.02715048,0.0786149,-0.14385006,-0.17151698,0.21939929,-0.55021244,0.0066351336,-0.29149523,1.0207511,0.24859487,-0.838264,0.45448294,-0.44286317,0.17501937,-0.22219123,0.63861334,0.7037696,0.34174034,0.35260513,0.88082296,-0.5225754,0.104486026,0.14914568,-0.37659854,-0.029187847,-0.16912143,0.06252739,-0.39517713,0.06347727,0.12387089,0.034051996,0.29690108,0.19373773,-0.38856998,-0.07466839,-0.15424927,0.74113303,-0.44869545,-0.03949819,0.79740375,0.9211138,0.8642995,0.117391944,1.3919256,0.5711409,-0.29466954,0.04880045,-0.39673546,-0.5087438,0.17745206,0.33130106,-0.2163746,0.22425468,0.017764058,0.0837487,0.32430425,-0.4352958,-0.099939264,0.05605414,0.19929683,0.017558059,-0.15439984,-0.47615832,-0.22454068,0.16075297,0.03311009,0.16246544,0.29043952,-0.28496835,0.42755815,0.035210133,1.0991334,0.14696312,-0.045692023,-0.1335193,0.3993104,0.30288652,-0.16853757,-0.15303023,0.27129707,0.47250244,-0.16732264,-0.60218185,0.016028984,-0.29901478,-0.23237479,-0.23622294,-0.36140782,0.05506428,-0.031280786,-0.32331887,-0.16372505,0.1306509,-0.2884929,0.51884395,-2.3177478,-0.2510972,-0.13213694,0.32881027,-0.04674388,-0.3602837,-0.40546593,-0.63293904,0.36423683,0.22576758,0.39431432,-0.64336294,0.24421738,0.21860936,-0.28345558,-0.2070122,-0.81070966,-0.18433619,-0.11110473,0.26030478,0.043536197,0.0043502874,-0.25458115,0.4428311,0.7607693,0.20555966,-0.013866166,0.1274496,0.43902364,0.043378007,0.5256129,0.14725251,0.5939292,-0.11131574,-0.1608945,0.24187718,-0.41987202,0.22843023,0.07800416,0.14624074,0.35745472,-0.42594305,-0.795852,-0.55251133,-0.4084468,1.2605237,-0.3861645,-0.4890089,0.35405248,0.060784467,-0.3015222,0.09907979,0.55351967,-0.17321941,-0.038668137,-0.5997025,0.0064531225,0.12048998,0.15943071,-0.12090373,0.13273224,-0.08539943,0.5253544,-0.4022983,0.2359736,0.21767725,0.2159461,-0.16975768,-0.5466389,-0.02139118,0.99876004,0.28751785,0.12858045,-0.16609046,-0.22364083,-0.18684718,-0.27267337,-0.0081169205,0.63815534,0.94922364,-0.08050628,-0.080828056,0.27624995,-0.3425798,0.040322147,-0.07269298,-0.39713553,0.14177021,-0.14821856,0.72254175,0.43701643,-0.11307924,0.39340934,-0.06865054,0.18194194,-0.117116146,-0.4823157,0.5335612,1.0360745,-0.1987193,-0.202742,0.4226211,0.35932562,-0.3527875,0.37252745,-0.55479735,-0.16361673,0.7519954,-0.09813591,-0.4205552,0.020265648,-0.29876083,0.054802425,-0.91326034,0.42595267,0.08153158,-0.7784863,-0.40422922,-0.07287357,-4.0561066,0.061106503,-0.16089466,-0.059530582,-0.048094507,0.017003434,0.35035267,-0.353278,-0.44410986,0.07190093,0.06546415,0.6006932,-0.05059155,0.085637346,-0.39106873,-0.13487852,-0.29932985,0.17270727,0.19359493,0.2964862,0.06758462,-0.31299445,0.35290354,-0.33970174,-0.4440737,0.053133838,-0.562841,-0.6526966,-0.2262359,-0.5225978,-0.31204247,0.8756564,-0.4974227,-0.022302547,-0.30915666,0.020780984,-0.19642124,0.5076631,0.33283445,0.11967842,0.078979544,-0.022877285,-0.11385776,-0.3594419,0.29355958,0.11979755,0.16951075,0.24627216,-0.00965505,0.06628932,0.64550865,0.6353599,0.25082865,0.85875314,0.22363672,-0.038130768,0.14807762,-0.42864507,-0.25296634,-0.59525883,-0.44274923,-0.26837817,-0.43564853,-0.3212559,-0.31545183,-0.3577381,-0.71063083,0.3810506,0.04347367,0.12572482,-0.20567085,0.34034756,0.31841594,-0.006737415,0.081878625,-0.07379158,-0.19042651,-0.4771792,-0.21390544,-0.59598684,-0.58551836,0.28812817,1.01638,-0.19342966,0.016882688,-0.09167074,-0.41533083,0.04854786,0.054716315,0.23236455,0.26545033,0.28433293,-0.16927317,-0.6911383,0.3462816,-0.25049788,-0.13446036,-0.90560067,-0.0075441683,0.8238843,-0.6056465,0.5379753,0.40230379,0.22680685,-0.014188652,-0.46593735,-0.3170071,0.2041106,-0.19080687,0.4909183,0.020269645,-0.494304,0.52729744,0.2333649,-0.13733289,-0.55490065,0.44433436,0.037581287,-0.22099316,0.1980336,0.36469284,-0.065344475,-0.043889344,-0.16644348,0.2931907,-0.60043544,0.32203105,0.3497242,0.06432273,0.5786672,-0.0431625,-0.22833511,-0.6812931,-0.29530376,-0.51683986,-0.23397636,-0.061149377,0.046292167,0.116593994,0.11565531,-0.11296078,0.39393583,-0.40534538,0.13281003,-0.15473843,-0.2531866,0.40818214,0.5225601,0.22944324,-0.30352148,0.7056762,0.11741141,-0.035864267,-0.13875403,0.015245638,0.5815838,0.16504356,0.35492787,-0.008035102,-0.13567448,0.055047218,0.75975317,0.17131476,0.42685953,0.16825975,-0.2135826,0.3946106,0.19134995,0.0787862,0.1362497,-0.12649964,-0.18399492,-0.12871681,0.1383518,0.41155404,0.1446947,0.38234395,-0.14127575,-0.37368888,0.28814244,-0.01484894,-0.012948526,-1.3572501,0.4560883,0.13286401,0.5418122,0.29110283,-0.044124153,0.037213154,0.48187944,-0.25826576,0.19140157,0.25777876,-0.010828844,-0.40584603,0.5838712,-0.5954749,0.43469477,-0.19704665,0.038191788,0.13688944,0.31086913,0.33406416,0.9344759,-0.12043098,0.12048284,-0.017037954,-0.26073533,0.14285322,-0.26237032,0.15106694,-0.55490965,-0.30033875,0.465357,0.2733593,0.29135367,-0.24959779,0.022561904,0.047368612,-0.09862872,0.044519994,-0.09671069,-0.0797222,-0.039897066,-0.6858183,-0.45689586,0.42874295,0.054748904,-0.015467094,0.051596098,-0.10634976,0.26583484,-0.12941822,-0.026585136,-0.08128505,-0.66592795,-0.18736579,-0.37156636,-0.50900644,0.3895139,-0.5105346,0.38925457,0.19088125,0.031104816,-0.3801348,0.11753825,0.435254,0.7711666,0.08547691,-0.36656937,-0.4614894,-0.08606727,0.3753341,-0.34399027,-0.08026244,-0.28564954,-0.011862738,-0.5637371,0.3432506,-0.36084768,-0.22925816,0.09582,-0.1775254,0.0030470002,0.4261572,-0.40657058,-0.05211621,0.1420736,-0.06940273,-0.2790193,-0.107081614,-0.2851371,0.2752035,0.031362586,-0.192576,0.01523981,-0.26723567,-0.17854622,0.34171796,0.020685783,0.25734103,0.30754462,0.014596439,-0.12761785,-0.15448332,-0.09578457,0.2679081,0.16111694,-0.22513388,-0.42474964,-0.19875138,-0.18868957,0.3729969,-0.18609525,0.10294398,0.00259558,-0.4856473,0.69812626,0.043036394,1.0782876,0.11709959,-0.20763111,0.08388503,0.5813023,0.050513633,0.16795091,-0.2693877,0.84525007,0.6056016,-0.20645256,-0.20561205,-0.4274281,-0.10587711,0.38314506,-0.21544191,-0.24031743,-0.09227877,-0.7563791,-0.31723386,0.19952027,0.12835874,0.19521621,-0.03149219,0.017385231,-0.018834272,0.13926522,0.52265346,-0.43532965,0.20257418,0.26714557,0.28948596,0.19331326,0.20164193,-0.13375244,0.39463094,-0.55828375,0.28777885,-0.5121878,0.07946875,-0.0082376255,-0.21297656,0.24387442,0.13969831,0.25199997,-0.18033215,-0.12949583,-0.18745351,0.6108593,0.28872988,0.19817187,0.70309335,-0.24753931,-0.1418644,0.24448554,0.56244504,1.3993556,0.00090134994,0.11186678,0.40697935,-0.32741997,-0.37270707,0.25450736,-0.18433759,0.06063888,-0.20556392,-0.32087398,-0.43407494,0.25996163,0.1496837,-0.12764597,0.20544434,-0.31462222,-0.41859478,0.36589387,-0.34639478,-0.35126114,-0.34206447,0.39385745,0.5184927,-0.3560755,-0.3699076,-0.0697373,0.32065803,-0.29465884,-0.5154871,0.0083243,-0.24003401,0.43340138,0.044519957,-0.43674436,0.09546129,0.31713843,-0.3884824,0.19187927,0.3900102,-0.41764742,-0.021227049,0.06130785,-0.1253282,0.95616966,-0.10531973,0.0704127,-0.9043718,-0.39055213,-0.9421827,-0.36747584,0.49325997,0.3400731,-0.039466582,-0.5289229,-0.19337375,0.011911469,0.031997453,0.06288905,-0.65335304,0.24624372,0.13895108,0.4757657,-0.05400032,-0.931447,-0.2350456,0.05934017,-0.4503308,-0.55253917,0.4712827,-0.22493498,0.7424229,0.093252234,0.15102614,0.2346032,-0.3425167,0.2694418,-0.25815046,-0.29752174,-0.64655906,0.22247703 +606,0.4205524,-0.1620592,-0.3067453,-0.15714,-0.1960001,0.065638475,0.118737474,0.6348384,0.3053904,-0.10352929,-0.11547171,-0.14175312,-0.10179516,0.057736747,-0.020510465,-0.46838638,-0.15799163,0.18622276,-0.40176985,0.55399525,-0.36355445,0.1368995,-0.24985419,0.46733108,0.1614587,0.30034104,-0.12584808,-0.06342907,-0.047831032,0.09148848,-0.07018915,0.2905485,-0.31091624,0.1781349,-0.11561061,-0.114643976,0.11140403,-0.27923182,-0.3331346,-0.63956654,0.25461432,-0.5766851,0.2650873,0.11892053,-0.1999104,0.07032031,-0.18274072,0.24273586,-0.32964408,-0.1911895,0.06324073,0.1832673,0.086985715,-0.1587517,-0.0697309,-0.2718838,-0.42775914,0.004024134,-0.1774402,0.012137592,-0.052578073,0.0711098,-0.22761336,-0.16065553,-0.0991934,0.4021916,-0.33242908,0.14545363,0.24856432,-0.012081639,-0.005147567,-0.51921594,-0.1600403,-0.1208905,0.15944156,-0.019745521,-0.2181328,0.26109993,0.24450256,0.31011412,-0.12395994,-0.13986836,-0.1275092,0.030714296,-0.043074526,0.42594498,-0.12483255,-0.40358716,-0.07170456,-0.025184264,-0.14424823,0.15053882,0.05548368,-0.26607218,-0.07220479,0.043656863,-0.1819708,0.10906684,0.35917643,-0.32094148,-0.27693236,0.38685006,0.610889,0.18941806,-0.12993574,-0.15718557,0.09168969,-0.43805137,-0.19131528,0.11407976,-0.26348346,0.52948064,-0.14447139,0.078534715,0.58434784,-0.09303735,0.009108697,0.06765757,0.28061005,-0.22451441,-0.36182868,-0.27795506,0.13574144,-0.3463419,0.10129956,-0.08823796,0.62271607,0.22750197,-0.5445502,0.26813605,-0.49671057,0.11261983,-0.117252536,0.3967566,0.76652247,0.29787996,0.25575662,0.5613108,-0.3058344,0.13006449,-0.045174405,-0.32593006,0.2768394,-0.12978947,-0.011920104,-0.49389675,-0.0053344048,0.09762184,-0.178669,0.012444661,-0.027042445,-0.50696087,-0.16744381,0.16609833,0.72772974,-0.21187069,-0.117986985,0.37525627,0.9423017,0.803902,0.05884191,1.0939981,0.17154764,-0.2759201,0.5378295,-0.3375653,-0.8229417,0.22467598,0.20548688,-0.45596346,0.22853844,0.14103734,-0.09107463,0.46212012,-0.40854615,0.14859556,-0.16188148,0.39660513,0.1419627,0.09914125,-0.31317595,-0.40976202,-0.1192934,-0.02496932,0.09104596,0.3370493,-0.21725552,0.06300516,0.05227629,1.8006343,0.16111836,0.039792504,0.122344084,0.5058,0.11133527,-0.18618383,-0.07242835,0.5339759,0.25635237,0.069058426,-0.51379544,0.17825614,-0.25479582,-0.40927458,-0.039998613,-0.23477626,-0.041708358,-0.06695961,-0.47056836,-0.18308581,-0.19365674,-0.11139126,0.53412294,-2.9691637,-0.0699929,-0.04785147,0.30246606,-0.37920687,-0.39509043,-0.16900595,-0.4599328,0.188813,0.3116135,0.4064883,-0.669331,0.19926207,0.19456665,-0.54124194,-0.13478325,-0.55296385,0.02001336,0.08952821,0.18587282,-0.023883043,0.13370939,-0.06747706,-0.04174119,0.21518442,0.104541555,0.08985,0.35125706,0.29829076,0.19228657,0.3023237,0.060789686,0.4360393,-0.2864688,-0.09889071,0.19167599,-0.5017275,0.46776894,-0.05869883,0.06645103,0.47845113,-0.31509298,-0.6138025,-0.4899411,-0.15346973,1.2300284,-0.2297313,-0.09259914,0.09698205,-0.6022858,-0.2820225,-0.16405913,0.42411458,-0.15839991,-0.3302088,-0.6929807,0.06691395,-0.09131886,0.33188802,-0.042180233,-0.032956563,-0.22428483,0.5626392,0.003457858,0.45732254,0.2790852,-0.0069817486,-0.15888357,-0.45680088,-0.03699119,0.4752952,0.26155722,0.13984129,-0.08206182,-0.052074358,-0.33860567,0.08321386,0.17042468,0.50169474,0.50908387,-0.114210874,0.082970634,0.3914438,0.052530866,-0.0663185,-0.09033457,-0.24248415,-0.1798701,-0.017075015,0.43789065,0.7751232,-0.3193113,0.24918792,-0.07382615,0.18974756,-0.26019108,-0.33948585,0.5586544,0.8414841,-0.15662505,-0.08050133,0.39420828,0.5970954,-0.28432205,0.2906511,-0.48757964,-0.09502686,0.39048225,-0.038293365,-0.25766176,0.07542213,-0.24257313,0.10948917,-0.7343717,0.14477122,-0.13232583,-0.27085,-0.7718035,-0.04085835,-2.5161016,0.0858679,-0.25807616,-0.16295911,-0.09045647,0.10881159,0.11073104,-0.6328611,-0.4787936,0.24330337,0.04127025,0.4625811,-0.064853385,0.055737957,-0.27344972,-0.30581492,-0.3450949,0.0035453576,0.20671114,0.31191066,-0.031406615,-0.4048839,-0.12112177,-0.08831707,-0.25669134,0.16881627,-0.6165443,-0.3400437,-0.057946406,-0.6479941,-0.17677997,0.63549745,-0.304725,-0.04037472,-0.12996583,-0.016193284,-0.12124798,0.2781837,0.10842114,-0.002299141,-0.005590416,-0.03441413,-0.15665007,-0.3372869,0.20232137,0.061566792,0.3642914,0.33059457,0.0122660035,0.18870357,0.4199556,0.5510385,-0.04117996,0.6620362,0.5488043,-0.121309,0.28032297,-0.19916616,-0.074305795,-0.24771173,-0.19860345,-0.1323505,-0.33196086,-0.38588732,0.13879351,-0.36259195,-0.641949,0.29576433,-0.07311321,0.036236487,0.21244206,0.047454424,0.6703529,-0.22160824,0.13596615,-0.025546538,-0.08022492,-0.5403259,-0.40941033,-0.4602969,-0.25394934,0.46975854,0.99344724,-0.30968225,0.027281253,0.076445416,-0.37400597,-0.074215375,0.13301545,-0.18553363,0.13516204,0.40546462,-0.117301,-0.5101422,0.35644156,-0.00093877316,-0.10981847,-0.49974662,0.13041429,0.49752668,-0.71091115,0.61119115,0.16814543,0.023573866,-0.1134216,-0.4373161,-0.3422376,-0.07363665,-0.18735678,0.28218552,0.28063327,-0.6417977,0.1917155,0.23612301,-0.14840849,-0.693239,0.45808107,-0.1303935,-0.31540602,-0.24387547,0.39597446,0.14277314,0.049688358,-0.10665745,0.14727966,-0.3419089,-0.087000355,0.30926323,-0.17862104,0.25546154,-0.17740948,0.13473429,-0.66253364,0.17196442,-0.41241074,-0.38527334,0.40147093,0.06825076,0.15606946,0.112411976,0.37989646,0.17280786,-0.17173617,0.023066796,0.16028643,-0.17678395,0.22469077,0.2818322,0.47720036,-0.431555,0.37508473,-0.012646205,0.17235373,0.0074301222,0.06818343,0.29178917,0.098159164,0.34845835,0.059786692,-0.22127606,0.24705337,0.7811137,0.06083731,0.37071684,-0.010012746,-0.027956787,0.23041138,-0.08926422,0.14751028,0.04154056,-0.56123227,0.04599974,-0.0969183,0.22637598,0.2772621,0.10580476,0.1830459,-0.08415369,-0.24967183,0.016736325,0.26333812,0.02797511,-1.0635939,0.29038608,0.24036404,0.77603424,0.3746916,-0.01586748,-0.08649623,0.5804729,-0.05631192,0.22115663,0.37864038,-0.22454967,-0.49350306,0.50672793,-0.60297257,0.44926578,0.0080641275,-0.049217883,-0.049734704,-0.048341148,0.28606427,0.6448523,-0.19296142,-0.15241441,0.010874276,-0.36756495,0.026404368,-0.2647765,0.21096182,-0.70593864,-0.2113053,0.45847505,0.53064084,0.25091666,-0.28638607,0.031573355,0.02656098,-0.10317132,0.18146235,-0.036879677,0.11106137,0.19163392,-0.7027772,-0.23235832,0.4855798,-0.3193454,0.12664312,-0.066045746,-0.110598914,0.23530719,-0.28356785,-0.017713616,-0.09103069,-0.66892445,0.121266,-0.13104233,-0.36357206,0.56757677,0.0026832544,0.2269377,0.20538047,0.10288632,-0.35454977,0.5165323,-0.06724961,0.8445091,-0.2005721,-0.062755436,-0.54581827,0.21826942,0.07795221,0.0007741646,-0.053589646,-0.37189645,0.035190836,-0.34825808,0.44261348,0.18440358,-0.19859324,-0.24210908,-0.21685992,0.05214949,0.54294074,-0.048068915,-0.19996516,-0.39912364,-0.22975883,-0.29954073,-0.099057235,-0.040305886,0.3218754,0.3086309,0.088750206,-0.08396717,-0.15618752,-0.18551543,0.32268107,0.14355117,0.2489906,0.33021578,-0.0886209,-0.12473763,-0.16205311,0.1330377,0.38472784,-0.04859772,-0.19182286,-0.30123645,-0.29058668,-0.34369597,0.28525627,-0.13236232,0.5220868,0.07176378,-0.09330202,0.57277024,-0.036149897,1.0451666,-0.01069494,-0.25823268,-0.056156296,0.54190344,0.06959781,-0.08390646,-0.42686048,0.7601656,0.41009504,-0.13736889,-0.17965704,-0.20820959,-0.14533171,0.27187532,-0.060443383,0.032371916,0.0039364924,-0.5876324,-0.09573931,0.08299582,0.19599177,0.19767635,0.05041937,-0.09248565,0.120356135,0.0019765818,0.21940175,-0.29753652,-0.14846097,0.19878265,0.24344946,0.16098548,0.32478854,-0.32536218,0.35477498,-0.43897453,0.14439148,-0.23943523,0.22027877,-0.30813742,-0.29799256,0.07662745,-0.009027784,0.34754992,-0.42393002,-0.4002387,-0.41150087,0.5293536,0.25514826,0.14456047,0.4789802,-0.18608175,-0.11761438,0.047612447,0.5077276,0.69688886,-0.12752904,-0.09665024,0.324153,-0.3237416,-0.6669374,0.363063,-0.1408423,0.23707643,0.098504,-0.034165468,-0.5677706,0.3262264,0.16332382,0.11879898,0.047093272,-0.6171472,-0.10686212,0.17329264,-0.21448271,-0.10755502,-0.24470097,0.12946948,0.75234276,-0.17826647,-0.30708873,0.019711448,0.20810717,-0.11797381,-0.31583077,0.030913262,-0.6856485,0.19408692,0.050004106,-0.26754493,-0.31813926,0.012815897,-0.35743573,0.26218864,0.06237108,-0.31818473,0.1422488,-0.14129266,-0.047607813,0.9193706,-0.009721314,0.18388823,-0.39997685,-0.42923898,-0.6127296,-0.48764846,0.370787,0.097751185,-0.09080239,-0.50352347,0.02257676,-0.01083854,-0.17623264,-0.15242909,-0.30321392,0.4865827,0.20143825,0.1416829,0.025797576,-0.8586323,0.053531118,0.07960778,-0.19779566,-0.51631933,0.33854356,-0.19244501,0.8423773,-0.039835665,0.06318889,0.18473631,-0.242475,-0.114041254,-0.2100198,-0.13053015,-0.54711574,0.09198086 +607,0.35110936,-0.27358985,-0.39172015,-0.0043940204,-0.3306114,0.1892551,-0.12994823,0.62491083,0.25615284,-0.357511,-0.19169159,-0.3043171,0.015628653,0.43725386,-0.15833613,-0.47000524,0.034773737,0.21013567,-0.56536335,0.4315144,-0.5659162,0.42317754,0.027677609,0.61477154,0.19686195,0.13367346,0.023150312,-0.032389697,-0.23176207,-0.2514985,-0.06533774,0.122692876,-0.4434174,0.13040164,-0.24607079,-0.5225172,0.13596317,-0.5947061,-0.43641517,-0.8189613,0.2875345,-0.72582763,0.59681505,0.12958807,-0.282127,0.19075625,0.1826738,0.5807122,-0.28405818,0.010363592,0.20881936,-0.11468272,-0.058229677,-0.24002683,-0.3566262,-0.34770006,-0.6748992,0.07462202,-0.27600798,-0.07776547,-0.17335467,0.32799584,-0.09068559,0.03659622,-0.13388725,0.3610025,-0.50593954,0.3093009,0.22321542,-0.14802766,-0.00936492,-0.64031947,-0.167407,-0.09225625,0.12538856,-0.19375546,-0.22768612,0.275472,0.26116142,0.50495684,-0.117766485,-0.14013682,-0.33320045,-0.07240271,-0.18446498,0.71497726,-0.16038291,-0.2904876,-0.24345341,-0.19010782,0.39743033,0.17807563,0.12248762,-0.19842382,-0.11584382,-0.2563133,-0.23162211,0.23010302,0.53401065,-0.46360686,-0.21300706,0.3310713,0.59189653,0.1044595,-0.07037894,-0.031608824,0.12523127,-0.67530733,-0.15589973,-0.029092023,-0.23826377,0.51391184,-0.13017522,0.15028773,0.6935892,-0.16182306,-0.04708516,0.18145956,0.14130487,0.037040416,-0.36344844,-0.5796433,0.31758213,-0.38357115,0.07916815,-0.40292284,0.698905,0.10267242,-0.5422372,0.29188246,-0.6107632,0.10407629,0.09936533,0.45693725,0.4573471,0.43795544,0.37572452,0.5160568,-0.35887542,0.08361007,-0.1003061,0.038961444,0.07605722,-0.11369171,0.18358107,-0.3827351,0.14238751,-0.15991478,-0.2396013,0.32767886,0.5804062,-0.6847108,-0.14295872,0.11325475,0.8673479,-0.28177407,-0.040283404,0.943491,1.0168712,1.009584,-0.047531407,1.3054817,0.48707494,-0.28955406,-0.06109119,-0.3525,-0.57824534,0.1734277,0.21854007,-0.43050522,0.18012393,0.13922225,-0.2100549,0.5404858,-0.46202987,-0.059231766,-0.16432485,-0.026123302,0.11469663,-0.07185509,-0.41382188,-0.45997357,-0.061248247,-0.11458012,0.28127116,0.34875134,-0.45543212,0.36747926,-0.0632038,1.4925454,0.028380122,0.11960006,0.07510761,0.39259148,0.19894011,-0.1391992,0.019198049,0.33202195,0.21914445,-0.08368152,-0.5273695,0.1242336,-0.25329462,-0.30173475,-0.16415334,-0.1273867,-0.26197562,0.0068506855,-0.5325428,-0.21580417,-0.14340158,-0.021672288,0.35852146,-2.5144064,-0.12921563,-0.038910095,0.4465757,-0.14404905,-0.4501737,-0.061023593,-0.39862767,0.49723846,0.21558043,0.43969086,-0.6548677,0.36264753,0.39555052,-0.5538365,-0.1726798,-0.677098,-0.17324592,0.05280104,0.110534884,-0.06744062,0.014265814,0.04251924,-0.020432949,0.51500654,-0.09708087,0.25164697,0.23964182,0.44577703,0.05474805,0.45334134,0.11908593,0.6962077,-0.4052167,-0.3349073,0.24779817,-0.7580467,0.282408,-0.015831053,0.0021625236,0.52074313,-0.460889,-0.9102753,-0.5956046,-0.1797613,0.8272204,0.035017006,-0.38716075,0.06734156,-0.32001558,-0.27910537,-0.02937695,0.6697981,-0.20608254,-0.12592658,-0.7277381,-0.20972729,-0.0606498,0.33413818,-0.017378366,0.03963992,-0.38737863,0.5786955,-0.21290575,0.23547423,0.41065583,0.28247136,-0.5059847,-0.46035495,0.058753602,0.7996325,0.36255857,0.21902534,-0.11806719,-0.32008192,-0.25025216,-0.16387908,0.034865525,0.5515646,0.57445943,-0.14510529,0.15435006,0.29274097,0.00426771,0.04560811,-0.18739271,-0.29164606,-0.11496853,0.2539335,0.6343896,0.7018195,-0.0622327,0.30721983,-0.12366473,0.55239284,-0.31074715,-0.5241998,0.50090235,0.89769334,-0.116471455,-0.104969226,0.6753778,0.38020244,-0.25198537,0.46589798,-0.736602,-0.40118334,0.33510855,-0.0781829,-0.41300625,0.16742383,-0.2227259,0.023524417,-0.7673773,0.5214187,-0.17298341,-0.48561567,-0.7221675,-0.1643642,-2.584234,0.21049501,-0.39902884,-0.005150876,-0.051181886,-0.1959043,0.01608766,-0.44422296,-0.5375655,0.22118987,0.19168709,0.5093835,-0.079174094,0.07636877,-0.226825,-0.30410185,-0.4553971,0.11232563,0.23361687,0.42417493,-0.06994506,-0.45836225,0.118134856,-0.11225267,-0.4532084,0.050191324,-0.8699935,-0.2915266,-0.21792126,-0.63757557,-0.20621577,0.7174942,-0.41218397,0.035842624,-0.18070051,0.08906869,-0.13763963,0.3419437,0.20924206,0.16799517,0.098104216,-0.19114545,-0.05725026,-0.32967433,0.20261134,0.20004329,0.089477524,0.3132434,-0.044105224,0.038536545,0.2376999,0.7214858,-0.09714801,0.74050945,0.27280524,-0.143146,0.25686568,-0.27858981,-0.27307636,-0.1967801,-0.18420683,-0.02909172,-0.43769544,-0.44264916,-0.035134435,-0.5048216,-0.7194377,0.4951368,0.014334585,-0.2980652,-0.030930536,0.27783397,0.44851488,-0.2526807,-0.042529456,-0.11443394,-0.004773664,-0.4168939,-0.3497015,-0.59985197,-0.4048484,0.29410982,1.2360313,-0.031260695,0.192502,0.18351424,-0.17598629,-0.15389347,0.3638077,-0.22006415,0.04358233,0.44319433,-0.20731731,-0.53838474,0.302994,-0.06787902,-0.43100432,-0.705109,0.37874144,0.7175736,-0.68125904,0.7503666,0.41695994,0.107400365,-0.12353831,-0.46835008,-0.29600057,0.1923311,-0.18903959,0.3993054,0.13156466,-0.58132255,0.32276517,0.38026407,-0.42209512,-0.833393,0.3761041,-0.12123447,-0.45579043,0.051121056,0.41120222,0.23470356,0.14857237,-0.22322585,0.19544637,-0.4402589,0.22035322,0.1890378,-0.11590988,0.32325378,-0.35194084,-0.15013497,-0.7660988,0.09298066,-0.45132798,-0.28482598,0.1508064,-0.0067987507,-0.059558034,0.28743106,0.19311833,0.36980364,-0.2845091,0.115688264,-0.3292196,-0.24670972,0.18431573,0.36938837,0.5010295,-0.38421577,0.5794715,-0.037293453,-0.13748321,0.02053684,0.054947983,0.45640275,0.033935122,0.46538496,-0.11439441,-0.15254603,0.35810027,0.66668904,0.1063698,0.31606308,0.21914174,-0.07919314,0.20852825,0.09789363,0.06188174,0.10903333,-0.41337967,0.15041247,-0.33022246,0.16505328,0.3783912,0.10084642,0.46755245,-0.028221829,-0.34320736,0.06654932,0.14652826,-0.012309447,-0.98189247,0.1151875,0.054327738,0.7797037,0.42409235,0.07945198,-0.023369422,0.72813493,-0.2000005,-0.102644004,0.32998508,0.07080216,-0.30809477,0.71111995,-0.7085988,0.6214589,-0.1679882,-0.019331766,0.0044352836,-0.046975534,0.61869913,0.7773691,-0.15148987,-0.019638387,0.114938796,-0.24216534,0.044058256,-0.312455,0.30160776,-0.5694545,-0.27352688,0.7344863,0.3960957,0.38025537,-0.19767556,0.024045533,0.23888694,-0.19913773,0.11373438,0.07266154,0.12967353,0.01922064,-0.5916361,-0.109008655,0.49910975,-0.34748265,0.23165117,0.21729548,-0.25918436,0.24976489,-0.23410389,-0.032667268,-0.054272808,-0.87056094,-0.16352613,-0.37978506,-0.39999744,0.4062248,-0.03678606,0.155771,0.27767202,0.084751405,-0.4388724,0.65319014,0.023699496,0.92510426,0.049009893,-0.07306192,-0.11620701,0.39990297,0.15186663,-0.1425275,0.12770014,-0.22949494,0.09911888,-0.64962643,0.44675636,-0.108105436,-0.29354197,0.032822188,-0.05591481,0.07364929,0.56367975,-0.20318289,-0.16725011,0.15883903,-0.09602435,-0.28294313,-0.11189062,-0.11040878,0.30104432,0.16779052,0.09223331,-0.10285593,-0.08888904,-0.19788058,0.6070402,-0.0084705455,0.45675972,0.37057444,0.16322555,-0.29602697,0.014914794,-0.28187472,0.61530626,-0.17506552,-0.14975527,-0.23483577,-0.55844843,-0.3696465,0.33451796,-0.17864315,0.32212892,0.055591322,-0.22643052,1.0195382,0.01032512,1.1847897,-0.12592877,-0.35942367,0.12933205,0.61397505,0.016191585,0.033084128,-0.35816437,1.2007409,0.53237903,-0.15984535,-0.05683147,-0.32492542,0.02043048,0.3482465,-0.21302776,-0.17327796,-0.09162732,-0.5937155,-0.15830378,0.19923295,0.35806832,0.17713353,-0.121551394,0.35702392,0.35287976,-0.02283463,0.32751796,-0.5935215,-0.11458776,0.32003146,0.45940834,-0.025122026,0.19175036,-0.40959057,0.38335714,-0.41064215,0.14842527,-0.27246287,0.07564287,-0.23322521,-0.33173758,0.21048777,0.015810728,0.2224664,-0.5572912,-0.19958238,-0.29622027,0.48026493,0.282667,0.23307446,0.6108521,-0.25881645,-0.116778485,-0.13687564,0.5554573,1.0084907,-0.4322553,-0.019004235,0.4140563,-0.37107652,-0.61138743,0.51595455,-0.36277956,-0.14291318,0.012096567,-0.21354055,-0.5301009,0.333075,0.15162702,-0.00646581,0.014846875,-0.58302486,0.0037430695,0.36036763,-0.30827668,-0.2715237,-0.40254077,0.3720192,0.68059254,-0.009385323,-0.46174878,0.11977888,0.32888705,-0.34607762,-0.42528227,0.09857416,-0.4629926,0.26699743,0.06020059,-0.22519398,-0.2471033,-0.008882322,-0.4274824,0.0011680509,0.04374927,-0.25201732,0.17622194,-0.42504564,-0.017679002,0.67509925,0.0013867787,0.30628088,-0.73419,-0.48184156,-0.9677492,-0.35035938,0.47963157,0.34126464,-0.07797583,-0.7484451,-0.12844002,-0.08208281,-0.40855238,-0.0049676173,-0.24961348,0.41562837,0.0998022,0.3277556,-0.21354571,-0.7888117,0.10305242,0.084262155,-0.5117325,-0.4300428,0.39474106,0.069406696,0.9407555,0.14524136,-0.018614894,0.24168172,-0.41844076,0.20176661,-0.3698404,-0.29930344,-0.63199705,0.035013918 +608,0.3036689,-0.11303002,-0.66448903,-0.01171876,-0.13000956,0.048240136,-0.1914972,0.48459437,0.032081753,-0.42069492,-0.14079098,0.053344715,-0.09739033,0.30830956,-0.19730885,-0.5281081,-0.064076744,0.2570682,-0.21010478,0.19091918,-0.4647769,0.1289458,-0.1728373,0.37474653,-0.14805911,0.2813517,0.2640573,-0.029157361,-0.16155571,-0.26183018,0.26822937,0.3866031,-0.6568025,0.3371593,-0.07480037,-0.31203023,-0.025629165,-0.42959595,-0.39709315,-0.66290605,0.2209069,-0.8334472,0.45515075,0.23421562,-0.24314152,0.098839976,-0.08587255,0.25051722,-0.2659882,-0.02048312,0.33378074,-0.35978267,-0.19216625,-0.384389,-0.031900585,-0.23944682,-0.514626,0.02960966,-0.34934977,0.012501326,-0.22892584,0.20468034,-0.40296283,0.08551758,-0.2926521,0.23200174,-0.43539676,-0.14331299,0.25168338,-0.30966505,0.22195876,-0.42216492,-0.08303671,-0.18074732,-0.029864019,-0.34483957,-0.20694733,0.41213873,0.119433366,0.3919009,-0.1450418,-0.15079767,-0.31472138,0.074640535,0.21727604,0.5473955,-0.41278294,-0.33398938,-0.09689057,-0.1094057,0.13290137,0.056901466,-0.15583305,-0.33339438,-0.063547224,0.038978275,-0.07933027,0.06971354,0.6275626,-0.1549792,-0.054298315,0.37745407,0.4824398,-0.051421743,0.02372128,0.061728965,0.077213466,-0.4805584,-0.21836495,-0.12135456,-0.050887797,0.5299167,-0.06792794,0.14761685,0.67800087,-0.31108224,-0.08722151,0.045697857,0.05173916,-0.076606296,-0.30262873,-0.3707401,0.58959144,-0.4021372,0.056632232,-0.14092483,0.781279,-0.039263293,-0.90755653,0.519517,-0.44093505,0.061153695,-0.21149671,0.73150015,0.5036052,0.5762065,0.22714704,0.7941068,-0.5429742,0.066640384,0.03729922,-0.41869965,0.37293705,-0.19726253,-0.22372526,-0.32751957,-0.16018523,0.19736254,-0.28492236,0.17128699,0.40787208,-0.4364178,-0.07809732,0.18364145,0.6008544,-0.37836263,-0.029157007,0.40639952,1.1868849,0.71801716,0.053253204,1.2070872,0.23375602,-0.18115418,-0.030630022,0.031389453,-1.0226918,0.24485534,0.31521958,-0.2864624,0.15620242,0.4116834,-0.2753725,0.5654895,-0.59940463,-0.07076482,-0.15069069,0.14646356,-0.18980412,-0.13244312,-0.5183651,-0.29386458,0.087009095,0.016194701,-0.13593529,0.37372684,-0.34530053,0.36018738,0.13218564,1.4817868,-0.095203854,0.23134993,0.08928016,0.47612646,0.083411954,-0.13874388,-0.16264999,0.22559136,0.31004825,0.20158117,-0.40907732,0.12264988,-0.010770659,-0.6053414,-0.18760325,-0.2784701,0.12936974,0.041208435,-0.28908092,-0.102041006,-0.014768253,-0.3995416,0.44466472,-2.5347357,-4.2577583e-05,0.08286145,0.3349917,-0.1698159,-0.20200993,-0.2781185,-0.33085737,0.3571497,0.48995474,0.54777163,-0.52857953,0.25519928,0.4139694,-0.42089614,-0.07687909,-0.6300743,0.101674415,-0.21269627,0.09334039,0.11259783,-0.13000558,-0.012091547,0.009324257,0.49673736,-0.18143336,0.049257364,0.32177678,0.22700821,0.13361019,0.13597527,-0.05474713,0.55593306,-0.6569019,-0.48569098,0.32343623,-0.25242034,0.23342575,-0.112021826,0.121937335,0.28851035,-0.34350792,-1.1568708,-0.6338177,-0.32153252,1.2533373,-0.41086254,-0.3961794,0.347468,0.0648287,-0.38315806,-0.020104121,0.47513953,-0.30721924,0.040861253,-0.8877111,0.046058815,-0.19918944,0.41960335,-0.043049995,-0.098155916,-0.6237143,0.486536,-0.20449615,0.51820177,0.54875064,0.098668635,-0.18751855,-0.42523003,0.06544256,1.0343678,0.23365285,0.23933989,-0.1632085,-0.10532007,-0.037482537,0.08132493,0.14295167,0.36988893,0.7821787,-0.04366915,0.04635465,0.28598174,0.03521076,-0.18880707,0.03848954,-0.39939347,-0.020592531,0.06678107,0.6817396,0.7316049,-0.13472645,0.23641217,-0.13944013,0.40675858,-0.14902413,-0.37208104,0.42426348,0.6064858,-0.054852594,-0.20630027,0.80819494,0.48320198,-0.43661848,0.67701,-0.6887873,-0.43624234,0.2263398,-0.04133739,-0.482536,0.16218667,-0.31809822,0.2970954,-0.84422034,0.506622,-0.25971195,-0.73083687,-0.6932865,-0.2205184,-3.9296906,0.24131215,-0.36711147,-0.19507484,0.071399815,0.02879149,0.37759018,-0.63886666,-0.42308545,0.118840516,0.2129283,0.64932555,-0.09236911,-0.034849547,-0.30553472,-0.04588896,-0.12190354,0.12600736,0.5009166,0.10305395,0.021303708,-0.5340281,-0.1747436,-0.21712895,-0.2682571,-0.0054962435,-0.6526143,-0.30868658,-0.090875946,-0.58404344,-0.4079747,0.6516126,-0.5408325,-0.031378895,-0.13703637,0.14708756,-0.19514048,0.4021754,-0.035520446,0.23868722,-0.098972924,-0.14759225,-0.13562371,-0.15138133,0.50049525,-0.017416188,0.39904818,0.48886672,-0.4468511,-0.036503196,0.70332855,0.5635366,-0.0811188,0.90532416,0.6163164,-0.16279274,0.12515377,-0.26182604,-0.16435595,-0.59391284,-0.4310873,-0.046606038,-0.5145514,-0.3600153,0.13708888,-0.40109026,-0.9371397,0.7118078,-0.085001774,-0.08182732,0.04234715,0.07631875,0.29758796,-0.3037646,-0.28934368,-0.19324253,-0.14552194,-0.49430522,-0.3124885,-0.6285479,-0.54585433,-0.22017288,1.2987021,-0.13217573,0.256071,0.19658756,0.045668025,0.06505301,0.14153679,-0.051138017,0.24275486,0.5409879,0.06542295,-0.57933086,0.41791764,-0.31920096,-0.08661284,-0.72664493,0.15771647,0.67710376,-0.885863,0.70385057,0.53764063,0.116743036,-0.05750357,-0.6340267,-0.41680694,-0.0023135692,-0.051157225,0.58732665,0.15817265,-0.9768458,0.4665587,0.46478343,-0.5703288,-0.707321,0.46134838,-0.17550842,-0.11777834,0.099986255,0.36611962,-0.44279352,0.017472705,-0.15379865,0.24397278,-0.31892654,0.3186982,0.23512982,-0.08282957,0.53510857,-0.3090396,0.05810937,-0.6697487,0.07890391,-0.46699095,-0.15613216,0.14844811,-0.15778495,-0.25098947,0.14338602,-0.026719982,0.57136816,-0.3647702,0.0844261,-0.12524125,-0.42086673,0.53975564,0.48773932,0.44942704,-0.47904125,0.65427667,0.0107628675,-0.23798585,-0.46537873,0.039932523,0.6666251,-0.037198458,0.30241182,-0.13002294,-0.019839851,0.3575311,0.7480554,0.2776338,0.5940809,-0.06327947,0.04118209,0.18767913,0.25381655,0.3114753,0.063204065,-0.5330423,0.08358172,-0.19175516,0.23257954,0.42770007,0.09122431,0.5732178,-0.23973982,-0.15439214,0.16482252,0.29095912,0.07062668,-0.937771,0.63688827,0.11152025,0.49710953,0.44136527,0.18770744,0.047754515,0.70359564,-0.22633488,0.15224393,0.113289714,-0.0804537,-0.48506382,0.58730996,-0.7854149,0.31375235,-0.020574043,-0.023204066,0.18082972,-0.23611677,0.52128047,0.7469952,0.011829744,0.22657739,-0.031962074,-0.1076322,0.059316237,-0.28006837,0.35606566,-0.52153385,-0.38736427,0.8000121,0.49710885,0.41513315,-0.13435207,-0.060486186,0.0984207,-0.045798767,0.23990728,-0.14291129,0.11822429,0.05508932,-0.77804095,-0.15147094,0.6832736,0.1222214,0.036237556,0.007943784,-0.12884708,0.44051203,-0.16520023,-0.15319003,-0.026243677,-0.37334085,0.11627377,-0.33135423,-0.24270813,0.4096876,-0.2625691,0.34785843,0.11856992,0.093047075,-0.49876466,0.31703004,0.16882657,0.9245103,0.09538426,-0.28398076,-0.29024366,0.3279246,0.35364595,-0.14879365,-0.055524994,-0.5657109,-0.18264551,-0.5980285,0.31233677,-0.19783486,-0.3930395,0.4277344,-0.044585586,-0.022191694,0.64009255,0.0748055,-0.22886948,0.056019317,-0.013836051,-0.32846367,-0.19439308,-0.3265902,0.26308298,0.08152119,-0.008485138,-0.04300795,0.093167126,-0.08421039,0.28674155,-0.02195979,0.27813008,0.26497835,0.26789725,-0.27297428,0.016411027,-0.101723544,0.633979,-0.08467996,-0.032285508,-0.32929465,-0.37488103,-0.13766187,-0.011405975,-0.1851647,0.3982675,0.1782964,-0.19812839,0.65758944,-0.09891429,1.0464697,0.025783896,-0.34635293,-0.10347509,0.66110545,-0.025857568,-0.10584434,-0.39020815,1.1197363,0.6707596,-0.21828283,-0.12046239,-0.4515724,-0.2612069,0.040637296,-0.22938336,-0.44545078,-0.040753655,-0.6983729,-0.108343065,0.26601592,0.5171447,0.07850857,-0.004317502,0.24483776,0.37836885,0.16126657,0.004014328,-0.32896277,0.07481819,0.43864974,0.29246256,-0.028337091,0.08069406,-0.36271027,0.3716141,-0.66598165,-0.013265002,-0.3413702,-0.012161228,-0.16287501,-0.38713276,0.09850189,0.017903993,0.29648927,-0.20212443,-0.09146715,0.07392872,0.4327514,0.2941221,0.23323731,0.87977904,-0.21553417,0.12372196,-0.010309957,0.31457743,0.8113823,-0.564164,-0.10936916,0.42387462,-0.14155509,-0.7268519,0.33525327,-0.32657564,-0.036151607,-0.26105747,-0.47446474,-0.46909437,0.29824144,0.11983956,-0.310646,0.19177754,-0.52381545,0.20448698,0.1157904,-0.15461934,-0.2833881,-0.38882804,0.30419573,0.77192134,-0.23211281,-0.48902512,0.18377669,0.30052122,-0.24137296,-0.41186666,-0.06977054,-0.27291206,0.118427396,0.13107683,-0.42978606,0.077360384,0.07480412,-0.28337404,0.26741633,0.26257026,-0.21188231,0.24800992,-0.22655983,0.11071267,0.717985,-0.1305718,0.10707068,-0.6767729,-0.53392637,-1.034,-0.21835135,0.53781265,0.24301617,-0.07405002,-0.49552843,-0.05341978,0.017115304,-0.099357665,-0.29207912,-0.31010962,0.38154235,-0.08049816,0.4394932,-0.15479128,-0.7116192,0.066877685,0.08129164,-0.08862278,-0.44449687,0.49891743,-0.048680197,1.0137185,0.051477402,0.24330501,0.2645708,-0.6926816,0.044086933,-0.2588912,-0.273843,-0.57770824,-0.02869281 +609,0.29323345,-0.075592674,-0.35328108,-0.11754967,-0.29475847,0.31878,-0.27381817,0.2858719,0.11421877,-0.6737004,0.051721845,-0.27305463,-0.11430549,0.3818577,-0.16078608,-0.7364989,0.35859933,0.021563265,-0.5305603,0.6035642,-0.27739885,0.54665655,0.19854951,0.18101753,-0.19911568,0.16642548,0.3587695,-0.004475332,0.27037314,-0.37498763,-0.14066447,0.0027524638,-0.54757595,0.5123564,-0.15749443,-0.4593687,0.07100326,-0.27523267,-0.2369192,-0.72848564,0.03586287,-0.7044177,0.5711247,-0.024630772,-0.18938288,-0.09522773,0.25070825,0.15524693,-0.027871218,0.017015252,0.15165506,-0.36058587,-0.15697005,-0.22212657,-0.37445015,-0.7321491,-0.47477117,-0.024318507,-0.7077405,-0.30858704,-0.22334626,0.25781348,-0.31944254,-0.038529474,0.015437058,0.499397,-0.25582507,-0.051262546,0.19912742,-0.54101336,0.18240269,-0.6548859,-0.1046868,-0.024922252,0.20564353,-0.1873428,-0.14151432,0.3271405,0.31459525,0.42784095,0.1383901,-0.24462283,-0.17815426,-0.337255,0.13405465,0.69620705,-0.050591018,-0.33731434,-0.18391348,-0.15209529,0.32490915,0.14127651,0.18037736,-0.34712008,-0.08620862,-0.13938446,-0.28948542,0.50522137,0.4552083,-0.4518769,-0.20462993,0.34386948,0.53833264,-0.13542552,-0.29875562,0.28573084,-0.10909598,-0.40142277,-0.0636499,0.25052273,-0.13506134,0.3802367,-0.091189146,0.16145825,0.69551575,-0.17502995,0.08376325,0.056233916,-0.05851508,-0.0696243,-0.14285626,0.029046748,0.41851753,-0.576331,-0.061064254,-0.48760822,0.8090428,0.09553676,-0.61166924,0.3909295,-0.5135955,0.05014214,0.06682391,0.56780225,0.556496,0.29503748,-0.039337754,0.5673968,-0.28759083,-0.046327095,-0.11323832,-0.14401731,-0.09856982,-0.16915716,0.0012626925,-0.3130544,0.045200475,0.06534518,0.094163775,0.019036243,0.31853646,-0.49301273,-0.17349994,0.2809762,0.9259015,-0.2172122,-0.030076776,0.6397815,1.2583363,0.66755116,-0.09062294,1.1717018,0.11754902,-0.15913178,-0.2564033,0.03863066,-0.22433697,0.105997495,0.4372054,1.1675838,0.17310683,9.7053395e-05,-0.15137485,0.36595392,-0.3790318,-0.15102224,-0.05667513,0.043119054,0.15945448,-0.092774,-0.2996568,0.07156842,0.06382503,-0.053629067,0.3008055,0.1853662,-0.26711324,0.5353376,-0.017913137,0.7736955,-0.06618954,0.21571621,0.20575489,0.45275894,0.2330842,-0.07976723,0.31417146,0.25679895,0.21249671,0.07032666,-0.5459238,0.09260218,-0.3996189,-0.343293,-0.22671941,-0.2035941,-0.37344527,0.071236394,-0.5349044,-0.04513957,0.03357416,-0.2982762,0.33691356,-2.6601584,-0.15727268,-0.40052265,0.26352766,-0.22086976,-0.2060612,-0.10120927,-0.509123,0.5106711,0.4259858,0.35004506,-0.5441176,0.39073643,0.5321537,-0.29845867,-0.19771819,-0.61518943,-0.030092334,-0.024406089,0.5180879,0.14830355,-0.13718967,0.03602438,0.04606237,0.5872861,0.080032565,0.044715863,0.35030064,0.2584496,-0.088431396,0.210381,0.106993295,0.44048405,-0.35282835,-0.15550725,0.34752288,-0.4344881,0.24028465,-0.23502061,0.1008942,0.4259446,-0.16194272,-0.6166794,-0.6636937,-0.66446686,1.1224312,-0.004858094,-0.6605641,0.15685199,0.30375972,-0.1655443,-0.14389853,0.6133079,-0.08029358,0.3968545,-0.43610114,-0.024390304,-0.16126837,0.252602,-0.085699454,-0.16632806,-0.4099646,0.7284298,-0.12035243,0.42629227,0.22879791,0.29655614,-0.33326095,-0.32951576,-0.08165081,0.9874612,0.5004601,0.16979556,-0.10099448,-0.0310816,-0.23528878,-0.43900463,0.007007781,0.824142,0.5349328,0.0066923904,0.09061114,0.35293266,-0.06221499,0.12004174,-0.13104956,-0.40621802,-0.1494944,0.13308622,0.61243963,0.29441842,-0.05330067,0.24518338,-0.08333506,0.33654246,-0.28573492,-0.40318674,0.3339438,0.71393627,-0.24597801,-0.24129058,0.37532958,0.42931437,-0.3898346,0.33714586,-0.74860096,-0.4629481,0.5284705,-0.16999362,-0.62130386,0.09758859,-0.2703623,0.08425285,-0.6718145,0.46459642,-0.44479683,-0.71367484,-0.52155644,-0.34044233,-3.3076947,0.18518531,-0.215418,-0.09271336,-0.20168938,-0.015634475,0.15447353,-0.41872382,-0.17615925,0.08035611,0.084069,0.57596827,-0.030580431,0.098229475,-0.42086548,-0.18153465,-0.10008704,0.42733827,-0.05396573,0.13952453,-0.192099,-0.07444574,0.17685196,-0.09765615,-0.48709726,0.069743276,-0.67409235,-0.31107065,-0.3169145,-0.4348235,0.012522014,0.7087452,-0.65231025,0.2296672,-0.1267985,0.11828115,-0.16521505,0.28914258,0.4014553,0.18258159,-0.0052754795,-0.14521667,-0.023981094,-0.50189036,0.54319173,0.22865714,0.2913022,0.49836206,-0.0011727916,0.06784016,0.35018834,0.3940089,0.055980273,0.8204805,-0.09349216,-0.00504845,0.44689423,-0.07133753,-0.3386469,-0.52706945,-0.14978926,0.07057405,-0.30590105,-0.4049376,0.11467187,-0.23095179,-0.7622345,0.42496857,0.16662346,-0.049184527,-0.12920308,0.4045089,0.2148339,-0.24289964,-0.10451155,-0.018192353,-0.03335152,-0.453145,-0.4191522,-0.6804687,-0.5334342,0.006818754,0.8982607,-0.17287013,-0.12209291,0.14952004,-0.048177335,0.0027156025,0.33320966,0.22771084,-0.18086758,0.33522612,-0.050148547,-0.6793173,0.52088654,-0.19476438,-0.28620276,-0.5281423,0.36036316,0.56121004,-0.6437866,0.37842163,0.36874145,0.056448996,-0.4800508,-0.4164464,-0.09394203,-0.027598348,-0.14420049,0.18490171,-0.0908648,-0.8190245,0.2750173,0.02679182,-0.25247225,-0.6195173,0.4868608,-0.1010406,-0.1348329,0.12763794,0.43642864,0.19921698,-0.06281118,-0.16253214,0.059571493,-0.5729278,0.11711647,0.14403747,0.056207117,0.6605806,-0.1430573,-0.30841723,-0.590121,-0.022378197,-0.61488616,-0.22196908,0.15577616,-0.17959788,-0.12413306,0.42754275,-0.14948475,0.40865812,-0.056616094,0.30434155,-0.09522454,-0.31859413,0.42611647,0.3727893,0.39559028,-0.25979772,0.8290323,0.09336852,0.019202795,-0.09038323,0.29657826,0.5334333,0.19841197,0.5490221,-0.25003046,0.08163113,0.11558982,0.8588645,0.28044525,0.38019603,0.22501609,-0.09421318,0.2447281,-0.11248016,-0.047420856,-0.014293308,-0.56130797,0.0105699105,0.017857943,0.036019754,0.4898655,0.041382875,0.6238104,0.035428405,-0.31673366,0.096321456,0.04793542,0.08127872,-1.1949561,0.22648014,0.13227156,0.8500579,0.15980431,0.09534816,-0.06541104,0.6650504,-0.22770788,0.073661186,0.21846727,-0.08067693,-0.093092225,0.58763504,-0.6526132,0.4451664,-0.057506654,0.002379011,0.119590506,-0.08086438,0.34100217,0.76742035,-0.2581999,0.037913885,-0.028913515,-0.2130945,0.031748567,-0.44219118,0.35966352,-0.075115964,-0.27911592,0.43481565,0.42746907,0.30065614,-0.24225152,0.00026058298,0.23523162,-0.028748006,0.26575556,-0.112463124,0.10917677,-0.28642294,-0.17922391,-0.15958226,0.6252933,-0.22525157,0.22358155,0.15666273,-0.113909885,0.23146793,0.2186339,0.04742134,0.010493478,-0.6475431,0.100179434,-0.23732972,-0.5453006,0.5394917,-0.34364194,0.20984162,0.18483195,-0.05862451,-0.14263198,0.5179878,0.25475377,0.64518696,0.13808744,-0.21077749,-0.41567093,-0.18526863,0.06218264,-0.4463188,0.18356773,-0.21156928,0.1260928,-0.6452613,0.26554915,-0.3396227,-0.19614543,0.27808633,-0.24609147,-0.09978269,0.4127345,0.19389065,-0.041214205,0.60963994,-0.19518448,-0.25403205,-0.016332593,-0.073763095,0.21839952,0.06798741,0.06371888,-0.12145685,-0.20884116,-0.14494093,0.12491239,0.12610286,0.21324308,0.30418062,-0.03279068,-0.42489937,0.15757506,0.20362003,0.24959531,-0.09293713,0.10321683,0.16332023,-0.58423394,-0.4312404,0.09097761,-0.08029231,0.267532,0.16596356,-0.3596894,0.7862321,-0.087496065,0.9830977,0.036437493,-0.43248472,0.15797679,0.54032797,0.12924942,-0.0036453712,-0.27402514,1.008823,0.5234376,0.05026675,-0.059138324,-0.26371577,-0.026141133,0.28847665,-0.23081125,-0.20338161,0.017785424,-0.598695,-0.13267492,0.116412,0.46065181,0.02927853,-0.16969517,-0.19421197,0.20694752,0.1216714,0.22812101,-0.76112777,-0.08338213,0.18723807,0.21602295,-0.22824714,0.1783329,-0.19461922,0.5041322,-0.71311957,0.26065183,-0.32919738,-0.16644038,-0.30285287,-0.19147597,0.23999791,-0.047993183,0.5048063,-0.19981171,-0.2731422,-0.14504376,0.3593752,0.27911967,0.19246228,0.7142113,-0.16205658,-0.06717182,-0.102221735,0.62236226,1.2516986,-0.35131904,-0.06746069,0.18887256,-0.5145733,-0.42425102,0.120689794,-0.5873166,0.22762778,-0.030672224,-0.39337566,-0.17301223,0.16374603,0.25941437,-0.04000615,0.24320044,-0.62475884,-0.1593512,-0.10477437,-0.6043115,-0.2907402,-0.32702342,0.45728728,0.52916014,-0.12551208,-0.25624868,0.029577902,0.36732954,-0.30753618,-0.92701894,-0.004242944,-0.14658572,0.2567586,0.13476194,-0.3570266,-0.0053728437,-0.059773836,-0.45706487,0.08564754,0.26463488,-0.3934939,0.04898255,-0.22366594,-0.013499507,0.529704,0.08724078,0.017532097,-0.74837583,-0.5555936,-0.7031875,-0.6387165,0.34401506,0.36181122,-0.07074655,-0.4449014,-0.29306445,-0.24591593,0.037291218,0.0048737866,-0.37538677,0.21541527,0.29751968,0.52601856,-0.25358576,-0.8943006,0.09671312,0.07230294,0.003184672,-0.48486564,0.12684797,-0.17013611,0.84661305,0.119189285,-0.3059342,0.2861015,-0.56602633,0.28196913,-0.41348648,-0.2653544,-0.7018477,0.12046893 +610,0.41211843,-0.15607926,-0.47161123,-0.15288071,-0.24370454,-0.21236633,-0.15624626,0.38315123,0.24206653,0.018989794,0.2087587,-0.3220966,-0.05677543,0.5484154,0.069185235,-0.9492224,0.07847778,0.24001956,-0.6635856,0.4766679,-0.4974204,0.17537497,-0.24104346,0.494316,-0.037069622,0.26365715,0.2410995,-0.15572414,0.10856001,0.06678739,-0.016542912,0.25667545,-0.73144764,0.10301983,0.13445807,-0.2930175,0.13679016,-0.28551835,-0.42380124,-0.72379786,0.12667519,-0.4472547,0.4630374,0.27016118,-0.3091986,0.11488702,-0.09149185,0.5509625,-0.3815141,0.093845844,0.19127974,-0.06525883,0.15882252,-0.38575935,-0.19142021,-0.42202428,-0.55668604,0.023506897,-0.6404829,-0.35614678,-0.14850444,0.10563822,-0.3567301,-0.21303254,-0.045159645,0.33751705,-0.4129597,0.20267668,0.37700903,-0.12524381,0.19589706,-0.33526665,-0.06328095,-0.0984957,0.10021362,-0.010847948,-0.20985356,0.3405276,0.066612385,0.3786751,-0.09691932,-0.1612292,-0.25158525,-0.021490475,0.020928198,0.7172432,-0.14742164,-0.28069866,-0.14710371,-0.0119152395,-0.28482604,-0.048797227,0.07869377,-0.60781485,0.028699728,0.04376068,-0.21422544,0.41909882,0.43071157,-0.46451676,-0.43060982,0.35385817,0.56304127,0.17136294,-0.1343349,-0.028368868,0.21868826,-0.5665262,-0.20048738,0.14680097,-0.12996624,0.36152768,-0.03185881,0.27476886,0.78188366,-0.253621,-0.02909655,-0.09442463,0.060360238,0.19419529,-0.31316206,-0.18868436,0.26844406,-0.44961292,0.009111093,-0.14775842,0.8497963,0.23808195,-0.6703949,0.5212359,-0.6853018,0.16018362,-0.19928603,0.52495897,0.69155425,0.22863096,0.22076502,0.52480286,-0.3814921,0.21133427,-0.06460252,-0.41357535,0.33737087,-0.12742795,0.22277997,-0.577939,-0.19075552,-0.11038043,-0.13210101,0.050533775,0.2806052,-0.5860692,-0.11541615,0.18988802,0.9948359,-0.31360877,-0.03173336,0.2102177,1.0288895,0.9127651,-0.06325156,0.9786033,0.45663044,-0.21600766,0.49398187,-0.4886777,-0.72239316,0.15822837,0.27819628,-0.26652768,0.46768397,0.04500849,-0.09762621,0.46730116,-0.14525115,0.20696999,-0.21935548,0.37959635,0.1837534,0.061761748,-0.2993228,-0.2985693,-0.09144511,-0.12332382,-0.100009464,0.39779463,-0.34933242,0.051934242,-0.14560457,2.0971909,0.15236232,0.15082711,0.046943925,0.72193414,0.23834354,-0.13153139,-0.19845852,0.4590868,0.17161714,0.19327493,-0.587266,0.30651826,-0.28412697,-0.36619776,-0.11104704,-0.3001026,0.13507734,-0.1245035,-0.46212494,0.046584968,0.080184154,-0.040600196,0.5443663,-2.6405087,-0.23550302,0.09127493,0.4605035,-0.31519318,-0.24927591,-0.19490057,-0.32562244,0.1127112,0.4023176,0.4633784,-0.58948654,0.59367853,0.4181004,-0.34452638,-0.1250363,-0.54527915,-0.04132676,-0.07115263,0.32884547,-0.0807607,-0.0010813231,0.034074727,0.2529055,0.3142359,-0.17703713,0.0021413767,0.25895578,0.3832939,0.18496938,0.40221146,-0.031863216,0.30480188,-0.34730604,-0.22782354,0.26106352,-0.27752677,0.23587795,0.0067736264,0.037343454,0.36196962,-0.1834898,-1.0246395,-0.3975112,-0.0603905,0.9585394,-0.44143477,-0.1594919,0.25273064,-0.11631984,-0.033149734,-0.16064501,0.24897575,0.055787142,-0.10532215,-0.6991318,0.22206949,-0.071456656,0.31414372,0.21190895,-0.055005584,-0.13104989,0.48836955,-0.07909222,0.1548335,0.25516975,0.18099453,-0.1670631,-0.48848403,0.16344275,0.67982966,-0.003916437,0.1521956,-0.22831091,-0.22056888,-0.11235457,-0.009580385,0.053581342,0.31112537,0.7989569,-0.16896936,0.09021434,0.41454637,-0.25883907,-0.091600396,-0.3087216,-0.4752858,0.14925107,0.08934424,0.499802,0.83566207,-0.16658163,0.55161947,-0.022570247,0.027534338,-0.16540915,-0.3852768,0.36533478,0.9388511,-0.18283202,-0.05137551,0.35187635,0.42197388,-0.626545,0.42204884,-0.68464476,-0.16032459,0.60669893,-0.2455031,-0.2670151,0.15226658,-0.21867366,0.02900085,-0.7406652,0.5961458,-0.19269952,-0.13112353,-0.58123356,-0.17629443,-3.832935,0.33018288,-0.30744007,-0.20324421,0.11352716,0.28877485,0.119591855,-0.66453195,-0.21061206,0.04929262,0.050043866,0.5057121,-0.1292146,0.21972452,-0.37161398,-0.26366445,-0.21462299,0.2138537,0.08028477,0.2832984,0.17425181,-0.45390186,0.06586149,-0.13039072,-0.24600679,0.23653013,-0.79509854,-0.41837275,-0.18489288,-0.7832971,-0.27844775,0.72675097,-0.20284532,-0.022972269,-0.2917888,0.0035207977,-0.11781669,0.47262174,0.30567124,0.042665698,0.022331,0.0057637203,-0.24181728,-0.43854332,0.092718795,-0.0018284415,0.44180024,0.21843149,0.13611864,-0.011008512,0.7897995,0.4746946,0.18895578,0.53656393,0.520317,-0.22251816,0.28527912,-0.4125515,0.030981584,-0.373042,-0.47162792,-0.19033824,-0.25913194,-0.49975178,-0.010720941,-0.2814512,-0.5016641,0.65247905,-0.1697414,0.06478394,0.17939347,0.19571644,0.38032663,-0.17719902,-0.109787315,-0.0666719,-0.124187894,-0.49123278,-0.18297166,-0.6313057,-0.5567451,0.7497997,0.8484028,-0.4113003,-0.098524526,-0.03357717,-0.16802905,-0.14677711,0.077584125,0.065753266,0.25432837,0.18358222,-0.12664284,-0.64179647,0.2865811,-0.12492239,-0.050536633,-0.72986245,0.07703497,0.77904683,-0.7267357,0.6361156,0.026550086,0.17419355,0.23838297,-0.41319713,-0.33017722,0.34341872,-0.123157784,0.16272664,-0.14693294,-0.7797477,0.26565886,0.4396958,-0.6180952,-0.6457425,0.4292388,-0.053995956,-0.45055148,-0.09302478,0.23881713,0.17348637,0.03112811,-0.3907008,0.29905903,-0.6585723,0.056105614,0.21634273,-0.10531329,0.4110758,-0.003135226,0.029943444,-0.5432979,0.06584911,-0.35361984,-0.5134382,0.3006178,0.13064776,0.081253305,0.307886,0.12920162,0.24232188,-0.16117775,-0.013253703,0.079384625,-0.18513441,0.47521695,0.437981,0.4149524,-0.5490939,0.53347117,-0.022340585,0.089913905,0.17687148,-0.06742913,0.38491222,0.03494534,0.36975124,0.14322966,-0.20216517,0.22802506,0.84237045,0.25896636,0.6563828,0.098151416,-0.019935422,0.32685068,0.054256137,-0.019305099,0.13950667,-0.27194393,0.014825425,0.15764295,0.3359829,0.59179735,0.16345789,0.30274776,-0.11502547,-0.49135092,0.12023151,0.38244885,0.07989465,-1.0421044,0.18507509,0.36714217,0.5569339,0.5323475,0.20289169,0.08581311,0.6168079,-0.15637921,0.13760221,0.14674239,-0.25243026,-0.668003,0.6629603,-0.62498534,0.499907,-0.18875322,-0.0091259265,0.029699434,0.049490735,0.31514466,0.45077142,-0.159356,-0.13699475,-0.105403535,-0.41631863,-0.19039312,-0.3869875,0.4465388,-0.5632672,-0.3306719,0.39052287,0.623554,0.10960722,-0.19704928,-0.033340253,0.038297597,-0.13675112,0.2502966,-0.09500055,-0.13447298,0.22024494,-0.79075056,-0.27627307,0.67970973,-0.39422658,0.053547528,-0.176119,0.107576415,0.34887332,-0.42837515,-0.20226689,0.03683659,-0.65732986,0.24071763,-0.12822194,-0.36521712,0.6320546,0.10047775,0.19937585,0.097433425,0.072473936,-0.36025518,0.6450077,0.051084276,0.7730898,-0.0204059,-0.10287185,-0.48067915,0.1592684,0.0041057114,-0.1060826,-0.06151452,-0.47379658,-0.032668218,-0.49797535,0.33106402,0.029839927,-0.2909259,-0.2126767,-0.14928247,-0.020458883,0.70302963,-0.09984701,-0.14510436,-0.34077236,-0.38696614,-0.2938727,-0.052649964,-0.05779113,0.2836084,0.13385591,-0.24937734,-0.042572424,-0.23321702,-0.12445646,0.6215126,-0.0067796707,0.37130177,0.3402684,0.45112723,-0.20764971,-0.22200957,0.11484866,0.43361044,-0.015399185,-0.044126164,-0.2777235,-0.118239425,-0.36743668,0.13125,-0.32444084,0.28742248,0.14924483,-0.5998743,0.8931628,0.09041163,1.3917384,0.017509267,-0.18882689,0.27958018,0.34924123,0.2590576,0.19048953,-0.59615195,0.93777794,0.6917996,-0.11668228,-0.3733261,-0.24953395,-0.6062748,0.2485753,-0.37774116,-0.16293867,0.11505723,-0.57266086,-0.16860789,0.2263956,0.27821,0.15025215,-0.14164992,0.112047486,0.13258623,0.14352816,0.14866069,-0.39497498,-0.09819169,0.15375605,0.50816053,0.10616877,0.273347,-0.38258684,0.44028953,-0.39882344,0.3509324,-0.51025325,0.086726636,-0.1193906,-0.21307902,0.19975573,0.21249677,0.38160193,-0.24638166,-0.25453663,-0.122038245,0.4861003,0.3143936,0.2408548,0.7690369,-0.19220167,-0.040521294,-0.0698719,0.53206515,0.8827433,-0.36192867,-0.36577204,0.4891817,-0.20395827,-0.9361385,0.33539692,-0.3229569,-0.07187354,-0.16761364,-0.33302638,-0.55241627,0.20260796,0.027081447,-0.06037918,0.011012581,-0.62275547,-0.1986175,0.1959558,-0.37926236,-0.24510002,-0.4085827,0.22734575,0.9311423,-0.30710307,-0.30027273,0.086574346,0.3218542,-0.11736769,-0.46780795,-0.1377504,-0.57279855,0.17690995,0.2729106,-0.23583741,-0.05965869,0.1129284,-0.41836455,0.09922966,0.28152773,-0.38230804,0.19493446,-0.011921059,-0.008444553,0.973242,-0.18076023,-0.06710827,-0.72239685,-0.5378361,-1.0075186,-0.43589133,0.7345921,0.13220674,-0.09994722,-0.5875983,0.04829488,0.15829249,-0.39644116,-0.11865913,-0.6313482,0.30601263,-0.018823607,0.20542021,-0.018559432,-0.93303895,-0.018370371,0.31290185,-0.30401677,-0.8781653,0.41258004,-0.3451286,1.077148,-0.0991547,0.058368444,0.23174238,-0.15583509,-0.06957403,-0.4940072,-0.4650258,-0.7168165,0.0349686 +611,0.39145285,-0.21813066,-0.47650173,0.0025174986,0.15215217,0.09752135,-0.07173398,0.47080785,0.22729169,-0.4599621,-0.062143855,-0.32216915,0.036671855,0.43057644,-0.19253254,-0.3230336,0.04205855,-0.021973848,-0.39991018,0.40330407,-0.45893717,0.19924678,0.05663868,0.3949569,0.16034736,0.3233463,0.22795394,-0.17462625,-0.14916536,-0.27404034,0.04118413,0.07472832,-0.33691514,0.37762007,-0.09069061,-0.14493324,0.21410912,-0.41069746,-0.52626795,-0.66553026,0.25872582,-0.64522165,0.1772685,0.14674315,-0.11884297,0.056179818,0.04022093,0.17950581,-0.32813746,-0.21319373,0.15144752,0.061412178,0.026504664,-0.19487652,-0.05007251,-0.10889594,-0.3879049,0.07392621,-0.33895397,-0.194807,-0.21030356,0.14418305,-0.29867423,0.03650572,-0.13991138,0.479002,-0.3823476,0.040772017,0.06872116,-0.38217852,0.2293063,-0.5279951,-0.43431303,-0.060389068,0.1372054,0.008799881,-0.11353293,0.20739841,0.15437078,0.32576373,-0.034509327,0.14450066,-0.26397592,-0.31998587,0.36079195,0.4830808,-0.050714713,-0.56430733,-0.053717878,-0.11891627,0.06151486,0.0778225,0.20907417,-0.5067546,-0.15376468,-0.06838889,-0.34331954,0.19224915,0.5678208,-0.2760811,-0.14732678,0.19981398,0.31727824,0.16382948,-0.11260009,-0.14175364,-0.012209437,-0.450789,-0.14385563,0.003076567,-0.10213229,0.47195113,-0.07986982,0.42411754,0.6218213,-0.21738425,-0.0037643635,0.040946312,0.09416739,-0.19490239,-0.33060673,-0.11501341,-0.039851125,-0.22077097,0.0030586927,-0.18918365,0.9250384,0.27589658,-0.5677492,0.49767017,-0.42247164,0.14585426,0.01704027,0.6030757,0.42581046,0.23730366,0.39579093,0.629819,-0.4435785,0.050387915,-0.14602467,-0.36993524,-0.059029076,-0.07322097,0.16609089,-0.2547119,-0.04624451,0.22936326,-0.14740148,0.013887816,0.3482134,-0.3291167,0.0067256186,0.18576226,0.8063328,-0.2170901,0.0957427,0.54816157,0.9388968,0.8670619,0.1100368,1.1527009,0.04204674,-0.37219912,0.13733242,-0.2005015,-0.8955588,0.33946127,0.38275564,0.57917404,-0.053940687,0.13087437,-0.11879889,0.3278626,-0.46899077,0.1931127,-0.09418957,0.53814375,0.19327945,0.053339563,-0.28499582,-0.38052306,-0.1704461,-0.1362481,-0.006441639,0.14860997,-0.15140411,0.26947695,0.038394697,1.8811809,-0.17020294,0.16739652,0.19736488,0.56189144,0.124801144,-0.12491496,-0.06348653,0.4530688,0.18644848,0.03702482,-0.5954818,0.19334868,-0.1517395,-0.5003856,-0.056420386,-0.29294887,-0.14048265,0.08171614,-0.23357725,-0.15594536,-0.13236138,-0.34414726,0.35079002,-2.9158733,-0.2534158,-0.051261894,0.32298422,-0.27880353,-0.18699512,-0.09590356,-0.47358888,0.41199324,0.3687682,0.52431417,-0.72652113,0.08988368,0.459507,-0.27523878,-0.26110822,-0.548634,0.08492216,0.024021883,0.2692517,-0.0011430887,0.039168928,-0.27665088,-0.04637549,0.22328351,0.011746028,0.06629369,0.31205165,0.23928033,0.069614284,0.44961944,0.0347588,0.41196358,-0.35801667,0.044749543,0.31561285,-0.425491,0.29964516,0.004878693,0.118245676,0.36234173,-0.452487,-0.5406474,-0.4942481,-0.35223883,1.2548999,-0.2360265,-0.48895285,0.37962535,-0.36547723,-0.31132507,-0.27009863,0.4795157,-0.10118936,-0.10884265,-0.7766828,0.08712174,-0.16381058,0.35221392,-0.04492239,-0.114050336,-0.3143139,0.67819256,-0.07235889,0.5349141,0.3666979,0.0020649363,-0.32227919,-0.3405918,0.057383418,0.84884495,0.2989798,0.09673422,-0.06893931,-0.14576952,-0.24259117,-0.2736964,0.073568776,0.5445429,0.63524354,-0.0025602807,0.17802572,0.3244434,-0.056140907,-0.02630441,-0.06847758,-0.24413157,-0.17017816,-0.07779138,0.6557447,0.6496302,-0.23289442,0.31806943,-0.15498734,0.30445167,-0.112710424,-0.31734127,0.42738375,0.41795382,-0.114493534,-0.17702524,0.424191,0.38710743,-0.4297528,0.2565389,-0.4324045,-0.30693105,0.48173,-0.099731125,-0.4003021,0.3806814,-0.29889053,0.17687438,-0.87125814,0.28097066,-0.3106095,-0.41247156,-0.47918144,-0.16419147,-3.0796645,-0.016022168,-0.19957222,-0.2710546,-0.0726108,-0.008882882,0.037651993,-0.38989368,-0.47771567,0.090541765,0.09698307,0.4442924,-0.104851194,0.017295433,-0.116403386,-0.25269228,-0.42782655,-0.047024947,-0.060618557,0.42435122,-0.016600784,-0.37993607,-0.010442393,-0.16439143,-0.25653908,0.24634908,-0.44632837,-0.56089115,-0.04477292,-0.37322256,-0.51491636,0.59317845,-0.24723743,-0.04891102,-0.088048235,-0.08177516,-0.30106094,0.30714878,0.14146924,0.085353054,-0.10271395,-0.032843538,-0.21796623,-0.25035793,0.19815603,-0.045828912,0.30574635,0.37876275,-0.053534415,0.15269186,0.2873915,0.5481732,-0.034698837,0.6329311,0.26580015,-0.03492379,0.29677418,-0.3563175,-0.29244852,-0.3028056,-0.101358645,0.2688988,-0.33264357,-0.50569236,-0.10972068,-0.2533918,-0.49846223,0.41893637,0.13490807,-0.11011732,0.12999447,0.071380936,0.50437456,0.18261495,-0.041730028,0.13072923,-0.02659583,-0.77112234,-0.40487385,-0.7927611,-0.37501717,0.3270406,0.76866746,-0.23824467,-0.14457512,0.048562884,-0.43174362,0.019428972,0.062233474,0.015239805,0.14922997,0.42696598,-0.081468835,-0.58474976,0.53117925,-0.12120985,-0.26428267,-0.4550164,0.16932242,0.6889184,-0.73101354,0.5470432,0.13223389,0.20404895,-0.0950695,-0.2804887,-0.27029335,-0.13327655,-0.2032838,0.27685526,0.12883335,-0.5882453,0.39033735,0.35571772,-0.08143974,-0.7489234,0.24081549,-0.047494035,-0.28613696,0.043412667,0.36195886,0.03957941,0.08954319,-0.09985896,0.18685979,-0.38146874,0.26878172,0.33258608,-0.1688887,0.4597705,-0.21566495,-0.14299099,-0.5301559,-0.076232985,-0.4695142,-0.29578573,0.2977572,0.22036386,-0.035335906,0.02696531,0.118363634,0.39696726,-0.18718778,0.057743624,0.023319472,-0.020943156,0.3022545,0.34459612,0.5507299,-0.41643584,0.5928116,-0.039118055,0.008279802,-0.03331832,0.055198446,0.18948695,0.25351685,0.28798166,-0.099615015,-0.28465268,0.28952596,0.84487164,0.20502919,0.48380074,0.08117839,-0.015039123,0.379025,0.113246195,0.16085984,0.07296197,-0.5071213,-0.02280068,-0.17313583,0.25354224,0.32449192,0.23903894,0.38013744,-0.08401803,-0.37660334,0.020621192,0.34607512,-0.07196079,-0.87988937,0.4165818,-0.0013558039,0.6941539,0.61416173,-0.13622645,0.12649514,0.67372763,0.03416627,0.14235121,0.057137366,-0.05318654,-0.59865546,0.5814896,-0.55674326,0.45979106,-0.12779592,-0.011804732,0.050339878,-0.04943445,0.4075356,0.62740827,-0.1510365,-0.07779474,0.12642597,-0.21300608,0.022125725,-0.5259213,-0.03218887,-0.59374964,-0.40674365,0.36204705,0.46863806,0.22520535,-0.1851298,0.10485571,-0.02369055,-0.07967914,0.22472389,-0.12900434,0.11249856,-0.071353994,-0.79598373,-0.24632007,0.5826943,-0.020180285,0.20505309,0.027407307,-0.28889793,0.29556605,-0.094939485,-0.011436572,-0.12128579,-0.48257595,0.06316248,-0.23022017,-0.45131907,0.20177555,-0.039527223,0.4024722,0.25561708,0.020614633,-0.21726483,0.38390842,0.10423791,0.79713947,-0.19836149,-0.2168315,-0.4449329,0.030934265,0.13999914,-0.1769135,-0.05636773,-0.22447623,-0.14572114,-0.51046467,0.5623233,0.1560116,-0.017187906,0.05196563,-0.23017432,-0.09369279,0.60761344,-0.14486924,-0.04845095,-0.17844321,-0.15082887,-0.14500394,-0.081908785,-0.053811606,0.17085226,0.3628472,0.028326131,-0.012220942,-0.15270191,0.0025697579,0.20947662,0.056123503,0.24681844,0.28913382,0.10204098,-0.37252814,-0.15320419,0.056213554,0.43835053,0.23260242,-0.07779924,-0.14595367,-0.5076343,-0.30171213,0.29825544,-0.164924,0.3289429,0.1468939,-0.4058723,0.5964636,0.09089314,0.96690273,0.049024608,-0.08363542,0.15185556,0.4682079,-0.03887135,0.066545114,-0.37848103,0.7765033,0.4544547,-0.19043352,-0.16491748,-0.30615076,-0.030180344,0.13508366,-0.15356845,-0.06524752,-0.06491485,-0.50159985,-0.20759334,0.017737687,0.24688278,0.15310396,-0.11252535,-0.043980792,0.2145551,0.058710776,0.33756006,-0.36092183,-0.25677273,0.25128314,0.13626918,0.050788563,-0.012278814,-0.42745063,0.5467633,-0.56569135,0.19951919,-0.17935053,0.1013434,-0.09069916,-0.25807276,0.14708431,-0.06513761,0.36918932,-0.48442173,-0.38281283,-0.37320423,0.41310963,0.24607341,0.22242682,0.5329387,-0.10412554,-0.091489516,0.16591732,0.63393825,1.123995,-0.14362134,-0.05767582,0.38428178,-0.2795862,-0.5426896,0.2995915,-0.20509744,0.1370485,0.020734727,-0.19851948,-0.66388357,0.25207308,0.30910012,-0.05486061,-0.012524871,-0.5788106,-0.36955553,0.25315574,-0.4743582,-0.23402461,-0.56810385,-0.16051014,0.6256255,-0.3011449,-0.1200566,0.19111457,0.16165155,-0.42122012,-0.53427,-0.12392323,-0.42545822,0.3714334,0.023262732,-0.24464296,-0.36230367,0.16554826,-0.33687797,0.081858024,-0.15448584,-0.34646904,0.047422472,-0.2990915,-0.18468414,0.90812963,-0.18282866,0.16145553,-0.5041593,-0.4225075,-0.68632114,-0.36211586,0.7296412,-0.21053864,0.00691805,-0.40834618,-0.1254107,0.024023,0.034197196,-0.10611624,-0.28206697,0.46917862,0.078009754,0.32036883,-0.028514963,-0.7619054,0.26054317,0.07153439,-0.1176288,-0.52155626,0.5863864,0.0058124615,0.554979,0.091408335,-0.10431673,0.38011187,-0.47447363,0.05330475,-0.1896469,-0.30033937,-0.59022415,0.2705023 +612,0.30581814,-0.18538971,-0.42500803,-0.0972604,-0.25226155,-0.035548266,-0.1152522,0.5328977,0.1983725,-0.18382896,-0.15740538,-0.087992616,0.060353715,0.60599023,-0.13278213,-0.61519706,-0.13240777,0.07793736,-0.59981567,0.54410636,-0.5801276,0.44310918,0.09892787,0.40694776,0.012097806,0.46818593,0.3001122,-0.1847888,-0.023508396,0.089453444,-0.06521887,-0.009701254,-0.31107044,0.104286954,-0.05889811,-0.2770048,0.18715668,-0.4109271,-0.19475083,-0.738978,0.22389671,-0.6373901,0.469933,-0.029120773,-0.3186238,-0.018718788,0.27601936,0.3782689,-0.40737644,0.031282492,0.14820863,0.008835473,0.00917694,-0.20373674,-0.029453704,-0.47855872,-0.44619003,-0.12124306,-0.5067662,-0.32927796,-0.032984756,0.16048063,-0.35512567,-0.0789366,-0.04790599,0.31726074,-0.41473898,-0.22298478,0.37232596,-0.16498102,0.3010283,-0.5049115,-0.030237615,-0.07040219,0.46226385,0.014912188,-0.062078793,0.42675075,0.30735454,0.37117758,0.14892547,-0.27226117,-0.20273015,-0.19768442,0.08304321,0.48382875,-0.1478291,-0.34039775,-0.19730496,0.12581746,0.11751081,0.35456586,0.12820235,-0.050134506,-0.08033004,-0.09462941,-0.16308342,0.43772963,0.37423357,-0.1611832,-0.33966702,0.46909043,0.6753065,0.26190108,-0.21358517,0.02671889,-0.029626893,-0.53943044,-0.17446278,-0.06432671,-0.13507584,0.5104492,-0.16115414,0.1321866,0.78372633,-0.1986986,-0.0019766134,-0.020608097,-0.05976786,-0.12028531,-0.21589196,-0.1755109,0.10532328,-0.5919107,-0.054614026,-0.18003152,0.5679353,0.24951196,-0.5636098,0.38375273,-0.42586184,0.107635595,-0.06257929,0.6053668,0.623314,0.3311684,0.24225743,0.78075665,-0.33356136,0.095338225,0.08207574,-0.402837,0.21128877,-0.28078863,0.12935594,-0.5831963,0.009536402,-0.017615335,0.019918863,0.06165323,0.2950962,-0.54876834,-0.042641263,0.24993332,0.77199537,-0.2688286,-0.014982598,0.7159594,1.1887671,1.1073629,-0.041995235,1.1279433,0.22246194,-0.35434726,0.26876554,-0.43615666,-0.6162602,0.16571765,0.42179957,-0.22123735,0.42916822,-0.14700891,-0.106171645,0.38634685,-0.42063436,0.0858999,0.018217515,0.37313125,0.068503276,-0.14807375,-0.56723493,-0.18610898,-0.12639658,-0.0037368834,0.20510633,0.3122239,-0.30831414,0.4337537,-0.19018146,1.2854033,0.021235595,0.11828656,0.004947213,0.50272113,0.24625584,-0.1167711,-0.15296127,0.3880224,0.40053925,0.09084677,-0.5006354,0.34423795,-0.4374575,-0.47076967,-0.09791814,-0.329547,0.019694196,-0.06776556,-0.40401262,0.031968318,-0.048455946,-0.2991232,0.31506544,-2.9130197,-0.35877392,-0.18465199,0.23329923,-0.27615938,-0.08587229,-0.0491372,-0.47221023,0.3225719,0.2515846,0.5176659,-0.6120243,0.4166028,0.45751032,-0.4953792,-0.16790928,-0.65119886,-0.168627,-0.066173844,0.55262524,0.08272277,0.075519525,-0.0929975,0.35088745,0.6293191,0.07265227,0.14963529,0.20781024,0.28221065,0.13311979,0.48863024,-0.06089843,0.6190596,-0.27987882,-0.08298967,0.28409633,-0.2659727,0.23225696,-0.2278901,0.21309687,0.47012612,-0.3912488,-0.93915445,-0.5053643,-0.38996425,1.018034,-0.22840963,-0.1788753,0.38265684,-0.26903492,-0.04809952,-0.033264957,0.5281085,-0.14899829,0.07663973,-0.6525436,0.026917154,-0.0673031,0.059207793,0.00096307695,-0.11010574,-0.39577174,0.6087466,0.06846297,0.6662399,0.21596766,0.21817912,-0.24248813,-0.50797254,0.036431883,0.74708885,0.5228342,-0.07653475,0.0043195956,-0.1979399,-0.16754213,-0.13238047,0.035885923,0.47370216,0.91969097,-0.07860648,0.11560812,0.19052105,-0.06563455,0.07027991,-0.033535488,-0.18165834,0.10636884,0.116531186,0.42849293,0.67389965,-0.15987937,0.40949392,-0.19629775,0.4804726,-0.14285181,-0.5242905,0.5545789,0.6093797,-0.25725266,-0.038730502,0.51743776,0.47589418,-0.309295,0.46577668,-0.6694077,-0.24997279,0.5994984,-0.17311397,-0.31599495,0.22195232,-0.1812959,0.20643692,-0.92291653,0.39335746,-0.35472903,-0.50852615,-0.46586064,-0.10706364,-3.5678196,0.14248967,-0.18682969,-0.22374837,-0.09329666,0.053940576,0.31485152,-0.8349704,-0.5889563,0.17671241,0.22235036,0.6856866,-0.067624815,0.056025583,-0.25459146,-0.26939207,-0.1672025,0.26194653,-0.034134846,0.22226283,-0.043528106,-0.52725947,-0.05300499,-0.10769081,-0.68519086,0.13109325,-0.5762554,-0.44297844,-0.1735914,-0.6304841,-0.2673536,0.71679896,-0.1514274,0.09048275,-0.17577717,0.10103103,-0.12518847,0.17501004,0.10474666,0.10818331,0.1031184,-0.03623737,0.1771648,-0.36199754,0.36132783,0.10269802,0.4813457,0.14329131,-0.07681726,0.26009017,0.61742055,0.65358603,-0.20235644,0.8782008,0.4088921,-0.12874037,0.23552613,-0.30774668,-0.16126396,-0.4968025,-0.56306136,-0.04887523,-0.35010186,-0.6525281,-0.035438947,-0.34035665,-0.73063266,0.5688266,-0.015011822,0.40161952,-0.1632524,0.07104779,0.3680466,-0.3655718,0.11202147,-0.07220618,-0.18976723,-0.5102882,-0.183285,-0.6964251,-0.56331986,0.032660194,0.851631,-0.42457074,0.1035725,-0.18159845,-0.3083479,0.09536208,0.021340264,-0.04277692,0.21290493,0.24557172,-0.09960544,-0.7322927,0.47994336,-0.16336386,-0.048803955,-0.44863015,-0.006585317,0.6711894,-0.6106744,0.50681055,0.34595484,-0.062904455,-0.10979607,-0.52759886,-0.15545857,0.06263027,-0.03274652,0.41430995,-0.024883565,-0.7347236,0.49428558,0.2897098,-0.61791795,-0.62883204,0.40895844,-0.078682765,-0.27779636,-0.06879854,0.29500952,0.1676584,-0.043391388,-0.445278,0.21363644,-0.38245365,0.24957773,0.21068028,-0.06260144,0.41830084,-0.035976615,-0.16508529,-0.7832181,-0.08441361,-0.5173942,-0.21967754,0.29697165,0.018963741,-0.011662317,0.064399526,0.2250512,0.3057364,-0.28221014,0.1568717,0.10870361,-0.43404007,0.27160415,0.43369833,0.40627363,-0.34321132,0.5128115,0.1580974,-0.21683232,-0.022066662,-0.11718941,0.43835422,0.04682546,0.38464254,-0.20163345,-0.13757747,0.52799684,0.67879784,0.09437994,0.3071862,0.14552006,-0.16281162,0.2487578,-0.07367621,0.18254833,0.14190066,-0.35140195,0.025354518,-0.06895642,0.1559786,0.594862,0.36855382,0.23245016,0.100418635,-0.27692157,0.08118538,0.2057642,-0.016632905,-1.2775002,0.5837813,0.30384827,0.7494659,0.40548056,0.13398553,-0.19052815,0.7120964,-0.19352989,0.046108983,0.48197195,0.022514751,-0.56977654,0.6815319,-0.79030323,0.48240253,0.019266266,-0.123102374,0.13434123,-0.06559489,0.39740863,0.77705497,-0.09316175,0.047217455,-0.045213647,-0.19777603,0.07690753,-0.28376478,-0.011424533,-0.49199912,-0.3520449,0.54369384,0.4369503,0.18814178,-0.017718708,-0.052606147,0.12806614,-0.15319379,0.29873595,-0.11774312,0.015775422,-0.0022309977,-0.56500757,-0.19265762,0.44156286,0.046944443,0.19197628,-0.1969382,-0.20400569,-0.07840268,-0.2788394,-0.008829244,0.043076497,-0.6544255,-0.08766328,-0.18789144,-0.32368135,0.5115391,-0.3967747,0.24423826,0.089648426,0.11052697,-0.19990288,0.21553817,0.092029884,0.6546202,-0.026643869,-0.34232855,-0.25911137,0.14803325,0.16876402,-0.27868396,0.16950719,-0.46219084,0.069944374,-0.57348686,0.6761707,-0.18650202,-0.2679202,0.04114657,-0.37179193,0.019657446,0.4886228,-0.16518746,-0.30675796,-0.1759899,-0.054048445,-0.33818313,-0.039703038,-0.28624058,0.24371949,0.26782766,0.04433332,-0.11356962,-0.07399945,-0.15410297,0.61166143,0.07915448,0.436749,0.25101894,-0.05984317,-0.16605027,0.025810016,0.23605861,0.3640065,0.27835113,-0.025034487,-0.45801014,-0.29654756,-0.23816599,-0.057819076,-0.16690227,0.19496918,0.002471779,-0.059376497,0.8268786,0.08600497,1.3723606,0.05305418,-0.3582758,-0.002629476,0.60415184,-0.14090152,0.026150975,-0.34544137,0.99476826,0.5552246,-0.28037566,-0.15671816,-0.45808968,-0.056453783,0.43949246,-0.39915228,-0.17579043,0.029928327,-0.5652247,-0.39536566,0.29562002,0.17507564,0.20512517,-0.05579704,-0.01846723,0.014119496,0.09060391,0.42705482,-0.5872382,-0.12216608,0.2890144,0.3112121,-0.14692318,0.15024625,-0.3594344,0.5365342,-0.67046016,0.25277358,-0.30888966,0.20575707,-0.30146104,-0.50553197,0.093691126,0.07349761,0.28378624,-0.22133754,-0.5178199,-0.051367547,0.473604,0.055371065,0.015744414,0.6172742,-0.32252893,0.029694377,0.07492854,0.523375,1.1555703,-0.37911898,-0.030229261,0.32805172,-0.43135506,-0.8023549,0.36226004,-0.33413118,-0.01868253,-0.28030637,-0.4502411,-0.59357595,0.29326764,0.107458964,0.048346575,0.051761318,-0.35880637,-0.09316904,0.2535542,-0.34371784,-0.32547835,-0.32306919,0.34768432,0.5601017,-0.2624698,-0.42489275,0.03687838,0.3413481,-0.344031,-0.4920916,-0.14681242,-0.2031525,0.3470963,0.12100719,-0.3502602,-0.07504882,0.083763525,-0.43097854,0.25852564,0.24877954,-0.40007114,0.13550906,-0.17512456,-0.11029369,0.8636491,-0.22368988,0.0069216746,-0.62822163,-0.44040933,-0.87362087,-0.46159643,0.39454433,0.11091038,-0.042376213,-0.4476986,0.044996776,-0.090048335,0.055912357,0.038403135,-0.3418943,0.1810147,0.054118905,0.49534956,-0.29604128,-0.85183483,-0.021049341,0.15090677,-0.13596888,-0.6558925,0.72074795,-0.047621686,0.8181376,0.07717812,0.049616035,0.14875741,-0.25435165,0.080504656,-0.32634187,-0.0755525,-0.61538786,0.03960339 +613,0.62303275,-0.09682106,-0.6748648,-0.18741965,-0.68758255,0.20698069,-0.31987575,0.022289569,0.42176884,-0.52026194,-0.049931634,-0.3248845,-0.083246395,0.2437027,-0.3073003,-0.79609036,-0.012565266,0.32229063,-0.53228134,0.36913717,-0.38672316,0.385596,0.11618051,0.30734298,-0.23960747,0.15819573,0.12924843,-0.09698958,-0.0819965,-0.2519319,-0.0026193857,-0.037550177,-1.0249677,0.55861276,-0.32456812,-0.5301786,0.079664186,-0.53940135,-0.20059347,-0.5898441,0.43684253,-0.95240957,0.806451,-0.15548567,-0.10953713,-0.0906449,0.22540312,0.36526525,-0.13915218,0.2625388,0.21963467,-0.3649657,-0.11198339,-0.22772351,-0.48413637,-0.49036142,-0.6326031,0.046655167,-0.5350293,0.021332627,-0.24583411,0.3602868,-0.14210664,0.2729379,-0.24505797,0.05157907,-0.34878498,0.2720822,0.27982628,-0.125865,0.14799185,-0.42728502,-0.15655659,-0.115011476,0.28147027,-0.24441797,-0.2625059,0.30661762,0.2062313,0.7039758,0.21914119,-0.2718136,-0.32256722,-0.065576814,0.07226375,0.61265665,-0.11848171,-0.038894597,-0.46372202,-0.09983028,0.39705744,0.25673357,0.051421262,-0.3112671,0.23616624,-0.29614124,-0.28524217,0.6053869,0.5413983,-0.3935667,-0.18924569,0.42894182,0.46871567,-0.24337064,0.050056275,0.27825996,0.17288719,-0.5432901,-0.41873637,0.21055526,-0.14857484,0.44559687,-0.21415782,0.21099156,0.6562113,-0.2506084,-0.15549555,0.04442646,-0.09265859,-0.11220364,-0.21036862,-0.10863343,0.22882424,-0.6079493,-0.06835061,-0.25202802,0.88017267,0.08237037,-0.8172052,0.4575427,-0.6936431,0.19794728,0.008691118,0.49616614,0.63966006,0.64916176,0.13142481,0.94688135,-0.5855972,0.25540593,-0.1351828,-0.21376604,-0.013387192,-0.25565568,0.2281671,-0.38107443,0.23778263,-0.058442306,-0.020178087,0.0702312,0.63897246,-0.38007405,-0.19100012,-0.030284416,0.91900593,-0.48574308,-0.057901397,1.0378742,1.0872353,1.087636,0.09018639,1.6263305,0.32147315,-0.10796702,-0.2874466,-0.11163133,-0.84361684,0.20922647,0.2490666,-0.036572933,0.19690499,0.37377998,0.22252807,0.29510224,-0.2809628,-0.22255659,-0.07370193,0.31539658,-0.09694266,-0.08017797,-0.34974068,-0.27099216,0.11305303,0.047293246,0.06522903,0.420333,0.00023800405,0.57825,0.2301042,1.1567222,0.1029411,0.24540626,-0.04133348,0.24791361,0.15648274,0.028120099,-0.0757914,0.034222987,0.07500188,-0.0287448,-0.4758395,-0.091948204,-0.2560717,-0.23032285,-0.2649353,-0.03525936,-0.29097068,-0.28900412,-0.21014076,-0.4140772,-0.15505256,-0.35071155,0.6230802,-1.9379426,-0.40162727,-0.16278824,0.49778593,-0.20151268,-0.3646736,-0.23593432,-0.57017666,0.33402753,0.31192783,0.39959982,-0.4397918,0.66996664,0.41811106,-0.54085755,-0.05225648,-0.7084009,0.14733817,-0.093222335,0.15641531,-0.17390062,-0.36641037,-0.47947928,0.08150583,0.46917355,0.11001558,0.18825011,0.3299223,0.69073206,0.07871991,0.60165465,0.07079661,0.5361654,-0.63626146,-0.06575579,0.33055773,-0.5988613,0.275955,-0.038835015,0.030335952,0.58295745,-0.8858698,-0.87134206,-0.8864623,-0.44582283,0.83543664,-0.20780152,-0.41018727,0.23395209,-0.3344669,-0.39660132,0.021453792,0.32800958,0.039297745,0.11143887,-0.78018373,-0.15961064,-0.10506386,0.37182143,0.015784781,0.02521174,-0.4440641,0.6876663,-0.37124777,0.29200536,0.44687453,0.21484518,-0.21008658,-0.27375954,0.16243944,1.0427713,0.37526482,0.13763165,-0.28605893,-0.17434977,-0.22879194,-0.2190857,0.019041734,0.53618187,0.48700497,-0.17980823,-0.060229477,0.5180297,-0.17668293,0.13160156,-0.028846664,-0.39047515,-0.25560972,0.03521618,0.62400776,0.6899268,-0.056650337,0.24333547,-0.27986884,0.20749468,-0.31701833,-0.56790155,0.4199416,0.9789844,-0.0798915,-0.29417068,0.7722673,0.5395502,-0.33185577,0.5574708,-0.57525307,-0.49251243,0.21152438,0.09108124,-0.5662235,-0.21346043,-0.38026324,0.047088623,-0.94275343,0.23914424,-0.0615447,-0.7258012,-0.39106515,-0.34750798,-2.6579862,0.22816378,-0.14355473,0.0908508,-0.013092919,-0.12019786,0.11439329,-0.35720977,-0.8408914,0.1500595,-0.07191867,0.6021041,-0.124992564,0.4816247,-0.12628268,-0.16504063,-0.38139457,0.30413783,0.41233644,0.16778131,-0.104303904,-0.46465427,0.06260026,-0.28901494,-0.2738694,-0.046590425,-0.8497883,-0.30827478,-0.08921205,-0.53562635,-0.30976012,0.63504255,-0.42739585,-0.09840462,-0.51711965,0.0135711795,-0.31735396,0.31986752,-0.016713731,0.23308396,0.0816212,-0.23449282,-0.32909596,-0.27876306,0.384356,0.035189133,0.24267453,0.4213339,-0.45537966,0.052053176,0.3606967,0.72378784,0.14741379,0.9547877,-0.035507977,-0.16983381,0.31682163,-0.11650515,-0.4336365,-0.8148882,-0.18123052,-0.2774043,-0.5252831,-0.5049131,0.11576632,-0.5186594,-0.77297115,0.50004315,0.23184635,0.007185134,0.10512522,0.3865594,0.31889948,-0.36178267,0.07047914,-0.031358052,-0.2643247,-0.52731836,-0.59929186,-0.43079415,-0.517617,0.24174304,1.5485584,0.080979586,0.1279646,0.3318888,-0.16993882,0.145832,0.3133306,0.16067977,-0.0033080145,0.64977384,-0.02813756,-0.6001748,0.317755,-0.049467,-0.04052935,-0.590523,0.00022051009,0.72085303,-0.7550119,0.6573764,0.42094535,0.25849038,0.17520462,-0.50389713,-0.24072188,-0.24158353,-0.31942585,0.42779347,0.34775993,-0.747487,0.40852186,0.19245921,-0.30666742,-0.980241,0.35180032,-0.047622204,-0.14751373,-0.046436667,0.388515,0.5211142,-0.026583482,-0.12911092,0.21956429,-0.48311746,0.3549182,0.07162029,-0.039092127,0.25849745,-0.27279148,-0.39141515,-0.81100583,-0.25134948,-0.365667,-0.25046554,0.052831646,-0.10636438,-0.19153504,0.2201447,0.3838704,0.42606446,-0.39793682,0.1821084,-0.20561911,-0.3305963,0.18631147,0.39394206,0.55461085,-0.5201947,0.7225784,-0.07195567,-0.013109126,-0.289658,0.11150868,0.46161687,0.02986312,0.24975194,0.29641965,-0.116556734,0.10307003,0.7277775,0.23052764,0.14439608,0.19306192,-0.07804294,0.5967996,0.33093974,0.080866486,-0.14876038,-0.4623799,0.09353601,-0.040782224,0.042976834,0.22833146,0.019989235,0.43521413,-0.24917199,-0.09705966,-0.05269189,0.09795558,-0.25276384,-1.3482779,-0.05322807,0.061856385,0.75667214,0.53042626,-0.0075522335,0.19306701,0.6065066,-0.353984,0.03955946,0.4246443,-0.015384549,-0.08578081,0.522248,-0.51127124,0.40493917,-0.17577939,-0.009316363,0.3061233,0.35054192,0.4191839,0.92538947,-0.02034775,-0.030259132,-0.18758091,-0.17688729,-0.07886882,-0.16178957,0.006121023,-0.5069352,-0.1561126,0.9789406,0.349856,0.516247,-0.3660001,-0.13620356,-0.097044066,-0.11174268,0.20415574,0.12365057,-0.22537456,-0.17153439,-0.60191184,-0.020895194,0.69769067,0.23680286,0.21178623,0.2816941,-0.39324218,0.39159086,-0.13541295,-0.09602061,-0.04745426,-0.86300904,-0.1397184,-0.28609225,-0.2556691,0.24448375,0.04044758,0.123145774,0.1376861,0.12690014,-0.24123357,0.24327469,0.20771743,0.7848502,0.27173948,-0.117107674,-0.17012134,0.15555859,0.2627692,-0.37165645,0.28378043,-0.08685305,0.18037924,-0.6689451,0.5652445,-0.04903784,-0.31122738,0.22847666,0.040396083,0.1958146,0.5309853,-0.08743613,-0.067362554,0.4723725,0.18998146,-0.3365803,-0.15608735,-0.43723947,0.15553078,0.012894403,0.060007952,0.02230085,-0.11387629,0.046300076,0.45268852,0.06544334,0.100053474,0.09287975,0.18855995,-0.48232162,0.10058805,-0.25284252,0.46215114,-0.2157004,-0.13333903,-0.017993147,-0.3717563,-0.19513255,0.5878597,-0.022513991,0.12781821,-0.09722252,-0.4822521,1.0042168,0.1808675,1.1865374,0.031489313,-0.25144494,0.1639268,0.59904855,-0.09376259,-0.03896071,-0.29052445,1.2290932,0.6713597,-0.33665183,-0.22146125,-0.4263209,-0.24896465,-0.01232416,-0.3326188,-0.14101273,-0.12473857,-0.7232513,-0.14581423,0.22265099,0.31231245,0.003378142,-0.15030383,0.35225594,0.22323538,-0.020655058,0.2852043,-0.46171987,-0.19429404,0.39060405,0.422029,0.12650794,0.03932585,-0.25663927,0.27183774,-0.7740585,0.13593245,-0.31327876,0.064556785,-0.13631944,-0.22244835,0.08893159,-0.0086019635,0.26185295,-0.28418952,-0.25232324,-0.2941461,0.5043896,0.29687133,0.34163076,0.94663614,-0.24916857,-0.22995047,-0.046572104,0.48287717,1.0888662,-0.10521715,-0.0019220873,0.26288605,-0.4287196,-0.43853033,0.35694665,-0.5039405,-0.09593911,-0.048942782,-0.37813455,-0.43760478,0.07328102,0.15140277,0.10782747,0.12947468,-0.6553789,0.1259439,0.3965975,-0.20672904,-0.3036988,-0.08741481,0.29911342,0.9039314,-0.045607746,-0.35741994,0.084684275,0.3839402,-0.30474675,-0.6154559,-0.24271232,-0.35283887,0.4307741,0.1281357,-0.32314074,-0.032337207,0.16295949,-0.42995661,-0.09043319,0.22153383,-0.28434554,0.099684484,-0.54196215,-0.08022558,0.8390761,0.040717147,0.35171148,-0.6820074,-0.5956231,-1.076934,-0.09483798,-0.022828378,0.46485993,0.038467597,-0.4219786,-0.27352372,-0.21136309,-0.35348472,0.20908426,-0.7203541,0.33671507,0.19336958,0.47475365,-0.14962812,-1.0267104,0.1258671,0.27574918,-0.25429308,-0.42602423,0.42027786,-0.104270004,0.7833374,0.15888628,-0.09485196,0.13884313,-0.91141695,0.52870125,-0.18622403,-0.05649754,-0.71649224,-0.12065697 +614,0.3250694,-0.21379244,-0.40894437,0.030391486,-0.011176512,0.1001811,-0.16889091,0.6370739,0.17733683,-0.401652,-0.23100643,-0.103298165,0.09112045,0.5059193,-0.17327602,-0.17698753,-0.2070447,0.26528773,-0.49419084,0.513329,-0.3055896,0.059414577,0.036741227,0.5762904,0.0544133,0.1148631,-0.09997525,-0.05654323,-0.47507536,-0.3457234,0.32723925,0.35597205,-0.8946077,0.20755005,-0.42945853,-0.22757751,-0.19582461,-0.56745714,-0.49303997,-0.7481392,0.25968802,-1.0318019,0.6603802,0.10153946,-0.24707912,0.35615048,0.06924871,0.3714626,-0.20743006,-0.0559691,0.30946445,-0.1904159,-0.1895929,-0.21577124,-0.10322672,-0.27457193,-0.6378518,0.041206475,-0.3618678,0.00919046,-0.22272837,0.19242243,-0.1149118,-0.04168892,-0.13550323,0.35079136,-0.44599238,0.22852129,0.06895296,-0.016017133,0.50195557,-0.56810385,-0.21394338,-0.18988092,0.32173502,-0.22695462,-0.17663865,0.1781712,0.100757964,0.29585713,-0.28372416,-0.03208937,-0.36630404,0.2188463,0.13187902,0.41214404,-0.32708824,-0.5242365,0.07019981,0.02462042,0.26255357,0.06945453,0.116439015,-0.20455809,-0.08852974,-0.0723091,-0.09171819,0.38444033,0.53772956,-0.16404887,-0.23615782,0.32532576,0.5667353,0.37442622,-0.06601087,-0.19710195,0.0763449,-0.64834124,-0.04502772,0.15706104,-0.36408553,0.56379515,0.0044063944,0.102217264,0.6333181,-0.21009284,-0.018335901,0.2269277,0.13142164,0.05831762,-0.22352566,-0.3992909,0.31609327,-0.13998584,0.2477388,-0.17860866,0.5728718,0.07605522,-0.7200958,0.3101357,-0.5723246,-0.01839363,0.06256945,0.44935703,0.5956852,0.5551624,0.3370773,0.5850208,-0.28692883,-0.053545535,-0.12726669,-0.20450795,0.21407938,-0.221214,-0.0011754731,-0.4597082,-0.19782092,-0.0019194683,-0.32859024,0.026912464,0.51265746,-0.47844335,-0.066715784,0.25155586,0.7486511,-0.202208,-0.18379362,0.73620206,1.0915114,0.7888109,0.06608788,1.2745658,0.16063248,-0.15566769,0.23207144,-0.18116732,-0.72586536,0.3285959,0.2861397,-0.72020197,0.42219487,0.20743817,-0.050857335,0.19942307,-0.56023246,0.083936155,-0.14128353,0.0784592,0.08546903,-0.1700163,-0.3643323,-0.25390851,-0.14973389,-0.006807497,0.12795389,0.17440183,-0.19163032,0.20030363,0.088493,1.5975493,-0.14376147,0.059473287,0.07253062,0.4604477,0.022014575,-0.069651596,-0.2163284,0.3508129,0.40627208,0.30268273,-0.40704703,0.11573873,-0.09769956,-0.49439272,-0.10880748,-0.20210421,-0.12047999,0.02218456,-0.4531883,-0.20871878,0.009846811,-0.27112445,0.45253742,-2.7200992,-0.08783994,-0.050016865,0.47209612,-0.3410426,-0.38422903,-0.1914155,-0.3068902,0.45241165,0.28328314,0.46719095,-0.6475233,0.36796227,0.31044072,-0.5285993,-0.10138788,-0.56474423,-0.14695828,0.05756147,0.26634452,0.060698736,0.011852871,0.24638526,0.050122242,0.4280844,0.04653551,0.112220585,0.44928455,0.41352138,-0.1120706,0.5106905,-0.23591459,0.4448202,-0.33974776,-0.26975074,0.38905954,-0.44063804,0.32534438,-0.08601179,0.13440974,0.3663905,-0.37653884,-0.93070364,-0.7537244,-0.35134265,1.1597708,-0.116983086,-0.47275606,0.05978323,-0.45059195,-0.4102025,-0.019783432,0.6083507,-0.12568434,0.1948518,-0.9295926,-0.28860638,-0.20024295,0.3515806,0.0014028847,0.08150711,-0.5451351,0.6686284,-0.052057404,0.35089847,0.38945845,0.11229382,-0.2791834,-0.537329,0.06268046,1.0949577,0.18372571,0.15835361,-0.28060263,-0.29023352,-0.3795893,0.13143851,-0.10082505,0.66568106,0.34138325,-0.03667809,0.060009394,0.17367963,-0.100313045,0.03333665,-0.11979862,-0.3542439,-0.17881937,0.09980474,0.6359231,0.8762602,-0.13767642,0.44784704,-0.24857982,0.2534527,-0.029902125,-0.35898295,0.42012367,0.8702356,-0.16487838,-0.1908056,0.8576229,0.58235586,-0.29281533,0.4143571,-0.5559847,-0.52370316,0.25241658,-0.08820417,-0.4053248,0.2723073,-0.31129757,0.070146985,-0.94420576,0.33871317,-0.41085532,-0.36517346,-0.6433039,-0.037777226,-2.7145386,0.0959148,-0.062106162,-0.29097566,-0.17798431,-0.3044176,0.19699167,-0.5583293,-0.6237876,0.17120905,0.043269377,0.5379932,-0.12994267,0.14309382,-0.2650452,-0.27012557,-0.033884358,0.24642555,0.37398648,0.3581141,-0.16609247,-0.5051697,-0.2184066,-0.11378321,-0.16598158,0.05295365,-0.8978543,-0.5744459,-0.06951287,-0.6137796,-0.21347664,0.67324513,-0.6113486,-0.13766968,-0.17294687,0.096608125,-0.12676807,0.34389916,0.041597288,0.2734978,0.17566498,-0.1852531,0.06873905,-0.05872407,0.4788586,0.16201134,0.32856795,0.4170635,-0.3538288,0.3430291,0.394158,0.59552515,-0.31577882,0.9741087,0.62392604,-0.15605895,0.20445359,-0.25387183,-0.27027264,-0.521297,-0.17902374,0.049141586,-0.4647858,-0.45833156,-0.054875087,-0.3461244,-0.89181226,0.70470303,-0.30109718,-0.032512635,0.10586155,0.26348034,0.49773622,-0.31570157,-0.06556586,-0.14348625,-0.034966532,-0.48432183,-0.43570566,-0.46246782,-0.45068958,-0.21172965,1.1152356,-0.024776692,0.1167969,0.24107414,-0.34877586,-0.02016677,0.014054577,-0.07690206,-0.10971853,0.67298216,0.030643543,-0.56844515,0.34988996,-0.09392854,-0.19761632,-0.59351194,0.48381686,0.63136286,-0.6757083,0.725687,0.5239429,-0.07900443,-0.25191045,-0.5608061,-0.3526634,-0.18198164,-0.12460125,0.31563717,0.2413113,-0.7717059,0.26592475,0.30007383,-0.3958505,-0.77092505,0.6223795,-0.08458701,-0.24002711,-0.058838736,0.3837687,-0.16564734,0.06702164,-0.24077795,0.4439578,-0.31913397,0.3758111,0.061627563,-0.11214275,0.16781592,-0.16745567,0.039934438,-0.82925767,0.27133706,-0.2929344,-0.5196047,0.43836212,0.1228744,-0.030791065,0.275646,0.23205964,0.32833064,-0.45842567,0.015156779,-0.14632352,-0.3820534,0.27766314,0.3961446,0.6493406,-0.44617328,0.51846623,0.0029861107,-0.23775856,-0.03449094,0.020843059,0.520578,-0.12559168,0.31480187,0.05607589,-0.10267293,0.25106123,0.7651546,0.22318311,0.52872735,0.038490098,-0.06533141,0.24434227,0.03653233,0.23781927,-0.058218583,-0.80210376,0.16254832,-0.23489064,0.1325947,0.3141204,0.07536157,0.16013636,-0.13498074,-0.30780017,-0.07523409,0.17915718,0.18938439,-1.2945184,0.33838907,0.080198966,0.7571474,0.40231562,0.06070803,0.21327412,0.7867479,-0.1504129,-0.0286675,0.42197385,0.0049941144,-0.5336763,0.61867,-0.72662765,0.4245002,-0.037537806,-0.0057493695,0.010534803,-0.110894166,0.4013319,0.8083291,-0.167974,0.08429992,0.03103376,-0.22052413,-0.024505893,-0.3371012,0.32388374,-0.5926336,-0.33145994,0.7681959,0.6567367,0.5229669,-0.21334465,0.04459242,-0.0021567096,-0.1481212,0.31217602,0.015702704,0.1356635,0.2507665,-0.7719307,0.14740534,0.5097724,0.0375323,0.10962117,0.017668946,-0.20628156,0.26200762,-0.25959402,-0.14295687,-0.17167962,-0.8542262,-0.22203666,-0.60116434,-0.3337345,0.3214965,-0.15086816,0.114481814,0.06695122,0.022820937,-0.21014494,0.4329194,0.14951819,0.8470953,0.14573735,-0.32608068,-0.26432732,0.29216823,0.17165266,-0.1745734,-0.03977793,-0.34055126,-0.047310513,-0.48441318,0.30365643,-0.104353555,-0.37920988,-0.078185566,-0.11793027,0.14391197,0.5799795,0.06215642,-0.14113015,0.06290513,-0.2584739,-0.27238595,-0.14505722,-0.09517604,0.25097093,0.49785492,-0.074702404,-0.121727444,0.01869993,-0.16730995,0.3515077,0.009567283,0.5673482,0.52008885,0.21072544,-0.09450594,-0.05299579,0.123051815,0.7527965,0.022075513,-0.16168274,-0.39000514,-0.2733996,-0.29401466,0.397439,-0.11548481,0.2936756,0.24194606,-0.17102723,0.82104725,-0.011141092,1.061833,0.07164736,-0.19546163,0.09999418,0.48822835,-0.07594808,-0.14944299,-0.6291025,0.93917733,0.46986446,0.038532633,0.007517328,-0.29170495,-0.077521436,-0.0074075647,-0.177975,-0.08587592,-0.12970869,-0.6422186,-0.124047674,0.20697136,0.4151845,0.15579458,-0.10553509,0.25184587,0.18920834,0.04643166,0.26410875,-0.52009004,-0.09199015,0.41640458,0.39245245,0.031692687,0.10211315,-0.37345847,0.34427598,-0.46010947,-0.036957514,-0.40359834,0.009181191,-0.2182756,-0.39668122,0.22606425,-0.039388787,0.4414593,-0.42405042,-0.14970848,-0.15639241,0.42804226,0.089372866,0.11473306,0.5054643,-0.20581222,0.061836768,0.01515155,0.50196034,0.8839851,-0.5846732,0.14433347,0.3374314,-0.22552311,-0.5382332,0.53313684,-0.3571314,0.44067743,-0.05051264,-0.26385197,-0.5479118,0.2427577,-0.017614312,-0.034424704,-0.21192741,-0.6316199,-0.00994201,0.42163387,-0.22049518,-0.17489888,-0.27235892,0.14220779,0.589835,-0.05729488,-0.5057872,0.11172094,0.3572956,-0.2959044,-0.2730526,-0.050221372,-0.4991572,0.10608369,-0.1336426,-0.44920525,-0.2200932,0.028247783,-0.47303033,0.13069569,0.18991761,-0.42547122,0.065913185,-0.38078633,0.028590167,0.99790376,-0.29050523,0.18606722,-0.43028918,-0.4401054,-0.9369159,-0.2867581,0.20763403,0.19122379,-0.06543937,-0.5149308,0.059308052,-0.09673003,-0.26862165,-0.09608388,-0.46124968,0.42674533,0.15285556,0.5786658,-0.27087852,-0.7693167,0.19336939,0.08583936,-0.08167312,-0.609793,0.43080556,0.08779993,0.95551294,-0.08028483,0.2128865,0.22972143,-0.5685025,-0.27873465,0.017759606,-0.04449721,-0.7658759,0.104305685 +615,0.57804865,-0.02166098,-0.4973394,-0.21916151,-0.29274577,0.30948955,-0.25735548,0.031367052,0.06434954,-0.53575003,-0.13006409,-0.2919039,-0.02008268,0.14791118,-0.13886085,-0.7080206,0.043108933,0.038501836,-0.43774968,0.25470307,-0.55787766,0.52994525,0.221002,0.19239591,0.026358124,0.2421194,0.28725135,-0.28828904,-0.31280357,-0.050188277,-0.22194752,-0.11533948,-0.94935644,0.29961938,-0.012839286,-0.3584824,0.23101804,-0.308399,-0.2527083,-0.55803835,0.23681362,-0.7884163,0.4185947,-0.03146886,-0.16813087,0.11874333,-0.15628433,0.31617075,-0.24254018,0.3856516,0.32011715,-0.24921052,-0.00904642,-0.30787408,-0.24097922,-0.75138545,-0.4636274,0.01830545,-0.5721458,-0.27661502,-0.42803782,0.2672454,-0.2339696,-0.008407684,-0.2733403,0.2552422,-0.3030682,-0.07623216,0.13244642,-0.21853183,0.14323834,-0.3459807,-0.10368944,-0.100377284,0.2507866,-0.22827218,-0.0048253993,0.16197155,0.30875334,0.43495867,0.033619154,-0.19454795,-0.09905476,0.033480413,0.038294103,0.5908478,-0.009866129,-0.32184702,-0.14481695,-0.094479054,0.15584111,0.03495758,0.13171507,-0.3918184,0.046304226,0.14204189,-0.28077757,0.40759844,0.5053865,-0.46438295,-0.10479854,0.3912377,0.3010201,-0.16991946,-0.054808017,0.11998542,-0.049508672,-0.3591592,-0.119498864,0.43760717,-0.039244868,0.5774812,-0.1486703,0.24056993,0.6892113,-0.2771415,0.008322496,0.013806779,-0.2024716,0.04585431,-0.07274319,-0.073781475,0.26217845,-0.56828797,-0.06596711,-0.39209315,1.0053344,0.20035678,-0.761181,0.4492398,-0.35252172,0.0601622,-0.03990929,0.5794484,0.4311514,0.565064,0.058481354,0.75454646,-0.84930104,0.06409201,-0.08813123,-0.48276997,0.053758834,-0.11617332,0.13039611,-0.2074735,-0.08004559,-0.11643105,0.024402665,-0.16670784,0.2763682,-0.26662126,0.078953534,0.17096183,0.69615597,-0.51733816,-0.08795697,0.6488966,1.027189,0.8815418,0.23189847,1.1476381,0.42476505,-0.22099446,0.00050521357,-0.2927453,-0.505736,0.24076787,0.40567,0.49651954,0.09721804,0.21888366,0.22641101,0.21905246,-0.23983653,0.16502398,-0.033312853,0.10270095,-0.05270227,0.005220065,-0.4192885,-0.1925415,0.10205936,0.08160358,-0.060738273,0.15263966,-0.15771511,0.35754442,0.18004632,1.3654977,0.07535674,-0.012800892,-0.011927467,0.47970882,0.094413824,-0.0863953,-0.03659419,0.20386678,0.25916794,-0.030080281,-0.5106362,-0.1218336,-0.21646476,-0.5279192,-0.2895222,-0.1979548,-0.017129362,-0.08246132,-0.44735494,-0.22537008,0.35043672,-0.3076697,0.50723386,-2.1675825,-0.18273273,-0.124037184,0.34032837,-0.38762537,-0.42602813,-0.041327894,-0.49009365,0.26675227,0.40388787,0.27455986,-0.67127365,0.47809073,0.20601171,-0.07150194,-0.21870813,-0.7156584,0.17601167,-0.24992622,0.22365674,-0.0077850106,-0.20153578,-0.36288568,0.12570944,0.6462081,-0.120708875,-0.0962776,0.09839822,0.41652364,0.1943286,0.6580439,0.31467533,0.4524647,-0.22338265,0.08659725,0.22723722,-0.36754262,0.13775972,0.20694907,0.22556254,0.206174,-0.65526104,-0.7027589,-0.78777504,-0.49709442,1.2141165,-0.37639925,-0.32997975,0.24719056,0.15970618,-0.22409171,-0.07538562,0.33439907,-0.042123042,0.09047783,-0.5964775,-0.10961814,-0.0147996545,0.26969567,0.008836541,0.018884636,-0.3197438,0.81204796,-0.25123838,0.4069538,0.37782845,0.11847932,0.07057314,-0.41700336,0.14902839,1.1313415,0.23892373,0.12865953,-0.28969973,-0.17835464,-0.25292683,-0.055120684,0.1361272,0.3900077,0.85261333,0.017849358,-0.121504016,0.44896406,-0.15868782,0.044911638,0.020655565,-0.4987164,-0.05568053,-0.11775964,0.66055334,0.51452184,-0.086282805,0.43237787,-0.37302038,0.23566201,-0.13243887,-0.23285645,0.42125127,0.7516925,-0.12816261,-0.1343028,0.41753393,0.470875,-0.34936026,0.33603674,-0.5464475,-0.46583384,0.53736186,-0.105397,-0.40902206,0.16186,-0.41415834,0.11889125,-0.9089706,0.48277557,-0.11690191,-0.575302,-0.29076964,-0.19437984,-3.420521,0.069047645,-0.13183492,-0.010401492,0.10727955,-0.30654418,0.232365,-0.5294677,-0.35649014,0.08762255,-0.020748597,0.5267161,0.16403161,0.25844002,-0.31737247,-0.1435201,-0.34933758,0.3214541,0.21638666,0.072524816,0.1635589,-0.29105234,0.23873076,-0.44693822,-0.31105882,0.07638343,-0.6539399,-0.56885946,-0.16771275,-0.55938333,-0.5451227,0.7660703,-0.540008,0.066565126,-0.14079206,-0.10989033,-0.28712502,0.41493285,0.19452861,0.096869946,-0.041062906,0.007550645,-0.21700999,-0.42562756,0.23445958,0.18511294,0.40429708,0.34087053,-0.07444111,-0.031197878,0.6268475,0.56254184,0.15924677,0.7120236,0.1587987,-0.15564848,0.25118378,-0.33175197,-0.29692668,-0.67612046,-0.39429995,-0.17489935,-0.3506816,-0.32990438,-0.00015089833,-0.3256229,-0.6609968,0.36380944,-0.009926755,-0.017681304,0.041380797,0.32319686,0.28577197,-0.15062013,0.013556146,-0.14241108,-0.0725966,-0.50166184,-0.539154,-0.6011083,-0.5859804,0.18635812,0.9567401,0.12127583,-0.30187747,0.042878468,-0.20444971,0.2004913,-0.042292066,0.16894668,0.12547877,0.548541,-0.1697088,-0.76438725,0.32952517,-0.1581466,0.03765224,-0.42134795,0.07049645,0.7978007,-0.76731455,0.4369918,0.37780204,0.22330707,0.072193064,-0.31745118,-0.3681423,-0.00436759,-0.34052217,0.34943184,-0.06582758,-0.7206749,0.4034142,0.2891145,-0.17279315,-0.51513606,0.5385897,0.078341395,-0.2455931,0.20346189,0.3743006,0.015546464,-0.17229909,-0.33055526,0.03356256,-0.6489563,0.22902766,0.5226293,0.17378251,0.26429722,-0.08058326,-0.2884114,-0.5194321,-0.20111267,-0.38811415,-0.41749424,0.07386105,0.16981576,0.077308446,0.24866651,0.20173147,0.3811779,-0.44521868,0.053038258,-0.20084634,-0.20669556,0.4759124,0.3110587,0.33278942,-0.5188358,0.6301933,0.018647524,0.14931029,-0.25728187,0.068491615,0.3579076,0.34540653,0.08498742,0.10250997,-0.15373431,0.13222615,0.670337,0.36037716,0.59026444,0.3870106,-0.21627103,0.40401953,0.29177397,0.0852084,0.08161455,-0.25872505,0.005511417,0.015608893,0.044673808,0.27752793,0.0019961423,0.23907915,-0.24902967,-0.08698216,0.20077361,0.045211334,-0.1961352,-0.71157813,0.29537457,0.19226232,0.3979689,0.3928801,-0.021627674,0.13194858,0.5040148,-0.36474594,0.03526468,0.061625168,-0.015065134,-0.332212,0.46821243,-0.52149326,0.35945857,-0.19775167,-0.0063615395,0.05135462,0.093404815,0.21559323,0.92001414,-0.13006549,0.113131136,-0.21299158,-0.17211086,-0.06868993,-0.41563207,0.26145986,-0.47429058,-0.2948877,0.7404398,0.25114977,0.26726437,-0.20897388,-0.0069026053,-0.023118895,-0.22804871,0.25524554,0.0050125537,-0.1948344,0.18715975,-0.7425009,-0.36807588,0.55937445,-0.028460823,-0.040972475,0.24862193,-0.30712938,0.432787,-0.21298034,-0.039818663,0.04377228,-0.4770486,0.01691982,-0.43444377,-0.43381703,-0.015514846,-0.13456811,0.33769542,0.08328238,0.041923173,-0.2174406,0.23818438,0.41573393,0.61817265,0.1384235,-0.30513936,-0.49164146,-0.1385244,0.273589,-0.3259186,0.12414006,-0.32939398,0.058346827,-0.6363458,0.38747042,-0.17525527,-0.081914775,0.06811977,-0.090745285,-0.045518342,0.5052184,-0.18840748,0.030326117,0.41444716,0.32229334,-0.06618599,-0.045307443,-0.3520495,0.078618854,0.05382728,-0.17901398,0.08473844,-0.19916914,0.013885129,0.3286545,0.21581925,0.19863194,0.10861368,-0.07553038,-0.30364048,-0.04102542,-0.19081476,0.36106154,0.2442953,-0.10259463,-0.29390994,-0.3192088,-0.061355665,0.2105841,-0.062157713,0.04609,0.07192281,-0.37452894,0.87092555,0.0046781027,1.2209681,0.11275777,-0.2986958,-0.045724623,0.4585044,-0.040600397,0.15495297,-0.5116862,1.084032,0.5495425,-0.111187935,-0.17604023,-0.3563142,-0.4094733,0.109303236,-0.19517139,-0.22359373,-0.077431366,-0.65337586,-0.25954518,0.13560419,0.2524416,0.067650676,0.20143539,0.1772601,0.19655949,0.09841653,0.50312275,-0.4553884,-0.07664284,0.13370822,0.08179597,-0.008535298,0.17749691,-0.2989023,0.45348355,-0.7955589,0.19595687,-0.41603518,-0.13031594,0.14123051,-0.28651237,0.20953366,0.16359687,0.41208172,-0.381136,-0.30024534,-0.24412066,0.6746942,0.14429428,0.4598958,0.6948796,-0.14798602,-0.07657941,0.1288914,0.48299152,1.2475317,-0.010947127,0.087718755,0.38791215,-0.44330108,-0.49867028,0.19310676,-0.1334648,0.07527004,-0.027423063,-0.45445538,-0.36242485,0.2595724,0.10068708,-0.10941814,0.18603677,-0.5039551,-0.22875999,0.5189135,-0.4134685,-0.4180121,-0.16887045,0.50272393,0.6223809,-0.43383443,-0.19757281,-0.03993305,0.34532684,-0.3551529,-0.37913397,-0.02991612,-0.36561716,0.38468316,0.15896177,-0.3559136,-0.12722181,0.27490136,-0.34386352,0.08368877,0.4394166,-0.45161188,-0.08210524,-0.27310437,-0.10040482,0.85662884,0.20700496,-0.04907706,-0.7614137,-0.40413687,-0.95975524,-0.5404118,0.35483316,0.29086515,0.047932107,-0.34103024,-0.119599395,0.01667413,0.03030203,0.09580176,-0.65297675,0.33379662,0.17452732,0.6069648,-0.07347587,-0.9808985,0.0030546372,0.1797426,-0.28623673,-0.58801025,0.48471212,-0.17193666,0.7787026,-0.101738654,0.111427225,0.16233693,-0.613716,0.27371818,-0.3839977,-0.05083189,-0.70675635,0.05524122 +616,0.18314333,0.044883262,-0.55512786,0.039179694,-0.22525376,0.080632806,-0.46231157,0.16205476,0.2140639,-0.25465485,-0.008410319,-0.22902806,-0.04951597,0.15052581,-0.088487975,-0.45072982,0.12540506,0.20959102,-0.37347397,0.545221,-0.38809857,0.17292675,0.044813965,0.1845308,-0.086717494,0.154881,0.1611772,-0.27074367,-0.2675797,-0.2432926,0.06319669,-0.15089336,-0.57997626,0.24417087,-0.2775875,-0.27601892,0.23692968,-0.3434566,-0.2544607,-0.6953933,0.10104186,-0.7586677,0.59586596,-0.031933475,-0.2369798,0.3552906,0.026671505,0.26584926,-0.0066525927,0.042935863,0.26012608,-0.41114527,-0.37439856,-0.31060046,-0.21171857,-0.5973332,-0.3645474,-0.09496091,-0.5518297,0.05745393,-0.3730186,0.19158857,-0.1833355,-0.0010294318,-0.18441056,0.04541006,-0.46349043,-0.040721145,0.01888921,-0.13389052,0.29142687,-0.63258404,-0.00769184,-0.09001377,0.18914787,0.0656063,-0.043704152,0.31367674,0.037977256,0.50950307,0.012232034,-0.19570924,-0.3109969,-0.033155885,0.21503644,0.44730484,-0.16461423,-0.08710025,-0.08869307,0.0053275744,0.38597953,0.28541282,-0.026670128,-0.14507768,0.05460624,-0.06079584,-0.39471462,0.20941935,0.55915457,-0.38089937,0.09321865,0.37306896,0.37182453,0.21974693,-0.15950347,0.010108224,-0.18538705,-0.29653543,-0.16705497,0.06395175,-0.12575896,0.4455324,0.050576616,0.27442545,0.53626764,-0.085131265,0.026234364,-0.03375099,0.037305478,-0.018201383,-0.1231771,-0.3341907,0.42319766,-0.6017072,0.20913054,-0.33227822,0.7014212,-0.1417943,-0.7285113,0.40791157,-0.47004,0.06716944,-0.073472485,0.5698001,0.6131398,0.704387,0.06862321,0.82608986,-0.4465231,0.17398554,-0.24074225,-0.26220593,0.29819554,-0.052219152,0.2019773,-0.36599398,0.09028513,0.06075028,-0.19822682,-0.0032718678,0.49837527,-0.24858944,-0.031288482,0.15066034,0.79913074,-0.34634888,0.00536505,0.56493443,1.2405133,0.8079319,0.08730305,1.0747126,0.3980169,-0.20264393,-0.23357268,-0.025877886,-0.7620503,0.15081856,0.36102283,0.46790612,0.23214208,0.32269815,-0.10948517,0.4310449,-0.31176573,-0.18946761,-0.0953736,0.39290288,-0.04199747,-0.15478344,-0.3645057,-0.18858686,0.047726665,-0.039222315,0.17214839,0.3481627,-0.05592036,0.33874854,0.28478992,1.2123824,-0.055496287,0.05870615,0.120379426,0.40538916,0.26222274,0.088242546,-0.047132514,0.31175616,0.26530325,-0.09686344,-0.47541693,0.010812728,-0.28116313,-0.5005068,-0.15184641,-0.11143732,-0.09275588,0.070783176,-0.16485293,-0.21799609,-0.0012084802,-0.2699788,0.39935434,-2.609571,-0.09227784,-0.072454676,0.28814873,-0.13756727,-0.2136844,0.03989865,-0.41283175,0.56722766,0.3770844,0.44946367,-0.36642903,0.34377426,0.53601104,-0.46131018,-0.17494644,-0.61885846,-0.0339315,-0.10177703,0.42917404,0.0032896379,-0.4051884,-0.0073889634,-0.0013832311,0.43544072,-0.1524639,0.048391636,0.3589164,0.34613362,0.051002536,0.26636967,-0.05108142,0.4073372,-0.21618174,-0.16455938,0.15955833,-0.203306,0.3178674,-0.2946044,0.14214364,0.41727692,-0.3095601,-0.59935975,-0.37010622,-0.11885161,1.1775795,-0.37767002,-0.56998515,0.07998326,0.1131525,-0.21256343,0.017546553,0.27482292,-0.13013007,-0.0049732206,-0.60076237,-0.04981121,-0.12840691,0.30395225,0.029579228,0.29824537,-0.49369362,0.6049197,-0.13263175,0.5571349,0.579181,0.32542938,-0.023259068,-0.3499776,0.0812596,0.725858,0.41966,0.07541403,-0.42506483,-0.093569644,-0.06956761,-0.18149047,0.083455555,0.34567055,0.6879031,-0.13451102,-0.0492183,0.30164737,-0.30917743,-0.03538042,-0.1698008,-0.56698,-0.09971943,0.05482482,0.58741075,0.6571619,0.13448524,0.37784874,0.012846595,0.34961718,-0.18262869,-0.43745938,0.48026696,0.5315902,-0.31063065,-0.0025051276,0.4967814,0.38445812,-0.017039236,0.59704006,-0.68752944,-0.480672,0.38845786,-0.044439428,-0.4597701,0.24943966,-0.3049182,0.105972975,-0.8063487,0.28510398,-0.31686,-0.47633988,-0.6349041,-0.16309601,-2.7991018,0.071608044,-0.26041484,-0.08937048,-0.10730676,-0.21548763,0.2972792,-0.397348,-0.53095126,0.17641796,0.24440017,0.44667244,-0.14195254,0.06898997,-0.3123334,-0.34085995,-0.34831378,0.25557908,0.1435364,0.13829231,-0.07543548,-0.37872142,0.020514298,-0.2657542,-0.18928877,-0.012691419,-0.41440022,-0.10377731,-0.14218877,-0.29935703,-0.33107713,0.54639477,-0.57483464,0.029653357,-0.36873874,0.024598125,0.04044699,0.23632996,0.10668852,0.013193329,0.034226917,-0.06523093,0.010569283,-0.29244003,0.2253437,0.077587076,0.16670339,0.5286381,0.012689368,-0.14926411,0.5397699,0.53365403,-0.071996205,0.69322455,0.3208535,-0.20754458,0.3256096,-0.3464392,-0.2454498,-0.553408,-0.3046131,-0.09376653,-0.36749992,-0.4907456,0.02448951,-0.4049717,-0.6919417,0.4888955,-0.012500461,-0.003110981,0.09815897,0.37700567,0.34186268,-0.13444465,-0.16624774,-0.039548494,-0.102336876,-0.45052615,-0.28007218,-0.77049154,-0.46136227,0.05734026,0.93189144,-0.10430661,-0.15593475,0.20441805,-0.21448347,0.115846895,0.1393903,0.12211858,0.044912383,0.3442106,0.15820974,-0.7374559,0.48145455,-0.08119032,-0.08413775,-0.5362635,0.1117208,0.52475905,-0.75955856,0.17932549,0.65448844,0.14850432,-0.04686343,-0.68949217,-0.13945885,0.1702332,-0.28246728,0.3699665,0.13976401,-0.7303499,0.54787916,0.25684443,-0.23075749,-0.7831018,0.42183283,0.014597821,-0.2761084,0.16222978,0.33228588,0.01318973,0.043854818,-0.19567902,0.031991623,-0.46158618,0.37221786,0.114599325,-0.076819114,0.28320757,-0.06588822,-0.20405331,-0.70044214,-0.0014444907,-0.2983762,-0.22319722,0.28704894,0.05679748,0.1418853,0.105624884,0.31582505,0.48406157,-0.4455174,0.031870827,-0.29128316,-0.21328649,0.5346326,0.4560897,0.2954923,-0.38030484,0.52229595,-0.1876222,-0.25439698,-0.14690831,-0.037458822,0.41070825,0.056364644,0.19158818,0.14904837,-0.15821509,0.009452152,0.7123601,0.24213071,0.3454066,0.13636507,-0.17766532,0.4049874,0.04239284,0.098788835,0.01163974,-0.41054535,-0.08995741,-0.189785,0.12147128,0.48795688,0.19749445,0.4723614,-0.16101037,0.013902182,-0.026582178,0.09468152,0.03395693,-0.8052272,0.45303217,0.2794767,0.5146543,0.54448235,0.027689831,0.15044793,0.682715,-0.2772269,0.050666634,0.15387405,0.20558539,-0.33043873,0.46752718,-0.65452695,0.3080296,-0.11227489,-0.019032348,0.22740622,0.1391463,0.4472128,0.93359596,-0.22112392,0.19815466,-0.06325925,-0.20435208,-0.08701532,-0.03503773,-0.05307359,-0.2331583,-0.33288956,0.6961917,0.122120425,0.38929957,-0.2354133,-0.07008365,0.07308496,-0.14958045,0.4524397,0.12956508,0.06169072,-0.029831704,-0.39951175,-0.38776004,0.6210415,-0.08557557,-0.048361473,0.0070121605,-0.16371344,0.2868062,-0.22812204,-0.13466252,0.10734491,-0.51088333,0.14039607,-0.19023448,-0.3420254,0.44744185,-0.0042121173,0.25707728,0.08939854,0.028807975,-0.025013363,0.21908948,0.19533968,0.5641703,0.16511059,-0.28889674,-0.16993706,-0.13843025,0.19660597,-0.19958784,0.07115836,-0.104073524,0.14310627,-0.7581303,0.38658583,-0.35341066,-0.123943046,0.20411886,-0.24362227,-0.082458116,0.46884033,-0.13982953,-0.11808254,0.25122243,0.056263138,-0.31175864,-0.31364334,-0.43902493,-0.050145563,-0.1401713,-0.06745919,-0.20768498,-0.18765642,-0.040563866,0.4105271,-0.026782295,0.040372077,0.18267384,0.1311776,-0.41054222,-0.14009437,-0.024202159,0.4315168,0.08201752,-0.016815368,-0.33966205,-0.47433826,-0.26470527,0.11649735,-0.14561796,0.09058874,0.12063715,-0.37563345,0.7907696,-0.042789616,0.91931194,0.056733925,-0.3772585,0.061032124,0.53004426,-0.083846785,0.03083526,-0.42060414,0.90943235,0.7340375,-0.10916384,-0.04479919,-0.43347564,-0.15513308,0.24180062,-0.30426946,-0.080620065,-0.06308498,-0.6137665,-0.16260096,0.20725688,0.21616806,-0.17129402,-0.022620846,0.18816859,0.11645555,0.32632193,0.3049914,-0.373155,-0.18388812,0.4288794,0.12878606,-0.0008723736,0.170018,-0.29752177,0.33701834,-0.5583567,-0.029692058,-0.47760868,-0.024255145,0.13938524,-0.2093893,0.19798766,0.045066647,0.23277523,-0.34950963,-0.43788877,0.02728039,0.37244365,0.17840888,0.3294769,0.6110871,-0.10993667,-0.07963608,-0.17534284,0.4771953,1.0776832,-0.33389643,0.037931655,0.40116355,-0.32949543,-0.5440445,0.14007153,-0.40294975,-0.03460294,-0.082727164,-0.32612264,-0.40810287,0.16564229,-0.034593843,-0.26361868,0.003585148,-0.59601325,-0.06278421,0.17117378,-0.23771524,-0.23547353,-0.32052153,0.12326436,0.84195554,-0.25355747,-0.17071627,0.011737387,0.35206622,-0.32806018,-0.48238719,0.15768765,-0.32764307,0.24681202,0.3831281,-0.2979239,0.10586543,0.24243027,-0.6443303,-0.044818286,0.27215198,-0.26607144,0.0035837034,-0.3306468,0.3239562,0.601891,-0.07641398,-0.017992584,-0.52974606,-0.510564,-0.84860027,-0.32191274,0.099426076,0.31664628,0.09023097,-0.43604767,-0.0729212,-0.21660021,-0.028302781,-0.09064115,-0.5463733,0.40812626,0.06345753,0.39916092,-0.24581881,-0.9097115,0.15181132,0.106942646,-0.31601527,-0.41873607,0.323032,-0.26180828,0.94704187,0.085523605,-0.02051572,0.10000362,-0.7003442,0.356855,-0.3186423,-0.2501949,-0.6525107,-0.0091790315 +617,0.67172235,-0.22885726,-0.5560405,-0.09242806,-0.12949409,0.0523061,-0.07591549,0.45044836,0.21295452,-0.3751162,-0.26522282,-0.18008156,0.16536586,0.38672838,-0.23362322,-0.7552016,0.23343845,0.08250344,-0.45345116,0.46405602,-0.5843957,0.39891008,-0.031635087,0.38964447,0.028828481,0.22696362,0.31808352,-0.0041053495,-0.07414625,-0.25601688,-0.15477476,0.016941437,-0.7320221,0.07314614,-0.06456106,-0.49063146,0.11013857,-0.5140823,-0.18683793,-0.64360094,0.24003792,-0.7854025,0.6649409,0.14593998,-0.12602602,0.048553187,0.041448142,0.20756163,-0.3012143,0.17246477,0.048056502,0.001903514,-0.088795505,-0.22298914,-0.026811576,-0.6322878,-0.64515555,-0.024420992,-0.53701776,-0.098831475,-0.15037517,0.00012321521,-0.3322076,-0.01688838,0.1401509,0.18096389,-0.38795677,-0.017977258,0.17284255,-0.06994205,0.26958737,-0.4330525,-0.061273355,-0.09496512,0.31320846,-0.28659552,-0.30832267,0.14577584,0.3797088,0.43339518,0.04053825,-0.15919596,-0.25506592,-0.13308094,0.08477968,0.62914175,-0.028271973,-0.8844485,-0.2929306,-0.0333472,0.15238865,0.38470483,0.2591405,-0.035624355,-0.19011955,0.09594821,-0.23936538,0.43267092,0.47633457,-0.59661967,-0.22432582,0.40114152,0.48601198,0.22062023,0.024720466,0.024111249,0.13334967,-0.6970175,-0.3098917,-0.045582533,-0.1831373,0.7318794,-0.2520183,0.32664278,0.6714651,-0.34879017,0.08329748,0.17308724,0.039199933,-0.2926208,-0.07033964,-0.07929611,0.1730382,-0.53772634,0.071323834,-0.22898805,0.7979601,0.3033614,-0.7540899,0.30377153,-0.69152075,0.04956691,-0.1792583,0.4971533,0.66929525,0.4317049,0.21324718,0.79238343,-0.5000194,0.014610437,-0.175146,-0.52866864,0.14731622,-0.06977976,-0.18979721,-0.50969535,0.071124196,0.24920641,0.03466989,0.19485188,0.65199965,-0.6022082,-0.12279729,0.08591839,0.68615836,-0.3243998,-0.26067302,0.7672451,1.0336331,0.8852079,0.0959824,1.4791689,-0.022102961,-0.16756873,-0.047292184,-0.1373155,-0.73386145,0.2712259,0.30163893,-0.3393935,0.43827963,0.12682448,-0.10380862,0.3086817,-0.21965905,-0.03444871,0.008886397,0.3484279,-0.102558136,-0.37150335,-0.39407757,-0.23734476,-0.102056555,0.11131203,0.24802081,0.4253651,-0.24342914,0.31375182,0.038273703,1.7453581,-0.051309723,0.22142597,-0.06156667,0.4308047,0.4238132,0.011475298,-0.17374551,0.345909,0.3225186,0.4305729,-0.5242653,-0.043787602,-0.23416889,-0.5994319,-0.1744595,-0.3075336,-0.20899618,-0.24454826,-0.39955106,0.037986558,-0.032513734,-0.19055228,0.6955014,-2.6378062,-0.30672696,-0.1382215,0.35503528,-0.26086035,-0.5078963,-0.1855111,-0.391449,0.45156762,0.31077585,0.58853036,-0.84378386,0.39446223,0.34802485,-0.40034425,-0.19429009,-0.5707254,0.014123728,-0.010263736,0.29558456,-0.0047582276,-0.24882591,0.018980125,0.28222355,0.525347,0.028109467,0.060429946,0.11607477,0.4568183,0.08689097,0.57680625,-0.11167119,0.6256017,-0.1521577,-0.12790398,0.20958848,-0.28632104,0.55654746,-0.21565568,0.14755675,0.25743285,-0.3851638,-1.1227471,-0.54262835,-0.10096844,0.9615695,-0.26788697,-0.27257773,0.16060549,-0.3139979,-0.3533227,-0.08977517,0.4458821,-0.26777178,0.1314358,-0.7057468,0.10763705,-0.1275795,0.042502116,-0.019419273,0.05198696,-0.5613633,0.70580786,0.051198255,0.5070489,0.3534247,0.11909751,-0.26919523,-0.5381754,0.056470077,1.1201278,0.4768081,0.17146946,-0.10107537,-0.19329377,-0.5091321,-0.041580122,0.13386743,0.64998436,0.8082246,-0.110035986,0.06631162,0.22741288,0.24854235,0.036464375,0.019118274,-0.20361958,-0.022744209,-0.26368853,0.6503324,0.8104658,-0.46770188,0.57875633,-0.17695087,0.35222185,-0.27928302,-0.47110602,0.65000534,0.8883758,-0.18857877,-0.2519389,0.70996284,0.3566467,-0.38345328,0.4063355,-0.67097,-0.30993158,0.45963502,0.027504772,-0.225771,0.21489994,-0.31907454,0.11187628,-1.1083885,0.37632164,-0.22523624,-0.22370756,-0.40854737,-0.27929726,-3.9959195,0.23629437,-0.22037847,-0.04634908,-0.24173494,-0.15475388,0.17780535,-0.8205652,-0.71913487,0.21773131,-0.05618,0.805749,-0.16544661,0.3350676,-0.09476354,-0.45021668,-0.30923453,0.20618184,-0.07737406,0.29504043,0.06769648,-0.3430402,-0.0705866,-0.14159398,-0.48101854,0.17438757,-0.56875116,-0.56238085,-0.039743915,-0.49819472,-0.33386377,0.84076786,-0.29958165,-0.06576963,-0.07979467,0.0030519068,-0.13247702,0.27696612,-0.013864939,-0.11535398,0.017605713,0.0027565013,0.12760149,-0.24437521,0.16137643,0.06636111,0.41909027,0.27003938,-0.32239607,0.20234263,0.5010024,0.66122085,-0.07923602,0.723497,0.2940649,-0.1204733,0.30291572,-0.36287645,-0.2084152,-0.48547292,-0.5664267,-0.21468614,-0.5380668,-0.5228998,-0.15384862,-0.30586925,-0.8213524,0.6182623,0.12801072,0.17971891,-0.21867807,0.4310949,0.5127099,-0.22984679,-0.08118367,0.07672917,-0.23227112,-0.5511901,-0.21172063,-0.53999925,-0.37719738,0.18682034,0.90509033,-0.43340847,-0.00783094,0.06667915,-0.06925466,0.077376805,0.09216819,0.021837158,0.029316245,0.29318318,-0.054888368,-0.70571345,0.67784405,-0.37941727,-0.30901048,-0.6334341,-0.05612276,0.5844315,-0.68937445,0.37121126,0.52178675,0.07366806,0.24462022,-0.5956073,-0.011473556,0.14698517,-0.1958102,0.27482608,0.34920967,-0.829186,0.512631,0.35446763,-0.25344166,-0.64055634,0.78757143,0.043572735,-0.28253493,-0.18724556,0.31705365,0.37774873,0.038601056,-0.43789795,0.2788683,-0.6704965,0.3047631,0.19500333,-0.031164499,0.5155478,0.1329865,-0.24702804,-0.7766296,-0.043353636,-0.53880334,-0.29432502,0.22275461,-0.013325945,0.14464734,0.1150649,0.28925592,0.29316878,-0.8186715,0.17091496,0.046798382,-0.28949073,0.3398229,0.4608933,0.5874767,-0.4600565,0.5543153,0.051422764,0.115602165,0.13448577,0.08155334,0.5047391,-0.066945694,0.3859836,0.21808648,-0.2708563,0.16184983,0.7415549,0.11558101,0.29807353,0.33078578,-0.041178357,0.0517554,0.17051078,0.2945616,0.21191078,-0.5947477,-0.01303415,-0.046168167,0.16301781,0.57746994,0.30441085,0.20809126,0.040943515,-0.21090424,-0.07472147,0.36867806,0.034466583,-1.4410915,0.38665548,0.25291252,0.68452865,0.4966983,0.054124355,0.09488908,0.25680438,-0.20130654,0.1911994,0.2802948,0.06835101,-0.43143046,0.57949895,-0.6769473,0.43189895,-0.107649244,-0.025709828,-0.026798764,-0.17421383,0.42525664,1.0509876,0.0014473498,0.052252572,0.031194462,-0.24169636,0.10612022,-0.4405822,-0.09139514,-0.64360785,-0.115086,0.78776544,0.47625753,0.28784955,-0.13582191,0.020359334,0.12771,-0.10046884,0.039628003,-0.08571816,0.33530453,0.05792935,-0.67323303,-0.37003025,0.6512391,0.14288993,0.28700185,-0.107976995,-0.271434,0.37597963,-0.09734816,-0.054503605,-0.0014666418,-0.7638385,0.08735153,-0.45049158,-0.4591838,0.54111165,-0.22093783,0.14998828,0.22380714,0.09419621,-0.16280036,0.3921803,0.0884243,0.7168341,0.015210251,-0.2553862,-0.38833964,0.3441004,0.24599873,-0.34097922,-0.14664222,-0.2512058,0.25254604,-0.6398173,0.47289515,0.10996407,-0.37284562,-0.119728476,-0.035408173,0.043384463,0.4386036,-0.11728539,-0.22721075,0.0061246804,-0.22503655,-0.17930023,-0.24757588,-0.2750681,0.18633018,0.2973193,-0.08412737,0.04243527,-0.04006957,-0.16673927,0.28513765,0.10834304,0.3382745,0.41676545,0.11946597,-0.22800219,-0.29374543,0.23565048,0.54719263,-0.3146958,-0.16159044,-0.42321786,-0.60175055,-0.4226029,-0.023335734,-0.1905818,0.3387073,0.22269206,-0.09786165,0.59047896,0.17518282,1.2231674,0.13731124,-0.4313723,0.056838084,0.69439393,0.026491499,-0.20686269,-0.42186865,1.3540615,0.47224018,-0.3394055,-0.24150927,-0.2759434,-0.108002014,0.24263422,-0.3560029,-0.23098314,0.021602595,-0.5387009,-0.3403634,0.27015647,0.24963166,0.21039997,-0.08388597,0.033095848,0.36327472,0.08602912,0.21866238,-0.7087204,-0.28051093,0.31900716,0.41980556,0.036545563,0.09791901,-0.43279442,0.3625137,-0.60236806,-0.03197514,-0.39011252,0.27271992,-0.26617715,-0.43111432,0.22323568,0.18467398,0.40725288,-0.29510733,-0.47807357,-0.18796508,0.24497934,0.23015903,0.17311142,0.651287,-0.23254383,-0.06950254,-0.21517813,0.5204136,1.3059176,-0.14675952,-0.020258233,0.57793665,-0.3510855,-0.6846449,0.32006696,-0.47654918,0.31654796,-0.16647439,-0.31806415,-0.7585921,0.28219035,0.032599706,0.23479342,0.1635449,-0.7067669,-0.27577505,0.18366045,-0.2523875,-0.30807707,-0.31961817,0.18502259,0.98280674,-0.33950242,-0.17923056,0.14413111,0.22042648,-0.17444627,-0.6124285,-0.13670029,-0.22457747,0.35981438,0.05516478,-0.26726818,-0.12936445,0.034812737,-0.39109623,0.27785215,0.2523305,-0.27605164,0.29877377,-0.42877474,0.013940115,1.0104351,-0.30811268,0.1767798,-0.42407992,-0.46834937,-0.7554078,-0.4079754,0.29528302,0.023218244,-0.005066635,-0.5082899,-0.0059464574,-0.064350024,-0.10310823,-0.19554813,-0.23197426,0.50013214,0.105164744,0.37453339,0.13526396,-0.9734192,0.1449272,0.16258776,-0.3318947,-0.74204737,0.54371977,-0.22410615,0.8390785,0.13241193,-0.005726786,0.5049229,-0.6765973,-0.08063764,-0.29132104,0.25366607,-0.89516735,0.17792107 +618,0.2873601,-0.1408609,-0.3069825,-0.14160666,-0.20287031,-0.08528983,-0.08935505,0.72962165,0.29886281,-0.34750262,-0.2659151,-0.2331478,0.0039674803,0.49543822,-0.1902142,-0.25080442,-0.102775835,0.13257805,-0.21411176,0.79050237,-0.21499918,0.20342827,-0.027729945,0.39984962,0.532929,0.42439947,0.18817057,0.10089989,-0.06996056,0.029210264,-0.13769256,0.04450111,-0.34823057,0.16250673,-0.4480301,-0.3304982,0.050363347,-0.55227447,-0.61360973,-0.7828664,0.4685666,-0.89569384,0.4341407,-0.14682129,-0.1371879,-0.30841085,0.22992897,0.24013424,0.01071057,-0.20039867,0.017371917,-0.037797853,0.16134916,-0.10936176,-0.32126057,-0.6509621,-0.48001367,-0.09575625,-0.39459828,-0.22659835,-0.5244626,0.20066422,-0.37570927,-0.028879523,0.05273801,0.1332079,-0.5234785,-0.10015178,0.10444515,-0.3866811,0.2231639,-0.6853688,-0.31554928,-0.2972634,0.20870958,0.010257224,-0.17131065,0.6668814,0.17162585,0.30492422,-0.0018062429,-0.079091914,-0.36499804,-0.071735434,-0.06115581,0.6224501,0.011114321,-0.51863915,-0.14171176,0.10029678,0.70796394,0.44496682,0.20005278,-0.23737274,-0.05894393,-0.11708789,-0.18355408,0.42988777,0.77634674,-0.031259645,-0.27016932,0.22714776,0.34410658,0.5280046,-0.22041568,0.099238135,-0.024991881,-0.39268425,-0.19726147,-0.011529776,-0.13171418,0.814645,-0.042644575,0.27387974,0.8094862,-0.28988418,0.33367717,-0.09640882,0.24366838,-0.43916738,-0.33547533,-0.20614024,0.14201745,-0.3189336,0.2252541,-0.20823497,0.9336437,0.29186586,-0.6008745,0.41152093,-0.43661025,0.13278984,-0.03869475,0.50904745,0.60891765,0.3884842,0.3980795,0.6579024,-0.15486568,0.10054824,0.03682072,-0.36790276,0.09028812,-0.29641482,-0.14108132,-0.4377366,0.24060637,0.15180297,-0.08462424,-0.11906567,0.62887937,-0.55527556,-0.2514616,0.3048845,0.8374529,-0.22586727,0.14895053,0.72220635,1.0093122,0.91310483,0.02803534,1.2751678,0.16297184,-0.13654988,0.3713788,-0.057713076,-0.8471239,0.19897223,0.46136302,-0.45623586,0.45534983,0.1308342,-0.16338865,-0.012032401,-0.57882744,0.0057798843,-0.20745994,0.2994027,0.20684329,-0.14406869,-0.44546968,-0.23092064,-0.12566555,0.023864383,0.024576245,0.18534218,-0.3743424,0.44432983,0.01325441,1.5843303,-0.14198214,-0.02007851,0.1206176,1.2260039,0.27033356,-0.10940959,0.08848821,0.45477664,0.3479385,0.094062634,-0.50923103,0.036354087,-0.39845932,-0.44437382,-0.10524119,-0.43333843,-0.21260992,0.07429495,-0.20465612,-0.26661393,-0.1240371,-0.12828213,0.49841318,-2.856613,-0.06634158,-0.15836544,0.2944601,-0.3258341,-0.18049498,-0.041401125,-0.42967966,0.38928902,0.3598171,0.5977146,-0.73624134,-0.09974041,0.93630624,-0.61392194,-0.0026648857,-0.5312267,0.18867727,-0.09263741,0.5389687,-0.094123594,-0.10573903,0.021656418,-0.10022922,0.5182929,0.46157533,0.08505091,0.4106413,0.46726352,-0.060891215,0.4101305,-0.21300925,0.43141362,-0.36178273,-0.09229217,0.43245447,-0.39889735,0.35687244,-0.24904169,0.09116502,0.73764384,-0.4144216,-0.74812967,-0.4009545,-0.20057373,0.9188126,-0.40579054,-0.6045398,0.43833274,-0.38261816,-0.082407504,-0.17209773,0.45710737,-0.16437365,0.11017966,-0.50756514,-0.15905043,-0.1746568,0.20242314,0.04804291,-0.12175701,-0.16535799,0.64460284,0.043054506,0.5792153,0.16257627,0.14225739,-0.37116477,-0.55181813,0.09806171,0.32004923,0.38478547,0.12047806,-0.2589575,-0.08249801,-0.33504486,-0.28003827,0.22853123,0.61006635,0.8080531,-0.22549668,0.08910651,0.39324558,0.07466921,-0.021718329,-0.03308705,-0.34431022,-0.28605214,0.03605385,0.3996485,0.8426397,-0.4447293,0.2164278,-0.13986069,0.113030955,-0.11418869,-0.45496872,0.6517581,0.6909451,-0.19685966,-0.22608374,0.53308594,0.49135646,-0.5054189,0.41715762,-0.9451153,-0.02799744,0.60334784,-0.07619888,-0.62144667,-0.027419781,-0.39245474,-0.07012706,-0.8213411,0.17701934,-0.23500104,-0.41308367,-0.5535934,-0.042340096,-2.4692075,0.026404338,-0.17636786,-0.4704119,-0.10579521,-0.2558451,0.19813281,-0.5807228,-0.6448774,0.2468471,0.0715775,0.5999607,0.071431704,0.0006832047,-0.38280156,-0.29914075,-0.7262528,0.082897775,-0.009650501,0.5359204,-0.24602388,-0.5375152,-0.20176387,-0.14812969,-0.57690275,0.19706169,-0.35636446,-0.24439912,-0.43139312,-0.53530234,-0.18606974,0.57403797,-0.30596554,-0.0070040524,-0.12647058,-0.057211816,-0.22071005,0.24672645,0.15358807,0.023092605,0.16731882,-0.08722022,0.25865352,-0.23869367,0.54627174,0.051358853,0.44741067,0.18611836,-0.23264508,0.18773875,0.40419438,0.5709701,-0.39860037,1.0929834,0.2682541,-0.13876271,0.31012484,-0.19888921,-0.21510601,-0.64824575,-0.3271054,0.20194039,-0.39225549,-0.47727737,-0.09678292,-0.38905957,-0.7957744,0.6593294,0.14333372,0.66397816,0.23070721,0.0067715268,0.5059564,-0.18372835,0.0024227398,-0.07313165,-0.14513494,-0.7712834,-0.34826222,-0.7437746,-0.56812686,0.29998806,0.9637354,-0.22301164,-0.21241993,0.1419461,-0.55551267,-0.08064801,0.026343627,-0.08992881,0.09235596,0.30443364,-0.08225718,-0.6545953,0.35728145,0.19172114,-0.08500506,-0.43686888,0.16163589,0.33563405,-0.7373158,0.4649353,0.09905126,-0.1313548,-0.3904979,-0.61829126,-0.35944474,-0.46392286,-0.017553512,0.30875468,0.18252279,-0.77976185,0.24675404,0.032509957,-0.45714033,-0.6388307,0.5745957,-0.19849151,0.057035387,-0.35404694,0.30487064,0.19586273,-0.039476003,-0.2719844,0.27813718,-0.39455518,0.14407097,0.19731522,0.13893504,0.7049561,-0.16943434,-0.13491112,-0.7437559,0.34955224,-0.35023916,-0.22162919,0.5452756,-0.019289399,-0.021599818,-0.04896827,0.3126774,0.2986428,-0.27456763,0.2036121,0.0645227,-0.23690276,0.4849022,0.322305,0.7418382,-0.5417688,0.63942426,0.12847763,-0.24401383,0.14388198,0.037467077,0.25953338,0.18565351,0.37542096,0.12745942,-0.4450988,0.22693014,1.0577896,0.2909265,0.40615883,0.12066851,-0.1240372,0.369032,0.20741285,0.45498773,0.06157792,-0.72988987,-0.121454425,-0.4696208,0.14181441,0.58280987,0.17741688,0.31661174,-0.14528371,-0.18335976,0.042594627,0.18929738,0.10716259,-1.2468379,0.026337832,0.36640748,0.94991916,0.34259373,-0.060380016,-0.14423813,0.73089236,0.045231253,0.2675991,0.43627116,0.11425512,-0.55397296,0.5772986,-0.67825115,0.75585705,0.1244277,-0.16531624,0.27573484,0.2724497,0.5447195,0.60583144,-0.22566213,-0.17750506,0.09423217,-0.30854127,0.1700828,-0.47014377,-0.06317654,-0.4758241,-0.39331102,0.53563,0.5751726,0.15333068,-0.05758356,-0.042688467,-0.12777424,-0.08258942,0.36522475,-0.055257224,0.05289055,-0.24332474,-0.49724683,-0.326744,0.5400951,0.058514953,0.17567855,-0.17570291,-0.25348836,0.21414636,-0.2015088,0.081363134,-0.0012386766,-0.85087943,0.060317505,-0.027302714,-0.622282,0.4304389,0.14448684,0.224627,0.20353031,-0.0030911157,-0.109300345,0.45866802,0.010859045,1.0258149,-0.26661614,-0.11652774,-0.7327061,0.054402124,0.32833257,-0.3401601,0.34236178,-0.24050926,-0.30666038,-0.42155764,0.49645138,0.002613161,-0.20237398,-0.0044422257,-0.31797227,0.00048266622,0.6855492,0.21063891,-0.08474182,-0.25055903,-0.060819816,-0.529956,-0.35232735,-0.2969269,0.29131672,0.26404873,-0.10618667,-0.215836,-0.19738291,0.10749783,0.19953698,-0.0681421,0.26215717,0.17827262,0.13418284,-0.20505346,-0.0095768785,0.28653374,0.63747495,0.21797763,0.068834856,-0.010963678,-0.49293214,-0.5042959,-0.16848275,-0.12329087,0.3820565,0.33109638,-0.22214235,0.84999156,-0.07674259,1.1705652,0.14832437,-0.48093545,0.08790508,0.6969022,-0.023006849,-0.23470268,-0.51984364,0.98231786,0.3974804,-0.02005679,-0.1297454,-0.2124014,-0.0031268029,0.31933117,-0.2500241,-0.027561964,-0.022385152,-0.66226745,-0.096850894,0.21251492,0.22355609,0.24710417,-0.14004292,-0.2159103,0.22444247,0.09693576,0.4526138,-0.3413061,-0.51155335,0.37569588,0.3300358,0.103230715,0.16317323,-0.42814496,0.3720565,-0.60394937,0.2497922,-0.51202905,0.26423705,-0.50095487,-0.5322154,0.053603128,-0.11977176,0.72189945,-0.35537928,-0.5273836,-0.26307845,0.46038535,-0.03485359,0.32179493,0.4562648,-0.3099932,0.02610162,-0.21478514,0.47536123,1.0120238,-0.16644149,-0.2812778,0.3156745,-0.50473195,-0.71010023,0.602751,-0.7394842,0.46664,0.055102207,-0.14092268,-0.5938318,0.064694755,0.3368105,-0.05154054,0.041145016,-0.7072317,-0.52240926,0.030093215,-0.12972973,-0.0895422,-0.40218276,0.23851041,0.6239655,-0.30882323,-0.56611764,0.24194717,0.24805403,-0.040776394,-0.51501876,-0.07938399,-0.10336531,0.39203683,0.01706105,-0.45173776,-0.20922305,0.017999513,-0.45902774,0.32370755,-0.07920195,-0.54169476,0.11766627,-0.29471585,-0.00921141,1.2280415,-0.44836056,0.01121921,-0.52664566,-0.51258445,-0.90186113,-0.36965227,0.461603,0.24555133,0.061645508,-0.5797679,0.15405568,-0.3078316,0.17646275,-0.18985558,-0.550074,0.4614671,0.15898222,0.5268967,-0.18517591,-0.8358095,0.21332671,0.050378118,-0.07778083,-0.70789975,0.7051523,-0.23803343,1.1350205,0.13559394,-0.04332076,0.18847162,-0.4776901,0.040217493,-0.2606386,-0.25890788,-0.33944738,0.306193 +619,0.34902316,-0.022599135,-0.4241333,-0.13716398,-0.39867115,0.12409454,-0.15409397,0.20448014,0.1506501,-0.44093302,-0.09225731,0.06851144,-0.022645261,0.14220403,-0.103071585,-0.4447305,0.046179958,0.22274266,-0.6939052,0.6123305,-0.4190833,0.37786978,0.020785755,0.32670218,-0.05645855,0.35960028,0.26780483,-0.08460091,0.012473928,-0.18513617,-0.020152526,-0.07749698,-0.7779923,0.14065541,-0.34285662,-0.20496808,0.06716202,-0.30573413,-0.25682446,-0.7802445,0.26216686,-0.96856546,0.5094579,-0.11311497,-0.22872762,-0.09962665,0.29984504,0.1743292,-0.2769324,-0.09791231,0.38977936,-0.16893302,-0.13113894,-0.36961764,-0.07350128,-0.3858393,-0.40941292,-0.1161061,-0.67242163,-0.20990612,-0.5016536,0.21899422,-0.2867276,-0.27221063,-0.25998917,0.45963868,-0.33298638,0.14923403,0.079074584,-0.2971004,0.31169766,-0.5743204,0.11668728,-0.08295375,0.43649083,0.09301267,-0.10340375,0.6405748,0.3833578,0.31108305,0.24901256,-0.334034,-0.2717217,-0.21982037,0.2051806,0.48487267,-0.10793148,-0.39486167,-0.17542733,-0.008704649,0.25866327,0.20652,-0.005602994,-0.34372482,-0.0106124235,-0.13395678,-0.0522548,0.82621723,0.50549877,-0.15509126,-0.17045482,0.29998818,0.5939254,0.26744428,-0.38479212,-0.054130528,-0.1026762,-0.46466753,-0.13268869,0.2912888,-0.07158346,0.50869405,-0.18119287,0.06852465,0.8870419,-0.08732561,-0.059890706,0.06606709,-0.045129392,0.1261579,-0.32623702,-0.08126558,0.26710245,-0.630064,0.12931477,-0.46837878,0.59539753,0.077640735,-0.83980656,0.51218706,-0.47798675,0.078043334,0.111670844,0.64780694,0.5633548,0.6069816,0.17168991,0.88244426,-0.3233882,0.07559282,0.16094711,-0.36874983,-0.082074165,-0.27275336,0.11315193,-0.3253469,0.10172248,-0.25933546,0.15424006,-0.0531156,0.31322402,-0.4906648,-0.274972,0.28495616,0.92012596,-0.30953258,0.013978963,0.63759696,1.1769035,0.85985154,-0.06347422,1.2486085,0.0031378737,-0.18484364,-0.0277067,0.02307464,-0.67803824,0.1430037,0.27975753,0.5021685,0.08536013,-0.1336064,-0.109471254,0.17917264,-0.4908958,0.011267076,0.02554375,0.39975134,0.12902041,-0.0762061,-0.2922094,0.000242642,0.08256234,0.020863298,0.1948116,0.12072422,-0.22053511,0.3302605,0.050527964,1.1472591,-0.10062538,0.14351808,0.22014798,0.65144175,0.35073504,-0.061459713,0.046141684,0.51799524,0.44011185,0.023816973,-0.56002,0.15425685,-0.6368495,-0.3511061,-0.0045675635,-0.40504923,-0.26606563,0.04726109,-0.3798731,-0.17656586,0.10519509,-0.3252011,0.38555628,-2.6625042,-0.251507,-0.14420377,0.40909126,-0.36178324,-0.14951375,-0.16406608,-0.63470805,0.43439606,0.08335419,0.5697495,-0.56586313,0.43025652,0.6329054,-0.47306994,-0.14587083,-0.59037775,-0.1283362,0.046636492,0.49733534,0.050423365,-0.08386004,-0.20925164,0.20405163,0.83560103,0.28944874,0.15712225,0.5853613,0.30498892,-0.041987717,0.6985927,-0.17368889,0.45327562,-0.25629124,0.0009841621,0.36433885,-0.28588587,0.25916,-0.4545222,0.044576917,0.68901646,-0.4507616,-0.80929863,-0.6161932,-0.32834408,1.0967743,-0.36917302,-0.55455846,0.27411574,-0.24459492,-0.026303759,0.058712043,0.71442354,-0.06833076,0.39885786,-0.49646738,-0.014979626,-0.22424152,0.29135713,0.029835284,-0.05972907,-0.2826237,0.90164,-0.0013781701,0.59997934,0.173389,0.2223557,-0.28876045,-0.37224397,0.17508098,0.6802021,0.38550448,0.07666172,-0.12708674,-0.057156622,-0.28218082,-0.3106894,-0.23927447,0.7724472,0.6625327,-0.15557443,0.08475484,0.36338523,-0.04648594,-0.0033113617,-0.17010488,-0.30358955,-0.20992725,-0.044568557,0.4660428,0.7268918,-0.106717534,0.39054796,-0.20727389,0.1752475,-0.11005672,-0.57623154,0.6903823,0.5095435,-0.22142445,0.08500034,0.41036108,0.40989113,-0.43949074,0.48071697,-0.6058677,-0.33418682,0.839733,-0.223163,-0.48225808,0.14132532,-0.20050658,0.024790108,-0.5581277,0.27162996,-0.53782415,-0.54900116,-0.2560114,-0.17463274,-2.766643,0.14207028,-0.11522688,0.0070796683,-0.53029174,0.015590406,0.23535776,-0.41043583,-0.5395896,0.19371818,0.2328156,0.65147877,-0.11763702,0.13556746,-0.45328307,-0.10437066,-0.10356456,0.4145131,0.11644188,0.13844346,-0.28593716,-0.31898886,-0.18801308,0.03428581,-0.6410818,0.1093873,-0.46317384,-0.28264803,-0.07524808,-0.51893973,-0.21700199,0.6492421,-0.38980934,0.14617905,-0.0729124,0.048931334,-0.13271068,0.07099796,0.0718268,0.2666416,0.034708627,-0.110995635,0.2019258,-0.23165719,0.5892274,0.07803082,0.41803098,0.016080247,-0.07399428,-0.010531195,0.31984526,0.6255773,-0.2385111,1.1904589,0.18434103,-0.08466794,0.4269748,-0.21777785,-0.40953922,-0.83005005,-0.13633393,0.07524895,-0.29502645,-0.3900382,0.217204,-0.4333728,-0.77229166,0.6328421,0.12892202,0.4995429,-0.029748129,0.3060546,0.22620021,-0.38514253,0.046961498,-0.044069435,-0.07985769,-0.58646303,-0.34958816,-0.83495057,-0.53655803,-0.091715954,0.6209513,-0.34651312,-0.14717872,-0.01842017,-0.2465241,0.16189075,0.11652463,0.010378347,0.1646188,0.4475988,0.15208009,-0.6109406,0.46681872,-0.13513996,-0.084044404,-0.40161783,0.3613729,0.65244514,-0.69662666,0.52242553,0.22910298,-0.03929772,-0.48299482,-0.6977466,-0.11367803,-0.038990058,-0.15166807,0.48530906,-0.07138844,-0.96456397,0.42496863,0.10340686,-0.49018764,-0.6876704,0.39100823,-0.043423347,-0.3654557,-0.13083604,0.44531533,0.013512837,-0.13275659,-0.25437075,0.22528015,-0.46369028,0.2718421,0.08209207,-0.11315018,0.3439019,-0.19726619,-0.37657017,-0.72831476,0.0062708473,-0.5982746,-0.3020167,0.38381264,-0.17360285,-0.19529799,0.25006142,0.14225493,0.4959569,-0.06213476,0.21574084,-0.03655563,-0.29600185,0.37969926,0.37815166,0.4367141,-0.46474776,0.6964096,0.16830763,-0.2284113,0.19643392,0.2381324,0.38697323,0.030534668,0.5394148,-0.15871212,0.0541198,0.23961583,0.7597922,0.27290115,0.4599743,0.13050678,-0.13117172,0.4639345,-0.07517473,0.24803685,0.026063208,-0.6844616,0.10600627,-0.13330385,-0.07632352,0.5043038,0.2492388,0.24247201,0.18544659,-0.17807089,-0.11447108,0.1812898,-0.10863434,-1.2977229,0.44881317,0.27676192,0.91569555,0.29333606,0.17811094,-0.18888389,0.83282626,-0.17476293,0.11894708,0.4107844,-0.12679179,-0.4173191,0.745391,-0.6238608,0.25617236,0.008167518,-0.0068946118,0.36129704,0.1270085,0.40960264,0.8737172,-0.2129147,0.0014829508,-0.041265633,-0.10846053,0.10960653,-0.20733836,0.21182789,-0.21882597,-0.50757307,0.55749357,0.3692574,0.35790253,-0.16676225,0.0060818684,-0.047152635,-0.27198243,0.22091122,-0.072728164,-0.13384989,-0.033220235,-0.33627543,-0.07457356,0.5132459,-0.15283558,0.065450475,-0.100626014,-0.044664618,0.13649711,-0.0345709,0.0958238,-0.09637709,-0.83986026,0.16063395,-0.24832502,-0.3989074,0.44525272,-0.33984014,0.06701534,0.15469222,-0.030816738,-0.072376974,0.41672605,0.33022246,0.45838785,0.03149948,-0.22804503,-0.32154366,0.05125355,0.03719804,-0.349358,0.29066402,-0.31253958,-0.039764762,-0.57644403,0.48055476,-0.36427853,-0.23989563,0.24994908,-0.34819144,-0.239782,0.6076556,0.02955779,-0.11615624,0.05678281,-0.19304015,-0.40175554,-0.15650143,-0.15643442,0.19409673,0.20583116,-0.0015531778,-0.18790765,-0.08459394,-0.21627033,0.48519936,0.06762966,0.34285402,0.0537618,-0.0786762,-0.34488255,0.17550655,0.26676628,0.6852545,0.10404883,0.16203931,-0.16342996,-0.24011266,-0.43176046,0.20207584,-0.097698174,0.19029084,0.10187479,-0.24597915,0.97386014,0.03352497,1.0211623,0.033827227,-0.34538117,0.09912328,0.74268764,-0.106044725,0.07136292,-0.49705297,0.9490281,0.3933352,-0.13989273,0.021903863,-0.46197113,0.07479233,0.26933137,-0.3649508,-0.03065109,0.010180371,-0.5005861,-0.278754,0.16740994,0.27078143,0.13927306,-0.097188234,-0.33868617,0.090697,0.13497105,0.36744568,-0.7908373,-0.17889623,0.19457588,0.17575921,-0.14488958,0.09050315,-0.28488228,0.3676642,-0.6230789,0.20508416,-0.38014725,0.056552667,-0.3735728,-0.35065508,0.15432489,-0.028017435,0.33038324,-0.31171006,-0.42416975,-0.097607985,0.24656892,0.13346675,0.2760075,0.63938606,-0.21347506,0.059379138,0.17695189,0.4920918,0.9610202,-0.3280851,-0.01370201,0.23151362,-0.6355576,-0.5984959,0.26761958,-0.44685873,0.13601546,-0.039124127,-0.49995902,-0.26654583,0.14483905,-0.049953137,0.03268688,0.032942753,-0.885102,-0.17019463,0.3542606,-0.24902,-0.19811888,-0.18151458,0.37674946,0.73823583,-0.16246568,-0.3649952,0.094223365,0.13145813,-0.29754332,-0.8023046,-0.012452632,-0.31861523,0.22334686,-0.02541765,-0.2960646,-0.0035493805,0.2770083,-0.6910957,0.09684964,0.18092348,-0.43099493,0.08546876,-0.1389138,0.049378317,0.83528095,-0.20870604,-0.25289187,-0.4471922,-0.5310734,-0.7790391,-0.41583246,0.1417763,0.19741464,0.052603982,-0.41724393,-0.21996678,-0.27757344,-0.00037876196,-0.042952634,-0.43752745,0.28855205,0.14118828,0.50554746,-0.41483876,-1.1574812,0.16396536,0.13832213,-0.02961857,-0.5624665,0.46455598,-0.049970858,0.81322813,0.058851812,-0.1387423,0.041918725,-0.54826915,0.05925453,-0.4071529,0.020696554,-0.6489169,0.22109939 +620,0.47560525,-0.03147015,-0.6973079,-0.017983004,-0.44818884,0.051502824,-0.45488065,0.08987455,0.47042775,-0.30861896,-0.06596547,0.001147186,-0.20657256,0.20375805,-0.12961698,-0.71808743,-0.022514446,0.21531162,-0.5781877,0.73867923,-0.23422511,0.30232453,0.146813,0.17142752,0.09108105,0.16413349,0.19281127,-0.04504826,-0.21434021,-0.20240037,0.06654765,0.07050755,-0.5891724,0.39637172,-0.18470545,-0.2755135,0.014678528,-0.31276995,-0.24520268,-0.78848964,0.027155336,-0.540628,0.5980614,-0.01965922,-0.2621103,0.25064778,0.20786844,0.281924,-0.052408885,0.1372726,0.2114993,-0.5041313,-0.6543898,-0.23646733,-0.3691101,-0.59312063,-0.72485465,-0.062628746,-0.7061676,0.10805885,-0.3183087,0.2669026,-0.26894447,-0.076588504,-0.2798775,0.40057164,-0.40165302,-0.035615236,0.20552363,-0.12186791,0.11900536,-0.60915095,0.008030465,-0.0931811,0.21975307,0.22801831,-0.025206478,0.1665602,0.24594599,0.4659274,0.2640027,-0.42949098,-0.28467384,-0.12384701,0.22054254,0.2960034,-0.19607268,-0.089322984,-0.23052897,-0.08512642,0.60316175,0.257527,0.1644183,-0.21245655,0.018236423,-0.07641495,-0.31916428,0.2701876,0.4907512,-0.31092346,0.23470476,0.58473575,0.5597165,0.19156146,-0.25969827,0.20395383,-0.2137698,-0.4415063,-0.17564456,0.22260042,-0.12868585,0.4476059,-0.115229264,0.1720243,0.523652,-0.07820992,-0.15835914,0.15583318,0.0011633495,0.036470022,-0.10395998,-0.14794391,0.28010055,-0.54782754,0.01009683,-0.35214737,0.6609856,-0.13909848,-0.99735934,0.30047476,-0.36129445,0.15391675,-0.09450042,0.74198496,0.91838163,0.64114904,0.13863342,0.84876966,-0.27129427,0.24019794,-0.08934172,-0.36224002,0.081212536,-0.092714936,0.20002574,-0.53510565,-0.078041494,-0.21198559,-0.2605366,0.023758497,0.73937184,-0.46234578,-0.23190044,-0.072585724,0.54673445,-0.26596645,-0.080869205,0.79970163,1.1274352,0.9085395,0.13614799,1.1956025,0.34950328,-0.18803997,-0.31177986,-0.24295883,-0.57053983,0.18955123,0.29655853,-0.10953627,0.46274453,0.19111758,-0.048322216,0.3771398,-0.15086187,-0.17465644,-0.072004035,0.34995067,-0.15086827,-0.1930189,-0.31271476,-0.16967186,0.20241448,0.10937196,0.15511708,0.45040688,-0.21579516,0.54756534,0.23044121,1.1699305,-0.15168953,-0.1259282,0.05538548,0.2457132,0.30208293,-0.03160796,-0.13085072,0.29283684,0.3293595,0.0012370488,-0.520121,-0.070148505,-0.075726405,-0.5134673,-0.29451245,-0.23261245,-0.10665951,-0.31593862,-0.023094956,-0.13083732,0.025881747,-0.67459583,0.443074,-2.2367783,-0.079904795,-0.21924987,0.22509395,0.048919547,-0.29002023,-0.04973701,-0.41809735,0.6576406,0.35207248,0.45909628,-0.5475915,0.49425843,0.6143792,-0.65290713,-0.049683772,-0.70331526,-0.19414438,-0.062418047,0.50371605,-0.013691971,-0.30018896,-0.08105601,0.10689368,0.49257216,-0.12409945,0.094588235,0.50736964,0.33287922,-0.20512195,0.46547434,0.110778,0.5464901,-0.21924794,-0.23223658,0.44950712,-0.26139984,0.31671715,-0.3613764,0.06479794,0.3260786,-0.35857514,-0.75124645,-0.44619098,-0.06818227,1.3703598,-0.44746542,-0.63919693,0.3015201,-0.06443055,-0.18670107,0.21575224,0.37176442,-0.10504141,0.058972947,-0.782746,0.07491554,0.04644311,0.1362816,-0.0284188,0.116722114,-0.55231464,0.64150506,-0.18678555,0.6605447,0.53376913,0.36423028,-0.11412919,-0.36622834,0.15254574,0.989418,0.39811963,-0.0091367625,-0.24784896,-0.08718666,-0.105443574,-0.2458403,-0.044795606,0.44913247,0.6057685,-0.14172438,0.024198255,0.25921854,-0.320545,0.04561042,-0.29945126,-0.53372383,-0.104645446,0.1320535,0.53282815,0.68894255,0.062321614,0.46412602,0.03178216,0.37425047,-0.06759247,-0.61696273,0.5806178,0.95344555,-0.30628288,-0.19226576,0.69164556,0.30497208,-0.112502165,0.71970713,-0.59268796,-0.37846223,0.4267402,0.08029133,-0.37109876,0.31907046,-0.28799778,0.15879351,-0.9335851,0.22629467,-0.40535384,-0.5231566,-0.4199182,-0.06831798,-2.793774,0.2564342,-0.27186164,-0.053061217,-0.27361083,-0.14359808,0.14352301,-0.49154764,-0.71314013,0.03720078,0.25260478,0.41148207,-0.2101618,-0.0037388206,-0.21728723,-0.2901985,-0.07747385,0.33412188,0.00922208,0.12518084,-0.3123912,-0.4419194,-0.015102534,-0.32673162,-0.25156093,-0.19881174,-0.6231944,-0.100730866,-0.108068526,-0.3785519,-0.26297507,0.5212236,-0.5159531,-0.038118653,-0.4848947,0.06531006,0.12833157,0.2255585,-0.15506482,0.16135442,0.27081937,-0.085473254,-0.17435484,-0.10838208,0.12591419,-0.03741798,0.31646398,0.4554743,-0.06523627,0.13758601,0.5324809,0.6365411,-0.1783604,0.972399,0.36632738,-0.25424266,0.2571074,-0.24444047,-0.27158198,-0.73469573,-0.31895995,-0.11905872,-0.36219057,-0.4384371,0.04121706,-0.23820063,-0.9563928,0.66850287,0.17287035,0.09945898,-0.06955314,0.47904384,0.46618962,-0.093976565,-0.08109139,-0.04124013,-0.4469822,-0.3789411,-0.24196005,-0.8426248,-0.49668452,0.027914003,1.2539164,-0.34338406,0.12064795,0.22043827,-0.24981162,0.14568655,0.21416841,0.11791092,0.20261227,0.22959732,0.26652768,-0.6940734,0.52728397,-0.15241627,0.10909804,-0.5511857,0.120350264,0.5815397,-0.6251058,0.2654412,0.5434356,0.018740233,0.042973604,-0.8193734,0.03854366,0.11102222,-0.16142032,0.64876384,0.2584021,-0.7365681,0.7517222,0.29126996,-0.23198262,-0.8663921,0.3453248,-0.00895767,-0.19909853,0.047616385,0.5035702,-0.0066501675,0.039474856,-0.29685113,0.08525609,-0.42932618,0.36315957,0.19916752,-0.13133824,0.11667152,-0.17256671,-0.24353532,-0.87783194,0.037711106,-0.48952332,-0.21295452,0.14700626,-0.10464911,0.01895148,-0.011245468,0.25467622,0.40578973,-0.4581243,0.20456298,-0.254053,-0.33865297,0.57291406,0.6570282,0.33964348,-0.30835977,0.5811881,-0.054600276,-0.17619905,-0.29357916,-0.04178442,0.45404172,0.01597815,0.46491027,0.29784086,-0.08216103,0.2622955,0.55550176,0.015942974,0.28108978,0.06618947,-0.3766124,0.26692098,-0.011591007,0.30212665,-0.2619247,-0.39689553,0.044653177,-0.052380618,0.23491888,0.45463014,0.19510372,0.51654446,-0.14534628,-0.1381347,-0.032367542,0.12417096,0.119962886,-1.1921638,0.44454905,0.34229487,0.45551798,0.6195428,0.16400482,0.06288576,0.6176848,-0.35976613,-0.010127324,0.36351186,0.0325109,-0.20822251,0.48101667,-0.83848345,0.15976626,-0.21821715,0.10407558,0.1946744,0.038144436,0.47911477,1.140504,-0.13136889,0.1251446,-0.1690301,-0.2178765,0.023605213,-0.19715926,-0.013534826,-0.25172243,-0.4888111,0.7314536,0.19565229,0.47853878,-0.20907891,-0.060155287,0.20923726,-0.18393838,0.53154933,0.100196056,0.038443327,-0.03314524,-0.3499062,-0.3915775,0.4970031,-0.16519794,-0.04029424,-0.08236086,-0.19458786,0.28778642,-0.16763283,-0.09745432,0.063463464,-0.5372299,-0.017687006,-0.30170727,-0.4412641,0.44681063,7.0761234e-05,0.13591138,0.021638975,0.15412505,-0.31139874,0.12011029,0.12147996,0.5214759,0.12499013,-0.2636462,0.15850182,-0.1993791,0.23013745,-0.29392824,-0.0016805495,0.031009983,0.2204865,-0.8613343,0.44966552,-0.44778365,-0.5868792,0.21708645,-0.3259887,-0.09307429,0.3383674,-0.24662542,-0.24848242,0.2011887,-0.031607658,-0.24767601,-0.40776,-0.2964941,0.046404988,-0.20520343,-0.18755344,-0.087365404,0.048215237,0.031075394,0.46342206,0.0054783155,0.114619404,0.3317016,0.060942803,-0.64723194,0.03135042,0.41723338,0.3238686,-0.09452014,0.12075138,-0.3772623,-0.2859614,-0.3113616,0.014444701,-0.26772687,0.21698664,0.023134083,-0.37543827,0.92347753,0.106301166,1.1053416,-0.04120299,-0.39465234,-0.04528474,0.43212593,-0.010110294,-0.030055916,-0.2065746,0.93358266,0.6457952,-0.12205187,-0.11124955,-0.677518,-0.20709473,0.32831907,-0.33456233,-0.12319805,0.0059102913,-0.7255068,-0.33719757,0.18275219,0.19546752,-0.118839644,-0.17957388,0.14187491,0.1823591,0.304635,0.019938175,-0.6507501,0.021578053,0.42506722,0.20259954,-0.19742173,0.089484826,-0.37652048,0.29201108,-0.6548643,0.16149779,-0.2649806,0.011285261,-0.058330283,-0.13071766,0.18529698,0.04436744,0.13177754,-0.21381193,-0.33673173,-0.01825995,0.3778883,0.18470778,0.24168046,0.79745317,-0.32485867,0.08523291,-0.07158032,0.54307544,1.26109,-0.27663323,0.04480583,0.2635982,-0.20911309,-0.5497701,0.10390734,-0.34260917,-0.10267792,0.02940462,-0.5590623,-0.5792249,0.11788026,0.10381246,0.036025852,0.13486485,-0.5053031,-0.11952311,0.24700715,-0.33017543,-0.16219305,-0.2790269,0.15736042,0.7253859,-0.44139746,-0.45727405,-0.036266,0.17274037,-0.31836954,-0.56777805,0.1396898,-0.18902677,0.2376617,0.16033697,-0.32472283,0.0028770426,0.21631493,-0.5841091,0.06674278,0.34357333,-0.2143159,0.09097528,-0.38222313,0.15837088,0.6618731,-0.19602175,0.10345902,-0.29904062,-0.67195404,-0.66181856,-0.3759067,-0.06158429,0.12446004,-0.020088743,-0.54992676,-0.061836347,-0.3041505,-0.1040032,0.1595319,-0.5075689,0.4427402,0.15703762,0.39831105,-0.303422,-0.92690456,0.20237292,0.0638275,-0.17351505,-0.39184213,0.4310794,-0.11993543,0.7721211,0.086476624,0.055803593,0.20394051,-0.80421466,0.31774005,-0.18285389,-0.14521965,-0.6387789,-0.04041505 +621,0.4248058,-0.24971986,-0.7452274,-0.20822312,-0.075928636,-0.10626746,-0.36919376,0.07747961,0.17784047,-0.67987543,-0.039111793,-0.009790669,-0.10865935,0.21171309,-0.2099027,-0.74569225,0.11310021,0.2710066,-0.699728,0.834338,-0.43190345,0.30864528,0.04787922,0.1757614,0.06233242,0.23380609,0.49385062,0.06550242,-0.19676079,-0.37488067,0.26005343,-0.12883885,-0.5955669,0.5766737,-0.026220283,-0.55111456,-0.10598099,-0.3318216,-0.37751555,-0.7106878,0.33441916,-0.8952581,0.5496529,0.058095235,-0.18107896,0.135742,0.066830516,0.32189292,-0.17664905,0.27530155,0.14558856,-0.2683253,-0.3866159,-0.46724284,-0.09339265,-0.38404188,-0.5381782,0.04158056,-0.6789654,-0.048115153,-0.31909063,0.09591428,-0.33813143,0.14697883,-0.31571302,0.68354446,-0.3757132,-0.21995717,0.19785166,0.01978224,0.27713743,-0.76914716,-0.3368381,-0.22797072,-0.0016446585,-0.16021876,-0.29198268,0.25978068,0.01876475,0.5096819,0.19157624,-0.35225716,-0.13904457,-0.30184385,0.425192,0.3449109,-0.1313171,-0.44920504,-0.31395903,-0.16338414,0.12678248,0.20926835,0.24898507,-0.44546726,0.17864233,0.030961959,-0.4301232,0.54677194,0.5916646,-0.19410117,0.012284358,0.2298364,0.5694849,-0.20166455,-0.20344692,0.15597214,-0.19510937,-0.43243954,-0.4028989,0.18835543,-0.03669322,0.5288797,-0.30475143,0.27534035,0.42844924,-0.36599544,-0.2162565,0.2607278,0.08019499,-0.07218329,-0.39819777,-0.47176436,0.48353818,-0.6734648,0.019388974,-0.4830985,0.9780037,-0.09332297,-0.6968725,0.29389626,-0.5238202,0.13675,-0.050803978,0.77300215,0.55683815,0.42409858,0.101711236,0.8141825,-0.59529036,-0.0023262154,-0.16278465,-0.35260153,-0.28508133,-0.086172186,0.096874624,-0.2772527,-0.036446493,0.026734302,0.077420704,-0.121462055,0.64418733,-0.3742998,-0.26392487,0.009523955,0.71516484,-0.44932425,-0.011827539,1.0420516,1.4516373,1.2457502,0.27894834,1.4597164,0.2585052,-0.15650338,-0.50950116,-0.12940273,-0.89689803,0.35763565,0.3468449,-0.056183204,0.37985063,0.040401448,0.04429363,0.36407247,-0.527908,-0.120552875,-0.18144445,0.6346938,-0.23578902,-0.18712904,-0.2816714,-0.06722016,0.21581493,-0.08056169,0.13193937,0.3672432,-0.26229846,0.21800947,0.240104,0.84881526,-0.34129426,0.19716714,0.1379771,0.28540257,0.20487295,-0.11270734,0.1872375,0.061441332,0.40196827,-0.13368303,-0.78467447,-0.10646125,-0.32766214,-0.7282854,-0.3543136,-0.2265919,0.12655158,-0.08044907,-0.15855615,-0.15396462,-0.18164118,-0.44409016,0.17233711,-2.2030962,-0.2282146,-0.2235096,0.1656952,-0.2594414,-0.3043636,-0.0062689832,-0.481596,0.6324153,0.2883953,0.47607747,-0.587064,0.6348531,0.5894516,-0.30408815,0.16310738,-0.6695544,0.024805104,-0.34734926,0.34657755,-0.027992338,-0.25641546,-0.10511205,0.00070670247,0.49970254,-0.03953698,0.16349669,0.41509488,0.3134816,-0.13799907,0.49634728,0.26790866,0.6008069,-0.7023983,-0.14561728,0.32842693,-0.40490702,0.15756379,-0.18441583,0.12355914,0.35614768,-0.7099276,-0.6404351,-0.68633837,-0.31835356,1.3047472,-0.2603766,-0.65843636,0.11115699,0.090509914,-0.39804542,0.054934908,0.08882988,-0.2751133,0.037211712,-0.902186,0.19538514,-0.23492508,0.14879413,-0.13313933,0.076116964,-0.7229077,0.670669,-0.015143623,0.44873324,0.44903073,0.3149152,-0.49401262,-0.33561444,0.13304318,1.3168523,0.4211981,0.13215053,-0.17458482,-0.106416024,-0.15567355,-0.10737812,0.30610147,0.5692351,0.83643866,-0.038216855,0.057771433,0.5436252,-0.100790344,0.11710104,-0.060053665,-0.59225905,-0.26671156,0.026185205,0.75879043,0.39305153,0.0685701,0.38326654,0.039286632,0.32666454,-0.38959405,-0.3678335,0.6238903,0.9429345,-0.140961,-0.51135004,0.7590506,0.48182642,-0.38448736,0.65935344,-0.53099173,-0.54568714,0.27979305,0.04228246,-0.33233628,0.07118765,-0.5309417,0.33304736,-1.0369784,0.39550337,-0.59301305,-0.64029783,-0.60916615,-0.44254223,-2.884741,0.33508387,-0.35770857,0.041634742,-0.26612225,-0.20959277,0.26212314,-0.33895954,-0.641294,0.27699745,0.059439465,0.6532829,-0.007901554,0.12784058,-0.076846175,-0.13583827,-0.16077273,0.13174848,0.10625401,0.13066778,0.1540962,-0.45435905,0.10746759,-0.19490172,-0.32577053,0.039867837,-0.36632153,-0.3664507,-0.074248634,-0.68046856,-0.53966993,0.54169065,-0.27176514,-0.031701867,-0.319837,-0.112079106,-0.06442284,0.3493152,0.008079289,0.3026633,0.17982095,-0.23905693,-0.08018619,-0.313264,-0.07843362,-0.1317144,0.32573935,0.36029303,-0.4892892,0.060341615,0.20711704,0.7377272,0.14562918,0.632718,0.31374204,-0.19531949,0.36140737,-0.19299173,-0.38659716,-0.8175978,-0.39274737,-0.019760603,-0.33544192,-0.50217277,0.0032777488,-0.34803557,-0.918592,0.68852973,0.054204207,0.21635674,-0.059101265,0.42185712,0.12713884,0.14961405,-0.17761034,0.0039883927,-0.22335805,-0.3048395,-0.32419875,-0.92642856,-0.3252417,-0.10823908,1.0123723,-0.039651666,0.021564415,0.25778565,-0.1645413,0.16629006,0.384279,0.039892226,0.16311422,0.42406318,0.053501423,-0.54901934,0.36954522,-0.083991684,-0.12385374,-0.4964606,0.18623936,0.894094,-0.45474243,0.557008,0.6844623,0.23333336,-0.16786051,-0.50335324,0.023423618,0.2178555,-0.171019,0.67540526,0.41956398,-0.8450795,0.654175,0.34728345,-0.16939431,-0.8283413,0.5484217,0.102267705,-0.16922294,-0.051291395,0.50889677,-0.20409568,0.07763081,-0.30049664,0.32088825,-0.14928938,0.27180037,0.10485345,-0.1333359,0.37283015,-0.27200353,-0.41630498,-0.534181,-0.059568927,-0.72975516,-0.035044145,-0.07911015,-0.15849182,-0.041229066,0.25968608,-0.1644382,0.49177256,-0.18627836,0.29203036,-0.09768942,-0.47752407,0.5510275,0.57103544,0.26623538,-0.48892578,0.8006029,0.09336895,-0.15671422,-0.54957277,0.19728108,0.5980789,0.11392269,0.52315336,0.27088845,0.21818127,0.4884573,0.6556506,0.51578754,0.49923444,0.28775844,-0.047775913,0.18349154,0.17370705,0.39850926,0.04486716,-0.26159057,-0.27054855,0.07236525,0.17875625,0.33202335,0.02214007,0.62498873,-0.067956835,-0.28801593,-0.09968376,0.26375046,-0.35340324,-1.3989582,0.6669741,0.11949769,0.6495853,0.7399523,-0.13519742,0.18559074,0.34190592,-0.2781255,0.075253345,0.110391654,-0.040995862,-0.23106313,0.656014,-0.43607077,0.23208596,-0.14816363,0.16215426,-0.1282019,-0.07571436,0.51033324,0.83045554,-0.16852893,0.2962752,-0.24240516,-0.19554873,0.170433,-0.41236198,0.15535556,-0.23468168,-0.36340055,0.9331241,0.1863593,0.46296135,-0.14902616,-0.12370119,0.20836622,-0.094431035,0.110955656,-0.042849492,-0.107878864,-0.02760764,-0.67584276,-0.32104254,0.48278078,0.2879187,0.13776384,0.19227816,-0.1672744,0.29881236,0.1676292,0.1089584,0.070800856,-0.5804541,0.16499394,-0.12470296,-0.30553886,0.25377843,-0.5184865,0.023789681,0.255652,0.1155869,-0.42560366,-0.0873215,0.12211295,0.41257808,0.094846375,-0.29439476,-0.01439774,0.06692437,0.31386334,-0.24601026,0.1356671,-0.36056316,0.15268825,-0.93222016,0.5448724,0.027460193,-0.36952186,0.26118335,-0.19408135,-0.15983301,0.44845596,-0.3601346,-0.19009013,0.30643794,-0.08450786,-0.00351351,-0.4635422,-0.19978446,0.24446811,0.07249769,0.16835158,-0.14016028,-0.024732957,-0.01483797,0.36079502,0.060176726,0.03389254,0.28793937,0.34063217,-0.5731257,0.015033044,0.19878484,0.51443094,0.053456094,-0.05288419,-0.22268927,-0.42391506,-0.13733779,0.2442097,-0.12398728,0.13870569,0.05940335,-0.4667695,0.74501103,0.27246177,1.1146355,0.07854301,-0.3940784,-0.012835045,0.4987626,-0.14159189,-0.21050708,-0.11444952,1.0658242,0.64264864,-0.30418232,-0.19602178,-0.7882896,-0.036214396,0.083661586,-0.18126754,-0.38576767,-0.014699128,-0.5535436,-0.41944695,0.23624915,0.5029234,-0.15897934,-0.031865668,0.20384924,0.4573284,0.19789653,0.27867666,-0.6584634,0.039669245,0.20726629,-0.12120835,0.032581553,0.11723068,-0.50667125,0.22111996,-0.9036135,0.2047668,-0.06983799,0.04463464,0.039075155,-0.31920764,0.371634,0.22861083,0.17951693,-0.50548184,-0.30059674,-0.118773215,0.41592738,0.14700292,0.11349839,0.8037894,-0.19694386,0.22427945,0.13625811,0.3194809,1.1426512,-0.00950664,-0.11003546,0.03429308,-0.45105395,-0.873267,0.27037504,-0.37709394,0.030353954,-0.09775164,-0.51833385,-0.5906639,0.25257912,0.11602336,-0.14286943,0.38845685,-0.6534655,-0.18994527,0.21190323,-0.23209196,-0.3236527,-0.25116,-0.097874306,0.62387925,-0.23094857,-0.16494569,0.0055392087,0.37136436,-0.32522163,-0.63367575,-0.14843757,-0.33903107,0.5030146,0.10613811,-0.071923696,-0.0442667,0.1359802,-0.49766108,0.21066011,0.38848102,-0.18600018,0.096268475,-0.08731779,-0.076774426,0.51941305,-0.21410467,0.21994583,-0.43564788,-0.47007382,-0.8923054,-0.195751,0.313992,-0.01658071,-0.031671464,-0.67158294,-0.08813467,-0.12004992,0.1679194,0.13179228,-0.44151962,0.3947741,0.21358687,0.44744816,0.081754215,-0.8726831,0.18822956,0.20185502,-0.120572366,-0.3328332,0.467386,-0.11033102,0.61875564,0.058416266,0.16980062,0.18349005,-0.9078247,0.20331782,-0.19525748,-0.26927462,-0.6722142,-0.09301666 +622,0.36488238,-0.15929124,-0.6015546,-0.12409363,-0.27994722,-0.21969235,-0.098508015,0.589248,0.1877921,-0.540896,-0.19305097,-0.19879735,-0.105158925,0.35886255,-0.25943163,-0.5465279,0.01827695,0.15548682,-0.52575177,0.57406795,-0.3913812,0.3110326,-0.007294114,0.5269999,0.13458543,0.21993263,0.022674186,-0.15447018,-0.14309299,0.05736515,0.08452741,0.11967019,-0.5489404,0.19368188,-0.25434396,-0.43730474,0.027693095,-0.33456108,-0.5180339,-0.808515,0.28716898,-0.65400714,0.4862314,0.0075950623,-0.26406166,-0.022691326,0.08721622,0.32279631,-0.2689313,-0.06779963,0.058720205,-0.008026479,-0.05986052,-0.21152124,-0.28491408,-0.3027323,-0.537315,0.03291958,-0.50609154,-0.012313038,-0.038449932,0.1837416,-0.3292716,-0.05685511,-0.10180176,0.648876,-0.4080789,0.020299563,0.32852867,-0.123996295,0.26588577,-0.6632099,-0.19050209,-0.14089629,0.20290947,-0.10549074,-0.19506027,0.36653814,0.11968374,0.5783858,0.06290706,-0.2060204,-0.33650753,0.02717488,0.20988122,0.3342689,-0.19666089,-0.5462988,-0.110148944,0.07908225,0.16918537,0.17489202,0.19322443,-0.41715002,0.05596625,0.05003351,-0.22464374,0.393252,0.61851454,-0.14284936,-0.1757103,0.29103082,0.5763189,0.20665108,-0.16618516,0.13186301,0.12829593,-0.5554179,-0.22767952,0.029128075,-0.2286367,0.47090164,-0.13116086,0.2960373,0.62824744,-0.14597185,-0.037332494,0.20234118,0.17251872,0.057678282,-0.40216285,-0.35630158,0.3450468,-0.43522948,0.13284478,-0.1358154,0.7307391,0.24677053,-0.7798551,0.26836613,-0.63333553,0.13658175,-0.10224408,0.46579581,0.7143134,0.51698476,0.27397028,0.6555186,-0.54645574,0.17150085,-0.01906184,-0.37033287,-0.11139687,-0.15059035,-0.078696325,-0.3469065,-0.14074263,-0.19098306,-0.26481122,-0.05177751,0.20291784,-0.6036767,-0.12341218,0.05002929,0.95434344,-0.2225759,-0.06257806,0.8259036,1.0105237,1.0323114,-0.010547643,1.2375766,0.19074686,-0.24440463,0.32076985,-0.20717038,-0.88077736,0.31485325,0.28330126,-0.25294864,0.33472437,0.09486823,-0.054831743,0.5473475,-0.6363023,0.07408919,-0.26932338,0.41345993,0.15991409,-0.12934527,-0.38684177,0.016309598,-0.07049868,-0.17038508,0.015973981,0.27609473,-0.1592671,0.23087206,-0.07659519,1.4870415,-0.13980553,0.20961316,0.19524534,0.59236896,0.25389785,-0.09727502,-0.0827979,0.14541234,0.280566,0.11459685,-0.6662491,-0.013456928,-0.38190705,-0.56494874,-0.19349048,-0.19751906,-0.042231567,-0.24267991,-0.5399935,-0.16464864,-0.13653247,-0.22611438,0.24036665,-2.5080523,-0.3708025,-0.1195489,0.3182589,-0.32941288,-0.2545762,-0.124503076,-0.47849724,0.56795853,0.24578165,0.46342483,-0.64325815,0.50457144,0.5600903,-0.4566442,-0.03553749,-0.6180587,-0.07511575,0.05748364,0.1702155,0.016653309,-0.07232847,0.060539734,-0.09491939,0.32330686,-0.11653335,0.06569932,0.2622601,0.3687683,0.12521924,0.5222828,-0.011280196,0.5357503,-0.6060144,-0.13854496,0.21142676,-0.43790674,0.21961863,-0.073219284,0.14787292,0.4316245,-0.5813123,-0.73579943,-0.68441004,-0.24615555,1.0601056,0.02757883,-0.3344879,0.29665405,-0.4585976,-0.08377637,-0.044621803,0.47632176,-0.111784704,0.082278594,-0.8523306,-0.04908073,-0.20670354,0.22600731,0.039746873,0.03522081,-0.28816137,0.47435775,-0.097687766,0.44837338,0.5439407,0.18805109,-0.41869527,-0.51878625,0.05828595,0.7467804,0.35688767,0.19686839,-0.14208233,-0.089047894,-0.29991135,-0.079555474,0.04296612,0.46953425,0.77084965,-0.11771327,0.018150117,0.32457718,0.007541043,0.10718709,-0.15289918,-0.5394569,-0.15959896,0.09067269,0.46563792,0.7468761,-0.3014516,0.489856,-0.13302575,0.36649105,-0.25040907,-0.39886585,0.56601965,0.7614028,-0.32846946,-0.34204802,0.6155714,0.2907708,-0.4097178,0.4944165,-0.60416704,-0.22341831,0.48225957,-0.06684095,-0.48914906,0.050581105,-0.22138812,0.28155553,-1.0136184,0.4663822,-0.38884354,-0.588273,-0.7246102,-0.26847592,-2.6474833,0.2108988,-0.34398603,0.00083779223,-0.08783335,-0.0058336086,0.12873195,-0.5011439,-0.75351906,0.18211211,0.059952967,0.6223132,-0.13575396,0.18372759,-0.15137868,-0.15694813,-0.2592247,0.16624579,0.32956603,0.20162632,0.19009222,-0.5374283,-0.2301916,-0.08657171,-0.47220844,0.17091708,-0.74690044,-0.41292533,-0.22249036,-0.7044517,-0.36085656,0.74497384,-0.27971914,-0.08163132,-0.17498183,0.06021115,-0.086259104,0.38228443,0.03148649,0.16216119,0.13271542,-0.07870251,-0.021321168,-0.25171775,0.14026643,0.0037651253,0.36440635,0.23841402,-0.11867257,0.17456113,0.54265743,0.9439283,-0.025641084,0.69658333,0.6431646,-0.121292286,0.42036352,-0.35808104,-0.3605455,-0.48403808,-0.26174825,0.089158274,-0.3367394,-0.431736,0.31277642,-0.52391917,-0.8194439,0.63615364,-0.03094778,0.13244422,0.09887978,0.064073555,0.5056535,-0.21405192,-0.17556636,-0.048197825,-0.061719906,-0.5530652,-0.35725188,-0.6786838,-0.54065275,-0.0420377,1.2505283,-0.16244335,-0.0419322,0.12319275,-0.28591552,0.02428111,0.16381843,-0.119061574,0.08821411,0.30909038,-0.073895015,-0.6283336,0.31197992,-0.087166436,-0.17453542,-0.5470285,0.12922223,0.74107116,-0.65374357,0.600315,0.28220224,0.015627043,-0.22162381,-0.54526746,-0.17701812,0.09873665,-0.036181994,0.41906866,0.19709477,-0.8251739,0.39041117,0.5553386,-0.3123517,-0.8307189,0.33799025,-0.0075586224,-0.25574157,-0.050020773,0.5005776,0.030124221,0.033713445,-0.24767038,0.22286871,-0.36966392,0.22276227,0.23499775,-0.2921053,0.51248026,-0.33477184,-0.11470164,-0.7894951,-0.06101673,-0.62163603,-0.14449477,0.38828716,0.026371984,0.0037121943,0.122319065,0.20745263,0.37388995,-0.073063135,0.050418753,-0.16284725,-0.28142348,0.28801557,0.49042913,0.5064523,-0.52542084,0.6102452,-0.0585982,-0.117007315,0.05085402,0.1326308,0.4303979,-0.0050456696,0.46370718,0.09401006,-0.1075598,0.21441177,0.9707013,0.07693088,0.5087545,0.19962248,-0.18634592,0.21790777,0.09260224,0.13118133,-0.010519965,-0.46764842,0.14234509,-0.050824385,0.25764218,0.4815168,0.14138325,0.3308041,0.012373239,-0.4466648,-0.10539476,0.14689983,0.04630083,-1.4480113,0.5483347,0.107375756,0.8012123,0.49891424,0.17966425,0.016833033,0.59051615,0.046289172,0.1722552,0.45166785,-0.1080813,-0.41128138,0.5604876,-0.574876,0.50184643,-0.05008221,0.060512755,-0.07103871,0.16364382,0.45592663,0.7667052,0.001450198,0.036619958,0.08860863,-0.2463924,0.105764456,-0.46191803,0.1065703,-0.38062677,-0.2350898,0.55685383,0.5002685,0.2290833,-0.13528271,-0.03376613,0.19672565,0.004545348,0.30398685,-0.120173745,0.09918068,-0.005295526,-0.5331522,-0.25779957,0.5514801,0.06284976,0.19721428,-0.03917625,-0.08076564,0.32690224,-0.14905807,-0.07722611,-0.0144151915,-0.79133224,0.017923534,-0.29224738,-0.36757967,0.36953193,-0.13574514,0.17727259,0.06565185,0.095143445,-0.5333958,0.49147248,-0.16933313,0.6240535,-0.09432513,-0.14906192,-0.2580872,0.14229935,0.19029179,-0.19575039,0.030547904,-0.35885334,-0.092714734,-0.5642862,0.48001242,0.08460854,-0.23222362,0.03807794,-0.13643564,-0.04486694,0.5594769,-0.15994452,-0.13770048,-0.005089479,-0.22734407,-0.29103827,-0.27553862,-0.11280869,0.2960635,0.116994195,0.12839083,-0.06392535,-0.2576905,-0.056086097,0.59216696,-0.037326694,0.33458704,0.4514232,0.03432297,-0.34771279,-0.21940525,0.21739046,0.52681273,0.11512659,-0.119758405,-0.24198417,-0.32796845,-0.2551901,0.16160491,-0.2213567,0.36525458,0.090923026,-0.42147177,0.79821,0.19511162,1.3208071,0.061946463,-0.21949932,0.066564634,0.28734165,-0.015329497,0.0080706505,-0.42545924,1.0481708,0.68459,-0.15971789,-0.111937694,-0.32534736,0.04508921,0.19745514,-0.20412752,-0.24590267,0.024298022,-0.5685814,-0.20524038,0.19030036,0.2750923,0.08279217,-0.1945766,0.054664962,0.106130466,-0.01766717,0.3398542,-0.556606,-0.07076315,0.26086783,0.3783206,0.1538447,0.15390699,-0.50874674,0.4072542,-0.4996999,0.25116754,-0.32488775,0.2542228,-0.20143335,-0.4155874,0.12917744,0.06123525,0.45355433,-0.34375253,-0.30522552,-0.2966343,0.5404712,0.172725,0.031422723,0.7583441,-0.26572117,0.0005934047,0.07520791,0.60132825,0.82741153,-0.18188456,-0.20831533,0.28289244,-0.17683287,-0.6809951,0.35869762,-0.40051046,0.14573185,-0.15561745,-0.09092302,-0.6951937,0.22675972,0.22914192,-0.17588404,-0.03974334,-0.6619758,-0.23409131,0.24608926,-0.22812377,-0.19860448,-0.30814567,0.020628085,0.57766634,-0.19633047,-0.18534084,0.059077892,0.30426875,-0.21472725,-0.4070843,-0.08008373,-0.36418846,0.196471,0.24020925,-0.35088304,-0.16754921,0.05429026,-0.5145729,0.04940208,0.07476306,-0.35496756,0.09679593,-0.16325125,-0.13344467,0.7770564,-0.07271985,0.2543723,-0.43773618,-0.44315982,-1.0363805,-0.17841223,0.53992045,0.16173492,-0.0077522523,-0.8867565,-0.07003875,0.07413198,-0.079327404,0.04492436,-0.3256034,0.43861362,0.1659715,0.50633574,-0.041096773,-0.6393547,-0.025065929,0.19007294,-0.21358709,-0.55465543,0.46035084,0.0150663685,0.9800102,-0.014533688,0.06539994,0.1908162,-0.4455734,-0.006807289,-0.28987414,-0.34825566,-0.5740058,-0.06127986 +623,0.37536266,-0.1973221,-0.46019194,-0.101468526,-0.1992835,0.07548509,-0.25159281,0.43898794,0.22907019,-0.5314903,-0.18401413,-0.074924804,-0.039862435,0.056838408,-0.065069415,-0.42160904,-0.113642804,0.25519365,-0.67532504,0.5327428,-0.32046467,0.3400945,0.020863349,0.31456396,0.116312064,0.2889209,0.03605129,-0.09982594,-0.11480681,-0.21798143,-0.11265612,0.39930186,-0.47056803,0.27941555,-0.25459307,-0.34343165,-0.12390378,-0.48130384,-0.27015096,-0.72123826,0.29667395,-0.87176174,0.48311242,-0.021076052,-0.39076385,0.360548,-0.1339077,0.2634115,-0.2443268,0.156096,0.11222176,-0.048225477,-0.06482691,-0.23032314,-0.24512862,-0.12098387,-0.53054696,0.05192936,-0.3806534,-0.09841079,-0.17734991,0.14243765,-0.26548818,-0.064402066,-0.12951678,0.49010435,-0.39352837,0.010425838,0.15579513,-0.1136383,0.29475135,-0.473416,-0.08240621,-0.087076694,0.4349178,-0.21127532,-0.16676407,0.09780543,0.18770742,0.63594854,-0.054597154,-0.11392684,-0.251675,-0.07968509,0.070427194,0.5124067,-0.020027854,-0.34980354,-0.17188683,-0.18729587,0.20907034,0.20191129,0.15224794,-0.2443444,-0.1662209,-0.09554425,-0.20952167,0.30461863,0.47760457,-0.24237731,-0.22591752,0.34914356,0.6291068,0.091689676,-0.120691866,0.15331273,-0.016900443,-0.4632298,-0.15057604,0.22684582,-0.12966503,0.3933058,-0.18910335,0.2477861,0.4899002,-0.11202196,0.04958266,0.122027546,-0.037021946,-0.055730265,-0.27349907,-0.23673025,0.26417503,-0.41125074,0.09930981,-0.19830285,0.6476692,0.01743696,-0.7393198,0.36556512,-0.47182855,0.13205172,0.0046433806,0.5535185,0.79342777,0.38219157,0.30150318,0.74728733,-0.37194532,0.011956883,-0.26009688,-0.21673264,-0.12742686,-0.060921546,0.028323699,-0.4965053,-0.012171479,-0.044811495,-0.06504005,0.027427305,0.42822984,-0.54491025,-0.11763633,0.16643515,0.607621,-0.34130058,-0.056795683,0.99245626,0.8405916,0.970793,0.07531802,1.0940167,0.2586159,-0.2292672,0.12572584,-0.38435853,-0.6772637,0.22402716,0.30014598,0.2952071,0.1905122,-0.023899388,0.080115035,0.4547296,-0.32682973,0.016240673,-0.34107396,0.06706677,-0.102732226,0.020107124,-0.47143957,-0.29307207,-0.068432875,0.06488789,0.23233542,0.20461161,-0.24096562,0.38497385,0.12009176,1.5516843,-0.19612621,0.0120963855,0.1594699,0.28583065,0.20672144,-0.16365299,-0.12058925,0.3307378,0.38527644,-0.12425954,-0.6752443,0.02601823,-0.08100876,-0.40029004,-0.114993595,-0.27832133,0.042328477,-0.08274021,-0.46507788,-0.19003741,-0.0990049,-0.550757,0.45512372,-2.6973042,-0.24108331,-0.07147029,0.33554,-0.22222322,-0.3312052,-0.25832394,-0.49551436,0.466162,0.28894073,0.39525393,-0.5654566,0.3843009,0.35396805,-0.49624655,-0.098036304,-0.66830313,0.053473905,-0.06835021,0.21338752,0.040640034,-0.14219491,-0.14843622,-0.070367835,0.4519205,-0.0403401,0.14458431,0.3049382,0.3057913,0.076962106,0.40163344,0.04287853,0.4741566,-0.27542928,-0.24951348,0.4247338,-0.44070756,0.14029689,-0.17986314,0.14708821,0.39731488,-0.6474264,-0.6589283,-0.84141695,-0.33823156,1.234319,-0.16999337,-0.40892062,0.24446699,-0.41605288,-0.31242654,-0.032629583,0.6585056,-0.049397763,-0.21853147,-0.8823784,-0.05682111,-0.09364642,0.24938303,-0.029875942,-0.052006938,-0.43277058,0.57952046,-0.14074616,0.5224628,0.33998507,0.14538316,-0.2587512,-0.32836634,0.11945719,1.0045781,0.36714092,0.112444736,-0.2726105,-0.33029854,-0.3821726,-0.077954665,0.04819746,0.5915304,0.68173766,-0.060772788,0.11300321,0.32374227,-0.06494267,0.17046985,-0.2144041,-0.115789846,-0.2192316,0.15299352,0.6080906,0.44011512,0.08470273,0.34662062,-0.08395929,0.2732558,-0.33100653,-0.41177544,0.43687412,0.6236028,-0.1371067,-0.28709218,0.60041165,0.48353326,-0.21896304,0.45242015,-0.5302019,-0.38195893,0.28308257,-0.21589006,-0.43367508,0.32604012,-0.32754198,0.35679913,-0.81243,0.15945038,-0.23221473,-0.5693188,-0.51240754,-0.081842996,-2.5446181,0.17020513,-0.05178182,-0.22853677,-0.065506674,-0.31519264,0.20496972,-0.4207951,-0.54463536,0.2806085,0.065937005,0.7366932,0.038926557,0.024331857,-0.2790203,-0.36569336,-0.25314456,0.13006988,0.051603515,0.42606163,-0.04408147,-0.43416303,-0.024014238,-0.22502436,-0.24751942,-0.06419475,-0.55904937,-0.3744171,-0.13574147,-0.57949334,-0.25985807,0.580207,-0.19321957,0.16216765,-0.23382814,-0.11990328,-0.08895361,0.341921,0.10648702,0.19381009,0.084994264,-0.064884745,0.008741438,-0.23659854,0.2561562,-0.049335826,0.06459939,0.31113145,-0.21331953,0.3076575,0.26211554,0.5960658,-0.22825132,0.93246335,0.51309246,-0.039276306,0.2824097,-0.2083246,-0.3054231,-0.49363798,-0.1406447,-0.06627622,-0.5072547,-0.40718612,-0.1598161,-0.31518108,-0.8287634,0.5423152,0.0818062,0.104676686,0.090471536,0.27928156,0.48624125,-0.14333434,-0.05955317,-0.10057276,-0.20127775,-0.3347135,-0.29763442,-0.69366723,-0.40287766,0.10883059,0.9033987,-0.078147314,0.08111335,0.13773756,-0.1746727,-0.044300873,0.18868664,0.13801913,0.11418344,0.42555457,-0.017188024,-0.4315552,0.38694632,-0.013590292,-0.23721132,-0.5039378,0.21453829,0.6518614,-0.62757736,0.50512564,0.28727046,0.08480382,-0.26071897,-0.43485162,-0.115336545,-0.0656834,-0.26771316,0.41859168,0.29529998,-0.7272542,0.48204497,0.28204864,0.0765173,-0.8166883,0.40801865,-0.10281323,-0.25674143,-0.082727864,0.34910524,0.03999935,0.089698344,-0.14874265,0.13671471,-0.38966134,0.25951424,0.19459601,-0.08555288,0.30520508,-0.34937745,-0.107768856,-0.6566134,-0.09174911,-0.65718323,-0.27065217,0.19083446,0.014533409,0.090027615,0.2562266,0.03126589,0.41601464,-0.23411258,0.16966924,-0.19270486,-0.14025125,0.20715848,0.4007888,0.40010923,-0.3024601,0.5443955,0.013900566,-0.0049984497,-0.3042521,0.1161058,0.47031122,-0.015225601,0.36220646,-0.23938313,-0.28441018,0.30269846,0.73494756,0.18349454,0.39104107,-0.05288375,-0.09933507,0.13408467,0.11435863,0.21232122,-0.11096382,-0.4000648,-0.076506525,-0.11740685,0.1629614,0.3606612,0.13807923,0.31173995,-0.0660026,-0.24302131,-0.0013064008,0.20373826,-0.073931485,-1.1029805,0.3357286,0.16819604,0.8289646,0.5062657,0.046648867,0.013504203,0.5905031,-0.2664738,0.15617935,0.11010682,-0.24328159,-0.48353058,0.49661523,-0.6388442,0.4862621,0.0018866042,-0.1052374,0.085747465,-0.11743234,0.42347464,0.6412566,0.001815094,0.19969511,-0.01149627,-0.20568632,0.20858835,-0.23376665,0.024876198,-0.57225853,-0.17905858,0.7085101,0.44574395,0.5011183,-0.14017268,0.012435959,0.11335037,-0.06932737,-0.067754336,0.1221522,0.14900045,-0.010422317,-0.57309544,-0.13098152,0.42291203,0.073538564,0.15633461,0.1092931,-0.35763088,0.25930747,-0.010423259,-0.008924794,-0.20420672,-0.6305505,-0.04029832,-0.39622876,-0.25094542,0.34110022,-0.084720835,0.19781929,0.2104848,0.049827315,-0.26135683,0.27485606,0.20561586,0.77084476,0.11638485,-0.09163891,-0.3145247,0.29874986,0.18346772,-0.2960687,-0.20485137,-0.2679482,0.11822103,-0.830982,0.36853272,0.0010757287,-0.37953588,0.301017,-0.10878766,-0.005998097,0.57532316,-0.049701564,-0.079069644,0.116388604,-0.24776857,-0.46025866,-0.22193673,-0.19871496,0.28664348,0.2919943,0.06341725,-0.045498516,-0.018981857,-0.078886524,0.5304911,0.19132586,0.35926044,0.27864066,0.08914766,-0.38465407,0.06820424,0.20623995,0.4567626,-0.009910003,-0.038707145,-0.19868775,-0.36949998,-0.4144725,0.31272516,-0.0044918936,0.3523964,0.084822804,-0.17650019,0.684582,0.12574233,0.930143,0.07065005,-0.21187381,0.12442339,0.4274053,-0.043891024,-0.066200204,-0.2564216,0.886896,0.45612806,-0.09425742,-0.034193534,-0.22099677,-0.12503797,0.090522006,-0.2381882,-0.024017723,-0.035031445,-0.6581466,-0.3407716,0.24747628,0.2552943,0.20056944,-0.119706884,0.13856557,0.12663232,-0.103183046,0.22843644,-0.34539005,-0.077095814,0.3396818,0.18631741,-0.06248762,0.10599964,-0.4081769,0.3609658,-0.55703837,0.041955885,-0.19698669,0.12284196,-0.15287669,-0.2652048,0.26563513,0.020386934,0.2076666,-0.31018433,-0.4222756,-0.30506238,0.45029142,0.049656637,0.1383621,0.45477298,-0.2712597,0.11493647,0.13135,0.54985803,0.97114605,-0.08628836,0.09325884,0.35479742,-0.22984396,-0.6429249,0.20653628,-0.2703523,0.20934287,0.0042999107,-0.21711129,-0.30608165,0.2973272,0.21375299,0.13336226,0.074442126,-0.5881755,-0.10966412,0.22974978,-0.22601365,-0.15409942,-0.24235554,0.05171334,0.50844616,-0.19883344,-0.41233584,0.043806024,0.17056678,-0.36811438,-0.5413893,0.026814302,-0.31635472,0.21370731,0.072509654,-0.40512934,0.039651383,0.07314472,-0.39865354,0.0068496587,0.121455215,-0.33178583,-0.0037174146,-0.46030605,0.01565855,0.9085693,-0.15968555,0.22318605,-0.3611756,-0.5723245,-0.88121927,-0.25481686,0.4436052,0.10762175,0.06314586,-0.6064824,0.12176439,-0.23547548,-0.094518505,0.14430732,-0.29665157,0.529287,0.19736856,0.43145102,-0.093771234,-0.7880681,0.193917,0.07587214,-0.336922,-0.5010169,0.51892483,0.11675592,0.8245411,0.086861916,0.12243393,0.23839357,-0.6256374,0.0039269426,-0.22200139,-0.10294779,-0.7329848,-0.07516609 +624,0.70064723,0.03196172,-0.5600981,-0.1201598,-0.4528486,0.16590343,-0.2846087,0.12375178,0.16846001,-0.4949941,-0.25429964,-0.032322228,-0.14931695,0.30787137,-0.2433725,-1.0043522,0.031971727,0.20179619,-0.56097084,0.9083022,-0.27853557,0.4413712,0.004151835,0.18092075,0.117273346,0.38423562,0.31495214,-0.077153146,-0.19240396,-0.19076797,-0.1771282,0.10412483,-0.62806076,0.39285052,-0.07169502,-0.21404617,-0.025908584,-0.37650633,-0.29166153,-0.8205381,0.33921388,-0.6620307,0.35515285,-0.009576626,-0.14640293,0.12109351,0.24918477,0.37368357,-0.12794551,0.06732195,0.094407335,-0.051769573,-0.2487551,-0.15016577,-0.27517384,-0.4448139,-0.6025376,-0.035360124,-0.5837659,-0.23209837,-0.3851025,0.3144384,-0.32167053,0.09748425,-0.17956926,0.7100479,-0.33480912,-0.004934118,0.22489013,-0.13253522,-0.030272746,-0.6800241,-0.079714425,-0.111037664,0.32566732,0.0061226278,-0.16105196,0.3181685,0.18977064,0.36317798,0.20251113,-0.39616698,-0.403652,-0.26305458,0.46457508,0.41871923,-0.0696267,-0.3101451,-0.33349627,-0.07199317,0.2394049,0.13013418,0.22892132,-0.31353837,-0.059651088,-0.23828869,-0.29493833,0.43771967,0.5326666,-0.31482503,-0.19001076,0.4028742,0.5298397,0.07391669,-0.10642463,0.06721366,-0.0406122,-0.4218461,-0.1226257,0.28902054,-0.07162102,0.443464,-0.12312157,0.084586576,0.5501091,-0.13823582,0.037549082,-0.004742377,-0.0008187925,0.09829908,-0.24175924,-0.14767027,0.23097734,-0.58551854,0.095650546,-0.28093642,0.8237668,0.15211649,-0.7207431,0.17186844,-0.5290132,0.14356975,-0.024262778,0.55640763,0.5802929,0.36671472,0.054074008,0.8154069,-0.27616718,0.16319782,-0.111089624,-0.2724113,-0.30657163,-0.07861019,0.035093315,-0.3675216,0.17458834,-0.092338845,0.008510401,-0.09886515,0.48625362,-0.47767225,-0.21181768,-0.096901774,0.85032225,-0.34346637,-0.12677236,0.9222973,1.0196292,1.1172035,0.012179377,1.1910275,0.20807356,-0.29129848,-0.30412814,-0.3646272,-0.5808327,0.3269567,0.3307874,0.13605164,0.34895745,0.044865478,0.002502508,0.19379127,-0.42375436,-0.06843343,-0.17344065,0.26614022,0.10201584,0.049965143,-0.3563134,-0.21815884,0.115757,-0.0064928234,0.2795913,0.13908976,-0.2957597,0.43800092,0.018384477,1.2915604,-0.0027479162,0.18349777,0.14068834,0.30283654,0.26676255,-0.091671355,0.019256985,0.291122,0.28668958,-0.14165367,-0.66300976,-0.009280878,-0.38711122,-0.42007688,-0.19536443,-0.33830357,-0.06158778,-0.06345229,-0.24555953,-0.16729605,-0.02488099,-0.31365624,0.43563506,-2.3530767,-0.14294323,-0.24441223,0.38790682,-0.32973197,-0.3496248,-0.102558464,-0.66409683,0.4042222,0.3040134,0.38693994,-0.32940584,0.39998627,0.4756005,-0.5688509,-0.025311517,-0.51892287,-0.09503921,0.028470907,0.5207633,-0.19037957,-0.03646469,-0.13568845,0.25920144,0.5313926,0.033186983,0.17208445,0.4697438,0.3131017,0.14703716,0.44433385,0.16493572,0.5128155,-0.357727,-0.08517127,0.40189323,-0.42962262,0.30017394,-0.19577213,0.032871354,0.4409315,-0.5687413,-0.6302592,-0.6244114,-0.40576428,1.0223627,-0.35388547,-0.5357576,0.16915685,0.1586044,-0.13340712,0.04792346,0.33584175,-0.04021444,-0.04141098,-0.6412935,0.07148427,-0.050660685,0.25732478,-0.04025192,0.071731225,-0.47331175,0.6684348,-0.18747595,0.5214801,0.24105161,0.4669199,-0.20845196,-0.58940774,-0.023579404,1.0948557,0.42713785,0.11820971,-0.27668566,-0.18813749,-0.4387394,-0.19093956,0.0305542,0.59776646,0.70253414,-0.024380865,0.0032468894,0.29208106,0.046000432,0.25552958,-0.19348322,-0.385216,-0.2852551,-0.16727054,0.5516993,0.43235773,-0.08829773,0.37869027,0.0033475512,0.3369871,-0.1562021,-0.37643552,0.52648294,0.97505635,-0.17745277,-0.37639645,0.63757277,0.5012335,-0.26156238,0.5928941,-0.6455379,-0.30998954,0.49634048,-0.12270281,-0.2565584,-0.0051917327,-0.40883195,0.13638805,-0.75061965,0.28200853,-0.310888,-0.56623775,-0.51520145,-0.13797906,-2.4329674,0.24527988,-0.22298521,-0.10240684,-0.19105798,-0.08799048,0.0040248563,-0.5696359,-0.6112703,0.18962288,-0.005513233,0.6810867,-0.24231847,0.19887595,-0.09483142,-0.0938186,-0.3563282,0.25416824,0.16500412,0.35134482,-0.096782684,-0.25865498,0.098441,-0.14793079,-0.43859982,0.11985631,-0.43422246,-0.46256495,-0.25170153,-0.5083138,-0.08594728,0.6492644,-0.31209666,0.14529556,-0.14860204,0.093777806,0.0035006755,0.24635208,0.034954954,0.32131818,0.20104353,-0.15457612,-0.14601451,-0.22675377,0.39884448,0.09989155,0.27889174,0.35260054,-0.12675022,0.17109576,0.3727533,0.5416809,0.07324015,0.8326472,0.19906494,-0.12261321,0.33440882,-0.2752795,-0.31826982,-0.57660544,-0.21945058,0.0070564044,-0.4266322,-0.48675033,-0.101201236,-0.36655474,-0.9289068,0.48573804,0.0021558404,0.27974436,0.05278915,0.21799017,0.43909228,-0.0834323,-0.030142546,-0.07036543,-0.06835872,-0.46257,-0.33616465,-0.5933229,-0.41665494,0.07496134,0.985273,-0.2534393,-0.16524296,-0.14434394,-0.27958763,-0.06565708,0.15077075,0.14765936,0.114241205,0.38287702,0.08706937,-0.6451417,0.558653,-0.123581074,-0.008263076,-0.41242126,0.16771685,0.49486586,-0.57244354,0.42119065,0.40489167,0.12698185,-0.09435709,-0.6916906,-0.055460073,0.0609062,-0.20248199,0.35914403,0.31441674,-0.65953773,0.36757022,0.05882942,-0.26708722,-0.9981393,0.54418766,0.07402707,-0.3569586,0.03333549,0.4781292,0.17564039,0.009234428,-0.21606557,0.15602306,-0.31318334,0.19872592,0.25883126,-0.07758802,0.35287803,-0.27722493,-0.4094282,-0.75162196,0.03726432,-0.6082902,-0.18420659,0.18702768,0.017693913,-0.0028209116,0.1914321,0.20666431,0.51176286,-0.25060707,0.071506344,-0.17404824,-0.2376364,0.43741155,0.4385996,0.5849641,-0.45011458,0.6085068,-0.0152252875,-0.07780821,0.027230484,0.086961746,0.35375613,-0.010562504,0.4604364,0.17122082,-0.011726432,0.14357243,0.5558342,0.3195369,0.27328244,0.1653191,-0.41685048,0.39448944,0.050270945,0.2325879,-0.074816875,-0.53112763,-0.04557898,-0.11867672,0.07660314,0.4565028,0.17075932,0.41997153,-0.052094415,-0.21491507,-0.0018918654,0.0033673889,-0.18991928,-1.230463,0.2841208,0.07650088,0.8590729,0.50889826,-0.00092946785,0.07371509,0.47052464,-0.09966427,0.16612093,0.28588596,0.01733213,-0.2858462,0.35234985,-0.5121383,0.3384503,0.013108264,0.06764047,-0.039404258,0.122106984,0.38054284,1.0196729,-0.14941552,-0.012296864,-0.25416398,-0.26546282,0.32373992,-0.30882245,0.10667794,-0.4515355,-0.35494846,0.75687605,0.2820696,0.31234357,-0.0850332,-0.06598,0.15735295,-0.14668956,0.29282895,-0.010511138,0.0007645207,0.058235336,-0.5226741,-0.3707885,0.4709674,-0.32337537,-0.15051192,0.0706971,-0.10947653,0.06879533,0.045999873,0.020130789,0.04182305,-0.787026,-0.07433869,-0.20807609,-0.31965205,0.17603658,-0.2798955,0.16725239,0.15312926,-0.096453615,-0.4468757,0.20381029,0.30460364,0.54912704,0.09837154,-0.1887134,-0.37716293,0.00032605143,0.24351151,-0.37745285,0.2867546,-0.15795434,0.27782238,-0.7823373,0.53951603,-0.09843787,-0.33959344,0.059984587,-0.15460882,-0.21434796,0.4093583,-0.12805142,-0.09701259,0.11678242,-0.073895074,-0.076595485,-0.010496728,-0.20217018,-0.060326904,0.12284444,-0.15296666,-0.011302503,-0.021439258,0.016819883,0.4720428,0.08878775,0.3967311,0.36909485,0.08320762,-0.56522816,0.1309618,0.22126494,0.41819102,0.07305814,0.025723835,-0.088491894,-0.36473528,-0.35047728,0.42204705,-0.16299357,0.19368519,0.12529285,-0.2406955,0.723653,0.12554915,1.1067886,0.00046099283,-0.36331105,0.038400132,0.5413537,-0.0047937315,0.0018189725,-0.3422902,0.9860003,0.4920018,-0.2176651,-0.23358469,-0.41000324,0.053312838,0.073541775,-0.27789378,-0.09056767,-0.050873566,-0.33534417,-0.36046648,0.042232726,0.18654922,0.04044132,-0.052754752,-0.095867366,0.25954366,0.16587563,0.40054557,-0.6519361,-0.09613756,0.31249204,-0.007821987,0.1912199,0.19579525,-0.4726785,0.35862795,-0.70174325,0.11084147,-0.20887227,0.21823463,-0.14389193,-0.26532757,0.32866102,0.17380123,0.39693406,-0.36747238,-0.41799212,-0.3291867,0.41437042,0.13852628,0.097768374,0.63958335,-0.22723952,0.013458835,-0.048049442,0.58154154,1.102517,-0.102011055,0.20749302,0.3009206,-0.45383772,-0.57654274,0.018136933,-0.35476404,0.0028977816,-0.06113136,-0.31265736,-0.6369455,0.19372483,0.18979204,-0.014315816,0.32041484,-0.7466381,-0.3014073,0.24126653,-0.30092654,-0.20852697,-0.124635614,0.27157876,0.73590404,-0.32708377,-0.25577426,0.014378285,0.18517244,-0.26095006,-0.8291365,-0.07650067,-0.22717442,0.28437132,0.052841935,-0.22408763,-0.21296783,0.1456486,-0.4790715,0.13033281,0.26246625,-0.2234947,0.04065594,-0.24339333,-0.03727389,0.6783133,-0.121991,0.11010331,-0.43005612,-0.44060066,-0.9994867,-0.4796278,0.12553045,0.16448647,0.033902735,-0.5728855,-0.24385576,-0.28878722,0.05456224,0.14213358,-0.3267915,0.37178817,0.23893204,0.4772021,-0.13103236,-1.1087326,0.12991664,0.20084225,-0.2796444,-0.51196295,0.31445718,-0.10758049,0.7514538,0.18213423,-0.024890466,0.17057548,-0.6892133,0.08754515,-0.18664214,-0.089857146,-0.72284836,0.29770297 +625,0.51793617,-0.28434104,-0.5135078,-0.080555014,-0.24590334,-0.06622071,-0.13703953,0.55713,0.30296624,-0.29213244,-0.2107996,-0.22317266,0.10787232,0.2925939,-0.27040407,-0.62878907,-0.040389195,0.12695192,-0.46913987,0.5793421,-0.4225272,0.11152739,-0.0047320127,0.42183435,0.45510688,0.19221218,0.08446552,0.14348851,-0.26897207,-0.12450163,-0.13006131,0.33423248,-0.4126975,0.004810003,-0.3249845,-0.45809525,-0.16374573,-0.5911602,-0.32308966,-0.6945441,0.46751425,-0.8233627,0.40914166,0.17358582,-0.18400033,0.30290696,0.19262455,0.049991388,-0.2710013,-0.117230855,0.077681035,-0.10040136,0.1541639,-0.19696802,-0.19566998,-0.2376124,-0.7229918,-0.077045314,-0.53937346,-0.18118477,-0.21515451,0.013623609,-0.23523544,-0.02913203,-0.0076559004,0.75970924,-0.36105886,0.11827225,0.07574379,-0.14749192,0.088413715,-0.58980334,-0.33725753,-0.06882291,0.18758294,-0.093139805,-0.24516559,0.2171974,0.18232116,0.3450249,-0.23514105,-0.075091355,-0.58247733,-0.004817344,0.15273754,0.36830312,-0.09594439,-0.7498567,-0.15995063,-0.103065126,-0.025144044,0.20150656,0.1991382,-0.12862678,0.001425977,-0.01826067,-0.10172618,0.52027667,0.43684122,-0.38013193,-0.1985042,0.23154125,0.31923044,0.29604957,-0.15934607,-0.24128716,0.13677898,-0.632159,-0.096164465,0.013174562,-0.23956755,0.6820211,-0.067211024,0.35782704,0.46038407,-0.17944847,0.011184447,0.121889405,0.029008707,-0.11630356,-0.41244966,-0.28758863,0.2534532,-0.3355748,0.10657963,-0.15048088,0.734217,0.1308571,-0.7156529,0.3536042,-0.60053116,0.15404925,-0.009724534,0.3525998,0.69830555,0.35639292,0.43918937,0.60652155,-0.23136145,0.024027701,-0.17793117,-0.29832068,0.077260055,-0.1693136,0.06165842,-0.5337692,-0.13592972,-0.04551833,-0.0014231297,0.28908288,0.8014397,-0.45156989,-0.19344558,0.17358382,0.80658555,-0.16546543,-0.08970957,0.7904933,1.144275,0.96131635,0.042974796,1.0601156,-0.04808289,-0.19856013,0.3599313,-0.22268721,-0.6444841,0.25517514,0.15818392,0.013356814,0.20998254,-0.047401674,-0.019082628,0.33816844,-0.33823088,0.08898326,0.0024291254,-0.0057319817,0.33251423,-0.05052072,-0.3793511,-0.32316494,-0.2375814,0.10662282,0.21846558,0.3373174,-0.35153726,0.26831594,-0.14128527,1.6770134,-0.06906669,0.010996127,0.08212737,0.5808341,0.31795007,-0.11282202,-0.16507879,0.36316505,0.14889622,0.25641426,-0.59749895,0.20986702,-0.23096387,-0.42371795,-0.0019947565,-0.5024205,-0.3170842,-0.039093316,-0.51325613,-0.14640592,-0.08320747,-0.4472626,0.336201,-2.8634367,-0.11920417,0.092568636,0.42146996,-0.1548659,-0.41111177,-0.2621886,-0.40920463,0.4672422,0.30457112,0.3853933,-0.64185005,0.2525688,0.5445822,-0.5660314,-0.15162174,-0.47087017,-0.010933912,-0.03480675,0.40991357,-0.07595208,-0.029576324,0.20790586,0.36206546,0.58499324,0.14921817,0.2064186,0.26250225,0.43191686,-0.2648005,0.55762374,-0.21428563,0.39905664,-0.418896,-0.18151698,0.1906469,-0.46550295,0.2345449,-0.2598599,0.1656928,0.5688876,-0.4812639,-1.1318395,-0.5354097,0.14360288,0.97119373,-0.12618111,-0.34950966,0.33399242,-0.6656475,-0.31885755,-0.10967203,0.72116214,-0.14991686,0.027191928,-0.7389141,0.011744408,-0.12643151,0.09774384,0.07328352,0.05260207,-0.4117081,0.6943088,0.13268529,0.6262459,0.20009534,0.082480304,-0.49052402,-0.39490616,0.14094089,0.76374584,0.17661184,0.15851879,-0.20024714,-0.10456019,-0.22712047,0.039325934,0.11222898,0.66960686,0.43304765,0.007656236,0.24349743,0.2863559,0.1117464,0.0012751336,-0.14897448,-0.11742701,-0.13375814,-0.02813188,0.5299674,0.8152017,-0.20364478,0.3063958,0.06528633,0.24898288,-0.32346886,-0.35020024,0.5825245,1.2082387,-0.08984179,-0.27038172,0.56777865,0.5840017,-0.2655612,0.35223204,-0.43810984,-0.37038124,0.4319792,-0.19949624,-0.38329557,0.22778219,-0.39221162,-0.044896867,-0.68419003,0.07226806,-0.1457544,-0.25506642,-0.6713892,-0.25713706,-3.2337236,0.116038375,-0.18647856,-0.3334449,-0.2771725,-0.2458269,0.018452616,-0.7521302,-0.6761923,0.10826238,0.11574536,0.7573563,-0.25911948,0.15078494,-0.23974885,-0.49402273,-0.109381914,0.2885485,-0.02613252,0.49027875,0.034896806,-0.3639159,-0.051304635,-0.0482472,-0.46800348,0.028202537,-0.4087626,-0.26893175,0.042157643,-0.5043798,-0.33732015,0.7135464,-0.41050264,0.017553035,-0.15612325,-0.094058916,-0.045377966,0.32598197,0.13640265,0.25917473,0.08675497,-0.04597818,0.07522411,-0.13538584,0.12590282,-0.03297703,0.3783902,0.5567616,-0.03295306,0.24576375,0.47429526,0.6148313,-0.14188446,1.0924718,0.4489764,0.024964813,0.16370355,-0.1849241,-0.23205963,-0.62101406,-0.19488178,-0.021443954,-0.37213284,-0.44219616,-0.043325808,-0.35436615,-0.9246479,0.43994948,-0.06985423,0.2697791,-0.02197604,0.3577662,0.5603725,-0.39011425,0.028098537,0.0041537206,-0.05721837,-0.46460035,-0.2616591,-0.41894245,-0.38318208,0.01057229,0.735712,-0.27758697,-0.09267139,0.23565072,-0.23839961,-0.069531456,0.18394342,0.024198055,0.21481189,0.4031298,0.15956634,-0.5334197,0.5127773,-0.17905258,-0.18400805,-0.5458001,0.10941041,0.39882517,-0.57685035,0.66233134,0.4859748,0.04170941,-0.2589521,-0.42249453,-0.16951774,0.010908384,-0.04898793,0.3456499,0.3778782,-0.8093711,0.38413775,0.22795255,-0.045607585,-0.7763367,0.67203265,-0.06489981,-0.53143173,-0.26042563,0.39315218,0.12898128,0.06747179,-0.07001326,0.25185892,-0.42833048,0.117734,0.16904505,0.033067174,0.2984495,-0.2680791,-0.012575645,-0.71737015,0.17008251,-0.4683366,-0.22167048,0.40811312,0.104982056,0.27030283,0.2839318,-0.016902955,0.17929776,-0.22748852,0.120537795,-0.038654473,-0.11277339,0.35833597,0.38509354,0.62007046,-0.47584432,0.5179397,-0.0386677,-0.125439,0.24843144,-0.019647758,0.24210538,0.0032368808,0.57971096,0.08496761,-0.32863438,0.33111885,0.7741658,0.22269715,0.39481783,0.14287731,-0.1626289,0.2543249,0.11738312,0.21504712,-0.20448345,-0.61262393,0.08268455,-0.36183515,0.16200519,0.29818046,0.014317677,0.12037729,-0.12451768,-0.20082654,0.08165276,0.47154897,0.0007870014,-1.2737846,0.20581707,0.09265056,0.89333504,0.6635138,-0.0013852883,-0.01876369,0.58328533,-0.05425279,0.17283116,0.3384447,0.21522841,-0.43743393,0.5017736,-0.5806313,0.5857977,-0.13802852,-0.010923505,-0.12406659,-0.11651929,0.39396846,0.51293015,-0.09670072,0.014219126,0.16051237,-0.39123747,0.1286017,-0.38794532,0.21530475,-0.64871794,-0.13919619,0.7405847,0.6250336,0.3030668,-0.126276,-0.040138826,0.05767471,-0.15892738,-0.062290248,0.032464527,0.08563654,0.022118393,-0.8914588,0.050073184,0.48167187,-0.09743964,0.15388535,-0.030785771,-0.2885874,0.24497157,-0.15829006,-0.14622752,-0.090532266,-0.72845703,0.012099117,-0.35316926,-0.6300384,0.5984997,-0.13669974,0.2758458,0.32146904,0.09478013,-0.5059916,0.32384557,0.13618813,0.6791271,-0.18132934,0.161352,-0.38938153,0.096426055,0.13106635,-0.19348913,-0.29293224,-0.26865676,0.2513677,-0.38373536,0.43662855,0.049910802,-0.2508096,-0.23686147,0.031062406,0.20000437,0.6390243,-0.10324041,-0.25019956,-0.2496857,-0.13357595,-0.31674427,-0.12192651,-0.1073688,0.28716305,-0.08199025,-0.0050549367,-0.13446854,-0.11231494,-0.056202028,0.33901232,-0.11739959,0.5224935,0.38187715,0.22048555,-0.13282907,-0.18478987,0.21059488,0.695685,0.007014348,-0.1414149,-0.36479408,-0.5351973,-0.47159952,0.19292332,-0.045039617,0.3061664,0.37594035,-0.054959215,0.6539575,-0.066071704,1.0134131,0.12297387,-0.412916,0.19878957,0.4775104,0.003173576,-0.2419269,-0.26678598,0.95054996,0.39756945,-0.20887998,-0.1586496,-0.21963635,0.14731947,0.105462916,-0.18044598,-0.19259813,-0.09686036,-0.61041045,-0.115032434,0.12216161,0.24258131,0.29986674,-0.27120888,0.07782593,0.23993692,0.15749477,0.14897299,-0.45270663,-0.13071206,0.3719242,0.23542382,0.07788915,0.16867296,-0.4988143,0.32336256,-0.39424944,0.006671814,-0.42463714,0.2753167,-0.24579047,-0.20982282,0.27093711,0.14467119,0.45250893,-0.20581293,-0.25155658,-0.49328864,0.38971016,0.100192636,0.092556804,0.46903488,-0.15945819,0.036765695,0.011629015,0.617396,1.1793664,-0.15851042,-0.18711321,0.2727598,-0.39472884,-0.7210561,0.28654578,-0.6235417,0.1237346,0.12591021,-0.08889083,-0.6232789,0.15446854,0.10424228,0.13057604,0.049252417,-0.7108999,-0.30455548,0.2565622,-0.24676158,-0.16581082,-0.2967667,-0.1760884,0.5594873,-0.16022757,-0.20045972,-0.01476557,0.3638497,-0.044662613,-0.47870728,0.1286992,-0.43714207,0.24494894,0.09752289,-0.24946228,-0.23484315,0.043783657,-0.5052147,0.23589696,0.12806004,-0.33141503,0.12256173,-0.4015661,-0.05972602,1.1576998,-0.2110943,0.24956915,-0.23362105,-0.62015617,-0.92020214,-0.2886174,0.20700082,-0.0968273,0.05916629,-0.7142404,0.12241873,-0.108942814,-0.24632628,-0.19733664,-0.41434655,0.4541233,0.06357671,0.37325874,-0.056923654,-0.6762774,0.09854977,0.09882993,-0.34950924,-0.5750643,0.45965546,-0.016427461,0.8569587,-0.05097333,0.0386227,0.40162185,-0.4163561,-0.13085309,-0.12521362,-0.13096762,-0.43547165,0.029370103 +626,0.22700723,-0.40521422,-0.41840506,-0.17476694,-0.20552798,-0.1338104,-0.33679783,0.6917226,0.072363354,-0.47570816,-0.2441176,-0.26704702,0.18620141,0.62175465,-0.26671052,-0.5981808,-0.108287245,0.21212064,-0.5523429,0.7089334,-0.3701867,0.11158935,-0.05789281,0.5282528,0.1621915,0.100178,0.08588316,0.2187459,0.19851828,-0.353081,-0.20421755,0.2917873,-0.6133383,0.02599711,-0.3154452,-0.8317414,3.431365e-05,-0.5272551,-0.2158957,-0.86496973,0.2660404,-0.9994127,0.79448014,0.25041717,-0.34301582,0.06229653,0.24846184,0.43324828,-0.21488793,0.03653483,0.10060584,-0.1368937,-0.009234023,-0.28894696,-0.26023704,-0.6479197,-0.72381574,-0.096830904,-0.5426991,-0.08782304,-0.030260682,0.25411338,-0.27726433,0.14545055,-0.19511212,0.39039746,-0.61084175,-0.077871524,0.2834805,0.0016626865,0.42592168,-0.5272338,-0.13498338,-0.16006017,0.24554245,-0.30754265,-0.28281578,0.34006193,0.1474572,0.36140123,-0.07851574,-0.27243814,-0.28832647,-0.02276376,0.037348267,0.6176348,-0.1641938,-0.67197466,-0.22091286,0.013839061,0.24210651,0.4731153,0.17171258,-0.24384479,-0.13245128,-0.02370636,-0.0535191,0.3851579,0.43156075,-0.31568274,-0.33208546,0.13210075,0.55464333,0.22243804,-0.18547387,0.034209292,0.10340861,-0.71834725,-0.22269003,0.07279334,-0.19378375,0.6678879,-0.19880848,0.23444045,0.5164608,-0.09611259,-0.19016308,-0.16260646,-0.0650445,-0.29244828,-0.16396482,-0.48066208,0.5148695,-0.36228576,0.3359243,-0.49128076,0.50616574,0.11021642,-0.6367262,0.2695516,-0.81725097,0.09729708,0.05270968,0.5856793,0.51490766,0.5085892,0.51790893,0.5877846,-0.23052247,0.10011462,-0.15186122,-0.21736377,-0.090827055,-0.23784094,-0.071822956,-0.45587453,-0.10680499,-0.103092015,-0.17879307,0.10761341,0.69535834,-0.65663785,0.023262061,0.19773082,0.78749704,-0.3036497,0.01578963,0.9919188,1.0530382,0.99403876,-0.022725351,1.3190159,0.07434426,-0.28769943,-0.046080787,-0.08466751,-0.7028486,0.17593913,0.4609845,0.058423895,0.5642858,-0.027852645,0.032878846,0.521653,-0.61541176,0.086271234,0.010179813,-0.024707109,-0.035577923,-0.2694111,-0.5397503,-0.049475376,-0.0094683645,0.028855095,0.19971664,0.2801621,-0.047698025,0.60615283,-0.0039722323,1.5764656,-0.081666,0.14757265,0.22975993,0.37660465,0.2323121,0.027532926,0.016627409,0.23547924,0.38253072,0.20343237,-0.5263842,0.12605038,-0.21593045,-0.57319605,-0.1395766,-0.23723823,-0.17897582,-0.13238126,-0.58496326,-0.22858821,0.0317741,-0.07098044,0.3681079,-2.4503164,-0.2646592,-0.170007,0.3044298,-0.19302337,-0.43299055,0.043785412,-0.42462087,0.65050524,0.5005322,0.4303167,-0.7757296,0.5897501,0.5162061,-0.6100412,0.05296768,-0.70351523,-0.22647546,-0.022518648,0.35689893,0.040933926,-0.06614778,0.2537954,0.3235918,0.5294085,-0.08993256,0.196088,0.22991471,0.4408138,-0.36028183,0.6148633,0.00060338277,0.40196598,-0.37568298,-0.18260121,0.33080286,-0.38846374,0.31980547,-0.06377131,0.12276604,0.538632,-0.4754034,-1.0266495,-0.59604764,-0.31819293,0.6701347,-0.098394305,-0.4599721,0.17754833,-0.4281468,-0.27610025,-0.2928773,0.7444537,-0.26002714,0.2829543,-0.90812284,-0.12007194,-0.2368174,0.31217596,0.02624618,-0.039982256,-0.6713729,0.7872389,-0.009991919,0.5466557,0.65278727,0.024822101,-0.49387202,-0.55006623,0.106933974,0.68672234,0.45062086,0.18223341,-0.27091694,-0.2700756,-0.30312523,0.1034647,0.014348224,0.5955583,0.6317508,-0.23411262,0.24277484,0.23254241,0.1056348,-0.05066152,-0.33125904,-0.2335909,-0.06032446,0.2648692,0.597127,0.832375,-0.2760352,0.38158914,-0.09128144,0.7105775,-0.18343993,-0.481595,0.2914956,1.2038366,-0.049542498,-0.13401417,0.9427553,0.7127308,-0.19477715,0.48783317,-0.81047875,-0.27464464,0.49123326,-0.043066144,-0.58421654,0.3062261,-0.23898678,0.20573293,-0.9841852,0.19562948,-0.3816041,-0.24769567,-0.9858675,-0.2778317,-3.3755782,0.25789222,-0.23607545,-0.23644686,-0.097376384,-0.39830008,0.20101668,-0.71456075,-0.81455356,0.33064386,0.07558389,0.5934368,-0.19352578,0.033995796,-0.29648483,-0.43639517,-0.15066208,0.35118738,0.20272063,0.29080975,-0.24493138,-0.6990368,-0.17064023,-0.18369828,-0.7013604,-0.017766831,-0.7319868,-0.25645858,-0.2127681,-0.6637925,-0.18915583,0.6212378,-0.04895697,0.09318775,-0.19022894,-0.12727924,-0.04156913,0.42937407,0.07574526,0.22465687,0.08291957,0.013755719,0.13546807,-0.13044868,0.11720718,-0.034581777,0.16293709,0.22862375,-0.17071815,0.28547046,0.39560866,0.73054296,-0.08404415,0.9184089,0.5905881,0.026182532,0.35601076,-0.18410398,-0.47057927,-0.75781536,-0.34867692,0.027502531,-0.44076845,-0.6535921,-0.17311786,-0.34521398,-0.8325515,0.8786046,0.024235612,-0.10045242,0.020129085,0.19755845,0.37204924,-0.4121084,-0.21866603,-0.09555674,-0.15232165,-0.41844198,-0.4065479,-0.6156253,-0.56324536,-0.29649875,1.1469411,-0.12174467,0.08553236,0.15048946,-0.080815054,-0.012194465,0.48808506,0.08472657,0.08697929,0.4862442,-0.0066591054,-0.71198463,0.61090654,0.078844644,-0.41077065,-0.6458529,0.22297585,0.52961105,-0.63748133,0.5908196,0.33660355,-0.06315472,-0.4014624,-0.6918478,-0.18298687,0.049583945,-0.27494282,0.62614316,0.38130245,-0.66962934,0.350565,0.3331379,-0.23458104,-0.683966,0.7614153,-0.20337117,-0.56503373,-0.06126076,0.41031405,-0.005704785,0.06735919,-0.28537536,0.33147413,-0.33517492,0.21614182,0.25397816,-0.028676376,0.23877186,-0.22391786,0.101232655,-1.1302906,0.24324365,-0.62087196,-0.31946298,0.25730133,-0.12373052,-0.054600615,0.38840815,0.08651116,0.29310372,-0.31157804,0.20466268,-0.16671412,-0.4366645,0.21840721,0.40544006,0.4161726,-0.40056053,0.6958847,0.07923178,-0.15598287,-0.22031462,0.00021173556,0.45713177,-0.11639566,0.61746365,-0.004015863,-0.29863486,0.2154585,0.9288071,0.28095576,0.44256303,0.38740218,0.11116745,0.12594295,0.0971202,0.21302414,-0.006269157,-0.5406628,0.07979755,-0.26745158,-0.018022278,0.5486381,0.057666954,0.2821881,-0.17082155,-0.4223356,0.00893347,0.30052507,0.21649642,-1.501276,0.065379255,0.27893403,0.82654,0.6559302,0.23322193,0.07887354,0.52833813,-0.46387717,-0.17453778,0.38789153,0.22800769,-0.39072105,0.8015034,-0.76613164,0.47909975,0.039931048,-0.01772844,-0.23277692,-0.26692775,0.44630733,0.77420324,-0.09447015,0.05352923,0.05454852,-0.11562862,0.23184943,-0.44496104,0.013360669,-0.27757147,-0.34496245,0.79795694,0.5817826,0.5642986,-0.24498224,-0.040793527,0.32854506,-0.13287781,0.15054673,0.13779803,0.30954263,-0.11183473,-0.5019869,0.03956449,0.6374294,-0.14857359,0.07219967,-0.028939828,-0.5299892,0.24643528,-0.0856136,-0.12550116,-0.10192749,-1.0096002,0.011526763,-0.5705472,-0.42519712,0.6306322,-0.17640877,0.1920187,0.29721788,0.17661272,-0.2602742,0.352038,-0.0827122,0.9369257,0.33773243,0.16170819,-0.046431053,0.17896855,0.21030276,-0.37325883,0.13245611,-0.16927592,0.18960457,-0.5413107,0.42934665,0.13841675,-0.45726255,0.10607773,-0.03403078,-0.038920134,0.38972214,-0.13934685,-0.33108357,0.07706418,-0.18954124,-0.1062564,-0.482888,-0.09560577,0.38563314,0.071296476,0.43775246,0.021973118,0.17583096,-0.17189692,0.777849,-0.03660338,0.38825044,0.396392,0.14661567,-0.43786803,0.15962805,-0.083990835,0.6013519,-0.3661643,-0.10785475,-0.12019709,-0.5697246,-0.45161292,0.09889128,-0.12002347,0.5030357,-0.054683384,-0.12459891,0.81169087,0.13076161,1.0649915,0.040065344,-0.5895925,0.19510312,0.5189107,-0.014878591,-0.20087437,-0.31940985,1.1052212,0.49331346,-0.18502362,-0.1755534,-0.24041687,0.010092762,0.16240185,-0.21873985,-0.12004506,-0.09131435,-0.55936867,-0.04330593,0.25003204,0.33075365,0.32047266,-0.17076279,0.33442017,0.44559625,0.047388364,0.28698862,-0.5036777,-0.05318168,0.47763765,0.18471074,0.036351413,-0.09247493,-0.44902658,0.38535795,-0.21990485,0.10297164,-0.61868215,0.12124103,-0.38210103,-0.30960134,0.23015095,-0.03462264,0.2159748,-0.3658804,-0.16695707,-0.19097133,0.3561891,0.29021597,0.15523025,0.66451687,-0.2577805,0.0843957,-0.06735712,0.39805925,1.0795156,-0.5915489,-0.15508322,0.3074945,-0.55313975,-0.5632224,0.45545873,-0.44451487,0.08619671,0.15201825,-0.26021066,-0.61067003,0.17130506,-0.021100193,0.08207961,-0.09345645,-0.6722749,-0.06741937,0.45447993,-0.38876596,-0.2458861,-0.5235351,0.23004688,0.77692884,0.002858496,-0.43787464,0.1476308,0.22093801,-0.31584647,-0.53351945,0.021974564,-0.275012,0.3954424,-0.066772275,-0.35935274,0.010014449,-0.111896574,-0.42238453,0.037692916,0.37525642,-0.35871613,0.16923511,-0.5931969,-0.122194886,1.2443713,-0.34454164,0.10881876,-0.5395601,-0.55704993,-1.0222101,-0.28802478,0.50776863,0.29356506,0.008631863,-0.70582026,0.15925698,-0.07746789,-0.27436686,0.06368375,0.05597417,0.3956093,0.20205878,0.7173316,-0.07554353,-0.69959134,0.24843533,0.11084107,-0.056436945,-0.34671172,0.631478,0.1423167,0.8274887,0.032049786,0.13017443,0.2538181,-0.5274179,0.1240476,-0.1316337,-0.15862885,-0.71447223,-0.06608072 +627,0.35702574,-0.20824464,-0.35261044,-0.18529737,0.013686091,0.04642023,-0.1809002,0.6944024,0.29491618,-0.5351984,-0.16944988,-0.21394463,0.042027023,0.2859977,-0.13150316,-0.5939576,0.0053628436,0.087819,-0.108688585,0.31886616,-0.53744453,0.3451576,-0.20149024,0.40794984,0.2502585,0.13944633,0.23327471,-0.19313496,-0.18310441,-0.19667022,-0.21990883,0.43730012,-0.2734445,-0.04444097,-0.15171461,-0.47074592,0.09762735,-0.4279643,-0.3468175,-0.70177656,0.4606001,-0.7715113,0.48198304,0.21904375,-0.23094086,0.24168392,0.033782665,0.17565675,-0.28056905,0.14544481,0.2009896,-0.13793656,0.0933372,-0.08819145,-0.2509464,-0.402625,-0.48405287,-0.00087397546,-0.49746108,-0.28361264,-0.24054389,0.14515057,-0.36459717,-0.17641897,0.08138909,0.29251072,-0.4503621,-0.21749611,0.02751281,-0.22405173,0.48146367,-0.71975094,-0.36832103,-0.11526355,0.2804161,-0.45497808,-0.12988476,0.23798394,0.30554998,0.51416856,-0.2071733,0.033533666,-0.51221865,-0.081795715,0.014107227,0.63032895,-0.29900494,-0.77577186,-0.09725187,-0.110402614,0.25331715,0.37987706,0.09584994,-0.093687005,-0.10878187,0.07320157,-0.38170087,0.32929063,0.5296715,-0.3538566,-0.29720482,0.2603912,0.30184707,0.2650933,-0.11416441,0.038792957,0.11802345,-0.5075928,-0.08677867,0.0376249,-0.20966744,0.6703375,-0.073134445,0.3837553,0.6518099,-0.20732503,0.31745437,-0.14415903,0.09554514,-0.13046342,-0.23099394,-0.34046963,0.14779523,-0.44010743,0.24091266,-0.18977635,0.9445345,0.15149505,-0.63832635,0.36855963,-0.52520084,0.08111666,-0.16651158,0.59469265,0.5321757,0.13115437,0.47381258,0.54207313,-0.43011498,-0.030239344,0.13689047,-0.21127026,-0.01751413,-0.06052335,-0.20262487,-0.40890214,-0.025190813,0.25701743,-0.003605922,0.2915387,0.52981764,-0.48653495,-0.00039801747,0.23993117,0.8316593,-0.3371122,-0.0029900868,0.60096294,1.1218033,0.9637231,-0.09141769,1.2677114,0.29666233,-0.3506713,0.17783314,-0.2427233,-0.72777766,0.23012936,0.3855119,-0.34827125,0.22687863,0.24087524,-0.07161248,0.36745432,-0.49612114,-0.06095388,-0.20944726,-0.044965684,0.09614816,-0.04350035,-0.59028953,-0.28032562,-0.14327495,-0.061606884,0.047994483,0.21628594,-0.2835867,0.258198,-0.06696344,1.4128361,-0.14091362,0.0662691,0.047659587,0.69244474,0.17551036,-0.020158418,0.064369954,0.4426616,0.43559596,-0.0031124402,-0.71469706,0.05102254,-0.29528055,-0.2988288,-0.14795803,-0.36728582,-0.09483675,0.30340227,-0.47828802,-0.17203788,-0.20435043,-0.3328198,0.40944996,-2.7905152,-0.15854219,-0.038893193,0.27890828,-0.18203478,-0.27621314,-0.08658842,-0.41870603,0.49167764,0.4384396,0.51341647,-0.6088808,0.11060515,0.5868849,-0.2696219,-0.20284583,-0.67279726,-0.13642134,-0.14830548,0.26757064,-0.011404197,-0.10022217,0.058295522,0.18251061,0.52487844,0.14921212,0.12140787,0.058754217,0.46224925,0.14727207,0.3797115,-0.025629437,0.5034394,-0.23558907,-0.23102665,0.2962543,-0.4399643,0.22597896,-0.1608737,0.07810507,0.36937034,-0.33643338,-0.92096704,-0.558636,-0.31464255,1.1914979,-0.03861619,-0.37019062,0.39623156,-0.16577792,-0.20129955,-0.23052764,0.61724335,-0.24443014,-0.10450823,-0.768688,-0.028431458,-0.084009975,0.15025042,0.1478783,0.009867151,-0.44792214,0.55427957,-0.023260677,0.31753394,0.41087213,0.13415149,-0.24033761,-0.53944844,-0.08054809,0.8861535,0.34952483,0.29415986,-0.21223794,-0.12739043,-0.19641592,0.07009167,0.14796762,0.36031273,0.86751753,0.04824863,0.21634561,0.31890753,0.07615141,0.12359018,-0.01478056,-0.37151143,-0.08411113,0.08339121,0.55669665,0.33683124,-0.24090451,0.38347042,0.0071865283,0.11303566,-0.43964696,-0.10713836,0.40803015,0.99976563,-0.09083775,-0.12492919,0.63889587,0.6165824,-0.3749063,0.4640135,-0.71125984,-0.25747576,0.6278443,-0.28337833,-0.50697434,0.17356162,-0.36876395,0.07829679,-1.0071908,0.28047016,-0.12845463,-0.38458297,-0.6752982,-0.16948612,-3.4981508,0.0365156,-0.35398865,-0.24909824,-0.13790645,-0.22549634,0.34418628,-0.6477923,-0.5041815,0.14741519,0.030738682,0.5276879,-0.030316673,0.040887218,-0.37579122,-0.22442578,-0.37510228,0.0869239,0.05796657,0.350423,0.15170747,-0.44803628,0.12240338,-0.09188882,-0.3542494,0.05158173,-0.4094771,-0.4527011,-0.05125296,-0.6096901,-0.25690377,0.7142954,-0.47612533,2.51246e-05,-0.20195602,-0.020525718,-0.18453759,0.35651425,0.23675358,0.21830218,-0.11651278,-0.020333083,-0.036567386,-0.2930067,0.38361105,0.07606575,0.125907,0.37644967,-0.1947798,-0.032094236,0.53149277,0.45859072,-0.061716724,0.8877616,0.5911907,-0.050536197,0.17706744,-0.43977585,-0.16647162,-0.5668047,-0.43126068,0.012728284,-0.32929066,-0.6098726,-0.21103711,-0.27432704,-0.8069906,0.54868793,-0.22206032,0.4979856,0.038600087,0.275165,0.3020865,-0.06370517,-0.035001863,-0.009848788,0.03556067,-0.5047098,-0.1558433,-0.67568046,-0.42305627,0.21658957,0.72199744,-0.29070774,0.07343615,0.2738408,-0.21338469,-0.11999903,0.029977,0.1186311,0.14993264,0.35943416,0.024580086,-0.73015255,0.3909646,-0.02127265,-0.20463772,-0.6884889,-0.08046831,0.5974838,-0.81215876,0.4752178,0.6492798,-0.02830709,-0.011092369,-0.5620339,-0.405118,-0.050339982,-0.07938043,0.26794654,0.11692074,-0.6000467,0.4524941,0.3070609,-0.18157715,-0.6859675,0.63662374,0.009221345,-0.40050742,0.09086796,0.34005412,0.16992839,-0.028884975,-0.07560933,0.28780824,-0.3650967,0.39535585,0.1837393,-0.09076027,0.61327285,-0.22236037,0.03357978,-0.7064491,0.17053418,-0.5667872,-0.053866494,0.19268191,0.10308635,0.11971727,0.2322148,-0.028557995,0.34973335,-0.37993848,0.09999826,0.032064795,-0.19353645,0.24486887,0.36193386,0.5482805,-0.31256023,0.5558513,-0.0038074404,-0.17645758,-0.0007357697,0.14012729,0.44783998,0.05175923,0.3385767,-0.10389469,-0.50784665,0.28686485,0.900677,0.3140287,0.462147,0.03179265,-0.04641262,0.3374807,0.31476897,0.119208604,0.14918108,-0.41626784,-0.19292043,-0.30944613,0.17470877,0.41142276,0.10246935,0.3763957,-0.20212056,-0.2906594,0.17963599,0.37828863,-0.019100964,-0.9087749,0.3421854,0.08104011,0.7419613,0.43233928,0.029290995,0.08060822,0.48365283,-0.13547106,0.06619273,0.49181786,0.109065354,-0.60336,0.6362641,-0.41865572,0.4787748,-0.13871773,0.04288676,-0.09214485,-0.16723351,0.4036592,0.6612668,-0.03629154,0.045403346,0.12287151,-0.35867286,0.07250547,-0.47106072,0.2298223,-0.6015584,-0.023498103,0.59792,0.4749105,0.11839867,-0.09404266,-0.009846219,0.12562416,-0.03566954,0.0070687085,0.0261346,0.105140306,-0.12571274,-0.8240824,-0.17606042,0.586807,0.06832328,0.03191073,-0.18878114,-0.22680847,0.32573316,-0.20523174,-0.01270629,0.00060051057,-0.5500702,-0.02125313,-0.38962147,-0.5011396,0.48280212,-0.2634202,0.40581954,0.22881985,0.10524061,-0.18529648,0.31675524,0.22548218,0.6481012,-0.1971017,-0.17992939,-0.53685004,0.021816865,0.36020637,-0.15816441,-0.33501896,-0.31491134,-0.034225307,-0.35148957,0.43341756,-0.09984374,-0.024650967,0.02120634,-0.23929107,-0.015397827,0.56554157,-0.14408301,-0.018960116,0.0076833665,-0.2271773,-0.26310423,0.011381954,-0.13591987,0.22924297,0.156182,-0.052667484,-0.2781245,-0.34171584,-0.20344162,0.32968882,-0.029619955,0.282065,0.37241268,0.15381815,-0.13951358,-0.29932407,0.050320413,0.44733143,-0.012404182,-0.03203976,-0.28809926,-0.5568707,-0.2867031,0.057249635,-0.250705,0.29702744,0.15660617,-0.3200531,0.73935443,0.04253379,0.8824474,0.062051523,-0.53283054,0.022383174,0.5638469,-0.09656357,-0.047952276,-0.2913967,1.0940998,0.5180669,-0.13856821,-0.22344379,-0.25944626,-0.04931668,0.24494426,-0.19496532,-0.17546912,-0.120508276,-0.66857386,-0.27349207,0.39750266,0.34554967,0.19683857,0.029965108,0.17519315,0.18128198,0.1904308,0.39211264,-0.58388305,-0.27017274,0.30874392,0.32332736,0.1743372,0.20455645,-0.30502966,0.41301224,-0.58486634,-0.07950928,-0.5033285,0.1538903,-0.32424197,-0.33486554,0.22901487,0.03546417,0.47188535,-0.17125864,-0.30633232,-0.21785472,0.43470132,-0.008454601,0.17045295,0.36583054,-0.27406546,0.00975686,-0.09363981,0.39816132,1.2066181,-0.16566564,-0.1949349,0.52063423,-0.30939847,-0.6057815,0.25320175,-0.53645176,0.045592308,-0.049293313,-0.18108411,-0.506998,0.23127373,0.19329302,-0.11480544,0.08072581,-0.3469166,-0.21687216,0.19382219,-0.19008677,-0.33774757,-0.32644728,0.08491242,0.6578098,-0.45450532,-0.21969122,0.014648825,0.52877194,-0.23743087,-0.65803987,0.11475384,-0.31790826,0.45988488,0.2787303,-0.3043542,-0.12355707,-0.040031765,-0.35952112,0.267196,0.29962125,-0.3574086,-0.019245172,-0.36017978,0.05020978,1.0139765,-0.09648872,0.00916855,-0.54740393,-0.32682464,-0.8015132,-0.38334,0.6951361,0.24622606,0.08495229,-0.5717922,0.24749513,-0.1853335,0.018866265,-0.12590064,-0.3303466,0.55260605,0.15377547,0.4563527,-0.15446867,-0.72807616,0.09044238,0.00028629228,-0.3771411,-0.5609029,0.5533461,-0.10338467,0.9614604,0.17913873,0.013657247,0.34587982,-0.28519732,-0.006042103,-0.2623601,-0.4084532,-0.80505484,0.025883049 +628,0.2904502,-0.3165589,-0.53093475,-0.0662539,-0.14361387,0.078852415,-0.19175711,0.6095651,0.02630756,-0.5570209,-0.19405699,-0.14220962,-0.15474294,0.48818693,-0.19571276,-0.4171916,-0.029428221,0.13199177,-0.5871408,0.38159263,-0.3764495,0.18607266,0.14786305,0.37539965,0.22776279,0.24186891,0.02505224,-0.13256739,-0.20627238,-0.15358576,-0.005339511,0.010919412,-0.4026509,0.2021622,-0.2922783,-0.4665387,0.027742933,-0.51034456,-0.31853598,-0.6434328,0.29659483,-0.7895091,0.3509817,-0.09845608,-0.2881897,0.09828053,0.038715005,0.52216953,-0.2359912,-0.054881383,0.25073466,0.0013668507,-0.066839695,-0.037674554,-0.12914346,-0.15088981,-0.565383,0.12040582,-0.36845416,-0.0883179,-0.019408436,0.17690843,-0.21284072,0.24919571,-0.15013565,0.34403104,-0.41602358,-0.11797997,0.28644258,-0.17456831,0.2243398,-0.5548193,-0.12333485,-0.11953448,0.13585609,-0.1199862,-0.15080906,0.24836329,0.16153145,0.48813117,0.017642727,-0.10021494,-0.22087125,-0.03835624,0.16288432,0.4581882,-0.12601754,-0.260039,-0.18399122,0.022612007,0.20013857,0.04089727,0.088947564,-0.2529494,-0.07520342,0.050907824,-0.30969143,0.10841491,0.45263752,-0.23268099,-0.11673382,0.26452625,0.65763986,0.2084692,-0.013886535,-0.04859586,0.07178781,-0.50935,-0.19772668,0.11122796,-0.04420028,0.48132858,-0.053692717,0.4172313,0.580097,-0.12042307,0.18342969,0.033779487,0.004070576,-0.1813972,-0.23313233,-0.43687773,0.15048046,-0.43998832,0.11080349,-0.23294432,0.8127509,0.16157468,-0.6723269,0.29387745,-0.52799433,0.15230848,-0.0745358,0.43107638,0.5715104,0.40846846,0.115938805,0.6649238,-0.37541458,0.18404177,-0.25290626,-0.22679947,-0.014677223,-0.120386496,-0.12557557,-0.41981477,0.028967874,-0.035485104,-0.0040624538,-0.049225435,0.22333759,-0.51424825,-0.021694621,-0.051866394,0.94829625,-0.25075978,-0.008168308,0.7871548,0.88625234,1.0365129,0.048887838,1.0488236,0.17187856,-0.2880902,0.21582586,-0.12582594,-0.6559582,0.33616766,0.42757738,0.18267232,0.23204105,-0.00060644647,-0.11148253,0.5899616,-0.41202527,0.16382237,-0.18842728,0.039214745,0.018147258,0.02953566,-0.41575778,-0.21468046,-0.031514574,-0.12576425,-0.10169789,0.2101916,-0.12347669,0.5242504,-0.06652361,1.6952689,-0.12956183,0.11893128,0.104798965,0.39318937,-0.05667072,-0.19137505,-0.1577807,0.02766941,0.39578775,0.033066537,-0.5895589,0.023897585,-0.1967939,-0.5065024,-0.11254191,-0.20728382,-0.12570444,-0.23725262,-0.5754019,-0.15594912,-0.08014397,-0.1708902,0.22245234,-2.6998632,-0.17388473,-0.1349918,0.24339609,-0.4329268,-0.38049158,-0.056383174,-0.4382871,0.4679794,0.301926,0.44261697,-0.47470963,0.41145024,0.24601483,-0.39253718,0.08274464,-0.57030666,-0.13341741,0.12399001,0.20343977,-0.0078206975,0.010615524,-0.09297594,-0.023665512,0.34171835,-0.17980215,0.050843105,0.31740913,0.19301824,0.16090514,0.42148903,0.013756807,0.5182525,-0.5995629,-0.070859484,0.25436527,-0.37391743,0.3394193,0.010181123,0.207886,0.35102004,-0.6206807,-0.6160085,-0.6777142,-0.35182163,1.3564552,-0.14781195,-0.23314008,0.23424673,-0.3212797,-0.14222375,-0.16551773,0.34819156,-0.04951315,-0.09560454,-0.81891507,-0.1290964,-0.10960458,0.22174712,-0.08035286,-0.027858075,-0.3622195,0.44393793,-0.0961753,0.4309519,0.4710181,0.09367504,-0.0136858625,-0.2644405,0.07039289,0.8155136,0.37944025,0.18537627,-0.16430311,-0.14532262,-0.4321007,-0.072766624,0.11497499,0.35835648,0.8217861,0.024714308,0.06643116,0.20612982,0.08239158,0.08459512,-0.037560407,-0.34575072,-0.20470276,0.0145737585,0.5243334,0.49383557,0.011011684,0.28390285,-0.1690485,0.42285264,-0.17018977,-0.4314607,0.3884374,0.551349,-0.19305754,-0.22350378,0.46620873,0.5382251,-0.20973179,0.3600189,-0.5224124,-0.32437167,0.3714328,-0.04878163,-0.4533264,0.14330824,-0.32112834,0.24268907,-1.0032122,0.2581662,-0.353295,-0.5142638,-0.67134017,-0.22560316,-2.7017577,0.17392002,-0.14891906,-0.25520656,-0.037227567,-0.16315596,0.26749247,-0.48258194,-0.63886577,0.07078549,-0.027948497,0.63170177,0.06823274,0.057040673,-0.17308593,-0.15558039,-0.3078114,-0.00983843,0.22764811,0.2543742,-0.04928356,-0.45948464,-0.20493793,-0.30711606,-0.33217338,0.16888686,-0.738483,-0.5175155,-0.19616805,-0.4240431,-0.2863801,0.607102,-0.20829383,-0.022598736,-0.018131668,-0.041173052,-0.12648644,0.35813078,0.17457335,0.14940673,0.080876574,-0.12698464,0.0054169972,-0.3493868,0.09071604,0.25822812,0.37327096,0.34820464,-0.13351995,0.41452745,0.5072764,0.85859716,-0.13742433,0.59151554,0.4815573,-0.09754009,0.34006223,-0.3023846,-0.35861352,-0.38721988,-0.07395278,0.007951061,-0.28767028,-0.45644352,0.19771534,-0.3057393,-0.8468474,0.43264267,0.03617354,-0.12479803,0.11292134,-0.008237457,0.45639974,-0.13296872,-0.11980049,-0.07663584,0.040876262,-0.4894843,-0.42328456,-0.7489327,-0.5223872,-0.04223576,1.3630874,0.011065443,0.046934437,0.09019751,-0.3468529,0.13975643,0.0700297,-0.08339591,0.081896394,0.29246762,-0.21541208,-0.67442113,0.5298322,-0.014408008,-0.19598252,-0.41290137,0.14823659,0.7288467,-0.584539,0.33591557,0.31048012,0.06840896,-0.14821224,-0.29901227,-0.07961833,-0.105933495,-0.21014659,0.2855983,0.12094722,-0.47902745,0.30724603,0.45364726,-0.083613046,-0.78868777,0.28190458,-0.015093449,-0.06228801,0.08638625,0.26478508,0.0036401947,0.03366723,-0.12727384,0.14714356,-0.34017503,0.2498825,0.3669831,-0.011317895,0.2519835,-0.2822887,-0.102309495,-0.514241,0.12123908,-0.6034391,-0.15672669,0.3616641,0.08118736,0.1256086,0.049831867,0.22241111,0.30769023,-0.21546176,0.06016217,-0.077807315,-0.29779068,0.3050131,0.42520416,0.4075717,-0.45802963,0.54815686,0.12548807,0.009961366,-0.11391498,0.030040229,0.4477302,0.08744578,0.3383867,-0.13075437,-0.16929068,0.22459364,0.76004666,0.23973863,0.4519453,-0.031111335,-0.15325664,0.10559617,0.09967926,0.067673445,0.11089823,-0.5673944,0.10783421,-0.030556956,0.15996546,0.41731542,0.11078338,0.36187106,-0.028943997,-0.21515647,-0.013945715,-0.008984173,-0.10432002,-1.2100587,0.5238769,0.17473133,0.75234574,0.4259262,0.021481814,0.010864735,0.5984242,-0.16085257,0.20386294,0.29957166,-0.0767278,-0.56845593,0.58750147,-0.64462346,0.56125104,-0.008600926,0.051209185,0.079345554,-0.11046269,0.59575397,0.65675825,-0.046909347,0.044771235,0.0010009249,-0.25612536,0.035769723,-0.43995243,0.09257517,-0.5408847,-0.22545858,0.62485284,0.44297943,0.2692827,-0.09309553,0.007730353,0.21650933,-0.044934914,0.32907507,-0.14046855,0.14819917,-0.057350747,-0.62728626,-0.25536975,0.47697675,-0.07218053,0.2682265,0.07271004,-0.3226163,0.20527752,-0.025023896,0.120805055,-0.1267413,-0.66097337,0.118719436,-0.4569455,-0.32071027,0.17687778,-0.048639577,0.35168302,0.15274803,0.05668562,-0.37378624,0.48833448,-0.24342528,0.8212997,-0.17795406,-0.2609625,-0.24672018,0.21066742,0.24975446,-0.21892901,0.0026916584,-0.29295272,-0.07162481,-0.54617494,0.40281782,0.004835347,-0.28194442,0.20853141,-0.116383865,0.0075300178,0.40653923,-0.06847247,0.05467209,0.05548208,-0.066977166,-0.28508118,-0.19296335,-0.14925165,0.28030816,0.2462209,0.19924851,-0.054545403,-0.05979585,0.029700283,0.52835685,0.011841858,0.3891446,0.41250318,-0.008477831,-0.44683692,-0.21852306,0.08343257,0.4246684,0.119433776,-0.15192227,-0.3826458,-0.25025457,-0.2369073,0.3165458,-0.22748613,0.45886612,0.14581458,-0.28270525,0.6998319,0.06472142,1.1637421,0.053162042,-0.32838318,0.08991159,0.39641604,0.0069181044,-0.07637381,-0.4927443,0.738817,0.38134795,-0.22488925,-0.14950113,-0.41471666,-0.06043589,0.07433537,-0.12729599,-0.20989677,-0.17748652,-0.6469271,-0.31937382,0.13311547,0.28858554,0.20228948,-0.09750752,0.02060715,0.1462157,-0.08108582,0.3613196,-0.40812337,-0.22024888,0.2811835,0.14133495,-0.10152958,0.09731229,-0.6155832,0.41450033,-0.54484177,0.09223843,-0.07564565,0.036604602,-0.119437374,-0.3480517,0.24145566,-0.04662756,0.32957318,-0.394295,-0.37488744,-0.25653937,0.53202397,0.165883,0.2153608,0.6249525,-0.24065581,-0.09204557,0.084198155,0.40909684,0.8258144,-0.3449782,0.1375468,0.32973498,-0.15027046,-0.43143126,0.2633707,-0.21816893,0.2519742,0.04488183,-0.22536527,-0.59175324,0.33269483,0.25265703,-0.22482738,0.10367792,-0.5418016,-0.12844516,0.25324383,-0.26189274,-0.32674038,-0.45376617,0.059504524,0.4709376,-0.28127763,-0.32279924,0.15127233,0.28014565,-0.16188951,-0.2917057,-0.033872955,-0.3496643,0.10820497,0.07317102,-0.3119885,-0.14862277,0.06464036,-0.35120112,0.07561759,0.04472708,-0.4075232,-0.0891216,-0.27371058,-0.1003414,0.80743504,-0.010554981,0.16724046,-0.523872,-0.33806744,-0.73790437,-0.45569414,0.5408433,0.20443045,0.041670203,-0.56518805,-0.053949654,-0.0695444,-0.09422334,-0.0052305977,-0.30050468,0.46012205,0.15831563,0.31582877,-0.08337115,-0.5544863,0.22657888,0.06474561,-0.1712493,-0.36034578,0.43291584,0.06760752,0.75680864,0.020529483,0.14858921,0.23612452,-0.45980608,-0.006360998,-0.20784335,-0.20840953,-0.5145379,0.0034323453 +629,0.1791002,-0.20047688,-0.613609,-0.03922695,-0.24523023,0.080294155,-0.22682025,0.22865084,0.17611516,-0.20659895,0.045519162,-0.13474084,-0.067344055,0.50365204,0.019319708,-0.85924786,-0.028146502,0.18296348,-0.8642308,0.6823165,-0.37414196,0.39595038,-0.0409682,0.26357597,0.1702019,0.23488948,-0.06602633,-0.10689994,0.02757,0.056273643,-0.24900927,0.1803793,-0.3075426,0.17007704,0.05045103,-0.33789042,0.012262225,-0.17870034,-0.547914,-0.7013771,0.23632254,-0.61834323,0.5940839,-0.11097674,-0.29507008,0.1355292,0.05193425,0.43925884,-0.35633197,0.008274998,0.15168127,-0.039393667,-0.22578979,-0.25052935,-0.31912795,-0.37943244,-0.49707374,0.031459842,-0.7084498,-0.11486399,-0.2893208,0.13990085,-0.35660794,-0.11621928,-0.01233731,0.38073984,-0.35733366,0.16646825,0.15606706,0.035051115,0.1988102,-0.5732246,0.112136535,-0.03601733,0.324473,-0.1639183,-0.28345293,0.27192268,0.2759283,0.5718629,-0.0030650157,-0.2286594,-0.18922517,-0.069435105,0.08480607,0.5138172,-0.1427096,-0.30552536,-0.1778264,0.13287517,0.1396053,0.14263073,-0.039409477,-0.44195557,-0.09020027,-0.13384461,-0.13144682,0.3441725,0.43686786,-0.26026994,-0.33706993,0.45514372,0.6343714,0.2901079,-0.07026421,0.14976345,-0.02845152,-0.45865512,-0.17116307,0.17423503,-0.0053508366,0.34068638,-0.1466798,0.36554328,0.6612204,-0.018506125,-0.034251202,0.04985633,0.029358821,0.016186787,-0.16421969,-0.051094145,0.120143175,-0.58450794,0.15333748,-0.016912907,0.7492263,0.156688,-0.7709779,0.39893475,-0.5727381,0.2605122,-0.039397035,0.5296671,0.8261887,0.41904625,0.062551245,0.62693846,-0.37657642,0.13145718,-0.103068665,-0.31648618,-0.0077959127,-0.06492104,-0.026502311,-0.68159384,-0.018903473,-0.2123817,0.013915266,0.073946,0.44887277,-0.6950942,-0.14800528,0.04504202,0.8173366,-0.33708254,-0.12504627,0.64236534,0.8678454,0.8397797,-0.0066558262,1.2942407,0.3953125,-0.24223249,0.24121287,-0.4522393,-0.7141233,0.12196929,0.30364332,-0.004289525,0.31513563,0.09039648,-0.056583982,0.49940953,-0.24987467,0.04268655,-0.28575835,0.24002592,-0.05614569,0.04266728,-0.33653775,-0.25039452,-0.043795697,0.0887677,0.056003995,0.28848675,-0.2381899,0.4139739,0.027610494,1.692611,-0.05276943,0.102860495,0.07309096,0.29213423,0.30616984,-0.18284675,-0.28862852,0.32834783,0.4624736,-0.11565589,-0.56974787,0.05866924,-0.31968397,-0.24271442,-0.19662166,-0.21507971,0.09368805,-0.077912144,-0.5103031,-0.14022496,-0.010563225,-0.34209213,0.5317632,-2.5916731,-0.2570967,-0.09783006,0.2928014,-0.33413786,-0.2886131,-0.23165277,-0.36457962,0.49809185,0.18685105,0.4228641,-0.49535924,0.44734043,0.31138393,-0.4119718,-0.11144572,-0.5267552,-0.14342006,0.18335441,0.3406659,-0.20069298,-0.06893371,-0.1312907,0.07251499,0.34496865,-0.38327822,-0.0035392854,0.45928,0.24846591,0.18769349,0.32341364,-0.075033,0.54043365,-0.18629935,-0.22529016,0.3472507,-0.15546796,0.41557583,-0.09770719,0.19084011,0.43517855,-0.5825675,-0.85198796,-0.51178396,-0.24802402,1.0939854,-0.2430958,-0.27023777,0.23239431,-0.31323674,-0.12615451,0.012549196,0.32182005,-0.14766976,-0.20122303,-0.7149814,0.15778176,-0.008534504,0.43661287,0.03328201,-0.16997373,-0.2383286,0.39358696,-0.17177881,0.2890253,0.31761575,0.29222915,-0.24269211,-0.45142522,0.12899518,0.8674062,0.4103027,0.15305991,-0.17660674,-0.112302266,-0.3032228,-0.1377382,0.028472977,0.3330586,0.74239075,0.033093095,0.13744374,0.24200605,-0.05552253,0.09150565,-0.24892154,-0.28842744,-0.05170706,0.20632888,0.5247981,0.47104615,0.028052304,0.75352085,0.022652626,0.06888934,-0.05290507,-0.6801242,0.5592367,1.1605098,-0.2597546,-0.28757784,0.49757457,0.09372612,-0.27426928,0.36196443,-0.499225,-0.2842105,0.57260704,-0.286007,-0.46087804,0.29795069,-0.2348478,0.026405903,-0.8108681,0.31850573,-0.21184254,-0.6040487,-0.5075675,0.020749586,-3.1578882,0.23304312,-0.32469898,-0.010505983,-0.019098908,-0.014432856,0.20363316,-0.38870636,-0.46831375,0.12587442,0.12225441,0.6673961,0.029109161,0.14109108,-0.10719346,-0.19340344,-0.3012522,-0.023944587,0.109105244,0.21897003,-0.13955761,-0.44633135,-0.19609304,-0.15075704,-0.4317704,0.08571478,-0.63440406,-0.25113723,-0.244346,-0.6121577,-0.15046607,0.7184248,-0.24793223,0.009295268,-0.3466973,-0.11455507,0.008093774,0.30540386,0.24935555,0.20070674,0.11919776,-0.12075659,-0.16721132,-0.40710402,-0.002973335,0.13513303,0.107693724,0.22301295,0.12108898,0.32623383,0.5110419,0.6943785,-0.076335534,0.6498969,0.5322894,-0.22688971,0.342288,-0.24543762,-0.121277876,-0.39415127,-0.3747391,-0.12598598,-0.39648208,-0.40775782,-0.08600718,-0.32714286,-0.64933735,0.46647877,0.092199154,0.104229994,0.030790716,0.23830462,0.52085584,-0.10934417,-0.030474236,-0.14065693,-0.1669039,-0.52286476,-0.25565374,-0.56739694,-0.54843575,0.34488615,1.1567568,-0.3215775,0.034684896,-0.027037876,-0.29102352,-0.07969151,0.030346258,0.0576624,0.4415036,0.23989332,-0.14714868,-0.60711575,0.30760187,-0.25282064,-0.17388551,-0.5769421,0.14332815,0.672555,-0.5794756,0.47156236,0.12018983,0.116119735,-0.0110110855,-0.47966263,-0.24041738,0.14299467,-0.26948506,0.2506617,0.13326527,-0.63945115,0.45516413,0.33463004,-0.11599089,-0.7364253,0.3138552,0.122634366,-0.38977453,-0.018830333,0.3784918,-0.048202615,-0.0076189763,-0.2994104,0.22913022,-0.27256918,0.28682283,0.20840046,-0.25384074,0.09726937,-0.22175357,-0.3658705,-0.5091081,0.048291367,-0.50571144,-0.24865004,0.14701429,0.14227858,0.08891378,-0.06605383,-0.013581021,0.43458286,-0.23788442,0.07288066,-0.13687766,-0.3480027,0.20622002,0.40391937,0.29520395,-0.31633496,0.5944743,-0.021049142,-0.16669624,-0.07735089,0.24848758,0.5396584,0.15189245,0.39072543,-0.071746394,-0.20501289,0.3205476,0.9643006,0.035047922,0.4335261,0.019308826,-0.13912787,0.05882948,0.053151544,0.060896955,-0.023346474,-0.2823355,0.11103248,0.05537918,0.27504134,0.63752383,0.26189905,0.2398608,-0.13679335,-0.3970749,0.014539943,0.07975068,0.17845193,-1.0393046,0.41986808,0.29414025,0.73415834,0.4004933,0.105121635,-0.10335088,0.5420424,-0.14736247,0.20769323,0.237535,-0.42725685,-0.49498898,0.45341104,-0.76452255,0.46975246,0.09373387,0.023500418,0.2803058,0.12354251,0.26805678,0.8298565,-0.11164697,0.062499404,-0.0016425912,-0.2530343,-0.05854949,-0.28354362,0.008379577,-0.48509407,-0.58027107,0.54037875,0.37307876,0.26145625,-0.24251437,0.0009976412,0.12053412,-0.27375793,0.1476485,-0.02542718,0.10277731,-0.15283951,-0.46723753,-0.3682646,0.42951927,-0.058835287,0.07420806,0.06920198,0.07971334,0.14148255,-0.1840026,0.076370016,-0.037167463,-0.6573688,0.11120764,-0.3199288,-0.25511134,0.44831398,-0.20043983,0.19241746,0.24073294,0.07824789,-0.4329222,0.7416548,-0.10852582,0.8120952,0.028385019,-0.1148966,-0.29604673,0.334971,0.07688656,-0.17162205,-0.0038876194,-0.3396916,-0.04748586,-0.77139527,0.37810558,-0.10560848,-0.2977304,0.2032264,-0.22200134,0.028503027,0.4062474,-0.07547416,-0.12941793,-0.044291012,-0.17381613,-0.2693989,-0.17903076,-0.07052701,0.2113237,0.29613605,0.021177266,-0.12696704,-0.11967217,-0.23069239,0.45885727,-0.0037037362,0.2999081,0.37650654,0.16097902,-0.32624173,-0.053484865,0.29862216,0.46258053,-0.0016004092,0.009485756,-0.17375973,-0.2546922,-0.35056797,0.028268099,-0.20792088,0.3582936,0.04775359,-0.38320425,0.7429906,0.23987411,1.0824726,-0.047519922,-0.16791375,0.20766439,0.37354845,0.08083199,-0.02572287,-0.22419988,0.76855576,0.5843614,0.15342365,-0.065121315,-0.26933023,-0.29376164,0.32516485,-0.221668,-0.021663725,0.13131896,-0.58097935,-0.4073713,0.27693197,0.11590185,0.109062545,-0.094820224,-0.06646522,0.11908027,-0.021902319,0.10142952,-0.551004,0.10770761,0.24140845,0.27956396,-0.03157812,0.35511112,-0.516725,0.38201663,-0.566776,0.08672688,-0.18572302,0.18637955,0.010560042,-0.20750935,0.24926306,0.1931108,0.30377516,-0.3336533,-0.27058235,-0.39179987,0.6205169,0.2443097,0.121888794,0.6939716,-0.3156733,0.24438827,0.08707498,0.34470838,0.8509154,-0.32103267,-0.088782735,0.29526138,-0.3168976,-0.6163977,0.28108093,-0.19686723,0.09675868,-0.059602443,-0.25062555,-0.32841444,0.22536545,0.16582918,0.05165718,0.024198933,-0.53447866,0.032555405,0.13725069,-0.22838809,-0.16040692,-0.36927775,0.12977393,0.6478041,-0.22519456,-0.16883911,0.32538205,0.1765505,-0.24425673,-0.5106639,-0.00597749,-0.43084684,0.15507948,0.16259243,-0.23758566,-0.01753882,-0.019783063,-0.515456,-0.0884454,0.32414818,-0.3979331,0.08304964,-0.1268777,-0.09204726,0.8746047,-0.4062361,0.031409256,-0.7012005,-0.505871,-0.7225937,-0.35682324,0.7322145,0.24653576,0.115319096,-0.79091924,0.021846745,-0.08009361,-0.031660113,0.06582527,-0.35546216,0.347904,0.13289939,0.19794002,-0.3505679,-0.9898635,0.21505271,0.045383472,-0.3532892,-0.552483,0.4301328,-0.16020563,0.7831629,0.0010608776,-0.13442115,0.32219794,-0.42661613,-0.07012755,-0.25332674,-0.21748526,-0.6778416,-0.001482989 +630,0.51579267,-0.21877106,-0.43523836,-0.014622514,-0.35902697,0.091326766,-0.21144979,0.55112064,0.33604386,-0.19488478,-0.1970538,-0.03971949,-0.050501745,0.32483095,-0.2539907,-0.6388609,0.007922815,0.13757111,-0.41083884,0.7661405,-0.36078262,0.3261344,-0.045447104,0.3825658,0.24695788,0.26617765,0.1844894,0.03726899,-0.13795888,-0.41203263,-0.061367694,0.1841975,-0.6595315,0.2662141,-0.12491469,-0.3066868,-0.12876017,-0.65950114,-0.34876636,-0.8303895,0.44341406,-0.80501235,0.48472473,0.100130506,-0.2934983,0.32742214,0.11855279,0.14281034,-0.07637298,-0.10715604,0.15568988,-0.12210337,-0.07725469,-0.062372047,-0.17004745,-0.1538215,-0.65186137,-0.021814499,-0.38846317,-0.13924064,-0.33923373,0.1401952,-0.42146987,-0.01510793,0.014071307,0.6521911,-0.47824878,-0.024306485,0.1033137,-0.1795965,0.10172244,-0.6527639,-0.282749,-0.036203187,0.397079,-0.07085503,-0.11331997,0.26895022,0.23405774,0.43110442,0.0056118285,-0.19916917,-0.43081632,-0.17706135,0.1850812,0.61575305,-0.04221211,-0.62203443,-0.204533,-0.13902487,0.23695382,0.024047945,0.045277443,-0.14183404,-0.18919908,-0.13009933,-0.31285554,0.5699061,0.5065959,-0.20227246,-0.24350154,0.31476593,0.3692805,0.29646072,-0.17084543,0.085601315,0.0038609866,-0.5692657,-0.09726989,-0.043618273,-0.14480057,0.47937825,-0.16629371,0.40362638,0.6346747,-0.10423342,-0.0015846321,0.17040385,0.033434894,-0.099732816,-0.24765715,-0.18915007,0.20446494,-0.40859967,0.34861818,-0.19679458,0.8680402,0.14624505,-0.8191644,0.42565203,-0.42039675,0.17791839,0.118056856,0.53924495,0.7388524,0.32779264,0.4098381,0.7799738,-0.24782105,0.028694203,-0.045475103,-0.30661243,-0.0717118,-0.094902106,0.04470804,-0.46509975,0.0061266,0.13503145,-0.06305421,0.15047958,0.6300128,-0.466502,-0.1412569,0.14776684,0.7944702,-0.15774257,-0.07786669,1.0425617,1.082847,1.2084372,0.021943191,1.034211,0.03870138,-0.13449164,0.016191704,-0.29097128,-0.68565613,0.23411156,0.29566544,0.32898706,0.21126798,0.05445001,-0.15839687,0.35061985,-0.46158847,-0.12567413,0.0077543342,0.13948771,0.2616983,-0.11042326,-0.5373301,-0.3291606,0.0218461,0.16507718,0.21980776,0.26139012,-0.29766777,0.5219646,-0.062538795,1.5702641,-0.09959866,0.08907775,0.10551534,0.62488365,0.21617101,-0.091524415,-0.052611005,0.14625065,0.2955163,0.048043888,-0.7051,0.1819433,-0.28474623,-0.37788624,-0.06587857,-0.43281025,-0.276983,-0.11324979,-0.3789787,-0.12011554,-0.15065476,-0.48829085,0.40641063,-2.8916698,-0.14634131,-0.097187385,0.2052255,-0.16428678,-0.26957986,-0.12583666,-0.59806377,0.4099606,0.32277742,0.56455135,-0.61185104,0.31374803,0.48474047,-0.6468633,-0.06704577,-0.55903846,-0.083483934,0.008185676,0.4602589,0.07281845,-0.09900562,-0.10722575,0.29294857,0.6546735,0.21251829,0.121877536,0.2855606,0.3438192,-0.08421658,0.44205385,-0.11964873,0.44617552,-0.21828082,-0.12704389,0.44899958,-0.49008232,0.25936586,-0.46203277,0.12407003,0.48824677,-0.43358335,-1.0368919,-0.5789219,-0.1614262,1.1589901,-0.16938005,-0.57797134,0.34651804,-0.35525098,-0.27622965,0.054154925,0.620685,-0.21701476,-0.18562208,-0.7394329,0.032898363,-0.1653258,0.09786713,0.014360453,-0.023362169,-0.4754892,0.8293682,-0.017295321,0.58379996,0.16181585,0.17882572,-0.34267202,-0.38052267,0.097252354,0.8336047,0.467524,0.15507317,-0.25386012,-0.07250283,-0.30589634,-0.27148473,-0.057519756,0.7207804,0.5338024,-0.03203926,0.14226045,0.20026548,-0.0007320323,0.17261757,-0.15827693,-0.16589187,-0.25281456,-0.014312736,0.6712748,0.7436107,-0.2301654,0.32106882,-0.021458402,0.2232956,-0.14433193,-0.44430128,0.6299558,0.8658568,-0.16434844,-0.27212983,0.56122154,0.45103636,-0.18328048,0.4569994,-0.5364657,-0.29927087,0.3466654,-0.08852054,-0.46345183,0.1796517,-0.29930338,-0.006064781,-0.6614684,0.16268758,-0.2712905,-0.64972657,-0.46216792,-0.14474572,-3.3565087,0.038947683,-0.17934655,-0.32140356,-0.29154354,-0.21273288,0.110265605,-0.57506514,-0.62797624,0.11386176,0.055754356,0.81621057,-0.23987731,0.05306957,-0.16373488,-0.30964804,-0.39153686,0.11254027,-0.0048549003,0.5235166,0.04756605,-0.30085665,-0.11106551,-0.19888131,-0.5378777,-0.09705033,-0.41636088,-0.40731278,-0.016376853,-0.50409496,-0.21448985,0.62543374,-0.2515754,0.13470736,-0.34952492,-0.06668852,-0.27669638,0.3368353,0.042179108,0.1795956,-0.060578488,-0.122121505,0.17742012,-0.13697116,0.39945444,-0.0684006,0.29140136,0.3835977,-0.2264609,0.20954296,0.48405266,0.58438736,-0.08418627,1.1582114,0.3639123,-0.094314,0.22964333,-0.19915567,-0.22555247,-0.62255627,-0.16667397,0.12635863,-0.48346108,-0.40420622,-0.16067302,-0.42702523,-0.81326526,0.44342777,0.05602539,0.3225052,-0.008839177,0.08730918,0.38324207,-0.27065384,0.006233741,0.010035881,0.04712052,-0.46651378,-0.2070063,-0.5973267,-0.47609258,-0.046093743,0.8295985,-0.18592347,-0.040039275,0.11059659,-0.3363877,-0.0374309,0.08375508,0.12583609,0.05555653,0.372953,0.11877757,-0.75968355,0.6407303,-0.26515034,-0.02027854,-0.54213506,0.16595636,0.42425093,-0.4564678,0.53534347,0.32660177,0.15305391,-0.15752351,-0.51683503,-0.1518791,-0.15634327,-0.11197462,0.33759728,0.33653337,-0.76970917,0.5338026,0.115978874,-0.14706786,-0.75298584,0.44888765,-0.03536042,-0.29423004,-0.046438456,0.3364614,0.25344935,0.0076707006,-0.19690266,0.31997627,-0.4164332,0.30127293,0.06675643,-0.06385617,0.4601972,-0.17450564,-0.2557654,-0.59454286,-0.11038096,-0.48788992,-0.29529902,0.0678841,0.18999325,0.08026312,0.075388536,0.051325586,0.38971406,-0.27008313,0.099658154,-0.14393279,-0.2975764,0.36477265,0.5364459,0.64584273,-0.46609816,0.5999384,0.07336672,-0.0015280119,0.17041986,0.027722657,0.32232887,-0.012467246,0.434114,0.12184042,-0.17962381,0.11022464,0.68616885,0.25247523,0.42218372,-0.009790495,-0.21034595,0.43505025,0.06918866,0.32805187,-0.10450406,-0.6380607,0.0077739186,-0.31594822,0.049501956,0.51464975,0.18165,0.28078443,-0.05074891,-0.3253151,0.02073531,0.20498143,-0.21095255,-1.2786916,0.28137818,0.17513645,0.9617682,0.62003547,-0.09917836,0.18220581,0.7364502,-0.05024864,0.06320285,0.30664077,0.12324945,-0.49340725,0.5554593,-0.7096277,0.54897946,-0.015753891,-0.029799778,0.116385356,0.07148884,0.443881,0.6656111,-0.19270037,-0.08139135,0.01496111,-0.4039449,0.14792871,-0.3600637,0.15315528,-0.5009155,-0.1621345,0.70985323,0.56875676,0.28738016,-0.12228496,0.08956623,-0.043536443,-0.034118086,-0.05167354,-0.007697993,0.0047076982,-0.23174548,-0.8136334,-0.1076739,0.49410763,-0.07482816,0.07101897,-0.01571103,-0.17465846,0.20931792,-0.069072284,-0.14399035,-0.06675086,-0.81364006,0.066505,-0.15639254,-0.47500607,0.4021518,-0.17076333,0.3138308,0.24730809,0.04422762,-0.25277257,0.31126547,0.16617917,0.7230052,0.028715031,-0.088721626,-0.30093715,-0.0013033833,0.19398117,-0.23292434,-0.232223,-0.17596896,0.06123754,-0.45158753,0.44912228,-0.11356171,-0.27245742,0.16646682,-0.0032280642,0.057319973,0.5231845,-0.11939596,-0.088913426,-0.12782423,-0.12258037,-0.24160136,-0.09320913,-0.18971731,0.22951964,0.20525482,-0.24653609,-0.075432576,-0.037629843,-0.054510396,0.3684097,-0.005984482,0.41635948,0.36047697,0.13068895,-0.443928,-0.082556546,0.30142707,0.6635496,-0.060491603,-0.0328418,-0.30470023,-0.46651432,-0.45403773,0.4169955,-0.070505165,0.3476254,0.07821908,-0.2542006,0.6639349,0.19847162,1.0021622,0.042374007,-0.37773958,0.19310418,0.52547026,-0.08368831,-0.02553603,-0.28282115,0.9166209,0.2855888,-0.22640105,-0.14970826,-0.45579505,0.18780515,0.2577891,-0.20255303,-0.089570366,-0.12801448,-0.576938,-0.10133195,0.15321755,0.21119581,0.13797142,-0.19333777,-0.07464003,0.28037483,0.17327443,0.33777028,-0.5209471,-0.13159381,0.43721431,0.11921716,0.011314399,-0.029875968,-0.4904807,0.30597407,-0.54766047,0.053130995,-0.17100647,0.20462263,-0.5041322,-0.18822932,0.37259832,0.03383192,0.41771945,-0.30770868,-0.43516684,-0.3192447,0.3885169,0.1376373,0.10777609,0.44235295,-0.2718007,0.05658238,0.114349954,0.5677702,0.99016994,-0.12729727,0.08713753,0.30236858,-0.40867075,-0.5097052,0.10972985,-0.36217356,0.23121735,0.007453463,-0.12982076,-0.73947746,0.17338702,0.18374528,0.21719639,0.15796642,-0.62187177,-0.30286735,0.35197327,-0.27896586,-0.20482734,-0.36819616,-0.10736055,0.6783145,-0.3043843,-0.30060396,0.05781618,0.2719876,-0.018020421,-0.712038,0.018943634,-0.31898943,0.25569636,0.041155558,-0.3785463,-0.30409858,0.05939373,-0.5292754,0.1875875,0.17597792,-0.36305514,0.093865976,-0.39708918,-0.02739285,1.0126135,-0.3381749,0.45363003,-0.5611655,-0.4808244,-0.896245,-0.37209654,0.4538166,0.056441367,-0.018106086,-0.62647265,-0.13831334,-0.30439934,-0.12573722,-0.06354349,-0.44245428,0.35907942,0.102575906,0.3377141,-0.13935378,-0.8897618,0.1873493,0.08661972,-0.15533279,-0.48716164,0.47606513,0.15531485,0.7157174,0.16718915,0.039565172,0.08624867,-0.53787553,0.031502478,-0.12470387,-0.15085718,-0.5689854,0.32310882 +631,0.4339806,-0.03779029,-0.5084071,-0.0037011164,-0.37571362,0.33963665,-0.18155268,0.45872194,0.22134805,-0.43756145,-0.2484379,-0.07531924,-0.12734069,0.16120389,-0.21396387,-0.510028,-0.043768834,0.1346176,-0.31265423,0.49131605,-0.3117575,0.5307366,-0.09816977,0.28730828,0.21253754,0.12251754,0.13215855,0.0729406,-0.099563636,-0.36266342,-0.19592759,0.22199263,-0.32236645,0.32054186,-0.17342938,-0.3316355,-0.04411639,-0.49081498,-0.37397316,-0.67734295,0.36129496,-0.8420306,0.503576,-0.073811755,-0.23061927,0.15661827,0.1555669,0.11046375,0.21684287,-0.075359024,0.03949637,-0.24865092,-0.032338448,-0.30949515,-0.5818435,-0.653357,-0.60147613,0.08319235,-0.51400894,-0.1616594,-0.20797154,0.15895568,-0.17382005,-0.15444987,-0.043218024,0.3697657,-0.3704907,0.06423257,0.15450726,-0.15057409,0.07729966,-0.59170645,-0.19426142,0.0100514805,0.3601551,-0.14206733,-0.19150686,0.21580306,0.31534454,0.36721587,-0.1114605,-0.23354189,-0.5219919,-0.021904727,0.13865606,0.62183225,-0.19937544,-0.4777207,-0.052215375,-0.014926987,0.62966067,0.33868155,0.14940658,-0.041772034,-0.28690678,-0.026599765,-0.11727577,0.62751514,0.52186704,-0.3037584,-0.20987181,0.52800596,0.47139588,0.27537054,-0.22269584,0.109658726,-0.107439384,-0.54118425,-0.052939843,0.17376132,-0.12543586,0.43355137,-0.036132343,0.3448678,0.595324,-0.17982414,0.080401696,0.12695768,-0.037759412,-0.0994614,0.0011374737,0.07175364,0.09247242,-0.3935849,0.17502286,-0.026638588,0.78482354,0.19169416,-0.7288461,0.3984252,-0.5449695,0.17711642,0.13541286,0.5545253,0.69197816,0.51594675,0.1058545,0.7412469,-0.1344488,0.066893496,-0.036389332,-0.19910036,-0.08905484,-0.25935376,-0.18142638,-0.41933227,-0.03220698,0.1296403,-0.08868875,0.24123703,0.6871181,-0.5353768,-0.2135991,0.2312554,0.81907874,-0.14898963,-0.23395099,0.8115444,0.9725978,0.8357047,-0.039807357,0.94026935,-0.035126347,-0.20889613,0.012645743,-0.19226563,-0.3972656,0.22247693,0.38598707,-0.1184163,0.51587844,0.029351277,-0.11029245,0.23938735,-0.36603108,-0.21660538,-0.12723087,-0.008147942,0.17846425,-0.06954161,-0.37780374,-0.31429833,-0.03241216,0.0634465,0.29794478,0.24450275,-0.37151912,0.34613377,-0.054430205,1.4027814,-0.16246517,0.10340228,0.10817593,0.6005546,0.22012493,-0.15396936,0.16867612,0.31923416,0.18416883,0.13304308,-0.48995632,0.09616183,-0.2678034,-0.5717667,-0.0923818,-0.26445022,-0.45682177,0.14216475,-0.51498306,-0.046273656,-0.0876865,-0.5949361,0.5581199,-2.7381704,-0.07142062,-0.08965266,0.31265646,-0.19618113,-0.47894627,-0.12071464,-0.49447563,0.3387349,0.32892013,0.42459437,-0.65031546,0.16238403,0.4713142,-0.49414888,-0.15594845,-0.6352445,0.07820402,-0.023600638,0.37670568,0.018045707,-0.14258479,0.33374983,0.069050625,0.54355055,0.14231081,-0.036438644,0.33937648,0.5124826,-0.20176676,0.2923627,-0.12031335,0.5451136,-0.11146451,-0.29512691,0.45764568,-0.45839462,0.52882105,-0.244536,0.178867,0.43633047,-0.36709628,-0.91875774,-0.52349365,-0.29927424,1.2163506,-0.081167474,-0.55174845,0.16809872,-0.38588524,-0.24884416,-0.28212413,0.7700209,-0.07157481,-0.07313913,-0.6310767,-0.078051396,-0.25525457,0.13046424,-0.103851244,0.03581751,-0.3878334,0.66820306,-0.17402817,0.4709932,0.17487553,0.33661792,-0.32829353,-0.49133712,-0.032999914,0.8710753,0.604493,0.09174713,-0.3294318,-0.267026,-0.29045147,-0.16500893,0.12156902,0.6575271,0.5582345,0.040206663,-0.010172054,0.36212152,0.10351243,0.09218203,-0.28940052,-0.16976348,-0.19747351,-0.054486204,0.6948293,0.4668695,-0.06831553,0.44865733,0.052984636,0.10508567,-0.41052678,-0.42284754,0.39070457,0.9996314,-0.22206162,-0.31719252,0.4617656,0.46664363,-0.25945893,0.309611,-0.8115285,-0.37618464,0.46278957,-0.21027449,-0.63037586,0.17147954,-0.2826552,0.026504355,-0.6452638,0.5077113,-0.13214128,-0.813168,-0.5412639,0.0001551594,-3.07462,0.1644228,-0.10114227,-0.20598945,-0.13006729,-0.19553566,0.12354156,-0.4705479,-0.4635844,0.03756396,0.06057248,0.7628941,-0.19751446,0.2614124,-0.2435516,-0.3578697,-0.3062134,0.26213074,0.056474056,0.5007362,-0.29144105,-0.11830594,-0.071244076,-0.19451945,-0.40271616,-0.058813162,-0.42669162,-0.4735916,-0.13194959,-0.36590067,0.08857882,0.6322748,-0.58376545,0.12114722,-0.28989148,0.023936927,-0.10644727,0.2437422,0.18788452,0.004149735,0.15091954,-0.19395669,0.26817563,-0.36262026,0.5373756,-0.0042071617,0.37513724,0.5373293,-0.07904589,0.352233,0.5748685,0.6757239,-0.055186328,0.983305,0.21759531,0.012560283,0.23874941,-0.06445713,-0.1368801,-0.49251518,-0.19674085,0.19591506,-0.47899482,-0.41552734,-0.24061538,-0.3552454,-0.9238896,0.34881133,-0.07629574,0.49156052,-0.15273952,0.38447922,0.6947958,-0.37324238,-0.08801158,0.08118105,-0.13198808,-0.4729416,-0.38206527,-0.5064143,-0.5207893,0.1472574,0.9037506,-0.1986219,-0.0029346645,0.15412319,-0.3402303,-0.011078788,0.008990569,0.22345166,-0.13011037,0.3152404,-0.051179375,-0.5922244,0.45926142,-0.27379104,-0.16605835,-0.5762952,0.24037568,0.52456874,-0.39265132,0.25644803,0.4766732,0.06635459,-0.1696279,-0.62432045,0.08500564,-0.05072562,-0.3316237,0.17735325,0.3578809,-0.7006777,0.3760793,0.17195527,-0.08701564,-0.7235127,0.59670794,0.01784491,-0.08372557,-0.022117985,0.4117059,0.30248767,-0.21573012,-0.0959689,0.2976561,-0.49299553,0.31413403,0.13263077,0.047694054,0.20344356,-0.25025088,-0.25632933,-0.7224614,0.10569424,-0.5308127,-0.1930995,0.29526716,0.08274005,0.30228066,0.053385664,0.03879651,0.34737176,-0.4292333,0.12885448,-0.16634312,-0.2351127,0.503069,0.40224808,0.71100396,-0.38525876,0.6376544,-0.004260685,-0.03406895,0.32878447,0.22503975,0.4909437,0.08898743,0.38406894,0.1065733,-0.24438201,0.101520464,0.7511659,0.37307236,0.34927586,0.07621511,-0.28530508,0.20787095,0.09859664,0.19800673,-0.21744187,-0.61333865,-0.1272576,-0.251319,0.1519892,0.43130976,0.0447846,0.2996793,-0.18757375,-0.15111427,0.19640441,0.15589666,-0.09234897,-1.0354626,0.31936178,0.23141786,0.9026707,0.09526704,0.054727603,0.11708438,0.65647465,-0.07730664,0.055959105,0.419169,0.1893741,-0.46295983,0.3945951,-0.76986045,0.6685712,-0.042510025,-0.06332167,0.12092904,-0.14261213,0.3846994,0.7896166,-0.25341195,-0.067868516,-0.03725695,-0.40493613,0.027374784,-0.45857558,0.1833169,-0.572141,-0.20265137,0.6615134,0.5245567,0.3716043,-0.10858928,0.09088548,-0.0048397803,-0.09517306,0.17399934,-0.06015625,0.23737101,-0.293648,-0.53826755,-0.14759734,0.4267361,-0.10549406,0.17229761,0.042524196,-0.15768513,0.17768432,-0.12528573,-0.040881343,-0.037714906,-0.5879017,-0.09230624,-0.22285388,-0.71939754,0.36789012,-0.18621352,0.34944916,0.30144817,-0.040562633,-0.15137498,0.39124113,0.3482731,0.7957625,-0.031427015,-0.052462433,-0.49075645,0.18727216,0.20875494,-0.32767752,-0.18781064,-0.010623008,0.17509262,-0.5636366,0.20064792,-0.32633302,-0.26707986,0.11081201,-0.21997876,0.08684117,0.5739055,-0.051093467,-0.17419569,0.19253577,-0.16228838,-0.32911077,0.01699181,-0.108351305,0.19226635,0.086198784,-0.32900694,-0.10802049,-0.24283741,-0.11534829,-0.075862,-0.06367158,0.3787634,0.4917529,0.038243633,-0.23100066,-0.058661234,0.21730728,0.5812443,0.0989251,0.048260517,-0.19108412,-0.49665314,-0.4535802,0.27757177,-0.01700787,0.29508758,0.2844067,-0.33163843,0.5931426,-0.14805238,1.0092539,0.0076286155,-0.47063664,0.069626145,0.50199527,0.0020487309,-0.09430838,-0.38712135,1.0380834,0.4266176,-0.026201997,-0.032515295,-0.14149354,0.1824223,0.29306588,-0.2647093,-0.19202371,0.11345636,-0.6724326,0.004312098,0.23744187,0.23911107,0.06401263,-0.16864038,-0.06853627,0.3545489,0.07762802,0.19741793,-0.4814958,-0.27436414,0.36189818,0.2856215,-0.13055731,0.13410883,-0.35617644,0.32053822,-0.6421294,0.0020547765,-0.44887942,0.21937771,-0.28754896,-0.36290503,0.3217473,0.06045222,0.49714836,-0.18855517,-0.35669348,-0.34346884,0.29450044,0.15108122,0.13435735,0.17637973,-0.20837612,-0.10733586,-0.05268722,0.47983763,1.2293795,-0.21574366,-0.0040508998,0.39263338,-0.4759747,-0.51927084,0.36783323,-0.6378953,0.2727372,-0.06836301,-0.17843498,-0.34595484,0.29924157,0.2579493,0.13908848,0.04108407,-0.7464605,-0.10583951,-0.16493861,-0.46348116,-0.22550704,-0.3470175,0.03140178,0.5981932,-0.37231627,-0.28639403,0.005317888,0.52848107,-0.09706293,-0.5076405,0.31386334,-0.24958776,0.10868321,-0.06473434,-0.47311395,-0.1891334,-0.1038153,-0.3739765,0.14655243,0.13653708,-0.46916267,-0.009574264,-0.19377889,0.19771184,0.77338374,-0.23633425,0.18471763,-0.6174657,-0.55185807,-0.81396633,-0.5688871,0.10966432,0.20135958,0.042844355,-0.60674375,-0.08318954,-0.27025825,-0.19216745,-0.15572385,-0.39712855,0.3867802,0.29508835,0.40113315,-0.29930946,-0.80919474,0.26357558,0.038674586,-0.1835809,-0.62675846,0.4547002,-0.006576121,0.9041448,0.14425753,0.07011921,0.20181422,-0.616345,0.09843183,-0.035099473,-0.21622682,-0.81564707,0.26672867 +632,0.28476253,-0.29272214,-0.6586961,0.061589062,-0.5043722,0.062206466,-0.24787281,0.4132383,0.27185318,-0.19521976,-0.41791412,-0.15159772,-0.02760896,0.46334013,-0.14076556,-0.3794984,-0.23184772,0.23690014,-0.9113986,0.5049163,-0.4201922,0.25176653,-0.0021484394,0.53816,0.42812908,0.36090735,0.062339235,0.024738828,-0.4586011,0.09806994,-0.16848707,0.053354185,-0.55026394,-0.021900458,-0.34037828,-0.34898987,-0.17804694,-0.5170724,-0.3481697,-0.793026,0.36694634,-0.9694398,0.62918025,-0.26376125,-0.012169182,0.07601908,0.3109103,0.39478552,-0.28929994,-0.09160707,0.26067224,-0.24655704,-0.13369377,-0.19707523,-0.42016315,-0.29514095,-0.5160537,-0.084055774,-0.6310858,-0.16574173,-0.18211849,0.10582624,-0.25691876,-0.01725386,0.04198857,0.3586779,-0.438351,0.33145905,0.0989062,0.0735501,0.095447965,-0.5364916,-0.08389419,-0.26199678,0.5949182,-0.1775964,-0.29185244,0.49114904,0.2595456,0.08807526,-0.015485714,-0.069268025,-0.38830006,0.036057387,0.14529899,0.4407967,0.011716808,-0.40703678,-0.09525087,0.02342748,0.50878906,0.3990679,0.20657833,-0.17411572,-0.017127581,-0.2569197,0.022229375,0.7521954,0.4051461,-0.019748375,-0.29829973,0.3679324,0.71441597,0.4861038,-0.32382616,-0.25003627,-1.2040138e-05,-0.5855985,-0.09250023,0.1657208,-0.18070738,0.5106334,-0.04973412,0.24087413,0.8081818,-0.36023775,0.031448748,0.12823147,0.2529342,-0.1499234,-0.028159684,-0.25581774,0.12628679,-0.46568254,0.009215328,-0.10092989,0.42769256,0.17891152,-0.7132635,0.29182035,-0.65467435,0.120679736,0.009521879,0.47342992,0.7134857,0.70426273,0.5008507,0.628416,-0.04751569,0.29014698,-0.046704102,-0.42769837,0.055679142,-0.39047244,-0.032295775,-0.65018886,-0.17638819,-0.3906757,-0.2661174,0.12867175,0.5418996,-0.4257302,-0.08101777,0.020064453,0.74372154,-0.36233807,-0.20406991,0.87117624,0.99123985,0.88778955,-0.043264657,1.1624016,0.29186743,-0.25868425,0.18334766,-0.369939,-0.7288802,0.33690596,0.2617021,-1.2082311,0.5912028,-0.12604462,-0.06757461,0.04752603,-0.22727172,0.02262493,-0.059059348,0.11224848,0.1930813,-0.05153209,-0.1788336,-0.3633177,-0.18044905,0.018072665,0.1644804,0.2595699,-0.37626877,0.41548038,-0.057324678,1.5967368,0.07729929,-0.104399115,-0.0669707,0.73993427,0.1648281,-0.19627434,-0.37118992,0.49886373,0.3884678,0.14943624,-0.6166964,0.256542,-0.29392415,-0.443637,-0.23812963,-0.4101522,-0.25118622,-0.027874408,-0.32374397,-0.1822594,-0.15645736,-0.33192536,0.44192624,-2.4811332,-0.24180937,-0.030535122,0.39635095,-0.08510395,-0.23958881,-0.22448988,-0.49706045,0.2656676,0.12743534,0.50799274,-0.67322564,0.43632174,0.53762573,-0.6844565,-0.3415946,-0.65537536,-0.14219092,0.084669136,0.40279767,-0.2885125,0.067342885,0.26828638,0.053283036,0.5670894,-0.12197273,0.09032617,0.56898165,0.66264707,0.103774846,0.56893367,-0.056686353,0.58584887,-0.3477982,-0.25941524,0.26245594,-0.35455474,0.31963417,-0.15343797,0.10643216,0.7490618,-0.5379988,-0.97837514,-0.5058474,-0.102883376,1.068446,-0.25921205,-0.36374244,0.101977415,-0.6291116,-0.1243344,-0.08903625,0.70498705,-0.18722175,-0.08327041,-0.6546659,-0.07332379,0.0029080908,0.17039378,0.0892447,0.056511912,-0.16470224,0.5941935,-0.0043562204,0.3321235,0.14063783,0.18974149,-0.5823835,-0.48209575,0.30134353,0.66737264,0.12283859,0.055162553,-0.18621789,-0.30269945,-0.27738512,-0.15166691,0.11812202,0.44391724,0.5052074,0.0003134807,0.3223456,0.3355169,-0.14332075,0.024316542,-0.2745469,-0.23223482,-0.18986024,0.1860828,0.37280533,0.9334788,-0.123853855,0.88994426,-0.16718377,0.14647467,0.009549518,-0.6046323,0.8136711,0.86041874,-0.25326967,-0.16618443,0.47357428,0.52716786,-0.447705,0.44006643,-0.625427,-0.19799733,0.7244914,-0.21064542,-0.44387922,0.27078187,-0.1613644,0.027227625,-0.80614716,0.22641174,-0.29521778,-0.37606874,-0.38236102,0.12819166,-2.2296228,0.15342471,-0.1277199,-0.4536744,-0.32427427,-0.2199444,0.033125903,-0.6229311,-0.6502718,0.17567623,0.12758592,0.79295635,-0.07414394,0.1514238,-0.13407691,-0.37296608,-0.16506483,0.09839041,0.18243825,0.4671147,-0.32850304,-0.5617538,-0.09480634,-0.07366762,-0.5985692,0.065961964,-0.5317822,-0.35120964,-0.115008324,-0.65141886,-0.30992025,0.6861625,-0.5116692,-0.038107295,-0.23253171,0.094845146,0.092129,0.34682953,0.13001202,0.15473814,0.326313,-0.058543365,0.23336297,-0.17653692,0.39340022,0.03559268,0.2666386,0.057455804,0.030876277,0.46604526,0.36914423,0.88788825,-0.21308656,1.063563,0.3276874,-0.19108935,0.22438948,-0.32876042,-0.23216839,-0.58485764,-0.20273228,0.069522716,-0.34207654,-0.5151139,-0.0058802613,-0.35317957,-0.8741162,0.63716304,-0.12800126,0.26918048,-0.018764736,0.3609194,0.47011158,-0.3241354,0.07832948,-0.15016794,-0.15266536,-0.5494656,-0.29816878,-0.49429548,-0.5307787,-0.051331848,1.0243341,-0.33296812,0.039240256,0.005435427,-0.5456241,0.15585192,0.14324269,-0.20300543,0.31331494,0.16611783,-0.13698928,-0.6229895,0.22245729,-0.046265546,0.007687827,-0.55837137,0.1953597,0.6584453,-0.62848824,0.46902952,0.27658978,-0.18070002,-0.2931578,-0.40215275,-0.12748362,-0.08879694,-0.09530154,0.25247872,0.44826904,-0.7926383,0.3886492,0.19020641,-0.5214421,-0.73907495,0.4308138,0.038669754,-0.21726926,-0.08890126,0.31457096,0.19798954,-0.043843728,-0.6207456,0.17148608,-0.1823303,0.25585362,0.03655827,-0.04621007,0.01312833,-0.105101086,-0.36776876,-0.73345083,0.3824961,-0.20226157,-0.30875865,0.55219847,0.010385687,0.2062309,0.16658121,0.3189172,0.15591402,-0.27713677,-0.037391443,-0.12319633,-0.34357965,-0.027340084,0.38984442,0.5360162,-0.51790214,0.5135659,0.018319009,-0.30805346,0.41352287,-0.0049243444,0.35464695,0.13243832,0.32816446,0.3744751,-0.42403278,0.29490057,0.6917985,0.22541766,0.50135523,0.14010602,-0.09440426,0.21199779,0.026243245,0.39193416,-0.07084359,-0.49005303,0.18398185,-0.14451395,0.15326692,0.47707748,0.113793015,0.28107902,-0.032805115,-0.27669948,0.012802042,0.1380319,0.14895125,-1.5015448,0.23216777,0.35153428,1.0116833,0.35824975,-0.016038755,-0.11516293,0.82179576,-0.23482643,-0.008275342,0.62089187,0.13627595,-0.5603094,0.66098696,-0.6630971,0.6448292,-0.045140807,-0.065249644,0.21283613,0.08345276,0.36171404,0.91225106,-0.21890773,-0.03782138,0.22211762,-0.24636094,-0.08981439,-0.30973825,-0.020372232,-0.7315108,-0.30443016,0.78501487,0.2730128,0.34260508,-0.13671081,-0.070643015,0.025666445,-0.23821263,0.2366154,0.0679995,0.15680666,0.04875633,-0.66785336,0.03339532,0.40715012,0.04229437,0.26106223,-0.03231411,-0.22593047,0.08062837,-0.39837363,-0.04872681,-0.10014484,-0.91387254,-0.056164812,-0.21084283,-0.58989924,0.39739132,0.024607101,0.09561474,0.30913258,-0.0035872806,-0.3284691,0.666089,0.23064272,0.9066558,0.032680262,-0.17489706,-0.122312814,0.35468844,0.2917979,-0.2144094,0.18660973,-0.1845656,-0.09706775,-0.45742044,0.71566576,-0.03336237,-0.57765025,0.006532104,-0.20521636,0.08224826,0.5808318,0.02021502,-0.09237933,-0.22284405,-0.2402793,-0.5750117,-0.08582002,-0.29700992,0.118147224,0.45184803,-0.066242196,-0.313583,-0.00961676,-0.042252082,0.6160488,-0.16313118,0.64475274,0.29472655,0.29440188,-0.18730374,-0.16835727,0.17785303,0.68652034,0.10385878,-0.09931862,-0.6099276,-0.1811571,-0.34502256,0.36184415,-0.110001825,0.15590712,0.19763489,-0.34010717,0.81994146,-0.21488094,1.2196888,-7.331371e-05,-0.40054765,0.3380586,0.47319877,-0.023384163,-0.06748185,-0.37949893,0.8102601,0.34145334,-0.026664311,-0.11558596,-0.47413445,-0.09453404,0.30941823,-0.35206208,-0.25292265,-0.022821898,-0.45200154,-0.37692943,0.34171107,0.11813035,0.18014772,-0.18709175,0.24977273,0.29339057,0.08657459,0.16747338,-0.5081455,-0.20374669,0.3496044,0.3139551,-0.13238502,0.24118012,-0.41706967,0.43209028,-0.53715813,0.17603713,-0.3568648,0.24734606,-0.24801446,-0.3891511,0.13673772,0.31313804,0.42959437,-0.21488172,-0.2901122,-0.37478253,0.5418791,0.04234147,0.29059365,0.36628485,-0.3189355,0.11155996,-0.09797149,0.44839588,0.94355756,-0.38748765,0.06218639,0.30012745,-0.5135603,-0.6298744,0.5859906,-0.50128824,0.071079575,0.062218446,-0.12679623,-0.48983338,0.22512646,0.16521649,0.2807152,-0.14354058,-0.5715391,0.014387965,0.24078232,-0.17771254,-0.124737225,-0.2678477,0.1791352,0.675831,-0.17098849,-0.23826575,0.13608114,0.34257686,-0.19727986,-0.12216863,-0.09473645,-0.26339307,0.40376195,-0.15658306,-0.3715086,-0.21154113,0.008795033,-0.4865617,0.1347708,0.036639094,-0.4610741,0.086235255,-0.115235336,0.014735997,0.9328356,-0.47240868,-0.05256805,-0.3408337,-0.52853316,-0.81445307,-0.3042786,0.029448926,0.22778906,-0.15518199,-0.7258745,0.21366608,-0.17016791,-0.4713103,0.105541624,-0.6448939,0.29016647,0.08570961,0.2891827,-0.29978454,-0.9637027,0.24781375,0.20282662,-0.28642288,-0.7796877,0.55904835,-0.14343393,0.8542225,0.027594678,0.039915975,0.13021447,-0.21243131,0.02093924,-0.26907152,-0.0473603,-0.52199596,0.0672883 +633,0.44553918,-0.2590806,-0.5135868,-0.062584065,-0.48091412,0.035316512,0.00899025,0.40238282,0.2347276,-0.29008693,-0.10655098,0.004047936,-0.10395589,0.29267323,-0.196265,-0.7688507,-0.14438777,0.2674494,-0.5992273,0.76594263,-0.16347009,0.26290333,0.0888797,0.42107075,0.22320575,0.21356039,0.026049966,0.01963461,-0.2164329,-0.0725698,-0.196281,0.0119069815,-0.81174606,0.47136948,-0.24035262,-0.37809497,0.01735723,-0.32480124,-0.34966576,-0.80496335,0.3638916,-0.6332653,0.70042634,-0.17889825,-0.4873772,0.073353246,0.10521958,0.31398186,-0.33035257,0.0030587912,0.06953145,-0.31049317,0.0018467036,-0.24079928,-0.29888085,-0.2832773,-0.561422,-0.12627842,-0.47830355,-0.050182126,-0.14037357,0.12847124,-0.4131649,-0.13631961,-0.23621134,0.5865707,-0.53244394,0.26221803,0.37020463,0.059305772,0.3926407,-0.6845852,-0.19949402,-0.20208521,0.01482988,-0.016290653,-0.25734362,0.49795142,0.1480949,0.43851125,0.09221175,-0.27799648,0.077668816,-0.14132999,0.17606604,0.35896707,-0.14061953,-0.16369237,-0.26713303,-0.12471447,0.43940875,0.41008523,0.051594928,-0.38724458,0.1724855,-0.15275677,0.03130499,0.25657132,0.39457753,-0.050071184,-0.20932601,0.18489467,0.39468324,0.21115676,-0.18539563,0.11937897,0.03838311,-0.34686887,-0.35895362,0.17535053,-0.28847378,0.5870693,-0.08877331,0.22753763,0.6752516,-0.27240133,-0.017507136,0.051311776,0.30920464,-0.105904646,-0.42857906,-0.2617946,0.21657468,-0.80345154,0.1977199,-0.36657837,0.61894894,0.20455338,-0.5558121,0.11963554,-0.6730532,0.19523558,-0.07965341,0.62717164,0.78073883,0.5887589,0.16960667,0.93696016,-0.5466244,0.06913432,0.2278728,-0.21872172,-0.04985274,-0.33257142,0.16296427,-0.55456656,-0.13483901,-0.11303821,-0.058674373,-0.21152896,0.054880455,-0.4887114,-0.24348569,-0.036976334,0.705783,-0.3690811,0.15633723,1.1072701,1.0963553,1.296248,-0.021690173,1.4633248,0.29140332,-0.28510788,-0.089304306,0.063390546,-0.66617626,0.1227339,0.43885425,-0.7645328,0.40629146,-0.0045845914,0.10246341,0.30624482,-0.41751766,0.16558744,-0.15348376,0.34147638,-0.1490104,-0.2122313,-0.5947773,-0.2698431,0.13156797,0.1967381,-0.2802473,0.2823716,-0.17892548,0.73207796,0.19561,1.15578,0.02422126,0.005995913,-0.089339264,0.29980582,0.2755346,-0.18158211,-0.04910244,0.1758093,0.45835292,0.17491645,-0.5285878,-0.0562816,-0.32534474,-0.38888758,-0.24761114,-0.2670694,0.15246853,-0.40966615,-0.29662234,-0.36019808,-0.123656705,-0.27608514,0.40349463,-2.3588986,-0.19539313,-0.26718462,0.13587326,-0.14917049,-0.14429758,-0.10300849,-0.43545446,0.35903594,0.33609724,0.34861004,-0.75625426,0.26777253,0.56196856,-0.589617,0.09483803,-0.5354293,-0.29367045,0.09099546,0.33281717,-0.055573657,-0.06618099,-0.0652241,0.07765773,0.67298913,-0.10095064,0.073515795,0.1831151,0.3036391,-0.2470971,0.3144358,0.13175727,0.43967497,-0.40419263,-0.079000235,0.35869426,-0.33252385,0.21141046,-0.050536264,0.13842212,0.6706016,-0.6275292,-0.50558627,-0.63536143,-0.4442644,1.1473597,-0.34870273,-0.52464575,0.22261772,-0.46781436,-0.17687486,-0.040833194,0.34078443,-0.11713336,0.061661743,-0.6587646,-0.05306523,0.0128698535,0.19773509,-0.038231436,-0.002478227,-0.27782068,0.6548384,-0.050248895,0.40894833,0.62807906,0.26082203,-0.265028,-0.48652717,0.030023368,0.8604641,0.6985193,0.07945902,-0.17469898,0.0063209045,-0.24701619,-0.24334575,0.21019417,0.48212606,0.8609899,-0.26301578,0.1514648,0.5153347,-0.18647613,0.14297135,-0.022111893,-0.5500527,-0.16971539,0.14133658,0.45077574,0.6750926,-0.07107659,0.41533107,-0.09790833,0.25685996,-0.04782953,-0.72455806,0.74919724,1.0747199,-0.23161998,-0.2548277,0.74101025,0.5108015,-0.5244922,0.58770347,-0.36832377,-0.20136715,0.71169204,-0.014833117,-0.5372901,0.00013325432,-0.388044,0.05378357,-1.1062613,0.2248786,-0.46315116,-0.63437057,-0.6960233,-0.09861097,-3.2017312,0.20601188,-0.3982177,-0.108596995,-0.30939656,-0.19207263,0.17845482,-0.58294815,-0.7282354,0.18777595,0.2102193,0.5290999,0.033912078,0.13417588,-0.10728474,-0.42435315,-0.31002218,0.17672205,0.16175891,0.021540523,-0.40496838,-0.6281917,-0.07651353,-0.27177188,-0.6306904,-0.08613659,-0.59259206,-0.44344798,-0.23960438,-0.78279495,-0.37924308,0.9114721,-0.07073597,-0.035141543,-0.26582098,-0.095189124,-0.105549574,0.28714085,0.01617887,0.2908182,0.12624635,-0.01131679,-0.043647457,-0.3571272,-0.06639142,0.22079195,0.404424,0.23996949,-0.31910574,0.3187079,0.5222858,0.73838353,-0.09578121,0.9218717,0.17849752,-0.2506595,0.46820256,-0.3205826,-0.42482662,-0.91998863,-0.41712734,-0.16851223,-0.43286783,-0.4282935,0.1388177,-0.30835184,-0.79293215,0.4494004,0.14630121,0.50733817,-0.13227068,0.15207444,0.38630608,-0.15312952,-0.053114176,-0.1968491,-0.32728812,-0.51015943,-0.25757667,-0.882959,-0.5868717,0.10374024,1.3308952,-0.013555416,-0.065722376,0.15915665,-0.539369,0.31971893,0.2678893,-0.11954248,0.1186518,0.3930851,0.031213766,-0.88830924,0.35514924,0.42349803,-0.053331826,-0.53938955,0.10850306,0.93482375,-0.6918271,0.5554768,0.28926837,-0.062438782,-0.2609327,-0.6081199,-0.109306164,-0.16915056,-0.20887698,0.6094001,0.33782756,-0.43219054,0.4077132,0.23300928,-0.108224414,-0.5797352,0.44339415,-0.08892114,0.056524266,-0.017892465,0.42703715,-0.09293067,-0.05069463,-0.10228415,0.42868984,-0.5106008,0.43280622,0.20308542,-0.13114366,0.1750573,0.062506475,-0.39396957,-0.8944107,0.16825281,-0.59098387,-0.31194627,0.30997035,-0.053999685,-0.1457732,0.09992836,0.24629603,0.3246248,-0.16151677,0.14464942,-0.13578334,-0.4941075,0.4767315,0.52842516,0.41910413,-0.48062542,0.7168036,0.19399957,0.0070862393,-0.28152463,0.2531923,0.3491458,0.5385209,0.4377929,0.044379905,-0.20537853,0.15835418,0.49743098,0.1974652,0.45664003,0.18728171,0.005554305,0.26413298,0.19418278,0.32503292,0.045201574,-0.16264772,0.17661588,-0.109542936,0.082904704,0.516523,-0.0062997057,0.3160667,0.02663402,-0.16251186,0.07849803,0.07256177,0.003818821,-1.4278592,0.37525558,0.34270337,0.76995444,0.70826566,0.04906893,-0.0036074668,0.5363087,-0.28249577,0.11166409,0.5027724,0.08749693,-0.32956594,0.75259596,-0.6826265,0.50542575,0.10711444,0.05203543,0.19052882,0.11778762,0.4004092,0.9353249,-0.10409799,-0.05145751,-0.1298344,-0.29676986,0.19923444,-0.4248391,0.012559253,-0.42338488,-0.47821015,0.5227653,0.46102762,0.29221448,-0.36604473,-0.045988306,0.15033631,-0.25300914,0.41354266,0.06946296,-0.043909546,-0.15013354,-0.51590985,-0.22115165,0.43603423,-0.2147766,0.16224109,0.22989774,-0.2190961,0.22878903,-0.05073329,0.0025500385,0.062819235,-0.86261404,0.03573549,-0.14303724,-0.29953337,0.5557589,-0.47628233,0.1625616,0.09256831,-0.023748307,-0.34937608,0.072543584,0.041777525,0.6515596,0.03840544,-0.30011633,0.040403973,0.28245136,0.24932688,-0.30385044,0.2618728,-0.0772455,-0.09242485,-0.5549813,0.51317334,-0.096342824,-0.19914137,0.18327112,-0.12689166,-0.082940504,0.40589234,-0.13406496,-0.07585609,-0.23539214,0.007815816,-0.30226347,-0.33616382,-0.3483059,0.24136502,0.11576185,0.2631628,-0.107777566,0.034721196,-0.069708355,0.359138,0.021964313,0.11593237,0.09327212,-0.24990441,-0.7101333,-0.037753213,0.04059849,0.23276724,0.17145425,-0.13496958,-0.081715174,-0.14401516,-0.28050458,0.20872016,-0.25433624,0.2743702,-0.035917245,-0.38599208,1.1061567,0.2038758,1.4122754,-0.058436085,-0.35391453,-0.10157636,0.54299575,-0.19165438,-0.04157325,-0.12242473,1.1857104,0.65200096,-0.105894685,-0.19641238,-0.5426525,-0.011483323,0.35078645,-0.20157628,-0.37839898,-0.063577205,-0.6573254,-0.36414817,0.23072915,0.26673123,0.05893677,-0.038034853,-0.1444325,0.41130266,0.12635258,0.40918544,-0.37820664,-0.039208435,0.36710748,0.1553703,0.07763935,0.30582038,-0.4105028,0.31552958,-0.7751097,0.39614782,-0.19475217,0.109717734,-0.27432668,-0.2939225,0.16031794,0.011890867,0.38358843,-0.39961395,-0.28090352,-0.35415515,0.6137744,0.15831405,0.22327846,0.94070905,-0.2805969,0.014086019,0.1592285,0.2148108,1.0696687,-0.12489009,-0.17290884,0.16135822,-0.59589285,-0.76765305,0.23653144,-0.24843735,0.11725409,-0.14195642,-0.38209847,-0.4579523,0.08221582,0.05690993,-0.0065075187,-0.017264841,-0.54765266,-0.075091854,0.3254188,-0.3145743,-0.2032054,-0.4021905,0.28434768,0.41709015,-0.228131,-0.33495757,0.10598004,0.12915999,-0.4084563,-0.55447215,-0.1274887,-0.33445692,0.38311443,-0.048980918,-0.4293339,0.13119787,0.23225184,-0.58880824,0.06552164,0.22545844,-0.3696237,0.014636484,-0.09774718,-0.27988026,0.99611247,-0.21164869,0.17081276,-0.50788313,-0.610504,-0.7091741,-0.29809645,0.35131642,0.40176746,0.15445615,-0.78462833,0.041260052,-0.19232507,0.20589618,0.08467873,-0.43636894,0.3156624,0.27344733,0.31016326,0.0483487,-0.7890266,0.28458503,0.25551146,0.06363239,-0.38603246,0.64297485,-0.16455571,0.6484716,0.123124786,0.10390899,0.15652299,-0.66760486,0.26080945,-0.10893993,-0.39873132,-0.3058569,-0.12619954 +634,0.39726117,-0.16520433,-0.47310308,-0.1309802,-0.3053003,0.067909434,-0.07420781,0.67216164,0.31355268,-0.2966989,-0.21808667,0.0011788766,-0.053188723,0.33006632,-0.18066102,-0.5912941,-0.01493779,0.17534848,-0.47195008,0.639658,-0.40834844,0.32219175,-0.11401783,0.5249088,0.23620541,0.19843367,-0.065896295,0.12086687,0.08225297,-0.13464017,-0.03865131,0.41979367,-0.4230652,0.112414084,-0.23714057,-0.5075053,-0.07477486,-0.30441415,-0.46562907,-0.79786164,0.21032105,-0.702286,0.6696624,0.11442685,-0.34859154,0.0034318487,0.08598648,0.3311971,-0.21938697,0.10247866,0.013156891,0.00653464,0.008995243,-0.1657487,-0.3041757,-0.42132,-0.6364392,-0.13909858,-0.45911497,5.3115687e-05,-0.2071211,0.23904501,-0.20496108,-0.08389605,-0.13743526,0.43330383,-0.45260936,0.15776621,0.17132936,-0.12768047,0.17467573,-0.660396,-0.25053322,-0.021919187,0.18323661,-0.15336227,-0.39338362,0.31657556,0.28595093,0.33862844,-0.094522685,-0.16199562,-0.32085755,0.0025031886,-0.13212924,0.5477765,-0.3002498,-0.3936639,-0.22621666,-0.036565542,0.6082316,0.39317593,0.053233847,-0.27488562,-0.14938353,-0.14419055,-0.20120424,0.4561947,0.61475253,-0.2340162,-0.13411781,0.365998,0.4234652,0.3112182,-0.19493242,0.13620707,0.0076241693,-0.55879223,-0.07848236,-0.052568123,-0.1853742,0.4476761,-0.051234167,0.12979253,0.5694436,0.06066062,-0.108911596,0.0854489,0.1510546,-0.09384167,-0.2854931,-0.45652482,0.27972144,-0.42914313,0.24225393,-0.23582767,0.55828947,0.0038625677,-0.59908885,0.27978358,-0.63485724,0.15117577,0.010934212,0.47380894,0.72109073,0.53414243,0.19824249,0.6012452,-0.26177981,-0.014566281,-0.014359653,-0.09890429,0.09449165,-0.105110124,-0.14205363,-0.48988917,0.108824536,0.008333746,-0.14836644,0.4688109,0.47005495,-0.6793636,-0.14388223,0.08997836,0.758949,-0.26639274,-0.025102245,1.0157987,1.071088,0.8214255,0.020634007,1.0913824,0.23438995,-0.13816354,0.00817159,-0.3110687,-0.55293053,0.22917806,0.36042213,-0.5276057,0.38886756,-0.018372476,-0.21734434,0.4406783,-0.34817427,-0.14886348,-0.025949454,0.14121029,0.022779686,-0.21896854,-0.5028854,-0.2405719,-0.0048982026,0.06912418,0.24619684,0.25514513,-0.32764232,0.445387,0.02643436,1.2137372,0.049462628,0.040634807,0.14907509,0.43252957,0.3819373,-0.17128102,0.10052731,0.32384792,0.41846457,0.042268105,-0.431971,0.15611926,-0.29788834,-0.38804358,-0.037531033,-0.23012085,-0.25327283,0.03088777,-0.53021806,-0.13994876,-0.08038766,-0.051711988,0.41791305,-2.682457,-0.14214583,-0.19104776,0.32249445,-0.092055336,-0.32681638,-0.18033455,-0.43689096,0.44370562,0.35851878,0.5429398,-0.6752401,0.30615157,0.5507483,-0.6639446,-0.08421873,-0.6409323,-0.1373652,0.08368524,0.286996,0.020250598,0.031182019,0.2305327,0.28398302,0.5611101,0.019275943,0.16080703,0.32347742,0.42700014,-0.16912119,0.2999045,-0.0067353803,0.4814464,-0.33244964,-0.23277475,0.23699465,-0.40216252,0.19912784,-0.111539155,0.0723867,0.61465085,-0.47556323,-0.946331,-0.5308522,-0.04013828,1.0820119,-0.09192223,-0.47252136,0.14165297,-0.5060995,-0.23945837,-0.025563657,0.70475703,-0.20848042,-0.05005936,-0.7977955,-0.17005304,-0.12566815,0.22454993,-0.059913475,-0.03325016,-0.31495684,0.6104049,0.0064688763,0.5159347,0.32822233,0.22610618,-0.47263825,-0.61914426,0.14278479,0.669953,0.4906783,0.18236575,-0.22690244,-0.15176338,-0.21375038,0.10679865,0.116523035,0.6981525,0.49825478,-0.18423288,0.09790707,0.38079152,0.1573518,-0.02285531,-0.2836137,-0.21924902,-0.12178678,0.13888314,0.47157162,0.7934592,-0.229776,0.23498288,0.039194677,0.49832222,-0.27924067,-0.6126227,0.52028656,0.9550449,-0.31068102,-0.34534746,0.66296834,0.44746882,-0.10368948,0.45630664,-0.6907886,-0.24523668,0.461924,-0.08288921,-0.3847769,0.31940186,-0.3136597,0.20670967,-0.8668682,0.32436725,-0.30625707,-0.4856733,-0.6915904,-0.064758375,-3.066731,0.13299546,-0.2957771,-0.093972854,-0.20579518,-0.2902922,0.13775311,-0.7041094,-0.65050215,0.27211842,0.13546576,0.5110199,-0.16652432,-0.06277123,-0.18192773,-0.45540985,-0.18640545,0.24281836,0.24921481,0.45844734,-0.002728053,-0.5013157,-0.14798322,0.029730698,-0.5546979,0.0046076537,-0.6811066,-0.33065587,-0.1308563,-0.7121946,-0.02007701,0.55348724,-0.29409784,0.06839609,-0.26166067,0.050372664,0.05172531,0.20379446,0.19606747,0.14741199,0.07640572,-0.035142995,0.14767697,-0.21424434,0.31092727,0.067969844,0.054644473,0.2753091,-0.1433701,0.10858714,0.46686193,0.7182707,-0.24328277,0.8674924,0.47617996,-0.023835966,0.3546173,-0.23907448,-0.34353825,-0.657628,-0.26487634,-0.12515888,-0.36976737,-0.34933627,-0.16286182,-0.4483041,-0.8226003,0.5328671,-0.021058798,0.15877174,-0.03961622,0.120696194,0.51663935,-0.20188825,0.00011705359,-0.08861299,-0.16504751,-0.42606142,-0.29575032,-0.6093385,-0.3820228,0.14218503,1.0770032,-0.23208697,0.123142466,0.12320239,-0.14487438,0.019165868,0.20918776,0.0385882,0.09174187,0.37487835,-0.19125026,-0.5314751,0.22685733,-0.13000947,-0.46690625,-0.73651904,0.3211713,0.6555946,-0.6109558,0.610908,0.30363002,-0.026942601,-0.41830853,-0.5500255,-0.099932656,0.1760857,-0.11742959,0.5798927,0.24926968,-0.6856402,0.39775607,0.29440364,-0.32072908,-0.59137255,0.7169183,-0.14422578,-0.4217214,-0.099706315,0.42510286,0.18887584,-0.028778942,-0.10599975,0.1449944,-0.21475694,0.28592205,0.1138362,-0.24251503,0.4076093,-0.24543364,0.03181033,-0.973694,0.07669076,-0.49550676,-0.3169255,0.17909907,-0.14348151,0.05491804,0.04327261,-0.06486222,0.33142328,-0.26405576,0.14498994,-0.18962282,-0.2934722,0.3445774,0.45624098,0.50322723,-0.18971176,0.61046356,0.09347414,-0.06489953,0.07531055,0.24749976,0.42155218,0.029259972,0.47315773,-0.07458775,-0.09609414,0.29659215,0.68099827,0.21340998,0.20505565,0.17005157,-0.08797164,0.041298963,0.10510759,0.18131796,-0.21914127,-0.38406125,-0.02781384,-0.37880757,0.13503557,0.5185644,0.16704628,0.21742053,-0.041883405,-0.43144545,0.1290858,0.25042465,0.22235806,-1.5677516,0.23126908,0.22631389,0.79640985,0.38277638,0.2692026,-0.089314856,0.53049165,-0.2827644,0.04443095,0.4945995,0.19902293,-0.2738652,0.4838075,-0.6815518,0.54385465,0.06570435,0.046291836,-0.00926607,-0.0075271446,0.38601276,0.8453864,-0.067692,0.009899169,0.0355961,-0.2973457,-0.029974291,-0.27114168,0.115935184,-0.4586225,-0.3741179,0.77302235,0.4738535,0.35689735,-0.38129446,0.015718063,0.19035082,-0.07518109,0.0010928154,0.039056357,0.08742965,-0.27621138,-0.448922,-0.09507959,0.50776094,-0.039936464,0.07132555,0.090563945,-0.2953915,0.23028952,-0.12634462,0.14872204,0.036569778,-0.79605335,-0.14473157,-0.42233965,-0.39889345,0.54424226,-0.23751375,0.2321596,0.14688455,-0.0016347875,-0.37489128,0.4235206,-0.005775825,0.84483504,-0.0042652288,-0.055680156,-0.14563586,0.30441916,0.2672684,-0.1436034,-0.068656646,-0.27384678,0.176554,-0.44883394,0.31537044,-0.006238719,-0.3112174,0.025129234,-0.083041996,0.10373106,0.40521508,-0.20486537,-0.31067994,0.060589958,-0.06585918,-0.38183555,-0.3290079,-0.07387926,0.23331733,0.27281436,0.122773886,-0.024277082,-0.103054814,-0.1387664,0.42804858,0.029496344,0.37058428,0.43015358,0.08617425,-0.33701578,-0.005719348,0.1404043,0.47186995,-0.11655851,-0.13040449,-0.2262318,-0.5034668,-0.42130062,-0.0048424243,-0.15582074,0.31922573,0.060652874,-0.18851444,0.7258452,-0.061866794,1.0756735,-0.05432574,-0.50188017,0.16791086,0.49727,-0.023430578,-0.052844565,-0.18090588,1.0853488,0.64845186,-0.16111515,-0.09384956,-0.24672303,0.00056595803,0.2579182,-0.29149714,-0.13161065,-0.033435706,-0.58333904,-0.12396488,0.2012652,0.24713477,0.1337303,-0.11195612,0.03427411,0.24423712,0.063467376,0.23323509,-0.55299383,-0.0947735,0.22307625,0.33104923,0.048489504,0.083781525,-0.53513646,0.38999605,-0.3677948,0.08613469,-0.43506292,0.18762502,-0.2894099,-0.2604848,0.17383493,-0.116949014,0.33792263,-0.4606443,-0.33035436,-0.35380083,0.50559366,0.053079892,0.023138108,0.56881607,-0.27075627,0.089458995,0.09184766,0.54682773,0.98276806,-0.36677748,-0.13473186,0.3924907,-0.56699646,-0.5100653,0.20415539,-0.40926012,0.2322885,0.03266646,-0.14034203,-0.42997158,0.2313268,0.012486505,0.19225614,0.017822884,-0.6596762,-0.11116299,0.29062775,-0.26121363,-0.16964197,-0.45023742,0.23539896,0.5248598,-0.15927607,-0.52190703,-0.0041175503,0.15565933,-0.15242335,-0.60826,0.0939789,-0.23699537,0.3376522,0.06995846,-0.39596665,-0.11012853,0.036698792,-0.44839725,0.08754091,0.14211613,-0.29865283,0.08215151,-0.3389359,-0.08837329,0.938244,-0.31656298,0.19374943,-0.59628326,-0.44516098,-0.8136533,-0.40586898,0.35821375,0.4505817,-0.07940022,-0.9404711,0.080317855,-0.17063905,-0.2446169,-0.047803592,-0.18311357,0.5602112,0.17979033,0.4474598,-0.127402,-0.8037171,0.19407915,0.00025314986,-0.22436129,-0.5669787,0.554042,0.09164186,0.8280819,0.10502681,0.14181353,0.21068859,-0.6427778,0.07224801,-0.25831494,-0.20234558,-0.676339,0.10719843 +635,0.3504816,-0.07303807,-0.40722477,-0.20314376,-0.2006864,0.15821233,-0.11497805,0.3669505,0.13731225,-0.24981457,0.012765076,-0.22190234,0.13488741,0.6721775,-0.012102008,-0.5904887,0.10195456,0.15158473,-0.8352787,0.5546844,-0.38923132,0.36233297,-0.11151869,0.26149094,0.32846877,0.3314904,0.19871648,-0.209513,0.048407905,0.14808871,-0.24031736,-0.04792816,-0.3099719,0.07849414,0.00087274314,-0.14371465,0.030643377,-0.27977654,-0.53557473,-0.5738238,0.39756647,-0.69115144,0.36936647,-0.098290585,-0.22428153,0.19453265,0.07826892,0.3405865,-0.50875103,-0.095887296,0.1951547,-0.017288122,-0.04114093,-0.056419495,-0.26481408,-0.43309647,-0.4532443,0.002185446,-0.58861274,-0.2798215,-0.4194803,-0.025536507,-0.20286302,0.11262372,-0.031235533,0.15671529,-0.5353186,0.101655915,0.23266383,-0.1466821,0.00039422512,-0.43392906,0.06709518,-0.18123564,0.25941885,-0.056847926,-0.22592312,0.4782178,0.2032974,0.42826444,-0.06354942,-0.08925438,-0.18294708,-0.14556,0.087666854,0.46947682,-0.07614349,-0.37937087,-0.21089397,0.030106226,0.058006503,0.06801758,0.13657634,-0.39375365,-0.16939044,0.04134915,-0.19363464,0.3235745,0.35877848,-0.44907156,-0.27020633,0.43000492,0.48718452,0.2639955,-0.21773002,0.017916627,-0.010465604,-0.44315085,-0.18061092,0.034225073,-0.24916273,0.41285288,-0.15565768,0.30170307,0.74336225,-0.16036408,0.04272052,-0.16953005,-0.010932378,-0.19395371,-0.08660641,-0.09845731,0.012858014,-0.51276815,0.13252485,-0.014459219,0.7315299,0.29135817,-0.5946755,0.3929757,-0.49234003,0.29652965,-0.17179486,0.42965105,0.74428374,0.3648972,0.14363939,0.744421,-0.43708992,0.25814825,-0.04622727,-0.34513098,0.19572182,-0.2581462,-0.20471288,-0.56126994,0.056038175,-0.010692918,-0.22969219,0.10061563,0.42670146,-0.481083,-0.03319818,0.016598014,0.86245453,-0.37260374,-0.090678446,0.45282844,0.9073418,0.89823127,-0.03269718,1.0351179,0.39090756,-0.32940954,0.33846596,-0.42082658,-0.78052014,0.19132608,0.39361137,0.088475086,0.4347126,0.09469342,-0.088427976,0.26916316,-0.37343916,0.18850523,-0.096569456,0.10852562,0.008746815,0.033349574,-0.3402232,-0.2905055,-0.18175086,0.008975772,0.03390765,0.3050537,-0.2824625,0.33881563,-0.0126137175,1.9636328,0.10487851,0.046681907,0.023769872,0.68969893,0.21436383,-0.20714998,-0.31539997,0.30924928,0.46878487,0.0103849415,-0.66237885,0.09887376,-0.38021082,-0.5296989,-0.13714634,-0.42475623,-0.14095683,-0.040102843,-0.442245,-0.14838435,0.08701747,-0.28708154,0.4339603,-2.607593,-0.1769917,-0.18499568,0.3090142,-0.31816784,-0.19343136,-0.08610009,-0.35429776,0.2531615,0.34863707,0.44370562,-0.56387514,0.25536963,0.36965322,-0.46500534,-0.08329718,-0.4786927,-0.10819169,0.04845406,0.43404868,-0.1932156,0.019977119,0.04338658,0.2593884,0.4009512,-0.06402106,0.090185665,0.393164,0.26022428,0.19562343,0.37179402,-0.036430456,0.592485,-0.20178613,-0.059427164,0.268713,-0.08805973,0.4151839,-0.12062499,0.14203005,0.4133759,-0.4102301,-0.76311195,-0.42634103,-0.08016873,1.1346785,-0.43878788,-0.3565087,0.44535998,-0.37240615,0.032035075,-0.06288031,0.46546465,0.034548007,-0.21249555,-0.6201969,0.22920778,0.034642596,0.23753554,0.032045767,-0.06450457,-0.1565322,0.5350141,-0.0031896431,0.45606592,0.13597552,0.1823913,-0.09491901,-0.4720768,0.18941155,0.6931214,0.3201433,0.12586714,-0.23588692,-0.24554482,-0.4615366,-0.2743029,0.11844444,0.15071808,0.70241916,0.02056128,0.14767118,0.24384148,-0.18245293,-0.055346973,-0.15495259,-0.19098409,0.0943089,-0.052927677,0.54195696,0.61441004,-0.22254059,0.5662758,-0.060761612,0.16432601,-0.17090276,-0.57499224,0.6062519,1.0240626,-0.21684675,-0.16193867,0.40217772,0.3549988,-0.23373458,0.3508534,-0.65620685,-0.24615857,0.6576944,-0.1577051,-0.20407018,0.18473975,-0.3017363,0.20474097,-0.87634605,0.21113226,0.030168597,-0.34613788,-0.35577255,0.04436193,-3.50692,0.105254956,-0.24113068,-0.23246846,-0.062109884,0.07328663,0.17606662,-0.5155255,-0.46973857,0.008565799,-0.023121532,0.7218099,0.008230422,0.117839895,-0.21954621,-0.1594076,-0.37597984,0.077377446,-0.03839225,0.5073489,-0.12418263,-0.5384016,-0.058955573,-0.28182566,-0.41856855,0.09911003,-0.58539546,-0.36311504,-0.25646397,-0.49574533,-0.14745493,0.6882393,-0.171077,0.021516452,-0.12570596,-0.031562585,-0.14006376,0.20597915,0.40873927,-0.101963416,0.16583748,-0.053347457,-0.058380134,-0.39947847,0.14467905,0.054143712,0.37171063,0.27451965,0.18150528,0.1459261,0.5898483,0.6112299,-0.2594101,0.6616263,0.5672789,-0.19492008,0.26620954,-0.2814003,-0.13342252,-0.45445913,-0.31150976,-0.1709564,-0.32157108,-0.49925557,-0.07681116,-0.3008167,-0.7323334,0.30006245,-0.036001332,0.21283038,0.1410167,0.005063474,0.5089319,-0.17633067,-0.051089365,-0.026081506,-0.1886525,-0.6340471,-0.32173556,-0.6020876,-0.4233838,0.46109614,0.9550887,-0.22878869,-0.18216291,-0.12958662,-0.42172012,-0.05480821,-0.05908515,0.10423645,0.35405913,0.18285497,-0.30613154,-0.6902761,0.5993997,-0.048428137,-0.019556988,-0.5260588,0.18897662,0.44734007,-0.5493679,0.29962903,0.15478247,0.08508914,0.00881677,-0.40446022,-0.19408928,0.020528976,-0.21626496,0.19058858,0.059109014,-0.77270925,0.382726,0.23665349,-0.33505884,-0.59005344,0.58462125,0.02337148,-0.2612418,-0.08945877,0.21712098,0.031017026,-0.013396515,-0.36879832,0.21618465,-0.49948126,0.16360101,0.42022085,-0.025187327,0.19913778,-0.2307251,-0.20522282,-0.5459173,0.0963713,-0.33466357,-0.1516163,0.30205745,0.13191058,0.26837888,-0.013831234,0.10513585,0.2909952,-0.2595399,0.067054294,-0.10769639,-0.26056832,0.40580067,0.3738032,0.43971106,-0.41871223,0.65580404,-0.035897203,-0.04512273,0.22156614,0.09901209,0.3559621,0.2136085,0.29312977,0.15314965,-0.32524616,0.20437975,0.81203765,0.24758036,0.2990547,0.14280897,-0.21731052,0.18984228,0.20581502,-0.012306277,0.13167606,-0.42217973,-0.03303796,-0.08120367,0.24826027,0.49667463,0.27875277,0.3051701,-0.08257052,-0.315118,0.13039808,-0.019488156,-0.0016610732,-1.1898152,0.35653332,0.33411005,0.68939376,0.404441,-0.076431125,-0.086213425,0.6791161,-0.20352246,0.19397837,0.29914796,-0.15630384,-0.67646575,0.46793044,-0.66679865,0.7353858,0.035512112,-0.06184123,0.21002646,0.16980919,0.34191182,0.86585313,-0.08601846,-0.022065278,0.17184807,-0.46320418,0.15064472,-0.32302198,-0.07627754,-0.64272666,-0.3015328,0.48725665,0.34161976,0.15377162,-0.060367584,0.022547007,-0.0749983,-0.12994348,0.19379744,0.053899918,0.086326376,-0.13259038,-0.67332804,-0.40197012,0.36204472,-0.17903699,0.19992112,0.089702256,-0.13206309,0.23408593,-0.34189814,0.07538306,-0.09664823,-0.7279827,-0.076212145,-0.1835832,-0.39518872,0.4324533,-0.1935427,0.34380162,0.2108841,-0.045821052,-0.42483404,0.60053164,-0.05197023,0.76862943,-0.05247918,-0.27252138,-0.34331653,0.05255765,0.19610319,-0.22008501,-0.009803942,-0.24179745,-0.12802707,-0.6093487,0.4587237,-0.06368529,-0.33738598,0.020029861,-0.25954875,0.038791608,0.47651222,0.01320533,-0.18877332,-0.28191125,-0.09493734,-0.34483892,-0.14925458,-0.2373853,0.16427174,0.21637438,-0.08770941,-0.1836884,-0.14359777,0.12037905,0.44426215,-0.1672397,0.31713885,0.29168376,0.023669569,-0.26621592,-0.07041741,0.3382306,0.40861845,0.12680452,0.072989546,-0.21355037,-0.24191615,-0.3770974,0.009767797,-0.30755132,0.4395213,0.20778519,-0.36130095,0.59366226,-0.036306974,0.9789753,0.024435032,-0.3097078,0.22447284,0.45720062,0.21883075,0.029752195,-0.25729647,0.63519096,0.5270795,-0.0008054495,-0.31856394,-0.27534875,-0.17807296,0.34031785,-0.19159652,-0.25817126,0.15830572,-0.5577787,-0.16996805,0.27908656,0.22355537,0.38694528,0.019609679,0.044040862,0.09604392,0.049658872,0.25130945,-0.49872807,-0.25747606,0.36347607,0.098454475,0.11096361,0.21441874,-0.5531344,0.49379966,-0.5707846,0.021291407,-0.1817749,0.19792716,-0.17532913,-0.29976714,0.17549922,0.25775954,0.40336174,-0.212183,-0.25714433,-0.37846687,0.62287134,0.11258901,0.31349373,0.5723888,-0.28990003,0.089805536,0.06928773,0.39977136,0.9001842,-0.18542665,-0.009936238,0.29776153,-0.4302866,-0.6805439,0.39969188,-0.20019652,0.27579114,0.1505616,-0.14566593,-0.53825754,0.29418147,0.06394841,0.01386133,0.13937512,-0.5389932,-0.31924668,0.14185153,-0.224127,-0.29130167,-0.44721496,0.2321701,0.5187827,-0.40744117,-0.1596804,0.28085992,0.20972449,-0.13181558,-0.5848323,0.0067233485,-0.31489882,0.26885027,0.026109286,-0.34323806,-0.0087239025,0.08139253,-0.3845258,0.20349453,0.14470722,-0.49231455,0.10500751,-0.2713147,-0.030396223,0.9508837,-0.21333481,-0.0882893,-0.6592599,-0.4975963,-0.83807766,-0.45841178,0.560607,0.12118738,-0.004578018,-0.6272779,-0.03988618,0.010488713,0.013942933,0.012511814,-0.5065364,0.4568043,0.12275749,0.10562064,0.13739906,-0.8494444,0.11100402,-0.016293326,-0.25500706,-0.638765,0.45339096,-0.20229015,0.94212466,0.097714946,0.035642624,0.30201092,-0.4169827,0.03996394,-0.28642413,-0.20313992,-0.47415054,0.18742326 +636,0.49152008,-0.05316088,-0.5916343,0.15166458,-0.436827,0.2502527,-0.21306112,0.18248582,0.059649307,-0.42396995,-0.08959711,0.004219926,-0.15115318,0.70436424,-0.3048714,-0.6193181,0.13597962,0.21545874,-0.5336252,0.7664744,-0.26163623,0.48923692,0.19516833,0.15554479,0.13181658,0.21927282,0.20402828,0.112153254,-0.05223345,-0.15939309,-0.22357114,-0.015677989,-0.4000108,0.50758266,-0.22241864,-0.43820634,-0.06990715,-0.20618936,-0.2896281,-0.55789983,0.11318885,-0.77318615,0.7162963,-0.0346937,-0.3956243,0.05399675,0.2351825,0.19232376,-0.038297083,-0.06509431,0.01703057,-0.009432673,-0.13971959,-0.22584033,-0.16679965,-0.50569326,-0.47122878,-0.0027476507,-0.84845054,-0.14954884,-0.0745347,0.19095005,-0.25776103,-0.0135518825,0.059998572,0.096069574,-0.3799004,-0.02410446,0.15791677,-0.14158022,0.09571954,-0.64613426,-0.19223131,0.036950555,0.18067949,0.030222561,-0.20353584,0.34425616,0.15722768,0.60225993,-0.029163582,-0.13522653,-0.18927503,-0.025496705,0.14875185,0.61525536,-0.18808672,-0.14449434,-0.29595724,0.28470215,0.6675605,0.09574119,0.30512556,-0.35075527,-0.0064114267,-0.1589087,-0.057779122,0.34059194,0.4746979,-0.27598223,-0.099312834,0.36200905,0.5258179,0.31399664,-0.20858696,0.03435484,-0.09621775,-0.3241212,-0.11216193,-0.09469647,0.019434344,0.52076614,0.04893067,0.4186975,0.43375635,-0.018897815,0.14515983,0.16696544,-0.018036501,-0.2068334,0.12965865,-0.1414857,0.082316495,-0.45827156,-0.13814946,-0.027579715,0.66232884,-0.09998381,-0.7857648,0.3665536,-0.43414608,0.003750107,-0.06831908,0.4446745,0.73514444,0.337462,-0.08564057,0.75617415,-0.41904345,0.10170062,-0.03963355,-0.20358233,0.16710337,-0.14904928,-0.08792533,-0.6581579,0.032901157,0.03540211,-0.06357987,0.13403155,0.56347775,-0.67084134,-0.20993255,0.07481043,0.8423406,-0.3173587,-0.064098194,0.5964688,1.2815306,0.9249546,-0.031540107,1.0276101,0.311913,-0.02456605,-0.15186374,-0.21189985,-0.53052527,0.15843572,0.55414957,0.20559642,0.7984899,0.075243615,-0.02961023,0.4157215,-0.14824544,-0.13609181,-0.039544217,0.32162222,-0.004703688,-0.21050301,-0.6561972,0.0013136396,-0.020766543,0.08633917,-0.020909233,0.3725653,-0.37703213,0.34117386,0.061213613,1.7558147,-0.19471177,0.08370485,-0.037463434,0.25479722,0.3208882,-0.3379889,-0.068760104,0.13274999,0.15405367,-0.018435793,-0.37094983,-0.043266244,-0.26745722,-0.6088859,-0.21558496,-0.21994965,-0.28743982,0.060039308,-0.40960068,-0.1737846,-0.0030534694,-0.26344973,0.45985016,-2.6722534,-0.32069305,-0.17247303,0.35639378,-0.2880551,-0.35523728,-0.121129684,-0.16707622,0.3815966,0.32716125,0.38718066,-0.44214672,0.32820395,0.418964,-0.42133477,-0.20021819,-0.36528233,-0.015185603,0.13143203,0.5859252,-0.053373862,-0.15654819,0.13597092,0.37465382,0.41184726,-0.25248575,-0.021517415,0.40518767,0.38047343,-0.08819082,0.10152114,0.10255892,0.47288534,-0.24790023,-0.1957848,0.37849385,-0.16468407,0.47083944,-0.0070991814,0.28862146,0.33851528,-0.340638,-0.7582836,-0.47653344,-0.10004787,1.0382155,-0.24253069,-0.6097841,0.20268907,-0.17625865,-0.3046318,-0.064076565,0.22116037,0.024631811,-0.0041714055,-0.7733117,0.09044202,-0.060012598,0.25146678,-0.0093245525,-0.11104865,-0.35933867,0.710857,-0.05339088,0.49881586,0.23986149,0.48618603,-0.15726349,-0.34768078,0.13947938,0.9780079,0.69581175,0.01663259,-0.19454412,-0.21875568,-0.26489285,-0.1302013,0.1799593,0.3731822,0.7031662,0.1323794,-0.030239705,0.2675067,-0.055440366,0.059705194,-0.00027265932,-0.37933087,0.096971795,-0.030120304,0.50485116,0.65089595,-0.12686028,0.62537205,-0.115775526,0.2799439,-0.21689253,-0.64549404,0.48384458,0.6676901,-0.15671597,-0.30808768,0.4956429,0.38723263,-0.17420615,0.46149984,-0.8123633,-0.46164614,0.3940862,-0.074402764,-0.3381667,0.20841311,-0.23230508,0.17307055,-1.0056307,0.39766455,-0.183464,-0.44312218,-0.5223726,-0.2108167,-2.313912,0.07143001,-0.16267036,-0.17296581,-0.13841283,-0.1120797,0.23980634,-0.70182717,-0.60015804,-0.040080447,-0.041561045,0.548296,-0.02892364,0.20387636,0.08233355,-0.57176095,-0.061395653,0.3211723,-0.035774656,0.26411542,-0.17434214,-0.3081687,-0.23230569,-0.2436218,-0.2718808,0.11468245,-0.65543544,-0.6351584,-0.35413557,-0.20277032,0.06537883,0.7916457,-0.3342454,-0.07333411,-0.34636825,-0.003778068,0.148237,0.19301485,0.29857752,0.04933093,0.20931053,0.04004165,0.029940614,-0.49352172,0.11507421,0.19755873,0.482977,0.6741194,-0.27716938,0.3883418,0.5929607,0.58026254,-0.15909621,0.66696805,0.36108842,-0.32393143,0.25398368,-0.21001749,-0.24057038,-0.5714798,-0.38675803,-0.0016770618,-0.36248296,-0.4692329,-0.09598557,-0.32060644,-0.7545738,0.45871702,0.009352841,0.361049,-0.087938406,0.34696862,0.4568989,-0.23664483,-0.22836696,-0.13944599,-0.2482271,-0.63728577,-0.37892613,-0.6705012,-0.52668524,0.19726296,1.1398233,-0.2461519,0.06084588,0.08763997,-0.21318147,0.06966635,-0.26399818,0.14956944,-0.05167388,-0.011664137,-0.066394396,-0.7283206,0.49774095,-0.14893031,-0.09484859,-0.53438485,0.1293032,0.54451174,-0.51803786,0.105820276,0.3398896,0.268016,0.009742388,-0.5468167,0.16129562,0.16229095,-0.34665442,0.34742647,0.25321543,-0.51680076,0.42663994,0.40009183,-0.25793257,-0.612527,0.35844693,0.053083427,-0.047654323,-0.18794258,0.27824476,0.1368614,-0.01505463,-0.09998245,0.15991804,-0.5471788,0.29442364,0.30393288,-0.0010760128,0.10663574,-0.24209796,-0.46332604,-0.59699094,0.23819205,-0.25116235,-0.28606203,0.25174573,0.16668214,0.11977255,0.09655757,0.27401,0.5622582,-0.3967556,0.10750254,-0.23918998,-0.26462016,0.5132163,0.66494334,0.661849,-0.29903108,0.47903302,-0.014814609,-0.043765735,-0.13827333,0.004481218,0.5528807,0.3024592,0.15188397,-0.021557245,-0.04384883,0.19127049,0.784886,0.00879513,0.19163999,0.059507173,-0.35406846,0.050788768,0.01787329,0.061903186,-0.09506244,-0.43977657,-0.07715939,-0.0025452205,0.13894044,0.54307884,0.16980603,0.072873436,-0.13483196,-0.31298622,0.17150934,0.17480102,0.027240217,-1.3327925,0.27528313,0.19706747,0.6961165,0.35892263,0.018112525,0.059015654,0.44435105,-0.2716156,0.18000673,0.32863656,-0.07216274,-0.37347776,0.58178186,-0.75205815,0.4574016,-0.054137528,0.015854787,0.07260574,-0.09273255,0.39949346,0.9707635,-0.10242113,0.113546506,-0.026928429,-0.26555464,-0.28306183,-0.24372871,0.121663556,-0.33300254,-0.47831056,0.65469396,0.26394886,0.29748037,-0.2099848,-0.025160346,0.11769529,-0.24923602,0.49439883,-0.047252093,0.27294984,-0.24008325,-0.39086494,-0.2827637,0.66496,-0.11213093,0.16807923,0.004948415,-0.23321564,0.18494119,-0.05342155,0.0145436805,0.09742792,-0.6171902,0.13266315,-0.3476608,-0.4404556,0.4718185,0.057120237,0.035488103,0.044221886,-0.017079541,-0.12038938,0.40045145,-0.002408266,0.7381457,0.2982938,-0.15674055,-0.1736343,0.23506513,0.0754736,-0.21105817,0.16013522,-0.08498049,0.34575775,-0.7596265,0.5302422,-0.120108165,-0.36486334,0.10058435,-0.09542123,0.068039134,0.31703192,-0.16429888,-0.16769016,-0.21109936,0.0801213,-0.3104609,-0.21624877,-0.16315879,0.014047341,0.14988308,-0.06545403,-0.054343067,-0.09734649,0.05292669,0.06908459,0.024195168,0.48520952,0.48308012,0.086356044,-0.584889,0.029343333,0.26484558,0.2899908,0.0610012,0.114596225,-0.22213843,-0.51803935,-0.54196936,0.1744674,-0.23519866,0.10466645,0.16989605,-0.29918522,0.77565783,0.16403557,1.3779503,0.06113266,-0.19026725,0.13201165,0.45675734,-0.043490905,-0.07815234,-0.30700752,1.0745353,0.81518525,0.029354155,-0.024215952,-0.38684025,-0.3263891,0.42331368,-0.3447755,-0.09014351,0.041334,-0.7107849,-0.4449361,0.11105204,0.2083194,-0.0797173,-0.105711274,-0.0039264983,0.21784763,0.094177626,0.099372625,-0.5879959,-0.15883295,0.3635082,0.27892473,-0.029580373,0.07592438,-0.6406604,0.41865745,-0.6451885,0.1312634,-0.5109071,0.02935536,0.15230274,-0.3637397,0.13180563,0.1898381,0.24548905,-0.43677145,-0.36301285,-0.13652204,0.5417697,0.089811556,0.1366496,0.52852803,-0.2782721,0.22546484,-0.04351587,0.3000365,1.1865445,-0.2852826,-0.106294595,0.20471916,-0.4167802,-0.7035799,0.011077725,-0.4858108,0.12776825,-0.29839823,-0.34825644,-0.6803444,0.33471245,0.20847437,-0.08192843,-0.16121064,-0.5255075,-0.15396199,0.06911918,-0.45544162,-0.1966466,-0.2742914,-0.021411743,0.46250102,-0.3119497,-0.35314628,0.053351197,0.33792195,-0.32689255,-0.55728537,0.00056448154,-0.25367406,0.24594514,0.07544528,-0.3828766,-0.09443997,0.0202943,-0.4572311,0.038684748,0.27968475,-0.36682,-0.07816677,-0.3289342,0.051636543,0.78117436,-0.061844796,-0.19947971,-0.7193122,-0.52056813,-0.8210801,-0.6417465,0.18814524,0.31734085,0.07751464,-0.8834397,0.05712113,-0.2202915,0.11935617,0.016614288,-0.42247227,0.26178727,0.1393128,0.24510847,-0.3118629,-0.91264516,0.22409916,0.14142667,-0.033059683,-0.5676955,0.46831983,-0.11359661,0.87103766,0.106252536,-0.11919908,0.26153946,-0.7778427,0.2571786,-0.18330076,-0.07374484,-0.7378065,0.14811526 +637,0.19323502,-0.123686545,-0.2286608,-0.27925926,-0.17837124,0.11646271,-0.22519514,0.32809886,0.06934201,-0.31667683,-0.23566723,-0.17962353,0.051911227,0.40987685,-0.16138795,-0.6859582,-0.12275929,0.009111574,-0.59148186,0.56145513,-0.6120454,0.26530334,0.25316286,0.32101005,-0.12864171,0.26707786,0.4321147,-0.2297242,0.060587514,-0.26888365,-0.14676175,0.31662807,-0.4993485,0.15474162,-0.08616928,-0.17363246,0.21309869,-0.24377067,-0.18556271,-0.7448522,0.17046191,-0.8978334,0.37252426,-0.07969362,-0.09666431,0.15665805,0.20938969,0.28707623,-0.16244774,-0.067890905,0.17482077,-0.1301219,-0.118909545,-0.29664162,0.096591674,-0.3844926,-0.4582529,-0.100652054,-0.51743925,-0.5041432,-0.124519415,0.19868548,-0.32882595,-0.08048173,-0.2360198,0.43258986,-0.4315125,-0.10287327,0.3133605,-0.2766095,0.56825405,-0.5427552,0.056266427,-0.01950129,0.40636688,-0.007984928,-0.07664146,0.3148835,0.4324228,0.34752983,0.14416148,-0.26069647,-0.124994114,-0.34869224,0.24851401,0.42160964,-0.10292781,-0.4221191,-0.08626696,0.03351164,0.021459648,0.3214805,0.041792784,-0.30666956,-0.10063819,0.013871344,-0.25533393,0.46483138,0.3986917,-0.18798815,-0.43354076,0.21060152,0.68437,0.26520684,-0.2582634,-0.028658288,0.018373387,-0.43730518,-0.12558457,0.26101497,-0.14537227,0.5875603,-0.24379878,0.16444787,0.8289819,-0.088160686,0.11359911,-0.11417898,-0.04156701,-0.16696048,-0.18745139,-0.20477043,0.14723895,-0.6473509,0.022376146,-0.41130647,0.7795764,0.02508224,-0.6970725,0.40664193,-0.6499957,0.13091604,-0.109749384,0.62649155,0.39577124,0.18632582,0.25011167,0.6202918,-0.38776484,0.04610048,-0.04583233,-0.46326256,0.11864465,-0.2904859,0.11569209,-0.46752003,0.06648542,-0.08146213,0.23820259,-0.17876224,0.15494551,-0.61986244,0.070191756,0.17039254,0.7139211,-0.3532433,-0.0016290204,0.48837158,1.0768213,0.9763454,0.010496163,1.4275277,0.26819882,-0.23241913,0.15276524,-0.28187063,-0.5569825,0.2116266,0.5455678,0.19924426,0.2074416,-0.24682042,-0.0097854985,0.2859058,-0.5087957,0.10593841,-0.075420536,0.30182055,0.14387985,-0.16997239,-0.5142729,-0.09396988,0.0981282,-0.08153697,0.13956258,0.047069293,-0.051096804,0.35694548,0.05149903,1.0312712,-0.15482831,0.18520682,0.08812834,0.40849087,0.18359163,0.08436204,0.060130317,0.3961385,0.3747015,0.10789547,-0.6778752,0.36278725,-0.28858116,-0.4229181,-0.043401856,-0.39801124,-0.07839769,0.017703585,-0.39433017,-0.08437103,0.05479472,-0.2118314,0.3665546,-2.8427846,-0.2586896,-0.14298713,0.21397908,-0.35852814,-0.09977029,-0.0023243895,-0.5003045,0.40862444,0.2918713,0.41676435,-0.5952973,0.42579293,0.44073194,-0.44269896,-0.058114547,-0.6681269,-0.14496568,-0.10291598,0.56512463,0.2587139,-0.006155058,-0.17917016,0.38375473,0.5706619,0.023696551,0.07246513,0.384492,0.14660151,0.20780306,0.46463236,0.038919635,0.485355,-0.116331026,-0.09785952,0.33691767,-0.15930244,0.1930369,-0.24348548,0.103840426,0.43190095,-0.2741421,-0.78265375,-0.7264348,-0.71368927,1.143664,-0.36740676,-0.3622132,0.30203137,0.11537913,-0.0907377,0.063350014,0.35741955,-0.20848133,0.18819277,-0.60545915,0.123721376,-0.0041533113,0.16446124,0.08697748,0.027738107,-0.4511042,0.6407,-0.0039058242,0.3557548,0.2502654,0.23329099,-0.22385897,-0.3912582,-0.013398296,0.7760215,0.34037322,-0.23085557,-0.20514794,-0.338793,-0.17370966,-0.090986975,0.013837313,0.52751094,0.89803857,-0.00043687224,0.02869695,0.16176932,-0.09799044,0.10100299,-0.19351673,-0.3930284,0.06904126,-0.024223695,0.54295766,0.4127972,-0.05736364,0.30991262,-0.21701162,0.44281083,-0.10589518,-0.46098828,0.5346909,0.8003121,-0.080171004,0.040757325,0.46764913,0.5242225,-0.44788232,0.44658586,-0.57135886,-0.13314734,0.7368898,-0.23280764,-0.5213245,0.17984764,-0.20640646,0.17874397,-0.95417774,0.36207843,-0.44719562,-0.43694106,-0.4780569,-0.0685585,-3.1186435,0.124615274,-0.07034808,-0.086814746,-0.29971555,-0.018416582,0.37766957,-0.56455606,-0.5710694,0.13351102,0.13820602,0.53949034,-0.074221514,0.05602128,-0.2513599,0.011741204,-0.047979772,0.31437916,0.031278424,0.1124451,-0.17329285,-0.41270018,0.0765465,-0.21453944,-0.5904339,0.25560686,-0.49272984,-0.60843945,-0.09215288,-0.3343038,-0.17820229,0.6479349,-0.40332556,0.047457043,-0.16101494,0.17888236,-0.24079697,0.22360468,0.12592039,0.26564115,0.14605148,-0.023714123,-0.049611624,-0.33036533,0.39992926,0.078418985,0.26982194,0.1503695,0.00629332,0.14912975,0.5350377,0.4560282,-0.07246011,0.8772148,0.34058616,0.0262955,0.2500922,-0.36011967,-0.31300002,-0.4965833,-0.31034797,-0.10870682,-0.30729127,-0.49612173,-0.008507048,-0.17975284,-0.50822395,0.5888958,-0.0035520536,0.27461478,-0.06451209,0.19318299,0.27585214,-0.20013376,0.12678528,-0.07615774,-0.19900349,-0.5139386,-0.2199049,-0.6316088,-0.44389492,-0.14224532,0.65069443,-0.31294283,-0.012962474,-0.15469337,-0.2664608,0.061928235,0.04853412,0.010107151,0.2297525,0.35945457,0.08797486,-0.76848495,0.42706066,0.09746518,-0.084255084,-0.43596894,0.06528225,0.72958744,-0.634952,0.42110926,0.27724054,-0.04140995,-0.19898823,-0.43187088,-0.20069835,0.07112371,-0.36254016,0.4784433,-0.041193668,-0.6668864,0.43319866,0.34125826,-0.34679273,-0.66205645,0.3291622,-0.0494711,-0.23734331,0.029079003,0.3335155,0.05830284,0.024893597,-0.19902919,0.23694147,-0.57062167,0.11528448,0.31996465,0.11724416,0.46344075,-0.11147077,-0.18208502,-0.6704735,-0.11512052,-0.50777537,-0.28375822,0.23075171,-0.041273497,-0.21752729,0.24567983,0.1347449,0.38460636,-0.11267344,0.15895341,0.09240457,-0.37245464,0.28629765,0.44192764,0.18803477,-0.25804383,0.51343447,0.1457126,-0.15401642,-0.18178797,0.012695296,0.43736354,0.09745364,0.33655486,-0.1352229,-0.15310839,0.57665044,0.67246014,0.14797807,0.56390476,-0.0028582898,-0.060779102,0.45132536,-0.10051139,0.14463606,0.096893415,-0.38258985,-0.03181231,-0.049543507,0.06512682,0.5382705,0.17191958,0.28969648,0.24873097,-0.24333845,0.0020044872,0.32453638,-0.017227096,-0.93908745,0.42171887,0.3594934,0.8366996,0.5135245,0.050011665,-0.054294936,0.6320144,-0.33419013,0.05375057,0.47928166,0.096731886,-0.5947431,0.7525304,-0.62404525,0.11185288,-0.15266559,-0.1188512,0.021531224,0.05691146,0.32491383,0.8030842,-0.18496957,0.038420927,-0.1865048,-0.15642455,0.18951361,-0.3043287,0.14325044,-0.150822,-0.33855024,0.4119408,0.38837078,0.3057526,-0.14845982,0.0450167,0.27773854,-0.05993373,0.41273448,-0.02960913,-0.08799703,-0.052106876,-0.4637147,-0.2758213,0.48996645,0.087108985,0.2104082,-0.20969306,-0.19218199,0.03606834,-0.21905264,0.012634978,-0.059902925,-0.63090694,0.042705644,-0.06646357,-0.43137375,0.52296925,-0.5181088,0.16262518,0.15028128,0.032477897,-0.11890894,-0.13834369,0.08276487,0.5821281,0.15378337,-0.2589307,-0.21929455,-0.066187166,0.085754864,-0.25728768,-0.045356028,-0.24394308,0.019229207,-0.49614754,0.52806777,-0.14327502,-0.40035865,0.10811478,-0.2983146,-0.16644144,0.4572367,-0.104924485,-0.11165745,-0.12892124,-0.21023051,-0.28051254,0.09069016,-0.2021947,0.18374474,0.29912433,-0.013759621,-0.20862247,-0.15779565,-0.22437762,0.5294855,0.15565953,0.39721218,0.23030742,-0.20927797,-0.2638382,-0.041964274,0.115860835,0.3034845,0.20562282,0.115068875,-0.20362213,-0.26995772,-0.22124465,0.21198736,-0.06505295,0.27587444,-0.06445487,-0.39209822,0.8249401,0.10448714,1.2091011,0.065372184,-0.22594514,0.06373983,0.44736332,-0.13274972,0.08473646,-0.5290612,0.7065856,0.49946374,-0.15788046,-0.10221451,-0.35051605,0.088682346,0.254232,-0.21955578,-0.029081108,-0.13322257,-0.6563758,-0.4064677,0.1859359,0.29180977,0.0052255476,0.09576794,-0.18589494,-0.006052392,0.003229452,0.71484643,-0.542147,-0.067938276,0.17603593,0.07005449,0.014200389,0.07062406,-0.27200338,0.5048995,-0.7317336,0.21393807,-0.41341305,0.0023603847,-0.20963381,-0.24391784,0.10517795,-0.19354393,0.1823188,-0.13400099,-0.55708796,0.077604294,0.38798183,0.104184985,0.1240463,0.62936336,-0.24267569,0.22752817,0.13861932,0.48450875,1.237012,-0.29763767,0.014396901,0.1634909,-0.4810458,-0.58020455,0.3488509,-0.2855997,0.04398546,-0.0484299,-0.45111126,-0.47820207,0.19287561,0.3225045,0.011273972,0.093767345,-0.34074703,-0.24706472,0.39892802,-0.3525608,-0.2738654,-0.22606172,0.27806517,0.5772602,-0.35386533,-0.2467767,-0.11095585,0.2462523,-0.51293296,-0.5368676,-0.10417043,-0.15468816,0.37337723,0.05713331,-0.4437177,0.102103524,0.22944799,-0.44734573,0.1629698,0.24838166,-0.30381265,0.02011085,-0.12932779,0.049514316,0.71768725,-0.2856756,-0.3249211,-0.7182471,-0.42467928,-0.82179374,-0.44164735,0.4610343,0.1080451,-0.015534461,-0.44798446,0.12248761,-0.11969695,-0.022827098,0.18399355,-0.32782164,0.30859396,0.14019188,0.57540816,-0.21446736,-0.75839275,0.20802593,0.08489396,0.082582235,-0.5870675,0.7350821,-0.11399514,0.5464552,-0.03694478,-0.04216543,-0.008051777,-0.34018895,0.21030354,-0.24498521,-0.18679786,-0.73932403,0.18231918 +638,0.4313021,-0.12509766,-0.7152816,-0.32557887,-0.2692287,-0.007843971,-0.26436204,0.21580474,0.3738079,-0.607795,0.09315359,-0.35395476,0.14074752,0.21002755,-0.12983043,-0.6699002,-0.08274149,0.35385624,-0.46830565,0.6009122,-0.38867694,0.21783914,0.38300896,0.17282706,-0.01887835,0.15056394,0.25577927,-0.2621671,-0.12541892,0.0007766256,-0.008862798,-0.024690736,-0.7529221,0.15953325,-0.07552502,-0.3805385,0.12485213,-0.38306558,-0.06562774,-0.7886764,0.3505109,-0.92098516,0.5791863,0.10409783,-0.29151127,0.30685946,0.15619186,0.15277773,-0.18255037,0.058539774,0.100503646,-0.4362141,-0.46141323,-0.043686848,-0.34909594,-0.55106854,-0.7024159,-0.03844293,-0.67046386,-0.16128509,-0.40950897,0.077932715,-0.40476874,0.085182786,-0.22372419,0.5024558,-0.3700678,-0.13299721,0.12659043,-0.18469453,0.36390767,-0.44003758,-0.03947741,-0.12154048,0.11619821,-0.1222513,-0.26660225,0.2145657,0.22720554,0.7203026,0.034569208,-0.36568782,-0.25549972,0.013397061,0.020825468,0.46244815,-0.19978856,-0.36246797,-0.27797726,-0.13405496,0.33503228,0.27174535,-0.07479449,-0.4260146,0.06669639,-0.004176892,-0.386065,0.4240628,0.5099255,-0.40192115,-0.048369877,0.4592627,0.31402192,-0.049834747,-0.19451982,0.11074053,-0.06304164,-0.5884093,-0.24702424,0.32700223,-0.13853289,0.4856413,-0.15065497,0.07883909,0.55197626,-0.1534182,-0.14321329,-0.1589943,-0.05732115,-0.08120648,-0.1774979,-0.1983069,0.42334253,-0.57322395,-0.013445341,-0.5437089,0.83785224,0.037278034,-0.937262,0.40920117,-0.60675687,0.27628434,-0.23759207,0.75906914,0.87753236,0.68546236,0.30480972,0.7653195,-0.57659245,0.12486528,-0.0975783,-0.4459548,0.2129275,-0.016090969,0.39627632,-0.47898534,-0.036757775,0.12373231,-0.09225412,-0.080953486,0.7975765,-0.2660445,-0.22306967,0.1289772,0.67924076,-0.3794604,-0.06521057,0.6163402,1.1059222,0.83511645,0.22587942,1.2955581,0.4208355,-0.23463695,0.22767578,-0.04546942,-1.0078088,0.2503208,0.45439273,0.6648179,0.18454853,0.12428911,-0.035428885,0.33736846,-0.31623378,-0.18476343,-0.11317711,0.3162029,-0.23664662,-0.20826973,-0.2609803,-0.20195685,0.25035593,0.13852337,0.03470792,0.33149847,-0.098924845,0.40754658,0.25418842,1.5846204,-0.093884654,-0.028324114,0.08277381,0.4726662,0.22674522,0.035815142,-0.14509927,0.4537393,0.44530246,0.028036915,-0.62634206,0.1033493,-0.1871898,-0.53108937,-0.20641114,-0.36512756,0.096971676,-0.20201299,-0.305893,-0.21441285,0.045298513,-0.64839333,0.21895379,-2.3924558,-0.1431406,-0.098422095,0.33619103,-0.111195326,-0.26887318,-0.16078107,-0.47182938,0.65844417,0.45278135,0.44103515,-0.623536,0.41885343,0.5192037,-0.4420428,-0.030817417,-0.8906575,-0.06731525,-0.41588715,0.33302644,-0.0030973554,-0.3228567,0.037033174,0.23500326,0.576022,0.09512082,0.15300785,0.48256576,0.5578195,0.10075155,0.6945331,-0.054445975,0.49204466,-0.28343847,-0.18577561,0.23591766,-0.30930886,-0.11123017,-0.20671764,0.20288683,0.32664028,-0.67814773,-0.8849949,-0.5769122,-0.1782838,1.1123288,-0.5659705,-0.6047706,0.32306415,-0.11572051,-0.008618408,0.06840924,0.53938603,-0.2898493,0.08459385,-0.791069,-0.009916053,0.01633195,0.30650598,-0.0039634383,0.17929728,-0.44960758,0.7149743,-0.0817761,0.6685735,0.3861049,0.09776212,-0.25905448,-0.5246324,0.2652327,0.86731637,0.084311195,0.09359221,-0.20350266,-0.05204869,-0.13746372,-0.120463334,0.102600545,0.40112466,0.94492346,-0.15580732,0.026838215,0.39680102,-0.2921072,-0.08876486,-0.10052003,-0.5311468,-0.1737442,-0.11357495,0.46178278,0.5481098,-0.071030706,0.27679804,-0.12980433,0.37072837,-0.169582,-0.48163238,0.637202,0.89002573,-0.2115372,-0.12446086,0.62911254,0.5267168,-0.36775786,0.6326068,-0.6316521,-0.4612307,0.5259823,0.009373195,-0.44193026,0.24652703,-0.48125786,0.14728887,-1.0032088,0.21831734,-0.17006578,-0.39552307,-0.4083683,-0.050164003,-3.637943,0.13417952,-0.17500646,-0.080458276,-0.17077373,-0.052618794,0.34048957,-0.3455692,-0.6520511,0.09348032,0.19646396,0.5041399,0.032285713,0.08258099,-0.42050415,-0.22321104,-0.396668,0.14593242,0.064796455,0.18064506,-0.050342355,-0.5135674,0.01644836,-0.3096929,-0.29915702,-0.007059536,-0.47318867,-0.2460493,-0.18461224,-0.62788934,-0.61521935,0.61474115,-0.35691622,-0.00875747,-0.27002943,-0.07425548,-0.0017841321,0.29818386,-0.19379684,0.16040543,-0.13385546,-0.08740895,-0.07347127,-0.3100707,0.09124953,0.05270074,0.13391788,0.3368836,-0.19679922,0.008956511,0.5764241,0.5676378,-0.0043433583,1.0289147,0.50609183,-0.0034721494,0.2805122,-0.34685865,-0.026982533,-0.75925297,-0.14821133,-0.35413963,-0.5384009,-0.31549752,0.048003417,-0.39878094,-0.8584438,0.64325917,0.19722222,-0.006862292,0.12875077,0.43216074,0.3978997,-0.011089847,-0.019388732,-0.19974071,-0.3089916,-0.5445142,-0.28010654,-0.9231585,-0.4732645,0.041885618,0.9021815,-0.097826175,-0.18679713,-0.008939415,0.0074175275,0.10836604,0.23994154,0.07375324,0.42917892,0.4808313,0.058432616,-0.78319126,0.55250835,-0.014284534,0.10732897,-0.729539,0.16542175,0.58174074,-0.84838575,0.36435983,0.597838,0.15319279,0.039493177,-0.52181816,-0.2384052,0.0429702,-0.2284108,0.36214012,0.07543047,-1.0628862,0.76119554,0.23267832,-0.10163911,-0.93938696,0.43358234,0.046063423,-0.32898954,-0.028194804,0.3758021,-0.011175672,0.05900624,-0.3880009,0.077134095,-0.5688808,0.2427931,0.16309403,-0.033101182,0.5213544,0.057588294,-0.13763905,-0.79400957,-0.08589983,-0.61464363,-0.166291,0.2565983,-0.034702335,0.18369746,0.22746508,-0.10339642,0.5433152,-0.23203328,0.103606865,-0.19500819,-0.33108348,0.5253123,0.50138277,0.2535641,-0.47539315,0.7582604,-0.21253827,-0.11943478,-0.3761407,-0.087909,0.32065165,0.22073537,0.39022696,0.08277939,-0.32442582,0.33844596,0.8969934,0.15450987,0.3514066,0.27106944,-0.10995258,0.67815787,0.19402178,0.06321892,-0.20843203,-0.47715285,-0.18930453,-0.06126391,0.11049709,0.5142477,0.102344275,0.54948574,-0.16624786,0.10877897,0.049082413,0.12734975,0.013988804,-0.762903,0.39345437,0.22641958,0.48884642,0.86800313,-0.08634568,0.19725229,0.51387656,-0.4514052,0.16946298,0.26916996,-0.028805178,-0.3096075,0.5525716,-0.60963607,0.29621264,-0.18239261,0.0369854,0.17112319,0.1209699,0.41600865,1.0673716,-0.0021834213,0.16877426,-0.18972905,-0.13552088,0.37511408,-0.32839602,-0.16892594,-0.47139156,-0.37287888,0.63113964,0.19857931,0.41626537,-0.20709005,-0.100042105,0.18235916,-0.2663535,0.24661809,0.05788426,-0.20819698,0.084241405,-0.6267649,-0.2863231,0.7321408,0.34436518,-0.05192962,0.14584097,-0.37997204,0.3329046,-0.22478381,-0.2943215,-0.17469852,-0.67594534,-0.0059760353,-0.24319139,-0.3224047,0.7921565,-0.17757037,0.30322272,0.093927555,0.097032025,-0.2599173,-0.018495973,0.33352408,0.5569386,0.08968247,-0.3512328,-0.12408042,-0.26727587,0.25756186,-0.380379,-0.25772542,-0.1830225,0.034817137,-0.7324231,0.43904936,-0.27507624,-0.40730497,0.3556492,-0.21393402,-0.012182227,0.5081764,-0.2926567,-0.14060959,0.12437368,0.13462637,-0.14435244,-0.30980727,-0.33402282,0.21322486,-0.22861616,-0.013891106,-0.08096575,0.013690389,0.0573388,0.56450105,-0.051803496,0.1137542,0.2303097,0.41469222,-0.43090802,0.08659278,0.26925585,0.49789158,-0.0537984,-0.07476608,-0.22199184,-0.20169847,-0.26558486,-0.023359913,-0.14543563,0.24894145,0.19103715,-0.5839476,0.92837185,0.061152484,0.9828231,-0.04638385,-0.45318446,-0.031000074,0.54959387,0.06625741,-0.0012095983,-0.26905125,0.88201684,0.6266688,-0.07010338,-0.2600505,-0.5738302,-0.15094472,0.30779478,-0.14127217,-0.21295525,-0.10200735,-0.7762903,-0.39218587,0.3326076,0.3192492,0.18534933,-0.1158086,0.21089035,0.033369854,0.280857,0.35054857,-0.5719902,0.049275894,0.23801419,0.2564053,0.1409747,0.24989107,-0.26711038,0.20963313,-0.65919393,0.12947376,-0.4169674,-0.08252375,0.06891528,-0.26281908,0.19500226,0.10715044,0.32241532,-0.14901242,-0.3513263,-0.107150026,0.62664324,0.26043084,0.37500143,0.92116,-0.25349888,0.17783517,-0.0033287178,0.701758,1.3680637,-0.04583548,-0.03077242,0.32680827,-0.35201553,-0.7019319,0.22545487,-0.23052558,0.13968614,0.18016472,-0.3929025,-0.46422324,0.14044823,0.12819044,-0.34155238,0.17959124,-0.5954848,-0.3089903,0.33658203,-0.13479388,-0.27948615,-0.25012964,0.13738158,0.8747524,-0.3918204,-0.070013955,-0.041492168,0.21613446,-0.18916433,-0.62496245,0.05035249,-0.5492179,0.44465843,0.24339822,-0.4267085,0.21872486,0.17394818,-0.68097425,0.11402105,0.3438164,-0.32170025,-0.029821247,-0.4052744,-0.041913364,0.9408424,0.032967027,0.13776347,-0.4950115,-0.67221165,-0.95208,-0.15718223,0.428051,0.007233629,0.049055286,-0.42888933,-0.06041514,-0.14263679,-0.1765725,0.060984556,-0.5697299,0.34442037,0.048296772,0.5041993,-0.014469917,-0.855713,0.12342826,0.00067864475,-0.24044919,-0.48591056,0.58328605,-0.1229872,0.9369246,0.059322797,-0.001486604,0.3176241,-0.7554686,0.13608116,-0.3453954,-0.10969113,-0.68560517,0.009049745 +639,0.53805304,-0.20323324,-0.6133332,-0.17397325,-0.10878301,-0.45849574,-0.14724192,0.36986178,0.28224406,-0.12305047,-0.24107747,-0.14721394,0.23920894,0.60035855,0.04400195,-1.1360235,-0.07985167,0.25979936,-0.75681,0.497264,-0.5604302,0.3326056,0.026201904,0.5669935,0.024808418,0.28669927,0.41533387,-0.12606274,0.15526068,0.0056484803,0.059471823,0.21414696,-0.92432517,-0.13584062,-0.104160115,-0.50105363,0.047239315,-0.3873085,-0.21869522,-0.81260735,0.33446538,-0.92182595,0.6254952,0.25164336,-0.19447304,-0.2338257,0.02538123,0.45521966,-0.4770422,0.12032668,0.19532134,-0.24361238,-0.10252297,-0.40848646,0.08560846,-0.2553387,-0.53924716,-0.029521532,-0.5532308,-0.43528292,-0.3007411,0.021143332,-0.4398135,-0.082484476,-0.1918971,0.4723405,-0.38737383,-0.36664736,0.5827711,-0.21444917,0.46384266,-0.51776487,0.009006912,-0.21404225,0.50040084,-0.2222949,-0.4056628,0.49792245,0.2317881,0.5083582,0.18901554,-0.4749808,-0.21220088,-0.120007254,-0.037287917,0.57035345,-0.31748188,-0.5695747,-0.09237253,0.1888012,0.32226777,0.3719675,0.097320706,-0.14631598,-0.07049421,-0.08228536,-0.019358808,0.6429401,0.67715263,-0.08153307,-0.5184361,0.14319767,0.4883975,0.19196701,-0.021088133,-0.03971936,-0.0073008793,-0.7284056,-0.32458007,0.10932979,-0.10274989,0.712111,-0.023804458,0.039038256,1.0491284,-0.24419442,-0.045372453,-0.16014074,-0.099704266,-0.0069469404,-0.3799511,-0.3820382,0.49542284,-0.55574995,0.13620363,-0.40113774,0.8488634,0.27418628,-0.80967623,0.41675946,-0.65594876,0.29328415,-0.12400909,0.8770012,0.87903345,0.4432999,0.75463,0.6868446,-0.3347449,0.39601573,0.41038772,-0.57943803,0.09015741,-0.26043227,0.10461699,-0.50269693,-0.02614441,-0.2296372,-0.12670326,0.36836138,0.32681367,-0.6354348,-0.07227366,0.30903298,0.6963834,-0.32149446,-0.0017245357,0.66256434,1.1985174,1.1654624,0.088235945,1.227286,0.4203908,-0.34480417,0.37577343,-0.33247635,-0.9030144,0.19914512,0.43593124,-0.019488357,0.5755271,-0.13614349,-0.16469756,0.43797234,-0.70323735,-0.084035255,-0.0018791611,0.35838264,-0.08973783,-0.32667488,-0.77717173,-0.17537202,-0.2239235,-0.27123883,-0.13638355,0.3236509,-0.19028373,0.41393492,-0.3850668,1.1886641,0.088616565,-0.06531483,-0.13954656,0.7597008,0.24241948,-0.19448987,-0.0461408,0.36151475,0.5750464,-0.029079385,-0.67242354,0.2560332,-0.4909593,-0.30693075,-0.18817239,-0.34980944,0.27793914,0.14036499,-0.3134118,-0.15106812,-0.040784385,0.046372246,0.37540257,-2.4837494,-0.33821613,0.025130343,0.41608608,-0.22796687,-0.034367457,0.040443335,-0.5236463,0.33748025,0.2280218,0.7199106,-0.7590582,0.46351758,0.4289748,-0.6239989,-0.011569809,-1.0329808,-0.114971586,-0.13341479,0.42832664,-0.0879905,-0.1703552,-0.019235404,0.3073204,0.7527244,0.03653669,-0.049273897,0.48146877,0.3735428,0.1671295,0.48498344,0.04835378,0.67134476,-0.39017087,-0.2717653,0.16763838,-0.1931215,0.2755191,-0.13838626,0.012814245,0.5740839,-0.5126345,-1.2214651,-0.41216803,-0.2105957,0.70888346,-0.41424197,-0.5039738,0.44485247,-0.136025,0.14572288,0.044602633,0.6465459,-0.17144454,0.0031048087,-0.72011197,0.0022143775,-0.034225456,0.2222649,0.17667995,-0.102915674,-0.45119628,0.45889524,-0.18118037,0.34781405,0.36182648,0.36421645,-0.31894076,-0.6535625,0.24383388,0.65945584,0.17346276,-0.04602324,-0.26088223,-0.4280206,-0.072209015,-0.21228296,0.063591726,0.6542086,1.265912,-0.30014428,0.061194908,0.46213457,-0.021934452,0.07028832,-0.1344712,-0.33203748,-0.1856768,-0.0026564517,0.5589673,0.9575052,-0.31564435,0.45624036,-0.1503172,0.3485101,0.25226167,-0.52668786,0.7816039,0.9259411,-0.01151264,0.07293777,0.5846763,0.30089763,-0.5986479,0.6462501,-0.6735241,0.087734945,0.74032503,-0.10137153,-0.27372253,0.3350004,-0.2981477,0.22851251,-1.3288633,0.524564,-0.30028132,-0.36747277,-0.7530032,-0.047488634,-3.9845116,0.27992222,-0.47868755,-0.013645958,-0.2734683,-0.015250092,0.310748,-0.9016655,-0.55383795,0.34232682,0.2719877,0.6820433,-0.052078295,0.07468524,-0.25006604,-0.2663223,-0.2027012,0.1748148,0.4421691,0.3686085,0.08472842,-0.32225946,0.09420566,0.09838598,-0.58524287,0.12972783,-0.68063843,-0.43985423,-0.21210599,-0.92019576,-0.4640847,0.68135977,-0.19013812,-0.06980016,-0.24858595,0.12664522,-0.16359144,0.2343782,0.1272498,0.3846945,0.116235845,0.016141826,0.27726945,-0.21290702,0.27050683,-0.042887226,0.47244826,-0.41016868,-0.25152805,0.168439,0.58171034,0.74165,-0.04634433,0.84793097,0.89758116,-0.0888024,0.15587112,-0.5117737,-0.24461669,-0.75660044,-0.6595747,-0.15507892,-0.39852953,-0.6446691,0.17723137,-0.36723897,-0.9084415,0.6715977,-0.27430028,0.4056138,0.17518313,0.39879486,0.49901035,-0.17869297,-0.031346764,-0.034251712,-0.15549289,-0.64531255,0.106597416,-0.73131555,-0.64744514,0.047511686,0.7025923,-0.37755013,0.07119717,-0.11517323,-0.30620745,0.17074287,0.11214077,-0.0054561873,0.41317508,0.44675577,0.021531366,-0.57557297,0.39017603,-0.02136374,-0.20937887,-0.6873075,0.22036114,0.59360504,-0.8400564,0.8727116,0.35920122,-0.06726683,0.06652333,-0.72809047,-0.45067823,0.3079706,0.085143454,0.3782585,0.06270218,-0.78157496,0.5531818,0.49066123,-0.76828235,-0.76387256,0.29847428,-0.10715909,-0.5413489,-0.01565186,0.20713948,-0.09948251,-0.042938806,-0.5591001,0.4050165,-0.39213368,0.11111215,0.15298599,-0.12174973,0.38941514,-0.06462968,-0.35548744,-0.8304556,0.37258938,-0.7048134,-0.10798344,0.44469088,-0.030141538,0.0057018427,-0.0027615374,0.3193543,0.38210887,-0.24773303,0.15052505,-0.021170443,-0.61425024,0.17679156,0.6277338,0.28153467,-0.4895593,0.61695886,0.16335559,-0.3725809,0.043549873,-0.008756334,0.5544706,-0.12048972,0.2353191,-0.10889284,-0.22891851,0.14563318,0.64460224,0.05518968,0.49006099,0.038169514,0.19616333,0.48395622,0.2394792,0.17405848,0.24638548,-0.2864916,0.0868282,0.17108168,0.26302674,0.6165505,0.39025345,0.23587547,-0.029341448,-0.39065713,0.0669033,0.42020446,0.013969848,-1.2374238,0.61391526,0.23924632,0.7795217,0.5855651,0.32966125,-0.27727792,0.7488889,-0.4140216,0.052816845,0.36971396,-0.047822107,-0.5809527,0.8012314,-0.61762345,0.46166083,-0.040621486,-0.105044514,0.07315908,0.18030308,0.3773414,0.69281715,-0.26281345,0.05962685,-0.117242076,-0.014956778,0.08465375,-0.4574304,-0.02107184,-0.3438958,-0.36582425,0.9122741,0.30033287,0.21735352,-0.020839868,-0.07102354,0.23770475,-0.27053565,0.4431081,-0.33068296,-0.07969911,0.34944448,-0.584282,-0.28950107,0.5385128,0.03195149,0.11038949,-0.38652232,-0.12575449,0.15648645,-0.20023917,-0.17071623,-0.004500675,-0.9354494,0.18064927,-0.44534734,-0.28043145,0.76993597,-0.27032974,0.24011822,0.2690601,0.13849694,-0.28717247,0.3849868,-0.08288726,0.8195583,0.043366745,-0.541706,-0.2989219,0.22732878,0.31488505,-0.31175607,0.31701264,-0.47807539,-0.06750048,-0.3786274,0.7518955,0.08701873,-0.43534514,-0.042390253,-0.22470564,-0.049575005,0.5143395,-0.2901804,0.08780221,0.19048695,-0.31989697,-0.39799264,-0.2834571,-0.28730524,0.34732324,0.35700348,0.026412953,-0.0980485,-0.1787309,-0.13027547,0.9816343,-0.072380714,0.53872985,0.24750684,0.20994264,-0.06566741,-0.058085226,0.29683754,0.43361986,0.15553512,-0.048156593,-0.6419134,-0.25221917,-0.19761428,-0.2354423,-0.22236696,0.34384874,-0.21697845,-0.22820307,0.91479546,0.20797895,1.351747,-0.12198344,-0.4418044,0.14778922,0.6875522,-0.22428204,0.0039984365,-0.5239021,1.1916112,0.55038047,-0.2738366,-0.099269725,-0.45771906,-0.19749618,0.27366838,-0.38767716,-0.21911444,-0.07309247,-0.53121996,-0.5263691,0.27105543,0.31669748,0.15719153,-0.09029856,0.18978786,-0.07790158,-0.028380187,0.2791076,-0.6506803,-0.23017521,0.11246116,0.24412332,0.06827115,0.20463477,-0.3333255,0.4388866,-0.6843495,0.33219627,-0.6251524,0.19192852,-0.013264352,-0.6231725,0.1320171,5.244667e-05,0.40255502,-0.33077326,-0.23333396,0.12152765,0.3213907,0.09893957,0.28473303,0.88189924,-0.40199268,0.11317585,0.1162757,0.5947292,1.4811879,-0.44241473,-0.15326972,0.2048381,-0.35668057,-0.5894423,0.45775744,-0.2391241,-0.09199974,-0.47693852,-0.49744728,-0.7922504,-0.050592676,0.028586805,-0.21714269,0.21593662,-0.61664313,-0.40083885,0.16126452,-0.3281059,-0.21663222,-0.30573443,0.6301576,0.8963177,-0.28864348,-0.45508072,0.18822242,0.0623204,-0.056462277,-0.48981592,-0.08818695,-0.26008078,0.3818905,0.11264808,-0.53758377,0.043036927,0.29253048,-0.47933042,0.16351794,0.21624951,-0.27609015,0.15768538,-0.1479171,-0.21709871,1.15357,-0.32632935,-0.13117205,-0.66357446,-0.48571768,-1.2560588,-0.53114915,0.6679727,0.120725326,0.029495122,-0.6509708,0.29411873,0.115146466,-0.12781118,0.014971271,-0.43582156,0.29752865,0.046703015,0.69465315,-0.38782266,-0.986655,0.1024893,0.15987973,-0.16586357,-0.91876674,0.6459201,0.14230949,0.98331606,-0.018204376,-0.046353135,0.11769698,-0.34598964,-0.0182231,-0.39949673,-0.21158189,-0.7068667,-0.17831683 +640,0.46990266,-0.24982783,-0.35446012,-0.124314435,-0.062383134,0.023174038,-0.04447324,0.78697556,0.30877072,-0.33955604,-0.30637276,-0.11766147,0.00092461245,0.29954085,-0.16125932,-0.3630196,-0.07887611,0.061648674,-0.22409551,0.55498195,-0.31416494,0.20769833,-0.11544895,0.3543732,0.35012913,0.2519847,0.054290447,-0.06670216,-0.07040247,-0.12893789,-0.17170206,0.03813958,-0.5204771,0.17421857,-0.22890517,-0.25772905,-0.080154546,-0.59675175,-0.45495135,-0.8172994,0.46408632,-0.9324313,0.47036836,0.0016214618,-0.22535434,0.255715,-0.018510956,0.1501515,-0.2728807,-0.19739595,0.12011675,-0.096029505,0.14369322,-0.06622874,-0.047308363,-0.2677419,-0.6272756,-0.034610607,-0.21135996,-0.1349375,-0.30506337,0.103858985,-0.44658607,-0.08784949,-0.1464872,0.4047198,-0.4673043,-0.04831448,0.18207878,-0.26377377,0.24664034,-0.6976694,-0.1810325,0.007481302,0.16192651,0.06857057,-0.07922169,0.43562728,0.039552134,0.38677123,0.05589542,-0.12969981,-0.34377015,0.08006997,0.05250111,0.5931255,-0.18898095,-0.7048601,-0.05266084,0.024531452,0.42199135,0.25012583,-0.0074907998,-0.12439291,-0.18473704,0.09010839,-0.12720586,0.38513356,0.70321643,-0.14837565,-0.3294801,0.36463034,0.5019162,0.24217921,-0.009484715,-0.043543104,0.041861676,-0.46047598,-0.13475032,0.15843436,-0.31465465,0.53895545,-0.11393755,0.27498895,0.6876881,-0.19742472,0.14849068,-0.06313976,0.052153323,-0.15077783,-0.38515738,-0.27288246,0.3042002,-0.30839396,0.3869565,-0.3032694,0.8777986,0.14335561,-0.7624724,0.4361054,-0.46130517,0.21059725,-0.05288942,0.62178683,0.6745114,0.42642885,0.4383761,0.88726074,-0.370882,0.052834567,-0.07904338,-0.33714822,0.019219521,-0.124893956,0.08227691,-0.33957255,0.07036069,0.2334815,-0.20568769,0.12227498,0.27712065,-0.5770516,-0.0598114,0.18991879,0.75566006,-0.28089792,0.10384205,0.869138,1.1057286,0.8892777,0.04476927,1.147697,0.18897794,-0.25731376,0.30195588,-0.29167712,-0.8383474,0.23916993,0.4223519,0.10885508,0.26418543,0.12781776,-0.15973642,0.31431058,-0.54632163,0.094856896,-0.19742005,0.22412325,0.071455605,-0.07639199,-0.55530864,-0.24416846,-0.12963447,0.025187029,0.074221484,0.22715849,-0.34818745,0.2736618,-0.011944057,1.6256815,-0.13492945,0.0264703,0.18139233,0.6928796,0.21622774,-0.1251125,0.057173967,0.32530868,0.4344095,-0.068555474,-0.5885951,0.11499706,-0.33817068,-0.5879524,-0.036520474,-0.35901797,-0.11043881,0.092864595,-0.2947449,-0.24738576,-0.19788319,-0.38276613,0.47621801,-2.701859,-0.12784961,-0.038388386,0.3686133,-0.3437203,-0.2855256,-0.058121763,-0.56798226,0.42291614,0.39408952,0.5520152,-0.80827993,0.1634722,0.51764876,-0.5901,-0.052314557,-0.6775181,0.074469976,-0.020820994,0.35185277,0.10018199,-0.037236597,0.13050953,0.035575476,0.65709156,0.41058975,0.118763834,0.33588374,0.3517533,-0.05215122,0.2849247,-0.21935037,0.4037429,-0.3087559,-0.024002176,0.34889814,-0.45797998,0.25177863,-0.27681363,0.20863888,0.40844086,-0.49046934,-0.68314993,-0.5735553,-0.25938797,1.2796909,-0.20434335,-0.6630647,0.33564642,-0.27706504,-0.08706416,-0.14697577,0.67409503,-0.25611016,-0.15087858,-0.6055976,-0.08570842,-0.25224814,0.06403558,-0.030685188,0.05531883,-0.3852401,0.87184554,-0.16022293,0.5173034,0.21436515,0.23020218,-0.2642493,-0.4812724,0.06299054,0.6590835,0.52364457,0.1387857,-0.13288394,-0.10559174,-0.18724772,-0.35234216,0.09754224,0.62311393,0.86559325,-0.067387305,-0.045760117,0.40754545,-0.058518514,-0.007769518,-0.021435391,-0.293325,-0.19891456,-0.08064061,0.58734,0.5533049,-0.3691109,0.23944257,-0.17246588,0.10977402,-0.17856114,-0.3289665,0.48684236,0.9630417,-0.23051564,-0.08175126,0.4559544,0.34558532,-0.25892255,0.32557008,-0.78881204,-0.23822452,0.45972124,-0.19247557,-0.5406761,0.11992042,-0.20088778,0.09251407,-0.817597,0.31317025,-0.19113328,-0.56156695,-0.5439096,-0.069225356,-2.780389,0.036075737,-0.28076866,-0.24486233,-0.23861864,-0.1979529,0.057889126,-0.5508424,-0.49166304,0.23690249,0.17387167,0.6071307,0.0057380972,0.12960541,-0.23444095,-0.10913718,-0.6349844,0.054151926,6.5946806e-05,0.49263498,-0.014832878,-0.30598342,-0.07554697,-0.0061346567,-0.6763417,0.08833803,-0.4794349,-0.3294748,-0.25347087,-0.54805154,-0.23389603,0.6242438,-0.27473363,0.022808006,-0.18066183,-0.08744461,-0.19129135,0.28314134,0.14630547,0.029618267,0.04478552,-0.09528187,0.23542903,-0.2952992,0.4298039,-0.0061366283,0.32407698,0.4053361,-0.31490642,0.13223848,0.50816447,0.587141,-0.17643033,0.8335037,0.45877072,-0.112776056,0.28866208,-0.2372124,-0.2019071,-0.48211467,-0.30280116,0.21385258,-0.3140085,-0.4793228,-0.22745368,-0.4499481,-0.8329604,0.30976772,0.007310087,0.6139379,0.07664617,0.057524674,0.6288634,-0.15297332,-0.010582392,0.054327708,-0.051303063,-0.64162314,-0.18124829,-0.65074956,-0.43716308,0.2088431,0.7935626,-0.11681052,-0.18455061,0.016099403,-0.3375674,0.021400185,-0.085983165,-0.11222721,-0.0606356,0.20210396,-0.14536698,-0.62826896,0.5214608,0.18341932,-0.18781835,-0.5476091,0.335487,0.4370545,-0.5343746,0.404514,0.16465694,0.02465587,-0.42490923,-0.58370155,-0.16219456,-0.199082,-0.07886529,0.31080276,0.09122084,-0.6172956,0.4311946,0.33923185,-0.22937004,-0.69491047,0.3344918,-0.10402502,-0.19708943,-0.12399681,0.19923027,0.15796845,-0.14895815,-0.14445823,0.26301187,-0.57408834,0.3859654,0.17591974,0.015870782,0.5477361,-0.1490783,-0.058169052,-0.7395954,0.022508917,-0.6655358,-0.09966187,0.3200836,0.1465958,0.034474973,-0.077726685,0.27405956,0.4053871,-0.37193215,0.11370708,0.019433083,-0.25510293,0.4914425,0.39450127,0.49066418,-0.46601766,0.59203714,0.081772715,-0.19743451,0.13234152,0.20008549,0.35880083,0.1376737,0.26816744,-0.04336464,-0.33810264,0.19253881,0.66313267,0.26694047,0.48503497,0.12500718,-0.15705715,0.35349515,0.068535,0.2928864,-0.056844182,-0.6580089,0.10207398,-0.29985005,0.04167301,0.52527195,0.2521566,0.24228397,-0.08647336,-0.23429474,-0.012340676,0.25494125,-0.19454327,-1.1511638,0.37835422,0.015964018,0.9173389,0.46890333,-0.21377341,0.023510002,0.7383263,0.048702937,0.24230601,0.37239754,0.059210174,-0.69389415,0.570055,-0.67528766,0.4796272,0.046300385,0.011094087,0.10033724,0.1638409,0.39400354,0.5333499,-0.20159322,-0.11392084,-0.084497415,-0.23318471,0.19025777,-0.40978178,0.2132521,-0.5816145,-0.30479443,0.44633335,0.44989422,0.3333903,-0.039525643,-0.039176844,-0.08794662,0.021757506,0.21552144,0.0028728002,0.053807326,-0.076498576,-0.7048158,-0.34145647,0.41485256,-0.058260642,0.15156633,-0.12951276,-0.20567916,0.21092139,-0.35060886,-0.12576768,-0.054271456,-0.7608543,0.14893042,-0.16635635,-0.38309574,0.3880346,-0.058519665,0.4401499,0.16028914,-0.05595753,-0.20565067,-0.08042513,0.2513308,0.86008394,-0.07886178,-0.27761075,-0.66713655,0.06980768,0.25060317,-0.32866722,-7.172273e-05,-0.0496975,-0.30246964,-0.45140296,0.42777875,-0.01662028,-0.20815776,0.2815661,-0.27765796,-0.013405858,0.72716177,-0.2260073,-0.13409042,-0.25987932,-0.20683455,-0.29335895,-0.15694486,-0.19496869,0.29678392,0.31576425,-0.057749506,-0.06389251,-0.20843734,-0.10217888,0.34631315,0.046141937,0.20248362,0.30629227,0.017663062,-0.32057503,-0.16137527,0.18306659,0.4345172,0.24198928,-0.13575846,-0.20326413,-0.5865011,-0.42515305,0.015294213,-0.08376021,0.39944845,0.16120216,-0.2737268,0.583932,0.065445796,1.0674922,0.17299975,-0.29836348,0.10616367,0.58064425,0.085680835,-0.0035015987,-0.29962704,0.8801107,0.60575175,-0.106739126,-0.03458617,-0.24019812,0.12572405,0.40699986,-0.20106696,-0.10738525,0.0501079,-0.6946522,-0.2426853,0.32248795,0.24274868,0.11464869,-0.044620506,-0.15339068,0.2472488,0.028404163,0.49848875,-0.27989742,-0.14273515,0.42567775,0.0032127316,0.20162226,0.059751272,-0.4533598,0.31098783,-0.5886562,0.2165667,-0.2779608,0.14225106,-0.32378754,-0.38341558,0.21586034,0.0117365215,0.5642483,-0.3682384,-0.5847045,-0.08008587,0.42905185,0.1938576,0.10801303,0.41553834,-0.25415552,-0.0099764,-0.0028742964,0.5736005,1.0404886,-0.16236559,0.13568519,0.38181144,-0.47649398,-0.76218975,0.4481489,-0.0860031,0.20042539,-0.017751263,-0.21965459,-0.563402,0.2083135,0.2581189,-0.17606892,0.066442244,-0.70824105,-0.41051027,0.18227635,-0.30368468,-0.1776843,-0.50007284,0.18338634,0.63272774,-0.39099935,-0.39355075,0.20741868,0.16803561,-0.12680301,-0.6165158,-0.00191084,-0.3013962,0.3229289,-0.07744757,-0.5037473,-0.1788844,0.108965725,-0.38337904,0.11605199,-0.104405716,-0.40458438,0.120844536,-0.33527163,0.10644878,0.9708027,-0.1844401,0.07147963,-0.7026506,-0.37524158,-0.9548334,-0.48266065,0.5035441,0.29243737,0.06799863,-0.635481,-0.029148601,-0.10029094,0.11180895,-0.26712105,-0.4373449,0.49629524,0.18115166,0.31987572,-0.13229749,-0.5624291,0.2318043,0.12537922,-0.034309644,-0.47110412,0.48528403,0.028208636,0.9658248,0.1597866,0.09285072,0.082129516,-0.6030016,-0.05462608,-0.14151002,-0.36524785,-0.66018355,0.34294584 +641,0.46734723,-0.24138418,-0.43293738,-0.12080859,-0.3088322,0.22234058,-0.26137644,0.2673916,0.03155188,-0.47594133,-0.04251384,-0.03183416,-0.042883594,0.35219702,-0.022334341,-0.64757645,0.020349273,0.079825394,-0.7375434,0.5383107,-0.64581925,0.42315334,0.120594166,0.29919997,-0.0091812415,0.4149777,0.4052692,0.038662765,0.09053396,-0.077535875,-0.34294847,0.045491226,-0.5569633,-0.056391858,-0.15920047,-0.33663923,-0.06764484,-0.38682318,-0.20085777,-0.7750154,0.29896098,-1.04404,0.6343688,-0.2291629,-0.23614372,0.037079614,0.30936363,0.26695698,-0.33302307,0.07889979,0.25601223,-0.26762,-0.1422859,-0.30312696,-0.14849617,-0.39687064,-0.5009162,-0.14824589,-0.62489146,-0.3804338,-0.19251013,0.16352841,-0.42528144,0.05568872,-0.21930183,0.34173664,-0.4621077,-0.09067772,0.2973188,-0.34998587,0.27243003,-0.7244153,0.038596023,-0.13148507,0.5145601,0.056335133,-0.08153764,0.39000633,0.4906659,0.52977556,0.251876,-0.377573,-0.117673144,-0.34301695,0.23371276,0.51775545,-0.12199427,-0.2554725,-0.25768852,0.03712846,0.35694885,0.41152814,0.061788075,-0.19998327,0.04542515,0.011963027,-0.13954505,0.5444377,0.47492138,-0.2729551,-0.36726937,0.23878029,0.687065,0.21591237,-0.27485442,0.088905685,-0.06752111,-0.5284446,-0.07875721,0.30285424,-0.09138465,0.4974451,-0.17295489,0.17233883,0.7934085,-0.14894535,0.039188642,-0.24142954,-0.170494,-0.07524608,-0.3328386,-0.10711879,0.19500007,-0.6310673,0.13293369,-0.34431463,0.5967464,0.21973245,-0.6736991,0.5610789,-0.46610993,0.17057954,0.08895503,0.65517265,0.6611473,0.36920124,0.07469184,1.019281,-0.26219696,0.060413655,-0.06054135,-0.2952931,-0.20875044,-0.19158903,0.3322716,-0.42109326,0.46935254,-0.10502998,0.28957245,0.03112655,0.59845406,-0.528369,-0.15288952,0.25062045,0.9244694,-0.3546236,0.08957307,0.7083235,1.084064,1.0964044,-0.09620492,1.3565397,0.22161399,-0.293623,-0.018969623,-0.13387896,-0.53396845,0.08659046,0.46438202,0.59211063,0.3569,-0.06396567,-0.2987813,0.39184004,-0.24993917,0.033937026,-0.0002240198,0.19647476,0.2329643,-0.093482755,-0.462258,0.1061122,0.046661068,-0.09097422,0.27407026,0.13578849,-0.25865677,0.5672947,-0.038803034,1.3317286,-0.30707386,0.15785328,0.21998475,0.46517235,0.37076202,-0.09243075,0.1123984,0.4982541,0.5447865,-0.14517738,-0.69186455,0.20379066,-0.54534304,-0.4185366,-0.076648735,-0.4469641,-0.11702796,0.010084472,-0.38267308,-0.20324047,0.05650568,-0.25619113,0.24250785,-2.7591221,-0.4277983,-0.30389833,0.28881773,-0.5001293,-0.26007178,-0.18574132,-0.52576625,0.37909937,0.20946242,0.41486096,-0.5479105,0.55119544,0.50118786,-0.39014027,-0.08155717,-0.5627494,-0.23020463,0.027289135,0.48253712,-0.028350009,-0.22748987,-0.16486575,0.2688844,0.7789795,0.19163655,0.14800204,0.44961184,0.3636065,0.09785199,0.5333465,-0.14478938,0.6654649,-0.4311075,-0.024114426,0.49552944,-0.24343811,0.20229748,-0.27318853,0.11132051,0.626742,-0.40070835,-0.8456956,-0.62570965,-0.38702306,0.9741918,-0.44152483,-0.6015636,0.2761822,-0.112858646,-0.09792141,0.0059390836,0.60285187,0.0018548028,0.26424143,-0.64801353,0.14720461,-0.1790404,0.21700294,-0.011336448,-0.03327087,-0.3915742,0.8291802,0.018565485,0.6988181,0.24039836,0.29232964,-0.08721728,-0.16675234,0.06917654,0.75921106,0.46505094,-0.03324529,-0.18330513,-0.14803472,-0.13073388,-0.35704878,-0.09220738,0.6948768,0.81396574,-0.038756054,0.14937393,0.19845612,-0.030121673,0.08145674,-0.08415176,-0.20339687,-0.14776541,0.023395373,0.39189354,0.29990068,-0.18028069,0.46184954,-0.2380491,0.23987365,-0.13287596,-0.6662531,0.6615613,0.5696279,-0.20743613,-0.016611984,0.40953276,0.47372058,-0.6229231,0.5127863,-0.7862037,-0.24463116,0.9185479,-0.2520638,-0.44076136,0.33460823,-0.25121358,0.08805139,-0.6558419,0.041119814,-0.44179899,-0.48446637,-0.29190332,-0.26823807,-3.4860313,0.2132366,-0.08468645,-0.0861914,-0.44705293,-0.17968445,0.27409506,-0.43933088,-0.6031452,0.21172884,0.20936105,0.65119183,-0.1612934,0.0973795,-0.37535566,-0.19702911,-0.10087196,0.34806055,-0.04080016,0.22203198,-0.25227836,-0.24888079,-0.09298282,0.013019832,-0.68996894,0.089592226,-0.6265863,-0.38425848,-0.1644206,-0.48553285,-0.060503006,0.7339401,-0.23872519,0.12223005,-0.11074602,0.19827507,-0.26713443,0.09759883,0.07267571,0.3664775,0.12914114,-0.16927607,0.18047585,-0.3565511,0.52570647,0.06333594,0.35151675,0.0859003,-0.09923136,-0.024250554,0.28045923,0.60436636,-0.05499151,1.0819517,0.09766475,-0.15051906,0.44492334,-0.30220175,-0.37090316,-0.7658836,-0.3299444,-0.02972145,-0.46748382,-0.6469375,-0.07378515,-0.41040298,-0.7593773,0.5132762,0.016723623,0.6578656,-0.0022321183,0.4735739,0.34499124,-0.32027224,0.03152136,-0.1262322,-0.11550314,-0.516018,-0.31045252,-0.78980935,-0.5983077,-0.030609634,0.68760675,-0.36474138,-0.11746294,-0.20025817,-0.2975883,0.036178835,0.1348404,0.36867183,0.19470975,0.4594443,0.05877288,-0.6481872,0.45330802,-0.17775781,-0.26992926,-0.5564486,0.23747036,0.56246084,-0.64538676,0.64441234,0.2194351,-0.02380441,-0.18677285,-0.6373273,-0.08907808,0.022550728,-0.21716428,0.44473606,0.06705922,-0.75765103,0.54891527,0.33563748,-0.25766414,-0.6611986,0.35373244,-0.12602033,-0.27481332,-0.15958415,0.39563054,0.23437683,-0.05576042,-0.118052736,0.07655376,-0.689262,0.29428092,0.2735375,0.057173524,0.6120717,-0.0625836,-0.46851054,-0.68507296,-0.05386544,-0.5813739,-0.25176352,0.37412828,-0.11010047,0.016003123,0.17816801,0.05917883,0.531223,-0.15169765,0.2711479,-0.10501294,-0.34981623,0.33292332,0.46675625,0.20093314,-0.43708023,0.66633797,0.1320133,-0.2585409,0.23557173,0.17737079,0.3874653,-0.0067498363,0.43048647,-0.3116624,-0.08733791,0.29771468,0.8107618,0.24226859,0.48768076,0.25189742,-0.1310046,0.44688457,-0.09679009,0.103079624,0.08216792,-0.5596402,-0.053771667,0.013269714,0.06578879,0.61791265,0.3509174,0.3081389,0.17854163,-0.03365129,-0.08782095,0.19569221,-0.1707635,-1.1479056,0.3545964,0.24907044,1.0260812,0.29782963,0.13228813,-0.2652834,0.5201759,-0.21564086,0.10309488,0.4175217,-0.18392588,-0.46023288,0.86044616,-0.56738406,0.35602084,-0.051986046,-0.049766142,0.18023981,0.05579142,0.45568022,0.98680633,-0.15839955,-0.045511328,0.0071600378,-0.19985011,0.15110649,-0.30411536,-0.03555807,-0.14992432,-0.44261295,0.6090297,0.35135362,0.346497,-0.26492837,-0.104044594,0.048932415,-0.16772838,0.10170494,-0.13809158,0.11875468,-0.09816783,-0.3491804,-0.27955684,0.4608035,0.033195335,0.24809197,-0.09084751,-0.3625271,0.113853626,0.042591702,0.035725422,-0.027116712,-0.8504738,0.14529245,-0.31126902,-0.6784887,0.38287467,-0.1604416,0.012071644,0.15603025,-0.14652133,-0.081624456,0.2691475,0.022521688,0.7976276,0.0035907966,-0.20739527,-0.5136069,0.057718534,0.16533755,-0.30899987,0.27105722,-0.25018814,0.0472637,-0.5762211,0.6968952,-0.19962113,-0.2700141,0.34306532,-0.21990879,-0.22236596,0.54409146,-0.1071008,0.0056933886,0.07163695,-0.17585562,-0.43245512,-0.08037821,-0.25574398,0.15366258,0.12030453,0.0804882,-0.027843704,-0.09332966,0.028991604,0.6416264,0.20296775,0.2300309,0.14699355,0.0040281075,-0.3453305,0.11876241,0.22826421,0.6110492,0.09454975,0.06318792,-0.17627867,-0.6031249,-0.37290382,0.33888197,-0.12515905,0.26060414,-0.011742524,-0.32458553,1.0018659,0.17386451,1.0501658,0.043572843,-0.3926511,-0.023357885,0.6952434,-0.10662782,0.028878918,-0.45865774,0.8606473,0.57626575,-0.024989188,0.037634157,-0.39928362,0.03183513,0.49921873,-0.47261095,-0.012302564,-0.20765826,-0.5696062,-0.46120957,0.12723179,0.17455758,0.1720004,-0.11601086,-0.009878263,0.19957045,0.097170845,0.40761724,-0.66696537,-0.20252933,0.26578757,0.010474541,-0.18177669,0.12929378,-0.28749248,0.42488876,-0.8352289,0.0929793,-0.3870735,0.0068199933,-0.06058981,-0.30254313,0.19699107,-0.012204289,0.29491186,-0.29939595,-0.3999131,0.06549205,0.31075212,0.13785563,0.15136436,0.6968406,-0.25676772,0.07084027,0.2225554,0.5632711,1.2858344,-0.24034564,0.030904565,0.18089703,-0.6016866,-0.68023425,0.2568768,-0.38800573,0.12133634,-0.15972349,-0.48121217,-0.4052278,0.28176,0.096148014,-0.09521462,0.15703116,-0.63427514,-0.36888868,0.2710261,-0.31843516,-0.2699449,-0.36731002,0.33286616,0.8457548,-0.23339847,-0.3185394,0.053728122,0.3868701,-0.29709515,-0.78065443,0.07132502,-0.22412737,0.30854335,0.061233938,-0.15905078,0.011000254,0.1627421,-0.6879479,0.089676104,0.19662094,-0.45459318,0.004153874,-0.27926943,-0.11575153,0.8689283,-0.25018406,-0.23269527,-0.62959343,-0.5503332,-0.782463,-0.48058462,0.28031278,0.083616376,0.042056836,-0.5012087,0.00731951,-0.23464385,-0.00021128995,0.059678923,-0.4255384,0.27842563,0.030937513,0.5563137,-0.26252487,-0.8056522,0.1281176,0.12756138,-0.10518885,-0.5240167,0.5968665,-0.1342124,0.7627864,0.13253215,-0.16401999,-0.044474702,-0.46391317,0.14521012,-0.4831798,-0.057184704,-0.90658826,0.12563793 +642,0.3906109,-0.14516155,-0.4537445,-0.19291124,-0.3239529,0.09419543,-0.07032126,0.2659919,0.2312609,-0.11888229,-0.035061553,-0.16249157,0.10086058,0.28293353,0.0052324254,-0.54601413,-0.09670504,0.044921264,-0.7079589,0.43733972,-0.51817524,0.29203662,-0.0070943832,0.23474504,0.24559103,0.44110596,0.1782972,-0.19223465,-0.08062733,0.23766091,-0.3498978,0.22447813,-0.3472362,-0.05561069,-0.059311334,-0.13988347,0.033688635,-0.38589364,-0.3406251,-0.7412584,0.2755878,-0.77766126,0.34163615,-0.051056102,-0.08947736,0.052422173,0.3739824,0.26557508,-0.47694993,-0.021958698,0.27947232,-0.19740921,-0.084740475,-0.14868167,-0.12506181,-0.3908914,-0.2112599,-0.07606348,-0.6499541,-0.37186107,-0.26421577,0.12693395,-0.38460076,-0.13300431,-0.035517365,0.47272536,-0.4136656,-0.15768543,0.25513038,-0.19872774,0.14534868,-0.60043794,0.03443492,-0.16653785,0.630878,-0.107794404,-0.106438495,0.45959288,0.41779402,0.25643298,0.13439265,-0.17635062,-0.1479035,-0.24804008,0.136567,0.32914084,-0.14995152,-0.5113122,-0.041736286,0.084532894,0.13764563,0.22618917,-0.0040528416,-0.18061972,-0.10531034,0.004159857,-0.20303033,0.48332888,0.41225275,-0.3115313,-0.19922848,0.33197135,0.5275163,0.30679837,-0.28016558,-0.04444828,-0.032269537,-0.47967827,-0.19823377,0.22354549,-0.17452736,0.4192607,-0.2827449,0.2468818,0.83538216,-0.20094796,-0.0544326,0.016176406,0.05724597,-0.25442773,-0.16836219,0.0186546,-0.045411114,-0.5400482,0.121500924,-0.14317992,0.6561917,0.2778271,-0.52289337,0.25126636,-0.45595193,0.33722654,-0.017395133,0.6287947,0.6566901,0.25507146,0.41329026,0.92358506,-0.2879564,0.1429929,0.06437975,-0.5192506,0.0383302,-0.27561238,0.08801681,-0.53043425,0.08198773,-0.21878995,-0.015805924,0.03378288,0.14196546,-0.45312333,-0.06710486,0.1888925,0.7161803,-0.3607484,-0.060900297,0.55131966,0.9203384,0.8561351,0.033268996,1.0833195,0.14844574,-0.35806805,0.25815365,-0.41538215,-0.7436233,0.25490597,0.300527,0.03305842,0.20890965,-0.04021372,-0.047337897,0.29228055,-0.4355825,0.060337774,-0.17283145,0.107741065,0.1844649,-0.017914912,-0.27680996,-0.29363856,-0.23140772,0.02459999,0.07730833,0.1764944,-0.24526037,0.4227825,-0.01614044,1.4540201,0.08939045,-0.018873945,0.10051702,0.62449056,0.22260569,0.011781748,-0.13352408,0.6009927,0.44160247,0.022649601,-0.6869341,0.22239275,-0.39523578,-0.39528772,-0.12743738,-0.4454483,-0.10026067,0.17001721,-0.4450289,-0.19851503,-0.10477225,-0.3458446,0.51785135,-2.8868287,-0.20404588,-0.121315956,0.258705,-0.25705016,-0.108188525,-0.11226487,-0.52725554,0.09484518,0.35761413,0.47137132,-0.7262373,0.33917776,0.43203917,-0.48089185,-0.16265756,-0.7031038,-0.16610658,-0.034681432,0.5159641,0.030743508,-0.069444805,-0.057096463,0.10641023,0.5980401,0.016550751,0.12516528,0.45543244,0.43400237,0.10245163,0.685237,0.0024600765,0.5368803,-0.2736159,-0.16304304,0.27745697,-0.37073395,0.13844956,-0.020594379,-0.003623936,0.6914436,-0.38307774,-0.8304688,-0.4834045,-0.18545023,1.0478877,-0.4102718,-0.2692078,0.32369733,-0.4444767,0.12346172,-0.11920554,0.6856507,-0.010101233,0.0072223437,-0.6236361,0.27794462,-0.02386477,0.07329645,0.021415146,-0.071491785,-0.1264473,0.7598914,-0.047645863,0.5933403,0.27679402,0.055289656,-0.13838443,-0.4318025,0.04436493,0.70033073,0.29399562,-0.014830011,-0.20186694,-0.18132102,-0.10219158,-0.1253657,0.07054406,0.43863696,0.6298318,-0.025683088,0.19782612,0.36987475,-0.13412383,0.017341735,-0.14497553,-0.19183554,-0.09783477,0.008193717,0.43032736,0.5560977,-0.21850553,0.57043815,-0.15908325,0.12895052,-0.15511864,-0.41369396,0.6985154,0.7074418,-0.2953192,-0.069087885,0.19976646,0.50998944,-0.37992123,0.3860421,-0.62563634,-0.1759611,0.7727437,-0.23818675,-0.23178686,0.3068358,-0.21749702,0.12901627,-0.83644027,0.1773477,-0.26979026,-0.33635724,-0.41983545,0.020362714,-3.3351269,0.09427748,-0.24842139,-0.19782244,-0.39667472,-0.07121237,0.21249089,-0.6207344,-0.43573833,0.09477596,0.17622684,0.5800805,0.00032423175,0.07242995,-0.28311473,-0.110004425,-0.17632091,0.09650431,-0.023304518,0.42572522,-0.19369996,-0.50804013,0.031793438,-0.14112371,-0.42326114,0.10473669,-0.46646303,-0.32211965,-0.16820899,-0.5511496,-0.37267327,0.7145415,-0.19077127,0.03709708,-0.25031394,0.036123082,-0.13229726,0.2620542,0.32360846,0.16639319,0.04053954,0.069838665,0.14832297,-0.29556948,0.27984098,-0.15448299,0.35591322,0.08925891,0.1503936,0.21417803,0.5393597,0.53177005,-0.17785649,1.0999545,0.42848763,-0.13774434,0.36789435,-0.36532986,-0.20318969,-0.5631026,-0.38582438,-0.06356174,-0.3384255,-0.4939818,-0.037239216,-0.33915508,-0.6871184,0.40810898,-0.106944144,0.39071012,0.043405652,0.29182294,0.5515845,-0.15826607,0.082569234,-0.07086471,-0.28537756,-0.61794865,-0.27750292,-0.58853656,-0.41301063,0.0636495,0.73179865,-0.40579247,-0.104159735,-0.16782111,-0.4658626,-0.04347616,0.013971182,0.20339252,0.48843035,0.3586291,-0.23382,-0.57409203,0.39347762,-0.08753919,-0.029787246,-0.48244163,0.0073462585,0.48988914,-0.7075076,0.57879084,0.2619877,0.050334435,-0.06318415,-0.47257632,-0.20300664,0.0017733154,-0.14248607,0.3780957,0.12537773,-0.75895786,0.5236079,0.18197292,-0.29794475,-0.6201532,0.41574094,0.040366516,-0.38951606,-0.0023384795,0.34290794,0.1467568,-0.091478966,-0.22564259,0.0849356,-0.3857536,0.24937204,0.29402518,-0.04929862,0.21959843,-0.07812266,-0.28545737,-0.5320473,0.01778063,-0.47364068,-0.12448476,0.32565373,0.123711124,0.1337002,-0.049433727,-0.0028292537,0.27292347,-0.22740261,0.05489772,0.101497516,-0.23399292,0.28208548,0.35140043,0.18082032,-0.41805774,0.5980926,-0.008784115,-0.23313098,0.21859226,0.077043295,0.27678826,0.16785206,0.2502062,0.012857339,-0.29873002,0.38470644,0.9218738,0.16940588,0.34894097,0.025445843,-0.12735349,0.36393023,0.030998588,0.14329907,0.072200656,-0.38981283,-0.15631863,-0.0049865176,0.20433174,0.4424162,0.29999498,0.31346485,0.066253126,-0.14516413,0.0400822,0.20796563,-0.045441333,-1.2227557,0.5062927,0.34060776,0.79853314,0.251143,0.0046821176,-0.16486944,0.797825,-0.3064993,0.052611426,0.46665052,-0.1000015,-0.53870195,0.5742105,-0.6115904,0.55106753,-0.025654165,-0.111589596,0.09285146,0.20970507,0.20200059,0.8262954,-0.24291594,-0.14053322,0.08309924,-0.37473643,0.13443278,-0.2799362,-0.12682268,-0.44035408,-0.33176968,0.4872725,0.20648219,0.18074152,-0.15011667,-0.030433813,-0.053370677,-0.19343548,0.27549234,-0.007132765,0.07924981,0.0033569757,-0.6414963,-0.2718012,0.46635035,-0.11961164,0.15996301,-0.15827344,-0.22704218,0.18731698,-0.15360962,0.053838078,-0.08988059,-0.42616898,0.008083063,-0.11145018,-0.60639626,0.56972265,-0.3648338,0.33873734,0.30326486,-0.117407724,-0.28472582,0.494127,0.17640682,0.82240164,-0.3127169,-0.22586864,-0.54326355,-0.086777814,0.2768284,-0.16199093,-0.08430718,-0.33683288,-0.05621024,-0.3689878,0.59943086,-0.2026984,-0.30848956,0.10044253,-0.4393114,-0.07876514,0.5199088,-0.14571401,-0.14487521,-0.14986965,0.030448822,-0.3361274,-0.044084616,-0.26561412,0.26699135,0.2575311,-0.007409944,-0.33438393,-0.2560174,-0.07566921,0.4848942,-0.13618279,0.39795527,0.1370984,0.08537478,-0.10801865,0.09445973,0.31638825,0.30684286,0.23021251,-0.007877349,-0.4487206,-0.22312942,-0.31452793,-0.035274904,-0.13367005,0.1286302,0.18241481,-0.32189015,0.92376316,-0.113851115,1.1510378,0.10841026,-0.31303656,-0.0043542525,0.59724003,-0.039076224,0.117486335,-0.13259348,0.70378023,0.57108015,0.0056886743,-0.16943137,-0.39208114,0.053938925,0.37799025,-0.25505704,0.059236914,0.044923887,-0.45011598,-0.3451674,0.35776395,0.06801124,0.30805716,-0.037212394,-0.15149625,0.035845738,0.11545267,0.36442497,-0.513923,-0.21337995,0.1904056,0.027800502,0.06645251,0.15764037,-0.42658156,0.5989273,-0.5931133,0.06980217,-0.2811019,0.3039976,-0.14856787,-0.1899304,0.11832832,-0.18173155,0.39917937,-0.18969904,-0.3616491,-0.15872677,0.49700928,-0.04882774,0.2260758,0.5093829,-0.21182093,0.011270931,0.107864216,0.5734086,1.0200268,-0.29764664,-0.049634457,0.2529154,-0.2821195,-0.61956674,0.48080432,-0.2440808,-0.04524174,-0.029973542,-0.262994,-0.3986587,0.2451748,0.26957193,0.27692494,-0.07406237,-0.5586991,-0.35484868,0.39784205,-0.21687451,-0.15306047,-0.33193076,0.3352711,0.62908834,-0.2899121,-0.38080102,0.12849244,0.2605948,-0.26826167,-0.4660632,0.09178251,-0.2511586,0.46739224,0.14264865,-0.21439967,0.040110692,0.22657347,-0.4257114,0.3665119,0.17840134,-0.4173042,0.12369501,0.044558246,-0.1530332,1.0000083,-0.29782265,-0.04429288,-0.54203206,-0.47434267,-0.8790736,-0.4964278,0.3622509,0.120332435,-0.09041542,-0.48095545,-0.026094718,0.066752784,-0.11066371,0.007551532,-0.49477056,0.44460818,0.08667327,0.41537154,-0.2130024,-0.7815174,0.084086575,-0.07761723,-0.08410892,-0.5498688,0.59082747,-0.16950953,0.9154932,0.052532036,-0.06884143,0.18352702,-0.21111596,-0.07048906,-0.31180838,-0.33239624,-0.63200307,-0.08942941 +643,0.5892473,-0.14437553,-0.40120998,-0.3587014,-0.43316644,0.2564835,-0.18138105,0.25863066,0.337845,-0.46195635,-0.16624568,-0.0718216,0.010178236,0.49488872,-0.20492776,-0.9587104,-0.05916918,0.1837963,-0.66143095,0.35533735,-0.5815341,0.3863148,0.25644985,0.3172104,0.07282475,0.24427682,0.38776433,-0.104454674,-0.07937921,-0.09743464,-0.19037032,0.0119514605,-0.7221339,0.46325767,-0.03387088,-0.10875313,0.01657829,-0.44719803,-0.24967885,-0.6177339,0.23979743,-0.7987741,0.5578069,-0.00495437,-0.27655184,-0.077711634,0.2896442,0.22411264,-0.43032536,0.21138176,0.18831755,-0.33586723,-0.06190491,-0.22267577,-0.3752667,-0.5020112,-0.57637304,0.050786015,-0.6252192,-0.12508526,-0.32835162,0.2954669,-0.33382687,-0.00050524564,-0.07220113,0.46521804,-0.3564638,0.07740163,0.37107986,-0.2935622,0.12930815,-0.32024342,-0.20890948,-0.1822056,0.3579369,0.09021333,-0.32027566,0.39533693,0.3525172,0.4833329,0.15909435,-0.37207025,-0.19092312,-0.24947235,0.30741128,0.4173885,0.0055989143,-0.5170052,-0.3877161,-0.15163308,0.3228555,0.23073807,-0.020368733,-0.5160258,0.19468205,-0.04684923,-0.2700388,0.46905416,0.47024888,-0.38316303,-0.11563386,0.4038963,0.33431715,0.015368664,-0.1574482,0.16610728,-0.016163852,-0.7096628,-0.25796595,0.40838498,-0.01699493,0.52069396,-0.17784823,0.14136754,0.7727101,-0.27239892,-0.12443868,-0.21840884,-0.09541288,-0.10161221,-0.28845707,-0.04686022,-0.01276781,-0.40665022,-0.16370885,-0.2840212,0.9753587,0.10414282,-0.74536264,0.25256538,-0.5320444,0.14829375,-0.14537415,0.68888575,0.7506829,0.49087635,0.17062527,0.9338366,-0.5450217,0.06650514,-0.08050946,-0.4160433,-0.016165394,-0.18341634,0.07209413,-0.42749888,0.05214397,-0.012378912,0.11415969,-0.00443498,0.63641095,-0.2808495,-0.13028045,0.023976304,0.6994123,-0.45636413,-0.1294797,0.919773,0.98028505,0.977135,0.15553209,1.4716505,0.4751884,-0.22388604,0.010217657,-0.28568107,-0.53913176,0.24286151,0.24681476,0.16022484,0.22570314,-0.052837316,0.10553001,0.32257617,-0.46417114,0.041773625,-0.067072935,0.36372584,-0.06975316,-0.00896276,-0.46544248,-0.30037877,0.25521445,-0.011432336,0.2752221,0.29583645,-0.24424174,0.48801655,-0.05625556,1.1792365,0.15360935,0.09750088,-0.026629122,0.3056505,0.3019702,-0.05290006,-0.14985657,0.37782362,0.42904314,-0.18475294,-0.68087393,-0.069486745,-0.26560298,-0.35157618,-0.30300504,-0.5447559,-0.15398818,-0.10904069,-0.2920442,-0.2615374,0.097327724,-0.40499833,0.574925,-2.0891533,-0.3063203,-0.24656527,0.34545857,-0.21157953,-0.22013783,-0.4515047,-0.513271,0.49549943,0.35630623,0.39180246,-0.5431996,0.3767567,0.3770464,-0.24209358,-0.25219032,-0.6638458,0.05714445,-0.178449,0.2817999,-0.026295634,-0.2013371,-0.3450957,0.25775892,0.73829883,0.09304993,0.03546756,0.31807476,0.58902854,-0.021211404,0.6409563,0.02009639,0.62968,-0.35172898,-0.09070773,0.26540276,-0.39288676,0.27091524,-0.021828862,0.114375405,0.36990485,-0.6355023,-0.7814984,-0.7739807,-0.51446635,1.1982785,-0.5750716,-0.46710664,0.2658445,-0.02204639,-0.15195984,0.21401101,0.6675082,-0.15002912,0.14320005,-0.7108997,0.07868603,0.18819532,0.3049721,-0.18234117,0.13405688,-0.32768422,0.8125274,-0.31400818,0.54356724,0.18320674,0.2502264,-0.37001187,-0.49472317,0.14341682,1.0513688,0.277243,0.17320916,-0.15644623,-0.3606583,-0.31124517,-0.30351004,-0.00564345,0.7370629,0.7841196,-0.046367243,0.03619498,0.43115765,-0.28607818,0.0960636,-0.05536055,-0.38192898,-0.03922216,-0.09943059,0.65148234,0.49038136,-0.032721944,0.449101,-0.21291678,0.33953434,-0.3169586,-0.50927424,0.6099569,0.79833895,-0.22696987,-0.2567269,0.63313097,0.4696651,-0.35689008,0.44935232,-0.57498145,-0.54625785,0.7405802,-0.024212072,-0.40287983,0.07258199,-0.46371862,0.05654231,-1.01053,0.3150725,-0.060662653,-0.6060301,-0.40193045,-0.246909,-3.6287408,0.16474636,-0.10295972,-0.021373378,-0.20799376,-0.074585795,0.24312942,-0.4205877,-0.5472532,0.07081135,-0.05705786,0.65341496,-0.031976096,0.2676821,-0.33517697,-0.15412058,-0.2706331,0.14482631,0.022728233,0.35613397,-0.007318266,-0.30641106,0.2592108,-0.4387472,-0.45402798,0.1201028,-0.5611421,-0.55674434,-0.10895911,-0.48508924,-0.39923015,0.83126676,-0.6201409,0.09817702,-0.2671775,0.058827125,-0.1785753,0.36449793,0.11558461,0.30957416,0.21094945,-0.08748768,-0.34510374,-0.34966233,0.36161095,0.02144759,0.23746523,0.25348696,-0.06840027,0.06456096,0.4602486,0.5670887,-0.11145251,0.7872877,0.22249979,0.062464233,0.25528568,-0.33217907,-0.38699296,-0.51840204,-0.38392088,-0.1788086,-0.49694985,-0.47762972,-0.22556566,-0.35544574,-0.88483846,0.3762873,0.17801526,-0.019183429,-0.20993617,0.15223314,0.22175997,-0.097316705,0.029384898,-0.09873095,-0.267607,-0.54365146,-0.5589268,-0.60301656,-0.48571116,0.08392882,1.1230532,-0.071086116,-0.29885912,-0.084189095,-0.39256054,0.10091719,-0.014382646,0.1744782,0.17004949,0.2755391,-0.047381017,-0.80362266,0.47296765,-0.19573878,-0.04004466,-0.7328222,0.06386731,0.8369532,-0.70276797,0.62788194,0.45459396,0.2612445,-0.022168856,-0.4198362,-0.3363542,0.13393515,-0.15158845,0.5475131,0.10461367,-0.5516786,0.5853344,0.109029934,-0.05728505,-0.8369292,0.44575852,-0.0012597534,-0.189835,0.18238877,0.41927433,0.067544766,-0.13350241,-0.31689578,0.13564566,-0.5364619,0.3479296,0.34427595,0.1548225,0.47608778,-0.19898833,-0.19489948,-0.7031966,-0.29410756,-0.5931742,-0.3370272,-0.10002653,0.13357916,0.012881994,0.14843836,-0.06858997,0.3722878,-0.33995336,0.12755206,-0.08915309,-0.124954574,0.36584142,0.3242543,0.49189314,-0.4631451,0.6908884,0.06755185,0.16514008,-0.1855119,0.19193223,0.38294175,0.30029896,0.44090125,-0.10363983,-0.021425694,0.19520047,0.59875053,0.1454811,0.26560423,0.3984126,-0.24753274,0.4662037,0.19547704,0.12742437,0.052611608,-0.2374162,-0.21628979,-0.13604246,0.093273595,0.4210033,0.25997013,0.42593253,0.03814674,-0.10762914,0.28246278,0.056243714,-0.22601502,-1.4338322,0.34204796,0.2273938,0.582595,0.46500382,-0.11368031,0.0755534,0.55143726,-0.29435107,0.057600815,0.23988749,0.041835997,-0.24095863,0.5269029,-0.49270937,0.49931827,-0.32402337,-0.06236986,0.059756838,0.29430902,0.35962582,1.0340303,0.09689543,0.18805741,0.013351541,-0.2533685,0.18792708,-0.4188059,0.17252883,-0.6751525,-0.38747662,0.5769609,0.15802813,0.38285035,-0.27429527,-0.101836,0.08114045,-0.2323579,-0.10327704,-0.101533376,-0.21258637,0.082042344,-0.8555836,-0.28313607,0.4659684,-0.16175412,0.08475265,0.26078966,-0.2954821,0.18134774,-0.20929743,0.065666236,-0.059043817,-0.75248104,-0.31095225,-0.40565678,-0.43709293,0.15683796,-0.6414471,0.27360523,0.19543058,-0.033717398,-0.3163096,0.20226361,0.26703003,0.8392331,0.16787481,-0.29113835,-0.27927476,-0.055323403,0.41829997,-0.41716737,0.00032775218,-0.3433353,0.051959276,-0.6629553,0.5311792,-0.144596,-0.27237952,0.13703667,-0.09885537,-0.063582376,0.44623244,-0.2850424,-0.10236819,0.18732572,-0.04479464,-0.15595077,-0.037417952,-0.40714365,0.29212347,-0.03661755,0.033891458,0.16145119,-0.1437392,-0.09470128,0.29093367,0.056710042,0.28216326,0.38277495,0.07371952,-0.13291685,0.1325596,0.0040146527,0.43883294,0.25394642,-0.031484388,-0.2101418,-0.19249047,-0.25664082,0.419161,-0.21039897,0.021574227,0.13864228,-0.47245917,0.7218122,0.17897789,1.0886409,0.23288439,-0.3482394,0.102633245,0.54571784,0.17357913,0.17634603,-0.3532717,0.8824281,0.542541,-0.19749641,-0.22971341,-0.5263546,-0.11598775,0.33048952,-0.31534842,-0.33046675,-0.15741846,-0.69926304,-0.1864155,0.07592477,0.17127515,0.1378643,0.0437052,-0.11659749,0.042851813,0.24984536,0.5073541,-0.6201565,0.23767461,0.2885338,0.28522223,0.1494263,0.25142092,-0.18820238,0.41841894,-0.73493826,0.25898287,-0.35212305,0.13831021,-0.07092887,-0.20413774,0.2605364,0.12805884,0.3562765,-0.2954677,-0.22329892,-0.22274789,0.87734294,0.22938174,0.33654004,0.828822,-0.25070497,-0.26313952,0.15615003,0.6170045,1.4815037,-0.09679189,0.12567848,0.38059103,-0.30253595,-0.56413895,0.25653404,-0.4560782,-0.0036035501,-0.045325935,-0.5292151,-0.37615106,0.32852003,0.07535923,0.10725023,0.12782668,-0.4710526,-0.25859153,0.52280664,-0.1865721,-0.29783246,-0.2153953,0.31412226,0.47327676,-0.2691977,-0.28619,0.041233633,0.35160062,-0.301552,-0.6442102,-0.0632714,-0.39071047,0.3538918,0.11770857,-0.17651002,-0.2179877,0.07154013,-0.4170491,0.2348732,0.24744861,-0.3561451,0.046931062,-0.070318215,-0.17109202,0.9072574,-0.001857627,0.12693137,-0.6929855,-0.44916314,-0.9091853,-0.29141074,0.38846117,0.0980965,-0.12939762,-0.5004565,-0.2647425,-0.07001969,0.041794892,0.11065228,-0.5612052,0.31833854,0.095541514,0.48454726,-0.0073687905,-0.9241439,0.12312384,0.09871577,-0.35006955,-0.62859017,0.5403852,-0.16910975,0.7780675,0.04680912,0.08610817,0.19399783,-0.66709167,0.25555187,-0.2572676,-0.15703847,-0.685208,0.14712027 +644,0.84500957,-0.3654858,-0.571273,0.047905143,-0.4199753,-0.17204519,-0.18318991,0.41993377,0.36417085,-0.42498854,-0.33623436,-0.07554309,0.07494989,0.08275355,-0.12791675,-0.49634263,-0.0643856,0.22413152,-0.78987634,0.96637875,-0.21303965,0.41252756,0.29702377,0.4464835,0.1277552,0.42733383,0.23524566,0.20829296,-0.0065181744,0.044358566,-0.06041478,-0.01998799,-0.6063971,0.3618983,-0.46006393,-0.3646495,-0.13132814,-0.42527798,-0.18810941,-0.8413769,0.180309,-1.0033501,0.47024518,-0.060952462,-0.29238173,-0.5314783,0.1279789,0.17046782,-0.30160806,-0.19882804,0.04115423,-0.3100907,-0.21241368,-0.7165691,0.09461565,-0.4317447,-0.45187148,-0.05638865,-0.49848482,-0.26271147,-0.0388929,0.30039787,-0.27264094,0.0032437472,-0.17404571,0.80911916,-0.25984162,0.01802308,0.5436582,-0.3032781,0.066332795,-0.7304313,-0.2542052,-0.17522687,0.26232478,0.32708934,-0.47235784,0.35131615,0.083896704,0.364048,0.40633252,-0.46397018,-0.19384147,-0.006525506,-0.00024539774,0.36842233,-0.18961939,-0.2714141,-0.18132788,0.10607683,0.39263117,0.42951047,0.26770848,-0.33540282,0.14697891,-0.40467432,-0.029730106,0.48274633,0.642241,0.044281363,-0.28895146,0.115205854,0.66072935,-0.010233435,-0.30503923,-0.24086428,-0.015649986,-0.41844404,-0.053425692,0.1590212,0.09700361,0.69763887,-0.10457444,0.17611155,0.6882376,-0.011745139,-0.058704898,0.31290317,0.30713475,-0.11014425,-0.5202594,-0.098305374,0.51519734,-0.49509487,-0.18582734,-0.5728762,0.7036529,0.046721973,-0.67652094,0.43264377,-0.6176749,0.061151076,0.1438577,0.49349278,0.7594551,0.57956815,0.40960532,0.8076059,-0.05432893,0.20577985,-0.09389289,-0.1300192,-0.13417679,-0.49922988,0.3264282,-0.36812142,0.2746335,-0.14507937,-0.02730362,0.016622717,0.4514756,-0.5682016,-0.52649504,0.44614756,0.8250984,-0.1282388,-0.099103,0.9103649,1.1736199,0.9193814,0.039318994,1.1103072,0.15473165,-0.16815816,0.21385075,0.015095743,-0.83180976,0.20833617,0.35890236,0.2125743,0.50061053,-0.13556793,-0.2772249,0.4663046,-0.42496002,-0.08015104,-0.025379466,0.33558527,0.15680018,-0.07821358,-0.64582473,-0.2854825,-0.060358897,-0.13765456,0.01888904,0.4156996,-0.1933137,0.39868096,-0.23867498,1.1823075,-0.10828161,0.10596874,0.35703027,0.55818224,0.37935588,-0.25830728,-0.020954989,0.47923848,0.08171511,0.12330305,-0.34420738,0.19978827,-0.48412278,-0.4907525,0.008285555,-0.23658966,-0.13052984,0.17587048,-0.5803093,-0.43728915,-0.11164019,-0.24959378,0.22008727,-2.6228678,-0.13934106,-0.13330348,0.54357505,-0.48826763,-0.21478952,0.08654283,-0.63840455,0.06783287,0.15018311,0.62280303,-0.6084084,0.2801561,0.5523679,-0.7537872,-0.16270116,-0.8040839,0.2277864,-0.1029747,0.40878427,-0.110956475,-0.2526929,0.03565719,-0.006147401,0.62588024,0.15641475,0.15425435,0.6827764,0.37657872,-0.122096606,0.27270177,-0.10506189,0.519486,-0.6305375,-0.2449378,0.33057186,-0.51451296,0.2513523,0.021309821,0.030897664,0.7998598,-0.5940378,-0.7173834,-0.5609123,0.034380946,0.87995046,-0.3814824,-0.59732336,0.045088258,-0.27099565,-0.07101994,-0.04049243,0.80372804,-0.054009024,0.32832053,-0.5829781,0.074504495,-0.059601296,0.24203539,-0.023357494,-0.24691053,-0.4985975,0.9371527,0.02207691,0.7255842,0.22659945,0.32566878,-0.41517648,-0.37346423,0.11538319,0.60254616,0.3317377,-0.0110267075,-0.09743764,-0.041143756,-0.18262973,-0.19873309,0.21218304,0.81140256,0.7100639,-0.16481802,0.16267727,0.39450514,0.00030892817,0.1419902,0.014276526,-0.22494961,-0.41249657,0.17059688,0.43433598,0.91808504,-0.17439665,0.2128158,-0.24911755,0.4960576,-0.17146812,-0.65878063,0.6389169,0.6108704,-0.18962461,-0.063394204,0.5633245,0.54694945,-0.64667106,0.5934271,-0.61730653,-0.4495881,0.556027,-0.10280816,-0.6632057,0.12604079,-0.27495593,0.27753153,-0.96715546,0.35231796,-0.3887456,-0.39248502,-0.6146872,-0.048016127,-2.312313,0.27852413,-0.26752484,-0.0032600977,-0.30450118,-0.14139737,0.007627265,-0.92031837,-0.43941107,0.34177145,0.22178084,0.6309399,-0.10549193,0.20192887,-0.25288212,-0.49809638,-0.12275324,0.34366223,0.16312428,0.31657112,-0.31868476,-0.41358623,-0.14883412,0.1449521,-0.46014175,0.15928279,-0.7808073,-0.61820793,-0.2705795,-0.7092531,-0.38861942,0.51444966,-0.15736637,0.05087329,-0.255519,0.04204066,-0.062276557,0.07073932,-0.022785328,0.45065725,0.24689035,-0.07896933,0.2368303,-0.47388554,0.2751995,0.012144209,0.49215004,0.28975716,-0.3195096,0.33571455,0.42189753,0.73742366,-0.26113585,1.0427307,0.26014608,-0.03056132,0.38535118,-0.1345572,-0.39576942,-0.76213497,-0.19001408,0.19796532,-0.35424736,-0.3750777,0.1937893,-0.4047168,-0.7863745,0.7181954,-0.023133676,0.5445479,0.06339831,0.50801826,0.5757686,-0.3621333,-0.14424615,0.008186362,-0.22380252,-0.60736984,-0.2809295,-0.62637734,-0.6194388,0.082172364,1.0169238,-0.24149624,0.039681986,0.24461742,-0.35498,0.1597657,0.19758119,0.043824382,0.049524155,0.621897,0.14031431,-0.4050476,0.40384626,-0.011182663,-0.18278876,-0.2701731,0.48914945,0.4575818,-0.7778128,0.78616697,0.3046728,0.14020151,-0.43663552,-0.5465486,-0.28465423,0.10236507,-0.029413491,0.50841635,0.5440465,-0.89090425,0.16698599,0.22570439,-0.56874907,-0.96044123,0.24864225,-0.18044244,-0.38728675,-0.29774097,0.4994006,-0.014779741,-0.20875864,-0.17232518,0.15091792,-0.4098691,0.074272685,0.12882224,-0.06370825,0.35031015,-0.075226754,-0.29965317,-0.7295913,0.28152367,-0.73176366,-0.25042105,0.6596849,0.022447325,-0.2397676,0.20847028,0.1741621,0.4437811,-0.13850862,0.19035487,-0.29631945,-0.42054322,0.48292992,0.43569204,0.5072001,-0.5441953,0.6440897,0.18377851,-0.25425026,-0.0073376787,0.22410497,0.38033298,0.079280406,0.43562782,-0.26989824,0.019421317,0.095681906,0.6517229,0.20033722,0.5058879,0.23751326,0.022896918,0.32983768,-0.071132325,0.31164172,-0.20231624,-0.63954806,0.10036006,-0.122881584,0.11831672,0.3956154,0.095642515,0.40618375,0.010914613,-0.20893866,-0.0022674582,0.3711792,-0.05322593,-1.3241225,0.20554477,0.19280772,1.0124409,0.3598454,0.13949904,-0.57342845,0.8069328,-0.110470936,0.25854608,0.32431805,-0.2096528,-0.43145683,0.8537554,-0.5027374,0.5608293,-0.21544673,-0.2141679,0.18525161,0.13471769,0.45743668,0.66731215,-0.20568047,-0.06427239,-0.1143123,-0.14272514,-0.08605793,-0.4014611,0.21836545,-0.3889046,-0.5562118,0.75819594,0.37378657,0.46093577,-0.34959346,-0.0445375,-0.057853356,-0.21415855,0.44099626,-0.1339647,0.027557937,0.26566112,-0.48672736,-0.16027914,0.55930626,-0.047329925,0.173958,-0.06860865,-0.1469362,0.024429088,-0.14961118,-0.017681729,-0.029463649,-0.87795866,0.24254131,-0.3754556,-0.60800546,0.42642835,-0.1857958,-0.055734456,0.2271872,0.05481905,-0.22412986,0.28803432,-0.012939618,0.95578665,-0.0035321603,-0.34474367,-0.3878341,0.28000236,0.08819547,-0.2920637,0.43129233,-0.34317482,0.2314949,-0.551148,0.63757384,0.060933437,-0.54457,0.026384912,-0.13967167,-0.1003336,0.71063703,-0.041092873,-0.20838672,0.025671883,0.012810393,-0.42417195,-0.1532083,-0.29235694,0.28753445,0.3072778,0.15793636,-0.07767706,-0.28719023,0.17180377,0.5522352,0.1670145,0.33129534,0.23141123,0.15229654,-0.24782857,0.42920053,0.2769924,0.53233635,0.21724032,-0.058204092,-0.35808966,-0.37070188,-0.46981,0.11622726,0.035473894,0.25971267,0.25061598,0.02218804,1.110217,-0.030919164,1.2288929,-0.058606353,-0.33506587,0.11867383,0.5936363,-0.22307421,-0.1268778,-0.51050514,1.2754916,0.65463424,-0.11369924,0.0861908,-0.37841588,-0.1270269,0.31783485,-0.44209945,0.04921148,-0.11038561,-0.5190403,-0.3355704,0.06423473,0.20602517,0.13577595,-0.27170783,0.07432533,0.2925038,0.066423014,0.06185918,-0.6599198,-0.1037072,0.1679696,0.23819852,-0.10754774,0.20833264,-0.43245742,0.37279952,-1.0534247,0.43007514,-0.5313381,0.15779948,-0.13154289,-0.5050089,0.081872694,-0.00054984743,0.6117832,-0.6178243,-0.3701783,-0.13952166,0.44571447,0.17809787,0.020528192,0.670717,-0.24994868,-0.04285395,0.15784799,0.6120447,1.1797179,-0.39242116,-0.0040291725,0.029738687,-0.62459284,-0.91028094,0.42408752,-0.20373812,-0.06866726,-0.35693625,-0.29606548,-0.7160364,0.09911487,0.27722555,-0.08781987,-0.10548322,-0.77615285,-0.07388312,0.05247437,-0.5381136,-0.15326281,-0.17553128,0.48351032,0.58893496,0.08782118,-0.42935008,-0.047844365,0.24500869,-0.14862368,-0.5032898,-0.13577296,-0.35511854,0.13351426,-0.06896818,-0.4541815,-0.33567464,0.15393467,-0.6388729,0.10208488,0.058170866,-0.29847664,0.080028266,-0.34915712,-0.1266138,1.1107974,0.0054202457,0.096695535,-0.52834356,-0.6772028,-0.9404638,-0.59547323,0.13335735,-0.03198589,0.2693257,-0.6151402,0.013689572,-0.3922467,-0.111660846,-0.11276283,-0.3389479,0.2652445,0.1435466,0.59556293,-0.53822196,-0.9946938,0.34557924,0.23519407,0.04585564,-0.45258057,0.29330322,-0.049605545,0.83292127,0.006434914,-0.061490472,0.14713436,-0.6819782,0.1380867,-0.2848737,-0.101247124,-0.651357,0.1045438 +645,0.39935187,-0.05841663,-0.4560293,-0.058621544,-0.24413691,0.028915852,-0.19307178,0.66808987,0.28128496,-0.22595464,-0.03232687,-0.041503165,0.048991546,0.377034,-0.15982926,-0.446381,0.011683218,0.21317214,-0.54720414,0.7220032,-0.345375,0.20587379,-0.38742065,0.4159395,0.25060087,0.25154015,-0.1063854,0.07215665,-0.12626359,0.012212137,-0.0062909573,0.55176324,-0.29091316,0.102789044,-0.32270923,-0.24016523,-0.09912828,-0.40762094,-0.46839017,-0.80891514,0.31667477,-0.6388289,0.5153385,-0.15341006,-0.28467155,0.27842385,0.047706075,0.2553034,-0.11395265,-0.16563939,0.09695093,0.01127167,0.016492039,-0.16074716,-0.3438382,-0.4140574,-0.45733875,0.01028088,-0.6222226,-0.048270047,-0.12022475,0.08669516,-0.201193,-0.1080445,0.013600718,0.53719866,-0.42422742,0.19410464,0.08388708,0.02774299,-0.052617766,-0.6642847,-0.0986411,-0.126473,0.37089822,-0.049650297,-0.28751513,0.34321362,0.1668347,0.3455491,-0.2420997,-0.067315206,-0.40203592,0.027509186,0.05105701,0.426027,-0.23595177,-0.6198963,-0.10253981,0.15968591,0.26357144,0.14484707,0.0932317,-0.106968194,-0.12731923,0.008339344,-0.13763146,0.49142247,0.57502013,-0.23121424,-0.17994425,0.4206882,0.43318337,0.3864197,-0.31949347,-0.012755534,-0.02654792,-0.54047257,-0.10174379,-0.049722657,-0.09813169,0.55086094,-0.078350484,0.17029063,0.44430333,-0.1305929,-0.16711819,0.14054361,0.06336534,0.050965406,-0.14857264,-0.19801532,0.117308624,-0.44254994,0.1434006,-0.011748757,0.4703993,0.17914413,-0.6865335,0.31677604,-0.4573494,0.08485724,-0.041444212,0.39092493,0.7549776,0.43029916,0.30360863,0.5447671,-0.11089766,0.16832653,-0.18035895,-0.22252733,-0.039769866,-0.17419757,-0.19141439,-0.56832945,0.1071606,-0.18049811,-0.22310588,0.18270348,0.29772386,-0.44646728,-0.19694918,0.09513673,0.8273202,-0.2579722,-0.18039024,0.7839293,1.0175568,0.8374926,-0.09366059,0.90100527,-0.0047355816,-0.12342939,0.23703974,-0.3312205,-0.6497133,0.29070914,0.13758768,-0.30269074,0.3599884,0.0052804425,0.02687642,0.30477336,-0.3795877,-0.0480128,-0.16457939,0.12839106,0.18794665,-0.033871256,-0.39026606,-0.33922,-0.18303424,-0.10683308,0.25271794,0.2992364,-0.32703966,0.2390979,-0.070503846,1.4773755,0.12712489,-0.05008826,0.11082427,0.6416835,0.2960849,-0.15393059,-0.13607244,0.50964403,0.34669048,0.14917111,-0.46868616,0.17308217,-0.23639524,-0.4731451,-0.10414719,-0.46877897,-0.13144249,0.022839941,-0.4566217,-0.16418281,-0.08588998,-0.2000368,0.4755175,-3.0049696,-0.20097423,0.03812339,0.39644343,-0.108951025,-0.236757,-0.2742119,-0.43886894,0.3906715,0.26029536,0.39621145,-0.53209835,0.4703525,0.288562,-0.63007313,-0.09161443,-0.51685214,-0.054198265,0.040319726,0.46065164,-0.09479338,0.032167174,0.3244685,0.3160543,0.5260993,0.023304045,0.21038483,0.3150826,0.438897,0.055383373,0.32416123,-0.22153345,0.4747697,-0.28897506,-0.18109159,0.25130287,-0.44073072,0.29998982,-0.08436925,0.103312016,0.53073204,-0.46027088,-0.9775684,-0.47260922,0.28164703,1.1723098,-0.1543885,-0.3713472,0.19939306,-0.5792769,-0.24938701,-0.15586159,0.54364705,0.04319219,-0.18912187,-0.6532926,-0.03717301,-0.051355258,0.052355446,-0.0829498,0.033821538,-0.21459606,0.4716038,0.02769436,0.41432807,0.21675928,0.1907524,-0.3117949,-0.4922511,0.008849021,0.5822499,0.32168123,0.056129996,-0.15786272,-0.2828734,-0.43683773,0.022001445,0.09334129,0.72086555,0.35611558,-0.10235184,0.15193133,0.263412,-0.027517892,0.09947255,-0.29046136,-0.15124588,-0.09017808,0.0969774,0.4941467,0.6049977,-0.29250032,0.50562257,0.09176847,0.122193515,-0.19790243,-0.32492143,0.31391916,1.1697023,-0.29417267,-0.33663145,0.40500268,0.49381208,-0.19438605,0.32468942,-0.36977863,-0.20539287,0.43624383,-0.2323274,-0.30382776,0.32960936,-0.11253624,0.121207505,-0.69706464,0.23549116,-0.21303827,-0.5295718,-0.6293667,0.09444137,-2.9276032,0.0934098,-0.12056433,-0.3634957,-0.119786784,-0.31666416,0.043977905,-0.50443107,-0.5703596,0.15570463,0.08714093,0.6537667,-0.25111824,0.034057572,-0.22863936,-0.47502097,-0.29990578,0.18074971,0.14631397,0.50779736,-0.06878508,-0.43101156,-0.13782465,-0.08825155,-0.3507909,0.13531356,-0.5209538,-0.16300118,-0.06453796,-0.5153026,-0.1627256,0.6310625,-0.22361559,-0.0076143313,-0.2303401,0.017054718,0.028397743,0.23026899,0.04292441,0.14805788,0.19542864,-0.15809356,0.21056569,-0.20247462,0.25695363,-0.06781586,0.30340394,0.2705486,0.07422043,0.22723423,0.54922295,0.6232105,-0.1623091,0.9161224,0.5474998,-0.020931104,0.2530607,-0.3499976,-0.23673654,-0.34864172,-0.20752066,-0.06427042,-0.43112004,-0.4240784,-0.13415544,-0.4563591,-0.7625028,0.44964412,-0.12523015,0.17298463,0.06599777,0.34573537,0.6446904,-0.16132432,0.1155256,0.0016554408,-0.2070512,-0.4410314,-0.23518886,-0.43928465,-0.33409098,0.07680954,0.8920224,-0.3267153,0.016901445,0.020745628,-0.29972667,-0.03230288,0.13002433,0.08036748,0.23149997,0.23242253,-0.32282084,-0.50543547,0.30367216,-0.15727593,-0.20110528,-0.46991768,0.26333094,0.4955946,-0.46128577,0.64143634,0.26467708,-0.07056959,-0.23142949,-0.5766942,-0.03354102,0.043771394,-0.15518671,0.44246808,0.2998463,-0.82222706,0.39598513,0.29116952,-0.30258757,-0.6230608,0.65549177,-0.04336589,-0.33809793,-0.10969609,0.33083886,0.19187886,0.012431096,-0.39208058,0.17771892,-0.24461079,0.14092386,0.22345234,-0.14741762,0.238871,-0.27764592,0.044025753,-0.685712,-0.035233866,-0.46853873,-0.2180616,0.39640844,0.09228982,0.29096317,-0.055759683,0.11123489,0.30112934,-0.44443274,0.12944758,-0.09247025,-0.19435182,0.34978914,0.37127483,0.49935856,-0.40821803,0.45077866,-0.044572122,-0.22575074,0.26499188,0.09250911,0.35862,-0.06623618,0.43611935,0.26507244,-0.16391066,0.2086443,0.7565573,0.22832456,0.37350607,0.02483575,-0.28150207,0.088849306,0.06298527,0.13808186,-0.11278869,-0.40321946,-0.019962423,-0.20900786,0.22614443,0.4529459,0.22832265,0.22422296,-0.040261805,-0.33872828,-0.10544641,0.17883326,0.1274444,-1.4059801,0.29153174,0.17895658,0.7977367,0.26699162,0.16084187,-0.004438244,0.54727554,-0.054936074,0.08929653,0.4390083,0.062583946,-0.5358993,0.47161484,-0.6528053,0.45827985,0.011714878,0.010287549,0.16454893,0.012504626,0.42981172,0.7522858,-0.07447608,-0.01204952,0.24609977,-0.3011839,0.13422187,-0.28352138,0.038835846,-0.6136811,-0.22844088,0.5133076,0.5193594,0.22132531,-0.20525017,0.07161785,0.1505493,-0.18717197,0.11437704,0.11568086,0.113257214,-0.108036436,-0.6391413,-0.06166031,0.35490134,-0.19201857,0.101613626,0.03860977,-0.112038724,0.37648383,-0.1801781,-0.04128277,-0.02960803,-0.5922799,-0.117341876,-0.3044924,-0.41940963,0.5792261,-0.17985982,0.25606215,0.2848963,0.08724081,-0.5184055,0.43740687,-0.011217415,0.710451,-0.18427226,-0.007249482,-0.39096093,0.10345142,0.18519157,-0.15490772,-0.2214593,-0.30189058,-0.012399412,-0.4208939,0.31676978,-0.009166166,-0.27577192,-0.26555574,-0.068720415,0.21851525,0.43834606,-0.039170068,-0.101837166,-0.17318586,-0.12410931,-0.52134955,-0.34708774,-0.07083465,0.18485865,0.2441433,-0.11547972,-0.14513765,-0.12040129,0.037307877,0.48443785,-0.123158604,0.45643973,0.40145773,0.30438367,-0.048059613,-0.12703215,0.2704773,0.50374657,-0.002009008,-0.06450994,-0.40087655,-0.32270014,-0.38017368,0.07970524,-0.12114799,0.33040726,0.2095851,-0.12228569,0.5699979,-0.099496335,1.0657474,0.015328035,-0.34244362,0.23842269,0.3978657,0.1435643,-0.12954833,-0.29267785,0.77065694,0.47498065,-0.027308162,-0.004157232,-0.28398576,-0.04774774,0.108284056,-0.18159604,-0.23515023,0.012313079,-0.42803246,-0.16302249,0.23640047,0.19841322,0.35156623,-0.19771883,0.11908026,0.2285446,0.0628715,0.16112462,-0.297883,-0.12147078,0.2785374,0.2316488,0.090994254,0.06181518,-0.51673055,0.3918223,-0.3084978,0.030127317,-0.22357965,0.33271092,-0.12686431,-0.36659262,0.20588581,-0.02156217,0.28074324,-0.16875844,-0.19822866,-0.3424288,0.42235455,0.08669256,-0.0016583949,0.35521343,-0.20499521,0.107607216,0.0012086704,0.53776884,0.7714615,-0.27306524,-0.16865182,0.24500158,-0.31719965,-0.725634,0.29384723,-0.41800356,0.26309356,-0.023862801,0.024500497,-0.685921,0.28755778,0.13828464,0.22827518,-0.16900936,-0.6419125,-0.17890522,0.2535965,-0.19276787,-0.13384598,-0.35792515,0.012930969,0.525992,-0.24529572,-0.41687012,-0.06686804,0.19738954,-0.094565496,-0.585934,0.09890058,-0.35235372,0.24744242,-0.004551159,-0.29570958,-0.21768294,-0.032308556,-0.38124153,0.25601825,0.059756283,-0.301514,0.093865775,-0.2026329,0.062368248,0.91417754,-0.33355087,0.23291063,-0.29042256,-0.5400868,-0.7685996,-0.35876456,0.077453434,0.2601242,-0.08071901,-0.85922134,0.13421364,-0.21688883,-0.44236094,-0.13614361,-0.33922565,0.46625003,0.08022833,0.19617471,-0.07433167,-0.781258,0.13860568,0.104329005,-0.317854,-0.5274371,0.45328242,-0.08789325,0.92992103,0.082908615,0.27255613,0.244231,-0.24491915,-0.10656424,-0.19511317,-0.07945285,-0.43203223,0.0075078104 +646,0.472856,-0.015805772,-0.45740774,-0.18737166,-0.4316344,0.15197262,-0.22256847,0.26555738,0.24293743,-0.35469648,0.09055044,0.029687518,-0.13626356,0.42641714,-0.15987277,-0.7088189,0.18841854,0.05775691,-0.6190247,0.42670637,-0.64359844,0.41433614,0.14824833,0.27958208,0.11525178,0.21640389,0.29755566,-0.10006024,-0.07554736,-0.027511904,-0.16479976,0.17006,-0.6407962,0.29083365,-0.10170611,-0.32938257,-0.044440117,-0.24872674,-0.28152642,-0.7108288,0.26565942,-0.8050774,0.60326344,-0.06286589,-0.28610015,0.051746782,0.11295526,0.15164784,-0.41815677,0.07430893,0.39865586,-0.30476826,-0.14868836,-0.093894966,-0.17508003,-0.4432964,-0.5613489,-0.0060075223,-0.6636791,-0.13220413,-0.28906938,0.25744227,-0.26952937,0.010178308,-0.12309336,0.43081924,-0.3844567,0.15946744,0.1250067,-0.2184777,-0.038635977,-0.45348093,-0.10311779,-0.0812651,0.325806,0.011132598,-0.30550152,0.25030333,0.41600767,0.40807477,0.059775624,-0.30897516,-0.18613945,-0.06444156,0.097614355,0.41146824,-0.060541935,-0.39445302,-0.24079537,-0.048063178,0.23262838,0.11685126,0.0988875,-0.39902568,-0.025704253,0.1305859,-0.2735936,0.488632,0.5061754,-0.41099668,-0.01286229,0.5447291,0.22110094,0.21619298,-0.28242242,0.1381216,-0.17685306,-0.4676648,-0.15475857,0.18879159,-0.011164543,0.5050325,-0.1567252,0.34051818,0.7845273,-0.13114452,-0.06521713,-0.07203336,-0.120118566,-0.019634416,-0.17319952,-0.1726146,0.1447237,-0.49340153,0.09462015,-0.2779033,0.78161913,0.15571104,-0.7564637,0.46855325,-0.32704636,-0.05361649,-0.181121,0.53510207,0.7304861,0.5152626,0.08004941,0.8163828,-0.67674017,-0.088155724,0.018992824,-0.40975854,0.053204972,-0.101150036,0.1354395,-0.36534396,-0.048004847,0.049637042,0.16031893,-0.023025708,0.41013235,-0.18255946,-0.119587265,-0.061715227,0.62993187,-0.46888992,-0.16777848,0.83894926,0.95837563,1.0205001,0.17723426,1.2067859,0.33745766,-0.017284675,-0.16775084,-0.09664208,-0.55301464,0.18711607,0.26002917,0.38703388,0.16057315,0.18146385,0.067156844,0.29267326,-0.20725688,-0.1474919,0.054812405,0.31862673,-0.054452237,-0.14560726,-0.4045725,-0.27827987,0.19737123,0.10999068,-0.0028589752,0.21440685,-0.15951331,0.51368296,0.111393966,1.4672525,0.12631138,0.0809272,-0.015933465,0.3804555,0.2436967,-0.18269055,-0.21938737,0.14756456,0.4776577,-0.09417515,-0.5560526,-0.07495662,-0.219708,-0.5139579,-0.08247953,-0.37907267,-0.19801112,-0.23645318,-0.41314366,-0.11814453,0.27776617,-0.36380512,0.5384296,-2.6090083,-0.24239846,-0.0979997,0.35003144,-0.15218954,-0.3217854,-0.37429938,-0.53404963,0.37060764,0.30515862,0.43810937,-0.7192803,0.67311174,0.25087664,-0.18426228,-0.25514904,-0.7093391,0.015541949,-0.10811348,0.31238985,-0.008192179,-0.13227485,-0.19800845,0.2730264,0.7269839,-0.026136884,0.01665294,0.23983853,0.45928717,-0.035447706,0.6379324,0.0030221045,0.62362766,-0.2536921,0.023706065,0.3875599,-0.3661303,0.34178534,0.04817673,0.23738496,0.50241715,-0.46018484,-0.8432244,-0.64036196,-0.27339172,1.1187755,-0.41834995,-0.18619433,0.3447538,-0.16213313,-0.27600348,0.13715418,0.51574403,-0.056437988,-0.03191697,-0.685646,-0.08800685,-0.043061633,0.23582126,-0.16948445,0.12086443,-0.3218213,0.6321457,-0.11239933,0.63030344,0.308281,0.13438728,-0.121709175,-0.34329605,0.074547745,0.90124637,0.35457632,0.04957511,-0.17744003,-0.2121221,-0.34821174,-0.101250514,0.06905569,0.5583171,0.65270346,0.026093794,0.021777255,0.2662051,-0.24619913,-0.08512624,-0.16133308,-0.25584257,0.002971809,0.14069507,0.53706616,0.72879416,-0.17616859,0.4314455,-0.14140628,0.25789636,-0.27871615,-0.48024365,0.6086802,0.57204866,-0.17234084,-0.15319027,0.4983668,0.31990284,-0.15364991,0.37567988,-0.45911434,-0.49443525,0.5499886,-0.017163744,-0.2874369,0.15764628,-0.36223993,0.085707925,-0.8898614,0.3753849,-0.1682758,-0.6956021,-0.43309262,-0.16964062,-3.7781823,-0.046194077,-0.08655423,-0.07353512,-0.2005398,-0.16955742,0.4666873,-0.5487558,-0.4691032,0.101293385,0.045133717,0.65503126,-0.02681254,0.1445352,-0.26615432,-0.19807205,-0.1518738,0.2704337,0.061687347,0.3303409,0.08708328,-0.33457586,0.13888843,-0.3490723,-0.43443537,-0.012744163,-0.53026944,-0.5286085,0.06959739,-0.2886715,-0.2713749,0.8338459,-0.58887875,0.017882267,-0.12828183,-0.13433959,-0.33300325,0.36098304,0.20371132,0.13758115,-0.045612566,-0.05365587,-0.15093586,-0.3249758,0.13793285,0.0922985,0.28488922,0.31031847,-0.11203977,0.07769264,0.557417,0.515679,-0.037384838,0.77480036,0.11920892,-0.15747336,0.33880076,-0.2711307,-0.4050868,-0.7265129,-0.32917294,-0.21358636,-0.4799436,-0.28455994,0.03511693,-0.29254287,-0.8759433,0.41647443,0.10430772,-0.0438686,-0.17785302,0.17773816,0.25300208,-0.09191574,0.11825796,-0.032220528,-0.18820718,-0.62901074,-0.5167391,-0.6985222,-0.5786352,0.045216016,1.0549587,-0.11401879,-0.1952313,-0.09746113,-0.24907725,0.14670609,-0.020485643,0.11000274,0.1737849,0.29638842,-0.093472995,-0.8931989,0.41987225,-0.47095457,0.06538765,-0.6224041,0.0075044823,0.8211355,-0.60073155,0.4542933,0.39018965,0.24857475,0.010521208,-0.5292774,-0.32139227,-0.06568719,-0.14304869,0.600823,0.12020551,-0.7000106,0.49916226,0.20143414,-0.14556026,-0.5582319,0.50508124,0.11161334,-0.11532075,0.07977191,0.28519222,0.04855976,-0.100666046,-0.14560592,0.23524512,-0.60015017,0.26903448,0.29744586,0.0958985,0.44303244,-0.10926945,-0.31602117,-0.5394118,-0.34808996,-0.32488665,-0.29510707,-0.09417881,0.09461718,0.15225251,-0.0014204468,0.12042476,0.34139276,-0.412539,0.24250662,-0.20512293,-0.12253889,0.35079214,0.5740877,0.3418409,-0.52457076,0.6426563,0.11250415,0.102624126,0.037774056,0.039341133,0.36381692,0.2548853,0.21280786,-0.0861773,-0.11878199,0.18799594,0.84874153,0.24386944,0.25901094,0.15078758,-0.24570557,0.2635381,0.16606747,0.30793706,0.039431103,-0.41618568,-0.12384302,-0.07881498,0.13554017,0.36705872,0.14638948,0.11357598,0.0038407233,-0.06467002,0.16364643,-0.012950876,-0.029840572,-1.1097695,0.46307564,0.20776738,0.6493473,0.42530754,-0.08684873,0.17218255,0.5942073,-0.2625001,0.15791528,0.119473636,-0.018186806,-0.29783297,0.49042675,-0.5056695,0.37207755,-0.13180394,-0.06585157,0.029691288,0.10676242,0.38408685,0.89579993,-0.12245011,0.15548433,0.16208671,-0.36377516,0.11810815,-0.36403757,0.020066325,-0.44926047,-0.2661439,0.68013483,0.4904596,0.35838,-0.41235018,-0.015392729,-0.024907291,-0.1886263,-0.057688117,-0.15237959,-0.21090014,-0.043872166,-0.69086134,-0.27313328,0.5768565,-0.018598199,0.055347003,0.19687568,-0.3199943,0.3837747,-0.11226629,0.04191492,-0.061249573,-0.54182714,-0.17410977,-0.43136308,-0.45889595,0.2681115,-0.3036518,0.33972698,0.16125445,-0.09790567,-0.13281058,0.287587,0.2506996,0.67933387,0.10625712,-0.13071331,-0.40688053,0.0031089294,0.30699342,-0.3119833,-0.17570254,-0.40188125,0.07835726,-0.6230751,0.3885753,-0.24667872,-0.07536324,0.02487613,-0.10288628,0.12564574,0.47192016,-0.23904505,-0.13144723,0.105480924,0.076084636,-0.26743844,-0.015755763,-0.35954693,0.21223474,0.041506264,0.014394947,0.10244507,-0.013489945,-0.029688725,0.1909791,0.23873101,0.3347889,0.27414143,-0.04600231,-0.24180914,0.04072501,0.07884579,0.4522312,0.26578695,-0.13761382,-0.33400935,-0.24539945,-0.19560453,0.5129592,-0.17112187,0.04968386,0.084870555,-0.39846757,0.69212765,0.1065665,1.0561489,0.17647783,-0.39211616,0.10482639,0.50748163,0.09190522,0.12796018,-0.19165395,0.8449305,0.44798157,-0.13268985,-0.13041405,-0.44047144,-0.34714216,0.29213026,-0.33279562,-0.26391363,-0.17505625,-0.5997954,-0.07810298,0.021839838,0.07929081,0.05970315,-0.08737753,-0.1509287,0.15284811,0.2520458,0.4423854,-0.6362793,0.028479671,0.32375112,0.13166115,0.045414805,0.088932075,-0.43020323,0.4735232,-0.6352329,0.20438123,-0.45553303,0.10627215,-0.1303641,-0.21931055,0.27357188,0.16894627,0.32363722,-0.30730477,-0.27200907,-0.27578625,0.54903823,0.20845483,0.30696195,0.67691374,-0.13933884,-0.09132864,0.1623903,0.47476393,1.045543,-0.16905831,0.110678636,0.39536265,-0.32195926,-0.48205826,0.15408921,-0.33936116,0.18727753,0.054909058,-0.2978137,-0.3422258,0.338623,0.15005438,0.16081643,0.11944031,-0.6368212,-0.11722513,0.5365331,-0.19449762,-0.33474213,-0.23981775,0.1374216,0.5999132,-0.54518276,-0.2436308,0.033132058,0.2326683,-0.21221583,-0.57173425,0.008896112,-0.3108787,0.33866766,0.17857155,-0.29923862,-0.06103563,0.18660195,-0.45720953,0.23187287,0.27786437,-0.38209358,-0.035731494,-0.2925516,-0.0544937,0.9935134,0.03383332,0.09099943,-0.6608495,-0.47642687,-0.78961384,-0.3215116,0.22797461,0.24049424,-0.096075706,-0.49144635,-0.20163879,-0.07448775,0.14103213,0.041782744,-0.58998436,0.50850046,0.07540246,0.30511776,0.0010046789,-0.93329734,-0.06603316,0.11927908,-0.30164856,-0.42631823,0.58796734,-0.07313151,0.82593185,-0.039681785,-0.008164765,0.0876782,-0.60228235,0.3349324,-0.4481587,-0.033377435,-0.6184345,0.18456702 +647,0.21710028,-0.5110107,-0.48979387,-0.16708288,-0.19190134,-0.14616512,-0.14355081,0.58925015,0.3304486,-0.008847269,-0.23483635,0.04291961,0.129014,0.5809526,-0.18642563,-0.81344545,-0.27179754,0.08323652,-0.6452563,0.3123191,-0.5242274,0.048086036,-0.15763783,0.3686698,0.043453857,0.31380364,0.10734387,-0.11106448,0.1866077,-0.12528332,-0.25977,0.18331252,-0.30613402,0.1589403,-0.03182219,-0.103403874,0.10964294,-0.44715405,-0.32980594,-0.71015424,0.16059957,-0.97663516,0.4647893,-0.03629376,-0.25276306,-0.21745473,0.15561679,0.36279634,-0.3946365,0.016206928,0.27854168,-0.2615894,-0.17277935,-0.26467383,-0.12301976,-0.5771862,-0.42482805,-0.1806553,-0.40980452,-0.39235446,-0.043604385,0.11952476,-0.54737043,-0.10946712,-0.2726823,0.35352355,-0.38729277,-0.14624362,0.58567965,-0.4891282,0.362389,-0.47181642,-0.063636765,-0.045492474,0.49616775,0.19434732,-0.22133623,0.21501733,0.21851726,0.20351061,0.31359455,-0.21663703,-0.36797354,-0.38159588,0.3661474,0.6510212,0.0013409961,-0.44323558,-0.24771014,0.15181886,0.28596926,0.62609935,-0.009635378,-0.2316631,-0.02107426,-0.07644767,-0.21235873,0.65288186,0.5293195,-0.104773395,-0.25884125,0.33806401,0.44143298,0.322093,-0.2540326,0.12076721,0.05793823,-0.4227506,-0.17483632,-0.025301002,-0.12095225,0.48261416,-0.23135585,0.20161095,0.8975368,-0.14028107,0.079278514,-0.17526346,-0.093627885,-0.38467285,-0.51033884,-0.09752007,0.23538937,-0.51278365,0.2730393,-0.25955963,0.77328014,0.16213134,-0.59964734,0.30324206,-0.5259539,0.4097375,-0.09432446,0.5883898,0.5620734,0.48371106,0.4244732,0.9400911,-0.12927078,0.30749762,0.10336013,-0.5645079,0.095051855,-0.22200494,0.03601949,-0.42506582,0.29565847,0.054160263,0.12014162,0.15558574,0.14446922,-0.60568994,-0.048176624,0.29565275,0.9141954,-0.22635843,0.0923362,0.81765455,0.9565651,0.8975804,-0.029110195,1.1612908,0.26998568,-0.24758531,0.2167756,-0.29400948,-0.80705935,0.18068415,0.4071229,0.1984815,0.37907562,-0.2327611,-0.18267582,0.41828936,-0.46205667,0.06896209,-0.058026813,0.24189726,0.16227153,-0.28619358,-0.6687712,0.030624064,-0.099258296,-0.13671963,0.091190666,0.27448934,-0.1759751,0.55953753,-0.1336988,1.0980967,-0.09242363,0.14887014,0.15204753,0.5713176,0.24620663,-0.094413064,0.28822318,0.54227525,0.47764972,-0.033927776,-0.7802706,0.31712672,-0.37665316,-0.44891825,-0.13780053,-0.38069734,-0.2674065,-0.10450358,-0.3504098,-0.08838435,-0.14959139,0.012126782,0.4074603,-2.8929193,-0.2143168,-0.35474518,0.31284148,-0.3351373,0.060667,0.10301609,-0.52119577,0.1638301,0.32574424,0.69325024,-0.7207924,0.35030147,0.6596877,-0.686502,-0.088221125,-0.7264491,-0.03600903,-0.02890092,0.5485779,0.15756834,0.02182863,0.024453497,0.06999766,0.7528259,0.24204923,0.26312116,0.4126938,0.5327521,-0.08138743,0.42074624,-0.22972146,0.67516357,-0.3169408,-0.053141262,0.18443508,-0.28006652,0.3657737,-0.30089635,0.022642743,0.6129977,-0.26596463,-0.8645515,-0.32543787,-0.30916527,1.1323416,-0.54054874,-0.42354164,0.22400178,-0.15221262,0.035150897,-0.007842671,0.6482265,-0.009437734,0.08118013,-0.6170251,0.21092206,-0.19143902,0.085432045,0.040390253,-0.1778336,-0.2999196,0.7712301,-0.10420012,0.74094564,0.2810289,0.14577205,-0.13352326,-0.3372693,0.015131452,0.43521327,0.43437472,-0.11058144,-0.1534608,-0.26894835,-0.056080926,-0.28938425,-0.02246042,0.8455101,0.6649499,-0.2771711,0.075158365,0.3541773,0.056191422,-0.024360353,-0.07517769,-0.2492194,-0.099242084,0.09893865,0.42831343,0.7595894,-0.32129395,0.31548557,-0.07298761,0.27991194,-0.037361618,-0.6061531,0.65109444,0.4711819,-0.23639907,-0.10969107,0.5472719,0.51276225,-0.437449,0.42786282,-0.6829833,-0.013358398,0.75579107,-0.2472154,-0.6101072,0.2201531,-0.15349713,0.050320193,-1.0061898,0.22285038,-0.3502394,-0.63348407,-0.436947,-0.07060175,-3.5684366,0.06415944,-0.34655523,-0.30660218,-0.47828397,-0.028638504,0.2187966,-0.6540502,-0.76260585,0.2861223,0.25460938,0.47019625,-0.14687121,0.11268663,-0.40987265,0.03495296,0.003645691,0.32072794,-0.098855086,0.28058273,-0.19123554,-0.45461723,-0.10734894,0.27474597,-0.53688717,0.33225295,-0.65140605,-0.30364138,-0.043790754,-0.58547217,-0.051075697,0.54375786,-0.3980342,0.009960627,-0.052626207,0.22235017,-0.34534457,0.10657487,-0.0871218,0.30708548,0.17610413,-0.033505537,0.25437838,-0.15017737,0.5660608,-0.12187831,0.55058384,-0.03115861,-0.11861146,0.13512902,0.60989946,0.58910775,-0.2088068,0.95498365,0.4267537,-0.123604804,0.32397622,-0.22625071,-0.15497422,-0.5880709,-0.51401967,0.018868767,-0.40282252,-0.7181187,-0.002135797,-0.22082125,-0.7483485,0.52900934,0.17765476,0.57287556,0.057660673,0.120949194,0.5272556,-0.17286563,0.018549008,0.17887114,-0.12778665,-0.52631533,-0.07996371,-0.73689884,-0.47940883,0.26605642,0.84012204,-0.2570667,0.0009785945,-0.19082516,-0.5824886,-0.22865658,0.27097407,0.17901708,0.22791333,0.36979917,-0.004882826,-0.5362901,0.3901303,0.027322017,-0.13043952,-0.5345671,0.14349957,0.6938229,-0.7221594,0.7134726,0.23623894,-0.011807405,-0.35052958,-0.42328042,-0.33056936,-0.033754133,0.0017623956,0.49832115,0.17479181,-0.6173746,0.4273015,0.2613631,-0.47042057,-0.63249683,0.23972966,-0.26773158,-0.0246359,0.005399054,0.17742372,0.17977348,-0.26183775,-0.18862009,0.2574042,-0.33780175,0.24397029,0.15864919,-0.09631235,0.42628434,0.13040042,-0.13963826,-0.8961714,-0.09545751,-0.7639055,-0.049433485,0.46344146,-0.16424458,0.037653092,-0.07488132,0.038278334,0.25115147,-0.17795894,0.112491965,0.12406297,-0.41953275,0.4842222,0.5329828,0.22986904,-0.50625557,0.5998625,0.39127037,-0.22288066,0.15897958,0.21194205,0.37358618,0.028229333,0.63130915,-0.2654741,-0.117371514,0.21820536,0.93463236,0.19780521,0.5802216,0.2343564,0.014767867,0.42198867,-0.11194214,0.26228613,-0.096096404,-0.551962,0.05699488,-0.1711815,0.11337033,0.5242484,0.4766016,0.41580045,0.107690595,-0.284908,-0.009837794,0.32723033,0.09830236,-1.3699481,0.4229293,0.3436031,1.0352494,0.2737306,0.26872686,-0.19222897,0.8037104,-0.23157527,0.044676658,0.53295463,0.08099307,-0.56086123,0.79531115,-0.65784466,0.45155373,-0.089598686,-0.15541811,0.27839568,0.35835835,0.37574556,0.60851437,-0.13251473,-0.118763,-0.2058118,-0.2863069,0.04246768,-0.36916077,-0.0603828,-0.41075227,-0.48537177,0.5031943,0.6017144,0.3261854,-0.14627768,-0.091739126,0.11847043,0.07689551,0.2241304,-0.12355943,-0.18519458,0.077102415,-0.565301,-0.24819742,0.6130957,0.022437232,0.3316169,-0.38970262,-0.4384386,0.13265909,-0.26260284,-0.111209035,-0.012989716,-0.57782155,0.05409775,-0.13365628,-0.83270246,0.4654121,-0.20054103,0.22546245,0.123841286,-0.124669425,-0.09056535,0.054993305,-0.22363442,1.0391225,-0.17505664,-0.28364775,-0.521363,-0.0241215,0.16000949,-0.18971421,0.029816281,-0.41016462,-0.06640358,-0.29513356,0.45876637,-0.10943497,-0.5579052,0.19459438,-0.24033284,-0.13670133,0.58141834,-0.109684944,-0.21369225,-0.062051106,-0.37644842,-0.55556655,-0.22778769,-0.3609611,0.25678918,0.24850518,0.18561038,-0.121156864,-0.1028564,0.05393919,0.49305236,0.0034005968,0.36306164,0.24194184,-0.013733284,-0.18065745,-0.06826493,0.21921197,0.48229778,0.22332793,-0.042262845,-0.12739295,-0.5790562,-0.40576723,-0.13512439,-0.10638326,0.5496536,0.056956347,-0.29545763,0.8190495,-0.012235078,1.18982,-0.010923635,-0.5038345,0.16146308,0.6145558,0.05296847,0.085945815,-0.33740222,0.95886785,0.52289397,-0.05287033,0.013974374,-0.7351376,-0.040762316,0.4786793,-0.3226744,-0.034748003,0.038522426,-0.52737933,-0.2896041,0.31745094,0.030110516,0.36062118,-0.14801511,-0.119501464,0.024481183,0.10024469,0.43509814,-0.5697311,-0.39089143,0.17835212,0.19329333,-0.0066070124,-0.09905877,-0.40038022,0.40022346,-0.6115995,0.2259735,-0.51831937,0.16759925,-0.42180434,-0.15305421,0.21446423,-0.3291922,0.45692328,-0.37858915,-0.4525965,0.008126909,0.5012755,0.019110886,0.1192697,0.64375186,-0.30745667,-0.012521828,0.23865533,0.7506153,1.2258954,-0.61816007,0.1789775,0.3898494,-0.5942257,-0.7727881,0.35870486,-0.30690962,0.11885395,-0.023411041,-0.3871877,-0.59718376,0.22668332,0.089424044,0.09559655,0.23540455,-0.42954433,-0.28068125,0.30500498,-0.5079641,-0.26754436,-0.3188422,0.2900264,0.80391794,-0.27949217,-0.5745868,0.1232842,0.2097438,-0.14528783,-0.4476639,-0.0013558011,0.038166977,0.2827226,0.021350466,-0.4168658,0.04410521,0.072998516,-0.47219285,0.17413622,0.05974168,-0.30802718,0.3672458,-0.25564167,-0.23352534,0.96183324,-0.49041188,-0.08726423,-0.88926464,-0.4309902,-0.7878841,-0.54141086,0.33847857,0.097288184,-0.018911958,-0.5396833,0.11405382,-0.05046513,-0.1508378,-0.15931198,-0.51950175,0.46657676,0.0068653314,0.58079875,-0.32852614,-0.8913193,0.2893113,0.26985013,-0.043484602,-0.6832532,0.64440316,-0.14600392,0.9028885,0.0689085,0.12610592,-0.12835278,-0.4416936,-0.041303538,-0.26738933,-0.3178789,-0.8370531,0.3303577 +648,0.6565766,-0.58204496,-0.79244345,0.04423376,-0.0980864,-0.02889831,-0.4810275,0.5529793,0.19451687,-0.2944923,-0.28679264,-0.10757612,0.023162957,0.835745,-0.08603004,-1.0231092,0.042402614,0.1285729,-0.88607883,0.95980245,-0.34721,0.36601952,-0.16835335,0.58768594,0.35529917,0.37234554,0.4188997,0.2290061,-0.16222708,-0.069297515,0.06875036,-0.22102384,-0.54160345,-0.010601473,-0.0147138415,-0.50394565,-0.17986047,-0.39119112,-0.44306487,-0.8955762,0.5286554,-1.0159135,0.49647933,-0.048240006,-0.44526806,-0.02211957,0.092024215,0.5128347,-0.26678032,-0.05126194,0.023669403,-0.1114594,-0.1047539,-0.26094276,-0.2949582,-0.675012,-0.64989644,-0.090033434,-0.8133329,-0.18091753,-0.128299,0.15308604,-0.43983236,0.069224596,-0.030771494,0.042104185,-0.6113881,-0.528725,0.39610296,-0.28754395,0.14239581,-0.5730325,-0.07266308,-0.18110548,0.27099293,0.04709331,-0.09180322,0.21425319,0.1549572,0.4886852,0.1774482,-0.16102487,-0.26467177,-0.13813245,0.15983579,0.5791303,0.11240274,-0.72024643,-0.36557752,-0.0077948645,0.5143735,0.20943153,0.31991854,-0.27850437,0.01266654,-0.0039784787,-0.2035534,0.5477377,0.46324676,-0.5138884,-0.15874417,0.5426463,0.5941254,0.534016,-0.134666,0.22208276,0.049039103,-0.40716544,-0.18796867,0.066482484,-0.22059445,0.6780467,-0.0060156793,0.50482905,0.66628313,-0.22276978,0.25190488,-0.10821241,-0.052270006,-0.37388998,-0.09327233,-0.14677683,0.23492952,-0.41358313,0.12566231,-0.18978675,0.5593882,0.29756218,-0.42721176,0.53637016,-0.58487475,0.27250713,0.038161002,0.621766,0.81401074,0.37064347,0.26963705,0.8201745,-0.15762678,0.052993994,-0.060720444,-0.18120176,0.200524,-0.24704342,0.10291525,-0.51822585,0.27610308,0.18444924,-0.11128887,0.096082136,0.8848467,-0.52317303,-0.19384946,-0.15673816,0.71380836,-0.2786499,0.13978882,0.90333635,1.0607669,1.0029784,-0.013694435,1.4093807,0.5103174,-0.21935213,0.06891111,-0.11440476,-0.89470613,0.17033759,0.5465203,-0.22973366,0.973303,0.105542615,-0.20507622,0.51219726,-0.3076402,0.106045224,-0.0913322,0.14609678,-0.19350488,-0.115955696,-0.66684026,-0.1469241,-0.039649017,0.034273367,0.27384096,0.4362022,-0.40100947,0.32136148,-0.05894959,1.6392901,-0.34498507,0.13043807,0.017975831,0.7050716,0.43518767,-0.17498021,-0.2704814,0.4365631,0.4880247,-0.084360614,-0.81035244,0.13202575,-0.43442154,-0.40624428,-0.20768781,-0.324912,0.0027176081,-0.05883004,-0.22374758,0.013998792,-0.036236312,-0.28778315,0.2727217,-2.1707606,-0.6373487,-0.3180066,0.52088356,-0.3204367,-0.22264926,-0.07683508,-0.37357548,0.4108838,0.34290054,0.55654967,-0.7110585,0.3038655,0.44236094,-0.6310387,-0.016926004,-0.4643084,0.16114089,-0.036899816,0.7649784,-0.31133297,-0.38732567,0.19298653,0.42150822,0.41981784,0.085731976,0.027293187,0.3664179,0.48560467,-0.13535173,0.2113466,-0.17047642,0.609223,-0.44333926,-0.17825334,0.32214722,-0.3330191,0.7051923,-0.33423874,0.22570725,0.3979668,-0.56439525,-0.9247532,-0.35392344,-0.17083816,1.0602463,-0.601081,-0.5507253,0.13552853,-0.19909282,-0.13831453,0.025661957,0.67190176,-0.16197744,-0.11686947,-0.6872901,-0.0047931285,-0.11560981,0.20095265,0.00049526617,0.16066971,-0.2670231,0.83217317,-0.03588519,0.45533282,0.16486208,0.41002837,-0.23390241,-0.5097215,0.2937709,0.80853826,0.6082472,0.103968546,-0.21720889,-0.22624464,-0.46048313,-0.5166691,0.16534843,0.6712092,0.93457156,0.022709353,0.05026292,0.20954962,-0.12096095,0.09733029,-0.23671618,-0.30808946,-0.053742446,0.09319894,0.61360455,0.7428226,-0.19130412,0.58445126,-0.105549954,0.2467784,-0.15101482,-0.49395117,0.8047396,0.99950874,-0.37718242,-0.063067205,0.54370266,0.4550901,-0.6005472,0.76447046,-1.065932,-0.34798956,0.5622861,-0.06545673,-0.45897263,0.41308492,-0.32340875,0.3110014,-1.141448,0.2967055,-0.21110544,-0.20695758,-0.4748518,0.05710253,-3.607196,0.25780258,-0.19782324,-0.2747318,-0.30963588,-0.14637022,0.22178419,-0.75840193,-0.9197737,0.0934924,-0.053575765,0.8116247,-0.1937577,0.21229109,-0.228888,-0.49549204,-0.30403042,0.115159035,-0.046755236,0.5369242,-0.16749991,-0.47046262,0.031228323,-0.0035387338,-0.48486692,-0.044023644,-0.8237152,-0.42155433,-0.4057645,-0.7568618,-0.089938074,0.6406921,-0.098339394,-0.024463495,-0.3068897,0.015932733,-0.23261213,0.44773823,0.11811032,-0.04997263,0.2458344,-0.08444466,0.14592114,-0.26244053,-0.010702714,0.031594787,0.3847344,0.23894349,-0.33800155,0.28958303,0.6396004,0.7191376,-0.04166134,0.7496166,0.47583634,0.00031681656,0.34827214,-0.22761889,-0.31147033,-0.43633097,-0.3364637,-0.23642509,-0.36183578,-0.68449056,-0.5249573,-0.2771049,-0.8198687,0.430593,0.17848423,0.64963824,0.06453069,0.3162504,0.5277239,-0.1517405,0.021053303,0.14163385,-0.3505749,-0.6273568,0.039730404,-0.6814911,-0.66449386,0.6583883,0.5590948,-0.2203147,-0.1951524,0.17381394,-0.4261365,0.07664124,0.03231888,0.14933464,0.0100914715,0.25199035,-0.020019222,-0.65753686,0.57223,-0.27176747,-0.24774604,-0.6199187,0.058201253,0.63659024,-0.66788054,0.29194793,0.31191525,0.14518422,0.0049932124,-0.43228874,0.06365365,0.27386734,-0.018992841,0.25940615,0.2735507,-0.6919626,0.36952272,0.23398407,-0.36010423,-0.6980717,0.69172513,-0.010985164,-0.038023062,-0.38685954,0.52061796,0.06835692,0.09287943,-0.66640383,0.25082007,-0.65454304,0.035832368,0.3859085,-0.03410187,0.54435146,-0.13173504,-0.36953112,-0.6323546,0.21041605,-0.7368024,-0.11232176,0.5302971,0.043546353,0.15157327,-0.2365547,0.31220135,0.30841032,-0.5524722,0.1264913,-0.08032235,-0.34604612,0.58612037,0.630324,0.48584142,-0.4848435,0.7518834,0.059716392,-0.0066513717,0.16561463,-0.09130365,0.48397884,0.19975224,0.49236307,0.32601717,-0.10473589,-0.016329665,0.8455982,0.15521199,0.40734857,0.27075595,-0.21813521,0.15267491,0.31501704,0.30724177,0.21067524,-0.44848472,-0.1129754,0.08561518,0.10659826,0.7433906,0.36815703,0.31052923,-0.012416986,-0.54172385,0.19171907,0.22330853,-0.15792312,-1.441098,0.37244847,0.39318147,0.678744,0.4973089,-0.074868366,-0.060509406,0.5110942,-0.19389287,0.03462626,0.34019467,-0.044091463,-0.8138447,0.7489854,-0.7093024,0.53570616,-0.2624141,-0.03132015,0.14324327,0.26219946,0.45809278,0.8080572,-0.10225359,-0.06810145,-0.1461645,-0.25651568,-0.110333025,-0.25272077,-0.042350274,-0.47729135,-0.47800606,0.5522543,0.4975776,0.21932125,-0.03835942,-0.006962558,0.008741085,-0.12781553,0.39478025,-0.11824,0.2827509,-0.12389429,-0.753548,-0.50528026,0.42238802,0.063984066,0.25906712,-0.09515935,-0.20047359,0.23820396,-0.112629935,-0.04588159,0.049801815,-1.0494926,0.1302959,-0.5210799,-0.5602825,0.34280863,-0.026626289,0.35422397,0.19091702,-0.035881393,-0.3002322,0.37622896,-0.12983318,1.0579865,-0.094373085,-0.5316151,-0.43272948,0.32627854,0.35497582,-0.43045887,-0.034764785,-0.29877397,0.04341898,-0.6628243,0.70169,-0.15828517,-0.36792874,0.14642194,-0.31710857,-0.06315595,0.5201514,-0.39376777,-0.32622877,-0.019474406,-0.2915361,-0.39563176,-0.48709282,-0.27946815,0.057371162,0.09280278,-0.06794038,-0.25433114,0.17626476,0.10638748,0.58746517,0.047578227,0.36423534,0.7312075,0.35281748,-0.3089262,-0.22222643,0.6482026,0.55166984,0.17676817,0.071687035,-0.43096113,-0.70456946,-0.68513936,0.085223064,-0.17844498,0.24375069,0.2586341,-0.286578,0.6958781,0.24898596,1.2013857,0.021672273,-0.52752036,0.41383296,0.76531786,-0.0764191,-0.31760025,-0.45863762,1.1884172,0.5114846,-0.19128087,-0.09392907,-0.31828454,-0.53387356,0.49486572,-0.5190318,0.033585448,-0.023681536,-0.7189308,-0.2556625,0.2006001,0.3982817,-0.000268507,-0.12603126,0.237149,0.18907934,0.030795107,0.3435487,-0.5922932,-0.46582612,0.4841447,0.05660342,-0.16794555,0.014473555,-0.35041803,0.5195585,-0.89886254,0.09736412,-0.6079858,0.20965724,0.11636369,-0.6289607,0.13483196,0.13919832,0.56504166,-0.50807256,-0.47188625,-0.28385732,0.4967479,0.231005,0.11329211,0.6565777,-0.3600405,0.06367211,0.016793514,0.7084833,1.2563002,-0.059405725,0.27943182,0.14911203,-0.45330054,-0.9240862,0.34760886,-0.5204587,0.3591347,-0.30167946,-0.37057462,-0.9744633,0.2530947,0.012862897,-0.19980565,0.059722953,-0.62605846,-0.4628238,0.05712496,-0.23974268,-0.33194065,-0.53356,0.095974706,0.8478011,-0.3773684,-0.49944657,0.2789951,0.26009348,-0.08508731,-0.76002514,-0.12910447,-0.11746971,0.28782386,0.13422163,-0.44703072,0.071336955,0.15381983,-0.5545533,0.2017138,-0.058170922,-0.50374734,0.2517658,-0.41685924,-0.03087405,1.0912116,-0.25905314,0.0073820325,-0.8496884,-0.6556029,-0.9061183,-0.7386579,0.37006155,0.095847294,0.21119651,-0.6963607,0.3192502,-0.15511082,0.48529577,-0.022159642,-0.54407316,0.415759,0.07642922,0.6045034,-0.120514475,-0.865358,0.18924622,0.1891896,-0.1373372,-0.83495903,0.44614345,-0.252433,0.92898905,0.20454177,0.073594764,0.10993016,-0.6861824,-0.10043786,-0.31690758,-0.07758514,-0.6756034,0.38324013 +649,0.23373637,-0.11119105,-0.8064963,-0.1622205,-0.043835465,0.14870103,-0.29180533,0.4692216,0.066827096,-0.49479562,-0.004626743,0.054386433,-0.012531215,0.26963463,-0.18764271,-0.35529262,0.0329816,0.08927201,-0.38271993,0.19039913,-0.55970174,0.21741603,-0.17577103,0.18971786,0.095617756,0.23136188,0.13441375,-0.024236504,-0.0068829614,-0.111761846,0.037562147,0.27255386,-0.24924575,0.09243985,0.0057570967,-0.43033087,-0.036564317,-0.21793881,-0.31540143,-0.60683566,0.2818842,-0.778253,0.56022716,-0.0037289797,-0.32566306,0.3722894,0.16389063,0.26068237,-0.2638863,0.10843173,0.20005217,-0.16657871,-0.2151062,-0.22269824,-0.29097527,-0.38683885,-0.463016,-0.08601133,-0.63611615,-0.07264217,-0.21841356,0.11216947,-0.3777825,0.10812716,-0.23315959,0.30310857,-0.5713909,-0.23531123,0.101028904,-0.07134298,0.379964,-0.6440209,-0.09596327,-0.050697263,0.059636824,-0.22555657,-0.15621774,0.13579631,0.23061895,0.47820014,-0.2267396,0.008559628,-0.39879778,-0.23700094,0.13339303,0.4230107,-0.20062378,-0.14587861,-0.1097929,0.0063485145,0.30741057,0.20060396,-0.021276807,-0.25739264,-0.07701515,0.14224945,-0.3480746,0.36082098,0.4193961,-0.3599493,-0.0060899355,0.47333393,0.7663354,0.122641094,-0.15847518,0.18967065,-0.02247866,-0.41958475,-0.113592975,0.07644009,-0.121337146,0.4437444,-0.08481705,0.21196231,0.44832265,-0.19400644,0.0053655743,0.12676229,-0.016133659,0.008820017,-0.1871448,-0.33022594,0.23209222,-0.44784245,0.12918642,-0.17944679,0.5157948,-0.12152891,-0.6451245,0.382858,-0.38819188,0.006937305,-0.10725749,0.64853233,0.4883227,0.3959419,0.110820755,0.71813774,-0.5062193,-0.021321813,-0.19171034,-0.1770237,-0.012069776,0.05050745,-0.16387717,-0.53817886,0.14287186,0.086075395,-0.01884952,0.12999016,0.4376175,-0.36625734,-0.1309046,0.09474613,0.5805329,-0.38859144,0.0040871543,0.64596593,0.9970697,0.81683695,0.13305062,0.91043574,0.11036628,-0.082079805,-0.1697925,-0.2318769,-0.54203075,0.28128865,0.358109,0.18767296,0.29824975,0.020034425,-0.05407292,0.39118376,-0.25489426,-0.027086275,-0.12208672,0.22731556,0.10211792,-0.08588961,-0.36904728,-0.11302063,0.13591419,0.057074852,0.11446905,0.24330401,-0.3339558,0.27315038,0.16275647,1.3690184,-0.22009148,0.09182276,0.30401915,0.19698833,0.13268219,-0.14346318,-0.08368928,0.34688547,0.3613651,0.022398563,-0.5781333,0.16498083,-0.13792627,-0.5259388,-0.19604133,-0.22446674,-0.10776196,-0.1964936,-0.4093312,0.017850686,-0.008058772,-0.5276507,0.30663636,-2.68038,-0.124001615,-0.18531965,0.26498255,-0.1330474,-0.30344263,-0.2682267,-0.32942057,0.38376236,0.30710942,0.42225856,-0.4420571,0.50259936,0.38626784,-0.38642988,-0.041084584,-0.5860302,-0.09671186,-0.04639249,0.104262285,0.0883861,-0.12278464,0.0574208,0.24635765,0.4111152,-0.36546573,0.10016284,0.33799732,0.29430228,-0.052362658,0.40994212,-0.027783029,0.49977157,-0.3340513,-0.13525422,0.4265019,-0.48209566,0.1289427,0.0038139583,0.21362881,0.22489381,-0.4007072,-0.81527495,-0.5012244,-0.09312646,1.4837703,-0.27687544,-0.51748127,0.30817303,-0.2707587,-0.45873037,-0.12646596,0.24867281,-0.12620181,0.0017100573,-0.98226535,0.07151936,-0.14596996,0.21184571,-0.07818949,0.07391457,-0.32849953,0.5267761,-0.14921556,0.7000261,0.48056683,0.13097115,-0.22342435,-0.21546318,-0.005930436,0.9032206,0.490352,0.07647392,-0.17907412,-0.086527385,-0.24811006,0.058017243,0.21366218,0.42992508,0.6625802,0.15016674,0.12048667,0.184788,0.009490865,-0.12549166,-0.30898762,-0.16857061,0.0011813422,0.2359808,0.5217763,0.2591285,-0.021417115,0.26080456,0.028442772,0.2262914,-0.3647317,-0.44906166,0.2073762,0.54563904,-0.13389438,-0.46110523,0.46169117,0.5844288,-0.29073825,0.3617061,-0.6096029,-0.20100711,0.34713286,-0.21457838,-0.2908308,0.32714972,-0.39456895,0.21582481,-0.814506,0.13223968,-0.30098712,-0.64757603,-0.45008463,-0.27757996,-2.8108678,0.22531776,-0.05802496,-0.32572788,-0.09110592,-0.17580384,0.281147,-0.53604496,-0.6661802,0.04675772,0.18349715,0.60972965,-0.026441518,-0.1430948,-0.18507954,-0.25056532,-0.10805195,0.16559619,-0.030888954,0.2208913,0.036435183,-0.40550226,-0.049344547,-0.19338094,-0.42619643,-0.093071304,-0.31963605,-0.245933,-0.06956749,-0.35023242,-0.28201562,0.43230665,-0.35678664,0.03629562,-0.16981807,0.041172046,0.06718822,0.38629368,0.0913661,0.21554977,0.051435683,-0.10802333,0.112125136,-0.25530705,0.21819182,-0.06457241,0.059032638,0.48002142,-0.15655433,0.060130898,0.51085407,0.57991403,0.0040939967,0.8538983,0.37644798,-0.06598376,0.28304812,-0.27858546,-0.1780592,-0.53304404,-0.33712062,-0.05777284,-0.41265613,-0.34675902,-0.17601487,-0.24656935,-0.82748586,0.45514402,-0.07923798,-0.0052078883,-0.02611285,0.5094367,0.37920707,-0.09616761,0.032846164,-0.075956464,-0.08382143,-0.41213065,-0.4310332,-0.7936339,-0.370688,-0.05002795,1.1225841,-0.25027826,0.1526362,-0.03091797,-0.06990631,0.1475496,0.24089807,0.23887223,0.2983874,0.3061396,-0.17382394,-0.40255538,0.18224907,-0.26197392,-0.3187541,-0.54056853,-0.08802946,0.71022093,-0.50444925,0.3847571,0.37092534,0.13425204,-0.20779295,-0.71502185,-0.08402238,0.06994106,-0.34181297,0.52963006,0.23479046,-0.717638,0.50424606,0.48909563,-0.15979004,-0.5534821,0.54318464,-0.08043229,-0.16915156,0.009755262,0.41493618,-0.12513906,-0.03776231,-0.095839985,0.084015064,-0.27462018,0.32357973,0.31448123,-0.085771315,0.3987686,-0.28885612,-0.100657985,-0.5857813,-0.11933395,-0.5273272,-0.05986322,0.062154245,-0.06034371,0.2278414,0.12855399,-0.1858615,0.5031783,-0.39092138,0.105412215,-0.17764664,-0.28090575,0.3904579,0.39990625,0.23012023,-0.16463266,0.54892665,-0.0020360232,-0.09902855,-0.2582459,0.04492841,0.5722187,-0.10931762,0.3356353,-0.092776366,-0.10184079,0.36103046,0.78199756,0.20679717,0.36824608,0.10041297,-0.12519392,0.004908538,0.092119314,0.095364265,-0.14620413,-0.20851408,-0.031871542,-0.15575717,0.26247156,0.41522676,0.08764361,0.4966563,-0.23218828,-0.16788206,0.116283335,0.27306074,-0.074282095,-1.0254263,0.5180987,0.09773316,0.6291425,0.38395092,0.13383129,0.112568535,0.26813662,-0.28356877,0.15934786,0.2490237,0.07278033,-0.44638956,0.51077676,-0.7496049,0.43317512,-0.05345988,-0.0014849722,0.10003412,-0.09545564,0.51169235,0.738357,-0.02273594,0.089225724,0.09776099,-0.2580013,0.09824032,-0.27402508,0.0069564003,-0.48671228,-0.30918443,0.7624653,0.3708032,0.5209099,-0.18026362,-0.12106535,0.20807232,-0.03597646,0.16119164,0.011425578,0.2259595,-0.26417,-0.45453995,-0.20428361,0.37089244,0.28319937,0.058248147,0.009631491,-0.27921936,0.27205503,0.18771712,0.11274822,-0.027506063,-0.35734957,0.016998636,-0.30881086,-0.46239126,0.20089954,-0.36088118,0.31701508,0.17910023,0.0027333458,-0.36291105,0.16738652,0.15204997,0.673124,-0.060997445,-0.018143304,-0.24850026,0.33362377,0.25143233,-0.09265051,-0.071243055,-0.33257502,0.2331842,-0.814985,0.413849,-0.27557665,-0.20124461,0.32741445,-0.21307752,-0.02860415,0.5166111,-0.29862097,-0.20096417,-0.0036023974,-0.15365845,-0.2920895,-0.36437482,-0.22011565,0.19985205,-0.18495996,0.0139850695,-0.073483974,0.017305119,-0.0010223439,0.34153178,0.14523506,0.22926976,0.41818014,0.12923531,-0.49496096,-0.14713724,-0.033442743,0.5545874,0.05383458,-0.09196828,-0.36353073,-0.5273441,-0.061172,0.2768199,-0.22854978,0.33490688,0.21181759,-0.19112797,0.7473288,0.043490514,0.9404691,0.060806338,-0.2721893,-0.079573125,0.56230736,0.04701121,-0.1280323,-0.029175462,0.73475134,0.62014866,-0.12863325,-0.15372403,-0.27236858,-0.09566649,0.090098515,-0.2270293,-0.23510796,-0.042019766,-0.6756321,-0.25576648,0.24334823,0.2340719,0.087381996,-0.190049,0.15645863,0.22255538,0.051112656,0.23226894,-0.42146912,0.07105193,0.33414605,0.17777973,-0.063773505,-0.02209441,-0.40292627,0.27582887,-0.5965527,-0.0676235,-0.14808026,0.02820613,0.11429872,-0.2269412,0.22525182,0.098878354,0.13604932,-0.2572096,-0.16531162,-0.05545406,0.45729104,0.04662594,0.03998114,0.55912524,-0.23652233,0.23339967,0.06834064,0.42101562,0.95421976,-0.16303584,0.10431926,0.35098323,-0.30928773,-0.6654156,0.2176781,-0.4828481,0.25529632,-0.10505922,-0.3306545,-0.44552097,0.43915552,0.2339612,-0.1485203,0.062256765,-0.46577686,-0.19209363,0.1323963,-0.3610962,-0.20162414,-0.3463531,-0.05663785,0.5114938,-0.2125115,-0.2940258,0.022040566,0.44080874,-0.21260531,-0.5148324,0.15244718,-0.23595163,0.33428532,0.06513297,-0.1877669,0.057041008,0.13404134,-0.32106173,0.11733713,0.22390781,-0.21502675,0.12476646,-0.39973372,0.1347327,0.54438686,-0.17757468,0.007894198,-0.41740167,-0.46417326,-0.7862555,-0.20462802,0.4878958,0.050769772,0.044204537,-0.7163063,0.19243962,-0.11097527,-0.05980582,-0.10742843,-0.303989,0.5355595,0.06771715,0.21467218,-0.17886183,-0.54914564,0.09600291,0.05302957,-0.28855532,-0.2605597,0.5531893,-0.09442686,0.60334474,0.11261557,0.115090095,0.18363602,-0.5273864,0.25060445,-0.20680186,-0.24413384,-0.6372088,-0.13855381 +650,0.6549698,-0.1085608,-0.590624,-0.16729246,-0.42648864,0.09603627,-0.17026027,0.5703339,0.34329394,-0.31654358,-0.08509236,-0.081212096,0.172587,0.3655737,-0.1914421,-0.75465566,0.008946044,0.20675741,-0.42795333,0.51259327,-0.42969054,0.25288978,-0.1062165,0.4564991,0.10078358,0.25060472,0.09725953,0.02414764,0.076930895,-0.109946504,-0.14854217,0.3875874,-0.4718032,0.21290796,-0.12697068,-0.3651835,-0.011295349,-0.43456218,-0.23660207,-0.7382544,0.19353986,-0.5723104,0.43281677,0.019983536,-0.33227485,0.19618516,0.24859919,0.24996722,-0.2309773,-0.11235937,-0.053859506,0.04992572,-0.11976842,-0.13937587,-0.28295553,-0.41966364,-0.53152287,0.048337527,-0.40937948,-0.036489923,-0.23476414,0.17586136,-0.17260459,0.09389133,-0.02222268,0.5174213,-0.29350945,0.07347911,0.26866928,-0.16435774,0.18610239,-0.5399243,-0.18355285,-0.04139911,0.22575296,-0.18633568,-0.32311648,0.20673144,0.28544244,0.4715418,-0.13798836,-0.15044633,-0.40801463,-0.18455614,-0.062640004,0.53610384,-0.30895337,-0.5153416,-0.25995386,0.01127041,0.021747176,0.2914599,-0.026259528,-0.15149863,-0.070441015,-0.12782075,-0.29964092,0.34999564,0.4406104,-0.48585504,-0.22820206,0.32949385,0.5167072,0.15662411,-0.13023429,-0.008186383,0.076234676,-0.66698503,-0.16355456,-0.022251982,-0.08454395,0.39084116,-0.14948682,0.18515842,0.41038868,0.037158195,-0.1832514,0.31552675,0.08202345,-0.05055489,-0.5293066,-0.19633068,0.30121756,-0.4368711,0.20198406,-0.21427754,0.7042738,0.18852635,-0.7479339,0.26162475,-0.5651798,0.08188222,-0.10357795,0.4064861,0.73664564,0.3530996,0.14158699,0.76142234,-0.28413787,0.10510971,-0.18889461,-0.1528564,-0.01883029,-0.028730618,-0.09219502,-0.5539622,0.3511556,0.07786213,0.037533317,0.46393535,0.37129754,-0.60022056,-0.24902776,0.21852134,0.8638602,-0.24299,-0.23018034,0.75217336,0.90865666,0.9400645,0.050563462,1.0633434,0.10500783,-0.1879363,0.25591162,-0.15802003,-0.7288912,0.2920147,0.31408787,0.098797224,0.23753479,-0.058474902,-0.12902011,0.46259406,-0.10164734,-0.13787256,0.042675283,0.20044391,0.21638395,-0.0386344,-0.4070726,-0.3750035,0.031979084,-0.07348917,0.19387853,0.22789943,-0.21419899,0.4483675,0.045951895,1.5352963,0.027224438,0.02581715,0.1398017,0.36630827,0.40679404,-0.1425552,-0.20633395,0.32421497,0.2290974,0.08445321,-0.51378727,0.2760356,-0.18305644,-0.41327408,-0.076617554,-0.39732775,-0.1399421,-0.06481187,-0.41655323,-0.14349496,-0.22861542,-0.10476773,0.5706353,-2.8983014,-0.16561835,-0.04188909,0.22532634,-0.22544979,-0.4068943,-0.2342428,-0.4453586,0.4287946,0.34315115,0.5324615,-0.4939092,0.27717748,0.3790408,-0.6344762,-0.09475497,-0.59558976,-0.08700641,0.035124205,0.24919839,0.009526519,-0.13734545,-0.022173319,0.24156968,0.5302078,0.05095076,0.15545121,0.40222713,0.41774887,0.04088836,0.46446642,-0.14039569,0.52546966,-0.40561125,-0.22103684,0.36490604,-0.5183711,0.2685147,0.026093427,0.09528408,0.52998644,-0.5370227,-1.1836764,-0.64519626,0.0059138113,1.035796,-0.30340368,-0.31875426,0.19995458,-0.41956076,-0.2217545,0.11062043,0.4345247,0.032370765,-0.11198253,-0.7895256,0.027252316,-0.03144545,0.20816708,-0.04173889,-0.1254054,-0.32980317,0.67803705,-0.00076476164,0.5490615,0.1582688,0.13953762,-0.30984265,-0.38477892,-0.023186278,0.7926279,0.33217397,0.24854386,-0.22557208,-0.2007202,-0.53751504,-0.004000289,0.09025718,0.6981469,0.54017353,0.026259363,0.053964842,0.2753635,0.074951135,0.06694626,-0.12509255,-0.18601322,-0.19197093,0.056323882,0.5967531,0.56498986,-0.18990622,0.33865973,0.0048328126,0.35571358,-0.3270321,-0.40768868,0.54760754,0.95482635,-0.2167582,-0.446061,0.6206101,0.4941533,-0.21715716,0.40882966,-0.6241695,-0.3844106,0.37593895,-0.12402092,-0.24753077,0.12861171,-0.3189434,0.08517909,-0.87664133,0.0025732347,-0.33892632,-0.35515815,-0.5271968,-0.12008726,-3.4442043,0.3103173,-0.04135061,-0.15847905,-0.21098064,-0.11161681,0.22349058,-0.45503804,-0.7161985,0.14766045,0.09671249,0.75383866,-0.17703095,0.12025946,-0.25350538,-0.3333924,-0.33379152,0.14265864,0.10081343,0.40993747,0.029272089,-0.3782153,-0.057180297,-0.13114727,-0.45207193,0.115813695,-0.6004902,-0.39259455,-0.1432533,-0.5770731,-0.18160036,0.5921558,-0.44983584,0.037051167,-0.17767169,0.097994246,-0.13304405,0.18803796,0.029680863,0.14831413,0.029870884,-0.18720451,-0.011128085,-0.28012338,0.26226953,0.014874025,0.26771086,0.34277993,-0.1127555,0.20594247,0.5280834,0.7150563,0.122406006,0.86856735,0.3497397,0.09575592,0.39175972,-0.23254915,-0.2319717,-0.3418488,-0.13049291,-0.19794573,-0.3543268,-0.30363634,-0.12527768,-0.4025446,-0.69186676,0.42367977,0.09304158,0.07473355,-0.023224486,0.3492942,0.58068085,-0.32589865,0.09023857,-0.057016283,-0.12863237,-0.50684345,-0.3270742,-0.45307797,-0.3009563,0.09590813,0.9746577,-0.28413066,0.13752472,-0.10407354,-0.098331876,-0.075358644,0.37261847,0.091776714,0.2567194,0.42909497,-0.13987723,-0.5868834,0.34167022,-0.27689168,-0.32801253,-0.4685059,0.2927672,0.40933627,-0.60244006,0.6738507,0.3810751,0.2426426,-0.115638025,-0.5198687,-0.040292,0.10883814,-0.16283187,0.3190563,0.3880385,-0.7857065,0.48491988,0.39605373,-0.14485036,-0.7144353,0.5911048,0.0033457726,-0.51365966,-0.20473549,0.38301465,0.33883244,0.030335495,-0.21766283,0.038011532,-0.43307763,0.07151062,0.102860495,-0.027040944,0.34141642,-0.23731081,-0.05314839,-0.7550942,-0.021754852,-0.5322336,-0.28109145,0.24061522,0.038672473,0.0036287436,0.14607446,-0.019589577,0.37724286,-0.40179655,0.04968811,-0.25926685,-0.23321533,0.33920798,0.42489153,0.48487625,-0.38597134,0.5445753,0.011110567,0.10476917,0.067355506,0.1095688,0.41040212,-0.040168278,0.562384,-0.07268911,-0.18456936,0.12964478,0.5319847,0.14218765,0.13937488,-0.010760188,-0.015931621,0.18289609,0.008609996,0.0768005,-0.058873586,-0.47140202,-0.07688122,-0.33561167,0.019450216,0.58501434,0.15408406,0.21354611,0.07187124,-0.28805155,0.0632819,0.1692097,-0.097802006,-1.2764251,0.43947393,0.12429069,0.89569014,0.5705328,0.0075426227,0.08054258,0.58020073,-0.13337477,0.19932862,0.42465225,-0.03182152,-0.37062073,0.51957923,-0.66521496,0.5212189,-0.083041884,0.004907445,-0.034917608,0.035640627,0.47969297,0.91165245,-0.18425713,0.07052948,0.21392311,-0.32439712,0.15125541,-0.38508877,-0.0727747,-0.6332612,-0.12831418,0.7186858,0.43135568,0.3822146,-0.36445156,-0.056259565,0.13827293,-0.08095013,0.015184096,0.0463191,0.05538685,-0.14337318,-0.5872221,-0.14906296,0.5459036,0.114955045,0.2144558,0.08764672,-0.19032118,0.27951267,-0.114746295,0.0776741,-0.14159623,-0.58344686,-0.003341198,-0.3636155,-0.5169001,0.46319252,-0.18525492,0.16651845,0.20147285,0.08398388,-0.38570327,0.34226605,-0.016990807,0.7896649,0.0042770314,-0.10221944,-0.4016618,0.09975102,0.19163063,-0.15259038,-0.2210007,-0.42889962,0.04794256,-0.5412701,0.4892264,-0.014431302,-0.3345184,0.15249227,0.014002063,0.11007263,0.5083392,-0.15410627,-0.17652042,-0.14065772,-0.06356991,-0.33654174,-0.22823404,-0.11165242,0.27961046,-0.039444756,-0.073081054,-0.12122516,-0.10270152,0.0008870278,0.3937455,-0.08198549,0.31522363,0.36694768,0.22930373,-0.27774826,0.118851386,0.24801132,0.51338565,-0.0919453,-0.15722215,-0.23691645,-0.3576321,-0.3444701,0.26119846,-0.03805286,0.3661827,0.11640493,-0.21892945,0.5685216,-0.139836,0.9315859,-0.050119143,-0.3425191,0.06755275,0.48087737,-0.052264664,-0.15699156,-0.35200754,0.82559747,0.52557427,-0.15285528,-0.09295273,-0.30860168,0.09602753,0.14232484,-0.1795793,-0.042402763,-0.07418863,-0.46695969,-0.291637,0.08263106,0.19811381,0.36214876,-0.14254855,0.017537406,0.14049579,0.06870029,0.21749146,-0.27778304,-0.044109304,0.16097207,0.37179074,0.009379174,0.14909656,-0.5256419,0.31464916,-0.5870525,0.104750395,-0.34237775,0.20260313,-0.3486763,-0.26407096,0.19239743,-0.037850063,0.23590255,-0.17475091,-0.34322193,-0.29208517,0.49445674,0.26157945,0.056031767,0.61178076,-0.24080524,0.106395245,0.21619503,0.59669924,0.82953465,-0.17854418,-0.24112926,0.2568799,-0.29823765,-0.55817777,0.19288458,-0.40866342,0.2125635,0.08678663,-0.08934682,-0.59381145,0.24616395,0.18860148,0.26160175,0.044194646,-0.70301056,-0.17213723,0.33946353,-0.24399574,-0.21145461,-0.30270913,0.09951687,0.6878931,-0.111910924,-0.16379164,0.15026416,0.17933036,-0.034551945,-0.79993385,0.09080834,-0.505251,0.35685396,0.17760266,-0.27271312,-0.25055164,-0.05090648,-0.49240205,0.2503832,0.12060719,-0.2967702,0.06926234,-0.44813594,-0.00886003,0.89248276,-0.11973957,0.3083908,-0.4849585,-0.47514382,-0.71972954,-0.26471075,0.4149031,-0.0035857516,0.02774881,-0.65924865,0.045975465,-0.18595025,-0.4042965,-0.08895184,-0.34566745,0.44315866,0.02496251,0.39547515,0.036732234,-0.8452129,0.19881167,-0.03148876,-0.25002858,-0.4331674,0.36211607,-0.110771105,0.8568738,0.09603989,0.052431963,0.4036133,-0.4654294,0.066632815,-0.26233593,-0.0036318642,-0.53700405,0.07367184 +651,0.32084367,-0.14680034,-0.72764355,-0.17724416,-0.42871663,-0.14537597,-0.021564212,0.7011375,0.3635851,-0.25464404,-0.13899274,-0.03782535,-0.19329569,0.40363836,-0.13528457,-0.7210677,-0.2134505,-0.042988636,-0.5831876,0.5308992,-0.25134534,0.28196853,-0.33117348,0.5567451,0.42970228,0.20466155,0.008725011,0.17788196,-0.020060072,-0.21622922,-0.013656827,0.28615028,-0.51674217,0.20464924,-0.37338865,-0.32137233,-0.11277992,-0.3977721,-0.35372072,-0.7843644,0.38829368,-0.582357,0.36161625,-0.02962889,-0.22751643,0.107204475,0.27198628,0.16801527,-0.08007422,-0.30878437,0.07977844,-0.0983369,0.096391864,-0.29154474,-0.5419926,-0.51682574,-0.56581795,-0.052489143,-0.5723486,-0.12519962,-0.24507426,0.091592275,-0.25041077,-0.17902385,-0.09627343,0.69788957,-0.32840186,0.17857304,0.29959542,-0.10131491,0.037270725,-0.67131335,-0.23968394,-0.11600493,0.06537047,-0.016840044,-0.36472648,0.53296757,0.058710042,0.06005954,-0.036783513,-0.288025,-0.3821511,-0.021692041,0.13631287,0.30385876,-0.36479318,-0.37560394,-0.032628063,-0.005196741,0.4119094,0.45697927,0.20401606,-0.18460883,-0.086996116,-0.08116032,-0.00048374213,0.665902,0.5357688,-0.06039925,-0.075996846,0.33136544,0.4051353,0.3066668,-0.28638893,-0.13986398,-0.12458082,-0.4502229,-0.13163224,0.24895811,-0.13883033,0.38871348,-0.039315738,0.033025358,0.62368816,-0.11793105,-0.01807388,0.11046652,0.08993809,0.17040561,-0.4680263,-0.086496636,0.26060653,-0.43679565,0.39347643,-0.16995965,0.6765694,0.35460678,-0.59470004,0.21607032,-0.68799555,0.14843348,-0.04004858,0.3807055,0.76248556,0.53605616,0.1616235,0.7189502,-0.20352767,0.2047582,-0.12675712,-0.10712572,-0.030121299,-0.33739808,-0.09731482,-0.42086995,-0.035339452,-0.29191753,-0.085585035,0.2201438,0.23683476,-0.464232,-0.35096577,0.28467262,0.88406724,-0.11631783,0.03387596,0.82936466,0.99012715,0.8968856,-0.069156736,0.6697578,-0.2042978,-0.18439604,0.33322796,0.018299699,-0.5937728,0.2956125,0.2968842,-0.25007313,0.13266002,-0.17465112,0.059002306,0.25467512,-0.3588414,-0.11504484,-0.16947725,0.25243276,0.34778294,-0.047715783,-0.23671794,-0.43196455,-0.08571667,0.015385637,-0.075494215,0.4606933,-0.24385327,0.2759951,-0.22113441,1.3698771,0.17435749,0.007176608,0.2867207,0.85336614,0.33546034,-0.2702297,0.040303223,0.34975353,0.108597465,0.23034772,-0.5783217,0.21399353,-0.40981087,-0.4429012,-0.025667645,-0.5009533,-0.27846757,0.062063158,-0.5770923,-0.19651969,-0.11258096,-0.10687273,0.56387866,-2.835691,0.019433241,-0.10761472,0.3657591,-0.2517389,-0.30570826,-0.04265868,-0.54090095,0.5664552,0.15849663,0.5383502,-0.3843678,0.12223606,0.4175823,-0.7186658,-0.020271663,-0.48451534,0.11724644,0.036075354,0.2778896,-0.12786716,0.028547296,0.1692512,0.028388243,0.6141583,0.124378406,0.09626475,0.4208438,0.35999715,-0.38997108,0.6111561,-0.28488642,0.44150975,-0.59751505,-0.22024243,0.3216113,-0.5819615,0.44633374,-0.04085847,0.07199491,0.62672275,-0.5534452,-1.0433676,-0.3842729,-0.05512252,1.1863883,-0.26953566,-0.42668313,0.24250828,-0.6327595,-0.042534914,-0.27847445,0.6842801,0.044285987,0.060828283,-0.47020018,-0.06798353,-0.13451715,0.13161363,-0.06747147,-0.09694116,-0.16242312,0.5619805,-0.05355213,0.4716411,0.23719954,0.20549837,-0.5659142,-0.50897783,0.07204281,0.48689264,0.3244651,0.086213306,-0.18109943,-0.20744991,-0.37310088,-0.12356795,0.22792567,0.8063842,0.5585137,-0.16141534,0.086366974,0.39513248,0.050745305,0.015226011,-0.19987026,-0.25195912,-0.40024722,0.18443817,0.60007286,0.8075727,0.09706958,0.39875224,0.20270084,0.32688972,-0.29934198,-0.4352565,0.275457,1.1415994,-0.20656888,-0.3978667,0.4363597,0.4937367,-0.30094188,0.39334553,-0.38696846,-0.3514533,0.66377157,-0.094188094,-0.63394994,-0.07987221,-0.23292837,-0.13205558,-0.57124114,0.14362505,-0.62159973,-0.48667014,-0.56309134,-0.18354617,-2.4239674,0.09855065,-0.23252806,-0.19552733,-0.27818435,-0.1699217,-0.018338352,-0.5604731,-0.6197338,0.06066286,0.13878366,0.7377764,-0.1834045,0.10826417,-0.42766306,-0.3016895,-0.29304677,0.2378406,0.4742896,0.46834323,-0.1415397,-0.2897518,-0.3081025,-0.0010212109,-0.48560196,0.03683304,-0.40858433,-0.23905611,-0.18262044,-0.6688114,-0.1130094,0.6247095,-0.39219195,-0.069739886,0.0429815,0.10533324,0.23493631,0.017243253,0.2448956,0.2996735,0.20500486,-0.18905331,0.20687246,-0.20876224,0.19444348,0.15540919,0.61655796,0.1279431,0.1412983,0.4042279,0.5383414,0.69592315,-0.17324477,0.87900823,0.35214233,0.12593475,0.40143046,-0.27625242,-0.42394778,-0.5364982,-0.081171274,0.24089548,-0.2640552,-0.320374,-0.0074308882,-0.35358146,-0.8957293,0.59676486,0.07307494,0.2860306,-0.07627914,0.14484684,0.599275,-0.3431244,-0.077789985,0.088553324,-0.024430353,-0.6555259,-0.33844566,-0.5394131,-0.47036436,-0.08909523,1.0665271,-0.2372497,-0.22047281,0.16798204,-0.36825708,0.106091425,0.24298818,0.010285272,0.078698605,0.28085706,0.13259004,-0.46329367,0.40886885,-0.041255593,-0.008931256,-0.5013004,0.49083132,0.54752487,-0.4801294,0.53177124,0.09932833,-0.00059713767,-0.4351167,-0.69390047,-0.0139107425,0.0039899074,-0.07413942,0.27352992,0.28621757,-0.7865137,0.27278182,0.114336364,-0.2312462,-0.7596338,0.548774,-0.13494761,-0.25795165,-0.18702294,0.40675718,0.3820974,-0.17634445,-0.12199478,0.37896478,-0.2693554,0.14212051,0.26181066,-0.055094875,0.028792597,-0.35401472,-0.14086531,-0.6783936,0.33678088,-0.50698227,-0.31413376,0.63841593,-0.12927178,-0.010359787,0.1034118,0.03627885,0.095721155,-0.10019211,0.17974265,-0.2250827,-0.41193148,0.49002874,0.42874545,0.7995485,-0.6019803,0.51062155,0.01859415,-0.05773612,0.5305025,0.29151165,0.3284841,-0.078182206,0.5610155,0.04216705,-0.19932547,0.03119023,0.743533,0.2407585,0.22177857,-0.09231086,-0.07861873,0.1800976,0.10037859,0.08107941,-0.26188377,-0.71663606,-0.00041175575,-0.15457596,0.05262872,0.3394199,0.04233677,0.17741486,0.043458343,-0.22509283,0.15392247,0.12721455,-0.08676626,-1.2393028,0.44755238,0.23833844,1.0444316,0.2719777,0.23715216,-0.19795388,0.71576285,0.033642605,0.0095807295,0.49047893,0.10673721,-0.38693196,0.4833203,-0.6431882,0.7983398,0.094202116,-0.045165163,0.13599929,0.19845684,0.6689745,0.6963545,-0.13574456,-0.06442861,0.14817287,-0.35286728,0.20662935,-0.41092312,-0.004739358,-0.5117079,-0.39365938,0.5394091,0.56511724,0.21196762,-0.2951657,0.036478974,0.019574692,-0.18781108,0.20258123,-0.17004156,0.0058435844,-0.08092625,-0.4728095,-0.10498575,0.41728136,-0.26482728,0.253295,0.045144673,0.060003903,0.32803148,-0.17081608,0.08385928,-0.12682775,-0.61188275,0.19429739,-0.3642686,-0.46446797,0.27037933,-0.27048072,0.33372423,0.32726339,0.013235251,-0.37058684,0.7253182,0.01797689,0.8687989,-0.47725323,-0.16510442,-0.461153,0.13734218,0.093542084,-0.26066482,0.094072215,-0.15823695,0.009490426,-0.36571458,0.3208525,-0.17497547,-0.4261534,-0.24239086,-0.1515204,-0.0023461087,0.5741546,0.06377813,0.010579278,-0.13143247,-0.30184218,-0.43813282,-0.34733883,-0.003636828,0.25307637,-0.15311982,0.08203959,-0.10975431,-0.22262461,0.19802295,0.2512755,-0.2744908,0.42681488,0.22024682,0.2105703,-0.11232356,-0.044760246,0.26253313,0.5576271,0.023977535,-0.006458292,-0.2921208,-0.16276136,-0.4827481,0.23969705,-0.19126743,0.56725514,0.1760463,-0.24269496,0.48884836,-0.23259942,1.1964854,-0.16466692,-0.4229423,0.22147247,0.46903056,-0.013079364,-0.20992804,-0.23440558,0.79397553,0.4077643,-0.024758,-0.045815863,-0.07067757,0.089721315,0.13578986,-0.31015044,-0.19838017,0.014982103,-0.4097818,0.026987057,0.16715391,0.20508698,0.35410994,-0.26648372,-0.2337742,0.19823524,0.14009134,0.08249199,-0.31474692,-0.18504395,0.2743232,0.28574,-0.090264134,0.09308731,-0.5444534,0.3365811,-0.36559412,0.31892917,-0.2876603,0.31452268,-0.27421027,-0.38932183,0.19274066,-0.15552776,0.44384214,-0.23250818,-0.21666566,-0.3964291,0.44398597,0.3088683,0.18729486,0.34722435,-0.24526462,0.07615921,0.017645914,0.60649806,0.7190449,-0.21516465,-0.25088638,0.066745386,-0.38733017,-0.5801325,0.2450769,-0.4653851,0.32320282,-0.03883553,-0.038735397,-0.45674002,0.16059992,0.15243459,0.102820866,-0.052435234,-1.023222,-0.14826928,-0.078895405,-0.2689697,-0.2960687,-0.5731758,-0.009763451,0.56006515,-0.14250793,-0.27013713,0.2180485,0.10403167,0.08195793,-0.3685682,0.22204432,-0.3150137,0.078518264,-0.14323577,-0.518488,-0.17308475,-0.07279788,-0.44866723,0.25367633,-0.19269317,-0.25631735,-0.016371341,0.13549627,0.16633493,0.873783,-0.21737693,0.3451169,-0.30133414,-0.66989577,-0.75033325,-0.35319865,0.20003143,0.19271943,-0.034862533,-0.55679065,-0.076458395,-0.14405102,-0.25177628,-0.21306203,-0.2659955,0.25608522,0.11987542,0.4738777,-0.29028493,-0.72238535,0.46031666,0.13220277,0.03838661,-0.46841767,0.18646039,-0.25425804,0.8717597,-0.0040653357,-0.027839322,0.27069977,-0.30928436,-0.0047939145,-0.13296705,-0.21075517,-0.29142863,0.1956674 +652,0.27583727,-0.018541873,-0.6512068,-0.18783693,-0.20332114,0.13475847,-0.11558591,0.12949194,0.2985069,-0.3483452,-0.22041906,-0.1170029,-0.02568373,0.26563928,-0.14387472,-0.7058479,-0.14024232,0.22024791,-0.70918566,0.4899945,-0.2757284,0.3902829,0.2980166,0.2925868,0.06986884,0.20386757,0.13744986,-0.20652436,-0.13882303,-0.0062569636,-0.06605975,0.14449954,-0.6609669,0.26686102,-0.21270192,-0.13449153,0.014251298,-0.5055812,-0.44740763,-0.738136,0.3917393,-0.65638244,0.62058777,0.084375,-0.19031236,0.025892152,0.012650822,0.20075132,-0.26869327,0.1485102,0.26978847,-0.2039272,-0.11651174,-0.10049606,-0.23179428,-0.23157112,-0.4364513,0.06871243,-0.38605976,-0.056220252,-0.2132472,0.08813921,-0.18937455,0.030894015,-0.19482431,0.5350924,-0.32772908,0.02075039,0.28776747,-0.18141879,0.31796318,-0.4983113,-0.11693,-0.06980273,0.34992412,-0.18376562,-0.14273968,0.2503907,0.24780165,0.55021244,-0.00757885,-0.24727596,-0.15364392,0.073958956,0.14664148,0.43701315,-0.13255528,-0.15467463,-0.14101939,0.11795091,0.10218849,0.101139784,-0.059964936,-0.62794054,-0.0047714883,-0.19142509,-0.029829714,0.17024657,0.560719,-0.21811016,-0.11104905,0.27550843,0.20376213,0.26519075,0.06698592,0.059568055,-0.058992688,-0.45069996,-0.21785606,0.20295255,-0.13489011,0.5771968,0.017082648,0.13948305,0.53385156,0.026602779,-0.11553436,-0.09635542,-0.056303483,0.1472107,-0.019445505,-0.11662495,0.24752322,-0.52992475,0.031776242,-0.08378504,0.5450436,0.11229671,-0.7976274,0.28298372,-0.47969565,0.1121552,-0.075661145,0.5628123,0.77758896,0.3815432,0.11880127,0.8868583,-0.73677593,0.1216925,0.017870622,-0.3688484,0.059857078,-0.01291527,-0.055827398,-0.5077732,-0.15881059,-0.071354456,-0.101556286,0.0143245375,0.0326267,-0.37919113,-0.03346516,-0.03703943,0.7548916,-0.33119154,-0.0224259,0.63107246,1.0674177,0.8922533,0.17807865,1.3072289,0.20428273,-0.2540672,-0.12289099,-0.22499311,-0.6198888,0.14827469,0.2331878,0.080666624,0.32943338,0.20693901,0.13830423,0.28566393,-0.49281555,0.09048542,-0.097074874,0.16628239,-0.01398577,0.009495237,-0.38730758,-0.37119508,0.07851847,0.21906236,-0.097067334,0.118283466,-0.17620817,0.3509908,0.10214969,1.3431915,-0.08172067,0.05189982,0.041770395,0.13144031,0.23826432,-0.05660484,-0.2295902,0.2228241,0.38531443,-0.060457736,-0.4954772,-0.20617367,-0.21832527,-0.24888213,-0.21239854,-0.21252558,0.11713427,0.06395017,-0.3796814,-0.12842871,0.15730698,-0.41982582,0.5710245,-2.4841542,-0.08714284,-0.08987458,0.3362588,-0.30269304,-0.30810165,-0.25954643,-0.36023623,0.37849584,0.3498087,0.3651125,-0.61172324,0.3072762,0.22476958,-0.39065024,-0.2190189,-0.45580763,0.006973062,0.09916311,0.26317343,-0.0011114223,-0.15263923,-0.11312666,0.23004113,0.49835178,-0.015231056,-0.14941587,0.40686014,0.4141123,0.09507593,0.456657,-0.0004444814,0.48289546,-0.17998831,-0.08860832,0.3561981,-0.16968371,0.24300098,-0.015350138,0.20983092,0.35169885,-0.6092187,-0.6560208,-0.6160529,-0.44021705,1.1454674,-0.4053948,-0.26231822,0.25636297,-0.06650491,-0.21121518,0.06945661,0.64746815,-0.012535353,0.13850899,-0.85219246,-0.14103273,0.028525354,0.2864093,-0.027244534,0.03931009,-0.45197654,0.5680539,-0.1414335,0.48355484,0.58021927,0.16287862,0.0011488923,-0.6046062,0.21225584,1.0677264,0.3917026,0.14925747,-0.19478525,0.0032653862,-0.099087216,-0.07350589,0.03126422,0.57184786,0.67175096,0.0059719533,0.034961317,0.24305645,0.033439636,-0.03348699,-0.13537493,-0.35806128,-0.05072818,-0.14549221,0.58321816,0.71920925,-0.098807506,0.31407484,-0.0994033,0.28239796,-0.019971503,-0.47176746,0.5049536,0.8729333,-0.03257557,-0.17169623,0.48408768,0.2796945,-0.13399212,0.35539225,-0.4513338,-0.305314,0.58939826,-0.15389623,-0.5611302,0.25709602,-0.3355022,0.13877872,-0.8629759,0.4042204,-0.002062772,-0.4422658,-0.3766575,-0.0052853203,-3.4787326,0.16539827,-0.2460452,-0.08173459,-0.021384459,-0.07570177,0.23744035,-0.35112205,-0.69226414,0.12609774,-0.00044267625,0.53319377,-0.14306352,0.1278062,-0.12604329,-0.19690026,-0.1333789,0.27309835,0.3335069,0.2317728,0.04250558,-0.32315275,-0.13635695,-0.3525694,-0.3902176,0.03050646,-0.48675394,-0.46731335,-0.16087754,-0.54061764,-0.30392832,0.6410862,-0.37315693,-0.07005631,-0.092121884,0.047405165,-0.063595586,0.26080012,0.08253157,0.31938055,0.030079624,-0.053633634,-0.16107996,-0.15459828,0.31681153,0.2553886,0.14488229,0.3486905,-0.09221826,0.17631729,0.36375216,0.7462529,-0.18821584,0.6672452,0.38741708,-0.07428185,0.16039944,-0.33110598,-0.35262474,-0.6790189,-0.35699993,-0.17461394,-0.4183542,-0.51667964,-0.19192378,-0.33231884,-0.81585276,0.33370546,-0.023481455,-0.0005662569,0.12059392,0.042868357,0.36527735,-0.21219532,0.07353066,-0.11873208,-0.13486432,-0.48496276,-0.521865,-0.54360735,-0.52031225,-0.1096002,1.0225893,0.07514602,-0.015340026,0.03838351,-0.3163231,0.19669497,-0.053090803,0.2697715,0.22332957,0.34793684,-0.0063167317,-0.7276004,0.46876246,0.027788421,-0.09941018,-0.5625977,0.151251,0.7156542,-0.6094543,0.6277273,0.3316254,0.091602184,0.0218047,-0.4719866,-0.4325277,-0.019626928,-0.32687488,0.5350462,0.17380397,-0.45820013,0.2923321,0.17787491,-0.19322683,-0.76729834,0.4280541,-0.051999707,-0.24516144,0.25834513,0.3878046,-0.23376228,-0.1282102,-0.05392772,0.112273,-0.33918694,0.3398072,0.29234812,0.030574176,0.17336333,-0.14161234,-0.2486852,-0.7132822,0.0465883,-0.54644036,-0.29663092,0.13286838,0.22038457,0.036025297,0.02203891,0.15517299,0.5655457,-0.29567322,0.14141056,-0.13116066,-0.24411431,0.3639617,0.5295939,0.31570497,-0.39422816,0.52043885,-0.1340765,-0.04459714,-0.296773,0.116556205,0.4411728,0.19110866,0.08253274,-0.056922294,-0.08867078,0.17598009,0.5457936,0.10231685,0.25450978,0.15641955,-0.25727445,0.3713558,0.1467867,0.11400594,-0.066296734,-0.3660901,-0.09760582,-0.12743078,0.09586827,0.39181498,0.15640846,0.19761123,-0.27664015,-0.26522604,0.12658016,0.28761965,0.11534526,-0.889716,0.40653795,0.05576272,0.66282624,0.6158341,0.033587877,0.047827665,0.4451345,-0.16287851,0.06956264,0.20960662,-0.057136986,-0.4843594,0.38945228,-0.43001652,0.35371348,-0.15396656,-0.08973922,0.2233742,0.124641314,0.1653001,0.87852234,0.003686096,0.037988894,-0.06517916,-0.10285475,-0.05527274,-0.38803345,0.07097311,-0.5269299,-0.61774296,0.63352436,0.36457542,0.278665,-0.3147292,-0.034635793,-0.015148441,-0.23372395,0.20780566,-0.0029469517,-0.010296489,0.059560742,-0.6620001,-0.1772349,0.5720373,-0.17679122,-0.09914843,-0.02430479,-0.05498835,0.10137197,-0.25587076,-0.03847124,-0.06134712,-0.72364604,-0.04292665,-0.491379,-0.32339972,0.23279433,-0.44592375,0.31307343,0.03445971,0.034966733,-0.36382776,0.41324443,0.2864336,0.7385536,0.18774581,-0.077217,-0.22159687,0.15494432,0.24255882,-0.17034754,-0.0008979738,-0.29336056,0.028695974,-0.58316886,0.47324702,-0.07939197,-0.07560687,0.09237893,-0.12141576,-0.027576,0.4375685,-0.17691545,-0.023691896,0.22399066,0.025059137,-0.20636606,-0.0824026,-0.4628725,0.19872591,0.18200032,-0.03995037,0.062297408,-0.027588261,-0.23419364,0.3423201,0.17852595,0.2600251,0.30273795,-0.023751067,-0.3883811,-0.051677637,-0.013146924,0.39286852,0.380363,-0.09006076,-0.23106275,-0.38348016,-0.20413086,0.09017626,-0.1287121,0.16693385,0.036351502,-0.26259342,0.67147446,0.3631852,1.0765153,0.040678483,-0.2336091,-0.0031799844,0.4215068,0.04531037,0.022129895,-0.41176704,0.8813572,0.5797254,-0.074053966,-0.11552645,-0.13746098,-0.062269144,0.045592796,-0.23732044,-0.095208414,-0.10169288,-0.61510277,-0.3270951,0.15739706,0.2871358,-0.026625749,-0.016945004,-0.12129191,0.07595163,0.12698476,0.30253023,-0.42676786,-0.0008382286,0.4012631,0.1491892,0.17990611,0.16360195,-0.33115292,0.53321385,-0.6214071,0.070082664,-0.31958553,-0.0002733171,-0.07139785,-0.23916562,0.14083956,0.096660614,0.36455867,-0.40479273,-0.19923055,-0.36689505,0.54795253,0.008983644,0.24164942,0.68991834,-0.188533,-0.09001349,0.071940295,0.5311134,1.1558759,-0.2298386,0.13485415,0.45216376,-0.34772748,-0.3347216,0.10794751,-0.29181966,0.0042765057,-0.16424139,-0.385287,-0.4120548,0.1908599,-0.06559212,-0.051718432,-0.014206569,-0.62119037,-0.16586311,0.4760212,-0.3434842,-0.2727738,-0.29216343,0.30306035,0.53708214,-0.26736924,-0.49821678,0.11010545,0.15986969,-0.2841104,-0.55234396,0.11329585,-0.36927658,0.24184313,0.14280902,-0.29522547,-0.120743416,0.22697535,-0.41078418,-0.00047422308,0.14177279,-0.4542492,-0.036610804,-0.1190023,-0.08329905,0.96752083,-0.03367124,0.0969099,-0.5879291,-0.46422943,-1.0197324,-0.34155205,0.34364492,0.27168876,-0.031264335,-0.57782954,-0.18417206,-0.0999201,0.051948782,-0.06621496,-0.22598092,0.40895388,0.14858162,0.5415987,-0.22885858,-0.782477,0.0914278,0.16419102,-0.28952432,-0.4008212,0.4459324,0.1664816,0.67767364,-0.08752946,-0.0087491935,0.1994492,-0.6272011,0.19105671,-0.35200113,-0.17442659,-0.5422541,0.046016775 +653,0.4289663,-0.13479218,-0.3926398,-0.27146724,-0.31060982,0.004435416,-0.3364519,0.2612747,0.15561636,-0.3834211,-0.1663123,-0.035442233,0.09034064,0.1360518,-0.2130798,-0.570129,-0.012069599,-0.023907185,-0.58685505,0.41251305,-0.7179983,0.3568812,0.22828321,0.33526185,-0.00014818709,0.4212244,0.33757746,-0.07415819,0.064935096,-0.28716776,-0.09486665,0.20342146,-0.7416406,0.19737439,-0.27264395,-0.39921048,0.24774376,-0.38510925,-0.13877495,-0.73369294,0.028515462,-0.79955137,0.5674021,-0.06385661,-0.16297604,0.027688185,0.24294244,0.20711282,-0.21973896,0.08837017,0.13777588,-0.33657047,-0.1848889,-0.33589315,-0.026558178,-0.43319663,-0.36692467,-0.10983956,-0.69905597,-0.4398724,-0.34309432,0.10952078,-0.3542505,-0.05151182,-0.051785264,0.4139318,-0.4234977,-0.040037934,0.11830079,-0.13855925,0.26838693,-0.64093107,-0.07306793,-0.039399873,0.40397316,-0.09518466,-0.21078244,0.47459957,0.19790195,0.4705246,0.24581064,-0.34648708,-0.12116071,-0.2895838,0.019302214,0.34733686,-0.1709246,-0.19159609,-0.20721382,0.006816423,0.47400424,0.32670355,0.04102846,-0.15910354,0.07110869,0.06290331,-0.24200307,0.41987938,0.5396487,-0.33787993,-0.24534187,0.13898939,0.388068,0.13215126,-0.27442732,0.047899302,-0.051077664,-0.45796445,-0.26702002,0.13572124,0.041425582,0.49099195,-0.12452723,0.20911366,0.72749037,-0.26672888,0.21688057,0.02787068,-0.042297598,0.06682379,-0.24865372,-0.18801574,0.27474517,-0.78178596,0.008587769,-0.37396985,0.805171,-0.06181448,-0.70551044,0.34387198,-0.5005092,-0.07292448,-0.11556519,0.54197377,0.52039915,0.5065881,0.29381102,0.6829675,-0.32883447,0.031685997,-0.1763804,-0.3461486,0.08575225,-0.13238102,0.09476324,-0.40092754,0.08591442,-0.07158612,0.34371865,0.04085656,0.28707033,-0.42582083,-0.10808675,0.3973953,0.7186757,-0.36094543,0.021688167,0.5243688,1.118931,0.9088667,0.16802081,1.1155219,0.23679323,-0.10043247,0.07021884,0.1016465,-0.57035285,0.11658896,0.47830683,0.1772139,0.21251346,-0.08617334,-0.104569025,0.32044992,-0.4015437,-0.08777119,0.067123204,0.469572,0.06239898,-0.07864547,-0.42646414,-0.2402251,0.14249246,-0.01273435,0.013460887,0.18135415,-0.08023181,0.22055937,-0.14345647,1.0569988,-0.05146645,0.026648585,0.1187489,0.7084466,0.30342185,-0.012920211,0.055827238,0.39600766,0.3153049,0.033365346,-0.572691,0.124574885,-0.23683856,-0.4176543,-0.13402185,-0.4699122,-0.052700736,0.1594802,-0.42647296,-0.2523424,-0.059274364,-0.22319777,0.38277492,-2.6928911,-0.22770517,-0.015403358,0.35441652,-0.29540202,-0.21701965,-0.04461074,-0.4819025,0.4262455,0.2969713,0.48559648,-0.5523015,0.5674747,0.5710299,-0.47736838,-0.2518657,-0.70013046,-0.17533283,-0.19500594,0.38372287,0.09893155,-0.2524403,-0.26912072,0.3494758,0.7761096,0.09691576,0.0639765,0.38558477,0.26851097,0.12733354,0.70613104,0.06251016,0.51770693,-0.28344142,-0.1738255,0.36720866,-0.22668491,0.05696117,-0.0779028,0.12910034,0.52916056,-0.52790046,-0.88666415,-0.5952689,-0.2736353,1.169394,-0.30420992,-0.4532118,0.2618808,-0.2074912,-0.0083280485,0.058416333,0.4036237,-0.20989409,0.2461234,-0.49859196,0.09201776,0.007365751,0.1288238,0.1307171,0.019712178,-0.40523052,0.5930134,-0.03454806,0.54785347,0.21190561,0.29041937,-0.15145212,-0.22921272,0.035487518,0.8073101,0.49782485,0.09172874,-0.18853426,-0.21345097,-0.12754373,-0.103697844,0.032445572,0.5331268,0.8058954,-0.030436138,0.21397765,0.30024692,-0.1376898,0.101803206,-0.01121343,-0.23144086,-0.070096746,0.15987997,0.47031304,0.51562554,-0.016751265,0.30949906,-0.14291033,0.47242975,-0.13551779,-0.5361858,0.43182054,0.6295039,-0.1697559,-0.00075741607,0.39724848,0.61178374,-0.24389662,0.5269254,-0.71979296,-0.40916577,0.8079712,-0.14958371,-0.4146146,0.11794346,-0.3370383,0.25179893,-0.791281,0.37782013,-0.4932782,-0.4519375,-0.3283167,-0.22425994,-3.417561,0.25469258,-0.28771874,-0.038037974,-0.40763468,-0.09234814,0.3619873,-0.70075357,-0.30113092,0.11824706,0.09764249,0.6374999,0.032216653,0.008211673,-0.2867877,-0.3961027,-0.18777823,0.27633724,0.053491354,0.21211107,-0.20413758,-0.40712646,-0.00691092,-0.19239695,-0.6217672,0.18653971,-0.28594112,-0.5385217,-0.08601802,-0.36442757,-0.33895254,0.5403557,-0.30012634,0.08579196,-0.2219639,0.064957276,-0.18440874,0.17305152,0.15968561,0.18135194,-0.027372304,-0.08587645,0.123871975,-0.42085811,0.4113084,0.119546175,0.3521909,0.17076536,0.025327237,-0.07741685,0.49922195,0.26085022,-0.2094689,0.96380156,0.15082149,-0.13599163,0.43197373,-0.30929983,-0.3923584,-0.6848981,-0.33168668,-0.10055793,-0.32008424,-0.31811434,0.23945265,-0.2102272,-0.65839523,0.65028274,0.04649379,0.29310316,-0.057595085,0.4208337,0.29659843,-0.12789539,-0.10797582,-0.06174554,-0.1753296,-0.5721083,-0.20133935,-0.8316465,-0.56074345,-0.12755585,0.7104967,-0.36955854,-0.019256568,-0.07397811,0.09711096,0.25977793,-0.018723078,0.21872775,0.29129657,0.5240019,0.05619747,-0.78877753,0.49289,-0.08826074,-0.119111694,-0.32833844,0.09053114,0.72736466,-0.8339827,0.4462206,0.48667076,0.2008381,0.08442586,-0.58655995,-0.1480262,0.024294829,-0.2972924,0.50577486,0.041652348,-1.0127928,0.6036783,0.20132616,-0.5262352,-0.6360338,0.47165537,0.049163282,-0.30515918,-0.04306143,0.46798187,0.2276413,-0.11733349,-0.10392257,0.15435892,-0.45149505,0.27156755,0.08479207,0.0287442,0.31235012,-0.12861007,-0.29275027,-0.6646198,-0.08244907,-0.42946255,-0.33617514,0.26794007,-0.242594,-0.20276718,0.33105502,0.0770723,0.43795586,-0.19452216,0.21689129,0.044453774,-0.31929928,0.47185734,0.5422817,0.4002078,-0.1795499,0.5654492,0.16450728,-0.17049283,-0.060582053,0.13593982,0.3846864,0.015555634,0.1890488,-0.18055184,-0.10385474,0.30901492,0.5963162,0.13591178,0.37455222,-0.03475406,-0.0018832723,0.4800328,0.1074222,-0.061443005,0.17180488,-0.3644756,-0.17965321,-0.037415132,0.097530685,0.41176698,0.3011006,0.3119381,0.09774792,-0.011841488,0.027585652,0.250436,-0.21339846,-0.86428076,0.27919406,0.20684604,0.69074214,0.36640316,0.1490754,-0.18424836,0.53505886,-0.17362562,0.057509635,0.2813225,0.13760458,-0.4156458,0.8879794,-0.45780727,0.39162847,-0.15920912,-0.01119436,0.07823197,-0.031010246,0.42996594,0.8134372,-0.21299307,0.037055712,0.02753403,-0.25167522,0.02313181,-0.32568607,0.026622891,-0.19855998,-0.25484836,0.74887764,0.2715674,0.30125967,-0.1450429,-0.12865254,0.11723863,-0.31171453,0.30957514,-0.12210365,0.05069582,0.013656406,-0.3731275,-0.19712375,0.51063615,0.10773452,0.15042774,-0.1675034,-0.106600456,0.11998519,-0.06327012,0.027945422,0.066452004,-0.52065,0.12703386,-0.34115702,-0.38346207,0.28577596,-0.36185497,0.02351586,0.17856796,-0.009642205,0.101601,0.16683748,0.19100924,0.4202077,-0.04967761,-0.3731964,-0.20810606,-0.07065846,0.18235935,-0.3542497,0.076773964,-0.35056365,0.11857421,-0.7002332,0.52025425,-0.2496477,-0.2862214,0.2561574,-0.2104085,-0.08818695,0.4349783,-0.06288062,-0.023201609,0.045743488,-0.07460741,-0.25038013,-0.22276981,-0.2071679,0.23197956,0.23661228,-0.08604535,-0.052907754,-0.3258684,-0.056464456,0.47150898,0.11393762,0.36869487,0.015187953,-0.0542053,-0.28433815,0.19975635,0.09321377,0.48340425,-0.040679898,0.16019286,-0.35043913,-0.2620869,-0.26853094,0.14972034,-0.049519897,0.10770108,0.042235073,-0.33017674,1.0777923,0.005887747,0.9429344,-0.0339838,-0.40780935,-0.047767714,0.4986534,-0.38272363,-0.014004374,-0.24679573,1.0025291,0.4947492,-0.08472453,-0.11944286,-0.41989794,-0.15068635,0.18279003,-0.35171992,-0.08821173,-0.2779242,-0.49850896,-0.41139355,0.24205051,0.4156323,-0.038639527,-0.0862521,-0.007904598,0.16271864,0.06561486,0.41748697,-0.7410937,-0.19301382,0.04373916,0.1650712,-0.120246775,0.11471084,-0.40614155,0.37081555,-0.7879234,0.15528466,-0.46345004,0.00874091,-0.23203772,-0.3087881,0.17344116,0.022700815,0.3880687,-0.30043668,-0.47784293,0.02833473,0.34128505,-0.08863554,0.28124088,0.5403069,-0.22150952,0.04722876,0.009698454,0.4733843,1.2504011,-0.19827083,0.002442825,0.2592229,-0.5306395,-0.5061664,0.121798225,-0.33850348,-0.10238907,-0.066055246,-0.50058585,-0.34649405,0.1835386,0.21556838,0.06989957,0.09953998,-0.6094152,-0.09960626,0.26899275,-0.29590896,-0.27208164,-0.13223961,0.40702954,0.7258729,-0.27368033,-0.09186549,-0.067293376,0.36649817,-0.27822083,-0.62117755,-0.038758796,-0.11827057,0.37166864,0.14757948,-0.2169986,-0.050358735,0.13842653,-0.47896495,0.024186246,0.37603623,-0.34502938,-0.037454773,-0.3054593,0.16927962,0.78802234,-0.085428044,-0.23393068,-0.5192022,-0.5326592,-0.71586263,-0.46088237,0.3220242,0.22766064,0.17057939,-0.2663447,0.061475817,-0.2480591,-0.255252,0.0214863,-0.39194113,0.1969915,0.20283106,0.46699038,-0.30858517,-0.87315446,0.17734988,0.1513662,-0.0630994,-0.53316224,0.6269455,-0.12224881,0.7361259,0.17315629,-0.1583819,0.010455473,-0.43296522,0.280259,-0.45208263,-0.024039317,-0.65666616,0.024549492 +654,0.45625365,-0.32920998,-0.45994094,-0.15675546,-0.26815042,-0.31285688,-0.3545424,0.15429084,0.2806734,-0.13558632,-0.27496317,-0.03213143,0.08588124,0.37356773,-0.13795625,-0.8434055,0.009786393,0.055828463,-0.92149574,0.67147064,-0.4801261,0.025901584,0.04383983,0.4844719,0.06479615,0.3612378,0.1033051,-0.062442858,0.193006,-0.13102098,0.099758625,0.41526207,-0.70469546,0.2296502,-0.20307584,-0.2042772,-0.033513464,-0.50770307,-0.3252327,-0.843898,0.06640833,-1.0854146,0.43829486,0.045347538,-0.23441076,-0.31157002,0.17509973,0.4585558,-0.28343865,-0.007418076,0.16034244,-0.1421319,-0.24423909,-0.3300266,0.29972643,-0.2940615,-0.4698322,-0.10919241,-0.3573117,-0.33426046,-0.22750182,0.1598229,-0.41864136,0.10623243,-0.2739232,0.50044835,-0.42699316,0.07268863,0.6445709,-0.120387346,0.46265724,-0.46289405,-0.041917145,-0.09222752,0.5981035,0.17390819,-0.38495812,0.36487722,0.31455877,0.3565657,0.28512263,-0.38241145,-0.08853217,-0.23392229,0.4078442,0.44605398,-0.10892051,-0.39203835,-0.29277822,-0.046935234,0.20904104,0.41071796,-0.0647936,-0.46683857,-0.049054265,-0.15536231,-0.088486575,0.6998522,0.5413,-0.094375946,-0.36506605,-0.0058706203,0.5857475,0.30023822,-0.2596489,-0.013266723,0.1657081,-0.6238059,-0.16950172,0.22446112,0.049829364,0.595077,-0.1825703,0.020261817,0.7766609,-0.11666956,-0.24664839,-0.035300944,-0.13723917,-0.236151,-0.4275236,-0.11099565,0.29780635,-0.6758635,0.13095894,-0.37471583,0.79548925,0.17255278,-0.7751007,0.29282355,-0.6663928,0.20684332,-0.044612635,0.73244447,0.74302655,0.3242257,0.5963101,0.6465321,-0.14592646,0.23942266,0.039555233,-0.649146,0.0551044,-0.32721615,0.3020293,-0.40971375,-0.049195874,-0.27716032,0.121774174,-0.09594381,0.18564485,-0.48019126,0.012035112,0.36906192,0.6850824,-0.2725697,0.12273999,0.7918994,1.2019194,1.0618314,0.24971712,1.1864687,0.33449212,-0.28422317,0.21901195,-0.08235536,-0.79013604,0.26586244,0.30139026,0.3178906,0.24295098,-0.13844031,-0.014807056,0.5101173,-0.5838747,0.015933646,-0.06557292,0.50772685,0.18083775,-0.22015704,-0.6190359,-0.109045126,-0.017477043,-0.10577645,0.0014593502,0.19878022,0.00836059,0.43265828,0.0025162846,1.0669008,-0.10989819,0.032150052,-0.0096986145,0.50347507,0.28687984,-0.2505822,0.0007738471,0.31516442,0.4334928,0.002815996,-0.71223277,0.22444868,-0.352141,-0.31903815,-0.105018176,-0.39488077,-0.04740277,0.13679767,-0.4342976,-0.16684927,-0.07157722,0.033232022,0.51354265,-2.7663867,-0.294656,-0.35307348,0.27202103,-0.21636444,-0.05724154,0.023022324,-0.54911214,0.16580969,0.2777289,0.6364469,-0.7572057,0.66341305,0.59262013,-0.6107674,-0.11587957,-0.75504786,-0.09457139,-0.0121411085,0.4578296,0.2854581,-0.17664783,-0.18103123,0.18450497,0.71315306,-0.012747002,0.22580345,0.4751679,0.37079403,-0.0133817,0.68012327,-0.027150631,0.50190955,-0.47100022,-0.120178424,0.31383,-0.18275626,0.30740476,-0.1486492,0.09591711,0.64120436,-0.44323015,-0.8965092,-0.6750861,-0.46952537,1.0198766,-0.39697155,-0.66069967,0.24103181,-0.2922514,-0.09988288,-0.0026542768,0.51810044,-0.0969306,0.39065084,-0.8030143,0.11499653,-0.1300201,0.21649034,0.023538055,-0.2085021,-0.43846917,0.69677114,-0.0825638,0.41917548,0.4190201,0.2138303,-0.07345179,-0.4162761,0.19176395,0.5865385,0.3028601,0.0057848,-0.38938627,-0.30876845,0.023411244,-0.20592152,-0.08531294,0.7316933,0.8379989,-0.26483887,0.14642568,0.32186428,-0.018194696,0.033934806,-0.06546433,-0.17950495,-0.07137119,0.02755031,0.56401354,1.0797523,-0.20286995,0.21607202,-0.23233084,0.40846348,0.19609247,-0.5507443,0.63210607,0.71352696,-0.051362563,-0.13269813,0.54050046,0.5637421,-0.52198696,0.56863767,-0.5378867,-0.0997985,0.5336073,-0.0017723888,-0.45265654,0.2387145,-0.4618021,0.23370098,-0.9556735,0.56849784,-0.5721448,-0.6237049,-0.41489932,-0.024481127,-3.2873032,0.3246633,-0.18223189,-0.17423297,-0.45540252,-0.096977115,0.22313829,-0.59834665,-0.6295524,0.3463273,0.23461486,0.5554838,-0.101902604,0.060373437,-0.18132047,-0.109594636,-0.031231755,0.27512613,0.23822959,0.24998373,-0.29423597,-0.40710473,-0.22032963,0.056155827,-0.41419443,0.36094984,-0.7170207,-0.64183545,0.023466168,-0.4744726,-0.33489302,0.5233812,-0.19249444,-0.020497063,-0.3209969,0.023165694,-0.34983036,0.25136772,-0.020299232,0.47984168,0.17475624,0.048968893,-0.036896437,-0.20910172,0.46274158,-0.09962114,0.42332578,-0.011852873,0.06943516,0.2853612,0.49695373,0.753809,-0.15424643,0.9604024,0.65066206,-0.010334303,0.1986862,-0.2599408,-0.42969143,-0.6877671,-0.3312334,0.022905847,-0.47926903,-0.47511372,0.07770375,-0.1265592,-0.73601216,0.6649101,0.042309504,0.29728207,0.03562926,-0.06861819,0.35704336,-0.16047801,-0.107266806,-0.09642867,-0.11963067,-0.7080068,-0.16863574,-0.8478424,-0.52205247,-0.13132629,0.73315364,-0.2359684,0.10687039,-0.0531085,-0.546479,0.019653171,0.39677417,0.028854774,0.19823861,0.43395385,0.1605514,-0.5513985,0.41635475,0.044706266,-0.35586867,-0.55126125,0.25833336,0.7056679,-0.8240301,0.87248117,0.3164387,-0.0032516893,-0.13213782,-0.59116983,-0.44629303,-0.044674307,-0.18293631,0.5533483,0.22669564,-0.74612856,0.41315725,0.27393737,-0.49903333,-0.7225464,0.36124274,-0.18088238,-0.2129473,0.041119855,0.24584298,-0.12799305,-0.11697638,-0.15313427,0.24895982,-0.39245656,0.27125773,0.12015983,0.0043685636,0.04134533,0.023746723,-0.24401967,-0.7606965,-0.122403264,-0.81247145,-0.17577784,0.4806613,-0.21093442,-0.14151378,0.008673325,0.13540845,0.3059502,-0.14770107,0.29179853,-0.0136823105,-0.4778315,0.20750105,0.5826554,0.2939918,-0.43598983,0.6377024,0.2676449,-0.20278762,-0.028571978,0.19366004,0.30566648,-0.11288479,0.57306945,-0.4112176,-0.025194952,0.23205967,0.9755357,0.07523259,0.64862114,0.0743303,0.10573607,0.5082373,-0.037265923,0.3734026,-0.080168396,-0.45582625,0.08769166,-0.18166037,0.15190062,0.47226742,0.29837754,0.31022552,0.17076522,-0.20557247,-0.086218245,0.4638894,0.065517455,-1.6568412,0.5075914,0.42312762,0.8277089,0.5944486,0.1628113,-0.15020289,0.824508,-0.31365818,0.08961829,0.4611734,-0.038465846,-0.4797431,0.8765733,-0.62146425,0.3230711,-0.16156442,-0.09597338,0.2006762,0.24330802,0.32647163,0.5908118,-0.281078,0.11013287,-0.1427229,-0.16620573,-0.017469535,-0.58641666,0.005738775,-0.13741745,-0.47392297,0.6902995,0.565742,0.5021879,-0.2533749,-0.062593974,0.19503231,-0.1513248,0.27226266,-0.18720447,-0.16041298,0.24831472,-0.5866098,-0.1549778,0.5960332,-0.1343065,0.2046454,-0.33488443,-0.29801634,0.12733987,-0.21305169,-0.3104436,-0.14770861,-0.87587804,0.12632765,-0.3173125,-0.57164127,0.68531376,-0.33801976,-0.010885075,0.3235562,0.015895814,-0.17390966,0.3323333,-0.26278964,0.86453646,0.14490543,-0.3259776,-0.30517456,0.010951226,0.24983232,-0.252581,0.1871782,-0.5591174,0.039499696,-0.447814,0.68648314,-0.03458002,-0.48412037,0.1383142,-0.1257066,-0.064897984,0.66753715,-0.14187397,-0.23612069,0.16418695,-0.1478609,-0.37544945,-0.24652904,-0.25215968,0.25176954,0.4168429,0.15585646,0.0026205182,-0.2502741,-0.022389093,0.6479276,0.03614493,0.582362,0.2606099,0.06444127,-0.27749166,-0.0036790792,0.35648704,0.47439972,0.20311725,-0.14580321,-0.2885063,-0.4438602,-0.33401677,0.049967576,-0.051951896,0.40355048,-0.0027950753,-0.27555943,0.94860095,0.065687336,1.2146926,0.14348756,-0.36570248,0.30708978,0.38578537,-0.047101203,-0.035473887,-0.48584297,0.8654762,0.47305346,-0.08051233,-0.12885582,-0.5373969,-0.016891018,0.14610772,-0.36688888,0.095044695,-0.10631627,-0.43093088,-0.27996475,0.20950168,0.29008883,0.105000675,-0.14603204,-0.06076766,-0.02816379,0.09623446,0.35208273,-0.7278072,-0.22494553,0.23771934,0.17421074,-0.018660078,0.119805634,-0.2919936,0.39437535,-0.52431875,0.27771452,-0.61282974,0.074729584,-0.3279096,-0.3835124,0.058241084,-0.20167983,0.41233262,-0.42178825,-0.23175763,-0.16366385,0.40746954,0.28156254,0.05285723,0.7199054,-0.18769632,-0.026290676,0.19831814,0.6907659,1.0679206,-0.676194,0.027852833,0.11252216,-0.3475363,-0.46649384,0.37585178,-0.31494653,-0.043133914,-0.109416746,-0.5790186,-0.7104614,0.023851091,0.056165367,0.054974888,0.07353276,-0.7540838,-0.28290537,0.4010532,-0.4424839,-0.21064179,-0.35941672,0.4162854,0.6176207,-0.22805063,-0.43828043,0.077766344,0.060598623,-0.28953815,-0.292978,-0.031413876,-0.17895158,0.28221005,-0.018288413,-0.43541226,-0.11324362,0.14724131,-0.46182838,0.016394645,0.17043127,-0.32754436,0.16754012,-0.13670503,-0.08791234,1.0917236,-0.38556948,-0.055853974,-0.630225,-0.5566656,-0.832458,-0.4415702,0.31470904,0.13523065,0.013472006,-0.2324592,-0.004229536,0.14300792,-0.08914584,0.015573773,-0.51059395,0.4008503,0.06252822,0.6211718,-0.17764693,-0.9875856,0.19873638,0.3611629,0.021269875,-0.7026537,0.6220787,-0.113406934,0.7945149,0.008030062,0.09357542,-0.12636046,-0.35193917,0.052926812,-0.2723594,-0.22917998,-0.8697637,0.08378938 +655,0.42528963,-0.2925143,-0.45502657,-0.15691173,-0.17669289,0.008261328,-0.07012611,0.61199135,0.26222283,-0.37959164,-0.17751102,-0.051505167,0.1510936,0.38499084,0.07000915,-0.3813804,0.019828204,0.16804972,-0.5662812,0.4757125,-0.36909962,-0.016275402,-0.2178107,0.47974417,0.24570374,0.2765081,-0.033600003,-0.040203195,-0.029842466,0.03533457,-0.028618272,0.2003961,-0.28603834,0.29119587,-0.074977286,-0.15699027,-0.12939516,-0.6598562,-0.4195225,-0.66238755,0.25542194,-0.6981558,0.5354694,-0.036117528,-0.29222456,0.3019266,0.10406916,0.3692542,-0.39399013,-0.23294596,0.1479615,-0.008828716,-0.06978183,-0.10070709,-0.09909414,-0.29222032,-0.48658532,-0.14889948,-0.26253924,-0.14648189,-0.32488173,0.0119625265,-0.27045125,-0.06719782,0.044071674,0.55136865,-0.37655544,-0.025391826,0.25805047,-0.113796845,0.29266277,-0.5105232,-0.07110538,-0.07218999,0.4144672,-0.016129704,-0.30976674,0.24129,0.22859032,0.30258083,-0.130362,-0.048999615,-0.27360693,0.031893842,0.16065468,0.52309614,-0.033567935,-0.42403913,-0.043907236,0.033030655,0.09807155,0.20428655,0.19359027,-0.14475009,-0.19105898,0.056571655,-0.041128363,0.37443772,0.3772323,-0.18849555,-0.10392971,0.42518774,0.631765,0.33218786,-0.12991174,-0.06880458,0.02049971,-0.49768186,-0.181182,-0.11380581,-0.27427056,0.3679046,-0.1627439,0.33887407,0.6384893,-0.013463506,-0.09802009,0.11734568,0.09872301,-0.12706122,-0.288725,-0.29115722,0.17552423,-0.284468,0.20361638,-0.017762708,0.50792414,0.15520976,-0.496373,0.3836449,-0.479106,0.09662204,-0.13133003,0.44716287,0.73999065,0.34782806,0.38914317,0.60440034,-0.33141488,0.025789062,-0.0056140167,-0.38315514,0.18678321,-0.22106478,0.069312416,-0.5746009,-0.06135719,-0.028977057,-0.21527335,0.26144198,0.20753428,-0.5450817,-0.117369816,0.25177047,0.7688742,-0.2300774,-0.14650664,0.83068854,0.99331486,0.87275845,0.056874733,0.86556923,0.1444957,-0.1667467,0.24088041,-0.25304002,-0.6237599,0.31777543,0.41645485,-0.021813767,0.13949019,0.07323601,0.0071675223,0.4030368,-0.41447848,0.040814288,-0.0060847485,0.21033421,0.05563392,-0.2865025,-0.62038696,-0.2178231,-0.21046372,-0.048086256,0.110606715,0.12636693,-0.28044695,0.3674379,-0.06987689,1.71091,0.06708272,0.046776094,0.01847946,0.44493693,0.21785767,-0.29134044,-0.25051007,0.35132694,0.36113262,0.11305127,-0.5677573,0.3186716,-0.21065554,-0.2587132,-0.1250613,-0.46484193,-0.02797073,-0.02473046,-0.39816275,-0.04634744,-0.10164881,-0.33585766,0.43718618,-3.1575668,-0.29898444,-0.09362792,0.4129553,-0.1887063,-0.23338197,-0.15814424,-0.3875044,0.30986658,0.30350116,0.51909167,-0.5623196,0.4242603,0.2976908,-0.771622,-0.109426,-0.5562419,-0.127773,0.017418798,0.22734936,0.12475835,0.10535775,0.072350964,0.27236018,0.45719105,0.045094796,0.13489987,0.30900112,0.35181782,-0.06180067,0.50113887,-0.16657309,0.5635224,-0.24894513,-0.10380371,0.17358446,-0.16337529,0.18826607,-0.17730097,0.1442754,0.5390021,-0.35513544,-0.9362403,-0.62784034,-0.011817889,1.1317478,-0.13852923,-0.2826934,0.3132854,-0.590303,-0.32350835,0.019242125,0.47858062,-0.048161574,-0.15971322,-0.784853,-0.024730686,-0.025136454,-0.0035033992,-0.08060632,-0.18497396,-0.54572237,0.5521404,0.06672051,0.570329,0.18570282,0.29715794,-0.16595483,-0.19165982,0.023061762,0.526948,0.38441414,0.026520012,-0.11696816,-0.073663965,-0.4449151,0.0018826212,0.0840152,0.5745797,0.48818317,-0.14333136,0.172256,0.20022693,-0.02223494,0.049944956,-0.11867221,-0.14737189,-0.09535446,0.00582189,0.42049083,0.62296456,-0.15398563,0.48006353,0.05557681,0.27164912,-0.0872696,-0.5463711,0.5000731,0.7821614,-0.21473907,-0.27994522,0.5099493,0.38793927,-0.20574774,0.3643237,-0.5218845,-0.121646345,0.5609798,-0.1454701,-0.34063354,0.061026316,-0.20525631,0.26643363,-0.81662637,0.17181511,-0.27532193,-0.709889,-0.45226544,-0.0919615,-2.9967782,0.14195296,-0.18802038,-0.15986986,-0.10845052,-0.14433396,0.12680407,-0.73066896,-0.62549067,0.25730973,0.041226238,0.9068511,-0.12807395,-0.038654458,-0.2689183,-0.39543143,-0.2759726,0.031883847,0.033233706,0.49264425,0.026785221,-0.45499092,-0.082762346,-0.016872805,-0.49496004,0.027882969,-0.62462723,-0.39663655,-0.13854526,-0.5419412,-0.14348947,0.65903604,-0.1171461,-0.0021504888,-0.16191517,0.13114172,-0.03568118,0.25675184,-0.0067149443,0.08798029,0.13085748,-0.09109584,0.13465378,-0.20201448,0.31605586,0.102652505,0.2622951,0.285983,-0.02104908,0.3362806,0.61846304,0.6982388,-0.17138825,0.8397891,0.513683,-0.07326305,0.19934566,-0.34439367,-0.35319546,-0.27541193,-0.32680947,0.096086755,-0.41857114,-0.42222875,-0.11931715,-0.3538168,-0.81398106,0.53456384,0.110423796,0.3382096,0.005637237,-0.010284995,0.5676983,-0.21969104,0.013611191,0.039122734,-0.20042272,-0.6919398,-0.08955275,-0.5362643,-0.5086573,0.17903662,0.9379713,-0.38486975,0.19876862,-0.028959185,-0.39596415,0.08809687,0.1585021,-0.08814698,0.16085987,0.3714189,-0.23828577,-0.47364458,0.4315334,-0.26642713,-0.27339798,-0.64483446,0.2929662,0.5485636,-0.46691403,0.5422977,0.22055745,-0.08572454,-0.46338266,-0.4697666,-0.13453911,-0.050805576,-0.09109355,0.3578095,0.12826076,-0.81247914,0.3878037,0.31258768,-0.23229434,-0.66829556,0.62616384,-0.10195328,-0.2724269,-0.10539211,0.25895903,0.24725974,0.0428943,-0.35352388,0.29821792,-0.38732418,0.29832858,0.14188229,-0.024255756,0.28957233,-0.17088906,0.08065697,-0.74734384,-0.19936964,-0.54038227,-0.23539971,0.33163172,0.13385513,0.27876207,0.12396709,0.09104542,0.30940193,-0.41146532,0.071458496,-0.19000481,-0.3503437,0.23738119,0.4443498,0.4711474,-0.3524418,0.561645,0.065869436,-0.0464671,0.13846616,0.04355395,0.35809782,0.03507681,0.53800637,-0.040149238,-0.18887079,0.16428664,0.7734298,0.0941277,0.2825527,0.0056802887,-0.16795287,0.014678801,0.049715903,0.2538921,-0.05776659,-0.53436476,0.23497625,-0.3560509,0.1266228,0.4385817,0.29568794,0.12784173,0.146462,-0.49825484,0.031850304,0.13930243,0.14013383,-1.2475412,0.52047557,0.28953156,0.8768343,0.26188105,0.07605709,-0.11563561,0.7668788,-0.046235334,0.11020022,0.3117033,0.0053668576,-0.5272767,0.48589674,-0.83606803,0.5619896,0.16577768,-0.16067751,0.032350276,-0.10574385,0.426929,0.6298848,-0.22114468,0.092515714,0.094760194,-0.2721838,0.2880487,-0.40665188,-0.1031634,-0.6717097,-0.22847138,0.50445706,0.5674933,0.34256002,-0.09462111,0.02510479,0.103010364,-0.10309916,0.13896033,0.08877879,0.11298557,-0.032514997,-0.77034503,-0.15416753,0.2871173,0.06424001,0.3430037,-0.0757479,-0.065386094,0.2247959,-0.10187989,0.03678802,-0.08804132,-0.66587025,-0.08619372,-0.28287295,-0.38522956,0.48000288,-0.042506363,0.36733928,0.16194816,0.031132152,0.0075262445,0.5111839,-0.11425916,0.9056206,0.066540316,-0.113973364,-0.4209121,0.28396267,0.17906761,-0.1764325,0.007385922,-0.4370923,0.008437152,-0.4393346,0.52557945,0.09848101,-0.38647717,0.05191183,-0.10949987,0.1559529,0.54837316,-0.2027485,-0.1446973,-0.31810284,-0.2207632,-0.36804858,-0.2549506,-0.085794784,0.3025709,0.24035849,0.035197444,-0.19605742,-0.0086705005,-0.07257567,0.40872413,0.018825721,0.42047277,0.36923712,-0.092652865,-0.18779843,-0.27379593,0.23983686,0.47678953,0.0020902434,-0.2785786,-0.34495077,-0.39962548,-0.44846645,0.09424562,-0.04659901,0.40950456,0.1516361,0.0103949355,0.4541061,-0.1525061,1.1303762,-0.025789948,-0.3261803,0.2537741,0.46903774,-0.048235744,-0.22885618,-0.33237892,0.7294024,0.41381913,-0.018180672,-0.05809469,-0.40757447,-0.06244129,0.39258358,-0.13678834,-0.12499584,-0.00031831648,-0.58965766,-0.20902471,0.2396307,0.10148757,0.4611098,-0.14232251,0.14204104,0.24638925,-0.07510577,0.1914854,-0.4051475,-0.21826304,0.29851642,0.28337985,-0.030568574,0.058262076,-0.53029114,0.44451332,-0.46859834,0.043610435,-0.1903729,0.26079297,-0.29001632,-0.39363173,0.1898558,0.17921817,0.33862597,-0.23772907,-0.37550873,-0.2056396,0.5592967,0.22241728,0.045270853,0.45305583,-0.22732525,-0.049836103,0.17848487,0.39082545,0.6240552,-0.18974714,0.04018994,0.3757508,-0.39524445,-0.61025363,0.3527343,-0.26658753,0.44474533,0.02811815,-0.10808047,-0.687349,0.31189135,0.21426117,-0.010633075,-0.09159975,-0.4833303,-0.15185997,0.1535257,-0.26393998,-0.14748372,-0.40557104,0.055658005,0.31769142,-0.2865944,-0.3310575,0.09567026,0.16300075,-0.07762069,-0.3963944,-0.11698913,-0.3309423,0.27347934,-0.1119458,-0.42503524,-0.23979367,-0.12167787,-0.42692044,0.30349603,-0.08015495,-0.27785742,0.16562448,-0.3083895,-0.10655583,0.9312577,-0.18801425,0.17839491,-0.4992702,-0.40598106,-0.67583656,-0.25554475,0.36053348,-0.004452548,-0.06941943,-0.6462761,0.16683313,-0.03543847,-0.03593736,-0.215001,-0.29562768,0.4123997,0.07628976,0.27643472,-0.056384478,-0.84982055,0.22860524,0.030732444,-0.2453263,-0.61369234,0.5072296,-0.07936197,0.79248667,0.045088474,0.12119235,0.15220629,-0.2141161,-0.17448433,-0.30396134,-0.14882417,-0.4171955,0.024271548 +656,0.35025918,-0.025794657,-0.60905975,-0.118137985,-0.29021356,-0.046083212,-0.09947359,0.7099356,0.23697548,-0.463528,-0.11800668,-0.19347422,-0.017660085,0.47491592,-0.20617162,-0.6460915,0.018881131,0.09503922,-0.5474217,0.48313364,-0.4306121,0.25366265,-0.03587164,0.49962685,0.23152259,0.33090273,0.0030964613,-0.114629425,-0.055729866,-0.05625413,0.055923607,0.2519682,-0.44079632,0.049720388,-0.14421526,-0.44286442,-0.038974244,-0.50611204,-0.49858177,-0.7429616,0.40037587,-0.7583683,0.53151333,-0.021016125,-0.26936358,0.17527257,0.07017351,0.4984766,-0.29567906,-0.1390099,0.17476524,-0.018784208,-0.000976928,-0.1395133,-0.24957542,-0.2594012,-0.5853999,0.10320205,-0.3815774,-0.10000847,-0.12189449,0.100085475,-0.3528481,0.07178419,-0.0015630882,0.4536342,-0.47267035,0.16604476,0.39594507,-0.089016914,0.20271058,-0.48716298,-0.085673206,-0.106947936,0.19492897,-0.21312316,-0.19547114,0.34404355,0.14190511,0.50454557,-0.05389149,-0.18044357,-0.3231278,-0.028801981,0.15577644,0.42446044,-0.08360776,-0.34613687,-0.08692767,0.090196736,0.07268155,0.23932165,0.13704656,-0.25285095,-0.12287234,0.09522298,-0.25375536,0.37233478,0.5183045,-0.15097462,-0.3543924,0.29939932,0.6790793,0.28043452,-0.16097,0.11748373,0.13433436,-0.6205221,-0.24368593,-0.09355715,-0.07162208,0.31318015,-0.14669509,0.2638334,0.79188716,-0.25771937,-0.0073088724,-0.009260092,0.07439019,-0.13163179,-0.41342905,-0.22878957,0.21863751,-0.37528038,0.20107001,-0.07718827,0.78537065,0.23793726,-0.77535135,0.33934078,-0.6355318,0.20203659,-0.20352824,0.49338195,0.6497243,0.28668144,0.29627952,0.6588841,-0.40690506,0.23627116,-0.11396948,-0.4418602,0.015140462,-0.08395405,-0.098301634,-0.42768928,-0.078901894,-0.012830808,-0.12393189,0.13785677,0.19382069,-0.53673714,-0.09943379,0.022740789,1.0598671,-0.26264608,-0.046188306,0.8034826,0.8467137,1.0176213,0.0396937,1.1335909,0.115320675,-0.14642748,0.38227844,-0.28926787,-0.94059193,0.26642233,0.25781724,-0.34450918,0.31688005,0.045531336,0.05065489,0.4740696,-0.37266314,0.23266178,-0.2500209,0.32691038,0.21887064,-0.15450983,-0.3041647,-0.16816331,-0.09019842,-0.07630623,0.091711566,0.28654233,-0.07643082,0.31524608,-0.057828825,1.8704605,0.069881774,0.1603933,0.16889769,0.50061303,0.21625787,-0.16427927,-0.21885148,0.14572264,0.32379553,0.09986956,-0.5827206,0.14965868,-0.19768676,-0.50359994,-0.13192289,-0.34385693,-0.08861857,-0.18392318,-0.5530043,-0.062090017,-0.23522896,-0.13025513,0.34130594,-2.8487062,-0.2767697,-0.051629502,0.28280258,-0.2504028,-0.34779307,-0.16525014,-0.51582515,0.4732519,0.33480853,0.41975778,-0.63154566,0.5791881,0.5163837,-0.49271443,0.0014716308,-0.5691574,-0.18814953,0.099399365,0.23390856,0.0038110039,0.10659243,0.05870251,0.21379992,0.3483923,-0.11292747,0.04424652,0.2339399,0.38289878,0.085303865,0.53437287,-0.10115388,0.47387567,-0.3879593,-0.15670992,0.26670063,-0.37837332,0.24291866,-0.043653116,0.09931047,0.4709978,-0.4304218,-0.9349083,-0.5762192,-0.048590314,0.9187107,-0.121423274,-0.18285833,0.34823462,-0.5552403,-0.17961082,-0.1745138,0.4178637,-0.007509933,-0.072500914,-0.80873114,-0.025743825,-0.1818884,0.08126872,0.0103435125,-0.014213289,-0.28936723,0.5308857,-0.10853446,0.47127402,0.47642478,0.113522895,-0.28323612,-0.43101725,0.12222782,0.74727416,0.2877844,0.17810258,-0.28516117,-0.16865434,-0.4479588,-0.15119903,0.06720612,0.43789265,0.7453877,-0.071974,0.18384501,0.2795015,-0.082543306,-0.039330173,-0.21478513,-0.32764664,-0.04570113,-0.10098771,0.46536568,0.7624629,-0.33063668,0.5126589,-0.017037315,0.34758037,-0.1759614,-0.45054314,0.4815017,0.7458907,-0.12350074,-0.32163525,0.5149053,0.38163516,-0.34137955,0.39740276,-0.4471507,-0.11292241,0.5030389,-0.19762713,-0.40088478,0.21468456,-0.20346285,0.14398007,-0.9009739,0.16195272,-0.22675003,-0.34088272,-0.6585997,-0.24264774,-3.031837,0.18074383,-0.30715173,-0.13258407,-0.18582487,-0.09467028,0.118732736,-0.4964038,-0.77583706,0.14377241,0.17068976,0.79623806,-0.14068381,0.3001595,-0.20407145,-0.15808369,-0.3768606,0.028436057,0.27892116,0.38739356,0.05595935,-0.51431304,-0.2745759,-0.089356475,-0.48488387,0.17637397,-0.6143435,-0.43106654,-0.0778343,-0.5385639,-0.33827505,0.7399138,-0.16523786,-0.045894813,-0.065228276,-0.039963085,-0.05450364,0.4359722,0.22205715,0.012285951,0.06933089,0.011124802,0.08198715,-0.29586428,0.22255754,-0.031095915,0.4605407,0.17202304,0.040554922,0.30573362,0.62124753,0.81984544,0.038014427,0.70116514,0.5224456,-0.04598577,0.24654368,-0.32656848,-0.32072407,-0.43978086,-0.23245601,-0.033100303,-0.35686997,-0.3920099,0.0235901,-0.49461898,-0.80414426,0.565082,0.024426349,-0.014085412,0.016801301,-0.0068074744,0.43958288,-0.16976303,-0.089719005,-0.009512258,-0.12275549,-0.5632297,-0.2835035,-0.6312144,-0.50441235,0.11704487,1.1623079,-0.24163426,-0.041638456,-0.0972468,-0.35434428,-0.0032358367,0.10485215,-0.072084285,0.20953134,0.39241955,-0.15359503,-0.49792495,0.41100731,-0.18078,-0.27325955,-0.73126036,0.0424757,0.5841124,-0.6023499,0.5535322,0.119511805,-0.049767334,-0.10593362,-0.47678703,-0.032824438,-0.02875787,-0.1713168,0.41494453,0.13992931,-0.71840006,0.34516576,0.47359148,-0.3055494,-0.73634434,0.48167622,-0.06927612,-0.28613317,-0.055801343,0.20583569,0.16257364,0.012789364,-0.12792236,0.18155083,-0.3086086,0.10451214,0.18672152,-0.11826967,0.42702055,-0.15891081,-0.0785241,-0.6794137,-0.060323995,-0.49720466,-0.21869682,0.2549919,0.082107894,0.1659175,0.013394797,0.14058058,0.25265232,-0.1834505,0.066784956,-0.17907128,-0.26334462,0.24698694,0.38542357,0.5313728,-0.5171064,0.5635472,-0.09156968,0.027313745,0.35013762,0.08815338,0.49701503,-0.039796926,0.3906979,0.13436459,-0.14986466,0.14334495,0.8092252,0.17281656,0.40364093,0.18543836,-0.17231707,0.22526464,0.06741891,0.08606164,0.009996072,-0.549441,0.15915179,-0.026684029,0.22035795,0.5052564,0.2148387,0.30655447,0.03876512,-0.44954398,-0.026433332,0.22266334,-0.03511103,-1.4182326,0.40837157,0.23667549,0.85847276,0.45456907,0.04248091,0.10164185,0.57094735,0.006484133,0.26705176,0.3597915,-0.17095527,-0.56549865,0.538081,-0.6381544,0.68822366,0.041431,-0.025352666,-0.0068092705,0.07198815,0.48801643,0.62897307,-0.14423303,-0.01017938,0.120144114,-0.28521413,0.14712693,-0.45076686,-0.06212034,-0.5277355,-0.1373673,0.57574844,0.6657075,0.25969994,-0.17563495,0.0343627,0.15101002,0.042489126,0.07741846,-0.123354144,0.067410454,0.01499783,-0.6450881,-0.31348875,0.5021438,-0.016019186,0.27414224,-0.15209651,-0.16466323,0.3004933,-0.19044682,-0.046287537,-0.15096465,-0.7929246,0.013436121,-0.24538682,-0.5039218,0.4012102,-0.06793973,0.28796205,0.2137975,0.041598383,-0.5058105,0.61189234,-0.24268775,0.8191404,-0.17165668,-0.1046458,-0.42920798,0.20867552,0.28592083,-0.25850117,-0.055936765,-0.4077681,0.0145962555,-0.39948168,0.3961352,-0.045284107,-0.3892195,-0.027931651,-0.123726696,0.07666488,0.5285828,-0.1472766,-0.03290461,-0.09173442,-0.24673183,-0.2605656,-0.20673747,-0.1278239,0.3062211,0.22680883,-0.12749878,-0.039325323,-0.15832242,0.005399712,0.5742933,-0.06624419,0.39754933,0.39291415,0.14774117,-0.3312203,-0.27826732,0.29550895,0.549267,-0.072721526,-0.17932507,-0.28069118,-0.27990946,-0.18813422,0.41737098,-0.20321348,0.43392783,0.19638552,-0.4063496,0.7229925,0.15086031,1.2092719,0.1989584,-0.2360136,0.25627056,0.2743213,0.24641551,-0.026429506,-0.44675484,0.7954523,0.4067581,-0.24886338,-0.25819042,-0.34836018,0.030479161,0.13649629,-0.2185188,-0.24840464,-0.05178638,-0.52500176,-0.2001814,0.26307952,0.1538166,0.27851948,-0.2000486,0.015718492,0.16796394,0.02361389,0.29185686,-0.4161321,-0.09258743,0.21122427,0.18751803,0.078215316,0.15335388,-0.57142997,0.47018448,-0.31010872,0.09716976,-0.23624277,0.24605195,-0.17943877,-0.29231656,0.17429967,-0.046982523,0.34129998,-0.30375704,-0.34994984,-0.3249858,0.45617262,0.30557293,0.1454459,0.649338,-0.22849755,0.006126078,-0.09038708,0.52270323,0.9010708,-0.21389268,-0.05706546,0.40596068,-0.17479163,-0.5655801,0.25149223,-0.31544086,0.24822807,-0.056886435,-0.1523903,-0.63875586,0.3200149,0.16533737,-0.08683718,0.0022122422,-0.5635695,-0.21832228,0.24407345,-0.2627616,-0.26607984,-0.4815336,-0.00528841,0.6990979,-0.20281038,-0.26885536,0.18933378,0.22448741,-0.0795538,-0.38507873,-0.048944857,-0.3655578,0.15156792,0.051156737,-0.31838128,-0.11591266,0.12976803,-0.4505852,0.12718958,0.05855481,-0.29299963,0.040726803,-0.14372721,-0.18733703,1.037566,-0.19676854,0.31516054,-0.48605162,-0.45226058,-0.9446981,-0.3036233,0.47155535,0.060820658,-0.025466101,-0.7209531,-0.10955323,0.09200151,-0.20469585,0.045660544,-0.38852566,0.45649922,0.09223577,0.27923024,-0.03818306,-0.7620295,0.0197045,0.057788026,-0.39087293,-0.6834913,0.55568177,-0.023995828,0.8003351,0.096847944,0.10285403,0.27891913,-0.27124774,-0.056807652,-0.26958057,-0.2253346,-0.6146301,0.023188595 +657,0.3415321,-0.111807145,-0.46890816,-0.10305547,0.0077611133,0.22316216,-0.14085248,0.6464804,0.23735468,-0.42937574,-0.18330272,-0.21301259,0.10139958,0.59121776,-0.1405121,-0.51410776,0.08936158,0.10581013,-0.40148166,0.3275254,-0.5215387,0.19534595,-0.036533475,0.38630605,0.2177558,0.21631734,0.2931393,-0.15492113,-0.21624543,-0.10988491,-0.26609662,0.38744196,0.006874293,0.11586502,0.13676389,-0.28055686,0.20427795,-0.40372565,-0.18262501,-0.6552177,0.41611543,-0.73797244,0.49961504,0.09545424,-0.17710318,0.30297574,0.27337483,0.3040469,-0.31042764,-0.14128043,0.08760846,-0.1253624,-0.11238722,-0.19637735,-0.27240542,-0.4680724,-0.45791182,-0.05158062,-0.32318047,-0.39661515,-0.32247567,0.06672363,-0.32740667,0.015997658,0.056455165,0.36137173,-0.44829646,-0.1496834,0.24013294,-0.25484243,0.14256348,-0.66299886,-0.23694064,-0.08153934,0.3604772,-0.12818997,-0.065849,0.26762697,0.45606112,0.4285501,-0.062108416,-0.08625562,-0.42309466,-0.23437162,0.19553764,0.47717705,-0.24520056,-0.6947493,0.019919118,0.04627649,0.19006349,0.23664872,0.29090786,-0.07520551,-0.1264656,0.19563496,-0.27127084,0.3143294,0.32636583,-0.4617145,-0.19661383,0.40069017,0.58150774,0.12902854,-0.17295085,-0.092915006,0.0035482373,-0.55881494,-0.083303474,-0.030935824,-0.28211662,0.5043841,-0.16045444,0.38978314,0.73471946,-0.019331262,0.10995021,-0.024372583,0.006667666,-0.32681242,-0.27012944,-0.22401433,0.019064112,-0.34558395,0.27874067,-0.048781503,0.7966814,0.22038515,-0.5486823,0.5190081,-0.54406273,0.068666965,-0.15613598,0.35999775,0.46310273,0.15931223,0.39060917,0.7003033,-0.44101927,-0.05426385,-0.048678815,-0.41201627,-0.018767966,-0.09977945,0.10765833,-0.5754246,0.2302327,0.09504637,0.0043097422,0.29176247,0.36687028,-0.54678047,-0.023837745,0.26656064,0.88757366,-0.35388634,-0.27806553,0.53796214,0.9796451,0.78112036,-0.055233713,0.9378069,0.22009587,-0.31644025,0.1697611,-0.32961747,-0.57865316,0.28524986,0.5413637,-0.4470851,0.19731796,0.12698065,0.081975386,0.4393003,-0.16499196,0.020050624,-0.16743125,0.068484604,0.27054664,-0.19612499,-0.38858405,-0.25406185,-0.095255874,-0.109859385,0.32137015,0.20750405,-0.15173484,0.29914513,-0.20355459,1.8145008,-0.055939943,0.14191371,0.11248494,0.3886982,0.21609443,0.072494954,-0.07420019,0.469484,0.34278706,-0.010792305,-0.61318964,0.1394738,-0.35088885,-0.5128284,-0.07258113,-0.41322318,-0.02180335,0.20392251,-0.28954256,0.017404003,-0.1826752,-0.23679759,0.51544744,-2.9079335,-0.24545793,-0.21239255,0.18223463,-0.31822345,-0.31749827,-0.1419722,-0.36988023,0.41934958,0.32432213,0.57982177,-0.58414525,0.22208796,0.31635067,-0.48791537,-0.2510282,-0.5675853,-0.120615244,-0.11520497,0.1021219,0.026147196,-0.18884952,-0.06681387,0.21015133,0.44826663,-0.06869385,0.11345438,0.27041644,0.39902496,0.06838112,0.5648523,-0.1292742,0.759804,-0.17399786,-0.20911281,0.33016753,-0.36862078,0.36382747,-0.0586556,0.23027097,0.3763716,-0.148948,-0.9546964,-0.61059666,-0.19134541,1.2338408,-0.20024325,-0.3112108,0.29434523,-0.17035453,-0.24414206,0.013525573,0.4736326,-0.09891456,-0.15974261,-0.75770754,0.24377348,-0.0465837,0.054744404,0.055858877,-0.07887143,-0.36364493,0.7541713,0.008227761,0.4620566,0.21162374,0.1176432,-0.2447133,-0.14829388,-0.091657996,0.6848181,0.36006948,-0.010563791,-0.06525115,-0.22880936,-0.48106536,-0.23938398,0.17246222,0.53267264,0.6018471,0.08724102,0.024822852,0.20515633,0.072722934,-0.016048407,-0.20744658,-0.2807018,0.034806725,0.09432023,0.532962,0.30544743,-0.34180424,0.55539083,-0.0966542,0.26795378,-0.3121167,-0.35318586,0.42572275,0.6755913,-0.30502447,-0.34924486,0.5597586,0.3545121,-0.2512014,0.26486295,-0.6527937,-0.15517206,0.69087726,-0.18767048,-0.48179054,0.0704344,-0.3026153,0.12513699,-1.0691894,0.1618825,-0.2624792,-0.33346924,-0.44575146,-0.08843682,-3.9087,0.17728305,-0.41063443,-0.13630974,-0.18518156,0.020054912,0.027883664,-0.88005614,-0.48853144,0.120284945,0.08103479,0.7478628,-0.12044939,0.054025646,-0.24939364,-0.22592379,-0.09107753,-0.055137057,-0.21131247,0.37852523,-0.003201152,-0.40182403,0.20905961,-0.015134007,-0.42740583,0.17114592,-0.49355724,-0.43247676,-0.2107706,-0.56921715,-0.24365945,0.6696128,-0.59070116,0.06197642,-0.28064054,0.171277,-0.18062355,0.32131597,0.15562767,0.07720943,0.059653062,-0.08048514,0.0671737,-0.38107535,0.3215028,0.010286818,0.32647303,0.4212623,0.08368345,0.07704011,0.54478276,0.6584636,0.031697303,0.73796463,0.37139794,-0.09742695,0.19045888,-0.4395719,-0.12497032,-0.37926242,-0.46969238,0.14620917,-0.37426865,-0.63211393,-0.27048346,-0.24671765,-0.6032872,0.46890852,0.19321801,0.23098046,-0.10026091,0.31809223,0.5292702,-0.23212576,0.03659514,0.13123436,-0.0996804,-0.6128474,-0.16497341,-0.6037779,-0.5064307,0.32471082,0.83529896,-0.39848733,-0.0012621483,-0.058059007,-0.3928577,0.030864215,0.038955327,0.100849174,0.2417329,0.454348,-0.34941474,-0.6492782,0.47074842,-0.22435951,-0.19049847,-0.531533,0.052876562,0.5994017,-0.5344808,0.61862427,0.382671,0.06927209,-0.07966144,-0.5129479,-0.2430771,0.10705515,-0.21891427,0.09152179,0.06252836,-0.6529694,0.38322422,0.4453386,-0.29945716,-0.6522003,0.50048095,-0.046700645,-0.28883848,-0.05484673,0.38292888,0.39389476,-0.02180385,-0.29997423,0.15910117,-0.42414618,0.299896,0.21770792,-0.0070419335,0.4030368,-0.18335803,-0.15023686,-0.79300433,-0.039171755,-0.49429795,-0.1996866,0.18298177,0.14036205,0.17235981,0.012411207,0.052936997,0.32453188,-0.57056713,0.17120595,0.008710275,-0.10011726,0.27846006,0.37714884,0.24253823,-0.4785097,0.6420697,-0.028086903,0.03758982,0.047368187,-0.1202304,0.4831103,0.12676644,0.45435953,-0.076387435,-0.23143542,0.40136218,0.8835351,0.16145098,0.3627286,0.09592947,-0.12800139,0.030788606,0.035329793,-0.03934916,0.1490437,-0.5252938,-0.064120375,-0.2370305,0.2573942,0.58094656,0.21732141,0.29184398,0.13754784,-0.39203343,0.061450306,0.21731813,0.044868577,-0.96018,0.5006299,0.18310823,0.8597931,0.2624159,-0.02222485,0.042615224,0.7006529,-0.2314499,0.23476334,0.17817688,-0.24853367,-0.6721706,0.64535785,-0.6895115,0.35332382,-0.11569882,-0.05261151,-0.024668679,-0.0361329,0.29783192,0.678554,-0.2821193,0.032136623,0.052450243,-0.22684467,0.21870065,-0.4108895,-0.12746446,-0.65157837,-0.26437595,0.40750113,0.61945724,0.28996328,-0.20260578,-0.021080425,0.14774714,-0.057762753,0.037477296,-0.065010615,0.31036755,-0.030944943,-0.754498,-0.30466652,0.384948,0.19162588,0.4187592,-0.096650295,-0.18499851,0.4226068,-0.2685776,0.10167566,-0.14065897,-0.33300284,0.07153263,-0.15118645,-0.60744643,0.30915222,-0.101505496,0.34028223,0.17079966,0.017349528,-0.024021482,0.39431038,0.013093705,0.8392188,-0.18395118,-0.114641696,-0.4689809,0.15398133,0.028318152,-0.13357377,-0.07492871,-0.32642198,-0.015798515,-0.5442218,0.517201,-0.023317276,-0.19455405,-0.02221418,-0.26860586,-0.015435129,0.58199066,-0.20974529,-0.055937555,-0.24230857,-0.37578276,-0.14289717,-0.14932095,-0.1820613,0.3193102,0.06207688,0.16688913,-0.25566387,-0.07130949,-0.17940359,0.26087186,-0.07851363,0.29250312,0.4998195,0.050202284,-0.20776576,-0.1935752,0.13273457,0.35377464,0.0053979107,-0.32147008,-0.36091337,-0.44511485,-0.28924787,0.17153941,-0.14040062,0.366887,0.18697743,-0.30173728,0.61859655,-0.1287374,1.2475631,-0.022099743,-0.40861857,-0.03467598,0.6622427,0.01946832,-0.0725423,-0.16568808,0.8335025,0.42699692,0.03993787,-0.10458827,-0.38497594,-0.022387346,0.38658917,-0.18235075,-0.038591545,0.05831835,-0.51333416,-0.38308167,0.30219975,0.20866509,0.35331622,-0.105181634,0.12162373,0.14993855,0.059471354,0.45785746,-0.37816063,-0.49336338,0.31358,0.34831476,-0.04711941,0.084297635,-0.44615686,0.43757153,-0.63232094,0.124030925,-0.39169088,0.21672058,-0.28245583,-0.16449,0.2426337,0.041669484,0.38875476,-0.22999735,-0.34560272,0.016770998,0.45018432,0.24823432,0.15846677,0.44171107,-0.2524635,-0.0885613,0.14559461,0.48317924,0.8577526,-0.22171576,0.16505592,0.45396277,-0.30729672,-0.6273503,0.44083166,-0.36581305,0.099814884,0.09012153,-0.21009529,-0.5170397,0.38346252,0.38665202,0.040771168,-0.057936776,-0.3627065,-0.21562459,0.3199058,-0.32926098,-0.25668472,-0.3963581,0.14383033,0.50967515,-0.3183156,-0.26894343,0.046230238,0.24932408,-0.16285197,-0.47614977,-0.020742932,-0.26648197,0.525399,0.09741646,-0.2760686,-0.25054362,-0.021211922,-0.4176662,0.30985123,-0.03355582,-0.32659313,0.2645253,-0.29612648,-0.020328304,0.863959,-0.10858309,0.008545312,-0.58414453,-0.28174987,-0.7081879,-0.36248112,0.6293264,-0.14670004,-0.080976814,-0.541902,0.09184683,0.06318136,-0.16032803,-0.10773035,-0.24124543,0.35385144,0.011972924,0.46249208,-0.057123583,-0.6367869,0.16277951,-0.01015084,-0.0902031,-0.5707224,0.43358326,-0.13955973,0.9147301,0.030191332,-0.009724597,0.3644912,-0.2309963,0.018651595,-0.30249783,-0.31903765,-0.6696367,-0.0019327551 +658,0.5613328,-0.33304065,-0.37457448,-0.10840612,-0.121400416,0.22230847,0.004454851,0.37935916,0.14116688,-0.38578722,0.021576183,-0.3034181,0.075742766,0.3056067,-0.06805288,-0.4216244,-0.08594632,0.14263351,-0.44383666,0.42734152,-0.42376092,0.2909431,-0.06759446,0.24013951,0.12284652,0.2916227,0.107410885,-0.27102873,-0.20425455,-0.06625078,-0.1773903,-0.18691304,-0.6796156,0.021190481,-0.04674062,-0.2310162,0.19013461,-0.36961287,-0.38767067,-0.72555435,0.2878778,-0.8193508,0.54518515,0.112227626,-0.19630334,0.26167482,-0.13181303,0.49852818,-0.24626672,0.061775573,0.32546306,-0.21254756,-0.04805528,-0.19195046,-0.13473533,-0.5333505,-0.56684446,0.05277235,-0.28498766,-0.18629251,-0.21999447,0.097569294,-0.25422177,0.071656406,-0.14399698,0.25643045,-0.36988953,0.11597051,0.21133284,-0.11277346,0.34587684,-0.5249685,-0.14786755,-0.18356633,0.114922784,-0.14071098,-0.16789088,0.4047858,0.3136529,0.51863104,-0.06272595,-0.17511971,-0.28864744,0.10045452,0.07573263,0.56289524,-0.18276548,-0.38299602,-0.139365,-0.14503548,0.030678766,0.056600016,0.03935069,-0.24933736,-0.06409171,0.2500619,-0.2784141,0.30932975,0.55751204,-0.26896384,-0.32722726,0.40537426,0.5996626,0.03896608,-0.07249565,-0.19613586,0.052429594,-0.45721292,-0.16551615,0.25831097,-0.28561127,0.5178861,-0.03991839,0.21244684,0.65575284,-0.38470644,0.111793555,0.028894408,0.07352327,-0.046583004,-0.1132383,-0.20664628,0.20157926,-0.47766486,0.15629576,-0.38754764,0.7345892,0.2997345,-0.74772406,0.39731994,-0.4926365,0.1555489,-0.03542786,0.5142048,0.64278346,0.39788812,0.281861,0.80601805,-0.67075485,0.19927858,-0.07092896,-0.32540423,0.29877415,-0.30891314,0.05555996,-0.4040594,-0.08043492,0.07877503,-0.32771054,-0.08157412,0.2624481,-0.69177675,0.0373295,0.07614385,0.89075047,-0.2608053,0.037974082,0.6259672,0.9462095,0.9291368,0.09682626,1.170495,0.3070738,-0.41665435,0.38405278,-0.43236467,-0.8309679,0.24940762,0.28175667,-0.19318984,0.25761536,0.25327346,-0.2132173,0.42677712,-0.48865652,0.15500137,-0.20284377,0.18180038,0.022599434,-0.09881168,-0.3668676,-0.29097137,-0.1428154,-0.010146916,0.05548788,0.25137538,-0.5001562,0.18415321,-0.0712413,1.8251975,-0.043970544,0.12122137,-0.06905381,0.4439578,-0.035157397,-0.19696353,0.0037300203,0.33785862,0.4122974,0.31732577,-0.59248346,0.13093652,-0.28468418,-0.36590227,-0.20409055,-0.19198216,-0.074312106,0.007923088,-0.29143924,-0.24669126,0.042311274,-0.230415,0.45088908,-2.5872028,0.023452004,-0.09906075,0.37935543,-0.27656662,-0.40536776,0.00026340995,-0.50264823,0.20503534,0.43486091,0.3725031,-0.7714301,0.31557545,0.19907744,-0.46440774,-0.05225771,-0.72495,-0.015928729,-0.053625222,0.32038075,0.10463762,-0.09265809,-0.0085513955,0.027841551,0.4654307,0.04882035,-0.0052947784,0.14859891,0.40829396,0.13083057,0.5345739,0.067705266,0.4384373,-0.20433487,-0.08755957,0.25409117,-0.45431313,0.29740024,-0.03420029,0.089276604,0.36675262,-0.39916617,-0.8658153,-0.75909567,-0.19207835,1.0960895,-0.111493416,-0.3803995,0.20606531,-0.3279204,-0.330938,-0.21486093,0.43522543,0.03703634,-0.16647805,-0.75550026,-0.01004149,-0.062196992,0.24151143,0.0039364886,0.10926761,-0.432028,0.7053626,-0.117737465,0.35763,0.28383613,0.18333448,-0.077324465,-0.545303,0.04182646,1.0103321,0.35313517,0.06631441,-0.04796564,-0.28294078,-0.43792337,-0.106349714,0.14369257,0.36506295,0.7817564,-0.12527838,-0.014856117,0.28023192,-0.08937001,0.030475514,-0.14944582,-0.3287561,-0.11966489,-0.12333218,0.47753054,0.5893928,-0.106629476,0.4437286,-0.18346773,0.32244918,-0.08029282,-0.45454463,0.473136,0.9344206,-0.14731918,-0.08233309,0.4095698,0.44491988,-0.32684115,0.4017313,-0.6434101,-0.23136483,0.341819,-0.1266095,-0.31001642,0.22080585,-0.29884276,0.14378,-0.69715816,0.5081175,-0.047296625,-0.49212798,-0.65156645,-0.17580424,-3.053972,0.18117668,-0.26560128,-0.13752133,0.15330808,0.03650073,0.27618915,-0.61096305,-0.2558636,0.13481505,0.03147846,0.65300137,0.04890917,0.14437367,-0.21299993,-0.21539466,-0.5253079,0.13047417,0.1327927,0.21740206,0.003781574,-0.40466362,0.15228501,-0.18623354,-0.3250248,0.016721876,-0.49961048,-0.61072224,-0.32021818,-0.37629,-0.3741631,0.7461539,-0.13845076,0.08732615,-0.20799136,-0.027484229,-0.15083966,0.3407621,0.24908951,-0.08000665,-0.07884929,-0.06745541,-0.016621944,-0.44480827,0.26297688,0.16318266,0.31129318,0.43058816,-0.054112885,0.12153297,0.51532024,0.5758952,-0.07514866,0.8462631,0.5719452,-0.23188795,0.2571111,-0.24209158,-0.10606792,-0.40849617,-0.37569687,-0.032557886,-0.44562197,-0.42943892,0.078675665,-0.3575231,-0.7209093,0.39566818,-0.09502256,0.04892627,0.038920127,0.2596032,0.58753556,-0.31319022,-0.010570658,-0.020604474,-0.1115538,-0.5193254,-0.27167317,-0.59539807,-0.50890714,0.320539,1.1938448,-0.13113396,0.0037178013,0.084227204,-0.3137138,0.18935059,0.015570775,-0.11517017,0.11783596,0.31109348,-0.10044207,-0.759267,0.46753338,-0.058264527,-0.10424515,-0.7106856,0.24956182,0.60449916,-0.6402914,0.34254572,0.28179395,0.06971841,0.005102762,-0.33281294,-0.17519383,-0.08657025,-0.27985692,0.19455828,-0.0142550245,-0.7338349,0.25461483,0.28921515,-0.29745716,-0.6234287,0.36192554,-0.048719186,-0.12719396,0.024649331,0.17560162,0.2262888,0.043243162,-0.23410027,0.1851963,-0.63775426,0.22492805,0.38129887,-0.016590679,0.19213997,0.0049924296,-0.1371307,-0.71658355,0.053841062,-0.36562687,-0.2852953,0.3289141,0.2163214,0.24603546,0.3125219,0.4225878,0.36522368,-0.22687311,-0.04355716,0.032448888,-0.35880047,0.46586734,0.3725109,0.5184818,-0.50727826,0.5507431,-0.02068263,-0.20581047,0.010449095,-0.13787672,0.45353463,0.25966904,0.3274323,0.178423,-0.31858188,0.18913914,0.90403885,0.12586458,0.5571228,0.12212443,-0.24942836,0.22640121,0.13869911,0.034314882,0.37230676,-0.49506208,0.073526144,0.0294622,0.23279439,0.29600286,0.06525805,0.20828377,-0.17154428,-0.18679182,0.008747501,0.09581256,-0.09600366,-1.1918167,0.31741685,0.17984033,0.7576436,0.3533037,-0.070511475,0.005297328,0.5325185,-0.14889966,0.08781575,0.17700422,-0.04923157,-0.49433336,0.37163636,-0.73864764,0.43007475,0.004944035,0.041403558,0.04889754,-0.1512278,0.39114732,0.9924345,-0.28568503,-0.014688313,-0.11185692,-0.28845972,0.15309249,-0.4237387,0.28642327,-0.6818943,-0.33053574,0.6475468,0.40134987,0.4159116,0.016686227,0.0006139832,0.025803497,-0.12312341,0.28272775,0.028015928,0.046161033,0.113391995,-0.7588965,-0.1491296,0.43907097,-0.45589966,0.27195916,0.017538087,-0.2564331,0.16552998,-0.18815064,-0.089320675,-0.064262435,-0.6201172,-0.06290166,-0.29679248,-0.40333602,0.51546323,0.07596474,0.3584833,0.2309192,0.07679031,-0.32825485,0.40541512,0.17525618,0.80503416,-0.010913031,-0.1852339,-0.62556237,0.34846374,0.21701157,-0.22925602,0.08876812,-0.06888364,0.09312679,-0.63709354,0.46497303,-0.1091718,-0.3661835,-0.023402695,-0.16362882,0.12456693,0.7659829,-0.2770407,-0.20769487,-0.034712944,-0.11536675,-0.20668927,-0.11197997,-0.0076297075,0.09682894,0.23966564,-0.06591465,0.015686527,-0.21507713,-0.015660355,0.3378268,0.20301776,0.3622031,0.36549944,-0.036639433,-0.33669522,-0.27239925,-0.016024385,0.44931176,0.0365222,-0.17788641,-0.382179,-0.5347322,-0.45972973,0.15173528,-0.056986745,0.32575712,0.09093503,-0.3552362,0.7092199,-0.01668272,1.3600996,0.0009791617,-0.24864408,-0.020791786,0.7449741,0.035759956,0.06419999,-0.54529524,0.9484703,0.55787617,-0.2251954,-0.10662868,-0.36716542,-0.25727186,0.47070175,-0.10168942,-0.008928299,0.06842387,-0.84142053,-0.27812055,0.17689466,0.3545241,0.14222652,-0.06468826,0.14089443,0.28837827,0.0016390851,0.31705305,-0.3834086,-0.26583058,0.2983933,0.21265152,0.027523799,0.20245706,-0.39489904,0.37574616,-0.3496957,-0.03820967,-0.035708785,0.042707052,-0.010854033,-0.2312068,0.27818114,0.20898892,0.26314348,-0.43012166,-0.37549767,-0.23065484,0.605773,0.24501088,0.30950752,0.6138962,-0.15202506,-0.27651933,-0.04929134,0.46440902,1.176667,-0.2456836,0.1733453,0.42865548,-0.42114544,-0.6011801,0.44950488,-0.09381243,0.056939907,-0.06517885,-0.35206413,-0.5283628,0.330472,0.2058709,-0.12344798,0.13979849,-0.68545204,-0.24751356,0.18075983,-0.38379446,-0.2062943,-0.2994921,0.25215364,0.7289415,-0.34371647,-0.16817467,0.08597007,0.38914827,-0.3158581,-0.3920932,-0.26453522,-0.43676424,0.3108676,-0.0022631288,-0.3748658,-0.2283049,0.08575898,-0.4359488,0.11354285,-0.038855094,-0.5313929,0.089167975,-0.25560182,-0.12133597,0.70724624,-0.03611868,0.041409142,-0.629543,-0.32744217,-0.7799372,-0.47526708,0.3881676,0.2576712,-0.06627732,-0.48254058,-0.037439518,0.043173738,0.004113657,-0.1431626,-0.4981038,0.46737447,0.028489266,0.3069179,-0.008852388,-0.7705884,0.054222137,0.20062146,-0.25096318,-0.6362084,0.5269076,-0.112063035,0.78648996,0.12386073,0.12572026,0.33955485,-0.3952226,-0.016974406,-0.28465262,-0.2629289,-0.7537752,0.07553579 +659,0.427815,-0.20564696,-0.5945682,-0.27511376,-0.46115765,0.12231786,-0.4213518,0.13973227,0.31082076,-0.50464225,0.013068516,0.010788097,-0.24196896,0.14223984,-0.28094223,-0.48982328,-0.022980634,0.05289817,-0.74152786,0.48489222,-0.6861505,0.21022132,-0.15548134,0.4293512,0.117033415,0.08511981,-0.022485128,-0.023164362,0.02770732,-0.13678524,0.038418815,0.26445344,-0.9087229,0.2956951,-0.21814407,-0.48521504,-0.006633832,-0.45874405,-0.399934,-0.72533077,0.46355075,-0.93516356,0.6754875,0.018000804,-0.2792285,-0.04481621,0.2606138,0.22847933,-0.26787955,0.118446,0.37036577,-0.20151336,-0.19008031,-0.18388756,-0.3278123,-0.4866339,-0.5912465,-0.023356767,-0.60877514,0.20280375,-0.087663226,0.375521,-0.112697855,0.084488854,-0.36413366,0.31088847,-0.52446604,0.13422142,0.023231186,0.11831433,0.18898128,-0.7336649,-0.28359458,-0.18612991,0.21814741,-0.17512229,-0.33528855,0.23451787,0.2863889,0.5696362,0.014090745,-0.11616014,-0.3781678,-0.07280504,0.18816233,0.33763152,-0.1580934,-0.1941545,-0.34313428,-0.13620967,0.54704756,0.38814786,0.12444774,-0.4616821,0.23305008,0.06273049,-0.2807979,0.75816405,0.53972584,-0.28140786,-0.24793394,0.34453556,0.55032265,0.23192056,-0.32978263,0.23417762,-0.11046291,-0.5622715,-0.27378404,0.4541926,-0.09920588,0.41604525,-0.12787154,0.122275315,0.66354424,-0.1327473,-0.12918407,0.12348436,-0.21982345,0.013922004,-0.28427613,-0.25026914,0.16994046,-0.5114783,0.17627645,-0.29615438,0.41589943,-0.07002352,-0.925359,0.24386023,-0.6994574,0.14088045,-0.020937327,0.7008454,0.8859323,0.6702381,0.20092426,0.7604219,-0.4114609,0.08751064,-0.14343014,-0.16846861,0.161407,-0.23951426,0.052358784,-0.43223512,-0.04727572,-0.35720384,0.0037175028,-0.08878532,0.6006627,-0.33716,-0.15669955,0.060795166,0.54155153,-0.36323783,-0.10766934,0.9132899,1.1273769,1.1647235,0.2394965,1.5019481,0.1717376,-0.05648497,-0.17019844,-0.14926219,-0.64351314,0.27876955,0.20097473,-0.112656005,0.34666398,0.14699572,0.21181811,0.47168902,-0.40841082,-0.115788616,-0.044920966,0.3180153,0.034347944,-0.13292228,-0.3533758,-0.17493285,0.24409896,0.15008587,-0.020262696,0.20888954,-0.24924158,0.3594875,0.34213513,0.8386968,-0.075428165,0.017470768,0.13710856,0.40759963,0.11952578,-0.14980991,0.14876698,0.19018452,0.39254028,-0.067843795,-0.6617509,0.018070795,-0.19213006,-0.34116715,-0.193834,-0.3299382,-0.31743115,-0.3992023,-0.32945377,-0.29833233,-0.000824534,-0.3357633,0.48038074,-2.3890016,-0.27030736,-0.20624174,0.2673531,-0.07159209,-0.3103434,-0.14257179,-0.3328436,0.4832412,0.24564272,0.40021294,-0.5722567,0.80300975,0.54361343,-0.6546074,-0.039042167,-0.8064378,-0.24420299,0.021659764,0.38179207,0.026498506,-0.108402744,-0.1943794,0.028060313,0.5926394,-0.058543563,0.07444439,0.3161761,0.7304836,-0.097415015,0.7948997,0.103791274,0.53306955,-0.4964651,-0.22628821,0.45078468,-0.54323936,0.43245834,0.11219402,0.10164464,0.5818973,-0.6714665,-0.9658712,-0.7313885,-0.493158,1.2203033,-0.16316198,-0.61415094,0.13662004,-0.45281488,-0.45284763,0.059113197,0.52881026,-0.23122314,0.012765845,-0.8434766,-0.24871093,-0.24264638,0.47966972,-0.117868975,0.09883853,-0.48356578,0.72579616,-0.053836666,0.51455796,0.4471811,0.07665249,-0.43115562,-0.3132089,0.09370139,0.8480085,0.50840634,0.082801454,-0.21159887,-0.31567365,-0.030289484,0.097021475,0.13275076,0.7539016,0.47412813,-0.09681474,0.16944557,0.44272313,-0.1243656,-0.035094704,-0.28465232,-0.2696104,-0.34031427,0.10333891,0.59382033,0.8353371,-0.05160653,0.3487248,-0.21808738,0.22803156,-0.2904781,-0.46007127,0.37643558,0.7359728,-0.024297921,-0.27824503,0.7093137,0.64312583,-0.30642375,0.5628865,-0.6625973,-0.38821074,0.3818043,-0.08135957,-0.45220667,0.0014613753,-0.5096859,-0.039406635,-0.8959503,0.16676322,-0.4738468,-0.5491881,-0.7127475,-0.26967436,-2.8064122,0.11242199,-0.17782725,-0.0703206,-0.23664334,-0.3181734,0.43199906,-0.41392362,-0.92128056,0.079315424,0.071411505,0.512635,-0.12030891,0.07306025,-0.33080384,-0.22003192,-0.30810192,0.27377066,0.34134957,0.26414093,-0.20277837,-0.4945967,-0.006503175,-0.3054303,-0.40254053,-0.21895812,-0.55987084,-0.4624683,0.065088555,-0.47455958,-0.20702913,0.6075938,-0.4520749,-0.22181763,-0.3539433,0.07064823,-0.07273484,0.427001,0.0707471,0.31093234,0.12062685,-0.014560044,-0.28120288,-0.18549515,0.23354258,0.12670885,0.083954506,0.39600325,-0.28149086,0.16218592,0.3401368,0.7884749,-0.124861166,0.9328038,0.24778165,-0.13417968,0.46232033,-0.1332774,-0.5334582,-0.77550685,-0.11876147,0.02304883,-0.45477343,-0.53486216,-0.017127734,-0.31551722,-0.8579514,0.5613908,0.05774866,0.04900032,-0.16700625,0.20351829,0.24777116,-0.10500564,0.110721976,-0.1469128,-0.22633259,-0.40784517,-0.67432076,-0.7786868,-0.52967685,-0.1895753,1.502317,-0.025112469,-0.007942473,0.44366506,-0.31525105,0.1490083,0.40681583,0.060737856,0.22448595,0.6267409,0.0069379164,-0.70030147,0.28761134,-0.13833801,-0.16542564,-0.45210993,0.08163628,1.0788885,-0.72969306,0.5759574,0.49647757,0.14219114,-0.070642576,-0.78375286,-0.19721413,-0.024672247,-0.306394,0.7264353,0.41245672,-0.75905406,0.5504016,0.28268725,-0.122850455,-0.79872715,0.7125247,0.012213373,0.022889834,0.08867902,0.48650756,0.21134414,0.009255494,-0.010274424,0.48782852,-0.26018447,0.46716467,0.2249665,-0.15266767,0.24307479,-0.09822475,-0.20106465,-0.66960394,-0.05063867,-0.2954612,-0.3378599,0.18683802,-0.20285313,0.1841108,0.22334972,0.20887396,0.4485423,-0.28390834,0.14138526,-0.23091467,-0.31231648,0.06231176,0.57896686,0.570307,-0.50313497,0.70458233,0.14525358,-0.1398967,0.0017576722,0.1687745,0.34592643,-0.019402932,0.41997942,-0.12630986,-0.040821772,0.17338838,0.92155737,0.21072194,0.29086587,0.08297034,-0.040824927,0.37138516,0.2078396,0.31953225,-0.25912297,-0.5277685,0.01878048,-0.10601865,0.21770154,0.38790148,0.026614923,0.32114357,-0.24236701,0.046852175,-0.02675377,0.2742543,-0.21979779,-1.549549,0.30299684,0.21501495,0.87070453,0.56639504,0.12685448,0.24416527,0.58119065,-0.47182754,-0.17053391,0.4880567,0.28968516,-0.26456854,0.49318403,-0.51194984,0.51062137,-0.13212873,0.0602118,0.17225884,0.18288812,0.5685362,0.93668747,-0.13711858,0.07767921,0.14444381,-0.230716,0.17128716,-0.3187303,0.03322065,-0.28684065,-0.29902336,0.9063889,0.6657501,0.45648062,-0.35463592,-0.08036905,0.09005802,-0.27006692,0.0640843,-0.104962505,-0.23684993,-0.26349944,-0.5753086,0.03958519,0.6071831,-0.02168886,0.006375244,0.17721096,-0.41596082,0.37478182,0.08589459,0.081646286,-0.04262569,-0.6775292,-0.2524044,-0.4246306,-0.34168404,0.12913676,-0.19812639,0.014649065,0.23229448,0.002986039,-0.18023705,0.26879048,-0.010127803,0.70341784,0.18570517,0.07470176,-0.13197762,0.06021232,0.23334914,-0.24713168,-0.062250532,-0.39900047,0.24177703,-0.56299525,0.4327232,-0.22903235,-0.31360728,0.05854257,-0.07424101,0.009370301,0.46477413,-0.23848952,-0.22957104,0.2257302,-0.009662573,-0.29635656,-0.2690027,-0.38217175,0.18220186,0.12458653,0.20601834,-0.06384586,-0.05035787,-0.1538261,0.5319804,0.19484565,0.31240925,0.43478855,0.08966525,-0.48649603,0.025025455,-0.15445049,0.68400925,-0.079849094,-0.08627052,-0.12825772,-0.2613765,-0.21942414,0.68330914,-0.11763012,0.13362494,-0.034857694,-0.4130929,0.73779106,0.12945716,1.2133468,0.01867806,-0.51825714,0.054118812,0.6320805,-0.36134312,-0.015059014,-0.34164315,0.8299757,0.52493984,-0.21247347,-0.08030547,-0.5451558,-0.11312454,0.008458807,-0.3481113,-0.21150443,-0.18090732,-0.7105148,-0.03076409,0.15698609,0.24912444,-0.010821447,-0.045838144,0.18162078,0.11763482,0.08277969,0.3467868,-0.55332005,-0.17524607,0.32299283,0.33763373,-0.09187888,-0.036405355,-0.31485966,0.33214852,-0.67799276,0.035605874,-0.58635294,0.085054524,-0.22935821,-0.20622729,0.19736934,-0.04030147,0.3013802,-0.32114485,-0.2438689,-0.21501762,0.57186687,0.17736365,0.4936805,0.740343,-0.18493065,-0.0054105553,-0.033662654,0.47618392,1.0230858,-0.3139895,-0.16158618,0.1663711,-0.4189294,-0.50464034,0.19395913,-0.8592497,0.089298695,0.29392368,-0.3616095,-0.17451476,0.2929648,0.04307795,0.37369582,-0.06730479,-0.777146,-0.08450977,0.4902546,-0.065772876,-0.26765043,-0.12608135,0.12561591,0.776652,-0.18680866,-0.23880126,-0.029632144,0.4229606,-0.3732605,-0.5905022,0.16529582,-0.47879165,0.45535183,-0.03067724,-0.18461367,-0.028709885,0.098267876,-0.52359855,0.096646436,0.39710286,-0.3238764,0.0033901287,-0.41987514,-0.07904548,0.95230114,-0.19214003,0.19165558,-0.52697814,-0.66655266,-0.7691535,0.039897844,-0.13564529,0.40271738,-0.13531399,-0.5283377,-0.06089193,-0.18780485,-0.20218319,0.10962193,-0.56987613,0.5807549,0.15425958,0.59995246,-0.2547484,-0.8545525,0.13304007,0.14417332,-0.08857513,-0.33553174,0.676625,0.06068371,0.6380281,0.09307451,0.09516914,-0.15123788,-0.69276595,0.46876633,-0.24867429,0.019367503,-0.92861724,0.053522266 +660,0.5655846,-0.26117,-0.3851496,-0.13652276,-0.2680196,0.30786783,-0.24777184,0.3331769,0.05125095,-0.29230613,-0.06751455,-0.090305775,0.084082715,0.52176386,-0.077541605,-0.5969988,0.05855774,0.06537324,-0.75832975,0.5236344,-0.5645495,0.31261024,0.07673703,0.27006108,0.20064396,0.28377616,0.17466895,-0.07297436,-0.093670204,0.06446085,-0.14329636,0.3199866,-0.5795028,0.11115422,-0.050319247,-0.19707674,0.01393199,-0.40609682,-0.31710318,-0.6026101,0.2794462,-0.75259477,0.47688305,-0.082325414,-0.31374553,0.39701676,-0.055115648,0.17768718,-0.41433823,0.09279113,0.08457507,-0.1068065,-0.04731804,-0.24141073,-0.122279525,-0.31928176,-0.5527141,0.101444855,-0.6726908,-0.32445988,-0.23423672,0.096029975,-0.31709003,0.041403882,0.0019049533,0.22643152,-0.51576865,0.07721695,0.072820045,-0.08174992,-0.09674147,-0.5019203,0.08728026,-0.07618087,0.18085386,-0.12784398,-0.2411015,0.2961695,0.2576673,0.5749463,-0.009213369,-0.18636595,-0.06439988,-0.012903251,0.13569054,0.58547693,-0.17236128,-0.29947016,-0.25692642,0.051277068,0.24500868,0.0054186136,0.016347416,-0.38808465,-0.16653076,-0.01261545,-0.15941675,0.17536767,0.4489082,-0.55399346,-0.34576744,0.4855901,0.47420642,0.19577023,-0.06213809,0.07125532,0.002316678,-0.53720015,-0.07786461,0.07610504,-0.11296777,0.40783742,-0.11257311,0.25106263,0.673778,-0.23988484,0.17658338,-0.051638935,-0.09956929,0.011018608,-0.13881287,-0.0633181,0.011368882,-0.43117815,-0.03551667,-0.15299052,0.76223487,0.24749364,-0.65600836,0.4908696,-0.46786028,0.13670541,-0.09931223,0.5695499,0.7993274,0.38241613,0.020303365,0.6033237,-0.38916636,0.13373592,-0.21606016,-0.33490926,0.2410115,-0.19629872,-0.22106892,-0.47640398,0.07173722,-0.008258028,-0.14472073,-0.0059866905,0.64575565,-0.5320867,-0.07946443,0.031494647,0.69325435,-0.3859548,-0.1524348,0.5898444,0.8586731,0.7854997,0.0056025535,1.2477039,0.39879206,-0.062148705,0.2097818,-0.366757,-0.66283154,0.21339864,0.52941835,0.11167002,0.40092394,0.12659417,-0.16980323,0.37524232,-0.3025748,-0.033621997,-0.18720603,0.3666184,0.0052104704,0.0024847835,-0.34442198,-0.21577522,0.0074933786,0.077846594,-0.035876516,0.3048339,-0.42953822,0.2729972,0.047840223,1.9311594,-0.11480113,0.13433905,0.033975974,0.39387137,0.27027035,-0.20469616,-0.22579569,0.33817112,0.43544367,-0.025399169,-0.5268161,0.10233154,-0.21588813,-0.53029054,-0.13990954,-0.43311483,-0.061615758,-0.10176443,-0.47400412,-0.086519934,0.25874704,-0.20411655,0.46501857,-2.6335413,-0.2335862,-0.11311957,0.42848903,-0.33963424,-0.44372213,-0.30385655,-0.33270016,0.21124971,0.30938047,0.4772411,-0.620045,0.42212957,0.3223117,-0.3137316,-0.15803106,-0.538293,-0.10016222,0.016142651,0.5055918,-0.11231553,-0.10677664,0.019605167,0.1792664,0.55385095,-0.16872302,0.0023384877,0.22129077,0.3049295,0.25594997,0.3243283,0.025029331,0.4992659,-0.20718487,-0.21371067,0.48378092,-0.042667415,0.2619927,-0.059443273,0.218537,0.23747225,-0.4614377,-0.8734366,-0.57752585,-0.11495753,1.1823782,-0.4056614,-0.2950699,0.19634043,-0.020700686,-0.15602371,-0.02495154,0.25887665,-0.15565653,-0.16699547,-0.72861576,0.16975203,0.06458862,0.19567996,-0.055520963,0.121250495,-0.21492118,0.4878854,-0.10317602,0.42293775,0.21762715,0.2937847,0.07959154,-0.40048072,0.13272265,1.0260268,0.34951705,0.12312277,-0.1796042,-0.23991528,-0.1458157,-0.1258243,-0.009062078,0.3107902,0.7994646,0.17948867,0.14095479,0.1615203,-0.12810329,-0.048612587,-0.19877079,-0.2650012,0.080120735,0.041023552,0.58059925,0.4994604,-0.16992354,0.4866684,-0.05826175,0.19559622,-0.047077,-0.554886,0.41549182,0.98895776,-0.18973958,-0.11114323,0.43219888,0.38284403,-0.3609101,0.38843566,-0.67388463,-0.30195683,0.48780027,-0.2283909,-0.27112672,0.3582393,-0.24428795,0.16730824,-0.7721833,0.5042798,-0.013906255,-0.28900418,-0.43979973,-0.123031795,-3.5957716,0.104976274,-0.17301969,-0.16388568,0.05619956,-0.041028585,0.31309807,-0.5750193,-0.36118817,0.010917619,-0.0062252516,0.6049819,-0.057442877,0.10343289,-0.2913342,-0.2699988,-0.2951002,0.084388,0.114716575,0.3508301,-0.03818241,-0.37044016,-0.021518724,-0.2445435,-0.26480255,0.14571728,-0.5336753,-0.5539449,-0.13761748,-0.44030756,-0.067707054,0.69166696,-0.2765957,-0.07136312,-0.20223266,0.045027953,-0.13213563,0.2926657,0.290725,0.045015555,0.13695446,-0.006917091,-0.08930753,-0.46108586,0.28224087,0.10363588,0.20798513,0.5508075,-0.044181824,0.051105008,0.6536597,0.384929,-0.16637728,0.7018362,0.42978942,-0.1684207,0.24397805,-0.24745074,-0.24502523,-0.3951007,-0.40512985,-0.1300206,-0.3764128,-0.35429752,-0.12559605,-0.2602076,-0.73327875,0.49854225,-0.16988015,0.11951816,-0.082157336,0.27423218,0.51884454,-0.13270977,-0.08346843,-0.12150252,-0.13371243,-0.6020924,-0.37913406,-0.6903654,-0.5594046,0.23557003,1.0214765,-0.24599731,-0.10516976,-0.1546298,-0.11695175,-0.120682895,-0.18042421,0.064544916,0.3277579,0.318896,-0.14220956,-0.8049072,0.4636497,-0.19478965,-0.15334731,-0.56026757,0.11437906,0.50685203,-0.67673516,0.37544858,0.28661326,0.21433447,0.19057523,-0.55285096,-0.2304225,0.1203276,-0.19970356,0.31960392,0.07615118,-0.7849579,0.53671753,0.24260353,-0.34282514,-0.7405207,0.48234475,0.13246109,-0.22441679,-0.009698726,0.30039072,0.106953904,-0.07494584,-0.16341795,0.20730385,-0.51181436,0.44843164,0.2879659,-0.005393766,0.38008752,-0.21278122,-0.27539593,-0.5427656,-0.12395261,-0.36462355,-0.32426333,0.12950914,0.07240539,0.26803178,0.0637168,-0.019047126,0.5208993,-0.4403172,0.028767046,0.09009823,-0.24068339,0.388346,0.42224577,0.52572036,-0.2843158,0.53815556,0.040240616,-0.05055987,0.14041619,0.031348746,0.4174662,0.087585464,0.1281799,-0.018412054,-0.14234106,0.27733925,0.92824894,0.21808648,0.36947095,0.05920525,-0.4333167,0.28625426,0.18419568,0.046547815,0.11989668,-0.32596424,-0.02987137,0.07481563,0.2275212,0.493645,0.24933529,0.29294825,-0.14018872,-0.27093774,0.14863272,0.022026025,0.09073351,-1.0519246,0.11077024,0.16492262,0.56063527,0.38136017,-0.05494669,0.02538985,0.507752,-0.24146733,0.072472304,0.29993114,-0.1849524,-0.6784137,0.51651424,-0.59979403,0.5058508,-0.033375934,0.003442768,0.11585231,0.090129405,0.37496728,0.85769343,-0.07385911,0.049772974,0.06089077,-0.29000768,0.06674355,-0.41117555,-0.04374016,-0.47295937,-0.22418097,0.58541924,0.42706844,0.17273742,-0.10171424,-0.032709684,-0.019328594,-0.20497315,0.08376408,-0.004403429,0.13408406,-0.049952284,-0.6043,-0.47122008,0.5204731,-0.022767462,0.108351015,-0.011440977,-0.0851038,0.3099503,-0.2820608,-0.1963711,-0.074869566,-0.55990326,-0.0702572,-0.4875549,-0.54962015,0.30950752,-0.13502195,0.23237401,0.16998634,-0.05695445,-0.41843897,0.4697777,0.11320883,0.8836067,-0.043770466,-0.28612423,-0.40040863,0.20147987,0.26129276,-0.20597541,-0.04940813,-0.2857305,0.044338338,-0.7425026,0.44159403,-0.19169366,-0.3130828,0.16274121,-0.13935104,0.013670639,0.45675054,-0.047251545,-0.21979737,-0.13572726,-0.038973905,-0.40141657,-0.108957306,-0.19114581,0.16983691,0.17506626,-0.17083545,-0.039240066,-0.11574782,0.00020590052,0.4824884,0.11117848,0.35455042,0.38898402,0.15091886,-0.2362338,-0.12233861,0.3206424,0.44396883,0.028627157,0.028216321,-0.38057062,-0.44519445,-0.34098914,0.1647829,-0.24785581,0.32486227,0.19452018,-0.46606773,0.7530458,0.0023663435,1.0652372,0.07968521,-0.2674345,0.20103164,0.54255223,0.15103501,0.03933935,-0.34507582,0.87269926,0.6256355,0.11202844,-0.18390912,-0.3871003,-0.28901353,0.24899876,-0.30691713,-0.13402064,-0.08358979,-0.68584573,-0.31861883,0.20308231,0.18603677,0.20895812,-0.041747063,0.061719507,0.18299718,0.08658582,0.2558832,-0.5569774,-0.16427243,0.2601595,0.31434482,-0.079207994,0.3035619,-0.4576162,0.46623158,-0.5733571,0.01764571,-0.27492803,0.13401115,0.06918843,-0.2907493,0.15676275,0.16819228,0.4116001,-0.33079875,-0.34276637,-0.2686876,0.50761366,0.08422712,0.16709426,0.6414654,-0.25144854,-0.013891585,-0.051173963,0.40079308,1.0000412,-0.14637113,0.118834816,0.35545802,-0.3325995,-0.6751085,0.27318266,-0.17273712,0.26567453,-0.11075303,-0.24450228,-0.52286255,0.30042976,0.10912057,-0.0065353625,-0.019362472,-0.51603526,-0.12551498,0.33467314,-0.16870867,-0.25889412,-0.3950847,0.15981199,0.756058,-0.45871288,-0.16243638,0.15138794,0.3619718,-0.29985458,-0.56195444,-0.109880574,-0.42281467,0.14741425,0.22889555,-0.15942192,-0.028176457,0.06901123,-0.36181822,0.07762897,0.2895221,-0.38113123,-0.0068732314,-0.1210484,0.11976341,1.0047369,-0.08182135,-0.09259092,-0.7970102,-0.53746015,-0.9244461,-0.4289444,0.5454701,0.23353584,0.07546355,-0.5319104,0.043479316,-0.08518088,-0.063403,-0.013834365,-0.508378,0.45195884,0.033324786,0.20880514,-0.030287646,-0.71823287,0.08244003,0.07466333,-0.31375626,-0.5943434,0.5199672,-0.17312726,0.8329414,0.08929476,-0.037600987,0.26177603,-0.5247051,-0.020283602,-0.47308993,-0.096686095,-0.7668102,0.23677675 +661,0.4522025,-0.3225005,-0.48411602,-0.03953133,-0.3534324,-0.07896836,-0.211694,0.579534,0.2984357,-0.24837674,-0.20631203,0.040505987,-0.15504734,0.107352726,-0.118077815,-0.38469014,-0.0822137,0.27135095,-0.6037665,0.63038105,-0.32656148,0.20244156,-0.10620041,0.35297638,0.41858917,0.23124883,-0.25285524,0.20786284,-0.018725498,-0.30565247,0.01560235,0.16508974,-0.5571799,0.18917295,-0.27441874,-0.3846678,-0.2640309,-0.5773322,-0.47063637,-0.8687592,0.46646705,-0.8108011,0.58679855,0.015383222,-0.34129474,0.20073898,0.10397436,0.43087727,-0.12272789,-0.12902968,0.32419902,-0.10884929,-0.19405968,-0.19298604,0.023696383,-0.16431181,-0.53339696,-0.11220609,-0.282866,-0.032327328,-0.3338017,0.20087552,-0.2817308,0.051539056,-0.11613309,0.5100765,-0.41410998,0.27530304,0.18767749,0.03544852,0.21645178,-0.7711506,-0.15140447,-0.12455101,0.3634789,-0.0321241,-0.3902862,0.27395743,0.28503218,0.36177167,-0.14207225,-0.14190896,-0.122113325,0.14863743,0.057577837,0.4361741,-0.30097088,-0.2323188,-0.08725593,0.011676124,0.40376708,0.17262968,0.15842845,-0.16011152,-0.13911511,0.010766958,-0.17072341,0.44151777,0.50096995,-0.20407328,-0.056522667,0.34091827,0.5363818,0.40064922,-0.15329458,-0.030603766,0.014032823,-0.54059505,-0.18844786,-0.0070390278,-0.25157052,0.37042183,-0.11956112,0.18037298,0.51924837,0.002896126,-0.24290507,0.30117318,0.27171543,0.008813143,-0.25107625,-0.60333264,0.26861855,-0.60227126,0.21432681,-0.14275554,0.56505173,0.11392788,-0.7600253,0.33930573,-0.59430367,0.124977835,-0.1009435,0.33987752,0.8943793,0.56195545,0.32630095,0.7583422,-0.30989847,0.043012314,-0.06973253,-0.05702121,0.1464102,-0.25224152,0.0037115514,-0.5272476,-0.09303325,-0.32393909,-0.22438218,0.19243959,0.42497966,-0.53974974,-0.1738035,0.06487463,0.83121544,-0.20161971,0.09182117,0.8876731,1.0492421,1.0362542,0.10042113,1.001942,0.020347267,-0.25252983,0.060878847,-0.14970131,-0.6410231,0.3324737,0.34140554,-0.17470108,0.12124415,0.123639226,-0.018202368,0.4019942,-0.4697455,-0.018773092,-0.18306334,0.18293646,0.19775088,-0.16856588,-0.27761745,-0.35206518,-0.11638194,0.20211805,-0.06960089,0.26689067,-0.26784176,0.3382309,0.16977988,1.5202495,-0.079765,-0.061677456,0.084769234,0.38709736,0.29487744,-0.34946376,-0.1533368,0.21311322,0.43959507,0.07266478,-0.5499507,0.14249717,-0.17800139,-0.17753664,-0.14520323,-0.17820962,-0.19324872,-0.012129791,-0.4259055,-0.30222204,-0.16581628,-0.20522778,0.42742178,-2.6914213,-0.25120932,-0.009863517,0.45789385,-0.06336417,-0.4005701,-0.057192173,-0.4645569,0.50900036,0.22663502,0.46924216,-0.6430748,0.46333104,0.45270994,-0.8190948,-0.014550449,-0.52183837,-0.25581393,0.14331138,0.16788734,0.050466068,-0.026036408,0.006356039,0.115325436,0.4188837,0.039040525,0.17047942,0.51851094,0.37624064,-0.18445231,0.48566103,-0.08779048,0.54469997,-0.25492224,-0.3029608,0.33083695,-0.35616717,0.17568953,-0.17572705,0.06653459,0.6196526,-0.5484597,-0.78673786,-0.739456,0.096792236,1.2682978,-0.09795565,-0.4161189,0.23088802,-0.7745672,-0.41562504,-0.07558741,0.528772,-0.05812806,-0.25369087,-0.8755881,-0.11032367,-0.036098067,0.18820919,0.018569613,-0.3065459,-0.5007287,0.7864168,-0.0044871527,0.58878344,0.37173352,0.059782457,-0.29266003,-0.28328013,0.020563092,0.78347653,0.5665904,0.09306584,-0.2644177,-0.027107498,-0.47718024,-0.020741556,0.060934056,0.59108275,0.38034704,-0.1419753,0.15517153,0.25421283,-0.082504585,0.040974915,-0.2885874,-0.32315448,-0.16182272,0.06756146,0.5419639,0.7023944,-0.044823747,0.35606536,0.09368568,0.19266447,0.030241536,-0.5527215,0.4798462,1.1069268,-0.14910187,-0.41935137,0.47293326,0.3709764,-0.14720918,0.39531666,-0.3580783,-0.16330314,0.33019462,-0.07240959,-0.41270855,0.24844837,-0.34916994,0.16427647,-0.54648507,0.33898386,-0.5598914,-0.69440156,-0.60284805,-0.03179097,-2.2831633,0.30844346,-0.2706519,-0.14572932,-0.2830213,-0.21821825,0.23617855,-0.6024439,-0.7130418,0.15450695,0.1086448,0.86353046,-0.1723034,-0.18743153,-0.05225834,-0.518104,-0.3693664,0.10448204,0.28063613,0.374108,-0.0049719713,-0.30305895,-0.176565,0.01728183,-0.35072595,-0.107707635,-0.6861498,-0.39650536,0.01952525,-0.5283419,-0.3442518,0.60185903,-0.21405326,0.082908,-0.1474723,-0.07840687,0.015345693,0.2536568,0.029075444,0.24151538,0.010028579,-0.20054701,0.065491445,-0.14451127,0.20500152,-0.022765378,0.16706535,0.044238295,-0.060746882,0.4029964,0.50405246,0.82565266,-0.20085771,1.0736909,0.5266953,-0.21272793,0.18607844,-0.30064994,-0.439199,-0.47716603,-0.06029958,0.1677609,-0.37502432,-0.24893704,0.08384893,-0.48862463,-0.857696,0.5237303,-0.020342799,-0.004733469,0.1515105,0.18540847,0.55174977,-0.08841138,-0.010623345,-0.11362792,-0.18760882,-0.49745736,-0.07012864,-0.6351227,-0.39672938,-0.09790389,1.1813815,-0.3594621,0.2967603,0.22030608,-0.30150196,0.19870266,0.18459556,-0.11570297,0.12943909,0.45039526,-0.20518239,-0.55280364,0.14720885,-0.064401664,-0.16271432,-0.72221977,0.43862417,0.5851897,-0.5630556,0.6710325,0.306588,-0.11873169,-0.43927607,-0.5645633,-0.061117392,0.03905081,-0.29256466,0.5220094,0.36514595,-0.7513312,0.36196062,0.50885457,-0.1973755,-0.72692615,0.5352723,-0.12833177,-0.3485205,-0.20845146,0.30013993,0.13126434,0.005303949,0.002920964,0.439949,-0.3666688,0.3237881,-0.03877492,-0.22569628,-0.11512055,-0.3054509,-0.086988054,-0.77062756,0.12297119,-0.5009595,-0.2971322,0.28838545,0.08041472,0.1575798,0.16166021,0.38934496,0.41332754,-0.236747,0.11124214,-0.3026827,-0.41005874,0.29134914,0.47369653,0.521374,-0.3126721,0.4959657,0.028432403,-0.19893003,0.0051850253,0.09243237,0.4092601,-0.09210886,0.50554407,-0.040372092,-0.07548534,0.1599956,0.8040911,0.09954802,0.39166158,-0.087399065,-0.06124721,-0.040847298,0.043650407,0.34489283,-0.1962284,-0.5694624,0.15190645,-0.20090532,0.053871598,0.5639784,0.20423087,0.010310367,-0.13181768,-0.526035,-0.1899999,0.1322963,0.06729599,-1.4963036,0.57301337,0.21562526,0.9001403,0.486309,0.09850273,-0.06766875,0.8103296,0.0091922,0.051943924,0.31978327,0.06837993,-0.38050726,0.35528135,-0.84694576,0.50156826,0.06380362,-0.046649806,0.10390629,-0.1398187,0.45651856,0.624024,-0.17565851,0.012664384,-0.037674945,-0.3910772,0.18463203,-0.36191374,-0.06272227,-0.6429101,-0.35092688,0.81952965,0.5588908,0.40440908,-0.32360095,0.1176335,0.021708706,-0.21593639,0.1824895,0.08480139,-0.00085003034,-0.023680832,-0.59851116,0.093545556,0.36587572,-0.23308858,0.12627468,-0.108406626,-0.08114646,0.29555327,-0.11808242,0.13817887,-0.15988632,-0.84487087,0.048764106,-0.5064357,-0.27578303,0.37568164,0.046057433,0.08872356,0.24567904,0.14478667,-0.0637802,0.55592155,-0.06850543,0.6451683,0.007458295,-0.015445486,-0.2357724,0.2944745,-0.06165075,-0.051253352,0.040883042,-0.3223238,0.14055972,-0.6334561,0.4560984,0.00786206,-0.32422787,0.17613962,0.027093198,0.08890573,0.47698313,-0.26971984,-0.19881253,-0.15690853,-0.116641246,-0.2641494,-0.5099432,-0.053713262,0.15049978,0.2187008,0.23289572,-0.19344752,-0.08899029,-0.21802525,0.58690137,0.034525488,0.6035862,0.40608266,0.14686649,-0.283008,-0.10151529,0.17116608,0.5219559,-0.09795232,-0.25036666,-0.49879727,-0.4074044,-0.3589592,0.35626724,-0.0029476646,0.45592508,0.05344855,-0.028442856,0.7503063,-0.10208394,0.9756785,-0.112131014,-0.313838,0.11234711,0.5879634,-0.18865336,-0.25891918,-0.22426854,0.6439414,0.53849,-0.103552565,0.057905786,-0.3697072,-0.031237999,0.10837494,-0.21615602,0.05259096,0.013925778,-0.6186386,-0.19939265,0.13248947,0.29905367,0.16436405,-0.20124845,0.10029181,0.4225015,-0.08403628,-0.12954418,-0.44743937,-0.22394717,0.30687985,0.2361659,-0.028707614,0.11449047,-0.635828,0.2984679,-0.37563664,0.076886095,-0.18027963,0.15308593,-0.16978523,-0.26993456,0.21387397,0.024141014,0.18315127,-0.34417632,-0.18858679,-0.17212489,0.40008074,0.19749942,0.14354381,0.45370656,-0.32109162,0.054744035,0.0935251,0.49176183,0.6197691,-0.20039351,-0.13810702,0.25184235,-0.4155963,-0.47695985,0.2165068,-0.26028043,0.047566168,0.22355005,0.025720222,-0.55200356,0.26910764,0.20296507,0.1454445,-0.06400337,-0.9247961,-0.18304019,0.22419818,-0.21979967,-0.04810571,-0.3369208,0.008964418,0.49118346,-0.18842462,-0.38978818,0.026679652,0.22286426,-0.06785629,-0.47186875,0.118927,-0.53921235,0.23761807,-0.08797675,-0.28624824,-0.18061733,0.018931776,-0.48092517,0.09893944,-0.042391803,-0.3469331,0.019584553,-0.258529,0.018676251,0.88371605,-0.30700523,0.20349921,-0.23989333,-0.48681346,-0.6116801,-0.20243904,0.3615763,0.23673317,-0.020660264,-0.8881801,0.0020542017,-0.09620913,-0.22437988,-0.09809283,-0.3724555,0.50967515,0.0878468,0.4981268,-0.1549281,-0.75344235,0.31231713,0.08886891,-0.27035603,-0.40217468,0.5050569,0.05662256,0.7964676,0.046975434,0.1631255,-0.028208688,-0.39898673,0.01822411,-0.19086708,-0.20436883,-0.5772887,-0.036481645 +662,0.42169315,-0.33026767,-0.49008515,-0.07091745,-0.1860216,0.16126274,-0.18024898,0.49324378,0.28675112,-0.4326051,-0.08366188,-0.08637757,-0.001992049,0.37116656,-0.08057023,-0.34839326,-0.03363943,-0.0022446609,-0.51066923,0.58789825,-0.37323448,0.1537373,-0.2367973,0.57840717,0.24141778,0.24603339,0.017791795,0.13253325,0.025521645,-0.2975249,0.24151847,0.28683478,-0.46717077,0.47556916,-0.22027552,-0.25718087,-0.076879136,-0.26609212,-0.5101737,-0.7148227,0.30754852,-0.7844537,0.30978337,-0.056691978,-0.27717444,0.19772415,-0.013153626,-0.025426975,-0.20540403,-0.29101378,0.032405183,-0.21375667,-0.06828366,-0.2753288,-0.17480513,-0.400359,-0.49358752,-0.09737295,-0.30541563,-0.07298924,-0.38349548,0.08650792,-0.3556936,-0.00058976666,-0.10300732,0.58489865,-0.35956007,0.24341688,0.25970614,-0.28624636,0.12045425,-0.68499976,-0.36111116,-0.114136815,0.06248545,0.23258291,-0.34291023,0.4525164,0.09683543,0.17952535,-0.011650451,-0.110446975,-0.26500803,-0.17821862,0.3750012,0.36692095,0.032731745,-0.407496,-0.14353131,-0.10444225,0.122972675,0.19248211,0.33137083,-0.31998628,-0.11960877,0.04012365,-0.22844112,0.4325505,0.5705751,-0.09263756,-0.18550876,0.19496202,0.38580889,0.30304447,-0.3037734,-0.09900709,-0.026534306,-0.4469625,-0.09176029,-0.033032715,-0.08305425,0.5009437,-0.1266085,0.33866334,0.5936451,-0.27530536,-0.10522993,0.08849023,0.17887037,-0.23338504,-0.44023886,-0.21196547,0.16635032,-0.41035444,0.17993757,-0.13240603,0.7830237,0.18912645,-0.47208452,0.43101773,-0.38458315,0.070973046,-0.06584635,0.48024133,0.616407,0.34286115,0.37710217,0.6194396,-0.3015589,0.0074984008,-0.19597742,-0.14575608,-0.050908208,-0.3606925,0.18816996,-0.40777335,-0.029164374,-0.06669115,-0.10408229,0.0614711,0.42520306,-0.34344083,-0.14461394,0.1855713,0.7484937,-0.21360111,0.11316652,0.71272427,1.2114525,1.1269833,0.12281137,1.1145271,0.085619695,-0.19165698,-0.020379987,0.12989476,-0.7959897,0.26534376,0.27582327,0.44268042,0.15023175,-0.025899382,-0.001597826,0.33689752,-0.43352133,-0.03131897,-0.058528204,0.61102116,0.23999548,-0.07270614,-0.29294044,-0.3021452,-0.10785474,-0.09899039,-0.07991546,0.2655186,-0.105390206,0.5149452,0.1511172,1.357962,-0.098192744,-0.029083248,0.14446715,0.6076932,0.23437534,-0.28840327,0.11584175,0.2996162,0.14774312,-0.01416786,-0.5628311,0.24178596,-0.273091,-0.4763504,-0.09775664,-0.4019689,-0.1955773,0.0991055,-0.26875028,-0.2946259,-0.0376529,-0.23581786,0.38791534,-2.9284875,-0.1245048,-0.1033488,0.38212132,-0.16684332,-0.16149278,0.006402456,-0.52405757,0.38455233,0.20303905,0.43724027,-0.48214787,0.079871014,0.6139202,-0.6118521,-0.054428406,-0.37333253,0.017978575,-0.034686323,0.47094855,-0.0847566,0.11759595,-0.21544047,-0.0121582495,0.584359,0.13073315,0.23032464,0.38161018,0.15148146,-0.35718516,0.46091977,-0.120497115,0.43879077,-0.451632,-0.022302667,0.31240293,-0.42098427,0.41129318,-0.29272828,0.1596119,0.6441569,-0.31186262,-0.5810669,-0.63682616,-0.06838477,1.2183529,-0.104527555,-0.67102754,0.23701546,-0.66760856,-0.16498078,-0.15387313,0.49553064,-0.09960236,-0.12728898,-0.5770501,0.059451055,-0.03346328,0.15639438,-0.088993974,-0.1275821,-0.25628188,0.6534795,0.09745487,0.48212576,0.21228337,0.10002543,-0.2251699,-0.3292558,0.11361127,0.53099436,0.43407035,0.15169981,-0.43464676,-0.18967636,-0.21442835,-0.19963673,0.112078734,0.68302286,0.39672205,-0.15972002,0.23127578,0.2414732,-0.089890294,-0.003642823,-0.2519375,-0.12306353,-0.19098568,0.096704364,0.60210556,0.8564688,-0.007200505,0.23597011,0.003792682,0.26714966,-0.058443844,-0.48806527,0.5080352,0.84871674,-0.16757798,-0.27689394,0.46527857,0.4765303,-0.38500255,0.3305528,-0.43252835,-0.2922061,0.56460315,-0.14335768,-0.477037,0.016077233,-0.27610168,0.1318035,-0.47538868,0.21806654,-0.55226123,-0.67444813,-0.48977193,-0.15865202,-2.4647086,0.1426123,-0.27420488,-0.19029878,-0.22602119,-0.22015585,0.24298951,-0.34227067,-0.5311671,0.21374328,0.11288302,0.7338163,-0.16716501,-0.08098977,-0.37713936,-0.44717202,-0.32750422,0.109791696,0.14076169,0.3818646,-0.13445564,-0.2795673,0.041076858,-0.010701383,-0.32904407,0.11288402,-0.37863678,-0.5100232,-0.12724943,-0.3732105,-0.39713582,0.5885855,-0.03522052,-0.005488168,-0.15531383,0.009387776,-0.10299023,0.08971398,0.005189717,0.17310724,0.08541752,-0.12229623,-0.04975428,-0.32257834,0.28867558,0.0021347941,0.30777007,0.40673146,-0.059896696,0.08994488,0.39642286,0.54214674,-0.14904077,1.0196854,0.286315,0.08960929,0.3605241,-0.1506319,-0.52684146,-0.5048472,-0.1564995,0.29876462,-0.39722404,-0.33419558,0.093661904,-0.26471657,-0.65176994,0.5825452,0.190395,0.1443385,0.06966103,0.06754751,0.48480123,-0.05632278,-0.06415793,0.17840861,-0.037816636,-0.7476056,-0.41553766,-0.7852414,-0.52271616,0.14364572,0.90296024,-0.23559295,-0.14688277,0.13509431,-0.4352793,0.14657973,0.2861453,-0.108526155,-0.18088634,0.48433542,0.0781622,-0.49059078,0.48361522,-0.017060515,-0.10344065,-0.59935033,0.4946344,0.6264645,-0.7215032,0.6437011,0.18023825,0.09357093,-0.37416396,-0.48994318,-0.12182747,-0.28253016,-0.1675286,0.39370966,0.2755436,-0.95538396,0.31904125,0.17996824,-0.18861924,-0.67043245,0.46872872,-0.1921757,-0.2513258,-0.14465782,0.31301084,0.21365213,0.0057191295,-0.11716584,0.32655033,-0.51825464,0.19249001,0.12361276,-0.08808124,0.218142,-0.19033155,-0.17138597,-0.63955265,-0.012760644,-0.4957885,-0.39388552,0.34081587,-0.063670635,0.04942582,0.2459121,0.31882307,0.28145593,-0.104152165,0.17363313,-0.04550135,-0.35105538,0.45798543,0.42586628,0.62457556,-0.23587319,0.7117465,-0.016911617,0.045094226,0.1574969,0.17763135,0.26107243,0.23630609,0.56543714,0.08091681,-0.2603652,0.05835073,1.161908,0.12954995,0.4108939,-0.021022012,-0.06929435,0.35028264,-0.06859401,0.36184525,-0.12205291,-0.5777024,-0.012851732,-0.44794008,0.09834683,0.3564423,0.20679577,0.25574556,0.03490365,-0.43930206,0.0055323667,0.013335301,-0.01798307,-1.1791672,0.23013684,0.10012187,0.97335833,0.3556984,-0.016293688,-0.1023471,0.73047477,-0.02583612,0.07350625,0.3335347,0.110875435,-0.44321874,0.5097867,-0.6862053,0.56485873,-0.036865063,-0.14304687,0.09764935,0.034220707,0.47387663,0.6424232,-0.2344671,-0.04135465,0.15154208,-0.37052733,0.1510161,-0.49252912,-0.13373451,-0.5446264,-0.39711183,0.5302609,0.64215183,0.44269314,-0.28774428,0.018360982,0.050352726,-0.11394893,0.25357255,-0.06484251,-0.087529846,-0.1468569,-0.5331685,-0.13545622,0.43314114,0.039999362,0.27087355,-0.041806724,-0.18527672,0.18959789,-0.093909405,-0.006784805,-0.06847625,-0.6194808,-0.0068047005,-0.22276889,-0.5426363,0.40006045,-0.14122602,0.25581995,0.37295794,0.0095088435,-0.07157922,0.43284056,-0.018115656,0.84848034,-0.074427366,-0.11998812,-0.49665308,0.016277624,0.11099107,-0.23200762,0.06821607,-0.12578431,-0.13635544,-0.47069263,0.5070845,-0.15777706,-0.2664408,0.028029291,-0.10878669,0.042361405,0.59548265,0.07937725,-0.1609669,-0.054712627,-0.10249963,-0.31757182,-0.2679011,-0.012455523,0.2392041,0.14795105,-0.0021146429,-0.114134856,-0.13582246,0.25418556,0.22182812,0.0009867698,0.20116057,0.3045965,-0.08831365,-0.33143234,-0.1309448,0.23514953,0.61962926,0.08060258,-0.13558482,-0.25303563,-0.5209294,-0.42981437,0.2018001,0.05998842,0.41007975,0.07552157,-0.41527933,0.531799,-0.23908135,0.7881971,0.06294403,-0.24520777,0.2426438,0.53699744,-0.012615676,-0.1095354,-0.31961516,0.5956295,0.2859269,-0.1394117,-0.19702992,-0.34777784,0.11520883,0.20433919,-0.24085243,-0.027448585,-0.0902713,-0.67809343,0.029487815,0.019656433,0.2181329,0.2044151,-0.13340469,0.016332272,0.29428014,0.12935789,0.380647,-0.40027422,-0.170855,0.32621676,0.12566593,-0.022577312,0.15691353,-0.39907643,0.24505033,-0.5448486,0.20183267,-0.15790306,0.09162567,-0.25865665,-0.31534645,0.24662413,0.11534234,0.33052093,-0.40539184,-0.3458705,-0.3642241,0.33113518,0.2564804,0.18087889,0.46607068,-0.15943827,-0.15312947,0.17843221,0.53531104,1.0335253,-0.10411211,-0.009785546,0.20403549,-0.5831521,-0.5995839,0.40143058,-0.24622524,0.22111738,0.1306292,-0.041477878,-0.55605626,0.14601913,0.34144923,-0.025408864,0.20855244,-0.79562604,-0.25970593,0.02025893,-0.49892852,-0.14727004,-0.39663795,-0.17609365,0.33751747,-0.20564573,-0.25934562,0.07725903,0.25946575,-0.18063828,-0.3593056,-0.024768272,-0.37657437,0.34072378,-0.22779639,-0.39064255,-0.15731876,0.05394706,-0.52456105,0.06294747,-0.13953097,-0.40767342,-0.015235119,-0.32665226,0.07894624,0.8136719,-0.3522745,0.19719324,-0.30706483,-0.53670084,-0.6716562,-0.22443482,0.23785134,0.04200548,0.05836239,-0.45677122,-0.17593156,-0.047311597,-0.0074665374,-0.11981189,-0.39465287,0.38208076,0.0065210634,0.30800086,-0.011379762,-0.9077813,0.34119648,0.18230745,-0.02270067,-0.40001342,0.4276002,-0.3369977,0.69803524,0.017342478,-0.10890615,-0.007148516,-0.37962213,0.24509032,-0.19845675,-0.23089422,-0.3180674,0.25068334 +663,0.4290002,0.060879357,-0.6088136,-0.16219707,-0.4040094,0.28322127,-0.36580944,0.015973942,0.12170868,-0.12315795,0.00064495404,-0.15100119,-0.13934453,0.12523134,-0.1539381,-0.6434662,-0.089058526,0.09321513,-0.57860404,0.5173633,-0.28631648,0.5463685,0.026410162,0.31927636,0.14194275,0.2968868,0.08204297,0.049351517,-0.11989972,-0.21459804,-0.14221893,-0.0013642868,-0.8265588,0.27413094,-0.25474605,-0.5038436,0.0058113574,-0.4835238,-0.30340636,-0.804801,0.41723114,-0.820531,0.6747228,-0.1452541,-0.2157465,0.1518576,0.10516901,0.34102446,-0.029143138,0.10423193,0.25270697,-0.34804848,0.19056985,-0.19445881,-0.445385,-0.41791758,-0.5063577,-0.08771232,-0.571962,-0.0985391,-0.31132418,0.25311488,-0.2551619,-0.02865488,-0.30859944,0.28501564,-0.46331802,0.25688753,0.2011879,-0.17692865,0.13577652,-0.41315317,-0.05051275,-0.04901378,0.14091831,0.0042277058,-0.03738087,0.46946633,0.12871727,0.4580983,0.08627799,-0.35964116,-0.21071061,-0.01636635,0.080334894,0.5352919,-0.074902676,-0.0030941823,-0.3097819,-0.090486735,0.3650505,0.40819538,-0.033399787,-0.31547448,0.10167485,-0.10615573,-0.0898622,0.34879074,0.5142769,-0.25761816,-0.17789707,0.39513725,0.37374052,0.21590348,-0.19245939,0.20627116,-0.058112014,-0.20869154,-0.27782768,0.2758628,0.008505523,0.47454646,0.039908525,0.22376157,0.6470034,-0.05400704,0.09799678,-0.17404133,-0.1390042,0.12166706,-0.21033175,-0.19884886,0.29025447,-0.6136577,0.31707063,-0.32307616,0.6660992,0.0635602,-0.7868197,0.46747124,-0.6731068,0.073121324,0.05874029,0.533627,0.7237274,0.34203503,0.124601625,0.8447618,-0.40505555,0.05793066,0.006351109,-0.23395279,-0.0089456,-0.04452495,0.28579348,-0.39422527,0.029208086,0.026175125,0.07087483,0.0099593615,0.15804654,-0.3070197,-0.16175617,-0.068779744,0.9104201,-0.38076273,0.14194942,0.77950203,1.0878596,1.0401891,0.039532725,1.0927178,0.4413841,-0.13955246,-0.23793112,-0.12069317,-0.55105424,0.06665746,0.27378252,-0.24373645,0.4240008,0.080029406,0.0562697,0.2199789,-0.33615786,0.002308023,0.0038962364,0.07894535,-0.028733563,0.019003788,-0.33860746,-0.35385895,0.26453012,0.040252943,0.032444704,0.21411654,-0.119520105,0.5204549,0.23075072,1.3717512,0.14221628,0.07059316,0.14342766,0.40984538,0.30223656,-0.22632709,-0.03051323,0.21114479,0.34757137,-0.16853254,-0.40531227,-0.07198849,-0.37868032,-0.37734511,-0.12579593,-0.24788044,-0.22017367,0.049287975,-0.32243344,-0.13407867,-0.033778332,-0.21192572,0.5102731,-2.5466573,-0.020154722,-0.10432343,0.31910762,-0.3104334,-0.339506,-0.28638417,-0.5147241,0.45810255,0.32618108,0.28363004,-0.4945933,0.25650698,0.31472194,-0.3475284,-0.09440635,-0.51998085,-0.01589806,0.055568818,0.33297953,-0.073391676,-0.10789003,-0.13182531,0.38342422,0.68403804,0.20899253,-0.033291332,0.24987626,0.4894431,0.011034416,0.46585813,0.04850816,0.42242166,-0.23621029,-0.04307606,0.37598294,-0.47426337,0.39190826,0.03574477,0.09014044,0.44022152,-0.49304008,-0.485771,-0.4996323,-0.42750898,1.0849993,-0.40626174,-0.5233732,0.056603335,0.018792009,-0.31716168,0.022082604,0.46650124,-0.071401134,-0.05830338,-0.49274316,-0.2427478,-0.22969007,0.25890133,-0.11870938,0.33483002,-0.34232038,0.68969864,-0.22141911,0.44805133,0.28914785,0.32690084,0.020900298,-0.52402467,0.17615369,0.7311982,0.55130655,0.083963946,-0.29653293,-0.029221041,-0.24083287,-0.25927913,0.17688115,0.6685868,0.7758329,-0.19736196,0.050461452,0.39056,-0.24091305,0.045597322,-0.2342041,-0.3482259,-0.06286865,-0.12327909,0.5147348,0.5520379,0.06298113,0.36102232,-0.12210253,0.24563815,-0.22482434,-0.53275806,0.3528652,0.80467,-0.16897002,-0.06566851,0.35353333,0.26307485,-0.29554385,0.46968782,-0.6304367,-0.21426617,0.7553987,-0.06234089,-0.5774832,0.13847485,-0.34211627,-0.04620951,-0.6791715,0.2947444,-0.10834742,-0.52608716,-0.37958574,-0.17389797,-2.6288233,0.13732879,-0.068715654,-0.11971932,-0.22719833,-0.26852134,0.2583925,-0.33469594,-0.58000016,0.083876595,-0.07780012,0.49194175,-0.113290526,0.21276046,-0.31753796,-0.18412203,-0.46144035,0.39053088,0.23169534,0.36632946,-0.22243427,-0.14183265,0.05475437,-0.2616906,-0.4705339,-0.113973975,-0.5312083,-0.47338298,-0.11498154,-0.3586488,-0.33417657,0.6842222,-0.44406065,0.054125335,-0.2531295,-0.18288173,-0.117755495,0.2320487,0.4174877,0.2697282,0.09440497,-0.04538668,0.0419638,-0.38094643,0.2949784,0.21512231,0.18694726,0.31353277,-0.15329923,0.1538041,0.20900747,0.5818072,0.029314915,0.68049395,0.0037733992,-0.14730236,0.44477683,-0.3958586,-0.33341405,-0.7842567,-0.27355662,-0.20307621,-0.35181898,-0.5034193,-0.38796183,-0.35691944,-0.7692112,0.2896064,0.029436048,0.27674815,-0.061480183,0.26253736,0.30435887,-0.16077703,0.032784637,-0.036472637,-0.120099045,-0.3292038,-0.46237713,-0.56512755,-0.599007,0.26249164,0.8450737,-0.027048282,-0.14441384,0.07184069,-0.23591249,0.3303657,0.06908312,0.21590203,0.13128264,0.43128645,-0.056443017,-0.610566,0.43365923,0.13205631,-0.22027816,-0.59016484,0.14097564,0.77745444,-0.58910525,0.45098087,0.2853926,0.089703746,-0.040763173,-0.6796294,-0.16592999,0.011243319,-0.38446045,0.4917335,0.11225626,-0.5202516,0.37436688,0.122866,-0.14298806,-0.69244564,0.5227799,0.06747859,-0.19062679,0.10315207,0.3915941,-0.050395343,-0.11595405,0.017230893,0.19462793,-0.58295757,0.3119732,0.31276074,0.0005677541,0.25735277,0.016279252,-0.22325398,-0.6217382,0.2194349,-0.44631827,-0.3852529,0.15534046,-0.032238007,0.0075543346,0.16952369,0.11756395,0.43426016,-0.26036376,0.16477603,-0.1229896,-0.1772087,0.44605675,0.38857403,0.37085298,-0.5369865,0.65094167,0.020103944,-0.02334513,0.14370689,0.18800904,0.41154402,0.1672441,0.20711635,-0.028590774,-0.04870313,-0.10032224,0.39062577,0.33070093,0.38256747,0.06735563,-0.13018718,0.25730836,0.1613643,0.08164097,0.050793096,-0.3009096,-0.06023591,-0.1041504,0.09385994,0.44795576,0.044904225,0.2971668,-0.16472428,0.027077658,0.19400224,0.069721855,-0.4081361,-0.97685486,0.2982008,0.22405703,0.7828447,0.3432236,0.0086830575,0.06769172,0.3521474,-0.31844813,0.09062205,0.37779045,0.17178987,-0.29086012,0.5527389,-0.4931259,0.48985526,-0.21379955,0.047954775,0.12070298,0.2759101,0.4976944,0.94742876,-0.22827773,-0.014293408,-0.13952312,-0.1256829,0.036998652,-0.117608555,0.23226343,-0.47893664,-0.42027628,0.6573338,0.2932947,0.30732533,-0.3789506,-0.06395517,-0.13129231,-0.21027909,0.11350867,0.05977336,-0.12024285,-0.047579683,-0.45224053,-0.3070939,0.5737651,-0.44484097,-0.17034331,0.10555269,-0.18270953,0.1961926,-0.13915405,0.1948411,0.08622788,-0.7819621,0.11260581,-0.4161857,-0.28181273,0.28242722,-0.2922118,0.22979209,0.16759533,-0.04737858,-0.1495747,0.12581335,0.271206,0.645356,-0.02703857,-0.23111923,-0.37893218,0.17921387,0.22393031,-0.35449925,0.025495926,-0.11191776,0.1450612,-0.6087852,0.3301902,-0.27077204,-0.113372244,0.0039070905,-0.11524908,-0.106514215,0.5509976,-0.20761754,-0.047478326,0.07158641,-0.0072588366,-0.3580944,-0.11235328,-0.36543268,0.09244076,0.2280129,-0.14660366,0.053746726,-0.1216111,-0.16543035,0.31380108,0.05101729,0.26446888,0.3079552,-0.15432315,-0.5259535,0.012649401,-0.16701724,0.30698434,0.21014592,0.118602104,-0.20602375,-0.24903034,-0.19281963,0.7217707,-0.26569876,0.05675864,0.01889392,-0.36582634,0.72472745,-0.022977997,0.97930336,0.10225118,-0.2784334,0.12187788,0.4927998,-0.02873327,0.014036208,-0.3905827,0.9520337,0.57629937,-0.13268067,-0.21945456,-0.09852167,-0.09224562,0.10424901,-0.3220947,-0.23399848,-0.05740637,-0.6339172,-0.2154462,0.108562425,0.23279817,-0.0016857306,-0.07643879,-0.12591152,0.2054077,0.1351438,0.5185886,-0.3135464,-0.109907664,0.4029392,0.027490314,0.012722512,0.17894958,-0.31387794,0.41243947,-0.6270121,0.20891355,-0.6090053,0.0005726218,0.012483048,-0.24241696,0.18855742,-0.014582853,0.31621817,-0.43357334,-0.29250857,-0.19191244,0.31432533,0.33613074,0.33387583,0.589384,-0.18379623,-0.08637169,0.051101282,0.449746,1.3621446,-0.12977757,-0.013374341,0.36636862,-0.46426705,-0.6063476,0.105282955,-0.32862917,0.043461885,-0.078866325,-0.36627942,-0.1838203,0.15468684,-0.0017737945,-0.09767472,-0.004357771,-0.77387327,-0.21398903,0.42161793,-0.19419597,-0.19779472,-0.40590099,0.28456607,0.814088,-0.08059489,-0.34869757,-0.0083478885,0.2386747,-0.35252276,-0.6644338,0.2659471,-0.2658448,0.34609595,-0.0034364401,-0.43751508,0.106965356,0.5222667,-0.5016956,0.008521343,0.24803871,-0.37028447,-0.14986187,-0.07208641,-0.0070768753,0.9236008,-0.21856557,-0.29271457,-0.5762945,-0.50183254,-0.99040705,-0.38697436,-0.10494309,0.4381099,0.100805424,-0.4701043,-0.15965743,-0.3938015,0.031385515,0.04067666,-0.412036,0.2861132,0.32524493,0.53700405,-0.22971855,-0.858081,0.18347412,0.09023578,-0.36716875,-0.55160224,0.5010252,-0.19919124,0.622965,0.11965987,0.0070933145,0.08110832,-0.643363,0.4121474,-0.3216574,-0.09951219,-0.73909307,0.16878785 +664,0.5988131,-0.2992669,-0.56070495,-0.057546575,-0.43808183,0.23618165,-0.2574406,0.1283126,0.25485644,-0.59828454,-0.09109674,-0.21874371,-0.021794932,0.24958622,-0.1674201,-0.70094573,-0.035496622,0.092134185,-0.52678174,0.41912165,-0.64486367,0.22795378,0.22427513,0.49759293,0.13823408,0.20890705,0.3314242,-0.0034966809,-0.30672306,-0.03434985,0.012784536,0.17967607,-0.81029063,0.18442142,-0.18408842,-0.38010174,0.0072857267,-0.626795,-0.21948588,-0.84611064,0.37382984,-1.0856621,0.64357203,0.029102951,-0.29531866,0.043518323,0.061075654,0.10261796,-0.31505117,-0.025702575,0.22376558,-0.47427607,-0.043239795,-0.23890375,-0.3275376,-0.45336366,-0.80203193,0.15001747,-0.51262057,0.084898196,-0.11531484,0.3258893,-0.2991114,0.15207002,-0.23926817,0.47662276,-0.48156455,-0.07107105,0.32347685,-0.1704307,0.1869253,-0.44173092,-0.28203577,-0.2772314,0.09828056,-0.15444529,-0.34828982,0.29208347,0.3282788,0.60839224,0.090066805,-0.45355868,-0.37016144,0.1607323,0.17451404,0.47092178,-0.13039526,-0.2560144,-0.33299908,-0.03887541,0.3974943,0.33814377,0.17266223,-0.2952425,0.11673228,-0.0107902335,-0.14646976,0.5039902,0.5119204,-0.23761864,-0.38983044,0.26296803,0.52788323,-0.05582583,-0.09870863,0.043379147,-0.036806945,-0.65354973,-0.23745322,0.4432602,-0.12781323,0.60916287,-0.19346099,0.13086616,0.7000862,-0.4340238,-0.10568911,-0.13668728,-0.15570772,-0.13296768,-0.34077862,-0.15451299,0.38311523,-0.50221044,0.024446255,-0.3035194,0.571729,0.18737224,-0.84604317,0.41158113,-0.50330126,0.16305923,-0.09386245,0.7362047,0.78810203,0.5176369,0.5344413,0.87001514,-0.5109908,0.06989272,-0.102971315,-0.38994053,0.14362934,-0.28831133,0.1259533,-0.50451165,-0.040366042,-0.15543452,-0.3150058,-0.0048080003,0.6161604,-0.5578438,-0.025581935,-0.007343139,0.5834585,-0.36085573,-0.11431246,0.9476892,1.0862509,1.1179949,0.12111171,1.4832078,0.41968912,-0.11323153,0.139939,-0.1258805,-0.6270491,0.31724572,0.3598082,-0.17526145,0.58380806,0.21466944,-0.022552622,0.40003112,-0.29941484,-0.12339797,-0.11151307,0.085406184,0.011849693,-0.0010782693,-0.54920363,-0.37853718,0.025837127,0.036395304,0.041232653,0.33304682,-0.21043113,0.61576,0.05910015,1.3920307,-0.013305111,0.02845999,-0.04077504,0.38957888,0.07940291,-0.026036415,-0.07443882,0.28914204,0.29599217,0.08374106,-0.51532805,-0.019560214,-0.18296024,-0.4366496,-0.26278043,-0.38973996,0.14424147,-0.36673886,-0.50974905,-0.15334968,-0.03573072,-0.47602144,0.48437077,-2.0085754,-0.26872516,-0.038981464,0.3269128,-0.1888517,-0.44556722,-0.26973283,-0.49834332,0.2020872,0.3709362,0.37936231,-0.7914543,0.40438578,0.32031912,-0.6783878,-0.18479283,-0.8608769,0.04113629,-0.2229011,0.37509695,-0.01794506,-0.3117983,-0.20601876,0.14811647,0.61611855,0.04994138,-0.041423917,0.23107195,0.72633934,0.026669072,0.5686804,0.16567142,0.5219988,-0.3862297,-0.29166827,0.5672096,-0.3785402,0.399908,0.11663276,0.06885858,0.4672654,-0.5357501,-0.92761135,-0.7514067,-0.45835048,1.2731081,-0.3536165,-0.33053848,-0.0084254155,-0.08971447,-0.40901893,-0.030955514,0.44647735,-0.25406423,0.07315426,-0.77412355,-0.14374737,0.112621896,0.20328401,-0.03895716,0.29966798,-0.4285591,0.70989907,-0.09262661,0.3920839,0.445671,0.156877,-0.13701917,-0.5912296,0.23837164,0.85374165,0.32919523,0.22248244,-0.2622879,-0.36191583,-0.0038389883,0.021788256,0.1288249,0.496654,0.7239598,-0.032521073,0.06532581,0.41934425,-0.15868078,0.031863123,-0.18011095,-0.24222696,-0.17083208,0.14886744,0.6816522,0.8949747,-0.27232608,0.28152698,-0.17734924,0.40216365,0.056850344,-0.5215835,0.4602094,1.1339207,-0.1313602,-0.13364947,0.5984779,0.44625473,-0.5493615,0.55980283,-0.70701563,-0.16052093,0.42082554,-0.046539508,-0.42790842,-0.03676205,-0.47403213,0.19545424,-0.9437027,0.43716374,-0.09673839,-0.28594527,-0.65258545,-0.11782842,-3.5082035,0.2675836,-0.18003201,-0.095133305,0.03322341,-0.25319356,0.44176584,-0.6848383,-0.5924707,0.067535,0.00948828,0.51079386,-0.11393152,0.20608819,-0.40842262,-0.28126478,-0.25083318,0.20021084,0.38845035,0.3388931,-0.030222442,-0.42425227,0.15813671,-0.37169275,-0.36573902,-0.08472148,-0.70252264,-0.6751053,-0.16093525,-0.5930972,-0.39286852,0.8173884,-0.23955354,-0.13613364,-0.25360844,0.07324346,-0.067077525,0.39652923,-0.051047813,0.29030666,0.13046287,0.018404113,-0.16335103,-0.16950552,0.2982126,0.10363169,0.13781914,0.50168735,-0.21541527,0.30534586,0.5936723,0.6742319,-0.08951342,0.8169273,0.37154478,-0.036365855,0.28101784,-0.13559689,-0.35846373,-0.85963756,-0.3653892,-0.050793093,-0.53356034,-0.39256597,-0.082783654,-0.37098306,-0.8563374,0.57508075,-0.12869085,0.18359403,-0.14195226,0.40096322,0.5419787,-0.26931205,0.15479909,-0.19827521,-0.26703304,-0.6044838,-0.5057395,-0.7165464,-0.7869565,0.014067845,1.2880529,0.023192933,-0.19323395,0.15232971,-0.2603787,0.20088355,0.21876076,0.013569792,0.16344868,0.5550017,-0.016899915,-0.7081795,0.40423754,-0.012056952,-0.10514365,-0.46320614,0.14873055,0.8857581,-0.6553026,0.7170962,0.5366433,0.20162642,0.13600911,-0.5261007,-0.43682885,0.063595675,-0.18193607,0.64037454,0.29377037,-0.7532752,0.46038622,0.2314863,-0.41028497,-0.75221246,0.44056445,0.024462814,-0.13853589,0.080295615,0.4550527,0.016367793,-0.033662822,-0.29023328,0.21100518,-0.4832078,0.22271511,0.3577812,-0.009008263,0.269559,-0.055960692,-0.26001585,-0.76533085,-0.002593598,-0.45538503,-0.44130966,0.104011044,-0.04890823,0.0517825,0.12234033,0.13419433,0.5051824,-0.40415078,0.09363579,-0.10914055,-0.36005044,0.28729862,0.58546305,0.34615135,-0.51053625,0.6414819,-0.03662173,-0.043238018,-0.14714006,-0.064642034,0.4244075,0.20397247,0.18222864,0.009768222,-0.100142516,0.025258109,0.6660456,0.13624473,0.40973195,0.2284241,-0.1440043,0.46745235,0.15115581,0.3693976,-0.24628186,-0.4258104,-0.056271076,-0.08006541,0.14219089,0.3841949,0.024924984,0.35437074,-0.13580148,-0.11267758,0.18234646,0.12145605,-0.06886523,-1.3054428,0.20104074,0.130872,0.5944051,0.55593026,-0.12115181,0.12895264,0.56477916,-0.5043106,-0.022827953,0.45229214,0.051280856,-0.49546704,0.51757824,-0.5497286,0.4369236,-0.27842718,0.033635348,-0.044719107,0.1233482,0.41157284,0.8438053,-0.18071364,0.08613256,-0.07342205,-0.018730232,0.0684459,-0.38848957,0.14530857,-0.51692647,-0.40089545,0.9223916,0.42253384,0.5331365,-0.27677932,-0.052613102,0.14858375,-0.1561835,0.2946253,-0.07214157,-0.15934785,-0.0051408494,-0.6872001,-0.0132461535,0.6275857,-0.011541277,0.1437401,0.043518133,-0.38924694,0.12403587,-0.1386194,-0.2171341,-0.09682305,-0.8470192,-0.22950517,-0.4801435,-0.46890044,0.31439903,-0.3391814,0.17826332,0.31923214,0.07703434,-0.30182573,0.059981756,0.29809216,0.977557,0.25777146,-0.15198646,-0.3238011,0.1674715,0.39753357,-0.39174977,0.02145433,-0.19219868,0.31784528,-0.46131393,0.612644,-0.20167804,-0.5246112,-0.06256345,-0.028805273,0.06063899,0.6315711,-0.2653059,-0.23616816,0.053100143,-0.016131047,-0.29017773,-0.18138972,-0.35786813,0.22489081,-0.019614348,-0.287376,0.08761843,-0.07909293,-0.020339416,0.5695321,0.22177856,0.21838297,0.31987953,-0.074802145,-0.39135727,0.0558286,0.051439404,0.55099434,0.20161569,-0.35279918,-0.5337184,-0.2591119,-0.15621647,0.3376748,-0.1256507,0.12800412,-0.012712725,-0.44154927,0.9964147,0.062349822,1.277049,-0.07379394,-0.46856856,-0.058898397,0.5058583,0.020014586,0.073374145,-0.42690653,1.0178002,0.52268565,-0.21745296,-0.1887761,-0.51888716,-0.2563271,0.24888954,-0.37981915,-0.11477239,-0.25663728,-0.7445539,-0.1875952,0.21904,0.2707798,0.028967062,-0.182695,0.2908928,0.13243327,0.062195215,0.4574968,-0.4627053,-0.14340138,0.40583357,0.32119754,0.030372858,0.17960282,-0.2867706,0.39890972,-0.61076736,0.1665007,-0.5809946,0.07998593,0.056717556,-0.38237658,0.23988748,0.002294319,0.46487632,-0.36272416,-0.22463386,-0.32767084,0.6824074,0.30471236,0.2800896,0.8114906,-0.2824694,-0.056182522,0.094266824,0.46588913,1.6494664,-0.13861135,0.15822433,0.2853859,-0.22844395,-0.53481305,0.4482501,-0.47376233,0.03535085,-0.26242894,-0.39780882,-0.5995941,0.11246015,0.20387755,0.049509626,-0.04243208,-0.46955967,-0.09436745,0.6011925,-0.28601772,-0.29757762,-0.31754112,0.24137358,0.6671977,-0.22963639,-0.3950463,0.07493105,0.4244642,-0.2473953,-0.44698283,-0.1876667,-0.33127934,0.33340803,0.08286735,-0.2712268,0.025941715,0.18776895,-0.43008876,0.12791799,0.32027844,-0.39885476,0.121096544,-0.24853471,-0.049091,1.0628345,-0.006144907,0.18390147,-0.57765883,-0.5641935,-1.0173441,-0.34857893,0.08183561,0.20957734,0.075968795,-0.45520192,0.007774132,-0.116081,-0.16734432,0.1311101,-0.6535048,0.41705298,0.0141153615,0.55330044,-0.11367994,-0.769033,0.08699714,0.15469006,-0.10774369,-0.4300232,0.46881184,-0.12067227,0.71230423,0.11181196,0.09214976,-0.03737899,-0.5194603,0.3231037,-0.3492566,-0.1743911,-0.73481905,-0.025434738 +665,0.47269052,-0.22824039,-0.5679608,0.01104153,-0.25473133,0.038296256,-0.06878693,0.43270496,0.26868522,-0.18918008,-0.036463935,-0.034076516,-0.0010792792,0.4073604,-0.0648742,-0.6097501,-0.0036741237,0.28542358,-0.47066918,0.60649335,-0.31712478,0.31456974,-0.1814704,0.3138318,0.11559696,0.3589783,0.01870458,0.05705792,-0.003258451,-0.16858354,-0.13225129,0.13309714,-0.6709279,0.18544081,0.05436492,-0.37599462,-0.020536648,-0.37683198,-0.29389158,-0.6591125,0.12650494,-0.63115853,0.507044,-0.07407863,-0.1870456,0.26647606,0.01361535,0.43629816,-0.33348742,-0.055581234,0.07400623,-0.09066449,-0.1870971,-0.2581993,-0.12220856,-0.35635427,-0.58832645,-0.108487435,-0.34193856,-0.07254211,-0.2818496,0.045381553,-0.31458786,0.092718534,-0.083311245,0.18177894,-0.3874424,0.21802491,0.17871097,-0.060246382,0.06015314,-0.47012964,-0.07092619,-0.18629417,0.17929484,-0.12027338,-0.36920163,0.39243242,0.26906237,0.49927595,0.029805478,-0.2521033,-0.39772588,-0.082244106,-0.0084773265,0.540683,-0.13953158,-0.46963245,-0.12089243,0.053208694,0.1677383,0.15550655,-0.012307016,-0.3087106,-0.15933016,0.012930874,-0.16822211,0.17190455,0.45636144,-0.41267362,-0.36825868,0.45724094,0.57960683,0.0881057,-0.092592806,-0.06548499,0.009154649,-0.49860427,-0.14325161,0.0024545987,-0.16083482,0.4205708,-0.069299415,0.093929626,0.5946573,-0.28780687,-0.23522146,0.09337139,0.09700453,-0.2565714,-0.35472524,-0.16915265,0.25643045,-0.50935024,0.24474011,-0.09094749,0.73190427,0.27509862,-0.70951056,0.31526738,-0.577029,0.15748002,-0.043832365,0.400681,0.83799875,0.47765478,0.27478126,0.74235535,-0.42626646,0.2439157,-0.19838342,-0.36102235,0.1465326,-0.20699936,-0.16091026,-0.5583725,0.15208575,0.032670386,-0.21133855,0.20407389,0.29876888,-0.6120946,-0.1663391,0.09785677,0.6009268,-0.2623895,-0.18993117,0.82130265,0.91363066,0.99249876,0.13843912,1.3011981,0.26972187,-0.17027394,0.27575725,-0.27664128,-0.80197704,0.08012246,0.24835603,-0.15923484,0.25288385,0.19817807,0.038274314,0.40233308,-0.29832298,-0.11055115,-0.12364704,0.46179307,0.13606621,-0.08061008,-0.30251133,-0.3254081,-0.04862457,0.11383863,0.029816087,0.3955895,-0.21465947,0.39492786,0.24324268,1.9157016,0.066184714,0.06888259,0.0404909,0.40271005,0.28497902,-0.17947906,-0.19221902,0.39777952,0.33065385,0.15780273,-0.56272984,0.044309914,-0.2873176,-0.4566854,-0.09254303,-0.20771742,-0.07595405,-0.05287889,-0.2868101,-0.27771506,-0.10857229,-0.12541704,0.68382484,-2.6268773,-0.059192088,-0.103896335,0.26848856,-0.20345125,-0.45597294,-0.1710054,-0.5150437,0.36479396,0.22120282,0.45244732,-0.7450556,0.15159419,0.17200771,-0.636403,-0.075060695,-0.55947345,0.067004286,0.007897596,0.37054473,-0.007835722,-0.07578955,-0.02274508,0.08579907,0.50672716,-0.046288777,-0.010219868,0.4059106,0.24988864,0.053392433,0.46445316,0.023301125,0.61822456,-0.2011807,-0.22320619,0.17549734,-0.26635063,0.34645066,-0.075402394,0.12019822,0.3796153,-0.40819576,-0.9893996,-0.6859252,-0.012459334,1.11318,-0.27928188,-0.27320537,0.16106988,-0.426461,-0.23246793,-0.10238234,0.27496508,-0.1620331,-0.23137777,-0.6460475,0.14393112,-0.011363459,0.16900772,0.021478632,-0.07176404,-0.31701103,0.6237241,-0.10079037,0.5018843,0.38903323,0.1540242,-0.24718456,-0.4093118,-0.0226846,0.9441766,0.36012107,0.113185085,-0.22641774,-0.18618873,-0.34390953,-0.16453688,0.16832104,0.49815932,0.6140714,-0.15984634,0.074234344,0.29007912,-0.038476784,-0.00585227,-0.053653732,-0.18692422,-0.12131341,-0.06553787,0.49123377,0.77430266,-0.20360085,0.5424491,-0.07208611,0.15113202,-0.014199084,-0.5632919,0.48414117,1.0233731,-0.27281886,-0.32503644,0.5366055,0.2666021,-0.13842262,0.39803436,-0.45394155,-0.20004924,0.4083328,-0.13222943,-0.15458076,0.25752622,-0.22600065,0.13165437,-0.7234783,0.28789806,-0.13872832,-0.52312833,-0.4249764,-0.043665536,-3.340913,0.24954563,-0.15767124,-0.1301674,-0.008833925,-0.1600543,0.11786986,-0.7079693,-0.516783,0.22470036,0.16449365,0.7008446,-0.10068997,0.10596313,-0.18218152,-0.38995135,-0.40743876,0.17434934,0.091585845,0.32517204,-0.038475353,-0.4289191,-0.12920696,-0.03935292,-0.4884714,0.08691471,-0.5993641,-0.35550973,-0.14784926,-0.6034388,-0.3479478,0.6760632,-0.36952278,0.04596261,-0.16260107,0.008185331,-0.13612798,0.2114922,0.040100645,-0.060541395,0.037225507,0.011818016,0.16221146,-0.3168258,0.23409702,0.008200661,0.30155268,0.24610633,-0.13893393,0.25163776,0.5542017,0.7661438,-0.06691597,0.8515121,0.59315914,-0.22575952,0.20180772,-0.2131777,-0.18933201,-0.51395154,-0.42883292,-0.27471927,-0.50671893,-0.26234713,-0.048231263,-0.3473095,-0.724903,0.5918144,0.0659373,0.094725356,-0.06116195,0.3170304,0.6563497,-0.28763884,0.057153285,-0.09352746,-0.21452062,-0.47854328,-0.30503985,-0.41981235,-0.37601635,0.29098588,1.1647003,-0.29081127,0.07624544,0.00805815,-0.19930668,0.039756205,0.15262744,-0.050063808,0.28572443,0.40579593,-0.11796183,-0.52940404,0.43840915,-0.21567973,-0.098867856,-0.70191205,0.31333888,0.43791047,-0.6026276,0.39711592,0.123086885,0.058216497,0.035977606,-0.47655323,-0.0701536,-0.031990457,-0.2534217,0.17752567,0.2782227,-0.8113916,0.47457275,0.33006394,-0.3041565,-0.6397961,0.34512085,0.019818107,-0.13695529,-0.16270615,0.30617124,0.25895256,-0.024675969,-0.25144187,0.12744027,-0.5209132,0.14356853,0.15253353,-0.1591306,0.0547245,-0.15199055,-0.09335966,-0.7562763,-0.020872978,-0.37214914,-0.25459972,0.18562569,0.033570867,0.12086606,0.054079466,0.12267784,0.28365618,-0.40929472,-0.009707288,-0.09463553,-0.28123915,0.39440262,0.39774838,0.42459282,-0.327045,0.5434278,0.040969722,-0.03433196,-0.0230212,-0.015791623,0.4343936,0.09392568,0.35870406,0.11010479,-0.32658064,0.103498474,0.60156083,0.115614876,0.2792118,-0.14041536,-0.20346247,0.06395561,0.21934494,0.20302372,0.22640347,-0.49180794,0.18661591,-0.052844547,0.17091316,0.57563585,0.30745375,0.27989423,-0.09938874,-0.3424838,-0.014613295,0.03568204,0.016904572,-1.4462178,0.4296816,0.11752389,0.62923753,0.4835148,0.07076706,-0.03496055,0.50370425,-0.18988873,0.14569794,0.25336698,-0.08589457,-0.28825948,0.40343916,-0.84733546,0.625379,0.048925325,0.107182674,0.18477133,0.059005324,0.34115276,0.96351105,-0.18480119,0.0030530235,-0.118484996,-0.16505343,-0.008981645,-0.21610473,-0.030078253,-0.58116686,-0.28987953,0.76120603,0.3699114,0.5150783,-0.13912776,0.042904284,0.03526454,-0.08027964,0.09504672,0.040179577,0.18094246,0.02392605,-0.48123428,-0.1578446,0.5241911,-0.21933344,0.2189046,-0.010307407,-0.25407878,0.25135177,-0.14622012,-0.09453098,-0.100545436,-0.60353535,0.082262844,-0.18355204,-0.31887168,0.5156355,-0.106493786,0.23996799,0.12187203,0.10836136,-0.23262383,0.53632516,0.13064648,0.8657166,-0.14696135,-0.15643898,-0.33301857,0.32402596,0.18196945,-0.10854898,0.061919946,-0.18328924,0.041625056,-0.7428884,0.29892334,-0.0080504,-0.33759987,0.026864307,-0.032140113,0.13038266,0.47434852,-0.15907107,-0.20728295,-0.07787654,-0.16414236,-0.22113441,-0.3395612,-0.1937071,0.19440009,0.15044785,-0.12223689,0.005583076,-0.16748434,-0.149098,0.2863625,-0.015134039,0.25991142,0.17121716,0.13887967,-0.24282546,-0.15136978,0.14606307,0.4244814,-0.20194696,-0.19084325,-0.35853344,-0.44554564,-0.4608773,-0.07218776,-0.060253564,0.4569277,0.0693895,-0.21742012,0.6486521,-0.14529648,1.2388898,0.06107042,-0.34597892,0.034527924,0.5917868,0.0031830608,-0.02097209,-0.22389501,0.9244394,0.5061362,-0.087017074,-0.16315457,-0.3435776,-0.18447113,0.31221274,-0.20729613,-0.051268164,0.12967077,-0.41510406,-0.35914257,0.23869543,0.16171685,0.26028454,-0.11290305,0.035410874,0.27998176,0.05850909,0.32289535,-0.36429104,-0.07964139,0.21982482,0.34745753,0.045958392,0.23614828,-0.5134162,0.35350686,-0.4552478,0.11985205,-0.187218,0.26261264,-0.15129648,-0.21868873,0.17736252,0.057369538,0.3151921,-0.3577382,-0.42422915,-0.3290058,0.5641951,0.06627091,0.09390498,0.714438,-0.27847973,-0.019069765,-0.04315224,0.36666882,0.8042182,-0.2887341,-0.08277931,0.44969302,-0.28437895,-0.45751816,0.32925892,-0.1455535,0.1842341,-0.014656766,-0.135163,-0.61072236,0.24018942,0.16659169,0.25142977,0.10895918,-0.6542269,-0.06552117,0.14460969,-0.29278955,-0.14229351,-0.29734373,0.31141287,0.8562523,-0.31586686,-0.4552309,0.24213082,0.109365895,-0.044150844,-0.46682194,-0.20373257,-0.36672604,0.28809866,0.14992762,-0.37531674,-0.2565233,0.17610492,-0.4555108,-0.07930057,0.00519768,-0.27747548,0.20956783,-0.33802578,0.07460002,0.8779185,-0.29340187,0.39376706,-0.6102035,-0.42261544,-0.76769865,-0.42770398,0.38884857,0.2317815,0.005668199,-0.6728313,-0.02954746,-0.03360861,-0.2576497,-0.1204459,-0.3387678,0.52024543,0.1344643,0.13586353,-0.044869944,-1.0381173,0.15123558,0.029630836,-0.05436116,-0.5216558,0.45278436,-0.06586985,0.77176934,0.10941192,0.04808288,0.39558786,-0.49197966,0.08033741,-0.2657732,-0.07446591,-0.734165,0.038720965 +666,0.2629005,-0.22013369,-0.5764572,-0.0078095975,-0.3591549,0.017774425,-0.19700465,0.22860903,0.16991363,-0.16292867,-0.34826076,-0.21037824,0.1673688,0.66633797,-0.045814708,-0.48491457,-0.19615108,0.20633742,-0.8168775,0.4612593,-0.5350321,0.18436728,0.17781082,0.37320182,0.19952613,0.35107648,0.14799601,-0.060209136,-0.27320293,0.09569605,-0.32067007,0.1560439,-0.35581633,-0.049576804,-0.13162936,-0.3332818,-0.07865823,-0.47926566,-0.32034442,-0.6553307,0.24555302,-1.016288,0.53502667,-0.04125182,-0.022270491,-0.00387079,0.26286158,0.45469368,-0.3852409,-0.12722835,0.12640946,-0.34662464,-0.17427725,-0.37570316,-0.21166399,-0.1337726,-0.4810756,0.0051009655,-0.50466657,-0.36512983,-0.19132668,0.18315665,-0.2601559,0.11304795,-0.1647949,0.31882662,-0.40128094,0.124906436,0.3676926,-0.29152828,0.21758395,-0.47161502,0.07378204,-0.018930487,0.52608466,-0.1801599,-0.18495134,0.388405,0.32103473,0.33531216,0.09115697,-0.16360706,-0.353303,-0.14325133,0.21157616,0.48486054,-0.10779591,-0.25879398,-0.11983084,0.1722183,0.1911644,0.4791106,0.08659852,-0.19949704,-0.12539221,-0.27331412,0.06103049,0.25005654,0.4735195,-0.2685153,-0.47472033,0.2873469,0.7293715,0.32475904,-0.15329406,-0.20179272,-0.0034976625,-0.65865314,-0.18834434,0.11699825,0.04962725,0.5014519,-0.10286586,0.20588621,0.7943877,0.014173632,0.020846037,0.010801231,-0.051380213,-0.24789491,-0.2240218,-0.008396699,0.061093703,-0.34656063,0.102946386,-0.11337696,0.6017325,0.14752573,-0.704367,0.40238836,-0.7370117,0.20455647,-0.06457787,0.5629445,0.4824632,0.53221107,0.29431024,0.75856876,-0.29582956,0.3208659,-0.15279748,-0.47065833,0.07484532,-0.32934064,0.10057001,-0.57743394,0.02040901,-0.25124705,-0.1116406,0.15691032,0.24330561,-0.43383932,0.085577235,0.16881433,0.8985387,-0.35693997,-0.042587735,0.7994792,0.99679524,1.0620462,-0.033229437,1.2496244,0.21297964,-0.26173285,0.14150406,-0.37615693,-0.785493,0.22020473,0.3658783,0.04477168,0.31179953,-0.10354888,-0.105565615,0.33216128,-0.35291627,0.097639374,0.044503193,0.054500956,0.059571907,0.058151565,-0.53054965,-0.26063767,-0.1540435,-0.13079652,0.1451623,0.2259873,-0.12528878,0.6465578,-0.2048401,1.6933672,-0.035977755,0.19342111,0.1533375,0.50393003,0.14864923,-0.04870985,-0.29405248,0.23273185,0.40145335,-0.0040103015,-0.55405253,0.21814038,-0.27116185,-0.44938147,-0.16764188,-0.475874,-0.12690142,0.1323021,-0.39136806,-0.24611689,-0.0953002,-0.3274919,0.49858445,-2.8358583,-0.14542365,-0.062575765,0.36924106,-0.36229923,-0.2101209,-0.116798565,-0.4374474,0.35258147,0.17465559,0.54250395,-0.58862364,0.5154666,0.35975516,-0.58013827,-0.27279478,-0.6774186,-0.07046465,0.0998911,0.40626892,-0.036854077,0.0107389325,-0.021157457,-0.047716003,0.5942227,-0.18751372,-0.02137136,0.56241345,0.2688009,0.20472646,0.4428444,-0.05367369,0.6140412,-0.5377836,-0.22201443,0.31265008,-0.19503729,0.4479888,-0.11930021,0.14622745,0.5005401,-0.5864707,-0.8813753,-0.6973556,-0.28146845,1.0731617,-0.33057326,-0.46353757,0.35700193,-0.459226,-0.041894633,-0.039741013,0.5394361,0.037082996,0.09419023,-0.6580962,0.15067452,-0.041007422,0.30684128,0.042575654,-0.19328204,-0.38298142,0.6880487,-0.03368,0.5313795,0.39658484,0.3031572,-0.08683909,-0.37159377,0.14890946,0.5408569,0.16580948,-0.074055955,-0.08292045,-0.38262716,-0.055459864,-0.33323604,0.07481989,0.46344164,0.54175246,-0.037383575,0.1547344,0.27537155,-0.026873311,0.088173345,-0.16988891,-0.10652509,-0.027989874,-0.0058140205,0.4516993,0.9041738,-0.01710695,0.5861167,-0.24762592,0.4617367,0.002554866,-0.6218309,0.73180616,0.4724126,-0.10541093,-0.08860164,0.5787615,0.42207256,-0.47749278,0.42960614,-0.5273953,-0.24944547,0.5682984,-0.22903267,-0.48289296,0.2128124,-0.17299901,0.12543295,-0.88823706,0.22288114,-0.3350531,-0.48520038,-0.36357978,0.06552524,-3.159784,0.24194978,-0.33352783,-0.16966096,-0.20920083,-0.099402025,0.061476514,-0.6015471,-0.65609604,0.13789994,0.20885079,0.673912,-0.08613717,0.16271646,-0.23350818,-0.12363224,-0.18865189,0.10799274,0.15416299,0.34779012,-0.30344674,-0.38490093,3.870978e-05,-0.10561847,-0.62677896,0.21278015,-0.65013814,-0.35957998,-0.14103189,-0.45379162,-0.2469776,0.60937154,-0.30139235,0.012317951,-0.26149598,0.05696708,-0.1699784,0.23632163,0.10638566,0.2704975,0.28528732,-0.057268612,0.16192175,-0.2007615,0.41493437,-0.11382769,0.3090332,0.17789914,0.011078005,0.2674454,0.37473628,0.8462404,-0.30410576,0.8845042,0.45942947,-0.0073168734,0.19874305,-0.42055976,-0.25687456,-0.39882606,-0.20440179,0.18866092,-0.35259786,-0.6761144,0.0009299299,-0.23384324,-0.81656045,0.6413322,0.054706845,0.30401567,0.043294862,0.11953187,0.5802393,-0.3317354,-0.14976908,-0.1958186,-0.14024194,-0.6412541,-0.21773386,-0.53297174,-0.6928497,-0.12960184,1.1600568,-0.3216264,0.1913779,-0.024603102,-0.56626284,-0.08784146,0.21885978,-0.0029566241,0.4446783,0.34701774,-0.1634902,-0.7562656,0.46341148,-0.0017829514,-0.18935378,-0.5780195,0.23122893,0.68527114,-0.703859,0.53611684,0.2555701,-0.03323448,-0.16234162,-0.46360695,-0.24794659,-0.17381953,-0.13359858,0.3254802,0.20732531,-0.6154565,0.41943735,0.44056892,-0.35138816,-0.82072246,0.17152342,-0.07312763,-0.350647,0.1284391,0.2167585,-0.030597141,-0.09699071,-0.16450475,0.079787925,-0.34490675,0.31206197,0.24291895,0.10988403,0.036672648,-0.20020787,-0.2745388,-0.6365362,0.17513393,-0.47452185,-0.06446698,0.50191903,0.14632775,0.042282626,0.11284005,0.05364378,0.3790506,-0.3078559,0.095477946,-0.058989994,-0.40676388,0.09654401,0.34092653,0.34520566,-0.6203254,0.58235353,0.066228375,-0.31216648,0.059361037,0.034531076,0.49618956,0.05721935,0.4366739,-0.12341499,-0.280053,0.23539136,0.67496085,0.06022525,0.32486233,0.002056585,-0.010865035,0.3742377,-0.036340214,0.18528023,0.084665045,-0.48163652,0.19560528,-0.20499882,0.2093091,0.41681874,0.32540628,0.3898282,0.094312154,-0.16106609,-0.02270203,0.10550663,0.04510607,-1.072583,0.5221131,0.29333627,0.8597419,0.3727546,0.23851469,-0.20477101,0.8188716,-0.33582157,0.08184223,0.36123085,-0.08289312,-0.62654525,0.68642485,-0.8637342,0.5731959,0.010872965,-0.28081864,0.08854621,0.07189798,0.26059076,0.8179854,-0.24599963,0.011964379,-0.015224587,-0.13838533,-0.09485482,-0.47983173,-0.16141836,-0.5980271,-0.40080434,0.7425586,0.32843745,0.49064234,-0.11313444,-0.16275968,0.15822102,-0.0029351986,0.37992364,0.00037490405,0.23438302,0.11174165,-0.5861163,-0.16459234,0.534479,-0.11468681,0.38413593,-0.23349074,-0.2951734,0.10047965,-0.3454471,-0.12658288,-0.10711752,-0.5275001,0.22126426,-0.29889774,-0.6053296,0.29484084,-0.20672177,0.26109955,0.22187597,-0.021884646,-0.2311643,0.48423025,-0.16564457,1.0651821,0.13270403,-0.15227751,-0.2229175,0.2182853,0.23365505,-0.2542129,0.17347418,-0.21318604,-0.070106365,-0.36676466,0.5962502,-0.015322043,-0.53948617,0.22021466,-0.15867464,-0.040959734,0.5912369,-0.03199384,-0.15226337,-0.08161619,-0.20066026,-0.53056574,-0.11549095,-0.17048961,0.22197247,0.38283777,0.012122189,-0.09955173,-0.12456782,-0.021310082,0.5629461,-0.097673945,0.5971783,0.089868896,-0.0131148975,-0.23281449,0.02971823,0.15815929,0.45951456,0.14282776,-0.10847828,-0.4332557,-0.35225853,-0.26645908,0.19849294,-0.06426447,0.22743592,0.10565739,-0.20419714,0.7752993,-0.03252479,1.1848874,0.074647576,-0.23666614,0.19466083,0.3062704,0.012946314,-0.024681266,-0.4103561,0.85121655,0.53213066,-0.027814064,-0.059900127,-0.41675887,-0.042514067,0.33083308,-0.3150205,0.011724248,-0.010223348,-0.4374253,-0.3480155,0.18704213,0.16703738,0.32093576,-0.09490608,0.17311667,0.01673327,0.13932331,0.22201793,-0.39800078,-0.3251015,0.39873376,0.19608098,-0.08145202,0.13939567,-0.49646458,0.4854892,-0.50987685,0.19527976,-0.38891122,-0.038729813,-0.1656014,-0.36514333,0.18827067,0.058731403,0.29475725,-0.21496345,-0.30382088,-0.13777488,0.512325,0.2112669,0.13600987,0.6575723,-0.23355675,0.049174257,0.09649101,0.44266608,0.9388015,-0.52465785,0.008633483,0.27727434,-0.267127,-0.53995794,0.625515,-0.23620056,-0.20522751,-0.06363869,-0.28002626,-0.55728287,0.23826867,0.2554503,-0.015403528,-0.005164231,-0.50617,-0.10002662,0.18503758,-0.34603706,-0.2826305,-0.44383007,0.3148584,0.61442447,-0.074905984,-0.36548057,0.25772756,0.2161304,-0.21146514,-0.20750782,0.11094312,-0.19051829,0.10874233,-0.07108449,-0.31049544,-0.14984328,0.22717395,-0.34562382,0.04833583,0.021322517,-0.33162168,0.21074845,-0.22678415,-0.022701101,0.9146999,-0.40624985,-0.13435473,-0.531572,-0.51333183,-0.9457257,-0.46264103,0.37223566,0.04821729,-0.025343554,-0.5184399,0.11055161,0.00424132,-0.303247,0.055768803,-0.46028596,0.36260134,0.047960263,0.32461932,-0.3396301,-0.7456993,0.27494937,0.08310093,-0.013612454,-0.49255636,0.5293638,-0.019079057,0.7990402,-0.00024975606,-0.05220103,0.16671811,-0.34334758,0.15546516,-0.27929622,-0.20710865,-0.74039304,-0.05578838 +667,0.4649627,-0.14424019,-0.25574306,-0.19279346,-0.065725416,0.18122222,-0.2668769,0.25321755,-0.036386646,-0.7151142,-0.041864205,-0.13781068,-0.14317635,0.26783144,-0.29609507,-0.59104276,0.10097025,-0.045217913,-0.42627743,0.3854821,-0.5281813,0.30421117,0.017417066,0.2263483,-0.04743313,0.24251582,0.32936102,-0.1825977,-0.09523523,-0.31704083,-0.013117338,-0.064669736,-0.69609743,0.29137945,-0.18529285,-0.095159486,0.15729895,-0.26685682,-0.39791265,-0.75667036,0.1283816,-0.8272438,0.57874554,-0.01122247,-0.24123478,0.27892196,0.18819669,0.22264093,-0.056279443,0.16841434,0.25577423,-0.20012568,-0.08716108,-0.14524387,-0.19208299,-0.569501,-0.4890656,0.043091904,-0.5463828,-0.18906316,-0.2847411,0.1601159,-0.19401836,-0.053481363,-0.15198961,0.23888204,-0.38681647,-0.2852856,0.06712677,-0.053878743,0.5697245,-0.5508265,-0.17230506,-0.035043094,0.23258524,-0.23147479,0.011514981,0.33309624,0.23219971,0.6119149,0.036883626,-0.21552975,-0.105095714,-0.03914128,0.29003412,0.5359907,-0.12960164,-0.41808748,-0.15321355,-0.06656252,0.31924435,0.24797407,0.054389365,-0.2812173,-0.033617888,0.10502488,-0.24764125,0.3095419,0.49642518,-0.33810297,-0.18280992,0.3032878,0.4653753,0.094425045,0.04855164,0.12525222,-0.11892463,-0.39191768,-0.20281631,0.33303195,-0.23685022,0.48693216,-0.16588996,0.08833159,0.6324159,-0.16493997,0.16426642,0.04957718,-0.14481966,-0.017471392,0.0051325005,-0.31373823,0.25553703,-0.6174141,-0.01962661,-0.36528063,0.6595953,0.15630269,-0.86024296,0.33078164,-0.31193706,0.019074548,-0.02306795,0.54726195,0.5141691,0.52475965,0.021868484,0.6418123,-0.628532,0.04759663,-0.039789166,-0.26314667,0.31888375,-0.114737555,-0.09376058,-0.42522082,-0.13117878,0.12749588,-0.053455185,-0.32267913,0.37547177,-0.432599,0.04460164,0.18754801,0.76823515,-0.29871145,0.11318286,0.49159113,1.145695,0.88468176,0.18025216,1.4033867,0.18506432,-0.04185612,-0.0758856,-0.09853532,-0.5343253,0.31922206,0.49182194,0.04052113,0.2665242,0.07815136,-0.016210798,0.29211435,-0.46350718,0.027551524,-0.17800286,0.47437117,-0.18974775,-0.19104144,-0.3538293,-0.1339715,0.066762276,-0.05782569,0.051012915,0.118738666,-0.12434735,0.26217613,0.34386343,1.112286,-0.13839151,0.08727031,0.044197142,0.45861593,0.17342472,0.03896831,-0.023718016,0.11334219,0.32041678,0.14912865,-0.47745374,-0.10578234,-0.13451792,-0.5176428,-0.2571871,-0.22279303,0.10260472,-0.19926304,-0.3752077,-0.19833408,0.097279355,-0.47959492,0.61203617,-2.5302238,-0.07966073,-0.2051842,0.3362706,-0.26703793,-0.3554366,-0.09930303,-0.29909566,0.7443642,0.35165003,0.29991224,-0.60192937,0.31397775,0.5149652,-0.3589669,-0.13483588,-0.62801427,-0.2240295,-0.12850122,0.2751405,0.20417304,-0.24040836,-0.027053293,0.3533239,0.45113793,-0.017818226,0.2372516,0.06301982,0.24994276,0.12959051,0.5375132,0.13211018,0.37882206,-0.12189903,-0.11078999,0.35835633,-0.33238176,0.17581314,-0.15009445,0.2461276,0.23125155,-0.34203035,-0.6914409,-0.7483648,-0.7464342,1.2454839,-0.11111555,-0.48091182,0.24435069,0.3582013,-0.36284712,0.014341005,0.16357447,-0.21818368,0.29234546,-0.83993685,-0.10911266,-0.0792461,0.29679716,0.017807515,0.18829006,-0.6982037,0.8250196,-0.19429229,0.30394623,0.35663348,0.2535269,-0.26331937,-0.49197495,-0.027745781,1.0877397,0.5694672,0.09058328,-0.074562915,-0.20386797,-0.2192783,-0.12367658,0.13435854,0.49600163,0.86319906,0.06817875,-0.009133068,0.15117815,-0.16881807,0.084400795,0.037370212,-0.49253097,-0.020751726,0.043136034,0.7195106,0.38005018,-0.026888061,0.24739692,-0.26918513,0.47175634,-0.34159136,-0.33212483,0.39845422,0.8922218,-0.055456802,-0.1255198,0.5642052,0.50862896,-0.07857503,0.4996667,-0.8211145,-0.47357798,0.46097654,-0.09260397,-0.53516835,0.10901858,-0.4478099,0.19071595,-1.0302285,0.6354714,-0.4693903,-0.48879787,-0.61669475,-0.2578694,-3.5280344,0.041628923,-0.13436057,-0.16258882,-0.1074427,-0.11161261,0.4451018,-0.5513131,-0.55820554,0.07868358,-0.124301985,0.566307,0.08696244,-0.027328348,-0.2690128,-0.24018316,-0.39629346,0.29968372,0.1345347,0.15950125,-0.017757716,-0.30028203,0.05154192,-0.24745026,-0.35810485,0.049952473,-0.47585753,-0.603678,-0.31004646,-0.3474323,-0.36919078,0.6668781,-0.51768744,-0.04662814,-0.2780428,-0.08026687,-0.1756913,0.44909582,0.20349385,0.22573577,0.02894926,-0.098829255,-0.11933194,-0.31248277,0.2809691,0.28165254,0.20850739,0.588355,-0.42345726,-0.011977946,0.52852136,0.56134677,-0.16374734,0.7549379,0.2675356,-0.21814175,0.35378945,-0.39895618,-0.33144596,-0.65848696,-0.44453964,0.000459522,-0.28330448,-0.38531414,-0.2071466,-0.35982195,-0.5592242,0.3878668,-0.077930085,0.1201288,-0.22804348,0.09420769,0.15283845,-0.1199627,-0.14873974,-0.22397813,-0.12625399,-0.40128735,-0.45902947,-0.6821793,-0.49838716,-0.07800952,0.94191974,0.030974708,-0.052430373,0.13344349,-0.054341864,0.27625197,-0.07094897,-0.008442541,-0.03856223,0.33740103,0.117588736,-0.80340856,0.5446081,0.098671265,-0.14436838,-0.6312452,0.072583295,0.7964079,-0.5766506,0.49556363,0.52537656,0.2797666,0.017320672,-0.62136936,-0.19795412,-0.05005571,-0.23115996,0.52178603,-0.0063985665,-0.66348964,0.584026,0.30359226,-0.24473748,-0.61872864,0.52920234,0.16664305,0.008313139,0.17201376,0.42574462,-0.15976349,0.15844259,-0.16456701,0.35421354,-0.55133057,0.30599728,0.5347469,0.17475878,0.48711535,-0.11329909,-0.101583034,-0.65352225,-0.14036521,-0.36003432,-0.2461637,0.033699498,-0.07461694,-0.14447239,0.24455729,0.13017064,0.5124061,-0.37881812,0.2238722,0.040235937,-0.18688576,0.33736488,0.5229272,0.43741494,-0.23840077,0.52071404,0.052155767,0.006414843,-0.40289542,-0.075134024,0.59207404,0.20900351,0.028895969,-0.016705235,-0.029505014,0.25933975,0.7981721,0.225595,0.49709672,0.20276783,-0.23368083,0.2800799,0.10967987,0.2262142,0.14045042,-0.4138924,-0.031249285,0.09529763,0.01910888,0.3559604,0.052962855,0.2517094,-0.15679057,-0.08320268,-0.037942667,0.25042737,-0.17437837,-1.2601397,0.27222475,0.090425104,0.58918995,0.5566126,0.020520309,0.25582737,0.5747213,-0.29946336,0.004523017,0.17158382,0.13928379,-0.47568384,0.5713944,-0.7047082,0.1463442,0.028545309,0.030355254,-0.073878236,-0.05490638,0.3951298,0.92698413,-0.12412433,0.20018095,-0.21966822,-0.13507317,0.2291728,-0.40987903,0.26038292,-0.08503728,-0.32562825,0.69479,0.34709322,0.37605414,-0.18816496,-0.052167878,-0.017555548,-0.24512811,0.4279761,-0.030059163,0.065652154,-0.10891635,-0.49953744,-0.2584443,0.55278534,0.2354215,0.048739847,0.17044087,-0.24426048,0.12459438,-0.07254051,0.04036902,0.0585796,-0.6552284,-0.09894629,-0.36815608,-0.11854222,0.30840072,-0.34163418,0.22474185,0.12156944,0.016431984,-0.048110053,-0.06606674,0.2757206,0.5537519,0.05685216,-0.29244167,-0.31593296,0.027407646,0.136651,-0.3001765,-0.0057157637,-0.11747643,0.07871817,-0.64040637,0.28942338,-0.17641382,-0.25196096,0.29285082,-0.22787406,-0.110826895,0.46496072,-0.25698367,-0.19526409,0.28212148,0.10329983,-0.099079214,-0.22383802,-0.13838777,0.14884433,0.04556621,0.053773895,-0.033058524,-0.097487584,-0.179906,0.28957322,0.3018751,0.32225507,0.43129045,0.017609786,-0.55282694,-0.018661553,-0.12983966,0.40287367,0.095439635,0.13148984,-0.18378903,-0.5651054,-0.22548793,0.08197553,-0.16697706,0.019595511,0.035937462,-0.2969361,0.7012299,-0.04569117,1.1324977,0.10155045,-0.351666,-0.033359934,0.5997686,-0.2097854,0.07564224,-0.43785447,0.9362001,0.5775959,-0.07485842,-0.07830074,-0.3978346,-0.17674579,0.18411891,-0.24648166,-0.12630521,-0.17321748,-0.73063976,-0.45356998,0.28073385,0.35368901,-0.18866633,-0.06551294,-0.13064757,0.29587686,0.18040167,0.57267416,-0.56775975,-0.05651772,0.44953212,0.14270899,0.08211745,0.13459876,-0.38232443,0.34173617,-0.602814,0.012782192,-0.3147791,0.020584222,-0.12694108,-0.37780446,0.270541,-0.013655281,0.36237112,-0.24771783,-0.4226481,0.04229511,0.5937184,0.017652897,0.19843467,0.67116207,-0.10766955,0.1388352,0.082432814,0.36787796,1.2630498,-0.25322905,0.058603603,0.37186086,-0.39033574,-0.54224366,0.15813152,-0.4912628,0.12645142,-0.18525761,-0.55991733,-0.36058342,0.24540864,0.120830104,0.004619167,0.0014853278,-0.5428472,-0.20835829,0.44125786,-0.31944245,-0.2789856,-0.20030124,0.16238222,0.58902514,-0.3873711,-0.2461618,-0.04520176,0.34533313,-0.49017048,-0.6415783,-0.05080839,-0.14923069,0.38297608,0.23923911,-0.29272652,0.07678752,0.1249466,-0.3450819,0.15355307,0.3073212,-0.40386805,-0.06854298,-0.2550248,0.13826014,0.5430645,-0.1145661,-0.1757277,-0.66326725,-0.4528399,-0.908785,-0.21949962,0.3391856,0.24192613,-0.041614167,-0.48899034,-0.0044507016,-0.31086364,0.18139632,0.07150894,-0.33254057,0.2770704,0.14843103,0.5663688,-0.16906661,-0.5924099,0.10957824,0.14186579,0.020769298,-0.5050946,0.5873665,-0.13553332,0.6723849,0.105190806,0.022994395,-0.032006975,-0.74646604,0.27931362,-0.12812008,-0.057583846,-0.7869147,0.17000024 +668,0.32282168,0.108474165,-0.54485226,-0.0934892,-0.33070508,0.2910417,-0.09881132,0.3979107,0.040471133,-0.36293423,-0.14521484,0.0013975183,-0.061587743,0.21683568,-0.29382852,-0.66457206,0.02754519,0.100612305,-0.38289502,0.6234613,-0.22867736,0.37806046,-0.15968649,0.32307,0.050633755,0.26718,0.041903015,-0.08254631,-0.23238163,-0.37896717,-0.030589644,0.4801157,-0.5404757,0.26388136,-0.27416342,-0.29190394,0.06780182,-0.16587988,-0.29538605,-0.6121867,0.14573464,-0.69727963,0.4657318,0.013593872,-0.32124764,0.39322928,0.24899785,0.25823665,-0.114219524,-0.18299443,0.09020432,-0.13552436,-0.1394349,-0.117497,-0.3081597,-0.6544,-0.49148378,0.013289111,-0.6953995,-0.12136351,-0.34546646,0.18660246,-0.2814791,-0.23444726,-0.05123951,0.31688443,-0.42655212,0.099300414,0.10041436,-0.06742149,0.014879113,-0.59435403,-0.25043735,-0.02033062,0.3072629,-0.14274889,0.0023160523,0.39527148,0.21167092,0.26753533,-0.097410046,-0.18394502,-0.3166128,-0.23100267,0.28919566,0.42011076,-0.25358135,-0.5452276,-0.11854239,0.003862071,0.3354009,0.08372211,0.1850281,0.071897425,-0.1069824,-0.12815683,-0.24198292,0.49512473,0.47821978,-0.27084717,-0.13980049,0.41402608,0.41432172,0.32886487,-0.3292559,-0.015215083,-0.12896243,-0.34618908,-0.086941704,0.08512562,-0.18269888,0.42248756,-0.14791963,0.11830533,0.58201027,-0.15413791,0.17388102,0.34059444,0.07113203,0.05935324,-0.10054054,-0.13341513,0.20179921,-0.45441234,0.089804046,-0.1581563,0.67146707,0.040902145,-0.6460806,0.37053508,-0.46280512,0.042348266,0.013196787,0.48530683,0.53890324,0.4201165,0.15921356,0.5167259,-0.1584617,0.07015799,0.07451042,-0.18733619,0.08498099,-0.24628887,-0.12295297,-0.59141374,0.10303561,0.06605264,0.005872764,0.08054771,0.29017815,-0.6017794,-0.18330842,0.33812103,0.87381285,-0.26904842,-0.22691904,0.6885716,1.2127756,0.81244785,-0.09706949,0.9457653,0.034769274,-0.15185013,-0.111396566,-0.24657494,-0.50878537,0.21781786,0.278284,-0.3093437,0.41777536,0.10013746,-0.050287113,0.26721665,-0.36996529,-0.050622594,-0.11474905,0.15838291,0.087468654,-0.13596572,-0.3811804,-0.12137135,0.067316815,-0.18859625,0.27464804,0.37371552,-0.12318801,0.46044046,0.111515015,1.0184022,0.02003903,0.015853997,0.031794123,0.5570357,0.23682234,0.035393763,0.09431769,0.43157122,0.2868419,0.0825973,-0.34878966,0.1991703,-0.32312626,-0.46255314,-0.097253315,-0.43072417,-0.31744924,0.0013684749,-0.28715807,-0.146116,-0.06773005,-0.11681732,0.48047486,-2.9712784,-0.054872133,-0.16177578,0.18117975,-0.17765903,-0.21481194,-0.107134014,-0.39350414,0.4169315,0.19933671,0.43110648,-0.45363697,0.4680945,0.51038384,-0.56474817,-0.12404572,-0.4828092,-0.21707802,0.032510586,0.5940843,0.05382734,0.04431146,0.15963934,0.14752193,0.35674942,0.0014484386,0.22848566,0.20572893,0.39204535,-0.12816413,0.3321663,0.1315084,0.55886775,-0.15340878,-0.12039966,0.196231,-0.4033988,0.571822,-0.27533028,0.14374845,0.43620464,-0.21973476,-0.87284905,-0.46730775,-0.18086027,1.2173538,-0.19500937,-0.47103876,0.012580617,-0.14873947,-0.22787127,-0.17409293,0.28031817,-0.035892416,0.0016931216,-0.71160924,0.057707336,-0.14900179,0.14977413,-0.06462434,0.03463949,-0.37686148,0.5889405,-0.033247408,0.34551278,0.11817579,0.22460026,-0.277564,-0.37689802,-0.098219365,0.82249886,0.52365667,0.055011995,-0.2378436,-0.2766574,-0.23727447,-0.078040965,0.05516185,0.6966893,0.41033,0.003248759,0.013541034,0.27904892,-0.060268793,0.14891905,-0.19698845,-0.30706748,-0.10832148,-0.013803627,0.515725,0.50920224,-0.23807886,0.5618993,-0.045438286,0.30352753,-0.17677085,-0.38037783,0.45985258,0.90552074,-0.12468453,-0.20926319,0.6270889,0.56605786,-0.27024323,0.3703066,-0.6121134,-0.4189094,0.69249207,-0.14916427,-0.36980656,0.2158342,-0.25553194,0.0476325,-0.8876886,0.41188267,-0.42609066,-0.53316426,-0.5799014,-0.0831803,-2.6425896,0.07372572,-0.24036461,0.0052558375,-0.32473907,-0.12191305,0.14585875,-0.5970501,-0.53458875,0.11505285,0.17193203,0.5678722,-0.216763,0.16102369,-0.18191151,-0.47459304,-0.19461554,0.3496873,0.14121976,0.30357963,-0.27661622,-0.40051118,-0.049540076,-0.17950727,-0.24175905,0.024557492,-0.49542814,-0.4538741,-0.0034240887,-0.37279186,0.07111192,0.70997316,-0.44834214,-0.08931887,-0.25866416,0.19161744,-0.0108864205,0.06708256,0.117790684,0.13700776,-0.04110245,-0.057204295,0.22052614,-0.29093304,0.41025174,0.09464538,0.5596024,0.41780165,-0.007268536,0.1589485,0.60758364,0.42368242,0.013794208,0.7891607,0.19932102,-0.21319045,0.44760615,-0.24814537,-0.33578598,-0.6610983,-0.27641466,0.0102031315,-0.30264938,-0.5072228,-0.114443555,-0.3851659,-0.7634642,0.51802707,-0.0013631076,0.12918977,-0.31110284,0.4066135,0.4786038,-0.086531825,-0.020784238,0.029813528,-0.10707534,-0.3771387,-0.28964993,-0.6285306,-0.25392944,-0.058747362,0.8001849,-0.32658926,-0.029616702,0.084519535,-0.21255408,-0.00016220212,0.1440591,0.23426558,-0.04501039,0.40625885,-0.00064970256,-0.64251876,0.545921,-0.25093284,-0.099367514,-0.48104948,0.0901025,0.5808199,-0.6580051,0.4291343,0.5810612,-0.0020472289,-0.07715461,-0.5073511,0.0367255,-0.11253546,-0.07118395,0.28234985,0.15982819,-0.69346035,0.4726492,0.17585628,-0.2919526,-0.5637458,0.6727837,-0.099208914,-0.14409202,-0.021830281,0.33463976,0.1644697,-0.06133263,-0.13182563,0.28103384,-0.3685016,0.2355542,0.20374122,-0.09444893,0.30930945,-0.106676914,-0.19733284,-0.74081063,0.09035245,-0.48942634,-0.4126339,0.28019303,0.044179853,0.022325043,0.18195404,0.08636184,0.3109275,-0.4366017,0.13211766,-0.015930805,-0.25053912,0.42194924,0.417359,0.58785313,-0.43564478,0.5337731,0.1639298,-0.03658596,0.22632653,0.236849,0.45455125,-0.014206942,0.4302135,0.22485924,-0.09839131,0.14501095,0.8294596,0.22833599,0.48111248,0.06974947,-0.17079201,0.21110773,-0.12595479,0.15323453,-0.025564544,-0.49920905,-0.1194218,-0.17449076,0.09598883,0.44060785,0.1229554,0.25917688,-0.015110815,-0.19040324,0.028831655,0.23374073,0.1679745,-1.1947474,0.40815285,0.2686342,0.7735558,0.23448,0.18950893,0.1447783,0.61610454,-0.25198388,-0.01234924,0.4106642,0.14821647,-0.40156573,0.55110127,-0.58957255,0.53200525,0.015962517,0.03989807,0.09081988,-0.16071059,0.33393624,0.953818,-0.306079,-0.015325018,0.092536,-0.39052826,0.06751089,-0.2754864,0.22524881,-0.32830694,-0.11438746,0.61718684,0.46453685,0.26681396,-0.1726266,0.06222099,0.145047,-0.10606457,0.27477992,0.026248941,0.16475934,-0.23620237,-0.4679259,-0.212864,0.58143216,-0.16156048,0.11652961,0.09592186,-0.23183292,0.3161355,-0.05637263,0.08127256,-0.0343043,-0.52433974,0.06929403,-0.23823072,-0.6332291,0.54345477,-0.19970451,0.2954989,0.17790708,0.012924107,-0.21104339,0.2746253,0.081383355,0.43812725,-0.033594802,-0.2270691,-0.3022499,-0.070321865,0.08913716,-0.21860217,-0.13212228,-0.18353195,0.31930718,-0.41734186,0.31464294,-0.35291258,-0.2898692,-0.33779982,-0.23981507,-0.006575678,0.35681438,0.061426003,-0.06642036,-0.05454973,-0.03122689,-0.20250443,-0.085590534,-0.1390503,0.21761574,0.21571915,-0.1669946,-0.24489127,-0.25385374,-0.10356067,0.20773314,-0.17400257,0.30057663,0.43185717,0.057600737,-0.42821473,-0.10966582,0.17144705,0.46225947,-0.14904281,0.057508014,-0.15639304,-0.32986137,-0.36555448,0.43075627,-0.17456418,0.19676328,0.24933057,-0.25645834,0.76569974,-0.16353913,1.07732,-0.038257916,-0.3678365,0.15385096,0.60073245,0.026435941,0.062710285,-0.26513553,1.0179361,0.45402405,-0.044664316,-0.1305106,-0.4866981,0.11203162,0.06855282,-0.21486136,-0.22963889,-0.0121485405,-0.50860643,-0.16559677,0.2625829,0.26111534,0.21627945,-0.11149402,0.013855829,0.076600745,0.18503074,0.31277493,-0.7184637,-0.30206698,0.36835,0.16769746,-0.14463663,0.048657212,-0.49529627,0.38449237,-0.5839213,0.059207097,-0.24614629,-0.023852384,-0.33696058,-0.32092437,0.17810918,-0.09496787,0.32388645,-0.39510432,-0.37320688,-0.18653244,0.24307282,0.15611893,0.13363428,0.44908416,-0.25086373,0.08760038,0.07393177,0.53232163,0.91569626,-0.16540848,-0.23888272,0.22265793,-0.40542543,-0.5405191,0.0030404688,-0.6555421,0.2949485,-0.13380317,-0.28581557,-0.56402355,0.24242176,0.13422857,0.031193098,0.06352346,-0.647523,-0.21201095,0.025108445,-0.373935,-0.24171498,-0.18950352,-0.05035226,0.695172,-0.28837928,-0.25392294,-0.10246798,0.28513038,-0.13405564,-0.6022963,0.097832195,-0.22399664,0.3692028,0.06780192,-0.3758252,-0.10995126,0.09653353,-0.34065017,0.33715293,0.5065319,-0.3018593,-0.02494781,-0.2622008,0.25767183,0.5895464,-0.21119958,0.16583541,-0.3934638,-0.48653373,-0.7953247,-0.42159298,0.1270837,0.2996783,-0.10828666,-0.65385145,0.037963066,-0.11621799,-0.16859147,-0.05659007,-0.479377,0.40293732,0.15049578,0.26183698,-0.1322694,-0.923482,0.14085229,-0.024466125,-0.08652816,-0.4927946,0.5360991,-0.27968127,0.98354214,0.07491244,0.046505746,0.089290716,-0.49266136,0.0753501,-0.19146945,-0.06670467,-0.541611,0.11642969 +669,0.43811274,-0.16113122,-0.4365334,-0.04572851,-0.110261016,0.11718805,-0.14043978,0.3401366,0.04547924,-0.6949714,-0.13212545,-0.117753044,-0.012949253,0.30651993,-0.20122957,-0.34022596,0.091119625,0.22347164,-0.56827086,0.50702244,-0.48359624,0.46263072,0.0896424,0.26366428,-0.01380183,0.37413606,-0.028485242,-0.19784032,-0.37484735,-0.20498766,-0.06330573,0.26175857,-0.5112939,0.20267403,-0.14818886,-0.33743665,0.01921445,-0.26763102,-0.29899248,-0.5225983,0.15808184,-0.825449,0.37952498,-0.123648286,-0.19101663,0.31952304,0.08363102,0.25728637,-0.2114699,0.16580105,0.27268493,0.09693565,-0.2530616,-0.26970676,-0.13535604,-0.37300164,-0.4885848,0.100770585,-0.44677347,-0.2278429,-0.17450903,0.10622798,-0.16238284,-0.044002306,-0.09161774,0.29447922,-0.32892153,0.15169215,0.0017085719,-0.155681,0.068169355,-0.64267254,-0.13523033,-0.069480345,0.4264209,-0.35166582,-0.032708876,0.2470332,0.28263196,0.43961215,-0.031201333,0.023684764,-0.44022992,-0.014121384,0.20650302,0.5887419,-0.24662545,-0.45988414,-0.03250333,-0.06075612,0.267667,-0.055208676,0.25975966,-0.33195278,-0.15191916,-0.16395937,-0.33095285,0.38340586,0.39005336,-0.32990643,-0.2881067,0.3444781,0.4271371,0.051766295,-0.21341906,0.013960838,-0.15373981,-0.40937003,-0.01884059,0.11254166,-0.1479797,0.4695497,-0.124151625,0.20706008,0.5305566,-0.30158237,0.1375936,0.23652568,-0.025168981,0.10313968,-0.064049415,-0.19223566,0.09818958,-0.3633612,-0.12257061,-0.19623621,0.52094436,0.16170251,-0.883561,0.2865174,-0.45730537,-0.03885958,-0.02781112,0.4039999,0.4913061,0.34693727,-0.026881555,0.5401779,-0.49932915,-0.009127055,-0.15865834,-0.29269642,0.13298723,-0.09368557,-0.13731728,-0.5037257,-0.0031749776,-0.025177747,-0.1382447,0.01804884,0.41009974,-0.62797177,-0.024215255,0.11922174,0.62773955,-0.4285891,-0.122945786,0.7240916,1.0159768,0.8100244,0.08274407,1.2837937,0.23203312,-0.20875752,0.12718333,-0.41592985,-0.5263699,0.32395005,0.26292428,-0.26514393,0.25912726,0.06715826,0.18058224,0.16213468,-0.27590948,0.10540637,-0.17839554,0.03165963,-0.055344913,-0.12733635,-0.2906011,-0.17064805,-0.038625214,-0.020944307,0.16899712,0.18383367,-0.2760655,0.09317355,0.09015048,1.5515099,0.019103944,0.10394396,-0.0050101555,0.22281218,0.18538909,-0.17906031,-0.15936604,0.37236354,0.2658696,0.09520952,-0.62092924,-0.01980587,-0.24647447,-0.5611397,-0.23884913,-0.18663403,-0.07493706,0.0104345335,-0.4882126,-0.17231046,0.04033613,-0.35935113,0.4466477,-2.5486794,-0.16377541,-0.03455681,0.50199515,-0.31960037,-0.43753186,-0.33673757,-0.3426377,0.33969504,0.18970105,0.5085138,-0.49459043,0.3898254,0.31929424,-0.4511293,-0.32969594,-0.5416579,-0.041435163,-0.12472325,0.26181152,0.011605539,0.017535422,0.2355304,0.0040515703,0.42460886,-0.18687657,0.036569096,0.3307688,0.36448595,0.31636623,0.55484766,0.13728476,0.59226954,-0.2389208,-0.17480986,0.36361626,-0.3836097,0.16698718,-0.058833275,0.164708,0.25498945,-0.5121821,-0.88817966,-0.75516266,-0.18828829,1.1919012,-0.0060919863,-0.41778415,0.12058829,-0.059788067,-0.45447105,-0.021443024,0.35000867,-0.05452622,-3.2948596e-05,-0.9551905,0.0075591677,-0.029937148,0.27492163,0.04430496,-0.03779778,-0.45487896,0.56507725,-0.04341804,0.4144867,0.2865439,0.19127712,-0.338655,-0.40541863,0.120511584,1.1220311,0.34314305,-0.005800686,-0.08242432,-0.24109383,-0.4215295,-0.02437192,0.09414104,0.40187687,0.54254025,0.05251464,-0.010639997,0.09010649,0.08278016,0.24754463,-0.1418456,-0.26986027,-0.22851232,0.023137586,0.5001944,0.36671185,-0.23529203,0.5906417,-0.19391671,0.19694936,-0.11242554,-0.40278944,0.480007,0.945054,-0.16290376,-0.31585222,0.5299075,0.3144706,-0.17376308,0.40931037,-0.57481825,-0.49182415,0.27145544,-0.33896452,-0.14005055,0.30876568,-0.21725686,0.17233346,-0.90148973,0.3056119,-0.45086488,-0.38618806,-0.3566484,-0.123230815,-2.6968334,0.22529784,-0.1445413,-0.16091633,-0.021832364,-0.2259186,0.16416374,-0.6174386,-0.47100827,0.040180944,-0.008926059,0.6018718,-0.06642676,0.15030468,-0.041338604,-0.30733538,-0.1022009,0.26905772,-0.08107466,0.4843156,0.16764177,-0.56647265,-0.0021925655,-0.23514684,-0.2903108,0.18123771,-0.6061449,-0.4844171,-0.11527423,-0.49595633,-0.3477952,0.69270104,-0.45171332,0.025662413,-0.17814317,-0.0920294,-0.082406305,0.2891033,-0.038759854,0.08809711,0.11235053,0.07616981,0.016957697,-0.18839668,0.26626703,0.19148628,0.2780326,0.50828266,-0.21827236,0.06882167,0.44368276,0.54860544,-0.16687116,0.68008566,0.53683704,-0.18159679,0.30485842,-0.37472656,-0.087400675,-0.5128728,-0.40026593,-0.09312398,-0.47344396,-0.5086085,-0.09390414,-0.3719017,-0.76327294,0.54447407,-0.05587104,-0.11975308,-0.06441065,0.42437455,0.3881008,-0.06838677,0.08640714,-0.24784403,-0.13215268,-0.42549235,-0.41284537,-0.56176895,-0.33147785,-0.06265847,1.0328449,-0.24224956,0.081609435,-0.0010830483,-0.17371762,0.062790774,0.02486276,0.0248186,0.1864943,0.37329802,-0.12466617,-0.5683344,0.425054,-0.20669106,-0.15265583,-0.26323986,0.24024704,0.6833766,-0.62176603,0.48627773,0.41450223,0.047112074,0.074152246,-0.37179136,-0.12195347,0.12283244,-0.35680518,0.29182014,0.13963978,-0.7510077,0.37946072,0.24769425,-0.2792661,-0.76121247,0.509696,0.16145328,-0.2911753,-0.15470569,0.36208317,0.17431918,0.05412933,-0.5404576,0.17960414,-0.4628098,0.33225006,0.24950425,-0.0736608,0.3871998,-0.33440334,-0.2430032,-0.7480609,-0.041528516,-0.22965407,-0.27660555,0.16865878,0.12581824,0.07924756,0.25320354,0.1612541,0.4028341,-0.46245617,0.031729065,-0.048314814,-0.08114467,0.18178459,0.27314675,0.42630932,-0.45885938,0.34788814,-0.009942191,-0.14337622,-0.13453443,0.032921463,0.5903614,0.09097302,0.047624532,0.13625863,-0.19687144,0.37210158,0.6965814,0.21954681,0.37428877,0.024888124,-0.32015395,0.09362449,0.06694683,0.20713006,-0.037206206,-0.45454976,0.025696678,0.06569309,0.2079192,0.4952669,0.14406754,0.26459107,-0.17256072,-0.28115737,0.054994125,0.2697688,0.08992241,-1.0530984,0.5076088,0.015021967,0.6658986,0.566571,-0.008076497,0.10873254,0.43809947,-0.324212,0.11661172,0.25740436,-0.20693152,-0.47725812,0.33281723,-0.499499,0.34720114,0.011435283,0.1342539,0.079911366,-0.14541745,0.4230216,0.9980665,-0.010309928,0.28811556,0.010229371,-0.26693416,0.093326345,-0.2898516,0.12649642,-0.3633726,-0.08494997,0.77150536,0.51228446,0.35396686,-0.07079581,0.024814382,0.18976043,-0.11895956,0.22515342,0.09497885,0.34579185,0.040756874,-0.61933595,0.016764581,0.6209195,-0.0023015738,0.05573221,0.18012328,-0.30372146,0.35635218,-0.16226153,-0.003474125,-0.07705455,-0.6549748,-0.21975414,-0.33126396,-0.10368776,0.22061452,-0.1790355,0.21608326,0.19778883,0.035415392,-0.16099481,0.40828842,0.27354935,0.593502,-0.01452692,-0.15397283,-0.2885146,0.22108372,0.20215736,-0.1920412,0.0659752,-0.14040732,0.015212859,-0.58385605,0.34217376,0.018385742,-0.17270438,0.011067867,-0.00054481626,0.09439675,0.46344608,-0.1341054,-0.13139598,0.16000311,0.035662033,-0.15170582,-0.13784015,-0.2154472,0.14505677,0.44547477,-0.06769505,-0.10879996,-0.030235102,-0.10345018,0.40797153,0.023500783,0.45462894,0.2625365,0.1604787,-0.33124948,0.07729893,0.27103838,0.38387516,0.007828818,0.122187935,-0.23286942,-0.3718112,-0.30544624,0.15263061,-0.11023682,0.12274443,0.106323294,-0.24406183,0.7032212,0.19480035,1.1957588,0.025208162,-0.2524651,0.19045602,0.28933483,0.06063957,0.10212765,-0.359022,1.1462734,0.5636313,0.08445173,-0.089442715,-0.33707884,-0.29351547,0.04303823,-0.29385707,-0.19915204,0.02375744,-0.5554171,-0.543546,0.20252533,0.2307446,-0.07255022,-0.13202791,0.16360155,0.20889182,0.06930296,0.17313473,-0.72392505,-0.3227477,0.20636247,0.36503968,-0.010813385,0.07119517,-0.4355821,0.4843885,-0.65247357,0.07521016,-0.10289525,0.13192482,-0.06393957,-0.20128967,0.1289284,0.18040405,0.29849234,-0.25684634,-0.49624267,-0.33062193,0.51340955,-0.16480921,0.040284373,0.58901256,-0.32463616,0.13904342,-0.0002870134,0.47305706,1.0199975,-0.15705822,0.048199926,0.47318098,-0.27318177,-0.5146314,0.17191733,-0.2403322,0.16276108,-0.10626149,-0.1890424,-0.43973836,0.2972608,0.14085382,0.10912951,-0.053733606,-0.41952282,-0.20720689,0.48335716,-0.31857798,-0.100119345,-0.19478798,0.14963461,0.6721562,-0.42775694,-0.38988656,0.098908305,0.1766685,-0.25196567,-0.50732845,-0.07312774,-0.36343843,0.27760166,0.24112256,-0.2057736,-0.16039911,0.114781454,-0.27394977,0.32245082,0.31819418,-0.18619642,0.084828146,-0.35465524,-0.012719868,0.7688631,-0.15562762,0.22616327,-0.4130213,-0.51226574,-0.87325805,-0.37234452,0.28161627,0.16752839,-0.091420054,-0.6261521,-0.010244949,-0.1878896,-0.25280714,0.0917141,-0.23785326,0.43170205,0.14814864,0.31022403,-0.285994,-0.9547773,0.17659007,0.17100157,-0.14826925,-0.56956685,0.48692444,0.032743085,0.88234043,0.10538031,-0.021024337,0.46041462,-0.60207015,-0.050128702,-0.23139346,0.012577559,-0.7074656,-0.018559847 +670,0.33746797,0.056697436,-0.4285644,-0.23925766,-0.5903249,0.020161513,-0.08512008,0.26389748,0.34460548,-0.14498186,-0.14979674,-0.07885109,-0.1366953,0.46346518,-0.36521548,-0.91455185,0.079293735,0.052329723,-0.42212814,0.52705145,-0.48448086,0.39544085,0.20065813,0.42493322,0.15976128,0.2908485,0.18140586,0.03403812,-0.06810611,-0.3067484,-0.19943188,0.26193336,-0.49535057,0.36879364,-0.064717755,-0.34407642,0.04240545,-0.26014423,-0.2522268,-0.60008484,0.31186405,-0.6867228,0.49739346,0.049478088,-0.3526179,-0.16150382,0.313288,0.1759889,-0.16719398,-0.13251017,0.18407904,-0.32171613,-0.07660735,-0.13473013,-0.39628592,-0.6447005,-0.6435012,0.05461363,-0.55886173,-0.13639781,-0.31381533,0.33168644,-0.19886716,-0.11510007,-0.06754832,0.4524217,-0.33528614,-0.080958076,0.31374192,-0.24688934,0.08993871,-0.57493293,-0.263681,0.0029670724,0.20840864,0.20015487,-0.2788773,0.3692817,0.37168318,0.37449142,0.07049433,-0.40123633,-0.25448963,-0.19667657,0.07909571,0.39090803,-0.27628234,-0.24776639,-0.30716133,0.016262028,0.4857343,0.26448783,0.17996074,-0.18198733,0.0043012714,-0.06485508,-0.14778624,0.3875793,0.43154627,-0.37152356,-0.10626396,0.2413209,0.21196182,0.1303952,-0.2558248,0.14712961,-0.17434669,-0.51358175,-0.19895561,0.05223844,-0.111302204,0.5338147,-0.101662144,0.105387755,0.7221308,0.02272289,-0.011420838,-0.015688866,-0.06460675,0.099897146,-0.30462962,-0.025092473,0.24360202,-0.4481895,-0.033859137,-0.12317287,0.7141573,-0.022085335,-0.8065594,0.243763,-0.44464442,0.16180946,0.015270404,0.61707497,0.7550488,0.46853128,0.19278547,0.88676834,-0.40389872,0.03657312,-0.058848433,-0.16342852,0.16678748,-0.17745006,0.038381346,-0.52020127,0.097175665,0.070194155,0.029381713,0.17158867,0.22259423,-0.45493788,-0.037029635,0.116085395,0.7525846,-0.26976356,-0.06552716,0.8546615,1.2420963,0.9135219,0.03146747,1.1979243,0.21094747,-0.0805304,-0.11801724,-0.13755953,-0.3104479,0.19601037,0.41436702,-0.06893333,0.43520293,0.070776924,-0.03997552,0.44340482,-0.10416593,-0.22504663,-0.025725726,0.37768152,0.011384637,-0.072340526,-0.66422325,-0.2776593,0.13425039,0.0956097,0.04561231,0.28632194,-0.25753906,0.44970068,-0.039821625,1.0281154,0.10783798,0.13268718,0.12887278,0.4125319,0.2227508,-0.13645752,0.12182988,0.2876556,0.031078683,0.10388357,-0.36307818,0.07925933,-0.36373347,-0.47225356,-0.12418043,-0.3920901,-0.1306595,-0.093701705,-0.34330466,-0.15508258,-0.025616646,-0.29804358,0.48566338,-2.5186696,-0.066678576,-0.21497594,0.25564054,-0.12204138,-0.31375942,-0.08721707,-0.28360334,0.42340496,0.36286497,0.37472534,-0.43582377,0.26573882,0.3427274,-0.48875874,-0.20130774,-0.48254848,0.114688024,-0.043556206,0.5037908,-0.03889999,-0.22297536,-0.15630887,0.30085474,0.7532129,0.08764868,0.028389396,0.21371447,0.34227318,-0.27844244,0.42067796,-0.00032961793,0.58492917,-0.17482163,-0.20494021,0.27591679,-0.51611763,0.5534872,0.12768319,0.23465285,0.37446856,-0.42803216,-0.80018455,-0.48807845,-0.36990476,1.2334032,-0.24651249,-0.5492699,0.27647513,-0.06696444,-0.23574074,0.022400836,0.46498778,-0.08686755,0.29768386,-0.5107091,0.07566489,-0.20561025,0.2551084,-0.14917208,0.026996106,-0.34747306,0.75916386,-0.20139481,0.36184898,0.27965266,0.2587859,-0.39251813,-0.46248785,-0.00062117405,0.8820157,0.5897856,0.0011616817,-0.01449268,-0.24686338,-0.07247208,-0.28343892,0.24369271,0.7684722,0.6689487,-0.028470367,0.01776134,0.29669803,-0.1771908,-0.05927995,0.022606883,-0.25295645,-0.028330097,0.1479921,0.7381468,0.6788314,-0.09126059,0.38137606,0.038377967,0.41547376,-0.25646842,-0.5258856,0.36826798,0.86171156,-0.14980848,-0.2617584,0.8748049,0.4735578,-0.18975875,0.28562975,-0.50563365,-0.39386755,0.6048236,0.0069449884,-0.49674922,0.039102547,-0.39021352,-0.03532421,-0.7983923,0.3727159,-0.110652864,-0.7619904,-0.5558642,-0.15601192,-3.2972407,0.1681031,-0.27336723,0.029066894,-0.13068528,-0.1534277,0.36525846,-0.706623,-0.5163268,-0.02005891,0.11188401,0.5331453,-0.18172576,0.14188318,-0.19357589,-0.32742268,-0.05818977,0.43740278,0.05760299,0.23586027,-0.21566309,-0.15058982,0.023377316,-0.3022321,-0.6303316,0.036283366,-0.6506597,-0.729674,-0.21439394,-0.46884826,-0.11143189,0.84903634,-0.58449554,-0.06405207,-0.31696215,-0.026369479,-0.09493601,0.17931613,0.2604839,0.3296097,0.19660306,0.053735085,-0.15075372,-0.38339362,0.16012652,0.119295515,0.5658425,0.46575123,-0.11259598,0.25933078,0.48949122,0.6271392,-0.11027576,0.73129666,0.1185903,-0.0894347,0.28396723,-0.20705141,-0.42629114,-0.6871347,-0.3799279,-0.03394482,-0.38887522,-0.3335246,-0.21169575,-0.38522062,-0.8304677,0.57918125,0.12357118,0.12994401,-0.41480353,0.21263643,0.3944376,-0.32134268,-0.09994054,-0.059112128,-0.18283723,-0.645781,-0.40129778,-0.6409355,-0.66283196,-0.05716935,1.1137425,-0.05721413,-0.11162109,0.09545263,-0.33919355,0.03663728,-0.012447314,0.18139544,-0.057038333,0.1835015,0.025290677,-0.75006866,0.60714626,-0.21669292,0.007195511,-0.4862915,0.14789245,0.71897507,-0.44122034,0.60175765,0.48551604,0.39052418,0.0125601245,-0.6634955,-0.33902413,0.051779747,-0.22241199,0.6066739,0.30665687,-0.625621,0.50584495,0.14262639,-0.1643522,-0.57932806,0.3724994,-0.1464694,-0.16064975,0.09635686,0.38582513,0.11340018,-0.066279694,0.0113713145,0.3307608,-0.48654127,0.20990641,0.41975638,-0.00928121,0.3062036,-0.043603636,-0.27676737,-0.7697458,0.08429607,-0.42456654,-0.2770482,0.0699525,0.030893052,-0.16175544,0.09374856,-0.024266055,0.41968852,-0.3431253,0.30463454,-0.18204758,-0.36214325,0.37401482,0.6475478,0.45126715,-0.5172917,0.5340859,0.18654363,0.06993761,-0.122361064,0.12285026,0.4751399,0.17712593,0.28330112,-0.19497715,-0.012479348,0.0686715,0.6060991,0.08899815,0.3007526,0.1622198,-0.11688489,0.43676415,0.00020870566,0.046800874,0.040898733,-0.49855325,0.017228002,-0.15447637,0.079761796,0.37104908,0.13347627,0.36754078,-0.0009015926,-0.111248076,0.2427757,0.030907746,-0.0071847057,-1.3838586,0.4497432,0.13681887,0.8019248,0.4179022,0.18534152,-0.2116876,0.66874564,-0.23965272,-0.07706713,0.45305473,0.14387532,-0.21364713,0.6114849,-0.67717904,0.38504145,-0.29681012,-0.109009966,0.116804905,0.16454902,0.3924515,0.80779344,-0.2266028,0.112838104,-0.11247236,-0.24855475,0.027744263,-0.36145067,0.26457468,-0.35082617,-0.5305446,0.62616074,0.17812137,0.40988848,-0.34517065,-0.0052751983,0.20987906,-0.20938015,0.18272927,-0.11820065,-0.11269791,-0.14407538,-0.49699932,-0.42932886,0.54040545,-0.24099824,0.05327305,0.07097836,-0.20124064,0.067835145,0.019103298,-0.20566998,0.060754802,-0.6360494,0.00227264,-0.41333655,-0.6708646,0.34645638,-0.6274948,0.19309212,0.13076918,0.059314694,-0.1380311,0.23423402,0.24305058,0.77107,0.09579694,-0.13435028,-0.15620455,-0.06303508,0.121335484,-0.28105745,-0.0935699,-0.33450332,0.29238662,-0.6002428,0.55841786,-0.34915528,-0.24875002,-0.13345765,-0.12584163,0.03678279,0.16898474,-0.30620793,-0.21279188,0.10229671,-0.017366653,-0.1275305,-0.0871004,-0.2837357,0.31183863,-0.12974533,-0.14102098,0.13274753,-0.13283165,-0.109786086,0.15860991,-0.0264729,0.28491458,0.22948885,-0.18633212,-0.2920021,0.09555389,-0.05761424,0.34426388,0.048409052,0.014480948,-0.2977375,-0.32457498,-0.33302802,0.38818425,-0.09326086,0.15840377,0.06623516,-0.39875096,0.8406442,0.046868075,1.2885851,0.013869093,-0.50262314,0.03693186,0.47820452,-0.16091429,0.14195606,-0.25685564,1.0902132,0.5872722,-0.24413228,-0.09223025,-0.4906756,-0.04171447,0.4096827,-0.30299383,-0.29689154,-0.10905414,-0.6638068,-0.20134766,0.07816265,0.22578993,0.0052257,-0.07839232,-0.18113841,0.19626144,0.16984311,0.39130405,-0.42969173,-0.06859492,0.44554538,0.27924007,-0.012489651,0.12765788,-0.25195262,0.38708276,-0.6862221,0.2897728,-0.4735641,0.09038092,-0.1544557,-0.4068283,0.1862262,-0.13676919,0.45139512,-0.27716127,-0.14272052,-0.1308757,0.59649915,0.1818894,0.1682862,0.5990036,-0.29943022,-0.15510663,0.051951595,0.47618356,1.4761783,-0.21341547,0.012148527,0.114128776,-0.38165173,-0.44956014,0.14682534,-0.49676487,-0.22834863,-0.17022362,-0.48734304,-0.3027986,0.30221817,0.24745859,0.06214301,0.12873173,-0.47715718,-0.1839291,0.23062985,-0.3127378,-0.275688,-0.31040817,0.3448081,0.52379805,-0.2217944,-0.42979383,0.009059812,0.26541087,-0.17110302,-0.64659107,0.14548846,-0.22394927,0.29309708,-0.017304914,-0.42153072,-0.043336753,0.16247027,-0.34916377,0.12701957,0.3242567,-0.23617165,0.04440469,-0.10314875,0.05370915,0.823427,0.20567624,0.13880394,-0.74750966,-0.6047792,-0.91289234,-0.4863657,-0.08646619,0.20524012,-0.1166686,-0.414597,-0.13803996,-0.20508061,0.091019034,0.010604024,-0.56413615,0.30667582,0.18745664,0.46422973,-0.22490914,-0.84913987,0.09391794,0.26175347,-0.025208225,-0.4017362,0.5418509,-0.19290331,0.6732927,0.07493629,-0.017488552,0.030149085,-0.59983796,0.45629042,-0.18261221,-0.30249766,-0.67284673,0.18155703 +671,0.56410116,-0.016412174,-0.5153356,-0.23932125,-0.46093136,0.018931214,-0.18543069,0.3739763,0.14326724,-0.42415148,-0.17499821,-0.08181775,0.10084657,0.20518659,-0.26644853,-0.8145761,0.20896451,0.29494604,-0.58781093,0.49940795,-0.4216362,0.37312093,0.10141768,0.24976285,0.122886024,0.16018006,0.039509527,-0.20534904,0.08032009,-0.21435684,-0.13508354,0.21020895,-0.5425693,0.25514036,-0.07495508,-0.39332718,0.08001146,-0.42528403,-0.34482422,-0.8015016,0.3095787,-0.6873095,0.38951188,-0.029156184,-0.31482288,0.06312888,0.13122818,0.3792303,-0.16188233,-0.05294822,0.16999766,0.037041284,-0.23044315,-0.1711133,-0.083564915,-0.383249,-0.5249041,-0.037825115,-0.41902816,-0.050127827,-0.25729454,0.3466062,-0.24484232,0.056017257,-0.08401559,0.5163246,-0.3144475,0.119963154,0.17281793,-0.015896678,0.23499765,-0.5401038,-0.1761947,-0.0909629,0.30619106,-0.13135591,-0.21359923,0.23400876,0.27063826,0.48472354,-0.049905304,-0.19656657,-0.1636525,-0.10634673,-0.07851609,0.5222801,-0.22255553,-0.53776866,-0.12728648,0.0056753317,0.17392007,0.18582286,-0.015208653,-0.37254232,-0.070270866,-0.048048712,-0.31314513,0.4177632,0.48819277,-0.33560726,-0.103859186,0.29111764,0.5257919,0.13959844,-0.16187534,-0.016441973,0.026407318,-0.592899,-0.1807149,0.059154965,-0.083345555,0.44238758,-0.05311706,0.1837851,0.6250114,0.07024705,-0.17321044,0.29268026,0.118365794,0.13517049,-0.33599263,-0.28261486,0.30594027,-0.608409,0.12108081,-0.2874916,0.96267253,0.13241068,-0.8201504,0.34705552,-0.6231373,0.096181616,-0.16103569,0.49751252,0.6947212,0.38567334,0.09873683,0.79736507,-0.3362644,0.091527544,-0.14897887,-0.20279908,-0.143669,0.13301697,0.04711968,-0.37235552,0.040167253,-0.027227696,-0.122186966,0.1431362,0.4696387,-0.5517824,-0.19449612,0.062684804,0.8177306,-0.3913697,-0.029147653,0.7313641,0.9547516,0.91614825,0.21381995,1.2143422,0.11103864,-0.21421334,0.22728196,-0.2525076,-0.6171556,0.31345174,0.15750773,0.32821372,-0.012248425,0.1093853,-0.11333475,0.49149245,-0.3947658,-0.121292375,-0.20021077,0.35732222,0.026689975,-0.058835927,-0.44895637,-0.44699973,-0.026639942,0.053383265,0.18212779,0.32674417,-0.18942569,0.19613811,0.095914036,1.2976533,-0.03880249,-0.071077846,0.08027847,0.35772142,0.23445408,-0.15696165,-0.14731473,0.14780721,0.31253627,-0.10656044,-0.5862668,0.061958887,-0.20239936,-0.42295256,-0.11074962,-0.233589,-0.08651934,-0.11136138,-0.5084617,-0.19221668,-0.16768523,-0.22995214,0.6361771,-2.5185304,-0.23396537,-0.120040774,0.3427065,-0.17245644,-0.3406594,-0.24386209,-0.5265173,0.3513884,0.2246285,0.5214799,-0.5370519,0.5028409,0.48737124,-0.5868114,-0.1218236,-0.7219624,-0.19341014,0.09040915,0.20003922,0.027467234,-0.08672641,-0.19639267,0.027116528,0.4956171,-0.0023272634,0.1689174,0.27414662,0.37521246,0.22893776,0.4798148,0.04893841,0.5298169,-0.19813338,-0.18339655,0.23730367,-0.4354512,0.14402646,-0.14598246,0.10552817,0.4341814,-0.46634188,-0.90230364,-0.7681914,-0.17159966,1.0233966,-0.23995055,-0.27562818,0.24407291,-0.20576945,-0.111599125,0.065154895,0.35838452,-0.064823754,-0.1259342,-0.78873724,-0.030096956,-0.016221832,0.12789598,-0.030816555,-0.0069310027,-0.44405666,0.5837822,-0.22123283,0.47631747,0.2047944,0.2529476,-0.24858353,-0.38270444,-0.06705808,0.87755203,0.31198862,0.13924655,-0.20767239,-0.24291068,-0.38911697,-0.0059574763,0.027617406,0.8183878,0.7823869,0.009733921,0.006619479,0.25445455,-0.11343682,0.22533941,-0.07614126,-0.4259824,-0.17850171,0.03361269,0.6706486,0.5502772,-0.025450388,0.41152197,-0.075054914,0.3734998,-0.209613,-0.3756628,0.30114478,1.1261616,-0.19753736,-0.32282227,0.6249119,0.46106184,-0.14897482,0.329972,-0.6134882,-0.2950111,0.39603454,-0.08027926,-0.39422643,0.11630742,-0.30481803,0.17510948,-0.8732847,0.46461257,-0.36602482,-0.6867831,-0.57128197,-0.033512753,-3.0318124,0.25394005,-0.19819692,0.010588443,-0.03255612,-0.24201465,0.11031411,-0.53785765,-0.5589693,0.17121486,0.11159542,0.71067333,0.03897635,0.18023954,-0.16237967,-0.23337488,-0.2032844,0.14845029,0.17936532,0.2977494,-0.008296593,-0.31973833,-0.0026163498,-0.15344475,-0.19063708,0.08560503,-0.7306349,-0.5152409,-0.054537296,-0.6894877,-0.3211288,0.6359962,-0.38764337,0.06489909,-0.16461112,0.029397372,-0.16658612,0.34291688,0.02809913,0.18104331,0.043623853,-0.03464006,0.008368178,-0.3145246,0.29182035,0.03451266,0.16753261,0.20259206,-0.057202753,0.1778447,0.5296787,0.61573344,0.06971003,0.91362846,0.4085,-0.06803922,0.21128663,-0.21892847,-0.35053188,-0.4248485,-0.251763,-0.17256811,-0.34323725,-0.17854537,-0.01270233,-0.44492656,-0.7545498,0.34566554,0.015831172,-0.095321335,-0.038386837,0.22327934,0.5188382,-0.16470951,-0.008977779,-0.095692106,-0.102706894,-0.50184584,-0.28942147,-0.6158339,-0.30938253,-0.08101165,1.2815837,-0.23136505,0.033046473,0.023111764,0.03372811,0.016842287,0.24723712,0.032965057,0.08578487,0.45921192,-0.23815084,-0.6130112,0.3596711,-0.34525186,-0.3053603,-0.42376506,0.22587523,0.5188638,-0.6994145,0.61889154,0.47762635,0.24466829,0.0046574315,-0.61174375,-0.14328766,0.20813212,-0.21616516,0.4253035,0.29708233,-0.6850331,0.45448926,0.4050141,-0.105863504,-0.79005605,0.67096776,-0.0032978335,-0.53092206,-0.018997543,0.4631835,0.12207584,-0.04664629,-0.16871732,0.15526418,-0.3501628,0.3433257,0.14669108,-0.11885726,0.17707604,-0.2907619,-0.09118579,-0.74201286,-0.12121112,-0.5414687,-0.18794495,0.1680689,0.032736354,0.1406636,0.20239028,0.06829012,0.44359824,-0.42116448,-0.02435375,-0.22512788,-0.34098524,0.2338619,0.40343374,0.3418516,-0.28351066,0.55228275,-0.040471938,-0.0930808,-0.03814327,0.20414644,0.4416647,-0.10855198,0.44018108,-0.18504126,-0.14041434,0.17490414,0.76323444,0.06554221,0.22368366,-0.011822252,-0.08483636,0.16384073,0.048979025,0.19363807,0.07520129,-0.39027175,-0.16574144,-0.010023657,0.16082273,0.4616457,0.081177324,0.19054222,-0.021552997,-0.39670286,-0.0808197,0.0852901,-0.033752322,-1.3386445,0.5013584,0.13761194,0.7429618,0.53584135,0.057410683,0.036014404,0.5358528,-0.13245764,0.23125419,0.25792873,0.030829886,-0.30347994,0.42902026,-0.55167377,0.48442954,-0.11382588,0.052367035,-0.0030180286,-0.06490412,0.39254302,0.8693623,-0.076610334,0.07649764,0.027171874,-0.35128078,0.11241969,-0.36273918,-0.027234187,-0.699032,-0.2392783,0.7328607,0.5230653,0.3081213,-0.23134069,0.011631336,0.2495661,-0.15444054,0.08561221,0.04722782,0.044218883,0.096720494,-0.6140996,-0.27046162,0.56990206,-0.046885926,0.005809466,0.11086297,-0.05856086,0.18666236,-0.055022765,0.0012528162,-0.11203382,-0.5724067,-0.079026245,-0.43845117,-0.25927657,0.28348938,-0.14329238,0.08943518,0.25781357,0.12665756,-0.34559387,0.32230908,0.22758304,0.694418,-0.030280987,-0.13850416,-0.46983972,0.017402602,0.14239782,-0.109178655,-0.2269493,-0.34625447,0.107766315,-0.7940777,0.4893215,-0.024131905,-0.101127245,0.24319759,-0.16122098,-0.012824509,0.4343022,-0.14796314,-0.030519357,0.039092746,0.0068763136,-0.2596602,-0.08508695,-0.17273325,0.18763135,0.12111876,-0.12353799,-0.055394206,-0.22610046,-0.02904675,0.5483477,0.083162345,0.43561748,0.41448778,0.16773619,-0.2678874,-0.05369157,0.1471393,0.47467226,-0.17824177,-0.11528173,-0.35843506,-0.2854032,-0.3256195,0.36343843,-0.1368403,0.32575414,0.039472796,-0.18526818,0.75242406,-0.12058592,1.0757172,-0.033445347,-0.2562485,9.925763e-05,0.47718036,-0.15688248,-0.04602954,-0.30152592,0.9248332,0.53228384,-0.067596205,-0.090683974,-0.3681492,0.124698356,0.12980635,-0.23202161,-0.063737586,-0.021508664,-0.51276916,-0.26633286,0.16093431,0.24592991,0.08970265,-0.13485575,-0.005534202,0.10946532,0.01565644,0.32983488,-0.56166255,0.03737143,0.15458912,0.33184776,0.14023225,0.2761915,-0.4570901,0.33926696,-0.5461713,0.08449745,-0.2738941,0.13893496,-0.120785676,-0.2936798,0.18850638,-0.0020066262,0.30217865,-0.21686636,-0.28505316,-0.29294735,0.4858436,0.20800544,0.054976486,0.6691763,-0.19667858,-0.05492665,0.08806925,0.60807526,1.0143505,-0.23380308,-0.16310625,0.3404798,-0.26821595,-0.5406672,0.07647655,-0.38777244,0.03124804,0.057947516,-0.006091555,-0.69344217,0.3894822,0.22663717,0.11026519,-0.03600351,-0.73745453,-0.11842706,0.36730835,-0.23474477,-0.2399771,-0.25058794,0.26235926,0.6231047,-0.1826715,-0.117852844,-0.03475635,0.30069238,-0.25591213,-0.6667146,0.099913664,-0.61574596,0.3093159,0.1557552,-0.30936927,-0.27289167,0.06756417,-0.3202099,0.04029002,0.22841467,-0.26428512,0.090521365,-0.33497038,0.05803812,0.85752463,-0.04047116,0.18454114,-0.48134628,-0.46110356,-0.73710746,-0.15345153,0.41448978,0.23780641,0.019752575,-0.70875424,-0.16357075,0.04604915,-0.20213757,-0.013545283,-0.27290127,0.4806849,0.13713373,0.38137287,-0.06594478,-0.8588267,-0.035033867,0.06302726,-0.42265072,-0.45236677,0.44750577,-0.0045578717,0.88539,0.12882249,0.032921154,0.2575391,-0.39406613,0.12920569,-0.26873052,-0.10344521,-0.7401232,0.06261982 +672,0.44046044,-0.29110917,-0.4267766,-0.14219251,-0.09561845,-0.16349983,-0.173247,0.64350986,0.28522238,-0.44105414,-0.1159506,-0.049836975,-0.018380847,0.35157928,-0.12730265,-0.43810573,0.03882112,0.121883206,-0.17970899,0.66299,-0.35083652,0.19364922,-0.21824649,0.5679577,0.20846036,0.27953717,0.10849112,0.0011238073,-0.1888876,-0.05986982,0.115017116,0.3493219,-0.3733841,0.19029331,-0.16773467,-0.2532945,0.003996206,-0.46675518,-0.45584106,-0.7485336,0.3894504,-0.77343696,0.4187909,0.119621836,-0.25500104,0.4189015,-0.058617763,0.18718441,-0.29997903,-0.16723733,0.060718063,-0.035353553,0.032508843,-0.1410983,-0.06650787,-0.1532065,-0.5425745,0.076955244,-0.35668355,-0.1180393,-0.2979662,0.14929068,-0.34596065,-0.15894018,0.04892203,0.58600837,-0.5074622,-0.102672115,0.1567227,-0.06725731,0.31424162,-0.60796124,-0.2976081,-0.1803103,0.29397148,-0.17203522,-0.13503793,0.30629784,0.22677603,0.38884306,-0.08976736,-0.084281765,-0.40876314,-0.08799795,0.11059018,0.4857913,-0.12087642,-0.68833,-0.07384696,-0.072248034,0.09352688,0.10106533,0.1227191,-0.20603882,-0.11610738,0.020598957,-0.21326588,0.42278025,0.5485653,-0.090976365,-0.24501522,0.33817878,0.48977032,0.19403593,-0.15873425,-0.060917657,0.11647322,-0.39938784,-0.13370405,-0.07893453,-0.19243695,0.58918995,-0.14488614,0.21939842,0.62934536,-0.14528635,-0.060184173,0.058693383,0.0931709,-0.1278095,-0.3145233,-0.31353116,0.2832991,-0.35117054,0.25508022,-0.1225226,0.7022743,0.17880277,-0.7808699,0.38460547,-0.45656863,0.10645489,-0.21857023,0.55382365,0.7953772,0.345318,0.5043572,0.5974523,-0.47501877,0.036599692,0.13282838,-0.3996706,0.07742022,-0.32042265,-0.10028051,-0.4157277,0.039182477,0.14327672,-0.10691905,0.104383744,0.2043546,-0.45725542,-0.051308963,0.27230182,0.73034096,-0.16908923,-0.01004102,0.83670014,1.082185,1.0637001,0.023662379,1.0444367,0.3106158,-0.20410047,0.33778387,-0.29873398,-0.8461223,0.23302996,0.2995243,-0.029351745,0.15857743,0.10374887,-0.041550547,0.44005245,-0.50425017,-0.010195347,-0.18174182,0.14794554,0.15375338,-0.1330529,-0.61344284,-0.22159824,-0.15748204,0.026407957,0.06290536,0.40156764,-0.20927116,0.4246618,0.006211051,1.4148647,-0.050365068,0.07406262,-0.0049744737,0.7990307,0.17476125,-0.1851686,-0.016164051,0.31275153,0.32313347,0.031181386,-0.66766137,0.08997668,-0.20542575,-0.4668878,-0.20998737,-0.39224812,0.097998865,0.055453487,-0.41458112,-0.14245228,-0.1393074,-0.28262845,0.4114964,-2.9853294,-0.26717192,-0.09219164,0.28019315,-0.23527884,-0.19069448,-0.009552153,-0.4704681,0.37638667,0.4151234,0.5236804,-0.668112,0.19576988,0.54554003,-0.54397035,0.01979919,-0.55054647,-0.13134554,-0.12259146,0.5172587,0.050069936,0.022781143,0.042395327,0.26889616,0.46394497,0.15443175,0.16289236,0.09518584,0.25758162,0.018067818,0.24061532,-0.070720315,0.48698118,-0.29005414,-0.18373731,0.27146798,-0.37027964,0.22059122,-0.3087547,0.17230831,0.49562907,-0.3647552,-0.90913963,-0.53607523,-0.09349738,1.0393301,-0.087547764,-0.48331377,0.33570358,-0.45424822,-0.21899389,-0.09996389,0.5012735,-0.09751449,-0.034587365,-0.81001997,0.09298416,-0.17146952,0.034683563,0.047736544,-0.016112585,-0.43337828,0.693191,0.078390755,0.4163572,0.3784832,0.19781674,-0.30229142,-0.59037006,0.0047860825,0.6967222,0.3985359,0.16453423,-0.32758325,-0.14589965,-0.20294826,-0.11349722,0.08422263,0.42089504,0.6294292,-0.059225615,0.2097858,0.25338113,-0.073529735,0.11342839,-0.096647486,-0.2769913,-0.13745332,0.12951544,0.6268201,0.82547367,-0.2662341,0.34765682,-0.07045849,0.16946961,-0.18190704,-0.39570814,0.728679,0.9425077,-0.10823231,-0.23980798,0.6102275,0.50232387,-0.40061864,0.5246071,-0.6033534,-0.08512851,0.37505075,-0.14357837,-0.38822916,0.1065716,-0.27298325,0.26268178,-0.91793126,0.2413326,-0.20410885,-0.35357028,-0.7215017,-0.046721675,-3.4882202,0.046515077,-0.24630366,-0.26131013,-0.11201155,-0.17112,0.3005549,-0.6689952,-0.6087254,0.30290884,0.095468745,0.7226361,-0.03578031,0.08579975,-0.28798813,-0.24867246,-0.43099287,0.05719349,0.12868747,0.3459744,0.16043076,-0.57587916,-0.089510284,-0.16292529,-0.42889994,0.0035609624,-0.42028818,-0.30726096,-0.23915245,-0.55725867,-0.2558622,0.59947795,-0.11490501,0.021685,-0.2073747,-0.08734834,-0.23519656,0.36537594,0.06266977,0.1045663,0.034117587,-0.06789278,0.08206914,-0.2560534,0.20172028,-0.039419584,0.16341008,0.31118488,-0.24541077,0.15313528,0.5797551,0.690938,-0.22906287,0.9473525,0.6371667,-0.12049203,0.3036316,-0.2905585,-0.31923562,-0.4983771,-0.39149597,-0.033757456,-0.35046116,-0.55174565,-0.04048052,-0.49823958,-0.7387258,0.56357986,-0.110371314,0.36176282,0.09845315,-0.00844901,0.4639509,-0.2074144,-0.02336901,-0.01803408,-0.019889269,-0.56672543,-0.2138416,-0.6106567,-0.5536556,0.17840281,0.7639889,-0.18750553,-0.1373559,0.123823486,-0.27893776,-0.025626944,0.1278191,-0.030453432,0.15471248,0.32782936,-0.0033025166,-0.674182,0.57112485,0.09124271,-0.047669,-0.58795464,0.09311756,0.51674575,-0.60176784,0.5891458,0.32760796,-0.061436873,-0.21481276,-0.53507704,-0.345516,-0.05897895,-0.1425,0.534197,0.42038158,-0.86408854,0.4966832,0.28854156,-0.2682869,-0.7346254,0.56374407,-0.06463964,-0.17932813,-0.077868216,0.20445715,0.04629922,0.05941059,-0.26108187,0.26561755,-0.30624261,0.09780777,0.26930296,-0.08077905,0.38089594,-0.17493077,0.061030917,-0.67148125,-0.030726543,-0.5745052,-0.16412546,0.172094,0.1636748,0.17319655,0.11776621,0.078458205,0.3306385,-0.28641286,0.053853847,-0.035292685,-0.24785818,0.22872424,0.46277615,0.5711383,-0.4101465,0.5881523,0.051250286,-0.085140534,-0.101711325,0.03917731,0.27630132,0.059495043,0.38444248,0.09159387,-0.27343723,0.12947682,0.7621164,0.28982347,0.49038908,-0.011789339,-0.1448188,0.38134032,0.15760885,0.2907224,0.04822255,-0.45825866,0.011724055,-0.34498483,0.17024972,0.44318792,0.10302048,0.40348864,-0.16862242,-0.39126793,0.09873467,0.1457098,0.049398106,-1.2870777,0.34828928,0.23182604,0.8802638,0.6376712,-0.014529049,0.08058976,0.87569195,-0.10669499,0.14918093,0.436088,-0.07256419,-0.6239754,0.56462187,-0.7239656,0.40154886,0.049477678,-0.05154112,0.024315566,-0.085327506,0.4080343,0.47026512,-0.16577248,0.0821629,0.038128596,-0.31976765,0.25797996,-0.36814234,0.112156734,-0.46657938,-0.13040327,0.5450414,0.59435713,0.25887483,-0.118301995,0.0295937,0.07584129,-0.03503143,-0.02833494,0.09787892,0.08624719,-0.098013006,-0.6104743,-0.17072923,0.5221563,-0.0110299075,0.08389993,-0.08417004,-0.18563978,0.2641715,-0.16441986,-0.17466083,0.030690312,-0.7334999,0.057445433,-0.09377678,-0.40743202,0.754838,-0.17310688,0.36574984,0.16592145,0.13668127,-0.26964238,0.2570692,0.06558644,0.67403644,-0.09531547,-0.09677424,-0.38284105,-0.061868336,0.2886537,-0.14294986,-0.22998883,-0.31270787,-0.110597946,-0.46484208,0.42395815,-0.032860663,-0.11003693,-0.034852643,-0.025586942,0.14201073,0.5396722,-0.11781267,-0.17198743,-0.14120932,-0.08119903,-0.34057012,-0.20909892,-0.13847211,0.30691168,0.22360691,-0.08485126,-0.14557867,-0.13678768,-0.14673528,0.5036672,0.038402338,0.3051876,0.3080099,0.011121482,-0.2635265,-0.21190824,0.18303987,0.3924539,-0.021504058,-0.20205809,-0.24445336,-0.42779416,-0.35943276,0.21368542,-0.013032397,0.26787803,0.011829035,-0.23029558,0.5751547,0.057533205,1.0324389,0.06936453,-0.4952505,0.22573936,0.44364187,-0.1027347,0.02588089,-0.33352342,0.82170546,0.4461829,-0.22789939,-0.21817677,-0.4230859,0.054057445,0.15599848,-0.21143813,-0.09946804,0.004939735,-0.6940784,-0.09887479,0.35886434,0.31635112,0.23171219,-0.07491483,0.069525905,0.20394434,0.06440225,0.38163492,-0.42580175,-0.18269384,0.3816285,0.24642947,0.12814926,0.024836907,-0.35554108,0.34638518,-0.49380186,-0.017069787,-0.3024508,0.26497048,-0.36452124,-0.47471428,0.22557984,0.08678688,0.47200802,-0.21317562,-0.3786075,-0.29594716,0.5008522,0.07077675,0.14503457,0.34402508,-0.2715354,0.056743868,-0.007175352,0.38368955,0.8679281,-0.24346079,-0.06873505,0.30139777,-0.23697533,-0.7445899,0.36588818,-0.34848288,0.38836828,-0.06977817,-0.17735036,-0.7283286,0.19618228,0.24949591,0.036449518,0.049538482,-0.5162032,-0.36064744,0.21116886,-0.23108125,-0.18566868,-0.26698175,-0.13227858,0.5783127,-0.32249492,-0.40240023,0.13406265,0.18658295,-0.15360317,-0.5568817,-0.024497923,-0.34089893,0.26213685,0.11761583,-0.40546733,-0.1740381,0.1591263,-0.4333193,0.22953963,0.20248897,-0.352289,0.015017997,-0.42008987,-0.012883469,1.0619782,-0.25311792,0.23144385,-0.48272985,-0.43347555,-0.92424124,-0.47396532,0.638452,0.1205922,0.02353825,-0.677409,0.13991244,-0.15177925,-0.0038473574,-0.048250657,-0.30422014,0.42340016,0.14160475,0.33017507,0.038364027,-0.6558835,0.029153304,0.100159764,-0.12916984,-0.55697006,0.50614977,-0.013013567,0.9733617,0.12134205,0.21194312,0.15088664,-0.3475377,-0.08627897,-0.23677455,-0.31634548,-0.55788386,0.061529603 +673,0.28977123,-0.15914561,-0.7651243,-0.06816841,-0.2092898,0.02311719,-0.2790474,0.6413251,0.37084833,-0.32142615,0.003775527,-0.17657264,-0.04228227,0.2553834,-0.08433438,-0.4806567,-0.15387644,0.18787986,-0.6140933,0.6520725,-0.3773416,0.01677308,-0.029108888,0.4323074,0.008452233,0.1724117,-0.124180295,-0.10081988,-0.014879058,0.062348366,0.045137327,0.27613816,-0.6000619,0.30147406,-0.18285589,-0.14533925,0.072797954,-0.48123214,-0.4019712,-0.7598893,0.14085479,-0.5193772,0.5367916,0.15599827,-0.28332046,0.1882789,0.10952588,0.16207673,-0.33843252,-0.05243786,0.2186629,-0.2058348,-0.3968564,-0.20687862,-0.24384145,-0.4619387,-0.6023529,-0.11486844,-0.50793856,0.08302937,-0.08510906,0.21206065,-0.3383416,-0.14505936,-0.07520335,0.67494553,-0.3459026,0.43791354,0.12408761,-0.13729714,0.32894674,-0.5227618,-0.09448409,-0.029270023,0.17157863,0.1197446,-0.3388145,0.2514368,0.049828943,0.34996605,-0.10656338,-0.056111615,-0.34152356,0.023325669,-0.10305665,0.40279093,-0.07734718,-0.28960246,-0.058577504,0.045711767,0.032076214,0.23878627,0.0013367087,-0.350093,-0.1492803,-0.31114945,-0.1516216,0.2961706,0.49923873,0.058930933,-0.075306475,0.40864834,0.27436697,0.3316082,-0.05331968,0.0116435485,-0.016554631,-0.6025422,-0.16091485,0.030147016,0.10066074,0.46456543,-0.031812895,0.3360807,0.5527955,0.11751322,-0.31018126,-0.024507971,0.055273753,0.12463174,-0.28899565,-0.27501017,0.32302022,-0.44135204,0.03164136,-0.14094414,0.63908756,-0.053903908,-0.9738777,0.34000465,-0.5590772,0.06336016,-0.0794231,0.607238,0.8234206,0.64029706,0.26832798,0.6430072,-0.21915646,0.20255719,-0.07101549,-0.32212862,0.38314882,-0.0068175495,0.22546077,-0.48223522,-0.17134511,0.0032482047,-0.23252426,0.13498305,0.3277188,-0.34179673,-0.18356866,0.3021343,0.8041895,-0.25954077,-0.15126063,0.49122128,1.1080999,0.77566904,0.0830371,1.1780634,0.158499,-0.101366185,0.15808426,-0.14579047,-1.0647446,0.32953244,0.11836878,-0.06648621,0.21309249,0.04680401,-0.23632713,0.3461549,-0.22378552,-0.1705391,-0.051598612,0.3010837,0.005988717,-0.09187893,-0.20637238,-0.3410057,-0.026495816,0.040448118,0.024845349,0.16823082,-0.08447716,0.4397587,0.08253876,1.683474,0.11266144,0.058992207,0.037993886,0.45747313,0.15215574,-0.08771876,-0.28551236,0.6481101,0.29590765,0.1792552,-0.5147884,0.211361,-0.09160561,-0.37589276,-0.099351294,-0.36213636,-0.08338991,-0.24476242,-0.21531607,-0.24921973,-0.15546651,-0.4598376,0.30668202,-3.0926094,-0.011931648,0.09895734,0.35994875,-0.110067844,-0.10414973,-0.16640966,-0.4221176,0.40597376,0.47115096,0.51303595,-0.4260666,0.2466106,0.48518562,-0.6159784,-0.11071992,-0.5465608,-0.05776502,0.007329618,0.3287113,-0.128298,-0.014634371,0.08383896,0.06612689,0.28652766,0.06388533,0.14477585,0.46385014,0.53092843,-0.052524645,0.44513062,-0.23507546,0.35630786,-0.44609225,-0.17479591,0.12010648,-0.308091,0.18879573,-0.15314147,0.05479556,0.551084,-0.5202159,-0.772552,-0.17838085,0.15043227,1.100642,-0.37241924,-0.24441361,0.28218368,-0.39678827,-0.16476025,0.08940678,0.6626727,-0.20370673,-0.10856684,-0.7186757,-0.17025559,-0.03104492,0.4143928,-0.05008186,-0.0069906763,-0.511107,0.5007296,0.06863541,0.6031055,0.4625547,0.085309304,-0.30065352,-0.59611607,0.08386388,0.64096624,0.22170608,0.20321189,-0.17579512,-0.14202413,-0.13965847,0.03880291,0.06130365,0.65788007,0.6255517,-0.18956833,0.26480654,0.39154693,-0.23775072,-0.018479593,-0.17476475,-0.31067976,-0.20850806,0.093027234,0.3998076,0.82695574,-0.12216425,0.40142635,0.107530445,0.4409841,-0.13730903,-0.4772048,0.46028543,0.7640619,-0.1561081,-0.22485363,0.53133494,0.5611024,-0.23745723,0.54918915,-0.40297344,-0.30669674,0.5995427,-0.10314577,-0.5311143,0.28822768,-0.38353527,-0.0046694204,-0.94851154,0.15402052,-0.07679228,-0.62316436,-0.75291705,0.0032309715,-2.6776228,0.09756746,-0.3095558,-0.26787248,-0.0909772,-0.059962858,0.13490246,-0.54357046,-0.56186396,0.25378773,0.23346396,0.44877255,-0.2265772,0.0054369443,-0.18086283,-0.22922231,-0.31064105,0.20771658,0.3005909,0.2748934,-0.015866125,-0.59977037,-0.20774865,-0.07587551,-0.24464254,-0.008966471,-0.46126357,-0.18278311,0.020300046,-0.8104613,-0.296665,0.5651036,-0.30058166,-0.16450824,-0.1632366,0.05269887,0.21969481,0.27915668,-0.11552516,0.17133419,-0.02450507,-0.036221206,-0.12765862,-0.25603506,0.16673534,0.031509973,0.2697174,0.41435492,0.02616998,0.07180963,0.44677433,0.5321031,-0.28196338,0.8295634,0.5224212,-0.051306855,0.28486922,-0.17724991,-0.072439946,-0.4913926,-0.090438455,-0.12131261,-0.4336392,-0.2903613,0.07107798,-0.32673904,-0.7976548,0.6645395,0.096274264,-0.04851967,0.112419434,0.16180266,0.41948307,-0.09747153,0.078757614,-0.23994915,-0.19580323,-0.40023378,-0.21367867,-0.72926164,-0.5118409,0.1978548,1.0613972,-0.30814546,-0.017644184,0.18962468,-0.39401725,0.023131175,0.25298357,-0.010302976,0.50358564,0.4111406,0.19561112,-0.6585663,0.45061672,-0.16045414,-0.014613588,-0.6411547,0.1644173,0.6163118,-0.83250755,0.47118452,0.41523513,-0.036131833,-0.27027857,-0.6352307,-0.2820473,0.016502792,-0.0786846,0.3667412,0.29902947,-0.9435022,0.45936248,0.1722281,-0.37225148,-0.86695796,0.28915533,-0.14728355,-0.3897167,0.13037695,0.22098638,-0.0400524,0.16488901,-0.31024057,0.1663546,-0.17128126,0.202522,-0.049412817,-0.18808556,0.40818688,-0.03470246,0.097131036,-0.7209306,0.06643322,-0.5000518,-0.26337376,0.5781304,0.003434196,0.08178099,-0.00608778,0.056941003,0.34671542,-0.27039155,0.074484624,-0.29878464,-0.28869408,0.3661377,0.5292862,0.42744994,-0.49399152,0.6348979,-0.0309138,-0.21177697,-0.033938903,0.10196266,0.28959063,0.011574735,0.36368325,0.059120204,-0.2055028,0.24107915,0.72950387,0.13877456,0.34827486,0.030016651,0.08275594,0.45131373,0.07803624,0.12925766,-0.18509434,-0.5997409,-0.08103893,-0.46085945,0.22952473,0.4492794,0.118659794,0.435414,-0.14528878,-0.16466463,0.022582196,0.2960147,0.28430235,-0.74324703,0.38419607,0.23816375,0.73186946,0.7124202,0.2310707,0.0014305314,0.75859445,-0.09135505,0.18213363,0.34361258,0.10271413,-0.47942245,0.6079507,-0.5679092,0.42655376,-0.18132348,-0.015122547,0.23650795,0.14841653,0.55411476,0.86369497,-0.12404761,0.020117542,0.114190914,-0.22491734,-0.026064023,-0.34842303,0.1348208,-0.45512548,-0.4159226,0.5051174,0.45577303,0.24054222,-0.25483063,-0.074538946,0.26086164,-0.14706336,0.24651772,-0.026504437,-0.15667647,-0.0409521,-0.7249503,-0.15157247,0.5946161,-0.0037536125,0.10943937,-0.017394274,-0.041703865,0.2953352,-0.19601439,-0.10966433,-0.08417308,-0.5985085,0.026764303,-0.23256122,-0.5538832,0.7313128,-0.2054909,0.20832582,0.2092592,0.09608966,-0.31014463,0.27464652,-0.0074011735,0.73288774,-0.052492183,-0.14206544,-0.14762048,0.016926622,0.28947136,-0.25423878,-0.18575086,-0.31116292,-0.09650131,-0.4983951,0.44566095,-0.14187117,-0.4446908,0.005079309,-0.09475258,0.020577287,0.41518375,0.07491438,-0.07171442,-0.038133953,-0.31617472,-0.4322629,-0.23547904,-0.3742539,0.261188,0.11257621,0.03823528,-0.075589515,-0.063566886,0.085003555,0.39389086,0.10363903,0.22257614,0.17291446,0.28713682,-0.3114658,-0.03227815,0.13385409,0.6614563,0.08549532,-0.06975537,-0.22096409,-0.1891644,-0.3029885,-0.068065666,-0.11722324,0.4008348,0.20698422,-0.45008746,0.6836946,-0.04018172,0.90665644,-0.08156926,-0.37041414,0.2630514,0.48275924,0.046111155,0.032230787,-0.35474598,0.86366576,0.5525909,-0.19226933,-0.18735301,-0.3668886,-0.089013726,0.18827055,-0.27241078,-0.28780866,-0.086719595,-0.54203093,-0.15590346,0.25563154,0.15837544,0.091852486,-0.18705739,0.027198264,0.075133204,0.0372557,0.057127777,-0.37929702,0.10497875,0.15722485,0.14818087,0.19887201,0.11209065,-0.4257431,0.3347338,-0.43062925,0.2530842,-0.41257223,0.09093613,-0.2850786,-0.13083686,0.103651285,0.020404072,0.34653494,-0.27731106,-0.21644203,-0.24276523,0.43193737,0.3036907,0.33051264,0.7391519,-0.25091112,-0.02418288,0.02238504,0.55455095,0.8552844,-0.47453323,-0.17071082,0.43884373,-0.24568017,-0.7461688,0.21733303,-0.3846395,0.10503012,-0.048558008,-0.3166154,-0.4151559,0.102315515,-0.025886545,-0.065280385,-0.028790394,-0.5997864,0.13428839,0.25343195,-0.19897598,-0.18647747,-0.2987193,-0.038023025,0.7748179,-0.24168682,-0.31715906,0.060121104,-0.040705096,-0.10096217,-0.44277707,0.07468174,-0.4311312,0.16520922,0.19292708,-0.49472126,-0.11372761,0.10847622,-0.5158034,0.1467052,0.05076137,-0.20293935,-0.067709126,-0.35003185,-0.099477135,1.0182396,-0.23233174,0.0715521,-0.36424586,-0.5608788,-0.76713794,-0.20656388,0.30585018,0.053822156,-0.025712663,-0.6685455,-0.021109462,-0.14811087,-0.2656707,-0.19146413,-0.36048138,0.5108147,0.075596556,0.30015507,-0.20221819,-1.0107796,0.21421377,0.1767503,-0.38647783,-0.6007256,0.46715608,-0.05833595,0.9318182,0.05824247,0.19467886,0.40039435,-0.60179085,0.15040801,-0.33730182,-0.32265696,-0.43331853,0.027788676 +674,0.6683114,-0.07156528,-0.7558418,0.06634938,-0.2201003,0.090909906,-0.25051656,0.34164783,0.32468817,-0.20051777,-0.2222095,-0.09405451,-0.08955228,0.31886023,-0.10471034,-0.9200392,-0.002502136,0.14615957,-0.46946323,0.9327378,-0.2986895,0.3742653,-0.09069976,0.36660722,0.31413028,0.3751255,0.19944371,0.015380353,-0.12730993,-0.4060992,-0.0025748834,-0.06740898,-0.82633656,0.17527722,-0.1867844,-0.44752988,0.049887795,-0.35403752,-0.46740755,-0.8436753,0.36302066,-0.8744765,0.4287072,-0.035201643,-0.23166446,0.2141803,-0.13344193,0.2978323,-0.122511506,-0.17391278,-0.046839166,0.043234337,-0.026296042,-0.14842613,-0.24203104,-0.51425976,-0.57987,-0.0025137477,-0.45525074,0.008625294,-0.27443475,0.11852012,-0.43807733,0.011820029,-0.19315952,0.2828364,-0.45251283,0.08698843,0.29553816,-0.0011297365,0.064393215,-0.53847796,-0.1792634,-0.25057033,0.20141101,-0.19006075,-0.13315882,0.3434256,0.27836433,0.23734117,0.1381223,-0.22292519,-0.2983782,-0.25145325,0.17155725,0.35920522,-0.18348098,-0.4273276,-0.35944557,-0.2449614,0.30120695,0.32983863,0.28694373,-0.06216384,0.06414787,0.06561177,-0.3422246,0.6142656,0.5654068,-0.4526271,-0.44654322,0.45682466,0.65947455,0.42123756,-0.14081797,-0.0445065,-0.0029799037,-0.35537937,-0.19536154,0.13067307,-0.20284148,0.6662006,-0.17877401,0.12513922,0.58966374,-0.46670637,0.13949446,0.0760453,0.058023077,-0.39060447,-0.3040525,-0.24519949,0.30480865,-0.5632053,0.27557793,-0.2731394,0.70402694,0.19647308,-0.5761108,0.27709925,-0.6840605,0.102676295,-0.15654586,0.6309412,0.7442482,0.3224623,0.18226679,0.85186607,-0.35880807,-0.02263236,-0.10012365,-0.38005427,0.13102698,-0.20480861,-0.07376226,-0.48819622,0.08159765,0.21101458,0.048183758,0.09795076,0.37695512,-0.47445,-0.3427362,0.1273095,0.5944175,-0.23681338,-0.22560668,0.7963112,1.2489924,1.1236285,0.014211294,1.2966213,0.2057498,-0.19594437,-0.019197613,-0.17600335,-0.90165305,0.19996631,0.31732813,-0.6266148,0.5410594,0.24532573,-0.06799016,0.32376012,-0.30768302,-0.060680974,-0.09780831,0.3482909,0.01745812,-0.18983865,-0.278769,-0.11913941,-0.04520217,0.048486978,0.31822082,0.32822308,-0.35532606,0.2927749,0.22031046,1.2540207,-0.10538288,0.02151451,-0.015549782,0.4968382,0.3097457,-0.19997291,0.06628787,0.41527125,0.34025475,0.058037996,-0.59729373,0.023092017,-0.46459362,-0.45215693,-0.10491627,-0.3239734,0.013840385,0.10027959,-0.15627141,-0.19682483,-0.13253443,-0.022834122,0.54361355,-2.5937464,-0.19554536,-0.16295813,0.14513007,-0.3306696,-0.33842936,-0.09087149,-0.60383964,0.36928663,0.22630645,0.51076216,-0.6603091,0.36661908,0.5052946,-0.7661657,-0.0025764804,-0.6850669,0.053994756,0.024920657,0.49638036,-0.14937307,0.03668512,-0.018693805,0.16478857,0.48788777,0.3268422,0.084206134,0.29894775,0.5087833,-0.07204058,0.34724978,0.14960478,0.5574765,-0.21515357,-0.225414,0.38988173,-0.28095365,0.81937313,-0.26796484,0.11155913,0.5449633,-0.29902118,-0.8772952,-0.6109387,-0.28620303,1.1406802,-0.33468008,-0.6227394,0.056198593,-0.06901089,-0.373667,-0.16079153,0.4402151,-0.2625039,-0.111995876,-0.50383806,0.016241074,-0.13585986,0.21425788,-0.057590634,0.1654901,-0.41911158,0.73309296,0.035577375,0.34778324,0.26946792,0.29693946,-0.18391041,-0.42087492,0.07985697,0.9467611,0.40147653,0.038758975,-0.40775165,-0.22448468,-0.400802,-0.15015247,0.2261173,0.59689534,0.723546,-0.2242444,0.024916293,0.36823842,0.24835175,0.074725464,-0.055662483,-0.37756172,-0.2672899,-0.30104178,0.60642684,0.8060681,-0.23447943,0.38226274,0.024493909,0.16856103,-0.26247993,-0.4860499,0.9223674,0.94655895,-0.2567693,-0.22671048,0.6016386,0.4368608,-0.5347002,0.68230027,-0.7098225,-0.18092348,0.42797294,-0.048860114,-0.21286464,0.047152292,-0.30114135,-0.03908831,-0.7970741,0.30877468,-0.19007576,-0.19145012,-0.47696432,-0.17294256,-2.72431,0.25362232,-0.21848385,-0.119742356,-0.27837804,-0.040424973,0.22364146,-0.6504324,-0.6988616,0.3543227,0.19958235,0.6756703,-0.19878392,0.18656768,-0.2019641,-0.43900236,-0.5733744,0.20430522,0.059912045,0.36979508,-0.25525436,-0.33896288,-0.02025075,0.04122224,-0.40750298,0.1129781,-0.32110298,-0.3356218,-0.20385341,-0.39938045,0.02651374,0.68843365,-0.35748902,0.05034579,-0.25898257,0.05164678,-0.11853055,0.17266344,0.008018658,-0.01478076,0.07687732,-0.014470766,-0.0046355426,-0.34588706,0.4252346,0.124234445,0.5216053,0.30387318,-0.23406129,0.10394654,0.43165183,0.62166977,0.07918047,0.91894746,0.36806914,-0.17059302,0.27146852,-0.096028484,-0.14848004,-0.6490338,-0.24144088,-0.17877878,-0.5076353,-0.6080594,-0.16734576,-0.20906945,-0.829853,0.39107326,0.15498978,0.6031682,-0.023504967,0.4415888,0.4920435,-0.28289938,0.11836237,0.009900074,-0.16563259,-0.4017059,-0.32027677,-0.61689544,-0.30718458,0.5045356,0.4966886,-0.47547033,-0.15945493,0.053195637,-0.42595658,0.15322311,0.10537216,0.07249651,-0.11820801,0.48210725,0.15226138,-0.51780176,0.6370881,-0.1585591,0.022544095,-0.72374266,0.11109382,0.5988632,-0.5893531,0.39859807,0.372425,-0.03277889,-0.05442487,-0.5903118,-0.08128264,-0.0128137665,-0.33825096,0.31452328,0.43532833,-0.86167794,0.33099964,0.03454068,-0.23100841,-0.6378711,0.8095031,-0.020529823,-0.092291325,-0.34272408,0.45845175,0.31315055,0.13028693,-0.2104903,0.34209725,-0.3285796,0.055932086,0.22710045,-0.24077184,0.37267807,0.10259069,-0.3745794,-0.75349885,0.28608784,-0.5655188,-0.28244802,0.30211195,0.026563695,0.035411205,0.19260477,0.49659005,0.30871382,-0.3985788,0.1749285,-0.07149408,-0.2750647,0.6344052,0.45545444,0.6901676,-0.41076365,0.6638524,0.10990253,-0.12535411,0.25679985,0.008473863,0.43340942,0.023549093,0.42150506,0.4300762,-0.16651194,-0.10721153,0.5934704,0.25692132,0.2849664,0.12275803,-0.069103085,0.17708234,0.15476437,0.31430116,0.14094333,-0.71273404,-0.07833377,-0.18868794,0.120922424,0.65595984,0.1887176,0.16418046,-0.025713623,-0.17167379,-0.022440305,0.019477911,-0.14823048,-1.226262,0.28228027,0.24281545,0.86101794,0.47259364,-0.21932952,0.12377175,0.2735531,-0.1680817,0.18507354,0.44686362,0.025475403,-0.46056828,0.5367644,-0.6296986,0.40742812,0.04557203,0.12932684,0.18138339,-0.041957896,0.38836208,1.0430838,-0.36869183,0.015291467,-0.25938594,-0.29567865,0.10285657,-0.3412366,0.26153037,-0.5066166,-0.2993497,0.6740341,0.47399864,0.32561728,-0.25789902,0.012099278,-0.06693756,-0.2532843,0.10493225,-0.12499008,0.22419886,-0.082913995,-0.55794215,-0.25601497,0.59608907,-0.25825277,0.11136516,-0.1473583,-0.26153997,0.25189817,-0.13272159,0.14432849,0.09214294,-0.876973,0.10389645,-0.059748325,-0.43984652,0.47122112,-0.048237424,0.19005497,0.1831535,0.02741872,-0.08702152,0.45452574,0.017376324,0.73811597,-0.04948637,-0.18433084,-0.45300928,0.25693452,0.15627056,-0.20480485,0.10432271,-0.103173345,0.22425187,-0.53145885,0.47028008,-0.020114943,-0.42653838,-0.2604625,-0.22219448,-0.081379406,0.51900005,-0.1348821,-0.17262065,-0.12031084,-0.20897871,-0.22357355,-0.15315706,-0.10989977,0.10248408,0.26303768,-0.22281201,-0.1647685,-0.18409066,-0.084061116,-0.018045425,0.08718521,0.19418176,0.45811924,0.13518716,-0.46849266,-0.3716801,0.28250352,0.47131315,-0.13254328,-0.21712454,-0.27509388,-0.59540355,-0.52135056,0.38847756,-0.07388361,0.39411172,0.022113904,-0.15957825,0.5776729,0.19256829,1.1866695,0.1065562,-0.39018336,0.0465837,0.8131586,-0.07130644,-0.1730812,-0.44880256,1.1450882,0.46499392,-0.29490316,-0.17707008,-0.30701947,-0.28900668,0.1397234,-0.2865859,-0.04946941,0.11849115,-0.4908924,-0.12936518,0.042837545,0.3285716,0.03038075,-0.02858468,-0.049383,0.4439179,0.30779305,0.40777364,-0.5824035,-0.530065,0.356542,0.07827604,-0.056146633,0.33542976,-0.3259094,0.25213474,-0.72274023,-0.00084931153,-0.35948256,0.19099362,-0.19884223,-0.47449198,0.14682613,0.16857499,0.5136141,-0.44163418,-0.60283226,-0.30183333,0.3089781,0.4042294,0.25638315,0.6028315,-0.1776492,-0.030681066,-0.1824698,0.5040583,1.0854542,0.020118931,-0.08165995,0.37997308,-0.64078933,-0.69717914,0.18594521,-0.4791299,0.48191848,-0.21606816,-0.30672863,-0.5899268,0.27594984,-0.14466506,0.09834719,0.11678315,-0.8175685,-0.32324496,-0.018029528,-0.08782595,-0.15651833,-0.23470068,0.16872793,0.9997259,-0.32745907,-0.35291162,0.0067026266,0.15534739,-0.15944733,-0.63541853,-0.13791305,-0.2381786,0.3295107,-0.08924762,-0.27139616,-0.07654216,0.16838337,-0.52007955,0.23550153,0.045645762,-0.30005154,0.1005164,-0.25267705,0.19013499,0.76098275,-0.27694324,0.13324761,-0.42514113,-0.5053862,-0.653426,-0.5488391,-0.03845948,0.05124103,0.11261185,-0.5106365,0.111266516,-0.1884923,0.107752085,0.047687728,-0.39870596,0.50127625,0.15900753,0.32865128,0.03247853,-1.1919156,0.043816913,0.06479373,-0.09954214,-0.73170537,0.54614395,-0.3030919,0.73051256,0.20111394,0.03817649,0.23013978,-0.66922355,0.0014541248,-0.259843,-0.016572842,-0.7064455,0.34036306 +675,0.30494738,0.006913295,-0.6487917,-0.09470487,-0.103337795,-0.0056555155,-0.104893684,0.23501661,0.09470206,-0.4423706,-0.06192624,-0.061109625,-0.05609371,0.2742406,-0.18928453,-0.57099986,0.03269508,0.16728012,-0.3622845,0.21713367,-0.50908035,0.39106706,-0.0667417,0.1728421,-0.14980286,0.21720757,0.2516029,-0.1892007,0.046757605,-0.14729084,0.07320767,0.2849971,-0.5437577,0.38771945,0.044703897,-0.283888,0.07205827,-0.37757793,-0.44631073,-0.5747566,0.36122316,-0.7614721,0.4507567,0.24405307,-0.10913421,-0.044124402,0.1315361,0.2897433,-0.3060802,0.17440858,0.27159256,-0.16657053,-0.0896482,-0.22268552,-0.1497578,-0.1653566,-0.46898365,-0.02218419,-0.5685999,-0.06674092,-0.22812112,0.23325548,-0.37133268,-0.056982137,-0.26282027,0.26496178,-0.3904751,0.0053549362,0.23159912,-0.20346902,0.19463524,-0.3866655,-0.10736123,0.00017051055,0.19798444,-0.31047776,-0.18271974,0.24228351,0.13165864,0.4431977,0.041122913,-0.13424726,-0.18321824,-0.15129104,0.19821683,0.57762086,-0.24976079,-0.31578362,-0.15938625,-0.08755307,-0.055900134,0.21832587,-0.16292939,-0.3866202,0.061358433,-0.026049849,-0.1046033,0.27285445,0.61364335,-0.16933301,-0.17503351,0.37788233,0.4277612,-0.06954626,-0.027176132,0.18576966,0.13437127,-0.5393686,-0.36330283,-0.008230984,0.013694293,0.38824132,-0.050574765,0.40277487,0.73044306,-0.25448307,-0.055760648,0.12964112,0.08507312,-0.017334122,-0.30622783,-0.16879636,0.3054484,-0.4338142,0.102252826,-0.03825509,1.0105271,-0.038650237,-0.77626455,0.31362092,-0.49790478,0.06054358,-0.18379626,0.6717543,0.541359,0.40253797,0.05540822,0.84795976,-0.5585563,0.10490727,-0.007094035,-0.5826646,0.056073748,0.08909508,-0.046488386,-0.4066551,-0.18883258,0.27887446,0.06060206,0.040249083,0.2761235,-0.5626818,-0.088109955,0.038324155,0.75369805,-0.33313575,-0.025701366,0.45340538,1.0838838,0.7504171,0.08122574,1.0375348,0.24677035,-0.15931202,0.10590304,-0.24874347,-0.8823735,0.25655052,0.21861127,-0.3690255,0.12942372,0.17492335,-0.16889097,0.29112095,-0.4656873,-0.01744375,-0.21843848,0.29605606,-0.09989696,-0.1392708,-0.39202303,-0.15694387,-0.0013665227,-0.026851106,0.26253217,0.3682986,-0.31081533,0.12794198,0.050664067,1.5377138,-0.098715715,0.4099774,0.13092197,0.39776427,0.27965865,-0.009602987,-0.19183773,0.20885612,0.4094969,0.09387486,-0.5835442,0.16652346,-0.16079132,-0.54532796,-0.13085972,-0.28617096,-0.025733653,-0.23225117,-0.39518827,-0.110567205,-0.073979065,-0.4967947,0.4177522,-2.8215358,0.037011545,0.087816864,0.45911163,-0.1770387,-0.17722987,-0.21931149,-0.36492187,0.36491066,0.38408154,0.44210082,-0.56409645,0.35910195,0.610405,-0.26740542,-0.15525046,-0.5958876,0.18784057,-0.21763809,0.14000167,0.21301924,0.012737072,-0.11433887,-0.08134783,0.2970393,-0.2185854,0.08516429,0.27880928,0.3808382,0.15387648,0.37412736,0.029906806,0.504518,-0.5523959,-0.2508607,0.27612376,-0.4138169,0.1585261,-0.15568678,0.072385326,0.23899852,-0.40291178,-0.8749409,-0.53607345,-0.23195532,1.0955523,-0.25638598,-0.25416097,0.31120232,-0.14404172,-0.29178804,0.045354407,0.48426387,-0.23732,0.07974212,-0.7892276,0.15023616,-0.27592248,0.41036522,-0.04676831,-0.02244139,-0.5130224,0.4486952,-0.16157366,0.547098,0.3928307,0.16093346,-0.34732157,-0.5391842,0.12382461,0.93007416,0.1283913,0.18701823,-0.067392536,-0.043064874,-0.09771101,-0.06723714,0.1403502,0.6215967,0.77034706,0.034924824,0.15147324,0.352245,0.065280296,-0.006283934,-0.053975064,-0.40909517,-0.15632662,-0.032602426,0.58058524,0.6929171,-0.27468726,0.30439478,-0.14602658,0.36973298,-0.46372396,-0.3469319,0.47392827,0.64643604,-0.11574166,-0.2433208,0.6974869,0.5780337,-0.2629948,0.3884199,-0.6851504,-0.48073402,0.3312686,-0.20586263,-0.48633698,0.17695172,-0.35326985,0.13493967,-0.9734945,0.4526442,-0.22960673,-0.6294404,-0.49824575,-0.1948136,-3.6806047,0.20646736,-0.36139843,0.0028726505,-0.0040429556,0.10043047,0.25863403,-0.442474,-0.3349945,0.07701793,0.0709416,0.59248745,-0.006797706,0.09778369,-0.25021175,-0.054720815,-0.15203789,0.15899399,0.18644527,0.1596768,0.16857202,-0.5066641,-0.07888493,-0.19680335,-0.28699887,0.015411358,-0.5282698,-0.29610795,-0.0883716,-0.6703562,-0.536942,0.63007486,-0.44220206,-0.014029219,-0.3006803,0.09701434,-0.12613046,0.5405155,0.034543507,0.13461111,0.024474965,-0.16442434,-0.22457303,-0.22229253,0.46647856,-0.1463472,0.366707,0.4682639,-0.3100868,-0.09140411,0.46292418,0.4695948,-0.030102115,0.7484726,0.46261948,-0.13425292,0.25710064,-0.33699954,-0.18409,-0.47570598,-0.4316511,-0.074231535,-0.4250045,-0.4848058,0.047830287,-0.49488437,-0.77457684,0.6961746,0.013638964,0.05267001,0.018408675,0.11622949,0.32522207,-0.15261668,-0.24513772,-0.039923247,-0.06966947,-0.2799096,-0.29841238,-0.63700145,-0.44308996,0.0031330402,1.0650246,-0.19270478,0.04981212,0.07179784,0.00042588895,-0.14553915,0.13390891,0.1369789,0.38295788,0.4521254,-0.18505083,-0.5266065,0.53445584,-0.42203522,-0.17587644,-0.60457885,-0.048701745,0.66003215,-0.83414364,0.5841515,0.5061254,0.21775158,0.034757156,-0.5602173,-0.24177605,-0.041098516,-0.12005973,0.42669475,0.15603742,-0.8537761,0.48212045,0.32443824,-0.19762094,-0.70261836,0.44250357,-0.04003004,-0.28517452,0.024226364,0.34337145,-0.31601304,-0.03304825,-0.12494314,0.20681293,-0.3347883,0.3613091,0.05813769,-0.1977846,0.55259705,-0.2841088,-0.025755694,-0.4752308,-0.009655742,-0.6431592,-0.18217021,0.13820037,-0.055349715,-0.032682993,0.31026104,-0.22347978,0.45039588,-0.39320385,-0.022813309,0.061563935,-0.2958021,0.3123824,0.41319656,0.31740424,-0.42008317,0.6549714,0.0008504918,-0.05994767,-0.2500745,0.33661896,0.51265806,-0.046144146,0.617113,-0.20907107,0.0065133204,0.46051556,0.8112516,0.18681921,0.4554765,0.10984021,-0.010784548,0.16407968,0.20877872,0.22420979,0.08664779,-0.41430628,-0.024213117,-0.19187862,0.30337474,0.37656352,0.24551283,0.5922007,-0.19431199,-0.27065042,0.08794626,0.38735887,-0.082567364,-1.0477952,0.5955178,0.18348724,0.5477501,0.46207073,0.16214778,-0.018230494,0.43578073,-0.089237794,0.20969182,0.13260804,-0.100321665,-0.42095703,0.5764767,-0.60521996,0.4689874,-0.18616462,0.014331176,0.14359416,-0.12888804,0.43187407,0.7268032,0.15955965,0.12587208,0.06065299,-0.36641327,0.062249936,-0.31025416,0.36974204,-0.63336533,-0.24566159,0.6441174,0.57994866,0.26134002,-0.041325312,-0.10573928,-0.01565703,-0.012239981,-0.027503747,-0.089716405,0.16680548,0.0881067,-0.73382366,-0.24316296,0.56643164,0.1397821,0.06043958,0.0541091,-0.18697943,0.37774694,-0.338695,0.09267081,-0.10288207,-0.45228788,0.2212345,-0.25981468,-0.32466424,0.29198855,-0.42661873,0.42004043,0.17030114,0.0012475207,-0.4056219,0.3025079,0.18125564,0.6778008,-0.04883788,-0.23877107,-0.39312938,0.14693417,0.26307854,-0.2620344,-0.3235904,-0.3867845,0.004015136,-0.50905484,0.30066374,0.09313191,-0.21263434,0.24686076,-0.22237055,-0.0841593,0.58535933,0.0015725952,-0.15380031,0.09692742,-0.2884116,-0.23989886,-0.044177644,-0.2552993,0.25112686,0.24626073,0.060927026,0.04564545,-0.02691799,-0.24486431,0.13610281,0.088457696,0.3043714,0.35884666,0.2331747,-0.21410751,-0.06157277,0.09064979,0.6334423,-0.07362418,0.050590534,-0.27799237,-0.3895015,-0.142884,0.04741867,-0.19251591,0.27141786,0.17132053,-0.25090328,0.7332496,0.14693877,0.96435004,0.14610612,-0.14597903,0.047002032,0.47853068,0.10481803,0.019481558,-0.50343025,1.0738251,0.6595955,-0.24112016,-0.29340103,-0.1993944,-0.12639284,0.08300638,-0.20003244,-0.46443802,0.047041498,-0.68099785,-0.21796241,0.22090112,0.27461845,-0.020872382,0.041018017,-0.0528362,0.15137316,0.052898664,0.044301264,-0.6065358,0.01617366,0.28388196,0.41853082,0.09002623,0.14399722,-0.46304944,0.42806637,-0.55880386,0.06632879,-0.26950538,0.13692938,-0.22342494,-0.25525343,0.11557046,-0.097532116,0.4475922,-0.21577364,-0.011710034,-0.11585139,0.37364197,0.2741769,0.23330215,0.8342489,-0.24953564,0.06926091,0.08091591,0.57592905,0.9504833,-0.40985647,-0.1815842,0.5241158,-0.22134253,-0.7764518,0.18724276,-0.35623005,0.014171949,-0.17224771,-0.4496743,-0.25328365,0.34143984,0.07729583,0.10547613,0.076419786,-0.56927425,-0.048150145,0.2227609,-0.14540012,-0.1956577,-0.25037143,0.22971974,0.7757918,-0.2107095,-0.19711438,0.1450264,0.34029076,-0.1879079,-0.52170044,0.07456251,-0.3280821,0.24907741,0.14645094,-0.14745128,-0.15487115,0.0062988903,-0.32404533,0.2979506,0.27722505,-0.23134258,0.11096488,-0.21810254,-0.10113049,0.6941775,-0.2580546,-0.05972666,-0.65584236,-0.46781904,-0.9363404,-0.248415,0.4778942,0.09530052,-0.08035718,-0.41693813,-0.07780607,0.08369655,-0.20959836,-0.26805252,-0.21852449,0.45336708,0.005892671,0.3546354,-0.06923768,-0.9248848,0.091616884,0.19561052,-0.40655443,-0.61798567,0.603263,-0.16061017,0.77536213,0.026070787,0.038957044,0.43785605,-0.5767994,0.1057492,-0.24809025,-0.12012766,-0.9123026,-0.052107614 +676,0.20346159,0.043069012,-0.48208904,-0.052563842,-0.22653133,0.35637543,-0.33322674,0.06504212,0.22145955,-0.42950863,0.20222962,-0.059917845,-0.19776814,-0.06561917,-0.10160583,-0.48477185,0.088746265,0.06531774,-0.3016007,0.48758963,-0.44243246,0.33827126,-0.017340511,0.11853083,-0.27804878,0.2521718,0.24566114,-0.24427938,-0.16359115,-0.20855355,-0.02769722,0.18581231,-0.36312175,0.4101242,-0.060616586,-0.19452482,0.20740518,-0.23697051,-0.20603508,-0.44943735,0.034124617,-0.6339958,0.33015913,0.020815361,-0.2765043,0.38577425,0.15595043,0.027631382,0.040224753,-0.01768757,0.14541733,-0.4708798,-0.24734536,-0.39278972,-0.48199952,-0.5440333,-0.37622434,-0.10241479,-0.5900286,-0.31322426,-0.29211038,0.23571919,-0.32991308,-0.2923174,-0.08883393,0.27062437,-0.40677333,-0.04412815,0.09243725,-0.33076382,0.19632849,-0.7505573,-0.12856664,0.010970684,0.007284304,0.1311074,-0.012340706,0.32016176,0.10452208,0.49164963,-0.018075872,-0.21822041,-0.50293165,-0.3083392,0.2736554,0.39938825,-0.23287353,0.12043981,-0.20503001,-0.07267678,0.2817236,0.32401255,0.12673305,-0.14078118,0.010554073,-0.09166114,-0.3290636,0.21088655,0.42958653,-0.46950623,-0.02103012,0.4007595,0.37497655,-0.025097057,-0.31356812,-0.00794635,-0.16159946,-0.20467764,-0.17220981,0.126777,-0.03734836,0.32059813,-0.10688779,0.24308217,0.54408187,-0.10396954,0.058880776,0.026598662,0.053071566,0.24470878,-0.28177205,0.06912401,0.25259757,-0.5748671,0.01661909,-0.25792524,0.456558,-0.17926617,-0.63737273,0.28171873,-0.29410195,-0.045551974,-0.017917272,0.53410155,0.5258569,0.55747956,-0.13769445,0.74787945,-0.4464631,0.021157324,-0.21199396,-0.018144138,0.1786832,0.06300393,0.13664894,-0.48206708,0.1454192,0.1531747,0.05913563,0.033508763,0.3748241,-0.34728172,-0.1285908,0.41891253,0.8031242,-0.26942632,-0.026728861,0.3958882,1.2511177,0.7885973,0.027264904,0.88426036,0.20985249,-0.17918696,-0.14555204,-0.1913197,-0.55964303,0.0570346,0.29204595,0.538184,0.2743225,0.0028282963,-0.09206672,0.2645228,-0.16197842,-0.23589441,-0.13968009,0.41863286,0.18088391,-0.013204031,-0.299223,0.05427642,0.22157636,-0.04592854,0.17706427,0.26636246,-0.10234112,0.42362225,0.009493202,1.0112957,-0.076740116,0.14915211,0.17401057,0.27743542,0.22050786,0.19895901,0.09844285,0.5972004,-0.03437377,-0.053419802,-0.45727456,0.061832882,-0.20481771,-0.59361935,-0.09768124,-0.30783135,-0.18076563,-0.07954032,-0.14258817,-0.19797,-0.04556703,-0.48098737,0.29558164,-3.025577,-0.025128514,-0.07397397,0.18337575,-0.1818842,-0.19153866,-0.066401824,-0.24605708,0.75757146,0.31951383,0.33879095,-0.28953847,0.23511389,0.5387864,-0.38622296,-0.15712552,-0.49350518,-0.03929569,-0.1726613,0.59614706,-0.023025893,-0.30937794,-0.102935374,0.048235364,0.387283,0.095176965,0.16292405,0.31224754,0.29471976,-0.087188244,0.14178893,-0.08171085,0.48498374,-0.3157231,-0.16099232,0.2651257,-0.34875965,0.33712274,-0.3130768,0.17923848,0.30854973,-0.09984064,-0.3679533,-0.28892183,-0.10181306,1.3254973,-0.30167747,-0.603129,0.22274832,-0.063371435,-0.17789178,-0.016224688,0.3460366,0.009070776,0.1494681,-0.515647,0.16803701,-0.12642303,0.18834482,-0.09831607,0.16162124,-0.48206654,0.52358115,-0.073128775,0.53220063,0.5434134,0.29653513,-0.24129927,-0.25521606,-0.0013942011,0.60293025,0.3987798,0.05889923,-0.12540118,-0.18089288,-0.010468738,-0.30864665,0.2183196,0.4228442,0.5975698,0.0038755313,0.09878507,0.2866686,-0.22889343,0.079104446,-0.06066725,-0.32373816,-0.08053222,0.18544501,0.36328503,0.41418824,0.0042748414,0.2960511,0.13535263,0.42211068,-0.16752386,-0.37818378,0.29087582,0.4652602,-0.25073248,-0.21237126,0.556552,0.5630536,-0.19096714,0.52243024,-0.63598317,-0.4416843,0.47081572,-0.23049095,-0.46657217,0.024275722,-0.4091333,0.083410606,-0.7228326,0.23245206,-0.351872,-0.50925684,-0.6561074,-0.13387944,-2.7164624,0.08329633,-0.38410327,-0.060329918,-0.0985623,-0.02804397,0.27762556,-0.50821376,-0.42160282,0.15949118,0.12843543,0.4085608,-0.073726535,0.04743453,-0.40458485,-0.25589478,-0.06439574,0.400484,-0.09967508,-0.061161265,-0.2408325,-0.39427692,-0.0076264106,-0.15660846,-0.14315712,0.016656598,-0.32298613,-0.14381975,-0.1273867,-0.2593894,-0.06586513,0.52105266,-0.49353272,-0.13610236,-0.280106,0.12491135,0.09689696,0.08311102,0.101534955,0.19971758,0.22821885,-0.035364307,-0.009327058,-0.3654198,0.20777915,0.11410044,0.17592219,0.5792609,-0.07061359,-0.028165098,0.45745692,0.3115149,0.07282844,0.731707,0.1752784,-0.13477163,0.33299482,-0.30725688,-0.13760602,-0.5439982,-0.25910494,-0.0043527465,-0.3622873,-0.6200979,-0.06486114,-0.3030844,-0.68643135,0.51819503,0.13736218,0.20775734,-0.17666599,0.40495935,0.38292456,-0.2164889,-0.036125265,-0.07376619,-0.124203846,-0.19363883,-0.3154999,-0.8561436,-0.42838377,0.21066082,0.7807957,-0.18043023,-0.14175254,0.23048997,-0.07255341,-0.14170514,0.3174201,0.30202192,0.13779664,0.25736278,0.23394962,-0.5570861,0.5008504,-0.09413287,0.005632825,-0.44369197,0.054499187,0.5142447,-0.5858158,0.30884686,0.54546005,-0.0127091175,-0.12987351,-0.6853327,-0.10402218,0.18644068,-0.3290637,0.48377597,0.056601204,-0.8035424,0.53099203,0.15653376,-0.24205437,-0.6680399,0.26570725,-0.041605376,-0.11849532,0.08919494,0.39494172,0.17599933,0.029037014,-0.027550027,0.22433512,-0.3577982,0.35024822,0.05779355,-0.14063613,0.55891556,-0.13947317,-0.11501406,-0.6872059,-0.0068405606,-0.40386432,-0.19742674,0.348785,-0.013621323,-0.0030572684,0.25664294,0.010294041,0.48407042,-0.31751347,0.16679743,-0.1593565,-0.32476962,0.35328975,0.444946,0.4417795,-0.31213123,0.5887263,-0.13147861,-0.07932189,-0.041533664,0.0041816263,0.503952,0.092070304,0.35142732,-0.02143772,-0.121091396,0.20124,0.7716148,0.22724058,0.25761038,0.101456136,-0.17937809,0.47128436,-0.035573386,0.020761399,-0.12547764,-0.42414856,-0.14505233,-0.11423315,0.24010831,0.32830143,0.20734368,0.7167977,-0.11754075,0.037057456,0.07411211,0.17390627,0.12890099,-0.33380708,0.25111282,0.21515237,0.58247185,0.48421097,0.30147082,0.18020424,0.5699954,-0.26872844,-0.022003613,0.38356176,-0.10076984,-0.3214583,0.52637976,-0.5445144,0.36967528,-0.19444564,-0.025126029,0.17975211,0.023003966,0.49459207,0.85079,-0.16313177,0.08412254,0.07079804,-0.3678566,0.18570213,-0.12586778,0.0944083,-0.06739667,-0.2933085,0.47389334,0.22047243,0.3380614,-0.11949715,-0.08713882,0.34224182,-0.09288584,0.43658316,-0.024958227,0.06393113,-0.18365757,-0.30189383,-0.38006142,0.47978914,0.050068058,0.18914124,0.10798957,-0.10503256,0.26816344,-0.09980441,-0.17280585,0.16625303,-0.34800422,0.2021932,-0.060179688,-0.5911813,0.54582715,-0.0047996193,0.17956385,0.057572864,-0.024748445,-0.13891259,0.14852703,0.0902397,0.4355805,0.028677478,-0.24974447,-0.16134614,-0.31774867,0.052979667,-0.1785845,-0.062065963,-0.0968163,0.26946804,-0.6803736,0.31208742,-0.49387267,-0.0865885,0.15658917,-0.4008518,-0.0362384,0.31313112,0.015542293,-0.15303671,0.18163908,-0.09721348,-0.49219665,-0.35268387,-0.36886817,0.09046849,-0.31631574,-0.032657005,-0.2995785,-0.24824613,-0.14515033,0.22919147,0.043923184,-0.095587865,0.28962418,0.036212876,-0.46768615,-0.05880662,0.14409402,0.28281948,-0.17292026,0.2699666,-0.0051728636,-0.45708564,-0.39319092,0.17608795,-0.113111064,0.29766616,0.10423183,-0.46379825,0.7892918,-0.21083863,0.7832257,-0.05102635,-0.3973176,-0.06996818,0.44569722,-0.1588532,0.005373027,-0.2604872,0.8932131,0.7292038,0.031110862,-0.13751431,-0.49901015,-0.043487437,0.38214874,-0.23686174,-0.10919866,-0.12371953,-0.58347225,-0.26235667,0.20235597,0.1803043,0.09667853,-0.08810265,0.030656569,-0.08440078,0.37121636,0.11572716,-0.47891644,-0.14799239,0.4660976,0.12940873,-0.069480285,0.20495173,-0.24337229,0.3130495,-0.65969986,0.23920652,-0.3838815,-0.094065435,-0.14326364,-0.15240312,0.10414946,-0.12375434,0.16131714,-0.09608534,-0.3736477,0.051424053,0.087436125,0.13684136,0.3505506,0.56447864,-0.17748988,0.0478027,-0.1214838,0.4538948,1.0501447,-0.17878443,-0.14872153,0.2038573,-0.38358426,-0.7419558,0.15566641,-0.5418744,0.1048485,-0.073789544,-0.3764608,-0.24871387,0.08406195,0.039525643,-0.07020205,-0.04942538,-0.37300617,-0.14193776,-0.13314588,-0.3313177,-0.12220247,-0.022647634,0.06896675,0.7868507,-0.25806218,-0.08060556,-0.078663155,0.406209,-0.38151598,-0.61988497,0.2599022,-0.24708986,0.3126127,0.30149892,-0.21119127,0.12639016,0.1463127,-0.49980068,0.0878272,0.42743087,-0.28470936,-0.09064569,-0.41285247,0.29564333,0.5098629,0.032199915,0.01704146,-0.40726417,-0.55506825,-0.6341671,-0.30475536,-0.043854143,0.11762758,0.059159577,-0.3605886,0.15985402,-0.2899274,-0.094235614,-0.045414183,-0.46089244,0.3654409,0.21462926,0.39273617,-0.3998772,-0.6130321,0.04231862,0.08087593,0.018357275,-0.43560702,0.37346503,-0.24886008,0.7494708,0.055317663,-0.17112225,0.2092053,-0.5674744,0.3334339,-0.34998786,-0.25757757,-0.489693,-0.07785864 +677,0.19442262,-0.04108442,-0.46688086,-0.23837854,-0.37609437,0.16089624,-0.40442947,0.17799619,0.31556076,-0.3273568,-0.0031775713,0.02117629,-0.13898396,0.41605887,-0.15197569,-0.72523504,0.01266247,0.063675635,-0.7174006,0.48305163,-0.6087035,0.25644264,0.06431642,0.3814479,-0.017456468,0.3111042,0.15002395,-0.039230395,-0.035772227,-0.14404014,0.03718304,0.286758,-0.6715116,0.39396682,-0.067792386,-0.17471406,-0.14250818,-0.41229534,-0.141736,-0.7204637,0.13045149,-0.49822107,0.4389864,-0.23357473,-0.388328,-0.061971966,0.07350621,0.26949698,-0.11672942,0.049958125,0.26369023,-0.20180123,-0.14906403,-0.10979537,-0.1945533,-0.5052434,-0.42205185,0.011472656,-0.57151115,-0.24244808,-0.15228271,0.26963457,-0.29383805,-0.009032655,-0.17499058,0.50990546,-0.31037953,0.035658,0.19595848,-0.21424897,0.06961419,-0.732293,-0.16809177,-0.0068101725,0.42918387,-0.035749946,-0.15254502,0.18927594,0.32184246,0.55464846,0.1511905,-0.26810265,-0.2549478,-0.15480609,0.24330981,0.38437885,0.040464036,-0.1743372,-0.2795873,-0.17685445,0.15917717,0.08596417,0.041361444,-0.41515055,0.022349544,-0.019746363,-0.21007039,0.34117106,0.39446145,-0.3292002,-0.10961743,0.39962843,0.44503802,0.2816692,-0.27424133,0.26372054,-0.08895067,-0.43130475,-0.28992364,0.13836965,0.057386145,0.33942622,-0.17478006,0.35789356,0.63233936,0.022993365,0.06911289,-0.09788821,-0.09531277,0.013741557,-0.30221787,-0.08928373,0.09599959,-0.40582693,0.00707377,-0.21957538,0.66149414,0.0061332346,-0.84119886,0.32859632,-0.53170496,0.0973049,-0.09427958,0.6137621,0.9921881,0.35570204,0.06464706,0.73567706,-0.39288533,0.09500327,-0.099144086,-0.31010216,0.08085516,-0.1206235,0.20779486,-0.549707,0.014584827,0.047683287,0.06694857,-0.045823462,0.23250893,-0.44829655,-0.11120386,0.10911974,0.6605381,-0.2821742,-0.051517718,0.84141815,1.0094937,0.9915642,0.18558213,1.3864677,0.3125214,-0.0471244,-0.032625604,-0.28822625,-0.49521083,0.249082,0.3408526,0.5955475,0.3270481,0.031800892,0.071644105,0.52150625,-0.21417984,-0.07169638,-0.11850597,0.30415666,0.04251059,-0.22608414,-0.33380127,-0.21283303,0.3032909,0.1119344,-0.041405465,0.16047126,-0.1391231,0.5018103,0.042931836,1.0262861,-0.031686652,0.036279995,0.010637876,0.21274894,0.19264367,-0.3499821,0.05231651,0.1816616,0.28931668,-0.1319879,-0.5668871,0.06539105,-0.170925,-0.39892083,-0.32415077,-0.32515088,-0.11681285,-0.08643951,-0.38664392,-0.10958092,-0.053466566,-0.37980887,0.3900744,-2.611053,-0.15725301,-0.2888025,0.35079804,-0.14570373,-0.25680637,-0.27314433,-0.40926898,0.43296465,0.43106073,0.39607456,-0.48352817,0.6320403,0.36687547,-0.40439615,-0.14221129,-0.49774224,0.109319046,-0.07198923,0.3584219,-0.016313655,-0.26133853,-0.2820649,0.18876152,0.64765006,-0.01861255,0.0012461026,0.31945255,0.41078243,-0.16414663,0.5004825,0.06023687,0.48393407,-0.16386844,-0.21334635,0.35991484,-0.49477306,0.28871024,-0.041593466,0.2146654,0.49505073,-0.46205485,-0.7742795,-0.71328014,-0.49680343,1.3742346,-0.20762579,-0.48558363,0.2470382,-0.05582513,-0.39942616,0.17792214,0.49156567,-0.13093014,-0.03171677,-0.74994403,-0.0028931135,-0.090720676,0.20652269,-0.1313661,0.070430376,-0.38629517,0.63497216,-0.14993377,0.5220463,0.35194096,0.24040382,-0.12911484,-0.3136192,-0.016670467,0.86058146,0.4678463,0.036806922,-0.15640475,-0.2545166,-0.23456077,-0.17038608,0.13085623,0.6584943,0.47387266,0.037975363,0.14162509,0.31466478,-0.31283653,0.08217872,-0.15506588,-0.23308976,-0.0971152,0.29649225,0.56111085,0.54623234,-0.029046146,0.40992215,-0.08797281,0.14784479,-0.18995453,-0.58226615,0.4394491,0.59094363,-0.21091717,-0.23117529,0.51061386,0.41341978,-0.30087027,0.38823164,-0.37558654,-0.34220937,0.43443707,-0.027927602,-0.4388604,0.04160107,-0.41917315,0.0469815,-0.88773763,0.253216,-0.30069986,-0.7328301,-0.5687991,-0.2492471,-3.16758,0.23605631,-0.09401487,-0.09046699,-0.22362843,-0.1542478,0.46120924,-0.47440994,-0.59947956,-0.012358767,0.017636554,0.6029295,-0.09654482,0.030882759,-0.3189765,-0.2724565,-0.1342335,0.19919129,0.083863385,0.28681836,0.06221634,-0.2573621,0.08786621,-0.26704133,-0.4382814,-0.07286242,-0.568847,-0.51335025,-0.26642838,-0.3935269,-0.13448647,0.68801945,-0.56553245,-0.035751645,-0.35510254,-0.028466217,-0.13998713,0.39644006,0.20097525,0.16182755,0.31228462,-0.0020753741,-0.28813094,-0.3105579,0.03096244,0.06434766,0.22906014,0.42025426,-0.06913407,0.25276995,0.56724,0.52137107,-0.0013805032,0.7990628,0.21234964,-0.05416997,0.4366802,-0.23330587,-0.22675459,-0.576998,-0.351773,-0.08494072,-0.45285702,-0.48599836,-0.08792755,-0.29353043,-0.73234266,0.31685665,0.16162226,-0.009617758,-0.13298628,0.25195992,0.36719003,0.06283293,0.011187434,-0.026111007,-0.2052522,-0.4563385,-0.48655817,-0.65707296,-0.6192235,0.029140584,1.2001472,-0.078450225,0.0036605755,0.08934315,-0.24557829,0.053967126,0.17210627,0.14509048,0.0292278,0.3058822,-0.0713124,-0.7427406,0.22769256,-0.25715265,-0.09017709,-0.6061766,0.009011551,0.827273,-0.50288117,0.5539125,0.3866023,0.33794945,0.049562264,-0.5914386,-0.14438556,0.15601633,-0.33643574,0.6389395,0.296944,-0.6958189,0.5617388,0.15262583,0.017302616,-0.7346879,0.49272823,-0.015981544,0.041712444,0.13883041,0.38978052,0.054367255,-0.06507353,-0.14030828,0.25958598,-0.37714908,0.28767577,0.27604085,0.023189982,0.4644044,-0.06340795,-0.2813821,-0.47371617,-0.26492897,-0.5418877,-0.18434265,-0.11588202,-0.08223956,0.018552292,0.12513493,0.0047667227,0.43752283,-0.15186734,0.19144711,-0.14249577,-0.22412007,0.28419378,0.5694676,0.33713046,-0.4031983,0.5580762,0.17195159,0.11732607,-0.32314828,0.1356692,0.4818168,0.29418704,0.46560037,-0.19105896,-0.08875907,0.09466247,0.81731975,0.19135128,0.46114406,0.02555612,-0.37134907,0.2973963,0.08039499,0.23946899,-0.19731806,-0.18336102,-0.021631204,-0.10820801,0.23771225,0.3796275,0.056005057,0.32358217,-0.050604302,-0.11955008,0.25708923,0.08658333,-0.07621109,-1.1144536,0.4426839,0.3221997,0.68302655,0.4378473,-0.052247558,0.13798815,0.4930486,-0.26268402,-0.027758574,0.19742277,0.091364734,-0.41057938,0.5529197,-0.6429599,0.36658195,-0.15230264,-0.0007906437,0.110255785,0.199303,0.41594297,0.808839,-0.18590838,0.1976046,-0.06279168,-0.26651365,0.030358862,-0.17890498,0.15091263,-0.4383014,-0.3107565,0.6124117,0.42863286,0.39733407,-0.42860517,-0.08423347,0.14245544,-0.17345542,0.11560392,-0.26568672,-0.15591334,-0.113550946,-0.5692046,-0.29407248,0.5320395,0.007960105,0.11756849,0.14364907,-0.4164602,0.2709719,0.13345914,-0.015503184,0.074542016,-0.46190757,-0.08042376,-0.24321601,-0.46756908,0.28069907,-0.45826727,0.2393898,0.16415204,0.016316913,-0.3166307,0.19994284,0.076759726,0.7273503,0.05713958,0.004163885,-0.036620412,0.0120734535,0.3186752,-0.32537684,-0.14316653,-0.44345924,0.13026337,-0.6334931,0.32913667,-0.27349862,-0.26181394,0.2614888,-0.0054546595,0.042525537,0.33259323,-0.16742381,-0.08104412,0.15613694,-0.03073702,-0.23167762,-0.12821609,-0.33179057,0.28700906,-0.064358376,0.12201746,0.03604184,-0.05514543,-0.14368679,0.32199094,0.11679853,0.24783559,0.35357887,-0.01773431,-0.4142803,0.028045952,0.039403837,0.34355494,0.2128494,-0.16769084,-0.20052037,-0.3973894,-0.3576558,0.44095916,-0.15737012,0.054346662,0.08949935,-0.47249776,0.6248224,0.17737307,1.1252111,-0.071658984,-0.37822726,0.15896502,0.33878967,0.05203151,0.077747256,-0.25416118,0.76878524,0.5884337,-0.17548493,-0.0008442163,-0.53130734,-0.25183693,0.16059461,-0.29272625,-0.15131272,-0.25935227,-0.7475013,-0.19123432,0.04937656,0.11367906,-0.1185296,-0.12922363,-0.067746304,0.033433247,0.10106587,0.35019347,-0.5405258,0.055154514,0.3540899,0.22617769,-0.05400304,0.12745555,-0.398445,0.40821832,-0.8804813,0.20272343,-0.4070526,0.056278214,-0.09114747,-0.1998852,0.14103311,-0.055174172,0.32085836,-0.13935891,-0.3545383,-0.36158523,0.61758435,0.2619985,0.17102163,0.72611755,-0.21974698,0.0042099315,0.13958699,0.5896371,1.2449639,-0.13772836,0.11562524,0.21212082,-0.3027694,-0.392778,-0.049891602,-0.4863469,0.014358664,-0.052164417,-0.32446238,-0.28859094,0.2649052,0.16088027,0.020578442,0.02365206,-0.44977185,-0.0907604,0.25284594,-0.26461053,-0.24837925,-0.27302852,0.14383973,0.58716506,-0.2743594,-0.30367073,-0.11893005,0.42620337,-0.3433244,-0.52124906,0.12009639,-0.19358549,0.4131743,-0.025068734,-0.39570016,-0.034438275,0.22539443,-0.47786272,0.07481345,0.27866998,-0.3331632,0.035683047,-0.32799193,-0.10119326,0.90014845,0.03859301,0.34603196,-0.5457269,-0.56206286,-0.7484022,-0.19828402,0.112092905,0.32940662,-0.13130035,-0.48189482,-0.11308085,-0.16187133,-0.047717396,0.17278813,-0.4959952,0.31433246,0.15279737,0.54991895,-0.17829841,-0.92563915,0.032157354,0.18977748,-0.06777822,-0.43384734,0.43816593,-0.07482397,0.70249003,0.13848025,0.04325699,-0.09858798,-0.5652513,0.35922113,-0.20509571,-0.1591414,-0.60563856,0.07815067 +678,0.52715176,0.17145503,-0.4281926,-0.071191356,-0.3952689,0.2119792,-0.17940746,0.0068081687,0.091441095,-0.4423807,-0.060672157,-0.03921153,-0.086352,0.11428442,-0.13702825,-0.41724086,0.20798641,0.26010457,-0.5035739,0.6118721,-0.3202312,0.39206618,0.22011395,0.19083996,-0.048311543,0.1396941,0.30964807,-0.20571952,-0.17714489,-0.23903005,-0.37182572,0.09063603,-0.7476804,0.34096432,-0.2557424,-0.41258204,-0.033483528,-0.16740215,-0.19780564,-0.6882024,0.24200293,-0.70848846,0.56622773,-0.027479768,-0.21190284,0.10782435,0.21950598,0.2616607,-0.13996144,0.068157256,0.167599,-0.10919482,-0.3126422,-0.23163123,-0.119015105,-0.39986324,-0.3635552,0.011436291,-0.43514147,0.06292243,-0.29346135,0.26369673,-0.18558352,-0.023469277,-0.11553007,0.17741136,-0.23157199,0.45396334,0.15909109,-0.0015372984,-0.013552441,-0.536688,0.0696804,-0.20516764,0.37971184,-0.087689854,-0.1946366,0.21283473,0.35221872,0.5817013,0.11271199,-0.21780348,-0.17474128,-0.14539607,0.08621386,0.39976403,-0.20511997,-0.31706727,-0.1932297,-0.09067767,0.26505202,0.2571254,0.14254516,-0.3939522,-0.03636769,-0.105219945,-0.20830183,0.25410026,0.5206522,-0.41535234,-0.13598716,0.40305042,0.5530995,-0.0069462694,-0.038828276,-0.007351181,-0.06465808,-0.42739183,-0.17987569,0.12181441,-0.06729386,0.4409542,-0.11505675,0.16520707,0.5503034,-0.14394379,-0.062160127,0.102977276,-0.014755589,-0.0989441,-0.12145529,-0.10671203,0.21035239,-0.6450254,-0.09275267,-0.1783227,0.84566265,0.12893379,-0.5410399,0.30548877,-0.3796519,0.16857341,-0.022769267,0.48500746,0.66169053,0.37144002,-0.03143016,0.88745236,-0.53624356,0.053598545,-0.027334185,-0.32108957,0.082467794,-0.17516372,-0.00494938,-0.47923502,0.08829302,0.023197511,0.15338917,-0.02661562,0.26169175,-0.6984916,-0.2986358,0.024171717,0.7038869,-0.3825268,-0.011400531,0.6678092,0.8989577,0.93853426,0.039305307,1.3416356,0.33550498,-0.14592443,-0.15332295,-0.21260054,-0.68750185,0.106320806,0.26172733,-0.20974013,0.15001214,0.17761554,-0.07414212,0.38244852,-0.36600986,-0.14779274,-0.2634381,0.44558653,0.01359644,0.011706643,-0.40094477,-0.20063722,0.19059488,0.03130261,0.29765087,0.33131823,-0.19652936,0.21483842,0.18677178,1.7578393,-0.24245615,0.0683293,0.093702875,0.23914859,0.29549462,-0.0829677,-0.07736106,0.24122533,0.35419878,-0.070602596,-0.27900392,-0.24330863,-0.2673015,-0.49861264,-0.1565639,-0.18154939,-0.24306929,-0.12974718,-0.16538413,-0.33801037,-0.031676967,-0.15086485,0.65423214,-2.5490675,-0.09718341,-0.19805086,0.3203771,-0.39346582,-0.3452531,-0.19501725,-0.44882834,0.5227437,0.19941318,0.50653315,-0.63408446,0.31948677,0.2964101,-0.32295328,-0.2685801,-0.7025162,0.12746306,-0.02809178,0.43589726,0.0073608863,-0.22697802,-0.03191692,-0.0055956175,0.33338732,0.0150914015,0.1626162,0.2827251,0.43254825,0.1826013,0.39046612,0.3043715,0.6842272,-0.37076086,-0.10745162,0.48247203,-0.2780551,0.43032378,-0.2432428,0.090379864,0.42265773,-0.40007097,-0.60551035,-0.7612595,-0.06566828,0.96904004,-0.19842926,-0.4751073,-0.0234358,-0.20262785,-0.14332314,0.0026700217,0.17802192,0.050234985,-0.055118315,-0.66336656,0.21566537,0.038064163,0.25229922,-0.07035182,0.05437886,-0.38588116,0.6673311,-0.24472907,0.39967433,0.47746602,0.29587662,-0.08086419,-0.3797707,0.14665517,1.0050775,0.41303682,0.08700186,-0.21864878,-0.37527612,-0.3005863,-0.22946745,0.040195093,0.4269723,0.5965828,-0.06471499,-0.05097439,0.31901526,0.1377706,-0.03938872,-0.04688338,-0.36441544,-0.1784545,-0.19707242,0.48925233,0.6686562,-0.1371139,0.42228875,-0.13405932,0.16823435,-0.13954984,-0.5847789,0.6657938,0.90095174,-0.32731166,-0.19455248,0.41434687,0.31693926,-0.2242665,0.4259895,-0.6610102,-0.4582822,0.32923028,0.041244,-0.21975075,-0.035283905,-0.2974134,0.116756275,-0.6772328,0.44632226,-0.21008208,-0.28661767,-0.51821166,-0.19761837,-2.159113,0.22319135,-0.24625683,0.104484595,-0.1528589,-0.091967925,-0.003105472,-0.45228162,-0.41270745,0.19648933,0.010425217,0.45292968,0.15824796,0.33039,-0.18150151,-0.20488298,-0.29022747,0.18954314,0.12732394,0.288839,-0.1212192,-0.3872326,0.013326722,-0.05903049,-0.20490223,0.030222801,-0.6635973,-0.4668689,-0.2233045,-0.26733506,-0.1404307,0.76764244,-0.47055316,0.0811038,-0.37429163,-0.0391865,-0.19198763,0.22947678,0.20124161,-0.00784307,0.04052807,-0.0012165132,-0.0688262,-0.38035086,0.14838418,0.11337298,0.22754705,0.46764576,-0.25982666,0.14575675,0.17750667,0.5504453,-0.027410079,0.76030385,0.29916975,-0.27746853,0.35759157,-0.15858798,-0.23154055,-0.63083076,-0.49147964,-0.12387711,-0.46964237,-0.29752672,0.06246989,-0.37580255,-0.7153516,0.47217578,0.04350213,0.117063425,0.018864794,0.39321995,0.50704473,-0.26467934,-0.027302016,-0.08278572,-0.18254086,-0.60811996,-0.42387536,-0.55050004,-0.34944236,0.3080483,1.1215017,-0.34544846,-0.077978835,0.13942298,-0.20813236,-0.030736316,0.024367914,-0.048602134,0.056097887,0.48066044,-0.04837064,-0.64626926,0.41333896,-0.10051209,-0.099030845,-0.55990934,0.27888894,0.5459148,-0.64140654,0.2239179,0.46787474,0.22194992,0.14831264,-0.5727336,-0.24025275,-0.07231295,-0.31218654,0.30648956,0.19728717,-0.48226178,0.42516539,0.23615158,-0.03149165,-0.67412806,0.47198436,0.12044738,-0.27124634,0.08725737,0.3329933,0.14947769,-0.053838644,-0.12647447,0.06530348,-0.49392438,0.31175038,0.21930446,-0.176438,0.28488678,-0.24587917,-0.49900824,-0.597824,-0.067600176,-0.4814852,-0.4511713,0.11839781,0.016266398,0.023892147,0.10755296,0.30348745,0.34003562,-0.46784627,0.06036682,-0.01215802,-0.06979637,0.40038916,0.27553636,0.40016088,-0.4072823,0.5467751,-0.0057852725,-0.18147063,-0.18652633,0.19846201,0.3996626,0.08738414,0.27936107,0.049766675,-0.089983776,0.27659836,0.70327413,0.19981197,0.14374065,-0.024872405,-0.25726786,0.1315109,0.060532387,0.11521318,0.118030675,-0.48053715,-0.016049694,0.009147815,0.21953723,0.37686592,0.24766639,0.32490933,-0.07010886,-0.18789649,0.020228041,-0.060744874,-0.016315874,-1.1320401,0.07825593,0.21778052,0.69649184,0.4788732,-0.13134201,0.050063167,0.4561003,-0.2622645,0.17933668,0.31269205,-0.23764788,-0.2379524,0.46210894,-0.6411214,0.38479662,-0.022266464,0.12191838,-0.015545408,-0.025122182,0.13227542,0.9435318,-0.10363061,0.0802641,-0.27879283,-0.2559772,-0.08368646,-0.16398653,0.1402566,-0.26263142,-0.34148803,0.77634966,0.36471677,0.4516977,-0.29326892,-0.020433849,0.093414165,-0.19010103,0.14259882,-0.0048184358,0.19889918,0.0937648,-0.47204888,-0.14388113,0.5703191,-0.23798239,0.06192142,0.11779129,-0.20861673,0.21346878,-0.22986206,0.024378546,-0.07118576,-0.61417097,-0.04494703,-0.34460217,-0.024711227,0.3445863,0.005515505,0.15448812,0.08392215,-0.018849531,-0.15568635,0.3386889,-0.014251421,0.5969566,0.070623875,-0.07800984,-0.3847904,0.2077692,0.24383366,-0.30728877,0.11765748,-0.11112804,0.17613223,-0.7217226,0.31017804,0.056896135,-0.18205439,0.07447236,-0.24541178,-0.058377188,0.52554715,-0.02079545,-0.07900915,0.086048335,-0.023299877,-0.1466842,0.033462625,-0.059050377,0.09410349,0.33024535,0.04265669,-0.017882152,-0.18338992,-0.41752687,0.15595917,0.23751368,0.29988256,0.23935632,0.042385396,-0.47359332,-0.043748006,0.026676238,0.43719012,-0.15334378,-0.14805673,-0.17168696,-0.47200558,-0.4921563,0.39398357,-0.15811457,0.10556752,0.01650124,-0.20359042,0.68731105,0.11685688,1.1807845,0.15607615,-0.26766706,-0.051069085,0.6686733,0.004008307,0.10086775,-0.3157976,0.872066,0.461745,0.02842921,-0.10593085,-0.18374467,-0.1951922,0.23479453,-0.14379896,-0.056836996,-0.04134098,-0.46990538,-0.28647935,0.16872187,0.115403004,-0.007835348,-0.050556697,-0.090262085,0.23610808,0.0125969015,0.38901645,-0.61663663,-0.23763813,0.381066,0.24887836,0.01570795,0.11626877,-0.4929978,0.42108327,-0.4668323,-0.026600862,-0.29549712,0.08492001,-0.1767515,-0.13831075,0.2058082,-0.07227319,0.34242517,-0.5632426,-0.4392212,-0.24936014,0.38803327,0.34181932,0.3186614,0.6154647,-0.22842906,-0.03353652,0.0066560297,0.46465328,1.0597286,-0.18662576,0.039292533,0.47757372,-0.3763814,-0.49127883,0.23881842,-0.32340717,0.09858849,-0.00706583,-0.34849066,-0.3887369,0.36960375,0.12963974,0.10619842,0.07728645,-0.91877544,-0.022196932,0.2930054,-0.18019979,-0.17271227,-0.22474563,0.21034975,0.80764526,-0.1379169,-0.31712794,0.1554699,0.23628013,-0.2504988,-0.6490612,-0.1707233,-0.3908583,0.336042,0.24466464,-0.28650805,-0.16907164,0.045732252,-0.4637242,0.030397745,0.20418972,-0.33834234,0.044294957,-0.23098981,-0.043460775,0.72348523,-0.025609747,0.06127778,-0.4638207,-0.25296324,-0.759093,-0.40221095,0.2567481,0.27680406,0.057710625,-0.44013664,-0.18734758,-0.110811375,-0.09915547,-0.03714658,-0.5092559,0.48468623,0.20743774,0.20741639,-0.08612427,-0.9149169,0.06343686,0.034660805,-0.12081595,-0.4217467,0.3795195,-0.027336018,0.78077203,0.13580571,-0.13733292,0.36181426,-0.7079911,0.21166916,-0.24604355,-0.010183573,-0.8774465,0.08937016 +679,0.3390344,-0.24102785,-0.54592836,-0.12514636,-0.17472938,0.1385032,-0.28932714,0.17836931,-0.19284895,-0.6097832,-0.04203561,-0.21592392,-0.14606963,0.2462906,-0.24863802,-0.2097988,0.033318046,0.111535296,-0.40375808,0.44832346,-0.5702093,0.279468,0.22776058,0.1631328,0.016763167,0.023716053,0.41188234,0.10185744,-0.19946285,-0.41703388,0.058632065,0.1091254,-0.5978436,0.2885422,-0.21248344,-0.5235602,-0.005592242,-0.28238598,-0.2494764,-0.6895765,0.2910041,-0.9504343,0.53278047,-0.0075900084,-0.32046506,0.33074087,0.3118092,0.22219793,-0.015381313,0.007379417,0.12963027,-0.31997964,-0.13301043,-0.17844924,-0.005451594,-0.30043608,-0.5925702,0.06033815,-0.5701045,-0.2022398,-0.22711262,0.32158566,-0.3649513,0.11762786,-0.20784755,0.4385347,-0.43034413,-0.20152135,0.025773976,-0.122306995,0.39190295,-0.6500236,-0.11232434,-0.1107275,0.031269126,-0.36713788,-0.088031895,0.20484729,0.19189999,0.5444228,-0.07547128,-0.20868409,-0.13640407,-0.20279564,0.06671076,0.45292684,-0.08640312,-0.29606327,-0.17122982,-0.11048518,0.32115704,0.15657486,0.05202267,-0.24696873,-0.03614485,-0.05383346,-0.2895895,0.266637,0.45789608,-0.35293797,-0.14309561,0.29998925,0.6254905,-0.07962345,-0.10794793,0.088842936,-0.02750676,-0.45360637,-0.12648189,0.20300779,-0.07789622,0.5072061,-0.17040071,0.4474006,0.4544395,-0.27854124,0.0787856,0.18777673,0.06253521,-0.12618445,-0.22956453,-0.26661715,0.33452657,-0.5932906,-0.06144802,-0.32841745,0.8185256,-0.14491911,-0.6778409,0.31182724,-0.3916134,0.072442316,-0.07287841,0.69920844,0.47333077,0.47922176,0.21814802,0.64052093,-0.5083878,-0.088054895,-0.12880234,-0.2848674,0.07045633,-0.14628589,-0.15394977,-0.46500507,0.0685461,0.16352174,0.1453209,-0.22463252,0.51645666,-0.44533896,-0.055706408,0.104894,0.60845625,-0.33979708,0.04197678,0.74559987,1.2315131,0.9914818,0.19346774,1.045365,0.20928948,-0.12159594,-0.11113645,0.14500631,-0.61118287,0.24965961,0.40452555,0.30987826,0.2723969,0.020111501,-0.08316916,0.34434208,-0.44820514,-0.05544836,-0.16691026,0.36163187,-0.027950678,-0.028815577,-0.4624373,-0.17016576,0.17180757,0.08129644,0.08416467,0.217317,-0.15827115,0.46248397,0.12065121,1.2880744,-0.3327033,0.14750938,0.17549837,0.3485581,0.14128684,-0.041411962,-0.021224814,0.016159454,0.33522585,0.19867352,-0.4800469,0.08179369,-0.03199875,-0.67394215,-0.18441097,-0.25114185,0.0065033096,-0.36505386,-0.45257622,-0.08942884,0.034442294,-0.53870004,0.33534092,-2.7994182,-0.12156941,-0.20541203,0.22742666,-0.16934986,-0.28494978,0.083897606,-0.3516379,0.6877166,0.5568472,0.3531359,-0.64460546,0.42273286,0.37474087,-0.2116436,-0.12903306,-0.76450884,-0.11827135,-0.16551761,0.46244884,0.19863895,-0.31076628,-0.011645743,0.23131481,0.48373896,-0.25699973,0.1041054,0.22938149,0.22170578,-0.0020070374,0.47057357,0.20291713,0.36894968,-0.42443445,-0.13880686,0.50816804,-0.40990463,0.07230585,-0.02211796,0.23303308,0.33859238,-0.4951413,-0.7241093,-0.66373765,-0.33031029,1.3293947,-0.19520216,-0.6075367,0.17813227,-0.0039805346,-0.26648983,-0.014556655,0.26961723,-0.18929055,0.17106903,-0.8291535,-0.017286394,-0.1104623,0.38574633,-0.12531279,0.053717796,-0.59072465,0.5572632,-0.19908687,0.56214654,0.62583965,0.21266893,-0.5622319,-0.52205837,0.050978024,1.1036714,0.50188875,0.038643416,-0.21754079,-0.15509783,-0.17329288,-0.077998504,0.25491932,0.4039177,0.8788271,0.11240273,0.2273136,0.28250092,-0.09034339,0.044798028,-0.053513058,-0.37212446,-0.093648806,0.2184746,0.62776214,0.33395058,0.060609728,0.38336286,-0.15573081,0.32936552,-0.29583725,-0.42320102,0.37795863,0.662741,-0.13913727,-0.32792854,0.5519692,0.67438316,-0.21630304,0.53122175,-0.6249666,-0.45258564,0.31798056,-0.111272044,-0.41521832,0.23671147,-0.4019268,0.26145738,-0.92800206,0.40417957,-0.46734577,-0.57080495,-0.6911196,-0.27043298,-3.4815395,0.17468958,-0.12658569,-0.19795653,-0.017390981,-0.2815284,0.50624734,-0.4904919,-0.5576585,-0.046080004,0.006587959,0.62812144,0.10745361,-0.057329442,-0.3384554,-0.051557235,-0.13388862,0.21600506,0.09348477,0.06190483,-0.17515208,-0.4580848,-0.016131299,-0.47261265,-0.43681675,-0.11413805,-0.52269703,-0.52390873,-0.2021015,-0.3606171,-0.48496947,0.63121307,-0.24524128,0.043634158,-0.2579175,-0.07007528,-0.12717324,0.422977,0.12930802,0.091212735,-0.051864453,-0.056907002,0.04105442,-0.3206785,0.119852066,0.05225564,0.1216708,0.4775618,-0.30630332,0.19200294,0.47091508,0.43621212,0.06848702,0.86719483,0.34849378,-0.10973918,0.28959203,-0.21783063,-0.30280238,-0.5696693,-0.23409653,0.058385886,-0.42714757,-0.34233838,0.05659819,-0.20733924,-0.7668613,0.70418113,-0.07401681,0.042520374,-0.10294461,0.39519888,0.23255464,-0.08399362,-0.14135072,-0.1674186,-0.11900461,-0.46384373,-0.42903295,-0.9195805,-0.55692023,-0.29826054,1.0510174,-0.0061639654,-0.0492598,0.1099842,0.06764733,0.12411262,0.13928273,0.06077535,0.24753849,0.29775813,-0.07240527,-0.7111886,0.5014776,-0.17806281,-0.011198993,-0.3487626,0.06396266,0.66725606,-0.5078306,0.17490618,0.56486756,0.24279203,-0.24023339,-0.5732101,-0.01359206,0.014752422,-0.24895878,0.5996313,0.28524905,-0.84042674,0.68018305,0.40507025,-0.15213516,-0.7298795,0.51691103,0.086349234,-0.1103956,0.060057033,0.41024742,-0.24468152,0.066192694,-0.2716781,0.19722077,-0.43933567,0.22045276,0.23372473,0.019133972,0.5323232,-0.2898977,-0.17460783,-0.4360575,-0.013564774,-0.53214914,-0.147135,0.051977877,-0.13281499,-0.04904294,0.4500153,-0.22209825,0.4841487,-0.3015113,0.057230413,-0.04208895,-0.3785081,0.4404948,0.6011147,0.304736,-0.30338874,0.6981603,0.015347115,-0.09030168,-0.49499062,-0.03510183,0.4804981,0.15920778,0.34451532,-0.155,0.050962713,0.46866664,0.76840764,0.39467812,0.515158,0.060674954,-0.12510657,0.12302731,0.12696627,0.33081517,0.007960984,-0.33295974,-0.08464755,-0.11488806,0.19889078,0.39873955,-0.015680363,0.4835408,-0.16048078,-0.17625438,0.08129897,0.0675829,-0.2911807,-1.2071457,0.49182197,0.17585638,0.6020903,0.54922426,0.029777065,0.24658073,0.58341473,-0.3708165,0.06858394,0.22461009,0.14381497,-0.39687297,0.70447963,-0.7427526,0.407609,-0.021335747,0.07790675,-0.07232134,-0.18692072,0.4755647,0.6808923,-0.0045940303,0.21865283,-0.08890456,-0.31102046,0.25553337,-0.34981316,0.2499955,-0.19257845,-0.20826702,0.78689873,0.34296325,0.39719433,-0.16405642,-0.094003536,0.26689187,-0.056921426,0.31316572,0.050758403,0.14679101,-0.24865028,-0.5086914,-0.18271463,0.5597533,0.2595223,0.100034036,0.042195383,-0.3111139,0.24934582,-0.049544085,-0.024555316,0.013015238,-0.48954153,0.16843523,-0.35839915,-0.3462934,0.33279434,-0.6022228,0.18557023,0.1198662,0.0016377823,-0.36506864,-0.08480025,0.279975,0.49323335,-0.008431579,-0.16764878,-0.037596192,-0.09858203,0.19204892,-0.2798231,-0.21242373,-0.29229906,0.113968134,-0.6506907,0.36349502,-0.18125196,-0.23757567,0.38629183,-0.15014586,-0.10596197,0.3985853,-0.049426463,-0.07892721,0.23290493,-0.0026524153,-0.14689311,-0.25277668,-0.19275333,0.22520241,0.010192611,0.04593013,-0.006958208,0.07958969,-0.15056525,0.48196343,0.07289599,0.3118345,0.36580148,0.09296378,-0.50791794,-0.029063037,-0.20174117,0.54623574,-0.015181167,0.012585214,-0.23658751,-0.37846184,-0.15842523,0.16594175,-0.1596109,0.23237409,-0.042417794,-0.39268917,0.9879132,0.01490587,1.0276192,0.03536987,-0.51409966,-0.12010793,0.49520272,-0.104753666,-0.12553671,-0.30130553,0.97690386,0.4662209,-0.08579748,-0.15168977,-0.3503829,-0.020226171,0.18306856,-0.16344038,-0.281394,-0.14243726,-0.6873649,-0.30217698,0.27882147,0.427144,-0.14586833,-0.10870349,0.12589455,0.34011966,-0.018387983,0.27526644,-0.46080175,0.19295467,0.48246124,0.18502744,-0.089261055,-0.07234083,-0.40024614,0.30592546,-0.7347153,0.08306636,-0.2810769,0.074603595,0.07949293,-0.22784428,0.22427575,-0.029582402,0.2342015,-0.19475934,-0.20996201,0.033792265,0.40971595,0.19530031,0.13970916,0.688919,-0.20643954,0.2750595,0.06655661,0.36823827,1.1724857,-0.30232844,-0.03485509,0.116282165,-0.35518023,-0.6042105,0.2199754,-0.34008855,0.20237373,-0.02772659,-0.42014378,-0.4005127,0.282836,0.32681245,0.007682649,-0.0311355,-0.5117463,-0.17711642,0.24646099,-0.27152577,-0.24800839,-0.44212732,-0.04076916,0.5171885,-0.18814087,-0.22558863,-0.011972998,0.48258516,-0.40168473,-0.60118836,0.047672216,-0.40348843,0.3000929,0.030863816,-0.27496555,0.037601504,0.10024423,-0.41725573,0.2111344,0.32437465,-0.29744557,-0.009232319,-0.24572252,0.08573707,0.7615596,-0.1137555,-0.13685903,-0.6450318,-0.54886776,-0.8035897,-0.25742683,0.44336668,0.17104737,0.14087838,-0.5119814,-0.01794121,-0.18511932,-0.057722133,0.02243833,-0.33495235,0.3567869,0.15176506,0.4323379,-0.0055313194,-0.58752215,0.086714186,0.06796684,0.032538958,-0.30125254,0.64087516,0.06760678,0.5132208,0.112641,0.092077896,0.3226212,-0.5714008,0.31910402,-0.049597017,-0.2780855,-0.69560915,-0.016072124 +680,0.3079712,-0.23691642,-0.5710659,0.07373459,-0.21657462,-0.34365174,-0.27458438,0.26375517,0.34275457,0.06033237,-0.43842745,0.1020081,-0.008988257,0.3932089,-0.067904234,-0.6339481,-0.05652453,0.22852032,-0.76777035,0.81061965,-0.18478571,0.19018118,0.12570857,0.5740747,0.13633649,0.2848605,0.20559151,0.01452748,-0.15107208,0.0036684896,0.20959984,-0.061947834,-0.7142684,0.0990537,-0.38462377,-0.18511419,-0.19492976,-0.4906639,-0.4426453,-0.9748098,0.23891322,-0.79125476,0.5603856,0.0070171854,-0.22173204,-0.26434982,0.10043753,0.27140346,-0.20365083,-0.17293465,0.099155664,-0.20153904,-0.1898938,-0.4386257,0.008422613,-0.26947454,-0.4497831,0.006245438,-0.52981216,-0.11357489,-0.043879468,0.07855462,-0.36296865,-0.08013985,-0.072385624,0.6818723,-0.35133842,-0.017561981,0.3541874,-0.116811335,0.26652417,-0.7642341,-0.055146676,-0.19315499,0.34378004,0.0045876005,-0.32930046,0.3835108,0.30321062,0.28163603,0.10659733,-0.19545,-0.27372777,0.09718121,0.18255568,0.433413,-0.3435568,-0.40112612,-0.14580591,0.10355855,0.36636138,0.12264252,0.21754839,-0.24211852,0.029241482,-0.18291508,0.13933848,0.6205767,0.5627298,0.07193891,-0.1745003,0.16046856,0.5049701,0.5741686,-0.21037346,-0.074244685,0.058086436,-0.5922183,-0.11100486,-0.031263463,-0.1707627,0.73566586,-0.075921185,0.046831354,0.7044389,-0.024762342,-0.22395869,0.19102687,0.08457064,-0.030721804,-0.1023766,-0.35381153,0.3227937,-0.39103475,0.11973936,-0.14966293,0.36537492,0.20123434,-0.7634682,0.30327544,-0.5557567,0.20623653,0.14458269,0.6247718,0.899836,0.50065106,0.49683166,0.7372531,-0.16684096,0.27889556,0.41008464,-0.30581012,0.12349376,-0.27888525,-0.19587445,-0.44852102,-0.25929642,-0.25242212,-0.29388914,0.18910642,0.31208667,-0.5368398,-0.07668472,-0.024591267,0.7108557,-0.10479,-0.0054473877,0.7254629,1.1975207,1.0060097,-0.010775715,1.2320306,0.230196,-0.14843677,0.02017951,0.0014603585,-0.8760465,0.20879388,0.28136128,-0.5584556,0.6176439,-0.10111604,-0.09919486,0.3631206,-0.71171826,-0.0070172944,0.09860277,0.20918871,0.08926326,-0.24454121,-0.52936,-0.17230944,-0.24826305,0.15855096,0.051856205,0.27878532,-0.2699886,0.3285916,0.034070533,0.94686085,-0.07040679,-0.1073694,0.083088316,0.56101495,0.28851005,-0.21016157,-0.20915274,0.31993833,0.46355006,0.050837915,-0.5274716,0.16971858,-0.3865373,-0.26481727,-0.23437546,-0.1720197,-0.038788002,0.18533139,-0.20345502,-0.38203397,-0.041428853,-0.2800406,0.27560937,-2.4368448,-0.14526975,-0.03404838,0.39054453,-0.20290871,-0.014455986,-0.23237543,-0.42947546,0.13837235,0.19510432,0.5384955,-0.6723383,0.26019013,0.52124685,-0.7637746,-0.10861423,-0.6404576,0.051688153,0.11128504,0.468087,0.16022952,0.0023595442,0.1637318,0.23325841,0.52881795,0.16633655,0.07660445,0.5777058,0.391246,-0.047214627,0.11154351,-0.10579602,0.4846946,-0.37942454,-0.23987235,0.40142512,-0.2855743,0.24215017,-0.25278842,0.12126715,0.60495496,-0.37126374,-0.74611574,-0.291465,-0.13575982,1.1465101,-0.1112169,-0.5337605,0.2226548,-0.31173217,-0.08373997,0.0013054336,0.80990267,-0.22704268,0.22243868,-0.75058883,-0.24987312,0.03355894,0.20675619,0.034598187,-0.0699232,-0.33610097,0.6341127,0.026926422,0.42607537,0.39717078,0.12880413,-0.3026086,-0.6902759,0.25775337,0.7677829,0.4557179,0.107027024,-0.17682724,-0.050451968,-0.24758805,-0.103068,-0.06653826,0.7043027,0.7669215,-0.23079783,0.08795997,0.26147458,0.057042193,0.08236774,-0.11635319,-0.29331282,-0.09691579,-0.099075675,0.5348041,1.1991048,-0.22850193,0.30299973,-0.13497123,0.287549,0.03479413,-0.38867736,0.83210915,0.93677694,-0.32682377,-0.11967269,0.4934219,0.23378456,-0.7225182,0.51222634,-0.60137916,-0.10964236,0.6820257,-0.012615765,-0.46096948,0.33745465,-0.32655177,0.30798802,-0.7713184,0.67084676,-0.30137542,-0.37068713,-0.6142138,0.011620413,-2.1373792,0.14751004,-0.3096178,-0.13854422,-0.5702194,-0.07828577,0.19575466,-0.46629778,-0.6961923,0.18540637,0.22372043,0.53161746,-0.25094542,0.031202724,-0.12973535,-0.42521492,-0.10847312,0.31346256,0.48963058,0.36462542,-0.30582586,-0.31429702,-0.22752158,0.070983194,-0.49242768,0.033305842,-0.6672421,-0.55370027,-0.26834366,-0.75052756,-0.08216255,0.61124796,-0.57170224,-0.021198258,-0.3331852,0.05265683,-0.046955496,0.1882916,-0.024121253,0.20560314,0.14704913,-0.05009612,0.26149622,-0.032397706,0.395638,-0.085437536,0.245753,0.11399341,-0.05695644,0.37657306,0.510148,0.9562566,-0.26683447,1.04065,0.5886218,-0.18397264,0.109568596,-0.25432393,-0.4572276,-0.58763385,-0.31048352,0.19521438,-0.24723993,-0.5271228,0.16721447,-0.385141,-0.83351874,0.538647,-0.21344364,0.3349916,0.30373785,0.21585906,0.45414308,-0.23346816,0.09105456,-0.07880733,-0.2096961,-0.4642091,-0.09547806,-0.55702275,-0.6124705,-0.15495043,0.8738666,-0.20879126,0.094637334,0.20592825,-0.5660066,0.11657276,0.09302553,-0.04268944,0.17243202,0.31704232,0.22241752,-0.63492006,0.21175589,-0.018333495,-0.17663856,-0.47978675,0.24602325,0.6935823,-0.71541405,0.56664294,0.4435844,-0.14963052,-0.3694919,-0.5478612,-0.17660911,0.033300567,-0.12963559,0.3356186,0.32452938,-0.57266045,0.43615913,0.24678989,-0.6884268,-0.7008818,0.44234565,-0.118659995,-0.18888475,0.03529566,0.38664302,-0.43696716,-0.042888407,-0.32320178,0.2744448,-0.12693007,0.2878932,-0.00498119,-0.1957315,0.068665236,-0.003753374,-0.31107846,-0.76462275,0.38129988,-0.6453671,-0.33071554,0.55693674,0.021331178,0.008404679,-0.18745513,0.4661213,0.4024547,-0.22062047,0.10880994,-0.18500233,-0.4044039,0.2853677,0.58252364,0.46326146,-0.35318145,0.613426,0.043169063,-0.12670112,0.16610682,0.06468872,0.26423082,-0.138363,0.3229812,0.21731372,0.011752934,0.089060895,0.73004454,0.0326943,0.44837582,0.15053849,-0.0973404,0.41670153,0.011901297,0.36647764,-0.15174542,-0.3968819,0.063646354,-0.27244684,0.08485661,0.55902535,0.27106056,0.03828987,-0.10897074,-0.43421462,-0.07889822,0.3571204,0.24559946,-1.3830014,0.4558488,0.2635167,0.7128482,0.3423591,0.15391697,-0.18603848,0.77509815,-0.08334494,0.020957813,0.5726249,0.12128808,-0.64941955,0.55785704,-0.54488724,0.44249853,0.03299204,0.019882971,0.19489168,0.04502147,0.27502307,0.8981981,-0.1361411,-0.03889508,-0.18183334,-0.09138638,-0.15228839,-0.504727,0.16336058,-0.30218527,-0.57980746,0.77619505,0.44490495,0.33270296,-0.23578806,0.10738338,-0.020032933,-0.19417758,0.50809646,-0.077328645,-0.1148965,-0.007478282,-0.69190973,-0.027314449,0.41128278,-0.051616084,0.017924383,-0.20742643,-0.073324025,0.09989828,-0.26482555,-0.1275999,-0.23526447,-0.9158275,0.06306519,-0.42386058,-0.46391067,0.60726786,-0.4127603,0.060135525,0.20036365,-0.0051520937,-0.46909806,0.4333836,0.056280836,0.75704044,0.04914513,-0.19519858,-0.055369437,0.35896957,0.2792007,-0.27521357,0.19199,-0.3468344,0.15906455,-0.38893995,0.6845563,-0.07312265,-0.47942498,-0.019432304,-0.14233144,-0.21476638,0.7059353,-0.26561978,-0.35577157,-0.078738995,-0.2884818,-0.29560807,-0.28563955,-0.35840976,0.24203533,0.4609631,-0.054979224,-0.19259508,-0.14041533,-0.15640955,0.4613938,-0.03954482,0.66192263,0.4997485,0.18752582,-0.37742543,0.011274661,0.27278715,0.5919357,0.4011445,-0.06369224,-0.6340535,-0.3878317,-0.41681635,0.08586237,-0.17086606,0.21015376,0.11026588,-0.20506263,0.7468805,0.019644542,1.2537816,-0.042997,-0.28889772,0.10094639,0.5156054,-0.26420996,-0.117667556,-0.4536657,0.95695734,0.5216252,-0.30206567,0.05686583,-0.361374,-0.010389794,0.2507545,-0.33815053,-0.018594662,-0.041853312,-0.5239425,-0.2760851,0.11763612,0.2697181,-0.031112121,-0.16600992,0.08670821,0.039162714,0.08176503,0.15498096,-0.53751594,-0.1525112,0.5084885,0.14387834,-0.13053288,0.0087234825,-0.43929222,0.3193257,-0.5536627,0.14507864,-0.5479171,0.23278217,-0.11415132,-0.62185806,0.1172778,0.065882534,0.5551637,-0.6069888,-0.2932308,-0.27836558,0.39487258,0.13150714,0.110568196,0.5768972,-0.40117383,-0.062336076,0.15618102,0.7686186,1.0339357,-0.48282918,0.05861138,0.0832806,-0.4929138,-0.57376504,0.43539336,-0.39542696,0.124080986,-0.44931817,-0.276561,-0.76152325,0.034100566,0.03209253,0.044423003,-0.1907522,-0.7398663,-0.31880644,0.18175565,-0.22343461,-0.1455233,-0.31674466,0.14225243,0.6062276,-0.23343867,-0.6306806,-0.032027673,0.13068704,-0.11568331,-0.29079485,0.06486232,-0.17355841,0.28630394,0.099252194,-0.33617732,-0.19415678,0.13808745,-0.6218905,0.2299832,0.16976668,-0.45628658,-0.046337306,-0.10614431,-0.07153214,0.78742456,-0.5032213,-0.030365458,-0.35477963,-0.56870645,-1.0408701,-0.4510052,0.07900857,0.3127741,0.021282094,-0.7235647,0.07994158,-0.12033335,0.028779471,-0.026049366,-0.48566136,0.39365482,0.043316856,0.63293993,-0.47147706,-0.9212747,0.11684221,0.1165185,-0.14778401,-0.6349831,0.48042527,0.30480844,0.8999724,0.082320474,-0.051283125,0.013999413,-0.47252902,-0.028727608,-0.17852159,-0.0660559,-0.58485466,0.192073 +681,0.44901937,-0.23810083,-0.33243436,-0.19963719,-0.36332014,0.05897934,-0.18632911,0.33903363,0.38993308,-0.2879418,-0.011399354,0.06114536,-0.039793357,0.43999636,-0.02119731,-0.65291184,0.056341674,0.1504446,-0.7684119,0.64479285,-0.4443464,0.40337974,0.036068875,0.41815993,-0.13090526,0.28476018,0.3417665,0.06981881,-0.064756386,-0.2315577,-0.13672002,0.019258562,-0.7445257,0.17940532,-0.32302904,-0.25518852,-0.08463042,-0.46113396,-0.20388772,-0.9050483,0.20929495,-0.83536077,0.5519424,-0.09903072,-0.26095998,-0.17335327,0.30983654,0.18254513,-0.24698997,-0.18401861,0.16765359,-0.40919602,-0.11066227,-0.5285364,-0.059872244,-0.44764578,-0.58746445,0.011373117,-0.6749539,-0.33389077,-0.09935728,0.33455694,-0.34996858,-0.13598497,-0.16315642,0.8044503,-0.2354987,0.10878961,0.32502052,-0.503276,0.15819599,-0.71496785,-0.09357435,-0.06228073,0.43832266,0.21791522,-0.36018065,0.53803474,0.4623472,0.40364715,0.26042336,-0.5178474,-0.33210725,-0.24779606,0.13655463,0.4843702,-0.33115658,-0.45063508,-0.21352535,-0.012017236,0.40144396,0.27583668,0.13077481,-0.19992846,0.18682423,-0.08169036,-0.11119881,0.9710181,0.60496306,-0.22027126,-0.23839119,0.20852445,0.5967104,0.10905301,-0.4066835,-0.05515059,-0.08443594,-0.60602534,-0.047654096,0.26147696,-0.06017013,0.5895825,-0.26376745,0.046311323,0.8914117,-0.17199905,-0.15883438,0.17045864,-0.030737072,0.21755864,-0.37947467,-0.055353515,0.41423115,-0.53041995,-0.2296854,-0.56866753,0.6082914,0.10825186,-0.76517284,0.50080895,-0.54689753,0.30638024,0.21048829,0.6624502,0.7516059,0.69355804,0.41986355,0.85937566,-0.13203913,0.009033226,0.32504022,-0.1666066,0.061108768,-0.528342,0.24162725,-0.41226673,0.17678617,-0.103420205,0.10179542,0.14725403,0.44196412,-0.8170299,-0.32897723,0.15366462,1.0397283,-0.14487137,-0.03336183,0.87582546,1.1115596,0.91021895,-0.15042317,1.3036608,0.20918605,-0.22769372,0.011946967,-0.05523886,-0.5843791,0.15636018,0.24264039,0.27284685,0.44843864,-0.19511782,-0.21283855,0.3463125,-0.4909598,-0.18665746,0.17986414,0.21485129,0.23447631,-0.06086835,-0.47169986,-0.13427219,-0.09346685,-0.14246295,0.35180786,0.2433754,-0.52740693,0.5923813,-0.079970725,0.7725314,-0.15091167,0.04873058,0.15335467,0.5460605,0.37465617,0.06929547,0.21775743,0.5657651,0.2740557,0.22137854,-0.4653281,0.25062996,-0.6684469,-0.31631932,-0.17869782,-0.42196152,-0.24332982,-0.06637753,-0.21081744,-0.3488804,-0.04973829,-0.3023984,0.27662435,-2.5679712,-0.36193916,-0.21975657,0.44769335,-0.21132669,-0.115326405,-0.15052103,-0.6299581,0.28683618,0.2641911,0.6124276,-0.7809849,0.24502724,0.49460727,-0.640496,-0.292112,-0.7913749,-0.10201267,0.046504892,0.6405005,0.20749182,-0.1931484,-0.1195536,0.079245456,0.89562094,0.27212504,0.106167465,0.6087952,0.4283309,-0.30841604,0.40425715,-0.1704031,0.5522205,-0.40939254,-0.22124287,0.3422415,-0.62183577,0.11261444,-0.21944307,-0.03469471,0.82720935,-0.3375759,-0.85930383,-0.52238166,-0.1587154,1.0527204,-0.0918512,-0.65637743,0.0799233,-0.15398291,-0.08940753,0.01773887,0.9788288,0.06237919,0.36331865,-0.5269681,0.014815282,-0.25152212,0.21935207,-0.07602528,0.0140881995,-0.31561667,0.8652159,-0.04562885,0.5044894,0.07528757,0.26038164,-0.57318234,-0.42025012,0.006650301,0.7700333,0.48316178,0.083318606,-0.006231606,-0.07428685,-0.234279,-0.44432595,-0.18783753,1.0153117,0.74650663,-0.20713204,0.012502566,0.5586078,-0.15268502,0.0791378,-0.065698594,-0.42369094,-0.2571539,-0.026900282,0.58282703,0.8577825,-0.2170469,0.45734113,-0.12752436,0.42012438,-0.09400421,-0.5614603,0.6989993,0.707153,-0.30015084,-0.009724099,0.43527296,0.35501152,-0.79281497,0.5943235,-0.65666854,-0.41278118,0.818572,-0.20466456,-0.56768835,0.084679775,-0.286944,0.120845675,-0.48076078,0.4676237,-0.3885019,-0.5283908,-0.44158223,-0.23542558,-2.6207163,0.2130243,-0.21256731,0.1428191,-0.64396775,-0.011093158,0.054825205,-0.5081127,-0.49077636,0.12729272,0.30842072,0.6375516,-0.30376408,0.15719287,-0.4419886,-0.30436856,0.07064058,0.5313041,0.11669159,0.24266985,-0.23764457,-0.18924151,0.04407001,0.012093468,-0.68521297,0.13739403,-0.7627639,-0.5171279,-0.17030281,-0.7487724,-0.151434,0.80670494,-0.5385527,0.071379334,-0.30885997,0.24744394,-0.0036139304,0.11577936,-0.01769675,0.23585191,0.2356673,-0.17160246,0.3315864,-0.2518593,0.51962835,-0.050322406,0.5726934,0.1601771,0.12703143,0.24590707,0.4494242,0.7518054,0.011936559,1.1658648,0.19478954,-0.091062896,0.41944772,-0.31009263,-0.4602595,-0.675223,-0.23896863,0.32263756,-0.4009984,-0.32508245,0.15429594,-0.3977381,-0.7869607,0.6763,0.0024171884,0.46893904,-0.056389883,0.67399156,0.42718613,-0.3734167,0.11730576,-0.0051991115,-0.18006429,-0.5587889,-0.116079,-0.7775241,-0.58347756,0.09132111,0.6081916,-0.24805576,-0.034186836,0.044865973,-0.29067698,-0.050223745,0.22022022,0.17869064,0.049984034,0.4931522,0.14938116,-0.651795,0.3040203,-0.21295439,-0.17531453,-0.4557627,0.50154525,0.71931785,-0.6632833,0.5240277,0.50069404,-0.060005344,-0.36391655,-0.5888233,-0.0697485,0.0656467,0.024634533,0.34234315,0.12865978,-0.8677902,0.5348871,0.13772438,-0.481561,-0.7398837,0.18756951,-0.26680237,-0.18586683,-0.19654809,0.5154506,0.16382357,-0.20179437,-0.17423008,0.17869417,-0.6005325,0.16219704,0.06780735,-0.016791293,0.58944213,0.06347292,-0.5044844,-0.8594852,0.05767318,-0.73970705,-0.31225368,0.5207672,-0.15902813,-0.044441663,0.24100828,0.103948,0.42834833,-0.046879265,0.20270589,-0.15503177,-0.41428667,0.46023512,0.48389465,0.41782254,-0.58073294,0.72294134,0.26999217,-0.11929954,0.18662493,0.07502752,0.4006812,-0.008178419,0.65545017,-0.041148383,0.02621498,0.14807789,0.5875776,0.18670091,0.50396794,0.28178403,-0.12693572,0.3255266,-0.13944052,0.33386964,-0.085252576,-0.60415936,0.12685966,-0.12878734,0.03638955,0.5285952,0.24711767,0.35155895,0.25591472,-0.31922057,-0.046866015,0.2218446,-0.104338065,-1.712699,0.3643084,0.26050824,0.9807062,0.192106,0.21769914,-0.3405964,1.043899,-0.1486331,-0.04035894,0.6973749,-0.06504094,-0.30937356,0.7927449,-0.81656617,0.5253838,-0.2021557,0.06471149,0.10295042,0.18856488,0.3739757,0.824719,-0.29644805,0.025249664,-0.04657875,-0.20557532,0.1776383,-0.42407635,0.3747417,-0.084108815,-0.49700734,0.5755888,0.13929592,0.3702857,-0.3197656,0.11842072,0.13288182,-0.17936246,0.38320777,-0.18390203,-0.23528692,-0.13912372,-0.53035885,0.0073905955,0.4580202,-0.11975391,0.2903809,-0.039433025,0.06852694,0.017680217,-0.1167558,-0.15917952,-0.09428457,-0.78785074,0.04005962,-0.24756797,-0.81776375,0.69007564,-0.30709168,-0.03182274,0.2485513,-0.02021392,-0.2774061,0.30570778,0.24074993,0.6687626,0.0075663878,-0.40480182,-0.26660627,0.04934444,0.014165897,-0.52270985,0.28561053,-0.2730086,0.12516603,-0.3895755,0.6559581,-0.33350345,-0.48916295,0.10416817,-0.30249432,-0.14295992,0.5571943,-0.22644672,-0.16160525,-0.010684004,-0.26197553,-0.18142912,-0.047116462,-0.17422684,0.31474236,0.25965798,-0.115949646,-0.22426248,-0.32680023,-0.24819605,0.48662582,-0.050463118,0.33398274,0.30244857,0.090839915,-0.24569415,0.20149678,0.38028258,0.55348754,0.21761928,-0.016287126,-0.30458674,-0.41821894,-0.49263456,0.27803883,0.014625361,0.23994645,0.2059734,-0.3632178,0.97236645,-0.13659123,1.308525,-0.01652928,-0.48437926,0.051236197,0.73948723,-0.093312114,0.16832733,-0.6026841,1.1010929,0.49147856,-0.23293811,0.1285515,-0.6426169,0.19395979,0.5969549,-0.4471296,-0.18791144,-0.043575965,-0.55834615,-0.40121943,0.20901799,0.14713465,0.20265485,-0.20734079,-0.01974403,0.1262995,0.14436477,0.32358584,-0.6574298,-0.00045230755,0.3129349,0.24561647,-0.2396705,0.11619762,-0.26711348,0.39758873,-0.8392613,0.32018882,-0.49081072,0.06297684,-0.19055833,-0.33672488,0.33813146,-0.12590274,0.3979969,-0.36147356,-0.48108244,0.074495114,0.31120598,0.18786089,0.075011276,0.6152301,-0.37523067,-0.121854596,0.3501386,0.73994255,1.4066983,-0.3262428,0.2039445,0.004454597,-0.6485767,-0.74593186,0.41220525,-0.43451265,0.06289603,-0.22540005,-0.48253325,-0.45855233,0.13019228,0.17239493,0.16662186,0.058215372,-0.7375987,-0.40946,0.11993523,-0.46441942,-0.15454076,-0.3593273,0.43873882,0.7105747,-0.17247738,-0.342673,-0.029788824,0.3050275,-0.22136417,-0.85260326,-0.014813295,-0.39521158,0.20042473,0.09992209,-0.30300066,0.0317228,0.09215872,-0.8311379,0.293031,0.3077612,-0.43878227,0.06257008,-0.096843235,-0.027911855,0.7138542,-0.16876386,0.010033681,-0.4956753,-0.6223132,-0.8750518,-0.5458101,-0.00032959535,0.16062102,-0.096035756,-0.5914115,-0.22574663,-0.22576159,-0.23675233,-0.020268746,-0.7007561,0.30932215,0.14412704,0.6816121,-0.4188226,-1.1609712,0.043471493,0.19303177,0.052670047,-0.7370189,0.30439037,-0.12705733,0.8121015,0.13344313,-0.10583475,0.088453166,-0.5194281,0.009264304,-0.40041763,-0.21458231,-0.7365889,0.18120511 +682,0.4224083,-0.3473208,-0.34345976,-0.11824502,-0.1809943,0.05566901,-0.05471024,0.7405377,0.23766991,-0.25902516,-0.021817148,-0.011143779,-0.034596574,0.44553286,-0.12135152,-0.50050455,-0.056239676,0.2607985,-0.2850822,0.6374723,-0.31602177,0.14614998,-0.26303652,0.4879341,0.14426555,0.28995284,0.024602788,-0.0010106222,-0.37028337,-0.12347162,0.014832752,0.36397633,-0.4042028,0.27127036,-0.2251399,-0.25051966,0.02587596,-0.5279699,-0.41482073,-0.5669761,-0.0042380816,-0.6436431,0.41935435,0.059871696,-0.31786343,0.36445373,-0.030015392,0.2231152,-0.31419662,-0.15751448,0.057018,-0.019843826,-0.0054655224,-0.300196,-0.19802025,-0.38224822,-0.531318,0.08607707,-0.32883453,0.046302114,-0.0754552,0.082391106,-0.26652533,-0.1789907,0.005838028,0.52432317,-0.36273065,0.119303055,0.12977849,-0.11360519,-0.0366542,-0.41841292,-0.21523859,-0.14915779,0.18125667,-0.067415774,-0.22947574,0.3155716,0.18313047,0.3580348,-0.22290036,-0.14599366,-0.39456126,-0.041422196,0.070388414,0.5338239,-0.19432804,-0.63569343,-0.059266213,0.053806126,0.15178216,-0.010151361,0.16314067,-0.045587473,-0.09374343,-0.08320023,-0.26027575,0.28371137,0.4509625,-0.406772,-0.32134992,0.41049632,0.45745018,0.124203436,-0.23257677,-0.21680912,0.081951804,-0.5025572,-0.15429778,0.034842875,-0.13008772,0.46994844,-0.12512615,0.15960236,0.5312218,-0.17352836,-0.08501339,0.04843408,0.21375594,-0.023236854,-0.35567686,-0.42298597,0.23225321,-0.3044948,-0.052553337,-0.12374053,0.7151669,0.22244827,-0.6659196,0.43720964,-0.42325482,0.079730034,-0.05584648,0.31935447,0.5304419,0.5443101,0.38118964,0.44947582,-0.20738521,0.1415823,-0.017288607,-0.28900653,0.042886507,-0.29502863,-0.09104991,-0.5098561,0.2289336,0.0031480703,-0.14114669,0.27525604,0.21366973,-0.5037733,-0.2607614,0.27209476,0.8639714,-0.21531154,-0.19588658,0.6635305,0.9465021,0.9001082,-0.036566567,0.8924336,0.2954128,-0.24191757,0.22549927,-0.34318373,-0.7184406,0.15524223,0.31951395,-0.36216754,0.3874465,0.00622837,-0.093231134,0.30410337,-0.18655284,0.019538447,-0.15852557,0.17514353,0.13979614,-0.025857458,-0.54428405,-0.45303792,-0.22217189,-0.12998118,0.13032874,0.3702578,-0.19066116,0.37679943,0.0019469319,1.6496751,0.16875036,0.045763463,-0.016207043,0.687399,0.26507214,-0.2335714,-0.13339022,0.45058462,0.24986891,0.08269738,-0.43869632,0.18819873,-0.23699127,-0.4504202,-0.10046547,-0.34823066,-0.01423872,0.030809466,-0.34273598,-0.16667642,-0.0021016342,0.012526789,0.50236005,-2.924049,-0.12564091,-0.041778836,0.42070058,-0.2815099,-0.31075224,-0.19699681,-0.36453447,0.24634399,0.29266495,0.5154336,-0.5576435,0.27244663,0.29445982,-0.60709274,-0.058668826,-0.46642372,-0.17266835,-0.065904476,0.3636143,-0.04826471,0.19152975,0.18182328,0.12672076,0.46224442,-0.09140404,0.13949075,0.18922374,0.30271262,0.088286206,0.3028119,-0.03493379,0.5236792,-0.3830698,-0.16551228,0.145772,-0.54978716,0.39602533,0.12619261,0.10740823,0.49306598,-0.38665432,-0.896833,-0.4716106,0.12280041,1.1293143,-0.18299487,-0.2578094,0.09211177,-0.3524742,-0.30568457,-0.12103437,0.3007013,-0.08831519,-0.12644081,-0.6764097,0.035160728,-0.017643008,0.15003729,-0.027845593,-0.041491773,-0.24180725,0.47000816,0.00627222,0.5300006,0.24013035,0.09680806,-0.30179474,-0.3710398,-0.051210616,0.75813514,0.25690326,0.22021832,-0.27675068,-0.2701056,-0.24744976,0.11703943,0.06299867,0.40347257,0.43646914,-0.15424904,0.14406133,0.31342712,0.0073154187,0.19975974,-0.102185264,-0.21691416,-0.21836455,0.14470069,0.49783424,0.68744653,-0.2950477,0.4431978,-0.03940795,0.27741444,-0.117770955,-0.369268,0.41879353,0.9011742,-0.1865768,-0.22670926,0.5523334,0.5405075,-0.32025614,0.40473494,-0.42507145,-0.11814989,0.36127087,-0.23788516,-0.24517687,0.22426395,-0.27020484,0.12751919,-0.80985403,0.34108847,-0.20508525,-0.364685,-0.6184521,-0.061267886,-3.148106,0.2117954,-0.072888635,-0.24123037,-0.012234085,-0.10802021,0.07316866,-0.5971519,-0.4485251,0.3290372,0.17458978,0.6023164,-0.048082747,0.10797346,-0.30038986,-0.45523438,-0.3326287,0.16470985,0.14907035,0.4054904,-0.026048448,-0.5006622,-0.15285079,-0.19021717,-0.27196202,0.13474464,-0.73214406,-0.29113325,-0.09709669,-0.6326365,-0.2389259,0.6646031,-0.15344565,0.025734525,-0.15756117,0.06479754,-0.1644279,0.159415,-0.039538555,0.091502175,0.00843209,-0.14462663,0.09953786,-0.27102724,0.25187454,0.0019795708,0.40018886,0.24342504,-0.065422386,0.07131083,0.662961,0.67648983,-0.12347057,0.8431403,0.48570427,-0.18308675,0.28379837,-0.24146366,-0.18875085,-0.40005776,-0.31813008,-0.027807755,-0.32698494,-0.44786587,0.006835282,-0.37789854,-0.74733406,0.63420373,-0.0746287,0.009731097,-0.041328184,0.26241365,0.4983122,-0.32179627,0.09503438,-0.019727316,-0.13294698,-0.47624508,-0.21141447,-0.4888017,-0.24460109,0.36109218,0.9012541,-0.32511336,0.029960405,-0.017238105,-0.31627247,-0.0844519,0.12664564,-0.048196964,0.18601656,0.40298653,-0.12974007,-0.4862154,0.38536754,-0.17972885,-0.15988481,-0.32954794,0.17721783,0.6281068,-0.5900008,0.75340146,0.3178466,-0.12621008,-0.20291089,-0.44129524,-0.33736476,-0.0013639672,0.013340418,0.30649194,0.2143015,-0.90819496,0.34152296,0.26846126,-0.48616585,-0.61982155,0.43574858,-0.16388942,-0.25174528,-0.22566521,0.30593967,0.16152641,-0.007547613,-0.20653388,0.2646887,-0.36940292,0.027489444,0.12242271,-0.06376515,0.08298719,-0.1779697,0.079221055,-0.74058515,-0.0603821,-0.35591474,-0.33904645,0.41833085,0.08166294,0.121432304,-0.03005745,0.09221564,0.2590806,-0.3724964,0.0047230464,0.009145098,-0.23967096,0.4332938,0.23944394,0.55935335,-0.40069586,0.46204942,0.017726023,-0.008978054,0.015078924,0.015319139,0.35079017,0.15656434,0.40752777,0.09506457,-0.19122693,0.21628454,0.7337141,0.1982642,0.4800509,0.06412788,-0.19888973,0.16362096,0.039750345,0.14600822,0.11231347,-0.3330095,0.030241897,-0.13153712,0.15498935,0.36739329,0.07226796,0.2976884,-0.14444801,-0.23303969,0.021000495,0.18640791,0.23045988,-1.0535192,0.30334112,0.17394662,0.7556812,0.32175085,0.1951113,-0.065159604,0.7726962,-0.1592335,0.16611502,0.32759076,-0.026224282,-0.5822968,0.50154287,-0.55967814,0.5573911,-0.04056373,0.0040322244,0.05073253,-0.06560454,0.52825147,0.6755065,-0.10155033,0.09546856,0.10434522,-0.37394664,0.09273029,-0.30974367,0.16060343,-0.5336464,-0.19165017,0.59444445,0.48833555,0.31946585,-0.107668675,0.039742786,0.11220066,-0.035956208,0.07087762,0.08185279,0.08612866,0.15649815,-0.72203857,0.0076960283,0.52962935,-0.08727664,0.09576756,0.0067932946,-0.25111714,0.33006737,-0.21322373,-0.053786617,-0.0033206749,-0.6495823,0.03556096,-0.21894458,-0.49053308,0.637403,-0.04396971,0.24317744,0.13333447,0.09332402,-0.2946182,0.48293978,0.08238179,0.80213964,-0.08471949,-0.15198123,-0.36795935,0.1736687,0.099391,-0.15316074,0.0988021,-0.4199777,-0.04179377,-0.4101719,0.2935634,0.105253525,-0.24549398,-0.19745634,-0.06595464,0.18983316,0.43325266,-0.032215457,-0.12245357,-0.31055036,-0.090344556,-0.42191833,-0.26354653,-0.06709329,0.3058689,0.30973807,-0.09925985,-0.0416982,-0.08868982,0.03612565,0.50229484,0.00451641,0.28866142,0.2776654,0.26344046,-0.14508447,-0.08180909,0.048599448,0.47173196,-0.06487109,-0.15952322,-0.37453836,-0.23549321,-0.39816383,0.16147205,-0.15371455,0.26038527,0.02988699,-0.23085944,0.68909854,-0.24254963,1.0753891,-0.07715338,-0.40185738,0.15682936,0.45385987,0.10368932,0.07513123,-0.38883114,1.0016758,0.362554,0.005317611,-0.11750939,-0.43813267,-0.12335718,0.08270727,-0.26884058,-0.26866242,0.030934887,-0.4590376,-0.14454173,0.21056744,0.081626125,0.42114845,-0.15395534,0.29778,0.2885807,0.16597304,0.18162373,-0.3881567,-0.05894753,0.25668478,0.38595408,0.052893158,0.12296469,-0.4100836,0.27897447,-0.43111134,0.21844646,-0.24652262,0.14694302,-0.26151133,-0.42712912,0.1602275,0.14176987,0.3333725,-0.43748775,-0.34178394,-0.24560454,0.49606612,0.1591051,0.1356545,0.42452773,-0.2928577,0.05009515,0.13609356,0.45539576,0.7799012,-0.32375926,-0.14515385,0.4420603,-0.3209191,-0.763619,0.23439506,-0.2185628,0.3463526,-0.13583866,-0.14974914,-0.7460472,0.30515096,0.2793009,0.11208774,-0.101099975,-0.4270948,-0.09748854,0.2713031,-0.30855042,-0.18952367,-0.30235714,0.072520986,0.65845346,-0.24438177,-0.52382326,0.06579628,0.1441089,-0.12910579,-0.37638783,-0.14361162,-0.44068724,0.15945399,0.06630932,-0.27614155,-0.26856858,-0.0902474,-0.42536062,0.20214789,0.12645903,-0.31209254,0.059147324,-0.341649,-0.036679216,0.87336713,-0.22592464,0.351496,-0.48499224,-0.51767653,-0.878836,-0.49810532,0.49731636,-0.02914372,-0.066725396,-0.65496695,0.12732004,-0.03533599,-0.3793673,-0.13281666,-0.2982759,0.3698612,0.13556676,0.060367107,-0.022995021,-0.80648756,0.27038,0.13042748,-0.14305137,-0.6314005,0.33917695,-0.17262115,1.136617,0.016604422,0.18498783,0.2846929,-0.32949764,-0.23553881,-0.2928496,-0.11464614,-0.44499797,0.13779424 +683,0.4189479,-0.17406456,-0.5874571,-0.072081976,-0.19051436,0.060063574,-0.20418637,0.36551812,0.12328507,-0.3227058,-0.061023474,-0.06411736,0.009743305,0.42147478,-0.058586847,-0.67446053,0.080586396,0.22126004,-0.4480695,0.6594771,-0.44925213,0.28869584,-0.13255036,0.25022042,0.13369772,0.32721785,0.14283146,-0.1325755,-0.0142264115,-0.11724896,-0.29119805,0.2545977,-0.52131325,0.18215452,-0.0030010703,-0.33530158,0.18973167,-0.28881487,-0.24398462,-0.6273765,0.15717714,-0.7634179,0.5292707,-0.099935286,-0.20436592,0.17873648,0.049781833,0.37504515,-0.28494126,-0.10304708,0.035237152,-0.19371898,-0.22188437,-0.2151213,-0.09292455,-0.45027104,-0.47036186,0.0100869285,-0.5056119,-0.1133757,-0.2942741,0.09750427,-0.4502413,-0.079090215,-0.1274766,0.28918362,-0.37670073,0.011089174,0.16736674,-0.03895948,0.15889095,-0.5494166,-0.06783914,-0.10271646,0.2981797,-0.14952569,-0.32689455,0.2494578,0.40533546,0.4227729,0.10636365,-0.2591541,-0.26604196,-0.277214,0.15598392,0.6062693,-0.03657111,-0.52368873,-0.20052303,0.05781577,0.07938057,0.220306,-0.043821048,-0.31521899,-0.14630851,0.115747325,-0.19430317,0.141413,0.34734035,-0.5071489,-0.37110066,0.35510764,0.50956655,0.12891196,-0.1655902,0.031922076,0.0048682955,-0.4935816,-0.12605673,0.15403502,-0.100049295,0.49974588,-0.2112463,0.19828913,0.6393072,-0.24695103,-0.08978095,0.05035184,0.04905071,-0.26427665,-0.3390753,-0.07462291,0.1802477,-0.59988725,0.24349652,-0.118431725,0.7483409,0.25227067,-0.5520123,0.3425152,-0.5983033,0.14499304,-0.16130237,0.59106207,0.74594927,0.3685524,0.3157081,0.7384758,-0.4576087,0.11260059,-0.123351865,-0.5502923,0.116938904,-0.24118936,-0.011490158,-0.50589144,0.21497117,0.1610501,-0.013421067,0.01489161,0.2237355,-0.51278317,-0.0040358477,0.07622374,0.6568135,-0.30587217,-0.20422567,0.79383755,0.8896646,0.99382263,0.08627258,1.1892563,0.27648202,-0.22760679,0.11529305,-0.2587255,-0.6640593,0.2117286,0.43041295,0.01345875,0.13386251,0.23121561,0.010524758,0.5144788,-0.39331225,-0.013846474,-0.19059958,0.4065641,0.113395706,-0.10891355,-0.39516374,-0.20173381,-0.049354758,0.0013720308,0.1718856,0.3457536,-0.17117505,0.40250605,0.10688803,1.6131951,-0.02643886,0.17132604,-0.009141544,0.4401984,0.21846008,-0.12535588,-0.099272765,0.27054673,0.4114748,0.14762874,-0.5405214,-0.092999496,-0.2779316,-0.4775083,-0.15361738,-0.32644495,0.002039228,-0.07089043,-0.30989307,-0.14310895,-0.006980351,-0.27175182,0.5977378,-2.8608935,-0.21142158,-0.21782854,0.2387683,-0.2660119,-0.49426177,-0.17696269,-0.5118958,0.40881515,0.24238165,0.5093812,-0.6602415,0.37994602,0.19750457,-0.39780697,-0.16478913,-0.6809388,0.028602531,-0.09916411,0.35663572,0.0061763152,-0.10928462,-0.12660606,-0.03614155,0.5588955,-0.115502186,0.022519732,0.22533305,0.115260564,0.22701167,0.48483902,0.1305614,0.70080817,-0.037410762,-0.15388606,0.21524744,-0.124214135,0.49244967,-0.12814657,0.19946171,0.4398117,-0.38858393,-0.874115,-0.76382667,-0.23681219,1.1206739,-0.28816268,-0.32266757,0.1910863,-0.3466969,-0.34411913,-0.077753104,0.34565902,-0.19320366,-0.1290193,-0.61061543,0.1771284,-0.011723055,0.2258358,-0.01993623,-0.011568261,-0.40298337,0.5001735,-0.08867531,0.40517312,0.35547575,0.15252149,-0.08841042,-0.38273042,-0.0018271847,0.9650364,0.33059356,0.0992971,-0.15900543,-0.32414797,-0.34562874,-0.090754226,0.089451805,0.46810326,0.6910834,-0.090883926,0.12763068,0.18571083,-0.02564885,-0.011696356,-0.064077996,-0.24901724,0.0010042542,-0.05370144,0.6107225,0.43677345,-0.07066061,0.66609275,-0.07162369,0.20380974,-0.07059574,-0.4925182,0.53714496,0.9361718,-0.33782095,-0.20219886,0.62491375,0.44196177,-0.27849856,0.4197376,-0.52637714,-0.22451583,0.3329521,-0.11654425,-0.16900064,0.10821637,-0.31400234,0.14351659,-0.8902254,0.22699703,-0.113484755,-0.58947265,-0.4720456,-0.07524387,-3.9181707,0.16644774,-0.15372756,-0.06413252,-0.008821053,-0.15236881,0.27648005,-0.56569713,-0.51841056,0.28506526,0.12547745,0.7103238,-0.054043382,0.059889346,-0.16880843,-0.33773443,-0.36206523,0.12933931,0.021354625,0.24345013,-0.0801839,-0.38614044,0.0686705,-0.15536924,-0.37633747,0.15597442,-0.5888448,-0.45532152,-0.21430624,-0.44904563,-0.39346093,0.7329603,-0.4014996,0.04723915,-0.26118892,-0.038926028,-0.1890306,0.34909597,0.10621513,-0.03679485,0.032758925,0.1118774,0.060209077,-0.368392,0.21608843,0.01571443,0.18479411,0.29126188,-0.012142117,0.22035466,0.5504195,0.5736304,0.04307688,0.8392991,0.5188345,-0.1765431,0.23612778,-0.3340074,-0.25887734,-0.4926901,-0.37917104,-0.14306447,-0.48573706,-0.4327028,-0.07874883,-0.2579005,-0.7353671,0.6138745,0.05660415,0.113221996,-0.049241215,0.4373874,0.55133957,-0.17971216,0.003171182,0.036189783,-0.074351445,-0.47272363,-0.33354965,-0.5308325,-0.5088735,0.17801414,0.9593262,-0.3461301,-0.044493917,-0.065453306,-0.33600163,-0.05028089,0.2219157,0.046633955,0.25149795,0.5321101,-0.060231436,-0.7277619,0.47518,-0.28728127,-0.18994904,-0.55586594,0.23773435,0.5229468,-0.8459925,0.31653354,0.31128374,0.10743016,-0.057951633,-0.4517619,-0.30626902,0.014618456,-0.3889398,0.33686945,0.2683516,-0.8600316,0.53574383,0.32030436,-0.1329088,-0.6811319,0.40537548,0.024341363,-0.108950146,-0.049339466,0.33231336,0.1390723,0.16024637,-0.2744395,0.087173864,-0.49702516,0.20201077,0.3207565,-0.10393504,0.2903255,-0.18123998,-0.13501278,-0.6928991,-0.27145293,-0.419206,-0.16570528,0.14540097,0.1639343,0.08816109,0.13021149,0.07157777,0.3184463,-0.50281864,0.12739658,-0.09420104,-0.25215694,0.2051686,0.4241342,0.2996312,-0.36671,0.6297313,0.060345557,-0.10876433,-0.18325676,-0.018678367,0.49556103,0.12044687,0.46502426,0.01690091,-0.28930357,0.1981847,0.84449595,0.1516161,0.41732758,0.0023868254,-0.0851575,0.087527595,0.12802349,0.22043996,0.35892066,-0.46577883,-0.027710319,-0.14928658,0.22676952,0.5654229,0.22670543,0.28898188,-0.0030695754,-0.27066454,0.036994237,0.00090608216,0.08482661,-1.2372515,0.6005854,0.21397011,0.67427194,0.41511366,-0.018596947,0.037620146,0.45215067,-0.24614742,0.234569,0.1866702,-0.19680712,-0.3715674,0.54385173,-0.78638375,0.56205523,0.023450227,0.071826264,0.07142279,-0.080723695,0.4631558,1.1030705,-0.25801748,0.111948796,0.0010474005,-0.21560363,0.05280934,-0.21535464,-0.07094174,-0.6870696,-0.29983887,0.6213111,0.44213182,0.46478075,-0.16777252,-0.0077447193,0.08126027,-0.067656666,0.044058986,-0.15138803,0.2675787,-0.003688046,-0.52919424,-0.35386345,0.6017828,-0.015591277,0.20153907,0.01877168,-0.24788465,0.2940645,-0.03460351,-0.031029178,-0.112100445,-0.5216003,0.0922723,-0.2035736,-0.5652463,0.53065264,-0.25900236,0.31278804,0.21770604,0.07395579,-0.21038471,0.5591684,0.21118318,0.6708167,-0.08680557,-0.21010716,-0.3316016,0.24631096,0.21229431,-0.18971266,-0.16721596,-0.32543787,0.1061991,-0.66219807,0.35957256,-0.1065285,-0.41102076,-0.09154761,-0.14519511,-0.024949819,0.48956323,-0.07825845,-0.1984022,-0.013489996,-0.14948092,-0.22283319,-0.27586186,-0.18849875,0.24288876,0.204016,-0.012723961,-0.14538713,-0.16693279,-0.18908544,0.21108203,0.010293305,0.21506515,0.27162978,-0.01884731,-0.23376809,-0.18996754,0.17394058,0.36293697,-0.18096754,-0.28875324,-0.25850895,-0.4003376,-0.39794382,0.03304438,-0.012435096,0.41619262,0.0025903583,-0.1942767,0.68334675,0.019102901,1.1858355,0.13423887,-0.34689885,0.04473307,0.49302456,-0.04239599,-0.012159079,-0.28815898,1.0250566,0.39092216,-0.13883637,-0.14509046,-0.45956424,-0.15874687,0.4331942,-0.14786744,-0.12065486,-0.03080191,-0.4674086,-0.34312987,0.22513604,0.19057308,0.23605596,-0.021326909,0.023271516,0.28842112,0.035200816,0.30940872,-0.3648384,0.007472481,0.35420376,0.36969495,-0.081481814,0.2643068,-0.2869878,0.393279,-0.54981494,0.035298288,-0.16111782,0.246695,-0.0694063,-0.31862158,0.29351988,0.114002176,0.3787587,-0.22348125,-0.37977982,-0.32075945,0.5912928,0.18932489,0.06610412,0.6513721,-0.19270681,-0.0095526045,-0.006435573,0.41129255,0.9550392,-0.22073223,-0.047141373,0.39543414,-0.31703955,-0.49381444,0.3649752,-0.20765369,0.20548879,0.054041833,-0.3343937,-0.5321675,0.26166502,0.20679143,0.14210482,0.046659593,-0.45021108,-0.09365039,0.1667925,-0.1857417,-0.25313503,-0.26285225,0.1654755,0.76423275,-0.30798012,-0.32394648,0.11670982,0.12142716,-0.18897113,-0.52646846,-0.09439083,-0.3140122,0.32152194,0.104182206,-0.33695108,-0.08083111,0.17491055,-0.53436476,0.09302688,0.23642053,-0.32249457,0.2999644,-0.22607303,0.07133107,0.9960095,-0.15487032,0.23254834,-0.61599606,-0.48209977,-0.6472944,-0.318221,0.5363395,0.24515043,0.094267294,-0.50945663,0.04969583,0.041366905,-0.05631582,-0.038084257,-0.40199658,0.47713968,0.06976684,0.2445538,0.113469966,-1.0102942,0.019308077,-0.09177655,-0.109271094,-0.4657406,0.44624096,-0.1555217,0.8537887,0.16222729,0.097112775,0.33393624,-0.28965363,0.070520684,-0.18801959,-0.109765045,-0.8442613,0.005603935 +684,0.3384386,-0.081652395,-0.4640349,-0.23429942,-0.33142692,0.21530035,-0.10089266,0.47444633,0.1732802,-0.2712194,-0.02408531,-0.057337638,-0.126525,0.40043306,-0.16112867,-0.8084827,0.01625246,0.06044638,-0.66584545,0.39736387,-0.4965369,0.24002619,-0.14813614,0.47532108,0.05356322,0.23683262,0.12842342,0.033674613,0.11697454,-0.09907325,-0.0546766,0.09594619,-0.6091077,0.2699152,-0.0422417,-0.14708103,-0.13199027,-0.26254684,-0.27672148,-0.5616477,0.33936375,-0.6483458,0.37618023,0.018466953,-0.39292195,0.09277541,0.09702081,0.1596845,-0.3983501,-0.047262523,0.20769031,0.01234514,0.11681298,-0.05832045,-0.24602246,-0.5193782,-0.61685383,0.0041403347,-0.56693053,-0.15350212,-0.43741316,0.1668428,-0.23356389,-0.061642256,-0.2786299,0.553991,-0.35874286,0.1714455,0.24199669,-0.17543085,0.105418526,-0.47042277,-0.11943303,-0.101449415,0.15790482,0.054924216,-0.29052562,0.3249927,0.37165162,0.4342673,0.027863918,-0.19385658,-0.23931742,-0.059672765,0.15721616,0.282693,-0.12549782,-0.3397881,-0.22178774,-0.106914185,0.061150942,0.14850421,0.07538293,-0.4589045,0.034864556,0.09327059,-0.23787396,0.27464223,0.43316677,-0.4618034,-0.32709572,0.37283334,0.25446653,0.11672099,-0.24231015,0.069621496,0.009755762,-0.5548396,-0.28333354,0.17048046,-0.13438,0.40560934,-0.10392224,0.14313483,0.8243899,0.032991312,0.023677155,-0.075087085,-0.13201003,-0.049567103,-0.46712357,-0.10183437,-0.043443985,-0.49338087,0.08214987,-0.21852185,0.76731926,0.11096965,-0.88767,0.34770617,-0.5426478,0.06396278,-0.21479486,0.4625627,0.8261004,0.34793624,0.07583632,0.7880998,-0.58527035,-0.0045995777,-0.053932685,-0.397718,0.1883746,-0.06568483,0.06416865,-0.43976405,-0.072055,0.09990377,0.06633661,-0.03476456,0.18995579,-0.38862392,-0.04478278,-0.011484014,0.69362676,-0.34984642,-0.19420335,0.63809675,1.0698463,0.9202571,0.09965233,1.3148905,0.23313694,-0.11959901,0.3282703,-0.31827933,-0.54029334,0.20657204,0.31595382,0.44531456,0.2150602,0.041289564,0.16061607,0.50418466,-0.17679732,0.19482757,-0.046887193,0.22062995,0.07997523,-0.06360204,-0.2242888,-0.4125164,0.20618321,0.034863282,-0.051119983,0.32470968,-0.13379253,0.110211626,0.104597196,1.4124411,0.16383247,0.14753357,0.088649526,0.5055777,0.25057617,-0.1589267,-0.104747295,0.28475302,0.35071468,-0.017758662,-0.59099686,0.08887507,-0.29681468,-0.40788943,-0.09741243,-0.41350383,-0.22506772,-0.02801108,-0.6008572,-0.18148279,0.012909323,-0.29686356,0.5343102,-2.7859285,-0.16297258,-0.2322546,0.20956554,-0.25777587,-0.20659934,-0.098345585,-0.3915554,0.3367955,0.4431288,0.3027888,-0.53784597,0.41893277,0.37472177,-0.3505196,-0.0032978228,-0.65126795,-0.17796513,0.0023806777,0.33623937,-0.026099432,0.11214379,-0.18316546,0.37708554,0.58488643,0.050684504,0.05478045,0.1953996,0.37160984,-0.14005825,0.635058,0.07259416,0.55819494,-0.24543677,-0.117112935,0.24354233,-0.41464403,0.45673364,0.15968633,0.15137787,0.42894793,-0.44299808,-0.89753735,-0.5893203,-0.42765924,1.1116251,-0.45786783,-0.20994374,0.35655278,-0.29332632,-0.12121802,-0.10308434,0.5994151,0.06688065,0.07296673,-0.6858743,0.13239376,-0.16063888,0.14163272,-0.08212594,-0.0025699225,-0.26439792,0.7015198,-0.09336839,0.6779601,0.2711802,0.038902692,-0.20591514,-0.37730142,0.09536266,0.7570825,0.30366442,0.091967545,-0.11521525,-0.14714539,-0.33687735,-0.1682184,0.23570514,0.5702768,0.47904077,0.048884597,0.15294503,0.2914121,-0.24769484,-0.037670884,-0.08711543,-0.24425241,0.039404724,0.0932046,0.5888758,0.6101344,-0.13233995,0.35869503,-0.11870384,0.09083571,-0.34113067,-0.4269362,0.4995656,0.6112111,-0.07962178,-0.22647741,0.52433664,0.46227422,-0.16974212,0.33105752,-0.54575574,-0.23038694,0.7747593,-0.09444838,-0.3735481,-0.027871132,-0.27043647,-0.07799633,-0.79850227,0.20971605,-0.3125995,-0.5086373,-0.37620863,-0.25184807,-3.9951274,0.20726551,-0.18102838,-0.10449542,-0.16750643,-0.10837978,0.4811583,-0.59070224,-0.50751746,0.015513271,0.05006985,0.52647895,-0.056083374,0.11287474,-0.3211449,-0.1382272,-0.33310843,0.26661834,0.09678423,0.29013082,-0.04664622,-0.39151025,0.07652598,-0.27927655,-0.5132529,0.057381094,-0.4309258,-0.46813604,-0.0049275183,-0.44458064,-0.22002389,0.8172861,-0.36866397,-0.024191065,-0.13273966,-0.1008827,-0.3288627,0.42984077,0.14179137,0.13312605,0.011396102,0.029125402,-0.28029293,-0.41514388,0.28869197,-0.026262565,0.3825075,0.33247048,0.0017974632,0.10971496,0.68941814,0.61023885,-0.029941622,0.77745473,0.27879846,-0.081074916,0.44555706,-0.23734677,-0.19566521,-0.5831036,-0.23209593,-0.2432524,-0.28824002,-0.48882547,-0.13708247,-0.34399018,-0.8046888,0.26763687,0.093304835,0.089159295,-0.16643496,-0.0005911248,0.19397174,-0.10099338,-0.021979187,-0.052579265,-0.24035694,-0.58530873,-0.52481943,-0.58769745,-0.47428778,0.27420858,1.040559,-0.16398704,-0.26419955,-0.076743655,-0.42526117,-0.031969845,0.03832484,0.18780783,0.2279741,0.2676783,-0.12399558,-0.67937905,0.5037643,-0.08957194,-0.09074129,-0.563009,0.11624338,0.72809464,-0.5564971,0.6545929,0.20781745,0.22096644,0.16004078,-0.5248519,-0.25899318,0.16491024,-0.2574116,0.6024679,0.24419269,-0.7373907,0.42492566,0.16760638,0.0799982,-0.6281005,0.6227595,0.008549579,-0.025956346,-0.05056595,0.30105233,0.17115827,-0.095245324,0.0708364,0.30872947,-0.61580145,0.24322589,0.27606636,0.035497487,0.44687793,-0.093777545,-0.016912635,-0.5073815,-0.04581387,-0.5095286,-0.2518711,0.10788976,0.051013503,0.18648863,0.21108758,-0.026718616,0.3097939,-0.16158149,0.1865174,0.061669767,-0.18236354,0.38147527,0.3879142,0.4116456,-0.4941998,0.5343998,0.088314995,0.2432683,0.26426664,0.09319891,0.42571098,0.3170486,0.47549888,-0.19783604,-0.10633634,0.25786242,0.7100902,0.20580986,0.24603999,0.07196001,-0.19774409,0.23615941,0.14352523,0.057137225,0.008590319,-0.4384353,-0.011163796,0.012392973,0.28227657,0.36306587,0.06465269,0.16680299,-0.010251633,-0.17127934,0.23623155,0.15563548,-0.21925004,-1.2710842,0.43868548,0.24639866,0.68438685,0.6158724,-0.006611117,-0.032185614,0.599352,-0.27665496,0.08866312,0.47761917,0.06421752,-0.4479817,0.55756265,-0.53628784,0.6457406,-0.1954067,0.0034196633,0.070402995,0.20125268,0.36797646,0.8808948,-0.03870413,0.08536102,0.078099124,-0.35545966,0.13629659,-0.32619375,0.11411478,-0.48600706,-0.23362027,0.5758449,0.49417907,0.25467196,-0.3805615,-0.0925917,0.06481854,-0.16702999,-0.022142818,-0.05115952,-0.113891944,0.020635584,-0.73295957,-0.32821217,0.47397617,-0.39233974,0.0524616,0.1423376,-0.43037567,0.3529415,-0.18454881,-0.0049179965,-0.07123332,-0.6435521,-0.10053355,-0.24804406,-0.38845477,0.28502208,-0.5187486,0.22101161,0.19563548,-0.051167797,-0.31704155,0.36432737,0.08378464,0.78225327,-0.08328193,-0.017437091,-0.31392553,-0.06382076,0.24611054,-0.17812058,-0.20191751,-0.51726997,0.031767704,-0.5098605,0.28784814,-0.113584325,-0.20222914,-0.09538321,-0.04108881,0.0748871,0.45033154,-0.26573175,-0.14002384,-0.18991902,-0.038795616,-0.22827516,0.014410274,-0.2978756,0.2998194,-0.05319873,0.11802703,0.042579733,-0.052597873,-0.012922636,0.19660972,0.10930235,0.2747191,0.2722266,-0.060067296,-0.245486,-0.026205828,-0.08631711,0.32568893,0.13659832,-0.021107929,-0.16760072,-0.13796426,-0.31817892,0.43182674,-0.14956467,0.23194215,0.0015465809,-0.53757584,0.5995678,-0.010518032,1.1205407,0.043705266,-0.33455512,0.08765658,0.48033613,0.056397,0.20275709,-0.30857834,0.63948077,0.5623326,-0.10752536,-0.29672593,-0.26680383,-0.13765217,0.14499648,-0.29974574,-0.20023204,-0.07658102,-0.7499371,0.044540532,0.12710695,0.16448225,0.20171003,-0.014900582,-0.21981914,0.09827278,0.11982707,0.4959915,-0.56685513,0.014733191,0.27912456,0.35347444,0.122640446,0.16255412,-0.42717797,0.46563393,-0.76871043,0.20245361,-0.3396363,0.12029947,-0.22446612,-0.20248155,0.19279858,0.07060522,0.37264487,-0.18843307,-0.25840828,-0.23485744,0.71516436,0.13028659,0.37389275,0.81235236,-0.20356762,-0.0617845,0.1493026,0.520015,1.0380207,-0.034805343,-0.19688734,0.20948227,-0.38730767,-0.64521223,-0.02072263,-0.48988825,0.18695612,0.04242933,-0.21057831,-0.12613358,0.34258032,0.13092998,0.078966245,0.12670927,-0.69653004,-0.33689576,0.4356167,-0.20548382,-0.360306,-0.26582104,0.15526219,0.67675674,-0.44509873,-0.18314804,0.05289787,0.35246995,-0.16136919,-0.6093423,0.10835014,-0.40247056,0.29589075,0.076730244,-0.3667357,0.0645953,0.22039221,-0.3844939,0.10185696,0.21894908,-0.30476078,0.031493764,-0.22905186,-0.14996552,1.0582687,0.1162694,0.0054604327,-0.50541204,-0.5325755,-0.83098954,-0.31056476,0.2051002,0.096581206,-0.154544,-0.38501555,-0.17947301,0.045234866,0.05961122,0.05201348,-0.52681774,0.4863124,0.09721797,0.39927268,0.17084599,-0.86267614,-0.023595078,0.14904383,-0.088343516,-0.5814334,0.6066083,-0.24001901,0.7922646,0.06237201,0.03371032,0.11026887,-0.5676445,0.33615127,-0.4832757,-0.03042339,-0.64023083,0.18276061 +685,0.59824497,-0.18310545,-0.60231173,-0.0074821594,-0.25282642,0.024038063,-0.21043032,0.53671587,-0.04871463,-0.11201232,0.020334573,0.14090721,-0.10393175,0.36355782,-0.21655926,-0.73469895,-0.16400574,0.13203086,-0.6508666,0.7052272,-0.31442526,0.4344107,-0.3237354,0.49074796,0.1149844,0.31879103,0.08613868,0.09366305,-0.074599825,-0.058637656,0.020104285,0.17579198,-0.745088,0.13026455,-0.07105403,-0.26173145,-0.047563415,-0.20995428,-0.40753004,-0.73615557,0.2973044,-0.71868265,0.5588853,0.038464125,-0.34580204,0.3131685,-0.0545003,0.3090769,-0.41045076,-0.05300526,0.1257099,-0.037842736,0.028058758,-0.43315893,-0.17992304,-0.47899166,-0.53438807,0.004920244,-0.77833885,-0.31782502,-0.117818244,0.17034279,-0.29161966,-0.10713755,-0.21551174,0.11272354,-0.5273914,0.10816261,0.06587082,-0.13782293,-0.029586038,-0.5332583,-0.038893122,-0.0392832,0.29316235,-0.11070991,-0.12900928,0.3108101,-0.1163116,0.3665074,-0.024767151,-0.20309356,-0.40124482,0.01341364,-0.045187917,0.5552464,-0.21918303,-0.5391149,-0.14047036,0.12010668,0.25690883,-0.034501746,0.141967,-0.30245426,-0.07440008,-0.039874017,-0.028231863,0.41907504,0.5619649,-0.21136339,-0.12983403,0.59791064,0.52407455,0.28847495,-0.06976864,-0.13041556,-0.21599643,-0.31792864,-0.07084466,0.062977,0.042090673,0.37090218,0.15394846,0.33788556,0.52633506,-0.07535829,0.011120489,-0.2225522,-0.09998822,0.18025431,-0.07986942,-0.107468165,0.004977249,-0.24837765,0.30960518,-0.07033242,0.74689156,0.16725312,-0.60245997,0.573913,-0.5350738,0.13367638,0.102548376,0.54552597,0.6982963,0.491005,0.041088495,0.6626266,-0.36656916,0.17773598,-0.042899165,-0.36178684,-0.048313398,0.08658496,-0.120414205,-0.42202413,0.12132769,-0.03286267,-0.2043646,-0.030246612,0.4799198,-0.5812714,-0.105313934,-0.08989286,0.748714,-0.35802343,0.019711623,0.64714944,0.99850243,0.801027,0.002703678,1.0528768,0.51776326,-0.119791396,0.1694832,-0.4156475,-0.73986983,0.2575147,0.37550113,-0.23764548,0.6083883,0.07259273,-0.1453304,0.26802137,-0.13758458,-0.11504238,-0.2265026,0.53221554,-0.0009868696,-0.042038504,-0.3796695,-0.12533364,-0.014390467,-0.02690384,0.10091673,0.34440115,-0.36216456,0.1739677,-0.11540298,1.8918217,-0.08552602,0.13284071,0.12526163,0.7182648,0.35886672,-0.08683271,-0.07329734,0.55428,0.3739554,-0.08332998,-0.6561486,0.04451795,-0.42322153,-0.5551371,-0.10851726,-0.34923464,-0.16684167,0.063988574,-0.32301527,-0.17684102,0.23239206,-0.13852423,0.33233643,-2.5328472,-0.04653695,-0.08507085,0.40167353,-0.38688278,-0.47746685,0.011984282,-0.49779254,0.37464026,0.37435648,0.5122578,-0.4965885,0.28363568,0.33507332,-0.29119575,-0.08946814,-0.41093525,0.13544378,0.13920832,0.53825545,-0.3099059,-0.061043687,0.1877795,0.28148702,0.42713693,0.07612859,-0.06436098,0.4893215,0.40498596,0.008664956,0.16832073,0.03720218,0.49873224,-0.19248034,-0.13405147,0.47332242,-0.14727898,0.46415204,-0.120747924,0.11051775,0.15737692,-0.47218725,-0.9023378,-0.24295092,0.09500034,1.26044,-0.4543957,-0.3609675,0.14890002,-0.13013764,-0.10443999,-0.01706491,0.20116259,-0.21684358,-0.19421902,-0.4921335,0.14847219,-0.12987088,0.3868251,0.025350828,0.1506564,-0.32057574,0.54516226,-0.26925305,0.3772859,0.20275876,0.34324753,0.0005638416,-0.5520378,0.22392862,0.7245951,0.35191762,0.062322177,-0.16039921,-0.3041156,0.06476392,-0.1524702,0.10972379,0.56003594,0.6299857,-0.05134324,-0.017101366,0.3112313,-0.05819507,0.034432158,-0.20675929,-0.2647686,-0.2126033,0.0019180133,0.47909594,0.6984755,-0.2220804,0.6874425,0.007081981,0.30132288,-0.041662075,-0.4243849,0.4703522,0.79618967,-0.28331208,-0.12700197,0.31162423,0.34044176,-0.37943462,0.42952994,-0.65449643,-0.2476252,0.5947707,-0.2677696,-0.37598926,0.41004795,-0.23031399,0.052301362,-0.8796981,0.4136843,-0.05655207,-0.4029291,-0.5054575,-0.18722545,-3.185659,0.023317525,-0.29034755,-0.24985224,-0.064976215,-0.14535235,0.0018701416,-0.88383347,-0.59730893,0.07912434,-0.03285844,0.4252358,0.0018689942,0.17919165,-0.21825501,-0.32036334,-0.300225,0.2726591,0.002455598,0.42894605,0.060811136,-0.3394253,-0.24260037,-0.095055416,-0.25423378,0.11516468,-0.46534392,-0.37653548,-0.17989594,-0.72927946,-0.0316178,0.60265124,-0.33824268,-0.019710986,-0.30658627,-0.011073724,-0.13993126,0.32392886,0.35115412,0.13543466,0.31940287,-0.120647185,0.050078828,-0.44816664,0.22072403,0.15627186,0.36128983,0.38245267,-0.045757916,0.10366185,0.52643895,0.57796735,-0.09455856,0.57382387,0.3868357,-0.16777651,0.5194131,-0.4291884,-0.2864047,-0.75739014,-0.47141224,-0.07503324,-0.21835367,-0.5315265,-0.267386,-0.34637254,-0.80764806,0.368076,-0.28416058,0.42971742,0.051313877,0.27238518,0.5913543,-0.09355144,-0.008321663,-0.11681204,-0.067492135,-0.43302903,-0.20682122,-0.5582275,-0.5978092,0.43624693,0.74000466,-0.23932442,-0.23410557,0.03439551,-0.30336738,0.18350847,-0.25444412,0.11418967,0.24565493,0.32174575,0.09919764,-0.5261558,0.43160185,-0.13385203,-0.02202638,-0.547358,0.20325893,0.58115286,-0.69257694,0.16986902,0.14823489,0.2516404,0.1751975,-0.51878893,-0.11877926,0.33755347,-0.10122419,0.2627087,0.104948446,-0.698248,0.3284348,0.3738683,-0.30267784,-0.77761906,0.31160715,0.075314224,-0.36962926,-0.13400441,0.41030186,0.003938487,-0.037650876,-0.25711533,0.21696122,-0.4338913,0.06638299,0.22464107,-0.0632414,0.19983752,-0.0571514,-0.29204178,-0.58496594,0.2883792,-0.37008002,-0.4949552,0.16232255,0.105840996,-0.05123895,-0.10214304,0.12006138,0.47653908,-0.5580184,0.13868286,-0.02412323,-0.28226644,0.60443217,0.4458354,0.646137,-0.44285935,0.72992283,-0.0035067934,0.13356456,0.23802918,0.017653584,0.50263274,0.10036527,0.24064586,0.31551477,0.05764068,0.2289939,0.7627088,0.23481354,0.62279063,0.075203255,-0.34249827,0.07575809,0.24819565,0.16321042,-0.07669537,-0.30707467,0.071235746,0.26133838,0.08324869,0.525697,0.29810622,0.21663475,-0.14891526,-0.35266432,0.19394661,0.21684383,-0.18248028,-0.9036659,0.2869081,0.14600448,0.75222886,0.3659218,0.115623154,0.087570414,0.41363117,-0.1675525,-0.0038699966,0.26843297,-0.055262864,-0.59836495,0.4594315,-0.50380874,0.4946429,-0.16234687,-0.008685272,0.33574098,0.081536405,0.27004653,0.71842897,-0.05378679,-0.012294127,-0.032314174,-0.20601252,-0.2248431,-0.3710361,0.26394564,-0.40280026,-0.37978357,0.5914625,0.34723246,0.23663872,-0.23256472,-0.018764192,-0.08534903,-0.19953766,0.25405753,-0.12502028,0.017515274,0.11554404,-0.55460006,-0.5568158,0.5067558,-0.088270634,-0.031104323,-0.2912956,-0.09879092,0.30322236,-0.24378592,-0.048546113,0.19940509,-0.7873183,0.4207063,-0.32250008,-0.37213892,0.31505027,0.01431611,0.2331094,0.21152243,-0.08328669,-0.41882956,0.22038998,0.068388656,0.9343606,-0.0703677,-0.25829703,-0.3885826,0.23890811,0.31020164,-0.19940338,0.14777216,-0.27148345,0.103445254,-0.5617744,0.2555725,-0.07028539,-0.40950754,-0.09061387,-0.19912034,-0.09755402,0.4316963,-0.029718308,-0.16092007,-0.19789775,-0.20766786,-0.24715717,-0.17007579,-0.27593037,0.11026219,0.23606865,-0.3621474,0.03206642,-0.043462414,-0.08811922,0.4416393,0.07536183,0.34421736,0.56740195,0.21678546,-0.33320442,-0.13998392,0.31330222,0.54601735,0.12379299,0.17314145,-0.38757044,-0.56856126,-0.3587486,0.15306461,-0.4141574,0.12908897,0.3243609,-0.49124944,0.53880244,0.1507313,1.1543788,-0.1427197,-0.29078653,0.15770823,0.6205514,0.16424781,-0.026492098,-0.53454095,1.1491965,0.6101675,-0.13982137,-0.13285932,-0.15563907,-0.56599015,0.32463342,-0.3737291,-0.12114857,0.027946899,-0.43783617,-0.29102665,0.17188774,0.22130607,-0.060235582,0.055970397,-0.040848073,0.16091776,0.09491979,0.32042295,-0.5820478,-0.22737852,0.3643234,-0.09115733,-0.0064449403,0.111111626,-0.4683998,0.3990048,-0.44823366,0.121573284,-0.4511101,0.099221244,0.06294825,-0.38359576,0.15731335,0.20632234,0.4536152,-0.4336062,-0.52042997,-0.21914898,0.3710397,0.14457634,0.055438325,0.58904433,-0.31592545,0.17833894,0.080429316,0.46191755,0.8716977,-0.007093237,0.05393884,0.2745931,-0.4020926,-0.7029674,0.07517678,-0.1071715,0.2814508,-0.22052816,-0.2877278,-0.62662035,0.18657057,-0.010253622,-0.19433525,-0.06908531,-0.6289539,-0.17705539,0.18775868,-0.28884485,-0.268777,-0.37837443,0.14957505,0.9997349,-0.40550944,-0.3207051,0.15056267,0.11314922,-0.14245255,-0.5857995,-0.07569681,-0.28515622,0.19057035,0.110660106,-0.27738792,-0.29125342,0.23793307,-0.35877785,0.102818005,0.29820842,-0.4123445,-0.024530245,-0.065557554,0.008200508,0.9975608,-0.15596518,-0.21948603,-0.65737236,-0.43258366,-0.9625642,-0.71197563,0.5634298,0.15785052,-0.040957205,-0.8293055,-0.0026876559,-0.18707675,-0.05313278,-0.12924562,-0.45903903,0.31429747,0.16129223,0.5189832,-0.10644657,-1.0533615,0.24832295,0.21438977,-0.18395677,-0.808858,0.50445175,-0.21166888,0.7153232,-0.0028630358,0.0060543874,0.29557514,-0.6164525,0.10823516,-0.42184302,-0.09914088,-0.65737116,0.32275012 +686,0.2510369,-0.22313732,-0.31103665,-0.17537846,-0.32289645,-0.024375012,-0.06106052,0.35956624,0.17184423,-0.34956872,-0.2476699,-0.14419262,0.16363771,0.41944584,-0.20385808,-0.68419963,-0.08817943,0.078439064,-0.4914469,0.40285775,-0.69770473,0.20853609,0.17511009,0.22614299,0.16470279,0.40925238,0.47031957,-0.28475034,-0.16588746,0.004274116,-0.21156138,0.074152976,-0.5102896,0.28305012,-0.112873286,-0.23688577,0.09819117,-0.44988304,-0.291475,-0.6296899,0.12505007,-0.9119899,0.22573519,0.024320481,-0.06444891,0.050575994,0.13841747,0.24948868,-0.5454004,-0.0905741,0.24079601,-0.02688296,-0.038782872,-0.23258577,-0.05869082,-0.33896157,-0.45275453,0.006048816,-0.40028682,-0.37598732,-0.27164447,0.14600386,-0.36878207,0.018082261,-0.14958206,0.4246073,-0.47805008,-0.20710094,0.3563482,-0.19013691,0.16793357,-0.4037111,-0.042450488,-0.07270548,0.3261956,0.08961657,-0.10521887,0.48659346,0.37251705,0.2015791,0.29029402,-0.23433556,-0.23717014,-0.12767626,0.41281506,0.40160358,-0.13137427,-0.4810221,-0.22020276,0.12504874,0.0016878981,0.26468843,0.047116254,-0.23316073,0.00017455909,0.048222486,-0.36142096,0.37886047,0.52825236,-0.37129912,-0.3317792,0.28036717,0.56800956,0.054872613,-0.21785475,-0.0914689,-0.004852217,-0.57695526,-0.11566954,0.22459,-0.10841454,0.55014026,-0.21320406,0.071745,0.9148709,-0.18863963,0.034547023,0.003446533,-0.06288436,-0.30911475,-0.461976,-0.09549495,0.08827404,-0.5249318,0.040126223,-0.31270373,0.97353894,0.2896016,-0.7873256,0.5017392,-0.46804097,0.16509606,-0.21728815,0.5808875,0.4232497,0.4721343,0.36975902,0.8582437,-0.43149778,0.16496779,0.0012246737,-0.5775959,0.15906551,-0.34508082,0.11205109,-0.3623557,0.14503339,-0.07861857,0.08185896,-0.049066838,0.31851646,-0.5083302,-0.012542433,0.26618668,0.7886706,-0.3778022,-0.07775163,0.532148,1.0330062,1.0105306,0.15451244,1.1991436,0.4069384,-0.24043362,0.29273435,-0.32839563,-0.78356814,0.18086725,0.40201095,0.3252463,0.06280866,0.035506107,-0.053860262,0.23952597,-0.40169936,0.15539837,-0.22839414,0.3654241,0.19985856,-0.022596914,-0.42768383,-0.32881892,-0.03647482,-0.07104388,-0.034118626,0.15625691,-0.1327302,0.3477462,-0.041537993,1.4170464,0.06467033,0.03748128,0.0145231765,0.69958484,0.25139305,-0.03903406,0.06842624,0.4428839,0.3397389,-0.033395138,-0.59004325,0.25225288,-0.26204622,-0.53425395,-0.051263835,-0.418145,-0.082435295,0.15560836,-0.33761677,-0.15537849,0.074327,-0.20569175,0.5698214,-2.8207548,-0.22123863,-0.062719755,0.18397485,-0.32449487,-0.12422509,-0.09968155,-0.6039315,0.3047921,0.3336789,0.6055542,-0.6992019,0.46370733,0.49555254,-0.5369691,-0.14835057,-0.7422221,-0.08076379,-0.17509812,0.42916423,0.15602794,-0.012550657,-0.20026325,-0.029300997,0.6816613,0.107231684,0.17343578,0.35638177,0.25858897,0.24457805,0.5724823,0.14167672,0.59592533,-0.37683153,-0.043137785,0.2940102,-0.3714927,0.39908537,-0.03127322,0.04539597,0.5240556,-0.45444158,-0.96388507,-0.71359646,-0.44425297,1.0903034,-0.46259958,-0.30595288,0.26039955,-0.15722074,0.08839953,-0.033934638,0.33825928,0.023010671,0.1676462,-0.61865133,0.18886067,0.16665618,0.1082578,0.035417974,-0.08373928,-0.15320979,0.8523953,-0.08782098,0.5229237,0.1419832,0.1317084,-0.072460026,-0.3679775,-0.024428193,0.7309002,0.18209489,0.02738192,-0.19192956,-0.38219687,-0.030686663,-0.24700762,-0.014380822,0.4235218,0.74905026,-0.040459815,0.016516084,0.3995867,-0.07311824,-0.018268468,-0.09647106,-0.31048343,-0.080405354,-0.035969123,0.41691685,0.6933116,-0.21949449,0.45822436,-0.3571759,0.33306402,0.03657778,-0.5324044,0.62159723,0.5625053,-0.11507617,0.00802505,0.36004442,0.58661026,-0.518052,0.36003047,-0.5315001,-0.19492663,0.61449707,-0.19308259,-0.39450935,-0.0035714323,-0.20844497,0.05478074,-0.78542775,0.4808682,-0.31792015,-0.43180087,-0.37940824,-0.092988834,-3.94725,0.119628906,-0.21185635,-0.12569652,-0.10376016,0.014242048,0.21313128,-0.528676,-0.4016837,0.11407341,0.12976244,0.4984647,0.044155315,0.17119232,-0.31665727,0.08036743,-0.2934591,0.14233083,0.008136355,0.35685092,-0.14930329,-0.3220251,0.042558093,-0.24991193,-0.48295578,0.30441773,-0.63840383,-0.5048994,-0.0954337,-0.46615124,-0.42130387,0.6599567,-0.35192907,-0.021195428,-0.07543694,0.14440526,-0.40117806,0.2892184,0.14828008,0.085898146,0.053134326,-0.067946464,-0.07540159,-0.42491797,0.5207187,-0.0743666,0.5102721,0.25134894,0.07328511,0.028890189,0.5482069,0.4891434,-0.048430204,0.94792616,0.26464507,-0.12126275,0.23982921,-0.26121414,-0.14714393,-0.6212318,-0.29859817,-0.12702207,-0.3816039,-0.52634656,0.11659228,-0.3023143,-0.7023213,0.5431769,0.10963775,0.240603,0.028435498,0.054447766,0.4799399,-0.025412206,0.0909171,0.007772872,-0.08389688,-0.7732569,-0.28518474,-0.67607266,-0.4490385,0.10464554,0.8574859,-0.3060333,-0.14675313,-0.2933305,-0.51925075,-0.017525068,0.14767037,-0.06780898,0.31575233,0.42984965,-0.05738383,-0.6860695,0.53832823,0.0818274,-0.09074717,-0.33359084,0.13184136,0.6686586,-0.82062614,0.6673799,0.49266493,0.08233221,0.15723726,-0.35627657,-0.43148422,-0.21010774,-0.12904155,0.4097803,0.035218086,-0.791998,0.45735428,0.43074542,-0.6287572,-0.69201446,0.24524556,-0.16076598,0.003070891,-0.04005066,0.21855952,0.22287557,-0.16530807,-0.1638062,0.19280459,-0.5449406,0.25062984,0.17730424,0.0380604,0.4271372,-0.017735971,-0.31576142,-0.6606499,-0.16839713,-0.59122,-0.13866273,0.34971994,0.07311626,-0.17933288,0.11498021,0.14789186,0.4231974,-0.19248813,0.050189577,0.17703475,-0.3162845,0.40411574,0.3613626,0.2667588,-0.34888485,0.55329776,0.09847557,-0.0052241087,-0.0064591262,0.069252424,0.21959867,0.19797285,0.36961624,-0.07436219,-0.17191283,0.37820917,0.76184344,0.15912808,0.5744364,0.005048715,-0.15075636,0.6124629,-0.06222894,0.14957657,0.14089474,-0.44698197,0.081247576,-0.13990341,0.20217334,0.36471874,0.17656732,0.28715748,0.19018713,-0.13362023,-0.059603937,0.2797173,-0.011714311,-0.9079892,0.46158013,0.34020942,0.6966321,0.55692667,-0.14378354,-0.116065614,0.7996959,-0.20582223,0.2108523,0.3721741,-0.055578597,-0.6964757,0.69719625,-0.6895677,0.38822943,-0.28906217,-0.035024557,0.059014224,0.29043826,0.26059946,0.7366378,-0.28593075,0.023392636,-0.06769982,-0.2833544,0.08693066,-0.44093072,0.1481608,-0.41667464,-0.3764103,0.6021911,0.34239155,0.36210024,-0.06231551,-0.07697676,0.0016518029,-0.13272023,0.39909008,0.007089672,-0.09549089,0.1361997,-0.7154052,-0.37001392,0.5904361,-0.12105043,0.34228006,-0.17962581,-0.2956641,0.19273461,-0.342366,-0.08856834,-0.011757305,-0.49418706,0.073597535,0.06378427,-0.5877178,0.36560568,-0.24492407,0.24100263,0.24106935,-0.009467964,-0.14886756,0.1633083,0.08303402,0.77730435,-0.15089947,-0.3041246,-0.41926274,-0.076363645,0.24759156,-0.23429903,0.11214557,-0.3802246,-0.12229523,-0.45780066,0.69875264,-0.21486942,-0.43781278,0.13494486,-0.26874554,-0.1322585,0.6130941,-0.04183237,-0.16581805,-0.21410185,-0.046816103,-0.29807654,0.033978727,-0.21230626,0.24574082,0.28776148,-0.15713851,-0.07048033,-0.5256859,0.030391904,0.48504174,-0.14773412,0.32562175,0.050623056,0.040909,-0.2235476,-0.03334736,0.1694793,0.46336797,0.28061488,-0.019696208,-0.2541807,-0.17927274,-0.2266778,-0.008716143,-0.17257601,0.21734953,0.07967361,-0.3952615,0.7991749,-0.16099024,1.2787725,0.146464,-0.29383558,0.04717072,0.610239,0.12165295,0.1727106,-0.31304213,0.7483645,0.6535689,-0.12775666,-0.07271695,-0.72589004,-0.19207954,0.32641584,-0.16094662,-0.091737874,0.052568056,-0.59016645,-0.23313507,0.23861559,0.15687789,0.30113247,0.0064097047,-0.088657364,0.0050235963,0.11722754,0.48795697,-0.5262077,-0.17928013,0.15674305,0.26422244,0.049250938,0.13237908,-0.44507593,0.45592248,-0.6503244,0.28936276,-0.30943492,0.038429283,-0.41798654,-0.35151848,0.07800667,0.039645392,0.41584998,-0.092106685,-0.5503575,-0.015469919,0.592994,0.20696218,0.27001226,0.74632555,-0.16912058,-0.00047892332,0.13909224,0.533515,1.168188,-0.36303762,-0.13686131,0.3990248,-0.33724025,-0.8003433,0.5044835,-0.30369452,0.010274882,-0.09493208,-0.3870734,-0.5616874,0.26297152,0.26310351,-0.052119136,0.15412776,-0.53591126,-0.102565646,0.35086393,-0.34740588,-0.29832065,-0.30015218,0.41862628,0.6043407,-0.43790007,-0.1949719,0.09373184,0.17931375,-0.31106526,-0.41511518,-0.21127208,-0.26325694,0.31774393,0.095223255,-0.27693966,0.0061647436,0.18283336,-0.2861434,0.12758945,-0.018781938,-0.42672938,0.2224617,-0.06525279,-0.016489236,0.8465588,-0.14991361,-0.02463502,-0.77385074,-0.46626565,-0.8565655,-0.49643543,0.61976516,-0.0016370874,-0.0009049727,-0.43073815,-0.037706118,0.20938642,-0.24803814,-0.0244173,-0.7204386,0.41923636,0.03539389,0.37951863,-0.09848681,-0.82933193,0.09639464,0.11850027,0.08814179,-0.599107,0.5440003,-0.26680115,0.86716074,0.06896819,-0.101527005,-0.05701675,-0.24198611,0.003040213,-0.45267355,-0.3251428,-0.576284,0.14749998 +687,0.36379716,-0.08677257,-0.44468206,-0.1932685,-0.21619706,0.1792096,-0.163879,0.29938576,0.0234431,-0.5987073,0.042967662,-0.17656788,-0.04687306,0.1895514,-0.16827662,-0.48167303,-0.01584303,0.08347375,-0.48323828,0.34448138,-0.5019508,0.311119,-0.041318145,0.2012542,0.019096248,0.28482527,0.13284601,-0.29576385,-0.10273626,-0.13619089,-0.064959675,0.11975453,-0.62391776,0.25033197,-0.14734016,-0.25530356,0.037663594,-0.5443243,-0.437045,-0.5593245,0.25076273,-0.8581537,0.48740134,0.06760715,-0.21008965,0.17058346,0.07803971,0.3151024,-0.15023075,0.16282736,0.37865013,-0.17097521,-0.0127453925,-0.057267014,-0.36965007,-0.42075044,-0.63678104,0.03857906,-0.46067274,-0.085587114,-0.23862472,0.13852234,-0.3216978,-0.0651094,-0.21312346,0.27389222,-0.34808117,-0.108066015,0.14608914,-0.07749307,0.44130078,-0.50553954,-0.16775852,-0.029825322,0.30922645,-0.33167478,-0.24397795,0.2732057,0.32835457,0.51092106,-0.07373224,-0.21824677,-0.22891754,0.04272921,0.13002197,0.59609497,-0.28504086,-0.18671922,-0.12146731,-0.09783768,0.19005616,0.26083645,-0.062617704,-0.40798855,-0.09747289,0.080458924,-0.22196104,0.25293323,0.5188579,-0.34843382,-0.20837663,0.49810168,0.41466597,0.023723206,-0.037650634,0.13526802,0.021698171,-0.50787425,-0.2621744,0.34503826,-0.20439835,0.2827078,-0.12355326,0.24878803,0.7059648,-0.18518223,0.12100177,0.044572964,-0.07415969,-0.08102625,-0.114004575,-0.2214579,0.15752879,-0.48145884,0.19900028,-0.17497867,0.784686,0.11461801,-0.83273786,0.31426674,-0.5767483,0.06972302,-0.05304202,0.5247141,0.6698429,0.49726212,0.066009074,0.6697733,-0.46515042,0.068737596,-0.10827256,-0.35482496,0.16356643,-0.056351732,0.06687792,-0.57020074,-0.20051469,0.16503842,-0.10473232,-0.18431233,0.24076572,-0.3704602,-0.019614339,0.22856191,0.664091,-0.29621062,0.021368371,0.5539357,0.98881537,0.83703834,0.22295976,1.2450886,0.20784816,-0.17686749,0.332219,-0.34465224,-0.7634431,0.30527732,0.4336374,-0.21947663,0.25312442,0.16181806,0.06323322,0.34106782,-0.36514485,0.141363,-0.2606544,0.18466221,-0.01312278,-0.19899304,-0.23058268,-0.2955233,-0.11700983,-0.10815497,0.07577446,0.12912722,-0.15937993,0.23353876,0.30878386,1.5756571,-0.10981611,0.16358271,0.09925144,0.44417796,0.07176827,-0.12542923,-0.063504286,0.19055225,0.35001788,0.00620472,-0.5144522,0.1852013,-0.0033797543,-0.5224363,-0.197082,-0.25017524,-0.08197026,-0.19127628,-0.51779544,-0.10886397,-0.03276558,-0.49350408,0.5391434,-2.8049664,-0.006987846,-0.13717522,0.32738367,-0.24710955,-0.44209772,-0.14355555,-0.5493632,0.5583861,0.3294684,0.28376108,-0.6501872,0.44846794,0.5203244,-0.41875654,-0.094095364,-0.7475975,-0.06537708,-0.093807705,0.19780311,0.078885116,-0.07917835,0.08269648,0.10214357,0.29308042,-0.1638382,0.08596646,0.119688444,0.3505888,0.15317969,0.5663673,0.026086338,0.49663603,-0.20337066,-0.17386736,0.3052268,-0.5086877,0.1035148,0.002579838,0.0984176,0.3295897,-0.42834365,-0.6629895,-0.69727224,-0.5948406,1.0534476,-0.17171167,-0.2140357,0.28551057,-0.1464355,-0.39163372,-0.14388663,0.44578227,-0.18448156,-0.028929355,-0.86258537,-0.10764567,-0.21724139,0.2012021,-0.094060056,0.17588663,-0.46288702,0.602545,-0.15002246,0.5562857,0.39853412,0.092583574,-0.25851974,-0.50542533,0.0053931098,0.91477406,0.2801097,0.1871613,-0.1624692,-0.17478633,-0.14412013,-0.16342786,0.1894452,0.44994193,0.70237225,0.009285119,0.06617616,0.32778522,-0.19774373,-0.01711626,-0.119116224,-0.27140188,-0.087532945,-0.02931402,0.6111702,0.45757088,-0.11750074,0.35662296,-0.20812711,0.2938913,-0.3514985,-0.28421706,0.45930764,0.97377515,-0.05224434,-0.11029984,0.56599975,0.52794313,-0.18653342,0.38490677,-0.62671,-0.25188953,0.36512548,-0.17011023,-0.39707133,0.18250021,-0.33413234,0.13998877,-0.9212078,0.40682715,-0.25066468,-0.4550907,-0.62246436,-0.19358705,-3.138829,0.09236178,-0.18358769,-0.27326533,0.047521677,-0.06301801,0.42901286,-0.49937612,-0.40262336,0.17431848,-0.026920859,0.6289332,0.01978137,0.08844026,-0.3793191,-0.119875096,-0.39763218,0.19627914,0.14677675,0.31642544,-0.0060502966,-0.34836575,0.053022638,-0.18739359,-0.33189481,0.0354444,-0.54756373,-0.40522465,-0.2597045,-0.45233494,-0.3979605,0.655511,-0.3710726,-0.023569465,-0.21460634,-0.10576909,-0.24687529,0.5416578,0.16889296,0.13939057,0.052391138,-0.03761929,-0.13705096,-0.3379146,0.3728971,0.12914316,0.30772784,0.48565325,-0.19036205,0.07935726,0.477033,0.57612735,-0.10162655,0.7874576,0.42950493,-0.090642974,0.26241723,-0.38470206,-0.14503488,-0.45340344,-0.266606,-0.1279359,-0.3444924,-0.486453,-0.06768341,-0.39075762,-0.7285911,0.4207179,0.014543188,0.009302386,0.03222414,0.043188144,0.26117384,-0.18869866,-0.03657901,-0.07105247,-0.087755404,-0.33698738,-0.3830392,-0.621505,-0.47589388,0.10417637,1.080403,0.07858775,-0.095689654,0.14330932,-0.20696217,-0.05558931,0.036573693,0.026627218,0.20467375,0.36338857,-0.038385995,-0.6593843,0.45769775,-0.062166754,-0.1689298,-0.5657376,0.08821117,0.7441336,-0.6107677,0.52110916,0.36791623,0.17294382,-0.13791402,-0.51824075,-0.25861254,-0.11808947,-0.2564963,0.3846539,0.07499354,-0.8191348,0.5519619,0.38553748,-0.2126246,-0.682738,0.5436394,-0.012861667,-0.11416065,0.1563387,0.29675615,-0.07825098,-0.09250566,0.0032073536,0.4324826,-0.39391148,0.34355015,0.36121878,0.04021803,0.37383214,-0.15181245,-0.035290543,-0.56512356,-0.00101704,-0.44122654,-0.28190118,0.19717066,-0.005267165,0.1559268,0.3515729,0.009176167,0.4440015,-0.31141138,0.100665174,0.025580715,-0.15135378,0.09642057,0.3185682,0.418769,-0.44922912,0.5413328,-0.019221537,0.030568767,-0.15937297,0.15067016,0.5196825,0.21131532,0.2757893,-0.1421772,-0.2731334,0.25323325,0.98404604,0.24782439,0.42983285,0.100574374,-0.098366,0.2599072,0.14367095,0.1445642,0.08851083,-0.5251012,0.051613934,0.030405056,0.20250513,0.28465432,-0.067016974,0.32121527,-0.2753066,-0.09355038,0.06791535,0.22779463,-0.09204414,-1.2502121,0.40374583,0.18460792,0.6915974,0.41763702,-0.009154518,0.15792504,0.57430196,-0.3618773,0.13245513,0.18119606,-0.10317755,-0.46413192,0.4168631,-0.65103745,0.34331423,-0.010377248,0.010611536,-0.11250503,-0.0066385665,0.2898248,0.8311755,-0.20965903,0.16325384,0.005817009,-0.3037696,0.24563058,-0.2617757,0.21116786,-0.39431342,-0.26620725,0.66890115,0.39793822,0.41072622,-0.095991634,0.0019662397,0.049308382,-0.07140774,0.08538568,0.06362916,0.0097376425,0.09438797,-0.5613684,-0.30775818,0.5358997,-0.04501478,0.123977356,0.1357504,-0.41402408,0.25401145,-0.13574213,0.010477757,-0.1519392,-0.7038922,0.048449364,-0.29434714,-0.33500946,0.24984637,-0.22564699,0.33416378,0.24195382,0.031568244,-0.19370916,0.3166484,0.38689837,0.72692627,-0.09100459,-0.22385262,-0.33166486,-0.035833556,0.19562912,-0.282235,-0.2307757,-0.27944195,0.04166285,-0.54895794,0.21997903,-0.0116781015,-0.3292586,0.26041698,-0.23804665,0.021857878,0.56834525,-0.12353991,-0.06610341,0.102719694,-0.009943156,-0.26237568,-0.047863647,-0.14171664,0.22749257,0.20308262,0.0386761,-0.00031790734,-0.13485213,-0.2239819,0.36278465,0.20859082,0.35440648,0.41592875,0.13329509,-0.38220575,-0.0924547,0.0445146,0.4147892,-0.011603173,-0.05232781,-0.12418681,-0.31172302,-0.20851429,0.21499196,-0.2062289,0.24283329,-0.01924533,-0.42785034,0.65465486,-0.11486411,0.99697596,0.030032456,-0.24120347,0.014690403,0.39175436,0.05183385,0.04524374,-0.43568465,0.8269752,0.55197835,0.0034285465,-0.12720145,-0.25553468,-0.124385625,0.15383963,-0.14397192,-0.18941052,0.05330663,-0.66446215,-0.23688975,0.23086458,0.08509455,0.11897564,-0.008672174,-0.06695504,0.18876056,0.13932103,0.32887426,-0.4926279,-0.04034505,0.28351694,0.20647584,0.079658754,0.19678405,-0.4126458,0.35709858,-0.47172755,0.05188322,-0.269123,0.08649233,-0.15432271,-0.13356952,0.14606395,-0.12385771,0.47188765,-0.025389822,-0.2854331,-0.043872286,0.49580896,0.06059846,0.3098311,0.680477,-0.13988549,0.17859802,-0.049369644,0.46769932,0.9937176,-0.18045285,0.07547428,0.47613737,-0.28474954,-0.5273321,0.24922398,-0.33410484,0.14149366,-0.044698503,-0.30585682,-0.13979241,0.25042707,0.21950005,0.18005037,0.014976239,-0.57823277,-0.2066247,0.4120606,-0.33421603,-0.30195916,-0.2502539,0.21680054,0.7906888,-0.35206407,-0.14646062,0.12645319,0.28668505,-0.2656458,-0.4642484,0.0752235,-0.339274,0.25213513,0.07914478,-0.31271705,0.09297844,0.04465274,-0.18305571,0.1580029,0.20032553,-0.44095916,-0.0064718085,-0.29869595,-0.03321769,0.7866212,-0.0303171,0.052625697,-0.6041908,-0.5203206,-0.89062524,-0.3459959,0.3447434,0.1550527,-0.09106341,-0.39968178,-0.09019574,0.04379654,-0.08762045,-0.056436736,-0.4346933,0.46649864,0.14876175,0.37671012,-0.103754476,-0.67183226,0.0576449,0.17831701,-0.025835713,-0.5816563,0.5791055,-0.08371501,0.8598302,0.105491675,0.045026883,0.067421846,-0.43704683,0.14362165,-0.20993277,-0.18215594,-0.86583763,0.09000324 +688,0.45416996,-0.23679943,-0.2921313,-0.093043886,0.017355422,-0.15442318,-0.07822821,0.71212214,0.18799187,-0.48145917,-0.26142946,-0.14329146,-0.05461489,0.45728815,-0.120218694,-0.61446875,-0.13306028,-0.00251243,-0.16060881,0.5569617,-0.4006864,0.1762891,-0.052598074,0.51649904,0.17047071,0.2711515,0.29542172,-0.03801075,-0.16897686,-0.086900294,0.015773525,0.14521919,-0.50759894,0.3016861,-0.17310512,-0.3893635,-0.1216965,-0.45577297,-0.37877634,-0.63622576,0.23399131,-0.75570035,0.5012258,0.1502827,-0.20785828,0.3011075,-0.10433352,0.21861942,-0.31457654,-0.03137897,-0.05464897,0.12712644,0.08499533,-0.12459422,-0.11658618,-0.24099112,-0.47421655,0.15114452,-0.40834138,-0.17041631,-0.31031713,0.13682273,-0.25462756,-0.08960169,0.07659054,0.3418881,-0.429376,-0.20750089,0.1034992,-0.07746191,0.42184797,-0.47753695,-0.2720562,-0.15424214,0.14213789,-0.23489265,-0.15471652,0.27489218,0.2184732,0.45004606,-0.07251532,0.0238365,-0.29125777,0.01345743,0.22179072,0.5869076,-0.26406708,-0.7186408,-0.10729004,0.017414903,0.23387925,0.20797211,0.0692525,-0.27824074,-0.07758715,-0.009304722,-0.18151397,0.24557014,0.542998,-0.16097452,-0.37601507,0.3843721,0.4558924,0.13627122,0.016903758,0.07283217,0.137146,-0.44300053,-0.16483088,-0.090114236,-0.109214395,0.58752435,-0.04125261,0.38261077,0.60490483,-0.22168921,0.19906068,-0.078180544,-0.12595816,-0.17863534,-0.21442151,-0.2245843,0.13548459,-0.31055003,0.19128661,-0.19126661,0.75918657,0.16684626,-0.9104281,0.3512541,-0.4579551,0.07860959,-0.13762857,0.62159246,0.7576243,0.28424275,0.36476162,0.6650955,-0.46697426,-0.016268969,0.011446784,-0.38721824,0.0036720831,-0.13440494,-0.1980757,-0.48263052,-0.17662977,0.34674618,-0.19843256,0.27169743,0.28192976,-0.5930414,0.05474162,0.22562586,0.7390631,-0.28092292,-0.045665313,0.8306586,1.1308521,0.85557824,0.04669981,1.060427,0.3511169,-0.09347179,0.45576182,-0.36023116,-0.6735401,0.30429924,0.52299434,-0.3407105,0.32213676,0.046993356,-0.16829205,0.30548605,-0.57396156,0.117538214,-0.23337905,0.19155681,0.007459531,-0.24468982,-0.6037008,-0.21163239,-0.19919045,-0.015084569,-0.06724244,0.2239132,-0.27119198,0.30921736,-0.054304793,1.5499377,-0.055675417,0.1285988,-0.09114323,0.6884387,0.09731716,-0.3295277,-0.08743945,0.21307822,0.45463085,-0.008400763,-0.5714834,0.075244986,-0.13708563,-0.503236,-0.15710196,-0.34492052,0.07148811,0.12251978,-0.3526694,-0.13703774,-0.13526213,-0.3872958,0.5568835,-2.9892552,-0.3034707,-0.0666077,0.28993687,-0.2565155,-0.27527022,-0.108201005,-0.34700596,0.48597512,0.5466344,0.47227383,-0.63283235,0.07345375,0.38028887,-0.379709,-0.17446129,-0.6168348,0.2060468,-0.14794122,0.35539523,0.016976263,-0.03234108,0.14198531,0.2014993,0.509787,0.13230623,0.10816881,0.17151761,0.19390883,0.06973923,0.18005617,-0.12595315,0.43690053,-0.22179371,-0.25803337,0.2699958,-0.23568521,0.1685958,-0.14740129,0.1958024,0.2264385,-0.5235155,-0.91642475,-0.6595981,-0.51416636,1.1581329,-0.12275254,-0.41455686,0.42339364,0.023860896,-0.24383332,-0.11828879,0.5550363,-0.236826,-0.007829693,-0.7077894,-0.05061717,-0.046585947,0.14374529,-0.03547384,-0.06914327,-0.5420009,0.54479593,-0.11072875,0.34256855,0.39490178,0.31755424,-0.1728863,-0.62737685,0.14444375,1.0292096,0.39225283,0.18305282,-0.11403155,-0.18479861,-0.34885013,-0.06293628,0.22140104,0.3748212,0.9252959,-0.020533549,0.10242441,0.27835116,0.034321483,0.105884254,0.067998685,-0.21444435,-0.09653977,0.044311713,0.6421403,0.6006271,-0.27802444,0.482645,-0.29097542,0.17372407,-0.18703891,-0.30087662,0.70091754,0.66586787,-0.11465903,-0.19168407,0.63647836,0.45086932,-0.26496923,0.43209574,-0.69621056,-0.21263556,0.42486203,-0.13160282,-0.36853215,0.2010709,-0.32664534,0.2140059,-1.1670054,0.37014225,-0.20625897,-0.49933228,-0.63420415,-0.06693479,-3.5944073,0.07407413,-0.16814776,-0.41915646,0.0140873,-0.2839087,0.31565675,-0.63724834,-0.4890895,0.30697182,0.07104314,0.5827922,0.015263538,0.12252739,-0.16797708,-0.10411928,-0.44006678,0.040702436,0.17960383,0.38867483,0.117259,-0.32457975,-0.1262167,-0.088008665,-0.51712537,0.16290568,-0.4161192,-0.46120307,-0.30377492,-0.5491536,-0.22496851,0.6771875,-0.4145701,0.013167094,-0.2209053,-0.046872944,-0.215926,0.49150452,0.18752564,0.04563272,0.09163991,0.038066935,0.10217472,-0.2903245,0.37900475,0.11373479,0.32313475,0.44230327,-0.4173999,0.28590086,0.59070486,0.62223756,-0.24952446,0.6423742,0.6230234,-0.033031743,0.23256375,-0.38346276,-0.1317874,-0.41113937,-0.48525396,-0.06172496,-0.31447372,-0.58725506,-0.18246724,-0.33565405,-0.7788792,0.45164096,-0.1476921,0.45074686,0.01708438,0.08595737,0.38478696,-0.111745715,-0.059026863,-0.094507,-0.016064594,-0.59400636,-0.18840043,-0.63436043,-0.62621695,0.24873418,0.82982653,-0.07880008,-0.044020284,0.039896607,-0.1937893,-0.007193701,-0.12472143,-0.11591596,0.05864669,0.19264613,-0.06608241,-0.72229284,0.45122075,0.066514306,-0.27584445,-0.66274434,0.21694238,0.5494948,-0.5457732,0.38005129,0.225235,0.08046389,-0.04816701,-0.49045828,-0.32204178,-0.20092641,-0.11408768,0.32712522,0.13688004,-0.851621,0.47867465,0.33907762,-0.26100174,-0.7775619,0.4695263,0.010643569,-0.041569013,0.0063999393,0.105391055,0.0719648,-0.022586504,-0.2848478,0.31076238,-0.323651,0.30763283,0.20455603,-0.024538547,0.61820763,-0.10552928,0.04647531,-0.6388164,0.045683723,-0.53967303,-0.23282202,0.1633137,0.26820752,0.09994251,0.025795877,0.023684964,0.3461537,-0.29583332,0.13829228,0.07864564,-0.26700446,0.15847017,0.46820474,0.46609783,-0.3596244,0.60290116,0.07248253,-0.07719241,-0.2103257,0.045270666,0.439818,0.08960902,0.12025074,-0.10368616,-0.25772777,0.18657301,0.5503918,0.22667187,0.35965237,0.03800082,-0.04619983,0.34974506,0.11284534,0.22688657,0.15461674,-0.49077162,-0.019265393,-0.21682191,0.17121331,0.47808346,0.26711202,0.2841026,-0.14456353,-0.28718254,0.1051865,0.27454403,-0.0025555592,-1.263003,0.4839008,0.14650185,0.667037,0.6128904,-0.0127538815,0.020238748,0.6705642,-0.12976734,0.21268316,0.3261845,0.14710563,-0.6408735,0.5780076,-0.7763476,0.47776452,0.0759225,-0.056209892,-0.006611953,-0.06386714,0.32507423,0.674567,0.002596135,0.1944055,-0.05771807,-0.09651959,-0.025052508,-0.3466781,0.24763656,-0.6081616,-0.14986388,0.60824275,0.44873154,0.16665184,0.03550448,-0.025310388,0.08236355,-0.0706447,0.15880185,-0.18720293,0.17576082,0.043214973,-0.67703646,-0.29696992,0.47609878,0.054470986,0.17658336,0.004253956,-0.15739608,0.089172564,-0.22851257,-0.19572477,0.052586887,-0.57900256,0.047440697,-0.28145608,-0.21191414,0.48900655,-0.29001042,0.35841116,0.13409103,0.04725586,-0.10798967,0.074323624,0.17801784,0.76760143,0.008905132,-0.33823323,-0.39296946,0.16181007,0.26666167,-0.2175159,-0.11192278,-0.23477717,-0.32217464,-0.6833346,0.49079692,0.06429791,-0.25998148,0.22402757,-0.08337492,0.11793282,0.53544885,-0.08580128,-0.02234429,-0.034287345,-0.24983911,-0.26674768,-0.069582395,-0.19100793,0.38277158,0.36059913,0.037986804,0.06543437,-0.10923868,-0.12518898,0.3375373,0.11264149,0.41704628,0.24210377,0.16425957,-0.2878484,-0.24319692,0.06857876,0.32902882,0.24352382,-0.06373054,-0.23306926,-0.41347718,-0.34736133,-0.12698328,-0.18202694,0.274605,-0.01428225,-0.24767981,0.47360453,0.1668389,1.200595,0.039969888,-0.369879,0.22596379,0.42494464,-0.046065122,-0.06918383,-0.3787098,1.0486826,0.5476609,-0.12840764,-0.12736244,-0.35566702,-0.2221279,0.34390107,-0.24965824,-0.26322204,0.01354229,-0.64721704,-0.46293154,0.19646455,0.19575524,0.14538969,0.022165308,0.07644464,0.16285796,-0.04569511,0.45203748,-0.33237478,-0.06415274,0.38263357,0.3730308,0.09503761,0.150322,-0.46382043,0.38073957,-0.5479363,-0.030109545,-0.28398678,0.16380672,-0.14465462,-0.52695316,0.11909511,0.20054887,0.5528243,-0.10898143,-0.4993268,-0.17258215,0.63278747,0.04148854,0.12294803,0.5155211,-0.23763354,0.04234922,-0.13704261,0.32218137,1.1807303,-0.2366879,0.022026204,0.35339835,-0.2255549,-0.7013893,0.5055105,-0.28962788,0.43592438,-0.2301169,-0.26887774,-0.5347274,0.18818565,0.1411644,-0.13397856,-0.076331176,-0.4326842,-0.37969077,0.19736807,-0.23099963,-0.21162038,-0.44784808,0.019986475,0.6654431,-0.375093,-0.39368796,0.2253743,0.22666426,-0.23781745,-0.52855325,-0.0715513,-0.13483785,0.270537,0.09112122,-0.4322982,-0.25632453,0.08893857,-0.25242943,0.21231045,-0.078819275,-0.37446174,0.18644702,-0.2956287,-0.030796973,0.9959302,-0.23528288,0.15136968,-0.69556457,-0.46967682,-0.87588614,-0.56771964,0.6452262,0.24402791,-0.032244846,-0.5593614,0.21134804,-0.072422475,0.16681182,-0.14250661,-0.2540984,0.35355783,0.059720654,0.4924587,-0.08433369,-0.6651879,0.13623327,0.1819619,0.06266097,-0.6409465,0.47520122,0.118347995,1.0172673,0.0896483,0.074815,0.22356975,-0.6052768,-0.18388611,-0.18003708,-0.30762473,-0.63216835,0.30325523 +689,0.45903504,-0.07321759,-0.5413797,-0.29147804,-0.4354489,0.22130416,-0.2882725,0.30725977,0.20185456,-0.30065206,-0.10138456,-0.20324661,0.011190907,0.39231825,-0.26653826,-0.65538406,0.01938535,0.14405483,-0.5935719,0.43965924,-0.4862114,0.48661485,0.14692,0.3541403,0.09947974,0.17945746,0.2975553,-0.15450808,-0.025438095,-0.14583369,-0.20563167,0.19821472,-0.6395379,0.13149421,-0.17899609,-0.3708054,0.07636836,-0.31097433,-0.18983306,-0.78633875,0.3173785,-0.7595593,0.46509236,-0.09595048,-0.5801948,0.15012875,0.053961825,0.18899533,-0.42927104,0.06907357,0.14904372,-0.25700042,-0.07559462,-0.015270321,-0.2865815,-0.4830492,-0.57034796,-0.038850505,-0.6268869,-0.029660035,-0.34965965,0.1755949,-0.42511985,0.030136157,-0.11019125,0.22744168,-0.49872485,0.025085043,0.24518204,-0.10320676,0.1821122,-0.51777565,-0.10253262,-0.21331562,0.15227175,-0.008990095,-0.16624232,0.26939926,0.5526448,0.5733965,0.092395775,-0.21980919,-0.25586015,-0.09494076,-0.0004492442,0.39985934,-0.031314813,-0.24326243,-0.3069185,-0.14964248,0.4505158,0.33237487,0.112722255,-0.32799625,-0.11876193,-0.012381045,-0.22846527,0.24799408,0.44138354,-0.29972267,-0.11487899,0.32773525,0.43997887,0.14765514,-0.22484137,0.22233672,-0.10145433,-0.49910164,-0.30768794,0.18902546,-0.2719448,0.7261208,-0.24204716,0.10873718,0.85982144,-0.23593864,0.14484027,-0.025967928,-0.051777266,-0.18953197,-0.1574052,-0.19760732,0.19791451,-0.6692129,-0.007917182,-0.30191502,0.75018984,0.1238004,-0.7614021,0.24018876,-0.5644797,0.09010113,-0.120776534,0.63704836,0.66262275,0.4232909,0.34314442,0.79169154,-0.62258667,0.15141258,0.15360199,-0.4716903,0.17198895,-0.13726848,-0.12180453,-0.5284995,0.02133684,0.047898,0.02614353,-0.005154763,0.37286028,-0.37221634,-0.09149014,0.038713954,0.503461,-0.44869938,-0.056588944,0.8879143,0.9649327,1.0584427,0.1021489,1.3911033,0.41443205,-0.1083289,-0.058397315,-0.08710874,-0.6169671,0.13118842,0.38645014,0.027819792,0.39066166,0.08356602,0.13776293,0.33808503,-0.310307,0.017668447,-0.09205595,0.14749984,-0.111117005,-0.1299382,-0.5001107,-0.32392406,0.17179175,0.13217928,-0.13867426,0.33674908,-0.09064792,0.51504785,0.3058017,1.3706973,0.11018344,-0.04708289,0.023300027,0.39085108,0.2846817,-0.106484495,0.02039125,0.35926086,0.43129224,0.0024987618,-0.5640886,-0.03585357,-0.26261586,-0.49412715,-0.18091637,-0.40071237,-0.055259883,-0.17855327,-0.54699975,-0.055108167,0.028405737,-0.28789657,0.539689,-2.2409987,-0.082034096,-0.19704247,0.25652403,-0.15574749,-0.35168654,-0.07529009,-0.469973,0.33967066,0.4825528,0.33318704,-0.7941459,0.3969997,0.41604185,-0.36187753,0.024730781,-0.7083142,-0.28955117,-0.111850806,0.2536301,0.014910042,-0.19231687,-0.14816995,0.30200374,0.7307096,0.04974601,0.19928388,0.19856922,0.5176837,-0.19768976,0.53259635,0.3062481,0.4275487,-0.054887403,-0.09018393,0.49296045,-0.36814365,0.4077135,0.091680735,0.15524639,0.5467609,-0.5211451,-0.9017869,-0.71333325,-0.3771001,1.3083638,-0.46222645,-0.4260578,0.28937632,-0.028537147,-0.19462165,0.032940842,0.3336156,-0.06626412,0.004939771,-0.7447528,-0.03507758,-0.02748785,0.15294646,-0.05029377,0.14927863,-0.16065194,0.8238289,-0.15726264,0.42863712,0.44912502,0.2333393,-0.121082105,-0.55958694,0.053530708,0.86909384,0.568655,0.104122505,-0.32679966,-0.29028141,-0.3959816,-0.18739273,0.22586374,0.3991831,0.94912827,-0.11054172,0.2574463,0.36321577,-0.11921706,0.1042218,-0.19715622,-0.30083725,-0.020831335,0.033523116,0.44172376,0.6293421,-0.16599153,0.23858775,-0.11000356,0.21016976,-0.15526453,-0.62104344,0.58004683,0.94247454,-0.1535479,-0.21390034,0.47424403,0.43664438,-0.4104642,0.52297616,-0.6267761,-0.28367186,0.68614906,0.015388664,-0.41002935,0.15041856,-0.33096218,0.0936759,-1.0226521,0.29923692,-0.11268649,-0.36628452,-0.5171822,-0.17947651,-3.5538132,0.33167872,-0.23742689,-0.13680975,-0.24379158,-0.24817139,0.39734998,-0.6617831,-0.7190739,-0.018228084,0.11952789,0.470173,0.049873408,0.13260947,-0.3697325,-0.3351136,-0.30876014,0.061670642,0.1609492,0.16895586,-0.09454884,-0.49792907,-0.0009655078,-0.31230816,-0.53874505,-0.06804308,-0.42850742,-0.6332761,-0.27517623,-0.40009576,-0.22643998,0.66033,-0.2702982,-0.051301833,-0.17955288,-0.09383463,-0.30878857,0.24518636,0.2426313,0.0224847,-0.06361755,-0.08651878,-0.11721958,-0.36542508,0.21554384,0.081472844,0.18654849,0.3246488,-0.12905641,0.22863945,0.5750698,0.50791776,-0.22533447,0.72458947,0.25241342,-0.07818968,0.37719938,-0.2730582,-0.3496994,-0.8153913,-0.32562578,-0.2603716,-0.5038311,-0.34092304,-0.089682505,-0.30741614,-0.87972337,0.48672846,0.020974496,0.16726504,-0.17301752,0.24443568,0.3873225,-0.07134744,-0.04029846,-0.10576951,-0.31149325,-0.54311866,-0.39843643,-0.8791846,-0.5430262,0.21048333,1.1565824,-0.13139184,-0.1768033,0.045338314,-0.2553809,0.15928847,0.049934186,0.06580409,0.15702511,0.42241958,-0.17208408,-0.66481876,0.47656077,0.049764793,-0.242464,-0.6157444,-0.04720751,0.71102244,-0.62596875,0.46793193,0.48164693,0.21349491,0.2738898,-0.81484044,-0.2215232,0.04511008,-0.22526713,0.65623766,0.23532668,-0.64305234,0.493914,0.2416568,-0.11056862,-0.5832389,0.69185174,-0.056177225,-0.20635587,0.032402374,0.4106742,0.04961502,-0.0690199,-0.21286829,0.32120934,-0.54937536,0.296948,0.47795582,0.056261174,0.3148555,-0.025142085,-0.3048269,-0.75474775,-0.072686315,-0.49077323,-0.2680847,0.01384837,-0.12827216,-0.017070325,0.049850725,0.16575518,0.39564058,-0.42979103,0.2824054,-0.052151687,-0.18139216,0.49561068,0.48639104,0.37829372,-0.4840733,0.63943,0.16534287,-0.014273754,-0.1259294,0.16130391,0.5173777,0.26998535,0.30480283,-0.018128244,-0.12750103,0.25605196,0.57481945,0.22247478,0.38076714,0.12928417,-0.21470329,0.38883048,0.34320393,0.26169693,-0.07842166,-0.18807663,-0.017185736,-0.028954856,0.09347865,0.5517062,-0.0595502,0.33238086,-0.02285273,-0.07202547,0.25500515,-0.0057169916,-0.175936,-1.1278836,0.24796599,0.3327912,0.6604801,0.6447883,-0.07025306,0.122817606,0.39868063,-0.48352325,0.060333412,0.40699875,0.22478488,-0.5170001,0.67137593,-0.5727038,0.3997775,-0.19272873,-0.03150161,0.053777967,0.21586771,0.39982283,0.9574255,-0.027419781,0.10001683,0.025591435,-0.2744055,0.16469233,-0.41897476,-0.15966901,-0.4604877,-0.27654928,0.61151236,0.28201216,0.3019132,-0.35173032,-0.08326099,0.03776678,-0.2430647,0.121468656,-0.016905423,0.10457529,-0.16598746,-0.54030436,-0.4071285,0.5032996,0.002828765,0.21360709,0.053932294,-0.44379997,0.26904064,-0.15926792,0.0064333896,0.0132215945,-0.79953766,-0.27135488,-0.4141025,-0.43890578,0.4106566,-0.32504115,0.24730924,0.28188497,0.009372877,-0.3661984,-0.0043658414,0.13519904,0.6801895,-0.0017460823,-0.17119433,-0.32074744,0.13474652,0.37981033,-0.35883966,-0.13703914,-0.23176867,0.02255704,-0.46317366,0.37731287,-0.16534548,-0.15678683,0.042943876,-0.24934019,-0.06917875,0.41220525,-0.28390515,-0.23394288,0.04115226,0.10339138,-0.23067309,-0.15798695,-0.37178838,0.3195823,0.020907573,0.00657293,0.035265755,0.03582615,0.103834175,0.3903311,0.020252688,0.22674058,0.32428944,-0.25023922,-0.5454512,0.036599226,0.007694368,0.31210974,0.11357821,-0.15473737,-0.41645876,-0.37842384,-0.1432381,0.265895,-0.3065057,0.13884388,0.12322705,-0.3277003,1.0235279,0.17276707,1.182949,0.0011324048,-0.3852417,-0.022406483,0.6471523,0.1254868,0.01219778,-0.14419289,0.90711683,0.5730558,-0.25530943,-0.2915616,-0.38040334,-0.15767814,0.27838644,-0.3237153,-0.24980998,-0.1209177,-0.7018777,-0.20690428,0.1970353,0.29979178,0.07970301,-0.1021009,-0.01120676,0.1294671,0.08821329,0.5978629,-0.5856126,-0.16347331,0.1850073,0.068627246,-0.041296482,0.23479111,-0.36490837,0.45484325,-0.72770566,0.14242609,-0.4055386,0.1411849,-0.030208332,-0.37802884,0.26244205,-0.042402513,0.28956828,-0.26353326,-0.26540443,-0.25540286,0.6927195,0.29845408,0.37262148,0.67126304,-0.41287762,0.17114843,0.112087995,0.44253096,1.21502,0.00441657,-0.100571364,0.27993375,-0.4534968,-0.5284496,0.20974766,-0.45286602,0.22269095,-0.08408711,-0.44266698,-0.44932845,0.36412156,0.09671789,0.03514901,0.20514728,-0.5672176,-0.124966875,0.45214733,-0.32420164,-0.36032167,-0.3674873,0.3317633,0.5785081,-0.45190346,-0.34515715,-0.02627761,0.16838983,-0.23720306,-0.63123375,0.02594902,-0.33160317,0.5129252,0.12698215,-0.36873716,0.20123596,0.2188141,-0.3798568,0.13160114,0.43438688,-0.20658146,0.056714978,-0.30640805,0.017502926,1.1105212,0.016823407,-0.086732835,-0.62917495,-0.5040964,-0.9061526,-0.22762822,0.48207816,0.24226722,0.11074786,-0.71087265,0.027521402,-0.09024658,0.10176777,0.09574803,-0.35921022,0.4783165,0.2275467,0.42274627,0.08717049,-0.8141019,-0.00022959709,-0.01996191,-0.19651197,-0.5096669,0.6271301,-0.2024044,0.6592794,0.21898556,0.16574523,0.119566426,-0.61262447,0.4367736,-0.3319343,-0.21202205,-0.551399,0.07137896 +690,0.3683582,-0.15125537,-0.6030726,-0.039545428,-0.4090534,0.029752906,-0.322273,0.21769534,0.47943634,-0.12579638,0.015425416,0.1674322,-0.068993196,0.15895149,-0.17352831,-0.7073928,-0.1404939,0.08017903,-0.65225214,0.43566912,-0.5372989,0.47505832,-0.19675358,0.29751325,0.06497327,0.4840776,-0.01454834,0.058992095,0.052120365,0.034937125,-0.10325272,0.098834045,-0.35251305,0.018597765,0.009402573,-0.3424894,0.0635666,-0.2919264,-0.27566317,-0.7113914,0.26344028,-0.61959213,0.6254262,-0.052643392,-0.1293427,0.1085879,0.22525859,0.33754274,-0.32614797,0.12909058,0.14098191,-0.23783161,-0.10541532,-0.46306852,-0.39101434,-0.34814686,-0.49486026,0.021361154,-0.63609546,-0.20830579,-0.2990974,0.22993119,-0.35861474,0.025154259,-0.23653455,0.38039157,-0.38600573,0.0823425,0.2946886,-0.18134715,0.2513306,-0.61550313,-0.048475318,0.07120093,0.26473406,0.08988683,-0.03414143,0.37356132,0.2023112,0.37098736,0.26012984,-0.30772835,-0.38924146,-0.19420926,0.029429495,0.44281688,-0.32302713,-0.029544728,-0.25641906,0.094443694,0.37414217,0.41077963,-0.050207548,-0.15283345,0.013942411,-0.039807048,-0.28920445,0.75260633,0.5504741,-0.33639956,-0.2729039,0.30058417,0.54758006,0.17963183,-0.30369207,0.02731204,-0.07658213,-0.3451271,-0.16948612,0.1377018,-0.07848792,0.3706167,0.009642073,0.18106093,0.75194216,-0.17657228,-0.10074228,0.05581693,-0.012001021,0.14827575,-0.37984732,-0.11440265,-0.054832865,-0.55858105,0.21613696,-0.20166896,0.57191706,-0.1348053,-0.6498627,0.43241793,-0.5623928,0.16303493,0.014184124,0.54844064,0.6734198,0.5410873,0.20263436,0.8398279,-0.28687114,0.17591532,-0.18387151,-0.28627163,-0.07195755,-0.10716107,0.21787961,-0.5106698,0.27599254,-0.18663958,-0.031907223,0.25787187,0.32943746,-0.5224083,-0.07088781,0.11102816,0.91741836,-0.26321712,0.0072287363,0.71476907,1.1865845,1.1465265,-0.035104793,0.7737964,0.26414016,-0.25782052,-0.026467612,-0.5590664,-0.37979817,0.17628191,0.28145805,-0.009282529,0.40730804,-0.10540592,0.00953392,0.3019274,-0.27956393,-0.12720916,-0.083769545,0.4475431,0.19773833,-0.0019812733,-0.4459005,-0.061182227,0.049427815,-0.04410592,0.24791972,0.27573225,-0.30403545,0.1621265,-0.005317194,1.1056775,-0.02132484,-0.0569109,0.19339392,0.5284364,0.3065967,-0.048680954,-0.01716483,0.40685704,0.21597394,-0.13606824,-0.5575406,0.32401562,-0.28232923,-0.34061366,-0.111622944,-0.2529089,-0.14593959,0.15696338,-0.25692183,-0.21771784,-0.18456747,-0.3477431,0.38823554,-2.6445756,-0.27517837,-0.12512565,0.33948606,-0.17549232,-0.25316235,0.08223836,-0.47328177,0.38721964,0.17821942,0.40804258,-0.57707006,0.61670065,0.5686881,-0.5970151,-0.15997764,-0.5884271,-0.04359031,0.0028782573,0.496542,0.013135399,-0.10088324,-0.24412622,0.25343743,0.76410663,0.00044834826,0.12726496,0.5130311,0.36641344,-0.07532177,0.3442357,0.014209496,0.59817344,-0.20721905,-0.19532302,0.20961772,-0.3223595,0.08666094,-0.17722258,0.0009666852,0.34779912,-0.45519257,-0.8688317,-0.45041493,-0.015308431,1.1901804,-0.18860361,-0.57349676,0.2010976,-0.27407476,-0.16910349,-0.050061468,0.5430327,-0.011656622,-0.061048158,-0.5958784,0.16682673,-0.06342419,0.20735182,0.090708576,-0.08180381,-0.21499467,0.6473426,-0.1275099,0.49195093,0.19866636,0.3857452,-0.21930242,-0.1809555,0.08344597,0.73144436,0.38220212,0.022284018,-0.037881397,-0.2771864,0.08777022,-0.26378915,0.054572992,0.6589042,0.66678536,0.025361612,-0.033079445,0.29378608,-0.25393924,-0.043323554,-0.26971707,-0.19516727,-0.052546196,0.045628108,0.42188564,0.6484906,-0.057622105,0.4688607,-0.20359768,0.27206486,-0.20079443,-0.40699926,0.41088793,0.41386408,-0.26399764,-0.23463562,0.5320245,0.42282805,-0.4348007,0.3634703,-0.63362885,-0.19852737,0.55954677,-0.25847554,-0.34352466,0.17205976,-0.26111996,0.08735423,-0.5333087,0.25230294,-0.36219332,-0.6690854,-0.24918173,-0.114935264,-3.2285845,0.22827943,-0.25309128,-0.11240782,-0.2805057,-0.08449278,0.21261665,-0.5504128,-0.5498497,0.19221197,0.27563605,0.5256865,-0.091282144,0.049265575,-0.16196585,-0.3163268,-0.114362955,0.25547332,0.061843045,0.31962687,-0.10536759,-0.3684478,-0.03062941,0.05233687,-0.65043515,0.1977627,-0.6161728,-0.34719986,-0.035207793,-0.57759523,-0.18868157,0.550667,-0.38255766,0.11114633,-0.47822624,0.0993482,-0.13306093,0.20517656,0.1366627,0.17268172,0.32735848,-0.17455198,0.28658578,-0.31305155,0.480084,-0.11141515,0.39523205,0.09426097,0.075992875,0.031400535,0.40234452,0.76833826,-0.0014026889,0.917649,0.3012744,-0.21697153,0.34120873,-0.33006898,-0.19765961,-0.5754878,-0.4741753,0.1271443,-0.2638667,-0.481278,-0.031581577,-0.41271496,-0.7706795,0.4405225,-0.019495828,0.39097193,-0.10047108,0.43859336,0.5003024,-0.13872184,0.024693994,-0.030511392,-0.20742676,-0.36906025,-0.19504498,-0.5954946,-0.49954224,0.14734583,0.857862,-0.37887594,0.16376765,-0.00900312,-0.26604992,-0.027057827,0.19640337,0.2225003,0.24541244,0.33806816,-0.07237292,-0.4738136,0.14211293,-0.09776676,-0.1877815,-0.6060459,0.21037851,0.61249256,-0.5373519,0.6073504,0.30503842,0.07278671,-0.051418282,-0.5572626,-0.007889619,0.14846513,-0.22085992,0.44477326,0.1894426,-0.78664,0.589753,0.37220818,-0.46866587,-0.7506085,0.13222659,-0.17959611,-0.34670287,-0.14859438,0.35220364,0.30095223,-0.14438085,-0.16704287,0.08953134,-0.37779373,0.2847127,0.082783334,-0.14147614,0.14524078,-0.13737682,-0.27111298,-0.7729009,-0.020744279,-0.52246654,-0.22673228,0.21100008,-0.0020023903,0.00078142964,0.06446666,-0.015123137,0.43470535,-0.21445975,0.05386663,-0.10393935,-0.47757074,0.21450658,0.45456102,0.36106887,-0.30812314,0.45931694,-0.015327895,-0.22476223,0.072849534,0.07529877,0.41324258,-0.072664045,0.39255005,0.00959528,-0.17908213,0.33842775,0.6334647,0.10700907,0.40837553,0.09208502,-0.20187299,0.43722126,-0.028962377,-0.071228474,0.09301727,-0.27531815,0.075067095,-0.015578517,0.12737569,0.45132822,0.30689353,0.30741867,-0.01189601,-0.12983128,-0.0571993,0.23966043,-0.17126963,-1.3761948,0.37447637,0.24547179,0.8263505,0.40785798,0.3086483,-0.33001158,0.70261633,-0.094452776,0.012531906,0.46206146,0.10628251,-0.37323853,0.5611633,-0.6067354,0.4164124,-0.16816787,-0.064430155,0.2013795,0.2909281,0.32366198,0.950796,-0.19621852,-0.12682663,-0.05386773,-0.18923189,-0.20002988,-0.252531,0.057891935,-0.362214,-0.4998992,0.5179526,0.26350743,0.45394638,-0.18930426,-0.065928824,0.06280681,-0.17878425,0.2505878,-0.0071389847,-0.010908251,0.031070685,-0.50447375,-0.20646158,0.36450815,0.09651314,0.2218384,-0.25463778,-0.17770945,0.06668909,-0.08214855,-0.1292667,0.15081392,-0.44468403,0.063221686,-0.18935095,-0.525008,0.4113523,-0.10682344,0.1533914,0.112726346,0.08974784,-0.19049096,0.3202993,0.194964,0.6438597,0.10170286,-0.194292,-0.37481064,0.077494144,0.078803696,-0.1751351,0.18309762,-0.21296497,0.22714007,-0.712378,0.7152071,-0.2655315,-0.44083765,0.25372857,-0.3201978,0.01648879,0.48150334,-0.2872429,-0.1841975,-0.007871176,-0.2289037,-0.38653368,-0.35700393,-0.14158365,0.16712812,0.0723018,-0.16056217,-0.0840454,-0.3269222,-0.22645691,0.6077333,0.06918719,0.46373028,0.24819103,0.2064059,-0.2841731,0.0027897134,0.117790096,0.3654092,0.10105432,0.135287,-0.50181925,-0.47611997,-0.22393334,0.14205906,-0.06994133,0.045882523,-0.08776853,-0.2583069,0.9425456,-0.11811031,1.1378318,-0.02743873,-0.15004416,0.124501765,0.47148475,-0.13427088,0.07897786,-0.33580446,0.86074597,0.67999953,-0.23863925,0.027099058,-0.43619728,-0.18948092,0.31841332,-0.4158875,-0.031462606,-0.018530052,-0.6884171,-0.43883634,0.2462914,0.06525103,0.1616578,-0.012930901,0.13353412,0.029238222,0.18452954,0.36160687,-0.4863115,-0.06390505,0.2502436,0.22586192,-0.095013596,0.16247606,-0.45518667,0.2706354,-0.49925885,0.18120578,-0.29989856,-0.0036799717,-0.031127986,-0.29155466,0.27467465,-0.052506734,0.23446997,-0.26006418,-0.38350663,-0.038178004,0.36616492,0.016277626,0.099122204,0.47656724,-0.29880556,0.043664183,0.13495743,0.6799768,1.1824204,-0.17553768,-0.033317387,0.18592827,-0.41106206,-0.6236328,0.29944843,-0.17590281,-0.2591709,-0.059240878,-0.27501562,-0.39187616,0.29524246,0.12224662,0.060691413,0.068305455,-0.4473732,-0.2621858,0.20986806,-0.39775568,-0.06913002,-0.024156386,0.43552193,0.721031,-0.21425939,-0.4388246,-0.010982522,0.4782717,-0.13964725,-0.43225202,0.07151383,-0.07901057,0.4156902,0.21768798,-0.37825677,-0.090457544,0.17753114,-0.440517,-0.18728028,0.25229135,-0.32785234,0.03673593,-0.22692974,-0.064097166,0.586727,-0.2636936,0.022228787,-0.5783172,-0.5382295,-0.82465523,-0.4047747,-0.0760972,0.22393033,-0.08771761,-0.5002734,-0.025003782,-0.18078874,-0.26344457,0.07971263,-0.6283282,0.4417336,0.07791724,0.34810638,-0.49974233,-0.888412,0.024647057,0.21109538,-0.19918464,-0.6642416,0.6834273,-0.15649627,0.71401644,0.05756238,-0.11681169,0.038453586,-0.3305311,0.22303598,-0.39498833,-0.25655463,-0.77676713,0.08078815 +691,0.4522083,-0.15604001,-0.543619,-0.099018574,-0.26392826,-0.09199866,-0.3097502,0.020494195,0.21568339,-0.3026121,-0.35270378,-0.24185616,0.345012,0.6466122,-0.013991494,-0.82286966,0.014606201,0.2694108,-0.84936684,0.5893921,-0.5441915,0.3181504,0.3427201,0.30964786,0.092950456,0.29762286,0.38236004,-0.13603419,-0.2649911,0.036381245,-0.22295378,0.1315725,-0.7061234,-0.0019696308,-0.13105121,-0.5560407,0.0578506,-0.40037602,-0.2277719,-0.6918102,0.22825202,-0.9857972,0.4623229,-0.047849163,-0.064009026,-0.12449184,0.15658368,0.6058584,-0.29213154,-0.046360336,0.16515599,-0.38680202,-0.15064551,-0.2795405,-0.09620795,-0.15850845,-0.48536202,-0.07134437,-0.5274057,-0.47431153,-0.23115641,0.091669045,-0.32086486,0.23207417,-0.11401591,0.3785136,-0.4668143,-0.1459716,0.51359755,-0.1481407,0.45041546,-0.41062844,-0.06129221,-0.07970353,0.6153252,-0.1667343,-0.18192299,0.41737917,0.4102792,0.40543082,0.18767217,-0.37254637,-0.3020898,-0.19309846,0.33969948,0.62433875,-0.2007162,-0.3133807,-0.16529502,0.15027615,0.27769822,0.4270117,-0.0031304727,-0.2707315,-0.1124468,-0.0316068,-0.10391336,0.31225824,0.46184584,-0.25308397,-0.447855,0.095575556,0.6445265,0.20431505,-0.23571664,-0.13772787,0.0819198,-0.5633366,-0.13185142,0.37199005,-0.1668109,0.7118988,-0.057333272,0.19859566,0.9370463,-0.2774812,0.108065926,-0.37115738,-0.097601876,-0.25126305,-0.2816845,-0.16748835,0.24203569,-0.6752523,0.08371329,-0.30718005,0.87017095,0.19734503,-0.7688741,0.39225656,-0.58331925,0.21898519,-0.16702285,0.66314733,0.6017098,0.18025559,0.4728517,0.7393104,-0.33298433,0.34132883,-0.09908453,-0.66638035,-0.10829846,-0.24117653,0.29636532,-0.46810773,-0.00045825884,-0.091582626,0.06677031,0.3082004,0.3321977,-0.46397012,0.06683926,0.16988556,0.85260004,-0.36569154,0.049762394,0.65389496,1.0946206,1.0038618,0.099237055,1.2106525,0.48113486,-0.43909436,0.08327626,-0.23462985,-0.61266845,0.11230854,0.43654618,0.02944949,0.3308001,-0.08046986,-0.102699295,0.36700997,-0.42764887,0.09455217,-0.011455095,0.08487118,-0.028953386,0.042353056,-0.6972295,-0.24807684,-0.23228313,-0.16385573,-0.016048463,0.17927378,-0.048985485,0.62220377,-0.12699787,1.426139,-0.05746997,0.047678426,-0.027962932,0.51729083,0.21128827,-0.04309277,-0.16003157,0.22449853,0.38165304,0.016335877,-0.49351814,0.2101148,-0.33528173,-0.29034263,-0.13927718,-0.27395165,0.23932984,0.2770951,-0.44187486,-0.061008155,0.082649484,-0.19480896,0.45016208,-2.4453628,-0.32740653,-0.20901902,0.13119017,-0.33479822,-0.19033572,-0.13788281,-0.6702363,0.38310778,0.1268315,0.55152166,-0.7419824,0.4352377,0.36471242,-0.47995615,-0.16770639,-0.8504147,-0.266905,-0.03729982,0.31737205,-0.033290353,-0.19151746,0.01687291,0.22342819,0.6663964,-0.061583184,-0.0239986,0.58374023,0.27640226,0.24874394,0.6066285,0.0650577,0.6492535,-0.37901068,-0.18678896,0.34426662,-0.04497641,0.29234582,-0.22405267,0.24025449,0.54160917,-0.45869556,-0.9995088,-0.67022526,-0.5107069,0.9515408,-0.42431912,-0.5589165,0.18813016,0.13457638,0.04127387,-0.0020087613,0.49484628,-0.046112172,0.19480135,-0.7011028,0.16389726,0.03154244,0.20856203,0.16172951,-0.120108835,-0.29024768,0.6310981,-0.10028613,0.30103424,0.36126673,0.40303162,-0.0038670255,-0.3927563,0.18139139,0.93365926,0.2754104,-0.015247409,-0.3090759,-0.32778352,-0.18455115,-0.29113388,-0.031644203,0.26592633,0.98897654,-0.070361264,0.098022304,0.22833559,0.023600621,0.016869418,-0.17120937,-0.3307253,0.04493064,-0.05607674,0.5054475,0.68608,-0.053163297,0.6873716,-0.19427237,0.33221528,0.111991696,-0.519165,0.68321675,0.6913695,-0.038731173,0.01671532,0.38757846,0.302945,-0.5178597,0.51284844,-0.61986643,-0.19174026,0.75782216,-0.1999512,-0.38742495,0.30090594,-0.29310137,0.14435765,-0.90050465,0.36902937,-0.34933963,-0.23256661,-0.30473486,-0.0051723537,-3.8830378,0.31622404,-0.22689319,-0.13571855,-0.14968708,-0.11330835,0.16209921,-0.63597673,-0.5260588,0.29294658,0.13994443,0.7421065,-0.09301123,0.10199596,-0.13848248,-0.18035771,-0.118467286,0.049350634,0.2448985,0.21020284,-0.1558881,-0.46997052,0.10682274,-0.17867678,-0.6361892,0.26761484,-0.5976791,-0.5324191,-0.20222512,-0.5112392,-0.53402907,0.6569328,-0.33149564,0.11204866,-0.27717665,-0.0007957621,-0.2527188,0.41931993,0.16754302,0.29882175,0.06569424,0.07817434,0.08356113,-0.29505587,0.34419298,0.062462803,0.19357374,0.05036809,0.018432947,0.21846448,0.39736968,0.73857236,-0.047480013,0.8055286,0.4399903,-0.13286997,0.113675304,-0.3247688,-0.16533595,-0.67426056,-0.47715455,-0.094093986,-0.38191503,-0.6788982,-0.12632337,-0.3910058,-0.76885414,0.6691312,-0.07569882,0.3406556,0.061815783,0.27772474,0.41316003,-0.22780164,-0.015313128,-0.11796188,-0.08175206,-0.7176499,-0.20110525,-0.7325671,-0.6222286,0.01653227,0.67093235,-0.3694042,0.004378475,-0.03631266,-0.41708344,0.20126922,0.24607696,0.08949462,0.27404606,0.4303575,-0.09620982,-0.73384184,0.5144921,-0.0814563,-0.24012025,-0.62764513,0.16189578,0.7175677,-0.7762778,0.64157224,0.4116281,0.028962173,0.05075833,-0.40968177,-0.38127893,0.011830758,-0.292902,0.3302605,-0.03371908,-0.57090384,0.45188582,0.30820853,-0.44898683,-0.7231456,0.3278162,0.121157035,-0.34968954,0.070822395,0.2745292,-0.026259633,-0.05761876,-0.4017154,-0.056734398,-0.5248304,0.18236098,0.42172685,-0.023885999,0.12714006,-0.049311105,-0.24329185,-0.76291597,0.13179451,-0.38036716,-0.0126934415,0.3601464,0.026328294,-0.048394486,0.11862811,0.13126057,0.32156006,-0.34239992,0.13333625,-0.055246335,-0.519674,0.25043315,0.43277514,0.1420335,-0.44885033,0.6512695,-0.025336912,-0.4404373,-0.14903565,-0.033878747,0.39334673,0.13238534,0.30882627,-0.20017274,-0.37095478,0.27473953,0.6245779,0.083627634,0.48074192,0.20728189,-0.040052645,0.4465474,0.07842273,-0.0073617194,0.1684288,-0.298854,0.0072028306,-0.16070564,0.10233033,0.60168,0.3815074,0.3890667,0.10436999,-0.15635654,-0.008205514,0.1447679,-0.04982698,-1.0059127,0.4432329,0.2588836,0.7445259,0.48098695,0.037390035,-0.19521634,0.54568136,-0.41428745,0.14179662,0.28156084,-0.030945344,-0.48487192,0.91276956,-0.72060555,0.40778574,-0.09690463,-0.11718369,0.17838351,0.15057445,0.28791815,0.89027435,-0.2761712,0.084522605,-0.11832617,-0.09615359,0.031087808,-0.42625266,-0.10576415,-0.49422258,-0.48417285,0.7869699,0.2932569,0.4783063,-0.17496371,-0.044640753,0.05650923,-0.14935265,0.34208506,-0.10054293,0.16494118,0.21529219,-0.6314653,-0.25022107,0.5686455,-0.18054777,0.21451807,-0.20240869,-0.1835948,0.06541233,-0.18555458,-0.052183848,0.0012445783,-0.8964454,0.073812544,-0.40433455,-0.48243392,0.40727362,-0.22250588,0.27030468,0.21989833,-0.021870183,-0.056026094,0.44379514,0.101396866,0.86016697,0.098334655,-0.27847043,-0.24667703,0.18954812,0.38629687,-0.1396304,0.33448812,-0.25996843,-0.10441416,-0.50319254,0.7517309,-0.08719389,-0.25874287,0.17565559,-0.23760432,-0.021512091,0.5878405,-0.30434057,-0.010461644,0.11870836,-0.050212387,-0.41564772,-0.1163236,-0.35224056,0.074635416,0.33796936,0.06450571,-0.040647782,-0.017470658,-0.03833741,0.65335166,0.0011077684,0.5168669,0.13132542,0.07596653,-0.23335549,-0.040765043,0.06054636,0.3683883,0.16602415,-0.123466216,-0.56377554,-0.45208195,-0.2760856,0.058629908,0.013155064,0.25376314,-0.04639336,-0.19776312,0.9523077,0.020249905,1.1460662,0.09433726,-0.41379637,0.06272681,0.3793095,-0.19102216,-0.03994486,-0.47898337,0.8628038,0.4843846,-0.00910187,-0.07670344,-0.39584777,-0.10843475,0.3170798,-0.2208409,-0.008357167,0.085921094,-0.44508508,-0.59479797,0.2269863,0.2536768,0.13297097,-0.11466896,0.2582512,0.103578776,0.106410965,0.42081025,-0.658752,-0.26467627,0.31152564,0.23777682,-0.059549175,0.22855388,-0.26501262,0.46429628,-0.69869983,0.19129062,-0.607396,0.035922237,0.016770106,-0.42308462,0.24699156,0.15857014,0.34791374,-0.35265014,-0.22720355,-0.08128925,0.5637236,0.077821165,0.1468341,0.78823155,-0.31105614,-0.004298522,0.11665935,0.50050884,1.4605429,-0.58739775,0.08778189,0.37091562,-0.28099066,-0.49380955,0.47348186,-0.15173502,-0.022024632,-0.22081973,-0.4623428,-0.6706477,0.1611279,0.16659205,-0.09809403,0.1730739,-0.36206892,-0.16874918,0.35720444,-0.45597664,-0.342529,-0.42767996,0.41058257,0.5621314,-0.3010238,-0.26424626,0.13661204,0.20910168,-0.25329432,-0.31010595,-0.044733223,-0.0892448,0.33155856,0.12774967,-0.29637602,-0.09180526,0.22326067,-0.4651963,-0.118152946,0.09081356,-0.38546926,0.13625282,-0.15466252,-0.24369127,1.051504,-0.38595515,-0.26234648,-0.7190978,-0.5480488,-0.86533237,-0.6203642,0.5882699,0.08627936,0.1571038,-0.33653492,0.097339764,0.008450174,-0.0028417981,0.0840904,-0.36997354,0.2824166,0.15835483,0.47458982,-0.38867602,-0.78124213,0.17435619,0.11257135,-0.13557124,-0.6105085,0.48666206,-0.04482667,0.7778203,-0.015219594,-0.12713464,0.1649234,-0.25733224,0.05580489,-0.35292295,-0.16618465,-0.9119861,-0.060966037 +692,0.4566279,-0.55835706,-0.18446064,-0.040800467,-0.102245964,0.09463768,-0.15945905,0.520599,0.3593894,-0.64645237,-0.03564771,-0.16134946,0.015578032,0.5025933,-0.15469384,-0.3779875,-0.3616322,0.2822193,-0.4713303,0.83315235,-0.26939723,0.17527336,0.00324191,0.7204508,0.26880917,0.17463702,0.120798096,0.0853257,0.0032465095,-0.5981981,-0.03368906,-0.2936206,-0.7277941,0.31623223,-0.1433546,-0.50237405,-0.0791056,-0.75712186,-0.35770735,-1.0227033,0.49089208,-0.9365213,0.5089783,-0.020615008,-0.15152389,0.2618873,0.23288584,0.28584284,-0.0036805389,-0.20458935,0.2598657,-0.42557144,-0.016515533,-0.35624114,0.06569797,-0.12019686,-0.6230172,-0.12014357,0.016433494,-0.44159082,-0.2879503,0.27692753,-0.42456317,0.12441422,-0.19985561,0.9548382,-0.30491796,0.18236534,0.019694302,-0.45318425,0.17321037,-0.7767597,-0.35715258,0.02146751,0.028353916,0.12883581,-0.17899862,0.40975296,-0.06830795,0.3834964,-0.009967844,-0.22854008,-0.37394637,-0.12945564,-0.12356954,0.66991127,-0.13365681,-0.4655304,-0.1422754,-0.09497944,0.04247764,0.2565291,0.33852595,-0.30161542,0.06526173,-0.1895026,-0.16382922,0.6435401,0.6565869,-0.03680475,-0.1145902,0.16173762,0.51677144,0.11467365,-0.17502207,-0.19085154,-0.034416582,-0.4912724,-0.18994941,0.032247227,-0.33045584,0.41836742,-0.23480412,0.24079466,0.6010882,-0.19845314,-0.010255079,0.16519573,0.36245394,0.22816621,-0.73825496,-0.61179614,0.68432975,-0.3415481,0.32465923,-0.61110044,0.8710379,0.1135593,-0.5600594,0.45551622,-0.6220777,0.18013473,0.03440833,0.54768986,0.41540235,0.5760131,0.43010274,0.8975349,-0.41032186,-0.0020347568,-0.09343571,0.06762804,-0.30098367,-0.4369647,0.43594873,-0.3799032,0.14760491,-0.121190496,-0.0021887189,0.113210596,0.23797809,-0.6015803,-0.24997228,0.32293415,1.1666609,-0.14898327,0.46409157,1.097086,1.1725619,1.5351348,-0.057319395,1.0083599,-0.05147416,-0.37399173,-0.15866,0.019488348,-0.8941386,0.18461384,0.3414989,0.50702935,0.061358504,0.12181011,-0.12288153,0.49589026,-0.63306314,-0.046092127,0.09969494,0.43547255,0.38687074,-0.14165887,-0.6467463,-0.23629862,0.003645271,-0.09745783,-0.03374188,0.31510177,-0.28075328,0.32837766,0.008379976,1.4407542,-0.28074175,0.2365275,0.283551,0.62291104,0.049013667,-0.3906446,0.21042189,0.18460427,0.27662933,0.049694404,-0.5854486,0.29370582,-0.1813346,-0.53568095,-0.13878924,-0.20096394,-0.25208807,-0.027411334,-0.24160814,-0.5584017,-0.27524972,-0.041786484,0.061594352,-2.551532,-0.028044403,-0.118137754,0.44223008,-0.39696917,-0.2669696,0.41353348,-0.5673773,0.47901317,0.2676621,0.45761648,-0.6890952,0.051190786,0.68081886,-0.730335,0.032769892,-0.67392117,-0.25585195,0.015402164,0.48313108,0.03851355,-0.20349342,-0.17012279,0.03001409,0.39619976,0.45695633,0.18907298,0.47098577,0.2866336,-0.19448449,0.4222199,-0.21357399,0.4206135,-0.5513735,0.032210346,0.29306644,-0.69287765,0.07157213,-0.48206636,-0.04435647,0.71158475,-0.44662607,-0.49615023,-0.64509857,-0.042077795,1.1721117,-0.1610541,-0.9261968,0.14190432,-0.21077377,-0.17281397,-0.31277126,0.586794,-0.058958847,-0.1576451,-0.6828282,-0.017376145,-0.34521797,0.30107063,-0.115627766,0.041603506,-0.6912211,0.9394974,-0.0140549205,0.48389244,0.43764693,0.16394936,-0.5513806,-0.29866335,0.072533995,0.81043464,0.44909567,0.20936614,-0.30491188,-0.04647447,-0.38660735,-0.39941227,0.0042085615,0.7085074,0.66600853,-0.23877543,0.1912255,0.26790157,-0.15315929,0.17119677,-0.17494184,-0.32307082,-0.32261053,0.054079965,0.59057575,0.6266915,-0.14759067,0.17647542,0.04473333,0.059932914,-0.28944507,-0.45454413,0.3365847,0.85529685,-0.2319321,-0.32186508,0.57807374,0.4499842,-0.53599507,0.5548413,-0.49078152,-0.32064837,0.57948315,-0.08084924,-0.7279079,-0.0762711,-0.22949508,0.047155116,-0.6260215,0.091968745,-0.3460263,-0.44147077,-0.6887974,-0.24179323,-2.042669,0.28096485,-0.21916026,-0.23165613,-0.33370474,-0.23632066,-0.09361908,-0.49893406,-0.70972425,0.42938995,0.17291826,0.65043473,-0.15752202,0.25484362,-0.20657697,-0.21222074,-0.6037227,0.28260377,-0.06674942,0.19108115,0.15129675,-0.29183972,-0.051627878,0.1851577,-0.5748929,0.036946114,-0.6474429,-0.39861885,-0.19771011,-0.64457047,-0.4801374,0.64961934,-0.11566308,0.19597608,-0.2716589,-0.1826325,-0.15203923,0.1818667,0.17793164,0.24543776,0.20445378,-0.23331414,0.058728524,-0.15714383,0.15750866,0.05645374,0.19314569,0.3576044,-0.27462536,0.22060587,0.16619486,0.91156936,0.16170359,0.9815968,0.21557349,-0.1643176,0.32883033,-0.401967,-0.27574402,-0.57682276,-0.0554725,0.40821564,-0.2928648,-0.45049566,0.04255673,-0.3345812,-0.53007674,0.5928845,0.20869552,0.43103865,0.16199411,0.2877721,0.42564,-0.19683093,-0.12336123,0.046445712,-0.019465737,-0.5179209,-0.23102845,-0.7784077,-0.33548352,0.1472159,0.6441421,-0.16575494,-0.079612255,0.4065432,-0.3783897,0.045522265,0.2496858,-0.1430316,-0.2120491,0.5328684,0.40361962,-0.7472883,0.43692714,0.35279614,0.03725232,-0.51126194,0.5689213,0.58429134,-0.5682347,0.6899792,0.10515193,0.012935261,-0.72543,-0.53164124,-0.16996193,0.0059785377,-0.25426257,0.16601548,0.21539295,-0.6597573,0.33551073,0.29441118,-0.19217771,-0.825526,0.063872784,-0.064904705,-0.64429075,-0.1979891,0.4133813,0.22333759,0.1097246,0.16086584,0.15952837,-0.64071727,0.37709725,-0.047213264,-0.036131416,0.3632102,-0.16963707,-0.1656026,-0.69610745,0.2753768,-0.56997156,-0.26698023,0.41366148,0.062085517,-0.16251683,0.5968699,0.31757092,0.43636778,0.098232776,0.15471049,-0.3713662,-0.36008802,0.5374271,0.426239,0.46475717,-0.5919297,0.77129024,0.12441483,-0.26081848,0.09147534,-0.13618733,0.42487356,0.12827052,0.4914187,-0.12649606,-0.20700438,-0.06882686,0.5996252,0.36691308,0.5395158,0.021211458,-0.027429167,0.46463293,0.074523956,0.16869247,-0.1449499,-0.7485195,0.29799998,-0.27669686,-0.088855535,0.43029657,0.058843188,0.41170698,0.00815307,-0.3494091,-0.11740952,0.08206527,-0.38497096,-1.521399,0.32830298,0.15862915,1.1528072,0.75545985,-0.11922574,0.086793594,0.93307686,-0.109904654,0.09487849,0.40953597,0.05090573,-0.47202766,0.6747922,-0.724662,0.43178704,-0.090274505,0.0008666565,-0.024961762,0.08825743,0.50778955,0.45470428,-0.19072433,-0.1950669,-0.281201,-0.25222903,0.1199739,-0.45040172,0.23279484,-0.3994413,-0.3153431,0.5392532,0.58119303,0.41321877,-0.26202694,0.14724873,0.113294125,-0.07998827,0.1610718,0.17771572,-0.31983054,0.16146487,-0.51849437,0.04914351,0.5741434,-0.26003087,0.016993228,-0.0031644627,-0.24722306,0.19559394,-0.16739129,-0.26200652,0.028838567,-0.8740046,0.25276,-0.27942634,-0.36202943,0.20159732,0.069266096,0.12692527,0.21433,0.14871836,-0.19878918,-0.06268216,0.379864,0.72351044,-0.09187209,-0.20394844,-0.26480278,0.1314308,-0.048330244,-0.1783581,0.38627255,0.033892922,0.07700205,-0.37796077,0.5589628,-0.08585528,-0.21848606,0.15682213,-0.18227236,0.01663433,0.86136574,-0.06356128,0.06345899,-0.11488005,-0.3121446,0.016023874,-0.245272,-0.13883652,0.32145008,0.036896855,0.13886225,-0.1269585,-0.17762859,-0.28602988,0.5875762,0.064074956,0.32201126,0.2810329,-0.028760247,-0.5924236,0.18130694,-0.16514453,0.62715596,-0.10096068,-0.06479853,0.08372215,-0.47139487,-0.5506389,0.74507934,-0.034560494,0.3812628,-0.035253268,-0.29436022,1.0155559,0.250604,1.0216798,-0.09302902,-0.3392321,0.13349849,0.53460014,-0.1849079,-0.064906925,-0.54454815,1.0027013,0.5924583,-0.15132357,-0.0011059443,-0.27940124,0.19153446,0.53466964,-0.26356396,-0.00017104547,-0.050013144,-0.72258514,-0.35892412,0.18686682,0.21254188,0.028563049,-0.27348366,-0.058772452,0.60540515,0.039965015,0.38952336,-0.41758028,-0.08477888,0.37356827,0.0782776,0.0980517,0.11640644,-0.43257815,0.1851031,-0.62591934,0.38931963,-0.30152142,0.063810885,-0.28820792,-0.1646547,0.21436323,0.08848658,0.40989944,-0.47273588,-0.5537004,-0.108618155,0.22829808,0.13508022,0.050304852,0.5587424,-0.12897176,0.07356965,0.19887531,0.5419359,0.8534373,-0.08136216,0.2512056,0.09841264,-0.67526937,-0.89091957,0.40950915,-0.0009644429,-0.106440715,0.05809611,0.044704754,-0.7549785,-0.036987565,0.3129849,-0.20917805,0.10849786,-0.70780087,-0.59064484,0.36919415,-0.40167105,-0.22353435,-0.32887453,-0.12557322,0.62787133,0.008519013,-0.25377983,-0.0094052125,0.19668502,-0.29909003,-0.7701437,-0.06611661,-0.5650772,0.3762615,-0.18191385,-0.5814298,-0.39284778,0.19409074,-0.6184759,-0.07563844,-0.096953,-0.29226846,-0.14883396,-0.43913108,0.052720957,0.9123218,-0.09312202,0.3433769,-0.71297646,-0.588465,-0.74147725,-0.28980446,0.41301557,-0.08358701,0.14333756,-0.6681442,-0.23524468,-0.42241123,-0.0831957,0.0045972597,-0.4879715,0.31282696,0.17316392,0.4760029,-0.25884762,-0.6415539,0.38692534,0.16009745,0.007957141,-0.26564556,0.5300977,0.1281153,0.67882836,0.013434751,0.007443872,-0.07156403,-0.7162187,0.25497445,-0.036664836,-0.3417791,-0.61681694,0.30336377 +693,0.5935329,-0.1593402,-0.50380087,-0.1701976,-0.3551464,0.057287462,-0.34315726,0.07924772,0.062301874,-0.36575696,0.016651228,-0.13021326,0.029189643,0.36551583,-0.060866315,-0.90671873,0.10363612,0.0707032,-0.71373594,0.5944215,-0.55946326,0.5032185,0.060238805,0.13425454,0.010302027,0.32361078,0.28991035,-0.08702167,-0.12311342,0.042902164,-0.13426612,0.08526918,-0.56385505,0.1044281,-0.01173434,-0.22883521,0.07470417,-0.29418245,-0.3948435,-0.7029398,0.3795172,-0.6651068,0.31746486,0.06544712,-0.2950858,0.19220419,0.022064477,0.14854573,-0.2981552,0.3123381,0.1800239,-0.1579738,-0.063930035,-0.18826607,-0.18306841,-0.6036209,-0.54120594,0.13213447,-0.55979234,-0.31719133,-0.26205567,0.1614591,-0.40973815,-0.034005288,-0.09980712,0.34837016,-0.4701317,-0.14090139,0.19896036,-0.08291323,0.2632514,-0.4445668,0.010911427,-0.14573383,0.15753262,-0.17550305,-0.16731045,0.32298833,0.17254028,0.49275595,0.098249674,-0.28206182,-0.15866505,-0.098855436,0.2852541,0.36784896,-0.16322124,-0.45511556,-0.19396855,0.031209175,0.02861985,0.0099097965,-0.06433774,-0.45062542,-0.06580763,-0.0375818,-0.19992824,0.3682332,0.5014874,-0.364577,-0.27273494,0.38827857,0.45175254,0.15754473,-0.15779853,0.08622771,-0.07938727,-0.4695809,-0.17865106,0.2089764,-0.042617932,0.38568223,-0.35196534,0.25028467,0.7105616,-0.17683226,0.01915805,-0.075752445,-0.06395598,-0.09971136,-0.030173488,-0.08136112,0.12042262,-0.62910247,0.09560512,-0.16570978,0.7380899,0.32718658,-0.71695846,0.40686792,-0.5092498,0.318458,-0.24967623,0.5285215,0.82309055,0.25118777,0.11067996,0.6353056,-0.5741114,0.15575665,-0.121877655,-0.47806516,0.14253819,-0.10910432,-0.084656656,-0.55862606,-0.039358456,-0.15314639,-0.1322799,-0.19028495,0.55665153,-0.37818986,-0.04015164,0.038272016,0.6671481,-0.35114053,0.01660068,0.61370146,0.8303823,1.1846464,0.06335826,1.0967054,0.38624442,-0.20612492,0.0993732,-0.3536335,-0.73860264,0.28712144,0.409558,0.31842163,0.3183822,-0.14780003,0.025042642,0.43799922,-0.30365607,0.037391387,-0.2878568,0.2586724,-0.13018501,-0.042140357,-0.4244721,-0.10459834,-0.007710853,0.20793423,-0.04243339,0.29254273,-0.13036111,0.2651448,-0.027837697,1.5889809,-0.0986337,0.086191006,0.07533151,0.41546562,0.41449922,-0.21725266,-0.031801213,0.21282922,0.40297598,0.1537087,-0.6445473,-0.03903736,-0.37765178,-0.44974267,-0.16685417,-0.2761994,0.11854835,-0.07444066,-0.44731504,-0.20872152,0.040622823,-0.30683193,0.3493668,-2.3917758,-0.21556899,-0.17267357,0.21175283,-0.25598592,-0.3636904,-0.09352548,-0.43979675,0.42242557,0.36380702,0.5149835,-0.5773986,0.31519777,0.35847387,-0.52559674,0.020959966,-0.67687,-0.12013844,-0.15459464,0.4869639,0.04398889,-0.057016034,-0.102136515,0.30098012,0.5227933,-0.2119267,0.08908854,0.20213965,0.35839453,0.11910785,0.42823175,0.027852416,0.47242647,-0.28935942,-0.21747497,0.40035206,-0.19269598,0.115766,-0.17005311,0.10014709,0.3184302,-0.56026924,-0.9211383,-0.5481966,-0.30218956,1.2425903,-0.16253382,-0.4070392,0.3020816,-0.030771386,-0.10180495,0.14594644,0.28742862,-0.19806705,-0.10137476,-0.7037902,0.2615399,0.031355906,0.1821784,0.12294134,-0.046892915,-0.22848022,0.55665725,-0.054920305,0.33504462,0.27397117,0.21307382,-0.034513444,-0.5217716,0.114566155,0.983307,0.37658224,0.16102791,-0.25243127,-0.20879176,-0.19021483,-0.109202646,0.0867768,0.2923784,0.7923862,-0.057607513,0.09248655,0.20048764,-0.083439,0.11806649,-0.14066213,-0.31456783,0.0806262,-0.11814931,0.5517326,0.4872313,-0.09758681,0.37971565,-0.038773496,0.28502515,-0.11440182,-0.56024057,0.66018856,1.2853556,-0.09817785,-0.1591366,0.45868707,0.3331799,-0.26346454,0.58132124,-0.623557,-0.32754105,0.37179658,-0.2582984,-0.25939763,0.25356746,-0.37421024,0.0626667,-0.7237708,0.33284917,-0.23557511,-0.3800255,-0.5552951,-0.19188593,-3.7149308,0.24111891,-0.30737945,-0.10585349,-0.07599845,0.05338478,0.33387226,-0.5019479,-0.534802,0.11587441,-0.067543395,0.60132045,-0.056163978,0.1653379,-0.21265513,-0.20369923,-0.42989087,0.12244576,0.09365843,0.31910592,0.0014318859,-0.39826664,0.0405531,-0.28654265,-0.44819847,0.04993418,-0.5031243,-0.43354455,-0.18813454,-0.450272,-0.1591188,0.5973015,-0.013192831,0.043304246,-0.20707893,-0.11523719,-0.11809843,0.2802508,0.18901134,0.17622392,0.07107886,0.04652855,-0.14350763,-0.27488503,0.14279033,0.10145507,0.12576263,0.34709448,-0.1181329,0.11547953,0.48271433,0.57083166,-0.1681495,0.762972,0.5156379,-0.120892875,0.3918412,-0.23538488,-0.239145,-0.5166644,-0.37410003,-0.18090431,-0.33829236,-0.5377976,-0.04901056,-0.24904026,-0.65777844,0.40301815,-0.013441521,0.09465505,-0.049044166,0.1609172,0.32021433,-0.11772817,-0.095421664,-0.082564436,-0.15367149,-0.4724345,-0.27120814,-0.64300436,-0.44584063,0.111403786,0.9143345,-0.11469629,-0.1700826,-0.20256126,-0.136258,-0.096571,-0.09684779,-0.012633091,0.29519486,0.098732285,0.0021330854,-0.84001744,0.49327737,-0.05925037,-0.03740832,-0.47133794,0.088428795,0.58630526,-0.58350855,0.42583603,0.32491517,0.19060656,0.07389777,-0.6118405,-0.13390179,0.20433897,-0.24804564,0.51120114,0.118197724,-0.74175334,0.5710643,0.3933639,-0.27468082,-0.70757294,0.49628314,0.19169699,-0.36728376,-0.016472816,0.3325454,-0.03347658,0.027746862,-0.23828232,0.40709382,-0.39722532,0.27122957,0.2918275,0.013763392,0.2606591,-0.08857736,-0.25851208,-0.5608139,-0.10118277,-0.39914694,-0.28954554,0.074655436,0.08588141,-0.04235377,0.046990156,-0.12769735,0.5283885,-0.15963443,0.10829512,-0.07902193,-0.21839303,0.2812542,0.40467137,0.4197526,-0.38625482,0.66594374,0.022570308,-0.17430933,-0.036995444,0.17454955,0.45891064,0.21513642,0.3816706,0.057863824,-0.094770476,0.2855751,0.8376974,0.071901985,0.49678147,0.15338996,-0.34123588,0.33074778,0.1783576,0.09562581,-0.077619724,-0.24483976,-0.075940125,0.059850138,0.22727638,0.46886158,0.10415863,0.24884212,-0.1565292,-0.25032887,0.08529674,0.18714336,0.03229936,-1.1390392,0.34222063,0.25492626,0.67588854,0.68540597,-0.03750747,-0.0013348355,0.5745431,-0.25046065,0.040123552,0.36366367,-0.110658735,-0.54702413,0.4450543,-0.62356746,0.29577607,-0.06970846,-0.008742916,0.01698461,0.09887684,0.34664392,0.7701023,-0.07397929,0.07983729,-0.13076608,-0.33451125,0.118798,-0.33503544,0.039854743,-0.29637405,-0.33017278,0.6114638,0.28053084,0.12656029,-0.20005536,-0.042443093,0.006332054,-0.103653334,0.13582782,-0.0021066542,0.054105673,-0.04285144,-0.6638003,-0.3439613,0.48215967,0.103779964,0.042820122,-0.048255853,-0.1541865,0.23386702,-0.23016939,-0.0025220478,-0.008827069,-0.71272504,-0.06737232,-0.31700963,-0.25213668,0.4496511,-0.17629535,0.28973386,0.19857658,0.109729454,-0.35759112,0.21960723,-0.0053779096,0.6391642,0.059784062,-0.20576079,-0.3644241,0.047747638,0.20282549,-0.23016949,-0.12492278,-0.28825283,0.0064119557,-0.67637575,0.51273817,-0.11565137,-0.32929406,0.19012602,-0.11392188,-0.028415378,0.5654059,-0.20541826,-0.3322157,-0.031778794,-0.028960591,-0.27926415,-0.23402978,-0.082564056,0.245583,0.14740016,-0.17430922,-0.21005535,-0.025858963,0.005594001,0.5809408,0.05427495,0.3243489,0.33340344,0.14838384,-0.47145614,-0.06258732,0.296726,0.38076976,0.16971782,0.018448373,-0.21475825,-0.33102486,-0.34649104,0.10369247,-0.18871489,0.2583901,0.12658612,-0.39959666,0.59407836,0.20116901,1.1596011,-0.01968523,-0.23133713,0.1678616,0.4194313,0.051226467,0.052253474,-0.35101974,0.7446436,0.6525064,-0.03830011,-0.23953906,-0.37822902,-0.20302646,0.110281445,-0.2286957,-0.05991598,-0.010709846,-0.7509949,-0.32888693,0.2607473,0.21697578,0.08631466,0.03717375,-0.053194467,0.09638444,0.225448,0.38462812,-0.50831944,-0.09298155,0.26238912,0.24929126,-0.0038275192,0.16753668,-0.39811176,0.37293085,-0.5190625,0.17011411,-0.15714589,0.21473113,-0.0010249369,-0.26582143,0.2637455,0.041568648,0.3994112,-0.25374442,-0.50973743,-0.16064623,0.5568935,0.07914807,0.22444999,0.61085963,-0.33756196,0.22390889,0.08204347,0.5201336,1.0599632,-0.14378312,-0.054134272,0.3015468,-0.3375638,-0.7456464,0.25769475,-0.08827017,0.14110306,-0.0887996,-0.29383874,-0.4459311,0.15877277,0.18861438,0.052453466,0.120606564,-0.51512223,-0.24050176,0.31186965,-0.09359919,-0.21749252,-0.30862308,0.2032998,0.73606884,-0.40573716,-0.13967809,0.15492989,0.20937386,-0.26239538,-0.58416486,-0.0831166,-0.38579372,0.39489022,0.2862714,-0.077070504,0.16364074,0.09802853,-0.48445714,0.15653625,0.28145814,-0.40418696,-0.02819827,-0.1756019,-0.13187689,0.86755776,-0.22352658,0.042871904,-0.62293774,-0.5449572,-0.9231796,-0.39413685,0.6653422,0.15271932,0.19111617,-0.6692201,-0.028521637,0.024830742,0.06437492,0.057108056,-0.51986027,0.33190063,0.08815329,0.37063703,-0.09040291,-0.7300664,0.053839315,0.14002708,-0.33063278,-0.50787514,0.50848794,-0.10334451,0.73128366,0.030259771,0.04864393,0.2503237,-0.5152708,0.031261653,-0.24536152,-0.19905363,-0.5786462,0.20482324 +694,0.3993946,-0.03318861,-0.533976,-0.20810248,-0.044109892,0.18967621,-0.15915647,0.33633006,0.26797837,-0.34516805,0.17286414,-0.1434252,0.07688522,0.37243402,-0.052752327,-0.58965796,0.081708945,0.06402601,-0.58514583,0.41653526,-0.44129738,0.3255106,-0.07769367,0.3277493,0.10740528,0.39979565,0.062471587,-0.21670158,-0.17024548,-0.11709908,-0.036716573,0.31591874,-0.41953954,0.0497001,-0.10010301,-0.121836856,-0.025358839,-0.57262534,-0.4790742,-0.5661042,0.18042414,-0.6542842,0.5646738,0.03587774,-0.25301644,0.18314435,0.08045449,0.40460542,-0.21414098,0.018588196,0.21299015,-0.17816016,-0.16153736,-0.14164202,-0.42487925,-0.3932678,-0.6165173,-0.0846199,-0.45818582,-0.12442859,-0.16696571,0.037540156,-0.24845298,-0.118681066,-0.03641749,0.39634424,-0.38516682,0.08472295,0.25457713,-0.13777107,0.33742863,-0.35182074,-0.08957007,0.025551649,0.39070866,-0.348143,-0.30335286,0.34632212,0.4055549,0.49560156,-0.14754811,-0.13682295,-0.38508123,-0.047380414,0.18487379,0.572743,-0.1326677,-0.15542528,-0.11025537,-0.11877053,-0.07938997,0.241706,0.11624861,-0.4468092,-0.10782344,0.03182251,-0.14368787,0.31266335,0.46942958,-0.27865583,-0.27096847,0.4358198,0.5091787,0.15514913,-0.10340352,0.21699612,0.11423961,-0.538625,-0.24202694,0.18230668,-0.116507836,0.40682298,-0.115013674,0.1451809,0.6874083,-0.13041846,-0.12758611,0.0030481378,0.059250075,-0.035870228,-0.12685972,-0.22138597,0.14493865,-0.5074144,0.091253586,-0.15972696,0.6053865,0.27805075,-0.9060594,0.3758448,-0.57873064,0.05248473,-0.09539841,0.4644519,0.7618605,0.37236327,0.12860768,0.62767816,-0.5172555,0.1018269,0.06297764,-0.4011525,0.25302377,-0.19129744,0.053350445,-0.622408,-0.16441432,0.11820336,-0.21343921,0.18720134,0.26122984,-0.438338,-0.013565993,0.21639806,0.8108107,-0.30977085,-0.108802006,0.50242466,0.96564865,0.8496811,0.1007587,1.254437,0.25572616,-0.2323214,0.19931863,-0.48212644,-0.8131382,0.22484025,0.27278197,-0.49467376,0.39168024,0.07839811,0.20382245,0.39250737,-0.32081807,0.1875066,0.009037296,0.18593508,0.0105217,-0.24262816,-0.28162846,-0.32324547,-0.115673795,-0.18480207,0.16845852,0.18539098,-0.20092613,0.5171387,0.14081489,1.7400563,-0.004502646,0.08824187,-0.071276374,0.40084973,0.19448663,-0.2628525,-0.3141109,0.31064272,0.33194414,0.036736585,-0.45902115,0.121543,-0.07605421,-0.26246908,-0.16092473,-0.38066,-0.088929795,-0.09680059,-0.26277882,-0.1374869,-0.10793088,-0.39854226,0.5849276,-3.023872,-0.006978452,-0.030218316,0.33042985,-0.22117122,-0.29121217,-0.25682172,-0.46919647,0.3559032,0.24569453,0.32916167,-0.6350521,0.3124152,0.5334757,-0.43263033,-0.08110286,-0.5852574,-0.09100862,-0.07443695,0.10137863,-0.02993645,-0.025883686,0.045319963,0.3293757,0.30316618,-0.061916992,0.09416893,0.31058234,0.26746368,0.20607668,0.4323092,-0.08375134,0.55815595,-0.15312785,-0.22236364,0.2595252,-0.49124062,0.123958796,-0.07557213,0.048732467,0.45388234,-0.4003009,-0.7998811,-0.551223,-0.18290223,0.89479977,-0.2688839,-0.21483079,0.3062152,-0.33570883,-0.46404248,-0.08815421,0.41807774,-0.07095734,-0.05965056,-0.7623812,-0.106129244,0.0009154995,0.08238127,-0.064046234,0.09441519,-0.39060935,0.4379631,-0.04258154,0.5010896,0.31470367,0.122349225,-0.3323581,-0.4851081,0.027477067,0.8979608,0.21083583,0.18481013,-0.12909523,-0.20634982,-0.4234513,-0.2125544,0.1476368,0.43342957,0.6623061,-0.17856854,0.02136922,0.28024682,-0.12545052,0.11066095,-0.10283136,-0.28016427,0.011726006,0.016459115,0.42455038,0.49745157,-0.13923359,0.40589073,0.05683499,0.2732226,-0.2611255,-0.42059582,0.58670706,0.95282614,-0.06127627,-0.28040484,0.5977634,0.21338533,-0.32971337,0.39881402,-0.502509,-0.14514068,0.5270907,-0.23007044,-0.3247282,0.19190614,-0.29170498,0.19120911,-0.9078883,0.25546032,-0.10020499,-0.3755435,-0.45224217,-0.05374845,-3.3339279,-0.0013299624,-0.10068269,-0.26451647,0.05896906,0.08139958,0.26108307,-0.47768295,-0.59303534,0.19908904,0.007331117,0.7134334,-0.075847976,0.09727082,-0.22590555,-0.21288712,-0.40717506,0.260227,0.07179386,0.42738184,0.17062669,-0.42024192,-0.019673208,-0.17306627,-0.45603126,0.08802513,-0.48085544,-0.3765548,-0.1653111,-0.62197196,-0.37477607,0.74914175,-0.385505,-0.048922,-0.21530847,-0.0438473,-0.13147406,0.37846768,0.23878917,0.114293166,0.054247744,0.042997662,-0.118030414,-0.2623059,0.30930007,-0.017038472,0.30874956,0.35276496,0.045417126,0.15220632,0.47646147,0.70727473,-0.17276074,0.6895621,0.44483927,-0.055579003,0.2020699,-0.41334876,-0.065884136,-0.32517517,-0.3394933,-0.13246174,-0.3930697,-0.5506523,-0.22046204,-0.38671222,-0.6280758,0.3469204,0.03843008,0.09407358,-0.025799783,-0.05351062,0.33518293,-0.2208538,-0.002702681,-0.15294968,-0.16936915,-0.3619283,-0.18161072,-0.5459722,-0.5203162,0.41178754,0.95940053,-0.12096803,-0.009852576,0.18648693,-0.3201889,-0.07832704,0.1722472,0.03628923,0.30004132,0.36657375,-0.023477597,-0.55335784,0.37702703,-0.15873791,-0.09002021,-0.7268587,0.052327063,0.5407042,-0.5614455,0.8232787,0.1723752,0.07777373,-0.19492677,-0.4707025,-0.29160255,-0.023970384,-0.29768503,0.44257587,0.044634257,-0.7654068,0.33453095,0.39858082,-0.37138847,-0.5828015,0.5246372,-0.04768382,-0.074044734,0.028374728,0.36954013,0.0069699567,0.025831353,-0.054695543,0.33535567,-0.45722765,0.21390647,0.367114,0.081180006,0.43509606,-0.13772328,-0.09224569,-0.6773581,-0.11770348,-0.4115395,-0.26444346,0.20214391,0.013257573,0.2330562,0.15353912,0.12247309,0.30886668,-0.3104658,0.1439998,0.023624193,-0.22030991,0.24783126,0.34915766,0.5029081,-0.4142169,0.52972835,-0.039483063,-0.05339881,-0.16730331,0.039804544,0.47677955,0.23605004,0.31229508,0.12856098,-0.34633932,0.28573984,0.7778417,0.1592118,0.30099156,0.13926452,-0.16765109,0.110071614,0.06771063,0.02910668,0.10508717,-0.45881322,-0.10165655,-0.12803654,0.2806474,0.4070517,0.12249258,0.27653906,-0.15394224,-0.36485195,0.023435032,0.15839761,-0.06116547,-1.2047131,0.3052639,0.28444403,0.75752425,0.4003561,0.07318668,0.04821803,0.5743168,-0.21040897,0.18803905,0.30085087,-0.24221395,-0.5275904,0.52650946,-0.6521458,0.4897377,0.069866106,-0.0064320187,0.027818711,-0.048975814,0.3930705,0.8446218,-0.13220383,0.15443121,0.043951835,-0.25588292,0.20766178,-0.27439344,0.103530526,-0.48674712,-0.23942937,0.57823455,0.42370033,0.3874911,-0.14736871,0.013114605,0.15658386,-0.07392707,0.0910164,0.07503746,0.06998316,-0.08607888,-0.5981753,-0.32992265,0.47103107,-0.06656582,0.122084364,0.06973945,-0.16796511,0.2691482,-0.20053701,0.054556273,-0.13492146,-0.6953781,-0.08184074,-0.22322181,-0.4016234,0.5360554,-0.16706926,0.25158215,0.20746475,0.091986455,-0.31946546,0.65039134,0.19362968,0.77528894,-0.1243924,-0.14602517,-0.23796962,0.105769664,0.17630866,-0.19820169,-0.03665879,-0.29927412,0.010590827,-0.48464426,0.31227186,-0.050893273,-0.42309695,-0.06703425,-0.054554693,0.18067531,0.56753695,-0.21905161,-0.11156731,-0.060233597,-0.07730916,-0.3134833,-0.1517778,-0.15328452,0.23470852,0.19297092,-0.13115993,-0.12474189,-0.09785014,-0.15838553,0.20047957,0.043325625,0.39062682,0.4407296,0.10948763,-0.29221758,-0.109918036,0.1726498,0.42024264,0.02858281,-0.10092076,-0.28997624,-0.2666251,-0.3300813,0.30254993,-0.20748827,0.35719168,0.07729098,-0.37651044,0.6293052,-0.12356785,1.0877804,0.072882086,-0.22696489,0.10509089,0.34836337,0.09673349,-0.051178813,-0.37852955,0.82756305,0.5440096,-0.06763455,-0.115982704,-0.33760256,-0.14421944,0.20210825,-0.19302951,-0.19422702,0.03308755,-0.633185,-0.20855123,0.26887065,0.018208535,0.34733137,-0.033673447,0.045645952,0.24547288,0.06774931,0.2253418,-0.36665872,-0.030294705,0.3802773,0.2840189,0.18698683,0.24691455,-0.39240265,0.31293485,-0.41972554,0.07401595,-0.15675476,0.17108808,-0.19189288,-0.21113703,0.19760005,0.091822185,0.2554076,-0.112900004,-0.36108658,-0.20731045,0.61249536,0.07409106,0.18491766,0.80698115,-0.21804956,0.06826731,0.02222335,0.44202882,0.87475723,-0.20367436,0.019346794,0.51311344,-0.22537944,-0.6684999,0.3347762,-0.37386325,0.3063887,-0.05940973,-0.27934092,-0.41629994,0.16310717,0.14234123,0.14197668,0.13383324,-0.4078967,-0.17163534,0.28974143,-0.29203695,-0.25320566,-0.35219595,0.01982019,0.64670813,-0.31818232,-0.20883518,0.14754209,0.16594301,-0.27756786,-0.4939731,-0.0023320755,-0.20612577,0.2018236,0.09501384,-0.3687292,0.015029786,0.023379147,-0.30171347,0.31394774,0.29068297,-0.3664584,0.012197244,-0.29173055,-0.15033753,0.79990107,-0.26101208,0.11934159,-0.5753926,-0.5397526,-0.91998076,-0.2478912,0.31758296,0.030058486,-0.09255908,-0.54680413,-0.072670735,-0.00028102397,-0.008607197,0.05152111,-0.40403566,0.40545782,0.08284431,0.27260703,-0.02859406,-0.7358944,-0.0875542,0.14318146,-0.21452291,-0.69958526,0.6102236,-0.10504959,0.9258606,0.113832556,0.09261852,0.31592697,-0.37717193,0.08415702,-0.20994253,-0.15727344,-0.5909452,0.024294369 +695,0.36285278,-0.09693371,-0.51073456,-0.012629977,-0.386963,0.15105395,-0.16725782,0.6341955,0.28306878,-0.44039422,-0.08796734,-0.11507416,-0.06461161,0.33969548,-0.15946627,-0.64457715,0.1765104,0.09292653,-0.44351566,0.40185288,-0.37822953,0.19559015,0.059310652,0.31227922,0.24804972,0.27225092,0.06227974,-0.024764262,-0.14998557,-0.15165819,-0.068344384,0.29268262,-0.52017635,0.31124985,-0.17911027,-0.2864915,-0.047823828,-0.51531255,-0.18866806,-0.7485177,0.23642035,-0.60837644,0.41936907,-0.17221442,-0.22540624,0.120306626,0.38533905,0.31270593,-0.103076465,-0.2086902,0.031135518,-0.13796285,-0.15748583,0.0013158282,-0.2405556,-0.34743482,-0.54219836,0.18822162,-0.4417339,-0.11607153,-0.24702902,0.17477793,-0.3606868,0.055717263,-0.05288779,0.63253856,-0.35987937,0.025443252,0.38752514,-0.2558152,0.07900389,-0.62655574,0.007028538,-0.05156312,0.23258725,-0.106177896,-0.15841755,0.41473484,0.22240692,0.5449965,0.15191263,-0.22213466,-0.32589403,-0.08629232,0.05564968,0.4457231,-0.08355428,-0.22585687,-0.20385166,0.1614439,0.06358026,0.14268093,0.13409382,-0.20324959,-0.11374807,-0.002049919,-0.27822155,0.43131942,0.36470416,-0.38334864,-0.14701429,0.28139463,0.45035106,0.23801918,-0.052503824,0.012425963,0.10858056,-0.62198216,-0.22017066,-0.023443008,-0.12387622,0.34510577,-0.22907877,0.282,0.64210165,-0.14478339,-0.073390566,0.17823417,0.084029004,-0.04127337,-0.46172917,-0.17798789,0.17709698,-0.58995277,0.1063502,-0.11078929,0.8340016,0.1798537,-0.5301712,0.26511267,-0.522282,0.15309791,-0.051421765,0.46116096,0.71552557,0.50933874,0.27914152,0.8721307,-0.25338775,0.09914156,-0.2868504,-0.3708869,0.08446756,-0.27395254,0.107600465,-0.42762837,0.115220994,-0.08049516,0.119817905,0.18770319,0.25163284,-0.51102805,-0.07727801,0.03460384,0.8454095,-0.16601987,-0.26326582,0.7230732,0.7885348,0.9389232,-0.06654535,0.86606795,-0.015882012,-0.10491791,0.36148167,-0.053186905,-0.59440285,0.38170677,0.3084305,-0.088833176,0.13857335,0.014873552,-0.113137595,0.59366757,-0.25976914,-0.020413645,-0.16253829,0.21600777,0.23008998,-0.16346982,-0.31625497,-0.34264386,-0.0019270977,-0.09375438,0.25060236,0.28925303,0.015445092,0.40528235,-0.1404438,1.6350137,-0.0971214,0.11433489,0.17308213,0.56940407,0.23020093,-0.122740634,-0.10884139,0.120204836,0.18565139,0.16169286,-0.49338874,0.033699997,-0.23669483,-0.44595304,-0.08744513,-0.40074462,-0.2613768,-0.07559357,-0.46567857,-0.18671761,-0.13266358,-0.282288,0.37352264,-2.7920609,-0.24032523,-0.03879835,0.28300825,-0.38933504,-0.3746033,-0.19909383,-0.5395692,0.44031212,0.25611824,0.539416,-0.49856472,0.46826518,0.4021199,-0.5735001,-0.2952679,-0.56105465,-0.021475013,0.027908945,0.17888047,0.05481583,-0.27538958,-0.12876718,0.030104568,0.60442126,-0.19789392,0.04272805,0.21105677,0.30778947,-0.11497231,0.53041756,-0.14053904,0.67638123,-0.44621378,-0.17777282,0.3669802,-0.40339667,0.18536706,-0.17738108,0.0765588,0.5411809,-0.3688636,-0.93866533,-0.62070805,-0.10314365,1.2746369,-0.14570867,-0.2604576,0.2480871,-0.56554514,-0.21133308,0.056361835,0.50258577,-0.037009936,-0.027983883,-0.6010436,0.13971713,-0.07104299,0.11690092,-0.045802604,-0.07981045,-0.40118155,0.63442534,-0.046857443,0.47937432,0.25225142,0.09684492,-0.3108714,-0.3927413,0.008530843,0.8178273,0.36454332,0.12093418,-0.26979285,-0.13194914,-0.45927575,-0.081654556,0.065139465,0.63727486,0.59011334,0.03608695,0.09074233,0.32969135,0.02246209,0.0068795364,-0.093880795,-0.35307276,-0.15663436,0.1525441,0.6491131,0.57128984,-0.0042828103,0.38671616,-0.0062349993,0.25642353,-0.23685338,-0.5488604,0.5665236,0.77495855,-0.30704385,-0.33066645,0.5345,0.40115213,-0.07985683,0.4005424,-0.48286203,-0.54462504,0.41171065,-0.20332602,-0.41480806,0.06976178,-0.29081243,-0.012730245,-0.7766145,0.06833863,-0.38986915,-0.40494806,-0.41257355,-0.21290684,-3.3967414,0.118541084,-0.14182444,-0.033519913,-0.23600677,0.017685851,0.11008124,-0.49689618,-0.5539667,0.06234397,0.14051183,0.7881373,-0.106544204,0.12628888,-0.2596167,-0.31369457,-0.23962641,0.1078412,0.07377904,0.28204188,-0.0061670938,-0.42600614,-0.034112968,-0.2531638,-0.41353598,0.12365316,-0.7009758,-0.47486475,-0.2274499,-0.5063851,-0.3011029,0.71812844,-0.45370737,0.14785744,-0.12869594,0.020943923,0.028103836,0.26579648,-0.01948353,0.071217105,0.2202793,-0.21061316,0.072853185,-0.29744747,0.23811173,0.08662355,0.47471988,0.52507824,0.05273328,0.24598725,0.6692665,0.74531853,-0.11243617,0.956249,0.39252454,0.040341582,0.41242692,-0.1792777,-0.37308806,-0.39451975,-0.16222008,0.074309595,-0.42705896,-0.27432138,0.11858987,-0.3734541,-0.8320558,0.48741198,0.10947944,-0.011718655,0.0060715834,0.21631822,0.56600827,-0.32716158,-0.044789508,0.05349068,-0.027064772,-0.48341015,-0.33018735,-0.52679276,-0.6076283,0.0047070426,1.0489258,-0.23901659,0.114018604,-0.037064426,-0.07935374,-0.0032004078,0.016882312,0.08711205,0.14699936,0.38578776,-0.10904904,-0.6705491,0.37981662,-0.31515837,-0.11638527,-0.3179622,0.349691,0.6187985,-0.6134156,0.4346693,0.360267,0.10712172,-0.16374843,-0.41593367,-0.001464661,-0.12335965,-0.23434427,0.45313555,0.24758561,-0.837051,0.5002178,0.2372415,-0.31399447,-0.82017845,0.46215135,-0.10054906,-0.15142919,-0.14015462,0.2901244,0.26223895,0.032106917,-0.13564178,0.049431562,-0.48833808,0.10174502,0.124121666,-0.0317657,0.47790068,-0.33196127,-0.15742391,-0.67937905,-0.05669709,-0.5633209,-0.36572066,0.22355196,0.05663738,0.03368377,0.15063757,0.032953892,0.3091072,-0.1496048,0.07668516,-0.1302851,-0.1729639,0.36377886,0.43001726,0.43584165,-0.49568197,0.54484725,0.0045363386,0.075040855,0.17709474,0.021676807,0.4234298,0.0433904,0.4879267,-0.08128379,-0.037814897,0.18590587,0.91524607,0.061411362,0.32109383,-0.09298995,-0.112296455,0.046582546,-0.009208189,0.085435964,0.065333344,-0.6378221,-0.06625404,-0.2969275,0.095591314,0.6059704,0.2209877,0.34476137,0.10103511,-0.25747645,0.057492983,0.04011744,-0.19070311,-1.2648023,0.4553194,0.16237777,0.9282224,0.2916757,0.10725509,0.057898674,0.751963,-0.12567817,0.27501455,0.32353362,-0.09998963,-0.47894922,0.5697869,-0.7772318,0.6260464,-0.04603602,0.014503989,0.019370833,0.047789834,0.5367873,0.7152533,-0.20437908,0.0040591042,0.008510208,-0.34156358,0.139859,-0.36454195,-0.010706242,-0.5403087,-0.24915822,0.6089311,0.5039541,0.30874988,-0.23474984,-0.03620955,0.118760996,-0.008886886,0.01416018,-0.13732377,0.067226164,0.0035517374,-0.4963831,-0.15247229,0.55262923,0.11608431,0.41096073,0.07397099,-0.15545997,0.36871016,-0.09953592,0.0049091023,-0.27701095,-0.53568584,0.02222445,-0.41079333,-0.5360292,0.2980124,-0.14552283,0.20746756,0.20038871,0.068911046,-0.37980992,0.6389214,0.00057648815,0.679706,-0.2269496,-0.059975546,-0.27697214,0.2428606,0.12944874,-0.2556558,-0.14030688,-0.32616657,0.11900215,-0.4547357,0.28322202,-0.20257396,-0.3732729,0.07753337,-0.062797666,0.028974835,0.44071054,-0.07766732,0.11424231,-0.007754715,-0.28539544,-0.238737,-0.2040916,-0.10075007,0.26839694,0.1161977,-0.0207798,-0.14950211,-0.30536795,-0.044381544,0.34484118,-0.043964703,0.19801578,0.17174283,0.080691546,-0.3538356,-0.1090108,0.26029947,0.67127836,0.05361325,-0.17283545,-0.3104145,-0.14762364,-0.3515774,0.30809408,-0.057801537,0.31547537,0.08177049,-0.35942253,0.78445053,0.01678389,1.1199546,-0.004060324,-0.35265654,0.09242683,0.35016638,-0.021913346,-0.03933498,-0.3894561,0.8074233,0.31354657,-0.14314343,-0.13474582,-0.53755414,-0.052067775,0.117594905,-0.21817939,-0.18108366,-0.13846582,-0.50943524,-0.24094565,0.30520517,0.17355792,0.24835548,-0.27264178,-0.053664435,0.1639623,0.03589372,0.24452958,-0.40680832,-0.16748479,0.28791627,0.36907348,0.016865684,0.049001858,-0.6363304,0.36878023,-0.6283915,0.14477918,-0.14079767,0.19086663,-0.3368471,-0.13063966,0.31063554,-0.005456078,0.40391308,-0.28026277,-0.36188754,-0.25763908,0.4208957,0.19074361,0.18743989,0.6926294,-0.2400845,-0.080240086,0.121232525,0.57618076,0.8464034,-0.24885936,0.07130409,0.337921,-0.21512851,-0.6110773,0.24829584,-0.34636515,0.0763518,0.058925357,-0.20907284,-0.43057373,0.2920663,0.21887162,0.15671635,-0.046287518,-0.6676773,-0.13832338,0.24049743,-0.24123976,-0.30464205,-0.36759427,0.044198193,0.5979615,-0.0760517,-0.27342397,0.23769291,0.41235003,0.05543498,-0.53797317,-0.050470013,-0.19978271,0.19590214,0.07143852,-0.32435894,-0.14789881,-0.02624592,-0.58458865,0.16804013,0.11512882,-0.27056873,0.05466731,-0.14627819,-0.01756064,0.85017854,-0.082657345,0.25970775,-0.40748733,-0.40607157,-0.7956303,-0.2402199,0.31236416,0.040507186,-0.08743234,-0.64700425,-0.14953406,-0.20949885,-0.31302178,-0.07503862,-0.51381546,0.39105874,0.034198873,0.3195112,-0.08444551,-0.7182895,0.26600358,0.19686483,-0.122604705,-0.4804805,0.2587287,-0.11277563,0.80025375,0.158818,-9.9460285e-06,0.3249451,-0.35167176,0.032634266,-0.20304102,-0.1410965,-0.6457087,0.032176804 +696,0.3967573,-0.24948764,-0.32817185,-0.12868842,-0.14943627,0.11660636,-0.12029131,0.42600402,0.10276326,-0.59104,-0.23615113,-0.28160724,0.05814995,0.25055614,-0.22522208,-0.3866977,-0.1417504,0.11663183,-0.41991663,0.49485356,-0.4280363,0.2921622,0.13704477,0.32006633,0.12616755,0.22301522,0.17632142,-0.16844644,-0.20565067,-0.08586691,-0.0376954,0.3493151,-0.56616527,0.18898301,-0.09523416,-0.22268134,0.018675907,-0.5012041,-0.23175591,-0.6726695,0.30672783,-0.8965753,0.4303015,-0.0078685405,-0.27748024,0.3806982,0.14853859,0.3744508,-0.1976203,0.034693424,0.20141207,-0.020227907,0.013482632,-0.08062972,-0.1629695,-0.20199344,-0.45274842,-0.008820363,-0.29556262,-0.32236132,-0.24000715,0.15137263,-0.23576126,-0.09864752,-0.037374936,0.50832677,-0.5181424,0.03769857,0.17543554,-0.14853121,0.56771064,-0.48817793,-0.17209128,-0.1360877,0.31985578,-0.4006811,-0.12687099,0.2422239,0.33933517,0.36243457,-0.1243677,-0.025559548,-0.28672716,-0.113502346,0.25199208,0.46240738,-0.16648369,-0.33821017,-0.029193325,0.017873466,0.0935342,0.27998063,0.13133065,-0.45302302,-0.18100923,0.040786315,-0.22979791,0.24429254,0.34053108,-0.26394328,-0.20901148,0.34645227,0.57124,0.1529524,-0.109064676,-0.041210644,0.029434893,-0.46087918,-0.113480724,0.23082593,-0.2572711,0.45205238,-0.07367256,0.32086667,0.65832895,-0.20356542,0.11885821,-0.062052026,0.047215454,-0.17429088,-0.25251713,-0.2925221,0.17109999,-0.28625268,0.12941171,-0.09748415,0.801848,0.10104133,-0.8038744,0.2930836,-0.5165025,0.013277769,-0.26483208,0.44950676,0.51698124,0.33334592,0.25641873,0.6144482,-0.5357105,0.06746542,-0.12528023,-0.42169583,-0.06384375,-0.14503448,-0.19560155,-0.48293063,-0.02453399,0.046398737,-0.17324758,-0.017476348,0.34817538,-0.5678232,0.08061897,0.054975275,0.787881,-0.37132177,-0.024971664,0.64290833,0.8456126,0.76037765,0.15928072,1.1212736,0.24226311,-0.24244124,0.22058997,-0.3451561,-0.6880674,0.3595582,0.5051221,-0.21304312,0.23924749,0.13890605,0.051113572,0.27074528,-0.3534511,0.06810966,-0.28854913,0.08315535,0.0815029,-0.10390661,-0.36691532,-0.21623237,0.04146533,0.11999877,-0.033403777,0.03504371,-0.11658607,0.26372442,0.05509995,1.923001,-0.11605821,0.17945187,0.08158198,0.31231335,0.1660159,-0.082705036,-0.15532635,0.5363867,0.39160267,0.15612802,-0.59634274,0.13757,0.0138266,-0.52066857,-0.04967784,-0.3639138,-0.006521976,0.099558935,-0.4086853,-0.015143188,-0.0743889,-0.31354257,0.45335075,-2.8279433,-0.16442999,-0.20590499,0.33894637,-0.39120114,-0.35602838,-0.14788038,-0.33664542,0.47146118,0.43172055,0.49901152,-0.6227388,0.25681823,0.36409935,-0.39490938,-0.18236068,-0.56913936,-0.13096647,-0.044221256,0.23842672,-0.01422052,-0.004610913,0.11569198,0.12191688,0.30455983,-0.09705923,0.08065614,0.23983759,0.44104663,0.19322665,0.56739247,-0.050860923,0.39985052,-0.11221086,-0.23921145,0.32340842,-0.18397301,0.08014568,0.08776913,0.10535767,0.35201824,-0.5693432,-0.7621257,-0.8012151,-0.5938843,1.1982198,-0.31142017,-0.3863777,0.23448084,-0.06389972,-0.3273961,-0.12215878,0.34728405,-0.05205008,-0.035426904,-1.0129465,0.063257046,-0.06271106,0.2641844,0.006932826,-0.100227885,-0.46939275,0.5592426,-0.16560772,0.4997681,0.44489905,0.16857077,-0.27472255,-0.4116124,-3.1801064e-05,0.9963951,0.27835843,0.10730407,-0.113488086,-0.1946606,-0.31830925,0.032049824,0.15754332,0.45758376,0.62833124,0.09506085,0.051846437,0.31414208,-0.122523084,0.064901926,-0.17513646,-0.339591,-0.024145855,-0.07506548,0.5649487,0.33414173,-0.09784659,0.60956883,-0.10262474,0.28215653,-0.080860056,-0.33816224,0.33327857,0.93156785,-0.06635965,-0.30359662,0.5683735,0.5343305,-0.28713742,0.31995338,-0.58438784,-0.13380781,0.511436,-0.28802642,-0.50016195,0.22510916,-0.30266324,0.20068334,-0.90954906,0.30829096,-0.26183417,-0.36797392,-0.4898451,-0.10495052,-3.2128754,0.21751185,-0.15594779,-0.4016485,0.041695215,-0.19956261,0.14714582,-0.67270625,-0.5487938,0.2006525,-0.036219705,0.545977,-0.007907082,0.12929301,-0.21309032,-0.12451419,-0.12326231,0.0863046,0.13918318,0.29191488,-0.016045209,-0.4971692,-0.02357179,-0.1056897,-0.38069913,0.117982104,-0.5613221,-0.5723589,-0.104956545,-0.53107035,-0.32593015,0.52085155,-0.4136424,-0.039831296,-0.1001816,0.05273723,-0.13577032,0.42503375,0.17194845,0.24011554,0.07462954,0.04564909,-0.046981886,-0.34789905,0.40093726,0.10495916,0.022271864,0.2792505,-0.21224254,0.26395687,0.42269787,0.5611067,-0.027339268,0.6570816,0.5027103,-0.10412904,0.16100861,-0.39799517,-0.17401081,-0.56481296,-0.31943846,-0.01676262,-0.37328276,-0.54766923,-0.12602493,-0.36238515,-0.72908986,0.6224774,-0.07633391,0.09740227,0.042052887,0.27387002,0.43022645,-0.14414819,-0.04235702,-0.033641532,-0.15572974,-0.587847,-0.23349476,-0.60115373,-0.41232577,0.0650691,0.9867775,-0.12622514,0.06098427,-0.020689623,-0.16655995,0.007578186,-0.010016266,-0.04505893,0.25514597,0.35720667,-0.15344897,-0.63140875,0.4005795,0.036787868,-0.2375381,-0.5680575,0.23368892,0.6354734,-0.49299,0.55066764,0.2831666,0.024060579,-0.17047733,-0.4321771,-0.18347086,0.0027647733,-0.3473416,0.43390572,0.09705796,-0.58000076,0.38674164,0.45860627,-0.18392196,-0.7909352,0.67312837,-0.043219294,-0.35021153,0.10324125,0.25859845,-0.038712755,-0.036126796,-0.19015703,0.2561522,-0.40617433,0.25758216,0.26385072,-0.04816739,0.3830887,-0.20140807,-0.020890625,-0.7194626,0.10755878,-0.42126682,-0.2550672,0.26634178,0.088563785,0.0342846,0.28293812,-0.06020533,0.5451669,-0.3050253,0.045416195,-0.014040482,-0.10269907,0.19083683,0.40287802,0.3014396,-0.4402565,0.4745162,-0.03674323,-0.04816235,-0.20854715,0.15042645,0.45299104,0.1894486,0.23027721,-0.17415714,-0.27700698,0.454801,0.6297062,0.28898507,0.5297166,-0.063362375,-0.1460841,0.21764088,0.17036308,0.23003188,-0.07812152,-0.48681286,0.039326303,-0.06258187,0.08410979,0.3784459,0.11252644,0.28799313,-0.16505273,-0.40051848,0.087540515,0.23861167,0.078160286,-0.88664407,0.3211712,0.12631553,0.7250073,0.45181364,-0.060955223,0.13550459,0.57754093,-0.3117959,0.095957085,0.18783443,-0.04202226,-0.5884016,0.46203688,-0.6400986,0.3664159,-0.110973574,-0.053418454,-0.021696357,-0.06647357,0.31986412,0.72046703,-0.0968224,0.13690199,-0.023522858,-0.30881685,0.17565466,-0.4555783,0.03243999,-0.53738433,-0.29335573,0.44871882,0.47911826,0.35217416,-0.14908075,0.019089127,0.0532231,-0.088720456,0.24468714,0.20350641,0.26175067,0.107309625,-0.767679,-0.27265355,0.55234927,0.06727597,0.16091134,-0.04797023,-0.2225645,0.34304124,-0.12715572,-0.058838297,-0.024752226,-0.60793597,-0.07137024,-0.24860138,-0.28599957,0.25083384,-0.09120684,0.19529477,0.13789259,-0.037230253,-0.33551896,0.34416077,0.34322146,0.85689074,-0.0043634274,-0.17962632,-0.43710807,0.06799411,0.19168898,-0.074046746,-0.07699124,-0.25334823,-0.03237115,-0.6682479,0.44924575,0.13636576,-0.33922693,0.2094231,-0.12189693,-0.062304392,0.6201639,-0.041752305,-0.06232914,-0.11748377,-0.21929915,-0.23637746,-0.12880678,-0.15320864,0.21699168,0.19309138,0.087044835,-0.09569867,0.025792273,-0.17969933,0.52553266,0.029001491,0.48904946,0.3847538,0.12321555,-0.4071611,-0.10523241,0.022200465,0.36648285,-0.057970013,-0.10248712,-0.23329654,-0.46305677,-0.19998479,0.08655287,-0.15447603,0.339145,0.12251267,-0.36846307,0.7445261,-0.16733749,1.0509304,0.01702307,-0.33867794,0.015641121,0.39706105,-0.017719602,-0.038401406,-0.27741373,0.74226516,0.6651323,0.042394377,-0.0684005,-0.21716264,-0.15820861,-0.003473107,-0.1310681,-0.062273216,0.008860846,-0.5207698,-0.4233538,0.18005086,0.20735316,0.14174007,0.020590307,0.09989584,0.1594147,0.008517893,0.31124586,-0.35804263,-0.058449157,0.25380918,0.2922146,0.13109413,0.03372767,-0.5041564,0.46261552,-0.43882734,0.11929051,-0.3361852,0.12333949,-0.121588595,-0.20398359,0.1495296,-0.07303406,0.32762542,-0.19953838,-0.3104316,-0.15716007,0.5631305,0.075875886,0.11876752,0.54666257,-0.25302097,0.28508773,0.00429256,0.5182138,1.0398362,-0.22101326,-0.03479847,0.3660288,-0.3230391,-0.5021446,0.33092833,-0.2018892,0.19785486,-0.020762937,-0.10645464,-0.45091644,0.24143271,0.20454977,-0.052856095,-0.15064386,-0.48785704,-0.18596411,0.46873653,-0.31614298,-0.23118271,-0.35812977,0.2391352,0.55275595,-0.3056551,-0.24110843,0.0342657,0.17553638,-0.31251702,-0.35738784,-0.15910527,-0.32429683,0.26523945,0.119101234,-0.34824544,-0.09301956,0.11057476,-0.20112786,0.06742794,0.12818351,-0.3488596,0.023300687,-0.22478531,-0.16676967,0.94042754,-0.14296725,-0.110198975,-0.53458613,-0.32518873,-0.88653743,-0.2550169,0.6113777,0.01781019,0.0714374,-0.44673258,0.06095345,0.0086921295,-0.17235593,-0.12661436,-0.2906078,0.41934347,0.15887684,0.5113621,-0.14096175,-0.5626905,0.11919455,0.078513525,-0.07900419,-0.6534836,0.5175762,0.050625358,0.7367973,0.027466945,0.08045812,0.3413433,-0.48278138,-0.15884325,-0.17936927,-0.3259133,-0.7544917,0.003610313 +697,0.78115743,-0.20043102,-0.6339289,-0.055416755,-0.26226947,-0.07364375,-0.22086899,0.3570228,0.28860697,-0.38117573,0.009401793,-0.065911695,-0.15246353,0.5517284,-0.04681799,-1.0164798,0.12106632,0.2094647,-0.68849695,0.7486137,-0.22913122,0.6219919,0.028327653,0.526312,0.07328572,0.37208128,0.38225195,0.25114167,-0.1466476,-0.25152183,0.0515182,-0.5301539,-0.6011678,0.15611541,0.16288741,-0.35991055,-0.07222895,-0.33272266,-0.6289295,-0.76412404,0.49840102,-0.77029717,0.87682974,-0.0053079724,-0.3656199,-0.13863136,-0.12481992,0.26221943,-0.086144865,0.029472673,0.32880554,-0.023565745,0.009752998,-0.49955583,-0.206629,-0.6852113,-0.49809867,-0.10384758,-0.5762937,-0.24307708,-0.5545513,0.24556327,-0.49481806,-0.19670203,0.07599507,0.34314507,-0.43004218,-0.08510054,0.00016577244,-0.33936542,0.13074617,-0.71710014,-0.067755364,-0.22362056,-0.020760138,0.12672059,-0.10253763,0.35981488,-0.062122248,0.64175487,0.19104071,-0.34238964,-0.3308459,-0.039630864,0.09312962,0.73992825,-0.14066446,-0.43696165,-0.31804842,-0.02330687,0.45400444,-0.038773835,0.28920716,-0.33032545,0.10814208,-0.016292829,-0.13331635,0.8183408,0.5650742,-0.32732323,0.15112586,0.40799913,0.38377994,0.22068027,-0.08809104,-0.024491012,-0.17873123,-0.445728,-0.16114664,-0.19635575,-0.38585043,0.5808638,-0.10765457,0.21510096,0.79358405,-0.25171936,0.074920565,0.30452618,0.1716394,0.10499026,0.009950864,-0.3322063,0.38370258,-0.321592,-0.07343286,-0.2681935,0.61447275,0.26151207,-0.5257455,0.51158655,-0.51296985,0.1107067,6.54012e-05,0.5551611,0.6840917,0.3810072,0.18877093,0.9985315,-0.45031995,0.13204707,0.16250756,-0.14899297,0.10448219,-0.116736725,0.23220436,-0.4781806,0.03284215,-0.08755283,-0.35209996,0.1587357,0.7317213,-0.5898521,-0.2084847,0.05555613,1.0495193,-0.32547456,0.18326262,0.61669165,1.1993216,1.0137455,-0.16538152,1.3270836,0.304388,-0.4127698,-0.12589574,-0.16120836,-0.7136812,0.15520795,0.37390703,0.16732042,0.52811944,0.14717987,-0.1094684,0.31110775,-0.47827855,-0.08188398,0.07917288,0.4894343,0.0015597388,-0.23814256,-0.82909966,0.0048945965,-0.10688664,-0.0384385,0.25047058,0.56363934,-0.58273476,0.0737822,-0.18940327,1.5113503,-0.2690233,-0.034925673,-0.027373109,0.63418514,0.30153924,-0.24895081,-0.007919133,0.42885008,0.28339106,-0.10267562,-0.5944604,-0.06472434,-0.44683218,-0.18300557,-0.34759337,-0.24351475,-0.013726878,0.14335926,-0.17791487,-0.29530618,0.03130321,-0.23000221,0.051978987,-1.9757643,-0.44845334,-0.16178277,0.5907736,-0.30138078,-0.21729557,-0.158622,-0.55474627,0.3231918,0.30440956,0.6716674,-0.5909823,0.3593158,0.5295542,-0.54035956,0.014352804,-0.48218575,0.09238531,-0.024723217,0.606896,-0.15468149,-0.31758818,0.12614538,0.30198732,0.4645475,0.21163306,0.041556858,0.3819438,0.49072313,-0.2263438,0.26110277,-0.088531815,0.72457343,-0.2640049,-0.13949177,0.41102868,-0.35878348,0.123218834,-0.624036,0.06221785,0.50172883,-0.5506469,-0.7952662,-0.47669354,0.080971956,1.0812702,-0.43525138,-0.8019947,0.3003064,0.10956691,-0.23681775,-0.010677931,0.384331,-0.019969791,-0.008636939,-0.6879724,0.09109594,-0.10649707,0.1632587,0.0754964,0.077060185,-0.34252754,0.99893063,-0.13742557,0.4161539,0.14969595,0.524237,-0.14444944,-0.38412362,0.4228918,1.1481879,0.5705767,0.11509086,-0.16045281,0.15785728,-0.3342202,-0.4785776,0.012391353,0.53481436,0.8367367,-0.119377635,0.04134498,0.24094006,-0.08019143,0.07718661,-0.13279736,-0.5166664,-0.1334599,0.09611919,0.69959444,0.8306775,-0.27913028,0.52739894,-0.11342646,-0.015851904,0.008798408,-0.546822,0.6861953,0.89078283,-0.2062861,-0.1561228,0.5286189,0.20648351,-0.7516013,0.7267839,-0.88037646,-0.34484252,0.4818471,0.05347594,-0.3674732,0.3256966,-0.32253736,0.27001926,-0.77876157,0.448577,-0.09001326,-0.43190432,-0.31210238,-0.34825325,-2.562194,0.22953112,-0.37381893,-0.1200736,-0.048570476,-0.096971504,0.049750943,-0.6565302,-0.63316566,0.073935814,-0.037242465,0.683474,-0.091042,0.2463288,0.012375474,-0.48159045,-0.25502467,0.2648211,-0.016839897,0.4675437,0.05735294,-0.44447166,-0.05479165,0.06313293,-0.5382868,0.009239611,-0.8209747,-0.4350349,-0.36593658,-0.76019496,0.0085962,0.9131012,-0.105467856,0.11367903,-0.30865547,0.0428815,-0.18253878,0.22093192,0.048301898,0.12123792,0.0736219,-0.12479951,0.19886573,-0.27154738,0.26547664,0.21014616,0.58664286,0.23456016,-0.08482208,0.055268943,0.6049394,0.77820015,0.16520646,0.8878342,0.386172,-0.09598365,0.2233297,-0.20262766,-0.45050803,-0.49944896,-0.48490506,0.022080189,-0.39730343,-0.56459105,-0.08592274,-0.42896694,-0.8670106,0.49418682,0.08013295,0.4596335,0.2113982,0.27044982,0.44835362,-0.13371557,-0.12926374,0.05043,-0.31013852,-0.59781873,0.031770967,-0.69372547,-0.38644665,0.45218483,0.70189726,-0.11347951,-0.15234834,0.17607594,-0.23665643,0.078645304,0.046552442,0.15111649,-0.23771927,0.30060074,0.22997531,-0.6621833,0.2845672,-0.2492772,0.14074458,-0.66232467,0.15650293,0.56896347,-0.72637975,0.35447,0.028290045,0.2369527,-0.24545722,-0.44546652,-0.16439594,0.34231284,-0.04399474,0.24960876,0.12416847,-0.61152184,0.2952371,0.14796756,-0.47974926,-0.6017398,0.46204752,-0.0026020347,-0.3863626,-0.3714728,0.32087487,-0.016965527,0.08388277,-0.53470576,0.30287126,-0.5583109,0.36603326,0.2306798,-0.09702835,0.6135457,-0.07217358,-0.49869585,-0.73602605,0.22981901,-0.6928512,-0.50485694,0.25388354,0.25530484,0.18461673,0.07215016,0.48062158,0.49029654,-0.37272924,0.062676564,-0.16442809,-0.50884664,0.69957465,0.37441093,0.4946739,-0.53031313,0.60930896,0.0861402,-0.12514775,0.08861153,-0.2321188,0.55471194,0.09285999,0.42849436,0.3479294,0.080085345,-0.020861909,0.82379895,0.24171023,0.31322607,0.39321855,-0.23674026,0.2646564,0.08503161,0.07546345,0.07705531,-0.5739447,0.055102576,0.13742384,0.059508014,0.61599725,0.33012873,0.31300515,-0.12995133,-0.5877377,0.15213762,0.047237627,-0.17550506,-1.7867393,0.26827058,0.18800555,0.6402643,0.37639716,-0.1156281,-0.25808793,0.7307721,-0.010668511,-0.034094352,0.35934213,-0.20567942,-0.5625663,0.4748643,-0.55003995,0.41352957,-0.13944814,0.106690094,0.15215087,0.22110465,0.30788398,0.81535137,-0.17731567,-0.054775525,-0.14963916,-0.24302487,-0.11471076,-0.3642526,0.25517267,-0.5062668,-0.4212466,0.6797031,0.25573286,0.09149868,-0.15463927,0.10169085,0.06735932,-0.120243,0.4101724,0.042906646,-0.09711872,-0.14725943,-0.68418384,-0.30634156,0.39260513,0.031626593,-0.028369427,-0.10318524,0.20726462,0.16571641,0.0042395713,-0.16575493,0.08936142,-0.89922106,-0.15118803,-0.43570232,-0.3646128,0.3769016,0.18144423,0.15056708,0.04927223,-0.06477384,-0.31596702,0.5160028,0.3208155,0.72140884,0.0890521,-0.24643102,-0.47632447,0.18454754,0.049814295,-0.26228216,0.34478748,-0.21469542,0.15351124,-0.6484558,0.6274413,-0.29743513,-0.24954076,0.13211887,-0.33798784,-0.027564052,0.5434868,-0.27431625,-0.15036628,0.047116213,-0.5204224,-0.2843479,-0.29844916,-0.10605142,0.009933186,0.006298566,-0.22510424,-0.100626506,-0.1844095,-0.00047867297,0.39711696,0.09402515,0.2830507,0.4717462,0.30901632,-0.4417285,-0.05803039,0.34413114,0.6004498,-0.038352005,0.1752548,-0.31519264,-0.5867076,-0.64597225,0.27782002,-0.16178744,0.23804164,0.120019734,-0.40007696,0.9098915,0.43891373,1.4022238,-0.13482128,-0.31808084,0.1780153,0.769708,-0.08607992,-0.116342604,-0.63796735,1.2942388,0.6663915,-0.042534813,-0.20080867,-0.51924646,-0.33340007,0.41497716,-0.6130269,-0.06428482,0.010047132,-0.69353855,-0.29626268,0.16715859,0.32127845,-0.033514995,-0.047153346,0.29014665,0.3411214,0.24390376,0.258691,-0.72564185,-0.3315304,0.4441409,0.14086941,-0.03812868,0.19480637,-0.32734632,0.35014683,-0.6607021,0.14492154,-0.1514248,0.04660842,0.17804559,-0.6100739,0.17888162,0.3095886,0.4414746,-0.5737956,-0.50363815,-0.22564802,0.52211106,0.04402799,0.024862424,0.62224215,-0.2523715,0.06763433,-0.024921149,0.61432475,1.4007638,0.110005304,0.28320867,0.15328433,-0.5473751,-0.9938137,0.32728523,-0.32398504,0.109420225,-0.35646957,-0.34134617,-0.87978554,0.22950777,-0.23161773,-0.26519734,0.20155752,-0.4982788,-0.57957965,0.20667505,-0.35665822,-0.21074605,-0.29154688,-0.006714529,0.7916523,-0.30088794,-0.3718218,0.11792791,0.5125657,-0.17938375,-0.8808212,-0.15230386,-0.29924774,0.38054878,0.05021636,-0.4611215,-0.079433635,0.06504047,-0.55387574,0.10545541,0.096196175,-0.47697893,0.10187368,-0.26361066,-0.069201216,0.7040287,0.0072543025,0.19600508,-0.75600684,-0.6616162,-0.9768798,-0.630703,0.10874224,0.27451423,-0.06310924,-0.86214525,-0.10719933,-0.450082,0.37950948,-0.0010462075,-0.54580015,0.21810067,-0.054662384,0.5912283,-0.17564511,-1.2302393,0.11892428,0.186307,-0.24173729,-0.7707982,0.42975673,-0.08761506,0.95279276,0.23235865,-0.1214036,0.045576576,-0.63297516,0.042792358,-0.16005948,-0.31810832,-0.60470784,0.39093566 +698,0.4672947,-0.12318829,-0.46576083,-0.0483901,-0.18329276,0.029541558,-0.030080687,0.6123914,0.3599162,-0.4739339,-0.327946,-0.4443475,-0.08634953,0.43622884,-0.16597709,-0.6503704,0.02801714,0.19190668,-0.6648846,0.64090323,-0.48307094,0.40244314,0.10902285,0.4661927,0.21729317,0.12024198,0.19468151,-0.110366754,-0.019483805,-0.1354646,-0.16794367,0.038458604,-0.47572067,0.27528402,-0.08837865,-0.42973423,-0.015704209,-0.59244233,-0.14093718,-0.8072439,0.39281493,-0.7398361,0.3928649,0.0913545,-0.2979762,0.25814387,0.14355235,0.3426154,-0.17839266,-0.027255088,-0.024308555,0.0047839093,-0.03842622,-0.25077343,-0.210261,-0.28686187,-0.7323923,0.1891892,-0.21360807,-0.24773206,-0.22322851,0.046401743,-0.3532709,0.18035239,0.10416703,0.31664887,-0.3009551,0.1147671,0.13018918,-0.21502899,0.008801059,-0.5344619,-0.3950306,-0.080485314,0.2646506,-0.23749675,-0.13742475,0.25975513,0.33341715,0.59360605,-0.11896899,-0.108093046,-0.25481468,-0.18544973,0.068368964,0.60360044,-0.17751569,-0.6331316,-0.06218797,-0.07488993,0.2347611,0.22413841,0.23681699,-0.23821133,-0.15199417,-0.34584737,-0.3517815,0.16642445,0.51581424,-0.35947183,-0.3373752,0.3009365,0.513238,0.099405356,0.14058429,0.13635124,0.09392467,-0.5651064,-0.1016844,-0.07112877,-0.40438625,0.5449981,-0.22730647,0.20256825,0.557704,-0.037058827,0.10259209,0.07658278,0.054348446,-0.22429754,-0.2963828,-0.23947121,0.24497706,-0.43807265,0.13968597,-0.2933234,0.9032724,0.33229694,-0.73671705,0.3630241,-0.64364547,0.22147027,0.04023662,0.4909383,0.7101707,0.1758725,0.4246749,0.6816655,-0.3973973,0.058141556,0.038690213,-0.20877385,-0.042053424,-0.258463,0.061140537,-0.4558718,0.16772081,0.13154739,-0.10040164,0.24984303,0.49773273,-0.48833266,-0.10023474,0.20480512,0.8274107,-0.2694607,0.005053997,0.8581892,0.9071333,1.1674514,0.050019935,1.4031314,0.31937936,-0.29901636,0.18985675,-0.23546691,-0.96663326,0.25249216,0.366558,-0.21965967,0.29745752,0.067798495,0.021286774,0.31226087,-0.6319037,0.07454226,-0.13635863,0.104957074,0.1266533,-0.11790137,-0.3429477,-0.47000942,-0.09162101,0.0046509113,0.18693356,0.3397196,-0.10350945,0.40393162,-0.017313974,1.6629704,-0.032847203,0.19333524,0.23363261,0.3727866,0.20154685,-0.25380117,-0.06863033,0.2520505,0.29204312,-0.089059524,-0.6904967,0.018334992,-0.2569702,-0.55581,-0.21115784,-0.22206426,-0.1612532,0.115881614,-0.21094021,-0.3528862,-0.27584296,-0.4247708,0.36538124,-2.4157114,-0.15341236,-0.2274444,0.33452064,-0.24984117,-0.3893979,-0.3035866,-0.5060909,0.37841618,0.4051571,0.39270118,-0.7838125,0.0973342,0.45148146,-0.5510875,-0.14178436,-0.6202924,-0.048744414,-0.018814765,0.031941555,-0.11188728,-0.063767485,-0.01926472,0.09092684,0.41944426,0.1356743,0.09516024,0.42822826,0.4330459,0.12736104,0.4146081,-0.064684,0.49590433,-0.34671852,-0.14077939,0.34659767,-0.5939961,0.21756333,-0.22941022,0.13020495,0.502912,-0.6401947,-0.7390846,-0.6598696,-0.3221537,1.2757142,-0.16226615,-0.46811536,0.28100854,-0.22950147,-0.13808651,-0.20280714,0.627521,-0.4087426,-0.30285013,-0.80999374,-0.038567487,0.02237249,0.22633377,0.02142712,-0.1287567,-0.3799503,0.81837046,-0.02070985,0.3803913,0.19916114,0.050388943,-0.39793712,-0.555385,0.16453736,0.964279,0.44356823,0.22565302,-0.26319215,-0.11433518,-0.6211806,-0.3518751,0.08751394,0.3215297,0.74945015,-0.13155438,0.04555227,0.3691281,0.14992493,0.24826384,-0.019602424,-0.2027288,-0.26085582,-0.13304262,0.6756674,0.7399374,-0.35086474,0.19286132,-0.1013763,0.23279019,-0.24917574,-0.3318865,0.7247293,0.92243844,0.008818134,-0.36083564,0.64473933,0.52860403,-0.32087466,0.41869137,-0.57756835,-0.434877,0.46481478,-0.04850801,-0.40129748,0.029990934,-0.32715526,0.108850546,-0.8222306,0.22095901,-0.13362113,-0.11851895,-0.6832715,0.028299851,-2.7091932,0.22613792,-0.258572,-0.13474375,-0.35609278,-0.023278935,-0.13783379,-0.4469161,-0.7767181,0.21903668,0.08739689,0.68683654,-0.0904656,0.22730042,-0.010731014,-0.3014409,-0.59469754,-0.030883472,-0.17149931,0.43039963,0.30527154,-0.35200477,-0.010032887,-0.1408684,-0.22904162,0.15116729,-0.50605386,-0.47890872,-0.22157167,-0.6085237,-0.3745085,0.5482382,-0.5705426,0.04133183,-0.23348904,-0.2190312,-0.2657424,0.3006467,0.13008705,-0.11819511,0.017315181,-0.15483277,-0.13020205,-0.26444957,0.32362553,0.015639933,0.29954612,0.39830047,-0.18643856,0.19544636,0.23148017,0.7226732,-0.10920021,0.65601027,0.35371402,0.017753506,0.25820762,-0.3350361,-0.03922884,-0.34688488,-0.12615922,0.0116301235,-0.35806444,-0.48129222,-0.0005911643,-0.2525165,-0.7249212,0.23268825,0.05107124,0.1350174,0.089041695,0.19290408,0.48069936,-0.008380628,0.022737037,-0.13560511,-0.046361074,-0.5791625,-0.37316027,-0.67409855,-0.22177698,0.4730096,0.9686601,-0.05897728,-0.033921883,0.09083626,-0.19778791,-0.045318767,0.12738995,0.0077403486,0.10515134,0.47670576,0.034668293,-0.70249075,0.47882202,0.04144279,-0.31551027,-0.59416157,0.1410779,0.48211735,-0.60974646,0.56786937,0.24143614,0.05833461,0.13979049,-0.4515002,-0.2666776,-0.15502724,-0.2392408,0.098361276,0.29352307,-0.557868,0.4038869,0.25913757,-0.0727598,-0.9502809,0.22161227,0.08359666,-0.25852555,-0.039172877,0.4589217,0.16546923,0.10674503,-0.21078648,0.12679364,-0.4999054,0.3161708,0.17418288,-0.010611513,0.30070797,-0.33008978,-0.18922311,-0.7526869,0.123722404,-0.48049676,-0.19729353,0.19996572,0.24693199,0.06760235,0.14209868,0.20440935,0.25637177,-0.3194183,0.16039819,-0.008235639,-0.038489655,0.10573241,0.34033874,0.53596395,-0.5113173,0.65720534,0.0829699,0.04656236,-0.024674892,0.047940113,0.28089485,0.22842659,0.24064918,0.20658241,-0.33268067,0.31104687,0.6255751,0.19292088,0.19341844,0.2533214,-0.07518646,0.43010694,0.16455115,0.10185929,-0.054846045,-0.56965494,-0.060532752,-0.25456843,0.14550729,0.52702457,0.12359419,0.3674844,-0.061794635,-0.2764967,-0.015676081,0.3169526,-0.24577393,-1.1087645,0.1720847,0.031513777,0.8097999,0.6747484,-0.17752632,0.27198705,0.5918934,-0.137291,0.20067258,0.3568106,-0.07698568,-0.47543058,0.67768663,-0.574876,0.42746115,-0.20972382,0.06545872,-0.052311126,0.15258351,0.29754725,0.5998752,-0.13329992,-0.03481593,-0.12182342,-0.30331525,0.072050765,-0.5035644,0.04362345,-0.5772079,-0.14389418,0.60961777,0.3197818,0.19013304,-0.1693268,0.10242807,0.008120585,-0.14455591,0.027965205,0.066752724,0.11544385,0.04630084,-0.7401112,-0.096896,0.5877591,0.0829357,0.289089,0.23090205,-0.29806045,0.1803482,-0.33894274,-0.0903233,-0.123121314,-0.80333996,-0.021391576,-0.17141925,-0.40801084,0.27054426,-0.06113225,0.20616116,0.35527658,0.16110164,-0.34993017,0.3143971,0.03807055,0.7477224,0.010874339,-0.2927907,-0.24283351,0.3620821,0.091452144,-0.276441,-0.0016197237,-0.18356639,-0.07135144,-0.4441021,0.7388985,0.20109606,-0.22221297,0.079002835,-0.20567422,-0.0009360869,0.6802266,-0.2802427,-0.09314141,0.0106139025,-0.20700131,-0.10275795,-0.17959881,-0.23967895,0.38418233,0.33037812,-0.011970899,-0.1412601,-0.096137,-0.133816,0.30418372,-0.06970212,0.31452253,0.26910657,0.096922375,-0.45779255,-0.012169946,0.13120092,0.49082705,0.05011293,-0.28924796,-0.13613339,-0.41846707,-0.31706464,0.43369853,-0.13371554,0.33844423,0.18230699,-0.36985752,0.56628805,0.32498989,1.0790483,0.06177855,-0.32058823,0.014981573,0.3955711,-0.0073279333,-0.16124167,-0.29563186,0.9188049,0.45288727,-0.18159066,-0.16989475,-0.28691027,0.04079484,0.23381463,-0.17360741,-0.076202005,0.1925541,-0.5612406,-0.5004149,0.12246392,0.22920108,0.14747977,-0.19713612,0.11213057,0.21577772,0.018026583,0.38647747,-0.33835763,-0.29746476,0.27170277,0.22024423,0.21081497,0.17240432,-0.39297864,0.31648102,-0.72587466,-0.0053877127,-0.29536223,0.10773511,-0.15807508,-0.33996168,0.22438727,0.23529743,0.43862975,-0.41344795,-0.39262086,-0.37823057,0.60636514,0.18709908,0.27661824,0.47935173,-0.28071395,-0.0008798299,0.16791497,0.59085625,1.1267432,-0.027464002,0.05279164,0.060704652,-0.29653767,-0.5940359,0.5026915,-0.26846787,0.1091702,0.080456585,-0.20496391,-0.77457964,0.24482927,0.2362136,0.15670905,0.18363996,-0.6011169,-0.48624334,0.38168576,-0.30366287,-0.17818585,-0.40227425,-0.063604526,0.5950344,-0.11401956,-0.25528786,0.10954884,0.17193861,-0.26970896,-0.69618183,-0.05386295,-0.4465514,0.34318605,0.19425073,-0.2153828,-0.29159418,0.18947569,-0.46819755,0.21165419,-0.009281695,-0.36316743,0.044957206,-0.4725646,-0.025888653,1.0209762,-0.19706783,0.34876245,-0.63149905,-0.47460678,-0.8884726,-0.42718726,0.73867875,0.022246247,0.13274217,-0.6316564,-0.18292412,-0.061374318,-0.115725584,0.13195789,-0.18172885,0.32084343,0.20424443,0.41346,-0.053527854,-0.67670375,0.06395798,-0.013281868,-0.19568811,-0.56274575,0.35471514,0.19606161,1.0231054,-0.0077547594,-0.0823839,0.3745383,-0.6678814,0.016506704,-0.18352284,-0.10164463,-0.5915633,0.13584167 +699,0.571297,-0.2107805,-0.3775537,0.14432095,-0.5390257,0.09316714,-0.14908719,0.43283114,0.31028304,-0.5819834,-0.33879516,0.115438886,-0.21352768,-0.07095634,-0.16115132,-0.52494174,-0.10332669,0.32130572,-0.46780595,0.68403333,-0.12478654,0.34409264,-0.039650764,0.39923498,0.32279727,0.14927147,-0.14147872,0.11591698,-0.19999014,-0.36420414,0.17274721,0.21653466,-0.8001477,0.4828836,-0.37240908,-0.41241845,-0.20620802,-0.4709434,-0.5260125,-0.8302341,0.37725332,-0.85668343,0.634332,-0.007042442,-0.26479423,0.13434917,0.05038676,0.11107548,0.078359224,-0.12661284,0.32522187,-0.20636013,-0.1363709,-0.059200015,-0.20105276,-0.22145645,-0.68367547,-0.014710999,-0.28656602,0.12962662,-0.3679776,0.30800128,-0.24613433,-0.14945824,-0.20066145,0.6049603,-0.3484877,0.43974808,0.048781734,0.0044068885,0.18919502,-0.7761227,-0.23997985,-0.14542806,-0.046092603,0.016964886,-0.15806295,0.48918173,0.15872863,0.311864,0.08181411,-0.2892728,-0.3991832,0.04140506,0.31758505,0.462663,-0.27212662,-0.15268625,-0.25866598,-0.068067156,0.41629553,0.106599346,0.24672078,-0.35960335,-0.0337163,-0.117043,-0.0015138473,0.51192385,0.56346315,-0.026720067,-0.11477898,0.3410655,0.3858063,0.23122641,-0.11444362,0.008907846,0.038802225,-0.33738834,-0.15703079,0.076549,-0.22470157,0.51085013,-0.09447888,0.056995142,0.49457937,-0.08576352,-0.08547973,0.36992878,0.21947977,0.17363827,-0.34044498,-0.27779773,0.372124,-0.5486682,0.35132748,-0.18088745,0.7131097,0.024521155,-0.8455309,0.28769988,-0.47204018,0.004451013,0.061981585,0.45766827,0.7317993,0.5036506,0.1920878,0.8747383,-0.34898165,-0.024964819,-0.034388166,-0.29525524,-0.23952106,-0.24359365,-0.039785456,-0.4060838,-0.092305735,-0.1617953,-0.084371686,0.03560149,0.55483466,-0.40533304,-0.3530462,0.10581796,0.8452796,-0.24123068,-0.04294769,0.91168815,1.0774823,1.1115873,0.057817526,1.203113,0.013948889,-0.096537784,-0.17169468,-0.22915368,-0.74210346,0.22454207,0.201082,-0.29734704,0.18448056,0.23685193,-0.04057953,0.20015442,-0.5067822,-0.06063858,-0.32391518,0.32386306,0.041447222,-0.11600435,-0.40203527,-0.24327438,-0.10195296,0.06531099,0.0013268569,0.2985607,-0.32805124,0.22140412,0.122064166,1.1962754,-0.20380385,0.12035443,0.026965097,0.2834261,0.24753408,-0.2456602,-0.034120433,0.11225128,0.23467116,0.008551515,-0.51112586,-0.0040724617,-0.3564975,-0.42718676,-0.19908322,-0.22812487,-0.3750542,0.18041112,-0.33159104,-0.42796263,-0.09730987,-0.49013022,0.4658104,-2.5512357,-0.013260313,0.045982473,0.40530413,-0.3436975,-0.3317741,-0.11981861,-0.59074444,0.43046686,0.1411006,0.42460844,-0.5975941,0.26684862,0.5284906,-0.6881782,-0.039695125,-0.55136245,-0.022601707,0.18715039,0.27917558,0.042253193,0.10852957,0.080098346,-0.0298012,0.6483466,0.13932444,0.15099347,0.5077995,0.34412694,-0.24497621,0.16443887,-0.048323963,0.43755504,-0.2579828,-0.19553386,0.5505102,-0.3681376,0.35568696,-0.29030734,0.06478309,0.6527805,-0.44410482,-0.5657221,-0.6642333,-0.27168283,1.0593498,-0.21444489,-0.6115206,0.19658527,-0.44571277,-0.12768833,0.011672148,0.564562,0.076313004,0.106562935,-0.65950435,-0.18231371,-0.094663024,0.13402723,-0.053647123,-0.0076317107,-0.5235449,0.88791925,-0.014824203,0.5157815,0.36417824,0.3508411,-0.20293473,-0.37098128,0.16970693,0.8942223,0.59402835,0.25312024,-0.48078728,0.020496229,-0.35746357,-0.3145353,0.055813942,0.73341817,0.4493194,-0.17788696,0.11224275,0.31034356,0.13699332,0.17626815,-0.16950642,-0.24157624,-0.3035173,-0.00011627163,0.45892715,0.70120746,-0.089649916,0.45175332,-0.15832199,0.044277888,-0.18147598,-0.4973586,0.46176797,0.90002483,-0.18813644,-0.23265454,0.73054105,0.4844158,-0.29450804,0.50044847,-0.5280452,-0.35602516,0.44864437,-0.17958255,-0.60771805,-0.012340437,-0.4818766,0.14867036,-0.5609511,0.45118693,-0.33984894,-0.7537261,-0.47082356,-0.05688554,-1.3742855,0.22017045,-0.32536444,-0.104886845,-0.16482453,-0.41619202,0.087516725,-0.48771772,-0.5984355,0.20594038,0.11561408,0.65866584,-0.16312286,0.13005948,-0.14947169,-0.269629,-0.25224456,0.1874676,0.29357764,0.32136518,-0.079193674,-0.26059967,-0.109393165,-0.0034496891,-0.33696005,0.0018397783,-0.548411,-0.46377352,-0.097025044,-0.5135535,-0.32728437,0.55531925,-0.34267667,0.06731103,-0.20666364,-0.034873206,-0.008515997,0.2595612,-0.096481785,0.31189534,0.24690959,-0.258025,0.03645524,-0.18265285,0.6782897,0.12206235,0.30239794,0.60379314,-0.4133331,0.29697463,0.37959698,0.68820864,-0.18618026,1.0353577,0.32476267,-0.16068707,0.3461515,-0.14766261,-0.370982,-0.74976665,-0.085379615,0.08937525,-0.40987176,-0.5588462,0.13429423,-0.42018208,-1.01733,0.5070674,0.105149746,0.5037471,-0.0020818498,-0.0377548,0.5328346,-0.24969313,-0.123033024,-0.09939611,-0.16219759,-0.40676552,-0.5274521,-0.7569812,-0.57587963,-0.116730385,1.190837,-0.17099929,0.051303744,0.32312196,-0.31549388,0.09797,0.048073836,-0.06369653,-0.2593021,0.3368781,0.27196118,-0.62689656,0.3963063,0.19696961,-0.029698014,-0.5272685,0.5668585,0.6763391,-0.48930594,0.5418831,0.16955839,-0.051897682,-0.30069324,-0.6306542,-0.122138,-0.11119853,-0.24430561,0.6320788,0.449176,-0.7811242,0.25354204,0.3684148,-0.32302117,-0.8259867,0.54256195,-0.09612977,-0.14400493,-0.18610986,0.45061567,0.14735691,-0.07191523,0.08331168,0.34502798,-0.48349157,0.47637224,-0.005914954,-0.08686972,0.13951056,-0.18218586,-0.29815823,-0.92674714,0.34918424,-0.6434825,-0.4169149,0.24346277,-0.015293066,-0.1578925,0.37181884,0.47835797,0.44971466,-0.17525287,0.15434574,-0.20126316,-0.41521496,0.39863846,0.43986773,0.7569846,-0.32808954,0.49251655,0.041608382,-0.079973154,0.10559181,0.21924333,0.41770846,0.017737377,0.43545052,0.14284354,-0.049922466,-0.03991234,0.74486345,0.08431506,0.46893692,0.058923513,-0.27184322,0.2925306,0.032789808,0.45523283,-0.280663,-0.82417303,-0.028401464,-0.2995239,0.057255726,0.47290656,0.19679289,0.16826487,-0.13098742,-0.28327098,-0.08177822,0.0026655367,0.027391102,-1.2759131,0.23408844,0.087412596,0.9922345,0.5379773,-0.02093743,0.025039298,0.6681381,-0.04407651,0.15144856,0.43739754,-0.06794749,-0.36631462,0.36219284,-0.6817313,0.33787656,-0.10585866,-0.041810717,0.18131661,0.011896483,0.34806427,0.69947785,-0.15886831,0.043459155,-0.101799965,-0.3766989,0.018524865,-0.30562574,0.374371,-0.673951,-0.3344273,0.8351024,0.6499353,0.31148714,-0.27183324,0.05712576,0.11663665,-0.14039487,0.2787092,0.101272054,0.022979084,0.010922573,-0.34586534,0.04134559,0.5284128,-0.31457713,0.061012153,-0.018910887,0.048237823,0.25738078,-0.14411858,-0.100897625,0.08728039,-1.0223566,0.056386173,-0.27653107,-0.44554397,0.3506771,-0.03656798,-0.025321579,0.1109068,0.10943537,-0.18350665,0.3054378,0.25587615,0.5828204,0.11751185,-0.08301496,-0.2776439,0.31011686,0.087637015,-0.10980302,0.09557549,0.13185698,0.0054946244,-0.55937773,0.43814468,-0.18508805,-0.30667767,0.11349874,-0.00957562,-0.03824131,0.5213221,0.075215235,-0.1655257,0.040437575,-0.15701509,-0.42392534,-0.17258798,-0.09380073,0.20513256,0.17772433,-0.19286492,-0.16070226,-0.23889765,-0.10736041,0.18988916,0.077339545,0.3878858,0.2250701,-0.03326444,-0.59462243,-0.036572672,0.36089087,0.58268845,0.011221571,-0.009299108,-0.16861789,-0.18064904,-0.36707407,0.37220138,-0.056459367,0.2685148,0.04353833,-0.15626495,0.75074166,0.059422262,0.9890467,0.080241896,-0.28458542,0.15496223,0.4102296,-0.16843435,-0.25979093,-0.43891856,0.8700202,0.5574516,-0.06953894,-0.024160037,-0.42384687,0.040779628,0.20042598,-0.2432599,-0.09498435,0.052997977,-0.63923585,-0.058940653,0.11367402,0.27530336,-0.07992971,-0.1639949,-0.20820975,0.42119446,0.09655522,0.2335098,-0.5447662,-0.2635932,0.35722446,0.24006759,0.13033149,0.23082092,-0.43767506,0.19808123,-0.53553826,0.21873371,0.10943936,0.081981175,-0.44449267,-0.29118702,0.22788183,0.12120391,0.37867182,-0.3161493,-0.4144593,-0.3737146,0.3042578,-0.016168794,0.11473619,0.52428854,-0.31445488,0.10089306,0.00953647,0.35320574,0.84137946,-0.09435071,-0.023840997,0.32747707,-0.4100568,-0.61768085,0.40885434,-0.3892115,0.19355848,-0.088222064,-0.21255136,-0.53333956,0.116388574,0.16544703,0.04865965,0.05061468,-0.78135777,-0.10142914,0.18211928,-0.26568824,-0.109865144,-0.2527025,0.011914372,0.5877322,-0.12282985,-0.4290305,-0.101425156,0.12104424,-0.1487267,-0.4346529,0.045568552,-0.35018602,0.1825545,-0.29442883,-0.39644024,-0.2537186,0.11124651,-0.44160175,-0.09272896,0.04734775,-0.33086243,0.04327192,-0.2423393,0.256213,0.81171626,-0.18912175,0.22881119,-0.28986248,-0.57988554,-0.86020416,-0.43320528,-0.0486874,0.29703265,-0.06795307,-0.6863394,-0.10927836,-0.32643345,-0.17089723,-0.080144,-0.5044145,0.5452873,0.18870182,0.33913857,-0.13264325,-0.8240994,0.2685534,0.35633895,-0.03106778,-0.4416178,0.3686926,-0.083912954,0.96024275,0.06619579,0.09945665,-0.075628206,-0.6454206,0.07925824,-0.15272827,-0.11943602,-0.5930434,0.14224811 +700,0.38297397,-0.11901475,-0.5297335,-0.1567281,-0.38304713,0.32699713,-0.22520173,0.17315365,0.13475904,-0.3008408,-0.019711224,-0.1263782,-0.11456508,0.4257029,-0.058072954,-0.6193755,-0.06773762,0.1215723,-0.66679466,0.20639388,-0.537642,0.391468,0.12587892,0.33869052,-0.0037873217,0.35075498,0.09849286,-0.104378715,-0.044085275,-0.12678146,-0.17022023,0.18169157,-0.69609004,0.33398262,-0.027712574,-0.20803162,-0.016429828,-0.33228683,-0.2193209,-0.5370995,0.07462843,-0.6275426,0.50772,-0.1869433,-0.37749228,0.09696839,0.07314359,0.30392852,-0.36087862,0.1539468,0.29495552,-0.32518512,-0.11928852,-0.17626844,-0.1320344,-0.41350156,-0.5208639,0.12743394,-0.5855815,-0.10267218,-0.2748406,0.34315544,-0.27844375,0.07395661,-0.21021672,0.27846745,-0.3744333,0.17662399,0.091196455,-0.3609179,0.059640963,-0.36372358,-0.012271634,-0.074755564,0.47086403,-0.09603398,-0.103448644,0.21523316,0.23318996,0.53211844,0.080070175,-0.1370228,-0.3111925,0.021155205,0.023330102,0.56765085,0.03590994,0.056312732,-0.20717396,-0.10108487,0.08030736,0.024841318,-0.1029846,-0.44900855,-0.12626676,-0.13613394,-0.14199796,0.21957932,0.38796434,-0.4300637,-0.2641577,0.47821346,0.5512377,0.038490508,-0.094471574,0.22923239,-0.035278775,-0.44923708,-0.18647923,0.028787728,0.17294589,0.37889522,-0.12727323,0.23976037,0.7185206,-0.053014882,-0.18683107,-0.07397575,-0.19700532,0.18443336,-0.052661873,0.075544156,0.13256608,-0.3552144,0.0031853977,-0.15070592,0.599866,0.045533687,-0.8921815,0.3819073,-0.48100743,0.061087966,-0.054289598,0.6617042,0.57007724,0.6339625,0.04670947,0.8167887,-0.57908183,0.13406242,-0.120657526,-0.33500168,0.28629443,-0.1367005,0.04300036,-0.4412848,0.13993622,0.036276765,-0.11741359,0.07144814,0.32838535,-0.4977059,0.07188548,-0.014738483,0.6644951,-0.4564323,-0.13444258,0.8393653,0.87736833,0.8887309,0.04883575,1.1472569,0.3384726,-0.11288314,-0.012119992,-0.31664804,-0.5707449,0.18907067,0.25398323,0.49469092,0.24698652,0.24466899,0.095696546,0.45048422,-0.1574811,0.09052635,-0.04522168,0.14457214,-0.03409266,-0.07673855,-0.4018836,-0.25138956,0.24893482,0.03735229,-0.0034512195,0.2151996,-0.17780153,0.51471585,0.09943409,1.6238955,0.014085135,0.137359,0.024944434,0.29954317,0.09120782,-0.25810736,-0.3089059,0.31606868,0.25850698,0.016799824,-0.48115936,0.06580081,-0.03277686,-0.39432064,-0.19701378,-0.38496855,-0.16082719,-0.27933395,-0.32020584,-0.32345673,0.14978136,-0.36801574,0.45136887,-2.6371498,-0.15797165,-0.04255027,0.3699285,-0.20440365,-0.3148841,-0.24668743,-0.42622867,0.22236614,0.3698623,0.35815287,-0.5046899,0.5338826,0.27910724,-0.34256145,-0.40567657,-0.5200411,0.0728312,-0.012589016,0.29019952,-0.07125096,-0.15497448,-0.2839335,0.13281408,0.5920618,-0.23302807,0.042261712,0.41340154,0.5065325,0.08523987,0.568587,0.18578447,0.6289822,-0.36651132,-0.10979407,0.48441124,-0.47972283,0.26504645,0.07052762,0.12968704,0.18273766,-0.5672368,-0.95712996,-0.71439457,-0.20832768,1.2880555,-0.34786105,-0.3859054,0.25586095,-0.1262731,-0.21900983,0.10969533,0.4248305,-0.041910846,0.09883637,-0.6626533,-0.03363187,0.038616158,0.42779636,-0.033478655,0.04098583,-0.4480944,0.6117624,-0.23568828,0.5128082,0.38709313,0.1400417,-0.08123089,-0.4050754,0.1596284,0.9366684,0.23551694,0.07436273,-0.10721363,-0.28194267,-0.07711063,-0.23770653,0.026557472,0.50083894,0.65167254,0.10654224,0.18475106,0.36324903,-0.27130514,0.02611007,-0.10658639,-0.26073653,-0.048785765,0.105018124,0.5291275,0.5987703,0.015221357,0.4326236,-0.20190622,0.3225005,-0.022928638,-0.5828071,0.3323412,0.62142956,-0.124691926,-0.16621317,0.415422,0.5134583,-0.22120926,0.35951048,-0.47521725,-0.5200768,0.52145034,-0.23544884,-0.33327442,0.15546764,-0.34035397,0.03122063,-0.8189871,0.2516629,-0.043636374,-0.69434124,-0.31543404,-0.15151851,-3.508855,0.10694488,-0.08504406,-0.08008065,0.0073780078,-0.12728393,0.2634825,-0.43603626,-0.46620846,-0.052777447,0.10577851,0.50629693,-0.03908677,0.12544979,-0.35218722,-0.18156753,-0.25355303,0.3001949,0.21238446,0.2801884,0.09682826,-0.4099312,-0.04654273,-0.3546176,-0.3242199,-0.1202452,-0.6066733,-0.4682948,-0.03350963,-0.46406966,-0.24085984,0.67833096,-0.56131727,0.023546586,-0.23132896,-0.019837903,-0.14538506,0.28624323,0.18480523,0.13110778,0.1991878,-0.10168549,-0.18740891,-0.35247073,0.32226387,0.14657159,0.28350323,0.4493156,-0.0962344,0.039205737,0.5327242,0.580027,-0.11328664,0.6857751,0.15001634,-0.0018548529,0.3069785,-0.3067026,-0.26537305,-0.5377168,-0.23212759,-0.09693825,-0.49810356,-0.4566122,-0.016288374,-0.3812115,-0.80443394,0.45006052,0.10302329,-0.13443194,-0.07045622,0.23038585,0.321616,-0.18850766,0.012842702,-0.23898374,-0.15567705,-0.43861216,-0.42879924,-0.51377267,-0.7191621,0.10184047,1.2236655,-0.21790127,0.00956479,0.048721373,-0.2751506,0.13514556,0.07879793,0.23891743,0.26947358,0.39808777,-0.11340104,-0.74907064,0.4230885,-0.36176863,-0.0638848,-0.52070093,0.15663056,0.6182815,-0.7107844,0.4007422,0.24447937,0.21971162,0.28020072,-0.36727622,-0.26333886,-0.12692456,-0.3010276,0.529511,0.10800027,-0.74880743,0.49803376,0.18016972,-0.32479078,-0.63451284,0.2521735,-0.12449447,-0.25210133,0.26405993,0.26202464,0.07275995,-0.13329802,-0.15633285,0.08385544,-0.47923395,0.31052002,0.30339304,0.03361649,0.40759373,-0.12512158,-0.28291008,-0.5525125,-0.23192786,-0.38275394,-0.31491297,0.008613068,0.056950778,0.109107025,0.1134276,-0.041524563,0.41039133,-0.31517252,0.017058058,-0.21500841,-0.18516943,0.24389145,0.4176124,0.40818328,-0.5806371,0.51234156,0.07679941,0.08283561,-0.08106971,0.015200428,0.49498335,0.1918814,0.28328195,-0.05018315,-0.029357124,0.19883636,0.632189,0.2543373,0.42098117,0.021215558,-0.33616713,0.34288126,0.2096294,0.07913227,-0.09876068,-0.2842749,0.18489094,-0.09924542,0.13354704,0.44903368,0.22316559,0.40095204,-0.14601925,-0.051059216,0.2410629,0.060777444,-0.15004107,-0.8889614,0.32129762,0.2580728,0.63335484,0.43889615,0.10742052,0.21553986,0.7156983,-0.37782153,-0.034541097,0.21848114,-0.07201641,-0.50566715,0.46445322,-0.7392397,0.575061,-0.05039572,-0.043700185,0.33063227,0.14286636,0.40248156,0.94722545,-0.0024119976,0.080570586,-0.0005885256,-0.16890094,-0.11549092,-0.34920135,0.13171946,-0.5543571,-0.20561549,0.68214375,0.40290862,0.36404794,-0.2932475,-0.041663017,0.00040182046,-0.14523736,0.15075143,-0.0674444,-0.0006547655,-0.12033878,-0.58076346,-0.24504802,0.6091772,-0.031398807,0.048635487,0.2078582,-0.41469285,0.3361058,-0.21502063,-0.11400648,-0.16217883,-0.5863017,0.0025981325,-0.2885634,-0.40986356,0.20196459,-0.21361949,0.2968047,0.20313014,0.026213666,-0.38409504,0.3678184,0.14874911,0.9223938,0.1484622,-0.18875666,-0.27422538,0.11937511,0.36103132,-0.31879276,-0.20026936,-0.40992785,0.057933692,-0.55262846,0.26395696,-0.2840419,-0.37777156,0.20800689,-0.058715668,0.09428905,0.50391585,-0.15338795,-0.08066527,0.2338941,-0.048412126,-0.22885658,0.046766542,-0.44452652,0.20392597,0.17552109,-0.16381566,0.05899508,-0.12156701,-0.09098259,0.3512551,0.030184206,0.2316697,0.15192555,-0.056148164,-0.3363683,0.13483237,-0.098829746,0.50158346,0.12377984,0.021098567,-0.19872722,-0.2593875,-0.25375432,0.4567859,-0.22551608,0.119161405,0.045850437,-0.45917517,0.68877804,0.15703215,1.0656127,-0.0029842514,-0.255765,0.293572,0.44818118,0.16392598,0.121349946,-0.39244762,0.9146751,0.5972648,-0.23251761,-0.13748981,-0.36512086,-0.4382944,0.18141492,-0.3005713,-0.26266766,-0.24579771,-0.73150545,-0.21828482,0.21720779,0.10734335,0.1439438,0.017581854,0.012401862,0.10654373,0.09283214,0.2317673,-0.4478099,-0.044180874,0.40715113,0.22352754,-0.06408657,0.055585522,-0.40374157,0.50746137,-0.64777917,0.13461766,-0.37471384,0.032652266,-0.11548454,-0.21087585,0.19240756,0.09614546,0.2761604,-0.22548996,-0.36187217,-0.23426792,0.5809843,0.22589776,0.3737099,0.8392066,-0.24126934,-0.07200172,0.0863939,0.3691493,0.9508634,-0.16069625,-0.040952466,0.49557087,-0.19648139,-0.40464973,0.163416,-0.38206956,-0.045162234,-0.047224384,-0.3487649,-0.23138714,0.35475636,0.15605631,0.039685786,-0.012910669,-0.55474913,0.042999856,0.37484017,-0.2613835,-0.36735612,-0.364997,0.30089924,0.7647233,-0.33955044,-0.3421808,0.11443139,0.27224973,-0.29627922,-0.45324564,0.06670568,-0.3134862,0.26612732,0.14032096,-0.3481784,-0.099337526,0.20993027,-0.35855347,0.04797786,0.35901147,-0.32034907,0.07287647,-0.3434484,0.031077249,0.83700037,0.09096726,0.19087812,-0.56072664,-0.4630402,-1.0064573,-0.25221342,0.2876094,0.19877096,-0.12718007,-0.4389861,-0.12966384,-0.21812014,-0.2308971,0.13107468,-0.6649315,0.40048426,0.08241449,0.3732863,-0.15123466,-1.0595045,0.00828141,0.24711125,-0.32308728,-0.54655844,0.4904151,-0.15482304,0.66699743,0.13591751,0.12114533,0.24472828,-0.6332813,0.35193974,-0.3607678,-0.04715148,-0.6446249,0.013071219 +701,0.35902724,0.014307332,-0.552769,-0.24525578,-0.21466878,0.14539021,-0.00038337708,0.13369599,0.3418349,-0.23526439,0.012772886,-0.19282836,-0.06007326,0.320908,-0.027927483,-0.7999412,0.012331597,0.13751419,-0.6240381,0.29588583,-0.46371275,0.37628117,0.08048273,0.34064025,-0.07168169,0.3528362,0.1460479,-0.040972244,-0.015015451,0.24377565,-0.15523832,0.4008418,-0.47036102,-0.010036623,0.077701725,-0.19046974,-0.062313534,-0.1398816,-0.3943275,-0.6067628,0.40762872,-0.7329472,0.57605493,0.056518793,-0.34449294,0.093806,-0.031154899,0.1707962,-0.3614921,0.18160218,0.19835024,-0.42321938,0.0017944734,-0.20176545,-0.34174487,-0.48181972,-0.61719716,0.010291195,-0.5890778,-0.1291729,-0.3867577,0.21933489,-0.37821472,-0.05418959,-0.2481265,0.4718302,-0.41558537,-0.037796482,0.30390173,-0.27290183,0.08397531,-0.33380842,-0.12421873,-0.117820665,0.1655407,0.09288066,-0.15695445,0.18119174,0.22890984,0.6673114,0.1309148,-0.29627874,-0.31077754,0.06545638,0.17977487,0.4931348,-0.1727998,-0.023113318,-0.1634566,0.0199404,0.05409594,0.18647008,0.02867585,-0.44453558,-0.013075964,0.16083114,-0.16293383,0.30254802,0.50114197,-0.38886273,-0.35709414,0.39101753,0.60647935,-0.053862974,-0.22789812,0.20021804,-0.09532539,-0.51519394,-0.22579572,0.22555457,-0.13841525,0.4416855,-0.13750812,0.043369096,0.81956077,-0.04982497,-0.09078487,-0.15741786,-0.031230653,0.053106047,-0.24769284,0.1976817,0.051727258,-0.36909968,0.03055751,-0.15664954,0.6293369,0.120020896,-0.7665573,0.36463764,-0.43922198,0.2722643,-0.19971503,0.6743679,0.81138176,0.27765444,0.25959834,1.008182,-0.6722642,0.012895632,0.038557578,-0.5297272,0.16154371,-0.07586579,0.015783977,-0.5436708,0.0021486084,-0.05752654,-0.0950188,0.026295569,0.2820771,-0.48424876,-0.077359535,0.10526252,0.7898903,-0.39581493,-0.046590727,0.59603435,0.9345469,0.7928911,0.028106613,1.2203257,0.36410674,-0.2501927,0.266545,-0.6353189,-0.5979413,0.072955005,0.30088148,0.34113923,0.36951447,0.16585486,0.20752423,0.53940517,-0.19210714,0.1634584,-0.14872281,0.16252628,0.15720414,-0.11339356,-0.3610202,-0.056153603,0.08816745,0.052188482,-0.010654183,0.29926366,-0.20333236,0.3752176,0.03744111,1.4376653,0.071369745,0.013177981,-0.00932701,0.44278902,0.21402553,-0.09098606,-0.10801354,0.4613468,0.3270859,-0.12014947,-0.4840632,-0.022271313,-0.32880458,-0.39123005,-0.2506538,-0.35852292,0.09541778,-0.07635892,-0.45430824,-0.04874928,0.13809238,-0.4713786,0.4311766,-2.511801,-0.24115425,-0.06829734,0.32279506,-0.08073168,-0.285792,-0.27830508,-0.3540324,0.12614484,0.4435391,0.31036323,-0.6468786,0.4375316,0.29385525,-0.26568404,-0.057401035,-0.6239767,0.033818703,-0.14465924,0.3639335,0.030776305,-0.022768853,-0.20184407,0.214221,0.61673576,0.0109882,-0.18486357,0.23755908,0.49438593,-0.014738449,0.5527382,0.18204361,0.61730045,-0.10666873,-0.27001044,0.38587007,-0.35152644,0.19735463,0.08353929,0.1301743,0.26159313,-0.32764402,-0.9451285,-0.547572,-0.24802813,1.2516583,-0.43040007,-0.29706797,0.44404775,-0.18775311,-0.2505732,-0.0718569,0.42676684,-0.1821511,-0.01320647,-0.71866363,0.08632912,-0.014693125,0.114401355,-0.11806648,0.022904182,-0.2386408,0.669186,-0.24666776,0.42158425,0.2922067,0.20466174,-0.077569865,-0.3839059,0.119936,0.82282853,0.2377208,0.10630536,-0.015900172,-0.20927788,-0.028608743,-0.19288747,0.14820448,0.50135285,0.6870105,-0.023867518,0.11216261,0.43268624,-0.09469588,-0.09473293,-0.14875866,-0.3810136,0.064849086,0.031268213,0.420332,0.5388031,-0.21790634,0.3457785,-0.06950581,0.11194351,0.032491494,-0.540523,0.44553173,0.93421006,-0.20170236,-0.26136258,0.50598884,0.3360958,-0.519448,0.33150494,-0.5533965,-0.13353075,0.625949,-0.11934029,-0.32908306,0.17239238,-0.3221955,0.06525445,-0.80158585,0.17136,0.12945895,-0.5142671,-0.4007146,-0.20267805,-4.2683196,0.20555793,-0.30396944,-0.0058311066,-0.002412041,-0.06405371,0.22609052,-0.45134556,-0.40048265,0.054762147,0.087743774,0.35464317,-0.10472742,0.09078921,-0.3171922,-0.0473451,-0.22356786,0.29014072,0.04448817,0.33847058,0.107252926,-0.46422967,0.120752454,-0.3489877,-0.4937598,-0.05722107,-0.53030986,-0.47535673,-0.13182408,-0.54920477,-0.28399912,0.6736505,-0.25108063,-0.099740855,-0.4497381,0.094642,-0.1793848,0.35604864,0.16552998,0.20507075,0.029366931,-0.00012088418,-0.24435237,-0.37705368,0.29279456,0.0012047251,0.28060308,0.42982626,0.013498697,0.054872945,0.6217517,0.5908772,-0.08517089,0.6765999,0.41297576,-0.120860204,0.3149773,-0.33277386,-0.16087681,-0.8420849,-0.48492968,-0.16225226,-0.52184486,-0.54428077,-0.22484387,-0.43264997,-0.8160587,0.40974715,0.10167252,0.1684324,-0.07745215,0.33672157,0.4797637,-0.06132086,-0.07422844,-0.16691509,-0.3565094,-0.55231816,-0.4009387,-0.56911343,-0.5879336,0.24289536,1.0685622,-0.19366333,-0.15281974,-0.15438445,-0.2894195,-0.0014724369,0.19799653,0.24687523,0.32207137,0.43557295,-0.17171535,-0.59761745,0.33565372,-0.25620577,0.016211966,-0.8124621,-0.047544148,0.4145568,-0.66355693,0.7677518,0.062302094,0.22459303,0.32339293,-0.49996266,-0.40386364,0.045393027,-0.20024149,0.64997727,0.15254335,-0.63487947,0.49537715,0.18098399,-0.19256891,-0.53807425,0.27335554,-0.17092994,-0.13121904,0.17585403,0.3174175,-0.009460875,-0.079493016,-0.03767085,0.15320657,-0.4088075,0.381964,0.46132654,0.019681076,0.35425404,-0.021056572,-0.26944837,-0.66344845,-0.14673088,-0.44442147,-0.18167622,-0.029156374,0.12427548,0.1628591,0.032815654,-0.048088755,0.44278663,-0.22461002,0.13081613,-0.00051786104,-0.25898907,0.34012693,0.4573973,0.19909407,-0.5137421,0.56178206,0.03464389,-0.09535083,-0.0061616194,0.058349054,0.5371798,0.19692917,0.29165056,-0.07008072,-0.10297224,0.28295764,0.70284176,0.14769289,0.33671921,0.10001555,-0.22585087,0.4226575,0.21979414,0.008937913,-0.1646206,-0.27028647,-0.034260314,0.060884405,0.2803178,0.3581794,0.21728602,0.34976667,-0.08578385,-0.2087269,0.21835227,0.26598924,-0.048827816,-1.0786278,0.16784103,0.23905869,0.6658233,0.48011738,0.0036180813,-0.103075944,0.46361706,-0.38954356,0.034757845,0.4002471,-0.25924888,-0.5271394,0.45696086,-0.561035,0.47048348,-0.13726307,-0.022955526,0.23414157,0.32446787,0.313996,0.9417175,-0.113401085,-0.027597459,-0.07704127,-0.18181057,0.06350816,-0.23083301,0.07907859,-0.5268534,-0.33975327,0.535258,0.4778647,0.39803272,-0.32744515,-0.13872576,0.008555128,-0.16276246,0.028811578,-0.09569033,0.003681012,-0.10033953,-0.6216346,-0.3425464,0.4860054,-0.124693826,0.017083477,0.062763184,-0.29871172,0.27491018,-0.18902801,-0.20710939,-0.10414658,-0.5489651,-0.033984024,-0.12334275,-0.5773442,0.3802751,-0.34458977,0.36029133,0.12264525,0.020446133,-0.4704316,0.35428485,0.012188069,0.8342515,0.018395582,-0.092446946,-0.46306458,0.12556845,0.26408863,-0.25218993,-0.07959594,-0.47850525,0.007462009,-0.52530855,0.51959985,-0.19044434,-0.3263582,-0.068009146,-0.21885449,-0.040335704,0.49758187,-0.31006497,-0.2950839,0.10838976,-0.011494366,-0.28180033,-0.023418497,-0.3455293,0.3614724,-0.07285497,-0.12475454,0.0662915,-0.13140143,-0.06461633,0.46418506,0.13893366,0.18025117,0.16402096,-0.07489826,-0.36272565,0.0010309478,0.042908352,0.3433232,0.07079336,-0.026959987,-0.1848465,-0.3741836,-0.36946163,0.12280004,-0.16108519,0.2547422,0.14216511,-0.5472843,0.6920875,0.18809503,1.2737421,0.13326111,-0.24176201,0.059660707,0.58528596,0.1608078,0.22671695,-0.31578958,0.69387585,0.6820286,-0.068688475,-0.25024942,-0.37153327,-0.10659849,0.22667168,-0.24500042,-0.082037784,-0.15050046,-0.79854697,-0.28646132,0.11141828,0.19365409,0.3349435,0.047706485,-0.04040695,0.040169008,0.14289255,0.4012209,-0.3274669,-0.19834706,0.3052005,0.19464381,-0.04278985,0.17284101,-0.28644297,0.4823455,-0.48426196,0.1075151,-0.26371464,0.11173437,-0.13072453,-0.2105512,0.1918114,-0.08225208,0.36537263,-0.23669395,-0.17666548,-0.3078789,0.6994003,0.14293966,0.28785232,0.7847399,-0.22993803,-0.03752679,0.18687353,0.4693585,1.3794725,-0.072283044,0.09694384,0.34540835,-0.16840668,-0.5954414,0.18655245,-0.2761761,0.011306226,-0.19850641,-0.41592312,-0.31956986,0.29731655,0.000527668,-0.03169466,0.20121983,-0.427043,-0.26020196,0.31962076,-0.32372558,-0.15044855,-0.31905353,0.2585107,0.7125938,-0.46525273,-0.42450315,0.21909936,0.20108952,-0.2583909,-0.48965752,0.0076257386,-0.28709194,0.41362697,0.25335267,-0.3870969,0.07371522,0.3128942,-0.42190498,0.105052784,0.45105615,-0.3040544,0.15336211,-0.040922213,-0.29060745,1.0718662,0.031056453,0.17654042,-0.68960166,-0.48392355,-1.0584022,-0.29830724,0.47599214,0.11901689,-0.072902955,-0.46734902,-0.16319104,-0.06876647,-0.12364184,0.03290637,-0.55282795,0.3921805,0.011452913,0.4691199,-0.07008458,-0.88581604,-0.13287146,0.14090344,-0.20135571,-0.61511785,0.61718243,-0.13172048,0.7053767,0.09578631,0.078156255,0.26780567,-0.47189465,0.22092867,-0.38716882,-0.12999015,-0.71668017,-0.040503982 +702,0.5468522,-0.3404453,-0.46790263,-0.18424898,-0.39009723,-0.07683622,-0.16318685,0.3335892,0.34566903,-0.2946072,-0.09867124,-0.18774134,0.0915016,0.50241065,-0.08491126,-0.86816716,0.091292694,0.23280536,-0.7915769,0.67255366,-0.47226638,0.3830262,0.08436782,0.26214507,0.10812988,0.3463412,0.294227,-0.09580738,0.053481065,-0.20554422,-0.08546469,-0.039940182,-0.8036667,0.37602702,-0.098921604,-0.35175863,0.12615098,-0.29239818,-0.393276,-0.67253894,0.25636628,-0.8482374,0.48971507,0.13789749,-0.37160376,0.1958831,-0.049233068,0.31027833,-0.37157786,0.16262402,0.19763058,0.03296477,0.051636767,-0.44022855,-0.14723442,-0.546315,-0.51354223,-0.118189484,-0.63129586,-0.3175631,-0.43670428,0.03667633,-0.30348217,-0.051560715,-0.11016779,0.32307538,-0.39748192,0.25193423,0.17942959,-0.24652252,0.27941436,-0.3344789,-0.08032431,-0.13908285,0.0453411,0.027763821,-0.17000347,0.43815717,0.07709576,0.493197,0.087858826,-0.16912067,-0.27879784,0.12327281,0.12839217,0.4564333,-0.069648355,-0.3988376,-0.22376728,-0.17981774,0.113500945,0.060630973,0.26970407,-0.5212137,0.01926784,-0.055273566,-0.27532974,0.44980496,0.39741182,-0.4570041,-0.24563313,0.28933594,0.35348102,0.08863568,-0.1425866,0.0095477905,0.049742464,-0.5215938,-0.3671529,0.019402536,-0.2673202,0.5119328,-0.21688014,0.23402292,0.8286949,-0.22972998,-0.026855767,0.12590875,0.1026931,-0.16785674,-0.20185882,-0.20529057,0.27070034,-0.63472706,-0.18170674,-0.34960458,0.82649916,0.06712377,-0.67394876,0.392892,-0.6226904,0.17001514,-0.28612158,0.49346477,0.7498607,0.554652,0.006216908,0.6332271,-0.6055403,0.06253118,-0.087421596,-0.4291855,0.5262875,-0.21405517,0.104354024,-0.45753428,-0.22277437,-0.013197682,-0.20861058,-0.004887226,0.5490169,-0.53189963,-0.14137276,-0.001809933,0.9011723,-0.34137747,0.08122611,0.505827,1.1447405,0.89412403,0.023336025,1.3060204,0.2593558,-0.24193062,0.2615633,-0.15243925,-0.9599131,0.23224331,0.35241207,-0.07284528,0.40049192,0.023162263,0.028672451,0.32668477,-0.27011922,0.012270689,-0.18053056,0.37144965,-0.22967547,-0.23229083,-0.3319577,-0.29781362,-0.03673656,0.19050537,-0.15196703,0.45491228,-0.26260552,0.19142757,0.04751637,1.7843632,0.09860241,0.064280495,-0.1577454,0.6522491,0.29371047,-0.17230736,-0.06863568,0.384071,0.21378246,0.23762174,-0.6211511,0.120316096,-0.1088083,-0.52965295,-0.15010233,-0.43903625,-0.05336565,-0.23609807,-0.5226044,-0.117214724,-0.0009450479,-0.14219846,0.31403938,-2.2659786,-0.09225405,-0.08044202,0.49030885,-0.25952563,-0.15708742,0.032211013,-0.3885555,0.10246772,0.3790617,0.5666142,-0.70460075,0.4983962,0.6596981,-0.50431436,0.038148057,-0.4414894,-0.0778476,-0.15193094,0.60552126,0.043232158,-0.008134999,-0.08281528,0.272584,0.4518038,0.031356044,0.2951778,0.27467412,0.5076597,-0.11542355,0.50006795,0.096161865,0.33137643,-0.2973251,-0.13304886,0.27237892,-0.2061769,0.12796998,-0.03626618,0.07696832,0.43600017,-0.43997338,-1.0250995,-0.55185837,0.07104385,1.0339489,-0.5034766,-0.51538694,0.3084256,-0.20548764,-0.19832349,-0.05560758,0.30926067,-0.06360504,0.117075205,-0.8355556,0.14671625,-0.10656543,0.1937478,0.12601177,-0.14157091,-0.37009183,0.8479958,0.10068963,0.40394124,0.03937798,0.17239565,-0.27810583,-0.39859352,0.35808343,1.0089904,0.32660386,0.18697701,-0.15979202,-0.1975133,-0.3509146,0.009010348,0.06506782,0.531612,0.7081421,-0.19459534,0.1749886,0.37661475,-0.19845547,0.02867692,-0.23054188,-0.42748335,-0.03683275,0.09627983,0.48457,0.9862204,-0.12754713,0.26197794,-0.052435935,0.43647158,-0.16402902,-0.62426513,0.56713676,0.8479271,0.009087812,-0.09974215,0.58218616,0.666069,-0.47297785,0.6147049,-0.63387513,-0.47883874,0.3491234,-0.057196315,-0.40405244,0.15798745,-0.30191657,0.21352538,-0.88046265,0.5514046,-0.2775136,-0.269549,-0.35390452,-0.21438928,-3.9211152,0.28785247,-0.1445368,-0.19032282,-0.06145023,0.12921259,0.38916752,-0.7142326,-0.3491949,0.085927926,-0.004585017,0.69410753,0.05168527,0.24783531,-0.23907462,-0.3351018,-0.24053578,0.29122546,-0.032631215,0.1874478,0.0041994127,-0.68686455,-0.30954525,-0.08197499,-0.347069,0.14576131,-0.68489033,-0.5069397,-0.17021026,-0.6535771,-0.2736023,0.6770723,0.10957604,-0.015838908,-0.18444228,-0.08056545,-0.22266744,0.30540723,0.07783867,-0.05568038,0.07148382,0.03260829,-0.15223579,-0.33555168,0.24291252,-0.023858856,0.6832843,0.2641811,-0.26147687,-0.049627826,0.76281965,0.40022343,-0.097362764,0.7790151,0.32381475,-0.14919223,0.38295308,-0.060819816,-0.32425764,-0.6769936,-0.39855766,-0.30746675,-0.3144855,-0.1600892,0.15275317,-0.3822958,-0.6773241,0.6660311,0.14758143,0.21917659,0.0062885988,0.055871964,0.37240413,-0.14111117,-0.26112828,-0.12730494,-0.31487578,-0.5688769,-0.19816126,-0.83313376,-0.39621344,0.45773107,0.87224525,-0.20066155,0.029645367,0.28513983,-0.0647482,0.17573263,0.10626392,0.028622156,0.021878053,0.4238003,-0.0055593033,-0.83420295,0.691424,0.0019034093,0.13732082,-0.48616496,0.10999658,0.6575382,-0.7216448,0.45445433,0.26378,0.19841506,0.24171497,-0.3474801,-0.20330618,0.053435076,-0.19525315,0.34725928,0.28092104,-1.0026468,0.26942945,0.31477463,-0.53559166,-0.5560623,0.61914647,-0.15397516,-0.25079846,-0.31034473,0.24580437,0.050418075,0.06303661,-0.2591804,0.3481131,-0.60752386,0.28298107,0.3282711,0.05733305,0.40164375,0.021694062,-0.10919173,-0.69449943,0.13322346,-0.42724296,-0.44049948,0.24562693,-0.045972034,-0.14173931,0.29986,0.27619007,0.31183904,-0.16727117,0.08663201,0.09893299,-0.38321438,0.76135135,0.477203,0.61719424,-0.50829893,0.59338003,0.12570082,-0.06904536,0.024879206,0.004058491,0.38996938,0.114028044,0.4788407,0.26703697,-0.14614363,0.47924498,0.8329206,0.19525805,0.5222499,0.16572694,-0.055555876,0.24287258,0.09709425,0.1334447,-0.001939508,-0.6104305,-0.039121117,0.10514916,0.27807713,0.5184977,0.08568854,0.27756146,-0.070136674,-0.48662385,0.090167,0.23905605,-0.0487751,-1.4909465,0.080281466,0.28449365,0.59502256,0.68820083,0.010223248,0.0034945228,0.681015,-0.04901966,0.12457094,0.17335017,-0.00051345606,-0.5685694,0.74028456,-0.57842565,0.3673109,-0.13587402,-0.07271352,0.09177944,-0.051169146,0.27594188,0.8253839,-0.021617074,-0.024144493,-0.043235257,-0.5264858,-0.06816621,-0.5155361,0.19935851,-0.5613401,-0.37457266,0.53977585,0.5427174,0.2587384,-0.17274685,0.021505482,-0.06363645,-0.20767374,0.25192624,0.020045714,-0.10669598,-0.03803068,-0.7974163,-0.18170029,0.64238125,-0.029238343,0.14885053,-0.13362509,-0.12597126,0.29992768,-0.35601556,-0.090500645,0.03622747,-0.752474,0.24269108,-0.34599927,-0.29211047,0.5844665,0.12034777,0.12817463,0.18004194,-0.008317045,-0.37542474,0.23482396,0.22629207,0.55986685,0.04046885,-0.16814397,-0.30984476,0.076178715,0.014943928,-0.30624238,0.07965458,-0.21264935,-0.024217801,-0.68036747,0.3463229,-0.00572809,-0.37042668,-0.03431542,-0.07454886,0.15440637,0.5456018,-0.060645558,-0.30386412,-0.10805502,0.059653815,-0.22829407,-0.27259144,-0.1662731,0.34475958,0.114433855,-0.028781867,-0.13894178,-0.1483262,0.21564125,0.42936373,-0.060198583,0.33804566,0.42022246,0.114937015,-0.37403682,0.03947483,0.39823312,0.532374,-0.02552046,0.16860558,-0.28076324,-0.38054693,-0.43110484,0.068578005,-0.19157149,0.42201415,0.08025733,-0.47659448,0.8853597,0.09256587,1.2401805,-0.058562193,-0.27240503,0.33831665,0.5440865,0.090035446,-0.038083427,-0.458792,1.0522208,0.68790036,-0.37851936,-0.2699084,-0.5666934,-0.30368316,0.081181146,-0.43449372,-0.224169,0.16899224,-0.8937407,-0.14423154,0.13464566,0.43587285,0.0425846,-0.09405398,0.23194315,0.30411407,0.07766961,0.17051898,-0.66523796,-0.35125276,0.17456983,0.31169805,0.11913662,0.15965901,-0.54680634,0.38395083,-0.5531477,0.23221731,-0.22512718,0.093736194,-0.31407493,-0.4480446,0.114351295,0.03857726,0.3187328,-0.5034022,-0.49037132,-0.25885606,0.5838339,0.09751093,0.25525537,0.857827,-0.30037445,-0.009062187,-0.04294739,0.45526755,1.0653802,-0.10847103,-0.21021494,0.44880217,-0.53386486,-0.95419544,0.21367854,-0.22089201,0.26373273,-0.018708505,-0.46865904,-0.6049946,0.37904575,-0.07472196,-0.02360021,0.1968609,-0.6913677,-0.13108467,0.19390275,-0.29341707,-0.37330854,-0.23931436,0.17438616,0.5978313,-0.4044402,-0.22055167,0.12130969,0.20348185,-0.19859575,-0.4960863,-0.40977895,-0.39323863,0.29791394,0.09163916,-0.3903832,-0.05057416,-0.0045723156,-0.33861458,0.15292396,0.22243828,-0.31850997,0.19820362,-0.37494043,-0.027012007,0.9662413,-0.08267262,-0.1130626,-0.5988845,-0.6282594,-0.9818661,-0.41737863,0.41304275,0.14980368,-0.058559027,-0.6136546,-0.03921774,-0.012267495,0.016212143,-0.081865005,-0.45272705,0.45080414,0.064564764,0.43288994,0.123920895,-1.0721836,0.1564422,0.42492083,-0.16434726,-0.8517735,0.62946326,-0.4031699,0.89514154,0.07719541,0.06703095,0.24029565,-0.58110607,-0.048368953,-0.25279716,-0.2295198,-0.50308055,0.20695871 +703,0.6278226,-0.24652337,-0.86753464,-0.16351481,-0.39615697,-0.16061448,-0.26639155,0.70694196,0.2426006,-0.5105067,-0.07532633,-0.22102544,0.009484951,0.37416792,-0.33002558,-0.5868072,0.057788048,0.2293202,-0.46719787,0.3779314,-0.4458798,0.32719177,-0.06327882,0.6093114,0.41806778,0.17352083,-0.02633396,0.017196119,-0.1844629,-0.3723371,-0.01933996,0.31259987,-0.61147016,-0.12946682,-0.38512823,-0.691233,0.016145673,-0.56255835,-0.35204294,-0.9807671,0.32504076,-0.94761616,0.6788781,-0.07798934,-0.4298099,-0.049721126,0.27442676,0.5502451,-0.114354596,0.04841016,0.22490497,-0.059908714,-0.009300232,-0.056209367,-0.39361715,-0.5607234,-0.71362495,0.031798363,-0.5896815,-0.18188722,-0.17641978,0.20194547,-0.3990629,0.08640273,-0.036562394,0.35513535,-0.43331823,-0.04277116,0.40030575,0.0032783172,0.46369413,-0.56559527,-0.21253633,-0.20798193,0.16808428,-0.29109883,-0.32495475,0.36942926,0.17668393,0.42789656,0.025931215,-0.331595,-0.45822445,0.051641982,-0.0041577048,0.45748192,-0.20127062,-0.53472847,-0.23829405,0.08539053,0.4955011,0.547713,0.33129758,-0.011329161,-0.15378283,0.060275044,-0.2037797,0.54830927,0.5418027,-0.22341397,-0.072958514,0.16878518,0.53372425,0.30213472,-0.19051245,0.20180406,0.016818164,-0.801416,-0.24578984,0.01014878,-0.07893867,0.6510005,-0.21851332,0.20905232,0.7767262,-0.27620903,0.051853653,0.13540904,-0.0009817694,-0.15262449,-0.38437414,-0.4521893,0.25879398,-0.6522258,0.21571068,-0.3528239,0.6911659,0.17783153,-0.72794634,0.22606936,-0.7183007,0.110883966,-0.1357352,0.50096846,0.5369052,0.59843266,0.43097037,0.7207696,-0.3831637,0.15928528,-0.06696876,-0.2829727,0.173595,-0.3243023,-0.052568663,-0.36995572,-0.057991523,-0.25706413,-0.14610447,0.17612478,0.5246495,-0.62386376,-0.19823907,0.19656841,0.89411986,-0.25597328,-0.038046304,1.0421827,0.88444954,1.179562,-0.04505774,1.223368,0.16157253,-0.25182888,0.13742414,0.029688554,-0.8682565,0.4320566,0.21069768,-0.39815232,0.39109573,-0.07889917,-0.06844345,0.506948,-0.39634603,0.07015018,-0.089714155,0.15039687,0.07821203,-0.35484666,-0.50640196,-0.18157098,-0.14948659,-0.04660556,-0.040958803,0.3016023,-0.10592417,0.54113376,-0.120141365,1.6479479,-0.04812514,-0.020904666,0.054002617,0.63265723,0.30107266,-0.11710056,-0.060931463,0.16264068,0.33865452,0.26255256,-0.50310236,-0.0049475604,-0.30504984,-0.3452364,-0.18786505,-0.34308103,-0.1821123,-0.3347849,-0.6420333,-0.187492,-0.27912787,0.0018952148,0.23359391,-2.3271995,-0.22187842,0.041333113,0.36427027,-0.18047084,-0.50113314,-0.05211743,-0.47989413,0.6282317,0.20778668,0.6236997,-0.65693825,0.5425931,0.57466894,-0.5304423,0.09761735,-0.85191405,-0.2583063,0.0054039573,0.17771915,-0.062051963,-0.04218459,0.09235704,0.14402911,0.58141416,0.037098072,0.16328406,0.16282283,0.5176167,-0.14596388,0.7561377,-0.07065606,0.51873094,-0.46219674,-0.16761167,0.3885646,-0.56040925,0.20963347,0.053683188,0.067637816,0.5900759,-0.6171592,-1.2192641,-0.6306998,-0.00974851,1.018185,0.0012331988,-0.5091565,0.35341066,-0.6284129,-0.26133445,-0.15625106,0.4377902,0.015401376,0.14080533,-0.7734911,-0.30772144,-0.20317258,0.064663246,-0.039642725,0.00076285854,-0.3846639,0.5229911,-0.036957927,0.36072955,0.46162063,0.066170566,-0.38997468,-0.63630706,0.066658296,0.8921527,0.43301484,0.25443015,-0.5134615,-0.23248313,-0.6433464,0.08681924,0.070898876,0.5136085,0.9874217,-0.2896773,0.29099828,0.24510185,0.03582507,0.040153746,-0.19647631,-0.32241008,-0.23214464,0.030761344,0.5969831,0.7862124,-0.1283782,0.52848774,0.0720789,0.4496112,-0.25079653,-0.51922977,0.41086945,0.97382396,-0.26420715,-0.36138105,0.7412219,0.40932092,-0.2949215,0.5379152,-0.56277937,-0.33050388,0.4758155,0.018602878,-0.46912646,0.3401695,-0.35943264,0.22672309,-1.1265358,0.17052677,-0.41452974,-0.35476547,-0.63514054,-0.23857856,-2.639904,0.26452222,-0.16759416,-0.08649974,-0.1304127,-0.3354225,0.24969332,-0.6528853,-1.0303261,0.08647919,0.064157225,0.9429775,-0.24040283,0.10834419,-0.23810254,-0.47316146,-0.6114353,0.1843325,0.4228408,0.40519434,0.005442696,-0.5853448,-0.20612742,-0.25814864,-0.65755403,0.010644155,-0.68959624,-0.57225883,-0.20184088,-0.6053124,-0.22595611,0.7813512,-0.038725268,-0.07963203,-0.021706391,0.01339273,0.062144835,0.35839507,0.14144358,0.10767073,0.061413713,-0.086071506,0.18504652,-0.1242251,0.120625235,0.08675812,0.39900407,0.18587269,-0.15967034,0.28385708,0.61537653,0.97469467,-0.22518624,1.017146,0.41025022,-0.12263213,0.37353134,-0.32116,-0.54144126,-0.5711117,-0.12115234,0.021783292,-0.52799803,-0.3898625,0.07355434,-0.48483422,-0.8287676,0.7836782,-0.046568792,0.16839148,-0.117319405,0.3272848,0.42411628,-0.22306763,-0.24406824,-0.071584694,-0.10008587,-0.59219253,-0.24784775,-0.6300208,-0.59282696,-0.11704322,1.3640788,-0.29884857,0.16658814,0.28780732,-0.13274732,0.06424581,0.29826227,-0.109413676,-0.032865316,0.5025387,0.05041682,-0.6606107,0.4231768,-0.13649954,-0.18862788,-0.5698744,0.19930159,0.67965287,-0.6720155,0.48920602,0.534896,-0.040714234,-0.19653542,-0.7770515,-0.055976212,0.052945577,-0.12753119,0.6216459,0.24713561,-0.74048054,0.43388197,0.5517799,-0.3643777,-0.64781106,0.6389803,-0.032027364,-0.35289845,-0.11028025,0.38457245,0.34035248,0.037915833,-0.22711244,0.3046628,-0.47859457,0.17203319,0.41375658,-0.11969086,0.29586488,-0.15457387,-0.22165717,-0.8344824,0.10834515,-0.5152166,-0.30188012,0.33587974,-0.2078661,-0.09813171,0.33787945,0.22536385,0.29779157,-0.30636787,0.09277164,-0.37004235,-0.35886368,0.5262945,0.5499841,0.6460834,-0.63796335,0.6830135,0.042969696,-0.20198855,0.20458661,0.043614004,0.50908965,-0.20384142,0.50270075,0.14627568,-0.17522301,0.018714858,0.8582633,0.15307185,0.5380506,0.17321207,-0.050507102,0.025460958,0.26175597,0.111870944,0.08598133,-0.5970551,0.06770869,-0.39516068,0.1222134,0.6073069,0.0061144745,0.27248865,-0.032863114,-0.2629014,-0.011306301,0.078397475,-0.1657406,-1.6637238,0.49627763,0.33014035,0.9567889,0.34999517,0.21470879,0.06754649,0.60755444,-0.26304454,0.08481396,0.5085921,0.24488424,-0.5246872,0.70998544,-0.708807,0.65296507,0.06278794,0.11647241,0.035338186,0.013430566,0.83599436,0.79549915,-0.11027842,0.09807398,0.12145493,-0.28771183,0.29074362,-0.48451433,-0.26015002,-0.42306975,-0.07942691,0.8982352,0.5020424,0.25745586,-0.23357202,0.014347191,0.22234845,-0.18095085,0.21728542,-0.062017787,0.055678222,-0.26472965,-0.42814097,-0.1649627,0.5304231,-0.050582033,0.23329644,-0.14997776,-0.23411928,0.262401,0.004119047,0.11572487,-0.14117841,-0.8791267,-0.10824449,-0.6661004,-0.4538017,0.46041086,-0.026347408,0.13813497,0.3379186,0.16887853,-0.33641553,0.52011645,-0.24548396,0.6644283,-0.29385018,-0.123025335,-0.27097228,0.4014332,0.34320143,-0.35872445,-0.113947354,-0.24610989,0.23598692,-0.40987292,0.40290564,-0.03146183,-0.41280404,-0.037639894,-0.01243404,-0.002216816,0.42524937,-0.23687923,-0.07194721,0.18551473,-0.049840193,-0.24663426,-0.49870148,-0.06082651,0.30485147,0.25494316,-0.13949683,-0.16185634,-0.052369673,0.13572028,0.61429274,-0.22399876,0.4007067,0.3901072,0.06413198,-0.42942983,-0.16730905,0.13594548,0.762149,-0.22021064,-0.19251844,-0.5512441,-0.41412717,-0.37121874,0.40816876,-0.15323506,0.42141533,0.18727414,-0.17927934,1.0042266,0.24587381,1.4071983,-0.10839568,-0.53458863,0.20091034,0.5677935,-0.14266372,-0.18532038,-0.43183336,1.1224434,0.5033338,-0.4228613,-0.1244903,-0.4048849,0.08045776,0.14259394,-0.29655328,-0.22196515,-0.14686587,-0.45190805,-0.08339083,0.3639405,0.39435324,0.24810359,-0.3700152,0.23405369,0.3754959,0.055102173,0.24130094,-0.4775956,-0.26378882,0.2086779,0.39140075,-0.09405351,0.04377688,-0.51252854,0.23865774,-0.4369877,0.05497024,-0.32601306,0.25600153,-0.15502606,-0.5548641,0.14713793,-0.09806323,0.22192442,-0.3667622,-0.30416885,-0.21267177,0.39070374,0.29753837,0.20389234,0.58086926,-0.36682177,0.029359937,-0.061875217,0.51893187,1.171872,-0.15630773,-0.21946847,0.42325273,-0.24568006,-0.6824713,0.3983294,-0.5647283,0.34555158,-0.014943208,-0.2777249,-0.816004,0.2821877,0.25286692,0.013817276,0.020086978,-0.77717,-0.14739256,0.22012194,-0.19173169,-0.2913217,-0.5665299,0.053452943,0.60228014,-0.047240566,-0.4128324,0.2130883,0.24873301,-0.13860382,-0.42165127,0.066544555,-0.2380882,0.36673215,-0.058589887,-0.3688793,0.013153733,0.05323196,-0.5327821,0.19321713,0.2573951,-0.27495745,0.15924132,-0.48350582,0.12071277,1.0859663,-0.24850687,0.22631809,-0.3640654,-0.58375806,-0.9163408,-0.27433485,0.3259774,0.21726668,0.064359196,-0.7792966,-0.034560256,-0.10817834,-0.32925272,-0.17571926,-0.20765814,0.532078,0.14671192,0.37508184,-0.22332086,-0.8735605,0.09970993,0.14813451,-0.39789486,-0.50312865,0.7100724,-0.074474946,0.8459068,0.24472892,0.23634887,0.36786053,-0.42243895,0.12913361,-0.13770679,-0.11728968,-0.6429003,-0.14517891 +704,0.6111341,-0.12712997,-0.7436754,-0.1328441,-0.33919927,-0.25638342,-0.26745686,0.48693427,0.22442318,-0.49375165,-0.19566935,-0.13794874,-0.08605233,0.65092427,-0.24417849,-0.906159,0.13251673,0.32090205,-0.46718094,0.58078796,-0.5564901,0.2624887,-0.02104267,0.6300372,0.39071593,0.23830134,0.37116694,0.1020185,-0.27770594,-0.42733732,-0.077647805,0.05619095,-0.7437315,0.19180723,-0.20973015,-0.75740075,0.048741948,-0.5328416,-0.4121662,-0.93800306,0.37754452,-0.8261843,0.59264493,-0.112039566,-0.32280394,0.09241452,0.27712512,0.4812467,-0.22100161,-0.08505266,0.11615547,-0.09449023,-0.03510712,-0.15638046,-0.30832005,-0.39556536,-0.65143794,0.095651805,-0.44061562,-0.105946384,-0.27381852,0.19403286,-0.34940717,0.14874835,-0.07593424,0.6245833,-0.4012505,-0.080935664,0.39275208,-0.12758927,0.1677322,-0.53932,-0.17954282,-0.22692186,0.117419064,-0.031139208,-0.24303472,0.38464522,0.09470274,0.34517944,0.2099743,-0.38598558,-0.42936578,-0.13978261,0.111419775,0.45934007,-0.21302028,-0.5040214,-0.25303617,-0.045131575,0.20993136,0.22440465,0.26195684,-0.25696245,0.1407338,0.07906264,-0.38919938,0.61084,0.44400778,-0.36931658,-0.20626432,0.09057235,0.52281564,0.19777797,-0.2645814,0.054951686,0.18535282,-0.6802265,-0.30922374,0.03061904,-0.02638237,0.68280643,-0.16799362,0.25602314,0.8412532,-0.39295772,-0.112236165,0.04405415,0.0707478,-0.119981706,-0.55990046,-0.44002065,0.4328208,-0.55509424,0.14458714,-0.31616503,1.0106817,0.23599888,-0.62495327,0.27244714,-0.68410516,0.12412401,-0.24401122,0.49951085,0.5262856,0.3206863,0.41755596,0.74459577,-0.3147024,0.24234462,-0.0050762594,-0.43533078,-0.15115635,-0.18401597,0.17692764,-0.3415273,-0.010881166,-0.28120235,-0.023979226,-0.010086447,0.5168592,-0.50803703,-0.19715138,0.16460837,1.0206809,-0.31200418,-0.18115652,0.9356961,1.0679065,1.3441502,-0.001654475,1.2611371,0.42924973,-0.12759541,0.01942725,0.0059604845,-0.7281839,0.31207296,0.28581896,-0.46280766,0.24834915,0.07450851,-0.04290278,0.5564253,-0.43360198,0.08971617,-0.22940926,0.50934213,0.19474308,-0.15059738,-0.49628153,-0.31256756,0.020859934,-0.25526306,0.14678174,0.3282654,-0.106699504,0.4026629,-0.12791562,1.697372,-0.054530393,0.034140557,-0.0048710457,0.7270684,0.29910967,-0.064653344,0.0706861,-0.05047895,0.31067246,-0.005767832,-0.64941746,-0.105223894,-0.35262606,-0.3384502,-0.2912997,-0.38852763,-0.05489215,-0.08407816,-0.4380953,-0.32844165,-0.1378319,0.015589942,0.31563568,-2.2962914,-0.35405812,-0.059076626,0.20817618,-0.4133422,-0.33656478,-0.021020522,-0.7238273,0.66352874,0.2249365,0.55661273,-0.5839098,0.575689,0.5647715,-0.4732792,-0.0975058,-0.768534,-0.13354155,-0.095251866,0.3555374,-0.124790214,-0.20948057,-0.069922954,0.036981836,0.565784,0.016543671,0.07418808,0.21827824,0.48552808,-0.060224682,0.65715265,0.15671481,0.71138304,-0.61200076,-0.24887729,0.32789892,-0.47658026,0.2460016,-0.18262397,0.13767505,0.6394719,-0.49920675,-1.0078369,-0.7176654,-0.06364915,0.9689948,-0.12213173,-0.5262788,0.19960512,-0.11174067,0.02278932,0.0077333055,0.19366096,-0.09308135,0.073222,-0.59039146,0.05443782,-0.06735412,0.010386169,0.059510518,-0.010166541,-0.35838926,0.59400445,-0.1182476,0.11701912,0.4213461,0.3135161,-0.43557557,-0.5803329,0.087827615,0.96655464,0.29823765,0.22026896,-0.5570324,-0.24202244,-0.41437733,-0.24775128,-0.06659074,0.46114942,0.92229795,-0.24182884,0.14831787,0.4020617,-0.041988987,-0.03239323,-0.081805006,-0.6829603,-0.19452874,0.06902417,0.6509984,0.7420342,-0.10990431,0.71649593,-0.1037729,0.43500146,-0.2816677,-0.3517239,0.6608007,1.1380656,-0.24716824,-0.3717207,0.62653273,0.31251845,-0.43374622,0.6615899,-0.49139246,-0.2756141,0.48931846,-0.085003786,-0.32181552,-0.026599646,-0.2871221,-0.012925822,-0.86772794,0.30620733,-0.4532659,-0.22660752,-0.76108885,-0.49437344,-3.4335167,0.3387464,-0.31179094,0.10537494,-0.14312796,-0.16153409,0.20784009,-0.591151,-0.6735213,0.24095659,0.044176895,0.80499625,-0.034203425,0.29499185,-0.24151659,-0.2735705,-0.43885553,0.14890952,0.26739737,0.36001512,0.09064139,-0.5130958,0.021201387,-0.29634014,-0.5846929,0.062217563,-0.6141781,-0.45323205,-0.1966273,-0.7728538,-0.36111537,0.93456715,-0.37448576,0.10061034,-0.2922878,0.074318014,-0.20147265,0.3912411,0.089103304,0.19149482,0.16265939,-0.18062067,0.10040444,-0.3244066,0.022835886,0.08516902,0.4777002,0.1230197,0.061750352,0.28162163,0.6499152,0.8525584,0.1550274,0.8860838,0.5048518,-0.1392474,0.2782931,-0.33283815,-0.55300283,-0.49235976,-0.3315502,-0.05032895,-0.40252653,-0.4822637,0.06434085,-0.39494655,-0.8116233,0.8684624,0.07074591,0.100752346,-0.0033917725,0.2358525,0.4093895,-0.1626407,-0.15166254,0.014178206,-0.023143245,-0.6323717,-0.3956597,-0.5998346,-0.5630649,0.07364082,1.0457662,-0.14977987,-0.10022076,0.12281885,-0.40148067,0.09205407,0.26665327,-0.14521815,0.023630986,0.389523,-0.052503522,-0.79606384,0.29249966,-0.14906788,0.03878411,-0.7006069,0.23668265,0.8424177,-0.7299812,0.62173015,0.36955008,0.09364748,-0.11169866,-0.50999373,-0.20327848,0.13964379,-0.06730901,0.5688583,0.17788,-0.79497623,0.5504594,0.38846174,-0.44061586,-0.85946304,0.38007483,0.03406299,-0.36826715,-0.05322269,0.33855477,0.29446945,-0.00079652417,-0.3778509,0.16306317,-0.48927853,-0.06326851,0.2707896,-0.19246931,0.4074668,-0.32113698,-0.23247957,-0.7886146,0.04036222,-0.539785,-0.2861235,0.10746926,-0.03664094,-0.04134376,0.2983878,0.23006292,0.08473947,-0.23021646,0.07429643,-0.1599209,-0.288824,0.49176347,0.38232312,0.53161114,-0.62721294,0.6358545,0.09309531,-0.11038783,0.24760132,0.0037364562,0.43731928,-0.007537415,0.43523288,0.20396942,-0.096366614,-0.0062728724,0.7488449,0.14795323,0.6180948,0.18706803,-0.1322477,0.14099996,0.18386428,0.14787884,0.36421934,-0.5681713,-0.08710333,-0.15667649,0.20578186,0.6327222,0.13827819,0.4646155,0.18734397,-0.31913802,0.062329486,0.06209445,-0.34921417,-1.5562059,0.4252913,0.22777776,0.9055829,0.48316917,0.0024945997,-0.0117896395,0.7316949,-0.14788778,0.18384969,0.4502212,0.048578814,-0.38201013,0.69019777,-0.4991598,0.5811865,-0.07079464,0.14925109,-0.11381867,0.12775032,0.60780424,0.7891081,-0.19398205,0.041774526,0.051018637,-0.3211685,0.15373456,-0.5644638,0.09939083,-0.36164045,-0.17979617,0.882895,0.48560986,0.2871787,-0.17541252,-0.056022268,0.19148986,-0.09594969,0.07906606,-0.1940756,-0.11036587,0.036888264,-0.5290534,-0.25611982,0.5879821,0.11991047,0.25408164,-0.051162597,-0.14325921,0.3376683,-0.12015703,-0.01845251,-0.073428325,-0.8378524,0.019602507,-0.31697598,-0.53744566,0.4342977,0.008670797,0.24755894,0.16155319,0.0842346,-0.4298322,0.5355413,-0.063191675,0.61603814,-0.17790276,-0.15573364,-0.31866434,0.16605513,0.31178483,-0.3357412,0.06640544,-0.33042035,0.15916912,-0.5068404,0.3896061,-0.15857063,-0.33869871,-0.124748915,-0.09417194,-0.0216329,0.6241136,-0.19087245,0.09621356,0.11836654,-0.26185104,-0.220025,-0.23404156,-0.053808082,0.23137073,0.14126705,-0.11773274,-0.16112705,-0.26753286,-0.024199734,0.5092327,-0.23115265,0.24262714,0.40065014,0.2620686,-0.3018376,-0.3553972,0.030875312,0.5718785,-0.08887016,-0.18241636,-0.35334063,-0.35115132,-0.33497226,0.6087906,-0.059085656,0.25649944,0.08849114,-0.40066218,0.8694999,0.26878503,1.3524853,0.059711114,-0.5138503,0.15919401,0.51135427,0.014459029,0.08515335,-0.55311793,1.0046922,0.4767731,-0.31152725,-0.28473064,-0.61209756,0.024367189,0.2929221,-0.3066754,-0.36385798,-0.1117394,-0.44447994,-0.20836908,0.29511467,0.37124947,0.123031385,-0.17025109,0.21394837,0.44111407,0.1254111,0.52412933,-0.55621284,-0.12901188,0.45190024,0.39687085,-0.12212723,0.16097148,-0.5703648,0.2817752,-0.5010396,0.2293296,-0.5192509,0.2267127,-0.05271144,-0.41730785,0.30674294,0.16346776,0.33153018,-0.5299174,-0.18002208,-0.17013372,0.51507336,0.32563892,0.1956116,0.6878192,-0.325232,-0.114408456,-0.06822147,0.5200653,1.0733575,-0.2594132,-0.109890126,0.33946982,-0.16070189,-0.72797775,0.44713864,-0.33984908,0.11498201,-0.02454494,-0.32754156,-0.8075054,0.23933981,0.13566591,-0.15769565,0.21986194,-0.6400203,-0.17364107,0.19089197,-0.12895982,-0.2566273,-0.42357764,0.0981187,0.7154488,-0.18934657,-0.30504945,0.19241385,0.37009445,-0.0504618,-0.49081793,-0.16654082,-0.29388365,0.42451826,0.13509233,-0.20335211,-0.12555325,-0.032485414,-0.6194977,0.1452398,0.2661225,-0.3207173,0.068318106,-0.124409296,-0.079293914,0.8716872,-0.102575354,0.42690024,-0.44028965,-0.47960803,-0.9009482,-0.37072203,0.55929387,0.17427985,-0.006464675,-0.72238874,-0.06655408,-0.08912376,-0.11907998,0.26630303,-0.45546627,0.3440999,0.08886159,0.41143808,0.013532211,-0.84904236,-0.016926685,0.14656375,-0.32006207,-0.6284802,0.56025565,-0.29413822,0.926378,0.06055224,0.07593114,0.20333914,-0.32094678,0.056391966,-0.37570944,-0.3963503,-0.6218868,0.02366428 +705,0.4954055,-0.0792452,-0.7114861,-0.0674158,-0.42634732,-0.24695206,-0.23791726,0.40889433,0.33897036,-0.36198527,-0.24969317,-0.20297633,-0.1043776,0.37728623,-0.23249578,-0.7396333,-0.03237539,-0.004191408,-0.5295024,0.79788405,-0.22582397,0.20472288,0.21475975,0.34844515,0.5633853,0.3423144,0.17674886,-0.0019399065,-0.03149736,-0.47199586,0.014776725,-0.04634943,-0.89115167,0.21353635,-0.32271528,-0.39408544,0.050742205,-0.6224422,-0.4647411,-0.9147283,0.4624735,-0.7827706,0.392887,0.14228581,-0.14800175,0.20907998,0.21364608,0.34510434,-0.052835252,-0.22262684,0.2530497,-0.01697124,0.0481876,0.021729091,-0.26537833,-0.2918376,-0.6833773,-0.055979446,-0.44898084,-0.039947066,-0.39373052,0.096315,-0.49242762,0.16688761,-0.26260534,0.62222695,-0.39029855,0.065636635,0.19106218,-0.20994343,0.17414138,-0.57027715,-0.3830748,-0.14065799,0.15542957,-0.058901805,-0.08557011,0.5625262,-0.038243648,0.19890997,0.09587805,-0.18141848,-0.24146846,-0.12297459,0.27377656,0.28369233,-0.08870348,-0.28051296,-0.1386021,-0.08546638,0.27868012,0.27000016,0.25268194,-0.19570781,0.0036425819,-0.006901727,-0.2310399,0.5590293,0.5264686,-0.15600416,-0.14433724,0.23989765,0.43146083,0.44883597,-0.15263842,-0.095163144,0.034679484,-0.56332666,-0.17821194,0.10599888,-0.27754,0.5488536,-0.13060161,0.16245125,0.6058315,-0.15906045,0.030607644,0.12281774,0.07765399,-0.045283712,-0.38294417,-0.24672614,0.36682022,-0.5101395,0.45481205,-0.23702887,0.9125896,0.21626729,-0.62144184,0.245523,-0.65797365,0.13194619,-0.053053737,0.45956007,0.66780657,0.4049938,0.30842063,0.73863536,-0.3742061,0.15341748,-0.15433834,-0.34519994,0.051786773,-0.1880242,0.16530696,-0.27563584,-0.18032655,-0.20223159,0.08153538,0.08262194,0.34969866,-0.3271802,-0.13838527,0.04689897,0.91827285,-0.10960185,0.0063620987,0.82783294,1.0639707,1.2700896,0.06008494,0.77348304,-0.07735132,-0.2028214,0.13526349,0.12064845,-0.7864452,0.29612067,0.29047757,-0.054819997,0.049453314,0.06837153,-0.075962864,0.323089,-0.4813137,-0.011694202,-0.15261434,0.2718098,0.05371652,-0.00463176,-0.23549491,-0.3600515,-0.113808855,-0.022958977,-0.034607545,0.36520007,-0.15092537,0.38699847,-0.038295623,1.3243407,0.050239943,0.07783406,0.19393921,0.69764113,0.1481552,-0.12027744,-0.008103992,0.14111057,0.288745,0.12442816,-0.61244094,0.03326998,-0.40504393,-0.3103304,0.07539622,-0.45245063,-0.27274844,0.043440793,-0.45822254,-0.17213471,-0.12869927,-0.2694716,0.3470389,-2.6293273,-0.005606312,-0.0906886,0.2827729,-0.3574535,-0.3292771,0.01171587,-0.7426414,0.5546271,0.19202463,0.54816747,-0.49431455,0.42203572,0.62926394,-0.70765567,0.07525864,-0.5318878,-0.17519763,0.11564414,0.32379824,-0.14042355,0.13649756,-0.028510282,0.029684216,0.46290842,0.40124738,0.09931393,0.29969925,0.41723728,-0.20929544,0.65171856,-0.14356183,0.40373766,-0.54911166,-0.033179693,0.4644182,-0.52752614,0.49230924,-0.4521381,0.09567134,0.60507625,-0.62537354,-0.92372143,-0.47965643,-0.2753498,1.2580857,-0.18252386,-0.60793686,0.31568548,-0.30420527,-0.0817959,-0.08467925,0.62135845,-0.07189219,0.02344302,-0.62438446,-0.0971491,-0.29565042,0.2367548,0.026743345,0.031793304,-0.34094477,0.7845169,0.14430457,0.55624956,0.25835037,0.20961833,-0.26327518,-0.44566947,0.30275702,0.7754066,0.40515798,0.023253085,-0.42974886,-0.2200021,-0.35909188,-0.23990437,0.036284093,0.7158703,0.55877936,-0.20150867,0.1493703,0.40147543,0.112692505,0.031376004,-0.11897564,-0.40743068,-0.28783473,-0.1473458,0.5259399,0.973717,-0.03443551,0.13159211,0.03219851,0.3431659,-0.21307103,-0.38885647,0.44443908,0.8190684,-0.09739142,-0.25998867,0.49656913,0.5828923,-0.19483764,0.5684903,-0.3013057,-0.43121094,0.44128326,-0.051661234,-0.55823696,0.067248955,-0.35760573,-0.07223888,-0.5484054,0.096288934,-0.46489233,-0.30586916,-0.5190696,-0.096055396,-2.755793,0.06714216,-0.22832698,-0.110336155,-0.3464896,-0.15365355,0.096142635,-0.5593755,-0.7999557,0.08079883,0.13937834,0.83438116,-0.20107335,0.14094943,-0.23750356,-0.2436316,-0.40578893,0.21940228,0.34472054,0.345133,-0.13868102,-0.3442333,-0.3154243,-0.13418122,-0.4433006,0.040479586,-0.37348044,-0.4301753,-0.16883191,-0.6014374,-0.29989317,0.68263334,-0.28820604,0.017352257,-0.022519413,-0.044447057,-0.14869809,0.07886301,0.23893353,0.37317866,-0.034260925,-0.14389701,0.07033311,-0.22406259,0.43016237,0.17250673,0.6128622,0.35398117,-0.070428595,0.19467065,0.4021424,0.6487669,-0.12787083,1.0531414,0.18640892,-0.09055603,0.24357483,-0.1801437,-0.5694225,-0.6533666,0.056881927,0.10660085,-0.2782275,-0.35220224,0.13309458,-0.29513237,-0.8346387,0.5552737,0.082884915,0.27204168,-0.07348686,-0.15443149,0.44793952,-0.21767847,-0.06467909,0.15956734,0.10575665,-0.58543915,-0.2714721,-0.6694594,-0.4063972,-0.16857934,0.779312,-0.21423556,-0.2114301,0.2562849,-0.28799498,0.21300404,0.0557897,0.03914673,-0.0839469,0.45688975,0.26742026,-0.648185,0.7444957,-0.112890676,0.063004576,-0.5083747,0.30659702,0.44346935,-0.6083141,0.5299846,0.31837332,0.032163225,-0.24675353,-0.59397423,-0.117952734,-0.24974574,-0.13850512,0.27348083,0.38050783,-0.6658587,0.25961024,0.02325977,-0.30647057,-0.7766553,0.5284297,-0.09224778,-0.37305295,-0.09559198,0.37723938,0.21521713,0.03621509,0.08063608,0.3160525,-0.20103934,0.2904844,0.24565312,-0.20858237,0.19191352,-0.29940322,-0.23353855,-0.6214155,0.24638997,-0.35646364,-0.3482877,0.43956062,-0.08004729,-0.08263774,0.16546954,0.28096583,0.20855647,-0.034484144,0.19123295,-0.16820823,-0.21832865,0.51971483,0.43608892,0.83870375,-0.53127277,0.6945315,0.14024006,-0.048958797,0.55621517,0.12001769,0.19638044,-0.15980762,0.39401075,0.189572,-0.2474683,-0.05917943,0.7841659,0.22874038,0.32781395,0.048410796,-0.06479071,0.36810017,0.09911985,0.0802464,-0.033836134,-0.92169225,-0.017951187,-0.16962689,-0.04841572,0.5972001,0.1119684,0.17224266,-0.0067069107,-0.16423652,-0.10795423,0.06071142,-0.19440402,-1.4402484,0.38444388,0.0739379,1.0153028,0.6766708,0.0066234926,0.08428182,0.6702118,-0.02929593,0.15775989,0.4089875,0.11277958,-0.44829333,0.5778171,-0.3749978,0.54191047,0.10411208,0.077549234,0.19047938,0.03474268,0.51802015,0.603886,-0.25448135,-0.13125776,0.030356,-0.4883508,0.1854461,-0.46677706,-0.064391054,-0.37521267,-0.27589795,0.62087315,0.68488634,0.1905114,-0.26316276,0.02239738,-0.14004754,-0.12032855,0.090206094,-0.012250613,-0.038629096,-0.042599976,-0.54277235,-0.16778564,0.5062039,-0.37466812,0.16555259,-0.07891921,-0.12479388,0.2738171,0.0011079747,0.061642904,-0.21070132,-0.82629144,0.13529152,-0.40437537,-0.3716442,0.032158013,-0.010247552,0.32348126,0.29835993,-0.006980918,-0.24937123,0.5892112,-0.022042971,0.6424066,-0.37318918,-0.2071185,-0.43108618,0.08421092,0.26464105,-0.15658364,0.035111573,-0.18203662,0.11891374,-0.39812675,0.44937122,-0.17608544,-0.22779237,-0.18890819,-0.10462865,-0.1390802,0.6200748,0.04156761,-0.07841114,-0.16148408,-0.14917836,-0.34630916,-0.29504997,-0.017101338,0.061421793,0.13986124,-0.060766555,-0.1569862,-0.17734377,0.2009968,0.23812744,-0.139671,0.40483186,0.19715595,0.089008,-0.46311834,-0.1818797,0.15593085,0.6017391,-0.009793263,-0.17167734,-0.34897715,-0.32462412,-0.5007546,0.5199579,-0.13514045,0.3763218,0.08331777,-0.1421907,0.53209525,0.13963428,1.140597,0.0065866527,-0.34403294,0.12555641,0.55858356,-0.18496396,-0.18099214,-0.3277656,0.863588,0.36007226,-0.24207608,-0.15582329,-0.4906541,0.12455331,0.0023403948,-0.25472608,-0.2033217,0.05525579,-0.36028415,0.09634007,-0.03706278,0.4222999,0.17931366,-0.28833205,-0.3175519,0.33777544,0.3005006,0.36742544,-0.49488991,-0.53105956,0.32510102,-0.029921345,-0.08408426,0.17570972,-0.5044038,0.39284435,-0.3785765,0.20198342,-0.34439272,0.19656716,-0.41131252,-0.32149073,0.22728205,-0.061242197,0.5461298,-0.49358022,-0.28590196,-0.42576507,0.3881524,0.31209114,0.28714162,0.680434,-0.16811135,-0.045774672,-0.07390321,0.7877956,0.78341186,-0.12293181,-0.04914609,0.23369192,-0.42349574,-0.5117196,0.060124394,-0.28667596,0.20659718,0.006097578,-0.20156723,-0.6156559,0.15274476,0.032269396,0.028245002,0.030322867,-0.9750105,-0.21095313,0.1868929,-0.2055754,-0.3943545,-0.4767175,-0.094697885,0.55681986,-0.11842512,-0.2691311,0.15420201,-0.038354572,-0.005463967,-0.54921556,-0.10028948,-0.2388959,0.17462085,-0.15214251,-0.3726053,-0.29617026,0.20609394,-0.48269886,0.24492034,-0.17238909,-0.29550645,-0.056620058,-0.13310859,0.109630466,0.9655925,-0.46051174,0.289054,-0.29881006,-0.57681954,-0.68189883,-0.42303464,0.3110572,0.028498769,0.03862866,-0.5410607,-0.28916165,-0.13879156,0.0952814,-0.13933402,-0.27449358,0.45246145,0.120770045,0.45999888,-0.14236249,-0.7906117,0.2654572,0.10336746,-0.10501607,-0.45057184,0.40317425,-0.069790795,0.71647,0.0803979,-0.051735166,0.15051536,-0.3912258,-0.06848745,-0.114471555,-0.0027184119,-0.3927328,0.2696573 +706,0.37982118,-0.07709753,-0.33854297,-0.1715903,-0.34810138,0.071222395,-0.13136789,0.123055995,0.1950868,-0.2468229,-0.12120074,-0.06302686,-0.02662203,0.3004724,-0.037354954,-0.6757457,-0.14564522,0.16839218,-0.7333292,0.38527542,-0.55171067,0.40550297,0.0763938,0.15564951,-0.04555542,0.42425895,0.22058563,-0.25214612,0.020046424,-0.05262924,-0.2026058,0.33089548,-0.4895789,0.09275991,-0.21762916,-0.14044535,0.045823347,-0.36623532,-0.33504874,-0.5464639,0.113079324,-0.7622893,0.45162177,-0.013152067,-0.11066879,-0.10762702,0.22760776,0.35635433,-0.28693354,0.09767128,0.29403707,-0.15230995,-0.13004944,-0.24381346,0.032662425,-0.31079155,-0.36263695,-0.079965875,-0.5785965,-0.3242937,-0.13587347,0.14073968,-0.33123878,0.041852854,-0.09731744,0.31453013,-0.32509357,0.06379337,0.33666968,-0.27673092,0.14979379,-0.36630884,0.18595636,-0.039266724,0.53909904,-0.020092651,-0.12147367,0.39299268,0.35135278,0.4766144,0.21279827,-0.27273896,-0.118159726,-0.22385827,0.17131004,0.43106925,-0.18261747,-0.27191615,-0.17474735,0.14873177,0.08476204,0.32157445,-0.16650961,-0.3074196,-0.05566118,-0.04645703,-0.2854431,0.45515996,0.50663847,-0.2898266,-0.40340778,0.31013978,0.5546513,0.32142586,-0.14623335,0.024747163,0.06275528,-0.507809,-0.23999469,0.2100685,-0.042967327,0.40977526,-0.07861063,0.17135927,0.81640553,-0.12141087,0.037651822,-0.00070381444,-0.18630253,-0.11777712,-0.15229851,-0.019212129,-0.039227497,-0.6323531,0.026760101,-0.15713134,0.76392007,0.16398193,-0.7629423,0.5151174,-0.5927511,0.17678815,-0.0986567,0.6404751,0.73843336,0.35494143,0.20001878,0.78493893,-0.3680464,0.16555038,-0.20794925,-0.48674357,0.07015425,-0.09406519,0.12425734,-0.4801022,0.06635829,-0.16916503,0.14356431,0.002922684,0.10548652,-0.5415374,-0.060807742,0.20130707,0.8999816,-0.3739133,-0.0011596903,0.5004649,0.9661416,0.8242001,-0.042513836,1.0496411,0.22835736,-0.22325553,0.26064804,-0.46693882,-0.63045204,0.137135,0.34177652,0.24922985,0.22226912,-0.053460345,-0.007919442,0.24222434,-0.3480296,0.07006271,-0.122677445,0.33911756,0.12271696,-0.019533778,-0.28888822,-0.11104825,-0.01335609,-0.08824544,0.10452741,0.22579046,-0.18395244,0.25355154,-0.026774146,1.3232933,-0.007380694,0.11957373,-0.019518185,0.4523924,0.22745459,-0.075201,-0.077617235,0.43008167,0.43969846,-0.035295483,-0.5637457,0.25361592,-0.3346171,-0.3416956,-0.09351346,-0.42602354,-0.063232765,0.19598156,-0.34680602,-0.067702174,-0.08375108,-0.25496647,0.55505365,-3.0498176,-0.27279803,-0.10485472,0.3125857,-0.3322919,-0.15789765,-0.08135407,-0.49179986,0.17989752,0.24679914,0.4094379,-0.59121674,0.60339785,0.45265394,-0.44393855,-0.20687473,-0.5980971,-0.093967944,0.0061132153,0.44491073,0.031052731,-0.0365403,-0.21772829,0.19806226,0.5472902,-0.020302016,0.031517178,0.37768185,0.41205883,0.2409233,0.6329349,-0.06709157,0.53106254,-0.29577103,-0.14749286,0.34724188,-0.20549892,0.28197873,-0.12207692,-0.027126247,0.39602047,-0.38899854,-0.83156836,-0.62327933,-0.4207649,1.0864427,-0.39142042,-0.2537859,0.19023395,-0.18928792,-0.08878748,0.073302805,0.5021534,0.04582747,0.06810961,-0.58497506,0.16236746,-0.041810248,0.18051445,0.07836921,-0.124567226,-0.2500604,0.5898016,0.016080115,0.5931258,0.22553146,0.20787993,-0.07351036,-0.33274916,0.06327239,0.7386367,0.26251695,0.024458915,-0.10269265,-0.35818693,-0.10257081,-0.07764049,-0.00031412765,0.50580895,0.66149724,-0.037472963,0.10784461,0.35800937,-0.12440752,0.07799218,-0.1533094,-0.15405065,0.0403639,-0.018981017,0.33952945,0.59241736,-0.12871212,0.43486476,-0.06703306,0.13576323,-0.11307578,-0.42977327,0.6338638,0.52698046,-0.20373997,0.02217282,0.385205,0.42743832,-0.3047408,0.45952874,-0.6154651,-0.20052132,0.58987904,-0.22800693,-0.37589538,0.21402222,-0.26904362,0.10456468,-0.76992226,0.32457083,-0.3088532,-0.39568612,-0.4221987,-0.062135592,-3.6835623,0.1479002,-0.12796268,-0.09355305,-0.19458096,0.066695675,0.33984652,-0.50780547,-0.37570623,0.10598159,0.23002447,0.5043669,-0.026901131,0.11844691,-0.32569933,-0.11346914,-0.15772645,0.19229439,0.041214507,0.28608558,-0.13930658,-0.3933583,-0.01442419,-0.09600888,-0.37686545,0.2735293,-0.4512845,-0.34390652,-0.08245246,-0.39758217,-0.17140497,0.5787957,-0.39060616,0.020608712,-0.30359843,0.0932492,-0.30024883,0.24462,0.24727547,0.13300449,0.10773358,-0.050993256,-0.07698069,-0.39710176,0.57074213,-0.030200616,0.40198445,0.13134365,0.16660437,0.09418983,0.49976027,0.43243906,-0.116039775,0.8926234,0.34436923,-0.063583694,0.31252068,-0.30840522,-0.21910548,-0.4134336,-0.41984627,-0.07878409,-0.3725609,-0.5127443,-0.050223377,-0.2804713,-0.75492114,0.5034357,-0.0076208897,0.24760503,-0.08888321,0.18605985,0.34303904,-0.23720598,0.048591822,0.023621585,-0.22117437,-0.52190965,-0.29298288,-0.582621,-0.44114494,0.13792714,0.7409322,-0.32765836,0.054480016,-0.18692684,-0.15269494,-0.11012219,0.00040967762,0.18246856,0.44804075,0.38014245,-0.20746604,-0.57689506,0.43329534,-0.14428683,-0.106687956,-0.5271739,0.0008007996,0.5774872,-0.74398565,0.5847413,0.21847057,0.02654368,0.04146245,-0.43328428,-0.28413448,-0.014634261,-0.22409712,0.33770585,0.03533254,-0.787796,0.4335264,0.23027392,-0.3663908,-0.64719045,0.34079885,-0.034317546,-0.27142704,0.004240051,0.2185297,0.2328592,-0.09537899,-0.1180029,0.19076124,-0.41464475,0.25381663,0.13802807,-0.09953254,0.25398713,-0.14701095,-0.3496906,-0.5943498,-0.07461906,-0.43376786,-0.25359342,0.26917177,0.030085558,0.102157995,0.07188378,0.07092872,0.40224224,-0.18954602,0.08794294,0.10567128,-0.3137324,0.25526094,0.42756766,0.35971445,-0.36157632,0.48747203,0.15487596,-0.11400078,0.11588254,0.11304568,0.41993806,0.027668945,0.278585,-0.08219105,-0.1458214,0.4175868,0.7981426,0.17604661,0.27100313,-0.036306348,-0.0747734,0.50141937,0.012459982,-0.011769969,0.13534462,-0.43167013,-0.113398075,-0.016063713,0.22060227,0.41885093,0.28144786,0.28669256,0.08801675,-0.2252883,-0.04063096,0.19712126,-0.12176185,-0.98279387,0.3664787,0.3179094,0.7740471,0.3705613,0.11485772,-0.11089615,0.6835807,-0.25794232,0.13864276,0.34004217,-0.17601006,-0.49512324,0.6368632,-0.60417885,0.4483178,-0.10110029,-0.114725895,0.14095686,0.030996453,0.32812458,0.7805109,-0.1615634,0.06224469,0.010046776,-0.23872936,-0.051924214,-0.2863209,0.012656301,-0.43648976,-0.35354346,0.57767224,0.3440897,0.2837961,-0.20544252,-0.012130609,0.08567283,-0.086755954,0.13104628,-0.09537832,0.011430226,0.106660455,-0.4867038,-0.16846664,0.57798594,-0.10586101,0.116484515,-0.17878169,-0.1989371,0.19077215,-0.20655492,0.026476935,-0.108669475,-0.47626638,0.11149041,-0.18667941,-0.40255117,0.4330927,-0.26191026,0.2310602,0.2012082,0.053231154,-0.19587429,0.49470505,0.11235217,0.71465945,0.016847193,-0.1799069,-0.45572025,-0.028881334,0.17332172,-0.2524835,-0.08368933,-0.47150502,-0.08363269,-0.570464,0.48775828,-0.20359482,-0.37805974,0.1809429,-0.2720329,0.068914495,0.5730658,0.00734747,-0.1248095,0.04369589,-0.18669567,-0.46287423,0.01164645,-0.20672551,0.29359984,0.32291284,-0.028190542,-0.12593597,-0.33489743,-0.16663623,0.4571848,0.122026145,0.33081365,0.15034777,0.023966186,-0.027132204,0.021390911,0.22473454,0.38079432,0.19843888,0.14024974,-0.38584206,-0.2835345,-0.2626908,0.12201133,-0.13189265,0.23748955,-0.03711687,-0.37170354,0.72402465,-0.03904944,1.1083126,0.22126,-0.15561578,0.09895687,0.47561917,0.011032652,0.15572786,-0.41809338,0.71047974,0.50649995,0.064054586,-0.10727063,-0.44988033,-0.0631767,0.17303689,-0.31246987,-0.016984664,-0.061909158,-0.5982604,-0.3419608,0.21102941,0.17840518,0.1482251,0.04100154,-0.23592475,0.02212803,0.08808455,0.4076923,-0.52249414,-0.20583321,0.24577416,0.21591213,0.0007219147,0.12686235,-0.34946936,0.49857864,-0.6073402,0.08234299,-0.38991195,0.10418305,-0.2649904,-0.30023178,0.13750781,-0.044027086,0.31472754,-0.18953675,-0.40881458,-0.09037019,0.39382976,0.055299547,0.14867483,0.66908157,-0.18550414,-0.03239607,0.053733528,0.52483857,0.99663967,-0.34837127,-0.0371373,0.29276824,-0.3768697,-0.5236383,0.31903124,-0.3823134,-0.062140547,-0.029954728,-0.4405868,-0.24399212,0.3499598,0.11241639,0.18767007,0.05067726,-0.5155689,-0.109979965,0.23761122,-0.2300967,-0.30448717,-0.17259733,0.3666478,0.8534839,-0.30868757,-0.23664156,0.09252699,0.295493,-0.29285818,-0.5143206,-0.0892115,-0.1538049,0.27252364,0.18544875,-0.20636511,-0.052762818,0.19522563,-0.39628017,0.10349934,0.27997524,-0.35594857,0.10977813,-0.078280136,-0.092392266,0.87771404,-0.22551097,-0.13842815,-0.6233359,-0.42514664,-0.8309176,-0.40923363,0.24513812,0.3219286,-0.04168664,-0.2780077,-0.027458757,-0.015936313,-0.16645882,-0.012097535,-0.57509255,0.39570284,0.059609015,0.44936103,-0.27821916,-0.84177774,-0.022452708,0.09659156,-0.14491996,-0.6594196,0.55608183,-0.26541305,0.8917122,-0.015741525,-0.14540862,0.061454527,-0.3607785,0.09316553,-0.45939124,-0.19708711,-0.8584098,0.12651783 +707,0.4108006,0.027153837,-0.5347929,-0.18015395,-0.3467307,0.10155785,-0.29969096,0.3008148,0.25541663,-0.27437225,-0.05759445,0.030211091,-0.063098684,0.24495426,-0.2118129,-0.83324236,0.10577374,0.11594464,-0.50893056,0.4230369,-0.683665,0.46830907,-0.038777772,0.4417726,0.113940954,0.21609107,0.27348712,-0.028102126,0.08343924,-0.1440644,-0.061309893,0.2525173,-0.38699993,0.24408214,-0.05925421,-0.3731559,0.21730316,-0.3170457,-0.3069894,-0.64688265,0.34335294,-0.5545742,0.6150047,-0.035084885,-0.3467072,-0.0004380558,0.08811588,0.14331491,-0.30321822,0.13635686,0.22855392,-0.13238941,0.12025001,-0.10437585,-0.32131448,-0.34991163,-0.48453528,0.044704325,-0.65294474,-0.0044031567,-0.23048863,0.12827256,-0.2526553,-0.09341186,-0.05235613,0.42689368,-0.46333537,-0.08581044,0.17364177,-0.24336432,0.14398293,-0.6139931,-0.1322216,-0.19227205,0.24595734,0.024205236,-0.22612739,0.09702989,0.27929676,0.5621139,-0.050898526,-0.23091711,-0.315412,-0.041022796,-0.052798003,0.45233843,-0.20767592,-0.3108469,-0.25218397,0.05193576,0.36342305,0.23464309,-0.0050176894,-0.30583996,0.12724149,0.13360246,-0.26175162,0.39486176,0.5842284,-0.366743,0.017962886,0.27513537,0.31176573,0.19562873,-0.29284948,0.25484675,-0.18142311,-0.42540613,-0.36382192,0.05169945,-0.041110676,0.5010747,-0.12034625,0.25911474,0.77225524,-0.06255149,0.06562095,0.08808319,-0.029649356,0.027157813,-0.17231897,-0.25937226,0.13424702,-0.60293823,-0.046116013,-0.28465378,0.78579223,0.04364762,-0.91084397,0.30081624,-0.33340773,-0.006493281,-0.23405746,0.5904342,0.8004114,0.34491596,0.23597778,0.7541114,-0.62058926,-0.025913358,-0.06761493,-0.33275992,0.067870215,0.11687374,-0.0692652,-0.5556889,0.023914834,0.08158622,0.039746672,0.09110195,0.40336698,-0.2739564,-0.08625329,0.13699178,0.6269737,-0.40907717,0.036249433,0.7257877,1.1962173,1.0221546,0.03267808,1.3894018,0.24941099,-0.0829939,-0.04530292,-0.20947851,-0.37705517,0.26783013,0.29653004,0.06569848,0.38070577,0.18688916,0.039526742,0.40255076,-0.34275085,-0.07866552,-0.070038274,0.25511387,-0.07228667,-0.027498705,-0.51389444,-0.3106845,0.29310945,0.03837155,-0.07390659,0.3308863,-0.32647544,0.16916521,0.021498604,1.1307248,0.12648647,-0.021468094,-0.056115963,0.4833839,0.22782214,-0.14857273,-0.10947798,0.24171354,0.38703975,-0.17848007,-0.5561836,-0.13026746,-0.32530436,-0.2582974,-0.2339579,-0.3412061,0.13295032,-0.0085265385,-0.4008575,0.02222239,0.061630584,-0.4061435,0.3298545,-2.5520685,-0.20001051,-0.05442855,0.3102182,-0.061339088,-0.29820728,-0.31126875,-0.38823435,0.49347094,0.3730248,0.38260278,-0.5571769,0.6475776,0.41161856,-0.3863864,-0.10806847,-0.6813756,0.07906977,-0.11526235,0.3069137,-0.019034231,-0.12262833,-0.30491453,0.3511044,0.72628677,0.13283229,-0.07165742,0.16569135,0.51361233,-0.018841846,0.5686204,0.17061646,0.6032235,-0.14284791,-0.12424411,0.3307361,-0.33567217,0.19630419,-0.020605573,0.1802281,0.28132802,-0.58707553,-0.90053356,-0.5978937,-0.19144294,1.2396344,-0.3280047,-0.29016876,0.20743595,-0.10666716,-0.43387747,0.11714006,0.46397096,-0.25785384,-0.1576959,-0.71055734,-0.0018179034,-0.08113616,0.094314896,-0.03877463,0.16089404,-0.43104026,0.6299769,-0.14435744,0.5603681,0.36693308,0.22050102,0.04063999,-0.39828533,-0.0107818935,0.88783836,0.4043387,0.06429952,-0.16542833,-0.061476905,-0.28150377,0.069242366,0.04924398,0.687127,0.74621665,0.007421749,0.08837597,0.3885366,-0.11378402,-0.054837294,-0.13565575,-0.38137412,-0.017588003,0.17137241,0.6812646,0.5517407,-0.08365317,0.25396287,-0.086885944,0.22379544,-0.3049685,-0.5054984,0.47219205,0.6917697,-0.1803744,-0.30083826,0.60434806,0.4851906,-0.24241455,0.36863106,-0.46485695,-0.39100996,0.43899217,-0.08087588,-0.44139555,0.190051,-0.33680567,0.10548993,-0.8589496,0.2536872,-0.19502687,-0.6656535,-0.3934055,-0.16433266,-3.7431684,0.28844228,-0.17663145,-0.07082425,0.003159787,-0.1851007,0.43106732,-0.5288677,-0.4588937,0.007888266,0.078411974,0.49949613,-0.016007176,0.10166131,-0.2068727,-0.34869787,-0.30325958,0.13769475,0.17930166,0.17604157,0.07755579,-0.40501267,0.10198484,-0.36130455,-0.46053734,0.050078224,-0.41659886,-0.26577646,-0.057580434,-0.5016873,-0.30231968,0.7566935,-0.30809903,-0.08652667,-0.34324503,-0.01097118,-0.16648912,0.4598197,0.051553458,0.115766205,-0.008824672,0.007685326,-0.099122,-0.44470173,0.1856016,0.068858474,0.10536437,0.29382586,-0.047169633,0.075169936,0.6733281,0.5475166,0.00070750713,0.7863999,0.33595893,-0.07547349,0.25236887,-0.3252661,-0.42719245,-0.66205376,-0.37408462,-0.2801947,-0.49917945,-0.29618326,-0.08598212,-0.5193294,-0.8234764,0.45379406,0.020308955,0.10316348,-0.05404853,0.35013628,0.36786896,-0.051854126,0.07834131,0.11393224,-0.2532081,-0.4737161,-0.35264874,-0.6375543,-0.5365197,0.056631114,1.1778917,-0.23073888,-0.07786492,0.051710155,-0.23143546,0.20452131,0.019464804,0.23348467,0.30199528,0.34514594,-0.10714321,-0.79760796,0.15101947,-0.2587894,-0.14741835,-0.55018765,-0.080020264,0.8175689,-0.78448457,0.49012408,0.37924522,0.29255465,0.20641528,-0.61322606,-0.2971991,0.14415632,-0.21064404,0.7849043,0.21211283,-0.6850596,0.5649372,0.22458984,0.03365078,-0.56070405,0.49872175,-0.03987586,-0.25628063,0.0493154,0.3871265,0.0023994383,-0.14370047,-0.058460433,0.09392415,-0.39282137,0.2849162,0.32714358,-0.012620457,0.5373109,-0.23012808,-0.21094629,-0.595115,-0.2906849,-0.53811926,-0.23979361,-0.019980129,0.084396854,0.07940032,0.094345234,-0.10044738,0.5280526,-0.40134484,0.20983465,-0.19016387,-0.14743856,0.4162967,0.562293,0.25026378,-0.40641013,0.5547997,-0.03302518,0.014754193,-0.20665562,0.041873846,0.46830326,-0.017895665,0.36414242,-0.27552012,-0.08864653,0.23035584,0.6308711,0.109556556,0.2690883,0.23295514,-0.17443343,0.2704195,0.20957708,0.08711954,-0.025242975,-0.19750585,-0.115946785,-0.06752755,0.22369723,0.42987913,0.21026714,0.19457535,-0.14073119,-0.18099764,0.19342181,0.05542127,-0.132961,-1.1008551,0.46746174,0.04539763,0.5210269,0.5085668,0.07499652,-0.069720425,0.40288034,-0.23901953,-0.01165746,0.26299968,0.1306177,-0.34249535,0.4955218,-0.48955205,0.47342825,-0.18864958,0.01833855,0.13684419,0.09971703,0.43645737,0.9225138,-0.110543236,0.14336212,0.029608488,-0.21340421,0.011660546,-0.37036437,0.037637915,-0.55115044,-0.3387564,0.6917795,0.44971734,0.36026773,-0.26623592,-0.12943259,0.074465096,-0.27008963,0.02094104,-0.1912835,-0.21395716,-0.08680211,-0.61330366,-0.2509682,0.4542572,0.22600552,-0.074492626,0.07100151,-0.26471975,0.37354925,-0.028839128,0.07749466,0.022784602,-0.5501529,-0.113961525,-0.38500944,-0.35900062,0.27435437,-0.4006982,0.18583557,0.13544616,-0.0044741714,-0.14635244,0.18703993,0.24792446,0.64227784,0.049864184,0.0063256538,-0.26676273,0.066635825,0.28825697,-0.21134436,-0.29634887,-0.53722537,0.23768513,-0.61220604,0.34917387,-0.2230154,-0.08920104,-0.073011056,-0.10776632,0.08691665,0.42659453,-0.30786297,-0.03852092,0.070662804,0.05845248,-0.34152454,-0.15875128,-0.39532542,0.13736561,-0.0072896904,-0.11115072,0.07821464,-0.1390359,-0.056287177,0.46196643,0.20538117,0.265367,0.25003722,0.019506028,-0.263324,-0.034600895,-0.1283542,0.37179115,0.06584926,-0.13070993,-0.33322778,-0.3340138,-0.2219241,0.3477982,-0.10832284,0.053895824,0.030023456,-0.2213249,0.75751895,0.27356872,1.1671171,0.0121666575,-0.3295532,-0.018078277,0.60782117,-0.046189975,0.039640512,-0.23544142,0.86176836,0.6460865,-0.28613573,-0.12487374,-0.39147946,-0.24454126,0.12918815,-0.32992026,-0.35040167,-0.16527882,-0.5265399,-0.21030642,0.13317141,0.205985,0.056963716,0.008912499,0.0198817,0.05554056,0.13087982,0.35929778,-0.4826558,0.06572947,0.284943,0.19584033,0.055996396,0.22354157,-0.40785939,0.4360562,-0.7168269,0.11829821,-0.39903656,0.109807685,-0.017781338,-0.40443665,0.21813937,0.043142147,0.34368724,-0.31319502,-0.24237445,-0.23347668,0.5599159,0.14067402,0.2631994,0.5468596,-0.19715439,-0.037367456,0.04702552,0.51013935,1.3143559,0.030802522,-0.14595166,0.3672455,-0.27754903,-0.5840538,-0.020214552,-0.5582407,-0.068909,-0.041686464,-0.37034512,-0.34511757,0.35508293,0.14772223,0.013100207,0.0075994944,-0.46249747,-0.20816827,0.3442616,-0.13190742,-0.26300666,-0.2658689,0.19967565,0.53227425,-0.3982481,-0.36887938,-0.107613854,0.36710343,-0.18025623,-0.6802047,0.08460663,-0.31519952,0.43064648,0.28021044,-0.21340616,-0.053091083,0.26260728,-0.3993998,0.042007107,0.33934426,-0.3693988,0.027364489,-0.27724108,-0.0476172,0.8777547,0.07613747,0.12547459,-0.59745973,-0.4620605,-0.89636964,-0.36547503,0.24010031,0.20185892,-0.04771971,-0.60068935,-0.006566054,-0.19654155,0.094827734,0.07439291,-0.31501958,0.43056494,0.05732092,0.6217616,-0.0941463,-0.91472924,-0.019456562,0.16692637,-0.40081486,-0.50864476,0.56439704,-0.0131161045,0.7193707,0.08872662,0.05700623,0.029319618,-0.52148014,0.30017185,-0.40823784,-0.112309635,-0.69407356,0.103124306 +708,0.46161285,-0.41840595,-0.4894437,-0.12007296,-0.29079464,-0.0141175045,-0.33405703,0.35594085,0.20341153,-0.1473827,0.037102196,-0.19495685,0.0922425,0.5646807,-0.053659447,-0.6941519,-0.10015347,0.175842,-0.66294384,0.5423805,-0.48820665,0.20749314,-0.048033457,0.48424548,0.12232899,0.22442698,0.18942425,-0.07802006,-0.0432294,0.00548986,-0.14738424,0.27978107,-0.63681537,0.057782035,-0.2062959,-0.3202858,-0.025270155,-0.33480287,-0.53424746,-0.8251193,0.28515294,-0.8824306,0.6223682,0.0056108236,-0.42386574,0.2738609,0.069628194,0.31734422,-0.33013725,0.08959716,0.23221026,-0.12347996,0.03693477,-0.2751641,-0.25067285,-0.43027854,-0.53145754,0.032530095,-0.60503626,-0.10056448,-0.3487389,0.050873913,-0.36090404,-0.080679454,-0.017367464,0.29539722,-0.5389765,0.1421401,0.19785728,-0.03692318,0.48864192,-0.37777573,0.011022717,-0.17403993,0.22891347,-0.19107379,-0.31692198,0.47059423,0.21615234,0.5162412,-0.10396368,-0.22027089,-0.21397422,-0.04208089,0.2387033,0.4837833,-0.120928206,-0.5846182,-0.17310564,0.05696008,0.229754,0.20888928,-0.09376978,-0.3772752,-0.056571133,-0.033978518,-0.08173429,0.5127884,0.54139745,-0.18081915,-0.34148484,0.33742967,0.5239422,0.300783,-0.025402326,0.06977353,0.05900308,-0.606568,-0.17350508,0.16218415,-0.14711395,0.4161614,-0.18215634,0.25262132,0.69895643,-0.3010647,-0.07579982,-0.03495301,0.1475273,-0.07442439,-0.13027848,-0.22735497,0.18978672,-0.5030332,0.10082054,-0.114484586,0.727411,0.28286755,-0.77268493,0.36947337,-0.5801878,0.18310387,-0.17844772,0.46240166,0.8152942,0.45564574,0.2407439,0.7290869,-0.43381125,0.17207967,-0.06839687,-0.4703753,0.17163834,-0.303978,-0.11655388,-0.6083103,-0.13082455,-0.123257585,-0.13780366,0.10276421,0.43941647,-0.4761622,-0.027178418,0.07772561,0.87501097,-0.3619783,0.091616236,0.6772607,0.82387966,1.0686637,0.060745563,1.1978923,0.48915443,-0.19862936,0.26299438,-0.3379565,-0.89207774,0.3499619,0.40518734,-0.11345839,0.37175855,-0.0769582,-0.0432435,0.36024687,-0.45134035,-0.011901029,-0.28753275,0.35373512,0.021101091,-0.12356254,-0.43931597,-0.23554243,-0.14569093,0.14850077,-0.047462743,0.29700318,-0.27474317,0.39181206,-0.10180984,1.7158874,-0.0432378,0.020456646,0.0067613125,0.6655016,0.34737262,-0.1199217,-0.21963826,0.40928128,0.5024318,0.17772116,-0.63928664,0.070808284,-0.2777648,-0.33765936,-0.25159267,-0.4010138,0.1514179,-0.025140366,-0.35472903,-0.11024121,0.0330402,-0.2043535,0.5258099,-2.4295154,-0.24205944,-0.090073586,0.30875593,-0.2852983,-0.22895236,-0.18446973,-0.542966,0.4732538,0.36219385,0.5845851,-0.61226565,0.24882309,0.43939263,-0.5811078,-0.005498026,-0.57125413,-0.25513536,-0.013518184,0.45535606,0.037027467,-0.002774294,0.06040094,0.34079763,0.5041296,-0.060110617,0.04515981,0.23914792,0.47123787,0.008474375,0.31983152,-0.14202921,0.4213381,-0.35889846,-0.21497048,0.37746826,-0.11793144,0.17623207,-0.13094391,0.09295504,0.5030091,-0.561556,-1.074982,-0.6772918,-0.1708653,1.1631584,-0.33648762,-0.5517942,0.2769031,-0.24801074,-0.1516495,-0.025583152,0.38585955,-0.17368329,0.016610775,-0.83570117,0.11098728,0.08924588,0.2960799,0.08499158,0.0012742153,-0.2496738,0.6029459,-0.094870165,0.1522832,0.30824643,0.1909175,-0.24004495,-0.5620938,0.12479354,0.85426795,0.34434208,0.20797603,-0.33188847,-0.32818142,-0.22616246,-0.112352096,-0.01220469,0.4615079,0.7999788,-0.19337884,0.1587462,0.22426479,-0.08410752,0.02865326,-0.14630063,-0.38687468,-0.046375293,0.11773548,0.59365445,0.6402255,-0.15215883,0.6016942,-0.17323466,0.24251021,-0.010883545,-0.5758134,0.5744323,1.2786477,-0.10016961,-0.22393467,0.54775757,0.3521294,-0.40706617,0.538315,-0.6266752,-0.35820267,0.55062443,-0.27709147,-0.46925783,0.29407176,-0.28849274,0.028036179,-0.8146642,0.45798138,-0.2115452,-0.4723803,-0.53627056,-0.045351595,-3.501631,0.25911304,-0.22358835,-0.21029194,-0.03727936,-0.07640338,0.25417545,-0.4409925,-0.52546483,0.20474449,0.05337284,0.6604063,-0.07618807,0.19363543,-0.24701364,-0.15447028,-0.508601,0.125353,0.21354617,0.3861966,-0.015790116,-0.6411455,-0.120215654,-0.11523248,-0.5188498,0.14395416,-0.6596521,-0.41421345,-0.3086808,-0.6332095,-0.13290167,0.6397359,-0.16280961,0.0363431,-0.31560868,-0.03040185,-0.04306829,0.37693027,0.25736114,0.11194629,0.117511205,0.01105197,-0.11323416,-0.2900651,0.251104,0.14181344,0.157716,0.16395462,-0.021728098,0.11094781,0.7035659,0.6528144,-0.12682042,0.7891764,0.6239683,-0.14600189,0.37697092,-0.2869875,-0.2601459,-0.5125917,-0.36389396,-0.13883318,-0.47282907,-0.3966655,-0.12960298,-0.35586086,-0.6440229,0.5761862,-0.06310286,0.14369254,0.013492976,0.17195709,0.42217064,-0.19711031,-0.0154896015,-0.2127244,-0.20208241,-0.5724903,-0.21136226,-0.6296056,-0.5635732,0.12342842,1.0082654,-0.18870807,-0.07973907,-0.15066762,-0.26604575,0.041240036,0.005407359,-0.13834989,0.27113074,0.23036265,0.03807888,-0.8096402,0.4694269,0.08522372,-0.032299094,-0.71951973,0.11408358,0.7160791,-0.60145086,0.505421,0.16859949,0.04320274,-0.07778738,-0.5812343,-0.38649172,0.066710204,-0.1308059,0.41768265,0.07905864,-0.6333977,0.5354429,0.3491962,-0.5225717,-0.763223,0.43166715,0.040761773,-0.3435289,0.045081913,0.2592748,-0.09553615,0.05942407,-0.4179104,0.38770074,-0.31891474,0.30074006,0.21693714,-0.03434623,0.35218254,-0.15833327,-0.20396705,-0.79082876,-0.068194784,-0.46308276,-0.3825895,0.23559335,0.057255767,-0.05073201,0.047059946,0.023776975,0.3931487,-0.24018203,0.05736431,-0.10045176,-0.26466006,0.3751791,0.4330009,0.55551875,-0.4545093,0.63027763,0.08396589,-0.26365852,0.03779975,0.055090625,0.47507355,0.0984652,0.3640768,0.0740696,-0.17539401,0.3193419,0.83463776,0.13476558,0.5225782,0.060030792,-0.14478649,0.27589843,0.25269863,0.21681902,-0.018029992,-0.3234627,0.036020167,-0.1936358,0.1366588,0.5810967,0.18885486,0.24692185,-0.07392376,-0.37691522,0.03810214,0.16077788,0.18207906,-1.3722323,0.29089254,0.30607954,0.7949009,0.44127974,-0.025913808,0.07609755,0.7304602,-0.16651008,0.037062902,0.25769135,-0.077721,-0.6352727,0.6044653,-0.79892385,0.47737673,-0.024099167,0.012480597,0.07193696,0.16960375,0.47815323,0.8166558,-0.23662938,0.0712223,-0.027515959,-0.36818868,0.22994454,-0.5045572,0.15424141,-0.5126244,-0.42435628,0.49062046,0.46809775,0.25363684,-0.22952025,0.0043605417,0.018672032,-0.15267174,0.165858,0.040225618,-0.02461561,-0.14251499,-0.77670085,-0.13093397,0.6011614,0.14044169,0.16051278,-0.070081875,-0.014411466,0.23342092,-0.30180377,-0.04849429,-0.090473376,-0.7844663,-0.07109165,-0.27364483,-0.27069643,0.49972102,-0.15362433,0.24335337,0.17553934,0.012621357,-0.3805792,0.41050932,0.05668214,0.9524084,0.1332604,-0.22356729,-0.30631548,0.17909871,0.21237242,-0.19074419,0.018889215,-0.20499508,-0.3133431,-0.56170976,0.44468608,-0.10154472,-0.4232244,0.2429439,-0.22218733,0.057604473,0.5920988,-0.07570319,-0.26359913,-0.2137377,-0.20013078,-0.34664997,-0.2556751,-0.05779425,0.27157974,0.35343948,-0.18638436,-0.094674654,-0.011419172,-0.09637103,0.6786413,-0.07175435,0.3613048,0.27065635,0.32640243,-0.27018952,-0.0646201,0.23711093,0.5462877,0.18718617,0.0057768673,-0.20011589,-0.38907346,-0.35296777,-0.0730448,-0.23227946,0.25337973,-0.0007772882,-0.38981023,0.7763956,0.12799354,1.2130226,0.03569058,-0.24497195,0.28013822,0.5367604,0.11683072,-0.032165226,-0.49263558,0.83518684,0.54161054,-0.059745338,-0.15445063,-0.42660978,-0.15732439,0.1853225,-0.23276125,-0.14776826,-0.1314244,-0.6306942,-0.300392,0.27245092,0.2716557,0.15025766,-0.13145842,0.017262971,0.22382013,0.040037982,0.25930876,-0.442138,-0.003141864,0.3535107,0.29934385,0.08321047,0.11323593,-0.44467854,0.3116863,-0.33374962,0.14246558,-0.22546844,0.20123161,-0.13747475,-0.34527802,0.21642314,0.124267206,0.30214483,-0.37768942,-0.3393278,-0.24125531,0.63633996,0.18801497,0.13899796,0.5254116,-0.2868939,0.1416844,0.110217944,0.34041256,0.9683837,-0.45663786,-0.04074892,0.41539627,-0.4395046,-0.6741353,0.5196458,-0.22943969,0.19009747,-0.089817286,-0.36368936,-0.5663159,0.29186234,0.02160651,0.09352805,-0.08455818,-0.49506202,-0.09002358,0.35614875,-0.11861372,-0.24739696,-0.42975146,0.20766076,0.6320933,-0.28192255,-0.36029416,0.3047609,0.10653323,-0.2826604,-0.42543703,-0.1251319,-0.30707815,0.18920746,0.08800442,-0.31077486,-0.03554504,0.0921829,-0.53608096,0.14345,0.10003103,-0.42867765,0.08024323,-0.14275561,-0.115780585,1.0135565,-0.4687979,0.0376481,-0.69961154,-0.46912012,-0.9564952,-0.22289558,0.823096,0.23288305,0.084456705,-0.68759906,0.004117689,-0.045776922,-0.060406577,0.02546393,-0.4638198,0.30600116,0.03610245,0.35819393,-0.101659,-0.7915268,0.24072659,0.10968806,-0.38535732,-0.744883,0.54514366,-0.11031564,0.77332276,-0.0039008579,0.17751084,0.36461115,-0.4289162,-0.03228271,-0.20681787,-0.3120521,-0.58847004,0.09216038 +709,0.5338311,-0.12789077,-0.42834195,-0.10513975,-0.3129265,0.068509415,-0.093813166,0.4929866,0.14777862,-0.29456767,-0.17980894,-0.091091946,-0.0025065723,0.25435743,-0.12133292,-0.5370038,-0.007936306,0.13608818,-0.46827084,0.681625,-0.40286532,0.32325676,-0.09331531,0.20567471,0.06591655,0.2959761,0.1186592,-0.20903614,-0.12083696,0.0024147015,-0.21603954,0.21856654,-0.5690762,0.23792616,-0.11452717,-0.2736864,0.13607247,-0.28657272,-0.33695912,-0.6480641,0.22058119,-0.5411328,0.4584716,0.056957603,-0.20081109,0.13361886,-0.0631275,0.34233138,-0.31349486,0.11702332,0.23446816,0.057474058,-0.04955449,-0.11124918,-0.17093532,-0.45126092,-0.53314203,0.023305327,-0.33009952,-0.11635086,-0.18421385,0.10234238,-0.30475104,-0.12598862,-0.18138762,0.36853886,-0.5106847,-0.023444148,0.21271153,0.0028255172,0.2741217,-0.567102,0.034656305,-0.16475663,0.25370955,-0.19823101,-0.2496726,0.3232701,0.3199147,0.56306297,-0.012404431,-0.2301149,-0.20516849,-0.117783606,0.24371812,0.46145502,-0.12576644,-0.6136813,-0.08885108,0.024294876,0.19976385,0.123813435,0.0070327288,-0.45722598,-0.06585335,0.13490665,-0.15130673,0.26848274,0.45597082,-0.310337,-0.28970075,0.39019352,0.7102686,0.19255795,-0.024395507,-0.045379907,-0.06782378,-0.49475,-0.2541993,0.17229697,-0.2839024,0.48558939,-0.11353946,0.13302413,0.58163977,-0.16365324,-0.060063116,0.2043288,0.01843375,-0.07197831,-0.1456249,-0.32323325,0.0709868,-0.5835634,0.04106815,-0.062176343,0.66531,0.27688715,-0.78630376,0.32830432,-0.46449175,0.17443861,-0.18903594,0.5441974,0.73507416,0.3945425,0.246601,0.8044486,-0.52887267,0.18236019,-0.028265618,-0.39207286,0.15629983,-0.21786109,-0.20704052,-0.6054013,-0.03706599,0.028705683,-0.13459022,-0.036116708,0.11456406,-0.65964586,-0.0025629066,0.026861005,0.76846135,-0.3282353,-0.019689284,0.5463315,0.88317215,0.973319,0.09144756,1.2851807,0.11699591,-0.29506811,0.2802503,-0.47910726,-0.69703823,0.21123901,0.40820125,-0.30116463,0.30703583,0.060837872,0.02499117,0.41069242,-0.44280884,0.09567462,-0.18965127,0.39348248,-0.004428182,-0.18866915,-0.34602025,-0.27442825,-0.056360178,0.12693283,-0.114995,0.3844476,-0.23340556,0.12077355,0.100050285,1.6938524,0.0017431863,-0.0119689265,0.05217155,0.40053236,0.17037517,-0.1533505,-0.12002069,0.32271355,0.36050987,0.16415668,-0.5157261,0.087714255,-0.27971518,-0.5399605,-0.12832364,-0.26964143,0.060983192,-0.077087656,-0.34896883,-0.0715854,-0.07125488,-0.17623194,0.6847477,-2.6617632,-0.101670936,-0.12406626,0.16270041,-0.31769508,-0.36954004,-0.13209246,-0.59922993,0.32004738,0.3226368,0.54285836,-0.789596,0.3076424,0.25867522,-0.5095018,-0.014753934,-0.660982,-0.12294578,0.03639877,0.34495145,0.0943556,-0.06053768,0.0023720562,0.11297977,0.39576373,-0.05007297,0.06758695,0.16796014,0.35594946,0.19633721,0.4276132,0.02474337,0.5270604,-0.12879032,-0.073758006,0.34354958,-0.22156194,0.32761195,-0.15652613,0.046560436,0.329766,-0.39955738,-0.8847754,-0.7521204,-0.21128732,1.0952585,-0.14086075,-0.35333228,0.2347568,-0.2743016,-0.13844034,-0.16449147,0.25402707,-0.16685158,-0.17603451,-0.80583894,0.20064606,0.032924697,0.16429038,0.013335751,0.0034360262,-0.33961084,0.5731243,-0.021353358,0.4774146,0.43792656,0.10193079,-0.008547984,-0.4105692,-0.059081424,0.9092526,0.4724045,0.07422369,-0.122973494,-0.13282758,-0.44117904,-0.038602646,0.08751778,0.4363521,0.75356346,-0.096320644,0.035893116,0.29416257,0.05837003,-0.015750099,-0.1598733,-0.40510637,-0.020810515,-0.060821578,0.48487648,0.6031858,-0.29294837,0.46444184,-0.09007314,0.09531483,-0.0051758923,-0.5730043,0.60595995,0.99929404,-0.20387754,-0.13987736,0.46156722,0.43535417,-0.25190908,0.4568776,-0.57961154,-0.18314077,0.43322,-0.1015097,-0.2713416,0.1505304,-0.32392538,0.17937031,-0.8082393,0.47138906,-0.28624582,-0.4596148,-0.46110773,-0.07974216,-3.000403,0.22888671,-0.25360882,-0.12899132,-0.0057604834,0.046802957,0.15173082,-0.59490025,-0.60047925,0.24739194,0.136198,0.54714155,-0.056323852,0.031486776,-0.16596062,-0.26141846,-0.3640299,0.08906753,0.06991436,0.34729517,0.0034742206,-0.53087366,-0.14083478,-0.20038882,-0.3938445,0.1651445,-0.6350508,-0.41685617,-0.17239232,-0.5695923,-0.36565512,0.70285434,-0.25087568,0.002836932,-0.17226101,-0.012580998,-0.13035476,0.3315093,0.08065632,0.017024072,0.00090919994,0.010050016,-0.020733885,-0.30616948,0.198801,0.113368526,0.29381078,0.30858925,-0.021642417,0.24662031,0.58388346,0.64754534,-0.051303342,0.7676703,0.63456076,-0.2895732,0.3141148,-0.40117878,-0.17663848,-0.46492222,-0.48862478,-0.18652518,-0.4828965,-0.3974653,0.074695736,-0.41270825,-0.69591963,0.33638352,-0.047259774,0.16680506,0.0030645225,0.17517796,0.54421204,-0.24696742,0.060453385,-0.09123316,-0.17399389,-0.60552317,-0.27963892,-0.6792518,-0.42521006,0.26443505,1.2126573,-0.27848583,-0.12511511,-0.02846893,-0.17604496,0.060506925,0.11801249,-0.16981494,0.1572389,0.34433192,-0.14042181,-0.6872914,0.42476177,0.009692945,0.0038916487,-0.49288154,0.1369467,0.52736866,-0.65700537,0.39293194,0.29267114,0.071658894,0.10765894,-0.46908778,-0.19043155,-0.040574387,-0.19718625,0.4338428,0.07435425,-0.61251175,0.3974621,0.3666648,-0.29710126,-0.6242873,0.51116365,0.0031591123,-0.21697521,0.029114857,0.35378337,0.10454248,-0.035113666,-0.2564329,0.23020162,-0.47204322,0.25890994,0.43833423,-0.110517785,0.13061199,-0.094242774,-0.28630942,-0.7862731,-0.11669645,-0.4742674,-0.26732764,0.23236986,0.12298706,0.08201061,-0.037166804,0.25956503,0.41144678,-0.29498586,0.10151767,-0.0016935989,-0.23688333,0.35230303,0.4114504,0.38489568,-0.393211,0.44156513,0.023766503,-0.093196504,-0.19543765,0.049252175,0.39078075,0.15827143,0.33936986,0.025883384,-0.19772232,0.31636405,0.7420827,0.21263725,0.25514615,-0.107004,-0.25556254,0.1927207,0.107798636,0.2738872,0.15021667,-0.43588364,0.05205785,0.07027576,0.19802493,0.41669214,0.22362064,0.19851668,-0.04761107,-0.29988593,0.031575676,0.116176315,-0.037094094,-1.277654,0.48400298,0.26211327,0.6894467,0.6356657,0.0033141896,-0.009561133,0.46711105,-0.17282525,0.22920276,0.41131797,-0.12866677,-0.4982588,0.45659068,-0.6340278,0.50240064,0.00054584444,0.045759633,0.080510594,-0.07785387,0.28765845,0.85398424,-0.24754754,0.04447779,-0.20064494,-0.24242783,0.15995052,-0.27496243,0.03537947,-0.6379193,-0.37481388,0.67205656,0.44974893,0.3302781,-0.088963404,-0.024429651,0.16537058,-0.15766996,0.25629124,-0.024264324,0.19972417,0.11343292,-0.6364416,-0.17124662,0.5189347,-0.24478585,0.03777919,-0.039933167,-0.16866487,0.1680516,-0.3413539,-0.017714158,0.005634738,-0.5727585,-0.047602728,-0.16670889,-0.1310648,0.60719275,-0.037628904,0.21798433,0.11155168,0.07520627,-0.27248478,0.4197775,0.06006964,0.66541123,-0.1261548,-0.16500105,-0.40060866,0.15485163,0.18933032,-0.14977759,0.048791442,-0.12447107,0.00908722,-0.60682416,0.4309718,0.10820372,-0.23480234,0.041047722,-0.24156734,0.025390686,0.5137106,-0.13802525,-0.2659763,-0.13685137,-0.12295436,-0.16655454,-0.18075933,-0.15576825,0.21916418,0.27191716,0.054710053,-0.08592764,-0.12991637,-0.1685456,0.3992925,0.059943527,0.19325608,0.19348699,0.071188994,-0.45061716,-0.21802315,0.093329914,0.3061721,-0.06080942,-0.11886223,-0.25866958,-0.35010263,-0.38133943,-0.10218012,-0.19678244,0.37834376,0.07389634,-0.2433385,0.68438065,0.08642289,1.416324,0.08768973,-0.24286957,-0.025149794,0.64342195,0.095390886,-0.032975204,-0.30082136,0.851165,0.5399097,-0.034458067,-0.2057074,-0.36783817,-0.11001865,0.11884646,-0.14604388,-0.02339517,0.018989675,-0.47845444,-0.39471805,0.31498113,0.16565982,0.16100197,0.0028891228,-0.11388924,0.1725555,0.049733117,0.2693784,-0.332812,-0.14261183,0.25904447,0.22866577,0.16632155,0.13956492,-0.5346517,0.37616703,-0.4943024,0.12761056,-0.08093878,0.18573661,-0.24108958,-0.22068076,0.19753768,0.0910486,0.27523565,-0.29251492,-0.5565233,-0.26812878,0.58790064,0.14666101,0.2214549,0.7293645,-0.26531196,-0.06811139,0.0018925071,0.4519425,0.9923396,-0.26997417,-0.09224387,0.47941494,-0.20478073,-0.5609967,0.2922341,-0.25925773,0.13901696,0.03750571,-0.27929094,-0.5865785,0.24492744,0.12444312,0.11238284,-0.00260311,-0.6582551,-0.18056445,0.11488658,-0.2565805,-0.25805375,-0.33920377,0.38419586,0.8345099,-0.49445093,-0.33854586,0.17551552,0.17265564,-0.20915763,-0.42185187,-0.1139905,-0.38543677,0.28031465,0.20975296,-0.36333388,-0.100766644,0.21526377,-0.37582582,0.095094316,0.17998648,-0.4319276,0.19295576,-0.24938154,-0.08772221,0.90262914,-0.18651468,0.13873887,-0.38177016,-0.3157933,-0.8011882,-0.31241888,0.44313532,0.19945167,-0.0377519,-0.62653553,0.0051639993,0.059038144,-0.01955675,-0.121219814,-0.30600208,0.53418106,0.08818586,0.27310246,-0.09472078,-0.83522576,0.039754186,0.093709126,-0.10277929,-0.4642893,0.4671207,-0.047380608,0.8166529,0.07659845,0.12025292,0.26293027,-0.4646215,-0.0688921,-0.2728821,-0.14038223,-0.65191567,0.10299489 +710,0.23793477,-0.2978302,-0.3655396,-0.2060988,-0.30797598,-0.11384609,-0.14689589,0.47778973,0.18826987,-0.08994768,-0.15265249,-0.028209042,0.05026316,0.39591807,-0.19251312,-0.48020718,-0.17902015,0.04042634,-0.55150634,0.46197766,-0.54085666,0.22362041,0.07137367,0.40224773,0.05923197,0.45574766,0.21733013,-0.07931493,-0.04330205,-0.13583122,-0.15449204,0.14546442,-0.36655,0.16550438,-0.2573838,-0.26044595,0.12255852,-0.49820906,-0.22656193,-0.6437905,0.025909,-0.77393156,0.38823843,-0.09485766,-0.19589844,-0.0798724,0.15296635,0.26506796,-0.32682475,-0.02462686,0.22963199,-0.014898593,0.03749827,-0.230538,0.06044113,-0.37597707,-0.37270373,-0.050333582,-0.5073904,-0.33749813,0.07030428,0.16155224,-0.29427117,-0.013776746,-0.07248811,0.2988866,-0.5180055,-0.20075302,0.2963378,-0.31875262,0.413076,-0.44289705,0.039573677,-0.093494035,0.41192514,-0.044136986,-0.15689631,0.34498787,0.22913498,0.24422485,0.13373451,-0.16066235,-0.19939454,-0.16876332,0.009563979,0.5186345,-0.1425458,-0.34042376,-0.20822407,0.08281089,0.23547283,0.29914215,-0.003358364,-0.15973479,-0.07081521,-0.22081415,-0.25377294,0.24855289,0.40831712,-0.19416425,-0.1708271,0.28830895,0.44508445,0.24543849,-0.23913865,0.006968995,0.029299699,-0.43676335,-0.19783612,-0.06843474,4.3241183e-05,0.5727365,-0.0745803,0.23718157,0.82445335,0.004358999,0.07088869,-0.03829509,0.037777748,-0.2737251,-0.2290174,-0.18314981,0.12717214,-0.4280952,-0.0023462295,-0.15326767,0.620599,0.1385965,-0.7497031,0.38785404,-0.47466433,0.0570656,-0.14641415,0.48108524,0.41219845,0.45386398,0.28918427,0.6973169,-0.22353704,0.22193232,0.03642823,-0.4013344,0.16188702,-0.26692703,-0.07146694,-0.5231914,0.09770228,0.01828771,-0.0029339015,0.048993647,0.07476115,-0.5693115,0.017014734,0.26385203,0.69891185,-0.2523588,0.0006720185,0.6856804,1.1661084,0.932326,-0.08137739,0.9448731,0.21361008,-0.14205144,0.14459713,-0.2366205,-0.61723554,0.14574696,0.48551998,0.08388639,0.31219858,-0.10625922,-0.08163151,0.3331056,-0.37238416,0.15197872,-0.031427823,0.21464255,0.061274584,-0.08507123,-0.6256055,-0.2534028,-0.01568189,-0.03024354,-0.025231838,0.22124979,-0.14252421,0.4575841,-0.07721744,1.3683665,0.04441126,0.101260886,0.12429353,0.6678206,0.24239798,-0.11069355,-0.0911409,0.45749295,0.32669163,0.07356727,-0.46088448,0.27137095,-0.21519896,-0.48457572,-0.091399916,-0.35517344,-0.05215629,0.016221225,-0.5080875,-0.07620093,-0.019836264,-0.1694295,0.36255616,-3.1404216,-0.16976443,-0.14876355,0.2480655,-0.31256148,-0.067394845,0.07233342,-0.38766614,0.15537475,0.40634745,0.49935195,-0.6248957,0.43963477,0.47745928,-0.45413637,-0.15656003,-0.6483045,-0.11239942,0.0055248877,0.49055487,0.21145551,-0.012914258,-0.09545849,0.2292674,0.5500408,-0.0052716257,0.23104955,0.26023203,0.2771389,0.17437474,0.4129291,-0.025852561,0.5266641,-0.25795856,-0.059994545,0.25460684,-0.31984475,0.18534428,-0.042962693,0.13084717,0.42079926,-0.41611168,-0.81953883,-0.5231504,-0.23858973,1.1005569,-0.2621988,-0.3476296,0.26053545,-0.08221087,-0.1324737,0.045682847,0.42808226,-0.08663012,0.26943004,-0.6003067,0.047074936,-0.046940327,0.09727899,0.02936886,-0.088833876,-0.3680359,0.58382404,0.037558675,0.627534,0.3782392,0.22894846,-0.13704659,-0.44378802,0.0096980175,0.6068022,0.3679971,-0.016245993,-0.09139827,-0.08087607,-0.13353808,-0.1445988,0.074172825,0.44063243,0.7886329,-0.030330746,0.20931609,0.22805396,-0.06619803,-0.03766795,0.011963457,-0.15538791,0.0780693,0.15321033,0.41583106,0.7366775,-0.13966434,0.37156144,-0.25191107,0.5384905,-0.13412446,-0.5272364,0.49267787,0.34339148,-0.18698606,0.022707429,0.49307984,0.533502,-0.37529135,0.45357043,-0.5985474,-0.25046477,0.5658896,-0.08227156,-0.50131375,0.24069694,-0.1777183,0.2647502,-0.94067025,0.42860425,-0.19081637,-0.503857,-0.4207656,-0.16856335,-3.331393,0.10820345,-0.113601066,-0.31773463,-0.16630952,-0.100077525,0.2740826,-0.753852,-0.57544935,0.14415391,0.21359688,0.45276424,-0.0782467,0.09662101,-0.30996737,-0.037352163,-0.103683926,0.2567443,0.016061282,0.24799684,-0.20222244,-0.48289046,-0.22873798,-0.12943381,-0.56985855,0.23128933,-0.5684865,-0.4416134,-0.08335241,-0.5426847,-0.30311388,0.52663475,-0.21783844,-0.0015186071,-0.15436457,0.06720631,-0.23042059,0.18158156,0.15134212,0.16167404,0.050728373,0.0539516,0.19290093,-0.3321659,0.43067196,0.09925048,0.4520925,0.12702154,-0.013174681,0.17516966,0.6694689,0.5058075,-0.22132029,0.83425105,0.38901773,-0.16199675,0.31603327,-0.32883006,-0.24939059,-0.4707529,-0.4525741,0.020199755,-0.3129429,-0.5722443,0.030697938,-0.31637323,-0.70741767,0.5671177,0.010318637,0.24586469,0.011114661,-0.02115932,0.34373203,-0.25068215,0.03841049,-0.007576847,-0.06057871,-0.53085285,-0.22522071,-0.6644772,-0.5185447,-0.024846554,0.9288973,-0.24787532,0.07780741,-0.067658044,-0.318294,0.026176574,-0.06142307,0.116121426,0.3117648,0.20226319,-0.12194004,-0.6765203,0.449142,0.007867475,-0.07783943,-0.2761911,0.029753255,0.65250504,-0.7083649,0.40205663,0.4320304,0.0590822,-0.08447259,-0.4648837,-0.24620768,-0.14250214,-0.087862454,0.5644321,0.06565532,-0.68623126,0.51176465,0.20664324,-0.50633705,-0.588569,0.37934774,-0.17664273,-0.13549943,-0.06093847,0.2179109,-0.041865848,-0.15078357,-0.21571757,0.1751043,-0.4118578,0.2886864,0.25522268,0.06442637,0.47152632,-0.053666994,-0.12487765,-0.6503207,-0.1261934,-0.48534736,-0.18569228,0.33277708,-0.034555867,-0.043387644,0.07520156,-0.013738632,0.29717445,-0.3163851,0.041378837,0.17832834,-0.31900558,0.32582673,0.43426034,0.38999864,-0.39136145,0.49117577,0.13654606,-0.08674031,0.040579736,-0.110405,0.361389,0.029076863,0.31978887,-0.1922055,-0.0860887,0.39277795,0.6566204,0.2292323,0.3630254,0.02029155,-0.16834483,0.37442666,-0.020819085,0.19625483,0.12344352,-0.39213684,0.0794984,-0.17401733,0.17860132,0.38609028,0.2741877,0.29057586,0.06295325,-0.25077638,0.09326114,0.26750273,-0.11814501,-1.0923055,0.4195502,0.32042268,0.6943073,0.37281996,0.2361022,-0.17277762,0.8330742,-0.27462435,0.08642847,0.46259883,0.10863238,-0.58462864,0.72872823,-0.6352965,0.5123861,-0.09813051,-0.14706819,0.15127906,0.03826561,0.4234742,0.6414758,-0.085553214,0.036432333,-0.0770853,-0.23786946,-0.094312504,-0.3579262,-0.017106665,-0.40930966,-0.28096533,0.66216093,0.38831243,0.29163787,-0.07591912,-0.01208152,0.13675158,-0.032130435,0.32412472,-0.031890605,0.031100333,0.0250765,-0.51680225,-0.27219746,0.5775246,0.013039694,0.13724677,-0.21826704,-0.33014542,0.02258555,-0.22387631,-0.083906285,0.026589947,-0.5543786,0.17492512,-0.12503447,-0.34882373,0.47227702,-0.31718883,0.17314757,0.0116795935,-0.06887092,-0.11279834,0.08124984,0.010263809,0.75573903,-0.06869482,-0.24642546,-0.29535723,0.06545138,0.20409432,-0.21490236,-0.037215054,-0.4916774,0.0045722644,-0.44905415,0.5251303,-0.017236432,-0.42057997,0.16840288,-0.16168836,-0.01127015,0.46881562,0.023359282,-0.19230385,-0.12178023,0.058254745,-0.40425694,0.041349567,-0.36995474,0.2800477,0.4123902,-0.07899479,-0.005551553,-0.12679024,-0.0020229022,0.56006646,0.0021698454,0.52424365,0.1728956,-0.14442594,-0.30340013,0.03318247,0.03847972,0.37996933,0.15159398,0.12345989,-0.3858249,-0.32973588,-0.222013,0.033625007,-0.1663861,0.23832722,0.083905704,-0.082177326,0.8240543,-0.047305703,1.2667607,0.015614617,-0.37679163,0.11386483,0.46610492,0.033441897,0.09888799,-0.4289061,1.0029887,0.5996069,-0.18938036,-0.1276219,-0.42768273,-0.15648855,0.28921586,-0.27156743,-0.16222209,-0.033521056,-0.61114806,-0.28009272,0.2829885,0.10125878,0.18345697,0.037101578,0.0052063465,0.034986593,0.14752078,0.2801746,-0.52255493,-0.18604419,0.29562065,0.25956902,-0.06535555,-0.0076437513,-0.5528849,0.41892183,-0.5341741,0.21278086,-0.42340043,0.13978793,-0.28508556,-0.3976794,0.030481128,-0.11410994,0.40016273,-0.30937874,-0.47795781,-0.013568107,0.47627822,-0.024730342,0.118995205,0.53349584,-0.23821998,0.096938476,0.023488993,0.47053063,1.0410255,-0.48056936,0.008765173,0.4117119,-0.35334054,-0.6610399,0.27158397,-0.23329268,0.030910682,-0.17315902,-0.40057033,-0.57400876,0.3279995,0.25278002,-0.0046439585,-0.0034665545,-0.42578843,-0.08338138,0.2926783,-0.3531212,-0.3192983,-0.38823375,0.3084935,0.57581717,-0.32146925,-0.4956177,0.04737904,0.24951905,-0.24862902,-0.43365568,-0.038491275,-0.10829022,0.30432796,0.13745359,-0.34474528,-0.1017722,0.12897785,-0.32530835,0.17332926,0.24634714,-0.3188991,0.15173998,-0.26792696,-0.03710859,0.93661475,-0.17714325,-0.1886551,-0.6360249,-0.48023865,-0.87326556,-0.5804106,0.2893248,0.2572122,-0.07889876,-0.3687776,0.056411073,-0.09053046,-0.16284439,-0.12413833,-0.40312836,0.41151544,0.095059805,0.49370018,-0.27872363,-0.7398558,0.17724332,0.20026551,-0.058807336,-0.54892653,0.57225317,-0.056961436,0.7678428,0.0770229,-0.0099396445,0.08047212,-0.25765976,0.06181907,-0.33295745,-0.14376752,-0.6214222,0.086626105 +711,0.5911949,-0.35413978,-0.67656314,-0.011729882,-0.45889723,0.12720288,-0.5233584,0.24229428,0.27479738,-0.3435592,-0.14552918,0.1486965,-0.09380333,0.19721791,-0.05029334,-0.53761095,-0.16854127,0.20969811,-0.7805211,0.45377868,-0.4319987,0.3937958,0.042605978,0.41450164,0.16062142,0.24775778,-0.17440858,0.085569315,0.055416528,-0.3045471,0.13376491,0.20608854,-0.6869369,0.0828272,-0.34655377,-0.5715733,-0.106085315,-0.50932926,-0.27028844,-0.7650346,0.21284397,-0.83372855,0.78172404,0.019455548,-0.28708577,-0.10973577,0.13871376,0.3520824,-0.12070424,0.19387676,0.39505112,-0.25972268,-0.13478811,-0.37185276,-0.04983404,-0.28614438,-0.37812364,-0.11638471,-0.52945703,-0.060093597,0.057478283,0.2186025,-0.21695386,0.012603063,-0.34902653,0.22854097,-0.42529482,0.12000414,0.2663067,-0.052610524,0.31045416,-0.8681543,-0.037996586,0.021800641,0.4771166,-0.0020865821,-0.2979843,0.18302028,0.22467814,0.460159,0.09794827,-0.20468841,-0.21759978,-0.06269194,0.07527898,0.51554066,-0.29842076,-0.0016073355,-0.2224931,0.027021408,0.67174935,0.27717298,0.07861277,-0.30788553,0.12359493,-0.2360593,-0.0071211685,0.54651016,0.511098,-0.2002903,-0.1316432,0.08471613,0.6647333,0.6041666,-0.13046572,0.058304384,-0.02264741,-0.48774546,-0.1951814,0.17986885,-0.08411242,0.29786447,0.035387937,0.27811623,0.5233199,-0.033638284,-0.036348574,0.25099784,0.0020263286,0.047540035,-0.21729437,-0.32866624,0.2550593,-0.70674634,0.11534555,-0.37137258,0.46517196,-0.07349547,-0.72128487,0.33467716,-0.8155848,0.0071715494,-0.03470812,0.5664497,0.8792854,0.62901837,0.124738656,0.8299418,-0.23157032,0.11145957,-0.1313937,-0.0586425,0.053196806,-0.17310025,0.05187971,-0.48226908,0.096336566,-0.42385265,0.12943381,0.09251705,0.5054853,-0.60934806,-0.22422288,0.1706991,0.7039067,-0.2523929,0.23382658,0.86406446,1.0869697,1.0366391,0.14526585,1.1690427,0.23933126,-0.37129623,-0.21858515,-0.101040855,-0.7218028,0.28291973,0.39922053,-0.27528745,0.4707224,-0.13190451,-0.07813485,0.45705524,-0.41687855,-0.10414762,0.02232268,0.2213947,0.05926256,-0.19612744,-0.38184926,-0.071701005,-0.005117655,-0.025868008,0.05861892,0.27055416,-0.4556349,0.38399032,0.056113675,1.0895412,-0.3421966,0.02271042,0.0978607,0.19033456,0.3302043,-0.25546622,-0.035483398,0.24704236,0.62063086,-0.12856454,-0.68786114,0.23483308,-0.3764953,-0.25351068,-0.21141602,-0.12721263,-0.4269849,0.05009144,-0.5007888,-0.4321815,-0.0776405,-0.18559355,0.2963016,-2.4370775,-0.3183516,-0.060347285,0.43001807,-0.1874999,-0.32507798,-0.25132176,-0.4185785,0.29923576,0.08908992,0.42420498,-0.5104719,0.66134304,0.591308,-0.71891505,-0.19877894,-0.5728904,-0.13289176,0.21072839,0.3096577,-0.042092945,-0.21484232,-0.13920356,0.09025641,0.6845078,-0.123890765,0.082642235,0.50932324,0.60648125,-0.17129168,0.4527827,-0.094123654,0.5210105,-0.5559014,-0.29469994,0.45428964,-0.32141754,0.26989722,-0.15133919,0.10342272,0.6397858,-0.3987159,-0.85449374,-0.5416345,-0.10725303,1.1765239,-0.16669606,-0.6647823,0.0139869405,-0.58405936,-0.30094534,0.09939992,0.7028498,-0.09615544,-0.0269134,-0.8422935,-0.12367685,-0.27261335,0.25931776,-0.040041428,-0.08517302,-0.40252203,0.76189834,0.093179375,0.68410844,0.29288423,0.3094084,-0.020346714,-0.32487154,0.09752585,0.7783237,0.51020324,0.12774526,-0.30892685,0.036772277,-0.09547519,0.08513296,-0.059507515,0.7609705,0.6000676,-0.14309503,0.18445134,0.22906163,-0.033075936,0.14074597,-0.2896629,-0.29498267,-0.21225788,0.11960257,0.3651017,0.7782641,0.06891317,0.4755179,-0.13250653,0.2217675,-0.25551358,-0.6046419,0.6594407,0.55100656,-0.2735727,-0.1510809,0.5622213,0.5040399,-0.36605915,0.5989308,-0.73299986,-0.2867956,0.48295778,-0.20044996,-0.36703154,0.4358013,-0.41964495,0.3169235,-0.8788404,0.3273165,-0.6024911,-0.41260195,-0.58204854,-0.12031199,-1.9854035,0.38920182,-0.13656977,-0.01117445,-0.5555917,-0.34633937,0.44036838,-0.55116594,-0.7981419,0.08722332,0.27458385,0.66368353,-0.13641798,0.054829735,-0.09484902,-0.50701725,0.0068349103,0.3229631,0.27349246,0.2167528,-0.17593433,-0.20628269,-0.13304873,0.027023673,-0.33272326,-0.037606824,-0.632526,-0.47462657,-0.028761042,-0.25230834,-0.04867391,0.5236451,-0.35909384,0.037977118,-0.23092367,0.06567307,-0.06537801,0.24241808,0.055704415,0.28411868,0.16250221,-0.23414591,0.11549937,-0.2661413,0.4072378,0.0013995629,0.1558147,0.24799468,-0.16105278,0.24879558,0.38860592,0.77376115,-0.1965631,1.12998,0.383421,-0.14950444,0.40001196,-0.3644662,-0.48922032,-0.6282419,-0.07712039,0.15336493,-0.42806333,-0.5449783,0.15564601,-0.33923626,-0.81389356,0.523062,0.04723215,0.22287863,0.110333495,0.5325031,0.47564924,-0.2612868,-0.1505323,0.0067946683,-0.20451857,-0.32415283,-0.30307814,-0.6804393,-0.44592777,-0.22281338,1.152241,-0.31087434,0.2574647,0.2731241,-0.2254776,0.3132617,0.21084929,0.079347305,0.057862025,0.53041947,0.23247483,-0.586157,0.15411904,-0.05009701,-0.21467106,-0.50586617,0.190174,0.8113946,-0.69103825,0.45704255,0.39867088,-0.01396715,-0.26377204,-0.6147556,0.0807703,0.19260715,-0.2536078,0.5580982,0.38145286,-0.5953767,0.4462587,0.55456096,-0.3441653,-0.78629017,0.33687618,0.0013327805,-0.3306726,-0.30384344,0.38800937,0.09917349,-0.081347294,0.04577744,0.36241052,-0.36570853,0.30214658,-0.0145853115,-0.22311746,-0.0631729,-0.17608616,-0.34752655,-0.81972474,0.23972276,-0.5729573,-0.33894762,0.44403744,-0.17311737,0.15882652,0.25319755,0.434571,0.5404866,-0.34132355,0.14523098,-0.26722175,-0.32123607,0.31462896,0.5141619,0.37138286,-0.32554504,0.45936483,0.22545862,-0.20199493,0.2262472,0.23347941,0.4163648,-0.09370173,0.4853986,-0.23895751,-0.09384468,0.22622274,0.8657125,0.10151983,0.31751567,-0.0919387,-0.08132999,0.17829807,0.018157529,0.25480425,-0.16356991,-0.38432354,-0.059001062,0.034234848,0.11769143,0.552426,0.2738221,0.08233272,-0.115304515,-0.26893875,0.014026402,0.34450838,0.06836863,-1.40904,0.55677646,0.13590196,0.9518706,0.37696567,0.14164215,0.08128222,0.50282836,-0.12726344,-0.013200856,0.41127807,0.07937591,-0.3259083,0.5549772,-0.6414208,0.20653501,-0.20292066,0.10394998,0.112847365,-0.17845678,0.47068384,0.8837125,-0.20338629,0.04450921,0.060924727,-0.19076237,-0.17319737,-0.20768763,-0.08468197,-0.44034922,-0.4887717,0.9852159,0.37746164,0.53247255,-0.37798983,0.0007077925,0.118840806,-0.17159043,0.2604969,0.05891156,0.06678819,-0.0076713655,-0.42153835,0.081813246,0.5308394,0.041797932,0.02449164,-0.28502968,-0.4046964,0.14102203,-0.13402681,0.22613311,-0.03224412,-0.822493,0.10989387,-0.7452383,-0.6699235,0.2698145,0.13386303,-0.19108142,0.22444136,0.033703543,-0.080048166,0.47303337,-0.039490435,0.8156471,0.034011327,-0.1575459,-0.25292134,0.34399727,0.23104899,-0.28548077,-0.02038516,-0.19682533,0.3632212,-0.4072792,0.59619737,-0.13721357,-0.39901072,0.21476921,-0.04669273,-0.033338785,0.5687256,-0.25167757,-0.1971665,0.15343532,-0.14848374,-0.48488215,-0.37830713,-0.26929218,0.02957553,0.3652383,0.072992794,-0.26429054,-0.29167515,-0.22365211,0.49061635,0.16412526,0.5799059,0.52512544,0.07691279,-0.5032696,0.15410826,0.30699533,0.44597292,0.06250174,-0.13582171,-0.56960225,-0.55745876,-0.33813426,0.62495035,-0.13139313,0.22858664,-0.07835548,-0.29487276,1.1102958,0.10991435,0.965527,-0.018188788,-0.21350399,0.01291328,0.6346403,-0.40772963,-0.2253641,-0.5038686,0.85094684,0.61045015,-0.17712171,0.15951316,-0.30004138,-0.22507724,0.2167434,-0.49184275,0.1464095,-0.116584845,-0.6578475,-0.3692098,0.067323916,0.31769398,-0.106212266,-0.28255442,0.055388194,0.20524985,0.055053588,0.001191555,-0.7297313,-0.3589945,0.19077402,0.21842195,-0.24874566,0.14979483,-0.49800017,0.24947889,-0.7788089,0.08937478,-0.5409695,-0.005507366,0.055248603,-0.38448346,0.104499824,-0.06053555,0.11006764,-0.5462103,-0.26193103,-0.12219601,0.14716092,0.04806258,0.19440868,0.5528008,-0.26730582,0.105580375,0.15745163,0.62550133,1.0808463,-0.3541815,-0.071128726,0.3122315,-0.48148564,-0.55169785,0.19726685,-0.44932362,-0.030998083,-0.09400715,-0.33941796,-0.53677976,0.313822,0.15979594,0.21939278,-0.24875267,-0.8671147,-0.059749465,0.34758097,-0.2793847,-0.18452096,-0.2247383,0.14096166,0.73478186,-0.08326597,-0.35391235,0.016676486,0.44700396,-0.42545888,-0.4423683,0.2322935,-0.43259022,0.27850297,0.12763324,-0.29883254,-0.058774017,0.069993585,-0.7012682,0.048278477,0.27430418,-0.31298,-0.07495915,-0.3350518,0.13410926,0.8094936,-0.3471256,-0.24850717,-0.2425502,-0.55627626,-0.7906307,-0.2996759,-0.20844258,0.41538927,0.06942735,-0.74389374,0.2131571,-0.25408235,-0.27318484,-0.0009296353,-0.35506848,0.46215338,0.20807558,0.71800697,-0.48219875,-0.9671965,0.28310972,0.26175883,-0.26568592,-0.3907916,0.5105629,0.15062946,0.8866081,0.041925,-0.11369933,-0.1754292,-0.4727831,0.32052577,-0.21227987,-0.05604069,-0.95248544,-0.038519505 +712,0.60457456,-0.2569849,-0.55922097,-0.026534498,-0.2632171,0.099666074,-0.12123456,0.48357487,0.2614137,-0.38663173,0.047841273,-0.21609747,0.0786138,0.30915064,-0.12958422,-0.27548814,-0.042477407,0.120163836,-0.34016737,0.54256546,-0.49858037,0.23487377,-0.07947982,0.43573487,0.20654392,0.19376105,0.027759783,-0.09586414,-0.36292732,-0.18317473,-0.019526454,0.3581199,-0.3878224,0.2656045,-0.1438044,-0.2605402,0.09627888,-0.3348006,-0.46806794,-0.6383254,0.19407234,-0.70862013,0.48987904,-0.02825359,-0.2649992,0.043567497,0.014724668,0.25663915,-0.2393782,-0.0071988245,0.08059646,-0.108009696,0.0892077,-0.361694,-0.08683447,-0.30869764,-0.4182538,0.023594337,-0.35999292,-0.020393506,-0.3178959,0.14239863,-0.33244428,-0.061715126,-0.15822604,0.48196304,-0.47569823,0.2934976,0.031893946,-0.2139706,0.3339592,-0.5279446,-0.38245296,-0.15452453,0.09069473,-0.06446936,-0.29805186,0.3803357,0.3280095,0.32568124,-0.029302696,-0.051888857,-0.38167563,-0.071033545,0.19206765,0.5448199,-0.1786331,-0.5961563,-0.14043388,0.0152049735,0.11448808,0.25467968,0.13534662,-0.443143,-0.05296685,0.1621383,-0.28079456,0.39885965,0.49947897,-0.30698776,-0.04335323,0.2665314,0.4434956,0.30112118,-0.08524947,-0.17367503,0.025291367,-0.48277035,-0.14912285,0.07032203,-0.03232172,0.56398153,-0.15059815,0.22191393,0.5631998,-0.26228222,-0.1869493,0.1143238,0.12080992,-0.15430956,-0.2321524,-0.21119183,0.054037068,-0.39083037,0.12961021,-0.099688865,0.8251985,0.17201151,-0.5800328,0.41066262,-0.49513996,0.10987835,-0.15782443,0.39172435,0.52057916,0.4769085,0.41381317,0.68267006,-0.48607394,0.036440983,-0.18042126,-0.4355404,0.03133584,-0.20837165,-0.011469056,-0.4756735,-0.019912258,0.014175706,-0.13453506,0.04194237,0.56868416,-0.43384498,-0.1820127,0.034443315,0.759354,-0.31581184,-0.06746104,0.6169713,1.00512,1.0330719,0.14149754,1.092106,0.14841346,-0.1764996,0.20499732,-0.21469018,-0.6665523,0.35325387,0.36408293,0.05357852,0.087550685,0.052048415,-0.004981672,0.41233435,-0.22731951,-0.041714396,-0.15144837,0.4876349,0.21889785,-0.08854909,-0.25172293,-0.45362556,-0.092325926,0.014950919,-0.17068446,0.30567864,-0.21443598,0.4148693,0.07647992,1.8939313,-0.01574883,0.047459267,0.06955893,0.5598523,0.20508498,-0.17887037,-0.01340148,0.36617884,0.11185767,0.14300953,-0.40324405,0.15796089,-0.2820021,-0.66112334,0.02105959,-0.30536962,-0.17405331,0.006798029,-0.43712634,-0.25616884,-0.079593934,-0.19005121,0.5915308,-2.8251073,-0.2550037,-0.057229955,0.34420845,-0.29684424,-0.34639236,-0.041798204,-0.41693664,0.3218963,0.18689632,0.5863388,-0.80013037,0.1762159,0.3568969,-0.42728683,-0.22700924,-0.50505435,-0.01688559,-0.020336628,0.37478855,0.003550852,0.012817772,-0.020466426,0.012971198,0.44587266,-0.15093727,0.26221466,0.21874066,0.25829872,-0.055129543,0.5014718,-0.0518979,0.47727394,-0.29163623,-0.16162847,0.3454274,-0.31081977,0.33422866,-0.04138639,0.03721282,0.47101605,-0.44571954,-0.77475095,-0.59238684,-0.09335979,1.0124351,-0.15106097,-0.4820502,0.23114382,-0.434441,-0.22404091,-0.15478297,0.17008503,0.010542111,-0.10235329,-0.8098397,0.13832678,-0.060786612,0.12979968,8.45825e-05,0.019632297,-0.21787941,0.6034776,0.038537983,0.48404706,0.4414203,0.08733226,-0.290985,-0.37796745,0.028435914,0.6899028,0.39403725,0.25354844,-0.2784233,-0.22427927,-0.10638346,-0.12985128,0.2208531,0.4501887,0.47643393,-0.16052328,0.1526445,0.35629562,-0.04680012,-0.07540622,-0.12799941,-0.19393493,-0.07789874,0.077409,0.59759593,0.84225553,-0.10132119,0.4468212,-0.034278456,0.3094244,-0.12765773,-0.49735624,0.42220092,0.9627257,-0.16300637,-0.27877134,0.4166104,0.45510697,-0.2166405,0.30249962,-0.5080306,-0.24962509,0.40936375,-0.17755337,-0.36103794,0.20600589,-0.3249829,0.1138613,-0.7988613,0.37720296,-0.37965223,-0.41886926,-0.40644166,-0.22409202,-2.7298515,0.14371705,-0.25290698,-0.22332512,0.048338573,-0.19371097,0.06102898,-0.58481884,-0.47615147,0.0739532,0.06512467,0.5607553,-0.026490482,0.011553729,-0.1888088,-0.38637775,-0.3038489,0.051560584,0.07639942,0.45939398,-0.07530454,-0.52552557,0.0073139807,-0.113777235,-0.42987743,0.16977863,-0.52959913,-0.5973108,-0.14045997,-0.3989091,-0.5670831,0.5701345,-0.09060106,-0.049336083,-0.08314831,-0.040979743,-0.090904094,0.20711124,0.14058287,0.10695527,0.037130754,-0.018111601,-0.030707408,-0.31455117,0.1648928,0.019789554,0.27903655,0.44820496,-0.09237332,0.11657524,0.52964926,0.5596741,-0.1496931,0.7630367,0.4202949,-0.13810475,0.24711691,-0.29983717,-0.31924087,-0.47835344,-0.38173366,0.056489542,-0.42928934,-0.47800535,-0.020506522,-0.31384602,-0.5282636,0.6073808,0.07361457,0.05312886,-0.01641553,0.1028847,0.52063674,-0.24559078,-0.11477193,0.07005339,-0.15455589,-0.7833445,-0.36063343,-0.68376374,-0.5166393,0.22376992,1.0564057,-0.22362351,-0.1540047,0.1414111,-0.3200276,0.013711171,-0.021364963,-0.015043042,0.061782986,0.3395773,-0.19444525,-0.56585956,0.36997834,-0.07758239,-0.1145704,-0.4726512,0.2919429,0.65373176,-0.47100055,0.6174645,0.25037226,0.27660853,-0.11024089,-0.48308113,-0.24852332,-0.020767776,-0.25312793,0.46936435,0.23128891,-0.7636037,0.38999933,0.44371328,-0.36112866,-0.68714905,0.48697338,-0.048256915,-0.29369673,-0.103976786,0.3033289,0.197529,-0.019370118,-0.044530813,0.31942874,-0.55079263,0.32569513,0.2980069,-0.12606129,0.13996083,-0.14030948,-0.21361756,-0.7169039,-0.031191755,-0.29102948,-0.37306938,0.22341366,0.049973805,0.043585766,0.011953536,0.19634283,0.31135833,-0.29667267,0.02556473,-0.084973805,-0.12292458,0.38285172,0.39472997,0.62047726,-0.25174946,0.5242551,-0.021650363,0.021041587,-0.08495782,0.039683063,0.27713794,0.20412877,0.26373017,0.026772654,-0.26073286,0.26938006,0.9370922,0.15405762,0.34503597,-0.06659728,-0.21087085,0.17784211,0.109186344,0.40680197,0.025077732,-0.46039242,0.07335985,-0.27229053,0.18750092,0.39190847,0.18785623,0.16094881,-0.11669407,-0.43982378,-0.020410016,0.15203288,0.02227847,-1.274206,0.30018687,0.203547,0.79282033,0.40418363,0.030677183,0.029997122,0.6834822,-0.22013938,0.056641906,0.31136277,-0.11421897,-0.47973856,0.35310978,-0.8334171,0.48990273,-0.021419033,-0.0077121495,-0.016652234,-0.03070717,0.4841078,0.7471474,-0.13355206,-0.065164566,0.13754486,-0.38089752,0.027593596,-0.4257196,-0.062092394,-0.6948191,-0.32775936,0.629581,0.45716664,0.36427274,-0.18982531,-0.017442338,0.11704105,-0.1499137,0.25758797,0.08008203,0.19075476,-0.08221617,-0.68194795,-0.17329523,0.5577378,-0.027246486,0.19279666,-0.06144336,-0.14552186,0.28403676,-0.1736807,-0.055169724,-0.02562939,-0.57411265,-0.06099848,-0.32881707,-0.34743086,0.4845406,-0.019407105,0.30421904,0.17620698,0.061525345,-0.16416521,0.5277269,0.115380555,0.76024145,-0.06172,-0.18709534,-0.4513002,0.072662205,0.19158694,-0.047236674,-0.08842031,-0.100104526,-0.13564211,-0.51799154,0.5048921,0.060543958,-0.17178264,0.073667064,-0.042148978,0.08278168,0.55482394,-0.078834385,-0.31332448,-0.20834559,-0.09648549,-0.39520785,-0.097364195,0.05731901,0.20157206,0.35420984,-0.01219638,-0.018587593,-0.18381795,0.037172437,0.3406175,0.026460953,0.2910663,0.2707987,0.20115043,-0.3656721,-0.18842298,0.17227656,0.5569874,-0.015650261,-0.002495706,-0.31609133,-0.4683047,-0.44085574,-0.0019509512,-0.18339598,0.33718756,0.10744818,-0.35084897,0.6736462,-0.19365534,1.1615878,0.13864493,-0.17913735,0.031763386,0.47076702,-0.018158495,0.06902944,-0.19912276,0.7717292,0.4733563,-0.11810721,-0.26430488,-0.33025575,0.015162528,0.10529524,-0.22363287,-0.062094957,0.03647546,-0.6038675,-0.14379437,0.16426751,0.1969821,0.14189787,-0.10611615,0.024958229,0.30747825,0.10983616,0.2868438,-0.27079865,-0.24221471,0.31660533,0.4017391,0.04730228,0.03078874,-0.47540855,0.3509842,-0.38243422,0.25405815,-0.16857454,0.18875785,-0.2236998,-0.22790034,0.2400378,-0.091703966,0.29307982,-0.31536406,-0.2954119,-0.19192132,0.4399336,0.07123932,0.14155675,0.65633214,-0.18245015,-0.109520875,0.15652996,0.33434695,1.0591154,-0.31240618,-0.17171386,0.54612845,-0.35948378,-0.5470019,0.3628879,-0.18194146,0.12838975,0.046447486,-0.12204027,-0.6617314,0.2201521,0.21800268,0.05626372,-0.07994256,-0.68849576,0.032380566,0.3495661,-0.4537615,-0.16871484,-0.30603135,0.03582902,0.5088722,-0.20201616,-0.36889198,0.19626418,0.18479216,-0.28381371,-0.33802,-0.05287595,-0.3699458,0.29386026,0.043909226,-0.26314917,-0.11175687,0.22441557,-0.41740862,-0.052016962,0.06481371,-0.35161814,0.12800202,-0.43970618,-0.040009744,0.92202353,-0.28148532,0.366524,-0.3942206,-0.36424458,-0.6862892,-0.22920653,0.48666024,-0.06785393,-0.011206156,-0.6525728,-0.15447581,0.07805464,-0.40198243,-0.28866932,-0.45090657,0.56068486,0.06702018,0.14690375,-0.028157908,-0.6688617,0.22825934,0.13329144,-0.08684117,-0.5026479,0.5571373,-0.16474326,0.71520334,0.07523103,0.030354276,0.3790227,-0.4172191,0.1098209,-0.21779922,-0.18690886,-0.58428144,0.032317422 +713,0.2897386,-0.0653636,-0.54967886,-0.25778183,-0.40396816,0.013098713,-0.19694011,0.34753057,0.22445768,-0.23619352,-0.11045224,0.07190839,0.06276489,0.38980496,-0.20935099,-0.8052607,0.082830645,0.072436616,-0.5653654,0.46320355,-0.47947294,0.3131791,-0.008450489,0.4304869,0.22326075,0.21500164,0.20691933,0.15393299,-0.08001904,-0.043919053,-0.15558296,0.48023728,-0.50485367,0.083000325,-0.007978062,-0.39869696,-0.1757149,-0.31929424,-0.34383425,-0.7046009,0.43602467,-0.81158423,0.52750033,-0.12079469,-0.3205334,-0.08883139,0.18447603,0.15800427,-0.32733217,0.07998301,0.13808122,-0.30682638,-0.09550492,-0.1220111,-0.21896298,-0.42686376,-0.63600945,-0.08343957,-0.5665807,-0.14742592,-0.2800012,0.21307555,-0.4037848,0.036817018,-0.17116645,0.63217056,-0.43435898,0.09824646,0.16066526,-0.27168533,-0.10228803,-0.59647995,-0.23696381,-0.12083681,0.16462107,0.089339875,-0.24038784,0.3121069,0.43826592,0.46203312,-0.025575329,-0.26638553,-0.42416576,-0.06918519,0.13892923,0.42538872,-0.08825013,-0.45577902,-0.15933374,-0.049228933,0.22969583,0.1861779,0.036584813,-0.3306406,-0.033592995,0.051463228,-0.17807145,0.4174821,0.50431746,-0.3584257,-0.06592277,0.31454846,0.14448422,0.22263649,-0.37763363,0.22139683,-0.07047705,-0.5846532,-0.21525456,-0.09027299,-0.12730871,0.65013015,-0.20268965,0.249736,0.691708,0.07996753,0.024007542,-0.18757467,-0.09022756,0.056446988,-0.28185967,-0.20377465,0.1374052,-0.2926493,0.26173845,-0.062294208,0.65568894,0.14628497,-0.7620009,0.46203777,-0.47636002,0.099197164,-0.14817214,0.513959,0.87386996,0.27470347,0.34516498,0.9056622,-0.38140506,-0.019765079,0.17898388,-0.44700432,0.09100677,-0.09119916,0.08360731,-0.4612787,0.10865496,0.014956625,0.015959,0.22417802,0.5867621,-0.30274722,-0.09844808,0.05208103,0.7666557,-0.33265242,-0.13233691,0.94314575,1.0323488,1.0641057,0.1283441,1.1751659,0.26391765,-0.07788725,-0.027911352,-0.16959292,-0.5882334,0.1416653,0.3490856,0.19202614,0.24881032,0.16420145,0.04554647,0.55806834,-0.2540409,-0.11623521,-0.096415475,0.20434093,0.16105442,-0.15012044,-0.47623655,-0.29578528,0.16019152,0.17852671,-0.04354047,0.21654695,-0.08296106,0.5669591,0.0012631745,1.2130847,0.13561843,-0.0112983985,0.11819215,0.35193202,0.31519106,-0.15598541,-0.087375514,0.16564165,0.4085204,-0.011057655,-0.58537745,0.059946127,-0.3552496,-0.5267847,-0.12523317,-0.380866,-0.17300081,-0.012506338,-0.6042769,-0.2129086,0.1700396,-0.28637755,0.51581854,-2.5979736,-0.1568395,-0.26460177,0.26630288,-0.048077844,-0.31186196,-0.26208606,-0.44967762,0.2903394,0.4210593,0.3709134,-0.6344248,0.3579745,0.30227214,-0.3269016,0.023463488,-0.64112014,-0.019081729,-0.086558685,0.38384208,0.014193598,-0.11224453,0.056811936,0.31255102,0.8066134,0.04194794,0.053609755,0.17666534,0.4011664,-0.25497988,0.60283214,-0.044156563,0.59208876,-0.16146396,-0.24397373,0.32599458,-0.44299355,0.1924931,-0.075417005,0.22502504,0.539895,-0.4460763,-1.0084684,-0.5068258,-0.25752822,1.1448784,-0.32481652,-0.4892594,0.3864303,-0.26110238,-0.35697454,-0.017581582,0.7015046,-0.24510354,-0.028250601,-0.71292096,0.02671923,-0.17733675,0.081181064,-0.13518336,0.06639557,-0.36410508,0.81564623,-0.11607455,0.46907482,0.32554963,0.1798907,-0.21002518,-0.40624803,0.11390838,0.61553943,0.48798034,0.035001025,-0.24947108,-0.10593479,-0.04106764,-0.27092502,0.118644826,0.78436667,0.5560085,-0.013544449,0.11142946,0.23234764,-0.059159495,-0.01689709,-0.17838846,-0.2609621,-0.055803392,0.12302125,0.5708927,0.6921869,-0.20234394,0.35288522,-0.06614355,0.37269047,-0.088185444,-0.62985843,0.39877102,1.0163645,-0.11232189,-0.35009727,0.534923,0.35659775,-0.37296686,0.30553743,-0.4941832,-0.2354365,0.5226953,-0.11762035,-0.45812744,0.15289481,-0.43925196,0.05066753,-0.82313824,0.33534202,-0.012561751,-0.59512407,-0.6007176,-0.4399862,-3.8608592,0.10150755,-0.2770025,-0.08555014,-0.19545715,-0.3569852,0.3399099,-0.6634296,-0.70006317,0.108250536,0.10642416,0.43550044,-0.15564696,0.07856002,-0.25322327,-0.22319008,-0.104737476,0.27357042,0.19240499,0.43784288,0.058784895,-0.30929363,0.047362726,-0.19387381,-0.6689642,-0.13223259,-0.47063676,-0.5672404,-0.080484085,-0.45575818,-0.29707673,0.7663378,-0.47164762,-0.009278384,-0.2740495,-0.028165009,-0.27667373,0.3328536,0.23026298,0.24238399,0.02250442,0.059647758,0.003700161,-0.29089886,0.16971566,-0.079089165,0.28754237,0.32209155,-0.05220167,0.18698241,0.58112276,0.6351767,-0.06458604,0.88619137,0.34586778,-0.08623656,0.23779544,-0.2718651,-0.33837318,-0.75666237,-0.39887196,-0.07036889,-0.50213104,-0.40570387,-0.21432592,-0.42715454,-0.78811365,0.42917755,-0.04480408,0.1280192,-0.099438936,0.22913337,0.34633687,-0.05643362,-0.020577295,0.06700679,-0.21402387,-0.534886,-0.43186495,-0.5836246,-0.6535275,-0.07725009,1.1526109,-0.10071612,-0.20244838,0.024514139,-0.4900299,0.054013718,0.12584296,0.24600464,0.20607004,0.32689103,-0.097403474,-0.7318233,0.4089815,-0.40415016,-0.052964304,-0.6754719,-0.0543164,0.5455472,-0.51145387,0.6864483,0.38275704,0.28357792,-0.020530695,-0.7548855,-0.35062358,0.17489369,-0.15922333,0.6003925,0.41082364,-0.6801397,0.58536667,0.11453178,-0.060508028,-0.5241709,0.48597828,-0.099839404,-0.10491757,0.11206242,0.36726868,0.019207733,-0.12756878,0.0032202562,0.25142297,-0.40561897,0.2724244,0.29983565,0.05426283,0.40812632,-0.05645915,-0.099351026,-0.61003524,-0.23857364,-0.5240139,-0.16435668,0.0066658426,-0.0135211265,0.307634,-0.050336376,-0.122304216,0.3587382,-0.29003558,0.16536382,-0.2782959,-0.2666486,0.22752933,0.59629184,0.35367012,-0.5303993,0.64873576,0.114875644,0.12978026,0.05244534,0.073032506,0.43398476,0.19070151,0.42345592,-0.10761595,-0.044424765,0.035144422,1.0112257,0.21876322,0.39576072,0.11008462,-0.24432391,0.25628197,0.11505675,0.16909051,-0.09480178,-0.30794188,-0.03763008,-0.19047277,0.25405172,0.44010168,0.13013035,0.31127134,-0.19847043,-0.15131623,0.24393772,0.24985774,0.059436195,-1.3092924,0.4715,0.17980017,0.8844213,0.45486307,0.11710019,-0.093825296,0.56711835,-0.23293659,0.04333271,0.34391662,0.11361725,-0.29195195,0.49779433,-0.59928954,0.49238098,-0.16617543,-0.018137034,-0.049502358,0.27252692,0.30234355,0.7299057,-0.10645377,0.06222037,0.17465569,-0.29629317,0.151496,-0.31181708,0.05407759,-0.45064184,-0.3032568,0.660389,0.63281983,0.2918604,-0.322198,-0.096317194,0.0066708815,-0.14124115,-0.02471133,-0.11619703,-0.0244807,-0.19970234,-0.71188384,-0.32800108,0.5323339,-0.14427319,0.116230965,0.14325333,-0.34794855,0.27845272,0.017912006,-0.13042563,-0.04690129,-0.5890653,-4.4938923e-05,-0.3416727,-0.6797621,0.3947479,-0.38258466,0.28582546,0.22073095,-0.022224482,-0.374548,0.13859306,0.06224273,0.8547576,-0.06941126,0.019635221,-0.27330506,-0.014842844,0.30653107,-0.27982613,-0.19099051,-0.3476316,0.2177495,-0.42447293,0.47001404,-0.33361468,-0.19050281,0.018603818,-0.089549445,0.07671353,0.4010768,-0.31596234,-0.16134503,0.14492317,0.093743995,-0.20832644,-0.1414601,-0.30994895,0.39077312,-0.084594496,0.021882867,0.042260442,-0.11567351,-0.18810008,0.37244514,-0.07658618,0.34171587,0.45711097,0.013676023,-0.2462823,-0.11136018,0.0392578,0.6664131,0.093442775,-0.15260759,-0.39004454,-0.50171626,-0.3596603,0.33508268,-0.094378114,0.17120765,0.15333547,-0.4834397,0.54512703,0.08171678,1.1194483,0.0027727922,-0.41128302,0.11880549,0.50860703,0.056456804,0.12893194,-0.092045434,0.80014557,0.48043364,-0.23996204,-0.18650159,-0.36710814,0.03431317,0.19002037,-0.21740466,-0.2346818,-0.08773976,-0.70606554,-0.015758378,0.010289001,0.14585224,0.1185557,-0.03778388,-0.017237466,0.036660895,0.15097809,0.38700932,-0.45378983,0.036296036,0.36365932,0.19310719,-0.026949601,0.18217334,-0.37111273,0.34081313,-0.48592153,0.09456203,-0.6380366,0.27865633,-0.023902185,-0.25263652,0.23001696,-0.052615087,0.36726734,-0.25848493,-0.18079129,-0.31238016,0.65302366,0.10752421,0.16578348,0.60923386,-0.19349292,-0.022797693,0.21218435,0.61533844,1.3386607,-0.13072087,0.13043483,0.2218323,-0.3374993,-0.40412286,0.17916107,-0.4327674,-0.016726399,-0.046843525,-0.2196986,-0.520138,0.21629225,0.1361194,0.019627212,0.14756654,-0.44306576,-0.34478325,0.3528391,-0.3665268,-0.21891592,-0.41249722,0.18332635,0.55845565,-0.406498,-0.25688335,0.020432424,0.34458444,-0.16223142,-0.54658926,0.23551607,-0.29999307,0.42014542,0.048590794,-0.4677696,-0.13935548,0.3177562,-0.49230105,0.19327576,0.32324824,-0.28428096,0.16281945,-0.19743136,-0.11188594,1.1492939,-0.09541233,0.2377834,-0.6511364,-0.57300854,-1.0542147,-0.145693,0.1471956,0.19217834,-0.023208933,-0.69174206,-0.09571821,-0.04189396,0.047092248,0.07195749,-0.4892763,0.4661784,0.08043828,0.49777123,-0.02969786,-0.81627476,-0.068846986,0.015154132,-0.16080777,-0.3169295,0.58343035,0.03823326,0.7192385,0.13802646,0.08868788,-0.0017478188,-0.47654328,0.33346215,-0.281307,-0.23741843,-0.6799423,0.08802663 +714,0.298523,-0.015044625,-0.68726826,-0.12885049,-0.45439437,0.3378185,-0.35466462,0.07907583,0.19703916,-0.30588496,-0.016012678,-0.22798148,0.049942568,0.54633707,-0.043110803,-0.69617337,0.050349258,0.25692943,-0.6392212,0.22600533,-0.5500726,0.44505876,0.024323087,0.35613754,-0.065207556,0.30950844,0.31906444,-0.11658765,-0.14981195,0.0035855724,-0.22166927,0.22997902,-0.72457474,0.31953275,0.015134087,-0.46488577,0.0325768,-0.08517481,-0.18715283,-0.57708585,0.24038097,-0.83916676,0.48371536,-0.31958947,-0.36783308,0.07094849,0.057795487,0.4474792,-0.29787266,0.16794994,0.29520613,-0.3906502,-0.14591277,-0.2304847,-0.39135748,-0.63090867,-0.3905173,0.022713877,-0.62623954,-0.20539856,-0.30392793,0.39648262,-0.21089746,0.053970985,-0.16730994,0.19140953,-0.48951113,-0.021030609,0.258196,-0.33830076,0.11406161,-0.3485777,-0.17493857,-0.12545532,0.5600909,-0.12133508,-0.009451807,0.058547676,0.4079568,0.60483515,0.18958157,-0.21580066,-0.37448695,-0.20111537,0.28102753,0.5159186,-0.017677097,0.06251678,-0.31989956,-0.37362635,0.08870048,0.2411671,0.0029182457,-0.4699586,0.022929413,0.0049961554,-0.26447934,0.18996246,0.33914363,-0.5617397,-0.36645636,0.5015779,0.58275706,0.010608098,-0.2651645,0.2270012,-0.0025125844,-0.4900313,-0.21121743,0.28386736,0.062581494,0.6099109,-0.20951237,0.3715145,0.86001337,-0.15988249,0.08466517,-0.26774326,-0.09121297,-0.24988192,-0.15191747,0.10717824,0.129395,-0.4950924,-0.069060095,-0.14390345,0.6158732,-0.03727356,-0.6602843,0.44099873,-0.45740038,0.02633114,-0.2683403,0.6313807,0.67819273,0.31581062,-0.18081194,0.8752384,-0.50648504,0.07563936,-0.17078495,-0.4386249,0.16535076,-0.09437991,0.08378024,-0.41607168,0.13936259,0.10467354,0.157189,-0.041709542,0.44781813,-0.40895158,-0.08774051,0.026421657,0.5827998,-0.52257895,-0.078302585,0.79453593,0.9504081,0.88771087,0.07220857,1.6003045,0.5766937,-0.25490874,-0.1717546,-0.31782287,-0.43579647,0.11641259,0.22249728,0.25714976,0.24407178,0.18871957,0.17222008,0.60186505,0.012378106,0.12772626,-0.18966539,0.11290101,-0.10845295,-0.014559026,-0.37224212,-0.22938856,0.27908057,0.08939708,0.05552194,0.22069263,-0.088229015,0.5477471,0.115269646,1.4234399,-0.13573779,0.0970628,-0.17694455,0.24042922,0.14388624,-0.15740237,-0.08021738,0.17964461,0.25615126,-0.090902716,-0.50838506,-0.0022046475,-0.20980445,-0.5391787,-0.34185177,-0.34989807,-0.16247787,-0.10785984,-0.44278768,-0.08928064,0.28155252,-0.23813178,0.41168073,-2.3861327,-0.29142216,-0.22552808,0.14789067,-0.27755955,-0.23860429,-0.32764608,-0.46239343,0.3083129,0.42238793,0.35652888,-0.47487158,0.5726002,0.3651486,-0.22541107,-0.35019,-0.66839135,0.06323714,-0.11535348,0.32132256,-0.10205929,-0.2595307,-0.2570307,0.2027834,0.59541416,-0.266938,0.11183348,0.1581032,0.5496532,0.11678018,0.45099062,0.26928836,0.77642316,-0.30293658,-0.20785786,0.56547827,-0.397207,0.33558133,0.0065576984,0.27686208,0.31831694,-0.3798057,-0.9066888,-0.79327273,-0.36754328,1.1623496,-0.40005076,-0.5173487,0.22506557,0.102283254,-0.2825728,0.18315913,0.3544883,0.16718608,0.17771551,-0.74776256,0.15964761,-0.11667307,0.20461208,-0.12862657,0.07343589,-0.35085657,0.61486155,-0.23652537,0.26553714,0.5301155,0.32683533,-0.072178036,-0.24675696,0.113100655,0.95918024,0.24710988,0.09706863,-0.22478032,-0.40566042,-0.23220704,-0.2928524,0.06806532,0.4160047,0.6304601,0.09410202,0.21992296,0.26393378,-0.16859494,0.02176797,-0.15302218,-0.28699166,0.031146957,0.20272842,0.46781957,0.5482012,0.055267133,0.4741754,-0.14866517,0.14360963,-0.28852293,-0.64271647,0.5656216,0.5554071,-0.2293335,-0.226041,0.62800694,0.51450944,-0.45996714,0.40312296,-0.6041588,-0.42765233,0.52607936,-0.1503056,-0.42137715,0.08774029,-0.31362292,0.022472657,-0.8719861,0.16115086,-0.05677758,-0.53175926,-0.34571975,-0.2780046,-4.3604174,0.29547817,-0.058624275,-0.038097497,0.07341893,-0.21635844,0.46142828,-0.51520455,-0.5103156,0.059571024,-0.03990431,0.6055251,0.044815,0.14078826,-0.42678973,-0.058560636,-0.08842178,0.23933777,-0.0009480898,0.098344214,-0.04747983,-0.49658746,0.22070244,-0.46679607,-0.40619147,-0.08798301,-0.62297016,-0.4425643,-0.08379997,-0.36380294,-0.2890464,0.76002985,-0.6450017,0.017647224,-0.36751553,0.015992261,-0.32476467,0.44742516,0.20024434,0.13739693,0.3351827,0.014227627,-0.39892393,-0.39506274,0.1185238,0.044313055,0.076350264,0.49517256,-0.2339653,0.14165334,0.49074584,0.6611918,-0.04751279,0.6037557,0.11784606,-0.0843219,0.376004,-0.26512066,-0.15389758,-0.7065085,-0.48003387,-0.42303583,-0.54319066,-0.6392568,-0.22361849,-0.23120502,-0.7699965,0.58163214,0.22750789,0.10387499,-0.09285503,0.17982222,0.25902712,-0.18879986,-0.08759781,-0.22954069,-0.19825333,-0.47600478,-0.59543765,-0.68367606,-0.7503879,0.20961012,1.2074544,-0.14217228,-0.005929191,0.1805391,-0.4490684,0.060032226,0.29786456,0.27383092,0.051723022,0.42757097,-0.26334158,-0.76263195,0.4461028,-0.20606631,-0.018637188,-0.56651855,-0.055444207,0.7870875,-0.6684673,0.50718874,0.44779587,0.26375705,0.38409093,-0.40785143,-0.42029014,-0.024978079,-0.29675725,0.59864324,0.14354163,-0.69578445,0.46057191,0.151097,0.005530229,-0.64915174,0.48451474,0.06138357,-0.08380214,0.09380674,0.4393736,0.06880225,-0.063898765,-0.2623239,-0.012839689,-0.6044893,0.26213554,0.5170187,0.01099763,0.55253196,-0.12578422,-0.23566316,-0.57254,-0.25178513,-0.33177698,-0.14304067,-0.11351959,0.01334762,0.038496234,0.26197624,0.056148157,0.43049514,-0.6000795,0.124493666,-0.073844664,-0.26219016,0.20705792,0.44965237,0.3018215,-0.5721643,0.58396584,0.04378541,-0.054688863,-0.29347134,0.06127365,0.6002709,0.31464836,0.45875782,-0.11030522,-0.11854855,0.18476966,0.79051137,0.21096209,0.54119307,0.14876634,-0.33619136,0.29908818,0.2817121,0.1374858,-0.028908156,-0.20512104,0.047978923,-0.12125116,0.22932881,0.41536033,0.15372433,0.54500103,-0.048150975,-0.03633318,0.29967517,0.037591457,-0.07744224,-0.6939509,0.25775987,0.3921418,0.62030125,0.50601244,-0.072794504,0.044675827,0.35146728,-0.43639457,0.06455204,0.1393256,-0.08509271,-0.46331376,0.5616045,-0.6230558,0.3087211,-0.29313546,-0.1197282,0.30237538,0.19201387,0.28456295,0.88267094,0.007372549,0.19592318,0.060738586,-0.25003874,-0.015969148,-0.18282329,0.071203366,-0.5732507,-0.25164872,0.75234693,0.40531653,0.32673392,-0.3558386,-0.14326546,0.008485303,-0.05565869,0.08728123,-0.09065834,0.11941433,-0.08662963,-0.60348195,-0.3734778,0.5504313,0.04659631,0.14751925,0.17996153,-0.6225657,0.4084962,-0.2667189,0.005431815,0.020675374,-0.5369942,-0.07788041,-0.37416786,-0.50548214,0.34614402,-0.27772164,0.33537567,0.08592741,0.012819304,-0.26338255,0.29252222,0.011714311,0.8850618,0.21572474,-0.08549392,-0.2250634,0.039213043,0.45424703,-0.30644324,-0.15275644,-0.37845358,0.02363133,-0.47896722,0.30992332,-0.095791064,-0.14306706,0.2053036,-0.13264002,0.06307514,0.43392736,-0.044832144,-0.11172183,0.29783672,0.19672689,-0.32757586,0.118070126,-0.5263592,0.27775925,-0.124657355,0.07697832,-0.0024562431,-0.03841252,-0.12308775,0.21889885,0.08683545,0.054103997,0.3472238,-0.088137165,-0.29542968,0.009238165,-0.14883359,0.33185285,0.07207607,-0.050322197,-0.17327085,-0.46400008,-0.24523076,0.5118552,-0.0756267,0.033356167,0.11506227,-0.3730664,0.79491013,0.1910634,1.1480018,0.15006179,-0.4322427,0.26871198,0.41530785,0.09720179,0.2138645,-0.5265046,0.87857586,0.5481132,-0.24717866,-0.22857237,-0.40791062,-0.3822303,0.2844628,-0.30711606,-0.22338828,-0.062329214,-0.812497,-0.17420325,0.16524237,0.22282355,0.048147816,0.018817393,0.10511022,0.10266696,0.17484531,0.45540607,-0.62922984,-0.1760211,0.44430426,0.35619706,-0.21723829,0.16179863,-0.17314236,0.50997835,-0.8505974,0.073930904,-0.614617,0.016174283,-0.16032256,-0.25041157,0.30485076,0.19156075,0.33890015,-0.13032341,-0.30710417,-0.3065303,0.76979977,0.19669023,0.3594832,0.8513215,-0.2535991,-0.109984726,-0.06858463,0.3604963,1.1363304,-0.31994873,-0.017898945,0.5778333,-0.19896077,-0.5138885,0.20360468,-0.51517326,0.14213878,-0.004920075,-0.50011903,-0.2864785,0.42645153,0.123614974,-0.117235556,0.10837964,-0.39557445,0.095053345,0.3556627,-0.21197352,-0.35499433,-0.18858956,0.3897676,0.7065278,-0.41029838,-0.2621501,0.0339236,0.45159948,-0.41990164,-0.46051386,0.090808555,-0.2567385,0.5002744,0.2803524,-0.40137714,-0.030791782,0.27593768,-0.3507238,0.10611116,0.4690843,-0.23373798,0.21369937,-0.38171312,0.077348664,0.97507244,0.107096404,0.16904163,-0.7263899,-0.4943517,-0.96855426,-0.34398952,0.2910121,0.23972966,-0.061283,-0.3062968,-0.034084383,-0.17084503,0.07766008,0.25200745,-0.5134669,0.39423525,0.0758854,0.5905165,-0.06784003,-1.036497,-0.06257424,0.22678518,-0.30330056,-0.43905213,0.55091554,-0.5411428,0.7461165,0.114228025,0.11355449,0.21484734,-0.54394823,0.3954942,-0.37335655,-0.043772057,-0.91135436,-0.10351935 +715,0.40683353,-0.21876904,-0.46031412,0.01887957,-0.24530634,-0.0802124,-0.06437411,0.56107616,0.18276642,-0.52993554,-0.16747269,-0.22498778,-0.067110315,-0.052514687,-0.11298546,-0.12918091,-0.2501574,0.1921174,-0.58499223,0.5322774,-0.18578896,0.20597742,-0.12201762,0.4689408,0.25934747,0.3134685,-0.2732447,0.023822824,-0.06937267,-0.07692011,0.0076141558,0.2772489,-0.4005303,0.08261912,-0.30106992,-0.19404976,-0.012867729,-0.43475306,-0.52217805,-0.7779156,0.48982716,-0.9399992,0.501103,-0.0852774,-0.2978703,0.23893915,0.030280761,0.4566965,-0.08830762,-0.2098556,0.3061191,0.12588435,0.046819642,-0.28240842,-0.14503789,-0.15694325,-0.32535738,-0.030460278,-0.25520137,-0.13477196,-0.30926892,0.17384627,-0.25687084,0.0067334813,-0.2232149,0.47435218,-0.45812595,0.21675797,0.13698117,0.09656208,0.32172123,-0.7122032,0.0005766471,-0.12523407,0.29524553,-0.12797515,-0.18633057,0.38534412,0.130551,0.33707312,-0.072525196,-0.14410262,-0.27077523,-0.094950266,0.04735701,0.3711836,-0.061435726,-0.3540952,-0.036131073,0.1939644,0.20888847,0.22954768,0.23946737,-0.28499234,-0.1325146,-0.035295416,-0.0909976,0.33166772,0.4917617,-0.04266643,-0.2646032,0.394056,0.75549775,0.24716376,-0.1218503,0.01858058,-0.045084,-0.33564594,-0.11950113,0.11964499,-0.29430234,0.41209108,-0.0950201,0.22493608,0.6378671,-0.06704928,-0.10470011,-0.030508567,0.20107795,-0.051263634,-0.43365324,-0.33883685,0.26073587,-0.39088967,0.27612683,-0.15262581,0.52903193,-0.13414222,-0.6407103,0.32276532,-0.48925045,0.11233031,-0.016447019,0.48929033,0.6509815,0.51059747,0.38782233,0.74646896,-0.41190988,0.077119984,-0.093359515,-0.28444746,0.0050126235,-0.15898865,0.06828157,-0.5170136,0.044992615,-0.12466971,-0.24465153,-0.022247698,0.2522844,-0.551203,-0.03845117,0.0994898,0.7855672,-0.2622159,0.01757377,0.8226786,0.95105845,0.8238395,0.015022679,1.0311301,0.19429211,-0.2634835,0.36156285,-0.3180127,-0.8241623,0.28334656,0.32341364,-0.0018006325,0.078924544,0.18974194,0.06843278,0.3385908,-0.47415236,0.07560286,-0.368323,0.24407788,0.16149427,-0.13492846,-0.33954278,-0.16359068,-0.13830867,0.01231703,0.100927226,0.04300935,-0.11791515,0.26288977,0.09606108,1.7806938,0.029613772,-0.009064915,0.18367685,0.51706845,0.16366476,-0.14135237,-0.014642565,0.48076043,0.2666644,0.11576626,-0.46992207,0.16330501,-0.30456728,-0.46376994,-0.018129226,-0.3032838,-0.09825562,-0.08940366,-0.3531723,-0.28682888,-0.28134224,-0.23806559,0.38756993,-2.8093731,-0.14170137,-0.10717404,0.4080951,-0.25977522,-0.41432795,0.05078224,-0.4082963,0.45838925,0.2843303,0.47594425,-0.6454944,0.36549366,0.39977896,-0.67230314,-0.013915825,-0.49519315,-0.009391392,0.04295245,0.2438546,-0.035673864,-0.035285246,0.030678485,-0.099320166,0.2776372,-0.012365224,0.060356133,0.54434496,0.44187894,-0.1425612,0.47916096,-0.008703496,0.30293626,-0.1822302,-0.14705056,0.2670932,-0.38056928,0.20703994,-0.0031997522,0.10522234,0.64765644,-0.5112648,-0.5890762,-0.6329062,-0.035573922,1.035497,-0.14976192,-0.4898313,0.17318605,-0.7444255,-0.34085232,-0.19600677,0.38864392,-0.05764105,-0.19818987,-0.82197994,-0.093277946,-0.2348515,0.1964044,0.0100915,-0.11706074,-0.31116915,0.8821962,-0.030349966,0.44189873,0.31458697,0.042496584,-0.4179959,-0.46694252,0.08792843,0.4839281,0.40772742,0.09364059,-0.12526232,-0.12867992,-0.32186285,-0.13279326,0.13447906,0.5799904,0.52201134,-0.019466126,0.10880509,0.26781884,-0.06491937,-0.19739696,-0.29102296,-0.15626948,-0.26997548,-0.018540334,0.47610456,0.6215461,-0.22799015,0.54095775,-0.08192643,0.18723239,-0.1244623,-0.45066687,0.2996535,1.1086327,-0.1447875,-0.37645453,0.51686776,0.40326974,-0.20619266,0.17848586,-0.46021718,-0.12904763,0.3353211,-0.1898992,-0.58405095,0.18574366,-0.25376466,0.14492589,-0.7850087,0.1403547,-0.23342124,-0.5395828,-0.7350386,-0.16957888,-1.482545,0.16873704,-0.28581184,-0.2869356,-0.1915265,-0.31284454,-0.06903374,-0.4427472,-0.6189736,0.254053,0.05596728,0.61836964,-0.025695043,0.010517282,-0.09495649,-0.29369724,-0.32472864,0.022174882,0.17812586,0.37524593,-0.13418564,-0.45228285,-0.25384453,0.051662307,-0.4377241,-0.007926324,-0.59087765,-0.35656685,-0.25105408,-0.65117735,-0.24776907,0.58735025,-0.15454385,0.15336958,-0.30888444,-0.11563141,-0.027640974,0.3299738,0.2202246,0.13118556,0.02183506,-0.13170034,0.1111418,-0.31356984,0.31772676,0.08842351,0.23669662,0.26875427,-0.18976903,0.21177301,0.25529268,0.76731414,-0.122732684,0.7551697,0.39710706,-0.27117908,0.28371415,-0.1936628,-0.23543753,-0.63907814,-0.24621993,0.059340835,-0.34159496,-0.44031155,-0.041691344,-0.68536955,-0.6475407,0.38887766,0.0448092,0.27558622,0.18121609,0.32260698,0.7661442,-0.10283776,-0.0037210325,-0.0035274108,-0.13887677,-0.57976663,-0.35036284,-0.42922026,-0.45806614,0.11636121,1.0361266,-0.11527252,0.06619308,0.12864618,-0.31130245,0.10903134,0.22518735,-0.21204045,0.13830519,0.57910836,-0.2737543,-0.42164835,0.36524904,0.09238558,-0.2847047,-0.5335481,0.39654955,0.5545319,-0.6071187,0.61509895,0.07201643,0.019730715,-0.4370171,-0.41365287,-0.14787927,-0.09817489,-0.31722233,0.43413195,0.25913632,-0.5773224,0.30480438,0.45541638,-0.014856775,-0.7853854,0.48856,-0.08115433,-0.4988923,-0.13691886,0.31370524,0.028409036,-0.008195448,-0.23529972,0.16607441,-0.23562703,0.16768536,0.13701601,-0.21146026,0.17669459,-0.27028614,-0.089727364,-0.7226635,0.18192074,-0.44031468,-0.34266013,0.42484748,0.079213865,0.08370866,0.18382019,0.23815903,0.45622545,-0.20285602,0.09950977,-0.11896763,-0.1608248,0.1450477,0.28417274,0.3463178,-0.53499234,0.5400413,0.0128301345,-0.060576905,-0.056651544,0.17261654,0.38844368,0.013330706,0.36601976,0.18898787,-0.13464877,0.19217806,0.7286929,0.18331404,0.48528078,0.0213338,-0.033080317,0.15704575,0.016829658,0.28365996,-0.114454225,-0.5498379,0.23342839,-0.17014737,0.10522232,0.24626549,0.08161866,0.16085725,-0.07673914,-0.32852963,-0.084079675,0.31290898,0.04586621,-1.1694521,0.30207545,0.272972,0.95390284,0.3133845,-0.0863565,-0.08040685,0.7079653,-0.077993155,0.12397087,0.32124513,-0.032838725,-0.45402193,0.45644963,-0.7020659,0.35254017,0.08986898,-0.06497223,-0.034937665,0.07794914,0.34849727,0.5052044,-0.27386627,-0.087921314,-0.12166026,-0.2904734,0.23807222,-0.19928344,0.11851339,-0.51205224,-0.34162328,0.55027884,0.5155775,0.41066387,-0.123663925,0.12974426,0.03896885,-0.21623173,0.15154773,0.21627182,0.18307592,0.012768948,-0.58242303,-0.25196514,0.37848446,-0.06900661,0.14515252,0.07806565,-0.104203366,0.24335076,0.035743974,0.0029687562,-0.03911257,-0.7134933,0.1528528,-0.17288622,-0.3356558,0.3416522,0.035694797,0.18828735,0.24312311,0.06477292,-0.22644693,0.3904695,-0.0065439385,0.88151234,-0.099970154,-0.06613713,-0.36540762,0.26605278,0.061707206,-0.1858794,0.043668643,-0.12502654,0.06657026,-0.4959955,0.49108014,0.17193763,-0.43175468,0.09922438,-0.17095374,0.019492196,0.45701212,-0.16489138,-0.16792485,-0.24433514,-0.2096455,-0.30503413,-0.34213087,-0.006874108,0.33013093,0.29659727,0.14185467,-0.13163915,-0.01268009,-0.2308435,0.69845015,0.10152168,0.34207198,0.26997578,0.02641371,-0.450906,-0.10335418,0.22653048,0.57985485,-0.12167219,-0.08976105,-0.20200808,-0.39385504,-0.38861874,0.39286044,0.0384381,0.47977033,0.0883057,-0.16172868,0.87619036,-0.0015497326,1.090993,0.036919508,-0.26208875,0.25629777,0.51664937,0.01478939,-0.094886295,-0.28938296,0.7804963,0.5946128,-0.01979425,-0.056077283,-0.23582178,0.04029831,0.20884076,-0.12210285,0.06577063,-0.032986302,-0.58260626,-0.28142515,0.18981145,0.24327537,0.11973829,-0.103546776,0.009929753,0.2665648,-0.2714939,0.27332237,-0.26122397,-0.3088738,0.22663115,0.010591591,0.04342859,-0.0010998845,-0.51449007,0.36850756,-0.43922055,0.1633452,-0.23892762,0.0954425,-0.25475705,-0.30946547,0.15883642,-0.15853062,0.31463572,-0.38142967,-0.2866424,-0.341719,0.4084627,0.18834448,0.16160752,0.43530267,-0.22380687,0.117025055,0.0952914,0.37846997,0.7320855,-0.046621453,0.033835538,0.13974711,-0.40725696,-0.526634,0.421279,-0.1680611,0.20632549,0.106253624,0.0101107955,-0.39705458,0.23051174,0.19490932,0.0081886845,-0.11677338,-0.68018913,-0.11881779,0.4548711,-0.2494809,-0.008802546,-0.24598742,0.08391085,0.54192287,-0.043554712,-0.38765594,0.06193952,0.005915753,-0.18578751,-0.4185039,-0.10177796,-0.5398484,0.26664704,-0.13291188,-0.3035027,-0.12994649,0.07450678,-0.3933553,0.15530099,0.037620448,-0.32248676,0.065469585,-0.3058589,-0.103162654,0.8778469,-0.16803287,0.05661963,-0.39926183,-0.3344803,-0.7426358,-0.14747307,0.19009273,0.12021902,0.0740575,-0.80021435,-0.043235183,-0.20409489,-0.18037136,-0.11815181,-0.32873815,0.42656654,0.2073954,0.4065243,-0.16332476,-0.8908859,0.16456856,0.11133846,-0.095191754,-0.561661,0.56057805,0.042485736,0.6056234,0.072599836,0.2535928,0.12327259,-0.53648263,-0.12828715,-0.19300492,-0.19289757,-0.6111241,-0.065272555 +716,0.7134196,-0.094970345,-0.3498417,-0.30214372,-0.1308375,-0.07667435,-0.121168174,0.63910973,0.31542078,-0.7093286,-0.34297904,-0.23705511,0.08278901,0.16366011,-0.31439194,-0.65205926,0.043155,0.13391693,-0.21326996,0.45643964,-0.4676638,0.31337985,0.09085845,0.23226035,0.03712176,0.113758765,0.23380804,-0.15562259,0.20964527,-0.18708783,-0.28805074,0.30304667,-0.6167931,-0.023246646,-0.16891752,-0.34838822,0.026401162,-0.43296131,-0.38384056,-0.7460218,0.37087378,-1.0109305,0.61354613,0.2688154,-0.27117822,0.43420568,-0.13678329,-0.012244607,-0.14967893,0.25555816,0.0041811294,-0.27770552,0.10322589,-0.18225895,-0.15445502,-0.49896088,-0.6552021,-0.025815144,-0.36097458,-0.28352025,-0.34677193,0.07651787,-0.45171127,0.0695482,-0.17466246,0.53715605,-0.44970012,-0.03793657,0.1526284,-0.25740266,0.30530724,-0.69622904,-0.24622934,-0.11345608,0.26068857,-0.16411693,-0.17233318,0.17231877,0.31510988,0.6971192,0.030606464,-0.21666522,-0.22534873,-0.009215574,-0.03150186,0.46798098,-0.20037375,-0.6144933,-0.073774524,0.09338361,0.25694495,0.18961328,0.13989042,-0.104583524,-0.17065538,-0.047323674,-0.3065556,0.48288462,0.56989676,-0.41946682,-0.29538554,0.22080553,0.40894046,0.17730705,0.09048197,0.1673692,-0.04162876,-0.6209166,-0.12088088,-0.0018252432,-0.4496174,0.7538298,-0.24968785,0.31639656,0.58844227,-0.10815843,0.13540502,0.06672355,-0.012396517,0.112052836,-0.3148594,-0.32176688,0.4271718,-0.48574045,0.24616957,-0.24580951,0.88475513,0.14358386,-0.6319874,0.3302857,-0.5066929,0.14732164,-0.25568914,0.59705824,0.61291593,0.4796939,0.35374272,0.8446889,-0.7458339,-0.03311365,-0.09076873,-0.36676303,-0.018092513,-0.016915655,0.06563969,-0.3061286,0.05053972,-0.019321034,-0.017706731,0.12332312,0.33544457,-0.479195,-0.07910461,0.26176623,0.7594977,-0.25760546,0.00987224,0.7554485,1.1132518,0.99741936,0.11450302,0.97223663,0.1288789,-0.23406601,0.15300627,-0.08682209,-0.83783466,0.37634477,0.5475231,0.31405658,0.2627593,0.11793247,-0.05152082,0.30581823,-0.44962016,-0.1756772,-0.27273974,0.25360703,0.13094954,-0.13672905,-0.66326827,-0.08887205,-0.09984747,0.09209605,0.06082425,0.21480574,-0.1928793,0.17897277,0.015247042,0.99520445,-0.06932517,0.15028821,0.17511916,0.4072535,0.2193706,-0.044132486,0.1569646,0.32436934,0.42360103,0.16122483,-0.6447188,0.051658552,-0.2752317,-0.5210141,-0.16931267,-0.34319106,0.12325514,0.15604135,-0.5238454,-0.1977403,-0.17092569,-0.24418713,0.3428948,-2.482436,-0.26443294,-0.059309017,0.47973135,-0.21521473,-0.2662987,-0.14167495,-0.5176258,0.4700153,0.3921651,0.5894994,-0.7607091,0.2527435,0.6603419,-0.45047083,-0.07560048,-0.6021212,0.0004666249,-0.1559239,0.30732992,0.16823155,-0.22380853,-0.057222035,0.12918837,0.6861574,0.2655729,0.0912532,0.11197242,0.45081738,-0.12965208,0.38095784,-0.24385238,0.49965134,-0.24609435,-0.17304349,0.31712085,-0.16380163,0.07554161,-0.44021618,0.18476748,0.42631027,-0.4321846,-0.87644285,-0.6122594,-0.22783859,1.4151073,-0.16380186,-0.57167894,0.46393514,-0.08370074,-0.16167875,-0.16847368,0.5349609,-0.20928484,-0.18105012,-0.7773202,0.045816537,-0.10305771,0.1504634,0.10773092,-0.061807375,-0.46935543,0.85018533,-0.074308775,0.46470413,0.40737787,0.2448501,-0.07583052,-0.43611896,-0.047267187,0.83980966,0.40161753,0.18813448,-0.2828725,-0.093874834,-0.19427447,0.160281,-0.018564133,0.6333234,0.8042688,-0.2101245,-0.049586464,0.19988646,0.25383273,0.10859584,-0.119815804,-0.3002158,-0.14820768,-0.15995422,0.44685718,0.644043,-0.33198473,0.15330982,-0.12665294,0.26281908,-0.19921486,-0.29784116,0.43788636,1.0797734,-0.15996432,-0.18264551,0.8220916,0.36446056,-0.2537982,0.43171728,-0.77498364,-0.31902775,0.4428468,-0.16738474,-0.42252156,0.19394927,-0.44298708,0.20009887,-0.8369836,0.3411698,-0.29832026,-0.32172433,-0.6298274,-0.1759535,-3.5811176,0.26379725,-0.41174832,-0.05936988,-0.18812935,-0.22026336,0.21010627,-0.77568895,-0.59602636,0.29142722,0.19644593,0.63980675,-0.054249182,0.13782226,-0.19520672,-0.39029536,-0.20308311,0.08512931,0.012933172,0.26674575,0.27549207,-0.36683908,0.12667133,0.02557831,-0.3216108,0.025421858,-0.48233366,-0.46449903,-0.113833934,-0.5662532,-0.4147861,0.5175386,-0.2764089,0.047899198,-0.20218545,0.046579573,-0.14212568,0.14220269,0.052301507,0.2526754,-0.02308703,0.08855047,-0.009551674,-0.17235535,0.39232278,0.053162914,0.20709562,0.37663198,-0.34852764,-0.23084687,0.53011286,0.56285137,-0.15402131,0.99682736,0.49667946,-0.064654626,0.2582712,-0.1320911,-0.33619544,-0.7027719,-0.41532293,0.00565284,-0.4293296,-0.4430976,0.016808312,-0.37061706,-0.7989114,0.5766445,-0.14388336,0.4433411,0.13539548,0.43081847,0.6273392,-0.23971854,0.011315753,0.07269502,-0.19316347,-0.51767635,-0.16450326,-0.71137804,-0.29982,-0.06923464,0.8182834,-0.19747108,-0.008583841,0.03720836,-0.05238195,0.026971733,-0.06408245,0.061868567,0.0046687922,0.46989274,0.08722815,-0.63504064,0.4709107,0.010195591,-0.15576981,-0.5874036,0.00058194995,0.45011887,-0.7328294,0.4643263,0.48014423,-0.07399284,-0.17529671,-0.68455744,-0.46769002,-0.07385258,-0.20462006,0.35813895,0.34901595,-0.74639314,0.431177,0.388566,-0.18853319,-0.78045607,0.4631964,-0.122723974,-0.58802515,0.047448352,0.32928973,0.17061615,0.14062656,0.11219791,0.20883483,-0.403711,0.30028287,0.24498528,-0.050298825,0.3919978,-0.13702887,-0.0024517726,-0.9321038,-0.05388704,-0.59666353,-0.20260827,0.29183385,0.08947656,-0.033657815,0.25141048,0.043261487,0.47336093,-0.32373407,0.19226341,-0.083223075,-0.20805895,0.5121365,0.3938208,0.48824143,-0.25013316,0.6567232,0.07080377,-0.1450385,-0.18395098,0.1712271,0.42591003,0.010099408,0.32289335,-0.046574175,-0.2740263,0.17187835,0.8264323,0.19318663,0.30198082,0.21805839,-0.028828016,0.51927704,0.24417424,0.1738125,-0.12389424,-0.56199795,-0.15383284,-0.33777305,0.0061027952,0.43096685,0.19775356,0.22862731,-0.2029739,-0.20359945,-0.0149834575,0.24751054,0.1319936,-1.0999237,0.13294953,-0.062298592,0.76002854,0.557702,0.13328831,-0.09531713,0.50768465,-0.0007530202,0.09255233,0.2943335,0.008213796,-0.4215848,0.4371985,-0.45643425,0.16447687,-0.20635776,0.019685768,-0.03760445,0.011028573,0.3031771,0.5969711,-0.092632495,-0.06631074,-0.1040358,-0.22139247,0.13528258,-0.4551796,0.13577749,-0.5467618,-0.18741255,0.60675937,0.47299156,0.3873525,-0.31729907,-0.009541289,-0.002941534,-0.091380574,0.071612425,-0.040661942,-0.012456882,-0.06356565,-0.59490603,0.0028935373,0.49592316,0.35306978,0.056153137,-0.264884,-0.30884355,0.15743864,-0.14603241,-0.2614779,-0.052841887,-0.67213565,-0.053913284,-0.4343704,-0.4258695,0.2778151,0.025815884,0.3078462,0.15480109,0.012930338,-0.2500327,-0.035255928,0.18423986,0.62489,-0.05617844,-0.12759866,-0.52965504,0.12599273,0.11071516,-0.20230223,0.014189755,-0.17778556,0.07872435,-0.47335362,0.5168539,-0.06252536,-0.13318123,0.11770492,-0.281626,0.008840029,0.59611994,-0.13202877,-0.12062857,0.013647123,-0.33777502,-0.3768524,-0.21630573,-0.17488734,0.29138687,0.026085878,-0.22686751,-0.1285137,-0.12117249,-0.22401853,0.397266,0.1784345,0.23894817,0.20554638,0.05910504,-0.22923471,-0.14126118,0.07642726,0.54612875,-0.053805068,-0.25307587,-0.23873131,-0.70500225,-0.26375997,-0.15051408,0.00034404793,0.3103153,0.05915889,-0.09418922,0.7269841,0.30125,1.0144633,0.014288922,-0.35918364,-0.18725355,0.53392,-0.22288603,-0.19121015,-0.1894002,0.9496781,0.5715063,-0.06644789,-0.058643907,-0.20840818,0.14819495,0.09599814,-0.15056863,-0.041454896,-0.0584607,-0.62045985,-0.26103997,0.36351228,0.36565414,0.20682152,-0.07205539,0.07281912,0.22801477,0.05895667,0.49241993,-0.4537057,-0.23539376,0.14874946,0.12932378,0.13724265,0.09458136,-0.27113768,0.34976792,-0.5682263,-0.011401738,-0.543847,0.07603095,-0.24670096,-0.20994604,0.3374641,-0.017626682,0.5153652,-0.37565005,-0.48550776,-0.22458987,0.30115518,-0.10026139,0.11472523,0.48707977,-0.17014419,0.0071027675,0.09142986,0.69248945,1.2866664,-0.103715695,0.23057474,0.32291344,-0.41244444,-0.6846157,0.34738874,-0.26394224,0.0765979,-0.13236813,-0.11485235,-0.50053924,0.2645814,0.26534942,0.045398954,0.21418203,-0.5355456,-0.42387095,0.26805863,-0.3103995,-0.16390467,-0.121408165,0.11729864,0.64667696,-0.324792,-0.24593578,-0.072157584,0.33617386,-0.1765163,-0.7078757,-0.027261471,-0.35792652,0.31296575,0.23560794,-0.32329226,-0.019527009,0.09395503,-0.52871233,0.026646933,0.117591105,-0.31380892,0.09864373,-0.4675788,0.07575285,0.89144254,-0.15570103,0.17785864,-0.47728088,-0.499409,-0.9523671,-0.18683524,0.7136598,0.18313916,0.19573082,-0.5064257,0.14479668,-0.15366818,0.03069959,-0.30209085,-0.17760502,0.5795447,0.16301683,0.51815516,-0.097267576,-0.7524602,0.011997809,0.03224488,-0.19928086,-0.43782791,0.54052943,0.22071512,0.90300757,-0.019888673,0.14305867,0.1274408,-0.5017563,0.09061825,-0.21854186,-0.14448224,-0.65297025,0.04426579 +717,0.53986394,-0.08075051,-0.4590187,-0.15899879,-0.15310761,0.1505641,-0.06861146,0.24434295,0.14985977,-0.40129787,-0.085126445,-0.105104305,-0.0046487264,0.1912403,-0.12397395,-0.71633446,0.055533618,0.073972434,-0.64935476,0.62835056,-0.4757581,0.38485712,0.118415624,0.11320983,-0.101889804,0.39239419,0.2172544,-0.2746275,-0.033295587,-0.07370074,-0.11037718,0.1199428,-0.7403848,0.2604224,-0.025576323,-0.18228672,-0.03398156,-0.3174897,-0.30679688,-0.6658803,0.27399707,-0.6660167,0.38374245,0.081681415,-0.23912391,0.23261802,0.03797195,0.29577732,-0.3653935,0.1769008,0.23939231,-0.033719227,-0.2039703,-0.12976086,-0.005405806,-0.4727711,-0.53940016,0.04853073,-0.520408,-0.19568506,-0.21372889,0.16375314,-0.38073546,-0.017341927,-0.09316558,0.32994804,-0.37680006,-0.018173505,0.30313605,-0.1443297,0.23196626,-0.41884387,0.08783822,-0.0986494,0.26627216,-0.19703747,-0.20312482,0.20844857,0.32480317,0.5705769,0.13601913,-0.25496492,-0.22490294,-0.011026779,0.19133982,0.46113214,-0.108075775,-0.45480284,-0.19363837,0.113284044,0.028275114,0.20982122,0.026966792,-0.3690586,-0.27227315,0.074661784,-0.2237764,0.34042698,0.569846,-0.3866827,-0.34292838,0.5281471,0.5858989,-0.02448722,-0.007877411,0.1267129,0.037502483,-0.5416759,-0.1807951,0.24679206,-0.15903056,0.40988842,-0.2051729,0.1463302,0.66298306,-0.29423088,-0.071386695,-0.004394075,-0.10344204,-0.03926252,-0.11151357,-0.029525258,0.13275379,-0.55657715,-0.0033697896,-0.32445562,0.73830265,0.23230442,-0.7844802,0.32917732,-0.4738292,0.20457497,-0.12359142,0.64901257,0.8797878,0.3739372,0.18324357,0.8710557,-0.48483592,0.12240267,-0.13838771,-0.48924106,0.2714439,-0.21913621,-0.053073633,-0.49177277,-0.013844173,0.02857349,-0.081247464,-0.08528899,0.3559619,-0.6062194,-0.09916248,0.11246572,0.6305165,-0.34277457,0.025575839,0.6596194,0.8350643,0.9137567,0.17852063,1.3712972,0.26799786,-0.22595225,0.1872786,-0.4184692,-0.77476895,0.21668802,0.3795603,0.15228848,0.12137068,0.08214455,0.008814881,0.29866016,-0.39648324,0.12719178,-0.2868887,0.40706322,-0.0548964,-0.13244069,-0.13412082,-0.08668201,-0.118522786,0.20864972,0.15053603,0.20068803,-0.20536658,0.29277074,0.085318364,1.5546718,-0.14288083,0.13643321,0.023082668,0.25436544,0.24847853,-0.19362688,-0.14347272,0.3050738,0.48438495,0.18386468,-0.60884786,-0.05449602,-0.15744683,-0.41769323,-0.19895887,-0.33108038,0.026594106,-0.12149524,-0.28444526,-0.1320566,0.01635795,-0.32278198,0.58548796,-2.6498747,-0.047681794,-0.13014689,0.32289314,-0.25916222,-0.30534047,-0.21658947,-0.6009117,0.48723897,0.33466756,0.40688318,-0.77305174,0.31481135,0.2968691,-0.37139535,-0.02337366,-0.7264365,-0.0015640333,-0.08802411,0.31851864,0.02305185,-0.13253261,-0.12709114,0.105354555,0.44440812,0.019295715,0.06735077,0.26761866,0.34376055,0.18334036,0.5563463,0.11591405,0.54800034,0.000301769,-0.2248597,0.31373852,-0.3453628,0.28982165,-0.1613453,0.07424147,0.24756932,-0.51028305,-0.8653896,-0.7537225,-0.278826,1.1742209,-0.24395582,-0.26981318,0.21167651,-0.16764414,-0.2357389,-0.13081834,0.37350976,-0.09541698,-0.1381944,-0.7492807,0.14551502,-0.06845948,0.17111604,-0.03944906,-0.09804955,-0.4500432,0.75459206,-0.1286069,0.5805093,0.30310762,0.11877775,-0.07382533,-0.506079,0.055754878,1.214689,0.40099126,0.040130958,-0.08961796,-0.22257023,-0.33784413,-0.11302267,0.066968665,0.46903533,0.821223,-0.08109354,0.015188515,0.31951302,-0.075840175,0.04657131,-0.09748609,-0.24802193,-0.091184326,-0.21606322,0.58692926,0.49899185,-0.120626,0.44033965,-0.10625799,0.20707805,-0.065803215,-0.4736676,0.65038025,0.8609594,-0.06613138,-0.28922802,0.47146422,0.3111546,-0.15298209,0.43514538,-0.5119833,-0.24860297,0.30989596,-0.23740305,-0.19834432,0.1855022,-0.41640502,0.14833307,-0.8546462,0.3459983,-0.18602723,-0.41059598,-0.47145754,-0.1978606,-3.4391747,0.14515856,-0.18411753,-0.124066755,-0.034324884,0.052283436,0.29771453,-0.46361843,-0.47568238,0.23882324,0.096353866,0.655553,-0.01281083,0.12418779,-0.17433286,-0.11678934,-0.34080583,0.16540556,0.10018884,0.16606143,0.029757142,-0.31804872,0.05033055,-0.06030231,-0.2908421,0.11169663,-0.4867285,-0.4775713,-0.2565686,-0.45261627,-0.26808897,0.71625644,-0.23743169,0.05057455,-0.16390687,-0.021207524,-0.017105948,0.3462926,0.092893735,0.062876426,-0.00064065866,0.0011431985,-0.024921328,-0.34310433,0.23241092,0.0076732934,0.2828199,0.27650952,-0.19297689,0.12715891,0.39658728,0.4467402,-0.19838923,0.73107624,0.45368266,-0.07093805,0.15720834,-0.23660202,-0.16606295,-0.5485059,-0.37148798,-0.20072219,-0.5162886,-0.3745453,-0.089474045,-0.37625083,-0.78658015,0.4041819,0.022992045,0.004579097,-0.01593583,0.3408394,0.48061478,-0.008137219,0.090124145,-0.068856135,-0.15740557,-0.45050094,-0.22723588,-0.538694,-0.36245117,0.25757384,1.1082839,-0.33398277,-0.03518771,-0.04679887,-0.027530748,-0.010686215,0.07929118,-0.035645794,0.24192552,0.4712975,-0.039513722,-0.56500846,0.4932981,-0.23324981,-0.14047512,-0.72530323,0.16238065,0.50408226,-0.77303296,0.43306926,0.31975198,0.10304004,0.035107434,-0.52830756,-0.12945941,-0.057202682,-0.30091977,0.41753954,0.12404308,-0.8293566,0.5255695,0.25318238,-0.14921631,-0.72462285,0.35145968,-0.06676974,-0.30628255,0.06472479,0.25959224,0.12249889,-0.027277725,-0.3224957,0.23270456,-0.4793985,0.22612372,0.25274432,-0.0643765,0.3675244,-0.05896329,-0.30441695,-0.67335826,-0.15515599,-0.51033646,-0.21197739,0.1516038,0.06606398,0.12558809,0.17090392,0.006378904,0.53569067,-0.34881085,0.20301235,-0.03362474,-0.26844186,0.35935026,0.40364504,0.35065025,-0.43376952,0.54710805,0.06959334,-0.12457212,-0.19347505,0.12712224,0.60166717,0.12300329,0.29450065,0.013318183,-0.24201453,0.4185407,0.8706676,0.13456333,0.36574355,0.019945353,-0.25079486,0.2726605,0.13998978,0.09472589,0.10812169,-0.48817408,-0.0015833043,0.09015946,0.19405702,0.35635415,0.19835287,0.37328476,-0.050516136,-0.13546059,-0.09231987,0.18198664,0.019076277,-1.0586247,0.34785846,0.24336055,0.6959286,0.52457774,-0.039276972,-0.0042891316,0.46636087,-0.28730446,0.19290727,0.16230226,-0.19138414,-0.43900692,0.45040166,-0.8260202,0.42051613,0.02293418,-0.017121192,0.054146837,-0.019117052,0.2950855,0.98933923,-0.12491928,0.10682752,-0.16206142,-0.18159652,0.15596586,-0.32568362,0.008357849,-0.538483,-0.36694592,0.6783721,0.31191927,0.3495615,-0.09953919,0.034147825,0.04142029,-0.09091492,0.05570353,-0.04561977,0.11666518,0.072992,-0.5504892,-0.34437835,0.5055841,-0.06532898,0.12692206,0.07888764,-0.22539817,0.18870759,-0.22027653,-0.04210995,-0.18290392,-0.5318973,0.03132478,-0.18552159,-0.28295127,0.5262497,-0.17749622,0.3233898,0.20310813,0.06563277,-0.21978936,0.2230421,0.19041029,0.62619084,-0.032588415,-0.21408914,-0.472867,0.22954747,0.15391493,-0.27511707,-0.1315711,-0.31596246,0.19009389,-0.6848924,0.38245392,-0.08716407,-0.5213568,0.17517497,-0.22815812,-0.06770836,0.49026257,-0.25126272,-0.17583165,0.15216987,-0.30480233,-0.2291747,-0.10940147,-0.18034406,0.2493597,0.30998966,-0.03902881,0.005382385,-0.15190953,-0.14951646,0.33777392,0.24498925,0.31278482,0.22421804,0.1249685,-0.30859458,-0.09545286,0.2173795,0.40697664,-0.08183442,-0.1378187,-0.2580164,-0.6005149,-0.4086557,0.029701918,-0.12319707,0.3222139,0.104820296,-0.21874686,0.5731611,0.06774193,1.1194172,0.1991225,-0.3106449,-0.0021796227,0.56648034,0.07487551,-0.0068543926,-0.31647748,0.876312,0.60313743,-0.11676285,-0.10136025,-0.35224503,-0.21316135,0.17744221,-0.17429319,-0.019701302,0.0560328,-0.67438906,-0.4551433,0.23650779,0.13820365,0.15538698,0.021647688,-0.175314,0.15757264,0.03908001,0.13163304,-0.5745468,-0.107079566,0.27357668,0.16785114,0.087782204,0.17553346,-0.45778647,0.3570693,-0.42591417,-0.05598475,-0.050950065,0.13740586,0.0050539076,-0.16531193,0.2956715,0.05158279,0.41755253,-0.25826234,-0.57784635,-0.2878832,0.49145854,0.24025312,0.17600426,0.68497956,-0.28883967,0.121263504,0.04018811,0.57380563,1.2557987,-0.24885684,0.13773894,0.35749903,-0.28798476,-0.56150365,0.21174696,-0.16828889,0.082912475,-0.040160723,-0.3675414,-0.41365165,0.3119479,0.10826072,0.15100402,0.28019357,-0.67075515,-0.16347873,0.1611533,-0.32644102,-0.27197966,-0.31860778,0.2821845,0.8473047,-0.35527116,-0.20340696,0.18638559,0.22324865,-0.26996785,-0.63194555,-0.23896784,-0.27527896,0.22321978,0.14401925,-0.2472029,-0.01059968,0.17002967,-0.40277794,0.15742789,0.2497685,-0.3195174,0.08013634,-0.23404887,-0.12074922,0.8845496,-0.18116567,0.13289395,-0.5545087,-0.35928184,-0.83714926,-0.34024268,0.46864653,0.17166789,0.050673142,-0.52751905,-0.15651488,-0.078134276,0.10903581,-0.0034482717,-0.49015874,0.5418851,0.1170869,0.25669444,-0.040205576,-0.939049,0.07984248,0.009126237,-0.25298375,-0.5541346,0.5216428,-0.04483859,0.7436258,0.16108404,-0.04921398,0.32915756,-0.62196046,-0.053072296,-0.27049354,-0.13001694,-0.8422364,0.062261 +718,0.35732365,-0.026139062,-0.5672534,-0.040549207,-0.113085486,0.1552766,-0.09098762,0.41550335,0.31140137,-0.28606555,0.032018863,-0.08431023,0.11978653,0.3684144,-0.086631715,-0.49353835,0.010307603,0.083365306,-0.35554615,0.40184793,-0.50839084,0.24231723,-0.23529083,0.5019176,0.023756005,0.35034946,0.12995468,-0.08724341,-0.074530885,-0.07437833,0.008518428,0.567621,-0.30502224,0.1674026,0.054884814,-0.24390717,0.05243627,-0.28399152,-0.4359712,-0.6454474,0.2679549,-0.50045204,0.38104156,0.0707526,-0.30899256,0.17370239,-0.016948007,0.1754021,-0.21033615,-0.16506487,0.11232843,-0.16066635,-0.009710517,-0.30726874,-0.11740592,-0.3126475,-0.47364634,-0.0031144312,-0.43920648,-0.18623897,-0.25601906,0.10787457,-0.36432523,-0.09044704,-0.09617851,0.42524624,-0.4310317,0.14175113,0.13349116,-0.32453078,0.26983315,-0.60722864,-0.32674405,-0.012666517,0.15941107,-0.13290226,-0.2832082,0.30631912,0.32362524,0.47330663,-0.07641104,-0.044030942,-0.45774522,-0.16814783,0.114042975,0.44269326,-0.35405025,-0.5344311,-0.0375173,0.09751861,0.002522163,0.22114071,0.03753656,-0.22813134,-0.09624768,0.27838606,-0.21993536,0.41370997,0.48195988,-0.40673587,-0.28715998,0.32164523,0.4358676,0.22924009,-0.08412527,-0.009253945,-0.004267833,-0.46035498,-0.13529783,-0.117601044,-0.08027292,0.3823821,-0.10049106,0.29134938,0.6997025,-0.1826354,-0.08280133,0.045164455,0.059396237,-0.053289875,-0.1967386,-0.034793984,0.10315873,-0.26615676,0.21018589,-0.0794503,0.77811795,0.15738982,-0.62820625,0.42753455,-0.44297156,0.14977041,-0.11162058,0.51159394,0.6601743,0.2515529,0.34765995,0.7276654,-0.3629009,0.064773425,-0.093589,-0.43192416,0.13908191,-0.10540087,-0.08304352,-0.51157737,0.058634274,0.14735308,-0.08248537,0.21486032,0.38855976,-0.6264567,-0.14815672,0.1411949,0.79009265,-0.26597938,-0.14868197,0.43863878,1.001052,0.8480092,0.0016402714,0.9817393,0.10747879,-0.16935399,0.2544425,-0.4156564,-0.6432104,0.22232366,0.2690667,0.015910953,0.12909573,-0.018915124,-0.04307963,0.37969685,-0.17540479,-0.0053457525,-0.11686472,0.4595891,0.12558573,-0.065417066,-0.24046475,-0.28074118,-0.073601864,-0.13155292,0.077342525,0.3063256,-0.16208296,0.4266502,-0.028181992,1.7471281,-0.020990934,0.18199056,0.1310648,0.4687665,0.24604489,-0.13296072,0.004491331,0.37894818,0.1125447,0.11766871,-0.42934242,0.14677191,-0.2224131,-0.6159033,-0.020246062,-0.3637335,-0.080239415,0.21491337,-0.31117243,-0.14322181,-0.120640725,-0.26949987,0.50085104,-3.0222983,-0.14250016,-0.013662152,0.30532363,-0.24212146,-0.3056979,-0.153416,-0.4061711,0.2891896,0.31024924,0.47850686,-0.66884506,0.10927113,0.42521745,-0.4769271,-0.085353225,-0.43090293,-0.011983775,0.0018112808,0.3374477,0.027388796,-0.11294045,-0.11270696,0.19006646,0.48008043,-0.085030004,0.091578454,0.23316991,0.23176706,0.04923246,0.35087413,-0.08264198,0.47441697,-0.13939814,-0.2339096,0.47077733,-0.37775078,0.24855882,-0.089026764,0.019578673,0.3424895,-0.3019684,-0.8885838,-0.5087702,-0.06370035,1.1655545,-0.1387771,-0.37202287,0.33243707,-0.4380191,-0.22822267,-0.13210343,0.30145264,-0.044582695,-0.17070004,-0.73905665,0.17083013,-0.18146327,0.08767094,0.10538204,-0.046438277,-0.3337939,0.5279978,0.04297389,0.4370023,0.3407762,0.037029132,-0.25826484,-0.35955203,-0.026213208,0.66048366,0.35976595,0.242365,-0.22877583,-0.24336317,-0.21486801,-0.12829241,0.19971727,0.5864911,0.50254035,-0.044666387,0.13455148,0.3829325,-0.16076604,-0.045398694,-0.19500403,-0.22645943,0.082141615,0.008775903,0.61025786,0.6773898,-0.30457282,0.3925907,0.13276774,0.30749032,-0.10459327,-0.47511378,0.51505613,0.8775671,-0.17634383,-0.28030166,0.5384722,0.25129876,-0.34223714,0.2985403,-0.5323743,-0.22478227,0.5648818,-0.26180008,-0.37482524,0.15637535,-0.33627325,0.118947804,-0.79560757,0.2021968,-0.24338259,-0.40643343,-0.48882768,-0.14804007,-3.4264956,0.14564586,-0.3571902,-0.14792426,-0.06876867,0.0039301217,0.08312045,-0.6077744,-0.46977478,0.07754092,0.16131409,0.58479965,-0.13299981,0.09887751,-0.31980705,-0.3246501,-0.24697882,0.18231167,0.06566587,0.44429204,0.029313803,-0.4046164,0.11886388,-0.07768986,-0.36331546,0.11928174,-0.39240432,-0.59300053,-0.17329332,-0.5209592,-0.35792345,0.6209528,-0.22299623,-0.05506532,-0.14892396,-0.010169007,-0.1139375,0.24503732,0.19963324,0.024998877,0.12953368,0.012325537,-0.019145388,-0.3437646,0.1877369,-0.11759659,0.3339719,0.47656137,-0.011839494,0.0944033,0.5375449,0.58977216,-0.07929379,0.81763834,0.4279945,-0.04443063,0.2884303,-0.36632344,-0.13948685,-0.44817442,-0.31533596,-0.0040002055,-0.37647328,-0.48656204,-0.11058898,-0.3575734,-0.540346,0.51432914,-0.07868226,0.06669875,0.032465305,0.21791425,0.5578537,-0.16666336,-0.057455093,0.00891209,-0.09337655,-0.63499105,-0.2263872,-0.60359645,-0.5048915,0.31105265,0.78304183,-0.3288998,-0.05976732,-0.01738192,-0.18913133,-0.098046936,0.09788421,0.19981146,0.19645825,0.46902537,-0.11849493,-0.5324043,0.31368423,-0.11168607,-0.16483267,-0.664403,0.24734725,0.4644022,-0.5940852,0.67858136,0.21697244,0.17782936,-0.10031931,-0.5581757,-0.19788484,0.019047415,-0.25400907,0.43278983,0.1935682,-0.82895035,0.46303725,0.46278703,-0.2660372,-0.6382585,0.4636858,-0.111879095,-0.37954348,-0.15663831,0.27142403,0.1420581,-0.03209612,0.009922586,0.26614693,-0.47727314,0.24794026,0.16460836,-0.10951118,0.4675753,-0.14445965,-0.21203388,-0.68074054,-0.010281669,-0.50247246,-0.29588726,0.23859641,0.11340593,0.043989573,0.033785027,0.010602355,0.47433078,-0.32465038,0.044285163,-0.05199077,-0.10514218,0.31723687,0.38233268,0.48357517,-0.3809166,0.52607685,-0.06385268,0.006671207,0.034923043,0.080860555,0.36635756,0.090714544,0.32855347,0.05128371,-0.2865447,0.15838961,0.864527,0.057299428,0.4518198,-0.13840286,-0.18879548,0.17039709,-0.020513128,0.15848838,0.0016168281,-0.5105861,-0.063868694,-0.22263888,0.17102385,0.49766386,0.17802934,0.3088972,-0.08799396,-0.46568745,0.036912546,0.21028751,0.05166158,-1.0795594,0.24794206,0.19733453,0.77487093,0.41115302,0.07627713,0.02070231,0.575885,-0.21875621,0.12670802,0.32501912,-0.016076542,-0.58622503,0.47229794,-0.85330343,0.5241847,-0.039573908,-0.08951948,0.022879824,-0.08229889,0.30978212,0.7414005,-0.16377562,-0.043005995,0.13302107,-0.30006492,0.11759814,-0.30854413,0.025997698,-0.6098192,-0.26605222,0.5116436,0.6201022,0.26088357,-0.2575112,-0.0766379,0.09851636,0.0043527335,0.10398434,-0.034693725,0.17944996,-0.043247677,-0.5810064,-0.32547426,0.52225614,0.23657736,0.19916266,-0.04709123,-0.10648926,0.39870396,-0.10214038,-0.013162948,-0.08623233,-0.3537125,0.07013654,-0.17402616,-0.48235375,0.66471463,-0.10538012,0.35012147,0.16163696,0.108391136,-0.2657999,0.44250038,-0.039814703,0.7265091,-0.05656147,-0.053298168,-0.5125309,0.13409176,0.16025102,-0.12143731,-0.28974622,-0.2520854,-0.06793952,-0.42931363,0.4315548,-0.027452506,-0.16870195,-0.045486305,-0.15987487,0.03569731,0.43293554,0.004947275,-0.23205717,-0.14765038,-0.14714286,-0.37279084,-0.122994065,-0.039721474,0.1587058,0.14580801,-0.12520902,-0.11939211,-0.2331021,-0.09917767,0.24211745,0.015406871,0.13596842,0.33550793,0.075777724,-0.31878906,-0.13557878,0.2534835,0.44921488,0.014206018,-0.058186524,-0.18291461,-0.46509922,-0.38591918,0.10361661,-0.11711612,0.33265066,0.18445197,-0.42195585,0.5308758,-0.10786329,1.0003331,0.08316881,-0.11744978,0.033148885,0.43814716,0.019176364,0.004620157,-0.31001604,0.77368605,0.55814743,-0.11162899,-0.27212077,-0.35145822,0.015192484,0.16150527,-0.21569845,-0.10224634,-0.038979776,-0.6646232,-0.11994191,0.22480294,0.25629526,0.22325844,-0.111326426,-0.05747713,0.1203163,0.1981605,0.30604306,-0.2427635,-0.26494348,0.21908653,0.30534947,0.086219095,0.15159898,-0.40836993,0.34493637,-0.4706799,0.16856831,-0.21817867,0.14615327,-0.2386366,-0.30357617,0.17510164,-0.02895322,0.35289767,-0.23761863,-0.2944337,-0.16615045,0.26763162,0.18492849,0.06734273,0.6892475,-0.23730704,-0.06228092,0.17781958,0.4038899,1.1629257,-0.20282036,-0.14440918,0.40330285,-0.20982115,-0.6096068,0.3209344,-0.29431874,0.13035946,-0.095066175,-0.11786996,-0.5590638,0.17732057,0.19559628,-0.008251039,-0.08185841,-0.5696739,-0.14261547,0.10192462,-0.46183878,-0.09622325,-0.31697536,0.043103583,0.7243905,-0.22932842,-0.197938,0.112475246,0.33375573,-0.15645836,-0.578295,0.09040095,-0.23812039,0.35776913,0.0014884621,-0.25940478,-0.031367064,0.2147274,-0.43957824,0.12128091,0.2490935,-0.45352754,0.12329248,-0.30732682,0.0139381215,0.8680115,-0.25394425,0.33434713,-0.35092938,-0.34957558,-0.6969127,-0.20265135,0.47027212,-0.110474534,-0.017051425,-0.6589132,-0.11690049,-0.055848762,-0.29362085,-0.16113025,-0.39301637,0.4879225,-0.029805379,0.23545802,-0.11331456,-0.5854847,0.12722957,0.1353397,-0.055875298,-0.55106974,0.566871,-0.21800052,0.80774486,0.11312467,-0.006722551,0.38703018,-0.40034854,0.04407945,-0.2225119,-0.24549799,-0.58723444,-0.019007836 +719,0.49599865,-0.28401464,-0.5493661,-0.09293245,-0.23418908,0.08104569,-0.22401795,0.49563822,0.11789333,-0.5368808,-0.3395535,-0.2583143,0.12421328,0.21722712,-0.18860087,-0.42755517,0.06194877,0.22902796,-0.47999135,0.6341411,-0.35182795,0.32771197,0.03301959,0.4486846,0.2952098,0.1886243,0.084864475,-0.024741216,-0.34131286,-0.1943591,-0.1852586,0.23806296,-0.57301,0.16410467,-0.24534562,-0.42854643,0.057411782,-0.5406572,-0.25755796,-0.76476765,0.21382955,-0.8085736,0.5523363,0.016475545,-0.33327815,0.1951919,0.27428457,0.37399325,-0.17301862,0.014790705,0.22886746,-0.11796998,-0.03174383,-0.07307006,-0.32249215,-0.4359703,-0.61703235,-0.11228273,-0.43787104,-0.21494317,-0.32470298,0.14321347,-0.23224095,-0.05389231,0.019032892,0.41580313,-0.52266806,0.07895827,0.2409333,-0.02729613,0.5546514,-0.50271696,-0.2606857,-0.2030197,0.32188436,-0.34515426,-0.24560067,0.17871962,0.47916743,0.3652086,-0.12589525,-0.12108909,-0.21194538,-0.1428139,0.20634355,0.47229344,-0.18109046,-0.52595675,-0.14682147,-0.1354919,0.31942278,0.41781157,0.33863297,-0.31052658,-0.2119641,-0.030874508,-0.19546749,0.31659195,0.35914162,-0.23787673,-0.18021801,0.35540748,0.6171912,0.31220976,-0.11781999,0.020930737,0.04706886,-0.5509415,-0.22747442,0.10317044,-0.3087087,0.62606,-0.121475875,0.29343262,0.7319107,-0.19084893,-0.02284014,0.060910467,0.09153912,-0.26123238,-0.22321008,-0.33904546,0.21636115,-0.44798034,0.1524746,-0.07822024,0.63378507,0.20351611,-0.698775,0.19203831,-0.61564666,0.06591744,-0.1213634,0.4725831,0.5694474,0.4768667,0.40907148,0.5898308,-0.5050627,0.072050095,0.0820241,-0.38807052,0.003832651,-0.2882046,-0.24154703,-0.59723413,-0.03689266,0.02300571,-0.07576252,0.14870794,0.59390706,-0.50725055,-0.08470784,0.04004892,0.82991785,-0.29118577,-0.15750279,0.85699207,0.93349123,1.0114993,0.11177522,1.2564409,0.23164606,-0.2199074,-0.01571305,-0.0695731,-0.6663733,0.31618348,0.5385083,-0.6272098,0.3566401,0.10060073,0.06742108,0.33362547,-0.21947588,0.050650503,-0.18522099,-0.09450513,-0.112324834,-0.37231448,-0.42687985,-0.24709736,-0.19495884,0.05700412,-0.12622179,0.24321876,-0.10564727,0.5341463,0.16056326,1.7303507,-0.008031709,0.0330966,0.03502771,0.30896732,0.2524271,-0.09348364,-0.24678142,0.46593097,0.3176608,0.302336,-0.47106075,0.029215125,-0.09803238,-0.51304066,-0.16156748,-0.3309939,-0.10105933,-0.18329461,-0.4547878,-0.016183572,-0.20014226,-0.1962022,0.45401478,-2.566408,-0.19416167,-0.18353525,0.2862205,-0.12716451,-0.38592246,0.03473693,-0.4060637,0.52609354,0.32832307,0.5443453,-0.6351814,0.25009373,0.36839265,-0.44656482,-0.13696441,-0.6432771,-0.3061504,0.04443642,0.34421787,-0.115678705,-0.022257438,0.18164136,0.3352509,0.42217702,-0.14131741,0.2572653,0.27657053,0.52317685,-0.07872309,0.6314874,-6.9210575e-05,0.4955024,-0.06559657,-0.18635209,0.34594154,-0.23987405,0.37494573,0.04697759,0.15124881,0.4553135,-0.41451332,-0.9255361,-0.73015565,-0.39147496,1.0186881,-0.22622505,-0.43317208,0.16132498,-0.24358581,-0.3578314,-0.0799791,0.3892363,-0.10837387,0.19447507,-0.8665784,-0.03502271,0.031804383,0.08981283,-0.03191228,-0.012699955,-0.47077134,0.67067283,-0.07068209,0.4943145,0.52776253,0.15433316,-0.34511408,-0.48810458,-0.030601034,1.0588735,0.50134236,0.16747044,-0.21240175,-0.23296528,-0.60475737,-0.10452999,0.14104472,0.4538377,0.8081218,-0.06737717,0.3410187,0.22111401,0.07337988,0.047320914,-0.34548423,-0.27033347,-0.019823765,-0.028435988,0.46444947,0.49229988,-0.21750818,0.6073853,-0.1680646,0.3199315,-0.051181395,-0.6019927,0.48751047,1.084964,-0.22089885,-0.26297566,0.6333136,0.47975713,-0.23451957,0.47271737,-0.5713959,-0.20305718,0.600057,-0.1346786,-0.48466867,0.39824414,-0.30878776,0.16336186,-1.0772723,0.3154487,-0.31250063,-0.3930588,-0.4313113,-0.07935242,-3.335787,0.29024336,-0.19379644,-0.24409625,-0.15631105,-0.2192129,0.20763591,-0.6753928,-0.768247,0.16702403,-0.040521245,0.8172326,-0.12741055,0.14308141,-0.1448232,-0.35199824,-0.23906915,0.10815982,0.06648238,0.32331187,-0.11990982,-0.58173674,-0.11356833,-0.15970738,-0.5221409,-0.05411085,-0.6113846,-0.56259733,-0.13603947,-0.49839282,-0.37298733,0.62281895,-0.32029432,0.011101552,-0.18283477,-0.101189256,-0.03076773,0.2686239,0.15744445,0.1028802,-0.036478523,-0.040192153,0.0443112,-0.24046536,0.22199099,0.16366991,0.08337648,0.29978782,-0.17925501,0.44119564,0.42943606,0.6183917,-0.15653683,0.77504194,0.44256353,-0.17250942,0.22403495,-0.29754353,-0.30278826,-0.62792534,-0.33016735,-0.10712586,-0.46842402,-0.59982425,-0.14045012,-0.33643037,-0.774031,0.6199969,0.031776633,0.20076513,-0.14867337,0.37757453,0.4074903,-0.3411576,-0.23060772,-0.11191702,-0.14323135,-0.62274677,-0.23383144,-0.7379053,-0.55926967,0.14143465,0.949212,-0.26689953,0.047821227,0.017248144,-0.25328654,0.088749655,0.26540598,-0.14218965,0.1912349,0.41390345,-0.08609251,-0.79521674,0.56931543,-0.035615858,-0.31004477,-0.4816077,0.14924327,0.74409306,-0.6012735,0.45344004,0.453616,-0.09496229,-0.10035067,-0.56473416,0.02439034,-0.09017385,-0.25188574,0.48912543,0.13632932,-0.701261,0.4336774,0.40084288,-0.32397437,-0.6755437,0.8156294,0.02150515,-0.19914544,0.06577579,0.37005195,0.10627967,0.011299408,-0.4444839,0.318597,-0.42047969,0.21938123,0.35540298,-0.11551453,0.24161077,-0.10797359,-0.19554065,-0.8705861,0.20033012,-0.4649462,-0.34072414,0.29211977,0.009431356,-0.023634102,0.18768182,0.2368112,0.328963,-0.40754414,0.12080508,-0.1266318,-0.25284633,0.30850416,0.47535083,0.52961504,-0.39110607,0.59618366,0.007263056,-0.12699953,-0.13707522,0.106641054,0.4760827,0.17232253,0.41624776,0.054571528,-0.220296,0.3977371,0.6192247,0.19497742,0.53412914,0.18510172,-0.108929045,0.044818323,0.19407465,0.30987972,0.0013571637,-0.47222233,0.107310824,-0.2663559,0.035713017,0.6737533,0.15896933,0.14718816,-0.07863616,-0.3824597,0.0472983,0.25954786,0.1211039,-1.1654383,0.46099105,0.2353113,0.7761173,0.5204198,0.027541274,0.112308346,0.50022525,-0.29531756,0.074591376,0.36842662,0.13221075,-0.56876665,0.59962493,-0.7981977,0.46499962,-0.116461776,-0.071337454,0.10225354,-0.20697454,0.52823377,0.9574255,-0.12937911,0.119713865,0.04754021,-0.25993168,0.25289255,-0.49513426,-0.15017411,-0.4887344,-0.31900564,0.75674754,0.4888385,0.33546087,-0.15878011,0.07125119,0.16204987,-0.22801626,0.2053045,0.13563606,0.38198736,-0.117140494,-0.67563117,-0.16018017,0.5557974,-0.10166112,0.199546,0.016054723,-0.30603582,0.28048334,-0.13400635,0.1836066,0.009986199,-0.8969626,-0.0922221,-0.41067204,-0.35167673,0.48493305,-0.08702464,0.24657877,0.21898971,0.08224206,-0.22565378,0.41861466,0.042275198,0.7213928,0.13133483,-0.23449601,-0.17959872,0.29641703,0.28577217,-0.21882905,-0.009733751,-0.21017613,0.03329822,-0.6903623,0.51395184,0.098186135,-0.26613936,0.12949656,-0.109679095,0.07488187,0.5218879,-0.040830277,-0.23224136,-0.1012911,-0.08778589,-0.15471642,-0.19132008,-0.15729699,0.27188274,0.24384192,0.02008405,-0.1508769,0.14123353,-0.11414986,0.34453663,-0.19087513,0.5555478,0.47087142,-0.028383812,-0.43248683,-0.20439386,0.18478394,0.38494888,-0.095752396,-0.09302684,-0.26984826,-0.50585043,-0.30703142,0.04758542,-0.24123861,0.4033548,0.16543972,-0.16289137,0.85000277,-0.10604906,1.1976229,-0.014743464,-0.53433836,0.096047476,0.53951275,-0.11804887,-0.2502993,-0.36372772,1.0774907,0.41506705,-0.10840028,-0.027402142,-0.32712728,-0.054790054,0.16487744,-0.24950038,-0.24392878,-0.028468935,-0.5011379,-0.33480915,0.18531029,0.31707683,0.24367319,-0.08871853,0.09669745,0.42250603,-0.06466043,0.17371239,-0.4639047,-0.20555626,0.23817512,0.29508683,-0.15837573,-0.042232297,-0.43351296,0.5112027,-0.524762,0.13616803,-0.24935065,0.23390748,-0.3165733,-0.46948925,0.17585982,0.06345487,0.30337963,-0.29685074,-0.3300068,-0.26661333,0.44049096,0.17265697,0.12216295,0.5643031,-0.38227373,0.21727876,-0.005163624,0.35010582,0.9781167,-0.2406872,-0.11325772,0.4713904,-0.4590394,-0.5365029,0.40887478,-0.41436115,0.3221054,-0.0055781007,-0.27370983,-0.5833519,0.19215098,0.19050038,0.14326811,-0.11540025,-0.5924517,-0.09388084,0.33289906,-0.3242322,-0.26681495,-0.38718864,0.28832078,0.539302,-0.32741514,-0.36783424,0.14035007,0.08466702,-0.0896563,-0.40592545,0.013024275,-0.24356273,0.49527645,0.037351962,-0.36506334,-0.12298727,-0.04052004,-0.3943286,0.18010874,0.16489598,-0.3248356,0.1077215,-0.46669704,-0.18309353,0.9125694,-0.28417447,-0.057936706,-0.3469151,-0.4827482,-0.6652355,-0.33799484,0.52802926,0.07296662,0.12000973,-0.54151195,0.116818376,-0.18114181,-0.0317122,-0.09189852,-0.21948694,0.47526845,0.18644162,0.37067577,-0.11672736,-0.7917614,0.3141573,0.03184136,-0.19225402,-0.70735186,0.5515915,-0.11406733,0.6541123,0.15983033,0.15016833,0.5468053,-0.5905445,-0.046872754,-0.13133706,-0.07539145,-0.5695641,-0.034183167 +720,0.30197522,-0.25191367,-0.7716528,-0.3399669,-0.49627656,-0.09998874,-0.17538978,0.38496152,0.637958,-0.32353842,0.04899876,0.00033923172,-0.08889404,0.30828235,-0.18496841,-0.81936496,-0.016067602,0.36296657,-0.56062126,0.49058333,-0.5430976,0.20751481,-0.13563491,0.50369364,-0.0030854074,0.1479495,-0.10616093,0.09456381,0.050189123,-0.08156771,0.15696537,0.22663817,-0.8370556,0.5008474,-0.1322789,-0.5273724,-0.031943943,-0.5906094,-0.19990772,-0.7979439,0.39242813,-0.7218807,0.6934426,0.17957076,-0.3530508,-0.05051395,0.30760106,0.31629837,-0.22040273,0.004296067,0.37661374,-0.32214448,-0.26551902,-0.21816443,-0.45219672,-0.49340937,-0.69130015,0.06129838,-0.72422355,-0.1174785,-0.06076907,0.35845363,-0.20829411,-0.17111653,-0.561325,0.63904816,-0.5370276,-0.026087213,0.1645361,-0.15434179,0.18958558,-0.60978264,-0.20242724,-0.22110444,0.11421481,-0.1637035,-0.57371706,0.29405618,0.4552582,0.52370745,0.16914049,-0.45129558,-0.42619792,-0.0011168827,0.009772995,0.35174504,-0.37682617,-0.37222525,-0.4210557,-0.018528372,0.4188131,0.32755154,0.18812178,-0.45177123,0.3670076,0.033660192,-0.2754308,0.95519584,0.5543827,-0.36901167,-0.409589,0.22428054,0.44162562,0.00013228437,-0.2293842,0.18115875,-0.027804457,-0.52906036,-0.36997145,0.3100166,-0.14410214,0.4533784,-0.23077251,-0.099333614,0.7533785,-0.29550695,-0.47257873,0.23746052,0.02126713,-0.07644995,-0.65299433,-0.34642488,0.39368123,-0.60661405,0.04037098,-0.31038463,0.69410634,0.037608758,-0.94195956,0.2512588,-0.8322472,0.14169346,-0.11109144,0.63390833,1.0802325,0.6223523,0.4312549,0.8181683,-0.34983495,0.15864195,-0.03916129,-0.2191236,0.31785765,-0.318101,0.15695773,-0.5339083,0.11989199,-0.31037328,-0.21468724,-0.04013833,0.5412081,-0.5256274,-0.2138543,0.21806067,0.66562265,-0.2719785,-0.29507133,0.96852785,1.3397053,1.2944183,0.23321773,1.5830636,0.27525538,-0.26717472,-0.087591596,-0.14510295,-0.7953241,0.31712687,0.26908728,-0.36239493,0.33721325,0.1307014,0.3382517,0.5727605,-0.4751566,-0.16093554,-0.08902209,0.47741076,-0.1467206,-0.15494694,-0.39526084,-0.32567614,0.25693065,0.16102491,-0.028161937,0.5142217,-0.31127957,0.2861761,0.16940276,0.7676414,0.027903723,0.063246846,-0.15446296,0.3791963,0.2323452,-0.20799126,0.08685504,0.20879102,0.10054686,-0.09426104,-0.6006253,-0.018428065,-0.46850708,-0.31899107,-0.28959042,-0.30463284,0.01526128,-0.46972978,-0.45314923,-0.45446855,-0.08793039,-0.308196,0.47643825,-2.124961,-0.38394,-0.04960873,0.2072003,0.05778149,-0.31713417,-0.102039605,-0.54958856,0.46997395,0.24076647,0.39787465,-0.633481,0.8320539,0.46694595,-0.83475894,-0.0045297146,-0.8380843,0.08425809,-0.2570578,0.40832475,0.047371443,-0.20133571,-0.3183162,0.033647414,0.6887014,-0.11467839,0.13612574,0.3271854,0.5829963,-0.253298,0.5198311,0.16771673,0.6897935,-0.344948,-0.44439992,0.24328652,-0.38931835,0.24445452,0.0072320374,-0.0020240925,0.6289095,-0.6236082,-1.0978184,-0.8259339,-0.37124664,0.9388365,-0.10220335,-0.32168543,0.10237749,-0.36946508,-0.43254957,-0.025815869,0.5738053,-0.009306387,0.026355483,-0.8064015,0.01643953,-0.06190494,0.30141824,-0.106946774,0.16611521,-0.5109392,0.82202506,-0.18585992,0.31426084,0.38521835,0.14234227,-0.66359,-0.27349588,0.14987503,1.1095276,0.45409644,0.02780475,-0.31720018,-0.2371645,-0.08061159,-0.11114779,0.120260864,0.67715406,0.5355644,-0.19751334,-0.0018139671,0.57752377,-0.2764211,0.10393767,-0.23531918,-0.39548674,-0.2635521,0.2283975,0.6512528,0.7247686,-0.24019493,0.2891529,-0.12412994,0.25874084,-0.09693031,-0.5334833,0.5238005,0.8840193,0.011831885,-0.35407466,1.0078386,0.54003614,-0.565766,0.64986396,-0.535719,-0.15986982,0.3710313,-0.11195285,-0.4593706,-0.29940608,-0.42809907,0.042248346,-0.9455294,0.39053753,-0.3996393,-0.68024766,-0.46596515,-0.27195895,-3.3893557,0.37499788,-0.1785111,0.25203708,-0.051719356,-0.27223408,0.2962099,-0.7664004,-0.88693994,0.14985922,0.24007192,0.5874414,-0.36143097,0.084137194,-0.1383975,-0.39381444,-0.25795567,0.32825726,0.22606836,0.25885934,-0.023238426,-0.45273498,0.22965866,-0.25661275,-0.55705905,-0.10474814,-0.84083426,-0.36600924,-0.112591386,-0.9677667,-0.43911093,0.7346187,-0.44322455,-0.271224,-0.39773157,0.122051425,0.007468454,0.491885,-0.15672724,0.4207854,0.28186715,-0.078392975,-0.29520938,-0.08540756,0.11488616,-0.20700814,0.34016943,0.39511976,-0.27619234,0.36309063,0.6555312,1.0214267,-0.009008977,1.0121582,0.449038,-0.069011666,0.38192835,-0.15999986,-0.31426647,-0.88782173,-0.44128543,-0.2693875,-0.6158133,-0.4063713,0.15475056,-0.29427373,-0.9718163,0.66049266,0.12030011,0.051688597,-0.04279665,0.40961125,0.23204142,-0.26245916,0.06382532,-0.3650343,-0.28651774,-0.4989727,-0.4790043,-0.7485114,-0.4973686,0.009229356,1.6198857,-0.1592413,0.08980239,0.33713248,-0.20744504,0.24293917,0.49064925,0.08573467,0.17687832,0.65233666,-0.0658056,-0.52209383,0.07969964,-0.09604757,-0.0055862884,-0.38371798,0.2721699,0.9398644,-0.68579733,0.8844421,0.45637482,0.25234395,-0.14346606,-0.7695068,-0.31271145,0.20880246,-0.22537754,0.85825175,0.43162063,-0.9437571,0.63308996,0.2879186,-0.30288482,-0.9639208,0.41772616,-0.12905839,0.09556231,-0.23016228,0.58634716,0.3308131,-0.0052972515,-0.15470733,0.61185646,-0.41201618,0.26613194,0.10684312,-0.10772998,0.13952875,-0.31285238,-0.34529456,-0.89682925,-0.13518466,-0.70793873,-0.3985054,-0.035193454,-0.19120635,0.07592037,0.47497046,0.20418476,0.46637785,-0.26896912,0.13405755,-0.2143826,-0.53713375,0.15885569,0.54981655,0.2891244,-0.49597692,0.6490817,0.20167242,0.03998554,-0.4739621,-0.029852184,0.505188,0.10227792,0.6250979,0.091595575,-0.17430222,0.20589656,0.7830115,0.10704086,0.43328476,0.090606146,-0.12486562,0.14677121,0.151338,0.46458083,-0.2660272,-0.41733292,0.2421784,-0.106936164,0.065694384,0.53375417,0.06956487,0.33936298,-0.13666874,-0.19746245,0.09701955,0.16615783,-0.10276642,-1.8558681,0.34049454,0.2871945,0.78788966,0.79426044,0.21719462,-0.013721363,0.6775961,-0.40556479,-0.14754535,0.52345204,0.13165893,-0.22808002,0.49211285,-0.709275,0.5134864,-0.28550565,0.08212829,0.0857887,0.15491003,0.4114416,1.0225555,-0.19265546,0.08393316,-0.11410386,-0.04722241,0.23565604,-0.30999726,0.103008695,-0.47628143,-0.4160516,1.098974,0.45945656,0.43488207,-0.39629936,-0.04398844,0.2565622,-0.17895374,0.14430048,-0.040181268,-0.32426608,-0.1713924,-0.6926279,0.028346745,0.818968,0.20331368,0.06659455,0.16155222,-0.35145906,0.36101276,-0.08701617,-0.027909702,0.06404252,-0.67612547,-0.20243311,-0.21966648,-0.33302557,0.5364672,-0.34202918,0.0798412,0.15234175,0.2391889,-0.2098925,0.2887949,0.255646,0.5727886,0.25603372,0.055284176,0.10268133,0.24676158,0.1074996,-0.32484514,0.14431392,-0.2846491,0.27153385,-0.6808453,0.6282723,-0.062245682,-0.5166963,-0.029255455,0.09211432,0.13899994,0.41076204,-0.2524355,-0.15294272,0.12418259,-0.06535515,-0.067647435,-0.32718402,-0.3319123,0.28537992,-0.19383463,-0.007279916,-0.22874023,-0.18946376,-0.144456,0.57674795,-0.06711598,0.021295788,0.35839912,0.16677016,-0.3448315,0.15281147,-0.10681477,0.58143574,-0.13879007,-0.19490248,-0.049464893,0.043298393,-0.2642637,0.29766658,-0.013816237,0.18207116,0.07208278,-0.3754654,0.85029644,0.17411469,1.6549412,0.10388,-0.6747177,0.10230322,0.5916188,-0.22820124,0.083650306,-0.28922126,1.000779,0.6622839,-0.26682016,-0.22239019,-0.82565445,-0.16289221,0.10582668,-0.25697327,-0.22095923,0.030553339,-0.936849,-0.17766242,0.31113583,0.23129264,0.09816575,0.0008853728,0.22136673,0.22520815,0.14060643,0.3336871,-0.67931914,0.0989221,0.37073898,0.55739784,0.077400275,0.11773383,-0.26423025,0.19458117,-0.8281395,0.3852855,-0.41606915,0.116290815,-0.31451437,-0.2720585,0.19284977,0.06496784,0.36878303,-0.067701034,-0.20050946,-0.1752368,0.693734,0.0009975217,0.2207792,0.88173676,-0.40104148,0.033788037,0.11356082,0.45159882,1.1848258,-0.21055375,-0.30991313,0.23618712,-0.32270855,-0.7032978,0.26253656,-0.7460573,-0.08416701,0.083109766,-0.3024933,-0.38586682,0.21889119,0.049701452,0.095478415,0.10152843,-0.60664177,0.16318236,0.40872926,-0.13832547,-0.12915792,-0.07507467,0.31531918,0.8697628,-0.38938782,-0.5900856,0.15725118,0.451552,-0.23296018,-0.687976,0.07887826,-0.55365527,0.53615457,-0.04416826,-0.53031784,0.15596214,0.14312787,-0.48594266,-0.0651455,0.6703616,-0.29696342,0.19648375,-0.46970704,-0.11498794,1.0947489,0.07794204,0.7424145,-0.42968836,-0.6627282,-0.91755575,0.057283618,-0.2158019,0.21745925,-0.17036682,-0.63278157,-0.16216572,-0.051729206,-0.3744114,0.35534838,-0.7052354,0.42633712,0.10199428,0.60911447,-0.11939969,-1.0388317,0.045461286,0.40056297,0.088466756,-0.41094944,0.53769433,-0.17443958,1.0677345,-0.019036181,0.046170615,-0.15791777,-0.6980589,0.53791046,-0.4705902,-0.06136867,-0.62691283,-0.19363976 +721,0.5649487,0.019036116,-0.38470602,-0.18134469,-0.48623654,0.20612307,-0.27557743,0.055221446,0.14107129,-0.14602587,0.0025923513,0.0027708411,-0.1858235,0.22363268,-0.25312153,-0.6961601,-0.06692585,-0.0004905015,-0.6473788,0.55288476,-0.4764463,0.3705744,0.073650464,0.23663683,0.17396387,0.32255566,0.25911456,-0.05278857,-0.025952738,-0.1844051,-0.22221142,0.1087196,-0.8071845,0.38233095,-0.18724072,-0.3152445,-0.06097091,-0.34969097,-0.37591296,-0.6886885,0.27991927,-0.7555648,0.4676901,-0.22147655,-0.32454237,0.14913204,0.12493876,0.33568388,-0.27432883,0.0707466,0.30135238,-0.23599169,0.01425045,-0.07672488,-0.26046118,-0.4054786,-0.55880886,-0.073784634,-0.76522225,-0.012945805,-0.37102968,0.31374112,-0.27662095,0.06164114,-0.32789204,0.27168578,-0.37817442,0.15113005,0.16124362,-0.09376159,0.03671881,-0.42021978,0.034185603,-0.08989783,0.2657021,0.22671866,-0.07529274,0.29411036,0.24787322,0.35409003,0.2706821,-0.47816914,-0.2320638,-0.08739271,0.12187172,0.2908064,0.04350543,-0.07638344,-0.31325364,-0.046236165,0.51812696,0.41493675,-0.0024202839,-0.27432758,0.0898817,-0.11081876,-0.19770545,0.5041966,0.56568205,-0.36760983,-0.16796085,0.46346533,0.44966692,0.16500223,-0.29033542,0.17912652,-0.14899994,-0.3526364,-0.16867402,0.3337195,-0.07275012,0.38312334,-0.13771357,0.05834872,0.6745288,-0.15548795,0.030545242,-0.017933778,-0.21466163,-0.0037584752,-0.17448488,-0.0646658,0.10249594,-0.63106215,-0.039941482,-0.20792279,0.6596775,0.0727808,-0.87271696,0.2868302,-0.5036537,0.11904208,-0.094275385,0.6159462,0.78350616,0.66180235,0.011059681,0.80874056,-0.37804842,0.058567017,-0.300793,-0.34791708,0.15007117,-0.07823895,0.16527161,-0.48528558,0.020231895,-0.21754384,0.0037925597,-0.19178979,0.34016463,-0.2804259,-0.2502331,-0.105600014,0.6056276,-0.32977524,-0.0058151186,0.88556576,1.1224592,0.9901012,0.087418735,1.1138554,0.33720183,-0.009588569,-0.15609938,-0.27906597,-0.40143588,0.10194808,0.37063408,0.19582766,0.3420681,0.13336565,0.018135538,0.28612807,-0.15862526,-0.15286525,0.047394447,0.24860016,-0.050463296,-0.0007526167,-0.30734286,-0.32728374,0.329332,0.16757399,0.04496239,0.28136933,-0.1721361,0.42141834,0.24723026,1.1059468,0.10490363,0.10529882,0.024776518,0.4889136,0.26508513,-0.22790334,0.059869483,0.26351753,0.29303148,-0.11676639,-0.46740007,-0.020435093,-0.4041184,-0.27578962,-0.1495934,-0.45803025,-0.1400349,-0.040250108,-0.3536563,-0.11534679,0.04903427,-0.37806672,0.45236358,-2.6269588,-0.09358284,-0.1710214,0.2880965,-0.28910136,-0.21037419,-0.18864502,-0.54272383,0.37351882,0.27143645,0.34910262,-0.5660136,0.5642585,0.3745032,-0.54484135,-0.04475764,-0.6429056,0.04725551,-0.115097456,0.4786716,-0.10737981,-0.19409572,-0.20301697,0.23405103,0.7580404,0.28860897,0.1571751,0.33778912,0.45537436,-0.10416329,0.679407,0.057699114,0.43755478,-0.35714042,-0.033178028,0.53011966,-0.41662621,0.48310795,-0.027648225,0.13773525,0.3799464,-0.5499527,-0.76826775,-0.55786467,-0.40195808,1.3249686,-0.50944924,-0.5841,0.22562271,5.884096e-05,-0.14078824,0.23546386,0.38415217,0.008713022,0.14664288,-0.5168488,0.03673184,-0.15530956,0.11847115,-0.11143498,0.16959879,-0.41443682,0.7634179,-0.19985092,0.5030861,0.17564856,0.27753782,-0.11473106,-0.4135583,0.13861702,0.72558093,0.51517385,-0.08133374,-0.107028544,-0.23980872,-0.13833866,-0.24826494,0.15601546,0.7833089,0.4860356,-0.07826288,0.082698986,0.3884799,-0.20175497,-0.03703734,-0.20920101,-0.29463458,-0.09120535,0.0808208,0.45785448,0.64810896,0.0352773,0.2827438,-0.10242468,0.20536649,-0.10039875,-0.6849966,0.55095375,0.71838665,-0.085189216,-0.14615689,0.5022656,0.49707294,-0.1338493,0.49862912,-0.55167955,-0.41389334,0.5871562,0.025242712,-0.43648905,0.13139847,-0.28814963,-0.18992218,-0.6679511,0.19128154,-0.32294032,-0.6360723,-0.43287814,-0.09195216,-3.3591466,0.047268927,-0.07027433,-0.034428876,-0.14702839,-0.2860685,0.42898935,-0.45409447,-0.56085354,0.067824274,0.07749151,0.41540003,-0.14333452,0.20387274,-0.28782287,-0.25036013,-0.38646573,0.3472432,0.109660186,0.2435275,-0.1982795,-0.25350514,0.04474681,-0.18075615,-0.49459523,-0.116960876,-0.52324045,-0.35761806,-0.03283281,-0.35253903,-0.1765246,0.5820303,-0.3046022,0.00043409318,-0.21712103,-0.09788272,-0.07555015,0.2757977,0.13179646,0.20842865,0.15941922,-0.1509464,-0.13742076,-0.39135706,0.3820475,0.16893233,0.3443096,0.39937627,-0.0548569,0.090215385,0.3982172,0.5100508,-0.0743562,0.85372376,-0.01772771,-0.073293164,0.44692886,-0.16032179,-0.43560672,-0.7270353,-0.18944094,-0.34369603,-0.42651612,-0.39629945,-0.12685063,-0.3367982,-0.8993534,0.30128568,0.20390026,0.33968747,-0.3077824,0.20477405,0.42211553,-0.14374813,0.071116805,0.036794454,-0.33742374,-0.53091943,-0.52203614,-0.6717305,-0.55537355,0.14871758,0.9362077,-0.14805672,-0.039637834,-0.15056482,-0.19911642,0.16490935,0.06451235,0.16016577,0.0824047,0.3388176,-0.016017266,-0.5655748,0.47608608,-0.18176663,0.0072971135,-0.5001222,0.16898774,0.67253876,-0.5179667,0.51238734,0.30940598,0.1937407,-0.028509997,-0.7139653,-0.058785915,-0.0040514246,-0.17817196,0.6991632,0.34511963,-0.75829023,0.51939076,0.0595806,-0.1647985,-0.6816808,0.5487423,0.054073934,-0.13825338,-0.0008268878,0.35752785,0.205877,-0.07474749,0.023555234,0.22595982,-0.5216218,0.3067177,0.3452894,-0.0003500022,0.3579856,-0.05705962,-0.34398663,-0.5951282,-0.144532,-0.5388764,-0.28073558,0.13388264,0.0084069185,-0.009130582,0.1446821,0.01556731,0.4725564,-0.12128717,0.2912005,-0.121525556,-0.23308152,0.5815265,0.5476152,0.46349797,-0.45782676,0.54985774,0.19815229,-0.15089047,0.08241671,0.16076237,0.34079129,0.12568723,0.34491572,-0.06744801,0.007544631,0.109431714,0.46172404,0.2904148,0.29065827,0.06212599,-0.3343032,0.362377,0.07259102,0.19976115,-0.1840076,-0.5164693,-0.038204014,-0.034403298,0.15237355,0.4332032,0.03485913,0.3700495,-0.008302327,0.037828095,0.15679847,0.08025073,-0.2785405,-1.2192662,0.29149607,0.27863503,0.7889534,0.50850844,0.0862301,-0.06324131,0.5647098,-0.2626764,0.037905894,0.44705695,0.15564717,-0.24766468,0.44608447,-0.64290506,0.37531257,-0.046219334,0.013310136,0.2394107,0.22423878,0.4197309,1.0134276,-0.107671015,0.050423786,-0.07458858,-0.27660358,0.12161651,-0.1369253,0.18481393,-0.36134952,-0.44460875,0.6251592,0.26938915,0.3948393,-0.3981858,-0.15489201,-0.074822545,-0.17396078,-0.0126421,-0.096494086,-0.14876556,-0.15529302,-0.4115801,-0.35596913,0.5055376,-0.22826703,0.101956084,0.07586027,-0.20476875,0.21667227,0.016880883,0.017212667,0.047105078,-0.74165785,-0.031509332,-0.19102079,-0.26910773,0.25845155,-0.3808239,0.31794477,0.113025665,-0.088948384,-0.2618115,0.17311266,0.16907126,0.57438356,0.02653598,-0.061045248,-0.2846474,0.013776988,0.23854873,-0.29974484,0.030687876,-0.26964477,0.06513865,-0.65541905,0.27908117,-0.35642093,-0.304254,-0.002442291,-0.17816657,-0.06805365,0.4515891,-0.09284943,-0.12340194,0.23336534,0.11269209,-0.37021694,-0.19793466,-0.22618479,0.16558805,0.09301095,-0.1372897,0.12828079,-0.042018313,0.07147235,0.38046014,0.17745075,0.2395685,0.11957072,-0.11618352,-0.4785425,0.04561366,0.041985393,0.34589258,0.13942614,0.07749033,-0.2263556,-0.3873198,-0.37980497,0.48856223,-0.20979631,0.06843881,0.03707326,-0.23670247,0.73628336,0.04947714,1.0915347,0.049983438,-0.32090843,0.13180505,0.60288334,0.052124258,-0.020554608,-0.292628,0.9210286,0.6286846,-0.08430448,-0.048727088,-0.48217967,-0.26518768,0.0898331,-0.33212724,-0.3123806,-0.020512734,-0.5853983,-0.051569715,-0.048368856,0.25545514,0.019352026,-0.082146145,-0.2308653,0.26914245,0.2036978,0.60626006,-0.43530408,-0.27737427,0.37154225,0.028521124,-0.11858416,0.10403617,-0.33475527,0.42074543,-0.7218345,0.103881076,-0.3329321,0.045475796,-0.21841313,-0.2847513,0.18750836,-0.05003531,0.30789846,-0.25050324,-0.46552452,-0.17306826,0.47600362,0.29285818,0.28063577,0.6863394,-0.16552152,-0.03561819,0.05313839,0.54182744,1.0972434,-0.12580833,-0.04055597,0.27757472,-0.35200208,-0.6018586,0.06400202,-0.40168685,0.062362682,0.013763359,-0.4708184,-0.1507689,0.30226085,-0.0011880286,0.06820931,0.12385947,-0.76123375,-0.07222003,0.17008667,-0.17761284,-0.25025585,-0.20661594,0.29195276,0.81614137,-0.3302969,-0.4015357,-0.0076912753,0.28765556,-0.19171861,-0.6365529,-0.018587057,-0.22267896,0.22496155,-0.06931076,-0.27536082,0.06412883,0.3907432,-0.44332775,-0.018005982,0.12542617,-0.31971008,0.10268772,-0.12637183,-0.03134636,0.758015,-0.0009882152,0.026986867,-0.5090433,-0.53573054,-0.74280775,-0.40784308,-0.14881247,0.2827766,-0.026786998,-0.39231277,-0.11685343,-0.2747449,0.035791762,0.031420317,-0.6089236,0.3946244,0.17141825,0.4786522,-0.12067965,-0.90588844,0.078218274,0.14931384,-0.14845762,-0.4539277,0.66179496,-0.3387617,0.5978068,0.14126222,-0.06361267,-0.11631495,-0.7047264,0.22521463,-0.36159685,-0.14893138,-0.6807573,0.20608449 +722,0.4849853,-0.25346002,-0.35963935,-0.19191371,-0.17371015,-0.11548181,-0.17653094,0.46490845,0.2428511,-0.5564327,-0.058887053,-0.17447251,0.032535903,0.20658894,-0.09040096,-0.47768152,-0.13413645,0.05064199,-0.25611442,0.5077241,-0.52524394,0.2574869,0.118051164,0.3414893,0.108565524,0.20547454,0.01078138,-0.1882691,-0.17592843,-0.4309799,0.016727606,0.3317868,-0.74236876,0.11500933,-0.23325856,-0.411688,0.00698572,-0.6731871,-0.44401264,-0.6778781,0.1255236,-0.8793353,0.6222032,0.24536748,-0.273685,0.3518791,-0.08331337,0.23242909,-0.098077744,0.26056778,0.30151463,-0.24287432,-0.026667984,-0.22611602,-0.17437264,-0.25735146,-0.68781847,0.021633275,-0.40403742,-0.14137405,-0.21615823,0.17274718,-0.2758458,-0.12384868,-0.13191563,0.5110462,-0.5157913,-0.05294307,0.067368336,-0.104596384,0.54649895,-0.47691256,-0.20870362,-0.18844722,0.07458762,-0.3443524,-0.2890815,0.20642015,0.34157532,0.55571216,-0.103846215,-0.21817899,-0.2666392,0.010601035,0.063702315,0.5924067,-0.33177227,-0.5198823,-0.04860949,0.0066105765,0.13822389,0.30532712,-0.0022833527,-0.3615256,-0.109367274,0.047148418,-0.2762827,0.45086688,0.61504614,-0.297622,-0.2542683,0.33084953,0.3746573,0.1925575,-0.065042995,0.087656066,0.045384504,-0.53058815,-0.09094412,0.13037233,-0.23778364,0.4470135,-0.14307265,0.14352491,0.66955745,-0.2516831,0.123892024,0.048548352,0.04469355,0.11516073,-0.32352048,-0.42192233,0.38934305,-0.449999,0.29415414,-0.3368905,0.795374,0.05319444,-0.79235953,0.3596737,-0.6028265,0.13929805,-0.111042164,0.5232414,0.649778,0.44680455,0.40266857,0.52683836,-0.45893222,0.013663213,-0.09266402,-0.2990292,0.031455103,-0.124111705,0.021283384,-0.4369174,-0.22083572,-0.03268981,-0.19195679,0.056109484,0.44321314,-0.5553175,0.03557188,0.20953862,0.7386186,-0.28217372,-0.059659854,0.74532104,1.0804552,1.1899608,0.12674268,1.1169887,0.29224974,-0.22982709,0.087778546,-0.26538146,-0.60577506,0.27368692,0.43148127,-0.40033564,0.24817796,0.12792368,-0.0932077,0.34017155,-0.46770313,-0.02589001,-0.18749589,0.119388424,0.013102754,-0.17019258,-0.56238216,-0.23435529,-0.17990912,0.14811435,-0.13681498,0.18421237,-0.34682757,0.2214256,0.07827628,1.3942839,-0.14890122,0.03773178,0.11292145,0.35608858,0.14390446,-0.15880993,0.03829132,0.26543295,0.4143063,0.15004882,-0.58288383,-0.00092918077,-0.09212642,-0.47893858,-0.14288963,-0.21366678,0.06570628,-0.015562396,-0.47992638,-0.14068098,-0.073467456,-0.38763008,0.42559782,-2.5936656,-0.04933991,0.02521509,0.2953212,-0.24185963,-0.44525445,-0.058541544,-0.4465391,0.45211563,0.32089552,0.44609526,-0.78451836,0.3159369,0.5889285,-0.50310475,-0.046709932,-0.6861763,-0.17822622,-0.20149708,0.16919567,0.08801613,-0.082780026,0.025906188,0.036596093,0.60107076,-0.022225944,0.092975564,0.09671483,0.32895386,0.024577921,0.5125691,-0.069424786,0.33071375,-0.09587756,-0.21321939,0.44853547,-0.3276903,0.026568595,-0.21622747,0.08860925,0.36702028,-0.46013445,-0.8818991,-0.8347397,-0.4527399,1.0294667,-0.072769925,-0.46364465,0.24483916,-0.17214528,-0.40021783,-0.06375999,0.48856765,-0.2112031,0.0027968765,-0.8533704,-0.03719648,-0.13005562,0.1451176,0.04202688,0.15275975,-0.5096819,0.66662675,-0.066502,0.25384453,0.4416728,0.17440042,-0.18588361,-0.52444595,-0.01042498,1.1887963,0.3825979,0.2458383,-0.29980353,-0.1392011,-0.15225098,0.010360623,0.043211274,0.5279869,0.8289893,-0.16812934,0.08064338,0.26386064,0.0030529697,-0.029102925,-0.21008743,-0.27887732,-0.01921969,-0.007801843,0.6561508,0.5491206,-0.12715818,0.49627194,-0.08551042,0.32996368,-0.06766896,-0.37704608,0.3680071,1.244323,0.028068017,-0.17431921,0.74184906,0.43019715,-0.21118206,0.45530292,-0.5641889,-0.2798738,0.37958017,-0.22556283,-0.5057795,0.2874142,-0.36482173,0.1764501,-0.792709,0.39874125,-0.2198793,-0.49571148,-0.6074434,-0.17583132,-2.9688542,0.16262229,-0.24858409,-0.13684921,-0.024122901,-0.11645509,0.38964698,-0.537911,-0.4965595,0.1861368,0.10403991,0.6050933,-0.1257815,0.11637105,-0.21487838,-0.32674015,-0.34341347,0.28381565,0.25905767,0.25645056,0.07509109,-0.3557654,0.002196479,-0.087278135,-0.45881227,0.035749402,-0.5381641,-0.55172545,-0.11574774,-0.5858495,-0.39659366,0.6432941,-0.30632892,0.037777904,-0.06903954,-0.055000346,-0.09765038,0.31775042,0.18263982,0.23950952,-0.14333548,0.063051835,0.025933178,-0.19926138,0.406356,0.14167179,0.12517871,0.2660912,-0.20557146,0.15023294,0.40164343,0.5534563,-0.13251804,0.9279039,0.63442266,-0.20393406,0.22562477,-0.36293834,-0.20708741,-0.71538085,-0.39311722,-0.07506867,-0.44824114,-0.43766505,-0.046652492,-0.31686336,-0.7728332,0.5640703,-0.20098588,0.09382634,0.037209574,0.26578134,0.4610942,-0.17782217,-0.12532547,-0.06732093,-0.023897976,-0.47524735,-0.30348274,-0.59377706,-0.3866997,-0.09119206,1.0325276,0.027126933,-0.015732052,0.09727053,-0.038595088,-0.13448673,0.032132458,-0.051637404,0.053409252,0.527248,0.12259051,-0.7764614,0.33719265,0.12381611,-0.26601467,-0.62834513,0.20610823,0.76594865,-0.7436642,0.58440465,0.3499342,0.12804689,-0.098493546,-0.6073831,-0.26764926,0.0044595064,-0.3046164,0.47803238,0.1771427,-0.73670715,0.48675606,0.40664583,-0.30573368,-0.64710784,0.46287218,0.013390208,-0.287032,0.048477344,0.3270846,0.008334466,0.045513462,0.02102882,0.43805584,-0.398358,0.38097614,0.17372346,-0.07075863,0.19564451,-0.20644751,-0.0495915,-0.80580163,0.13083147,-0.4129747,-0.4614604,0.1928115,0.082942866,0.043528054,0.37697217,0.04258313,0.4686907,-0.16859435,0.18313853,-0.18402365,-0.25128296,0.35661107,0.44882903,0.35799858,-0.23523615,0.6388442,0.03196133,-0.21178512,-0.27342588,0.012144718,0.43562952,-0.07987773,0.24039663,-0.093157485,-0.35190046,0.30335313,0.7368052,0.20774263,0.51269084,0.028938023,0.016622094,0.32889426,0.124024816,0.1257977,-0.033257585,-0.55391693,-0.058056895,-0.21855173,0.08888449,0.43926907,0.03514215,0.25482285,-0.23293622,-0.24207889,0.06516462,0.31658542,0.08019268,-1.0949038,0.2513415,0.075330265,0.7562923,0.69606835,0.03717316,0.08836532,0.54743034,-0.21539411,0.0014911215,0.39109808,0.04908436,-0.48043993,0.54414976,-0.62039924,0.33762792,-0.123397924,0.057675235,-0.062501624,-0.18408702,0.49163282,0.7348454,-0.20484467,0.0834875,-0.10614346,-0.20140058,0.09721597,-0.38616282,0.16412023,-0.49781975,-0.29932186,0.86181986,0.47755915,0.4071525,-0.099485666,0.038981874,0.18902826,-0.17119846,0.12752678,0.13171582,-0.08861747,0.020820547,-0.6133592,-0.07063546,0.575605,-0.06206713,-0.03195803,0.022088906,-0.12597632,0.22544187,-0.16087487,-0.16217397,-0.051866803,-0.68501776,-0.15663789,-0.53313977,-0.30301097,0.41909426,-0.18814255,0.22106315,0.12319995,0.10982883,-0.13059987,0.2730662,0.45010024,0.73727816,0.09303641,-0.14564759,-0.2758445,0.29609698,0.16229476,-0.18826002,-0.29821724,-0.20307897,0.007256613,-0.77590746,0.4847642,-0.15954538,-0.34394008,0.07892931,-0.1262765,0.016296651,0.5546798,-0.11208933,-0.18867384,0.12076936,-0.19988003,-0.26473486,-0.1933664,-0.029476548,0.32138374,0.17371985,-0.14721805,-0.041245777,-0.16786472,-0.22122549,0.44248533,0.08379684,0.40661937,0.3734935,0.14050558,-0.29957336,-0.14437151,0.059516303,0.5440398,0.00781037,-0.11484166,-0.26441747,-0.45705798,-0.32079417,0.040691536,-0.09038119,0.43520927,0.043925628,-0.26442292,0.9326965,0.094724625,1.1821717,-0.009455553,-0.37608355,0.07118059,0.41594505,-0.038685106,-0.04403697,-0.4118695,1.0371146,0.4920475,-0.022829017,-0.17296009,-0.2966689,0.050497618,0.12814052,-0.12359267,-0.1689062,0.0037234703,-0.8195999,-0.24453881,0.26757306,0.35004833,0.06407262,-0.045060236,0.08097174,0.32491115,0.064303525,0.4274564,-0.30833352,-0.021797132,0.27927488,0.35688803,0.050212324,0.08235184,-0.33345643,0.30089724,-0.31563056,0.04890763,-0.29664353,0.031152206,-0.1847523,-0.20725875,0.28500387,0.04581774,0.3533706,-0.36047336,-0.31315696,-0.15136568,0.4782766,-0.13899316,0.15461239,0.53616995,-0.23039623,0.0982032,-0.07037655,0.48630422,1.3282875,-0.24656792,0.0757104,0.3922456,-0.4239226,-0.52288276,0.40679118,-0.19642277,0.060444474,0.12854654,-0.34785128,-0.37069127,0.12976772,0.066284545,-0.094712585,0.1686687,-0.5291265,-0.11428849,0.281634,-0.2866455,-0.17570609,-0.27174148,0.20668025,0.6561184,-0.31696087,-0.3900739,0.012735488,0.21419808,-0.31573963,-0.4476081,-0.0042028488,-0.348807,0.27796325,0.16342601,-0.31362662,0.03506795,0.054101583,-0.4428929,-0.013601263,0.2338596,-0.38124266,0.046898343,-0.3177529,-0.062069252,0.91130435,-0.1607268,0.090651825,-0.5363056,-0.531824,-0.95610875,-0.23604757,0.5039329,0.24688932,0.08788254,-0.4801311,0.018778384,-0.036356173,-0.09325927,-0.083189294,-0.3488086,0.44567534,0.265356,0.46472532,-0.21522021,-0.6534106,0.10712186,0.19426909,-0.1925966,-0.561259,0.5076681,0.1507526,0.83050215,0.09327011,0.077773355,0.25880387,-0.5080689,-0.012297982,-0.1289908,-0.25060144,-0.7761153,-0.024527617 +723,0.41164654,-0.338689,-0.4000464,-0.18695916,-0.32854578,-0.06448952,-0.14552538,0.49138707,0.2920759,-0.4686167,-0.263801,-0.09343112,0.0076190555,0.31134102,-0.14147112,-0.6219544,0.011178464,0.27276656,-0.32483453,0.6185382,-0.42608607,0.27176905,-0.043672517,0.253901,0.39017093,0.29367453,0.044222374,-0.19616316,-0.045816198,-0.22883661,-0.16861609,0.22307365,-0.39846677,0.29574162,-0.081784755,-0.35130256,0.086960986,-0.551674,-0.3592239,-0.72914684,0.21794574,-0.79928464,0.37338597,0.06749392,-0.34199253,0.21617934,0.016063113,0.44256654,-0.25716922,0.05338282,0.2871954,-0.12542148,-0.07617774,-0.12407406,-0.08284512,-0.3723648,-0.49429578,-0.17169744,-0.23270504,-0.17299274,-0.3291221,0.08512296,-0.44194272,-0.08494795,-0.07481183,0.45662796,-0.49624032,0.21747662,0.2625077,-0.19807276,0.35923612,-0.5293901,-0.18120286,-0.14314483,0.310473,-0.16109355,-0.20147637,0.41187385,0.22919211,0.2671654,0.10190043,-0.09369819,-0.25538105,-0.026597427,0.31798363,0.5708159,-0.09363857,-0.30795747,-0.004659648,0.046239514,0.17146489,0.18630807,0.024430394,-0.25090724,-0.20321557,0.19291183,-0.31162056,0.19269003,0.4501813,-0.25859812,-0.15486918,0.40232342,0.5387444,0.21296875,-0.12801999,-0.030756226,0.08939075,-0.52773374,-0.22961389,0.07487227,-0.28423882,0.49321893,-0.24232769,0.22822364,0.77959216,-0.22187884,0.0037355055,0.033366963,0.20773187,-0.21701075,-0.18002129,-0.4657873,0.28376672,-0.39780936,0.19807467,-0.111425444,1.0112232,0.29990992,-0.5799641,0.26062223,-0.5806376,0.2082042,-0.31616938,0.42099798,0.55988735,0.4015921,0.45442405,0.7272829,-0.39257467,0.16190177,-0.013475794,-0.50113356,0.12629946,-0.306029,-0.05806468,-0.48595384,-0.12006144,-0.052610833,-0.20978436,0.1446496,0.3790366,-0.5625428,-0.011155658,0.123066776,0.8775767,-0.29898173,0.05217616,0.6415246,0.94203985,1.0392199,0.108689435,0.98935115,0.26413187,-0.3351631,0.07203062,-0.3040201,-0.711966,0.3179066,0.46970308,-0.29602093,0.21316406,0.23007645,0.10839757,0.39536682,-0.43304363,0.06430478,-0.32122374,0.16954948,0.1408096,-0.16930352,-0.5833062,-0.3227272,-0.25267172,0.175724,-0.18292353,0.21340337,-0.07903063,0.3316096,0.091229,1.7070554,-0.034613702,0.041064337,0.027201368,0.40555793,0.1911065,-0.27943593,0.008588617,0.36330193,0.4396858,0.07998378,-0.7217157,0.1788632,-0.22605754,-0.33791834,-0.16935928,-0.32227248,0.047559936,0.13616286,-0.4120514,-0.10189514,-0.026837949,-0.17086202,0.54269886,-2.57059,-0.15632772,-0.15608785,0.44367743,-0.24600363,-0.2551906,0.05020196,-0.46805224,0.2949374,0.2941267,0.62074864,-0.70284945,0.33648017,0.45566538,-0.69438815,0.025197286,-0.61338615,-0.2670119,-0.12859571,0.30413073,0.11340494,0.14894046,0.048091218,0.18422708,0.38512754,0.07274905,0.13592497,0.2725889,0.36596122,0.11858877,0.6607551,0.030775942,0.4985067,-0.19241293,-0.16930272,0.21263331,-0.28350517,0.27411053,-0.050257172,0.08701897,0.5523013,-0.38445583,-0.89620006,-0.7902686,-0.23116446,1.1422635,-0.17920925,-0.41755897,0.34216708,-0.21334478,-0.362907,-0.14143017,0.2323381,-0.066046596,-0.18436494,-0.8975205,0.0125915725,-0.054102127,0.14518535,0.14762375,-0.28813112,-0.43749925,0.79017645,-0.03170615,0.49153244,0.31927234,0.20556599,-0.030194364,-0.29954556,-0.060365062,0.81200016,0.40692848,0.12728752,-0.35075167,-0.20565653,-0.26075062,0.023723276,0.13736771,0.40436855,0.58351934,-0.21459392,0.01524451,0.31899917,-0.059639357,0.07462445,-0.14137483,-0.34794638,-0.03899197,0.0011426669,0.5169815,0.6188735,-0.1820592,0.42346847,0.023936365,0.33934104,-0.014877374,-0.47156778,0.2789702,1.0897498,-0.052297994,-0.32056645,0.52575564,0.5646236,-0.114338756,0.34808937,-0.5256982,-0.11794511,0.40310076,-0.17786333,-0.3518888,0.09983262,-0.3642065,0.23513684,-0.7966528,0.46004412,-0.261109,-0.6495521,-0.59387743,-0.072927445,-3.2785203,0.23589842,-0.36882803,-0.20640685,0.04924985,-0.0096510835,0.23984286,-0.76755977,-0.5089665,0.3112257,0.11417794,0.77100825,-0.06831197,0.07975586,-0.1868066,-0.17755435,-0.31187347,0.008888061,0.063301,0.33402088,0.13460296,-0.4922627,0.054453135,-0.03339082,-0.37226245,0.1841999,-0.6044844,-0.5632943,-0.20105842,-0.5745983,-0.42028677,0.59153503,-0.21580039,-0.04110786,-0.10452592,0.15582512,-0.22576927,0.2329727,0.1711693,0.0940844,-0.03391991,-0.01769085,0.0058131632,-0.28059876,0.33365932,0.057195526,0.410799,0.04445442,-0.061944988,0.049077366,0.6764123,0.5192347,-0.114996925,0.8744875,0.5931858,-0.24544922,0.071328886,-0.26744276,-0.3383039,-0.5396033,-0.35812944,0.050019566,-0.41005802,-0.47434556,0.02551838,-0.3375093,-0.81661975,0.62778723,0.07515225,0.11862298,-0.0030642003,-0.0039960006,0.5179371,-0.0663866,-0.08584098,0.12040591,-0.13804916,-0.6938001,-0.14351532,-0.61975247,-0.33083314,0.20451117,1.0425547,-0.3950176,0.118794866,-0.030482007,-0.41603667,0.05567705,0.10876933,-0.10521192,0.121379785,0.49593624,-0.12708345,-0.64198214,0.44571608,0.032490976,-0.08256463,-0.6904296,0.31115752,0.6376836,-0.5713982,0.50267917,0.35029703,-0.092298135,-0.04660034,-0.44637552,-0.3939444,-0.08815901,-0.16955186,0.39723,0.06528507,-0.5733122,0.3318895,0.30171984,-0.32994047,-0.62537533,0.53845906,-0.123076476,-0.24843517,0.0026323611,0.1886069,0.08445445,-0.059348993,-0.08765101,0.3703807,-0.35836184,0.33586815,0.25967395,-0.1506441,0.05696666,-0.14577816,0.041077234,-0.9232743,0.030505607,-0.31824344,-0.2028241,0.26412696,0.13183072,0.06788309,0.08744963,0.2823124,0.3862886,-0.22564481,0.076374836,-0.039906718,-0.38260448,0.4800272,0.4384346,0.42280373,-0.38806647,0.57175726,0.07997059,-0.07919517,-0.06888996,0.026592327,0.3764326,0.13529441,0.4455939,-0.034230947,-0.24561524,0.29420418,0.8411313,0.2349715,0.5982208,0.015203114,-0.06840916,0.11809957,0.10540957,0.25901443,0.019279866,-0.61017424,0.1335161,-0.1343967,0.13294142,0.42129976,0.20009759,0.27453858,-0.0700413,-0.4803568,-0.0124200685,0.11051758,0.08846232,-1.3016855,0.5000544,0.21608767,0.7727115,0.39951992,-0.023770185,0.014521516,0.78967434,-0.11705041,0.11527522,0.1982024,0.005357307,-0.53536075,0.410337,-0.746162,0.35471073,0.043165963,-0.07244898,-0.00154299,-0.07064615,0.43851164,0.6219674,-0.2264484,0.0010117659,-0.13462292,-0.4560258,0.16961296,-0.50571406,0.014454512,-0.68579537,-0.3789188,0.5349702,0.5679384,0.3773376,-0.075046636,0.012928502,0.05389232,-0.08706722,0.27272648,0.15706924,-0.036419954,0.15266067,-0.73627114,-0.12652276,0.4846728,-0.33848852,0.18298131,-0.17019469,-0.12756117,0.28827584,-0.11218886,0.03395325,-0.0813434,-0.70596,0.0020709587,-0.2062274,-0.41142184,0.48703486,0.11939342,0.37136218,0.17952545,0.024740381,-0.051729076,0.43020487,0.12771943,0.8460975,-0.017098345,-0.16022703,-0.4506892,0.09235703,0.13451461,-0.041662034,0.0775673,-0.3704922,-0.039431207,-0.6015437,0.43692163,0.0739771,-0.2782436,0.10305352,-0.20134561,0.017426085,0.5523196,-0.13468038,-0.17996462,-0.17651774,-0.15259248,-0.24935032,-0.24863885,-0.12076791,0.25935152,0.31446695,0.008094948,-0.17569536,-0.116973154,-0.10184263,0.46803153,-0.058816556,0.42869264,0.29960543,0.011336341,-0.23539479,-0.37035716,0.0742104,0.4016484,-0.060248367,-0.269309,-0.35223195,-0.5481491,-0.41491944,0.08507901,-0.108810216,0.47121158,0.022250572,-0.23185198,0.67863333,-0.1690797,1.1424421,-0.058737718,-0.4161344,0.090418406,0.5639852,0.13293241,-0.004260056,-0.23828664,0.7965809,0.57721734,-0.11661757,-0.04857699,-0.5956166,-0.10937624,0.14191686,-0.13963357,-0.045057885,0.15868849,-0.6033206,-0.19390163,0.2528741,0.14351906,0.20407845,-0.050027728,0.09441163,0.38438067,0.119066015,0.17984898,-0.3732568,-0.31299114,0.22275235,0.19843143,0.16266908,0.096294455,-0.5818671,0.377196,-0.34410477,0.13002159,-0.29311913,0.20342383,-0.29601,-0.2762562,0.24711147,0.075862974,0.34920913,-0.31581065,-0.32184616,-0.24739368,0.6278521,0.10244706,0.056590743,0.55458474,-0.2661967,-0.012899781,0.13220897,0.39142334,0.90100384,-0.34038737,-0.020226588,0.631332,-0.44817513,-0.53093886,0.29479754,-0.2118869,0.04087948,0.15281177,-0.3527985,-0.69365215,0.2564093,0.19578633,-0.033781327,0.18490306,-0.4957003,-0.17951499,0.29379922,-0.44313353,-0.181952,-0.36922115,0.16625386,0.4759771,-0.37957987,-0.50312006,0.056650206,0.12059694,-0.18775104,-0.32313398,-0.18206239,-0.3294017,0.30173284,-0.06341,-0.36085322,-0.28662187,0.038591843,-0.2584829,0.07366569,0.0465642,-0.3989234,0.14900658,-0.27033454,-0.054786112,0.90624434,-0.30525193,0.08074334,-0.7190341,-0.2820701,-0.73535275,-0.32960862,0.69052094,0.090989225,-0.08275625,-0.5941342,0.06363611,0.15788515,-0.07899232,-0.21819264,-0.4133901,0.48998457,0.1411298,0.31864357,-0.014890997,-0.8247441,0.21551822,0.06845699,-0.22990173,-0.67838204,0.58220774,-0.22435817,0.85970825,-0.039811037,0.19421402,-0.024538787,-0.22044145,-0.018526921,-0.2768466,-0.4772165,-0.72763675,-0.13929603 +724,0.53554374,-0.07275382,-0.55666065,-0.13828397,-0.38622624,-0.030850977,-0.13727228,0.38698405,0.1807832,-0.31815943,0.030212529,-0.049591064,-0.100306466,0.41675508,-0.14175679,-0.7048691,0.0951727,0.09350742,-0.5273644,0.6811823,-0.41134852,0.34732747,0.0032308754,0.24751404,0.18201642,0.15528733,0.14133264,-0.034391858,0.06366676,-0.08139378,-0.11190364,0.25987756,-0.46130782,0.083926596,0.09032766,-0.17778793,0.042133294,-0.37059152,-0.3091329,-0.66063464,0.227333,-0.66553247,0.49240726,0.0049619526,-0.3590607,0.14705843,0.14429998,0.30431196,-0.26062268,0.02269034,0.21999387,0.02343461,-0.1048823,-0.0033878312,-0.08999918,-0.51271874,-0.515785,-0.0884356,-0.5475311,-0.3199761,-0.371983,0.11441767,-0.39591247,-0.06345566,-0.14742035,0.5585909,-0.43004763,-0.14159521,0.15119153,-0.14272183,0.19466186,-0.6591457,-0.007422358,-0.082040526,0.07123922,-0.035333917,-0.15677723,0.32035744,0.21126497,0.5543075,0.018244991,-0.2126956,-0.2174329,-0.18384323,0.12728715,0.41616637,-0.27236184,-0.35634455,-0.11484262,0.08414819,0.21443307,0.012520131,0.054314725,-0.3943672,-0.04866772,0.1042956,-0.21821846,0.27437174,0.4938884,-0.37708727,-0.098123536,0.41560802,0.41108146,0.22031598,-0.027312614,0.11531988,-0.08944097,-0.510638,-0.114121795,0.0073911343,-0.25498962,0.29862136,-0.12180383,0.16228715,0.6292677,-0.14183648,0.04893534,0.0061546825,0.098317884,0.14333871,-0.25290743,-0.2721408,0.15883228,-0.6724042,0.1550487,-0.07346339,0.74957645,0.16863188,-0.56432486,0.28015593,-0.46612862,0.1372977,-0.13014334,0.43910515,0.7959042,0.3495526,0.1427845,0.71802676,-0.40736535,0.1210147,-0.15673004,-0.22284426,0.16545804,-0.039092593,0.08988405,-0.47408795,0.08632084,-0.06571817,-0.15763386,0.0027776216,0.36684924,-0.61303353,-0.21286163,0.21703334,0.68696356,-0.313472,0.06813881,0.53234273,0.9476842,0.91109866,0.088580295,0.96786314,0.2572341,-0.10810031,0.213391,-0.23174122,-0.5451733,0.23344886,0.40839,-0.06995082,0.19281666,0.027001828,-0.06811693,0.48315006,-0.24177164,-0.112777874,-0.33021793,0.54245126,0.09422707,-0.1996117,-0.3634094,-0.22738022,-0.011397094,0.12775902,-0.09451627,0.34878266,-0.30404565,0.07779468,-0.1289377,1.4286278,-0.12969662,0.16863474,0.18021193,0.3792048,0.36604232,-0.18615957,0.030948825,0.32857448,0.37080473,0.096246496,-0.5815942,0.08153157,-0.38783687,-0.42635012,-0.119378656,-0.3514502,-0.021098852,0.077415615,-0.4918041,-0.06761656,0.052033905,-0.17573729,0.48949775,-2.5236933,-0.24052642,-0.10889343,0.2506198,-0.2873619,-0.3146315,-0.21012223,-0.27396578,0.4015724,0.3074762,0.5388967,-0.5489554,0.4021589,0.37451023,-0.54709387,0.0397881,-0.5233518,-0.07409908,-0.05868603,0.36726424,-0.11769895,-0.19116029,-0.021484613,0.28463042,0.5933952,0.018256359,0.15183266,0.3864107,0.26317635,0.05119914,0.38731274,-0.058276072,0.3980174,-0.22021244,-0.16038886,0.33077076,-0.22835755,0.18664204,-0.03253159,0.1843484,0.40256688,-0.40252396,-1.008834,-0.4594567,-0.17692685,1.1841372,-0.3340547,-0.39847553,0.40264708,-0.1653719,-0.20094624,0.06272628,0.3949149,-0.028336948,-0.008821823,-0.77012795,0.26581898,-0.042327356,0.18358856,0.051894233,-0.066999204,-0.29162842,0.5648129,-0.1693247,0.48445553,0.33138835,0.30971295,-0.18022662,-0.42627326,-0.076422766,0.9816953,0.5776096,0.07351285,-0.19402634,-0.10569162,-0.23808394,-0.102347,0.14935246,0.37282318,0.70004404,-0.0037698261,0.058124892,0.18487833,-0.04472921,0.02330849,-0.17933379,-0.37642717,0.026985275,0.10609,0.43071947,0.44109544,-0.14220242,0.4713997,0.011319375,0.041400522,-0.10914014,-0.6018377,0.3985059,0.9182261,-0.2238093,-0.22348899,0.5931636,0.33131346,-0.15046616,0.4172666,-0.57385963,-0.25817394,0.47014648,-0.2524555,-0.37847987,0.27907532,-0.34519494,0.21813688,-0.7475356,0.37628478,-0.346376,-0.48473346,-0.5450465,-0.16744974,-3.437225,0.24606499,-0.3209773,-0.12897123,-0.13632108,-0.11805886,0.30099696,-0.5945749,-0.46988446,0.19574001,0.038117446,0.7554457,-0.031908058,0.04194369,-0.22781458,-0.392224,-0.2258251,0.12345359,0.035775125,0.26432887,0.049116187,-0.3737008,-0.09980889,-0.0317723,-0.49202263,0.13106015,-0.6187986,-0.48872152,-0.21957707,-0.5178107,-0.117019296,0.68307483,-0.18598765,0.07206261,-0.09081198,0.037656844,0.00309241,0.19912183,0.20158228,0.18317239,0.1306823,-0.07418702,-0.1260795,-0.29320508,0.12625706,0.09869453,0.28832912,0.35854936,-0.0305957,0.03693051,0.6425071,0.6147453,-0.10247957,0.82734025,0.42170525,-0.1664383,0.29342347,-0.2969393,-0.18653388,-0.5134444,-0.40402272,-0.19249323,-0.3748784,-0.44078696,-0.014335319,-0.3321572,-0.7022705,0.48563224,-0.16469295,0.20741451,-0.13226563,0.25326073,0.4462673,-0.13746658,-0.10176789,-0.09279431,-0.17592065,-0.4234971,-0.24832311,-0.5725821,-0.385633,0.18573484,1.1255168,-0.395644,-0.07045852,-0.14520276,-0.031638402,-0.030276759,-0.17523104,0.14605825,0.21314208,0.19268951,-0.051885277,-0.52664846,0.32652625,-0.13843223,-0.04730863,-0.45254987,0.1427331,0.5788943,-0.5040629,0.5091491,0.21060255,0.10495393,-0.04745479,-0.6718769,-0.11623296,0.27935368,-0.2920202,0.4396009,0.1817947,-0.73394895,0.4951496,0.4331918,-0.38216677,-0.74908185,0.41223913,0.009771908,-0.25550848,-0.048944395,0.39068854,0.23759133,0.026274804,-0.17775042,0.35057902,-0.4808018,0.2866646,0.28293386,-0.16555543,0.29541355,-0.25639084,-0.29851854,-0.6704431,-0.036957256,-0.4724017,-0.3019934,0.07938366,-6.485917e-05,0.023763765,0.098788545,0.035809778,0.5129018,-0.37019536,0.1376484,-0.11618997,-0.2868867,0.5963491,0.5310807,0.38390625,-0.21410048,0.47997707,-0.06587763,-0.09907397,-0.02330548,0.073543034,0.4288761,0.04868956,0.2952093,-0.09202597,-0.0956163,0.22931524,0.8181969,0.005960215,0.3207163,0.070847675,-0.14622962,0.17105497,0.025391757,0.039370887,-0.01628143,-0.32678854,-0.052893147,0.10334412,0.2958085,0.48646632,0.23398802,0.22613637,-0.07072738,-0.21597728,0.07027246,0.19617021,0.11339549,-1.1939778,0.40621796,0.021553911,0.6490176,0.4437114,0.08514972,-0.086440116,0.55506015,-0.108211964,0.06927363,0.26827106,-0.19938056,-0.42879915,0.5616485,-0.6110075,0.30682823,-0.08881154,0.07820057,0.047995318,0.17685942,0.3757587,0.70498306,-0.044153377,-0.06866823,-0.0153586175,-0.30175406,0.086568676,-0.21480362,0.07583347,-0.41586515,-0.44670445,0.5499776,0.33502617,0.16152492,-0.28848755,-0.07713996,0.058481183,-0.20605332,0.17479984,-0.021486402,0.055691645,-0.10508536,-0.44630516,-0.38106614,0.42104694,-0.06902467,0.15990008,-0.13994041,0.0074386187,0.141977,-0.070888825,-0.022257874,0.048347134,-0.6206559,-0.059481606,-0.39898336,-0.2884015,0.35470933,-0.23713839,0.19972277,0.07418709,-0.032120906,-0.30248135,0.4091218,0.11883522,0.65156317,-0.15489066,-0.17502102,-0.21791032,0.09990129,-0.040183026,-0.12126963,0.020253565,-0.21745597,0.0903361,-0.7684438,0.36020574,-0.09962626,-0.2113396,0.18973151,-0.21811934,0.020978881,0.4285401,-0.1898059,-0.19942336,-0.2154394,-0.25954717,-0.18704972,-0.3726924,-0.10202039,0.16472045,0.028053194,-0.031098284,-0.07527667,-0.20740946,-0.09602077,0.52518505,0.060268894,0.2496633,0.3031549,0.20508766,-0.36265075,-0.010513738,0.2561341,0.42336556,0.011538196,0.06998344,-0.30304986,-0.30810067,-0.34203482,-0.025700394,-0.23002176,0.31459847,0.057500675,-0.3862499,0.8770118,0.11365881,1.1111484,-0.15126815,-0.3508254,-0.0715933,0.43811628,-0.0808751,-0.057296507,-0.07980702,0.71323556,0.67683554,0.033700075,-0.08130878,-0.39894488,-0.22847115,0.2097139,-0.3265003,-0.040485516,-0.0022651441,-0.49167597,-0.29450932,0.20244056,0.25430226,0.06823109,-0.22582012,-0.08757959,0.17189273,0.14884093,0.274161,-0.5985311,0.011766374,0.17867623,0.25272927,0.13774638,0.2515302,-0.45450297,0.40884075,-0.6696589,0.23559783,-0.18225509,0.14431441,-0.06882042,-0.14322817,0.124893434,0.09550248,0.35679898,-0.2576897,-0.35976768,-0.1457054,0.5377156,0.0014199875,0.032425873,0.68573016,-0.22758558,0.10664062,0.062372353,0.50552166,1.0543505,-0.17509815,-0.026014829,0.2703645,-0.26749033,-0.7718133,0.23556718,-0.2905469,0.10952597,-0.0449137,-0.30438977,-0.43451488,0.2387731,0.28364125,0.15207992,-0.09119892,-0.5239353,-0.23680776,0.30045104,-0.23791538,-0.15071838,-0.22747003,0.20685232,0.7226739,-0.29273883,-0.26481467,0.007769555,0.35271406,-0.12311257,-0.63112557,-0.013234675,-0.34213462,0.36887044,0.2589171,-0.26072526,0.045819543,0.065127544,-0.49859446,-0.06607242,0.13558257,-0.26920864,0.120043926,-0.27556914,0.115200184,0.7851385,-0.050316587,0.10780145,-0.578799,-0.50861573,-0.84638953,-0.335238,0.47549772,0.11934604,0.12559715,-0.7061857,0.07500547,-0.17126974,0.057961937,-0.07909626,-0.3468098,0.38314372,0.13784856,0.28703567,-0.19610164,-0.7606748,0.054009512,0.041013803,-0.08862783,-0.4953694,0.44542533,-0.019770965,0.8398397,0.0221354,-0.026098456,0.070501156,-0.4038512,0.060120646,-0.34575668,-0.21504204,-0.61775947,0.08344785 +725,0.22060208,-0.12573859,-0.35307154,-0.15060346,-0.05137354,-0.35931024,-0.050344527,0.7688403,0.22205296,-0.57425344,-0.2291017,-0.24889188,-0.019584268,0.56558645,-0.27558112,-0.42603606,-0.041819602,-0.080651686,-0.37689006,0.3146006,-0.38890827,0.036858432,0.14287686,0.4058608,0.36293295,0.1321998,0.25187606,-0.11486761,-0.07548366,-0.22608516,-0.10981192,0.042050708,-0.5917306,0.00880346,-0.27588457,-0.49919662,0.0059797703,-0.71669465,-0.3988509,-0.7537209,0.4985919,-1.1925905,0.38217986,0.078951456,-0.09097118,0.19640201,0.4272511,0.2717242,-0.111148,-0.30485576,0.15345618,0.041852556,-0.03934027,0.1801272,-0.36416325,-0.3572636,-0.5882732,0.006329575,-0.22630195,-0.27524564,-0.43772477,0.0236152,-0.4246394,0.15378758,-0.08352039,0.454331,-0.37483364,0.08536027,0.18239322,-0.15232717,0.3438844,-0.5527824,-0.19138813,-0.19942422,0.18964025,-0.3387829,-0.15893641,0.4487649,0.35988146,0.32994264,-0.19159098,-0.08067681,-0.32097608,0.1272905,0.019247213,0.45505962,-0.45031905,-0.5920683,-0.07785054,0.11425638,0.16250908,0.35602504,0.21387509,-0.22494368,0.03192375,0.2824862,-0.43546963,0.5907038,0.52134216,-0.12674138,-0.07283355,0.09057904,0.2680117,0.34546998,-0.19751343,-0.13688523,0.074873134,-0.53851295,-0.07923804,-0.07459344,-0.15007582,0.6643202,-0.031027371,0.29295072,0.8037184,-0.31190228,0.28634992,-0.07219984,-0.199828,-0.1285533,-0.49207455,-0.10822551,0.29917368,-0.55424625,0.44702396,-0.10890255,0.69633967,0.16325828,-0.6310425,0.46890265,-0.5853471,0.21743575,-0.30465052,0.35500315,0.6396195,0.26838195,0.41950154,0.6929513,-0.5281038,-0.032472186,-0.152379,-0.35834756,0.15151858,-0.22873595,0.2723822,-0.18600228,-0.21950865,0.05519148,0.0021959245,0.14596643,0.33444467,-0.47798795,-0.053875368,0.11495225,1.0145395,-0.21038058,-0.14175329,0.7488383,1.0924528,0.8416904,0.08738786,1.0259142,-0.019893682,-0.20344344,0.51813346,0.20285098,-0.87672204,0.23943599,0.55981225,0.10358224,-0.17174797,0.20683303,-0.0487056,0.366482,-0.45574045,0.04076271,-0.2647807,0.088377856,0.39416325,-0.112336814,-0.28050128,-0.2186718,-0.20414312,0.0030762136,-0.14603208,0.19687891,-0.07926263,0.16586186,-0.1407575,1.576942,0.11198576,0.15177214,0.16459776,0.7492923,-0.079615675,-0.095589325,0.057594836,-0.18454008,0.4008643,0.25189924,-0.49579805,-0.004579914,-0.2706379,-0.3637539,0.040708683,-0.3315343,-0.19664612,0.097191796,-0.48070487,-0.09912579,-0.13608086,-0.23463258,0.44064337,-2.8226352,-0.100281045,-0.24690302,0.2984348,-0.23940459,-0.3349348,-0.12632683,-0.5807996,0.73305017,0.37057728,0.6101177,-0.67042667,0.3889834,0.40995893,-0.4936851,-0.018939376,-0.69940454,-0.033029355,0.05972544,0.21565068,0.018686756,-0.06923961,0.2552028,-0.06680141,0.50534546,0.38742837,0.060968697,0.2517674,0.5248464,-0.1316168,0.763862,-0.4341402,0.3576278,-0.38593888,-0.1388325,0.2220592,-0.4703966,0.10038866,-0.25163937,0.17849483,0.40449792,-0.5740305,-1.0049322,-0.75977147,-0.566857,1.2216476,-0.047817007,-0.48184568,0.6022562,-0.28315,-0.074166015,-0.327047,0.9024557,0.037486337,0.14858934,-0.66133773,0.064067684,-0.342848,0.10811891,0.003795764,-0.08882628,-0.28118926,0.69170445,-0.07282354,0.35085234,0.34523332,0.030143758,-0.3999842,-0.32897455,0.09631573,0.6811964,0.34524524,0.13693663,-0.16541627,-0.045894682,-0.48471817,-0.33282253,0.091781326,0.5394944,0.683305,-0.042082172,0.1355075,0.20724344,0.08130252,-0.053074576,-0.09057545,-0.4682599,-0.24566627,-0.0823553,0.65823716,0.5982557,-0.13565907,0.28734773,-0.12243812,0.27115744,-0.12993607,-0.26868832,0.24785654,0.8064626,-0.08080609,-0.1722779,0.5104991,0.39894924,-0.27370143,0.34993568,-0.448586,-0.29379028,0.38151875,0.0048431023,-0.746699,0.0010667115,-0.3201491,-0.048154406,-0.5853887,0.24276736,-0.5045394,-0.39020973,-0.35214898,-0.24735133,-3.8398461,0.23776731,-0.19911873,-0.2604839,-0.23353784,-0.26432928,0.23491387,-0.4428834,-0.73728245,0.105590045,-0.00048244596,0.74100673,-0.01494046,0.0028538047,-0.34626722,-0.07597935,-0.31356025,0.025885344,0.28712416,0.3713475,0.0091766985,-0.39812127,-0.35961038,-0.098345384,-0.60201275,0.14164962,-0.61965287,-0.49640292,-0.22955814,-0.60323614,-0.40246263,0.76851976,-0.30438986,-0.032929577,-0.025782043,-0.09242176,-0.3231887,0.50882703,0.1747677,0.21005301,-0.16049816,-0.06006656,0.014120078,-0.112735905,0.49908876,0.12742801,0.5084066,0.25219324,0.014732805,0.23990974,0.52117354,0.68948096,-0.076647684,1.0112087,0.33673275,0.0053814957,0.2827316,-0.3714034,-0.2775576,-0.5698695,-0.073376425,0.06714767,-0.34727937,-0.294831,0.10563801,-0.3869169,-0.610036,0.6793131,-0.035474263,0.13628468,0.16837645,-0.081817,0.31889346,-0.030712882,-0.05275485,0.16702846,0.13772032,-0.8153943,-0.2672829,-0.61949044,-0.5597812,-0.17705046,0.6892985,-0.0559557,-0.13107133,0.08434047,-0.21407875,0.14317085,-0.008317774,-0.03501776,0.023734152,0.37175393,-0.18693036,-0.68472517,0.5518936,-0.2344136,-0.08264478,-0.65276015,0.21068959,0.51069856,-0.6603226,0.6913421,0.31123787,0.014036867,-0.36137035,-0.51845944,-0.34711468,-0.4101463,-0.111969136,0.11152949,0.08003713,-1.1172273,0.3165765,0.49448997,-0.13408862,-0.57833934,0.4575862,-0.08019038,0.0077203275,-0.03842283,0.26625526,0.2176688,-0.05976262,0.111419514,0.18708982,-0.42136973,0.29486445,0.17697127,0.03053056,0.6146437,-0.18453816,0.042805333,-0.5737324,0.14488605,-0.38679177,-0.1464361,0.30925292,-0.105209604,0.05047109,0.1894165,0.105943605,0.16521466,-0.11615318,0.14444116,-0.22655106,-0.30849153,0.2566334,0.44888544,0.6402377,-0.57832664,0.68368065,0.040081825,-0.084362395,0.40256986,0.20556085,0.31887618,-0.007369739,0.2401156,-0.012211353,-0.37457237,0.075539075,1.1517938,0.17510174,0.4471684,0.014706677,0.0134547595,0.26290476,0.13304928,0.017733954,0.2165906,-0.81303024,0.019580936,-0.26537672,0.11543344,0.5995576,0.14659165,0.10445336,-0.124270424,-0.259636,-0.14356296,0.09512825,0.06895398,-1.3534544,0.49072176,0.07831002,0.95255387,0.29499903,-0.20351371,-0.017703589,0.69009674,0.1255571,0.25760296,0.3864246,-0.020657426,-0.5717069,0.66413486,-0.5486973,0.6136174,0.108108684,-0.06356378,0.011281507,0.21013756,0.42811975,0.6145499,-0.16045181,0.018243505,0.16611312,-0.20458412,0.27189565,-0.5387614,-0.11112465,-0.26741964,-0.12901035,0.54098594,0.66078454,0.14466111,-0.20002434,0.034776047,-0.123436175,-0.098471604,0.07441055,-0.24246371,0.014472658,-0.17017707,-0.77294,-0.22244315,0.5647564,-0.08314981,0.4219255,-0.05693091,-0.077933714,0.37045282,0.0006972298,-0.06063523,-0.15361953,-0.73674566,0.0044062375,-0.46488112,-0.46459883,0.18662731,-0.083834544,0.37806374,0.19996934,-0.007154256,-0.29193443,0.51346314,-0.06795245,0.61504716,-0.6049569,-0.1374294,-0.6834308,0.029388363,0.18462136,-0.23863769,-0.08765267,-0.2452178,-0.19669059,-0.43213338,0.462188,-0.050680846,-0.4148814,0.098586224,-0.13075192,0.024143647,0.6061034,-0.063275866,0.065308094,0.24591938,-0.061799884,-0.18098831,-0.22379903,-0.069480404,0.26988414,0.14395824,0.2466939,-0.11124866,-0.31023055,-0.11763805,0.39293176,-0.08938937,0.41086954,0.30612648,0.37592155,-0.2759717,-0.1969035,0.13563639,0.7646119,-0.022154415,-0.2682938,-0.27422807,-0.37748262,-0.2393935,0.28421903,-0.0035557388,0.5294918,0.2734836,-0.37523133,0.35097477,0.036355842,1.0274106,0.19258727,-0.28077757,0.012738395,0.37145475,-0.08383848,-0.18774076,-0.25364214,0.5446495,0.4325531,-0.14147095,-0.09349753,-0.2740803,0.12140305,0.22616379,-0.12277098,-0.28608814,-0.02869466,-0.67148626,-0.05949226,0.16823226,0.41113433,0.14357689,-0.089854784,0.08521517,0.1954231,-0.0015737221,0.3260006,-0.49436107,-0.25935444,0.2934844,0.2894969,-0.1196778,0.20917797,-0.45942435,0.3363035,-0.43650618,0.124328695,-0.55378425,0.21906838,-0.2659739,-0.30292717,0.05548668,-0.28979102,0.6950653,-0.05275766,-0.2496992,-0.14949164,0.34472805,0.17551914,0.31175613,0.45462292,-0.13730209,-0.0917424,-0.12507506,0.76702243,0.9766146,-0.17452306,0.11382101,0.2307066,-0.1907771,-0.41684994,0.31183103,-0.2500322,0.2818254,0.12305083,0.17965467,-0.43798476,0.13987978,0.21135128,-0.2808478,0.1156592,-0.6849699,-0.42765903,-0.014846265,-0.08182867,-0.38840872,-0.578213,0.11808519,0.5531545,-0.3440252,-0.034015097,0.19681847,0.290977,0.035262674,-0.29226714,-0.02877282,-0.1860398,0.26704222,-0.03221205,-0.5174061,-0.09992021,-0.11306238,-0.38185257,0.3421023,-0.29684648,-0.35313454,0.12827733,-0.02373889,-0.0707051,0.9401659,-0.112019,0.21331699,-0.49667326,-0.5867871,-0.77057475,-0.3459477,0.39795038,0.3534742,0.10935569,-0.32942954,-0.11272726,0.158689,-0.016311098,-0.06913014,-0.15301049,0.46520013,0.015001433,0.6619722,-0.22324657,-0.5256586,0.09226699,0.027308166,0.015942525,-0.48784018,0.50256515,-0.020557094,0.8863591,0.051345564,0.011479723,0.079472445,-0.11886094,-0.3026142,-0.1491451,-0.35523728,-0.5162457,0.22382498 +726,0.3924449,-0.30882046,-0.43866438,-0.15347126,-0.23754069,0.0054624905,-0.16849032,0.668446,0.2826023,-0.36657155,-0.20527227,-0.0935448,0.114337154,0.4576643,-0.09402466,-0.40395182,0.011270487,0.22966638,-0.4981481,0.57113737,-0.38270837,0.111828655,0.003730673,0.5429002,0.45873362,0.22201635,0.0065861484,0.06562582,-0.2991622,-0.119269535,-0.29251024,0.36355206,-0.30294758,0.13957575,0.017039107,-0.2485582,-0.09892673,-0.59346294,-0.26635712,-0.8619624,0.24697877,-0.9134003,0.5665297,-0.041290645,-0.26200578,0.23091239,0.22077635,0.3209788,-0.32443592,-0.33377382,0.09007646,-0.19962837,-0.112774,-0.22203475,-0.086460195,-0.3326662,-0.60532117,0.102712266,-0.4318714,-0.1818611,-0.3299125,0.20489295,-0.26427835,-0.14482667,0.02826824,0.67098457,-0.40375417,0.15883453,0.19044818,-0.26657784,0.21521753,-0.58043545,-0.13590537,-0.12544706,0.19071428,-0.077296294,-0.4419965,0.24231412,0.38714522,0.27009693,-0.021570288,-0.21725509,-0.39531535,-0.038949627,0.09045665,0.40757275,-0.052787594,-0.5536964,-0.11693505,0.059546053,0.22923486,0.24064526,0.35592863,-0.23075536,-0.15648048,0.12262973,-0.10449273,0.45390546,0.37477547,-0.34650084,-0.13975866,0.40388396,0.566128,0.31663033,-0.19528624,-0.17651984,0.022938637,-0.56862664,-0.04976294,-0.01620825,-0.24656321,0.5845303,-0.22024173,0.26626313,0.59117424,-0.13246544,-0.06985887,0.28948718,0.19329055,-0.24146524,-0.2842427,-0.22341985,0.20085964,-0.4242533,0.14825799,-0.15248361,0.69139254,0.18616512,-0.59187126,0.3894127,-0.53484565,0.20817533,-0.20397274,0.37998727,0.69087565,0.452267,0.57207143,0.6026405,-0.2337521,0.025476446,-0.082013674,-0.43288648,0.17686266,-0.3222142,-0.046578843,-0.6460815,-0.026729865,-0.13579684,-0.13317282,0.21458834,0.46457216,-0.6631706,-0.14038761,0.21341172,0.8001534,-0.23436958,-0.3823543,0.85419095,0.926635,0.88213897,0.002069063,1.0891939,0.13286279,-0.17882875,0.29286197,-0.23558313,-0.6279576,0.37603414,0.3919803,-0.8182429,0.32930714,0.07099359,-0.006034888,0.46494314,-0.18896216,0.021734567,-0.15019625,0.0016189172,0.11269767,-0.174558,-0.41641495,-0.36103153,-0.1774804,0.0033110608,0.19670382,0.26454642,-0.3255402,0.51481456,-0.16778876,1.8965918,0.020025088,0.03403984,-0.043324906,0.3945997,0.25930667,-0.24090457,-0.17810756,0.58933663,0.29573774,0.2428302,-0.4733717,0.22559175,-0.28352645,-0.43837172,-0.0974911,-0.4490082,-0.024186896,0.011023799,-0.37160668,-0.16457671,-0.22756995,-0.29069376,0.43800205,-2.7710142,-0.2986473,-0.072666034,0.33371434,-0.27077755,-0.41577005,-0.056861963,-0.43524712,0.24360143,0.24689573,0.602176,-0.7237082,0.26700643,0.27471736,-0.7018155,-0.3031009,-0.7531348,-0.0846433,-0.03968238,0.31510928,-0.03538635,-0.067003936,0.14830953,0.021005373,0.5472616,-0.04418296,0.10253845,0.35081723,0.45663878,0.00071891915,0.49411738,-0.15114899,0.67981243,-0.19848092,-0.30099708,0.3151932,-0.31417722,0.49055746,0.12885568,0.1105659,0.59625906,-0.3294565,-1.0178759,-0.6939602,0.032870457,1.2203013,-0.28187177,-0.40656802,0.111014456,-0.52037543,-0.32251924,0.068882875,0.54438585,-0.008087268,-0.11764046,-0.77110195,0.022803482,-0.00527607,0.11802456,0.0028335957,-0.03554345,-0.34957945,0.6082016,0.04584792,0.4824254,0.22105438,0.23872375,-0.52001977,-0.39013666,0.04917385,0.82509845,0.35337785,-0.016126093,-0.17715184,-0.30256176,-0.5104095,-0.13236628,0.13212314,0.55960363,0.45664075,-0.060018834,0.16030826,0.3663206,-0.0021961606,-0.00039695547,-0.22037032,-0.18664494,-0.051216364,0.10682636,0.50941515,0.73694766,-0.17078103,0.70394254,-0.058727168,0.30177587,-0.030488748,-0.5384687,0.56240433,1.278077,-0.3095681,-0.3894842,0.63696665,0.28192604,-0.39008147,0.45411283,-0.4560619,-0.1904042,0.52443415,-0.124042764,-0.40384638,0.20737535,-0.25170138,0.23339517,-1.0065122,0.22653642,-0.22795361,-0.48415598,-0.5864203,0.10586096,-3.3218014,0.28034467,-0.3336164,-0.21946733,-0.21579869,-0.32104146,0.012507326,-0.85076594,-0.44425255,0.13115595,0.16700281,0.91009414,-0.2304992,0.06297381,-0.23820104,-0.39508688,-0.22173885,0.067841575,0.015921617,0.47312137,-0.20876664,-0.41794255,0.09922429,-0.016733047,-0.47974688,0.054533012,-0.7144977,-0.5392548,-0.09925882,-0.629027,-0.2465996,0.7032618,-0.38250253,0.007845698,-0.18613365,0.17222473,0.07307224,0.32908237,0.027383447,0.069302864,0.17399491,-0.035608467,0.08976586,-0.3302503,0.31045145,-0.024679817,0.27648222,0.33904582,-0.019785363,0.51521283,0.6569507,0.7431201,-0.17662174,0.9025227,0.55397505,-0.10484374,0.15238336,-0.3501438,-0.33327514,-0.42202875,-0.25335994,0.062461264,-0.45750076,-0.37360796,0.04440767,-0.2667259,-0.819479,0.6605107,0.04101018,0.25539476,-0.05540285,0.4168144,0.7734978,-0.24942559,0.028882321,-0.020516805,-0.23624788,-0.7746938,-0.16501954,-0.5254931,-0.59769577,0.23923062,0.82773185,-0.42503422,0.051194567,-0.018014984,-0.26588857,-0.019843366,0.11846136,-0.16104351,0.2959355,0.40416315,-0.20403549,-0.5794769,0.37398985,-0.094606824,-0.15538932,-0.47967118,0.41415337,0.6003126,-0.6218604,0.6252982,0.30126482,-0.0838023,-0.29509115,-0.4581421,-0.15310809,0.010141716,-0.04710751,0.4514374,0.26499644,-0.8282193,0.37193888,0.410763,-0.3240285,-0.76930416,0.53028595,-0.083546415,-0.116146326,-0.24571902,0.42153007,0.1707327,0.06555119,-0.3942688,0.07928936,-0.4354629,0.08103086,0.2702921,-0.074108616,0.30143097,-0.15175249,-0.118254036,-0.82868856,0.1256064,-0.49158967,-0.352385,0.43804085,0.22168818,0.21637987,0.17516367,0.19354722,0.26491335,-0.40145385,0.009566381,-0.10828984,-0.18630661,0.31373912,0.5016428,0.49172014,-0.5409486,0.51777464,0.040497426,-0.09470676,0.05276138,-0.14827706,0.42962074,0.1563646,0.39923745,0.1002972,-0.28518993,0.19812652,0.58168,0.042443983,0.45802996,0.1285451,-0.034200385,-0.028429164,-0.013443506,0.3521462,0.004609664,-0.6611882,0.15038563,-0.45519182,0.21851137,0.5930943,0.21627122,0.20965503,0.05849065,-0.47945088,0.011299271,0.070609875,0.19685808,-1.2332573,0.45398396,0.28145903,0.89982694,0.24740131,0.050962504,-0.094558306,0.86273515,-0.2223507,0.23022142,0.37020046,-0.084592536,-0.5230446,0.48211163,-1.0343877,0.48605186,0.023358844,-0.00899877,-0.03366353,-0.12061751,0.4384785,0.79104775,-0.25801438,0.028848972,0.06976055,-0.2940851,0.20936115,-0.5142189,0.03539519,-0.7443769,-0.30238774,0.57523686,0.50690913,0.4464161,-0.23547179,0.025174966,0.29006654,-0.1543797,0.23623969,0.07914873,0.26865312,0.011237149,-0.6766013,-0.08366371,0.44523138,-0.03717858,0.39891374,-0.10515261,-0.052027483,0.2902989,-0.2734117,-0.094878286,-0.17227474,-0.63464075,-0.15390915,-0.16867901,-0.66557825,0.60176754,-0.04597884,0.18550912,0.25264108,0.06773935,-0.19290906,0.60712725,0.052113973,0.9730577,0.05955368,-0.06326984,-0.44065952,0.44861585,0.082061134,-0.09338824,-0.092216454,-0.29144794,0.09237642,-0.56443983,0.5430186,-0.03790285,-0.46235943,-0.18280002,-0.0106787225,0.137213,0.5363211,-0.24590921,-0.20482522,-0.2516747,-0.33536178,-0.3252309,-0.18810548,0.034789775,0.37219444,0.26362696,-0.06072084,-0.27028397,-0.13725387,-0.16901657,0.26577216,-0.15066808,0.40377238,0.34664232,-0.0681891,-0.16977742,-0.19235156,0.3179234,0.5163392,0.007804476,-0.2582182,-0.38348833,-0.24491054,-0.43901184,0.07824542,0.02741276,0.48824495,0.1955054,-0.14352438,0.7039761,-0.18943161,1.3555597,-0.08196083,-0.5457997,0.11451031,0.5478121,0.054150123,-0.14021227,-0.28362253,0.86574876,0.39418375,0.008871,-0.051741187,-0.585658,-0.15131079,0.39624822,-0.20884529,-0.07792357,0.052116632,-0.5398318,-0.1860721,0.19323699,0.19084117,0.36992472,-0.12364861,0.16699086,0.33404428,-0.13171643,0.2211714,-0.3445706,-0.19375695,0.2430202,0.47130808,0.00069856644,0.10830384,-0.46345124,0.41985133,-0.53553486,0.1550699,-0.24954516,0.29950935,-0.25135234,-0.31065148,0.29974896,0.076085284,0.36595276,-0.3064409,-0.37675434,-0.2822379,0.5004891,0.21800658,0.062494643,0.5662338,-0.31546277,0.028079836,0.05701329,0.3743677,0.94627416,-0.197947,0.025096592,0.38675007,-0.2979386,-0.78990424,0.59448206,-0.47699437,0.2589911,0.10702278,-0.09451881,-0.6321869,0.21326503,0.31310794,0.1221424,-0.10702765,-0.5968915,-0.098547235,0.18973619,-0.28667566,-0.12872872,-0.36306316,0.023442008,0.36982995,-0.26586375,-0.45773584,0.011231496,0.09338037,0.10331844,-0.33396074,-0.20351022,-0.38982895,0.32093444,-0.020896861,-0.450408,-0.10519767,-0.005725104,-0.48389736,0.21434039,-0.03187631,-0.28202608,0.2806569,-0.24343385,-0.025460334,0.938452,-0.27096134,0.18855341,-0.39992282,-0.5213064,-0.58854395,-0.31227568,0.25280657,-0.16725995,0.036968842,-0.7261584,0.11548499,-0.10614496,-0.3493552,-0.14264432,-0.5156187,0.41816616,0.08834163,0.28276226,-0.036364354,-0.7374881,0.19282912,0.068934076,-0.07535153,-0.74347466,0.43008444,-0.18951249,0.90188587,0.033167742,0.15970494,0.38867763,-0.3212229,-0.13751489,-0.3029955,-0.23048316,-0.42596003,-0.15793292 +727,0.27004704,0.09878052,-0.601244,-0.0718801,-0.00892718,0.1617756,-0.20407669,0.4040646,0.2343448,-0.32302052,-0.058262087,0.02027535,-0.04352806,0.23933336,-0.11662308,-0.36825252,0.04355868,0.2342645,-0.45239702,0.30508417,-0.46457857,0.3217008,-0.26087973,0.39003235,0.016135285,0.34781554,-0.028995337,0.1721853,-0.24776728,-0.2303617,0.29226503,0.19022115,-0.49569172,0.34465408,-0.14087379,0.0005495591,-0.2372166,-0.40955004,-0.4678057,-0.757802,0.231645,-0.7716847,0.5586074,-0.14965387,-0.32637954,0.31347817,0.17743611,0.33894387,-0.22956474,-0.11022939,0.27181092,-0.20701721,-0.3425056,-0.13189928,-0.2863775,-0.21155095,-0.5492713,0.05109427,-0.3741918,0.023335287,-0.29080504,0.1866063,-0.22207682,0.14994048,-0.19966806,0.35798475,-0.38105503,0.010950767,0.21018317,-0.18190591,0.20684913,-0.5284766,-0.049191363,-0.042226363,0.12670784,-0.16281475,-0.049037017,0.20341362,0.044161517,0.40114588,-0.18863118,-0.025428291,-0.37370515,-0.1464984,0.16231427,0.40876678,-0.11858315,-0.20828071,-0.14725111,-0.13852336,0.21296217,0.1312856,0.037103694,-0.28271618,0.0622133,-0.011946797,-0.13811967,0.35041276,0.5421484,-0.079120524,-0.1849312,0.35107422,0.72598636,0.09558939,-0.1314685,0.18230596,-0.02114229,-0.36323637,-0.2204987,-0.09839845,-0.04738077,0.20488583,0.035267893,0.110463016,0.5988751,-0.25571522,-0.069022976,0.12516132,0.075199,0.12572353,-0.40152827,-0.2932361,0.29815155,-0.39291957,0.011788045,-0.16230643,0.50883377,-0.0127939535,-0.68307686,0.3505436,-0.4559466,0.034295704,0.113797136,0.5851664,0.546112,0.46593806,0.1560519,0.7816434,-0.4023235,0.06710956,-0.03668068,-0.13524981,0.05922384,-0.13215454,0.1058134,-0.40574387,-0.03240345,0.20689198,-0.3087649,0.10535463,0.30738616,-0.39379242,-0.17523924,0.008204094,0.68824136,-0.33505553,-0.07227891,0.70796585,1.212018,0.8588092,0.08276122,1.2385689,0.19035877,-0.15203758,-0.1721909,-0.15068136,-0.8217211,0.25842017,0.13846467,-0.42867568,0.259856,0.19231628,-0.04746661,0.2980654,-0.63079417,-0.082568385,0.008956045,0.39613748,-0.0717019,0.013425546,-0.4262929,-0.19499062,0.17704932,0.016108423,0.30403122,0.31622198,-0.31456038,0.2663394,0.12070242,1.3223046,-0.09801627,0.024238441,0.16348681,0.32111782,0.038111,-0.26039377,-0.22749636,0.21534093,0.41038546,-0.06904952,-0.47903356,0.09240341,-0.095456414,-0.48644704,-0.16634752,-0.26541284,0.0284866,-0.31145653,-0.09423405,-0.13244788,-0.21395846,-0.62275887,0.3957521,-2.5661278,0.025663922,-0.12949945,0.3152309,-0.07338006,-0.26398033,-0.30844137,-0.34381437,0.41561985,0.27712527,0.39980632,-0.33819535,0.3124116,0.43277508,-0.52630794,-0.10494088,-0.50600797,0.017110033,-0.05245769,0.16917567,0.091250315,-0.10031925,-0.11741773,0.17511158,0.41707343,0.028286096,0.15087683,0.63846123,0.312316,0.015502938,0.37039217,0.025534581,0.56818664,-0.42062452,-0.2882146,0.4162586,-0.5309343,0.21200506,-0.17479374,0.0930658,0.22800136,-0.24556479,-0.711563,-0.5718099,-0.2168525,1.4281044,-0.2891013,-0.49193925,0.21997619,-0.36824903,-0.46577832,0.07026488,0.41387647,-0.27698418,0.01892412,-0.80902684,-0.11849492,-0.168376,0.39852777,-0.08967515,0.14808466,-0.50757533,0.62936074,-0.27867365,0.49752426,0.39335653,0.12985203,-0.36455092,-0.3542467,0.08939146,1.199665,0.393977,0.11742069,-0.123386726,-0.07845016,-0.32550997,-0.28806353,0.12724304,0.563485,0.627328,0.08923793,0.12800519,0.22648756,-0.18002573,-0.0092865275,-0.05965944,-0.38146538,-0.15434943,0.08953164,0.71353483,0.46095052,-0.14743721,0.45153528,-0.16764371,0.26233673,-0.2120907,-0.33624056,0.33446807,0.50554574,-0.18235694,-0.35090902,0.694656,0.45370245,-0.36275482,0.51780844,-0.5676698,-0.518803,0.29928207,-0.15680972,-0.39958566,0.31322676,-0.16662966,0.11716948,-0.7490769,0.22490653,-0.17454675,-0.8668472,-0.5289424,-0.28472856,-2.3324883,0.1586487,-0.033039086,-0.2800283,-0.12210434,-0.07348677,0.25959924,-0.24319705,-0.7038273,0.037524752,0.049685035,0.6049933,-0.059274454,-0.092546664,-0.1144119,-0.21768986,-0.09973772,0.19780879,0.2718014,0.3600314,0.016744647,-0.3981643,-0.17500795,-0.07934762,-0.37549755,-0.12971206,-0.63315105,-0.38300166,-0.14090368,-0.5880289,-0.16948655,0.58025587,-0.58536917,0.0077169323,-0.29960877,0.016550258,0.072956696,0.43708473,0.09642462,0.26726943,0.25526795,-0.3396209,0.08203886,-0.13245435,0.37191078,0.06463255,0.34162435,0.49382755,-0.29953665,0.1427788,0.4562079,0.66949016,-0.060186148,0.91738015,0.23007931,-0.11767929,0.29351264,-0.22827768,-0.2255899,-0.32628626,-0.17879952,0.083171286,-0.38894752,-0.2924057,-0.1499091,-0.33143708,-0.87906593,0.4384386,0.0005701291,-0.058376115,-0.075048395,0.3184677,0.28541797,-0.020179978,-0.03571168,-0.18919924,-0.13046142,-0.37479332,-0.46244907,-0.60373586,-0.49291056,0.07099219,0.9993278,-0.13132156,0.16336273,0.091611706,-0.20232831,0.19629605,0.15188074,0.13508418,0.10600096,0.46140385,0.055686686,-0.49967977,0.26161703,-0.33231807,-0.15146014,-0.6540008,0.23416379,0.8054016,-0.47811207,0.53214365,0.3464326,0.12802884,-0.21819602,-0.572064,-0.07068856,-0.03420416,-0.21817502,0.52297443,0.22353365,-0.8542139,0.53905374,0.2582927,-0.26264945,-0.78287876,0.39037028,-0.12677182,0.09743556,0.07690936,0.47752824,-0.1667874,0.04067222,-0.3029904,0.25225088,-0.2686111,0.11965004,0.20985948,-0.12971735,0.6008034,-0.33453205,-0.12753803,-0.5376567,0.057525635,-0.45563594,-0.2717691,0.03849863,-0.0776459,-0.11916505,0.25879946,-0.07036575,0.380348,-0.39949685,0.04118528,-0.18341374,-0.44114804,0.4206121,0.42460775,0.54983675,-0.4206201,0.6126564,-0.06526558,-0.06752534,-0.114008866,-0.12237085,0.55224425,-0.0760942,0.3061503,0.16411419,0.06446726,0.2772645,0.6501179,0.21861546,0.44075033,0.012337974,-0.22092223,0.07903799,0.100224875,0.22597443,-0.09299667,-0.5152655,0.08127177,-0.05045041,0.14709094,0.35149246,0.19251074,0.5360745,-0.12874983,-0.281998,0.116493836,0.1314119,-0.29251575,-1.2345656,0.6028605,0.034819003,0.71002823,0.31548914,0.03464586,0.245972,0.582194,-0.041458346,0.061116654,0.18509722,-0.05350835,-0.436457,0.43676552,-0.8169188,0.48560783,-0.10926468,0.0707135,0.22795178,0.039263885,0.65401167,0.8600965,-0.020644372,0.061567597,0.017458204,-0.15017429,0.13115819,-0.3205193,0.36395815,-0.42787567,-0.38032433,0.7695845,0.38221043,0.5292389,-0.22047426,0.046715815,0.1042803,-0.2310088,0.1555181,-0.022503955,0.029922951,-0.050044518,-0.66346043,-0.25304297,0.27286336,0.22287358,-0.043789823,0.092597164,0.012921325,0.2618461,-0.050774135,0.062156446,0.051509734,-0.54856825,-0.029951004,-0.28034416,-0.3822215,0.05430711,-0.2670907,0.19702604,0.13708876,0.009939717,-0.4583919,0.327609,0.20383403,0.7754661,0.08365675,-0.26182565,-0.25174242,0.25775135,0.20040925,-0.25481853,0.024902727,-0.39236715,0.07478318,-0.73040044,0.40900442,-0.44760802,-0.5873379,0.3877483,-0.20051566,-0.0063421256,0.60336226,-0.22760434,-0.03720987,0.007861682,-0.34717157,-0.11891414,-0.27072874,-0.18363805,0.1726892,0.060918104,-0.2800421,-0.10967897,0.031186821,-0.16759978,0.2675695,0.019522434,0.26070425,0.6134402,0.23994239,-0.36023912,0.074129805,-0.013377096,0.6025429,0.0882058,-0.020757878,-0.3702976,-0.30690745,-0.19688371,0.5093894,-0.20018485,0.22550611,0.20704865,-0.28786275,0.60296017,0.04637054,0.9287816,-0.0019627213,-0.27739227,0.14356944,0.60663193,0.095222555,-0.054579634,-0.4085338,0.9431488,0.5172039,-0.18906318,-0.12498784,-0.5030435,-0.08800923,0.15968503,-0.28836137,-0.32093158,-0.13908121,-0.7853546,-0.29617745,0.23678258,0.3687823,-0.055863384,-0.09468836,0.22297947,0.29272765,0.067256495,0.3314211,-0.45789668,0.17902705,0.47764477,0.1294008,-0.10782622,0.09863453,-0.39574283,0.28197452,-0.59891826,0.023622807,-0.13194145,-0.025496768,-0.093144335,-0.37791902,0.15386827,0.05809613,0.32235974,-0.33313426,-0.22475788,-0.124258876,0.47615114,0.1682509,0.041547008,0.49277976,-0.21404047,0.059384603,0.08159765,0.45485803,0.9368853,-0.16996267,0.049470525,0.23501706,-0.2605271,-0.5962428,0.22603247,-0.3234082,0.14835466,-0.13297965,-0.46172574,-0.40864322,0.31793332,0.17296766,-0.087510146,0.058197703,-0.34685454,-0.07268451,0.082968235,-0.12630817,-0.10466494,-0.30576086,-0.052656036,0.5693554,-0.10370413,-0.4077707,0.113527164,0.2923186,-0.22696202,-0.5486534,-0.03255575,-0.36966324,0.28400734,-0.16439082,-0.22803184,-0.13434775,-0.17080598,-0.3658516,0.21213377,0.11591627,-0.29761153,-0.031855095,-0.16360356,0.044573486,0.50222296,-0.12143018,0.05465946,-0.5208655,-0.4975681,-0.96958894,-0.21793284,0.1352805,0.09286658,-0.17352052,-0.6299882,-0.08066107,-0.26002076,-0.035848297,0.07129356,-0.46588808,0.3541545,0.24291532,0.30839258,-0.33132508,-0.7989359,0.078432225,0.09497424,-0.3499848,-0.48346472,0.51830494,-0.005296477,0.544206,0.025689304,0.1366544,0.20095615,-0.6276536,0.22770795,-0.04745164,-0.17568524,-0.53603554,0.17441688 +728,0.437486,-0.06554955,-0.525002,-0.21136087,-0.37615758,0.13459033,-0.26470146,0.1004678,0.23928079,-0.33598807,-0.00737632,-0.00683843,-0.0017551675,0.3315562,-0.17124413,-0.791881,0.052146107,0.07709426,-0.55439407,0.44832683,-0.5603806,0.52945226,0.026616657,0.3105353,0.08506849,0.3687121,0.19063991,-0.06358487,-0.02087011,0.12647839,-0.18987453,0.35642976,-0.6674094,0.038574796,0.08386518,-0.2676148,-0.07817009,-0.33323833,-0.29314166,-0.70732254,0.39525226,-0.7311746,0.47403285,-0.19644912,-0.3821316,0.15721525,0.06580765,0.3402103,-0.4356423,0.15866527,0.1913122,-0.3406035,-0.0204306,-0.01941359,-0.261822,-0.50394243,-0.5556615,-0.08669097,-0.6398397,-0.14493501,-0.3281431,0.21343805,-0.3832719,-0.009681936,-0.20878181,0.3991799,-0.37089735,-0.06809938,0.31212357,-0.11632826,0.10220292,-0.4160605,-0.074744776,-0.1872028,0.2347867,0.03807667,-0.26234618,0.28765038,0.36445943,0.5246974,0.11830206,-0.2801571,-0.12438674,-0.10398558,0.13928476,0.5079156,-0.07082749,-0.38209778,-0.3181192,-0.018591361,0.17137621,0.26399583,0.06050058,-0.41113967,-0.071825914,0.14823347,-0.23890296,0.30233568,0.44563618,-0.38937017,-0.20501451,0.45455045,0.41716817,0.10626616,-0.21970513,0.3229278,-0.04597963,-0.59053856,-0.23698501,0.2608329,-0.10660327,0.5372645,-0.24521172,0.15621544,0.7702843,-0.22664833,-0.0544297,-0.23720299,-0.17823115,-0.06930769,-0.26714125,-0.046498455,0.10058127,-0.43314767,0.12151192,-0.1969261,0.8534245,0.26632103,-0.8375912,0.34797436,-0.43614078,0.17603204,-0.24592416,0.63886935,0.9419847,0.26307687,0.3576489,0.89707285,-0.6160379,0.09269134,-0.03725396,-0.5168598,0.043175142,-0.04593725,-0.056844663,-0.48895574,0.09663185,-0.03319556,0.011145625,-0.09534149,0.36074203,-0.42816025,-0.04535041,-0.09231794,0.60148203,-0.48455733,-0.13148859,0.74930006,0.8502601,0.82787555,0.14349797,1.1966873,0.41155338,-0.13783203,0.14426851,-0.32797945,-0.4872219,0.16718695,0.29893813,0.10337799,0.327183,0.08459519,0.054858882,0.4076532,-0.15340054,-0.10695354,-0.005989047,0.25835246,0.0022301655,-0.10238197,-0.40471,-0.12752138,0.14030924,0.057951346,0.049160715,0.22084606,-0.2515522,0.40745616,0.22147691,1.5109211,0.03512295,0.07142318,-0.037440464,0.3819585,0.32516626,-0.21062486,-0.11064266,0.44861934,0.42909896,-0.116220094,-0.6648238,-0.020884044,-0.2311299,-0.40897667,-0.18704247,-0.45827407,-0.03444612,-0.093900725,-0.4959294,-0.09068297,0.1547159,-0.29525754,0.570584,-2.500299,-0.25487524,-0.104584835,0.25994405,-0.24681069,-0.36350632,-0.29608828,-0.4941344,0.27749148,0.36703795,0.22152276,-0.72443897,0.42498708,0.39099687,-0.2064997,-0.15668307,-0.64957607,-0.11163284,-0.08652311,0.38725966,-0.1204614,-0.017227087,-0.13665988,0.33363882,0.6233313,0.0042571602,0.014583155,0.047397867,0.4703083,0.062334687,0.6782556,0.14846437,0.63715166,-0.1259677,-0.08256183,0.32426548,-0.29660755,0.28751978,0.12594151,0.15927126,0.39141357,-0.43268642,-0.8108106,-0.57102776,-0.34653315,1.1096146,-0.53112334,-0.30955377,0.26841483,-0.016422398,-0.18640652,0.09098174,0.4220438,-0.08030116,-0.00982368,-0.721672,0.1887607,-0.083162956,0.0978411,-0.10360134,0.1456842,-0.14628705,0.6058523,-0.23231374,0.5630343,0.31790453,0.16760348,-0.08285657,-0.5433514,0.051248495,0.90451145,0.3672463,0.07203106,-0.17116669,-0.30373964,-0.19130515,-0.16807081,0.14881812,0.5039563,0.725225,0.0115223145,0.14867157,0.36110306,-0.23531513,0.011316724,-0.12431013,-0.25212383,0.027756313,-0.02501614,0.52596414,0.48676845,-0.2548688,0.42151222,-0.13995366,0.08047958,-0.1033669,-0.52866226,0.59298044,1.0062003,-0.26210925,-0.23777021,0.56379735,0.24902995,-0.30741194,0.3049391,-0.58388907,-0.14963844,0.72780216,-0.12256683,-0.30717334,0.14373146,-0.3165802,0.07389309,-0.878714,0.25419438,-0.017556218,-0.4745465,-0.45756972,-0.11541181,-4.1366796,0.11049293,-0.10573079,-0.12265382,-0.04266971,-0.17978281,0.3510989,-0.5300852,-0.56502676,0.09794235,-0.062435992,0.5154852,-0.05404718,0.1788332,-0.37969443,-0.02926234,-0.22541603,0.22909415,0.08665546,0.38596502,-0.022893513,-0.3740492,0.08545563,-0.3180668,-0.6274385,0.065541394,-0.35308766,-0.5670566,-0.16302375,-0.46520698,-0.28650078,0.76579195,-0.27623495,-0.04071837,-0.28543484,-0.09219214,-0.23285176,0.35511547,0.18508959,0.2223532,0.05896566,0.09891976,-0.17076413,-0.3805529,0.09473333,0.014498059,0.13700292,0.33378297,-0.015976418,0.11638819,0.5224332,0.58121705,-0.09104259,0.691734,0.31298485,-0.08968354,0.30950361,-0.38420698,-0.23043515,-0.70305526,-0.51205117,-0.43864524,-0.48868796,-0.46908897,-0.26080915,-0.4192746,-0.8264426,0.43322927,0.006730597,0.22948515,-0.14713404,0.30159026,0.37523606,-0.1794516,0.006756481,-0.08031253,-0.29343867,-0.5596142,-0.46931434,-0.5804404,-0.612463,0.22989193,0.9520367,-0.18619598,-0.17932616,-0.17441377,-0.2664299,-0.07107593,-0.050395854,0.2359689,0.31233197,0.29202098,-0.17682421,-0.57973975,0.49971175,-0.17002283,-0.082131736,-0.59742343,0.022486806,0.660993,-0.57036716,0.6052555,0.30102324,0.187338,0.12947091,-0.66456604,-0.26779506,0.08973311,-0.2659721,0.61488163,0.15108566,-0.7592061,0.58141357,0.14835761,-0.033298906,-0.664503,0.5052876,0.0383996,-0.23177128,0.12053271,0.34108028,0.026239378,-0.03486237,-0.23114681,0.17726183,-0.5739995,0.2896029,0.42173597,0.04356352,0.41985202,0.04870649,-0.2343771,-0.5814467,-0.16720763,-0.62274045,-0.26223013,-0.038078982,-0.049622364,0.18189526,0.043985307,-0.0991743,0.50427383,-0.32652625,0.20699005,-0.003472514,-0.07146356,0.31624532,0.56687844,0.22361031,-0.47754365,0.543986,0.15844539,0.026771938,-0.06748459,0.09302057,0.5525704,0.33044124,0.2936835,-0.11483086,-0.13353014,0.1138398,0.6361264,0.2755848,0.47163078,0.24450712,-0.3193153,0.35101616,0.2612901,0.21976864,0.077057645,-0.17360535,-0.1439401,0.052068148,0.23436606,0.48356858,0.21320204,0.34459653,-0.054664336,-0.17393945,0.23513547,0.087833494,-0.112158485,-1.1817249,0.3416664,0.27167436,0.614549,0.5645313,-0.019460559,0.073410176,0.30179438,-0.42309177,0.18165527,0.31512037,-0.0076651643,-0.46574125,0.50267404,-0.5932386,0.4629231,-0.21621263,0.02629158,0.08923645,0.24056995,0.36550957,1.0120231,-0.11854957,0.15237783,0.044191036,-0.17393026,0.23967586,-0.31598338,-0.08968847,-0.42857277,-0.2810737,0.5157399,0.34162655,0.25284553,-0.3364657,-0.06969714,0.051009297,-0.11450033,-0.16776422,-0.07223281,0.020433167,-0.03773385,-0.48781967,-0.49012515,0.5821827,-0.19537699,0.021458372,0.074762166,-0.37600645,0.2790161,-0.1344383,-0.06918836,-0.036947202,-0.6618242,-0.17356683,-0.2433419,-0.5315629,0.34118578,-0.48967996,0.2644757,0.14796741,0.043739572,-0.3234222,0.1227246,0.2859286,0.7520688,-0.026061324,-0.09245923,-0.41034657,-0.050724037,0.47817454,-0.34647292,-0.1692443,-0.33155304,0.082178086,-0.54367346,0.3868305,-0.0805975,-0.25769424,-0.011508661,-0.10427397,-0.023943152,0.41051093,-0.29207966,-0.19136,0.13387652,-0.035009407,-0.34856582,-0.08541345,-0.31469616,0.28032526,0.046373077,-0.12240059,0.18004563,-0.058679402,-0.06009306,0.3598962,0.12682295,0.2839005,0.25727355,-0.06283331,-0.29354453,-0.060732037,0.15999524,0.31917158,0.07899537,-0.0928271,-0.20606428,-0.32596704,-0.24795252,0.27894127,-0.1585162,0.24638306,0.09960998,-0.45932478,0.74113876,0.12434847,1.1062934,0.12543745,-0.36788458,0.06397034,0.43888894,0.14023611,0.1918568,-0.23843129,0.8474832,0.5195051,-0.06259648,-0.1924373,-0.34046587,-0.2876095,0.27074796,-0.23862603,-0.24778903,-0.114807785,-0.57489663,-0.2406524,0.16156662,0.22021045,0.12814718,0.0020837819,-0.15853475,0.10478087,0.17311978,0.4963908,-0.49996555,0.010643679,0.35281456,0.2016229,0.09102033,0.24598882,-0.26968607,0.4910028,-0.61649716,0.18613742,-0.4934174,0.23259942,-0.016291814,-0.13413225,0.23905417,-0.06901283,0.33746853,-0.18111496,-0.29808566,-0.28571382,0.6830077,0.09490385,0.25203213,0.782973,-0.2594113,0.044718813,0.055327095,0.46394882,1.2791263,-0.05290295,0.02295264,0.3329731,-0.29962546,-0.63739985,0.23157454,-0.30214226,0.10734373,-0.098121375,-0.35321683,-0.34360892,0.28712216,0.09350378,0.07354541,0.10401974,-0.5621476,-0.29270902,0.53155535,-0.15543579,-0.16913007,-0.19332407,0.34486413,0.7458248,-0.4412682,-0.30365986,0.040283974,0.25553298,-0.19478627,-0.5395081,-0.009738543,-0.24429439,0.42109203,0.09834821,-0.2772621,0.08142506,0.32581013,-0.38102013,0.1905964,0.40043914,-0.28988886,0.17235291,-0.16731584,-0.16801623,1.160568,0.0039779088,0.08411249,-0.7104216,-0.5036038,-0.9693305,-0.36857563,0.20682983,0.17880735,0.013226502,-0.58297795,-0.050741892,-0.02873514,-0.01954775,0.08660106,-0.5666985,0.45365566,0.114581905,0.39889738,-0.042488314,-0.86444,-0.10763704,0.09289677,-0.22504032,-0.5894011,0.7063538,-0.22445065,0.75591326,0.12008967,0.10566825,0.06893646,-0.5915007,0.2921707,-0.41736877,-0.08764407,-0.7748484,0.086009815 +729,0.47906846,-0.17183383,-0.5691011,-0.12135541,-0.11975272,0.01692046,-0.08911881,0.34949854,0.3905303,-0.44127303,-0.08934736,-0.10523048,0.08739614,0.20868012,-0.2243889,-0.7850685,-0.08701476,0.3212155,-0.37761894,0.5085127,-0.52538234,0.17575444,-0.09282914,0.32801777,-0.12706994,0.22191194,0.31225067,-0.14271435,-0.17057785,-0.037310783,0.24111515,0.4331965,-0.80976105,0.14745738,-0.008312244,-0.27362254,-0.06606109,-0.35238045,-0.4969064,-0.92188394,0.5186108,-1.0307306,0.56342304,0.27114922,-0.17558323,0.26003677,-0.028719027,0.046249636,-0.33177325,-0.011308441,0.13450712,-0.3609038,-0.31341842,-0.28380492,-0.11339169,-0.20021406,-0.7790202,0.086320676,-0.51722157,-0.028253106,-0.29871908,0.14231035,-0.43483317,-0.030778326,-0.30331177,0.71907604,-0.43009165,0.0045894017,0.3961414,-0.21796513,0.24344507,-0.45234916,-0.16111296,-0.099614754,-0.011396353,-0.21724297,-0.3993605,0.19948873,0.3818016,0.3771341,-0.057667393,-0.38616583,-0.39139387,0.04782872,0.43485582,0.40553468,-0.29170462,-0.51995647,-0.073253736,-0.033110086,-0.057097122,0.127158,0.23991816,-0.4196623,0.001383433,0.20122752,-0.12603918,0.6255433,0.72514975,-0.1511485,-0.18547036,0.23955266,0.59066606,-0.012196938,0.03525052,0.039090954,0.06518499,-0.609123,-0.250747,0.1910908,-0.23604144,0.65116704,-0.265729,0.085079126,0.5904928,-0.45005795,-0.2008492,0.23451039,0.15369707,0.09821912,-0.438998,-0.29064095,0.6625272,-0.42855772,0.027488094,-0.2666611,0.80602163,0.13051769,-0.82478154,0.4377054,-0.55546325,0.3219752,-0.23450515,0.77865654,0.54369676,0.4291216,0.53752905,0.8351319,-0.52432126,0.037560485,0.08748459,-0.6073913,0.18917741,-0.24487719,0.034533225,-0.3564706,-0.13700326,-0.02647474,-0.2702351,0.07606056,0.47559148,-0.52310604,-0.10462333,0.02071122,0.621344,-0.29696527,-0.19747098,0.60584337,1.2430117,1.1281899,0.19481824,1.4690036,0.39018977,-0.16433305,0.0838089,-0.15615183,-1.150655,0.29940408,0.29868814,-0.4710081,0.44407794,0.12624271,-0.3021843,0.4417501,-0.5389407,-0.1904316,-0.1475336,0.3314745,0.0061193933,-0.23578899,-0.407276,-0.15778875,-0.007694861,-0.021803392,0.127556,0.27512124,-0.2665499,0.26339218,0.14349592,1.225487,-0.11364163,0.106249206,0.09297393,0.3565602,0.18835957,-0.042584416,-0.037500344,0.3189875,0.31607744,0.26814634,-0.65546286,0.07831783,-0.2352776,-0.56009203,-0.25360116,-0.30658552,0.1783372,-0.07080661,-0.43189886,-0.12508097,-0.16585207,-0.3958491,0.3875225,-2.393478,-0.11967142,0.069743454,0.4231946,-0.20035058,-0.27875984,-0.10736062,-0.50757086,0.27268866,0.31523862,0.44618896,-0.8042533,0.29944932,0.45473772,-0.59856546,-0.01155889,-0.82082516,-0.066974156,-0.23989871,0.28852856,0.13164848,-0.10128124,0.11305576,0.14554398,0.48954943,-0.003750549,0.03282983,0.37088427,0.47734106,0.017989708,0.34431207,0.020080786,0.4639362,-0.41665855,-0.4154584,0.35322732,-0.40742442,0.17345916,0.03819017,0.032536708,0.32742172,-0.43194205,-1.0557622,-0.5715039,-0.21094242,1.1984037,-0.35342214,-0.51611495,0.30729836,-0.17708352,-0.3549864,-0.011618426,0.4301174,-0.31215218,-0.085799545,-1.0124551,0.12388717,-0.16567755,0.24235685,0.011632121,0.065681554,-0.45202345,0.67658657,-0.20114239,0.37712172,0.42229426,0.20656437,-0.473718,-0.5959143,0.09766246,0.9924711,0.16517466,0.29369086,-0.2816756,-0.23346029,-0.08755748,0.009408212,0.043171883,0.56571794,0.8615255,-0.11680996,0.04837972,0.37615988,0.07690383,0.084083304,-0.21360016,-0.43930534,-0.084693834,-0.13296407,0.65556717,0.85824203,-0.41792992,0.23739092,-0.03639937,0.34218675,-0.003834399,-0.35866258,0.5384594,1.4146162,-0.07738287,-0.38608947,0.7754832,0.4417617,-0.65256363,0.5954963,-0.6232621,-0.21141694,0.36334884,-0.19281866,-0.45979038,0.2729377,-0.43969932,0.2453102,-1.0379124,0.548276,-0.26589277,-0.32283136,-0.53738314,-0.2306134,-3.977215,0.24715552,-0.37240034,-0.025231214,-0.19646849,0.022188503,0.23728868,-0.5597985,-0.62248987,0.19550191,0.09178957,0.52357185,-0.24389938,0.13862266,-0.0715371,-0.07634702,-0.19330499,0.22461827,0.30701756,0.28572398,0.13385506,-0.48745394,-0.0002741424,-0.113082916,-0.39620754,0.056691136,-0.5657983,-0.49972644,-0.09506819,-0.70105463,-0.5690619,0.64678895,-0.2834646,-0.16460833,-0.33664453,0.1983107,-0.050394855,0.45782802,-0.082019016,0.32578886,-0.0016525433,-0.032069642,-0.11092806,-0.031388637,0.3949989,-0.075723894,0.39165512,0.49634224,-0.42848015,0.0886126,0.55822456,0.7977017,-0.04181264,0.9240853,0.63384885,-0.026885109,0.2872308,-0.21306525,-0.24805562,-0.80371284,-0.3239377,-0.06513085,-0.53392184,-0.32101023,0.066555105,-0.40855402,-0.8366799,0.66532326,-0.16080731,0.23682864,0.093813896,0.44379684,0.5554887,-0.13617112,0.010866027,-0.1338065,-0.3109282,-0.5356333,-0.0964136,-0.64746994,-0.53487074,-0.070756055,0.9361751,-0.12709433,0.060420923,0.14067116,-0.014448909,-0.013494799,0.27816075,-0.025509605,0.25946912,0.48688242,0.096253745,-0.6207928,0.4070188,-0.17215618,-0.12505199,-0.7584107,0.1678002,0.5035902,-0.725579,0.8402598,0.4748205,0.114533,-0.051910464,-0.59647316,-0.43961242,0.15260619,-0.08484424,0.69391906,0.41748106,-0.9063917,0.49226087,0.4990369,-0.44268253,-0.68664736,0.5235066,-0.059165876,-0.18527696,-0.077553,0.5077719,-0.28405178,0.08603001,-0.15998714,0.25580692,-0.3990736,0.13050932,0.26582253,-0.068949334,0.45783025,-0.06174262,-0.14564168,-0.75445247,0.07644855,-0.62680346,-0.19855997,0.16243806,-0.030818395,-0.025910629,0.13452746,0.045231834,0.6172869,-0.2305117,0.06360424,-0.035505097,-0.4915393,0.545413,0.6190529,0.33768228,-0.4705512,0.65151066,-0.0033474439,-0.1795846,-0.34496564,0.014230563,0.5538137,-0.0074043367,0.41854525,0.33266163,-0.00067671906,0.35205618,0.78189343,0.13054189,0.7063289,0.24774401,0.060658075,0.34327918,0.123158365,0.33907765,-0.13104399,-0.58315456,0.03693005,-0.20249715,0.20430878,0.6315434,0.059933607,0.48895544,-0.259529,-0.33709526,-0.105423085,0.3484728,0.06595845,-1.2355542,0.44657245,0.146746,0.6583507,0.57478297,-0.04580261,0.09679083,0.46016905,-0.1916202,0.12526643,0.36533177,-0.080267824,-0.56109715,0.5757213,-0.6942804,0.19818467,-0.25340238,0.045179646,0.0422627,0.007663493,0.40894097,0.7489671,-0.042539403,0.023284338,-0.1289705,-0.18350346,0.2913659,-0.48278517,0.33145362,-0.40073982,-0.28012103,0.7813937,0.46871516,0.55017674,-0.25400972,-0.00041448898,0.23688713,-0.18251981,0.37053907,-0.08308925,-0.10858306,-0.069187,-0.723295,-0.24061608,0.6522834,0.3221938,0.03573338,-0.2043648,-0.20116708,0.30012333,-0.17979993,-0.2972596,-0.14521345,-0.70322156,-0.07142596,-0.17879952,-0.5196283,0.4833986,-0.27418897,0.1776217,0.2695588,0.10891633,-0.6602798,0.061945114,0.24250099,0.74066365,0.013842482,-0.21315248,-0.36024985,0.3309942,0.3026968,-0.1523067,-0.0306285,-0.34778574,0.069622755,-0.47340134,0.5607689,-0.16672571,-0.4494039,0.002115479,-0.029734502,-0.03704519,0.6942016,-0.39998564,-0.2780406,0.032787886,-0.10404767,-0.22021185,-0.31173876,-0.14186536,0.36881354,0.13316472,-0.24048768,-0.23463424,-0.070394546,-0.21785356,0.3873079,-0.020192526,0.17159532,0.40890285,0.246963,-0.4245439,-0.13127716,0.28802025,0.7403265,0.053187378,-0.26264623,-0.5629135,-0.50027454,-0.18657064,0.03411546,-0.06102154,0.300368,0.10535077,-0.3730645,0.9235484,0.14111695,1.2208622,-0.086797245,-0.3004184,-0.09640524,0.64635783,0.07404472,-0.27742055,-0.35256723,0.99760604,0.6064594,-0.35019472,-0.10781936,-0.5428494,0.09421056,-0.008889214,-0.17360163,-0.22859436,0.007572824,-0.753768,-0.08428614,0.19731413,0.4587868,-0.027654286,-0.016373284,0.2574432,0.19053353,-0.00020706654,0.31988138,-0.47224745,0.024929103,0.21977755,0.22071648,0.1202609,0.08467212,-0.32741782,0.27461684,-0.51889384,0.06652844,-0.3085601,0.11322523,0.0653194,-0.2913658,0.28845206,0.036214694,0.37766728,-0.33502176,-0.24680686,-0.2032424,0.37140802,0.1436281,0.04216925,0.90206397,-0.26617754,0.11020629,0.25858894,0.72329223,1.1706188,-0.15315117,0.04310211,0.24465689,-0.27709082,-0.9284878,0.42799821,-0.25514317,0.17433211,-0.22486566,-0.3331508,-0.84714156,0.068460725,0.16556822,-0.11636516,0.24179162,-0.58428013,-0.34484527,0.27426305,-0.37227204,-0.21256858,-0.28758055,-0.0028055792,0.7001925,-0.31862524,-0.27605444,0.0113764,0.14318044,-0.09624397,-0.5376309,-0.21389191,-0.38331544,0.26890916,0.14944795,-0.35885742,0.065610066,0.20568849,-0.49509305,0.25090224,0.3532179,-0.24260154,0.19830187,-0.22226693,-0.104614936,0.7498454,-0.2738046,0.17577061,-0.5392997,-0.7049628,-1.220041,-0.17189568,0.4637404,-0.08221992,0.031412248,-0.7804043,-0.034433313,0.1311205,-0.16466048,-0.11310451,-0.47399676,0.5037102,0.085769415,0.49014232,0.05407828,-0.7128755,-0.0677931,0.14494795,-0.22318557,-0.48838937,0.50419647,-0.0049083414,0.76143676,0.04115852,0.253316,0.26062986,-0.6501184,-0.031514622,-0.14867866,-0.24972357,-0.5857481,-0.10641929 +730,0.43240514,-0.30906746,-0.640646,-0.09567275,-0.30226168,-0.04289004,-0.25014547,0.53046507,0.18247941,-0.5226704,-0.14843203,-0.04297157,-0.20240913,0.32582194,-0.2114329,-0.80913854,0.06113704,0.2805866,-0.4213561,0.56178385,-0.30657375,0.4602032,0.14545886,0.3685705,0.19484869,0.29775086,0.16899967,-0.1185104,-0.25151005,-0.29512045,-0.091397114,0.17146799,-0.56713164,0.35001144,-0.20434865,-0.67551446,0.088483006,-0.47902718,-0.20501865,-0.7270306,0.23175809,-0.76167685,0.5502422,0.015472579,-0.2554016,0.008141572,0.054271538,0.43196157,-0.20067386,0.16642587,0.2267463,-0.14629586,-0.1880408,-0.2063407,-0.12044831,-0.2925385,-0.5993649,0.1594479,-0.37827128,-0.006695096,-0.143429,0.29618138,-0.29035485,0.14973873,-0.059663884,0.43667957,-0.43342015,-0.031089561,0.26557696,-0.22255264,0.09687687,-0.5720852,-0.111620925,-0.23002593,0.1701536,-0.18842815,-0.22925605,0.23265417,0.14033045,0.6692188,0.23107834,-0.24187095,-0.36281157,-0.102281846,-0.014983284,0.4430613,-0.31229898,-0.40720966,-0.36357805,0.094364956,0.45839584,-0.11045871,0.013307985,-0.3180169,0.048173357,-0.107596345,-0.117587596,0.30621433,0.56346947,-0.35464063,0.021467963,0.21625881,0.41326818,0.10888568,-0.032052927,0.065104336,0.02106705,-0.4192052,-0.18122582,-0.09278157,-0.23373348,0.5323953,-0.11224493,0.21940373,0.6530417,-0.118995205,-0.09014654,0.22332273,0.17670931,-0.050903298,-0.19146124,-0.3654796,0.37003025,-0.48447838,0.089520924,-0.21961696,0.8731879,0.29049042,-0.7721397,0.28924856,-0.5097311,0.12721433,-0.17465922,0.4803793,0.6140285,0.5928081,0.07109566,0.8545209,-0.42246768,0.15610486,-0.11645999,-0.2628226,-0.034865092,-0.10638247,-0.23927562,-0.4017363,0.16161035,-0.17834719,-0.07864542,0.1601771,0.4293467,-0.67700166,-0.04915809,0.10897023,0.87284845,-0.3360424,0.07258325,0.89238304,0.92049384,1.0001644,-0.07257504,1.2049007,0.26795736,-0.2555035,-0.031637833,-0.1979266,-0.70475197,0.36202246,0.46078774,-0.40501258,0.22666149,0.15884003,0.06647251,0.4821707,-0.61763877,-0.06053426,-0.35736427,0.16078186,-0.042476363,-0.14535874,-0.4923779,-0.12889244,0.13026185,0.027907355,0.07657048,0.29990783,-0.20087688,0.5366239,0.0054246862,1.4732891,-0.1532375,0.04898896,0.13510609,0.2599751,0.23866244,-0.012450549,-0.05394078,-0.058658697,0.23975572,-0.03966352,-0.50240535,-0.08762984,-0.34168097,-0.51779306,-0.30325028,-0.015439403,-0.06569704,-0.046971507,-0.48215103,-0.46447563,-0.053254806,-0.16496821,0.42487285,-2.1716635,-0.3833119,-0.18600222,0.38113114,-0.36083698,-0.31989688,-0.27206472,-0.4626512,0.5066278,0.27511245,0.60714656,-0.59976614,0.29409292,0.26736724,-0.5261499,-0.09007533,-0.4727397,0.008297976,-0.035819635,0.23723647,0.047599528,-0.4250916,-0.13719943,-0.15854543,0.57094324,-0.23254162,0.017651059,0.30206993,0.28915754,-0.023607709,0.3018783,-0.0023105005,0.6462804,-0.56568813,-0.2650635,0.4597591,-0.35593513,0.15842031,-0.036816288,0.14598781,0.42920294,-0.68286884,-0.8504115,-0.74556375,-0.14817868,1.0640937,0.051832195,-0.45632982,0.120224856,-0.049718626,-0.23772793,0.19383578,0.3308335,-0.22516109,-0.061272956,-0.9170476,0.024250774,-0.030192323,0.24411485,0.0042082765,0.012183747,-0.44976565,0.6960889,-0.110881135,0.38594133,0.5005758,0.30520794,-0.13696414,-0.5561991,0.13418517,1.1885295,0.6181078,0.2290143,-0.25860295,-0.11372416,-0.2993571,-0.18299729,0.060714837,0.45871624,0.8293603,-0.123396,0.030412946,0.40229332,0.064492434,0.0060444474,-0.069848746,-0.39021003,-0.16442534,0.17748347,0.620658,0.6298167,-0.024500433,0.29798788,-0.13320766,0.5331442,-0.0077081365,-0.540871,0.65999377,1.0270302,-0.20637982,-0.41921955,0.627856,0.34032622,-0.23023602,0.5175837,-0.6619064,-0.5372369,0.3661628,-0.12799221,-0.39761102,0.14398018,-0.29542777,0.34327903,-1.0843118,0.44180056,-0.34667656,-0.37790042,-0.71961623,-0.2951872,-2.5422018,0.09494304,-0.29456344,0.10534782,-0.09248285,-0.08700214,0.18392138,-0.6271826,-0.65834737,0.05449309,0.104517914,0.7102602,-0.008852345,0.3077011,0.019289367,-0.34298486,-0.2830825,0.3057238,0.36863706,0.12932499,0.028036261,-0.5287935,-0.20185119,-0.2969213,-0.44017366,0.033931408,-0.77679086,-0.42191285,-0.1631249,-0.7797129,-0.26249757,0.6976202,-0.45015696,0.10313532,-0.14415649,-2.1278859e-06,-0.19269317,0.22153114,-0.0036388675,0.042257715,0.24862213,-0.19811319,0.13850234,-0.30811718,0.2581615,0.14004634,0.31797284,0.35912514,-0.26550415,0.343297,0.5580307,0.7612855,-0.10150218,0.81971157,0.7315578,-0.12320913,0.31327853,-0.37310055,-0.4720265,-0.60254353,-0.34769502,-0.016866613,-0.53635603,-0.32886708,0.22534631,-0.47262347,-1.053355,0.68724304,0.027895192,-0.11412796,-0.070418954,0.32076958,0.56073016,-0.27068362,-0.14873353,-0.0012240649,-0.14924732,-0.2830132,-0.28988126,-0.64319736,-0.545189,-0.045225818,1.3592814,-0.061921302,0.23778318,0.21475458,-0.06107717,0.17842343,0.047875836,-0.060545206,0.094277844,0.55673134,0.042271353,-0.7347954,0.28316483,-0.14535864,-0.14081812,-0.44631153,0.19409579,0.57139,-0.7509356,0.2774839,0.40790874,0.11015748,0.15128212,-0.42476752,0.09389147,-0.06171054,-0.20681377,0.45277247,0.2200275,-0.4199456,0.57358795,0.41549957,-0.26215547,-0.9100397,0.20047401,0.06669596,-0.23973995,-0.005625717,0.33866748,0.11116378,-0.17144985,-0.22332166,0.22972725,-0.39159602,0.3263652,0.14253363,-0.23810202,0.38246924,-0.4358398,-0.3466902,-0.90852875,0.08170926,-0.6318611,-0.41951227,0.14499661,0.12686032,-0.025693337,0.11015132,0.18613917,0.5701862,-0.4379701,0.062241707,-0.29342413,-0.31716698,0.30331284,0.44072926,0.28149623,-0.4596052,0.5558339,0.052639615,-0.01874618,-0.19126673,-0.014419456,0.5421639,-0.0737971,0.31737646,0.21262246,-0.038883287,0.14456859,0.69452,0.05089799,0.30137077,0.07686964,-0.23128945,0.08901063,0.15517603,0.04767711,0.04550423,-0.4841331,0.063039206,-0.088769324,0.0089671295,0.56383055,0.34411776,0.50186926,-0.14373611,-0.44237605,0.11585913,0.015702484,-0.045123745,-1.4730792,0.37077042,0.056180183,0.7649351,0.4979789,0.16796707,0.11980198,0.54350644,-0.19254738,0.17011985,0.2922828,-0.2301163,-0.26355407,0.3372265,-0.5371088,0.37477753,0.009226129,0.1327921,0.10815053,-0.03990734,0.5495706,0.6839319,0.008670315,0.16431211,-0.047651015,-0.30595157,0.15312307,-0.31613302,0.13364492,-0.47598383,-0.23451896,0.78668994,0.3278775,0.24650103,-0.21004918,0.083107516,0.24446082,-0.05409598,0.2508708,-0.03883846,0.16668017,-0.08042336,-0.32719746,-0.23496395,0.59124094,0.19697447,0.1446865,0.0138786,-0.26396307,0.29853874,-0.021620654,-0.007932635,-0.17228287,-0.6059622,0.09218765,-0.604032,-0.22065058,0.32301658,0.026163416,0.17178164,0.13901626,0.14045355,-0.4521444,0.45698628,0.0916996,0.7647262,0.022334564,-0.32439592,-0.12409815,0.3563775,0.26926038,-0.32380468,-0.06558448,-0.25011146,0.16098426,-0.62724966,0.44107106,-0.1603408,-0.2390736,0.26488307,-0.05033427,-0.027468324,0.4200293,-0.24451528,-0.008128361,0.37561074,-0.013064167,-0.25823757,-0.3368313,-0.2879307,0.12430179,0.23632117,0.11161419,-0.23961653,-0.2575668,-0.24305132,0.59555364,-0.035816543,0.2576007,0.33304596,0.14321288,-0.53675723,-0.06968382,0.16684559,0.4736399,-0.05145121,-0.10889673,-0.3109554,-0.38604906,-0.38542423,0.119132906,-0.3128821,0.25485066,0.12081604,-0.30070046,0.9240407,0.25204745,1.4225043,-0.004262316,-0.3797614,0.04735491,0.545349,-0.16378213,0.004929924,-0.38636363,1.1427872,0.62915486,-0.23383333,-0.11720694,-0.4658706,-0.10404582,0.095931076,-0.30975035,-0.25921682,-0.14729008,-0.58225816,-0.5830485,0.29369444,0.36625624,0.009665994,-0.19802316,0.08360412,0.09898653,0.026541227,0.28314546,-0.5123508,-0.16388859,0.2903024,0.27761135,-0.008400933,0.20352969,-0.5469317,0.36794186,-0.60331786,-0.028362194,-0.26705396,0.21469969,-0.06484872,-0.37871805,0.22690175,-0.08292742,0.24143276,-0.50408137,-0.3710983,-0.23572485,0.49456814,0.105781935,0.18787293,0.8214043,-0.310295,0.030347431,-0.05235533,0.5129967,1.0071504,-0.2491017,0.13123904,0.39979133,-0.07041033,-0.5008868,0.323799,-0.40157306,-0.01774749,-0.083556384,-0.38516983,-0.69582856,0.2971452,0.14159232,-0.03660493,0.02806615,-0.71936214,-0.10607012,0.3635,-0.27021936,-0.21513265,-0.3122694,0.11269951,0.6415914,-0.24134466,-0.45920393,0.28137615,0.37384185,-0.1582367,-0.60931385,-0.2186545,-0.3428369,0.29513073,0.3687978,-0.34662044,-0.11699668,0.12807709,-0.4596537,-0.1216233,0.2915062,-0.28983152,-0.024711788,-0.29213095,0.032803316,0.8684495,-0.08887779,0.49729842,-0.5044582,-0.29472515,-0.9767895,-0.26473114,0.5730753,0.26867503,0.02398682,-0.8695137,-0.032590874,-0.20488782,-0.3330075,0.07171164,-0.41240826,0.4703542,0.1574224,0.6771546,-0.23989652,-0.7541341,0.23738617,0.06918396,-0.26065853,-0.35538933,0.4060025,0.16950485,0.9918764,0.10488712,-0.0915499,0.4655447,-0.7045081,-0.04958969,-0.2585672,-0.16627067,-0.5610052,0.03939351 +731,0.5197055,-0.048222788,-0.63859737,-0.2116534,-0.5356265,0.060522366,-0.4249972,0.0035241067,0.29352772,-0.05508206,-0.10322312,0.12535314,-0.036590338,0.29799047,-0.0029994666,-0.77107376,-0.19722739,0.028964804,-0.6886181,0.64439934,-0.5188924,0.4307975,0.099467635,0.34448674,0.2792594,0.6311134,0.3515856,-0.12154889,-0.11192934,-0.22271098,-0.019872995,0.072836444,-0.62244874,0.16043372,-0.1556,-0.29335383,0.09200131,-0.31231025,-0.2711323,-0.68904406,0.20814976,-0.84178984,0.4647564,-0.12046102,-0.0953054,-0.07381402,0.41901362,0.47592297,-0.22305125,0.20319465,0.39394343,-0.36625835,-0.06070818,-0.333526,-0.22030328,-0.5240821,-0.47527298,-0.18401319,-0.722265,-0.35442123,-0.18502258,0.36200097,-0.37447378,-0.15353672,-0.3818381,0.41530555,-0.53836197,0.086667866,0.31201527,-0.3555356,0.14420687,-0.5513845,0.04116733,-0.08484998,0.3555204,0.12209473,-0.048262615,0.40698496,0.23933354,0.23422639,0.44745746,-0.3033169,-0.31355584,-0.34911457,0.27073675,0.24076131,-0.1150069,-0.015620943,-0.3827351,-0.0020471097,0.44812715,0.505585,-0.028774943,-0.226128,0.18085681,-0.16670564,-0.13288471,0.6920818,0.4535113,-0.21787609,-0.34611192,0.28594026,0.6558274,0.39222622,-0.401353,0.120008774,-0.12921953,-0.3998575,-0.12943348,0.3255995,0.00032556852,0.31257057,-0.10993149,-0.13403533,0.92471445,-0.27617756,-0.08749445,-0.034985766,-0.061603125,-0.115937226,-0.3000864,-0.03351093,0.07307192,-0.5905624,0.01635615,-0.24342051,0.6383533,0.06263598,-0.61101073,0.22411436,-0.6016478,0.11731974,0.008813282,0.82084453,0.54256463,0.49586505,0.18831617,0.92308044,-0.16852917,0.30957517,-0.12289667,-0.49431515,0.042045757,-0.16865057,0.072232835,-0.42548788,0.052646384,-0.2475374,0.08033702,-0.033175975,0.44899923,-0.49296027,-0.06175488,0.21572909,0.79174006,-0.31639203,0.023092814,0.6286525,1.1471533,1.1542505,-0.04422262,1.1139598,0.25849405,-0.20119585,-0.18524928,-0.33457372,-0.36979848,0.2076176,0.28334746,-0.2807309,0.33726588,-0.09846368,0.059973013,0.13651837,-0.4072937,-0.1562309,0.0039052328,0.3029223,0.17066303,-0.09852286,-0.40955493,-0.037708394,0.13773571,-0.013770322,0.43566388,0.16858108,-0.35092562,0.4506751,0.1131849,1.1253276,-0.20049238,-0.06738283,0.12725013,0.638746,0.31575802,-0.019294595,0.18288618,0.5062369,0.3892214,-0.06656513,-0.63256866,0.14155029,-0.44184178,-0.5073049,-0.23014809,-0.41363898,-0.10621413,0.078542836,-0.19635348,-0.19811915,-0.026005093,-0.46377614,0.2643336,-2.6189835,-0.08657534,-0.14957665,0.20703273,-0.33580482,-0.10477509,-0.05175761,-0.5158518,0.17195651,0.2120734,0.45671967,-0.48505822,0.552983,0.64531773,-0.7521147,-0.09692513,-0.61402506,-0.011821127,-0.17465903,0.7217159,0.03862993,-0.12872326,-0.27397695,0.24005146,0.8639377,0.18065457,0.20666961,0.46303883,0.36479998,0.10334562,0.594504,0.21288897,0.5522962,-0.22677016,-0.27177918,0.61904925,-0.23403747,0.31689367,-0.328413,-0.017735517,0.56711954,-0.3027692,-0.9960547,-0.5957302,-0.41013852,1.055281,-0.3538875,-0.70056474,0.2410823,0.09044675,-0.11331234,0.2473228,0.48375815,-0.27900073,0.3276989,-0.62463874,0.061312053,-0.10019366,0.21459773,0.03513289,0.14923614,-0.41585165,0.76288474,0.012496587,0.52478707,0.045940813,0.36738962,-0.2308226,-0.4155835,0.24286468,0.84412855,0.33178502,-0.119637236,-0.18390583,-0.2866805,0.025005238,-0.2683616,0.020945247,0.60183376,0.7580307,-0.11307535,0.09704831,0.45333585,-0.21384366,-0.033028543,-0.2108221,-0.2591806,-0.052663542,0.15561226,0.4061436,0.6278728,0.04260601,0.3863144,-0.11916296,0.41991705,0.0021852255,-0.6515452,0.66279185,0.61580575,-0.14014481,-0.19042677,0.6123389,0.6065562,-0.5089439,0.6553604,-0.733357,-0.2832208,0.7267762,-0.14602557,-0.4602166,0.10172649,-0.33300024,0.12209036,-0.6143702,0.30004254,-0.37893286,-0.4974558,-0.27177793,-0.32289034,-2.8897283,0.08559479,-0.1980347,-0.09123495,-0.30045393,-0.052557696,0.2667955,-0.6313133,-0.616001,0.017272206,0.2993213,0.51719034,-0.10434196,0.16466689,-0.28038108,-0.26149917,-0.11076201,0.3235718,-0.007999166,0.32572752,-0.36578533,-0.4060982,-0.016889345,0.09813359,-0.53280085,-0.11901739,-0.5045383,-0.31293714,-0.080149375,-0.57956433,-0.11900857,0.59912956,-0.45999274,0.05219273,-0.19406714,0.19233288,-0.044648413,0.19326086,0.08472489,0.29889545,0.30041477,-0.05937099,0.14297791,-0.23633352,0.6019604,-0.067158416,0.4246186,0.100769825,0.0386495,0.13396902,0.32433647,0.4816204,-0.1441624,1.0647696,0.33826604,-0.13120484,0.16668911,-0.1885714,-0.29628438,-0.8514069,-0.3931887,-0.05473652,-0.455417,-0.59671366,-0.07550495,-0.25324312,-1.0296537,0.6841198,0.10288534,0.5551352,-0.19744284,0.18149446,0.39573872,-0.13496393,-0.05097469,-0.08144402,-0.29718688,-0.50324196,-0.34113282,-0.6856166,-0.45164663,-0.036997985,0.7504997,-0.41328368,-0.035341825,-0.050521135,-0.3625767,0.067474864,0.27914402,0.08371015,0.22739553,0.5088728,0.024158502,-0.57597286,0.3485479,-0.013299036,0.07349236,-0.4376512,0.14662844,0.76860434,-0.67029923,0.49968275,0.36939478,0.14859524,-0.057475507,-0.5692562,-0.07219445,-0.016915027,-0.110360734,0.64132816,0.12661682,-0.60294366,0.58114696,0.104695335,-0.46703592,-0.69914716,0.35046533,-0.15575078,-0.25788423,-0.023531241,0.458634,0.037863698,-0.19460097,-0.25566527,0.24082139,-0.3250247,0.2556957,0.21431394,-0.20513557,0.37407824,-0.058140516,-0.5968545,-0.7870682,0.10817765,-0.6127608,-0.44854486,0.3405476,-0.056578122,-0.1627572,0.26976788,0.036008656,0.49194005,-0.02551386,0.17014946,-0.10231642,-0.31985697,0.5353028,0.46733588,0.42216906,-0.41348046,0.63162196,0.24338083,-0.32613665,0.23979422,0.081663765,0.44640264,-0.16174367,0.46990782,-0.07431626,-0.025014384,0.31333226,0.53755,0.30534393,0.32600278,0.015377204,-0.30459067,0.40499738,-0.056404848,0.2267324,-0.2181152,-0.5605721,-0.06358621,-0.11061117,0.11172,0.5409747,0.32776088,0.46933395,0.18240485,-0.119780056,0.19432203,0.076758854,-0.22195244,-1.2252191,0.41312867,0.3389496,0.850548,0.45126137,0.15892978,-0.11323962,0.6875135,-0.3809442,0.0080279205,0.42432135,0.18924035,-0.37805635,0.61707395,-0.5491756,0.43363056,-0.1173257,-0.08059406,0.1982219,0.19193612,0.3805843,0.97124046,-0.18583088,0.036702927,-0.15544605,-0.17820935,0.054742895,-0.19281435,0.17655714,-0.31120437,-0.6224786,0.8425508,0.35023788,0.44437045,-0.17201549,-0.12987122,0.019160667,-0.19061197,0.33180568,-0.08578567,-0.039380398,0.014813975,-0.4504955,-0.23595819,0.44978312,-0.0040340167,0.1576562,-0.15477525,-0.16104126,0.057929516,-0.108437076,0.1759881,-0.049894776,-0.639093,-0.07322515,-0.020703603,-0.66265315,0.3874169,-0.2883395,0.15481445,0.19822434,-0.020919975,-0.27206448,0.26569402,0.14999726,0.71687794,0.07964425,-0.16760786,-0.29633716,-0.03444797,0.37680656,-0.26046714,0.04225093,-0.18878566,0.15739061,-0.6772057,0.5858518,-0.42315733,-0.5697022,0.14423576,-0.3757639,-0.23119283,0.58130336,-0.01934777,-0.3092818,0.2631625,-0.22051707,-0.49437344,-0.06696662,-0.30177394,0.14420289,0.15196122,-0.30720437,-0.2737567,-0.19491486,-0.022717113,0.41899535,-0.08552253,0.38504377,0.1945354,0.056569636,-0.37363803,0.07053157,0.25892818,0.4957239,0.09861391,0.21161006,-0.12210885,-0.44861645,-0.35474518,0.33217105,-0.22207883,0.17934665,0.1322987,-0.31945798,0.91126984,0.12069264,1.2695149,0.11994768,-0.40944576,0.12470393,0.55749923,-0.16798595,0.03229607,-0.4061068,0.93764764,0.73631924,-0.24372362,-0.06135348,-0.5938247,-0.1128675,0.25707242,-0.44878143,-0.06188701,-0.11605896,-0.58172023,-0.42527926,0.26253477,0.22162701,0.116364524,-0.10081741,-0.08307899,0.07734437,0.22893684,0.5770891,-0.5852082,-0.20202678,0.22038203,0.064828716,-0.18932088,0.20755579,-0.4149543,0.45800218,-0.6932067,0.12777556,-0.37414762,0.13301152,-0.3925998,-0.3522483,0.15930255,-0.13347429,0.26279113,-0.37507918,-0.401706,-0.14193088,0.3938444,0.19436897,0.12215748,0.7617327,-0.30413997,0.18853383,-0.022668425,0.48571664,1.3044194,-0.36687124,0.061382,0.26599315,-0.47973067,-0.64657044,0.23202787,-0.49442163,-0.10554349,-0.08413899,-0.72410756,-0.2765604,0.35715276,-0.03807675,-0.03616861,0.18628651,-0.5540792,-0.057827696,0.2992473,-0.14150284,-0.30469337,-0.13664788,0.5144417,0.7010062,-0.29619807,-0.5549993,0.048323113,0.36438486,-0.30775577,-0.58455485,-0.00719349,-0.06547228,0.5170483,0.019026216,-0.28069016,-0.013242599,0.22395156,-0.51209414,0.04706765,0.434241,-0.37195817,-0.019252324,-0.14857486,0.06624504,0.5884003,-0.24484149,-0.22383918,-0.6015269,-0.3794025,-0.97472584,-0.41156197,-0.13212581,0.15008458,-0.052467134,-0.43494567,-0.03561036,-0.39423046,0.01223585,0.10499375,-0.73431647,0.40437204,0.17195155,0.6323232,-0.4074563,-1.092459,0.1556792,0.19398665,-0.013494615,-0.8012236,0.71823174,-0.16452803,0.6244165,0.093893856,-0.141359,-0.018281957,-0.5477262,0.20390616,-0.34888917,-0.23117876,-0.9714276,0.12698461 +732,0.30035493,-0.11809184,-0.4159987,-0.2716634,-0.2866388,0.036165744,-0.2941963,0.28098148,0.22664814,-0.19695385,-0.17678106,-0.2638447,-0.0068976944,0.38785848,-0.1375585,-0.37689313,-0.2788577,0.040159274,-0.76322895,0.5109687,-0.52005666,0.17671338,0.108864605,0.41573787,0.22843218,0.4258769,0.33145848,-0.167362,0.013371468,-0.06860163,0.0019816202,0.07687448,-0.47538495,0.036906064,-0.2212648,-0.267834,0.055944927,-0.5609022,-0.20398687,-0.64184105,0.29850507,-0.8148857,0.5098056,0.039753202,-0.040643,-0.04374134,0.4542927,0.39010724,-0.28978205,-0.054000217,0.2751611,-0.12925424,-0.013558149,-0.112046,-0.017957082,-0.34394678,-0.48251247,-0.0731346,-0.5219303,-0.36699295,-0.10890126,0.20650294,-0.29912797,0.0844893,-0.00046232768,0.40118632,-0.4154224,-0.09692324,0.29553205,-0.24822533,0.37475234,-0.48097256,-0.09123441,-0.09398973,0.5366587,-0.050499994,-0.06870703,0.24030216,0.15866616,0.37646046,0.083027504,-0.1592305,-0.20157732,-0.22083218,0.009084514,0.49368498,-0.059649944,-0.25197086,-0.11026347,0.008033807,0.24886346,0.29340845,-0.0019150674,-0.17410564,-0.0032013555,-0.11758012,-0.24688436,0.51506394,0.46329013,-0.24215399,-0.2539529,0.2900359,0.5512545,0.28312683,-0.24839534,0.0889694,0.10117962,-0.47156376,-0.059389837,0.10065425,-0.10316352,0.38883844,-0.101916626,0.26137236,0.7571012,0.019537073,0.05114078,-0.069721095,-0.11158508,-0.16206013,-0.14176278,-0.13515925,0.11146825,-0.46526742,-0.0109079955,-0.21022268,0.6228982,0.08188575,-0.66413736,0.3029285,-0.64868414,0.14514394,-0.064502284,0.6135562,0.6523814,0.33743852,0.41062632,0.7674794,-0.22005498,0.16378066,-0.023804171,-0.3219393,0.13361248,-0.3135626,0.102789745,-0.5180277,0.0866129,-0.019629518,0.09217308,0.036513235,0.2633585,-0.4241461,-0.05099656,0.30324563,0.7297907,-0.22757967,0.013145238,0.7598061,1.0977889,0.9030322,0.06296901,1.0127466,0.22083203,-0.3122937,0.18650964,-0.28302076,-0.75564355,0.26264656,0.38130498,-0.0772313,0.37156412,-0.08179905,-0.014512547,0.24765821,-0.4902318,0.24259874,0.083420254,0.17017958,0.27552918,-0.05633735,-0.34549642,-0.1717345,0.038145144,-0.041510113,0.22290793,0.07837285,-0.17920081,0.3147153,-0.094435014,1.2412459,-0.00011648451,0.07561225,0.22194818,0.64922506,0.15174921,-0.13056591,-0.14781228,0.36881274,0.301719,0.10443817,-0.6058055,0.37104735,-0.24127285,-0.37949032,-0.20262848,-0.37598085,-0.22800303,0.062409665,-0.3741303,-0.13797939,-0.05112241,-0.33885834,0.2892334,-3.0762293,-0.24678007,-0.25832847,0.28266177,-0.25429773,-0.003177977,-0.1274955,-0.46964145,0.25320187,0.44755417,0.41070274,-0.6139097,0.587402,0.50418395,-0.5767931,-0.13817404,-0.60814935,-0.08107465,-0.052153733,0.5125739,0.099559076,-0.07425316,-0.119727716,0.41023207,0.5775781,0.15512596,0.074668966,0.38916424,0.4509937,0.12508523,0.61792195,-0.052046973,0.35896853,-0.34230417,-0.046081662,0.36765814,-0.36146116,0.08979827,-0.11700572,0.08563824,0.48460874,-0.48614216,-0.904556,-0.63242376,-0.30030444,1.048061,-0.18704227,-0.3171801,0.22292389,-0.324439,-0.08165907,0.0040441835,0.75911057,-0.12263918,0.20617819,-0.7812239,0.04311642,-0.13890597,0.17808388,0.03536875,-0.039864004,-0.41893452,0.63484573,-0.025429975,0.5913387,0.20953175,0.14676669,-0.30334845,-0.39122176,0.22941709,0.6134585,0.17332764,0.040356047,-0.16467948,-0.11520749,-0.12308011,-0.16707988,-0.040481146,0.43180853,0.6389373,-0.023530956,0.31142697,0.32982343,-0.17904009,-0.101697505,-0.03759045,-0.10942041,-0.008194432,-0.014277114,0.42802358,0.7341689,-0.16441451,0.39478213,-0.13065019,0.388941,-0.15400144,-0.4174841,0.5898906,0.35428327,-0.1267165,-0.075574055,0.4540605,0.5701845,-0.40184242,0.43576762,-0.6187225,-0.31640244,0.56947386,-0.12065788,-0.48731643,0.28711846,-0.24639232,0.121609025,-0.8539758,0.27871007,-0.25516874,-0.26075524,-0.3867576,-0.16748299,-3.2563517,0.07256072,-0.14432155,-0.2942681,-0.24092317,-0.040356636,0.32604295,-0.5600007,-0.64025027,0.08614312,0.23320298,0.6459103,-0.067703456,0.13582957,-0.32423338,-0.06231751,-0.2552323,0.24431899,0.022579445,0.3169115,-0.1482484,-0.39176723,-0.044443876,-0.14192979,-0.49913263,0.11399046,-0.30941173,-0.45250437,-0.04673692,-0.45247778,-0.3439569,0.54285765,-0.23797964,-0.002862513,-0.2978448,-0.00830519,-0.10404665,0.30202565,0.12948874,0.08258343,0.076685704,-0.0050577563,0.038937535,-0.22462974,0.44428518,0.0023848393,0.31208983,0.16058062,0.0657065,0.2194821,0.43131495,0.4643702,-0.07372112,0.93479574,0.38760582,-0.0020076616,0.18716672,-0.26463956,-0.13499367,-0.3911372,-0.16041319,0.004687982,-0.34320793,-0.53552234,-0.001618066,-0.2719969,-0.73559386,0.58011657,-0.08900004,0.2136384,-0.016376961,0.14896436,0.26836446,-0.18813215,0.019973282,0.081477486,-0.060104396,-0.43326664,-0.14434643,-0.57490253,-0.40574282,-0.13042022,0.79146826,-0.27147684,-0.026863307,-0.05855522,-0.35247713,0.0638807,0.07525168,0.16355903,0.42977116,0.44006896,0.017842485,-0.68960285,0.3094,-0.32065398,-0.10285287,-0.47812325,-0.03375758,0.5696556,-0.6385269,0.3506339,0.33149862,0.08885784,-0.1954498,-0.3596724,-0.09103044,-0.18044142,-0.21156655,0.40049392,0.04063714,-0.77511895,0.52810025,0.12685354,-0.38223958,-0.6724521,0.35518903,-0.06658421,-0.33386487,0.0045628375,0.21732858,0.08781905,-0.041442513,-0.2885789,0.1859365,-0.2836246,0.2578235,0.03546514,-0.0347211,0.50436497,-0.022385415,-0.24671762,-0.51225406,-0.026210103,-0.5056398,-0.2629431,0.33181778,0.039257474,0.026473012,0.1927524,-0.014747858,0.29286128,-0.106870994,0.019748459,-0.0068831933,-0.2117299,0.14859591,0.41526684,0.39163184,-0.4725655,0.56108713,0.042566907,-0.13391875,0.14511831,-0.10303114,0.2962874,-0.028428605,0.3392758,-0.10070914,-0.17852703,0.42354387,0.6350779,0.21397354,0.30824375,0.17052762,-0.065975145,0.54707664,-0.037120786,0.08172311,-0.11377245,-0.44786796,-0.018675115,-0.28116292,0.16641161,0.4020707,0.20261881,0.33174726,-0.0068461723,-0.20035665,0.031221423,0.1739624,-0.24922241,-1.1434567,0.31451705,0.25188205,0.82704216,0.44070843,-0.09045101,0.010040445,0.8675801,-0.19420457,-0.071912654,0.38491017,0.07758568,-0.48133823,0.7017098,-0.49683157,0.5425177,-0.11407174,-0.19385602,0.07691084,0.08154558,0.26780534,0.68180245,-0.15206374,0.0016232098,0.028575126,-0.23004715,0.05156677,-0.21716364,0.03996629,-0.48169142,-0.25037763,0.6514778,0.29930612,0.29123253,-0.15150645,0.02070455,-0.029745694,-0.09163005,0.23404738,-0.13509646,-0.14369114,0.04830129,-0.6710782,-0.19923863,0.50624543,0.097935975,0.23445769,-0.07721543,-0.36671862,-0.034409355,-0.18722892,0.009571399,-0.13709648,-0.6511747,-0.021343691,-0.054386787,-0.47640854,0.5012201,-0.37588575,0.19365717,0.18577358,-0.063934416,-0.20022199,0.25714648,0.085054316,0.67920345,-0.027766194,-0.19372347,-0.24184707,-0.098254494,0.20078447,-0.284712,-0.08061123,-0.44829965,0.17195596,-0.5618874,0.7209055,-0.08799849,-0.4348009,0.16634737,-0.2567515,0.052156202,0.57170135,-0.06877563,-0.078750424,-3.5179513e-05,-0.16465662,-0.25051898,-0.013671279,-0.43299022,0.2742056,0.29034895,-0.11555624,-0.117162034,-0.09758551,-0.11260842,0.5808383,-0.11028483,0.5108792,0.23196211,0.1225604,-0.21484415,0.09527261,0.11360991,0.48097536,0.25778374,-0.092638746,-0.31248263,-0.36055464,-0.18813434,0.328013,-0.09486502,0.16149613,0.077983454,-0.29567248,0.74263734,-0.044189777,1.0363333,0.11429068,-0.29470873,0.10550898,0.42475447,0.05924114,0.030388903,-0.41430897,0.7138745,0.52976376,-0.17036955,-0.099648125,-0.38988128,-0.048659377,0.2719659,-0.22290508,-0.077410996,-0.10989065,-0.5311307,-0.37125203,0.2052765,0.08363713,0.1568375,-0.08643885,0.046683274,-0.08504285,0.11503854,0.350956,-0.5273433,-0.13305147,0.24545656,0.14231674,-0.11502323,0.023083525,-0.4386677,0.48573372,-0.66628927,0.1329116,-0.38855615,0.11485551,-0.30963635,-0.29778114,0.09158746,0.07830316,0.39079434,-0.18092252,-0.39641777,-0.05850133,0.4276093,0.11687499,0.19624509,0.56421137,-0.20281148,0.06661625,0.036636464,0.56543267,1.0682606,-0.40374067,0.11926048,0.15936805,-0.35452673,-0.521648,0.34105107,-0.37693837,0.016426532,0.027188053,-0.24784592,-0.36254972,0.18471472,0.19567527,0.15124068,-0.07698887,-0.494817,-0.38197723,0.2752221,-0.23367535,-0.29326358,-0.33892503,0.116687186,0.5592479,-0.14026347,-0.21671322,0.111064374,0.41695222,-0.264294,-0.45632404,0.015142009,-0.24678068,0.40810776,0.01753513,-0.24781497,-0.18392079,0.17427394,-0.48746672,0.24828966,0.22571622,-0.41119552,0.0037418348,-0.2527857,-0.118797354,0.9093477,-0.21322788,-0.09941498,-0.5025113,-0.48674282,-0.9461485,-0.35476658,0.30011436,0.06363552,-0.094983555,-0.26981995,0.038678613,-0.034593817,-0.2068573,0.116142415,-0.58232445,0.27035433,0.06387805,0.53585565,-0.21967106,-0.84587634,0.057159323,0.023328325,-0.1387414,-0.57608825,0.59982616,0.08328576,0.7054062,0.019992009,0.057012964,0.028481502,-0.3221775,0.13741562,-0.29932407,-0.1327024,-0.71500957,0.14986242 +733,0.30398136,-0.39187902,-0.4141622,-0.14616463,-0.22436616,0.024803162,-0.10991318,0.36059633,0.12539342,-0.3614828,0.033037465,-0.15297236,-0.067473896,0.46375614,-0.14449224,-0.46438196,-0.096097626,0.16920808,-0.5294794,0.5737235,-0.39998585,0.27712014,0.14126904,0.29913405,0.10500741,0.18332376,0.06081019,0.024213556,0.1436549,-0.097526856,-0.097716495,0.31461474,-0.64239985,0.27339894,-0.080694005,-0.35422748,0.14381473,-0.2705072,-0.44896084,-0.7296851,0.34153542,-0.9603845,0.5629898,-0.03621701,-0.3778006,0.21650805,0.06799147,0.2530714,-0.30634397,-0.10632143,0.22073725,0.03396899,-0.005794708,-0.2172562,-0.113422684,-0.4124134,-0.53691113,-0.07865093,-0.658779,-0.30531257,-0.16274606,0.16806783,-0.30509892,0.14183882,-0.18740024,0.22323386,-0.52033937,-0.05175588,0.108520344,-0.18929315,0.30680758,-0.5944517,0.024763187,-0.12870125,-0.10157995,-0.022573212,-0.15053786,0.44515923,0.13805206,0.6073046,-0.05407806,-0.24471018,-0.19339943,-0.0018293688,0.09936958,0.4995527,-0.21808,-0.36325017,-0.30917436,0.099682204,0.45947388,0.17686756,0.12538323,-0.3988156,0.02830729,0.08451432,-0.23414294,0.42131826,0.47625142,-0.37119243,-0.34214836,0.27109915,0.59903055,0.04103134,-0.14504297,0.10645928,-0.04900426,-0.34439462,-0.127687,0.053500373,-0.42170244,0.32713684,-0.073198594,-0.006018315,0.6446174,-0.24434277,0.03852922,0.010044603,0.006062182,-0.13187091,-0.32170385,-0.31448594,0.2830481,-0.60246575,0.011523698,-0.17615642,0.7407188,0.0298644,-0.7400526,0.28871012,-0.48458603,0.0808833,-0.2282878,0.5905718,0.7029271,0.5790296,0.20691052,0.8276189,-0.5958942,0.089389905,-0.1464471,-0.22758915,0.21386531,-0.27880603,-0.15164076,-0.5352573,0.025750687,-0.11289751,-0.13226718,-0.12760869,0.4492479,-0.61047494,-0.032692082,0.19366752,0.7525711,-0.41293257,0.095918484,0.5592993,1.1624308,0.8852683,0.020155653,1.0638154,0.29589134,-0.17795017,0.33893722,-0.18689765,-0.7918325,0.2676414,0.54821545,0.1454743,0.28284648,-0.027232736,0.042063158,0.2937119,-0.39667234,0.0331512,-0.21762967,0.37078694,-0.014139013,-0.029090133,-0.6318773,-0.0882302,0.12933423,0.034928963,-0.08558738,0.2762145,-0.302177,0.34526494,0.15161373,1.6311041,-0.075279124,0.120005146,0.13515289,0.50287265,0.2536648,-0.094654515,0.031490557,0.37474364,0.376475,0.093071565,-0.6912777,0.18932894,-0.22975442,-0.60656625,-0.24176535,-0.39717293,0.10625402,-0.19057943,-0.394754,-0.31431314,0.0780226,-0.274814,0.36542824,-2.5025342,-0.13698164,-0.17503607,0.29664963,-0.33995518,-0.3280129,0.108333744,-0.3885754,0.2856745,0.40332645,0.43955508,-0.53491455,0.43698066,0.5211498,-0.48045564,0.031645842,-0.52030575,-0.19402596,-0.11983595,0.50026083,0.10687325,-0.18117058,-0.14553383,0.27721542,0.5411418,0.02653956,0.19262914,0.35884312,0.29290587,0.02679901,0.4959263,0.014900216,0.42524981,-0.26715058,-0.15598263,0.4795052,-0.18435076,0.17875662,-0.018929511,0.19037852,0.45456654,-0.41763765,-0.9194093,-0.65546024,-0.08263328,1.2739352,-0.42940703,-0.6671161,0.40608162,-0.2800075,-0.15021415,-0.15698382,0.21050152,-0.108272396,0.058232088,-0.8703822,0.09132037,-0.062499147,0.3395443,-0.049513023,-0.01761954,-0.3551933,0.68161243,-0.04106434,0.5172587,0.17469113,0.09755586,-0.31928143,-0.54208463,0.12281486,0.9405202,0.45661083,0.08057766,-0.06897448,-0.26913434,-0.08317541,-0.03596117,0.09538519,0.2437253,0.88270104,-0.034524184,0.1015242,0.25766987,-0.18981512,-0.023127168,-0.14267752,-0.39517313,0.04727759,0.15137449,0.51948774,0.4606625,-0.19670825,0.41938347,-0.11887344,0.3936376,0.046146896,-0.5776009,0.25230375,0.97220504,-0.1434714,-0.308513,0.7579953,0.62991947,-0.39340454,0.5548095,-0.74931496,-0.3126615,0.40744242,-0.18022953,-0.39127034,0.14085095,-0.2906975,0.25078645,-0.90162385,0.23556556,-0.2393091,-0.4633961,-0.4441836,-0.24635236,-3.214169,0.22062278,-0.19955884,-0.22409438,0.022875939,-0.07559364,0.46089426,-0.57870656,-0.5179337,0.093205385,0.11522401,0.47934884,0.038380615,0.05594664,-0.2114075,-0.109094076,-0.27824932,0.26827225,0.1879042,0.17190209,-0.04504723,-0.57745224,-0.15760405,-0.12326111,-0.4317127,0.0709692,-0.6369344,-0.57432216,-0.18598196,-0.6478422,-0.18275289,0.5658981,-0.06329959,-0.037523866,-0.18166222,-0.035004433,-0.0366858,0.25422886,0.044280816,0.10935148,0.13736673,-0.039653055,0.014110991,-0.35914087,0.24963264,0.029427385,0.34753013,0.22657335,-0.26123783,0.06942556,0.6657101,0.49562922,-0.010192684,0.76792175,0.6284853,-0.23623072,0.30302042,-0.12095298,-0.40355515,-0.68557864,-0.2466863,-0.1309832,-0.35563794,-0.39393324,0.039459825,-0.41645876,-0.72515386,0.7209064,-0.014865349,0.30410808,0.017679999,0.21753839,0.41611233,-0.14115033,-0.034383755,-0.25082585,-0.26743388,-0.45248237,-0.3604205,-0.79353875,-0.43627542,0.1269375,1.2184027,-0.13777499,0.016329246,0.06968241,-0.06407306,0.020883843,0.04414944,0.027732978,0.39881834,0.43617654,0.007321711,-0.6516774,0.5097988,0.096949145,0.057306536,-0.471523,0.16436994,0.5127238,-0.62471324,0.33742455,0.21763992,0.15101722,-0.046347566,-0.5848638,-0.1338644,0.0068591195,-0.3428848,0.6288505,0.17990127,-0.84114426,0.4835594,0.40003386,-0.4696943,-0.6378605,0.3184184,-0.13269837,-0.1570047,-0.24152268,0.28140858,-0.030141788,0.12590858,-0.15477546,0.19180869,-0.5065113,0.28113556,0.3056927,-0.0941351,0.3832364,-0.27217188,-0.109807804,-0.83450073,0.06130949,-0.5177175,-0.34540123,0.31610677,-0.043673236,-0.16593535,0.3044179,0.05001569,0.5818167,-0.19001436,0.09517195,-0.0044808793,-0.45139295,0.4639193,0.551144,0.47150224,-0.36971134,0.47897926,0.095158376,-0.21909621,-0.26489657,-0.07941586,0.47016767,0.08633657,0.20226865,-0.043896683,-0.11411048,0.47271726,0.9313165,0.19288075,0.39121374,0.0005117144,-0.100534484,0.21627215,0.07304063,0.029993173,-0.06279337,-0.5126246,0.023050938,0.038640756,0.21330471,0.50563204,0.25806108,0.26545545,-0.08803271,-0.19145967,0.03487717,0.15729341,-0.06852476,-1.1752167,0.13676636,0.15508027,0.6092439,0.6004362,0.16284037,0.08726055,0.6457228,-0.20398907,-0.07589793,0.35717955,0.020242682,-0.5620604,0.7205129,-0.6572956,0.43070486,-0.00941386,0.041846786,0.046877097,0.16016081,0.4915984,0.9207117,-0.06025846,-0.02791351,-0.039139103,-0.25573066,0.19819142,-0.384008,0.12687899,-0.28410882,-0.2788771,0.69310534,0.39806882,0.40009174,-0.060392287,-0.067285396,0.12660411,-0.11505818,0.25427446,-0.034925703,-0.034910306,-0.12201496,-0.5698153,-0.16302998,0.57089204,0.27263436,0.06486051,-0.06186978,-0.27247512,0.22462997,-0.2988203,-0.25674292,0.06889009,-0.7123634,-0.024268776,-0.18128864,-0.40804768,0.46537876,-0.091709256,-0.00091576576,0.027827855,-0.0858335,-0.3793705,-0.0020805767,0.12585457,0.73178643,0.0717488,-0.16643612,-0.28614658,-0.118635125,0.007931428,-0.2224152,0.039781775,-0.24600251,-0.025660643,-0.7274281,0.49796405,-0.15993643,-0.47801596,0.23879825,-0.21874261,0.014554603,0.37084123,-0.075848706,-0.19947015,-0.2294148,-0.04420412,-0.2787174,-0.46425796,-0.1590828,0.17336679,0.02095944,0.0027837413,-0.093058065,-0.12104328,-0.02876785,0.6528768,-0.023217235,0.29284927,0.2881208,0.04850216,-0.46922997,0.07801406,0.24595082,0.4351559,-0.20779857,0.15519007,-0.10588573,-0.45193294,-0.28885725,0.038101584,-0.22915986,0.45804468,0.015485878,-0.4600518,0.8990274,0.09771818,1.2638247,-0.11917382,-0.3374758,0.041012228,0.5119369,-0.034687944,0.04545138,-0.37698618,0.8434811,0.68175375,0.008175994,-0.29696327,-0.5922747,-0.24273674,0.23725832,-0.3184998,-0.06543378,-0.11368215,-0.7526347,-0.37564558,0.2786868,0.3764145,0.14596693,-0.02483766,0.15320528,0.114698164,0.0030622035,0.28964105,-0.4336806,-0.088979624,0.29779953,0.25024098,0.06890782,0.0227562,-0.5082938,0.31037423,-0.48901156,0.20582916,-0.33130544,0.0153542,-0.14526126,-0.22653447,0.11478865,-0.009807638,0.28125712,-0.22582886,-0.36657557,-0.20078361,0.6926349,0.15124755,0.10283758,0.6876206,-0.3579484,0.2316049,0.034176204,0.344835,1.0850906,-0.21872935,-0.08362981,0.07470165,-0.4031219,-0.7799187,0.43517545,-0.16465016,0.14892922,0.21673281,-0.37252718,-0.4327623,0.27390847,0.13223375,-0.02954203,0.02317286,-0.49663517,-0.18709655,0.33175293,-0.31496128,-0.16420701,-0.244761,0.1634287,0.62734383,-0.3716298,-0.24472602,0.20621313,0.3652512,-0.29122618,-0.5927849,-0.09632916,-0.38922408,0.2892088,-0.029919872,-0.4069069,0.05339351,0.107309416,-0.34139973,-0.0146005405,0.32861972,-0.32843325,0.10517313,-0.33589795,0.109901465,0.84634686,-0.1131345,-0.26802057,-0.7536851,-0.5180624,-1.0036561,-0.29106537,0.48746333,0.27386567,0.05956914,-0.59035885,0.05575775,-0.24214026,0.014015598,0.029248282,-0.48125196,0.47092873,0.12299421,0.59264964,-0.094622254,-0.69739014,0.30000407,0.18457016,0.12570728,-0.47742394,0.6518,-0.12072502,0.8594946,0.027435286,0.05629784,0.18520942,-0.54539186,0.09461425,-0.2825027,-0.33011743,-0.6793348,-0.021760583 +734,0.37550026,0.13050608,-0.57758987,-0.19074376,-0.3422997,-0.058935132,-0.31070575,0.14788334,0.2388876,-0.5302784,0.14000109,-0.14946128,0.07979722,0.14768584,-0.1572769,-0.709128,0.09350567,0.1972173,-0.3991876,0.61325586,-0.53582525,0.2815165,0.24056087,0.0964259,-0.3110822,0.2733162,0.28259805,-0.4491167,0.042669415,-0.2191105,-0.04186294,0.19628148,-0.7365516,0.3859612,-0.039603133,-0.15793978,0.23958024,-0.2950818,-0.32713333,-0.7069325,0.08171161,-0.7686529,0.51965725,0.16830198,-0.2784191,0.18738699,0.077133544,0.09163933,-0.19545837,0.25843272,0.283134,-0.2779657,-0.42726642,-0.30738664,-0.21923673,-0.5412345,-0.5878374,-0.16293809,-0.6877162,-0.03962096,-0.41891482,0.20613186,-0.37466004,-0.10347841,-0.14265725,0.3765731,-0.4983735,0.133005,0.081068076,-0.19729145,0.40714815,-0.4881684,0.10457044,-0.06697204,0.2211705,0.07324046,-0.30573112,0.2274275,0.30834022,0.51628476,0.06078533,-0.27475867,-0.32444948,-0.15423095,0.2320685,0.600526,-0.19409312,-0.1948007,-0.114228085,-0.059360165,0.20747907,0.35789227,-0.25056562,-0.4792936,-0.06747974,-0.09144335,-0.40367183,0.4541466,0.57116455,-0.38882834,-0.076716356,0.38491482,0.30995458,0.023212533,-0.0995245,0.16828553,-0.10550893,-0.5924838,-0.21552685,0.25479656,-0.018937664,0.44908497,-0.12295558,0.23025937,0.7400142,-0.1137022,-0.16956724,-0.07140674,-0.115951575,0.17701554,-0.09374665,-0.1336677,0.31464761,-0.7067751,-0.10574288,-0.38446403,0.83809346,-0.12298006,-0.9629582,0.3770449,-0.5490091,-0.0146725625,-0.1756715,0.8034822,0.66070193,0.7539925,0.10705968,0.78173786,-0.5595303,0.10229965,-0.020958718,-0.57084024,0.42733055,0.06730737,0.17582059,-0.39772436,-0.22982986,0.15007123,-0.0007744602,-0.014511211,0.67416847,-0.3545405,-0.1300563,0.012965219,0.75300074,-0.41174415,-0.18112163,0.55125815,0.9998559,0.66535395,0.2010795,1.2474476,0.2109669,-0.04787717,-0.08912829,-0.18529913,-0.8668213,0.23040536,0.3035876,0.2805939,0.04823052,0.06517693,-0.1565436,0.22041167,-0.23485228,-0.24055764,-0.24397482,0.38902646,-0.17106366,-0.21584927,-0.262942,-0.25120115,0.10475214,0.16911149,0.14413004,0.20709081,-0.048720572,0.3829125,0.15165843,1.4002264,-0.03377149,0.24809039,0.11254054,0.27239457,0.36043134,0.11370375,-0.093987085,0.46227175,0.3699674,0.12815489,-0.5120321,0.10525668,-0.05635907,-0.46457842,-0.09972894,-0.30788913,-0.0037157536,-0.14188167,-0.27684543,-0.1285543,0.07182603,-0.5473256,0.5624991,-2.5868344,-0.072338186,-0.043557126,0.43356118,-0.06560515,-0.1939708,-0.16645849,-0.51913327,0.6198823,0.39005885,0.5672037,-0.5826984,0.39764804,0.52736384,-0.39896083,-0.12933473,-0.7506856,0.044339053,-0.15361652,0.28214732,0.010190955,-0.2538328,0.035076447,-0.006609891,0.556222,-0.08378029,0.20117526,0.36264116,0.38427544,0.09026037,0.47374263,-0.08080799,0.4357326,-0.19018541,-0.14776981,0.20809829,-0.072293,0.23835015,-0.34944016,0.08699341,0.3459806,-0.43531317,-0.85825604,-0.4765595,-0.18836223,0.97267675,-0.4897878,-0.5422405,0.39344302,0.035501175,-0.21214029,0.027663205,0.55663073,-0.1255823,0.1378437,-0.70133644,0.09717094,0.026750786,0.31972095,0.05359838,0.05016301,-0.44965023,0.6102802,-0.07411142,0.6231581,0.49823475,0.09720073,-0.18318368,-0.46486282,0.2010694,0.97752094,0.17309238,0.16449758,-0.24764875,-0.17148617,-0.06270883,-0.14687519,-0.012797533,0.50253886,0.80688536,-0.10881354,0.17190816,0.38610056,-0.14822957,-0.028980078,-0.15630898,-0.46013847,-0.097175285,-0.104776226,0.46766907,0.65126103,-0.16453576,0.4316862,0.00856962,0.3896778,0.024601262,-0.52849615,0.5230273,0.82381105,-0.18368675,-0.16063257,0.584262,0.51293844,-0.09194446,0.51422554,-0.480284,-0.46268123,0.42494917,-0.12186122,-0.6368743,0.30572286,-0.4203309,0.1408196,-0.80316514,0.43308786,-0.3175921,-0.6315122,-0.45292172,-0.035043176,-3.8793585,0.17675476,-0.31849045,-0.04511931,-0.14654692,0.031129241,0.27288222,-0.36459154,-0.4289174,0.15127082,0.2844999,0.46930665,-0.21020176,0.05912543,-0.3595519,-0.13217202,-0.12819684,0.31434542,0.15403771,0.11235467,-0.15440682,-0.46131063,-0.049699843,-0.07720219,-0.3644938,0.01758546,-0.3866941,-0.45112425,-0.096990034,-0.5984779,-0.37869674,0.70785844,-0.4996945,-0.0895108,-0.16665839,0.057785954,-0.043898456,0.4008619,-0.046112087,0.19218019,-0.2058742,-0.071125045,-0.23782137,-0.29946533,0.38621736,-0.055975623,0.17058276,0.43457815,-0.09855539,-0.095218815,0.5673008,0.37791044,0.016764283,0.8696353,0.3248686,-0.13584569,0.24095085,-0.25855327,-0.23257561,-0.7949902,-0.27745634,-0.25193974,-0.5026487,-0.39991826,-0.009522378,-0.42343387,-0.7883729,0.6114926,0.06445449,-0.09257363,0.02713838,0.33781937,0.29457685,-0.049239747,-0.045655813,-0.23550291,-0.21374992,-0.52193594,-0.20396395,-0.7680574,-0.47680452,0.19029872,1.025182,-0.29538855,-0.17452356,0.05001995,-0.021474898,-0.054884885,0.19896431,0.18127373,0.34128046,0.36093563,0.14214446,-0.79836404,0.610396,-0.22395317,-0.14973293,-0.7236825,0.051886,0.60682195,-0.9527706,0.42286706,0.53618556,0.078112654,0.1263733,-0.699016,-0.43549588,0.09421045,-0.20106183,0.45115235,0.026216583,-1.0275723,0.6020228,0.29453036,-0.25197148,-0.79665893,0.41283098,-0.083688125,-0.32901415,0.23252858,0.40262666,0.0657393,0.028264197,-0.27545944,0.10537141,-0.46726042,0.4752639,0.095594026,-0.21420968,0.5673538,-0.09691407,-0.15967938,-0.8364026,-0.13791236,-0.53807575,-0.19551054,0.3135109,-0.098287806,0.042210132,0.061122265,0.03380031,0.49527946,-0.32645845,0.1457505,-0.1262308,-0.24278821,0.36793417,0.5022333,0.39432696,-0.38081318,0.6774745,-0.0894094,-0.13658196,-0.23559621,0.2717138,0.40372562,0.10149781,0.39050344,-0.028368099,-0.100911856,0.2512624,0.99161667,0.2230915,0.42686233,0.21340366,-0.07286104,0.48736525,0.053156164,0.14267096,-0.03097831,-0.50250584,-0.17185213,-0.21652988,0.13460572,0.4962077,0.2092401,0.5266767,-0.18314,-0.023200909,-0.031814665,0.40077838,0.29938737,-0.77611166,0.4344928,0.2596435,0.42562833,0.6562604,0.12890956,0.045979787,0.64455646,-0.15213561,0.15916643,0.16351695,-0.0044847387,-0.36211905,0.5063288,-0.703196,0.24024503,-0.22924863,0.004344446,0.24309042,0.0052459156,0.3864821,0.9781385,0.024459822,0.13728786,0.013347268,-0.105961956,0.16936408,-0.33451346,-0.046377447,-0.27721828,-0.34738728,0.7690085,0.33773503,0.4495794,-0.12694325,-0.13524365,0.25302544,-0.08398722,0.20383617,0.029658457,-0.043955386,-0.042964008,-0.5115796,-0.27218357,0.7054745,0.045334693,-0.012335107,0.15659395,0.025677357,0.39807558,-0.28989774,-0.14462002,-0.17000338,-0.5538364,-0.025754366,-0.31802553,-0.49347502,0.6461728,-0.24274376,0.25522605,0.105521634,0.065413795,-0.26951647,0.16148548,0.25431797,0.6045495,0.1050284,-0.30536863,-0.24218409,-0.2014672,0.2455304,-0.3590405,-0.16997544,-0.12604041,0.025416894,-0.6911489,0.21900995,-0.35938305,-0.27910253,0.13646185,-0.15858018,-0.14172576,0.44103688,-0.03488105,-0.2435907,0.27306086,-0.13540967,-0.25969076,-0.31307966,-0.27803543,0.04734207,0.039471388,-0.00671927,-0.03639404,-0.120201,-0.04291898,0.19314174,0.1165992,0.1226986,0.15548189,0.34249267,-0.27001756,-0.0712264,0.25990677,0.6073659,-0.040709145,0.09343258,-0.23959449,-0.3881561,-0.2682733,-0.12395095,-0.050825804,0.2576833,0.15305717,-0.3865436,0.8910573,-0.030785827,0.7903204,0.044493884,-0.31533185,0.17544952,0.460942,0.053678624,0.022604981,-0.26028386,1.0486639,0.7563478,-0.06651847,-0.27243045,-0.5095444,-0.06369687,0.21597722,-0.28262895,-0.22339939,-0.047089197,-0.6344925,-0.17475107,0.2305137,0.18983881,0.014446608,-0.09507402,-0.079198144,0.118394814,0.22024561,0.12687458,-0.5868793,0.08941119,0.30041185,0.21938515,0.2069101,0.19304557,-0.27078256,0.30870646,-0.378884,0.1644052,-0.4158101,-0.02983981,-0.078082,-0.109062396,0.13887306,-0.05070514,0.32090095,-0.015265865,-0.34411377,-0.14871241,0.47470012,0.28713784,0.3622932,0.8270651,-0.20837307,-0.047252655,-0.057420544,0.60836226,1.2209538,-0.3315229,-0.10239307,0.53768414,-0.43971372,-0.5322159,0.24081172,-0.40719095,-0.029645085,-0.050009795,-0.4656332,-0.23178568,0.042150114,0.04583433,-0.12293144,0.09742134,-0.6299658,0.006297418,0.12059207,-0.27378738,-0.28154796,-0.17349513,0.3276579,1.0463187,-0.42172307,-0.07378113,0.05528319,0.060808543,-0.22084093,-0.6113078,0.075939134,-0.24518014,0.17388308,0.34618065,-0.37185472,0.15432458,0.21664,-0.5150827,0.20598193,0.3393933,-0.31879082,0.06734461,-0.31386748,0.035005722,0.82378167,-0.27903458,-0.09260955,-0.37578765,-0.6131777,-0.82803017,-0.28617826,0.23489414,0.14743379,0.027699172,-0.4127654,-0.054860454,-0.06565019,-0.06799531,-0.1476641,-0.5011567,0.52572095,0.048816614,0.44422278,-0.14743663,-1.0293969,0.21012762,0.21845701,-0.26884976,-0.61344427,0.50767887,-0.35103053,0.83130324,0.10643281,0.09977052,0.29877493,-0.7195676,0.034565996,-0.45936337,-0.25155646,-0.7303423,0.009525542 +735,0.44933936,-0.1213932,-0.51631916,-0.15280971,-0.1518325,0.34448192,-0.2524888,0.4061635,0.12925729,-0.43443102,-0.035514787,-0.1370768,0.0135157155,0.23677276,-0.2843766,-0.48419985,-0.07198601,0.10122892,-0.4484722,0.32104298,-0.43888515,0.29843786,0.024273345,0.3800557,0.053315327,0.15313372,0.11863733,0.06539685,-0.107799895,-0.10820491,-0.082067445,0.24695495,-0.5813102,0.019932903,-0.2852723,-0.4015484,-0.1284949,-0.54322547,-0.3712996,-0.6258638,0.3823076,-0.94297594,0.64175737,-0.040052537,-0.2822234,0.3522201,0.08787795,0.13173844,0.035333373,0.049886253,0.0590385,-0.19549005,-0.061979063,-0.13692953,-0.52495193,-0.4082467,-0.7572488,0.10840244,-0.6276187,0.03634589,-0.15076171,0.14616439,-0.19321063,-0.0059205294,-0.015509372,0.31454468,-0.27055156,-0.11860904,0.1264562,-0.12331863,0.38788146,-0.5420242,-0.24443604,-0.0066419244,0.36206532,-0.32500905,-0.22521318,0.16017693,0.4327847,0.62195873,-0.21710227,-0.18539645,-0.3693375,0.13601011,-0.18479775,0.5339682,-0.23137267,-0.35379073,-0.2556923,-0.25587228,0.37569863,0.35526276,0.16057798,-0.193548,-0.010038225,-0.075988494,-0.28818214,0.40005922,0.5721905,-0.44754422,-0.2784796,0.4391481,0.54857105,0.1838596,-0.061657432,0.09261311,0.1035368,-0.70040756,-0.11658929,0.12850961,-0.1420815,0.5577855,-0.14689492,0.2781822,0.4291199,-0.13622588,0.0961,0.04009864,-0.05867217,-0.20137024,-0.15514095,-0.23103903,0.20161718,-0.4540459,0.031219423,-0.14798607,0.524562,0.17962208,-0.9225368,0.3752479,-0.56346995,0.107432514,0.15531056,0.46975115,0.7786902,0.5537581,0.13291048,0.59767544,-0.42756224,-0.06817228,0.03734819,-0.16008027,0.18553308,-0.13932648,0.008045946,-0.4796014,-0.1368049,0.09958636,-0.032617815,0.15477133,0.6209309,-0.5220466,-0.2360235,0.15747227,0.6831624,-0.21838805,-0.07873666,0.7463865,0.97130084,0.8660775,0.08168976,1.3275307,0.21365589,-0.11286272,0.11336943,-0.1139439,-0.82153296,0.27461752,0.35411447,-0.5969448,0.66558415,0.06764058,0.019464662,0.32644224,-0.21180257,-0.13259646,-0.062209137,-0.029625688,0.011066945,-0.06341072,-0.21886942,-0.3237724,0.10580016,-0.049241763,0.38426018,0.25356552,-0.2649451,0.477979,0.41478774,1.4959806,-0.13697447,0.19306047,0.07837416,0.31367403,0.2803241,-0.17885502,-0.22630908,0.26753965,0.35743588,0.12630375,-0.37643284,0.04040084,-0.115394905,-0.36863598,-0.18648076,-0.2614288,-0.29227158,-0.11798305,-0.39462245,-0.19292992,-0.08814668,-0.5118578,0.42881244,-2.8703005,-0.14926134,-0.20680024,0.47879732,-0.22391169,-0.4777334,-0.22632465,-0.4067623,0.49236524,0.44315487,0.20169616,-0.57901,0.25056416,0.49486607,-0.3657737,-0.1956954,-0.63547474,-0.076189734,-0.01634009,0.110753015,-0.010233751,-0.2185821,0.1699992,0.26682404,0.33781675,-0.00017361458,0.04914018,0.22816549,0.4884003,0.11052447,0.4765287,-0.25559717,0.48993662,-0.29597992,-0.24729599,0.49117565,-0.5205077,0.15875323,-0.103553966,0.21336724,0.46962595,-0.47431737,-0.70008117,-0.6068864,-0.22950217,1.264874,-0.14891909,-0.47532982,0.1594964,-0.2610578,-0.5206433,-0.19638015,0.6062881,-0.23755573,-0.04014028,-0.79680383,-0.2966485,-0.106532365,0.31988162,-0.13972794,0.13231577,-0.5603679,0.5034634,0.023185097,0.49732298,0.31650403,0.18055606,-0.44759163,-0.5318422,0.09021287,0.97235113,0.295557,0.19657761,-0.23374023,-0.08848484,-0.3034545,0.030855784,0.08858439,0.46834007,0.60977566,0.003574713,0.1652465,0.31010568,0.08782019,0.1686899,-0.15411459,-0.2771718,-0.19528128,-0.17227843,0.57154584,0.5648673,-0.072013505,0.17508571,-0.08490732,0.22751999,-0.29282433,-0.3471843,0.5507677,0.8991289,-0.18655406,-0.27869055,0.63006645,0.37889287,-0.47273874,0.43491876,-0.6728032,-0.34342235,0.41665882,-0.087606266,-0.4627566,0.3417738,-0.34254202,0.088499375,-0.7289381,0.19301063,-0.17469652,-0.23415834,-0.57798666,-0.12282663,-3.6414354,0.19521666,-0.054631624,-0.16912024,-0.18039936,-0.24753585,0.4582467,-0.49050206,-0.6613254,0.14376034,0.013324825,0.7076703,-0.18915507,0.092622384,-0.36032555,-0.41167024,-0.39212915,0.16828753,0.21623625,0.3333372,-0.003354256,-0.250371,-0.021468226,-0.28546014,-0.4370079,-0.023697555,-0.61532533,-0.42709064,-0.17701149,-0.50270027,-0.29415455,0.75872856,-0.41323566,-0.03971023,-0.29033765,-0.027010623,-0.16584004,0.34488958,-0.1088225,0.13061571,0.04998552,-0.17049193,0.024693178,-0.32827955,0.40486434,0.0008113338,0.098016396,0.4350415,-0.27203533,0.17858896,0.31806892,0.8037189,-0.02562411,1.0276685,0.2743659,0.050576467,0.38334516,-0.2942553,-0.21821691,-0.43570474,-0.059656337,0.06679426,-0.49157605,-0.35262102,-0.22705807,-0.32782957,-0.7212773,0.5322525,-0.10389756,0.24930438,0.059080288,0.4158862,0.45896658,-0.30291623,-0.003305238,0.015677286,-0.25549677,-0.24490239,-0.25164992,-0.6002029,-0.53923124,0.14772466,0.837524,0.022720357,0.10813015,0.26038244,-0.122706376,0.039354496,0.07294495,0.2264444,0.14086393,0.37398592,-0.04454014,-0.61507505,0.29230344,-0.20863436,-0.26427776,-0.6577835,0.005850205,0.70040596,-0.5867693,0.44843477,0.52973527,0.035726056,-0.22485317,-0.6415405,-0.14369589,-0.0023168141,-0.3016191,0.4463031,0.34296563,-0.8171504,0.48358077,0.39748493,-0.23647586,-0.67557424,0.5824541,-0.014133905,0.0120946355,-0.06322828,0.5415153,0.057249226,0.122527234,0.2704221,0.11631362,-0.47130257,0.25762564,0.26291186,0.07146774,0.50982714,-0.14119607,0.020542549,-0.5634473,0.04500136,-0.4699356,-0.32108387,0.3835928,-0.034541942,0.28494617,0.18307057,-0.016167382,0.46369252,-0.36298272,0.046443395,0.075578734,-0.15325525,0.21404745,0.4441802,0.6090879,-0.3172536,0.56905484,-0.12224201,0.07093934,0.120157115,0.11197579,0.48305112,0.14963438,0.35141584,-0.024849929,-0.28487045,0.2631898,0.77212816,0.1645615,0.27516386,0.15558568,-0.09100754,0.15872295,0.09150086,0.15194546,-0.12805496,-0.6024347,-0.11448525,-0.26947773,0.17416003,0.5093513,-0.07466399,0.22754025,-0.3047806,-0.21648645,0.011396467,0.23965192,-0.101443596,-1.3437394,0.15070488,0.17023574,0.7682674,0.30289346,0.09974255,0.038398508,0.46571207,-0.17576262,0.1939098,0.30995852,0.15911786,-0.46435884,0.5314112,-0.64829695,0.48696774,-0.003086943,-0.044157293,-0.008907495,-0.06986968,0.43133256,0.8734136,-0.0628353,0.1295849,0.14975837,-0.1639645,0.25258338,-0.3708482,0.12005176,-0.36320302,-0.084481426,0.6724522,0.42472264,0.388826,-0.3134041,-0.07458433,0.03159517,-0.15077618,0.08196619,0.0031936993,0.012454601,-0.30396894,-0.58646846,-0.1563796,0.45289296,0.3816168,0.18792304,0.20862137,-0.38585055,0.22708203,-0.23054144,0.048506048,-0.12128986,-0.806249,-0.14660636,-0.36324078,-0.585888,0.36178458,-0.09728737,0.07725178,0.33220723,0.082423285,-0.27322063,0.23181441,0.18022643,0.82470036,-0.018943707,-0.045053158,-0.36801016,0.17520775,0.21075934,-0.28682014,-0.16479439,-0.38372666,0.10964222,-0.31426007,0.23500459,-0.077089734,-0.3610676,0.062578194,0.060135666,0.115152635,0.6151592,-0.16913691,-0.12631357,-0.033523664,0.09670651,-0.31185755,-0.10567865,-0.22409445,0.22483529,0.16276829,-0.048445765,-0.058482632,-0.17170914,-0.23030998,0.23603803,0.16028646,0.4524179,0.6594423,0.26610062,-0.3077274,-0.043379527,0.051656045,0.65210545,0.014001828,-0.27982897,-0.44686276,-0.5640565,-0.22480297,0.574263,-0.118516296,0.1199447,0.11966204,-0.3416422,0.71239156,-0.10978149,0.8836819,0.009485816,-0.2800646,-0.08585686,0.45383865,0.031784695,-0.2103081,-0.5010536,0.963954,0.40302646,-0.19794035,-0.15485388,-0.119197525,-0.059146795,0.027216563,-0.32505104,-0.117654726,-0.1613829,-0.7338603,-0.14053243,0.09074129,0.1995302,0.24249734,-0.11396535,0.24865834,0.36984128,0.12915367,0.31300223,-0.36816818,-0.023092875,0.4113363,0.328502,-0.09149659,0.21780993,-0.30921596,0.2742088,-0.44011995,-0.16098095,-0.5542564,0.063568644,-0.07387139,-0.39400098,0.24023141,-0.026605729,0.41081494,-0.10420417,-0.33195975,-0.103806004,0.36350018,0.18882678,0.31619433,0.51044124,-0.11954016,0.041540705,0.008466787,0.5013338,1.1664555,-0.12372801,0.06832394,0.33056906,-0.34157988,-0.6568539,0.2208063,-0.55738664,0.4602909,0.03473278,-0.08580126,-0.12792243,0.2131922,0.14474298,0.16779962,0.026772967,-0.5917795,-0.36378655,0.2789748,-0.29413813,-0.14429912,-0.30704734,-0.008663159,0.615529,-0.24009076,-0.1552569,-0.06909824,0.55000645,-0.20106019,-0.6396774,0.06888123,-0.39323637,0.2507343,0.18373297,-0.39670566,0.05782377,-0.056577995,-0.47990844,0.32239833,0.14736484,-0.3648609,-0.09616889,-0.2722423,0.061684854,0.8439523,-0.22256662,0.009427234,-0.46031043,-0.67310303,-1.0789006,-0.272784,0.014234992,0.17822465,0.026590623,-0.53851795,0.061567064,-0.22580363,-0.101934835,0.026837055,-0.24090004,0.448206,0.15996327,0.69008553,-0.095300674,-0.76550007,0.01945877,0.028504696,-0.24696541,-0.6123233,0.65758073,-0.029838314,0.79209805,0.11774345,0.08754054,0.14997645,-0.5287683,0.12200984,-0.26859453,-0.1292313,-0.77820575,0.14440733 +736,0.34918535,-0.25905916,-0.22553015,-0.1241322,-0.029021958,0.1305069,-0.007671662,0.47864878,0.16959375,-0.39835778,-0.036878694,-0.2716249,-0.06547102,0.26619333,-0.10870656,-0.3732659,-0.093544774,-0.023055386,-0.27200592,0.4647779,-0.37728244,0.27983665,-0.03995471,0.27365834,0.10366591,0.4272,0.17381558,-0.23454939,-0.15216973,-0.036530435,-0.18337406,0.028710842,-0.3298289,0.10324836,-0.055189822,-0.19463135,0.083942555,-0.38803083,-0.40248102,-0.6237198,0.3649584,-0.69929326,0.35121924,0.07687224,-0.11619018,0.38988227,0.15601072,0.20909338,-0.2618394,-0.025912741,0.20292208,-0.06661714,0.09255467,-0.10732662,-0.14483163,-0.3473087,-0.4382165,0.058623545,-0.34464198,-0.3739974,-0.17122047,0.08081238,-0.30709508,-0.05912656,-0.09444852,0.35660633,-0.4318981,-0.08473091,0.20654045,-0.18923526,0.2832519,-0.6005973,-0.21975492,-0.06205826,0.093741655,-0.079877816,0.031901788,0.2903683,0.13616012,0.55528843,-0.048767544,-0.08933,-0.35128358,-0.06561109,0.07900991,0.6174442,-0.19923367,-0.41583902,-0.010727893,-0.0091331545,-0.04845206,0.057260934,0.12411644,-0.2567778,-0.11099278,0.13439804,-0.3600828,0.25257623,0.502923,-0.32730916,-0.33699045,0.40160617,0.49164486,0.027187813,-0.057690136,-0.014505418,-0.0059698313,-0.31257722,-0.13641433,0.08243248,-0.2024226,0.46943796,-0.047656476,0.3486728,0.63565063,-0.11626152,0.19550024,-0.11955893,-0.055736914,-0.13499467,-0.23919158,-0.014725964,0.03556144,-0.34717792,0.14958015,-0.12888704,0.7586463,0.20716476,-0.6871988,0.40951696,-0.42728043,0.20244838,-0.031364985,0.53526217,0.6035501,0.2527404,0.44593716,0.72337353,-0.5744555,0.060578074,-0.11724987,-0.28041336,0.033211127,-0.14377625,0.123433,-0.52742785,0.059429787,0.28619274,-0.06574095,0.031694904,0.08493171,-0.44689506,0.038420938,0.18150823,0.9145345,-0.2511015,-0.013086494,0.56719947,1.0090109,0.8050468,-0.013760265,0.97943693,0.25915584,-0.31088,0.42917383,-0.5696251,-0.66448057,0.20865795,0.394847,0.28932565,0.21765977,0.1588358,-0.15304136,0.35816422,-0.31852058,0.1756561,-0.1694532,0.124942236,0.24673837,-0.07321129,-0.2716875,-0.21873516,-0.047427047,-0.07697896,0.12109441,0.076123744,-0.23097517,0.26609546,-0.071631305,1.823526,-0.032912232,0.11010553,0.108825095,0.597058,-0.017615676,-0.10992236,0.061932847,0.32442302,0.27524787,0.026650174,-0.56163913,0.15087697,-0.20640889,-0.6498244,0.0023158053,-0.28787506,-0.100401506,0.11685885,-0.35097754,-0.15955935,-0.11141023,-0.41052696,0.38964385,-3.0776362,-0.051559664,-0.14681396,0.25389114,-0.3497931,-0.24235025,0.048193377,-0.41840145,0.34342733,0.49487457,0.3532938,-0.6936053,0.30434987,0.34455904,-0.3606715,-0.13502264,-0.45870337,0.036115628,-0.04807867,0.3720393,0.07302208,-0.0010829886,0.050924517,0.1021965,0.47001383,0.08218517,0.06675752,0.23596579,0.34217975,-0.014515189,0.3403396,0.08748882,0.28570583,-0.22255547,-0.043210194,0.26623046,-0.48679954,0.20045458,-0.039284103,0.13433671,0.29995015,-0.3463685,-0.6768641,-0.6192961,-0.35403225,1.209684,-0.11222375,-0.3880294,0.362473,-0.24015704,-0.124068655,-0.20934094,0.53350025,-0.01845214,-0.09378008,-0.68035597,0.080728054,-0.19104192,0.12176467,0.018217294,-0.005656928,-0.30483666,0.7924898,-0.07754677,0.48889586,0.29131165,0.12382409,-0.23280239,-0.34212115,0.043916572,0.7580868,0.31293526,0.2049941,-0.117862575,-0.17066444,-0.21285,-0.36035067,0.19221371,0.41333738,0.6965912,0.062453374,0.022378743,0.29221362,-0.08928955,-0.06633155,-0.10588424,-0.17408413,-0.052761916,-0.020849245,0.5578578,0.4439977,-0.25701243,0.3635083,-0.15831761,0.18315004,-0.25724176,-0.27559415,0.48463795,0.5875752,-0.14705025,-0.14939585,0.44876188,0.5374863,-0.23626514,0.33317837,-0.70269024,-0.27735192,0.5292445,-0.23447494,-0.47311267,0.19009332,-0.27584416,0.028688025,-0.8596485,0.25507966,-0.14515291,-0.3547931,-0.49032933,-0.17026153,-3.6517186,0.059476018,-0.25407147,-0.355502,0.033765092,-0.010874846,0.085947014,-0.5701305,-0.32381096,0.11765852,0.08244047,0.4198282,0.06511524,0.21389176,-0.2902559,-0.020579377,-0.40083373,0.09209351,-0.16138652,0.34956676,0.016470302,-0.34928444,-0.027227584,-0.12542689,-0.43633264,0.08073106,-0.45080593,-0.4567754,-0.23891553,-0.494839,-0.2901138,0.48081133,-0.31575468,0.05487918,-0.30715656,-0.12903902,-0.3106969,0.5065776,0.27835146,0.034711536,-0.035889722,-0.03437408,-0.009578451,-0.27727768,0.31474912,0.09945595,0.34521917,0.50326914,-0.15452169,0.12125133,0.3932558,0.5025936,-0.07260398,0.6264198,0.49554533,-0.12302092,0.37507787,-0.3682255,-0.054034676,-0.43765274,-0.41770178,0.02168837,-0.24879055,-0.5417028,-0.13172589,-0.36762625,-0.6208511,0.26128837,-0.016517822,0.27083302,0.05544615,0.11169203,0.50866866,-0.17480157,0.009065,-0.06137659,-0.036147308,-0.53797495,-0.32072407,-0.6142972,-0.494492,0.37656707,0.699639,-0.023127705,-0.15584327,0.07727446,-0.20750594,-0.09763273,-0.028220566,0.065810435,0.11861483,0.25418863,-0.159985,-0.7060681,0.5632892,-0.021430492,-0.14020434,-0.5202548,0.11673265,0.3880361,-0.46636885,0.47382832,0.18280019,0.14265035,0.022930412,-0.37730238,-0.20852135,-0.22915027,-0.24693726,0.24948241,0.070159145,-0.734388,0.349243,0.4195878,-0.21642962,-0.6533716,0.29885438,-0.076430164,-0.23883708,0.03675265,0.18934996,0.2208271,-0.06189562,-0.09313171,0.13823217,-0.5795525,0.29031822,0.2206843,0.014950673,0.6201607,-0.13698368,-0.054666005,-0.523713,0.046509687,-0.43133876,-0.18809167,0.10778861,0.24324687,0.16468897,0.15413103,-0.029869238,0.27651492,-0.23203358,0.049288753,0.13585995,-0.13286562,0.26263994,0.3712179,0.3971399,-0.46679133,0.5552487,-0.053005952,0.021152882,0.016172664,0.027120909,0.3822998,0.30809107,0.16341534,-0.025165845,-0.2846541,0.25479838,0.7444217,0.256861,0.4463161,0.149628,-0.2105367,0.43464246,0.12031043,0.059464026,0.17921953,-0.4351827,-0.028465481,-0.024406286,0.18670817,0.31545818,0.14641532,0.39659408,-0.11334955,-0.1750656,0.080066115,0.27055794,-0.21019493,-1.0039773,0.3408137,0.19078375,0.8443958,0.39188558,-0.10898658,0.087367386,0.75719506,-0.1806189,0.13189413,0.2626799,-0.03817146,-0.68744725,0.56214154,-0.5691334,0.42789137,-0.08249162,0.010747842,-0.0040780944,0.027882295,0.25274172,0.64641196,-0.15170044,-0.032354712,-0.074231006,-0.30992526,0.034462113,-0.3656858,0.19937988,-0.43157336,-0.19292071,0.4101492,0.4492094,0.30328825,-0.063941166,0.048944093,-0.03405114,0.010760697,0.096222445,-0.0713493,0.09152575,-0.053014774,-0.6996004,-0.39374268,0.54913026,-0.16256335,0.18178539,0.0028837363,-0.2976382,0.1509433,-0.20767546,-0.23788227,0.016671048,-0.5158084,0.14431757,-0.06984733,-0.51295125,0.39471185,-0.04421852,0.323877,0.12896603,-0.031119687,-0.32890242,0.21156982,0.24146602,0.6472938,-0.094292216,-0.15254396,-0.5619518,-0.024361206,0.23931172,-0.18664898,-0.15082596,-0.14844766,-0.17697152,-0.46925774,0.49781972,-0.013008428,-0.2415021,0.20475006,-0.34324723,0.07149525,0.5845782,-0.14085157,-0.17706467,-0.0394907,-0.17576678,-0.24459155,-0.14671612,-0.112806894,0.34548673,0.019929329,-0.031928357,-0.023768846,-0.1530485,-0.060976434,0.37175843,0.035826366,0.21906981,0.27068186,0.027854117,-0.3421604,-0.10957773,0.054986462,0.32331327,0.1528631,-0.031156382,-0.12829177,-0.47811407,-0.37451172,0.04862581,-0.14310855,0.31988317,0.13713522,-0.44895688,0.58730114,-0.004160869,1.104069,0.10535052,-0.23558156,0.06913895,0.39610085,0.03493266,0.16098176,-0.40826562,0.74818,0.6076444,0.032134578,-0.111571975,-0.20392844,-0.060989298,0.30853614,-0.15286002,-0.053101156,-0.033987515,-0.735162,-0.30934498,0.26548505,0.18752974,0.115293466,0.02576712,-0.0049145618,0.09377555,0.015777986,0.5194736,-0.33879864,-0.23138633,0.32738164,0.08408761,0.040901612,-0.001977853,-0.41048592,0.42479667,-0.58152705,0.024028294,-0.19446,0.07206576,-0.2102044,-0.15039444,0.1839568,-0.021697856,0.5141984,-0.20441963,-0.4306011,-0.18403496,0.45902634,0.04318799,0.20959447,0.41809922,-0.12336413,0.0031945885,0.05853315,0.50510544,1.0475157,-0.25968674,0.099914946,0.3280683,-0.30829257,-0.6519499,0.37095305,-0.07305385,0.15266676,-0.045345705,-0.17247842,-0.38709623,0.25993544,0.26410773,0.013809673,0.03132235,-0.5310397,-0.4329758,0.18368691,-0.38243008,-0.24215785,-0.3218076,0.14195725,0.70969504,-0.3754296,-0.1582616,0.15233189,0.30008832,-0.23205057,-0.5207138,-0.023924852,-0.23008223,0.37117666,0.13912408,-0.28987184,-0.24649283,0.05959637,-0.24845701,0.1642169,0.0720313,-0.48325503,0.049739305,-0.29210493,-0.026551057,0.81238914,-0.020432035,0.13573691,-0.72777903,-0.38344756,-0.8767997,-0.5431651,0.44955906,0.09782311,-0.12493273,-0.33612877,-0.042740162,0.06597749,0.05080672,-0.14551285,-0.45853743,0.4697127,0.16682409,0.3198585,-0.07189352,-0.5393313,-0.014484787,0.19319959,0.007437865,-0.54939705,0.48049697,0.034008447,0.87146676,0.01885294,0.07699192,0.31536216,-0.42361882,0.007621312,-0.25769886,-0.3540627,-0.6059086,0.18219967 +737,0.4485857,-0.10412366,-0.4908848,-0.11705957,-0.26259238,0.06249067,-0.29377455,0.28444514,0.09637828,-0.62204,-0.049555182,-0.108923085,0.0074155754,0.3801313,-0.32351473,-0.47713572,0.040209763,0.011374936,-0.42779994,0.31602785,-0.42760465,0.16379154,0.032767646,0.38039583,-0.008697263,0.2808845,0.22148278,-0.16190083,-0.16711958,-0.20942722,-0.07902447,0.21966831,-0.6754469,0.10457819,-0.22707011,-0.25341645,0.028708601,-0.56579894,-0.5202719,-0.56078833,0.20015314,-0.90725625,0.5335686,0.18249376,-0.16552459,0.18459645,0.20351206,0.1546861,-0.03316852,0.0507099,0.2632685,-0.27133134,-0.08022179,-0.12874703,-0.2064745,-0.54473096,-0.75543565,0.023036793,-0.5753907,-0.009731387,-0.25097612,0.24694708,-0.3415676,-0.09861935,-0.10710745,0.425615,-0.39433065,-0.1026475,0.15812434,-0.14526863,0.469451,-0.6007511,-0.30435115,0.03251428,0.33537468,-0.27831635,-0.22190745,0.28313065,0.3421152,0.42355567,0.023872469,-0.23123252,-0.49848154,0.06922418,0.31551966,0.5147727,-0.2939961,-0.35061994,-0.21216498,-0.067552574,0.12263073,0.2758382,-0.029045327,-0.46076196,-0.05199083,0.048036482,-0.14136145,0.40162554,0.6228856,-0.26529548,-0.15684342,0.32779858,0.36496708,0.10982234,-0.14779976,0.11867804,0.07130082,-0.6246067,-0.072755024,0.13980094,-0.10159594,0.6370826,-0.16965826,0.34437534,0.65893644,-0.007363181,0.019307137,0.14636365,-0.11248807,-0.09826305,-0.25518522,-0.093921915,0.15709126,-0.514408,0.15615232,-0.16611843,0.66978157,0.14663757,-0.9979124,0.35104033,-0.60662216,0.104190946,-0.02767743,0.43674946,0.6860109,0.39549989,0.12662327,0.78073895,-0.5046638,0.11385262,0.09607947,-0.47082472,0.33142194,-0.14771344,0.008755922,-0.6012869,-0.25864142,0.09555077,0.07704457,-0.013663961,0.47837347,-0.3408413,0.00021218402,0.32903457,0.79823107,-0.17993273,-0.074914895,0.6840113,1.1601951,0.93729055,0.17622541,1.1939678,0.06109878,-0.0702304,0.23943138,-0.17014585,-0.7723771,0.26619977,0.34170517,0.063950434,0.20031218,0.100471295,0.011480169,0.4295712,-0.43093687,0.06624185,-0.15663064,0.12297196,0.1776428,-0.25631166,-0.37525874,-0.16344616,-0.014617905,-0.10441758,0.0094223535,0.19939494,-0.033513162,0.41858175,0.13952745,1.4692413,-0.19415852,0.24353945,0.15024708,0.47984606,0.1983867,-0.2033526,-0.02905855,0.0137890065,0.39489052,0.24178205,-0.31660047,0.09809307,-0.19009344,-0.5646517,-0.1933153,-0.33442858,-0.04263711,-0.14142302,-0.52411366,-0.08800112,0.008322588,-0.46607462,0.61161995,-2.975678,-0.030416803,-0.16880515,0.36457032,-0.17884247,-0.36112806,-0.10807509,-0.46811667,0.71725065,0.3403851,0.39230588,-0.57689285,0.36429214,0.6463997,-0.4204898,-0.08694478,-0.7081103,-0.07743109,-0.12026291,0.30945653,0.16135752,-0.26538357,0.13290246,0.11992348,0.47581273,-0.054750327,0.095850825,0.0850056,0.24054323,-0.033505503,0.48494622,-0.16682439,0.45188785,-0.22531398,-0.2598905,0.3644173,-0.38325697,0.16510959,-0.059972543,0.21573736,0.4602027,-0.37232536,-0.9515792,-0.65160286,-0.32453227,0.95054024,-0.20221451,-0.4951814,0.3591482,-0.2046205,-0.3530342,0.057510965,0.46077046,-0.1416826,0.33815473,-0.9124133,0.02263311,-0.19533266,0.18049511,-0.052591335,0.014342909,-0.5833155,0.68567,-0.057294656,0.4798992,0.5359988,0.29340482,-0.34214887,-0.4886703,0.05283323,0.8943948,0.275291,0.12226289,-0.19987977,-0.21798538,-0.06442635,-0.28960624,0.15266152,0.64863294,0.5958662,-0.10851632,0.16752194,0.25302172,0.07453884,0.07210467,-0.053041067,-0.28828153,-0.0804783,-0.040329628,0.5958606,0.8845364,-0.19575956,0.27814388,-0.15776825,0.27314314,-0.20372343,-0.31134564,0.57656115,0.9051164,-0.08494756,-0.27589425,0.6111011,0.3604123,-0.1971337,0.36980864,-0.55093247,-0.33859926,0.32083684,-0.13407384,-0.5452862,0.15541564,-0.4270597,0.029925605,-0.83938664,0.4410295,-0.3908682,-0.52844715,-0.5763776,-0.2875001,-3.9749198,0.13731517,-0.35792038,-0.22867057,-0.07475817,-0.13843295,0.39175197,-0.6911297,-0.46594995,0.117872015,-0.0067742085,0.7045447,-0.17012961,0.05440631,-0.3142457,-0.1121846,-0.42335302,0.2928225,0.20512876,0.26337507,-0.050832085,-0.27442726,-0.051222,-0.23094833,-0.49932733,0.088527866,-0.5961593,-0.42601973,-0.2138106,-0.39624828,-0.4553991,0.74858344,-0.47156373,-0.062308736,-0.31398964,-0.0050389594,-0.35599682,0.5054493,0.20161702,0.3198184,0.022550037,-0.009197444,-0.1347919,-0.28185812,0.39877644,-0.04011496,0.34933028,0.5909746,-0.25553897,0.10239558,0.49918538,0.65294826,-0.17978661,0.8279263,0.50451756,-0.039668713,0.24821134,-0.37337092,-0.24152721,-0.58774173,-0.3228363,0.038003683,-0.38625067,-0.49531788,-0.085249305,-0.3882873,-0.70954525,0.52812296,0.010203185,0.124810636,-0.10276787,0.01868105,0.2985716,-0.30653027,-0.24665414,-0.0163097,-0.04295184,-0.49898437,-0.31904188,-0.58926266,-0.6626457,-0.10651498,0.8968547,-0.025412934,-0.07516789,0.17251098,-0.20073499,-0.031296007,0.18888858,-0.005117046,0.14581212,0.3593978,0.06411741,-0.7800496,0.5607491,-0.28894186,-0.12096574,-0.75084835,0.15261258,0.583356,-0.5376714,0.7745079,0.5170145,0.22354756,-0.20463498,-0.75838524,-0.3578144,-0.12562647,-0.11605833,0.4985536,0.19078694,-0.99457943,0.3744543,0.37123647,-0.3702009,-0.5915767,0.60022485,0.10763967,-0.074432954,0.15165246,0.362573,0.04601052,-0.14497073,0.08286909,0.30533358,-0.3881721,0.4583929,0.34783903,0.080383524,0.53685606,-0.17396124,-0.10774946,-0.5001543,-0.034267895,-0.4441876,-0.1608522,0.14242421,-0.006983522,0.035797596,0.1381696,-0.10761736,0.35974434,-0.37142807,0.17161027,-0.03438675,-0.26009992,0.12843125,0.4317968,0.48868012,-0.48364025,0.5814147,0.06839099,-0.1184208,-0.08940232,0.1798806,0.4497028,0.20162079,0.29755497,-0.15535793,-0.10032229,0.059251547,0.87435573,0.16120932,0.49067622,0.19491012,-0.042106632,0.3070352,0.020457225,0.2521563,-0.024115056,-0.684856,0.04458431,-0.31045863,0.3181205,0.42149085,0.0089424765,0.31292623,-0.17566156,-0.09859189,0.037212696,0.2839317,-0.01322573,-1.5653133,0.4280467,0.3009493,0.7567873,0.40087417,0.049570676,-0.0006943281,0.7995473,-0.15215454,0.068445146,0.21017289,0.05330428,-0.40567043,0.5223462,-0.8274213,0.29496813,0.015022963,-0.087835975,-0.119549595,0.0023771909,0.29993656,0.7000141,-0.15819807,0.15959395,0.00329963,-0.28048828,0.24196365,-0.32930943,0.34612116,-0.28932747,-0.17102364,0.7856305,0.5579991,0.36313218,-0.12933896,-0.051909056,0.06695484,-0.06949984,0.10245017,-0.051692642,0.104004934,-0.057155613,-0.65906173,-0.21267965,0.45067123,-0.051195946,0.2021123,0.13878725,-0.23366623,0.19868745,-0.1622894,-0.061023492,-0.03130621,-0.6708494,0.023700412,-0.29258016,-0.44657472,0.43726677,-0.40558204,0.25627214,0.20856963,0.13827653,-0.20199488,0.36875978,0.09329934,0.7952407,-0.023985641,-0.12776054,-0.36069992,-0.15105672,0.14602628,-0.15940341,-0.1992345,-0.3805942,0.11507652,-0.25757593,0.37900093,-0.06511869,-0.18561558,0.23678091,-0.034415223,0.10413718,0.6381702,-0.17748846,-0.3471894,0.1813239,0.110328026,-0.28205636,-0.092675805,-0.1629841,0.31280345,0.1996756,-0.019961566,0.06445006,-0.123437405,-0.23572645,0.1787473,0.11779891,0.4940725,0.42918605,0.15139692,-0.3909015,-0.18286328,0.32412347,0.567694,0.075040355,-0.10632469,-0.20828412,-0.5214619,-0.36306232,0.06037434,-0.111253776,0.2410811,0.14047696,-0.19368108,0.5689021,-0.088102266,1.1016523,0.17701028,-0.29649204,0.018601788,0.38928455,-0.014855231,0.065486565,-0.4232929,0.94360393,0.65937227,-0.03697745,-0.11771921,-0.37391686,0.021261709,0.10539011,-0.19550155,-0.1257114,0.0021486708,-0.7444235,-0.014979516,0.11396032,0.15724802,0.14063461,-0.11195798,-0.14603244,0.2922205,0.14880987,0.33136413,-0.5415145,-0.027297795,0.3412951,0.40630284,-0.040338125,0.28279185,-0.42412773,0.35379335,-0.35598725,-0.00412703,-0.3559908,0.17110793,-0.09618778,-0.28566176,0.22447379,-0.17032085,0.5045386,-0.02038564,-0.17117348,-0.05576152,0.5841194,0.23865454,0.22129774,0.7207573,-0.16476572,0.17879297,-0.0710117,0.45640522,1.1151644,-0.5372375,0.0963709,0.36233765,-0.21437536,-0.5855014,0.177332,-0.53307384,0.27105847,-0.02001431,-0.34333462,-0.36506173,0.12308792,0.026576787,0.12519482,0.1480538,-0.533601,-0.2594483,0.29281607,-0.296975,-0.24583976,-0.3825442,0.117797874,0.6483296,-0.18716809,-0.11751456,0.065961994,0.2973096,-0.10172569,-0.47000113,0.17556894,-0.1800158,0.094738595,0.14093831,-0.40894455,-0.12000551,0.07287506,-0.36777952,0.33617252,0.09442102,-0.2610299,0.14472297,-0.13187607,-0.13690129,0.9658476,-0.29438457,0.25457412,-0.74014044,-0.58764744,-0.93158233,-0.30903676,0.19057949,0.0835615,0.037479363,-0.59172904,-0.0973418,0.06139963,-0.048811283,-0.095058,-0.5249921,0.41988334,0.06585949,0.5035687,-0.08723919,-0.5985915,0.039816923,0.08066999,-0.04592679,-0.5187513,0.5755114,-0.12461964,0.84893507,0.094657,0.1862442,0.112139635,-0.5002841,0.13339634,-0.16575325,-0.19399107,-0.8849588,0.0076810205 +738,0.46386537,-0.106356785,-0.5068397,0.004803761,-0.012009351,0.26231292,-0.14977193,0.4226318,0.26940158,-0.40211043,-0.17986536,-0.15749332,-0.097576566,0.2632046,-0.20184933,-0.61830765,-0.029373322,0.22619556,-0.46711302,0.64280516,-0.36033633,0.43365887,0.024476724,0.3544443,0.10494542,0.14047101,0.10730232,0.015888503,-0.19819264,-0.14573966,-0.04197043,0.14586942,-0.69261074,0.19292797,-0.15363748,-0.5456658,-0.1284713,-0.42821404,-0.052332554,-0.8181485,0.3985796,-0.7999736,0.6320475,0.028102694,-0.354647,0.3410296,-0.07885405,0.17571004,-0.14121838,0.06139816,0.11102073,-0.06924037,-0.03127063,-0.05160117,-0.12563565,-0.36733624,-0.6329647,0.1132638,-0.42316356,-0.023460235,-0.2213349,0.16003679,-0.27097958,-0.020849599,-0.09917857,0.30015114,-0.4032038,-0.087930076,0.17967914,-0.10497677,0.30945525,-0.6033289,-0.13723746,-0.13574104,0.18609323,-0.28933048,-0.18834242,0.13327606,0.4652954,0.62913996,-0.09902387,-0.20734902,-0.28188452,0.13748436,0.10919028,0.448839,-0.19244684,-0.4607236,-0.19818923,-0.0478136,0.4633956,0.015823457,0.3084507,-0.25523046,-0.17989348,-0.026889013,-0.26751742,0.1984441,0.5194546,-0.42700145,-0.24333039,0.4414084,0.4736143,0.08915918,0.04186735,0.09130474,-0.07348948,-0.34932116,-0.0542835,0.1092898,-0.34491047,0.54646164,-0.118137084,0.14473857,0.44778726,-0.0757988,-0.0033489722,0.031215107,0.020079762,-0.15992062,-0.12500343,-0.2549536,0.25423938,-0.37768087,0.1806288,-0.30490667,0.6849413,0.17230494,-0.746599,0.30048484,-0.41690132,0.13106647,0.061033685,0.48728243,0.8078591,0.42607716,0.2252957,0.7534737,-0.5473269,-0.04453378,-0.059368532,-0.19082944,0.07086573,-0.14319532,-0.15886843,-0.45031652,0.093445994,-0.0950345,-0.2677576,0.13586058,0.47839555,-0.5657428,0.024640629,0.097604975,0.68099254,-0.32063934,-0.03151237,0.85688907,1.1186901,0.9715846,0.117488466,1.1737864,0.35573465,-0.27240402,-0.018974777,-0.3580164,-0.7220069,0.31403524,0.41524294,-0.27269837,0.47928947,0.06895668,0.09530755,0.22561242,-0.43081242,-0.06564977,-0.18718109,0.07457566,-0.031442743,-0.13584946,-0.3090112,-0.17006601,0.07056388,0.14904049,0.036583155,0.16984753,-0.2696688,0.28421625,0.2614199,1.5263594,-0.21991786,-0.02611601,-0.052473713,0.24980924,0.29881525,-0.1741098,-0.09987287,0.25490382,0.31204742,-0.10116156,-0.54003596,0.117093444,-0.14974558,-0.5887731,-0.18920751,-0.009159684,0.014910186,0.21954012,-0.18993957,-0.22768784,-0.028041827,-0.39794996,0.45549917,-2.2924635,-0.15842351,0.028531095,0.3221256,-0.18235326,-0.5460944,-0.0137087405,-0.47645086,0.44246477,0.3772328,0.22936904,-0.68740994,0.1453775,0.33480248,-0.37919664,-0.2307326,-0.54342395,-0.085632145,-0.0063927835,0.25793964,0.04833891,-0.23183669,-0.008213797,0.28603625,0.53746945,0.10627424,0.06701657,0.41091076,0.38474226,0.10647615,0.20326434,0.0782078,0.5253776,-0.101356804,-0.15965769,0.49455753,-0.43532714,0.22562727,-0.053369917,0.18712576,0.25798383,-0.47475505,-0.79086477,-0.85001695,-0.293725,1.4339119,-0.12533185,-0.52825916,0.13918415,-0.019617805,-0.29848343,0.0070629716,0.48451275,-0.20585553,-0.22580983,-0.92377174,-0.15430613,-0.038121413,0.2938225,0.033707432,0.07311487,-0.53198296,0.72453386,-0.15588148,0.49145263,0.3683486,0.29875582,-0.085588045,-0.61517054,0.069491066,1.3218155,0.5660377,0.09521597,-0.34201303,-0.19417025,-0.4904805,-0.01755582,0.091902904,0.35018015,0.7954582,-0.023973716,0.033141263,0.2614376,0.08724441,0.118670695,-0.18705533,-0.36106452,-0.13292547,-0.030915337,0.59369546,0.462756,-0.22967325,0.426686,-0.10397092,0.2208742,-0.19608054,-0.5040141,0.59368104,1.2349756,-0.24558945,-0.34277865,0.638656,0.17312633,-0.24672829,0.50308466,-0.6947064,-0.32276395,0.3738999,-0.14781462,-0.33769718,0.22181019,-0.38142744,0.17571913,-1.0022444,0.34226307,-0.18919255,-0.2762528,-0.54691356,-0.04338056,-2.8583217,0.2236575,-0.08340029,-0.13646877,-0.27199093,-0.14727421,0.35510442,-0.6308536,-0.82558393,0.030797688,0.033083025,0.6386956,-0.026610037,0.12924302,-0.09021365,-0.41543463,-0.3234749,0.25952014,0.18697986,0.36356544,0.075303994,-0.37310925,-0.109509654,-0.25505903,-0.40340897,-0.04565144,-0.49860382,-0.50328463,-0.15900049,-0.43026084,-0.1845884,0.47233397,-0.56542176,0.096928336,-0.19867302,-0.14599773,-0.08475626,0.2946908,0.16800065,0.056916177,0.18493806,-0.15624611,0.07919354,-0.22392191,0.27546957,0.0948758,0.087409906,0.39171442,-0.26484737,0.27223274,0.36217088,0.78232145,-0.1603279,0.8191772,0.5420348,-0.08928137,0.23016839,-0.3892035,-0.18894036,-0.6709015,-0.31558397,-0.07762021,-0.43887377,-0.5180557,-0.075674914,-0.34354705,-1.0157918,0.39985853,-0.1833632,0.1621863,0.15293951,0.43925986,0.50489986,-0.103083454,0.054701965,-0.2592708,-0.11805908,-0.41147834,-0.36949518,-0.63935214,-0.37757057,0.11009222,1.0092394,-0.06824187,0.11542966,0.13917191,-0.046049,0.11706043,-0.12762721,0.14112528,-0.018127237,0.41816214,0.069547735,-0.71595186,0.25795597,0.13875401,-0.15597953,-0.54155284,0.31972668,0.5078375,-0.7097649,0.416137,0.314854,0.07747115,0.11731832,-0.561936,-0.042588763,0.025708845,-0.34021857,0.40450177,0.2753145,-0.546906,0.46410194,0.43451405,-0.1784824,-0.7488808,0.34120777,0.05520922,-0.17243147,-0.12967202,0.44460586,0.010560751,0.016710665,-0.19625044,0.16150424,-0.42026496,0.26557523,0.24299788,-0.056642942,0.19263615,-0.26163265,-0.20875344,-0.78395736,0.227362,-0.5948333,-0.34609318,0.14083654,0.18745498,0.040582836,0.17087947,0.22678582,0.54260814,-0.44665998,0.2593563,0.00096194446,-0.10772773,0.3466329,0.53296506,0.4380196,-0.26755327,0.4342404,-0.12516055,-0.12673594,-0.19647376,-0.061206877,0.47819278,0.19954035,0.14256068,0.2702754,-0.09450538,0.31559905,0.5070458,0.29916397,0.40016112,-0.025151813,-0.33064842,0.17940895,0.18659775,0.29901907,-0.17738439,-0.39623803,-0.11481037,-0.099036776,-0.0034489024,0.6119734,0.2103678,0.19988298,-0.2020928,-0.27567968,0.0044613183,0.13794759,-0.12570252,-1.0840265,0.3765273,0.05514214,0.82229805,0.6198161,-0.11056311,0.27249286,0.33363804,-0.3311371,0.22443525,0.3846578,0.012592102,-0.5158258,0.39280766,-0.7206461,0.15745206,-0.1416248,0.11319681,0.06191844,-0.1330715,0.37341446,0.9058984,-0.12720086,0.11969481,-0.19708054,-0.15999095,0.027811578,-0.37011772,0.0413802,-0.50236934,-0.34470877,0.7833358,0.3409727,0.3677984,-0.37811428,0.035924494,0.016250813,-0.19509575,0.15915896,0.021208037,0.13166429,-0.10687322,-0.49391147,-0.22421305,0.54948723,0.10678331,-0.05810079,-0.06940977,-0.42626977,0.10516679,-0.21379113,-0.03974455,0.01887695,-0.81293565,-0.082653925,-0.39910603,-0.2490076,0.40318647,0.0063305837,0.1351452,0.15069734,0.11440515,-0.25870135,0.1258901,0.25998408,0.53807276,0.18038666,-0.061648153,-0.3856282,0.3460235,0.18490086,-0.27008483,-0.013271808,-0.13133495,0.03428496,-0.4754797,0.5006684,0.03115591,-0.3348685,0.13650008,-0.0716271,-0.07721745,0.5294022,-0.3372074,-0.19120352,0.16824733,-0.062993705,-0.20023128,-0.2253436,-0.26743284,0.17490289,0.15220036,-0.107520595,-0.13680574,0.035406284,-0.23788026,0.33978757,0.07311209,0.32412794,0.5144094,0.005113457,-0.6214202,-0.11695985,0.14894737,0.35026938,0.07767941,-0.15111814,-0.30893305,-0.52051735,-0.28681827,0.01845353,-0.19110915,0.21455908,0.08343331,-0.32976696,0.6515075,0.32300034,1.2249572,-0.114552654,-0.38571215,-0.07000663,0.54671115,-0.11670911,-0.14857742,-0.5464025,0.9142617,0.5482883,-0.14856325,0.029736618,-0.1335342,-0.094888724,0.22916456,-0.24784349,-0.03622837,-0.01746436,-0.8263764,-0.43892995,0.19314173,0.35545492,-0.13504468,-0.025752084,0.13840231,0.19267325,0.07317751,0.25116062,-0.37309602,-0.09623893,0.3143609,0.1653501,0.09445498,0.011567695,-0.4250658,0.27046898,-0.5315632,-0.16769281,-0.3221833,-0.0019907781,-0.02538831,-0.42236295,0.25633168,0.16942333,0.24002378,-0.32029048,-0.46927038,-0.21679465,0.47195265,0.016109483,0.14583567,0.4475983,-0.29277232,0.1414923,0.10148614,0.48914173,1.2133502,-0.10684562,0.11915929,0.3004122,-0.33841014,-0.61069554,0.30928007,-0.2509393,0.21276286,-0.076455526,-0.3159884,-0.69703895,0.3352206,0.16819127,0.06658479,0.17312409,-0.62810296,-0.22304884,0.3091506,-0.3738188,-0.13773748,-0.24749553,0.09734986,0.6906039,-0.4216372,-0.48479208,0.1407883,0.2993372,-0.3415175,-0.6602643,-0.14446919,-0.38841996,0.42543277,0.23077656,-0.29299736,-0.071597636,0.18936542,-0.40613583,0.04132373,0.18608081,-0.45746368,-0.079178795,-0.45715252,0.16990522,0.7791843,-0.14025733,0.040427346,-0.4591277,-0.43663874,-0.95492446,-0.3758594,0.541451,0.15216853,0.053051166,-0.7528781,0.0066859364,-0.31661293,0.0068692053,0.044150166,-0.31546593,0.3973331,0.2729465,0.5140395,-0.14677846,-0.64918965,0.15000394,0.16294205,-0.04059487,-0.5848259,0.46133608,0.14253734,0.890513,0.033493847,0.0094536375,0.26250497,-0.7869105,0.0506437,-0.17847715,-0.027196517,-0.6563454,0.17536046 +739,0.30094963,-0.26222074,-0.67121017,-0.22815846,-0.37706617,0.03356555,-0.33428904,0.35495436,0.06553112,-0.19558647,-0.34543756,-0.013276665,0.08773908,0.20471907,-0.21087824,-0.56726307,-0.18973678,0.1746712,-0.66281533,0.39990705,-0.6696069,0.22381398,-0.020379672,0.37126988,0.17490402,0.3832445,0.22945626,-0.08336316,0.119793765,-0.0626438,0.038958304,0.3633867,-0.5441964,0.018129697,-0.1632089,-0.5410219,-0.003556944,-0.51033235,-0.1846305,-0.80184275,0.25377887,-1.1563743,0.4914149,-0.07479478,-0.24784888,0.05307353,0.28854674,0.27410316,-0.31051746,0.09305088,0.33494428,-0.03266286,-0.23108599,-0.16709386,-0.010277712,-0.32757264,-0.5161497,-0.007768053,-0.52782065,-0.28893253,-0.28982404,0.2395258,-0.3715824,0.05155135,-0.22933014,0.14786871,-0.530784,-0.14224914,0.19632575,-0.10811308,0.3095048,-0.6628942,0.008844774,-0.1169701,0.49640143,-0.1386903,-0.2702532,0.2299214,0.40181985,0.3381096,0.13092202,-0.24413037,-0.20671035,-0.06524694,0.11605585,0.45669466,-0.24280919,-0.3304647,-0.2283806,-0.017533816,0.54210544,0.45813942,-0.032393955,-0.25523916,-0.035993896,-0.076696426,-0.21848756,0.5144534,0.5443194,-0.27664876,-0.32203102,0.40310404,0.48627567,0.3140101,-0.30130398,0.104141675,-0.048633274,-0.5788653,-0.12475676,0.046121,-0.02091775,0.55342454,-0.21684954,0.25886893,0.8777789,-0.08441499,0.19924746,0.032458305,-0.07595377,-0.29808414,-0.24893387,-0.18401195,0.15578064,-0.5919392,0.18610862,-0.1808466,0.5379127,0.06567263,-0.8154266,0.51243055,-0.5762711,0.08354013,-0.20355552,0.6004623,0.6554395,0.3603296,0.3338328,0.78684866,-0.23591012,0.11715747,-0.14737006,-0.45186013,0.08280725,-0.11630139,0.019133367,-0.5591507,0.13419388,-0.12042645,0.2065758,-0.06810656,0.55727255,-0.51103616,-0.072646074,0.23028043,0.41816857,-0.46310169,0.0053650737,0.7263936,1.0357602,0.991979,0.16534828,1.2292037,0.24249932,-0.06565248,0.15581325,-0.19124563,-0.7250914,0.11681255,0.4011863,-0.20310314,0.32353115,-0.02802467,-0.024417518,0.41327065,-0.32509705,-0.024418388,-0.19065541,0.30682883,0.16990614,-0.092948325,-0.39155334,-0.16695823,0.11607682,0.084053084,0.1539424,0.22884831,-0.18712555,0.09364339,0.06664442,1.2752503,-0.1460632,0.06794368,0.15493491,0.60177433,0.32271412,-0.16781534,0.05183991,0.3675637,0.4585294,-0.08416783,-0.70767,0.24613902,-0.17863056,-0.4711804,-0.057248946,-0.3822788,-0.25993288,0.092513785,-0.5372127,-0.17873038,-0.03271853,-0.337908,0.47860637,-2.6715074,-0.2690001,-0.1347097,0.35030115,-0.19133155,-0.30989167,-0.17479095,-0.5878539,0.40931982,0.30431396,0.37961584,-0.60716635,0.59373367,0.5719382,-0.64336216,-0.14126766,-0.8100818,-0.047230165,-0.04796923,0.35715148,0.068963416,-0.17873207,-0.10730649,0.20933107,0.6737357,-0.017212097,0.16432141,0.43483543,0.42095187,0.20710792,0.6503671,0.032695897,0.5517641,-0.23651713,-0.20488605,0.36372072,-0.26834723,0.345957,-0.2723362,0.06633879,0.48182693,-0.53662133,-1.0550691,-0.6327868,-0.4438348,1.1858264,-0.2882586,-0.44416997,0.18468116,-0.22655402,-0.097588226,0.038372852,0.59597063,-0.16217476,0.013435919,-0.7914809,0.04401448,-0.18164809,0.09817325,0.1076456,0.0541203,-0.44351065,0.64381284,-0.009637292,0.7103045,0.20065475,0.1064848,-0.14381617,-0.3495383,0.08114966,0.6721283,0.3670239,-0.06112459,-0.16521941,-0.20253843,-0.1586658,-0.109685495,0.06166423,0.49966466,0.7360598,0.0014304771,0.2104889,0.23881868,-0.0063750446,0.08890955,-0.31236318,-0.15155122,-0.09726724,0.09650283,0.4437424,0.67598855,-0.1006207,0.32783434,-0.26860362,0.24271114,-0.0959967,-0.5949372,0.62634075,0.51138246,-0.094390765,-0.037326165,0.49058825,0.6544951,-0.32010645,0.5424954,-0.67467946,-0.18969157,0.67525494,-0.15156493,-0.4499586,0.103300944,-0.31040332,0.12863488,-0.67432874,0.3205956,-0.4152528,-0.33529583,-0.31556848,-0.19544496,-3.1648114,0.27587444,-0.15580353,-0.11475761,-0.34247133,-0.25752208,0.542873,-0.6335406,-0.71628386,0.13905522,0.12863128,0.62701476,-0.079178296,0.10398579,-0.32859707,-0.14956376,-0.07446658,0.24177739,0.08547911,0.2867064,-0.12414701,-0.36283273,-0.084864154,-0.0773183,-0.5348371,0.09542114,-0.5206226,-0.4239518,0.024620024,-0.44564915,-0.119230695,0.47786653,-0.33177856,0.03902779,-0.20918854,0.07608645,-0.2572109,0.30017975,0.0642207,0.16752397,0.15331222,-0.029584328,0.088577546,-0.23696652,0.54142773,-0.078095146,0.22407283,0.019580098,-0.08617938,0.12835443,0.46272293,0.66412663,-0.2712734,1.2965463,0.36871448,-0.07602861,0.2378101,-0.26201078,-0.2682673,-0.6567142,-0.2779826,-0.16816638,-0.48408478,-0.5139641,0.07665749,-0.2722533,-0.8648358,0.76699287,0.021232843,0.24562131,-0.015486887,0.24966685,0.37050793,-0.16575827,0.10969984,-0.16977333,-0.113508,-0.5605578,-0.27979535,-0.713215,-0.44960243,-0.13952221,0.9025117,-0.29631165,0.023253312,-0.12365723,-0.2404616,-0.058980126,0.0779066,0.041776456,0.36729538,0.43266127,-0.006212913,-0.70457894,0.3002501,0.036949936,-0.16847602,-0.41628516,0.0070198956,0.7200105,-0.69282585,0.5294763,0.46010238,0.051868882,0.05460717,-0.74168885,-0.25369903,-0.0686528,-0.26645935,0.6027644,0.30281448,-0.9308492,0.6249619,0.4227284,-0.34295863,-0.83165646,0.60545564,-0.055005986,-0.11608613,-0.19594209,0.21843235,0.07933792,-0.06965113,-0.23102914,0.24753079,-0.3499312,0.3452164,0.14729425,-0.10164636,0.44322395,-0.17950381,-0.23148154,-0.79019505,0.027405115,-0.5342535,-0.24544086,0.2456322,-0.14469692,-0.14594488,0.27605942,0.076187685,0.41157183,-0.40569815,0.10386087,-0.007824288,-0.30438974,0.050529625,0.47701105,0.3912382,-0.32327688,0.5460875,0.08769998,-0.15781333,-0.008615416,0.007266141,0.36936614,0.0016693748,0.4143781,-0.20559162,-0.20928845,0.3870742,0.8519959,0.188958,0.5036841,-0.07420687,-0.12712501,0.31805867,0.03066745,0.26054975,-0.029597832,-0.44336334,0.02067075,-0.09405967,0.20356049,0.5064194,0.18325934,0.29356375,-0.073847756,-0.13332216,0.0015274241,0.27413386,0.0019419744,-1.0488135,0.5066343,0.32405132,0.78575337,0.60732627,0.039812163,-0.047290437,0.5832541,-0.3942249,0.14863874,0.54361016,0.0777563,-0.54172987,0.5974921,-0.55342716,0.28587836,-0.21255453,-0.039820984,0.1544264,0.17083277,0.26233575,0.8160535,-0.100649476,0.1545736,0.02684048,-0.1340731,0.108542964,-0.2902395,-0.17658183,-0.33988577,-0.2935122,0.84666437,0.49312624,0.44846958,-0.14209302,-0.088122286,0.004167098,-0.24210742,0.11757425,-0.0008822359,0.050170634,0.05752148,-0.47538307,-0.16717781,0.53874075,0.37078905,0.1148036,-0.2980568,-0.522201,0.2413778,-0.30891842,0.08440844,-0.04314186,-0.67152625,-0.039305013,-0.3001743,-0.50888026,0.43167737,-0.07802833,0.07228691,0.26054174,-0.063505605,-0.0018641949,0.10339904,0.02367994,0.71559787,-0.016281256,-0.10419553,-0.2761586,0.024831388,0.30511886,-0.28646758,-0.06515071,-0.38686758,0.13550319,-0.5770975,0.62291324,-0.104544625,-0.38766354,0.24551743,-0.19983785,-0.16867265,0.5908501,-0.083826974,-0.17223555,0.07384082,-0.15529846,-0.40518263,-0.049596198,-0.37647322,0.08033809,0.16498111,0.05695299,-0.21188134,-0.16402355,-0.11037542,0.6073403,0.13111484,0.46098855,0.32486355,0.028065791,-0.35000247,0.052783497,0.14150514,0.5943156,-0.029736198,0.0035006541,-0.32432097,-0.42261785,-0.12991042,0.27938712,-0.0081658345,0.17284076,0.058825575,-0.15631191,0.84805816,0.11826011,1.0830327,0.048022285,-0.36805943,0.088261716,0.549633,-0.084708095,-0.07239871,-0.39099157,0.82672024,0.512085,-0.14342448,-0.04403868,-0.36547136,-0.23429057,0.34552768,-0.3295236,-0.014669051,-0.07497525,-0.71148807,-0.44793823,0.22855714,0.21487276,0.046194825,-0.042485774,0.0690934,-0.02159172,0.1878627,0.40393013,-0.6841662,-0.34620827,0.15669645,0.26133215,-0.20775042,0.14793459,-0.47163773,0.4580382,-0.62118185,0.04950241,-0.58682525,0.13106802,-0.22843385,-0.36392447,0.032192286,0.03127049,0.36606342,-0.11864647,-0.45453766,0.020884844,0.26899672,-0.040022884,0.3200838,0.4897838,-0.27554145,0.13164315,-0.00026830344,0.64006627,1.1267953,-0.25112584,-0.021812009,0.4690881,-0.44319832,-0.60371804,0.20536079,-0.4770057,-0.1155536,-0.013547132,-0.38289532,-0.28750736,0.24453983,0.24608418,0.072234675,0.028994871,-0.6587715,-0.18277623,0.36846274,-0.19452792,-0.18925801,-0.22837189,0.36114758,0.8601595,-0.4726322,-0.3065793,-0.0147989895,0.35591096,-0.23841998,-0.548582,0.09460208,-0.2241661,0.50975734,0.13597257,-0.35380203,0.026550008,0.088489786,-0.45760366,0.07012628,0.33298463,-0.26518834,0.08154419,-0.45397267,0.1639644,0.9635316,-0.22812122,-0.08597231,-0.4861748,-0.47771516,-0.9043651,-0.30939755,0.09415216,0.19904248,0.11614697,-0.46773052,0.21448098,-0.17428207,-0.23531479,0.05642896,-0.34422314,0.5018415,0.13279022,0.64199245,-0.30216473,-0.80083615,0.12673004,0.19296111,-0.12239114,-0.5107024,0.8029282,-0.14956507,0.90703094,0.12497949,-0.1839834,-0.19697335,-0.41904914,0.20718424,-0.4194973,0.03067149,-0.9212483,0.09336236 +740,0.56504184,-0.26428002,-0.33035088,-0.17986129,0.09818319,-0.16084628,-0.3438336,0.383062,0.026598861,-0.47307372,-0.37311184,-0.21348034,0.05902947,0.36659554,-0.14781825,-0.8263526,-0.05362912,0.11251136,-0.34322166,0.8264467,-0.35919094,0.2122746,0.0156822,0.4060632,0.2362638,0.19875474,0.42811725,0.036199734,-0.43914554,-0.31726933,0.043551743,-0.36569175,-0.9286998,0.06434122,-0.270176,-0.46369347,-0.056173414,-0.40254298,-0.32532743,-0.9267311,0.46008325,-0.9717479,0.4329706,0.079405926,-0.27793762,0.5336828,0.002757122,0.35238537,-0.19033486,0.1405916,0.019327164,-0.10674933,0.07438059,-0.30664322,-0.03259043,-0.31728122,-0.6982978,0.06208529,-0.39419702,-0.15442495,-0.4226927,0.08009264,-0.39793697,-0.029557435,-0.30101886,0.37957212,-0.54323614,-0.43538523,0.19090278,-0.11374658,0.42322755,-0.7785745,-0.292018,-0.22212307,0.022891536,0.02214151,0.14453939,0.34096003,0.163924,0.45272747,0.098555945,-0.24793518,-0.31054184,0.095359646,0.14148864,0.38398695,-0.1591636,-0.47430804,-0.07078263,-0.13116597,0.40658584,0.22805047,0.178883,0.015877953,0.0029901613,0.039241564,-0.1841466,0.36568108,0.55076045,-0.38551295,-0.34100923,0.18669803,0.56224346,0.11695119,-0.032511696,-0.18703322,-0.095666885,-0.3714681,-0.18257587,0.45094696,-0.58814055,0.7875677,-0.08165566,0.010104214,0.60033065,-0.44063547,0.2203841,-0.09223312,0.056803137,0.0077575245,-0.23089974,-0.38149354,0.5269302,-0.45487592,0.044557467,-0.6713517,0.8412599,0.16057627,-0.7355432,0.2817829,-0.5702171,0.21133971,0.00094397366,0.6815875,0.560647,0.41340056,0.43736053,0.66797143,-0.44184992,0.059548646,-0.074331164,-0.27532387,0.12783875,-0.1677326,0.09511488,-0.2937849,-0.11795161,-0.098537914,-0.23700915,-0.12677318,0.5693186,-0.50591654,0.10159576,0.15919805,0.7255458,-0.23967123,0.0700554,0.7279517,1.354463,1.1961075,0.026573138,1.1588436,0.44298387,-0.2599297,0.12553683,-0.3876592,-0.56101334,0.25511009,0.5227282,0.1611226,0.48625818,0.0566055,-0.19416092,0.34435606,-0.5471676,0.13496782,-0.23699357,0.044721663,-7.417798e-05,0.003238852,-0.38458169,-0.4115477,-0.11350588,0.15791596,-0.03619622,0.36701074,-0.2925505,0.16405766,-0.0023363333,1.3224467,-0.055656105,0.03305657,0.13441895,0.60713047,0.25152704,-0.19269563,0.1531143,0.30658245,0.32128724,0.083238386,-0.66716963,0.09653256,-0.4748703,-0.46459588,-0.21493524,-0.2625894,0.26768902,0.19188808,-0.42168203,-0.1488969,0.033598777,-0.38385758,0.2958391,-2.1420965,-0.11046209,-0.059011634,0.38721666,-0.39082107,-0.38358355,0.0045645884,-0.5720503,0.5557677,0.4379519,0.4888353,-0.6459242,0.23508723,0.51440257,-0.43738997,0.059720974,-0.64955205,-0.16140719,-0.2645702,0.51142436,0.06322292,-0.18723446,0.10558405,0.18287188,0.7899143,0.27439496,0.0767727,0.2029993,0.32784513,-0.14011295,0.38754895,0.23245317,0.31626293,-0.19252236,-0.16924286,0.35755852,-0.45378232,0.3844154,-0.1636752,0.12651418,0.3566339,-0.520022,-0.97331095,-0.8006792,-0.54342216,1.24163,-0.07363575,-0.8302081,0.16134505,0.4535456,-0.17428648,-0.058520067,0.47380635,-0.21867244,-0.0024738212,-0.6811171,-0.06933702,-0.08937988,0.25864294,0.24176764,0.16844732,-0.6764629,0.96384686,-0.12921387,0.15480204,0.23617476,0.37340513,-0.23757581,-0.60586697,0.110683024,1.2114908,0.48078704,0.08696913,-0.3612133,-0.31761068,-0.31069276,-0.1341078,0.1604713,0.4498522,0.9517124,-0.028574288,-0.031716373,0.28514722,-0.062217385,0.03092291,-0.08479437,-0.5556763,-0.2246599,-0.032034222,0.75540656,0.6439996,-0.009921859,0.3474227,-0.19761552,0.31922337,-0.19264789,-0.24208474,0.64094543,1.2366084,0.075389616,-0.030250588,0.6628055,0.54060966,-0.3624512,0.6923816,-0.8596589,-0.3934631,0.5215099,-0.22129957,-0.37591025,0.24748272,-0.3087544,0.004445096,-0.7293605,0.439618,-0.5431461,-0.10299494,-0.8005727,-0.108941436,-3.4126647,0.19606912,-0.2812507,-0.29422453,-0.14652714,-0.15709133,0.2649171,-0.79924923,-0.57443565,0.18145858,0.15441728,0.66826075,-0.037267517,0.21503718,-0.32133707,-0.34151673,-0.607757,0.19361623,0.3115678,0.2907112,-0.11638814,-0.21588002,0.28413662,-0.27736565,-0.37616763,-0.18669839,-0.42846715,-0.53772885,-0.5426485,-0.677428,-0.37628317,0.626443,-0.31051666,0.039706334,-0.20566641,-0.022745693,-0.10441499,0.49400592,0.27695438,0.21569659,0.15673392,-0.17576475,0.060313474,-0.4123137,0.22361173,0.26545212,0.20950979,0.6239434,-0.29565015,-0.029226651,0.43301487,0.4714336,-0.06228007,0.7803505,0.50563765,-0.13382648,0.18159239,-0.31748962,-0.28627622,-0.70923525,-0.37571797,-0.1575586,-0.25035027,-0.58196455,-0.119125225,-0.4232796,-0.8351443,0.45042852,-0.33390525,0.35962403,-0.010479701,0.45822254,0.42026138,-0.1856672,0.015589903,-0.105175644,-0.038527038,-0.48197377,-0.20523536,-0.7407808,-0.4405631,0.15197964,0.70517033,-0.041898977,-0.22159295,0.13103186,-0.13402648,0.16400032,-0.16002405,-0.23121409,-0.16087632,0.45783997,0.22655845,-0.66829205,0.39392146,0.33736858,-0.22485574,-0.57000226,0.3599185,0.6232765,-0.58863515,0.470842,0.4452504,0.12234994,-0.04572307,-0.6202163,-0.095838256,0.0855653,-0.08497783,0.26188335,0.32474864,-0.6864643,0.41755715,0.15719956,-0.24704552,-0.8378346,0.549173,0.02476926,-0.43900228,-0.10486793,0.355656,-0.1619228,0.11557921,-0.3854101,0.34946087,-0.6188963,0.11032017,0.4008913,-0.022427635,0.28049144,0.019905902,-0.17916864,-0.81496066,0.37317792,-0.5905035,-0.376806,0.37413788,0.21316051,-0.14535433,0.36299053,0.37898898,0.48089924,-0.22411136,0.213328,0.006523823,-0.21256156,0.58633536,0.46290585,0.45819834,-0.5380481,0.5287282,0.031700004,-0.31445524,-0.02969049,-0.15759511,0.3464055,0.060287118,0.20478071,0.16466142,-0.14939268,0.21435429,0.3409526,0.22129504,0.65876323,0.3090411,-0.007519815,0.44584584,0.052241772,0.34226513,-0.005633225,-0.522986,-0.0008491675,0.12685578,-0.10321781,0.42593512,0.007005289,0.3608947,-0.16134834,-0.24239586,0.12746552,0.36423588,-0.367522,-1.0339206,0.17934541,-0.02576862,0.8029652,0.93457884,-0.088846505,0.04506499,0.68971604,-0.27335957,-0.052971806,0.3772788,0.3619561,-0.6472454,0.70477957,-0.64466053,0.32092705,-0.08359919,0.00041747093,-0.22023441,-0.0035705466,0.38026595,0.7662339,-0.33572626,-0.057000175,-0.3829045,-0.0703784,0.16194208,-0.3592259,0.5189352,-0.39004615,-0.4094515,0.7315828,0.26972398,0.40953216,-0.026718894,-0.104763575,-0.010792524,-0.22829445,0.4347589,-0.0047748634,-0.0076975427,0.20561196,-0.67819715,-0.26607993,0.42945084,-0.28159383,0.10543198,0.025690848,-0.18268526,-0.01727879,-0.16382399,-0.22549069,-0.01341629,-0.9055242,0.060041886,-0.35998404,-0.2003829,0.401973,-0.24965046,0.29746985,0.13689287,0.007785145,-0.37098244,-0.11696967,0.4507127,0.6344531,-0.042951774,-0.2544999,-0.4852829,0.2920697,0.19732577,-0.3324119,0.20872398,0.0015649647,0.06293199,-0.71664613,0.65129876,-0.26215807,-0.253674,-0.1268486,-0.10600742,-0.28651896,0.8183832,-0.27441227,-0.16547604,0.041240077,-0.23454052,-0.23282565,-0.18533067,-0.039029032,0.09204415,-0.007098069,-0.1987368,-0.15555006,0.05239128,0.011186059,0.6258337,0.1164462,0.22911374,0.39110544,-0.009369795,-0.50694966,-0.14689963,-0.058909774,0.4439467,0.17443077,-0.10447845,-0.52127326,-0.5913936,-0.35064164,0.1795767,-0.016006196,0.20210437,0.07066723,-0.2435873,0.8510001,0.2065686,1.3412309,0.10401791,-0.39804545,-8.930763e-05,0.70803213,-0.17832167,-0.16873227,-0.50365907,1.1297301,0.5701405,-0.18518169,-0.12677571,-0.24794616,-0.07791919,0.17485283,-0.24950643,0.023771381,-0.034646336,-0.7493718,-0.28960487,0.19708174,0.49349153,-0.048921734,-0.1295266,0.13744795,0.35816178,0.20995569,0.54466337,-0.2581304,-0.3325186,0.49559283,0.037676882,0.024353495,0.19806974,-0.1826319,0.31940868,-0.71988577,0.18003927,-0.5057496,0.086438745,0.12419043,-0.5160077,0.34428975,0.084813856,0.4738834,-0.4150394,-0.43965206,-0.20219272,0.606765,0.1770962,0.30317342,0.51590586,-0.2848709,0.05411033,-0.0882681,0.7291882,1.5078692,-0.13846181,0.08398994,0.11762782,-0.36138716,-0.761116,0.5673453,-0.31755853,0.07356299,-0.2669526,-0.4626557,-0.60745937,0.2749655,0.13460824,-0.23625262,0.18428516,-0.6825159,-0.47196338,0.1001387,-0.28336892,-0.21360414,-0.33066207,0.2634165,0.8105922,-0.32825693,-0.4228027,-0.026037624,0.18836217,-0.23817484,-0.5169126,-0.15930773,-0.42418993,0.37449726,0.056616705,-0.32411483,0.060425565,0.2327938,-0.4755601,0.0512993,0.014675613,-0.41790447,-0.0727798,-0.23772933,0.16294658,0.76821685,-0.079105414,-0.09158959,-0.47570232,-0.50604177,-0.9427845,-0.44739744,0.57947445,0.0181901,0.036535166,-0.55757517,0.14877276,-0.38494006,0.27456886,-0.11947634,-0.66467285,0.3267212,0.20667733,0.60457724,-0.10881519,-0.54100627,0.16737337,0.21433872,-0.051129717,-0.5620811,0.36668417,-0.11499705,0.84924334,-0.020329192,-0.0034056653,0.18106775,-0.7063839,0.06534322,-0.23898083,-0.31023604,-0.6123926,0.19635399 +741,0.5696865,-0.2069855,-0.55112034,-0.21149144,-0.42337063,-0.0766197,-0.11709587,0.42077082,0.36073413,-0.20158297,-0.3076707,0.063227914,0.08119873,0.37435108,-0.039471373,-0.8875367,-0.026566116,0.25420317,-0.66976106,0.54190606,-0.44487906,0.5175234,0.03739901,0.18870145,0.03931683,0.2911579,0.17475322,-0.093918435,0.08689998,0.029996442,-0.14111637,0.28773987,-0.7661893,0.33253935,-0.20723218,-0.4217052,-0.030813249,-0.35311365,-0.11960673,-0.6116453,-0.14722334,-0.7684024,0.6757855,-0.05885722,-0.28875127,-0.30698398,0.101723716,0.26679733,-0.3519734,0.22564353,0.27042574,-0.1549642,-0.22855559,-0.25679594,0.041621998,-0.73656046,-0.40762642,-0.16416304,-0.69199884,-0.1672534,-0.07384474,0.13414827,-0.34204024,-0.024352971,-0.061534368,0.16674429,-0.42193344,0.0048640827,0.41030917,-0.16118607,0.13845456,-0.4166158,0.02539107,-0.14429735,0.48136535,-0.06878508,-0.40896142,0.33739567,0.3998397,0.4773657,0.35378858,-0.38494205,-0.13702407,-0.12595896,0.06108158,0.42865035,-0.22290626,-0.3410786,-0.2855968,0.1283687,0.48965344,0.33587787,0.09630777,-0.14140782,-0.13650289,-0.08994064,0.11280731,0.2545616,0.45895293,-0.24519898,-0.3378414,0.3025813,0.574478,0.33195448,-0.097841136,0.20811036,0.03764604,-0.5270094,-0.21140875,-0.112792894,-0.0946381,0.5480535,-0.08990962,0.046632767,0.9473474,-0.16547777,-0.06158736,0.17275293,-0.066024594,-0.21556714,-0.2228805,-0.12526648,0.28596938,-0.73038864,0.018251158,-0.33324736,0.59536594,0.26073998,-0.70082504,0.37570164,-0.62288064,0.1267733,-0.07238803,0.6864556,0.82618654,0.62319064,0.23358239,0.71671385,-0.23886193,0.2370994,0.020376233,-0.38888747,0.24838671,-0.24381964,-0.14490724,-0.5771654,0.14704631,-0.05444583,-0.10410835,0.11320967,0.5171516,-0.6318459,-0.230325,0.27515206,0.6055785,-0.3365822,-0.19899948,0.7587575,0.9955378,0.9382815,0.05930466,1.3968283,0.38598138,-0.2548799,0.12949872,-0.12460453,-0.6670964,0.068662375,0.3202117,-0.52072495,0.65176404,0.00316464,-0.08025449,0.3241696,-0.37186685,-0.027990596,0.14941359,0.42063951,-0.2277747,-0.31440324,-0.5496945,-0.11951769,-0.14539686,0.0086598145,0.0020457138,0.48479408,-0.18557183,0.3737066,0.11750353,1.3189352,-0.07295471,-0.057089206,-0.034481056,0.29652295,0.3292796,-0.2531877,-0.116567865,0.44953978,0.36935857,-0.051607825,-0.5662798,0.17614831,-0.35098097,-0.46945497,-0.2185657,-0.3131698,-0.13826455,-0.025859952,-0.28647953,-0.20402035,-0.11150625,-0.23749977,0.5003147,-2.3552108,-0.27622825,-0.058724973,0.44639567,-0.29232603,-0.18744287,-0.16669147,-0.5455167,0.0630837,0.1892223,0.45951027,-0.7761845,0.52159774,0.54669875,-0.6387304,-0.2077918,-0.77340627,0.12582439,-0.052804615,0.46430352,-0.057171524,-0.18254958,-0.02435344,0.15416387,0.5687399,-0.002515559,0.1960226,0.4410175,0.42685083,0.12603125,0.41497824,-0.060773734,0.71325266,-0.26488388,-0.15987752,0.30751193,-0.19871685,0.4171661,-0.058327682,0.041435283,0.49513948,-0.5493091,-0.9891001,-0.63759434,-0.23932296,0.93037677,-0.41031855,-0.25926536,0.1827214,-0.19468322,-0.12595548,0.0651463,0.4540406,-0.06007294,0.23750831,-0.6705056,-0.08377552,0.015648732,0.07395603,-0.025243584,0.023690151,-0.32796907,0.79791063,-0.1359256,0.6373122,0.2895908,0.2784716,-0.08080302,-0.43783486,0.07260113,0.7849979,0.46004808,0.059988625,-0.1433816,-0.22720931,-0.28235295,-0.04586238,0.03793512,0.6741593,0.8607558,-0.15151985,0.0071141412,0.30192173,0.102622345,0.1838151,-0.14886051,-0.1189013,-0.06699031,0.21004327,0.3239085,0.93481433,-0.34674644,0.45269495,-0.1843393,0.40328577,-0.005990817,-0.6803304,0.61418366,0.7714287,-0.19880359,-0.019476043,0.5699427,0.35223535,-0.24895668,0.5343177,-0.67895544,-0.20240852,0.66746765,-0.13276969,-0.40041643,0.32702425,-0.26297525,0.30585247,-1.0424526,0.47210822,-0.33890778,-0.60067135,-0.47816765,-0.056400232,-3.005035,0.33106655,-0.20543535,0.035596773,-0.2526008,-0.07069396,0.43221045,-0.99273044,-0.74858326,0.16580415,0.18800828,0.6393782,-0.15098101,0.14262359,-0.23630427,-0.59952956,-0.11766322,0.24733016,0.013193598,0.25823057,-0.21906275,-0.4733634,-0.15751587,0.0611002,-0.44837093,0.153024,-0.5994845,-0.48281166,-0.08544976,-0.64989114,-0.102628,0.60873157,-0.4142515,-0.025007706,-0.13935901,0.041399583,-0.33944905,0.0770328,0.010801543,0.09591883,0.14756086,0.006713434,0.047903106,-0.25700516,0.38747132,-0.016461818,0.5423377,0.097104035,-0.31512716,0.12422998,0.63827175,0.5812508,-0.239417,0.9967797,0.3435264,-0.14392778,0.29802144,-0.18703185,-0.34981456,-0.743959,-0.4731299,-0.22723722,-0.56093514,-0.54763836,0.11853207,-0.34048393,-1.0088083,0.6202707,-0.034574773,0.4056622,-0.12748513,0.2745969,0.55932796,-0.2294726,-0.012308089,-0.18763274,-0.2379121,-0.5367943,-0.26625365,-0.6345238,-0.6509501,0.26109326,1.2493789,-0.41449302,0.18196991,-0.028626623,-0.0996027,0.11080097,0.039368566,0.07335938,0.13533613,0.45542637,-0.06965435,-0.58302057,0.34650186,-0.18301457,-0.15846553,-0.42133707,0.13709368,0.59506786,-0.9240811,0.565463,0.35655925,-0.02569695,0.26075587,-0.78374606,-0.08261152,-0.041393492,-0.1964173,0.43336704,0.29181,-0.71084285,0.41333124,0.37298945,-0.5914092,-0.6648118,0.35947788,-0.09229922,-0.18059331,-0.091778666,0.36550236,0.15398349,-0.14202751,-0.256374,0.35332835,-0.4489198,0.2037347,0.20697007,-0.19912902,0.20197098,-0.010375812,-0.35596198,-0.9267285,0.17635132,-0.4394258,-0.28562242,0.27513212,-0.011845978,-0.03724942,0.14526588,0.29480812,0.44571275,-0.58401,0.11701668,0.060914986,-0.5902739,0.4010321,0.5287065,0.4312452,-0.26565042,0.46929044,0.20200482,-0.14280623,-0.04108572,0.03608911,0.40947965,0.046027504,0.43231556,0.0035887407,-0.1716891,0.37882137,0.89927673,0.061729554,0.35348478,0.0696087,-0.07499977,0.26284623,0.12418553,0.30251104,0.0931867,-0.41980523,0.018927088,0.0518687,0.24555095,0.5770853,0.47582918,0.31634977,0.012741639,-0.12111077,0.17417838,0.20920914,0.11463681,-1.3470674,0.38140014,0.26695168,0.78282887,0.41821682,0.2829787,-0.18449894,0.39377677,-0.29188687,0.17217548,0.4146876,-0.077400714,-0.435538,0.7495619,-0.60587543,0.37705415,-0.17695038,-0.06791038,0.28890646,-0.008420481,0.39454016,0.9774599,-0.10044468,0.027042232,-0.09897652,-0.07328617,-0.029397221,-0.36134398,-0.03441841,-0.5320394,-0.24499318,0.95712674,0.39529765,0.35615075,-0.26174054,-0.070853546,0.085785426,-0.27017382,0.33489954,-0.13427149,0.120643534,0.045732655,-0.41408622,-0.20360534,0.53416324,-0.07108804,0.06924125,-0.31628388,-0.3624676,0.048380595,-0.20208976,0.14287224,0.027772363,-0.8439437,0.09001201,-0.5434481,-0.5727268,0.6012445,-0.096377425,0.036458276,0.2219772,-0.017086228,-0.14319307,0.2868857,0.060214676,0.8085006,0.054971304,-0.28046092,-0.35089114,0.35094145,0.34178102,-0.4072933,0.12175115,-0.42678452,0.27579132,-0.5974236,0.61445415,-0.0002784087,-0.35058883,0.1019021,-0.19323975,-0.07990478,0.4822892,-0.19141378,-0.25147384,0.11548673,-0.13366023,-0.49833775,-0.12422236,-0.34121898,0.21116343,0.17809698,-0.13352199,-0.08375224,-0.16524711,0.010528592,0.29687926,0.056246288,0.3699562,0.36985812,-0.1532179,-0.1391605,0.16533202,0.2950594,0.3492063,0.06981658,0.047053773,-0.569878,-0.33999908,-0.4098509,-0.032248404,-0.2293145,0.2844292,0.00028409177,-0.13360353,1.0334008,0.10795701,1.2734203,-0.021404313,-0.48072174,0.09986369,0.64003175,-0.13003637,-0.17872073,-0.47079355,1.2357908,0.6938699,-0.17246646,0.0033046375,-0.40862572,-0.29379278,0.37480405,-0.43039668,-0.20047572,0.109541826,-0.6100308,-0.3191732,0.26055625,0.13007256,0.008782299,-0.010083766,-0.0064697172,0.072338,0.04282707,0.21775325,-0.70085657,-0.24290179,0.092027776,0.37266123,-0.073547624,0.21093303,-0.3663407,0.39475724,-0.8011787,0.15414777,-0.49023598,0.18295905,-0.28768164,-0.57190394,0.14270924,0.12957807,0.212553,-0.3153507,-0.37649786,-0.08284791,0.4564699,-0.16642052,0.14491084,0.6960631,-0.35794383,-0.09702645,0.082698226,0.54724085,1.2935905,-0.27629995,-0.112767644,0.3318861,-0.5494927,-0.6097449,0.38182232,-0.46192935,-0.04463828,-0.2447696,-0.5293926,-0.62685925,0.2666834,0.18161097,0.22385424,0.19923164,-0.6932794,0.13439561,0.16703026,-0.41113853,-0.19738935,-0.1794454,0.3893811,0.9133216,-0.43232712,-0.44032237,0.061265595,0.174644,-0.20946282,-0.63274866,-0.13762559,-0.13371307,0.35688788,0.09857046,-0.26359898,-0.012577082,0.06654636,-0.3185476,0.10731798,0.39386448,-0.28067842,0.2405766,-0.3910178,0.006509439,0.9091116,-0.062278632,-0.11796535,-0.6034985,-0.5535945,-0.8629065,-0.59470993,0.032922648,0.34054375,0.08240864,-0.4851671,0.22610842,-0.09145541,-0.12845768,0.0930669,-0.36163378,0.48492196,0.237983,0.47544834,-0.31201342,-1.1181757,0.24164644,0.27759016,-0.13793764,-0.7699799,0.6318824,-0.2608561,1.0039614,0.12090878,-0.15175436,0.101112515,-0.59612215,0.22521186,-0.32053953,0.19889832,-0.69937956,-0.11086547 +742,0.4234263,-0.17035034,-0.663369,-0.107421964,-0.3407318,-0.035459004,-0.19977093,0.6911924,0.1427249,-0.49053803,-0.13083972,0.0018070459,-0.06692688,0.534785,-0.17514093,-0.70430756,0.015568308,0.09684982,-0.41707852,0.52326167,-0.36941054,0.32082814,0.030259622,0.3533986,0.16596791,0.33719692,0.09958399,-0.10241208,-0.120687164,-0.10042238,-0.06024409,0.3164621,-0.533779,0.28549525,-0.22783054,-0.4453513,-0.020442689,-0.39604598,-0.3102477,-0.63246995,0.2965415,-0.6871193,0.44698793,-0.20219073,-0.3424958,0.20083642,0.04265289,0.38852087,-0.28082457,-0.040422622,0.09519367,0.04878277,-0.12673847,-0.11385587,-0.13352858,-0.34854352,-0.49194005,0.19990383,-0.5050107,-0.030598955,-0.14412716,0.15807836,-0.44087467,0.1139905,-0.08627207,0.42404416,-0.46709055,-0.05851133,0.35006294,-0.20478716,0.08505047,-0.6380855,-0.02559789,-0.08325432,0.25974697,-0.09899386,-0.06701653,0.33338413,0.20790777,0.54826474,0.164258,-0.26526582,-0.3087096,0.002800552,0.078184225,0.53607994,-0.2187797,-0.43939593,-0.2350792,-0.034960277,0.3061398,0.15861756,0.0853,-0.17796895,-0.0664667,0.0910897,-0.2576461,0.28038776,0.4282896,-0.28480235,-0.14728622,0.21676491,0.6191661,0.24035987,-0.084480904,-0.0052210093,0.12830615,-0.5023797,-0.24510165,0.019489478,-0.17904289,0.39261714,-0.12607294,0.3183685,0.76887375,-0.21482484,0.15128572,0.11852051,0.016414348,-0.18423165,-0.38622743,-0.24785297,0.25610095,-0.53712064,0.06502739,-0.113258585,1.0069392,0.14059442,-0.6559252,0.28129327,-0.52232134,0.1737948,-0.21085861,0.56998825,0.7498774,0.40469846,0.13825302,0.82546157,-0.42841163,0.15998799,-0.08179452,-0.504258,-0.0129185,-0.10838081,-0.07913576,-0.47952995,-0.028693784,0.09026216,0.031341977,0.09800044,0.33743945,-0.6258103,-0.072036244,0.01651992,0.89683354,-0.30044428,-0.112501845,0.8149427,0.9180353,0.99766105,-0.12087878,1.1410258,0.29234868,-0.19406764,0.2385216,-0.29357386,-0.64170563,0.2921986,0.5314007,-0.18968649,0.2923941,0.03264092,-0.016321806,0.65271103,-0.3585885,0.15279561,-0.27427247,0.24194805,0.047408298,-0.25947773,-0.554568,-0.17061119,0.018274406,-0.053164966,0.006989805,0.335911,-0.11497311,0.5177106,0.032675937,1.6375324,-0.063642934,0.16494404,0.13007966,0.4957789,0.2071758,-0.21343452,-0.053146135,0.015371005,0.42172125,-0.061476786,-0.5628136,-0.0025064112,-0.30276024,-0.61700946,-0.2892926,-0.3250187,-0.05583527,-0.07520788,-0.5142643,-0.18080519,-0.11594292,-0.11257914,0.44810677,-2.5658312,-0.23953795,-0.20452248,0.13646139,-0.43764782,-0.4264518,-0.17456697,-0.559756,0.44969225,0.31825295,0.5921487,-0.4670638,0.53437483,0.4077746,-0.4900331,-0.09203994,-0.60425895,-0.099130236,0.018423678,0.30668512,0.090060234,-0.20932245,-0.11756988,0.038055968,0.54024255,-0.24110514,0.08980124,0.17645182,0.24152806,-0.028859966,0.47984487,0.094693884,0.5549554,-0.47423235,-0.3673447,0.4318616,-0.1766644,0.26690808,-0.19489251,0.15396528,0.35516948,-0.392726,-1.038999,-0.74350095,-0.22389202,1.1453184,-0.122718245,-0.39300582,0.34985936,-0.073802955,-0.1026352,0.029189177,0.2686426,-0.10110974,-0.09627311,-0.7484389,0.1324519,-0.12528819,0.057372916,0.051402688,-0.16337095,-0.39548352,0.558615,-0.11915506,0.35013387,0.4737023,0.22038746,-0.06496113,-0.35716012,0.03159689,1.0872122,0.48848936,0.1745992,-0.28169888,-0.21313958,-0.28110474,-0.13141476,0.06612139,0.44856745,0.7710387,0.057810165,0.19780447,0.1881276,0.076639935,0.0544273,-0.017446153,-0.45954037,-0.190933,0.08750465,0.59268445,0.52541536,-0.10340886,0.41806015,-0.1281853,0.33265713,-0.08792669,-0.5142323,0.6081918,0.64589715,-0.27536508,-0.32543322,0.69024074,0.44198498,-0.17232952,0.4476798,-0.5706117,-0.41734436,0.4711873,-0.1828513,-0.40745768,0.07447515,-0.18915187,0.08688988,-1.0329695,0.10686171,-0.40830666,-0.4204153,-0.53218406,-0.35870874,-3.3480568,0.16930181,-0.24468149,-0.0726459,-0.11384197,-0.078771256,0.2587144,-0.7029527,-0.6158249,0.19226743,0.11170414,0.6919539,0.037060335,0.21429211,-0.18832545,-0.22295591,-0.18665093,0.07299469,0.24248883,0.20783332,-0.011709136,-0.61979043,-0.1448434,-0.112907395,-0.43611935,0.12938806,-0.761845,-0.48235533,-0.32356185,-0.554968,-0.18005668,0.80095655,-0.36458716,-0.0019076546,-0.1771843,0.119077,-0.1208855,0.29542622,0.035976384,0.045402132,0.12273395,-0.14874893,0.16248983,-0.4386086,0.238606,0.19252697,0.5539265,0.34756377,-0.18987218,0.31180942,0.7659063,0.7999087,-0.15740258,0.7874139,0.54379845,-0.117825605,0.3511367,-0.16411562,-0.3167149,-0.61448187,-0.46343967,-0.09861887,-0.4227466,-0.41380423,0.09988515,-0.4233637,-0.9551865,0.6240692,0.043205883,0.2075008,0.008698591,0.27131045,0.44750702,-0.2657004,-0.15044312,-0.090193614,-0.04577681,-0.54785955,-0.36898836,-0.6417329,-0.5681948,0.01798133,1.3400985,-0.19301318,-0.012065713,0.047118597,-0.26560572,-0.031934105,-0.007227234,0.0066515086,0.124822125,0.43082136,-0.115449294,-0.6940385,0.46495238,-0.1707428,-0.21060807,-0.51793426,0.025195312,0.5496685,-0.62224096,0.3085047,0.33084354,0.108282804,0.16108796,-0.505427,-0.12051882,-0.07235732,-0.087881476,0.43896765,0.28785127,-0.7569851,0.5999808,0.40430126,-0.3087551,-0.8004978,0.30782902,0.0016516368,-0.09409786,-0.07214544,0.22512527,0.28524467,-0.079753764,-0.1667101,0.10502598,-0.3884678,0.32955977,0.2789348,-0.13560422,0.44356412,-0.2972077,-0.1973636,-0.79589516,-0.10900601,-0.53763264,-0.2432975,0.18630156,-0.030735135,0.030643739,0.014279672,0.15956756,0.32745117,-0.30082408,0.09433807,-0.06527322,-0.32419714,0.37383315,0.3988921,0.49418122,-0.48255265,0.5213651,0.117058985,0.020977871,0.0057053566,0.07872149,0.58112216,0.006271867,0.35099104,-0.1298334,-0.19028965,0.30244294,0.86420316,0.07018098,0.39861426,-0.00039885045,-0.21320601,0.06270576,0.091326475,0.025449192,0.11700957,-0.5336325,0.092848584,-0.009123294,0.1977196,0.67422545,0.16959913,0.41397256,-0.012879023,-0.24353638,0.15116136,0.055420827,0.036942873,-1.2780203,0.45667452,0.18607269,0.8451899,0.30291212,0.108505875,-0.11091081,0.657753,-0.22072172,0.16975716,0.42412922,-0.047024094,-0.5277655,0.58341104,-0.6938857,0.66874295,-0.023573844,0.03490139,0.09238207,-0.054745514,0.50856787,0.8155622,-0.1418101,0.01055046,-0.008153359,-0.38461182,0.032879394,-0.33733633,-0.023870716,-0.48840863,-0.19383913,0.73803616,0.5306311,0.2887253,-0.12317339,-0.10528404,0.16683461,0.018949818,0.21636425,-0.23693973,0.19467165,-0.09832606,-0.5401794,-0.20273873,0.5947745,0.27859566,0.27927315,0.006303795,-0.25780478,0.30690292,-0.15718648,-0.0073812,-0.114904605,-0.63909245,-0.0055360156,-0.41752586,-0.38834932,0.36778578,-0.061089277,0.23181792,0.07920984,0.1330416,-0.47333214,0.4712195,-0.2051195,0.84120595,-0.22529773,-0.2365654,-0.33206236,0.2696814,0.3750494,-0.28387988,-0.10491598,-0.41618,-0.03165548,-0.5905991,0.29891452,-0.18739475,-0.3643151,0.15213431,-0.1650805,0.020465728,0.4519834,-0.089149885,0.006423326,0.025825357,-0.046535805,-0.23409595,-0.26889998,-0.15967952,0.19316538,0.24597533,0.09658452,-0.12147759,-0.31632563,-0.08381152,0.37743747,0.010422114,0.18909976,0.32728177,0.06023473,-0.3954552,-0.20839219,0.2493649,0.5052676,-0.06155291,-0.13366638,-0.4838721,-0.36472327,-0.26132557,0.1783209,-0.16130209,0.3217798,0.101391144,-0.24446417,0.85627365,0.10872808,1.3196816,0.21582727,-0.36538965,0.10601142,0.45306188,0.022111956,0.044929262,-0.35845244,0.9552183,0.5226977,-0.11323481,-0.20537631,-0.5119877,-0.072502896,0.16892567,-0.27251822,-0.2291381,-0.14312126,-0.635805,-0.3925647,0.36459142,0.2034683,0.15187697,-0.13373956,-0.07788149,0.14757185,0.08689329,0.41125223,-0.51510227,-0.16222158,0.27476135,0.29373324,-0.1598679,0.24881724,-0.67880875,0.46447846,-0.61637217,0.11547522,-0.31512466,0.20288907,-0.19534184,-0.29357353,0.24372266,-0.09867811,0.41680384,-0.31394902,-0.39106825,-0.19390675,0.6052549,0.23824094,0.17718396,0.69336736,-0.36385617,-0.07368309,-0.04974809,0.5521037,1.0016117,-0.43430457,0.025314363,0.40963826,-0.13698411,-0.47639456,0.2123409,-0.25763187,0.1785842,-0.11367126,-0.31312707,-0.5393379,0.3144352,0.18253666,-0.036093004,0.050038613,-0.533499,-0.09309939,0.24442455,-0.24453542,-0.28037682,-0.33066407,0.17838229,0.64944166,-0.32850266,-0.41025606,0.25271636,0.3725173,-0.0315949,-0.3963063,-0.04493339,-0.20979027,0.2172695,0.20177814,-0.38057813,-0.09650838,0.046635844,-0.48796046,0.1401449,0.32591572,-0.3868977,-0.03764119,-0.16361447,-0.061501577,0.90969294,0.0032951555,0.38422468,-0.5725404,-0.3696372,-0.88570637,-0.45684427,0.5809008,0.2809827,-0.03070793,-0.6086978,-0.04705327,-0.18136701,-0.054311045,-0.07215386,-0.47810376,0.3905442,0.06649408,0.51368153,-0.11475237,-0.6798437,0.07643737,0.021467602,-0.17409934,-0.5339107,0.49118462,-0.1410899,0.9075671,0.08165436,0.0871028,0.35460302,-0.51034963,-0.06023197,-0.32478848,-0.266018,-0.75280035,0.042087328 +743,0.34502682,-0.18893312,-0.43987247,-0.14202176,-0.29719287,-0.11495774,-0.108938105,0.29419956,0.3513989,-0.27198493,-0.33299538,-0.23775594,0.038002256,0.44007668,0.03004075,-0.83969116,0.056065354,0.29896978,-0.88524145,0.4972363,-0.5849229,0.3492544,0.32955104,0.25930893,0.06651393,0.40279356,0.25427365,-0.19964185,0.073150046,-0.061250273,-0.14061886,0.09547751,-0.65105444,0.12643637,-0.25662342,-0.30297232,0.06994205,-0.44809297,-0.22750837,-0.84395635,0.12435722,-1.017946,0.45601347,0.15693149,-0.18623263,-0.23949443,0.3492057,0.42454073,-0.4967724,-0.026285747,0.30260855,-0.40889332,-0.33351782,-0.42184147,0.08853997,-0.30418342,-0.6135091,0.06478633,-0.42643154,-0.2257031,-0.28833395,0.24113451,-0.41733298,0.02870191,-0.17960007,0.31850946,-0.35801652,0.1196546,0.41740197,-0.28289688,0.021372356,-0.49490628,-0.08488078,-0.14656748,0.56587136,-0.03930799,-0.33611032,0.4976107,0.37534556,0.61225045,0.37819785,-0.53047186,-0.11100424,-0.15680638,0.20669033,0.53117824,-0.2003734,-0.25628906,-0.07841523,0.07123555,0.36482093,0.47913587,0.045940023,-0.21672262,-0.16253108,-0.12838349,-0.081226975,0.26645538,0.54714346,-0.37181532,-0.47468802,0.26469252,0.55817044,0.11275812,-0.11156233,-0.14485613,-0.0040101456,-0.6577447,-0.17749563,0.05649685,-0.18691875,0.522755,-0.19295454,-0.044972144,0.9917538,-0.18694633,-0.10716271,0.055177514,-0.0078083645,-0.15918277,-0.3796193,-0.17217591,0.37684214,-0.5720271,0.025375733,-0.40492913,0.84709126,0.22005889,-0.72250134,0.34552786,-0.6587025,0.2984099,-0.04243072,0.7187005,0.7534354,0.42554376,0.57311183,0.8717886,-0.38305393,0.22329624,-0.02385696,-0.39194828,0.14048925,-0.33660376,0.32637292,-0.51423746,0.06468446,-0.2454662,0.059506793,0.09349025,0.45990497,-0.6685832,-0.10276531,0.21206562,0.67834365,-0.28838906,-0.10761947,0.6700605,0.9346203,0.97314477,0.014139111,1.3722014,0.4118427,-0.29415178,0.27488083,-0.29296127,-0.8192009,0.10244885,0.36773872,0.061814368,0.095337085,0.037159126,-0.02963178,0.45650366,-0.5306283,0.09227362,-0.06967513,0.26146248,0.020657154,-0.14870372,-0.2873909,-0.33592713,-0.11183376,-0.2500606,0.22428502,0.33847257,-0.26843506,0.22606048,-0.19688764,1.4580079,0.05770052,0.076002665,0.16912204,0.44964832,0.20215978,-0.17108813,-0.17880152,0.29751128,0.37480247,-0.08195953,-0.5044645,0.14895439,-0.47156766,-0.48143375,-0.2129433,-0.36290386,-0.07496999,0.14005814,-0.4268564,-0.28498414,-0.14381202,-0.3614807,0.5796376,-2.4261947,-0.3274215,-0.15914701,0.37270817,-0.32899746,-0.2029701,-0.25510642,-0.59937865,0.34001943,0.12861617,0.4847671,-0.70026267,0.45684382,0.46616328,-0.67682683,-0.3406517,-0.8239906,0.019958781,-0.10829335,0.37152004,0.09602455,-0.22460556,-0.20624688,-0.109693676,0.77163476,0.03134169,0.088397376,0.7186823,0.38759264,0.12301838,0.5727328,0.056110024,0.72741735,-0.47092703,-0.2792958,0.47402197,-0.39893314,0.54925287,-0.1250152,-0.048535507,0.6032443,-0.5046893,-0.98394686,-0.6673371,-0.4521166,0.9515384,-0.39864486,-0.3699005,0.19913235,-0.2210934,0.032300647,0.071283236,0.7783674,-0.037546735,0.2056698,-0.6240555,0.12988052,-0.007797457,0.23019892,0.043242656,-0.06342356,-0.33743298,0.7764348,-0.0806083,0.56093985,0.27900997,0.2087298,-0.23697218,-0.2685966,0.17651083,0.7512485,0.23949903,-0.14610602,-0.06551433,-0.40862542,-0.18203704,-0.55146414,0.0018751415,0.6772096,0.76897776,-0.24823347,0.07856279,0.37949392,-0.069355264,0.008575748,-0.07760095,-0.25790736,-0.07212848,0.16066901,0.5174466,0.95054847,-0.11826154,0.5308537,-0.18686983,0.5123302,0.10895967,-0.57606035,0.5670884,0.7384215,-0.06260658,0.079566665,0.53874356,0.43322638,-0.33780527,0.5885151,-0.59546065,-0.3822387,0.57397646,-0.13528243,-0.37010348,0.029371358,-0.31233647,0.1475129,-0.7092962,0.44660342,-0.37017542,-0.41211158,-0.40767926,-0.09860221,-2.9080114,0.32411474,-0.2937112,0.14506803,-0.20232901,0.13716401,0.17681453,-0.67077416,-0.44490072,0.104341336,0.3503407,0.7613094,-0.049828596,0.22274327,-0.2582886,-0.31755635,-0.14970496,0.2432033,0.04971791,0.34296507,-0.26648137,-0.32548845,0.03311462,0.0864751,-0.35441625,0.18743178,-0.79520416,-0.5572505,-0.18776105,-0.6007617,-0.35694832,0.70578945,-0.52749336,0.040798876,-0.24591842,0.035498213,-0.13178712,0.14387184,0.14240701,0.2130096,0.14734112,-0.075004086,0.03681507,-0.3437124,0.5899854,-0.043087184,0.5798986,0.22659001,0.06993261,0.20304023,0.43315843,0.6712039,-0.31380478,1.0246279,0.49240458,-0.038755205,0.12379173,-0.21164244,-0.29360443,-0.6031652,-0.3508566,-0.069687374,-0.48410255,-0.3853957,0.18246597,-0.20863335,-0.9488674,0.65874195,0.04276605,0.15002123,0.024210969,0.19860102,0.45773727,-0.17716518,-0.07540106,-0.19293918,-0.1495696,-0.6123401,-0.33275458,-0.6172259,-0.53992563,0.16108924,0.98323303,-0.39933544,-0.024287483,-0.06904822,-0.3656677,-0.091981344,0.18587978,-0.002328373,0.2572514,0.6809531,0.054081935,-0.68077314,0.46200722,-0.07049591,-0.020964704,-0.59472805,0.253174,0.5682235,-0.8914271,0.749841,0.3158852,0.026847899,0.12670125,-0.5816713,-0.33412403,-0.013226724,-0.17677172,0.23096976,0.15889443,-0.7531564,0.4319221,0.27689335,-0.60707766,-0.7993721,0.19000679,-0.11482675,-0.28468984,-0.016553957,0.33960116,0.08351116,-0.026702337,-0.20676853,0.23453243,-0.45085254,0.3153579,0.17520006,-0.056234602,0.024122348,-0.23336986,-0.36668223,-0.7822526,0.061880056,-0.5074161,-0.2938877,0.2796766,0.08525871,-0.14452045,0.30948612,0.33337766,0.261924,-0.41507313,0.2058374,-0.13977933,-0.5096782,0.17345475,0.38516405,0.37967485,-0.52811766,0.50022054,0.12010033,-0.18518694,0.10147843,-0.016373795,0.5023847,0.025106367,0.33121315,-0.2879063,-0.16562994,0.3209624,0.85510445,0.015410338,0.3441559,0.11502246,-0.021019045,0.3939486,-0.011909585,0.050369345,-0.07126354,-0.63586164,0.103427045,-0.046613462,0.17079602,0.52670836,0.40160003,0.3608169,0.18060622,-0.2529469,-0.03274123,0.21093258,0.030720124,-1.0080702,0.41452205,0.2441462,0.89849186,0.4172041,0.039464228,-0.27070343,0.8282082,-0.2521335,0.0915575,0.36893767,-0.33075765,-0.465706,0.78313476,-0.7329125,0.49103644,-0.11921176,-0.05542066,0.18386817,0.24604566,0.26878718,0.79187334,-0.39404202,0.060599055,0.0033027898,-0.17647995,-0.128788,-0.3649839,-0.015820393,-0.50376534,-0.5345699,0.94122404,0.36720392,0.5043429,-0.050190527,0.06276858,0.11134667,-0.25932166,0.2955201,-0.1033197,0.02446452,0.23607199,-0.45313752,0.038262963,0.6148117,-0.097873725,0.30814904,-0.08728131,-0.18235534,0.050446637,-0.47484714,-0.1674494,-0.17935467,-0.71717113,0.12379413,-0.2834954,-0.49520558,0.5478501,-0.19357857,0.25270143,0.37376964,0.036712352,-0.10700572,0.642418,0.067061536,0.92232597,-0.08381055,-0.3214916,-0.22014236,0.23677275,0.13377255,-0.29059118,0.2761122,-0.4081909,0.1499286,-0.63525707,0.6893832,-0.14919887,-0.519708,0.13253309,-0.33755413,-0.117796496,0.58310324,-0.20060469,-0.15993111,0.086894035,-0.33484146,-0.31205398,0.018122613,-0.249095,0.27607992,0.2352929,-0.006418393,-0.24702527,-0.40871614,-0.09035762,0.37707484,-0.039402664,0.2896554,0.056573026,0.034992807,-0.002602967,0.24786586,0.3268633,0.45566174,0.20862262,-0.0854366,-0.41792676,-0.21781562,-0.3982547,0.16156618,-0.060623493,0.32707694,0.041619148,-0.16157153,0.94337493,0.027984528,1.1889958,0.10169497,-0.314722,0.0055006226,0.5802977,-0.05236061,-0.02530251,-0.2745438,0.8841113,0.62019,0.01861764,0.010462981,-0.50991064,-0.116924286,0.45906898,-0.34975317,-0.06228725,0.05940517,-0.5795667,-0.46352684,0.18598613,0.18184862,0.1655584,-0.16770475,0.038470037,-0.028508846,0.13494653,0.3116744,-0.70880824,-0.33914587,0.19605376,0.34760535,-0.23858291,0.17600456,-0.40636823,0.5108512,-0.8046967,0.360627,-0.44096437,0.058631614,-0.26509726,-0.3037961,0.22874378,0.039829846,0.47662428,-0.4090994,-0.33463958,-0.050092217,0.44091007,0.1734778,0.19504346,0.78692156,-0.3592434,-0.13520017,0.08846637,0.60418594,1.2460867,-0.5191488,-0.007274554,0.2715517,-0.4472005,-0.66285217,0.6246096,-0.2995051,-0.18863136,-0.18701212,-0.56793565,-0.39715713,0.17781767,0.19391401,0.04206826,0.11024552,-0.64333415,-0.045691315,0.23859732,-0.31009886,-0.31834024,-0.32375064,0.46866274,0.8994503,-0.16091593,-0.39740583,0.27567628,0.1541764,-0.31893027,-0.38828436,-0.0014069447,-0.35361913,0.29937518,0.076840945,-0.27470595,-0.08405173,0.15611991,-0.5297341,0.10190062,0.27267486,-0.33650395,0.18461162,-0.15824138,0.048662305,0.9834684,-0.17201318,0.122651175,-0.5104058,-0.4394298,-0.82772636,-0.44945642,0.45060506,0.11850032,-0.1304519,-0.33064657,-0.04525433,-0.005346048,-0.26185122,0.11012379,-0.5740005,0.33473852,0.09496359,0.3645536,-0.34332693,-1.0590961,0.033078123,0.08963383,-0.18035883,-0.617974,0.3944303,-0.23636927,1.0449895,0.103899516,-0.2581244,0.031707194,-0.3849281,0.21126571,-0.32942963,-0.11773689,-0.6955938,-0.071450785 +744,0.41925433,-0.17755175,-0.4628852,-0.17147346,-0.35985819,0.21066506,-0.097134545,0.41063818,0.26927996,-0.375613,-0.045973863,-0.12750728,-0.12869723,0.2727527,-0.22831924,-0.5496311,0.1179223,0.057723675,-0.45212635,0.6688189,-0.3753303,0.32485765,0.019773781,0.24529555,0.08781387,0.2630346,0.08578803,-0.103963204,0.062979005,-0.389469,-0.1233296,-0.11004793,-0.6386294,0.19686273,-0.09697795,-0.407118,0.027796235,-0.47317764,-0.45148703,-0.98713785,0.29683784,-0.9486597,0.45202726,-0.054792922,-0.29563406,0.10416164,0.15738115,0.3360067,0.07067957,-0.110368095,0.2704543,-0.2748427,-0.11258774,-0.17090447,-0.06478492,-0.65766394,-0.69688416,-0.11087336,-0.39261994,-0.20027265,-0.16862907,0.18133132,-0.39287177,-0.02336881,-0.08605877,0.5819704,-0.34413147,0.03973162,0.21726267,-0.2188902,0.39502898,-0.8132941,0.01545336,-0.13649893,0.16819398,-0.03764173,-0.19102845,0.52025414,0.40379578,0.33856487,0.055408638,-0.3344256,-0.3202364,-0.11549233,0.080728404,0.59763396,-0.1744175,-0.37502334,-0.117229894,-0.038387496,0.2424423,0.28080598,0.02801779,-0.22659208,-0.03268472,0.13652223,-0.2535519,0.50073767,0.70421606,-0.21421432,-0.1583998,0.5062663,0.5690522,-0.017137857,-0.25211102,-0.077103436,-0.016873032,-0.44029528,-0.10930046,0.17775822,-0.26998678,0.5938387,-0.24547684,0.15026203,0.6823863,-0.31457266,-0.008889266,0.22763774,0.18339935,0.036696553,-0.18876557,-0.25832263,0.3294186,-0.69558203,0.18764575,-0.4219806,0.65982133,0.2033275,-0.71379983,0.23755653,-0.51538926,0.2094859,-0.17852078,0.5245865,0.7360654,0.39847735,0.24082012,0.9184764,-0.5024553,0.023488197,-0.0861476,-0.34778613,0.16634753,-0.31387085,0.053381328,-0.34386465,0.029968968,-0.09760911,-0.22826634,-0.026459651,0.10258365,-0.63840157,-0.18903859,0.23140772,0.81892836,-0.19668014,0.035603702,0.70613384,1.159539,1.1358451,0.032875944,1.1113952,0.18535332,-0.25369233,0.19703151,-0.08353482,-0.7609991,0.23808418,0.3141848,0.2500313,0.1980913,0.04096222,-0.23355448,0.32358375,-0.6738254,-0.10751655,-0.27087268,0.40929732,0.28631073,-0.1326003,-0.30229726,-0.19451287,-0.11131605,0.12590292,0.03996683,0.27761227,-0.26373333,0.17748526,-0.03150223,1.2603275,-0.09451009,0.07967706,0.17091487,0.70666856,0.16180025,-0.15058602,0.32039306,0.31268358,0.26059964,0.32548627,-0.6169386,0.115930595,-0.43366167,-0.37627575,-0.2262257,-0.34020907,-0.032696567,0.13175258,-0.45575905,-0.3560823,-0.13009128,-0.14610727,0.47064513,-2.7219052,-0.09986396,-0.22524342,0.23809166,-0.31036234,-0.27361125,0.115864806,-0.7226613,0.39405817,0.34506395,0.47450128,-0.7409274,0.30019578,0.49884674,-0.6744164,0.0032489684,-0.70349354,-0.1385525,-0.07918048,0.4387555,0.19710687,-0.07334745,0.08474159,0.043207414,0.6462795,0.24778418,0.21516125,0.36226162,0.21733937,-0.021683233,0.43950966,0.080141075,0.54101384,-0.19964716,-0.098258495,0.3224493,-0.49550232,0.1911693,-0.20824523,0.021044161,0.6394386,-0.38338217,-0.8100821,-0.8231574,-0.21248262,1.2024978,-0.13149072,-0.75034624,0.22787333,-0.18003449,-0.21539648,-0.10590608,0.42972606,-0.14199881,-0.09531108,-0.67157835,-0.015322826,-0.15907994,0.2770674,0.0022700813,-0.069101326,-0.4167725,0.7165039,-0.010480846,0.4694009,0.19811781,0.12560508,-0.3038966,-0.48322323,-0.10353251,0.8001207,0.6785401,0.056526277,-0.15979667,-0.071864165,-0.31185737,-0.33397558,0.14015505,0.6966359,0.638917,-0.27486643,0.057258423,0.42380047,-0.10246633,0.13471682,-0.02007336,-0.43383503,-0.1703687,-0.09209562,0.5479885,0.70428246,-0.10413207,0.23699045,0.004999003,0.25813174,-0.07999616,-0.58231354,0.5204882,1.1138546,-0.15339196,-0.18345822,0.51857823,0.39042404,-0.35051033,0.46883553,-0.6070061,-0.3474943,0.47176996,-0.06323863,-0.62842256,-0.090801485,-0.24688418,0.012046448,-0.42587358,0.43072796,-0.49002004,-0.74704665,-0.4556988,-0.18647757,-2.60655,0.19958584,-0.32772556,-0.039955787,-0.20785229,-0.070989236,0.31538704,-0.53539217,-0.51255596,0.20454307,0.10706263,0.7173608,-0.052489955,0.11230246,-0.33315676,-0.13982871,-0.61116856,0.20245041,0.0025341255,0.23557928,0.0012499605,-0.27562812,0.07165527,-0.029650703,-0.49684414,0.108702615,-0.54088825,-0.45727897,-0.3792221,-0.39827448,-0.36937946,0.78673923,-0.20649423,0.17719923,-0.10220457,0.008756881,-0.121146,0.08143473,0.11829444,0.107353844,-0.008209859,-0.08682494,0.041009124,-0.29699713,0.46301413,0.030218486,0.44302544,0.32125214,-0.012437428,0.0946142,0.4937082,0.5411954,-0.07623405,1.0159998,0.39440757,-0.070424266,0.2763081,-0.08533363,-0.18331979,-0.4880325,-0.15433078,0.03268438,-0.39472225,-0.3309448,0.16691272,-0.34103456,-0.82480365,0.4308065,0.15439574,0.32959342,-0.07696674,0.15709926,0.48001033,-0.26179013,0.035298444,0.0031748584,-0.08215637,-0.58857816,-0.22972205,-0.754229,-0.3456897,0.16129918,1.0248307,-0.29644853,-0.14751315,0.00281527,-0.21957114,0.105794884,0.15445697,-0.15611577,-0.020311896,0.41701874,-0.056459475,-0.7665306,0.5359507,-0.10870923,0.024690611,-0.62571317,0.6290805,0.5830427,-0.61359054,0.44567338,0.36382532,0.08406894,-0.47345456,-0.59915787,-0.19117092,-0.11768965,-0.34205124,0.40515146,0.17736043,-0.88725525,0.2963355,0.2014308,-0.34506866,-0.63666683,0.5616739,-0.051284842,-0.21528043,-0.075846925,0.38253307,0.39956552,-0.021253848,-0.093928024,0.23282667,-0.5938178,0.22290967,0.21407147,0.014385036,0.46358997,-0.022178706,-0.22403355,-0.71533257,0.103076644,-0.6105425,-0.32824197,0.33170888,-0.073287435,-0.054063987,0.41999823,0.21005641,0.42912373,-0.085842796,0.16396329,-0.08221028,-0.33172327,0.58524364,0.4109152,0.4683784,-0.5628415,0.66571075,0.06149099,-0.30435735,0.08620102,0.11194887,0.4734907,0.2545761,0.61143297,0.07804494,-0.09715073,0.028375948,0.7085005,0.24751203,0.48659268,0.04168464,-0.10015108,0.32467255,-0.04956745,0.15971613,-0.006882598,-0.81488,0.017777046,-0.18548341,0.099670954,0.43147618,0.031987786,0.3326843,-0.0037352336,-0.30376312,-0.13960175,-0.031524803,-0.22570147,-1.4314069,0.42507157,0.23062862,0.9776359,0.4461556,-0.031035472,-0.13281235,0.82668227,-0.021402683,0.13167025,0.42931867,0.012206359,-0.32216594,0.5747606,-0.87387794,0.37634778,0.16287902,0.014882884,-0.10548435,0.1390632,0.37564978,0.7692982,-0.2614662,-0.09437917,-0.20108128,-0.452727,0.46687388,-0.34396544,0.22184685,-0.5657503,-0.4211562,0.44834152,0.38300535,0.31209424,-0.057110224,-0.055960555,0.08331577,-0.027123433,0.2994072,-0.028520823,0.032988396,-0.10678674,-0.37936303,-0.14756271,0.5480509,-0.4546934,0.25929755,0.03188656,-0.0031423143,0.22944328,0.009736998,-0.052823048,-0.014791866,-0.77911,0.063739225,-0.078099884,-0.36299077,0.5899491,-0.24094799,0.19391356,0.14101887,0.04346339,-0.27258042,0.20395887,0.11787356,0.56468016,-0.1896365,-0.12239049,-0.46377587,0.031051066,-0.049811687,-0.26944628,0.20321384,-0.14427236,-0.03889222,-0.49175802,0.4903905,-0.14906202,-0.22145568,0.15560706,-0.11875875,-0.013707042,0.5558223,-0.30582693,-0.10728876,0.04846268,-0.26577657,-0.28110987,-0.21970667,-0.074045666,0.21056506,0.2774898,0.062343415,-0.14933579,-0.23998073,-0.019195255,0.28182358,-0.029626932,0.1954701,0.30891687,-0.02199657,-0.42129096,-0.11412655,0.20897602,0.5420458,-0.034752674,0.0055518574,-0.12075459,-0.53037184,-0.491131,0.18388584,-0.05190342,0.53887796,-0.020831427,-0.15409322,0.69535816,0.04640444,1.24707,-0.16872086,-0.3345558,-0.08479243,0.5554186,0.050796263,0.03612783,-0.40221962,0.86952454,0.56203824,-0.13862689,-0.020934317,-0.45739618,0.124059506,0.29870108,-0.112795435,-0.058523785,0.046314728,-0.7554137,-0.3426561,0.21741061,0.30493015,0.099155374,-0.094641365,-0.040417757,0.3915549,0.16888593,0.47156957,-0.43678936,-0.20228137,0.28800315,0.25008538,0.06696045,0.23747815,-0.37996587,0.22399214,-0.57590395,0.07119044,-0.004490665,0.093728706,-0.14623177,-0.24639235,0.18369174,-0.049166877,0.40345567,-0.16049828,-0.46104553,-0.105663456,0.61915344,0.28113562,0.13456686,0.6801434,-0.238292,-0.06483477,-0.10105324,0.5289453,1.222907,-0.17043681,0.07746162,0.23570494,-0.5467405,-0.70178795,0.30526972,-0.19502458,0.093610324,0.104858704,-0.25937763,-0.5139784,0.2333946,0.21333148,-0.05260843,0.27122563,-0.7747246,-0.3118686,0.07028661,-0.4984377,-0.2651303,-0.47022843,0.35883245,0.66456276,-0.22028027,-0.25040194,0.06438006,0.33693415,-0.2652356,-0.691331,-0.055658765,-0.45811626,0.25619718,-0.10354262,-0.48871398,-0.13855454,0.12721522,-0.5941835,0.13441308,-0.052537594,-0.32226244,0.11925131,-0.20648089,-0.0036682147,0.76766425,-0.1977633,0.11485047,-0.5649931,-0.44081315,-0.6239425,-0.39525396,0.21012558,0.30442712,0.025440196,-0.6532765,-0.2606576,-0.13841733,0.017211756,-0.13499755,-0.4139141,0.42529026,0.08336922,0.26543826,-0.022384832,-0.9269102,0.15639783,0.08231868,0.052241895,-0.4712991,0.41104192,-0.072762586,0.7671775,0.24236219,0.05835441,0.1425134,-0.3359546,0.32869172,-0.284664,-0.36368293,-0.61161894,0.078839585 +745,0.55931705,-0.30450174,-0.5254979,-0.1684933,-0.2869275,0.028874738,-0.29562452,0.5469386,0.039826054,-0.61051863,-0.111250825,-0.24194779,-0.13236941,0.31964406,-0.43443495,-0.72285706,-0.069733486,0.011312016,-0.3456884,0.54176825,-0.3759156,0.36768082,0.11400997,0.25766394,0.3314256,0.20097311,0.24616316,-0.10744327,-0.35172287,-0.20635082,0.06326102,-0.05795254,-0.6097767,0.0069442648,-0.33600157,-0.67909306,0.100427195,-0.4392405,-0.16242787,-0.8315369,0.37497002,-0.9347164,0.5035234,0.023449047,-0.26255003,0.17558804,0.2453839,0.4274997,-0.028509576,0.0947678,0.1439644,-0.023873528,-0.022417296,0.031925652,-0.34562057,-0.5890655,-0.6741504,0.12060299,-0.45491508,-0.2545914,-0.14015886,0.13432702,-0.49852586,0.109363146,-0.051598784,0.4670973,-0.41262457,-0.29756168,0.4197742,0.053158343,0.48183495,-0.81351054,-0.32979217,-0.14721069,0.05918626,-0.18926708,0.10014587,0.31860188,0.23395988,0.63637775,-0.003045129,-0.33518526,-0.32410923,0.07549553,-0.065941006,0.33516592,-0.22943519,-0.25194043,-0.15348783,-0.084914856,0.451089,0.22741866,0.20677161,-0.041336734,0.010582221,0.19699319,-0.41678852,0.40354756,0.42220336,-0.30503052,-0.19880791,0.16695045,0.5532926,0.15358056,-0.069289386,-0.14305282,-0.029390395,-0.47994545,-0.22149387,0.2020484,-0.31807828,0.5335966,-0.12988423,0.39034432,0.5780803,-0.44006866,0.25209436,0.13019152,0.03625966,-0.20800945,-0.20389049,-0.38337088,0.26808035,-0.59709734,0.13637105,-0.39325047,0.84126884,0.079360746,-0.7312251,0.23629716,-0.5763588,0.1672821,-0.068797916,0.46113724,0.6177315,0.39821365,0.24308811,0.70008534,-0.39450794,-0.1618742,-0.17910933,-0.13715327,0.19097999,-0.17269413,0.26206714,-0.46413168,-0.19719002,-0.03310189,-0.07415245,-0.027107954,0.4555549,-0.6198743,0.0057106144,0.017918995,0.9156262,-0.21291362,0.06512474,0.7794423,1.0551264,1.1599907,-0.013885736,1.1375324,0.20060351,-0.22256804,0.31617454,-0.24200587,-0.5595014,0.47750598,0.47055107,-0.4204878,0.47076315,-0.1075026,-0.11267112,0.41565806,-0.29966646,0.13273342,-0.2789825,0.06671403,0.069020234,-0.1505084,-0.33976656,-0.2761688,-0.008022904,0.07051029,0.0089379335,0.25097534,-0.13977127,0.2984581,0.01247452,1.3768332,-0.07337036,0.0666958,0.06181831,0.44752303,-0.0015812601,-0.03203854,0.053332604,-0.11860263,0.12500791,0.21015768,-0.60818,0.08428074,-0.2447519,-0.42231274,-0.24326111,-0.2319133,-0.12592563,-0.2014999,-0.60544163,-0.069102906,-0.25456905,-0.30596438,0.19432275,-2.3874958,-0.30817375,-0.17166711,0.25125024,-0.27511954,-0.39953724,0.016175393,-0.524012,0.56724715,0.40781757,0.49178055,-0.5594823,0.4179279,0.4673381,-0.43736196,-0.085883476,-0.65503585,-0.17750318,-0.08263485,0.26038405,0.06549975,-0.26569614,0.098217316,0.21925893,0.43098286,0.025747087,0.06295659,0.038612265,0.5319511,-0.23281483,0.474968,0.08584046,0.43988582,-0.35767072,-0.19973005,0.4059951,-0.50338954,0.1502832,-0.102272496,0.095595084,0.37313414,-0.5659727,-0.9254158,-0.71087307,-0.42975518,1.2639524,0.17867582,-0.4153934,0.12725893,-0.11668687,-0.2511154,-0.13203295,0.31193557,-0.051107105,0.012836622,-0.7980814,0.013137813,-0.3150623,0.005357772,0.07108745,0.017999966,-0.49752888,0.65419775,-0.043260694,0.27081957,0.38217905,0.31541997,-0.35191363,-0.58274686,0.005594905,1.059994,0.5891999,0.118717484,-0.20929857,-0.10336815,-0.46934396,-0.069235615,0.236917,0.43966636,0.9463396,0.026670879,0.07806092,0.14639238,-0.15069155,0.14798345,-0.13194595,-0.5031306,-0.2249286,0.15182073,0.57602257,0.5166283,0.04810271,0.41982532,-0.1831057,0.4104318,-0.24400605,-0.35389227,0.5621838,0.81588423,-0.18858722,-0.16877358,0.5902318,0.57479703,-0.33033666,0.63572794,-0.63785404,-0.51463896,0.31444862,-0.17387478,-0.48715737,0.09194537,-0.40440384,-0.025597688,-1.026735,0.3262536,-0.65712124,-0.2242484,-0.6357179,-0.22497539,-2.9525568,0.32150888,-0.31034812,-0.1710601,-0.046949424,-0.16003837,0.3655809,-0.8070455,-0.7369936,0.08383192,-0.006095324,0.88582027,0.11345238,0.20569508,-0.17324157,-0.39558002,-0.396977,0.066741824,0.22364198,0.23147392,0.07233609,-0.5166101,-0.0035943133,-0.40707546,-0.41014546,0.0072970646,-0.4873829,-0.66441685,-0.44042653,-0.5086335,-0.41182134,0.75319946,-0.04843097,0.020673126,-0.16759059,-0.03374634,-0.09200442,0.49650985,0.16090843,0.0032024,0.15381275,-0.113821544,0.20337234,-0.46143582,0.10141439,0.28528184,0.4235391,0.60616887,-0.20406999,0.4484404,0.62311417,0.61183375,0.017950227,0.7922055,0.3897295,-0.15162452,0.3503995,-0.25061375,-0.24526331,-0.6041674,-0.23490374,0.054595254,-0.24869132,-0.3157796,0.062265176,-0.42057642,-0.7355188,0.597161,-0.18764238,0.18000515,-0.10388475,0.23989403,0.4567751,-0.20931278,-0.09835611,-0.052957747,-0.0278393,-0.38134083,-0.26272053,-0.7555608,-0.6397336,-0.04435423,1.140191,0.04909793,-0.0059233787,0.2538694,-0.008312515,0.2004335,-0.055446915,-0.11259072,-0.13223486,0.31612465,0.045296315,-0.72684664,0.3585091,0.023240805,-0.03097679,-0.47628233,-0.034153845,0.70677525,-0.47253102,0.14855453,0.59559,0.06262938,-6.414311e-05,-0.41291592,0.14716248,0.05140412,-0.25197992,0.2883061,0.16672972,-0.6285512,0.49138483,0.26213998,-0.25561756,-0.7351259,0.57075065,0.16308069,-0.22828463,-0.18361393,0.3215795,0.23815887,0.024492456,-0.17250301,0.30447653,-0.4575376,0.17928831,0.249608,-0.0057149893,0.38354152,-0.027598837,-0.22355287,-0.6719586,0.10009779,-0.41983983,-0.2910044,0.2732541,0.017734597,-0.023966487,0.36166057,0.26405993,0.34955707,-0.24071221,0.057706382,-0.07393841,-0.33937764,0.4255732,0.47939306,0.6205762,-0.50343895,0.560332,-0.0030977002,-0.11954761,0.025162118,-0.13563393,0.5255203,0.13415292,0.29231447,0.11934825,-0.26169762,0.23530735,0.6491643,0.060830045,0.4602726,0.1926632,-0.19508408,0.13503556,0.102351315,0.087544665,0.16317871,-0.3584519,-0.0850607,0.10844802,-0.013396542,0.48022535,-0.08039601,0.33721775,-0.12141008,-0.27135354,0.029216154,0.09927768,-0.2781872,-1.1737865,0.4169769,0.08058078,0.73969406,0.6116533,-0.058260527,0.06133757,0.53949845,-0.12599222,0.052325744,0.4653069,0.22444761,-0.50545275,0.6466565,-0.5115409,0.55033255,-0.063473366,0.094702385,-0.2914278,-0.070386305,0.5788306,0.7874951,-0.23731028,0.044683393,-0.075186506,-0.44612807,0.1248219,-0.29157883,0.1568313,-0.4763484,-0.101053216,0.5637144,0.40849844,0.25345296,-0.099152796,-0.078421935,0.082424976,-0.10679597,0.42785916,-0.06803129,0.076964654,-0.10329483,-0.5569028,-0.24107496,0.3684656,0.15052854,0.21408059,-0.021530407,-0.3217627,-0.0117602,-0.028709691,-0.03659383,-0.024891526,-0.65677196,0.08037454,-0.5204269,-0.38202825,0.33147365,-0.20947573,0.3045629,0.26945752,0.17568938,-0.2808835,0.13073197,0.13361523,0.50207305,-0.2612844,-0.2241794,-0.24237616,0.17798431,0.25841573,-0.38538998,-0.13181876,0.013586036,0.23067653,-0.61671257,0.5078457,-0.16441791,-0.198421,0.0914167,-0.17048335,-0.031597566,0.55837667,-0.3059279,-0.03336892,0.055642705,-0.029513193,-0.13567589,-0.18471101,-0.10400096,0.17311434,0.081411846,-0.014960243,-0.27603847,-0.12599656,0.028310051,0.58550835,-0.031980988,0.32617655,0.5225445,0.14784063,-0.6218677,-0.25582996,0.04912271,0.5387709,0.13764276,-0.12898237,-0.6165977,-0.40938526,-0.21166296,0.31385013,-0.058814406,0.16570507,0.111123815,-0.45846382,0.9683326,0.13928208,1.3128332,0.045507856,-0.30535588,-0.016445545,0.513329,-0.18927518,-0.047902685,-0.43813324,0.99898994,0.44000822,-0.39454904,-0.17493796,-0.4392083,0.003903074,0.20867808,-0.24445534,-0.17847143,-0.18393381,-0.62468094,-0.45722967,0.29169443,0.4134198,-0.030478774,-0.24700387,0.15354152,0.27593207,-0.0075090304,0.5575509,-0.4616877,-0.13695988,0.43075374,0.24132565,-0.07078911,0.24112971,-0.45142084,0.32335398,-0.7463521,0.13018088,-0.2643651,0.17372558,-0.12210221,-0.42022592,0.3655165,0.04655804,0.2752207,-0.23344545,-0.49904484,-0.20601323,0.5018429,0.14539754,0.18364623,0.59444016,-0.298202,-0.09853065,-0.15015873,0.67971987,1.308685,-0.07943576,0.085079685,0.23344946,-0.3318403,-0.6206909,0.3400728,-0.40987086,0.107339166,-0.24269494,-0.24512248,-0.5695386,0.34997398,0.3671113,0.017160382,-0.030722512,-0.48437425,-0.30509153,0.28170386,-0.5011625,-0.33549166,-0.30292934,0.10402385,0.57847774,-0.23602891,-0.029298361,0.011562037,0.6264852,-0.11836107,-0.35252517,-0.11986116,-0.15552156,0.41201475,0.18858922,-0.3533759,0.04065182,0.047574244,-0.4627877,0.12676576,0.2037959,-0.51134527,-0.16598603,-0.2587919,0.005073177,0.7821774,-0.031750746,0.22207871,-0.3778955,-0.3625176,-0.7592128,-0.35591295,0.46602663,0.22732936,-0.03265128,-0.45710716,0.02821875,-0.22730473,0.0024226308,-0.033170424,-0.3030279,0.22591326,0.20121916,0.5778489,-0.16047001,-0.5096361,0.035975356,0.21993251,-0.14066096,-0.40136036,0.52335006,-0.14015211,0.75510204,0.2550008,0.045527864,0.29591888,-0.47857854,0.022100864,-0.15945792,-0.3019937,-0.6782037,0.11614048 +746,0.41101953,-0.1600624,-0.52038914,-0.24874665,-0.53520983,0.15085188,-0.33944836,0.16710173,0.38253075,-0.064133905,0.11281354,0.008674415,-0.14675786,0.31837988,-0.061118226,-0.9282154,0.04745873,0.14633137,-0.9151649,0.67787725,-0.551618,0.2925495,-0.032022804,0.3812074,0.071490906,0.23558542,0.14192085,0.10161045,0.119742244,-0.071674675,-0.12492997,0.3366876,-0.76622844,0.31519762,-0.07088871,-0.40395823,-0.18848558,-0.3155245,-0.22516437,-0.8635896,0.18034598,-0.6625396,0.55319977,-0.120951414,-0.41451892,0.052054867,0.21608277,0.18671365,-0.45417222,-0.01852026,0.24682803,-0.29051575,-0.05152947,-0.14067787,-0.27256432,-0.64539146,-0.70616204,-0.14685632,-0.6093203,-0.04555595,-0.271691,0.32186463,-0.32499272,-0.011690727,-0.2950891,0.53090364,-0.39859396,0.30623558,0.21566036,-0.09795844,-0.14179304,-0.50194126,-0.112579264,-0.22335774,0.17803794,0.20305915,-0.49394143,0.3910457,0.2895772,0.5225077,0.16574624,-0.3842095,-0.2403782,-0.18390802,0.031542048,0.2570149,-0.021300245,-0.2645914,-0.3035482,-0.12532578,0.2814385,0.18603471,-0.0007865747,-0.43387935,0.12997137,0.053923607,-0.21084017,0.5572487,0.4974816,-0.48225313,-0.24656908,0.34781793,0.33361584,0.19447078,-0.33206698,0.15888736,-0.20025365,-0.576541,-0.277196,0.17678826,-0.1584399,0.46459717,-0.26585487,0.18368196,0.65659803,-0.16489886,-0.25917035,-0.15533139,-0.15828043,-0.042747602,-0.3815622,-0.2431244,0.18995121,-0.45952746,0.07540203,-0.23551254,0.6791864,0.15418638,-0.7704011,0.37106678,-0.50023514,0.21613033,0.01868397,0.72629446,1.0252882,0.578161,0.2783313,0.8309527,-0.33637348,0.17708614,-0.07383587,-0.2390172,0.16822317,-0.18379103,0.21654588,-0.5104975,0.08884754,-0.19622914,-0.007446353,0.028486164,0.33563682,-0.4407721,-0.17848545,0.012581221,0.6702425,-0.3514058,-0.121673346,1.0038493,0.9637493,1.194854,0.12099807,1.3248672,0.4969622,-0.053262763,-0.0011924505,-0.24177901,-0.5720852,0.16192633,0.1817685,-0.05119562,0.40071395,-0.0028883626,0.097620435,0.52790314,-0.15272434,-0.1498437,-0.06735681,0.42176017,0.060366828,-0.075622946,-0.36522022,-0.18183464,0.32206494,0.010140959,0.047489356,0.292116,-0.1678745,0.56918997,0.24179849,0.9495757,0.15004085,-0.03642059,-0.03002658,0.33610705,0.3001011,-0.06524597,-0.06531138,0.42899427,0.29043186,-0.047097787,-0.66720515,0.15288535,-0.2902578,-0.269504,-0.095916554,-0.41622055,-0.14848252,-0.24673657,-0.41228184,-0.28917658,0.074980065,-0.15623339,0.37309378,-2.5021758,-0.28768378,-0.1571452,0.2356417,-0.054662053,-0.1866615,-0.28308985,-0.64338213,0.31652603,0.25981814,0.3354432,-0.63374454,0.4910724,0.38353235,-0.4659364,-0.041093167,-0.75693494,-0.07673734,0.020081019,0.5390323,-0.12845351,-0.113978736,-0.09824496,0.34682605,0.64915216,0.06337539,0.14832738,0.3150835,0.6018151,-0.23016077,0.5455264,-0.022543767,0.54069763,-0.40932685,-0.18496017,0.35404426,-0.4893824,0.29735145,0.08321726,0.053005304,0.630936,-0.4383363,-0.8226116,-0.40017426,-0.20450966,1.2281964,-0.43733814,-0.5085427,0.21128117,-0.3723017,-0.13870303,0.02593375,0.5080715,-0.073688515,0.07058823,-0.6398612,0.09607602,-0.07362064,0.25369284,-0.07078457,0.1882702,-0.313165,0.7822534,-0.1716869,0.45510018,0.23748595,0.13118847,-0.45920584,-0.42479017,0.19355272,0.6588505,0.4215709,0.06345127,-0.13956538,-0.18588321,-0.11441925,-0.1391634,0.11732049,0.8488996,0.5355142,-0.16748998,0.13070379,0.39418977,-0.24668601,0.012366221,-0.32441965,-0.18621513,-0.14171849,0.20987006,0.50451607,0.66708344,-0.09971626,0.38538778,0.0093891965,0.13441299,-0.09251644,-0.7278113,0.58666164,1.0378376,-0.2403418,-0.29429653,0.5205983,0.31070462,-0.2685658,0.5514303,-0.46674526,-0.33852905,0.6336221,-0.06000773,-0.32992417,0.021115335,-0.41774347,-0.035132047,-0.73574865,0.21713702,-0.1505082,-0.55832225,-0.62413234,-0.19243078,-3.7843668,0.0871264,-0.22165878,-0.029133867,-0.28607425,-0.215157,0.31137362,-0.45779344,-0.5760156,0.1533194,0.15060404,0.57431096,-0.18118931,0.022711407,-0.2406343,-0.3730702,-0.31117618,0.28446472,0.20913549,0.3900576,-0.10026292,-0.4291989,0.13298467,-0.08378224,-0.63959616,-0.13606426,-0.47770283,-0.37788755,-0.021241792,-0.557226,-0.1756952,0.7680714,-0.4155582,0.05186391,-0.4379173,-0.07924068,-0.08022236,0.37791625,0.22450556,0.3392902,0.11636581,-0.062021114,-0.10916842,-0.25116614,0.0688973,-0.028077023,0.24092415,0.40079027,-0.058181874,0.2371829,0.47654393,0.76817435,0.015635999,0.8442289,0.25932634,-0.07327114,0.4637872,-0.20600122,-0.45576763,-0.7554549,-0.305724,-0.2605097,-0.5807075,-0.2834254,-0.123539604,-0.33055213,-0.80316335,0.44733185,0.077096716,0.20195137,-0.18188111,0.37019876,0.32015628,-0.16203651,0.17946558,-0.10210812,-0.3585541,-0.49336052,-0.49064484,-0.7049658,-0.6072089,0.10918031,1.0808845,-0.21020131,-0.12330005,0.015798545,-0.29375997,-0.00049668155,0.2612233,0.1272235,0.36711347,0.34078106,-0.050782394,-0.603414,0.37550554,-0.29280987,-0.008240922,-0.56533104,0.20335105,0.7329501,-0.64573187,0.6906699,0.24361828,0.22400567,-0.068421155,-0.81924087,-0.23518986,0.055447046,-0.15772796,0.6932031,0.19562604,-0.7415455,0.5513524,0.13786507,-0.10127514,-0.6533171,0.5174986,-0.03622836,-0.20087123,0.03824865,0.4338641,0.055443525,0.06311831,-0.17613119,0.26514885,-0.41544047,0.18318966,0.24776244,-0.060688734,0.24520597,0.011023879,-0.33429262,-0.6345288,-0.18521163,-0.6137919,-0.3658719,0.011206158,0.019518418,0.08279295,0.03134494,-0.027750429,0.45410213,-0.06417717,0.20918976,-0.20636891,-0.23628892,0.37881562,0.5835609,0.26703233,-0.5026515,0.70187545,0.19044465,0.04140166,0.037045836,0.21104911,0.4270959,0.20582996,0.529382,-0.12049435,-0.040588345,0.10034522,0.72832936,0.30266038,0.4175846,0.070981026,-0.18847509,0.30896014,0.20112629,0.22488405,-0.13375439,-0.18323082,-0.06664188,0.01519897,0.24965988,0.5788767,0.1148108,0.23333387,0.029321011,-0.042779963,0.14834,0.20352182,-0.13199857,-1.3786318,0.40069145,0.3032769,0.875366,0.5535528,0.15440606,-0.10050483,0.54805726,-0.40175265,0.10006788,0.46821457,0.13186787,-0.19955117,0.5721111,-0.6000258,0.5144504,-0.225874,0.03689225,0.17979002,0.39956537,0.32182086,0.94184905,-0.22725701,0.04962299,0.088747114,-0.36028117,0.21796933,-0.2755635,0.14740744,-0.30330095,-0.4934454,0.5950347,0.32790998,0.2812336,-0.5074988,0.013189351,-0.04200251,-0.3194064,-0.09046472,-0.20521545,-0.11076014,-0.32341403,-0.53257555,-0.22414847,0.5552895,-0.23643999,0.031680856,0.13974412,-0.24954864,0.22535153,0.057477474,-0.030653726,-0.04571012,-0.7258929,0.003541108,-0.2705099,-0.4088237,0.52449685,-0.41950467,0.20018277,0.27123362,0.00528965,-0.42060566,0.0955685,-0.07581861,0.5939805,-0.05096764,0.117308885,-0.22772208,0.16692428,0.32526273,-0.30733642,-0.009174154,-0.30113658,0.1543171,-0.50811344,0.3911005,-0.17897707,-0.31954852,-0.13857724,-0.037218366,0.07563302,0.500001,-0.26328447,-0.12297556,0.06381521,-0.07612122,-0.28474203,-0.07761175,-0.2918516,0.37191495,-0.00808141,0.029146457,0.073299386,-0.0672212,-0.096332416,0.4354753,0.05814867,0.2766298,0.28658614,0.023254784,-0.37511957,0.09453573,-0.04653143,0.4900264,0.13546467,-0.18031497,-0.19958043,-0.27073908,-0.3706059,0.5651741,-0.187498,0.20767511,-0.008323681,-0.5923355,0.8148718,0.15322113,1.1979343,0.04403867,-0.478659,0.23094486,0.5942208,0.03860347,0.14091192,-0.19717155,0.74537987,0.45756322,-0.11247776,-0.037211016,-0.41461736,-0.19282022,0.22167896,-0.3306553,-0.30102208,-0.20561023,-0.59202015,-0.05459,0.11171333,0.117706805,0.038077705,-0.11598794,-0.22227465,0.06647255,0.17352262,0.45085132,-0.51076365,0.0039563975,0.2970594,0.20136267,0.008161215,0.23279457,-0.22879079,0.44330472,-0.7886063,0.2033345,-0.45237106,0.2295755,-0.22615026,-0.1904563,0.2668617,-0.020772243,0.18283671,-0.31998792,-0.37144792,-0.38828275,0.57571095,0.25787103,0.29088286,0.7695911,-0.22766834,-0.09405139,0.27834156,0.56721705,1.229881,-0.13878243,-0.19475037,0.12231682,-0.3571314,-0.69772506,0.18216091,-0.45482874,0.022618787,-0.05757971,-0.28964567,-0.2383323,0.27127263,0.13586593,0.20130914,0.16996115,-0.7911538,-0.1283543,0.37500146,-0.16198769,-0.1914155,-0.3323769,0.35772666,0.8574479,-0.4265309,-0.25491938,0.027545908,0.31005684,-0.23272142,-0.7195003,0.019171638,-0.4351615,0.46821868,0.2090881,-0.34617248,0.07180526,0.16313511,-0.53828174,0.13573973,0.37560308,-0.2383412,0.06185895,-0.22762628,-0.23491907,0.95790267,-0.016546436,0.2676696,-0.50424415,-0.69160306,-0.88751453,-0.26677272,0.113429755,0.28324345,-0.04946455,-0.6410191,-0.19470379,-0.12489117,-0.07949984,0.16213019,-0.5880282,0.3850541,0.15059431,0.33161318,-0.09516238,-1.0463408,0.008972434,0.2728203,-0.11294333,-0.4712965,0.5625127,-0.25121763,0.55842245,0.1782363,0.09407863,0.010870756,-0.6443769,0.2689031,-0.33338967,-0.18383965,-0.5742181,0.065526225 +747,0.50942934,0.019318359,-0.60782164,-0.13861862,-0.39507753,0.20063451,-0.15017928,0.28047293,0.3774451,-0.29606673,-0.011223269,-0.18480334,-0.061925102,0.38046682,-0.06193827,-0.74301684,0.023032099,0.20147607,-0.53884953,0.5022748,-0.4156852,0.4610948,0.096184686,0.29819742,0.13624234,0.2703656,0.11331388,-0.02824432,-0.2047539,-0.02856555,-0.15779667,0.108628005,-0.5525368,0.17129186,-0.076057695,-0.37587485,-0.13127846,-0.36209768,-0.37529576,-0.6886646,0.3259905,-0.74152005,0.5664107,-0.14068015,-0.41589567,0.12751041,0.00886499,0.43701044,-0.3369418,0.17715038,0.15189452,-0.2471495,0.022128884,-0.173563,-0.43847057,-0.57426834,-0.5409663,-0.011317642,-0.45319405,-0.16757292,-0.34620297,0.12561303,-0.26191157,0.04461926,-0.22873639,0.35586208,-0.29770973,0.065634295,0.31337327,-0.18392485,0.16144505,-0.34552872,-0.10319487,-0.23508541,0.13755654,0.101584956,-0.24510197,0.29349,0.27451736,0.63909507,0.053875733,-0.3339379,-0.2490503,-0.03666405,0.115020104,0.41758296,-0.111025356,-0.18111448,-0.28693485,-0.02702374,0.167095,0.1994658,0.02709759,-0.36964428,0.13992205,0.17827083,-0.29573923,0.32478532,0.48561656,-0.46791986,-0.1886848,0.40895417,0.5192498,-0.084919356,-0.1225826,0.3443618,-0.04176166,-0.37061974,-0.26968125,0.19168667,-0.14962712,0.4886829,-0.19498882,0.060623836,0.73306304,-0.0758628,-0.23935951,-0.17257224,0.059815347,-0.22024496,-0.3439429,-0.13902995,0.12950438,-0.502618,0.0321122,-0.25418496,0.7437756,0.24648456,-0.67114794,0.37458456,-0.51724344,0.26355907,-0.025572412,0.52229565,0.9026495,0.4627097,0.1776857,0.90527725,-0.64296776,0.1398048,-0.05485792,-0.42090517,0.1410344,-0.1797563,0.14689957,-0.5038253,0.13497636,0.016341472,-0.3088098,0.04425727,0.30842793,-0.42644033,-0.07609275,0.0019986948,0.789277,-0.370542,-0.122118436,0.8728853,0.9244639,1.0396502,0.05178315,1.248894,0.54638135,-0.21830413,0.1701656,-0.4270534,-0.56685674,0.10227684,0.30577025,-0.08458988,0.44572893,0.06799653,0.19682151,0.39403647,-0.3835163,0.10333236,-0.083610535,0.19985695,0.033996064,-0.09742338,-0.41187188,-0.25318676,0.042377345,0.115815714,0.09660866,0.39205292,-0.20739564,0.53605485,0.1271966,1.5749379,0.068869196,0.01969883,0.016012844,0.39435512,0.27743056,-0.24825653,-0.10733568,0.20932594,0.3166166,-0.013646251,-0.4725344,-0.054696035,-0.29870144,-0.34379753,-0.07186334,-0.288731,-0.06653572,-0.10882006,-0.37774274,-0.28705186,0.019620111,-0.24807829,0.50533384,-2.3210871,-0.17250396,-0.07742832,0.27644908,-0.21744142,-0.40466934,-0.18179628,-0.5790473,0.15419897,0.37384102,0.29547605,-0.70778155,0.47624967,0.34447682,-0.38507134,-0.049430236,-0.67665786,-0.026031367,-0.10012261,0.33867964,-0.028979294,-0.07178678,-0.19480225,0.26235357,0.61625606,0.112135366,-0.031229505,0.37132752,0.4275286,-0.06937406,0.5489283,0.21576554,0.62173617,-0.2809167,-0.10513889,0.45402202,-0.40391147,0.25838894,0.11973767,0.031284284,0.4114718,-0.52809936,-0.6748769,-0.7049819,-0.27792987,1.2268369,-0.3402192,-0.33228275,0.254288,-0.2908184,-0.29204115,-0.024129288,0.43506086,0.0409269,-0.11760219,-0.6912263,-0.07722089,0.058061805,0.12957893,-0.11867604,0.08036855,-0.20247647,0.6854688,-0.22742373,0.45242193,0.29764605,0.09780086,-0.028735256,-0.42684773,0.08125946,0.9698861,0.42206678,0.18659626,-0.23561566,-0.21751787,-0.31184295,-0.23546258,0.2089334,0.41297093,0.6651178,-0.12697114,0.01589846,0.44190896,-0.22522265,-0.015675366,-0.10370956,-0.2731993,0.010596251,0.023544231,0.5736525,0.63511026,-0.14671794,0.40305603,-0.19878162,0.16095063,-0.24452491,-0.57230383,0.5604127,0.94557154,-0.25769493,-0.2745009,0.448176,0.20477314,-0.36512554,0.4192295,-0.56875175,-0.21398497,0.5299843,0.01612429,-0.36978108,0.1956489,-0.32772896,0.03398065,-0.8941747,0.2787821,0.061586317,-0.6114111,-0.5001264,-0.15900135,-3.6136487,0.18815206,-0.042724952,-0.0019622266,0.010434775,-0.12321673,0.2355283,-0.38855103,-0.68300074,-0.018610211,0.007324028,0.56198335,-0.039849766,0.15568408,-0.2742,-0.24066572,-0.3993421,0.21394838,0.17230281,0.3288993,0.0070054135,-0.429383,0.00075695117,-0.38544872,-0.589776,-0.00032924017,-0.7077743,-0.5458822,-0.220865,-0.45132935,-0.3156839,0.7323963,-0.38404387,0.14805055,-0.27587265,-0.09963843,-0.2396272,0.22490744,0.16670308,0.064475276,0.14777066,-0.007311756,-0.17550482,-0.34356126,0.16593818,0.022775432,0.4875724,0.2777451,-0.13780193,0.19190677,0.59759617,0.75134903,0.058319356,0.69672054,0.35226756,-0.11296875,0.31207123,-0.28410447,-0.24588074,-0.62346214,-0.36052254,-0.31193054,-0.4903358,-0.4022296,-0.070881516,-0.39488515,-0.8189895,0.28107616,0.056202404,0.17999537,0.030915765,0.22921322,0.46015242,-0.2004056,0.0017198682,-0.102697365,-0.37194046,-0.5746613,-0.40928304,-0.49437886,-0.5408037,0.42540413,1.0863273,0.03085851,-0.038447015,-0.00048220655,-0.4785117,0.08851256,0.13639013,0.22725388,0.13675962,0.48397082,-0.27058476,-0.68674386,0.24013215,-0.14352593,0.019412171,-0.61528766,0.14208494,0.71316916,-0.58285546,0.6315175,0.19577383,0.17056863,-0.041946776,-0.42504272,-0.34861448,0.031896606,-0.25399834,0.522164,0.1721099,-0.6314701,0.39939174,0.23820281,-0.095834136,-0.55167335,0.36878997,-0.051155075,0.019691626,0.10123428,0.3060112,0.030402204,-0.113299295,-0.07291579,0.24316998,-0.57715726,0.20147318,0.4196719,0.044138543,0.16714954,-0.01655526,-0.25221345,-0.6481376,-0.14165415,-0.5163103,-0.27977544,0.015268834,0.15284637,0.0076061566,0.03848261,0.1341868,0.37414584,-0.09224656,0.11889498,-0.10748145,-0.2509351,0.5489315,0.44559005,0.3660694,-0.53718513,0.601342,0.059776854,0.066703714,-0.15017205,-0.021982232,0.45091045,0.26920682,0.32741058,0.18417826,-0.1910144,0.15428044,0.6201337,0.29927343,0.38193512,0.23560819,-0.21152133,0.34019825,0.23981364,0.1434451,-0.01965495,-0.328271,-0.059782267,-0.109286174,0.14380004,0.3726254,0.12178716,0.31821892,-0.1226263,-0.23958911,0.14950228,-0.041222513,-0.25025284,-1.4397664,0.24388427,0.3203129,0.65832484,0.46013227,-0.10494322,0.03492171,0.56000316,-0.3284746,0.08424017,0.4090571,-0.06477172,-0.4306895,0.49790102,-0.663015,0.44233054,-0.0661448,-0.007817407,0.07646527,0.3094922,0.32962385,0.8685526,-0.21755193,0.07792469,-0.1850263,-0.25875747,0.10039644,-0.30895722,0.056342993,-0.57621354,-0.38645205,0.58991724,0.3079418,0.33632526,-0.35554722,-0.0820992,0.036786664,-0.11285928,0.10147167,-0.021080494,-0.08945248,-0.14221528,-0.6164599,-0.44014516,0.5134559,-0.16760688,0.03246956,0.11616753,-0.372068,0.2898114,-0.20173383,-0.097599074,-0.0020671934,-0.70177674,-0.19659296,-0.27370042,-0.4044675,0.3818448,-0.25388873,0.27597693,0.13158785,0.035623133,-0.3935364,0.16386694,0.057413872,0.7221932,-0.021085612,-0.25058585,-0.31045097,0.15806088,0.20713122,-0.4052028,0.05624255,-0.15693349,0.07440771,-0.65775406,0.3539608,-0.0432816,-0.3120285,0.027002892,-0.052173078,0.045130346,0.45269424,-0.2960517,-0.15276274,0.09516153,0.042511966,-0.19397528,-0.13364868,-0.34077957,0.31370443,-0.09657957,-0.065964006,0.069692366,-0.10682387,0.010927987,0.34232166,-0.004165383,0.09913446,0.2945394,-0.010307642,-0.39206448,-0.024056189,0.061174612,0.2916036,0.2351958,-0.13241196,-0.1047801,-0.1949726,-0.3165359,0.24206585,-0.1628597,0.31224483,0.09535091,-0.45613036,0.8100924,0.11585858,1.3086625,0.017763274,-0.32138336,0.03231069,0.47643098,0.08389228,0.1331608,-0.19690171,0.7826628,0.657568,-0.23577406,-0.20209758,-0.39158276,-0.22184435,0.23239133,-0.16681805,-0.246995,0.0154219065,-0.8264958,-0.16199212,0.15846008,0.16290864,0.33297673,-0.012096719,0.061653692,0.09926822,0.02601579,0.46038514,-0.22027531,-0.19957542,0.40827465,0.20280984,0.0995818,0.15665501,-0.40859988,0.34877446,-0.6931865,0.1826952,-0.3159423,0.18348558,-0.054644544,-0.30835086,0.23087174,0.08693171,0.2753971,-0.36002007,-0.41200265,-0.259889,0.75666326,0.19292322,0.24955407,0.8088554,-0.269251,-0.23434213,0.18936986,0.38415784,1.1002922,0.08694601,0.06395148,0.44569412,-0.30660743,-0.6219019,0.3311072,-0.24078368,0.1747321,0.048283003,-0.35432383,-0.39144248,0.27303237,0.04968775,-0.061619498,0.20457621,-0.45026055,-0.1708781,0.34943163,-0.3323607,-0.17559499,-0.36454925,0.27425385,0.66368616,-0.35808957,-0.39594182,0.12319983,0.28155136,-0.36569986,-0.43607277,-0.03197382,-0.24558067,0.32511434,0.18722096,-0.36554986,0.054690283,0.27389267,-0.42333615,0.07387734,0.2245428,-0.46666875,0.14529726,-0.29721984,-0.18691012,1.0790098,0.051973905,0.23490156,-0.66126955,-0.5067619,-0.9616811,-0.41123953,0.2722245,0.08573437,-0.06979283,-0.55330443,-0.15576045,0.050463866,-0.081641294,0.11707776,-0.52131116,0.450232,0.22464861,0.30777687,-0.040752485,-0.96167904,-0.015019466,0.16692415,-0.100310616,-0.61635596,0.60632384,-0.10780772,0.8232952,0.09163979,0.15241699,0.17956857,-0.53750414,0.3005017,-0.24301721,-0.1432392,-0.6151408,-0.006869042 +748,0.4712224,-0.11027461,-0.7904708,-0.3885621,-0.6198593,0.17914236,-0.3270732,0.47385246,0.15292756,-0.7315499,-0.14839938,-0.3366181,0.045405347,0.6036334,-0.32326582,-0.42172417,0.09292362,-0.16738226,-0.9550249,0.37069568,-0.7330084,0.53629625,0.4488655,0.32648054,0.47265977,0.05569647,0.057495452,-0.18517998,-0.0890311,-0.038737297,-0.23656118,-0.0016095638,-0.6999468,-0.29565865,-0.17729993,-0.6280259,0.14986135,-0.63689625,-0.1557996,-0.7726556,0.23387913,-1.1546333,0.8530513,-0.097815186,-0.19395149,-0.05886078,-0.0020861328,0.19794771,-0.041940082,0.47205728,0.18766208,-0.1318395,0.056333385,0.028366983,-0.010890472,-0.7066138,-0.8028485,0.012922463,-0.85375345,-0.31034622,-0.10667713,0.14923479,-0.46124023,0.3477581,0.1538352,0.25021917,-0.63175976,0.05840359,-0.20030804,0.18233614,0.5894296,-0.31539762,-0.09194182,-0.026216973,0.27462646,-0.4377615,-0.23000231,0.1696795,0.51566344,0.4875391,-0.23943253,-0.3407641,-0.11829649,0.033662558,-0.28626147,0.94329774,-0.072937176,-0.49573216,-0.2020565,-0.18334278,0.6997946,0.6274014,-0.0997325,-0.5681164,-0.14842686,-0.061698835,-0.6070614,0.67366993,0.44541407,-0.67183876,-0.43729657,0.49671012,0.25097427,0.56347066,0.036792327,0.28655574,0.12391454,-0.72615176,-0.2870001,0.22232619,-0.06043,0.5596601,0.057324905,0.5659261,0.77160585,-0.45204037,0.036246173,0.11662801,-0.2500059,-0.12317332,0.3551527,0.013371998,0.2702447,-0.6929184,-0.07161608,-0.40423498,0.65321857,0.2418025,-0.74142706,0.41865548,-0.81038696,-0.053462632,-0.23037854,0.4685958,0.6971148,0.65393376,0.31197983,0.806742,-0.39755905,0.067869574,-0.26845342,-0.35274798,0.1495868,-0.32364637,-0.0064751627,-0.58465594,0.023095936,-0.037222885,0.03418058,-0.11275333,0.69287455,-0.5200341,-0.13788864,0.23590612,0.77282536,-0.43614346,-0.012362877,0.9505116,1.0386314,0.6013953,-0.0049579083,1.1457794,-0.03997419,-0.07774758,0.13831548,0.0021992684,-0.4390881,0.19712105,0.44771177,-0.5106347,0.72552574,0.10862295,0.109737374,-0.053273596,-0.16853385,0.16514584,0.16271837,0.028214514,0.1489789,-0.20392644,-0.4106678,-0.28439814,-0.06820197,-0.089142,0.038559757,0.30228266,-0.55162656,0.1526516,-0.020706242,1.6756277,0.10018752,0.09075172,-0.22680703,0.5848807,0.13032505,0.016094709,-0.21982236,0.09617726,0.23368172,0.084331915,-0.5045763,0.19491401,-0.091616794,-0.5758158,-0.19001517,-0.49161234,-0.3114614,-0.23893961,-0.51696074,0.13805468,0.05799464,-0.34210345,0.5104195,-2.5459757,-0.68167573,-0.14192715,0.23926874,-0.26244622,-0.27379245,-0.1751079,-0.46010533,0.18776424,0.46462393,0.58812416,-0.9278018,0.53817165,0.5716909,-0.47711197,-0.2925095,-0.7119557,-0.25305068,0.1618237,0.083945215,-0.22879732,-0.41050196,0.012864763,0.37878233,0.6639403,0.010569465,0.28129157,0.19915465,0.7108335,0.26158005,0.8334938,-0.26600808,0.66571987,-0.34094635,-0.12593672,0.32806587,-0.11946623,0.37179774,0.041507952,0.22554156,0.400779,-0.34435457,-1.1391203,-0.8260206,0.07307178,0.7028768,-0.37432528,-0.28624445,0.26096722,0.2924744,-0.050678354,-0.07203759,0.6058908,0.10327947,0.06792673,-0.5494435,0.05582587,0.02665084,0.12641029,0.08479671,0.11873591,-0.18527845,0.48943663,-0.092016295,0.30913574,0.32354522,0.26761407,-0.3670027,-0.32802114,0.47933593,1.2758777,0.4745296,-0.019310366,-0.32195586,-0.23231478,-0.4133029,-0.22441618,0.1447591,0.23077467,0.98045236,0.044199433,0.39314494,0.07788037,0.023238683,0.038922008,-0.3330845,-0.27905065,0.1781054,-0.0014556065,0.45403165,0.6084053,-0.53382605,0.85244197,-0.2809727,0.039536048,-0.20266512,-0.38737363,0.62270653,0.31455165,-0.033360306,-0.04613515,0.6516248,0.20871392,-0.4330439,0.42647964,-0.67188454,-0.38956577,0.845544,-0.009006327,-0.19567263,0.35847273,-0.23432119,0.30316693,-0.9940957,0.29358527,-0.2132067,0.055618048,-0.30311906,0.06971873,-3.7856135,0.24151006,-0.21066031,-0.09779893,-0.24833247,-0.18514359,0.46991935,-0.6609828,-0.9464735,0.008004582,-0.031126317,1.0311137,-0.36361226,0.27134237,-0.124674655,-0.3817366,-0.4386035,0.41980964,-0.15041319,0.30635318,0.24152307,-0.60034525,-0.10695543,-0.24236934,-0.70207256,0.21931931,-0.45077142,-0.74509746,-0.024942387,-0.44177717,-0.3205746,0.83519423,-0.08714412,-0.113099955,-0.00593026,-0.018784206,-0.10226709,0.35578275,0.2754053,-0.26329565,0.06162833,0.0032064677,-0.1261609,-0.30520254,0.60404295,0.0857007,0.3766914,0.28264138,0.12742876,0.17819135,0.5146406,0.60357296,-0.16555437,0.67512643,-0.017289871,0.097082034,0.35417607,-0.48401013,-0.14410657,-0.46072617,-0.27269146,-0.27814406,-0.5739216,-0.72111195,-0.004610306,0.018862117,-0.8323882,0.63657236,0.09577081,0.28853744,-0.22265223,0.6082564,0.4392867,-0.19966087,-0.16439193,-0.21341462,-0.17525145,-0.5947538,-0.28481704,-1.099028,-0.4104572,0.1564423,1.17682,-0.48065013,-0.03844966,-0.4037055,0.09766545,0.22226992,-0.06811832,0.3097055,0.21059434,0.30817342,-0.32430047,-0.8379432,0.3425556,-0.21174781,-0.12943776,-0.4147281,-0.28923255,0.92197114,-0.8486573,0.34805518,0.33861703,0.18445459,-0.028873015,-0.4854649,0.025969302,0.2088633,-0.4739983,0.27391076,-0.065865055,-1.113745,0.49937478,0.37487516,-0.23813455,-0.71291196,0.83018434,0.2719556,-0.27936092,-0.13285881,0.37124914,0.5117923,-0.05484892,-0.5544221,0.34072602,-0.71509135,0.45410147,0.15089762,-0.015006614,0.4583497,-0.040049054,-0.3377332,-0.7723128,0.10463603,-0.46119684,-0.40565085,0.13388002,-0.03807041,0.16771367,0.3053381,0.03387344,0.2724188,-0.75359726,0.14920303,0.22017784,-0.023129862,0.17270373,0.55629295,0.29340407,-0.4307421,0.52347726,-0.1549658,-0.36375389,0.13900939,0.086599015,0.42286772,0.11528318,0.0742103,0.13997468,-0.5317973,0.21679457,0.8494829,0.3031059,0.27547145,0.49137205,0.07153599,0.3056087,0.10676261,-0.04826335,0.14551672,-0.5799188,0.013806403,0.24411516,0.06235032,0.7685657,0.20568562,-0.025242735,-0.06711409,-0.2803267,0.14067152,0.3308196,-0.20060797,-1.079256,0.24998799,0.31675395,0.5948931,0.72106487,0.15430681,-0.17587098,0.2142258,-0.21872051,0.009856677,0.5124004,0.20255375,-0.5923538,0.73841107,-0.64102215,0.50002587,-0.32889324,-0.061842203,0.04926427,-0.18128112,0.32157314,1.0185616,-0.10840689,0.06517645,0.2593624,-0.3177117,-0.14312138,-0.2262835,-0.1949264,-0.4325657,-0.110009864,0.91794217,0.29641438,0.06395538,0.0051311255,0.11457069,0.11871517,-0.13233376,0.18568298,0.27745694,0.29541162,-0.121475436,-0.37065798,-0.047879785,0.83121985,-0.13537632,0.16181548,-0.20598729,-0.3495005,0.09443073,-0.013434654,-0.058409624,0.049782388,-1.0406427,-0.11743889,-0.59345585,-0.62245905,0.43443346,-0.059926283,0.21248296,0.25188702,0.09028232,-0.064632155,0.7260276,0.5535147,0.5307356,-0.07917668,-0.1401291,-0.42192602,0.30756372,0.18215704,-0.4066636,-0.26077506,-0.2573156,0.042098682,-0.6350134,0.79582304,0.0988276,-0.5076126,-0.0071526347,-0.050817955,0.080212764,0.7833603,-0.0460796,-0.030772299,-0.19050616,-0.27158642,-0.13898529,-0.53084147,-0.10956492,0.14621389,0.36392647,-0.24545333,-0.09508073,0.031283118,-0.2584986,0.2850124,0.0505144,0.57187235,0.47425288,0.16498896,-0.1956099,-0.17280145,0.1132376,0.73261344,0.23438148,-0.19602177,-0.44399127,-0.11088711,-0.020854484,0.31721425,-0.1344218,0.24572758,0.23964241,-0.34606072,0.931105,0.10979843,1.3290739,-0.06807333,-0.39391702,0.11065384,0.5837135,-0.20622483,-0.25969392,-0.47892523,1.3812814,0.53430974,-0.15867987,-0.24048123,-0.16803698,-0.53237617,0.3043394,-0.4966627,-0.12681785,0.0721979,-0.6505621,-0.20777707,0.32528955,0.13944843,0.103572205,-0.33335933,0.25582287,0.5198077,0.1516,0.28472644,-0.81503475,-0.48634267,0.39415216,0.51117164,0.10110972,0.38440388,-0.48846188,0.44077927,-0.8116372,0.15512906,-0.83628625,0.16997793,0.1475929,-0.3773801,0.118150964,0.2817519,0.24487555,0.09806403,-0.31361642,-0.019140387,0.49110308,-0.21371889,0.3100264,0.71586865,-0.1885498,0.10759705,-0.47674266,0.5312211,1.6504962,0.14894141,-0.17514057,0.58938754,-0.53629404,-0.61165935,0.5176369,-0.6804935,0.08878063,-0.1021343,-0.34722963,-0.4756276,0.28095496,-0.03216814,-0.05821365,-0.08077922,-0.7563585,-0.34643397,0.5060481,-0.0692983,-0.30722466,-0.2957922,0.30932492,1.1683853,-0.29137334,0.04487429,-0.004379569,0.50460017,-0.28762895,-0.37360346,0.03016882,-0.25300807,0.5378992,-0.0059755505,-0.38624683,-0.037449125,0.2463646,-0.41973576,0.37922502,0.024568558,-0.2841321,0.10320182,-0.12736782,0.18071337,1.3916733,-0.08912399,-0.2806275,-0.41483337,-0.861348,-0.760141,-0.5698905,0.21487837,0.20605603,0.07164795,-0.4644429,-0.055276126,-0.0028006197,-0.49775305,0.029592201,-0.27854294,0.42065293,-0.0166833,0.39872962,-0.02106688,-1.1125646,0.042865492,0.22214799,-0.36567903,-0.7842063,0.76512074,-0.33375055,0.9131552,0.08378379,-0.15611055,-0.08841364,-0.33682665,0.2689403,-0.45650452,-0.0006445527,-0.78331596,0.13911249 +749,0.38324413,-0.0943246,-0.38022134,-0.16777648,-0.11180622,0.08294232,-0.12204112,0.46985492,0.28372028,-0.30265227,-0.18573293,-0.1464964,0.11570813,0.22238724,-0.17703874,-0.63666165,-0.0064048725,0.13470879,-0.42150375,0.71423286,-0.39208323,0.09679023,-0.13756543,0.47258753,0.09281434,0.33969682,0.070653364,-0.1394705,-0.14102092,0.009946482,-0.1264701,0.42549473,-0.4680152,0.08580331,-0.27093968,-0.2830648,0.015991772,-0.35090485,-0.46732074,-0.731928,0.19532466,-0.8469602,0.4093744,0.116765656,-0.24860026,0.36309618,0.0023363573,0.23922193,-0.30872068,-0.14265117,0.012310596,0.08349746,0.069507346,-0.30620417,-0.098281875,-0.34065166,-0.433096,-0.017356357,-0.43082982,-0.020510077,-0.30320072,-0.046385378,-0.3363366,-0.13399853,-0.058890235,0.34913492,-0.50196373,0.12504862,0.2684484,-0.027728887,0.28528157,-0.37948045,-0.20628694,-0.14719117,0.30216494,-0.1296334,-0.23000087,0.27698565,0.31646866,0.38437554,-0.22108567,-0.12188552,-0.23870318,0.0836532,0.11095088,0.40195385,-0.32577166,-0.6678222,-0.074473776,0.10278608,0.19650435,0.15388726,0.08109607,-0.17594115,-0.06475761,0.15993023,-0.23179784,0.3327436,0.49882582,-0.37505946,-0.20375155,0.24417135,0.36665207,0.26918128,-0.25518292,-0.15728939,0.031232689,-0.54693544,-0.13571307,0.106425695,-0.18142127,0.6289028,-0.10648923,0.07231318,0.6065159,-0.07993562,0.03344254,0.21567766,0.112060525,0.0059371763,-0.17491116,-0.28078154,0.22516353,-0.33742803,0.082845196,-0.11791568,0.64971876,0.19681692,-0.6525462,0.36027068,-0.5454547,0.17696178,-0.18887901,0.43508795,0.64633316,0.38760677,0.29389927,0.5554736,-0.29876098,0.011905253,-0.018842507,-0.34874466,0.18078601,-0.22835974,-0.06297599,-0.5573608,-0.014513378,0.14073937,-0.08429081,0.07524507,0.14473377,-0.46168593,-0.18620576,0.21510307,0.74953,-0.23306204,-0.030071935,0.5861378,0.95831627,0.6612366,0.055156495,1.0113878,0.22574738,-0.12513898,0.4453818,-0.16173236,-0.84336287,0.32332304,0.31962267,-0.35541153,0.33774656,0.074651495,-0.135847,0.3882812,-0.36716238,0.06338934,-0.21252666,0.1236502,0.10517567,-0.12824783,-0.33387783,-0.39676404,-0.19547985,-0.01357007,0.069566675,0.32124642,-0.1291997,0.1986281,0.04155239,1.5038763,0.20075312,-0.116916016,0.03329561,0.7276713,0.20747092,-0.06445009,-0.103130564,0.397789,0.30240804,0.1311032,-0.56820387,0.13544203,-0.09609377,-0.42972365,-0.07880945,-0.31334525,-0.04178375,0.13135344,-0.55285406,-0.14175434,-0.1936041,-0.16446312,0.5140229,-2.9016109,-0.12689508,-0.095267974,0.51125324,-0.2657719,-0.22960305,-0.2615631,-0.38332343,0.40651682,0.3178257,0.51504105,-0.73824894,0.35931498,0.3132264,-0.6159735,-0.16902113,-0.4968198,-0.06088858,-0.05809503,0.4422961,-0.012794725,0.11699939,0.30311993,0.16022508,0.4369906,0.024077326,0.11025565,0.08660289,0.44566658,-0.028472241,0.37648782,-0.1063851,0.45551497,-0.32532498,-0.20092109,0.21532936,-0.2772989,0.33083415,-0.043379243,0.05687428,0.40924662,-0.3864772,-0.97150314,-0.6715466,-0.0366409,1.2069212,-0.2757574,-0.41043144,0.10835318,-0.53972155,-0.18683992,-0.15974236,0.39881223,-0.08721425,-0.15233329,-0.80858546,0.012767996,-0.04323405,0.16588116,0.06294727,-0.01827988,-0.26392794,0.6376238,0.018765334,0.45155448,0.31332085,0.119301744,-0.18220647,-0.47563595,0.122430705,0.57819337,0.22082135,0.11923774,-0.1961232,-0.28597707,-0.24821332,0.106076725,0.09613881,0.66196686,0.48451588,-0.17535456,0.15145285,0.30388966,-0.05056899,0.07297941,-0.20378579,-0.3299913,-0.15269697,0.11713784,0.575134,0.7985107,-0.35217997,0.23819688,-0.032011602,0.16398263,-0.1275861,-0.39046767,0.48688433,1.1055847,-0.13614896,-0.16521253,0.44973484,0.706514,-0.33277896,0.35676083,-0.506979,-0.28748065,0.38927287,-0.08123892,-0.30063826,0.24456826,-0.30023345,0.11035264,-0.9286172,0.2566534,-0.4135008,-0.22297923,-0.5184759,0.14381048,-3.40028,0.21729448,-0.332264,-0.21423014,-0.2601984,-0.010261719,0.11479586,-0.6391449,-0.50804466,0.1968552,0.09137279,0.67018765,-0.011208117,0.1568166,-0.3206095,-0.22020207,-0.10994985,-0.022373876,0.21053442,0.39102167,-0.089999035,-0.515616,-0.20104453,-0.11882317,-0.30250493,0.19424589,-0.6083717,-0.39420465,-0.06549034,-0.5503778,-0.23467836,0.4981318,-0.24429032,-0.021887703,-0.14916632,0.03923804,-0.18790789,0.32920733,0.09897793,0.17047834,-0.051770296,0.037122183,0.04455478,-0.24989639,0.37517634,0.051498793,0.39138058,0.25982857,0.032492805,0.1359853,0.5709206,0.41781256,0.089756794,0.83152854,0.5967719,-0.01685905,0.3368079,-0.3339803,-0.13203222,-0.4663996,-0.26943496,-0.20197265,-0.33766446,-0.36489424,0.015287851,-0.42969272,-0.77040154,0.40467215,-0.06962085,0.14265996,0.029073264,0.15700105,0.66565645,-0.24223049,0.053580318,-0.022399444,-0.19624631,-0.6800979,-0.12774898,-0.61073226,-0.2841896,0.16610953,0.7549005,-0.30520853,0.0149076665,-0.065884344,-0.24523316,-0.018622683,0.10211282,-0.023413688,0.17680225,0.5905232,-0.112001166,-0.5804381,0.36375788,-0.051099386,-0.19881427,-0.54430676,0.23440354,0.5482835,-0.70098656,0.76608354,0.4890675,-0.0135002965,-0.097926125,-0.4805849,-0.3093821,-0.15713778,-0.13294291,0.3502867,0.26346043,-0.80667526,0.36004442,0.34049368,-0.2715186,-0.60877216,0.7616635,-0.03260524,-0.4795007,-0.093791425,0.2507907,0.055266697,0.02664795,0.017006008,0.21508013,-0.33960295,0.18181603,0.19389495,-0.076912574,0.27781084,-0.021373646,0.092760764,-0.8071099,0.08347118,-0.4777717,-0.28389475,0.45221096,0.12042736,0.09542362,-0.07229157,0.02460936,0.26258212,-0.28991184,0.04271118,-0.031143904,-0.2668832,0.38242993,0.34402636,0.4750833,-0.37657538,0.5244414,-0.01874793,-0.076644115,0.12312975,0.18437378,0.34173366,0.104539216,0.4232288,0.0006057471,-0.20320094,0.20887746,0.7664514,0.115142636,0.40667614,0.019435454,0.062669344,0.3337655,0.101860575,0.17299557,-0.09391135,-0.40609947,-0.06530256,-0.16319326,0.21286562,0.37426838,0.05756081,0.15115473,-0.08192521,-0.27946553,-0.038947694,0.28266427,0.22846569,-1.2325367,0.3969503,0.2274799,0.6771618,0.39530224,-0.075611725,0.048986137,0.6129819,-0.18778384,0.15421996,0.42190665,-0.1601692,-0.5918229,0.51476043,-0.59964895,0.39872763,0.03180935,-0.028288689,0.008702932,0.012568734,0.28359488,0.71462935,-0.1557361,0.0403024,0.106337406,-0.45070156,0.0626793,-0.3835687,0.074221864,-0.66972923,-0.13048634,0.56407875,0.6849672,0.34369516,-0.24587725,0.025988156,0.10186861,-0.14540815,0.12723807,0.0075363154,0.23182233,-0.0826909,-0.81862915,-0.060187902,0.5333468,-0.17194761,0.10886038,-0.068648525,-0.18550423,0.36401892,-0.1477685,-0.057651114,-0.13353266,-0.6058606,0.014954158,-0.35769922,-0.3527352,0.66816014,-0.13386364,0.25476763,0.27943322,0.028242275,-0.36112732,0.43751827,-0.08982235,0.71517265,-0.18510911,-0.32369247,-0.53960794,-0.02614676,0.19245203,-0.062675945,-0.10331801,-0.37383518,0.016449597,-0.21156894,0.3952333,0.037886858,-0.065974064,-0.19813558,-0.09996276,0.11773981,0.55694187,-0.08746772,-0.25599834,-0.2699336,-0.08601054,-0.46818438,-0.27761155,-0.00034270328,0.29772502,0.34576887,0.031359497,-0.11051936,-0.21109006,-0.10404547,0.48268005,-0.07260086,0.36521783,0.40619022,0.2029283,-0.09643824,-0.1706022,0.33138424,0.41892368,-0.04797175,-0.14917152,-0.4149079,-0.2581536,-0.3621807,-0.0078088813,-0.17263034,0.36001632,0.01201669,-0.095546566,0.77768975,-0.13373733,1.0476319,0.031910677,-0.20505068,0.05133006,0.4778196,-0.041222207,-0.10800914,-0.21618268,0.73418766,0.5663015,0.040086117,-0.097233675,-0.31887498,-0.017425308,0.0099411355,-0.18504943,-0.12976663,0.03351571,-0.55445707,-0.15820554,0.10740765,0.29468915,0.30063328,-0.03553968,0.04446423,0.061435737,0.12203825,0.18126824,-0.37938985,-0.25237036,0.20848174,0.28541765,0.16730501,0.13926183,-0.4273189,0.31091353,-0.34746698,-0.002073305,-0.34879336,0.18112619,-0.13284642,-0.37523815,0.16147368,-0.11804063,0.3174606,-0.30882376,-0.20889053,-0.30778217,0.47281522,0.20068884,-0.005432408,0.4303806,-0.15427919,0.030813744,0.12006494,0.56124574,0.8628555,-0.19786592,-0.17663133,0.32862473,-0.42781836,-0.7320494,0.2774229,-0.2338014,0.37421623,-0.04999963,-0.011424167,-0.7420422,0.28471848,0.16097176,0.13890685,-0.20419434,-0.71618885,-0.278655,0.1575084,-0.31375057,-0.23030852,-0.4132249,0.09796398,0.5589443,-0.22574744,-0.19912873,0.039391104,0.11601054,-0.10419222,-0.34019282,0.055293806,-0.45435047,0.12723014,0.109588556,-0.43034118,-0.08018936,0.14529303,-0.33013555,0.3310335,0.26294306,-0.31433874,0.07919031,-0.29438546,0.016167233,0.9808303,-0.28121263,0.277452,-0.4209464,-0.47333905,-0.6837734,-0.39654583,0.4838328,0.041296285,0.030509302,-0.5992278,0.108740725,0.21723308,-0.3453819,-0.24020414,-0.28774303,0.44393602,0.0037327004,0.25593302,-0.02928871,-0.67373675,0.14536807,0.0058752126,-0.13837445,-0.5960617,0.44296533,-0.085319094,1.0678629,0.053519327,0.14718615,0.35837302,-0.33300373,-0.3143862,-0.12408153,-0.20345464,-0.52354205,0.0047166687 +750,0.36258447,-0.11464862,-0.5024982,-0.04190451,-0.099017024,0.22180404,-0.21615565,0.22785242,0.21422726,-0.3614136,0.047709353,-0.1280095,0.063796274,0.3340906,-0.14689216,-0.49082664,-0.10332355,0.20956515,-0.5028967,0.29337567,-0.53293765,0.3466461,-0.19309883,0.19673999,-0.118144765,0.22287774,0.2212692,-0.17353337,-0.19661468,-0.141526,0.053495824,0.27075237,-0.35501856,0.13846585,0.007794981,-0.21830168,0.044457477,-0.36708027,-0.40418985,-0.58642733,0.3662802,-0.6858058,0.4783616,0.02478015,-0.21396323,0.32787812,0.1742586,0.25408468,-0.25596148,0.04205592,0.12692747,-0.2650125,-0.13807562,-0.27458537,-0.15305176,-0.25683942,-0.49126416,0.031693824,-0.4573927,-0.18707737,-0.28452685,0.13283554,-0.34718612,0.12371183,-0.21940742,0.42909533,-0.3499167,-0.04489816,0.23271868,-0.18455438,0.2064264,-0.43729308,-0.04412358,0.0146089755,0.16785097,-0.15188342,-0.058462456,0.2733236,0.043856025,0.4155084,-0.10485272,-0.16808303,-0.36019188,-0.18836293,0.21102688,0.5389224,-0.17711516,-0.46795455,-0.16009167,-0.030930206,-0.0034930836,0.09848653,-0.11007081,-0.22270155,-0.034714166,0.13301848,-0.25612986,0.28445846,0.5677743,-0.23381825,-0.13085568,0.42136562,0.54479384,-0.027430639,-0.030593675,0.020622998,0.06983255,-0.49276596,-0.1792372,0.044207282,-0.12164806,0.47086048,-0.13365895,0.26617694,0.56682426,-0.25184825,-0.07481022,-0.047209986,0.07754127,-0.07210282,-0.23349264,-0.155909,0.19522056,-0.48438144,0.039744873,-0.0956745,0.80815613,0.097847104,-0.6527358,0.42271203,-0.5017703,0.11647101,-0.025706835,0.5865934,0.5403841,0.4284451,0.24402204,0.7797773,-0.5569497,0.022491898,-0.2279123,-0.5188371,0.13185392,-0.06997572,-0.014731139,-0.38314107,0.0695779,0.20727761,-0.08070971,0.047780953,0.3799745,-0.39223632,0.013160117,0.0815521,0.708735,-0.37358713,-0.020405848,0.56566775,1.1060317,0.8747457,0.051434133,1.1727968,0.19155174,-0.27808398,-0.017633624,-0.25563836,-0.79099643,0.2418029,0.27982482,-0.24899387,0.2667447,0.1339825,-0.06296151,0.4304887,-0.46734333,-0.064362384,-0.0663043,0.3310695,0.025993086,-0.010983184,-0.42809322,-0.2270722,0.14955205,-0.08064841,0.3078837,0.30296624,-0.3044169,0.32554388,0.014998062,1.4628258,-0.04092304,0.26450202,0.16849187,0.29045054,0.07398987,-0.048705865,-0.14945026,0.28662133,0.3416103,0.23793685,-0.52362025,0.07027573,-0.15962943,-0.5215588,-0.11609167,-0.23485407,0.07310052,-0.1292015,-0.3989291,-0.06771161,-0.09160374,-0.41939163,0.42820692,-2.8553782,-0.07929464,-0.09380491,0.18158591,-0.2975747,-0.2694133,-0.081645265,-0.45272368,0.3001485,0.35792768,0.3606742,-0.59222656,0.35123682,0.3242905,-0.4047491,-0.11643581,-0.5421474,-0.04021212,-0.14700145,0.33835799,0.087818086,-0.18525478,-0.09501085,0.1796569,0.38299733,-0.25265062,0.07627121,0.29006165,0.30853012,0.10333177,0.3797135,-0.028556813,0.49033934,-0.41595256,-0.21944527,0.35983393,-0.45602274,0.13638338,-0.059043128,0.118081585,0.2699354,-0.3299283,-0.80601007,-0.4729015,-0.18427166,1.3443655,-0.36933312,-0.32305932,0.23040336,-0.21521927,-0.3628033,0.018261783,0.3125431,-0.21838364,-0.04465523,-0.80649525,0.20608896,-0.13169886,0.33834592,-0.0008546561,0.105451286,-0.42037684,0.55775857,-0.08822672,0.5972513,0.35374624,0.1613212,-0.37984744,-0.37180638,0.032675594,1.0296865,0.29963908,0.21843986,-0.1437583,-0.19352493,-0.19420089,-0.15235054,0.13923626,0.52361125,0.6923109,0.005411636,0.11092953,0.2898079,-0.06660865,0.013341678,-0.0475368,-0.18994881,0.0105933435,-0.06982234,0.58226186,0.4589858,-0.17624871,0.33696055,-0.016531656,0.3163629,-0.33918488,-0.36205608,0.4065383,0.81051385,-0.12418695,-0.28126442,0.6062896,0.62071824,-0.21554443,0.40727857,-0.5839012,-0.41968584,0.38008392,-0.3289147,-0.3526399,0.31706944,-0.23855552,0.095210895,-0.8620663,0.21435626,-0.21705341,-0.59351116,-0.60219926,-0.2343935,-3.8691654,0.10483592,-0.20768997,-0.225285,0.009221531,-0.023289923,0.23331046,-0.51332253,-0.49721274,0.05293488,0.1326924,0.56977904,0.0021073706,0.069747895,-0.23197383,-0.11185953,-0.20763099,0.09686608,0.17711547,0.20892903,0.06923705,-0.4665324,-0.048924588,-0.18584852,-0.41320294,0.06606531,-0.49822804,-0.34927064,-0.17268701,-0.4686708,-0.35045892,0.60119355,-0.39643395,0.08847548,-0.27131286,-0.018447544,-0.04792878,0.37114513,0.023842797,0.1478831,0.09701282,-0.16012739,0.027429044,-0.30087322,0.43986163,0.017794348,0.31552836,0.47964332,-0.22443484,-0.024379358,0.48843104,0.611042,-0.029234253,0.81626326,0.40761322,-0.15702857,0.33696055,-0.29885384,-0.13085939,-0.46687016,-0.3736835,0.05831581,-0.43127528,-0.3660932,-0.23326427,-0.30401248,-0.7069802,0.5652013,-0.0025435463,0.061172105,-0.09150137,0.29494956,0.33347416,-0.16502932,-0.10480157,-0.07718566,-0.1421934,-0.3193241,-0.25728816,-0.64537394,-0.3477597,-0.023686051,0.9672823,-0.077635005,0.03546987,0.040192135,-0.123904936,-0.059912227,0.044606,0.24411961,0.34350184,0.33299297,-0.018676933,-0.5744221,0.40609065,-0.30824065,-0.15777296,-0.5637599,0.05122842,0.6196518,-0.6014483,0.5198861,0.4900849,0.20099224,-0.09274689,-0.52552384,-0.17519939,0.1343238,-0.20786974,0.5096478,0.3056058,-0.82443833,0.5290935,0.41811597,-0.3628178,-0.67683965,0.44012323,0.012534592,-0.20665386,-0.019014973,0.42262256,0.0035012513,0.052898034,-0.21208993,0.14570649,-0.4200118,0.30107972,0.17681508,-0.02694943,0.4935886,-0.28519952,-0.032625377,-0.59309363,-0.11187727,-0.42338684,-0.20549852,0.000291273,-0.022846285,-0.016720504,0.20670925,-0.19872895,0.39642805,-0.36217052,0.020236155,0.029042557,-0.22446704,0.41593122,0.4013825,0.344132,-0.34028125,0.6370628,0.010100308,0.014067357,-0.25256005,-0.06622734,0.50775695,-0.009291876,0.4340055,-0.028400542,-0.095131874,0.46535003,0.7618692,0.17980444,0.41162902,0.18082954,-0.20402247,0.116810784,0.076679125,0.0639397,0.17469001,-0.41545752,-0.08516353,-0.20670253,0.22722022,0.43602908,0.17011482,0.58919203,-0.12057815,-0.30530113,0.07735092,0.1826347,-0.22410615,-1.1768008,0.4412809,0.14113836,0.6629701,0.40485808,0.10702508,0.1901334,0.5402955,-0.3004852,0.1338978,0.28543395,-0.06915792,-0.45558053,0.5493067,-0.729393,0.41179994,-0.060923945,0.017221928,0.06509212,-0.029651731,0.45323598,0.6970856,-0.00834734,0.15511869,0.005682148,-0.28418976,0.18708733,-0.24202615,0.17923605,-0.5295847,-0.17357105,0.5828157,0.35602304,0.42303643,-0.16317205,-0.1085751,0.16879725,-0.07432316,0.14869824,-0.00061010197,0.12596376,-0.074330755,-0.67222226,-0.37268102,0.5256017,0.25730956,0.13448738,-0.0594409,-0.13865748,0.2614243,-0.19149972,-0.13361621,-0.032381274,-0.39641583,0.015848873,-0.20209625,-0.45142692,0.2920051,-0.27070612,0.31792772,0.16805974,0.086452454,-0.5026787,0.20993112,0.17978086,0.77198446,-0.00441825,-0.21231861,-0.25725833,0.12633786,0.28157502,-0.09649895,-0.1418293,-0.4004107,0.07621914,-0.57267433,0.3912992,-0.22646247,-0.37473792,0.20885259,-0.2175886,0.029156143,0.57152694,-0.19898568,-0.21821116,0.039117184,-0.119739205,-0.24922685,-0.28755245,-0.26712173,0.16816474,0.100970075,-0.027746372,-0.025345653,-0.057205975,-0.15796094,0.3591733,0.0058539524,0.16069664,0.3965206,0.19477034,-0.30379865,-0.08881931,0.011846807,0.49560228,-0.008992932,-0.11929109,-0.4000967,-0.4463379,-0.28615656,0.1352242,-0.12916432,0.22387023,0.13500759,-0.308556,0.64851177,-0.035641607,0.9601319,0.09695819,-0.30827975,0.017587304,0.5002872,0.09514587,0.036577065,-0.33164927,0.94079244,0.5603367,-0.110426426,-0.21244165,-0.4166749,0.049838997,0.07857554,-0.22435978,-0.32423365,-0.0430489,-0.6323348,-0.2221707,0.29803374,0.34715793,0.10634862,-0.04811766,-0.017063107,0.18799147,0.11513614,0.29834804,-0.4333071,0.044426084,0.46240565,0.27539825,0.043920875,0.16205692,-0.41493073,0.36830646,-0.5933588,0.09233597,-0.1671164,0.10779722,-0.13934487,-0.24820429,0.27766627,0.069769494,0.27830023,-0.31877095,-0.28112912,-0.0038851053,0.39625537,0.08550016,0.08625763,0.7159241,-0.13361719,0.02121607,0.08727352,0.52823615,0.97911745,-0.30343264,0.08495772,0.3563731,-0.23835905,-0.7148569,0.17614749,-0.22471175,0.11104971,-0.11463264,-0.30798274,-0.4900782,0.34892803,0.16334742,0.016428363,0.07233192,-0.35438958,-0.16616152,0.35618132,-0.2801862,-0.30178294,-0.26134187,0.11241,0.5159351,-0.24214119,-0.320136,0.1005635,0.3911119,-0.28464645,-0.49645764,-0.1091029,-0.32335222,0.26157802,0.13169391,-0.1837214,-0.054146014,0.042131055,-0.4206738,0.24262258,0.22809726,-0.31470945,0.03151896,-0.21258692,-0.048515268,0.6733775,-0.23423654,0.1742864,-0.6486812,-0.47907424,-0.9681382,-0.2571109,0.46752685,0.027610932,-0.002342131,-0.5229809,-0.037014425,0.007796295,-0.19434972,-0.09171801,-0.51243246,0.34238502,0.118766464,0.32294077,-0.12267835,-0.6166117,-0.043100722,0.108436495,-0.28221962,-0.42943197,0.6335532,-0.11220798,0.68141687,0.018276436,0.19204685,0.45822123,-0.5227153,0.1216844,-0.19554973,-0.15238982,-0.6959627,0.07442662 +751,0.60195154,-0.098461814,-0.6120564,-0.15019117,-0.19651511,0.0903313,-0.08543165,0.6298993,0.39579803,-0.40574753,-0.14859405,-0.14194955,0.08136304,0.053311888,-0.1627207,-0.59347045,0.07315384,0.26426938,-0.6082197,0.69891983,-0.29613978,0.34810355,-0.06607047,0.41855258,0.339666,0.2433316,-0.24677137,0.09360222,-0.3132186,-0.071511015,0.054936226,0.36138168,-0.51888084,0.06482893,-0.28406513,-0.19663492,-0.23667988,-0.43281043,-0.50438267,-0.82712704,0.16339518,-0.9763572,0.73093855,0.07165704,-0.33006254,0.03935896,0.30192003,0.18642198,-0.16392651,-0.03947017,0.15476848,-0.014446231,-0.102723725,-0.1583258,-0.31956023,-0.42833444,-0.52796555,0.07209025,-0.45644778,0.10627156,-0.19767848,0.23878813,-0.3662682,-0.13654655,-0.09477878,0.6905422,-0.2907116,0.314935,0.15252236,-0.04176466,0.29555702,-0.7032708,-0.3097647,-0.18223074,0.2140091,-0.17651765,-0.39288315,0.17254393,0.3885948,0.40302035,-0.012725282,-0.22338639,-0.2801738,0.10239796,0.051753584,0.33158973,-0.06936496,-0.44957477,-0.09838092,0.05395109,0.23134072,0.22635719,0.38860956,-0.31267947,-0.14592817,-0.17821842,-0.18253991,0.5215189,0.40477335,-0.18781868,-0.12831722,0.24848604,0.48520666,0.26047367,-0.16543058,0.16199687,0.002607318,-0.5881754,-0.03689353,0.19347245,-0.121538654,0.6217848,-0.23659192,0.019707501,0.6118623,-0.2718628,-0.2916971,0.416323,0.32168242,0.06891374,-0.35779402,-0.1802327,0.15581575,-0.45533335,0.043632645,-0.25424707,0.6595411,0.09130415,-0.6656174,0.059585653,-0.57828516,0.060309168,-0.07676225,0.47298628,0.77081954,0.42346463,0.17090115,0.63803416,-0.18025371,0.004045583,0.062909655,-0.25430068,-0.010574921,-0.25017542,0.10190383,-0.54688334,-0.07572006,-0.13097864,-0.27707317,0.1731108,0.56222194,-0.54558504,-0.33594972,0.13406779,0.76529634,-0.25748238,-0.29643345,0.89996433,0.95919514,0.839757,0.084355906,1.3466626,0.13804437,-0.20381814,0.15169755,-0.25036228,-0.77509433,0.39478207,0.03199172,-0.7635014,0.32152322,0.031336095,-0.124029726,0.19079755,-0.41164085,0.062508255,-0.23566273,0.33300176,-0.013221392,-0.16187403,-0.3803476,-0.38390192,-0.22159488,0.025871754,0.38570172,0.10355561,-0.2612348,0.4134895,0.04881082,1.3705714,-0.19019166,-0.14852327,-0.01867084,0.27543986,0.23292817,-0.25975662,-0.23004714,0.50520444,0.33278996,0.12589954,-0.52689993,0.13068733,-0.15718721,-0.26776853,-0.30115426,-0.3762849,0.00344027,-0.027502056,-0.4916008,-0.1895139,-0.27722237,-0.47716856,0.41954154,-2.5570345,-0.30701086,-0.09662156,0.43958429,-0.13905248,-0.38593322,-0.34917626,-0.4889723,0.25502986,0.1337387,0.48571098,-0.66141987,0.41549212,0.32268244,-0.60193324,-0.17308429,-0.7065982,-0.25835449,0.046141505,0.1360365,0.0026004757,0.09671196,0.055140093,0.10757889,0.39330605,-0.06333757,0.15012778,0.4566031,0.4529267,0.005873277,0.4322826,0.02313948,0.6915605,-0.17093737,-0.34034476,0.38946578,-0.40731966,0.26314318,0.093082935,-0.02314694,0.59257674,-0.42579067,-0.90804327,-0.63964945,0.01648442,1.1174928,-0.16262731,-0.33537653,0.17826721,-0.528892,-0.25981066,0.0962938,0.5537112,-0.1739267,-0.031009654,-0.933169,-0.16687177,0.008267084,0.27651635,-0.13669246,-0.0265405,-0.39672068,0.63463676,-0.07974381,0.44042698,0.30358908,0.2550099,-0.4312991,-0.59891355,0.052849844,1.1306858,0.34044626,0.12858365,-0.3911049,-0.17506878,-0.5855316,0.09888926,0.08696756,0.6887582,0.4536889,-0.11443727,0.26461273,0.27145115,-0.05363483,0.21552055,-0.07398576,-0.39225972,-0.29241878,0.15851921,0.50145185,0.64986163,-0.2942611,0.71923214,-0.20980476,0.33244604,-0.15273608,-0.5444186,0.5857505,1.2749915,-0.16150711,-0.42106077,0.73687863,0.39076313,-0.36485973,0.50684,-0.38439548,-0.36375916,0.35758626,-0.1190373,-0.26219872,0.39747843,-0.3591081,0.11049245,-1.1020317,0.25021788,-0.32135823,-0.52852,-0.51473355,0.030571938,-1.7343243,0.2051643,-0.1607283,-0.21724626,-0.19507502,-0.32594264,0.00036257965,-0.50781673,-0.6508923,0.12712668,0.13777983,0.60856664,-0.16828209,0.076445036,-0.051973086,-0.32613203,-0.17464899,0.13609932,0.26922953,0.42679685,-0.17564188,-0.39226356,-0.09404201,-0.12219989,-0.31679285,0.074031696,-0.7965785,-0.6127182,0.010644367,-0.7801391,-0.25090396,0.70344883,-0.2784128,-0.13387826,-0.21040395,0.078202836,0.24337228,0.31979626,-0.038764134,0.17780413,0.10498241,-0.1290938,0.034288432,-0.14077021,0.23075484,0.08435951,0.2751301,0.36083725,-0.073454194,0.4042174,0.45725563,0.67318225,-0.25413164,0.8577209,0.52708477,-0.053153,0.25277174,-0.14799634,-0.30492243,-0.45219502,-0.15286674,-0.1360101,-0.5785637,-0.31793576,-0.033366363,-0.37383208,-0.9351953,0.56508785,-0.10229667,0.05349825,-0.039242327,0.3360265,0.5501854,-0.0075288233,0.06996377,-0.17523599,-0.30234596,-0.50955427,-0.37636593,-0.48441586,-0.3878341,0.019414742,1.2161472,-0.35604388,0.18372495,0.07725851,-0.3581769,-0.0033535718,0.27556258,-0.100309245,0.09143608,0.7212241,-0.20669511,-0.4525646,0.19662215,-0.23251057,-0.14932677,-0.5300864,0.2631163,0.61905926,-0.59137905,0.76767695,0.25238025,0.0077673243,-0.33461383,-0.55716145,-0.17040612,0.070924565,-0.1509318,0.49095,0.34053606,-0.5589936,0.37155765,0.12619576,-0.21585158,-0.651529,0.5280503,-0.0947167,-0.29922712,-0.14348921,0.44990233,0.004338063,0.058582857,-0.27179083,0.22790667,-0.24250695,0.20840296,0.18345875,-0.21424752,0.08916409,-0.1959615,-0.08246316,-0.7819437,0.12990215,-0.44021225,-0.382427,0.20220569,0.17754142,0.09983303,0.23714049,0.21941134,0.280625,-0.42116892,0.015786223,-0.16265392,-0.24792764,0.21792112,0.29029095,0.5323837,-0.54665244,0.4867788,0.0062101106,-0.1996466,0.07471523,0.2855151,0.5377282,0.0135349315,0.29220825,0.25180715,-0.03764566,0.2577647,0.681141,0.023765666,0.3687093,0.064881906,0.013279887,0.04591888,-0.005243274,0.37596056,-0.14342152,-0.5159204,-0.05396619,-0.19478266,0.28531,0.45055503,0.17241003,0.3204912,0.0024522864,-0.6192697,-0.032319333,0.20381874,0.11225692,-1.5698981,0.24375758,0.2582724,0.9317666,0.34497026,-0.041859034,0.014604227,0.57498175,-0.14907722,0.096828304,0.29737514,-0.066340774,-0.4238493,0.47965607,-0.6974958,0.46184736,-0.07399085,0.0012265283,0.010212839,-0.0014234093,0.49167788,1.0066106,-0.20002726,0.04717431,0.12872921,-0.2729465,0.03319116,-0.46991268,0.15590352,-0.6298057,-0.18209933,0.71218777,0.57349575,0.24509643,-0.34476364,0.09177932,0.1609582,-0.19396909,0.16651258,0.081979044,0.094129674,-0.06662666,-0.7168135,-0.031102937,0.54724914,0.004195938,0.10178215,0.14747886,-0.024487926,0.21851614,-0.1091061,0.096721224,-0.17649935,-0.8202268,-0.25487202,-0.3962348,-0.39113334,0.36793363,-0.30142796,0.12185477,0.31042397,0.07216886,-0.26002762,0.6070314,0.28298458,0.8738794,-0.03301946,-0.058884904,-0.43903255,0.3632256,0.20583905,-0.12801994,-0.076677255,-0.2511458,0.16178626,-0.5720791,0.47320816,-0.08421198,-0.41779214,-0.15157345,-0.021522505,0.046021644,0.50902927,-0.19160435,-0.03521978,0.049771056,-0.22144222,-0.39910752,0.025603918,0.011064843,0.24829382,0.5059617,-0.3175948,-0.23388639,-0.07796569,-0.09675571,0.18418129,0.087662354,0.6071731,0.48750627,0.26227632,-0.20641604,-0.0037916256,0.4877912,0.685586,-0.090702586,-0.11115429,-0.3073034,-0.13792303,-0.35689545,0.3371042,-0.079186454,0.27453315,0.13119338,-0.16070963,0.8950028,0.20997474,1.3452672,-0.013127131,-0.46344388,0.11652761,0.46536165,-0.025196223,-0.07911352,-0.342656,1.0395982,0.42363212,-0.014196066,-0.14074956,-0.496908,0.01811292,0.041813593,-0.14509545,-0.1325474,-0.1453716,-0.55120504,-0.36178115,0.29809493,0.19728324,0.2101374,-0.09727531,0.22730407,0.3238614,-0.17242779,0.04573281,-0.57160944,-0.015081846,0.093569465,0.36138767,0.000113762915,0.19187358,-0.5063555,0.33988386,-0.59068376,0.051860396,0.015804114,0.28614205,-0.08774796,-0.3548067,0.13988294,-0.051555183,0.39661804,-0.60629904,-0.18979289,-0.40181106,0.59504455,0.09380247,-0.005304741,0.6484953,-0.27773076,0.1297411,0.1594476,0.46466225,1.0580466,-0.20602615,-0.06058791,0.3517259,-0.38982385,-0.7094437,0.33006734,-0.3405062,0.37156683,-0.2148285,-0.21857022,-0.63339496,0.3629483,0.11570842,0.15622209,-0.08723069,-0.43384907,-0.0891887,0.33712107,-0.24611782,-0.049575154,-0.24232425,0.011136679,0.47963715,-0.03415913,-0.45251825,0.14025718,0.1620622,-0.2359129,-0.5437346,-0.16526964,-0.36262947,0.25972006,-0.060221646,-0.27631438,-0.26246276,-0.0950589,-0.4515088,0.21335632,0.29566675,-0.23995283,0.13852312,-0.19608134,-0.26344818,0.9318896,-0.3347172,0.23722576,-0.36167362,-0.6206985,-0.6417911,-0.31115073,0.19352438,0.07292722,-0.16309491,-0.8134943,-0.07103538,-0.24655518,-0.32027933,0.09760376,-0.30739695,0.55228275,0.16984089,0.2209818,-0.2681978,-1.0334947,0.21873464,0.13703153,-0.23748685,-0.7748502,0.42961833,0.11626422,0.7432237,0.14386143,0.21209247,0.44622272,-0.44221908,-0.05656445,-0.14472707,-0.02732243,-0.6315888,-0.08151717 +752,0.37147364,-0.12697075,-0.5270509,-0.09708414,-0.19153626,0.19360961,-0.13789861,0.49348998,-0.0015473505,-0.3204163,-0.07109138,-0.032003004,-0.022480536,0.21081047,-0.18200064,-0.541893,-0.027072597,-0.014795633,-0.37379056,0.24311225,-0.47300115,0.25669602,-0.055872735,0.27383152,0.14843722,0.2598354,0.17533582,0.043275837,-0.02707433,-0.16940413,-0.22906467,0.318506,-0.48407447,0.08031867,-0.1443855,-0.23646952,-0.021770477,-0.36944988,-0.43319437,-0.5295912,0.2512956,-0.66694635,0.38644612,0.048851285,-0.20087202,0.36278227,0.21023098,0.20109607,-0.1198801,-0.00077188894,0.24766347,0.027112173,0.11556178,-0.16990902,-0.22019294,-0.44196022,-0.44255772,0.07400766,-0.5542769,-0.14133482,-0.01297286,0.15706958,-0.15232484,-0.030534608,-0.2613048,0.45183313,-0.3442678,-0.14700687,0.2094528,-0.10712773,0.29414332,-0.5246923,-0.07512136,0.05953312,0.08593281,-0.12610744,-0.14278825,0.11426231,0.1418568,0.39665976,-0.12761192,-0.13583408,-0.3411915,0.026313046,0.06238354,0.41652724,-0.31238306,-0.3524661,-0.23855445,0.038533956,0.21969432,0.19458131,0.035081644,-0.23610508,-0.10786317,0.007530293,-0.26725727,0.43807808,0.52888304,-0.33192194,-0.13815537,0.3839083,0.5259271,0.11845395,-0.19961813,0.1279756,-0.008228371,-0.44651812,-0.07297665,0.053988412,-0.1390653,0.43285155,-0.15968281,0.2602199,0.50152636,-0.06389462,0.07345414,-0.0056348145,-0.04625562,0.021511141,-0.23468985,-0.0742038,0.080190636,-0.3602284,-0.02736195,-0.12165336,0.6227437,0.052926525,-0.75641507,0.28255457,-0.46364868,0.16340072,-0.10926136,0.42092744,0.7035767,0.27071723,0.05826582,0.713097,-0.33844984,0.11531059,-0.122034915,-0.3391677,0.11541627,0.11625897,-0.010359399,-0.58347476,-0.10954317,0.15202059,0.0068546883,-0.018355517,0.40213048,-0.5652805,-0.088386916,0.20949739,0.82723707,-0.23001334,-0.11741292,0.63995564,1.0558062,0.88673437,0.0664344,0.7812372,0.15510449,-0.10863945,0.054411784,-0.32779193,-0.5176145,0.1319885,0.3650325,0.23436292,0.21958502,0.030916736,-0.034134716,0.47040698,-0.30573916,0.020436,-0.14747441,0.24615978,0.076359,-0.02244118,-0.25228763,-0.11103928,0.05779411,0.16490354,0.05819188,0.2791803,-0.2831072,0.25623408,0.09857304,1.5795164,-0.16373496,0.16210228,0.15498905,0.39971414,0.25214264,-0.33193412,0.061211657,0.19521025,0.49880117,0.111348405,-0.3986105,0.013133644,-0.22536242,-0.47534448,-0.09107463,-0.22169282,-0.08787092,-0.15082493,-0.5533541,-0.0113296565,-0.0054979674,-0.2878821,0.3824323,-3.1695764,0.057921212,-0.10720994,0.18383189,-0.19697237,-0.4473197,-0.17233019,-0.47906858,0.46149507,0.40238604,0.3545934,-0.5552568,0.35714912,0.2895724,-0.2853167,0.070781216,-0.6767703,-0.07184988,-0.03307565,0.3376936,0.073448114,0.02757233,0.1000682,0.27860686,0.34626928,-0.098655954,0.14251997,0.09051126,0.32757354,0.07517242,0.41020977,-0.0076608886,0.35897088,-0.17734471,-0.22415252,0.3668687,-0.3386557,0.09749088,-0.057999417,0.1855814,0.28759697,-0.37089178,-0.86311495,-0.43042713,-0.22724374,1.1420128,-0.18261898,-0.43225813,0.23070881,-0.14011319,-0.26720467,0.010888135,0.39342067,-0.08725019,-0.035514202,-0.7590131,0.14900632,-0.31640705,0.1050217,-0.11200261,-0.06001746,-0.41991588,0.62832904,-0.13642468,0.49718353,0.3956945,0.2204997,-0.31849965,-0.42663532,-0.014318652,0.88738734,0.41360924,0.016852371,-0.056640442,-0.1515258,-0.26355952,0.08124098,0.20039785,0.58417994,0.6681581,-0.0091177225,0.1617281,0.29361483,-0.024617096,-0.12212478,-0.05635634,-0.2811526,-0.019619416,-0.04057482,0.6261113,0.5455148,-0.020270336,0.5390237,-0.15647298,0.34474775,-0.30732465,-0.5038699,0.31285164,0.55145305,-0.12071231,-0.356607,0.4566028,0.41886857,-0.059922513,0.34313226,-0.6192777,-0.40842777,0.3873527,-0.22254458,-0.298083,0.33454362,-0.3173132,-0.049393445,-0.64809215,0.28253213,-0.22619146,-0.68275344,-0.60088336,-0.37527892,-3.4929585,0.14171816,-0.17907941,-0.1384724,0.0056916126,-0.17077816,0.27595335,-0.4221538,-0.36091793,0.1448828,0.101481825,0.5477582,0.0057164114,0.05178631,-0.22568825,-0.13107562,-0.20201744,0.1997949,0.18006185,0.23723955,-0.029450472,-0.3797614,-0.058692463,-0.17188925,-0.41474876,0.045782447,-0.45906764,-0.46872672,-0.12895858,-0.38332045,-0.14200711,0.59600145,-0.41174272,0.048601657,-0.21502833,-0.023928348,-0.029718915,0.3350322,0.17584616,0.08803992,-0.08474201,0.037529968,0.038323797,-0.39504603,0.14581324,0.10939828,0.26193902,0.32224438,-0.0527136,0.15617815,0.51517725,0.5547269,-0.050286025,0.67406845,0.47678488,-0.14588453,0.28546518,-0.11549929,-0.009066053,-0.49328828,-0.30156165,-0.05997955,-0.40326667,-0.38690063,-0.18378955,-0.3567042,-0.62904376,0.37671977,0.011566969,0.16536601,-0.066783644,0.34094357,0.44640377,-0.12320498,-0.040892206,-0.03400051,-0.11670184,-0.43813735,-0.3706091,-0.6124391,-0.36621732,0.092638195,1.0726323,-0.23145333,-0.045684822,-0.08424105,-0.1510898,-0.037280187,0.07673319,-0.047701567,0.20179033,0.25901937,-0.27227458,-0.5358195,0.3625671,-0.3523543,-0.16997674,-0.5420571,0.040889557,0.49793345,-0.42472962,0.4137828,0.2256994,0.2748007,-0.18829079,-0.59127253,-0.012975426,0.09307324,-0.29219103,0.5011946,0.20939061,-0.7557494,0.5545846,0.20294616,-0.12764855,-0.6603601,0.5089441,0.11112423,-0.24114037,-0.03145241,0.21558185,0.016086593,-0.045871362,-0.14130898,0.19317189,-0.32386118,0.22095947,0.2779312,-0.05131646,0.26427698,-0.22780919,0.028466856,-0.46081004,-0.10348002,-0.46439826,-0.26271975,0.055026524,-0.06703635,0.19114253,0.12885344,-0.25382158,0.37890723,-0.20837104,0.19591606,-0.11174011,-0.16902255,0.2997755,0.3714387,0.27775416,-0.40406328,0.51171046,0.14268972,-0.14594094,0.021760566,0.14493379,0.40012684,0.00086951256,0.25731844,-0.17114013,-0.11552386,0.33577245,0.72353834,0.1924048,0.44059518,-0.036073167,-0.19006401,0.047869835,-0.039408855,0.04332524,-0.06032722,-0.4914221,-0.072118506,-0.08321794,0.30792478,0.36319324,0.16782032,0.41298822,-0.06528628,-0.16031854,0.17315117,0.21669593,-0.033688348,-1.1428722,0.29929417,0.17870606,0.8154153,0.47017026,0.06120505,-0.038423005,0.49643072,-0.2981236,0.07724571,0.3513869,0.03922152,-0.26931673,0.3778727,-0.7749223,0.44373405,-0.047922272,-0.049193796,-0.11610644,-0.14027312,0.40110564,0.8671108,-0.13621703,0.1033521,0.0061016786,-0.1963965,0.15131384,-0.18681926,0.14206173,-0.48917803,-0.3973453,0.67353994,0.43902758,0.35187295,-0.117090106,-0.12351467,0.042055964,-0.083272934,-0.04112593,-0.004661526,0.08095688,-0.17012589,-0.59990704,-0.39693063,0.38262606,-0.08540602,0.100879684,0.13705742,-0.23753048,0.12571089,-0.053613152,0.004328426,0.035365324,-0.53280777,-0.0958716,-0.17266323,-0.31168607,0.5583047,-0.42010164,0.32367328,0.0626606,0.022888167,-0.16135441,0.1349383,0.068992004,0.7078094,-0.0731623,-0.028206902,-0.4240096,0.14745174,0.13008082,-0.18066628,-0.30472717,-0.36054316,0.16653521,-0.70899534,0.3027782,-0.08886625,-0.22269166,0.16337705,-0.13680498,0.08716731,0.48300406,-0.031248486,-0.2107182,0.045088742,-0.107018426,-0.20513041,0.009240603,-0.0951144,0.2570094,0.024019297,-0.09814579,-0.023907255,-0.020274095,-0.17437533,0.24660733,0.131961,0.3308978,0.28547487,0.19484651,-0.3737194,-0.067807995,0.07041697,0.45654416,0.02509796,-0.1392135,-0.14953026,-0.42593932,-0.2942706,0.1826488,-0.12937643,0.2869109,0.10426966,-0.05251387,0.6131255,-0.0896285,1.0844171,0.038601805,-0.32386684,-0.021414876,0.41989902,0.08281401,0.16343196,-0.36203703,0.8232929,0.5699048,0.0642779,-0.09185127,-0.19572824,0.10766827,0.23162082,-0.056578975,-0.1058802,-0.0666588,-0.63433284,-0.13298562,0.16300105,0.173077,0.20130882,-0.05223178,-0.091249764,0.26577255,-0.003552493,0.3080985,-0.53504616,-0.037839927,0.25513032,0.29687372,-0.08606969,0.09689545,-0.48700073,0.35191748,-0.3657911,0.0426727,-0.23738687,0.16370414,-0.07296645,-0.2862794,0.217683,-0.1795633,0.41256598,-0.30261043,-0.31203488,-0.09619379,0.5490847,0.1731058,0.1949124,0.46971372,-0.20106351,0.10115848,-0.05120155,0.5435272,1.0178696,-0.33844513,-0.031612746,0.43656898,-0.18563405,-0.6520358,0.15177582,-0.3402713,0.16239904,-0.056040436,-0.3327086,-0.18423696,0.47037905,0.17660113,0.017220095,0.07587082,-0.42971072,-0.05983165,0.34368473,-0.118346274,-0.23748364,-0.30577722,0.15570638,0.57791364,-0.24959984,-0.27597708,0.010794548,0.4042333,-0.11308561,-0.36992964,0.11013882,-0.25227946,0.27717337,0.13737392,-0.212515,-0.048678517,0.020391261,-0.37616548,0.17056538,0.2533439,-0.2585887,0.025906209,-0.15275581,-0.09135939,0.76305425,-0.19810355,0.079165176,-0.5705845,-0.3875307,-0.6701436,-0.44098222,0.22083461,0.005798494,0.099185735,-0.64808506,-0.030001087,-0.14812711,-0.107763894,-0.11760489,-0.30204797,0.51670176,0.105771855,0.30059567,-0.116455786,-0.58163023,0.13492517,-0.00035720714,-0.15259157,-0.4615484,0.5593212,-0.0895318,0.6156728,0.038231634,0.123535536,0.28840405,-0.5016369,0.109319754,-0.32979557,-0.1683677,-0.8297702,0.14221323 +753,0.3394726,-0.33307946,-0.38147762,-0.08203058,-0.11145649,0.083773874,-0.047972515,0.5471657,0.15304343,-0.5414025,-0.111060806,-0.14384441,0.027146053,0.21344016,-0.10705078,-0.24559736,-0.069989584,0.13652687,-0.33971253,0.5498269,-0.4417412,0.26726896,-0.042068172,0.37128595,0.30610272,0.2597369,0.07988434,-0.13169254,-0.12070988,-0.079531595,-0.17974363,0.3431227,-0.25702533,0.087076694,-0.15107499,-0.40695077,-0.1541419,-0.39121738,-0.37380567,-0.71712935,0.3333665,-0.8049386,0.4178985,0.025029715,-0.3473303,0.2049195,0.04264263,0.31498164,-0.19294204,-0.035554662,0.15870187,-0.0743955,0.068254925,-0.09304324,-0.032651007,-0.21817707,-0.51894206,-0.036147125,-0.33563626,-0.17549601,-0.25635183,0.093257904,-0.34137833,-0.17020066,-0.15257385,0.5221917,-0.4871145,-0.08217371,0.10455183,-0.10766014,0.4588713,-0.60089,-0.1756224,-0.21794683,0.22303048,-0.23721406,-0.24130405,0.18697494,0.22135574,0.53603214,-0.1266053,-0.03433369,-0.3854176,-0.049857076,0.15528835,0.44402975,-0.13283294,-0.6373336,-0.15383212,-0.072384626,0.120750055,0.18765903,0.10309938,-0.28886953,-0.15326498,0.13048308,-0.115081795,0.2823264,0.46813205,-0.2485062,-0.26857364,0.31209728,0.60234207,0.23413001,-0.1461632,-0.034942403,0.030535694,-0.45641536,-0.1625824,0.14844751,-0.2092883,0.61753297,-0.16811605,0.359565,0.5936043,-0.12384684,0.05924565,-0.03087441,0.09985154,-0.18287936,-0.18324305,-0.3559784,0.23423032,-0.4266552,0.21946517,-0.15309629,0.71633893,0.097341895,-0.689224,0.37443718,-0.44975337,0.15848252,-0.08443864,0.5715918,0.66307676,0.411692,0.32152328,0.6562418,-0.4191486,-0.028891644,-0.08975817,-0.3185135,-0.014095124,-0.21235783,-0.19627689,-0.53429955,-0.041209746,0.11665843,-0.11141316,-0.034731664,0.3741286,-0.48005214,-0.088200614,0.12842427,0.7020966,-0.31219482,0.015333863,0.73772264,0.9230911,0.9483661,0.028339257,0.9996204,0.15171455,-0.3162753,0.26584086,-0.25700644,-0.6515293,0.28862238,0.26202792,0.09654724,0.19992584,0.035906974,-0.031364586,0.51945806,-0.5153311,0.09104689,-0.20756157,0.008475749,0.08919103,0.010874561,-0.56047094,-0.3591957,-0.14178881,0.098502226,0.0061705154,0.23734312,-0.11146875,0.44482782,0.1025257,1.6674988,-0.17339776,0.037320413,0.10531519,0.5865695,0.11536848,-0.21372023,-0.106488965,0.26523307,0.42374668,0.119414225,-0.70048946,0.1503684,-0.08841349,-0.5787955,-0.03871565,-0.3571231,-0.104640014,-0.072834715,-0.55935645,-0.21901992,-0.18363973,-0.4011248,0.4684566,-2.7920532,-0.13977829,-0.035030298,0.28130645,-0.3252413,-0.3531944,-0.019005807,-0.4526227,0.3685798,0.3510868,0.46423307,-0.7581943,0.2600868,0.44668216,-0.45753497,-0.03383534,-0.6905472,-0.2505179,-0.032237314,0.37210143,0.07676303,-0.017152196,0.12739679,0.1616605,0.42580023,-0.08461715,0.15553118,0.17352238,0.27352402,0.06213341,0.43225864,0.031029869,0.481738,-0.34155792,-0.090109915,0.2917143,-0.29051894,0.27146962,-0.15413903,0.15545546,0.4555626,-0.47248438,-0.72320205,-0.6451272,-0.18460827,1.2229415,-0.16219787,-0.37634954,0.3252388,-0.5814182,-0.17978756,-0.21319538,0.49403378,-0.09074841,-0.1161007,-0.8810362,0.07465679,-0.046062436,0.19523789,0.02289433,-0.033514563,-0.4675142,0.5906988,0.03037755,0.58433706,0.39736286,0.16953732,-0.2379872,-0.43154857,-0.016366394,0.654894,0.3939486,0.19504446,-0.27752528,-0.14448912,-0.35005042,0.033976696,0.14084749,0.40164745,0.7481436,0.006648602,0.136084,0.3226118,-0.07615272,0.103331454,-0.13857602,-0.15559836,-0.12028196,0.10490321,0.5754287,0.4694711,-0.23073071,0.32396305,-0.09251117,0.08567743,-0.28456753,-0.38207582,0.47411355,1.0209334,-0.18106376,-0.19405746,0.5338783,0.622765,-0.21537997,0.38893336,-0.5655326,-0.23379454,0.4916706,-0.24145953,-0.48962206,0.1661715,-0.37886295,0.29151928,-0.9897953,0.11276639,-0.28652334,-0.49407384,-0.6502755,-0.01863947,-3.2652674,0.20446101,-0.21678586,-0.2550267,-0.10927185,-0.28132448,0.2544212,-0.57605404,-0.5697993,0.12370038,0.029502546,0.6313114,-0.0073859273,-0.0022999009,-0.25311747,-0.18362573,-0.25658575,0.12681325,0.011701573,0.380951,0.036924418,-0.5868582,-0.13062741,-0.1952687,-0.42214572,-0.012001623,-0.48170388,-0.42792574,-0.12997109,-0.47371438,-0.41777375,0.5896011,-0.20075181,0.121764265,-0.090614125,-0.088594146,-0.11168289,0.39375284,0.15774086,0.14565918,0.021658007,-0.08388689,0.010474082,-0.24848393,0.041017834,-0.0243675,0.13656618,0.35185432,-0.17886305,0.29134876,0.51918554,0.7241021,-0.18493955,0.87264186,0.63555616,-0.09253856,0.23504499,-0.26689497,-0.30994275,-0.590516,-0.27872112,-0.006981925,-0.39557347,-0.5717294,-0.037364826,-0.39214936,-0.83846486,0.48101088,0.04246425,0.25230408,0.040439587,0.121569365,0.52218276,-0.18059789,-0.007693978,-0.096683346,-0.11823122,-0.5896717,-0.29599926,-0.6686297,-0.453508,0.04980995,0.8664793,-0.14712913,0.030127525,0.08239596,-0.3606737,-0.04637979,0.17647572,0.060650762,0.1721565,0.26894516,-0.11210782,-0.57083064,0.5464391,0.19673397,-0.22340626,-0.44987094,0.20804842,0.6616288,-0.54593253,0.4894807,0.3569709,-0.043389093,-0.2664037,-0.5379448,-0.20371482,-0.076178946,-0.22177893,0.4616272,0.23774627,-0.60209113,0.37892908,0.38275275,0.019341938,-0.67763615,0.6480556,0.028306147,-0.27521533,-0.070499815,0.27538246,0.012296307,0.082381934,-0.19474147,0.23744363,-0.3922622,0.2306918,0.33701515,-0.044169817,0.31033248,-0.31262714,-0.005733947,-0.7733099,0.043749016,-0.61590505,-0.1088193,0.379315,0.11130129,0.18492483,0.13217518,-0.0053516603,0.3869845,-0.2712392,0.035140414,-0.011464177,-0.14926535,0.29214996,0.42990592,0.3496302,-0.35722435,0.5760914,0.08504953,-0.058943342,-0.22098345,0.17642733,0.39798504,0.19678293,0.47562045,-0.13139787,-0.3465024,0.29609478,0.7716927,0.32310575,0.4633208,-0.03509398,-0.08193713,0.18667544,0.15349767,0.28712568,-0.05568594,-0.4182059,0.04053526,-0.3187441,0.16794059,0.31284526,0.08213509,0.36964634,-0.11953879,-0.27151924,0.042626698,0.17492667,-0.06265618,-1.2309611,0.40659493,0.29171926,0.7922062,0.5912371,-0.0027169187,0.01929822,0.62460935,-0.31394258,0.23368448,0.3631438,0.096952505,-0.66010755,0.5654493,-0.70940155,0.4737913,0.0028323769,-0.011297343,-0.0170479,-0.15172829,0.39365262,0.5798363,-0.0760104,0.09659798,0.053485863,-0.3692392,0.19760492,-0.42371947,0.06010169,-0.60050905,-0.1740625,0.6909743,0.5025584,0.3189956,-0.108962454,-0.018281309,0.15365666,-0.04218942,0.13813943,0.14334269,0.25453535,-0.058357835,-0.6991648,-0.15856224,0.4593455,-0.14984252,0.11299092,-0.036582135,-0.35997763,0.1799706,-0.122879915,-0.087056905,0.010665317,-0.6207623,0.021195613,-0.36713403,-0.38653183,0.5560711,-0.18237415,0.38392118,0.18732451,0.07753684,-0.3088678,0.23266493,-0.03827254,0.7158343,0.045687616,-0.06985251,-0.3553747,0.06637398,0.28731441,-0.17349741,-0.24509244,-0.11676475,-0.03557644,-0.5129576,0.40389672,0.029648328,-0.19426791,0.14930053,-0.098203324,0.048290756,0.5792331,-0.12406028,-0.17829686,-0.1488792,-0.18247484,-0.26953995,-0.18337949,-0.09034846,0.3874565,0.16585916,0.16449963,-0.10128926,-0.030251812,-0.10897134,0.5064463,0.094107196,0.3161439,0.32749227,-0.0361305,-0.46448657,-0.15770514,0.11797992,0.41262665,0.016146215,-0.007951629,-0.26073295,-0.40797815,-0.39259896,0.027539037,-0.15555467,0.40613517,0.07979093,-0.18717547,0.76681083,0.03374,0.9943297,0.008467048,-0.51053333,0.09338024,0.39402038,0.021808961,-0.05357649,-0.22618197,0.8250708,0.4534645,-0.110442035,-0.15755913,-0.23603398,-0.008795198,0.21404587,-0.1716835,-0.1334984,0.03507607,-0.6593864,-0.16876109,0.334416,0.27237567,0.23733552,-0.08589229,0.036483373,0.26411054,-0.044778977,0.3149394,-0.37367153,-0.20440832,0.32679737,0.14918596,0.12832403,-0.009846922,-0.5028024,0.4518358,-0.459393,0.0615925,-0.3150024,0.21355338,-0.28900656,-0.3575765,0.23384236,0.07866649,0.24938585,-0.23427686,-0.36988685,-0.3311127,0.48509884,-0.0055318694,0.08665946,0.54302,-0.23032999,0.121531315,0.06166937,0.37602472,0.9065207,-0.20875266,-0.07419669,0.3973417,-0.3115118,-0.60799193,0.25364348,-0.2569277,0.31683448,0.043904506,-0.12093045,-0.55610615,0.27266896,0.31488124,0.048419658,0.0285403,-0.585943,-0.24596079,0.31299144,-0.2745004,-0.11806672,-0.34865734,0.03467786,0.48693556,-0.39492697,-0.3426226,0.011096318,0.26281136,-0.2242464,-0.48065987,0.11818876,-0.33598724,0.21691774,0.07660378,-0.44260547,-0.0628622,0.033557646,-0.38478014,0.050785862,0.19723047,-0.37368146,0.09834702,-0.47754675,-0.0462188,1.0585377,-0.17468613,0.15254433,-0.39915898,-0.36920798,-0.8317781,-0.3389865,0.5993336,0.10244039,0.046596054,-0.6763344,0.15576597,-0.02557292,-0.012320701,-0.112161286,-0.32703957,0.5619535,0.19026977,0.1830429,0.049125247,-0.49798658,0.20611082,0.07206223,-0.096905835,-0.36903864,0.57675827,0.084097706,0.8509246,0.1119433,0.22006546,0.2061351,-0.5504721,-0.043293573,-0.11098814,-0.26764545,-0.68844193,-0.11544419 +754,0.36605385,-0.07047821,-0.4231753,-0.19114336,-0.34312704,0.31856316,-0.057599224,0.38753617,0.22529687,-0.47508067,-0.049141467,-0.16488677,-0.089361064,0.5145337,-0.22269095,-0.6534068,-0.1360067,0.071780205,-0.49916425,0.23202252,-0.6276538,0.3713338,0.122346945,0.38441557,-0.0070559797,0.22908054,0.21333951,-0.060046904,-0.019683229,-0.1403085,-0.26919606,0.13531162,-0.4422619,0.24745391,0.025167437,-0.3153729,-0.032587163,-0.43849242,-0.24122278,-0.6079085,0.5104258,-0.9316616,0.59404284,-0.13874239,-0.24240272,0.19476518,0.16111323,0.21932665,-0.33079892,-0.013438137,0.2661851,-0.09681901,-0.024009604,-0.16602021,-0.33890408,-0.4574084,-0.61927944,-0.030662814,-0.4371491,-0.10643533,-0.26809606,0.31332362,-0.21062733,0.22008477,-0.22941314,0.26991293,-0.3434753,-0.046343345,0.28037444,-0.2133974,0.12869605,-0.36187422,-0.17320994,-0.04176696,0.3025703,-0.019752942,-0.08994674,0.2869716,0.10052249,0.5719809,-0.07545031,-0.2238577,-0.24812691,-0.10115598,0.04388764,0.586808,0.016856786,-0.24964087,-0.2685182,-0.055742934,0.2646103,0.2997359,-0.008164967,-0.19196385,0.01603709,0.053476494,-0.3151632,0.30474615,0.35668835,-0.30943334,-0.36455742,0.4929332,0.43423626,-0.19575453,-0.12849054,0.096871786,0.07788114,-0.5666697,-0.3012047,0.1876227,-0.16873303,0.43654302,-0.13639343,0.25323245,0.80351883,-0.07382588,0.046652958,-0.2473694,-0.0109955985,-0.3278645,-0.28119028,-0.17750086,0.04870104,-0.32138887,0.069191806,-0.2928804,0.92022806,0.10244686,-0.737075,0.37512943,-0.5461436,0.044104233,-0.1155787,0.61853635,0.65702945,0.40172246,0.22122297,1.0062957,-0.6124111,0.08334002,-0.031320818,-0.35496384,0.0747926,-0.111474365,0.23826984,-0.4061592,0.022660967,0.25402895,-0.026727187,0.042151596,0.4898868,-0.40853596,-0.038419846,0.052120227,0.7214324,-0.39702708,-0.10015937,0.8179481,1.0209911,0.865133,0.04521248,1.2839679,0.27665016,-0.23783058,0.12787867,-0.3629468,-0.715043,0.20445892,0.34926274,-0.04687081,0.31967995,0.08099499,0.16385219,0.40742606,-0.36838472,0.081430785,-0.007932236,0.22747435,0.036217604,0.050245855,-0.39730486,-0.3370368,0.17927733,-0.055478495,0.39187363,0.29687068,-0.15823208,0.45419028,0.11685287,1.8981729,0.1400834,0.18197943,0.14876702,0.47275323,0.11017716,-0.051379602,-0.1884698,0.3248957,0.40585124,-0.16263543,-0.6198315,0.05889072,-0.20913242,-0.36312106,-0.119963065,-0.34508795,-0.20318127,-0.24357565,-0.32296214,-0.2359504,-0.10066162,-0.37748283,0.42740038,-2.5509667,-0.3298981,-0.20222344,0.27591583,-0.3855012,-0.36919257,-0.30784944,-0.605437,0.38222313,0.4002721,0.3723446,-0.61012673,0.47135147,0.41507524,-0.24766713,-0.18226074,-0.6458734,0.028737225,-0.03147816,0.19832039,0.0139535805,-0.10339337,-0.48415726,0.24693829,0.4048905,0.16551526,0.04139448,0.37956592,0.6281398,0.14195195,0.7261781,0.124527544,0.6137529,-0.38213328,-0.0019949009,0.4233508,-0.45984825,0.40881458,-0.02338735,0.08814885,0.46752408,-0.5004064,-0.73878413,-0.6637748,-0.45728686,1.1773326,-0.47154748,-0.23225667,0.16281027,-0.21846443,-0.405,0.0036605406,0.58710825,-0.1896045,-0.12352307,-0.69928145,-0.0094457315,-0.09690101,0.4309591,-0.0831968,0.022818675,-0.36245984,0.59340644,-0.17404556,0.7980935,0.28863576,0.06391635,-0.32589597,-0.28564578,0.054979388,0.8777463,0.28813055,0.08003838,-0.14309645,-0.25598,-0.3306029,-0.22487132,0.049372032,0.48108485,0.61109906,0.07585899,0.09463305,0.46727532,-0.2316555,-0.13087063,-0.10847828,-0.20264505,-0.1181964,0.036379024,0.53372556,0.6736982,-0.21919666,0.3144784,-0.23773359,0.33179575,-0.26514998,-0.38933513,0.4808197,0.3715809,-0.068069085,-0.15604495,0.6217641,0.5593935,-0.20826119,0.35460868,-0.63546604,-0.36952385,0.53050226,-0.05377183,-0.4386205,0.0009188973,-0.1695265,-0.07782427,-0.9782703,2.6482801e-05,0.0119927665,-0.4603149,-0.6367037,-0.27815273,-3.605469,0.006012268,-0.08776348,-0.09678585,-0.10370581,-0.043311037,0.28714126,-0.545844,-0.6947425,0.11877882,-0.020670317,0.627129,0.15943414,0.33122408,-0.35524845,-0.028854169,-0.2925164,0.078683525,0.1135091,0.33577463,0.057515923,-0.45919874,0.02593389,-0.23762217,-0.5101005,0.038978834,-0.511975,-0.520419,-0.00775398,-0.50786316,-0.3003978,0.7387637,-0.38785583,0.028924074,-0.23756133,-0.10984922,-0.20378791,0.2349507,0.14105476,0.043275457,0.05164195,-0.071611114,-0.0931882,-0.35433128,0.31364712,0.012866324,0.355515,0.2442631,-0.14885925,0.13632862,0.5104391,0.5731853,-0.068255074,0.6969131,0.19698946,-0.09937249,0.28401333,-0.118890196,-0.1868872,-0.57740754,-0.29843992,0.010642423,-0.39073202,-0.43886802,-0.22658388,-0.372063,-0.8371251,0.39625472,0.15767334,0.056376066,-0.16582035,0.10564722,0.33567566,-0.13618161,0.16886733,0.030025413,-0.20140512,-0.5666236,-0.5495218,-0.6618359,-0.40456507,0.3020993,1.3244598,-0.096216016,-0.19237378,0.04311524,-0.5669358,-0.045542147,0.08205014,0.16787992,0.31395906,0.52398944,-0.16806504,-0.63202405,0.45448068,-0.22599809,0.036878746,-0.53904366,-0.014489834,0.81307346,-0.6676649,0.38834286,0.2379285,0.21070814,0.07644307,-0.45922697,-0.25667542,-0.100854985,-0.16889763,0.49724466,0.26995108,-0.5434924,0.4707399,0.06785554,0.0027306539,-0.6823617,0.2979286,-0.042814773,-0.16528368,0.009975717,0.31435952,0.27187765,0.020003174,-0.18078102,0.18474929,-0.46499288,0.25099495,0.32271507,-0.00761873,0.40229324,-0.21278523,-0.024109308,-0.60791963,-0.18656246,-0.4257706,-0.2539934,-0.10123701,-0.024707962,0.057663396,0.14868066,-0.03785817,0.20392054,-0.27071258,0.09318915,0.119267784,-0.0854803,0.31402192,0.27514905,0.39777392,-0.46388334,0.5984472,0.03508522,0.16557345,-0.057274,-0.02701399,0.37761953,0.24920848,0.21777895,-0.09714218,-0.23606792,0.3299336,0.6945324,0.2543258,0.13724004,0.21753667,-0.20109327,0.44557592,0.08445898,0.015406697,0.037165537,-0.5152897,-0.035211407,-0.007720617,0.12085394,0.36202094,0.1942343,0.44922364,-0.031328093,-0.2110748,0.17677633,0.11847278,-0.41770875,-1.1495064,0.2656519,0.20608574,0.791386,0.4063504,-0.026813112,0.10667887,0.6362158,-0.4408776,0.14276792,0.33252555,0.027535759,-0.40796563,0.5210526,-0.39787403,0.5753909,-0.12168347,-0.0008404335,0.021908103,0.18103796,0.30602002,0.8925548,-0.116646916,0.034695975,0.11782791,-0.24026343,0.14023744,-0.25358567,-0.09738246,-0.6495743,-0.20922439,0.5419292,0.40762308,0.4401457,-0.23414057,-0.0747497,-0.039423373,0.00640078,-0.058764692,-0.09472474,-0.059438765,0.032790847,-0.77303463,-0.3462795,0.52285755,0.12147798,0.17781888,0.14010064,-0.478439,0.2658921,-0.22395918,-0.0625646,-0.044548534,-0.7219114,-0.25472677,-0.25564435,-0.40802115,0.12298153,-0.4053084,0.30516255,0.1608689,-0.02850749,-0.26610774,0.1037253,0.22415963,0.84171253,0.067683324,-0.21614522,-0.36360726,-0.059980944,0.2833071,-0.3881464,-0.075397074,-0.43102735,0.10860748,-0.5436212,0.43053213,-0.00664799,-0.30582666,0.109801054,-0.2595084,0.15055376,0.493824,-0.1245919,-0.0061079813,-0.082077876,-0.08601691,-0.3329373,-0.06268479,-0.4677401,0.21401188,0.030990321,0.11261564,0.105352946,-0.13230252,-0.08047449,0.35982385,0.18561623,0.17641361,0.29780504,0.023579927,-0.19593623,0.029676339,-0.12302362,0.49866098,0.035030738,-0.24065052,-0.28119776,-0.19835415,-0.1886772,0.6406161,-0.18150964,0.2068385,-0.001077182,-0.40493476,0.6739983,0.049312226,0.9032414,0.10994999,-0.3709636,-0.042952575,0.5521162,0.2021886,0.19580053,-0.24287888,0.7982582,0.49507082,-0.17792994,-0.30248916,-0.44551834,-0.13255112,0.3240748,-0.30630305,-0.111525774,-0.18930684,-0.80439,-0.19225915,0.20411688,0.07495504,0.2789191,-0.07018984,0.03894661,-0.06297943,0.12665173,0.5738041,-0.5312181,-0.10895427,0.41982406,0.2115802,0.13119973,0.19253223,-0.46978536,0.45536363,-0.58219707,0.22875959,-0.380421,0.08234524,-0.137801,-0.14380337,0.16850637,0.047319002,0.40547994,-0.31339708,-0.43335754,-0.22353154,0.77905715,0.34389925,0.28128475,0.845422,-0.19302727,-0.22957844,0.054954454,0.5821371,1.2047882,-0.1086978,0.14682394,0.27616537,-0.2994621,-0.50794095,0.1522203,-0.3203014,0.13012546,0.1248968,-0.32659367,-0.31666186,0.41669002,0.03781231,0.12986962,0.103978835,-0.40987617,-0.2853641,0.57165724,-0.2034454,-0.29100606,-0.26624075,0.08224659,0.62013113,-0.19441183,-0.21850039,0.103376776,0.4300265,-0.2853829,-0.56288934,-0.1125902,-0.49751288,0.38895878,0.067045525,-0.22623044,-0.086264774,0.04880097,-0.38533798,0.2570656,0.23154989,-0.40960482,0.043057892,-0.40065807,-0.17251427,1.0983001,0.032107286,0.0610855,-0.7475573,-0.35159257,-0.89728737,-0.4342652,0.29519737,0.026698956,-0.18104118,-0.33705884,-0.1815719,-0.07516419,-0.0611074,0.09725404,-0.53695965,0.38993156,0.22837827,0.42875582,0.01792762,-0.8748976,0.026695265,0.013150331,-0.24817906,-0.46531758,0.6551618,-0.07987897,0.71317714,0.044232465,0.13015498,0.17344464,-0.52757794,0.34988675,-0.35828775,-0.102516346,-0.7744828,0.12345934 +755,0.29086992,-0.2820068,-0.579842,0.05523086,-0.11208293,0.20043898,-0.35097986,0.24106055,0.022170441,-0.46445176,-0.030790605,-0.05601134,-0.102513276,0.1950252,-0.16374794,-0.39785025,-0.07611609,0.1237274,-0.5257372,0.3457299,-0.61159873,0.2689063,-0.08889227,0.15304643,-0.06032522,0.14899446,0.3032552,-0.10036607,-0.15787055,-0.20459749,0.09661825,0.097696945,-0.3351199,0.1947364,-0.14475273,-0.43454736,0.04282427,-0.33721372,-0.36371797,-0.6443856,0.3074048,-0.82028735,0.5412502,0.0661088,-0.25923762,0.21994697,0.0711165,0.17185679,-0.12222613,0.0022512882,0.1336625,-0.29633838,-0.25165358,-0.4217863,-0.12726215,-0.41304713,-0.48741156,0.119351834,-0.48870155,-0.10667579,-0.12038095,0.24253654,-0.45348632,0.098545365,-0.16164932,0.37068665,-0.2703739,-0.00993802,0.29626262,-0.1858793,0.14035575,-0.62062,-0.1334401,-0.06016591,0.18887243,-0.09120233,-0.1359879,0.15293829,0.07393611,0.5207082,-0.15551835,-0.14254989,-0.28097984,-0.173107,0.2697274,0.5387312,-0.1308152,-0.4372438,-0.17432974,-0.1411192,0.20836662,0.13876796,0.04650023,-0.22485389,-0.052499227,0.13003537,-0.34887922,0.26167628,0.5629803,-0.29431278,-0.0031218736,0.4438805,0.6174469,0.01162543,-0.088689014,0.03531023,0.09637497,-0.45090836,-0.1705251,0.116973765,0.003721957,0.49769485,-0.24435171,0.4984953,0.45628354,-0.2525338,0.0725331,0.1448302,0.049706414,-0.10123045,-0.20110594,-0.104186006,0.18667258,-0.48466775,-0.02408676,-0.21720567,0.8057967,-0.037988313,-0.6276702,0.39410654,-0.55221504,0.16835514,0.07957011,0.7340828,0.6226855,0.35197595,0.1414472,0.7793534,-0.35566542,-0.08232425,-0.110617034,-0.31244594,0.06778752,-0.06982673,-0.028831912,-0.4148771,0.070098385,0.21002391,0.14805031,-0.06605626,0.31621096,-0.48231572,-0.0745128,0.04045351,0.68907154,-0.21713217,0.065992326,0.6923891,0.97214985,0.7806584,0.081070535,1.2776023,0.31787217,-0.21496916,-0.03113885,-0.11113529,-0.86022437,0.23372006,0.28834167,-0.17391816,0.4094489,0.07260125,-0.22983877,0.46191522,-0.31053093,-0.12698027,-0.19671702,0.21275654,0.1270347,-0.17135397,-0.31299195,-0.1507071,0.03414649,-0.12607367,0.35963064,0.25440687,-0.26589394,0.3370245,0.104403384,1.2131584,-0.26669562,0.20342067,0.16660613,0.10602414,0.18985613,-0.17160764,0.07082739,0.39291912,0.2756332,0.11984563,-0.6463708,0.14756715,-0.17607191,-0.5666191,-0.2200679,-0.07731215,-0.14049977,-0.068966374,-0.37765902,-0.15864776,-0.23835382,-0.35005423,0.37279174,-2.7695718,-0.2246595,-0.16004084,0.29304856,-0.31103918,-0.37139577,-0.20782775,-0.40286037,0.2960747,0.33273533,0.40823144,-0.5946278,0.35945547,0.3510451,-0.47384706,-0.2531192,-0.6746339,0.06304121,-0.0515611,0.31364006,0.05863754,-0.2792528,0.06552848,-0.06079926,0.38046074,-0.26443025,0.12778378,0.2879922,0.4878895,-0.0077174744,0.21079087,0.039838728,0.5189066,-0.4826337,-0.27015617,0.37270498,-0.58020437,0.41141722,-0.02683668,0.17727968,0.33877817,-0.40245664,-0.70769894,-0.55954957,-0.19444071,1.3555989,-0.15195657,-0.5298776,0.06388342,-0.21881771,-0.41950777,-0.089520924,0.40586016,-0.19448641,-0.115358844,-0.8559411,0.09809191,-0.17127459,0.42874888,-0.050042905,-0.015608726,-0.35036236,0.61485547,-0.06400107,0.5384578,0.40054643,0.16303548,-0.42025968,-0.2837745,-0.017698558,0.93133026,0.50552773,0.18323709,-0.16415235,-0.20584433,-0.22868219,-0.22995487,0.15314163,0.5183432,0.6464664,0.03917753,0.14463824,0.3514752,0.050097935,0.031209083,-0.11690974,-0.21635386,-0.15084504,0.12737025,0.5938295,0.42344445,-0.25392035,0.26735237,0.032523267,0.2169214,-0.42753047,-0.41165775,0.51993906,0.76556313,-0.10287978,-0.32115147,0.5746586,0.5603867,-0.51133525,0.37368515,-0.61846644,-0.5009742,0.4354202,-0.13252157,-0.44990256,0.25626847,-0.3976142,0.25794995,-0.85816413,0.33887088,-0.40710232,-0.38450453,-0.7226737,-0.20583762,-3.230955,0.2823808,-0.2585015,-0.0961835,-0.2413645,-0.0014996299,0.3026684,-0.48587206,-0.46513778,0.104406625,0.11913793,0.59473026,-0.054866746,0.1001648,-0.20042016,-0.17597982,-0.1729469,0.18256393,0.07591828,0.15564339,-0.05953876,-0.3732181,-0.14388147,-0.1726397,-0.3066633,0.13004914,-0.42703688,-0.40443617,-0.14220732,-0.3824825,-0.28960493,0.594283,-0.45028284,0.010427268,-0.30356488,0.14025949,-0.20164499,0.4567421,0.10200293,0.16242589,-0.04808499,-0.14598078,-0.028709127,-0.2478937,0.25505173,-0.027447293,0.28772599,0.6012515,-0.24424379,0.13720591,0.35031393,0.61169565,0.025321044,0.8004768,0.24525213,0.049350936,0.3888084,-0.15836345,-0.1786477,-0.43119255,-0.2447055,0.17791282,-0.43245336,-0.38203046,-0.04692219,-0.22603995,-0.7291524,0.53433233,0.0030515583,0.014984972,-0.079762205,0.50929075,0.4875654,-0.07620022,-0.017589368,0.04468842,-0.1432363,-0.291527,-0.33539775,-0.6980042,-0.41053867,0.11766224,0.9171375,-0.19957839,0.18198313,0.18235137,-0.15615426,-0.12438543,0.19553192,0.13333026,0.16460146,0.45267376,-0.024916181,-0.6314217,0.42674476,-0.2930152,-0.30290273,-0.5590585,0.053962257,0.6442115,-0.58480746,0.45998514,0.5409019,0.26028168,-0.090482146,-0.52672714,-0.095131174,0.15072472,-0.2853467,0.3698068,0.31330284,-0.72123027,0.49942154,0.46201426,-0.15217318,-0.6525971,0.38631326,0.1542115,-0.017181598,-0.023570271,0.4816671,-0.1706381,0.02396204,-0.08858653,0.1313751,-0.37857673,0.27670753,0.15389219,-0.11178417,0.5094213,-0.19678956,-0.30434683,-0.50806195,-0.0034105342,-0.5692634,-0.14094414,0.2037878,0.0063222246,0.13696599,0.109555416,-0.028461121,0.45508906,-0.28486726,0.07690933,-0.045011528,-0.2189484,0.38872835,0.43139327,0.34025002,-0.43014085,0.726231,0.08894002,-0.07909342,-0.30308083,0.09607815,0.46345142,0.13182499,0.47564352,0.07765612,-0.04727867,0.283138,0.8921281,0.21186407,0.53217304,0.23728254,-0.05108372,0.15139759,0.021596802,0.08374635,-0.03284726,-0.42215064,-0.17768677,-0.14794974,0.32922286,0.41607806,0.07091452,0.5810241,-0.18861239,-0.21167602,0.0033071167,0.32993475,-0.15758643,-1.2052691,0.4186722,0.18048567,0.6958756,0.2872433,0.010210725,0.14836751,0.5567407,-0.10678674,0.18999097,0.2379962,-0.030246885,-0.5143244,0.6445055,-0.70618784,0.2631637,-0.110078916,0.057337943,-0.022246454,-0.08384848,0.37136972,0.689861,-0.054909404,0.07347952,-0.08055001,-0.2438681,0.17919964,-0.26322836,0.238641,-0.3592755,-0.23960432,0.66553587,0.40817386,0.37154514,-0.27472037,-0.0034893544,0.20273262,-6.41793e-05,0.24126591,-0.08987929,0.31522375,-0.16766927,-0.59175,-0.1969325,0.5261683,0.24913906,0.11086022,0.06500466,-0.2839817,0.30615166,-0.078392655,0.07424986,-0.098297045,-0.43231234,0.19326374,-0.32646105,-0.6288769,0.29282025,-0.29036018,0.22166292,0.3202434,0.02307183,-0.37061632,0.19080567,0.091874436,0.81272155,-0.14979908,-0.08242308,-0.30260053,0.20368245,0.31771672,-0.25969446,-0.200662,-0.2928622,0.16838568,-0.67637956,0.52786833,-0.19061224,-0.15139422,0.20617928,-0.10302593,-0.061594386,0.5509531,-0.30538177,-0.13189504,0.19698772,-0.16522624,-0.3074209,-0.20962617,-0.15859622,0.25983894,0.14016077,0.15990752,-0.1218876,-0.045429323,-0.28324866,0.15078467,0.041898813,0.1608963,0.5587943,0.26223826,-0.45327598,-0.142172,0.036315568,0.62378824,0.15902461,-0.13331409,-0.3307256,-0.6839794,-0.20252497,0.3110763,-0.037514143,0.30040687,0.103197865,-0.35736656,0.71618944,0.0034643784,0.9539373,0.013139362,-0.3622267,0.0071442174,0.5236277,0.041514937,-0.13323806,-0.29727697,0.8840171,0.45843422,-0.19899915,-0.06494487,-0.3256775,-0.012504564,0.1385472,-0.25410777,-0.13626331,-0.041276414,-0.7001557,-0.32652405,0.16274807,0.2789109,-0.0368574,-0.22315982,0.1247197,0.23823322,0.045075674,0.2692291,-0.4903671,-0.17917521,0.28116286,0.27377912,-0.018580444,0.110989004,-0.43621427,0.35361257,-0.7688672,-0.0075132963,-0.35806003,0.12982999,0.036703255,-0.2750759,0.15893973,0.1157505,0.29345348,-0.39331296,-0.27644542,-0.13576616,0.33276778,0.30356267,0.14448784,0.6722685,-0.18264714,0.008245707,0.10327916,0.55246377,1.0432845,-0.16119649,0.07938711,0.31059372,-0.38353345,-0.7460256,0.3395084,-0.50193524,0.15724947,-0.112399705,-0.32538164,-0.54536587,0.3281686,0.32907778,0.04688358,0.008259762,-0.6042604,-0.18853499,0.15327609,-0.42547792,-0.27071777,-0.32711586,-0.0320581,0.7152544,-0.13870206,-0.13151528,-0.05208725,0.48038325,-0.30266783,-0.5005193,0.06000551,-0.42512953,0.2811364,0.18030468,-0.124083474,-0.047554262,0.09574692,-0.46755087,0.27351427,0.12205373,-0.24722743,0.020136751,-0.3209902,-0.058675446,0.6658218,-0.22233714,0.14937727,-0.5588877,-0.51841646,-0.83921283,-0.3058546,0.30100894,0.07494717,0.15333432,-0.5905414,0.037375912,-0.01864318,-0.07451951,-0.04699012,-0.35922104,0.42920297,0.12197335,0.3106458,-0.114691205,-0.6614456,0.122071266,0.06335044,-0.13496555,-0.41541255,0.42381394,-0.113408394,0.7015982,0.07694304,0.061992984,0.34056756,-0.5706356,0.18693894,-0.1897975,-0.2994459,-0.8296303,-0.02479786 +756,0.28626725,-0.22461474,-0.5470066,-0.22422199,-0.26713648,-0.11605403,-0.17150748,0.36445013,0.3904377,-0.17925721,-0.24140716,-0.11393613,0.10741057,0.3323984,-0.14592123,-0.7336232,-0.21371414,0.17188102,-0.8794443,0.598437,-0.57147336,0.26833454,0.22461861,0.286931,0.18827713,0.25559554,0.2298371,0.02666459,0.07482877,-0.15367268,-0.20606148,0.1691798,-0.41223666,0.20238025,-0.15278201,-0.3868597,-0.07646803,-0.5152163,-0.0024214287,-0.75147533,0.18608016,-0.872839,0.6652637,0.10374537,-0.22416759,-0.21879353,0.4151217,0.37546873,-0.29296747,0.06035344,0.24445534,-0.10153171,-0.16272669,-0.28122258,-0.1400512,-0.51023746,-0.5445024,0.12187835,-0.61814004,-0.2078983,-0.08206839,0.30469352,-0.22285569,0.051473964,-0.13086225,0.5304157,-0.28547335,-0.08559408,0.37401548,-0.17730564,0.27414903,-0.53663737,-0.07549441,-0.11336822,0.4181057,-0.0892337,-0.45393696,0.19543554,0.45295414,0.34090915,0.265252,-0.3537167,-0.3191791,-0.17857993,-0.15319894,0.32168412,-0.23438257,-0.3981932,-0.2737003,0.14632754,0.47035536,0.45886925,0.16689377,-0.29174,0.029937776,-0.1284511,-0.27077496,0.7328556,0.43195322,-0.39714137,-0.33268675,0.39911148,0.48265037,0.19226728,-0.2446344,-0.10905742,-0.044852298,-0.61969846,-0.1590506,0.1512612,-0.08772791,0.4443283,-0.15218888,0.07384223,0.71665686,-0.016603261,-0.1914394,0.27244782,-0.07469475,-0.29693273,-0.2419985,-0.15586801,0.24355693,-0.6586724,-0.10535566,-0.41900942,0.67171055,-0.11025679,-0.73101145,0.3522776,-0.6724417,0.14350685,-0.06953564,0.5880361,0.9211661,0.58088595,0.4247382,0.69506735,-0.18433523,0.070879705,-0.29091802,-0.25849357,0.15296541,-0.23125906,0.07256619,-0.68205285,0.042693418,-0.10741177,0.081355095,0.1723463,0.5974019,-0.4872901,-0.26709065,0.3332156,0.5559782,-0.25029948,-0.2908531,0.690497,1.0727915,1.1705495,0.05060512,1.2975472,0.18197274,-0.2219853,0.010926132,-0.3886744,-0.5974138,0.35597125,0.33118537,-0.57819206,0.49659395,-0.20898731,0.17095149,0.23893411,-0.26272935,-0.0019261712,-0.0122710345,0.3414472,0.028914591,-0.06512045,-0.42260984,-0.2955518,0.11664587,0.050489377,0.29468426,0.2250117,-0.2978964,0.3388233,-0.048940416,1.2832001,-0.0770991,0.03697085,0.10852874,0.4665996,0.3266475,-0.21166384,-0.0702159,0.3299367,0.26971483,-0.020486703,-0.4793038,0.25043035,-0.2761419,-0.4240781,-0.11940997,-0.3857778,-0.12258646,0.064433,-0.29129267,-0.23363326,-0.2339238,-0.48156628,0.4066973,-2.756627,-0.41153672,-0.21645463,0.23594709,-0.21792042,-0.3016454,-0.20238467,-0.5209007,0.33777335,0.2606557,0.50506204,-0.6626356,0.6688366,0.49925494,-0.6442426,-0.26953307,-0.76432234,-0.0034909844,-0.11530619,0.358645,-0.031351645,-0.22853385,-0.11615246,0.20549762,0.6754508,-0.024974281,0.11460793,0.52483445,0.38528237,0.029553572,0.6466508,-0.016938098,0.6484738,-0.2712516,-0.249328,0.35107318,-0.27573174,0.15188591,-0.03364561,0.029939817,0.65483683,-0.72687453,-1.0114379,-0.5995262,-0.11088309,0.9804244,-0.28870097,-0.32754502,0.113652684,-0.2585659,-0.2523706,0.19296838,0.6285442,-0.08875897,0.008136828,-0.7400623,0.066253625,0.011073257,0.24851108,0.04628865,-0.14490864,-0.4700582,0.70145065,0.012508909,0.66905946,0.22529407,0.2203349,-0.5780869,-0.3303477,0.17496608,1.052095,0.27012706,-0.04863499,-0.20583211,-0.3028694,-0.34692177,-0.10707011,0.13642268,0.5948007,0.5836175,-0.010819959,0.09483892,0.4863234,-0.14089122,0.018126288,-0.13411987,-0.20955978,-0.11482283,0.123998456,0.56111854,0.73125845,-0.06684541,0.66166306,-0.16683777,0.40835568,-0.19871962,-0.57778686,0.8006633,0.6453964,-0.0925425,-0.18189412,0.76270574,0.5245538,-0.22899051,0.5649677,-0.5333834,-0.39118254,0.4482832,-0.18536873,-0.43228474,0.15601832,-0.3434122,0.15381889,-0.9193614,0.081317745,-0.259219,-0.35476983,-0.47876844,-0.061253484,-3.036619,0.25257963,-0.099681765,-0.07228686,-0.26670554,-0.032286514,0.2603815,-0.76134807,-0.752285,0.061591163,0.25348982,0.6792963,-0.076518536,0.18381466,-0.15619387,-0.4305973,-0.066083394,0.2776476,0.024460107,0.24723762,-0.18466274,-0.37531015,0.02037821,0.01448375,-0.5363889,0.13257845,-0.68991786,-0.3238138,-0.012886806,-0.7517731,-0.28228238,0.56491816,-0.40330732,-0.058061976,-0.24736619,0.12819347,0.11326292,0.23977022,-0.040876526,0.09467425,0.28540966,-0.10537579,0.19302602,-0.18983275,0.36998698,-0.14251523,0.34616372,0.095689304,-0.040370304,0.328143,0.4839982,0.7251763,-0.19242652,0.98945695,0.43661252,0.05562726,0.12105236,-0.18740213,-0.17794402,-0.55160123,-0.24527395,-0.101899885,-0.44812003,-0.3599306,0.027866116,-0.12756662,-0.9692762,0.795312,0.091722585,0.25921702,-0.037383646,0.38851652,0.3917822,-0.17802112,0.18140012,-0.17064448,-0.26379302,-0.43520355,-0.24727201,-0.63389575,-0.42020023,0.091010034,1.0525223,-0.34123778,0.2030632,0.01748767,-0.1506329,-0.013805757,0.1642975,0.14925025,0.38478884,0.44718096,-0.17499894,-0.5598045,0.2154517,-0.13351704,-0.12439539,-0.3079219,0.26945296,0.777592,-0.6340507,0.516072,0.28849658,0.11172384,-0.3089993,-0.5820255,-0.12997933,0.07919123,-0.18595223,0.6356794,0.3180461,-0.8041435,0.57633215,0.4160844,-0.38309416,-0.8075352,0.4005972,-0.050462227,-0.25221696,-0.27879158,0.3688686,0.24794771,0.0016830564,-0.35034236,0.22275357,-0.29832536,0.115276694,0.0313394,-0.0978312,0.36337408,-0.13108845,-0.3913901,-0.80636233,0.15164892,-0.5633223,-0.4327229,0.3486253,0.15780784,0.017146775,0.32420692,-0.11185363,0.3787144,-0.34459016,0.15982582,-0.06657814,-0.22334568,0.1582425,0.39038816,0.33397555,-0.35461625,0.5000083,0.022546893,-0.0808822,-0.18795983,-0.2143534,0.44609237,-0.07255675,0.41991225,-0.1658359,-0.20794769,0.5892396,0.5890398,0.064337924,0.20632716,0.16627328,0.037620377,0.22774605,-0.022145666,0.20154274,-0.051285014,-0.44544443,-0.084843695,-0.12971698,0.13746367,0.5241099,0.2658749,0.24518925,0.054444045,-0.17110352,0.00017491977,0.13747878,-0.06004979,-1.313765,0.35460797,0.3331443,0.81070846,0.5652326,0.05378181,-0.21401651,0.7941654,-0.4642035,0.08835722,0.42725834,-0.031971898,-0.33837327,0.7146303,-0.65067804,0.40588555,-0.24399197,-0.05645114,-0.045936927,0.02071797,0.3031225,0.9711523,-0.28110236,0.10054064,0.02115637,-0.14359307,-0.007383103,-0.32891047,-0.035620224,-0.516251,-0.44617012,0.9472745,0.1877377,0.5337096,-0.23207796,-0.032592118,0.12257173,-0.12400498,0.2186592,-0.115101196,-0.089282274,0.12364966,-0.5381149,0.03827845,0.6152165,0.32908627,0.20219499,-0.10971209,-0.1820047,0.09758822,-0.10099089,-0.100613594,-0.17853542,-0.4935901,-0.06792634,-0.26136526,-0.46773982,0.5287139,-0.40143856,0.015916621,0.21887927,0.067968905,-0.05238773,0.3921851,0.19805978,0.5541838,0.16265689,-0.029042011,-0.15273996,0.20952566,0.008396084,-0.22063331,0.017670443,-0.48528895,0.193693,-0.71046036,0.6466715,0.005924868,-0.69892025,0.18863104,-0.13875116,0.080702074,0.5288122,-0.18715835,-0.13879174,0.118055224,-0.35652605,-0.2212921,-0.20494698,-0.24273236,0.3632504,0.18554713,-0.038102806,-0.23759957,-0.16428958,-0.08293802,0.46603176,0.032934297,0.46106446,0.27809685,0.10107871,-0.058568407,0.29939964,0.2013523,0.5063952,0.20174193,-0.06088124,-0.523125,-0.11358833,-0.2576889,0.11955916,0.0073857545,0.09019514,0.02118853,-0.22228843,0.8608311,0.026675263,1.4052097,0.008853704,-0.50898045,0.112610675,0.5403356,-0.11467584,-0.08805127,-0.37825742,0.90297264,0.51395977,-0.08311248,0.007491941,-0.6804982,-0.18131667,0.27924594,-0.41924438,-0.18672486,0.023592815,-0.6356864,-0.4883474,0.31701538,0.11792465,0.082585834,-0.1097393,0.13139035,0.030924683,0.105770715,0.32377622,-0.59028107,-0.019969612,0.13563396,0.27784967,-0.02679086,0.08795226,-0.5583822,0.33455077,-0.7939144,0.28823745,-0.32837328,0.15697126,-0.32861584,-0.41609013,0.19885711,-0.06569619,0.31907773,-0.21350186,-0.40109006,-0.055028643,0.5611033,0.016317388,0.1932504,0.6214792,-0.30209735,0.010136639,0.1477295,0.5729317,1.3450961,-0.34409395,-0.110148616,0.2031132,-0.40521368,-0.72723436,0.33991277,-0.36180368,-0.06201734,0.1314063,-0.46030894,-0.32110232,0.28120425,-0.016006986,0.24887522,0.091205396,-0.5505912,-0.10499573,0.18889605,-0.28577188,-0.15793826,-0.088435434,0.3533243,0.6279168,-0.1206763,-0.35713503,0.005576094,0.47734943,-0.18036611,-0.63400865,-0.12431123,-0.22090714,0.4317441,0.123575665,-0.17459811,-0.02858416,0.022312349,-0.52979535,0.02172789,0.3099781,-0.37620568,0.1947732,-0.3543667,-0.13760258,0.9622159,-0.15922584,0.10739233,-0.4742367,-0.57494795,-0.7765375,-0.29766232,0.03275695,-0.049952578,-0.0879941,-0.48970258,0.033732604,-0.14014693,-0.30059096,0.23921819,-0.50253487,0.47740662,0.08704301,0.48901424,-0.31237385,-0.9574817,0.15697728,0.15185426,-0.032248348,-0.7371171,0.6260594,-0.029718032,0.99303716,0.049343973,-0.07604881,0.13412437,-0.6392962,0.13644935,-0.29971367,-0.08074298,-0.7528227,-0.05530856 +757,0.6793936,-0.2915211,-0.6372118,-0.15873557,-0.489976,0.07594736,-0.19162042,0.5110923,0.14286372,-0.48000348,-0.07176316,-0.10243988,-0.122075565,0.07049103,-0.09615502,-0.44966614,0.005231466,0.26359913,-0.607435,0.56067765,-0.25505143,0.28678113,0.06988132,0.33717775,0.37369123,0.11823568,-0.01022014,0.19278295,-0.021678675,-0.4093748,-0.26898348,0.36151215,-0.54249746,0.19826598,-0.09823547,-0.42056084,-0.14298339,-0.5779503,-0.32801566,-0.8098856,0.17976156,-0.87797505,0.5640793,0.026221722,-0.30854917,0.047746167,0.4255566,0.32025206,-0.017093163,0.07462819,0.22654994,-0.29778928,-0.066709384,-0.24413154,-0.13904968,-0.4797725,-0.6828843,-0.15466505,-0.44803447,-0.11592217,-0.26652488,0.27999043,-0.23818026,0.057526164,-0.21854584,0.7641783,-0.26190418,0.05275892,0.30089822,-0.09849569,0.17695157,-0.7306114,-0.11919056,-0.19232324,0.25420055,-0.06972416,-0.24915719,0.19897789,0.20829926,0.36344388,0.099571116,-0.37066805,-0.3667102,-0.094996616,-0.01221271,0.5387517,-0.14928263,-0.26771602,-0.07883831,0.025693778,0.37085912,0.34538352,0.30161577,-0.23626053,-0.12845814,-0.09093637,-0.19087717,0.44155857,0.44876352,-0.37558094,0.028558772,0.417631,0.55581784,0.1522309,-0.3561923,0.00027468055,-0.17757154,-0.50991446,-0.044765573,0.20788065,-0.25097173,0.4110956,-0.11768535,0.14471245,0.5841483,-0.09827996,-0.10666104,0.18492201,0.16392282,0.057301544,-0.37855673,-0.3418315,0.35263962,-0.36375856,0.23351929,-0.15738434,0.7874182,0.017049106,-0.6058553,0.3211119,-0.58112144,0.12287693,-0.028594691,0.39304242,0.7632587,0.48754752,0.2216738,0.71962255,-0.12512705,0.07441926,-0.053378224,-0.3003174,-0.21970244,-0.072069764,0.26140964,-0.5617151,-0.0037358124,-0.30696207,-0.086065575,0.086441144,0.86117786,-0.5471016,-0.3151215,0.32826445,0.86867136,-0.26918477,-0.08239026,0.89105725,0.9878063,1.1579432,0.106522135,0.7903512,0.108654164,-0.16259813,-0.08952261,-0.085500404,-0.43389964,0.29121655,0.40613124,0.12618287,0.20409176,0.16389298,-0.038439594,0.52423626,-0.32281628,-0.062901914,-0.08032586,0.14429158,0.047560543,-0.091348946,-0.401493,-0.2969423,0.032068603,0.14339097,0.07595331,0.2102955,-0.32832125,0.34374863,0.0014541708,1.4704139,-0.100394204,0.038874686,0.18876362,0.30752146,0.27085,-0.2176342,0.076254964,0.317543,0.32278246,0.11529057,-0.48095825,0.12052687,-0.33111244,-0.46130666,-0.2223314,-0.32620424,-0.26708117,0.06938532,-0.6178184,-0.23831233,-0.10983856,-0.3487591,0.26845896,-2.5544455,-0.15245944,-0.21527773,0.3619679,-0.235872,-0.47512603,-0.006162282,-0.46598256,0.32241404,0.29625392,0.43915218,-0.63101304,0.4773959,0.37022373,-0.5775416,0.07036298,-0.70630586,-0.1349186,-0.08691688,0.21947804,-0.06723827,-0.15378965,0.03577882,0.34652033,0.6200297,-0.04158635,0.01452038,0.3316608,0.37045503,-0.21379176,0.6710971,0.025511514,0.5372327,-0.24016613,-0.19272709,0.47862297,-0.47615635,0.06268568,0.040163923,0.12246229,0.68302166,-0.36303186,-0.84109026,-0.6903547,0.05191129,1.0539441,-0.31049916,-0.42942894,0.20753276,-0.41302884,-0.25067052,0.055176526,0.5691142,-0.011110984,0.032723695,-0.8153493,0.029483087,-0.21785273,0.12898459,-0.1650059,-0.15094823,-0.59289885,0.8553574,-0.04204417,0.7395558,0.1734389,0.25923488,-0.45083392,-0.43491423,0.03315556,0.9509406,0.49658513,0.0160971,-0.2140666,-0.08207676,-0.3685437,-0.08521231,0.27977026,0.6732668,0.4544338,-0.12020461,0.09024192,0.308541,-0.106860965,0.01083892,-0.23915778,-0.275052,-0.1636655,-0.067910545,0.5931457,0.49279726,0.09598877,0.67396,-0.081960015,0.38263083,-0.15535896,-0.47100377,0.2267618,1.180225,-0.24592757,-0.5475084,0.6047137,0.42622462,-0.235862,0.29806784,-0.65833044,-0.35058498,0.3530302,-0.13241212,-0.4609117,0.17467712,-0.3945691,0.3048194,-0.7502621,0.1372088,-0.46858537,-0.6167969,-0.7023709,-0.31790355,-2.8005865,0.32301006,-0.3619188,-0.13110827,-0.043688245,-0.3456608,0.18533996,-0.6810268,-0.47481403,0.04075419,0.10692154,0.65320677,-0.12900817,0.08421527,-0.26868108,-0.4689853,-0.19507444,0.28277224,0.16486445,0.4536185,-0.08919434,-0.2777586,0.13967231,-0.013513958,-0.334795,-0.13627118,-0.6406816,-0.56180143,-0.13880643,-0.6271131,-0.37442118,0.54384184,-0.33035654,0.23195307,-0.16680601,0.04482498,0.04749609,0.12259811,0.14721583,0.14977908,0.07464416,-0.12107941,0.11244887,-0.35936034,0.11631912,-0.04681178,0.29436445,0.11470928,-0.038898863,0.259008,0.43255597,0.59874105,-0.0794966,0.985569,0.41687465,-0.09405615,0.25971663,-0.13309954,-0.25458178,-0.71109015,-0.36895692,0.15699029,-0.46893716,-0.4017837,-0.014769092,-0.3738748,-0.8635628,0.6030845,-0.028334996,0.14262746,0.09167545,0.52960277,0.6180429,-0.31213957,-0.09110013,0.084258035,-0.2506743,-0.38557935,-0.3032935,-0.6454908,-0.504507,-0.02589921,1.1756094,-0.33569396,0.010464085,0.09135066,-0.19677222,0.038354587,0.22603033,0.06637062,0.04664711,0.56355363,-0.15096147,-0.443648,0.3735198,-0.28143585,-0.022331733,-0.65272224,0.40551966,0.5809747,-0.656301,0.5779964,0.3163767,0.21025269,-0.33271396,-0.6972709,0.15215433,0.18323863,-0.28231624,0.49295354,0.44209564,-0.72154546,0.43942153,0.23531356,-0.07073684,-0.8973468,0.6565963,-0.100374915,-0.5316868,-0.20397627,0.43255022,0.2484473,-0.018806677,-0.23416947,0.23229653,-0.46115267,0.3241109,0.17445898,-0.070111714,0.00022079796,-0.2713159,0.0002438277,-0.69590235,0.095139444,-0.5706951,-0.41781288,0.26895678,-0.016754005,0.14984703,0.419594,-0.035924196,0.39679968,-0.33984017,0.053174693,-0.26546976,-0.30631688,0.4732174,0.4483785,0.48112726,-0.4077025,0.6536698,0.10103172,-0.16417554,-0.16697663,0.15415303,0.4133696,0.07736508,0.5431078,0.036722437,-0.061255388,0.26396322,0.6894238,0.10850836,0.5106497,0.063390456,-0.117877185,-0.02095437,0.054393113,0.28831872,-0.10046477,-0.6732869,-0.055235438,-0.30223942,0.3168164,0.5102142,0.08754847,0.2753125,-0.07114662,-0.30076796,0.07130084,0.12647253,-0.15463209,-1.240557,0.31028995,0.25831863,0.914112,0.41384172,0.109416425,-0.11001046,0.6869211,-0.27438387,0.051078625,0.27964786,-0.036593407,-0.10752516,0.47803935,-0.85816646,0.43521738,-0.11041506,-0.047713477,-0.07947936,-0.1023299,0.5341565,0.710538,-0.16341574,0.032306112,-0.0037961788,-0.35427907,0.10669607,-0.40392506,0.051218748,-0.5560395,-0.34546375,0.69809544,0.4699961,0.46562126,-0.28400758,0.024103243,0.04645554,-0.21643719,0.083888456,0.05523538,-0.022171015,-0.031679712,-0.5894773,-0.15215373,0.45904198,-0.06829827,0.08382876,0.08617781,-0.109985664,0.27348536,0.15772332,0.110823415,-0.048943654,-0.59505355,-0.040811077,-0.30500162,-0.42475444,0.34025276,-0.13322607,0.17714024,0.3112275,0.024838455,-0.05178809,0.337321,0.19512649,0.8890895,0.049638137,-0.067369245,-0.42098022,0.22173662,-0.026982263,-0.16740564,-0.16565323,-0.28877896,0.39070404,-0.71879876,0.39822984,-0.10460586,-0.51098555,0.16752075,-0.12011276,-0.07537475,0.48907074,-0.15953024,-0.19013558,0.024236768,-0.02802093,-0.19053894,-0.200832,-0.09511168,0.1849938,-0.066034004,-0.06885788,-0.16844197,-0.053535365,-0.1299709,0.4371274,0.03976133,0.41821337,0.46939963,-0.014108898,-0.38076162,0.03464622,0.24473938,0.49988902,-0.28352672,-0.13866217,-0.30334073,-0.4136569,-0.3715238,0.40671095,-0.026132096,0.27235276,0.05171214,-0.0767961,0.93898463,-0.20834374,1.1613626,-0.08586429,-0.41460308,-0.029766805,0.45410538,-0.04734283,-0.03797891,-0.34123108,0.9120605,0.60381746,0.002991356,-0.08176769,-0.30935848,-0.011494286,0.26598457,-0.17722166,-0.06500327,-0.012615588,-0.5335614,-0.18704885,0.119025216,0.18931195,0.209174,-0.14216705,0.12918904,0.5266802,-0.06751922,0.18802129,-0.48991916,-0.08930521,0.16551112,0.33929873,-0.20610933,0.05311167,-0.4874565,0.39404353,-0.57894987,0.07487373,-0.34063503,0.22675614,-0.171872,-0.23837087,0.36017188,-0.007966122,0.32789353,-0.4926937,-0.26152426,-0.05183044,0.47553802,0.11712387,0.07570258,0.58319503,-0.24826086,0.0052741095,0.15278691,0.56234264,1.1257885,-0.1738621,0.003384512,0.13968919,-0.46380723,-0.6269052,0.30626452,-0.28585804,-0.0008498803,0.24408208,-0.26767057,-0.38216716,0.40776274,0.32770723,0.12846205,0.061811663,-0.6490872,0.0026106834,0.31298622,-0.4216439,-0.061625823,-0.24805225,0.18957436,0.5609739,-0.17987125,-0.35473126,-0.029292837,0.37585643,-0.0027475134,-0.55377716,-0.012320252,-0.48760262,0.25250596,-0.052163713,-0.37927812,-0.20263892,-0.025423147,-0.490289,0.061056904,0.24320437,-0.20118272,0.071608976,-0.22721237,0.050559282,0.80895686,-0.16196485,-0.117627,-0.4658339,-0.5312624,-0.71108574,-0.3123958,0.23489872,0.079982705,0.024281848,-0.6609429,-0.17609185,-0.37313238,-0.2240793,-0.1126634,-0.3908462,0.3569767,0.19062719,0.5478113,-0.082727976,-0.87045276,0.29538253,-0.02256567,-0.13086455,-0.47295237,0.49011642,-0.047046266,0.8396146,0.017453056,0.16921388,0.22919084,-0.41824642,0.100889005,-0.26540864,-0.09455019,-0.73015237,-0.13864863 +758,0.3778707,-0.15871754,-0.6709458,-0.07328148,-0.3772824,0.0460575,-0.33163396,0.053203724,0.17960325,-0.4664475,-0.14927734,0.027161406,-0.09564758,0.35277632,-0.113068946,-0.5379216,-0.07375953,0.2512415,-0.7635174,0.50361043,-0.5214734,0.5491418,0.2494294,0.02863052,0.033117108,0.3511492,0.21257785,-0.16254981,-0.14526705,-0.20587537,-0.030865274,0.03441251,-0.6577789,0.37140134,-0.14991131,-0.30903143,0.012998064,-0.37557632,-0.11299683,-0.61274993,0.07102485,-0.77796,0.64798605,-0.12384483,-0.17386886,-0.11217962,0.23691478,0.59259945,-0.15560126,0.13494733,0.30727294,-0.2905901,-0.36220092,-0.32105687,0.04121417,-0.4791095,-0.31675583,0.0075172065,-0.6095658,-0.30522987,-0.22452192,0.18504912,-0.27188128,0.16966392,-0.25129727,0.26923832,-0.35838038,-0.031329967,0.2159432,-0.18211715,0.17285423,-0.58525246,-0.028215801,-0.12634979,0.48014754,-0.21306644,-0.13941796,0.41002673,0.154849,0.4437806,0.29022038,-0.19618791,-0.100643605,-0.17911546,0.3562221,0.47584453,-0.06554054,-0.11736291,-0.29156455,0.16439782,0.3655189,0.219543,-0.02257237,-0.4232883,-0.00070827606,-0.1620031,-0.20168537,0.4398848,0.4458352,-0.2207703,-0.13685127,0.3272189,0.63239807,0.22678232,-0.16732128,-0.039250787,-0.08037493,-0.45582497,-0.13809477,0.14117017,0.006621011,0.4127958,-0.025705464,-0.082789116,0.7243303,-0.17377321,-0.24024442,-0.10864168,-0.12178983,-0.06333911,-0.07518915,-0.15322636,0.1709749,-0.5865659,0.0288349,-0.24465677,0.7030743,0.029155228,-0.8237584,0.45808133,-0.5654511,0.0763549,-0.014684669,0.59314823,0.6367477,0.6021425,0.097559914,0.8428872,-0.40318954,0.24502282,-0.14487743,-0.33590543,-0.03701845,-0.2587753,-0.057105422,-0.5038045,0.21932122,-0.29178315,-0.16331866,0.0020887058,0.34879047,-0.5987494,0.021437468,0.07494165,0.57019585,-0.39787596,-0.0019899209,0.8128604,1.1221429,1.1167086,0.12941304,1.218682,0.34326324,-0.23002486,-0.1029143,-0.24988894,-0.4943913,0.11582323,0.4229112,0.088410236,0.3141389,0.09019567,0.043743413,0.2732567,-0.3777325,-0.09621708,-0.06291676,0.51182663,-0.03590107,-0.16389206,-0.46807015,-0.12367686,0.06951387,-0.010538488,0.1022953,0.1883381,-0.24031843,0.4840067,0.18336535,1.1455623,-0.149741,0.041131187,0.04773272,0.29486626,0.25524244,-0.2190927,-0.09038889,0.33107388,0.34891096,-0.07123182,-0.5871437,0.0012761832,-0.21994954,-0.41679534,-0.19204634,-0.23102006,-0.06802171,0.08918942,-0.2206328,-0.2571444,0.1218092,-0.27824748,0.53659564,-2.5888393,-0.32984465,-0.13363175,0.29831356,-0.24741918,-0.346973,0.060061503,-0.49172133,0.303085,0.18324377,0.4380096,-0.41847217,0.51193625,0.339677,-0.5742117,-0.26138458,-0.6247008,-0.09575968,-0.041343953,0.5417947,0.014927904,-0.0793416,-0.18902527,0.048419356,0.5485944,-0.2341511,0.12849563,0.5177464,0.24729083,0.15743867,0.52726024,0.1819569,0.7135185,-0.32553482,-0.19430608,0.430368,-0.09068162,0.26220924,-0.11116816,0.08142976,0.34854168,-0.5053643,-0.7679344,-0.6875047,-0.39138755,1.2114996,-0.3090203,-0.4705576,0.09103588,0.025471417,-0.27555114,0.15540072,0.24709289,-0.015901994,0.19787937,-0.7515806,0.071457826,0.051259425,0.2849488,0.029328605,-0.0509042,-0.40838465,0.63406295,-0.12096879,0.4689506,0.37712708,0.36574465,-0.072622634,-0.28957456,0.05113099,1.1452998,0.3833354,-0.06810843,-0.17538263,-0.25851548,-0.08254308,-0.23690735,0.14406538,0.40232432,0.651435,0.029114582,-0.0369444,0.29039338,-0.19128896,0.14623706,-0.12092553,-0.2503695,-0.021604897,-0.034315016,0.4957568,0.56273013,0.027278988,0.5088924,-0.31749147,0.17858587,0.08906571,-0.5863811,0.64953345,0.7367642,-0.1589149,-0.17257811,0.4625166,0.5154815,-0.19426432,0.4928559,-0.5656761,-0.25530612,0.64930266,-0.14674991,-0.28916585,0.17044209,-0.35501158,0.31540635,-0.8870379,0.37912592,-0.42979506,-0.5151804,-0.43741027,-0.12546542,-3.1614876,0.23460366,-0.041683067,-0.075330764,-0.08398498,-0.02545995,0.2960098,-0.62800366,-0.58316994,0.16265137,0.1505797,0.5829724,-0.075007565,0.087440886,-0.11744837,-0.32869157,-0.031443875,0.29324505,0.103357986,0.22154911,-0.23198605,-0.29784578,-0.042152897,-0.20666467,-0.45648518,0.16662283,-0.55704653,-0.42187154,-0.11767108,-0.4455606,-0.22870782,0.6111071,-0.4735694,-0.003672413,-0.1973584,0.16511315,-0.072377086,0.045704387,0.033976782,0.30742946,0.32840785,-0.0908779,0.06916897,-0.32643622,0.3576061,0.0754871,0.24578173,0.15182234,-0.13021971,0.106836714,0.5127237,0.74758285,-0.13373022,0.944069,0.35654208,-0.18253602,0.10515575,-0.31910995,-0.34129232,-0.72752607,-0.37602216,-0.15000932,-0.4219941,-0.5902882,0.027722955,-0.24687259,-0.80977607,0.697837,0.0062143086,0.1735805,-0.06693546,0.40608898,0.2668232,-0.18538332,-0.12386646,-0.16204514,-0.18864837,-0.47289863,-0.38651377,-0.69085157,-0.46391764,-0.09114919,1.0686257,-0.25666317,0.23526828,-0.005038901,-0.3473963,0.17603867,-0.008398276,0.10427725,0.21058917,0.32263032,-0.09281765,-0.6869999,0.29721406,-0.084585115,-0.11477669,-0.49204782,0.36013952,0.7498857,-0.5328576,0.39585048,0.3966706,0.032628346,0.15824004,-0.442891,0.02424738,0.13873404,-0.31138358,0.45243445,0.122192636,-0.5625728,0.58837724,0.2920281,-0.50104487,-0.74641776,0.25447965,0.020993296,-0.06478606,0.109233595,0.2207763,0.08286096,-0.08917427,-0.29298943,0.21242078,-0.46683055,0.24531892,0.21190275,-0.014201411,0.071776256,-0.19161406,-0.40592727,-0.73467904,-0.03535746,-0.43355435,-0.17500047,0.15623775,0.032703713,0.0005681713,0.12609723,0.19126634,0.46743882,-0.26945516,0.05432333,-0.12254812,-0.35257822,0.2745088,0.46558437,0.36539367,-0.31127888,0.5407177,0.106185146,-0.11840451,-0.11023797,-0.031638715,0.4887744,0.13179626,0.20502742,-0.03343458,-0.07362366,0.25892088,0.6206649,0.22266702,0.39911932,0.06283593,-0.29475754,0.29536614,0.13468795,0.2222036,0.05535693,-0.29077065,0.07542704,0.0847189,0.07086169,0.47211885,0.30664024,0.38064176,-0.05692112,-0.20853806,-0.04714934,0.233558,-0.029165229,-1.1682382,0.5215,0.24359019,0.5995296,0.47743642,0.14824621,0.037221666,0.6773145,-0.56830055,0.06237403,0.2226598,-0.05558948,-0.41508818,0.48650685,-0.67997754,0.33881897,-0.11412017,-0.08284521,0.21571206,-0.004030359,0.29344738,1.0313565,-0.238848,0.04646069,-0.093775585,-0.17212638,-0.10524482,-0.2970802,-0.102411866,-0.37154076,-0.49883813,0.86219317,0.13916032,0.44440323,-0.20727839,-0.011621227,0.059331045,-0.26510468,0.30986273,-0.0689297,0.16537851,0.18115582,-0.37675148,-0.19257998,0.5321877,0.0061843633,0.21062975,-0.070519,-0.21498355,0.15073654,-0.18863538,-0.03993829,-0.0012145141,-0.5755898,0.033694983,-0.1845368,-0.34256735,0.25084648,-0.17987975,0.07993296,0.08914623,0.025521036,-0.13517304,0.2524441,0.13685423,0.7472418,0.20197228,-0.319168,-0.1811356,0.15721117,0.2936922,-0.2110171,0.31561154,-0.20533891,0.08963464,-0.7552317,0.46479315,-0.174593,-0.3651152,0.33132017,-0.14878224,-0.0128388945,0.49900946,-0.21694441,-0.1397231,0.21335761,0.015766962,-0.35198778,-0.2571109,-0.29919186,0.122163296,0.26380014,0.015822165,-0.10726168,-0.22102816,-0.13731517,0.48877925,0.055758562,0.460024,0.08632342,0.014429339,-0.3958421,0.030974556,0.10284608,0.2848104,0.11994408,0.023767225,-0.32284343,-0.39710867,-0.34605682,0.2034468,-0.10849745,0.12140497,0.034360904,-0.38840848,0.85601646,-0.10709658,1.2286073,0.024809768,-0.33382314,0.13417415,0.50496143,-0.10259797,0.15014566,-0.3965709,0.8664322,0.6331841,-0.02045794,0.056354802,-0.58886594,-0.20535745,0.20437972,-0.43269715,-0.11218414,-0.035262402,-0.47773615,-0.49504787,0.2137194,0.2298573,0.005849107,-0.0409482,0.11970353,0.12837979,0.18504384,0.2758903,-0.457395,-0.13563803,0.27390924,0.2940129,-0.07984293,0.057793543,-0.54721606,0.45844582,-0.7824752,0.25000668,-0.34594434,-0.019522572,-0.12492952,-0.24984951,0.16922374,0.06738681,0.1679164,-0.35971037,-0.47058123,-0.06619035,0.3930763,-0.09853938,0.0044672964,0.71172804,-0.30373028,0.12805924,0.14861518,0.36794376,1.0083503,-0.3518574,0.008714271,0.22758254,-0.35440403,-0.407639,0.33937094,-0.22145097,-0.08129082,-0.15173848,-0.35709578,-0.5474048,0.21146813,0.083381735,0.029210232,0.071988784,-0.70162374,-0.047928073,0.33652028,-0.3789705,-0.2305391,-0.074954264,0.3595181,0.681554,-0.38251907,-0.44138342,0.068505205,0.24463351,-0.35781604,-0.44541714,-0.17210414,-0.14137472,0.4096431,0.23090558,-0.21153723,-0.11461356,0.3926653,-0.45947707,-0.13247146,0.23463967,-0.39754587,-0.01496769,-0.2312901,0.053901818,0.66701716,-0.14233573,0.038475685,-0.62981665,-0.4690344,-0.9302027,-0.33938232,0.24945575,0.342378,0.033544675,-0.55887926,-0.0013309459,-0.13966538,-0.11217154,0.11740756,-0.6345919,0.37453502,0.18594739,0.35498267,-0.32594016,-0.95076144,0.13420364,0.16554716,-0.047349215,-0.5892812,0.49938953,0.0012121598,0.9450086,0.11392002,-0.15764411,0.03273218,-0.62107223,0.29267254,-0.21150139,-0.095760144,-0.78403175,0.04664435 +759,0.52531713,-0.17515919,-0.6469589,-0.2210141,-0.26120448,0.0003912151,-0.3231687,0.3768015,0.5122939,-0.36815682,0.027784018,0.013926054,-0.12069631,-0.017673539,-0.083990835,-0.7581051,-0.0125206215,0.21885324,-0.61280453,0.6476732,-0.45715946,0.13790537,0.022461075,0.35066536,0.059957385,0.104416676,0.013514949,-0.15980062,0.12279992,-0.2930403,0.015128399,0.15277684,-0.48642108,0.32612976,-0.14541733,-0.22229011,0.088869534,-0.29953456,-0.5059884,-0.8540233,0.05422443,-0.8234304,0.65189564,0.09245743,-0.43382555,-0.002457572,0.04596597,0.24778914,-0.11138178,0.05585455,0.24818444,-0.38360995,-0.50917965,-0.24546573,-0.35157415,-0.5709568,-0.6636749,-0.22966173,-0.56139386,0.16214077,-0.151144,0.2832101,-0.35849127,-0.11144471,-0.34111246,0.66126317,-0.40854883,0.14303897,0.16433391,0.029388055,0.35748553,-0.6190068,-0.059742756,-0.13668485,0.14747348,0.23664048,-0.32270375,0.15922679,0.21255529,0.469519,0.13247956,-0.2697089,-0.25400037,0.038169686,0.046001475,0.3697019,-0.09518321,-0.1690756,-0.2644109,-0.19345447,0.5462553,0.34008312,0.0362002,-0.40249705,0.108621165,-0.12767185,-0.28063002,0.62760645,0.66057414,-0.23743054,0.04843151,0.23072542,0.25945774,0.2719953,-0.2926652,0.20749967,-0.066629015,-0.5061201,-0.20063362,0.24126874,-0.18083905,0.3859572,-0.10165943,0.19086409,0.6162918,-0.058092296,-0.20658146,0.13980266,0.111900315,0.18939413,-0.4392426,-0.43820268,0.46367344,-0.74101204,0.022347728,-0.48001432,0.7113767,-0.20619933,-0.7506091,0.28108674,-0.53449416,0.084177054,-0.06599489,0.7671854,0.9262118,0.6513557,0.13659573,0.72106177,-0.34747937,0.07189412,-0.081780076,-0.21483429,0.3568252,-0.05499926,0.37327036,-0.42995504,-0.21517077,-0.1924213,-0.28803977,-0.085357785,0.57074296,-0.47711053,-0.23963667,0.14477207,0.75990784,-0.32373014,-0.042812675,0.82310927,1.3637346,0.8699365,0.23682615,1.2250334,0.40500483,-0.23935978,-0.12386962,-0.17409046,-0.9042307,0.24683629,0.23632422,-0.12809584,0.28467354,0.116790935,-0.13208185,0.4888993,-0.47666517,-0.22014873,-0.056326292,0.31593147,-0.23479016,-0.10309061,-0.3904242,-0.20846303,0.053603917,0.11036192,0.19580565,0.32007486,-0.18994062,0.38196182,0.2355882,0.9528218,-0.117469124,-0.072788276,0.11949468,0.32343474,0.21493694,-0.17902695,0.023664394,0.44192895,0.34966263,0.07148872,-0.5770513,0.21424529,-0.16596194,-0.2293638,-0.27123982,-0.24295683,0.053699333,-0.20140913,-0.21855943,-0.21880637,-0.10424899,-0.41291994,0.34926394,-2.4593568,-0.09124513,-0.15604624,0.35302058,-0.011317296,-0.14459945,-0.0653644,-0.5128691,0.5242732,0.2274919,0.49226528,-0.5613119,0.4771266,0.62932444,-0.48304835,-0.012247314,-0.8496792,-0.23945339,-0.11698861,0.48115614,0.019714603,-0.15525258,-0.020907564,0.11604088,0.48995593,0.22216997,0.10609212,0.29823607,0.48954535,-0.08820952,0.50100595,-0.038840745,0.5745212,-0.24058926,-0.22385432,0.1497232,-0.18963806,0.21120712,-0.32827815,0.07402766,0.5777246,-0.41238585,-0.6160923,-0.31895232,-0.11717369,1.24252,-0.3918148,-0.5655774,0.24773203,-0.38008907,-0.25440404,0.05699523,0.54777277,-0.23361276,-0.11165207,-0.8245443,-0.15011232,-0.031461723,0.24817957,-0.0082380045,0.09181701,-0.527525,0.6568008,-0.10099446,0.5510095,0.33021253,0.32065365,-0.2584453,-0.5757204,0.12878852,0.86351,0.28668314,-0.02270682,-0.35301474,-0.11618851,-0.082092986,-0.0015205826,-0.04078934,0.6491297,0.87338483,-0.24143516,0.0037010056,0.39920804,-0.40660906,0.023160543,-0.16440625,-0.5069159,-0.40203816,0.05558492,0.47333902,0.7413891,-0.046165314,0.4090875,0.06275453,0.3449094,-0.24469054,-0.5277026,0.41063437,0.8847129,-0.28795028,-0.2285597,0.7519067,0.5292333,-0.19316234,0.5828509,-0.57722914,-0.26681468,0.3981492,0.0740909,-0.6149999,0.28244337,-0.48519483,0.17485859,-1.0605838,0.44902164,-0.4258237,-0.8511235,-0.7837161,-0.013839909,-2.6186187,0.2604269,-0.43143812,0.0020993862,-0.17383139,-0.07621503,0.46000975,-0.45929983,-0.52239305,0.3013021,0.2003999,0.5081526,-0.16967784,-0.045248576,-0.23129323,-0.29682687,-0.2631933,0.25284836,0.29673237,0.2519719,-0.0729801,-0.5598263,0.008199534,-0.042168807,-0.24277203,-0.0513927,-0.7603697,-0.2773538,0.06431651,-0.6420347,-0.26253563,0.62903255,-0.26132938,0.10127539,-0.38197857,0.07998652,0.056791384,0.2792805,-0.17764577,0.28215182,-0.015909553,-0.05230892,-0.13106075,-0.19716616,0.13892865,0.038767762,0.31070656,0.19619259,-0.08406403,0.05933885,0.57843935,0.62383664,-0.12230204,1.0162497,0.4932116,-0.27259457,0.27167708,-0.14500538,-0.26376066,-0.72852343,-0.20566152,-0.030492691,-0.52877367,-0.35198003,0.0012919946,-0.3806426,-0.85215825,0.6332646,0.09244328,0.12063459,0.060803443,0.28769273,0.52956355,0.10734183,0.0016406818,-0.19691254,-0.25652584,-0.3560814,-0.15734465,-0.90744054,-0.3682587,0.118558116,1.3068283,-0.24115042,0.13375944,0.25968572,-0.34694782,0.10396135,0.24702728,-0.029978363,0.24287507,0.46512,0.18527563,-0.5324863,0.33839235,-0.19845282,0.043995492,-0.72007406,0.20224126,0.9201116,-0.9372725,0.60462517,0.5212502,-0.0049380683,-0.33570904,-0.6983816,-0.26464346,0.29079667,-0.22317271,0.60710764,0.28254586,-0.7551211,0.5909112,0.2266542,-0.08843557,-0.77262646,0.43871838,-0.18289542,-0.29677853,0.14533086,0.4611024,-0.10616098,0.14823608,-0.18860304,0.41190305,-0.19433287,0.36272684,0.043462012,-0.28303427,0.18445821,-0.16724665,0.08823327,-0.873363,-0.09354174,-0.7008892,-0.23515561,0.4013904,-0.11816234,0.21136972,0.20797506,0.14599678,0.3674828,-0.19100367,0.16702147,-0.24332158,-0.47346112,0.5976678,0.5993245,0.35292837,-0.36718896,0.55908126,0.038278613,-0.31698492,-0.12217176,0.24888827,0.33569404,0.020169256,0.50747997,-0.17526378,-0.07104133,0.22645903,0.903828,0.14348306,0.43588358,0.11248068,0.04744998,0.4093477,0.15770411,0.2545836,-0.23493567,-0.5990643,-0.089011736,-0.2126532,0.3427449,0.40323576,0.12423571,0.55923027,-0.10323727,-0.08926963,-0.052458603,0.14077938,0.2916862,-1.1850398,0.5084863,0.27364108,0.4809954,0.46121326,0.21274678,-0.10893539,0.6777269,-0.1441697,0.10718993,0.47125834,0.24360509,-0.19342913,0.42417198,-0.65789413,0.22449769,-0.21789598,0.14584692,0.22027647,0.08577003,0.55334336,0.92853725,-0.12674823,0.029526684,-0.18992968,-0.26087663,0.10124784,-0.18913688,0.20575915,-0.35647616,-0.471328,0.6916122,0.41716385,0.4468159,-0.18900597,-0.039180126,0.42360264,-0.09642142,0.26426727,-0.03404917,-0.252664,-0.06043098,-0.49350253,-0.1368995,0.4531837,-0.109349966,-0.09703088,-0.029115072,-0.015423076,0.10594857,-0.057043128,-0.017789325,0.041618146,-0.6396599,-0.21367045,-0.36938193,-0.5530295,0.575484,-0.16389258,-0.0021931466,0.14704065,-0.025028238,-0.2009506,0.097895846,0.13580428,0.63471526,0.0099876,-0.1922773,-0.11041465,-0.07672684,0.055321965,-0.31358457,-0.026926283,-0.22285691,0.2790013,-0.71162164,0.2899127,-0.2788592,-0.4339021,0.089990355,-0.20235583,-0.053058334,0.44192985,-0.3212681,-0.21907224,0.24120416,-0.20115313,-0.21395014,-0.29061666,-0.19639339,0.090639725,2.9844898e-05,-0.04336341,-0.16498871,-0.20195928,-0.14258195,0.43012565,0.19517274,0.19230628,0.4233028,0.22429037,-0.23052822,-0.21368589,0.27167585,0.5671083,-0.2122757,-0.101556495,-0.4108925,-0.35774526,-0.35564032,0.18316568,-0.067805454,0.3420803,0.06541751,-0.36513263,0.95761395,0.1307837,0.8659717,-0.12475114,-0.48609227,-0.04632101,0.54484844,-0.03491349,-0.0051606507,-0.29981893,0.94413674,0.62916654,-0.22646035,-0.092861615,-0.64435023,-0.009863453,0.25811523,-0.3017959,-0.17206797,-0.071879864,-0.7618331,-0.099266715,0.3382581,0.21462747,-0.12102425,-0.112898044,0.19226895,0.18775202,0.10963371,0.21017016,-0.68985856,0.114522934,0.20875299,0.22965251,0.0023417303,0.31373015,-0.3982851,0.1918851,-0.5561171,0.13075295,-0.48091656,-0.03436738,-0.035046082,-0.20823874,0.21180758,-0.0840277,0.34462523,-0.41016454,-0.2710692,-0.12976111,0.43277535,0.17319702,0.22417259,0.724742,-0.23892704,-0.11733062,0.14617218,0.6412591,1.3117694,-0.27831605,-0.0013032982,0.18242417,-0.2924262,-0.6291262,0.07982678,-0.46747702,0.043902915,0.056738406,-0.4635501,-0.48275873,0.24737188,0.08181327,-0.09805413,0.21271653,-0.49083933,-0.15326838,0.057641786,-0.25410992,-0.15759407,-0.13411471,0.076180235,0.6716693,-0.29498148,-0.40022925,-0.13811375,0.1458681,-0.3014589,-0.5534023,0.13251886,-0.3843415,0.06203546,0.21894611,-0.463183,0.067774855,-0.043972287,-0.5544773,0.12377783,0.2529134,-0.27060685,-0.018325286,-0.19271103,0.013609039,0.8388706,-0.08524428,-0.04463252,-0.40047094,-0.6570203,-0.62501854,-0.3693479,0.09470248,0.29833665,-0.028701672,-0.48383242,0.00091339863,-0.22612862,0.11511778,0.08945029,-0.5026506,0.54074425,0.18312037,0.48174372,-0.1969074,-1.075415,0.24976476,0.17804207,-0.45835394,-0.61597025,0.6935671,-0.21332805,0.90699905,0.026809296,0.16896689,0.012461066,-0.6483935,0.20546563,-0.3759859,-0.34972438,-0.8264958,0.044948876 +760,0.60273284,0.18321273,-0.692482,-0.033581592,-0.351266,0.1137317,-0.14481017,0.47486025,0.16952308,-0.38711974,-0.06540304,0.028181195,-0.078122355,0.28810087,-0.24286428,-0.6102429,0.0689801,0.24789187,-0.5284053,0.73553604,-0.1892815,0.49053282,-0.025853207,0.39890677,0.17040631,0.2372912,0.10457714,-0.012955883,-0.21931174,-0.4640219,-0.075174496,0.44884697,-0.52195877,0.06533199,-0.2036907,-0.43797252,-0.04477747,-0.37546316,-0.36820316,-0.7349897,0.16950396,-0.8258858,0.76600075,0.07607864,-0.32953978,0.13646756,0.32282537,0.17844321,0.09648251,0.028922414,0.14173461,-0.15373127,-0.022537827,-0.18871298,-0.22859879,-0.5563599,-0.4624586,-0.019806614,-0.6191749,-0.090098344,-0.2517719,0.23468132,-0.27558893,-0.13466546,-0.2826397,0.50754195,-0.34283796,0.14167024,0.08696646,-0.1844569,0.080239944,-0.70937437,-0.17410633,-0.041938264,0.2772403,-0.22873135,-0.14274421,0.28844258,0.24774651,0.30020002,0.0015361543,-0.18483093,-0.44296566,-0.15548547,-0.014025705,0.53405863,-0.32450074,-0.4446392,-0.094820194,0.050493706,0.66647756,0.113775186,0.22061408,0.035961654,-0.09634888,-0.22939894,-0.20304544,0.5897828,0.5984332,-0.27775866,-0.08655964,0.4507154,0.30852774,0.26267654,-0.21678543,-0.020950701,-0.27556872,-0.37334722,0.05660264,0.079106264,-0.12885426,0.46272883,0.028209055,0.25021663,0.49707112,-0.1997885,0.07937627,0.22338721,0.13378148,0.27365485,-0.12787142,-0.2727399,0.24956982,-0.59556955,0.1541872,-0.2472109,0.60029453,0.018276986,-0.63780624,0.28393295,-0.5347188,0.02570073,0.021238118,0.4540597,0.49088064,0.5639695,0.045861457,0.6660581,-0.12011457,0.087684646,0.10210729,-0.1333251,-0.10506761,-0.08954285,0.12910204,-0.4696174,0.11804866,-0.039499264,-0.12726471,0.12358253,0.59741485,-0.49328583,-0.33892322,0.24110794,0.7798995,-0.24286999,-0.24292178,0.9552428,1.1058995,0.9477908,-0.15638423,0.73884135,-0.052146655,-0.17015061,-0.3005258,-0.19079855,-0.39715904,0.25480372,0.39910105,-0.48318276,0.39613038,0.0188639,-0.12509625,0.18846288,-0.25028113,-0.42262793,-0.23232043,0.08098919,0.12200507,-0.11156927,-0.38906193,-0.33439475,-0.017701147,0.027097123,0.2989222,0.34512058,-0.3629332,0.18392885,-0.23280825,1.2236986,-0.017542204,0.028788725,0.059426863,0.55270344,0.2894844,-0.1383414,0.051711466,0.3320835,0.3410039,0.061267436,-0.41567472,0.09631638,-0.39217943,-0.52936393,-0.10686071,-0.38162428,-0.30669516,0.13124625,-0.5054379,-0.15958224,-0.09005622,-0.30498537,0.28807083,-2.6400032,-0.15045536,-0.14604224,0.32099083,-0.19290243,-0.363348,-0.20256984,-0.4103885,0.48114246,0.18358324,0.5310143,-0.40660384,0.46392873,0.32608703,-0.60184234,-0.109453216,-0.57345194,0.11069894,0.05399262,0.3146833,-0.23293726,-0.110725105,0.32653567,0.1658564,0.57486826,-0.03591289,0.1238103,0.3052249,0.36594075,-0.16508977,0.37596795,-0.035295825,0.57342863,-0.17381974,-0.20659082,0.3747025,-0.41529742,0.2973694,-0.3225862,0.08719136,0.58258957,-0.47507375,-1.049758,-0.44901162,0.054811623,1.1402882,-0.2296011,-0.5504845,0.10238581,-0.039868988,-0.2635962,0.05755582,0.585843,-0.063013196,-0.087779894,-0.5285128,0.009669832,-0.08686091,0.113281064,-0.10267018,0.11494552,-0.46815512,0.42492557,-0.058565255,0.54391164,0.1002086,0.4237536,-0.3005859,-0.4029983,0.0883276,0.8992917,0.44900465,-0.054193165,-0.20301715,-0.18077826,-0.30643257,-0.0510274,0.16194294,0.76013404,0.5973091,-0.042145878,0.11787286,0.23128465,0.102890775,0.20812032,-0.18398869,-0.34246254,-0.34638268,-0.039449397,0.5492574,0.33367085,0.105915315,0.7464519,0.037703227,0.26255137,-0.3556874,-0.48457035,0.42283216,0.9603787,-0.3173236,-0.35436416,0.6775886,0.45513695,-0.14263678,0.43539616,-0.68548054,-0.47844532,0.33509496,-0.242833,-0.4507112,0.27790597,-0.18721092,0.10025829,-0.8376965,0.36939648,-0.4180483,-0.6936528,-0.34503585,-0.10189269,-2.6520736,0.19505681,-0.27905455,-0.16172454,-0.27814284,-0.3960679,0.040890634,-0.5455675,-0.54228663,0.1407098,0.17246369,0.7870785,-0.21101178,0.14918835,-0.06864098,-0.55534536,-0.355233,0.25216454,0.14325717,0.41594675,-0.082196705,-0.29455012,-0.006313571,0.07407049,-0.38118908,0.08874277,-0.5593351,-0.37579933,-0.0839872,-0.49077588,-0.12352012,0.62545174,-0.28090718,0.18983842,-0.18169795,0.106929556,0.13350922,0.123204045,-0.0063994527,0.2801006,0.08118052,-0.15012093,0.30172735,-0.18287492,0.36510232,0.1312468,0.5339425,0.21367715,-0.0558048,0.21564077,0.5116572,0.504795,0.068874575,0.8465651,0.31698114,-0.09113779,0.31219342,-0.21221931,-0.22174914,-0.6351641,-0.3757153,0.21455356,-0.41137418,-0.41986665,-0.12336468,-0.3692661,-0.9082759,0.6082092,-0.025582476,0.3467658,-0.27326113,0.67809445,0.5262524,-0.28799373,0.028756078,0.009528892,-0.075933315,-0.3140661,-0.13022421,-0.6823793,-0.25996834,-0.16551474,0.9182234,-0.43369532,-0.06406967,0.057853974,-0.09964512,0.18235508,0.08583057,0.23887913,-0.034920674,0.3240268,-0.077952385,-0.638594,0.3961936,-0.5081499,-0.031431433,-0.45765236,0.29619068,0.5856589,-0.65915716,0.3774075,0.52602756,0.18169188,-0.31426272,-0.62508905,0.016997179,0.19605033,-0.2347532,0.3001799,0.3072426,-0.7280683,0.40726742,0.15563841,-0.31848145,-0.6267575,0.70943993,0.09416257,-0.3858517,-0.03902142,0.3873363,0.2509281,-0.09468857,-0.23322003,0.22765085,-0.36541915,0.39272884,0.17140995,-0.12313415,0.46467546,-0.27083185,-0.30585045,-0.73266983,0.16789587,-0.5641378,-0.38869214,0.25485852,0.05202904,0.12596291,0.29620865,0.0074030287,0.36896834,-0.53012747,0.11662091,-0.24162522,-0.30201316,0.5819101,0.3567355,0.7193085,-0.42890915,0.54101986,0.15148392,-0.21240522,0.2442018,0.11305376,0.61315817,-0.065074995,0.5048353,0.08051934,-0.050937414,0.27837622,0.5233677,0.22225937,0.3206204,-0.07232232,-0.21751747,-0.12784939,0.028391557,0.19193853,-0.09067214,-0.5534827,-0.24096571,-0.19861735,0.08918981,0.54624647,0.22152384,0.22638786,-0.044311166,-0.2932289,0.09460395,0.11175287,-0.056002192,-1.0903703,0.59461015,0.18008061,0.8826742,0.11618185,0.19254565,-0.21807541,0.57125175,-0.19505088,-0.0010556707,0.15626796,0.09877032,-0.15130265,0.53451556,-0.514846,0.50784117,0.15399821,-0.06901675,0.17253089,-0.15493515,0.4168473,0.9251916,-0.21342646,0.035471577,0.036329098,-0.3451198,-0.035204735,-0.23394087,0.119132146,-0.5982097,-0.2656507,0.7566777,0.21249032,0.25829992,-0.16114013,0.038766082,0.1160439,-0.2685624,0.18810235,0.056576185,0.3013598,-0.20752664,-0.45243573,-0.13219044,0.4413071,-0.2307351,-0.0062960046,-0.008290927,-0.13410152,0.22593035,-0.029674215,0.092076056,0.0495133,-0.58659357,0.12024034,-0.36204544,-0.2923345,0.28273997,-0.26659027,0.2572132,0.12598968,-0.048562054,-0.056372948,0.3624912,0.22895013,0.45070574,-0.13208626,-0.312221,-0.3806165,0.20520122,0.049463034,-0.22567026,-0.076867625,-0.16503723,0.28960675,-0.57400066,0.271403,-0.1839877,-0.25314122,-0.17967136,-0.11592744,-0.038145933,0.38956603,-0.06432177,0.046785288,0.15849091,-0.17309739,-0.3329484,-0.14652573,-0.19687974,0.0833786,0.20489763,-0.3080003,-0.19521272,-0.122603215,-0.022869619,0.31154513,-0.08183764,0.3897492,0.43700927,0.3255331,-0.3189624,-0.007809398,0.15265442,0.6082457,-0.12029954,0.124748535,-0.37873837,-0.26262322,-0.33035088,0.41958264,-0.15109931,0.2356685,0.1788297,-0.016708586,0.89253646,0.0034395542,1.1728052,-0.08914503,-0.4709994,-0.048937954,0.54937875,-0.13085653,-0.17438047,-0.22651991,1.2401222,0.39132997,0.07341174,-0.02577789,-0.3352227,-0.013659068,0.16378441,-0.3049042,-0.29713157,-0.030332455,-0.43831697,-0.37199873,0.17546037,0.22721864,0.105331175,-0.10756834,0.17801845,0.4122486,0.08731126,0.14756106,-0.7923242,-0.36222053,0.28904787,0.17790262,-0.148201,0.21892674,-0.49664977,0.31480843,-0.6374941,0.11518073,-0.08861769,0.16913657,-0.07296135,-0.38900995,0.31333756,0.12382049,0.39424023,-0.28060058,-0.4019229,-0.19647741,0.27182713,0.09815756,0.031381074,0.4360078,-0.1967958,0.070176624,-0.060743578,0.63023823,1.1370574,0.029231912,-0.07113866,0.27343222,-0.38544947,-0.7499911,-0.022635112,-0.48045936,0.15861808,-0.11822062,-0.3147032,-0.43924597,0.32769233,0.05143232,-0.081792794,-0.002538979,-0.69906014,-0.16482462,0.10407596,-0.24074435,-0.1427081,-0.34239036,0.20570742,0.6972942,-0.15027632,-0.30140972,-0.024059108,0.33932883,-0.11935879,-0.7164033,0.19257914,-0.34870043,0.18899472,-0.10168773,-0.3935841,-0.26744252,0.030029774,-0.46966466,0.3466649,0.20752189,-0.25509062,0.07396189,-0.22400379,0.1399763,0.65843,-0.19994535,0.18251882,-0.34776226,-0.5306813,-0.68372244,-0.45895603,-0.10082113,0.19719286,-0.10172402,-0.83458847,-0.034243193,-0.39938334,-0.21318428,-0.20935677,-0.25375792,0.2960956,0.14691088,0.41669664,-0.21371283,-1.0678729,0.26812157,-0.003091595,-0.21228191,-0.42835873,0.41469732,-0.055452522,0.883008,0.15557514,0.11935855,0.14262246,-0.44792178,0.109877326,-0.1716543,-0.06316952,-0.6383275,0.04139232 +761,0.47987297,-0.19524996,-0.60297495,-0.03620205,-0.28220594,0.17882295,-0.15346892,0.33189815,0.2425011,-0.5094523,-0.018471133,-0.047603536,-0.022975245,0.2135574,-0.23638763,-0.42293072,0.008873892,0.26709816,-0.43628967,0.75463337,-0.32098567,0.30688444,0.076997206,0.33974394,0.21244475,0.13867597,-0.042477574,0.0011730035,-0.25825325,-0.2638766,-0.12207576,0.52761424,-0.511964,0.14755462,-0.1479324,-0.38920775,-0.21260346,-0.4109662,-0.36010388,-0.7431561,0.10147527,-0.81098926,0.76523125,-0.011424061,-0.2876291,0.113703914,0.31408152,0.2108943,0.019014176,0.027074507,0.15835322,-0.119163975,-0.22129335,-0.12603225,-0.28900927,-0.6861664,-0.58153176,0.09811003,-0.5213006,0.030321991,-0.1401572,0.23383507,-0.30067554,-0.12607284,-0.14296237,0.48847237,-0.34563172,0.06950908,0.15178952,-0.0100582875,0.32795423,-0.64283943,-0.33278638,-0.23737437,0.2343347,-0.26450914,-0.34128192,0.08547594,0.384895,0.5864278,-0.011988549,-0.21761456,-0.3675909,0.032506984,0.012441155,0.46774432,-0.3363896,-0.5835427,-0.29060143,0.07640763,0.38413492,0.1895488,0.17633496,-0.27904707,-0.046521854,0.07911162,-0.38518256,0.6012688,0.3812806,-0.3603045,-0.169513,0.3449808,0.4664891,0.25170457,-0.26162174,0.021779176,-0.027180629,-0.5673207,-0.06440846,0.1943361,-0.07119739,0.52168685,-0.11329453,0.1860487,0.551733,-0.18113764,-0.11033848,0.2468438,0.14995568,-0.072068825,-0.16431384,-0.3051611,0.21165337,-0.3468629,0.05873063,-0.13750297,0.5885667,0.03126143,-0.8621157,0.22341973,-0.59529024,0.038087867,0.001953121,0.44926172,0.857658,0.5235482,0.13868055,0.6296136,-0.05748148,0.0037983814,-0.13377878,-0.27987832,0.04890887,-0.1813983,-0.07517919,-0.64083636,0.027084565,-0.04529883,-0.098217405,0.007862822,0.6317833,-0.5876252,-0.27799118,0.14977652,0.78270465,-0.27521974,-0.2785507,0.8813344,1.0257397,0.9280604,0.063053206,1.1737069,0.11283802,-0.12455138,0.07735084,-0.21057227,-0.57586926,0.35843557,0.2677967,-0.6205236,0.49169573,0.12469843,-0.09414151,0.3267485,-0.2652729,-0.12907115,-0.27825218,0.06308099,0.067838974,-0.23302498,-0.4580178,-0.3177644,-0.051694617,0.07259272,0.27441457,0.21976,-0.315882,0.35184595,0.20818032,1.5683591,-0.17878573,0.031891096,0.032393683,0.30304602,0.26376548,-0.102820076,-0.016257819,0.26078907,0.42614236,0.21296878,-0.4490219,0.06320394,-0.039240297,-0.47497457,-0.14319451,-0.31055024,-0.21247672,-0.11700806,-0.51983064,-0.15974264,-0.143606,-0.433348,0.3995566,-2.6049116,-0.18616103,-0.12559639,0.24190561,-0.21281853,-0.49769384,-0.16524902,-0.42323634,0.3165636,0.22341092,0.41378647,-0.6448855,0.58659446,0.3569269,-0.50077474,-0.2542457,-0.73908406,-0.1652386,-0.09507763,0.37347898,-0.07154628,0.00090606016,0.25390288,0.118834905,0.5268779,-0.27570564,0.113647535,0.24025649,0.5070005,-0.02095533,0.5444527,-0.093081,0.62333554,-0.21326551,-0.29347888,0.33713996,-0.39016807,0.16230133,0.12389339,0.13040237,0.41884565,-0.44528115,-0.9849668,-0.6510957,-0.23979534,1.1643369,-0.23513412,-0.4234277,0.08777244,-0.40078926,-0.3211235,-0.022446474,0.36146036,-0.10650061,-0.054448724,-0.89646524,0.0035167236,-0.12781836,0.20729843,-0.06877585,0.05881296,-0.546507,0.61261976,-0.07685992,0.5042448,0.35723847,0.26975816,-0.4299009,-0.53060424,-0.016976114,1.1345893,0.25197086,0.07053579,-0.26593864,-0.1392683,-0.32768357,0.12918511,0.1184258,0.6657753,0.48306096,0.05540268,0.107932284,0.26517937,-0.069061086,0.2593754,-0.20435932,-0.30500183,-0.31365436,0.11040215,0.6330138,0.45250568,-0.19831726,0.7169195,-0.27551147,0.3490719,-0.14429024,-0.54138446,0.5047322,1.3432348,-0.23730066,-0.36926895,0.73106754,0.60054785,-0.15715382,0.40034863,-0.5576411,-0.39659417,0.34722343,-0.110467404,-0.29238886,0.36956283,-0.34974307,0.13342057,-1.0586199,0.19794068,-0.2673465,-0.4607426,-0.51068485,-0.013366175,-2.7346983,0.24454863,-0.22485806,-0.20837337,-0.15886627,-0.31381035,0.32485324,-0.5834599,-0.5023268,-0.05356931,0.10991665,0.5967855,-0.020694971,0.076783724,-0.18061088,-0.30413634,-0.054497175,0.29807746,0.21927474,0.3435932,-0.1666995,-0.5325587,-0.11146196,-0.15728466,-0.35632372,0.0764905,-0.92701846,-0.46299455,0.0424963,-0.6049392,-0.3154358,0.6714146,-0.4317412,0.016504461,-0.21825273,0.08238124,0.023646919,0.28049004,-0.17366035,0.1588147,0.0657286,-0.08657244,0.11977736,-0.17853278,0.15027437,0.045102764,0.1855815,0.37569815,-0.14025357,0.3817143,0.52142966,0.66954315,-0.06828354,1.0066656,0.69307,-0.1227932,0.30805442,-0.25152212,-0.29630694,-0.6765776,-0.2154028,0.008743343,-0.49862468,-0.40912566,-0.08312189,-0.3171508,-0.79589003,0.7277146,-0.13277107,0.08404722,-0.10666296,0.5029052,0.6062929,-0.2388685,0.08607981,-0.09326111,-0.31527895,-0.3508399,-0.41012943,-0.52347225,-0.40868804,-0.23566565,1.2153277,-0.14731644,0.30803537,0.06216348,-0.10879292,-0.020053057,0.18210858,0.15233196,0.18561544,0.5578755,-0.16571093,-0.56627023,0.31961504,-0.46865818,-0.1838617,-0.44295946,0.2889667,0.7067015,-0.66143495,0.5218373,0.51520145,0.11653531,-0.2618177,-0.5290044,-0.018263848,0.11341213,-0.18836921,0.5866948,0.42750224,-0.6949941,0.49088722,0.38958022,-0.18054308,-0.64191014,0.6913508,0.014593359,-0.2522023,-0.15274435,0.37870455,0.12528743,0.10444999,-0.1538927,0.16334298,-0.37276286,0.19409296,0.107211165,-0.11553028,0.25271386,-0.22038509,-0.09110903,-0.8525042,0.086391576,-0.48600838,-0.3830745,0.2574436,0.0943122,0.15425867,0.25170815,-0.11297996,0.3395622,-0.5265145,0.038021706,-0.21250175,-0.2486083,0.24080181,0.47559488,0.48415774,-0.44390953,0.53453594,0.018796988,-0.17171784,-0.11154649,0.16618699,0.5737249,0.0055325585,0.41027144,-0.003907001,-0.2376083,0.36823446,0.6749944,0.15071917,0.40302497,-0.045310702,-0.108493365,0.106292404,-0.0052607963,0.2734661,-0.08055006,-0.54738873,-0.21819392,-0.08500104,0.20849879,0.5911065,0.049079496,0.27355957,-0.17653571,-0.31660467,-0.01728758,0.23622866,0.19299284,-1.4379852,0.2754263,0.1815779,0.8198911,0.28848785,0.041419905,0.05314517,0.5719211,-0.40085548,0.08827103,0.34358922,0.014381547,-0.32012406,0.5016746,-0.7394964,0.45957863,-0.11332882,0.13681485,0.014937762,-0.105842926,0.45847988,1.0031916,-0.16193987,0.12138762,0.08664814,-0.32399607,-0.00055322226,-0.40292662,0.115269616,-0.5754814,-0.29947045,0.7367827,0.52213246,0.51293933,-0.3093107,0.047174808,0.16783933,-0.15139027,0.14516804,0.14417848,0.1674431,-0.26778615,-0.75529695,-0.10698898,0.6758029,0.22108306,0.14383604,0.15402037,-0.28847918,0.36058277,-0.04441903,-0.032515153,-0.07306182,-0.58600366,-0.1286314,-0.52201235,-0.41205204,0.44774595,-0.27789986,0.07994052,0.23783775,0.05255331,-0.24765202,0.32560647,0.23445095,0.6733462,0.10307732,-0.04554956,-0.3824956,0.10826389,0.15790328,-0.20760213,-0.3487224,-0.18401247,0.24698299,-0.59382474,0.25868335,-0.12919734,-0.28644818,0.051073942,0.0015762687,0.13808337,0.4939422,-0.038424633,-0.033892337,0.07788617,-0.12477328,-0.29930007,-0.10807807,0.03987032,0.2689786,0.26466724,-0.17090143,-0.10441758,-0.1879666,-0.21208252,0.34901682,0.056816358,0.48771033,0.61887383,0.309487,-0.2781607,-0.036902048,0.3353618,0.6075217,-0.19399418,-0.0542952,-0.31237447,-0.32393357,-0.22861685,0.17644635,-0.11325122,0.23991632,0.08458308,-0.38545695,0.9568274,-0.067372575,1.2773402,-0.023804452,-0.42951155,0.027930435,0.37183216,-0.12244091,0.014511967,-0.33105117,0.98434705,0.5063817,0.042331148,-0.10472382,-0.39883745,-0.04506452,0.03572259,-0.29114512,-0.16661929,-0.0750432,-0.513033,-0.23811641,0.1393902,0.17258306,0.08787656,-0.06664595,0.18151648,0.24960075,0.025400344,0.17618497,-0.54718024,0.007841524,0.13418885,0.49632505,-0.067813314,0.11318391,-0.49982542,0.40694767,-0.48856595,-0.0033245205,-0.2786744,0.2440645,-0.11778244,-0.1752638,0.2656808,-0.16863617,0.3138806,-0.4159251,-0.19746472,-0.26557893,0.4832675,-0.07942849,-0.15535119,0.5170497,-0.24541087,0.11900927,0.07926772,0.48967022,1.0704771,-0.32441208,0.00668298,0.22108212,-0.3406685,-0.6534247,0.24099733,-0.4218236,0.22603635,-0.002916641,-0.15713698,-0.4332369,0.39571106,0.17098404,0.23846075,-0.030878842,-0.50561434,-0.04633189,0.29431263,-0.32682896,-0.16032107,-0.19794963,0.2392995,0.4923296,-0.29426283,-0.39124677,-0.049452607,0.41742185,-0.10751017,-0.54185766,-0.018852798,-0.42865822,0.27710325,0.14145678,-0.36472923,-0.08299112,-0.10293861,-0.4552888,0.03154315,0.40306422,-0.27876323,0.03409876,-0.3221835,-0.32064036,0.9550243,-0.21897475,0.28012067,-0.48391145,-0.538034,-0.7825328,-0.33292875,0.1327269,0.24256249,-0.050371516,-0.5951418,-0.042940576,-0.09753812,-0.510817,-0.0024527828,-0.37629744,0.52118737,0.113751456,0.36723274,-0.18841067,-0.77401733,0.2393838,0.06625556,-0.11916794,-0.59431994,0.5048526,0.06647858,0.9353604,0.22311006,0.26231685,0.3027766,-0.51800394,-0.21000725,-0.0025713763,-0.07461105,-0.95414704,-0.176524 +762,0.42374402,-0.33724806,-0.24028756,-0.09289405,-0.41463968,0.10973984,-0.29759604,0.1534936,0.22734848,-0.37090698,-0.09624693,-0.09664257,0.0005299803,0.32942313,-0.19704278,-0.5337596,-0.094299376,0.08093535,-0.66120493,0.5674571,-0.53193855,0.3930897,0.1576555,0.18024242,0.17796157,0.39349097,0.3403284,0.04048255,-0.2937675,-0.095124826,-0.13305397,0.21684587,-0.51654446,0.18200383,-0.22326303,-0.4571577,0.04674176,-0.42048508,-0.1394408,-0.64583516,0.15822057,-1.0091436,0.47316957,-0.19373831,-0.052087437,0.14913712,0.32927543,0.40483394,-0.27216995,0.1102418,0.1875475,-0.118539676,-0.1980435,-0.29370332,-0.07689838,-0.39463073,-0.40362743,0.0011087973,-0.5765499,-0.37397864,-0.21709028,0.17733867,-0.24005702,0.118093275,-0.032783233,0.34718904,-0.29235798,-0.036531102,0.27966046,-0.11941153,0.27561188,-0.63390535,-0.12686327,-0.10352731,0.39563733,-0.11558264,-0.1295849,0.47371203,0.30282086,0.42611948,0.22700895,-0.3304297,-0.25598323,-0.1641425,0.11975559,0.33861452,-0.26043212,-0.3022997,-0.26199576,0.08179395,0.34687102,0.33907276,0.16684501,-0.17378142,0.11346856,0.017923016,-0.17614552,0.48748165,0.43883893,-0.27420235,-0.30049896,0.2869016,0.48342866,-0.052700613,-0.24068363,-0.13233076,-0.05028647,-0.4760866,-0.19629338,0.24741004,0.018534916,0.43917704,-0.092117146,0.10491943,0.6906216,-0.20419076,0.00587406,-0.18132384,0.036053345,-0.20501226,-0.20100647,-0.18747431,0.24516328,-0.5970209,-0.044897582,-0.35440257,0.6142515,0.115596786,-0.8106011,0.3528819,-0.48546553,0.11165319,-0.067961566,0.3673016,0.646703,0.41947982,0.19862698,0.6719162,-0.2539404,0.11514275,-0.21244314,-0.29410803,-0.12052308,-0.338182,0.16572772,-0.51394856,0.18961884,-0.048608672,0.045389183,0.07296538,0.31328914,-0.44730702,-0.19078963,0.24065067,0.72209686,-0.32293332,-0.045750126,0.7599362,1.0713757,1.0376842,0.021065919,1.1160469,0.47245333,-0.115832634,0.071026474,-0.21237186,-0.44386834,0.1267513,0.47860932,-0.05097551,0.22371255,-0.10076207,-0.054385718,0.18120094,-0.33930728,-0.017933026,-0.052358042,0.33781487,0.2219925,-0.025153747,-0.4104002,-0.13566221,-0.06235785,-0.06742299,0.13110106,0.17444763,-0.12169234,0.40310246,0.06240488,1.3351392,-0.10090707,0.09110129,0.032690097,0.42565632,0.27918437,-0.21467894,0.025768656,0.18243098,0.19232346,-0.080239154,-0.4918107,0.056015793,-0.32529068,-0.4108293,-0.123048745,-0.335899,-0.1187326,0.1238881,-0.327924,-0.16262683,-0.04761466,-0.24794376,0.41671035,-2.8563137,-0.28796363,-0.109047554,0.25218153,-0.38056067,-0.26435435,-0.060359843,-0.61452204,0.425224,0.27430022,0.425098,-0.5551115,0.4201274,0.436422,-0.5927364,-0.11549136,-0.66132027,-0.03143712,-0.113527566,0.45710197,-0.083151676,-0.17921811,-0.058046773,0.21592125,0.58268553,0.09833524,0.10122498,0.5035273,0.3291,0.15750267,0.5762065,0.061172392,0.51444423,-0.44549033,-0.23558041,0.43915832,-0.24600495,0.11787951,-0.028025016,0.11992933,0.5529824,-0.45753494,-0.7844405,-0.6816264,-0.37233254,1.0898095,-0.24999237,-0.4681107,0.04725443,-0.020390056,-0.106075205,0.052577093,0.3603952,-0.0709258,0.22329083,-0.6461626,0.18651898,-0.021816142,0.0321387,-0.032127935,0.007541241,-0.46543086,0.49380827,-0.06169644,0.44929767,0.2763321,0.31631988,-0.27655652,-0.32348478,0.049657457,1.0042722,0.402073,-0.009449717,-0.076395795,-0.32589805,-0.18358429,-0.21664721,0.17565167,0.27502435,0.6276857,-0.0061983354,0.11876917,0.35596332,-0.16491969,0.11155309,-0.0121173505,-0.19617036,-0.111066364,0.19091594,0.4709991,0.53212345,0.007492763,0.511117,-0.2563667,0.27546215,0.024909452,-0.4874944,0.63960266,0.6135269,-0.13428223,-0.094821885,0.50309235,0.58188915,-0.33025107,0.48244053,-0.6050942,-0.31601676,0.608774,-0.27694425,-0.41836968,0.08321513,-0.2782333,0.1809418,-0.8072115,0.27476665,-0.29179865,-0.25055397,-0.5557133,-0.10836944,-3.2652805,0.1651677,-0.031056218,-0.17156783,-0.08438415,-0.21401499,0.26464775,-0.6575124,-0.5110687,0.23989335,0.04525316,0.6226266,-0.03044631,0.15735567,-0.2111516,-0.10402419,-0.1340001,0.30874014,-0.017538056,0.19052395,-0.20516175,-0.4260016,0.061704524,-0.1338616,-0.57249045,0.16845363,-0.47199357,-0.40568423,-0.116286226,-0.5161707,-0.3427304,0.50212693,-0.31783617,0.031466573,-0.23359591,0.056530833,-0.15776254,0.11820026,0.11068213,0.2306764,0.2733058,-0.11416215,0.047111712,-0.37378052,0.39880317,0.08511551,0.26367617,0.26976413,-0.08654095,0.16118383,0.38518435,0.54898024,-0.11718655,0.8461824,0.2832049,-0.056310564,0.24601814,-0.28514054,-0.19776925,-0.68340987,-0.34446636,-0.146895,-0.33517757,-0.4910104,0.049437806,-0.25829425,-0.713604,0.7160468,-0.026712835,0.40881482,-0.11655891,0.24206743,0.36223292,-0.23252124,0.002390515,-0.08569841,-0.082271434,-0.482938,-0.36237407,-0.7025631,-0.52593946,0.042122114,0.7919017,-0.18108311,0.058585607,-0.048139464,-0.17069137,0.1258632,0.087148614,0.0001342725,0.2602934,0.3940134,0.09778757,-0.6774614,0.34273988,0.023374423,-0.043434687,-0.3961077,0.20299588,0.66479564,-0.49617767,0.431762,0.37848625,-0.0032242257,-0.09858569,-0.53475475,-0.17085794,-0.0131099,-0.27913898,0.42442796,0.15612583,-0.8072314,0.5886347,0.21988826,-0.49113497,-0.735403,0.33899707,0.16785796,-0.17287245,0.03669767,0.23452096,0.3008383,-0.10130944,-0.17253229,0.18707526,-0.4777997,0.26876742,0.08180911,0.08103188,0.3817511,-0.07729533,-0.44301778,-0.6837723,-0.048415985,-0.38672993,-0.22689506,0.29034567,-0.076851904,-0.07044285,0.28117234,-0.058349706,0.4179901,-0.23862174,0.14800197,0.0710326,-0.34430906,0.23409186,0.39918208,0.40827942,-0.38524073,0.53221256,0.035597414,-0.13429624,-0.01577083,-0.10849781,0.3926818,0.15737838,0.122160874,0.0059954785,-0.26011288,0.35389066,0.4407273,0.1949311,0.35379684,0.19496365,-0.20277315,0.50312024,0.029349314,0.074749984,0.0100018345,-0.36796725,-0.061409995,-0.06565364,0.011894245,0.36832547,0.24155812,0.40859544,0.055850707,-0.14651126,-0.061255924,0.039025024,-0.14708437,-0.9991597,0.21435344,0.12648654,0.8197746,0.5580829,-0.008662611,-0.065035395,0.6736506,-0.36416432,0.07701499,0.42739317,-0.08535384,-0.42537352,0.7319307,-0.5164988,0.37238735,-0.121891215,-0.04661129,-0.024353694,0.15472296,0.31719327,0.79968476,-0.17513856,0.14037271,0.015376842,-0.19139026,0.04929713,-0.2323321,0.07672152,-0.3027618,-0.3220005,0.63705325,0.18687803,0.37868682,-0.11871248,-0.07276867,0.0751602,-0.2237936,0.21437278,0.03549964,-0.014946334,0.02593942,-0.4079786,-0.32243955,0.49200606,0.14965217,0.3391117,-0.13470548,-0.25599042,-0.014218569,-0.046328887,-0.097885445,0.056804657,-0.6013063,0.07846662,-0.15624188,-0.3848335,0.4558913,-0.2281291,0.03402859,0.12156916,0.043717057,-0.090206906,0.031231739,0.2803988,0.6918062,0.006901134,-0.32801217,-0.13654424,-0.017919669,0.25848264,-0.19832101,0.19379014,-0.17820598,0.04083294,-0.7490116,0.6435014,-0.14959015,-0.33730033,0.31097934,-0.17189795,-0.036106072,0.5069144,-0.07915853,-0.0021528602,0.1615148,-0.029571164,-0.4098786,-0.1657367,-0.23098992,0.1802575,0.23530744,0.020286262,-0.07566948,-0.17497623,-0.014036983,0.5859479,0.033851966,0.31577605,0.14085525,0.099355295,-0.3267467,0.17137754,0.18170226,0.31552416,0.07376561,0.052053057,-0.3849415,-0.32733864,-0.3000908,0.17127241,-0.00884771,0.12003994,-0.019470394,-0.50141644,0.8277486,-0.21531434,1.0706545,0.030562578,-0.3900048,-0.03119966,0.43896025,-0.23230758,-0.015474964,-0.30716935,0.84623444,0.6098928,0.029081374,0.008359853,-0.52641886,-0.16591746,0.3307246,-0.3559427,-0.118170455,-0.07820937,-0.40831023,-0.58717334,0.16349413,0.17967632,0.06962771,-0.10987899,0.0037461668,0.117739454,0.14252606,0.4130914,-0.54521465,-0.2857371,0.2901808,0.29715815,-0.12720284,0.21850227,-0.413601,0.35311872,-0.6946279,0.17480311,-0.2805779,0.07717449,-0.16996628,-0.21877387,0.08577429,-0.003580939,0.3341937,-0.23026316,-0.5704889,-0.043076515,0.46159655,-0.054434493,0.062634826,0.5862301,-0.22939274,0.078559786,0.015019428,0.46136683,1.1987906,-0.2747512,0.047236778,0.320604,-0.37371248,-0.52814984,0.42682582,-0.21369983,0.052919406,-0.07772009,-0.31969735,-0.38164425,0.19500704,0.30452377,0.111973464,0.015610501,-0.43285096,-0.11263037,0.29945797,-0.32369882,-0.26086697,-0.20176776,0.27226624,0.62465787,-0.31169108,-0.13016227,0.019081771,0.40632045,-0.26083878,-0.39642787,-0.14089292,-0.10862355,0.37993655,0.22204143,-0.14215225,-0.15010172,0.15332863,-0.45683208,-0.12528908,0.15132296,-0.40419042,-0.058639813,-0.28266728,-0.014021274,0.81299824,-0.064900145,0.077445745,-0.56736124,-0.4350809,-0.84394896,-0.4863636,0.19715719,0.13607636,0.077600084,-0.36849558,0.0600182,-0.13039558,-0.20256555,0.14422141,-0.45623106,0.3173564,0.17703766,0.41510788,-0.30116707,-0.6931578,0.08027474,0.17970784,-0.007320989,-0.41388413,0.6375737,-0.066583484,0.8325795,0.095526814,-0.105980456,0.09779638,-0.4253137,0.12163213,-0.29866248,-0.16244392,-0.6376736,0.09525204 +763,0.29015228,-0.098057285,-0.55431783,0.0002502203,-0.12413079,0.04092424,-0.13742177,0.39552116,0.32730952,-0.23131265,0.028428646,-0.09097253,-0.036870304,0.17633584,-0.06375677,-0.4267107,0.099412076,-0.008301882,-0.46355093,0.5675625,-0.38046157,0.23592854,-0.17916924,0.46064356,0.117386274,0.19998361,0.048100058,0.13607444,0.030026145,-0.30000624,0.03629938,0.40716758,-0.5884124,0.31807432,-0.10036784,-0.16832985,-0.034030672,-0.41061264,-0.45513546,-0.78501713,0.18792123,-0.5403168,0.48151907,0.0006123225,-0.29714185,0.09895758,0.11796986,0.108710974,-0.11606029,-0.14185813,0.08188723,-0.18060312,-0.04690492,-0.3113571,-0.1688229,-0.33468053,-0.5257917,-0.03678316,-0.45950565,-0.033188716,-0.41398796,0.20501947,-0.41032627,-0.1416108,-0.19149698,0.5523471,-0.3770823,0.27504072,0.1379746,-0.15964495,0.15408853,-0.6965708,-0.243433,-0.09439442,0.13381548,-0.094474874,-0.38653752,0.35959733,0.31659207,0.30383044,-0.0035506983,-0.07977023,-0.32517463,-0.057658445,0.02017091,0.4207157,-0.18305896,-0.54875827,-0.14272645,-0.0014905533,0.11378999,0.29259196,0.019810796,-0.30796215,-0.100312196,0.10467809,-0.23009835,0.59036624,0.6050937,-0.21848351,-0.2715685,0.22867604,0.342972,0.38844126,-0.13013862,0.019282715,-0.01375914,-0.6155969,-0.2144884,0.048386525,-0.040108766,0.43118432,-0.042492915,0.28724143,0.69613254,-0.15824512,-0.31295034,0.20371078,0.0847472,0.097190656,-0.33739492,-0.07672512,0.13265502,-0.3686313,0.18683742,-0.045778133,0.7123635,0.14721319,-0.62126607,0.3553115,-0.48913682,0.10251915,0.018281123,0.58906764,0.8225356,0.4888167,0.40626782,0.73921984,-0.25065547,0.08560468,-0.13236217,-0.33128172,0.013016661,-0.15073362,-0.010790308,-0.41939458,-0.11094194,-0.07249306,-0.01241682,0.17552692,0.5518401,-0.56962144,-0.21473286,0.074920624,0.81910974,-0.13436626,-0.08037555,0.6723823,0.9949828,0.975515,0.025343288,1.0449262,0.013613205,-0.06885772,0.13713087,-0.13336986,-0.6973599,0.3410037,0.20461203,0.07355166,0.05828185,0.008720288,-0.18379946,0.386375,-0.23420066,-0.22873642,-0.08477557,0.5054743,0.20067517,-0.17749906,-0.14937371,-0.27485868,-0.0442195,0.108570956,-0.0076775867,0.24028839,-0.21999566,0.39180842,0.06339627,1.5273678,-0.013536179,0.10428653,0.09557042,0.62215006,0.35015932,-0.1974249,0.09158022,0.27611256,0.13787904,0.20840819,-0.4814939,0.14324889,-0.21251869,-0.43615964,-0.08063305,-0.34494808,-0.1985775,0.03545412,-0.36482006,-0.13478817,-0.1728933,-0.22965214,0.5170704,-2.8786025,-0.1657407,-0.0072148284,0.40528324,-0.11470444,-0.31646326,-0.13240817,-0.48916575,0.47276175,0.19789194,0.5696768,-0.624305,0.16969019,0.48987758,-0.50557655,-0.17660253,-0.4468184,0.03353445,0.11073799,0.36398092,-0.03742973,-0.06883524,-0.062057503,0.01329213,0.4933922,0.037810914,0.17748626,0.33144102,0.33399716,-0.18567546,0.38935286,-0.07555493,0.44932187,-0.1920241,-0.26123294,0.4001365,-0.3893989,0.3581058,-0.16941123,0.024454674,0.539288,-0.39740834,-0.9571127,-0.39893335,-0.12366519,1.188652,-0.06079391,-0.6242247,0.27395782,-0.5987143,-0.24065046,-0.21312192,0.52354884,-0.14750977,-0.13667418,-0.52861285,0.08535733,-0.104075685,0.24433313,-0.048656963,-0.13143508,-0.3592269,0.64008975,-0.051652785,0.3219995,0.30638275,0.09479694,-0.5580473,-0.5350145,0.05199313,0.70243365,0.5247703,0.09893857,-0.18601684,-0.1544453,-0.18658523,-0.13618492,0.095954165,0.9154707,0.44729412,-0.07927014,0.2268412,0.32571873,-0.008060757,-0.015347784,-0.33856937,-0.17660001,-0.27858916,0.1462185,0.690922,0.6555888,-0.06397737,0.52540296,0.1116313,0.04840299,-0.14347933,-0.6016535,0.44698474,1.1973112,-0.20992248,-0.2939249,0.4075309,0.22760276,-0.24541989,0.24723658,-0.3682963,-0.3452961,0.5051296,-0.18270487,-0.47915572,0.26928127,-0.26825047,-0.10129724,-0.4390727,0.25317734,-0.4377135,-0.75631684,-0.5435316,-0.14594698,-3.3582451,0.18400006,-0.35007972,-0.14471093,-0.2930661,-0.13055709,0.07821624,-0.4156738,-0.45813674,0.116638586,0.21604054,0.6564297,-0.24858488,-0.0347023,-0.28340298,-0.3777613,-0.32905433,0.2013902,0.30725285,0.39825335,-0.087318495,-0.31086853,-0.05426156,0.092282996,-0.51160145,0.04370486,-0.36974335,-0.530616,-0.15500452,-0.5378733,-0.35838884,0.7742111,-0.24548493,0.032609668,-0.253263,0.03378775,0.01767181,0.24088942,0.11358503,0.1839829,0.013427396,-0.15177883,0.026688462,-0.24219881,0.1561415,-0.07993818,0.41695264,0.3500748,-0.016895274,0.1891525,0.39980558,0.5858869,-0.022167752,0.95543313,0.3388464,0.0040438,0.36600035,-0.19735989,-0.3599538,-0.47680703,-0.2402456,0.14196303,-0.41381836,-0.33162132,-0.0579507,-0.27541772,-0.66340166,0.48706284,-0.0126345875,0.08329092,-0.016972471,0.32966477,0.6073074,-0.17689155,-0.07743318,-0.11248942,-0.08784902,-0.44976488,-0.32556495,-0.62948394,-0.6035737,0.09037523,0.75597095,-0.3860441,0.026623344,0.043591198,-0.247601,-0.085073106,0.12435754,0.03407344,0.09660545,0.3467944,-0.08564312,-0.5427338,0.40619868,-0.22345985,-0.16345866,-0.64557356,0.44910938,0.6870011,-0.6104729,0.68123394,0.24595243,0.114257984,-0.28594366,-0.62689346,-0.04162926,-0.09626205,-0.2690071,0.45168132,0.2244311,-0.96039677,0.48508367,0.30939806,-0.24940707,-0.62362653,0.49937162,-0.16671322,-0.33604228,-0.09997185,0.37505844,0.25413835,-0.04104079,-0.09201605,0.4553612,-0.29774055,0.31994683,0.080834195,-0.20137654,0.3347597,-0.1429046,-0.2314539,-0.65659744,0.005930543,-0.4553042,-0.4934026,0.20643844,0.12230252,-0.0580951,0.10671366,0.05138322,0.47001114,-0.21154627,0.18586062,-0.1227953,-0.29293868,0.27588025,0.54661757,0.6594443,-0.238525,0.61100316,0.026888167,0.008368538,0.2177942,0.24593481,0.35583168,0.012131312,0.5158058,-0.019552104,-0.114663266,0.15123263,0.9222438,0.09967308,0.4953776,-0.2662774,0.024198364,0.1819658,0.018366843,0.28370634,-0.12408399,-0.48662332,-0.006913664,-0.24681582,0.18109293,0.53093415,0.19465177,0.19249602,-0.1292359,-0.26820955,0.019929789,0.38347426,0.020680774,-1.1284859,0.33594677,0.22508997,0.9779171,0.32609117,0.17079467,-0.035302155,0.59229416,-0.040258374,0.019343829,0.2394791,0.20270975,-0.44267273,0.44571155,-0.81133705,0.5369737,0.015727313,-0.07445569,0.10835513,-0.0818081,0.40813664,0.83377445,-0.23996454,-0.18651262,-0.017766993,-0.3183069,0.18548292,-0.4600479,0.113496535,-0.47317684,-0.47238427,0.60999554,0.73338324,0.19443804,-0.32995,-0.04717796,0.016248971,-0.24557748,0.1008022,-0.15994032,0.10531134,-0.27099138,-0.5784684,-0.1479873,0.5077072,-0.02533744,0.21237157,0.044504162,0.07224546,0.28890312,-0.051637784,0.09996616,-0.14457822,-0.5903103,0.18384483,-0.3696615,-0.4158421,0.48227355,-0.32556075,0.21811524,0.27129757,0.12557247,-0.26367277,0.55115664,0.016074507,0.64394075,-0.22988968,0.016817868,-0.5093262,0.09440296,0.107599325,-0.2167075,-0.10314191,-0.15707825,-0.08195244,-0.58732694,0.28422752,-0.14768693,-0.18631461,-0.015675513,-0.06225698,-0.026597623,0.51004946,0.02160577,-0.15167433,0.04714985,-0.30150303,-0.27141014,-0.08408436,0.09603048,0.2567685,0.18125218,-0.111306354,-0.029027754,-0.21227033,-0.12946399,0.15670888,0.009334342,0.21920513,0.3384201,0.31405583,-0.27461687,-0.07326223,0.2162775,0.7629421,0.048932675,0.006470688,-0.24315509,-0.48007146,-0.39787763,0.08154648,-0.12185051,0.34451038,-0.06408707,-0.40118954,0.59963745,-0.11602078,0.97930205,-0.010652618,-0.25410885,0.09195529,0.4938093,-0.10577822,-0.048091736,-0.32481003,0.8433141,0.38592193,-0.11067135,-0.104930624,-0.17253295,0.057529174,0.29212043,-0.22546549,-0.17717332,-0.1038547,-0.6375032,-0.027831614,0.15155132,0.25258896,-0.04216801,-0.17207582,-0.17916109,0.3790593,0.06468817,0.19014685,-0.49933988,-0.08318333,0.23768291,0.23249243,-0.045972038,0.14758058,-0.3851091,0.31888255,-0.48117974,0.14978644,-0.13224837,0.26344237,-0.31892815,-0.24158093,0.3001939,-0.00538282,0.34603444,-0.2219155,-0.23566471,-0.28925756,0.19985715,0.2580609,0.13584958,0.5335985,-0.28656903,-0.06570644,0.15984544,0.4800962,1.0255929,-0.236378,-0.29232755,0.25131798,-0.44933563,-0.58143604,0.29824695,-0.42549384,-0.018772315,-0.021267109,0.026360543,-0.37387636,0.26485935,0.17181106,0.14258105,0.025824431,-0.8194277,-0.07337894,0.039404657,-0.2958154,-0.20366076,-0.36758476,0.11995812,0.7774258,-0.22506665,-0.2787698,0.14848597,0.31935802,-0.09961296,-0.5340411,0.10922933,-0.4294313,0.21049172,-0.13568671,-0.40832633,-0.11177407,-0.025100088,-0.54362935,0.09215507,0.053133387,-0.39278793,0.04498995,-0.020897234,-0.107347526,0.778061,-0.4114533,0.4584116,-0.29020363,-0.5314594,-0.554508,-0.17829838,0.36854538,0.07782138,-0.022330364,-0.6076481,-0.16579638,-0.10064163,-0.28790295,-0.1556744,-0.40802008,0.35298872,0.0025118133,0.20095305,-0.21146645,-0.84148777,0.28174174,0.12876157,-0.005317418,-0.557069,0.53678215,-0.17519374,0.58803004,0.14237906,-0.03815764,0.23536192,-0.39876634,0.047657855,-0.15829028,-0.19490398,-0.54403526,0.06711792 +764,0.5501302,-0.29499832,-0.7997012,-0.059677105,-0.3441426,-0.08621061,-0.23474129,0.76438886,0.36146072,-0.55728656,-0.27155027,-0.05562955,-0.193349,0.49650452,-0.30901578,-0.36763892,-0.026831975,0.23733337,-0.60443956,0.5240407,-0.2830086,0.23704989,0.108830534,0.6543435,0.4554721,0.047202136,0.016866246,0.22875535,-0.14519626,-0.44345236,0.040270906,0.28527248,-0.76660275,0.28470194,-0.39467096,-0.702044,-0.14337264,-0.7215176,-0.29291028,-1.0028026,0.3218408,-1.00397,0.7814545,-0.07026499,-0.48209378,0.023490084,0.18376203,0.3293096,0.012532148,-0.120108806,0.16778977,-0.10391333,-0.15220888,-0.14432655,-0.33282706,-0.19175208,-0.60244215,0.074847676,-0.33545038,0.17077316,-0.1761452,0.25431776,-0.14044806,0.27900222,-0.07578056,0.48809013,-0.36074793,0.05211374,0.087637894,-0.13394862,0.35053065,-0.67313856,-0.29330215,-0.30511823,0.2859947,-0.34741998,-0.5442261,0.4513453,0.1697069,0.5377274,-0.074371405,-0.21181774,-0.33824828,0.17247152,-0.14692664,0.36030185,-0.5385136,-0.43018675,-0.1677471,-0.01657268,0.7930533,0.21427192,0.1458927,-0.33437046,0.027183488,-0.18666661,-0.24805407,0.5268937,0.43584898,-0.24164647,0.00045109168,0.118403636,0.46727744,0.41015795,-0.14999889,0.11898834,0.024090732,-0.69065,-0.17448853,-0.06806572,-0.10199205,0.47956872,-0.035829287,0.22207116,0.5215857,-0.2674044,-0.22809722,0.36076674,0.18859641,-0.1518478,-0.24502082,-0.605619,0.5044497,-0.5570338,0.19367708,-0.20310418,0.65767485,0.17553307,-0.8836977,0.16823761,-0.61758405,-0.03250854,-0.0039984137,0.38076723,0.82967305,0.78426033,0.25632954,0.71347004,-0.28634295,0.058513153,-0.16238277,-0.06685401,0.11183307,-0.3625894,-0.29963717,-0.3996934,-0.1239659,-0.2931452,-0.27420542,0.30925536,0.54442215,-0.55554754,-0.19499142,0.10620418,0.5623714,-0.21954036,-0.018079937,0.98936033,0.93984884,1.0404358,0.1354965,1.2343636,0.042290032,-0.15807004,0.10750049,0.33805636,-1.0199047,0.46801034,0.454398,-0.79332256,0.41488075,0.009837349,0.07796341,0.2652907,-0.65821373,-0.16771561,-0.10507857,0.037196305,-0.04569983,-0.09948397,-0.44891474,-0.42848125,0.079283014,0.19795358,-0.09709387,0.3776478,-0.2979356,0.6623276,0.11023531,1.425663,-0.08868394,-0.07491142,0.0750185,0.5307967,0.15487625,-0.19767638,-0.31771705,-0.01146848,0.28247342,0.2264343,-0.48413542,-0.059508875,-0.16095008,-0.3381894,-0.18758738,-0.22968848,-0.2585764,-0.28357628,-0.3914174,-0.49873948,-0.06663352,-0.3543161,0.24364243,-2.19289,-0.20663603,-0.06847447,0.2982538,-0.24248946,-0.4910793,-0.37835148,-0.5066617,0.6158144,0.26399973,0.55910623,-0.5331251,0.28928486,0.4460517,-0.7139657,-0.09762754,-0.64990854,-0.031704288,0.09774315,0.18951863,0.003728124,-0.20979977,0.0010097921,0.07859378,0.5377485,0.015725533,0.0072744675,0.43847993,0.40700102,-0.058556315,0.471048,-0.23404486,0.5417124,-0.75463194,-0.38769293,0.47291613,-0.39667702,0.028440028,-0.13778898,0.13886596,0.6655836,-0.8188768,-1.0703505,-0.7428951,0.055443767,1.3278145,-0.10307864,-0.5439237,0.26292804,-0.59991604,-0.2204758,0.07606877,0.5340732,-0.27610898,0.078830354,-0.8359776,-0.2621806,-0.014264159,0.2220825,-0.04687147,-0.073681325,-0.42995152,0.48318422,-0.038374294,0.46932364,0.40189353,0.00047809383,-0.4686954,-0.65051717,0.21252258,1.0741137,0.50137895,0.290375,-0.30409357,0.069569536,-0.4831659,0.026136832,0.04229098,0.5506889,0.75451237,-0.12170557,0.054617748,0.23207204,0.11294036,0.02732479,-0.1865433,-0.32225862,-0.3537087,0.17885494,0.82436544,0.7252714,0.15402777,0.41404667,-0.080177106,0.5159748,-0.051180985,-0.48064947,0.5566165,1.0420967,-0.2171281,-0.44913885,0.88444257,0.43827263,-0.3112111,0.6489646,-0.50147194,-0.5756731,0.31403553,0.018921463,-0.553538,0.20156641,-0.40266943,0.24810743,-0.7269397,0.2673119,-0.40530238,-0.50447357,-0.63865125,-0.058372963,-2.2149317,0.27496895,-0.18959297,-0.12355975,-0.19565707,-0.44069925,0.3834313,-0.42703643,-0.91699165,0.052734118,0.023209816,0.9571964,-0.12999979,-0.03218317,0.0048758336,-0.44066295,-0.37691298,0.03259878,0.49347094,0.39691043,-0.009317249,-0.51942635,-0.23677981,-0.21622209,-0.4493638,-0.19584936,-0.7831809,-0.5500354,-0.10643947,-0.70911145,-0.2218471,0.6961019,-0.41962805,-0.00066748384,-0.121365346,0.082564995,0.05250467,0.28278244,-0.1898594,0.17541791,0.15793955,-0.18862696,0.22352688,-0.0560627,0.21765478,0.12271273,0.22895563,0.13641413,-0.28153107,0.5155503,0.7052476,1.1105012,-0.32448444,1.2354244,0.58713627,-0.031479508,0.14746954,-0.24690701,-0.6353645,-0.5939238,0.105001956,0.12913884,-0.5019325,-0.05249126,0.25616026,-0.3781731,-1.0146612,0.98494226,-0.05623087,-0.047128458,0.10031799,0.21457963,0.4095678,-0.35095406,-0.08765599,-0.13413464,-0.06308449,-0.46221042,-0.37079707,-0.57467633,-0.5487415,-0.3944908,1.4543427,-0.071038686,0.26298723,0.4046283,-0.07583956,0.27031744,0.1563914,-0.12299657,0.13460985,0.64877135,0.0030022338,-0.7382223,0.19878198,-0.20279115,-0.09488953,-0.54260063,0.34161142,0.6844644,-0.7381808,0.35292864,0.39303717,-0.03865764,-0.34671748,-0.5197199,-0.026640834,-0.10469089,-0.16457398,0.5292551,0.40365848,-0.7330305,0.50956225,0.46656606,-0.26896468,-0.9163387,0.4223604,-0.007909159,-0.16072784,-0.0984625,0.51638514,0.073502555,-0.08429965,-0.16076614,0.23490544,-0.22248407,0.29402456,-0.047412544,-0.12598813,0.19109048,-0.3724636,-0.0567798,-0.9034144,0.27182028,-0.5322852,-0.38469735,0.35427317,-0.06774848,-0.016148796,0.24668671,0.17592971,0.330558,-0.31047782,0.037920844,-0.32915968,-0.46397948,0.5183525,0.53389233,0.679246,-0.42914763,0.6305919,0.061750934,-0.1127507,-0.026523957,-0.090503804,0.45347032,-0.2025553,0.32201096,0.01211441,-0.30961785,0.16017492,0.7575248,0.22453974,0.32845,-0.053771228,0.038631424,0.068710424,0.23171826,0.37773368,-0.040608395,-0.7514115,0.07326419,-0.34038082,-0.083862185,0.67048067,0.14855777,0.19934554,-0.17519695,-0.3763349,-0.07281908,-0.06432644,-0.03410892,-1.7433435,0.48407117,0.006243333,0.8072777,0.45965865,0.17155845,-0.061151113,0.8323403,-0.12362108,-0.025299996,0.4583355,0.07758749,-0.30205438,0.48201323,-0.626913,0.7070916,0.06506781,0.12621738,0.09585565,0.016728014,0.6243648,0.937376,-0.09539792,0.20294033,0.15951385,-0.35591945,0.09067183,-0.4560574,-0.09265137,-0.45412692,-0.29478624,0.9733178,0.42908776,0.4371269,-0.25253972,0.065261565,0.16098273,-0.23526911,0.18946779,-0.030186912,-0.02047042,-0.34855554,-0.544904,0.20815443,0.62272435,0.3470631,0.14014721,0.044618946,-0.1298242,0.3474461,0.014298022,0.017561093,-0.2860414,-0.83758765,-0.15520756,-0.7747695,-0.3152081,0.241229,-0.10872086,0.07439137,0.26734856,0.12945977,-0.31167036,0.6505943,0.17550169,0.7525108,-0.047542322,-0.22700869,-0.011938115,0.4049666,0.13392,-0.35285416,-0.1658533,-0.25987688,0.03396882,-0.42613852,0.31844124,-0.093079954,-0.420518,0.23281759,0.108994566,0.07172995,0.35023093,-0.17863327,-0.0015782863,0.075730756,0.09921395,-0.31273764,-0.53578013,-0.30335346,0.08565495,0.184936,-0.016817212,-0.19672269,-0.19234316,-0.09646685,0.59759414,-0.12209157,0.4827172,0.4846377,0.2246776,-0.43707874,0.042888712,0.11528752,0.81191325,-0.12825252,-0.2434137,-0.52821064,-0.22170217,-0.3445219,0.39215228,-0.06328387,0.30932793,0.15491062,-0.33357084,0.7244746,-0.0064231507,1.0817081,-0.13743386,-0.43744788,0.007959385,0.4012312,-0.13957553,-0.2209161,-0.3498484,0.95508987,0.40866053,-0.29847673,-0.16149853,-0.5188003,0.11251547,6.273389e-05,-0.3068424,-0.19593722,-0.20221746,-0.5595776,-0.21119677,0.26924,0.3915247,0.3299216,-0.24964742,0.31476125,0.41916394,0.005621677,0.09022536,-0.31506225,-0.16528983,0.4345202,0.34584093,-0.208824,-0.008790622,-0.5461722,0.27298692,-0.54221606,-0.054442823,-0.3552666,0.14899999,-0.2557125,-0.35282823,0.23959333,-0.023542449,0.2924941,-0.34842148,-0.18410747,-0.22242396,0.56072074,0.02131041,0.17744763,0.5526813,-0.24001892,0.0011756172,-0.11826936,0.48063818,0.8205004,-0.16002552,0.080815725,0.24335258,-0.14880936,-0.339612,0.3052958,-0.3976287,0.30737984,0.14086038,-0.13523532,-0.423422,0.22300048,0.19014077,0.05451094,-0.07816166,-0.93251467,-0.0075847507,0.37908304,-0.12866054,-0.11712649,-0.51841503,-0.014357935,0.29414544,-0.054249804,-0.53564364,0.23343949,0.34232214,-0.046937782,-0.44723102,-0.08546666,-0.31770194,0.16364808,0.21480648,-0.5655479,-0.12104043,-0.05743842,-0.6434229,0.042667832,0.120687984,-0.40468845,0.019746976,-0.3587862,0.11704421,0.98842573,-0.19905104,0.40443566,-0.1307165,-0.6245394,-1.0176816,-0.05978049,0.30053118,0.3902811,-0.01917255,-0.88141614,-0.056628466,-0.3169249,-0.578819,0.074375205,-0.14151973,0.5289805,0.19490309,0.81411797,-0.2778664,-0.7270453,0.5257749,-0.015662244,-0.095504306,-0.32587793,0.4188868,0.23180483,0.85839844,0.02266545,0.04572451,0.38057676,-0.6645851,-0.094209455,-0.07276412,-0.11756014,-0.54394865,0.023466945 +765,0.28957883,0.05981207,-0.5790091,-0.113596566,-0.24404097,0.123570636,-0.2640513,0.23773803,0.15051568,-0.498203,0.05764932,-0.034993373,-0.07723654,0.1271986,-0.15427719,-0.47560057,0.005765668,0.15974395,-0.43612283,0.4671324,-0.42523912,0.41231158,-0.01294423,0.25429738,-0.00060931063,0.20659213,0.31242937,-0.15707621,-0.12503806,-0.21049789,0.14295188,0.21103294,-0.6501011,0.33145285,-0.14080061,-0.32228646,0.102165036,-0.14465082,-0.3760798,-0.6074291,0.2607171,-0.7261052,0.5841786,0.017127922,-0.24852099,0.22675173,0.2164251,0.08776807,-0.09044429,-0.036203444,0.24035704,-0.33412173,-0.09859138,-0.3059792,-0.30526018,-0.42687613,-0.43976405,-0.025822898,-0.7027015,-0.19471233,-0.5108767,0.2550711,-0.3277552,-0.12090077,-0.19664529,0.48385242,-0.4191168,0.07878015,0.03967286,-0.2084042,0.45235157,-0.64660776,-0.22926058,-0.037730377,-0.08473718,-0.21429779,-0.09515225,0.30652508,0.028541273,0.35813013,0.014836992,-0.14593218,-0.21953018,-0.33718872,0.3321382,0.45324948,-0.10901884,-0.10840135,-0.17978384,-0.23743656,0.1540307,0.06860077,0.13233529,-0.3028153,0.039875925,0.021212956,-0.29273596,0.5448289,0.58736753,-0.11417959,-0.10488159,0.32792935,0.51347965,-0.01630843,-0.21958049,0.058142085,-0.0042574024,-0.37692928,-0.1746194,0.037623398,-0.08320226,0.4858809,-0.18620792,0.19807148,0.613107,-0.43789086,0.018292377,0.17219584,0.2161589,0.07207709,-0.2793588,-0.12518588,0.2912663,-0.6429443,-0.035425734,-0.19322695,0.7680026,-0.11443281,-0.539368,0.20572488,-0.47188392,-0.08394088,-0.041799907,0.6907166,0.37089235,0.50134814,0.15688904,0.7827396,-0.5038137,0.02653256,-0.10513284,-0.370182,0.068501905,-0.14357366,-0.022930013,-0.39071926,-0.16858992,0.07390288,0.18421543,-0.061549522,0.27605483,-0.3805341,-0.16520514,0.285181,0.79568326,-0.3335697,-0.005924042,0.6686513,1.2489841,0.87131226,0.049095254,1.0975822,0.08733182,-0.26151586,-0.23632516,0.0508789,-0.838851,0.30976942,0.17716534,-0.1177634,0.16064732,0.0388632,-0.09940515,0.22843991,-0.49265817,-0.10960116,-0.27170628,0.40548274,-0.038938206,-0.18822041,-0.44558212,-0.048390646,0.1850693,-0.10498647,0.15806249,0.14075713,-0.35502127,0.3463718,0.16511859,0.9973647,-0.16076498,0.08915418,0.21502747,0.3193471,0.22613342,-0.022966405,-0.006685457,0.42986912,0.2149835,0.24190167,-0.48571643,0.13900623,-0.13450824,-0.6348105,-0.24676065,-0.3831573,0.036540918,-0.18842788,-0.35798135,-0.21303985,-0.055323135,-0.5111994,0.29666618,-2.738459,-0.088490546,-0.040861428,0.30999246,-0.1894754,0.004365124,-0.010872304,-0.28732207,0.46528298,0.31246015,0.45352203,-0.40572062,0.29516056,0.6066489,-0.45148557,-0.1390798,-0.43684402,-0.088208795,-0.16789077,0.39707774,0.14242461,-0.04727894,-0.2593143,0.094089165,0.50097334,-0.19463225,0.2851756,0.3067859,0.33506647,-0.17188713,0.25934333,0.14150982,0.4952144,-0.5706709,-0.22688515,0.4477385,-0.4731726,0.04637495,-0.049483113,0.1643804,0.40785548,-0.30209565,-0.75101775,-0.52129596,-0.24699979,1.1807181,-0.29283118,-0.68970776,0.36262527,-0.07650242,-0.32212654,-0.055036757,0.38154358,-0.13620141,0.23164436,-0.71272177,0.18339227,-0.1671819,0.3816712,-0.04325332,0.10594208,-0.34185702,0.69288546,-0.05595193,0.49598965,0.41816753,0.27089572,-0.531521,-0.35394022,0.123418294,1.0812721,0.3580157,0.18020678,-0.21616559,-0.09910423,-0.113333166,-0.07063371,0.10534526,0.5810814,0.7704939,-0.028242495,0.19794372,0.35369855,0.025268389,0.022464741,0.021481803,-0.3159504,-0.13090204,0.054361846,0.53917897,0.47414938,-0.10614594,0.29704762,-0.11407779,0.43298492,-0.26525456,-0.484307,0.37548938,0.9148212,-0.17071986,-0.3744274,0.7213842,0.60552543,-0.42026687,0.5717769,-0.60693854,-0.570339,0.5355986,-0.18715155,-0.49090078,0.21492587,-0.35673103,0.13946632,-0.7728287,0.36941665,-0.30656567,-0.67491835,-0.37508562,-0.40814847,-2.8627198,0.09077897,-0.2314943,-0.19320123,-0.21338665,-0.061547227,0.22401263,-0.46891972,-0.46956512,-0.0049017943,0.12794067,0.6859264,-0.04125401,0.039712913,-0.27625346,-0.19091669,-0.15259454,0.31247792,0.14277928,0.033457994,-0.09979594,-0.49048594,-0.07795005,-0.17582604,-0.47856474,-0.008809609,-0.5426594,-0.37292483,-0.16652921,-0.44547027,-0.35342237,0.6547049,-0.37312824,0.02237398,-0.23844549,0.14214791,0.16164787,0.22053781,0.20700482,0.1640204,0.039377086,-0.09986774,-0.13451122,-0.22437344,0.4650354,0.13281788,0.3877167,0.6484451,-0.25232306,-0.03154386,0.47147474,0.440171,-0.044320207,0.9501026,0.21303497,-0.087482505,0.43277162,-0.19491675,-0.4186221,-0.743618,-0.2151492,0.09231232,-0.516278,-0.38741305,0.027249455,-0.2804629,-0.749059,0.65034294,-0.039165676,0.29569247,-0.17679584,0.41386834,0.22787596,-0.12040174,-0.26924115,-0.10675417,-0.12182383,-0.41178796,-0.38607693,-0.74704057,-0.38432047,-0.2750929,0.9460658,-0.14059302,0.07405735,0.12657045,-0.07723408,0.12354945,0.22424488,0.07418331,0.2664589,0.5857754,0.19390331,-0.6954053,0.49284163,-0.19242421,-0.11786711,-0.40944543,0.14042327,0.6554903,-0.58066887,0.38253814,0.45020023,0.18188848,-0.24494174,-0.4861457,-0.18725045,0.03616898,-0.1956981,0.5624954,0.18213168,-0.8946248,0.61956304,0.2064575,-0.3611715,-0.632501,0.54679614,-0.070821844,-0.16445124,-0.04799619,0.5421503,-0.14407791,-0.02276823,-0.09361776,0.1789757,-0.34419543,0.37193704,0.1919613,-0.138473,0.5471068,-0.21008204,-0.29666495,-0.6438212,-0.026650177,-0.44108123,-0.28440347,0.13977794,-0.18837608,-0.29825494,0.51231706,-0.16370709,0.5085191,-0.2233877,0.10215788,-0.117452964,-0.32355124,0.5044603,0.5376088,0.52898115,-0.4064083,0.6941589,0.0014759536,-0.20139244,-0.20226802,0.1399417,0.52817905,-0.041067105,0.5195976,-0.035210796,0.10667666,0.34624544,0.81258744,0.23477618,0.49214908,0.15818723,-0.18187109,0.2637274,0.026695682,0.2142977,0.069914065,-0.4768342,-0.08639296,-0.24472299,0.1824178,0.41648003,0.049910385,0.5852993,-0.1831082,-0.15047951,0.12666808,0.2374048,-0.12125761,-1.2978963,0.3506764,0.24095896,0.6971982,0.40292767,0.0967237,0.17087312,0.48493284,-0.19754384,0.100150846,0.24008171,0.078875616,-0.31253764,0.6804716,-0.5624681,0.3750925,-0.0978383,0.040322423,0.12889393,0.06356299,0.5533665,0.902962,-0.041962054,0.11569702,0.013322686,-0.3698681,0.33891994,-0.37149265,0.27985448,-0.29527187,-0.2572517,0.68672144,0.34248236,0.2275485,-0.20973961,-0.122136235,0.20315118,-0.16468287,0.31615874,0.034948062,0.01690999,-0.15149565,-0.47085357,-0.18216933,0.5138355,0.20568816,0.17004035,0.19628802,-0.08515713,0.29758623,-0.029467324,0.008977311,0.027958263,-0.4748363,-0.007946969,-0.14464161,-0.41165072,0.2785582,-0.49236104,0.18096831,0.18764126,-0.009896538,-0.5228016,0.17022562,0.3409625,0.47702697,0.059378553,-0.19634761,-0.21429966,0.055830445,0.17420173,-0.2142053,0.013718124,-0.38865042,0.11456603,-0.7188534,0.5083039,-0.29116604,-0.21403515,0.12639803,-0.3527048,-0.054489158,0.5292613,0.021150738,-0.11828498,-0.005551338,-0.14351353,-0.23115526,-0.2259588,-0.14378187,0.1813792,0.009933838,-0.10160392,-0.15030305,-0.050859135,-0.16482699,0.043084502,-0.007274968,0.2542829,0.27164403,0.07280149,-0.49244356,-0.03744697,-0.037497185,0.57085794,0.080645025,0.13165388,0.034591667,-0.413768,-0.20677778,0.24889874,-0.087761745,0.14002056,0.11697645,-0.318202,0.8639749,0.077307425,1.0752553,-0.00882457,-0.31949425,-0.0026822856,0.61383927,-0.12700711,-0.13782959,-0.34796,1.0528845,0.47673288,-0.15389778,-0.17528608,-0.35569075,0.063775904,0.010100858,-0.25402293,-0.35176754,-0.1918168,-0.67724526,-0.21076237,0.1860212,0.35082373,-0.077329636,-0.06492092,-0.08088459,0.22926116,0.080261454,0.26588756,-0.57056105,0.103638954,0.32256603,0.16847466,-0.03698533,0.10884552,-0.3845952,0.3653023,-0.6996768,0.123715796,-0.041665625,0.11482771,-0.26745313,-0.23299201,0.18380706,-0.047680803,0.341554,-0.3512682,-0.20671512,-0.13304107,0.26486826,0.29069212,0.2036859,0.7454567,-0.0735607,0.23822555,0.038756736,0.42990515,0.98943996,-0.23755883,-0.16399696,0.28456894,-0.47159597,-0.799189,0.19121397,-0.4809381,0.19153343,-0.24930143,-0.4700442,-0.36853722,0.24088839,0.1201733,-0.051658902,0.13698389,-0.58201486,-0.08119819,0.15882412,-0.21952902,-0.22454531,-0.18403254,0.036101084,0.47671577,-0.083882585,-0.18301865,0.027226975,0.2691234,-0.4423745,-0.57228243,-0.033374377,-0.2893757,0.44560188,-0.006355313,-0.25026396,0.027503831,0.11575342,-0.46976423,0.30348137,0.33064845,-0.22817083,-0.09485594,-0.1874844,-0.0055047446,0.4243431,-0.17375982,-0.053323906,-0.5279951,-0.55756027,-0.95270604,-0.21060319,0.31442744,0.15726714,0.006957843,-0.49181035,-0.17642686,-0.26379672,0.024138149,-0.0795602,-0.48514992,0.3737037,0.1055514,0.45108196,-0.2316741,-0.95245504,0.18819629,0.22961752,-0.06618065,-0.48860627,0.49334627,-0.1894252,0.51054096,0.121228956,0.041162353,0.385995,-0.60787535,0.24207528,-0.108960204,-0.18445519,-0.5105969,-0.027867118 +766,0.46861845,-0.19180854,-0.63707364,-0.03736381,-0.4164275,0.21097773,-0.13354634,0.46692294,0.113481075,-0.5575023,-0.04788346,-0.1990131,-0.07880941,0.15944293,-0.15582167,-0.3218234,0.083845094,0.12753367,-0.45931855,0.50203705,-0.24768807,0.31507066,-0.07868001,0.32923162,0.13070604,0.19436601,0.046708267,0.09755404,0.011048715,-0.23250628,-0.3034231,0.2596021,-0.54389805,0.14276543,-0.17008492,-0.5228211,-0.06215555,-0.4199389,-0.39101407,-0.74432945,0.28975445,-0.87895674,0.5517558,0.059345298,-0.27673975,0.2372664,0.13559645,0.21462847,0.01733312,-0.015425629,0.18050656,-0.26158872,0.05205166,-0.27750537,-0.41405448,-0.52949315,-0.5835634,-0.14057738,-0.48769042,-0.38271746,-0.31719297,0.14677662,-0.3898316,0.010637855,-0.13293213,0.58231133,-0.3609695,0.049800713,0.11299267,-0.17954822,0.28905302,-0.71633923,-0.15171903,-0.11227087,0.21537799,-0.078417696,-0.16653152,0.2091989,0.35046715,0.4133393,-0.003240635,-0.17783003,-0.38332298,-0.21082239,0.14998509,0.5277661,-0.09794435,-0.37558678,-0.034052767,0.00921069,0.2258576,0.32790643,0.23288448,-0.2796417,-0.117007844,-0.034730066,-0.14964004,0.42959344,0.49819964,-0.35050818,-0.12300678,0.43149886,0.5631753,0.03440344,-0.24344839,0.017276963,0.04156093,-0.45813066,-0.17488691,0.1351328,-0.17565294,0.5143932,-0.13696042,0.29703477,0.6237153,-0.2163666,-0.118765034,0.035352517,0.03841918,-0.07914595,-0.21999225,-0.26274785,0.21893519,-0.41019338,0.25673226,-0.02460771,0.6214646,0.14217676,-0.6462023,0.3290505,-0.62323004,0.06736448,-0.06364905,0.40861714,0.4375568,0.5169326,0.13869973,0.7237184,-0.3750655,0.07918346,-0.21802144,-0.29892227,-0.19623835,-0.12765984,0.021988312,-0.48225516,0.24266356,-0.18809134,-0.039750617,0.06161543,0.5479576,-0.42856747,-0.23455532,0.26517335,1.0253799,-0.25728714,-0.07313718,0.7672961,1.0169045,1.0916212,-0.056446575,0.7814246,0.07799112,-0.15872212,-0.042701196,-0.024117386,-0.5919931,0.217081,0.41801584,0.33795187,0.24865736,0.035960678,-0.1398025,0.30172077,-0.24863504,-0.14015247,-0.07272539,0.034031846,0.288783,-0.19444303,-0.30764666,-0.06593748,-0.04283578,-0.020626338,0.0485651,0.16037205,-0.21406698,0.55667454,-0.03239932,1.7420503,-0.016822604,0.135503,0.25210688,0.554945,0.30152595,-0.07628185,0.18361908,0.45409462,0.17722073,0.26262105,-0.5424783,0.18687543,-0.31788638,-0.56028974,-0.113465264,-0.303898,-0.19871397,0.007849199,-0.5719099,-0.25198087,-0.23850533,-0.16803381,0.31231746,-2.786616,-0.16722725,-0.11595054,0.3102202,-0.30310932,-0.37566993,0.02505066,-0.45734218,0.39495414,0.31253177,0.42295626,-0.56021667,0.42551246,0.43551093,-0.4655103,-0.010745446,-0.47350138,-0.083953,-0.028029747,0.348112,-0.10398863,-0.09222839,0.14606844,0.25266168,0.5730832,-0.08333293,0.18233222,0.3607857,0.43068796,-0.11282524,0.53008866,-0.06929941,0.51813436,-0.35775205,-0.11933031,0.40820995,-0.2589595,0.09933772,0.0073841144,0.16541249,0.56669563,-0.33653557,-0.80719185,-0.6157946,-0.0888934,1.091173,-0.25726,-0.44008356,0.33889255,-0.37777779,-0.22788127,-0.16800313,0.33062682,-0.025064703,0.15778749,-0.6722248,0.07138335,-0.09956684,0.123478964,-0.044647653,-0.26133102,-0.4644409,0.7921456,-0.027898168,0.6925758,0.31748617,0.20973495,-0.25805092,-0.33666474,-0.056245126,0.70728076,0.51769376,0.075180374,-0.23901877,-0.13079363,-0.20299007,-0.15471052,0.16377679,0.5938442,0.56190205,-0.09500228,0.15468654,0.2787002,0.052658938,0.016712755,-0.26555902,-0.22179018,-0.12336399,-0.06587251,0.42036822,0.393223,-0.16680317,0.5230215,-0.04199226,0.36558902,-0.20998494,-0.5341057,0.28495285,1.094508,-0.23187794,-0.3540401,0.4429461,0.5198011,-0.39181805,0.36111802,-0.6512241,-0.22361074,0.59474057,-0.21501984,-0.6057425,0.18470879,-0.24902716,0.060056217,-0.71961325,0.07827785,-0.3496128,-0.6694774,-0.45307475,-0.26960984,-3.2397637,0.25599253,-0.30934048,-0.18561307,-0.22359781,-0.29315096,0.14238523,-0.59873605,-0.51072794,0.13972454,0.1533211,0.684774,-0.15120412,0.23408805,-0.31529143,-0.2743276,-0.32306105,0.25001866,-0.04112451,0.24449869,-0.005833022,-0.38086995,-0.074393384,0.04071772,-0.55506885,0.037146732,-0.60726625,-0.30306986,-0.18657385,-0.4077778,-0.2155671,0.588624,-0.17138188,0.11552106,-0.12178189,0.05535788,-0.081995696,0.13485543,0.13675101,0.19900729,-0.031355616,-0.13359302,0.14300162,-0.323889,0.31445324,0.01033895,0.31103155,0.28733668,-0.15230675,0.14663056,0.3371881,0.64259803,0.009278092,0.7805868,0.19644833,-0.04541147,0.39036652,-0.21409354,-0.3858867,-0.61351585,-0.24355394,0.0051344396,-0.2694039,-0.5599479,0.022771506,-0.38758227,-0.7983635,0.49050218,0.050057523,0.31254292,0.03871282,0.44531742,0.54541713,-0.37244764,-0.082495384,0.015718456,-0.17462976,-0.49923953,-0.27669188,-0.62343144,-0.51876384,-0.055122428,0.9974148,-0.2975415,-0.06681143,-0.019107573,-0.21123566,0.057778914,0.27788576,0.071060084,0.15789041,0.364539,-0.22631818,-0.6470411,0.5132467,-0.25729933,-0.21529914,-0.6026525,0.35742864,0.5973085,-0.50435644,0.4981397,0.15470725,-0.007920707,-0.30229074,-0.6068179,0.08165518,0.10929743,-0.27181414,0.38323316,0.20445964,-0.8433303,0.3678285,0.37070128,-0.30791336,-0.63341117,0.59793645,-0.014855694,-0.45785204,-0.04192482,0.29210672,0.25704247,-0.02238152,-0.26257154,0.16979179,-0.45515636,0.24924845,0.14948861,-0.06241912,0.22861543,-0.16406988,-0.18161471,-0.7278834,0.097614355,-0.5099951,-0.26590663,0.27436608,0.028469233,0.09846255,0.304537,-0.08797975,0.42743185,-0.2534888,0.13908549,-0.16518332,-0.31912476,0.45281202,0.32940808,0.46153527,-0.44661584,0.61339056,-0.06514561,-0.17465273,0.22257423,0.2237784,0.41514257,0.08263974,0.5974506,0.1197368,-0.080841355,0.235378,0.748535,0.29105324,0.503437,0.1699958,-0.14582056,0.21402483,0.08090976,0.1435431,-0.16300204,-0.72606605,0.07843062,-0.2022379,0.12521264,0.51620644,0.09878356,0.29600772,-0.08104446,-0.24599648,-0.037641518,0.22714137,-0.005429999,-1.1153615,0.20641838,0.2104184,0.97297287,0.33165416,0.08925786,-0.058133624,0.6463783,-0.1960717,0.10870702,0.3331138,0.061032064,-0.29377303,0.48837578,-0.7293488,0.3320478,0.031780478,-0.080572,0.03186832,0.024108248,0.4566706,0.7791637,-0.2035419,-0.06631483,-0.03568724,-0.39749628,0.21133408,-0.401153,-0.040903527,-0.4742429,-0.2990491,0.64099485,0.56073564,0.2782498,-0.12911488,-0.05312518,0.14762904,-0.11062886,0.15270193,0.1301695,0.1698603,-0.2213621,-0.45741087,-0.16118182,0.5844326,-0.019786898,0.20070337,-0.011326099,-0.2481969,0.35169747,0.12444289,-0.06033257,0.11511395,-0.7131873,0.2882227,-0.114662476,-0.5244457,0.5018109,0.0026793887,0.19467661,0.19276515,-0.03827102,-0.21281198,0.32514656,0.032621942,0.7693672,-0.0026893716,0.011149391,-0.44168904,0.16961169,0.061769024,-0.11340996,0.1319964,-0.13026284,0.059838276,-0.55317986,0.38178608,-0.03865772,-0.2642524,0.16868307,-0.11739189,-0.07513359,0.6046088,-0.03563996,-0.081191145,-0.07934804,-0.059900362,-0.4101315,-0.2807876,-0.08821608,0.35545728,-0.1834289,-0.01962932,-0.07456658,-0.023456259,-0.01917628,0.5025995,-0.011442971,0.39629236,0.2979768,0.029197915,-0.37207937,-0.23957682,0.14809056,0.49540344,-0.13719563,-0.1091235,-0.1027986,-0.6069459,-0.27895197,0.06910562,-0.09460758,0.3390093,0.13062952,-0.18175223,0.848136,-0.05769264,1.1936958,-0.087496504,-0.42530048,0.18094164,0.48991156,0.0940583,-0.044597846,-0.3203284,0.8897397,0.6161854,0.006345566,-0.04121948,-0.22634608,-0.0836952,0.15960123,-0.24293223,-0.15984099,-0.045868676,-0.49134806,-0.16330013,0.14385074,0.19392492,0.275133,-0.18261027,0.1347681,0.45881966,-0.02746576,0.33649895,-0.3900212,-0.2842045,0.15702678,0.22285496,-0.18684754,-0.033810508,-0.54147977,0.39960766,-0.5155343,0.10827838,-0.26199833,0.19568676,-0.20601176,-0.21935578,0.19685599,0.053675912,0.28909656,-0.30556843,-0.34702298,-0.15539663,0.33217546,0.17989995,0.16553767,0.48690754,-0.25673774,0.13115865,0.010531169,0.55267155,0.84568685,-0.11843551,-0.18774933,0.36749622,-0.5451107,-0.6642862,0.44292104,-0.29920986,0.20651226,0.0055518625,-0.12235713,-0.411605,0.38870457,0.19806989,-0.11790619,0.03924316,-0.66362244,-0.099750124,0.23039508,-0.41180867,-0.20496152,-0.30770734,0.24898574,0.644317,-0.17201729,-0.35947746,-0.052295547,0.28865847,-0.027104793,-0.62697303,0.027200263,-0.27861983,0.32797563,-0.0017457604,-0.27382317,-0.106195346,0.0780588,-0.50888574,0.103363246,0.08220858,-0.2712001,0.09550716,-0.3703285,-0.05966057,0.7887388,-0.15364479,-0.036015693,-0.46837023,-0.52841485,-0.6703525,-0.41313305,0.3129216,0.15618062,0.019780643,-0.63227683,-0.03526933,-0.18018545,-0.26176232,-0.17273669,-0.27821854,0.4664244,0.07917248,0.370635,-0.06085762,-0.6932274,0.32045904,0.055684883,-0.13857989,-0.56078744,0.50907916,-0.07290916,0.75130236,0.122888036,0.023398865,0.25924256,-0.4605503,0.12770692,-0.3190492,-0.2243743,-0.48481274,-0.14145519 +767,0.4003681,-0.13969341,-0.5014311,-0.1870829,-0.27211338,0.16205679,-0.24317805,0.2329672,0.39670962,-0.017128736,-0.13948298,-0.033176973,0.18136083,0.39158055,0.059266303,-0.7058964,0.014368763,0.07159667,-0.6894578,0.42536157,-0.62031734,0.44134697,-0.09799779,0.34196982,0.09491667,0.48310313,0.23522337,-0.035496704,-0.09230758,0.032659493,-0.043823455,0.107124165,-0.41233987,-0.10348969,-0.057481084,-0.28459418,0.05507744,-0.29350534,-0.22784056,-0.6934785,0.33621013,-0.75152916,0.57982457,0.1323893,-0.26014006,0.016652051,0.16712452,0.36507878,-0.36047804,0.108419076,0.095787086,-0.111316204,0.0022717048,-0.37611932,-0.15060478,-0.37811425,-0.41964337,-0.06667674,-0.67090476,-0.427834,-0.10687806,0.14800161,-0.32764462,-0.087463126,-0.02536411,0.37741646,-0.33225992,-0.011926802,0.46664193,-0.28196245,0.38062543,-0.5890197,-0.020853642,0.033253323,0.51178354,-0.07715051,-0.14998564,0.2126907,0.37771592,0.36208698,0.23988232,-0.23076177,-0.4349648,-0.12508729,0.05968552,0.42805606,-0.2538086,-0.25571156,-0.19332926,-0.005579467,0.16215508,0.38319743,0.20866467,-0.05519316,0.056609247,-0.020199914,-0.11524986,0.59899867,0.5264604,-0.37082398,-0.4130201,0.25332844,0.61462796,0.094693236,-0.3580674,-0.048629284,0.037848286,-0.4940452,-0.15116991,0.04302237,-0.049305037,0.57276845,-0.11478794,0.17833464,0.7865204,-0.29593408,0.029515324,0.17829415,-0.044984896,-0.13426277,-0.2818056,-0.09408365,0.06844909,-0.63835114,-0.08655291,-0.22068664,0.541873,0.19935966,-0.6131094,0.41852415,-0.65310514,0.09607764,-0.12448827,0.45698336,0.69094497,0.30316606,0.21253373,0.7228304,-0.21189786,0.12831861,-0.013769774,-0.43594202,0.2477967,-0.25461382,0.1874841,-0.5711076,-0.06788537,0.0023670883,-0.06447853,0.24683064,0.40214634,-0.5245491,0.02065542,0.1412536,0.8706969,-0.32040244,-0.11638964,0.56266534,1.2421505,0.88607967,-0.14822802,1.0231436,0.35979912,-0.282026,0.17463778,-0.7030771,-0.48214605,0.1867658,0.27229545,-0.3723412,0.5382934,-0.18095364,-0.116928324,0.39433435,-0.24438024,0.09675987,0.16536818,0.2520406,0.21520904,-0.13017449,-0.40112475,-0.11672163,-0.03725674,0.01234852,0.29884684,0.21281464,-0.32764322,0.2641234,-0.20335685,1.1833456,-0.07165431,0.0790972,-0.09887225,0.65176433,0.30001104,-0.13343903,-0.11614393,0.4199575,0.14627434,-0.05065644,-0.6400147,0.35923272,-0.37609106,-0.27241546,-0.23928279,-0.46574217,-0.07258627,0.13405012,-0.32421127,-0.11393854,-0.15162092,-0.31032774,0.30904037,-2.9092689,-0.42193896,-0.0042612506,0.40741003,-0.304515,-0.18616779,-0.073395535,-0.5162779,0.19772807,0.27043182,0.4073071,-0.604948,0.48718983,0.5046096,-0.47738823,-0.31324413,-0.6276483,2.4213241e-05,-0.16961639,0.36146486,-0.006496292,-0.21048066,-0.12669645,0.22883771,0.6357613,0.10099126,0.12384359,0.33952028,0.33771393,0.01558517,0.3989014,-0.050877534,0.70521355,-0.21901542,-0.2529773,0.30373496,-0.26613733,0.08814255,-0.19337481,0.059518356,0.3714484,-0.28702286,-0.9402192,-0.617769,-0.05230933,0.928584,-0.17857169,-0.3383054,0.2083787,-0.40097153,-0.16212288,0.03626054,0.5684286,-2.5625412e-05,0.043840133,-0.65100586,0.122309476,-0.039606478,-0.0042266203,0.0632188,0.0026195066,-0.3354967,0.506647,0.0559331,0.4065506,0.21774861,0.32207888,-0.1136673,-0.355034,0.1455432,0.7122611,0.20155452,-0.02650845,-0.09724358,-0.26953572,-0.1061348,-0.120974645,0.03366315,0.43994105,0.7417154,-0.03759839,0.098043084,0.28308028,-0.22788852,0.121542014,-0.054123506,-0.33264843,0.08611603,0.10286982,0.43025684,0.78977174,-0.20990203,0.58077955,-0.12921487,0.27024263,-0.25074822,-0.5064136,0.7903178,0.49969026,-0.19724587,-0.15306756,0.49367744,0.35418174,-0.64291424,0.50052035,-0.71254313,-0.18488921,0.6525863,-0.3182651,-0.29071584,0.1685506,-0.17545612,0.1225221,-0.89362246,0.21976456,-0.2842622,-0.3560312,-0.148835,-0.028639318,-3.7002308,0.16468838,-0.27871272,-0.042140327,-0.13144824,0.0878056,0.29940075,-0.6857752,-0.48089164,0.1000943,0.24232799,0.63965046,-0.14218886,0.032164868,-0.17091648,-0.24069566,-0.083052,0.24850243,-0.05312086,0.29401153,-0.13523111,-0.5027531,0.2632129,-0.026627775,-0.6489709,0.1385621,-0.4810613,-0.401634,-0.112536624,-0.58686227,-0.24847333,0.6498177,-0.16611037,-0.03485734,-0.34487134,0.21322288,-0.12535825,0.4272709,0.005260073,-0.033603355,0.4065058,-0.017901301,0.18202418,-0.36470553,0.5144066,-0.09928966,0.45777035,0.20206223,0.034681145,0.19420657,0.49107453,0.5510046,-0.02204859,0.8263838,0.4612109,-0.008497799,0.19555987,-0.44532102,-0.16550027,-0.22118293,-0.507834,-0.057897784,-0.25926208,-0.60401845,-0.03617784,-0.37405506,-0.7444905,0.47715852,-0.068459265,0.42062983,-0.070278816,0.36162347,0.44205207,-0.27494317,0.028086148,-0.046763007,-0.2217099,-0.45692176,-0.00045650738,-0.58426386,-0.51701444,0.22373396,0.7849534,-0.51050985,0.2019781,-0.046528228,-0.20795646,-0.0738119,0.17810573,0.15922907,0.2383522,0.34640715,-0.16321784,-0.6163882,0.16130815,-0.18796983,-0.15268768,-0.5927963,0.029067244,0.654853,-0.65165937,0.5829206,0.34277692,0.13018528,-0.07144988,-0.40930155,-0.032611772,0.19241858,-0.14455566,0.47812197,0.097247764,-0.7984505,0.36769646,0.29798302,-0.5099293,-0.6419452,0.41826203,-0.063152775,-0.38952193,-0.24406478,0.27987438,0.17587624,-0.10036223,-0.17873493,0.17883693,-0.45332512,0.1872062,0.1933706,-0.0056173983,0.5836905,-0.109440565,-0.2921494,-0.6762308,0.099907234,-0.5442636,-0.13951267,0.2525602,0.1415238,0.20644648,0.21020643,0.27002886,0.36819202,-0.29269475,0.046109222,0.058136184,-0.44732875,0.21328002,0.3419724,0.27709788,-0.40528238,0.370734,0.0037399898,-0.2921328,0.16723222,-0.1512355,0.48961228,-0.0075053205,0.49330652,-0.008487628,-0.26546216,0.4373174,0.5694295,0.046241336,0.3318384,0.17516048,-0.13926338,0.21423295,-0.04496399,-0.054234207,0.018420931,-0.3780134,-0.06720137,-0.121966965,0.2564016,0.5274242,0.3912976,0.18055955,0.14550231,-0.33588812,0.07933056,0.24214515,-0.14748971,-1.2375247,0.36916828,0.36569405,0.7652709,0.37509727,0.22857212,-0.29510555,0.64775527,-0.2078945,0.07491093,0.5678256,-0.039618257,-0.504324,0.7708594,-0.6071068,0.5758041,-0.038442507,-0.1705319,-0.05798352,0.034967106,0.34432822,0.97115433,-0.1800588,0.07103329,0.07363646,-0.21853805,-0.14320597,-0.28176138,0.016845617,-0.660632,-0.18550238,0.6347371,0.29760492,0.2461386,-0.0801113,-0.13164224,0.14078683,0.024325717,0.31765726,-0.11893214,0.12284675,0.0018871289,-0.7008194,-0.18921944,0.34814718,0.23405388,0.1976815,-0.30487892,-0.13935614,-0.023547549,-0.3765298,-0.065381095,0.020421263,-0.53703105,-0.025763612,-0.14572857,-0.5301529,0.686307,-0.22495237,0.16366106,0.13719909,0.14343828,-0.16827816,0.5043179,0.080704555,0.6807107,-0.026900109,-0.19573775,-0.29900488,-0.007030865,0.24187341,-0.151618,0.06585164,-0.30831102,0.16728687,-0.51039505,0.67409545,-0.1458201,-0.35745034,-0.026817588,-0.20589945,0.037089486,0.6494272,-0.22969985,-0.21710865,0.013264014,-0.27641565,-0.4050914,-0.07111023,-0.1786051,0.21443534,0.20202239,-0.1409746,-0.29193753,-0.2993508,0.01187828,0.55854934,-0.070313774,0.44070345,0.27293846,0.044254567,-0.070680745,-0.054381233,0.3605793,0.32414415,0.12990178,0.04892119,-0.577342,-0.3880558,-0.21212286,0.18814936,-0.026004754,0.010278518,0.119288534,-0.18674634,0.84269524,0.0321584,1.4252173,0.16160403,-0.23444945,0.15749575,0.5302922,-0.069181606,0.04592885,-0.53132695,1.0005891,0.5345735,-0.23338619,-0.07680484,-0.5066736,-0.16009961,0.28516752,-0.38116595,0.016088393,-0.08295167,-0.75590146,-0.363836,0.31356496,0.13740799,0.14725071,0.06329625,0.29578453,-0.036108483,0.09307131,0.26295608,-0.59855276,-0.2898889,0.4100773,0.35005188,-0.0051358114,0.28197563,-0.42976373,0.47683045,-0.7146404,0.20849206,-0.31439108,0.052536998,-0.17057961,-0.5827275,0.18700539,0.1676938,0.23364718,-0.06688155,-0.44593653,-0.034268253,0.43847927,-0.030388126,0.10655481,0.5765295,-0.3846839,-0.12740421,-0.058913745,0.62519497,1.237419,-0.21501142,-0.0040693423,0.3274361,-0.3269448,-0.8715762,0.40869692,-0.33289212,0.013151187,-0.089037456,-0.3247767,-0.5863014,0.2813246,0.07350864,-0.015024075,0.042703986,-0.32006434,-0.362518,0.1388199,-0.3075377,-0.21380281,-0.15833817,0.3398027,0.73549783,-0.21743844,-0.13647538,-0.045802847,0.49412134,-0.25495642,-0.27189094,0.06298054,-0.103929296,0.39727238,0.14279653,-0.32312787,-0.03456879,0.22638631,-0.37821388,0.20626658,0.32877642,-0.3967516,0.106180735,-0.25351614,-0.18406758,0.80986434,-0.14953686,-0.001194931,-0.5035636,-0.47386667,-0.9328756,-0.41997895,-0.021545192,0.045039233,-0.16870001,-0.41619986,0.15569247,-0.019644896,-0.139264,0.15796588,-0.5800653,0.35191455,0.041829698,0.4401179,-0.317942,-0.8156615,-0.10284324,0.20258856,-0.2656929,-0.821529,0.636295,-0.17916764,0.9402328,0.15144995,-0.10097365,0.12421406,-0.20245443,0.14904618,-0.28599042,-0.23873049,-0.85409766,-0.087408274 +768,0.14720567,-0.092932664,-0.6423836,-0.15350057,-0.453963,0.22388649,-0.21564654,0.17231639,0.19821216,-0.038057923,-0.02371003,-0.10234237,0.18672755,0.5114265,0.0681672,-0.57347345,-0.0410462,0.26349992,-0.72486925,0.31915233,-0.5133189,0.43002063,0.09021396,0.43773532,-0.062272284,0.6161433,0.38724175,-0.20821421,-0.1448269,0.12276321,-0.092021696,-0.007892408,-0.46010438,0.089875996,-0.12706293,-0.377022,0.19934459,-0.23900871,-0.20102933,-0.5452563,0.1881245,-0.75392973,0.49224696,-0.094729185,-0.08114516,0.044695668,0.2654502,0.34045336,-0.3914331,0.06631419,0.303964,-0.30594948,-0.10473748,-0.41702434,-0.08489498,-0.5240105,-0.2236056,-0.058490224,-0.68364054,-0.49400812,-0.22316611,0.24649271,-0.21216439,-0.004168003,-0.047864728,0.3095235,-0.39280486,0.027404606,0.20169327,-0.5066661,0.25246373,-0.353977,0.04442411,-0.035835106,0.55641764,-0.0034659419,-0.03734443,0.36687237,0.30146354,0.43101767,0.3216959,-0.26611343,-0.33638683,-0.2876141,0.06967342,0.43982786,-0.102122106,-0.20939088,-0.20067644,-0.12506016,-0.08012084,0.20836541,0.05858139,-0.14535487,-0.042310566,-0.02042366,-0.21316276,0.44896552,0.33352846,-0.45145804,-0.2768348,0.34615925,0.6801279,0.016648531,-0.41738722,0.04277416,0.022731602,-0.45626116,-0.19238992,-0.0113434,-0.0022856507,0.379365,-0.21762268,0.19812359,0.9687641,-0.16755302,-0.16340722,-0.015607201,0.026464475,-0.26147375,-0.20451856,0.038738128,0.09066163,-0.55459064,-0.15101817,-0.13024049,0.5981616,0.19916452,-0.5114671,0.36984387,-0.54756314,0.10182994,-0.13228253,0.54926026,0.56614876,0.43056253,0.12338642,0.8683116,-0.3024486,0.18566608,-0.06858587,-0.51740885,0.17695875,-0.28270122,0.10408459,-0.4842796,0.114417374,-0.02457727,0.15040676,0.078339644,0.25700685,-0.481428,-0.04614853,0.29390517,0.9571434,-0.41882867,-0.17950727,0.47336745,1.0769993,0.7923897,-0.033167474,1.0447383,0.3553227,-0.3549146,0.10284461,-0.48352098,-0.50965774,0.17377813,0.3843829,0.31184655,0.13427821,-0.08739417,0.13297153,0.39613384,-0.3020019,0.1047013,0.022731023,0.14812665,0.16549602,-0.0034548214,-0.43011874,-0.07016509,-0.017595474,-0.12382023,0.31914154,0.10397983,-0.21322714,0.42550236,-0.093732595,1.4696068,0.005249381,0.035131183,0.012807361,0.67261213,0.298451,0.05466911,-0.1569237,0.46073368,0.26007354,0.07040671,-0.49458417,0.3495796,-0.26129368,-0.7342304,-0.18155916,-0.4604647,-0.027129123,0.016088516,-0.43729907,-0.11093297,0.02053449,-0.33533102,0.33857864,-2.7444632,-0.18173125,-0.08464738,0.3038672,-0.30255613,-0.017211648,-0.22050153,-0.44901544,0.21372212,0.3132021,0.5171074,-0.5597287,0.5255532,0.4540742,-0.37392548,-0.23304966,-0.53551584,0.0028493744,-0.15879704,0.41039175,0.07872663,-0.15373771,-0.40147322,0.19061403,0.6915876,-0.1410611,0.1790879,0.44156927,0.2378868,0.0736941,0.5250189,0.13827781,0.55882835,-0.43109915,-0.27406827,0.3636226,-0.21629117,0.08396931,-0.17500994,0.11926115,0.42839915,-0.29330727,-1.0708754,-0.6822408,-0.12901859,0.93207467,-0.3662186,-0.34583464,0.28420332,-0.067869365,-0.031066801,0.14346358,0.5051064,-0.022337658,0.29004458,-0.5612774,0.26436827,-0.02065906,0.21479239,0.061165072,-0.044977613,-0.28163812,0.6998145,-0.080413856,0.53147274,0.17894295,0.29878998,-0.14375077,-0.28575692,0.12385299,0.8119391,0.10683046,0.024249146,-0.07068194,-0.30464363,-0.072888136,-0.24360757,-0.019037668,0.31788284,0.6837206,-0.033896346,0.16294305,0.28711352,-0.24598888,-0.07448832,-0.037759654,-0.2738127,0.12476802,0.043052975,0.30078745,0.6054081,-0.068163596,0.5230833,-0.25038853,0.51108634,-0.10589977,-0.62493336,0.795849,0.47570798,-0.26666424,-0.09148347,0.55750823,0.32232788,-0.5664638,0.45475906,-0.73053414,-0.3903872,0.60863864,-0.20597564,-0.34064475,0.001879309,-0.079694204,0.10849888,-0.8312003,0.16733377,-0.12672251,-0.42081818,-0.18497634,-0.3460318,-4.088878,0.11039983,-0.114826165,-0.06417885,-0.1641487,0.043549806,0.30355948,-0.59011066,-0.41620106,0.05396984,0.23957245,0.6914395,0.13550226,0.21975958,-0.3134201,-0.14325263,0.02715628,0.37802532,0.02146537,0.16309991,-0.08560773,-0.65547335,0.028615031,-0.13410099,-0.66442406,0.149737,-0.58028185,-0.33906212,-0.23202239,-0.6292049,-0.3455549,0.5809468,-0.28814015,0.11663334,-0.32496077,0.16571046,-0.21235564,0.28322905,0.19841366,0.0007843929,0.24655466,-0.017144037,0.24916841,-0.36018068,0.3658612,-0.09578992,0.41194257,0.034636106,0.15305461,0.08717066,0.4961538,0.5770264,-0.12178933,0.8463479,0.40384555,-0.04983523,0.2838017,-0.36918068,-0.09995747,-0.5928031,-0.5203941,-0.22845629,-0.33789936,-0.474649,0.14386685,-0.330734,-0.81080925,0.6781769,0.07272316,0.13574593,0.004560343,0.3486781,0.392236,-0.28388444,-0.16906753,-0.057238974,-0.22417852,-0.6083831,-0.16527204,-0.5612049,-0.5779848,0.040935636,0.7351646,-0.3597733,0.016070297,-0.07965169,-0.20576794,0.006933951,0.2863312,0.06809342,0.35038492,0.48563078,-0.121786036,-0.71985215,0.45181677,-0.188518,-0.078767896,-0.47877893,0.05603079,0.40838793,-0.7278283,0.50165373,0.4152706,0.13270846,0.035754036,-0.29363444,-0.2714084,-0.11506433,-0.14279296,0.43765113,0.013346821,-0.9017605,0.6093649,0.28315675,-0.45013353,-0.6300687,0.20051591,-0.17523234,-0.38543886,-0.041418266,0.27740055,0.08581568,-0.16388701,-0.35409504,-0.019517852,-0.45559326,0.2074043,0.20437546,-0.10323332,0.67260456,-0.18620469,-0.35747814,-0.7331957,-0.17421964,-0.45501783,-0.13826036,0.14750879,0.0053939903,-0.15544249,0.30351567,-0.0055534435,0.3034544,-0.16910155,0.026153669,-0.032779153,-0.3189525,0.20269313,0.29050678,0.23265359,-0.47180048,0.54101783,-0.01332287,-0.21394332,0.067397825,-0.114297256,0.45148495,0.10785984,0.4884693,-0.079587415,-0.208304,0.41605857,0.6391219,0.13796121,0.47209397,-0.016960412,-0.24535301,0.36245865,-0.06519223,0.041843805,-0.06502887,-0.33664137,0.04992244,-0.15008727,0.13418205,0.46342513,0.34301203,0.43575975,0.20206806,-0.1466086,0.18666516,0.14028427,-0.024792416,-0.9837039,0.40656,0.4387923,0.74387854,0.3644341,0.06907789,-0.18721326,0.80561155,-0.21048796,0.0526675,0.27311465,-0.00419145,-0.42533138,0.68080425,-0.69586104,0.4130578,-0.20032465,-0.18815205,0.19036846,0.12633589,0.14355734,0.9184372,-0.09008849,0.18318303,0.08122157,-0.23965004,0.0041568195,-0.14241442,0.0647058,-0.5280739,-0.33052936,0.6729679,0.2777977,0.32392415,-0.16113918,-0.11750121,-0.0011088209,-0.07227426,0.25489625,-0.097326174,-0.028683646,0.14913872,-0.5900787,-0.3053279,0.5589761,0.33530173,0.33226195,-0.106201075,-0.3470266,0.11050178,-0.36577097,-0.0946311,0.021864176,-0.3594212,0.036223795,-0.010197257,-0.5442528,0.6845775,-0.2990148,0.31339854,0.038746588,-0.015608066,-0.2044381,0.42220122,0.15717976,0.65698063,0.16130532,-0.2117417,-0.31706142,-0.05576243,0.27529088,-0.28315142,0.027244627,-0.48564515,-0.13679391,-0.51806426,0.56610453,-0.22575858,-0.46102962,0.24037673,-0.3983504,-0.049509697,0.51007533,0.051834933,-0.23002763,0.14349271,0.00842292,-0.3756718,-0.06916731,-0.3820651,0.24917348,-0.06899334,-0.08169193,-0.25285015,-0.22366674,-0.025163906,0.60318094,-0.15028055,0.30196613,0.1321473,-0.019168632,-0.13621502,0.16761704,0.22996311,0.35085005,0.08611226,0.08655081,-0.17208529,-0.36294928,-0.26484346,-0.010369318,-0.06837731,-0.0023129785,0.1399381,-0.18556166,0.90934086,-0.019444274,1.260316,0.22081664,-0.32204312,0.18832803,0.42783207,0.054175112,0.21486361,-0.3930698,0.8268569,0.5631533,-0.1820116,-0.22594383,-0.40525967,-0.15830623,0.3781948,-0.3571791,-0.1751574,-0.074889146,-0.7670277,-0.556686,0.29816824,0.1823055,0.2953338,-0.010801821,0.06854932,-0.078676276,0.084028974,0.3997155,-0.6389675,-0.14592096,0.3079415,0.33511823,-0.15211518,0.17592908,-0.3590841,0.5611034,-0.6278286,0.2155033,-0.38766083,0.16640784,-0.36018535,-0.40098256,0.1071525,0.021400342,0.42604747,-0.09702102,-0.4001062,-0.17062509,0.5485851,0.16225693,0.17578696,0.71379936,-0.23957147,0.054396622,0.017333247,0.42344907,1.0301586,-0.48319617,-0.03353565,0.4354531,-0.32519633,-0.58858454,0.37501404,-0.34804937,-0.020662311,0.020172583,-0.47447878,-0.36859077,0.36021343,0.04904782,-0.030561646,0.08556423,-0.39295265,0.050417636,0.24349274,-0.18019189,-0.2094481,-0.093790986,0.48073405,0.57278347,-0.28583542,-0.19489749,0.26670697,0.511783,-0.30317083,-0.36121044,-0.03757712,-0.277555,0.457177,0.1457953,-0.39572787,0.03487851,0.10907513,-0.41173217,0.1877394,0.34926432,-0.36083767,0.17502776,-0.17186686,0.0900089,0.7814833,-0.0005268582,-0.012886559,-0.59404725,-0.3796082,-1.1158197,-0.39385822,0.38337642,0.04503262,-0.1498982,-0.33962494,0.038703766,-0.09584818,-0.23483123,0.16215014,-0.7162203,0.2710132,0.11316854,0.5193518,-0.16569707,-0.84002846,0.048454233,0.16646184,-0.114321366,-0.7037393,0.6243182,-0.31243542,0.9318699,0.02652714,-0.13358665,0.20395432,-0.3174725,0.12508062,-0.40198824,-0.20229997,-0.68220365,-0.038691036 +769,0.5672341,-0.2983851,-0.5373297,-0.10221484,-0.3632428,0.0955929,-0.3089487,0.31318432,0.10205476,-0.33767658,-0.12055896,-0.1909724,-0.02827271,0.5312784,-0.15709135,-0.4363236,0.066887304,0.11235017,-0.73035413,0.67692316,-0.42963594,0.41648006,0.061761126,0.33278877,0.24083722,0.28788853,0.17739186,0.028677832,-0.03806028,0.034069657,-0.08491469,0.38379216,-0.5964687,0.026758507,-0.106498845,-0.26234782,-0.096683905,-0.22745377,-0.30155155,-0.80498874,0.23276019,-0.9557712,0.52578855,-0.08839202,-0.56492734,0.18829878,0.21250002,0.26055714,-0.27918565,-0.024648272,0.14093071,-0.09373397,-0.030431954,-0.13056475,-0.16552676,-0.64532876,-0.5989192,0.0017947983,-0.791034,-0.28770536,-0.35218143,0.2661686,-0.32546782,-0.1065692,-0.15267915,0.26691306,-0.56258607,0.06359686,0.07637148,-0.0733656,0.24776888,-0.5377679,-0.08790204,-0.12160365,0.11497302,-0.18751833,-0.29008055,0.23738207,0.35974896,0.5137715,0.04317598,-0.20551358,-0.31888703,0.06504077,-0.002199214,0.37383646,-0.1493954,-0.39528352,-0.27524525,0.048555862,0.3748786,0.18603519,0.23325223,-0.3594094,-0.14071429,0.07570773,-0.0799029,0.3783698,0.47043446,-0.43668866,-0.34737533,0.42685568,0.5989054,0.14766121,-0.16016735,0.1071801,-0.04472728,-0.5980593,-0.05543507,0.08155966,-0.07736162,0.66498846,-0.17789377,0.21293396,0.64326864,-0.24415319,0.014926992,0.017638654,0.008047618,-0.07063685,-0.078425854,-0.104342304,0.16747971,-0.5494344,-0.05905138,-0.20362122,0.53523237,0.09329167,-0.6139404,0.23079935,-0.49502832,0.18503508,-0.1498367,0.500883,0.79763734,0.55919194,0.12861042,0.7125327,-0.35981405,0.082543865,-0.09502675,-0.25671557,0.28742242,-0.32355657,-0.07462494,-0.5188989,-0.06900343,-0.053140096,-0.16758674,-0.022531785,0.84844655,-0.72017473,-0.096706316,0.04750365,0.68717647,-0.3604005,-0.078027464,0.6725317,0.83374053,1.0229756,0.08021049,1.1355236,0.36638558,-0.06893543,0.16069855,-0.25651428,-0.68983227,0.25378874,0.40163195,-0.082019545,0.42560363,-0.07147277,-0.1551831,0.48627973,-0.2819481,-0.11717304,-0.26635298,0.27117312,-0.029016692,-0.08809101,-0.49259996,-0.22665259,-0.062469188,0.28139573,-0.030366154,0.30403513,-0.33795863,0.26126933,0.03920235,1.8974643,-0.14348906,0.046532765,0.02128957,0.44827107,0.27282387,-0.19880515,-0.05493648,0.4345014,0.32441455,0.15161516,-0.5920365,0.0036564283,-0.22785252,-0.46729678,-0.19437064,-0.39981532,-0.0717876,-0.24883533,-0.6372913,-0.12514135,0.0529558,-0.23461595,0.4115255,-2.405588,-0.17512222,-0.077025615,0.44257617,-0.2909447,-0.3862583,-0.14139149,-0.3531331,0.36351836,0.43891498,0.40774447,-0.62967694,0.35271382,0.4157189,-0.48666844,-0.09827785,-0.5872085,-0.14249143,-0.07594578,0.5918436,-0.11482782,-0.14216152,0.17192197,0.2921936,0.52279663,-0.20952016,0.17544812,0.32758394,0.503523,-0.028754875,0.47600952,0.1110743,0.47162658,-0.08870375,-0.29368675,0.4642135,-0.22495683,0.27312106,-0.008348137,0.22617465,0.44020292,-0.46383968,-1.062527,-0.49642092,0.029139606,1.1370127,-0.47109497,-0.40469337,0.25544482,-0.27525607,-0.15643656,-0.012922386,0.38834348,-0.06843341,0.1589363,-0.8615206,0.13856085,-0.0043039694,0.17250642,-0.00921811,0.050721124,-0.3214344,0.60999703,-0.10286245,0.35486448,0.24902542,0.33136126,-0.34094268,-0.7356411,0.111382544,1.0462443,0.52908397,0.03757681,-0.28132743,-0.3490129,-0.30260554,-0.024630088,0.16416235,0.34287742,0.7756629,0.014107933,0.29947647,0.24743551,-0.13966176,0.02911003,-0.28434345,-0.2534846,0.05156803,0.17287926,0.42522785,0.74696463,-0.13877925,0.5772687,-0.051617842,0.37287706,-0.082594186,-0.6212899,0.44385362,1.214914,-0.2604971,-0.19554815,0.5652048,0.49385643,-0.2926596,0.4786839,-0.6466344,-0.42477804,0.5053442,-0.26332515,-0.38458723,0.42889056,-0.38053352,0.2030987,-0.95284057,0.4444723,-0.052327584,-0.23687603,-0.54893786,-0.058080643,-3.5952175,0.15404767,-0.25822982,-0.23572893,-0.0370066,-0.2940068,0.38492125,-0.79285514,-0.5186486,0.00907957,-0.0063909963,0.68947315,-0.11327971,0.08119336,-0.20915341,-0.36255288,-0.12788546,0.30289182,0.059511527,0.356638,-0.07827854,-0.58725935,-0.05035018,-0.121708214,-0.46343553,0.049562763,-0.6162491,-0.6165472,-0.23517522,-0.5939767,-0.099346325,0.68694067,-0.030558635,-0.014068885,-0.22972842,0.022511113,0.13375589,0.22894731,0.2938635,0.07757928,0.21836436,0.02167321,0.0176855,-0.35178393,0.059045304,0.0048690652,0.19647123,0.4810602,-0.1548624,0.29811496,0.63865536,0.46444547,-0.3307411,0.82007533,0.5784859,-0.07574016,0.26598406,-0.16486034,-0.34159994,-0.659781,-0.3842535,-0.3153619,-0.47085032,-0.30262744,-0.03337648,-0.31046832,-0.7291055,0.65531546,-0.09819521,0.37357455,-0.16415119,0.37869152,0.6187285,-0.18453833,-0.16114864,-0.16115908,-0.31128258,-0.54992455,-0.33277637,-0.7614078,-0.7069408,0.11820638,1.0851392,-0.21101496,-0.058149084,0.0921603,-0.02386517,0.016729483,0.04039877,0.030426037,0.23234618,0.35020256,-0.028348029,-0.7809055,0.5205004,-0.049963593,-0.007864825,-0.4458042,0.14853132,0.5741799,-0.60311157,0.36998296,0.37853405,0.16157866,-0.014134532,-0.6810777,-0.08577773,0.19516838,-0.26601452,0.60448444,0.30249247,-0.9104161,0.4655379,0.29518026,-0.4965421,-0.7044697,0.60582155,-0.009678859,-0.29841024,-0.14806741,0.3727138,0.11227569,0.037135277,-0.30112913,0.30531627,-0.5136925,0.2846499,0.37411544,-0.10817293,0.37430525,-0.22473912,-0.17912029,-0.7084408,0.13049126,-0.43661514,-0.4214532,0.20147389,-0.02293012,0.053867374,0.1219862,-0.002656147,0.5121752,-0.31134212,0.07295361,-0.0010742247,-0.313438,0.5364028,0.6128694,0.6159803,-0.3352607,0.53009397,0.031668484,-0.15919363,-0.0038049147,-0.03227581,0.5366999,-0.02084335,0.31938154,0.089033425,-0.101098314,0.41153675,0.74252397,0.15734011,0.5017951,0.15057711,-0.2971973,0.09199845,0.16939552,0.12610751,-0.11431656,-0.458889,-0.06810707,-0.076665916,0.30139506,0.6152822,0.14752817,0.20557891,-0.12709975,-0.21423283,0.19707158,0.1114425,0.11036289,-1.2784387,0.12965865,0.3534576,0.66791916,0.48894614,0.053580113,-0.0319932,0.43772805,-0.2713525,0.0506171,0.36693746,0.00964573,-0.6326121,0.6003662,-0.7812854,0.45019227,-0.13838202,0.027175415,0.05442271,0.056307852,0.41609862,0.8884418,-0.11399542,0.031964466,-0.015467927,-0.3282755,0.12301763,-0.4265024,0.10637997,-0.52131116,-0.36178985,0.67753696,0.39566764,0.293421,-0.18136886,-0.010816246,0.1571789,-0.3151494,0.26389572,-0.00631465,0.15821072,-0.23051555,-0.55795217,-0.25372884,0.49087623,0.026416011,0.11328722,-0.0012004524,-0.17624879,0.15522398,-0.27760255,-0.0033641271,0.023777252,-0.68818814,-0.093715236,-0.47823632,-0.4068223,0.5888066,-0.21072693,0.12710263,0.21723866,0.020799352,-0.43161833,0.20191005,0.097706154,0.77056515,-0.06588146,-0.20151004,-0.22704822,0.17160484,0.17032288,-0.17541865,-0.10045455,-0.20560762,0.15050747,-0.66436005,0.45200175,-0.1503089,-0.40059808,0.03757986,-0.1015286,0.014911963,0.4593842,0.002392225,-0.27319157,-0.08523971,-0.051579837,-0.33654368,-0.26095948,-0.0440225,0.27566618,0.206571,-0.17607588,-0.13430876,-0.03712678,0.16579095,0.57025796,-0.027970638,0.3624065,0.4911334,0.053468935,-0.40338588,0.05881487,0.46139592,0.53086656,0.027787,0.058627956,-0.40001732,-0.48930866,-0.40934378,0.111210786,-0.26841283,0.3643373,0.15863827,-0.37926868,1.0222127,0.082447335,1.2704743,-0.06418168,-0.47033548,0.20795622,0.5849072,0.021937799,-0.10833749,-0.37889254,1.0474901,0.6918787,-0.10767538,-0.16867487,-0.39107096,-0.29530275,0.25503567,-0.40226108,-0.17861971,-0.10445538,-0.6977282,-0.27191952,0.13999644,0.30020618,0.030272849,-0.14493278,0.1250311,0.3736089,0.03381569,0.2697361,-0.562538,-0.22852814,0.2596018,0.26137847,-0.1256023,0.14469063,-0.54907274,0.46249846,-0.45843834,0.11988342,-0.28347448,0.22335215,0.032305297,-0.3541008,0.29861522,0.018951813,0.27664942,-0.35273272,-0.36424926,-0.2677486,0.63333136,0.022915695,0.069831006,0.62546754,-0.45250478,0.17028593,-0.10737236,0.38994572,1.1956587,-0.2568825,-0.07380667,0.3691269,-0.34561282,-0.87994695,0.38657004,-0.40920287,0.33003995,-0.02850142,-0.4354785,-0.4920322,0.33136857,0.15993074,0.06438683,-0.031472526,-0.5335946,-0.04612232,0.23211357,-0.23625264,-0.17378458,-0.24459916,0.07078704,0.55158997,-0.40545934,-0.22493853,0.03776423,0.35206822,-0.18126145,-0.5595815,-0.076557875,-0.29923114,0.28543994,0.1402492,-0.40177503,0.030036628,0.09457649,-0.41781422,0.06381884,0.37793514,-0.32158262,0.081187785,-0.3476982,0.08171351,1.1164181,-0.13669834,-0.11519736,-0.57640314,-0.54580927,-0.9646907,-0.3540288,0.38044667,0.16686018,0.12826353,-0.81618917,0.10766579,-0.22710547,-0.081123255,-0.023462016,-0.47692233,0.5671501,0.15238316,0.33340302,-0.05511871,-0.7820326,0.12799446,0.12873542,-0.21026951,-0.6265911,0.64752185,-0.27057588,0.7624937,0.19557935,0.15743843,0.23658265,-0.6185665,0.013023124,-0.22539173,-0.08243113,-0.74311167,-0.0054957196 +770,0.29001752,-0.08994159,-0.42257127,-0.0938155,-0.37609947,0.07443057,-0.21875161,0.21691914,0.37138784,-0.09694553,-0.225887,-0.11826951,0.108559705,0.35150555,0.03203111,-0.44129562,-0.20495878,0.2170224,-0.75279117,0.4911323,-0.34545746,0.17690822,0.14539592,0.38578436,0.14514843,0.45667693,0.15668078,-0.10276644,-0.2207381,-0.08808974,-0.1368583,0.2705111,-0.6221586,0.115608215,-0.31982237,-0.09654401,-0.004598508,-0.44866836,-0.30800486,-0.6894008,0.13339837,-0.9610344,0.5370365,-0.03845843,-0.06508641,-0.09711706,0.28806007,0.43899664,-0.34414577,-0.05841336,0.30183837,-0.32437718,-0.16776404,-0.26500964,-0.14143859,-0.27942482,-0.45517164,-0.024003554,-0.48996463,-0.2254143,-0.23885472,0.20404616,-0.22934793,0.05008568,-0.26992464,0.35934025,-0.4949586,0.26346907,0.32555643,-0.38213494,0.19670011,-0.54837626,0.04270537,-0.11367879,0.5028627,-0.03924279,-0.13426976,0.44927642,0.34175923,0.32242128,0.21369047,-0.28945082,-0.33099225,-0.15152234,0.17291863,0.4478576,-0.17612414,-0.08720985,-0.087378025,0.050518822,0.22864528,0.3725681,-0.037736516,-0.24414572,-0.0832134,-0.18138841,-0.041681994,0.3409591,0.51940334,-0.13837478,-0.28556103,0.22034883,0.56197894,0.35565978,-0.19495958,-0.13637947,0.16926551,-0.58947027,-0.18051845,0.1861421,-0.16384524,0.47584587,-0.081747875,0.07597459,0.85185,-0.10951522,-0.023769386,-0.004708717,0.07573899,-0.100864194,-0.28130564,-0.11447572,0.20383462,-0.48899958,0.095378995,-0.15377448,0.4815627,0.096617885,-0.57865494,0.36780408,-0.5173378,0.15581258,-0.021099854,0.5748959,0.6878617,0.45366144,0.41277283,0.7779373,-0.23556513,0.25048807,-0.047440443,-0.43634212,0.107178055,-0.26127577,0.14048417,-0.4533922,0.013440629,-0.2580084,-0.011722887,0.2114803,0.35155818,-0.5001203,0.03558793,0.2302576,0.8411077,-0.2938067,-0.13122633,0.59834564,0.8997795,0.95731443,-0.06710192,1.2259542,0.27612954,-0.19623643,0.08085724,-0.36486652,-0.61949503,0.16517247,0.27091795,-0.38116294,0.2381166,0.032388844,-0.10606343,0.33790737,-0.46380398,0.046329517,-0.044583656,0.2012457,0.16257457,0.050663617,-0.42283386,-0.22598137,-0.13327795,-0.05118101,0.18779792,0.15313229,-0.27457902,0.37742278,-0.013663655,1.5514927,-0.14159815,0.088182315,0.15184627,0.4748241,0.21524532,-0.06602881,-0.117270015,0.53455526,0.36854127,0.13273805,-0.5010834,0.26444504,-0.33564535,-0.2708324,-0.098195754,-0.3542773,-0.13241376,0.10386065,-0.41093495,-0.20514666,-0.08938649,-0.29904696,0.4558747,-2.7112174,-0.0520417,-0.089844055,0.30874762,-0.3024928,-0.19711949,-0.13976988,-0.5756864,0.15982622,0.14149778,0.42402542,-0.59535813,0.33290112,0.6073132,-0.5748433,-0.22341429,-0.600289,-0.14489365,0.0048195124,0.40296504,-0.020014977,-0.100539684,-0.17356713,0.07742079,0.64734966,-0.013251388,0.102466606,0.6249578,0.3747823,0.122702904,0.55847764,-0.1053695,0.53895813,-0.28650168,-0.3051171,0.43928593,-0.17612536,0.34208646,-0.24796233,-0.022083174,0.6136237,-0.31988323,-0.9258196,-0.55950755,-0.3907334,1.0927448,-0.45090058,-0.45653552,0.29739067,-0.22759806,-0.12831935,0.06496118,0.6580325,-0.053555593,0.21604805,-0.68331504,0.06643772,-0.09235663,0.33147132,0.07586838,-0.0055279294,-0.41412708,0.6627223,-0.016788708,0.49804202,0.29753235,0.2661821,-0.17428215,-0.3874449,0.0900929,0.84285873,0.25643617,0.019378673,-0.23774534,-0.24979332,-0.04757476,-0.27894595,-0.094774775,0.5688276,0.6360776,-0.14366356,0.26874766,0.36618167,-0.062267315,0.0037539005,-0.16312627,-0.24077216,0.02029117,0.0813467,0.40285823,0.84835523,-0.084187664,0.42446697,-0.15674025,0.42561978,0.0053239744,-0.6292671,0.55863005,0.5209612,-0.18939768,-0.03559204,0.59023225,0.4415864,-0.37914625,0.46462536,-0.6289591,-0.28719193,0.56774867,-0.13135788,-0.5376971,0.20926234,-0.275077,0.10720158,-0.6357259,0.20851423,-0.15302019,-0.43127203,-0.42981917,-0.13050194,-3.118583,0.06291041,-0.15454316,-0.14918827,-0.22757357,-0.049547207,0.13434511,-0.5463131,-0.5408183,0.11475933,0.20680033,0.5327357,-0.22172932,0.13823907,-0.21824023,-0.21615525,-0.006078772,0.27977672,0.2856459,0.266522,-0.29011753,-0.5306185,-0.04484507,0.04027501,-0.48317435,0.09788196,-0.7274255,-0.36230844,-0.135657,-0.47674066,-0.11260858,0.6074644,-0.5113294,0.010148968,-0.2768889,0.14487915,-0.15184338,0.10982046,0.20068304,0.20918804,0.11646875,-0.12072428,0.04382774,-0.25344408,0.6539992,-0.0011067609,0.3530858,0.19131048,0.09664181,0.22652826,0.32014382,0.62533087,-0.27386525,1.1235547,0.4707037,-0.14793505,0.18415976,-0.30281287,-0.26521453,-0.5495169,-0.3526608,0.0465068,-0.49410772,-0.5045076,-0.018367283,-0.34887248,-0.8546095,0.66780186,-0.047387674,0.29060432,0.013813529,0.12264036,0.49768314,-0.3517937,-0.071562834,-0.06358489,-0.16079743,-0.55512446,-0.4116343,-0.46880907,-0.53562087,0.037232287,0.8864166,-0.24179773,0.13334762,0.07463025,-0.4082181,-0.075848095,0.09988402,0.08141567,0.2767466,0.57351303,0.008868626,-0.68293244,0.42958656,-0.08515566,-0.07447275,-0.55901605,0.18118167,0.54032975,-0.7832579,0.6398079,0.34400374,-0.009969121,-0.09849312,-0.49778736,-0.37720948,-0.1937841,-0.2290694,0.4228931,0.18303326,-0.7325552,0.42057282,0.17994373,-0.56202066,-0.7010194,0.300289,-0.18146499,-0.2497115,0.028222298,0.33056095,0.02327261,0.025109768,-0.12698385,0.09062955,-0.31529644,0.25465956,0.18866095,-0.10125761,0.22153817,-0.13542205,-0.29211745,-0.7449449,0.0822338,-0.34123388,-0.35270587,0.4191725,-0.00088158844,-0.103025004,0.16672802,0.20061558,0.34100896,-0.20561793,0.019254185,-0.024804652,-0.41274256,0.26932594,0.422877,0.49737692,-0.42174694,0.5244064,0.12989505,-0.2916418,0.20564,-0.066141024,0.41724935,-0.07301838,0.3365802,-0.1467136,-0.21411456,0.32256317,0.6826353,0.0660112,0.4126559,-0.021407219,-0.04383322,0.41303098,-0.05589126,0.08564196,-0.045063607,-0.5798218,0.08867402,-0.24354738,0.20332263,0.42204106,0.33860663,0.32118237,0.048725504,-0.19904393,-0.0011965175,0.21574052,0.082656816,-1.103346,0.28722343,0.23238793,0.9089296,0.30813774,0.16547337,-0.16613144,0.79750454,-0.3164932,0.06413128,0.4828195,-0.018910503,-0.44670093,0.69650155,-0.70493436,0.4867597,-0.04315492,-0.13334854,0.19464025,0.106828734,0.28287336,0.85713905,-0.24022745,-0.057100292,-0.0068328218,-0.22007778,-0.040430486,-0.33739153,0.047818545,-0.487867,-0.53678834,0.71169215,0.48927307,0.4653186,-0.1954288,-0.028679034,0.012270133,-0.14742361,0.26886636,-0.01892987,0.023291077,0.120407104,-0.6008734,-0.057066273,0.53694737,-0.09019037,0.21763651,-0.17158595,-0.18646558,0.07424924,-0.32901686,-0.050975885,-0.12921818,-0.7477351,-0.016737998,-0.24597628,-0.579392,0.43353865,-0.21489881,0.12419625,0.09065009,-0.019158464,-0.3682594,0.54669166,0.11729352,1.0132476,0.11705206,-0.11987344,-0.2734458,0.26167494,0.31296137,-0.16477394,0.089715004,-0.3407516,0.063812114,-0.5010401,0.487312,-0.22957903,-0.5438206,0.15395437,-0.29448065,0.01580152,0.58541614,0.0382888,-0.22707005,0.096490115,-0.21470541,-0.48443472,-0.035679482,-0.35840708,0.17210193,0.35637924,-0.10330942,-0.19913386,-0.26616654,-0.22303744,0.42302927,-0.0062950533,0.5069277,0.18433596,-0.024471045,-0.12055306,0.07241281,0.19599985,0.5998106,0.12555367,0.029711533,-0.36182252,-0.34063625,-0.31742898,0.29489657,-0.046069875,0.33494335,0.10587387,-0.23579751,0.95374614,-0.07260491,1.1378331,0.20820478,-0.32905084,0.10403445,0.49622294,-0.110935815,0.044039138,-0.49124017,0.8359036,0.53425574,-0.088352345,-0.03271071,-0.39775068,0.021572892,0.30313075,-0.25884894,-0.05169229,-0.07359989,-0.6246642,-0.2927625,0.23483324,0.17531551,0.21116771,-0.067097254,-0.022511395,0.02718827,0.10308177,0.27397996,-0.5224161,-0.23557867,0.34848064,0.2264499,-0.1396902,0.216793,-0.404613,0.5080441,-0.46744785,0.05372499,-0.43282166,0.14401156,-0.27233198,-0.2411582,0.15559775,-0.13279998,0.42629325,-0.41572914,-0.31921807,-0.16347288,0.3939351,0.11781071,0.16427006,0.65311825,-0.29531226,-0.0136852665,0.050650127,0.52569556,1.0132042,-0.67069143,0.14459139,0.29957736,-0.33470136,-0.57158375,0.5036437,-0.3925132,-0.13311414,-0.03888039,-0.43888515,-0.3625334,0.21604629,0.014797342,0.023162642,0.04485617,-0.5303133,0.08861614,0.24607341,-0.19812424,-0.23200265,-0.22506168,0.34621087,0.65632427,-0.19634666,-0.45049986,0.14543562,0.28319514,-0.23667262,-0.3401717,-0.065766424,-0.20132956,0.22081253,0.05707341,-0.35574672,-0.15635015,0.2100081,-0.44879645,0.021849366,0.18882614,-0.33358517,0.07951818,-0.14041929,0.0022131046,0.87794036,-0.3162483,-0.07776901,-0.6325977,-0.47101584,-0.9347286,-0.26697075,0.10090902,0.13218251,-0.084954314,-0.3817827,-0.02939125,-0.22455493,-0.104382135,0.009120408,-0.65365815,0.3923741,0.1355349,0.48828635,-0.35965207,-0.8799227,0.19009878,0.1213162,-0.12517168,-0.63758785,0.49524397,-0.10713894,0.84237665,0.034718223,-0.07300186,0.14217782,-0.38715044,0.010438337,-0.22171663,-0.18455805,-0.80560917,0.00069941086 +771,0.45263153,-0.20102233,-0.4351648,-0.11092388,-0.18231954,0.11590826,-0.2287694,0.4212764,0.13977706,-0.53675056,-0.14741005,-0.16596618,0.06070657,0.44290966,-0.19966777,-0.6054223,0.109076254,0.12496923,-0.40373972,0.5339193,-0.57047784,0.3288861,0.046725824,0.39857256,0.32198936,0.080406465,0.16959201,-0.07336627,-0.20602277,-0.36216864,-0.15759477,0.2143967,-0.35942486,0.012772787,-0.08102099,-0.37746227,0.02813368,-0.58034766,-0.3107192,-0.8884658,0.30422866,-0.8238967,0.72811836,0.07476579,-0.19390416,0.24118795,0.25445893,0.3805924,-0.12126342,-0.08524739,0.18405789,-0.2867966,-0.08095369,-0.361922,-0.19386347,-0.51255536,-0.7218678,0.015004135,-0.5443773,-0.40712303,-0.21205306,0.20266128,-0.37846893,-0.17992672,0.0383518,0.6200923,-0.4026977,0.028946092,0.22803122,-0.14316711,0.4389294,-0.6272204,-0.053439103,-0.07962573,0.2488901,-0.1640154,-0.25225526,0.20329963,0.4552601,0.35318327,-0.04510699,-0.28830355,-0.24905413,-0.059473917,0.078785054,0.49184275,-0.2505287,-0.57206243,-0.0027806438,0.031896956,0.35250574,0.29203156,0.33807886,-0.060681906,-0.09748812,0.24878223,-0.29521993,0.6468672,0.35883585,-0.39710066,-0.07019173,0.36819422,0.50071377,0.22132741,-0.16248454,-0.12463801,-0.0367462,-0.65722233,-0.20072205,-0.047329817,-0.4463759,0.5893805,-0.2672792,0.3855352,0.7042075,-0.24310128,0.0526401,0.1759732,0.088587165,0.019508123,-0.23286176,-0.29244903,0.27375054,-0.52930933,0.057755854,-0.18545829,0.7024927,0.19506563,-0.47021902,0.32435882,-0.63134265,0.18119973,-0.08218264,0.43207604,0.61604667,0.47824198,0.39715025,0.6246586,-0.3719517,-0.08269404,0.10031504,-0.3474747,0.1667681,-0.14707233,0.0048028138,-0.53070545,-0.114703625,-0.04829871,-0.0885822,0.15659197,0.44174212,-0.705794,-0.10629852,0.028217133,0.8742416,-0.2649034,-0.1295411,0.76622605,1.1000034,1.0536621,-0.040192273,1.1387929,0.20805219,-0.28678992,0.040969368,-0.13379556,-0.49262488,0.43934923,0.40442607,-0.7166924,0.44493058,-0.059883066,-0.08698273,0.37675703,-0.35365188,-0.13968235,-0.08083392,0.091315344,0.074462846,-0.30902088,-0.5156924,-0.22423516,-0.21753886,0.045040276,0.24645281,0.33075684,-0.2381696,0.36275938,-0.05011762,1.4019004,-0.064411685,0.12959118,0.12391495,0.35396278,0.28041404,-0.048893414,-0.009313767,0.41682035,0.37243238,0.28640202,-0.6202444,0.17784993,-0.2135897,-0.38369095,-0.07976658,-0.37114716,-0.0511918,-0.09436442,-0.42403543,0.022438267,-0.23161823,-0.29071453,0.3530596,-2.6734748,-0.36452764,-0.05837468,0.47552806,-0.15740559,-0.36738867,0.025419427,-0.36843687,0.42747858,0.17083064,0.52896035,-0.7129058,0.38664308,0.42555317,-0.62738186,-0.26423618,-0.7230275,-0.23930386,-0.11094703,0.33690736,0.066089734,0.01654977,0.20744249,0.2804879,0.53279406,0.04590911,0.24686135,0.2251747,0.45928714,-0.1925436,0.6625951,-0.08880852,0.59422755,-0.028895058,-0.27211228,0.32818228,-0.3610527,0.19192675,-0.08425306,0.13541177,0.45248523,-0.32596815,-0.9196631,-0.6939633,-0.20631504,1.1627972,-0.12816212,-0.394033,0.2206178,-0.33154643,-0.3466677,0.003778852,0.57749903,-0.18302345,-0.01936189,-0.79496104,0.028737834,-0.055093892,-0.011850252,0.08541444,0.07825799,-0.5010709,0.5550198,-0.06981147,0.3188036,0.29039592,0.28100938,-0.4762773,-0.4987456,0.0002401666,0.92881805,0.5199973,0.0149911875,-0.12802078,-0.13869783,-0.46638313,0.052700024,0.029910129,0.72154367,0.8223555,-0.11709128,0.09069629,0.27638647,-0.005174334,0.13115495,-0.15665469,-0.31011677,0.01200286,-0.088723555,0.5982951,0.6415225,-0.18568622,0.5694875,-0.051988088,0.34102827,-0.24284783,-0.5161418,0.509894,1.1784567,-0.29843995,-0.27189705,0.6984939,0.3654409,-0.24488407,0.3788547,-0.60485613,-0.2782481,0.5901385,-0.18086042,-0.49904367,0.23311175,-0.21242546,0.12061606,-0.9313031,0.42511994,-0.35240772,-0.5616277,-0.36116415,-0.0001480671,-3.5967467,0.25341934,-0.40355352,-0.17081887,-0.23260559,-0.064311676,0.33141544,-0.7710498,-0.52917457,0.0047202087,0.02720295,0.907389,-0.17868277,0.07409604,-0.20580758,-0.40883362,-0.13244149,0.24283248,0.099542566,0.35732958,-0.0892295,-0.40429047,0.08891311,-0.06188535,-0.5833006,0.12456726,-0.7008399,-0.64889425,-0.12730342,-0.51899993,-0.33563122,0.73410195,-0.22503391,0.10204477,-0.18344235,0.14395441,0.031000448,0.30515045,0.14185797,0.19637336,0.036364883,0.027228173,0.1665269,-0.2664634,0.2725127,0.07606055,0.32025418,0.28167346,-0.073479205,0.3268922,0.49830335,0.6225946,0.04094155,0.90903634,0.41443694,-0.04380554,0.21182369,-0.30737656,-0.40915248,-0.39289606,-0.34904703,0.0022315246,-0.3874318,-0.3918661,-0.15091795,-0.37711635,-0.8126391,0.64845854,-0.045255847,0.30321744,-0.16539706,0.53302354,0.6335652,-0.21524447,-0.05797774,0.11644831,-0.26489064,-0.5895684,0.11638828,-0.68618673,-0.5557508,0.04632507,0.6884688,-0.3329107,0.21249507,-0.037080165,-0.06430289,0.0073648323,0.1721004,-0.14200662,-0.024101194,0.47109714,-0.12726575,-0.7566122,0.40688735,-0.23579921,-0.17970583,-0.57730716,0.25235087,0.81271625,-0.5043425,0.5559802,0.5248401,-0.10750559,-0.3275641,-0.5561274,0.025358833,0.21901971,-0.28398746,0.38778785,0.19228615,-0.79292995,0.4047077,0.40034983,-0.42943498,-0.60434985,0.7823657,0.043714054,-0.3100667,-0.09146408,0.46789533,0.23022754,0.11745115,-0.2383483,0.33809802,-0.47528756,0.18616493,0.14551184,-0.06834253,0.22115758,-0.004730775,-0.13766733,-0.9668996,0.015415916,-0.5178133,-0.37313017,0.3095517,0.08698607,0.24410635,0.2943739,0.25850323,0.41289786,-0.40328422,0.14795256,-0.13144591,-0.27484444,0.42701337,0.63120675,0.48113558,-0.41954538,0.59302765,0.06587715,-0.082323514,-0.031115811,-0.009339016,0.46838024,0.045618113,0.58367574,0.061863247,-0.20768477,0.2855704,0.5157457,0.10827006,0.4578716,0.22953683,-0.062335394,0.0030799943,-0.0093999375,0.28986135,0.045602478,-0.66862065,-0.123250686,-0.18247572,0.13042504,0.6398036,0.1494548,0.22030783,0.023278087,-0.5228023,0.0062539736,0.17891058,0.039297756,-1.3680375,0.5501555,0.27305433,0.7524362,0.2676491,0.07295504,-0.052555885,0.55790275,-0.08521588,0.03878089,0.45847556,0.11528648,-0.5253758,0.6218375,-0.9492557,0.3678487,-0.07828753,-0.027631728,-0.22884025,-0.1821336,0.470774,0.90968,-0.20674965,0.005180272,0.0148479575,-0.31370276,0.2975543,-0.51798135,-0.016863765,-0.5285396,-0.32485154,0.5127149,0.59530103,0.35547546,-0.20577739,0.09694561,0.2995188,-0.1649181,0.3060589,0.0973254,0.19690663,-0.09080955,-0.68616474,-0.16350414,0.41335085,0.015643977,0.2216951,-0.099417806,0.052146867,0.19896783,-0.17992224,-0.12575755,-0.079191774,-0.6000968,-0.08885987,-0.4367565,-0.49060932,0.548903,-0.27105772,0.19209555,0.10665214,0.008247777,-0.10900486,0.26824415,0.14587082,0.61761975,0.104016796,-0.29263493,-0.2745147,0.3083574,-0.051750958,-0.2209274,-0.039114155,-0.16571523,0.20748681,-0.60277075,0.4832344,-0.122898415,-0.2910886,-0.1035999,-0.13127996,-0.015216387,0.46391872,-0.2545266,-0.13955861,-0.2548466,-0.33799535,-0.15911545,-0.35428238,0.09636234,0.2309177,0.28530714,-0.114336774,-0.20857292,-0.1020073,-0.2562569,0.35770628,-0.088711515,0.5856608,0.53823316,-0.016053949,-0.23758382,-0.31758526,0.37704223,0.4030438,0.018434336,-0.16386057,-0.44432443,-0.5068805,-0.32345822,0.1444545,-0.068257205,0.553684,0.044851966,-0.07010269,0.8784015,-0.0584554,1.316145,-0.1514169,-0.52989966,0.049101166,0.64094794,-0.09570433,-0.21791857,-0.3531469,1.083871,0.32077128,-0.12497687,0.0006725135,-0.43622506,0.008106791,0.2665995,-0.25174823,-0.18395105,-0.05475507,-0.4927294,-0.31402892,0.26841304,0.28209874,0.16116363,-0.11256183,0.09892754,0.4169851,-0.14318922,0.37217093,-0.5435075,-0.21645302,0.27771753,0.42295578,-0.046487316,0.07109738,-0.4124688,0.46970627,-0.48930895,0.09799134,-0.3201933,0.21053259,-0.10844182,-0.46905792,0.3506975,0.07039123,0.2368144,-0.27805603,-0.36578724,-0.11562621,0.29535836,0.17179778,-0.033519235,0.502596,-0.31091267,-0.038626965,-0.0073946486,0.6601552,1.2823315,-0.099601455,0.047611393,0.3896692,-0.50529873,-0.75607914,0.4082259,-0.40929487,0.17912666,-0.03811968,-0.261662,-0.6177043,0.20424856,0.21915817,0.16865672,-0.003345884,-0.5475568,-0.2536931,0.26002532,-0.4066771,-0.22168095,-0.24668995,0.16669711,0.48088965,-0.3268842,-0.37875304,-0.1743223,0.2648734,-0.19554274,-0.41322595,-0.0755429,-0.31710607,0.32591838,0.010061998,-0.41459355,0.04006233,-0.089759,-0.49173304,0.27581197,0.033920743,-0.2820625,0.21289611,-0.18833359,-0.09301415,0.73569286,-0.2937257,-0.040233,-0.40841553,-0.51524127,-0.600106,-0.4049028,0.22808519,0.009893353,0.038803358,-0.5816451,0.023827236,-0.09979118,-0.061464503,-0.048749328,-0.31772187,0.35611743,0.12624003,0.35702425,-0.12794924,-0.76112545,0.2125655,0.16858277,-0.19461474,-0.7316077,0.5225427,-0.17442928,0.85603404,0.08124955,0.14383392,0.27397615,-0.30434337,-0.09356272,-0.19633618,-0.27037567,-0.79719454,-0.019303368 +772,0.3226612,-0.33320132,-0.6281918,0.08433208,-0.21837534,0.2526346,-0.3293374,0.45423663,0.11870519,-0.44908005,-0.022094063,-0.29250893,-0.050463457,0.23448361,-0.11898056,-0.48694694,-0.121304475,0.37601304,-0.31271946,0.4687368,-0.1812971,0.11729138,0.19682151,0.45398247,-0.29420772,0.04358083,0.09423205,-0.17956607,-0.021439185,-0.0683057,0.28087014,-0.14401756,-0.9141283,0.3423541,-0.20836757,-0.38553986,0.2685621,-0.5991843,-0.32329294,-0.5956052,0.13055795,-0.9128933,0.72434384,0.14458744,-0.20918663,0.06421003,-0.26453835,0.031570673,-0.16226637,0.011749221,0.40059954,-0.40712237,-0.3487305,-0.316244,-0.14041367,-0.50604075,-0.6901955,-0.04057473,-0.43201077,0.3120706,-0.22581376,0.14182526,-0.26646173,0.029548274,-0.05997537,0.20085788,-0.5756163,0.099806175,-0.035418604,-0.11956635,0.3071832,-0.5253198,-0.08118117,-0.20192379,0.246072,-0.14043519,-0.1347205,0.07861963,-0.042247634,0.70884776,-0.05822002,-0.045146305,-0.3186271,0.24402434,-0.069570236,0.57951695,-0.03246567,-0.2581869,-0.025295397,-0.120833516,0.12246421,-0.16238648,-0.21694078,-0.18175411,-0.08450263,-0.41780457,-0.23711589,0.2700769,0.58817744,-0.31171957,0.018271737,0.41664574,0.77037454,0.31592792,0.11120061,0.013982634,0.06724116,-0.4811344,-0.16656452,-0.00028157898,-0.27379376,0.7483205,-0.11074887,0.43899918,0.5758408,0.07077234,-0.15785381,-0.122507915,0.021364296,0.12642524,0.075986,-0.38348734,0.61118186,-0.17329155,-0.122593336,-0.17297658,0.5527771,0.08564341,-0.8352454,0.45854208,-0.41861638,-0.027452005,0.0750186,0.72178125,0.47125328,0.86031806,0.053595092,0.8302852,-0.58568835,0.16579127,-0.06491195,-0.3045871,0.34635827,-0.013924162,0.27715644,-0.36881793,-0.098021716,0.008432726,-0.4210564,-0.05294492,0.7626969,-0.4988551,-0.111803085,0.08780941,0.6234958,-0.2952267,-0.1812922,0.4161781,1.0027354,0.76927143,0.14274976,1.2277111,0.18145424,-0.21167381,-0.25004354,-0.034449194,-1.1729898,0.10183292,0.22074825,0.2332161,0.46181938,0.3991738,-0.15151079,0.49809435,-0.53007483,-0.1857157,-0.028076045,0.4896946,-0.13572685,-0.028816786,-0.4652654,-0.12089177,-0.064219065,0.07322792,0.02469237,0.44600594,-0.06686573,0.32502788,0.19405428,1.872861,-0.0050164857,0.1434223,0.091394804,0.30029076,0.15976498,0.09779021,-0.4086226,0.281728,0.17586488,0.21608472,-0.46899876,0.14377788,0.061656296,-0.63322735,-0.23011763,0.0330886,-0.16114296,-0.46354872,-0.1996319,-0.26316562,0.13717067,-0.45814997,0.297946,-2.275334,-0.14376463,-0.049502227,0.67741704,-0.33950055,-0.3022312,-0.2191857,-0.21516806,0.41952062,0.51650023,0.533788,-0.60360724,0.38534826,0.5379132,-0.5631802,-0.08349382,-0.5696032,-0.116508216,0.17771682,0.16989666,0.037737064,-0.4340609,0.19921078,0.03739341,0.01380037,-0.20076445,-0.058381062,0.3588035,0.7372527,0.16323453,0.43768248,-0.33992657,0.3436167,-0.53800803,-0.082790114,0.27327338,-0.36770344,0.5262363,-0.46400186,0.13454999,0.28338343,-0.38281336,-0.8411802,-0.30642658,-0.14749902,1.0326376,-0.38792086,-0.3364454,0.08573161,0.15563826,-0.4360103,-0.023223711,0.4965006,-0.30891985,-0.113324195,-0.90587944,-0.15983932,-0.17960428,0.5793898,0.13458759,0.2670649,-0.7433455,0.60280925,-0.048499532,0.5067764,0.8337125,0.162996,0.11631187,-0.4697387,0.20000319,0.8627584,0.27398145,0.35174683,-0.51137555,0.09787598,-0.05010805,0.16929682,-0.23035349,0.48879877,0.602884,-0.20157287,0.045297995,0.33479077,-0.046354696,-0.10524216,-0.28108066,-0.50978667,-0.18257779,0.00088437396,0.66277236,1.1584302,-0.2821519,0.19625899,-0.13631386,0.17634168,-0.3293799,-0.36370718,0.5633228,0.37498027,-0.21727209,0.013736127,0.4706566,0.37780347,-0.40961626,0.47250473,-0.6673417,-0.5828658,0.28089836,0.025731346,-0.43733898,0.2734144,-0.270622,0.051171802,-1.0402353,0.4118309,0.009385109,-0.5085562,-1.0284595,-0.13907641,-2.0949345,0.15958926,-0.17008938,-0.21276076,-0.011630075,-0.09134085,0.13549049,-0.58362496,-0.7102816,0.41147774,0.08421115,0.32622918,-0.09759304,0.2516388,-0.30945736,-0.31291616,-0.20259957,0.24148387,0.4670244,0.1013043,0.12023927,-0.6025806,-0.13610303,-0.16580333,-0.06696962,0.031504378,-0.60416806,-0.1465715,-0.10531816,-0.52209044,-0.1973184,0.65899163,-0.54703456,-0.14027636,-0.34408164,0.007965167,0.0042148135,0.21922694,-0.18141145,0.041014835,-0.005933649,-0.20178334,-0.22821504,-0.08333084,0.23338816,0.12122533,0.13481587,0.5895684,-0.32167578,-0.024115954,0.68498254,0.7226591,-0.03913208,0.9328571,0.37417197,-0.11470628,0.26843345,-0.28702033,-0.099887066,-0.6397798,-0.17175385,-0.18044007,-0.5753291,-0.44118255,0.1439271,-0.33023086,-0.8512999,0.5820359,-0.067262225,-0.22187525,0.23978692,0.37861216,0.25628287,-0.28096637,0.04450681,-0.1693969,-0.2085967,-0.44177186,-0.5619926,-0.5237182,-0.38566768,0.010221415,1.2117401,-0.07119339,-0.0511004,0.34412357,-0.18395121,0.10562739,0.013204336,-0.034997582,0.13410215,0.4271875,0.36669022,-0.6792243,0.46367392,-0.10159377,-0.08223554,-0.70962423,0.020430548,0.73666817,-0.8610575,0.20815526,0.4383086,-0.042602252,0.13550024,-0.67697644,-0.40115812,0.09067146,-0.1400764,0.11101612,0.20589703,-0.56671834,0.3711416,0.18932655,-0.35521835,-0.89615005,0.41928795,0.015045926,-0.38849008,0.14775313,0.3509858,-0.116484456,0.09031342,-0.53895396,0.19517542,-0.31528315,0.37176564,-0.010068668,-0.41983736,0.51413983,-0.22586271,0.02865845,-1.0124985,-0.053035457,-0.27698243,-0.2950544,0.4869566,0.073279195,0.023377905,-0.054035127,0.5729525,0.43711576,-0.73107475,-0.1640046,-0.20541614,-0.39747536,0.3433827,0.4456717,0.47581154,-0.5822007,0.5693978,-0.12196954,0.06454395,-0.18318318,-0.1330502,0.4570587,-0.13977607,0.055106293,0.15205969,-0.122927986,0.089958996,0.9233391,0.26578882,0.41725838,0.2922993,-0.15228456,0.6060531,0.15175274,0.24302308,-0.30456358,-0.6025722,0.38096538,-0.05583396,0.12201635,0.26035255,0.08951998,0.46978426,-0.4170258,-0.07611328,0.11532964,0.47408634,0.2832235,-0.7340594,0.3238678,0.07506417,0.55708176,0.6730229,0.15741122,0.38541186,0.60996765,-0.18343891,0.18971348,0.32751778,-0.022228308,-0.3246597,0.44033676,-0.5192883,0.1751638,-0.30389488,-0.008494311,0.39464748,-0.10611844,0.5521308,0.8068841,-0.03938369,-0.01131604,-0.18616633,-0.047494605,-0.24378936,-0.27633068,0.15096712,-0.54897285,-0.31996316,0.7331679,0.45238835,0.33181566,-0.2650951,0.014355198,0.11165318,-0.20462853,0.4421899,0.17824203,-0.056118548,0.16998357,-0.61424965,0.026625939,0.85787386,0.17676836,-0.120578796,-0.073913515,-0.27234292,0.4323982,-0.20914038,-0.28799665,-0.10574892,-0.9407489,0.1026288,-0.53910685,-0.24498834,0.5447925,0.3455568,0.32436025,0.10474434,0.01828205,-0.35553142,0.43538225,0.18565835,0.98328644,0.39170447,-0.34475198,-0.3158774,0.048915427,0.2897395,-0.19197315,0.10923711,-0.114747554,0.16268188,-0.38630855,0.34604204,-0.15406315,-0.2911569,0.20971009,-0.3075933,0.09307768,0.5957155,0.121783465,-0.051202025,0.05659106,-0.13395223,-0.19670238,-0.15867776,-0.5628531,0.19537663,0.014534818,-0.01679311,-0.073162675,0.13090245,-0.28101742,0.62211007,0.4765021,0.08697737,0.49725035,0.15699261,-0.5351664,-0.04113554,-0.21034677,0.6784907,-0.05799393,-0.21585536,-0.41884702,-0.631821,-0.26518077,0.32386923,-0.23597015,0.06882989,0.09434489,-0.4642175,0.8854268,0.31092113,0.9339797,0.049247093,-0.18810754,0.21131986,0.64538586,0.045411136,0.11249909,-0.6065657,1.2373308,0.5897362,-0.18665454,-0.17940326,-0.15325147,-0.37331048,0.04850923,-0.2971334,-0.3001998,-0.16886245,-0.8270995,-0.09811637,0.2476782,0.1359275,-0.20311396,-0.1877487,0.16028698,0.25297597,0.13735007,0.087705486,-0.66800815,-0.19253899,0.3723769,0.11738525,0.1505474,0.059411842,-0.22142966,0.35528675,-0.38759652,-0.009677897,-0.6435529,0.07896121,-0.08060201,-0.26052383,0.10279766,0.13119218,0.37135515,-0.43230146,-0.32909986,-0.026287006,0.36417645,0.39058936,0.27278644,0.66777825,-0.18961406,-0.07988049,-0.038530774,0.5379996,0.9642737,-0.6116317,0.301409,0.6634376,-0.34067357,-0.5229993,0.32474187,-0.28599274,0.14018056,-0.39088956,-0.20075828,-0.54224694,0.19557951,-0.0072273016,-0.26894516,-0.27603748,-0.7056881,0.014270451,0.60001975,-0.32539216,-0.14067888,-0.11589345,-0.16536058,1.0437486,-0.11817908,-0.4466926,0.14191523,0.25854892,-0.33991635,-0.55908376,-0.09518549,-0.58716434,0.15902723,0.27292597,-0.35171926,-0.0792543,0.24471444,-0.6028831,-0.05204112,0.23641337,-0.30885404,-0.08466535,-0.5265943,0.30802998,1.0559608,-0.010661019,0.089905106,-0.4168213,-0.42766723,-1.0458881,-0.073878855,0.44530213,0.23065287,-0.15259027,-0.47096756,-0.06443106,-0.3568368,-0.33425125,-0.17246562,-0.582164,0.44301644,0.12792856,0.43804845,-0.23573624,-0.9585264,0.19402266,0.067445,-0.4267887,-0.383718,0.44275248,-0.025491156,0.9112481,-0.11947355,0.10427252,0.25785744,-0.8933502,0.12710959,-0.21632229,-0.14140116,-0.63007045,0.097754344 +773,0.5211235,-0.3992587,-0.46883443,-0.1558355,-0.35569632,0.12476073,-0.15536168,0.44289902,0.27220634,-0.31184122,-0.25648507,-0.12540689,0.039891783,0.14594318,-0.16190863,-0.36712602,-0.0915808,0.27028745,-0.48557422,0.5411143,-0.28050512,0.16520956,-0.042607155,0.54968303,0.50593907,0.2555206,-0.13264748,0.10593479,-0.37352848,-0.15977964,-0.10785434,0.47509155,-0.37477174,0.13070388,-0.32337344,-0.41995582,-0.10443342,-0.54058945,-0.3803218,-0.7715092,0.33536503,-1.017032,0.41684443,-0.1556236,-0.20436683,0.31727347,0.1312205,0.2590178,-0.15069482,-0.2675012,0.1434614,-0.06432067,0.0018341024,-0.22603868,-0.15130834,-0.33221248,-0.5046569,-0.04096215,-0.2771133,-0.15080658,-0.24023348,0.14129864,-0.3694442,0.111916415,-0.06111935,0.5768804,-0.34542125,0.27394643,0.118719086,-0.013919203,-0.0602513,-0.5598418,-0.2502767,-0.1421064,0.30129382,-0.11543568,-0.30289152,0.18116048,0.3511568,0.3033161,-0.075455524,-0.1436601,-0.2634159,-0.15711895,0.12115458,0.43753687,-0.0755351,-0.58000404,-0.111993484,-0.09702743,0.29511005,0.17684828,0.2092985,-0.18206114,-0.049908575,0.02531937,-0.15849042,0.4297619,0.33420599,-0.26485518,-0.14376669,0.34154806,0.63620096,0.18806419,-0.25382012,-0.12516889,0.11692132,-0.47933456,-0.08086433,0.060818672,-0.23535194,0.5555065,-0.20925765,0.31923977,0.6201069,-0.14992423,-0.059947174,0.15225035,0.25672966,-0.23969157,-0.36854273,-0.37222627,0.23109867,-0.40941355,0.17111367,-0.077187695,0.73482376,0.07566918,-0.61219734,0.29364434,-0.5801333,0.08585392,-0.13407081,0.3411008,0.6525354,0.38107646,0.38429406,0.4562441,-0.097414814,0.006289963,-0.11150702,-0.34250444,-0.07423084,-0.30114093,0.1557079,-0.52267677,0.19469897,-0.042954393,-0.08672234,0.04551616,0.56738335,-0.45061773,-0.24872415,0.09414453,0.8519555,-0.23589896,-0.20776151,0.90930927,0.8453512,0.9105578,0.014028264,1.0782878,0.24719481,-0.182648,0.19060197,-0.10515717,-0.7063933,0.3026083,0.28695902,-0.5761464,0.14566582,0.15637615,-0.022317994,0.36561298,-0.34879366,-0.011913562,-0.22411428,0.03480329,0.25850427,0.09295643,-0.49228904,-0.34732533,-0.08820998,0.07466542,0.24882135,0.33699974,-0.18151014,0.59005654,0.17370214,1.8506645,-0.032207627,-0.056475934,0.073018864,0.39375973,0.20835926,-0.09080072,-0.08875202,0.31293935,0.21437334,0.11322559,-0.519342,0.1540014,-0.20726813,-0.34473982,-0.10792492,-0.32392284,-0.26629916,-0.05438498,-0.4903077,-0.20576066,-0.22299442,-0.20859668,0.4416796,-2.6436338,-0.28696615,-0.072411746,0.35666853,-0.2158468,-0.50247794,-0.10479465,-0.5355648,0.21675079,0.13822083,0.4770535,-0.6358856,0.32459763,0.37080058,-0.55675864,-0.11234759,-0.6282555,-0.11377866,0.105772525,0.31474158,-0.103676654,0.10052738,0.06065723,0.06040412,0.4131499,0.040836263,0.1701388,0.42198727,0.5266508,0.02472388,0.5407112,0.017894976,0.5879718,-0.28133357,-0.25487456,0.23654053,-0.357851,0.37340096,0.04125317,0.16963056,0.73529613,-0.4198348,-0.81194305,-0.64651436,-0.038755417,1.0525668,-0.17305598,-0.2646176,0.18125153,-0.69028777,-0.42906228,-0.11644738,0.41246262,-0.16465025,-0.17057627,-0.73255855,-0.03904232,-0.07297086,0.07319272,-0.08284851,-0.15248771,-0.28005153,0.6393987,-0.05870308,0.39747897,0.2021735,0.09827236,-0.41466695,-0.38099813,0.072911896,0.7888494,0.37143502,0.16509822,-0.33662862,-0.20040491,-0.38104898,0.046066225,-0.0028926888,0.5151518,0.41122797,-0.018989762,0.23769657,0.25689855,0.015401523,0.049757708,-0.20997801,-0.21058968,-0.23857574,0.034274396,0.48800448,0.6881931,-0.27488473,0.51733553,-0.014990461,0.30401453,-0.18167748,-0.4448517,0.40270194,1.2742392,-0.21816775,-0.35564366,0.59805036,0.4163974,-0.37376294,0.32089013,-0.39231542,-0.123434804,0.44189784,-0.16868176,-0.3610094,0.19471769,-0.19918491,0.10987641,-0.7282004,0.14546537,-0.13102381,-0.509419,-0.6155034,-0.016066253,-2.1894083,0.16956359,-0.14170519,-0.2706462,-0.17954494,-0.3911713,0.044619583,-0.6033792,-0.6045255,0.25624302,0.018037356,0.7691175,-0.12261644,0.15920338,-0.14202219,-0.39822164,-0.14505209,0.0124605335,0.22598937,0.41488346,-0.1763743,-0.49143648,-0.05579621,-0.059343044,-0.293474,0.07354415,-0.7276757,-0.42451584,0.004914863,-0.48156986,-0.34231958,0.5779035,-0.24748753,0.06736117,-0.23894729,0.047205463,-0.18933088,0.28228536,0.121375,0.06979839,0.0144041935,-0.045863427,0.10116578,-0.2449259,0.28385288,-0.050665442,0.24998528,0.29735947,-0.091428325,0.34363365,0.3507835,0.63668144,0.098211765,0.9939721,0.365516,-0.09786458,0.22581233,-0.1678679,-0.4600811,-0.4875058,-0.13419059,0.010627154,-0.3899598,-0.36240134,0.0031357158,-0.40496433,-0.7148114,0.5984195,0.123966284,0.24778178,-0.073307626,0.29798093,0.7073828,-0.2375265,0.0130647635,0.034092322,-0.13603435,-0.60478467,-0.32807985,-0.4615811,-0.39678097,0.13259219,0.9387747,-0.19874886,0.15842442,0.14858514,-0.3448649,0.025403349,0.32043648,-0.16272901,0.24658802,0.6310979,-0.17716329,-0.5674495,0.45273933,-0.1663899,-0.16057298,-0.48916203,0.19789413,0.5838458,-0.59792686,0.59088033,0.33925048,-0.072550416,-0.35842165,-0.38530737,-0.19008937,-0.05100312,-0.20105238,0.46237728,0.5326576,-0.7317476,0.35585508,0.34525502,-0.04430666,-0.7231271,0.59684,0.036701627,-0.31003532,-0.20180504,0.39442495,0.11907441,0.04158145,-0.19382903,0.10461531,-0.3099025,0.13799092,0.19193181,-0.1701094,0.05177733,-0.25571552,-0.043026783,-0.8358863,0.08613288,-0.38426057,-0.34788603,0.30063665,0.076820396,0.22142741,0.20588979,0.030517336,0.26851442,-0.4763703,-0.058097973,-0.07492956,-0.30507824,0.17432019,0.32922184,0.55602574,-0.43071505,0.505201,0.039634928,-0.15025991,0.12008731,-0.011897703,0.31996688,0.034385834,0.38067594,0.16187567,-0.26821855,0.2633809,0.82980853,0.19241887,0.45824584,0.042729493,-0.08079119,0.1133802,0.068499975,0.31097344,-0.1323767,-0.6441886,0.010416778,-0.32779834,0.15458846,0.4346127,0.06095556,0.2689491,-0.18879344,-0.39527225,0.049952812,0.03537709,0.14342956,-1.3213449,0.15477377,0.22068745,0.8963934,0.26986802,-0.095872514,0.0027820945,0.7332633,-0.15672064,0.1630216,0.41402212,-0.047167525,-0.37209684,0.5422917,-0.59764206,0.3994699,-0.010001675,0.02486351,0.047907013,-0.10522416,0.36164063,0.6524361,-0.20519193,-0.09867979,0.0034217695,-0.43726358,0.24289683,-0.29912683,0.1033355,-0.6628955,-0.22180715,0.63883466,0.6775972,0.3859084,-0.20265332,0.09643699,0.08888157,-0.12768093,0.11383525,0.22171289,0.1914681,-0.054275937,-0.66998315,-0.10253094,0.5181892,-0.013125523,0.12146703,-0.08429206,-0.23432942,0.2743486,-0.14123438,-0.0381934,-0.13581507,-0.7954763,-0.0023510912,-0.35745135,-0.6203133,0.5487059,0.03355721,0.10390985,0.28029197,0.053366605,-0.31395656,0.44068107,0.15726124,0.8780201,-0.07893206,-0.039002478,-0.3264024,0.18422012,0.16333933,-0.08630572,-0.0939196,-0.29899204,0.16556734,-0.58671314,0.48329532,0.032707963,-0.30328065,-0.10953982,-0.020725794,0.15265585,0.5017868,-0.103073746,-0.07909818,-0.26366892,-0.0032355348,-0.3874816,-0.24042305,0.00037253698,0.2786312,0.31712404,-0.055157457,-0.23418209,-0.11530966,-0.23534513,0.39819214,-0.06475287,0.44204682,0.40939057,0.037514795,-0.12141455,-0.24372046,0.1736351,0.52277434,-0.13615409,-0.2773898,-0.45077404,-0.41646424,-0.28736782,0.40206012,-0.03257174,0.42851016,0.09648605,-0.1129458,0.7171053,-0.22107531,1.0185763,0.189599,-0.45694426,0.17429806,0.50417054,-0.016366469,-0.092771366,-0.27413982,0.7810157,0.27351773,-0.041930206,-0.07091103,-0.4624957,0.04957626,0.149298,-0.13120922,0.009743405,0.010084798,-0.39858976,-0.14986318,0.1017114,0.19461162,0.25206113,-0.168742,0.2597609,0.43248796,-0.09986495,0.28876102,-0.40495166,-0.30661213,0.22445086,0.16025297,-0.0758466,0.16787106,-0.4788813,0.3416621,-0.40922567,0.12205728,-0.46575245,0.39300337,-0.22136976,-0.23993383,0.17171934,0.06774591,0.3280266,-0.37333757,-0.29320037,-0.3745344,0.46467036,0.1549135,0.032402582,0.3436788,-0.2866744,0.060336407,0.042888608,0.48095754,0.78335726,-0.07346727,0.025293421,0.3768271,-0.31239697,-0.5076281,0.48556137,-0.3592077,0.26820654,0.16850781,-0.0043112594,-0.5795981,0.3178909,0.37067768,0.22805516,-0.12669925,-0.5793207,-0.056946468,0.36040682,-0.24102254,-0.026068926,-0.29285464,-0.064119786,0.37212533,-0.20579453,-0.43780568,-0.08407758,0.14194518,-0.010314123,-0.36534277,-0.0529413,-0.5874231,0.19220097,-0.022231314,-0.31040466,-0.23651405,-0.01430438,-0.37026516,0.15105219,0.11926952,-0.2924915,0.07598337,-0.3088891,-0.028618196,1.0875385,-0.13807186,0.2699415,-0.4290032,-0.4024666,-0.6422506,-0.39192924,0.13902508,0.0030201117,0.08251297,-0.5945688,0.002705423,-0.04083799,-0.33867547,-0.03508098,-0.42448512,0.50949216,0.2053046,0.4138027,-0.019158633,-0.81290424,0.07519207,-0.10608336,-0.27100855,-0.531898,0.4957291,-0.07109428,0.7201626,0.026393913,0.09197923,0.23146078,-0.32370135,-0.2293055,-0.21189149,-0.11276941,-0.6359995,-0.07482154 +774,0.4166667,-0.21341227,-0.49210948,-0.108643405,-0.33039123,-0.09298774,-0.23772544,0.42585388,0.3732385,-0.3789009,-0.23189773,0.2420133,-0.09365216,0.2095299,-0.12720321,-0.33404365,0.283689,0.38706052,-0.7299291,0.8297461,-0.21638702,-0.047348756,-0.23320033,0.46811116,0.3345962,0.17447266,-0.2003168,0.19419822,-0.01912746,-0.2009185,0.03966175,0.4741716,-0.44671577,0.3798326,-0.24903758,-0.121746905,-0.2950737,-0.5169116,-0.5415593,-0.93209904,0.2259082,-0.8005707,0.42743486,0.027468719,-0.47448492,0.05264749,0.32427204,0.24269173,-0.18966007,-0.4056872,0.118596405,-0.10924983,-0.4938232,-0.16870941,-0.05183166,-0.30237105,-0.5955631,-0.14579305,-0.3679561,0.037000895,-0.43371934,0.25019893,-0.3085453,-0.024602206,-0.18194984,0.7833365,-0.27509233,0.33061808,0.22887534,-0.015542209,0.110089906,-0.81710845,-0.06402106,-0.19807495,0.47143665,0.24570507,-0.50710016,0.3752031,0.35857683,0.3486678,-0.12448966,-0.1151285,-0.24465291,-0.00067100616,0.23781766,0.25891563,-0.21676518,-0.4551972,-0.12205933,0.08580263,0.38609564,0.11330882,0.38086998,-0.22699004,-0.20676686,0.09328072,-0.10828082,0.5600207,0.4812372,-0.22528884,-0.016669104,0.2546187,0.6082485,0.448717,-0.2882689,0.04880267,0.040377297,-0.6403607,-0.083663374,-0.09136944,-0.19043885,0.5574744,-0.16775051,0.12404989,0.49777,0.018304734,-0.34687868,0.36910805,0.18992546,-0.01387111,-0.4307973,-0.5204793,0.35778698,-0.5646997,0.18590187,-0.10395535,0.45252806,-0.022201806,-0.7078511,0.23828891,-0.5456955,0.2224064,-0.043439023,0.47231263,0.8953086,0.54642236,0.5169367,0.62553203,-0.10501073,-0.08301413,0.026195662,-0.11492082,0.22783074,-0.33548313,0.14960054,-0.5576302,0.038590375,-0.16392758,-0.24215116,0.12826595,0.54967874,-0.46916947,-0.24589628,0.116290346,0.70561695,-0.098382965,-0.18578643,1.018719,0.9611011,1.0504239,0.2858249,1.0017331,-0.011605112,-0.10895148,0.11281316,0.18110797,-0.66306245,0.26610544,0.27006716,0.16855666,0.17162901,0.20469874,-0.018059459,0.54837984,-0.58556134,-0.061238024,-0.004868058,0.17567796,0.121535495,-0.2624222,-0.4185229,-0.37002823,-0.24177982,0.18277843,0.015288958,0.23275219,-0.08920389,0.36831492,0.121876955,1.2684581,-0.005420749,-0.06580392,0.0053253802,0.35142046,0.2308669,-0.30667976,-0.14812154,0.24705842,0.27322257,0.15863238,-0.5560728,-0.013163681,-0.22908854,-0.22874539,-0.24772644,-0.40608346,-0.33511165,-0.008516761,-0.2917441,-0.35380942,-0.17518769,-0.289898,0.4090919,-2.580816,-0.31436965,-0.15179212,0.46172854,-0.015513017,-0.24386838,-0.13799459,-0.53553134,0.46816248,0.20910144,0.6213079,-0.5785108,0.41305065,0.46743804,-0.81533337,-0.1744445,-0.74267286,-0.15174079,0.19966866,0.18489537,0.06762555,-0.15554348,0.20931289,0.24195257,0.4585134,0.25500253,0.21583048,0.6387586,0.37731272,-0.39546695,0.5146266,-0.21316518,0.50162536,-0.17743447,-0.2985778,0.22781536,-0.30986908,0.5845127,-0.12670173,0.03687013,0.77745605,-0.47285417,-0.9671596,-0.63725823,0.092528835,1.2806276,-0.12050606,-0.5197929,0.23905352,-1.0317041,-0.38665038,-0.083834425,0.7031602,-0.073960625,-0.17133024,-0.773994,0.022231111,-0.052077793,0.08814064,-0.14642125,-0.3543805,-0.45516807,0.8411185,0.050974146,0.58585876,0.29842195,0.070804216,-0.59220034,-0.36292413,0.12005436,0.7736881,0.500629,0.04988978,-0.30413705,-0.1703106,-0.41248003,-0.09412883,0.09497933,0.72150874,0.2080178,-0.26704338,0.2616893,0.37462157,0.06772752,0.00052688096,-0.23541568,-0.21209356,-0.30018833,0.042851128,0.6346099,0.9485191,-0.21402012,0.35046974,0.040408786,0.15736583,0.05403332,-0.48672664,0.49304646,1.0737952,-0.31543714,-0.409061,0.61209244,0.40516883,-0.25822103,0.4461921,-0.27168998,-0.14697333,0.40406826,-0.040771183,-0.33975083,0.063107,-0.5021414,0.1251529,-0.42984873,0.42554924,-0.5159875,-0.65596426,-0.4119863,0.0971232,-2.3392997,0.34563586,-0.3535143,-0.025042213,-0.38541207,-0.4554431,0.056758717,-0.50450075,-0.7443788,0.15635054,0.106527254,0.7681522,-0.29224873,-0.18478857,-0.105726905,-0.6283436,-0.057106677,0.031832002,0.111649275,0.42322123,-0.15080675,-0.3309711,-0.067532696,0.016479721,-0.26085973,-0.14860046,-0.5092408,-0.37203056,-0.11809681,-0.43797606,-0.09017499,0.62559617,-0.3544039,0.1059556,-0.35236135,-0.04587222,-0.11728602,0.18965398,-0.08143146,0.27199772,0.117382735,-0.10739805,-0.08570051,-0.020326082,0.08990502,-0.1074887,0.21709332,0.19030388,0.07852789,0.45129457,0.47975427,0.8055114,-0.33825848,1.2292231,0.66005635,-0.1806795,0.20661347,-0.0535117,-0.51490855,-0.50226575,-0.13949901,0.46439546,-0.5197987,-0.26068714,0.12426508,-0.38654104,-0.7287705,0.464109,0.05950026,0.10280306,0.14592166,0.10317259,0.56224686,-0.19002989,-0.04397098,-0.11462386,-0.25122735,-0.7408607,-0.12887064,-0.56656617,-0.27965504,0.11978822,1.0487225,-0.46222642,0.21896839,0.29272225,-0.28474757,0.04378217,0.3930022,-0.070188895,0.10551505,0.4488929,-0.13436419,-0.31409475,0.18520929,-0.21223377,-0.1889119,-0.43749344,0.50802904,0.6949651,-0.5848104,0.7831015,0.35370377,-0.103580914,-0.53283405,-0.73625636,-0.14073783,-0.09777531,-0.25636074,0.525236,0.5093479,-0.84392667,0.31872287,0.28642476,-0.27109396,-0.8856706,0.65712154,-0.18561839,-0.16774374,-0.13948129,0.45788032,0.18689746,0.03174803,-0.12496717,0.2947803,-0.37168223,0.1562174,0.15888306,-0.2483125,-0.27610016,-0.32335785,-0.081577174,-0.8251613,-0.05702389,-0.66866535,-0.27983713,0.40453413,-0.027012454,0.2022729,0.039343275,0.4423947,0.27437988,-0.3575281,0.18152753,-0.3272652,-0.31164426,0.38763663,0.53011936,0.6260215,-0.4756531,0.66274065,0.22275837,-0.14988641,-0.14583251,0.12836777,0.24017285,-0.05087552,0.5831007,-0.11946038,-0.064128466,-0.055138595,1.0364227,-0.055761997,0.28204423,0.06746138,0.09393017,-0.07448897,-0.06581951,0.42159155,-0.3493066,-0.65673894,0.25367916,-0.50753057,0.08768753,0.5405812,0.37960723,0.024556555,0.05050935,-0.4824338,-0.20087719,0.1639882,0.18291375,-1.7137258,0.5837295,0.3096452,0.8674438,0.54236794,0.13377362,-0.30956796,0.8785324,0.09223657,0.0011860842,0.46399534,-0.060091678,-0.36180803,0.5606852,-0.86636424,0.430432,-0.031119384,0.049854543,0.060647257,-0.009449595,0.36805648,0.6224333,-0.23398319,-0.0328006,0.043465193,-0.3590596,0.27610752,-0.4591264,0.0860204,-0.28499436,-0.5001987,0.64820695,0.54131424,0.6068947,-0.34589893,0.1307728,0.20004342,-0.2914366,0.28918007,0.098169595,0.02464861,-0.2933534,-0.6884997,0.15666309,0.37107357,-0.28505945,0.21894972,0.056728832,-0.022254871,0.22927316,-0.22488433,0.08625321,-0.16667846,-0.8053604,-0.14205942,-0.39425147,-0.5499711,0.52585894,-0.018051147,-0.024306847,0.30566955,0.042567432,-0.11229421,0.755129,-0.26268163,0.6605851,0.0544847,-0.019355224,-0.120934054,0.19968197,0.0199638,-0.2193912,0.08833434,-0.32866377,0.30287835,-0.5358342,0.51379585,-0.0130546,-0.44108465,-0.08160667,-0.07208957,0.042547263,0.3490456,-0.32579342,-0.268012,-0.17947604,-0.21650192,-0.2122925,-0.44911596,0.05054641,0.30234972,0.15852946,0.083294585,-0.22877842,-0.15861718,-0.20215313,0.17880811,-0.06616615,0.43296787,0.4664118,0.08850391,-0.2058112,0.09180804,0.37298915,0.6411461,0.13264647,-0.14188746,-0.44924197,-0.4231811,-0.61037314,0.20235215,0.17504996,0.46090952,0.19431949,0.04677569,0.5108491,-0.2612268,0.92883503,0.014812027,-0.36301777,0.10746108,0.37858197,-0.16286519,-0.17372939,-0.075875625,0.57618594,0.40894067,-0.009330566,0.07068761,-0.52890354,0.093687735,0.16622002,-0.17439087,0.033744548,0.043124575,-0.5107206,0.096876636,0.16519257,0.1751943,0.34612215,-0.23185371,0.14754957,0.3768454,-0.14759336,-0.021535872,-0.5024086,-0.17644599,0.39675638,0.19896,0.014675569,-0.02837406,-0.4228854,0.3821182,-0.4612217,0.028722553,-0.31342664,0.23516022,-0.19090237,-0.1985511,0.25901875,0.13901557,0.3346288,-0.27756542,-0.12423349,-0.23419942,0.5494284,0.25234547,0.07809103,0.5716895,-0.26328215,-0.076915115,0.23150103,0.5760173,0.7687785,-0.2615898,0.027571091,0.12556669,-0.4475411,-0.43963188,0.3883692,-0.53592545,-0.010458978,0.3342581,-0.19541885,-0.46930537,0.11761899,0.23938233,0.29902458,-0.07633572,-0.9668618,-0.2926769,0.082526095,-0.29975274,0.11477237,-0.2855449,0.036404572,0.42925212,-0.15151191,-0.41401657,0.017486297,0.085226245,-0.023432583,-0.5474808,0.11566133,-0.510614,0.20324318,-0.14007415,-0.5490434,-0.2853702,-0.14363356,-0.6136404,0.12084523,-0.0062574744,-0.2634451,0.13321002,-0.35806185,-0.072421126,0.99504,-0.35676274,0.33861452,-0.1753727,-0.5793865,-0.61078924,-0.109132245,-0.10040956,0.06081049,-0.0343489,-0.85448253,-0.20064007,-0.09862622,-0.009619374,-0.11976552,-0.36604473,0.5240641,0.11731256,0.37602827,-0.121648304,-0.9016816,0.3287209,-0.015782408,0.013577016,-0.46918586,0.4281967,-0.056484625,0.79597574,0.06461997,0.2354958,-0.06634005,-0.44542834,-0.13570534,-0.17624334,-0.22275941,-0.47803226,-0.08794982 +775,0.45625195,-0.07115267,-0.35207596,-0.14023682,-0.10871456,0.09073532,-0.04681259,0.45364964,0.1055172,-0.60529864,-0.21454903,-0.3070744,0.01878377,0.33214733,-0.18908949,-0.5587503,0.0007857402,0.1291339,-0.5606633,0.52204883,-0.477363,0.4836534,0.25496122,0.21520051,0.093116775,0.12822086,0.3259414,-0.19170755,-0.23090328,-0.13669746,-0.19611254,0.1746119,-0.5775306,0.1507387,-0.15320517,-0.3310247,-0.016710559,-0.50448954,-0.27831295,-0.62773377,0.4198588,-0.76675594,0.47133118,0.029875906,-0.13452111,0.31282407,-0.01334339,0.20906585,-0.17366244,0.1127587,0.14911215,-0.0018757939,-0.0415584,-0.15088797,-0.2175943,-0.124595515,-0.578477,0.20377229,-0.32192034,-0.25438944,-0.26820964,0.13122241,-0.22413507,-0.0005539417,-0.11538197,0.39152774,-0.35827473,-0.058660425,0.07116727,-0.037506785,0.23422362,-0.43354633,-0.13582492,-0.013678058,0.34074992,-0.28611508,-0.11600716,0.19096234,0.2944607,0.52755195,0.006291314,-0.08501108,-0.18912026,-0.032985672,0.09050557,0.5871134,-0.11255162,-0.5451603,-0.033521745,0.032924976,0.10571272,0.16823012,0.17559035,-0.32280126,-0.1979787,-0.092434295,-0.23984157,0.26604247,0.48080203,-0.3977696,-0.28293693,0.369749,0.4553617,0.0927078,0.054511998,0.040344622,-0.07025649,-0.5921061,-0.1229562,0.05715014,-0.19123074,0.47548616,-0.107101046,0.32486668,0.50450915,-0.03949189,0.14451808,0.04712362,-0.09419438,-0.08772727,-0.1029668,-0.08798058,0.13614912,-0.37830475,0.04907583,-0.19000956,0.90637803,0.14163631,-0.81607693,0.38772804,-0.4961546,0.15613686,-0.14330529,0.45849898,0.55707496,0.28209648,0.16724087,0.72687596,-0.6292358,0.02810906,-0.12732689,-0.4023527,-0.11570158,-0.0060500302,-0.09190054,-0.40032443,-0.00349315,0.07811343,-0.1343803,0.06917094,0.38238347,-0.5070533,0.021594027,-0.00784467,0.7935098,-0.32215622,-0.1014587,0.8409469,0.9423465,1.0074657,0.067712046,1.2290086,0.2159684,-0.2637045,0.2125683,-0.38351637,-0.7365749,0.29852238,0.41232982,-0.010225971,0.124994844,0.08120096,0.0396556,0.24262129,-0.383333,0.062557474,-0.29865837,0.12841359,-0.0006413956,-0.053538468,-0.36787495,-0.389234,-0.007345168,0.13657,0.1856331,0.19455911,-0.14691299,0.35178912,-0.031179862,1.8385483,-0.11024887,0.10382655,0.076908395,0.36155406,0.106901914,-0.07195619,-0.17659405,0.095172875,0.39809936,-0.11913007,-0.6112039,-0.010654918,-0.15571886,-0.6013847,-0.12583733,-0.29785728,-0.016329484,-0.016153626,-0.39900824,-0.07840306,-0.12675633,-0.4142238,0.4970508,-2.7145376,-0.19165614,-0.015496365,0.3280764,-0.3132911,-0.4213111,-0.1798482,-0.4398418,0.5178842,0.3290201,0.44644248,-0.6653314,0.250516,0.31357715,-0.35927403,-0.21661074,-0.60809976,-0.005378341,0.010394326,0.24738453,-0.008661223,-0.029099278,-0.0197975,-0.0047328393,0.39046904,0.040863108,-0.05816124,0.21207471,0.3685633,0.2792502,0.41699657,-0.0012953976,0.5194567,-0.25461558,-0.0821118,0.32405895,-0.24509309,0.22985093,-0.17332552,0.18057474,0.25787267,-0.6962551,-0.66670525,-0.69444853,-0.42304382,1.1835265,-0.18987224,-0.29834118,0.33701193,-0.040504385,-0.12117648,-0.04789959,0.41245,-0.098211184,-0.21227296,-0.83212495,0.014731844,0.02419637,0.15852426,-0.052662056,-0.0031386793,-0.49328703,0.5884655,-0.15786597,0.46894237,0.417353,0.27651247,-0.21724835,-0.49325994,0.08851981,0.9850407,0.26243493,0.11474289,-0.14397702,-0.21461897,-0.4573679,-0.16248547,0.08554187,0.4234124,0.73386663,0.09880168,-0.023991307,0.27549312,0.09806584,0.1229338,-0.104669526,-0.23735377,-0.053309064,-0.24602705,0.6170415,0.4972526,-0.14606644,0.5271423,-0.15469606,0.22793786,-0.20196384,-0.34138379,0.6083829,0.94738305,-0.19215895,-0.18829724,0.48506913,0.3183853,-0.12984154,0.3321513,-0.5436571,-0.37072417,0.4283881,-0.21042281,-0.41178113,0.27653366,-0.22243191,0.16789177,-0.95202523,0.28580895,-0.17942308,-0.39593947,-0.52138513,-0.052195843,-3.4749231,0.20366052,-0.24922152,-0.14369376,-0.01439412,-0.19496292,0.07019744,-0.43082723,-0.5500726,0.15441471,-0.022639839,0.5887221,0.025404314,0.20868441,-0.11037493,-0.117139176,-0.379603,0.001929613,0.021060936,0.42981502,0.091564365,-0.29345807,0.047664404,-0.28661683,-0.30296284,0.11670721,-0.50058156,-0.4425092,-0.10444219,-0.45868096,-0.49905688,0.59972674,-0.3696962,0.08786701,-0.17527609,-0.08681636,-0.13688096,0.36981854,0.12092655,0.088954546,-0.0011808673,-0.07277172,-0.022203803,-0.26120707,0.31392393,0.086916454,0.24357633,0.38204834,-0.22055885,0.175732,0.32018635,0.63985926,-0.1137811,0.6253565,0.47599584,-0.0037767887,0.1673021,-0.38243428,-0.19044556,-0.4213145,-0.21104999,-0.039521456,-0.31132895,-0.5132561,-0.24026492,-0.36146247,-0.6864909,0.35905167,0.07501138,0.0822978,0.038041577,0.17720659,0.47336516,-0.060852703,-0.064285114,-0.06565661,-0.04298084,-0.5375189,-0.3219783,-0.6943808,-0.46462366,0.14369589,0.9552839,-0.06344042,-0.14843087,-0.047521845,-0.103088126,0.02909871,-0.09878878,0.05383567,0.19979014,0.23248751,-0.23688565,-0.68975234,0.58998966,-0.03207166,-0.18362284,-0.47867987,0.10754881,0.5610419,-0.50046194,0.39025486,0.2745552,0.06713845,-0.0028476894,-0.4099603,-0.15427037,-0.07511355,-0.30756214,0.2885308,0.1533903,-0.5937237,0.51367486,0.38551039,-0.1200345,-0.7932114,0.39266524,0.09139497,-0.3115968,0.09471523,0.24218938,0.098242775,0.016423864,-0.18900019,0.1499673,-0.5060796,0.3044404,0.283713,0.07182338,0.36256012,-0.3217258,-0.17310807,-0.6022036,-0.019577423,-0.4358548,-0.19405028,0.078581415,0.25980094,0.15575643,0.19106491,0.05305376,0.42757732,-0.37099272,0.11950788,0.007050693,-0.03450508,0.111523785,0.35783002,0.4272046,-0.44857633,0.5117683,-0.076949544,0.021523757,-0.035201702,0.091208555,0.41609016,0.22102898,0.15895501,-0.06325867,-0.2660147,0.3912159,0.63471997,0.25678065,0.2502769,0.045841683,-0.19573647,0.31171784,0.14085731,0.1960444,0.12291457,-0.46850863,-0.15028295,-0.05432995,0.14351149,0.42691076,0.15820552,0.2741407,-0.14587924,-0.34104583,-0.024857473,0.18083248,-0.18146402,-0.93064886,0.40639502,0.04036609,0.7720379,0.5524191,-0.08796813,0.15908527,0.51483655,-0.17764536,0.18390125,0.103604525,-0.1830844,-0.5787614,0.50699335,-0.50617343,0.38452902,-0.16011645,-0.031041794,-0.047181595,-0.031730648,0.22226861,0.7108489,-0.022432996,0.13368253,-0.07559015,-0.21273094,0.09656899,-0.3446863,0.049777787,-0.583662,-0.13770333,0.676514,0.3350142,0.23378153,-0.06909054,-0.009579371,0.06999323,-0.08442095,0.0112498365,0.09335824,0.15164062,0.032865968,-0.68919474,-0.21250455,0.54884243,-0.061176028,0.1740882,0.073198445,-0.26200452,0.17151445,-0.19516018,-0.08072346,-0.11484348,-0.6140906,0.046455503,-0.25210547,-0.17194834,0.14145261,-0.12322937,0.32054272,0.18791069,0.061231732,-0.3139709,0.20855837,0.22573985,0.6229843,0.05340781,-0.24145755,-0.4015973,0.21691671,0.16219424,-0.2709138,-0.15991111,-0.120181195,-0.12752707,-0.6232773,0.49864644,0.10666637,-0.17774205,0.27864772,-0.08415913,-0.034114633,0.57956976,-0.12704621,-0.0026294058,0.05893828,-0.18571101,-0.20527242,-0.057854272,-0.0920076,0.25149632,0.35950485,-0.1092674,0.0114335455,-0.0034982404,-0.18793505,0.42198625,0.005100472,0.4134164,0.22224979,0.058639433,-0.3147867,-0.15098874,0.15504369,0.38814867,0.060898382,-0.053253807,-0.25670663,-0.3510731,-0.30361897,0.13002147,-0.108431615,0.25986463,0.07378821,-0.36479542,0.52517194,0.16062321,1.0257016,0.08793918,-0.18072931,0.03257775,0.40258196,0.09853248,-0.06628684,-0.30301204,0.92703253,0.5165417,-0.03109204,-0.12364403,-0.20288877,0.013173556,0.12916881,-0.14953902,-0.12079342,0.032266337,-0.5935004,-0.3841047,0.17562827,0.22787756,0.117244035,0.022666087,-0.018839415,0.18458839,-0.018686257,0.3952731,-0.3847817,-0.22611329,0.30222955,0.2538996,0.0852963,0.12012248,-0.46449855,0.4484878,-0.5387325,0.044322725,-0.21618973,0.17213963,-0.109569594,-0.18788522,0.21577409,0.06130693,0.35219234,-0.25871602,-0.42051882,-0.3655242,0.46561915,-0.016412096,0.24600853,0.55572534,-0.2443028,0.06132504,0.069094785,0.4793838,1.1691836,-0.050616242,0.0729415,0.4511488,-0.2350824,-0.4922672,0.33431014,-0.07887065,0.095548496,-0.051752858,-0.21471985,-0.4425338,0.25692263,0.22279228,0.12364856,0.1236366,-0.5539558,-0.35436586,0.3868268,-0.2917345,-0.27837053,-0.36576784,0.110908076,0.65665525,-0.24719205,-0.25429478,0.12090502,0.17563917,-0.2654583,-0.68356925,-0.021326678,-0.34774104,0.26443812,0.13924605,-0.24023199,-0.16320759,0.11097854,-0.33261403,0.10256028,0.03548588,-0.36794898,0.0930892,-0.35244998,-0.08037112,0.9590791,-0.16824888,0.08531718,-0.53112835,-0.4847974,-0.94279397,-0.34511662,0.6699345,0.046276197,0.061666396,-0.55461484,-0.01221648,-0.006239272,-0.13464828,-0.005224368,-0.26058236,0.39591354,0.2394482,0.289107,-0.07658042,-0.6387269,0.059828598,0.033797882,-0.31471857,-0.497725,0.50791824,0.19172047,0.73469734,0.015702864,-0.027812727,0.33264098,-0.533815,-0.041611113,-0.21672058,-0.13758765,-0.62754923,0.084756546 +776,0.19143824,0.0029545177,-0.5143583,-0.06805229,-0.080997206,0.0086718155,-0.15491705,0.25907633,0.020569637,-0.7418112,0.0058336356,-0.21903183,0.1040032,0.31768847,-0.14141634,-0.58709025,0.16714485,0.30548254,-0.3977389,0.2609787,-0.5293005,0.3150814,0.113782585,0.029461175,-0.2979574,0.16643526,0.32347748,-0.28329012,-0.04693122,-0.20309125,0.036840502,0.2124294,-0.67932075,0.37037602,0.17786543,-0.30705956,0.05141763,-0.21429758,-0.24921815,-0.6509704,0.2697966,-0.7830995,0.44238248,0.103567146,-0.1514284,0.08935714,0.1308154,0.3839352,-0.22924255,0.18221502,0.2700034,-0.35189512,-0.23020448,-0.28992748,-0.2107876,-0.31886947,-0.37848237,-0.05889967,-0.5756491,-0.292684,-0.35765028,0.18007441,-0.41394544,-0.014680435,-0.28764173,0.40159285,-0.3918383,0.04106976,0.17181103,-0.22551633,0.3721036,-0.36946595,0.011288461,0.014785434,0.21377401,-0.45109043,-0.17878012,0.234251,0.23679297,0.55837387,0.027077079,-0.08675174,-0.17047392,-0.25507963,0.40094578,0.6795134,-0.1945933,-0.43155566,-0.17586882,-0.055649925,-0.11646289,0.21767528,-0.13764691,-0.5524603,-0.042115528,0.11422759,-0.28574666,0.29699066,0.5282393,-0.22814357,-0.07353946,0.36208192,0.43887916,-0.21965729,-0.05893768,0.22891219,0.093420334,-0.56338054,-0.29778662,0.21461874,0.075677864,0.32551035,-0.13265051,0.3217842,0.6890053,-0.33582163,-0.046845973,-0.04643831,0.024927119,0.039195523,-0.3496431,-0.10015416,0.35389265,-0.63377696,0.014304896,-0.25262973,1.0857753,-0.062272448,-0.8243818,0.4124863,-0.48031798,0.042066116,-0.21614565,0.7566708,0.37229395,0.42967644,0.07177076,0.71797395,-0.65032464,0.12779218,-0.2274216,-0.6697591,-0.0054218546,0.02977853,-0.120280206,-0.28784153,-0.019656038,0.22624974,0.15823103,-0.091795,0.36473283,-0.45869836,-0.12837733,0.004128317,0.80914587,-0.43706107,-0.024625102,0.42091796,0.99561286,0.6932876,0.18458839,1.4066544,0.078203835,-0.21619384,-0.044172063,-0.11997294,-0.77924496,0.22947466,0.26657128,0.11744233,-0.0074152946,0.27621344,-0.16926236,0.30574408,-0.3213742,-0.061501905,-0.26723838,0.30778775,-0.15927398,-0.15036477,-0.32787,-0.058517616,0.12941886,-0.023540422,0.055977214,0.17783348,-0.21306555,0.23609824,0.10036739,1.5200691,-0.22905819,0.3575444,0.16279717,0.30311203,0.1535291,-0.008802131,-0.05817799,0.357407,0.36510363,0.14673601,-0.59300476,-0.024708895,-0.07088473,-0.6103044,-0.12600724,-0.3262881,0.06694936,-0.19904493,-0.38926768,0.013087829,0.025023868,-0.4911755,0.43845698,-2.6704338,-0.07629693,-0.019862244,0.39859393,-0.24601345,-0.17724384,-0.26043728,-0.31468105,0.45793197,0.3758371,0.5958782,-0.6242196,0.44910014,0.4343339,-0.20032065,-0.102276206,-0.6572806,0.13434143,-0.20717794,0.28441775,0.034492772,-0.15598498,-0.134636,-0.04214816,0.4274707,-0.39285776,0.06614327,0.30407324,0.28238508,0.30816546,0.41697276,0.017820854,0.44257668,-0.49078622,-0.20807384,0.22193259,-0.31232843,-0.020485321,0.07674664,0.12200009,0.093480416,-0.4202588,-0.90681314,-0.62831837,-0.44812799,1.0004317,-0.44966188,-0.40487745,0.42778516,0.115935385,-0.36285767,-0.08143964,0.3797338,-0.09360846,0.14357202,-0.88324815,0.2032912,-0.15858714,0.5072132,0.08269237,-0.075823426,-0.45410714,0.49947104,-0.24369824,0.47578764,0.5515119,0.02085792,-0.450078,-0.4575816,0.0061329044,1.2176296,0.006334821,0.29088488,-0.1456964,-0.1326512,-0.1271748,-0.055688057,0.12450298,0.5733015,0.8469288,0.096188165,0.05631649,0.416942,0.0364528,-0.10085019,-0.14280836,-0.42906198,-0.10975174,-0.13077898,0.61514705,0.3408421,-0.11436934,0.4070013,-0.07847228,0.22941963,-0.25104418,-0.38856295,0.39071092,0.8147252,-0.073831,-0.20075552,0.6061862,0.5618402,-0.35365084,0.39432845,-0.52923,-0.429044,0.46439597,-0.21426864,-0.43462637,0.28389212,-0.3977014,0.22698481,-0.9014346,0.46260083,-0.3596512,-0.75764155,-0.38391313,-0.19857223,-4.3413033,0.27167818,-0.28808877,-0.2163002,-0.061933775,0.07914213,0.1965944,-0.31713295,-0.32462582,0.058968198,0.13958687,0.52576,-0.060491737,0.1128849,-0.3898282,0.09063134,-0.035591442,0.21388905,0.15096192,0.034264684,0.021411398,-0.43515038,-0.17472823,-0.13496034,-0.33400583,0.12313304,-0.6055329,-0.3718674,-0.13264047,-0.6362019,-0.62825984,0.65140975,-0.5580724,-0.06703458,-0.24928375,0.079357065,-0.08889092,0.52244717,0.12564924,0.123129666,-0.15935744,-0.05772753,-0.27284274,-0.26056775,0.33193088,-0.038760874,0.2930901,0.43231884,-0.29432604,-0.13327712,0.49543676,0.43008718,0.2039731,0.7989359,0.29423153,-0.15262496,0.24839342,-0.33394256,-0.12839155,-0.6863673,-0.41030502,-0.14057551,-0.5025528,-0.31388822,-0.009621009,-0.27973086,-0.74705344,0.7229158,0.0055327513,-0.03838274,0.008590606,0.45315397,0.19571666,-0.02753477,-0.26378933,-0.15330069,-0.12387558,-0.4555724,-0.36190784,-0.7757695,-0.455184,0.020035654,0.9348199,-0.18311255,0.16651848,-0.0076007843,0.071739174,-0.056754667,0.26635233,0.15208636,0.42433223,0.4633337,-0.10809764,-0.568796,0.51941395,-0.29813752,-0.18615071,-0.6066691,0.05497474,0.65928626,-0.81677514,0.58424217,0.4253026,0.17807426,0.0017379125,-0.42552006,-0.29684404,0.05204296,-0.24382158,0.42405748,0.0836012,-0.8399091,0.49965528,0.50060546,-0.1057286,-0.6658017,0.41590512,-0.080998234,-0.21818143,0.10734876,0.4663082,-0.2503201,-0.03877911,-0.15647227,0.057319973,-0.45418414,0.28458834,0.1763721,-0.12899356,0.680219,-0.23952298,-0.2249114,-0.4773887,-0.11713666,-0.52713376,-0.073294856,0.09083938,-0.07608755,-0.061436307,0.38195372,-0.25786754,0.5467706,-0.24994235,0.02671752,0.007930954,-0.22791643,0.36683226,0.52557147,0.14542009,-0.44881842,0.6869824,-0.047672063,-0.036828395,-0.5977459,0.27632543,0.5825517,0.11859099,0.552198,-0.085423164,-0.13251828,0.44064614,0.8974659,0.3566668,0.6832795,0.09543613,0.047585864,0.2554278,0.28251973,0.15843146,0.22510625,-0.36049667,-0.009756575,-0.08797634,0.1889301,0.43669197,0.14626698,0.6517418,-0.1833124,-0.3330975,0.023553243,0.4414438,-0.11762414,-0.95502424,0.53606457,0.21584642,0.44631502,0.47271132,0.09154748,0.16889149,0.43765202,-0.16667344,0.29977897,-0.08931557,-0.17175715,-0.41190553,0.6442606,-0.7867945,0.2591862,-0.15298693,0.05332819,0.20938899,-0.1541375,0.32033053,0.7574547,0.11846942,0.11957175,-0.04934889,-0.19967718,0.21500237,-0.40472603,0.1963197,-0.31860444,-0.2979665,0.6058542,0.4624056,0.28302446,-0.23936372,-0.08194072,0.07624806,-0.05526333,0.07769571,0.032043505,0.1483682,0.12272983,-0.7055146,-0.33361295,0.6875017,0.20130949,0.030007198,0.16272113,-0.14528634,0.5239514,-0.11344224,-0.14925404,-0.00919101,-0.43253174,0.2988649,-0.23723674,-0.33840194,0.15025316,-0.32772896,0.41344497,0.12683332,-0.010333012,-0.5070012,0.38119063,0.39464244,0.6609995,0.11727503,-0.25206268,-0.31039163,0.06710323,0.2151862,-0.18030298,-0.12962146,-0.34048736,-0.08345375,-0.81607324,0.32250333,-0.016297817,-0.22628884,0.47122276,-0.059299156,-0.11018399,0.5218548,0.08666637,-0.09030261,0.2240632,-0.09607952,-0.18381767,-0.14740431,-0.18140991,0.16610955,0.11464167,0.10436594,0.005990992,0.08923956,-0.13254307,0.2308361,-0.030166546,0.17366214,0.1398496,0.37928542,-0.29087546,-0.0012432175,0.05573107,0.5629918,-0.083108224,0.047354598,-0.03271738,-0.4092275,-0.15363501,-0.16424003,-0.13368641,0.34705472,0.151464,-0.4396373,0.93059444,0.0641926,0.95754147,0.07673879,-0.27326158,-0.07024009,0.49882755,0.1105293,0.053139057,-0.3513722,1.0505409,0.6661196,-0.20637535,-0.28436896,-0.27270612,-0.17686518,-0.045914922,-0.2186396,-0.34298792,0.09273527,-0.516851,-0.2774721,0.3026936,0.46111655,0.062078595,0.008698548,0.07743395,0.27523708,0.034882776,0.034941483,-0.58895576,0.1876362,0.13474174,0.38678396,0.19330412,0.07299795,-0.36289778,0.44602096,-0.67624944,0.13277774,-0.23016052,0.00022388746,-0.03967753,-0.14813061,0.21358334,-0.037313763,0.30851173,-0.232081,-0.02619583,-0.11894729,0.3519853,0.2648435,0.23823838,1.0251057,-0.056644518,0.22346406,0.1505828,0.46919253,1.0412378,-0.33982718,-0.22405659,0.4916174,-0.33372033,-0.63241154,0.1705085,-0.2861052,0.024550894,-0.07515108,-0.51175445,-0.25229096,0.16320378,0.06316953,-0.1399271,0.18913032,-0.57463247,-0.006347418,0.27769798,-0.3206797,-0.373559,-0.30899158,0.37169656,0.64318943,-0.17542411,-0.23137371,0.07812903,0.29448035,-0.33533633,-0.6130858,-0.095003776,-0.3280778,0.26396587,0.10764023,-0.23111422,0.066763006,0.14203778,-0.32197967,0.12113094,0.2920202,-0.29970846,0.16631475,-0.1600581,-0.17779209,0.6322186,-0.17070915,-0.09527681,-0.714557,-0.42863747,-0.96279246,-0.21940385,0.69326764,0.10712912,0.09800493,-0.33923936,-0.20828016,0.061163913,-0.19105603,-0.12129412,-0.35692653,0.45369616,-0.015550184,0.44048992,-0.038515054,-0.8712497,0.1291679,0.26725063,-0.28658178,-0.55673033,0.46492323,-0.07809676,0.67738706,-0.008882775,0.1236221,0.49252808,-0.6240459,0.038361847,-0.288656,-0.24095248,-0.773875,-0.13620336 +777,0.36099964,-0.24384236,-0.22005133,-0.17755781,-0.2799569,-0.021519968,-0.15049721,0.29994383,0.04291817,-0.3779931,-0.1629249,-0.12853052,0.106103376,0.46293825,-0.12208925,-0.5801678,-0.22726046,0.05028418,-0.6015787,0.51450133,-0.6272922,0.3502226,0.18516111,0.17874089,-0.034330722,0.39712116,0.43782392,-0.16728899,-0.11008586,-0.054273214,-0.19899864,0.10597735,-0.53115135,0.09041127,-0.12168678,-0.39674425,0.12631544,-0.49843287,0.009817834,-0.6128789,0.11770369,-0.83184,0.5432083,-0.06353798,-0.10379262,0.058459315,0.22709234,0.38312075,-0.35834435,0.053737767,0.19094399,0.0547854,-0.016435722,-0.19393988,-0.036938604,-0.30116415,-0.43445325,-0.05587274,-0.62601465,-0.43034777,-0.18449685,0.10595087,-0.34989285,0.11563059,-0.10232865,0.074510224,-0.43655276,-0.19185922,0.36418933,-0.19427076,0.297525,-0.3715214,0.045622893,-0.020966832,0.51015794,-0.24931808,-0.05756964,0.52877814,0.33174542,0.46627268,0.17968328,-0.23740624,-0.13703987,-0.18064228,0.17350121,0.5587536,-0.13740505,-0.46106005,-0.16011314,0.07020581,0.12600291,0.431276,0.04464201,-0.13235307,-0.061694648,-0.025272174,-0.21743488,0.3468366,0.36650398,-0.35371155,-0.42732382,0.3413168,0.56288075,0.1373886,-0.095500536,-0.12968695,-0.004292575,-0.48255768,-0.22438014,0.066582695,-0.016497353,0.47945303,-0.025071535,0.22591531,0.8210557,-0.20658585,0.24609466,-0.2086972,-0.23440695,-0.29938743,-0.19775769,-0.12326543,-0.0251829,-0.5040792,-0.013972708,-0.22894947,0.7038768,0.16080725,-0.83530575,0.48975062,-0.5809079,0.06691174,-0.10191409,0.538114,0.4876426,0.36549586,0.32529804,0.7426077,-0.31659645,0.13358797,-0.05559642,-0.45266625,0.11220054,-0.18434198,0.02707432,-0.5753861,0.13451669,0.12558363,0.12528585,0.0152421575,0.3926411,-0.54821676,0.10944353,0.17496464,0.720513,-0.38013202,0.020683441,0.6893955,1.0899457,0.87407476,-0.03950286,1.2321523,0.26287135,-0.23559688,0.20414925,-0.36827797,-0.6372663,0.14345714,0.60904896,0.07351359,0.469416,-0.017382026,0.00018359082,0.25401708,-0.26159826,0.09694881,-0.0080818515,0.36257687,0.02750026,-0.19432926,-0.5583719,-0.18726741,0.011880292,-0.11634379,0.02819632,0.21570525,-0.18722638,0.2865557,-0.017418146,1.8120569,-0.012560947,0.20873523,-0.010734217,0.5681168,0.23142603,-0.07789608,-0.18016036,0.38477924,0.28693604,-0.03079789,-0.545917,0.21978554,-0.25371122,-0.52882904,-0.0073688827,-0.4205628,-0.043045286,-0.073209204,-0.33354458,0.049475014,-0.026021156,-0.31348935,0.43985102,-2.9071584,-0.33349404,-0.12494003,0.19629739,-0.44147214,-0.28613392,-0.028118098,-0.41130242,0.3253665,0.41773865,0.4541097,-0.66968143,0.5785519,0.39428076,-0.32404074,-0.17855631,-0.63955003,-0.088285975,-0.012066158,0.34462923,0.018638572,-0.14511608,-0.1588342,0.40225378,0.5472578,-0.075925395,0.11077763,0.37212536,0.35100487,0.23958495,0.573813,-0.16531096,0.5140065,-0.12859264,-0.08266206,0.29004803,-0.115515776,0.23037651,-0.06393994,0.15405071,0.31124672,-0.5072085,-0.91689265,-0.6505881,-0.6200107,1.0152432,-0.35427788,-0.21732923,0.2805077,0.06017242,-0.08707048,-0.02536567,0.408696,-0.06992515,0.16746299,-0.6692658,0.15867607,-0.06780364,0.19368662,0.05536144,0.049428463,-0.41723195,0.52481234,-0.06925865,0.637175,0.23100111,0.19433498,-0.13272835,-0.19730665,0.115684286,0.87404865,0.3339825,-0.10101453,-0.072468296,-0.24780059,-0.1672055,-0.17740385,0.03974861,0.28762063,0.8477307,-0.0085501205,0.0901087,0.21017106,-0.030609379,-0.02234848,-0.06765251,-0.14500296,0.055364132,0.010768073,0.44350386,0.38333416,-0.25898072,0.5541485,-0.31075376,0.39325327,-0.06527388,-0.5114528,0.52478683,0.2819761,-0.14348364,0.10239046,0.4660409,0.5556737,-0.32382512,0.47856277,-0.5703115,-0.19452773,0.7094437,-0.1905397,-0.3478947,0.22081849,-0.20244537,0.07330563,-1.0062631,0.2719773,-0.27076766,-0.23472199,-0.28588915,-0.21531573,-3.6653829,0.08762906,0.04087468,-0.25790855,-0.0636143,0.041788157,0.28488368,-0.72986317,-0.63523334,0.111322165,0.08640598,0.5560817,0.017962975,0.11371971,-0.24222347,-0.08532746,-0.19317098,0.17167391,-0.06298538,0.27829465,-0.1508127,-0.3905025,-0.107026406,-0.17354727,-0.7401646,0.32883045,-0.4660421,-0.50706613,-0.1117763,-0.5428844,-0.29203752,0.6972953,-0.2557531,-0.00989984,-0.20276655,0.0014255515,-0.25301233,0.292931,0.21176815,0.19380954,0.069736965,-0.06962637,0.027187875,-0.36082643,0.49767193,0.12454051,0.38544616,0.12273967,-0.13204023,0.19624887,0.4944574,0.59586746,0.016076919,0.7577467,0.2719913,-0.1646148,0.35925645,-0.4118916,-0.038674526,-0.59841913,-0.50361884,-0.085377134,-0.30946663,-0.7047544,-0.09459543,-0.24679923,-0.6869813,0.5797401,0.03830233,0.3394545,-0.13097064,0.19116138,0.2731112,-0.22595103,0.03254823,-0.06033183,-0.091992564,-0.5302433,-0.2868399,-0.6525922,-0.5024682,0.1004949,0.8648187,-0.22025855,-0.0343198,-0.18607865,-0.22533043,0.13244426,-0.17075522,0.16571292,0.38115647,0.1961352,-0.0707462,-0.6953401,0.48255116,0.07129687,-0.13302167,-0.36045632,-0.024444861,0.61663276,-0.6821426,0.4110456,0.22666267,0.19042501,0.18537791,-0.45080972,-0.13932063,0.030676743,-0.21703972,0.26906872,0.005664536,-0.7840906,0.49878582,0.26815534,-0.44594464,-0.6521139,0.3077396,0.04032605,-0.23473246,-0.09054815,0.21876894,0.1478423,-0.057632506,-0.3448418,0.19674782,-0.5964657,0.30441174,0.25569743,0.13988861,0.43337783,0.061377738,-0.37347808,-0.61341655,0.015525265,-0.35122776,-0.26200056,0.2025489,0.054166406,-0.057801057,0.16091558,0.12610558,0.38744137,-0.43289107,0.09481834,0.2721108,-0.34631726,0.16369872,0.46111494,0.3095172,-0.3383536,0.48492622,0.07995776,-0.08923637,-0.14814863,-0.1287041,0.47220844,0.102962844,0.10346268,-0.18342365,-0.26468632,0.47600868,0.66967577,0.112258114,0.15791914,0.13620508,-0.2184072,0.40429562,0.06638466,0.0589724,0.24134341,-0.3404188,0.092527404,0.22063401,0.050076615,0.5706142,0.29933208,0.20520236,0.13009308,-0.20340021,0.00212329,0.34230232,-0.28429276,-0.88962066,0.33030125,0.27865267,0.7548812,0.5030756,0.033880442,0.0051880223,0.44772616,-0.4027763,0.18007828,0.38746786,-0.08970712,-0.60416543,0.7765649,-0.4724656,0.3413403,-0.052656766,-0.10509058,0.041493732,-0.03149963,0.30177563,0.8752341,-0.14676252,0.073807724,-0.05695045,-0.023620684,-0.07050966,-0.32195744,-0.14496198,-0.37401387,-0.23809102,0.5942072,0.2894848,0.31375203,-0.047243502,-0.07234822,0.080371834,-0.2510104,0.23362394,-0.116869695,0.13389729,0.11254089,-0.507256,-0.34681684,0.64161605,0.036787305,0.16056748,-0.14767571,-0.4270292,-0.018418347,-0.18940207,-0.12708831,0.050086517,-0.7541276,0.18419974,-0.20073144,-0.28243914,0.44160992,-0.28168827,0.20795546,0.15780912,-0.015093224,-0.016717182,0.100355335,0.2701537,0.65664136,0.07651418,-0.31631878,-0.21047187,0.06615563,0.1543561,-0.2580628,0.11414871,-0.29270792,-0.0354735,-0.6111611,0.6440649,-0.021470802,-0.38811046,0.22450742,-0.1871277,-0.050898273,0.42282325,-0.018174198,-0.048530363,-0.29442233,-0.029128743,-0.28528556,0.03892495,-0.35274383,0.24727343,0.24578442,-0.02061477,0.03628723,-0.090455905,-0.07166142,0.638599,0.065609835,0.46311638,0.16834934,-0.03115936,-0.31417775,0.030317083,0.06845393,0.28676718,0.09640711,0.14169164,-0.37894312,-0.22352536,-0.17611465,0.16694379,-0.24193124,0.14896478,-0.04155136,-0.40196982,0.75812966,0.06256542,1.196438,0.115179434,-0.34375784,0.08354163,0.5631107,-0.11379927,0.0820166,-0.46527764,1.0493218,0.5635771,-0.065999135,-0.1370004,-0.37908274,-0.24217546,0.39497662,-0.37512806,-0.2175721,-0.06391342,-0.593265,-0.5349378,0.2459418,0.07962396,0.15597446,0.06811894,-0.13252164,-0.022276325,0.17497393,0.37022242,-0.5705183,-0.2798394,0.2781178,0.24141277,0.008839594,0.11861612,-0.5031305,0.41517472,-0.63326925,0.24294342,-0.3715158,0.0769826,-0.12197196,-0.2960154,0.16643532,0.07671835,0.33283225,-0.10564972,-0.5541459,0.04542658,0.37812454,-0.073083416,0.18210877,0.64229316,-0.27122346,0.19179752,0.017972754,0.46351954,1.210627,-0.25739723,0.021320531,0.3376172,-0.4455747,-0.53112364,0.38212034,-0.10472388,-0.031190524,-0.19745348,-0.408758,-0.4348205,0.27462703,0.14294441,-0.0024546299,0.0016522536,-0.40752825,-0.22374399,0.29618582,-0.36380002,-0.32585278,-0.2829936,0.34287134,0.8979483,-0.38423178,-0.17881842,0.14196561,0.20881346,-0.30023044,-0.476862,-0.17154057,-0.14302717,0.40318182,0.049847424,-0.31307146,-0.041132636,0.15447657,-0.22314712,0.06603698,0.33256215,-0.39550278,0.12758282,-0.22580047,-0.16502312,0.97388256,-0.12039304,-0.25878245,-0.7059876,-0.518014,-0.8883516,-0.49038133,0.42350963,0.11445742,-0.06364549,-0.23850682,0.09982596,-0.05624688,-0.19554864,0.09051139,-0.4136315,0.24183273,0.10452783,0.45679075,-0.21809924,-0.7450229,0.12652889,0.18806064,-0.01796727,-0.6426013,0.6841334,-0.12360025,0.79284525,0.06615651,-0.19968645,0.11418807,-0.47057787,0.01957475,-0.3707259,0.019886145,-0.7577302,0.20720124 +778,0.46654415,-0.3897917,-0.5540022,-0.11958653,-0.10412725,-0.05734822,-0.3221345,0.27127096,0.18209922,-0.65916973,-0.27687928,-0.20611751,0.1287729,0.33311933,-0.2094592,-0.563933,0.122911416,0.16611,-0.3775154,0.54020166,-0.55368924,0.08952978,0.12079849,0.37177682,-0.06049937,0.12567171,0.30048507,0.051441163,-0.034221902,-0.3110649,-0.12677461,0.043451507,-0.86257833,0.19509673,-0.14080948,-0.570847,-0.07115794,-0.43650305,-0.3237689,-0.6879358,0.28649333,-1.1387855,0.41242492,0.086547375,-0.30229768,0.2018547,0.13954397,0.35422763,-0.19538136,0.060920894,0.07705895,-0.32949075,-0.041354354,-0.35319754,-0.014758766,-0.35213915,-0.5007421,0.039520506,-0.4385967,-0.1788642,-0.19967651,0.06868634,-0.2653309,0.23336722,-0.2037311,0.31259403,-0.4558114,-0.16580124,0.4507098,-0.17137198,0.4734583,-0.3664453,-0.12902209,-0.10797871,0.13503255,-0.21430774,-0.265478,0.14446513,0.1615358,0.52276605,-0.042783093,-0.1699996,-0.1050873,-0.05432613,0.2792434,0.43779135,-0.23222047,-0.4617912,-0.41055655,-0.15989752,0.12183344,0.16983151,0.10952676,-0.31136012,0.015033628,-0.10338076,-0.39100328,0.4161675,0.6124615,-0.37933314,-0.07137648,0.25334316,0.55886453,0.06931973,-0.23018913,0.062174525,0.15778026,-0.6222722,-0.26624882,0.16350175,-0.19261521,0.7135386,-0.251189,0.27902028,0.5688763,-0.21118538,0.033934508,0.14318709,-0.011808514,-0.20006554,-0.19854195,-0.29768655,0.48487115,-0.5496768,0.18530814,-0.3022946,0.8036377,0.2583537,-0.6125195,0.38701543,-0.5281574,0.20103581,-0.21637274,0.64859974,0.60986143,0.35481846,0.29153445,0.8033908,-0.59095633,0.11790743,-0.24435918,-0.23267679,0.08406714,-0.20687628,0.10485951,-0.33307245,0.011265566,0.002859195,-0.03799814,0.04787535,0.343999,-0.5350009,-0.10124791,0.18136357,0.67689687,-0.23314433,0.032629896,0.78463084,1.1753228,1.1231177,0.18905301,1.0980448,0.31776318,-0.1599257,-0.12247112,0.24180312,-0.69090587,0.24912907,0.39340675,0.45610538,0.1817834,0.253278,0.02173706,0.49376848,-0.511446,0.07140238,-0.18068661,0.3155059,-0.13342969,-0.028416684,-0.32250705,-0.1727676,-0.028870722,0.08285363,-0.09453299,0.3065066,0.058688883,0.617512,0.18892424,1.208528,-0.17183834,0.086090125,0.03956464,0.3648477,0.20069902,-0.17492366,0.041885603,0.05267115,0.48165667,0.0840937,-0.5526518,-0.033944104,-0.048748504,-0.4359374,-0.15875313,-0.24173777,0.016508058,-0.16571648,-0.5463235,-0.10063741,-0.027809232,-0.07918104,0.47996604,-2.73021,-0.10375633,-0.23749131,0.23831117,-0.27083084,-0.24344611,-0.13030107,-0.5240313,0.50933677,0.40031013,0.48937592,-0.7095895,0.47932792,0.4074587,-0.42459098,0.004985945,-0.8296421,-0.12406606,-0.2456706,0.31690723,0.1629365,-0.08916112,0.035708454,0.1401978,0.5275509,-0.02873838,0.30208337,0.12753855,0.30512926,0.013119389,0.51073664,0.13825563,0.48701477,-0.5236246,-0.16934283,0.4479724,-0.3715203,0.19416232,-0.24768656,0.16813238,0.41766596,-0.40767384,-0.9105882,-0.8206873,-0.34136668,1.1501561,-0.33285248,-0.62654734,0.18434303,-0.15412365,-0.28114685,0.01829953,0.34525323,-0.050648104,0.047898944,-0.86086226,0.023936652,-0.10772106,0.3077658,0.06359703,-0.22179882,-0.47557807,0.79785424,-0.19693823,0.34579912,0.5911606,0.1640573,-0.1675428,-0.29387715,-0.012059969,0.96331054,0.3710628,0.2015775,-0.30103174,-0.12550735,-0.23827223,0.034535225,0.116157055,0.6399741,0.8086501,-0.15020911,0.15483792,0.2988453,0.031450994,-0.07989337,-0.12119485,-0.43245658,-0.023335448,-0.0015698522,0.7802898,0.8596375,0.05770284,0.31414056,-0.14763391,0.29796574,-0.22210163,-0.6191141,0.44910178,0.638542,-0.057907913,-0.28345793,0.6845471,0.59927696,-0.2123713,0.5010279,-0.68641925,-0.5798463,0.318863,0.06926325,-0.41642264,0.236956,-0.4177643,0.33980313,-0.8157575,0.36157367,-0.49540067,-0.50752276,-0.5146435,-0.17919354,-3.8421762,0.39934182,-0.23372842,-0.15566127,-0.0658225,-0.2385674,0.38593683,-0.6184223,-0.45558825,0.34895155,-0.04107591,0.6326301,-0.033351768,0.08522451,-0.33778057,-0.07980517,-0.17112629,0.100987464,0.22363722,0.05859537,0.008474181,-0.4322369,0.04060178,-0.15930745,-0.23369056,-0.027942007,-0.656699,-0.49673605,-0.14030962,-0.4838822,-0.5380695,0.5151393,-0.32003602,-0.053756554,-0.2395368,0.016413152,-0.31968215,0.36141348,0.057499517,0.2540839,-0.19267286,0.0042999783,-0.13320921,-0.2673207,0.1068331,0.112667106,0.020299604,0.2905132,-0.27843517,-0.007713089,0.45909333,0.598443,0.035008248,0.8747291,0.5392906,-0.048475802,0.2955431,-0.018946597,-0.21664132,-0.5995284,-0.34219518,-0.2288912,-0.45347306,-0.5317596,-0.0041389987,-0.24119599,-0.687689,0.7550567,0.23757036,0.07548595,0.009575578,0.29949823,0.41674995,-0.23299085,-0.12448899,-0.035326164,-0.13192748,-0.6371438,-0.32555962,-0.7805175,-0.29028234,-0.0100781815,0.89624923,-0.21857099,0.10087329,0.1695898,-0.17962931,0.06999134,0.37904644,-0.08541716,0.06092554,0.6062929,-0.02259325,-0.7513563,0.47229037,-0.11134511,-0.30229077,-0.7438057,0.1588345,0.7609338,-0.7921342,0.68701744,0.6231293,0.065522805,-0.053135216,-0.57750607,-0.326665,-0.11424901,-0.4088105,0.40134814,0.26554647,-0.8669648,0.42267525,0.35708353,-0.30333626,-0.71580285,0.6294416,-0.054787476,-0.27441764,-0.033847917,0.23802245,-0.081760146,0.13141073,-0.122390814,0.066632874,-0.52834225,0.15473892,0.27054703,-0.041637905,0.10987239,-0.1441947,-0.052636266,-0.641122,-0.0828202,-0.60805017,-0.08907768,0.12698738,-0.1240441,-0.08371212,0.22084779,0.056166593,0.3857111,-0.28792262,0.16348644,-0.124975346,-0.3713118,0.42259455,0.5407247,0.357541,-0.42906496,0.7887593,0.08562238,-0.03339589,-0.28852132,0.02816579,0.52388424,0.06292734,0.42258272,-0.10630676,-0.10654276,0.11494348,0.87439984,0.16036464,0.6597062,0.040467534,0.22954708,0.3039215,0.27534345,0.23888607,0.10068462,-0.4629484,0.0014285768,-0.18867107,0.11032484,0.351029,0.14377208,0.5729723,0.011757473,-0.23761773,-0.0075822356,0.1675986,-0.05573422,-1.3202952,0.41960612,0.0687075,0.5985579,0.62053305,0.020302305,0.0047971536,0.5545574,-0.35450873,0.089096904,0.08640006,-0.0032644917,-0.36255932,0.4780011,-0.7689903,0.29138976,-0.17017566,0.03203006,-0.043990787,0.05324006,0.467852,0.7896159,-0.22483869,0.16532362,-0.08320389,-0.26224357,0.10987842,-0.47700652,-0.1503926,-0.5707664,-0.35628486,0.80725807,0.5983148,0.5719722,-0.1359703,-0.10619348,-0.01771341,0.0017832468,0.036929592,-0.024820372,0.08063519,0.023144953,-0.7448876,-0.22297359,0.6627141,-0.094287165,0.23227108,0.034413982,-0.31766835,0.40486047,-0.17603059,-0.1768192,-0.09398142,-0.72890323,0.0676812,-0.4745455,-0.30546367,0.5197951,-0.4125389,0.2914684,0.21343641,0.05722277,-0.12740426,0.19939487,-0.006108556,0.6720197,-0.035250206,-0.27256048,-0.39545774,0.20251215,0.33733058,-0.20909844,-0.04088208,-0.32589617,0.05704856,-0.64716226,0.3877089,-0.1661158,-0.18554282,0.3090242,-0.096941374,0.06444779,0.6811126,-0.114088304,-0.19384956,0.28251186,-0.21170896,-0.3337692,-0.31116915,-0.2127086,0.31957823,0.052654058,0.13256471,0.1251105,-0.0028093357,-0.08908057,0.33289194,0.12563562,0.34344852,0.42846978,0.09986061,-0.39709893,0.015366892,0.11921369,0.5418162,-0.12863529,-0.24020308,-0.23603112,-0.74265355,-0.31259227,0.10964503,-0.009481987,0.3836412,-0.07873813,-0.020492157,0.9754656,0.023239413,0.92367953,0.00043750057,-0.49174497,0.015453092,0.44967508,-0.07336373,-0.0633248,-0.3498471,0.8072221,0.3694115,-0.15013342,-0.044520218,-0.4457806,-0.021176739,0.07446516,-0.1178976,-0.19564192,0.0143891275,-0.67106587,-0.16670747,0.21468802,0.4545661,0.2794928,-0.07662523,0.3323653,0.2892693,0.0767636,0.27523196,-0.6200038,-0.20073126,0.35088396,0.33236423,-0.01277813,-0.0011443123,-0.21320315,0.33596,-0.43783927,-0.054694194,-0.46064317,-0.047443405,-0.10139706,-0.36202168,0.14179604,-0.12829867,0.34998927,-0.4886968,-0.109294415,-0.18422532,0.5281758,0.31112453,0.19924806,0.6258289,-0.17608659,0.07690821,-0.020922115,0.5703704,0.9850154,-0.48697436,0.0066505834,0.49167442,-0.24061692,-0.6549406,0.32585728,-0.1702435,0.16608584,-0.011897068,-0.34702668,-0.6098867,0.16454892,0.17132328,-0.065928504,0.39243925,-0.72935724,-0.09235307,0.31491908,-0.22782587,-0.30314866,-0.3811383,0.29460385,0.5847037,-0.24753869,-0.14648835,0.043290447,0.29067314,-0.20274007,-0.42553273,-0.10475283,-0.303216,0.37614393,0.19735324,-0.20239775,0.051462468,0.12977637,-0.45134652,-0.06463367,0.0944708,-0.17495285,0.11223415,-0.23611955,0.051504303,0.8708717,-0.30086067,0.12443427,-0.5783582,-0.59564465,-0.73136455,-0.16697109,0.60261637,0.07044404,0.08423098,-0.3104089,-0.013384561,0.014680182,0.117375456,-0.06997379,-0.3484254,0.5959591,0.067314625,0.39752102,0.14109944,-0.6167252,0.13779983,0.033534847,-0.056993827,-0.41428557,0.48949274,-0.12668163,0.8050181,0.10537866,0.062161714,0.19299483,-0.5267455,0.13604994,-0.22982483,-0.18510883,-0.8093717,0.024505323 +779,0.43499812,-0.14332442,-0.7215435,0.09860978,-0.3560361,0.12558384,-0.6023719,0.4177065,0.16628028,-0.47764692,0.16992813,0.13839728,-0.1951971,0.062040668,-0.2043242,-0.7543163,-0.18789189,0.243342,-0.3767283,0.57445806,-0.25606927,0.23397511,0.11808065,0.26185504,-0.04835798,-0.07238408,-0.10303881,0.05128653,-0.15357767,-0.48488927,0.041232485,0.08839741,-0.5271881,0.4203775,0.06037712,-0.44615448,0.258116,-0.4037551,-0.34589264,-0.6643347,0.27977374,-0.70354414,0.83171946,0.2139873,-0.39481923,0.076410174,0.04134571,0.28525934,0.12004668,0.28126755,0.44021937,-0.7514338,-0.29837525,-0.5207347,-0.48817575,-0.71062464,-0.5737791,-0.18277681,-0.42658815,0.31942952,-0.13581292,0.5070918,-0.15484531,-0.10471081,-0.43910626,0.16275255,-0.57059807,0.03503446,0.1328764,-0.040597234,0.37280944,-0.8210612,-0.12178058,-0.0056049204,0.14466803,0.14600585,-0.21876742,0.17612159,0.011946831,0.533999,0.105960436,-0.28980148,-0.42952147,-0.18770921,0.054789662,0.6483183,-0.43556198,-0.109900095,-0.44355837,-0.016144743,0.793338,0.4949772,-0.06045264,-0.14200783,0.023219263,-0.3730514,-0.11169223,0.49486244,0.60675234,-0.20624013,0.20902102,0.26660934,0.10698432,0.21255033,-0.31904274,0.16094534,-0.32716405,-0.3762915,-0.10375204,0.30407494,0.020142242,0.26052287,0.0802658,0.23123394,0.37130365,-0.05961016,-0.20936139,-0.078370504,0.074562915,0.27202165,-0.32999063,-0.2459138,0.5654458,-0.60809326,0.18575537,-0.53882074,0.6323069,-0.1526847,-0.6808428,0.34506738,-0.49397305,0.04896654,0.10976841,0.77413684,0.71938324,0.8452818,-0.10717329,1.0901034,-0.45412007,0.35284173,-0.23661725,0.009869501,0.14487927,0.15554005,0.11385476,-0.39482966,0.06593413,-0.20044248,-0.10215481,0.044178445,0.75313234,-0.5244774,-0.20364602,0.26469997,0.86798257,-0.27090663,0.101262905,0.76229554,1.1528648,1.078075,-0.12230181,1.0770515,0.21757834,-0.24315919,-0.5821702,-0.08260695,-0.6932089,0.19896756,0.49952182,0.20447688,0.37631962,0.21928883,-0.09188024,0.49458703,-0.2786158,-0.47329903,0.013925363,0.3990945,-0.2693543,-0.28778723,-0.6476155,0.14164622,0.08478058,-0.10269773,0.2155642,0.513101,-0.3236517,0.5820425,0.13653135,1.1258324,-0.4491063,0.21418233,0.33229482,0.0945017,0.32310688,-0.10217602,0.22492428,0.3262622,0.30407426,-0.21234338,-0.53747255,0.03159839,-0.22665977,-0.53102976,-0.15128,-0.002060175,-0.2835209,-0.09305465,-0.23191185,-0.2906771,0.07715874,-0.35074317,0.24734867,-2.3336341,-0.114099324,0.059921294,0.3148286,-0.13584928,-0.55888724,-0.13177387,-0.3778458,0.74501115,0.17373429,0.64054877,-0.2856035,0.37705323,0.39019394,-0.3791529,-0.030075839,-0.8359501,-0.13890459,-0.08291736,0.45506397,-0.058561996,-0.5680563,0.14008687,-0.17184235,0.67117673,-0.030917307,0.099928595,0.25139186,0.5366869,-0.2903202,0.3452886,-0.18176335,0.6887428,-0.33012366,-0.31459475,0.34562397,-0.29752138,0.45853505,-0.31897554,0.1628063,0.6476188,-0.4616929,-0.5687092,-0.2784454,0.0139198555,0.9002921,-0.22938068,-0.6559207,-0.07855556,0.04989801,-0.26756337,0.17416996,0.50302094,-0.1778562,-0.032375842,-0.5032796,-0.3547474,-0.19662143,0.37022963,-0.14512888,0.2654924,-0.63003224,0.5555959,-0.11599707,0.5382469,0.8486624,0.33696768,-0.056906313,-0.31741038,0.04248665,0.8658852,0.55520004,0.17773996,-0.48895776,-0.15773386,0.02503711,-0.015581111,-0.15932459,0.7037967,0.64062697,-0.21601813,-0.040882144,0.30885202,-0.35230467,0.03492638,-0.15461755,-0.60631853,-0.23196684,0.27022478,0.62034154,0.534831,0.14222346,0.60717005,0.17977206,0.33206967,-0.4746929,-0.36564374,0.35858855,0.6202638,-0.35695648,-0.24263479,0.83037,0.44448295,-0.04574275,0.7107894,-0.77823496,-0.39605975,0.3280455,-0.024163222,-0.54244745,0.4153814,-0.34290895,0.06384816,-0.9454158,0.19145536,-0.62624305,-0.8775945,-0.8978742,-0.23615062,-1.1471392,0.14341624,-0.40020004,-0.026444891,-0.27351713,-0.19309384,0.33706012,-0.50320715,-0.6932716,0.15406406,0.29052004,0.4126042,-0.1773846,-0.07070469,-0.27864984,-0.5276106,-0.0613725,0.5788508,0.27481565,0.033496562,-0.23480046,-0.36816755,0.035218358,-0.0013625572,-0.11721989,-0.123125784,-0.6619643,-0.05429397,-0.0029044233,-0.40788135,-0.04722644,0.70208865,-0.6520641,-0.06398239,-0.3046513,0.22001141,0.119359106,0.085971914,-0.19545932,0.367627,-0.0084634675,-0.3506013,0.033091854,-0.22567098,0.02173546,0.19358116,0.26247156,0.3142845,-0.2462743,-0.042493504,0.4582294,0.6513981,0.14652003,0.8688228,0.33499923,-0.14897068,0.23003745,-0.3345225,-0.19278257,-0.75951105,-0.27639267,-0.027305752,-0.5052138,-0.8343254,-0.16723372,-0.48118103,-0.8368201,0.61201304,0.106997855,0.11034589,0.019129897,0.81688166,0.25218603,-0.28406823,-0.13991208,-0.07604303,-0.12010071,-0.2539117,-0.36208442,-0.84911615,-0.43006957,-0.025648465,1.2886738,-0.2718281,0.038399275,0.4391718,-0.3642212,0.019154524,0.37924495,-0.0044077933,-0.099931896,0.2968883,0.4386654,-0.52593917,0.30942386,-0.06663906,0.006211281,-0.6295509,0.22446986,0.7576487,-0.7499778,0.3030844,0.5894762,0.19309019,-0.27876538,-1.0851709,0.010098909,0.54989344,-0.2546197,0.6098594,0.373418,-0.42448792,0.5028366,0.40517232,-0.107397854,-0.76092935,0.28501675,0.0022041302,-0.40707472,0.2572318,0.4684359,0.026685873,-0.062632106,-0.23248307,0.49565086,-0.41607532,0.584897,0.043850347,-0.28785846,0.087295555,-0.29736343,-0.3787091,-0.9612896,0.21368696,-0.8050256,-0.46819317,0.56853706,0.00719736,0.19582842,0.20346336,0.3989921,0.65102524,-0.5399836,0.17856891,-0.5759476,-0.41136727,0.5832219,0.572002,0.39146772,-0.42132545,0.5847413,0.06632698,-0.30514142,-0.05809587,0.2478662,0.58833325,-0.14091522,0.54031205,-0.32335332,-0.10076081,0.10671132,0.9727704,0.3459215,0.33399916,0.20675588,-0.04736189,0.101358734,0.07694313,0.16444708,-0.28087503,-0.41722372,-0.21230717,-0.11822173,0.04018551,0.6491393,0.1648846,0.47360513,-0.25481907,-0.0333934,0.09031307,0.08841094,0.11894896,-1.1019126,0.523043,0.21626176,0.6345816,0.410805,0.3946524,0.23131399,0.40551063,-0.32382587,-0.17247178,0.379737,0.15080358,-0.054279655,0.46038854,-0.61288583,0.09852648,-0.3163801,0.100337245,0.3346078,-0.11414373,0.7861753,0.9944927,-0.24061507,0.16029048,0.039170865,-0.27233362,-0.0894309,-0.041343022,0.08890965,-0.33668968,-0.50427413,0.8176343,0.14234641,0.4583486,-0.16339995,-0.0591121,0.44606113,-0.060629856,0.4464318,0.058492374,0.057367522,-0.06546765,-0.15903874,-0.20381379,0.61349773,-0.1247175,-0.253019,-0.04834312,-0.120252885,0.40037918,-0.051920384,-0.060643617,-0.021583056,-0.5746533,0.26333913,-0.68140966,-0.51149195,0.33718958,0.12954585,0.054883797,0.09693927,0.23289101,0.11676166,0.34273314,0.06192313,0.7667896,0.10379762,-0.31407833,-0.16790362,0.090415396,0.34722304,-0.32026878,-0.14704826,0.07722622,0.37768808,-0.8209069,0.32243606,-0.47439286,-0.3080327,0.20088993,-0.14747807,-0.29072842,0.32892188,-0.07167526,-0.24337976,0.38057378,-0.3261884,-0.34839478,-0.5186768,-0.36181858,-0.04324424,-0.23087166,0.07520909,-0.36721793,-0.029961308,-0.15378453,0.40182695,0.2978821,-0.068845965,0.38148192,0.2553773,-0.5044445,-0.0074358187,0.27252185,0.53000075,-0.13714324,0.03948206,-0.23270452,-0.5122896,-0.3923578,0.50935155,-0.1955565,0.43882504,-0.031115947,-0.39087668,1.153822,0.13182025,0.9379818,0.02896604,-0.5455323,-0.12732112,0.7334819,-0.20238554,-0.015110941,-0.4711641,1.2238063,0.8077703,-0.07271289,0.0012919307,-0.38574103,-0.106588244,0.28890648,-0.41014984,-0.023318762,0.0057941177,-0.61750555,-0.060186297,0.27119586,0.082759924,0.009570415,-0.2096101,0.07952767,0.31667686,0.27736965,0.006734515,-0.53440875,-0.18316476,0.37961808,0.21061854,-0.017776066,0.23828049,-0.35918975,0.015242974,-0.6013798,0.092633076,-0.5676955,0.045549154,0.06520765,-0.2336865,0.37522134,-0.16459204,0.0536261,-0.48795405,-0.26880363,0.12388862,0.23447634,0.2620521,0.29871407,0.6126589,-0.29295585,-1.7868975e-05,-0.1205599,0.42888108,1.1883745,-0.4398577,-0.09032037,0.29232585,-0.43179503,-0.7632136,0.001122276,-0.5882111,-0.05434111,-0.053235233,-0.65709907,-0.49077988,0.25591028,-0.117361516,-0.2594215,-0.17436528,-0.5913463,0.09948442,0.1628906,-0.28104207,-0.25965816,-0.08170354,0.12970418,1.0571774,-0.202991,-0.53998166,0.032449313,0.45689377,-0.45570922,-0.6544576,0.40835524,-0.433287,0.196491,0.17106509,-0.43613717,0.10668659,0.10289059,-0.6021419,-0.13092633,0.41239586,-0.20765595,-0.20694053,-0.29327154,0.28291973,0.7050257,-0.08561895,-0.11804819,-0.4817632,-0.45460543,-0.69030863,-0.49367616,0.017107695,0.31754258,0.22861338,-0.796542,0.040959943,-0.5487825,-0.13953814,-0.031680185,-0.3417749,0.47407582,0.11648762,0.4722092,-0.6286345,-1.0540086,0.3852073,0.13874745,-0.46217093,-0.43632475,0.33454588,-0.23781924,1.0441232,0.115999006,0.07131072,0.14704727,-0.82486343,0.3874997,-0.32976446,-0.16544776,-1.0820915,-0.016746148 +780,0.5639065,-0.16277117,-0.30357248,-0.1713871,-0.18104869,0.12521723,-0.26577193,0.31054914,0.17806864,-0.69121623,-0.11860378,-0.3784804,0.012841351,0.4339648,-0.13642932,-0.6566811,0.0033351108,0.12010488,-0.48809728,0.61430615,-0.45568246,0.3950454,0.25239098,0.33280718,0.15597409,0.2202919,0.46233684,-0.21895811,-0.059931345,-0.26931745,-0.04553462,0.052705973,-0.70268816,0.13146211,-0.10714644,-0.44511837,-0.025948592,-0.332677,-0.22994475,-0.75040114,0.32292098,-0.7138007,0.45590258,0.19527733,-0.21329702,0.38995832,0.10937457,0.23017383,-0.1897916,0.13008407,0.1679615,-0.11069776,0.06281829,-0.11568502,0.014567107,-0.4744409,-0.5617441,0.16010165,-0.37502053,-0.29451054,-0.41039371,0.15508424,-0.3229169,-0.03882597,-0.11054444,0.46124464,-0.28873545,0.012580663,0.18857023,-0.2208059,0.4815085,-0.467756,-0.17134376,-0.18071076,0.1847144,-0.2375655,-0.14834404,0.1971391,0.18127377,0.6911264,0.053484626,-0.18099624,-0.3517025,-0.07642929,0.019317182,0.52883,-0.1617683,-0.6021344,-0.12778223,0.03719812,0.1497156,-0.0049977656,0.10585131,-0.28694034,-0.22227667,-0.016675599,-0.22731945,0.39863402,0.42329216,-0.33234707,-0.33759248,0.37550405,0.34860408,-0.0053078905,-0.062396683,-0.069582015,-0.030455327,-0.542317,-0.10357724,0.117551215,-0.24420431,0.55427563,-0.16482985,0.34247208,0.6524725,-0.112798475,-0.043055233,0.024271015,-0.119619764,-0.050869387,-0.086530864,-0.21481189,0.25208616,-0.49754223,0.029927962,-0.30875772,0.82650346,0.1054789,-0.9048643,0.38204762,-0.42781365,0.1451987,-0.025139267,0.5466462,0.6808795,0.33524513,0.31223038,0.6491381,-0.5336967,0.0234458,-0.17904635,-0.34995508,0.07183185,-0.09096012,-0.10648583,-0.52033603,-0.08043797,0.049373858,-0.010347933,-0.015947372,0.43819773,-0.59815043,0.010573328,0.19925842,0.7935079,-0.3222955,-0.04565213,0.65992004,0.9886138,1.0250962,-0.017473638,1.1604671,0.17408207,-0.29492682,0.22139408,-0.35305077,-0.6178812,0.34869564,0.3925236,0.21031079,0.21819207,0.024050951,-0.01398664,0.31140348,-0.3366635,-0.008861326,-0.2292694,0.15035553,-0.012747418,-0.036737643,-0.34934282,-0.23424608,-0.043420695,0.043007545,0.1053752,0.105987236,-0.15302366,0.29056603,0.025130246,1.661054,-0.13727468,0.12415118,0.047481954,0.4000657,0.17890558,-0.25021,-0.10703621,0.16386873,0.29860967,0.09116827,-0.5367596,0.0821362,-0.14104739,-0.5411555,-0.15862238,-0.22822401,0.014865013,-0.04814908,-0.45943838,-0.035643272,-0.1623159,-0.45511293,0.39267048,-2.6834183,-0.1963575,-0.07044255,0.35051882,-0.31443584,-0.29558235,-0.123016246,-0.4953437,0.4574728,0.43640774,0.4249623,-0.7392415,0.24530242,0.34707072,-0.4581605,-0.16732442,-0.6725942,-0.02189996,-0.10740794,0.45551747,0.068646856,-0.10444197,-0.09328596,0.34677693,0.59342885,-0.10126327,0.08114745,0.10246873,0.39734733,0.17344895,0.50178444,0.034639657,0.4837267,-0.21642902,-0.16697045,0.41400218,-0.35668653,0.086212225,-0.17109874,0.14789696,0.24311087,-0.41848785,-0.8100852,-0.72450364,-0.35019252,1.1579574,-0.14050214,-0.3830479,0.21554108,0.06760037,-0.20092633,-0.035494704,0.35962865,-0.104987025,0.021975826,-0.8926431,0.116748385,-0.020620666,0.09376999,0.09217121,0.007982742,-0.48466134,0.6938097,-0.0020744745,0.3727784,0.4384768,0.31157216,-0.2976604,-0.5181745,0.17444387,1.1068693,0.32213894,0.09772473,-0.200923,-0.174686,-0.41449982,0.049151167,0.06042748,0.3594753,0.7585662,0.030712485,0.10647471,0.28326878,0.037692983,0.11721198,-0.11789046,-0.28377378,-0.059292234,-0.053235695,0.6897053,0.5544634,-0.081811786,0.34705478,-0.13977066,0.2913978,-0.18788394,-0.39188948,0.6484789,1.1158838,-0.11565591,-0.1255154,0.52742374,0.45722502,-0.107138544,0.3919731,-0.6276972,-0.4138588,0.408014,-0.16618973,-0.36437687,0.25744766,-0.3316553,0.15151897,-0.97309375,0.34239724,-0.28210646,-0.3489762,-0.6149497,-0.12390934,-3.676321,0.22933605,-0.23470932,-0.24077487,-0.069790885,-0.043746967,0.30416572,-0.5533111,-0.37677616,0.08807389,0.063494995,0.75270975,0.035535913,0.22544521,-0.20798534,-0.16929457,-0.29704806,0.19352019,0.014695063,0.19603461,0.100325614,-0.43592665,0.02734984,-0.20568906,-0.34555537,0.10448639,-0.44048488,-0.54747,-0.25448212,-0.47815502,-0.41866738,0.51115155,-0.32500705,0.10539162,-0.23020253,-0.11058511,-0.022915218,0.40983486,0.12221353,0.053807758,0.043943834,-0.09083596,-0.017576102,-0.31748316,0.18302146,0.1709872,0.24102522,0.48490703,-0.33456478,0.19534498,0.43319353,0.53187764,-0.1282,0.7503979,0.5039236,0.03929939,0.24219987,-0.27684233,-0.19392332,-0.5634294,-0.3419401,-0.09966287,-0.38489252,-0.41018832,0.010120355,-0.27844876,-0.7250558,0.4895132,-0.031274613,0.0839768,-0.18940297,0.26595956,0.46087387,-0.2507149,-0.010602064,-0.12544805,-0.16955394,-0.5391164,-0.30324072,-0.6303243,-0.51393163,-0.022802442,0.84690225,-0.07018535,0.030868486,-0.013133828,0.0059779957,0.036268577,-0.013518421,-0.05804248,0.15251218,0.32420653,-0.018177275,-0.77761626,0.60117126,0.012643725,-0.10662519,-0.53092736,0.23450229,0.49292317,-0.40536675,0.35780537,0.430639,0.10665712,0.03366179,-0.53906655,-0.059483528,-0.029245242,-0.28282577,0.39798582,0.13901532,-0.62000686,0.49565876,0.3283788,-0.21115336,-0.7865615,0.49495625,0.14561602,-0.3876236,-0.004920967,0.2337093,0.06687239,0.09382036,-0.27792466,0.29538053,-0.5327153,0.22871761,0.15448532,0.052271783,0.41627756,-0.23533158,-0.1679624,-0.7766925,-0.10457523,-0.4675374,-0.2882975,0.088103324,0.18522866,0.039527886,0.3589189,-0.03743399,0.4538297,-0.1550507,0.076467276,-0.087752976,-0.16776589,0.28800258,0.49814442,0.3839691,-0.3737467,0.5810747,0.033365637,-0.0477798,-0.19872032,0.04345603,0.50692046,0.07962615,0.31267935,-0.040204722,-0.26545027,0.40910214,0.6014856,0.15992919,0.36204797,0.067088716,-0.19052505,0.42487007,0.107700996,0.14542553,0.026158981,-0.44697458,-0.10966289,-0.19284934,0.13037828,0.46447715,0.088690236,0.3205779,-0.075301394,-0.32910278,0.04690075,0.08212554,-0.12191852,-1.1359521,0.35860947,0.21104035,0.7612622,0.63557756,-0.055345993,0.16355598,0.72705895,-0.22879265,0.14657193,0.25936428,0.011234917,-0.5628128,0.5343915,-0.6938225,0.30096853,-0.089573234,-0.08336606,0.032338616,-0.014796771,0.35072148,0.6937812,-0.13568212,0.18404122,-0.11984548,-0.2852254,0.13028368,-0.36652794,0.33584088,-0.49658686,-0.20870468,0.7512667,0.43733323,0.2168184,-0.10226948,0.0029070936,0.092984974,-0.10074219,0.15210426,0.118469104,0.046828896,0.029685419,-0.64399314,-0.115726575,0.554014,0.13476819,0.22220695,-0.041178025,-0.31584835,0.11467008,-0.19129725,-0.16566873,-0.101133704,-0.5503845,-0.020034444,-0.2825716,-0.1928046,0.52912486,-0.34121913,0.37832475,0.13380328,0.15395069,-0.1983254,-0.02041322,0.25690195,0.5580636,0.20647213,-0.12146708,-0.3617986,0.09612323,0.15307,-0.22725548,-0.21792074,-0.2571268,0.0047280416,-0.72613555,0.41636822,0.025299236,-0.24864784,0.26545405,-0.14247411,0.06550917,0.6110195,-0.061884575,-0.13430263,0.18444723,-0.21696287,-0.24394834,-0.06026436,-0.03049763,0.37107167,0.12723285,-0.09944482,0.03615384,-0.034595408,-0.14071849,0.39555016,0.1861934,0.36218852,0.20083839,0.05133648,-0.39621666,-0.03350451,0.14711404,0.39576918,0.11411585,-0.09101341,-0.2164115,-0.41345716,-0.3781464,-0.008720182,-0.07918607,0.20710646,0.059976146,-0.28333554,0.7564849,0.10507107,1.095574,0.008077577,-0.35685027,0.060599744,0.4270835,-0.052529614,-0.025779147,-0.38051862,0.91706324,0.6018763,-0.07077293,-0.12945563,-0.20142333,0.021013735,0.061920643,-0.25113055,-0.11158034,-0.049608216,-0.666098,-0.40053686,0.227235,0.30223057,-0.0011251196,-0.13469036,-0.050433025,0.18591814,-0.1277073,0.46312335,-0.46228328,-0.1771791,0.22702831,0.36641157,0.055476576,0.026138395,-0.43993965,0.47817376,-0.6311592,-0.019001067,-0.24117406,0.15021731,-0.20001513,-0.23457041,0.3244289,0.017961502,0.32141426,-0.25993937,-0.4887845,-0.2744575,0.36665967,0.09338969,0.19620019,0.62552357,-0.22912405,0.09789668,0.057970278,0.46050212,1.2442317,-0.33602566,0.033500835,0.40155107,-0.33197954,-0.59061015,0.2480294,-0.26266652,0.09894309,-0.05428273,-0.23484406,-0.40043497,0.30591366,0.14987952,0.07454504,0.058691658,-0.64727867,-0.25333697,0.35155618,-0.2909923,-0.25857285,-0.2768163,0.11093261,0.5003526,-0.32008696,-0.30477995,-0.013228414,0.3720277,-0.3100692,-0.6598462,-0.14684066,-0.34269315,0.38978043,0.26728326,-0.2541932,-0.09414004,0.069962025,-0.38372493,0.008635564,0.17784262,-0.4244889,-0.038370825,-0.44576946,-0.020322932,0.8044224,-0.10096002,0.12310401,-0.5688598,-0.31068325,-1.0124481,-0.36328316,0.6052097,0.1329654,0.079579696,-0.44753382,-0.043484956,-0.17570685,-0.10952635,0.006428484,-0.4068455,0.32661515,0.16534087,0.495942,-0.038988836,-0.66349363,-0.0071122795,0.24892105,-0.19589303,-0.52015203,0.48548666,0.07035484,0.8294222,0.074558005,0.070803076,0.39451486,-0.6298714,-0.012802672,-0.07543717,-0.19086269,-0.7124172,0.117714055 +781,0.39367083,-0.2627942,-0.5039148,-0.12063801,-0.3112515,0.068848856,-0.065996364,0.5937279,0.24914639,-0.34097734,-0.20775078,-0.33657858,0.049950738,0.19234204,-0.054299276,-0.43939394,0.03242338,0.27195093,-0.53795093,0.46811453,-0.35080436,0.11200096,-0.13133651,0.4210547,0.3928327,0.30646974,-0.28083998,-0.22631137,-0.14836049,-0.20387074,-0.07628262,0.40976062,-0.56603205,0.3376967,-0.22720493,-0.17245951,0.026405215,-0.6169085,-0.49641246,-0.7623211,0.19637051,-0.993338,0.43675986,-0.04301094,-0.22864223,0.025281599,0.082204424,0.5204102,-0.24943271,-0.15705016,0.30227908,-0.19252054,-0.07950657,-0.16208278,-0.066624075,-0.29665226,-0.4331307,-0.14682563,-0.24355388,-0.20403774,-0.42620835,0.16387479,-0.30242124,-0.10318915,-0.07646505,0.43254873,-0.5372786,0.3857148,0.1679114,-0.11939112,0.25080815,-0.5034598,-0.2141768,-0.13983274,0.38904566,-0.11513392,-0.35539725,0.39981502,0.29432845,0.17207563,-0.10872375,-0.058732595,-0.099272236,-0.050072428,0.24793628,0.49847177,-0.106664956,-0.35781032,-0.034879334,0.06211335,0.13495383,0.2612749,0.078824736,-0.43049216,-0.2771569,0.123550706,-0.08840655,0.2921462,0.4403117,-0.08229027,-0.1203029,0.34651175,0.43764883,0.3655029,-0.14547476,0.021707824,0.08204854,-0.497371,-0.1759355,0.0020154428,-0.18326838,0.4281941,-0.12857199,0.14985754,0.9295188,-0.15584697,-0.08704614,0.07825785,0.26384166,-0.15085395,-0.31256416,-0.29164964,0.26735663,-0.3583596,0.3008948,-0.032450862,0.74079895,0.11643978,-0.5360112,0.19629917,-0.7170369,0.05468614,-0.22965448,0.49545032,0.6079421,0.437372,0.4762961,0.63842505,-0.29403383,0.11063101,-0.05036863,-0.5088798,0.114810176,-0.2957236,0.025777817,-0.52918553,-0.095913604,-0.01497175,-0.19476427,0.06292832,0.26952392,-0.53249204,-0.03448606,0.12832066,0.84833777,-0.32053804,-0.027712196,0.76791847,0.8579873,0.70367706,0.16185047,1.0663494,0.18557003,-0.27830783,0.27889627,-0.05021264,-0.8130296,0.3819571,0.35675478,-0.34628412,0.034667112,0.30705371,0.053963643,0.2891113,-0.48918098,0.09663143,-0.12942497,0.14584278,0.15890491,-0.16627574,-0.34402117,-0.3184188,-0.22854045,-0.015989957,0.031078398,0.075248234,-0.20738515,0.39405397,0.05399063,1.8054153,0.09202403,-0.015530409,0.03617662,0.48163065,0.13758299,-0.1332384,-0.17616211,0.5523853,0.30459484,0.24133964,-0.55523145,0.25445592,-0.18565233,-0.34290054,-0.05992071,-0.4303847,-0.15938272,-0.04017382,-0.42570928,-0.19605218,-0.16873077,-0.1724331,0.48441392,-2.756604,-0.12223951,-0.006083578,0.4709839,-0.2127564,-0.25296208,-0.14482962,-0.40330616,0.2649179,0.23061118,0.55268174,-0.699903,0.33627817,0.4876249,-0.6191543,-0.23503676,-0.5674016,-0.07092553,0.027808907,0.21872644,0.03341842,0.1647613,0.042002793,-0.04236122,0.36953953,-0.02853941,0.15202801,0.49592772,0.4867905,0.025207248,0.6137403,0.004328919,0.4578462,-0.17658278,-0.20346448,0.1754758,-0.32526255,0.3531302,0.05394598,-0.009150444,0.6300785,-0.38119432,-0.7369317,-0.7267073,-0.20135947,1.1579813,-0.30738586,-0.30514285,0.24880563,-0.5474312,-0.229392,-0.05865366,0.5275446,0.0030038187,-0.022870796,-0.7886561,-0.13711607,-0.124740504,0.17230424,-0.025631862,-0.10101932,-0.34376335,0.7570333,-0.0048887604,0.47264904,0.18594898,0.014172659,-0.24902341,-0.40451017,0.12156453,0.725745,0.25875443,0.17476226,-0.22718641,-0.21317147,-0.3672225,-0.109007575,0.119995795,0.6664018,0.5225948,-0.16203092,0.18701775,0.24525952,-0.065437265,-0.0878951,-0.3046499,-0.27109095,-0.035811577,0.0077692824,0.5010781,0.68436253,-0.11768136,0.56650317,-0.0062224055,0.3440402,-0.053926166,-0.421125,0.24424104,1.2122452,-0.13905852,-0.29296252,0.537929,0.5393845,-0.27065977,0.2862294,-0.4680298,-0.12407739,0.54615074,-0.14097446,-0.488421,0.27214026,-0.2629108,0.1742383,-0.86802435,0.30842382,-0.12396073,-0.6577143,-0.531658,-0.018041363,-2.584828,0.1645719,-0.23533668,-0.24635693,-0.11983454,-0.12072243,0.17630132,-0.5457439,-0.4763752,0.11033688,0.030551655,0.8002611,-0.14695115,0.04555423,-0.2539535,-0.1525587,-0.19670856,0.07275587,0.094217144,0.43029276,-0.105110526,-0.38905498,-0.088664725,-0.050520472,-0.32126242,0.04560361,-0.63676506,-0.5555478,-0.107697,-0.57082117,-0.3228597,0.64141023,-0.43457368,-0.057483267,-0.115100995,-0.01383368,-0.16794758,0.21753795,0.20805503,0.110021695,0.028969212,-0.022433562,-0.04598689,-0.25167945,0.3843949,-0.03858454,0.31787553,0.20974562,0.028966699,0.24937232,0.45736942,0.4637184,-0.14248557,0.8864599,0.49943194,-0.19225541,0.1813325,-0.31438705,-0.30733976,-0.4960421,-0.16781361,-0.0033729929,-0.42883584,-0.40944552,-0.01269865,-0.36579165,-0.7727911,0.51104116,0.1148259,0.12287092,0.07955127,-0.008608818,0.61543363,-0.09923543,-0.16101496,0.0004134306,-0.15611704,-0.63408214,-0.2728749,-0.46891266,-0.4693679,0.18206586,1.0096812,-0.29890618,0.049315516,0.11709076,-0.47216734,0.06096438,0.22204396,-0.10729045,0.13142942,0.6130438,-0.19500305,-0.6440366,0.3897622,-0.10942481,-0.26890084,-0.6795539,0.32801947,0.6473304,-0.70817804,0.5785983,0.23717903,0.014798337,-0.2547302,-0.31142005,-0.21358415,-0.22081694,-0.20179045,0.36070195,0.11526052,-0.6496954,0.22435328,0.39426666,-0.24293676,-0.74885213,0.58257043,-0.2337289,-0.38810465,0.049927585,0.31836957,0.017101053,0.080901034,-0.17469056,0.2887094,-0.31196827,0.23247422,0.24996679,-0.18912964,0.085080735,-0.15590623,0.14906123,-0.7435712,0.113831125,-0.3519134,-0.39083496,0.41287515,0.099920645,0.03464278,0.2090356,0.22553842,0.3052692,-0.2780345,-0.00901403,-0.19919035,-0.24442504,0.23234835,0.438831,0.47333127,-0.46858254,0.5893218,0.08370445,-0.11657076,0.1331338,0.16493177,0.316608,0.0757973,0.5087449,0.060814034,-0.24150242,0.23182373,0.9335031,0.22561088,0.63705796,0.015676614,-0.054187458,0.14614718,0.09071273,0.37778592,-0.027021987,-0.68265533,0.16202055,-0.33384123,0.13403311,0.4129472,0.22855447,0.17436838,0.025841963,-0.41210097,-0.010862291,0.23984501,0.24414203,-1.3332065,0.41153988,0.2920753,0.836379,0.3081503,-0.060210664,0.12887086,0.7062435,-0.06559169,0.10946059,0.21670668,-0.120381534,-0.4813213,0.4218273,-0.89884657,0.39389876,-0.026135726,-0.08841164,0.09324764,-0.05176974,0.4011667,0.668856,-0.25730273,-0.049432002,0.055240072,-0.43203115,0.12181427,-0.4500291,0.114364564,-0.7192593,-0.35611627,0.5338534,0.72701114,0.37355956,-0.1889517,0.14826562,0.03583295,-0.18485208,0.18932489,0.18339637,0.03562851,0.0638774,-0.72092617,-0.13206854,0.58318055,-0.35847855,0.23583211,-0.03250699,-0.13993844,0.33525723,-0.16516586,0.043325346,-0.18573765,-0.7825722,0.035445623,-0.27295396,-0.5755854,0.4393901,0.1069073,0.33505502,0.28356913,0.04953627,-0.1615981,0.6267701,0.11239799,1.0679597,-0.07397298,-0.27003103,-0.3588049,0.23452802,0.22740746,-0.14308803,-0.15537429,-0.36815187,0.017870879,-0.43128395,0.36188513,0.004311553,-0.36795834,-0.092438236,-0.17243262,-0.011772712,0.54606646,-0.052262597,-0.13377725,-0.23353931,-0.22781931,-0.36295706,-0.04316661,-0.12826683,0.2943577,0.2868976,-0.03494798,-0.27425072,-0.0857908,-0.20340827,0.32655436,-0.17873526,0.51408494,0.3763034,0.03889281,-0.11063274,-0.29691166,0.27140802,0.530481,-0.05546119,-0.11420768,-0.18738,-0.28415594,-0.3911688,0.28445467,-0.0548458,0.47992232,0.2505236,-0.28684667,0.69929564,-0.14461221,1.0291735,0.050375853,-0.32733512,0.35333544,0.4524615,0.05171332,-0.059868038,-0.36010668,0.7827706,0.5204545,-0.074454024,-0.10541386,-0.37237218,-0.060187947,0.20138565,-0.1042368,-0.10107864,0.039992485,-0.6174857,-0.1871132,0.17059053,0.21855323,0.28133217,-0.07175126,-0.008980566,0.26966378,-0.08636392,0.112907425,-0.30128402,-0.2664695,0.19314507,0.17122337,0.057056732,0.035179604,-0.51189816,0.5015417,-0.34307626,0.08270579,-0.27150464,0.22000538,-0.38735792,-0.17006691,0.120723955,-0.031664234,0.38464442,-0.39655834,-0.1720202,-0.33742195,0.5269834,0.22020955,0.111101985,0.51100767,-0.26590103,0.05597174,0.059094477,0.43144247,0.6854854,-0.2568238,-0.0024790508,0.5829167,-0.44982672,-0.40825313,0.44252676,-0.32743984,0.11492113,0.14955895,-0.25138608,-0.4549048,0.27598995,0.22471932,0.0737733,-0.14363219,-0.6215703,0.007885669,0.38600594,-0.20404649,-0.19795369,-0.38614655,0.09314563,0.5339633,-0.2259685,-0.36853758,0.14723173,-0.04321679,-0.1745708,-0.3323138,-0.1417435,-0.44852442,0.3533206,-0.24791276,-0.38714027,-0.20997927,0.032271385,-0.3866527,0.12809291,0.018403335,-0.35354543,0.13598336,-0.22515061,-0.0075628334,0.97543657,-0.268447,0.022003742,-0.54700124,-0.43563208,-0.6666298,-0.23062304,0.3990127,0.13978864,-0.015818182,-0.44929695,0.049890913,0.09789681,-0.2443895,-0.22943854,-0.50416434,0.42804417,0.097006306,0.35187802,-0.031307276,-0.9875393,0.3217621,0.017521143,-0.22877155,-0.7095793,0.5290485,-0.2697638,0.7088068,-0.015736908,0.15830204,0.20694053,-0.29419532,-0.07582271,-0.27722526,-0.17129306,-0.69344383,-0.018869335 +782,0.22733828,-0.51588887,-0.41557676,-0.12807004,-0.22183956,-0.03780651,-0.10790194,0.31455782,0.1562974,-0.27304882,-0.23235631,-0.07703384,-0.039214823,0.556048,-0.14415155,-0.67585236,-0.22847703,0.1166672,-0.76742953,0.58340317,-0.47025594,0.24385123,0.041167367,0.34169984,0.2165955,0.34746003,0.40590668,-0.13498215,-0.05853198,0.116157465,-0.19299807,0.07284794,-0.5429991,0.25836208,-0.06475758,-0.21992753,0.12596263,-0.36470065,-0.21914017,-0.6786895,0.34501785,-0.83026916,0.38020346,-0.07256397,-0.11976051,0.072694756,0.13872425,0.27415392,-0.62870777,-0.07731034,0.22824506,-0.08359671,-0.14429283,-0.16193493,0.12713835,-0.24637826,-0.41831067,-0.0028802624,-0.48320433,-0.24866807,-0.12838261,0.111120276,-0.42993435,0.16595438,-0.24573278,0.2657895,-0.42991138,-0.17104198,0.29711086,-0.17831643,0.08438461,-0.6363093,-0.0633713,-0.104362525,0.4300578,0.089180954,0.0026932124,0.57637125,0.13346197,0.373916,0.20672809,-0.22624257,-0.2939606,-0.18377045,0.12334136,0.5031351,-0.03423581,-0.35830775,-0.079257786,0.13165638,0.23086476,0.1532465,0.119323716,-0.27177435,-0.18428114,-0.13468279,-0.126249,0.34655,0.5369584,-0.026842084,-0.3363769,0.2557411,0.49418354,0.2992068,-0.09421124,-0.14778435,0.0451366,-0.5317307,-0.21521465,0.14304039,-0.014888967,0.4549043,-0.011692772,0.2646815,0.88108385,-0.1129201,-0.0043029105,-0.25985658,-0.020863002,-0.31032196,-0.29360422,-0.2135891,0.13282892,-0.46270132,0.03433487,-0.19994788,0.74090534,0.07461201,-0.77134734,0.35133186,-0.40046787,0.21091561,-0.09026541,0.5701679,0.5274553,0.37028125,0.30434912,0.8271747,-0.42048213,0.23706673,0.044057477,-0.49814537,0.018194573,-0.2776487,-0.031391017,-0.49940482,0.16666107,-0.18656382,0.13566124,0.01641448,0.31529242,-0.42643538,0.06615036,-0.008223648,0.7940639,-0.36249736,0.019632995,0.67448914,1.0245522,1.1536119,-0.023602068,1.0721549,0.31621838,-0.29257527,0.15351163,-0.39069524,-0.81549877,0.17984128,0.39090794,0.2386146,0.3046892,-0.074751504,-0.1199429,0.38002247,-0.34494588,0.21422234,-0.13478418,0.30276546,0.1672443,-0.1342198,-0.40686128,-0.22715619,-0.046255548,-0.12363793,0.009070686,0.1387319,-0.21266747,0.46107334,-0.091296844,1.5417448,0.025380688,0.1439151,0.0789836,0.63306534,0.13475668,-0.18560962,-0.018698514,0.3601628,0.6091566,-0.21539068,-0.72691345,0.16639759,-0.46381408,-0.5325278,-0.13954698,-0.46142414,-0.10920782,0.1702124,-0.3625423,-0.24430753,0.0644238,-0.13574803,0.37485796,-2.7478256,-0.0020947712,-0.21927688,0.1659664,-0.29525417,-0.015995055,-0.020388031,-0.5540218,0.23789361,0.30636984,0.46063447,-0.50039554,0.36926594,0.44380093,-0.3922399,-0.137239,-0.52265155,-0.08497478,-0.046048455,0.53515226,0.015358827,0.02120271,-0.118792124,0.07217654,0.6745013,0.03356712,0.052977808,0.49437025,0.45513654,0.22675455,0.5243924,0.123854876,0.5237289,-0.46410993,0.008520271,0.25586042,-0.26782933,0.3747823,-0.14932348,0.09625198,0.49638605,-0.33191353,-0.8147173,-0.55954796,-0.22117174,1.120051,-0.36520848,-0.43080944,0.27664828,-0.06834758,0.06111825,-0.1089291,0.4108799,-0.19879425,-0.024612894,-0.54119676,-0.029790554,0.029981265,0.16150062,0.07251926,-0.22866781,-0.34713033,0.8374595,0.04718705,0.55794084,0.25242904,0.21571429,-0.1167761,-0.3149422,0.13342023,0.644949,0.3086584,0.00042573042,-0.056664467,-0.26021636,-0.014866139,-0.3226927,0.01779354,0.5042094,0.7848772,-0.0008695317,0.1764417,0.31168064,-0.115488715,0.026116926,-0.06662672,-0.21898225,-0.16101313,-0.0016137192,0.37200624,0.5914224,-0.07829898,0.3590831,-0.21499448,0.40168673,0.031519704,-0.48065308,0.66441196,0.48335868,-0.10657482,-0.020421525,0.37035123,0.52742684,-0.36664635,0.45044366,-0.5592405,-0.22185062,0.78911585,-0.25508013,-0.34846374,0.07525538,-0.20988779,-0.008975893,-0.8748679,0.32400328,-0.29559666,-0.31934005,-0.5608548,-0.19370532,-2.9268432,0.14791854,-0.27736762,-0.28356436,-0.26540396,0.04918207,0.24596827,-0.6977142,-0.43531147,0.14661372,0.20051436,0.53243023,0.056562778,0.16767003,-0.19863394,-0.08059518,-0.18715377,0.14169803,-0.10966783,0.24478748,0.03840689,-0.4835053,-0.07622155,-0.10460248,-0.46509483,0.2388192,-0.43371707,-0.37932992,-0.17576131,-0.47338057,-0.20791177,0.5494309,-0.13504067,-0.078419104,-0.15781014,0.076997496,-0.3333351,0.13296254,0.09909684,0.13025856,0.0916791,-0.22676301,0.14968427,-0.40381032,0.45164922,-0.023557918,0.502063,0.19846003,0.018048795,-0.027296407,0.4171631,0.58933884,-0.18884508,0.7000634,0.36310843,-0.1114807,0.27635622,-0.23043594,-0.17886463,-0.50393134,-0.46832463,0.08321706,-0.31905106,-0.60245323,0.025894072,-0.3426996,-0.80675507,0.458332,-0.054836012,0.2716739,-0.053552125,0.043087672,0.3162117,-0.054099288,0.031056331,-0.14519426,1.673294e-05,-0.45299548,-0.3514828,-0.72625,-0.50366104,0.017567528,0.9000638,-0.23142245,-0.24661115,-0.120025635,-0.52747613,0.16320345,0.028562482,-0.023408918,0.3956023,0.23634101,-0.059358228,-0.83229536,0.6326032,-0.037176125,-0.0036530814,-0.47199112,-0.05158576,0.4543331,-0.6046268,0.42344126,0.21668676,-0.07110716,0.053431112,-0.49959216,-0.2429019,-0.023357451,-0.05302855,0.35597134,0.11085337,-0.642574,0.52445424,0.18980435,-0.65509593,-0.72981936,0.01834336,-0.009940088,-0.15509626,0.031087061,0.2379228,0.011336118,-0.049900908,-0.35120177,0.22468947,-0.40285987,0.31244844,0.18558793,-0.048012502,0.16824579,-0.07948717,-0.27158326,-0.6068755,0.14481388,-0.32893124,-0.08801484,0.38798285,0.10137405,0.014612721,-0.045613054,0.120967984,0.3738814,-0.29074317,0.07887083,0.08320541,-0.32459053,0.27543232,0.39729112,0.34024128,-0.46666166,0.48112875,0.10920621,-0.1529858,0.26548287,-1.7327922e-05,0.30228087,0.26173395,0.26750946,-0.21598446,-0.12844504,0.4873866,0.8013421,0.1182156,0.44176954,0.01642601,-0.24671271,0.4956427,0.061435733,0.15094955,0.09584254,-0.36400038,0.01455835,0.14648299,0.08525523,0.50884515,0.2433039,0.4189012,0.16096891,-0.12212513,0.060233466,0.24626768,-0.046865735,-0.90351456,0.3852791,0.2631967,1.0086001,0.45947555,-0.0054527437,-0.08299659,0.7309547,-0.22848736,0.10997225,0.29037422,0.046416175,-0.64275306,0.7363599,-0.41340858,0.5115319,-0.22991626,-0.14497897,0.22584817,0.0422132,0.27204555,0.61541337,-0.21856959,0.040717084,0.045364317,-0.2911617,-0.0794716,-0.45175728,0.12912855,-0.37880176,-0.4228428,0.49238747,0.44590157,0.30559614,-0.06255399,-0.045815382,0.073008336,-0.19509937,0.21244301,-0.03997951,0.01156391,0.14684065,-0.5622011,-0.11568773,0.5203573,-0.20530227,0.23050955,-0.18351777,-0.43482283,0.025673198,-0.33726048,0.0054796166,-0.025645414,-0.73152786,0.27335736,-0.05536325,-0.4032228,0.30590492,-0.12858866,0.2210987,0.2673361,-0.04108003,-0.2316417,0.15079619,-0.03682853,0.9800099,-0.10682945,-0.1785651,-0.39756337,0.008556326,0.28588328,-0.25835642,0.25921172,-0.352515,-0.19809367,-0.46631208,0.6255454,-0.120714806,-0.28514585,0.15778217,-0.35382462,-0.1255095,0.6131607,-0.14164506,-0.06838103,-0.15179434,0.028747106,-0.29935667,-0.040259693,-0.46505097,0.21241881,0.25439796,0.11890073,-0.10455453,-0.22791182,-0.06397077,0.61502373,0.052262187,0.45832896,0.16580431,0.017018646,-0.39709908,-0.03530798,0.09114029,0.45160505,0.40203327,-0.031024547,-0.50619274,-0.40608764,-0.25214577,0.17436896,-0.17142531,0.17255302,-0.012099503,-0.5343799,0.67419726,0.12471894,1.1796815,0.07435506,-0.2682785,0.13707116,0.7039991,0.02919341,0.17847136,-0.4764177,0.80347425,0.48157534,-0.1231919,-0.052456833,-0.3915331,-0.12563004,0.48276207,-0.3260544,-0.0894307,-0.027770098,-0.49882063,-0.40144306,0.13177307,0.16600016,0.11797074,-0.027132476,-0.20312516,0.029493853,0.16728476,0.45520404,-0.59421176,-0.22881718,0.10966711,-0.0067919726,0.010660452,0.2423736,-0.5255612,0.3935822,-0.6716536,0.25465393,-0.35416332,0.16782019,-0.114274554,-0.24437895,0.14683327,0.11112511,0.39895454,-0.48940882,-0.40890646,-0.030775683,0.5334707,0.093581446,0.4120002,0.6454372,-0.31355783,0.053425353,0.19000602,0.5157475,1.0695826,-0.47424215,0.010222725,0.29795986,-0.45315364,-0.5920973,0.46462682,-0.19562927,-0.16950472,-0.25291905,-0.46115202,-0.4446876,0.33614537,0.17167845,0.06288476,0.065435946,-0.55565536,-0.21645486,0.40666658,-0.29069665,-0.29666367,-0.37891316,0.22001283,0.6279747,-0.344738,-0.3119209,0.20040672,0.20271356,-0.23457642,-0.40698725,-0.12061463,-0.30901903,0.44463915,0.071328856,-0.13071159,-0.34207192,0.12757112,-0.38557485,0.17803478,0.11315055,-0.37086058,-0.07083393,-0.09137906,-0.019794613,0.77709913,-0.2501981,-0.07115529,-0.68612474,-0.310322,-0.96656644,-0.5082361,0.591718,0.16706443,-0.10716641,-0.568371,-0.02151914,0.009475359,-0.06875884,-0.09509381,-0.53605247,0.35035962,0.10875831,0.3725967,-0.20772323,-0.7282391,0.21359552,0.089257576,-0.20928761,-0.49784002,0.6382292,-0.12386227,0.81938475,-0.02413169,-0.12698577,0.024474518,-0.36080912,0.18430792,-0.43623856,-0.29220745,-0.5388913,0.12611896 +783,0.51957804,-0.12651952,-0.54782885,-0.13867673,-0.56650037,0.037111353,-0.23133415,0.29172477,0.27611056,-0.2125982,-0.08107572,-0.16482663,-0.07740155,0.41419208,-0.2218137,-0.85458285,0.06056057,0.34858665,-0.7381165,0.6411404,-0.47543836,0.3037334,-0.056728113,0.4158412,0.2605859,0.10874022,-0.03018871,-0.00053628784,-0.22064306,-0.1289492,-0.19605123,0.09467119,-0.8729841,0.52121073,-0.1784019,-0.47882006,-0.1626289,-0.42366162,-0.35075128,-0.80107385,0.22812258,-0.6630674,0.57964677,-0.19286664,-0.3405178,-0.06043766,0.3372555,0.5280615,-0.294991,-0.042926718,0.24900031,-0.35532984,-0.14245628,-0.32946387,-0.32772306,-0.61693835,-0.58768106,0.041899104,-0.535193,0.117351495,-0.2214601,0.25884527,-0.23954491,0.037724804,-0.20612796,0.41319513,-0.41783717,0.52874464,0.22400503,0.07434336,0.120316885,-0.4080759,-0.1902061,-0.2938138,0.2673792,-0.08593694,-0.47621107,0.42671624,0.452099,0.18561427,0.024894752,-0.28733838,-0.23886906,-0.08846422,0.1284611,0.41346863,-0.046348054,-0.33184198,-0.39996383,-0.03738113,0.44585657,0.28721467,0.085959874,-0.52995175,0.044262875,-0.107623935,-0.22213514,0.62657094,0.42678523,-0.19315185,-0.0996673,0.42545965,0.3340814,0.27754587,-0.2932857,0.030967807,0.0403966,-0.6343358,-0.15183903,0.40252456,-0.10543588,0.60704046,-0.29918203,0.07776622,0.70875984,-0.39051744,-0.32991698,0.115541406,0.056083318,-0.07768079,-0.32287955,-0.21926676,0.2020845,-0.57011324,-0.012103538,-0.13726138,0.8344977,0.22123128,-0.84411734,0.25379825,-0.70534045,0.19403236,-0.026287334,0.4278088,0.8477499,0.6547144,0.40425503,0.8240881,-0.454833,0.15052825,-0.001998509,-0.43287054,-0.022650898,-0.2338153,-0.10890257,-0.5040677,-0.009545823,-0.27552626,-0.09668088,0.057564646,0.46010518,-0.41484436,-0.21843183,-0.15517236,0.6297016,-0.4365655,-0.2936112,1.1517953,0.9790776,1.2762548,0.22453295,1.4314791,0.4829391,-0.013225938,-0.074088775,-0.10156438,-0.5988198,0.2818661,0.1367064,-0.8702902,0.31628105,0.0062146806,0.2023331,0.24980597,-0.15444146,-0.12689704,-0.003722747,0.43598607,0.0077773333,-0.20739977,-0.41184866,-0.4894644,-0.010930136,0.019455632,-0.14926404,0.32637945,-0.009041001,0.6303857,0.2274131,1.057156,0.16710423,-0.052615926,-0.14040513,0.36671543,0.25382367,-0.14177231,-0.20380406,0.23969398,0.24377947,0.110850476,-0.6542685,-0.058426123,-0.34630096,-0.34794426,-0.28093103,-0.27740493,-0.14533664,-0.18165548,-0.37500703,-0.3868105,0.006294551,-0.08575838,0.6726246,-2.2462988,-0.20445561,-0.0037568037,0.29467544,-0.18957354,-0.3693289,-0.22743328,-0.6221029,0.33960006,0.16654198,0.51217014,-0.7470123,0.3870455,0.33743146,-0.5100595,-0.25399226,-0.8359568,0.019573933,0.025191853,0.34078774,-0.19168384,0.0345728,0.11619403,-0.10277054,0.66059804,-0.13273461,0.10414786,0.24935983,0.45767602,-0.031360615,0.4657545,0.13758333,0.7558959,-0.4448603,-0.06992066,0.121183395,-0.40172663,0.4154552,0.17503452,-0.0008269188,0.746932,-0.63298696,-0.79857427,-0.62658685,-0.23620254,1.027527,-0.35430884,-0.28388467,0.11612291,-0.2536521,-0.21737589,0.027390605,0.32910606,0.033383377,0.044641357,-0.56985766,-0.09230751,0.061492175,0.15780704,-0.16152906,0.026213871,-0.16925484,0.7201001,-0.086040616,0.306757,0.4230206,0.1354726,-0.5276535,-0.5542212,0.10560119,0.8300577,0.27183655,0.1363075,-0.28301728,-0.32092264,-0.46914113,-0.14545391,0.21688895,0.5622404,0.5297064,-0.1861874,0.035993505,0.39432874,-0.25222942,0.14346343,-0.026354894,-0.3605262,-0.24297334,0.18314381,0.6104356,0.84706324,-0.12647386,0.70281506,-0.1799028,0.23417485,-0.25403914,-0.71045184,0.7483816,1.2509109,-0.24629474,-0.4542818,0.5630908,0.367462,-0.2894586,0.46226677,-0.25098136,-0.33990416,0.7254239,-0.004030938,-0.38543442,0.05071926,-0.35124567,0.08251054,-0.94495064,0.4506863,-0.39007774,-0.6615009,-0.4601687,0.032990467,-3.1150331,0.23760404,-0.19297184,-0.070742324,-0.14044437,-0.23555179,0.09997336,-0.6064876,-0.6859961,0.16432627,0.1442501,0.6563227,-0.062019795,0.13751227,-0.15418066,-0.3229847,-0.23345275,0.28622833,0.35990706,0.39731815,-0.11231923,-0.5308772,0.153599,-0.38385418,-0.54273707,0.007856786,-0.718025,-0.4206207,-0.14035411,-0.63450193,-0.39650837,0.728868,-0.6222706,-0.08966631,-0.22355293,0.009995447,-0.13032268,0.38176522,-0.051504727,0.22999686,0.13583595,0.048259627,-0.1587139,-0.24423742,0.12808013,0.11003371,0.3631258,0.4236832,-0.04937038,0.28857774,0.5970212,0.82012624,-0.048222993,1.025539,0.24931537,-0.14701594,0.24038452,-0.2023458,-0.41610873,-0.6009919,-0.29376617,-0.4552734,-0.45275006,-0.43527365,-0.062982894,-0.32932037,-0.8868421,0.5156042,0.19635405,0.11031497,-0.11139426,0.32168588,0.2752456,-0.2609816,0.18482053,-0.23036027,-0.32374164,-0.5043259,-0.50622106,-0.5588891,-0.6258026,0.15719324,1.3305222,-0.10520319,-0.11409161,0.08619821,-0.50316066,0.19202684,0.2443911,-0.17530495,0.18652661,0.22085817,-0.13364255,-0.71649814,0.31328672,-0.16058476,0.008579016,-0.47877824,0.35594654,0.9634642,-0.5124696,0.62644655,0.3496599,0.092824765,-0.072883986,-0.5314215,-0.22062106,-0.03925772,-0.2453547,0.6063735,0.28646824,-0.81659347,0.41613296,0.24237694,-0.3005921,-0.6801893,0.60763645,0.12609129,-0.121801436,0.039837252,0.40079466,0.15932085,-0.13815601,-0.23274231,0.32685736,-0.6057745,-0.006891094,0.11619934,0.03580058,-0.05657633,-0.06580842,-0.29586056,-0.7671843,0.04701711,-0.36708865,-0.35239795,0.16569567,0.12996952,0.040866368,0.13321717,0.32250154,0.21766867,-0.38665512,0.15581065,-0.34734908,-0.28990802,0.3562484,0.535131,0.44966635,-0.55383533,0.65360373,0.13166802,0.10031018,-0.038507402,0.17900282,0.44271052,0.22020657,0.42365384,0.14021038,-0.10341495,0.054653764,0.59373564,0.29852965,0.5590434,0.12296334,-0.11738361,0.10697633,0.2081132,0.4876448,0.07665894,-0.16908719,0.030578814,-0.2617626,0.12135446,0.41235685,-0.08374065,0.3161076,-0.06881902,-0.16507734,0.044646725,0.017940441,-0.048066903,-1.5945778,0.55591965,0.34794626,0.56823653,0.5757098,0.0053385496,0.073189326,0.6819089,-0.44026145,0.043822285,0.5255287,0.16105826,-0.24891551,0.5430382,-0.76710266,0.6263007,-0.25583777,0.060079932,0.15360515,0.28214052,0.3867239,1.1113483,-0.16087964,0.09180835,0.1117877,-0.3443699,0.20271112,-0.40455294,0.116579056,-0.55346924,-0.3124152,0.9953874,0.2944634,0.3013654,-0.32302904,-0.009191916,0.14220183,-0.100204855,0.16640663,-0.015568812,-0.061624855,-0.09163741,-0.6965785,-0.13164632,0.6461778,-0.26983282,0.08140138,0.22699505,-0.08778263,0.47925878,-0.2746198,0.06595179,-0.07017299,-0.83249444,-0.10934972,-0.42996156,-0.3949039,0.35459623,-0.47323355,0.16770208,0.122665055,0.09148944,-0.37029037,0.39405492,0.13943143,0.69078964,0.014691249,-0.13378255,-0.12653595,0.2628729,0.4671979,-0.22981149,0.15545554,-0.15233575,-0.12630835,-0.7212556,0.50892144,-0.18941705,-0.29983446,-0.051574882,0.13502279,0.068223216,0.5565761,-0.11785915,-0.2203213,0.04353242,-0.092554174,-0.27128825,-0.14019586,-0.24293447,0.28641596,0.37056676,-0.09148231,-0.026233234,-0.10222257,-0.038528696,0.27560404,-0.1546228,0.43109488,0.14682485,0.04607546,-0.30687007,-0.025953142,-0.057311933,0.5520629,0.22056507,-0.17401518,-0.21494788,-0.03423171,-0.29142395,0.3071588,-0.09759783,0.19289209,0.11097846,-0.37321708,0.8400023,-0.11718687,1.4088593,0.13972269,-0.48136154,0.2641552,0.3734543,0.037176292,-0.08513538,-0.25324723,0.95571727,0.50299615,-0.16291513,-0.069651015,-0.560853,-0.22265698,0.22536252,-0.27041924,-0.34967855,0.103072755,-0.45872986,-0.15191886,0.18465029,0.056381125,0.08453763,-0.15691312,-0.042832028,0.38231996,0.08783541,0.2937508,-0.45982075,0.13413383,0.2729607,0.39314374,0.22519629,0.17473543,-0.37440908,0.27127078,-0.74358207,0.40712366,-0.40679863,0.2517229,-0.28754094,-0.27786553,0.21558636,0.093441665,0.21647187,-0.18648623,-0.3075519,-0.36992523,0.6931146,0.18476033,0.22820465,0.90477926,-0.2941949,-0.18436311,0.13624796,0.42235136,1.002902,-0.32445452,-0.32197955,0.36559716,-0.38121763,-0.71431917,0.44195876,-0.45893374,0.058526617,-0.033946503,-0.29375055,-0.5862344,0.17779191,0.06797382,0.2951989,-0.0055936277,-0.73372006,0.15059383,0.32782796,-0.19803262,-0.38296947,-0.32107732,0.49399328,0.70958894,-0.35528827,-0.537154,0.12999496,0.0673122,-0.18042637,-0.3868319,-0.016482571,-0.25152242,0.3558174,0.10367224,-0.4001796,-0.056600522,0.2364012,-0.44424322,0.048760563,0.17444496,-0.24188411,0.17198472,-0.19771178,-0.11876606,0.96737367,-0.34137467,0.41200206,-0.54733956,-0.6471538,-0.8145282,-0.28859103,0.05850032,0.34757006,0.03419783,-0.6709712,-0.17511575,0.09851912,-0.36600915,0.1367641,-0.64826196,0.6122801,0.15229149,0.10427495,-0.02110284,-0.9738869,0.10607412,0.2363805,-0.039702654,-0.67587775,0.4559004,-0.3635707,0.8548365,0.19782715,0.12981409,0.14675455,-0.5932711,0.36109626,-0.29134375,-0.11483395,-0.53452,-0.0038784842 +784,0.39091012,-0.11636824,-0.4014001,-0.18871556,-0.37841293,-0.0983501,-0.09823801,0.3748882,0.36555624,-0.15340805,-0.20513098,0.0064895046,0.13619402,0.14026658,-0.06652969,-0.65629137,-0.1297238,0.30005744,-0.7170468,0.38750553,-0.53293127,0.19669044,-0.122376986,0.50115174,0.044844992,0.38726002,0.122304134,-0.1126393,0.039866336,-0.0032789537,-0.15323064,0.22739877,-0.6111785,0.16086873,-0.21747361,-0.15016745,0.059372634,-0.4279247,-0.3295227,-0.7850169,0.2357144,-0.87167454,0.56255525,-0.08222695,-0.10819919,0.08663761,0.118691094,0.17828345,-0.33769038,-0.12542666,0.22538784,-0.12756601,-0.20780577,-0.32545117,0.011466933,-0.23344971,-0.3496928,-0.006539366,-0.31389815,-0.24503134,-0.23801433,0.11603914,-0.26564398,-0.008321605,-0.20897582,0.5755096,-0.3602357,0.22906156,0.24083368,-0.2944077,0.09843209,-0.4956612,0.18460009,-0.071153365,0.42433408,0.03516319,-0.26340145,0.30959585,0.20310314,0.42490512,0.18726662,-0.26090777,-0.18265955,-0.08950509,0.028325865,0.3516685,-0.11016774,-0.45862502,-0.077195026,0.055735346,0.034369834,0.24572375,0.008103341,-0.26903012,-0.029807866,-0.20336078,-0.013564242,0.69211245,0.4713904,-0.096950255,-0.36307183,0.2507981,0.6353168,0.2281679,-0.09431505,0.003212307,0.0021689555,-0.4599943,-0.2761945,0.041461054,-0.09751882,0.385264,-0.22627297,0.14247595,0.7520181,-0.08529244,-0.13716047,0.21834376,0.08435876,-0.012726264,-0.39125243,-0.13654287,0.22014956,-0.55709743,0.058674414,-0.18603276,0.6946557,0.19197345,-0.66155523,0.5444789,-0.5264598,0.17531672,-0.028070837,0.6164571,0.62196666,0.5574204,0.31546813,0.70183355,-0.4684915,0.23499237,0.02198167,-0.52080846,0.046561897,-0.1661789,0.2517046,-0.39612085,0.13695128,-0.2965561,-0.0916394,0.074084945,0.056450482,-0.48894247,-0.17214313,0.18079117,0.8183479,-0.26685384,-0.19250892,0.7237801,0.96545845,1.0078434,-0.0129823135,1.25056,0.23564489,-0.16801073,0.16935842,-0.1920497,-0.93715316,0.18309481,0.22619393,0.10086234,0.12065267,-0.006559274,-0.008478497,0.24732466,-0.39972326,-0.054760538,-0.13622051,0.53274673,0.17830369,-0.02785595,-0.39310932,-0.20422485,-0.09885653,0.010499767,0.168874,0.2696217,-0.19190499,0.27300447,0.08497377,1.3485546,-0.010901486,0.069159836,0.124313034,0.52370137,0.28745237,-0.059927948,-0.07867141,0.44424003,0.33936858,-0.040524933,-0.63201916,0.2407223,-0.23888513,-0.3516914,-0.11409458,-0.3423427,0.008070179,0.05596742,-0.3446445,-0.38219234,-0.2011056,-0.26180965,0.44946855,-2.7689137,-0.19432923,0.03864032,0.37542576,-0.27957937,-0.14628972,-0.064880915,-0.57270193,0.13324286,0.12604408,0.51382124,-0.66155094,0.4839247,0.48668405,-0.71620464,-0.15657131,-0.6851978,-0.13566135,0.092550695,0.38959855,0.11229811,0.051092084,-0.3196249,-0.0020505276,0.5208183,0.11017933,0.15949087,0.54560244,0.4205069,0.1254634,0.47954997,-0.047364943,0.63010126,-0.38049555,-0.09105118,0.30346897,-0.2689715,0.22140865,-0.21266249,-0.032284103,0.5949212,-0.38670993,-0.80328995,-0.58034766,-0.20285846,1.0450137,-0.15127014,-0.4282394,0.2663315,-0.43529096,-0.069857016,0.06171512,0.48492032,-0.14365622,-0.09296974,-0.6675696,0.06930464,0.0034797415,0.22738746,0.02733864,-0.07334037,-0.33292645,0.6719106,-0.08630691,0.5064663,0.20893179,0.15340456,-0.18240286,-0.3013511,0.10538171,0.51733357,0.30456248,0.06879421,-0.13930298,-0.18723895,-0.06581014,-0.07081501,-0.21692549,0.7165204,0.7205235,-0.22379184,0.1480231,0.3999037,-0.06733451,0.054500896,-0.19640985,-0.27948868,-0.11078866,-0.06948798,0.34790722,0.81342274,-0.2887588,0.33911362,-0.2072411,0.3788218,-0.009018281,-0.54362303,0.66160816,0.5116828,-0.21875954,-0.059763882,0.34380987,0.44386554,-0.49178806,0.45573848,-0.4876307,-0.11411565,0.50827926,-0.18858293,-0.4761048,0.11478709,-0.14158837,0.070463784,-0.63276356,0.33220598,-0.37643552,-0.59465253,-0.40664718,-0.07876209,-2.6334844,0.19804703,-0.23518206,0.023263456,-0.43392205,-0.09788726,0.12025566,-0.4008376,-0.6594776,0.16334297,0.18365975,0.5104449,-0.077307224,0.23589066,-0.16648963,-0.15509751,-0.3403502,0.1802278,0.10900202,0.2096323,-0.11255833,-0.3974362,-0.11590973,-0.03605057,-0.41559342,0.22639953,-0.6423386,-0.29169002,0.039963,-0.55965906,-0.18939056,0.5643341,-0.2859102,-0.04916122,-0.37627771,0.053429116,-0.23327824,0.16058563,-0.0153052015,0.14779197,0.059650753,-0.09733778,0.053564243,-0.18740462,0.4147286,-0.141958,0.3110464,0.066874266,0.10091322,0.10783938,0.27604643,0.8330482,-0.13170591,1.0320705,0.3427399,-0.043144464,0.38510847,-0.210336,-0.47851682,-0.40306714,-0.18648939,0.0731711,-0.36250004,-0.29310223,0.17916822,-0.45197186,-0.7540516,0.4607792,0.071957774,0.25887305,0.083673,0.08908266,0.5236212,-0.18453439,0.14855807,-0.059806645,-0.10579351,-0.5994099,-0.17283419,-0.4376964,-0.42071542,-0.088114016,0.9026499,-0.29102865,0.09132665,-0.028341817,-0.27782372,-0.022404347,0.17659414,-0.09738462,0.38724682,0.5351183,-0.11216299,-0.61250913,0.35039705,-0.04230846,-0.16186813,-0.4684171,0.25722128,0.54453516,-0.74431485,0.70387065,0.25767884,-0.026449624,-0.23950389,-0.55411434,-0.36413437,-0.06178931,-0.12141435,0.40599802,0.23915865,-0.9283477,0.4664312,0.40480846,-0.36305556,-0.7227998,0.1629401,-0.041930046,-0.3244464,-0.15529148,0.2984101,0.021741867,-0.07272528,-0.22301184,0.14937215,-0.2954608,0.2033527,0.02541407,-0.09230258,0.092365764,-0.08687762,-0.2992733,-0.7964445,-0.16582206,-0.44914407,-0.27000934,0.17644612,0.03437569,-0.029093772,0.05507353,0.13655089,0.4532109,-0.24003531,0.08242129,-0.055830438,-0.3997293,0.22541033,0.34344217,0.44411802,-0.45752105,0.44778094,0.035842996,-0.18157962,0.16332221,0.105903015,0.3308349,-0.045347717,0.3402601,-0.03568968,-0.009964307,0.29008156,0.8986437,-0.014888125,0.43032926,-0.12081764,0.039144795,0.60222596,-0.03355672,0.29857635,-0.033046193,-0.49019456,0.1501175,-0.15566477,0.21925819,0.49425572,0.3453572,0.34750667,0.07516842,-0.300404,-0.15432985,0.19664751,-0.023396948,-1.1915476,0.44445714,0.21034661,0.9641946,0.42345312,0.09325911,-0.14182474,0.80405796,-0.1035161,0.24090706,0.41178486,-0.05294209,-0.33197862,0.5981234,-0.5949971,0.35743645,-0.13223705,-0.1842546,0.20436427,0.14883144,0.25972328,0.7781266,-0.28134456,-0.03189934,-0.086530015,-0.12034964,0.1144229,-0.36569905,-0.037753556,-0.39469284,-0.4233469,0.58315516,0.4601424,0.26146647,-0.2529783,-0.03632949,0.061007712,-0.047190282,0.16287933,-0.047971506,-0.11918598,0.17544906,-0.47927102,-0.10118238,0.5488483,0.1461169,0.120000705,-0.27129027,-0.18421146,0.108633205,-0.23554964,-0.12765215,-0.15733527,-0.662103,0.1447048,-0.054795083,-0.3588218,0.48420253,-0.027524425,0.0372688,0.20139514,0.0143170785,-0.17882249,0.33897406,0.07237581,0.7088279,0.08880717,0.015970655,-0.4740286,0.20215723,0.19529973,-0.20840658,0.062173247,-0.37623698,-0.044597704,-0.43110222,0.5311798,-0.065502845,-0.4089397,0.20979951,-0.21010126,0.08131782,0.5803768,-0.08496751,-0.15162863,-0.090322375,-0.15539987,-0.41596976,-0.103174224,-0.2293708,0.3128681,0.3190914,-0.18291856,-0.1974239,-0.39009863,-0.27476507,0.5583073,0.07076285,0.36007348,0.18731894,0.036574095,-0.09819467,-0.014580724,0.1627717,0.54534096,0.14509235,-0.08657237,-0.25343525,-0.21807925,-0.19004975,0.24105383,0.010645202,0.17935666,0.03895681,-0.25348905,0.6483798,0.17281607,1.105098,0.03940838,-0.16832717,0.13673699,0.52881104,-0.06802253,0.012288502,-0.54835755,0.79341686,0.37967572,-0.08076812,0.030227793,-0.4284099,0.04587111,0.25360963,-0.27794415,-0.05660928,-0.06671286,-0.4990215,-0.23123562,0.23172317,0.1276996,0.14439295,0.018713921,-0.06196808,0.026657883,0.08481329,0.4376076,-0.5257694,-0.15655603,0.1302147,0.16726455,0.026532887,0.17557652,-0.29973707,0.34343424,-0.59542036,0.136521,-0.38579777,0.08576916,-0.3172307,-0.3148666,-0.037142508,-0.050640214,0.3089722,-0.29446468,-0.47679403,-0.19799384,0.28410244,0.17848226,0.23031954,0.5558484,-0.24169865,-0.0052518314,0.22428575,0.65997505,0.7814253,-0.15814862,-0.043140743,0.273686,-0.3875707,-0.5938869,0.48148173,-0.18861456,-0.09360405,-0.08603001,-0.1969907,-0.4509131,0.17279008,0.24698544,0.01777884,-0.01990907,-0.66983944,-0.118577935,0.32898453,-0.20711124,-0.1599898,-0.18281339,0.24738148,0.74767536,-0.17298838,-0.30180734,0.0906424,0.13899772,-0.2413613,-0.4785377,-0.10570471,-0.37640795,0.32531217,0.09793835,-0.2632206,-0.14979677,0.084455915,-0.50118864,0.10823153,0.1143809,-0.27284724,0.1857682,-0.16918333,-0.009707336,0.8165325,-0.28508538,0.068076506,-0.49264178,-0.51958364,-0.83888286,-0.24748246,0.16612825,0.18815207,0.0021782687,-0.62768346,-0.13230935,-0.09403313,-0.1691806,0.18368004,-0.4558063,0.3996131,0.04886531,0.4084747,-0.22996648,-0.9599782,0.1240016,0.22151402,-0.24396612,-0.55461806,0.55161893,-0.044117175,0.7499735,-0.031315763,-0.0716359,-0.07379014,-0.29011515,0.018044386,-0.3831062,-0.15001388,-0.5376583,0.10346864 +785,0.27539346,-0.4561863,-0.45330182,-0.14884257,-0.16706015,-0.06973816,-0.18449688,0.5960006,0.2587521,-0.23967405,-0.13144924,-0.30254447,0.07230399,0.40466443,-0.15762,-0.44509488,-0.19961096,0.1404946,-0.53303105,0.61442304,-0.27023786,-0.07678681,-0.3114488,0.44554988,0.32000914,0.3706536,-0.11867917,0.042778492,-0.11680731,-0.23229598,-0.20337147,0.1954491,-0.5436878,0.21498471,-0.09256583,-0.08478533,-0.08534882,-0.7025758,-0.6386589,-0.620017,0.2585139,-1.0049114,0.49889585,0.17246924,-0.1688518,0.1983541,0.2756035,0.24000931,-0.3167061,-0.13022117,0.29370585,-0.15220459,0.03606827,-0.3108283,-0.29304454,-0.40981427,-0.47691917,-0.21664204,-0.29484302,-0.42297745,-0.4217335,0.07782397,-0.30632532,-0.035000943,0.0050993618,0.6652882,-0.45333716,0.44541338,0.17275019,-0.17004639,0.21918206,-0.5618889,-0.18054676,-0.12785432,0.23818554,-0.14370638,-0.2980032,0.298431,0.1702013,0.09684773,-0.17916211,-0.0012919361,-0.29230368,-0.1979025,0.27100435,0.5528959,-0.15438543,-0.56203884,0.012419838,0.052586067,-0.22763854,0.27241853,0.14806989,-0.47922114,-0.11971796,0.07591825,-0.07891798,0.56762457,0.37848932,-0.023734044,-0.11097245,0.28679675,0.44605646,0.30482206,-0.26784006,-0.13984413,0.098575786,-0.53360516,-0.12430113,-0.01817726,-0.15530866,0.6080637,-0.10201896,0.18498144,0.6048305,-0.111393645,-0.21011992,0.097849004,0.05002167,-0.0570676,-0.3640916,-0.15943259,0.28607094,-0.2089122,0.27434787,0.004050396,0.6083143,0.25664586,-0.6517554,0.40366924,-0.61590636,0.23172288,-0.09693611,0.4479089,0.6940426,0.47774127,0.5184714,0.60114247,-0.31855345,0.24780248,0.109050184,-0.4107459,0.13471794,-0.28268525,0.010197,-0.6009707,-0.102706045,-0.15276664,-0.13401876,0.22167712,0.42961243,-0.43099403,-0.011708135,0.3378381,1.1541255,-0.19835873,0.044434786,0.73390573,1.0994763,0.79610306,-0.046625808,1.0208023,-0.011043307,-0.25238886,0.36063942,-0.046201706,-0.83789724,0.26443842,0.38909826,-0.14914638,0.13559856,0.20209788,0.06256037,0.35754213,-0.5427878,0.14469413,-0.08881989,0.04079517,0.35941574,-0.2817918,-0.42176282,-0.08878922,-0.24208283,-0.029247366,-0.017796336,0.09503224,-0.18681464,0.6549199,-0.009627765,1.9695302,0.15044892,0.041362904,0.040604834,0.6843958,0.120905355,-0.18288635,-0.0062907417,0.5056042,0.17141019,0.25468433,-0.44409475,0.28084376,-0.16522992,-0.41307995,-0.12547038,-0.44713247,-0.24269797,-0.06407429,-0.33442315,-0.25952175,-0.16023764,-0.1062422,0.4407756,-3.063423,-0.028852792,-0.11573476,0.42032477,-0.07198718,-0.26567715,0.05297455,-0.41042945,0.40950754,0.340488,0.5823907,-0.665752,0.25447312,0.43920222,-0.57268137,-0.22298121,-0.4942753,-0.06482217,0.06688089,0.5433514,-0.048417687,0.0101536065,0.18672985,0.2690228,0.41973498,0.17284259,0.2129322,0.41929254,0.50970566,-0.15997157,0.65957046,-0.17360134,0.389793,-0.18120338,-0.22845294,0.18733606,-0.31212586,0.3148156,-0.03990483,0.089077204,0.5978818,-0.44592163,-0.8517443,-0.60451883,-0.053669084,0.93580383,-0.1866724,-0.54906887,0.29214838,-0.6202811,-0.24664563,-0.18205261,0.6895518,0.022568054,0.07126364,-0.80147165,0.0032578816,-0.13693063,0.18866946,0.053074136,-0.25600785,-0.48657724,0.7933977,0.0025168548,0.56653255,0.3393028,-0.06236081,-0.4679063,-0.47718734,0.06614467,0.60266477,0.25627425,0.17218289,-0.19526888,-0.17352258,-0.28891438,-0.23117161,0.009692144,0.7107005,0.35600033,-0.17524387,0.20429382,0.33221424,-0.13005643,-0.14051731,-0.21543576,-0.22860573,-0.10775514,0.04648241,0.43687162,0.82989955,-0.1258186,0.49602917,0.013753536,0.3744066,0.06687112,-0.30861482,0.28233653,1.2694682,-0.09300206,-0.44546083,0.43043077,0.63443464,-0.38168794,0.35752735,-0.3624287,-0.06372475,0.5329241,-0.065432124,-0.7016559,0.36233762,-0.18108319,0.018782942,-0.6138289,0.1627111,-0.13436888,-0.7049518,-0.68373555,-0.2360621,-3.5365913,0.15597205,-0.2773968,-0.45555055,-0.09314311,-0.17840418,0.029363692,-0.62278616,-0.6114754,0.20306325,0.03299304,0.54596,-0.20712085,0.08304939,-0.23046924,-0.049787,-0.15545344,0.2641212,0.22948171,0.35867584,-0.19732514,-0.4974414,-0.36567804,0.009164878,-0.48661795,0.030568289,-0.70317554,-0.28526774,-0.05981586,-0.69406503,-0.17400867,0.6815899,-0.30259514,-0.106979206,-0.35057318,0.029364131,-0.13405873,0.16768862,0.24722219,0.17944895,-0.127266,-0.06297309,0.05763185,-0.23931265,0.22035833,-0.008035633,0.47367314,0.17680925,0.040987406,0.31352732,0.2720769,0.59644,-0.077600844,0.83643204,0.4513589,-0.10105768,0.23812047,-0.25459364,-0.2335098,-0.4613868,-0.27016836,0.16680239,-0.45700186,-0.530588,-0.07836618,-0.41240683,-0.6887203,0.45916808,0.09966564,0.048569392,0.17086549,0.076945215,0.5864032,-0.13601631,-0.08420097,0.022393221,-0.136272,-0.69889396,-0.18501228,-0.44625387,-0.5138129,0.16764016,0.7518324,-0.2126974,0.07251482,0.21798147,-0.4923108,-0.1008009,0.42306277,-0.17788845,0.2775102,0.411506,-0.08076023,-0.61125046,0.39414436,-0.18454951,-0.23709507,-0.7111814,0.40140608,0.49824288,-0.5902545,0.8971649,0.20663266,0.033265408,-0.39848632,-0.31664917,-0.3357079,-0.40764225,-0.068596594,0.32953623,0.2447992,-0.7333699,0.22977538,0.26212072,-0.15112498,-0.5841522,0.56169087,-0.2333632,-0.37744448,0.085479945,0.19802247,-0.0034441839,-0.013200497,-0.15129782,0.39934948,-0.24235953,0.20496124,0.15509552,-0.0036890453,0.11607237,-0.08312083,-0.12592334,-0.72106194,0.112968184,-0.3639574,-0.40038937,0.44509342,0.058667313,0.13701287,0.108794734,0.043710556,0.15717982,-0.09339286,0.08701248,-0.13127194,-0.34682667,0.23379742,0.4501814,0.62313014,-0.62987506,0.6211132,0.06048986,-0.10137477,0.3091758,0.13295569,0.24266766,0.0908366,0.48943225,0.22574963,-0.14628054,0.12628435,0.86554545,0.23953395,0.58346266,0.1000717,0.13797973,0.2571866,-0.03474922,0.16020466,-0.035147797,-0.7326124,0.2914252,-0.4743837,0.19636863,0.34501755,0.20008378,0.25560215,-0.11963945,-0.4463441,-0.024398988,0.39720333,0.2910663,-1.4095963,0.35166097,0.30058756,0.9113355,0.3244828,0.10212958,-0.06367483,0.9135658,0.062147032,0.0034297137,0.42489377,0.099648066,-0.49613392,0.5041617,-0.70688087,0.44430408,0.092141025,-0.07845351,0.058130346,0.025150197,0.36118534,0.6463223,-0.23417763,-0.16825952,0.10491243,-0.2505925,0.14419764,-0.55159396,0.12131465,-0.38262376,-0.32513416,0.52913,0.72163016,0.32290822,-0.1643727,0.083262414,0.0101001095,-0.20163964,0.080137156,0.1302236,-0.14632693,-0.057452705,-1.0263054,-0.010628533,0.5027845,-0.3106232,0.2284564,-0.0834457,-0.056489263,0.4242486,-0.18872947,-0.18788747,-0.11893411,-0.68711096,0.1676309,-0.25305614,-0.6423064,0.5614813,-0.008776524,0.26192567,0.18727528,0.039694645,-0.19194533,0.68549234,-0.04389054,1.1231312,-0.0037276202,-0.076859504,-0.4473531,-0.024023306,0.18193808,-0.11698601,-0.001011946,-0.47824895,-0.0034883455,-0.549489,0.44035938,0.07438037,-0.5299524,-0.011226719,-0.07543453,0.08959249,0.61071736,-0.04375063,-0.26506707,-0.07478496,-0.17864864,-0.35847858,-0.17328966,0.00093961303,0.38513353,0.23404837,0.14760302,-0.11038776,-0.029597439,-0.20834993,0.4665598,-0.11465094,0.5928771,0.30867922,0.18191256,-0.097861536,-0.2551416,0.06201562,0.67118114,-0.03757452,-0.096421555,-0.07273483,-0.54442924,-0.42405102,0.1565432,-0.036555465,0.6130865,0.25235584,-0.20011388,0.42860925,-0.2315559,1.182856,0.018618481,-0.43783024,0.29971,0.51068336,0.12702155,-0.12403024,-0.23098755,0.76794434,0.5785676,0.04746087,-0.028736364,-0.36835384,0.01547589,0.1544875,-0.08808224,-0.16224724,0.014115805,-0.6461018,0.03322042,0.22197485,0.22573766,0.49294835,-0.18390408,0.114759095,0.2218109,-0.16097409,0.0074173375,-0.31660262,-0.19221759,0.30402577,0.028362973,-0.0013841038,-0.049452838,-0.5788597,0.42562434,-0.17527896,0.060170542,-0.47282392,0.19403262,-0.34348595,-0.099574976,0.1672489,-0.21083091,0.3905614,-0.28976718,-0.10520198,-0.36602834,0.54459405,0.23330455,0.10516913,0.5396087,-0.17229287,0.16141377,0.0069805044,0.49969718,0.76748884,-0.38951454,-0.087120675,0.33215868,-0.51601136,-0.4823968,0.323827,-0.3039281,0.16558112,0.25630826,0.04914184,-0.61310804,0.1885088,0.019531988,0.031717952,-0.009695023,-0.7183806,-0.17128742,0.20058307,-0.24520636,-0.14841263,-0.39473674,0.023967884,0.56052107,-0.1972095,-0.19020882,0.11452599,0.06512852,-0.09602538,-0.3371266,0.04035296,-0.27972502,0.28694776,-0.1580513,-0.38731134,-0.26478308,-0.12773667,-0.32515806,0.31556016,-0.03319572,-0.35185674,0.19279355,-0.10670545,-0.42373314,1.0442277,-0.3731515,0.1091116,-0.5375626,-0.5086355,-0.6704444,-0.26018998,0.28618166,-0.07218574,-0.021686923,-0.5685879,-0.11461652,-0.044769134,-0.2175578,-0.18772869,-0.42934468,0.46461618,-0.020700349,0.59486747,-0.2352729,-0.8785983,0.30396658,0.16325511,-0.072520226,-0.84971434,0.66678584,-0.16120078,0.7024582,-0.030334987,0.2671475,0.3215336,-0.33198872,-0.303134,-0.21805133,-0.30523193,-0.56994116,0.15815337 +786,0.14054893,0.06729384,-0.44531268,-0.10247876,-0.077098556,0.20363688,-0.112527,0.40741414,0.17723076,-0.31647044,0.018470641,-0.09752679,0.0015962124,0.34368795,-0.07541207,-0.39237425,-0.046570618,0.12940148,-0.53009623,0.5123261,-0.3551456,0.12356619,-0.17355211,0.39376453,-0.028398527,0.26763448,-0.006383794,-0.11887999,-0.16327105,-0.15372394,0.10952229,0.37825987,-0.51486886,0.056291055,-0.28000388,-0.26320085,-0.06420195,-0.31928822,-0.4916577,-0.56371725,0.21722928,-0.7135194,0.43488815,0.23677275,-0.19700535,0.3686321,0.17295538,0.2297581,-0.033728667,-0.1357137,0.16435285,-0.11985638,-0.001506056,-0.18598168,-0.29925418,-0.5920457,-0.61600965,0.03722865,-0.54139024,-0.18657161,-0.20128444,0.09859376,-0.19743206,-0.1289028,-0.1723155,0.35068575,-0.4638734,0.070158206,0.16134325,-0.16265205,0.19443342,-0.43474856,-0.19783469,-0.06511496,0.24189267,-0.20324533,-0.060157843,0.22084484,0.15942876,0.404524,-0.24159907,-0.08205072,-0.37978426,-0.077625476,0.25947446,0.43545744,-0.34079245,-0.36701843,-0.048578538,-0.059444714,-0.059043758,0.054607768,0.026472261,-0.15604898,-0.055158466,0.061843853,-0.16932002,0.5229116,0.39116526,-0.4037954,-0.369352,0.38173643,0.525001,0.2086353,-0.34815937,-0.18498819,0.047739368,-0.44196683,-0.13408576,0.09714009,-0.18602021,0.41120392,-0.055401307,0.16001524,0.549779,-0.17711513,-0.061423074,-0.027592035,-0.094244465,0.124082096,-0.1131152,-0.11113421,0.25014114,-0.2611951,0.15332112,-0.16737078,0.5272584,0.019466281,-0.6731402,0.36104897,-0.69727314,0.036049444,-0.015777767,0.41568178,0.5529831,0.38556352,0.1310228,0.47589016,-0.15361245,0.061889905,-0.0020813984,-0.15262246,0.09147058,-0.299815,-0.078754164,-0.49591208,-0.029717615,0.026550794,-0.14215954,0.06946214,0.39334986,-0.5020805,-0.13910505,0.3938497,0.92940533,-0.19505776,-0.17540535,0.5000731,1.0483782,0.77894646,-0.048247986,0.92559046,0.1046627,-0.27763873,0.3330891,-0.3707964,-0.72750765,0.18815246,0.20079765,-0.11739842,0.30162773,0.09352321,0.15275313,0.3252015,-0.3626019,0.19374405,-0.15389837,-0.11287493,0.20253031,-0.0058556623,-0.26973468,-0.1344588,-0.115929775,-0.1460173,0.24958505,0.22180966,-0.2477181,0.26973853,0.061466448,1.3904747,0.014306584,0.1147782,0.15561175,0.5598945,0.09124548,-0.10856698,-0.14756487,0.4522446,0.21329705,0.2224655,-0.40775055,0.26610562,-0.20004381,-0.5305934,-0.20379564,-0.3820073,-0.15350987,0.0655205,-0.48536536,-0.0471823,-0.021766694,-0.31331402,0.38993493,-2.9025338,-0.08466838,-0.09764361,0.38467497,-0.16014542,-0.19915397,-0.28455606,-0.31612545,0.23919964,0.30011296,0.3606971,-0.52882814,0.4835196,0.45950052,-0.4701437,-0.15673581,-0.4656934,-0.14070383,-0.061713453,0.38651133,0.06882522,0.13256733,0.26184392,0.2690424,0.2668322,-0.097442694,0.12244094,0.17098565,0.37485832,-0.013459883,0.41386846,-0.06992168,0.48181802,-0.32399982,-0.24891853,0.3285753,-0.41199192,0.33235198,-0.11154699,0.16657685,0.25583452,-0.33548334,-0.90069515,-0.48001117,-0.19436793,1.3120085,-0.19057207,-0.3418476,0.122580394,-0.44863877,-0.42496854,-0.16148522,0.53243536,-0.10086838,0.10304059,-0.76151854,0.0936206,-0.2518119,0.2759182,-0.0020577523,0.13843797,-0.44665474,0.53432995,-0.025589813,0.41912094,0.28912994,0.17938717,-0.3463851,-0.4637246,-0.12816696,0.7383142,0.15265466,0.0836317,-0.12322174,-0.3281162,-0.27163607,0.074395895,0.122750305,0.5813762,0.38249794,-0.020765692,0.015283831,0.23216584,-0.04929849,0.059941106,-0.19905035,-0.28624955,-0.017210888,0.001431414,0.439344,0.5425634,-0.30480686,0.37677225,-0.017134795,0.29353556,-0.2683759,-0.31121683,0.33562046,1.059364,-0.12048088,-0.1929324,0.5813746,0.61134803,-0.3278931,0.32365972,-0.60670394,-0.32502905,0.40541735,-0.22465384,-0.4042599,0.18652143,-0.35029227,0.1516079,-0.94780576,0.24515319,-0.32434773,-0.38439152,-0.6018016,-0.062128115,-3.7412703,0.16096167,-0.1465058,-0.18353598,-0.11070112,-0.017957244,0.21445915,-0.4631179,-0.48401532,0.06727901,0.088188164,0.49122503,-0.1566278,0.09673776,-0.362822,-0.32059446,-0.06426927,0.3629698,0.25795585,0.34633043,-0.18423054,-0.54120237,-0.012542435,-0.14898147,-0.3077425,-0.032931503,-0.52889293,-0.3567093,-0.030993741,-0.51063865,-0.1262795,0.6448507,-0.5011864,0.006722857,-0.2723187,0.014602693,-0.0045137745,0.24060278,0.15203443,0.15519246,0.12885895,-0.031967137,0.046748523,-0.26021123,0.29947996,0.040413387,0.38305804,0.38561532,0.117646806,0.12346904,0.65201885,0.48438302,-0.004975387,0.8376098,0.50208694,-0.07377105,0.26003915,-0.3255956,-0.14545654,-0.5134381,-0.26826215,0.03601824,-0.3375335,-0.5973993,-0.06420663,-0.22402573,-0.7425667,0.5339941,-0.17224848,0.01682915,-0.06283651,0.29689178,0.47108263,-0.18438026,0.0041717803,-0.0706618,-0.10981028,-0.43599877,-0.2754051,-0.49207592,-0.33964792,0.091703735,0.93973583,-0.13869019,0.116516896,0.047538675,-0.2596024,0.0055908635,0.20587336,0.2053013,0.24462591,0.5002378,-0.06462653,-0.55337113,0.34243724,-0.1922358,-0.07514548,-0.5957287,0.24962112,0.5327752,-0.64962643,0.6080263,0.4570798,0.023321854,-0.1972045,-0.45097628,-0.18987314,-0.046311993,-0.12997441,0.22560486,0.11294281,-0.769055,0.2897276,0.17722093,-0.35443154,-0.6937642,0.7282134,-0.07709152,-0.24448732,-0.022297055,0.31682613,0.027093993,-0.073973216,-0.1407622,0.37874287,-0.22620907,0.13981542,0.14572635,0.01351807,0.24857377,-0.23248653,0.054989737,-0.7413479,0.13635308,-0.46825442,-0.31193453,0.52184,0.03189988,0.106576264,0.3246673,-0.14074369,0.22903578,-0.1629405,0.037575193,0.006051355,-0.32925743,0.35530323,0.24543817,0.54418254,-0.46826833,0.43590754,-0.024903717,-0.10444355,0.16185568,0.066784635,0.50721467,-0.08995664,0.45983595,0.14171025,-0.160776,0.16455613,0.8905238,0.3278854,0.46034935,0.025069613,-0.1344597,0.2807189,-0.041429736,-0.030281832,-0.16858919,-0.55750865,0.0022278854,-0.056793004,0.18261804,0.2947071,0.024369821,0.18985412,-0.22236228,-0.26199088,0.029369112,0.3151138,0.21533254,-1.0887288,0.28681812,0.18514027,0.7486462,0.38384858,0.16977657,0.18235806,0.5901845,-0.2456195,0.095882945,0.44883198,-0.053902593,-0.48126823,0.5169016,-0.6674437,0.5220147,0.046913896,-0.028589372,0.051771265,-0.18326221,0.35102513,0.7416902,-0.19293877,0.005958438,0.18078753,-0.35024714,0.14202984,-0.28207344,0.24520978,-0.48364624,-0.08972001,0.61203945,0.6289044,0.33000892,-0.108369485,0.057829168,0.026218917,-0.0916914,0.088637464,-0.018601907,0.24252574,0.030703578,-0.7514934,0.009331162,0.5629464,-0.11406176,0.12354891,0.16412571,-0.28244555,0.38334805,-0.19854693,-0.08123257,-0.0678124,-0.48530453,0.052369278,-0.21943879,-0.45618486,0.5985847,-0.28406158,0.3759536,0.14249328,0.04649598,-0.37428984,0.41219944,-0.118728705,0.62229604,-0.052467935,-0.117574885,-0.3438707,0.041974925,0.10879891,-0.17254968,-0.12886484,-0.3626011,0.17534313,-0.35799697,0.2287781,-0.17179203,-0.3112889,-0.21421883,-0.07874485,0.12871854,0.59611255,0.10444258,-0.116151996,-0.028396131,-0.008228777,-0.29393202,-0.011717958,-0.06763624,0.1664643,0.16962095,-0.097334936,-0.25197592,-0.28001127,-0.26098016,0.35005513,-0.038169783,0.47875276,0.5026366,0.24617803,-0.16086248,-0.10955219,0.20845763,0.389074,-0.14592631,-0.051105466,-0.111844696,-0.27753407,-0.2849917,0.37267682,-0.1981574,0.23382524,0.27990144,-0.26298815,0.6045324,-0.27116507,1.0075462,0.09565858,-0.31848162,0.15167175,0.36569008,0.055778634,0.015652562,-0.41363505,0.8451014,0.59271187,0.05880622,-0.20047382,-0.2316887,-0.023977509,-0.038436074,-0.16701046,-0.23356196,-0.014108394,-0.5863841,-0.035167508,0.19102894,0.24874744,0.31271315,-0.10308717,0.09602264,0.036372874,0.047949515,0.17816375,-0.4900601,-0.29300728,0.41170666,0.38577127,0.0018210517,0.09877091,-0.3978892,0.3238897,-0.29868957,-0.102836765,-0.2933512,0.11797859,-0.28633884,-0.19450796,0.17305449,-0.07316458,0.37958795,-0.17924477,-0.23699652,-0.23401482,0.28880993,0.18420635,0.04471177,0.49867114,-0.107540466,0.06493995,0.07225578,0.5189489,0.86839265,-0.3024762,-0.1043907,0.2955346,-0.25129032,-0.53790474,0.20935582,-0.48174447,0.28013235,0.0056809997,-0.07179896,-0.44442144,0.26497683,0.10060169,-0.06474868,-0.061005395,-0.59183055,-0.16297889,0.11149107,-0.3358646,-0.22364855,-0.27536863,0.1192384,0.65493786,-0.2517101,-0.17531474,-0.0139255095,0.31790495,-0.1856329,-0.46450573,0.1317642,-0.36838955,0.21031342,0.110157356,-0.433323,-0.09509474,0.054534942,-0.41561562,0.3340092,0.39371258,-0.39940163,-0.04465699,-0.18582214,-0.0067902845,0.8390088,-0.16234848,0.07389535,-0.27424976,-0.434144,-0.8221669,-0.33086637,0.28359616,0.19445112,-0.06616745,-0.41931763,0.110925145,-0.03792606,-0.41185623,-0.0375325,-0.43803033,0.36773926,0.110534675,0.3831284,-0.14307973,-0.7446144,0.09233659,0.0999946,-0.07318391,-0.6137989,0.4435595,-0.18001522,1.0091631,0.023143748,0.14304934,0.28582385,-0.38808537,-0.16705789,-0.11162858,-0.083282426,-0.61992466,0.014626116 +787,0.50975907,-0.11692552,-0.5293357,-0.17047611,-0.13866809,0.0058848346,-0.05214997,0.5050312,0.1627084,-0.7788993,-0.22090481,-0.24324703,-0.15015097,0.24681295,-0.23697637,-0.7149329,0.08653508,0.07652952,-0.4898999,0.58813226,-0.43927532,0.3472007,0.1757638,0.3600881,0.09100238,0.33939984,0.17108425,-0.20554471,-0.2918643,-0.21860361,0.029397888,-0.14613667,-0.5765298,0.27113858,-0.20436239,-0.33881196,0.015349252,-0.47063756,-0.38295445,-0.719923,0.3724086,-0.7803485,0.43324462,0.06654156,-0.1879901,0.048024688,0.16820347,0.29635566,-0.2859479,0.07556778,0.2274784,0.16210197,-0.04213079,-0.11062957,-0.1942523,-0.24570899,-0.55681723,0.12971509,-0.35621628,-0.20468815,-0.10191379,0.16313319,-0.2395427,0.12512287,-0.16177991,0.6184974,-0.3514754,-0.11575671,0.39539322,-0.22514793,0.191143,-0.62032986,-0.12122256,-0.15930046,0.12183813,-0.17312945,-0.062395446,0.34104648,0.24419503,0.61507356,0.14364266,-0.22027132,-0.16753975,-0.06862573,0.16392398,0.39264324,-0.15983225,-0.42952397,-0.1317767,-0.06663242,0.15063168,0.121352114,0.24649787,-0.37278193,0.056069504,-0.028581722,-0.3511046,0.24348368,0.5818175,-0.3046384,-0.19694008,0.19707419,0.45105055,-0.0025199908,0.036022417,0.066247895,0.053798348,-0.5029993,-0.28124088,0.16261615,-0.24570341,0.49797276,-0.10252575,0.25209993,0.6329799,-0.19737785,0.18117897,0.19763541,-0.03215782,0.014545091,-0.44137335,-0.37363392,0.08796946,-0.55424196,-0.002359731,-0.29480645,0.9064707,0.2165382,-0.63490635,0.3490711,-0.52222073,0.12430234,0.0029456785,0.44034502,0.5724572,0.36464167,0.15877834,0.7944568,-0.501622,0.018598905,-0.24113014,-0.26444647,-0.013965478,-0.028504154,0.14156958,-0.27694163,0.054887448,0.022221863,-0.035272088,-0.11055093,0.3872191,-0.50450236,-0.012096643,0.04455384,1.0218127,-0.27235976,-0.066111736,0.7806941,0.9990174,0.94467133,0.06300067,1.4010847,0.15225856,-0.24767883,0.31435612,-0.28428397,-0.7833422,0.3382893,0.33142963,0.15035029,0.12374934,0.11939788,-0.0018544154,0.41287643,-0.43324167,0.2306854,-0.23765548,0.36610684,0.019273186,0.0023380262,-0.33882815,-0.212636,0.0065853777,-0.08378242,0.0911962,0.17177026,-0.20106734,0.10793515,-0.056152273,1.6938541,-0.16353948,0.22109506,0.1525204,0.41056162,0.16718194,-0.0025980857,-0.05669439,0.11839853,0.18960033,-0.04807082,-0.57428056,-0.02213235,-0.31440187,-0.588418,-0.16115357,-0.2503554,-0.066824265,-0.14586213,-0.54613364,-0.1841418,-0.1192465,-0.33715126,0.26971164,-2.4717238,-0.2727642,-0.2078805,0.40051433,-0.48050764,-0.38019404,-0.12236003,-0.47349593,0.63583034,0.36965227,0.45249534,-0.6074747,0.5165248,0.4580066,-0.33056858,-0.1285825,-0.58023626,0.014299742,-0.010678725,0.1197407,0.0046854233,-0.28449315,-0.23324992,0.01982024,0.45819637,0.0065326607,0.07877922,0.3195011,0.30991656,0.20918195,0.5352067,-0.040831707,0.59871584,-0.4857834,-0.05773457,0.17955919,-0.4900671,0.15230717,-0.036566652,0.15796518,0.30897936,-0.7226906,-0.64045817,-0.7911715,-0.50961155,1.1468792,-0.05686425,-0.2584893,0.3674585,-0.34952587,-0.1923753,-0.11215441,0.4999182,-0.034931753,0.032576554,-0.7699366,-0.05876842,-0.18783246,0.24832503,0.05008898,0.10118626,-0.41034573,0.7709738,-0.098529264,0.4257742,0.43170017,0.061180804,-0.26472247,-0.39848927,0.093203254,1.1962986,0.42809242,0.21040048,-0.057553887,-0.16253488,-0.46864393,-0.19900724,0.023996463,0.40342483,0.8011611,-0.0070158592,-0.06307125,0.33940682,0.06310104,0.041152116,0.057900656,-0.4889855,-0.2929084,-0.07204299,0.6025847,0.45124266,-0.20512426,0.3391406,-0.24258687,0.42052084,-0.34130576,-0.31387076,0.5017776,0.7207632,-0.20567785,-0.22551247,0.5951156,0.43352604,-0.341163,0.4883997,-0.52476823,-0.41670594,0.34509033,-0.08221625,-0.50277174,0.14427672,-0.3097871,0.12974916,-0.95282567,0.36712056,-0.43125767,-0.36968654,-0.45773724,-0.4390128,-3.2004466,0.17827842,-0.2455268,-0.10012285,-0.15294848,-0.0532338,0.1352872,-0.39946073,-0.71435964,0.13779533,-0.016241524,0.5869871,0.06389095,0.22310843,-0.11026677,-0.13780704,-0.34743047,0.12809269,0.11938788,0.24087487,0.09783204,-0.35081053,-0.13037094,-0.15268545,-0.4021748,0.22375838,-0.6906144,-0.5837864,-0.22909093,-0.6939722,-0.33100125,0.7890101,-0.34480256,0.039908856,-0.16183722,-0.0368902,-0.20821384,0.4660031,0.06895518,0.17617784,0.0018673709,-0.14992833,-0.24059217,-0.3544895,0.13415283,0.18364432,0.44835705,0.37326166,-0.1683127,0.23226707,0.39544398,0.70797664,0.062000982,0.6433247,0.3331574,-0.150852,0.43300954,-0.36463112,-0.27159458,-0.38588265,-0.19001244,0.06598985,-0.3153791,-0.42185697,0.12719129,-0.45869273,-0.7572569,0.3657972,0.08548762,-0.16575935,0.09409727,0.08366007,0.29043484,-0.08796732,-0.007345659,-0.0637845,-0.038180728,-0.6079572,-0.3673349,-0.5790556,-0.38364896,0.16725568,1.1182457,-0.07619517,-0.061260086,0.08007058,-0.15917332,0.09852187,-0.0977759,-0.005753317,0.052575674,0.4967479,-0.028392782,-0.63077307,0.42720464,-0.052699387,-0.2861076,-0.4191554,0.20528446,0.74542713,-0.7520198,0.65699065,0.3746808,0.20134732,-0.1273722,-0.37774298,-0.13255082,-0.043827005,-0.22593285,0.25984085,0.096793994,-0.6708251,0.378865,0.3926542,-0.079636745,-0.940729,0.34173578,-0.034583855,-0.2220563,-0.0753241,0.42753455,0.06323827,0.029598773,-0.09817753,0.11844719,-0.4869248,0.18199025,0.3329978,-0.06976154,0.5298743,-0.32488665,-0.33890727,-0.6536909,-0.06761438,-0.5973421,-0.20523693,0.28671572,0.07977707,-0.04355496,0.21826942,0.28393903,0.36822838,-0.19648282,0.17254011,-0.0222787,-0.1780598,0.2901238,0.3938538,0.4982357,-0.49273023,0.5716659,-0.08369116,0.080426775,-0.058613654,0.107012615,0.35215896,0.0906923,0.2915232,0.010428599,-0.06840728,0.3200108,0.86412245,0.089109294,0.37586194,0.3161645,-0.10581218,0.31463462,0.048336793,-0.064872004,0.10143936,-0.63956517,-0.032650203,0.08352069,0.1680951,0.3580207,0.26107392,0.29063362,0.026566116,-0.2544865,-0.1609181,0.20972826,-0.22621533,-1.1392004,0.38090086,-0.044877227,0.68666905,0.6614981,-0.016774535,0.091391094,0.49589437,0.028232131,0.18459912,0.3038988,-0.14929655,-0.46238786,0.585506,-0.48189014,0.3808879,-0.056324255,0.09328209,-0.10679169,0.0267588,0.45934194,0.77829045,-0.009104869,0.014472229,-0.18677013,-0.14239372,0.117667265,-0.501143,0.16112624,-0.40613085,-0.30095625,0.6702355,0.29083037,0.29728583,-0.122221895,-0.024126291,0.06938639,-0.13344558,0.17153871,-0.05153767,0.048482187,0.10107458,-0.70079315,-0.35489306,0.5626208,0.07917883,0.2313665,0.05388731,-0.23588657,0.20240544,-0.079664886,0.03033254,-0.060892317,-0.7789992,0.12750828,-0.49807468,-0.31005648,0.0136986505,-0.11390873,0.14630137,0.11214953,0.0572361,-0.46931097,0.43437353,0.08513581,0.6086605,-0.18782915,-0.22703484,-0.34068537,0.13475677,0.103597865,-0.32307985,0.0649853,-0.24838401,0.0803601,-0.7557623,0.5143868,0.046902206,-0.23307474,0.20828438,-0.21108885,-0.11511774,0.4721624,-0.27548048,0.09882649,0.13922183,-0.22635235,-0.13981219,-0.105667405,-0.0512671,0.2875856,0.1693293,0.13484795,-0.027764788,-0.24111596,-0.047463376,0.43310338,0.065500334,0.29321882,0.34799448,0.15999267,-0.3891957,-0.13958414,0.21779525,0.4850335,0.13365045,0.01406005,-0.20724252,-0.30213246,-0.2007635,0.3155844,-0.111553386,0.2546219,0.09862816,-0.41612196,0.8517538,0.2628387,1.2134138,0.16743697,-0.21768458,-0.062497284,0.40492648,-0.036229964,0.0066154557,-0.4428399,1.0277885,0.59634143,-0.2090967,-0.14283219,-0.3999191,0.008240665,0.08201234,-0.18183987,-0.111558795,-0.1167239,-0.60163635,-0.38221362,0.15749903,0.32223433,-0.009000452,-0.056275282,0.13648184,0.1080644,-0.100375734,0.27231595,-0.5944757,-0.05033367,0.30953708,0.24079034,0.19687316,0.16040985,-0.5196161,0.37215176,-0.75199604,0.20326032,-0.107131235,0.04609446,-0.024614343,-0.29638427,0.19645707,-0.003962491,0.48129153,-0.47472268,-0.4043432,-0.24203208,0.52850676,0.12630782,0.23524117,0.754838,-0.19461264,0.010319607,0.16795754,0.69322693,1.0756661,0.0062741637,0.1821537,0.22224352,-0.2838355,-0.58809745,0.27320462,-0.22935155,0.03419286,-0.015199618,-0.30063632,-0.5055738,0.29790777,0.29276854,-0.12312678,0.21919183,-0.64496714,-0.3613276,0.28600278,-0.1806409,-0.3139722,-0.2948219,0.06315061,0.7917655,-0.17807555,-0.08843793,0.16076374,0.22320403,-0.33350942,-0.60234034,-0.19353214,-0.40120402,0.24068461,0.19255951,-0.23951538,-0.18474199,0.041235857,-0.39400902,0.046806436,0.06673279,-0.35286644,-0.04158586,-0.25860688,-0.1740394,0.73826694,0.25111204,0.1742947,-0.5633016,-0.45641655,-0.9353289,-0.38237882,0.4833216,0.07375564,-0.039125305,-0.525955,-0.19123156,-0.0846642,0.07237071,0.12679806,-0.38118872,0.42690706,0.1336336,0.5075613,-0.058636438,-0.720388,0.0492728,0.21634623,-0.18644105,-0.60602,0.3099307,0.044051927,0.81791884,0.05424143,-0.07374648,0.22388557,-0.6552787,-0.03650189,-0.29435852,-0.21617153,-0.6566308,0.12140579 +788,0.43594095,-0.074578166,-0.7128564,-0.11267841,-0.18953282,0.17307447,-0.099803455,0.47777957,0.12142553,-0.347134,-0.11997768,-0.10344785,-0.063890256,0.33706596,-0.19168001,-0.46167114,-0.0059306384,0.30920023,-0.6353115,0.43426946,-0.41555828,0.33404523,-0.10302393,0.3542601,0.14864054,0.22227234,0.09215511,0.068813354,-0.10081734,-0.203252,0.17613411,0.20458402,-0.6019873,0.14594378,-0.1311945,-0.49099085,-0.25403038,-0.1364142,-0.43644756,-0.76566666,0.37611353,-0.89572084,0.59088284,-0.15073042,-0.3304493,0.120796315,0.21183695,0.32492855,-0.26385608,0.02523377,0.19698851,-0.18502222,-0.26096952,-0.32862297,-0.16945969,-0.3619509,-0.6754773,-0.09751863,-0.56103766,0.03587069,-0.27927452,0.09486173,-0.2310812,0.13720801,-0.2855352,0.42086282,-0.5457325,0.1846556,0.0983894,-0.019163664,0.29116994,-0.49237147,-0.067951314,-0.11189985,0.017747637,-0.22866812,-0.22716722,0.42470178,0.15298922,0.35338166,-0.08643843,-0.12359618,-0.29456007,-0.15553513,0.16015312,0.37129697,-0.023037655,-0.2774287,-0.16336128,-0.21143016,0.17196526,0.17658624,0.22128788,-0.29800704,-0.12177055,-0.001590391,-0.19726308,0.3494607,0.49409908,-0.20856148,-0.08076952,0.3885208,0.6250471,0.00026405652,-0.19257717,0.13559012,-0.06282165,-0.5011442,-0.26153407,-0.042589054,-0.22741048,0.47637615,-0.19220941,0.11969712,0.6589951,-0.30801666,-0.14455816,0.14104462,0.21251544,-0.09488301,-0.24851425,-0.43106976,0.272631,-0.5138568,0.041967522,-0.14986442,0.6227085,-0.041241836,-0.693566,0.36326668,-0.5426596,0.101571396,-0.12909606,0.53122693,0.54898494,0.62754697,0.20228651,0.75121564,-0.51835865,0.059080455,-0.036107443,-0.43040282,0.24716881,-0.18982,-0.22017698,-0.49707413,-0.055648718,0.03359851,-0.23971625,0.13312414,0.73960495,-0.4458181,-0.08573521,-0.067196295,0.6485382,-0.43586478,-0.06126925,0.75663084,1.1394743,1.1000972,0.14973396,1.3459498,0.31177536,-0.24661776,-0.09115704,-0.1283672,-0.9367937,0.30186722,0.2932259,-0.6864525,0.48567474,0.04354002,0.041244738,0.41622135,-0.52035356,0.012421361,-0.008793608,0.3525585,-0.059564956,-0.23071283,-0.32368526,-0.3660569,0.17049707,0.13882037,0.080142856,0.4192878,-0.31466204,0.3896586,0.3007515,1.7580162,-0.023907132,0.072508864,0.15757324,0.37058437,0.21739964,-0.33146223,-0.12557703,0.19900027,0.32481986,0.10854072,-0.61724687,0.11376707,-0.19092107,-0.6535026,-0.25338426,-0.31501636,-0.054091293,-0.32486618,-0.46814635,-0.20796388,-0.11412002,-0.30779418,0.38325202,-2.339621,-0.06306133,0.025308365,0.42388502,-0.11431328,-0.349384,-0.14427452,-0.41512343,0.3971449,0.3073396,0.36962226,-0.61252284,0.49597386,0.51007885,-0.3932921,-0.0051562586,-0.58262044,-0.085613325,-0.073896594,0.17310353,-0.041006718,-0.04345804,0.0685809,0.20753193,0.39637476,-0.26437792,0.22317433,0.4264719,0.27965623,-0.06521077,0.37918118,0.07082077,0.54197097,-0.3411983,-0.22591229,0.39216024,-0.48831144,0.16336985,-0.07362223,0.08630168,0.43908426,-0.5989937,-0.90174395,-0.5750822,-0.080952935,1.1612602,-0.3503946,-0.49152204,0.2731569,-0.2701774,-0.43425778,-0.047949534,0.40609586,-0.32836914,-0.08096862,-0.92183304,0.073598176,-0.14583506,0.36590278,-0.13985437,0.0679672,-0.3927068,0.64001375,-0.14803703,0.7937568,0.35052955,0.07263541,-0.5140174,-0.4992812,0.28445628,1.0588565,0.46046555,0.16195379,-0.296063,-0.15184124,-0.35727978,-0.16825882,0.15677668,0.43711016,0.7590359,-0.049005207,0.27366388,0.2970886,-0.15335727,-0.05974476,-0.21760778,-0.23317903,-0.010079929,0.10516075,0.52440727,0.71272343,-0.10497648,0.31836447,-0.16467953,0.42335737,-0.28852528,-0.54611564,0.39503953,1.0176246,-0.18178461,-0.4570116,0.7237432,0.50634444,-0.3466818,0.5731744,-0.5729989,-0.42836073,0.37987816,-0.20589565,-0.23761334,0.23933381,-0.38109222,0.1966143,-0.895689,0.30233967,-0.21502842,-0.61853224,-0.54627585,-0.31116602,-2.7773485,0.15084067,-0.11519899,-0.08814984,-0.051920794,-0.15024342,0.26879942,-0.5697394,-0.7808083,-0.03642149,0.07289169,0.74117523,-0.052477922,0.061519198,-0.016938629,-0.28884166,-0.26476923,0.22107908,0.19831158,0.3033441,0.005187885,-0.56242555,-0.24309969,-0.2580513,-0.4923751,-0.08512191,-0.58590615,-0.41968098,-0.10391167,-0.542969,-0.42367133,0.6456216,-0.2986177,0.030367848,-0.14151461,-0.17227383,0.07839101,0.28446242,0.12155012,0.073559664,0.1739089,-0.050942548,0.046899386,-0.2590236,0.20189857,-0.07414281,0.4243864,0.4055415,-0.34035996,0.11408375,0.514363,0.6573252,-0.11973241,0.88312924,0.39818656,-0.19250272,0.23015572,-0.1394496,-0.19596688,-0.7233234,-0.26950833,-0.088758424,-0.49514496,-0.39001182,-0.053033907,-0.41327906,-0.86477745,0.5207984,0.018873373,0.1445884,-0.040476702,0.3012594,0.32854193,0.010894307,-0.16760752,-0.16703197,-0.26919758,-0.40729147,-0.38618863,-0.8055843,-0.3976298,0.0743232,1.4350226,-0.09892178,-0.069298886,0.12687829,-0.11898362,0.09363358,0.24530151,-0.02686197,0.18396382,0.38126945,-0.09242539,-0.5365462,0.3478674,-0.1764595,-0.18137462,-0.5439775,0.123711236,0.585186,-0.59767646,0.4886357,0.3354882,0.14997765,-0.12211398,-0.6096489,-0.024885314,-0.022132972,-0.23722474,0.6768739,0.47312418,-0.82691216,0.46438402,0.28292397,-0.2735913,-0.6894463,0.56901157,-0.10572492,-0.06589977,-0.1488629,0.4345049,-0.17357369,0.037677016,-0.29154772,0.2941485,-0.50170654,0.20486178,0.35391796,-0.06536631,0.21897008,-0.2291834,-0.080350645,-0.64291763,0.15147434,-0.45789063,-0.21778421,0.016470402,-0.16618,0.0032726128,0.3320783,-0.008397595,0.45611864,-0.2628503,0.08968136,-0.1623136,-0.35396358,0.45144087,0.47456428,0.50392824,-0.3754691,0.60469764,0.0013684878,-0.13092493,-0.30037746,0.0859964,0.607981,0.023740428,0.48377952,0.18832748,-0.022254093,0.36803788,0.68566793,0.3187384,0.37792367,0.19382875,-0.17150177,0.032866932,0.077372104,0.3392512,-0.009429199,-0.36616024,0.10261463,-0.2880429,0.23476245,0.5673755,0.12601152,0.5278094,-0.20594975,-0.24100742,0.07798068,0.20308056,-0.30321294,-1.4180112,0.5486593,0.23051117,0.71926945,0.61028,0.042129453,0.04721477,0.36106065,-0.37458864,0.13334753,0.3629621,0.09742072,-0.4675497,0.55994445,-0.80661494,0.49163166,-0.030978967,-0.0664779,0.020193629,-0.010644643,0.5122122,0.869019,0.11908867,0.1923984,0.058509894,-0.31466225,0.32205138,-0.28028068,-0.057986222,-0.57578045,-0.26959726,0.83338755,0.32529646,0.43321133,-0.21663101,-0.027319558,0.14287992,-0.13857628,0.24675478,0.088580765,0.17514524,-0.19197765,-0.44227117,-0.38342765,0.4705222,-0.04491019,0.08035377,0.1954309,-0.31608912,0.10788863,-0.06365387,0.049857866,-0.005248038,-0.687815,-0.032508858,-0.25428388,-0.26989564,0.38048384,-0.2869075,0.09188767,0.25963703,0.13152845,-0.64591175,0.12622313,0.08946004,0.59572697,0.031630352,-0.1554768,-0.03696317,0.39719403,0.24094184,-0.19052666,0.028903008,-0.30216026,0.08797498,-0.6932685,0.4455243,-0.096047334,-0.51946896,0.25195843,-0.08271268,-0.0042136996,0.46794993,-0.20483162,-0.31523076,-0.027232965,-0.056964457,-0.04772608,-0.43302536,-0.33044896,0.27715877,0.0023620685,-0.0068445546,-0.12661369,0.14356874,0.13378868,0.41328195,-0.10255461,0.29420367,0.39655975,0.039596718,-0.485982,-0.060717873,0.069186315,0.6235218,-0.09672778,0.03141965,-0.4456902,-0.4670331,-0.21373813,0.34848803,-0.2405356,0.37439355,0.26454094,-0.30190125,0.8661709,0.10654531,1.0860463,0.111969374,-0.37082538,0.10075889,0.61669225,0.12784229,-0.1246712,-0.24855633,1.0417217,0.6250092,-0.3342611,-0.24594508,-0.37072363,-0.049997743,0.12552539,-0.23844749,-0.4608106,-0.089765936,-0.8885592,-0.12570247,0.1663489,0.29286125,0.10184539,-0.09052838,0.16029769,0.3963505,0.028019989,0.10349843,-0.43998623,0.10448097,0.40487668,0.16632725,0.03151412,0.12206626,-0.5100687,0.3008094,-0.59943396,0.015594957,-0.08781183,0.17606702,-0.046698775,-0.4972703,0.22944765,0.12901682,0.16216472,-0.1719257,-0.211227,-0.13708034,0.54197574,0.037120376,0.21974562,0.81789243,-0.3394371,0.252486,0.039619677,0.40648735,1.0436316,-0.12185017,0.014193607,0.28255442,-0.45717412,-0.81528026,0.37398928,-0.30319685,0.27293307,-0.08111915,-0.39794558,-0.57972604,0.31151035,-0.023476323,-0.10083364,0.20746382,-0.5767359,-0.07926161,0.25879416,-0.28729963,-0.21509758,-0.4507588,-0.04837947,0.5270723,-0.25805557,-0.2456543,0.2346353,0.29956654,-0.3017252,-0.47655186,-0.023235938,-0.36028466,0.39875028,-0.06826743,-0.39846408,0.021640055,0.06953153,-0.35502657,0.35379097,0.3536874,-0.24910556,0.10894863,-0.5048784,0.067971565,0.73616815,-0.24180561,0.03230935,-0.44146723,-0.56335205,-1.0462126,-0.13986248,0.37601745,0.066791825,-0.0081153475,-0.742572,-0.029933952,-0.21365868,-0.059792962,-0.090205915,-0.32868367,0.5234348,0.13942601,0.18000084,0.024372686,-0.9511988,0.07156529,0.19289519,-0.27158442,-0.422886,0.69195247,-0.24775502,0.74988765,0.1829106,0.15945436,0.30240658,-0.75410634,0.2951031,-0.105513334,-0.028376158,-0.5418987,0.027230136 +789,0.44202513,-0.04855464,-0.3188884,-0.076084696,-0.29362062,-0.0040655453,-0.06195363,0.64058125,0.30707866,-0.42682016,-0.14270087,-0.28232372,0.0012177308,0.26553425,-0.18567017,-0.49279985,-0.064370975,0.20318063,-0.42669767,0.6211332,-0.38760787,0.21828797,-0.20875931,0.5798873,0.20273337,0.15310618,-0.22207779,-0.016814897,-0.0889786,-0.22095877,0.121303655,0.45597392,-0.6285252,0.3085928,-0.34992725,-0.31232056,-0.08631379,-0.5127965,-0.38887635,-0.73903406,0.13734558,-0.6326126,0.5052004,0.028237538,-0.2753135,0.28648463,0.12697484,0.22785707,-0.07459848,-0.09939145,0.08903249,-0.15521964,-0.0661299,-0.07173804,-0.24535331,-0.43538395,-0.6288598,0.09835617,-0.35027364,-0.16522358,-0.39047325,0.19046834,-0.25022224,-0.16574197,-0.017889122,0.74760175,-0.35567003,0.41170794,0.03503104,-0.06372378,0.16306202,-0.5551161,-0.30792338,-0.11141108,0.13416943,-0.11543688,-0.2307628,0.29181522,0.24793117,0.46333253,-0.10741079,-0.12599894,-0.287842,-0.08727605,0.028834868,0.4466662,-0.17808905,-0.49434885,-0.13638887,-0.19039334,-0.0074569704,0.21567902,0.10248581,-0.34462187,-0.12742826,-0.06963326,-0.15898919,0.4479171,0.46828747,-0.21507452,-0.33882475,0.2922019,0.4258124,0.26955092,-0.15820523,-0.06451262,0.05480361,-0.54265714,-0.18984991,-0.08646755,-0.1692477,0.39572996,-0.1777926,0.20795898,0.5414987,-0.119992934,-0.105506554,0.15125567,0.19669971,0.07486102,-0.5091255,-0.25549296,0.31077382,-0.45352542,0.189255,-0.1822594,0.7915831,-0.044046696,-0.6870392,0.26022184,-0.7276939,0.020778123,-0.02046468,0.4370804,0.8707737,0.3600358,0.35763592,0.5027586,-0.26689968,-0.041530084,-0.06646042,-0.18012191,0.0041115363,-0.24197994,0.039427646,-0.494425,-0.08368492,-0.017374119,-0.018062932,0.1669323,0.48455667,-0.57384276,-0.26350984,0.19107418,0.8784823,-0.1589529,-0.17840013,0.8340595,1.0492456,0.9183852,0.117132775,1.1566758,0.10037205,-0.06490619,0.32271093,-0.21348897,-0.70975524,0.3049963,0.19036739,-0.28425485,0.06647522,0.08788295,-0.07035182,0.44642723,-0.41818857,-0.0598252,-0.080588564,0.2822197,0.19552739,-0.12174176,-0.41950843,-0.39908263,-0.05918156,-0.0071133096,0.07470495,0.3276623,-0.24454096,0.22413112,0.05334955,1.390941,0.010754275,0.1745256,0.13460378,0.4128796,0.20029224,-0.34372386,-0.057063762,0.3791944,0.20373078,0.16095664,-0.5222776,0.22220586,-0.23400894,-0.49367848,-0.20032111,-0.34129837,-0.24378566,0.0116207795,-0.5491379,-0.10956588,-0.31031293,-0.32094547,0.49615824,-2.7640243,-0.0723349,-0.012728228,0.36972407,-0.17719091,-0.3804092,-0.14151724,-0.40206692,0.4806169,0.23356189,0.41196933,-0.4806235,0.36583862,0.5639379,-0.5593909,-0.17017554,-0.5360328,-0.10415799,0.06906317,0.20296524,-0.09083545,0.025033744,-0.1103394,0.05830074,0.51986146,0.007520139,0.1849473,0.30646417,0.31710783,-0.14697677,0.3378491,-0.14017242,0.3926836,-0.2704939,-0.324726,0.31905377,-0.47858995,0.22132091,-0.16946648,0.09490518,0.6162653,-0.35790983,-0.86375314,-0.59238106,-0.3299574,0.99721587,-0.12695384,-0.37097284,0.36376476,-0.54890645,-0.30015743,-0.036822062,0.64359653,-0.109108694,0.0018944263,-0.7965952,0.07782738,-0.13730718,0.10565543,-0.047973342,0.05823928,-0.3500014,0.64723945,-0.023763895,0.41798356,0.25907594,0.21281596,-0.4367906,-0.4804069,0.03735526,0.81127155,0.3623048,0.2633341,-0.3118156,-0.19930544,-0.43704027,0.036290266,0.092355296,0.5728695,0.45451102,-0.055544075,0.25178775,0.27522564,-0.08344574,0.025861528,-0.16159607,-0.17863843,-0.13586332,0.086525455,0.53782594,0.64647985,-0.198805,0.45480198,-0.03172593,0.17083389,-0.38932067,-0.3308873,0.35210186,1.0531908,-0.14690323,-0.23129031,0.74474263,0.54984754,-0.23221493,0.3850786,-0.43326944,-0.2829693,0.49200153,-0.1355318,-0.57955617,0.07327265,-0.245645,0.014243478,-0.7426954,0.25120357,-0.26579708,-0.6010431,-0.67847186,-0.11791901,-2.507951,0.22608614,-0.13831486,-0.15338445,-0.28593028,-0.16857529,0.21625979,-0.49262416,-0.5191727,0.09248825,0.07234683,0.77570236,-0.21046476,0.09980129,-0.196719,-0.46539605,-0.31751397,0.14861624,0.20097406,0.39734623,-0.07194018,-0.41010943,-0.08734528,-0.04468045,-0.3512033,0.09535766,-0.5767469,-0.35057056,-0.12331252,-0.55195045,-0.24823374,0.60651463,-0.5342262,0.04496838,-0.27365237,-0.08208837,-0.024312908,0.29286358,0.18646035,0.22969188,0.16885649,-0.08563845,-0.2251324,-0.3010228,0.226723,0.016419789,0.24466142,0.49249744,-0.13549991,0.1916489,0.42935085,0.6061841,-0.18281461,1.1346437,0.40628958,0.0136231305,0.33471653,-0.20546691,-0.24960412,-0.5547141,-0.16793089,-0.11745334,-0.35201302,-0.44772428,-0.009719708,-0.29667717,-0.72086066,0.48209172,0.021804065,0.17372312,-0.02971226,0.25098416,0.431434,-0.28732547,-0.18595098,-0.15195054,-0.08518279,-0.45034128,-0.42510337,-0.47865057,-0.44252452,0.05661068,1.0157057,-0.11951179,0.047344446,0.14958698,-0.12742257,-0.0782208,0.17707552,-0.08027231,0.048350323,0.47553954,0.091289885,-0.5527201,0.4629764,-0.06236232,-0.24445026,-0.6040491,0.21651255,0.60805017,-0.5646951,0.7289561,0.27233347,0.1129978,-0.32115203,-0.5817389,-0.18092728,-0.05313667,-0.25597948,0.41741735,0.38047135,-1.0154152,0.36500874,0.26234895,-0.120830975,-0.8346637,0.6495173,-0.12988333,-0.2661899,-0.14527646,0.39472592,0.30834863,0.1601916,0.025871418,0.3791787,-0.40290606,0.27119547,0.07836318,-0.0985395,0.2606913,-0.31305254,-0.020798227,-0.7403567,0.07859927,-0.39837134,-0.4631254,0.21973915,0.07886904,-0.0516322,0.4717851,0.047298886,0.2102311,-0.13416074,0.1540986,-0.15404136,-0.18656348,0.10624614,0.44026324,0.6682035,-0.3206426,0.5631675,0.011285246,0.05387789,0.08372586,0.23800702,0.3927532,-0.118320815,0.49328622,-0.089637116,-0.25359744,0.12314231,0.8269623,0.073264666,0.45732123,0.0117743965,-0.11239548,0.33826342,-0.027809108,0.2473204,-0.15046462,-0.58118397,-0.033007145,-0.3870828,0.17487277,0.4791558,0.019946678,0.2520611,-0.057956997,-0.27562922,0.121194586,0.32703057,0.042397335,-1.2816863,0.25916117,0.21248539,0.982376,0.6111743,0.028433912,0.029259134,0.65303224,-0.05357295,0.11367965,0.49345696,0.10969602,-0.34371248,0.6712398,-0.78082585,0.42424586,-0.18067789,-0.056263827,0.06342063,-0.07669677,0.5454621,0.6202213,-0.26219082,-0.042121604,0.09352977,-0.3578942,0.18250345,-0.30612653,0.36466232,-0.57812333,-0.1690068,0.64557064,0.63001406,0.20201987,-0.4280468,0.021214155,0.18468666,-0.19296926,-0.113873266,0.117005914,-0.040403042,0.031612374,-0.6152233,-0.070503905,0.55538994,-0.14704068,0.1642521,0.23306085,-0.16781443,0.22908308,-0.1851912,-0.012551299,0.016730586,-0.7425746,-0.004389854,-0.33675548,-0.477716,0.5915299,-0.27037928,0.16060719,0.17273808,0.16040583,-0.41154984,0.45073614,0.15661551,0.72173274,0.003735594,0.017075209,-0.18409231,0.2331036,0.15189774,-0.10873033,-0.32459018,-0.25714904,0.06186111,-0.5682285,0.3123327,-0.08596174,-0.23514186,0.06797441,0.0508846,0.15659949,0.5539894,0.14187111,-0.084933564,-0.097811304,-0.26375973,-0.2342911,-0.04969977,0.043090962,0.43098822,0.10322212,-0.08440176,-0.14869766,-0.16131619,-0.16703944,0.18665595,-0.03926945,0.35989225,0.32113543,0.098816715,-0.12984295,-0.11721573,0.2097697,0.45591784,-0.067537,-0.10765056,-0.035720687,-0.15994868,-0.38351542,0.24753386,-0.10314587,0.3359417,0.12987134,-0.31715336,0.78853834,0.02497797,0.9986258,0.02572167,-0.37265903,0.19356567,0.34429875,-0.070883065,-0.13432191,-0.40520397,0.8320811,0.4068363,-0.07567827,-0.11496242,-0.26663363,0.097649194,0.2374527,-0.19697888,-0.22012344,-0.100017056,-0.65839446,-0.050209817,0.15121086,0.3039047,0.1362811,-0.13748519,-0.15898173,0.3818336,0.02849091,0.33770636,-0.46149758,-0.008887663,0.23117638,0.46235448,0.012570222,0.2642706,-0.3427439,0.357389,-0.618552,0.12199791,-0.23944433,0.17404312,-0.4545439,-0.19530617,0.17911582,0.016926428,0.4512584,-0.16829965,-0.21601738,-0.45156962,0.41340753,0.13532218,0.050922584,0.4757473,-0.2724104,0.042090006,0.029497236,0.47273904,0.96219116,-0.27379686,-0.16376556,0.22471686,-0.28787142,-0.5804961,0.30706823,-0.528221,0.23916276,0.031075776,-0.12861536,-0.31175995,0.135348,0.13889398,0.11813274,-0.05020185,-0.6259645,-0.0123847285,0.3364102,-0.16156001,-0.13630834,-0.07451092,-0.027087089,0.60357857,-0.12699823,-0.26338303,-0.00015590191,0.2966427,-0.13752957,-0.5137193,0.059258748,-0.50425035,0.22817916,-0.102282636,-0.3950676,-0.22221106,0.03852091,-0.5306456,0.065993644,0.0891478,-0.28684238,-0.045765232,-0.25143582,0.03695599,0.982202,-0.1479768,0.28458825,-0.3144433,-0.5772661,-0.7320319,-0.2746011,0.24349502,0.22003323,0.022901217,-0.47343877,0.05988311,-0.17529611,-0.26902017,-0.050484877,-0.38059673,0.29572734,0.2987547,0.3597088,-0.04811332,-0.87763304,0.025413342,0.09974122,-0.19089967,-0.63144284,0.38341042,-0.050495766,0.85589474,-0.014622187,0.13575338,0.1153817,-0.45384198,0.021131793,-0.10122724,-0.10032703,-0.5697118,0.08109105 +790,0.38792604,-0.13649614,-0.4770403,-0.028327383,-0.084887356,0.11644705,-0.35148907,0.32620904,0.07816532,-0.4866656,-0.2105535,-0.26213768,0.15325305,0.35647422,-0.21188122,-0.84297913,0.15185128,0.19702013,-0.6634371,0.6446739,-0.36452594,0.40859604,0.058809854,0.36916402,-0.066744134,0.2255388,0.3733988,-0.04921121,-0.11558624,-0.0121481875,-0.068256296,0.35231215,-0.7560005,0.17706957,-0.07435487,-0.38264757,0.09360879,-0.18119046,-0.24039102,-0.8243612,0.15072298,-0.82549596,0.54158723,0.21909745,-0.29613927,-0.059403174,0.13454047,0.5170073,-0.23036566,0.07741351,0.27694055,-0.18426092,-0.15876564,-0.2752498,-0.11971006,-0.64219224,-0.52190757,-0.008006224,-0.72158784,-0.29485765,-0.3783436,0.23654914,-0.13133158,-0.048898302,-0.14950877,0.42135164,-0.5132604,-0.1468073,0.37986997,-0.20845501,0.45224908,-0.5318587,-0.06483777,-0.13250022,0.36563522,-0.30978304,-0.3054845,0.102008015,0.35748672,0.47892797,0.13753925,-0.20004717,-0.201199,0.02726918,0.27786034,0.5432863,-0.28934604,-0.53464895,-0.17896964,-0.12804161,0.13663404,0.05583861,0.22934243,-0.50861555,-0.13511564,0.015855175,-0.11217442,0.31975794,0.5018572,-0.4934799,-0.2546959,0.1856539,0.60438854,0.03916616,-0.08592257,0.218565,0.08237279,-0.551242,-0.15885213,0.26354784,-0.08597272,0.6085913,-0.11935728,0.15861998,0.796958,-0.054545574,0.042860646,0.048784617,-0.079972014,-0.008190889,-0.083692536,-0.24184409,0.42488977,-0.40759033,0.05053214,-0.3832156,0.6429367,0.23010287,-0.6832667,0.32319063,-0.6039219,0.17215596,-0.038258925,0.6441082,0.6350199,0.30561095,0.25890848,0.7597654,-0.4606339,0.019892186,0.04652777,-0.35166022,0.12085148,-0.24172625,0.039652806,-0.39396983,-0.1297105,-0.058940686,-0.054410163,0.08975886,0.24436133,-0.63171965,-0.0016428187,0.07601927,0.78509754,-0.37629554,0.009814895,0.58750564,1.1803359,0.57529604,0.0925142,1.3521212,0.44856632,-0.2783907,0.11693848,-0.30595016,-0.56267047,0.25126192,0.39399055,0.21475366,0.3238754,-0.020836312,0.021928493,0.6225765,-0.5933975,0.17905809,-0.12311827,-0.016758094,-0.13163233,-0.29724059,-0.40551573,0.04705806,0.012464125,-0.12478447,0.10753456,0.23936184,-0.1551629,0.42744547,0.10483233,1.3456197,-0.08260712,-0.0064697266,-0.018838117,0.4613363,0.28038245,-0.06142533,0.13925788,0.27347845,0.46099043,0.038325146,-0.58752847,0.27759075,-0.13819262,-0.44722387,-0.22782412,-0.14551753,-0.026303722,0.20492734,-0.53609174,-0.06319152,0.20298195,-0.09532566,0.30288333,-2.333588,-0.15682217,-0.12866879,0.32608238,-0.16383958,-0.35306323,-0.09527074,-0.4466578,0.5176822,0.38099143,0.37157866,-0.6741863,0.5142908,0.49869892,-0.49577826,-0.14293689,-0.69905895,-0.04381407,-0.11949288,0.3464591,0.08755485,-0.13473518,0.12800096,0.26373228,0.48757207,-0.20759875,0.08843812,0.11721166,0.35135695,0.05088286,0.35533318,0.3386843,0.55077004,-0.18686628,-0.2611567,0.37176043,-0.27344698,0.23381312,-0.0027705522,0.059536677,0.26711825,-0.24800624,-1.004512,-0.7560889,-0.5200566,0.8440752,-0.10794893,-0.4780881,0.13924083,0.028764175,-0.18021232,0.14128643,0.6609436,-0.05109546,0.24164003,-0.88594276,-0.07348839,-0.065432325,0.28973582,0.1416501,-0.11331536,-0.61741406,0.62373966,-0.25288326,0.23608762,0.60510653,0.20097388,-0.22105673,-0.63834834,0.1544834,1.049238,0.2865061,0.21048209,-0.24874511,-0.2375817,-0.28558952,-0.014050731,-0.08174737,0.69805837,0.68426204,-0.068116665,0.14916322,0.12613776,0.051064905,-0.010472298,-0.3382351,-0.49091727,-0.073627904,0.15859428,0.6617091,0.60965693,-0.19409092,0.3748081,-0.1853732,0.3817405,-0.30150136,-0.49973807,0.79786915,1.23299,-0.19057798,-0.058174856,0.8258124,0.30757293,-0.22536561,0.47696385,-0.88062567,-0.40380085,0.46444637,-0.111540094,-0.480272,0.30603626,-0.30043453,0.24481544,-1.0087636,0.5435819,-0.43110734,-0.3433372,-0.62030286,-0.07419555,-4.0495114,0.20250306,-0.26056334,-0.034200326,-0.024225043,-0.110217795,0.33043388,-0.6334604,-0.4439947,0.23819517,0.07072219,0.3744083,-0.04235104,0.102217,-0.34011617,-0.11148822,0.045015913,0.37762773,0.24766111,0.17438364,-0.0622816,-0.5466823,0.21018958,-0.19461957,-0.36918515,-0.024530364,-0.6794399,-0.47171587,-0.36907145,-0.6672199,-0.3033908,0.5839705,-0.5997325,0.00491971,-0.23978956,0.07096992,-0.17979845,0.482139,0.27190545,0.25095528,0.022163097,0.05791643,-0.23399888,-0.2510553,0.035364166,0.17759767,0.06584306,0.46570486,0.011250645,0.20550981,0.41955858,0.5900395,-0.0038647263,0.7509651,0.5966594,-0.051310215,0.30677754,-0.30488977,-0.2737901,-0.6939697,-0.42588538,-0.4507233,-0.4337422,-0.62191427,-0.06942158,-0.45762742,-0.73791176,0.5796515,-0.0684666,-0.19528316,0.14504537,0.18377605,0.34047204,-0.3360132,-0.13329071,-0.19335689,-0.07632732,-0.5960503,-0.30727887,-0.5730291,-0.75067294,0.04793906,0.79190165,-0.12657882,0.04631629,0.1251185,-0.08925702,-0.089277744,0.3875406,0.094567485,0.11130619,0.6119039,-0.05609946,-0.69652593,0.5682805,0.015920121,-0.4771498,-0.8105478,0.3477814,0.53384614,-0.8148683,0.76297724,0.43428674,0.09413709,0.05985604,-0.3667398,-0.3701809,0.16738299,-0.29883906,0.5588312,0.055533193,-0.7059873,0.3620047,0.37854972,-0.29457933,-0.7417931,0.75037205,-0.086003885,-0.4550218,0.2572926,0.27728385,-0.09619837,0.117264874,-0.45468476,0.1888124,-0.49283546,0.09235747,0.40223992,-0.059804305,0.5612648,-0.2033458,-0.18385158,-0.8744878,0.07884503,-0.71652293,-0.25727728,0.08870388,-0.026286233,-0.17848054,0.35559937,0.13665034,0.4180238,-0.33340344,0.19546501,-0.18936239,-0.27386376,0.35352293,0.48030627,0.17039658,-0.3408149,0.65576875,-0.11371163,-0.115991905,-0.3970604,0.067012616,0.58560777,0.16865046,0.55083424,-0.03393038,0.027981978,0.25698796,0.7777428,0.11742333,0.6130702,0.23742819,-0.07271915,0.22000489,0.14520855,0.24688159,0.1698993,-0.39282057,0.04730904,-0.05355737,0.1561564,0.39765263,-0.02559772,0.39038152,-0.1464984,-0.52061415,0.13717665,0.2706653,0.23388813,-1.1405011,0.37137696,0.2569609,0.585962,0.5654004,0.0816871,-0.003181525,0.50415957,-0.40105394,0.074222006,0.17617938,-0.13827604,-0.5179564,0.546349,-0.777299,0.24901772,-0.24350008,-0.01204011,0.00087149325,-0.090362325,0.26400286,0.9721676,-0.19997527,0.15669106,-0.07014736,-0.01634976,0.05474753,-0.3960312,0.12214338,-0.36398757,-0.4633003,0.7910343,0.5307477,0.43845809,-0.33654678,-0.03082226,0.12674361,-0.18185839,0.10472481,-0.041743305,0.24301559,0.07091182,-0.5579305,-0.33659953,0.6832637,-0.23653635,-0.018841136,0.0030160958,-0.47185713,0.26724178,-0.109798275,-0.02663512,-0.13111493,-0.859883,-0.01326163,-0.47816318,-0.3966088,0.7130248,-0.27511713,0.20625949,0.26204967,0.06530894,-0.3152216,0.667366,-0.080708966,0.71532464,0.2819969,-0.11265496,-0.29426703,0.24772581,0.3755496,-0.2014603,0.01710945,-0.3261926,0.25393268,-0.50953,0.40124246,-0.026640378,-0.3362334,0.06280038,-0.13936277,-0.12627237,0.48059353,-0.2270158,-0.3504251,0.50330514,-0.17860797,-0.18098405,-0.32142428,-0.16373755,0.21284556,0.047752228,0.114593945,-0.01655184,0.0085555455,-0.22982384,0.41245493,0.25463113,0.3787587,0.56768906,-0.041379903,-0.4114941,0.09975172,0.16151828,0.4941333,-0.14130987,-0.15315317,-0.17702444,-0.73612106,-0.34790054,-0.14982629,-0.17997397,0.25217426,-0.00053287926,-0.19749075,0.84487873,0.162837,1.2695115,0.04376805,-0.46825832,0.3116479,0.49684447,-0.08244639,0.0041535357,-0.5294404,1.0150468,0.59339774,-0.03961146,-0.014612966,-0.115700096,-0.19862762,0.21523446,-0.2187302,-0.11810802,-0.060929917,-0.7550965,-0.17896062,0.32210636,0.4418718,-0.031138454,0.035736404,0.25872436,0.0835104,0.02303849,0.13629562,-0.76181644,-0.12286575,0.21691893,0.25617316,-0.081651144,-0.017924497,-0.26694843,0.6397402,-0.5042689,-0.102277055,-0.5532423,-0.08811756,-0.27613294,-0.3035516,0.12530547,0.08388303,0.3264217,-0.33340877,-0.10075081,-0.31397966,0.43380898,0.32373288,0.11810009,0.71622646,-0.17635141,0.12733132,0.021343268,0.5960812,1.1556259,-0.55798596,-0.045941755,0.5112553,-0.4370845,-0.5301978,0.2941913,-0.34184396,0.11762946,-0.1557444,-0.45631468,-0.6193319,0.15205954,0.13223074,-0.12686414,0.11563598,-0.7269984,-0.095354564,0.3523374,-0.47642216,-0.3287508,-0.24176165,0.51313895,0.8012431,-0.38746983,-0.3226183,0.08005658,0.2794506,-0.25674385,-0.51397157,0.0075075924,-0.2374784,0.440647,0.2787131,-0.44515926,-0.034325983,0.20122027,-0.49801093,0.0006676041,0.42112985,-0.36483353,0.19044341,-0.3001823,-0.070026904,0.9289788,-0.051146183,-0.085743055,-0.7314511,-0.54071695,-1.0322996,-0.4356592,0.5482147,0.29269826,-0.03681924,-0.56355035,0.07477133,-0.09667203,0.10158633,0.07879866,-0.24648863,0.47291434,0.09473459,0.67061305,-0.073305495,-1.0231297,0.04725268,0.196139,-0.06829657,-0.5095727,0.40164274,0.025735388,0.9961086,-0.026758125,-0.030067077,0.2519803,-0.63120645,0.13613775,-0.38473147,-0.110711895,-0.9026489,-0.009096969 +791,0.2081976,-0.42045578,-0.30018157,-0.17713822,-0.46210903,0.002199549,-0.38284317,0.28664732,0.21866876,-0.15680067,-0.15689825,0.054647252,0.030533511,0.38915285,-0.24310587,-0.5456796,-0.3538881,0.088920355,-0.5964991,0.6588602,-0.49061102,0.22333051,-0.19382562,0.4473921,0.15108368,0.36215967,0.3550711,0.10969253,0.062687986,-0.09368928,-0.027415363,0.23119985,-0.47528994,0.2588787,-0.24765627,-0.36224002,0.111393966,-0.475564,0.0002371027,-0.71355826,0.39776427,-0.7328701,0.5022999,-0.09464081,-0.21680114,0.18222205,0.54769886,0.21788876,-0.30651978,-0.119339705,0.19254072,-0.13738035,-0.10734149,-0.48632935,0.0033860619,-0.35400918,-0.46302316,-0.14823362,-0.68149334,-0.33796236,-0.14256893,0.26147947,-0.29252577,-0.050294086,-0.036236003,0.37205127,-0.3626249,-0.012825398,0.2308148,-0.21350019,0.14672567,-0.7600814,-0.10445944,-0.0077237007,0.43827057,-0.0062463353,-0.10833592,0.55641073,0.04431849,0.20124608,0.1866669,-0.3600769,-0.37680274,-0.36156267,-0.015281274,0.3535009,-0.18963616,-0.30833036,-0.2925665,0.0246516,0.25635412,0.41772044,0.08492256,-0.013100037,0.10785698,-0.2392669,-0.0478673,0.76233184,0.38702863,-0.016806204,-0.3727501,0.17174624,0.6074553,0.3056055,-0.41182092,-0.18723682,-0.068886094,-0.41383737,-0.24462198,-0.03198928,0.08048487,0.3001394,-0.1514723,0.26836106,0.750931,-0.1439707,-0.062498808,0.021363087,0.07801747,0.0012111389,-0.4283026,-0.27214253,0.24443682,-0.54816353,0.07241443,-0.31114835,0.52761346,0.109682076,-0.6214669,0.3071041,-0.6556692,0.09902726,0.050353903,0.5189433,0.5410431,0.53774023,0.3347742,0.80715466,-0.038489874,0.06304535,-0.10502274,-0.11379225,0.051743165,-0.32660535,0.16701882,-0.5401032,0.2682327,-0.21285473,0.26822758,0.06404407,0.30469948,-0.52547544,-0.18985489,0.2806379,0.6748089,-0.27350837,0.09971019,0.80247724,1.2139661,1.1753951,-0.101101875,1.0595921,-0.02596945,-0.23843028,-0.056329217,-0.1175106,-0.6377704,0.21929234,0.41367406,0.0070533934,0.45536885,-0.15663888,0.09708564,0.30221793,-0.44277096,-0.15427397,0.13712955,0.46341005,0.4013851,-0.014752372,-0.5045894,-0.16071358,0.068758,-0.00011596313,0.33097723,0.20711218,-0.1948003,0.32666257,0.020524066,1.2606237,-0.08845771,-0.01946301,0.21920456,0.65136534,0.29751417,0.045621064,0.123756394,0.41403368,0.22739506,0.16279373,-0.5179882,0.3023089,-0.32014135,-0.55463815,-0.08107611,-0.40736425,-0.27595437,-0.09073536,-0.19075195,-0.24717654,-0.21165857,-0.26028925,0.15800397,-2.8633063,-0.27694273,-0.108901456,0.31057915,-0.20920143,-0.07068643,0.07118782,-0.3810599,0.42544812,0.2915045,0.40143284,-0.48088625,0.4271213,0.75974333,-0.7140216,-0.067093,-0.5370405,-0.18567361,-0.099309355,0.74559987,0.1275128,-0.15970248,-0.24339986,0.41971922,0.6391725,0.20463617,0.20177604,0.45564836,0.41420272,-0.2765078,0.59967047,-0.0270629,0.432199,-0.49110076,-0.12816538,0.3478526,-0.5015717,0.14635263,-0.33844006,0.048833303,0.59064186,-0.42369205,-0.8866228,-0.5214427,-0.073801175,1.0199257,-0.14501128,-0.55402166,0.20262879,-0.46725085,-0.02933064,-0.07407181,0.4989528,-0.16176802,0.144589,-0.6418941,0.13975438,-0.15740536,0.15723583,-0.05467935,-0.0018208554,-0.652682,0.79858124,0.09499281,0.61284614,0.21729788,0.20395741,-0.4852072,-0.22707517,0.08494207,0.52703243,0.42603067,-0.029339217,-0.0023489497,-0.22067173,-0.05635103,-0.20623578,0.058487747,0.7371876,0.5313649,-0.0568754,0.27997473,0.33864278,-0.18104628,-0.011285846,-0.15569629,-0.12131907,-0.14091411,0.13368294,0.51291716,0.8314661,-0.088045835,0.32480064,0.040881082,0.465065,-0.11280557,-0.4495445,0.52952015,0.56615824,-0.14397758,-0.10724381,0.69508374,0.5180429,-0.36854208,0.48590198,-0.65136725,-0.30820206,0.78046423,-0.27111146,-0.47437197,-0.0024352623,-0.18588541,0.02047807,-0.60238343,0.21516524,-0.36989287,-0.3057935,-0.57191986,-0.25153637,-2.7350833,0.054569747,-0.1792126,-0.13671528,-0.50139356,-0.22589773,0.11519276,-0.7410875,-0.70682865,0.2541385,0.17639908,0.635099,-0.15887783,0.08792749,-0.2627671,-0.41813585,-0.038522117,0.38607088,-0.07371239,0.2063845,-0.1528412,-0.43582967,-0.118913166,0.0072936187,-0.73142076,0.09955177,-0.44561768,-0.350214,0.11046687,-0.6435007,-0.14195287,0.65390885,-0.24503905,-0.04025948,-0.31487894,-0.0016022279,0.019020753,0.056736164,0.082217336,0.16009004,0.3647356,-0.05432952,0.24176,-0.26163894,0.48326427,-0.008161857,0.43898004,0.04156065,-0.012629846,0.18440507,0.40133908,0.6105892,-0.27887142,1.1473327,0.34633714,-0.11486065,0.36862782,-0.29011628,-0.32010058,-0.53535414,-0.24143511,0.30374667,-0.21942538,-0.3753634,-0.06574158,-0.3012388,-0.7548647,0.7477871,0.04196763,0.4016163,-0.22080477,0.23154236,0.28207806,-0.2583628,-0.034435127,0.05722565,-0.15049936,-0.474616,-0.20600605,-0.6034601,-0.43602106,-0.1251955,0.68905187,-0.3364403,0.013724951,0.25286725,-0.32463706,0.20122266,0.16437332,0.13661565,0.30255383,0.36879247,0.29583234,-0.6254705,0.45779264,0.031770352,-0.11685658,-0.32744887,0.12058462,0.6100044,-0.6351712,0.44841224,0.3968374,-0.08002312,-0.34042037,-0.52874625,-0.04036264,0.052738097,-0.17439644,0.45246363,0.27319536,-0.9310669,0.58141166,0.11575275,-0.41528237,-0.6765343,0.3302386,-0.19436227,-0.33546856,-0.12630984,0.36466244,0.31684577,-0.050128307,-0.0930996,0.31761262,-0.26805618,0.21012737,-0.12410001,-0.0039457586,0.35492358,-0.040334012,-0.31400996,-0.77005386,0.10726759,-0.4956957,-0.36883977,0.41666666,-0.15703772,-0.25216302,0.20014328,0.11910199,0.33837286,-0.2784321,0.116934225,-0.01721693,-0.43415928,0.19006634,0.48411682,0.4123631,-0.40337107,0.4597521,0.10907933,-0.16824624,0.20253974,-0.20471555,0.36221042,-0.11915334,0.5628688,-0.10276706,-0.029050099,0.4532844,0.6693345,0.22361138,0.27330664,0.033124622,-0.106172755,0.4423863,-0.08251424,0.1989207,0.0016990167,-0.4423024,0.14403765,0.03138543,0.0070753004,0.4673465,0.290155,0.3867428,0.24501465,-0.2769979,0.027191909,0.19850866,-0.22987865,-1.4392571,0.31150377,0.23930913,1.0161121,0.5009097,0.13142921,0.002227201,0.7972052,-0.13894318,-0.12191558,0.57760817,0.1841581,-0.33307374,0.8431905,-0.4269991,0.5458669,-0.17253658,-0.12244408,0.049033985,0.0700715,0.39323714,0.6760321,-0.24202336,-0.0015834707,0.097518004,-0.18987519,0.106937185,-0.29547378,0.03892811,-0.1899928,-0.36279795,0.57280767,0.35006955,0.39116016,-0.22757635,0.10942503,0.11730768,-0.20935968,0.29811674,-0.13779055,-0.31370395,-0.04286544,-0.4957199,-0.050267898,0.47932693,-0.02395651,0.28531548,-0.2510513,-0.27762702,-0.0005395642,0.014961213,-0.0034318613,0.05011844,-0.63687265,0.15235922,-0.077693336,-0.53499514,0.6510525,-0.34371036,0.015598964,0.36387575,0.054110453,-0.1799944,0.1398936,0.14334607,0.5430375,0.054665584,-0.20833573,-0.18503366,-0.091024384,0.08174462,-0.3191722,0.23418361,-0.39493254,0.300033,-0.45919836,0.62317175,-0.17198688,-0.47607586,0.006237099,-0.3028845,-0.06740807,0.5430419,0.023042591,-0.08210557,-0.10829876,-0.17968628,-0.25528938,-0.27582008,-0.44701767,0.32402208,0.12060295,0.045690186,-0.26252848,-0.3064113,-0.27121168,0.64930177,-0.08503657,0.40600315,0.19569103,0.026695298,-0.20799288,0.2885422,0.16079427,0.5240014,0.0128811095,0.06576702,-0.29798275,-0.39377445,-0.3481149,0.5166846,-0.15121277,0.10533821,0.06243915,-0.30644247,0.90469486,-0.054229006,1.0902743,-0.06663558,-0.45121038,0.124623075,0.5404555,-0.2323235,-0.013159534,-0.3778119,0.848199,0.4828967,-0.2720943,-0.0528208,-0.5046319,0.066064864,0.40334246,-0.41259772,-0.086861186,-0.21451084,-0.4731666,-0.5314421,0.27453044,0.116383545,0.1074088,-0.18562023,-0.13477263,0.07137389,0.1923998,0.42509905,-0.568836,-0.09395656,0.2947509,0.009935713,-0.17018682,0.13602759,-0.48859823,0.39148316,-0.5912112,0.31707942,-0.5526137,0.14756249,-0.4590132,-0.2842675,0.051875595,-0.13629432,0.31450436,-0.32055137,-0.5352901,-0.123606905,0.15636796,0.06202839,0.17218593,0.38694194,-0.24461174,0.15292105,0.03545005,0.56094337,0.94438523,-0.33394873,-0.09254517,0.101470396,-0.5896359,-0.70791525,0.2530429,-0.441625,-0.12882987,0.064643286,-0.32481816,-0.5245593,0.19854857,0.19812125,0.22950587,-0.051369444,-0.5347649,-0.18993303,0.29828686,-0.29871148,-0.23051964,-0.15596806,0.11940844,0.7635297,-0.15837458,-0.25440544,-0.02250465,0.3950308,-0.25962797,-0.6311992,-0.034919932,-0.34344688,0.54285204,0.0049168766,-0.20208052,-0.24881032,0.103382036,-0.5787366,0.10283525,0.40367156,-0.2788332,-0.048675485,-0.12079351,0.106503434,0.842419,-0.23220521,0.09576954,-0.4406484,-0.50189006,-0.9590875,-0.34215906,-0.04929084,0.17398132,-0.019087724,-0.4481207,0.019348796,-0.27766064,-0.318608,0.14375296,-0.48341906,0.2396992,0.17291337,0.4874352,-0.40945,-0.9210033,0.20483392,0.1512905,-0.00041558192,-0.48134306,0.69828606,-0.12077885,0.6566442,0.104087405,-0.14689215,-0.11637434,-0.28317845,0.18173078,-0.20316178,-0.12665112,-0.57848513,0.12461587 +792,0.5505423,-0.124898486,-0.8009405,-0.116383836,-0.30202913,-0.05959567,-0.29485917,0.3360742,0.28757665,-0.6028103,-0.2778553,-0.07249951,0.016135503,0.15756293,-0.15376909,-0.55652356,0.12888853,0.15755741,-0.54633415,0.5590571,-0.2500852,0.22512701,0.048255794,0.3125611,0.35669592,0.16009557,0.1357729,0.1350005,-0.13366456,-0.11129924,-0.257343,0.42345232,-0.48119298,0.19128473,-0.37037554,-0.40819055,-0.10008204,-0.46247503,-0.44816345,-0.7881313,0.2881793,-0.9472621,0.52041996,0.203717,-0.27635422,0.097096086,0.26298466,0.20202538,-0.08755718,-0.0024880213,0.14483581,-0.22494146,-0.02691139,-0.23083429,-0.25494638,-0.50733024,-0.5427062,-0.12052274,-0.6178163,0.03825003,-0.18524384,0.10529502,-0.27181557,0.089568496,-0.08481775,0.38624382,-0.38966912,0.002652147,0.30472156,-0.12047969,0.31907728,-0.6064361,-0.334251,-0.08213407,0.26303202,-0.07928161,-0.4353954,0.37233403,0.13898374,0.40871602,-0.11365002,-0.23925366,-0.20983885,0.021834794,0.033749633,0.44046047,-0.16633256,-0.3997245,-0.20043118,0.021899303,0.36974865,0.12132641,0.14958902,-0.0891907,-0.09888693,-0.08461495,-0.04943615,0.40334558,0.65849143,-0.23147483,-0.075973935,0.36536422,0.5627995,0.25492984,-0.27255574,0.05811911,0.067467675,-0.5538241,-0.18471768,0.040115323,-0.1955792,0.653262,-0.09986903,0.25869092,0.5108944,-0.14512525,-0.09967911,0.13306883,0.15640792,-0.032113057,-0.19551982,-0.33298627,0.3599516,-0.44196722,0.052458517,-0.25890788,0.5668087,0.17145464,-0.5396272,0.24675386,-0.40617222,0.016608147,0.020275533,0.56139034,0.8509698,0.46959662,0.36454085,0.88895035,-0.339684,0.09110247,-0.121306166,-0.19801275,0.049361076,-0.2160981,0.13461486,-0.48508045,-0.03262448,-0.08765269,-0.09487634,0.29945654,0.6787066,-0.4579475,-0.23425578,0.23209509,0.7745565,-0.23707184,-0.11205702,0.7697091,1.023109,0.9949961,0.107232675,0.69806594,0.1363878,-0.2529811,-0.10171716,0.045298755,-0.79160315,0.2549163,0.23774716,0.33901212,0.4637956,0.20121503,0.17284457,0.33148694,-0.6000818,-0.00024483885,-0.024098685,0.26899308,0.09619497,-0.05131683,-0.41627645,-0.10951496,-0.13831888,0.09128022,0.036650773,0.24364528,-0.14327969,0.58540046,0.052138563,1.4668483,-0.10436293,-0.07385606,0.055008896,0.4882248,0.32025665,-0.35281345,-0.07345254,0.27792192,0.37140366,0.006023556,-0.48467588,0.014729607,-0.2464594,-0.32529026,-0.23585626,-0.300452,-0.13671055,-0.087522484,-0.49022,-0.23297386,0.0148100015,-0.31332216,0.4069015,-2.7521365,-0.002567699,-0.15083702,0.3979961,-0.17197552,-0.28888455,-0.41580242,-0.5314675,0.32607192,0.2792941,0.3430355,-0.6541597,0.34830442,0.2821507,-0.4823432,0.028931051,-0.62418145,-0.07509009,-0.06920239,0.31480488,0.18853569,-0.048020296,0.10583472,0.49615654,0.47275084,-0.072544016,0.14074832,0.3146856,0.44442698,-0.17860472,0.3936933,-0.073626205,0.47669607,-0.40022984,-0.1908251,0.3479684,-0.43078694,0.23998941,-0.17315893,0.11520662,0.63626105,-0.39971337,-0.9267043,-0.53153867,0.1675481,0.9733075,-0.27390596,-0.52301604,0.12694225,-0.51193666,-0.34869453,-0.108641505,0.5501896,0.01573191,0.045207877,-0.7382002,-0.21550891,-0.10693837,0.20439278,0.015444815,-0.19945505,-0.48105577,0.75087154,-0.027007908,0.5545498,0.23136576,0.20013665,-0.30121157,-0.45700377,0.15925609,0.83653694,0.34093553,0.16616358,-0.32815623,-0.13205853,-0.41526383,0.09305449,0.22361673,0.70691663,0.6478257,-0.11620132,0.16544667,0.2973102,0.11846528,0.0010264824,-0.20652226,-0.32626957,-0.14005052,0.014004214,0.6291556,0.88557446,0.046982672,0.2863598,-0.003912053,0.41291884,-0.25431773,-0.54376894,0.42559725,1.0846791,-0.08791105,-0.40112755,0.6073035,0.48652723,-0.108585,0.45188555,-0.6777466,-0.5798555,0.32261685,-0.0840772,-0.3653985,0.2157522,-0.4668927,0.27888635,-0.77815735,0.32570806,-0.093408026,-0.56983215,-0.6687962,-0.26699293,-2.2663817,0.18768324,-0.12050552,-0.14482518,-0.025433153,-0.32648388,0.3543007,-0.63355505,-0.55966467,0.27785563,0.07850697,0.8246865,-0.10637235,0.05233897,-0.21784727,-0.4421723,-0.2203801,0.23146972,0.14739601,0.33479545,-0.03929001,-0.5139808,-0.002706298,-0.17367622,-0.30526406,-0.03860597,-0.3815897,-0.54977936,-0.21753515,-0.364021,-0.13325833,0.46128336,-0.39601496,0.052407224,-0.26058328,0.049581368,0.1124798,0.13390045,0.13898708,0.2524783,-0.12246609,0.030951725,0.14737631,-0.19837978,0.22863005,0.10980115,0.21052179,0.31075272,0.009311383,0.09193263,0.63057137,0.56549907,-0.22841112,0.997582,0.57285863,-0.009173967,0.23471521,-0.01894064,-0.47778484,-0.6717868,-0.1889348,0.16634174,-0.56748515,-0.29678705,0.022188922,-0.4412772,-0.9501315,0.4553256,0.08118425,0.30399483,-0.028662745,0.35030976,0.46362478,-0.2716883,-0.050389443,-0.028301239,-0.22825047,-0.576924,-0.49433678,-0.58351326,-0.32872328,-0.021546151,1.2135618,-0.3218378,-0.032165658,0.20647337,-0.20852146,0.21985236,0.3056313,0.015361643,0.044182647,0.66487354,-0.07330416,-0.60487205,0.39935666,-0.3276126,-0.13862972,-0.7897552,0.10114295,0.42674428,-0.6343924,0.48576736,0.32958004,0.04840518,-0.36763552,-0.6451555,-0.20423968,-0.07725768,-0.30135137,0.5260153,0.3660922,-0.75078285,0.39577428,0.075339116,-0.32837865,-0.6657893,0.5972509,-0.109191224,-0.25152826,-0.19647422,0.26056555,-0.078827925,0.07989155,-0.19987117,0.05128425,-0.35468554,0.22550821,0.30826902,-0.033199977,0.03045559,-0.3728716,-0.14140446,-0.7638608,0.019575652,-0.59994125,-0.2698753,0.30393368,-0.024741128,0.16590276,0.1639559,0.10212271,0.26747563,-0.43328005,0.18625522,-0.24744044,-0.31938633,0.4367061,0.458504,0.5645001,-0.47956318,0.6346877,0.008058356,-0.26129338,0.0143590765,0.0463232,0.2712567,0.034832884,0.45309454,0.06317418,-0.14476745,0.1345708,1.0409094,0.15866731,0.34121528,0.119976535,0.006075927,0.17606314,0.12677003,0.24290672,-0.04881421,-0.59269506,-0.21223143,-0.4559458,0.12268913,0.38031432,0.06226184,0.33315513,-0.072313026,-0.25236988,0.021119084,0.17627229,0.15636584,-1.4211547,0.20232372,0.22679749,0.81630605,0.38515133,0.08469465,-0.03601771,0.6032415,-0.11948967,0.10814888,0.21984462,0.015006934,-0.26647797,0.390312,-0.57933635,0.47756758,-0.117964424,-0.024159823,-0.15864809,-0.0047187083,0.58924276,0.9120975,-0.25481105,0.12274854,0.12766007,-0.3114317,0.22703089,-0.35257646,-0.020340877,-0.7426793,-0.37563255,0.8373093,0.5454674,0.6064722,-0.10905258,-0.060073785,0.07434196,-0.12799251,-0.021392746,-0.02642573,0.10801261,-0.19328375,-0.7494639,0.02303026,0.5778282,-0.06894032,-0.018647121,0.11123909,-0.21817435,0.28414157,-0.038458895,0.16117807,-0.05265857,-0.793811,-0.088562295,-0.41662994,-0.6326632,0.65713584,-0.12333636,0.24847999,0.39804262,0.05281685,-0.1670139,0.32565275,0.008584755,0.76360375,0.0803218,-0.110812984,-0.542134,0.2243575,0.1828941,-0.2596219,0.045107525,-0.2343812,0.42353323,-0.54276377,0.5926898,-0.13041915,-0.17283355,0.06165961,-0.14669248,0.012011269,0.6455277,-0.10271154,-0.09737504,0.11199536,-0.077888764,-0.33183223,-0.21216698,-0.2551886,0.25233504,-0.09568528,-0.11658184,-0.12279367,-0.020331552,0.022330487,0.22560653,0.14087658,0.3734569,0.45190972,0.08781497,-0.30010244,0.024385989,0.1106276,0.70056915,0.034240626,-0.30391103,-0.34092695,-0.674941,-0.454803,0.30098337,0.030979216,0.2423902,0.1176952,0.1785331,0.7342389,-0.04056246,1.0434793,0.021844791,-0.43357378,0.115465835,0.590172,-0.05277794,-0.04408403,-0.3344478,0.7653319,0.4192131,-0.055984788,-0.056683917,-0.34219098,0.19489741,0.1743498,-0.14743601,-0.16509959,-0.08603437,-0.7228275,-0.07351637,0.12595785,0.2878618,0.25358006,-0.12850952,0.2731838,0.32259855,0.09189411,0.12584446,-0.6806523,-0.1700323,0.35514817,0.19297767,-0.043225866,0.07181378,-0.42940018,0.35983396,-0.36604792,-0.2801755,-0.37688494,0.11910469,-0.033464063,-0.43087196,0.2520953,-0.006000783,0.35038525,-0.67801696,-0.092950486,-0.35461935,0.4825314,0.12266326,0.17178318,0.41941684,-0.14862238,0.005916191,0.16466045,0.49950585,0.9870418,-0.39173713,0.05773283,0.5100974,-0.35737464,-0.5153699,0.2623026,-0.54074186,0.19665082,-0.085756786,-0.36569384,-0.6263858,0.25335968,0.17064519,0.13413924,0.14571527,-0.75650203,-0.16079462,0.0906593,-0.3001657,-0.22551052,-0.32257876,-0.012332133,0.38490424,-0.15190561,-0.19877471,0.010298086,0.30724528,-0.08807467,-0.4747377,0.10423194,-0.32455763,0.3906193,-0.008294902,-0.25446677,-0.24357714,0.0011466166,-0.4932533,0.20007889,0.12455739,-0.26923832,0.027190868,-0.3823557,0.15509346,0.90156156,-0.27162316,0.121603474,-0.38076243,-0.493311,-0.9142311,-0.32257292,0.19692217,0.10415138,0.0045895004,-0.63514423,0.08526581,-0.15424375,-0.11080396,-0.1832948,-0.33147508,0.5780945,0.13102129,0.4164071,0.034385916,-0.86107236,0.19688967,0.012190791,-0.22860429,-0.34714645,0.54937017,-0.054626398,0.9125004,-0.019756619,0.10262574,0.21942234,-0.54125345,0.3900322,-0.26468077,-0.0016852234,-0.6591162,-0.053744316 +793,0.2612925,-0.3004743,-0.3780605,-0.104483925,-0.029050576,-0.040195886,-0.04161811,0.428784,0.12308241,-0.33488163,-0.17059883,-0.33696622,0.08463601,0.2000241,-0.12082373,-0.47130612,-0.24494277,-0.033995155,-0.44429412,0.5980798,-0.3489613,0.07920973,-0.029523104,0.3418534,0.19974183,0.3304189,0.0053112092,-0.14168976,-0.029541254,-0.21180776,-0.12434174,0.18808174,-0.66908497,0.0718403,-0.022264259,-0.11823415,0.00659883,-0.57059985,-0.55588275,-0.5932993,0.3828315,-0.9051039,0.4631845,0.13660023,-0.03952124,0.4634969,0.025139295,0.2908734,-0.345013,-0.06550128,0.18423972,-0.07250709,0.1177429,-0.19928718,-0.103329025,-0.15336484,-0.49370462,-0.041195825,-0.26413736,-0.4743119,-0.3246413,0.06416187,-0.40012103,-0.0945673,-0.13715698,0.5194807,-0.41676757,0.17182356,0.21488388,-0.14320746,0.39551023,-0.5916017,-0.21623626,-0.08769398,0.22478434,-0.21409567,-0.13992788,0.21564916,0.23581603,0.16225466,-0.080703735,-0.051800225,-0.2192011,-0.14607516,0.2890119,0.43945152,-0.18665045,-0.4231933,0.071293384,0.18032596,-0.23795591,0.22329752,0.10293133,-0.35766172,-0.24691504,0.032443002,-0.18700527,0.30282027,0.40684965,-0.15991277,-0.25855872,0.38420922,0.41034713,0.28953466,-0.061169066,-0.17473856,0.044377122,-0.5365407,-0.10514261,0.037261274,-0.28442395,0.5118586,-0.080178335,0.21804234,0.6818483,-0.14201106,0.06768811,-0.03231559,0.03796267,0.023442177,-0.39771622,-0.196819,0.19196709,-0.25063026,0.27106392,-0.016550424,0.6832174,0.17210634,-0.6027968,0.34062195,-0.5855776,0.19347073,-0.11151978,0.48821023,0.51387507,0.37860093,0.49002832,0.58610255,-0.46892774,0.105029896,0.0060780644,-0.42450854,0.06028563,-0.07426173,-0.12476078,-0.4581414,-0.12001885,-0.010145233,-0.13128726,0.11743914,0.16273928,-0.42887035,0.06851025,0.24466673,0.9747601,-0.21207438,0.018812578,0.5815088,0.9368147,0.867843,0.074288085,0.94054157,0.09516309,-0.26804832,0.3098496,-0.27675942,-0.81889397,0.24754895,0.40920323,-0.11309944,0.11939899,0.16311537,-0.005752059,0.22118014,-0.37133318,0.11460066,-0.2545163,0.14200065,0.29079315,-0.19659552,-0.37577146,-0.15712231,-0.22353598,-0.01857585,-0.14068134,0.012049451,-0.10911242,0.30392203,0.013312464,1.7547338,0.021167208,0.16928083,0.102274254,0.38762915,0.14558369,-0.057524838,-0.08458662,0.5245521,0.45049766,0.31160703,-0.6412927,0.26892757,-0.14965881,-0.31418616,-0.080222055,-0.40146822,0.044863723,0.03810531,-0.3224193,-0.09162081,-0.13218667,-0.19761041,0.40840164,-3.1604452,-0.04997174,-0.13967687,0.34598795,-0.2516114,-0.21755911,-0.00899313,-0.37422392,0.44556063,0.36513966,0.5222215,-0.5940961,0.19186133,0.40247154,-0.45622107,-0.16454765,-0.5320715,-0.16058579,0.07972579,0.42436355,0.025424829,0.16452636,0.059927013,0.094705835,0.36795026,0.004296156,0.049511578,0.22140357,0.4720341,0.04634089,0.6622001,-0.08129129,0.4225101,-0.10730395,-0.11738073,0.1914575,-0.17187275,0.30308962,-0.03284258,0.113376126,0.38633382,-0.359734,-0.7625393,-0.54881,-0.37099215,1.1849355,-0.32997125,-0.3126256,0.3473655,-0.28062293,-0.25259152,-0.16631392,0.38541287,-0.110478885,-0.0852762,-0.7875419,0.017860197,-0.10432946,0.27126202,0.0130402185,-0.16740161,-0.46359092,0.63703704,0.021743318,0.46736023,0.46805507,0.048285425,-0.20433642,-0.44973865,-0.07199193,0.7736474,0.29877248,0.11854447,-0.20960191,-0.1751175,-0.16451451,-0.027617987,0.09107339,0.51734173,0.5507794,-0.05507634,0.1729206,0.2694592,-0.0023668546,0.015988262,-0.15484905,-0.20113407,-0.097884424,-0.18857478,0.43442598,0.586844,-0.14602445,0.38728574,0.008243795,0.28159603,0.09485049,-0.32825544,0.3684311,1.0495436,0.003768499,-0.2277299,0.43345514,0.48380595,-0.2797193,0.26781872,-0.32202017,0.007298758,0.6912431,-0.26377475,-0.5579906,0.39770615,-0.24157262,0.00486704,-0.83566993,0.2955085,-0.19006616,-0.52145076,-0.6442748,-0.13476992,-3.6586206,0.119415,-0.36617753,-0.3582896,-0.12513843,-0.13335837,0.117525905,-0.58817136,-0.5328439,0.19978389,0.1041952,0.5169933,-0.1481747,0.13731557,-0.25534174,-0.017099926,-0.19215035,0.16798598,0.19295636,0.2227148,-0.041009232,-0.3799427,-0.22079875,-0.026954876,-0.46359614,0.13045731,-0.5005751,-0.32901156,-0.07995362,-0.56962556,-0.28705272,0.63451993,-0.21545385,-0.07280523,-0.11109035,0.056046642,-0.15985925,0.20794685,0.21647933,0.29766214,-0.09742455,0.008063988,0.042896233,-0.32815382,0.41644093,0.13220051,0.29245698,0.19739944,-0.07102074,0.18671156,0.27314714,0.51227033,-0.053954855,0.6629482,0.4891106,-0.1565412,0.17580599,-0.40413892,-0.3230829,-0.5479446,-0.30563626,0.096681915,-0.29821345,-0.5380614,-0.09229236,-0.32864243,-0.6578871,0.48057446,-0.015006075,0.012092984,0.012517883,0.237804,0.5656701,-0.10903972,0.008202901,0.07757068,-0.0778106,-0.61278325,-0.10754328,-0.4997401,-0.40279862,0.1576828,0.65474063,-0.21858412,0.0122640915,-0.07925717,-0.3840437,-0.033109125,0.050218936,-0.17500421,0.3706781,0.44183797,0.08965463,-0.5714644,0.5940432,-0.102587104,-0.29748142,-0.67118794,0.20106865,0.53327554,-0.6255239,0.67360216,0.23109637,-0.08116167,-0.1527256,-0.40336528,-0.3191343,-0.17691554,-0.1399782,0.19618633,0.061798472,-0.599268,0.33546337,0.3809052,-0.24636687,-0.665797,0.52195936,-0.058946483,-0.45724905,0.1842699,0.23285219,-0.036493316,0.029500447,-0.011633782,0.33434945,-0.26856154,0.14901859,0.20780791,-0.059667394,0.16044536,-0.009839837,-0.065733396,-0.7449655,0.22359775,-0.3403913,-0.26568353,0.41914865,0.1519709,0.13696197,0.09001584,0.055763815,0.36168385,-0.14419152,0.16142409,0.004054292,-0.20464896,0.26354328,0.3470278,0.35022166,-0.5110299,0.5162172,-0.02259039,-0.06896522,0.107026294,0.17957598,0.3563766,-0.029391233,0.27417448,-0.009171688,-0.1300188,0.23809136,0.69346356,0.16795278,0.5739776,0.036755506,0.06084367,0.42933792,0.053684626,0.18289599,0.0526941,-0.6118777,0.18837279,-0.15405777,0.10933757,0.36416215,0.16917625,0.20233907,-0.16311875,-0.3796961,-0.006657853,0.4781712,0.29406914,-0.85002553,0.35164642,0.17339411,0.7675564,0.4588577,0.061798133,0.079960495,0.67158043,-0.095829114,0.0528094,0.29494917,-0.010432798,-0.6389439,0.44208738,-0.6540124,0.41709563,0.07315372,-0.08779511,0.0067724036,-0.058832135,0.3447054,0.64349186,-0.23576975,-0.06730027,0.07517986,-0.23136953,0.16954415,-0.48581484,0.15837945,-0.36769882,-0.34497517,0.44782373,0.6282224,0.20369527,-0.073387936,0.0061790487,0.03765682,-0.16427715,0.14236364,0.10350147,0.014916379,0.06827012,-0.8275318,-0.16773823,0.45530114,-0.18116735,0.19073106,-0.13752328,-0.120237656,0.34277508,-0.20455424,-0.17468296,-0.056465857,-0.69077295,0.26286498,-0.2643128,-0.49651334,0.2618343,-0.084637366,0.38333,0.14023295,-0.041730396,-0.133948,0.38278472,0.04164412,0.9120649,-0.12930363,-0.13152288,-0.54534185,0.104348145,0.0853566,-0.10862308,-0.009381115,-0.35706207,-0.0034765233,-0.4683615,0.47344765,0.09618558,-0.2841313,-0.10402071,-0.22748241,-0.015276512,0.58634675,-0.07758518,-0.061836455,-0.1736169,-0.3043799,-0.23142369,-0.069429144,-0.05284054,0.2889733,0.28468663,0.09079779,-0.039053857,0.017976325,-0.25739977,0.475798,0.049840245,0.5900069,0.17265862,0.06018017,-0.14684899,-0.39176434,0.08126342,0.45707446,0.0061378023,-0.11946269,-0.09286886,-0.4475556,-0.28063905,0.17512967,-0.11140398,0.5313688,0.023643076,-0.17955428,0.58133096,-0.1410423,1.0117817,-0.024782836,-0.32386,0.13798054,0.5799787,0.042577166,-0.14192985,-0.28405386,0.83485794,0.59178674,0.026926251,-0.09700576,-0.23545696,-0.042219102,0.0755416,-0.14856964,-0.13037676,0.013722376,-0.43547207,-0.16486028,0.08635083,0.19521922,0.33952382,-0.08278788,-0.026918415,0.13115685,-0.06724044,0.20963243,-0.31064174,-0.19119644,0.22531915,-0.012597712,0.03718153,0.0058748964,-0.49396974,0.48126903,-0.2426599,0.10223205,-0.3027508,0.18530765,-0.17145556,-0.16431767,0.16829467,-0.13896227,0.45111534,-0.4085844,-0.24016167,-0.2423582,0.3952827,0.193065,0.1714329,0.60623467,-0.19516698,0.18675733,0.020044757,0.5813874,0.7590392,-0.2711453,-0.0405983,0.37503004,-0.4351473,-0.4815219,0.33906958,-0.20944333,0.22802247,0.007259587,-0.06301709,-0.48600012,0.20294847,0.10950764,-0.0022161007,-0.03825494,-0.5792344,-0.3310327,0.21178213,-0.3443808,-0.18214332,-0.39857382,0.16553608,0.731439,-0.30580643,-0.23362753,0.0708887,-0.02864614,-0.13952118,-0.30935323,-0.0663803,-0.29452732,0.25918356,0.021384465,-0.28896523,-0.14413717,0.021914758,-0.27968615,0.23653929,-0.10116168,-0.3465369,0.0206543,-0.05342799,-0.2116083,0.96798503,-0.32031456,0.01964135,-0.60490423,-0.4543576,-0.6699246,-0.33164537,0.7392005,-0.13573964,0.07205625,-0.51714957,0.022595946,0.012261345,-0.14490546,-0.27329424,-0.29061657,0.46115282,-0.006180259,0.44030303,-0.21191362,-0.666061,0.28414363,0.07521879,-0.15549403,-0.74759126,0.5535939,-0.024330208,0.50329727,-0.0049123904,0.14653526,0.28863943,-0.32628188,-0.31032243,-0.25919583,-0.32582605,-0.6322652,0.1214982 +794,0.3943848,-0.075661555,-0.31394693,-0.11549943,-0.2104052,0.029265484,-0.040196445,0.47963363,0.2718353,-0.34441897,-0.018977718,-0.22953394,-0.0129863005,0.34718508,-0.1727217,-0.40141827,0.08673942,0.09827705,-0.37685043,0.45595106,-0.46622306,0.27376273,0.060022585,0.41663414,0.050473668,0.16822791,0.2620592,-0.14109941,-0.07230126,-0.20161486,-0.18752098,0.11142201,-0.29434922,0.09620006,-0.086420886,-0.35306817,0.05339257,-0.46183172,-0.23404782,-0.70269126,0.3649211,-0.61599505,0.4115315,0.14966525,-0.27101314,0.35064584,0.20601474,0.25451308,-0.14296076,-0.11519536,0.14393617,-0.03447777,0.028618727,-0.1561593,-0.18943235,-0.2686675,-0.46937233,0.0536365,-0.3559524,-0.21682642,-0.27042666,0.15158708,-0.26216573,-0.12766072,-0.006483163,0.5481164,-0.35580257,0.037408773,0.14565839,-0.20792672,0.3170618,-0.4240625,-0.19579104,-0.03084812,0.18520157,0.0058594174,-0.1570957,0.22265598,0.30123493,0.48946592,-0.17307116,-0.092338376,-0.39984432,-0.08543644,-0.060608957,0.6140519,-0.19563568,-0.53746617,-0.05322531,-0.084372945,-0.035240848,0.15813576,0.14813401,-0.21122113,-0.1604419,-0.065673895,-0.3035639,0.35588712,0.36968246,-0.41148618,-0.24472547,0.2936325,0.44297233,0.0604732,-0.13335893,-0.06475308,0.078460954,-0.5715175,-0.0892192,-0.05396344,-0.25004286,0.43300152,-0.17544007,0.44706184,0.63609254,-0.044235785,-0.07075335,0.16347568,0.0846426,-0.0625069,-0.20576112,-0.1862749,0.23234548,-0.41663882,0.028266728,-0.18130676,0.85660183,0.07162015,-0.72389126,0.40255246,-0.46397564,0.10885346,-0.13651182,0.41357726,0.61202174,0.2596251,0.33590665,0.676061,-0.4531974,-0.042863376,-0.04261067,-0.28965324,0.029511413,-0.044698834,0.089715295,-0.49731636,0.0003234148,0.14995345,0.014063435,0.19725738,0.18127096,-0.48099712,-0.0715787,0.3268898,0.8698268,-0.185095,-0.08207505,0.6200748,0.97688115,0.84389085,-0.03732517,0.7560269,0.11694968,-0.1643958,0.3191655,-0.3324133,-0.5277799,0.26397377,0.32722092,0.2719726,0.034952324,-0.04950159,0.0014024632,0.36771232,-0.2800017,0.023143062,-0.13802065,0.06413395,0.3245562,-0.13299909,-0.38315317,-0.42137548,-0.03989774,-0.004112584,0.105988406,0.23814045,-0.2866478,0.26360133,-0.14434111,1.6088047,0.037491255,0.13218017,0.13665105,0.62191284,0.18832915,-0.018371332,-0.09063117,0.25227922,0.2241977,0.07693737,-0.5136828,0.132886,-0.20407331,-0.5651793,0.00706657,-0.31022057,-0.1649972,0.055541765,-0.4816101,-0.110173285,-0.095078364,-0.40172395,0.551752,-3.098613,-0.21615745,-0.0055507272,0.22011276,-0.24663387,-0.18789856,-0.17122276,-0.4300792,0.34758124,0.44583383,0.4813641,-0.67431027,0.27617565,0.44431728,-0.4710957,-0.13187973,-0.556254,-0.10532357,-0.09429581,0.18386401,0.17198303,-0.002838056,-0.082188435,0.23053493,0.58941686,0.09813773,0.08965169,0.23253112,0.2537065,-0.023660276,0.38241106,-0.047306087,0.39382505,-0.35230985,-0.15424602,0.21170232,-0.4592987,0.07842906,-0.1669322,0.12478089,0.42099732,-0.39266843,-0.9385342,-0.60456276,-0.10033246,1.1681968,-0.056958675,-0.34101042,0.36195427,-0.24914496,-0.14069273,-0.06829593,0.5664844,-0.04917379,-0.05315555,-0.65448374,0.13413377,-0.0987523,0.16759412,-0.0042617777,-0.16175464,-0.3419726,0.70015174,-0.04957372,0.4672921,0.31317848,0.12169839,-0.42257574,-0.3351957,-4.1921223e-05,0.6408539,0.2758973,0.18375464,-0.1325859,-0.060818274,-0.40076664,-0.011429416,0.053754605,0.43025154,0.61013573,0.0033132222,0.118063495,0.26616284,-0.015524566,0.0018703894,-0.0972694,-0.20790277,-0.026857296,0.0111859385,0.5381519,0.63170254,-0.17080142,0.30080628,-0.056922354,0.28097725,-0.34949926,-0.3844954,0.5577551,0.61947125,-0.12683132,-0.22718604,0.59006685,0.40010232,-0.21775453,0.29279107,-0.55727863,-0.32492894,0.43095022,-0.16408578,-0.4362421,0.04817995,-0.29584584,0.10168517,-0.7021025,0.2594247,-0.16936652,-0.36590648,-0.43335444,-0.0991691,-3.642319,0.24521582,-0.20765492,-0.19918837,-0.033410754,-0.04324208,0.053476878,-0.51765645,-0.4362065,0.041316193,0.14861374,0.6953045,0.009230288,0.114709,-0.20259826,-0.25533316,-0.28173342,0.104266,-0.11485378,0.35505685,0.1462696,-0.35664257,-0.029259602,-0.1629843,-0.4683923,0.095234476,-0.52579784,-0.38872358,-0.112360306,-0.4380024,-0.3663734,0.5932728,-0.38267472,0.1356927,-0.27107129,-0.050546475,-0.09455078,0.44165295,0.20711836,-0.027057394,-0.086253405,-0.054496985,3.786385e-05,-0.16159037,0.25968677,0.009868233,0.21699236,0.42252937,0.028215805,0.15506402,0.54031575,0.58881253,-0.086928196,0.82130563,0.3038366,-0.07511777,0.25855628,-0.25682458,-0.15664218,-0.32548282,-0.20204616,0.053822864,-0.28614178,-0.41260883,-0.038722724,-0.31715065,-0.6784882,0.44895414,0.006765952,0.122316994,-0.0570043,0.22792159,0.45636687,-0.30599812,0.034406953,-0.005416649,-0.03899457,-0.5096431,-0.3102667,-0.5748147,-0.34128568,0.13360159,0.8217602,-0.19453064,0.077601574,0.027097987,-0.08208938,-0.1099785,0.052883502,0.0660665,0.16303699,0.248752,-0.24576737,-0.59480506,0.4723261,-0.20555861,-0.16638903,-0.42952982,0.13400266,0.5167946,-0.50526893,0.4638125,0.2818085,0.14286351,-0.19785678,-0.4861989,-0.23909487,-0.00070455245,-0.22289072,0.29686812,0.14983037,-0.7519681,0.39046416,0.32649544,-0.140677,-0.66437244,0.33127072,-0.02928311,-0.5369881,-0.17559573,0.25963244,0.27476358,0.07439295,-0.075333044,0.1521004,-0.49589697,0.12084186,0.07315935,0.015583977,0.45284867,-0.2546487,-0.14441206,-0.5986094,-0.12919591,-0.40817195,-0.27552307,0.12420569,0.19859235,0.13892889,0.32066685,-0.10561466,0.24492535,-0.2730877,0.09445041,-0.056721736,0.02681051,0.3440707,0.38029233,0.5068343,-0.41470376,0.636984,-0.050854106,-0.07884868,-0.04582824,-0.0725851,0.33986703,0.07281488,0.4263428,-0.22211833,-0.28687,0.35328746,0.66129386,0.17321506,0.32071003,0.00043603778,-0.078588195,0.27736303,0.014898293,0.10024665,-0.043218702,-0.42875388,-0.04237338,-0.34866244,0.1583979,0.43334523,0.07095319,0.24759957,0.051391516,-0.29940215,0.10190316,0.16502444,-0.11901432,-1.1072206,0.41561314,0.1669759,0.8038503,0.5157138,-0.053165358,0.024255501,0.8479185,-0.12463276,0.21003577,0.2072152,-0.02059418,-0.53743196,0.6787041,-0.6272119,0.46560726,-0.094859995,-0.069583386,-0.051720712,-0.06325381,0.34532136,0.47617748,-0.07845022,0.04537922,0.06030794,-0.36937648,0.11052386,-0.32170707,0.20739324,-0.6345092,-0.20121157,0.5438443,0.4890303,0.2011524,-0.22612718,0.023618756,0.02285355,0.037181694,-0.031248672,-0.11975794,0.093279906,-0.1532962,-0.67620575,-0.04257426,0.552826,0.03716026,0.17322595,-0.015642107,-0.15719365,0.18207777,-0.16451423,-0.11145481,-0.10515077,-0.5375486,0.02983648,-0.20655538,-0.4266723,0.47684377,-0.21981654,0.36832073,0.123856656,0.041626785,-0.2371142,0.30366114,0.13940266,0.46586213,0.01587786,0.07486869,-0.24100105,0.11440692,-0.017424421,-0.21103773,-0.23514833,-0.27663484,-0.033989597,-0.4519351,0.34251496,0.03601765,-0.2091786,0.027403219,-0.12286501,0.098309316,0.5809794,-0.012578837,-0.108033605,-0.1859916,-0.23913105,-0.24545571,-0.04864051,-0.09350791,0.37114885,0.04028431,-0.13916834,-0.055116635,-0.15456775,-0.18040256,0.3928414,-0.084133364,0.3313742,0.23720257,0.10520983,-0.30729872,-0.018323822,-0.021868851,0.42522594,0.007477671,-0.116127275,-0.2734193,-0.32360655,-0.2828782,0.14462626,-0.09251416,0.27145562,0.13790396,-0.1780219,0.78123146,0.045471344,1.0071462,0.029358605,-0.2264845,0.05365092,0.3139383,0.041621305,-0.016709464,-0.29560876,0.7380596,0.4538097,-0.10963211,-0.15139784,-0.20351478,0.12310589,0.23545375,-0.17644887,-0.17467014,0.056430068,-0.6178303,-0.221025,0.20016594,0.19591291,0.25553873,-0.14287536,-0.06486074,0.2470536,-0.014778295,0.39095837,-0.41514298,-0.10144241,0.2869031,0.41603425,0.0818795,0.091846004,-0.38965273,0.40356913,-0.54228556,0.057733234,-0.346279,0.20859767,-0.34777233,-0.22733645,0.16228984,0.170045,0.36679772,-0.13399622,-0.3529909,-0.18720962,0.44178706,0.23852985,0.09546037,0.40574726,-0.15971112,-0.1193004,0.0566527,0.5092173,1.0019741,-0.29315105,-0.13329752,0.35667023,-0.20741044,-0.6448316,0.28941864,-0.26812765,0.13205849,0.063675635,-0.09900997,-0.4487365,0.31367776,0.28456205,0.16105373,-0.032795098,-0.45888704,-0.32220456,0.36564854,-0.2502659,-0.22562933,-0.33935574,0.10854819,0.49532455,-0.11022605,-0.19740532,-0.0025135023,0.373931,-0.23549278,-0.5683722,0.18811755,-0.34864935,0.35481718,0.18297611,-0.29337624,-0.23413499,0.06862808,-0.530345,0.15096545,0.106174305,-0.28439608,0.13354768,-0.35874945,0.031990346,0.8663401,-0.101877026,0.24846375,-0.45463568,-0.39696822,-0.8414776,-0.3093259,0.59162056,0.024583116,-0.036267273,-0.57198876,-0.09989377,0.0011571987,-0.21274118,-0.12120167,-0.25587264,0.38118312,0.071168706,0.29852238,0.040630687,-0.5762995,0.0665984,-0.029085595,-0.1968204,-0.48148608,0.35623506,0.08509113,0.8791257,0.062267993,0.015551686,0.37983724,-0.31139827,0.034248747,-0.19207093,-0.24041693,-0.5660847,0.15625156 +795,0.25804704,0.18375205,-0.61238045,-0.048184726,-0.22579108,0.09379627,-0.25830474,0.37647682,0.31153706,-0.36594114,0.20861535,-0.16284975,-0.08170707,0.2048539,-0.14794643,-0.38361424,0.11772569,0.19699161,-0.34009764,0.5388423,-0.37194154,0.24481368,0.19944046,0.32592422,-0.16109465,0.089221835,0.080787025,-0.21702139,-0.17086084,-0.40153164,0.011862227,0.09634183,-0.6315025,0.08654975,-0.33636945,-0.13666034,0.20014443,-0.5059008,-0.29831147,-0.7087711,0.14011966,-0.64662164,0.67659885,0.043622762,-0.32234785,0.40222624,0.23022914,0.16175935,0.060785897,0.07282738,0.3566952,-0.46780038,-0.3498452,-0.2749517,-0.18618187,-0.36040905,-0.49462208,-0.1725215,-0.49775288,-0.122046575,-0.3847703,0.21156332,-0.3712396,-0.099641,-0.20368405,0.35736153,-0.30590242,0.2781971,-0.09549354,-0.29792503,0.29208705,-0.6023854,-0.08089999,0.11579657,0.17156795,0.040685125,-0.19636394,0.25617164,0.13150509,0.3740601,-0.16948555,-0.18462166,-0.22227128,-0.028070148,-0.039671797,0.6471879,-0.31248918,-0.13182941,-0.10224606,0.007008461,0.28251323,0.28949302,-0.20684126,-0.16333118,-0.016397651,0.010297273,-0.33161178,0.44428185,0.5010682,-0.15033697,0.106587596,0.3713221,0.12310854,0.36057588,-0.06848506,-0.014486213,-0.16116036,-0.48201078,-0.06787061,0.03889374,-0.030077858,0.40252998,0.054116454,0.34985605,0.6529316,-0.11200071,-0.1065368,-0.012491842,0.21841688,0.32227793,-0.12480136,-0.14483438,0.3759794,-0.59986305,0.16558209,-0.21674332,0.5898584,-0.22277525,-0.68157446,0.26597264,-0.42787367,0.021628339,-0.053932764,0.55391955,0.637737,0.8187346,0.081800155,0.87478626,-0.48581335,0.13412525,-0.14545593,-0.32211375,0.30720732,0.043189492,0.38933375,-0.39739186,-0.028922996,0.08917611,-0.16883005,-0.014785303,0.40743,-0.4448596,-0.15128973,0.1524491,0.82019347,-0.2547466,0.078983195,0.60345894,1.0296732,0.6823243,0.10125642,0.850484,0.13900958,-0.048466653,-0.13720696,0.084714904,-0.7878814,0.2280319,0.27178988,0.21278028,0.057544358,0.21475472,-0.17161763,0.27643606,-0.27020907,-0.448925,-0.094552435,0.4143137,0.0023947316,-0.055020917,-0.40855008,-0.3489025,0.0982586,0.15081933,0.29311207,0.15998194,-0.23338784,0.2893987,-0.024370287,1.3357402,0.012854372,0.13544852,0.15861486,0.30334815,0.22512658,0.14899799,-0.10989874,0.38815212,0.20880279,0.136143,-0.40275973,0.031797577,-0.100334525,-0.4994118,-0.016108867,-0.26731828,-0.14253572,-0.19518168,-0.3306151,-0.1540428,-0.11506103,-0.4045436,0.36328813,-2.879739,-0.08378373,0.04797232,0.43358773,-0.06064767,-0.25625253,-0.11565709,-0.29508573,0.61536986,0.2712778,0.5368199,-0.42048174,0.2684246,0.4297245,-0.53263795,-0.29706553,-0.56377584,-0.043940306,-0.013829662,0.3441573,0.009780535,-0.34408256,-0.14023645,0.051485043,0.5163508,-0.042665046,0.10857566,0.3428812,0.4646091,-0.10900546,0.42338377,-0.2594529,0.46685305,-0.21407714,-0.085914716,0.18042995,-0.22413948,0.2138222,-0.46864662,0.12614672,0.4817929,-0.22682588,-0.7290756,-0.17587028,0.12704906,1.2709887,-0.27620187,-0.5899369,0.21521063,-0.22937812,-0.25855544,0.16932432,0.61444175,-0.083118275,0.06404734,-0.5513846,0.03283661,-0.084475674,0.275123,-0.025890654,0.12529527,-0.5245933,0.50566775,-0.016498659,0.5994794,0.3997003,0.23164037,-0.18747197,-0.24054167,0.10519772,0.69764197,0.3205907,0.093936324,-0.15717152,0.05986579,-0.09090512,-0.20592722,0.022833297,0.6150188,0.6094078,-0.048832476,0.058940947,0.23109804,-0.21788792,-0.025437113,-0.180635,-0.39439657,-0.14301287,-0.107945316,0.45157126,0.65592223,0.11711564,0.42606488,0.06628927,0.20767032,-0.1703849,-0.42353302,0.35112217,0.5428077,-0.23540927,-0.058377713,0.60445726,0.37101963,-0.05821493,0.38829723,-0.55180424,-0.51213175,0.48864564,-0.110505514,-0.6038051,0.29415473,-0.27472374,-0.022912553,-0.6873378,0.18744092,-0.28342932,-0.68779784,-0.5014987,-0.09616019,-3.0052855,0.1055754,-0.28864264,-0.19703965,-0.20240262,-0.12861319,0.18183951,-0.28104106,-0.4560365,0.12838934,0.23680057,0.59539706,-0.16330864,0.05594639,-0.31068322,-0.32799625,-0.11459057,0.2006912,0.045687653,0.110329404,-0.030264948,-0.26008478,-0.143338,-0.12568362,-0.29749945,0.059162933,-0.43742758,-0.2001278,-0.0004217827,-0.41109702,-0.25244087,0.64619356,-0.41844335,-0.025744174,-0.23656188,0.15838686,0.22526683,0.2298418,-0.023234142,0.1537354,0.042850792,-0.07091941,0.074526675,-0.17500547,0.30401808,0.105784826,0.3275518,0.3881107,-0.063273,-0.03077461,0.5049867,0.44475526,-0.07309,0.92735547,0.15646707,-0.019939993,0.2675294,-0.25937322,-0.10886313,-0.47935343,-0.20370086,-0.04799989,-0.33726594,-0.23978105,0.014028736,-0.29181,-0.84024566,0.6289135,0.15736273,-0.07607595,-0.06378708,0.427928,0.4265651,-0.26117155,-0.07356799,-0.053359788,-0.15110552,-0.34494677,-0.16694771,-0.7946177,-0.37852287,-0.18038759,0.83784896,-0.24941316,0.012099688,0.16481106,-0.14700767,0.008484493,0.066634946,0.15108185,0.08555757,0.22736827,0.20432003,-0.752299,0.47379735,-0.35065144,0.019435091,-0.7005523,0.1837662,0.5928556,-0.6923837,0.3122962,0.6095872,0.11085602,-0.23505309,-0.6641827,-0.13421433,0.12710425,-0.23169778,0.2976211,0.077858284,-0.85671407,0.5733576,0.22028854,-0.3038072,-0.7190699,0.3556711,0.008241273,-0.37833923,0.00820443,0.3480087,0.21817777,0.04115658,-0.16498844,0.1907023,-0.3926371,0.53220385,-0.010511756,-0.13546577,0.5498101,-0.11943947,-0.11473997,-0.73070914,-0.025048127,-0.42510763,-0.33296958,0.3186648,0.013096692,0.058673028,0.18634664,0.13962415,0.33717328,-0.4545279,0.05353229,-0.38857314,-0.31521183,0.4852452,0.63215256,0.44437405,-0.32344607,0.59638083,-0.078975014,-0.13270536,0.07636043,0.0656923,0.4157808,0.036169592,0.32273182,-0.11027513,-0.2646722,0.0965459,0.7624522,0.1023407,0.28848404,0.06595634,-0.059107143,0.38294956,-0.011175781,0.1072575,-0.09255916,-0.5770299,-0.10420636,-0.31886545,0.055941846,0.43953663,0.29840443,0.36598715,-0.010642439,-0.12692142,-0.012243445,0.12067743,0.123463646,-0.76106316,0.57528347,0.2409025,0.63972515,0.4452502,0.06751635,0.07537572,0.7276038,-0.039698355,0.033999283,0.18385716,0.04189114,-0.19972023,0.5046132,-0.6684181,0.25492102,-0.07872987,-0.046950005,0.32043788,0.038412947,0.4654273,0.8427057,-0.17556801,0.0743499,-0.072195105,-0.2774065,-0.063783534,-0.17665324,-0.016923467,-0.34026745,-0.42997402,0.70175236,0.33315626,0.24786462,-0.2752393,-0.047785062,0.24885897,-0.10259073,0.2236164,0.11192957,-0.08210679,-0.03374247,-0.5467205,-0.15959,0.47194427,0.15525678,0.08114047,-0.016725043,0.09665977,0.39011267,-0.2087187,-0.14117137,-0.043245245,-0.4664268,0.15499756,-0.40410858,-0.4450477,0.36510995,-0.12751558,0.32357913,-0.0057795444,0.043565784,-0.031567056,0.31998846,0.23673066,0.6755365,0.018026872,-0.33171263,-0.15285002,-0.14237776,0.06355189,-0.22905938,-0.12279214,-0.109590285,0.034293916,-0.6122127,0.27108118,-0.54828554,-0.13848259,0.19209497,-0.19613968,-0.012569906,0.33881754,0.010498515,0.010850315,-0.04384309,-0.3047952,-0.24835308,-0.36354217,-0.38395062,-0.0009525589,-0.1023646,-0.1967783,-0.1601734,-0.02833524,-0.20963581,0.35789734,0.023475531,0.122201525,0.23585963,0.32660434,-0.2310033,-0.030319622,0.080072634,0.6495784,-0.03779947,0.050232615,-0.3219847,-0.2508811,-0.35907888,0.049299307,-0.12734896,0.20455739,0.14485586,-0.19999687,0.8920859,-0.07330114,0.7097691,-0.08471084,-0.33810112,0.0989302,0.5127123,-0.06594594,-0.049475845,-0.3220031,0.88819027,0.5164123,-0.04794664,0.050715547,-0.37076044,-0.022787081,0.3390492,-0.3239523,-0.2002467,-0.10369728,-0.5315135,-0.3145556,0.20174982,0.16660585,0.017332157,-0.19771716,-0.072385974,0.31026343,0.28447118,0.16370371,-0.5128115,-0.031181008,0.40188858,0.22240429,-0.012504228,0.12927999,-0.35186937,0.36509532,-0.47132906,0.13075118,-0.393866,-0.028765019,-0.12204211,-0.065560445,0.16896427,0.08943052,0.2827699,-0.2494118,-0.34453267,-0.07876439,0.16536011,0.24984208,0.21563654,0.46828693,-0.2566144,-0.29405928,-0.13838102,0.5881354,0.90504324,-0.34335133,0.11453043,0.5364448,-0.37613842,-0.5321066,0.07685827,-0.36333615,-0.020544622,0.022135973,-0.30479088,-0.23254299,0.16198006,0.06336071,-0.13840453,-0.18451118,-0.4931539,0.002680523,0.21462862,-0.14488801,-0.2514426,-0.23413923,0.12767425,0.80365,-0.24846628,-0.13548836,-0.043305654,0.31673828,-0.19100149,-0.53589994,0.2055156,-0.50409317,0.21691366,0.019604325,-0.30866736,-0.091843195,0.01596232,-0.63739204,0.068208985,0.058725126,-0.27715755,-0.09571355,-0.30756623,0.19873294,0.6712891,-0.1819711,0.16512842,-0.3609118,-0.5028153,-0.65679073,-0.18063787,0.074448004,0.18634382,-0.023575336,-0.44175383,-0.03679871,-0.22062485,-0.20355244,-0.264928,-0.47812027,0.34410483,0.10856589,0.3575016,-0.34165603,-0.9382868,0.21056321,0.033484083,-0.32803035,-0.34803215,0.3399763,-0.085042015,0.67661905,0.016123964,0.04892545,0.21967462,-0.59130573,0.24879,-0.37324095,-0.18573438,-0.64938277,0.12411226 +796,0.24468338,-0.15643705,-0.5126499,-0.14078392,-0.32228133,0.15812752,-0.16043136,0.2982214,0.1641237,-0.30314705,-0.19443662,-0.17430958,0.066703886,0.5130237,-0.13886823,-0.57073736,-0.12269125,0.09603318,-0.7556391,0.39031982,-0.5843498,0.28363183,0.12536731,0.29818648,0.1863581,0.4223796,0.36461163,-0.323728,-0.29660267,0.05471142,-0.23427786,0.028461793,-0.42056045,0.1376186,-0.11920613,-0.22948392,0.13964246,-0.47246197,-0.14057375,-0.6069217,0.13195479,-0.8123375,0.28685868,-0.08291559,-0.06928355,-0.019445566,0.16064887,0.34920686,-0.39678442,-0.0075515755,0.2418039,-0.11654326,-0.094901994,-0.16616826,-0.1351895,-0.39032826,-0.36508578,-0.03152839,-0.51093256,-0.44673607,-0.16379885,0.17695948,-0.3025327,0.17845547,-0.14101788,0.18641631,-0.420157,0.004051741,0.24324757,-0.1808635,0.026891403,-0.4808358,0.052693017,-0.08511874,0.43792623,-0.09160257,-0.027510252,0.42401764,0.23796679,0.4028138,0.20581996,-0.27773044,-0.2451297,-0.15918745,0.26235798,0.4329361,-0.10078273,-0.28907344,-0.16767423,0.047638107,0.25121325,0.26662338,0.050792236,-0.2907505,-0.12467014,-0.09549138,-0.17271906,0.27931744,0.5750471,-0.22216313,-0.197161,0.38251835,0.62139565,0.18081088,-0.1745733,-0.16521028,-0.03868723,-0.47818723,-0.1757961,0.15635468,-0.024930667,0.50076026,-0.090497464,0.20617226,0.8704868,-0.19370638,0.10547412,-0.18203686,-0.09026043,-0.21009612,-0.16371864,-0.08608235,0.024251254,-0.4823417,0.02341594,-0.19890979,0.77332264,0.20339732,-0.8138925,0.33967662,-0.39332753,0.15930068,-0.08809531,0.6131432,0.4900039,0.310348,0.24436176,0.74179846,-0.4380157,0.28871033,-0.14831379,-0.47947457,-0.038950615,-0.16017824,0.05556484,-0.48093924,0.12710583,-0.17318496,0.07638251,-0.0005896372,0.2311467,-0.40632686,-0.029401982,0.15687926,0.70295465,-0.43946803,-0.06220697,0.6048723,1.0032203,0.8821705,0.011747573,1.1589625,0.3870976,-0.3141978,0.16177088,-0.49081966,-0.6413666,0.15521212,0.3299013,0.21756351,0.2191677,-0.07177313,-0.042808477,0.25210527,-0.41329747,0.15941955,-0.1302715,0.17735049,0.040604115,0.13148654,-0.36252815,-0.20301425,-0.037306253,-0.078006804,0.08726194,0.19315542,-0.27920878,0.35167632,-0.05885693,1.630984,-0.014623765,0.064030774,0.022199428,0.5462192,0.09404823,-0.073631,-0.11784619,0.4159646,0.42583236,-0.16011661,-0.6643846,0.17793933,-0.33147126,-0.53502333,-0.1588579,-0.4229607,-0.15328497,0.07563648,-0.4474672,-0.10005997,0.026582733,-0.28511745,0.43395433,-2.7754173,-0.1729519,-0.21217687,0.18668601,-0.30630943,-0.18277562,-0.028756602,-0.48144633,0.17356162,0.32414535,0.432493,-0.5616768,0.49337596,0.3810407,-0.3900757,-0.15527873,-0.63031286,-0.009656843,-0.020446567,0.40403897,-0.10207806,0.015891496,-0.10984531,0.053147607,0.5747927,-0.10918707,0.17766908,0.48247933,0.32694775,0.30419376,0.5152894,0.16830833,0.63453424,-0.30154034,-0.10326477,0.28477934,-0.26107597,0.31704578,-0.012852006,0.14793742,0.4474693,-0.4081532,-0.67429435,-0.6104084,-0.3645409,1.0623691,-0.44049475,-0.32803357,0.26916134,0.049015436,0.03514238,0.0153627815,0.43452352,-0.056748718,0.012553118,-0.6413925,0.20576537,-0.07022015,0.17976248,0.018965427,-0.012026815,-0.18779269,0.742851,-0.07755142,0.5890711,0.28086662,0.20595141,-0.03827039,-0.26760477,0.12758459,0.8145688,0.1498785,-0.051799245,-0.13059203,-0.37748623,-0.20157053,-0.2711973,0.07975675,0.29294404,0.8094818,0.07061252,0.06581401,0.21455832,-0.087696396,0.030066343,-0.037406832,-0.18868749,-0.052904412,0.008367163,0.33916372,0.5793138,-0.1259814,0.4718291,-0.28687888,0.36980173,0.032158468,-0.45226076,0.59516674,0.36910602,-0.14490339,0.015261084,0.31696385,0.597322,-0.39488715,0.40674454,-0.62878174,-0.16561732,0.75349164,-0.1417744,-0.32021,0.11550551,-0.22317299,0.09845843,-0.81358284,0.2825026,-0.19990088,-0.33905864,-0.39735517,-0.112936795,-2.7748075,0.18356197,-0.23846963,-0.28607142,-0.1196959,-0.038665034,0.17306569,-0.71416473,-0.4050948,0.019831285,0.17301697,0.5664397,0.13069156,0.09851717,-0.22251414,-0.016947066,-0.13857798,0.09095273,-0.0753332,0.27267942,-0.07818076,-0.37784478,-0.06116209,-0.14196008,-0.43839532,0.2206965,-0.4978112,-0.41147253,-0.17940189,-0.38805005,-0.24195138,0.50902057,-0.30464828,-0.049421817,-0.18421175,0.040367775,-0.23762837,0.16413648,0.25388327,0.065878324,0.22562908,-0.08046079,-0.006554407,-0.4176361,0.35301313,-0.016266627,0.35951334,0.25557426,0.16002925,0.12561737,0.31540897,0.5560247,-0.16144341,0.77051747,0.21956955,-0.10201494,0.25084203,-0.24074554,-0.11340604,-0.57226515,-0.37140256,-0.18030459,-0.33014977,-0.55045617,-0.034255538,-0.2852001,-0.7628727,0.4787786,-0.037214037,0.21499434,-0.042796545,0.15620591,0.48954177,-0.1447263,0.025058543,-0.13597839,-0.030696757,-0.4973811,-0.4284792,-0.7028236,-0.496229,0.13856646,0.92288744,-0.16392651,-0.11208579,-0.19352634,-0.33678278,-0.019687517,-0.012054235,0.04646738,0.40318888,0.2894726,-0.24124381,-0.59328663,0.5399664,-0.04740816,-0.05719935,-0.40771186,-0.05424931,0.5293808,-0.5978167,0.47854283,0.3981605,0.08378482,0.26308414,-0.40066195,-0.29518396,-0.07038204,-0.17358764,0.28725255,0.037471827,-0.7231698,0.45780396,0.22410582,-0.37389547,-0.77655476,0.22977765,0.056584157,-0.28839877,0.05180304,0.28007048,0.11514853,-0.12757054,-0.29781634,0.13185406,-0.38129878,0.30632228,0.3268769,-0.023149276,0.06520655,-0.11085052,-0.3525116,-0.5568841,0.00018971808,-0.4066738,-0.15037675,0.2594107,0.016278457,0.11381685,0.11720868,0.10008524,0.38922092,-0.335237,0.043684218,0.118086785,-0.26599425,0.08382141,0.30701205,0.3881887,-0.43701485,0.5364876,0.076894425,-0.1848422,0.0956989,0.023904208,0.4129152,0.2020105,0.23563696,-0.10343294,-0.2661916,0.49891213,0.6710447,0.18120833,0.33992073,0.055546828,-0.2516143,0.43495747,0.09091763,0.11301852,0.12608722,-0.3170016,0.09502018,0.099645294,0.25386468,0.35607585,0.30507842,0.51610076,0.059199024,-0.13563809,0.101925336,0.1394254,-0.1463957,-0.7843897,0.28003925,0.27314305,0.8429385,0.4251594,-0.08836047,-0.18516275,0.6823058,-0.28747678,0.16413607,0.3364756,-0.020400448,-0.513537,0.6878516,-0.5811303,0.40628636,-0.23612095,-0.12238247,0.113824286,0.13531365,0.20660266,0.7380867,-0.19780493,0.009288795,0.07994844,-0.2727017,-0.025884852,-0.30302036,0.103326544,-0.49986088,-0.33053225,0.5706094,0.23064223,0.24438155,-0.049537938,-0.081589125,0.012114449,-0.17247045,0.15952988,-0.004245978,0.122308426,0.229586,-0.52355886,-0.37248117,0.4887668,-0.14359117,0.23489329,-0.13839178,-0.3748043,0.035861693,-0.3703091,-0.045598075,-0.00091444043,-0.56675,0.07346827,-0.11874123,-0.43981197,0.20916797,-0.19408691,0.21802644,0.20696351,-0.027849674,-0.1927051,0.3393723,0.12991928,0.8219714,0.010242939,-0.2932632,-0.33373556,0.027944867,0.35281962,-0.19992624,0.19388399,-0.36677405,-0.09761812,-0.57219696,0.5888545,-0.11338297,-0.31677288,0.20799932,-0.33189118,-0.05904767,0.61189026,-0.067905106,-0.15470445,-0.094013534,-0.046980623,-0.38678688,0.12497013,-0.39843535,0.19294278,0.24977903,-0.055336975,-0.11793023,-0.12996855,-0.11828103,0.46086803,0.12383175,0.47835922,0.10787292,-0.06572754,-0.20640033,-0.030981489,0.16119182,0.34240386,0.26386172,-0.031695012,-0.3368463,-0.33909482,-0.20578133,0.1667031,-0.16996263,0.15146403,0.13108452,-0.3039549,0.731454,-0.021590699,1.1736596,0.18889731,-0.29056415,0.053591013,0.4723393,0.014967712,0.18252671,-0.42109367,0.7698328,0.49140784,-0.05003009,-0.10816344,-0.37581435,-0.22029726,0.4271085,-0.26747546,-0.067556076,-0.021001043,-0.4863884,-0.46892846,0.28050783,0.1060898,0.10994968,0.03233831,-0.06250701,-0.011321467,0.077500485,0.5958897,-0.62868905,-0.21076997,0.12721048,0.075545505,-0.05492303,0.28056127,-0.45319426,0.5602893,-0.658704,0.13271178,-0.30004,0.10520243,-0.19868934,-0.27077284,0.1286956,0.056767732,0.42393738,-0.2800649,-0.47506708,-0.13331892,0.5991577,0.0937984,0.40442464,0.57708955,-0.30491915,0.09299618,0.14605758,0.48418134,1.0845773,-0.4402051,0.064411476,0.42664036,-0.33816314,-0.5479629,0.42659375,-0.24577843,-0.1114437,-0.09399324,-0.38197353,-0.39595288,0.44695333,0.23690614,-0.04741946,0.16538016,-0.4706951,-0.00264625,0.47955972,-0.29007855,-0.33137122,-0.18664543,0.42754996,0.72695166,-0.3842187,-0.20041978,0.102597386,0.2869287,-0.33034053,-0.40418315,-0.11451412,-0.20227051,0.33510858,0.017941061,-0.19864172,-0.06626775,0.08996073,-0.2797018,0.15660018,0.18973239,-0.38545614,0.024719672,-0.09984699,-0.039202668,0.8217314,-0.13394938,-0.09774869,-0.75184494,-0.40723357,-0.8708803,-0.5699341,0.31287503,0.11778342,-0.049471978,-0.24783202,-0.022822887,-0.064051524,-0.173235,0.08042767,-0.48064333,0.3987594,0.16881311,0.42286465,-0.23507595,-0.9090293,0.031456154,0.05025058,-0.22094569,-0.5270972,0.56362206,-0.11666289,0.8252504,0.020420333,-0.10476029,0.0812704,-0.33668038,0.19894342,-0.47677264,-0.17245881,-0.707754,0.12188827 +797,0.35128206,-0.35259262,-0.30392164,-0.10132961,-0.21642487,0.028410358,-0.2935532,0.3140229,0.19212379,-0.4004237,-0.21420279,-0.24627332,-0.087442845,0.37384588,-0.19479132,-0.42819685,0.019444285,0.04539102,-0.59049004,0.7161303,-0.32949582,0.1800862,0.12182975,0.37550774,0.42336676,0.12854871,0.20845374,-0.07409059,-0.09774239,-0.2490818,-0.085743636,0.05543193,-0.4766248,0.14934745,-0.20882562,-0.35649788,-0.07960692,-0.4519491,-0.31113622,-0.90354645,0.37220833,-0.82502234,0.4156518,-0.07782791,-0.29786718,0.3642606,0.15767305,0.41413757,-0.10047618,-0.06892372,0.16744089,-0.1357006,-0.017992616,0.075297005,0.04079963,-0.25228608,-0.59407395,0.0765799,-0.4076509,-0.18002471,-0.25975654,0.17142442,-0.40047595,-0.00085221924,0.018406475,0.5833256,-0.39093438,-0.07948282,0.097434774,-0.028200952,0.434418,-0.6366449,-0.2726925,-0.098459825,0.28205392,-0.121297516,-0.16874322,0.18118066,0.34915817,0.3969073,-0.027606212,-0.12190895,-0.2557842,-0.09825303,0.25295454,0.49379054,0.032691393,-0.5165228,-0.08507983,-0.18257971,0.31467286,0.058409214,0.2017324,-0.33136162,-0.119621545,0.070589624,-0.2555342,0.3335477,0.46667525,-0.22450629,-0.18614179,0.37050077,0.52537155,0.33201954,-0.16390572,0.11326961,-0.010836997,-0.44143716,-0.055402327,0.20548905,-0.2552804,0.6180912,-0.27205437,0.31533167,0.5466881,-0.06188034,0.15720142,0.012663971,-0.05443012,-0.22553632,-0.16040818,-0.25189006,0.15081838,-0.4655084,0.17993411,-0.3029531,0.7765693,0.12502596,-0.6874561,0.30841503,-0.5034186,0.2107077,-0.055004086,0.5558016,0.73434806,0.24848244,0.36785635,0.66479623,-0.2810306,0.07285475,-0.07454537,-0.29604387,-0.028014509,-0.24026486,-0.019140037,-0.48947042,-0.04316378,0.06358167,-0.031551257,-0.060567677,0.37864476,-0.41282168,-0.03882749,0.15563494,0.7278492,-0.17264089,-0.0056637325,0.93424803,1.0142769,1.0324944,0.2327535,1.0870864,0.13920663,-0.17658718,0.15932664,-0.22136301,-0.70673794,0.32236564,0.28707185,0.3617015,0.15761106,0.06815561,-0.119864464,0.4674025,-0.5219481,0.1562252,-0.20016654,0.032362446,0.18059094,-0.08400955,-0.32746518,-0.20978314,0.021200204,-0.031064553,0.08886998,0.17937501,-0.19960798,0.41705927,0.09177467,1.3873342,-0.1080053,-0.08608093,0.07278811,0.489733,0.06892673,-0.25728923,0.015453053,0.16737908,0.48847646,-0.0077149393,-0.6225891,0.26609126,-0.106094345,-0.5140203,-0.14098135,-0.23129721,-0.057360515,-0.0042974055,-0.44047913,-0.08994781,-0.1603114,-0.40306523,0.38536522,-2.761569,-0.19944303,-0.19794306,0.2158875,-0.23293108,-0.14195783,-0.06374032,-0.44118387,0.46828553,0.37865883,0.4343668,-0.7678472,0.3182958,0.47966784,-0.55644125,-0.03868488,-0.7334551,-0.22608744,0.07136362,0.5107374,0.057550065,-0.027873604,0.06350438,0.28056005,0.50710183,0.061008446,0.14337297,0.28239077,0.26801127,-0.008684399,0.4109722,0.06749236,0.3970796,-0.1405294,-0.09478856,0.41490793,-0.34887388,0.29537338,-0.09859465,0.23671053,0.46405533,-0.38232243,-0.81440765,-0.70201045,-0.34602642,1.2641796,-0.17696385,-0.5808385,0.2843745,-0.24607745,-0.1548165,-0.09970277,0.55057085,-0.2152778,-0.041876968,-0.9137201,-0.08649881,-0.12562597,0.21585886,-0.030691423,-0.088435106,-0.3681379,0.7433549,-0.03933387,0.4628237,0.34382707,0.31642583,-0.34168562,-0.5365696,0.12072647,0.88951796,0.4583822,0.098592825,-0.33239153,-0.21179147,-0.3916996,-0.21097402,0.092817314,0.42619947,0.73531526,-0.008150447,0.24071772,0.25670427,-0.0053935605,-0.043720208,-0.121517144,-0.19312544,-0.15642487,0.0144699095,0.5867189,0.5949821,-0.117933035,0.40772387,-0.15677975,0.1687424,-0.13536571,-0.40472183,0.65373385,1.1065958,-0.210874,-0.2197049,0.5244526,0.36942944,-0.2641142,0.44210097,-0.5768743,-0.1911168,0.41170552,-0.073138684,-0.5253514,0.28838545,-0.36076683,0.25020573,-0.899771,0.31020433,-0.3386069,-0.34596673,-0.6371351,-0.043428563,-3.171425,0.0892776,-0.19664618,-0.4399777,-0.3019576,-0.29729068,0.28309524,-0.46559468,-0.57574636,0.14539878,0.13315052,0.6503266,-0.035504103,0.08090326,-0.2855385,-0.07750866,-0.34493002,0.08680454,-0.027320711,0.41217864,-0.15897699,-0.41322958,-0.076072134,-0.23985846,-0.43542254,-0.043204315,-0.38817674,-0.5087848,-0.14461944,-0.32647964,-0.3546363,0.5163266,-0.22092745,0.033790335,-0.34149742,-0.11697957,-0.1538923,0.55829865,0.22144733,0.07868929,-0.03305561,-0.0760012,-0.012364873,-0.23656088,0.08094723,0.06809939,0.08813857,0.42397258,-0.13641429,0.40114415,0.4085409,0.5625301,-0.20848827,0.8294089,0.5666079,-0.027724396,0.20263754,-0.21473083,-0.2644809,-0.46563762,-0.24950129,-0.0112530785,-0.35631177,-0.5268618,-0.034294147,-0.26394367,-0.7879563,0.41794366,-0.015944896,0.20724894,0.050195765,0.1029524,0.37958708,-0.075424574,0.0055395365,-0.0001818498,-0.057465434,-0.6318239,-0.3359967,-0.7406558,-0.55259055,0.0095628975,0.7577921,-0.16883428,-0.09382392,0.14355221,-0.32447782,0.07941284,0.17853202,0.01813991,0.042080607,0.30047673,0.015540898,-0.7661136,0.5561911,-0.015622632,-0.16579133,-0.4512763,0.1278711,0.4959067,-0.42663854,0.40984944,0.33966428,0.015089726,-0.28532636,-0.5051588,-0.19031283,-0.109950304,-0.22971973,0.42998123,0.20924084,-0.6311773,0.46944943,0.27825895,-0.10750394,-0.7476912,0.47000244,0.040809676,-0.16050074,0.0022384485,0.34324515,0.07506725,0.05776692,-0.2005673,0.25575623,-0.41259113,0.20854998,0.24517685,-0.019500662,0.24803303,-0.24193183,-0.19237547,-0.536093,0.055423684,-0.5192446,-0.19196859,0.13146576,0.08074595,0.13700292,0.16074055,0.06018373,0.36213627,-0.20316286,0.18442051,-0.009238513,-0.14100622,0.16692461,0.5418661,0.40591103,-0.38630307,0.62150264,0.061456773,-0.2264576,-0.009105782,-0.007910581,0.37410805,0.21971372,0.27385706,-0.016667146,-0.1668197,0.19908278,0.6879269,0.2537778,0.5053148,0.06419368,-0.16467346,0.4551619,0.106042765,0.415193,-0.16141647,-0.52091604,-0.103398435,-0.26653954,0.09190996,0.54302955,0.07005574,0.29630885,-0.027356565,-0.24614884,0.0054249484,0.022282563,-0.1275918,-1.3769149,0.3851004,0.28881648,0.8369662,0.6369241,-0.22408663,0.22792435,0.6401506,-0.21280275,0.12023282,0.2838785,0.15188381,-0.6282731,0.49327004,-0.8074048,0.32810986,-0.0448848,0.029753506,-0.005288494,0.03627532,0.36807507,0.5631169,-0.22610556,0.051134888,-0.06198067,-0.30780157,0.19225867,-0.39890158,0.08042465,-0.4645527,-0.26974156,0.5836881,0.5102366,0.26051968,-0.23877957,0.021702262,0.09859329,-0.07388503,0.13783345,-0.003694431,0.07476855,-0.14883514,-0.63664263,-0.19093516,0.49812835,-0.23909579,0.13460293,-0.021606838,-0.27483132,0.041608762,-0.13416515,-0.12767698,-0.05660402,-0.79504627,-0.059666764,-0.2361051,-0.3898938,0.3680607,-0.30848485,0.27107805,0.28305155,0.0031597754,-0.27343616,0.10905086,0.08517061,0.6090144,0.010251713,-0.08538588,-0.35167205,-0.0025664528,0.29683372,-0.15215617,-0.1886438,-0.13803454,-0.046325993,-0.5279494,0.5207021,-0.07965045,-0.2406324,0.24373375,-0.13983777,-0.030257886,0.57931775,-0.20135394,-0.15936807,0.022550609,-0.15196756,-0.1305552,-0.18000862,-0.12716044,0.36367854,0.2436327,-0.043211997,-0.08833534,-0.005210964,-0.0017219861,0.45925054,0.010643598,0.45706692,0.44056505,-0.04826211,-0.5562385,-0.065856665,0.21105734,0.37626177,0.10557257,-0.20870902,-0.25529203,-0.4565726,-0.3278932,0.25554457,-0.13739343,0.29652387,0.013082592,-0.28370982,0.6875423,0.16785179,1.011442,0.0371497,-0.49026278,0.16169351,0.4378437,-0.07681978,-0.06757429,-0.34154448,0.6627875,0.39910182,-0.08444183,-0.039325114,-0.33644047,0.010055805,0.2709888,-0.10847092,0.024650939,-0.037387643,-0.6482965,-0.24310054,0.15639868,0.23102781,-0.029921258,-0.17643413,0.0016691685,0.21410204,0.0077655236,0.42573765,-0.5248938,-0.0060706614,0.3514859,0.05979762,-0.03502233,0.050416075,-0.4231061,0.3448824,-0.5660192,-0.013447412,-0.18014218,0.1748691,-0.02306794,-0.20003088,0.2320834,0.0535167,0.39391166,-0.3578924,-0.35639107,-0.33293456,0.5298932,0.2001802,0.17154616,0.49737498,-0.25764066,0.27270824,0.039148543,0.5234944,1.08163,-0.29551503,0.02484407,0.16174269,-0.3708455,-0.5287719,0.36585337,-0.3042882,0.2955218,-0.026240153,-0.26848742,-0.67918515,0.24911973,0.3294263,0.16416268,0.009919643,-0.6003535,-0.39446634,0.31997263,-0.3376523,-0.268462,-0.39382136,-0.08568074,0.46830457,-0.22804162,-0.2998828,0.0034891048,0.2591986,-0.1636495,-0.4374656,-0.0013043284,-0.30769876,0.28955948,0.06471618,-0.32423046,-0.18708111,0.106349364,-0.48882666,0.112614915,0.06562255,-0.26869604,0.017894184,-0.27287674,-0.004286136,0.92685664,-0.28324836,0.122630954,-0.55230165,-0.5160314,-0.677756,-0.42629465,0.5037497,0.17276584,0.045712035,-0.595635,0.019309647,-0.16338307,0.08162999,0.022955727,-0.43911526,0.5007801,0.18952905,0.31946337,-0.048279054,-0.5880509,0.08577394,0.033776946,0.013879089,-0.4442365,0.47944835,0.18141378,0.7150395,0.1229305,0.16960558,0.064360335,-0.3820441,0.054882843,-0.106791504,-0.28236225,-0.61605376,0.17659582 +798,0.42433453,0.10965278,-0.7235157,-0.13569754,-0.56342894,-0.048483957,-0.21842927,0.2150045,0.31662688,-0.0608235,-0.057522893,0.15303272,-0.19403009,0.4073415,-0.04882281,-0.95475894,-0.027754536,0.19546266,-0.71673733,0.5327232,-0.30899838,0.34420633,-0.12204301,0.43148944,0.10454998,0.18092062,-0.110569604,0.09334161,0.11693648,-0.26967877,0.110785805,0.007094905,-0.73249584,0.18683068,-0.039246596,-0.38702098,-0.057903226,-0.5207536,-0.45425132,-0.7111148,0.4807819,-0.69092345,0.6399881,0.13536352,-0.27688092,0.015265651,0.18821146,0.29276368,-0.14171563,0.03631995,0.383823,-0.5070086,-0.00028047213,-0.20055795,-0.14852391,-0.2553223,-0.5926359,-0.267283,-0.49626365,-0.04431893,-0.2516762,0.18861604,-0.34581867,-0.1214126,-0.46339846,0.47179428,-0.47273052,0.17385046,0.26123002,-0.18492137,0.1319672,-0.5706102,-0.1090297,-0.09977911,0.37727436,-0.0050263205,-0.34373644,0.5863487,0.07426072,0.30810907,0.025805548,-0.28554454,-0.2869281,-0.073124245,0.060266167,0.5774496,-0.31327745,0.027082175,-0.18202941,-0.042172182,0.35098734,0.27771086,-0.08039432,-0.25835085,-0.05826639,-0.13445915,0.07912778,0.6500711,0.44668886,-0.2544959,0.018454045,0.46764407,0.48520306,0.3924013,-0.24523754,0.026448593,-0.06825119,-0.54033655,-0.1553167,0.20807175,-0.16379595,0.26805535,-0.005445426,0.049756687,0.69170004,-0.1644552,-0.22594528,-0.07212073,0.08511124,0.4609857,-0.21283095,-0.23241675,0.41402233,-0.55561477,0.44756973,-0.18750751,0.67771274,0.11899959,-0.6364217,0.24307865,-0.65208936,0.16597255,-0.045498487,0.6930318,0.8416354,0.5320988,0.27947173,0.906157,-0.4340026,0.23237224,0.28347537,-0.27416846,-0.075541764,0.08538422,0.26927748,-0.46516395,-0.17524791,-0.36096182,-0.09983399,0.15780288,0.27310646,-0.36560178,-0.2313804,0.03923544,0.77189225,-0.27253902,-0.051210444,0.9004914,1.0347548,1.1261247,-0.08943117,0.7893478,0.04655799,-0.12630068,-0.34116688,-0.11003923,-0.49010873,0.15397996,0.340484,0.03069961,0.31760234,0.06677862,0.06751991,0.45566878,-0.4062489,-0.19006474,0.02263394,0.47593084,-0.03472903,-0.120548725,-0.52615917,-0.18449454,-0.045632333,0.09088122,-0.076611295,0.40846667,-0.30522713,0.2566245,-0.09789608,1.0432863,0.1850553,0.16473104,0.08059728,0.50663453,0.24692632,-0.24025579,-0.12900175,0.14406864,0.3173301,-0.037958246,-0.54981273,0.03845414,-0.42653492,-0.3072925,-0.17432934,-0.40052494,-0.31881937,0.027407631,-0.5019236,-0.16232474,-0.0056638047,-0.20705557,0.45402148,-2.4129775,-0.12151884,-0.08350312,0.3372022,-0.057242308,-0.34180072,-0.19710441,-0.48237872,0.41247365,0.1758892,0.53142256,-0.52941054,0.5619084,0.44959888,-0.5362641,0.10361707,-0.65113497,-0.18230493,0.21715778,0.21658134,-0.1413755,0.025598833,0.102318235,0.27236566,0.62903005,0.25195262,-0.057086542,0.2864764,0.4798603,-0.29191682,0.4833137,-0.036110535,0.57591623,-0.2453397,-0.19548558,0.37627697,-0.38730553,0.4075471,-0.27940926,0.0140402615,0.5565193,-0.5250692,-1.012072,-0.30312696,-0.15861318,1.0518755,-0.25498453,-0.5832333,0.24016963,-0.34358823,-0.2056212,0.031735834,0.6797002,-0.22903407,-0.04496269,-0.570884,-0.103653215,-0.25352982,0.19811134,-0.11260264,0.2598097,-0.41408315,0.7098337,-0.19533215,0.4518319,0.2843438,0.17586106,-0.23957486,-0.4398683,0.10471498,0.6330295,0.57267696,0.09281484,-0.2763081,-0.10412648,-0.1402571,-0.23891038,-0.0042180815,0.9525013,0.5559066,-0.18684769,0.06341525,0.3691676,-0.1404532,-0.06341955,-0.19343458,-0.3862207,-0.23263647,-0.023460725,0.5726356,0.8638628,-0.029332718,0.48995087,0.052164216,0.03314814,-0.17126572,-0.5446974,0.3765444,0.6354088,-0.13404681,-0.23032515,0.5796019,0.31526235,-0.15655772,0.4604118,-0.54460126,-0.21837085,0.604241,-0.12614435,-0.55810785,-0.07255033,-0.3391018,-0.039186504,-0.6547932,0.32151073,-0.4221485,-0.98835355,-0.45973304,-0.17756309,-2.639459,0.21064235,-0.37461242,-0.01939421,-0.22293031,-0.18146145,0.06102402,-0.6306405,-0.55201954,0.114787124,0.0447658,0.66858584,-0.20417476,0.14948872,-0.21432789,-0.33415365,-0.21074396,0.34691855,0.34373626,0.30040953,-0.06253631,-0.21369398,0.14194258,0.007517206,-0.54910034,-0.0843778,-0.41589022,-0.36063942,-0.06731149,-0.48980674,-0.21083193,0.69514847,-0.4253451,0.066220656,-0.26770386,-0.065101534,-0.047746792,0.22169833,0.29056162,0.4827493,0.12966427,-0.07431248,-0.07281439,-0.059191078,0.32481998,0.14094934,0.63300794,0.23645115,-0.011815551,0.18986666,0.5995387,0.76790816,0.058008805,0.9078062,0.323634,-0.11448487,0.16639079,-0.30413,-0.32224658,-0.80034,-0.44024745,0.0009292364,-0.47761226,-0.51272184,-0.060191315,-0.41254607,-0.91146445,0.44815812,0.05662517,0.25932434,-0.10355864,0.2710265,0.390306,-0.30580807,-0.048705976,-0.07827976,-0.09324866,-0.40126002,-0.27181458,-0.6629805,-0.4536147,-0.059264272,0.9833711,-0.31134465,0.01629667,0.26354071,-0.5045603,0.1598788,0.13900942,0.06753553,0.033227343,0.22757526,0.025679221,-0.50863075,0.37766328,-0.32278237,0.09318277,-0.7927522,0.17257945,0.72596806,-0.46988907,0.74024504,0.33278129,0.044770446,-0.23959029,-0.8161395,-0.28278232,0.22930269,-0.25755084,0.3946202,0.21647567,-0.63438153,0.2982748,0.007944738,-0.27415708,-0.68996054,0.58492845,0.06463943,-0.429111,0.20137249,0.4433777,-0.028225103,-0.28870004,0.1023274,0.6063719,-0.35980847,0.3990136,0.18099366,-0.05121829,0.085368596,-0.12391112,-0.30347246,-0.7229163,0.0667099,-0.6474621,-0.43973994,0.11561531,-0.045307714,0.12212968,0.11837059,0.36789623,0.3548348,-0.27299735,0.31322998,-0.36367488,-0.46560922,0.432193,0.47734046,0.5674434,-0.5086778,0.6944997,0.16898155,0.02799075,0.3495226,0.239074,0.6131219,-0.20552312,0.4724846,-0.082605645,-0.0042034686,-0.120452724,0.6845681,0.18603571,0.3228447,-0.022205314,-0.16732891,0.07239085,0.12669231,0.33078325,-0.13786852,-0.46880493,0.104649104,-0.017242143,0.054211836,0.5149392,0.24784012,0.20448191,-0.116078295,-0.10572495,0.1528276,0.13542032,-0.018508783,-1.4224125,0.7059245,0.38732255,0.95610315,0.39875722,0.16849567,-0.04201061,0.6282601,-0.2587013,-0.0034483671,0.4590249,0.014325812,-0.33456206,0.5515521,-0.6134785,0.5569007,-0.02553401,-0.003187808,0.27866018,0.17316818,0.40500402,0.6996515,-0.29199994,-0.042188123,8.8969864e-05,-0.42601535,0.01693368,-0.30037466,0.11154106,-0.52014023,-0.41543067,0.6709776,0.5792058,0.2275964,-0.24150597,0.029266,-0.08472249,-0.2097177,0.13555868,-0.12495921,-0.12513776,-0.1892276,-0.46294728,-0.19319099,0.35136208,-0.46003798,-0.12647519,-0.08835611,-0.021607267,0.31158698,-0.060076177,-0.005049641,-0.078065746,-0.841958,0.12644733,-0.37700343,-0.26544607,0.211255,-0.45895016,0.34425846,0.2804083,0.039282795,-0.14919849,0.44648838,0.04517135,0.696145,-0.053115945,-0.13437873,-0.31274983,0.17052643,0.18205673,-0.18434002,0.20439827,-0.31423596,0.18579455,-0.6754446,0.36896965,-0.4148152,-0.38302907,-0.26191172,-0.19623165,-0.041414946,0.38105503,-0.20438915,-0.20398365,0.073141545,-0.3414574,-0.3205918,-0.13196565,-0.26733494,0.09187838,0.09805594,-0.120253526,-0.17682248,-0.10579511,-0.14508893,0.2924988,0.08159446,0.28405926,0.2732299,0.1419657,-0.35721433,0.021789348,0.0379487,0.5151982,0.04331726,0.028682942,-0.3135986,-0.21915503,-0.33956477,0.59422916,-0.23480421,0.30871347,-0.0038528803,-0.20541598,0.77724665,0.19349028,1.184665,-0.014844258,-0.40475345,0.016473135,0.5824769,-0.11639886,0.04671229,-0.2947694,0.8546276,0.4581796,-0.086953096,-0.07375519,-0.32210946,0.010834704,0.28676996,-0.24905758,-0.23546362,0.013913701,-0.5166263,0.013037209,0.23748542,0.14608575,0.13308531,-0.19140156,-0.2717543,0.29924402,0.21594481,0.21096165,-0.6216545,-0.11868923,0.31308368,0.094866045,0.108617604,0.3084489,-0.31338182,0.3194762,-0.6965472,0.2952132,-0.52941275,0.16344447,-0.19300288,-0.276361,0.18587996,0.12597376,0.3936871,-0.26506698,-0.092790574,-0.11150143,0.3607346,0.37707326,0.23669495,0.6972448,-0.22011192,-0.11501164,-0.057452098,0.44765913,0.9635625,-0.17854668,0.01147072,0.28458259,-0.31253994,-0.7011666,0.08892878,-0.53738403,0.0036193703,-0.17957018,-0.3693535,-0.42873427,0.060973864,-0.0699608,-0.06669008,0.08636909,-0.77382857,-0.12429774,0.25575253,-0.29955882,-0.3037839,-0.36555967,0.33571196,0.8628374,-0.1409582,-0.33524227,0.07605163,0.25069305,-0.13826756,-0.45878422,0.48122966,-0.3106555,0.23091064,-0.1223573,-0.5496709,-0.06571107,0.29319584,-0.4438881,0.218004,0.29859295,-0.28787887,0.037147325,0.05059768,0.119425245,0.8143401,-0.23342896,0.2957855,-0.44996342,-0.53121114,-0.7805963,-0.34301946,0.050044622,0.25235754,-0.16712166,-0.77699167,-0.16023116,-0.23061377,-0.049244303,-0.09678966,-0.5223856,0.4248208,0.1897645,0.47406626,-0.19685501,-1.0773406,0.10699117,0.1447461,-0.30172917,-0.37913302,0.47359347,-0.051670957,0.77103657,0.099478476,0.00052812445,-0.07349389,-0.3809007,0.46032643,-0.29096052,-0.09054222,-0.5647079,0.061427653 +799,0.44777218,-0.24677786,-0.48636416,-0.21677725,-0.35503483,0.32909012,-0.40264782,0.41743466,-0.012197399,-0.58576506,-0.14054416,0.10223996,-0.09800225,0.39509794,-0.24348983,-0.5704552,0.015281489,0.24918866,-0.5132228,0.42424172,-0.5707546,0.33554208,0.052481472,0.33268964,0.10119511,0.21967497,0.06920053,0.032250576,-0.14606136,-0.061408166,-0.021512967,0.30183986,-0.5927454,0.449832,-0.083741814,-0.26958635,-0.06073112,-0.44218272,-0.20574856,-0.6434384,0.14288789,-0.73494315,0.45835158,-0.16197146,-0.48748296,-0.01106436,0.07738555,0.26672262,-0.3880083,0.089217156,0.21859895,-0.16168642,-0.2846064,-0.26046944,-0.09921581,-0.4871837,-0.5351584,0.02721968,-0.6091064,0.010758505,-0.18552718,0.28347316,-0.17924558,0.08294474,-0.21030268,0.1485336,-0.48130453,0.042476714,0.28936768,-0.16940166,0.06331502,-0.5759668,-0.1583634,-0.21578282,0.2740118,-0.0038059307,-0.20418574,0.08754224,0.3832555,0.7213549,0.069205396,-0.1931584,-0.10986351,-0.14481798,0.34721744,0.44468406,-0.054571785,-0.2379769,-0.41180304,-0.16427001,0.38371155,0.13441831,-0.018629588,-0.48196852,0.043288454,-0.020164521,-0.23544417,0.27844328,0.38279852,-0.38142425,-0.063019,0.34409478,0.5689417,0.11732464,-0.14524387,0.27772215,0.027890772,-0.4412322,-0.27818087,0.2738548,0.108067796,0.58734167,-0.15827993,0.24780497,0.59046054,-0.033605747,0.05034956,0.0018955126,-0.07379342,0.00059080124,-0.2901367,-0.19855794,0.1346428,-0.4622904,-0.022960229,-0.24940978,0.65982056,0.113389306,-0.6001547,0.37065446,-0.48122296,0.10587224,-0.07039492,0.6003407,0.7990563,0.4183187,-0.070037395,0.8688506,-0.57036805,0.051644977,-0.182925,-0.16345622,0.022264678,-0.111618645,0.10339183,-0.4689429,0.23641366,-0.050550167,-0.016812338,-0.18583068,0.4591537,-0.37254927,-0.18921067,-0.111175284,0.43522936,-0.48238987,-0.020505257,0.9527007,1.0091369,1.0339314,0.21669485,1.5541458,0.37080145,0.08500917,-0.18908978,-0.12628743,-0.53913254,0.14978361,0.2682266,0.5646888,0.19920236,0.13411132,0.06997584,0.52237767,-0.2755763,0.17311741,-0.15479864,0.32549903,-0.091048986,-0.017388344,-0.36169177,-0.24920405,0.18044971,0.054718282,-0.044029865,0.291913,-0.22086252,0.49948066,0.14294943,1.2461369,-0.17874326,-0.041299462,-0.04412963,0.091828786,0.18655385,-0.20343623,-0.10913908,0.17491928,0.45803463,-0.20671052,-0.61209065,-0.09340877,-0.17737392,-0.49944025,-0.22255479,-0.34421355,-0.053040225,-0.32021222,-0.44467437,-0.048179187,0.12635551,-0.32582253,0.5554441,-2.1974084,-0.44229332,-0.3504379,0.32775396,-0.24371368,-0.4024232,-0.31686875,-0.31305748,0.47305724,0.28105992,0.35233575,-0.51878697,0.6078156,0.30307415,-0.31618148,-0.15089561,-0.73846555,0.033059247,-0.07602521,0.20772862,-0.0042257104,-0.3032977,-0.24180096,0.13425504,0.70818424,-0.14596978,0.09228587,0.3665729,0.5526917,-0.1063821,0.54715264,0.14567767,0.5521298,-0.393451,-0.1108631,0.43068296,-0.512715,0.5414823,0.064102545,0.26719853,0.29380408,-0.58615166,-0.721878,-0.86002,-0.5006301,1.2318431,-0.39516094,-0.38229164,0.098250695,-0.21565373,-0.31474292,0.15600434,0.4167282,-0.0031929244,-0.012444625,-0.88157046,-0.139815,-0.040800277,0.1561981,-0.10553773,0.15462501,-0.45472234,0.69489646,-0.24827531,0.59915245,0.61755186,0.21533273,0.12649593,-0.2138853,-0.024487834,0.9662444,0.5328148,0.020514717,-0.27049673,-0.29367658,-0.27214867,-0.20411721,0.03950949,0.6646709,0.61655796,0.057580207,0.10980192,0.29069218,-0.15223056,0.014425294,-0.22168079,-0.3655419,-0.1283308,0.20762242,0.6528261,0.5842781,-0.012609463,0.33218992,-0.2045131,0.20252919,-0.2149745,-0.5657415,0.35986108,0.70373714,-0.12245737,-0.13622269,0.6079508,0.46757036,-0.34214735,0.37878683,-0.5547596,-0.3929332,0.5234188,-0.016902072,-0.26821983,0.07075586,-0.38666075,0.020459335,-1.0456446,0.3818293,-0.31454185,-0.6330379,-0.5331197,-0.33307302,-2.5843318,0.2979849,-0.073055655,-0.05883191,-0.17279403,-0.3476933,0.43366453,-0.434325,-0.65974617,0.18677361,-0.027631879,0.5033958,-0.072029516,0.011567602,-0.31945705,-0.17988198,-0.06622151,0.14127979,0.024427176,0.31701902,-0.026099874,-0.32255414,0.0894932,-0.397504,-0.33762577,-0.03551013,-0.79855084,-0.49883586,-0.060580492,-0.4010873,-0.173615,0.7166951,-0.5055057,-0.078199945,-0.25535262,0.010829659,-0.26072377,0.42785138,0.107402414,0.2376175,0.23918988,-0.03923422,-0.3356066,-0.36486593,0.07305356,0.18231504,0.092162535,0.35227495,-0.24896976,0.26624987,0.5521252,0.67738366,-0.13606158,0.84513164,0.23806928,-0.019861933,0.3426266,-0.2439846,-0.29329115,-0.43500835,-0.40444213,-0.29392654,-0.5452975,-0.48706034,-0.118634544,-0.22766227,-0.87745374,0.38107792,0.12746558,-0.07916951,-0.11077844,0.2316672,0.23014523,-0.13352884,0.03201679,-0.1682145,-0.16717614,-0.5316918,-0.6130314,-0.6343517,-0.5943735,0.09318801,1.3498574,-0.13600455,-0.043152615,0.08199019,-0.4219753,0.11880991,0.2182439,0.1678219,0.020687938,0.38577646,-0.09273918,-0.63697445,0.20661439,-0.099442914,-0.23113619,-0.49052972,-0.012846053,0.9454494,-0.6085183,0.62600136,0.55257076,0.17734753,0.19019549,-0.6035604,-0.29460528,0.120189354,-0.26192778,0.6272658,0.19061872,-0.67448705,0.46988553,0.35743824,0.014203429,-0.77299446,0.5573377,-0.0997062,0.12545927,0.14592847,0.43138072,0.04539915,-0.020298103,-0.23671879,0.24384898,-0.47221628,0.32799795,0.47457367,0.041512344,0.30715436,-0.24814898,-0.32670137,-0.66136384,-0.32047743,-0.5985938,-0.24672024,-0.017102746,-0.056412704,0.018256346,-0.02261273,0.3358445,0.31652334,-0.5759372,0.17678162,-0.18652418,-0.4101558,0.24340893,0.53902984,0.40304178,-0.39512655,0.558217,0.09144003,0.19262491,-0.34713304,0.0121933725,0.39754993,0.2785063,0.37362406,-0.28826106,0.116968796,0.07398586,0.83587384,0.17147948,0.39322215,0.23839289,-0.3769961,0.24291007,0.2489633,0.3855572,-0.22758542,6.533586e-06,0.16976312,0.035193913,0.21021408,0.33217955,0.16052581,0.4202673,0.000120833516,-0.06274707,0.15051256,0.096132085,-0.080018476,-1.182618,0.4450793,0.14117338,0.6557516,0.48709407,-0.030852538,0.23377217,0.3591221,-0.2835758,0.027517276,0.22789611,-0.04343835,-0.38727424,0.57007015,-0.6484818,0.39633295,-0.31655267,0.07038765,0.20644814,0.15572777,0.5486998,0.78045595,0.05691071,0.087429896,-0.015088324,-0.17003304,0.0021923094,-0.41378826,0.051695272,-0.4567194,-0.34533486,0.7570865,0.5227022,0.44338036,-0.3282455,-0.047684684,0.20654596,-0.17175242,0.18721996,-0.1843244,-0.07528941,0.0058409134,-0.7005654,-0.17760047,0.5416585,0.01024889,0.08383051,0.15962985,-0.57095087,0.3378434,-0.19566797,0.12542973,-0.032156408,-0.8131682,-0.12901093,-0.56037104,-0.44295093,0.09150473,-0.3450632,0.16589154,0.22068824,-0.05986949,-0.19526751,0.2691271,-0.034683466,0.9607064,0.1264935,-0.29561588,-0.20014682,0.05706402,0.41963407,-0.34958777,0.044361897,-0.405302,0.2336161,-0.74121124,0.3855023,-0.1953461,-0.14915001,0.41152418,-0.16779166,-0.040167835,0.43327788,-0.2957551,-0.07165844,0.22981215,-0.08148416,-0.20545787,-0.072489224,-0.3843687,0.2574135,-0.032001194,0.09870443,0.030075233,-0.10494753,-0.037745878,0.36798456,0.31191042,0.09760956,0.3970817,0.008424094,-0.2830816,0.06998605,0.05589565,0.44866636,0.24413869,-0.15506957,-0.1432913,-0.41337878,-0.2721281,0.5966286,-0.25313517,0.13090411,0.019834403,-0.26778513,0.7714571,0.20336929,1.1758106,0.16700941,-0.3464409,0.147307,0.512851,-0.009063661,0.077321015,-0.23076011,0.7643105,0.40723854,-0.21770789,-0.03770972,-0.49448887,-0.36483228,0.22468734,-0.29676548,-0.14324456,-0.23566605,-0.79832333,-0.25564334,0.13796549,0.1912462,-0.14220378,-0.06836692,-0.025507988,0.09607407,0.13394627,0.4353857,-0.7010714,0.07388078,0.41704544,0.29565716,-0.03440826,0.08306158,-0.29499963,0.46774995,-0.8299333,0.19764203,-0.60000724,0.010819742,0.013369535,-0.24488783,0.15676333,0.094837666,0.334779,-0.35552672,-0.3843794,-0.3457939,0.60806364,0.3152296,0.1856826,0.7131535,-0.33679694,-0.08578864,0.16902381,0.48902336,1.028891,-0.25932133,0.1534634,0.35135671,-0.2950056,-0.43349984,0.14630824,-0.5174622,0.08249307,0.0012839391,-0.4082134,-0.51368034,0.33855137,0.24163121,-0.02479478,-0.0064027216,-0.60073656,0.054833375,0.37425238,-0.18908869,-0.27509165,-0.23945493,0.25952613,0.6252193,-0.35181937,-0.4412482,-0.017023334,0.39121792,-0.34626552,-0.55297184,0.14457665,-0.43691298,0.3921003,0.073070064,-0.253008,-0.049511734,0.10052848,-0.42139813,0.0040720794,0.2319799,-0.3030569,0.072828986,-0.21121255,-0.0021311687,0.94132555,0.054355953,0.28413978,-0.56756204,-0.5462646,-0.80564594,-0.3202004,0.20762847,0.27418366,-0.07675699,-0.5012069,-0.019274367,-0.1980057,0.017715545,0.24211465,-0.42842886,0.44487378,0.23896892,0.41114527,-0.13117944,-0.8227599,0.042630848,0.11744593,-0.2490008,-0.3363952,0.4468706,-0.20315269,0.69402534,0.022425005,0.055922296,-0.14239891,-0.6601035,0.41487628,-0.3367074,-0.08846006,-0.7227141,-0.056887884 +800,0.3724642,-0.11015139,-0.44059277,-0.23479451,-0.2799292,0.15087487,-0.1376146,0.30031124,0.45784783,-0.16695099,-0.0848433,0.04249211,-0.17016725,0.31943586,-0.17530848,-0.9129631,-0.02520591,0.021316377,-0.5210736,0.7059527,-0.3434868,0.32462662,-0.06835159,0.38789615,0.11529204,0.3304672,0.20770092,0.22432967,-0.15592058,-0.0010871986,0.10119173,0.34937108,-0.47151837,0.50917625,0.013154987,-0.10066003,-0.19850259,-0.3409361,-0.29408464,-0.78852767,0.46098614,-0.48338065,0.43729672,-0.055237073,-0.3843708,-0.21872109,0.26139596,0.14810438,-0.22587128,-0.09844214,0.21598284,-0.28357962,-0.23675601,-0.097674645,-0.27074143,-0.552953,-0.5606907,-0.09300365,-0.5658905,-0.15862639,-0.13552362,0.2911429,-0.29257438,-0.14146574,-0.1279248,0.7662353,-0.4338325,-0.058127165,0.5445878,-0.41209388,-0.031925406,-0.78440434,-0.25307158,0.0038537309,0.23378076,0.35134038,-0.20551199,0.62315065,0.27990267,0.3269234,0.105753124,-0.41355082,-0.42599723,-0.26408914,0.20548834,0.363969,-0.26463184,-0.39444184,-0.2607587,0.015421887,0.317935,0.17493875,0.20094419,-0.44078335,0.014864791,-0.14330782,0.056514632,0.47309434,0.4929256,-0.15930441,-0.17580128,0.3077426,0.35790595,0.22468393,-0.22930826,-0.0036545794,-0.1758296,-0.451659,-0.22080685,0.06308233,-0.023192724,0.30966046,0.02740509,0.16086584,0.7469761,0.03315659,-0.106536984,-0.020982185,0.18341602,0.12175671,-0.42380872,-0.053064402,0.28784811,-0.30251753,0.032008763,-0.18400855,0.55418724,0.095620155,-0.82990503,0.33113453,-0.47297665,0.022950329,0.067141645,0.596339,0.90722233,0.486825,0.2546215,0.9934302,-0.37068152,-0.012994249,0.14430638,-0.17900605,-0.014454071,-0.24368973,0.2860819,-0.6365023,0.07693175,0.10968229,0.037133586,0.14701961,0.3925633,-0.36014414,-0.3078436,0.093239434,0.85314417,-0.2562044,-0.14419001,0.6892875,1.0981473,1.0672113,-0.008968696,1.018118,0.10104049,-0.13458003,-0.10995144,-0.29684147,-0.38835728,0.27699727,0.2878884,0.031081775,0.41494516,-0.022439694,0.10373709,0.5790364,-0.28559348,-0.07148635,0.11960652,0.25352454,0.2215327,-0.0954816,-0.53055644,-0.3239617,0.28911647,0.11695609,0.038571443,0.33618554,-0.28298545,0.43688726,-0.24042888,1.1847005,-0.032614894,0.18482216,0.19401856,0.41468802,0.1164186,-0.33292744,0.009321973,0.1926231,0.22460853,0.01289132,-0.3699201,-0.022802128,-0.45719573,-0.43281758,-0.14074366,-0.38716745,-0.30074584,0.03549567,-0.28983283,-0.30318055,0.027621636,-0.32079396,0.44122925,-2.5310009,-0.03412191,-0.2195378,0.2976891,-0.23601907,-0.1890503,-0.19851409,-0.46911332,0.36903214,0.35788274,0.4670011,-0.5178916,0.20220192,0.44073534,-0.57313013,-0.17157996,-0.5112671,0.079443276,0.023775408,0.46152246,-0.026639849,-0.18862008,0.047391605,0.32902285,0.579448,0.34904358,-0.03542496,0.28619576,0.41112974,-0.25565428,0.3677889,-0.124298155,0.590051,-0.415643,-0.18253638,0.424965,-0.5892647,0.5434522,-0.27658376,-0.025580397,0.4973004,-0.30583775,-0.7770373,-0.44073287,-0.32888058,1.2501374,-0.39711997,-0.6378301,0.13825674,-0.14054786,-0.26103124,0.063056864,0.68939954,-0.110889144,0.18763715,-0.5416451,0.12934603,-0.121827245,0.13705117,-0.20630486,0.07175499,-0.6002832,0.7371494,-0.027332634,0.7250164,0.45163584,0.118063055,-0.47287917,-0.44489977,0.047699273,0.80581856,0.51401067,0.12034619,-0.037794214,-0.07930008,-0.024519311,-0.45509732,0.1546015,0.99788815,0.57176274,-0.05838744,0.13356222,0.28690758,-0.1549857,0.07992175,-0.09514159,-0.37321138,-0.26528862,0.25151265,0.71115357,0.77160686,-0.1973306,0.2769676,-0.07837549,0.1943805,-0.17117494,-0.47752246,0.39385414,0.49317834,-0.2647724,-0.29390973,0.67595553,0.41649345,-0.370984,0.44157135,-0.47453097,-0.43812957,0.6936653,-0.15816294,-0.60519737,-0.1531553,-0.3733867,-0.11251757,-0.70390743,0.2094623,-0.23748219,-0.7158148,-0.6115031,-0.22781198,-3.021499,0.1526819,-0.19963281,-0.04717678,-0.21731465,0.016558101,0.06123169,-0.74582386,-0.56011397,0.10913825,0.009038714,0.47867203,-0.07354214,-0.012242665,-0.2861773,-0.35597435,0.026114231,0.36287844,-0.033818502,0.27249154,-0.10130447,-0.29019746,0.038174357,-0.108234465,-0.5370996,-0.14778173,-0.6146969,-0.65551376,-0.0654609,-0.5714361,-0.08122959,0.7638498,-0.5972384,-0.08495512,-0.22339137,0.016195148,-0.028025324,0.23637356,0.11200101,0.4886311,0.27984768,-0.12834686,0.016527908,-0.25419605,0.36042586,0.14306633,0.6028711,0.51987207,-0.10283031,0.35246304,0.5948321,0.65560526,0.009470612,0.7935651,0.2009693,-0.16859369,0.26991197,-0.22565956,-0.21793257,-0.6243046,-0.37448815,0.26239574,-0.39920637,-0.38707554,-0.13583778,-0.28035718,-0.8505762,0.3715845,0.07032048,0.47095415,-0.26917884,0.03647155,0.3284458,-0.27444044,0.055686682,0.009381688,-0.0945032,-0.47548744,-0.41433716,-0.5194843,-0.7105157,0.31638166,1.09706,-0.2686728,-0.1326586,0.19142376,-0.42714718,-0.064941466,0.021842234,0.22424908,-0.20602004,0.14352871,0.08131592,-0.80723876,0.45157555,-0.15625098,0.11932522,-0.56072986,0.18889253,0.68215084,-0.30930066,0.85237366,0.43654218,0.20632608,-0.25275484,-0.7394096,-0.3298962,0.19959152,-0.13060534,0.6028907,0.43263766,-0.49750885,0.3408883,0.007590629,-0.43175793,-0.5841827,0.31049842,-0.13935284,-0.18555987,0.1684152,0.59808844,0.15070756,-0.31798267,0.071159415,0.45041433,-0.4029713,0.34152594,0.14950554,0.020015307,0.4969869,0.004899651,-0.24277788,-0.66508716,-0.036841493,-0.5448572,-0.25049153,0.18929864,-0.07399386,-0.04187287,0.12428907,0.18291223,0.36233744,-0.34510708,0.22024648,-0.039016563,-0.4801898,0.4522977,0.51790875,0.6324353,-0.4799229,0.5564038,0.12563725,0.098871835,0.043151367,0.17852479,0.6081845,0.3112732,0.38890287,-0.28139573,0.047930717,-0.026243383,0.5845464,0.20386581,0.20881586,0.014695813,-0.32824543,0.25391653,0.033546362,0.1709286,-0.14149828,-0.42918172,-0.10523111,-0.13254988,0.17275934,0.4829122,0.16725564,0.39407,0.010764927,-0.1760859,0.27121827,0.12022676,-0.052322205,-1.3726257,0.5825529,0.12364795,0.9477329,0.3194231,0.16433425,-0.21283542,0.6640886,-0.103441395,0.14025983,0.50073373,-0.13432278,-0.50144196,0.5640616,-0.47708428,0.6048948,-0.1348201,-0.026772305,0.21712475,0.2835184,0.39764795,0.665956,-0.1801923,-0.021169422,-0.052449387,-0.34733987,-0.017771035,-0.45800352,0.32337868,-0.47451666,-0.54076654,0.44550967,0.5410479,0.29468516,-0.3018837,0.039697584,0.08244082,-0.18106647,0.06932944,-0.26315695,-0.13501324,-0.08535049,-0.6883676,-0.20651035,0.39072895,-0.21186268,-0.07731557,0.06773987,0.054109853,0.18308187,-0.19061291,-0.12193682,-0.032471187,-0.6458845,0.08784202,-0.35867247,-0.72267026,0.42167512,-0.5617762,0.1310633,0.1540613,0.11008229,-0.28435078,0.40267882,0.10081089,0.9900481,-0.16456458,-0.16205217,-0.26785526,-0.11848461,0.16003634,-0.25603446,0.16051982,-0.31142744,0.21232867,-0.41081214,0.50435764,-0.28495336,-0.31622675,-0.060369197,-0.23858654,-0.021183357,0.47793365,-0.1730737,-0.17991751,0.042858228,-0.23968256,-0.32080022,-0.16663031,-0.47663736,0.3473704,-0.07474247,0.051204022,-0.11893668,-0.30698526,-0.10376456,0.1284317,-0.025266623,0.12003255,0.47180283,-0.07699987,-0.26737246,0.23953198,0.10873547,0.5141467,0.2959142,0.0053162673,-0.42698756,-0.27083167,-0.41585281,0.43167067,-0.18722439,0.17545967,0.13671641,-0.2709722,0.74895364,-0.051631987,1.1973726,-0.041496236,-0.45023355,-0.06904158,0.5093496,-0.059197236,-2.6357671e-05,-0.25351042,0.99993426,0.6469098,-0.025616655,0.012728766,-0.52843493,0.032733403,0.38635513,-0.37904787,-0.21678329,-0.12633795,-0.7445362,-0.1894098,0.23411442,0.12039632,0.08660423,-0.17792933,-0.3331846,0.06461694,0.40658128,0.16193382,-0.54396087,-0.014176737,0.2622292,0.33510184,-0.0019185245,0.106835164,-0.42149398,0.38375282,-0.8706186,0.37535524,-0.4498237,0.14335833,-0.4232006,-0.39376244,0.14984863,-0.110469855,0.48022866,-0.2846162,-0.270081,-0.2503136,0.5724029,0.289512,0.1978784,0.6907306,-0.20625119,-0.19337375,0.073751934,0.5991464,1.254609,-0.2299118,0.024480745,0.24918015,-0.44692507,-0.8312556,0.07018789,-0.47612265,-0.12209249,-0.17804147,-0.42759454,-0.45811093,0.1322956,-0.0102491975,-0.054906204,-0.08590606,-0.47225142,-0.20792882,0.21149512,-0.2899816,-0.2645003,-0.34893215,0.17111988,0.62799686,-0.14422582,-0.3926467,0.051302265,0.41895998,-0.24362199,-0.60237217,0.25497904,-0.20043059,0.40928492,0.031067938,-0.4189254,-0.20099688,0.18265946,-0.47601888,0.3428775,0.2225967,-0.3702742,0.047229648,0.024482826,0.051165204,1.0205176,0.089435376,0.31851855,-0.6080115,-0.5248552,-0.83573526,-0.49324524,-0.026153306,0.08012241,-0.32835296,-0.6159475,-0.13545339,-0.2947629,0.14095713,-0.026536876,-0.46547535,0.206738,0.1181973,0.5700167,-0.28586343,-0.7720472,0.0028159935,0.3016025,-0.040957402,-0.40232858,0.35516056,-0.12874503,0.8711748,0.09082528,-0.017022401,0.037951294,-0.7016503,0.35314706,-0.24656248,-0.27761635,-0.49138948,0.24442486 +801,0.57593626,-0.2969056,-0.3204511,-0.1750253,0.036240768,0.12829447,-0.111823596,0.59001493,0.4278498,-0.49875712,-0.16213931,-0.16444731,0.09974986,0.254851,-0.17967589,-0.6653155,0.0430893,0.08389237,-0.2873309,0.43124557,-0.63752085,0.12635282,-0.08112318,0.51725805,-0.018527979,0.09890362,0.18288745,-0.04424146,-0.13064332,-0.2166065,-0.21267943,0.33263716,-0.47456005,-0.0059300563,-0.24908046,-0.48844847,0.049086113,-0.5586955,-0.47763905,-0.7869015,0.4061626,-1.1188005,0.58808744,0.1705393,-0.22997569,0.4913105,-0.14137626,0.053529512,-0.15345049,0.02129054,-0.044583272,-0.22667117,0.10759872,-0.35557452,-0.20056134,-0.2910103,-0.55516833,0.09633401,-0.41609946,-0.15973376,-0.30615553,0.020961607,-0.39817682,-0.04630923,0.008782119,0.4814655,-0.40813276,-0.13189441,0.18242109,-0.15590718,0.37364855,-0.4700502,-0.24907015,-0.059707303,0.20798707,-0.28814772,-0.32061625,0.19687754,0.37037277,0.58789825,-0.04392918,-0.23912255,-0.37570342,0.1569126,0.040622007,0.52166355,-0.26198325,-1.0626062,-0.2798012,0.061655283,0.29645982,0.31827208,0.09630852,-0.047050875,-0.06709996,0.098129295,-0.24637093,0.74002343,0.6634473,-0.5249875,-0.26582086,0.263639,0.49295947,0.053151965,-0.084617965,0.01672242,0.052217644,-0.600429,-0.11146673,0.09481368,-0.21637072,0.672348,-0.25310186,0.36286703,0.6822779,-0.33215442,0.03084293,0.13534386,-0.008821438,-0.23973267,-0.31186515,-0.16216822,0.3786489,-0.46867666,0.034423616,-0.34618893,0.8582842,0.08699135,-0.75988144,0.33956516,-0.5251337,0.10158511,-0.15858927,0.67355114,0.5309176,0.41619897,0.54251367,0.7158677,-0.5937765,-0.04264954,-0.09979832,-0.39592287,-0.0742216,-0.19738571,0.05882393,-0.48644248,0.028829262,0.15689087,0.003546983,0.22062235,0.33083373,-0.57181126,-0.054911975,0.18073519,0.8922948,-0.2633866,-0.064397275,0.9344329,1.1705785,0.93392366,-0.02264676,1.2459292,0.3526419,-0.3210237,0.18695207,-0.14175424,-0.8333282,0.35843745,0.3081266,0.077189304,0.4206784,0.09616989,-0.045047294,0.23457499,-0.49401188,-0.14543451,-0.19111003,0.21857081,0.1325946,-0.13238318,-0.4596534,-0.05937411,-0.16501614,-0.10516816,0.24024145,0.19302581,-0.13685405,0.570887,-0.037961114,1.2038409,-0.01760836,-0.01458669,-0.12632465,0.53508013,0.1737023,0.21908599,-0.053151857,0.34385416,0.27246,0.2437361,-0.5807889,-0.021817923,-0.2327231,-0.45476758,-0.10154724,-0.2803401,-0.01996093,-0.048776284,-0.34471324,-0.17157145,-0.22893052,-0.23192392,0.39131466,-2.8378506,-0.3147157,0.06257829,0.36773324,-0.2487061,-0.29344016,-0.104196705,-0.4740089,0.50408256,0.43091226,0.53265464,-0.9379708,0.2919123,0.3915038,-0.49317536,-0.16218053,-0.6718653,-0.11339596,-0.050546512,0.46576074,0.11259543,-0.1612543,0.17358053,0.116547726,0.663374,0.20002262,0.06296388,0.19180696,0.7257119,-0.022307292,0.30582678,-0.0887543,0.5787435,-0.34577504,-0.21761286,0.30703956,-0.4512352,0.23561831,-0.16371143,0.16526617,0.49713764,-0.40968242,-0.9357999,-0.7013092,-0.10988519,1.1640472,0.036363255,-0.6394181,0.07562941,-0.3138046,-0.25811836,-0.18656528,0.46263206,-0.21529932,-0.0747298,-0.74274725,-0.0076992265,-0.11884428,0.018772563,-0.005220353,0.06052963,-0.37343374,0.7634737,-0.080996014,0.19140284,0.33420202,0.18237592,-0.40176025,-0.71337813,-0.020473251,0.89627147,0.28377166,0.3186761,-0.3234698,-0.11645617,-0.31767264,0.029777413,0.078954816,0.60078114,0.75925404,-0.07993743,-0.02572532,0.34388304,0.07852396,-0.06666348,-0.17131615,-0.3185161,-0.24346597,-0.12838715,0.7357702,0.76348567,-0.39102748,0.4229585,0.04436953,0.15951502,-0.26321718,-0.2507622,0.68454266,0.79845524,-0.091896065,-0.2687878,0.5645241,0.48483744,-0.38923967,0.38686025,-0.6341712,-0.44813862,0.3751196,-0.2100659,-0.4738861,0.22400886,-0.2984002,0.15678784,-0.92588335,0.34348503,-0.17985038,-0.42585054,-0.73804545,-0.034436733,-3.5352447,0.30981994,-0.29071054,-0.17661335,-0.24147336,-0.09186206,0.12126201,-0.4946929,-0.5297413,0.1946197,0.06115945,0.6610511,-0.08504236,0.23487616,-0.24291837,-0.1656696,-0.3151911,0.03834791,0.16722609,0.28554347,0.10441092,-0.34379187,0.038303643,-0.058766708,-0.460573,0.1966846,-0.485711,-0.4575574,-0.027454684,-0.46778992,-0.30622587,0.67574805,-0.25930613,0.062284257,-0.3356615,0.086164914,-0.11570228,0.4728533,0.0033702422,0.007085947,-0.04187877,-0.072899126,0.14536922,-0.21827863,0.38150212,-0.012431562,0.27370852,0.47597012,-0.3349564,0.060551625,0.5053961,0.7253688,0.060516506,0.84396607,0.3246822,-0.046258938,0.33996007,-0.18023454,-0.27592856,-0.5833195,-0.40705994,0.0923078,-0.49665514,-0.4459519,-0.08711285,-0.47371888,-0.7577717,0.57224756,0.0031454563,0.3138375,0.10823276,0.6942508,0.7367391,-0.18336427,0.11211777,0.056146245,-0.13578154,-0.48101103,-0.1764955,-0.56019014,-0.5032356,0.017450958,0.5992921,-0.18563877,-0.032414358,0.15208732,-0.13011418,-0.075566255,0.012120527,-0.0529583,0.077197336,0.27786037,-0.12829995,-0.75246555,0.45361337,-0.08612842,-0.28786492,-0.66348016,0.08155557,0.64341575,-0.69825345,0.55672187,0.5932841,0.01576575,-0.08378675,-0.46187124,-0.1702249,-0.09626184,-0.1855235,0.39398465,0.23764636,-0.7685378,0.57027054,0.47470567,-0.186563,-0.6572191,0.46447897,0.11471543,-0.41483817,-0.07363975,0.32103375,0.35238984,0.064893775,-0.17024,0.19421513,-0.586065,0.2504926,0.06380627,0.0346656,0.40539023,-0.029999927,-0.32166156,-0.8207447,-0.1554765,-0.69746524,-0.18796746,0.23209089,0.16899312,0.1410046,0.134552,0.009887199,0.4227679,-0.4150088,0.06843009,-0.06384576,-0.35646746,0.33076867,0.39400157,0.41651675,-0.36180314,0.6436156,0.09771872,-0.09714768,-0.010579243,0.025375372,0.54712933,0.078309,0.39322248,0.26550013,-0.27156717,0.26203874,0.80835444,0.20864911,0.48829687,0.18112266,-0.029346826,0.47173905,0.24593405,0.34243092,-0.023928126,-0.5658731,0.018269897,-0.3088652,0.12635423,0.40477014,0.082554825,0.28395626,-0.045263927,-0.32655582,-0.08097593,0.21281189,0.10915946,-1.3118175,0.18066593,0.16364262,0.83532286,0.22048242,-0.18507688,0.18994431,0.5568249,-0.055499244,0.10278676,0.40206948,0.008588341,-0.5420099,0.6165192,-0.6868682,0.29618442,-0.27042606,0.057898726,-0.05425213,0.06393171,0.39764047,0.63436306,-0.11654634,-0.011845805,-0.16034792,-0.2998447,0.14401054,-0.5316579,0.19288413,-0.53431964,-0.010911405,0.66025585,0.5406407,0.26749313,-0.15785976,0.027975475,0.09634856,-0.0034956213,0.09481908,0.024202505,0.08285003,-0.28565094,-0.8262375,-0.06787903,0.46925518,0.48321256,0.26172987,-0.19253194,-0.11624948,0.3279873,-0.18467446,-0.29966745,-0.13096996,-0.62757576,0.07110909,-0.29853252,-0.5978182,0.55320925,-0.053229555,0.30468455,0.3565495,0.16825087,-0.22143488,-0.007896532,0.1781439,0.7269849,0.05565405,-0.25402775,-0.5371445,0.14249486,0.32617137,-0.2560691,-0.15339303,-0.071147665,0.0012441576,-0.38193655,0.48472747,-0.15667473,-0.3307887,0.11822743,-0.12767293,0.10948617,0.6057376,-0.27740303,-0.09872263,0.0322765,-0.2816003,-0.38234493,-0.12854385,-0.08905417,0.3660663,0.31739444,-0.20361187,-0.14341773,-0.18521278,-0.36720476,0.42582312,0.09126226,0.23848243,0.2982182,0.14906757,-0.2138592,-0.12643468,0.16469854,0.6522509,-0.065429024,-0.24689175,-0.34503475,-0.49497175,-0.33507606,0.044973552,0.057451755,0.24010773,0.0861117,-0.3064337,0.7619299,0.02619666,1.0142117,0.14213644,-0.442976,0.011425242,0.6015365,0.028321764,-0.022802254,-0.49260926,0.971499,0.5678701,-0.25991264,-0.06670258,-0.3689684,0.1426623,0.27479395,-0.17410721,-0.16234228,-0.006575376,-0.6221055,-0.24711154,0.49465832,0.269913,0.26301304,-0.07371167,0.16370836,0.22589503,-0.01579362,0.3648746,-0.56599134,-0.24525507,0.25731203,0.26062647,0.048981164,0.06610412,-0.22996104,0.28919446,-0.53311974,0.064720765,-0.52981776,0.06822625,-0.22704048,-0.29520288,0.31547055,0.008536349,0.33689448,-0.32993153,-0.5434771,-0.0800432,0.28542435,0.1867897,0.09990717,0.42762855,-0.12619077,-0.084819905,0.023601705,0.49774852,1.3026434,-0.08342367,0.06716866,0.46632633,-0.14983444,-0.720753,0.5403672,-0.32485297,0.3505435,-0.06547972,-0.077087685,-0.5369289,0.34098402,0.3980606,0.16368474,0.0057533034,-0.57798076,-0.24703753,0.33274266,-0.32407483,-0.268797,-0.3412163,0.0152412355,0.6687022,-0.19098704,-0.26720446,0.08369067,0.40474162,-0.27075967,-0.68099564,-0.037891056,-0.43527094,0.31224778,0.11196548,-0.2110284,0.09775122,-0.07942372,-0.51414776,0.16567378,0.12859702,-0.40999642,0.031017438,-0.39076805,-0.0013130397,1.0062352,-0.3211134,0.3080763,-0.68505836,-0.3552872,-0.857842,-0.33950153,0.45149365,0.075344086,0.075579636,-0.62584776,-0.01905101,0.01931238,-0.26743212,-0.058232903,-0.3860518,0.5447168,0.15020812,0.54324275,-0.015988236,-0.64810574,0.15397593,0.11507997,-0.360325,-0.6107417,0.55740887,0.061558414,0.73441917,0.047404993,0.13935657,0.4835697,-0.5566581,-0.099327415,-0.2720812,-0.28424776,-0.73965335,0.10860226 +802,0.22927949,-0.052323453,-0.5379839,-0.031738855,-0.3023486,0.20630829,-0.16224848,0.527103,0.26516363,-0.39215487,-0.123413436,0.07847997,-0.001525708,0.30901212,-0.24846938,-0.5157761,0.00912948,0.107450314,-0.5006758,0.6201536,-0.19189243,0.35195458,-0.22503762,0.39061075,0.09676406,0.28410393,-0.20009808,-0.07340859,-0.108619206,-0.1450744,0.04739584,0.46850535,-0.3389391,0.2400344,-0.1980631,-0.23376203,-0.014565659,-0.26016223,-0.2676781,-0.6125861,0.17166437,-0.62560546,0.5777622,-0.11298561,-0.2139813,0.32846263,0.1623474,0.17304207,-0.005444638,-0.05267114,0.015725097,-0.07968,-0.16385593,-0.17965667,-0.33872762,-0.48209584,-0.39982942,0.0950785,-0.6633625,-0.101542465,-0.28168455,0.114409335,-0.2905541,-0.2690677,-0.15212436,0.5884939,-0.39628956,0.10300016,0.101527475,-0.09989519,0.17820075,-0.7112503,-0.15608858,0.1185696,0.20202011,-0.14602715,-0.14059561,0.15315655,0.18310843,0.26166305,-0.054515895,-0.085351184,-0.33291814,-0.15724207,0.23125719,0.45229504,-0.23992032,-0.40161234,-0.01518953,0.12260889,0.30115092,0.118350476,0.035129085,-0.17748071,-0.1252856,-0.090308025,-0.18556222,0.4193929,0.41745198,-0.15047589,-0.09635404,0.3870042,0.35230085,0.4108281,-0.30561626,-0.025622992,-0.066662855,-0.4136904,-0.09987744,-0.05981741,-0.065741554,0.3142105,-0.027492631,0.3777998,0.42422274,-0.09597489,0.09025577,0.18615296,0.16726826,0.13047498,-0.2865674,-0.17135672,0.049259353,-0.4186687,0.12078169,-0.12859713,0.57640064,-0.018074011,-0.61299706,0.2645726,-0.5017818,-0.06656027,-0.038846023,0.40791026,0.61593527,0.40317425,0.002231117,0.4537673,-0.18921824,0.0767448,-0.2506217,-0.31452313,-0.06040545,-0.07377962,-0.07410468,-0.5699598,-0.022357965,0.011805908,0.0072053513,0.028620731,0.25731713,-0.5305187,-0.24583955,0.12549436,0.8222555,-0.25753337,-0.20094888,0.69443774,1.0060023,0.82503223,0.02123388,0.9822429,-0.010055762,-0.09003895,0.026021147,-0.2179109,-0.3597652,0.28471968,0.3086913,-0.19952746,0.22967005,-0.032031965,-0.024486113,0.384987,-0.2024593,-0.18738371,-0.24919577,0.21947743,0.17028005,-0.12826699,-0.4234934,-0.35970452,-0.041471347,-0.06592396,0.17762761,0.2400514,-0.22267532,0.19978768,0.1357211,1.3447192,-0.056110643,0.08711682,0.13479927,0.35790065,0.20737974,-0.145926,0.015365283,0.2629683,0.33128807,0.11996942,-0.4988821,0.21273561,-0.26430067,-0.5608977,-0.14133151,-0.2951934,-0.20470734,0.11448323,-0.54955375,-0.14473106,-0.09519026,-0.31423888,0.4249641,-2.8555207,-0.07654881,-0.12418158,0.3284405,-0.16403745,-0.39206874,-0.15031537,-0.2385537,0.43152067,0.26668847,0.39173687,-0.3379118,0.37846002,0.40582624,-0.47656775,-0.12947045,-0.4756772,-0.018991232,0.06668411,0.33633736,0.048896957,0.026746767,0.1377947,0.124537125,0.49368522,-0.23473327,0.18338524,0.38180745,0.29643244,-0.14337239,0.29679972,-0.09214748,0.51090366,-0.23697615,-0.20535952,0.25219718,-0.35335127,0.33223617,-0.107075535,0.19656667,0.4163255,-0.2778336,-0.8830785,-0.5973783,-0.22089437,1.3480428,-0.12601295,-0.44553432,0.23905331,-0.47326833,-0.3675563,-0.061642207,0.58587074,-0.018047057,-0.0760986,-0.7136114,0.08072099,-0.22491659,0.13184713,-0.04269589,-0.032524426,-0.32372415,0.49820346,0.001889962,0.5269926,0.32560202,0.29239362,-0.14943932,-0.16809551,-0.03995894,0.81624836,0.4850693,0.14689782,-0.17261226,-0.18295673,-0.30058897,0.14542082,0.16550423,0.7443984,0.45533973,0.09528872,0.08982927,0.12676768,-0.016999686,0.1900945,-0.2257042,-0.21692394,-0.15186124,0.19653276,0.48540884,0.30525526,-0.052232992,0.49209425,-0.055867385,0.12166293,-0.29981574,-0.34902993,0.31631014,0.7406553,-0.3109857,-0.2717924,0.6772242,0.5756894,-0.0917765,0.27827558,-0.47742635,-0.3445668,0.47150522,-0.26302537,-0.42948905,0.2448483,-0.20734362,0.103558294,-0.8056787,0.2349111,-0.45366043,-0.75399595,-0.3107516,0.055416804,-2.7426538,0.26412192,-0.06247314,-0.22905125,-0.39244118,-0.3778251,0.26463792,-0.442982,-0.49950492,0.1729679,0.17254938,0.6541882,-0.0966649,0.037349768,-0.070859164,-0.5257246,0.008694676,0.18546207,0.0033007383,0.3026841,-0.14548606,-0.36436287,-0.16405007,-0.08175039,-0.28591824,0.24316864,-0.60306007,-0.3579391,-0.13380541,-0.3395014,-0.107943505,0.5393271,-0.40713108,0.074441925,-0.2394877,0.12349025,0.028486552,0.2335535,0.009502458,0.23358856,0.18045072,-0.12357764,0.10519341,-0.2691959,0.33880875,0.111918606,0.3380608,0.4177123,0.005668628,0.28553885,0.5682495,0.53875047,-0.14632295,0.89409834,0.44860688,-0.13134469,0.4526724,-0.27657527,-0.32100013,-0.51007015,-0.30282986,0.089292854,-0.30883026,-0.40407333,-0.15604872,-0.25408775,-0.80245715,0.38109627,0.025068697,0.16758803,-0.14345863,0.42891833,0.5179885,-0.2845786,-0.028850278,0.025321294,-0.11046573,-0.45262465,-0.4412205,-0.46921286,-0.29084927,-0.10617367,0.9856186,-0.3526378,0.18989068,0.029569022,-0.1676636,0.1079367,0.11177159,0.15757395,0.00883534,0.3429498,-0.21440312,-0.5390742,0.3642008,-0.25474364,-0.35097557,-0.36590227,0.28705558,0.60560775,-0.5284042,0.5594019,0.40107816,0.031542625,-0.35257304,-0.5441827,-0.0032302777,0.030879887,-0.20311946,0.34124753,0.33938265,-0.79993504,0.4298418,0.33390376,-0.15489912,-0.6596266,0.5564188,-0.036385886,-0.23033114,-0.06866026,0.37233618,0.22033496,-0.05609112,-0.15489677,0.112256326,-0.3285888,0.2936309,0.048675075,-0.05409197,0.107288845,-0.25404042,-0.076408125,-0.79638666,0.12062152,-0.5224857,-0.32501468,0.20063375,0.055723634,0.08386178,0.1753313,-0.06300618,0.4274325,-0.3948726,0.1252988,-0.20351811,-0.36201152,0.31970844,0.40638047,0.45408556,-0.25396368,0.45969293,0.024477687,0.010373417,0.14917387,0.32903484,0.5547861,-0.057169817,0.42130736,-0.11714174,-0.12371103,0.1685045,0.9027814,0.120730214,0.34026057,-0.1760833,-0.11685285,0.10520943,-0.03872281,0.19892082,-0.13240616,-0.4635562,-0.17764126,-0.15731691,0.10884153,0.5341556,0.11546697,0.2968511,0.037405197,-0.2523271,0.083399914,0.24148948,0.2212464,-1.0870527,0.4960483,0.1617903,0.92456234,0.26317608,0.17915885,-0.016661981,0.5242236,-0.09134241,0.15286914,0.32380515,0.13164547,-0.37066713,0.48058853,-0.73064435,0.37748975,-0.04870228,-0.0836118,0.20598593,-0.07569904,0.38891214,0.9732009,-0.11071637,-0.0065820417,0.17172761,-0.326056,-0.027627159,-0.280505,0.03333467,-0.5589743,-0.40566507,0.4934687,0.50063264,0.35416138,-0.29668367,0.03373726,0.22994992,-0.16778244,0.18020032,-0.020210888,0.16907889,-0.18691431,-0.5247773,-0.023920683,0.4402486,-0.07716034,0.16788305,0.019298172,-0.20832013,0.27946967,-0.028464073,0.08677264,0.098391995,-0.4425111,0.060825665,-0.32965988,-0.535846,0.3098286,-0.36784008,0.14950933,0.12694672,0.06375593,-0.23960342,0.48647115,0.08112018,0.6724204,-0.05995616,-0.08161715,-0.35059607,0.2359926,0.13119346,-0.17877959,-0.372649,-0.23517092,0.13409376,-0.60090005,0.20557325,-0.11953964,-0.20787768,0.004799811,-0.16024822,0.10996438,0.44870389,0.03479351,-0.07456608,-0.0899317,-0.18397634,-0.26250207,-0.28950235,-0.053294133,0.24460869,0.13331051,-0.11781699,-0.15578942,-0.20316489,-0.12171273,0.12416184,-0.07367863,0.40048558,0.37654468,0.11598428,-0.22922039,-0.13187684,0.23723711,0.3816222,0.09435888,0.040569685,-0.23876895,-0.29128966,-0.31880692,0.1678869,-0.059686456,0.26035723,0.1880217,-0.13972887,0.81317306,-0.03416736,0.8980115,0.023309557,-0.29062545,0.14479654,0.32379,-0.048826497,-0.11459513,-0.32059276,0.8810184,0.5097789,0.10207121,0.037436638,-0.26774997,-0.059866983,0.106449686,-0.30018738,-0.03856527,-0.083768226,-0.5564068,-0.24453305,0.14815153,0.2553409,0.08724635,-0.09380832,-0.08050476,0.19679056,0.105021186,0.27304247,-0.57912046,0.026092486,0.19534732,0.182665,-0.049472213,0.2077886,-0.53833604,0.29348904,-0.66280097,0.04933371,-0.14176394,0.13639113,-0.2207845,-0.21221043,0.22859049,-0.13284974,0.30469552,-0.19684741,-0.33448157,-0.27150005,0.27108255,0.0055060824,-0.012107027,0.43050736,-0.2537474,0.12520337,0.08406616,0.5659405,0.8550219,-0.31218046,-0.11051404,0.39212522,-0.3124245,-0.64674276,-0.029246824,-0.36563578,0.26309493,-0.07751229,-0.14190388,-0.30420738,0.2917247,0.21471491,0.08810704,-0.26593328,-0.544401,-0.076041065,0.18000863,-0.27355868,-0.15956697,-0.24770029,0.09138762,0.47993502,-0.26188576,-0.349315,-0.03728238,0.39044392,-0.11870227,-0.45844352,0.17335974,-0.3079351,0.22764692,0.0015388657,-0.3990378,-0.2516769,-0.06494177,-0.44427153,0.14157814,0.20285603,-0.25545517,-0.04641006,-0.19700988,0.1138157,0.7797075,-0.17439884,0.1386889,-0.33831054,-0.51852214,-0.6320784,-0.45010293,-0.020721562,0.22038002,-0.026829457,-0.6582146,0.18843985,-0.09936193,-0.23909266,-0.13345261,-0.31165215,0.39849824,0.11860555,0.327102,-0.27371678,-1.0297939,0.25049463,0.063447185,-0.12975246,-0.4718079,0.41375786,-0.06940265,0.747016,0.07147392,0.05031174,0.13323665,-0.41847852,0.0025104205,-0.11759078,-0.18563214,-0.60802346,0.11481762 +803,0.34318736,-0.27103525,-0.39401805,-0.2307658,-0.4946808,0.07314162,-0.26071227,0.27596658,0.20994486,-0.20808646,-0.08673687,-0.18276523,0.17012902,0.42854393,-0.1192443,-0.42957038,-0.18096027,0.15491554,-0.685414,0.41645834,-0.5722118,0.22465,0.011965976,0.41277176,0.32759184,0.312582,0.22933817,-0.14023446,-0.120562695,-0.074425586,-0.10555253,0.14388627,-0.48896644,-0.06737145,-0.33582053,-0.42921266,0.011368092,-0.51191586,-0.35743332,-0.7048228,0.22156271,-1.0211717,0.5309301,-0.023235826,-0.16788091,0.023037024,0.3524852,0.49945858,-0.25627363,-0.002573953,0.22460191,-0.26475787,0.0011193037,-0.30939192,-0.17713787,-0.4621812,-0.4957305,-0.11743757,-0.5494555,-0.32500032,-0.18944782,0.15631385,-0.34600773,0.097371705,-0.03778855,0.34516972,-0.4896355,-0.052696418,0.3289536,-0.103294276,0.39162007,-0.56111634,-0.045206666,-0.076324716,0.4402743,-0.14741446,-0.1735203,0.42919382,0.29023057,0.3239603,0.12278979,-0.27122116,-0.2434204,-0.24424836,0.03197024,0.45328683,-0.22540665,-0.30028275,-0.28244892,0.08493328,0.38388702,0.42016315,-0.054565366,-0.12067456,0.051236566,-0.026795868,-0.17385925,0.68977666,0.52139765,-0.25322008,-0.30727196,0.22067179,0.6368576,0.16882038,-0.36596283,-0.052398905,0.08465631,-0.5655596,-0.13269371,0.34361544,-0.13063379,0.4487791,-0.13948096,0.18289126,0.8200339,-0.2805241,0.0042171003,-0.033254094,0.060644064,-0.18830611,-0.29059485,-0.23413175,0.15887421,-0.6591099,0.078303955,-0.25930297,0.81645256,0.21283096,-0.5864466,0.31687418,-0.5944561,0.14515877,-0.12937601,0.6081366,0.6395451,0.44785872,0.41546974,0.7613698,-0.13254124,0.20908624,-0.07132299,-0.37253258,0.101577,-0.34171695,0.08015212,-0.5280749,0.029918721,-0.15241675,0.055948567,0.110452555,0.39993802,-0.47199187,-0.061868787,0.38656935,0.77916247,-0.35955924,0.06190403,0.6600164,1.042177,1.1129733,-0.054352257,0.95670354,0.31117585,-0.31930724,0.26725823,-0.3547087,-0.5350534,0.28751782,0.330326,-0.2857395,0.35117444,-0.17438796,0.035730798,0.23380123,-0.5034028,0.10738705,-0.010799583,0.12793891,0.2760661,0.050186913,-0.5531477,-0.27640477,-0.08677461,-0.011612987,0.12054016,0.22041841,-0.19583829,0.40757665,-0.07127164,1.3098485,-0.018725451,-0.062023066,0.08402087,0.79860604,0.10464776,-0.15277249,-0.047931314,0.2084232,0.35851136,0.13023497,-0.59611255,0.2626688,-0.29598764,-0.46976092,-0.15676075,-0.39326122,-0.104210965,0.053342912,-0.48759058,-0.17646986,-0.08318793,-0.301859,0.47161618,-2.8238194,-0.36309084,-0.16739413,0.287333,-0.29082564,-0.17543603,-0.0710727,-0.56422925,0.26705208,0.25644866,0.42784217,-0.74703103,0.46663585,0.5599249,-0.64668167,-0.07733314,-0.83792305,-0.18852457,-0.07503058,0.48182064,0.05491712,-0.100724116,-0.0027069966,0.3068138,0.6784205,-0.015807109,0.10115003,0.31681803,0.3157002,0.112864524,0.6840303,0.017557537,0.44581586,-0.45419624,-0.1590635,0.3572869,-0.25135818,0.11421759,-0.14305201,0.10671625,0.6933796,-0.50531375,-0.90763825,-0.6680334,-0.19914058,0.94338876,-0.21083497,-0.42924303,0.1241158,-0.4015566,-0.053094156,-0.09574518,0.5632964,-0.052634694,0.06582423,-0.72460943,0.08388826,0.051367037,0.09236577,0.030230427,0.08526314,-0.31169832,0.6608219,-0.06329804,0.4394795,0.20802674,0.20029452,-0.31362307,-0.43305486,0.08076707,0.6911747,0.30344453,0.075536124,-0.25922424,-0.2506208,-0.18876831,-0.12595436,0.012859727,0.3501379,0.83437866,-0.13173869,0.14983188,0.36485884,-0.23910908,-0.029197773,-0.07620626,-0.14476135,-0.070174426,0.110864334,0.52956694,0.64322084,-0.017577933,0.57578623,-0.25339535,0.26817667,-0.09250318,-0.48142242,0.5785803,0.73123056,-0.1581125,-0.087118484,0.40221688,0.61117804,-0.41125157,0.47705778,-0.73667806,-0.27117628,0.6389529,-0.2545469,-0.4231983,0.10904615,-0.27526447,0.25019333,-0.74934113,0.21160068,-0.31535068,-0.41309536,-0.5161328,-0.11463437,-3.0852325,0.23129629,-0.19618085,-0.13321787,-0.18464263,-0.13159606,0.22201808,-0.5548271,-0.49391803,0.10986953,0.20993513,0.76575905,0.0028727034,0.105013646,-0.33101216,-0.205367,-0.2533865,0.179792,0.2600765,0.36741763,-0.22698593,-0.55248034,0.12481771,-0.2024044,-0.58517176,0.11204211,-0.6155007,-0.46360067,-0.10941831,-0.46627495,-0.42051035,0.60530627,-0.21820995,0.13228218,-0.23577677,0.06511662,-0.052067433,0.2913807,0.20949061,0.036907706,0.18408576,0.024608443,0.20969859,-0.3806867,0.48344374,-0.050463226,0.35065565,0.13221806,0.13505861,0.19386335,0.59428346,0.5560535,-0.11762689,1.0683535,0.47205594,-0.07964557,0.115357645,-0.24022684,-0.2342946,-0.5492505,-0.25801596,-0.11148872,-0.38243192,-0.4423343,0.06955169,-0.2909716,-0.78112036,0.7489905,-0.093729086,0.37362102,-0.024086865,0.3093017,0.4668942,-0.22405557,-0.018314803,-0.082849815,-0.14282036,-0.560216,-0.3314196,-0.76904964,-0.5677839,-0.05114871,0.91126096,-0.21772483,-0.026279194,-0.088662274,-0.3882487,0.09764036,0.15745075,0.013716682,0.3352952,0.43691844,-0.13257284,-0.67357296,0.34040722,0.013981384,-0.047737937,-0.46191397,0.087530166,0.7557266,-0.71076113,0.38859692,0.4194013,0.027123729,-0.2550518,-0.39940056,-0.19313517,-0.086877,-0.27179196,0.4291473,0.037365373,-0.8201024,0.57647926,0.21984035,-0.3969421,-0.6251123,0.54108846,0.036106307,-0.36873704,-0.016451376,0.2527251,0.20233384,-0.10377059,-0.3188076,0.27203855,-0.38001233,0.12431939,0.15396854,0.04698939,0.41875026,-0.10589967,-0.32883018,-0.81428707,-0.06696986,-0.51089793,-0.27412257,0.4642512,-0.016323008,0.08638279,0.28530967,0.08955768,0.26534402,-0.14284854,-0.0019576787,-0.091958396,-0.3396958,0.22894292,0.39090812,0.38925993,-0.42345238,0.6321736,0.031951945,-0.156085,0.16670975,-0.12538883,0.32154432,-0.010870639,0.42164344,-0.048841946,-0.34904262,0.38806096,0.7040717,0.32720798,0.37596464,0.09168053,-0.05931994,0.4110457,0.034287624,0.055549916,-0.08346065,-0.3119632,0.0016815146,-0.18436308,0.08850875,0.38795602,0.16395648,0.38535246,0.026124204,-0.23181503,0.016959775,0.049849495,-0.20647888,-1.3445653,0.31365153,0.29424208,0.80757946,0.4680276,-0.04457366,-0.089758,0.79432106,-0.38537148,0.02065614,0.5325512,0.13326642,-0.38505515,0.7509677,-0.6787972,0.6209474,-0.07601248,-0.07660923,-0.02856534,0.2084888,0.43271643,0.72721726,-0.269311,0.08219035,0.043570068,-0.28993362,0.20449467,-0.35827368,0.05326031,-0.5342576,-0.19353785,0.7746521,0.31504318,0.4009673,-0.024672087,-0.084838025,0.035406776,-0.13217108,0.36373004,-0.030498499,-0.062114216,0.084848605,-0.67847,-0.09420528,0.3944723,0.053406548,0.18540137,-0.10269764,-0.24786541,0.04645878,-0.1874155,-0.019129975,-0.034296367,-0.6651861,-0.024879638,-0.2508955,-0.56881267,0.64225525,-0.35946184,0.25258464,0.20948371,-0.011100087,-0.12647639,0.28615758,0.18558206,0.72245824,0.008194466,-0.30692673,-0.21624465,-0.08671189,0.26430452,-0.24227375,0.04519825,-0.29944327,0.09367654,-0.59554344,0.7041931,-0.2033222,-0.47868174,0.22467525,-0.23173405,-0.009685371,0.64524424,0.023036735,-0.14787968,-0.00973742,-0.05398054,-0.39048386,-0.06924704,-0.2601974,0.22780535,0.30082405,-0.16063659,-0.18226375,-0.30475992,0.021102227,0.7713181,-0.1069187,0.5567034,0.24644595,0.06166797,-0.27397224,0.041085593,0.17212589,0.53868765,0.06425382,-0.14116327,-0.45554596,-0.22163065,-0.16292956,0.17998429,-0.008960876,0.22121437,0.073448926,-0.29529735,1.009282,-0.30674335,1.1513332,0.19747019,-0.43245456,0.105131425,0.45397434,-0.009177323,0.032973718,-0.34007156,0.70402324,0.5317229,-0.1648451,-0.20611885,-0.47117516,0.03457533,0.30040407,-0.26823112,-0.16336296,-0.11577416,-0.45656377,-0.47817463,0.34405422,0.17946145,0.3477294,-0.15089433,0.117993005,0.10830916,-0.002126319,0.49080485,-0.50844437,-0.10299315,0.22183532,0.24988016,-0.17000195,0.18471608,-0.44491875,0.40674585,-0.60084045,0.13426861,-0.47163385,0.17740634,-0.3189747,-0.39295524,0.17790715,0.07009606,0.32788607,-0.12700614,-0.3635081,-0.12636675,0.5018266,0.14325537,0.23892972,0.5996723,-0.23920444,0.03223199,0.009182858,0.42606455,1.3176156,-0.39528254,-0.07253957,0.27651054,-0.39514574,-0.5771896,0.4440071,-0.40109977,0.011153865,0.17597976,-0.29077855,-0.4125798,0.2370916,0.17880899,0.050822895,0.007537667,-0.4732666,-0.19853334,0.3175965,-0.2666511,-0.25174955,-0.27674678,0.36835966,0.5013701,-0.22101846,-0.2143773,-0.013102007,0.4691606,-0.22963336,-0.31690484,0.039902084,-0.2287757,0.34004173,0.036338918,-0.37334722,0.038492545,0.089647815,-0.48944128,0.029442945,0.25686526,-0.5360761,-0.00028773546,-0.18948016,-0.002678911,0.96529377,-0.20986165,-0.063639075,-0.45466486,-0.3613471,-0.9628987,-0.33238068,0.27638522,0.22392067,0.08147766,-0.33788723,0.060348526,0.00083349546,-0.39256898,0.102373786,-0.57839656,0.39869386,0.17574787,0.41138455,-0.15846096,-0.8020822,0.023206003,0.11254452,-0.19219635,-0.5292599,0.7318963,-0.07773391,0.87654465,0.10302995,0.02353651,0.055030167,-0.216553,0.18226989,-0.35794646,-0.23559086,-0.881901,0.00025084714 +804,0.41489154,-0.28921166,-0.3833222,-0.09523822,-0.325296,0.13222052,-0.28805178,0.52091867,0.101646684,-0.33987692,-0.1169752,-0.2657524,0.10633237,0.4625784,-0.21417737,-0.6063879,0.109062694,0.20453149,-0.51446176,0.43986145,-0.44687036,0.4309812,0.16375631,0.23687826,0.11597324,0.18698505,0.26484153,-0.12519632,-0.10158102,-0.22580458,-0.22043523,0.24396521,-0.4486579,0.16367984,-0.26023307,-0.43917146,0.15014143,-0.4816699,-0.37401867,-0.68842155,0.094283506,-0.6767873,0.5972425,-0.029527545,-0.3152001,0.14206873,0.05776772,0.4447217,-0.18097715,0.11068806,-0.005860187,-0.13415994,-0.08888066,-0.18194894,-0.24924111,-0.48017645,-0.48227048,0.08731894,-0.5308914,-0.30450705,-0.08566253,0.15427223,-0.18409652,0.11059341,-0.11729019,0.45510936,-0.4789196,-0.038880944,0.2607348,-0.18073334,0.19324027,-0.53156203,-0.022959277,-0.07608764,0.28088647,-0.22236541,-0.30534348,0.089762315,0.33431834,0.45439392,0.018002553,-0.2249097,-0.20577969,-0.21789563,0.027405094,0.65835524,-0.10912271,-0.6156086,-0.28995723,0.015417685,0.3359147,0.1686042,0.069732025,-0.41469774,-0.14930585,-0.052475847,-0.38613302,0.2963287,0.45560837,-0.5585467,-0.23742092,0.30500597,0.5618114,0.11601229,-0.13166477,0.2503369,0.020546732,-0.4873861,-0.041599162,0.16639005,-0.1259679,0.5816256,-0.13575439,0.22348407,0.600853,-0.0840428,-0.027473103,0.039595753,-0.041202668,-0.09338707,-0.19551343,-0.19113666,0.30698153,-0.4551875,-0.0011128336,-0.33925903,0.8131945,0.19281492,-0.6383775,0.37228587,-0.5812083,0.15170157,-0.024946153,0.5940583,0.6400423,0.34305197,0.16963425,0.61675733,-0.41970566,0.13075286,-0.27072713,-0.34462982,-0.006481895,-0.08997071,0.05179608,-0.49552274,0.12128067,0.027551785,-0.03193891,0.19488236,0.34841385,-0.63454294,-0.11429771,0.04034745,0.71876013,-0.3095686,-0.09663148,0.79197747,0.9404379,0.8052958,0.0056522917,1.2814988,0.31062657,-0.1260804,-0.057523627,-0.29277316,-0.33381507,0.21809071,0.3573642,0.13257264,0.2858572,0.09454629,-0.030770496,0.46909028,-0.29443088,-0.006198406,-0.17434637,0.046375237,0.047425695,-0.011917364,-0.52057135,-0.17648514,0.111344025,0.038434684,0.25399953,0.32859123,-0.22181909,0.48890227,0.12917931,1.3198001,-0.04055175,0.09803897,0.09511553,0.32329258,0.2957834,-0.015401404,-0.031003498,0.31053036,0.3677889,0.03349956,-0.46593097,0.123708665,-0.21382043,-0.41035408,-0.09145737,-0.26346272,-0.16608828,-0.010018872,-0.5324988,0.014653716,0.08834213,-0.20350468,0.5252407,-2.804213,-0.34510583,-0.14677018,0.3138674,-0.24558815,-0.40557408,-0.09584764,-0.47598213,0.4085952,0.37687874,0.48493567,-0.685772,0.46759275,0.38752785,-0.35925382,-0.21347697,-0.64407665,-0.10358382,-0.023103558,0.43817532,0.05941665,-0.10368827,0.042624444,0.16080269,0.5737518,-0.08712177,0.09470466,0.07726047,0.28692034,0.14720517,0.4376366,0.15528002,0.5835788,-0.21515155,-0.21466058,0.3623916,-0.26379323,0.2932186,0.022386566,0.18384609,0.34238705,-0.2988563,-0.84640765,-0.68714863,-0.31783348,0.88392305,-0.19502267,-0.46358642,0.107317336,-0.09070654,-0.283165,-0.03588619,0.4092096,-0.08809514,0.08376394,-0.7442136,0.018160032,0.04749155,0.24923177,-0.061966285,-0.060900513,-0.38434476,0.5352226,-0.19701134,0.355392,0.38647395,0.2515996,-0.18884411,-0.47156072,-0.020525236,0.97932696,0.3826713,0.18390842,-0.14186658,-0.21144474,-0.30290785,0.010221951,-0.01654067,0.64622575,0.73271257,-0.026006669,0.096178174,0.23965992,0.04947351,0.06195891,-0.21340679,-0.31295073,0.023008365,0.055064823,0.5886235,0.491234,-0.06711812,0.58164454,-0.091468714,0.39457506,-0.20636833,-0.5302958,0.5137793,0.8086971,-0.34118375,-0.24471134,0.6084025,0.45558387,-0.21827789,0.35838613,-0.76590496,-0.33761004,0.40055615,-0.1902294,-0.4865457,0.36953336,-0.20270942,0.17018962,-0.87024295,0.30468592,-0.14724639,-0.48985088,-0.52073234,-0.09179017,-3.638503,0.19794184,-0.07245327,-0.14388311,0.032657534,-0.27356035,0.13650912,-0.4433405,-0.38306803,0.1729928,0.1211117,0.5459125,-0.05648867,0.050172426,-0.36080942,-0.34773493,-0.10048803,0.27740788,0.025457941,0.27981973,-0.18821482,-0.39826894,0.1385577,-0.23790154,-0.4781058,0.14269693,-0.69029725,-0.4175826,-0.15605228,-0.48284113,-0.28724918,0.6497687,-0.53717035,0.16374905,-0.27504873,0.10902497,-0.14847404,0.32155985,0.1581781,0.08428637,0.049568437,0.025858521,0.0460895,-0.38498583,0.24532044,0.13187715,0.10149163,0.30212712,-0.036211118,0.19042721,0.48983198,0.5852039,0.042507365,0.7293284,0.33304152,-0.0022993265,0.28826505,-0.19425225,-0.3841195,-0.48316494,-0.3714931,-0.14986677,-0.45490253,-0.42635965,-0.20704821,-0.25965655,-0.6835227,0.661279,0.079161346,-0.081359945,-0.1840648,0.4246099,0.48578128,-0.38065043,0.019062918,-0.0016075,-0.06951469,-0.48260337,-0.3852647,-0.7031079,-0.48230854,0.06496173,0.8452559,-0.188196,0.039505154,-0.025890611,-0.032966226,-0.05732097,0.2010085,0.21910019,0.22280192,0.45013055,-0.35984153,-0.67273986,0.4897518,-0.3117975,-0.44840676,-0.58914244,0.23075733,0.6649603,-0.6308621,0.4245214,0.42433563,0.08607298,-0.14606823,-0.42304644,-0.19416116,0.13247955,-0.26602143,0.49530783,0.08985448,-0.74072254,0.5069396,0.28607333,-0.20663482,-0.68632805,0.5872117,0.01696056,-0.321985,0.1241216,0.36947817,0.19302337,0.044178784,-0.16242056,0.044544186,-0.4177068,0.23162118,0.34596947,-0.044836156,0.47103667,-0.277239,-0.10135223,-0.7883715,-0.21490327,-0.5308448,-0.2054712,0.06754934,0.077761166,0.12465774,0.12117117,-0.091376245,0.39476043,-0.38202688,0.13406436,-0.12280846,-0.23842412,0.3796098,0.48212963,0.26830548,-0.23401123,0.59987473,-0.013942296,-0.074379005,-0.19335642,0.03145225,0.5331439,0.14105684,0.43172607,-0.14612705,-0.2034831,0.3532593,0.6938019,0.26132676,0.31818447,0.18601999,-0.09373574,0.22260854,0.15732893,0.14719273,0.08337092,-0.36952066,-0.113251075,-0.21520472,0.123507485,0.4877729,0.09532962,0.40859455,-0.04416489,-0.38187066,0.09517685,-0.061082195,0.09002426,-1.2163013,0.19579147,0.17415136,0.6644647,0.36219496,0.1912309,0.020787347,0.5189883,-0.2637261,0.0116333775,0.25878733,0.055091716,-0.3550352,0.5858137,-0.7555504,0.5287497,-0.21347293,0.012680472,0.098050565,-0.09675534,0.39153203,0.9344466,-0.14915633,0.07345813,0.0055169035,-0.19811156,0.08435064,-0.38835302,0.09201314,-0.48642737,-0.30003083,0.7133609,0.44019514,0.40561998,-0.20730346,0.0075403955,0.22385918,-0.12948951,-0.00013307482,-0.01582532,0.22697936,-0.14283016,-0.5016991,-0.24724552,0.6003587,-0.09061898,0.06964953,-0.008391801,-0.23827049,0.22660941,-0.0794934,-0.042451985,-0.076026574,-0.6459723,-0.06544575,-0.3177713,-0.47464973,0.47070518,-0.2662516,0.20924145,0.10052812,0.06608186,-0.33165154,0.5132811,0.20756263,0.86072624,0.1056356,-0.10471879,-0.20270357,0.08619109,0.30688664,-0.18368086,-0.17257635,-0.27104115,0.13143606,-0.6573467,0.3353851,-0.13173115,-0.29561055,0.07541364,-0.045628995,0.029462788,0.39774013,-0.091845736,-0.2909457,0.29140517,-0.10051116,-0.17218713,-0.12981926,-0.1908727,0.25300655,0.24603364,0.02116875,0.004510559,-0.124423675,-0.22195956,0.35435525,0.06459697,0.40944973,0.31257075,0.13929829,-0.36405012,0.08178699,0.0116150305,0.3733068,-0.12128095,-0.10624411,-0.19427155,-0.5441491,-0.35448056,0.006317094,-0.047837675,0.2995219,0.04409621,-0.2739235,0.9010659,0.011928827,1.201954,0.015967399,-0.46261835,0.16636795,0.5133096,0.045359403,0.06398073,-0.2664657,1.0001338,0.4454161,0.026377779,-0.11010928,-0.29186016,-0.035354055,0.15892659,-0.16354552,-0.2069763,-0.019205863,-0.46268928,-0.2343073,0.3255293,0.28272766,0.23382388,-0.011810057,0.15783714,0.23996285,-0.015472699,0.35910913,-0.5639085,-0.005985856,0.31702965,0.37710842,-0.13654989,0.07362668,-0.32776836,0.5007202,-0.58546287,0.06932199,-0.5148592,0.08963892,-0.13569969,-0.25232804,0.1359631,-0.009434,0.31311178,-0.4183327,-0.36478102,-0.30590975,0.5168811,0.15037334,0.072905436,0.6856164,-0.14182597,-0.035481352,-0.036642298,0.5160688,1.0947224,-0.52011096,-0.06886022,0.44745174,-0.28690773,-0.50426304,0.23306942,-0.44874564,0.20113553,-0.04486981,-0.16177511,-0.41997212,0.32429016,0.20688239,0.027892802,0.035041645,-0.51036906,-0.042355932,0.46804035,-0.33647072,-0.27512032,-0.3609946,0.37535825,0.5781735,-0.25162965,-0.49557054,-0.028485958,0.3214203,-0.30034703,-0.6470588,-0.020175144,-0.25176698,0.3275437,0.19929886,-0.21347591,-0.073170915,0.04401159,-0.44723475,-0.04791934,0.24606374,-0.30326337,0.21072364,-0.24860041,0.0023859143,0.8301906,-0.11329587,0.21204558,-0.7871852,-0.55752325,-0.88777906,-0.42339337,0.5591908,0.28199142,0.023966433,-0.5786773,0.0070029683,-0.16542114,-0.14376229,-0.022198267,-0.21770072,0.46008196,0.16349204,0.507769,-0.11963627,-0.8483323,0.03123407,-0.038103916,-0.2066577,-0.50425935,0.43277818,0.10234642,0.84089005,0.1063672,0.10128541,0.37798598,-0.5043859,0.044355728,-0.4265206,-0.15375946,-0.8455329,0.13134426 +805,0.39348415,-0.27130333,-0.5668465,0.01961893,-0.22860694,0.08443393,-0.31967053,0.27371386,0.22986843,-0.40932888,-0.12406812,0.056832902,-0.06394507,0.2028928,-0.14981234,-0.5732874,-0.10850907,0.2302024,-0.5367752,0.8402818,-0.14518876,0.18704288,-0.21520294,0.4216493,0.34342545,0.445997,0.06438689,0.095259905,-0.18320605,-0.21838729,0.043986168,0.094892845,-0.7252234,0.41364792,-0.2538253,-0.25629327,-0.02288787,-0.40223822,-0.24155697,-0.83462745,0.4553399,-0.7665078,0.46603087,0.023470402,-0.2138246,0.22470212,0.38761917,0.3666728,-0.18324968,-0.17213818,0.204928,-0.15104331,-0.026269099,-0.36483866,0.12318497,-0.26884976,-0.39406583,-0.124738775,-0.39919725,-0.073300876,-0.41050345,0.27689132,-0.30096006,-0.08646136,-0.2006748,0.4077043,-0.46095565,0.046187755,0.13784729,-0.16156332,0.2319489,-0.7966652,-0.28891483,-0.032859378,0.41713616,-0.025806788,-0.11020112,0.56635875,0.03319826,0.1687497,0.11105324,-0.23393607,-0.37691,-0.12440549,0.28882146,0.43980902,-0.17906234,-0.35910437,-0.20934704,0.0055582267,0.39096302,0.18698673,0.11724293,-0.17491327,-0.009402876,-0.047513165,0.0015419892,0.5303841,0.45478868,-0.1754005,-0.13022254,0.24908319,0.59865564,0.43221325,-0.28026,-0.23278356,-0.09821465,-0.35943922,-0.15145303,0.14317311,-0.13296564,0.4435207,-0.07742249,0.25419375,0.6483204,-0.026961628,0.0061176782,0.12694588,0.29513508,-0.06408744,-0.30884123,-0.3490282,0.3594598,-0.5053857,0.27509445,-0.29964837,0.47795683,-0.02517615,-0.5814866,0.112595275,-0.60397375,0.12442994,0.047321703,0.4629128,0.6466656,0.4182219,0.27726534,0.87262356,-0.32996613,-0.057801735,-0.14106186,-0.25688753,0.0867952,-0.26582232,0.0034412998,-0.4810443,0.09475867,-0.018125935,0.05251606,-0.009727584,0.42691216,-0.5560958,-0.22229682,0.026321685,0.78449523,-0.20884548,0.18137184,0.83322036,1.1044768,1.0701591,-0.030850526,1.0590059,0.032888148,-0.34470955,-0.057716973,-0.22151089,-0.646357,0.21765442,0.44519717,0.1366249,0.4098625,0.15132415,0.0055718245,0.2833953,-0.42864564,-0.11217586,-0.092749834,0.30778044,0.12432616,-0.11339208,-0.37635878,-0.15672038,0.07163368,0.020389998,0.1530536,0.16491382,-0.38549516,0.32821232,0.080586925,1.4721183,-0.14476578,0.009379183,0.17574228,0.48148677,0.2986079,-0.18758371,-0.07390438,0.46456257,0.30428538,0.039958738,-0.5991296,0.14884497,-0.40179372,-0.49137565,-0.07273282,-0.40335554,-0.15483867,0.06367159,-0.20834391,-0.24181819,-0.09282543,-0.18887496,0.33241838,-2.7809956,-0.18225336,-0.15624775,0.32141107,-0.32043776,-0.2111499,-0.10643164,-0.32926384,0.5372152,0.25706676,0.5855909,-0.42063552,0.19061525,0.37114722,-0.83468086,-0.051840927,-0.3833097,-0.0893204,0.0028282541,0.6003627,0.064812854,-0.1980474,0.027195266,0.20284274,0.45586997,0.10832369,0.1399972,0.47477618,0.4047692,-0.2606699,0.51262236,0.078710616,0.44133326,-0.3781999,-0.19486725,0.37394795,-0.37229607,0.3450521,-0.19649765,0.02687803,0.58432907,-0.42882422,-0.79655343,-0.59426117,-0.014266695,1.1209924,-0.25125748,-0.71268874,0.059491422,-0.2361582,-0.15090786,0.030795977,0.42746213,-0.10959422,0.025370207,-0.6970268,0.034845937,-0.21596049,0.13691361,0.113042995,-0.09688587,-0.5997693,0.8704871,0.029193958,0.60592747,0.29346114,0.2562175,-0.41136098,-0.34605047,0.16178067,0.6531252,0.53784186,-0.0134187555,-0.19310151,-0.19021747,-0.07882272,-0.27530897,0.26227733,0.7990832,0.44242457,-0.085451804,0.12668134,0.40134805,-0.042411596,0.034416255,-0.21491513,-0.41887373,-0.25030407,-0.13599642,0.4983041,0.72868127,0.0290397,0.21287759,0.111356,0.18412945,-0.015137881,-0.4184492,0.5806044,1.1392704,-0.090121046,-0.22216518,0.56589824,0.48043776,-0.17835662,0.4962785,-0.7278271,-0.36411503,0.63361996,-0.15869592,-0.39792603,0.0053992653,-0.33981198,0.059498783,-0.6428408,0.23885755,-0.5181219,-0.3883666,-0.76346695,-0.15086487,-2.0505996,0.17852715,-0.34542766,-0.12323655,-0.43207356,-0.2936068,0.09237622,-0.7202934,-0.6960974,0.309324,0.10788181,0.7607215,-0.29685435,0.072498396,-0.24967833,-0.3694578,-0.27038878,0.214414,0.11886484,0.36561778,-0.14356054,-0.2671582,-0.10192519,0.09870599,-0.39330631,-0.096470825,-0.45928264,-0.37812948,-0.16300784,-0.61252457,-0.08530816,0.62111557,-0.3832195,-0.024689777,-0.119974,0.011128415,0.03185243,0.17336631,0.10111647,0.3479602,0.31634745,-0.10943961,0.11543639,-0.23591565,0.4321776,0.13703372,0.29868585,0.27574822,-0.35645154,0.20780718,0.346308,0.6183414,-0.11620114,0.8431998,0.47593468,-0.20247175,0.31156138,-0.4186441,-0.4614124,-0.6777715,-0.2671489,0.16255483,-0.24944428,-0.51205254,-0.24994662,-0.3645129,-0.8089455,0.5775108,0.1732261,0.53681767,-0.11360709,0.21093215,0.3840123,-0.23884585,-0.21273302,-0.060631566,-0.1475906,-0.50483376,-0.17015386,-0.59052986,-0.40760782,0.04791326,0.49229544,-0.40973538,-0.036910675,0.3035764,-0.39188072,0.20712027,0.2004914,-0.077485785,0.0015439646,0.46951512,0.26193622,-0.6232848,0.5100827,0.081319585,-0.13478018,-0.47796535,0.47607926,0.44467172,-0.41552004,0.5290896,0.35022637,-0.04818135,-0.25803936,-0.48708275,-0.04292195,0.032343097,-0.21696089,0.5249379,0.2666077,-0.5752826,0.34232888,0.24766813,-0.3619353,-0.7832532,0.6207776,-0.124157675,-0.28319782,-0.18805334,0.43471867,0.24135992,-0.053304322,-0.05114015,0.38759786,-0.40851212,0.38431475,0.084826596,-0.093203016,0.28644153,-0.17676297,-0.30005425,-0.7943683,0.3432372,-0.69513386,-0.27028742,0.5011576,-0.022906156,-0.18444861,0.18283102,0.2686541,0.38699493,-0.33950448,0.12154931,-0.23551676,-0.29117277,0.34759265,0.47654724,0.54665196,-0.65132433,0.4713157,0.06697367,-0.12504837,0.19545467,0.060253162,0.31581968,0.089168236,0.5828396,0.0087052155,0.010766864,0.032534804,0.46339703,0.18949592,0.42110777,-0.052563723,-0.27166942,0.17110421,0.12070286,0.38531297,-0.07737757,-0.6760821,0.1615072,-0.064642966,-0.033350565,0.5588951,0.36085182,0.14280275,0.077432685,-0.36993426,0.04110023,0.25570458,-0.16285999,-1.3401653,0.6198984,0.29799595,0.91393673,0.57185894,0.041873574,0.20724188,0.7351104,-0.0579249,-0.08069668,0.27873328,0.053033113,-0.5386122,0.4507135,-0.7888484,0.42047754,0.078475185,-0.02834776,0.03270767,0.005957663,0.3867333,0.5341678,-0.22633614,0.0062738187,-0.11647506,-0.31739506,0.18373276,-0.18835472,0.32881862,-0.40091035,-0.37266847,0.63096374,0.44461086,0.363732,-0.16562136,0.13907193,-0.0053445995,-0.22207336,0.33295155,0.06534443,0.131554,0.048204012,-0.6085043,-0.16023609,0.489676,-0.2612213,0.16890994,-0.058220256,-0.1781164,0.2657763,-0.069224045,0.15676615,-0.066371895,-0.7789475,0.34382135,-0.23839809,-0.23917235,0.43919644,-0.028234899,0.13518919,0.19123124,0.100954965,-0.16218928,0.34115934,0.037225835,0.71983045,0.032280393,-0.25274906,-0.4679618,0.16281463,0.1321575,-0.14771912,0.22237675,-0.31367365,0.112221844,-0.5880427,0.4603947,0.0015689901,-0.18387452,0.030806443,-0.18134205,-0.14098585,0.58303803,-0.102453135,-0.17605726,-0.111808844,-0.10546923,-0.25979602,-0.5187319,-0.23807667,0.10060327,0.07921302,0.16386499,-0.3915191,-0.07295629,-0.37908474,0.4847354,-0.014309675,0.29551965,0.24805844,-0.12109702,-0.4614289,0.0054426617,0.310359,0.3399554,0.014014683,0.0702616,-0.27308932,-0.68664616,-0.5809546,0.39685026,-0.028836947,0.3171191,0.121216536,0.012139772,0.78177345,-0.19965264,1.0805161,-0.064140156,-0.3757661,0.10719078,0.67761886,-0.25921923,-0.25667912,-0.28912663,0.9069162,0.63854635,-0.06472283,0.118397966,-0.27042395,-0.055857096,0.15116954,-0.3248603,0.13083705,-0.10532563,-0.46474156,-0.38003585,0.0614497,0.33313295,0.15687962,-0.18835568,-0.15993503,0.31854525,0.15111923,0.2330013,-0.3715994,-0.39777914,0.40471596,0.05367992,-0.05525147,0.08184918,-0.52854735,0.55921,-0.54250413,0.20089915,-0.36496434,0.13069153,-0.31849056,-0.3239007,0.20985487,-0.18679115,0.32350373,-0.38917086,-0.40396315,-0.19181646,0.24933794,0.29842672,0.18052152,0.6204335,-0.38581958,0.17668565,0.030221105,0.43468353,0.6175347,-0.26372716,-0.09980122,0.2305845,-0.56080234,-0.56835467,0.2127271,-0.32393605,0.1404268,0.06671063,-0.2039841,-0.5665404,0.16095306,0.017150087,0.06401921,-0.20471154,-0.9953041,-0.29797754,0.13561673,-0.2293768,-0.13261534,-0.2687857,0.08071203,0.7737755,-0.22203423,-0.4755251,0.1271192,0.05241807,-0.090058066,-0.64485866,0.014127762,-0.49706075,0.44780755,-0.091352426,-0.2894509,-0.29294485,0.17354831,-0.464315,0.22827792,-0.014731811,-0.36002126,-0.057379935,-0.15828678,0.1113488,0.84595996,-0.25865814,0.21769463,-0.42967153,-0.36784825,-0.8928372,-0.33490518,0.050464682,0.15742144,0.08010967,-0.66871583,0.0799111,-0.34320596,-0.024242457,-0.12289583,-0.48352596,0.31655887,0.17019285,0.58334583,-0.31797382,-0.90124166,0.4006088,0.25358304,-0.07330676,-0.4410574,0.41474804,-0.15709583,0.7620386,0.11393036,-0.03373254,0.0184568,-0.59345394,-0.034283213,-0.19991226,-0.18110992,-0.678833,0.10134763 +806,0.49451134,-0.19605313,-0.48737922,-0.25508007,-0.4077108,-0.040863402,-0.30086714,-0.023765078,0.19138627,-0.4930157,0.0058543948,-0.2412511,-0.042626757,0.3736775,-0.20715867,-0.60945606,-0.08282937,0.104712166,-0.55456877,0.4802242,-0.49602064,0.26251134,0.23793149,0.39239576,-0.036250357,0.25461242,0.2560229,-0.07201205,-0.16910121,-0.20880239,-0.182111,0.19041674,-0.9950635,0.29728508,-0.2519439,-0.48259902,0.10872696,-0.472786,-0.34268066,-0.7606902,0.18314967,-1.0353569,0.5883222,0.050559305,-0.3287305,0.05104416,0.23652472,0.210578,-0.28795883,0.0617177,0.23540933,-0.4729933,-0.06464111,-0.18236093,-0.1644551,-0.6692957,-0.77987987,0.008707472,-0.67045134,0.0047818804,-0.26259893,0.28270692,-0.37854484,0.02250123,-0.33739778,0.3493854,-0.5937313,-0.07234449,0.07303805,-0.034689743,0.38316494,-0.31164956,-0.16832304,-0.26270372,0.24544416,-0.28035757,-0.26176763,0.3290209,0.26462254,0.6212825,0.05378536,-0.42873,-0.19845462,-0.024726238,0.12943389,0.25619113,-0.047356147,-0.33750528,-0.27770492,-0.058924537,0.2283489,0.39266777,0.086485736,-0.28361896,0.14576264,0.042591352,-0.21781328,0.36925408,0.5183317,-0.4004108,-0.48108783,0.27193254,0.5252821,0.03949815,-0.26490006,0.108898975,0.14213434,-0.49887103,-0.34803414,0.32229665,-0.213963,0.7185956,-0.20340061,0.1266282,0.8124484,-0.32672295,-0.092594504,-0.116923295,-0.24320938,-0.21808288,-0.18269217,-0.17521052,0.37358326,-0.6771153,0.12956937,-0.29512516,0.6536254,0.2197962,-0.83492607,0.32402635,-0.6892933,0.15798895,-0.13767199,0.6797925,0.775438,0.5118937,0.48663542,0.69390213,-0.45019937,0.12416322,0.046594854,-0.52026683,0.20069754,-0.41443625,0.06313624,-0.3406605,-0.097384624,-0.19893172,-0.09159528,-0.25455993,0.44126827,-0.39551464,0.0051790006,0.21749468,0.6537684,-0.35226193,-0.078795485,0.9329285,1.1227233,1.2017481,0.22153656,1.4449538,0.37501785,-0.073714726,0.09063171,-0.020758301,-0.5751718,0.122010335,0.34618074,-0.12022638,0.3489577,0.16321458,0.19247174,0.55754757,-0.45577675,0.037747066,-0.061773684,0.32433048,-0.12776373,-0.0015067969,-0.5864228,-0.27487758,0.095486246,0.012552255,-0.051308326,0.38913473,0.024908384,0.4578968,0.2999112,1.2227075,0.039329905,0.1208112,0.029076593,0.43055853,0.13892333,0.020503355,-0.0055181044,0.20100106,0.30532357,0.12290977,-0.493999,-0.038319003,-0.25511095,-0.4049863,-0.26533937,-0.4238909,0.11463113,-0.3953567,-0.4963522,-0.23967168,-0.0026417163,-0.29061085,0.5490309,-2.181092,-0.23675542,-0.07119768,0.18868221,-0.17610586,-0.31453052,-0.0058364444,-0.6240483,0.33092064,0.293165,0.42299166,-0.7864481,0.50970507,0.5734665,-0.56036764,-0.08823805,-0.8630094,-0.2116981,-0.2051679,0.37783775,0.10836359,-0.30084208,-0.28477877,0.10412566,0.6272548,0.03428682,0.056264903,0.10723199,0.45686626,-0.08788097,0.7904338,0.17223777,0.43737426,-0.311065,-0.16021104,0.5197732,-0.26301995,0.4149776,0.11426942,0.15695974,0.4961273,-0.5719618,-0.97470653,-0.7858301,-0.7483758,1.0745343,-0.42311677,-0.42067614,0.096887484,-0.008452644,-0.2675326,-0.10993768,0.38273492,-0.16462271,0.36185384,-0.775339,0.0049680793,-0.11790674,0.3252326,-0.03133851,0.23768269,-0.5650321,0.69295603,-0.14281203,0.35539323,0.48703414,0.18825948,-0.2459477,-0.5702232,0.1424395,0.9596755,0.39649528,0.072272405,-0.44399843,-0.3841591,-0.009189376,0.00043735333,-0.022167612,0.49063563,0.77883464,-0.18300374,0.026695386,0.45444632,-0.17683746,0.010966857,-0.07191493,-0.26393852,-0.004875958,0.16421212,0.6145769,0.81927407,-0.18421161,0.372977,-0.2354757,0.42906126,-0.030836055,-0.55511814,0.40725332,1.0634869,0.023998683,-0.026310418,0.7544292,0.5219592,-0.45939317,0.6456054,-0.75908834,-0.31746176,0.5209938,0.02593267,-0.50732404,0.03855232,-0.36899862,0.147058,-1.0633787,0.50881886,-0.24790105,-0.40617913,-0.66582495,-0.15868083,-4.060106,0.21430853,-0.12123076,0.01397158,-0.0067865765,-0.29453605,0.5617009,-0.6913494,-0.70828164,0.17319576,0.05303847,0.5132786,-0.17525165,0.1565247,-0.4288797,-0.29260412,-0.34446114,0.4252849,0.36543903,0.14270791,-0.2195269,-0.54189795,0.0048273164,-0.4433303,-0.4923961,-0.088744655,-0.5552999,-0.52055687,-0.039230615,-0.5567337,-0.53585863,0.7467252,-0.23496474,-0.03873185,-0.3326996,-0.030994415,-0.21800444,0.3539067,0.18141238,0.3405049,-0.024491029,0.092766896,-0.28440592,-0.22569095,0.3549203,0.0926255,0.26949948,0.30430835,-0.121156916,0.22989427,0.5531016,0.6248517,-0.08744276,0.9277597,0.26251948,-0.0933386,0.36362246,-0.25141627,-0.45667818,-1.0023059,-0.37619832,-0.17750253,-0.5504947,-0.47753182,0.017297175,-0.34221363,-0.74315816,0.7521557,-0.020508746,0.15065424,-0.29904428,0.23278138,0.3032875,-0.3957913,-0.1046225,-0.17428493,-0.19069825,-0.6079704,-0.5535206,-0.9240891,-0.7003173,-0.1592314,1.179394,0.069536366,-0.13431495,0.17669961,-0.14066984,0.1587064,0.21613714,0.09647149,0.25403523,0.65566903,0.063627586,-0.8032837,0.5386289,-0.03464761,0.014560883,-0.41315344,0.07275777,0.85356766,-0.87909067,0.6705146,0.4339985,0.10004815,0.11006008,-0.7438545,-0.334509,-0.060152233,-0.20500521,0.6986207,0.23144041,-0.85898775,0.45971125,0.1065016,-0.33039004,-0.69246775,0.6490146,-0.008313128,-0.082393646,0.090205334,0.46418414,-0.030063868,0.0547885,-0.08325183,0.37007195,-0.5173628,0.3148759,0.42248252,0.026078152,0.22218171,-0.061835248,-0.19280405,-0.846735,-0.057382457,-0.3738642,-0.41786495,0.08258676,-0.17178832,-0.1311473,0.35894376,0.13661288,0.33494225,-0.27063757,0.13016687,0.0032384333,-0.42527273,0.20290574,0.54194874,0.42267013,-0.5401892,0.80775726,0.18980098,-0.14431214,-0.2497541,-0.043443996,0.36611134,0.09791907,0.22947861,-0.06438511,-0.117293015,0.23899306,0.8672263,0.24925014,0.5456298,0.2407787,0.04620364,0.44127035,0.28003576,0.24330762,-0.043693807,-0.44105104,0.15541434,-0.12427962,0.1251166,0.46783522,-0.02998993,0.2648641,-0.115113206,0.0026048038,0.12917398,0.33858085,-0.17425619,-1.3622313,0.24310783,0.29573536,0.68883187,0.77681315,0.17254843,0.10420469,0.6269968,-0.59754795,-0.10640449,0.43106908,0.18274276,-0.3914345,0.7976695,-0.53733736,0.44862488,-0.06210361,0.04106071,-0.07378994,-0.039603543,0.36186597,0.98628616,-0.17808558,0.2024295,-0.15854406,-0.035487425,0.20514682,-0.4111287,0.12170672,-0.29837343,-0.28234935,0.85398924,0.44906983,0.4200377,-0.20476969,-0.038204405,-0.020705419,-0.21143128,0.29802448,-0.084376685,-0.15342245,0.052283976,-0.5213189,-0.10916003,0.741002,-0.22272049,0.04897984,0.03065088,-0.46615025,0.24660702,-0.019893484,-0.10494258,0.045302022,-0.8020631,-0.24401668,-0.4429479,-0.34122708,0.46197328,-0.45389804,0.16570725,0.16127536,0.054967854,-0.20036756,-0.007325449,0.3161649,0.5371812,0.36507058,-0.0916203,-0.17098412,0.09429116,0.2524027,-0.35533717,-0.06137847,-0.38194758,0.25269178,-0.6218111,0.51741093,-0.23978357,-0.31157112,-0.018900722,-0.15166941,0.043216042,0.53921694,-0.124146104,-0.21968766,0.17951407,0.10304106,-0.19593023,-0.21407464,-0.24817134,0.31837097,-0.008476241,-0.08409234,0.10073231,-0.019870996,-0.054211583,0.5857768,0.03334057,0.25770214,0.20987198,-0.1738259,-0.41849425,0.06446986,-0.15759218,0.4203518,-0.024749067,-0.041889273,-0.20908417,-0.16318725,-0.14948244,0.30545625,-0.13539375,0.13078573,0.008636983,-0.37430674,0.9105922,0.20827158,1.3286928,0.08906432,-0.500834,-0.020377977,0.44810227,-0.14953147,0.020819223,-0.44426277,1.1834519,0.4469311,-0.1947094,-0.26055247,-0.515935,-0.19372073,0.10032622,-0.29994172,-0.13520953,-0.06437347,-0.76047134,-0.105194435,0.17745793,0.39492956,0.11718844,-0.009576751,0.09036837,0.2100625,0.27042642,0.65430444,-0.6082726,-0.1768217,0.41069227,0.34026113,-0.080504365,0.18933299,-0.18696146,0.48931143,-0.5484888,0.15209188,-0.75014603,0.03813827,-0.14290164,-0.37152243,0.19774161,0.025947938,0.31363347,-0.26781017,-0.23238547,-0.2580644,0.6622942,0.13670605,0.21782677,0.9002528,-0.19531927,0.060582362,0.11122312,0.3737883,1.3522993,-0.3762563,-0.071936846,0.22208592,-0.22978494,-0.5110554,0.38591057,-0.58823866,0.011761223,-0.06867421,-0.5018729,-0.45252863,0.17527536,0.11284864,-0.025425196,0.09748508,-0.68584603,0.027167397,0.46835947,-0.26956373,-0.2467809,-0.2964509,0.35856828,0.7625009,-0.38169512,-0.27576798,0.09305849,0.274625,-0.35755488,-0.53590703,-0.05757552,-0.31576762,0.42992398,0.05274757,-0.41797376,0.19451107,0.3408747,-0.36594576,0.04710373,0.60077655,-0.27780244,0.08148144,-0.31355676,-0.012709881,1.2430694,-0.1158795,0.059803773,-0.56721014,-0.6070387,-0.96737516,-0.3383879,0.30195454,0.3002455,0.089284524,-0.26284146,-0.026134044,0.013480678,-0.061063536,0.11976773,-0.56237686,0.36260965,0.12237571,0.64210045,-0.020997813,-0.91759557,-0.03508948,0.07147215,-0.004482963,-0.43321857,0.63919336,-0.2042431,0.7567148,0.1236633,0.1301788,-0.01788996,-0.5413119,0.35646436,-0.2656397,-0.09844448,-0.79289097,-0.12274819 +807,0.6397513,-0.1925478,-0.6394624,-0.13253285,-0.18386579,-0.0506765,-0.07943866,0.5500529,0.29349405,-0.64426625,-0.24893217,-0.16929288,0.038024154,0.24330422,-0.21172324,-0.90777653,0.019678343,0.101854675,-0.41400516,0.48858172,-0.5238981,0.15914546,0.14918557,0.31621554,0.1145769,0.15679796,0.17339937,-0.15515523,-0.220431,0.15904906,-0.052893516,0.34435257,-0.4449689,0.008110234,-0.19610396,-0.39612186,-0.039683245,-0.41634274,-0.3377496,-0.8119191,0.39009055,-0.89988583,0.46319786,0.100383736,-0.259008,0.15577087,0.07559391,0.18482473,-0.28248534,-0.03201451,0.0048166136,-0.027990716,-0.13718908,-0.067832515,-0.2632564,-0.2833899,-0.6739281,0.23138694,-0.49296823,-0.01125524,-0.14440875,0.19310676,-0.5582263,0.0846487,-0.21059607,0.5744089,-0.41198462,-0.09565539,0.4815438,-0.11527365,0.28593984,-0.48169705,-0.13338086,-0.09826419,0.1269318,-0.11802564,-0.29981753,0.25474963,0.3637487,0.7158663,0.121351495,-0.3990277,-0.25296482,0.123257294,0.19369298,0.31089637,-0.24398878,-0.57979196,-0.24966772,0.06828785,0.23844305,0.18973643,0.17974791,-0.34477317,-0.017804436,0.2307203,-0.32932988,0.4011488,0.6056649,-0.26591682,-0.20503712,0.20439093,0.60028493,0.09597756,-0.08728657,0.1267934,0.09307252,-0.5882061,-0.14994603,0.1730149,-0.14148831,0.5289558,-0.29527685,0.28912786,0.7713898,-0.28147545,0.19416723,0.27224734,0.022414036,-0.13856617,-0.516409,-0.058504377,0.15601824,-0.58923477,0.1214632,-0.29268953,0.9933127,0.23579322,-0.6846933,0.40143055,-0.51925504,0.30357736,-0.2296832,0.6708489,0.77749044,0.15696052,0.31003705,0.7925084,-0.5228052,0.11451757,-0.024189869,-0.6304676,0.15596591,-0.14385504,0.11053729,-0.43802866,-0.11387808,-0.0036423604,-0.07765339,-0.038858574,0.5204655,-0.7086157,-0.14517456,-0.12600651,0.917509,-0.28804323,-0.18263814,0.8792539,0.9098247,0.93393415,0.10366658,1.4395896,0.30139002,-0.100318335,0.46489823,-0.27384982,-0.936887,0.43677795,0.25359443,-0.15933505,0.38675892,0.121554345,-0.16103724,0.484581,-0.4271548,0.17528556,-0.32440808,0.2570719,0.07150297,-0.17085983,-0.3049732,-0.19987416,-0.14103238,-0.047378436,0.15558584,0.21685733,-0.10526297,0.40142113,-0.08813461,1.5840077,-0.061498124,-0.015490618,-0.060403887,0.40456626,0.15377471,0.03431309,-0.14960118,0.12999828,0.38632402,0.094753094,-0.62642395,-0.017520476,-0.28814313,-0.33719632,-0.20006806,-0.4243396,0.07695239,-0.23176907,-0.4773407,-0.06288588,-0.2090154,-0.36418667,0.31130967,-2.4638865,-0.32267982,-0.09823253,0.34075263,-0.2528311,-0.35637662,-0.2644889,-0.49698406,0.494909,0.37192237,0.5985902,-0.81811714,0.43098736,0.38834682,-0.521788,-0.04562516,-0.79510754,-0.029057272,-0.06189454,0.27343848,0.11328895,-0.07059178,-0.027640764,-0.028317602,0.55942893,0.019881908,-0.031177778,0.15033999,0.5807911,-0.05696676,0.48754498,0.020345919,0.5919374,-0.35022208,-0.27034932,0.46065938,-0.39173585,0.08367144,0.031698152,0.1287324,0.30363178,-0.44280225,-0.94066966,-0.6853496,-0.2993785,1.0633646,-0.14643306,-0.3478923,0.24259405,-0.35823834,-0.13004483,0.010282384,0.4399947,0.035357706,-0.15026382,-0.8806847,0.10058071,-0.11423857,-0.07360129,-0.013190571,0.122769825,-0.23254591,0.73846996,-0.21047087,0.34056395,0.34251913,0.24864605,-0.05757366,-0.5568693,0.13490151,1.0150714,0.31480154,0.107924014,-0.2513894,-0.15905015,-0.3208281,-0.07309377,-0.0045375586,0.50085956,0.9286406,-0.0857354,0.07449481,0.3906927,0.030739052,0.057819378,-0.09518662,-0.536932,-0.27152735,-0.15208952,0.6272304,0.7582799,-0.3599399,0.4822094,-0.27075258,0.33416176,-0.1703277,-0.4967559,0.6743587,0.76315296,-0.27805585,-0.27326688,0.52967775,0.27682522,-0.5513007,0.5702163,-0.6090388,-0.33123386,0.42592993,-0.029092463,-0.4467614,0.17364772,-0.37335286,0.113068596,-1.1343311,0.4006581,-0.27444884,-0.33291104,-0.49632037,-0.23045512,-3.349815,0.32057962,-0.48977575,0.020680465,-0.29369366,-0.03214224,0.18798068,-0.52446634,-0.5166492,0.060426496,0.08259972,0.60627943,-0.0019184321,0.22096743,-0.19179052,-0.106140785,-0.32829028,-0.016548323,0.34486768,0.30977216,-0.04477602,-0.52533984,-0.007337948,-0.2660035,-0.44005165,0.20895083,-0.69137573,-0.6254644,-0.17602222,-0.56812626,-0.453843,0.7022629,-0.12018517,-0.052733652,-0.19754514,0.085725196,-0.06630463,0.56127906,0.013983178,-0.00669926,-0.024201171,-0.04139286,-0.018934738,-0.27688625,0.2890974,0.109054536,0.4156171,0.5585315,-0.12060104,0.34508833,0.73273695,0.7510788,0.13414793,0.8147239,0.526348,-0.048509363,0.43895632,-0.28509077,-0.27448854,-0.565396,-0.34593752,-0.0008872489,-0.48673046,-0.4475898,0.1605875,-0.41590834,-0.8649542,0.5746048,0.052362032,0.09547488,-0.0011463523,0.29377216,0.6486333,-0.082456045,0.015384648,0.014647541,-0.24081174,-0.55253595,-0.26596943,-0.76286274,-0.607517,0.13769862,1.1330692,-0.23252156,-0.03315097,-0.20681871,-0.10589786,-0.05629078,0.05583452,-0.057219096,0.18360089,0.47043553,-0.22938874,-0.5666882,0.36147353,-0.109890655,-0.29921043,-0.6560166,0.07605632,0.6959087,-0.8448416,0.5927278,0.25628364,0.1016675,0.10238459,-0.44516143,-0.071938604,-0.07053541,-0.20846625,0.5384961,0.18187632,-0.68548065,0.5575021,0.5784842,-0.18805647,-0.7757974,0.34536093,0.052801,-0.06023817,-0.03774259,0.31192583,0.07264931,0.0017555038,-0.11792168,0.12038253,-0.5793394,0.27073118,0.29819858,-0.13735496,0.5318641,-0.056926467,-0.31571776,-0.6936871,-0.09739974,-0.6685852,-0.19948034,0.19840255,0.03254175,0.15065698,0.0493747,0.13807242,0.3934364,-0.25993145,-0.028656261,0.07869927,-0.2598799,0.36986405,0.44203153,0.40852016,-0.49950662,0.5079211,0.114813454,-0.044834554,0.047690716,0.06835289,0.50530916,0.11727516,0.43726984,0.17306449,-0.10074709,0.26188505,0.9105829,-0.057937942,0.53163874,0.13397165,-0.24619694,0.26889133,0.12614565,0.110894434,-0.026159262,-0.48172256,0.008957374,0.04953738,0.18481493,0.4964128,0.15289809,0.35113162,-0.015017399,-0.27520078,-0.052794285,0.16484143,0.04179589,-1.4779187,0.35467437,0.14109588,0.7475351,0.32288456,-0.06398301,-0.031575195,0.5649534,-0.11534551,0.23173735,0.39583302,-0.2937729,-0.5746986,0.5963897,-0.5972912,0.43869412,-0.24510358,0.16632967,0.010623964,0.0374644,0.3867602,0.80259234,-0.11072319,-0.0028145392,-0.11369067,-0.3326398,0.22047745,-0.4514445,0.018145593,-0.49152353,-0.18849872,0.61133057,0.55026066,0.3070736,-0.1891649,-0.00446827,0.16466124,-0.09610653,0.13972296,-0.111629374,0.11324549,-0.04158203,-0.8082568,-0.37568125,0.60473543,0.20022544,0.23701732,-0.14974737,-0.15936747,0.36165798,-0.16516814,-0.09011082,-0.19917564,-0.6171734,-0.06839926,-0.36484486,-0.51114583,0.33092958,-0.014044237,0.26523983,0.31979865,0.044064768,-0.5840637,0.27373865,-0.14223453,0.7002626,-0.2510999,-0.2691686,-0.6158011,0.1576596,0.32316488,-0.39205724,-0.21265174,-0.30879444,0.023764484,-0.45665994,0.48269603,-0.046868358,-0.43881556,0.07662679,-0.17711164,-0.09794291,0.5952534,-0.3391884,-0.09408285,-0.08561024,-0.1719293,-0.26639375,-0.115010105,0.05595523,0.315924,0.25686178,-0.05332945,-0.066174015,-0.27987784,-0.099344686,0.580375,0.0936281,0.24509509,0.5340782,0.16626433,-0.56767565,-0.18361516,0.40963253,0.5813293,0.10588814,-0.30591506,-0.4535297,-0.2972992,-0.29517308,0.12904559,-0.17189646,0.30423912,0.14015375,-0.4126114,0.9451467,0.16491319,1.528936,0.21435098,-0.24743174,-0.019819466,0.40641928,0.10468447,0.005112308,-0.46086198,0.90905285,0.40274733,-0.2458127,-0.18287908,-0.6245627,-0.06347557,0.13991961,-0.25824684,-0.19234586,-0.13003808,-0.6558567,-0.32657653,0.30125004,0.28011405,0.2228303,-0.043428533,0.16977195,0.046033226,-0.06182216,0.38475215,-0.5683544,-0.20997098,0.18001667,0.2461054,-0.017213367,0.19495983,-0.4943091,0.44089845,-0.5072632,0.08827075,-0.1657103,0.23770276,-0.029887253,-0.27417392,0.31278354,-0.10246951,0.5594153,-0.26728705,-0.39027792,-0.2272015,0.5317591,0.23391443,0.1582461,0.76327044,-0.28226084,-0.103438534,0.22655442,0.7623436,1.3336688,-0.02353441,0.08453046,0.3845313,-0.19700813,-0.6873885,0.34377617,-0.32107118,0.21210091,-0.15156819,-0.23913367,-0.68476766,0.3950051,0.249047,-0.0016200702,0.15496652,-0.52716625,-0.41706187,0.25226775,-0.42629263,-0.15845607,-0.4169842,0.11572145,0.6304461,-0.2811957,-0.2096162,0.083842345,0.28317204,-0.054133423,-0.50211895,-0.16594864,-0.39851865,0.27456468,0.16570005,-0.2505087,0.1622308,0.113084316,-0.512803,0.18353319,0.29305613,-0.30743983,0.13271478,-0.06606481,-0.23987289,0.9164809,-0.038474116,0.29386955,-0.6250492,-0.39793062,-0.85572,-0.23907508,0.4964259,0.08628324,0.036531903,-0.62040406,-0.20340595,0.04022583,-0.17205901,0.022138739,-0.45441642,0.38798997,-0.014677079,0.4609417,-0.02379988,-0.78712183,0.017280681,0.1241933,-0.20484327,-0.6808331,0.54986674,-0.008210365,0.8296909,0.2093325,0.06927101,0.40228686,-0.48424643,-0.21644363,-0.27581698,-0.3451153,-0.70869076,-0.08003251 +808,0.5468374,-0.009602492,-0.5603284,-0.28547338,-0.23318177,0.06904054,-0.31917825,0.31087846,0.20772217,-0.5760129,-0.17598918,0.001589257,-0.100754976,0.16193959,-0.31151026,-0.76078707,0.17861854,0.09914715,-0.44147184,0.63612854,-0.4525105,0.43421495,0.1567723,0.2522874,0.25539136,0.15632841,0.27588543,-0.07931893,-0.22860476,-0.37975115,0.03387238,-0.046159565,-0.6711273,0.2711499,-0.25983796,-0.13769688,-0.020324528,-0.55373347,-0.32889602,-0.7819554,0.3552825,-0.7959652,0.6400093,0.015979894,-0.23928334,0.2958126,0.337596,0.23606199,0.04965795,0.0619046,0.17008305,-0.09596865,-0.28488043,-0.104285,-0.42155376,-0.39298975,-0.82076675,0.038339507,-0.6529364,0.029003529,-0.31059313,0.29717126,-0.34611064,-0.15706207,-0.14801694,0.5286761,-0.35688967,0.046868004,0.055491544,0.028063565,0.30102444,-0.6378475,-0.32834467,-0.06195951,0.3305561,-0.32204077,-0.10360934,0.30821976,0.2637888,0.480828,0.060169164,-0.30927187,-0.25104278,-0.1819372,0.25209856,0.5128279,0.022810737,-0.30177543,-0.15942205,-0.21467653,0.36202976,0.2904931,0.21242197,-0.18778324,-0.12973088,-0.12715806,-0.27965823,0.5209634,0.41975886,-0.3224066,-0.16625813,0.54404104,0.41022772,0.281146,-0.13070749,0.2075185,-0.13238406,-0.6491565,-0.1254723,0.3441974,-0.22124921,0.4506814,-0.25113964,0.24731986,0.6405105,-0.121917926,-0.08314382,0.14358285,0.040990133,-0.032047752,-0.14278007,-0.15432344,0.22249818,-0.5257585,0.20567688,-0.3020535,0.67876613,0.03835785,-0.80987275,0.16616377,-0.639842,0.056526586,0.12207591,0.5096048,0.65899175,0.3984227,0.23446769,0.691059,-0.34986085,-0.03590596,-0.027524458,-0.33154508,-0.049717344,-0.15970686,0.21382998,-0.45804945,-0.16314651,0.05930887,-0.1186722,-0.07359721,0.72973907,-0.3534649,-0.12510316,0.11564353,0.5106331,-0.2599447,-0.06789002,0.9104215,0.97340715,1.2651119,0.17141898,1.4737496,0.15634884,-0.1343891,-0.09074648,-0.08150565,-0.839219,0.34588817,0.39019173,-0.4304379,0.46871454,0.07791049,0.06827601,0.16930221,-0.45341396,-0.19312146,-0.10228468,0.4471462,-0.070041604,-0.19231789,-0.32672867,-0.38152137,0.060825944,0.0067782197,0.36652476,0.17945752,-0.18460923,0.37539703,0.13855997,1.1902137,-0.17369932,0.13655718,0.20179875,0.37325397,0.23199654,-0.08667207,-0.1962252,0.29002544,0.3580411,-0.06666444,-0.6052148,-0.28536737,-0.28295028,-0.27821207,-0.24919608,-0.42384827,-0.187828,-0.13734798,-0.23786177,-0.19273041,-0.22721638,-0.7052285,0.40217164,-2.5685222,-0.24148726,-0.23565385,0.30857372,-0.21164735,-0.3558211,-0.23635341,-0.5779251,0.67226326,0.233662,0.45613664,-0.47621992,0.33930463,0.6096357,-0.5225752,-0.141291,-0.6602595,-0.12009927,-0.1387639,0.26501992,-0.11371271,-0.11553779,-0.041397996,0.21046308,0.43668634,0.17062455,0.10743619,0.4770544,0.51851094,-0.03860718,0.5529897,-0.01946774,0.5374009,-0.26024482,-0.121434376,0.3890837,-0.5189876,0.3377112,-0.32237768,0.04705419,0.59455776,-0.6615355,-0.70112133,-0.6169408,-0.5063129,1.2667868,-0.15294585,-0.37636426,0.08987819,-0.13670784,-0.30354664,0.053219117,0.5598821,-0.3422814,-0.030962292,-0.69440293,-0.1357677,-0.15335754,0.19808072,-0.16631398,0.28979436,-0.5856124,0.68263465,-0.061590478,0.49581653,0.10867742,0.21196507,-0.49206433,-0.5671971,0.16891135,0.9326879,0.4163616,0.1226129,-0.25693002,-0.082841344,-0.38345754,-0.26205808,0.034172907,0.57473874,0.6079232,-0.1444328,0.23108509,0.33465847,0.018801836,0.20131384,-0.110816605,-0.29195744,-0.30816513,-0.12350552,0.6812782,0.5558256,-0.027434628,0.31464925,-0.17219445,0.13450152,-0.2968221,-0.34754273,0.5491922,1.0310773,-0.14280818,-0.27055264,0.616029,0.46434948,-0.18671523,0.5524993,-0.46139616,-0.4604708,0.5664727,-0.11417078,-0.42681196,0.17987856,-0.3908238,0.025851231,-0.79357105,0.35161048,-0.3606195,-0.42409563,-0.2920246,-0.16570385,-2.5876389,0.10798114,-0.20900276,-0.09876024,-0.2751605,-0.19893345,0.12417109,-0.4524787,-0.8117365,0.16424164,-0.09579863,0.75548905,-0.18686152,0.09852226,-0.17812903,-0.35002697,-0.6044925,0.21304633,-5.731674e-05,0.5252702,-0.019660234,-0.15335491,0.1183646,-0.32687446,-0.40760815,-0.05155138,-0.45780718,-0.35186762,-0.12823358,-0.54778665,-0.40768117,0.63823044,-0.4633896,0.037299022,-0.26537684,-0.18539903,0.04855698,0.36910692,0.05907366,0.41359553,0.12015621,-0.04378197,-0.12899777,-0.26315227,0.5371071,0.05935975,0.21476497,0.48089406,-0.2375691,0.24650961,0.3211694,0.6609358,-0.1493604,1.0534972,0.18252674,0.0630509,0.27556208,-0.24634108,-0.2420618,-0.5977431,-0.13490838,0.12660542,-0.4259093,-0.46674177,-0.17301725,-0.3615538,-0.77117914,0.46100727,0.12857863,0.28213722,-0.1817756,0.14401773,0.24041088,-0.09756427,-0.06589209,0.06804585,-0.15809257,-0.30288374,-0.29473895,-0.7396322,-0.35271627,-0.078126416,0.9460309,-0.13853785,-0.092623636,0.16472703,-0.19808862,0.24860865,0.05652012,-0.0011152854,0.032707114,0.4470372,0.28778923,-0.71893764,0.49939442,-0.070784874,0.057102546,-0.46712893,0.121210165,0.7033347,-0.40828946,0.5633729,0.48080796,0.1467241,-0.3628691,-0.7181117,-0.057916768,-0.056224685,-0.25325114,0.4032941,0.30602384,-0.789327,0.6197806,-0.032501336,-0.21904233,-0.9072628,0.5956801,0.01609726,-0.05555636,-0.037146203,0.5676685,0.09152721,0.043720648,-0.14882363,0.3032664,-0.23163718,0.45299184,0.22109228,-0.034507222,0.47858122,-0.20993064,-0.25235194,-0.6709188,-0.077894285,-0.5177238,-0.40548304,0.04434612,-0.08677444,-0.07904072,0.2856654,-9.191953e-05,0.37855515,-0.37157074,0.19155894,-0.0066478206,-0.13744004,0.31441814,0.4036761,0.6410023,-0.4239254,0.7249264,0.097607665,0.03173039,-0.11580332,0.066024676,0.41320372,0.018671026,0.37935877,0.12227701,-0.10853347,0.12732898,0.6789378,0.19145547,0.34015495,0.30534142,-0.25147673,0.25995126,0.09618243,0.355597,-0.16459192,-0.6224515,-0.0682856,-0.2599016,-0.0018762648,0.5221256,0.023050813,0.23424342,-0.16014808,-0.2517222,0.010519066,0.0058508837,-0.29306737,-1.5452322,0.33693093,0.18065692,0.7920855,0.5999865,-0.07010264,0.1867356,0.58528113,-0.19015358,-0.041149028,0.3073289,0.041449137,-0.30667922,0.5714093,-0.5266527,0.42288134,-0.08948509,-0.060201235,-0.041411776,-0.010347921,0.426005,0.97242767,-0.20071587,0.03506648,-0.0799992,-0.32740995,0.32330927,-0.3540862,0.16422462,-0.37154734,-0.29494306,0.60219574,0.3268898,0.3342767,-0.186217,0.06385289,0.036324546,-0.25757113,0.053856656,0.09166216,-0.11807284,-0.17296004,-0.5124446,-0.22989902,0.5138311,0.1973492,0.13748412,0.2608717,-0.172503,0.1333521,-0.1457103,0.18338571,-0.16419671,-0.9790277,-0.24508408,-0.3656245,-0.33213583,0.037049726,-0.33592921,0.28580636,0.31683162,-0.014946909,-0.15793177,0.24899714,0.39263132,0.569749,-0.06933487,-0.23126651,-0.16001175,0.05991474,0.20311746,-0.30567738,0.13234507,-0.1482186,0.24214743,-0.5667597,0.36011967,-0.19169745,-0.27763045,-0.0103153335,-0.15420453,-0.12005333,0.48457688,-0.2535599,-0.016464842,-0.102449775,-0.18864146,-0.01289696,-0.08985134,-0.026663532,0.12331417,0.28174752,-0.23141244,-0.18764785,-0.008762479,0.006800789,0.1565517,0.016945275,0.2931414,0.40303707,0.20450959,-0.4852355,0.13517173,0.18663652,0.5844912,0.07705314,-0.081351355,-0.17564593,-0.2746744,-0.2536711,0.6084255,-0.1133049,0.07493161,0.08331618,-0.2530111,0.6679714,0.29415208,1.0142059,0.12286265,-0.34867853,0.0061867097,0.6127897,-0.13607608,-0.0621192,-0.28968093,0.9814163,0.3319759,-0.20202413,-0.05619856,-0.4558008,0.029740501,0.030301442,-0.32600576,-0.18539436,-0.034425803,-0.44002655,-0.21011546,0.1259297,0.15228656,-0.06023618,-0.1401466,-0.15516385,0.37083608,0.2642568,0.5477336,-0.6700853,-0.1131055,0.38035664,0.15580234,0.09675254,0.19768961,-0.22898594,0.27301285,-0.6516977,0.22039482,-0.026966158,0.2895339,-0.26512992,-0.3709744,0.28424397,0.13011304,0.5450997,-0.26500207,-0.5146142,-0.15420192,0.40983617,0.15394685,0.19551224,0.7212768,-0.23130395,0.02478645,-0.06750716,0.6099864,1.1440654,0.012029366,0.24081524,0.30861202,-0.3770925,-0.66030055,0.18631443,-0.51895106,0.25045228,-0.09515742,-0.45820287,-0.31955698,0.08094036,0.16328067,0.24682131,0.10423827,-0.6766423,-0.4027594,0.43581718,-0.099049,-0.21861185,-0.3166138,-0.20127524,0.52476937,-0.16832961,-0.3979384,0.12707151,0.069712915,-0.29340693,-0.63202477,-0.005327555,-0.2640506,0.34343246,0.0759044,-0.25253984,-0.03906373,0.019956836,-0.5022976,0.18605992,0.21986508,-0.2612511,-0.120027505,-0.38248903,-0.07139384,0.7478593,-0.28411385,0.2054726,-0.3598321,-0.5027088,-0.8191426,-0.24972725,0.1577416,-0.059337754,-0.045775954,-0.52583563,-0.18089245,-0.16501552,0.06631832,0.1591528,-0.41020072,0.32936206,0.23821022,0.39125046,-0.1574457,-0.9264883,0.21710362,0.10176308,-0.27589983,-0.46010515,0.5238792,0.0017571037,0.5342032,0.18977188,-0.07529907,0.039480966,-0.59359306,0.37608343,0.008866709,0.060562313,-0.5854555,0.25043243 +809,0.20315836,-0.398681,-0.5301761,-0.09140255,-0.23366226,-0.036314227,-0.3196697,0.14123617,0.26102844,-0.29815128,-0.0016279022,0.14969198,0.24205256,0.4796815,-0.11951847,-0.8276277,-0.018932616,0.20132421,-0.69522077,0.4347638,-0.7100416,0.13606109,0.009028311,0.39765486,-0.018413603,0.5178933,0.34049365,-0.08443371,-0.06997439,-0.0026374657,0.0681973,0.40267408,-0.4035039,0.15125151,-0.020285957,-0.36159548,0.07943177,-0.23960514,-0.2220877,-0.74006486,0.16663992,-1.076283,0.42671785,-0.02390792,-0.18276317,-0.14268193,0.3323195,0.5130963,-0.46667066,-0.005221758,0.21935081,-0.28841084,-0.24970531,-0.48215207,0.14918312,-0.39684054,-0.33165285,-0.037861835,-0.66969186,-0.47210646,-0.27840766,0.24903102,-0.3765645,-0.15183498,-0.1919933,0.37884912,-0.52889663,-0.15997152,0.55731463,-0.30077162,0.4621466,-0.5606205,0.022820583,0.017447745,0.54027486,0.08371484,-0.29311332,0.36606476,0.4775939,0.43070593,0.38040614,-0.38425767,-0.3236164,-0.2382325,0.4326752,0.40311155,-0.25207275,-0.38981226,-0.19333057,-0.058258638,0.102482624,0.31991553,0.027065398,-0.29202214,0.059933003,0.042574733,-0.16826923,0.567475,0.5665164,-0.23201776,-0.3815913,0.19248776,0.6606683,0.12717433,-0.30381846,-0.015261625,0.09470892,-0.43198323,-0.15818469,0.15195034,0.01599953,0.5456817,-0.23786771,0.18660723,0.9420817,-0.18986695,-0.046142265,-0.03399225,0.07206565,-0.36020687,-0.5119303,-0.090705246,0.16318972,-0.6941317,-0.026596397,-0.36692455,0.73377794,0.13053481,-0.60965276,0.4648458,-0.34288883,0.107297145,-0.11565406,0.73736,0.6945782,0.37931374,0.29395092,0.90500426,-0.30856088,0.14669245,-0.17146957,-0.597277,0.14061613,-0.29372132,0.33999,-0.44833913,0.19717652,-0.12990582,0.32656872,-0.04193263,0.36886528,-0.5032528,-0.070827916,0.20104897,0.8139262,-0.4130039,-0.001740242,0.6794502,1.1820148,0.91733664,0.13934243,1.2687746,0.30045047,-0.21968587,0.12278745,-0.33190903,-0.600029,0.19420594,0.4396441,0.54452896,0.14550425,-0.115929544,0.05344983,0.6218832,-0.41148424,0.081490606,-0.20817892,0.46787667,0.0968667,-0.19059102,-0.4926827,-0.017678177,0.060976934,-0.16482185,0.15371597,0.17042024,-0.17691767,0.43169105,-0.24015158,1.190308,-0.26380154,0.15925848,-0.111086346,0.6013584,0.18501697,-0.11101138,0.18481661,0.29167736,0.43230036,-0.09708885,-0.6591167,0.22349347,-0.36678544,-0.54870087,-0.08843836,-0.514641,-0.030134851,-0.025460431,-0.4496819,-0.11529239,0.046062738,-0.24893336,0.3243598,-2.8362865,-0.35983905,-0.17338724,0.30587384,-0.38229597,-0.06922925,-0.008417095,-0.5326678,0.38219285,0.27436182,0.56550556,-0.58779573,0.55630374,0.4866222,-0.53518385,-0.12734507,-0.6785679,0.027995596,-0.23542994,0.55540204,0.16317584,-0.2005045,-0.12953018,0.11198417,0.82917136,-0.057633057,0.2911974,0.46016216,0.23718084,-0.08504035,0.60105735,-0.061285272,0.6329361,-0.503399,-0.3008469,0.26163408,-0.35066092,0.29551002,-0.3875004,0.07170565,0.66536194,-0.3617232,-1.0031418,-0.7502293,-0.40687284,0.94126815,-0.47601476,-0.57705855,0.24081217,-0.18024778,-0.090307094,0.13531601,0.6208657,0.036025107,0.33911586,-0.70633674,0.22985594,-0.20893836,0.04919159,0.07336923,-0.08992052,-0.40524063,0.7896593,-0.075155415,0.48581526,0.20271046,0.26403314,-0.28576496,-0.20098083,0.044015024,0.74722046,0.16752023,-0.10249246,-0.05547018,-0.35181355,0.064915545,-0.24942751,-0.008292645,0.60712767,0.71224165,-0.028302943,0.16320463,0.21152325,-0.17665333,-0.07833032,-0.18748403,-0.39706847,-0.10716329,0.2885064,0.48628584,0.65487677,-0.07291215,0.38828743,-0.2712288,0.31900674,-0.08052058,-0.6718569,0.7177003,0.4619471,-0.120622136,-0.098733045,0.6323982,0.62648696,-0.5528219,0.59744173,-0.61997706,-0.21176362,0.62155944,-0.2885784,-0.36740223,-0.08611927,-0.23595679,0.089756735,-0.82993555,0.21879362,-0.5040991,-0.6511765,-0.34188363,-0.26689103,-4.155355,0.26235476,-0.1907677,-0.10614985,-0.29443967,-0.03851105,0.3659539,-0.58160573,-0.40442142,0.1697501,0.1516583,0.6537854,-0.05170709,-0.037297275,-0.3175913,-0.053850252,0.15413809,0.30292138,0.052884746,0.17497091,-0.2398657,-0.49480155,0.00037903586,-0.0023902704,-0.54222566,0.20897134,-0.64961046,-0.43567705,-0.13214491,-0.5838784,-0.38829994,0.5639634,-0.36095762,0.045951914,-0.25149885,0.18580116,-0.32669604,0.42883858,0.040610116,0.32702318,0.28847432,-0.1383485,0.072166316,-0.36981878,0.38961634,-0.05540819,0.3376267,0.14901145,-0.15110192,0.027001759,0.56248695,0.6529014,-0.08237891,1.190756,0.42014727,-0.13935958,0.2492067,-0.31108776,-0.24602608,-0.70485544,-0.52608293,-0.15008882,-0.456043,-0.56640893,0.09573565,-0.32222435,-0.7759835,0.79357356,0.24615467,0.46276072,-0.014201477,0.23169231,0.31438702,-0.13094269,-0.13383617,-0.09492394,-0.16358382,-0.62571055,-0.2908944,-0.6951609,-0.6111803,-0.015926406,0.49249077,-0.4256045,0.045119897,-0.15122287,-0.2662144,-0.11291233,0.34829715,0.03827257,0.22801025,0.530533,-0.026660493,-0.6453097,0.41689047,0.05064779,-0.049886625,-0.6379506,0.14106111,0.65484357,-0.7739157,0.84616584,0.35794342,0.16166174,-0.010275844,-0.37825218,-0.375518,-0.026554614,-0.18969285,0.58151954,0.22748804,-0.9668376,0.6285708,0.36776614,-0.47939453,-0.78203917,0.24816014,-0.17940052,-0.068688236,-0.074819244,0.29724893,0.08321511,0.025264012,-0.2284125,0.09638986,-0.6582787,0.22443353,0.18388559,-0.03667137,0.62808716,-0.16406485,-0.42522678,-0.8163678,-0.28995094,-0.6816941,-0.077679195,0.27276847,-0.180079,-0.15287001,0.34637538,0.11241489,0.33482578,-0.2526149,0.075476855,0.07743479,-0.47114527,0.20327835,0.57485455,0.22089426,-0.47720632,0.5557437,0.28290638,-0.16296245,-0.12345015,0.012533595,0.42014083,0.2017969,0.62886,-0.32299426,-0.06985397,0.3090251,1.0376836,0.036745906,0.6837,0.08034045,-0.15863785,0.37878156,0.004240366,0.20897491,0.050895225,-0.45145562,0.17907685,-0.17957635,0.15652697,0.49263167,0.44850114,0.48392987,0.31986874,-0.34110323,-0.05345364,0.31396446,0.053090822,-1.2491679,0.6218174,0.40368858,0.885341,0.46701476,0.10924896,-0.2901127,0.79048157,-0.3057743,0.049754616,0.36654723,-0.2682493,-0.41643927,1.006143,-0.8018016,0.291104,-0.14535254,-0.032314364,0.059876386,0.16383563,0.31968668,0.8089046,-0.07101382,0.13229513,-0.060089517,-0.21341504,0.07792335,-0.29771364,0.015033356,-0.2563642,-0.38977012,0.6294399,0.54186267,0.5551064,-0.15845238,-0.12331884,0.13104245,-0.11440629,0.23419957,-0.14266038,-0.05742379,0.12549762,-0.6103332,-0.2606363,0.5916235,0.30160403,0.33417952,-0.20355952,-0.2887747,0.24512112,-0.2089303,-0.2095453,-0.09919257,-0.57907873,0.1230581,-0.19994374,-0.6496894,0.6599213,-0.39737022,0.19684005,0.20207779,0.028582647,-0.07174151,0.2565836,-0.10571548,0.8367335,0.069746934,-0.30234483,-0.38820267,-0.14168875,0.25141206,-0.33725533,0.090754956,-0.474766,0.003981938,-0.40791455,0.6659271,-0.22371526,-0.4948078,0.3493257,-0.24413598,-0.11566875,0.5723845,-0.12518506,-0.16039571,0.2005074,-0.17447424,-0.4564325,-0.19263804,-0.32070494,0.29457274,0.077373445,0.22914921,-0.17188942,-0.24936716,-0.077992,0.7160632,0.08823005,0.36873415,0.18826587,0.0014489765,-0.1441347,0.09097745,0.32616603,0.5343907,0.095234714,0.11952692,-0.22575004,-0.39871153,-0.41170612,0.074742444,0.08293876,0.2663897,-0.02233319,-0.3260124,0.9825539,-0.07107352,1.1978463,0.2791504,-0.3495506,0.21633601,0.4853771,-0.08560433,0.14803804,-0.47966513,0.82617307,0.55403763,-0.09210541,0.053953737,-0.70741004,-0.16395468,0.39512137,-0.38264236,0.003184398,-0.15693222,-0.64115435,-0.5149099,0.39365926,0.2723096,0.25104034,-0.035921413,-0.02777937,-0.04537045,0.08689768,0.41742304,-0.84938574,-0.17085373,0.2288302,0.3761889,-0.10350595,0.064053856,-0.2398748,0.49107805,-0.71368957,0.24919951,-0.48751345,0.030889535,-0.3300512,-0.4127942,0.25113463,-0.12422084,0.4013995,-0.12381473,-0.41567993,-0.03791343,0.49158195,0.10163281,0.09862524,0.75800514,-0.17806798,-0.018908344,0.16464198,0.56142086,1.1103282,-0.6132426,0.029228164,0.31149253,-0.37407282,-0.65253323,0.4451449,-0.32858166,0.06333967,-0.031403054,-0.5574104,-0.48122028,0.1921824,0.21857113,0.047222476,0.07356667,-0.54163283,-0.20640314,0.34463063,-0.41054574,-0.22609647,-0.01539733,0.4663101,0.6276763,-0.31573954,-0.41982016,0.15834121,0.47922894,-0.32571757,-0.34692252,-0.07253563,-0.24021728,0.4497051,0.10377899,-0.47006047,0.01780559,0.1787606,-0.52398187,0.054957945,0.2479736,-0.29135093,0.16669111,-0.18166776,-0.010331161,0.8864155,-0.26363745,0.029392725,-0.80170727,-0.3632283,-0.9119808,-0.34675264,0.2374767,0.11275786,-0.022952214,-0.341491,0.12521599,-0.11912761,-0.1373143,0.12117505,-0.65822417,0.35503307,-0.043891832,0.63390666,-0.12514995,-0.8871894,0.23577763,0.33406296,0.08498194,-0.6797383,0.62109685,-0.42378986,0.9090951,0.006538227,0.0036351085,0.029653495,-0.3344225,0.11802218,-0.3903147,-0.27291283,-1.0219368,0.021097263 +810,0.6410558,0.01479511,-0.38276285,-0.29914925,-0.25740653,0.11903036,-0.17073373,0.22601658,0.14499772,-0.6220098,-0.12812112,-0.2522732,0.021564547,0.21688008,-0.21437104,-0.7557901,0.06766296,-0.022648904,-0.6440797,0.42873374,-0.494946,0.21610555,0.17615561,0.29346812,0.069421664,0.22234455,0.3575115,-0.3035791,-0.095320046,-0.2617588,-0.0075181536,-0.059492454,-0.842407,0.095373414,-0.106109805,-0.19979583,0.07122405,-0.47844034,-0.5175148,-0.68287873,0.28432596,-0.90598637,0.5615456,0.15775417,-0.17025301,0.2664749,-0.008156322,0.20524655,-0.17996131,0.23607162,0.16973814,-0.23397559,-0.07308179,-0.063230395,-0.2070785,-0.5539893,-0.6907726,-0.05260491,-0.45738596,-0.21911533,-0.29433933,0.003184985,-0.35568088,-0.10392513,-0.192787,0.567395,-0.34241122,0.03635758,0.08435478,-0.02724195,0.3575095,-0.552431,-0.18497667,-0.053232975,0.21122648,-0.13298866,-0.13920662,0.27747607,0.38906616,0.5693339,0.10269447,-0.29040033,-0.1415402,-0.088529184,0.2910303,0.42348778,-0.12484918,-0.44730735,-0.10609022,-0.02471285,0.1789619,0.27485722,0.028809808,-0.46084318,-0.0703851,0.075608544,-0.2663939,0.47712687,0.7137265,-0.36060354,-0.2544296,0.3412937,0.31275457,0.091515526,-0.022806,0.15040456,0.0013671331,-0.6189822,-0.20936286,0.34022993,-0.26250264,0.6341669,-0.21765897,0.1663519,0.64532346,-0.20599452,0.06106712,-0.021039572,-0.06349635,-0.0032036705,-0.14516604,-0.19838719,0.26208127,-0.59454274,0.102212586,-0.44860622,0.77785903,0.27370316,-0.8475226,0.24658656,-0.6006532,0.069219396,0.051801585,0.58886075,0.69789904,0.3276429,0.08548593,0.6201507,-0.5637162,0.07106763,0.030711703,-0.46945179,0.13116552,-0.095865905,0.10732864,-0.46026865,-0.20571646,-0.012877867,0.061044186,-0.098879166,0.32850134,-0.31322694,-0.09796343,0.11160734,0.8106191,-0.23496994,0.15296587,0.6262953,1.1300862,1.028536,0.24415483,1.402042,0.2878477,-0.12646426,0.11024065,-0.0950704,-0.8425051,0.29607195,0.39012444,-0.032459036,0.26005167,-0.027018355,-0.0678636,0.1536358,-0.4946093,0.10223453,-0.2120376,0.41913155,0.042642776,-0.19811586,-0.3077212,-0.17433031,0.031632893,-0.08994235,0.14557493,0.18508068,-0.12349369,0.33016294,0.28518045,1.0767388,-0.0883241,0.18938811,0.16460416,0.4344457,0.20450178,0.009776223,0.054040015,0.19426273,0.5451424,0.06642699,-0.5479399,-0.032135777,-0.29688382,-0.4097649,-0.28468424,-0.26953703,0.06555042,-0.042455915,-0.3601846,-0.18062854,-0.07469775,-0.34612566,0.50911987,-2.7216096,-0.15690061,-0.29776192,0.2729302,-0.31298214,-0.29441547,-0.073822245,-0.6275199,0.63365626,0.34631333,0.3394125,-0.67290735,0.3934813,0.50693256,-0.33376712,-0.055937473,-0.7463411,-0.1425304,-0.06498279,0.38667965,-0.012666468,-0.1515818,-0.10658551,0.3468275,0.46906918,0.035869114,0.10653153,0.16511384,0.35682032,0.17777239,0.4731648,-0.0016056821,0.54806125,-0.1831255,-0.09050986,0.35022038,-0.17341101,0.058769587,-0.15792131,0.16892672,0.4151767,-0.38447195,-0.58630073,-0.5821482,-0.45616025,1.1365172,-0.28527397,-0.40420568,0.28394833,0.13807082,-0.1610889,-0.08949312,0.32221115,-0.080776416,0.18550354,-0.7199113,-0.03964422,-0.030788004,0.21294099,-0.05665438,0.12916222,-0.45115593,0.6912575,-0.11089812,0.29370385,0.40358153,0.31161493,-0.2078757,-0.5868252,0.10422224,0.98208773,0.3757825,0.18846118,-0.26078582,-0.16774945,-0.192924,-0.19255649,0.051479403,0.44918865,0.9313377,-0.16215095,0.09427115,0.27284172,-0.01571193,0.12920739,-0.107289106,-0.3063416,-0.10974108,-0.1432035,0.49842995,0.4917228,-0.20384504,0.40140128,-0.22956605,0.27574492,-0.22532049,-0.34255123,0.67479575,1.0011718,-0.16674504,-0.278892,0.56451523,0.3540523,-0.24980888,0.5016815,-0.5190961,-0.3186953,0.6180194,-0.07480971,-0.49318618,0.19722134,-0.40693724,0.1867978,-0.8534267,0.5009079,-0.3421197,-0.28868487,-0.54250354,-0.20776433,-3.751399,0.12910926,-0.38060987,-0.14816396,-0.14466666,-0.07847275,0.3883054,-0.54662025,-0.4961534,0.17887045,-0.04509683,0.7379495,-0.04268143,0.23656294,-0.2572221,-0.051192723,-0.52330434,0.16666178,0.190108,0.14959513,0.041318275,-0.2590994,0.08310814,-0.1725124,-0.4310078,0.13138676,-0.46390313,-0.4994537,-0.14408547,-0.32842752,-0.49435994,0.65099496,-0.23051167,-0.06829095,-0.2931747,-0.062816896,-0.2588527,0.3979922,0.15853721,0.22562066,-0.07811335,-0.007891214,-0.10852073,-0.32546717,0.33692595,0.08443734,0.26679483,0.34428513,-0.21701872,0.07675529,0.33172208,0.5546627,-0.0038057119,0.73159444,0.25843626,-0.03519654,0.31215277,-0.27556244,-0.29418653,-0.58400536,-0.40066886,-0.13199255,-0.33038574,-0.5085949,-0.142378,-0.32691675,-0.65189403,0.31490153,-0.058936022,0.2197124,-0.118655294,0.07933089,0.33030576,-0.12954523,-0.06100022,0.013114202,-0.1848064,-0.3870284,-0.32719386,-0.760196,-0.4036995,0.01170741,0.74527174,0.059411865,-0.17657855,0.020547211,-0.24713428,0.15695068,0.028159713,0.023053342,0.1569039,0.43315235,0.054487795,-0.79757476,0.59184337,-0.07594992,-0.1400566,-0.73750806,-0.026971415,0.7477247,-0.6178227,0.6073685,0.31749383,0.09855239,-0.19888002,-0.57051766,-0.35812807,0.09126088,-0.2784846,0.47746345,0.046431907,-0.76887214,0.53897774,0.27037197,-0.2320674,-0.6971418,0.5994455,0.11975581,-0.20920636,0.15654112,0.39000225,-0.107189596,0.012410323,0.029899552,0.3834811,-0.42171633,0.38114795,0.38963693,-0.00016929954,0.37837696,-0.10342793,-0.14588821,-0.6345109,-0.17800348,-0.4339612,-0.25118262,0.08470996,0.05319208,0.059502542,0.12741193,-0.05493031,0.39756402,-0.20244396,0.29180002,0.12810919,-0.26224965,0.32406262,0.44367176,0.37775773,-0.26101044,0.63559365,0.039874643,-0.043662503,-0.14394896,0.15676115,0.39894828,0.22930263,0.24809039,0.058521196,-0.14964479,0.3340271,0.7139487,0.18784937,0.4592327,0.41406864,-0.01677576,0.5226687,0.06160474,0.13142598,0.073492445,-0.5794014,-0.211368,-0.08753937,0.15024634,0.3641406,0.082064524,0.33722496,-0.1474477,-0.069290236,-0.038716674,0.16215958,-0.008777708,-1.550822,0.13990408,0.18151224,0.69833934,0.5817855,-0.08555159,-0.0053480044,0.46104863,-0.16751328,0.06934833,0.35526907,0.1337007,-0.43106806,0.5864666,-0.62068903,0.3024727,-0.143943,-0.075644314,-0.14316107,0.12666154,0.2192365,0.8533484,-0.15384376,0.11140515,-0.14394183,-0.20148173,0.34729773,-0.37535864,0.2065166,-0.2998526,-0.2700349,0.62858295,0.43001992,0.2210716,-0.25426638,-0.0128824,0.059154287,-0.16369484,0.15966426,0.09145677,-0.100612365,-0.0789162,-0.6492003,-0.32794252,0.45350093,0.089067355,0.08958479,0.10661931,-0.12960193,0.061365437,-0.19547234,-0.016176939,-0.061870046,-0.8603263,-0.22180477,-0.21952473,-0.38514596,0.33254904,-0.3574554,0.23856184,0.22390978,0.062327057,-0.25409353,0.011823349,0.27665576,0.57659197,-0.04926666,-0.185037,-0.4007435,-0.08899169,0.17313373,-0.21528442,0.08506336,-0.2629319,0.0012491755,-0.53059065,0.36473313,-0.1628165,-0.14914401,0.18915975,-0.24232918,-0.009580206,0.5565323,-0.24166366,-0.09817971,0.14456718,-0.0069017187,-0.18909982,-0.08532357,-0.06460081,0.2669169,0.19181651,-0.03442438,-0.006596897,-0.05848021,-0.149815,0.26024055,0.22672662,0.4358065,0.44356632,0.08397298,-0.40329713,-0.28692377,0.07094163,0.5065097,0.15471181,-0.17938061,-0.2647096,-0.5235907,-0.114507906,0.20499587,-0.12916014,0.15258178,-0.06499996,-0.38264245,0.6968237,0.07256731,0.98322153,0.17180385,-0.3690208,-0.10688148,0.4294814,-0.020978846,-0.12795392,-0.41870177,0.9666958,0.552662,-0.096064836,-0.14339511,-0.36872327,-0.021140397,0.1510193,-0.20630375,-0.21202499,-0.012595445,-0.57740635,-0.17192027,0.18210112,0.22459027,0.03958516,-0.03779934,-0.0918823,0.3141253,0.1290726,0.60072845,-0.55821705,0.014330182,0.24145733,0.09393957,0.17191005,0.32721192,-0.27955258,0.26648998,-0.45099932,0.067316584,-0.16925064,0.071953855,0.04631702,-0.20015725,0.17379245,0.012083158,0.48424184,-0.31380102,-0.43347508,-0.05310159,0.4436187,0.12748384,0.3058097,0.72715974,-0.13933498,0.20272574,-0.0359564,0.5249131,1.2789971,-0.100094385,0.15133277,0.32034656,-0.40634868,-0.6463748,0.37425488,-0.41354114,0.2745818,-0.13921902,-0.34461394,-0.30899647,0.23933353,0.009532239,0.06272744,0.21711664,-0.55024344,-0.47506708,0.5587206,-0.3004153,-0.31710067,-0.30498517,0.15641728,0.6379595,-0.32518318,-0.04937117,-0.07489544,0.24753165,-0.2548018,-0.5789886,-0.072523035,-0.26987746,0.27310127,0.12449508,-0.18934402,0.10765512,0.10343076,-0.43382117,0.1987718,0.1081465,-0.3645276,-0.06848828,-0.20278142,-0.12248264,0.7665962,-0.19363004,0.019618027,-0.65606946,-0.5484861,-0.8935076,-0.4364741,0.36300042,0.07577236,0.035772342,-0.41718867,-0.10210203,0.019426934,0.2711384,0.07938208,-0.48704326,0.42909247,0.09696446,0.5237675,0.05240188,-0.67259073,-0.004967615,0.069482595,-0.14135322,-0.5498646,0.7081603,-0.033722185,0.64547426,0.078998595,0.07901579,-0.023895219,-0.5591863,0.1676472,-0.2696729,-0.21373081,-0.72674197,0.1968888 +811,0.40474924,-0.3958546,-0.42288283,-0.18337648,-0.0515334,0.02660623,0.030511063,0.69505507,0.21536987,-0.5475938,-0.2512843,-0.22499345,0.033657655,0.44400626,-0.13510524,-0.5918036,-0.094062194,0.22634807,-0.4118027,0.46734828,-0.36523658,0.17039007,0.0036289578,0.49306935,0.25657368,0.20671812,0.122399405,-0.08670917,0.043548163,-0.06499512,-0.13941884,0.16084577,-0.4634666,0.1632467,-0.08315876,-0.2710071,-0.0069397045,-0.46470267,-0.45779037,-0.74749416,0.41255176,-1.0943034,0.5577992,0.056298368,-0.30361617,0.28424093,0.097373575,0.38459045,-0.45248604,-0.07464469,0.23562472,0.045077622,-0.015101469,-0.16110253,0.011742995,-0.47617948,-0.58521324,-0.06747721,-0.18471195,-0.17572564,-0.19010808,0.07256147,-0.37531838,0.08083714,-0.0739456,0.5051103,-0.5123885,0.0956365,0.360988,-0.25481227,0.4117152,-0.57320017,-0.24377885,-0.1121318,0.23876174,0.014124405,-0.20343259,0.32970503,0.20003693,0.4525476,0.0044182814,-0.21007587,-0.11845554,0.006977402,0.10830165,0.36942562,-0.1079183,-0.51329154,-0.036664084,0.022392621,0.219653,0.256216,0.1452639,-0.25406477,-0.09493332,0.056380685,-0.16796695,0.21631405,0.5429301,-0.17729671,-0.26620194,0.4271112,0.74042237,0.070384115,-0.07446548,0.04140332,0.043050863,-0.513735,-0.15346292,-0.1012436,-0.4095969,0.56918365,-0.18982564,0.2999365,0.7844106,-0.19119486,0.07500253,-0.1426133,0.043245777,-0.38344806,-0.45366746,-0.37076208,0.35712975,-0.3377535,0.23193488,-0.20620301,0.77942395,0.2962926,-0.60105836,0.38424838,-0.48001114,0.23099194,-0.23285216,0.57851696,0.64236546,0.41482022,0.42652327,0.8577441,-0.6688928,0.07435266,-0.001847501,-0.3900933,0.12783621,-0.16228148,0.05093141,-0.5386419,0.001113534,0.054196317,-0.11966408,-0.032209203,0.32763296,-0.6368821,-0.081842974,0.07505241,0.9448734,-0.31064886,0.05140509,0.70078945,1.0326568,0.92573607,0.0027839197,1.2011693,0.45399162,-0.3544594,0.36563018,-0.3492273,-0.7854963,0.2827485,0.513173,-0.12592512,0.3304126,0.07221901,-0.08427076,0.51168805,-0.5007112,0.15229356,-0.25602332,0.25349215,0.026707767,-0.19686565,-0.5399064,-0.12462597,-0.12620504,-0.05909055,0.1187472,0.2326768,-0.20867392,0.4332255,-0.04082988,1.934891,-0.10210621,0.16753854,0.11951665,0.44698033,0.07860184,-0.18271743,-0.09753154,0.42360777,0.6402372,0.16916166,-0.64685845,0.2019038,-0.30351874,-0.54518455,-0.15785143,-0.38664988,0.13296773,-0.20337678,-0.24559747,-0.10270949,-0.15161355,-0.316816,0.3378333,-2.7450328,-0.26639974,-0.30947334,0.45804593,-0.4318497,-0.18492797,-0.0027712355,-0.42907414,0.4634557,0.4023318,0.54015416,-0.7214791,0.34746742,0.4088855,-0.6133379,-0.12829942,-0.6286872,-0.019608919,-0.028074585,0.36865345,0.0640309,-0.0021374042,-0.037786093,0.10098116,0.3779184,0.07076992,0.12479127,0.26295528,0.44574553,-0.047977254,0.54596555,-0.12359504,0.566838,-0.34518418,-0.074455515,0.3350485,-0.34583682,0.2597292,-0.16355468,0.050992027,0.47287938,-0.37821823,-0.7144743,-0.72389036,-0.27249372,1.1377046,-0.37514284,-0.39632687,0.1551889,-0.32386845,-0.101936154,-0.118977994,0.42554012,-0.17080171,-0.07122581,-0.8607714,0.049503967,-0.112216674,0.17594407,-0.02916765,-0.119931735,-0.4493507,0.7404632,-0.09963496,0.6306373,0.3071946,0.1313112,-0.17966476,-0.34844002,0.054594297,0.82480013,0.35938895,0.017507078,-0.04188512,-0.15104681,-0.38829106,-0.078966185,0.13360557,0.5121164,0.7042029,-0.095459096,0.056884393,0.31596088,-0.10002769,-0.05015129,-0.16582456,-0.28160527,-0.15154468,0.022553355,0.519846,0.70664936,-0.32539448,0.3639263,-0.2517385,0.32370642,0.02764688,-0.50503963,0.5537887,1.0042832,-0.20429724,-0.24969569,0.64324963,0.40909582,-0.37425563,0.37086198,-0.65299916,-0.15048221,0.58321625,-0.17350191,-0.44842437,0.08318831,-0.1756152,0.19502321,-0.9636785,0.25207216,-0.17984797,-0.4835222,-0.6611738,-0.16458867,-3.119574,0.1543307,-0.41402858,-0.18489577,-0.11793689,-0.145821,0.22028612,-0.7443994,-0.5630322,0.22990233,0.08740734,0.6031686,0.034114398,0.1908097,-0.27284425,-0.078804806,-0.2617572,0.07299784,0.09278529,0.29157722,0.11923076,-0.569118,0.010970657,0.16304687,-0.51526093,0.11064082,-0.6840887,-0.44709137,-0.21195021,-0.61111635,-0.2686516,0.6025905,-0.120243736,-0.042145923,-0.12178362,0.07224259,-0.20795427,0.20344298,0.012632793,0.20256445,0.004178542,-0.084273465,0.061516207,-0.30640623,0.31281155,0.06834254,0.36132213,0.10130199,-0.20225081,0.15506122,0.5531749,0.6130248,-0.07960308,0.6334239,0.5477032,-0.09502257,0.23692761,-0.22933343,-0.2596493,-0.5927694,-0.39649498,0.046721533,-0.4181161,-0.5207452,-0.0037590677,-0.45204633,-0.8190595,0.51882863,0.11072337,0.26993242,-0.0012855896,0.15726727,0.6812292,-0.19879624,-0.030422641,0.035037298,-0.20383777,-0.6767789,-0.26368916,-0.6985217,-0.4068163,0.3317613,1.0796294,-0.23125678,0.0968666,-0.036404986,-0.38761073,0.093446806,0.11129283,-0.22960685,0.03402158,0.35919926,-0.13889949,-0.6575908,0.50297034,-0.013408652,-0.14891686,-0.70246655,0.2837293,0.57295555,-0.62870324,0.7361035,0.15750544,-0.07824635,-0.24585113,-0.48422092,-0.29862335,-0.17664917,-0.20525402,0.41414374,0.12931064,-0.54442424,0.31316298,0.49443606,-0.19217756,-0.6880801,0.4761057,-0.20454161,-0.32553148,-0.09186555,0.20473348,0.06456899,-0.032620165,-0.22442804,0.21999392,-0.45119736,0.32712018,0.18397504,-0.13625157,0.40230793,-0.084194556,0.087513246,-0.8834479,-0.026409227,-0.6190008,-0.22390677,0.3214924,0.14918564,0.07595149,0.11028618,0.10881799,0.36368588,-0.1567912,0.05153151,-0.0038483785,-0.3334843,0.37594885,0.42893556,0.31517428,-0.5521616,0.5981376,0.037844874,-0.020041283,-0.025610153,0.027362052,0.4557344,0.21415713,0.5013033,-0.1405681,-0.27126655,0.40202242,0.726454,0.09349736,0.534644,0.14213122,-0.09531144,0.25569546,0.10705478,0.16898078,-0.03898029,-0.6281896,0.20742115,-0.17896914,0.16464084,0.44851524,0.317248,0.3169304,-0.021459414,-0.44908693,-0.04915174,0.15548143,0.013964415,-1.252076,0.43430254,0.15107603,0.89694023,0.4070897,-0.06913927,-0.095868096,0.7686039,-0.10667809,0.072809376,0.34574032,-0.16870168,-0.5373513,0.5960632,-0.7551044,0.37150776,0.029777873,0.049811747,0.012292147,0.1317985,0.3335371,0.61267096,-0.18410851,0.013390309,-0.107324906,-0.34165472,0.2993789,-0.5056656,-0.0012997779,-0.65787435,-0.3634155,0.43850997,0.62578666,0.43037355,-0.18652748,0.025735948,0.08977527,-0.057007156,0.23008886,0.11149576,0.0030850081,0.14772387,-0.79598373,-0.2784806,0.44090572,0.034502897,0.28856087,-0.07704818,-0.34298193,0.33517164,-0.29498422,-0.05703429,0.015891047,-0.72744244,-0.038743414,-0.22205855,-0.37267402,0.51095974,0.01948392,0.24597715,0.1755525,0.0395699,-0.14428808,0.18211463,-0.14494917,1.0902848,0.08135792,-0.26601574,-0.5490174,0.1673,0.12670615,-0.186542,0.11714848,-0.424947,-0.10521289,-0.4786641,0.6187741,0.12713298,-0.3925524,0.15040144,-0.2941093,-0.04017299,0.7339107,-0.2091808,-0.12256912,-0.18541394,-0.34194645,-0.27010676,-0.27036723,-0.13738748,0.31423473,0.15991813,0.26694348,-0.06943853,-0.03152733,-0.22244498,0.6644527,0.12611046,0.35293347,0.41756102,-0.11778879,-0.19900206,-0.31660637,0.22639753,0.38871306,0.10319422,-0.3025475,-0.22738549,-0.66781557,-0.40835094,0.060439523,-0.11079518,0.55790794,-0.0026282186,-0.16402476,0.73156065,-0.0065238248,1.2692928,0.01701753,-0.28257135,-0.036049053,0.6870368,0.19913766,-0.018641792,-0.28657353,0.8972835,0.64991343,-0.025176821,-0.052760545,-0.44814748,-0.11140775,0.3436306,-0.23474891,-0.18041764,-0.043284018,-0.74456364,-0.37574452,0.14801186,0.29950303,0.38666108,-0.011065213,0.052938085,0.21713123,-0.117122665,0.46021363,-0.3675755,-0.25572497,0.28944653,0.21735671,-0.07207355,0.034444265,-0.48610482,0.3975727,-0.50171,0.18248683,-0.26510498,0.13387631,-0.14282657,-0.33685714,0.1908043,-0.044667576,0.34636414,-0.41983706,-0.45665535,-0.06789226,0.66337514,0.30953223,0.024261286,0.6328884,-0.31009957,-0.02248956,0.1998482,0.5892288,1.029004,-0.28640038,0.15548757,0.41122335,-0.5529193,-0.75302655,0.4535133,-0.05829924,0.29250443,0.03169928,-0.23961376,-0.56502044,0.37721047,0.13232976,-0.2824825,0.05119485,-0.5578964,-0.17440979,0.42442137,-0.30986023,-0.12782334,-0.3962817,0.12912777,0.39560035,-0.24580605,-0.3730881,0.18071839,0.22207697,-0.14158237,-0.515514,-0.3040008,-0.4868198,0.33162647,-0.014638303,-0.44542202,-0.08715105,-0.056242876,-0.44435006,0.23386247,-0.1096241,-0.35014072,0.11523015,-0.33389062,-0.1645191,0.904144,-0.06725271,0.03353373,-0.74396646,-0.12879127,-0.87870795,-0.24513958,0.5926438,-0.010797159,0.026120892,-0.5964635,-0.018973626,-0.032662123,0.032052256,-0.28721306,-0.35401806,0.37122884,0.15685152,0.51903194,-0.037626456,-0.8234815,0.25977653,0.09892889,-0.20981234,-0.66486037,0.6354484,-0.048161425,0.86338055,-0.08763549,0.19897042,0.2481659,-0.45352015,-0.14896037,-0.2731301,-0.37758186,-0.6213121,0.0462063 +812,0.42050833,-0.08218336,-0.2608908,-0.25956956,-0.2956681,0.029832061,-0.11125869,0.5314258,0.21220145,-0.5383373,-0.33688635,-0.22359426,0.0407436,0.14937027,-0.39398083,-0.6312419,0.033531923,0.16732608,-0.29052296,0.44294366,-0.5346294,0.49715713,0.14665064,0.21737297,0.287515,0.12386495,0.09429528,-0.3083909,-0.16365516,-0.36466178,-0.22004439,0.4079227,-0.5194305,0.15793864,-0.23159729,-0.32052824,0.13144012,-0.33739465,-0.30058736,-0.9717498,0.29699418,-0.94270986,0.37118578,0.07890531,-0.30946392,0.3739621,0.12504825,0.1488484,-0.123324774,0.10256574,0.2220985,-0.30210897,-0.22577076,-0.22573201,-0.1726438,-0.43070188,-0.6925759,0.009078418,-0.4100482,-0.25339264,-0.46361965,0.27999112,-0.47466597,-0.1717218,-0.13434847,0.30896726,-0.54497755,0.020798802,-0.014745355,-0.005409769,0.3588543,-0.6605914,-0.28130028,-0.09244319,0.23008248,-0.28416246,-0.2516279,0.33698097,0.2953983,0.44272822,0.00020721981,-0.22812183,-0.25994572,-0.14109744,0.25522977,0.4502104,-0.25396472,-0.6636762,-0.0042424416,-0.13041708,0.3369721,0.44074726,0.014623433,-0.31507048,-0.21198109,-0.034842048,-0.22347954,0.4554317,0.6340575,-0.24385795,-0.19468315,0.16535652,0.35967833,0.20581605,-0.18008557,-0.023721512,-0.07173192,-0.6350827,-0.20123564,0.16470875,-0.33565006,0.59872526,-0.24165647,0.16688883,0.7908305,-0.39544514,0.18365006,0.123024516,0.20027956,0.016995618,-0.18111287,-0.4744487,0.30052212,-0.6788555,0.23854315,-0.4060882,1.0806134,0.025287578,-0.76310027,0.16677253,-0.64704853,0.15250064,-0.2334498,0.69570863,0.48578358,0.49997622,0.42580143,0.62675714,-0.44917804,-0.0654906,0.09963102,-0.38798776,0.0379635,-0.22090967,-0.015589653,-0.27109584,-0.15837915,-0.13942973,0.015543627,-0.00014751723,0.75027704,-0.5098171,0.054635506,0.037357263,0.68473977,-0.4087188,0.030238358,0.79930955,0.91585535,1.1833916,0.2194309,1.3293122,0.27315015,-0.3086321,0.06833265,-0.08571809,-0.7120668,0.3033701,0.429782,-0.2966406,-0.13832085,0.049535923,0.075403675,0.31892326,-0.7096028,-0.032060027,-0.3652484,0.19055404,-0.02179557,-0.1287189,-0.46335098,-0.4314358,-0.03555776,0.2947368,0.0021521535,0.32624862,-0.19221959,0.25516447,0.055626273,1.0530552,-0.014089684,-0.040279184,0.12308073,0.4458401,0.057778418,-0.06847624,-0.002573422,0.29592332,0.46969005,0.09156574,-0.66867626,-0.10531862,-0.18079288,-0.47713494,-0.15952389,-0.37762234,-0.059034962,0.10246999,-0.53399956,-0.35067347,-0.0733555,-0.32451206,0.48809758,-2.08501,-0.027476115,-0.028905233,0.33151865,-0.036382638,-0.2890137,-0.083779536,-0.62058675,0.62082946,0.24427749,0.45470652,-0.7239305,0.3228844,0.5717435,-0.47715527,-0.14306974,-0.7970573,-0.27736664,-0.10119314,0.17764743,0.21046117,-0.013451642,0.04259298,-0.16929136,0.6871219,-0.01110243,0.16046469,0.16895413,0.41176477,-0.12076149,0.49635926,0.18793906,0.38273123,-0.08364694,-0.20232241,0.40956068,-0.3807134,0.23119791,-0.27981496,0.04898012,0.53367895,-0.5039616,-0.7608458,-0.82802093,-0.4965212,1.2340118,-0.07055326,-0.57862175,0.41571298,-0.15838099,-0.18978025,-0.16830285,0.54843885,-0.28503492,-0.089425445,-0.7192562,-0.02996856,-0.14916237,0.1543922,0.00405666,0.12060501,-0.43103355,0.7912682,-0.047104854,0.25881073,0.21181072,0.14716533,-0.46609893,-0.54714096,0.024407983,0.95952594,0.49383828,0.15772988,-0.26303965,-0.25341558,-0.23188627,-0.099062935,0.14912634,0.6420247,0.94097704,-0.15579584,0.16476393,0.22889963,-0.09092723,0.07935823,-0.22698726,-0.3504424,-0.073461175,-0.05437955,0.6815583,0.5132311,-0.07294876,0.3906397,-0.10038073,0.33873296,-0.10291825,-0.43050048,0.36983624,1.1891992,-0.03001095,-0.12914398,0.715145,0.7018105,-0.21822338,0.44199482,-0.711809,-0.4429063,0.57674164,-0.20093843,-0.50730175,0.10308804,-0.47656566,0.13858518,-0.8315461,0.6091322,-0.32910872,-0.62942153,-0.6211851,-0.07990045,-2.397257,0.1032037,-0.3588962,-0.055489093,-0.19189942,-0.3708857,0.28935865,-0.46604154,-0.50579846,0.12238251,0.1651766,0.60103816,0.013215916,0.038055442,-0.14061715,-0.29565483,-0.33022898,0.0039018574,-0.00904615,0.3674546,-0.1332126,-0.3962307,0.112361126,-0.14680202,-0.3309922,0.012534316,-0.55900544,-0.7232107,-0.16705675,-0.41463524,-0.47477302,0.70291656,-0.43552646,0.040082462,-0.061921697,-0.10619169,-0.13674025,0.3036824,0.21259321,0.216457,-0.06964967,0.0194895,-0.041450936,-0.2928552,0.46866602,-0.00912588,0.19611277,0.41907355,-0.20512843,0.09534604,0.53629243,0.5367006,-0.12324299,1.0453799,0.3800755,-0.08017022,0.26561657,-0.2702225,-0.4247087,-0.8060201,-0.3234361,-0.018610647,-0.49649653,-0.26185593,-0.018537449,-0.39590004,-0.81476957,0.46716404,0.026634464,0.16839217,-0.06330327,0.2744028,0.38784847,0.1410688,-0.24359152,-0.13070183,-0.07887517,-0.53052634,-0.21707448,-0.8686861,-0.41432998,-0.18161774,1.0864081,-0.22428603,-0.21212797,0.19326977,-0.016204592,0.15216054,0.06872247,-0.13914032,-0.017964432,0.41766593,0.00040048786,-0.8143794,0.66893566,0.105919085,-0.16616543,-0.5180293,0.13964774,0.605166,-0.8382148,0.44797394,0.60106057,-0.025418866,-0.031153305,-0.6924308,-0.3048059,-0.19671929,-0.19459954,0.48162922,0.13706413,-0.69226474,0.49649414,0.43542323,-0.1926717,-0.8009442,0.5364114,-0.1433884,-0.38546988,0.18589428,0.3871834,0.03899968,0.024537172,-0.021830866,0.35555878,-0.540829,0.55642176,0.2891831,0.048047874,0.23100019,-0.20527509,-0.06765552,-0.8351244,0.16401099,-0.5327284,-0.2777226,0.0039743357,-0.057182483,-0.16466223,0.47486624,0.10588603,0.47760043,-0.22249891,0.11330096,-0.22076328,-0.28250283,0.2750739,0.4247438,0.522821,-0.33173466,0.6812001,0.08849184,-0.1981136,-0.20187701,0.27710304,0.46426943,0.09551501,0.38701698,-0.12836286,-0.2610524,0.3726909,0.8952611,0.23584308,0.5735456,-0.0008491789,-0.084217496,0.2643525,0.19540545,0.31322807,-0.020457685,-0.4565021,-0.048052363,-0.24063845,0.018443655,0.50052404,-0.04777207,0.40120855,-0.093376346,-0.16494365,-0.010702835,0.27013037,0.023303943,-1.2566675,0.42995134,0.12493877,0.7671034,0.6444344,-0.112272926,0.12684184,0.6068967,-0.2818479,0.07458977,0.2761645,0.23324059,-0.4948607,0.6388364,-0.70405513,0.37997022,-0.18801641,0.05903376,-0.13769148,-0.051036067,0.4144301,0.72567505,-0.13341211,0.05422626,0.058223944,-0.39139017,0.32838035,-0.5536446,0.13820174,-0.4960885,-0.23531005,0.7000881,0.4767565,0.27232456,-0.04822688,0.048779555,0.1925758,-0.25910988,0.3216751,0.032685585,0.10293835,-0.09959336,-0.51558477,-0.11011558,0.521281,-0.12761952,0.06450087,0.051124595,-0.23571272,0.20715249,-0.26909304,0.05483669,-0.11287206,-0.6328307,-0.09567178,-0.35187596,-0.34689918,0.45153087,-0.068292506,0.18537317,0.3484018,0.099229276,-0.24584706,0.04896099,0.46980497,0.49091986,-0.11686063,-0.25710624,-0.2430165,0.20325638,0.2589564,-0.17996843,-0.12685359,0.04812279,0.016345093,-0.6521351,0.40655994,-0.24163745,-0.15639074,0.043916505,-0.15355526,-0.16290748,0.60851985,-0.15295148,-0.1779587,0.09164434,-0.10931085,-0.046783306,0.01685414,-0.12993227,0.22412147,0.19420181,-0.091154985,-0.20054205,-0.34397602,-0.16065742,0.26961464,-0.19523634,0.38252208,0.26111987,-0.07387493,-0.36839905,-0.14077921,0.07011866,0.5142418,-0.04726408,-0.1317579,-0.3140154,-0.41314554,-0.32447666,0.18216884,-0.17946298,0.35249045,0.18236819,-0.40573904,0.8826191,0.033123933,1.1314862,0.15579267,-0.31796512,0.14037278,0.66666114,-0.10780804,-0.031774674,-0.19666608,1.0868806,0.56267965,-0.22285748,-0.08794933,-0.46314472,0.21061721,0.33777285,-0.11233454,-0.13062528,0.052028272,-0.6795464,-0.15840957,0.23819754,0.36922556,-0.09896336,-0.012816893,-0.15431604,0.19959676,0.16925876,0.58558255,-0.5886459,-0.06666185,0.22143863,0.19956805,0.19424269,0.17306177,-0.33662057,0.37803522,-0.4046741,0.118280075,-0.3339955,0.11717101,-0.40232056,-0.28184083,0.2848066,0.07862212,0.29915574,-0.17227313,-0.43362802,-0.2238416,0.41529068,-0.03246069,0.3253751,0.48714802,-0.37628323,0.095610656,-0.076630436,0.500435,1.3400649,-0.20431496,-0.0995902,0.42074674,-0.5173737,-0.491409,0.38110223,-0.4309846,-0.065165676,0.049846593,-0.3616769,-0.515833,0.054806598,0.29998326,-0.031000933,0.049928863,-0.5810185,-0.13803017,0.31366202,-0.27543864,-0.34755543,-0.24488734,0.28836825,0.559812,-0.48137838,-0.21043715,-0.0024711874,0.22737996,-0.37397474,-0.42911884,0.15485919,-0.29859525,0.5126563,-0.031843014,-0.44513497,0.052893553,0.060557608,-0.2852165,0.12923476,0.3083528,-0.36534992,0.039601844,-0.2682398,0.2684568,0.86891407,-0.21150734,0.012370825,-0.3626699,-0.5557604,-0.8257516,-0.24669382,0.6319369,0.4550324,0.032960452,-0.5168058,-0.033268485,-0.005198347,0.012562668,-0.06023154,-0.3431671,0.5481267,0.23402074,0.36627382,-0.08729773,-0.83146125,-0.03179873,0.039627396,-0.32601,-0.40315062,0.627221,-0.14219743,0.7534296,0.16588335,0.081449084,0.10189499,-0.43318322,0.21834283,-0.053161062,-0.2777609,-0.7291222,-0.026172085 +813,0.5633462,-0.14589658,-0.42627433,-0.002549519,-0.26109558,0.12422337,-0.18385348,0.42414558,0.06277744,-0.3405882,0.024133377,-0.13242272,-0.11022984,0.4497238,-0.007756229,-0.36516127,-0.11832078,0.13431367,-0.62252253,0.62801385,-0.22320814,0.5527212,-0.09505429,0.10226734,0.21080977,0.3361672,0.18105647,0.0398662,0.08559671,0.025905354,-0.21910019,0.018095005,-0.53644025,0.13929802,-0.19654353,-0.3962593,0.057503182,-0.3725812,-0.3054624,-0.58428806,0.2619527,-0.7207353,0.44477373,-0.04024585,-0.3026179,0.331756,0.045047108,0.3672207,-0.15262525,-0.018303405,0.24972647,0.13143066,0.060798857,-0.16692732,-0.34203804,-0.44020087,-0.3602288,-0.045151073,-0.6317881,-0.30194187,-0.23419315,0.016647374,-0.21322824,0.037933238,-0.098661214,-0.010535425,-0.44612914,-0.01689121,0.19500382,-0.09665392,0.021884056,-0.53167146,0.054374825,-0.17113318,0.15379576,-0.15026417,-0.014238707,0.3700074,-2.4843215e-05,0.610766,-0.07446145,-0.14260782,-0.36940065,-0.00445415,0.027334848,0.58271354,-0.12274216,-0.23299383,-0.19954203,0.09243254,0.48139527,0.11490917,0.19405642,-0.33003613,-0.05613989,-0.20176245,-0.08143511,0.11416594,0.47559804,-0.36508274,-0.20586419,0.45210603,0.6726601,0.23741809,-0.0949132,0.12275803,-0.1333721,-0.13468044,-0.09925256,0.09458574,-0.035462856,0.36482114,0.14048983,0.112586364,0.46251628,-0.06502768,0.15682653,-0.24143444,-0.045238264,-0.03721235,-0.08777078,-0.15216285,0.21355715,-0.4463417,0.1161537,0.04165747,0.62777036,0.21483597,-0.6743536,0.4544352,-0.50235724,0.08512618,0.07430129,0.4822153,0.7088653,0.3166633,-0.015718961,0.7843859,-0.43787417,0.19336839,-0.29070634,-0.07042704,0.044260915,-0.063714266,-0.19208069,-0.55432665,0.21313591,0.011840105,-0.21497415,0.000500532,0.24628608,-0.5025499,-0.12207047,0.1434546,0.62230796,-0.3352539,0.08563873,0.60469204,0.9657204,0.85072136,0.009587924,0.9214344,0.42843023,-0.20731017,0.25325188,-0.38982236,-0.66597134,0.0713813,0.4811244,0.09510841,0.5349491,0.21014205,-0.035088904,0.10911956,-0.21372837,-0.037799757,-0.20243026,0.18219014,-0.11246114,-0.09442627,-0.41048807,-0.2856335,-0.012102409,-0.042514425,-0.15326966,0.26765868,-0.34404278,0.059417047,0.028325973,2.0978744,-0.15261811,0.058393158,0.22705463,0.4037688,0.264242,-0.26656076,-0.25804052,0.5009562,0.22960772,-0.09494962,-0.51979035,-0.056840427,-0.46850032,-0.5425117,-0.10228176,-0.22870809,0.034167346,0.08153725,-0.23031005,-0.027449878,0.004836319,-0.32710248,0.5757577,-2.5461571,-0.010459868,-0.250411,0.40208182,-0.46920258,-0.35037506,-0.13306051,-0.3719641,0.21881159,0.36684886,0.37584588,-0.38073736,0.13017918,0.26899526,-0.5119746,-0.05330508,-0.40158367,0.0468496,0.03895336,0.43750313,-0.18610492,-0.12586845,-0.025285117,0.3150816,0.3098463,0.073948935,0.013701713,0.46561924,0.37968695,0.20371994,0.37702954,-0.033946447,0.45286375,-0.34157932,-0.12537389,0.48062235,-0.15352558,0.41428968,0.11730103,0.16566296,0.24260214,-0.5371911,-0.7031719,-0.46084586,-0.27813417,1.2779251,-0.3423364,-0.5209143,0.23781976,-0.028955908,0.013596831,-0.109592184,0.2880534,0.007887337,-0.17118043,-0.6308596,0.13450594,-0.08923409,0.25203875,-0.019094871,0.07383514,-0.31386244,0.6002112,-0.18102942,0.4476324,0.22469288,0.2642895,0.13340588,-0.2753743,0.08102226,0.83438694,0.62385863,0.018978298,-0.13956009,-0.18533345,-0.30748716,-0.19962683,0.20896666,0.24778964,0.7769602,-0.10887918,0.06572777,0.15508555,0.10604184,0.009162426,-0.25976145,-0.1995891,-0.07600171,0.0040748836,0.39124793,0.27095285,-0.08876587,0.4011493,-0.06845948,0.14468066,-0.021493157,-0.46677113,0.20553504,0.80239564,-0.17736216,-0.116104,0.2831708,0.31866366,-0.23421909,0.4457621,-0.7372654,-0.17693287,0.5206473,-0.17590226,-0.3376102,0.29773048,-0.26547584,0.14436308,-0.7685871,0.15666695,-0.13218562,-0.30603415,-0.39955157,0.01299055,-2.3265254,0.23176734,-0.15120035,-0.24415062,0.061837126,-0.058069088,0.15777685,-0.60430527,-0.6005895,0.08061751,-0.05287246,0.48591107,-0.0023847828,0.12379262,-0.15702374,-0.42997634,-0.46295515,0.11910029,-0.08812305,0.45855123,-0.10854114,-0.42402825,-0.28590745,-0.14353116,-0.35884228,0.039202143,-0.5280311,-0.3226558,-0.36015052,-0.6115492,-0.001067102,0.35973808,-0.276804,0.04065285,-0.26824126,-0.17588392,-0.09502956,0.14665408,0.39015093,-0.02501487,0.19308288,-0.11293201,-0.1557478,-0.39712727,0.3056392,0.2624037,0.17243855,0.5384386,-0.2227319,0.10467092,0.4438153,0.57556236,-0.15589193,0.5789314,0.39773586,-0.20310688,0.4937563,-0.4001327,-0.07803763,-0.55677056,-0.36495504,-0.27993983,-0.34059513,-0.6154212,-0.23734947,-0.24918127,-0.81642026,0.36471558,-0.09728792,0.5221072,0.0023466826,0.21672662,0.48408064,-0.09040482,0.04376587,-0.14315987,-0.11128878,-0.35569322,-0.34669238,-0.5510166,-0.45770296,0.5465105,1.0023614,-0.30315405,-0.033519436,0.024616074,-0.11417176,0.13747658,-0.22962767,0.10117631,0.25858742,0.34189528,-0.028729033,-0.42698643,0.43080413,0.092419006,-0.18115555,-0.37791806,0.17924744,0.50391287,-0.55399865,0.19877638,-0.04421986,0.17582816,0.20181277,-0.5928562,0.019883724,0.15716317,-0.35416353,0.21440196,0.093701206,-0.66486585,0.31833714,0.32899973,-0.38786522,-0.71730983,0.337595,0.073222876,-0.18534455,-0.06684613,0.27786142,0.15831362,-0.0721424,-0.2951498,0.19977123,-0.48292738,0.24097236,0.42654052,-0.051840533,0.10091804,-0.22171383,-0.3909891,-0.6257366,0.31191313,-0.24576457,-0.33790687,0.27028608,0.06456994,-0.07872903,0.08035085,0.28085503,0.45101658,-0.42889813,0.06357897,0.0056440514,-0.07891973,0.564113,0.36149392,0.47693843,-0.34837008,0.4349887,-0.00582629,-0.1671162,-0.0029156366,-0.044010002,0.37872064,0.009300923,-0.08072063,0.12507953,-0.24228184,0.25456527,0.607921,0.14800873,0.16274653,-0.057977922,-0.38611406,0.23027177,0.18643743,0.013035988,-0.007958579,-0.44845423,0.19077483,0.22795588,0.20680887,0.45620158,0.2102453,0.35768726,-0.08542792,-0.14783145,0.14367437,0.0826562,-0.3478746,-0.81916314,0.06426132,-0.008910267,0.64165527,0.5773989,0.10366074,0.122049294,0.3088463,-0.2667418,0.06811237,0.2432685,-0.33791062,-0.55721766,0.37478644,-0.49812478,0.3827819,0.0051702023,0.021138089,0.28594476,0.23999147,0.46154097,0.7680584,-0.16878447,-0.035248462,-0.1303026,-0.1835605,-0.09560517,-0.19905433,0.10670516,-0.4651216,-0.4467777,0.5714181,0.21329184,0.3353902,-0.089464165,-0.045548096,-0.14283021,-0.27132574,0.3185377,-0.033439707,0.14311066,0.012153341,-0.47085768,-0.24237712,0.5324324,-0.06090192,-0.05277362,-0.10400133,-0.32448336,0.10885704,-0.041803457,0.1784033,0.11587652,-0.814804,0.12047363,-0.43824863,-0.07259158,0.15517794,0.13543472,0.30571386,0.1990164,-0.20028464,-0.32528448,0.45232913,0.12023911,0.85083324,-0.16515033,-0.24309541,-0.31509006,0.425731,0.22294578,-0.21144085,0.1860446,-0.08860292,0.007286574,-0.7748441,0.3607728,0.05190418,-0.22345492,0.2785966,-0.27357593,-0.016785054,0.50650644,-0.08378541,-0.11967273,-0.17760356,-0.07083536,-0.36409742,-0.4185905,-0.2651241,0.0005649368,0.106798925,-0.31554598,-0.015855122,0.045533966,0.14700799,0.39588374,0.16238832,0.2722542,0.27386725,-0.025191855,-0.6141999,0.11880736,0.22525415,0.22528572,0.09287388,0.21329024,-0.25709704,-0.34146404,-0.531113,0.0016071082,-0.36058474,0.27715254,0.21109296,-0.26728976,0.6967018,0.16810772,1.1861786,-0.082727164,-0.26008713,0.14878497,0.59172827,0.033860404,-0.19011976,-0.419504,0.9173077,0.74251187,0.2015556,-0.10501415,-0.13012038,-0.47469413,0.15833603,-0.34565124,-0.040295348,0.1533076,-0.52746207,-0.47335052,0.16808052,0.15106262,0.064759836,-0.092880204,-0.00833331,0.08284863,0.015842235,0.30418447,-0.33165583,-0.42185098,0.20001557,0.027801633,-0.03820645,0.14297956,-0.54685044,0.49194357,-0.71080005,0.11047885,-0.27966172,0.087064415,-0.0103368405,-0.23022029,0.061910346,0.14073977,0.39294577,-0.39198163,-0.48151478,-0.15570812,0.5614318,-0.067068815,0.29873726,0.50098723,-0.38770846,0.19281489,-0.108585685,0.37968063,0.88848555,-0.09513199,0.092485696,0.43325692,-0.33569416,-0.56923693,0.28318787,-0.116929606,0.27303445,-0.12299915,-0.16819222,-0.3734614,0.31910628,0.18841888,0.015502961,-0.045271013,-0.5601876,-0.17899421,0.22590624,-0.30800623,-0.1896254,-0.340176,0.124021605,0.8365309,-0.41788405,-0.5613615,0.29181793,0.1423967,-0.2298849,-0.7181727,-0.16052207,-0.11698761,0.27923992,0.16552702,-0.25407845,-0.096472934,0.22384262,-0.23860675,-0.11896665,0.12990186,-0.35805655,-0.094109535,-0.30200195,0.08081366,1.0025796,-0.103890814,-0.2536638,-0.5892376,-0.50322205,-0.84514034,-0.5550851,0.5107924,0.1874675,0.12755762,-0.48803368,0.110517025,-0.33361614,0.009396525,0.0047168075,-0.27369687,0.35364008,0.21134852,0.34742388,-0.33188882,-0.90055287,0.34375298,0.17966303,-0.11645247,-0.57107145,0.40908188,-0.037929248,0.75484157,0.13229598,-0.19879293,0.32624415,-0.6720568,0.108974196,-0.31141388,0.023859631,-0.5644963,0.11454337 +814,0.4176611,-0.11601851,-0.86659795,-0.08379372,-0.14044361,0.16941978,-0.46953967,0.4054284,0.08056119,-0.5522943,-0.101920284,0.0985413,-0.071143605,0.21212576,-0.2627498,-0.44644955,0.15305223,0.3619802,-0.6134261,0.17709523,-0.5190786,0.28362918,0.017699208,0.24498445,0.05671573,-0.032281734,-0.076487154,-0.05159657,0.15253396,-0.5315526,0.19344819,0.17388208,-0.720341,0.2738464,-0.11073353,-0.5095288,-0.08973211,-0.34010267,-0.3646371,-0.86489064,0.37844792,-0.7662131,0.77709705,0.044104308,-0.22656071,0.12662086,0.066397004,0.27413455,-0.08459439,0.15419307,0.36070418,-0.25648254,-0.43197545,-0.28153765,-0.1172806,-0.1967386,-0.5507888,0.018312952,-0.45678055,0.11993313,-0.11182352,0.211752,-0.2707714,0.21474414,-0.3204365,0.44500646,-0.36829606,0.18486875,0.2327166,-0.007062619,0.14909406,-0.68840194,-0.10942737,-0.13342033,0.25475484,-0.20287102,-0.30360457,0.051118374,0.17445797,0.53495425,-0.14605607,-0.07541122,-0.15288064,-0.11155933,0.1987323,0.64735043,-0.16604756,-0.15623389,-0.10313934,-0.18823665,0.23086439,0.096260935,0.11085891,-0.32338008,-0.09495614,0.09077871,-0.4058497,0.5219795,0.513459,-0.34644032,0.09715251,0.29153106,0.5721533,0.28114298,-0.14831793,0.2614371,0.018279066,-0.6307846,-0.34231946,0.055076938,-0.09527934,0.26782408,-0.17401297,0.363933,0.49497762,-0.21403067,-0.33981562,0.30742803,0.1046646,0.063847154,-0.20617501,-0.54087824,0.41449073,-0.5184947,0.13792606,-0.2459362,0.8069703,0.06185103,-0.6763842,0.35562888,-0.75112957,-0.036517184,-0.13117087,0.741867,0.5404441,0.600504,0.100199394,0.7446187,-0.39991996,-0.023199616,-0.099507056,-0.22582002,0.019135406,-0.114586495,-0.042413633,-0.1648972,-0.06820733,-0.10890675,0.013886929,0.015447098,0.69462126,-0.41409096,-0.14656909,-0.07034797,0.575044,-0.42176542,0.11613915,0.71557707,1.170251,1.2103513,0.22553183,1.3273429,0.1316871,-0.2263201,-0.3200818,0.1575088,-0.9902516,0.3357519,0.26887885,0.028570652,0.24138536,0.15637377,-0.23590523,0.5030332,-0.40071368,-0.12597318,0.047178995,0.32490477,-0.11743891,-0.24133213,-0.3011395,-0.17104006,0.14355803,0.032523353,0.13607447,0.19752447,-0.3595904,0.17755969,0.36844477,1.0896981,-0.3475,0.12793113,0.08311231,0.14119922,0.18041961,-0.16100122,-0.084381185,0.17950858,0.46158782,0.00026952228,-0.57731277,-0.07967938,0.005667433,-0.31137124,-0.27503526,-0.09857616,-0.28884026,-0.16368553,-0.36229467,-0.30929807,-0.06332978,-0.2957174,0.2242089,-2.3503723,-0.17532055,0.062972486,0.3645376,0.019941092,-0.44473687,-0.2313058,-0.47390655,0.34382996,0.17512941,0.38715148,-0.518133,0.72559696,0.4826455,-0.44001222,-0.14056563,-0.6695824,-0.21558382,-0.03312303,0.019094542,-0.026027521,-0.062412303,-0.19195934,0.021325817,0.43702447,-0.27763337,0.1628471,0.40147164,0.37679625,-0.017255185,0.45617804,0.01846615,0.595668,-0.52358717,-0.12761217,0.34748587,-0.39842018,0.14838378,-0.20091052,0.19742781,0.37312928,-0.4900104,-0.7891035,-0.6598025,-0.048482448,1.3622926,-0.39032555,-0.3673326,0.2521126,-0.46945056,-0.45135078,-0.06562934,0.3475615,-0.26676047,0.00056215125,-0.8113062,-0.11450075,-0.18677904,0.3714613,-0.058032636,-0.020988027,-0.5232033,0.5860262,-0.07130287,0.65649164,0.4052268,-0.022261783,-0.19999842,-0.26613498,0.09515003,1.106887,0.36900035,0.21582492,-0.36725703,-0.13162605,-0.3709589,0.085834794,-0.1753952,0.6109628,0.7170112,-0.0367634,0.22378814,0.12857227,0.08947461,0.15215704,-0.28047654,-0.4124737,-0.0136935,-0.12152618,0.65151054,0.44663358,-0.08965016,0.14364825,0.0045608506,0.33920792,-0.376793,-0.4209236,0.2388587,0.8923049,-0.10238271,-0.4720846,0.7500662,0.47539267,-0.22729301,0.53170687,-0.5119522,-0.45695338,0.3211541,-0.12188842,-0.33105913,0.32324818,-0.4742116,0.20640416,-0.72919697,0.41332516,-0.4752206,-0.6339528,-0.26764312,-0.26655236,-2.7806098,0.290763,-0.23776639,-0.050140534,-0.280122,-0.1252628,0.38968587,-0.2451915,-0.7822284,0.009754022,0.1715798,0.62895846,-0.1802148,0.06269646,-0.06598579,-0.29882595,-0.37319672,0.24585575,0.114448644,0.21887429,0.010988511,-0.32011268,-0.059680343,-0.26434326,-0.039324965,-0.13505913,-0.5791647,-0.26809424,0.1962375,-0.4327258,-0.43513632,0.66163945,-0.43999946,-0.01761131,-0.21095026,-0.051789314,-0.024838038,0.43837762,-0.15805823,0.23671083,-0.20454818,-0.14907348,-0.13035835,-0.18642151,0.19953157,-0.1198245,0.0026307367,0.28842542,-0.2031805,-0.03558928,0.2023594,0.84922314,-0.060653552,1.1404322,0.24315785,-0.1923157,0.30657396,-0.039045047,-0.41510525,-0.51975965,-0.040858265,0.10831186,-0.49893388,-0.19370358,0.021012524,-0.37832198,-0.8457608,0.5394103,0.04451376,-0.25167593,0.09264651,0.46526185,0.25268272,0.0042961114,-0.08803564,-0.16481255,-0.115839384,-0.33829442,-0.25416884,-0.7287863,-0.23371439,-0.3304986,1.2960407,-0.21922183,0.15284465,0.25682738,-0.05386855,0.113467835,0.37100697,0.09027463,0.13460754,0.60347974,-0.028566306,-0.60784096,0.26872122,-0.4399955,-0.21744715,-0.65743655,0.08749927,0.7885856,-0.76538676,0.502739,0.54213935,0.16455323,-0.20984338,-0.67270637,-0.13565718,0.04649651,-0.28006077,0.6102432,0.37086344,-0.8323202,0.48272905,0.45116803,-0.2253934,-0.726458,0.48812413,-0.10513351,-0.13800395,-0.10424315,0.45866132,-0.18944304,0.10443747,-0.091593884,0.09952682,-0.28391677,0.42194185,0.013382892,-0.16879152,0.0019682248,-0.31194946,-0.034477353,-0.68157864,-0.014522503,-0.5594066,-0.1408147,0.093950905,-0.15975048,0.21690618,0.3285812,0.051474255,0.5494199,-0.29978657,0.09975786,-0.21380584,-0.39515278,0.42548907,0.49867535,0.3080038,-0.26429626,0.75822353,0.03687766,-0.19975595,-0.2855924,0.24730246,0.4780996,-0.15883298,0.5136049,0.077501304,0.028688716,0.32307693,1.0186427,0.18085784,0.49040103,0.12602784,0.036941003,-0.045310926,0.13584574,0.21089184,0.18961982,-0.5746048,-0.13127555,-0.108911216,0.20925017,0.7395849,0.07415542,0.48847497,-0.19351403,-0.22719587,-0.07016575,0.22176236,-0.019867728,-1.3296167,0.5248306,-0.008561085,0.76182747,0.49787697,0.023735056,0.22533052,0.3178225,-0.07140994,0.100981474,0.16719663,0.24435174,-0.3825809,0.527618,-0.63312405,0.33452368,-0.2706112,0.042977143,0.22227617,-0.22080566,0.6147005,0.7760883,0.044590484,0.07948463,0.09169605,-0.1533831,0.12030085,-0.45626092,-0.014584561,-0.44000635,-0.16131864,0.83922356,0.5688552,0.49486542,-0.36926198,0.06543977,0.17584914,-0.045043975,-0.0010396689,0.009431083,-0.02925242,-0.18404348,-0.62035125,-0.029955199,0.69577974,0.15681438,-0.09146631,0.07770106,-0.3705252,0.392306,-0.04218642,0.21098553,-0.2314992,-0.6184508,-0.14881812,-0.5480272,-0.5952555,-0.01909755,0.024016859,0.017774245,0.3591708,0.080658555,-0.3179354,0.3263069,0.12023904,0.61524934,0.11698715,0.04643308,-0.22771437,0.37918004,0.2648023,-0.108785875,-0.14540042,-0.417014,0.2920141,-0.6605045,0.3816023,-0.1341532,-0.27243996,0.2998759,0.113548756,-0.059726607,0.60820323,-0.28121912,-0.1187117,0.2501412,-0.1544876,-0.1371973,-0.43997216,-0.3372338,0.0135407895,0.23918867,0.0065027275,-0.19288476,-0.046119273,-0.15296704,0.16143519,0.089502834,0.31633338,0.5102058,0.25644508,-0.3672866,-0.1654022,-0.075153165,0.80716157,-0.16230239,-0.23151976,-0.4246051,-0.54851454,-0.16702987,0.68468875,-0.022433504,0.2262456,0.17240848,-0.22760844,0.7630305,0.25207946,0.8126629,0.129128,-0.24505003,0.06370693,0.60935545,-0.048120916,-0.22670561,-0.44898546,0.8615317,0.38507238,-0.281359,-0.104669325,-0.2935364,-0.19127351,-0.13449307,-0.28515586,-0.21166505,-0.10337681,-0.61811477,0.08326202,0.15608712,0.3606442,-0.06466159,-0.15193485,0.2861797,0.47822723,0.013918181,0.0010763481,-0.6079818,0.05681543,0.29778305,0.1466174,-0.121129744,0.047716975,-0.32622615,0.24443607,-0.63452864,-0.14592545,-0.2401669,0.02650351,-0.039687645,-0.3194324,0.16651799,0.14999884,0.139214,-0.49440527,-0.06555744,-0.08881005,0.24501748,0.14284788,0.29787496,0.74994606,-0.2726299,0.037409544,0.0441308,0.5801568,0.7983732,-0.16750203,0.061992835,0.3880075,-0.46805525,-0.5553525,0.14035578,-0.46446314,-0.05247717,0.0661555,-0.20961118,-0.47149742,0.3482838,0.21335496,-0.08239124,0.1822521,-0.8691883,-0.1445339,0.31108722,-0.15624534,-0.17395101,-0.15583353,-0.002948622,0.6573185,-0.21992816,-0.32715768,-0.060872566,0.34709117,-0.2807694,-0.53162533,0.0891185,-0.42712608,0.3013533,0.20429713,-0.07879121,-0.103817016,0.03672063,-0.5496916,0.07422495,0.20443374,-0.14715616,-0.03303009,-0.4873352,0.076935746,0.63058186,-0.307669,-0.036016703,-0.29226172,-0.7014635,-0.8317768,-0.025666356,0.20589466,0.16868065,0.06174152,-0.62630874,-0.1313018,-0.21749713,-0.14509635,-0.032458894,-0.27743602,0.58403826,0.07660024,0.49018195,-0.05184227,-0.8539416,0.20372403,0.121097304,-0.44031087,-0.32077882,0.50878435,-0.0068698623,0.7176013,0.13956448,0.13533203,0.128584,-0.6923926,0.28541324,-0.19646478,0.009620622,-0.889846,-0.061795946 +815,0.6182696,-0.3665927,-0.51652884,-0.122461036,-0.1968417,-0.05918902,-0.22244428,0.37156308,0.21103582,-0.26605386,-0.008100685,-0.13129126,0.12888947,0.26021755,0.014581194,-0.61311686,-0.1476811,0.076131634,-0.54655325,0.59912866,-0.4756178,0.2791456,0.009427372,0.32196656,0.1209741,0.3382235,0.1617026,-0.08899673,-0.21518707,0.058040045,0.017756168,0.36540464,-0.5921699,-0.06307198,-0.09008492,-0.15835658,0.008842823,-0.47018,-0.47749582,-0.6957385,0.30734158,-0.7917946,0.5220757,0.28753313,-0.3229145,0.34376106,-0.2931285,0.17405245,-0.48821336,0.056890227,0.18910465,0.1244346,0.05366284,-0.33812132,-0.24156179,-0.22297321,-0.5847846,0.08080121,-0.42983967,-0.14365965,-0.17522237,0.012637633,-0.39800444,-0.1475619,-0.19942841,0.42627466,-0.5569382,-0.059159823,0.22348258,-0.14683256,0.3103051,-0.4771045,-0.031230021,-0.20282075,0.10602673,-0.23003927,-0.31136042,0.3075562,0.2456693,0.5232769,-0.21657595,-0.24803765,-0.30686906,0.06928657,0.20882161,0.47808117,-0.21859162,-0.5539045,-0.090090655,-0.026399272,0.064666845,0.14125602,0.057846826,-0.35953322,-0.12681843,0.13858633,-0.10970118,0.3070853,0.6095656,-0.24031995,-0.31563875,0.2558712,0.5024452,0.27962843,0.014544756,-0.08178024,-0.05236369,-0.5961821,-0.2323697,0.22557351,-0.20774092,0.4917132,-0.10534296,0.12763582,0.7093615,-0.23526964,0.06489478,0.0012088879,0.014082662,0.050885815,-0.19111177,-0.28107184,0.28035346,-0.3920329,0.1880512,-0.17302874,0.6218299,0.33401114,-0.7417675,0.5032749,-0.5004713,0.24292201,-0.18005046,0.6497783,0.77163047,0.29393518,0.31554076,0.63978976,-0.4997632,0.1733015,0.022000305,-0.5088385,0.31078023,-0.25371745,0.0035447676,-0.47985357,-0.018277781,-0.035219207,-0.43570465,0.07531762,0.4234374,-0.6204662,-0.04388747,-0.022957655,0.6782123,-0.2901841,0.07487547,0.5142761,0.8151281,0.8684773,0.048260197,1.2836492,0.47880584,-0.30855605,0.4001103,-0.41340664,-0.88800937,0.27066162,0.46217102,-0.19540414,0.44262382,0.032653376,-0.06414137,0.2914743,-0.2598919,0.042997725,-0.25790885,0.19830507,-0.081645645,-0.17704153,-0.52942914,-0.29427752,-0.22580265,0.13248098,-0.10717068,0.3707808,-0.270639,0.24080355,-0.042068187,1.9142456,-0.069246165,0.07163542,0.02396973,0.45292738,0.37239596,-0.1919884,-0.117595576,0.47786775,0.41015306,0.20622028,-0.6096684,0.18385741,-0.25218225,-0.3738808,-0.1446375,-0.40647727,0.22923613,-0.009966125,-0.52624995,-0.019178264,0.09515169,-0.188663,0.40277413,-2.5630667,-0.1681255,-0.008055154,0.37531292,-0.34592864,-0.33905286,-0.20656642,-0.41047776,0.19987266,0.33147162,0.62857014,-0.8096808,0.1565989,0.31122848,-0.6172663,-0.005484295,-0.58889735,-0.21082617,-0.021908836,0.356624,0.037425954,-0.06826664,0.09003866,0.1173432,0.43104953,-0.038081456,-0.019634854,0.17890781,0.515123,-0.023703353,0.3764456,-0.023118136,0.4036557,-0.23936857,-0.25054818,0.4775371,-0.10629713,0.35029012,-0.044386968,0.08078587,0.35589775,-0.4660935,-1.0291765,-0.5511385,-0.31726977,1.0815136,-0.33543694,-0.4278583,0.2949094,-0.23235713,-0.24744138,-0.068827,0.40692914,-0.05845158,-0.04002923,-0.8680824,0.11977695,-0.09196858,0.24093764,0.13121195,0.07630251,-0.26913851,0.6599743,0.09815747,0.27516013,0.32049987,0.19400167,-0.020090075,-0.49380207,0.09890898,0.9379556,0.34415987,0.14463827,-0.23821948,-0.3434759,-0.14325117,-0.011860083,0.09924831,0.27567044,0.7566321,-0.11354802,0.17900614,0.3301591,-0.023107609,0.025224857,-0.18900448,-0.27773055,-0.022249846,0.12771796,0.60029995,0.7498853,-0.42353833,0.34378645,-0.025909903,0.18615426,0.06598408,-0.6239764,0.59235096,1.1139375,-0.06647535,-0.13071783,0.5256255,0.39200392,-0.55904084,0.50973254,-0.6993692,-0.20575878,0.45727602,-0.18477379,-0.33922353,0.37428632,-0.3397182,0.16571735,-0.84252363,0.47016934,-0.09734807,-0.0436098,-0.49342746,-0.08470132,-3.415916,0.18169333,-0.2605622,-0.11814178,0.030699369,-0.062164124,0.16846469,-0.66249686,-0.4762154,0.13459225,0.04004591,0.5926038,-0.12821661,0.060666375,-0.29999223,-0.2682761,-0.2484712,0.11113735,0.22544739,0.37458244,-0.081565164,-0.493552,-0.17984551,-0.17194717,-0.38194147,0.11282509,-0.5662706,-0.6116743,-0.25967824,-0.62613136,-0.10075163,0.64522016,0.00084811647,-0.0032565554,-0.082778245,0.012421368,-0.10417046,0.33878803,0.21432044,0.25863475,-0.006662623,0.029161096,-0.06835617,-0.30693686,0.16989683,0.106365606,0.21768065,0.3775341,-0.13249251,0.19113204,0.61880416,0.6994196,-0.25922528,0.6559574,0.617427,-0.17879295,0.31052732,-0.2568084,-0.23136066,-0.58570164,-0.49974886,-0.17642848,-0.45045456,-0.48058337,-0.0565533,-0.29665676,-0.7530136,0.5901673,-0.22086261,0.22975138,0.01726391,0.26093674,0.5534846,-0.17674188,-0.07267884,-0.12425916,-0.198136,-0.6342143,-0.18087047,-0.60405296,-0.4552925,0.3825489,0.9237559,-0.22277316,-0.08097113,-0.0020157655,-0.15432048,0.0006338179,-0.021271592,-0.010315853,0.25696197,0.35869077,0.08361296,-0.57957613,0.5275472,0.12704082,-0.28664225,-0.50093645,0.16932504,0.6559494,-0.6647561,0.6013275,0.18978061,0.0787981,0.06487443,-0.5972594,-0.3544525,0.23486169,-0.10740692,0.50117546,0.15701011,-0.6698214,0.37787607,0.42505318,-0.43589827,-0.58567977,0.5144814,0.028261418,-0.31362945,-0.10850315,0.28948396,-0.13370527,0.031789258,-0.27383602,0.37118015,-0.47972453,0.2257993,0.36893782,-0.1309989,0.27410474,-0.084037654,-0.085841425,-0.7401562,0.19939607,-0.44083515,-0.2999762,0.39122242,-0.007866998,0.11918186,-0.036659077,0.24233504,0.4643866,-0.37070057,0.041438125,0.050919738,-0.22572449,0.45973963,0.44820926,0.4630464,-0.49920267,0.5423051,0.07846675,-0.14025046,0.05947881,0.054161116,0.46267796,0.062475268,0.20886709,0.03252902,-0.123907246,0.23420592,0.7642067,0.13550569,0.45669946,0.11221372,-0.07115548,0.23506108,0.14582524,0.07937594,0.029821761,-0.33326846,0.10915132,0.12678514,0.16174024,0.48723957,0.12116725,0.15849158,-0.24237403,-0.2632467,0.09741091,0.35917372,0.26720414,-1.023034,0.26076782,0.16651265,0.55344826,0.4930377,0.00802224,-0.06698311,0.57050824,-0.20458624,0.058306124,0.31456107,-0.13605182,-0.7257395,0.48859727,-0.56945217,0.48844716,0.06123861,0.08374748,0.026962487,-0.11356958,0.403273,0.6540291,-0.18538637,0.015770188,-0.111828126,-0.25351763,0.12066535,-0.4116515,0.02213616,-0.5146402,-0.37671185,0.691156,0.43709114,0.23290281,-0.11653732,-0.012667591,0.09426191,-0.15835194,0.29184347,0.015825959,0.1581573,0.09914656,-0.6691311,-0.18867974,0.54736865,0.010459972,0.051396217,-0.17523116,-0.04731573,0.29827785,-0.21262655,-0.15767299,-0.093034856,-0.7106663,-0.034386445,-0.5248817,-0.35945946,0.47137263,0.02902795,0.29579732,0.14847764,0.059707996,-0.5150827,0.49176985,0.13167778,1.0325434,-0.071298085,-0.25150073,-0.47680053,0.37401864,0.2799569,-0.19896123,-0.04691654,-0.26166168,0.0022196213,-0.62687385,0.4903005,0.003820457,-0.41935265,-0.1339107,-0.15203695,0.035507433,0.5654054,-0.2150634,-0.40788022,-0.34289277,-0.22522335,-0.32941258,-0.2713588,-0.07483921,0.25464326,0.35528252,-0.09213281,-0.17819983,0.018644663,-0.024942096,0.5977033,0.064962685,0.29356816,0.34020513,0.19225238,-0.2988421,-0.07578136,0.3345712,0.4454418,0.059461955,-0.08224867,-0.37149525,-0.3783578,-0.5129729,-0.04309629,-0.18706419,0.36381283,0.113992974,-0.2314787,0.74084765,0.020748658,1.2127961,-0.03977151,-0.21657285,0.16123687,0.48629662,0.041149992,-0.13801403,-0.34709856,0.94745576,0.5987722,0.00036536256,-0.25569797,-0.42450187,-0.26896307,-0.028745301,-0.30275142,0.024334261,0.043458503,-0.65193754,-0.18356775,0.18779056,0.3130926,0.21570404,-0.17836304,0.16909479,0.09355699,0.10356105,0.15776096,-0.42830753,-0.24341209,0.31552032,0.11227616,-0.024501598,0.14256404,-0.42620012,0.39591077,-0.3426574,0.12478412,-0.29401895,0.2289883,-0.0930581,-0.41789868,0.18415497,-0.002651294,0.3925687,-0.491211,-0.30497476,-0.29601175,0.6005169,0.14551128,0.11552981,0.59788346,-0.32055697,0.26242492,0.08906155,0.4737247,0.98941207,-0.25414377,-0.005699766,0.38250732,-0.2672804,-0.78358275,0.31827253,-0.27799985,0.2855608,-0.23255688,-0.24873313,-0.6807691,0.1387324,0.07344159,-0.04198079,-0.10115154,-0.5761784,-0.2811404,0.20798859,-0.28566828,-0.1840816,-0.4258831,0.15346092,0.7229857,-0.30706918,-0.37235624,0.25991732,0.030915074,-0.26889107,-0.30795446,-0.11872114,-0.3362252,0.16000834,0.13624318,-0.35589445,0.068924576,0.20625658,-0.37583452,0.16535456,0.23487465,-0.3953179,0.11481981,-0.25400674,-0.061337344,1.1792663,-0.21808335,0.09321249,-0.5572049,-0.508693,-0.97105974,-0.3564073,0.707063,0.010192194,0.14251073,-0.74138725,0.10491263,0.0024689515,0.07496799,-0.18635021,-0.40799478,0.37057683,-0.011377936,0.27797276,-0.21931177,-0.71197295,0.14052992,0.20573893,-0.17647181,-0.64511275,0.5342875,-0.055129852,0.8281072,0.07481011,0.18725796,0.39446747,-0.5398314,-0.23782967,-0.3078615,-0.24135186,-0.6832775,0.048120696 +816,0.6679153,-0.2729104,-0.6395512,-0.122288205,-0.27174193,0.061874952,-0.36962846,0.3629147,0.07874583,-0.6170496,-0.24367745,-0.082087375,-0.11280428,0.23814133,-0.23937938,-0.69767725,-0.11459851,0.040313713,-0.3631091,0.85765415,-0.27100736,0.32065085,-0.051129382,0.5424594,0.3949654,0.29835156,0.25345922,0.124003515,-0.26317063,-0.39938852,0.14772797,0.24004507,-0.72009844,0.33064982,-0.19675805,-0.42825285,-0.117058404,-0.38596892,-0.19663318,-0.82637453,0.32665047,-0.89449686,0.49496037,-0.00074763596,-0.26269037,0.36461544,-0.00056439213,0.12709515,0.030921862,-0.047295023,-0.03394297,-0.23607655,-0.054143883,-0.30821303,-0.16833235,-0.3319494,-0.62746894,0.03794289,-0.61158276,-0.11083076,-0.32195303,0.27905235,-0.40179712,-0.10256653,-0.23550631,0.7366044,-0.53755283,0.056167714,0.13023876,-0.0021569133,0.2601986,-0.73853594,-0.3461351,-0.19183242,0.10864205,-0.12516026,-0.17707194,0.1950606,0.16872905,0.28003067,0.076058604,-0.22180739,-0.41538572,-0.34202948,0.40579763,0.2515943,0.16603963,-0.46141148,-0.2477708,-0.3243751,0.29606536,0.17764723,0.42242247,-0.20114014,0.015339158,-0.05735078,-0.17138918,0.6163879,0.5669969,-0.23335133,-0.33507085,0.32275048,0.54702693,0.2760104,-0.26087323,-0.0029402461,-0.054180108,-0.3508744,-0.07288848,0.34120113,-0.19907077,0.5556786,-0.115868144,0.27796248,0.6165188,-0.44333825,0.17177622,0.016397974,0.05431852,-0.21930507,-0.27792028,-0.27854985,0.282201,-0.4530041,0.20964213,-0.27198192,0.8270749,-0.005904534,-0.5833155,0.23045202,-0.65649885,-0.018677818,0.05632483,0.7077304,0.60144603,0.4550306,0.22543205,0.62073535,-0.19774191,-0.061644677,-0.12776433,-0.18524303,-0.20537853,-0.2780771,0.009847283,-0.40671822,-0.07680238,-0.07421446,0.011131027,-0.23665987,0.7693068,-0.37864804,-0.10522224,0.08238379,0.6860322,-0.3091685,-0.14507134,1.1172159,1.1300553,1.1764807,0.11386837,1.2404901,0.16689633,-0.18136759,-0.23443784,-0.09795683,-0.61010516,0.36699015,0.33360586,0.03169709,0.39933133,0.05510119,0.050597582,0.3203435,-0.43043226,-0.1019308,-0.16127907,0.15920956,0.12054575,-0.028803213,-0.5247279,-0.16459201,0.06301718,0.08897299,0.15550362,0.27753553,-0.35667482,0.48953682,0.16543257,1.1460218,-0.17432837,0.083760925,0.02999418,0.47223276,0.13842031,-0.14112876,0.13383994,0.3250802,0.30764028,-0.006170869,-0.763575,0.20374736,-0.23143306,-0.6707746,-0.21613857,-0.44326115,-0.08035452,-0.07879095,-0.4906822,-0.19931854,-0.070905186,-0.38135916,0.16483186,-2.4930348,-0.17397325,-0.052885957,0.2833175,-0.2544284,-0.33961156,0.010239921,-0.60165733,0.27253562,0.2958626,0.2939625,-0.51295376,0.46521872,0.5772232,-0.5175723,-0.052062143,-0.6839362,-0.02149094,-0.20498703,0.61631185,-0.2199203,0.039182298,0.053748142,0.1769069,0.68095785,0.0953834,0.16304643,0.2699982,0.36816326,-0.20769472,0.35047373,0.10636903,0.3920729,-0.39502695,-0.18660362,0.4902131,-0.38216516,0.35402304,-0.30085284,0.23678865,0.5727878,-0.39719325,-0.81374997,-0.7337385,-0.35949078,1.1348673,-0.13661583,-0.6789927,0.098287754,-0.23092572,-0.2515204,-0.07398732,0.55559725,-0.17746381,-0.010466195,-0.6838918,-0.025339385,-0.14588483,0.22204028,0.023457138,0.22567356,-0.5815894,0.7693907,0.062181003,0.47135833,0.17677855,0.46678203,-0.27830434,-0.4943101,0.21056832,0.970756,0.53825897,0.06718024,-0.5004065,-0.22015299,-0.096792154,0.010377867,0.112855256,0.552057,0.6380133,0.031353317,0.2756166,0.24058585,-0.0507726,0.102957256,-0.22284286,-0.21320342,-0.28288615,0.064179905,0.56631666,0.5515746,-0.12792987,0.41171953,-0.108878136,0.25979814,-0.26461312,-0.47030264,0.7032896,1.154559,-0.17079352,-0.24631755,0.71728325,0.66118526,-0.57070315,0.62486464,-0.6260233,-0.086174265,0.5247372,-0.28570908,-0.380572,0.15490349,-0.32314232,0.13993372,-0.92952955,0.21693297,-0.34249517,-0.51436394,-0.6182203,-0.2635628,-2.8483732,0.10706418,-0.16186841,-0.2519119,-0.32323667,-0.42739263,0.2859816,-0.67747647,-0.62039804,0.11338417,0.02426156,0.7209657,-0.18944669,0.059814088,-0.2396214,-0.40836802,-0.39046615,0.2214198,0.16136329,0.42392656,-0.20883669,-0.24907355,0.14187835,-0.15676118,-0.40746123,-0.14026557,-0.25695905,-0.42486158,-0.1499935,-0.37954715,-0.10293547,0.5403807,-0.18990803,0.06543108,-0.20942512,0.032438766,-0.0045444793,0.5228857,0.11195161,0.3198585,0.18472455,-0.06254046,0.058683455,-0.45031476,0.2924632,0.00323147,0.08746808,0.51620716,-0.32329115,0.30830622,0.39797518,0.5011799,-0.03294557,1.0644188,0.3580847,-0.100144565,0.38129872,-0.22082952,-0.43622762,-0.81144875,-0.24227533,-0.026259992,-0.37010822,-0.63622314,-0.08611198,-0.22872533,-0.98040235,0.5504918,0.020512242,0.51591194,-0.06407707,0.37963215,0.40592733,-0.16769196,-0.13522837,0.064376645,-0.038814638,-0.4979968,-0.45572552,-0.7307235,-0.54762834,-0.075798385,0.8079271,-0.23798278,-0.2892677,0.13258037,-0.29118988,0.098203234,0.18971218,0.044607453,-0.018050399,0.3732989,0.3353805,-0.5425512,0.605877,0.118617155,-0.09788234,-0.4722109,0.16349265,0.6726852,-0.59683305,0.34866944,0.4016495,0.08119447,-0.2216035,-0.59414774,-0.023135195,0.04155906,-0.12567268,0.50184596,0.3648519,-0.8732613,0.47624153,0.019813549,-0.14251079,-0.81313,0.604482,-0.017784264,-0.1798774,-0.17828174,0.516539,0.12090898,0.048577692,-0.23016813,0.29414147,-0.3268097,0.09774882,0.29855993,-0.10598427,0.36333188,-0.2587685,-0.31505495,-0.6474796,0.15383217,-0.6386067,-0.32081112,0.27525443,-0.004939173,0.11394269,0.3877263,0.31974235,0.443363,-0.25064418,0.1483206,-0.09117283,-0.27100936,0.42848644,0.52452844,0.7225109,-0.40922275,0.6774096,0.10773344,-0.11594315,0.12660031,0.09161832,0.47957966,0.017734868,0.540954,0.111797385,-0.17530249,-0.020781595,0.7559572,0.3004231,0.64444476,0.1508489,-0.31438214,0.35454106,0.12848547,0.43835267,-0.27382225,-0.56281155,-0.063938215,-0.26262,0.04784487,0.5547108,0.08701093,0.37351304,0.015998717,-0.090910174,0.19413725,0.13247035,-0.15444496,-1.2196258,0.21772143,0.1820599,0.8456444,0.67590076,-0.110853575,0.17709146,0.4805433,-0.23619768,0.08724672,0.42102823,0.22730221,-0.4660005,0.6408953,-0.69203365,0.39342728,-0.11734842,-0.11443595,0.027839566,0.002983387,0.47148636,0.7582811,-0.3010628,0.05190253,0.014512808,-0.32296896,0.26802447,-0.45031816,0.15662387,-0.37142536,-0.20813076,0.9201507,0.5014668,0.36417356,-0.17028785,-0.0445916,0.12936844,0.043134905,0.27521655,0.101680644,0.054873176,-0.12049904,-0.49362782,-0.2412325,0.5649103,-0.18079476,0.05702293,0.020383982,-0.4389153,0.09855165,0.06582548,-0.12742482,0.13020252,-0.87438077,-0.047310617,-0.23425232,-0.68130726,0.4531266,-0.1760207,0.25234398,0.2782342,-0.017579814,-0.20961976,0.13281366,0.35891077,0.5907182,0.12153391,-0.020217594,-0.47137377,0.07830839,0.39194775,-0.3299164,-0.053037506,0.017739505,0.20679362,-0.5879423,0.30182245,-0.36852536,-0.32137445,-0.0627934,-0.09525531,-0.11482296,0.6923725,0.09604997,-0.11268175,0.016295735,-0.22834024,-0.21485876,-0.13878329,-0.08854691,0.26665133,0.016015125,-0.2935173,-0.25603858,-0.028507074,0.17601857,0.26485783,0.0071625155,0.33714762,0.39242107,-0.17437561,-0.49538442,-0.17748462,0.27127257,0.45128074,-0.052797437,0.025899157,-0.18899696,-0.48850435,-0.4226165,0.43738517,-0.088620625,0.055569492,0.16977195,-0.33808252,0.9520299,0.13268293,1.0171717,0.11871383,-0.58747756,0.31141475,0.5561752,-0.09000857,-0.16220124,-0.45449805,1.0470074,0.30854124,-0.27603707,-0.20015427,-0.38700628,-0.09555827,0.14343396,-0.3841308,-0.05717367,-0.1659437,-0.5899026,-0.073089376,0.0906151,0.29090446,0.015339361,-0.15587126,-0.030831363,0.41651326,0.19149913,0.5017365,-0.641003,-0.19642815,0.428696,0.003093924,-0.030614274,0.09702342,-0.3035972,0.3523619,-0.6759573,0.09017102,-0.26894352,0.25893444,-0.23147814,-0.42463478,0.23911892,0.19387795,0.39685646,-0.2860691,-0.56055963,-0.45857906,0.42645016,0.12182327,0.14378056,0.49373648,-0.27267736,0.19925354,-0.16425565,0.54465306,1.143983,-0.11411619,0.12962253,0.28195217,-0.5055332,-0.74866676,0.18213797,-0.46590868,0.34108475,-0.1069985,-0.346664,-0.6100383,0.093952075,0.2809449,-0.012951681,0.14724731,-0.62772876,-0.3075099,0.13712844,-0.282851,-0.19105768,-0.122477554,-0.03774854,0.71274656,-0.35189542,-0.30573195,-0.11072456,0.25113496,-0.16901584,-0.47356263,-0.05719385,-0.3290905,0.36230844,-0.1779447,-0.30599946,-0.064616166,0.18962753,-0.45981583,0.10610308,0.1542945,-0.21888505,-0.07208705,-0.31986883,0.3025969,0.8227166,-0.09546517,0.078040496,-0.46332926,-0.68513244,-0.89311653,-0.53737617,0.17821547,0.096690044,0.1542389,-0.6078831,0.19711044,-0.3296266,0.20763037,-0.0003726142,-0.5106437,0.4086645,0.24822876,0.47624096,-0.027229045,-0.86050373,0.2182738,0.15723963,-0.15924849,-0.559671,0.47788858,-0.18642572,0.7803613,0.061671343,0.04190882,0.009729013,-0.66486347,0.082243785,-0.1750217,-0.15493776,-0.6244021,0.1920882 +817,0.36434823,-0.16398302,-0.46132094,-0.13911453,-0.15372021,0.19180427,-0.07533467,0.43671295,0.1764369,-0.48549047,-0.1591085,-0.22991551,0.04308737,0.21052313,-0.2509331,-0.3924047,-0.04574645,0.0311179,-0.38525206,0.30071136,-0.5027843,0.23607473,0.118291594,0.18725552,0.17380846,0.24856308,0.22904317,-0.15542524,-0.10039531,-0.06575463,-0.1900332,0.18729173,-0.43148035,-0.041143943,-0.095852785,-0.24865286,0.06351628,-0.40153155,-0.37488577,-0.6368288,0.4954186,-0.8803118,0.45737177,0.12181677,-0.14182208,0.32267994,0.11275571,0.12907812,-0.21250486,-0.039176166,0.19399239,0.048599303,0.03208512,0.012362793,-0.23217484,-0.37505388,-0.5580537,-0.016774971,-0.3855541,-0.2667808,-0.21681832,0.21466303,-0.3291215,0.011959097,-0.16953638,0.54556334,-0.4301951,-0.0670288,0.27363405,-0.20570683,0.32826605,-0.6646313,-0.110151924,-0.059942067,0.07217803,-0.23652008,-0.1518163,0.08897086,0.33092174,0.5874155,-0.012126053,-0.1873357,-0.36438122,-0.062206417,0.07635168,0.44138765,-0.3248102,-0.5687821,-0.14343877,0.038173642,0.10327593,0.117484786,0.15547858,-0.26299468,-0.058901507,0.0034700462,-0.33140466,0.4511814,0.55289936,-0.50805056,-0.22566581,0.31599575,0.58328766,0.015346893,-0.07797481,0.09325867,0.07310099,-0.45906928,-0.11772651,0.13970318,-0.30881506,0.5377811,-0.25877076,0.34638953,0.6038664,-0.20114791,0.21136539,-0.0071842778,0.02002648,-0.073437445,-0.30741864,-0.13628791,0.12112224,-0.49526143,0.13933952,-0.17261139,0.8821445,0.14054474,-0.62129575,0.34172556,-0.42930827,0.18722312,-0.15522203,0.5237842,0.5689869,0.292447,0.24159333,0.75306267,-0.5620683,0.07994526,-0.17641708,-0.2922948,0.043601904,-0.020220874,0.06346341,-0.36945936,0.005043941,0.06336843,-0.07994672,-0.16335866,0.40003198,-0.6072362,0.06847538,0.21461211,0.83996403,-0.26899084,-0.19403477,0.67425126,0.9561382,0.8848172,0.023969352,1.1047722,0.25136253,-0.24023019,0.23934971,-0.33475304,-0.74017113,0.2206159,0.37260792,0.22515048,0.21576054,0.20636155,-0.08955496,0.3727145,-0.38734898,0.0049016858,-0.40360478,0.2201902,0.29236427,0.037320126,-0.303579,-0.15187705,-0.011515932,0.05963769,0.11813712,0.23968752,-0.050635964,0.2078233,0.064088054,1.6647367,-0.19359832,0.22475128,0.16230631,0.42682,0.20438015,-0.06315984,0.014207742,0.2641332,0.45337015,0.15729192,-0.70556915,-0.0023627835,-0.1935984,-0.53353035,-0.059864167,-0.2318206,-0.039494358,-0.09107154,-0.54355174,-0.15529834,-0.15768088,-0.29654762,0.45974186,-2.9586868,-0.011939551,-0.18529637,0.26101455,-0.36774996,-0.3262958,0.0008560504,-0.49776652,0.40385076,0.44979912,0.41452485,-0.7754646,0.33536404,0.4073753,-0.34014153,0.043330114,-0.70099264,-0.08015402,-0.18240397,0.30512276,0.1256694,-0.15516546,-0.019188046,0.11835077,0.41644788,0.111314654,0.19014195,0.17611502,0.40699068,0.1275556,0.4696278,0.040635712,0.45893675,-0.105786756,-0.1787714,0.29315677,-0.33761138,0.21893804,-0.21329126,0.11301936,0.33010635,-0.39384386,-0.7509613,-0.6738667,-0.38607496,1.1983407,-0.1094606,-0.4123681,0.28557134,-0.25042856,-0.13430107,-0.16009666,0.40396425,-0.11972041,-0.1617262,-0.83347183,0.16950552,-0.17208636,0.16611423,0.046303146,-0.03854376,-0.40744907,0.74345744,-0.29958704,0.35960546,0.44238833,0.22159491,-0.28756446,-0.47232994,-0.09446884,0.8895401,0.3542562,0.15534846,-0.20217922,-0.3008162,-0.21826331,-0.029592644,0.098845504,0.49865073,0.7902889,0.08315913,0.13054301,0.3381529,0.034160294,0.01729382,-0.14283423,-0.38126203,-0.091567114,-0.012444102,0.56669635,0.503626,-0.19977497,0.4376085,-0.1796139,0.11214797,-0.2520643,-0.4227269,0.36076817,0.8026084,-0.13186583,-0.25854138,0.64060766,0.31086677,-0.25044963,0.33926216,-0.6480733,-0.22842874,0.43032858,-0.20086794,-0.42895916,0.13993685,-0.33582672,-0.013649749,-0.7827817,0.35606602,-0.31115156,-0.47664803,-0.503877,-0.27967837,-3.9369106,0.22094207,-0.36934564,-0.115290694,-0.031667553,-0.20836034,0.23397067,-0.5501181,-0.5149481,0.21996713,0.072037615,0.48571613,0.07474063,0.09849085,-0.24519803,0.031013284,-0.29431203,0.112277724,0.13741603,0.23930493,-0.011767621,-0.42896786,0.13155523,-0.17005484,-0.3771008,0.14145456,-0.48771313,-0.46818924,-0.1633688,-0.58615094,-0.29030615,0.7228821,-0.30902553,0.028977066,-0.29920292,0.027117262,-0.21882844,0.43112925,-0.010089828,0.15228815,-0.061141882,0.027831199,-0.12930037,-0.25190017,0.32561502,-0.020322787,0.2230419,0.33794895,-0.22106315,-0.006774715,0.4006536,0.5697436,-0.048708577,0.8090205,0.53988457,-0.19274059,0.33568054,-0.13770433,-0.09110068,-0.59611523,-0.32841277,0.078306854,-0.4772412,-0.497362,-0.055858288,-0.35360786,-0.63091034,0.4640567,-0.061360233,0.32339138,0.00200576,0.2892106,0.54813266,-0.104156174,-0.005538251,-0.068585955,-0.10300296,-0.6369773,-0.2984198,-0.56312484,-0.3028865,0.1599296,0.949922,-0.17598693,-0.070245005,-0.053132337,-0.26872292,-0.060564023,0.07268148,-0.0068662423,0.24354938,0.34214005,-0.21582906,-0.58508176,0.39032882,-0.021637013,-0.18012358,-0.5210701,-0.05946252,0.5634667,-0.5803688,0.6703723,0.34318215,0.09732264,-0.22087029,-0.61433345,-0.3469414,0.028214548,-0.36902612,0.4570355,0.2191093,-0.76596534,0.4737992,0.34964302,-0.22338565,-0.72863394,0.46154815,-0.012392306,-0.15677881,-0.034356557,0.2808184,0.081093654,0.052313443,-0.06984181,0.1802375,-0.38508433,0.2834588,0.13311322,-0.10853965,0.3859232,-0.1627164,-0.13387558,-0.68326473,-0.12134333,-0.53390604,-0.09736199,0.1596677,-0.032586534,0.07013223,0.1635284,0.042786803,0.48121205,-0.2079902,0.10983287,0.07913266,-0.1270582,0.22825202,0.34256104,0.37178904,-0.4901533,0.59566027,0.0103724515,-0.09569306,-0.07645947,0.036027934,0.47668952,0.11540246,0.23926458,-0.089691095,-0.19758001,0.46972737,1.0109537,0.15989682,0.5236271,0.08955463,-0.06589527,0.28372008,0.08089961,0.10723666,0.014664956,-0.48074526,-0.18708445,-0.113879785,0.19311602,0.36866018,0.14243641,0.4087196,-0.15181056,-0.3307381,-0.030728446,0.16436312,-0.038661834,-0.9160448,0.14019586,0.112815365,0.84806156,0.49954095,-0.06250642,0.0835668,0.45079714,-0.1948887,0.11223768,0.31831232,0.12763707,-0.4801313,0.49095944,-0.62069863,0.28632903,-0.13405201,0.018891603,-0.1824888,0.032164186,0.35654622,0.75949246,-0.17687485,-0.044523973,-0.0540453,-0.1617014,0.22154379,-0.33345312,0.122042164,-0.6045493,-0.23451154,0.5666478,0.44409624,0.39872912,-0.02867629,-0.13895094,0.042922873,-0.044463295,0.035690453,-0.04944902,0.08203165,-0.010266887,-0.6461219,-0.36839363,0.5079393,0.21192625,0.14960912,-0.047549594,-0.3237531,0.21528485,-0.2241451,-0.18284698,0.013717265,-0.6297726,-0.058298707,-0.13591285,-0.5053233,0.43721038,-0.2447428,0.16231559,0.20582299,-0.01888524,-0.33976936,-0.029094024,0.13323934,0.63545406,-0.098598056,-0.032847825,-0.5352017,0.07877779,0.14378402,-0.13419728,-0.10112793,-0.1639781,0.041334547,-0.5913578,0.45939818,-0.0083783865,-0.19217137,0.21034493,-0.28261536,-0.04840604,0.6594568,-0.07415166,-0.061904874,0.07179209,-0.35584387,-0.20982702,-0.045316074,-0.09817656,0.24219133,-0.026502516,0.040903635,-0.0930096,-0.15016142,-0.2335381,0.3154866,0.14910717,0.16511126,0.39191693,0.19108985,-0.42303464,-0.15049647,0.053372685,0.47822112,-0.018041808,-0.17819186,-0.2781668,-0.5521417,-0.19292776,0.135379,-0.040933967,0.31932148,-0.0075145895,-0.3678864,0.8721426,0.04612327,1.0508667,0.07079778,-0.43044668,-0.21467818,0.5474568,-0.025211278,0.068192795,-0.266752,0.7907737,0.514057,0.05056665,-0.1448228,-0.29258886,0.14424555,0.26523268,-0.068328254,-0.059996996,-0.091997586,-0.5847254,-0.20576203,0.42954412,0.25161415,0.0865201,0.004873297,0.12153077,0.18473682,-0.0656745,0.59415656,-0.54987997,-0.09056567,0.1829443,0.2652489,0.24961312,0.14938721,-0.31001344,0.37196103,-0.4650316,0.10389241,-0.23153794,0.17446105,-0.19305405,-0.2352219,0.19559129,-0.11711428,0.54259473,-0.19073507,-0.35944924,-0.19217329,0.5413578,0.10295638,0.242263,0.5676774,-0.255891,0.029366449,0.018215507,0.6374377,1.0158049,-0.21189348,0.03687628,0.46033266,-0.17673433,-0.74440926,0.41470474,-0.32260242,0.14537962,-0.045474496,-0.17195018,-0.3049306,0.25429562,0.35384494,-0.01159287,0.12362403,-0.5285454,-0.33306667,0.32992262,-0.24372683,-0.20220105,-0.1600708,0.2747072,0.66948044,-0.3074729,-0.10122112,0.04317807,0.46333972,-0.24537158,-0.5195393,0.033230446,-0.27470812,0.40440717,0.12998886,-0.21193327,-0.03968277,0.03999922,-0.31678966,0.0453864,0.16045949,-0.3022447,0.12776013,-0.21642773,-0.029692592,0.7655938,-0.008391465,0.11016005,-0.64145344,-0.35258636,-0.87514156,-0.26594105,0.509133,0.026286563,0.06822333,-0.66019535,-0.030784557,-0.089233585,-0.051847376,-0.06649788,-0.38611156,0.63790894,0.2006323,0.34339,-0.048742626,-0.50625205,-0.017570416,0.04660483,-0.059335846,-0.41436443,0.5427342,0.065065436,0.7562095,0.11201792,0.0629469,0.14398275,-0.41933075,0.17583807,-0.22439004,-0.39264253,-0.8122188,0.033781618 +818,0.42539883,-0.11868656,-0.33777207,-0.13093115,-0.33237296,0.2133002,-0.22732715,0.28106812,0.20873587,-0.25322336,-0.15703505,-0.06075434,0.04580999,0.36378193,-0.037437405,-0.6428803,-0.073393166,0.05523497,-0.8261413,0.3464579,-0.64921385,0.37679517,0.11698264,0.32460123,0.059560984,0.51744634,0.34125966,-0.19661152,-0.12645163,0.0015392564,-0.11349207,0.14161713,-0.5729518,0.10169597,-0.17086402,-0.26134723,0.13187891,-0.44475746,-0.16370364,-0.60443485,0.08546472,-0.81705534,0.4168187,-0.10160632,-0.05581535,0.054275025,0.011228561,0.31640065,-0.44592392,0.21917054,0.1470488,-0.19422975,-0.06662584,-0.3215388,-0.0847156,-0.34182662,-0.36370856,0.060730595,-0.5449153,-0.39625132,-0.13847108,0.16297999,-0.34554833,0.07628311,-0.10554904,0.09938111,-0.42546132,0.027371211,0.2734536,-0.29894155,-0.0022700205,-0.42253125,0.17174992,-0.076741606,0.5422605,-0.12846455,-0.16584304,0.33852524,0.31356114,0.49399814,0.24902219,-0.22469741,-0.036998373,-0.22342071,0.17460617,0.50929934,-0.17772454,-0.18736608,-0.26884663,-0.022085499,0.19021899,0.26692396,-0.0023478698,-0.25920594,-0.08263756,-0.109940775,-0.1553813,0.25435245,0.46630186,-0.40338433,-0.3479849,0.376166,0.58231354,0.12902199,-0.12043083,0.06599213,0.032041647,-0.50522804,-0.144974,0.12872165,0.025649415,0.42354065,-0.1388539,0.17331053,0.85417444,-0.21261248,0.07810931,-0.2006955,-0.117432974,-0.10120295,-0.25062978,-0.08400174,0.13698983,-0.4055211,-0.0567931,-0.18630075,0.699516,0.3185149,-0.67575574,0.46222192,-0.48668814,0.11806388,-0.106298886,0.69566923,0.6584005,0.3144536,0.20363209,0.8253819,-0.35982636,0.3483674,-0.19601087,-0.39504445,0.034778535,-0.20061536,0.012609009,-0.44107175,0.28542444,-0.106152885,0.10751754,0.15371594,0.22856861,-0.5624112,-0.04466591,0.20692481,0.68710667,-0.3608317,-0.093755394,0.69149435,0.95540094,0.7260324,-0.076661915,1.2027583,0.51577604,-0.27075154,0.1047689,-0.3157501,-0.63729215,0.1679855,0.38124102,0.23264563,0.27081826,0.030991279,-0.10915092,0.19422741,-0.30653808,0.0013903305,-0.094571516,0.2510988,0.03273807,0.0852866,-0.38842303,-0.11945513,0.004222829,-0.1747113,0.13926849,0.25230187,-0.16393338,0.36980987,0.016499497,1.5565495,-0.07825282,0.049693078,0.12274867,0.5087435,0.30415362,-0.15925707,-0.14688721,0.47586152,0.36368316,-0.16258352,-0.6131965,0.19429442,-0.29113302,-0.59617627,-0.042983714,-0.36081785,-0.07671534,0.013556272,-0.33086216,-0.1616683,0.037213914,-0.23704648,0.5088314,-2.8507075,-0.26914302,-0.050838556,0.3158658,-0.4181286,-0.23031348,-0.26781872,-0.4268815,0.16802588,0.27865964,0.4303275,-0.5849792,0.4250155,0.3379152,-0.37672725,-0.22037151,-0.6132187,0.025591984,-0.014675738,0.44690633,-0.04579316,-0.14560492,-0.24095832,0.026846558,0.63118064,-0.027055766,0.13858804,0.3789987,0.3811931,0.3159352,0.4723735,0.053315908,0.6244072,-0.36894834,-0.27843446,0.45615438,-0.22618645,0.321602,-0.11211361,0.18467247,0.38455293,-0.41852242,-0.82325953,-0.60963273,-0.38513887,1.0602635,-0.4266636,-0.37210965,0.15225756,0.116534635,-0.042403296,0.14229594,0.4073022,-0.16315949,-0.0053817155,-0.6511532,0.17660698,0.061119784,0.2561745,0.06851205,0.019947097,-0.23331589,0.561604,-0.21255246,0.6103228,0.18168384,0.1526204,0.065768585,-0.2631477,0.11338255,0.9453566,0.24512182,-0.039871093,-0.096363544,-0.3142675,-0.09026012,-0.2562681,-0.016898744,0.4162519,0.793456,0.09368798,0.04923463,0.26324445,-0.06027136,-0.013162419,-0.11345107,-0.17126358,0.005925037,0.029282998,0.4941638,0.51359797,-0.1030321,0.4241857,-0.18265226,0.36685586,-0.0803185,-0.45780933,0.5823362,0.42728642,-0.2162975,-0.041170754,0.37063336,0.36757857,-0.45875224,0.45134538,-0.6737037,-0.27707046,0.64773875,-0.15992686,-0.3452431,0.24760923,-0.112250455,0.15744835,-0.81955564,0.2683919,-0.18079741,-0.23447302,-0.36094087,-0.1840653,-3.305131,0.087217584,-0.076384075,-0.12680964,-0.16272025,0.0049770083,0.23571923,-0.5861998,-0.41096628,0.12661257,0.122571915,0.5017207,0.025306301,0.1495772,-0.34889308,-0.19770879,-0.12115578,0.13218065,0.053001486,0.27256218,-0.11749895,-0.36737338,-0.053602625,-0.1384836,-0.47768563,0.1745366,-0.65049076,-0.4219525,-0.0989358,-0.45153475,-0.16739517,0.6373312,-0.44380984,0.010480832,-0.2222836,0.07550449,-0.4036387,0.116503365,0.22857271,0.20128761,0.18405622,-0.04769756,-0.008077584,-0.41377458,0.4948206,0.05838971,0.38157165,0.20624113,-0.011882234,-0.033763345,0.3705169,0.47423756,-0.13710877,0.8551024,0.20991698,-0.102311805,0.23967102,-0.3004473,-0.16899616,-0.536245,-0.43780503,-0.14130099,-0.36868855,-0.5811453,0.028654855,-0.3581097,-0.8108634,0.5317662,0.061882198,0.26140553,-0.0637408,0.36924154,0.47159258,-0.21901149,0.03192593,-0.04657487,-0.09073763,-0.5075275,-0.34222808,-0.6166827,-0.52727246,0.20929277,0.90039384,-0.30053276,-0.06322916,-0.19586743,-0.19602758,-0.07216987,-0.05582376,0.11516777,0.35419115,0.53516865,-0.07620561,-0.5639105,0.4597179,-0.13455114,-0.20740694,-0.4970423,0.017412243,0.5724218,-0.7686093,0.52060217,0.2731513,0.14633928,0.27716333,-0.43566227,-0.19293033,-0.016040307,-0.18470494,0.3804263,0.035445746,-0.7515699,0.5861634,0.23215306,-0.35621116,-0.6570254,0.2591286,0.10677542,-0.29236937,0.110938266,0.29605526,0.08380024,-0.2316238,-0.25077647,0.16126831,-0.510278,0.23990755,0.22826841,-0.029925363,0.3581638,-0.11425988,-0.49370754,-0.6125909,-0.073806055,-0.4740929,-0.2715494,0.30124632,-0.05739933,0.07023006,0.092785135,0.07596971,0.4396779,-0.37146658,0.08754934,0.03870228,-0.24280897,0.16135159,0.3141566,0.25171974,-0.3878485,0.4296425,0.08823821,-0.090515524,0.22976921,-0.07881284,0.47500902,0.052458636,0.2049959,-0.20008942,-0.20353158,0.3492087,0.77932966,0.21686059,0.3290612,0.0011768341,-0.2047055,0.5516677,0.065363966,0.093292385,0.08047208,-0.34558576,-0.030224964,0.18005179,0.12327503,0.4322285,0.43301424,0.41353935,0.047177896,-0.1714503,0.07265602,0.10184809,-0.059203625,-0.70043933,0.16245154,0.13641824,0.6988267,0.34008655,0.067824036,-0.11449071,0.516457,-0.3006673,0.17810163,0.28183177,-0.19811659,-0.50158983,0.607585,-0.44869223,0.3799998,-0.14078648,-0.09785128,0.2613753,0.13034101,0.3318767,0.80649143,-0.15319628,0.02270146,-0.01967405,-0.1026438,-0.008366564,-0.22895245,-0.027230866,-0.3267364,-0.2728842,0.6742587,0.33957246,0.2554667,-0.21696962,-0.038154293,0.0268125,-0.12220001,0.116820365,-0.035435814,0.12706527,0.22300671,-0.4105134,-0.37321466,0.6192251,0.055006247,0.06691663,-0.090215564,-0.35589808,0.15749323,-0.24238636,-0.04273086,-0.10084943,-0.5088185,0.0911667,-0.21697968,-0.5043533,0.20976372,-0.009010479,0.14485373,0.15983579,-0.013311885,-0.19458197,0.3096893,0.10365349,0.95593256,0.040368445,-0.4035102,-0.3952001,0.08296221,0.33388558,-0.2962911,0.043693896,-0.412669,0.032431744,-0.61670494,0.55375874,-0.17243989,-0.3237045,0.26800942,-0.20963609,-0.11296271,0.4971839,-0.058722727,-0.04569775,0.059452347,-0.11215425,-0.46228257,0.10950923,-0.40112358,0.14309707,0.2598241,-0.06798719,-0.10262041,-0.18266343,-0.13568321,0.48821387,0.13762504,0.36319232,0.21369042,-0.04971265,-0.14349222,0.08797096,0.20595704,0.36123163,0.0558733,0.0064061657,-0.19433185,-0.45730013,-0.24046767,0.28144646,-0.15530476,0.2527451,0.10391773,-0.31765378,0.76664627,0.030692901,1.0230694,0.06949716,-0.276769,0.07344928,0.51396084,-0.025314342,0.06804544,-0.43577874,0.85516685,0.5774386,-0.018704973,-0.04366698,-0.29398522,-0.2307772,0.2814028,-0.36907881,-0.04972417,-0.07472975,-0.5808923,-0.5348854,0.31217763,0.041677624,0.2094175,0.057813335,0.010371489,-0.008650815,0.13001417,0.33682483,-0.6238061,-0.3833077,0.22164342,0.23164237,-0.044845093,0.18907398,-0.38087258,0.48300183,-0.71333784,0.10452164,-0.45823675,0.07757168,-0.072883576,-0.2399593,0.10095192,-0.030181006,0.37948394,-0.35173273,-0.5246853,-0.04232402,0.32992804,0.07987078,0.26360795,0.6210622,-0.27419752,0.05534777,0.11649259,0.53466254,1.090034,-0.32189092,0.15071966,0.39940625,-0.25356615,-0.5112688,0.26792413,-0.33317578,-0.0007567033,-0.1979152,-0.36616763,-0.35544083,0.3950214,0.17838016,-0.021225099,0.08351693,-0.5594808,0.010440424,0.33276552,-0.2279147,-0.30610126,-0.25244212,0.38590258,0.9563575,-0.3160799,-0.2706975,0.15507933,0.26886106,-0.43650997,-0.55316687,-0.072950795,-0.24687853,0.30496785,0.13983937,-0.17962569,0.03109717,0.1136675,-0.3822685,0.1027253,0.2636761,-0.35590565,0.06136597,-0.12582096,0.0786904,0.82030857,-0.10096664,0.0025468543,-0.6919892,-0.42543307,-0.9102224,-0.62110764,0.39591384,0.14355947,0.06427489,-0.24987683,0.08243938,-0.12572153,-0.2984651,0.14933282,-0.5631642,0.3710916,0.119253404,0.45116282,-0.29029253,-0.8719558,0.11797008,0.11193742,-0.24991074,-0.61173546,0.46947414,-0.12822779,0.90437174,0.045978814,-0.2010035,0.09139241,-0.4996184,0.10508945,-0.49704075,-0.0033506379,-0.809886,0.1820975 +819,0.40925896,-0.3596358,-0.36296168,-0.21710919,-0.07743738,-0.05560792,0.047086123,0.78767085,0.14591989,-0.47957724,-0.18927383,-0.21026196,0.085715815,0.39282465,-0.03487983,-0.34573454,-0.059230093,0.19670753,-0.46529454,0.48807847,-0.3668049,0.069022425,-0.1253952,0.3330743,0.42768183,0.32523778,-0.09189129,-0.11557546,-0.10957673,0.025926612,-0.058650993,0.024676431,-0.45253074,0.23906294,-0.08454831,-0.26018724,-0.14279205,-0.65682733,-0.4308799,-0.6654197,0.37667224,-0.6567074,0.3641796,0.09082666,-0.2713687,0.07950766,0.08807168,0.5812504,-0.4989937,-0.11908495,0.25057176,0.17172508,0.025914095,-0.002506806,0.03686439,-0.34007034,-0.51643807,-0.106553465,-0.23188914,-0.4076112,-0.21277636,0.09272299,-0.28050113,-0.082376696,-0.0768931,0.67950594,-0.49122617,-0.048755523,0.11559809,-0.039178815,0.22520648,-0.69322217,-0.2609198,-0.124637194,0.34027353,-0.13274048,-0.27158353,0.32169774,0.28204226,0.24197458,-0.046763264,0.00027799743,-0.16271913,0.043854233,0.17718744,0.40576676,-0.19254154,-0.47431234,-0.09651532,0.10653882,-0.084825106,0.19641589,0.31264699,-0.38985088,-0.09466913,0.17132764,-0.2932855,0.34282914,0.4384712,-0.2798095,-0.12737566,0.42486933,0.6570268,0.24532509,-0.14899588,-0.046304047,0.07908693,-0.45686215,-0.1685664,0.16050215,-0.28127706,0.6116645,-0.055862818,0.2162219,0.64174503,-0.109453656,-0.05746044,0.00648427,0.15983368,-0.049747575,-0.441618,-0.4887214,0.27714568,-0.41440964,0.13266255,-0.18949576,0.72510266,0.26740715,-0.6749704,0.3911184,-0.54539585,0.17337786,-0.25578788,0.35531387,0.84508014,0.28260583,0.30687335,0.7292711,-0.39671442,0.08200597,0.0758815,-0.27751157,0.19981839,-0.30521673,0.034464303,-0.515653,-0.08429513,0.028564246,-0.14637579,0.026199596,0.32414246,-0.6480296,-0.12299815,0.2429563,0.84789586,-0.24145178,0.017287552,0.6517551,1.1075892,1.0702069,0.15418006,1.0342726,0.09757538,-0.3855589,0.54321146,-0.2777507,-0.73359627,0.27426785,0.47390655,0.14064218,-0.066668205,0.14551352,-0.033741083,0.6194589,-0.5006831,0.35244912,-0.2022019,0.037515864,0.11876462,-0.1961647,-0.51722276,-0.23909189,-0.1977017,0.03817685,-0.29960775,0.18038821,-0.23546213,0.1422822,-0.0641084,1.8044881,-0.0032360987,-0.001200527,0.08680217,0.5413776,0.0300819,-0.38643247,-0.11729198,0.41020137,0.5646387,0.19405127,-0.670862,0.15983619,-0.23944965,-0.3564383,-0.004651254,-0.4366783,-0.12671314,0.054448996,-0.4991159,-0.19743074,-0.15824498,-0.18499255,0.40937254,-2.8720057,-0.18349561,-0.11934963,0.495182,-0.24919368,-0.2911829,0.060419485,-0.45070457,0.3859414,0.4268286,0.5667247,-0.6145398,0.37027967,0.353799,-0.6825088,0.08149632,-0.7026978,-0.16848403,-0.0388022,0.27097782,-0.053137876,0.011530388,0.18077427,0.08293697,0.46654025,0.1504006,0.21275555,0.34491614,0.3145283,0.022847308,0.7199884,-0.14634784,0.5364732,-0.36110318,-0.11540571,0.054245222,-0.42609873,0.15224172,-0.020215876,0.098221585,0.50658506,-0.5970651,-0.97514397,-0.6919048,-0.2550616,1.1391095,-0.28834975,-0.26516208,0.46137226,-0.6162527,-0.21363464,-0.30860713,0.5986069,0.11343015,-0.149626,-0.8043953,0.024659062,-0.04405553,-0.009316165,-0.021818053,-0.2512253,-0.45403764,0.751824,-0.107616805,0.625782,0.41688225,0.06450128,-0.15064892,-0.31185713,-0.044823233,0.7825657,0.32439283,0.12508993,-0.07366849,-0.09643814,-0.6391319,-0.06956963,0.18640018,0.5089295,0.7040322,-0.10016637,0.16738392,0.36708143,-0.03816454,0.034536038,-0.051822368,-0.40644142,-0.21488333,-0.07125151,0.46331128,0.59315264,-0.126216,0.47774938,-0.060429875,0.16710071,-0.101109646,-0.3421655,0.43118417,1.0376555,-0.14296308,-0.31974533,0.41896954,0.5021795,-0.22176765,0.35688207,-0.37018108,-0.0787437,0.49164695,-0.1636454,-0.44964877,0.10447263,-0.31128195,0.099317595,-0.8363174,0.37080333,-0.48326775,-0.558662,-0.5977034,-0.11153872,-3.3031816,0.2667628,-0.30071643,-0.29008958,-0.046239268,-0.15330333,0.0048431675,-0.7215426,-0.5700004,0.24806218,0.010635897,0.81180954,-0.07929086,-0.049133096,-0.22478175,-0.32216975,-0.3254224,0.039759938,-0.007433179,0.36009708,0.04397699,-0.4908951,-0.03862941,-0.022274602,-0.423166,0.082566544,-0.6553138,-0.3995102,-0.16695581,-0.65773726,-0.40372676,0.8122063,-0.23666936,0.07529188,0.015644394,-0.028637296,-0.10623955,0.18311238,0.08105301,0.25551656,0.000741899,-0.16341805,-0.048687577,-0.23324715,0.08284599,0.1631558,0.53531134,0.044806864,-0.06256798,0.23034811,0.60101527,0.6084567,-0.11326828,0.8189522,0.70569575,-0.23812899,0.19136597,-0.3345261,-0.14952964,-0.49156895,-0.2861643,0.029321779,-0.39700687,-0.60664624,0.0663275,-0.35246745,-0.6165749,0.33026057,0.035109617,0.2872815,0.2161059,0.1140987,0.5286394,-0.024924356,-0.05905455,-0.103410155,-0.032239433,-0.70262206,-0.0298626,-0.65634686,-0.42925748,0.41072732,0.97977865,-0.26262596,0.037114117,0.11181747,-0.40126038,0.14628512,0.19505788,-0.23684727,0.22482486,0.26059264,-0.21228161,-0.6170001,0.32831457,0.052003503,-0.17521253,-0.5339539,0.35665724,0.47168735,-0.6739754,0.83194715,0.20723276,-0.17493473,-0.3832712,-0.4508481,-0.32581395,-0.03867539,-0.19508506,0.3101707,0.04936862,-0.7725325,0.21154809,0.41752216,-0.21585317,-0.768791,0.71050644,-0.24170847,-0.17497127,-0.07781992,0.2528078,0.21548519,0.004796185,-0.18201596,0.3759529,-0.5468185,0.18144941,0.19004427,-0.06658161,0.20086451,-0.11180303,0.04289896,-0.7809196,0.085608125,-0.60255694,-0.10812009,0.5014189,0.12720369,0.29003766,0.13233326,0.36991775,0.29203948,-0.10039141,0.13828681,0.03393332,-0.35719907,0.36886653,0.40419218,0.38625678,-0.54382885,0.46764895,0.07682684,0.0064988793,-0.05284109,0.12726732,0.22815484,0.22556166,0.45621052,-0.13893138,-0.36477518,0.20753254,0.7738289,0.2570694,0.51727194,0.119116284,0.016360663,0.046456132,0.077026434,0.18017873,0.046385504,-0.6761072,0.20299004,-0.08389024,0.2035879,0.36892632,0.1226258,0.15835428,-0.16096155,-0.3722103,-0.04812801,0.41456458,-0.04039849,-1.2185284,0.5890812,0.18134119,0.91110283,0.62456137,-0.025309004,-0.20748848,0.62716407,-0.09577816,0.1906517,0.33573493,-0.13753293,-0.64828247,0.6244643,-0.8036129,0.54392403,0.036687966,-0.02502525,-0.06334919,-0.08999106,0.47901887,0.5195272,-0.16906375,-0.04204187,-0.039383825,-0.30875632,0.24461631,-0.49398568,0.17534159,-0.74840087,-0.2268897,0.56695,0.52338237,0.2175991,-0.120588474,0.06905582,0.054167926,-0.28884643,0.25157693,0.08588195,-0.056024157,0.17524906,-0.9323422,-0.19896998,0.3808854,-0.38394013,0.2611368,0.037375845,-0.17568572,0.29566202,-0.118747585,0.027150141,0.013623354,-0.6874484,0.11958747,-0.3094811,-0.2891967,0.45912826,0.070617676,0.3552662,0.23387045,0.11849663,-0.1743984,0.49570704,-0.1161895,0.8348528,-0.22665697,-0.22666143,-0.5007894,0.087247066,0.12308073,-0.10358491,0.085219555,-0.4614604,-0.07448129,-0.5886082,0.58081776,0.27849498,-0.2764303,0.024110902,-0.08527703,0.05035808,0.6107819,-0.16303845,-0.023805825,-0.2221633,-0.19433628,-0.19494504,-0.27850455,0.03539867,0.21655677,0.17683712,0.3295442,-0.09527891,-0.11647168,-0.102813356,0.4704235,-0.034666196,0.4697933,0.27563816,0.09877778,-0.22234,-0.2538084,0.23794986,0.3414149,0.12632619,-0.22512193,-0.26190996,-0.43087605,-0.46929252,0.03447238,-0.13850969,0.65927494,0.014375668,-0.15947038,0.57351816,-0.20610029,1.253564,-0.011652226,-0.38898277,0.07594523,0.5966389,0.011354823,-0.17226419,-0.19693547,0.8209879,0.6201184,-0.037348274,-0.052934643,-0.39835688,-0.18064035,0.28169423,-0.11903457,-0.20811372,0.11603583,-0.63021857,-0.14105925,0.1646158,0.27645424,0.4771206,-0.0804833,0.14964396,0.39242518,-0.12386691,0.08665859,-0.36300376,-0.3624047,0.18407798,0.18314494,0.07210091,0.085808426,-0.52933127,0.4002013,-0.5248708,0.24600625,-0.117035195,0.14778525,-0.18935484,-0.35347077,0.1736895,0.06755197,0.45935294,-0.1636114,-0.31417906,-0.23458925,0.5830484,0.15968798,0.18870729,0.6545878,-0.19674753,-0.027701521,0.08228392,0.4229863,0.8567908,-0.13381633,-0.2523534,0.25413302,-0.41594782,-0.7773264,0.36798888,-0.3421118,0.28228265,0.1895882,-0.07261357,-0.65363127,0.17237239,0.2568242,-0.1972966,0.05970477,-0.71657795,-0.3782326,0.24602894,-0.25125104,-0.15664607,-0.47079408,0.17641874,0.6269289,-0.4121953,-0.24356928,-0.041027952,0.17115332,-0.085371345,-0.43280593,-0.03835496,-0.5812512,0.21977884,-0.08650672,-0.4447983,-0.21718301,-0.036342572,-0.30669242,0.3250233,-0.15916078,-0.37932244,0.15907548,-0.24038024,-0.29868576,0.9631619,-0.102042526,0.22974926,-0.28322393,-0.4022962,-0.6851408,-0.42453936,0.47385588,-0.02528675,-0.07463903,-0.682379,0.09284496,0.037420217,-0.039247002,-0.20825343,-0.412335,0.5421753,0.111682154,0.35451138,0.033607688,-0.72868866,0.2724475,0.13907632,0.009553715,-0.6969734,0.49182975,-0.15068026,0.92123795,0.06124818,0.19554447,-0.009832145,-0.34948504,-0.19172621,-0.25043735,-0.32892677,-0.45158932,-0.016711874 +820,0.49729776,-0.062331736,-0.4469263,-0.049727537,-0.15550034,0.13513874,4.7616162e-05,0.30432948,0.23390989,-0.2458979,0.023195982,-0.28873578,0.093032375,0.33851725,-0.02907511,-0.3702184,0.14633733,0.07356426,-0.37060174,0.40365437,-0.5015128,0.39816162,-0.05378359,0.3662895,0.1355889,0.40390143,0.08635921,-0.14783755,-0.17023437,-0.22604637,-0.009514181,0.26079348,-0.2818209,0.12009207,-0.025793497,-0.24043995,0.226021,-0.27526054,-0.56456274,-0.6812651,0.20406437,-0.5384537,0.38604227,0.0780144,-0.29472393,0.07089089,0.11043025,0.34305993,-0.1902873,0.062396713,0.0908053,-0.08911111,0.10143582,-0.15049793,-0.19432598,-0.3496347,-0.5102071,-0.025025487,-0.4970205,-0.2820196,-0.29943708,0.13048722,-0.39728543,0.0211977,-0.1858356,0.30499604,-0.35137045,-0.0125659825,0.25546625,-0.32416984,0.3772462,-0.52123386,-0.36892018,-0.09203253,0.1245981,0.008137858,-0.15193571,0.30817503,0.342236,0.52489257,-0.079365715,-0.116662286,-0.40740266,-0.20650199,0.12173423,0.57165617,-0.19950962,-0.36284527,-0.08647739,-0.013906781,0.07503237,0.26782566,0.18308207,-0.15587501,-0.17433244,0.18013713,-0.35248998,0.3539659,0.4480158,-0.4314069,-0.2573753,0.25208434,0.5169552,0.17676727,-0.20020714,0.009518128,0.044064537,-0.42684162,-0.15860456,-0.020605547,-0.24798152,0.5254497,-0.022159314,0.3358293,0.642963,-0.3331198,-0.012120629,0.079626,7.4676675e-05,-0.0996735,-0.21162967,-0.055378743,0.022711,-0.47256836,0.1248851,-0.12538394,0.82816195,0.21396147,-0.49943054,0.40488073,-0.51682794,0.18462859,-0.09251823,0.6202043,0.52337635,0.20249541,0.4043141,0.7295098,-0.4605245,0.1464243,-0.10416565,-0.34572715,0.1435948,-0.18076818,0.030126158,-0.49077258,-0.13127501,0.16732751,-0.22527952,0.07729368,0.49917832,-0.58402723,0.0045604506,0.1535764,1.0197202,-0.25161952,-0.14842337,0.46093458,1.0843273,1.099361,-0.048695423,0.9174406,0.06997242,-0.2970667,0.06262656,-0.49883613,-0.47399327,0.26623642,0.3008302,-0.097047284,0.13086724,0.097563885,-0.12311847,0.30000076,-0.32072958,0.17758808,0.0013180136,0.4135022,0.14976718,-0.15227264,-0.35380515,-0.4073508,-0.14951095,-0.13357286,-0.07272052,0.24396664,-0.15765099,0.36870047,0.040690962,1.8699199,-0.0041229087,0.1618298,0.041449606,0.62958986,0.1231307,-0.079716764,-0.02324481,0.3030413,0.15291835,0.12992916,-0.5124975,0.12064644,-0.3396428,-0.45809796,-0.03889582,-0.30774593,0.035721183,-0.012601606,-0.2797998,-0.10335231,-0.13972153,-0.2682687,0.54926705,-2.9100504,-0.23081066,-0.0047534425,0.30590108,-0.31031978,-0.2681603,0.13648054,-0.5304814,0.28295767,0.33065018,0.4325376,-0.7674768,0.20945159,0.37581095,-0.40489545,-0.12561359,-0.5572347,-0.1058543,-0.01965017,0.281184,0.06460729,-0.077340394,-0.20584883,0.21281004,0.362683,-0.05400416,0.13590318,0.17042981,0.19862337,-0.041568454,0.61733216,0.13791241,0.38990483,-0.087654024,-0.17206019,0.37565988,-0.36915323,0.31197658,-0.09726106,0.07084966,0.32949066,-0.29363874,-0.7618713,-0.4760231,-0.22111975,1.0833782,-0.11424669,-0.45986685,0.37452558,-0.31388837,-0.23359604,-0.27768025,0.23272099,-0.06092314,-0.15390567,-0.703885,0.099617146,-0.21011998,0.11226021,-0.0023190817,-0.038101386,-0.25517792,0.50524825,-0.027526425,0.34714633,0.3345261,0.074533686,-0.16282399,-0.39076793,-0.072785005,0.93832153,0.36623535,0.062854014,-0.24168499,-0.1917849,-0.38175946,-0.119640574,0.16747037,0.31787452,0.884608,-0.105508804,0.08112347,0.31524482,-0.15108132,-0.048987497,-0.1632947,-0.3503744,0.055264726,-0.09683546,0.5829834,0.70520395,-0.17290716,0.52972776,0.063427955,0.27335045,-0.123424836,-0.5070113,0.4043066,0.7504462,-0.19998884,-0.15490489,0.4951648,0.305306,-0.29684785,0.40838468,-0.58930016,-0.26869395,0.64887446,-0.1581394,-0.36168307,0.19502865,-0.3468598,0.122080974,-0.8964247,0.2952771,-0.30644342,-0.37439504,-0.38044664,-0.15084396,-3.4585688,0.17809342,-0.2725296,-0.10315571,0.09628783,0.086485155,0.030459361,-0.6145376,-0.5597276,-0.0016762415,0.122608736,0.585884,-0.09842127,-0.03385737,-0.21142456,-0.39753762,-0.4353104,0.062119085,0.07237347,0.32804123,-0.066859536,-0.5839053,0.11745637,-0.2248083,-0.38111588,0.16917218,-0.42111814,-0.65168345,-0.23039979,-0.53831744,-0.55114645,0.6866493,0.02353251,0.0050646705,-0.23239109,0.032114454,-0.0051734843,0.24519138,0.35945338,-0.02808094,0.027601827,-0.07630305,0.0046156724,-0.2971279,0.1872992,0.10305121,0.41662022,0.48794279,0.049383536,0.110964365,0.55850166,0.5093715,-0.077572875,0.6505984,0.36161533,-0.21556942,0.24037817,-0.3118461,-0.21208654,-0.45476887,-0.4027458,0.15119581,-0.38484204,-0.5945447,-0.1834475,-0.33819208,-0.5407461,0.49144372,-0.1010485,0.22106323,-0.10171754,0.22891913,0.53355545,-0.1986243,-0.05755852,0.044373773,-0.12588924,-0.6000528,-0.29739565,-0.73382354,-0.44006878,0.38563955,0.95519274,-0.32896167,-0.029727273,0.09918716,-0.2332082,-0.096319236,0.12641697,0.10080168,0.1785031,0.42597437,-0.2089426,-0.6274002,0.3724791,-0.027321182,-0.0027121543,-0.5101422,0.16068362,0.6742347,-0.6636091,0.43813002,0.28320202,0.15984255,0.004028956,-0.5200781,-0.1332062,0.01539061,-0.24562794,0.2919757,0.056037184,-0.7200176,0.37523678,0.39589152,-0.29944047,-0.5432897,0.40036935,-0.09992402,-0.37081638,-0.103713766,0.33039078,0.19205222,0.039633904,-0.18016784,0.30408484,-0.6510794,0.22465783,0.36460575,-0.18293849,0.41151252,-0.16275209,-0.37798885,-0.7158646,0.11138416,-0.36124462,-0.3524621,0.18777452,0.18908615,-0.015401987,0.30140597,0.23404527,0.43003848,-0.2660973,0.027460726,0.035881504,-0.17710678,0.47314498,0.41423938,0.58547425,-0.41452187,0.5315801,0.01274844,-0.055970266,-0.13286464,-0.14033763,0.3809285,0.1636377,0.3148695,0.07940651,-0.3055082,0.3561456,0.8262055,0.11962257,0.33786294,-0.039868046,-0.09436902,0.18341926,0.0654247,0.03389454,0.09435343,-0.47365287,0.0009849886,-0.20496769,0.15391892,0.44624147,0.24757512,0.32974762,-0.023371927,-0.37427363,0.06492296,0.18830647,-0.2007095,-1.1155579,0.36360824,0.30249366,0.72390664,0.521015,0.09060478,-0.012019594,0.6117371,-0.27117833,0.0576276,0.3284856,-0.0062872567,-0.51303273,0.51780045,-0.7802691,0.6263257,-0.0051573594,0.030147342,-0.012876483,-0.17334563,0.44119796,0.87926847,-0.19578454,-0.12247222,0.023540573,-0.2702134,0.17693993,-0.36857447,0.009312018,-0.7820812,-0.35121137,0.5628423,0.43114832,0.27596018,-0.060471795,0.0047979974,0.051504184,-0.08997461,0.377934,-0.15135124,0.19335519,-0.1136542,-0.5891765,-0.23111755,0.46918467,0.021678584,0.09158481,0.005411709,-0.013004073,0.18359923,-0.15073833,0.082308546,-0.078213215,-0.46353644,0.045781307,-0.27126318,-0.31698084,0.4935597,-0.17022231,0.43121225,0.082586095,0.11252297,-0.19856735,0.42859346,0.098715656,0.58125657,-0.18827966,-0.18383828,-0.37703022,0.121020995,0.107334964,-0.15030135,-0.024156412,-0.08353995,-0.029348552,-0.53535527,0.6080047,-0.05913277,-0.18525237,-0.12521711,-0.31660333,-0.053895872,0.5329851,-0.12607735,-0.16276747,-0.23877287,-0.19127195,-0.2553035,0.0020876725,0.06912535,0.21285707,0.219039,-0.19916703,-0.07596661,-0.15217583,0.06477603,0.29518536,-0.09303102,0.1430301,0.3450404,0.023043258,-0.41629794,-0.18706504,0.023334129,0.37663373,0.054323316,0.031712424,-0.24548699,-0.47824746,-0.3750765,0.096485026,-0.20167086,0.41503504,0.10306986,-0.29105744,0.86830485,-0.006879298,1.2909596,0.06392775,-0.20575319,0.005447905,0.5988424,-0.065675825,0.05349519,-0.33150303,0.9551467,0.46229443,-0.22276191,-0.30790278,-0.28901175,-0.037972696,0.21760647,-0.19842958,-0.16702004,-0.014060676,-0.5738575,-0.25248167,0.30095768,0.3212854,0.27039638,-0.102362,0.036739636,0.26927528,0.14231864,0.4549978,-0.34917042,-0.39334965,0.27415878,0.25939935,0.050541975,0.19987275,-0.3736257,0.46163628,-0.53454876,0.18371709,-0.12867583,0.1284315,-0.11804444,-0.4013939,0.33701533,0.13350746,0.3406102,-0.26949614,-0.3603519,-0.254846,0.31963402,0.15865047,0.106979094,0.65057105,-0.23468596,-0.16011709,0.048282783,0.41235542,1.2456328,-0.17743969,-0.22116588,0.4326846,-0.26805693,-0.6976601,0.32499427,-0.31062278,0.045438394,-0.041849803,-0.28078476,-0.6157093,0.25815803,0.16545795,-0.11533426,0.100778796,-0.4727933,-0.15889594,0.09921374,-0.51681733,-0.21801755,-0.39300343,0.15357941,0.6524267,-0.2881561,-0.2288557,0.109932944,0.40489468,-0.37118423,-0.5013113,0.018024525,-0.21917433,0.3891234,0.019578703,-0.34066904,-0.03799689,0.1376839,-0.39738396,0.09636998,0.24561928,-0.40420622,0.17651701,-0.3771162,-0.13904543,0.7992793,-0.22667487,0.18950026,-0.40073395,-0.31658688,-0.6797436,-0.23482749,0.5457746,-0.085012645,-0.16499586,-0.42327386,-0.10046838,-0.005862373,-0.13260579,-0.09712776,-0.3667898,0.45524564,0.058709975,0.20587845,-0.073121436,-0.6189887,0.09134217,0.097942576,-0.032804377,-0.60098916,0.5773645,-0.2587648,0.67031723,0.19931473,-0.045019668,0.4189574,-0.3899818,0.17602184,-0.18763585,-0.2797573,-0.6572166,-0.067034416 +821,0.28852966,-0.025320401,-0.5346387,-0.06744438,-0.24270524,0.02363504,-0.04836887,0.40631065,0.23066579,-0.1585501,-0.15047261,-0.13048886,-0.053708434,0.3418319,-0.23618062,-0.38912752,0.023502631,0.09743844,-0.39673024,0.5806429,-0.22669339,0.14304605,-0.04252511,0.356827,0.3883453,0.080679126,0.052613873,0.059079748,-0.09781226,-0.3339796,-0.45157686,0.2830793,-0.26727548,0.121294856,-0.13201986,-0.34894255,-0.004156351,-0.45242685,-0.46636328,-0.6776232,0.30156127,-0.7739929,0.5191679,0.036311664,-0.19773984,0.39342755,0.14121933,0.23310235,-0.05781212,-0.3337481,0.1615453,-0.29109362,-0.050102796,-0.28003794,-0.30241647,-0.21560428,-0.48489946,-0.13174732,-0.33340025,-0.20580506,-0.43036106,0.14835753,-0.3597985,0.0412033,-0.056957442,0.5389943,-0.2810064,0.32140025,0.02312748,-0.16786334,-0.061844807,-0.7372373,-0.24036093,-0.016733648,0.28709108,-0.041430406,-0.19716237,0.3788062,0.12895976,0.30807564,-0.2395439,-0.08244374,-0.3041079,-0.17922592,0.055514693,0.54479444,-0.2250694,-0.4822723,0.03501812,0.24300422,0.1950312,0.38476396,0.2528768,-0.06560729,-0.10185688,0.008501508,-0.07851807,0.47483212,0.44882637,-0.20092228,-0.018059786,0.34258863,0.30911937,0.31617337,-0.11201397,-0.20627336,-0.16863418,-0.4999635,-0.10435108,-0.14467034,-0.1928792,0.4413337,-0.0053012753,0.28597575,0.51122284,-0.028098542,-0.09667366,0.11057954,0.082851216,0.055842567,-0.2754952,-0.2845375,0.20787157,-0.43769673,0.40278217,0.060304195,0.6598775,0.12309526,-0.450702,0.43515143,-0.4432682,0.07345381,-0.052802783,0.3535854,0.46930417,0.3352187,0.39209676,0.57595533,-0.4679088,-0.015527002,-0.0150096165,-0.31451792,-0.087989226,-0.05111729,0.21110736,-0.5621098,-0.036174424,-0.2243477,-0.030159047,0.31608558,0.17515422,-0.42479944,-0.11325074,0.17920281,0.9754621,-0.22150977,-0.037724946,0.83611965,1.1412975,0.8735952,-0.12416691,0.5503768,-0.018543,-0.16116154,0.04222199,0.0033556393,-0.49178705,0.2128332,0.4334534,-0.13169508,0.06368182,0.18746956,0.015805457,0.35901117,-0.24053338,-0.22421266,-0.08134793,0.07106442,0.3609617,-0.0113989115,-0.45946836,-0.24286151,-0.2101499,0.022002552,0.1332196,0.21800293,-0.24606106,0.44515833,-0.16201796,1.607065,0.16450712,0.0021163735,0.17320053,0.5196582,0.20909394,-0.06831711,-0.15890001,0.3105049,0.21296549,0.17479466,-0.40263692,0.17923607,-0.33400625,-0.27320692,-0.007937753,-0.40041608,-0.20936055,0.13312744,-0.288539,-0.18791129,-0.17002384,-0.18083842,0.49852684,-3.163019,-0.17612994,-0.08135683,0.32893896,-0.15497299,-0.39726263,0.011128038,-0.38677695,0.44243917,0.15774421,0.5221614,-0.4410253,0.25185204,0.17428766,-0.49386856,-0.26304868,-0.44290453,-0.049086478,0.14343643,0.37744984,-0.09116193,-0.050320007,0.08153142,0.10649485,0.44901043,0.031071007,0.08284737,0.39164576,0.42964816,-0.14741625,0.48176172,-0.2787121,0.58367187,-0.2456328,-0.09806066,0.21841112,-0.15410723,0.44501352,-0.15191577,0.26312286,0.56423765,-0.2638634,-0.7637391,-0.41632867,0.043440633,1.2307246,-0.04792922,-0.49504265,0.22753017,-0.44630194,-0.27753982,-0.25389066,0.36232248,-0.058329847,-0.1651775,-0.5640613,0.10169155,-0.115768276,0.11581842,-0.03724239,-0.22767036,-0.2937364,0.600666,0.014453471,0.5359887,0.26510343,0.22232185,-0.31390196,-0.22925845,-0.0582921,0.6263117,0.50930685,-0.057698626,-0.12470865,-0.06369598,-0.29296595,-0.18988521,0.23937976,0.6073566,0.43649203,-0.027641516,0.10315739,0.30617163,0.045476317,0.012462999,-0.15142012,-0.19599295,-0.19214188,-0.0078123785,0.50697297,0.63444585,0.03455476,0.5949826,0.0996274,0.24154255,-0.1634315,-0.45276675,0.1538166,0.85894245,-0.26528782,-0.44233432,0.5106646,0.34675115,-0.09324418,0.31276372,-0.38653812,-0.31395525,0.5562405,-0.10274457,-0.5340452,0.1531532,-0.24503049,-0.045738522,-0.50556827,0.22259822,-0.34490156,-0.68794453,-0.5233928,-0.08505029,-2.323304,0.21306705,-0.40773576,-0.18454345,-0.1602882,-0.30240732,-0.063291706,-0.61616975,-0.46894485,0.23108278,0.19904627,0.7250279,-0.13390933,0.144708,-0.15679052,-0.3044302,-0.09586803,0.08154366,0.12965421,0.3157629,-0.057186108,-0.24619535,-0.11679026,0.078062415,-0.38588053,0.090007804,-0.55929404,-0.26350078,-0.07585287,-0.38027558,-0.18609795,0.6455969,-0.34228423,0.06246529,-0.24830581,0.023247276,0.030976739,0.0076116943,0.19197492,0.16902344,-0.05567074,-0.104369,0.13898031,-0.34455857,0.25285545,0.093536906,0.40919194,0.21359818,0.17497529,0.21100911,0.3320083,0.62010515,0.007227308,0.80793625,0.2484632,-0.072733656,0.22058018,-0.22619344,-0.41454437,-0.4421681,-0.2153245,0.34415802,-0.33006236,-0.42170215,-0.048677053,-0.28409857,-0.6868722,0.5737542,0.06236417,0.10264888,-0.16221319,0.3349442,0.6486286,-0.3354029,-0.0611409,0.15501599,-0.04010878,-0.620073,-0.18146026,-0.555898,-0.44014865,-0.07607249,0.7629738,-0.27173594,0.087620735,0.1068591,-0.3404321,0.105555005,0.013745346,0.036076274,0.15332447,0.27542967,-0.2429261,-0.5826697,0.48904803,-0.32106885,-0.08615933,-0.57687426,0.29373258,0.5539605,-0.4592051,0.3648621,0.2746539,-0.047662165,-0.36098453,-0.453737,-0.15616463,-0.068889126,-0.15457752,0.19694795,0.082989804,-0.6825308,0.35286528,0.33771834,-0.11190046,-0.6253467,0.45785233,-0.03515939,-0.4048861,0.089449115,0.29871345,0.17400824,0.030654622,-0.16628666,0.08068228,-0.21948576,0.3249827,0.218465,-0.034697883,0.0034537783,-0.27423555,-0.14734551,-0.65226173,0.10367889,-0.3394234,-0.30227694,0.2810981,0.041130714,0.16575949,0.14111407,0.07484716,0.2329425,-0.3434887,0.17353758,-0.1813628,-0.32981938,0.378862,0.39397508,0.58070385,-0.48897192,0.5673544,0.007310315,-0.1755388,0.22738205,0.036029138,0.3185954,-0.02837029,0.46159378,0.04395163,-0.20352837,0.14269902,0.66248274,0.12185045,0.25013703,0.028137472,0.011358574,-0.025491262,-0.06341475,0.1406591,-0.0025789824,-0.5820231,0.17132436,-0.43334523,0.1049085,0.43340722,0.16330115,0.15017723,-0.0076850015,-0.4315142,-0.06632101,0.05622768,0.11862792,-0.9957131,0.4222179,0.1186903,0.92103195,0.052496094,0.1460929,-0.10395813,0.6892325,-0.007763756,0.025883565,0.28038982,0.05736773,-0.3134758,0.456292,-0.68485975,0.56923836,0.16105904,-0.023267908,0.051942308,-0.116661325,0.25290003,0.56577367,-0.32852045,0.027700534,0.06855375,-0.40084615,0.12722838,-0.4201416,-0.042102177,-0.4652857,-0.34866285,0.41680333,0.52359164,0.35633096,-0.07288391,0.011479893,0.053226866,-0.1892082,0.075724974,0.097191654,0.2153114,-0.2305557,-0.5426539,-0.05200145,0.29446444,-0.1580422,0.21798798,-0.12582274,0.07459438,0.30171624,-0.060960025,-0.04523582,0.009283887,-0.518369,0.16667639,-0.18619654,-0.40936133,0.35656956,-0.0843073,0.35579365,0.19397804,0.067475736,0.053678352,0.58561546,0.029737115,0.8219327,-0.06069901,-0.049986545,-0.427716,0.08161909,-0.11123786,-0.06726039,0.23308311,-0.25300643,0.12026889,-0.5616469,0.4221282,-0.06957514,-0.19818486,-0.14226694,-0.12099848,0.14712356,0.4319412,-0.040071905,-0.06810803,-0.23210952,-0.206163,-0.18375523,-0.25166222,0.019147431,0.15272264,0.19675899,0.115800686,-0.13820907,-0.06108292,-0.27714717,0.35257164,-0.060979422,0.47006804,0.081587635,0.1817614,-0.10947462,-0.17073505,-0.016708493,0.59870815,-0.11468581,-0.2283268,-0.2618611,-0.40075105,-0.35354736,0.29518208,-0.047451057,0.34172267,0.0668539,0.008937557,0.5151447,-0.15310036,1.0840604,-0.07565313,-0.29406098,0.029070644,0.4604546,-0.06522631,-0.15838997,0.019124392,0.811253,0.34064406,0.19210799,0.037070397,-0.30171564,0.06184729,0.26895478,-0.16808549,-0.034745317,0.07181429,-0.1614918,-0.17204884,0.098574,0.11779208,0.358737,-0.28667542,0.13600095,0.34767675,0.06010906,0.1206889,-0.3068439,-0.26387036,0.30862468,0.15841286,-0.18471411,0.107009016,-0.53684133,0.39634147,-0.3108849,0.1200436,-0.41220763,0.09914875,-0.13604584,-0.098687395,0.25803185,0.09295737,0.4474524,-0.429032,-0.17042896,-0.14583203,0.2912428,0.33354476,0.030104574,0.28940934,-0.20861574,-0.16596122,0.11759562,0.41485554,0.55817735,-0.2177764,-0.0123050045,0.28153494,-0.3839217,-0.5041991,0.25552338,-0.28161424,-0.07529963,0.093939,-0.0154383695,-0.3518973,0.27762476,0.2921585,0.05373383,-0.10904987,-0.6430268,-0.08226522,-0.008749654,-0.36270496,-0.17032759,-0.41776642,-0.04815364,0.4055365,-0.08646022,-0.29337668,0.06465123,0.14940523,-0.032963365,-0.46564206,0.0892521,-0.36246628,0.21035783,-0.076606154,-0.26360244,-0.29891652,-0.16932777,-0.4744266,0.19066536,-0.047867436,-0.278223,-0.0064278245,-0.083561726,0.00516599,0.71589386,-0.3566658,0.16518593,-0.4409237,-0.3915002,-0.4607636,-0.45996708,0.30051392,0.053807903,0.09364339,-0.62113106,-0.0052742916,-0.18657516,-0.21182594,-0.32351446,-0.11948694,0.34604958,0.0493891,0.2534502,-0.3202307,-0.80853933,0.33353445,-0.013359006,-0.17705403,-0.460629,0.2786037,0.012240018,0.5721486,-0.061160248,0.1093054,0.30702418,-0.20118235,-0.11294092,-0.29611772,-0.26758203,-0.46237412,-0.09117738 +822,0.44611496,-0.16997008,-0.47673795,-0.034736704,-0.17596994,0.16275361,-0.07015697,0.6377077,0.10218089,-0.45640618,-0.13824709,-0.08404989,-0.08197824,0.17829077,-0.27613145,-0.27434677,-0.114683576,-0.001806189,-0.5017489,0.7313027,-0.29741636,0.1785717,-0.04292282,0.28911754,0.31562465,0.17986794,0.18729141,-0.074657604,-0.11042856,-0.26544315,0.0062806094,0.26020807,-0.72519124,0.21988355,-0.4495793,-0.42065164,-0.1364329,-0.45970502,-0.40974683,-0.77055347,0.3311852,-1.0502964,0.61320114,0.022305846,-0.17237839,0.5505695,0.21146525,0.06912746,-0.03577835,-0.13151148,0.2214556,0.00041897915,0.040293925,-0.08686817,-0.26926795,-0.6628715,-0.69891244,-0.055105984,-0.5923541,-0.06842585,-0.3433499,0.106771,-0.3619261,-0.044485338,-0.29664797,0.3267028,-0.46749496,0.142379,0.08732937,0.018232087,0.17519024,-0.7892129,-0.23439123,-0.14595447,0.117879406,-0.066746354,0.0059557897,0.38727474,0.08991532,0.3413716,-0.028033605,-0.19314273,-0.38495964,0.0071065896,0.057727892,0.39846984,-0.14845678,-0.4934435,-0.12878348,0.03838855,0.41245762,0.12554029,0.16689254,0.015758244,-0.0614986,0.021756576,-0.27118865,0.53745466,0.5668576,-0.39244843,-0.44125986,0.39646253,0.49565536,0.29231194,-0.3306026,-0.030464003,-0.09956087,-0.3503921,-0.0996673,0.29543847,-0.24324301,0.52235955,-0.04856012,0.20684044,0.44267532,-0.24354137,0.22246686,0.12813735,-0.04707052,0.0023366127,-0.11463188,-0.36129594,0.19419172,-0.52273226,0.3520684,-0.3227227,0.69020087,-0.026181493,-0.63495654,0.3847704,-0.47811392,0.06902576,0.018239766,0.48881564,0.64870065,0.4199981,0.19489887,0.61941594,-0.14896615,-0.040369965,-0.16647212,-0.16358553,0.0897321,-0.14825583,0.22088994,-0.45764428,0.07852067,-0.0077401143,0.038417608,-0.16318202,0.56710064,-0.48519763,-0.2650789,0.18303128,0.79821384,-0.22912054,-0.114347115,0.8338374,1.2318037,0.99106216,-0.025140971,0.91941607,0.13907251,-0.17813429,0.18312073,-0.21302816,-0.6161994,0.23742194,0.35158992,0.07376252,0.39321524,0.19547746,-0.07192069,0.20766963,-0.36057782,-0.015472332,-0.25956467,0.09430406,0.3192679,-0.0024790275,-0.27809432,-0.29222992,0.022718042,-0.086860254,0.20135579,0.15950021,-0.43146476,0.25765115,0.13707401,1.4519026,-0.12210107,-0.001337261,0.063940145,0.7136326,0.18940651,-0.02763425,0.16987893,0.28492847,0.33211908,-0.020482507,-0.4855273,0.18969999,-0.39755267,-0.6287161,0.026556594,-0.46903476,-0.21690552,0.123989984,-0.50032705,-0.15169494,-0.10853334,-0.2459458,0.33042914,-2.9848142,-0.08701607,-0.09629272,0.36936194,-0.23877147,-0.32237536,-0.21882604,-0.5732067,0.5009377,0.28246152,0.38365275,-0.5730297,0.55285186,0.3708594,-0.56308293,0.02802541,-0.57064414,-0.07617708,-0.025395572,0.4771982,-0.060294162,0.09682933,0.27998903,0.111435905,0.61517256,0.13046762,0.17236507,0.31283447,0.50272065,-0.050356124,0.45432988,-0.044652104,0.40922076,-0.48836705,-0.06417852,0.3213031,-0.44920102,0.46767515,-0.15563901,0.2586148,0.5356425,-0.5274728,-0.8259983,-0.6407584,-0.23930547,1.1938299,-0.274107,-0.48623458,0.08697243,-0.30814663,-0.24344698,-0.21049525,0.5699163,-0.10195173,-0.035888154,-0.5816617,-0.04406854,-0.20793399,0.09453404,-0.14410503,0.2077103,-0.33886656,0.849227,-0.05208808,0.6723277,0.035459265,0.29445872,-0.33027285,-0.47864628,0.05566034,0.7629407,0.42653728,-0.045109715,-0.15472963,-0.28304473,-0.29242843,-0.16395037,0.17419767,0.79589784,0.49723142,0.024759704,-0.015560607,0.32045698,-0.050208684,0.049975015,-0.2836974,-0.2867982,-0.27559337,0.018150087,0.35884792,0.42862743,-0.15974583,0.36881235,-0.14465307,0.3068892,-0.19890103,-0.4128997,0.24481286,1.0994794,-0.19813931,-0.12810424,0.46369264,0.59947765,-0.24746922,0.41282997,-0.7646799,-0.351924,0.45589212,-0.17327544,-0.44523573,0.20585372,-0.28952822,-0.02109499,-0.75803554,0.29095808,-0.4667609,-0.52301306,-0.5141014,-0.19958523,-3.0359654,0.05024809,-0.1848717,-0.1396675,-0.33013448,-0.31949458,0.12367129,-0.57482153,-0.5278558,0.15999794,0.13877462,0.6474853,-0.15544239,0.07305356,-0.29150528,-0.21399944,-0.43776354,0.32321796,0.10655097,0.30936566,-0.36390516,-0.34982273,-0.009021987,-0.0066979784,-0.33515453,0.03686211,-0.58724433,-0.3803566,-0.07457895,-0.29166606,-0.16924436,0.5575114,-0.29771543,0.06520177,-0.16610684,0.059730645,-0.07451731,0.25976926,0.14830442,0.0797276,0.05598988,-0.13542208,0.080633916,-0.40852696,0.49782732,0.115153335,0.48393673,0.5619036,-0.18399644,0.12578385,0.50704414,0.4767668,-0.009462823,0.8923654,0.20431638,-0.21323779,0.386401,-0.097373724,-0.23387294,-0.6669566,-0.07399019,0.027225744,-0.32423717,-0.47789246,-0.024648717,-0.297185,-0.9061402,0.43640348,-0.09785394,0.33475885,-0.13909028,0.33365005,0.5003755,-0.08944672,0.14455506,-0.01475226,-0.04475898,-0.49604422,-0.403296,-0.65861845,-0.46245536,0.026779149,0.77314055,-0.19858143,-0.10561003,0.04447105,-0.23544554,0.1550611,0.13066678,0.07467724,0.114655234,0.5240432,-0.16639897,-0.631855,0.6397614,-0.076083906,-0.15021743,-0.42095798,0.39454117,0.5123274,-0.66489613,0.40878004,0.30439782,0.0033318442,-0.38228464,-0.5100842,-0.06210894,-0.19731103,-0.17018557,0.26922005,0.08146756,-0.81237257,0.3566851,0.16741362,-0.27444813,-0.6851123,0.62537354,-0.011988491,-0.10509021,-0.121617794,0.31373525,0.2429014,-0.005763023,-0.065467656,0.24176154,-0.50529927,0.26946378,0.082244344,-0.07831731,0.3425403,-0.20578572,-0.17592356,-0.6086988,0.18257542,-0.49175256,-0.30719003,0.5188224,0.017717209,0.018773124,0.2372743,0.14004049,0.3943687,-0.23543918,0.14063397,0.0022917986,-0.23458956,0.58877134,0.3807295,0.5245875,-0.4738235,0.57039744,0.03852007,-0.20861986,0.33323976,0.14330904,0.27006298,0.10032561,0.44321045,0.1509423,-0.13493145,0.28481406,0.8720717,0.42104277,0.44866046,0.02714083,-0.15057674,0.30554435,-0.076266006,0.08543879,-0.07856392,-0.6970779,-0.050942782,-0.19993792,0.09683479,0.4148841,0.06808053,0.20930664,-0.08701206,-0.058555163,-0.06772346,0.14200012,-0.17701556,-1.1191674,0.24408093,0.13407563,0.89343864,0.39937693,-0.12146617,0.084017254,0.6715742,-0.13050516,0.13329807,0.43836465,0.22192028,-0.5362977,0.5632206,-0.50217324,0.51394075,-0.10714577,0.073163874,0.020647287,0.012540753,0.38303837,0.8412331,-0.29652825,-0.10512773,0.049842022,-0.39249662,0.26984537,-0.26458642,0.32171986,-0.52424335,-0.2314559,0.65312546,0.48276788,0.36853462,-0.011176931,0.008951694,-0.14871141,-0.1701182,0.2700098,0.068713106,0.17471448,-0.11632664,-0.62852526,-0.22148369,0.55051,-0.2491839,0.21347019,0.101938166,-0.39470047,0.39373997,-0.02415652,0.017296502,0.017026981,-0.7546302,0.0869345,-0.114671506,-0.3156271,0.4318317,-0.18429378,0.23996851,0.26189378,-0.16484316,-0.29514226,-0.00054352626,0.18134478,0.42963094,-0.10663442,-0.15671088,-0.56373614,0.013003196,0.08748983,-0.2994643,0.06074409,-0.14612553,0.10350002,-0.5925166,0.32712942,-0.15743576,-0.2478495,-0.08884312,-0.19410324,0.054549806,0.71643764,0.025874326,-0.011603764,-0.1775913,-0.02761164,-0.40367675,-0.23116252,-0.06137072,0.13387804,0.11475178,-0.08082662,-0.08184377,-0.19620825,-0.0074479794,0.42672327,0.09959222,0.47603735,0.31546116,0.16181645,-0.3943686,-0.19015686,0.20169054,0.45084122,-0.0026871094,-0.04538945,-0.20225756,-0.46314472,-0.31753293,0.25871867,-0.09884454,0.31541306,0.19495173,-0.28544405,0.6889077,-0.19228734,1.1768081,0.089280486,-0.25490195,0.14388788,0.6294474,0.099016264,-0.14057228,-0.28174204,0.9319789,0.6105346,0.08635555,-0.017513957,-0.19574726,0.017552275,0.1461825,-0.17744121,-0.22282514,0.0062017953,-0.5753921,-0.11039039,0.051802706,0.32673436,0.12168062,-0.096468054,0.045609135,0.25253192,0.04120228,0.38377625,-0.52988696,-0.302523,0.31377554,0.1359817,-0.09564837,0.17470185,-0.45335168,0.34637564,-0.55653423,0.09893642,-0.32300505,0.10941452,-0.1396014,-0.28906563,0.27832446,0.037257917,0.4186744,-0.24240495,-0.50334084,-0.13510503,0.34958526,0.18607333,0.19892646,0.46982303,-0.13603005,0.116845585,-0.001009111,0.6258268,0.9616837,-0.13596314,-0.096776776,0.19676316,-0.49677888,-0.7342953,0.31612954,-0.38426524,0.30842796,0.06734256,-0.076977395,-0.35719672,0.27384147,0.24797519,-0.0602773,0.09030839,-0.7660645,-0.2370896,0.033665664,-0.39540154,-0.20551209,-0.41756684,0.14548601,0.67672646,-0.35215086,-0.23573422,-0.103202105,0.28113577,-0.19842477,-0.52354544,-0.008343786,-0.3712944,0.23296925,0.006053605,-0.3624662,-0.123714484,0.22655395,-0.53503877,0.24303928,0.076823294,-0.39475733,-0.0012700036,-0.2707395,0.11365471,0.77048683,-0.14698593,-0.010873309,-0.38026708,-0.5185603,-0.78657055,-0.45913962,0.030701134,0.4087961,0.06577206,-0.5276181,0.073982,-0.09904639,-0.17398122,-0.18651022,-0.44804463,0.43122143,0.091448106,0.3621684,-0.1104887,-0.8475433,0.25955543,0.05283708,0.03623461,-0.5265426,0.4606433,-0.122972436,0.96531475,0.12564272,0.18881397,0.11073259,-0.48090166,-0.08426554,-0.17777416,0.0047735744,-0.67783004,0.14795555 +823,0.51466024,-0.078416824,-0.40440667,-0.13466908,-0.27709866,0.046154834,-0.18316779,0.66535884,0.25702536,-0.45838314,-0.07236874,0.09400467,0.07748172,0.48180962,-0.27216738,-0.6357743,0.28193188,0.1687348,-0.4881835,0.75222516,-0.42305756,0.2625197,-0.036332212,0.3062923,0.20291585,0.26149884,0.18860322,-0.04429467,-0.22501372,-0.14217892,0.12552714,0.2386488,-0.4205254,0.24794716,-0.07305523,-0.3134368,-0.12625097,-0.34268925,-0.38474685,-0.9033077,0.24300912,-0.78683937,0.4737717,0.0152843455,-0.38511163,0.2625888,0.30865067,0.25218642,-0.08897778,-0.18005382,0.15873638,-0.058514796,-0.23311652,-0.25455025,-0.07429615,-0.7289795,-0.5583225,-0.006276719,-0.55672514,-0.1529453,-0.28400844,0.15199511,-0.28842342,-0.15261282,-0.015141396,0.45825502,-0.45004955,-0.074961975,0.31607512,0.025554959,0.29222474,-0.76466346,-0.15950267,-0.119389646,0.38062257,-0.029603729,-0.28013104,0.38746879,0.38589635,0.4335915,-0.07780576,-0.18139234,-0.29464504,-0.059569113,0.09510735,0.349115,-0.307807,-0.6349977,-0.09305627,0.014014253,0.32130036,0.028806873,0.32673818,0.03558991,-0.13736436,0.08906564,-0.30774465,0.5367069,0.49990955,-0.26585263,-0.17276178,0.33811378,0.44406635,0.21794449,-0.35256666,-0.006663249,-0.03373614,-0.6251119,-0.12023988,-0.035016343,-0.021550534,0.5166277,-0.2892589,0.20694147,0.67575,-0.16023342,0.018431537,0.2785071,0.111356564,-0.07336455,-0.10818216,-0.14425696,0.22422518,-0.48810944,0.014702723,-0.27032602,0.7070558,0.11135765,-0.62974507,0.29668847,-0.5129122,0.08480306,-0.15139082,0.48686793,0.8019229,0.3776579,0.24500586,0.66069764,-0.12525544,0.030524515,0.0021578441,-0.33712453,0.25840074,-0.3370372,0.13685432,-0.5635812,-0.015673308,0.13033298,-0.1407698,-0.0066369474,0.42935893,-0.6008918,-0.36035717,0.20917346,0.7522692,-0.23911865,-0.26596186,0.8991943,1.0440695,0.8989824,0.074063726,1.0821992,0.09504734,-0.12545766,0.16980012,-0.15569021,-0.5041292,0.37393263,0.23914154,-0.23161481,0.36622497,0.02722146,-0.12062572,0.3708873,-0.2782981,-0.11777597,-0.23955372,0.3043595,-0.02018079,-0.43341506,-0.48398036,-0.3246744,-0.19084947,0.025740776,0.22796851,0.27713442,-0.06660095,0.34370103,-0.16298914,1.3304163,-0.10053937,-0.15373044,0.02878317,0.55688643,0.21062818,-0.14608857,0.15958157,0.2366084,0.2696743,0.17521164,-0.5227562,0.17872092,-0.24516813,-0.64207804,-0.07460597,-0.44500133,-0.1387044,-0.07177176,-0.49135897,-0.0285287,-0.14325118,-0.20657147,0.411112,-2.8259523,-0.22776367,-0.07937692,0.30414522,-0.16740799,-0.30205962,-0.1702459,-0.4347896,0.4590223,0.35959175,0.5070312,-0.66299087,0.4097594,0.3627421,-0.6418549,0.017859317,-0.6598846,-0.049507353,-0.12524891,0.4610222,0.10475501,0.046299413,0.39925134,0.3690149,0.5004281,0.046168227,0.15494624,0.19706884,0.33276036,-0.2547739,0.41781557,-0.086986065,0.5027737,-0.19558781,-0.22518362,0.26186645,-0.46377712,0.24343626,-0.14719234,0.0663367,0.46629518,-0.35214582,-1.01656,-0.5302993,-0.017621366,1.0998199,0.0012146464,-0.5141642,0.12117383,-0.48819005,-0.20945089,0.06228159,0.51148504,-0.031810503,0.06048423,-0.81690156,0.013074527,-0.17980789,-0.16343683,-0.07189092,-0.0025823105,-0.46285284,0.79426235,0.03559187,0.4207594,0.027321156,0.1306276,-0.5169996,-0.5996959,-0.079110466,0.6467103,0.47121128,0.083055034,-0.13958886,-0.19917724,-0.48549572,-0.036837693,0.16556086,0.84080017,0.56601864,-0.06821267,0.08096317,0.2310071,-0.11717299,0.09635333,-0.057671245,-0.35022444,-0.076255545,0.08184653,0.56481564,0.64440733,-0.2157533,0.5433451,-0.08181871,0.31184483,-0.25586608,-0.52579725,0.54303277,0.87505186,-0.2407723,-0.23992044,0.6259463,0.514673,-0.20697674,0.42731556,-0.5482617,-0.4175747,0.4772715,-0.026928421,-0.27092144,0.16195749,-0.3985306,0.073936954,-1.0772175,0.47399804,-0.50029165,-0.5437378,-0.57417285,0.012710929,-3.1116817,0.24766509,-0.28783134,-0.1692617,-0.3146715,-0.13438214,0.11394609,-0.7221469,-0.6125078,0.15650478,-0.01176638,0.804476,-0.18027584,0.04291431,-0.18219599,-0.3609842,-0.16742516,0.19962265,-0.0154963,0.54437315,-0.22367954,-0.39265424,0.016795125,-0.1629842,-0.40652338,0.11418009,-0.73626935,-0.6254684,-0.17465554,-0.4812614,-0.24834329,0.7129351,-0.29422855,0.062925674,-0.31193,0.024665007,-0.19661924,0.3808839,-0.0013542542,0.060933057,0.16829687,-0.035505656,0.10032464,-0.18912974,0.21779957,0.048696317,0.57597816,0.54476684,-0.15557688,0.41659415,0.7085421,0.6433814,-0.066519484,0.9290484,0.41643712,-0.08252597,0.2957651,-0.25130183,-0.13755837,-0.39552578,-0.34361458,0.01899391,-0.26698673,-0.33808038,-0.18413533,-0.46814096,-0.8245713,0.5266998,-0.052953463,0.14864646,-0.18066798,0.30746734,0.51788914,-0.13310535,0.038691465,-0.04661177,-0.19964449,-0.70061743,-0.18059376,-0.55130905,-0.35752964,0.042673144,0.87165654,-0.34275812,0.023668515,0.01511477,-0.16203536,-0.020118194,0.17998937,-0.072494775,-0.07118848,0.29898697,-0.20063135,-0.7322741,0.5386072,-0.3324827,-0.105005585,-0.34542635,0.3459547,0.52225083,-0.49612588,0.5659195,0.57040226,0.10485871,-0.18480578,-0.54954267,-0.15911902,0.04061175,-0.14197122,0.4544643,0.17108862,-0.9118381,0.54526705,0.35748965,-0.4086576,-0.63726515,0.72663075,0.05551823,-0.19322494,0.04293772,0.346146,0.26436916,0.04436717,-0.42340183,0.29308134,-0.5557863,0.18853474,0.12355567,0.07311051,0.33995593,-0.050337676,-0.214248,-0.7370128,-0.0054897116,-0.58314365,-0.30867583,0.06926289,0.042530205,0.1884341,0.10578334,0.16105604,0.30907297,-0.42697626,0.13585946,-0.12905413,-0.40285146,0.4302093,0.48423004,0.5473737,-0.540276,0.6184909,0.11475451,-0.053705037,0.0054783775,0.08411391,0.41360855,0.23252124,0.5870384,0.29206228,-0.03923904,0.09807498,0.8899137,0.19357315,0.42025533,0.07859883,-0.17224362,0.0051055597,-0.035548724,0.36185038,0.052433014,-0.4839687,-0.08808151,-0.3461726,0.19879802,0.44962013,0.10948761,0.18664867,0.10501059,-0.3872123,-0.0601343,0.13369799,0.0629934,-1.6178266,0.60774237,0.3990895,0.77891403,0.47452626,-0.122757144,-0.0060174465,0.78411335,-0.070099436,0.18381485,0.42143238,-0.013833074,-0.43531588,0.59554577,-0.87519634,0.4593695,-0.12380014,-0.061937526,-0.17770965,-0.012891307,0.29706377,0.8576424,-0.1744447,0.13625439,0.10242793,-0.48837978,0.21151437,-0.44816542,0.08887687,-0.45725292,-0.20669569,0.63495857,0.5641731,0.20366932,-0.19813612,0.12172763,0.17626065,-0.09269883,0.22381423,0.015234278,0.1990668,-0.21888238,-0.6601215,-0.14135653,0.44604918,-0.19388571,0.2515094,0.069863796,-0.077167615,0.28592667,-0.06274075,0.023048254,-0.08418059,-0.7634261,-0.02049123,-0.28859186,-0.3477292,0.6336654,-0.39865002,0.28791714,0.27466768,0.06252523,-0.2504784,0.28380674,-0.11046931,0.5173976,-0.20441426,-0.24619693,-0.2602639,0.09459896,0.22559644,-0.28204176,-0.05837468,-0.14019749,0.16702172,-0.4110351,0.44581664,-0.09965715,-0.24262816,-0.15782793,-0.034543082,0.107395165,0.3491968,-0.1606929,-0.123623185,-0.08654422,-0.059597544,-0.19660565,-0.13341388,0.033048175,0.32488808,0.34053266,-0.2428923,-0.20559001,-0.06527107,0.044607952,0.27870294,-0.14322357,0.39421278,0.4806271,0.26127613,-0.30434462,-0.037939865,0.46438405,0.49645784,0.049821276,-0.092495404,-0.44593626,-0.2846406,-0.41548255,0.12320049,-0.08073389,0.2925104,0.1761458,-0.12710355,0.6924591,0.014439211,1.2734733,0.069850974,-0.4088596,0.14943269,0.39509347,0.05811924,-0.14408289,-0.29432318,0.9559272,0.477068,-0.2050508,0.045065816,-0.48463124,0.09336869,0.36342797,-0.18863432,-0.20677081,0.023641655,-0.5785806,-0.31369656,0.3488448,0.28275087,0.079691775,-0.16302559,0.06448802,0.27833298,0.047883905,0.26430315,-0.5847243,-0.24276191,0.2390823,0.3508101,0.06299447,0.08248803,-0.46179405,0.36166456,-0.76349056,0.11490048,-0.26520842,0.2102111,-0.17987204,-0.45877331,0.17891158,-0.008794624,0.43698585,-0.23143044,-0.35925227,-0.14307944,0.3843388,0.20958713,0.08612331,0.42731446,-0.28388247,0.0055752993,0.16535307,0.5222185,0.98988986,-0.25994173,-0.09232697,0.23306936,-0.30793503,-0.9008946,0.3945759,-0.33219236,0.45572382,-0.11447334,-0.23771389,-0.7637098,0.33674657,0.39082366,0.18148944,-0.13107215,-0.5341224,-0.19949618,0.22234756,-0.3878493,-0.3059879,-0.38721767,0.13058554,0.5266043,-0.32297686,-0.25909603,0.0195181,0.3007968,-0.19645551,-0.5555858,0.022817511,-0.32754532,0.26622194,-0.004022667,-0.36981136,-0.21424708,-0.14254418,-0.4179851,0.544749,0.25127017,-0.28673953,0.19341399,-0.38871428,-0.021454912,0.7685115,-0.31633803,0.1496102,-0.48181117,-0.44006366,-0.69287765,-0.45614734,0.12389566,0.17154214,-0.06839407,-0.6343003,-0.08567299,0.07484689,-0.20266122,-0.10681101,-0.28804466,0.4690006,0.10958385,0.09685474,-0.048473835,-0.822469,0.20570675,0.21541896,-0.050323863,-0.5504245,0.3444945,-0.1631102,0.9319192,0.16266258,0.120506965,0.20413703,-0.2720075,-0.023984717,-0.058154687,-0.17650715,-0.61008286,0.013557563 +824,0.5287789,-0.16657697,-0.25173578,-0.20929106,-0.1101653,0.1373631,-0.13737078,0.49794167,0.023322208,-0.43438822,-0.095761724,-0.20767201,-0.08029039,0.33834976,-0.1319618,-0.54421955,-0.14260818,-0.015102268,-0.3619578,0.55532193,-0.5093003,0.30658573,-0.009914905,0.38171464,0.085808,0.29247078,0.23255864,-0.032289933,0.056158423,-0.32284406,0.047896963,-0.20496853,-0.86193687,0.22616395,-0.23765492,-0.3178534,-0.002813667,-0.49543503,-0.34583536,-0.7729315,0.28124228,-0.6039077,0.4564647,-0.0012124191,-0.21711297,0.47437558,0.19929574,0.33842653,-0.1382222,0.040975206,0.12967132,-0.11401976,0.07768134,-0.15502211,-0.12321339,-0.43545678,-0.6390039,-0.00990797,-0.43030173,-0.3165328,-0.27600363,0.13351072,-0.3138092,-0.06718931,-0.08403526,0.41314825,-0.39869756,-0.10588891,0.18865217,-0.18816993,0.29516646,-0.54428595,-0.108293734,-0.11187499,0.09973144,0.04482924,0.057441056,0.3655937,0.11044331,0.50340277,0.04360989,-0.24106137,-0.2982162,-0.13083653,-0.015978027,0.5041059,-0.10423659,-0.3002839,-0.14642331,-0.18480304,0.20078322,0.264435,0.059673376,-0.07904984,-0.031957664,0.012941445,-0.26123548,0.3508219,0.56491053,-0.44113547,-0.40079078,0.25049156,0.58763474,0.16283478,-0.082854204,-0.061491214,-0.021715935,-0.401797,-0.17746462,0.19842383,-0.3193912,0.39307323,-0.062867664,0.17733446,0.5388537,-0.22359405,0.13558309,-0.10942992,-0.13335346,0.10677215,-0.35724017,-0.31385133,0.24931867,-0.4054087,0.14903976,-0.40836605,0.82818466,-0.0036192238,-0.7039607,0.36596534,-0.6355702,0.13269314,0.04501411,0.5972728,0.6472665,0.41489056,0.33125418,0.7248907,-0.33343583,-0.07325857,-0.26775953,-0.019603537,0.112413295,-0.11992083,0.21009997,-0.36782694,0.10242308,0.068491414,0.06530579,-0.059355717,0.43674755,-0.49210766,-0.042512923,0.1643243,0.97296727,-0.21437414,0.017793706,0.6737337,1.2605741,1.1066041,-0.025721332,1.0056398,0.24993852,-0.24505278,0.19676645,-0.374672,-0.45859733,0.24910401,0.33314008,0.1453104,0.28700665,0.05176754,-0.09964586,0.38919148,-0.48181105,0.047443133,-0.031805415,0.20012967,0.12456637,0.03131,-0.40478185,-0.23630509,0.07914222,-0.06771314,0.23247518,0.243643,-0.44069746,0.12614688,-0.07149102,1.5089748,-0.05332458,0.25135586,0.21425197,0.49740982,0.15792452,-0.11526727,0.11445236,0.24739315,0.2497668,0.019894293,-0.65409726,0.3128247,-0.28179303,-0.5317055,-0.10074662,-0.4011875,-0.04747491,-0.052682716,-0.4670941,-0.057901748,-0.119471245,-0.4349229,0.4067532,-2.7644212,-0.18221693,-0.06426754,0.3137662,-0.43630695,-0.3214459,-0.0733373,-0.44714615,0.65619856,0.3433467,0.3600379,-0.54723865,0.5369893,0.49438223,-0.3973766,-0.104197025,-0.59391934,-0.02659606,-0.08129014,0.36224332,0.05305583,-0.101798765,-0.11225844,0.21701555,0.5936442,0.1952002,0.020788822,0.2162683,0.31919962,-0.107925765,0.5126105,-0.00801989,0.33264646,-0.3306202,-0.09379434,0.39626998,-0.52267486,0.13219802,-0.23985203,0.20457585,0.26108757,-0.37671927,-0.7890892,-0.6636872,-0.5447921,1.1534451,-0.2336448,-0.5449258,0.29613787,-0.24897572,-0.05738266,-0.06345341,0.6167112,-0.23001559,-0.006485094,-0.5795426,0.07523566,-0.13906096,0.25380614,0.00674639,0.12483933,-0.6026866,0.8279527,-0.14927766,0.47333163,0.15688594,0.34444094,-0.264048,-0.44750947,0.045915384,0.8630332,0.4089126,0.01584807,-0.12229895,-0.20915692,-0.21783376,-0.15772732,0.09861476,0.6149858,0.69451135,0.043165985,-0.052426457,0.18748198,-0.25059527,0.011577517,-0.11322279,-0.3151982,-0.13531944,0.0031650749,0.65175766,0.4320492,-0.058981128,0.34341478,-0.13711473,0.31076506,-0.30979612,-0.29206172,0.44040886,0.9552517,-0.1105671,-0.046521302,0.5027312,0.53454906,-0.17846404,0.5008406,-0.86295265,-0.4278254,0.5493045,-0.20792641,-0.5084384,0.043298673,-0.2718716,-0.05655126,-0.76536083,0.120604835,-0.37528205,-0.36364666,-0.5535611,-0.31933898,-3.1460173,0.03585138,-0.010204613,-0.10425753,-0.15311913,-0.07368277,0.24538873,-0.5390294,-0.47237256,0.08134277,0.06210078,0.6281463,-0.048420075,0.117630735,-0.3462822,-0.23345123,-0.55381936,0.1956861,0.02948308,0.33034652,0.08224111,-0.16552015,0.06851341,-0.12283255,-0.5236339,0.056991525,-0.38496098,-0.3137961,-0.31997004,-0.43529242,-0.34212667,0.6131384,-0.39039913,0.1520727,-0.18248954,0.00015371187,-0.024958534,0.4348674,0.25082272,0.22971812,0.09559829,-0.14186876,-0.065896176,-0.36618468,0.29235896,0.18641792,0.25543234,0.48013043,-0.27467233,0.09603809,0.38869953,0.5051719,-0.022287203,0.77128804,0.42850828,-0.03176104,0.3884489,-0.3470262,-0.06610765,-0.43730304,-0.28920034,-0.021448387,-0.25710946,-0.54141027,-0.20326164,-0.32522014,-0.793593,0.3046722,-0.058294814,0.28839442,-0.037445754,0.2681434,0.42995057,-0.1841055,0.018258061,0.021401823,-0.073659666,-0.44986483,-0.39920622,-0.60953856,-0.40529993,0.08581734,0.7649547,-0.060261033,-0.085943855,0.060023207,-0.0325028,0.013063704,0.008824289,0.034620576,-0.06440044,0.25470325,0.10292793,-0.6157552,0.4951271,-0.05009975,-0.23830129,-0.56275356,0.33385855,0.6498361,-0.47555137,0.40374058,0.22857706,0.20915772,-0.12577346,-0.56048757,-0.0008510138,0.033009887,-0.19666718,0.25765175,0.029478695,-0.86160195,0.44377038,0.06609037,-0.17966314,-0.77194035,0.43628365,-0.06268096,-0.37835774,-0.21748471,0.33080104,0.38063097,0.055631578,-0.020439481,0.32367736,-0.6565421,0.17405517,0.23907427,0.1133784,0.6027876,-0.18327613,0.054933242,-0.5946713,-0.006368088,-0.5550381,-0.36221024,0.23640142,0.23381226,-0.0031541544,0.4410181,0.09381736,0.3959364,-0.08263988,0.19678195,-0.032181323,-0.1852,0.4688231,0.44460955,0.46282938,-0.3142744,0.5993231,0.09618716,-0.10139419,0.05625685,-0.024029756,0.39747092,-0.036301877,0.2994923,-0.17839627,-0.19541346,0.15376507,0.46102425,0.22117534,0.39569142,0.07225498,-0.2058293,0.3512547,-0.052904535,0.05451432,-0.040691618,-0.56915003,0.04981432,-0.06201584,0.08223132,0.50481427,0.22169876,0.34761134,0.0033802178,-0.1231414,0.10459799,0.26449636,-0.51794994,-1.1143551,0.33757597,0.107294045,0.8265968,0.6645889,-0.07959913,0.10336452,0.6225367,-0.08252986,0.04646272,0.36423373,0.2700519,-0.42320198,0.650482,-0.76855075,0.4668184,-0.051301636,-0.04771923,-0.03604263,0.096924625,0.5594991,0.70238256,-0.1982385,-0.052902214,-0.09463991,-0.21356817,0.13801643,-0.28483424,0.40021706,-0.5115154,-0.2602962,0.6022313,0.40725932,0.35897273,-0.23278165,-0.12735145,-0.031022957,-0.13479601,0.226016,-0.09760158,-0.10475788,0.024641952,-0.630529,-0.3131368,0.40291864,-0.24180944,0.14281715,0.17384055,-0.2693103,-0.0060248547,-0.09270104,-0.023340633,0.08677713,-0.71350086,0.04558054,-0.24453112,-0.21114948,0.4308731,-0.2693479,0.2552769,0.070462815,-0.04126864,-0.15420547,0.04787624,0.25814208,0.56545895,0.082734585,-0.19869627,-0.5155981,0.057661373,0.057638466,-0.34682485,-0.07736908,-0.1498114,-0.055535458,-0.6712112,0.41197863,-0.19519906,-0.1739727,0.2350279,-0.1844169,-0.072285905,0.66463363,-0.06538535,-0.0010014857,-0.09401572,-0.41362947,-0.14856799,-0.15690954,-0.049444217,0.31397328,-0.08388392,-0.14438947,-0.07677955,-0.08748882,-0.04823179,0.38836527,0.1794192,0.31041738,0.307621,-0.0054497058,-0.31979808,-0.14290668,0.06486877,0.31457585,0.08146671,-0.031751573,-0.21301654,-0.4499971,-0.36018294,0.2581156,-0.100383684,0.2089273,0.057837762,-0.23077056,0.71089983,0.13710243,1.1198577,0.16916206,-0.21837445,0.15572044,0.6000962,-0.010725358,0.05273364,-0.49660444,0.88665265,0.50282276,-0.06190196,-0.13580512,-0.1976516,-0.053020425,0.33234707,-0.20324108,-0.14124067,-0.13257119,-0.7986373,-0.284598,0.14456522,0.3211131,0.059472736,-0.13475093,-0.1253473,0.2808612,0.0033556712,0.62223285,-0.32068923,-0.08290958,0.4548461,0.13143684,-0.015358133,0.098740526,-0.333345,0.33663124,-0.72194356,0.19098404,-0.38829938,0.012693865,-0.15759002,-0.2672847,0.30287144,0.16204406,0.28088334,-0.20076537,-0.40430036,-0.04390112,0.40645376,0.15165949,0.26267463,0.5129258,-0.16205965,0.11798679,-0.06764429,0.54121786,1.228195,-0.256084,0.031318326,0.23321077,-0.49198171,-0.79579526,0.3027068,-0.35354295,0.12270276,-0.10622261,-0.31424454,-0.31695297,0.22792356,0.18258801,-0.10261462,0.22273481,-0.597614,-0.38063034,0.11536801,-0.25782272,-0.16281784,-0.18744911,0.21039477,0.8681057,-0.2554565,-0.14638874,0.030417873,0.3752676,-0.22411285,-0.6756765,0.0772888,-0.40358347,0.21565826,-0.053693354,-0.31525177,-0.08103604,0.17507073,-0.49818626,0.026468536,-0.004288316,-0.35394424,-0.027629588,-0.34935522,0.13575046,0.72998303,0.04121271,0.02839623,-0.61329985,-0.40663132,-0.82942486,-0.42414162,0.3595695,0.12899326,-0.10921504,-0.31428257,0.035399266,-0.2660658,-0.08401736,-0.08902439,-0.51081944,0.23684978,0.21985807,0.4507721,-0.06693638,-0.6080616,0.09376123,0.14427564,-0.23216088,-0.5435735,0.4302731,-0.15659308,0.8090552,0.018689612,-0.0102652935,0.034263548,-0.5239087,0.11737045,-0.22312973,-0.14046887,-0.6890567,0.21208885 +825,0.26456288,-0.094048806,-0.38489822,-0.201336,-0.39499998,-0.03941519,-0.19102111,0.27843046,0.24737045,0.036578704,-0.09830223,0.0077526057,0.026140882,0.28814578,-0.118386544,-0.62671864,-0.055408407,0.012003235,-0.5314812,0.39520583,-0.6298795,0.36649868,-0.18885568,0.28952566,0.07774838,0.43289924,0.1710699,-0.0035251293,-0.090516046,-0.22765276,-0.3288684,0.077605374,-0.3029758,0.00971601,-0.17153242,-0.22105391,0.18188299,-0.39599594,-0.3174066,-0.65197533,0.28921604,-0.8309213,0.5144924,-0.11362548,-0.19998474,-0.11969836,0.33398032,0.30180326,-0.19400035,-0.027863381,0.13459797,-0.23029126,0.06199571,-0.3425356,-0.18852435,-0.4046637,-0.35136512,-0.07234454,-0.6242625,-0.45432466,-0.23001206,0.2247164,-0.4104066,-0.07238867,-0.025824903,0.378273,-0.39563847,-0.019162608,0.22398376,-0.260297,0.23322645,-0.64101225,-0.033658523,-0.041648217,0.42205566,0.039417513,-0.13313842,0.47325864,0.3723235,0.19646807,0.1796395,-0.23773329,-0.32751727,-0.24427693,-0.12921154,0.5062693,-0.282522,-0.41553682,-0.15428136,0.10113963,0.33158806,0.4763625,-0.040909786,-0.11091236,0.059710737,-0.053773813,-0.27276573,0.62937325,0.5944859,-0.23849304,-0.2702203,0.27683204,0.3374338,0.16550119,-0.30194065,-0.075836696,-0.040309094,-0.4150097,-0.13471007,-0.06285691,-0.06670529,0.49522644,-0.10923082,0.19569795,0.8137515,-0.08274207,0.0781021,-0.019569648,-0.0009947792,-0.13220502,-0.28728753,-0.16548982,0.027872456,-0.5483677,0.10598166,-0.1371018,0.68845123,0.14764546,-0.69762474,0.41199487,-0.4868402,0.09575875,-0.036876738,0.5224041,0.6135484,0.45424774,0.46280384,0.7896581,-0.15082149,0.17279007,0.05985952,-0.48054454,0.16642587,-0.21714756,0.21542752,-0.4818819,0.16503029,0.03911984,0.035584483,0.24986945,0.30931598,-0.52294755,0.025201125,0.31812388,0.84990215,-0.2444567,0.112383604,0.666961,1.2202551,0.8291892,-0.077445254,0.76002485,0.3051514,-0.28430817,0.2264423,-0.33363962,-0.54842097,0.14006473,0.33075544,-0.09992554,0.3453335,-0.09504733,-0.15291645,0.34705082,-0.3688523,-0.10042628,-0.08989755,0.29399422,0.1823362,-0.05886325,-0.46280465,-0.2266821,-0.04416791,-0.02295076,0.15616813,0.23877013,-0.3312036,0.3564434,-0.20584168,1.1169808,0.048140366,0.05619738,0.03165566,0.84391266,0.2897474,0.044657458,0.026997354,0.5119489,0.24284413,0.017782638,-0.6183071,0.25458303,-0.3616722,-0.31329867,-0.16044119,-0.34227034,-0.09273209,0.26278624,-0.362557,-0.09161595,-0.042341504,-0.06899479,0.44668308,-3.0743282,-0.3073294,-0.16609736,0.31020853,-0.19476901,-0.16567813,0.11417641,-0.4314158,0.3204395,0.36253732,0.47528034,-0.6124722,0.3733992,0.5426073,-0.4147523,-0.23607667,-0.6345847,-0.05656327,-0.070023045,0.5909671,0.08975084,-0.18234228,-0.06344142,0.11016374,0.774778,0.1617383,0.20204762,0.27640566,0.39188352,-0.03300155,0.46016413,-0.021281974,0.5459746,-0.15632269,-0.12434263,0.14734808,-0.29901728,0.057501633,-0.19079255,0.042598326,0.6171649,-0.38562045,-0.851322,-0.50393283,-0.15002914,0.9817931,-0.21301726,-0.49780387,0.2824314,-0.3134567,-0.15221307,-0.02419793,0.6857749,-0.03370797,0.054163866,-0.5365738,0.1889899,-0.11531271,0.055646658,0.055629082,-0.045642648,-0.3136707,0.6099316,-0.08530811,0.5426045,0.21657619,0.2136413,-0.24973401,-0.24158593,0.011280711,0.48850876,0.3709154,-0.060148437,-0.1357822,-0.18493883,0.10126425,-0.4200799,0.06922091,0.617136,0.7532953,-0.06877019,0.104790054,0.24051692,-0.21150514,0.08455961,-0.06893768,-0.16115102,-0.034464534,0.12641051,0.42620426,0.667564,-0.16799705,0.5556753,-0.09347349,0.22679469,-0.11844873,-0.4831397,0.6571523,0.42953926,-0.17813058,-0.073746376,0.43802664,0.48314857,-0.4346807,0.39837477,-0.73752266,-0.05076364,0.6517969,-0.17793755,-0.5068606,0.161151,-0.18206705,0.04613066,-0.79256666,0.31164727,-0.2705287,-0.6153761,-0.45581612,-0.19854961,-3.82605,0.14995384,-0.29726171,-0.1207494,-0.2425575,-0.079962626,0.39384627,-0.5899102,-0.39347878,0.12849036,0.29000258,0.5619908,-0.04732986,0.025301496,-0.24285449,-0.07975495,-0.16638036,0.16157648,-0.034466077,0.32637683,-0.21413799,-0.2877386,0.005121265,0.016827762,-0.6554485,0.09674632,-0.52645814,-0.33879218,-0.08566247,-0.6322978,-0.21982767,0.681982,-0.17729579,-0.007049898,-0.29627112,0.11314229,-0.24904697,0.20352308,0.040744107,0.16992326,0.0807256,-0.023508446,0.33681816,-0.3838609,0.47498825,-0.17685576,0.38793725,-0.027306322,0.0502452,0.11588515,0.49553066,0.58588165,-0.05660961,0.9684516,0.35535696,-0.23958251,0.29306173,-0.39883962,-0.24976222,-0.514996,-0.47087127,-0.0654278,-0.28577426,-0.43727764,-0.02929874,-0.4032713,-0.7504143,0.5692101,-0.027700245,0.3685351,0.036793254,0.19929631,0.45767015,-0.07227407,-0.017166773,0.055106454,-0.20554855,-0.58861834,-0.07065795,-0.56043094,-0.43475476,0.02660687,0.6458513,-0.2671962,-0.07983007,-0.049296822,-0.32744098,-0.15979664,0.043273013,0.24801548,0.26725587,0.3023328,-0.16483834,-0.61645615,0.22878888,-0.07298692,-0.09802328,-0.6286809,0.114646144,0.69552505,-0.661347,0.5660992,0.36018762,0.18341373,-0.16692717,-0.50343984,-0.19180216,0.08207046,-0.06680905,0.5238694,0.11338683,-0.90625,0.46395922,0.27122006,-0.40573612,-0.52856475,0.35291794,-0.07178839,-0.28612018,-0.09786794,0.2385938,0.312079,-0.14235333,-0.16092917,0.18757315,-0.37291104,0.2765669,0.10854457,-0.0017905576,0.4046872,-0.08348232,-0.2691626,-0.67818785,-0.07367643,-0.5452683,-0.2327341,0.256251,-0.012265633,0.17408514,0.118726805,-0.041668184,0.2760746,-0.22915266,0.1049241,0.075410075,-0.35953856,0.14804046,0.3824857,0.26242667,-0.46654558,0.55230874,0.010040483,-0.11459862,0.090483405,0.014077987,0.35171887,0.016290631,0.48384094,-0.1882064,-0.20028113,0.28161082,0.8730081,0.23893237,0.49670783,0.16137931,-0.050450247,0.40308222,-0.07970213,0.04566001,0.16246569,-0.43972754,-0.069178045,-0.10338549,0.19191687,0.38876635,0.3203636,0.2368754,0.07542569,-0.17431866,0.06627693,0.2099859,-0.18033941,-1.1845338,0.5384029,0.36670092,0.82389647,0.16490558,0.25083202,-0.4181325,0.9036845,-0.18510517,0.011964236,0.50522465,0.15641816,-0.37125254,0.5990478,-0.5680363,0.5814268,-0.0129281515,-0.17475359,0.1162865,0.21214499,0.35144708,0.73956805,-0.28260657,-0.0014620764,0.07592567,-0.2934936,-0.09535759,-0.21578583,-0.06872082,-0.3652064,-0.24764648,0.562212,0.32995376,0.13899052,-0.06561604,-0.09148437,0.10532235,-0.078968406,0.11628647,-0.083828755,-0.050976098,-0.01913869,-0.5811726,-0.24883799,0.4794846,0.08395266,0.19978453,-0.24638627,-0.16084024,0.11746757,-0.24345589,-0.085454784,0.062157035,-0.42260653,0.17440888,-0.052508175,-0.5813318,0.7286145,-0.3110283,0.20814545,0.15140009,0.046982165,0.057369355,0.41208765,0.11564968,0.77383167,-0.2553658,-0.18727013,-0.4508266,-0.0911202,0.20122324,-0.22746423,-0.014743024,-0.36317247,-0.044760913,-0.5084452,0.5562153,-0.26972327,-0.28169027,0.11956209,-0.20817472,0.0546983,0.48071003,-0.17744586,-0.22000872,-0.037355542,-0.048946075,-0.33186302,-0.13917424,-0.25499535,0.2621234,0.23381482,0.04739174,-0.12300069,-0.29659918,-0.12555881,0.57074773,-0.060719777,0.47456858,0.09634558,0.03909105,0.12675762,-0.16046503,0.14572461,0.51505435,0.04974968,0.07197941,-0.33588475,-0.340199,-0.31967798,-0.014970609,0.0018597314,0.15688954,0.09135695,-0.2195176,0.8108932,-0.09605602,1.1666006,-0.041830268,-0.4022339,0.10017002,0.609209,-0.038567003,0.1590474,-0.34203365,1.0148252,0.51303345,-0.108114004,-0.1060635,-0.59412086,0.026018424,0.4208786,-0.3623279,-0.008210952,-0.03701232,-0.5492988,-0.2801798,0.30148688,0.12986767,0.19639824,0.045670662,0.025691016,0.017087204,0.18580341,0.36647764,-0.5172958,-0.109937154,0.31695843,0.2531415,0.0067223865,0.099583305,-0.45451075,0.35442224,-0.53019845,0.121796384,-0.4977748,0.16033934,-0.28549498,-0.38446555,0.12777945,-0.25301355,0.3154955,-0.104818724,-0.30573294,-0.044376995,0.39866427,-0.078510486,0.1455846,0.52401894,-0.23272948,-0.06597846,0.014557698,0.66857624,1.1915867,-0.33035257,-0.008076931,0.21193543,-0.45972368,-0.629168,0.35323578,-0.2218399,-0.09772805,-0.01969458,-0.23495401,-0.46533418,0.25196072,0.118720844,0.06330527,-0.023272863,-0.40835205,-0.42076287,0.22660756,-0.3624566,-0.18566588,-0.19198617,0.45450285,0.6951958,-0.26356,-0.32986578,-0.023024108,0.45254332,-0.092851765,-0.46981582,0.16368881,0.0141090285,0.45125332,0.18629102,-0.3419653,-0.07317476,0.16873913,-0.4375101,0.14117248,0.21221802,-0.42186883,0.25343376,-0.16180232,-0.069054075,0.8784785,-0.25178128,0.026920367,-0.7623077,-0.61785,-0.83503217,-0.5728192,0.07177029,0.27825305,-0.038083673,-0.39865038,0.06967565,0.029135272,-0.11538742,0.013615553,-0.48796892,0.34190598,0.019824479,0.5613101,-0.42261174,-0.7952069,0.08396018,0.17805025,-0.12573576,-0.7130924,0.6763216,-0.15652145,0.82412225,0.14519127,-0.044097725,-0.024872204,-0.20167623,0.09746138,-0.4145465,-0.41046086,-0.8119087,0.070621885 +826,0.5566217,-0.2635126,-0.49485427,-0.15586366,-0.2256692,0.20638353,-0.24861643,0.47290632,0.1915056,-0.7781067,-0.3348341,-0.04185438,0.03676864,0.38677114,-0.23859875,-0.6555465,0.13861391,0.18379545,-0.46438164,0.40058264,-0.42657068,0.28724453,-0.04238665,0.3755245,-0.13462625,0.30360994,0.087647356,-0.07077542,-0.05090477,-0.18253945,-0.12828006,0.29729903,-0.62250775,0.2567587,-0.10532386,-0.30567604,0.14748342,-0.4588506,-0.28838885,-0.66037804,0.094546326,-0.9398051,0.5676394,-0.08477211,-0.32334745,0.08059858,-0.041791186,0.19636822,-0.28878802,0.13233986,-0.1938474,-0.18695985,-0.3117154,-0.2697921,-0.082704395,-0.41170385,-0.45078033,0.08851673,-0.49871746,-0.10656889,-0.23813684,0.144131,-0.28455865,0.080976,-0.101612695,0.51683414,-0.38387993,0.13163617,0.2651506,-0.25763017,0.069827534,-0.66826683,-0.1876387,-0.039004,0.34013432,-0.20435563,-0.3499511,0.0008634512,0.3592563,0.58905977,0.027178498,-0.115534425,-0.18579625,-0.12413417,0.13446528,0.54004025,-0.06518668,-0.53896356,-0.21296388,-0.028860606,0.27417699,0.15603465,0.22156113,-0.16224514,-0.13404891,0.013460983,-0.29069567,0.23537701,0.53699374,-0.40738875,-0.094770364,0.32471296,0.58119637,0.11450943,-0.025270987,0.17925797,0.0458401,-0.4736918,-0.19989358,0.021451276,-0.19858152,0.6127463,-0.12893388,0.3769057,0.48159486,-0.22313097,-0.01130702,0.17519471,0.058376793,-0.074554354,-0.35170886,-0.053347234,0.31621423,-0.39029413,0.011903529,-0.22361559,0.83082145,0.2606444,-0.6312121,0.248696,-0.4338497,-0.05718387,-0.13989276,0.6078871,0.5071786,0.48386523,0.196304,0.746365,-0.50113606,0.09953092,-0.2520619,-0.22933657,-0.17220767,-0.019740788,-0.089479536,-0.35452044,0.18625799,0.13036281,-0.04011834,0.037953623,0.3441297,-0.6165062,-0.030755801,0.11270972,0.65886045,-0.37490353,-0.22734293,0.949606,0.96527493,0.69829464,0.092756584,1.3088088,0.21447508,-0.10024753,0.029823853,-0.023312889,-0.65909153,0.33530352,0.43527353,0.2230251,0.3221424,0.24597289,-0.18730822,0.44539645,-0.2817102,-0.16240853,-0.19575068,0.23971483,0.07090005,-0.014214034,-0.6614648,-0.09673001,-0.08399598,-0.07859777,0.1100377,0.211944,-0.248814,0.4818155,0.08588651,1.3927001,-0.1355649,0.14162916,0.026881557,0.31448576,0.26744145,0.001733365,-0.108212985,0.43392244,0.3171673,0.05654835,-0.6582643,-0.00874544,-0.097327724,-0.57653755,-0.19168207,-0.29790804,-0.1193022,-0.17812599,-0.45675534,-0.09940266,-0.099786155,-0.31625035,0.52023757,-2.5453389,-0.32053906,-0.15766588,0.5993134,-0.32968113,-0.36611798,-0.16578865,-0.341816,0.3199643,0.3322123,0.4618696,-0.4791807,0.45399383,0.43954733,-0.4565266,-0.2681309,-0.65378314,0.10665818,-0.018443704,0.35131356,-0.0009329273,-0.3057509,-0.082824245,-0.13365014,0.59217834,-0.035958137,0.13884218,0.2999875,0.4037731,0.069400735,0.26721394,-0.00405252,0.6595964,-0.37263218,-0.23054272,0.3210888,-0.36092263,0.41003186,-0.06486655,0.19107498,0.44077793,-0.44456312,-0.78720284,-0.77765596,-0.2518087,1.2660611,-0.2502696,-0.4924586,0.13181043,-0.38702202,-0.33783847,-0.007872939,0.48645094,0.039555207,-0.050459918,-0.8090226,0.10252893,-0.113286614,0.23775145,-0.0034585595,-0.0045725843,-0.47008926,0.6637528,-0.18820015,0.5286001,0.2640722,0.3083477,0.046228684,-0.2430164,-0.08519965,1.1093314,0.40005928,0.29472664,-0.24490558,-0.2651959,-0.29951087,0.13891517,0.0538866,0.6480514,0.6655983,0.10307983,0.045903765,0.23336992,0.14387321,0.11369908,-0.2599798,-0.22459468,-0.17868087,0.12133147,0.6352286,0.43209442,-0.25489992,0.4022683,-0.14492081,0.294329,-0.24196829,-0.40151274,0.3973578,0.6893154,-0.3244998,-0.3368277,0.71557134,0.55417645,-0.44812503,0.37385994,-0.78169924,-0.41604668,0.45415694,-0.15346019,-0.3415601,0.23907876,-0.23605765,0.3641046,-0.97899556,0.3286462,-0.3551536,-0.60160327,-0.3824334,-0.119671665,-3.53809,0.34752178,-0.10341929,-0.14945401,-0.09498359,-0.3309023,0.21876425,-0.50435835,-0.49048138,0.24250712,0.007718011,0.70026237,-0.10328613,0.21099776,-0.21485966,-0.29881155,-0.051809423,0.11999829,0.10415467,0.21226004,-0.0937639,-0.41636986,0.08388043,-0.16322081,-0.27350342,0.10570867,-0.639266,-0.5342536,-0.11751747,-0.5128035,-0.16210732,0.56350017,-0.3654224,0.05984309,-0.330421,0.24235518,-0.18245292,0.31341532,-0.17523998,0.17369464,0.06401744,-0.08199635,-0.09700486,-0.32689983,0.24295601,0.085725784,0.12362926,0.4065997,-0.28045517,0.12110877,0.5904662,0.56784225,-0.01893696,0.8566757,0.35764027,-0.06825461,0.3900619,-0.13765998,-0.4325679,-0.4974263,-0.36713517,-0.01924345,-0.505942,-0.36696517,0.07820663,-0.35808834,-0.871468,0.6653645,0.034279548,0.08803756,0.068802394,0.60952175,0.6929022,-0.17413422,-0.11828954,-0.005665944,-0.22311541,-0.5256735,-0.34896007,-0.525701,-0.29534847,-0.0062620686,0.9535623,-0.36247987,0.060272194,0.018967362,-0.1258496,-0.064388424,0.24757624,0.13733095,-0.035086777,0.5000092,-0.08307788,-0.58625674,0.3291283,-0.17991854,-0.48601988,-0.4107048,0.19122536,0.72787505,-0.8916226,0.5400613,0.4879704,0.10477002,0.055080276,-0.46355835,-0.18516651,-0.0033884416,-0.20165235,0.44231078,0.30495232,-0.9720357,0.44441906,0.35916793,-0.08273174,-0.74897677,0.55431795,-0.07509542,-0.26742664,0.026555676,0.3960346,0.098282665,-0.063464135,-0.31923902,-0.053021945,-0.41746515,0.30063975,0.22757936,-0.054169975,0.44451317,-0.29614213,-0.16562718,-0.84982264,-0.22172864,-0.5885201,-0.14875793,0.29677776,0.031657454,0.09618175,0.16782239,0.20223786,0.5148031,-0.6222417,0.028798819,-0.10847517,-0.37670738,0.42522982,0.49693573,0.39972416,-0.31540903,0.63881904,0.01720671,0.004517327,-0.16954398,0.14365241,0.57944864,0.027609257,0.4527615,-0.06430632,-0.18455864,0.1111639,0.9645432,0.07136534,0.57993644,0.21162829,-0.020591088,0.2606933,0.116611116,0.2556023,-0.009907539,-0.47373435,0.06832287,-0.17257176,0.048800036,0.45117134,0.34166887,0.37365377,-0.013236174,-0.2502588,-0.029064242,0.14843625,0.09701676,-1.0285573,0.24830996,0.074348934,0.72468746,0.2332446,0.06669909,-0.03173273,0.50159657,-0.08858511,0.1695539,0.25110814,-0.083897844,-0.40075704,0.35465476,-0.629572,0.484801,-0.20712826,-0.052958146,0.13258402,-0.10066835,0.43977657,1.0659038,-0.14147006,0.04442088,0.07199863,-0.20337814,0.11795141,-0.52179563,-0.1099943,-0.66062826,-0.23905292,0.7117274,0.5280973,0.5703056,-0.26297882,-0.044570748,0.21530178,-0.03504815,0.18393418,0.062381074,0.13100998,0.015465514,-0.566713,-0.27443212,0.56549656,0.21490741,0.103904724,-0.003845169,-0.26234186,0.39728865,-0.10460997,-0.10404229,-0.013143379,-0.49584293,-0.06759943,-0.5162563,-0.6691956,0.24969314,0.03602815,0.10206222,0.2872221,0.024023114,-0.28695622,0.27136308,0.08292714,0.9013248,0.1147031,-0.27582258,-0.5978016,0.20385668,0.42831025,-0.2802014,-0.017113594,-0.31304285,0.16045786,-0.7148336,0.37020683,-0.09041062,-0.22534297,0.21864669,-0.090319544,0.009787897,0.504678,-0.15231544,-0.20005406,0.1239237,-0.23317719,-0.32327503,-0.21077463,-0.2563866,0.2018501,0.1548083,-0.13080344,-0.054969303,-0.1744278,-0.0040334463,0.24442601,0.23059545,0.18880223,0.2920372,0.032879554,-0.2903625,-0.03472646,0.21029614,0.62513196,-0.23164949,-0.1598161,-0.25656417,-0.6305864,-0.37305596,0.119787216,0.06428142,0.22941747,0.17424004,-0.14599861,0.79676396,-0.026863547,0.9510661,0.055061523,-0.40079692,-0.002133718,0.51001793,0.048723478,-0.07417788,-0.37186053,1.0673243,0.48182684,-0.017273473,-0.056263823,-0.4708064,-0.08939798,0.1449911,-0.28907716,-0.19585985,-0.15602805,-0.5981401,-0.32192534,0.1521762,0.23989399,0.1928704,-0.0067956275,0.25485784,0.31230348,0.016759321,0.14634529,-0.75674,-0.06624903,0.31575534,0.25138742,-0.057135556,0.021004558,-0.35556495,0.3594621,-0.78842914,0.055153828,-0.34092653,0.09235497,-0.16199623,-0.3598135,0.19995275,0.07563658,0.37149376,-0.41616657,-0.42679405,-0.24345915,0.44939998,0.08817257,0.0030686306,0.5278361,-0.14934161,-0.017980708,0.03004253,0.64366966,0.9709205,-0.21107318,0.2851897,0.49486822,-0.22589129,-0.5967289,0.15786941,-0.43593147,0.2422185,-0.07349871,-0.119590335,-0.537146,0.309093,0.3642168,-0.01773093,0.029872198,-0.6345402,-0.101254314,0.27366713,-0.33850157,-0.12760177,-0.07089487,0.13247989,0.6816922,-0.19238597,-0.19366394,0.076222904,0.4031328,-0.17016372,-0.5516449,-0.17253274,-0.38661894,0.26127273,0.06940938,-0.29537863,-0.1835405,-0.08974542,-0.37399134,-0.01343673,0.28732762,-0.24570164,0.05403187,-0.3923559,0.092416376,0.7557612,-0.1186376,0.3076762,-0.52809036,-0.4478078,-0.84990335,-0.16572572,0.36598316,0.13828422,0.12849398,-0.49939245,0.10255924,-0.08492219,-0.14179176,-0.082247734,-0.42317083,0.5803899,0.16549928,0.5272172,-0.08875212,-1.0101737,0.21354127,0.13765925,-0.42701003,-0.47680086,0.40193456,-0.13112146,0.9316264,0.053507593,0.07981859,0.211033,-0.7239663,0.01184412,-0.23452313,-0.043126877,-0.7739723,0.0059659663 +827,0.47876438,-0.18223588,-0.491929,-0.17565392,-0.31188107,-0.07411852,-0.09620139,0.62497747,0.27674004,-0.26010495,-0.22490153,-0.14693382,0.096032724,0.3839648,-0.23117307,-0.33327672,-0.13307662,0.1859641,-0.46939284,0.44386667,-0.32632515,0.061695613,-0.06598174,0.5686352,0.23664959,0.31094414,-0.07842199,0.008408317,-0.023050686,-0.1997194,0.02020981,0.33172593,-0.49259514,0.044216894,-0.2493833,-0.4146694,-0.053531434,-0.6547244,-0.5098577,-0.7063784,0.35582367,-0.8073339,0.43324152,0.17828688,-0.2549458,0.32110196,0.21652876,0.41037148,-0.2180298,-0.2592308,0.12920769,0.06680573,-0.01844655,-0.0976882,-0.098843575,-0.2692472,-0.6172676,-0.04399666,-0.24836224,-0.09583827,-0.20803906,0.11337865,-0.18883762,0.14247975,-0.061565913,0.49886197,-0.3784189,0.116191186,0.1649833,-0.16646224,0.22454913,-0.4587372,-0.19757873,-0.07305381,0.33578414,-0.18169403,-0.24830748,0.21005608,0.115357205,0.27580473,-0.2366301,-0.052348394,-0.44079462,-0.07018424,-0.109876975,0.5592538,-0.11341942,-0.46911204,-0.047242753,0.049075928,-0.055736475,0.21160811,0.09271462,-0.15600154,-0.10766317,-0.09332474,-0.12925868,0.47793722,0.45563275,-0.1618212,-0.16186619,0.25912002,0.49091795,0.2310902,-0.22576849,-0.1522115,0.07920348,-0.6082749,-0.077577226,-0.16749851,-0.20539245,0.43838686,-0.015922956,0.35577968,0.5521871,0.029828187,-0.08155257,0.08086646,0.064862475,-0.03919422,-0.38496664,-0.30343848,0.37455592,-0.24511649,0.31092688,0.047535457,0.5729333,0.04785545,-0.8385842,0.31373447,-0.641849,0.09457019,-0.16808377,0.36440057,0.52020437,0.24306844,0.46102226,0.6213861,-0.13845634,0.15097381,-0.020029591,-0.21851943,-0.04880541,-0.08794944,0.06545748,-0.52664024,-0.048575755,0.077852234,-0.2096338,0.29848355,0.2972174,-0.48875505,-0.11776691,0.43085402,0.8957323,-0.21190381,-0.05432489,0.74446553,1.0284207,0.826707,0.07048896,0.89500165,-0.047458664,-0.2154839,0.3293533,-0.25675717,-0.7598864,0.27685335,0.33325437,-0.057656087,0.25131983,0.06927525,0.076144174,0.37566808,-0.3867088,0.05654293,0.018864898,0.041065756,0.34403706,-0.02596752,-0.5570917,-0.28250453,-0.19976027,0.056670092,0.17843863,0.13961568,-0.19531171,0.24453679,-0.044854973,1.8465677,0.08574895,0.035220407,0.2210785,0.58496326,0.21039207,-0.27864102,-0.27500322,0.2666067,0.19554816,0.18972643,-0.41274807,0.30753165,-0.13219415,-0.44825464,-0.08015405,-0.36666277,-0.20871744,-0.07420189,-0.4603459,-0.09610136,-0.14686787,-0.3292876,0.40881914,-3.0735147,-0.06615431,-0.14164196,0.31041035,-0.12305359,-0.31626764,-0.09948989,-0.378604,0.30657285,0.45672962,0.47661364,-0.5917838,0.4334324,0.48881027,-0.6471173,0.014138148,-0.53016704,-0.19370529,0.12606512,0.28668317,0.055808607,0.049660917,-0.06378949,0.29505408,0.27609503,0.119269595,0.069453545,0.25585032,0.3546509,-0.0071099857,0.6079691,-0.1808336,0.34331134,-0.27398205,-0.21098372,0.24290334,-0.4316106,0.18520547,-0.1533967,0.14967933,0.51926076,-0.47602007,-1.054519,-0.5162376,0.018957766,1.0291007,-0.1627682,-0.24422564,0.33676305,-0.73041546,-0.34954083,-0.0014505937,0.5437694,-0.09399006,-0.07314278,-0.8318595,-0.17377223,-0.28167436,0.18584163,0.028332118,-0.16030478,-0.48140338,0.6533927,0.025969861,0.55381405,0.22681616,0.06663253,-0.3808257,-0.35531425,0.0005386082,0.6309481,0.18525685,0.15427707,-0.23665474,-0.24069048,-0.38621548,0.021966819,0.13162185,0.6331422,0.4666188,-0.051106386,0.13591234,0.19369599,-0.0069013974,-0.059366904,-0.11303636,-0.14201397,-0.096324354,-0.024527458,0.5340694,0.7748582,-0.19883603,0.44936305,-0.07602856,0.3584293,-0.17995748,-0.24641539,0.31091243,1.0018367,-0.015118608,-0.4051169,0.7419191,0.6614494,-0.34461233,0.33363116,-0.59960425,-0.13011494,0.22724144,-0.066231444,-0.3809066,0.1782659,-0.2856587,0.12830777,-0.84720516,0.082059115,-0.09559569,-0.39158243,-0.61987686,-0.1731128,-3.0388455,0.13189395,-0.111439556,-0.31272697,-0.050540812,-0.23531672,0.061700225,-0.6340214,-0.76942927,0.21411875,0.05958367,0.71808565,-0.11844084,0.18357159,-0.18238999,-0.18627483,-0.22249049,0.2766967,0.15439613,0.40221235,-0.04487046,-0.50884575,-0.32817265,-0.05272991,-0.38413733,0.10465522,-0.6552613,-0.35733965,-0.0660143,-0.6028208,-0.08872637,0.5645295,-0.27790004,0.02044493,-0.16578147,0.011798041,-0.16620973,0.2136953,0.040405147,0.06845965,0.08381482,0.02266955,0.09218777,-0.22703703,0.41151127,-0.051527016,0.3971554,0.21350288,0.009499247,0.2817387,0.50739765,0.653397,-0.14653759,0.88372624,0.5197557,-0.0221547,0.13283649,-0.21835779,-0.22910342,-0.3791497,-0.12598255,0.020799749,-0.32934254,-0.32027707,-0.013380032,-0.43557295,-0.7030445,0.58808047,-0.06301687,-0.093462355,0.16897112,0.16792573,0.6049789,-0.2897222,-0.016397094,0.044695977,-0.06378116,-0.60798717,-0.2989526,-0.4263386,-0.33084407,-0.062303882,1.1195387,-0.22642271,0.032790657,0.11099616,-0.33602735,0.0013773653,0.275956,0.007985206,0.15771297,0.47220188,-0.06278188,-0.5131545,0.4680635,-0.32632974,-0.2619951,-0.51515836,0.19489346,0.31965834,-0.5514758,0.60409504,0.28049538,0.15339053,-0.28171894,-0.4699302,-0.29117352,-0.059645988,-0.13832761,0.43049464,0.3671091,-0.7836095,0.23360273,0.2559651,-0.08701824,-0.8059698,0.60377604,-0.08973764,-0.45278805,-0.1556743,0.23423216,0.051698063,-0.014012878,-0.101757124,0.1545905,-0.11392975,0.13954058,0.15448783,-0.052898057,0.23890553,-0.316201,0.16309763,-0.7119496,0.11485672,-0.29680106,-0.18818389,0.41275105,0.02410349,0.18740486,0.19337603,0.013275468,0.20065716,-0.24096921,0.010147319,-0.198867,-0.34182853,0.28142133,0.30139375,0.6041974,-0.51957977,0.4976298,-0.00030809926,-0.081302375,0.13328211,-0.065122776,0.34470505,-0.22411187,0.35228962,0.017690722,-0.23934871,0.19855088,0.7002483,0.19371264,0.2778179,0.06614602,0.037633557,0.2670342,-0.09544984,0.14575578,-0.04530897,-0.6455249,0.23647778,-0.37660253,0.09872143,0.3069258,0.08542255,0.14705913,-0.06168317,-0.43979228,0.033002708,0.22710595,0.111570634,-1.2422484,0.37060654,0.14551575,0.9952421,0.4633687,-0.008057954,0.014380505,0.7763711,-0.064583026,0.17506728,0.36360568,0.12645465,-0.32069695,0.49276623,-0.5634917,0.64945644,0.040210146,-0.11421357,-0.06939541,-0.18562292,0.45933965,0.66381556,-0.2268904,-0.0372376,0.17568523,-0.2857184,0.07670697,-0.29385784,0.032795534,-0.7564709,-0.09757973,0.6492675,0.63942236,0.33821347,-0.077596396,0.05244273,0.08128117,-0.01519658,0.11444022,-0.009044765,-0.03206988,0.10223206,-0.7673328,-0.025076417,0.43247062,-0.03166836,0.15634724,-0.028101103,-0.17377523,0.25495908,-0.12185744,-0.20541793,-0.1386383,-0.71380526,0.026822526,-0.31726158,-0.52414954,0.44008255,-0.06434424,0.24061956,0.22981074,0.037033454,-0.26950514,0.4295548,-0.035190728,1.0079161,-0.016313076,-0.013023446,-0.34453124,0.065743476,0.12129091,-0.16000889,-0.22612332,-0.5298492,0.15687165,-0.550837,0.475705,0.05858612,-0.48231924,-0.09739749,-0.011781381,0.22844015,0.5009454,-0.07009672,-0.22950552,-0.23523507,-0.042319354,-0.14455026,-0.061037343,-0.24638136,0.2935096,0.14786153,-0.17290941,-0.06892363,-0.050573286,-0.03475899,0.54105365,-0.088791244,0.61657935,0.3346091,0.21126707,-0.19781302,-0.13402954,0.15419945,0.6939106,-0.20801093,-0.28130755,-0.23661575,-0.32610735,-0.2729326,0.38533723,-0.08362488,0.47402138,0.25771236,-0.05595314,0.58434397,-0.10217608,1.0312098,0.06776124,-0.30372623,0.18508574,0.345393,0.0457912,-0.07562527,-0.36038172,0.7617055,0.42827865,-0.09894499,-0.15995291,-0.27972284,0.23843414,0.048342083,-0.09362193,-0.09519709,-0.08222687,-0.58113265,-0.060315408,0.1779775,0.2140313,0.3683707,-0.19318956,0.18241572,0.17295446,-0.041210715,0.18272458,-0.32947475,-0.15273851,0.2835243,0.2262415,0.057756085,0.07074991,-0.5901943,0.34146485,-0.32645944,-0.058555122,-0.4819256,0.23331884,-0.30728137,-0.311794,0.14524965,-0.059117243,0.4378575,-0.34750956,-0.21413377,-0.40202147,0.4718788,0.28593987,-0.0056440784,0.3659918,-0.21830764,0.10376457,-0.0026941162,0.5555793,0.77226424,-0.339014,0.056042906,0.22151041,-0.19951428,-0.38095936,0.18884636,-0.44931924,0.2745108,0.16103145,0.0012170741,-0.6715198,0.2500827,0.17304413,0.006044351,-0.03409829,-0.55303764,-0.18490021,0.25706407,-0.26975664,-0.10749348,-0.4267408,-0.005950556,0.5530242,-0.023663769,-0.18711948,0.1431129,0.14401878,-0.05936202,-0.39576536,0.14051345,-0.517438,0.20014538,-0.13127142,-0.43527257,-0.48813227,-0.026156357,-0.45441312,0.35909632,0.21401633,-0.29626498,0.08078825,-0.36540586,-0.07950383,1.1977997,-0.21439615,0.28266734,-0.3707627,-0.49876234,-0.8560915,-0.26353934,0.35807088,0.03923401,0.008154344,-0.56163466,0.086278275,-0.108215794,-0.39595082,-0.10818862,-0.31450287,0.36723253,0.089552574,0.53103006,-0.080031715,-0.9414148,0.1121714,-0.024894714,-0.39987448,-0.50311506,0.49135917,0.12314187,0.8066031,0.0126914885,0.23559068,0.2255076,-0.352696,-0.11131036,-0.084907584,-0.058914755,-0.6214774,0.15772592 +828,0.54643697,-0.12385285,-0.35530657,-0.1288866,-0.33544445,0.017316934,-0.13600722,0.4826475,0.26161188,-0.43300685,-0.23066317,-0.15849946,0.11002822,0.22149642,-0.18623258,-0.6901322,0.0063298387,0.25784424,-0.44898424,0.5388582,-0.4575489,0.38014907,0.04147782,0.4634411,0.26013845,0.133245,0.107679494,-0.15684667,-0.21645807,-0.3010183,-0.18693513,0.18832289,-0.5833115,-0.008415767,-0.24287233,-0.45570797,0.087360695,-0.37777594,-0.30696473,-0.88660836,0.314464,-0.81589997,0.4742804,0.014894839,-0.39247978,0.43708408,0.1503858,0.27252212,-0.16787641,-0.01666095,0.19438605,-0.29655233,-0.04582261,-0.1662618,-0.18344478,-0.32390505,-0.7453708,-0.05278258,-0.40323392,-0.14416462,-0.33649793,0.19395377,-0.35873756,0.040475406,0.036684927,0.43558976,-0.5192747,0.04385972,0.0838625,-0.056044366,0.4074292,-0.5326877,-0.23536743,-0.15095685,0.1332442,-0.22754717,-0.14354388,0.35263225,0.22119817,0.50261146,0.014685563,-0.17764759,-0.33998218,-0.06175112,0.028248783,0.47660726,-0.14316492,-0.36507553,-0.083679065,-0.26422456,0.22830983,0.27295342,0.14658332,-0.07045869,-0.14182884,0.08726244,-0.28909627,0.3227767,0.4219314,-0.32835135,-0.22772694,0.20609638,0.45293438,0.18082447,-0.17840746,0.007856132,-0.02342559,-0.41538367,-0.14892946,0.13554935,-0.41494668,0.61356264,-0.1742613,0.16811222,0.75254875,-0.2635943,0.06295149,-0.0068427236,0.2362354,-0.0824398,-0.18725412,-0.47588545,0.38042703,-0.6015923,0.2345448,-0.37689173,0.81216615,0.1299464,-0.5323142,0.27983126,-0.5749552,0.101952426,-0.06390608,0.6242888,0.6569721,0.44474158,0.6059986,0.5647041,-0.42343494,0.05765708,0.04888134,-0.25115603,0.06900694,-0.2595201,0.015646007,-0.4128546,-0.029373277,-0.0035128572,-0.12647733,0.13356143,0.49227557,-0.43582186,0.0009606083,0.17871422,0.83791643,-0.33694986,-0.029331561,0.74071467,1.0756986,1.2317961,0.0530216,1.0502932,0.3685158,-0.34654742,0.09789798,-0.1546064,-0.73689336,0.26138178,0.41465905,-0.17754309,0.28719658,0.1126026,-0.01762367,0.3467135,-0.54559124,-0.040252965,-0.091672756,0.19766179,0.034374185,-0.008478564,-0.4621622,-0.4051153,-0.08567135,0.06773742,0.02645183,0.4138902,-0.26522636,0.3998991,0.11394746,1.3880925,0.049002655,-0.05425523,0.11063144,0.5360288,0.1099926,-0.04760021,-0.08213285,0.30042705,0.2889106,0.13059977,-0.61287653,0.0563726,-0.2304153,-0.5215404,-0.15194324,-0.2780417,0.014156242,-0.018743277,-0.44964248,-0.20987205,-0.21583463,-0.24208142,0.29902261,-2.330948,-0.13704364,-0.014176186,0.29469487,-0.051597398,-0.3545804,-0.061174892,-0.6412676,0.45193297,0.3257754,0.41893488,-0.72718126,0.3297796,0.57015765,-0.4576546,-0.033894274,-0.71085995,-0.36991304,-0.08601999,0.23401734,0.01979233,0.0059294244,0.02188657,0.20586398,0.6024098,-0.03814483,0.20763893,0.2792811,0.38851917,-0.06596211,0.5012694,0.12442468,0.37219065,-0.083883986,-0.17733,0.3512908,-0.4351811,0.09632499,-0.07473009,0.08309816,0.5917647,-0.4003237,-0.9147071,-0.69132143,-0.2667497,1.1689402,-0.19969171,-0.4349531,0.30474675,-0.13049427,-0.17285083,-0.10162761,0.4941934,-0.2074772,-0.16749707,-0.76571107,0.08689152,-0.1427281,0.23980048,0.099418335,0.15492493,-0.31689772,0.71631265,-0.12615922,0.38659295,0.2166024,0.13966218,-0.27491787,-0.4630446,0.053604856,0.9059971,0.47320068,0.2121062,-0.41156763,-0.23590912,-0.34396917,-0.13270006,-0.030558832,0.37638855,0.82949865,-0.19245963,0.3109695,0.18571226,-0.0759399,0.0056619355,-0.27897456,-0.3399913,0.003373448,-0.00973327,0.45865005,0.6446257,-0.23929809,0.34985772,-0.07313039,0.35608444,-0.17855237,-0.45436636,0.5050513,0.9985936,-0.105777994,-0.14401963,0.71995354,0.55059236,-0.30510318,0.57466125,-0.71813774,-0.3897936,0.5216614,-0.21642421,-0.4066822,0.22046648,-0.39321646,0.19515231,-0.8054721,0.3088293,-0.30998728,-0.37712204,-0.5955666,-0.121357664,-2.921958,0.20756988,-0.2810849,-0.24440406,-0.18490794,-0.12712494,0.26835242,-0.57458556,-0.62845296,0.087089226,0.19590665,0.75035733,-0.019060267,0.055623434,-0.19284262,-0.4349359,-0.4131469,0.08460066,0.10934689,0.37655538,0.018247226,-0.50743204,0.040399607,-0.10405459,-0.5398143,-0.08249357,-0.5358026,-0.5531975,-0.14982322,-0.503138,-0.47489765,0.64518505,-0.23744322,0.18218456,-0.23088929,-0.19859606,-0.09827092,0.39578125,0.26849362,0.118635535,-0.17072107,0.050194826,0.08271285,-0.26263452,0.30224195,0.06696304,0.057862453,0.3567873,-0.09784564,0.13985313,0.42755535,0.64540505,-0.08029253,0.99675196,0.4279529,-0.07849083,0.37450036,-0.3039023,-0.3155471,-0.728469,-0.33375546,-0.12896572,-0.38479128,-0.31561956,-0.059614666,-0.4470759,-0.8817463,0.5686668,-0.10122129,0.2630104,0.005112167,0.24419406,0.40220705,-0.13014063,-0.14225462,-0.017154884,-0.109467775,-0.4796997,-0.19555204,-0.9120692,-0.46990332,0.10513899,0.912417,-0.1934479,-0.057614293,0.14168148,-0.1434391,0.0503698,0.18508309,-0.026108623,0.045324184,0.6233948,-0.04340531,-0.75642926,0.54691035,0.0959654,-0.1970082,-0.61916465,0.12954491,0.5569342,-0.8080969,0.52447164,0.45320836,0.033417635,0.006611681,-0.50581974,-0.19449173,-0.19069567,-0.23357563,0.41706246,0.23525228,-0.78645504,0.4140212,0.32099465,-0.2628539,-0.69479805,0.47283044,-0.032532953,-0.48419222,0.03503012,0.4017849,0.06105341,0.13560778,-0.16967468,0.21158499,-0.5649877,0.2716575,0.36469883,-0.10974614,0.27996936,-0.1172711,-0.07700697,-0.91420335,0.11978502,-0.4512511,-0.33439973,0.030416556,0.05525303,-0.06652919,0.44378337,0.21462873,0.42378566,-0.18286228,0.027394557,-0.15836348,-0.27208838,0.3302479,0.49469158,0.50597537,-0.2968167,0.7034286,0.04443674,-0.2965848,-0.23048131,0.015364041,0.47590813,0.033136822,0.44334075,0.094507985,-0.38210008,0.26787055,0.6428425,0.27168044,0.56438583,0.03486294,-0.052402664,0.31765303,0.18691197,0.25309426,-0.021681882,-0.4041581,0.07265676,-0.28173837,-0.00082768203,0.67209816,0.07096968,0.3327482,-0.099895,-0.1784837,0.06337019,0.106242865,-0.18175848,-1.3369062,0.25689137,0.191768,0.8470448,0.6484141,-0.036681794,0.053013172,0.6046168,-0.394496,0.00516787,0.3595732,0.13448158,-0.5036003,0.7141711,-0.7263513,0.3766915,-0.19825855,-0.029439835,-0.022877185,-0.09859301,0.4694551,0.81857,-0.15338324,-0.09558703,-0.021651864,-0.38423213,0.28445432,-0.4570244,0.032742493,-0.5592807,-0.21191566,0.71835047,0.46098194,0.27577457,-0.25142318,0.1258704,0.017538596,-0.19716834,0.2515882,0.079067275,0.08421299,-0.071054235,-0.5377699,-0.21989599,0.6280154,-0.18762307,0.105168454,0.0053507825,-0.17723867,0.11781541,-0.073994994,-0.060678102,0.019995935,-0.77913207,-0.16698869,-0.33279338,-0.31950104,0.56305146,-0.0027269283,0.2608537,0.26328692,0.087887056,-0.41040233,0.21122466,0.38604638,0.45317274,0.0499161,-0.15433301,-0.26145503,0.26930633,0.20842189,-0.1619168,-0.10331441,-0.089526795,-0.0049479483,-0.43913758,0.48498344,-0.14411242,-0.1352727,0.02329553,-0.18973422,0.013031805,0.521592,-0.18450099,-0.13225554,-0.14324659,-0.13971648,-0.18614931,-0.16610645,-0.14506121,0.20440865,0.052441232,-0.15596841,-0.14247985,-0.033063583,-0.07970905,0.4484616,-0.11925158,0.34367856,0.4292352,-0.07914814,-0.4423764,-0.12927128,0.083912134,0.51196784,-0.090727255,-0.108296596,-0.33147132,-0.5004543,-0.29468247,0.2619986,-0.20017196,0.35959095,0.07721696,-0.26227537,0.9623578,0.068032645,0.9587101,0.022869598,-0.44419545,0.12695572,0.5087237,-0.18515907,-0.031664014,-0.357099,0.96079624,0.35975924,-0.23448196,-0.17191921,-0.32917148,0.043494917,0.26517177,-0.1446279,-0.23084001,-0.043659315,-0.6831817,-0.30481973,0.25922173,0.3300148,0.047806263,-0.0958859,0.10638562,0.28266746,0.15925832,0.4426533,-0.5434632,-0.12134402,0.38372105,0.15114494,0.06904211,0.26116008,-0.30779496,0.40851307,-0.43131134,0.012225393,-0.31654125,0.12627035,-0.2479151,-0.45579034,0.30268288,0.27058172,0.33101243,-0.30160853,-0.39284325,-0.29818347,0.3906848,-0.0007582823,0.1542124,0.49851927,-0.3409072,0.12238469,0.006254093,0.484574,1.196656,-0.18469034,0.0014105876,0.3138142,-0.52092725,-0.6177797,0.42843083,-0.27936834,-0.023260422,0.044930812,-0.24967271,-0.67126286,0.14646748,0.17532654,-0.023639647,0.25600353,-0.47601998,-0.2446659,0.3335368,-0.33775792,-0.27532005,-0.23796898,0.16363375,0.54361904,-0.3308564,-0.23332097,0.05382123,0.20354429,-0.24301116,-0.50610834,-0.09423717,-0.43015465,0.53165656,0.15299001,-0.3676397,0.1101227,0.16852376,-0.4243511,-0.037679173,0.2740712,-0.35560125,0.095990315,-0.47276866,0.105706915,0.94231623,-0.10451182,0.05437055,-0.5260674,-0.47331774,-0.8530933,-0.41452536,0.6342898,0.226122,0.061384298,-0.55373794,-0.032924294,-0.12951052,-0.03688928,0.021673901,-0.46551672,0.446879,0.2966143,0.2501926,0.0015987594,-0.8089186,0.014331385,0.043485533,-0.28121156,-0.5012971,0.51960737,-0.1151674,0.7964476,0.15078205,0.068708055,0.21482521,-0.37386268,0.08624579,-0.15276909,-0.16822895,-0.60752404,0.0069794934 +829,0.39844248,-0.044501368,-0.6767394,0.010239516,-0.39041153,0.17572825,-0.16945031,0.5264071,0.37180108,-0.37153906,-0.2360692,0.10268749,-0.1962977,0.43095148,-0.16732086,-0.59865063,-0.08127805,0.18793216,-0.54066217,0.9016613,-0.13826221,0.32983583,-0.070759244,0.46611232,0.2988366,0.36163995,0.09974864,0.055326305,-0.18420322,-0.41145724,-0.10212536,0.07729633,-0.53437424,0.40170133,-0.2793048,-0.2553028,-0.13553473,-0.44958988,-0.25473675,-0.7356559,0.3221684,-0.78765553,0.43561175,-0.10281999,-0.22397074,0.3061867,0.22392645,0.14038685,0.058176424,-0.20484422,0.051680293,-0.14255872,-0.106473595,-0.19768143,-0.3018325,-0.47221482,-0.50074756,-0.053753413,-0.48637426,-0.18052687,-0.22309044,0.16826107,-0.3962682,0.03290239,-0.17467324,0.6662753,-0.3405329,0.2163558,0.016235083,-0.2514141,-0.21975301,-0.57241493,-0.30378422,-0.045041826,0.3060603,0.16891249,-0.08778301,0.27343765,-0.010343694,0.10980951,-0.002269323,-0.12816119,-0.2778358,-0.24251641,0.2800727,0.5566791,-0.024162237,-0.37604067,-0.09044234,-0.13006797,0.2814641,-0.12206617,0.3011812,-0.14606652,-0.08551152,-0.27141428,-0.26002482,0.25513172,0.2942756,-0.19536504,-0.19421792,0.3059737,0.369737,0.4035791,-0.43709686,-0.15980117,-0.037317596,-0.33675623,0.009446831,0.096449256,-0.039760325,0.4794312,-0.13591178,0.32363558,0.49055684,0.010983426,0.06657459,0.012229496,0.24549039,0.0036637187,-0.13455209,-0.31189764,0.23631085,-0.430511,0.15787274,-0.19110616,0.78656375,0.12011099,-0.5806596,0.41029522,-0.49851194,-0.0078065787,0.09956878,0.3127902,0.679625,0.5149024,0.011539461,0.552118,-0.12723419,0.080100074,-0.006876338,-0.18322721,-0.12771338,-0.2887565,0.14237484,-0.44323653,0.08656265,0.031540476,0.04512123,0.05530353,0.45322222,-0.3334937,-0.35316703,0.075331256,0.84774196,-0.14038153,-0.10020283,0.81394666,1.0391076,1.0832072,-0.05241287,0.93309176,0.07324822,-0.3136357,-0.12636371,0.039615337,-0.59000516,0.26381075,0.24199373,-0.010209946,0.37229186,-0.10777176,-0.12480486,0.24750453,-0.3356614,-0.014265448,0.0007312802,-0.0073669506,0.23816174,-0.043369338,-0.38839632,-0.3909356,0.03521145,-0.009188693,0.38997272,0.29214257,-0.21680014,0.573568,0.17964366,1.5291717,-0.0769339,0.012218604,0.20307367,0.60862505,0.23808584,-0.26069668,0.10022683,0.2024532,0.36611468,-0.017318249,-0.5538862,0.15452152,-0.36918333,-0.51829374,-0.10462098,-0.45550358,-0.428572,0.11229296,-0.41125482,-0.27662712,-0.041580696,-0.112752214,0.33297765,-2.7336159,-0.020828614,-0.24306515,0.21070546,-0.2144946,-0.28279158,-0.17965876,-0.5451736,0.27906525,0.14940585,0.47527263,-0.41920802,0.4001369,0.5108904,-0.5920306,-0.14930405,-0.38554433,-0.111239396,0.12849638,0.45048273,-0.15722704,0.20224708,-0.07674213,0.19982876,0.40838096,0.05878786,0.09154639,0.47621825,0.3237718,0.035011776,0.4061514,-0.012062637,0.57229286,-0.42825648,-0.017721057,0.40969557,-0.54238117,0.5680101,-0.26780823,0.15212509,0.542084,-0.40529266,-0.8386058,-0.4889816,0.006854979,1.369123,-0.2816092,-0.58607864,0.15330629,-0.33590826,-0.32843164,-0.104855485,0.5365702,-0.12230158,-0.19742829,-0.5354535,-0.00827181,-0.116903335,0.35431096,-0.09197047,-0.14869255,-0.37129515,0.67570275,0.12234545,0.74084854,0.026705356,0.15032856,-0.15894626,-0.32332665,0.09335272,0.60065144,0.3434868,0.17926455,-0.19533181,-0.08657711,-0.45499432,-0.1711738,0.01927963,0.7341219,0.36478317,-0.007273085,0.097348414,0.15058431,0.048740342,0.26464537,-0.16813216,-0.32575417,-0.369407,-0.008840561,0.4594559,0.61287826,-0.11336957,0.4030338,-0.010564135,0.2957039,-0.21283568,-0.32185903,0.49560282,0.8596887,-0.21132821,-0.29471117,0.41115144,0.5941973,-0.28857425,0.33195716,-0.5320337,-0.36728626,0.41224,-0.07801244,-0.36326593,0.14743276,-0.26425108,0.09570419,-0.617411,0.20588925,-0.43000075,-0.521541,-0.4197105,-0.06285111,-2.535553,0.19653003,0.005965948,-0.2560562,-0.47892725,-0.16177177,0.10709739,-0.5664268,-0.59420353,0.14617997,0.14386812,0.67098546,-0.11926671,0.1022533,-0.24737868,-0.48476788,-0.3020086,0.30585235,-0.014072271,0.4286661,-0.29789448,-0.21806087,-0.17248419,-0.17069787,-0.2181183,0.062598616,-0.5747187,-0.4165429,0.009165702,-0.32402822,-0.12311491,0.5468903,-0.3972584,0.11200324,-0.20667213,-0.015184125,-0.2782933,0.049846716,0.01979319,0.14439766,0.07488047,-0.11971469,0.22964859,-0.2551433,0.37569302,0.14506578,0.4928137,0.3851507,-0.032130416,0.18977903,0.3918404,0.56232494,-0.08404667,1.0046769,0.06629085,-0.0804429,0.45309347,-0.15467325,-0.45382273,-0.46689504,0.02153248,0.28315517,-0.25741002,-0.40157744,-0.04742784,-0.30700466,-0.7557574,0.38578466,0.16656177,0.20240006,-0.035629056,0.28742185,0.44639,-0.12510888,-0.030362936,0.07774896,0.030018728,-0.497227,-0.45312193,-0.6410313,-0.4044105,-0.11423133,0.77200866,-0.26155803,-0.038166575,0.12565368,-0.5171009,0.0499165,0.39016092,0.16320269,-0.0071535204,0.5153757,-0.015493354,-0.6908313,0.6251514,-0.32728034,-0.00825713,-0.29657567,0.27392828,0.41209015,-0.6253676,0.4403934,0.30355263,0.038338516,-0.2969926,-0.42036444,-0.11689789,-0.17716892,-0.13289684,0.16706046,0.3893269,-0.7034617,0.2642073,0.0059769154,-0.17311965,-0.66869724,0.42694885,-0.047407206,-0.19423126,-0.14414114,0.44453353,0.15391174,0.03356381,-0.10854716,0.16039771,-0.36158064,0.23157723,0.09382708,-0.06770084,0.040007703,-0.1830068,-0.27149928,-0.60096157,0.2973851,-0.38865444,-0.45534527,0.32287252,0.05594526,0.13515422,0.17959116,0.109245285,0.25699097,-0.30280316,0.11195656,-0.19788915,-0.19106759,0.5107127,0.31939882,0.64646566,-0.49042395,0.6012663,0.088073455,-0.054326456,0.40406844,0.25638768,0.30466038,0.10161199,0.54099834,0.15144484,-0.21078348,0.008026586,0.8580458,0.31162307,0.29888743,-0.015299926,-0.16874823,0.3216313,-0.08240093,0.107384995,-0.026816074,-0.68033856,-0.2869774,-0.2538991,-0.011437899,0.55872655,0.0658545,0.25412723,0.014037178,-0.1844031,0.05929504,0.07317562,-0.17475222,-1.1589068,0.29232457,0.13451275,0.9931687,0.32428965,-0.054453947,-0.021960616,0.7487699,-0.09169547,0.17434429,0.24367967,0.17679071,-0.52187544,0.57495797,-0.4202112,0.45697477,-0.049654834,-0.026212169,0.22251011,-0.0636964,0.4727646,0.8117394,-0.1820855,0.043430652,0.026816647,-0.44325912,-0.04664839,-0.37412417,0.017878298,-0.5459311,-0.2679269,0.57961106,0.5375942,0.3781047,-0.2477754,0.12139774,-0.049350165,-0.15108074,0.11882607,0.10259853,0.148762,-0.05292364,-0.5346502,-0.05343596,0.5923865,-0.30028293,0.09322553,0.1852418,-0.33879125,0.3148206,0.058775105,0.082200564,-0.11755859,-0.682541,0.21156867,-0.29896787,-0.5670823,0.24984677,-0.14742365,0.13889678,0.3302655,-0.016393818,-0.13096306,0.43614405,0.20572457,0.65084594,-0.124898784,-0.0781583,-0.32873347,0.110116884,-0.017366659,-0.27498013,-0.12081526,-0.25441185,0.15506288,-0.3942345,0.3821523,-0.049294554,-0.15675654,-0.20256864,-0.1152141,-0.009063656,0.55965394,0.023808774,-0.06222169,-0.09650911,-0.020038446,-0.23970912,-0.2172224,-0.053020112,0.21489999,0.24160844,-0.2553457,-0.17550263,-0.0915207,0.060836628,0.12875599,-0.24398209,0.515019,0.4166716,-0.012348865,-0.4403318,0.031142367,0.3219247,0.38802788,0.058115356,-0.027329365,-0.33115885,-0.4217706,-0.47656572,0.6715939,-0.04335136,0.34414798,0.15034246,-0.17802133,0.59813344,0.025712462,0.7531092,-0.013495367,-0.31931055,0.30449608,0.5027025,-0.015519211,-0.13758421,-0.3212967,0.89608073,0.28785992,-0.025512954,-0.045256574,-0.46502084,0.038118463,-0.009271363,-0.3293721,-0.100801595,-0.04531,-0.4517298,-0.121630535,-0.014376705,0.16827218,0.26645842,-0.18646568,-0.019220127,0.28379074,0.2311946,0.21362112,-0.6213583,-0.34402257,0.2830488,0.01970447,-0.13241622,0.07586905,-0.56994635,0.31306747,-0.7107906,0.12996951,-0.2705946,0.20490606,-0.40674564,-0.3564588,0.27709422,0.21077181,0.3399372,-0.57785773,-0.2734505,-0.4572398,0.3874367,0.2295163,0.26224363,0.46521303,-0.16215454,0.036647778,0.1630067,0.61276144,0.76291496,-0.07479633,-0.003048594,0.30909592,-0.5039149,-0.50069255,-0.1124484,-0.31308362,0.45091197,0.05744603,-0.035895236,-0.68757606,0.25213152,0.25368664,0.1163413,-0.08894067,-0.6260927,-0.27952927,0.19396551,-0.3170794,-0.2372447,-0.37484887,-0.15478131,0.4255633,-0.146808,-0.32563514,0.014422426,0.18285824,-0.18143408,-0.54547083,-0.085660204,-0.2876201,0.24616553,-0.05626993,-0.30184883,-0.4130346,0.11279547,-0.49957788,0.29192817,0.092984915,-0.3695188,-0.057249006,-0.34326145,0.087418206,0.82666427,-0.21271823,0.14037797,-0.47564065,-0.5680524,-0.6502014,-0.6175759,0.09574875,0.18898283,0.059440143,-0.48017251,-0.075991794,-0.27366108,-0.18573287,-0.044357188,-0.33440134,0.3159743,0.17007293,0.31288937,-0.11104668,-1.0980902,0.27978075,0.009793951,-0.08342747,-0.36487994,0.25594273,-0.15026794,0.9179717,0.10311249,0.0530982,0.17486045,-0.44777682,-0.015381116,-0.12522456,0.0650299,-0.6028293,0.42495447 +830,0.32811433,0.022411274,-0.69021904,0.0064756344,-0.25107765,0.15160863,-0.43367812,0.15901388,-0.07588506,-0.36752993,-0.02768539,0.17649105,-0.15493096,0.113235965,-0.2627414,-0.67686087,-0.0142487865,0.112897076,-0.41283953,0.5506057,-0.45829502,0.41117862,-0.012059794,0.058280595,0.276794,0.17898844,0.28097612,-0.0029743267,-0.31181636,-0.63028777,0.12493161,-0.02469011,-0.5993796,0.2790279,-0.05981602,-0.39694273,0.13911715,-0.37616083,-0.35063827,-0.63993204,0.4121133,-0.7045117,0.537892,0.036853235,-0.24304055,0.19558181,0.050096802,0.18931451,0.009501595,0.05587008,0.2754559,-0.35720998,-0.14287642,-0.27683914,-0.31005824,-0.36185426,-0.5295269,-0.018324612,-0.7147035,-0.016248453,-0.34334093,0.28842768,-0.45231247,0.038936835,-0.41859382,0.45908812,-0.38921112,-0.1063031,-0.055979803,-0.04883277,-0.0026015318,-0.72658783,-0.27885807,-0.06017006,0.0085872505,-0.17438914,-0.034124877,0.22761263,-0.026492719,0.22476739,-0.022747748,-0.10944852,-0.26677138,-0.31668854,0.35186943,0.52147907,0.062703356,-0.1457271,-0.19711874,-0.19821963,0.38530165,0.17708246,0.081641674,-0.12031727,0.054096203,0.04779557,-0.32286474,0.53868496,0.6046126,-0.21686462,0.08594705,0.28563794,0.5061315,0.2753909,-0.15469788,-0.06082896,-0.12245842,-0.34872916,-0.08729148,0.2555809,-0.12285332,0.50241786,-0.12378303,0.32909286,0.5365966,-0.3959831,0.1148076,0.09759935,0.103948005,0.0812804,-0.17416109,-0.2932365,0.32619703,-0.5434649,0.21322414,-0.31759965,0.93489033,-0.015055264,-0.4800362,0.29557288,-0.59255725,0.09049814,0.056076985,0.750365,0.35220733,0.43623975,0.09580803,0.62945426,-0.32071516,-0.039007943,-0.15014371,-0.29976112,-0.1015205,0.10726009,-0.12038299,-0.22583607,-0.14377004,0.011462251,0.097302906,-0.14836198,0.5449045,-0.3230469,-0.08948373,-0.016010748,0.7271897,-0.34821394,0.015023291,0.76735777,1.3045655,1.0510657,0.00057468965,1.0408276,0.014558544,-0.14558595,-0.47059727,0.11965818,-0.66468626,0.34450802,0.4519613,-0.21880534,0.35445037,0.114060566,-0.29987636,0.3646595,-0.35828206,-0.26824814,-0.10195058,0.23830758,-0.06162123,-0.017360257,-0.3502073,-0.17723332,0.28460523,-0.104915746,0.23703124,0.28372172,-0.57453686,0.21228684,0.17063253,0.9156853,-0.22156644,0.09206119,0.16288656,0.37632635,0.15546998,-0.07248923,0.14766341,0.2779125,0.34055567,0.0034048648,-0.7446675,0.108264975,-0.32515827,-0.5083123,-0.16718125,-0.26328433,-0.19442067,-0.018586231,-0.38481325,-0.11424271,-0.05188472,-0.36311814,0.20598346,-2.5039973,-0.06407921,-0.19505684,0.32837218,-0.16492952,-0.33414635,0.09909951,-0.45341322,0.49827576,0.1749367,0.4900435,-0.35203838,0.45885512,0.5692847,-0.29786947,-0.08253812,-0.649685,-0.08979429,-0.059185617,0.57527673,-0.16065457,-0.09391041,-0.063509665,0.08551406,0.5383113,-0.08893208,0.17765735,0.3047167,0.33158097,-0.037491914,0.32724416,0.22474366,0.5079216,-0.4866716,-0.14107858,0.4814673,-0.44717944,0.3416825,-0.17835118,0.14408451,0.39797843,-0.27597392,-0.7245454,-0.38118413,-0.28220642,1.5342841,-0.372749,-0.635957,0.102946356,0.1193521,-0.32188085,-0.08280727,0.35907826,-0.2360635,-0.14114788,-0.54144067,0.023864944,-0.26638657,0.39002985,-0.14169337,0.28416097,-0.41552523,0.57532877,-0.06216679,0.49554852,0.277475,0.4972394,-0.22838186,-0.3138886,0.084449545,0.9866857,0.49777216,0.07491862,-0.31348088,-0.16489506,0.033436343,0.03788303,0.116864175,0.62314737,0.71813744,0.10132299,0.1738015,0.31395486,-0.10114734,0.16072893,-0.097029395,-0.47242415,-0.2958352,0.019261297,0.6941,0.36482456,0.17351954,0.39056313,0.12654337,0.16650352,-0.46250412,-0.34544685,0.4070666,1.013269,-0.22290963,-0.30970466,0.69525963,0.64883393,-0.39819404,0.58105886,-0.6477708,-0.26883304,0.49799743,-0.09072092,-0.36793804,0.15125714,-0.36196205,0.07962105,-0.60248905,0.409603,-0.47216728,-0.77238214,-0.608256,-0.39806777,-2.9192674,0.105792716,-0.31883866,-0.17879272,-0.30136782,-0.33029065,0.24747565,-0.58792853,-0.40538543,-0.010245717,0.12643734,0.599935,-0.1919727,-0.016135685,-0.23733613,-0.29468197,-0.23227297,0.29397297,0.29315704,0.108562574,-0.23993836,-0.22024263,0.052671667,-0.15752527,-0.29544827,-0.081805415,-0.3165291,-0.22068428,-0.06737931,-0.33130136,-0.20446979,0.6295191,-0.4061558,-0.037215866,-0.18608035,0.05356974,-0.030578313,0.31245503,0.10238473,0.29679868,-0.022878526,-0.26739973,0.0064464393,-0.43443733,0.32158646,0.16185108,0.4029802,0.4258059,-0.21844317,-0.060550198,0.41417748,0.37875068,0.15773249,1.0363917,0.1091677,-0.09810213,0.33063808,-0.18854761,-0.43052304,-0.6882733,-0.1865486,0.13277437,-0.3540789,-0.40740484,-0.21522151,-0.1536651,-0.9267942,0.5573762,-0.03464308,0.28571394,-0.16519707,0.5349032,0.21179631,-0.043062337,-0.2101226,0.037863377,-0.022723423,-0.21238978,-0.32309788,-0.8747648,-0.3284151,-0.23646094,0.82173896,-0.14369659,-0.09857396,0.16224886,-0.2794604,0.21298553,0.03680911,0.22141767,0.13966522,0.4018336,0.22138348,-0.5571562,0.42403904,-0.2980023,-0.08215989,-0.46422327,0.0186758,0.79181534,-0.55876565,0.26792508,0.5738019,0.15503103,-0.1872608,-0.51893115,-0.016478041,0.18038934,-0.15205655,0.50791,0.4264156,-0.8251038,0.532298,0.07337119,-0.14358988,-0.5681794,0.5556541,-0.004958704,-0.15818729,-0.1414172,0.4632112,-0.12368771,0.021863183,0.029836755,0.36371332,-0.15861705,0.22486192,0.21584016,-0.19521914,0.14307752,-0.2937399,-0.35830528,-0.47877863,0.21087016,-0.49958712,-0.27075562,0.14302118,-0.18097998,0.056356784,0.40015042,0.010388704,0.4992428,-0.30542833,0.11255769,-0.034570135,-0.2611307,0.56934744,0.5385799,0.54343593,-0.44788817,0.6646865,0.09272982,-0.1579949,0.17561711,0.16108689,0.49572027,-0.0562515,0.4519007,0.09928762,0.101640426,0.25879624,0.7639526,0.41958082,0.5966381,0.10704965,-0.19690259,0.20849451,0.101061985,0.23235932,0.010222962,-0.50683665,-0.1582342,0.077884965,0.11623221,0.6145483,-0.013153624,0.4115044,-0.1975925,-0.03939092,0.16778596,0.08600195,-0.31090453,-1.18518,0.49554384,0.11107529,0.5932221,0.39308378,-0.014223296,0.1859804,0.39615992,-0.24435568,-0.08468112,0.14858483,0.48741797,-0.34934658,0.48421156,-0.48088774,0.42620865,-0.11047962,0.12358609,0.012984147,-0.22876756,0.56069064,0.8793303,-0.18951191,0.11952638,-0.044654887,-0.25243473,0.064994015,-0.25564277,0.33057445,-0.38608503,-0.18718995,0.7865884,0.31661892,0.42585927,-0.1621885,-0.030284861,0.20212851,-0.070721544,0.19630463,0.00077600207,0.1695897,-0.16271386,-0.47167698,-0.32827997,0.49524057,-0.110969864,-0.053476755,-0.028727086,-0.23059723,0.25647485,0.14230686,0.120985046,0.039665367,-0.6836545,0.2593456,-0.3230788,-0.6213375,-0.037494563,-0.34869197,0.18651792,0.2632387,0.074202195,-0.4166549,0.12762398,0.40027523,0.5344781,-0.17744574,-0.08129243,-0.41335818,-0.01861101,0.31899655,-0.2053655,-0.04233229,-0.2835225,0.23628336,-0.71538293,0.3208722,-0.4617223,-0.31793836,0.00473878,-0.1724828,-0.2781424,0.6342923,-0.05415597,-0.13457361,0.26836383,-0.2646976,-0.16421154,-0.27584237,-0.065619916,-0.042360082,0.075068384,-0.27745983,-0.21031523,-0.03627769,0.056572206,0.13033843,0.08559927,0.26029235,0.42085934,0.1903664,-0.5406399,-0.2743359,-0.07254785,0.57741606,-0.113540426,0.080165915,-0.39253992,-0.6026422,-0.20991924,0.57171875,-0.26919177,0.18120703,0.11991927,-0.41342017,0.7106674,0.07038919,0.9742798,-0.0005987516,-0.47569367,-0.09029953,0.79357326,-0.05414261,-0.17664768,-0.32360724,1.1670128,0.30408844,-0.22958826,-0.21033962,-0.4867005,-0.18180619,0.013958349,-0.2706098,-0.25446945,-0.11827762,-0.38009724,-0.07947779,0.108759515,0.3422391,-0.17877664,-0.053726196,0.03174706,0.60780436,0.17641903,0.40150362,-0.6871902,-0.047784116,0.38130012,-0.02383974,-0.19846691,0.21017522,-0.51659036,0.27832678,-0.75792885,0.05218106,-0.2131934,0.17988569,0.012083017,-0.3320925,0.366055,0.043167397,0.3048038,-0.45703968,-0.20342547,-0.11905242,0.24161886,0.2779086,0.25061876,0.68511677,-0.1602917,0.22287409,-0.09210526,0.49894235,0.98054016,-0.057788577,-0.08357441,0.16255021,-0.57832146,-0.7435001,-0.050145112,-0.48485246,0.13456522,-0.15092935,-0.48724762,-0.5843049,0.3391643,0.07557749,-0.050038822,0.020449363,-0.6772678,-0.20156458,0.067755505,-0.21480574,-0.36462653,-0.2225133,0.001063168,0.8045544,-0.24722022,-0.28461093,-0.14573823,0.45382687,-0.22456673,-0.53372467,0.027282171,-0.39496863,0.32774585,-0.09918638,-0.07942497,-0.03215345,0.14709982,-0.40232027,0.16970904,0.24175246,-0.14153963,-0.23726486,0.026005318,0.18098886,0.4279362,-0.21988586,-0.050089248,-0.39853507,-0.60687375,-0.7159604,-0.5440756,0.0054406477,0.07545814,0.12782183,-0.5345547,0.03862667,-0.20776406,-0.03810899,-0.112152845,-0.48983112,0.3796268,0.2222248,0.48138043,-0.119546644,-0.9044307,0.1998792,0.013233721,-0.31362838,-0.48959744,0.48396096,-0.23239261,0.525952,0.12027787,0.0646363,-0.021921545,-0.5693077,0.3358497,-0.21652725,-0.1765615,-0.7163441,0.24966857 +831,0.5750419,-0.29822773,-0.60871166,-0.19025686,-0.26031294,0.36867192,-0.21635354,0.166295,0.04942525,-0.64775664,-0.19790909,-0.30010775,0.068375506,0.42379984,-0.17670664,-0.6106411,-0.10300609,0.062769614,-0.59182113,0.3691419,-0.54216987,0.45895866,0.26644292,0.3342118,0.070514895,0.27470186,0.29738092,-0.12975176,-0.28917694,-0.058200717,-0.19319975,0.08344994,-0.79319376,0.10945574,-0.12211677,-0.41954878,-0.077479824,-0.3783412,-0.1318773,-0.70681137,0.24693976,-0.9270402,0.5016981,-0.028948503,-0.3244287,0.15738957,-0.12938948,0.36997846,-0.32766768,0.19711907,0.21912707,-0.2784643,-0.041242864,-0.28731292,-0.26955536,-0.60798347,-0.6142572,0.19194032,-0.60434824,-0.15803719,-0.15168118,0.117321946,-0.36024502,0.014708562,-0.19308138,0.21643983,-0.43030596,-0.14412607,0.28521737,-0.24249192,0.17494099,-0.39903593,-0.17568919,-0.16951323,0.26360753,-0.20136857,-0.30060938,0.07279261,0.37714416,0.5895626,0.053055055,-0.25215793,-0.28550124,0.025829608,0.21314432,0.57251275,0.061438207,-0.33399242,-0.3217413,-0.0635338,0.29299545,0.18671604,0.15506196,-0.44746128,0.016563343,0.071074,-0.29957813,0.28904286,0.49121195,-0.41320106,-0.2610692,0.45910594,0.5627354,0.08574451,-0.1223654,0.21244867,0.004616114,-0.47672424,-0.19216989,0.4078152,0.07718444,0.75298256,-0.21560873,0.22504722,0.6995286,-0.28120908,0.12651984,-0.21845408,-0.16621804,-0.18736658,-0.07787321,-0.20493713,0.29714224,-0.5196123,0.039922256,-0.42441615,0.80469745,0.22284043,-0.8161483,0.51267207,-0.50826526,0.16736913,-0.02789934,0.69668776,0.72388464,0.38254592,0.15540393,0.7340927,-0.6055278,0.12556502,-0.08844789,-0.4585702,0.037481673,-0.206898,0.008945365,-0.34547406,0.08562113,0.011754138,-0.053854108,-0.10802819,0.50256664,-0.4177301,0.026107516,-0.038463928,0.52895766,-0.45707455,-0.119887926,0.94860893,0.8155147,1.0224702,0.16729793,1.3994291,0.55574435,-0.13640778,0.046856754,-0.26806554,-0.56364524,0.1790197,0.30241475,0.32816252,0.5500647,0.08600492,0.0832487,0.5079642,-0.15489967,0.16583788,-0.11196073,0.036935575,-0.04345313,-0.048139714,-0.4766454,-0.15513454,0.082960464,0.026824066,0.0034573716,0.2965527,-0.1869032,0.61862266,0.21825825,1.5465573,-0.07196156,0.09894601,-0.110824145,0.23182826,0.17921911,-0.26903418,0.014741672,0.28054744,0.4501064,0.013294952,-0.5588869,-0.053883668,-0.15979458,-0.48368463,-0.22239871,-0.311989,-0.03589711,-0.3021448,-0.49435928,0.0017086182,0.1787934,-0.31943315,0.47551933,-2.247286,-0.32949552,-0.19864771,0.37891313,-0.27501518,-0.47289854,-0.24709003,-0.49214977,0.20124719,0.46993423,0.29009777,-0.7310275,0.4008473,0.3059903,-0.26436195,-0.17676386,-0.7471256,0.025962962,-0.194497,0.35909352,-0.09973999,-0.097348996,-0.1168886,0.14662826,0.6371011,-0.19754817,-0.09507696,0.07979105,0.56883895,0.19774994,0.6118221,0.25566167,0.56226504,-0.23441179,-0.059362598,0.47514644,-0.38297114,0.48782128,0.16381046,0.18400894,0.33982256,-0.5726407,-0.7850277,-0.70619136,-0.6045595,1.1791676,-0.38315335,-0.34160572,0.0077290833,0.06653648,-0.43760258,-0.15379985,0.42927,-0.08927912,0.01795071,-0.7795878,-0.121327765,0.09669944,0.13255328,-0.09693503,0.2500553,-0.21850537,0.6366763,-0.15431388,0.49768332,0.44431594,0.22077908,0.019515038,-0.3978929,0.10660461,1.0945708,0.33987042,0.1407236,-0.30852884,-0.29277235,-0.26618472,-0.13333875,0.19508564,0.42417237,0.87636167,0.1313335,0.09929048,0.38784027,-0.044758167,0.08048049,-0.124767914,-0.23518653,-0.07844807,0.0054361564,0.6056629,0.54358375,-0.14103104,0.5022197,-0.33694023,0.16083154,-0.16922936,-0.49830148,0.56746036,0.9087129,-0.073370114,-0.252029,0.4279916,0.4099397,-0.6219015,0.32641038,-0.6671253,-0.17217363,0.6572947,-0.16435345,-0.39181545,0.36145976,-0.34153876,0.2124678,-1.0441844,0.28582805,-0.018559124,-0.4241707,-0.58459777,-0.2922028,-3.6115935,0.2455362,-0.052555975,-0.24628446,-0.081953086,-0.34586987,0.36706644,-0.5080338,-0.5601137,0.017428463,-0.05240423,0.59512967,-0.0035633552,0.23295236,-0.43927917,-0.21570103,-0.32845113,0.21558587,0.15714686,0.22445562,-0.14278044,-0.3456378,0.074457996,-0.44784102,-0.3899184,0.04729157,-0.7030431,-0.713968,-0.18537886,-0.29784232,-0.28998443,0.7273303,-0.31767997,-0.094020225,-0.12559913,-0.120225064,-0.24421656,0.3577045,0.1544548,0.18865551,0.06770874,0.04739225,-0.14416255,-0.459436,0.19625223,0.16170917,0.14740571,0.459503,-0.26855007,0.28941676,0.5785453,0.6546427,-0.003290866,0.6837403,0.23914245,-0.0167091,0.3220878,-0.2893147,-0.25442615,-0.8404929,-0.36414686,-0.31296635,-0.4554586,-0.586996,-0.08912403,-0.29077703,-0.84467465,0.50802934,0.05479685,0.1347781,-0.12778881,0.46530262,0.4134958,-0.17582467,0.024528628,-0.12068597,-0.17417637,-0.5128843,-0.5382319,-0.6888893,-0.7547099,0.17957364,0.97627145,0.018965257,-0.30189732,-0.11338271,-0.30114082,0.18047953,0.16113259,0.18930832,0.22250427,0.3912678,-0.12255786,-0.68923366,0.45858398,-0.11274673,-0.27269465,-0.5175508,0.0023183057,0.8609253,-0.6546687,0.4561483,0.41255498,0.13818641,0.11178122,-0.43014708,-0.3127604,0.10840057,-0.2927794,0.484613,0.09099481,-0.635677,0.45213398,0.30427322,-0.12454205,-0.6442503,0.5356382,0.013133368,-0.023914158,0.14025046,0.31782976,-0.022389691,-0.03385038,-0.27188325,0.15035649,-0.5955192,0.123063885,0.5675937,0.10094959,0.3187508,-0.04496795,-0.24085209,-0.6512531,-0.09435543,-0.5658378,-0.21097258,0.0891575,0.043895762,0.24054368,-0.011246145,0.10646547,0.45656252,-0.37680846,0.0929907,-0.03694988,-0.15482426,0.29082686,0.42241123,0.24737807,-0.5486565,0.721846,0.016060421,0.1611789,-0.12772289,0.04729644,0.45149687,0.44433194,0.26733842,0.03156359,-0.1804239,0.15887675,0.658924,0.31625122,0.6318847,0.4085628,-0.26143977,0.32824248,0.3545613,0.34381086,-0.025245955,-0.16323288,-0.0049602687,0.048489183,0.19471373,0.38321605,-0.036238294,0.40892595,-0.19471721,-0.078117184,0.21547171,0.045341026,-0.11580556,-1.0010196,0.24978288,0.3030555,0.52040124,0.36725992,-0.07110847,0.17310672,0.34320834,-0.46998248,0.05727758,0.281,-0.029704938,-0.56831425,0.51907206,-0.6471229,0.43247604,-0.31040397,0.029831333,-0.016029255,0.12303317,0.5205908,0.97706306,-0.120241724,0.08223407,-0.12490296,-0.13931137,0.15274045,-0.5019459,0.047664557,-0.5140146,-0.3009119,0.7747431,0.3498159,0.41572037,-0.18248422,-0.11146567,0.07976328,-0.1044897,0.18042825,-0.018176079,0.13031492,0.03351854,-0.6448327,-0.37756613,0.5702029,-0.009329625,0.14909445,0.16955592,-0.5656331,0.3535706,-0.107425995,-0.004268161,0.0037521187,-0.7052166,-0.0735193,-0.45061466,-0.69381917,0.27214888,-0.32485124,0.2895305,0.2563192,-0.05358002,-0.3462815,0.17820574,0.21516253,0.8964841,0.0457013,-0.27607316,-0.41631746,0.16842867,0.5211951,-0.39826038,-0.023596676,-0.18075489,0.17373517,-0.54660165,0.4794646,-0.16720673,-0.3401176,0.033406306,-0.02745172,-0.062008176,0.5301739,-0.3090163,-0.11235608,0.19975519,-0.013328178,-0.18016113,-0.07923615,-0.31525534,0.28511852,-0.015897984,-0.09841783,0.18358564,0.013595939,0.049069416,0.3923953,0.22897355,0.29310983,0.37634993,-0.08301812,-0.420234,-0.05207434,0.016928937,0.41970465,0.22329584,-0.31756374,-0.26988187,-0.37958026,-0.22793119,0.26078835,-0.1242715,0.23778686,0.15137215,-0.5406395,0.811053,0.045074265,1.2549216,0.10990076,-0.42810312,0.07134843,0.49776655,0.06526653,-0.054962687,-0.36181682,0.8512272,0.49937662,-0.14838502,-0.20603666,-0.3930964,-0.38084576,0.18182942,-0.37807587,-0.1238125,-0.08644957,-0.64679146,-0.21798816,0.061920803,0.17988454,0.095685445,-0.057172365,0.22861668,0.18064702,-0.009143336,0.4593387,-0.50244755,-0.14964354,0.30401167,0.17313763,-0.13493581,0.08698956,-0.27510732,0.5387572,-0.69411033,0.13092084,-0.43460554,0.088726334,0.16561034,-0.26192316,0.22755113,0.144102,0.28993586,-0.3491261,-0.44247907,-0.36021355,0.6909076,0.23987664,0.39541906,0.6664166,-0.31263193,-0.1429117,0.21224162,0.41716224,1.4865507,-0.11937915,0.14872561,0.45363766,-0.41159248,-0.6198722,0.3467397,-0.3899261,0.36550993,-0.15109906,-0.3978315,-0.44335794,0.28225964,0.14089432,-0.030801306,0.15753531,-0.41304228,-0.28323954,0.5217764,-0.37037155,-0.35224232,-0.33504167,0.3547239,0.65590245,-0.44083112,-0.29412958,-0.09861655,0.23525958,-0.46698967,-0.39847192,-0.0027113557,-0.26225665,0.42535204,0.14301082,-0.24541105,0.13585906,0.2587239,-0.50430006,0.096812606,0.3229062,-0.43885168,0.07300043,-0.28280026,-0.13459526,1.0875059,-0.028201384,0.052350406,-0.7238115,-0.588733,-1.099419,-0.42643887,0.33115053,0.083303936,0.11377888,-0.4502035,0.019546509,-0.025473831,0.01598519,0.10904855,-0.52438056,0.41481823,0.23412177,0.5145727,0.013677342,-0.9033485,-0.029706508,0.08428347,-0.35164514,-0.5364547,0.52962077,-0.14427693,0.6359124,0.14856361,0.2318542,0.12780915,-0.57247955,0.3336206,-0.30532032,-0.06377115,-0.80293983,0.051284622 +832,0.3877919,-0.32045493,-0.29427102,-0.20586132,-0.18842432,-0.22387369,-0.07681875,0.583027,0.21970147,-0.4072994,-0.25000837,-0.1550462,-0.02387731,0.3003195,-0.13069198,-0.67263573,-0.15425783,0.20880279,-0.34655565,0.5220633,-0.4039793,0.18989556,-0.08174436,0.36424467,0.2347566,0.067390814,0.057877056,-0.23661104,0.064086735,-0.106361,-0.24109745,0.4805054,-0.43589833,0.14982884,-0.094905265,-0.26505768,-0.045554504,-0.5408328,-0.2719781,-0.9515326,0.38372695,-0.75192326,0.24435654,0.1989073,-0.2980986,0.39406717,-0.120738275,0.23023906,-0.3254137,0.07134776,0.13841325,-0.106443815,0.022519086,-0.12659547,0.0092558265,-0.23347682,-0.6084939,0.059167888,-0.10563184,-0.18699437,-0.16141853,0.20323928,-0.3532289,-0.10225247,-0.15483437,0.5454091,-0.40678474,0.04658934,0.17384055,-0.15922745,0.3204171,-0.5803684,-0.18741576,-0.16804299,0.23898707,-0.027987134,-0.15457891,0.30445555,0.26086164,0.3637076,-0.09145562,-0.18446292,-0.28520918,0.016594827,0.05204916,0.3577763,-0.14330214,-0.648133,0.039223187,0.009519264,0.029109292,0.13325521,0.047283046,-0.4473322,-0.27221224,0.06883974,-0.26478583,0.3877122,0.4466621,-0.22255124,-0.3194824,0.2771509,0.46922594,0.22174208,-0.050869428,-0.14298707,-0.01190686,-0.70367277,-0.080258235,0.12815447,-0.2603075,0.55061716,-0.21746686,0.23856552,0.6273645,-0.11196931,-0.13306652,-0.023790376,0.11885887,-0.066078536,-0.36772603,-0.32201883,0.3304976,-0.29235026,0.25476316,-0.20364405,0.98864925,0.109301895,-0.859915,0.37040645,-0.52318436,0.31477773,-0.21287936,0.59072846,0.56404376,0.38758177,0.46932486,0.71702635,-0.43679616,0.0014476455,-0.014841855,-0.34134468,0.010722239,-0.07017861,-0.18445747,-0.453728,-0.0103616025,-0.06407161,-0.09969035,0.083523855,0.20137654,-0.59637326,-0.0650971,0.041869245,0.70488137,-0.26869652,-0.033583824,0.7022493,0.8382644,1.1448355,0.103862,0.9972191,0.12247058,-0.14655222,0.33458328,-0.34674776,-0.8206049,0.29070094,0.304105,-0.12664968,0.032169893,-0.044401765,0.031040214,0.3649189,-0.4095408,0.046760302,-0.22528219,0.30903113,0.2024611,-0.115570635,-0.428659,-0.42632324,-0.12855607,0.112307586,-0.053800765,0.18842593,-0.21223491,0.23282051,-0.03691102,1.4525125,0.093768984,0.0114062335,0.108276576,0.4654404,0.13783291,-0.07436127,0.02430726,0.3179183,0.4566313,0.09017478,-0.6767738,0.21297154,-0.24000494,-0.5064069,0.026563283,-0.2790896,0.09075915,0.03346997,-0.35754716,-0.17555393,-0.2021313,-0.33217737,0.5309721,-2.634213,-0.20303807,-0.09382509,0.27157497,-0.17326976,-0.27005288,-0.093266875,-0.43664205,0.36944944,0.31590542,0.4891515,-0.75568545,0.24481773,0.40870592,-0.68319,-0.18118447,-0.7147751,-0.05988799,-0.03409081,0.3523104,0.12009366,0.21170448,0.030488024,-0.049986977,0.42576855,0.094277516,0.08690116,0.23286605,0.3409548,0.09657172,0.39669946,-0.08272065,0.4050267,-0.24959572,-0.12339478,0.17567253,-0.60245144,0.21202022,-0.05587388,0.09483528,0.5587461,-0.4899379,-0.77932733,-0.58252394,-0.28728634,1.2750543,-0.18747059,-0.37674582,0.41715115,-0.23643266,-0.071452506,-0.17658646,0.37690157,-0.23681197,-0.3213272,-0.77579916,-0.03577516,-0.044931073,0.30638254,-0.07078727,-0.20109114,-0.27366072,0.5583829,0.010980846,0.3156306,0.44936973,0.0348364,-0.40106323,-0.5695916,-0.111023106,0.7046241,0.27884498,0.06882183,-0.11395672,-0.1411898,-0.16619888,-0.0752598,0.13305861,0.52818066,0.7811126,-0.15169959,0.09189933,0.37150806,-0.011076518,-0.030632414,-0.13521266,-0.2142875,-0.041488048,-0.047163304,0.5372897,0.7660418,-0.252585,0.26473063,-0.095452115,0.2664463,-0.08212679,-0.29641372,0.534979,1.2896265,-0.14782672,-0.1556902,0.5344932,0.5007315,-0.3798521,0.4237789,-0.5221235,-0.059666608,0.46178925,-0.28477126,-0.46774483,0.03758641,-0.24118243,0.12688096,-0.75195843,0.3154506,-0.11644281,-0.40474895,-0.71427816,-0.009074972,-2.604659,0.15162691,-0.4049152,-0.22659768,-0.21896003,-0.10229635,0.042642806,-0.5294098,-0.54077643,0.10340181,0.23471148,0.585441,-0.05090322,0.12319643,-0.2749086,-0.10963358,-0.43851933,0.022844043,0.013358217,0.36196396,0.20760426,-0.4952747,0.06903873,-0.2126333,-0.37114292,0.14246272,-0.44272906,-0.3372273,-0.022301555,-0.6061583,-0.43042865,0.5686632,-0.17894319,-0.04249799,-0.15724304,0.038098074,-0.11562185,0.3186622,0.16577186,0.12739168,-0.11207254,0.019345481,-0.0130343605,-0.20429172,0.30419353,-0.036731787,0.17680332,0.3881828,-0.18353984,0.13754773,0.45866188,0.723979,-0.11895983,0.8524505,0.6188828,-0.06634804,0.22795552,-0.16834839,-0.2373812,-0.49832395,-0.32552704,0.07775232,-0.34381694,-0.42219397,0.0503788,-0.2541971,-0.74899393,0.41785035,-0.047360238,0.18419345,0.043466724,0.01756881,0.5721051,-0.10374848,0.1099674,-0.012562184,-0.1436731,-0.43072906,-0.19885129,-0.6726793,-0.2830456,0.16210835,0.9300712,-0.22058535,-0.039134577,-0.0387913,-0.29998425,-0.08144501,0.15900476,-0.19930363,0.25968352,0.22963484,-0.039065305,-0.6583506,0.48810384,0.13904826,-0.17460766,-0.3963461,0.24280247,0.5240689,-0.5352627,0.52240235,0.20537567,-0.10052934,-0.15501738,-0.6065273,-0.25879717,-0.07519733,-0.13002601,0.3494926,0.14517236,-0.54090464,0.45307624,0.42405832,-0.21982694,-0.7577396,0.34731495,-0.044838566,-0.43309656,-0.025198221,0.34832424,0.04888773,0.015585134,-0.10293896,0.22002088,-0.48400152,0.20008373,0.18637142,0.08255168,0.18432127,-0.074271925,-0.014607227,-0.88228375,0.017026471,-0.4309723,-0.2212785,0.33478248,0.17440912,0.028424181,0.07091619,-0.037759203,0.3886011,-0.14116001,0.10204939,-0.023830703,-0.049188,0.30696765,0.47552204,0.45538086,-0.40321591,0.5781298,0.17678696,-0.055313803,-0.04293196,0.0028843696,0.2916959,0.12167417,0.38193324,-0.11022311,-0.2572644,0.3026451,0.64112926,0.0956964,0.4438489,-0.047890887,-0.081405014,0.38973987,0.091232546,0.33454946,-0.06883431,-0.43169573,0.021524154,-0.15183128,0.105741754,0.46674237,0.0875503,0.3405525,0.011218016,-0.3918942,-0.043560922,0.30512545,0.02086693,-1.2110641,0.40024248,0.17763239,0.86221707,0.7060613,-0.07524841,0.021228759,0.67576444,-0.17291988,0.13660978,0.34592298,-0.0004650125,-0.5687598,0.6256422,-0.6706266,0.41169465,-0.060765944,0.0033234518,-0.09865671,0.03819014,0.31376442,0.47372642,-0.14191559,-0.06315193,-0.14518501,-0.36092874,0.28364405,-0.43030852,0.16566148,-0.44311193,-0.33460477,0.43014616,0.564972,0.25474387,-0.1707148,-0.019754572,0.21178454,-0.046024825,0.14507595,-0.03438247,0.0012428428,0.024414461,-0.7342638,-0.02325808,0.53109735,-0.05577223,0.037372127,-0.036029212,-0.24755533,0.22810483,-0.35370848,-0.18003327,-0.16303349,-0.67385805,0.06887409,-0.053810026,-0.28920522,0.48975378,-0.20984118,0.24093665,0.24282888,0.052484374,-0.3241434,0.07524335,0.09972135,0.7603142,-0.012926376,-0.16558418,-0.42115325,0.20871228,0.12297751,-0.1256941,-0.10865675,-0.119072035,-0.18600799,-0.34396803,0.52625304,0.103600346,-0.14484096,0.063678354,-0.128139,-0.047750887,0.5759272,-0.12510325,-0.1172559,-0.23421365,-0.17687154,-0.21083,-0.20470794,-0.17503849,0.42133623,0.2705872,-0.0017673866,-0.16086413,-0.14806274,-0.1927117,0.67717624,-0.021231445,0.3311732,0.17807955,0.028755363,-0.38660696,-0.21232532,0.050105877,0.42242038,0.119098574,-0.20569351,-0.22216953,-0.16232274,-0.34572,-0.01186624,-0.1487973,0.5430668,-0.076539405,-0.41076672,0.62903476,0.14047125,1.2522329,0.047410205,-0.27647394,0.10839018,0.5010819,0.033879887,0.022160295,-0.30130866,0.86741954,0.5327057,-0.22569558,-0.13891026,-0.29400972,0.022177907,0.18904355,-0.09481079,-0.095463045,0.02416911,-0.61046004,-0.28621924,0.21345884,0.21898334,0.1433461,-0.060142774,-0.1260177,0.25171122,0.07607806,0.5877789,-0.16779503,-0.07577492,0.10960584,0.21116763,0.18929537,0.05686438,-0.37684566,0.35914627,-0.45533594,0.33465284,-0.2416463,0.26505265,-0.35775694,-0.24228951,0.27244025,0.093368955,0.27918243,-0.3363234,-0.5162978,-0.23081245,0.539347,0.1229573,0.15706638,0.46450302,-0.34574872,0.15386778,0.0068045547,0.50469035,0.8986562,-0.15436147,-0.104979426,0.35923642,-0.37468782,-0.703184,0.42888567,-0.13240403,0.0053237355,-0.1651251,-0.14069541,-0.5246201,0.27642867,0.3275371,0.08917726,0.059615944,-0.67857254,-0.23733735,0.3646065,-0.37687805,-0.18936707,-0.34872216,0.24730743,0.6059711,-0.29116303,-0.5224132,0.04576474,0.043764196,-0.22657865,-0.51577914,-0.06685337,-0.5702472,0.32768345,0.14982282,-0.45656055,-0.1333203,0.07730871,-0.4706032,0.017445385,0.06343749,-0.26989385,0.08083599,-0.10365331,-0.16142677,1.0089059,-0.26013023,0.3648911,-0.5589041,-0.4136832,-0.884872,-0.14738987,0.75938004,0.18372943,-0.00036678405,-0.7141677,0.036621295,0.06486973,-0.41332272,-0.12222535,-0.36564952,0.45727172,0.13374224,0.27363995,-0.02830531,-0.66383463,0.014791085,0.19280455,-0.14586666,-0.47147936,0.42406756,0.07848411,0.8105673,0.0033681656,0.12182109,0.14368488,-0.25872046,0.10224025,-0.15621513,-0.28957605,-0.5445171,-0.010545345 +833,0.20133765,-0.07545114,-0.68413126,-0.12928554,-0.26805356,-0.17584808,-0.17553261,0.6802436,0.31869683,-0.29912886,-0.06696049,-0.10577522,-0.043785375,0.6668185,-0.28592333,-0.6392886,0.09612711,0.030656416,-0.46544883,0.5894194,-0.32279256,0.13545515,-0.15671268,0.5433145,0.25579327,0.27992412,0.046151392,0.050476816,-0.07432424,-0.15929939,0.085323945,0.30412254,-0.4013552,0.021207985,-0.17258857,-0.29587874,0.04309499,-0.43272966,-0.46855247,-0.8438418,0.32156193,-0.7558705,0.48512986,0.0382214,-0.3237962,0.13476077,0.27527362,0.4537479,-0.15367529,-0.27989888,0.15292045,-0.066599526,-0.005737642,-0.15676777,-0.40655696,-0.41623497,-0.5736384,0.048571434,-0.58238244,-0.19295035,-0.23606373,0.12240929,-0.33811718,0.00036409727,0.052012477,0.5110237,-0.47091615,-0.019215263,0.3202329,-0.12431781,0.31235796,-0.50296295,-0.18324447,-0.060406044,0.23982272,-0.13557789,-0.13885386,0.41418517,0.03467403,0.32361713,-0.08461087,-0.2246433,-0.45032597,0.009714897,0.09725181,0.40285873,-0.26199093,-0.4782157,-0.05742096,0.01692105,0.18344545,0.33122027,0.1581514,-0.13619897,-0.1355346,0.2269254,-0.14678866,0.4512695,0.59123,-0.094691426,-0.061364718,0.17674328,0.53692174,0.34045565,-0.24954574,0.024433833,0.0048892405,-0.6496217,-0.23421995,-0.22574475,-0.010645051,0.6550401,-0.05616526,0.30646625,0.62979627,-0.07843837,-0.072242886,0.10654155,0.022969475,0.059724662,-0.30613482,-0.058163088,0.25388893,-0.35718775,0.27524957,-0.10484875,0.5520719,0.13422069,-0.615235,0.32002264,-0.5804483,0.08385856,-0.053872652,0.49184692,0.58199537,0.48633355,0.38502708,0.7179025,-0.3813345,0.15513302,-0.07390526,-0.2733097,0.10236542,-0.3071861,-0.025528807,-0.4268433,-0.16882266,-0.09010252,-0.17281145,0.2786368,0.1487669,-0.5440487,-0.13088956,0.22670385,1.004969,-0.1739304,0.008345576,0.8695927,0.97347504,0.9707165,-0.098319165,0.9342883,-0.07914802,-0.12896222,0.27520198,-0.058563992,-0.8052796,0.2959666,0.30081302,-0.26135412,0.2988362,-0.09081283,0.079974815,0.5334032,-0.49378598,0.023018856,-0.13227405,0.24834622,0.10926676,-0.2533869,-0.40947574,-0.207937,-0.108073205,-0.017747484,0.055885587,0.3302182,-0.09113398,0.43849358,-0.17760111,1.5659605,0.020893238,0.06257881,0.20276079,0.64631975,0.2362984,-0.07547236,-0.18210846,0.19176611,0.10351796,0.24592239,-0.45748284,0.12755479,-0.32321894,-0.4712376,-0.080817476,-0.4081933,-0.1541532,-0.26346275,-0.59494984,-0.13971259,-0.16419882,-0.19293717,0.35325968,-2.8409843,-0.2139814,-0.081418276,0.28846362,-0.19823092,-0.24687687,-0.018342724,-0.36616328,0.5468402,0.28636456,0.5319609,-0.47041985,0.42690784,0.53096527,-0.5652778,-0.12356091,-0.53145874,-0.12831351,0.07816185,0.33067873,0.066947594,-0.011647976,0.09406637,0.27844578,0.41940588,0.03097303,0.040173035,0.20290129,0.42072275,-0.1797997,0.45319998,-0.11466527,0.43818635,-0.3985537,-0.21132992,0.27453855,-0.54141283,0.34814236,-0.10838974,0.16276413,0.33908132,-0.42765373,-1.0116035,-0.5450233,-0.11494211,1.0919865,0.04696665,-0.5179709,0.42029032,-0.6250778,-0.26530674,-0.10189472,0.51606375,-0.11614619,0.21473354,-0.77684623,-0.06313643,-0.30584532,0.08738459,0.020694604,-0.12097038,-0.34920514,0.56643736,0.010466477,0.32640678,0.4698016,0.10832525,-0.38566527,-0.44307584,0.0055387067,0.6628453,0.36893323,0.08990486,-0.19138272,-0.255702,-0.35506132,-0.19819608,0.059032567,0.59053886,0.70497555,-0.15402953,0.09034146,0.29228473,0.033730682,-0.07338765,-0.16348408,-0.36471403,-0.07306548,0.06708645,0.60486233,0.91865563,-0.2538964,0.34907436,0.10217316,0.4398773,-0.19367297,-0.36778927,0.43098375,0.7816902,-0.14916863,-0.38612545,0.6829026,0.529423,-0.30950844,0.42992666,-0.48886746,-0.3098144,0.4845255,-0.050096534,-0.5053369,0.17045179,-0.25812843,0.110364,-0.8548431,0.20202263,-0.34479234,-0.48104954,-0.61011606,-0.1786165,-3.2103734,0.05213125,-0.24712753,-0.24269725,-0.2003581,-0.056662466,0.052331284,-0.66657215,-0.8993943,0.06894557,0.024934752,0.786127,-0.19262174,0.035258822,-0.2321806,-0.33403683,-0.19327655,0.13712193,0.26131922,0.33166412,-0.04507367,-0.51212233,-0.36970183,-0.21287118,-0.6363554,0.108177505,-0.5814295,-0.41667587,-0.23607485,-0.66359526,-0.0007960063,0.72509044,-0.1878478,-0.04934201,-0.18707074,0.10344648,0.036193933,0.26762038,0.20779783,0.14887019,0.10824699,-0.038891308,0.27405494,-0.18594855,0.19323371,0.038228072,0.5724639,0.29056948,0.023481937,0.39236715,0.75164074,0.8143407,-0.18757719,0.8832457,0.4086238,0.009552569,0.25478727,-0.3164086,-0.3818104,-0.4120198,-0.37278828,0.24150005,-0.2892419,-0.32474962,0.0006290399,-0.37691244,-0.8218742,0.7407187,-0.055312976,0.098325215,-0.08029853,-0.04967285,0.37147897,-0.33729416,-0.12944281,0.034130383,0.022137014,-0.6647443,-0.2361975,-0.6141897,-0.5656352,-0.086880445,1.006886,-0.21275035,0.033393886,0.18141314,-0.36739784,0.035516184,0.09459035,0.06352966,0.055396087,0.24040483,0.053031437,-0.67283225,0.38845202,-0.3085212,-0.16036233,-0.5148484,0.2033565,0.6496829,-0.45569083,0.47712782,0.3682466,0.021535583,-0.20520848,-0.6727845,-0.12524782,-0.020952752,-0.042040862,0.39009413,0.19456142,-0.7466617,0.43263686,0.36877236,-0.33027557,-0.64895684,0.5185055,-0.21563156,-0.21686603,-0.11203994,0.38552797,0.13767602,-0.01802649,-0.2838895,0.2980259,-0.23514669,0.09119736,0.37816054,-0.088388436,0.3333804,-0.21591124,-0.035958007,-0.78588253,0.05424019,-0.5062795,-0.26815352,0.32844183,0.012338779,0.05122326,0.029755987,0.1528726,0.21350506,-0.34498942,0.09021522,-0.18244043,-0.36606297,0.3957663,0.44749025,0.71902937,-0.64259267,0.6500397,0.060164258,0.016715812,0.31032503,-0.034395657,0.49692884,-0.24671881,0.4307226,0.114092104,-0.021861415,0.10803909,0.8592418,0.14085798,0.35123953,0.1252055,-0.10526187,0.18748485,0.05078388,0.007450498,0.11694939,-0.6206007,0.21006542,-0.31044686,0.07321387,0.5685449,0.17384264,0.25641885,0.08003771,-0.48625457,0.07476009,0.1883612,0.036090955,-1.5771161,0.5217543,0.24022537,0.82494205,0.32684496,0.27724966,0.033484124,0.79348314,-0.0010996369,0.11193525,0.47447437,0.019073816,-0.53812766,0.54320073,-0.7376661,0.6263447,0.18814391,0.057908203,0.053329542,0.04863701,0.5667873,0.6857157,-0.06497066,0.01950667,0.16980228,-0.32572338,0.17155784,-0.51303154,-0.164586,-0.43233,-0.19734842,0.48854145,0.64552104,0.2419098,-0.18710984,0.052800205,0.25758883,0.009270404,0.26203525,-0.1950964,0.06648706,-0.13176678,-0.5161032,-0.15268539,0.43945444,0.021495122,0.25668043,-0.1325051,-0.008775537,0.30953965,-0.086040944,-0.18025912,-0.16572134,-0.66766137,0.17016652,-0.45287022,-0.5255728,0.34521836,-0.20757715,0.33092815,0.18612178,0.09359182,-0.44002965,0.73036605,-0.31747925,0.77794063,-0.18219215,-0.16723992,-0.14426062,0.1676378,0.25917152,-0.295916,-0.008653902,-0.35135847,0.1668213,-0.29719466,0.38850313,-0.16428629,-0.4340557,-0.08569161,-0.12522855,0.16515893,0.43968436,-0.26700166,-0.15247038,-0.11971578,-0.17047907,-0.1621301,-0.33645555,-0.04840718,0.32339412,0.16232806,-0.09884001,-0.15719087,-0.12878476,0.021178147,0.47583893,-0.25181657,0.36428878,0.38944003,0.06699208,-0.22844124,-0.15960601,0.1671275,0.601397,-0.04078519,-0.13108772,-0.44893157,-0.36650044,-0.45658728,0.34512997,-0.1329528,0.44744503,0.34004435,-0.18117179,0.61323065,0.123504326,1.2701861,0.035224494,-0.381128,0.26600224,0.44294488,0.12123638,-0.087368116,-0.3422751,0.83689606,0.41507736,-0.3888866,-0.14523473,-0.39052165,0.14917485,0.16780373,-0.20353658,-0.17082515,-0.08672344,-0.59458554,-0.08255206,0.33610263,0.29606026,0.2966618,-0.32022592,0.03418384,0.12202915,0.105138615,0.1835399,-0.39436594,-0.119417876,0.45840263,0.21872894,-0.05971888,-0.012133727,-0.6025604,0.37110043,-0.29080725,0.04005277,-0.2841141,0.27921125,-0.34506762,-0.38324922,0.13873205,-0.18569638,0.403987,-0.3271268,-0.22035037,-0.30551094,0.44497073,0.3526816,0.05102318,0.47737363,-0.27394506,-0.039826307,-0.07898405,0.604362,0.79336315,-0.30199987,0.011831359,0.27629504,-0.1884993,-0.6634209,0.12658095,-0.40679118,0.26815513,-0.1437442,-0.14211652,-0.7788564,0.16490534,0.1953345,-0.11469392,-0.04222492,-0.60125434,-0.20806943,0.09348537,-0.22460869,-0.25863177,-0.5286052,-0.0801639,0.51384014,-0.1160863,-0.3366285,0.24796306,0.20566805,-0.008962833,-0.39806682,0.08745839,-0.12676479,0.2603386,-0.021358628,-0.46658704,-0.18483712,0.0020300562,-0.4359516,0.30464488,0.17093134,-0.29178613,0.03020132,-0.1638212,-0.014731657,1.0390477,-0.23903844,0.4080293,-0.3488178,-0.5169306,-0.89704955,-0.38165548,0.3735983,0.120305896,-0.069769,-0.6814322,0.006478053,-0.07340254,-0.15015498,-0.098053165,-0.2507996,0.36605003,0.042240016,0.48290223,-0.31340873,-0.69288623,0.10797635,0.1358533,-0.23146598,-0.5191138,0.60779005,-0.077688105,0.76718134,0.007923986,0.12192956,0.2680031,-0.30198175,-0.06380589,-0.104591794,-0.19656643,-0.38057724,0.12616035 +834,0.5451335,-0.019092241,-0.5739606,-0.104259044,-0.2778795,-0.11617115,-0.30906492,0.41745886,0.3745169,-0.2614949,-0.1260756,-0.06071178,0.041664008,0.34833378,-0.033323288,-0.60925364,-0.09536266,0.2109665,-0.6638203,0.50676864,-0.54931235,0.30178395,0.011482,0.5366774,-0.11467229,0.2892378,0.1727991,-0.00050128193,-0.034523293,-0.029942347,0.02348423,0.28742677,-0.7423115,0.11954935,-0.18250953,-0.34838647,0.033958122,-0.45446613,-0.11906926,-0.68061376,-0.012417739,-0.77302676,0.63040674,0.17095917,-0.3036015,-0.16645986,0.22009657,0.29808787,-0.4063821,0.1971333,0.19642499,-0.05206869,-0.20848113,-0.3462258,-0.21703061,-0.58424944,-0.36631757,-0.06456319,-0.6142036,-0.2809691,-0.19627056,0.2817295,-0.18149346,-0.05603762,-0.23991984,0.29143855,-0.40974823,-0.043840863,0.29193652,-0.18175633,0.18965873,-0.5040356,0.0029680592,-0.121408775,0.32130414,0.100603156,-0.2955404,0.25275558,0.47430816,0.5829269,0.27516693,-0.27658617,-0.28623885,-0.1533858,0.20124143,0.29367408,-0.38883036,-0.29381981,-0.3081513,-0.107630566,0.30348647,0.41882282,0.21897835,-0.36400142,0.23869632,-0.014448483,-0.17566697,0.41645083,0.52764183,-0.448727,-0.28628266,0.16376558,0.6393025,0.27187568,-0.19500384,0.15245925,-0.022296969,-0.47367257,-0.25291634,0.09983286,-0.02161004,0.29594326,-0.086591706,0.07135581,0.7441173,-0.09588457,-0.10620124,0.073887505,-0.036996678,-0.08960902,-0.44019637,-0.24627678,0.22828096,-0.59144914,-0.008349135,-0.23427846,0.52494174,0.08305781,-0.7703692,0.3095703,-0.7415457,0.08736944,-0.07802708,0.5825415,0.84068084,0.5691256,0.3020991,0.8381179,-0.3674453,0.0921692,-0.06322658,-0.2785517,0.19269548,-0.30403855,0.117271826,-0.5280521,0.2308946,-0.13638732,0.020083042,0.10380495,0.4593163,-0.59322864,-0.23754331,0.39524025,0.89430076,-0.30775914,-0.13072342,0.6304919,1.232924,0.9871838,0.101517946,1.3339653,0.4092064,-0.26892582,0.16487029,-0.27241528,-0.6859808,0.17794225,0.45104745,-0.26201037,0.29585755,-0.18138899,0.062227312,0.31993037,-0.3299511,0.034143925,-0.02259879,0.3890527,0.16842291,-0.25325435,-0.3046653,0.019047793,0.09766313,-0.14112388,0.13070184,0.3163681,-0.2967038,0.21163781,-0.123458356,1.1553613,-0.11832519,0.12968454,0.045971274,0.5116189,0.39052424,-0.09835194,0.05069393,0.48350975,0.27811986,-0.06420366,-0.46531698,0.34605104,-0.3310099,-0.5355566,-0.057725843,-0.22578144,-0.1822229,0.15048908,-0.42289373,-0.17886159,-0.054738976,-0.14318174,0.40258992,-2.5577126,-0.28515232,-0.079010576,0.3159544,-0.23570201,-0.25840247,-0.21563624,-0.31220788,0.27709904,0.18470806,0.43542153,-0.46749213,0.60784185,0.587921,-0.51776505,-0.26398632,-0.5697357,0.05573301,-0.11118264,0.46578187,-0.1316885,-0.2925865,-0.12913933,0.21088345,0.72861016,0.07161368,0.2678315,0.5378564,0.4242702,-0.059698444,0.47586572,0.01253692,0.60701597,-0.3740124,-0.33670786,0.26032802,-0.3901518,0.25409424,0.023863481,0.057705007,0.57085645,-0.47561726,-1.1129243,-0.6629869,-0.22887428,0.93514943,-0.31718123,-0.4526266,0.2085626,-0.29426453,-0.1332772,0.22829737,0.58164096,0.12126536,0.20567106,-0.7758831,0.28770596,-0.08366036,0.2364199,0.050006848,0.059159867,-0.26969436,0.7777779,-0.095701665,0.6512369,0.3064697,0.21200365,-0.22941163,-0.34373173,0.053789534,0.9290664,0.34144,-0.014295559,-0.11362083,-0.26609397,-0.16814572,-0.21843185,0.12195657,0.5972709,0.7471729,-0.12119862,0.11063381,0.25421765,0.016521422,0.04557604,-0.18194617,-0.40550983,-0.116291836,0.2695469,0.27335244,0.66371024,-0.27239597,0.46489716,-0.1655748,0.28729013,-0.21600692,-0.56051004,0.71191853,0.5414616,-0.27860495,-0.044518955,0.6712647,0.46503448,-0.56436306,0.583936,-0.7899764,-0.2567619,0.4461044,-0.13358106,-0.42463508,0.22527887,-0.3160544,0.18177618,-0.8924092,0.34770107,-0.4305566,-0.3323038,-0.31761116,-0.23713945,-3.1869986,0.2991509,-0.117500424,0.042717263,-0.3216948,-0.0643966,0.41428667,-0.5878915,-0.7731866,0.10819379,0.1894529,0.47597063,-0.14958104,0.16441019,-0.26619998,-0.30198857,-0.13637166,0.33764368,0.104032986,0.2510531,-0.012556415,-0.382459,-0.13287094,0.07129065,-0.5258145,0.105760254,-0.63579494,-0.35140216,-0.20467259,-0.5212119,-0.09374441,0.5665321,-0.54519475,0.08112062,-0.31944275,0.15051065,-0.22589478,0.30305248,0.09520976,0.28073162,0.21322256,-0.06630896,-0.059683297,-0.23738518,0.23130694,-0.012235623,0.23761702,0.1402562,-0.095838346,0.10305248,0.4500968,0.8890623,-0.19324547,0.95383584,0.28069392,-0.23245849,0.40161273,-0.37707454,-0.20559205,-0.696421,-0.4133999,-0.29109973,-0.38758653,-0.48573992,0.2180168,-0.3093057,-0.8384342,0.5817142,0.02066196,0.310678,0.09560101,0.36892474,0.4224301,-0.30012205,-0.12739672,-0.16208237,-0.20948625,-0.6124991,-0.2500174,-0.6207049,-0.49749047,0.3084892,0.9189005,-0.33939725,0.07931647,0.064875096,-0.13396788,0.06729203,0.26569113,0.11658122,0.14218205,0.5704086,0.10228666,-0.6063846,0.1292657,0.06275673,-0.18040434,-0.565962,0.25082144,0.71765953,-0.95163167,0.8487904,0.2659876,0.187341,-0.01050509,-0.60861784,-0.2701245,0.10304849,-0.11211049,0.6094475,0.23688897,-1.0068517,0.4013027,0.6368085,-0.55006826,-0.73329663,0.28902647,-0.093069665,-0.09883021,-0.2584233,0.38766834,0.22108942,-0.15239576,-0.15399978,0.3207526,-0.4442899,0.23399507,0.12992924,-0.17083177,0.34518427,-0.16005525,-0.3366501,-0.8223039,0.05097935,-0.6482217,-0.35455805,0.35228527,-0.16303381,-0.22388,0.22766858,0.2354123,0.37460917,-0.26145434,0.20902522,0.016596574,-0.3984135,0.3640237,0.452582,0.3699187,-0.24895416,0.50904655,0.15431732,-0.31806052,-0.008008071,0.022542467,0.30776703,-0.10509924,0.3967877,-0.069439396,-0.16279767,0.35923192,0.6499478,0.09044867,0.38622475,0.055321082,-0.0345463,0.45621064,0.007621075,0.087151654,-0.07248225,-0.38496172,-0.045762602,-0.015805671,0.2170337,0.4673904,0.3778218,0.12729628,0.1600652,-0.108078994,0.012499461,0.2852967,-0.0047336724,-1.078753,0.39069876,0.16031271,0.83392656,0.5768107,0.06347652,-0.23093511,0.61115205,-0.14265361,0.021203332,0.4657653,-0.037591264,-0.4691815,0.7324734,-0.6301457,0.256957,-0.27138665,0.04431421,0.17693521,0.12040249,0.49783012,0.8571258,-0.16640083,0.02205825,-0.010965826,-0.084448166,-0.039684337,-0.18131968,0.07219201,-0.32367605,-0.46859604,0.8489063,0.33608928,0.4290508,-0.4108786,-0.14688186,0.16260011,-0.26421735,0.19989306,-0.15299727,0.0015232873,0.12157146,-0.37197164,-0.22982852,0.6462276,0.1955893,0.10247338,-0.087737136,-0.35125384,0.16394028,-0.28280523,-0.010273833,0.07548773,-0.5783071,-0.042103786,-0.3027491,-0.5497428,0.46659505,-0.014473705,-0.13468814,0.12370319,0.11618592,-0.06465228,0.56962115,-0.0625236,0.7124697,0.03870722,-0.2237965,-0.15641512,0.22835793,0.1056255,-0.24847497,0.049345758,-0.31162325,-0.025343575,-0.6096498,0.6118292,-0.101276174,-0.43350792,0.23777883,-0.08370919,-0.075608,0.4879419,-0.16109739,-0.31022966,0.052058097,-0.2951321,-0.38251993,-0.21077521,-0.1949543,0.27873573,-0.024198946,0.002835448,-0.13171102,-0.3217819,-0.16423506,0.46830213,-0.020746896,0.2192631,0.39389345,0.19030823,-0.2663134,0.15023495,0.27376702,0.41879824,0.09205316,-0.007355603,-0.14300968,-0.4976763,-0.43423033,0.046456516,-0.13004194,0.22267923,0.0938867,-0.3925143,0.97900784,0.13498427,1.3303267,-0.026663749,-0.3741047,-0.00245117,0.5280666,-0.18607427,0.0065873633,-0.3890036,0.87057006,0.76256996,-0.21485662,0.02013683,-0.517003,-0.29119813,0.22051191,-0.5430756,-0.06725682,-0.08672742,-0.72590375,-0.32557267,0.14134362,0.24320476,0.07164424,-0.060250357,0.13987456,0.08490651,0.06210752,0.3013075,-0.6497188,-0.2621252,0.21603711,0.512534,-0.100866064,0.05044718,-0.33804387,0.265223,-0.8213624,0.18448837,-0.48010466,0.07115932,-0.32321882,-0.5348491,0.036277153,-0.020609388,0.26900223,-0.21877326,-0.42677256,-0.01427055,0.42671487,0.046806075,0.11511051,0.7381394,-0.28976512,-0.022785535,0.13695966,0.54207015,1.1612915,-0.33591813,-0.19542393,0.34025797,-0.30920893,-0.7386315,0.37821978,-0.5968656,-0.057251792,-0.1077935,-0.48043635,-0.49101478,0.18726753,0.12462835,-0.032348495,-0.08613001,-0.6383561,0.020557614,0.25856632,-0.1376378,-0.1328783,-0.055169936,0.33651003,0.9623157,-0.2737016,-0.27344707,0.09065027,0.34039146,-0.35574138,-0.5883519,-0.09939223,-0.3863284,0.32940677,0.3064818,-0.3762713,0.09865616,0.061365385,-0.58732915,-0.013855373,0.26282027,-0.31458202,0.243656,-0.35764897,0.0045569954,0.7771409,-0.034656584,-0.039658573,-0.3869591,-0.5747249,-0.9612839,-0.2533912,0.2677744,0.11768882,-0.048594154,-0.557439,0.14354406,-0.1637999,-0.32832277,0.16612819,-0.4698652,0.25831458,0.078257285,0.66033256,-0.30597916,-0.97343373,0.11610855,0.2730501,0.12123306,-0.6783141,0.5607135,-0.18396422,1.0860903,0.03613825,-0.23065832,0.007914396,-0.5968185,0.18170181,-0.42821252,-0.028941255,-0.6048088,-0.01984295 +835,0.48022735,-0.31263334,-0.54866743,-0.11054576,-0.29562524,-0.08888834,-0.2365637,0.85166794,0.14825796,-0.5868873,-0.28402153,-0.1671702,-0.084020965,0.5250971,-0.52083135,-0.58488506,-0.0019068365,0.041767165,-0.35446164,0.5185465,-0.40790513,0.2287054,0.007033412,0.45605373,0.30158323,0.22079648,0.11791213,0.03397033,-0.18278939,-0.32247025,0.2396,0.07719488,-0.8301693,0.17008245,-0.31182313,-0.50811094,-0.04557453,-0.6743846,-0.42728645,-0.9101433,0.3459568,-0.8984023,0.5571575,-0.1115288,-0.32201177,0.008850721,0.20679626,0.45329267,0.061110735,-0.116664045,0.22494811,0.02683202,-0.0823451,0.08202822,-0.048964415,-0.45288622,-0.79237866,0.051602397,-0.43276092,-0.14072388,-0.21658078,0.2554072,-0.44173527,0.19918485,0.055725466,0.45940265,-0.4936529,-0.17213295,0.16656847,-0.013367349,0.27312472,-0.6580462,-0.17362756,-0.14528352,0.16154648,-0.21105026,-0.11531108,0.39992416,0.24671982,0.4767167,0.022434901,-0.21237785,-0.29318377,0.014647088,0.1465273,0.55731314,-0.2074173,-0.6133932,-0.11721497,-0.012988105,0.38915253,0.07113735,0.10884946,-0.107007675,-0.08633122,0.21225996,-0.3819374,0.5171906,0.53633577,-0.20440817,-0.10306161,0.23516545,0.6330968,0.40943357,-0.117097385,0.04824965,0.07835605,-0.6048666,-0.24593778,-0.12767865,-0.2550484,0.6912592,-0.20234539,0.3708272,0.67937756,-0.348675,0.09928929,0.27349266,-0.021502353,-0.24964935,-0.13196383,-0.29763815,0.21017376,-0.47333553,0.17661957,-0.2898696,0.7778569,0.18949333,-0.74207854,0.32722485,-0.61478704,0.05290284,-0.06711821,0.45297033,0.68607295,0.48247325,0.49259022,0.6575905,-0.20145911,0.007070704,0.0028873777,-0.3794769,0.30411524,-0.3113361,0.06633207,-0.38235903,-0.13405748,0.021500498,-0.14835088,-0.16854435,0.4912342,-0.5985567,-0.052130222,0.0063228826,0.8378229,-0.2660379,-0.057373825,0.8324044,1.044904,1.0724494,0.20300585,1.1149158,0.006578673,-0.17613684,0.2971159,-0.01256823,-0.8428005,0.44709107,0.4639083,-0.36365232,0.4113696,0.08667548,-0.0017905235,0.54180604,-0.54399276,0.042730335,-0.034364667,0.36827695,0.19267386,-0.3266016,-0.41067058,-0.19478382,0.06900692,0.12256992,-0.06496065,0.3408439,-0.04349978,0.4219685,0.15853293,1.4262925,0.007191409,0.05651979,0.05369158,0.51618284,0.021056293,-0.090486504,-0.09966745,-0.08824479,0.17768297,0.27775645,-0.51701415,0.115429334,-0.19535437,-0.56711227,-0.1287808,-0.29466966,-0.32138354,-0.29956883,-0.48844728,-0.111759044,-0.22667494,-0.12649404,0.25535372,-2.4716506,-0.23668355,-0.17603232,0.34268335,-0.27238283,-0.52767235,0.04247974,-0.61673784,0.51105314,0.3770155,0.5422442,-0.72832054,0.5519268,0.5040461,-0.5751546,0.04797152,-0.5724337,-0.22122802,0.046027098,0.39905217,0.17262843,-0.09799621,0.09371207,0.30901954,0.37678546,0.0009663213,0.14715762,0.08737033,0.48921144,-0.1811118,0.6037001,-0.22195616,0.4235213,-0.36119336,-0.12817231,0.46601486,-0.5814922,0.2622596,-0.17759424,0.15037583,0.3890855,-0.53027743,-1.0137502,-0.741752,-0.4176223,1.2415274,-0.043339897,-0.32667196,0.26840627,-0.3869935,-0.28248042,-0.17888665,0.38284466,-0.172847,0.101838425,-0.9531605,-0.0829235,-0.2925324,0.036489256,0.07570886,0.015774649,-0.4892873,0.7612177,-0.10621676,0.291467,0.3046735,0.05853523,-0.3771289,-0.50794584,0.072990365,0.8992803,0.5474668,0.24700724,-0.33374724,-0.13310987,-0.5755705,-0.05203197,-0.06395134,0.62465733,0.79507464,-0.095546246,0.038022865,0.09492696,-0.056974605,0.08072502,-0.18302688,-0.44014457,-0.094434716,-0.021805264,0.733477,0.857671,-0.34961888,0.33046433,-0.16412543,0.3652655,-0.12408176,-0.36262766,0.45752338,0.69934386,-0.047541857,-0.20331854,0.6914456,0.6412485,-0.33790362,0.5215748,-0.52656764,-0.5105402,0.3948512,0.027210461,-0.54062533,0.11058534,-0.38213474,0.21985413,-1.0521455,0.45868674,-0.537208,-0.31670582,-0.68818456,-0.18258025,-3.4017432,0.14869978,0.025322147,-0.35838196,-0.15391995,-0.15106788,0.27874932,-0.7795066,-1.0677778,0.14909893,-0.112946436,0.72524,-0.090146,0.12066839,-0.16086307,-0.37211597,-0.30578187,0.21951832,0.32636267,0.35807124,0.15829307,-0.48789856,-0.24345103,-0.33772948,-0.38141146,0.14737685,-0.7137277,-0.887122,-0.1755169,-0.5056981,-0.19174132,0.77580625,-0.16723245,-0.11350536,-0.09829421,-0.07240353,-0.22006096,0.48802623,0.18146177,-0.011251523,0.023252875,-0.11342957,0.28571314,-0.28439558,0.3583029,0.1483087,0.6341538,0.5090411,-0.14842747,0.4914139,0.7994527,0.8402611,0.037992314,1.0349143,0.28584257,-0.0026184672,0.16928965,-0.2547715,-0.39376107,-0.46966216,-0.14167285,0.035745677,-0.36281037,-0.2315581,0.06254331,-0.38546208,-0.83097875,0.62452227,-0.10242358,0.020326294,-0.016509715,-0.10122204,0.26807415,-0.13931064,-0.09565589,0.04623777,-0.022715092,-0.6682154,-0.34577033,-0.6892689,-0.59070885,-0.16222343,1.011674,-0.023020048,-0.026465328,0.043796904,-0.16389467,0.097348996,-0.0015505444,-0.086073324,-0.13689603,0.36760533,0.04399494,-0.8336277,0.47247553,-0.14409173,-0.07197959,-0.6087823,0.07127935,0.6337502,-0.63190055,0.33022618,0.48702306,0.14573711,0.06021334,-0.49790394,-0.024623942,-0.082417935,-0.1591095,0.34926635,0.25248754,-0.6498484,0.37933147,0.3269943,-0.35613474,-0.7063455,0.6548754,0.016794968,0.01075995,-0.20749567,0.32768533,0.22187072,0.10348234,-0.23106419,0.38201046,-0.40654027,0.22602268,0.24085855,0.02607047,0.44711658,-0.05166957,-0.09697118,-0.8691547,0.0077374172,-0.49219358,-0.34460914,0.26915744,-0.054821517,0.028648783,0.12100666,0.48591903,0.22537242,-0.3813763,0.0054172617,-0.0327767,-0.36099693,0.4607667,0.6161956,0.73080534,-0.494175,0.5622587,0.17305389,0.17506018,0.16728811,-0.11648657,0.47696722,0.031647217,0.32290268,0.3740781,-0.15305905,-0.016114695,1.0106711,0.22286168,0.591922,0.1139739,-0.12648441,0.16549875,0.071158975,0.21423556,0.059116866,-0.8341865,0.073166534,-0.050286043,0.009235361,0.6273202,-0.022502786,0.2264134,-0.046579596,-0.34131253,0.008908767,0.34678182,-0.092026025,-1.8642613,0.49274436,0.18192159,0.71207947,0.5888495,-0.078343265,0.3478452,0.7064827,-0.054468013,0.08366073,0.5440503,0.2013853,-0.64766926,0.5916876,-0.67667025,0.5338116,-0.018120164,0.013983196,-0.13100189,-0.04246809,0.47919732,0.70721763,-0.11960518,0.13078426,0.025824076,-0.34760717,0.07398335,-0.6040151,0.01661882,-0.37443352,-0.05458168,0.78215957,0.70105726,0.22862796,-0.116813205,0.08174289,0.041952875,-0.056646656,0.3075455,-0.1120928,0.011197939,-0.12398834,-0.73584646,-0.23254232,0.6803563,0.05009762,0.27767083,-0.13455433,-0.23079419,0.20363578,-0.042445336,-0.2253261,-0.054768242,-0.86598724,0.103212506,-0.51482236,-0.54726166,0.34425414,0.05962579,0.25039834,0.23290285,0.14586806,-0.4068093,0.3068841,-0.013762658,0.59357375,-0.10457024,-0.26356313,-0.17002493,0.17049727,0.2652886,-0.37274057,-0.15948184,-0.2669432,0.13461713,-0.16914037,0.48438227,-0.1362866,-0.43467614,0.039806113,-0.08946225,0.027106266,0.42916143,-0.22483067,-0.101642445,0.047128532,-0.016962625,0.012791357,-0.27023175,-0.12691565,0.25080332,0.23731782,-0.19300622,-0.112468,-0.18140258,-0.10599586,0.61749315,0.008424564,0.4347349,0.73850024,0.14243874,-0.65587586,-0.27230543,0.072126344,0.76283973,-0.05413536,-0.22328566,-0.58474904,-0.38722897,-0.28898457,0.40454915,-0.23275295,0.36798537,0.24494332,-0.5143575,0.5839758,0.19771658,1.3366737,0.1285738,-0.40393475,0.18425259,0.40639532,0.052796874,-0.16111471,-0.52794915,1.0010754,0.40464133,-0.42485774,-0.17177881,-0.5873381,-0.009551704,0.04070451,-0.20151792,-0.26555943,-0.03261992,-0.7433653,-0.20574483,0.35521373,0.3800526,0.032690037,-0.22082004,0.043210283,0.29645598,-0.022763748,0.5179821,-0.49355382,-0.23954368,0.4267494,0.26749623,-0.035122532,-0.04332865,-0.52076703,0.31548175,-0.5196984,0.043781463,-0.47977683,0.17494689,-0.2821431,-0.51899874,0.23736173,0.022929348,0.50024104,-0.15822841,-0.461998,-0.23656473,0.46814057,0.17597394,0.12468717,0.52015877,-0.14808689,0.028881943,-0.044310387,0.61538815,1.0702409,-0.20333542,0.21532327,0.2165688,-0.34187528,-0.49305093,0.2142847,-0.40008155,0.37326643,-0.09758219,-0.20997071,-0.8864237,0.17761415,0.2138218,-0.032722153,-0.07429708,-0.5295425,-0.40808746,0.34903497,-0.4150754,-0.32832766,-0.42954415,-0.032175876,0.68297505,-0.39097396,-0.18319511,0.015031121,0.32261264,-0.0990096,-0.405999,-0.2638037,-0.18166198,0.31101063,-0.042240344,-0.42500117,-0.102152914,-0.0042722225,-0.4253437,0.20991054,0.21654326,-0.47112954,0.06951893,-0.21732527,0.05396495,1.0339127,-0.116028816,0.24171066,-0.49602348,-0.41697234,-0.9055389,-0.28790405,0.383315,0.21038762,-0.07130699,-0.57606626,-0.13851187,-0.063190244,-0.17310056,-0.1081877,-0.46190417,0.4397127,0.113995545,0.66537774,0.03142288,-0.65333617,0.05438998,0.22687839,0.021630807,-0.63079983,0.6380597,-0.09510097,0.88366216,0.08668525,0.17733736,0.022073628,-0.47531813,0.0045303325,-0.09973383,-0.08703295,-0.7388035,0.3436048 +836,0.42923623,-0.27426142,-0.4594677,-0.13930877,-0.09435058,0.08589523,-0.15908219,0.6050778,0.06937013,-0.25259382,-0.090601206,-0.058118675,-0.114530705,0.31149858,-0.082405165,-0.47502878,0.055510897,0.16002303,-0.5206989,0.69853187,-0.2612626,0.19147748,-0.19806251,0.40678012,0.03710349,0.35510913,-0.03211439,-0.097579926,-0.1870621,-0.029262984,0.029547326,0.10894832,-0.4056432,0.19305064,-0.29212534,-0.23253495,-0.027285617,-0.3516695,-0.48321623,-0.67128366,0.10691937,-0.7048761,0.5366459,0.037419114,-0.33492962,0.1685461,0.09269322,0.29316086,-0.3416026,0.026475005,0.02773666,0.09981179,0.006310725,-0.18158713,-0.1428237,-0.5610924,-0.4402869,0.07115669,-0.4962915,-0.007066866,-0.10029469,0.115644895,-0.25491858,-0.16349323,-0.09494761,0.42024007,-0.3525453,0.07559864,0.23713274,-0.03669137,0.16463844,-0.5649618,-0.194851,-0.16585799,0.31496096,0.033824015,-0.12547724,0.35851792,0.20945151,0.50003487,-0.15227339,-0.082206555,-0.27922657,-0.09412669,0.036556292,0.429986,-0.18452603,-0.5949304,-0.09851883,-0.0473298,0.21036711,-0.033493917,0.11894799,-0.1173089,-0.081864096,-0.07637002,-0.26657346,0.29067937,0.6015867,-0.31304333,-0.24958465,0.42934614,0.5833741,0.23720144,-0.28560933,0.005618453,0.053510185,-0.352174,-0.118667714,-0.0025845964,-0.12169734,0.53477836,-0.046009973,0.2697758,0.59686565,-0.074827924,0.0856346,0.101893775,-0.018838238,-0.12947337,-0.10117933,-0.27954668,0.045836236,-0.27965963,0.05007933,-0.21061204,0.4477113,0.15109086,-0.71768,0.35165918,-0.49524632,0.14849177,0.052205857,0.4677077,0.75264496,0.3960546,0.2322771,0.5226307,-0.19059747,0.12211009,0.039208665,-0.21512906,0.13357712,-0.21229763,-0.06605049,-0.5742931,0.07770593,0.16812979,-0.23916319,-0.015807223,0.2092247,-0.48149928,-0.12071821,0.28716904,0.89507073,-0.2130194,-0.103509516,0.63322383,1.0339812,0.9603551,0.06305425,1.0327448,0.30350295,-0.24701948,0.3578419,-0.38897222,-0.6490101,0.23258752,0.35249048,-0.111623146,0.51569855,0.034035444,-0.19246082,0.4573761,-0.4016923,0.06447964,-0.2626316,0.057214793,0.086246885,-0.12053121,-0.42304662,-0.27215344,-0.20338467,-0.055705156,0.17039165,0.3215536,-0.22192033,0.35917524,0.0017093023,1.7401701,0.059506185,-0.0061769485,0.06628115,0.65205,0.1417258,-0.17816792,-0.016107686,0.33631885,0.3627461,0.07214319,-0.523603,0.24186355,-0.2551038,-0.5465459,-0.15520388,-0.3053061,-0.07377145,-0.13940836,-0.48690504,-0.1388395,-0.022357576,-0.19961093,0.330242,-2.928391,-0.15528962,-0.18624324,0.34272906,-0.22671418,-0.2123436,-0.18694565,-0.3515905,0.28660247,0.4292799,0.43135312,-0.6225943,0.49526584,0.32458866,-0.52938724,-0.064443514,-0.5599538,-0.06251896,-0.090789795,0.4567551,0.0283004,0.048696622,0.25882852,0.26061717,0.41358414,-0.1056631,0.034157835,0.19483967,0.35260475,-0.01747034,0.30799478,-0.093405694,0.37332132,-0.24959993,-0.16580422,0.23619206,-0.43517786,0.26678935,-0.06302509,0.1406314,0.44941092,-0.47499287,-0.8922129,-0.6620258,-0.04866406,1.108721,-0.20884241,-0.35993546,0.117077984,-0.51545364,-0.20755298,-0.16505295,0.5924748,-0.1277503,-0.035177425,-0.7638493,-0.01364156,-0.21488781,0.1687429,-0.019874116,-0.0009692709,-0.3853096,0.6625644,-0.048886735,0.6129805,0.18282524,0.15323094,-0.17267182,-0.44453132,0.15230341,0.67217326,0.37556687,0.05665303,-0.18351912,-0.24989888,-0.3418701,0.11106823,0.15634972,0.5003624,0.4974778,-0.0643085,0.16538332,0.16609268,-0.11191262,0.047845285,-0.1621104,-0.2156784,-0.11912294,0.11029541,0.6059218,0.73083574,-0.35425663,0.52207434,-0.1658071,0.21459743,-0.25031477,-0.45057878,0.63452953,0.75577337,-0.27883017,-0.19042355,0.55558646,0.6089027,-0.3230737,0.39887658,-0.7086872,-0.2983019,0.39602214,-0.16359352,-0.21660924,0.30545643,-0.29397318,0.24585596,-0.9889027,0.37200114,-0.25440624,-0.3679415,-0.65812624,-0.04403523,-2.9730365,0.13560958,-0.09752546,-0.3124963,-0.06527646,-0.13265795,0.3660444,-0.6180059,-0.4052847,0.14283219,0.1169048,0.5855643,0.032514673,0.01090413,-0.2680151,-0.321064,-0.287416,0.13763301,0.17066093,0.37087262,-0.08188281,-0.47820526,-0.20310524,-0.105482735,-0.25877383,0.094128385,-0.6165931,-0.3289419,-0.23719199,-0.4935962,-0.14908774,0.6079952,-0.12948106,0.06559126,-0.27151647,-0.018717997,-0.24811038,0.355597,0.11319787,0.014152909,-0.047509782,-0.09024815,0.15504226,-0.25565705,0.27674758,0.112130016,0.36730927,0.29724884,-0.12618665,0.205559,0.63340354,0.5878958,-0.1469581,0.6378111,0.579438,-0.12837899,0.46309173,-0.27056494,-0.10962944,-0.39270625,-0.3062604,0.06271212,-0.29878932,-0.5186597,-0.08793643,-0.49550867,-0.7769403,0.40323672,-0.17338131,0.063529395,-0.009188638,0.2018815,0.61211264,-0.15785065,0.056519426,0.051696405,-0.13849674,-0.4255656,-0.3407493,-0.5162793,-0.35549542,0.11817146,1.0718484,-0.202622,0.0041472437,0.031811003,-0.2983782,0.018030886,0.049045697,0.06520005,0.11487662,0.32913885,-0.2508647,-0.6267044,0.39726242,-0.2515617,-0.22136383,-0.43831107,0.17872575,0.5784513,-0.60157776,0.5299016,0.3177687,0.05047638,-0.17995715,-0.5009394,-0.11334933,-0.010540309,-0.105722,0.25006017,0.14321586,-0.75688666,0.3233453,0.22082734,-0.2507436,-0.52612555,0.4661377,-0.007296749,-0.27342588,-0.013919136,0.27128708,-0.048891257,-0.03437174,-0.43572202,0.20875518,-0.30810255,0.1605435,0.24730653,-0.083521485,0.33233395,-0.112663776,0.03792775,-0.6930524,0.020963876,-0.4347064,-0.32263774,0.346683,0.18245094,0.29618508,-0.060399756,0.009329834,0.30161896,-0.31820887,0.08886186,-0.030545648,-0.26560524,0.35021025,0.4108743,0.4554231,-0.5022188,0.663011,0.07832204,-0.15009648,0.0010846456,0.11575878,0.40422815,0.10755715,0.37418506,0.04206003,-0.22929856,0.25206554,0.7549129,0.2544612,0.55075055,0.11199136,-0.216394,0.25220543,0.0029627234,0.09337525,-0.062005077,-0.3668854,-0.063084885,-0.13313611,0.2563291,0.3780424,0.08566983,0.27529636,-0.11484971,-0.22761948,0.10791291,0.22197492,0.099624306,-1.398056,0.39771894,0.36519712,0.86322796,0.30044603,0.026915153,-0.03415346,0.7190328,-0.13427046,0.084579594,0.33599758,-0.07114235,-0.5425006,0.57252187,-0.6499938,0.4951795,0.06887771,-0.06487568,-0.049853735,-0.040225983,0.3920171,0.7756139,-0.09578156,0.051809654,0.013258268,-0.39862388,0.0016704401,-0.192199,0.2032335,-0.5269853,-0.2476894,0.5447694,0.51451075,0.33963272,-0.17262818,0.051913165,0.06673282,-0.14388786,0.20248026,-0.053880833,0.05547433,-0.15647787,-0.7868622,-0.15975729,0.5071334,-0.3247246,0.10541272,0.11612868,-0.32318908,0.21289498,-0.06622876,0.0855314,-0.006562466,-0.51084554,0.07568259,-0.2144502,-0.3066499,0.6567116,-0.22188698,0.29586658,0.15436253,0.05211418,-0.24070397,0.33837086,-0.01742936,0.6656847,-0.07940354,-0.22537549,-0.47152394,0.09138673,0.16197734,-0.2914094,-0.1516687,-0.38282776,0.038534716,-0.37224418,0.3881748,0.038381875,-0.20993294,-0.03918559,-0.16070274,0.08559019,0.45141086,-0.12262215,-0.22268753,-0.13192298,-0.096114956,-0.39973357,-0.098251946,-0.053082235,0.40332317,0.31185248,0.0022021015,-0.07050255,0.038818408,0.007901589,0.46654433,0.06821724,0.33038273,0.53080595,0.20017181,-0.27784312,-0.087209396,0.18584386,0.47936672,0.14324825,-0.021338169,-0.4264074,-0.42026728,-0.35151199,0.10361527,-0.1933007,0.28136608,0.17592779,-0.21289629,0.6744888,-0.0075253886,1.219989,0.07327895,-0.3570534,0.22702004,0.4196025,0.04271159,0.10875646,-0.43048677,0.9017306,0.5274294,-0.04818901,-0.13523698,-0.30451828,-0.1675542,0.11364821,-0.2305473,-0.23338103,0.013900518,-0.67015964,-0.2548037,0.16976981,0.19132315,0.25528303,-0.054805472,0.06419982,0.11337788,0.05858608,0.23168853,-0.4628889,-0.20561878,0.23914689,0.18727295,-0.01529309,0.10934622,-0.4420389,0.40031892,-0.5396146,-0.03790439,-0.33562025,0.14593953,-0.07835782,-0.36131805,0.17800769,-0.065692864,0.3862235,-0.34977537,-0.31192285,-0.23144825,0.5680167,0.07548874,0.1386172,0.45441914,-0.21585956,-0.04420321,0.094195195,0.53069264,1.0003542,-0.36737728,0.04103655,0.45968926,-0.3311935,-0.70723534,0.22915097,-0.30366543,0.34701443,-0.04541498,-0.22481495,-0.5432361,0.3818217,0.17513323,0.078611486,-0.14314954,-0.5162886,-0.26056042,0.22789502,-0.32356614,-0.22193053,-0.36935493,-0.005982741,0.54824907,-0.21588193,-0.32878482,0.059134007,0.20217942,-0.19282463,-0.51930964,0.010950676,-0.39974988,0.2450171,0.11161731,-0.31219962,-0.16388282,-0.04278775,-0.42511025,0.33434853,0.11138891,-0.38078254,0.07926916,-0.4319994,-0.15688889,0.9854403,-0.23011294,0.10094659,-0.5257037,-0.4806474,-0.71870863,-0.5430361,0.35282496,0.19997902,-0.061972,-0.582812,0.09172379,0.061414722,-0.026845535,-0.15934692,-0.28936476,0.38854158,0.14731869,0.35025206,-0.10549291,-0.79020816,0.2030252,0.025552472,-0.15332174,-0.5620048,0.47563255,-0.0015444278,1.0056552,0.124306366,0.2266745,0.24743108,-0.43937486,-0.17378168,-0.18623243,-0.15736605,-0.6476566,0.045214638 +837,0.669592,-0.34641063,-0.7271357,-0.1275101,-0.26873365,0.025583168,-0.3524104,0.50998753,0.14044212,-0.65467244,-0.034407355,-0.119208016,-0.06731855,0.3430974,-0.21991827,-0.5795744,-0.16084446,0.03592288,-0.45662433,0.5407147,-0.3647407,0.44008607,0.16869444,0.23454955,0.3082456,0.19083765,0.11063661,0.09227052,-0.38770422,-0.038855445,0.10622738,0.34657466,-0.70853096,0.19300124,-0.22902104,-0.4799595,-0.12884897,-0.38539633,-0.21624742,-0.7735082,0.3287337,-0.8678305,0.6047758,-0.2100868,-0.4257701,0.09556146,0.06565127,0.4766958,-0.029803833,0.026392126,0.16270116,0.16508299,-0.1193153,-0.012209777,-0.36958936,-0.47571805,-0.69836354,0.15083465,-0.55792046,-0.20021087,-0.114914276,0.17788313,-0.29565457,0.15030266,-0.13891767,0.6443157,-0.3333193,-0.17991835,0.3303395,-0.03439878,0.44094238,-0.7352382,-0.115374394,-0.24697559,0.19322583,-0.33853278,-0.23332705,0.23244376,0.42980728,0.5834984,-0.010813673,-0.2158057,-0.5141912,0.049022183,0.12712562,0.29802322,-0.2132385,-0.49260846,-0.16081175,0.086265296,0.38352653,0.15196864,0.28856608,-0.2549095,0.0668036,0.29299483,-0.27659282,0.6670541,0.42766494,-0.381868,-0.14760898,0.25668967,0.85484916,0.31587225,-0.1271005,0.14759092,0.00616077,-0.6082571,-0.087756775,0.35156882,-0.03522028,0.53088343,-0.026088757,0.17758504,0.63518196,-0.2794715,0.018564982,0.10003617,-0.08508174,-0.04097583,-0.3100782,-0.33609766,0.26162413,-0.4880425,0.04970503,-0.2970923,0.71919096,0.07069834,-0.852019,0.39321703,-0.5194089,0.017892996,-0.05040942,0.4930268,0.73897195,0.5951816,0.11495917,0.7094233,-0.48510304,0.008742278,-0.17418247,-0.3526969,0.06274212,-0.3264844,0.07503714,-0.50752515,-0.15834387,-0.10119298,-0.15254799,-0.014230998,0.6097632,-0.5421148,-0.08075058,-0.10782124,0.8391276,-0.3160702,-0.3089114,0.82518643,0.88644004,1.0112196,0.011938763,1.1152512,0.2493221,-0.19990733,0.30987814,-0.31043437,-0.61354727,0.47587445,0.45324865,-0.24497007,0.52166647,-0.027882012,0.118833385,0.5021731,-0.18817554,0.189543,-0.114351384,0.10200084,0.12562804,-0.22657862,-0.50101537,-0.12041424,0.059747245,0.020585267,0.058763556,0.1491923,-0.053923734,0.5755784,0.1963098,1.8063494,-0.2918981,0.139125,0.20074296,0.30794588,0.06339044,-0.21513796,0.022003952,-0.13057879,0.35912275,0.18049018,-0.52291846,0.12863263,-0.1747348,-0.49696288,-0.23463097,-0.33070418,0.021238025,-0.25282514,-0.5451707,-0.007329782,-0.008539303,-0.35232344,0.38654354,-2.3151398,-0.29908782,-0.18882759,0.24108757,-0.42026168,-0.7298743,-0.115505666,-0.55417407,0.44144967,0.30462503,0.44707,-0.6344278,0.4362782,0.36778107,-0.4307493,-0.05451586,-0.70693517,-0.1543866,0.010975056,0.19179782,0.003932174,-0.35584685,0.12147843,0.30013874,0.52150935,-0.29432485,0.018241467,0.26650095,0.40910423,-0.018718235,0.8527225,-0.0077308617,0.45757625,-0.29418212,-0.24036105,0.59726703,-0.2616936,-0.008013376,0.17409338,0.16811457,0.30625808,-0.5191476,-1.024796,-0.82669437,-0.45165253,0.97115046,-0.14749558,-0.5122689,0.10481666,-0.25670582,-0.41116586,-0.18032952,0.33177403,-0.008516264,0.07192176,-0.9240663,-0.04641246,-0.23528567,0.17908607,-0.09109688,0.060143176,-0.5051476,0.65200603,-0.034384917,0.34532794,0.49592736,0.19342607,-0.3564834,-0.64025664,0.07802798,1.3295354,0.3663022,0.1548211,-0.41490397,-0.18594806,-0.5295524,0.20301326,0.085292846,0.390532,0.7867129,0.09918801,0.027545197,0.16106148,-0.06514553,0.07945175,-0.11985739,-0.39009696,-0.2880622,-0.001344798,0.6621448,0.5444676,-0.096150555,0.69151247,-0.2481537,0.21532099,-0.15317683,-0.52636814,0.60317135,0.8960082,-0.19401798,-0.44987634,0.5525122,0.3420237,-0.24665152,0.48609826,-0.5671257,-0.2820954,0.35032266,-0.13714142,-0.43125382,0.3570505,-0.3829931,0.13116117,-1.1665803,0.19773522,-0.48130867,-0.2709055,-0.60041153,-0.2966643,-2.588324,0.27371246,0.01144858,-0.18702799,-0.05839807,-0.3022623,0.31731427,-0.6937626,-0.7600307,0.05671514,0.134833,0.7270659,0.084884755,0.002418955,-0.2312936,-0.24042276,-0.11382365,0.22756772,0.38580576,0.23033364,0.14013423,-0.52806306,-0.18209018,-0.32058683,-0.4468881,0.06396424,-0.6938204,-0.8001957,-0.20669954,-0.5323594,-0.43883452,0.72854704,-0.47594208,0.042777415,-0.07536702,0.0063642543,0.14371566,0.42357937,-0.053053323,0.20345488,0.13419929,-0.14161198,-0.016288936,-0.26227686,0.09928382,0.22374524,0.3674759,0.35437545,-0.44863757,0.50242454,0.68916,0.9826847,0.107456304,0.7370672,0.6632916,-0.040777273,0.37439433,-0.23703726,-0.19812982,-0.6940721,-0.12551534,-0.07886618,-0.48414987,-0.39075103,6.447633e-05,-0.43750185,-0.8517071,0.79612947,-0.1668388,0.05658018,-0.06549735,0.38959986,0.460186,-0.2444838,-0.049680028,-0.13776724,-0.18308856,-0.49067897,-0.5288582,-0.5888729,-0.8197971,-0.06745457,1.3007965,0.0253738,0.03939011,0.06348678,-0.11347934,0.08198336,0.18148318,0.016197715,0.170379,0.48167303,-0.11375085,-0.63029975,0.32828522,-0.12802269,-0.18335861,-0.57909447,0.12179411,0.7524199,-0.54568875,0.24225283,0.28996927,0.06345891,-0.20581953,-0.57158965,-0.016090421,0.12921208,-0.3470702,0.52725416,0.19986653,-0.6365868,0.40720552,0.39546436,-0.23003021,-0.69372165,0.65297717,0.20257537,-0.10291322,-0.06507945,0.39068764,0.12189637,0.0442759,-0.29246932,0.22713037,-0.454907,0.09231586,0.37926522,-0.068095095,0.36253324,-0.23207916,-0.17261927,-0.72902656,0.1544447,-0.45994267,-0.41285577,0.24479093,0.08673759,0.23170736,0.2824778,0.10168428,0.46078864,-0.34664047,0.045814347,-0.12268143,-0.26397568,0.35719696,0.46088588,0.38549456,-0.4881587,0.40259698,0.011026112,0.030751593,-0.12421752,-0.021059068,0.53569347,0.039210018,0.2310904,0.110144466,-0.14561293,0.2580286,0.7930927,0.19414835,0.49938947,0.053561892,-0.2625757,0.05828586,0.050099365,0.22541708,0.020208208,-0.5700009,-0.005057462,0.08971299,0.11968325,0.57428837,-0.05527153,0.23022327,-0.3066101,-0.40531,0.048903372,0.17424367,-0.13576443,-1.4576592,0.39103082,0.20339395,0.79143035,0.38683465,0.017863575,0.16129923,0.49431324,-0.27488622,0.2174251,0.38250795,-0.053321667,-0.46070063,0.5686958,-0.70883334,0.4319376,0.031880658,0.13989298,-0.07984562,-0.102348454,0.540471,0.80861783,-0.11415787,0.14666146,-0.13069418,-0.11547623,0.0660304,-0.3916314,0.12424843,-0.4290657,-0.12744644,0.85381,0.4126487,0.4103885,-0.035884786,0.015131899,0.17733027,-0.24015665,0.18048249,-0.25097033,0.07333896,-0.035429064,-0.53326833,-0.23327151,0.5550378,0.37809297,0.042051084,-0.033948023,-0.27552015,0.17433567,0.078076705,0.017786857,-0.13533898,-0.7037134,-0.1072572,-0.6499317,-0.3488169,0.43184298,-0.10009925,0.116359755,0.19244266,0.07512197,-0.38164252,0.46523038,0.1464325,0.7106848,0.004074947,-0.19309276,-0.3687589,0.11026597,0.25589272,-0.3342956,-0.16678019,-0.24552996,0.2856811,-0.7058881,0.28344026,-0.00060403347,-0.4776924,0.037260536,0.05627064,0.034136925,0.44848588,-0.35390118,-0.039139587,0.104571424,-0.03147314,-0.025413794,-0.33050504,0.055394463,0.27664375,0.12411176,-0.039793238,-0.08309914,-0.11515465,0.010572505,0.39458168,0.14690647,0.31695664,0.59632176,0.2465442,-0.5121371,-0.008160353,0.37251064,0.60029846,-0.006435162,-0.16787173,-0.5094922,-0.317508,-0.32815933,0.43449694,-0.12084527,0.27645028,0.057936404,-0.481464,0.8960108,0.098167725,1.4258448,0.019264508,-0.5024432,0.17416124,0.42134923,-0.039173607,-0.07630291,-0.5442328,0.918186,0.49275112,-0.05945375,-0.12796474,-0.4286548,-0.05364519,-0.046803202,-0.24056624,-0.15453915,-0.24849387,-0.6606293,-0.30251357,0.2955344,0.30752736,0.08606086,-0.1789705,0.23656793,0.17479089,-0.12082607,0.38582236,-0.44083956,0.014677814,0.13062814,0.37327814,-0.1447301,-0.054141838,-0.49574706,0.32972315,-0.66976535,0.10292261,-0.41881835,0.21229228,0.048871074,-0.36523777,0.27990285,-0.095658936,0.30677974,-0.32998678,-0.45420888,-0.2996859,0.59668165,0.0337153,0.14633827,0.7053918,-0.19797726,0.22686593,0.013201336,0.4516633,1.2480983,-0.16438745,-0.035469815,0.27833888,-0.23474291,-0.4956574,0.2891599,-0.3788193,0.52452177,-0.16156875,-0.22091551,-0.47870985,0.19227448,0.18849452,-0.037074026,-0.04318484,-0.44151497,-0.20591617,0.2900856,-0.41523784,-0.24670427,-0.3088114,0.052089628,0.5350366,-0.37224838,-0.33035153,0.019142976,0.44616222,-0.14405702,-0.28988448,-0.11991276,-0.2791932,0.26091647,0.2156746,-0.318797,-0.07344155,0.06863586,-0.48927882,0.09289854,0.49227524,-0.40093157,0.025467504,-0.22734505,-0.13450575,0.9346519,0.07109773,0.118304715,-0.46210563,-0.46410143,-0.9811869,-0.27497196,0.27026546,0.14328569,-0.029633526,-0.7943733,-0.014514113,-0.29195347,-0.0053412276,0.062841214,-0.33873805,0.4229645,0.1355825,0.6225846,-0.24926907,-0.71403843,0.07293034,0.16893181,-0.10634224,-0.5485572,0.5626784,0.016595948,0.82827026,0.049568407,0.26085898,0.33470994,-0.6881837,-0.09980893,-0.23767088,-0.11094477,-0.7657524,0.004652397 +838,0.3109862,-0.002392888,-0.471386,-0.18875723,-0.1317261,-0.109850265,0.13750905,0.47171685,0.3425533,0.15049928,-0.16923542,-0.017914439,-0.051596776,0.57346183,-0.13906388,-0.8530466,-0.09407631,0.1403677,-0.65225315,0.5610188,-0.39651987,0.325464,-0.10289347,0.51068074,0.29056624,0.27086797,0.19667298,-0.042618286,0.05545118,0.12621559,-0.27917907,0.37516046,-0.580705,0.2054054,0.013713419,-0.22563134,-0.060457766,-0.36515045,-0.3521496,-0.74293804,0.50518686,-0.64855236,0.6507111,-0.11166135,-0.3583062,0.10334525,0.06881696,0.3304097,-0.55048686,-0.14267443,0.0052767894,-0.021715418,0.053105336,0.092742324,-0.2064529,-0.28169215,-0.6171176,-0.07151427,-0.48850223,-0.10084804,-0.2911233,0.15167524,-0.35912633,-0.12036812,-0.09677843,0.47382703,-0.4249598,0.20415513,0.2944593,-0.146907,0.1083023,-0.4183012,-0.11632424,-0.07914283,0.2643863,0.10317635,-0.31036064,0.44058552,0.41902518,0.35755086,0.06311491,-0.13406645,-0.10661196,0.045580838,-0.050151944,0.49815974,-0.11801069,-0.41048327,-0.20876312,0.09552428,0.23434855,0.29956487,0.07873074,-0.40557063,-0.003501296,0.103958555,0.0073256493,0.24059756,0.48351085,-0.15063684,-0.33194438,0.5275199,0.2059058,0.28439102,-0.19885635,0.22238106,0.019768728,-0.5063519,-0.22659881,0.019638628,-0.13153061,0.6067217,-0.077098586,0.23012221,0.82029176,-0.11650894,0.09696471,-0.1413492,0.069919825,-0.25279352,-0.2640535,-0.12723123,0.16768897,-0.48249903,0.123465024,-0.10545371,0.82732147,0.21980505,-0.8229131,0.31116557,-0.50121266,0.22747149,-0.27003738,0.5773112,0.9385031,0.31042668,0.41799188,0.81041336,-0.5518299,0.032830656,0.27089262,-0.557862,0.24846365,-0.10500831,-0.112266995,-0.5375967,-0.19310898,0.18950486,-0.07923216,0.18396373,-0.02726014,-0.49340343,-0.15092817,-0.09999768,0.66371995,-0.39585093,-0.12925938,0.8420863,0.97346467,0.8550275,0.011979676,1.2952644,0.3013661,-0.1850167,0.36062106,-0.26977122,-0.70813876,0.079204366,0.27228236,-0.9060171,0.4465491,0.03181426,0.06855099,0.3579425,-0.2476749,-0.026553592,-0.014462195,0.17990701,-0.149779,-0.22106701,-0.3866664,-0.29568443,0.0648052,0.14062403,-0.046804547,0.35485777,-0.22553217,0.51110655,0.09231665,1.4686288,0.2683331,-0.029895253,-0.08200941,0.40107846,0.23172313,-0.2455128,-0.22958072,0.32170108,0.58985114,-0.05433101,-0.5837062,0.029132793,-0.37131763,-0.32491186,-0.13339297,-0.42057905,-0.049483176,0.022352358,-0.3290353,-0.17680086,-0.011606827,-0.2227938,0.4846309,-2.8741245,-0.16889167,-0.09255516,0.28110075,-0.20491998,-0.20570499,-0.28638896,-0.43353948,0.1665984,0.4023367,0.3561089,-0.7643514,0.1899214,0.27998394,-0.41563657,-0.1803929,-0.5750454,0.006850645,0.11922037,0.3291777,-0.19901021,0.007791785,-0.02097609,0.26932225,0.5157184,0.26531947,-0.0072530224,0.12963478,0.46570876,0.07278478,0.36750433,-0.028344588,0.58135617,-0.020314068,-0.071710296,0.25033987,-0.18417446,0.4698956,-0.10730215,0.122706205,0.44184133,-0.48259208,-0.88064,-0.42615283,-0.24963085,1.188696,-0.5811642,-0.14803964,0.32925215,-0.22926508,-0.13649218,0.11476474,0.4329587,-0.16460429,-0.1809768,-0.6531506,-0.02452592,0.007557126,0.05802756,-0.049180627,-0.0067721927,-0.1571985,0.43717417,-0.07686031,0.528386,0.39953986,0.1691646,-0.2268774,-0.6652941,0.11626771,0.6371313,0.36982217,0.06778487,-0.12850635,-0.111109994,-0.36751625,-0.26462308,0.16029912,0.53286284,0.7708962,-0.06443229,0.14475922,0.33147463,-0.03705305,0.06698519,-0.03394197,-0.28497532,-0.06401706,0.03556775,0.43848157,0.7343991,-0.28460997,0.41022256,-0.033999752,0.19510044,-0.018044418,-0.65526,0.7883777,0.90134186,-0.21109958,-0.22627664,0.54374677,0.27700457,-0.25727496,0.39632115,-0.4294065,-0.012637173,0.7851469,-0.1276929,-0.32053128,0.13605158,-0.17242962,-0.052745953,-0.9725185,0.09309146,-0.11006808,-0.5077431,-0.42013064,0.11708262,-4.0668316,0.08957038,-0.31203738,-0.16815472,-0.25098813,-0.07278641,0.38735798,-0.7041006,-0.6756625,0.22280449,0.11298915,0.55481464,-0.07595777,0.1669961,-0.28988487,-0.23240674,-0.20818675,0.02501095,0.15451148,0.22422071,-0.023138842,-0.4865911,-0.1073666,-0.11031017,-0.6400202,0.09731451,-0.4498109,-0.5603089,-0.10985244,-0.7796114,-0.22586016,0.7653413,-0.33873656,-0.1732723,-0.16098541,-0.034491528,-0.23079018,0.2700609,0.06349535,0.129357,0.04860499,0.078770384,0.04063469,-0.25546533,0.26129162,0.025234714,0.5244918,0.20715255,-0.12657996,0.26691294,0.6290052,0.50393796,-0.16152997,0.67300075,0.4419463,-0.0491569,0.16273877,-0.37067834,-0.22920202,-0.6125748,-0.46197307,-0.35405204,-0.41786125,-0.3471928,-0.17969008,-0.4107205,-0.87845975,0.37471664,0.014851253,0.4740641,-0.16862442,0.07470403,0.40645924,-0.07690064,0.17313342,-0.13404758,-0.2728291,-0.6383858,-0.14987364,-0.6549384,-0.6825997,0.4357529,1.0635337,-0.29314333,-0.15523513,-0.1357449,-0.43290326,0.07031492,-0.029494345,0.013567097,0.3222396,0.24024518,-0.25176504,-0.7362237,0.3388665,-0.17149253,-0.057367127,-0.8079402,0.035897765,0.5299956,-0.52607566,0.5362215,0.13527042,0.055625755,0.0846867,-0.54390866,-0.35319242,-0.0076208613,-0.06626522,0.6028221,0.31795985,-0.6035735,0.43220064,0.2636497,-0.13098453,-0.5822621,0.49455383,-0.045145016,-0.03509532,0.11705986,0.26932126,0.019641012,-0.13753806,-0.0019770067,0.2983467,-0.4573263,0.30762485,0.28969762,-0.041519444,0.43807468,0.14215018,-0.13579613,-0.62664974,0.025748715,-0.5347087,-0.18830983,0.16644412,0.12430576,0.2823265,-0.03714228,0.11008855,0.32478884,-0.2612891,0.18997681,0.04737072,-0.22900121,0.28361598,0.5650435,0.37103423,-0.45063317,0.42801285,0.1619875,0.026790181,0.08481515,0.2257836,0.49964786,0.35961667,0.2463913,-0.024553647,-0.3292712,0.11218367,0.64245915,0.08511445,0.25298622,0.038299005,-0.056026686,0.23445283,0.15349732,0.27303082,0.28549862,-0.30644572,-0.100535594,-0.12093755,0.2583206,0.6199625,0.22542076,0.2206515,-0.031505823,-0.36479712,0.19800492,0.047930166,0.07214516,-1.231545,0.41437447,0.33419085,0.62759894,0.5116065,0.11128259,-0.14071685,0.44877517,-0.16188265,0.18791078,0.49873057,0.023344418,-0.60453445,0.6144555,-0.58717513,0.5500352,-0.0022258672,-0.055489153,0.20671809,0.29909113,0.25094908,0.9356931,-0.025240803,0.056250155,0.07816506,-0.28212443,0.088871785,-0.43726742,-0.051466767,-0.6231801,-0.18657623,0.58480567,0.5177557,0.098753504,-0.3218304,-0.113792084,0.010624598,-0.16760647,-0.117854275,-0.13134187,0.06460748,-0.1003611,-0.6068538,-0.395494,0.5364585,-0.008712356,0.14986058,-0.042875696,-0.17481367,0.32967445,-0.28637162,-0.12303165,-0.10252603,-0.7275955,0.008734484,-0.21253811,-0.3362707,0.54735774,-0.44160688,0.26778415,0.16063696,0.025533607,-0.32811105,0.25929776,0.01347511,0.82126474,-0.23359966,-0.12870233,-0.45667347,0.15051773,0.36944523,-0.19882274,-0.18400073,-0.39527178,-0.14546305,-0.39048874,0.30603558,0.05765788,-0.15304156,-0.19475758,-0.029269822,0.06017378,0.3511466,-0.26635155,-0.0522888,-0.20504348,-0.20522106,-0.4283793,-0.19924755,-0.3905253,0.20271973,0.256052,0.144158,0.047959175,-0.11033749,-0.21011531,0.118311204,0.101867534,0.2660211,0.20565607,-0.12773313,-0.15397857,-0.14792176,0.13892348,0.38722992,0.17838015,-0.17604987,-0.42818186,-0.19689447,-0.31744155,0.077360794,-0.17072707,0.2796741,0.020190204,-0.39316943,0.63862896,0.13715132,1.2288315,-0.037865967,-0.39347872,0.08575977,0.5525839,0.1779033,-0.04337409,-0.09368461,0.834811,0.6579674,-0.0738669,-0.25961718,-0.3625876,-0.30777326,0.40108514,-0.23976249,-0.21110551,0.0028687615,-0.5609363,-0.24515307,0.22071333,0.13430673,0.24664211,0.08437461,-0.2135822,-0.003949826,0.0899147,0.48544607,-0.41369355,-0.14035876,0.26493117,0.36287245,0.2755216,0.33024374,-0.41937232,0.45741442,-0.5909599,0.22618245,-0.418126,0.18213052,-0.27639458,-0.27663973,0.15553926,-0.026166603,0.33853865,-0.17540164,-0.26528478,-0.34485075,0.7517889,0.124235906,0.23535989,0.8022515,-0.34280407,-0.18622084,0.10740516,0.5061711,1.1113139,-0.117727615,-0.07567053,0.34987828,-0.29506662,-0.6973412,0.08477674,-0.30760577,0.30807766,-0.09733381,-0.21542017,-0.44133458,0.20257665,-0.106804155,0.08723655,0.023683736,-0.555978,-0.29286653,0.26782617,-0.24935682,-0.27857116,-0.43900928,0.033732194,0.63803715,-0.44012782,-0.47711754,0.10328188,0.09951925,0.03181666,-0.6077655,-0.052845586,-0.25544378,0.3422803,0.0799186,-0.4261223,-0.061170097,0.22036767,-0.3155187,0.30469963,0.2637227,-0.32059374,0.18094991,-0.08079747,-0.17577441,1.1309966,-0.18905164,0.043827515,-0.5963803,-0.49892545,-0.75536346,-0.40076122,0.30277374,0.20780641,-0.06333169,-0.82268256,0.08675235,0.05928004,0.14304526,0.019050142,-0.37038186,0.4053898,0.079336904,0.3741541,0.07912137,-0.84747714,0.016954193,0.17534308,-0.1029782,-0.6667064,0.61242014,-0.21958067,0.71839243,0.05865358,0.14373598,0.11006188,-0.47069648,0.0049848384,-0.44429398,-0.19101243,-0.5399528,0.19869559 +839,0.3024558,-0.14345345,-0.36237445,0.054663062,-0.17828281,0.079571635,-0.31098145,0.39965072,0.30615476,-0.4620025,-0.14300631,-0.3233953,0.03256344,0.30245438,-0.14598252,-0.59937716,0.052761417,0.17697228,-0.62744725,0.524141,-0.3739321,0.29880422,0.16720422,0.310629,-0.0726579,0.057195153,0.23012242,-0.14801146,0.19264163,-0.09221762,-0.00013955739,0.16865963,-0.78582764,0.24567135,-0.33651355,-0.43461707,0.16017789,-0.6089016,-0.53262794,-0.855662,0.32198027,-0.7978828,0.65620714,0.3929865,-0.10082364,0.10400099,0.09021847,0.36772186,-0.21762389,0.03524414,0.25544998,-0.2376252,-0.0011806213,-0.40718985,-0.22594555,-0.27579162,-0.63068956,0.09748824,-0.45436093,0.008025197,-0.29108948,0.24963456,-0.16166407,0.03898605,-0.17166358,0.42234242,-0.39168966,0.053515073,0.24706186,-0.2071111,0.46570382,-0.64113396,-0.021845102,-0.16507703,0.31056574,-0.43499535,-0.28422683,0.22505966,0.26562503,0.55629885,-0.041243132,-0.28459147,-0.23158683,0.09744824,0.14251265,0.4982701,-0.20239513,-0.5282973,0.026299072,-0.011136676,0.116184585,0.07588924,0.08889042,-0.44611084,-0.1254366,-0.23058695,-0.084919624,0.47298166,0.6836004,-0.36505702,-0.28910714,0.2313419,0.6796254,0.16294795,0.10532678,0.11151516,0.06942455,-0.7016183,-0.21648768,0.07582581,-0.2825229,0.4777717,-0.15878445,0.20413853,0.62932956,-0.09691548,-0.18308392,0.21722382,-0.12280235,0.052980974,-0.2241984,-0.27479425,0.32894677,-0.36736026,0.11742993,-0.25824726,0.6916293,0.2541596,-0.6977843,0.22721726,-0.69721985,0.20321208,0.1066755,0.5543554,0.5788876,0.59531265,0.27948156,0.871829,-0.5366559,0.12931904,-0.058207273,-0.24181388,0.13998124,-0.24949224,0.055275753,-0.3887238,-0.18595362,-0.28944433,-0.14417475,0.247042,0.24841824,-0.56031704,-0.059077825,0.16485223,0.79997975,-0.21745157,0.031346437,0.74292445,1.0038264,0.94965357,0.05407754,1.3639382,0.23409103,-0.24308611,0.093234666,-0.1073122,-0.8619057,0.2765381,0.34876654,0.07436861,0.17201479,0.114560716,0.00979275,0.40929848,-0.6956264,-0.012773241,-0.22430478,0.10546044,-0.005821118,-0.36626816,-0.24400638,-0.13565412,-0.10621865,-0.049060818,0.21695104,0.21680689,-0.22068399,0.30856034,0.15929678,1.2270983,-0.0014407497,0.09453594,0.09579469,0.35994127,0.30966124,0.07924971,-0.049973626,0.16975302,0.27530092,0.13092205,-0.57667124,0.12578826,-0.017099533,-0.38562787,-0.22173034,-0.14846052,-0.047303922,-0.029570542,-0.412848,-0.21243161,-0.0656682,-0.1795246,0.4286638,-2.5010228,-0.13876547,0.11824182,0.3991894,-0.19303305,-0.28900844,-0.16040275,-0.54127085,0.64231724,0.30092126,0.40294918,-0.7400497,0.3843392,0.52506185,-0.7615254,-0.10604771,-0.66697764,-0.13134922,0.042745676,0.24376018,0.29786363,-0.031831805,0.09038765,0.114689216,0.49264145,-0.13846298,0.038858574,0.2689282,0.49050567,-0.0668796,0.36951828,-0.029910726,0.5625816,-0.4771104,-0.28912002,0.5083076,-0.34930676,0.11818942,-0.15761405,0.013458353,0.4461227,-0.47356975,-0.969068,-0.77360344,-0.3094376,0.85463834,0.032392584,-0.42258245,0.12712294,-0.18567327,-0.21868967,-0.06016433,0.7865347,-0.11228049,0.11474597,-0.872209,-0.15352899,-0.1052172,0.42441082,0.05495315,-0.12739,-0.62908465,0.65848225,-0.032923676,0.30495846,0.62651974,0.14863183,-0.31583259,-0.5595473,0.10206643,0.83877784,0.27885097,0.18211314,-0.2944338,-0.14766718,-0.16512808,-0.008036444,-0.16630442,0.79103416,0.55792457,-0.22426976,0.028616726,0.23408347,0.21052696,0.1298087,-0.2810782,-0.37076995,-0.18738535,0.05614312,0.6387606,0.87698716,-0.25032094,0.056396767,-0.1294851,0.49016154,-0.20543051,-0.43472508,0.72778934,1.2134647,-0.07431719,-0.05332005,0.7326529,0.3007841,-0.19630536,0.5022495,-0.6175162,-0.5467578,0.40311053,-0.15678619,-0.50841963,0.29506114,-0.27862695,-0.0078832265,-0.76181537,0.3513196,-0.45227286,-0.32571566,-0.6545519,0.014897608,-3.3965793,0.24293217,-0.34068334,0.112984166,-0.16366665,0.048602104,0.1151782,-0.35411647,-0.5573504,0.2835198,0.23595619,0.5580434,-0.22495858,0.25269163,-0.28375444,-0.21798769,-0.38777953,0.28029102,0.28285983,0.14347826,0.049768236,-0.44504753,-0.08250684,-0.17114235,-0.31967145,0.0978458,-0.64108306,-0.21926561,-0.27464744,-0.5632817,-0.38091767,0.6731837,-0.45824617,-0.058621205,-0.21551703,-0.01214705,-0.053988934,0.34768316,0.04199995,0.19660242,-0.111272685,-0.07337026,-0.07003099,-0.067349195,0.36428392,0.12444652,0.10888402,0.36482954,-0.09110569,0.03660256,0.38516933,0.8021211,-0.17062873,0.9429074,0.39452422,0.037846167,0.34889892,-0.10557736,-0.46569267,-0.5314878,-0.14544985,-0.112553686,-0.3882782,-0.46027103,0.10690035,-0.46519873,-0.71718967,0.51774716,-0.025688943,-0.16654569,0.22264364,0.23636581,0.4164381,-0.4293865,0.024436556,-0.07578754,-0.21340516,-0.51507384,-0.21375522,-0.5588281,-0.56320727,-0.05728442,1.0920489,-0.059261765,0.09616877,0.20044602,-0.037871484,-0.048889976,0.2948267,-0.09454783,0.24382159,0.6527299,-0.003637222,-0.80926555,0.5979138,-0.028653502,-0.41343468,-0.68550366,0.41921595,0.6652405,-0.77762955,0.6824594,0.37728485,0.0068014264,-0.043371778,-0.5611069,-0.30708158,0.0020554662,-0.2009057,0.43001983,0.17438892,-0.6932929,0.36220407,0.28297532,-0.45032963,-0.7982078,0.5609405,0.06572976,-0.50515246,0.11799681,0.41067788,0.0056760726,0.07516423,-0.2154143,0.21596439,-0.30278483,0.37636536,0.15327889,-0.07754281,0.17728941,-0.22470053,-0.090528265,-0.85248876,-0.013408803,-0.57809347,-0.36486334,0.23107004,0.14320903,-0.1233426,0.15627858,0.10777332,0.46587133,-0.18225679,0.15863106,-0.17183271,-0.27944794,0.32762903,0.30594906,0.36530966,-0.4194746,0.6310413,-0.15254542,-0.2133952,-0.17995879,0.2526251,0.46670386,-0.09097731,0.4605028,-0.023999132,-0.009418139,0.32365793,0.7747571,0.11010531,0.19639191,0.05020792,-0.024640927,0.3721512,0.17384604,0.11386897,0.035159286,-0.6852669,0.22625223,-0.27980846,0.06116601,0.50825596,0.07391395,0.335254,-0.1946822,-0.4736728,-0.011350164,0.40981498,0.23314212,-1.0539215,0.22264692,0.10589591,0.80303,0.5358258,0.10993035,0.15093143,0.62101835,-0.15711334,-0.04849094,0.2672107,-0.03712827,-0.31289053,0.5200051,-0.6751138,0.369319,-0.04987675,-0.029986624,0.08520154,-0.078871235,0.31029564,0.9263972,-0.22320469,0.06338432,0.025354909,-0.120851465,0.042908356,-0.44083244,0.10742851,-0.39519817,-0.3816571,0.7704048,0.55867386,0.369875,-0.20670532,0.05313375,0.148004,-0.20062438,0.15038145,0.048086863,0.03464598,-0.044120345,-0.6288933,0.09953013,0.6812774,-0.021875607,0.12651423,-0.054371737,-0.2547572,0.30790144,-0.2853768,-0.17384185,-0.24553753,-0.8862705,-0.14230584,-0.47150058,-0.15229066,0.5310715,-0.102369785,0.29162204,0.30448556,0.16232938,-0.30940574,0.5406224,-0.030781802,0.7941317,0.21569674,5.371754e-05,-0.41645366,0.30948493,0.119363435,-0.23498178,0.06574322,-0.17471798,0.10833946,-0.40937102,0.425623,-0.024142586,-0.2678866,0.11987838,-0.08616496,-0.050826706,0.638381,-0.26372454,-0.22314739,0.2901119,-0.13148405,-0.17220828,-0.21265274,-0.15059341,0.2064724,0.29131156,-0.005600214,-0.06806799,-0.09181289,-0.22957699,0.4627668,0.07499523,0.45544484,0.29918316,0.1199814,-0.38080418,0.07757099,-0.00831919,0.64541245,-0.109021194,-0.23122412,-0.048613556,-0.6017916,-0.4000065,-0.07307872,-0.09913705,0.11748329,-0.041757636,-0.099858314,0.7788102,0.24052726,1.1505262,-0.073685415,-0.34774286,0.19652775,0.4478833,0.02532378,-0.1323893,-0.630961,1.053399,0.49337274,-0.12016089,-0.041163903,-0.19133282,0.113924116,-0.035886623,-0.21038836,-0.06716626,0.008143317,-0.6511474,-0.23534265,0.31336433,0.3413513,0.18535465,-0.11720505,0.14242037,0.27793986,-0.050364103,0.07982468,-0.6174142,-0.29116338,0.2886512,0.32958964,-0.052317917,-0.039535,-0.47720873,0.3994443,-0.39478174,-0.09771672,-0.3312268,-0.033258878,-0.39674044,-0.23982143,0.2383932,-0.116625294,0.3821861,-0.4610294,-0.31320626,-0.14113697,0.2884188,0.26579395,0.25797677,0.6632335,-0.12330063,0.075765185,-0.06834293,0.6750529,0.9775806,-0.5842037,-0.1515287,0.531264,-0.43558884,-0.43955657,0.35416597,-0.36421162,-0.031388145,-0.12140925,-0.17863461,-0.440029,0.17331325,-0.05779022,0.17491642,-0.11887724,-0.86359704,-0.1411334,0.45270523,-0.48328003,-0.33981782,-0.4141545,0.32769597,0.73341656,-0.14182237,-0.37482306,0.24587242,0.2284005,-0.32168505,-0.63858867,-0.025380492,-0.31268156,0.2069497,0.22731112,-0.3155988,-0.15384386,0.19387498,-0.65789413,0.085651144,0.069252774,-0.34965894,0.05219764,-0.33979255,-0.11486717,0.93720776,-0.3559341,0.14418499,-0.57757765,-0.5634212,-0.99469936,-0.26298752,0.6559439,0.29431075,-0.017169205,-0.62150866,-0.17205088,0.0056369076,-0.27154657,0.061464887,-0.18119612,0.47983837,0.087930426,0.6037077,-0.24882795,-0.9804698,0.13579991,0.11780889,-0.2076923,-0.52990156,0.39844593,0.32185686,0.9322554,-0.032407165,-0.055473067,0.44136745,-0.6203864,0.076118864,-0.32527834,-0.13927136,-0.7053563,0.06610025 +840,0.2984393,-0.1756135,-0.39622456,-0.07861288,-0.33287245,0.048629384,-0.11746575,0.53910244,0.133103,-0.12167524,-0.26533037,0.008931518,-0.044684935,0.18941699,-0.15003228,-0.5459176,-0.13029878,0.08461936,-0.5374476,0.48658818,-0.4042274,0.3604657,0.067552775,0.32060233,0.011016356,0.28135937,0.1052347,-0.1286132,0.011391683,-0.083868615,-0.07935774,0.3221884,-0.6501726,0.30697188,-0.2862216,-0.25912994,0.072102346,-0.30972433,-0.18410508,-0.6792825,-0.021933433,-0.74328524,0.52645713,-0.13260016,-0.27060756,-0.1663324,0.06853547,0.2828166,-0.32905802,0.05226994,0.32503992,-0.116891675,-0.11184544,-0.20199236,0.19296823,-0.57065266,-0.46020684,-0.11834236,-0.500894,-0.1950382,-0.11281172,0.22191034,-0.30964836,-0.10377534,-0.21851282,0.276589,-0.4664313,0.084181,0.16143677,-0.28274742,0.2161581,-0.5936541,0.08349131,-0.13996415,0.39775792,-0.21282569,-0.16220129,0.3454278,0.33094186,0.22642152,0.1761717,-0.21815915,-0.07559283,-0.13360196,-0.04548881,0.46157694,-0.27238908,-0.3871488,-0.14583956,0.069270544,0.3455647,0.260586,-0.00018777166,-0.07381212,-0.10469792,-0.10838453,-0.016211884,0.28605705,0.3939375,-0.19675295,-0.29981628,0.30562305,0.47313255,0.3241697,-0.120195605,0.026928868,0.026927412,-0.5021344,-0.1819537,0.060339026,-0.084887795,0.506518,-0.07773751,0.18366806,0.83763885,-0.03428969,-0.03829791,0.15974712,0.09820449,-0.13201019,-0.22754773,-0.07284596,0.17911656,-0.6014813,0.099508025,-0.18022501,0.7510673,0.11275605,-0.73657596,0.29569364,-0.4708257,0.012205013,-0.03671,0.58488506,0.63400507,0.5738235,0.14286439,0.64546216,-0.2916073,0.1717193,0.021854391,-0.41536543,0.22154272,-0.19748116,-0.17064145,-0.48731306,0.029063387,-0.13758825,0.08840186,-0.006442004,0.25873625,-0.6454681,-0.117480434,0.24719082,0.61812145,-0.33963603,-0.14491014,0.65265083,0.96574974,0.74956214,-0.022070233,1.1184936,0.26925737,-0.11736141,0.13203792,-0.15144245,-0.61816174,0.19353321,0.3914698,-0.4214597,0.3211389,-0.039738897,-0.15431438,0.23383379,-0.34599993,-0.038383156,-0.006031326,0.3071708,-0.08808967,-0.089826986,-0.5056471,-0.24382648,0.054036915,-0.03449545,0.015460538,0.27274886,-0.16283607,0.36610943,0.20860727,1.2294226,-0.084055245,0.07622779,0.14545669,0.453662,0.26296636,-0.1743813,-0.13865077,0.47641498,0.34609693,0.07230313,-0.44730085,0.27905807,-0.33331585,-0.47012252,-0.13297233,-0.23680855,-0.19663107,0.13522372,-0.49127647,-0.2418369,-0.013748293,-0.18008618,0.48535705,-2.7627237,-0.08523713,0.011136317,0.38107055,-0.39698347,-0.32690287,-0.04496755,-0.4796885,0.17066832,0.30710894,0.47695494,-0.66046387,0.34003243,0.5068416,-0.3484622,-0.20376517,-0.6096626,-0.08824941,0.116579376,0.3862402,0.057195127,-0.17654392,-0.1831689,0.07383585,0.54393303,-0.09573369,0.23021217,0.4546018,0.30257133,0.036762152,0.37212324,-0.13467373,0.58647096,-0.22133109,-0.12913844,0.33893082,-0.24689195,0.29669207,-0.07609987,0.021712754,0.42553425,-0.44849652,-0.83760566,-0.5672471,-0.32047004,1.1284636,-0.35113314,-0.2798245,0.20155859,-0.0096754,-0.09887284,0.080936074,0.4997771,-0.0941427,0.25294963,-0.61630577,-0.029798716,-0.054712545,0.23988621,-0.018341666,-0.121903196,-0.4167533,0.7015132,-0.109607115,0.672613,0.3271748,0.18361568,-0.10466128,-0.4683917,0.018181765,0.8393641,0.42768663,0.093662865,-0.07176137,-0.13163461,-0.18188645,-0.037237473,-0.09168022,0.6593324,0.8191093,-0.04577086,0.16429015,0.26159334,0.0597074,0.10899566,-0.14879659,-0.2503505,-0.021860838,0.20968713,0.44647232,0.656877,-0.14142497,0.4511077,-0.14685127,0.42029205,0.008936469,-0.5512969,0.48726076,0.59679097,-0.23944166,-0.009047462,0.5611342,0.42691606,-0.2988418,0.41558522,-0.5648777,-0.33366504,0.6294737,-0.20610237,-0.58832854,0.2660706,-0.19533077,0.21916382,-0.87255573,0.5500552,-0.3372552,-0.63363427,-0.4071153,-0.041884538,-2.9195197,0.17876564,-0.107301846,-0.034365408,-0.33175778,-0.121999875,0.33302847,-0.7243312,-0.47941837,0.109277174,0.23678944,0.4743903,-0.18974717,-0.02279061,-0.26765132,-0.32749707,0.016046375,0.3112836,0.2381197,0.12069036,-0.23247899,-0.3961144,-0.185201,-0.02846747,-0.45613012,0.17598902,-0.57602805,-0.54823035,-0.06848539,-0.6412843,-0.19776185,0.66781765,-0.4946101,-0.032666445,-0.0912345,0.09122448,-0.15714097,0.11915161,0.07380003,0.11029505,0.02743716,-0.02866805,0.06631557,-0.4320335,0.47957006,0.061781246,0.46783704,0.16027446,-0.14149041,0.17937624,0.5858812,0.5112672,-0.2632638,1.0089821,0.39654773,-0.09273858,0.27952698,-0.15213516,-0.46634492,-0.5778103,-0.27379727,-0.034341935,-0.41342273,-0.30027634,0.16721661,-0.22700465,-0.90640974,0.6505814,-0.12922032,0.25990036,-0.071853355,0.22520892,0.46846482,-0.3028913,-0.06402694,-0.15912782,-0.15376744,-0.47026137,-0.3619466,-0.6256184,-0.58340365,-0.058581613,1.053294,-0.32087472,0.14183986,-0.0660971,-0.15431046,0.012410253,-0.08089811,0.09847156,0.25217757,0.4095734,-0.1340411,-0.70274895,0.4365878,0.008344201,-0.10882559,-0.3017097,0.13322425,0.59265804,-0.85854006,0.4485146,0.32827392,-0.08229338,-0.114718415,-0.62131876,-0.17139156,-0.0783325,-0.14837718,0.43975157,0.09393733,-0.7188751,0.4044488,0.26838723,-0.42913535,-0.6283817,0.32553855,-0.08738736,-0.27857444,-0.07680964,0.4064233,-0.16748571,-0.10118955,-0.07509143,0.19705479,-0.40263897,0.3023563,0.14061679,-0.17141683,0.27706033,-0.08433979,-0.24469385,-0.7012953,0.12114116,-0.47794715,-0.44641274,0.40092188,-0.040479742,-0.1715655,0.22924419,0.1611434,0.52730614,-0.36765447,0.06791368,0.08732353,-0.4710199,0.3478752,0.48153347,0.4719832,-0.24934898,0.351667,0.18215044,-0.11607201,-0.023720989,0.11546769,0.4274795,-0.033493076,0.35249203,-0.16431081,-0.09751887,0.40702176,0.8392144,0.19001415,0.4667254,-0.11062514,-0.038627766,0.14897676,-0.027014365,0.15507312,0.06378282,-0.49971324,0.08462096,-0.13426657,0.12028693,0.559785,0.271215,0.20270285,-0.07824813,-0.15293278,0.08196725,0.22933935,0.06287301,-0.9935518,0.38137978,0.28650835,0.80198765,0.2956275,0.24794431,-0.15633012,0.6511759,-0.21778557,0.19377466,0.36229524,0.011041471,-0.4649726,0.7183806,-0.60373497,0.38006797,-0.14069149,-0.11448865,0.20936486,-0.11531949,0.31415886,0.888783,-0.094839744,0.028928211,-0.0686778,-0.14616798,-0.081510715,-0.28995845,0.13791287,-0.45120367,-0.29129067,0.72616756,0.47554326,0.25625786,-0.23019075,0.02874845,0.0339874,-0.2473966,0.3364711,-0.062225766,0.08920359,0.12333019,-0.3589441,-0.15944871,0.6397571,-0.10463122,0.0035712847,-0.18614554,-0.24941985,0.082504265,-0.19635801,0.107569054,-0.02053387,-0.6591961,0.21525875,-0.43144158,-0.4420709,0.466661,-0.2800513,0.030355345,0.15626194,-0.014541997,-0.19964597,0.18308271,0.20695274,0.8083456,0.027857069,-0.24816515,-0.37602434,0.18528663,0.20023964,-0.27470708,-0.08135854,-0.4241535,0.05376992,-0.54876405,0.4041479,-0.106157884,-0.38410503,0.12484169,-0.16336654,-0.106132865,0.4308943,0.1121488,-0.18665901,0.029439876,0.062404666,-0.34369007,0.060185272,-0.37448454,0.14197826,0.42955306,-0.11318479,-0.1355016,-0.2634357,-0.22049227,0.332488,0.10611105,0.40539193,0.2828645,-0.10617982,-0.22905599,0.15098463,0.1946788,0.41214702,0.14763077,0.23053622,-0.40913597,-0.30713496,-0.25889307,0.024124375,-0.19394,0.30290365,0.057147987,-0.18863587,0.9330917,0.0075520277,1.1433051,-0.014966512,-0.3186362,-0.04419258,0.5816644,-0.058297336,-0.01625731,-0.5087758,1.1612726,0.5959393,-0.12592037,0.020032773,-0.15105732,-0.14993593,0.33218724,-0.26001135,-0.16753265,-0.051313873,-0.62496674,-0.37772247,0.28026634,0.3098761,0.088306464,0.042635374,-0.24693444,0.10048877,0.055273313,0.28539824,-0.64088964,-0.08541255,0.1485032,0.26144785,-0.14743997,0.29537752,-0.36140898,0.4213079,-0.6760003,0.20895168,-0.49984667,0.1626592,-0.20581278,-0.4272489,0.082968675,-0.06417889,0.3536859,-0.28756624,-0.43653783,-0.09159192,0.37363175,-0.036536675,0.17989305,0.60662776,-0.30741644,0.0319865,0.022574708,0.44027105,1.0386782,-0.3789893,-0.1069916,0.39910057,-0.41620302,-0.55117524,0.32767722,-0.31897974,0.044312894,-0.21965787,-0.53168267,-0.31977564,0.31227964,0.23463829,0.11376375,-0.03590141,-0.6033576,0.17550536,0.22439536,-0.34766415,-0.2467568,-0.19230977,0.4569504,0.7819963,-0.40429837,-0.32898983,0.05481894,0.20135471,-0.25985244,-0.4641052,-0.0003061848,-0.24845923,0.2032466,0.0651868,-0.36518398,-0.118029065,0.17844346,-0.3327836,0.1164257,0.36034793,-0.32231712,0.0698769,-0.16888188,0.057060055,0.9123985,-0.121851265,-0.22384726,-0.5400362,-0.47341946,-0.8212133,-0.6066457,0.19192635,0.4595193,0.027298715,-0.53698236,0.036380704,-0.21626337,-0.14962511,-0.06882871,-0.3848035,0.4334186,0.21938632,0.5822622,-0.2960098,-0.9505054,0.3410419,0.23570368,-0.026738405,-0.6519822,0.54930526,-0.18388632,0.86008114,0.07139041,-0.107967176,0.12987275,-0.5211711,0.047170784,-0.35946897,0.047328282,-0.75691706,0.083333746 +841,0.36219198,-0.21507937,-0.5592786,-0.2156264,-0.5001799,0.018489378,-0.33104813,0.3096626,0.1758578,-0.077002525,-0.17149182,0.0015302419,0.01935914,0.28297985,-0.16377096,-0.5166024,-0.26105198,0.09016748,-0.83997226,0.52258664,-0.5649702,0.38612023,0.1446734,0.38983983,0.16394173,0.3365627,0.2593523,-0.031505845,-0.040009014,-0.1244607,-0.30662537,0.48060516,-0.61198616,-0.06886565,-0.2160287,-0.47322312,0.078396685,-0.4725704,-0.12219,-0.7446917,0.2850557,-0.87509596,0.50488466,-0.1328724,-0.15164988,0.12893274,0.41781524,0.30058974,-0.25423557,0.040283673,0.2357281,-0.16234377,-0.19057284,-0.20383173,-0.007731144,-0.31963834,-0.49198106,0.024913156,-0.72422194,-0.29824826,-0.20355007,0.21503447,-0.3194018,-0.02733643,-0.2881316,0.41787246,-0.4370273,-0.13526684,0.18385293,-0.18377584,0.31267786,-0.53820825,0.02101024,-0.057088867,0.5522793,-0.11580256,-0.075736314,0.29589936,0.4367291,0.33554846,0.14875898,-0.37113714,-0.297036,-0.16142327,-0.072990194,0.41431364,-0.21179001,-0.433589,-0.14642794,0.03512024,0.4606213,0.4948543,0.026738051,-0.112396464,0.12740551,-0.005602678,-0.2531633,0.64361674,0.5322478,-0.37190965,-0.33051598,0.35261616,0.54212576,0.33802396,-0.27473876,-0.04262611,-0.121479064,-0.58940184,-0.06974074,0.15940121,-0.10479137,0.41979548,-0.088134885,0.16806443,0.8081053,-0.04401796,0.038709242,-0.062292982,-0.16174826,-0.20451434,-0.23930927,-0.23075622,0.18571374,-0.5731669,0.06851129,-0.2016876,0.6294171,-0.038858533,-0.8064407,0.36621732,-0.6151112,0.16660471,-0.05642585,0.6499867,0.7264702,0.46609437,0.44233656,0.7307452,-0.105146475,0.13889058,0.055547215,-0.5342349,-0.015209361,-0.25793532,0.18728907,-0.51373726,0.14006968,-0.1193423,0.10360878,0.072042175,0.49434727,-0.6371983,-0.22321157,0.18559885,0.6648079,-0.3512731,-0.036326077,0.8415693,1.0457247,1.0531617,0.051692333,1.0420139,0.32448578,-0.27595624,0.14427117,-0.3343474,-0.49080876,0.17669319,0.58745027,-0.31646302,0.41699016,-0.20733309,0.01663487,0.44555002,-0.32552192,-0.10343884,-0.11191751,0.113703564,0.12559332,-0.031616993,-0.45810884,-0.21836124,0.1204573,0.024300823,0.19319911,0.17711093,-0.19076777,0.36497495,0.017777124,1.2511953,-0.20637137,-0.00076272886,0.067437455,0.67216957,0.37845972,-0.11496773,-0.14349853,0.3546688,0.5339462,0.0013146003,-0.6295035,0.24385111,-0.34534168,-0.37946936,-0.13545926,-0.38689443,-0.10477028,0.089219816,-0.43279764,-0.1781778,-0.049107805,-0.26110354,0.31224298,-2.8273213,-0.18107647,-0.26905283,0.17123856,-0.25186422,-0.23035164,-0.007639444,-0.5985067,0.2882042,0.2898437,0.4469051,-0.58966315,0.4341393,0.53126824,-0.58735424,-0.23236948,-0.8094401,-0.15586121,-0.07082202,0.47370064,0.07339612,-0.2322425,-0.11128799,0.26044723,0.74352276,0.08010943,0.32919157,0.4219474,0.45362574,0.026325772,0.6689464,0.11360483,0.615145,-0.3051866,-0.2591677,0.41567802,-0.22813769,0.017547766,-0.14492597,0.14242499,0.57562536,-0.47156844,-1.0799564,-0.5755571,-0.14767198,1.1005807,-0.44288498,-0.51069415,0.20374899,-0.13193497,-0.018856283,0.11316417,0.62956655,-0.18701203,0.12187091,-0.7773225,0.2545291,-0.13638276,0.09129489,0.018464351,0.010989074,-0.44655022,0.6053103,0.033927638,0.5352924,0.21808773,0.29724458,-0.34280145,-0.35938877,0.13826412,0.77322096,0.33007115,-0.1709018,-0.17611767,-0.2146742,0.016448831,-0.10898379,0.013442864,0.4894944,0.72874695,0.028622894,0.16330053,0.28499117,-0.028648678,0.08544803,-0.1792085,-0.10595504,-0.08804102,-0.0020408442,0.5018595,0.5819508,-0.090443,0.5867579,-0.23954555,0.31699732,-0.05521712,-0.645181,0.7223526,0.6296858,-0.14520551,-0.049586426,0.6574374,0.54937446,-0.36872548,0.5294387,-0.6864159,-0.29651314,0.71572274,-0.1771606,-0.5179456,0.21023335,-0.2599797,0.09766881,-0.8246969,0.18049598,-0.3385395,-0.27565053,-0.33246562,-0.12278892,-3.5222838,0.15890451,-0.099631555,-0.016067911,-0.44566235,-0.31591886,0.3124953,-0.64415276,-0.6133997,0.18974614,0.30978405,0.48815188,-0.09793904,0.08953234,-0.21865977,-0.35314068,-0.11387246,0.27419516,0.17238222,0.30149782,-0.16870521,-0.42957047,-0.06684429,-0.048233192,-0.61859024,0.03164677,-0.55521363,-0.43349034,-0.09612013,-0.66675746,-0.2605857,0.6281651,-0.2623521,0.046780664,-0.30633262,0.060977172,-0.11401327,0.23209412,-0.008259235,0.3202428,0.12884519,-0.08532294,0.31422234,-0.35638434,0.5006484,-0.18370722,0.2976504,0.054667473,0.11302934,0.18231492,0.48423067,0.66562265,-0.26587403,1.0924901,0.48624033,-0.074350476,0.26639432,-0.27234942,-0.25829864,-0.7732032,-0.35460085,-0.07545492,-0.44560087,-0.40463334,0.073207565,-0.26179802,-0.76246643,0.7736103,-0.067321524,0.4618916,-0.1676876,0.4582052,0.476704,-0.20061421,-0.0452893,-0.06784412,-0.18372707,-0.5293362,-0.1542655,-0.7728236,-0.53919095,-0.1254756,0.80629563,-0.3095212,0.041707266,-0.004900551,-0.23091513,0.17065087,-0.04515934,0.26364282,0.36724204,0.55663097,-0.030512368,-0.72503054,0.3527984,-0.1429534,-0.09575259,-0.42155704,0.1366238,0.5692308,-0.74385446,0.53142154,0.43538272,0.0754873,-0.03960784,-0.6288923,-0.16255197,0.13175891,-0.06528727,0.62205833,0.2722061,-0.95084727,0.6437185,0.349123,-0.3382447,-0.7317918,0.42084143,-0.0878941,-0.26300237,-0.18206714,0.40075362,0.16442433,-0.03266265,-0.20641455,0.08753227,-0.45270061,0.33468243,0.12151361,-0.07110984,0.44765165,-0.20629518,-0.36228102,-0.7440566,-0.044885796,-0.52009785,-0.24984995,0.3516194,-0.11845536,0.04311035,0.08876876,-0.14314625,0.4061308,-0.26865852,0.104021624,0.035017796,-0.2217848,0.19458859,0.46956977,0.2672343,-0.47814587,0.53800815,0.18846127,-0.33415908,-0.011527745,-0.12465904,0.38232562,-0.052189376,0.33977816,-0.113742925,-0.23252697,0.5359992,0.7426568,0.07193645,0.31228212,0.0075208903,-0.06586416,0.22115707,-0.093715474,0.121485546,-0.0061853607,-0.52546585,-0.043102752,0.0032016437,0.08998382,0.5996972,0.19988911,0.23714705,0.03206235,-0.072559595,0.0071748258,0.22297798,-0.11456927,-1.1979042,0.4588241,0.26560208,0.87872046,0.40986255,0.14782906,-0.32734522,0.77514845,-0.3629772,0.02410254,0.42437682,0.083222546,-0.3256134,0.8373975,-0.5579818,0.46234623,-0.15932241,0.020364229,0.12056814,0.05739056,0.31853637,0.8493522,-0.2241558,0.13726804,-0.042425822,-0.15617847,0.06106062,-0.22155084,-0.010647939,-0.32079795,-0.3071868,0.72096264,0.31220993,0.37394655,-0.11131713,-0.12521982,0.08109037,-0.26162997,0.04411243,-0.03477392,0.056352485,0.04990814,-0.42198527,-0.17043658,0.52816755,0.2486425,0.13231887,-0.23432612,-0.44539034,0.1245007,-0.23156387,-0.052340522,0.018005379,-0.56670535,0.02363205,-0.18077567,-0.54595274,0.37348804,-0.19562048,0.049408857,0.16660999,-0.045160074,-0.14479247,0.04858832,0.12025118,0.712781,-0.14822595,-0.1520752,-0.36761722,0.053739604,0.22480913,-0.30417636,-0.07198153,-0.37116376,0.09186005,-0.43275923,0.4859641,-0.13081771,-0.55781865,0.120150395,-0.18350625,-0.052320264,0.56856346,-0.112509094,-0.16750367,0.0490304,-0.0834112,-0.29288083,-0.15516827,-0.22861342,0.22479148,0.2951029,0.009931811,-0.19008127,-0.23679426,-0.13525635,0.75847083,-0.082680896,0.42469272,0.23331842,0.08224315,-0.296835,0.10084224,0.22340806,0.49892253,0.024722386,-0.038695358,-0.46661967,-0.33165532,-0.31122863,0.25777185,-0.071198426,0.28373224,0.035482798,-0.23711914,0.93413097,-0.13117506,1.1433924,0.014755046,-0.33297342,0.04510756,0.5218541,-0.13377501,6.2354404e-05,-0.3100481,0.9654337,0.5720554,-0.06360341,-0.039993167,-0.44779682,-0.103216454,0.29535076,-0.40900624,-0.047667366,-0.1338113,-0.5132626,-0.4197335,0.23664598,0.16968209,0.10806577,-0.10553227,0.033901647,0.08388804,0.10000069,0.5899496,-0.63293076,-0.1643741,0.20068502,0.2396498,-0.23031302,0.092123136,-0.45224997,0.2684105,-0.5949923,0.046138227,-0.587043,0.16511232,-0.15696245,-0.34938082,0.12671433,-0.26182196,0.33486012,-0.21985118,-0.52076584,-0.018784622,0.36567682,0.051559765,0.08071248,0.593919,-0.34003633,0.1475482,0.1044047,0.64373267,1.1651782,-0.31628102,-0.060156632,0.2515486,-0.32105523,-0.49299297,0.29386625,-0.3020275,-0.01444507,0.044000383,-0.35403425,-0.27972305,0.31845385,0.2958081,0.045525137,0.023307411,-0.53628963,-0.09876774,0.3256316,-0.20201497,-0.14408681,-0.25214043,0.38160807,0.7982036,-0.32179922,-0.36857548,-0.020817813,0.39562008,-0.2150417,-0.5307579,0.088474736,-0.20849799,0.39313018,0.1394435,-0.353693,-0.063462704,0.21502116,-0.53664756,0.098283425,0.34758648,-0.25247306,0.11369118,-0.20944066,-0.042094756,1.0306194,-0.2459507,-0.046123397,-0.47375435,-0.49408016,-0.91627043,-0.29856485,0.15070018,0.14714128,-0.007167842,-0.48767197,0.13483343,-0.108606584,-0.21054827,0.14297272,-0.4235716,0.23221229,0.036467187,0.7746445,-0.29380527,-0.84334356,0.043414656,0.10016771,-0.027245605,-0.52056676,0.7436656,0.03719501,0.8438852,0.123765804,-0.002014033,-0.07362147,-0.35674435,0.0011690517,-0.38504776,-0.08432615,-1.0025814,0.12852944 +842,0.44597057,-0.3487859,-0.38750377,-0.10546681,-0.17697874,0.062443897,-0.31760454,0.568277,0.32759148,-0.56448275,-0.10819196,-0.10570064,-0.0614992,0.15663274,-0.09466295,-0.6441329,0.1265483,0.018252978,-0.491471,0.71965086,-0.50083345,0.2810052,-0.14599913,0.28577408,0.18442766,0.26611632,0.16025008,0.112871334,0.13725914,-0.05451015,0.065372124,-0.03184321,-0.42620105,0.31091675,-0.27558425,-0.5123148,0.13117594,-0.35801828,-0.4662466,-0.8541867,0.26569638,-0.6463105,0.5862992,0.021638999,-0.24793845,0.10802789,0.11364249,0.4109302,-0.2612345,0.08185817,0.14300863,-0.095755264,-0.023788564,-0.15432812,-0.27941975,-0.5910569,-0.46860653,-0.123032674,-0.45563066,-0.2801169,-0.14094886,0.24222524,-0.29270518,-0.10489294,-0.16109112,0.5539917,-0.48546675,-0.1327216,0.2742835,-0.09973567,0.20313047,-0.9185852,-0.33014405,-0.08766179,0.10113322,-0.04332942,-0.2584735,0.34038082,0.0969541,0.38803875,0.15428437,-0.17370635,-0.099843994,-0.13431484,0.055331785,0.5946508,-0.09809725,-0.23980355,-0.19218826,-0.14487658,0.3661037,0.168007,0.15117522,-0.35430205,0.09309047,-0.0017622411,-0.28834373,0.41245052,0.55191654,-0.33102766,-0.18677293,0.09936735,0.5824739,0.17076096,-0.24594954,0.102064446,-0.069931485,-0.3840756,-0.21031827,0.15767087,-0.052798536,0.4148855,-0.17179702,0.37655511,0.45243028,-0.1573026,0.18537919,-0.028676685,0.035888486,-0.03622272,-0.3659221,-0.4911266,0.35062996,-0.54266655,0.24723238,-0.4315082,0.5365931,0.22372842,-0.28837055,0.26175755,-0.5256577,0.076349154,0.032921672,0.52791506,0.77690315,0.25908226,0.19983871,0.76101977,-0.35911143,0.005384431,-0.08039828,0.11913383,-0.091355324,-0.1195724,0.29505017,-0.44707435,-0.056676902,-0.030259756,0.02283549,0.13931558,0.31488273,-0.56886715,-0.15925233,0.123403735,0.8446328,-0.2400411,0.24345255,0.8155075,1.3416593,0.8781891,0.007421395,1.2074319,0.4321278,-0.29850295,-0.023869194,-0.18449834,-0.48137525,0.1979402,0.37602574,0.3001619,0.28824055,0.09844327,-0.31572625,0.5804382,-0.49050763,-0.05335302,-0.15584995,0.043616597,0.05128829,-0.14437227,-0.47455317,-0.09648777,0.029519321,-0.13300836,0.17797206,0.20944087,-0.3311901,0.33254766,-0.083549194,0.8112881,-0.24021663,-0.073882416,0.1277444,0.57361025,0.28855446,-0.11767837,0.21350068,0.20724848,0.45755735,-0.058089834,-0.6549037,0.28961536,-0.34535614,-0.3991672,-0.1578959,-0.30648977,-0.17794646,0.07324968,-0.5011812,-0.25375974,-0.103015386,-0.12471425,0.15459314,-2.6999242,-0.34586424,-0.20429918,0.37517786,-0.13344964,-0.2558195,-0.08053573,-0.36758316,0.55303335,0.28988913,0.4594504,-0.5104437,0.4741698,0.5649616,-0.58398545,0.041314423,-0.57381016,-0.098443344,-0.08319202,0.45245644,0.06321129,-0.11192021,0.088666745,0.26522562,0.5781265,0.015867455,0.13051628,0.1611335,0.43388388,-0.32648566,0.33508873,0.05610188,0.49347907,-0.5347064,-0.16137563,0.31007275,-0.44629952,0.17706992,-0.3018071,0.15873139,0.566117,-0.28349793,-0.6939316,-0.5769767,-0.21046403,1.0290467,0.091868564,-0.5731263,0.07268231,-0.47557443,-0.2157366,-0.1468474,0.76256853,-0.06482499,-0.047150455,-0.72237265,-0.05770318,-0.12341015,0.11351877,0.08999845,0.05816755,-0.5812553,0.8482701,-0.056753658,0.4728405,0.37379107,0.29543197,-0.2177671,-0.36926624,0.10917965,0.4878756,0.5458556,0.21717459,-0.15734029,-0.035606265,-0.13895157,0.028028946,0.14108677,0.747131,0.6568269,-0.2214177,0.12391293,0.25463817,0.020947745,0.12702082,-0.27032205,-0.43150952,-0.26876563,0.24355537,0.50041527,0.2707592,-0.018278036,0.10060526,-0.02439588,0.21076657,-0.3822374,-0.4601157,0.4903239,1.0000865,-0.247969,-0.16134249,0.49638116,0.47100565,-0.12075615,0.46328095,-0.8155476,-0.38105598,0.39489397,-0.08813242,-0.37441522,0.07849479,-0.4081652,0.14110552,-0.83658224,0.33743307,-0.52835214,-0.4933958,-0.6876049,-0.25824264,-3.2594032,0.22476038,-0.37377247,-0.01984798,-0.2236904,-0.24244978,0.2935079,-0.5444568,-0.41713163,0.2988644,0.01950118,0.5818952,-0.0259776,-0.114586964,-0.32850665,-0.3108115,-0.35788426,0.18781258,-0.10357906,0.31592605,-0.023552785,-0.37243235,0.16171323,-0.017266925,-0.5398166,-0.047359534,-0.5253497,-0.19851485,-0.31889185,-0.60875475,-0.1815376,0.5946442,-0.19148317,0.1322311,-0.21694987,0.01027585,-0.13136207,0.37546495,0.18558781,0.2746912,-0.017527647,-0.044172738,0.023036055,-0.25333256,0.0772814,0.27367938,0.1082668,0.34732917,-0.115273386,-0.030968845,0.31197488,0.5661255,0.013241479,0.88469416,0.2724671,-0.10171269,0.5129839,-0.17175037,-0.33989444,-0.5152577,-0.45266804,-0.027880916,-0.23894164,-0.52307117,-0.056303903,-0.39808756,-0.6580144,0.4098538,0.052886106,0.2132187,0.18513654,0.3110595,0.379209,-0.19371851,-0.02295059,0.072476074,-0.026976297,-0.34873983,-0.33020562,-0.6533324,-0.5391668,0.093735024,0.77609104,-0.20836179,0.09378362,0.27255422,-0.24784502,0.09515459,0.35162777,0.10094671,-0.08005706,0.399766,-0.0392176,-0.617532,0.37735075,0.13571933,-0.3051095,-0.6135947,0.3683789,0.67352873,-0.6545282,0.6128958,0.30683783,0.069665484,-0.4153978,-0.49004358,-0.22090855,0.06369646,-0.2849215,0.4329931,0.039240763,-0.7114898,0.33316085,0.22308527,-0.1900915,-0.6907702,0.7256603,-0.090236075,-0.28710184,0.034682926,0.36457917,0.18981896,0.08310329,-0.1215617,0.3277783,-0.29062954,0.26909333,0.120705254,-0.06699438,0.51920897,-0.083010904,-0.084408484,-0.7052006,0.01153178,-0.6316774,-0.1895648,0.29477382,-0.13166912,0.08955535,0.25362805,0.011920198,0.34184724,-0.09275654,0.19681717,-0.18134683,-0.4583254,0.39392406,0.41991886,0.25276443,-0.22546552,0.70352143,0.037024107,-0.11537511,-0.069068044,0.29590195,0.33520702,0.22057009,0.6434809,-0.19492033,-0.091310054,0.11403137,0.9025891,0.2960127,0.38868448,0.1315545,-0.053215064,0.23728015,0.123602696,0.04941137,0.10698053,-0.24967244,-0.087599464,-0.22144292,0.25200891,0.3934158,0.0065938463,0.27567786,-0.07107298,-0.32378456,0.0077345646,0.27681637,0.04411114,-1.3349149,0.35766786,0.12992083,0.79779977,0.43184692,0.12698731,-0.26013067,0.47062048,0.08705267,0.005898751,0.24512036,0.08863216,-0.31382316,0.626324,-0.45161492,0.3900823,-0.08795253,0.062169526,-0.023928128,-0.07672808,0.529353,0.80424094,-0.2374693,-0.03931034,0.029849874,-0.2724768,0.077288866,-0.46337092,0.17173988,-0.33357114,-0.4029569,0.53604025,0.5077675,0.32125786,-0.30882385,0.02403593,0.0053895293,-0.14474581,0.1302378,-0.054593746,0.09018278,-0.18462484,-0.5956943,-0.18233758,0.40925968,-0.29913116,0.06709986,0.14041448,-0.3185733,0.14059983,0.1132176,0.1355761,0.117107004,-0.82376087,0.099867396,-0.32660568,-0.35352406,0.56546545,-0.17054719,0.20124935,0.32766873,-0.031135999,-0.18444887,0.37552974,-0.08012491,0.67072105,-0.034824204,-0.1661562,-0.399668,-0.0060166763,0.3442413,-0.31723896,0.13593996,-0.24573898,0.19492318,-0.5192921,0.5190221,0.066151254,-0.09759111,0.2906806,-0.13548523,-0.05761939,0.55204874,-0.18300197,-0.206899,0.18604572,-0.24546412,-0.30567595,-0.39524728,-0.049596127,0.26624358,0.056024905,0.3606925,-0.18766268,-0.2721317,0.048117336,0.3368191,0.19482501,0.18832889,0.4101658,0.06231784,-0.44188616,0.11640909,0.056962278,0.42912865,-0.11207753,-0.06931421,-0.06969898,-0.6420915,-0.4537974,0.10540729,-0.0866949,0.37977993,-0.017981797,-0.23840731,0.79294,0.15050325,1.0263944,-0.14495239,-0.4323917,0.09493317,0.65700257,-0.19669801,-0.030176204,-0.24621226,0.9338289,0.56657577,-0.051800694,0.010727768,-0.27690825,-0.018965263,0.29141444,-0.25205716,-0.14729832,-0.17059389,-0.7076301,-0.22992887,0.33285162,0.41341957,-0.075502,-0.04300103,0.13562606,0.2719317,0.04080069,0.34138563,-0.7520683,-0.18419005,0.3094128,0.13600752,-0.07070535,0.17277354,-0.34228188,0.3678524,-0.66958946,0.17776379,-0.34065452,0.041208666,-0.2426481,-0.3283803,0.26980448,0.002639789,0.41200414,-0.4898669,-0.38837022,-0.2819901,0.31096298,0.12301154,0.19268438,0.5614169,-0.13371992,-0.01274671,0.040211957,0.56718105,1.0444006,-0.21521385,-0.11787248,0.31480926,-0.6795384,-0.6019668,0.12052222,-0.33741543,0.04307052,-0.003044642,-0.2921593,-0.47253132,0.17221618,0.20281652,0.10336682,0.054432027,-0.66450024,-0.2702548,0.13507722,-0.41865274,-0.22342697,-0.39958674,0.26280215,0.58534914,-0.30059066,-0.1969423,-0.055002388,0.39212766,-0.2947927,-0.6552042,0.12940177,-0.29397088,0.47812277,-0.0008767247,-0.16853593,-0.19374742,-0.050651625,-0.4471522,0.041464202,0.0886091,-0.32595205,0.0030195438,-0.288957,-0.1672708,0.7040118,-0.08219899,0.10079013,-0.5476248,-0.52986676,-0.78981024,-0.47135532,0.28969103,0.46093014,-0.04719699,-0.5680948,0.08070871,-0.1338228,0.15015809,-0.027145097,-0.1386393,0.38894588,0.16185577,0.5441018,-0.10933207,-0.8647524,0.19591087,0.1578472,-0.10593875,-0.25090706,0.38072416,-0.009754405,0.898667,0.1244775,-0.027420044,0.08186034,-0.34856832,0.26857427,-0.27144337,-0.29884955,-0.7437048,-0.03164486 +843,0.38696644,0.0537536,-0.36227766,0.06936265,-0.09627478,-0.016592402,-0.18792571,0.13681544,0.25132173,-0.50558037,-0.36685625,-0.3766006,0.047983453,0.11099394,-0.16930349,-0.6632842,0.0005340668,0.18723664,-0.40491676,0.89932644,-0.23687807,0.556551,0.16687049,0.22598106,0.26136658,0.3964275,0.52176166,-0.071550384,-0.21799609,-0.052142043,-0.004582671,-0.17091945,-0.75639164,0.20735529,-0.3534417,-0.44035152,0.0015912607,-0.61346954,-0.5523326,-0.86583316,0.35894442,-0.87656814,0.4582392,0.1093264,0.03235432,0.21730152,0.16554919,0.3862065,-0.13202102,-0.044811763,0.12783402,-0.012173552,0.058790587,-0.15517512,-0.6056949,-0.24746796,-0.68575424,0.014290154,-0.36683705,-0.15464112,-0.34585956,0.062477347,-0.25397488,0.0135317035,-0.10968356,0.073593885,-0.6316467,-0.25365368,0.2949192,-0.22234155,0.11089395,-0.6388805,-0.29565448,-0.27628613,0.19560693,-0.38739568,0.032130573,0.5322829,0.20089601,0.4251304,0.1604101,-0.238914,-0.13439831,0.024023045,0.20757815,0.65013665,-0.14912659,-0.13560079,-0.0900166,-0.09688605,0.5877237,0.30378902,0.23168142,-0.22547904,-0.019855198,-0.32994902,-0.14677607,0.32650062,0.5814267,-0.23201217,-0.3984407,0.24707463,0.67886615,0.25626186,-0.10666117,0.032576486,-0.1260783,-0.27996537,-0.24379492,0.40418416,-0.25473085,0.5476188,-0.038905896,-0.055890404,0.7163131,-0.37508965,0.19166991,2.0384789e-05,-0.09944428,-0.12062876,-0.117442384,-0.2138199,0.49383467,-0.41766402,0.24707428,-0.42495522,0.5047913,0.35978776,-0.54886836,0.44671646,-0.6120596,0.17667617,0.14175305,0.7942845,0.57531273,0.27280584,0.4608862,0.83580106,-0.46980813,0.17102954,-0.11919455,-0.21756795,-0.046628837,-0.13365628,0.053657345,-0.27939427,-0.04875604,-0.034876864,-0.3444188,0.02826383,0.31847346,-0.64422727,-0.015251017,-0.1346848,0.68993,-0.3069189,-0.08340512,0.8252086,1.0813878,0.9588137,0.06633036,1.4645146,0.3873409,-0.2778734,-0.030518936,-0.3267631,-0.56015134,0.11510616,0.47725213,-0.39074707,0.6434005,0.2392501,-0.08842056,0.035654083,-0.54321605,0.06985566,-0.24875942,0.053658787,-0.178943,0.018563004,-0.35375646,-0.3414592,-0.1091951,0.03101359,0.3068396,0.24858025,-0.23755826,0.21669373,0.18718857,1.5507983,-0.013431733,-0.014202421,0.21941432,0.55805784,0.22356778,-0.08969641,-0.029629707,0.34808117,0.32578817,-0.07884441,-0.53154916,-0.033440147,-0.41071928,-0.3402353,-0.1365696,-0.33730757,0.13327853,0.15957157,-0.11327985,-0.018657446,-0.04619835,-0.45106778,0.5037051,-2.1848128,-0.18585123,-0.25129473,0.34515798,-0.28351778,-0.29609215,-0.37971914,-0.51480055,0.5229927,0.26171115,0.3592051,-0.6835644,0.13509999,0.66479516,-0.7528585,-0.104443185,-0.62774277,0.18179692,-0.114117034,0.3973789,-0.06774262,0.08040611,0.16438825,0.15775071,0.40388414,0.19415575,-0.017145528,0.35090148,0.5218719,0.10049497,0.4712394,0.2842015,0.44342157,-0.37934765,-0.1954812,0.586817,-0.401806,0.55778426,-0.24596158,0.01602565,0.4163281,-0.52628225,-0.72310245,-0.5426998,-0.7889957,0.9983393,-0.1424252,-0.5059783,-0.012738306,0.17984955,-0.069916695,-0.2216827,0.6398088,-0.29573697,-0.021695204,-0.580508,-0.21048339,0.051003125,0.2149284,-0.00073632825,0.2643274,-0.5479875,0.7235994,-0.22883788,0.20262307,0.29199558,0.35847062,-0.18178004,-0.59547055,0.2657854,0.8319452,0.4503446,0.087573916,-0.2408035,-0.23316382,-0.17443839,-0.29605624,0.011148792,0.43031633,0.7592469,-0.28712532,0.0020750384,0.56516165,0.16433099,-0.011805227,-0.16672502,-0.4092855,-0.23587006,-0.2044234,0.61650026,0.58810043,-0.28864706,0.2506271,-0.20240799,0.26602787,-0.079170465,-0.40381643,0.4559895,1.0600979,-0.15486155,0.03027346,0.51941836,0.34465247,-0.35233223,0.5749424,-1.0119622,-0.30004656,0.4903974,-0.055623464,-0.4924534,0.2276516,-0.18663393,0.004003346,-0.73143506,0.5212414,-0.21110779,-0.06870547,-0.49551594,0.041625556,-1.9616557,0.070006825,-0.3404735,-0.10134165,-0.17803563,-0.14743748,-0.18469238,-0.52343404,-0.6628894,0.34458795,0.0657821,0.42533132,-0.062717065,0.17634234,-0.27263921,-0.34077108,-0.4557092,0.23908314,0.30951816,0.49343997,-0.4634919,-0.31423488,0.056547496,-0.18476525,-0.56613576,-0.051595263,-0.5217416,-0.3297483,-0.4544767,-0.7300698,-0.25819933,0.6580562,-0.47291204,-0.050762,-0.25429422,-0.09724752,-0.061068222,0.3727114,0.37433258,0.28745073,0.16757672,-0.04786941,-0.074085556,-0.29051566,0.4903871,0.33372322,0.044068363,0.43079665,-0.25008252,0.1592255,0.11656074,0.61356163,-0.103126206,0.7539998,0.36342618,-0.27724102,0.36106735,-0.27450377,-0.30832735,-0.8113404,-0.41284806,-0.16678514,-0.23176321,-0.8738226,-0.20007579,-0.4282997,-0.7795674,0.534243,0.000686132,0.38036442,-0.053791825,0.1513439,0.45087308,-0.29195124,0.1299002,-0.019849231,-0.08479928,-0.51947886,-0.37347132,-0.7185182,-0.48363048,0.39347804,0.57107204,-0.128885,-0.24746059,0.2174205,-0.1964953,0.14219771,0.12774669,-0.007621592,-0.007228026,0.5538191,0.03667123,-0.5015361,0.56248194,0.31360328,-0.32698077,-0.6459141,0.35049403,0.7527634,-0.641614,0.64312416,0.37671998,-0.079643086,-0.11069936,-0.47216034,-0.28328118,-0.12343714,-0.24760197,0.24093515,0.078205556,-0.43376416,0.24537157,0.13373213,-0.38750556,-0.72489583,0.7713921,-0.05612909,-0.20576707,0.05719516,0.46912336,-0.06150073,0.07114954,-0.43860105,0.2111457,-0.3401955,0.14266488,0.3800489,-0.09295236,0.4723375,-0.08827007,-0.3444293,-0.8490327,0.5121292,-0.48653844,-0.33483604,0.243087,0.046953864,-0.2839864,0.30279994,0.31488153,0.36378703,-0.2260753,0.20252657,-0.041085456,-0.13356115,0.2326764,0.2947625,0.44769844,-0.4280521,0.6714449,-0.048345704,-0.16051602,0.12585285,0.11217614,0.28599647,0.027708054,0.03115047,0.25699103,-0.061058503,0.120325215,0.51101124,0.24366505,0.2247946,0.3337397,-0.10682117,0.41269785,0.18454851,0.29249835,-0.054904107,-0.4265073,0.13984941,-0.03734318,-0.15761775,0.38360772,0.17706409,0.28064793,-0.14545295,-0.3935808,-0.059507944,0.28090912,-0.2291557,-1.0011567,0.1456097,-0.04202728,0.6206325,0.64689547,0.015974667,0.21445201,0.4068116,-0.3698578,-0.07982181,0.34450373,-0.042790037,-0.45092183,0.49992326,-0.38094616,0.5172293,0.0030600291,0.08803265,0.1166044,0.12510231,0.27412075,1.0302584,-0.3800038,-0.050766844,-0.43420073,0.17888458,0.1762139,-0.37450406,0.49880654,-0.3044724,-0.5851494,0.726864,0.2117245,0.6055785,-0.05575057,0.0040098736,-0.0917445,-0.42770487,0.4044037,0.11649143,0.056528524,0.059250932,-0.595766,-0.24114695,0.567175,-0.5037385,-0.063115634,0.11533569,-0.0679565,0.05074845,-0.19490506,0.07513575,0.010346399,-1.1115137,-0.081246726,-0.34697026,-0.18655708,0.16080359,0.017804893,0.40665838,0.12526152,-0.1697065,-0.360435,0.46051592,0.25925538,0.8355955,-0.11397086,-0.35311514,-0.2733613,0.23838252,0.38720295,-0.25528744,0.37856337,0.054116823,0.17605278,-0.71440274,0.5490057,-0.07245053,-0.41363227,-0.12379926,-0.2790231,-0.38696787,0.5823464,-0.1176688,-0.24537688,0.07561461,-0.30531025,-0.15412265,-0.18428119,-0.16950217,0.08046989,0.32326862,-0.20266977,-0.02509855,-0.077701956,-0.07331051,0.45494393,0.16925438,0.22177836,0.1789082,0.19046673,-0.5221936,0.18719643,0.016607134,0.27350968,-0.06155932,-0.033068545,-0.06691037,-0.49699894,-0.47919142,0.3105091,-0.18596114,0.2925345,0.075927354,-0.11253416,0.6791003,0.18764463,1.258725,0.011723823,-0.41391817,0.08494775,0.69773716,-0.06059784,-0.22600073,-0.29926583,1.1944965,0.5513228,0.036645457,-0.15747693,-0.15060575,-0.19935352,0.15848035,-0.23804514,-0.07886701,0.11400532,-0.52353925,-0.34094244,0.16449052,0.4419514,-0.012620779,-0.07582043,0.072388425,0.226744,0.13262755,0.53046167,-0.43576968,-0.50512433,0.43790007,0.010813126,-0.14974247,0.18140496,-0.22164561,0.45907813,-0.45338833,0.31126043,-0.38825804,0.11028187,-0.13081071,-0.3733247,0.20328529,0.025239496,0.6733617,-0.5577705,-0.44729105,-0.3983312,0.3342087,0.14494576,0.2558298,0.69939435,-0.23060223,0.042309966,-0.26236385,0.7194014,1.2946061,-0.12852696,0.09446537,0.2180891,-0.6614857,-0.48189703,0.35011134,-0.37479213,0.022165481,-0.2623895,-0.40532568,-0.34735802,0.022917591,-0.009131642,-0.08387604,0.08028454,-0.79039186,-0.39392674,0.0785474,-0.14943613,-0.274888,-0.52101195,0.37172845,0.92193854,-0.1546424,-0.54534584,0.1874075,-0.089874856,-0.36867383,-0.6702559,-0.03922069,-0.07917063,0.38217402,-0.019281946,-0.13503914,-0.17484148,0.18009077,-0.3938278,-0.045883305,0.00036166265,-0.396786,0.011075556,-0.17448327,0.05836993,0.8085622,-0.22577229,-0.020294936,-0.47900063,-0.45034915,-1.0499456,-0.44405282,0.3683589,0.23830494,-0.08369747,-0.48310453,0.16091497,-0.24879386,0.20163749,0.14007378,-0.31426623,0.3270938,0.16981994,0.51549023,-0.411007,-0.9700568,0.1435779,0.010922615,-0.042221308,-0.6245383,0.37854245,0.14329672,0.5994605,0.1975083,-0.20962904,0.23469867,-0.583994,0.050993882,-0.331109,0.028805617,-0.72586036,0.21610586 +844,0.34229302,-0.33783957,-0.441785,-0.17192166,-0.2530645,-0.16279149,-0.15380774,0.33761922,0.51786596,-0.1361664,-0.2246143,0.09874486,0.13562258,0.31581149,-0.0749793,-0.63942295,-0.12467036,0.20154858,-0.7931638,0.6276062,-0.53280145,0.17844461,-0.030557461,0.33548784,0.24852069,0.28078058,0.07814728,-0.013851385,0.11227215,-0.059822876,-0.0904303,0.16888939,-0.55660826,0.27097252,-0.2595823,-0.24450736,-0.047115564,-0.47912994,-0.46626398,-0.70022696,0.16795617,-0.78172755,0.5276264,-0.0027385305,-0.2500423,-0.26019564,0.10905337,0.30342343,-0.4400308,-0.09316387,0.24329878,-0.10012544,-0.25784722,-0.23492563,0.030949712,-0.2404,-0.44667006,-0.026625114,-0.5461005,0.00044577816,-0.1741879,0.18926042,-0.3392807,-0.11570915,-0.2964508,0.59837914,-0.3652126,0.05003829,0.3081575,-0.08355489,0.17948098,-0.53830975,0.07792113,-0.11255946,0.42234,0.16173352,-0.48353252,0.3675735,0.22902273,0.4062264,0.377617,-0.30261835,-0.15223835,0.008551925,0.16391958,0.35163108,-0.09810752,-0.36679086,-0.355376,0.10694277,0.2876003,0.33928332,0.14989038,-0.19425707,0.027220448,-0.12816964,-0.14302133,0.7236273,0.6194603,-0.06483766,-0.24230988,0.2949053,0.40607223,0.47141647,-0.24879865,0.10552751,-0.022141388,-0.5592333,-0.26176262,0.020318458,-0.15214522,0.5286755,-0.29100803,0.15510523,0.6790249,-0.061252583,-0.23970091,0.3127649,0.021287233,-0.21855946,-0.4894544,-0.10143294,0.18163298,-0.707475,0.08909737,-0.26095954,0.6268361,0.15205896,-0.70407265,0.4509175,-0.5786155,0.27299723,-0.071049936,0.6622347,0.9088154,0.40057865,0.46046457,0.7639752,-0.30414483,0.112115115,0.04817402,-0.49464044,0.16541904,-0.24240905,0.038453963,-0.5053999,-0.007131142,-0.285761,0.050059903,0.036939766,0.20652993,-0.5269305,-0.20807756,0.2425179,0.78298813,-0.2276706,-0.17279375,0.8580861,1.2107844,1.1009785,0.02951896,1.2527407,0.10871657,-0.18476468,0.06873293,-0.30191,-0.7553318,0.22915077,0.25537878,0.0032867193,0.2889872,-0.046994668,-0.037400987,0.35339537,-0.4882063,-0.0780176,0.057683457,0.4086727,0.008534551,-0.12847714,-0.45887718,-0.23095222,-0.138228,-0.017524824,0.05599161,0.23430276,-0.3052279,0.29055843,-0.042075366,1.0581142,-0.08652543,-0.02177821,-0.051640045,0.5004251,0.30535606,-0.2870627,0.014034301,0.31185326,0.51207036,-0.034184333,-0.55696476,0.16730142,-0.38478354,-0.1659608,0.016851127,-0.39587113,-0.11156863,0.00032514334,-0.29837608,-0.14943123,-0.12097258,-0.32632646,0.3540125,-2.9452507,-0.35878488,-0.120633684,0.30241543,-0.22625327,-0.12253627,-0.035526127,-0.5344547,0.21611251,0.20172311,0.6026308,-0.59946394,0.6131425,0.5314026,-0.7242659,-0.06066243,-0.80221564,-0.13368565,-0.0066797137,0.55259454,0.2091593,0.11817456,-0.11468294,0.044470984,0.66814905,0.24733062,0.26153517,0.50202787,0.34354892,-0.13674438,0.5779576,-0.13196607,0.62532556,-0.3846328,-0.09393863,0.30107197,-0.2309217,0.34326276,-0.27586517,-0.016878763,0.69810486,-0.4590172,-0.822025,-0.48603368,-0.20213163,1.2192348,-0.27309838,-0.30717805,0.26111725,-0.42929783,-0.045139175,0.092589974,0.5865651,0.09950764,0.032363933,-0.6575075,-0.10281972,-0.030525826,0.09212389,-0.05895467,-0.21382527,-0.39292005,0.68684953,0.017566485,0.64763886,0.10441861,0.3088431,-0.22333162,-0.2567638,0.21635783,0.7336543,0.38437164,-0.07079023,-0.21569918,-0.16834086,-0.22442944,-0.07564878,-0.024523253,0.8244992,0.52447015,-0.32824054,0.15921181,0.51832604,0.06795559,0.11550028,-0.10990936,-0.26022592,-0.19633369,0.019734511,0.42481527,0.91773295,-0.09683279,0.3957119,-0.11749347,0.22387993,-0.0788059,-0.5969024,0.6477043,0.48564327,-0.23415567,-0.079426646,0.52105993,0.5060362,-0.30854526,0.5652669,-0.4576153,-0.20571728,0.47913384,-0.056558583,-0.3661084,0.08091123,-0.33290255,0.104884095,-0.7628892,0.28598443,-0.41504917,-0.6898799,-0.44855568,-0.008717624,-3.2027254,0.20950975,-0.2574725,0.026100228,-0.30810037,-0.07216427,0.28306672,-0.52192825,-0.67809016,0.27706465,0.2192849,0.5387121,-0.24677192,0.10597313,-0.22996545,-0.18381266,-0.334131,0.20997296,0.059044432,0.29748598,-0.24381661,-0.4014369,-0.17498113,0.02959016,-0.39371124,0.17201328,-0.69016165,-0.27123845,0.09496948,-0.71027875,-0.21609445,0.5966169,-0.215123,-0.11384413,-0.2859471,0.1965288,-0.18287714,0.24522704,-0.15167947,0.20773716,0.08032538,-0.116856605,0.092728935,-0.18100613,0.5370838,-0.08034249,0.4457992,0.09898523,0.031936124,0.19020104,0.563154,0.65313977,-0.31460682,1.0953976,0.46187854,-0.15139078,0.2840325,-0.16815044,-0.3670688,-0.47480556,-0.25893623,-0.065589756,-0.45306,-0.4251003,0.10347245,-0.26100752,-0.9008174,0.5836399,0.22052716,0.5066373,0.04111916,-0.06618124,0.5392327,-0.09775529,0.03290561,0.023905924,-0.25825945,-0.5692672,-0.12772737,-0.768838,-0.4109087,0.092999965,0.7927542,-0.36970294,0.16019076,0.016116252,-0.31339458,-0.039073315,0.16304995,-0.009250323,0.16459632,0.38221917,-0.12443154,-0.4748,0.24838041,-0.08802426,0.033277106,-0.48445258,0.31002644,0.72374684,-0.70234585,0.75926566,0.34191045,-0.07266229,-0.2424953,-0.6139538,-0.25829753,-0.03257625,-0.068966374,0.59644574,0.25546303,-0.9489062,0.45464385,0.2684118,-0.47391248,-0.71140796,0.40680984,-0.23707773,-0.013933902,-0.17766666,0.20689511,0.06113858,-0.02068832,-0.19534719,0.24159145,-0.3306725,0.42761707,0.026884055,-0.06339768,0.05543651,0.07707462,-0.28808695,-0.7911274,-0.17220925,-0.61021405,-0.20596862,0.43229803,-0.04157949,0.037603788,-0.040509503,0.32827923,0.34166446,-0.18784876,0.19360258,0.037502915,-0.49671802,0.27940822,0.5602478,0.49804088,-0.40582046,0.5475512,0.3397106,-0.25817242,0.2448283,0.17838065,0.25149557,-0.105503656,0.5396275,-0.09978137,-0.025985425,0.2872937,0.9410084,-0.003687878,0.40577865,0.06334829,-0.061958443,0.24756165,-0.016003894,0.3850131,-0.06639191,-0.6128053,0.05916834,-0.28924924,0.31373382,0.45679006,0.37038228,0.1295764,0.20641303,-0.4389678,-0.17850344,0.22025774,0.008010179,-1.551639,0.47973838,0.29572526,1.0011152,0.5312541,0.19806266,-0.25249138,0.78112483,-0.09922993,0.0663955,0.5598359,-0.041603837,-0.44217432,0.66614795,-0.6120092,0.5620304,-0.044067908,-0.0041907527,0.20750456,0.02874205,0.3762491,0.91733533,-0.20611356,0.119403005,-0.016359081,-0.11393639,-0.025382206,-0.49035284,1.9227466e-05,-0.3795831,-0.36013713,0.75493366,0.5219699,0.40076038,-0.23200583,0.027680708,0.039122306,-0.092695296,0.18095751,-0.03893563,-0.23291533,-0.03685322,-0.6692796,-0.094158806,0.49101844,-0.08536895,0.2283625,-0.27080402,-0.059719414,0.12013664,-0.23061687,-0.051344395,-0.11857926,-0.75434566,-0.16623558,-0.15399557,-0.3739899,0.49442843,-0.21303064,0.08516595,0.19960962,0.07211797,-0.1441629,0.4082823,-0.06902789,0.66314703,0.015680104,-0.13328452,-0.43559495,0.119696476,0.1999187,-0.21386819,0.08144765,-0.42460564,-0.02968208,-0.44219935,0.62090623,-0.0005723263,-0.5481333,0.05252527,-0.056074616,0.045886915,0.5624744,-0.073148094,-0.2529063,0.0014958804,-0.1996733,-0.5291569,-0.1301029,-0.1659652,0.26733908,0.38445416,0.0112069845,-0.1351505,-0.2866337,-0.060216546,0.3642238,0.023893895,0.48538554,0.26069483,-0.018529078,-0.14770481,0.05338115,0.35842422,0.63255656,0.15506716,-0.10043853,-0.26215774,-0.20082752,-0.41168055,0.09793198,-0.005742045,0.25856212,-0.14518659,-0.17162192,0.7234512,0.027003715,1.349306,0.068277925,-0.3165736,0.12700354,0.48569584,-0.06966441,-0.13259536,-0.46851525,0.8866859,0.48297134,-0.16820385,0.092471026,-0.7333162,-0.13805194,0.25788477,-0.23767714,-0.13216995,0.07899667,-0.54681057,-0.24639912,0.3207219,0.17136554,0.24912007,-0.04298837,-0.16614382,0.16685838,0.07301376,0.26185504,-0.6882712,-0.31758028,0.16731493,0.3904948,-0.054379344,0.10410279,-0.43296227,0.34371388,-0.6070879,0.12735355,-0.27522716,0.17148201,-0.43980756,-0.4660686,0.14145239,-0.054502692,0.4650899,-0.36199757,-0.43442023,-0.1464088,0.39911938,0.014325331,0.08453632,0.63746315,-0.32175612,-0.101610325,0.26640275,0.6070348,0.90443796,-0.4188194,-0.1284868,0.19682848,-0.51634485,-0.7057523,0.32140088,-0.31455085,-0.013913061,0.0101963235,-0.36220825,-0.49950215,0.2420528,-0.051576655,0.22425228,0.17165047,-0.77431256,-0.051051393,0.17384559,-0.25112876,-0.2045591,-0.20490646,0.21448976,0.6972966,-0.3208878,-0.47999218,0.100069426,0.10273931,-0.22905737,-0.57977253,-0.1554607,-0.30198544,0.27677488,-0.01583759,-0.38330165,-0.12970519,-0.06488982,-0.5317327,0.14826967,0.027050382,-0.281387,0.25226614,-0.020593137,-0.20827906,0.92594594,-0.31871566,0.15091866,-0.46310148,-0.5779224,-0.7169874,-0.268414,-0.058248866,0.25102976,-0.096098624,-0.5170159,-0.0038021207,0.008216579,-0.18095462,0.059114683,-0.53733355,0.48525694,0.035278246,0.40185046,-0.26780882,-0.99024504,0.21772937,0.2652472,-0.061564434,-0.7416083,0.55673,-0.11905112,0.7950924,0.08310688,-0.009684831,-0.12312722,-0.2853841,0.055437934,-0.34802762,-0.10005156,-0.72753936,0.073019914 +845,0.34975475,-0.22674516,-0.39626282,-0.24863236,-0.2627245,-0.053471368,-0.25411835,0.19328542,0.23885192,-0.13553713,-0.24811587,-0.08042806,0.13736019,0.26515827,-0.09550192,-0.7078742,-0.09208394,0.22989933,-0.6959113,0.42429787,-0.6760629,0.292168,0.03555998,0.2990879,0.12052118,0.29069838,0.22594404,-0.1165419,0.09526192,-0.15982284,0.010469605,0.14911185,-0.7166067,0.066590555,-0.17039366,-0.23821403,0.014256917,-0.47346836,-0.46805236,-0.6373543,0.14997016,-0.88844746,0.49704316,-0.021603107,-0.12897013,-0.08990198,0.2520407,0.43109486,-0.35357144,0.05608358,0.4032784,-0.20739777,-0.20087235,-0.21716501,0.067559384,-0.30332732,-0.52976483,-0.059782572,-0.46028748,-0.27465603,-0.33867812,0.18212035,-0.3813611,0.01833162,-0.12530683,0.26225266,-0.35914746,-0.08198314,0.34273225,-0.1400801,0.23230794,-0.43658036,0.023130378,-0.065880455,0.5424474,0.03030507,-0.15290864,0.4290401,0.20478167,0.33331332,0.22216006,-0.25727466,-0.23770583,-0.09746931,0.34615198,0.44891828,-0.096133746,-0.22975771,-0.18433268,0.034210462,0.21457566,0.3587924,-0.04751816,-0.1722609,0.0075907707,0.08005546,-0.2938971,0.6982853,0.61984575,-0.15287654,-0.398542,0.19404839,0.46298388,0.36339656,-0.28630018,0.1181373,0.035771172,-0.5417181,-0.27329478,0.14207171,-0.092084065,0.30594757,-0.1248647,0.13154764,0.9140838,-0.15265611,0.07825269,0.06002112,-0.02118671,-0.06520198,-0.27647287,-0.23895362,0.101864114,-0.62990487,0.06365997,-0.29834244,0.7677407,0.16357425,-0.79027134,0.4157309,-0.68015635,0.16415802,-0.2594865,0.5911616,0.79652584,0.30948862,0.42913648,0.7607016,-0.33946353,0.22883447,0.0578556,-0.50016534,0.27789882,-0.39961675,0.17125906,-0.47078636,-0.056207053,-0.19883971,0.1228831,0.105551936,0.22321616,-0.46926847,-0.13827439,0.30375347,0.7252974,-0.28479964,0.05733818,0.59882516,1.1518576,0.9914795,0.056447882,1.1694946,0.27517888,-0.30364576,0.20672128,-0.40587875,-0.77863556,0.16002907,0.26156574,0.090175286,0.18849938,0.018061187,-0.10852985,0.31598404,-0.5756551,0.10528757,0.062476534,0.27863234,0.15356314,-0.18860455,-0.29486355,-0.14187196,-0.010513672,-0.016229741,0.04750705,0.27967563,-0.23486625,0.27724606,-0.034985967,1.2063645,-0.023561606,-0.0863896,-0.030015588,0.61891586,0.2989168,-0.21155831,-0.019415362,0.34098002,0.53688544,-0.060824487,-0.6722608,0.2400559,-0.25825068,-0.13093266,-0.20888352,-0.38918084,-0.083606504,0.17189805,-0.28376383,-0.1227864,-0.025230613,-0.15796545,0.41566485,-2.8178253,-0.33178976,-0.06240889,0.29252443,-0.17951839,-0.120618835,-0.059952457,-0.55554265,0.26849523,0.20572019,0.46482,-0.51586854,0.6878744,0.58283013,-0.60564697,-0.10050491,-0.7053011,-0.20562348,-0.08466736,0.44254133,0.11770938,-0.006383828,-0.12073357,0.26813096,0.57722104,0.1595234,0.042292867,0.43046245,0.3806841,0.029289028,0.79303664,0.015694499,0.53058237,-0.19593276,-0.06369286,0.25481766,-0.23771867,0.24837868,-0.19796656,0.049209844,0.562017,-0.37070075,-0.9202948,-0.53433144,-0.35404631,1.0466621,-0.34629628,-0.35536534,0.17998013,-0.30432037,-0.17333409,0.04064989,0.6406559,-0.049389694,-0.020396262,-0.69322246,-0.0010409866,-0.04161573,0.11724067,0.067327246,-0.10799213,-0.3500123,0.7769795,-0.042899925,0.5425977,0.06606283,0.2343167,-0.11227658,-0.30759892,0.21995445,0.71188694,0.25885004,-0.018902982,-0.2587994,-0.2949891,-0.061711468,-0.14270104,-0.10280234,0.56788164,0.661308,-0.17486887,0.20937347,0.33939457,-0.190461,0.040553506,-0.22005966,-0.2581921,-0.0075641614,-0.10307651,0.47768456,0.7768038,-0.110980324,0.45902878,-0.13189271,0.15596625,0.0128729,-0.57004684,0.6018689,0.45925173,-0.037675355,-0.020612244,0.4028218,0.4455161,-0.35607773,0.45257786,-0.5030491,-0.12983547,0.52255446,-0.123750135,-0.36001635,0.19878021,-0.3544221,0.020751502,-0.7616802,0.2921935,-0.3873096,-0.30844292,-0.47143427,-0.0883801,-3.5530894,0.18368033,-0.17991434,-0.07234822,-0.25002646,0.03207165,0.4141467,-0.46718934,-0.52496517,0.21263789,0.22993395,0.67606026,-0.025778452,0.06856399,-0.32342258,-0.08393324,-0.37447223,0.23181336,0.11520551,0.29031834,-0.11076561,-0.29894224,-0.01592234,-0.098703615,-0.4953471,0.14636402,-0.48381487,-0.4318853,-0.04782877,-0.36599392,-0.30489853,0.6530495,-0.3104945,0.0075302697,-0.18732846,0.059250195,-0.26402968,0.31790754,0.11491076,0.16198611,0.06865833,-0.026866585,0.030927852,-0.3649848,0.5539005,-0.09059971,0.40756825,-0.013098495,0.15205672,0.045291435,0.4806432,0.51723385,-0.24153973,0.943686,0.42824206,-0.14192365,0.16916384,-0.3051311,-0.2769212,-0.466463,-0.21210393,-0.16171598,-0.36443806,-0.46942714,-0.03454507,-0.42255887,-0.7419135,0.55805504,0.05595272,0.2446867,0.038495064,0.12054551,0.28750488,0.052438673,-0.059801728,-0.00061392784,-0.10852284,-0.4571929,-0.18223463,-0.57926,-0.4484682,0.03926664,0.75218207,-0.40479642,0.047782212,-0.17261766,-0.34209973,0.06374394,0.12297584,0.06818731,0.31501183,0.38387778,0.038781594,-0.56293315,0.47949082,-0.15045743,-0.038853247,-0.6512109,0.0011303766,0.5464544,-0.774374,0.6335255,0.30704975,0.059782635,-0.01782152,-0.45898834,-0.22179659,-0.00958372,-0.20597114,0.44066715,0.06750778,-0.93376416,0.46681976,0.27650154,-0.4099196,-0.6408411,0.39009723,-0.0562146,-0.19151719,-0.06393309,0.03802424,0.12379328,0.0373045,-0.13304077,0.4004052,-0.34766978,0.26745358,0.059382092,-0.06640838,0.4040973,-0.01717971,-0.20071915,-0.654216,-0.050445747,-0.44094372,-0.23773442,0.24346186,0.018438313,0.1380523,0.29170975,0.24208893,0.32077518,-0.20344904,0.086116254,0.044076376,-0.42433402,0.2329294,0.44786188,0.31090355,-0.40634894,0.47307724,0.18664983,-0.20736219,0.24541788,0.10629654,0.355404,0.020975431,0.3753248,-0.040879436,-0.08909787,0.24900876,0.893309,0.023613831,0.4952693,0.069957934,-0.09288077,0.40726858,-0.011387659,0.02737132,0.06868285,-0.48958704,0.056895193,-0.11231969,0.31390634,0.48136845,0.34640265,0.28378436,0.07089258,-0.2980246,-0.030413976,0.2922872,-0.21022557,-1.2760327,0.5376588,0.23697658,0.8567758,0.44589645,-0.007360999,-0.010721586,0.7133326,-0.23663767,0.08106719,0.32457396,0.07803333,-0.3995809,0.6370821,-0.58706677,0.3617025,-0.025970152,-0.12939268,0.09251701,0.08481081,0.32912356,0.72337884,-0.3075862,0.10040023,0.11110652,-0.20067763,0.07573331,-0.35968572,0.037021566,-0.38194147,-0.33810297,0.7346558,0.49477053,0.36579347,-0.17162205,-0.038615625,-0.11002667,-0.1397931,0.1866739,-0.1020455,-0.22358333,0.20752454,-0.66949433,-0.17745563,0.5078238,-0.20496702,0.15182911,-0.17964326,-0.1640691,0.10596387,-0.15624358,-0.014835922,-0.03707483,-0.70049846,0.054404687,-0.1262318,-0.42934245,0.5721113,-0.24526203,0.16974942,0.290395,-0.026686942,-0.10637232,0.38148355,0.12906498,0.67065513,0.021236334,-0.1770436,-0.41653225,-0.074217625,0.21731456,-0.29414934,-0.010722501,-0.4982442,0.112613045,-0.46002442,0.5411362,-0.16997792,-0.46944004,0.13848184,-0.10880179,0.070825934,0.60739535,-0.16605091,-0.09054794,0.12300486,-0.14774755,-0.27974346,-0.03164013,-0.2394612,0.15180771,0.25377873,-0.12238568,-0.029284677,-0.43961763,-0.10412955,0.5416526,0.03710552,0.44346187,0.27239186,0.034431722,-0.19949993,-0.13780524,0.16251259,0.53151023,0.089543715,-0.096751384,-0.39744067,-0.31021327,-0.2879127,0.29516798,-0.15789093,0.23999558,0.06786792,-0.37202814,0.66555375,-0.02106251,1.0315737,0.11496242,-0.20549998,0.18738458,0.50865084,-0.020417413,0.08659696,-0.46503347,0.6487466,0.5523261,-0.23313697,-0.042127695,-0.49299648,-0.086799316,0.2805792,-0.32931617,-0.093138255,0.0588836,-0.66694343,-0.23680635,0.1992923,0.17332508,0.113197155,-0.035659987,-0.047341757,0.0342461,0.1558727,0.27887926,-0.60612947,-0.2123899,0.17863211,0.2548152,-0.11712582,0.12114806,-0.3816855,0.36450306,-0.5153256,0.09198923,-0.45634368,0.040729236,-0.30692855,-0.30499682,0.03939039,0.06490022,0.30807835,-0.17519644,-0.3623511,-0.029061709,0.457284,0.05922437,0.27910775,0.60572255,-0.23085466,0.06257308,0.08713843,0.60890543,1.3197334,-0.38029817,-0.06432841,0.36160988,-0.4932347,-0.5102435,0.36435553,-0.29775777,-0.045835197,-0.06795476,-0.49298272,-0.46766138,0.1879987,0.013637475,0.06617145,0.14745256,-0.5602597,-0.35898092,0.28330675,-0.2205754,-0.23851077,-0.23362043,0.20321266,0.72889227,-0.29550034,-0.16768472,0.018292785,0.2584549,-0.26167646,-0.3278579,-0.08138936,-0.30307356,0.30055955,-0.11295724,-0.2606347,-0.16848925,0.18589854,-0.46414414,0.17053293,0.2081214,-0.3649074,0.11049085,-0.06821043,-0.06038145,0.9504642,-0.39182144,-0.1399026,-0.56994617,-0.5161689,-0.89075667,-0.3444021,0.29250604,0.27658787,-0.059518777,-0.3592092,-0.003430275,0.07103888,-0.14187607,0.048310075,-0.66518056,0.36282417,0.0847385,0.46271268,-0.23205602,-0.95407784,-0.004380869,0.13996488,-0.4042769,-0.6662299,0.71966547,-0.1487012,0.81302005,0.026680466,0.02511405,-0.17426927,-0.20769262,0.11031776,-0.36048746,-0.19586363,-0.8200162,0.102757774 +846,0.34203961,-0.141317,-0.33658662,-0.06913127,0.045669436,0.0824872,-0.04713911,0.3077708,0.12158937,-0.62469566,-0.21990104,-0.28881064,0.08162586,0.18338323,-0.13131268,-0.46244827,-0.058587033,0.15810943,-0.31963745,0.43906155,-0.39562955,0.23968318,0.12172773,0.26807076,-0.03874449,0.22930887,0.23033272,-0.14077322,-0.16120818,-0.14510539,-0.18813436,0.30819884,-0.37226453,0.048012428,-0.081969485,-0.33032554,0.04497115,-0.3082148,-0.32955816,-0.61497223,0.3494192,-0.91072905,0.42241293,0.14445421,-0.1460597,0.42719102,0.003343497,0.17564276,-0.10151663,0.05472266,0.20762183,-0.1299957,0.002398921,-0.24989559,-0.21730062,-0.10079474,-0.49909797,0.104691364,-0.27431673,-0.28258333,-0.2555572,0.106621675,-0.32198134,0.050215673,-0.1943041,0.36267117,-0.45993274,-0.10408359,0.2081271,-0.15060319,0.38317314,-0.49708852,-0.217792,-0.091128245,0.15900019,-0.24435075,-0.010514462,0.14576693,0.21217023,0.60749006,-0.022335801,-0.14197703,-0.34468415,0.02562864,0.25194484,0.58016247,-0.17910795,-0.282297,-0.03248889,-0.02239986,0.015717579,0.15014197,0.065242104,-0.29443496,-0.13276313,-0.009502598,-0.2084275,0.017708639,0.46721992,-0.33556443,-0.37264976,0.24818495,0.55171,-0.08856236,0.0043372875,0.021552606,0.01675341,-0.3861633,-0.13601594,0.19809444,-0.19859938,0.4112823,-0.14672925,0.29583985,0.6080126,-0.042872768,0.33259678,-0.17541419,-0.0016211399,-0.02562737,-0.42264843,-0.06453484,0.25738534,-0.33951625,0.17778417,-0.24368535,0.84506166,0.051677603,-0.74344,0.49115473,-0.41269365,0.122483574,-0.048416857,0.64378965,0.4088003,0.2167734,0.2929453,0.6718069,-0.59395427,0.07177376,-0.17494614,-0.31036398,-0.12916803,0.029823987,0.06365661,-0.4488131,0.036175914,0.21116458,0.0009116488,0.008322145,0.31024197,-0.49298424,0.003029257,0.15565453,0.879251,-0.309293,-0.009118562,0.5936645,1.0112149,0.7428012,0.029778138,1.1857731,0.23406795,-0.3289017,0.26603475,-0.48360744,-0.7576316,0.19217427,0.33740118,0.45621496,0.10592663,0.19646099,-0.10980169,0.4765946,-0.39835826,0.14860933,-0.32427374,0.05864328,0.007942102,0.042708807,-0.45333502,-0.18632762,-0.037564393,-0.035688646,0.06435878,0.15896857,-0.119743235,0.32019597,-0.0040125996,1.8554999,-0.22516428,0.19373791,0.1957135,0.28873977,0.0058331317,0.029087862,0.023844978,0.33644766,0.34653282,-0.04634722,-0.47072604,0.05959316,-0.1404378,-0.6058588,-0.123051785,-0.15646116,0.118821524,0.04388103,-0.40305758,-0.10490304,-0.13179994,-0.42121452,0.4015608,-2.7299619,-0.07762387,-0.099440135,0.27616966,-0.39201906,-0.38619712,-0.1680944,-0.3901855,0.49906614,0.35787684,0.36636075,-0.7091866,0.33895996,0.29086518,-0.27871442,-0.060678266,-0.67016774,-0.035071407,-0.018705402,0.26493272,0.07585255,-0.15044038,-0.13740346,-0.097269304,0.3732991,0.025507297,0.013243041,0.2602334,0.2091308,0.20672788,0.27505338,0.12181734,0.39331704,-0.2169874,-0.13251589,0.33755454,-0.2788618,0.27997547,-0.068345435,0.16452023,0.25941113,-0.35785988,-0.57903713,-0.6359841,-0.6072478,1.2465135,-0.23151708,-0.43869066,0.37843847,-0.050475113,-0.23442744,-0.14883928,0.34148854,-0.123798184,-0.079768695,-0.8464731,0.1621513,-0.12779738,0.29709953,0.09414063,-0.075864755,-0.52238977,0.8005246,-0.25536895,0.4793885,0.47689182,0.19583134,-0.107781835,-0.31155306,-0.057057288,1.0207777,0.2485576,0.1560607,-0.13438924,-0.22828607,-0.23612371,-0.22355649,0.11222185,0.4197998,0.74726963,0.046266455,0.019674057,0.30505034,-0.040841434,-0.042093564,-0.13237052,-0.2807791,-0.07252806,0.0008036537,0.57268554,0.44107625,-0.23055889,0.3627863,-0.1929388,0.24680373,-0.20187153,-0.31812742,0.3689187,0.65207434,-0.090400696,-0.10809247,0.6385609,0.42177176,-0.36389104,0.27050313,-0.54066575,-0.27054998,0.35712442,-0.23909715,-0.5051989,0.1430408,-0.3086322,0.17798755,-0.8924732,0.24036637,-0.2530069,-0.3724778,-0.6564717,-0.084152386,-3.648802,0.17744882,-0.2953717,-0.21054573,0.059403174,-0.16014025,0.11359765,-0.5002399,-0.41337612,0.15926203,0.080219984,0.34159517,0.04206315,0.16593191,-0.23539098,-0.028011987,-0.27179256,0.119062625,0.07667492,0.23331581,-0.012630082,-0.43803924,-0.029449085,-0.121794745,-0.33767036,0.0790892,-0.59119713,-0.43222743,-0.15272704,-0.5513405,-0.40072283,0.4540563,-0.3733683,0.026086297,-0.30268607,-0.048988312,-0.22548746,0.46698466,0.20900814,0.21122865,-0.04807244,-0.053644214,-0.11791872,-0.22042814,0.2592236,0.086846165,0.15377675,0.47919196,-0.2383642,0.054337066,0.2845499,0.5909557,-0.0008992744,0.62100583,0.52536476,-0.14678082,0.24324708,-0.28536254,-0.12609307,-0.6446055,-0.37582806,-0.044138517,-0.29998738,-0.5520984,-0.14442123,-0.4321994,-0.7352063,0.45050502,-0.02959554,0.0806309,0.10702266,0.2607155,0.45928332,-0.049512498,-0.0725922,-0.10278375,-0.0052313083,-0.5918338,-0.3950162,-0.6757608,-0.41764614,0.17784639,0.81105703,-0.07252266,-0.019112462,0.032672193,-0.13898538,-0.10046983,0.15354416,0.07742136,0.117915265,0.40992713,-0.04472736,-0.54672897,0.61044073,0.077263184,-0.22447872,-0.57593524,0.096627116,0.42603713,-0.68286216,0.7089585,0.2155825,0.10336374,0.009698863,-0.45696998,-0.35570642,-0.11981565,-0.29160228,0.3976901,0.13846144,-0.5511121,0.396628,0.4838688,0.032227393,-0.72902805,0.19025329,-0.04374865,-0.3343127,0.065531544,0.30877852,-0.099942274,0.08422218,-0.025847932,0.0431279,-0.4117766,0.29348812,0.3091868,-0.051607523,0.49761805,-0.33868846,-0.07439996,-0.638343,0.039772246,-0.55736035,-0.09290747,0.19802116,0.14787318,-0.028326502,0.23679261,-0.01117152,0.38400653,-0.25155646,0.08777883,0.11945891,-0.112263285,0.214882,0.26377985,0.23585768,-0.39203644,0.48288304,-0.0595271,-0.16899689,-0.31134066,0.05716351,0.5259613,0.15689793,0.24448131,-0.19776814,-0.2706489,0.31774536,0.78575176,0.17132418,0.4903805,0.09448355,-0.081203185,0.47075742,0.09891403,0.07208825,-0.00575648,-0.45469737,0.018965324,-0.033062134,0.14985885,0.25486287,0.16235891,0.47992253,-0.13089308,-0.19467013,-0.015822737,0.25607938,0.020025462,-0.7441068,0.23534419,0.033295598,0.72626656,0.49170664,-0.10745395,0.07058485,0.56068426,-0.25705627,0.17704916,0.17848705,-0.2270379,-0.59510475,0.61823684,-0.5341658,0.19414814,-0.09521336,0.01436549,0.03334752,-0.08500213,0.2235838,0.57349867,-0.15959477,-0.026821371,-0.12344297,-0.20745952,0.026352394,-0.26562172,0.119183436,-0.38357815,-0.23892856,0.58125126,0.4600529,0.38418823,-0.14937475,8.1786086e-05,0.14658765,-0.0074379924,0.042318407,0.10890705,0.20130566,0.06566876,-0.6295573,-0.33562258,0.54606754,-0.06499633,0.108792976,0.007974024,-0.34732744,0.20300034,-0.1656152,-0.23413956,-0.048439015,-0.4535955,0.15036239,-0.27072278,-0.33963925,0.19863054,-0.03751756,0.3085005,0.13685162,0.021671472,-0.32815033,0.2761308,0.12350406,0.76264083,0.1434326,-0.15267761,-0.46099314,0.11483295,0.20156302,-0.14260684,-0.08235664,-0.12771606,-0.0103759365,-0.6853479,0.47181943,0.026747605,-0.17631106,0.29746404,-0.2622306,-0.05473308,0.5608521,-0.033784803,-0.102007814,0.110352054,-0.18722495,-0.29654747,-0.12840997,-0.06701925,0.28897282,0.078890026,-0.04891569,-0.015486722,-0.09900392,-0.1947471,0.47125974,0.11527964,0.16465345,0.2433814,0.06218918,-0.37334698,-0.08704281,0.08394032,0.39774594,-0.066219255,-0.054647837,-0.034246225,-0.50171304,-0.3400636,0.08526468,-0.09307773,0.32595345,0.097518615,-0.23064813,0.75170696,0.12618455,0.9556305,0.14443651,-0.22977065,-0.100592054,0.42006922,0.027298579,0.069898196,-0.3202875,0.8633919,0.63692665,0.058313694,-0.05388364,-0.20037909,-0.033850532,0.25256968,-0.09832005,0.049518168,-0.023725452,-0.6861965,-0.3585494,0.19587946,0.26743948,0.061267313,0.004179803,0.13707097,0.11962866,0.0041205627,0.3359131,-0.4350401,-0.22548795,0.32045862,0.09050156,-0.0010817072,0.17526293,-0.3050182,0.45201534,-0.5361539,0.19372617,-0.24269022,0.0097672725,-0.09205016,-0.13563938,0.0996745,-0.13757037,0.44752184,-0.3828419,-0.27336934,-0.19571397,0.44565693,0.1213636,0.14878704,0.6267246,-0.09133762,0.1378823,0.105977654,0.50558686,1.1733176,-0.20592307,0.092555694,0.29608387,-0.10746094,-0.6011347,0.3572771,-0.021094488,0.088333145,-0.033955965,-0.27640948,-0.3993393,0.34245825,0.15040454,-0.17505121,0.16397643,-0.36194128,-0.24456546,0.19837885,-0.3460382,-0.1765648,-0.27508017,0.11291809,0.60594416,-0.257631,-0.25270158,0.06499831,0.21096995,-0.4055352,-0.50062454,-0.06852833,-0.3565195,0.21928981,0.16883887,-0.33294708,-0.05731201,0.1129624,-0.3337962,-0.0908667,0.19759874,-0.3558058,0.060692217,-0.31079313,0.004214044,0.8806491,-0.054428674,0.07883117,-0.6529484,-0.4123187,-0.90616834,-0.39395517,0.7040176,0.01730428,0.035086967,-0.3362392,-0.03854229,-0.05879224,0.022151008,-0.105257325,-0.34266034,0.46671274,0.23880252,0.2904005,-0.1707968,-0.5020787,0.021354258,0.05816067,-0.13312194,-0.45203683,0.5289073,0.11125828,0.8069053,-0.051106762,0.043508798,0.33421355,-0.4943231,-0.0017187084,-0.2384291,-0.27838382,-0.7175032,-0.097143605 +847,0.25112456,-0.1707499,-0.62795943,-0.21233673,-0.24133626,0.1898924,-0.2836021,0.3036408,0.34423408,-0.34987625,0.16686513,-0.16689657,-0.180966,0.205321,-0.13068087,-0.62588763,-0.03029509,0.08701162,-0.5487622,0.72492546,-0.39797032,0.13804647,0.19243807,0.22198275,-0.06566175,0.18584344,0.18613991,-0.016386917,-0.058415387,-0.07766104,0.08211314,0.09651189,-0.5746707,0.23487666,-0.086076684,-0.1700355,-0.065243445,-0.4078436,-0.38213286,-0.7691084,0.28764787,-0.86368614,0.378866,-0.16816537,-0.31315765,0.35592717,0.2789683,0.13986328,-0.17692235,-0.04698718,0.20971729,-0.2726873,-0.375696,-0.19871467,-0.22100456,-0.66177624,-0.63098973,-0.1899276,-0.4904371,-0.06103572,-0.34062186,0.3696242,-0.3574896,-0.05943867,-0.2712464,0.53459543,-0.4740872,-0.013406133,0.1280195,-0.3354123,0.26642796,-0.7295458,-0.06863455,-0.08036164,-0.041956846,0.320447,-0.124317214,0.31564778,0.3141913,0.5627835,0.066110656,-0.28275728,-0.37271678,-0.07455478,0.123394854,0.3593254,-0.057180054,-0.1302236,-0.24289863,-0.25796,0.3460352,0.30824807,0.13801059,-0.44025126,0.057943407,0.03163359,-0.4055114,0.3663914,0.65149444,-0.28196174,0.08448933,0.4816725,0.19109704,0.064521745,-0.2602119,-0.009342543,-0.13122211,-0.4027522,-0.050029222,0.24003719,-0.0797218,0.39328516,-0.097838365,0.14409056,0.6358423,0.015054222,-0.11774484,0.045844197,0.06768955,-0.004089308,-0.34746546,-0.1722161,0.33430418,-0.49651968,0.023617543,-0.42436168,0.50653833,-0.08962814,-0.7660334,0.38230038,-0.40481982,0.1431671,-0.05290258,0.6585884,0.846142,0.6893384,0.06753746,0.8728296,-0.46745273,0.055033915,-0.19973604,-0.26729128,0.39321312,-0.16662367,0.464455,-0.42387512,-0.014278392,0.14227095,-0.31157348,-0.24300125,0.5827431,-0.421508,-0.13537231,0.14617254,0.81881577,-0.25457734,0.047120187,0.6488249,1.2051165,0.83682466,0.18649544,1.1578023,0.38550836,-0.15679796,0.07731475,-0.18055372,-0.8549804,0.14278623,0.3054191,0.62917435,0.12994552,0.13337517,-0.12965769,0.4858062,-0.2538899,-0.17746022,-0.12702405,0.43508634,0.05201947,-0.21980454,-0.15681754,-0.04871219,0.18764348,0.08769127,0.17838378,0.27405325,-0.15536962,0.46682683,0.24841903,1.1858679,-0.16247909,0.0513763,0.17823175,0.2866472,0.2525493,-0.06856774,0.14804946,0.47866544,0.2775484,0.036060352,-0.6308197,0.095275275,-0.28428504,-0.6115768,-0.14693779,-0.3585058,-0.11886828,-0.10691533,-0.25958213,-0.29768315,-0.045086488,-0.45749778,0.28656438,-2.678666,-0.028938549,-0.28346878,0.35518318,-0.22499922,-0.20197217,0.0032586337,-0.43939108,0.6620289,0.4621605,0.35343012,-0.53474826,0.42448124,0.56343853,-0.41396275,-0.078035444,-0.58840525,-0.010842484,-0.16507973,0.40691847,0.033531442,-0.14070259,0.03324397,0.036906496,0.5540834,0.1389126,0.26306996,0.55365545,0.38147488,-0.21334024,0.33446446,-0.10724964,0.5107085,-0.20685539,-0.15539294,0.20993474,-0.40651688,0.18838891,-0.4282336,0.12264678,0.48022074,-0.26165372,-0.6487679,-0.48487148,-0.11714269,1.1509969,-0.44000453,-0.80535614,0.29657814,-0.06741772,-0.16723223,-0.010193551,0.64743984,-0.20364346,0.020241976,-0.7262361,0.033655588,-0.13602488,0.21731186,-0.03738566,0.107306905,-0.4952176,0.8454289,-0.07225568,0.67458606,0.35811737,0.26817805,-0.3387165,-0.41494617,0.2290419,0.6059683,0.44373524,-0.08149723,-0.1355949,-0.0646264,-0.0031958183,-0.50414205,0.041212924,0.604911,0.61762846,-0.06657463,0.15845488,0.3565974,-0.37601024,-0.03378435,-0.20400448,-0.4801222,-0.19766252,0.12697819,0.53779566,0.5576999,-0.007797746,0.2932104,0.0067973137,0.3180245,-0.097652,-0.62253416,0.5975693,0.76659477,-0.27379358,-0.1953256,0.608039,0.37550873,-0.17202319,0.583618,-0.5636997,-0.34803918,0.46886393,-0.08946406,-0.6668995,0.13395652,-0.3479294,-0.06917027,-0.69738644,0.23958942,-0.28399065,-0.54899776,-0.5817239,-0.15727066,-3.1034653,0.057252433,-0.35968405,-0.053492896,-0.25371516,-0.10448802,0.37842962,-0.44430053,-0.5554364,0.08419037,0.24373354,0.54653084,0.020949619,0.006641543,-0.33390102,-0.13017623,-0.25210366,0.26794147,0.033093326,0.16468498,-0.019685904,-0.3387739,0.04093449,-0.044529814,-0.47699445,-0.066807896,-0.37350997,-0.15062107,-0.24626707,-0.54296416,-0.28101256,0.6547944,-0.3129266,-0.0017700712,-0.219513,-0.018455155,-5.9843063e-05,0.26724353,-0.17001057,0.13519193,0.109287776,-0.13685659,0.12967332,-0.30574447,0.18097101,0.03205847,0.24661608,0.47794572,-0.09504012,0.056667347,0.52025247,0.49163,-0.06777514,0.906271,0.44186324,-0.11068177,0.30342,-0.19627689,-0.10488801,-0.63902193,-0.2595205,0.053928677,-0.46111834,-0.31454843,0.0015035153,-0.30141506,-0.7509797,0.5062727,0.20161597,0.19058791,-0.04043053,0.22555634,0.4559103,-0.050882086,-0.047092836,-0.18180151,-0.28231993,-0.40186733,-0.30620182,-0.8995864,-0.5025099,0.13776316,0.9862805,-0.012135583,-0.31692922,0.031799804,-0.31150958,-0.07403538,0.26727262,0.09286952,0.17837474,0.2895723,0.1825604,-0.6561368,0.5636423,-0.18599549,0.12920459,-0.68699646,0.33111253,0.60197663,-0.7601626,0.3846315,0.51802766,0.14407349,-0.3519953,-0.6935087,-0.22100598,0.14259575,-0.15384957,0.46089852,0.1860115,-0.96836597,0.61337703,0.24484344,-0.11806385,-0.770502,0.34788582,-0.11423306,-0.0481676,0.029098598,0.36599067,0.011683106,0.03788174,-0.43990737,0.32496426,-0.5126694,0.38658464,0.058851235,-0.077317625,0.62807184,-0.12456319,-0.118148245,-0.68474454,-0.0031556129,-0.60621387,-0.17923522,0.36058342,-0.066997655,0.11749959,0.26044324,0.039039295,0.4116435,-0.19887027,0.2073672,-0.29359293,-0.35968915,0.5223492,0.49674,0.30032367,-0.37543482,0.64901006,-0.09113177,-0.13562702,-0.07010567,0.02276504,0.41980976,0.4150233,0.49341288,-0.05089082,-0.11958528,0.25498688,0.78901976,0.22869028,0.35263953,0.1342232,-0.24777056,0.45112774,-0.094378375,0.17746669,-0.29995984,-0.67773724,-0.07715216,-0.089928724,0.19736649,0.47232774,0.23102154,0.5746551,-0.05238486,-0.074495584,-0.013935382,0.0467769,0.084462926,-0.98040223,0.5679583,0.13039376,0.8054648,0.63410175,0.0030193487,-0.05947963,0.7320078,-0.18228558,0.11006198,0.3327801,0.12618075,-0.32255438,0.5179168,-0.69993937,0.2577154,-0.21055181,0.014101684,0.21696557,0.27867785,0.38394088,0.82958335,-0.11774877,0.17382994,-0.17344795,-0.2935129,0.28028247,-0.12115153,0.033254992,-0.31263256,-0.5256209,0.51264584,0.2827914,0.4383742,-0.15997113,-0.11073812,0.28538427,-0.18109795,0.3371419,0.0046532433,-0.022897968,-0.15937187,-0.35306248,-0.31302804,0.5508191,-0.039943337,0.12261277,0.029116098,-0.19907881,0.17950805,-0.1330199,-0.26282737,-0.029372342,-0.5210947,-0.0023720027,-0.11979667,-0.6123174,0.5355658,-0.0409226,0.19191082,0.14113252,0.044719346,-0.22153883,0.002148219,0.1228813,0.7010837,-0.12476602,-0.14024666,-0.08427341,-0.38068774,0.2016717,-0.45372778,0.02077839,-0.07879347,0.03470475,-0.61822855,0.46055907,-0.40940332,-0.21677707,0.2966232,-0.29580316,-0.03668022,0.37015158,-0.2217553,-0.09750184,0.35001463,-0.09569185,-0.1791548,-0.32772624,-0.4353953,0.20959902,-0.3046814,0.14545316,-0.10972427,-0.06726625,0.063745104,0.45171496,-0.047616314,-0.041235533,0.4093949,0.19132312,-0.48414075,-0.056472264,0.28686368,0.5792298,0.16242535,-0.04178626,-0.27078387,-0.58109564,-0.49711582,0.05005326,-0.014726581,0.31373075,0.07759879,-0.54296124,0.8527008,0.073784575,0.91499484,-0.077658094,-0.47659153,0.14033508,0.5020365,0.07629255,0.073861316,-0.3665713,0.7471679,0.64824706,0.0109192645,-0.019130388,-0.5958618,-0.06475211,0.36624315,-0.3227758,-0.15640923,-0.11551697,-0.818998,-0.32015452,0.1598002,0.14203708,-0.005511,-0.217007,0.07966821,0.10720791,0.2723309,0.33237737,-0.61517614,-0.02659789,0.3897252,0.15213394,-0.020682871,0.2748789,-0.3955998,0.21349189,-0.6265372,0.1960956,-0.32856923,0.013585834,0.13307835,-0.1801462,0.1301417,-0.022768259,0.255286,-0.094055384,-0.45414677,-0.056730893,0.62007767,0.18512551,0.25481576,0.6981713,-0.23573099,-0.05020783,-0.056565132,0.6310418,1.3087566,-0.20080306,0.06743797,0.19692999,-0.5131712,-0.8054645,0.20208625,-0.19231455,0.15419598,0.059489932,-0.5012797,-0.33489713,0.30909768,0.012196159,-0.33321992,0.10670808,-0.4374043,-0.33055678,0.07936594,-0.31960624,-0.16988783,-0.2769815,0.18274498,0.7562711,-0.3707547,-0.16493227,0.09405037,0.446041,-0.2983394,-0.5344149,0.10237062,-0.4844294,0.27023354,0.107115,-0.45178622,-0.0050689974,0.041904733,-0.6320713,0.22667035,0.092489175,-0.25548658,0.03533767,-0.41949654,0.070003524,0.76103747,0.080374844,0.046302173,-0.5214204,-0.62414145,-0.72778356,-0.32143268,-0.022119995,0.14006333,-0.054033283,-0.53752416,-0.08907154,-0.17734505,0.14271532,-0.070188336,-0.5699741,0.38214198,0.07480528,0.4088171,-0.19354023,-0.9219256,0.1615494,0.12812836,0.058240637,-0.49411926,0.57631236,-0.2533808,0.91052467,0.14862923,0.029766629,0.011211141,-0.6979409,0.348641,-0.35806334,-0.4206774,-0.57152706,0.07641746 +848,0.06896128,-0.60805863,-0.1960318,-0.2034314,-0.0144265,0.12871203,-0.05929203,0.53725505,-0.07680579,-0.37844583,-0.4815363,-0.2966729,0.107821256,0.76444155,-0.08015049,-0.5316976,-0.39612478,0.16511449,-0.55779845,0.23755527,-0.5522176,0.14325525,0.20975573,0.40466356,0.37461635,0.32782465,0.5332184,-0.1331385,-0.040063404,-0.12243548,-0.120494686,-0.29698503,-0.4000504,0.14627156,0.008450586,-0.5294247,0.026189543,-0.7372309,-0.20427279,-0.7346057,0.40098524,-1.024542,0.34869298,-0.29072562,-0.043535925,-0.14136903,0.06266048,0.54282963,-0.23383754,0.040455,0.38814273,0.012889989,-0.05380246,-0.018599458,-0.2197364,-0.18837622,-0.55434185,-0.08341643,-0.27280492,-0.6125608,-0.09365702,0.15113041,-0.32010466,0.106708124,-0.078820825,0.22283186,-0.39199403,-0.43220785,0.4584356,-0.10891288,0.54562217,-0.56559527,-0.23240496,-0.021009307,0.41910338,-0.23666674,-0.017469881,0.41441756,0.36334887,0.30051982,0.23494947,-0.1173174,-0.016599245,-0.118643075,0.17172532,0.78556424,-0.064681105,-0.4447308,-0.12685704,0.03690335,0.16147198,0.4077791,0.05240581,-0.38886198,0.03569254,-0.04529448,-0.34079257,0.242042,0.5203975,-0.033661872,-0.3407722,0.27237046,0.55088353,0.18126956,-0.09935614,-0.20226403,0.029442519,-0.4237343,-0.118963614,0.28798664,-0.16490118,0.6293051,0.05219186,0.40737927,0.9006918,-0.22441344,0.327927,-0.46339095,-0.07066807,-0.40700948,-0.45415735,-0.3043717,0.18373136,-0.4220906,0.19805738,-0.26313943,0.92805225,0.22005484,-0.6940864,0.604475,-0.4542546,0.21301351,-0.14061314,0.62568337,0.35887653,-0.009691864,0.31779438,0.8791908,-0.2300134,0.09364627,0.04584892,-0.28767812,-0.21859561,-0.24897072,0.2952761,-0.54668915,0.023707762,-0.040231787,0.14913748,-0.0770651,0.22823924,-0.5941354,0.03115028,0.20455314,0.8997009,-0.4256292,0.16171692,0.6495725,1.203094,1.1205801,-0.024092969,1.4778324,0.43541124,-0.42895204,0.25703335,-0.5367571,-0.69302267,0.2003319,0.65853554,0.4380541,0.32988113,-0.049251333,-0.3641742,0.45154357,-0.5673156,0.42958277,-0.16464424,0.24815874,0.12629119,0.12930614,-0.7164541,-0.23630601,-0.1666319,-0.17264707,-0.06463463,0.032807335,-0.30383813,0.20837557,-0.35515264,1.7748917,-0.13939783,0.03860865,-0.02624609,0.6094543,-0.15488812,-0.26964706,-0.20273852,0.20345974,0.8094899,-0.22065184,-0.6218365,0.3716371,-0.25479662,-0.38280797,-0.08519015,-0.32259464,0.10429236,0.07575046,-0.22799662,-0.06291756,0.117288575,-0.46956939,0.42486614,-2.8242302,-0.38716853,-0.42611116,0.07650467,-0.48756278,-0.14663121,-0.17628679,-0.48139822,0.42076236,0.3031815,0.4729454,-0.5520454,0.48854986,0.48580372,-0.15208109,-0.07201587,-0.77066064,-0.057028692,-0.0033284314,0.29280853,-0.0043309405,0.068339154,-0.22283673,0.072812974,0.5187361,0.2251624,0.112659335,0.6529293,0.34964964,0.17995515,0.6036564,0.07222695,0.43117878,-0.40104374,-0.0066391937,0.1256394,-0.21559937,0.18223068,-0.34405744,0.10852441,0.4128582,-0.6939944,-0.6727806,-0.7087305,-0.92191184,1.013421,-0.43683475,-0.33186424,0.49897003,0.22300129,0.10223237,-0.17879787,0.6679105,-0.15570597,0.054680064,-0.63985634,-0.020480461,-0.07217605,0.12210302,-0.06954693,-0.027084187,-0.4552464,0.58645463,-0.25622943,0.49458992,0.19038488,0.23472406,0.08495365,-0.17775047,0.10630162,0.79655343,0.19782686,-0.15263906,-0.06807983,-0.09568688,-0.3889017,-0.5067184,0.18861803,0.4814548,1.15373,0.023660472,0.11136155,0.3584657,-0.15259384,-0.039881706,0.001122117,-0.2717933,-0.14577761,-0.11141447,0.5322983,0.158668,0.016209677,0.7118061,-0.5282711,0.15734862,-0.11153419,-0.32333246,0.35543305,0.09617146,-0.16956577,0.073462136,0.39938554,0.43099934,-0.43988585,0.39518192,-0.6844032,-0.057592466,0.77467954,-0.198714,-0.6295544,0.16994795,-0.10206496,-0.06593911,-0.9545188,0.4393656,-0.2936365,-0.6133407,-0.3523676,-0.20005043,-2.9282684,0.19864672,-0.04874549,-0.53906864,0.020166643,-0.11218949,0.28877413,-0.6459894,-0.6395443,0.22058296,0.09456089,0.5827467,0.11268907,0.028552257,-0.21858355,0.17390941,-0.34607124,0.10109556,-0.014891788,0.27158973,-0.083776355,-0.45867297,0.010189112,-0.09584441,-0.74114394,0.3419724,-0.8044009,-0.60967875,-0.23681743,-0.6848476,-0.47357914,0.81295943,-0.24157827,0.07981844,-0.13349986,0.061391015,-0.2642622,0.46615392,0.07029565,0.40112042,0.13489386,-0.122619666,0.2518893,-0.28618157,0.43958956,0.12851371,0.45176962,-0.18629523,-0.1818919,0.34846833,0.385513,0.67917037,0.12936963,0.835486,0.6245309,-0.251409,4.245341e-05,-0.5406885,0.17871732,-0.5008904,-0.42390773,0.047958724,-0.31462353,-0.926005,-0.0009786636,-0.1789968,-0.57161033,0.5351501,-0.0072295777,0.37651992,0.025910616,-0.077638306,0.15016112,-0.0291548,0.10251211,-0.043559525,0.14453672,-0.46722892,-0.23546049,-0.83287406,-0.54023767,-0.023909964,0.5833484,-0.144912,-0.06459862,-0.1503624,-0.86822844,0.37264055,0.033358622,0.02766122,0.18663935,0.15088847,-0.13770524,-0.7600459,0.4369542,0.19756539,-0.016823001,-0.660316,0.14618456,1.0725113,-0.62907636,0.67395586,0.16898367,0.058654316,-0.34403643,-0.27761713,-0.2812078,-0.20411357,-0.19892655,0.14857432,-0.2598164,-0.54485047,0.40720975,0.47010797,-0.34331393,-0.67822903,0.22569078,-0.07900178,0.052573428,0.10244727,0.17149594,-0.042277962,-0.13442227,-0.3899295,0.20510292,-0.44054553,0.47382632,0.23148467,0.16345808,0.5702051,0.06967156,-0.16131803,-0.4929009,0.14390305,-0.45346612,-0.09514974,0.37670505,-0.077732265,-0.16070043,0.33575442,0.08987191,0.2753327,-0.2771875,0.047097757,0.119593985,-0.56840205,0.03761755,0.32933533,0.06716721,-0.4179137,0.5607018,0.10816704,-0.21546076,-0.046034694,0.027083863,0.32585245,0.29339463,0.23913006,-0.5208535,-0.44189703,0.40115455,0.66918766,0.29627573,0.7192365,0.25478208,-0.12850472,0.4312968,0.024805203,0.1926443,0.10382384,-0.32502735,0.12872572,0.12360506,0.07666283,0.36234918,0.19671208,0.400427,0.070490666,-0.29289612,0.037134256,0.14196123,-0.23160276,-0.9236571,0.55741817,0.22437452,1.0365815,0.36462566,-0.08852665,-0.14917809,0.64930964,-0.1029447,0.14312902,0.3702914,0.075866684,-0.6957043,0.9128953,-0.5030354,0.48186544,-0.0510299,-0.11905141,0.07633623,0.18232574,0.35058194,0.7595394,-0.19474933,0.060739227,-0.27304208,-0.0057344586,0.019784674,-0.4491494,0.46330705,-0.5983345,-0.56754804,0.44548827,0.41694158,0.24174055,0.045869567,0.022967631,0.025126569,-0.14615406,0.31166214,-0.025646754,-0.2191145,0.36885202,-0.85689443,-0.5092666,0.5015539,-0.0028159022,0.26736298,-0.14693551,-0.32724592,-0.05932287,-0.23694189,-0.022153996,0.1860478,-0.831745,0.0010163402,-0.1970214,-0.28416154,0.105336145,-0.30124483,0.33286116,0.1206413,-0.1197878,0.05690795,0.044225574,0.21909657,0.988299,-0.18027306,-0.37146765,-0.30992258,-0.054634348,0.22285515,-0.29463604,0.40232414,-0.29048717,-0.30260545,-0.6485846,0.7191764,0.12931871,-0.62550455,0.5440296,-0.25245267,-0.1814331,0.6344017,0.030642897,0.37048274,-0.26288116,-0.3252251,-0.19997221,0.25707522,-0.3951717,0.17846732,0.097226605,0.19728972,0.053749323,-0.11693484,0.022931412,0.7404856,0.08189085,0.5748864,0.30399996,0.22731572,-0.2141167,0.04425575,-0.17890337,0.4699371,0.46227106,-0.037828427,-0.27540118,-0.27752715,-0.074158564,0.26158616,-0.29267684,0.43299574,-0.21934941,-0.4464559,0.6167851,0.09297731,1.2797134,0.15871486,-0.29677305,0.019712305,0.58079535,0.002456326,0.15590602,-0.61582124,0.8282748,0.58316123,-0.119086035,-0.030976646,-0.3785208,-0.27292886,0.74199456,-0.2660616,-0.24689376,-0.040850848,-0.63515717,-0.57171947,0.21909495,0.21240291,0.097800545,0.21941178,0.045128677,0.11137062,0.00021269172,0.83936125,-0.6046965,-0.09875548,0.14341933,0.13798513,-0.058865786,0.21204722,-0.4660996,0.31234503,-0.8161042,0.53246707,-0.3068748,0.085263684,-0.12223193,-0.33036128,0.07297988,0.06883794,0.769142,-0.13042955,-0.54190063,0.053904865,0.51319623,0.022723764,0.1130237,0.6973832,-0.22850177,0.10453066,0.230289,0.5433488,1.4771554,-0.38385016,0.3254512,0.44390285,-0.61302686,-0.67688227,0.5975439,0.063225254,-0.069374144,-0.19393688,-0.39370307,-0.4484206,0.3180361,0.22191966,-0.37829322,0.17491539,-0.3562411,-0.4210546,0.4010754,-0.19670488,-0.34659347,-0.44786823,0.44743901,0.52514625,-0.38060609,-0.40911436,0.17056204,0.4503666,-0.4702627,-0.3348113,-0.14162534,-0.3304479,0.3791782,-0.18993148,-0.41359153,-0.30440122,-0.16486448,-0.32130745,-0.12318398,-0.16345209,-0.5132695,0.113735415,0.06204719,-0.24582468,0.899596,-0.18741636,-0.365823,-0.9797009,-0.3962797,-0.9050964,-0.53713834,0.5816224,0.17387861,-0.3052203,-0.18868808,0.16628072,-0.009122156,-0.07644837,0.13691214,-0.34631187,0.2687271,0.075682804,0.4873145,-0.35378867,-0.81018347,0.2820143,0.090768486,-0.09134899,-0.5959328,0.78036714,0.058990933,0.645406,-0.05346742,0.042899877,-0.25829208,-0.15230197,0.14405501,-0.2067025,-0.18020888,-0.88875335,0.28274745 +849,0.49333584,0.028870607,-0.5150374,-0.26337707,-0.27123877,0.18153468,-0.16788621,0.2573046,0.30739257,-0.21370132,0.10601602,-0.15512963,0.004840851,0.27055538,-0.115638375,-0.7813519,0.115493745,0.11610683,-0.56781226,0.34033865,-0.608558,0.37710294,-0.07763532,0.485025,0.033004034,0.19986235,0.042999182,-0.044768404,0.14567824,0.011157012,-0.11781483,0.37866586,-0.5028354,-0.07639173,-0.07623233,-0.42326215,0.026249409,-0.43500358,-0.3457032,-0.66055554,0.4308636,-0.7866302,0.6999436,-0.003608934,-0.39705727,0.03730898,0.034208857,0.3290412,-0.2146819,0.15229225,0.20035034,-0.2309406,0.11651464,-0.057378683,-0.39961877,-0.5172641,-0.6318309,-0.050041497,-0.6106322,-0.077901125,-0.21644033,0.19377069,-0.31434727,0.1266242,-0.17455629,0.22167778,-0.39678904,0.028767021,0.33410245,-0.165288,0.22494555,-0.39410433,-0.19753298,-0.06598457,0.21429922,-0.03991908,-0.30506474,0.20405705,0.36168402,0.6281056,0.0029455603,-0.33971518,-0.18066573,-0.057000782,-0.18395182,0.6463482,-0.17941645,-0.21140727,-0.3776905,0.10470566,0.26096877,0.3170002,-0.05211516,-0.34120286,0.007910528,0.17967662,-0.25881326,0.5060908,0.49084672,-0.4630852,-0.16685957,0.36437258,0.37812474,0.18406907,-0.2446429,0.32406563,0.03636875,-0.57049817,-0.25531667,0.20212828,-0.056904204,0.61445224,-0.06870329,0.32774577,0.7434506,-0.13882929,-0.0021417935,-0.20983483,-0.014029053,-0.11674375,-0.37900335,-0.08929797,0.18521132,-0.5100949,0.09662126,-0.21909009,0.7813927,-0.0015133321,-0.86496025,0.3527152,-0.48992598,0.07963831,-0.1999125,0.5591593,0.7518724,0.19442965,0.23721617,0.91128147,-0.5380156,0.04071857,-0.032561246,-0.37863013,-0.008921814,-0.050625872,0.056133263,-0.52893007,0.1122891,0.10025048,0.10065003,0.14409153,0.3656235,-0.48141482,-0.11979631,0.050452568,0.7139184,-0.39766943,-0.09982227,0.7279829,1.0808221,0.94337004,0.01589156,1.2454158,0.39242607,-0.08830063,0.15306225,-0.26553747,-0.5747879,0.15379387,0.25007096,0.14516835,0.5263668,0.14583157,0.025218537,0.5104466,-0.20239598,-0.044535246,0.056891643,0.11709983,0.057531636,-0.031110378,-0.38407812,-0.14350456,0.10692103,0.048585616,0.07725751,0.21172749,-0.21930936,0.27534416,0.086682476,1.426702,0.054634545,0.055511378,0.019586546,0.41916215,0.24533471,-0.18839332,-0.04816353,0.4233051,0.4007484,-0.12530325,-0.5522481,0.020046715,-0.3247802,-0.2924694,-0.18439339,-0.33824062,-0.13394973,-0.116117746,-0.6483599,-0.054863382,0.028490478,-0.30944258,0.5515249,-2.791334,-0.4506105,-0.17343491,0.33290243,-0.18582827,-0.4315557,-0.27866685,-0.42043462,0.23012608,0.40578616,0.17900735,-0.67265546,0.5294333,0.29752254,-0.2477281,-0.02189248,-0.70325,-0.011095236,-0.017724684,0.3041472,-0.07882502,-0.13885787,-0.14080885,0.38692966,0.6412071,0.0926691,-0.079140075,0.18411806,0.61429876,0.00021076799,0.5571028,-0.024511762,0.6221928,-0.10926531,-0.12426147,0.2205023,-0.45364726,0.4088482,0.045714352,0.16391428,0.5260651,-0.4457367,-0.727455,-0.5430731,-0.27320722,1.0651666,-0.33044222,-0.328086,0.27413553,-0.1832451,-0.35236874,-0.033476595,0.5060855,-0.034972973,-0.1275609,-0.6607915,-0.005363091,-0.20206456,0.06629363,-0.105403915,0.07745286,-0.22217618,0.6150644,-0.14438578,0.45857292,0.2885458,0.085008666,-0.01818281,-0.39158547,-0.046057478,0.7360201,0.36515048,0.11074432,-0.2139851,-0.12775049,-0.2970256,-0.017818423,0.2461117,0.4879999,0.71178305,0.0008321126,0.18638381,0.38033766,-0.13524535,-0.0767454,-0.14146751,-0.26952592,0.039008226,0.026256824,0.62121284,0.6546975,-0.16016258,0.3796711,-0.0766907,0.05065524,-0.28815016,-0.4257309,0.38165185,0.7711961,-0.09150695,-0.29442474,0.49956074,0.3449559,-0.40402666,0.30714485,-0.5248388,-0.23514546,0.6103279,-0.06388781,-0.36579385,0.20461355,-0.39362222,0.042931534,-0.93487906,0.24940191,0.0827047,-0.5253474,-0.47593004,-0.23380008,-3.6384761,0.31341165,-0.14928511,-0.10221405,-0.07122567,-0.20930998,0.39549872,-0.41323072,-0.54034126,-0.014608222,0.013465294,0.5345014,-0.19470347,0.15503028,-0.27673626,-0.2114357,-0.25033662,0.14355749,0.11145519,0.35115308,0.020592371,-0.35125116,0.10582698,-0.43497568,-0.50429845,0.04040498,-0.51245636,-0.5396863,0.024650717,-0.49162117,-0.26966885,0.7300653,-0.34203765,-0.036888804,-0.34933674,0.017481979,-0.19804545,0.37407348,0.2161477,0.10039458,-0.031372413,0.06482811,-0.1626798,-0.4183382,0.26502576,0.037390504,0.26848406,0.3126564,-0.090585425,0.19866781,0.5066985,0.5375871,0.032006986,0.72209007,0.26082927,-0.09210316,0.30501765,-0.26220247,-0.17117333,-0.68571776,-0.4356488,-0.3134521,-0.53889835,-0.5811243,-0.186483,-0.4307726,-0.7603397,0.41463926,-0.035598412,0.23005264,-0.07280493,0.34852177,0.4657063,-0.12608644,0.06929956,0.09970665,-0.20514171,-0.41298914,-0.48309988,-0.57405865,-0.5845062,0.3337688,1.0354898,-0.14779407,-0.029616157,-0.025930671,-0.2444517,-0.03406318,0.086477965,0.25797924,0.17423268,0.3596743,-0.23990592,-0.65520644,0.33756587,-0.35038662,-0.13832477,-0.7084722,-0.06533756,0.7342318,-0.6501081,0.63646513,0.31345013,0.34029892,0.1247867,-0.58448315,-0.19353575,0.105187796,-0.255555,0.646699,0.11127653,-0.61912745,0.52886397,0.18250784,-0.021321988,-0.53441715,0.55920166,-0.008356363,-0.29630482,0.022461792,0.32759178,0.107630126,-0.048452612,0.020561423,0.1818518,-0.55316883,0.23451693,0.37816468,0.010065351,0.43275693,0.05193993,-0.063276984,-0.60512865,-0.13971591,-0.6245217,-0.18348269,0.12509184,-0.030202786,0.28214934,0.13565235,-0.049550287,0.4232658,-0.2878214,0.20365137,-0.13463216,-0.198935,0.26175848,0.5379617,0.31629544,-0.46218222,0.61759835,0.16251868,0.046979062,0.047125872,0.09217729,0.53983414,0.12148719,0.4072013,-0.20414396,-0.12891603,0.12380914,0.6732606,0.23382097,0.3132805,0.16533476,-0.113592535,0.32106704,0.18990682,0.120076574,0.0058503468,-0.27108762,-0.14794059,-0.027053483,0.2406388,0.4409432,0.10037366,0.26249173,-0.09080486,-0.30357036,0.21865048,0.1787272,-0.26852894,-1.1368717,0.25919616,0.33250982,0.67021114,0.3403339,0.01982805,0.018411461,0.30579287,-0.2958196,0.14926942,0.43400818,0.03881668,-0.30252334,0.5721692,-0.4459976,0.5692459,-0.23385814,-0.05531193,0.124166206,0.2683613,0.48024288,0.89676034,-0.22068046,0.093161605,0.10380769,-0.27028883,0.031188695,-0.3008849,0.035694115,-0.6239523,-0.19992714,0.659699,0.5121674,0.36002713,-0.36899593,-0.09172003,0.100994796,-0.10454562,-0.11494153,-0.08564864,-0.07528353,-0.15509464,-0.6029441,-0.26499757,0.5079215,-0.12277065,-0.007024753,0.06551313,-0.4068058,0.36168692,-0.05335852,0.08780269,-0.037325405,-0.70570374,-0.09981319,-0.33151785,-0.6695313,0.3749007,-0.26095426,0.28334427,0.24594419,0.047211494,-0.2540723,0.29791322,0.0073586465,0.9111205,-0.07418612,-0.1823313,-0.47655466,0.0799803,0.3921135,-0.25803712,-0.26498982,-0.37803468,0.18628503,-0.46664792,0.4408992,-0.13386866,-0.21331163,-0.1544107,-0.054078802,0.10109512,0.42835993,-0.35169253,-0.11427966,0.06528094,0.005701232,-0.342279,0.034002766,-0.37196657,0.3430656,0.058085244,-0.214212,0.014519564,-0.14585702,-0.0669839,0.2535463,0.16086738,0.32199678,0.3711519,0.043579895,-0.2599472,-0.047253434,-0.030369313,0.45295516,0.025546242,-0.16814902,-0.25252396,-0.36236593,-0.2771582,0.45279923,-0.08898373,0.23975162,0.08311772,-0.42440483,0.81833595,0.22123982,1.1014687,0.19484545,-0.2499241,-0.01749334,0.55785644,0.06026583,0.08491516,-0.3870813,0.81595427,0.51915324,-0.16059345,-0.28360155,-0.31510565,-0.14565912,0.21283184,-0.23660626,-0.21835701,-0.1352927,-0.663851,-0.1536141,0.055765565,0.18052933,0.2573861,-0.037575986,-0.029363541,0.12086827,0.04879453,0.39285952,-0.4673123,-0.19556087,0.19197513,0.22641467,0.00045597155,0.16176002,-0.36048114,0.4105315,-0.6220866,0.13534208,-0.52384925,0.07246469,-0.02008415,-0.2752355,0.19635774,-0.14547446,0.19944061,-0.2954732,-0.1776424,-0.17397125,0.61933875,0.25282294,0.23284689,0.69300187,-0.23898093,-0.19831626,0.082854815,0.43383014,1.4463822,-0.030557616,-0.052339975,0.36647862,-0.2001925,-0.59423804,0.07083787,-0.44713634,0.16364981,-0.061432347,-0.36431935,-0.31800312,0.3603085,0.08903287,-0.1286263,0.059060797,-0.5129558,-0.1713095,0.4414077,-0.20570993,-0.2877954,-0.29496226,0.19788964,0.71944934,-0.35225525,-0.3641327,0.057059485,0.29503644,-0.23563062,-0.7026982,0.20153627,-0.41410396,0.4582798,0.10275699,-0.32560167,0.028377049,0.26548776,-0.45525,0.16166799,0.44314042,-0.3713606,0.02949155,-0.3146024,-0.2620631,1.1756583,-0.116165414,0.06973644,-0.6911789,-0.45265907,-0.8742425,-0.37479874,0.12374028,0.23932716,0.0052527944,-0.496065,-0.065161444,-0.04150938,-0.191288,0.0786521,-0.28717244,0.48668778,0.10870515,0.5379101,-0.069159046,-0.90749544,-0.06948202,0.050427914,-0.51737773,-0.51389116,0.6253186,-0.13783501,0.6388051,0.08195619,0.18074553,0.12086115,-0.40026134,0.35012558,-0.45310405,-0.110787354,-0.8348592,0.057655487 +850,0.35313746,0.06724202,-0.6347367,0.08140942,-0.5102296,0.11913839,-0.22436558,0.26040637,0.33482718,0.0072579184,0.18406911,0.10586617,-0.38151255,0.30103722,-0.16559726,-0.8098027,-0.09690859,0.100015186,-0.6378106,0.45623946,-0.29824463,0.4437389,-0.13182901,0.36820826,-0.09354317,0.25549087,-0.04600385,0.12958924,0.010321866,-0.26919785,-0.10051185,0.29712656,-0.6966491,0.36988762,0.075365245,-0.30186883,-0.01174095,-0.32270297,-0.24372715,-0.71575445,0.27251637,-0.674735,0.7155943,-0.15800422,-0.3975296,0.19953413,0.015939096,0.13479547,-0.22958608,-0.032316644,0.17552726,-0.28187862,-0.012231837,-0.18696038,-0.30548742,-0.4805301,-0.41860273,-0.11719084,-0.62549317,0.13742262,-0.29393396,0.318704,-0.33349642,-0.09667599,-0.46847042,0.1679005,-0.26818076,0.17574997,0.2889692,-0.33100143,0.04092783,-0.46754912,0.019596497,-0.09897664,0.36569738,0.037751243,-0.18314928,0.29658812,0.24189258,0.39979103,0.0715274,-0.2545003,-0.34238967,-0.096086584,0.04113919,0.40722093,-0.23001058,-0.08407269,-0.2599804,-0.016782636,0.61212933,0.37773314,0.16214207,-0.08558307,0.00015865763,-0.19140081,-0.09298032,0.39904806,0.35906994,-0.40729105,-0.24700756,0.6014113,0.43450972,0.3296295,-0.16189511,0.2858565,-0.22161321,-0.34656644,-0.17511205,0.04828928,-0.007831007,0.2987322,-0.14671104,0.09251439,0.7150112,-0.098297305,-0.012899409,0.04093041,-0.23040684,-0.0010478199,-0.21559311,0.06404408,0.18713279,-0.45996055,0.1813013,-0.14663558,0.5383852,0.096885405,-0.6779552,0.23365915,-0.55912167,0.16837464,0.06967684,0.5740947,0.8107547,0.6687689,0.080751725,0.9969456,-0.47612843,0.09182169,0.12956847,-0.3462601,0.2634396,-0.025822828,-0.031300258,-0.44477972,0.17808492,0.08469232,-0.123993576,0.18357821,0.15188551,-0.5856669,-0.2244824,0.01644127,0.45977542,-0.2818772,-0.17414792,0.80336046,1.019641,1.0066496,-0.03328861,1.1840189,0.31701863,-0.067494385,-0.1929909,-0.03396898,-0.5857165,0.18172275,0.3424313,-0.38574454,0.5523891,0.055907022,0.00956427,0.27753785,-0.13603179,-0.27825573,0.044799965,0.42941284,-0.060069975,-0.37254548,-0.36116982,-0.050130542,0.27146843,-0.067952335,0.008999427,0.41315746,-0.10880873,0.5398897,0.29623243,1.0186657,0.028396547,0.1855696,0.071240306,0.27826166,0.3000754,-0.3048723,0.10298479,0.33246845,0.26822165,-0.1062595,-0.42547593,0.086663574,-0.3188824,-0.3692176,-0.15883137,-0.34511697,-0.26675034,-0.024804756,-0.2102127,-0.3040743,-0.09521258,-0.10392526,0.4161493,-2.5823128,0.064392656,-0.1972689,0.26378295,-0.18882896,-0.35611805,-0.14328073,-0.5009803,0.22620618,0.16012461,0.45727864,-0.5130363,0.33736685,0.42854074,-0.5080903,-0.14278686,-0.6471066,0.1439804,0.13310999,0.37805519,-0.20777534,-0.15566342,-0.08449767,0.054963898,0.5365197,0.15078102,-0.01623516,0.37125304,0.6552816,-0.16162921,0.25427863,0.039012995,0.7458406,-0.17252834,-0.22273022,0.52530587,-0.40823093,0.63973224,-0.15115963,0.010087669,0.5335694,-0.3405881,-0.8318708,-0.40043533,-0.07821511,1.4188968,-0.41594768,-0.49443784,-0.030314513,0.17315786,-0.31670582,0.1731086,0.28203312,-0.016469618,-0.060907554,-0.4726951,-0.12626274,-0.17420745,0.30682456,-0.06648236,0.12204676,-0.37868336,0.6581668,-0.16151346,0.52738065,0.23451401,0.20184487,-0.1928811,-0.5135021,0.047404964,0.73211545,0.45869613,0.087703265,-0.22593582,-0.20988657,-0.18041885,-0.19922149,0.133738,0.6343038,0.37183246,-0.1531651,0.110587604,0.3548809,-0.036305696,0.157066,-0.1753598,-0.33857915,-0.18953419,0.048815046,0.48193586,0.71870154,-0.12750666,0.3715631,0.021211928,0.1326695,-0.11927996,-0.58484286,0.5399797,0.5260631,-0.30048797,-0.3028234,0.6368889,0.35467485,-0.15280376,0.46096754,-0.43309116,-0.36691174,0.50113046,-0.19575854,-0.39324495,0.13484198,-0.13661923,-0.07941821,-0.596378,0.22453457,-0.40080723,-0.6311099,-0.37571335,0.0021104813,-2.5194087,0.097280204,-0.15842949,0.098650254,-0.33964944,-0.17264809,0.15163164,-0.62908804,-0.81613976,0.09228873,0.11859218,0.394955,-0.259243,0.11470399,-0.2549155,-0.49186006,-0.2722616,0.40251568,0.13345152,0.2597033,-0.15104838,-0.27976394,0.067372255,0.01857251,-0.35557207,-0.030715128,-0.58998424,-0.28378797,-0.007057158,-0.38970605,0.05509388,0.7427635,-0.7493324,-0.09683365,-0.3447791,0.0482306,-0.113514304,0.07128075,-0.060436275,0.17224227,0.19481523,-0.073209055,-0.021516135,-0.24240331,0.42402124,0.11446353,0.45655417,0.46757045,-0.27840427,0.07120619,0.5065567,0.6804312,0.048302457,0.8560893,0.0008730094,-0.10780362,0.36363232,-0.16878061,-0.252297,-0.7698752,-0.21426909,-0.029347867,-0.49005833,-0.47190228,-0.09422639,-0.370909,-0.8562172,0.45930722,0.17811787,0.37821195,-0.18762736,0.573081,0.41519532,-0.1501993,0.22500253,-0.10726521,-0.18149228,-0.41091296,-0.2681986,-0.63968295,-0.5366343,0.4714936,1.0530642,-0.38104784,-0.017172141,0.21551855,-0.2708973,0.08718556,0.051390957,0.12507685,-0.0219419,0.40993062,0.16030753,-0.5336387,0.25360814,-0.16585527,0.06491759,-0.44694814,0.15600516,0.6436231,-0.60595196,0.3669022,0.27742872,0.14093171,0.09019772,-0.79630023,-0.18303962,0.103186436,-0.26444578,0.550001,0.409651,-0.6040259,0.434401,0.21902014,-0.28591907,-0.5569766,0.3957595,0.0056201755,0.017405376,0.058371395,0.425303,0.21849166,-0.17111742,0.0897725,0.26429763,-0.47741327,0.34307232,0.16477425,-0.21584225,0.03872047,0.04677187,-0.49256435,-0.6755734,0.13956176,-0.41863048,-0.475276,0.13464937,-0.01108921,-0.06725826,0.052131563,0.22621827,0.43750763,-0.3062174,0.13689512,-0.13733979,-0.22632362,0.5623857,0.4192591,0.52094096,-0.48131755,0.55583483,0.19035666,0.03227497,0.19794846,0.029327968,0.5477609,0.099264346,0.38651857,0.0970093,-0.14936063,-0.01606098,0.6012984,0.15045136,0.06325365,-0.06734138,-0.17460132,0.14224993,0.14752983,0.34983802,-0.14224671,-0.5685406,-0.04415543,-0.06266148,0.031395283,0.6161565,0.20870261,0.21188648,0.03620482,-0.12009019,0.16673182,0.024644231,-0.23056285,-1.2894534,0.3268346,0.174855,0.78371304,0.41694626,0.19086225,0.14024873,0.56394476,-0.2944911,-0.06491346,0.51280195,0.04547289,-0.39818177,0.47632906,-0.5897748,0.4944509,-0.13315989,0.05761075,0.32008502,0.2131838,0.35518518,0.99377805,-0.15954103,-0.0081987055,-0.08285144,-0.26204407,-0.03614992,-0.095203824,0.22577035,-0.39491925,-0.25727606,0.62941545,0.38140178,0.36100277,-0.4618683,-0.008978954,-0.0774078,-0.24807633,0.06960876,-0.06283194,0.008515249,-0.17708902,-0.19854899,-0.18550521,0.61098486,0.016525984,-0.07113885,-0.16665004,-0.27242282,0.30032364,-0.20753269,-0.04371324,-0.050030816,-0.61901784,0.020285273,-0.33966517,-0.51050305,0.10189852,0.07049853,0.1283634,0.18952467,0.13486801,-0.08473473,0.3448976,0.08429734,0.63541144,-0.11908888,-0.09528681,-0.30380303,0.34369263,0.13931935,-0.18413483,-0.032308314,-0.22699307,0.21848501,-0.38321152,0.24596588,-0.29792616,-0.40824234,-0.18086076,-0.1725394,-0.01910544,0.30137837,-0.16762345,-0.1974291,0.10777233,-0.26117408,-0.4039557,-0.3221365,-0.29641804,0.013289981,0.13115294,-0.1486067,-0.14293665,-0.23842324,-0.1578017,0.023664564,0.09397968,0.14038244,0.29988465,0.03461827,-0.47208014,0.12441673,0.04759021,0.461771,-0.06156404,0.13005613,-0.23585276,-0.48745927,-0.454797,0.61215425,-0.2479134,0.2819055,-0.00786515,-0.39434114,0.720519,-0.05987666,1.1723613,-0.05350706,-0.41214898,0.08686312,0.6207021,0.09138621,-0.08648849,-0.27468404,1.0970881,0.57860845,-0.038413938,-0.028461128,-0.3834214,-0.36327243,0.14512919,-0.40940607,-0.032529622,0.07902897,-0.41467288,-0.059572835,0.18234873,0.08624491,0.06431863,-0.06910942,-0.14395268,0.15555917,0.19523233,0.3677999,-0.5878943,-0.5563331,0.26688007,0.26576006,-0.052414056,0.2198803,-0.31304967,0.29531947,-0.7944889,0.17747164,-0.46184537,0.06622309,-0.17681247,-0.26990134,0.19799496,-0.17097135,0.2565627,-0.34436098,-0.33374104,-0.117236495,0.4319069,0.2757947,0.2544674,0.74684834,-0.21769816,-0.089281894,0.026573235,0.43039712,0.9177305,0.0067623355,-0.19912088,0.23055476,-0.28504595,-0.65784043,-0.030172497,-0.53405815,0.17053902,-0.11349394,-0.4222125,-0.29285073,0.27437094,-0.09458544,0.18668449,-0.039548356,-0.7614849,0.021428386,0.29905176,-0.37491372,-0.21477847,-0.3325574,0.105501294,0.8622315,-0.25935233,-0.48885942,0.114536084,0.24080242,-0.2454326,-0.81287175,0.10214982,-0.20149688,0.2914547,0.0981166,-0.41097602,0.095332555,0.3135117,-0.44891128,0.18475239,0.38062933,-0.29274216,0.11344432,-0.2946951,0.14104524,0.68436646,-0.28296962,0.08793059,-0.5012189,-0.54346085,-0.8307856,-0.44593874,-0.1701439,0.22789662,0.035123225,-0.7515469,-0.07720005,-0.42803955,-0.08474189,0.07896714,-0.44127646,0.46515122,0.18438447,0.5068206,-0.27191827,-1.1541957,0.04860949,0.10875982,-0.073246345,-0.58880335,0.56750995,-0.1905737,0.7025587,0.065455705,0.040414423,0.17315018,-0.72744274,0.41546762,-0.27636108,0.04956316,-0.6531419,0.2684792 +851,0.48677528,-0.06345556,-0.46041372,-0.17268537,-0.18817806,0.11407456,-0.20443615,0.33439273,0.15772413,-0.43991184,-0.23620605,-0.20309101,0.04979752,0.17217398,-0.21426651,-0.6285652,0.043422047,0.18886271,-0.55364203,0.60928446,-0.40951034,0.34093496,0.08798704,0.2743783,0.08460593,0.36048147,0.24426429,-0.083604015,-0.21548843,-0.2037305,-0.2597287,0.25840503,-0.34229025,0.23088703,-0.02385759,-0.25901464,0.032340683,-0.51392996,-0.34730807,-0.69667965,0.3542573,-0.8591255,0.42427924,0.074837215,-0.17435288,0.021394523,0.05083545,0.23777173,-0.27727172,0.091231905,0.19265383,-0.15516132,-0.031225158,-0.24383575,-0.22936964,-0.40437824,-0.52338505,0.07409045,-0.3642181,-0.32516995,-0.23637995,0.12837046,-0.35011387,-0.081161626,-0.07704765,0.48394045,-0.42668897,-0.010187407,0.25130185,-0.18326566,0.1630601,-0.53892773,-0.09084048,-0.08208933,0.42179316,-0.21406865,-0.2044508,0.21107957,0.22992517,0.43675557,0.105156064,-0.12091891,-0.18096685,-0.10735747,0.23739965,0.4076765,-0.20007183,-0.6037119,-0.10114026,0.017882291,0.046284746,0.27527887,0.20570177,-0.2934572,-0.014364868,0.0743465,-0.20927395,0.3053112,0.44066957,-0.3216977,-0.17696618,0.31977603,0.5425538,-0.03285209,-0.04129667,0.07122557,0.015465775,-0.47846,-0.29065514,0.07127042,-0.16653575,0.46135813,-0.23808956,0.33252227,0.7343843,-0.10872241,0.11910984,-0.015359493,-0.002237626,-0.2993125,-0.14158015,-0.2233958,0.16117379,-0.55417854,0.11689635,-0.16120355,0.88642937,0.2655001,-0.72525024,0.40021095,-0.5592058,0.19877847,-0.15900968,0.41806877,0.59952635,0.31197494,0.29994538,0.6535844,-0.53181344,0.09014389,-0.12218589,-0.61214334,-0.011355376,-0.19597879,-0.03650565,-0.5118445,0.1096439,-0.06825289,-0.018529622,0.09890556,0.3757216,-0.51936424,-0.065057114,0.081513554,0.8530865,-0.31923512,-0.026873805,0.7526728,0.87149835,0.87976545,0.029321222,1.2019441,0.21707875,-0.35958067,0.13436921,-0.22360341,-0.686658,0.38958085,0.5626154,-0.27217472,0.17888395,-0.053367782,0.07422112,0.37272802,-0.5322926,0.1395709,-0.3451076,-0.064234875,-0.015084698,-0.23072913,-0.46517482,-0.1404477,-0.019745596,0.09655924,0.26108843,0.2563501,-0.057930037,0.42110506,0.018370062,1.7374268,-0.006216545,0.13321778,0.15001543,0.45552328,0.3712064,-0.12739928,-0.037863288,0.35372135,0.4772032,0.17687607,-0.54248154,0.00018807252,-0.19613156,-0.4321395,-0.12343979,-0.35050088,0.07635641,0.049799208,-0.32422715,-0.18478878,-0.19052456,-0.17582992,0.35864666,-2.541066,-0.2119361,-0.106397845,0.23692746,-0.21019681,-0.3677086,-0.08390829,-0.4715161,0.47834638,0.26713875,0.46811607,-0.5657566,0.31667554,0.38586748,-0.57440865,-0.02752573,-0.60484827,-0.08266681,-0.14281315,0.38460293,0.12641917,-0.17738564,-0.06771027,0.10525974,0.45038968,0.050749913,-0.016867701,0.29739258,0.41132864,0.15005025,0.5336997,0.082604565,0.590943,-0.23140259,-0.27396536,0.31275186,-0.17092578,0.170741,-0.07660203,-0.0022950668,0.4474704,-0.561243,-0.84197897,-0.74429387,-0.10451517,1.1653118,-0.14399117,-0.28447857,0.2982261,-0.3237542,-0.38628095,0.01620401,0.42193386,-0.15256055,-0.13711266,-0.815108,0.12236679,0.07457815,0.09252816,0.121236295,-0.15664896,-0.5151128,0.66416895,-0.057762824,0.5255505,0.38837257,0.05887116,-0.19851622,-0.39139673,0.13025875,1.0374824,0.40605128,0.1832025,-0.21984178,-0.15651041,-0.40189654,-0.087145425,0.056649048,0.5534672,0.6746625,0.0020168582,0.009324161,0.3496118,0.013790691,0.16959527,-0.2491031,-0.26650238,-0.12186952,-0.13863608,0.56038827,0.355639,-0.1914306,0.40188172,-0.045656506,0.41432124,-0.16495852,-0.44765082,0.55033803,1.2522732,-0.14288126,-0.27647611,0.5411254,0.4011983,-0.27290627,0.43381646,-0.4963568,-0.21499868,0.35138556,-0.19929554,-0.43018773,0.2668831,-0.2706642,0.32668743,-0.87001735,0.20209453,-0.15813272,-0.42848557,-0.6140672,-0.14661217,-3.340074,0.3477062,-0.34499532,-0.13091925,-0.10758254,-0.05419886,0.1774892,-0.6264856,-0.5298384,0.19929792,0.00040343005,0.6441008,-0.13499545,0.20097932,-0.1264929,-0.2653725,-0.3918939,0.01470451,-0.042874236,0.35040963,-0.032927107,-0.41929725,0.030203843,-0.143264,-0.4093799,0.07578694,-0.61059475,-0.38685167,-0.03007602,-0.4766633,-0.3793557,0.5909496,-0.23517199,0.1266418,-0.16652164,0.05395903,-0.18863358,0.28185704,0.052432355,0.21083102,-0.028920677,-0.0448449,0.054960553,-0.18622568,0.36449844,-0.040513862,0.33536652,0.08822925,-0.1290674,0.18092896,0.47196355,0.60994136,-0.1129188,0.76413864,0.49245507,-0.06616213,0.20803764,-0.3641258,-0.35345787,-0.49322647,-0.25803944,0.042814493,-0.46430582,-0.5006761,-0.034564216,-0.40500987,-0.69057006,0.42646268,0.15384038,0.088829786,0.038897526,0.3349713,0.478486,-0.160847,-0.098180726,0.049006145,-0.23157805,-0.54895324,-0.09089025,-0.55715144,-0.24861653,0.05257704,0.7584512,-0.19978319,0.03170817,0.023636645,-0.304544,0.019280616,0.04876473,0.022433167,0.21167536,0.48027703,-0.20868793,-0.7557332,0.5181414,-0.09723541,-0.21832286,-0.44177416,0.14878578,0.5456794,-0.64268297,0.661454,0.29295427,0.037426364,-0.118485995,-0.47080278,-0.20606723,0.03833815,-0.23093963,0.4596772,0.24804874,-0.687573,0.4408164,0.47556007,-0.08771423,-0.66714853,0.49414787,0.00073926174,-0.3931865,0.032921486,0.26479378,0.102201924,-0.04729266,-0.18396142,0.16804227,-0.41368544,0.30630997,0.19279103,-0.028913014,0.13913618,-0.24351099,-0.20004317,-0.74536306,-0.08048447,-0.52052426,-0.29555115,0.27308702,0.180432,-0.009461054,0.15585098,-0.06615954,0.42235747,-0.23064457,0.13081391,-0.06535657,-0.18079026,0.15840666,0.32184324,0.46229115,-0.55670494,0.5972169,-0.06198889,-0.062384848,-0.07192055,0.1867809,0.53566706,0.11924383,0.42638868,-0.13608353,-0.1718412,0.44938385,0.7093192,0.14737524,0.39324218,0.055224366,-0.0525218,0.17220964,0.15456274,0.14919107,0.055683102,-0.57226294,-0.035662785,-0.08935722,0.1322821,0.41132602,0.095047936,0.255167,-0.12369546,-0.45159414,0.042314768,0.30827948,0.035485145,-1.1947764,0.42998892,0.31196985,0.8170602,0.3935613,-0.044416178,-0.09273453,0.67267644,-0.26843557,0.18793239,0.24282615,-0.13018897,-0.5582059,0.44580314,-0.5579408,0.26365945,0.041082732,-0.09030577,-0.056639757,-0.084296055,0.2669477,0.7363946,-0.14282465,0.08182834,-0.07565998,-0.2755162,0.2319972,-0.47324327,-0.0361626,-0.49451128,-0.23047218,0.5489991,0.48956713,0.22166958,-0.12997654,0.0017866492,0.098653905,-0.036735713,0.09409796,0.17773595,0.14210536,0.11455908,-0.80428517,-0.28983638,0.53928083,0.038719576,0.12537439,-0.049666572,-0.19775377,0.35803956,-0.1634642,0.047230568,-0.14884076,-0.6556117,0.06491744,-0.28060904,-0.40452066,0.4943093,-0.011101389,0.2430122,0.30650786,0.116046175,-0.14901492,0.32882363,-0.063376196,0.6698538,-0.015815897,-0.21077958,-0.4322175,0.21576735,0.08798441,-0.16150062,-0.110623345,-0.35212022,0.0808159,-0.5256355,0.5115307,0.07635639,-0.38597667,0.077948086,-0.0699388,-0.05149827,0.6114169,-0.2832747,-0.10221154,-0.1090728,-0.052162185,-0.25395954,-0.25964972,-0.13075139,0.1929098,0.21705653,0.10768581,-0.21553339,-0.099531375,-0.2864547,0.5286054,0.05911347,0.39794186,0.2419962,-0.06260959,-0.2531754,-0.24290253,0.24933563,0.37561283,-0.048259456,-0.09662446,-0.24408069,-0.3752066,-0.3910825,0.047284428,-0.0775274,0.3096492,0.069005825,-0.23115973,0.63740605,0.05347435,1.1069324,-0.017499505,-0.2711858,0.0097622555,0.55305314,0.016627865,-0.048727512,-0.3122985,0.9040947,0.52397037,-0.092258066,-0.11657736,-0.43504888,0.097815715,0.064298645,-0.20168298,-0.1234345,0.05089278,-0.6271598,-0.34851295,0.19580859,0.29554632,0.2620065,0.053875167,0.018524608,0.19358449,0.03234973,0.28145626,-0.3368265,-0.39534596,0.21033539,0.25860965,-0.035029802,0.011067399,-0.5861115,0.47803867,-0.45928496,0.09989568,-0.29824108,0.23263218,-0.19065814,-0.21040587,0.19577041,-0.15871416,0.39606997,-0.32481894,-0.43021616,-0.18128204,0.47274932,0.13962875,0.12938349,0.5622768,-0.2542508,0.18158682,0.109287344,0.5064414,1.0039546,-0.03532452,-0.057030328,0.39506516,-0.3159632,-0.5870637,0.26416096,-0.21955542,0.064033955,0.114210844,-0.18150386,-0.50693333,0.15869655,0.27208695,0.06953755,-0.019599888,-0.6088058,-0.3258047,0.407432,-0.21779206,-0.18043016,-0.34175408,0.18412605,0.63071847,-0.36489245,-0.24629949,0.056416217,0.1325455,-0.12518242,-0.63048685,-0.060071047,-0.3173279,0.3129992,0.15470928,-0.17782208,-0.11631829,0.040911,-0.35983017,0.24188247,0.14880733,-0.37098587,0.13103537,-0.33647072,-0.21959648,0.9286017,-0.24426644,0.036577232,-0.41799122,-0.35258102,-0.7844826,-0.3623013,0.5128575,-0.0006894047,0.11971168,-0.7166769,0.032882195,0.0030480544,0.012817621,0.008606155,-0.36956042,0.4340013,0.057943378,0.561935,-0.04336964,-0.78404003,0.17125791,0.009018882,-0.23618962,-0.60126436,0.5957416,0.0496524,0.7975441,-0.06843264,0.054135937,0.37327442,-0.5206583,-0.077891044,-0.26728466,-0.17792124,-0.71318775,-0.009322175 +852,0.50057536,-0.1779395,-0.3641876,-0.032079455,-0.0876007,0.2208223,-0.10320978,0.56549436,0.25918826,-0.45198205,-0.04198456,-0.16926222,0.05614864,0.16666514,-0.057855774,-0.30517304,-0.078686796,0.09808556,-0.34413105,0.42742664,-0.45013285,0.29274097,-0.1485823,0.39057893,0.2432439,0.22170548,-0.04497256,-0.028128266,-0.31957734,-0.08531357,-0.0173294,0.42734247,-0.41615242,0.06005339,-0.168405,-0.25668365,-0.15026368,-0.5058814,-0.35108012,-0.5808924,0.30442658,-0.80363506,0.442826,0.067493066,-0.19253445,0.28449494,-0.07203413,0.219726,-0.13583957,0.045179587,0.17518093,-0.09722463,0.11639048,-0.27887422,-0.22842613,-0.34881675,-0.5839643,0.02388477,-0.4316444,-0.24476574,-0.19852005,0.07087191,-0.22719269,-0.16931157,-0.0034920932,0.42136344,-0.4615041,0.11885877,0.0033458709,-0.1300785,0.26481727,-0.5509665,-0.25601944,-0.10382846,0.16908105,-0.35255146,-0.24783462,0.1877487,0.36495653,0.4255984,-0.19853243,-0.00838207,-0.44033566,0.044365097,0.1753582,0.5330016,-0.16968141,-0.46578243,-0.11211596,-0.11268813,0.1156637,0.19916874,0.2454908,-0.28220168,-0.09079606,0.13728848,-0.1775993,0.34573632,0.45495024,-0.23381361,-0.33393508,0.3686804,0.43790907,0.10897651,-0.20056461,-0.021828305,0.13257667,-0.42503306,-0.07343161,0.19535713,-0.14844047,0.43865883,-0.05418419,0.22235098,0.7212357,-0.24666366,0.18121262,0.069090284,0.08183015,-0.008556604,-0.32778344,-0.16103938,0.13705191,-0.30243346,0.040842507,-0.1286747,0.6349447,0.11402109,-0.7633524,0.3648309,-0.5652443,-0.011869232,-0.06100222,0.47532475,0.6771229,0.34357098,0.16943502,0.57662416,-0.49496073,0.041325286,-0.12470471,-0.31190726,0.10370897,-0.15742975,-0.039737273,-0.57445884,-0.12386885,0.07892404,-0.15533394,0.17503858,0.4692183,-0.517356,-0.08052293,0.14924075,0.7264658,-0.34372848,-0.09799065,0.6478193,1.0060073,0.7955092,0.0010948499,1.1147219,0.16732137,-0.24456267,0.2945102,-0.4756433,-0.63956106,0.26816404,0.21314116,-0.5396149,0.22784847,0.18071245,0.051956084,0.25016788,-0.31920236,0.19409145,0.00037088591,0.08438513,0.16536392,-0.123418316,-0.35478508,-0.2360032,-0.111653425,0.017545613,0.22064358,0.1844057,-0.38650227,0.28831813,0.036083363,1.8204712,-0.07019744,0.07769622,-0.011564398,0.53440773,0.22670634,-0.169772,-0.06945111,0.37804216,0.35913235,0.16631751,-0.48946258,0.23946206,-0.056099303,-0.55984837,-0.14599688,-0.30146867,-0.041195568,-0.10865311,-0.4773586,-0.023037039,-0.028939685,-0.43023592,0.5021763,-2.9525898,-0.12098031,0.044562623,0.43842617,-0.2482086,-0.45628685,-0.20279603,-0.32207882,0.30074167,0.24435012,0.32480913,-0.73864615,0.26031962,0.38663957,-0.38336402,-0.18583317,-0.5676103,-0.11594965,-0.04340237,0.30253828,0.036113914,0.1271884,0.14279753,0.052503094,0.40542045,-0.15989177,0.08117518,0.16792749,0.39726225,0.047057103,0.35790044,-0.011752844,0.41733652,-0.12768003,-0.3041935,0.43161544,-0.42420012,0.13688973,0.054289237,0.11686046,0.26660398,-0.3346298,-0.86378396,-0.57782364,-0.27857798,0.8869494,-0.06243239,-0.42684233,0.14265354,-0.33370543,-0.43867296,-0.15619056,0.6146762,-0.063020356,-0.04751269,-0.81476444,-0.019854447,-0.118756,0.2442119,-0.024227906,0.08402289,-0.4493208,0.49035132,0.052872743,0.54148805,0.2815549,0.27322847,-0.43318143,-0.40027168,0.09139096,1.0635521,0.20753692,0.21604483,-0.19746889,-0.19828129,-0.35030904,-0.025008619,0.13219851,0.46189806,0.6049297,-0.0075136027,0.17690264,0.21978259,-0.04281891,-0.010890861,-0.13700853,-0.15779518,-0.035590596,-0.015109499,0.4476197,0.63180155,-0.20464253,0.5733262,-0.03167433,0.26030725,-0.28010413,-0.3734475,0.47290435,0.90589267,-0.03601337,-0.14266011,0.5092173,0.44153678,-0.37692577,0.3064032,-0.54897404,-0.18330275,0.46471703,-0.3196038,-0.38283703,0.2866907,-0.27642593,0.0835754,-0.7517128,0.26179802,-0.12093765,-0.42704624,-0.5715283,-0.12452714,-2.996372,-0.0116881095,-0.083351456,-0.3040287,-0.047253035,-0.13909031,0.2403086,-0.561467,-0.4140981,0.11701026,0.08009013,0.6661524,-0.01681473,0.14088123,-0.35151207,-0.18486087,-0.12290866,0.2317751,0.13264796,0.42422917,-0.017564505,-0.44030088,-0.036496248,-0.21289721,-0.42041972,0.03868746,-0.5515349,-0.53914887,0.042327296,-0.4973642,-0.27774265,0.673053,-0.4724393,-0.09199823,-0.21733424,-0.006709075,-0.06601805,0.43339217,0.2393257,0.032741666,0.11039801,0.011644451,0.16247691,-0.28444937,0.32795128,0.13357893,0.2258949,0.53000945,-0.19189262,0.23676684,0.4936856,0.52769876,-0.15468355,0.8415652,0.5235395,-0.09523079,0.25650123,-0.33660218,-0.17847419,-0.40294603,-0.33731404,-0.04554574,-0.43695346,-0.5284431,-0.16105871,-0.3257586,-0.73035604,0.4944187,-0.08886981,0.17549331,0.00048740706,0.2982321,0.3960381,-0.23903689,-0.08782193,-0.08445378,-0.07766083,-0.37071314,-0.34563407,-0.47427088,-0.5523115,0.2116655,0.8951508,-0.05213665,-0.06512467,0.13871177,-0.25935373,-0.17399031,0.0944755,0.041865803,0.16509075,0.33286604,-0.043409534,-0.5337851,0.514475,-0.14510399,-0.2693238,-0.6300519,0.084908165,0.53549063,-0.55381984,0.4729296,0.2350626,0.029257825,-0.07625663,-0.41095275,-0.13392392,-0.036243223,-0.26720157,0.37657887,0.20859297,-0.79204756,0.33989456,0.40299207,-0.18246607,-0.5729734,0.613932,-0.0072410624,-0.23093277,-0.15190563,0.30346832,0.09364649,0.07259267,-0.1613533,0.3676166,-0.48317176,0.24919622,0.254229,-0.080578186,0.44628105,-0.19375253,-0.011666664,-0.61838907,0.09421039,-0.36714035,-0.3783561,0.22117114,0.19220413,0.3081295,0.3726368,0.037363324,0.2965274,-0.39875886,0.04186427,0.025864935,-0.14742258,0.1471764,0.32803452,0.58467585,-0.30280337,0.39962476,-0.045134235,-0.15665512,0.1708772,0.03778986,0.54632205,0.041165058,0.22948305,0.046107598,-0.30380994,0.28143308,0.78163135,0.2284001,0.41749892,-0.08138098,-0.30333537,0.22950938,0.0902662,0.15356036,0.024330476,-0.47425807,0.07670217,-0.093069,0.29166266,0.33870846,0.08940576,0.23419978,-0.1668505,-0.31507123,0.099993825,0.2757554,0.07565243,-1.1102054,0.2178949,0.20710783,0.86115295,0.3477146,0.057859052,0.1624785,0.5260789,-0.17678595,0.17765898,0.3839316,-0.09139981,-0.5489495,0.4097423,-0.6929955,0.5086927,-0.007240995,-0.038322337,0.103709236,-0.16800766,0.40648803,0.7346409,-0.111773744,0.13375045,0.17329894,-0.3236836,0.06485734,-0.4144055,0.21146229,-0.5051081,-0.11443688,0.7029181,0.5783503,0.26623568,-0.092958,0.09257483,0.09581016,-0.056583975,0.06157782,0.082230024,0.14950673,0.05503818,-0.72940356,-0.20495602,0.5354713,-0.08968623,0.0841011,0.05214229,-0.16383317,0.247381,-0.15343386,-0.10843559,-0.018965002,-0.55443156,-0.033095207,-0.40664163,-0.44389778,0.5033571,-0.13969837,0.19693515,0.097238526,0.054462623,-0.32803118,0.6038812,0.40703604,0.7757618,0.0066709123,-0.017818714,-0.49698824,0.24122629,0.26456597,-0.1551577,-0.2411547,-0.18187538,0.07577126,-0.6126497,0.39433855,-0.10809632,-0.32469743,-0.039135836,-0.07788856,0.13982671,0.5859756,-0.024920551,-0.19758897,0.08231985,-0.12764332,-0.27578297,-0.030237682,-0.12290124,0.35736355,0.21307291,-0.18668963,-0.1325725,-0.11234462,-0.18651359,0.21682747,0.07105329,0.4725933,0.40316644,0.056455,-0.22407694,-0.091519915,0.2024935,0.5084046,-0.025295012,-0.041214,-0.23750132,-0.4340923,-0.46244308,0.123567395,-0.17891368,0.32085854,0.17379402,-0.22371012,0.6510704,-0.06270027,1.1429011,0.12188562,-0.4182272,0.19037032,0.3387805,-0.039441034,-0.022987366,-0.4692156,0.9166105,0.47384897,-0.009624271,-0.12681353,-0.14233045,-0.09027414,0.1564234,-0.25496244,-0.12750107,-0.0510767,-0.888582,-0.24091016,0.29468742,0.13027994,0.12278352,-0.09684428,0.09070969,0.2772555,0.0011292577,0.08840792,-0.48192015,-0.020139417,0.31625602,0.46366635,-0.08667387,0.13929006,-0.43417302,0.46689084,-0.42275515,-0.046059486,-0.27975196,0.22050944,-0.16244635,-0.22845195,0.23053494,0.031962626,0.3831482,-0.20190239,-0.37692454,-0.34522107,0.45809457,-0.007284403,0.17111781,0.43372294,-0.16987896,0.032601044,-0.12288224,0.38159016,1.0997943,-0.27465945,-0.066357,0.45179325,-0.34734884,-0.6043311,0.31219637,-0.3223973,0.33756065,-0.03924911,-0.18850361,-0.3841527,0.2787709,0.11311435,0.120400876,-0.08964431,-0.36333308,-0.107308306,0.26678616,-0.30211815,-0.23351765,-0.31021774,0.044117555,0.5818278,-0.31091017,-0.3458513,0.06211877,0.45609188,-0.29543036,-0.45987457,0.021520229,-0.35963136,0.24590717,0.038809877,-0.31082937,-0.15996884,-0.036566958,-0.35542354,0.11310242,0.27163494,-0.40762976,0.06818436,-0.27904573,-0.022229493,0.96405756,-0.06262677,0.078210756,-0.6055715,-0.4979712,-0.9136812,-0.4012241,0.27475178,0.11886649,-0.096430376,-0.5026561,0.051729176,-0.10327758,-0.14216799,-0.09425936,-0.3985539,0.53582174,0.13231811,0.39681426,-0.24050976,-0.79077035,-0.054572053,0.21698986,-0.26631048,-0.72357863,0.5352436,-0.02037193,0.8885732,0.016248163,0.07084828,0.51331955,-0.49081117,-0.122034654,-0.2893356,-0.12430645,-0.7471775,0.09150651 +853,0.63242704,-0.31933212,-0.3014843,-0.06439713,-0.1270359,0.09157341,-0.35944468,0.44814098,0.11112494,-0.5848563,-0.244626,-0.03168893,-0.12161258,0.49200583,-0.28788283,-0.6881945,0.112648614,-0.010997582,-0.4647871,0.9576143,-0.4485136,0.35268462,-0.10855926,0.60163444,0.11069921,0.281367,0.35306504,0.30597395,-0.15130669,-0.34249535,0.14216965,-0.049881045,-0.4698185,0.38139632,-0.072929315,-0.3269978,-0.07395074,-0.20975652,-0.16397682,-0.96222585,0.49876165,-0.9826601,0.512706,-0.25886595,-0.48458382,0.09056044,0.27373272,0.03723284,-0.34451574,-0.07491277,-0.14774552,-0.17970915,-0.07621761,-0.62564754,-0.064142235,-0.3416403,-0.4688973,-0.0023587488,-0.37481558,-0.25504282,-0.17734517,0.2674903,-0.42010596,0.009670761,0.07053102,0.6984761,-0.44170657,0.13180926,0.0475814,-0.32397294,0.15169714,-0.8018913,-0.34396446,-0.12461361,0.18081836,0.15688743,-0.3263754,0.38215914,0.09677363,0.275749,-0.19201349,-0.049503747,-0.09291548,-0.2740038,0.10385167,0.5261581,-0.333875,-0.6730244,-0.20117775,-0.37614822,0.32803583,0.14460514,0.3336318,-0.189823,0.051742744,-0.15507421,-0.33925423,0.36904222,0.6480765,-0.2646353,0.06574325,0.069136195,0.5111892,0.012588772,-0.3563666,0.01394646,-0.09472249,-0.45599157,-0.16186684,-0.10812116,0.10116451,0.66356045,-0.09629475,0.41326064,0.42747784,-0.3596944,0.0035652085,0.21701545,0.06798846,-0.049550727,-0.17561568,-0.31819597,0.31184375,-0.28574657,-0.071066685,-0.6594792,0.6070335,0.16334023,-0.5078137,0.40509546,-0.36023548,0.076009005,0.042730514,0.5805425,0.67075276,0.7000062,0.18782906,0.58804643,-0.3186131,-0.096545175,-0.03685471,0.10518145,-0.099030845,-0.27352664,0.1268787,-0.36086175,0.2668311,0.12534261,-0.004057288,0.06855574,0.55157846,-0.49394616,-0.15820137,-0.12605686,0.75110173,-0.31690085,0.30036175,1.0871131,1.2273148,0.90044236,0.03979883,1.2882832,0.31410515,-0.09605206,-0.15224975,0.1907258,-0.589811,0.17527503,0.43710604,0.30424857,0.31976035,0.010273408,-0.16386431,0.4631662,-0.41990444,-0.24849115,0.05400635,0.72036785,0.2920831,-0.17288722,-0.46678674,0.14871262,0.2999014,-0.09536708,0.18023546,0.45110244,-0.24125227,0.6859157,0.13834035,1.2641598,0.03129165,0.042287983,0.21215329,0.55055636,0.20371984,-0.15673643,0.33389306,0.21746884,0.2583049,-0.011241588,-0.45649108,0.19888383,-0.1293651,-0.73985654,-0.13470712,-0.32525155,-0.1703148,-0.19302759,-0.24373291,-0.4048569,-0.044768218,-0.027466005,0.0673312,-2.6040037,-0.2701957,-0.22771153,0.41882184,-0.19760089,-0.25606024,0.012507211,-0.34500572,0.6859295,0.4459872,0.39357397,-0.59828556,0.18294168,0.6104998,-0.4749876,-0.039200414,-0.606353,-0.010663307,-0.084367655,0.6726934,0.007217212,-0.27385294,0.035208117,0.19245663,0.46171874,0.015594837,0.095395856,0.23274404,0.304486,-0.22943777,0.19020139,-0.077381164,0.4655277,-0.47704965,-0.1272759,0.35890272,-0.63034827,-0.06267701,-0.11758518,0.15200777,0.40771905,-0.5487632,-0.5997263,-0.8220469,-0.0014014569,1.2400597,-0.036263093,-0.98160225,0.25676474,-0.35524833,-0.38644293,-0.1683328,0.5386638,-0.27818838,0.041468333,-0.6201948,0.058485433,-0.23016073,0.37931922,-0.07014542,-0.03488528,-0.5385528,0.7901058,-0.029707193,0.3573967,0.24635263,0.24736066,-0.64245504,-0.48463285,0.13425301,0.8337511,0.565324,0.14556716,-0.11429725,-0.13651562,-0.23957224,-0.2941562,0.022761406,0.98721695,0.6041527,0.07667872,0.14324746,0.24481899,-0.36236498,0.07250888,-0.15724967,-0.3457515,-0.22141665,0.24110556,0.82458264,0.64498454,-0.055045225,0.18204767,-0.012020967,0.46297437,-0.37288237,-0.44088018,0.4405507,0.7390017,-0.23985456,-0.39687243,0.5687889,0.44902793,-0.6189698,0.36391908,-0.6515804,-0.41462696,0.62920195,-0.19367786,-0.45457858,0.20397286,-0.3318378,0.28321525,-0.6034843,0.46618178,-0.42035624,-0.50050086,-0.6415279,-0.20699553,-3.178902,0.13375086,-0.105729155,-0.33633068,-0.36790955,-0.30846745,0.20587163,-0.5717932,-0.3750974,0.16586633,-0.009760693,0.6020877,-0.078647844,-0.017194418,-0.32575706,-0.5449579,-0.14643763,0.28578424,-0.08625692,0.29960087,-0.11228237,-0.344759,0.03209163,0.06226395,-0.52793795,-0.028884178,-0.39747956,-0.6621095,-0.15937735,-0.28224602,-0.07276352,0.7487002,-0.28677246,0.07150822,-0.43635333,-0.1060755,-0.2259652,0.20696817,0.20806317,0.21649216,0.084257066,-0.106219746,0.26451617,-0.45905387,0.11727513,0.12596127,0.3037728,0.594106,-0.35292506,0.086857654,0.28277215,0.70348704,0.23107634,0.91741747,0.056171622,0.036928117,0.6555915,-0.30245927,-0.55448,-0.31267592,-0.22499298,0.26414958,-0.33002874,-0.120534584,-0.2537923,-0.3789082,-0.5792862,0.5185174,0.0026212065,0.20748113,-0.083084464,0.5044469,0.386401,-0.08480525,-0.17039515,0.08203318,-0.18221149,-0.58054024,-0.20960125,-0.6539571,-0.564364,0.08520331,0.6683748,0.090366654,-0.078304835,0.17170992,-0.20625149,0.049368914,0.18069702,0.16042362,-0.099079534,0.08413613,-0.0067856205,-0.7985252,0.5988465,0.047906753,-0.32747877,-0.61184365,0.2492365,0.7990524,-0.5963647,0.4230669,0.21118179,0.15917271,-0.4649848,-0.38432896,0.06427994,-0.055380818,-0.30423257,0.25930884,0.32494405,-1.0193399,0.40949708,0.36229217,0.1457715,-0.49687764,0.46791524,-0.07164589,-0.4170089,-0.17290045,0.5044229,0.16320612,0.066394985,-0.2697604,0.30198452,-0.58393013,0.17412418,0.020750197,0.036066964,0.60349464,-0.15806478,-0.3134474,-0.78319323,0.041208964,-0.724593,-0.39557818,0.22201404,0.12168474,0.16476168,0.20880912,0.12477515,0.5179506,-0.27054393,0.19815904,-0.25444317,-0.33159935,0.30056143,0.55099446,0.45879367,-0.29270566,0.7504959,0.12055575,0.08763168,0.031231446,0.07212002,0.45377114,0.089093566,0.5399927,-0.15100735,-0.11860576,0.16771415,0.88427466,0.37311402,0.6228688,0.13744141,-0.29656547,0.21481067,0.09265476,0.18948168,0.14159675,-0.46926564,0.08530379,0.08665811,-0.006471597,0.50679123,0.1223757,0.3972481,-0.01739318,-0.37094685,0.03120236,0.113288835,-0.052280184,-1.3804629,0.17116837,0.15479037,0.9057997,0.52995086,-0.15701346,-0.12055945,0.58817166,-0.08561473,0.08547345,0.30578268,0.06869165,-0.35807943,0.5894583,-0.63982886,0.47007382,-0.12558469,-0.03055918,0.052429236,-0.05461681,0.31396687,0.64021057,-0.12026464,0.10594464,0.059377454,-0.38178504,0.14750814,-0.5315437,-0.07768247,-0.23645009,-0.24019207,0.42306206,0.42190114,0.3855655,-0.3111126,0.066880874,0.1902855,0.008513272,0.3155675,0.028399164,0.15437654,-0.4728637,-0.4953439,-0.29068145,0.44925344,0.010520166,0.28413314,0.18869656,-0.18895549,0.19249044,0.14339161,-0.01709329,0.0128701115,-0.5381907,0.22779612,-0.37440443,-0.476841,0.5874167,-0.06410304,0.13177758,0.34884608,0.007080525,-0.30320334,0.113129266,0.14835571,0.55517524,0.13997255,-0.22452573,-0.4330923,-0.014995775,0.19203697,-0.44550982,0.14918503,-0.17772387,0.0033293853,-0.4397602,0.2878726,-0.12925762,-0.20381604,0.048800383,-0.029125659,-0.010069652,0.5072847,-0.09274587,-0.12904896,0.0659114,-0.08565991,-0.16284432,-0.263105,-0.11511422,0.28259385,0.10392085,0.24197572,-0.004800646,0.013472861,-0.080197014,0.34386903,0.076937445,0.24668288,0.53606445,-0.100403376,-0.3676564,0.12784292,0.10671938,0.62798166,-0.051410988,0.15039323,-0.1661553,-0.8795326,-0.4813662,0.40368527,-0.056530226,0.20849681,0.17222764,-0.39226457,0.81121707,-0.02201926,0.8066531,-0.16436031,-0.40837944,0.1080291,0.5648037,-0.137748,-0.0630596,-0.33442843,1.0037621,0.48271248,-0.39113614,-0.036418095,-0.27141258,-0.15360726,0.35443687,-0.27108818,-0.24117184,-0.21027479,-0.7203844,-0.2818127,-0.014577285,0.28140828,0.041057106,-0.12540342,0.12743029,0.43072045,0.13479061,0.2524178,-0.5319485,0.1633306,0.4636318,0.06033447,-0.21112488,0.12656154,-0.28054923,0.14308672,-0.645537,0.14435655,-0.55464005,0.050318424,0.09750945,-0.565921,0.22645336,0.09338021,0.18983859,-0.41987717,-0.38829386,-0.2333005,0.2947247,0.23989703,0.23736101,0.34027502,-0.074074395,0.022745263,0.13206269,0.50640494,1.1089431,-0.036596384,0.08565417,0.03766227,-0.74275345,-0.931747,0.20160604,-0.19929792,0.2996227,-0.062544726,-0.23364978,-0.721328,0.19274908,0.39682645,-0.09362061,-0.13456494,-0.59231526,-0.5712106,0.14045548,-0.48323643,-0.2703585,-0.35563657,-0.018812688,0.40809023,-0.2587243,-0.05605613,-0.20905067,0.39391172,-0.39223433,-0.7715811,-0.23232959,-0.32927552,0.45457622,0.1367411,-0.32443914,-0.2318367,0.1275544,-0.4821044,0.10926005,-0.053338483,-0.39980602,-0.014573455,-0.4181919,-0.015333002,0.62954605,-0.11293923,0.34284362,-0.6429113,-0.61882377,-0.8056481,-0.42549294,0.26726493,0.19158007,0.17915395,-0.7586103,-0.1378194,-0.2631264,0.09188895,0.01536274,-0.19783908,0.37419227,0.15614243,0.48178566,0.019785322,-0.7630732,0.25243342,0.15265597,0.06111795,-0.5981274,0.47018605,-0.15963982,0.7515501,0.10616751,-0.09211287,0.18283176,-0.60768676,0.30654272,-0.11838035,-0.37883675,-0.41407079,0.32893193 +854,0.45254552,-0.18693565,-0.45254663,-0.029503938,-0.23849832,0.10684161,-0.15500559,0.23380238,0.19069824,-0.18120833,-0.027435783,-0.30051464,-0.123053804,0.425962,-0.15392627,-0.8316274,0.09696908,0.08634396,-0.6344783,0.5669347,-0.4997763,0.35580114,0.02702213,0.2632131,0.23411223,0.23011777,0.05046714,-0.10622153,-0.10138048,-0.10709575,-0.060555633,-0.03480893,-0.30491087,0.1335023,-0.061364617,-0.22289668,0.08961495,-0.3935522,-0.64121634,-0.6923039,0.4288096,-0.63394994,0.44532663,0.09679421,-0.35249397,0.22650413,0.0055679684,0.36886832,-0.19087152,0.025358481,0.2380269,-0.041193254,0.0061059236,-0.19456568,-0.35653725,-0.48643672,-0.51523525,0.011867809,-0.56517875,-0.24775495,-0.15643731,0.19133803,-0.3015122,-0.056665998,-0.04606223,0.4342446,-0.36500606,0.0121042095,0.13414034,-0.16255757,0.1725557,-0.7273553,-0.03169621,-0.035264887,0.03935057,-0.0391357,-0.05432999,0.32048672,0.07882503,0.5875539,-0.13828373,-0.17574237,-0.20011069,-0.07499714,0.034998186,0.60944444,-0.16039209,-0.3637194,-0.25556743,0.10383258,0.1626949,-0.047571875,0.03649598,-0.44197357,0.05746603,-0.0063744825,-0.19312094,0.52797765,0.57680714,-0.34582663,-0.12118732,0.4634015,0.4390721,0.2418721,-0.15409732,-0.050094463,0.02616017,-0.39158016,-0.08344888,0.021821562,-0.21569236,0.47882524,-0.051392507,0.20161505,0.62376726,-0.1339055,0.21603785,0.040556364,0.054475542,0.052691367,-0.1670844,-0.1899196,0.083338656,-0.6506034,-0.01674867,-0.11809838,0.81322885,0.14029646,-0.7031425,0.44749567,-0.4590611,0.15441275,-0.07835509,0.51939446,0.67891216,0.25333682,0.12683243,0.6130412,-0.46884155,0.13025379,-0.1278849,-0.30786416,0.06990299,-0.033749588,-0.013099208,-0.49816865,-0.14781901,-0.14918788,-0.20146377,-0.110349864,0.40404025,-0.49205172,-0.116775505,0.10741865,0.87247974,-0.28762084,0.07599206,0.5624302,1.1204349,1.000906,-0.15134208,1.2076898,0.41384232,-0.25264192,0.18644872,-0.4495188,-0.53697056,0.1963639,0.19064164,-0.10348531,0.33140355,0.008707987,-0.1977012,0.38619265,-0.25698572,0.07168942,-0.26436365,0.22958946,0.058307048,0.1699623,-0.45055544,-0.17065118,-0.08813106,0.06634081,0.15583625,0.23124482,-0.43259412,0.10901441,-0.052285466,1.3387617,-0.17151216,0.06358584,0.14129482,0.40739653,0.17473766,-0.08775855,-0.07856147,0.30988905,0.29507986,-0.018290233,-0.6588414,0.12666246,-0.3846889,-0.2699517,-0.2375068,-0.21127152,0.046073318,0.028185256,-0.54827887,-0.015038872,0.015243749,-0.29117623,0.3548582,-2.538549,-0.30502707,-0.14913172,0.33396232,-0.29024023,-0.29912046,-0.041912794,-0.41767704,0.22949126,0.23997803,0.4005038,-0.57511955,0.46069056,0.5443067,-0.50388026,-0.086311296,-0.5533711,-0.04689985,-0.04404622,0.4889157,-0.07978383,-0.05309051,0.036267605,0.17951289,0.4187683,-0.07889153,0.02507356,0.13512401,0.41375935,0.17061685,0.2887181,0.034865145,0.51063615,-0.17414893,-0.07761846,0.38461724,-0.22017686,0.23137014,-0.13970785,0.19448961,0.40649846,-0.28207913,-0.72959876,-0.45605972,-0.2751361,1.123407,-0.120757736,-0.315054,0.2711059,-0.07751121,-0.28584358,-0.051081996,0.34207964,-0.16081892,-0.15790643,-0.7250582,0.078150764,-0.105064504,0.11989885,0.06311809,0.03293346,-0.1407985,0.62815547,-0.061191894,0.26719385,0.25162306,0.30093822,-0.2103237,-0.5146957,0.032730047,0.9426105,0.458865,0.11294599,-0.13782705,-0.053066406,-0.23158933,-0.122309715,0.047863446,0.4713316,0.7658733,0.016527604,-0.040758602,0.25518674,-0.051161908,0.0010240813,-0.09545929,-0.47114745,0.025818646,0.060357157,0.6233955,0.51461416,-0.17573373,0.5026808,-0.059738897,0.18873902,-0.14803734,-0.44446963,0.44742167,1.1389848,-0.19435722,-0.21366324,0.423068,0.35646975,-0.3879704,0.3697633,-0.7081672,-0.3499346,0.42188033,-0.23440641,-0.41102168,0.2993864,-0.27783176,0.13769008,-0.76152194,0.48204482,-0.20226263,-0.38796246,-0.5972392,-0.19244671,-3.0895772,0.28630385,-0.40033013,-0.09848271,0.05147912,0.14707316,0.346535,-0.54734695,-0.32299617,0.07839187,0.074009486,0.5551411,-0.03730248,0.19078757,-0.2826079,-0.2509379,-0.2874656,0.16539474,0.06301758,0.25376338,-0.01888814,-0.38464838,0.12226049,-0.19743614,-0.2551325,0.06222249,-0.6014101,-0.39982802,-0.20044574,-0.57159317,-0.15925822,0.6420352,-0.11425196,0.036174655,-0.24709912,0.09738564,-0.07245882,0.3229366,0.1423124,0.11901127,0.0014089068,-0.10524474,-0.029040666,-0.4214309,0.19884841,0.19237147,0.20058684,0.36594123,0.044718243,0.08760479,0.491495,0.51359516,0.010456066,0.7270816,0.38206652,-0.22493592,0.16541965,-0.22711784,-0.05712471,-0.38918933,-0.37469503,-0.11902856,-0.2856103,-0.49210018,-0.027445536,-0.35653916,-0.6610185,0.36579373,-0.05964059,0.23004942,-0.049394675,0.20898345,0.552034,-0.088264026,-0.023061363,-0.0011659622,-0.070556745,-0.45821908,-0.33824152,-0.6814431,-0.41095278,0.2439506,1.0107775,-0.16497438,-0.122212715,-0.030112863,-0.16466519,-0.09894987,-0.07717737,0.05109055,0.10047796,0.26529625,-0.11875595,-0.7517328,0.25605145,-0.20435448,-0.01976343,-0.53204286,0.116557755,0.81243783,-0.46061376,0.45325273,0.30552903,0.1645192,-0.08445721,-0.4739362,-0.019724805,0.26817894,-0.17519578,0.40993232,0.05855579,-0.59466285,0.45134562,0.31118125,-0.3862548,-0.7235864,0.4535986,0.11967537,-0.39685443,-0.12387432,0.4599067,0.01703916,0.029669015,-0.19743657,0.24587458,-0.36759052,0.16909344,0.23701486,-0.08376589,0.29248756,-0.19916473,-0.23091806,-0.5789945,-0.02100556,-0.35521296,-0.31408826,0.1875503,-0.0022565683,0.27163425,0.22464132,0.09915401,0.4581719,-0.16547722,0.080990344,-0.038163647,-0.25982898,0.39184174,0.46765748,0.46811944,-0.36507437,0.52176344,-0.11186188,-0.10244525,0.15403691,0.116971515,0.48209828,0.13425355,0.33464807,0.062170934,-0.11248841,0.2996841,0.8526331,0.13604695,0.5067589,0.21101539,-0.20651771,0.14294161,0.08430954,-0.03127385,-0.030061336,-0.4182634,-0.23650716,0.1397688,0.31434786,0.4903979,0.06536952,0.28498065,-0.2365486,-0.44086236,0.06904822,0.18658939,0.033345807,-1.0491091,0.25539634,0.115044385,0.66249645,0.30225736,0.044221774,-0.0271046,0.63826007,-0.01305263,0.07170785,0.2755776,-0.06807125,-0.49011666,0.423118,-0.4917155,0.33948287,-0.06651558,0.051480327,0.01948673,0.042807285,0.31911424,0.69416994,-0.19221324,-0.09358528,-0.057331014,-0.49667606,0.01581167,-0.29316777,0.2295476,-0.45102605,-0.42211863,0.52157545,0.49442163,0.034973644,-0.13991079,-0.02003318,0.106681585,-0.1014864,0.2038043,0.053224605,-0.00015678405,-0.048398316,-0.7729158,-0.2673886,0.4726499,0.027773228,0.09092539,-0.07824952,0.12594546,0.1979067,-0.14902616,-0.040357348,0.074969515,-0.6768199,4.118681e-06,-0.21536238,-0.4495717,0.3605756,-0.20569785,0.10173566,0.13167943,0.04927033,-0.46161366,0.36003938,0.14575009,0.74224925,-0.099594705,-0.12065744,-0.43070713,0.046488382,0.13788481,-0.1637076,-0.16426715,-0.35235798,0.19878295,-0.7723629,0.538883,-0.24377231,-0.08226062,0.035260875,-0.22977604,0.04748256,0.6359216,-0.28337437,-0.20652333,-0.13276173,-0.12341698,-0.41135797,-0.13124737,-0.042665474,0.039183505,0.32205066,-0.14740205,-0.1667256,-0.20012274,-0.16758709,0.4532039,0.11275788,0.46238774,0.51042765,0.21178222,-0.3521866,-0.2004346,0.2875904,0.43669993,0.008336087,0.0006097585,-0.33037072,-0.35264224,-0.33131662,0.21837376,-0.13726787,0.21971032,0.15417913,-0.3793748,0.8194723,0.13329715,1.157995,0.016240379,-0.2040513,0.016778532,0.45197445,0.0008740425,-0.030595759,-0.30956897,0.91735816,0.66610426,0.04374096,-0.20242088,-0.4624113,-0.1483443,0.20442696,-0.27213457,-0.05171337,-0.00830282,-0.5293482,-0.31371766,0.28336823,0.36926398,-0.014260014,-0.11564215,0.096585065,0.10984368,0.13588126,0.38800022,-0.58822256,-0.09221865,0.26528332,0.3199084,0.023185443,0.32523346,-0.47904444,0.40761954,-0.54754865,0.14130303,-0.2854192,0.057888854,-0.032789227,-0.17172946,0.20253135,0.07163832,0.37819836,-0.45435074,-0.3400599,-0.34228393,0.4865295,0.17521136,0.08021502,0.63244545,-0.19189858,0.038050603,0.09217159,0.6610435,1.1153785,-0.20930977,0.0032360156,0.2592909,-0.2276747,-0.75669795,0.23177657,-0.35857764,-0.011947608,-0.15781473,-0.23738183,-0.51729244,0.3928235,0.12474416,-0.05112653,-0.06089425,-0.6019675,-0.123451166,0.29043534,-0.13106982,-0.2657868,-0.20808966,0.18046986,0.5672502,-0.21140145,-0.18951966,-0.029938417,0.39763063,-0.26404002,-0.6402055,-0.0044539175,-0.419543,0.33421478,0.17190494,-0.11071076,0.043172013,0.03833847,-0.42722124,0.11608265,0.24030909,-0.41749662,-0.01052442,-0.04546793,-0.054335993,0.62387156,-0.091110125,-0.076292366,-0.71033204,-0.52995056,-0.8572683,-0.5364411,0.35841694,0.19196798,0.057704028,-0.6139717,-0.12660514,-0.13329794,0.04277458,0.027101906,-0.45161435,0.28933567,0.11559992,0.49586546,-0.23531073,-0.7539308,-0.018179102,0.19720906,-0.33232555,-0.6688101,0.4542714,-0.053040553,0.86041933,0.009533477,0.07294698,0.18991981,-0.41395956,0.030226143,-0.3457351,-0.32491022,-0.7371412,0.15337652 +855,0.4838986,-0.31513846,-0.39774475,-0.04729781,-0.20619977,-0.16515197,-0.034184296,0.72467756,0.3804036,-0.42644405,-0.24563706,-0.1883897,-0.039441835,0.48074737,-0.0903287,-0.40528357,-0.04493019,0.32605532,-0.42388368,0.5645409,-0.32328627,0.07076294,-0.028349236,0.6041642,0.035319418,0.08604491,0.1269946,-0.04356988,0.021450654,-0.29950616,-0.1015537,0.37622157,-0.77407855,0.31257984,-0.39732847,-0.46342218,-0.060792,-0.5454661,-0.37054488,-0.8228056,0.12176037,-0.82573,0.46528652,0.2310585,-0.37080035,0.31417346,-0.07884355,0.16018936,-0.39621934,-0.13611327,0.1806726,-0.23296745,-0.067434855,-0.3490356,0.044725467,-0.122522004,-0.6901429,0.07510935,-0.3077599,0.036786493,-0.3455598,0.14599262,-0.33347812,-0.08395395,-0.1751339,0.7759445,-0.3292388,0.16188334,0.20042945,-0.2052027,0.2353764,-0.4474186,-0.18800442,-0.20400566,0.13858128,-0.07946958,-0.48472893,0.20395958,0.01887246,0.5238718,-0.059523012,-0.12447066,-0.34801093,0.096859924,-0.035737902,0.39075956,-0.28398952,-0.649297,0.019184167,0.16125336,0.17487751,0.14509724,0.066380076,-0.17778593,-0.16091038,-0.14445393,0.029810267,0.4830813,0.4551486,-0.28517887,-0.27269733,0.33970943,0.5513394,0.12863392,0.038647246,-0.06856895,0.095134735,-0.76039433,-0.20794795,-0.110414565,-0.20102578,0.6447338,-0.20028931,0.34525585,0.61502665,-0.1979465,-0.3560661,0.13451457,0.18307151,0.0308182,-0.4662582,-0.38478482,0.66362906,-0.3767437,0.16015027,-0.27304587,0.7890811,0.14038251,-0.74992746,0.2125082,-0.5454768,0.19212753,-0.08664214,0.6074244,0.7594002,0.7236169,0.5704945,0.6692431,-0.3737942,0.059232403,-0.13723563,-0.2957644,0.079345606,-0.4475812,-0.13999262,-0.37785587,-0.079305924,-0.055119123,-0.13734163,0.18655436,0.28444147,-0.6984668,-0.2579629,0.43618774,0.44994068,-0.15549193,-0.077711076,0.8611122,0.9527121,1.2100917,0.09325683,0.9973552,0.10697148,-0.23488235,0.27904797,0.03497721,-0.8183243,0.31647536,0.2860769,0.028117875,0.13674663,0.06246933,-0.06542677,0.37513062,-0.5964108,-0.16649629,-0.18837889,0.12450257,0.07805983,-0.061496824,-0.6016807,-0.3477005,-0.22837645,0.117628366,-0.11843797,0.32492796,-0.21028619,0.4768921,-0.04844135,1.4249727,-0.03335492,0.09031295,0.25010362,0.42913875,0.14777443,-0.21472478,-0.147047,0.39305404,0.22388314,0.30950645,-0.46918154,0.047065523,-0.21398605,-0.503084,-0.07332467,-0.26080546,0.047530472,-0.0040855086,-0.38776538,-0.3495657,-0.24415052,-0.30047885,0.47640193,-2.6062925,-0.10196129,0.09188681,0.459793,-0.27842844,-0.28536996,-0.07375094,-0.5924806,0.42596936,0.35648513,0.60340023,-0.6763406,0.062097285,0.4368789,-0.790572,-0.13390431,-0.7319073,-0.05507647,-0.11926139,0.34507954,0.081424154,-0.13872279,0.0027555202,-0.027612321,0.522892,0.006661678,0.0991927,0.34514666,0.41904366,-0.16136378,0.4456992,-0.13283649,0.3803935,-0.67826843,-0.2949792,0.3923613,-0.3048317,0.18426554,-0.13351375,-0.030851254,0.57300115,-0.54193187,-1.0009629,-0.5707541,0.05045985,1.3180746,-0.13922279,-0.43885055,0.13502438,-0.49896744,-0.09277725,-0.14061213,0.5499404,-0.13444519,0.0030473967,-0.770405,-0.033132862,-0.003911262,0.29668364,0.012183267,-0.15148537,-0.56487167,0.7197444,-0.013405733,0.45486116,0.4175863,0.08062927,-0.38509187,-0.5959284,-0.05306776,0.7941101,0.30810353,0.20548685,-0.281882,-0.15957539,-0.16233161,0.25035173,-0.014503844,0.5796816,0.5258419,-0.21313995,0.11687534,0.3607582,0.16474448,0.058981802,-0.14512919,-0.17224193,-0.27874124,0.0013710359,0.6397569,1.0684186,-0.16974789,0.17396843,-0.10821992,0.27362975,-0.009802704,-0.40412894,0.49811673,1.2153642,-0.09444185,-0.26889947,0.7275901,0.53255624,-0.024672538,0.49991488,-0.4811217,-0.4114765,0.31805274,-0.28776506,-0.5150259,0.1082071,-0.22752674,0.1400831,-0.7907886,0.28653222,-0.2545894,-0.5088173,-0.912286,-0.0795644,-2.8475845,0.39022934,-0.41577432,-0.11018769,-0.15788907,-0.19337319,-0.014793686,-0.64427084,-0.49840125,0.26568803,0.29961494,0.6765364,-0.26684594,0.23699605,-0.25572568,-0.49447057,-0.24712777,0.059320062,0.17254601,0.29793113,0.117627926,-0.44859624,0.03546837,0.06688013,-0.31471244,-0.023919502,-0.6412696,-0.34592184,-0.17461596,-0.58880967,-0.36421368,0.6282165,-0.2970296,0.018395126,-0.1897403,0.024800545,0.11604201,0.14895312,0.002111045,0.24185656,0.061960384,-0.085533194,-0.12339123,-0.13565128,0.25152633,-0.034589037,0.28175342,0.3291665,-0.41969118,0.17103402,0.64465594,0.8274997,-0.2456946,0.96148634,0.75589734,0.019757971,0.177447,-0.0494377,-0.358446,-0.5989779,-0.17172654,0.014811191,-0.48843065,-0.19444251,0.261013,-0.37583184,-0.9144073,0.82712746,-0.10596948,0.14423822,0.088159226,0.33765355,0.755394,-0.3595363,-0.11732479,-0.039317206,-0.09223097,-0.5200288,-0.27937672,-0.5496964,-0.45404485,-0.07773151,1.141344,-0.26948294,0.16827594,0.16298337,0.0072393916,0.027935192,0.27175447,-0.257925,0.284896,0.5537365,0.123232506,-0.6056397,0.4782156,0.11472807,-0.19225836,-0.44253635,0.45541772,0.58377415,-0.69057244,0.5890568,0.31475803,-0.13277785,-0.18442076,-0.8179712,-0.38415012,-0.19700103,0.013888188,0.37690958,0.39184856,-0.86445594,0.44675946,0.29645982,-0.3502364,-0.93946654,0.3212515,-0.084517516,-0.56846017,-0.010970995,0.243111,0.12114359,0.017034808,-0.11672711,0.28869438,-0.2561008,0.24187748,0.07262803,-0.2151174,0.085684456,-0.329914,-0.0011657426,-0.94637203,0.1269794,-0.57896,-0.50675476,0.41735157,0.18706529,-0.123793684,0.20170414,0.09752092,0.41352597,-0.11905842,0.05668689,-0.29713202,-0.29011968,0.47292247,0.54944927,0.5301866,-0.53538436,0.6515577,0.094483845,-0.11523875,-0.29738316,-0.04830258,0.35164163,-0.17900144,0.5391855,-0.26368043,-0.28900072,0.13512714,0.546613,0.15887724,0.4057641,-0.07762697,0.18517531,0.41558954,0.14907427,0.36803487,-0.20819306,-0.6371271,0.21774842,-0.43922806,0.039814588,0.4642377,0.09665636,0.26267052,-0.13114731,-0.22512239,-0.025195064,0.18712403,0.124584645,-1.3610988,0.275008,0.13998543,0.8539789,0.6271712,0.06853008,-0.084491454,1.0487584,-0.13497595,0.05964735,0.3665397,0.07772092,-0.37068495,0.6582025,-0.86064005,0.41006318,-0.086760014,-0.045020718,0.04324017,0.04164555,0.39532098,0.5126677,-0.15715939,0.003436327,-0.047298353,-0.30211523,0.1228629,-0.46954522,0.27390188,-0.6395175,-0.30965424,0.807157,0.6213713,0.4186709,-0.29101446,0.01945969,0.114837445,-0.19268231,0.19558424,-0.007488484,-0.02733013,0.0983544,-0.687443,0.20850937,0.5481949,0.12674783,0.16674237,-0.1751443,-0.23164213,0.30011728,-0.19241536,-0.36222374,-0.22750938,-0.654979,-0.014715474,-0.36650148,-0.32050577,0.5585646,-0.09414369,0.28516477,0.26775208,0.13254784,-0.35892108,0.19986564,0.040261686,0.93177557,0.021965573,-0.17120688,-0.23992006,0.4088602,0.024257889,-0.15838963,0.011480659,-0.26541355,-0.039203864,-0.39578697,0.33793512,0.019780962,-0.28613904,-0.0051655746,-0.033858508,0.058463525,0.6231044,0.040834706,-0.104256004,-0.107958496,-0.26891193,-0.3883184,-0.23871402,-0.06120482,0.33557415,0.22534609,-0.079594806,-0.13214162,-0.12682208,-0.05467583,0.53678656,0.02607893,0.30519888,0.07683992,0.0957906,-0.2986709,0.15664583,0.03085724,0.58105904,0.06462737,-0.22675198,-0.21822153,-0.3563713,-0.49799657,0.012052705,-0.018389858,0.48449448,0.050979376,-0.01899239,0.8516154,-0.0102616,1.1011099,-0.14136313,-0.4227616,0.126923,0.5974779,0.0075681657,-0.13280797,-0.31161335,1.0202192,0.50907665,-0.104430705,-0.040939357,-0.2500944,0.07473838,0.032752305,-0.14053194,-0.29890954,0.047207084,-0.52623963,-0.10951228,0.21645899,0.2810439,0.35732985,-0.21775909,0.0018782517,0.2771114,-0.115885474,0.32814065,-0.23802269,-0.13233821,0.23175621,0.44212794,0.046909083,0.029973432,-0.3881797,0.35000005,-0.5530353,0.1439211,-0.34310624,0.22565542,-0.45622006,-0.32767108,0.27231494,0.12337917,0.45983553,-0.4562813,-0.30670905,-0.209689,0.46206853,0.2159868,0.14950062,0.6202648,-0.28000268,-0.078815274,-0.010704677,0.28122154,0.93659943,-0.49010015,-0.13391657,0.40341577,-0.23217863,-0.5864236,0.49050328,-0.2484104,0.18595822,-0.05710524,-0.20728588,-0.5596841,0.07899868,0.25033462,0.21519317,0.021925712,-0.8019755,-0.008209109,0.3520906,-0.25846797,-0.1028787,-0.33493415,0.09315469,0.47327504,-0.12360752,-0.54028153,0.18250048,0.105755866,-0.06875327,-0.5100226,-0.07346627,-0.49787745,0.086719394,0.12282255,-0.47035834,-0.13733836,-0.03770404,-0.5871032,-0.06821262,-0.02085498,-0.28860947,0.10861655,-0.49386367,0.014362897,1.0463293,-0.28238735,0.55240923,-0.3402978,-0.49377465,-1.0207895,-0.121769756,0.7151244,-0.024207732,0.14395244,-0.70249224,-0.057969093,0.023930343,-0.41490945,-0.23130198,-0.29698253,0.46485996,0.23013711,0.35298786,-0.14875543,-0.6835671,0.37480986,0.16913612,-0.08331333,-0.49143443,0.2439525,0.15422113,0.93729764,-0.06742259,0.13320358,0.27366433,-0.65732807,-0.08947428,-0.09554866,-0.19958133,-0.492061,-0.0834525 +856,0.44842476,-0.05015444,-0.53161824,-0.22179726,-0.32232222,0.18464069,-0.15526006,0.42225185,0.3478916,-0.20589651,0.032815523,0.08978849,-0.009780422,0.5850006,-0.14863907,-0.77381456,0.061906092,0.06651579,-0.5647477,0.40901533,-0.5257837,0.36685663,-0.10531355,0.40313855,0.1113639,0.24312548,0.20480934,0.12337758,-0.08420641,-0.017094092,-0.12543593,0.30703196,-0.3407285,0.13119192,0.03110758,-0.3014095,-0.12963952,-0.26449177,-0.22810681,-0.67743444,0.39098546,-0.7404156,0.4875028,-0.089828335,-0.45837468,0.26815364,0.09059926,0.21056144,-0.25958043,-0.07611457,0.052648555,-0.20087692,0.030942794,-0.175123,-0.35102907,-0.35931405,-0.53249305,-0.05278555,-0.5403662,-0.11634665,-0.2755767,0.109483495,-0.33990857,0.12261486,-0.099165834,0.44380686,-0.22421561,-0.09026897,0.2557898,-0.20240584,0.078698225,-0.3954416,-0.16361025,-0.066158906,0.19166557,0.12437417,-0.24812767,0.2553584,0.32393876,0.43501726,-0.09172765,-0.28474417,-0.34042358,0.08132458,-0.05349809,0.4357025,-0.15716064,-0.28884223,-0.3195776,0.0566806,0.1684426,0.11607941,-0.0033234486,-0.22842972,0.017893357,0.08723029,-0.31629038,0.38536498,0.35025266,-0.35764074,-0.10201626,0.3843738,0.4876791,0.11851821,-0.29870877,0.101532765,-0.04560224,-0.50141746,-0.17117865,0.10212811,-0.08572667,0.4295704,-0.119700514,0.2024839,0.67971987,-0.06797545,-0.056784205,-0.047861893,-0.016313497,-0.058384657,-0.21869089,-0.16039823,0.09221076,-0.3485307,0.1523569,-0.18956041,0.75562376,0.17106315,-0.77109593,0.47155258,-0.45066032,0.10871663,-0.10651602,0.5194795,0.8486628,0.3528723,0.123952374,0.85383505,-0.53939855,-0.031117234,0.08129227,-0.3572425,0.12860836,-0.03837993,0.15724145,-0.53362787,-0.015209577,0.24160233,-0.1803849,0.28620005,0.279529,-0.42765322,-0.07889913,-0.14844725,0.68630546,-0.30201286,-0.24146174,0.8584534,1.0025098,0.87959945,0.06348122,0.9032503,0.39613825,-0.09742075,0.109183535,-0.28997484,-0.57777625,0.19292893,0.28556418,0.1695074,0.47847417,0.070808105,0.07501001,0.5090343,-0.13384934,-0.09749737,0.053753365,0.41873783,0.11167327,0.025762906,-0.45889235,-0.32262215,0.2135987,0.06449635,0.24867383,0.2644264,-0.20155154,0.6084713,0.117860965,1.3725466,0.13377835,-0.0038910806,-0.06412225,0.338473,0.25553688,-0.08479496,-0.2720056,0.2554924,0.35106733,-0.05070079,-0.6089815,0.11281513,-0.2223845,-0.25363824,0.001989721,-0.38022655,-0.082262516,-0.20612882,-0.36046144,-0.15528142,0.038557794,-0.3404036,0.44816214,-2.7035434,-0.18505251,-0.16029303,0.23664674,-0.09033128,-0.3795325,-0.28575557,-0.40039033,0.16876009,0.41558662,0.33250538,-0.70561683,0.38459843,0.24093458,-0.3252705,-0.06304316,-0.6157049,-0.046725053,-0.05029603,0.37612242,0.03265502,0.05377874,-0.07493512,0.48428944,0.5869998,0.14548376,-0.13049279,0.32668835,0.4552649,-0.07037135,0.5339734,0.14183395,0.6050242,-0.16991135,-0.088944085,0.29912415,-0.46998954,0.25627795,0.13014774,0.3076858,0.43919638,-0.3286688,-0.85529804,-0.5233142,-0.115910284,1.382662,-0.3500939,-0.3665957,0.2702346,-0.24112065,-0.45737436,0.016898913,0.44448468,-0.14203864,-0.20428793,-0.6517364,-0.08342044,-0.022353377,0.09416242,-0.17213823,0.03486715,-0.16304953,0.6068953,-0.13143282,0.49442604,0.09446951,0.11404627,-0.15303765,-0.43437958,0.007859026,0.8091607,0.34828702,0.086977996,-0.14480363,-0.26082078,-0.24728656,-0.14415383,0.19477703,0.5748006,0.62751967,0.11713953,0.04736856,0.22798626,-0.2655946,-0.058895897,-0.08879804,-0.262565,-0.009196137,0.012418522,0.6149393,0.7411632,-0.1299201,0.42834407,-0.10825847,0.19673446,-0.21235694,-0.4972868,0.51536447,0.66515315,-0.22487251,-0.350394,0.43733338,0.24999857,-0.3295856,0.31954893,-0.477082,-0.22767518,0.4797921,-0.049498674,-0.3418956,0.18091914,-0.21371226,0.022379471,-0.83827686,0.2620447,0.029443052,-0.5711785,-0.53238934,-0.14369197,-3.929632,0.10021011,-0.013202689,-0.25457373,-0.034340817,-0.15107235,0.38553604,-0.5848036,-0.53820986,0.0234549,0.03689027,0.5372597,-0.046412367,0.032261875,-0.36598518,-0.29699376,-0.11119559,0.15229498,0.11887847,0.37842917,0.15073586,-0.3649392,0.11111843,-0.32070056,-0.60364777,-0.0066769207,-0.5113886,-0.56444514,-0.13053586,-0.49005142,-0.18188132,0.6689595,-0.37673238,0.037361193,-0.27794358,0.006309573,-0.19156674,0.3446684,0.116029166,0.043522857,0.048512373,0.007181502,0.081925556,-0.39608556,0.25929043,0.014803401,0.34506485,0.22591296,-0.12586385,0.23934107,0.71238625,0.6298974,0.18849042,0.69008714,0.2394623,-0.11563403,0.22445853,-0.25913745,-0.22999279,-0.5782175,-0.3422195,-0.1924934,-0.3791878,-0.30818322,-0.2822759,-0.3847156,-0.7689811,0.34055918,0.039736908,0.13605683,-0.1382732,0.2555147,0.48376656,-0.15581612,0.067472875,0.050248653,-0.31546262,-0.5927641,-0.3469407,-0.5709311,-0.49790123,0.37065747,0.90862256,-0.17620802,0.00031662412,-0.118276834,-0.46291965,0.048332226,0.04227221,0.2601444,0.27851686,0.11653894,-0.2578409,-0.61232555,0.29635137,-0.44884586,-0.078306444,-0.64147633,0.062121063,0.67865884,-0.4050428,0.46711418,0.2624422,0.24043779,0.024713947,-0.41223136,-0.1999766,0.17533863,-0.24295892,0.4861476,0.3220059,-0.64187276,0.5561715,0.24263586,-0.07695874,-0.45263562,0.37806728,0.00868302,-0.10114021,-0.018438945,0.36655113,0.07675687,-0.032289512,0.022190783,0.083688445,-0.4723527,0.12426635,0.26889983,0.008089849,0.32984146,0.020951167,-0.011294399,-0.5805097,-0.21663733,-0.5339088,-0.23397456,-0.0620887,0.078503974,0.3053381,-0.1423218,-0.03591042,0.31785294,-0.30477196,0.05888451,-0.06542093,-0.22252776,0.47966528,0.533327,0.37958542,-0.2690995,0.5403251,0.06476267,0.25950485,0.11649767,-0.1135198,0.44685608,0.23537879,0.35162306,0.1487185,-0.094660245,0.26058453,0.58373463,0.18984178,0.31200078,0.054986328,-0.27421755,0.21158297,0.1374579,0.18434803,-0.0883534,-0.25738147,-0.113739155,-0.08962264,0.19836521,0.48439577,0.10530834,0.2322418,-0.052353203,-0.28501925,0.29580727,-0.0032287922,-0.17303996,-1.376797,0.42703652,0.2716134,0.58945316,0.25073603,0.05739653,0.05182112,0.51475364,-0.22486468,0.12625629,0.35057095,0.027135968,-0.43063456,0.45872098,-0.5961271,0.46559936,-0.14800514,-0.01048544,0.094716035,0.23073283,0.39138776,0.9094616,-0.039798148,0.08223985,2.296269e-05,-0.29001263,0.014972304,-0.28180078,-0.03224313,-0.65184253,-0.3205978,0.48431116,0.5350416,0.49230438,-0.25864214,-0.06948674,-0.02256298,-0.07622813,-0.07551534,-0.16152279,-0.037323304,-0.19202588,-0.6250579,-0.36541632,0.41551706,0.14451125,0.060218457,0.026659628,-0.25514123,0.34497935,-0.022264753,-0.1343808,-0.028024038,-0.6700247,-0.07694757,-0.16183639,-0.57113796,0.28571507,-0.43524995,0.2905754,0.1947671,-0.005155695,-0.3749716,0.10585559,0.22565956,0.81301886,-0.035009254,-0.1533417,-0.44664747,0.04802965,0.22213307,-0.23236401,-0.14514898,-0.3254693,0.08959125,-0.42888698,0.34758133,-0.24324787,-0.3055398,-0.13276543,-0.11441283,0.18003127,0.36036828,-0.3938008,-0.14321123,-0.16026218,-0.0067799753,-0.28623828,-0.16264765,-0.27503118,0.33804947,-0.04782543,-0.12099002,0.08313413,-0.046575136,-0.04355537,0.3283562,0.14700903,0.2568341,0.49283347,0.08449096,-0.21388678,-0.14180382,0.052521355,0.3672996,0.18758248,-0.28487357,-0.50643694,-0.34704378,-0.34109423,0.32000962,-0.21483125,0.17447765,-0.045756657,-0.41270688,0.6024088,-0.051359538,1.0528067,0.052525204,-0.21070595,0.06972172,0.4678728,0.26594138,0.12743802,-0.21317594,0.6543808,0.47806516,-0.23459935,-0.19178966,-0.44333082,-0.2254596,0.32696444,-0.30900893,-0.13961017,-0.12298,-0.75016963,-0.19572105,0.14109214,0.06779261,0.21565485,-0.07963895,0.14595716,0.009323127,0.13200907,0.4898281,-0.31828418,0.055883367,0.34614077,0.1367232,0.0061892164,0.14150521,-0.43447977,0.3583104,-0.5266356,0.1310269,-0.5024437,0.1728504,-0.04077893,-0.311965,0.118096255,-0.0031368476,0.24040651,-0.38418242,-0.29441494,-0.27503166,0.60450375,0.27766487,0.13809423,0.5237656,-0.18994941,-0.19543616,0.26971605,0.5438622,1.0689404,0.09989958,0.07301633,0.34249538,-0.21286821,-0.54047275,0.007933085,-0.22803633,0.33988127,-0.11455081,-0.19760744,-0.41101232,0.39642096,0.07700692,0.046694286,0.13082257,-0.33749157,-0.26142523,0.39681342,-0.35848162,-0.22401787,-0.34094277,0.12162308,0.4479289,-0.4028552,-0.27227473,-0.08640157,0.3357813,-0.11338173,-0.53824097,0.056511726,-0.28657943,0.3856773,0.14470302,-0.29835653,-0.067561515,0.2304012,-0.39942476,0.2090595,0.18173055,-0.42394033,0.12620603,-0.12739836,-0.0667743,0.94816977,-0.0465844,0.16082957,-0.7440669,-0.5328727,-0.963651,-0.37471005,0.25580904,0.05534711,-0.120809086,-0.64106244,-0.010874237,-0.029384544,-0.081752695,0.030888343,-0.44115835,0.3871484,0.14411919,0.24437936,0.083146356,-0.93734086,-0.10345962,0.050129972,-0.2348532,-0.6123784,0.6433221,-0.15589105,0.5753952,0.044989552,0.19638191,0.18033123,-0.37604353,0.301609,-0.37163123,-0.14864792,-0.50276256,0.1864387 +857,0.4242911,-0.064757906,-0.3890882,-0.17723948,-0.20670892,0.17333321,-0.16973692,0.30532765,0.11601406,-0.4767484,-0.10740331,-0.13806625,0.07223625,0.13458854,-0.216201,-0.58113015,-0.07169811,0.12997584,-0.29967952,0.5321983,-0.43238544,0.54341376,-0.048695516,0.18856707,0.11052357,0.38197336,0.17459354,-0.12206581,-0.2561959,-0.11765644,-0.20698255,0.42116296,-0.39451277,0.055746548,-0.024423866,-0.3522735,0.034600515,-0.2682724,-0.3058592,-0.64056003,0.28681424,-0.65114105,0.33592987,-0.06518323,-0.26608253,0.4348672,0.046599627,0.1700012,-0.11865962,0.04316466,0.07466078,-0.24423088,0.032975834,-0.27407268,-0.18886606,-0.39061955,-0.57071155,0.025266396,-0.4403926,-0.32307804,-0.43152735,0.106072634,-0.32454187,-0.11324226,0.038195167,0.38018176,-0.5929306,-0.042631045,-0.017527139,-0.12112568,0.23438393,-0.6125755,-0.17055413,-0.073194005,0.1870423,-0.3534684,-0.073799856,0.36102897,0.23210208,0.44838104,0.041440543,-0.14877906,-0.5303285,-0.21028817,0.27091205,0.42505506,-0.1935755,-0.3983476,-0.052267045,-0.11037204,0.07989904,0.12668346,0.03775684,-0.118100196,-0.18323348,-0.014059806,-0.27487648,0.14306107,0.44232446,-0.43817753,-0.3458232,0.36849245,0.4621932,0.0647913,-0.1862935,0.0074697384,-0.0038423617,-0.3430716,-0.21324901,0.09005708,-0.18103272,0.489177,-0.13466826,0.23478244,0.6356708,-0.23623581,0.10691396,-0.15762419,0.051197175,0.014991802,-0.14813296,-0.15855119,0.18875028,-0.42150444,0.07544686,-0.20445406,0.8084829,0.09908045,-0.74163914,0.3376638,-0.42639136,0.040849257,-0.055831026,0.4707074,0.5028128,0.41505674,0.29051328,0.5859628,-0.48233026,-0.032953013,-0.04553541,-0.35193235,-0.013835237,-0.13291031,-0.09279825,-0.5284199,0.124545656,0.13873911,0.025358856,0.06683658,0.52810794,-0.42574412,0.029214362,0.12170702,0.7179277,-0.37619537,-0.088220164,0.6840582,0.97559404,0.89269143,0.0057365852,1.0092794,0.22099364,-0.28620675,0.046639834,-0.4488314,-0.47088376,0.20713726,0.3285485,-0.040025495,0.18396793,0.085968494,0.14953013,0.34179765,-0.3478253,0.060926296,-0.23077035,0.15233453,0.09716167,0.09372712,-0.4402026,-0.3075161,0.0751445,0.10667081,0.13381281,0.29674125,-0.04723551,0.48474833,0.13445024,1.6179746,-0.0015908795,0.12695423,0.06742456,0.48073646,0.17352867,0.03372688,0.057551496,0.30668724,0.18372071,0.081559725,-0.6070034,-0.0071413307,-0.14660034,-0.61844945,-0.18584563,-0.4046585,-0.11893544,0.021929257,-0.43428344,-0.21174186,0.0148196295,-0.4310426,0.47130325,-2.6975882,-0.063282505,-0.022217084,0.23660183,-0.253208,-0.37592793,-0.05486957,-0.45763335,0.49086577,0.3645705,0.44297913,-0.6548805,0.2589433,0.46958822,-0.3980355,-0.100845255,-0.43565106,-0.22749732,-0.15075439,0.31900513,0.101239815,-0.17624465,0.08284786,0.1744669,0.4704229,-0.1820083,0.14471711,0.24799693,0.22386658,0.07508592,0.39680022,0.06155231,0.4912004,-0.06762457,-0.18881004,0.4504876,-0.3960325,0.13166997,-0.10159099,0.15598294,0.3295242,-0.39811856,-0.77805334,-0.57716966,-0.30609393,1.158113,-0.1860926,-0.46753287,0.30808625,-0.14698485,-0.22636236,-0.21687488,0.33081985,-0.15970343,0.07333413,-0.7425811,0.2323283,-0.05711833,0.07599064,0.08458015,0.07827095,-0.46703255,0.6468296,-0.046288677,0.43612036,0.34920812,0.23189683,-0.2215672,-0.41996533,0.05459189,0.91125935,0.4352036,0.20261686,-0.3257545,-0.2593211,-0.1899109,-0.12835261,0.14847168,0.37184143,0.69566673,0.04234691,0.15839347,0.17993902,-0.076366596,0.09798832,-0.142267,-0.19751036,-0.0073315036,0.06739371,0.54979175,0.4156854,-0.20302996,0.4066691,0.0009824581,0.24317014,-0.23449592,-0.3858224,0.4256928,0.9639605,-0.050699554,-0.24359763,0.61378706,0.55903715,-0.19868074,0.4062427,-0.6187998,-0.2876729,0.48017097,-0.31502905,-0.42942575,0.16346073,-0.3952176,0.09147801,-0.75919276,0.29357925,-0.17610209,-0.35121694,-0.6914811,-0.11539037,-3.626472,0.08033462,-0.1612567,-0.20607698,-0.024190418,-0.16693433,0.17756456,-0.6303739,-0.45985922,0.16796097,0.0356172,0.5829434,0.023603959,0.019666806,-0.2189225,-0.2608553,-0.25005698,0.13263763,0.019477578,0.3266324,-0.07308924,-0.5033835,0.007450998,-0.20499271,-0.46286795,0.019271504,-0.2870884,-0.5351266,-0.10328364,-0.4271715,-0.32064462,0.6418052,-0.36134255,0.089321785,-0.20328772,-0.14621216,-0.124844775,0.2586193,0.20152074,0.19173667,0.12650321,-0.067420594,0.1320628,-0.3265168,0.24885362,0.030925835,0.1479721,0.48805714,-0.15625286,0.09775691,0.5128866,0.5834254,-0.017411618,0.85266155,0.47121507,-0.21029106,0.22333513,-0.33857414,-0.22782053,-0.6363042,-0.39031586,-0.021959797,-0.3850279,-0.5264756,-0.2201369,-0.33261776,-0.70962185,0.57657343,-0.032131966,0.19014496,-0.004057949,0.25185847,0.31171393,-0.14504696,-0.11812633,-0.18283835,-0.11075957,-0.36958712,-0.35018846,-0.73268634,-0.5227798,0.04614919,0.87250906,-0.10325652,-0.13396047,0.045002364,-0.04531951,-0.06565127,0.2142499,0.22815341,0.20799008,0.23162995,-0.0487881,-0.6024023,0.62562954,0.1153912,-0.16611665,-0.55788946,0.006339399,0.40503764,-0.5330075,0.45190838,0.400815,0.013049895,0.07056963,-0.52001,-0.20467955,-0.08277511,-0.31750685,0.4172142,0.20821297,-0.6279397,0.41877964,0.23290534,-0.20865321,-0.6796157,0.52342457,-0.109559864,-0.34978226,0.025930362,0.36646912,0.18771362,0.016830873,-0.15361607,0.1923879,-0.4270366,0.25183815,0.26442346,-0.017558321,0.47641423,-0.23631646,-0.13662612,-0.7379014,-0.015118557,-0.51227576,-0.21247971,0.055213187,0.14325818,-0.020081166,0.26988792,-0.123795554,0.44218007,-0.34329942,0.052530378,0.04216079,-0.1467864,0.26042792,0.3543691,0.4615545,-0.29327133,0.53456795,0.025719035,-0.015750341,-0.20205866,0.12189035,0.48431182,0.12947108,0.28193784,0.08934759,-0.3588727,0.2691354,0.76932424,0.35754508,0.48229244,0.10148152,-0.3230781,0.302842,0.18474185,0.18614075,0.09646355,-0.34181947,0.031698633,-0.25362936,0.12626979,0.35529265,0.054159254,0.49731177,-0.18607263,-0.19050673,0.09420281,0.30833852,-0.09658724,-0.9564889,0.18527202,0.16763672,0.7875838,0.58608687,0.06990808,0.13635664,0.5421028,-0.3440241,0.069018506,0.31977123,-0.07743909,-0.55582553,0.6377587,-0.7175929,0.4187698,-0.05014,-0.068526566,-0.041664034,-0.07885139,0.31605133,0.66551423,-0.06344128,0.056354396,0.050772518,-0.34400612,0.19514465,-0.35230958,0.10439183,-0.35083225,-0.16205412,0.64794904,0.31414038,0.30667892,-0.099007085,0.02977508,0.08592947,-0.13276456,0.13062851,0.11738404,0.2285705,-0.08851725,-0.50774884,-0.3487817,0.46878007,0.0021580597,0.15533602,0.022368515,-0.1495524,0.24211918,-0.060099512,-0.102028176,0.12028843,-0.45628685,0.110566854,-0.2329696,-0.42199612,0.59473884,-0.2368089,0.33836296,0.13905272,0.061840028,-0.37557375,0.19576731,0.35494518,0.5545004,0.072410025,-0.13570692,-0.30684897,-0.05020829,0.2362136,-0.16690597,-0.19778536,-0.08934493,0.1402025,-0.55539435,0.34218445,-0.17674369,-0.1326897,0.16469952,-0.18714234,-0.03647058,0.3613288,-0.07391697,-0.18384887,-0.010307445,-0.025722744,-0.27365932,-0.13074282,-0.17482655,0.26749676,0.10248483,-0.112090886,-0.08471652,-0.13508372,-0.11200778,0.3908108,-0.020548252,0.32883093,0.27172643,-0.047070764,-0.49723014,-0.07743871,0.14285222,0.3324122,-0.14678453,0.09214903,-0.21130644,-0.46582603,-0.30068815,0.13733499,-0.1461037,0.2766027,0.17057489,-0.3241672,0.6936661,-0.16288616,0.93931246,0.07600133,-0.45133084,0.08120708,0.40466905,-0.041898403,0.06950704,-0.14969769,0.9508391,0.61446494,-0.0041450015,-0.24726693,-0.29792607,0.07403369,0.19045165,-0.1382719,-0.12132713,-0.078009546,-0.7532228,-0.33846718,0.32966873,0.2716844,0.15679112,-0.0449054,0.027202334,0.22838391,0.222278,0.32366404,-0.508404,-0.1791662,0.44412512,0.09794521,0.08398436,0.158316,-0.31296608,0.41822848,-0.50255483,0.075162075,-0.29182664,0.111360505,-0.27534702,-0.21414489,0.32309008,0.09543116,0.29485288,-0.14186575,-0.4165308,-0.26050594,0.41220614,-0.05999484,0.14779162,0.4486529,-0.1654968,0.16266294,-0.035039403,0.34396657,1.0992546,-0.1891578,-0.10330422,0.34657457,-0.3472016,-0.5527131,0.27015233,-0.27863038,0.092273444,-0.043227963,-0.2660537,-0.4758321,0.18814367,0.19694474,0.020795088,0.21123564,-0.38005012,-0.20094413,0.28906554,-0.36574546,-0.15061633,-0.16846392,0.07273061,0.6361519,-0.3267875,-0.13474047,0.050438713,0.3533561,-0.28139976,-0.5741908,0.0799837,-0.2860018,0.3405863,0.19287097,-0.33103782,0.050593797,0.20970632,-0.2916932,0.04658392,0.5117794,-0.41098157,0.0012855565,-0.37238696,0.1701244,0.8956624,-0.116061784,0.17821133,-0.5220548,-0.42126718,-0.9259058,-0.44326615,0.55049956,0.16523862,-0.027958548,-0.57561123,0.045344494,-0.22598715,-0.112370916,-0.04772392,-0.43375942,0.47046828,0.28699857,0.23827244,-0.06685098,-0.5684228,-0.006498295,0.101710275,-0.1428022,-0.463629,0.52087784,-0.17564318,0.7339123,0.04806818,0.07843051,0.3351008,-0.47177136,0.07287472,-0.23151904,-0.27338472,-0.6068644,-0.051204458 +858,0.6541018,-0.21968713,-0.5107881,-0.15398355,-0.2663571,0.24696185,-0.20778185,0.60876465,0.1475476,-0.5604508,-0.05432493,-0.12490168,0.015094146,0.27080673,-0.10271591,-0.41598257,0.11863413,0.1943863,-0.7231202,0.5739327,-0.52970093,0.2521486,0.005938273,0.44361097,0.16779228,0.29577574,-0.007546097,-0.11418471,-0.24832267,-0.20236337,0.052831694,0.32778752,-0.5518873,0.13547999,-0.2765451,-0.2531402,-0.06871591,-0.54149455,-0.2678809,-0.7262068,0.1286824,-0.85047126,0.4796096,-0.06198481,-0.32705778,0.3322934,0.08708027,0.22136872,-0.2531677,0.08762482,0.13853638,-0.11744621,-0.13544811,-0.23506263,-0.18074581,-0.36712658,-0.5876632,0.10331866,-0.39939058,-0.07285651,-0.16665816,0.12502886,-0.18886876,0.022416428,-0.039207336,0.4135444,-0.32682657,0.13958365,0.06321473,-0.05753613,0.087039776,-0.5530472,-0.099669725,-0.14897391,0.3591038,-0.22729234,-0.19748148,0.18648142,0.24936458,0.53481233,0.009242337,-0.09768118,-0.24099624,0.015435703,-0.010125563,0.5279285,-0.13137534,-0.40367514,-0.112235725,0.009420721,0.32361495,0.050632525,0.25030926,-0.1826496,-0.20536579,-0.22733395,-0.22897457,0.33963636,0.4723028,-0.3513404,-0.23576745,0.36869097,0.51908696,0.14738436,-0.24724287,-0.011152549,-0.111941375,-0.5450516,-0.10436094,0.12393278,-0.14903863,0.46617815,-0.17458007,0.14744253,0.5369996,-0.16874416,-0.08260846,0.20378646,0.07630622,0.11011581,-0.11735602,-0.23196733,0.15907985,-0.31175733,-0.020813938,-0.25495636,0.5792715,0.20060924,-0.7428951,0.29734287,-0.44859946,-0.06768134,-0.028035454,0.4708507,0.69692564,0.57000685,0.15488361,0.49902308,-0.2539453,0.14648604,-0.19895165,-0.2742371,0.13247424,-0.21496233,-0.09285267,-0.43408072,0.14934108,-0.109244704,-0.21084778,0.07312644,0.46064785,-0.44318694,-0.16454706,0.20533457,0.82101154,-0.28932852,-0.21761657,0.87099135,0.88678646,0.8699677,0.035117116,1.0487971,0.22470373,-0.12234917,0.16598049,-0.27364573,-0.60629475,0.34705472,0.3431216,-0.027302235,0.27552956,0.07936905,-0.12707072,0.26952186,-0.2593834,-0.04346863,-0.17465125,0.08925878,0.06013915,-0.030194461,-0.2986235,-0.30778205,-0.023622958,-0.009594407,0.16375159,0.20691153,-0.28901345,0.43135625,0.0057770107,1.7552388,0.033306282,0.04109387,0.052071206,0.50187004,0.18228774,-0.23520342,-0.13787144,0.39745784,0.2765667,0.072479,-0.3862611,0.072748005,-0.10062008,-0.43315935,-0.09177329,-0.45351613,-0.11573864,-0.0986177,-0.58691233,-0.1367512,-0.07139419,-0.21588212,0.4064551,-2.681942,-0.19143073,0.040981114,0.34841403,-0.33449495,-0.41430467,-0.25622272,-0.47218698,0.24148649,0.2759674,0.49361783,-0.6277401,0.5368138,0.19308172,-0.5442016,-0.2132847,-0.51211256,-0.1150403,-0.018341742,0.36357766,-0.09741457,0.03534059,0.12144899,0.08165072,0.57720673,-0.102624625,0.099476464,0.286786,0.41489425,0.19993375,0.42413172,-0.12675792,0.5277511,-0.30685365,-0.26172927,0.37496686,-0.43691733,0.22199154,-0.0068517476,0.19246562,0.38151842,-0.523551,-0.89052814,-0.7154664,-0.015072003,1.2517762,-0.15694737,-0.2707518,0.05609677,-0.28238547,-0.3154015,0.029710837,0.45277065,-0.07836126,-0.09875543,-0.7577566,-0.10292578,-0.02411431,0.33139402,-0.012524655,-0.01815151,-0.4170949,0.42720017,0.013491403,0.49512362,0.13062492,0.18398611,-0.15717584,-0.45244795,0.061465364,0.97429585,0.27241856,0.19399731,-0.2807381,-0.28264117,-0.36775634,0.14853281,0.01441347,0.56407905,0.517573,0.044188224,0.13945358,0.19835737,-0.032317556,0.108062245,-0.14292406,-0.22175775,-0.2525317,0.11898869,0.4753037,0.4861041,-0.10265741,0.5313288,-0.17146474,0.35912022,-0.07834373,-0.40983397,0.3876515,0.91601354,-0.22518066,-0.18737204,0.5098989,0.4687329,-0.20771956,0.49063605,-0.53533727,-0.46204185,0.31553692,-0.18086961,-0.20852065,0.39716265,-0.22470772,0.22831583,-0.8853565,0.3068524,-0.32875076,-0.35112762,-0.49536344,-0.023127437,-2.7339342,0.17235279,0.010259673,-0.29083455,-0.06903369,-0.2004476,0.1393044,-0.53430986,-0.41722378,0.085668705,0.08342473,0.7224754,-0.045084976,0.062435534,-0.2938376,-0.4211092,-0.34662968,0.15101233,0.1873096,0.44514686,-0.11424271,-0.4482909,-0.062159754,-0.27563205,-0.21563108,0.046499602,-0.6918578,-0.51271904,-0.15400332,-0.44410223,-0.19886903,0.60638535,-0.29012656,0.07316408,-0.11712061,-0.007935593,-0.043132517,0.17193045,0.047146082,0.13696194,0.18661666,-0.13802482,0.065770194,-0.2582008,0.250432,0.18710022,0.17546317,0.46061543,-0.102234185,0.18982922,0.5682908,0.61220455,-0.23778419,0.78363395,0.40477464,-0.03531269,0.34081918,-0.2755904,-0.28144422,-0.453652,-0.14730169,-0.078422636,-0.41694084,-0.32664305,-0.019565128,-0.3498039,-0.8335277,0.5294834,-0.113375805,-0.019070387,-0.08292483,0.4008155,0.5962893,-0.23290345,0.0019191131,-0.13966708,-0.11368188,-0.48479906,-0.39260507,-0.5108473,-0.4080039,-0.07571017,1.1257038,-0.2311548,0.08997683,-0.006199777,-0.036372315,0.0069699567,0.087493435,-0.04060833,0.058292355,0.498991,-0.19405335,-0.62744457,0.40101314,-0.29325232,-0.16498384,-0.36604437,0.3361779,0.51101184,-0.6290765,0.52368456,0.35145998,0.08667436,-0.21531266,-0.5357698,-0.18545017,-0.00044609606,-0.12290272,0.3623834,0.16667077,-0.8329589,0.44533658,0.21579303,-0.26338658,-0.69748926,0.52076,0.02594095,-0.36567372,-0.027071308,0.32321554,0.12852949,0.016936505,-0.40034923,0.14687505,-0.5183642,0.25739378,0.24373618,-0.016983032,0.1790188,-0.26716134,-0.1408388,-0.6689546,-0.024672993,-0.42066792,-0.39669633,0.25390187,0.073173195,0.14920075,0.17034051,0.05049386,0.31547713,-0.39434037,0.06450375,-0.06819604,-0.20099412,0.27887475,0.37770498,0.5266674,-0.41192916,0.48797947,0.07590019,-0.14797552,0.06528226,0.12491106,0.44713888,0.06787443,0.21576245,0.043205455,-0.14462036,0.18618527,0.6879628,0.2528902,0.43065116,0.00023195893,-0.28170335,0.24828902,0.05497385,0.20796475,0.007923812,-0.4657665,-0.0540161,-0.2136661,0.114467375,0.4684744,0.12654968,0.36328903,-0.08172445,-0.30536336,0.02866603,0.15995795,0.026850354,-1.1507199,0.20682195,0.12287993,0.8028129,0.302063,0.06098792,0.0006108731,0.7355128,-0.2581183,0.16643614,0.33110029,-0.15489513,-0.5393885,0.506535,-0.58785075,0.38463128,0.023495857,-0.027957736,0.08673536,-0.16590394,0.5032429,0.78369164,-0.13660723,0.16823706,0.13907045,-0.34118682,0.055755537,-0.46772313,0.0038892347,-0.56872654,-0.13666698,0.6381011,0.35573348,0.38170928,-0.17770961,0.070002206,0.033878252,-0.1383288,0.067455344,0.19975172,0.1928524,0.05271142,-0.5445639,-0.1368584,0.57484907,-0.055852182,0.092160046,0.12606476,-0.22865367,0.27069208,-0.0552955,-0.028057784,-0.14410748,-0.6014015,-0.13884741,-0.4173411,-0.27702048,0.34771448,-0.1029896,0.1713317,0.24905324,0.036563326,-0.309437,0.46989796,0.22304979,0.7508426,-0.018675782,-0.28000546,-0.41972232,0.25591803,0.2135003,-0.23533112,-0.12401558,-0.31779677,0.108121954,-0.5847166,0.37768477,-0.07013999,-0.24768107,-0.014885947,0.034656577,0.10998137,0.4199006,-0.018989526,-0.020491377,0.025137432,-0.034519155,-0.39625305,-0.06258191,-0.09053819,0.20628372,0.43098807,-0.25175607,-0.12918848,0.030804954,0.046702523,0.44761103,0.0147769675,0.42385116,0.33126053,0.08639587,-0.24719478,-0.004369594,0.27356225,0.4674477,-0.016508602,-0.13380858,-0.37300053,-0.31260163,-0.29189593,0.20812374,-0.10192607,0.26911142,0.19945739,-0.14720066,0.78065187,0.0057423897,1.0319219,-0.04887678,-0.3042451,0.17132244,0.4439131,-0.015214473,-0.011114296,-0.37531,0.96962965,0.44885197,0.056217343,-0.02157192,-0.3209491,-0.1538907,0.045957923,-0.2452062,-0.23458743,-0.094980754,-0.56650573,-0.35056105,0.2532425,0.22164175,0.27478603,-0.15689626,0.21055071,0.20302054,0.035399705,0.070166565,-0.48858958,-0.24357921,0.20664778,0.36981156,-0.034245986,0.05174354,-0.47885486,0.34966695,-0.5777326,0.0054173674,-0.16445932,0.15541896,-0.05139462,-0.41362908,0.19789419,0.09165498,0.3506148,-0.43944055,-0.43258002,-0.3286823,0.45891985,0.04898594,0.15634696,0.49177018,-0.23822775,0.08141133,0.09286061,0.47968757,0.90276873,-0.1601554,0.021339782,0.4045539,-0.31508633,-0.6502138,0.22375916,-0.29258275,0.3929177,-0.1257654,-0.11131695,-0.57425034,0.38434502,0.17701936,0.11193045,0.0003447011,-0.4623374,-0.07076221,0.44243187,-0.22217661,-0.26047498,-0.32708588,0.18731606,0.5591531,-0.23543756,-0.3050786,0.1581645,0.3036921,-0.31286794,-0.5223404,-0.24604023,-0.4239165,0.18518683,0.022523453,-0.24114615,-0.18457063,-0.08894286,-0.39071593,0.24037172,0.28627974,-0.3173495,0.081878275,-0.43194765,0.018592887,0.8806103,-0.14752847,0.1071725,-0.47471887,-0.46952504,-0.8070438,-0.4431574,0.3895465,0.15615892,-0.041397307,-0.6599279,0.016559623,-0.21563879,-0.42735565,-0.018264377,-0.40845746,0.46232796,0.10090193,0.16639888,-0.15292753,-0.83251226,0.21534817,0.1531495,-0.33795372,-0.5644792,0.364312,-0.009413816,0.988335,0.10930303,0.13417056,0.34611535,-0.48508054,-0.13902542,-0.2660752,0.09334901,-0.5890738,0.07664703 +859,0.48856574,-0.12861958,-0.4809274,-0.29935357,-0.3469301,0.07614346,-0.024981173,0.37619033,0.30824515,-0.069881655,0.015600121,-0.016395878,-0.066761844,0.33930746,-0.103694946,-0.7685868,-0.013124879,0.19570097,-0.72581726,0.5016242,-0.48323682,0.22029641,0.020521877,0.45913228,-0.009295068,0.15393749,0.091037326,-0.0506379,0.24573769,0.050051816,-0.16645911,0.39143255,-0.56358474,0.23044325,-0.015101238,-0.2887376,-0.053804856,-0.45092723,-0.2553873,-0.7450154,0.22482869,-0.4736505,0.488339,-0.009413779,-0.44371846,0.07614906,-0.014777003,0.18490951,-0.50613135,-0.10394599,0.22551225,-0.15698113,-0.05920696,0.0075955074,-0.0863795,-0.5010034,-0.56321037,0.04106462,-0.5599031,0.065188244,-0.15252519,0.2587823,-0.3583455,-0.033025615,-0.24888496,0.5436161,-0.29159883,0.11237972,0.33574572,-0.16069207,0.057178833,-0.47461516,-0.031581126,-0.19702172,0.13042277,0.18983725,-0.4718753,0.28661606,0.29164273,0.56720346,0.16495389,-0.3847956,-0.10515107,-0.0879531,-0.1274448,0.43908864,-0.07047791,-0.25771588,-0.3405856,0.013892661,0.16438468,0.14313276,-0.020029431,-0.39425746,-0.027392868,0.036668744,-0.20826192,0.3830348,0.45198673,-0.3979465,-0.24621437,0.37801597,0.41604844,0.1995991,-0.14152808,0.08842978,-0.0054940786,-0.49717873,-0.2528706,0.18397169,-0.24741171,0.5202063,-0.23832074,0.1311616,0.79778576,0.03282458,-0.16918868,-0.04345095,-0.04403688,-0.15077254,-0.44364482,-0.22076963,0.21469606,-0.4412859,0.014441864,-0.2750418,0.8091522,0.11166259,-0.794301,0.33271018,-0.5152908,0.14726502,-0.17503242,0.62227046,0.94235015,0.38968435,0.27276766,0.795969,-0.42746708,0.11065611,-0.03607944,-0.3706319,0.08742653,0.023676623,-0.023156779,-0.58571905,0.055062428,-0.09160206,0.03089809,0.0011031429,0.24744318,-0.48517466,-0.19070068,0.02365485,0.49494407,-0.35007092,-0.24582681,0.6786121,0.9629153,0.98599803,0.106322415,1.3490093,0.3935275,-0.06420505,0.26629242,-0.22986409,-0.574401,0.1956579,0.2586079,0.019759575,0.37938213,0.059058554,0.020565737,0.61505973,-0.16673276,-0.085548475,-0.05434789,0.31581274,-0.08556159,-0.07055945,-0.4873523,-0.33918908,0.102561116,0.07213648,-0.016533708,0.24096869,-0.18464692,0.37464622,0.16785881,1.3284042,0.08554564,0.024022246,0.0058467686,0.2963883,0.28838202,-0.21769215,-0.11188093,0.49350175,0.48005256,-0.033707205,-0.57255274,0.06504335,-0.28432772,-0.3146421,-0.16849433,-0.44803995,0.009734503,-0.12864147,-0.5187843,-0.1456991,0.00046207904,-0.28379124,0.4686441,-2.548469,-0.2119184,-0.088987954,0.25368622,-0.207538,-0.25248796,-0.24076536,-0.43094763,0.17780632,0.39320734,0.36594343,-0.7628898,0.44158763,0.22584032,-0.47397742,0.047549296,-0.76128423,-0.13694954,0.028970854,0.2546664,-0.024770236,-0.07693974,-0.15681799,0.28165236,0.7190773,0.099938616,0.018302595,0.31146753,0.4859365,-0.06394485,0.4805799,-0.03166501,0.5940496,-0.19540481,-0.21268012,0.33864024,-0.37233588,0.39072856,0.04536024,0.13284941,0.43903312,-0.41826117,-0.7674728,-0.5626762,-0.2757246,1.2970554,-0.5006708,-0.28905037,0.24836151,-0.18513934,-0.18060614,0.022354417,0.3614026,-0.101444095,-0.100063205,-0.63957673,0.09592828,0.006695183,0.18982212,-0.113493934,0.024454182,-0.2629924,0.7781729,-0.107188635,0.60905826,0.34159282,0.20611419,-0.085036844,-0.44080302,0.037493195,0.73588204,0.39965862,0.15296513,-0.14310206,-0.17940484,-0.15763263,0.009872059,0.22221223,0.575385,0.679191,-0.06838436,0.1618981,0.44973794,-0.09295297,0.037329357,-0.07908769,-0.2743923,-0.099673636,0.18256739,0.5709964,0.60512775,-0.21940883,0.25226912,-0.045824982,0.15485974,-0.00916184,-0.65200335,0.517862,0.9375034,-0.23741984,-0.2927886,0.52981144,0.30880082,-0.30554426,0.35126755,-0.42614567,-0.13089617,0.65027547,-0.0647574,-0.30516738,-0.03649964,-0.33528703,0.033748396,-0.96685964,0.22422913,-0.10947275,-0.47982737,-0.49631956,-0.101931326,-3.8203897,0.25878927,-0.25423318,-0.02026283,-0.1183481,-0.16376534,0.35316867,-0.6555631,-0.48083752,0.004554741,0.15697022,0.50451434,-0.037342,0.08792314,-0.29328918,-0.25233498,-0.15411814,0.16639213,0.11121976,0.35933718,-0.05825365,-0.42832386,0.089710936,-0.15374802,-0.5486136,0.113232724,-0.5325226,-0.46866652,-0.11563269,-0.6449191,-0.14772733,0.68315876,-0.331638,-0.08988852,-0.21663547,0.020801445,-0.11384037,0.335487,-0.013768627,0.22691366,0.07959081,-0.05709939,-0.22051714,-0.3015751,0.21582647,0.06399007,0.21301462,0.33431903,-0.03276104,0.2701069,0.6189462,0.5609564,-0.17202981,0.7605051,0.44510868,-0.12789544,0.29698136,-0.16031434,-0.22308272,-0.66820073,-0.39952987,-0.21526875,-0.5838832,-0.31483182,-0.009158325,-0.28416288,-0.8103894,0.44497076,-0.011604418,0.10623741,-0.114673145,0.28602663,0.5234773,-0.13390276,0.08890283,-0.13670151,-0.35421005,-0.5560393,-0.42604163,-0.62000793,-0.46719617,0.20020567,1.2679474,-0.23745249,0.015127023,-0.064857654,-0.28965855,-0.010860655,0.07542556,0.15081148,0.33431348,0.2854231,-0.23368911,-0.57684267,0.3787126,-0.15765788,-0.100236535,-0.5419001,0.19916269,0.62525123,-0.58386433,0.7469799,0.18398285,0.18897668,0.047756776,-0.8132902,-0.34968203,0.051938254,-0.120176144,0.6325013,0.19308418,-0.6531678,0.5112914,0.20825782,-0.10543251,-0.67530227,0.41409302,-0.13267754,-0.20872371,0.07428311,0.32136965,0.028532168,-0.06525429,-0.10791675,0.20580257,-0.51354456,0.26902738,0.28370732,-0.024575753,0.2687416,0.052469514,-0.08631881,-0.5870745,-0.16919796,-0.694679,-0.30980694,0.043664772,0.05704792,0.11138471,0.014942042,-0.12832822,0.4984288,-0.19657382,0.21692772,0.011716732,-0.21324523,0.3438141,0.5374583,0.34019384,-0.43724844,0.54472214,0.21689838,0.13115749,-0.21547483,0.19597301,0.48069364,0.24166006,0.38349903,-0.28597164,-0.100521944,0.19728793,0.71050256,0.08342903,0.31239542,0.06052321,-0.13737132,0.33799526,0.10547615,0.18687122,-0.10661183,-0.26140407,-0.080208585,0.040721297,0.28416064,0.56033355,0.13173114,0.25786045,-0.0017693341,-0.1538554,0.1672,0.18425322,-0.080476455,-1.1836855,0.36223108,0.38429445,0.7037925,0.4468896,0.09304301,-0.19282117,0.46613827,-0.38087484,0.1644973,0.43729553,0.039061252,-0.35564324,0.60263044,-0.5661132,0.52436864,-0.2023348,-0.007871754,0.19071296,0.248677,0.3165406,0.7965918,-0.1938795,0.047278095,-0.004010822,-0.27794668,0.10787465,-0.41005686,0.01729778,-0.48322895,-0.3437114,0.564268,0.30654132,0.34825364,-0.47960702,-0.07204076,0.082072355,-0.25510815,-0.0074779154,-0.15382442,-0.17229234,-0.104471,-0.5445814,-0.26811612,0.59480727,-0.22244057,0.09441779,0.058672205,-0.26286253,0.19291146,-0.12577015,-0.037623484,-0.03691317,-0.605246,-0.14037332,-0.20912334,-0.4603985,0.4374201,-0.51822996,0.18479082,0.1747901,0.007721913,-0.3206044,0.15043277,-0.039621364,0.8380461,-0.01832386,0.03344651,-0.45333594,0.16199459,0.27390066,-0.24184676,-0.1468537,-0.40447664,0.0484051,-0.47055718,0.37415415,-0.06823001,-0.32614857,-0.068854995,-0.0921321,0.043519568,0.40011796,-0.31185117,-0.13566495,-0.020978697,-0.11203027,-0.2992133,-0.070498735,-0.30131045,0.37740105,0.02886879,0.035172407,0.04681743,-0.19180274,-0.109154195,0.29809535,0.21442427,0.14563881,0.23005977,-0.06120235,-0.30442494,0.06688091,-0.020032218,0.27314612,0.07730367,-0.15891483,-0.33377874,-0.24376386,-0.28415972,0.16928066,-0.13191415,0.25483036,0.07600225,-0.37375352,0.76946336,0.17132276,1.1617913,0.11178456,-0.33197483,0.002735893,0.48211232,0.053401813,0.14606138,-0.2563688,0.69967526,0.49959552,0.001698474,-0.2548168,-0.49545148,-0.17759539,0.26408392,-0.19709176,-0.22446842,-0.1468927,-0.6564959,-0.20399657,0.15987758,0.12106506,0.16388384,-0.045889888,-0.2991812,0.098530784,0.05867869,0.39461097,-0.4349219,-0.0076393425,0.1346553,0.15753649,0.080693744,0.34181204,-0.3383443,0.40617263,-0.7167075,0.19780059,-0.34252167,0.1725619,-0.1187089,-0.17534341,0.1812895,-0.13242714,0.31004137,-0.2328137,-0.30081898,-0.22475986,0.7663218,0.2098804,0.20585817,0.80170596,-0.32878664,-0.10081578,0.23151137,0.49013633,1.232009,-0.22062284,-0.10004182,0.21435122,-0.22345637,-0.61490285,0.14085473,-0.38130257,0.04054837,-0.1049857,-0.3714895,-0.2813086,0.2582699,0.1034349,-0.014770261,0.23468997,-0.64185333,0.005170661,0.3926934,-0.28853524,-0.12809198,-0.26887226,0.3507782,0.6945964,-0.3836724,-0.49871406,0.16352607,0.23901053,-0.1685227,-0.60754293,0.004916233,-0.41312295,0.32956362,0.17417055,-0.33737367,0.016548479,0.21805115,-0.4624929,0.10046008,0.35878855,-0.22601625,0.12970726,-0.18788424,-0.23709835,1.0771407,0.074337445,0.18864031,-0.7103439,-0.44347966,-0.85576034,-0.33142662,0.27116236,0.24468349,-0.0072084307,-0.6821896,-0.114948355,-0.10540657,-0.025244607,-0.03254385,-0.43145046,0.4940701,0.17259319,0.31271738,0.005410055,-0.88587326,0.09141397,0.08153005,-0.09780238,-0.4738713,0.5066583,-0.21430226,0.68434256,0.09995737,0.10170799,0.059174895,-0.55746704,0.16405681,-0.44716927,-0.2320893,-0.6464494,0.0716685 +860,0.41958457,-0.09506401,-0.4713389,-0.14759867,-0.08343202,0.02549687,-0.24917422,0.3791758,0.28020597,-0.39961952,-0.1246834,-0.15259023,0.07785462,0.168032,-0.08992839,-0.5918089,0.07428406,0.20566222,-0.5909709,0.6645926,-0.2506746,0.23847042,-0.06781346,0.431179,0.042466097,0.24532251,-0.027961442,-0.15644877,-0.18742561,-0.028112117,-0.18312429,0.50074935,-0.4451833,0.1538757,-0.2550593,-0.16643262,0.08544761,-0.35735485,-0.3505798,-0.87051755,0.24202988,-0.7112042,0.4804155,0.18555748,-0.3452719,0.052649904,0.16588847,0.4345449,-0.4852588,0.025050772,0.13153946,-0.02087673,-0.14442489,-0.19816934,-0.20838092,-0.42150545,-0.47453874,-0.11271841,-0.5966472,-0.052514173,-0.34567356,0.12989426,-0.18372335,-0.27519417,-0.005503927,0.63584024,-0.43884805,-0.003078897,0.2397046,-0.13284342,0.3788368,-0.48259607,-0.110932626,-0.17351644,0.44989583,-0.20050319,-0.28155217,0.23993628,0.37023404,0.4263694,-0.21852793,-0.18512158,-0.33789316,-0.13638283,0.06726587,0.34791142,-0.09017996,-0.61483896,0.037141066,0.062320977,0.040479418,0.24307926,0.05138249,-0.3386638,-0.046874426,-0.0037317,-0.1198864,0.30537206,0.47942433,-0.2924063,-0.12516722,0.20333259,0.5697215,0.12970133,-0.16295373,-0.055407766,0.10127779,-0.60517704,-0.089062236,0.25773475,-0.18079603,0.5791882,-0.027078304,0.076487176,0.59652126,-0.098221935,-0.18130192,0.069309466,0.17993404,0.10394718,-0.33336428,-0.3877376,0.26459122,-0.36072722,0.09815449,-0.1736096,0.5040318,0.2673437,-0.72457016,0.17898151,-0.52174485,0.024647608,-0.08557708,0.44498566,0.695137,0.41089782,0.369746,0.628088,-0.41329718,0.14909782,-0.083935425,-0.31466103,0.011868651,-0.12642886,-0.07145246,-0.47432056,-0.06857605,-0.16527162,-0.17640765,0.15267178,0.23935747,-0.45794767,-0.08673092,0.20654115,0.89505637,-0.26041463,-0.077492945,0.5190853,0.8625043,0.7910538,0.08903384,0.98907894,0.24036023,-0.28986064,0.31991813,-0.2796807,-0.6855537,0.30076128,0.26145983,-0.15281844,0.18212365,-0.02996985,0.06393661,0.36383224,-0.45397112,0.069131635,-0.09232201,0.14692487,0.1402723,-0.07396994,-0.3606194,-0.30391857,-0.16609894,-0.009628215,-0.07925934,0.31049022,-0.17488833,0.08524389,-0.025659302,1.4725065,0.04934966,-0.028695771,0.11536638,0.5943799,0.24418929,-0.09119294,-0.2559436,0.49318627,0.28086242,0.09877249,-0.4727571,0.05085764,-0.29541156,-0.25485447,-0.1411441,-0.2441956,0.05562361,0.04707404,-0.45150137,-0.043088548,-0.06400696,-0.30396184,0.63333327,-2.7787557,-0.015243471,-0.06391841,0.4010919,-0.3046532,-0.25625774,-0.21269819,-0.42475152,0.4082152,0.33423325,0.4780939,-0.57582146,0.22423919,0.45540574,-0.577527,-0.19169123,-0.5254103,-0.13660835,0.009483478,0.2645846,-0.025037004,-0.15439162,0.044117134,0.21717755,0.4909766,0.012450589,0.11075399,0.31254742,0.2849647,0.13238284,0.55763173,-0.020035002,0.4495199,-0.25652578,-0.24763854,0.2273581,-0.44737563,0.151608,0.041611113,0.017741693,0.5640434,-0.47150347,-0.954339,-0.7371273,-0.18695721,0.96064997,-0.25469348,-0.39185163,0.23871246,-0.44249234,-0.19381309,-0.113368765,0.64744884,0.0664194,0.058865238,-0.8075953,-0.12926486,-0.011286868,0.4183881,0.07396551,0.035547566,-0.37647623,0.42729634,0.014694044,0.39102277,0.39417338,0.13303752,-0.37470582,-0.5409087,0.072266035,1.0367645,0.10299473,0.20290315,-0.16314471,-0.3190892,-0.43795428,0.12258998,0.017904585,0.65962255,0.64223576,-0.22713403,0.11034549,0.21985951,0.063739546,0.052130274,-0.19271745,-0.37130216,-0.14054784,0.34523314,0.5552543,0.6149259,-0.11818685,0.464211,0.03431871,0.24369451,-0.19623086,-0.30921873,0.40389436,1.0003427,-0.126563,-0.23895545,0.53067017,0.51543784,-0.3307306,0.43071565,-0.5368449,-0.31718203,0.4895768,-0.17960513,-0.4911271,0.26554912,-0.30753103,0.15109432,-0.81874806,0.24822308,-0.28090423,-0.36556843,-0.53227043,0.06705249,-3.4760525,0.13122632,-0.051476203,-0.19464174,-0.014934689,0.0060392465,0.09391493,-0.44863343,-0.60220003,0.2461622,0.07149737,0.699864,-0.10566373,0.037157793,-0.30829835,-0.34357396,-0.14881992,0.296271,0.27534977,0.28924727,0.09044491,-0.607916,-0.18539576,-0.18406942,-0.32403713,0.051678777,-0.64596426,-0.3147404,-0.1791077,-0.7871899,-0.23777373,0.60414964,-0.45109698,-0.012640791,-0.12718216,0.057387523,-0.048981685,0.20493685,0.23316462,0.3915362,-0.012857194,-0.0543315,-0.07064345,-0.14682528,0.20657657,0.13355006,0.2519645,0.09749069,0.16512254,0.2094073,0.5039879,0.6005208,-0.07302626,0.9627252,0.642953,-0.08138682,0.29187113,-0.2560849,-0.29380986,-0.4986075,-0.26516488,-0.08355088,-0.39617634,-0.41510445,0.063020885,-0.37667108,-0.6957695,0.51466626,-0.21910515,0.019990453,0.18600862,0.33236784,0.5026867,-0.35112265,0.03510413,-0.106744036,-0.050751705,-0.45310137,-0.26462597,-0.4561893,-0.34990436,0.13380198,0.9799186,-0.26695028,-0.014408329,0.026657317,-0.11321028,-0.07451637,0.25296333,0.042062707,0.24742022,0.574782,0.0086238,-0.5754747,0.30555463,-0.12545185,-0.1183163,-0.54177356,0.2303181,0.5346173,-0.72433466,0.8180181,0.32045063,-0.041576274,-0.2600802,-0.64435965,-0.4689719,0.068365715,-0.12931876,0.3842725,0.24579082,-0.78136104,0.21419707,0.23820893,-0.31673744,-0.65923625,0.6230626,-0.070697844,-0.51063114,-0.062233772,0.39622292,-0.1701444,0.048992455,-0.30502295,0.17105107,-0.27561563,0.061435167,0.27639318,-0.11467009,0.19952016,-0.32247695,0.00683277,-0.8390217,0.13138619,-0.48106575,-0.25684023,0.54670376,0.10946883,0.080634594,0.22814691,-0.023802357,0.29887363,-0.19692764,0.022112062,-0.13061337,-0.19678156,0.4303454,0.3768275,0.4506438,-0.36574873,0.5597773,-0.07484144,-0.20236167,-0.18995936,0.09055818,0.3322166,-0.05500722,0.4617307,-0.08346305,-0.2850511,0.41187343,0.74400187,0.18318641,0.4227393,0.00062391587,0.09043489,0.2733798,0.124991246,0.109066114,0.04551163,-0.45766193,0.029423084,-0.34193712,0.16453497,0.3634728,0.04293702,0.18515088,-0.012371376,-0.28554344,-0.048949085,0.19760224,0.19551119,-1.1499212,0.45661667,0.16475391,0.85427624,0.4376923,0.22679305,-0.055701386,0.66973656,-0.08556456,0.09307652,0.37313753,-0.13992336,-0.4473498,0.55760187,-0.50681406,0.57641953,0.10349163,0.05463338,0.009154124,-0.113441125,0.4729932,0.91454965,-0.18088205,-0.013185016,0.113668226,-0.17608435,0.24544358,-0.3031629,0.12051825,-0.7038058,-0.40478066,0.5016266,0.5440314,0.26793897,-0.23696272,-0.049707625,0.12988417,-0.21392237,0.11232621,0.00800018,0.044600837,-0.021457357,-0.6518318,-0.051862687,0.5141964,-0.07134551,-0.06650413,-0.05180917,0.06835499,0.26964432,-0.15728594,0.11743821,-0.18313476,-0.6258226,-0.1258033,-0.48842645,-0.26402768,0.6836291,-0.23701827,0.24642147,0.16239348,0.061904915,-0.41683552,0.67705566,0.1813403,0.7520331,-0.017105954,-0.08803893,-0.3089353,0.036126655,0.10843791,-0.13309374,-0.067547016,-0.50718874,0.007978482,-0.72405,0.4174479,0.020796428,-0.2708738,-0.17652287,-0.12211813,-0.020343542,0.5218963,-0.045720644,-0.29399857,-0.0608662,-0.12495849,-0.33237764,-0.16845226,-0.2212552,0.2744408,0.13355663,0.022937817,-0.12969103,-0.075557195,-0.09811254,0.5273175,-0.08227511,0.28494778,0.29825187,0.32065886,-0.090933464,0.0176272,0.066314764,0.65851635,0.08494584,-0.09507449,-0.24383989,-0.2608653,-0.4936349,-0.00030434132,-0.09896268,0.4812575,0.107130595,-0.23846729,0.7445259,-0.11441064,1.226906,-0.1004191,-0.3548264,0.05870274,0.49557,-0.1252337,-0.028054383,-0.37070933,0.8240722,0.52728057,0.049132675,-0.06282438,-0.14593884,0.06768377,-0.037711043,-0.1540056,-0.12453156,-0.017037136,-0.535808,-0.08522227,0.20136009,0.31148085,0.39184895,-0.08199124,0.07191438,0.17763557,0.13971642,0.026005361,-0.42523402,0.12827504,0.23881194,0.3859351,0.17480405,0.060240626,-0.33470002,0.34432432,-0.4110665,-0.029073061,-0.3284166,0.18310645,-0.27572033,-0.41831872,0.24564525,0.016322987,0.36415142,-0.27664658,-0.17084493,-0.36886212,0.55632055,0.16072656,0.1961162,0.5266369,-0.14641348,-1.8498728e-05,0.06963037,0.6283666,0.9153779,-0.44138193,-0.17250933,0.38700676,-0.41351938,-0.62522304,0.26265433,-0.56825083,0.1396132,0.11643362,-0.21247923,-0.6104307,0.19508438,0.068609774,0.13076796,-0.11121665,-0.69527596,-0.13611172,0.24998379,-0.19867234,-0.16963935,-0.31468043,0.3369855,0.5345893,-0.1708264,-0.33564442,0.069017276,0.13368274,-0.3266333,-0.53870815,0.07697991,-0.40426144,0.22845592,0.09447306,-0.48054567,-0.19153042,0.035486605,-0.5103456,0.20223263,0.26267475,-0.4004937,0.099175714,-0.25118297,-0.118892595,1.0582554,-0.18415155,0.1675562,-0.29949874,-0.45060268,-0.8719793,-0.12967774,0.4638633,-0.075209446,-0.02732736,-0.6041684,-0.017014215,-0.12291246,-0.16928038,-0.05552811,-0.20709945,0.3759706,0.040713735,0.55905503,-0.081491105,-0.93609273,0.12221442,0.093576856,-0.3219139,-0.56946963,0.43094426,-0.047167774,1.0342759,0.0010485084,0.13523898,0.526291,-0.37090996,-0.15959729,-0.18764083,-0.11364194,-0.48367754,0.033916075 +861,0.39331427,-0.15968813,-0.46511912,-0.17614992,-0.20363991,0.19634454,-0.12779763,0.5555969,0.13283114,-0.6808723,-0.19778037,-0.18885049,0.042700194,0.20308256,-0.25467476,-0.34282538,0.008533961,0.15400232,-0.43199039,0.4610493,-0.39450273,0.23207192,0.18505645,0.38111654,0.08583442,0.14507444,0.14366224,-0.18962245,-0.046679746,-0.2619466,-0.16199145,0.4826569,-0.37622195,0.33439398,-0.11979943,-0.19307375,0.0056455093,-0.48497376,-0.20063427,-0.7371239,0.13091527,-0.81063646,0.50265604,0.10607053,-0.28878942,0.27901974,0.43205342,0.14695938,-0.1371653,-0.037738748,0.26352337,-0.14620209,-0.20862518,-0.17133835,-0.07584415,-0.3693883,-0.5073219,0.025575992,-0.43638283,-0.28099987,-0.24366693,0.30435282,-0.25814006,-0.041533466,-0.13497862,0.6745184,-0.42806825,0.24322213,0.17871423,-0.29486513,0.39523178,-0.624586,-0.15695669,-0.07028941,0.2618949,-0.18726991,-0.26849982,0.046033107,0.43253502,0.45581883,0.026354436,-0.10525382,-0.22101283,-0.11524032,0.023591552,0.4164949,-0.14983477,-0.35012507,-0.120819464,0.06867641,0.09414591,0.26710907,0.11855163,-0.47701925,-0.13200046,-0.048938096,-0.27339762,0.3688437,0.40431094,-0.23446187,-0.2550452,0.3516962,0.5136482,0.05788579,-0.07860814,0.026743677,-0.043956865,-0.5922646,-0.112399474,0.18358128,-0.14129251,0.4253873,-0.18377416,0.27801707,0.6310253,-0.040883746,-0.023009678,0.19071214,0.15360503,0.017910464,-0.43157586,-0.20792577,0.25768048,-0.36237365,-0.016543727,-0.16620322,0.8346349,0.012882688,-0.6509002,0.24001758,-0.53930485,-0.016634481,-0.22252798,0.42037204,0.53622144,0.37663934,0.20357165,0.71219605,-0.42889783,0.004067156,-0.113192864,-0.32032058,0.045192428,-0.07930534,-0.018722882,-0.54227966,0.080958195,-0.0240455,0.044985034,0.064741544,0.40599325,-0.64644134,-0.20664133,0.07071082,0.81518024,-0.24798056,-0.21100657,0.5910924,0.8729843,0.827322,0.13364422,1.08162,0.12638833,-0.17332898,0.17357196,-0.14531015,-0.64947987,0.40784305,0.42520604,-0.29586306,0.045477804,0.046629388,0.051487748,0.37352824,-0.33586192,-0.07307921,-0.2429706,0.1602163,0.09273009,-0.12001843,-0.42685828,-0.24852578,0.075313225,0.032429136,0.20738828,0.05390524,-0.17039622,0.2981034,0.08349788,1.4952947,-0.16844146,0.1600198,0.17702767,0.14660658,0.22608267,-0.14546679,-0.05738753,0.47718266,0.35847378,0.2486474,-0.49007353,0.24549477,-0.1014397,-0.4154767,-0.16466747,-0.346661,-0.09934677,-0.041036498,-0.4743333,-0.13010506,-0.21731272,-0.40951267,0.47503543,-2.8125083,-0.10618496,-0.17949677,0.38434076,-0.27217537,-0.2982803,-0.19204426,-0.3779696,0.54794294,0.2695374,0.5093967,-0.4703507,0.32905397,0.40095016,-0.5012841,-0.27277026,-0.63918686,-0.031385984,-0.06562966,0.25484118,0.07759903,-0.11713868,-0.12232047,-0.0052078855,0.43960404,-0.07980096,0.14180334,0.32215616,0.45910385,0.0676718,0.58956116,-0.061901007,0.58747804,-0.29675344,-0.3008178,0.41090283,-0.31710976,0.17047723,0.008643657,0.09264142,0.42921448,-0.36766678,-0.85945565,-0.7914487,-0.32980648,1.1178988,-0.3183593,-0.3979748,0.23715922,-0.24060524,-0.2531671,0.08392199,0.5052134,-0.019426584,0.061942305,-0.92369515,0.18172911,-0.01633645,0.30498335,0.0018696977,-0.10811175,-0.537219,0.6985794,-0.1631066,0.60457325,0.41859517,0.24274288,-0.46996263,-0.45277882,-0.04835316,1.0996675,0.38050374,0.09745892,-0.093733765,-0.1741164,-0.4856043,-0.040185217,0.10636323,0.6725082,0.5363295,0.099747084,0.18871072,0.3072796,-0.11767102,0.115104415,-0.14953797,-0.33643278,-0.16721332,0.007964551,0.5427381,0.43836716,-0.07836394,0.4305435,-0.10271635,0.5122608,-0.1832578,-0.4399982,0.33218262,1.0672833,-0.16174583,-0.35708913,0.67502207,0.36796087,-0.14810698,0.27682537,-0.48922354,-0.397226,0.45102987,-0.23255931,-0.5354803,0.11786633,-0.2761911,0.11633064,-0.9037671,0.25052544,-0.33324575,-0.5465976,-0.5692504,-0.161848,-3.1664832,0.26004407,-0.20549111,-0.10933884,-0.17034534,-0.10181297,0.13677645,-0.5752221,-0.4105968,0.14399716,0.12280023,0.55238986,-0.09755377,0.1495239,-0.1794125,-0.2297491,-0.046956874,0.13573423,0.10807049,0.27782273,-0.034988213,-0.46269205,0.042421263,0.065480195,-0.38630933,0.044309404,-0.61425865,-0.51489794,-0.014272175,-0.52592707,-0.36883208,0.6437958,-0.5094084,-0.043027528,-0.11950982,0.20241036,0.00922842,0.2641506,0.09524924,0.24859612,0.020381076,-0.065269664,-0.10387545,-0.31144896,0.4039889,0.10328741,0.13888137,0.39131847,-0.16047828,0.25122216,0.42161185,0.5002128,-0.11021789,0.7800651,0.4512314,-0.008578761,0.27966377,-0.19947357,-0.24459493,-0.451931,-0.22041024,-0.038564507,-0.4310809,-0.2674816,0.016874595,-0.33245772,-0.781126,0.5878635,0.12709828,0.0039487565,-0.10097661,0.4775478,0.5299996,-0.22511372,-0.030081455,-0.016394261,-0.2434102,-0.6043487,-0.28771234,-0.47664538,-0.39328024,-0.026878897,0.98263913,-0.40485573,0.18146239,-0.0017330901,-0.052347694,-0.10604419,0.18333134,-0.0764559,0.2614086,0.5760198,-0.14893349,-0.60503995,0.44569725,-0.26948997,-0.28618422,-0.5311619,0.3068132,0.6107852,-0.6378694,0.63347155,0.41221252,0.10791343,-0.2829705,-0.51981145,-0.17020588,0.0102266865,-0.31655815,0.5030331,0.20105027,-0.72936064,0.48062852,0.35945687,-0.053644657,-0.7293386,0.5602106,-0.09857605,-0.3585891,0.047833525,0.40603253,0.191482,0.06419058,-0.081916876,0.1243139,-0.366154,0.21825147,0.029442266,-0.08647861,0.4180568,-0.30969617,-0.025080234,-0.69478846,-0.02857006,-0.6336175,-0.32238844,0.2446172,0.109848104,-0.05128642,0.36432812,-0.13989799,0.43102136,-0.21723127,0.13839237,-0.22829847,-0.15981509,0.20974429,0.42721602,0.29008457,-0.41093418,0.458841,0.027779143,-0.013910289,-0.20255838,0.17073838,0.45990404,0.06980312,0.43444893,-0.35749468,-0.09154161,0.43296123,0.63825905,0.07070076,0.37581325,-0.07828115,-0.07429491,0.16104391,-0.012955933,0.1982291,-0.14397158,-0.6524672,-0.07304622,-0.27661064,0.15127005,0.556578,0.162562,0.36996835,-0.07006874,-0.28975895,0.074367695,0.345261,0.18388316,-0.93956643,0.4580335,0.21100031,0.8796832,0.4251519,-0.0057700374,-0.054548662,0.72093856,-0.19664116,0.1938001,0.27057633,-0.136114,-0.39480495,0.48032364,-0.8436596,0.29481715,-0.27297023,-0.035714667,-0.02011604,-0.07959069,0.3717043,0.8670143,-0.1251145,0.076022625,0.029594699,-0.32621282,0.30807728,-0.43295738,0.108957015,-0.48341495,-0.361538,0.57193565,0.63648933,0.41752806,-0.3177262,0.0039304667,0.23088156,-0.16210277,0.15263514,0.07737862,0.06433764,0.0670497,-0.76568633,-0.14158909,0.55958074,0.26617295,0.21383688,0.09615054,-0.11327762,0.33884248,-0.16707695,0.0821774,-0.18544592,-0.5014363,-0.10657009,-0.29425868,-0.42182845,0.3503488,-0.3651952,0.13553342,0.20196576,0.053380966,-0.18326406,0.41418868,0.11422222,0.8281241,0.09868281,-0.043895192,-0.48818153,0.23344459,0.14481112,-0.109861955,-0.20261213,-0.44020146,0.14753036,-0.7104391,0.39960447,-0.086287305,-0.29276973,0.12568054,-0.11023065,0.0433865,0.6044081,-0.08098609,-0.018299649,0.07006436,-0.290098,-0.18844835,-0.13043277,-0.10211512,0.24423905,0.07234108,0.05110154,-0.12861931,-0.13878255,-0.4249394,0.24856053,0.12233351,0.43853578,0.31422997,0.06682957,-0.20151962,0.020117974,0.19706495,0.5013914,-0.015609349,-0.13250563,-0.09153209,-0.323867,-0.29828328,0.12456458,-0.019134704,0.28274614,0.076223865,-0.095426455,0.783175,-0.11657576,1.0319221,-0.036102235,-0.36034632,-0.035955112,0.4615313,0.13166344,-0.023239631,-0.3630014,0.88161,0.52528995,0.09036553,0.025370657,-0.38945177,-0.09651754,0.12392191,-0.12311644,-0.1547017,-0.08778511,-0.7390751,-0.32785657,0.121775724,0.2277095,0.11034446,-0.028320167,-0.04308761,0.23213474,-0.054056745,0.3065079,-0.5270437,-0.029961722,0.119912885,0.4830592,-0.09711122,0.15574993,-0.50031316,0.50671905,-0.54908764,0.14067882,-0.28280038,0.1724048,-0.38794088,-0.1516579,0.22669302,-0.18579017,0.41731995,-0.23697428,-0.27687955,-0.23638834,0.49247584,0.2158641,0.03966237,0.66073376,-0.28532574,0.1647474,0.21225692,0.5625058,1.0093043,-0.36062333,-0.07052924,0.39417782,-0.3185626,-0.59419453,0.30045363,-0.4053345,0.14008883,0.09098194,-0.2052943,-0.28783217,0.32473606,0.22462623,0.050860763,-0.13770847,-0.5387445,0.12679945,0.35778123,-0.24303882,-0.13687743,-0.2082556,0.16211323,0.44947863,-0.2600737,-0.38318783,0.008674706,0.22430754,-0.09369678,-0.5981841,-0.019869814,-0.4078276,0.28749117,0.11196138,-0.29777673,-0.12487205,-0.026951244,-0.47530589,0.1593976,0.075960554,-0.2610074,0.040507965,-0.26239863,-0.07364384,0.7325999,-0.069855474,0.06973129,-0.5136942,-0.4319763,-0.69033533,-0.20961888,0.37733057,-0.07570294,0.10547125,-0.5520986,-0.07389748,-0.17097174,-0.22953323,-0.12716328,-0.40125963,0.43835893,0.1743762,0.44107231,-0.18775494,-0.80313003,0.20094119,0.053690385,-0.12411553,-0.6313668,0.3511514,-0.06562017,0.6247482,0.079208784,0.09876703,0.41116315,-0.5338964,-0.07670205,-0.22440147,-0.11579311,-0.83064365,-0.099233985 +862,0.5685923,-0.001131673,-0.6378064,-0.25941655,-0.2967412,-0.07520783,-0.16305591,0.14787562,0.49220926,-0.21419832,-0.034750525,-0.12585244,0.08368985,0.22185288,-0.08307513,-0.6808243,0.031638324,0.07551147,-0.58991104,0.38301948,-0.41832832,0.51663697,0.16693497,0.3986392,-0.006748659,0.20767263,0.26406613,-0.039393954,-0.05858434,0.002929317,-0.123799734,0.5763194,-0.67565453,0.16747998,-0.029153423,-0.19629233,-0.021495597,-0.38448402,-0.27986142,-0.7279128,0.234296,-0.7686108,0.6881922,0.21730433,-0.34909448,-0.006884349,0.03945413,0.1846879,-0.36318368,0.28115326,0.21109208,-0.38258553,-0.018844102,-0.17938031,-0.43231806,-0.46914536,-0.6019365,0.0133094955,-0.5195239,-0.16751984,-0.40105894,0.25845236,-0.29255894,-0.11755909,-0.3095056,0.43158072,-0.3816084,0.0729607,0.25115967,-0.25931105,0.328063,-0.2776617,-0.114165954,-0.1339523,0.22229484,-0.092993915,-0.31153637,0.10123872,0.33281094,0.5284591,0.07155371,-0.35984454,-0.37475866,-0.04810065,0.054572377,0.43783197,-0.10118576,-0.2717021,-0.22220603,-0.13374266,0.17225374,0.35605282,-0.026722703,-0.488178,0.014855668,-0.06676781,-0.09118144,0.38302058,0.46105164,-0.40641096,-0.26578698,0.37619343,0.3861459,0.16691002,-0.18812516,0.24005376,-0.017049564,-0.66501313,-0.26560566,0.32213634,-0.01457869,0.5556508,-0.020844763,0.10755813,0.6358051,-0.11936088,-0.2654331,-0.0747949,-0.08324463,0.084418796,-0.28352657,-0.0584941,0.2299143,-0.40749866,0.12122321,-0.26519415,0.77790344,0.02627425,-0.7914667,0.29068416,-0.66166407,0.12489569,-0.14077091,0.7635852,0.8879403,0.4449505,0.28074956,0.90783495,-0.63470733,0.018232478,0.047108497,-0.52620053,0.14353575,-0.04985029,0.0696438,-0.457243,-0.089779615,0.06708948,-0.088348545,0.14627512,0.34339163,-0.39651105,-0.14785896,-0.05613007,0.7412984,-0.3726721,-0.20204762,0.6437252,0.9157315,0.90136606,0.060149603,1.3051008,0.34254402,-0.032540854,-0.041590743,-0.27489665,-0.51882887,0.19455898,0.22552875,-0.18154833,0.225962,-0.020562692,0.108108826,0.3027659,-0.30133003,-0.08014215,-0.070499554,0.2317654,-0.07347644,-0.072294064,-0.3892649,-0.24147569,0.12888303,0.24067068,0.053117927,0.219305,-0.19263336,0.4238505,0.09886444,1.3410017,-0.028297113,0.08617454,0.027618637,0.3489132,0.30345726,-0.18728773,-0.11150037,0.38703182,0.43058065,0.10926985,-0.42963123,0.076207615,-0.13269816,-0.27553004,-0.1963658,-0.3408561,0.1402636,-0.19977884,-0.5403451,-0.007578309,0.0651461,-0.41495863,0.5508017,-2.5138428,-0.047853,-0.026418868,0.3243154,-0.092978716,-0.33373383,-0.31701514,-0.45551935,0.24778824,0.3606673,0.31892332,-0.5817209,0.38426033,0.41620284,-0.39662948,-0.14045565,-0.6568281,-0.09480847,-0.14045058,0.3059388,0.08766549,-0.09177591,-0.23107089,0.3590054,0.6915131,0.026742065,-0.043969225,0.118400946,0.540901,-0.14825103,0.70880216,0.101709925,0.49567813,-0.12211687,-0.24329296,0.41378978,-0.26221952,0.27703327,0.05157234,0.08649612,0.38943616,-0.45077428,-0.8834213,-0.64711374,-0.39577624,1.1325349,-0.42580837,-0.45828745,0.34780693,-0.17527355,-0.36552483,0.14723413,0.5805802,-0.1801177,0.18165772,-0.7425142,-0.056881487,-0.15778829,0.27011222,-0.10699715,0.012737097,-0.3918821,0.57838315,-0.09095877,0.4706307,0.3322975,0.22781195,-0.15900935,-0.5632352,0.13603653,1.0012286,0.34919947,0.07679256,-0.26456985,-0.23258138,-0.20063964,0.0655243,0.11632047,0.72148556,0.63147557,-0.121334024,0.17208394,0.31609085,-0.10113364,-0.014462526,-0.16191772,-0.29381624,0.0006978725,-0.08526055,0.52658135,0.84601116,-0.20344278,0.36251858,-0.0522842,0.3181859,-0.045847453,-0.6055781,0.5631487,1.0443856,-0.082910374,-0.23754713,0.6942315,0.36280233,-0.3260093,0.39375526,-0.59126824,-0.24901421,0.6036677,-0.06641322,-0.46801212,0.2843747,-0.39490452,0.0164368,-0.9629553,0.31069806,-0.013711776,-0.4690147,-0.3220558,-0.114859276,-4.140596,0.18157461,-0.16547427,-0.031124284,-0.06751935,-0.16251452,0.34739652,-0.4319503,-0.56313217,0.07152425,0.09947545,0.46371344,-0.2172792,0.13795601,-0.38321552,-0.23159213,-0.14952269,0.29279676,0.1601956,0.31571802,0.03846561,-0.37172875,0.01862303,-0.23707283,-0.5095243,-0.023753954,-0.46805814,-0.5886435,-0.09308886,-0.5522994,-0.33850113,0.7202476,-0.4394741,-0.07107202,-0.28395137,0.06362114,-0.10903331,0.39540777,0.16341646,0.32543197,0.0023210219,0.017697887,-0.20684277,-0.21782234,0.24317639,0.09858746,0.14504962,0.27782258,-0.14405075,0.2125433,0.41554418,0.5773043,-0.21458818,0.7705107,0.32983962,-0.006302726,0.24830508,-0.21199629,-0.4117853,-0.8106208,-0.30795667,-0.2886544,-0.50677353,-0.26674435,-0.28705245,-0.32424402,-0.807409,0.54575163,0.052176777,0.18367216,-0.24653089,0.33667573,0.41996172,-0.1638103,-0.021936124,-0.14765158,-0.28211293,-0.5668311,-0.3554813,-0.5746501,-0.5564903,0.14632864,1.02319,-0.22925045,0.014490579,0.055246558,-0.11137895,-0.015299329,0.20765959,0.24257752,0.3904553,0.51045257,-0.20781,-0.6397267,0.43750033,-0.23509185,-0.060038514,-0.7575669,0.04116699,0.72642744,-0.6888481,0.6660863,0.2816228,0.2412967,0.0005874634,-0.7233216,-0.505189,0.0619672,-0.16957353,0.6151916,0.22196104,-0.7454921,0.43265432,0.15786965,-0.15087345,-0.5698608,0.44610432,-0.06586236,-0.3955121,0.21559276,0.4052923,-0.1094376,0.006196614,-0.12256312,0.2858801,-0.35449067,0.33365205,0.40336365,-0.07145465,0.31251583,-0.117881395,-0.112981595,-0.6641237,-0.11849371,-0.48330233,-0.39246064,0.10250444,0.032140467,-0.0011227727,0.0810072,-0.13437538,0.4677908,-0.27236104,0.1792644,-0.098575406,-0.13286063,0.39033076,0.5201444,0.32305226,-0.5011608,0.57998973,0.16379617,-0.08150639,-0.15095052,0.18175101,0.46191353,-0.0024149332,0.39887384,-0.19049014,-0.09912773,0.20199881,0.53278035,0.12862302,0.3641677,0.19213843,-0.08006895,0.44494513,0.13379478,0.100377955,-0.15893278,-0.35040876,-0.12079006,-0.18685147,0.18699713,0.44162613,0.14844628,0.26871502,-0.07824384,-0.27277336,0.33573744,0.11186642,-0.02087465,-1.1934279,0.31146857,0.23803079,0.6691004,0.5144306,0.066476874,-0.15505812,0.57815325,-0.28899843,0.06594237,0.34589264,0.19229849,-0.34362388,0.5799898,-0.50858814,0.5005327,-0.121134624,-0.0382201,0.12122953,0.14358537,0.34275696,0.9740499,-0.0705588,0.0634646,-0.08719325,-0.07946552,0.08120935,-0.29605958,0.07938492,-0.57864565,-0.4367546,0.70917755,0.44580102,0.39985013,-0.38411298,-0.112018906,0.087145574,-0.18680277,-0.018145531,-0.20232101,-0.081634186,0.09102559,-0.6161216,-0.19772004,0.6141828,0.032195706,-0.17094676,-0.012858899,-0.22671463,0.18195443,-0.1067465,-0.015660303,-0.15393662,-0.62827456,-0.06883267,-0.40935966,-0.41282773,0.3763263,-0.5499295,0.33729276,0.16339335,0.082933135,-0.2522785,0.34478718,0.19407165,0.87583107,0.16476618,-0.09144764,-0.35377407,0.22481915,0.34209225,-0.31383628,-0.24830005,-0.2923266,0.2093154,-0.629765,0.30869415,-0.16351387,-0.37235922,-0.14210609,-0.036959093,0.12860553,0.41258934,-0.23611978,-0.32675686,0.23154722,-0.03114142,-0.30149284,-0.08395272,-0.19977435,0.37160847,-0.021294089,-0.10332978,0.03244876,-0.06087578,-0.16416971,0.16517189,0.05217771,0.24506333,0.26346764,-0.043459933,-0.2840887,0.108072124,0.033332806,0.5401967,0.10479874,-0.12695286,-0.19946463,-0.3194731,-0.34536794,0.25321573,-0.13504359,0.18913738,0.025534958,-0.31480995,0.85524356,0.226125,1.1580317,-0.005533342,-0.32209182,0.1559746,0.5104757,0.041869514,0.036043707,-0.34315905,0.99964315,0.6320324,-0.14478496,-0.1746478,-0.35407522,-0.052383218,-0.0727511,-0.21970621,-0.26662752,-0.099706754,-0.72055435,-0.103986636,0.047416415,0.23213172,0.21641183,0.02140155,-0.07101255,0.06272532,0.1616803,0.40588382,-0.48470584,0.017203467,0.17608707,0.3185388,-0.036544677,0.23420194,-0.27378052,0.4079385,-0.5517897,0.21722205,-0.5621742,0.13082547,-0.17333055,-0.33627835,0.15599771,-0.14431424,0.23304522,-0.38792658,-0.14097242,-0.37812957,0.5922222,0.24463074,0.2156934,0.9468756,-0.232565,-0.06868649,0.12213315,0.49581188,1.3650645,-0.29732993,-0.03853726,0.44849905,-0.21776056,-0.51121366,0.122484826,-0.38230306,0.21967325,-0.23308639,-0.41024202,-0.26228124,0.1791481,-0.11417433,0.065961845,-0.032695644,-0.53748596,-0.15482001,0.42376885,-0.08362873,-0.21928255,-0.25412118,0.29352045,0.64750713,-0.2698063,-0.41398063,0.092028685,0.12020135,-0.2187498,-0.607102,0.032888353,-0.2201349,0.3329258,0.20600162,-0.41402632,-0.029560208,0.32335013,-0.5108417,0.13796763,0.38490602,-0.34731102,0.10464071,-0.15060265,-0.27263603,1.1986934,-0.15522964,0.13514559,-0.56443584,-0.5857457,-0.9081162,-0.20998017,0.3003344,0.22455932,-0.03533889,-0.58149445,-0.10997729,-0.13785385,0.027412133,0.050059777,-0.530718,0.40499425,0.05920433,0.5374713,-0.23242,-0.9915322,0.011420386,0.07058044,-0.33562994,-0.5261412,0.6297253,-0.11653619,0.5752772,0.06435986,0.18025272,0.3351088,-0.6402183,0.2002122,-0.20088245,-0.10306446,-0.8076902,0.06338789 +863,0.47065565,-0.11485429,-0.2605904,-0.14604276,-0.06283002,0.015143509,-0.18390578,0.49461254,0.29682344,-0.5108727,-0.041646883,-0.2785196,0.01901539,0.32494992,-0.2844805,-0.4944679,0.101237245,0.17885184,-0.32329035,0.5067795,-0.49722248,0.33096412,0.058320098,0.34230047,0.2924195,0.17271072,0.2565922,-0.114173524,-0.20074457,-0.2391327,-0.0982814,0.05352178,-0.37236926,0.17396615,-0.18592587,-0.3169832,0.016869549,-0.52298963,-0.38004854,-0.75668836,0.4666808,-0.7756721,0.43438846,0.056252472,-0.17609583,0.18053295,0.24106258,0.21694328,-0.19165649,0.015733004,0.09913938,-0.14418398,0.023868024,-0.100634284,-0.16756943,-0.2409748,-0.67540795,0.034124143,-0.3373749,-0.34603617,-0.38197342,0.12256325,-0.3504831,-0.04970698,0.067401275,0.65344167,-0.3838345,0.006427169,0.057874963,-0.1616901,0.161854,-0.6529782,-0.3076696,-0.10183597,0.25400165,-0.14674574,-0.1305394,0.31643993,0.23851976,0.44310263,-0.08114035,-0.09162068,-0.3586658,-0.17586543,0.11691365,0.5014571,-0.048823357,-0.64579195,-0.017044425,-0.07760735,0.03883735,0.16939647,0.25571865,-0.29704565,-0.028335005,-0.067748226,-0.34845066,0.43689397,0.58977574,-0.37538064,-0.19644257,0.28783023,0.4029699,0.089854546,-0.17897609,0.0043128454,0.08218548,-0.5194134,-0.16155218,0.09356443,-0.25610664,0.63377225,-0.11666421,0.36134258,0.48940542,-0.20653182,-0.007499571,0.021088572,0.076954365,-0.003860203,-0.26652426,-0.40624598,0.1720166,-0.40082836,0.074385434,-0.2369462,0.9464541,0.22974601,-0.77623665,0.41223642,-0.51714855,0.10642079,-0.06398967,0.4007294,0.58089596,0.3947048,0.53725535,0.683279,-0.46474472,0.0314123,-0.057721954,-0.35303319,-0.02208734,-0.3490429,0.12133872,-0.32512107,0.025558434,-0.019827183,-0.08451422,0.106278986,0.4350025,-0.30362135,-0.09148995,0.22815934,0.7818416,-0.22076409,0.04849624,0.7297926,1.0502784,1.1985368,0.010769069,0.918295,0.24593137,-0.29205295,0.25774187,-0.15121129,-0.66278297,0.26312822,0.30664897,0.15665524,0.05379688,0.023611885,-0.030930804,0.3541439,-0.43894702,0.086427525,-0.0879908,0.08934285,0.3441435,-0.08730778,-0.39855078,-0.3410525,-0.18351184,-0.06961242,0.17433926,0.2578219,-0.25570613,0.24311699,-0.019158583,1.681038,-0.0741127,0.073967725,0.13621327,0.7263199,0.24547458,-0.13758712,-0.01936047,0.1917572,0.2417213,-0.03631058,-0.6149303,-0.005066303,-0.19645357,-0.422823,-0.0837896,-0.40363795,-0.22920044,0.020845184,-0.48091525,-0.20418122,0.0032593906,-0.34133038,0.39768267,-2.9213088,-0.21429944,0.038582418,0.33014914,-0.24313119,-0.3166166,-0.09282612,-0.52713335,0.4922276,0.35650778,0.38887957,-0.6294502,0.24580456,0.55402744,-0.379107,-0.24714023,-0.6058138,-0.10584665,-0.16852403,0.22813895,-0.017153297,-0.083233394,-0.1320391,0.20306325,0.5209428,0.19721676,0.1331644,0.111147776,0.35794732,0.03344069,0.5267675,-0.1593187,0.43820888,-0.274427,-0.061806485,0.26842198,-0.50980306,0.05503834,-0.3238206,0.17004779,0.48861545,-0.48577225,-0.8365399,-0.7470255,-0.14395227,1.0553757,-0.06422956,-0.35346383,0.35240555,-0.3928305,-0.17750885,-0.20642437,0.695135,-0.06961623,-0.0105025405,-0.628728,0.052997634,-0.097267814,0.14905527,0.11129593,-0.037172448,-0.46333426,0.6341525,-0.03166478,0.6080691,0.33761886,0.16324146,-0.39135483,-0.41451687,0.021491515,0.8440748,0.20434883,0.26463157,-0.35736436,-0.045396917,-0.36194038,-0.16191167,-0.012893289,0.45303443,0.6682253,0.042771697,0.11339657,0.2323449,0.008393609,0.072134145,-0.02192412,-0.27570853,-0.061857,-0.016387293,0.6044198,0.5559705,-0.13967758,0.33846042,0.0025202162,0.08842251,-0.43105236,-0.25591677,0.54809755,0.9187011,-0.043020323,-0.25412086,0.60210717,0.3964154,-0.2109232,0.45866108,-0.570703,-0.27222168,0.4885217,-0.17140803,-0.39199096,0.23936528,-0.40343362,-0.019866614,-0.6678098,0.16944918,-0.18582156,-0.22509421,-0.51798713,-0.14551249,-3.3858545,0.076981835,-0.065843575,-0.2521364,-0.110013075,-0.13834634,0.11308242,-0.50069314,-0.54012614,0.26791674,0.075418994,0.76166016,-0.04665383,0.093330786,-0.2368021,-0.21705271,-0.48188034,0.11735388,-0.15912811,0.38380003,0.13914791,-0.35295397,0.090091586,-0.25935572,-0.407898,0.05068799,-0.34715384,-0.43034348,-0.12311756,-0.41035903,-0.52415717,0.74021965,-0.3734311,0.13633496,-0.1832354,-0.15276214,-0.14620015,0.26676065,0.19329245,0.15596318,-0.08304639,-0.086121954,0.011266481,-0.22245733,0.31256348,-0.07026473,0.16211642,0.38227147,-0.0022005988,0.032975562,0.40581796,0.6637235,-0.15313266,1.0055099,0.32138368,-0.070979886,0.21685298,-0.2919765,-0.314354,-0.36371034,-0.18129826,0.047640577,-0.31015328,-0.4855076,-0.07036189,-0.4047042,-0.6012975,0.3837283,-0.030104151,0.27929175,0.08130719,0.20774958,0.39954165,-0.14178543,-0.01961284,0.086633444,0.058725376,-0.567885,-0.30283788,-0.6116753,-0.45968768,0.13696447,0.79630315,-0.067783974,-0.11966345,0.08064038,-0.11380411,-0.13979964,0.028433075,0.029000567,0.1378311,0.32923,0.034456927,-0.761674,0.4343415,-0.10928618,-0.12033406,-0.5865707,0.185208,0.6108827,-0.574188,0.53834015,0.35411784,0.05344164,-0.2693286,-0.48419872,-0.3252065,-0.008741752,-0.103019744,0.38195136,0.12224785,-0.7969369,0.45050097,0.23912843,-0.21025237,-0.6814245,0.49675053,0.004718707,-0.3948134,-0.12529172,0.31907147,0.26278275,-0.02297915,-0.21641137,0.08737819,-0.5301232,0.18774536,0.18534066,0.100961775,0.29845625,-0.34603685,-0.15998888,-0.6836624,-0.123218976,-0.44263873,-0.3310948,0.16185156,0.15812427,0.3132666,0.42333654,0.00074877875,0.26525557,-0.16527662,0.11185102,-0.09003288,-0.09970084,0.32570103,0.30114156,0.4954804,-0.45623666,0.56619364,-0.10993444,-0.06547172,0.036789957,0.080079794,0.22292906,0.1702391,0.34348127,-0.106121175,-0.42761517,0.27662766,0.82968056,0.2755623,0.32902482,0.21395448,-0.15018041,0.35792205,0.17956558,0.09994666,0.22729832,-0.5780122,-0.019544981,-0.42387417,0.16794673,0.41377145,-0.019348392,0.33798864,-0.078782134,-0.39285067,0.061624352,0.2546892,-0.26338235,-1.1207727,0.27395394,-0.0044378457,0.8860306,0.58389324,-0.040745556,0.08998403,0.72096485,-0.07023214,0.22133633,0.30323026,0.008032954,-0.4131494,0.59657234,-0.5463563,0.4734634,-0.08465516,-0.09365919,-0.1595286,-0.059649907,0.42484134,0.4879332,-0.050688762,0.07871994,0.11017655,-0.2584544,0.22878835,-0.46362466,0.08456381,-0.4591713,-0.10603494,0.52732074,0.42361084,0.23130892,-0.012689132,0.059020802,0.06510744,-0.09081558,-0.13669917,0.08664063,0.0055610766,0.037111953,-0.6913092,-0.07665735,0.5809449,-0.13042036,0.13885145,0.0061228643,-0.12564445,0.24774367,-0.20023783,-0.09520487,-0.059341006,-0.68779814,-0.051949896,-0.24516204,-0.4601318,0.46828097,-0.13289586,0.28018445,0.21895266,0.13221797,-0.26732805,0.3347121,0.43336186,0.5263849,-0.15630037,0.0403613,-0.43821532,-0.04769065,0.088834636,-0.15999486,-0.20927423,-0.2561707,0.05354281,-0.47638035,0.39654306,0.0014347159,-0.12097445,0.059952717,0.05459945,0.070917614,0.7553918,-0.21743141,-0.013866063,-0.03483884,-0.15049958,-0.17316169,-0.13220027,-0.070182696,0.24000105,0.15907216,-0.15751992,-0.054342654,-0.15824579,-0.097257525,0.2548421,-0.07582916,0.49572748,0.17378367,0.10766257,-0.22091757,-0.20433332,0.019500732,0.54111266,0.092647165,-0.23889175,-0.27538475,-0.39101455,-0.28843865,0.48706782,-0.008853831,0.2221199,0.16102949,-0.32337755,0.651312,0.046001136,0.8908506,0.049874082,-0.43032134,0.13128072,0.43499973,0.05365532,-0.03100176,-0.32434937,0.81593317,0.41483152,-0.088435136,-0.11602917,-0.28203005,-0.010527776,0.07370574,-0.25272787,-0.17576137,0.037475105,-0.6046218,-0.20518282,0.22148679,0.27478662,0.18681985,-0.1639253,0.08209939,0.35087517,0.14915457,0.3394828,-0.3753721,-0.09999499,0.39809301,0.39120886,0.13290511,0.02428947,-0.3525626,0.3104416,-0.58811474,0.018091353,-0.32779095,0.20256527,-0.19109932,-0.22103272,0.29139498,0.21579051,0.4680423,-0.19489095,-0.37967202,-0.31349203,0.43650115,-0.029018788,0.18526986,0.31820768,-0.18869792,0.049315754,0.062112458,0.6086129,1.1219633,-0.15036032,-0.018103361,0.40046203,-0.32382938,-0.61814606,0.31912532,-0.3598654,0.20843513,0.12087532,0.017015548,-0.5434374,0.17090419,0.2936602,0.08104605,0.111751154,-0.47164935,-0.5555135,0.33026278,-0.279849,-0.259853,-0.33337396,-0.11010495,0.48148787,-0.23772581,-0.17877333,-0.055832826,0.3932479,-0.2224204,-0.6916185,-0.065697454,-0.27816996,0.35830706,0.12407183,-0.19024223,-0.19715492,0.06831116,-0.5462849,0.2026822,0.13309385,-0.39014333,0.06127782,-0.44849852,0.024479646,0.967217,-0.11916888,0.09786553,-0.3942373,-0.48073882,-0.8268073,-0.42670357,0.5813395,0.041958585,-0.017756123,-0.5216514,-0.11841134,-0.13099541,-0.0026894074,0.04116272,-0.44058177,0.4194229,0.1251159,0.3106084,0.020627715,-0.6675344,-0.15168858,0.057219386,-0.4175873,-0.44220445,0.4864086,0.102828436,0.92246467,0.049575362,0.038141396,0.22762981,-0.29986048,0.13158076,-0.24247995,-0.33721182,-0.57043594,0.22185993 +864,0.65355045,-0.026394458,-0.602476,-0.15418187,-0.24727169,0.21570924,-0.1563414,0.49831098,0.32286188,-0.38745245,-0.20109592,-0.10669789,0.06228812,0.551967,-0.17328279,-0.6562824,0.09686111,0.19161429,-0.44009545,0.49626243,-0.47863913,0.34041545,-0.06468121,0.33892462,0.16522077,0.27650663,0.23593174,0.09912631,-0.014365168,-0.0024443131,-0.31335303,0.20277889,-0.37645754,0.10262807,-0.07940957,-0.45547235,-0.105526686,-0.5657423,-0.42439908,-0.6922332,0.40154675,-0.81990206,0.5395428,-0.029638914,-0.14959455,0.062441733,0.26105165,0.37680238,-0.31058437,-0.0055856477,-0.013814087,-0.10876424,-0.074364685,-0.16699632,-0.2647169,-0.47997153,-0.6567038,-0.08922717,-0.42088413,-0.18790314,-0.29470026,0.07990739,-0.28566435,0.07572525,0.079521194,0.36153567,-0.3751241,-0.17940044,0.33624524,-0.20787518,0.14335053,-0.5129572,-0.107441135,-0.061684094,0.32113707,-0.11523783,-0.27247086,0.22633108,0.3616373,0.414804,-0.029368341,-0.15401688,-0.43930596,-0.14221361,-0.027804017,0.56670034,-0.10245573,-0.5996543,-0.27314955,0.116489284,0.1120406,0.34827965,0.08617438,-0.1276585,-0.026652588,-0.021420367,-0.30118102,0.45585153,0.49967334,-0.4287762,-0.27520525,0.35867113,0.4150316,0.086055905,-0.12336038,0.02015574,0.043398984,-0.58002025,-0.14276536,-0.10603951,-0.21092972,0.6001223,-0.20576048,0.2983232,0.6392407,-0.010308286,-0.029729761,0.0776904,0.01936061,-0.24454874,-0.28300223,-0.14161152,0.13992907,-0.34698942,0.22506021,-0.045909937,0.5790238,0.36015496,-0.6429112,0.36216205,-0.60847557,0.12931257,-0.15045026,0.3518117,0.7185353,0.37585723,0.13367592,0.88199675,-0.3865264,0.20273665,-0.1389562,-0.305432,-0.057845004,-0.10407345,0.06527598,-0.6621606,0.25585496,0.14218388,-0.005608877,0.33886915,0.40578353,-0.4469817,-0.1232495,0.20633186,0.88482785,-0.27717397,-0.11473329,0.8092836,1.0267383,0.95997745,-0.03907127,1.0220584,0.2563514,-0.2596703,0.16608045,-0.28360224,-0.7412725,0.24019688,0.3908656,-0.085372694,0.3731922,-0.004371423,-0.053766064,0.30571663,-0.3276955,-0.07708439,0.06640856,0.15242423,0.24359575,-0.1709151,-0.42733404,-0.13213575,-0.07460176,-0.014131661,0.33661482,0.28942698,-0.17483391,0.49520496,-0.015741508,1.6604676,0.03600227,0.05754733,-0.043248635,0.5922506,0.4372272,-0.099775024,-0.1763263,0.17853117,0.34326795,0.092764035,-0.47491395,0.14036892,-0.19072495,-0.42367223,-0.11975928,-0.32057407,-0.09586407,-0.13963486,-0.33572438,-0.09800681,-0.061295945,-0.2453467,0.43001848,-2.918809,-0.28315645,-0.1328211,0.35248905,-0.28914553,-0.41655684,-0.14949591,-0.4483146,0.4285378,0.39751217,0.48509583,-0.5690988,0.33616114,0.4100092,-0.6137522,-0.07768752,-0.5856374,-0.1045175,-0.006215122,0.35438913,0.034081485,-0.17954126,0.0079978425,0.3243542,0.4966887,0.0076003717,0.08647073,0.21700874,0.36717606,0.017332243,0.49939534,-0.25192267,0.70341706,-0.35852483,-0.053104334,0.26951826,-0.403976,0.19639444,-0.28490973,0.11189019,0.5165488,-0.4693685,-1.0736724,-0.6121174,-0.035442844,1.0115435,-0.21741918,-0.29640415,0.2206321,-0.52351385,-0.24883887,0.12846047,0.5165431,-0.115890115,-0.10463751,-0.7149173,0.029001107,-0.06306987,0.04974363,-0.039714452,-0.07452564,-0.4697692,0.59579825,0.066557616,0.5853968,0.14200044,0.26421657,-0.25600427,-0.38584167,0.021095006,0.80455387,0.2935917,0.15123664,-0.19317561,-0.10636445,-0.5805763,-0.18364738,0.12563159,0.64535743,0.65816087,-0.10549317,0.092764035,0.166399,0.15678763,-0.009095265,-0.13920087,-0.1895191,-0.050825562,-0.07708459,0.57999814,0.6163751,-0.2527382,0.45582283,-0.099022545,0.3835428,-0.33252752,-0.4499311,0.7623472,0.88134205,-0.14576691,-0.36398587,0.53933996,0.47622278,-0.23728873,0.40158427,-0.7440827,-0.43340078,0.4725873,-0.08870839,-0.29363427,0.054517206,-0.3130553,0.08013492,-0.92616993,-0.0539948,-0.28178203,-0.48090044,-0.4477145,-0.1781453,-4.0927577,0.08617164,-0.097491845,-0.15615775,-0.15026638,0.01957323,0.13577984,-0.51116735,-0.78605664,0.3139374,0.028063703,0.8876191,-0.17062484,0.29148304,-0.2072787,-0.1639699,-0.40289176,0.24128625,-0.0069491128,0.33029762,0.04722422,-0.46195012,-0.09004441,-0.07462482,-0.65058744,0.13784416,-0.6636946,-0.3890662,-0.10161464,-0.48024356,-0.11428574,0.681165,-0.32285118,0.045730233,-0.11408525,0.05014945,-0.265889,0.28120172,-0.031961028,-0.0219572,0.09682084,-0.16841295,0.2351528,-0.26887882,0.40104696,0.052612856,0.42162946,0.24519125,-0.09079381,0.19666499,0.50016904,0.72964156,0.10115577,0.8980455,0.36484128,5.8547237e-05,0.31570223,-0.38732117,-0.26190707,-0.30306605,-0.28862825,-0.10500565,-0.39138743,-0.49436635,-0.13019249,-0.50097966,-0.8012055,0.34070104,0.1393351,0.21990901,0.0479223,0.20349345,0.55023104,-0.34792134,0.115515575,0.031101657,-0.13875622,-0.4627978,-0.21616493,-0.46668524,-0.49759594,0.12157769,0.9576927,-0.20960453,-0.027439447,-0.20547731,-0.26730803,-0.14131556,0.30295298,0.113621935,0.1329543,0.42779812,-0.14317721,-0.66850793,0.5043797,-0.37872887,-0.2752703,-0.72702086,0.13250126,0.49278042,-0.6238798,0.509195,0.33603552,0.13237002,-0.1750707,-0.44339684,-0.17570604,0.03112953,-0.19022228,0.24298964,0.2283071,-0.75591385,0.39619783,0.29346272,-0.1998764,-0.7246736,0.6855721,0.052955188,-0.29438463,-0.1871803,0.22766916,0.3440324,0.04938686,-0.33546102,0.14193992,-0.41467652,0.22064827,0.15656629,0.14450124,0.5195013,-0.19380921,-0.056265943,-0.7286363,-0.14085387,-0.47561756,-0.1494064,0.26520908,0.08657228,0.3364821,0.13327803,0.048906606,0.31439516,-0.41945845,0.12504362,-0.1685795,-0.3407171,0.25563142,0.3163281,0.40192607,-0.4262638,0.6805169,0.019149417,-0.0052473387,0.21586564,0.01385631,0.37076253,0.05113828,0.61318016,0.25711757,-0.30748287,0.14717166,0.7151905,0.18884364,0.07192531,0.22169921,-0.101854764,0.22332844,0.020704636,0.026757548,0.17789957,-0.64874846,-0.03287142,-0.35898605,0.13972367,0.45169765,0.2430265,0.32743803,0.07823539,-0.38557273,-0.0054178145,0.14691299,-0.11191782,-1.4444906,0.44718167,0.2203644,0.93454194,0.39879182,0.0327787,0.011815162,0.55148304,-0.07993281,0.25779006,0.4254988,-0.1392763,-0.3224458,0.4637501,-0.65882325,0.60750645,0.11548679,0.0071129594,-0.09914921,0.08644119,0.48357356,1.0011971,-0.21658574,0.08805193,0.15677422,-0.38521236,0.27619487,-0.33957994,-0.28308967,-0.7218918,-0.14111155,0.7057717,0.51337373,0.3044244,-0.10665886,-0.06317348,0.13434294,-0.0020323717,-0.043169998,0.13132243,0.12276983,-0.09287533,-0.66982883,-0.28794596,0.42484745,0.25956747,0.2744052,0.103584245,-0.20501794,0.32254142,-0.081792206,-0.034404453,-0.09616817,-0.6614967,-0.087579384,-0.34211567,-0.43174097,0.51057345,-0.060804423,0.2871035,0.2251067,0.017520057,-0.16941231,0.46387774,-0.060146507,0.78462756,-0.026820842,-0.26145726,-0.3842078,0.088431865,0.19307111,-0.30550405,0.015865434,-0.2898557,0.026300477,-0.5011896,0.5966902,-0.026336381,-0.38158268,0.16862202,-0.06605008,0.0965294,0.47081274,-0.27951586,-0.17082033,-0.08261972,-0.10366351,-0.33549705,-0.17631482,-0.27450675,0.23059687,0.048357006,-0.04739087,-0.10837857,0.0521567,0.007612859,0.4392278,0.022236297,0.3488485,0.36148623,0.18136165,-0.25940517,-0.14120004,0.31012487,0.63909334,-0.11853155,-0.27976596,-0.25522014,-0.47542906,-0.44171426,0.1333302,-0.034105726,0.36613977,0.16097058,-0.14012244,0.38538477,-0.117707305,1.1118877,0.024793016,-0.3499443,0.08188773,0.46502966,0.05557786,-0.17109522,-0.3623336,0.9639219,0.43365347,-0.14227332,-0.1363716,-0.34030658,0.1833846,0.16685827,-0.21180354,-0.2229078,0.014821445,-0.629111,-0.33328372,0.1637001,0.114216715,0.45495576,-0.09992071,0.14756587,0.22291514,0.13592106,0.23678508,-0.43476874,-0.18113253,0.34353554,0.36475536,0.0021058137,-0.010021191,-0.4897315,0.304091,-0.47610262,-0.11826132,-0.26124054,0.18682307,-0.24368939,-0.38539892,0.3447404,0.24405655,0.25353307,-0.17163096,-0.40953657,-0.32418615,0.46575972,0.20333377,0.1119153,0.4232086,-0.19798917,-0.06636558,0.095262416,0.5635447,0.995341,-0.23431356,0.10916296,0.35437885,-0.4269765,-0.61224616,0.36299005,-0.26872355,0.37984753,0.13357696,-0.17177626,-0.7626307,0.33237913,0.04611602,0.15698512,0.17152801,-0.5005939,-0.31973502,0.21441433,-0.2916951,-0.34020963,-0.3608363,0.07834648,0.5888423,-0.17530563,-0.18915118,0.256558,0.24879983,-0.11023839,-0.6791289,-0.04242649,-0.27204242,0.31573975,0.07812594,-0.31217083,-0.23945695,0.0033123929,-0.48671958,0.41493797,0.03379753,-0.37415266,0.087737545,-0.49960387,-0.21944663,1.0348585,-0.3701237,0.2632621,-0.56779677,-0.4138778,-0.79153866,-0.25124085,0.42028475,0.004387158,-0.10810443,-0.6602137,0.006017096,-0.021676796,-0.0880295,-0.064073406,-0.32345027,0.39632827,0.045358904,0.40092593,0.082369104,-0.864774,0.10091399,0.08707828,-0.3624594,-0.50631136,0.46909487,-0.02399229,0.9331871,0.0417834,0.11575986,0.46143574,-0.50183177,-0.08318413,-0.18611765,0.018433925,-0.67972654,0.26029265 +865,0.5093909,-0.21647857,-0.5275784,-0.15787746,-0.47241855,-0.08791115,-0.2747427,0.28103164,0.35746565,-0.23174922,-0.36622146,0.02363482,-0.12937461,0.3775157,-0.17230624,-0.7439545,-0.18069406,0.14098819,-0.75974137,0.59585893,-0.32152244,0.31056848,0.01708962,0.240557,0.42261449,0.3659766,0.11635259,0.011840413,0.091370255,-0.19700007,-0.023274263,0.058641333,-0.703608,0.33396116,-0.15531458,-0.14517824,-0.07560603,-0.5273496,-0.39358458,-0.833597,0.2306674,-0.9262077,0.6180152,-0.12822215,-0.19199939,-0.22193564,0.32966185,0.44860676,-0.2669488,-0.023925826,0.32073978,-0.15023965,-0.2668871,-0.06622241,-0.049549516,-0.34945285,-0.6194069,-0.26566947,-0.653805,-0.19557379,-0.3698472,0.27972227,-0.29196241,-0.14688824,-0.31914717,0.43976834,-0.5376101,0.10567983,0.28335035,-0.025861396,0.43690586,-0.67067695,0.08405008,-0.2731204,0.4215536,-0.0629765,-0.25993982,0.50805634,0.2539012,0.24807608,0.3530215,-0.3135329,-0.25496653,-0.163838,0.3026484,0.21818875,0.022310555,-0.28854978,-0.3240334,0.049648717,0.49999666,0.4500154,0.14554109,-0.45608327,0.02193492,-0.07254567,-0.11543087,0.8993573,0.44676033,-0.030457241,-0.22233492,0.3076874,0.6399968,0.5826101,-0.31280324,0.037749663,-0.07054637,-0.4664259,-0.13991332,0.355688,-0.19850107,0.49195445,-0.0833943,-0.18279429,0.77229136,-0.25394198,-0.17958243,-0.021992497,0.043490637,-0.11588764,-0.13174447,-0.3223551,0.10248073,-0.56172484,0.28491718,-0.23741095,0.5532556,0.16251624,-0.7939485,0.22195534,-0.6710585,0.08793708,-0.009337172,0.70000666,0.7969007,0.64356935,0.37694302,0.8535447,-0.21792738,0.24347629,0.0032725434,-0.36213258,-0.099972725,-0.3793044,-0.06988368,-0.43213236,-0.15552624,-0.40415335,-0.11112326,-0.19981581,0.6304553,-0.50066406,-0.118263446,0.11436709,0.582926,-0.2636524,-0.077420734,0.79733866,1.1272511,1.154755,0.064124994,1.3440751,0.13883038,-0.26558912,-0.01800855,-0.27091065,-0.66039425,0.22472574,0.3492514,-0.20272106,0.38781595,0.006242866,0.05543895,0.17170306,-0.5712512,0.16506608,0.07593884,0.4338552,0.0752232,-0.14418273,-0.35965466,-0.1785137,0.036590815,0.20623215,0.13929848,0.21223621,-0.35630807,0.20928578,0.13396613,1.1766821,-0.2744394,-0.0724936,0.021402532,0.66694355,0.26438245,-0.10367209,-0.19568439,0.3262942,0.6324172,-0.038144797,-0.7822106,0.10508368,-0.30707762,-0.30390683,-0.2054683,-0.43805578,-0.20349753,-0.017556151,-0.23573184,-0.18356414,-0.046352725,-0.5098073,0.5270509,-2.36006,-0.32438326,-0.17612238,0.3131442,-0.4232264,-0.03892824,-0.038421795,-0.61692137,0.29438296,0.08486577,0.5943981,-0.6748469,0.6228513,0.65962046,-0.78819776,-0.16957057,-0.71178705,-0.12382903,0.037004456,0.5355729,0.035626844,0.073552154,0.025056908,0.20978172,0.6899629,0.21561898,0.15500927,0.66203517,0.45373273,-0.04883736,0.7502122,-0.06663468,0.6401423,-0.20323862,-0.09125439,0.48469868,-0.1866587,0.32236084,-0.43572244,0.0091514485,0.66347104,-0.63353926,-0.922558,-0.716252,-0.5620604,1.0757549,-0.42859137,-0.52974725,0.28827825,-0.39283717,-0.007744173,0.15172443,0.6547432,-0.1846658,0.2332,-0.6683571,-0.063146956,0.04285716,0.2639765,0.042087242,0.014775023,-0.51068354,0.87597847,-0.0749092,0.65837795,0.2130072,0.2380848,-0.3058816,-0.51080817,0.29802433,0.82044667,0.3696921,-0.0686399,-0.37440506,-0.14301933,-0.2608655,-0.15485175,-0.042966664,0.7612598,0.54487544,-0.17884134,0.08329003,0.35075736,-0.20035686,-0.023351768,-0.2094689,-0.32776636,-0.18362789,0.028652003,0.46983233,0.84373283,-0.07349671,0.652072,-0.22358851,0.055073734,0.052450877,-0.5414669,0.69476813,0.78010684,-0.094164304,-0.12601721,0.67816883,0.6357855,-0.27880463,0.6083488,-0.6348105,-0.2038542,0.7383539,-0.06537091,-0.5275013,0.21971567,-0.34886137,0.030773118,-0.70903367,0.29403272,-0.518377,-0.64677167,-0.24545877,-0.03591573,-2.4547415,0.1444931,-0.17249663,-0.19981106,-0.3796606,-0.113839746,0.27928463,-0.6712101,-0.84615797,0.23155479,0.15101159,0.7323399,-0.119996525,-0.02257683,-0.23362784,-0.307115,-0.15163572,0.29419288,0.059823975,0.34834722,-0.3557408,-0.43545222,-0.06160875,-0.034209535,-0.6895879,0.053971577,-0.484612,-0.4015158,0.0014487952,-0.6388381,-0.12595586,0.65730065,-0.49307612,-0.015056231,-0.17756683,0.09720406,-0.07573502,0.26665547,-0.042337317,0.3291249,0.29731032,-0.086129814,0.04911405,-0.039095584,0.583206,-0.013143112,0.2584072,-0.04691747,-0.123473145,0.24114628,0.4969213,0.674891,-0.33394837,1.2504896,0.47329482,-0.11961458,0.18910754,-0.12207287,-0.27325872,-0.7787323,-0.16793306,0.014301677,-0.47849616,-0.6434881,0.07890848,-0.21869166,-0.91582537,0.5901743,-0.045996,0.54582745,-0.007111589,-0.15373944,0.33956218,-0.22259694,0.117360406,-0.13137566,-0.25793144,-0.52715605,-0.41749787,-0.669689,-0.37381232,-0.29888782,0.9992382,-0.30982468,0.020512799,0.02910459,-0.5737855,0.20711704,0.14206299,0.029017195,0.18738677,0.36764503,0.1787769,-0.64930123,0.19543749,-0.044661324,0.21267574,-0.4327111,0.32720092,0.844024,-0.55995303,0.5710048,0.23474067,-0.013766791,-0.36082003,-0.6916341,-0.06039187,-0.039052725,-0.31867623,0.50960505,0.22110885,-0.7724262,0.36268297,0.039599072,-0.5856883,-0.8120343,0.67938036,-0.16323537,-0.10419193,-0.08245764,0.4067366,0.17714827,-0.043433893,-0.34357083,0.36450443,-0.18213134,0.27045572,0.12259837,-0.087920405,0.06437534,-0.09421877,-0.3051915,-0.9103791,0.19296275,-0.5258177,-0.3556864,0.3574234,-0.12335809,-0.0010351943,0.15566607,0.3563914,0.39743522,-0.23203336,0.15509556,-0.0069861,-0.517314,0.22595252,0.62693805,0.5607373,-0.41714072,0.56031865,0.20269288,-0.21890163,0.096969746,0.1136175,0.3723701,-0.18504769,0.44082963,0.09034318,-0.1549345,0.23551528,0.94343203,0.15568374,0.5152015,0.16647309,-0.23541999,0.35569465,0.049716245,0.51083136,-0.14581811,-0.7209904,0.09452969,-0.18206613,0.13051392,0.54292274,0.23482418,0.28947198,0.10799915,-0.24173473,-0.051481556,0.13984853,-0.120090075,-1.7397417,0.3990951,0.38273588,0.90479755,0.56425476,0.18238233,-0.037905704,0.6881415,-0.316106,0.025170362,0.5459428,0.13981505,-0.5134337,0.5375909,-0.6678872,0.46903706,0.05129094,-0.077759854,0.29198885,0.10658834,0.49155235,1.0029539,-0.24947983,-0.08012792,-0.030568326,-0.1855771,0.03664722,-0.3947399,0.17424488,-0.502931,-0.5896893,0.7721627,0.5073572,0.3908668,-0.13075462,-0.0078089857,0.04098976,-0.19165182,0.29018575,0.002426843,-0.2629029,0.06936783,-0.5436254,-0.076276824,0.52489597,-0.1326675,0.008681419,-0.112927,-0.062579624,0.042144593,-0.18156286,0.10246689,-0.002468365,-0.9946656,-0.21252312,-0.19833322,-0.31429267,0.17966503,-0.35116363,0.0854716,0.22066809,-0.120406896,-0.14763868,0.40295553,0.27299,0.6962113,0.21440391,-0.19558509,-0.26333848,0.009093697,0.22203211,-0.24422847,0.2334714,-0.116913445,0.05480017,-0.6466493,0.55480605,-0.23744363,-0.6473728,0.2256303,-0.33335122,-0.13737798,0.5693182,-0.04938781,-0.19120677,0.112136446,-0.38643312,-0.34280184,-0.17412455,-0.22797664,0.21006273,0.24468075,-0.08735078,-0.24266829,-0.08215516,0.041912127,0.38734755,0.05582228,0.5984486,0.16908729,0.098017894,-0.25713772,0.0040374002,0.2254887,0.54985064,0.29288572,0.06958661,-0.33189443,-0.3125994,-0.4714098,0.29443464,-0.05157836,0.23799126,-0.07999763,-0.22438495,0.8228603,0.13804431,1.2237159,-0.006608203,-0.42731485,0.1261537,0.6019642,-0.30993262,-0.0650897,-0.40364566,0.8298691,0.5420867,-0.13792562,-0.14338338,-0.59597874,-0.14259763,0.108190335,-0.3236714,-0.04200794,0.01391996,-0.50208116,-0.20057298,0.2710483,0.17918432,0.050996453,0.011183252,-0.13391383,0.2907319,0.24552377,0.48729038,-0.66139585,-0.06014141,0.2552745,0.18395846,0.09257921,0.087964036,-0.2999555,0.37826642,-0.6918075,0.3053763,-0.25771666,0.08042042,-0.4834355,-0.3482429,0.1603866,0.010332778,0.414682,-0.25652218,-0.38451532,-0.1972369,0.5197484,0.0363085,0.1449987,0.6835006,-0.33525327,0.18403338,-0.052856375,0.55125767,0.9666558,-0.503765,0.13485257,0.25611904,-0.61766106,-0.5140402,0.3867965,-0.57478356,0.062174007,0.014431812,-0.48962045,-0.48874855,0.14660524,-0.0009298722,0.17132886,0.15274435,-0.84657925,-0.118149854,0.26051423,-0.11926039,-0.2491685,-0.22945602,0.31225517,0.67716175,-0.25213504,-0.5963838,0.09992581,0.3089104,-0.28426746,-0.4287866,-0.055425603,-0.10521203,0.3511436,-0.31162244,-0.33663973,-0.1463763,0.097347714,-0.51787525,-0.0705267,0.19043346,-0.3748769,0.12520248,-0.09284606,0.007304162,0.795367,-0.4567252,-0.114556275,-0.49502096,-0.46393034,-0.83505875,-0.37935606,-0.08334631,0.2897856,-0.2110167,-0.4651338,0.0460168,-0.23926193,0.04660361,0.21467651,-0.7062071,0.47513008,0.18441999,0.49072376,-0.2787893,-1.0872589,0.2330013,0.19428039,-0.11447113,-0.69368976,0.7376153,-0.123593956,0.7714073,0.038475152,0.01389813,-0.3159538,-0.5121822,0.17975669,-0.13783526,0.049733877,-0.80544376,0.18491006 +866,0.47938243,-0.22776045,-0.74964905,-0.031775985,-0.5438528,-0.06639053,-0.17381528,0.39498553,0.34679905,-0.456215,-0.15615201,-0.15596308,-0.113086395,0.1500201,-0.09280651,-0.33948353,-0.028788034,0.28758717,-0.6690367,0.6090703,-0.108517095,0.25684884,0.071390346,0.4552628,0.36427525,-0.055822365,-0.121657714,0.15951481,0.18054684,-0.4176989,-0.14384513,0.4178524,-0.64708287,0.16022623,-0.19317296,-0.5882912,-0.22373776,-0.49286154,-0.481,-0.99704015,0.4390831,-0.92092687,0.774572,-0.13431482,-0.2908051,0.10549487,0.36382753,0.5374657,0.16503142,-0.07860654,0.21496959,-0.1909478,-0.057073146,-0.0892572,-0.29916644,-0.32649246,-0.613102,-0.04053622,-0.2963241,0.010667642,-0.3633256,0.294074,-0.35654473,0.0068045002,-0.29164773,0.47616586,-0.32001713,0.20614156,0.29614645,-0.034905277,0.32166067,-0.66134655,-0.15777819,0.018049097,0.37425962,-0.17386246,-0.27675563,0.3217465,0.30125827,0.35362098,-0.08935453,-0.18062283,-0.46314815,-0.006571608,0.061895035,0.5877479,-0.034767024,-0.08863293,-0.012661542,0.16437258,0.5782421,0.4339837,0.3746013,-0.124572836,-0.20477247,0.0014517137,0.035444718,0.62220496,0.4911165,-0.2268349,-0.29112318,0.36677262,0.7399791,0.44707918,-0.21310018,0.13715439,-0.09520525,-0.35731477,-0.07959758,0.14976263,-0.2712461,0.25347334,-0.10357902,0.22865131,0.59784526,-0.17461076,-0.1354154,0.21146478,0.13153486,-0.05390389,-0.21579586,-0.35796064,0.35663584,-0.5613931,0.3340712,-0.14639214,0.549763,-0.0206925,-0.5969481,0.20782961,-0.7862474,0.28596547,-0.07598181,0.3587122,0.8399,0.4505779,0.35540643,0.8484308,-0.32539457,0.033689238,-0.00020907607,-0.3818288,-0.07568431,-0.38829255,0.107984595,-0.60618484,0.054696497,-0.16183874,-0.11022111,0.19401698,0.56321335,-0.6936967,-0.30307063,0.21235183,0.84685594,-0.16310452,-0.20194641,1.0139469,0.9281321,1.3411037,0.009239486,1.0947258,0.11181196,-0.24065559,-0.035576124,-0.1129484,-0.7055521,0.38195363,0.46948576,-0.43848404,0.36906785,0.14872932,0.10749883,0.49179095,-0.3865169,-0.08792155,-0.123853885,0.12802882,0.09456998,-0.4126838,-0.4650903,-0.16301309,-0.12607722,0.0057399,0.18812922,0.28939387,-0.068932876,0.4157105,0.04914232,1.4005868,-0.12614915,0.108084805,0.100678764,0.3536925,0.32524768,-0.24811636,0.08300663,0.3461339,0.2999176,0.19734277,-0.49771836,0.14066723,-0.33955622,-0.19503203,-0.23147523,-0.30903023,-0.35735956,0.0045306683,-0.39974806,-0.42493296,-0.34959134,-0.205369,0.46545961,-2.5422032,-0.16683027,-0.11444773,0.33922026,-0.23422733,-0.38313046,0.014516584,-0.5491476,0.44392848,0.18352117,0.5844275,-0.57551205,0.39521822,0.5273388,-0.8050427,-0.015843919,-0.67731637,-0.01828573,0.16441081,0.06973997,0.011228268,-0.10803853,0.3265234,0.092891656,0.42352405,0.05737073,0.105231844,0.49506998,0.63587844,-0.23368022,0.62091285,-0.09067775,0.5793248,-0.083765306,-0.2398635,0.49819872,-0.31250882,0.43853092,-0.053949177,-0.09942935,0.85938686,-0.3999241,-0.9480504,-0.5709696,-0.049586363,1.0395749,-0.23758289,-0.54088014,0.04223531,-0.5743666,-0.28384298,-0.118953146,0.37471825,-0.18577574,-0.117709294,-0.7980694,-0.2231175,-0.15757118,0.091576375,-0.008008974,-0.13358167,-0.5599812,0.8835267,-0.073889144,0.59774834,0.3249642,0.283231,-0.41866925,-0.45544878,-0.022527264,0.6008795,0.5634824,0.05210485,-0.43329912,-0.15111078,-0.5535656,-0.1212539,0.12273879,0.65246964,0.38441977,-0.21040365,0.23269646,0.26592332,0.0163816,0.116366304,-0.18084052,-0.2924761,-0.26422423,-0.16824667,0.6059043,0.6855841,-0.14246161,0.5432463,0.10239391,0.25345626,-0.19522773,-0.61425257,0.271211,1.2632045,-0.244611,-0.5405409,0.6436648,0.29433897,-0.11497844,0.45297888,-0.57901317,-0.31062979,0.4916831,-0.2056332,-0.5413789,0.1667176,-0.30039278,0.07860536,-0.8458914,0.29388794,-0.60561484,-0.5489617,-0.5360878,-0.09682656,-1.1562736,0.3709853,-0.24664824,0.013481204,-0.37264535,-0.37572393,-0.09655305,-0.56709814,-0.9120456,0.17544119,0.20167133,0.7477876,-0.22767957,0.13919519,-0.18814765,-0.51808584,-0.46696812,0.15034185,0.15206158,0.467511,0.0054851854,-0.40140423,-0.031054864,0.13130835,-0.41357282,-0.08916674,-0.5726207,-0.47250134,-0.17785828,-0.42627972,-0.16665348,0.6127287,-0.32415804,0.10478865,-0.24430534,-0.049310885,0.10855363,0.26585212,-0.06576974,0.20726798,0.10705024,-0.14803383,0.10987549,-0.14237447,0.38909343,-0.04170062,0.26747105,0.31457457,-0.24458782,0.38177797,0.33508712,0.8107303,-0.23381504,0.84983784,0.3334581,-0.23468582,0.28309295,-0.22017081,-0.39369884,-0.74198097,-0.0893146,0.24419971,-0.3801566,-0.5537599,0.012399912,-0.55440426,-0.84952325,0.49123886,0.110596575,0.4673951,-0.11051337,0.58216125,0.6473392,-0.32015246,-0.10450388,-0.042508613,-0.18896627,-0.5449969,-0.21373029,-0.4806977,-0.50442064,0.069110304,1.198556,-0.4425719,0.004426343,0.26311398,-0.19148722,0.17666544,0.3810249,-0.17631824,0.0014923981,0.52165484,-0.078084946,-0.50834703,0.41700724,-0.0866753,-0.08288902,-0.62437105,0.5098224,0.47455353,-0.55014575,0.43207482,0.30053225,-0.050000932,-0.2866757,-0.7445795,0.176194,0.19453947,-0.34364942,0.4281683,0.4019857,-0.6191769,0.30148387,0.44241902,-0.052078005,-0.8458162,0.61133987,-0.069721244,-0.34069198,-0.10849695,0.39713436,0.15105763,0.10451,-0.14321454,0.24386522,-0.4039598,0.35555914,0.10348011,-0.19643189,-0.059480082,-0.20857792,-0.1592095,-0.8298355,0.3303122,-0.5079511,-0.2629766,0.3578183,-0.015747238,0.14741288,0.21464872,0.30580592,0.40225765,-0.18814205,0.06885841,-0.39862567,-0.29373983,0.42914596,0.48106307,0.43589684,-0.546443,0.5570496,0.06652866,-0.360173,0.045971163,0.122719206,0.48303723,-0.12624769,0.5213043,0.14817272,-0.22401063,-0.06854073,0.75364864,0.07913514,0.3061602,0.023711009,-0.05853339,-0.18945524,0.097128786,0.41405487,-0.32456216,-0.7367789,0.08537185,-0.3082618,-0.0643021,0.5695176,0.05619853,0.053548973,-0.029074745,-0.3673934,-0.031082975,0.09877549,-0.04928146,-1.2747542,0.23338492,0.3139297,1.1168422,0.35814118,0.04055941,0.08631094,0.6877007,-0.17432642,-0.009840921,0.3859717,0.14835286,-0.3281853,0.4571086,-0.9438788,0.5224144,-0.052113812,-0.10861822,-0.002772441,-0.010258148,0.467122,0.7085724,-0.36958483,0.018699495,-0.187883,-0.43640712,0.1887491,-0.25339296,0.15942565,-0.60230285,-0.30751067,0.81140184,0.49348396,0.45090756,-0.25186256,0.05639439,0.08553567,-0.22898583,0.18774328,0.13575427,0.24478364,-0.10946907,-0.33483216,0.09748774,0.41641232,-0.115203716,0.05614529,-0.043620892,-0.10835149,0.20236437,-0.045502875,0.09939015,-0.0756238,-0.90037507,-0.09220453,-0.31151256,-0.4316217,0.2978646,0.2200683,0.0903033,0.30671415,0.08220853,0.06443719,0.43607172,-0.018110845,0.64988005,-0.030374408,-0.05241229,-0.34686136,0.44045833,0.0124675855,-0.07975823,0.05269432,-0.011865156,0.3587661,-0.4416117,0.38880372,0.11181191,-0.48623782,-0.041821092,-0.03564691,-0.02911334,0.45912385,-0.3267738,-0.15087709,0.040566478,-0.30494785,-0.2416654,-0.34956446,-0.017727902,0.17299087,0.2047088,-0.1602256,-0.25534335,-0.19290665,-0.2579786,0.38575882,-0.088460505,0.37580046,0.33142212,0.099041514,-0.57387215,0.01722994,0.22629833,0.46928993,-0.22557798,-0.24341127,-0.30383438,-0.5436711,-0.5568233,0.63357097,0.02578081,0.38576117,-0.019015934,0.056432564,0.8651375,0.1094829,1.2360991,0.018776234,-0.39288646,0.14851062,0.57085717,-0.11643398,-0.24659754,-0.36244455,0.77334875,0.6250834,-0.06830268,-0.022676617,-0.33576226,-0.0026925504,0.077020206,-0.23873946,-0.017574403,0.11913038,-0.35656387,-0.2663031,0.15092683,0.16369796,0.11899899,-0.29247943,0.062359374,0.5236944,-0.11969195,0.1860112,-0.3793116,-0.5302975,0.23160417,0.2412387,-0.18328044,-0.02086414,-0.44319472,0.28538498,-0.6009051,0.065456346,-0.23820628,0.25446972,-0.27759793,-0.3304432,0.30602494,-0.1057306,0.31010875,-0.40790758,-0.2833498,0.011416833,0.2981462,0.2277364,0.1726049,0.56962675,-0.3639253,-0.12390872,0.19915661,0.38449672,0.9351473,-0.20593643,-0.18010654,0.25502774,-0.4202955,-0.5709812,0.39723414,-0.57404226,0.22632404,0.06199738,-0.14681199,-0.5030628,0.15780458,0.28797534,0.1022443,-0.09429816,-0.7508407,-0.0049436945,0.20585822,-0.429528,-0.01314389,-0.32405517,-0.14880113,0.60727775,-0.022401124,-0.42105085,0.111994624,0.1488794,-0.07057163,-0.4202872,0.20445867,-0.40788773,0.22715054,-0.05711058,-0.49680445,-0.2288464,0.2173533,-0.47517458,0.090319335,0.24088947,-0.18046965,0.15380894,-0.46836042,0.13282931,0.7981942,-0.44117674,0.032003973,-0.36587897,-0.4798007,-0.5992952,-0.14075306,0.09326481,0.13200146,-0.004839069,-0.900442,-0.09618742,-0.2689174,-0.32465532,-0.14955887,-0.18471071,0.43208963,0.113600075,0.2369739,-0.23969303,-0.9909104,0.2964404,-0.019437905,-0.19057444,-0.5877033,0.5482923,0.040617798,0.6747284,0.13865443,0.1450989,0.27481455,-0.5161071,0.19768289,-0.09910019,-0.07147283,-0.850321,-0.17153047 +867,0.31850654,-0.29451072,-0.43434796,-0.26529327,-0.31343898,-0.096464336,-0.3809519,0.28901616,0.14911143,-0.56379586,-0.16955006,-0.08726132,0.1793434,0.4735519,-0.16112912,-0.62833786,-0.018268377,0.098105304,-0.6136138,0.44868007,-0.7356511,0.3712928,0.26975667,0.1946929,-0.085550345,0.30365697,0.46949902,-0.27681157,0.18635722,-0.26697442,-0.30025986,0.10832521,-0.6014896,0.20055974,-0.1392705,-0.38461116,0.17791955,-0.41356865,-0.13869186,-0.6031969,0.1238462,-1.0143652,0.5332199,-0.0138253225,-0.11192756,-0.31253055,0.33803734,0.42709574,-0.19698705,0.18199103,0.12269288,-0.16988797,-0.15318,-0.2795787,0.020069214,-0.48492074,-0.35922208,-0.074178316,-0.65789217,-0.46578714,-0.27678788,0.22053456,-0.36534515,0.1314301,-0.08804544,0.12397774,-0.40063033,-0.029617956,0.3165673,-0.3431088,0.3653934,-0.5556552,-0.0010506337,-0.13619353,0.54691595,-0.019178309,-0.3282141,0.3055395,0.43287006,0.4791584,0.22824176,-0.15107588,-0.049045224,-0.38473842,0.3367602,0.63424164,-0.14703797,-0.45738378,-0.32833305,0.020744802,0.31453142,0.49433365,-0.100172974,-0.39149055,-0.061955947,-0.16284439,-0.36891544,0.53689486,0.44998154,-0.21078514,-0.28334537,0.16813545,0.48667482,0.21723312,-0.2516967,0.23458423,0.0631996,-0.6115312,-0.1799375,0.14453326,0.18109448,0.52149284,-0.27400562,0.33802214,0.8527193,0.0025149782,0.16917305,-0.07626181,-0.13410525,-0.29793575,-0.20733358,-0.03344828,0.059636086,-0.76631975,0.06589759,-0.38049945,0.9700965,0.17015357,-0.75605947,0.48828587,-0.6306754,0.21030562,-0.18078478,0.6116799,0.6442068,0.27755946,0.23635237,0.8046345,-0.33604693,0.14231409,-0.14329076,-0.565403,0.07803715,-0.27319425,0.082784794,-0.2802167,0.22177579,-0.0034195657,0.3580382,0.005203853,0.3767489,-0.47477213,-0.093049794,0.17891605,0.76928025,-0.29231784,-0.030326521,0.6722264,0.9247578,0.8221733,0.17688096,1.2586725,0.2154427,-0.14454365,0.057267327,0.058193784,-0.62900937,0.13822366,0.4990684,0.5211739,0.24803202,-0.08049848,-0.040983822,0.3159169,-0.3432202,-0.02032216,-0.07439018,0.39556244,0.093636625,-0.09687114,-0.5053101,-0.14953794,0.0069654584,-0.105192296,0.09347328,0.22185339,-0.106482685,0.48820677,0.018832356,1.1008685,-0.22304739,0.20226355,0.18884504,0.46969473,0.39931867,-0.19357629,0.111539565,0.46715847,0.42351198,0.003409962,-0.61158067,0.11222857,-0.20815045,-0.43016735,-0.09394296,-0.35767758,-0.25135958,0.21682496,-0.48936856,-0.0329071,-0.067559175,-0.108852245,0.48981062,-2.8050985,-0.40861514,-0.19800073,0.33975402,-0.28433034,-0.17524229,-0.17119946,-0.5212546,0.28552803,0.28733203,0.609089,-0.7496285,0.5638473,0.51221985,-0.34984538,-0.31251025,-0.77230763,-0.13718046,-0.11856133,0.3711065,0.13400958,-0.20153739,-0.22774756,0.06984582,0.63635474,0.0027433932,0.10626221,0.30078962,0.45930323,0.21755405,0.6911001,-0.13885961,0.5480307,-0.43511555,-0.099472314,0.3819398,-0.27956066,0.29181373,-0.16032639,0.09411185,0.43417498,-0.5643774,-0.8430085,-0.7853684,-0.53034914,1.0422748,-0.36318076,-0.43797484,0.26138845,-0.016686827,-0.16634175,0.04264906,0.69511026,0.0076892674,0.3547529,-0.73757225,0.16729432,-0.11247041,0.23068249,0.107070245,-0.22439633,-0.30409884,0.76429063,-0.0987457,0.7762284,0.28670317,0.13775969,-0.09567764,-0.35482594,-0.0029079542,0.823734,0.36609194,0.06584909,-0.21495105,-0.28603283,-0.2867351,-0.19837345,-0.027377715,0.6818364,0.7555749,-0.08162265,0.09512948,0.37207708,0.07310248,0.135513,-0.079669885,-0.121789716,0.021426499,-0.008676559,0.4666289,0.5208492,-0.180376,0.3380917,-0.18491502,0.36536917,-0.21998961,-0.4526595,0.6441438,0.4994819,-0.11233326,-0.005608514,0.50935936,0.54600954,-0.2868997,0.4151156,-0.6749375,-0.28077546,0.6310063,-0.09431244,-0.49976805,0.3127791,-0.31122625,0.16023766,-1.0008521,0.39669657,-0.50276715,-0.44498816,-0.37657258,-0.16867284,-3.806424,0.339159,-0.03402877,-0.101915814,-0.37555203,-0.05706017,0.3129935,-0.552942,-0.6080132,0.25419548,0.10513755,0.533511,-0.06453941,0.1487736,-0.433884,-0.1821058,-0.032277692,0.1642552,-0.12992077,0.13794196,-0.23250164,-0.23244719,-0.042950403,-0.06256061,-0.4276316,0.27828637,-0.5422387,-0.55427545,-0.0073099085,-0.440549,-0.34729218,0.6116987,-0.5117367,-0.041224197,-0.13675094,0.025840053,-0.45998845,0.25582483,0.08957478,0.21053386,0.029798135,0.06975672,-0.04696564,-0.39952672,0.5130918,-0.1036756,0.3152744,-0.02916324,-0.07413985,-0.0016618967,0.4775147,0.5392186,-0.15030356,0.99985546,0.21379292,0.036061194,0.28563875,-0.3399769,-0.3541112,-0.5184892,-0.20868333,-0.011216257,-0.29277015,-0.5169048,0.005208388,-0.14684002,-0.74902177,0.71514624,0.121838786,0.110478304,0.05785893,0.27541462,0.2137193,-0.03523071,-0.07475013,0.052787423,-0.124326736,-0.6704259,-0.21340616,-0.68791467,-0.48177752,0.095496476,0.6908787,-0.311925,0.030417072,-0.07632774,-0.17808904,-0.0530078,0.12554976,0.30139673,0.32592896,0.41039467,-0.1641668,-0.6921091,0.53934044,-0.1700836,-0.38162994,-0.38426876,-0.0036210418,0.7203045,-0.8263714,0.48621583,0.49022362,0.068005376,-0.003406922,-0.47697327,-0.36375895,-0.045160502,-0.24865909,0.37892547,0.051867966,-0.84984374,0.46877563,0.34298298,-0.27757773,-0.667064,0.4548819,-0.021223545,-0.17748976,0.022209292,0.28357714,0.15855694,-0.013877871,-0.13174392,0.06983196,-0.4182702,0.30481884,0.17295541,-0.012611563,0.4971099,-0.14267452,-0.31984994,-0.66142243,-0.16807596,-0.67596,-0.094610035,0.32542372,-0.019615792,-0.019632677,0.16563268,-0.10119909,0.3351616,-0.30271566,0.18241484,0.026030088,-0.25478512,0.2324229,0.43627658,0.25733662,-0.38973668,0.73604035,0.23461443,-0.08339163,-0.018225178,0.09726442,0.2699376,0.09769017,0.5372447,-0.35758233,-0.10266629,0.27964836,1.0894079,0.29203883,0.43507972,0.17588408,0.038707547,0.5266209,0.06879577,0.12956369,0.23238029,-0.42905176,-0.139804,-0.17791043,0.13746105,0.5283254,0.31967643,0.39697716,0.025953509,-0.27185234,-0.0058107018,0.31903827,-0.077856965,-1.1856962,0.35740343,0.31728396,0.6803016,0.49117267,0.04790337,0.008780201,0.663169,-0.2208957,0.21166198,0.19391131,0.021247467,-0.5272693,0.7684831,-0.5670435,0.3084299,-0.33979973,-0.040761426,0.098167844,0.034718603,0.3035891,0.7948704,-0.14326236,0.18033187,0.015640728,-0.18790881,0.033141017,-0.42576376,-0.12317719,-0.3372198,-0.35382333,0.6951292,0.39336443,0.40420866,-0.28007737,-0.041288,0.04360981,0.016288942,0.089767136,-0.12213531,0.0045162016,0.07471763,-0.52614975,-0.19944976,0.76691085,0.13291441,0.35178533,-0.13553171,-0.4527975,0.38586998,-0.047291707,-0.0033198919,-0.119124986,-0.52436787,0.14531915,-0.30949196,-0.6692529,0.32916394,-0.38828444,0.14746793,0.29738793,-0.06705133,0.023301216,0.33540773,0.036736965,0.77143383,-0.036334515,-0.19035982,-0.35390234,-0.022672072,0.26310107,-0.38434055,-0.049000755,-0.4907733,0.042888362,-0.5269702,0.5199409,-0.07004052,-0.25841454,0.2610891,-0.14043075,-0.03246074,0.5659292,-0.07654535,-0.16456068,0.30618027,-0.14652917,-0.42266366,-0.14387493,-0.21132486,0.2148609,0.33801448,0.07540239,0.022012621,-0.22855641,-0.11695925,0.29569277,0.11215525,0.5303814,0.18715252,0.06372299,-0.12776357,0.03521842,0.1644625,0.4132792,0.14296828,0.0002279083,-0.15874869,-0.5277247,-0.21129625,0.038888067,-0.0233874,0.26788023,0.15524948,-0.26574287,0.90513444,0.01374355,0.91796136,0.016300598,-0.34140942,0.17007864,0.39517894,0.011813889,-0.034558415,-0.34341606,0.874556,0.44007602,-0.044337224,-0.032744076,-0.48741683,-0.07218547,0.20395203,-0.32331058,-0.030786723,0.021048082,-0.59386045,-0.3728585,0.1653718,0.15566961,0.1509212,-0.17085071,0.025163615,0.0030732204,0.007828859,0.26691437,-0.7493511,-0.3101534,0.23091984,0.30352667,-0.0871509,-0.08021644,-0.3650584,0.43290588,-0.7274132,0.16541618,-0.6439535,0.124194324,-0.27351668,-0.32352647,0.09431975,-0.121583015,0.4064195,-0.28093898,-0.32000777,-0.08091848,0.44099775,0.06833761,0.29337236,0.6627212,-0.13224079,0.06627173,0.2002924,0.58321327,1.1322511,-0.48121667,-0.059060205,0.32487696,-0.42052785,-0.4860392,0.22365527,-0.3701272,0.06020869,0.08198213,-0.44605446,-0.39847925,0.24329704,0.20411943,0.16181383,0.03989956,-0.68077415,-0.3230346,0.2988452,-0.40652764,-0.36998582,-0.29729816,0.33341703,0.612088,-0.2642828,-0.23445801,-0.05134496,0.28561938,-0.34852841,-0.61631477,-0.16033716,-0.030201294,0.3547094,0.15691768,-0.09498095,-0.1385581,0.2731896,-0.5281722,0.073377684,0.09432449,-0.37738034,0.12892729,-0.20154166,-0.1896764,1.0341829,-0.26996484,-0.4013448,-0.63109297,-0.58616525,-0.80011576,-0.4687417,0.41499245,0.17099689,0.2429623,-0.21112959,0.074626155,0.07747839,-0.08325362,0.037638206,-0.40627623,0.4081227,0.08938094,0.6046122,-0.2101816,-0.95271295,0.16747934,0.16323724,-0.07515746,-0.65143317,0.5592614,-0.121346004,0.85670614,0.08179678,-0.11952243,0.088162415,-0.403386,0.12885372,-0.3788617,-0.06885708,-0.9902737,0.20472746 +868,0.37732226,-0.15449992,-0.3321305,-0.12448481,-0.1068647,0.103229545,-0.024104571,0.5734209,0.14895503,-0.504751,0.029562326,-0.22316223,0.06264444,0.2815103,-0.06630949,-0.49586895,-0.03624008,0.13485615,-0.48474944,0.509993,-0.488303,0.33381498,0.02828118,0.26575282,0.26397333,0.20860928,0.12561846,-0.13995737,-0.246934,-0.0615976,-0.31526738,0.32061195,-0.47995523,0.16564946,-0.057320442,-0.3106404,-0.06401326,-0.55463207,-0.20790361,-0.65660894,0.30789524,-0.6124359,0.43126264,0.036058195,-0.21689697,0.3374955,0.008631373,0.1590491,-0.3113985,-0.09712601,0.18547535,-0.019055089,0.007077658,-0.10737061,-0.17975232,-0.20403562,-0.5902064,0.12735534,-0.29641125,-0.25505072,-0.28225276,0.047529187,-0.2977031,-0.10760081,-0.15250021,0.50546914,-0.3698246,-0.017686915,0.046982713,-0.07665453,0.05970394,-0.49101022,-0.23035182,-0.07774822,0.20991282,-0.24899103,-0.2005843,0.26257768,0.367488,0.50136936,-0.10547017,-0.12153492,-0.3801693,-0.019443242,0.061498545,0.57669884,-0.12536792,-0.6716853,-0.042709947,-0.0024716535,-0.15508097,0.16465467,0.2743009,-0.23258692,-0.16387297,0.065997854,-0.3007611,0.38938776,0.3794625,-0.48236087,-0.3808761,0.38271073,0.43503234,0.12371781,-0.0591717,-0.14568385,-0.022130368,-0.59538114,-0.1420618,0.101151034,-0.18712394,0.45609373,-0.16002989,0.27097625,0.5962435,-0.14531264,0.05006246,0.027253648,-0.05671579,-0.039916683,-0.36872247,-0.15703563,0.18112141,-0.33457738,0.17761129,-0.12183056,0.7725229,0.19668274,-0.722856,0.51763624,-0.49570695,0.15177727,-0.04151574,0.38227132,0.6957261,0.2920016,0.3065429,0.5523375,-0.43865815,-0.037275426,-0.063161,-0.31507406,-0.051872294,-0.044121996,0.022272553,-0.49512693,0.11086254,0.0438121,-0.024640007,0.14999872,0.29750916,-0.40610445,-0.08405883,0.1724961,0.7604783,-0.27607772,-0.22087076,0.7238228,0.87696284,1.0552889,0.035396837,1.0358241,0.18220784,-0.280075,0.39712203,-0.35903245,-0.64577705,0.19746122,0.40541232,0.10746796,0.113906674,0.03787331,-0.007315016,0.34259796,-0.1995655,0.058934078,-0.08401272,0.14253949,0.1470339,-0.09652397,-0.43416703,-0.49942937,-0.18795976,-0.027748276,0.066569015,0.30244446,-0.24850784,0.3369802,-0.047321703,2.0108435,0.004782454,0.09658645,0.08804653,0.4886375,0.22004355,-0.2307642,-0.18079755,0.27923006,0.24733518,-0.0026493957,-0.5388474,0.11563837,-0.23422667,-0.6074949,0.059155066,-0.37960613,-0.13330847,-0.023784108,-0.47941926,-0.0990794,-0.13391142,-0.3672354,0.5209648,-3.0469725,-0.14285825,0.0254169,0.18832384,-0.2983506,-0.48194,-0.15092808,-0.46055374,0.36307934,0.3057798,0.50102425,-0.61356246,0.18381637,0.23107924,-0.46290758,-0.2145281,-0.6270303,-0.13832341,-0.0138402935,0.275464,-0.09969415,-0.04228876,0.028575102,0.048999313,0.5137946,-0.018847188,0.08528846,0.19954552,0.3277324,0.17655952,0.45740747,-0.13187356,0.56867826,-0.22454758,-0.14483605,0.2789821,-0.39407656,0.3249419,-0.007354625,0.15148465,0.37823913,-0.49299622,-0.82512933,-0.5381921,-0.24176502,1.0435655,-0.14694303,-0.15561105,0.34815323,-0.2818466,-0.1522225,-0.17855145,0.5018718,-0.020776387,-0.29724774,-0.691515,0.13644613,0.0039060514,0.13033745,-0.055430364,-0.018257419,-0.38906538,0.5696105,0.0408858,0.5586758,0.27145472,0.18890648,-0.27302417,-0.23972934,-0.022429649,0.89561284,0.29077587,0.16201001,-0.2240062,-0.19103931,-0.41800302,-0.122660674,0.11357477,0.34109706,0.6290143,0.03143013,0.10582427,0.29319677,0.08798542,0.109793626,-0.11482821,-0.059562135,-0.07281915,0.009488362,0.5792958,0.421143,-0.2327467,0.47094733,-0.08050545,0.14467312,-0.31043273,-0.3296139,0.46626326,0.9580134,-0.054501165,-0.18334967,0.45817477,0.36917952,-0.18692374,0.35201707,-0.37233528,-0.1630438,0.5898736,-0.30083752,-0.25182876,0.1809339,-0.28933793,-0.057614047,-0.87915325,0.16792342,-0.17413248,-0.34859288,-0.4630476,-0.09182421,-3.374348,0.0680168,-0.13958764,-0.20089422,0.012409095,-0.13236684,-0.00012604991,-0.6112135,-0.45213282,0.13864268,0.04016675,0.6849725,-0.09653075,0.15171617,-0.18622822,-0.29367062,-0.34277,0.07959486,-0.1319844,0.47657683,0.038202595,-0.28728145,0.012230714,-0.23907389,-0.45641506,0.13283819,-0.5897522,-0.43727365,-0.099334195,-0.48358935,-0.36101112,0.7086967,-0.31113398,0.10048011,-0.053070687,-0.10477562,-0.15360378,0.33666545,0.19927782,0.189509,-0.0070155244,-0.09914363,0.050860144,-0.27234378,0.23303024,0.107166134,0.3446263,0.44807443,-0.09934259,0.22795108,0.45160285,0.71777445,-0.08931392,0.7678224,0.4867874,-0.030379724,0.37558338,-0.37184814,-0.10335181,-0.43061748,-0.29787335,-0.011620279,-0.3389204,-0.5291501,-0.14136918,-0.25009623,-0.6577136,0.38583887,0.0118062375,0.20421417,0.020873448,0.2190079,0.43014425,-0.24270166,0.037847422,-0.052696787,0.056482118,-0.442426,-0.33683893,-0.62445694,-0.47335765,0.29621795,0.83744526,-0.077627465,-0.06908617,-0.044560794,-0.18016014,-0.08276778,-0.01369695,0.030243825,0.27784172,0.19956136,-0.1719771,-0.59465843,0.5936117,-0.026907882,-0.1689635,-0.3400817,0.1297323,0.4219897,-0.5082214,0.59161884,0.17396468,0.0755105,-0.05096256,-0.44431794,-0.28795394,0.038661227,-0.16553144,0.23844472,0.16859058,-0.7901437,0.4682471,0.3784352,-0.20529903,-0.718371,0.41178292,0.0944132,-0.2125519,-0.1153676,0.27081713,0.19753313,0.026249062,-0.20008124,0.23332341,-0.6832984,0.17849459,0.29525745,0.09650986,0.24046403,-0.19456895,-0.07652096,-0.6375628,0.06529151,-0.3783372,-0.30603835,0.17789094,0.1821412,0.28423527,0.19172274,0.035239324,0.29231352,-0.2806568,0.13943498,0.03979416,-0.096698694,0.19864586,0.351535,0.48424965,-0.42728817,0.4743385,-0.016687235,0.05729603,0.04212234,-0.00019108455,0.38966453,0.18199606,0.20605898,-0.14689513,-0.40854728,0.29260164,0.73108286,0.21127126,0.25402597,-0.012278446,-0.14279968,0.22579846,0.031662673,0.16049775,0.13654651,-0.48498264,-0.046191134,-0.12027777,0.19193846,0.50572544,0.08688512,0.13866095,-0.09099913,-0.25967363,0.036514767,0.24996522,-0.087379836,-0.8704876,0.4010163,0.16142997,0.91102046,0.57276285,0.0011014044,0.036067046,0.49157518,-0.29432717,0.29636902,0.29423878,-0.22948837,-0.65950596,0.61886954,-0.52221984,0.56273854,-0.05739812,-0.07101289,-0.049577367,-0.16747539,0.39340517,0.6344353,-0.12704642,0.072098844,0.13089237,-0.2661235,0.18952103,-0.45087665,0.056456827,-0.49048957,-0.124090545,0.61185324,0.38716874,0.21689698,-0.17883086,0.058578346,0.12773082,-0.13654235,-0.010144048,0.066813104,0.1398001,0.051290978,-0.6801096,-0.19303949,0.59215057,-0.1964058,0.20697512,0.039081734,-0.27025563,0.23843017,-0.17079595,-0.14133777,-0.07293726,-0.64001614,0.07139484,-0.25747365,-0.37236974,0.4126487,0.0018298845,0.2501608,0.17877603,0.13654871,-0.20698068,0.3682023,0.2855503,0.65783936,-0.12960312,-0.058919672,-0.47250333,0.23050953,0.058240555,-0.15541181,-0.22411104,-0.16881299,-0.07814606,-0.5343491,0.46850902,0.1333854,-0.20685154,0.020299705,0.020672591,0.10316456,0.58440423,-0.05597693,-0.012274522,-0.29386365,-0.14660718,-0.23254791,-0.03213717,0.0079404395,0.3836684,0.21779624,-0.03567543,-0.06064946,-0.08827477,-0.13391079,0.3427868,-0.018152798,0.294932,0.1911071,0.05963367,-0.30277395,-0.19738065,0.1525836,0.3795424,0.06582654,-0.11393515,-0.26871625,-0.15079759,-0.3645789,0.1354625,-0.16055562,0.42685625,0.08090841,-0.31671053,0.5576723,-0.058478158,1.059921,0.093358286,-0.31622875,0.11815127,0.37994167,-0.011331473,-0.05013098,-0.36134478,0.8946127,0.34294617,0.061760657,-0.17287332,-0.20418897,-0.03624557,0.21468982,-0.20541245,-0.18130998,0.062505,-0.61874694,-0.19332081,0.15183932,0.14729208,0.28867435,-0.11618611,0.007255578,0.26469213,0.061806742,0.31420344,-0.3166406,-0.17906652,0.2771078,0.38533637,0.012873038,0.098658696,-0.46657792,0.37537596,-0.5715866,0.14324252,-0.17813797,0.2110311,-0.24759445,-0.17140833,0.25407347,0.11844928,0.38201895,-0.14134435,-0.49028358,-0.24603394,0.44735253,-0.02167649,0.20455636,0.47806272,-0.23186168,0.027827501,0.08747374,0.46175542,0.95583737,-0.07759803,-0.11252569,0.38853613,-0.25962844,-0.6184899,0.42741734,-0.13275392,0.21809216,-0.03102016,-0.002035904,-0.50620174,0.12285399,0.31643003,0.12629543,0.06084319,-0.5273685,-0.34343317,0.23324195,-0.30988413,-0.2996798,-0.3593721,0.095792435,0.7402247,-0.32890823,-0.30546954,0.11768512,0.12150005,-0.19616313,-0.6774628,0.0914011,-0.43129092,0.33044365,0.057678156,-0.30296388,-0.121933214,0.011505851,-0.33363527,0.22969453,0.048464265,-0.3762643,0.026379049,-0.3352757,-0.11057509,1.0903447,-0.05863334,0.27844945,-0.41281828,-0.53117585,-0.81715703,-0.509176,0.5895261,-0.07499387,0.034758568,-0.5547825,-0.031320095,0.041366525,-0.20502757,-0.06106888,-0.39699116,0.49156523,0.10416451,0.14163052,-0.12756577,-0.65862066,0.05148317,0.1128246,-0.17524809,-0.46410248,0.38052395,0.02150519,0.84287965,0.018835751,-0.049142443,0.3866495,-0.32497707,-0.09600336,-0.30658305,-0.122237,-0.5179888,0.16789061 +869,0.4461004,-0.2574291,-0.4045904,-0.19726287,-0.1482038,-0.018312575,-0.08092617,0.55465454,0.34309906,-0.49957213,-0.2004142,-0.16932389,-0.043672122,0.27765706,-0.11359695,-0.63101894,0.012385146,0.19098407,-0.35547718,0.678898,-0.521562,0.2013267,0.05488266,0.43756735,0.24700148,0.00831306,0.25961626,-0.21103191,0.036769923,-0.10662318,-0.16021316,0.31641862,-0.45840576,0.1934421,-0.091453806,-0.40268803,-0.018618595,-0.4762134,-0.25410953,-0.8229285,0.27002195,-0.70983845,0.42631868,0.2984353,-0.38820022,0.1703368,-0.05312324,0.2705956,-0.37670282,0.05963724,0.079365596,0.012092517,-0.08414782,-0.121157795,-0.040110305,-0.16707389,-0.59935534,0.073745005,-0.36859682,-0.001958102,-0.21088299,0.14333938,-0.39940923,-0.16198233,-0.12545994,0.6255919,-0.45494795,0.0040648533,0.2562537,-0.2026659,0.3725348,-0.567615,-0.2974481,-0.13594566,0.15226294,-0.12169988,-0.35608035,0.22007425,0.3003037,0.5382628,0.0415579,-0.20703167,-0.37113005,0.0035696488,0.04655298,0.3369827,-0.12027018,-0.54166293,-0.15025987,-0.031132616,0.15178691,0.13181926,0.14726296,-0.33226946,-0.13499993,-0.03414893,-0.25484127,0.42009237,0.50860363,-0.293381,-0.18118261,0.2711539,0.48466232,0.109480515,-0.005018991,0.13017803,0.10050607,-0.6758518,-0.16625397,0.19954889,-0.31772706,0.53780705,-0.25180146,0.20948285,0.64462036,-0.105341874,-0.066799715,0.15224144,0.12270292,-0.13384034,-0.3795245,-0.31619167,0.37065905,-0.30793798,0.069124624,-0.2751882,0.91812664,0.03234049,-0.8190776,0.22983855,-0.5641608,0.1679609,-0.15858896,0.6660372,0.7102145,0.30777803,0.537459,0.7879005,-0.4409064,-0.012211511,-0.021617703,-0.316145,-0.019013882,-0.080160625,-0.12839581,-0.5047443,-0.0038087459,0.05802075,-0.10618797,0.07954792,0.4452191,-0.592383,-0.09230609,0.21785036,0.65834385,-0.24887463,-0.09199858,0.730983,0.99595493,1.1651995,0.1458228,1.0871838,0.27864486,-0.16868131,0.20210226,-0.31344464,-0.7546345,0.35147002,0.35954902,0.088344015,0.32841492,0.030355917,-0.0419263,0.32305494,-0.48093656,0.039899513,-0.22323605,0.17254885,-0.0010806414,-0.053217813,-0.5006713,-0.37670434,-0.16018894,0.042782333,0.039345603,0.14707094,-0.1829981,0.28788635,-0.013028173,1.5777013,-0.14105026,0.060270593,0.12865996,0.4520489,0.19174439,-0.12388183,-0.10429324,0.31667092,0.40151867,-0.014551639,-0.68419874,0.13824509,-0.14031288,-0.4499194,-0.09704773,-0.27728814,-0.0019022708,-0.13154101,-0.40388834,-0.14406496,-0.12957391,-0.5694816,0.4134372,-2.7179537,-0.19664747,-0.11815631,0.25334975,-0.24195123,-0.1832013,-0.20736033,-0.48714715,0.35944125,0.45827976,0.5105016,-0.8420556,0.36867934,0.4990738,-0.5782943,-0.109405234,-0.74809456,-0.123064265,-0.15551907,0.24432404,0.060604475,0.031347428,-0.042345222,0.1991559,0.49802348,0.11627349,0.14482114,0.2831972,0.3287094,0.01889282,0.5044705,0.051336758,0.38347656,-0.27460024,-0.19506662,0.35054496,-0.46408388,0.1909895,-0.048792936,-0.004015635,0.44388866,-0.52509284,-0.8917312,-0.6805204,-0.3029316,1.2596309,-0.24004793,-0.36615637,0.22391623,-0.18165174,-0.04579155,-0.12841564,0.52022016,-0.17145747,-0.17596349,-0.8833813,0.028564215,-0.023617927,0.33762395,-0.02864544,-0.113652535,-0.44089684,0.6978699,-0.023729287,0.5104118,0.41168663,0.15067254,-0.3098477,-0.49753782,0.0697351,0.9397681,0.31838208,0.18277518,-0.3451781,-0.1720069,-0.31110826,0.16813459,0.12295778,0.48534778,0.7633126,-0.20988637,0.1350672,0.41617492,0.075820915,0.01730423,-0.104824185,-0.22517855,-0.19888268,0.061604068,0.6398702,0.7212554,-0.21294767,0.2399203,-0.08085064,0.22349215,-0.102908686,-0.3447558,0.57135355,0.8550679,-0.019949757,-0.27393645,0.6120632,0.5686002,-0.28147233,0.45331654,-0.58909196,-0.23542263,0.35873172,-0.10048224,-0.33282757,0.10518852,-0.3962355,0.17453958,-0.9181344,0.29500082,-0.20586188,-0.30634454,-0.6281272,-0.04784619,-3.2449086,0.27291825,-0.27332097,-0.16780542,-0.1225346,-0.06735012,0.13864684,-0.53898853,-0.64645666,0.09593563,0.17131704,0.627334,-0.0132764,0.08840923,-0.28661203,-0.2091578,-0.35354137,0.12016162,-0.012460417,0.3252907,0.24343982,-0.45157015,-0.0021874583,-0.19294903,-0.31456864,0.05451472,-0.503944,-0.48403412,-0.147552,-0.68389666,-0.3749663,0.5682959,-0.21565741,0.028863417,-0.17606544,0.006667238,-0.03133691,0.33848858,0.058083877,0.072197825,-0.053814594,-0.095674396,-0.19502313,-0.17785603,0.19381998,-0.022419872,0.15767981,0.32862446,-0.21618043,0.21920255,0.550408,0.59562564,-0.2173989,0.72569597,0.5654009,-0.10131307,0.14853726,-0.10978257,-0.1255421,-0.519423,-0.29333517,-0.10385533,-0.41400832,-0.3994786,0.088762686,-0.26602483,-0.8523073,0.5152196,-0.111776285,0.19447596,0.083561644,0.16779849,0.54949313,-0.07033278,0.048549093,-0.08819025,-0.15508175,-0.41146368,-0.33000505,-0.74454755,-0.26922166,0.21606809,1.0610465,-0.3246523,0.1609323,0.1298658,-0.11424741,-0.10395626,0.18407306,-0.017283656,0.24986269,0.45240676,0.08341401,-0.50537795,0.4017289,0.050316457,-0.15930812,-0.4461951,0.17827593,0.5981771,-0.6029378,0.586313,0.31547314,0.030460583,0.027920635,-0.5670546,-0.3076356,-0.060631793,-0.1424327,0.47047326,0.24001628,-0.6654711,0.41055897,0.34731975,-0.1931784,-0.80652976,0.3810674,-0.08395186,-0.40728348,-0.100715324,0.31226116,-0.022536488,0.12599938,-0.15547019,0.20319249,-0.40188012,0.18165673,0.11359581,-0.16414419,0.31662443,-0.15674774,-0.0268776,-0.7533747,-0.0144344885,-0.63047653,-0.30822167,0.20471825,0.1315491,0.008037943,0.16221197,0.02459019,0.37532505,-0.12167554,0.047382135,-0.027852656,-0.15731582,0.35391173,0.5800657,0.41190207,-0.38221133,0.60333276,0.07346533,0.021123635,-0.31319046,0.03070852,0.32180336,-0.028234271,0.45677254,-0.11195008,-0.24459127,0.45472303,0.6767473,0.13414234,0.4901467,0.010813566,-0.039670065,0.3826935,0.07320137,0.25086015,-0.20588373,-0.44320723,0.02628426,-0.28639483,0.13698044,0.41930866,0.17311686,0.27342463,0.010916567,-0.30053857,0.070682034,0.27161887,-0.09227285,-1.1575143,0.2952727,0.18028277,0.7259298,0.7396912,-0.09992835,0.06787939,0.6297899,-0.26834655,0.09801919,0.32026064,0.009674168,-0.4784172,0.6688968,-0.60320497,0.38578635,-0.1832709,0.0016731918,-0.07592355,-0.06647844,0.401604,0.53634536,-0.13468918,0.020550195,-0.13498332,-0.30128792,0.07091131,-0.50362784,0.12534866,-0.6083101,-0.21314965,0.674078,0.6096331,0.3477292,-0.2061798,0.010949933,0.056037374,-0.10407495,0.10945309,-0.023182154,-0.09094512,-0.045827873,-0.78998435,-0.015229505,0.5319154,-0.026846446,0.16127242,-0.030185465,-0.2513439,0.10949172,-0.09053664,-0.12728937,-0.10734543,-0.6836834,-0.15325275,-0.2950535,-0.22161163,0.45704836,-0.3459922,0.25497767,0.21971366,0.11289569,-0.2979452,0.12493537,0.09022922,0.6996121,0.08823094,-0.1288895,-0.38282198,0.19558048,0.1364268,-0.12723994,-0.23417057,-0.24652314,-0.01555186,-0.4930968,0.4453454,0.17293288,-0.2425267,0.08880382,-0.07753154,-0.06309194,0.6356065,-0.14605829,-0.100020155,-0.11372277,-0.27632958,-0.23776732,-0.14584033,-0.1781906,0.36805552,0.16418847,-0.10983903,-0.05933288,-0.022136245,-0.101207644,0.51159847,0.10556621,0.30155614,0.29744422,0.09921355,-0.512302,-0.017665194,0.15219904,0.5833314,0.124373905,-0.17674352,-0.22320928,-0.27069065,-0.31769565,0.08946085,-0.20549652,0.36376226,0.05070362,-0.2544522,0.87308943,0.26109183,1.2252814,0.0065909633,-0.37505662,-0.06696398,0.47427735,0.052318435,-0.0054697786,-0.30160502,0.94997305,0.49044374,-0.19583075,-0.15650107,-0.39029577,-0.08947027,0.14882642,-0.19441845,-0.14708734,0.015346921,-0.6729606,-0.33581156,0.22673622,0.23732448,0.17867254,-0.12805822,0.014079497,0.18170562,-0.046261292,0.39046186,-0.2996705,-0.021027248,0.14749655,0.23175356,0.18055342,0.050400797,-0.43107656,0.34323943,-0.59926564,0.098825805,-0.23923436,0.16651358,-0.2764785,-0.26763424,0.29354084,0.087071076,0.35429347,-0.36223274,-0.32374543,-0.27548912,0.5909218,0.14487287,0.122851536,0.6708581,-0.27188018,0.15257543,0.08285473,0.47268465,1.1479132,-0.20672959,-0.14456911,0.35359028,-0.34689835,-0.672967,0.2839241,-0.3844325,0.109252185,-0.10932917,-0.36888486,-0.67807204,0.29041815,0.16795756,0.07837363,0.28198746,-0.6720848,-0.20040314,0.3829923,-0.30218267,-0.15591073,-0.32826048,0.06780377,0.5564964,-0.19138162,-0.4981815,0.07268643,0.16738357,-0.18751346,-0.6818567,-0.051197145,-0.42160618,0.301726,0.054735914,-0.33104375,-0.12887147,0.10434754,-0.43235797,0.0036857473,0.35945213,-0.2843826,0.136183,-0.36089438,-0.0702966,1.0031434,-0.16066067,0.2498009,-0.5284487,-0.37396383,-0.90628743,-0.18268728,0.8011819,-0.0035050923,-0.037440635,-0.6384675,0.0070277224,-0.02459822,-0.23518816,-0.115139775,-0.3415158,0.50415057,0.16248947,0.29291147,0.04253556,-0.72697884,0.1999952,0.06850476,-0.22041321,-0.59325594,0.46021098,0.054592464,0.94905853,0.06212791,0.042641215,0.23927683,-0.538054,0.102845795,-0.22177154,-0.24430513,-0.61285,-0.021179523 +870,0.3612019,-0.3794754,-0.49244398,-0.23780611,-0.38185838,0.2932698,-0.19617644,0.204926,0.21012588,-0.33365917,-0.11840384,-0.10143815,-0.097650595,0.2519011,-0.16669479,-0.6974842,-0.0073494315,0.13124256,-0.6519798,0.37783384,-0.62222517,0.31471935,0.08482721,0.30763358,0.02648755,0.39774007,0.108518705,-0.08809121,-0.25067723,0.09895039,-0.061648242,0.3630113,-0.7058405,0.2567466,-0.14254338,-0.25758678,-0.08990537,-0.4375884,-0.2790089,-0.7286488,0.25206983,-0.8763594,0.64157027,-0.19859764,-0.41154665,0.15753298,-0.042377293,0.13722639,-0.4053636,0.17311195,0.11617478,-0.28963515,-0.1140617,-0.16467169,-0.28019089,-0.44964993,-0.5614072,0.085313715,-0.69390565,-0.13969776,-0.28475598,0.27305165,-0.3116068,-0.033867225,-0.19447695,0.4303236,-0.49739826,0.13622363,0.1547307,-0.27199697,-0.072382405,-0.49885464,-0.112537794,-0.13525292,0.18072285,0.0067910594,-0.42941815,0.15307905,0.34533247,0.6520481,0.13963166,-0.2851534,-0.17198128,0.019405905,0.1794359,0.4411234,-0.06686536,-0.18503284,-0.40316167,-0.11510129,0.44870603,0.07930143,0.07377424,-0.44232872,0.033061292,0.1418026,-0.17057416,0.34689146,0.5904737,-0.46475682,-0.23741649,0.42176056,0.40661043,0.05948829,-0.1256896,0.15580983,-0.096821025,-0.5615421,-0.23330039,0.1836765,-0.09450171,0.6578804,-0.2393788,0.11908182,0.7993828,-0.26509267,0.04728296,-0.019525561,-0.09731437,-0.03388693,-0.25493482,0.06509214,0.05368433,-0.45526168,-0.16387396,-0.21322997,0.6396026,0.2042906,-0.6933425,0.4308252,-0.32980585,0.17691714,-0.07661389,0.7156531,0.8456679,0.5529001,0.22100379,0.7624762,-0.4258372,0.14975777,-0.11491369,-0.40012646,0.2709547,-0.26204062,-0.007115436,-0.43829352,0.09564037,0.040448487,-0.07383386,-0.09878132,0.41875374,-0.52801144,-0.03478328,-0.051063314,0.5882568,-0.46038678,-0.2289376,0.982537,0.8786898,0.89456266,0.13354515,1.5375848,0.55764693,0.047247674,0.05827781,-0.349865,-0.55047303,0.14046016,0.31767684,-0.010572227,0.4327907,0.18011954,0.06564278,0.5343723,-0.36861342,-0.06931522,-0.13650389,0.39212334,0.038111653,-0.01745144,-0.33488634,-0.16159157,0.27639225,0.11325482,0.02684116,0.22951078,-0.28722066,0.441479,0.10459292,1.3097876,0.0044035157,-0.042587463,-0.04952372,0.3806015,0.23057862,-0.09764312,-0.025762456,0.37936977,0.31983224,-0.13493237,-0.5844866,-0.052753367,-0.17870817,-0.37334946,-0.20783901,-0.4373928,-0.09728932,-0.30745548,-0.4750012,-0.19208437,0.09677842,-0.34463766,0.53369105,-2.3397174,-0.32174933,-0.11724392,0.4275456,-0.19251664,-0.40697297,-0.2492876,-0.4723306,0.12717363,0.40572277,0.3089634,-0.7095758,0.45521635,0.36433056,-0.28618437,-0.18485017,-0.7496712,0.09914236,-0.1112651,0.50232285,-0.023152268,-0.21021077,-0.14100905,0.025562637,0.71474046,0.026203323,0.043961048,0.25103524,0.5313181,-0.048213903,0.4298018,0.16014789,0.60622126,-0.14103927,-0.22730403,0.48952726,-0.35729307,0.34532508,-0.013321028,0.17534736,0.4311809,-0.48709646,-0.8068478,-0.6412132,-0.18593706,1.3144208,-0.44948426,-0.50803894,0.14168268,-0.2592277,-0.23535937,0.08331296,0.37034076,-0.112821564,0.036243808,-0.706369,-0.035384815,-0.008542311,0.22179273,-0.1284663,0.26822558,-0.27143613,0.6696491,-0.2580529,0.4371067,0.2720116,0.2497368,0.0006229401,-0.5219857,0.10965785,1.0041093,0.4669313,0.07484484,-0.113097,-0.27536574,-0.09217679,-0.20096307,0.047826912,0.5838397,0.6908315,0.05316413,0.08737807,0.48761642,-0.14393303,0.010325523,-0.23294483,-0.26106295,-0.12224846,0.23973401,0.5649859,0.59960705,-0.22187993,0.43887225,-0.19034186,0.23951057,-0.0038198412,-0.6430787,0.5246662,0.79024345,-0.2710274,-0.13902552,0.5042885,0.35093102,-0.47897014,0.45786476,-0.56966454,-0.27921954,0.6266413,-0.16405174,-0.40893167,0.14767967,-0.33727124,0.098919824,-0.91624427,0.4683601,0.13794515,-0.5467948,-0.47566277,-0.24052317,-3.7031791,0.050581302,-0.16316275,-0.017350078,-0.115461215,-0.23173693,0.33917183,-0.48870823,-0.5005133,0.029516084,-0.004944662,0.4684121,-0.177275,0.090345345,-0.34137586,-0.1930811,-0.24666883,0.19670771,0.13751379,0.2695932,-0.050009314,-0.36804062,0.14121482,-0.4257487,-0.46021497,0.018528657,-0.6286095,-0.57486165,-0.053235266,-0.43505254,-0.25199553,0.69308007,-0.3881754,-0.034897838,-0.40625226,0.082602195,-0.21348858,0.47783464,0.10413191,0.108411506,0.18982433,0.008031368,0.015317949,-0.28866196,0.26470527,0.06506743,0.309146,0.5381903,-0.19003925,0.17545849,0.6326247,0.49944422,-0.103972316,0.82774514,0.26107877,-0.17445685,0.36622837,-0.22290757,-0.31249905,-0.76408845,-0.43912098,-0.12819055,-0.5417202,-0.41355613,-0.03987938,-0.4163727,-0.99248415,0.52443117,0.026410531,0.23674959,-0.13874832,0.5334911,0.53361714,-0.06428554,0.1205971,-0.15360655,-0.33157313,-0.5317781,-0.5285009,-0.6788577,-0.60585856,0.26533833,1.1657618,-0.12044347,-0.122370295,0.05954395,-0.2679883,0.004872036,0.025608802,0.13224736,0.120013334,0.43847695,-0.15021636,-0.81165856,0.25055018,-0.19897659,-0.05155853,-0.65697396,0.097493514,0.8241308,-0.71425843,0.63989806,0.39581004,0.2883527,0.2174143,-0.4509646,-0.29872516,0.010716279,-0.20126596,0.622226,0.2271431,-0.73558587,0.5902535,0.16079617,-0.1390496,-0.7205916,0.4230592,-0.018653555,0.033235263,0.06969704,0.41639563,0.11937353,-0.13443114,-0.13193905,0.12015821,-0.60808676,0.35656324,0.41800037,0.00499415,0.49090534,-0.07788303,-0.37720743,-0.74240327,-0.24426524,-0.5335833,-0.29716232,-0.0044457037,0.0645661,0.17172074,0.0876288,0.07432509,0.5707162,-0.30226675,0.08056893,-0.009891268,-0.23793712,0.39362237,0.6679032,0.3081853,-0.44089714,0.5735357,0.13169344,0.118055,-0.049726546,-0.032046963,0.45339915,0.26075587,0.3251921,0.070683055,-0.060055036,0.15580289,0.75559956,0.26133192,0.5013904,0.12896381,-0.3758803,0.4255605,0.23419565,0.25677806,-0.18896598,-0.25206974,0.07615705,0.019973235,0.27423713,0.37087432,0.2707995,0.347091,-0.069243096,-0.10052952,0.13419007,-0.0021312158,0.03817359,-1.1495037,0.074465275,0.30830634,0.6244047,0.4045275,-0.07299106,0.060022224,0.43244895,-0.3661154,0.06643618,0.40530345,-0.0017443498,-0.38505313,0.44406313,-0.5947744,0.5139302,-0.2683608,0.094434425,0.13278441,0.38634837,0.32125956,1.0015963,-0.07442712,0.007107506,-0.0515107,-0.16735314,0.18282191,-0.41534302,0.08096797,-0.47143373,-0.29427388,0.72792435,0.40532506,0.37558678,-0.33446413,-0.09194859,0.0043834904,-0.24892071,0.25772035,-0.12499378,-0.021537812,-0.22287728,-0.56809837,-0.40154666,0.4466693,-0.06480965,-0.03440772,0.107112154,-0.39667082,0.29297304,-0.2649807,-0.13978292,-0.043818224,-0.63251466,-0.18224014,-0.24758355,-0.70788616,0.31583348,-0.17321688,0.13827366,0.23430684,-0.03476264,-0.42938992,0.1393011,0.024019908,0.793209,0.16823177,-0.23716916,-0.31567627,0.07475091,0.46451092,-0.39941806,-0.047859598,-0.29139945,0.23489143,-0.43825704,0.43593505,-0.2533181,-0.34061283,0.022176782,-0.07005746,-0.04217837,0.4178297,-0.21653035,-0.21463647,0.18119873,-0.0017633438,-0.3517452,-0.039223652,-0.40515786,0.23316672,0.0355335,-0.06294889,0.0054436405,-0.25104058,-0.079574265,0.4240199,0.1134919,0.12276159,0.37912673,-0.11064114,-0.44338125,-0.12212517,0.05022413,0.5373523,0.1077059,-0.11434433,-0.30970442,-0.4076619,-0.33532685,0.38919133,-0.13802633,0.16821764,0.1437458,-0.48823798,0.8667739,0.21797766,1.3215357,0.06366827,-0.37534952,0.12940067,0.57315814,0.094245195,0.12514938,-0.3986541,0.89608234,0.6204722,-0.1822811,-0.13389844,-0.52982014,-0.27583537,0.29168335,-0.30099133,-0.20876391,-0.2524828,-0.84453315,-0.2946308,0.184646,0.10141299,0.097190715,0.07122096,0.051491704,0.09308157,0.09821494,0.43430054,-0.53104717,-0.11737699,0.36571977,0.24826019,-0.042390432,0.23291384,-0.3174499,0.46460012,-0.6569523,0.15622562,-0.35955673,0.112845235,0.0027732134,-0.24982496,0.29578787,0.1292957,0.32471687,-0.37698373,-0.41765416,-0.36765185,0.7062417,0.023070227,0.25063145,0.7027285,-0.2798294,-0.16272245,0.054515436,0.5330996,1.4083598,0.0772551,0.23331784,0.38641292,-0.34679887,-0.62277377,0.22972336,-0.35562402,0.1322594,0.0030284086,-0.37087566,-0.4546273,0.34796107,0.15652488,0.014658654,0.13177072,-0.6428427,-0.2091836,0.34009182,-0.23612596,-0.15277033,-0.20297363,0.2741905,0.74601537,-0.541328,-0.19993828,0.0035762151,0.44612128,-0.3377482,-0.55491865,-0.08517415,-0.32722777,0.4398815,0.16905056,-0.40848133,-0.010690415,0.20262617,-0.43278953,0.012992438,0.43903923,-0.2707873,0.11567987,-0.091167815,-0.071531154,0.9175331,0.11891675,0.19446942,-0.6472777,-0.5340815,-1.0162246,-0.27057108,0.1368098,0.19301417,-0.0997413,-0.66266185,-0.08444094,-0.14555046,-0.17548452,0.14432281,-0.7942862,0.51188993,0.11446615,0.5608269,-0.022638949,-0.91020447,-0.059924714,0.19589217,-0.17246488,-0.54999185,0.67992646,-0.1623113,0.7235034,0.115970105,0.08563945,0.014147094,-0.6090732,0.20091139,-0.40080777,-0.1282662,-0.6879057,0.08289606 +871,0.38643676,-0.27282193,-0.576538,0.011148861,-0.23685251,-0.071556084,-0.2044688,0.36800736,0.2641115,-0.47068092,-0.14873503,-0.03886286,-0.005298209,0.32796243,-0.042923715,-0.47163847,-0.064024225,0.28877357,-0.48655,0.7778186,-0.29014695,0.08413558,-0.16541219,0.49118713,0.061050005,0.3096608,0.0571728,-0.043051325,-0.06800563,-0.07214535,0.17680416,0.26814002,-0.8037523,0.23774782,-0.06546961,-0.3241437,0.06404417,-0.37103578,-0.32797,-0.75328964,0.08583534,-0.7099875,0.5762595,0.1342178,-0.307614,0.16786382,-0.15804133,0.36732265,-0.3112269,-0.043479256,0.16462828,0.011088382,-0.12433147,-0.14619146,-0.085868195,-0.21250364,-0.5258075,-0.040332492,-0.3393521,0.0483654,-0.28122965,0.01046407,-0.34850687,-0.24013267,-0.10408772,0.6366996,-0.43630534,-0.012568325,0.25444075,-0.0033725272,0.41676214,-0.53234696,-0.03676198,-0.28649816,0.14231963,-0.2033022,-0.3125831,0.17673884,0.21651186,0.41942376,-0.07478692,-0.12893832,-0.2853011,0.0555828,0.3871222,0.35636234,-0.112877525,-0.34410244,-0.101673566,-0.010709522,-0.07167042,0.120866016,0.21562117,-0.41211334,-0.10632867,0.00427402,-0.02223611,0.33107564,0.46836612,-0.1370472,-0.13826789,0.22045414,0.7002822,0.2681432,-0.16720179,-0.040678732,0.08008854,-0.4898632,-0.24041308,0.08379751,-0.21920887,0.59762585,-0.18784444,0.19715089,0.5675277,-0.15501095,-0.23440757,0.11923942,0.0120100975,-0.010322809,-0.3426062,-0.36970058,0.4147693,-0.47274715,0.3802099,-0.040829126,0.47858793,0.2929087,-0.6986122,0.2693426,-0.5930339,0.16109425,-0.11005073,0.545618,0.723538,0.35215744,0.4217024,0.78954124,-0.5176803,0.1061935,0.02745819,-0.34058857,0.11397072,-0.15742084,-0.15101402,-0.53889877,-0.11461584,-0.08295286,-0.31192276,0.011475036,0.03014238,-0.49041998,-0.06798646,0.23020035,0.7165317,-0.21561721,-0.06215282,0.6219091,1.0869292,1.0391897,0.22319911,1.2669251,0.14110655,-0.17684203,0.1833506,-0.12570614,-0.8295011,0.2543146,0.38492393,-0.1246965,0.33694395,0.146874,0.04034676,0.6123961,-0.5679823,0.10976812,-0.17417742,0.33993164,-0.021429475,-0.26863283,-0.4753534,-0.15436706,-0.21371351,0.073484235,-0.21262869,0.20935914,-0.07460983,0.23628967,0.10400491,1.5333924,-0.16055888,0.06603742,0.115060166,0.4117886,0.23322494,-0.32011482,-0.23650695,0.31711662,0.4292928,0.22691661,-0.46210515,0.12653813,-0.13639596,-0.36091724,-0.105712295,-0.22374581,0.060619377,-0.031002581,-0.2960193,-0.18184185,0.017097564,-0.296149,0.51692873,-2.7169337,0.039892357,-0.07529789,0.35318258,-0.24776667,-0.28950804,-0.07893301,-0.32554516,0.40152076,0.34184998,0.47577918,-0.6722516,0.3167608,0.48765263,-0.66976917,-0.015981985,-0.6781752,-0.25537407,-0.062687986,0.34080264,0.14579202,0.13245176,0.03772766,0.25747854,0.43135265,0.03673716,0.10710362,0.21341212,0.16145737,-0.031039778,0.45982155,0.10619182,0.40211377,-0.2130314,-0.17352964,0.24857286,-0.22151569,0.31738552,-0.09417237,0.07618358,0.47205025,-0.35569125,-0.88834244,-0.73292947,-0.22065577,1.1104901,-0.14484128,-0.31213093,0.28266767,-0.5552783,-0.27390492,-0.042489387,0.3749285,-0.044518284,0.010188373,-0.94781363,0.06458388,-0.052221637,0.2742046,0.06482469,-0.11351147,-0.5937761,0.6017582,0.006788641,0.40407303,0.64088434,0.1578945,0.07434508,-0.40297222,-0.059743505,0.9317805,0.38497427,0.09257217,-0.34305206,-0.1411368,-0.3249081,0.17880018,0.05438171,0.43416235,0.69297975,-0.26831394,0.12237021,0.23209716,0.019988898,0.04564619,-0.12185109,-0.31891567,-0.033243172,-0.045252893,0.51013154,0.826903,-0.13595065,0.3584902,-0.052039407,0.15529118,-0.09575044,-0.4554863,0.6600123,0.9172927,-0.12903307,-0.19682892,0.62376046,0.49401143,-0.371965,0.5261172,-0.44347417,0.007871408,0.34278825,0.036141172,-0.32148784,0.08678666,-0.38743693,0.35198233,-0.91020465,0.3728798,-0.4251035,-0.5585907,-0.5016321,-0.11325802,-3.252972,0.32887334,-0.28849655,-0.18509248,-0.14077918,-0.05515343,0.36478618,-0.65470636,-0.66859555,0.2764748,-0.048509035,0.599336,-0.19104345,-0.117608026,-0.12921637,-0.4333744,-0.30265525,0.18995704,0.24776694,0.2610578,-0.015026226,-0.59636354,-0.2605034,-0.16464113,-0.4290209,-0.036224265,-0.58606666,-0.29665348,-0.19188404,-0.5876284,-0.26796934,0.6360798,-0.08882075,-0.052297253,-0.2567108,-0.00011730882,-0.09473275,0.28740317,-0.04031241,0.24509001,-0.012663671,0.0061975466,-0.12822428,-0.15519184,0.0021177302,0.05031275,0.12691617,0.2042525,-0.12367822,0.2721345,0.567824,0.8237943,-0.2496222,0.9697556,0.7786281,-0.20366882,0.2129897,-0.26286405,-0.25877017,-0.61894864,-0.40534478,-0.16704601,-0.40998718,-0.53971857,0.15267242,-0.2889064,-0.7801284,0.76284784,0.02563912,0.21342681,0.19042364,-0.028769385,0.46415168,-0.33638403,-0.101252094,-0.042166874,-0.1895446,-0.6422885,-0.20848638,-0.57341677,-0.40044215,0.1236394,1.0827061,-0.40321332,0.098859005,0.13740103,-0.32046416,0.18354271,0.26368183,-0.10562979,0.09889562,0.45524156,0.23481542,-0.5635833,0.3296564,0.040436737,-0.12683335,-0.6420908,0.27949265,0.76275563,-0.6331468,0.7338005,0.24817356,-0.110228054,-0.10990524,-0.5896425,-0.32732788,-0.03332236,-0.23590319,0.45457026,0.3248668,-0.81493056,0.18983921,0.39807114,-0.2706862,-0.67292523,0.6442317,-0.13318445,-0.19373606,-0.0940458,0.3371486,-0.16801713,0.060780928,-0.29589367,0.32653892,-0.28534296,0.0897598,0.36936876,-0.1572884,-0.022845205,-0.15557718,-0.031067688,-0.81762946,0.0662232,-0.5126282,-0.2086017,0.43656936,0.09164233,-0.058371656,0.083652884,0.40577012,0.28834504,-0.32295433,0.16183461,-0.17272152,-0.4159061,0.4423359,0.5987335,0.31614187,-0.2864586,0.6100529,0.006597434,-0.19185,-0.26864845,0.023978243,0.3819819,-0.061611913,0.38837445,-0.051481918,-0.12475158,0.0031200922,0.7245362,0.0012747967,0.5493826,-0.03253472,0.01809888,0.20211378,0.16714689,0.37362942,-0.0017484243,-0.45315212,0.266748,-0.21389452,0.16922775,0.2715717,0.15654701,0.2021119,-0.056555774,-0.39312384,-0.038242437,0.18396832,0.25371727,-1.423671,0.5446385,0.16347234,0.7340101,0.69270813,0.15079287,-0.051319104,0.6340528,-0.06912758,0.17348267,0.4582814,-0.14392287,-0.49707377,0.4208365,-0.7365828,0.34379512,0.069278315,0.027090427,0.058602657,-0.204642,0.43381497,0.8343949,-0.19898693,0.021154316,-0.14458156,-0.16195314,0.06281178,-0.37272522,0.10447923,-0.55407405,-0.45491442,0.65489125,0.64105946,0.50507724,-0.2776987,0.028338332,0.17792228,-0.089558125,0.2885532,0.073294386,0.09098614,0.20819491,-0.5880397,-0.11142925,0.47414458,-0.30199975,-0.0015872625,-0.14978136,-0.20141004,0.264297,-0.1764063,-0.042283025,-0.010670872,-0.78126615,-0.0955269,-0.432356,-0.30350512,0.6081878,-0.17186883,0.18681486,0.044658713,0.04896683,-0.21112162,0.5490978,-0.12018846,0.5916208,0.009832584,-0.0038489287,-0.22216323,0.29619166,0.17176726,-0.12697464,-0.0030061924,-0.2947219,0.106891945,-0.48143432,0.36048162,0.164317,-0.41482565,0.02534031,-0.17474915,-0.020794097,0.5791563,-0.119436875,-0.3566615,-0.053753827,-0.30158827,-0.19751358,-0.41309193,-0.07755875,0.38993958,0.15440185,0.042361088,-0.022475008,-0.0021575002,-0.016390113,0.26441202,0.20728216,0.30006218,0.2743302,-0.07872427,-0.45927054,-0.17580615,0.15186185,0.4309591,0.049414244,-0.22586186,-0.16424039,-0.4398679,-0.4879314,-0.087393954,-0.11126844,0.4847678,0.06073361,-0.13298097,0.7325678,0.28653625,1.1986117,-0.11004294,-0.39774,0.033536337,0.5031407,-0.028066112,-0.09946552,-0.35268694,0.8718293,0.48324144,-0.27636942,-0.112613216,-0.4132621,-0.16152675,0.102438085,-0.13181037,-0.012173369,0.0145496195,-0.6740874,-0.091021545,0.27935898,0.31342375,0.20060775,-0.16637413,0.12331946,0.19425748,-0.06505399,0.17709115,-0.37046117,-0.06057425,0.3723535,0.23954126,0.07611801,0.047247376,-0.3530532,0.270759,-0.4339456,0.056707166,-0.14525384,0.15173908,-0.2484394,-0.37931442,0.18178703,-0.047797665,0.41718096,-0.47699028,-0.24552606,-0.35807163,0.5322753,0.28264517,0.10253679,0.66817343,-0.24872929,0.025372963,0.03182241,0.38694313,0.80249333,-0.37338415,-0.054117974,0.4230059,-0.3104504,-0.5655072,0.17043771,-0.31388754,0.2642319,-0.1200348,-0.27932087,-0.73158073,0.1038338,0.07650717,0.0024978747,0.13060643,-0.73493415,-0.22049235,0.20442155,-0.24630645,-0.1081226,-0.24966274,0.050163325,0.5964161,-0.3042367,-0.52966845,0.056414723,-0.032285057,-0.11389963,-0.35487345,-0.15605897,-0.24283153,0.20994337,0.14229962,-0.497639,-0.109315544,0.092839554,-0.5184077,-0.022750936,-0.033731528,-0.28701302,0.10944777,-0.35580984,-0.11180456,0.9974805,-0.3341988,0.2294057,-0.25117022,-0.4826358,-0.84791535,-0.27194956,0.5280645,0.040429857,0.049465537,-0.5183448,0.18495652,-0.058038525,0.09382549,-0.014046685,-0.37314722,0.4253741,0.11097563,0.286972,0.01813161,-0.87051845,0.21106526,0.19576846,-0.042051055,-0.5520513,0.5216167,0.029344132,0.84999347,0.06483504,0.18659592,0.030220866,-0.5033744,-0.05406517,-0.1484206,-0.116167866,-0.5574931,-0.054141197 +872,0.5680411,-0.19688314,-0.41512102,-0.066310905,-0.49773362,0.16393623,-0.19031854,0.46010488,0.11544874,-0.4761122,0.039388377,-0.13505717,-0.15292683,0.34939173,-0.16376439,-0.48678476,-0.14998601,0.22589396,-0.5313652,0.6089529,-0.32581264,0.34912592,0.12103322,0.3140534,-0.06422081,0.102420315,0.15727152,0.0076728244,0.07606388,-0.2068576,0.059790563,0.28772718,-0.86129916,0.413524,-0.12449778,-0.48603502,0.052444085,-0.2834709,-0.30991086,-0.5870945,0.18849787,-0.7595752,0.5487263,0.07594151,-0.4240001,0.20280066,-0.06436578,0.22824964,-0.1317885,0.112694494,0.29199058,-0.0018737555,0.014403498,-0.3635168,-0.10394732,-0.3704037,-0.41993085,-0.08190677,-0.5580529,-0.10812133,-0.24288477,0.2718279,-0.17811184,0.06486772,-0.3363575,0.0065888762,-0.53647506,-0.12766708,0.11668787,-0.01355772,0.33900833,-0.52024025,-0.084430836,-0.20038176,0.02260511,-0.17389409,-0.17955644,0.40786943,0.16700153,0.6706957,-0.10777933,-0.08356847,-0.18435195,0.024966065,0.16215111,0.5338221,-0.37987173,-0.063485265,-0.21146835,-0.009627084,0.32856527,0.070068456,0.2145913,-0.3806778,0.011282965,-0.23898531,-0.13670436,0.24858217,0.41355646,-0.35724714,-0.21197675,0.3407089,0.43908718,0.20047079,0.021682035,0.13567641,-0.05735837,-0.4067019,-0.18545303,0.06493382,-0.27540204,0.18691579,-0.0030661125,0.040064834,0.5787484,-0.08427949,0.18668184,0.06518114,0.0039853095,-0.11622012,-0.19468516,-0.40003374,0.34211075,-0.6100576,0.030794632,-0.15886977,0.6369562,-0.011235169,-0.67441446,0.22129984,-0.63158786,0.14172226,-0.15171137,0.5410971,0.6725498,0.49099594,-0.06942879,0.7740886,-0.5458095,0.07720291,-0.21037786,-0.06761102,0.3358222,-0.19534524,-0.06627132,-0.53551686,0.019847551,-0.058505006,-0.087615155,-0.013416698,0.45543292,-0.5863407,-0.149054,0.12620397,0.67248195,-0.36385208,0.08267657,0.53638905,1.2605488,0.98190373,0.12314167,1.1415963,0.43662232,-0.27750918,0.07030772,-0.068501085,-0.7713857,0.17756104,0.6185226,0.23000176,0.34167126,0.18475416,0.13015474,0.28216502,-0.5069859,-0.032656822,-0.26738957,0.27568057,-0.23248409,-0.23708752,-0.31792322,-0.18246746,-0.023715062,0.10745175,-0.27338836,0.29739633,-0.3034172,0.16740383,0.24877796,1.5154127,-0.12181493,0.02959993,0.19542034,0.2516588,0.24217527,-0.10528013,0.03498514,0.22680052,0.24213137,0.040417958,-0.40316072,0.14749005,-0.18511565,-0.6005216,-0.1491622,-0.089359194,-0.065832935,-0.11151751,-0.39009234,-0.31783003,0.094222754,-0.20708999,0.43489882,-2.1600602,-0.031380393,-0.11890054,0.36367163,-0.22352889,-0.2680465,-0.15586837,-0.16111882,0.4278766,0.47037715,0.3388935,-0.50334793,0.25317305,0.4503238,-0.41775197,0.029523535,-0.4888608,-0.19619678,0.0073732287,0.37129375,0.13404298,-0.16413823,0.060296293,0.21999055,0.38898516,-0.10473878,0.14400618,0.2809887,0.33369058,-0.11100796,0.3868317,0.1582912,0.34179497,-0.23592286,-0.32202616,0.54077494,-0.2519459,0.2949703,0.19860874,0.1211554,0.37917534,-0.5439407,-0.79315454,-0.737481,-0.35997263,1.1702014,-0.2850946,-0.46680102,0.21888217,-0.029728157,-0.29223326,0.02995737,0.3063044,-0.09453591,0.023647865,-0.9284942,-0.060099375,-0.17211995,0.44564793,0.093358494,-0.11204632,-0.46024925,0.7847068,-0.12437517,0.47234187,0.4324613,0.23332907,-0.033796422,-0.39775386,0.044910487,0.96281177,0.5770891,0.1400313,-0.2518295,-0.096978165,-0.07331805,0.110622235,0.13852948,0.35453606,0.70594394,-0.16596557,0.102970004,0.24225296,-0.035085298,-0.09736948,-0.19213514,-0.39301142,0.08441803,0.20234753,0.53615874,0.7675634,0.029678106,0.2286095,-0.2696523,0.37306085,-0.029251782,-0.623351,0.28493086,0.9170113,-0.055987738,-0.20826659,0.7596409,0.50500786,-0.26195818,0.61774695,-0.7710296,-0.46322414,0.19412568,-0.122854635,-0.3593216,0.21283212,-0.3277235,0.14469312,-0.8800701,0.53350157,-0.30298325,-0.31358275,-0.5522832,-0.23395291,-1.8796829,0.17704575,-0.11987273,-0.0677527,-0.029084992,-0.12483342,0.4866915,-0.57386947,-0.6216012,-0.0323112,0.09512458,0.39281404,0.05829878,0.08030366,-0.09790948,-0.4290307,-0.15952845,0.3500837,0.20765132,0.21872291,-0.07937377,-0.43850031,-0.19537713,-0.13298532,-0.13824868,-0.0683533,-0.6770202,-0.5499952,-0.23690867,-0.31046903,-0.0100399135,0.5311629,-0.24881154,-0.08659135,-0.23577046,-0.13497172,-0.07129042,0.20666978,0.1849278,0.1899952,-0.018025469,-0.093825705,-0.30469158,-0.41783687,0.16549852,0.26387534,0.13862447,0.45078027,-0.36844304,0.03013765,0.5987881,0.5184024,-0.29242194,0.7362215,0.52875763,-0.35797495,0.25623938,-0.15059671,-0.31486833,-0.68310285,-0.37752718,-0.22793409,-0.37842697,-0.3133547,0.10307108,-0.3458637,-0.6884594,0.66102093,-0.13408206,0.10289162,0.13340326,0.168682,0.35281327,-0.15884785,-0.22952054,-0.24280144,-0.20211914,-0.49586505,-0.50712794,-0.65601027,-0.42160282,0.11649551,1.3881528,-0.1690165,0.18084703,0.3340175,-0.07726245,0.09312126,-0.017264394,-0.032554496,0.031126218,0.49702698,0.15308465,-0.65677124,0.38936803,0.129575,-0.038907092,-0.5166342,0.19638488,0.5405532,-0.6785067,0.2964768,0.2018465,0.22468756,0.14611222,-0.7170103,-0.096593544,0.053780403,-0.28980047,0.41931456,0.23185153,-0.7313459,0.40672508,0.43171388,-0.43356067,-0.6581811,0.37251434,-0.02002013,-0.16617484,-0.027449373,0.21010621,-0.014426947,0.05704047,-0.0072805206,0.41271183,-0.47231016,0.42869598,0.24423742,-0.1156242,-0.040903017,-0.3076309,-0.29654709,-0.70748174,0.36886698,-0.29912513,-0.48016423,0.19464898,-0.08021784,-0.2787995,0.3237933,0.4034167,0.4939747,-0.27493572,0.115865715,-0.13952175,-0.31556764,0.5655081,0.44909233,0.5591492,-0.27620333,0.4580372,0.024953267,-0.08913699,-0.3752623,-0.02731278,0.4998174,-0.07216326,0.0812559,-0.11203248,-0.027317159,0.34991413,0.9319933,0.09029231,0.13072957,-0.15387456,-0.1922863,0.19686618,0.16350287,0.07394292,-0.22364657,-0.530015,0.21183547,0.08574549,0.13051568,0.5042151,0.14588708,0.19177668,-0.21060398,-0.23619793,0.12795761,0.25025237,0.08393821,-1.3529953,0.13368313,0.034732666,0.56229395,0.68082964,-0.016545385,0.11261659,0.59341234,-0.2353305,-0.013777216,0.31166044,-0.17365967,-0.38673264,0.36402422,-0.65976244,0.14337324,-0.025627578,0.14426604,0.10485992,0.06753692,0.342666,0.8199456,-0.11816623,0.1418181,-0.096274935,-0.2783249,-0.094200835,-0.16422853,0.10007751,-0.2982351,-0.51580733,0.6639974,0.40695208,0.4469203,-0.31240806,0.058405634,0.07022057,-0.33212775,0.42303428,0.050320227,-0.030622933,-0.10667532,-0.28490517,-0.057650175,0.56845206,-0.077550456,-0.14609824,-0.026858052,-0.2660289,0.24286526,-0.05833737,-0.06654722,0.03550096,-0.67379695,-0.04067099,-0.58953726,-0.003925604,0.24586357,0.031031083,-0.066557534,0.109595194,-0.015204533,-0.17385677,0.29635122,0.06001755,0.7393478,0.1420234,-0.24519081,-0.13214894,0.30146477,0.06002393,-0.1776201,0.07237884,-0.084357776,0.15316424,-0.92026335,0.34943777,-0.09581215,-0.33128828,0.33000755,-0.14757603,0.051127788,0.275981,-0.072168924,-0.3280524,-0.022642668,0.07917192,-0.2642864,-0.27997574,-0.27211106,0.15060812,-0.015975079,-0.063390575,-0.111697085,-0.15849486,-0.08700765,0.37120253,0.09472397,0.3415217,0.3042606,0.036311913,-0.6340377,0.28228986,0.2188111,0.32604036,-0.09110559,0.19017534,-0.1546093,-0.49229005,-0.34183377,0.18349305,-0.3416972,0.3299128,0.0032244197,-0.33079422,1.0069797,0.18384887,1.0956672,-0.08214942,-0.17609318,-0.012480755,0.48837966,-0.16872144,-0.07479371,-0.3850858,0.90811324,0.85499996,0.02529356,-0.12604076,-0.20907094,-0.32429692,0.06879817,-0.23982498,0.017627554,-0.008147617,-0.91810477,-0.31326997,0.065455906,0.3796955,-0.027176203,-0.09944666,0.12123701,0.16264275,0.0573586,0.19867441,-0.4768886,-0.22714853,0.15229374,0.26705283,-0.092168175,0.029357016,-0.52218366,0.34497464,-0.6975244,0.12902507,-0.327445,-0.0054258504,-0.04311331,-0.2639261,0.003195871,-0.09260075,0.20798354,-0.36354002,-0.3767878,-0.005093187,0.59701216,-0.045297764,0.23239236,0.7351988,-0.31549045,0.29343128,-0.07832333,0.27332714,1.0831767,-0.27504748,-0.12362609,0.26639682,-0.3743571,-0.50583655,0.25766888,-0.18415897,-0.007139985,-0.12311951,-0.49167413,-0.33445802,0.28832075,0.07479049,-0.08989021,-0.07303046,-0.5526548,0.09875013,0.30114526,-0.2869778,-0.3146407,-0.20907858,0.23975655,0.6097273,-0.24423131,-0.5189925,0.3130263,0.28595543,-0.4384913,-0.57511765,-0.1130795,-0.4443508,0.19825183,0.15077731,-0.47004816,0.141745,0.17552185,-0.44596064,-0.10659612,0.4011687,-0.26053426,-0.064927794,-0.33602434,0.1826023,0.88452977,-0.12070358,-0.16523646,-0.6165832,-0.58025753,-0.9736678,-0.385236,0.4584602,0.3954583,0.06721805,-0.56485844,-0.056945514,-0.22518247,-0.0076714554,0.13217247,-0.28734502,0.41159683,0.23764655,0.45983836,-0.30521202,-0.7752045,0.15322612,0.10268914,0.021486538,-0.46812385,0.408604,-0.016251108,0.7913013,0.07356674,-0.16585997,0.12542258,-0.78055024,0.16129698,-0.15401635,-0.13322026,-0.7239151,0.13517125 +873,0.59981364,-0.27212232,-0.48513746,0.010088347,-0.2122765,0.118010215,-0.095658146,0.62918764,0.5015588,-0.4369904,-0.4018906,-0.20032363,0.06839024,0.41861776,-0.21400249,-0.69639665,-0.02364474,0.22963186,-0.36167744,0.66576654,-0.22298466,0.40317276,0.3335795,0.32359865,0.110580206,0.13291562,0.27766493,-0.07995002,-0.12987907,-0.26809886,-0.18878074,0.22395955,-0.4848231,0.20078592,-0.37186098,-0.5258371,-0.09433749,-0.73001593,-0.42503777,-0.7331117,0.14083947,-0.9007483,0.6664336,0.13421537,-0.25718188,-0.012789969,-0.13604681,0.26085284,-0.25303027,0.13186178,0.07822227,-0.09873491,-0.04436977,-0.43831074,-0.24388148,-0.33614397,-0.63379115,-0.059574455,-0.36062637,0.12970905,-0.0016855797,0.041773364,-0.34663233,0.09382885,-0.08050611,0.2634529,-0.35488203,0.09910058,0.34669888,-0.2865136,-0.010315508,-0.6048203,-0.21256971,-0.14368282,0.15365522,-0.24495412,-0.39798734,0.3097476,0.2127657,0.56315666,0.041666348,-0.16526559,-0.2204476,0.08917153,0.07595394,0.51070946,-0.3876495,-0.5733429,-0.19097966,0.21143179,0.570705,0.18644387,0.14448418,-0.35451674,-0.038813096,-0.25479704,-0.20315476,0.33881998,0.5742538,-0.36591578,-0.09305241,0.30081883,0.33634248,0.23818974,0.09444117,-0.056498636,0.04018638,-0.6584841,-0.12895124,0.02962567,-0.30883107,0.5370448,-0.12983352,0.16389008,0.5024321,-0.06433903,-0.017089123,0.18156135,0.11064663,-0.22323905,-0.13375562,-0.35180536,0.41912827,-0.46215108,-0.0004894783,-0.24438144,0.6975427,0.25743186,-0.57763183,0.1687675,-0.50484395,0.22122061,0.04273392,0.383777,0.67482406,0.5724789,0.19009681,0.73071903,-0.49508438,0.039616566,-0.11038514,-0.28396386,0.18342078,-0.25282708,-0.13536797,-0.48887467,-0.09561604,0.005411605,-0.23456228,0.6022253,0.3924869,-0.57297313,-0.28026244,0.101199485,0.5669727,-0.26449662,-0.036771204,0.8826165,1.0684844,0.820951,-0.022603827,1.2199042,0.26786172,-0.21083605,-0.084178805,-0.18566424,-0.6131661,0.21566339,0.43886992,-1.1142868,0.5808161,-0.04110944,-0.07644873,0.3358388,-0.3984569,-0.20432164,-0.058143377,-0.16916431,-0.05084823,-0.2679999,-0.499724,-0.2510849,-0.25439048,0.24630082,0.17019413,0.36705044,-0.20996772,0.48566088,0.123248,1.2173009,-0.066476285,0.021413485,0.07923105,0.15920623,0.39629292,-0.12706487,-0.0016216437,0.12744884,0.3526961,0.07033954,-0.491464,-0.09479353,-0.16150872,-0.34651613,-0.07044873,-0.03451016,-0.11499978,0.12886043,-0.35142717,-0.2411583,-0.052911848,-0.1542118,0.4809319,-2.2234838,-0.20600045,0.006103487,0.52661264,-0.14453983,-0.43323827,-0.282537,-0.45637402,0.35244521,0.30453265,0.6028046,-0.75977796,0.12259308,0.42194155,-0.80082995,-0.26139733,-0.5652098,0.17012091,0.01195385,0.21193878,0.06683793,-0.08326142,0.3801168,0.04263257,0.51886815,-0.05254041,0.061777096,0.35053518,0.46104518,-0.09326714,0.3162031,-0.030062286,0.6001759,-0.4910599,-0.28882357,0.27363217,-0.41930532,0.38029662,-0.04531777,0.08239167,0.49644843,-0.49431446,-0.8838287,-0.5311111,-0.035238832,0.9812066,-0.14040278,-0.32203996,-0.054383595,-0.12960716,-0.42042688,0.025963895,0.7440751,-0.21142854,-0.09006443,-0.83982927,-0.2262938,0.061792564,0.21381833,0.051193375,-0.14423192,-0.41732123,0.67287844,0.041112993,0.50841695,0.5967038,0.20870608,-0.23711388,-0.6322395,0.17621505,1.0611402,0.5422718,0.32428688,-0.24541958,0.08883812,-0.22097701,0.19817372,0.09014552,0.5871544,0.6049361,-0.31793955,0.013418411,0.2719659,0.45655325,0.1131321,-0.0639812,-0.2681645,-0.2251035,0.0045886138,0.5748377,0.94218755,-0.26000747,0.11769054,-0.13036406,0.50157845,-0.16695644,-0.64881873,0.73939914,1.0717771,-0.08661467,-0.26608258,0.7679871,0.4800141,-0.02996637,0.4995028,-0.56696486,-0.4210581,0.13475086,-0.25382605,-0.43071344,0.47268304,-0.19205968,0.2629136,-0.90378183,0.48693243,-0.10863459,-0.32682118,-0.5540918,0.08323851,-2.5166488,0.25388134,-0.35021576,-0.17691995,-0.19207168,-0.14398648,0.01910767,-0.72285515,-0.60563374,0.3210318,0.14796285,0.6617361,-0.06315759,0.24817763,-0.086614765,-0.494802,-0.0066426047,0.19219457,0.24824816,0.34923574,0.084967546,-0.45734665,-0.16082601,-0.0057358146,-0.34983885,0.19256608,-0.8653372,-0.29942545,-0.1843298,-0.5830862,-0.123367906,0.55532783,-0.38487217,0.11581006,-0.03892793,0.1821507,-0.0817266,0.17498608,-0.043769073,0.06686744,-0.06907505,0.0638009,0.21691191,-0.12005957,0.394884,0.20040973,0.29237804,0.33901432,-0.3075967,0.08453041,0.49270663,0.8220565,-0.1511304,0.847311,0.56630343,-0.08793058,0.1434197,-0.020149747,-0.3910202,-0.55622005,-0.3816793,-0.10102048,-0.5122666,-0.27113286,-0.03292578,-0.42403194,-0.8729922,0.61836016,0.005237917,0.032001723,0.10593858,0.3007067,0.6778455,-0.46060014,-0.05211984,-0.05648518,-0.21388465,-0.37466773,-0.16487685,-0.6262236,-0.38498116,0.17285495,1.1897702,-0.18956922,0.28177652,0.22501855,0.015482266,-0.0175509,-0.029441252,-0.01750336,0.026766717,0.4810265,0.0024650942,-0.6277684,0.36084077,-0.015008976,-0.35086226,-0.6011624,0.36269692,0.6453994,-0.8355456,0.5023008,0.40789977,-0.009062198,-0.11040974,-0.43872055,-0.26087594,-0.0057718554,-0.24195202,0.35575482,0.30378643,-0.5568958,0.24706991,0.34197518,-0.5390736,-0.59742403,0.53040993,0.084035166,-0.47555736,-0.056440443,0.3230596,0.08605646,-0.022215137,-0.0065201395,0.09776238,-0.3024894,0.38423502,0.1307524,-0.1581388,0.12744083,-0.09648708,-0.08961936,-1.0680767,0.25547823,-0.5154186,-0.33360314,0.27812082,0.042065356,0.03240519,-0.14669529,0.17139716,0.39168575,-0.3948315,0.1645552,-0.19157982,-0.29114738,0.68833995,0.43199635,0.45322797,-0.15676562,0.5272084,-0.023459239,-0.09635988,-0.10688212,0.052969623,0.42881384,0.024535581,0.18953425,0.0013750097,-0.30278876,0.25454986,0.46103057,0.06754124,0.12044648,0.25576302,0.005842132,0.16252008,0.21009743,0.2343512,-0.12083503,-0.59975433,-0.020659596,-0.21182209,-0.011085455,0.48516288,0.045609366,0.19791062,-0.28687626,-0.48949078,-0.054566097,0.119250454,0.44194603,-1.4262894,0.23672497,-0.066994876,0.60870624,0.4272666,0.10022823,-0.12134663,0.5636994,-0.22327049,0.07688948,0.3520966,-0.14967178,-0.40770626,0.40118775,-0.5307847,0.52007526,0.024661863,0.12782831,0.086037755,0.057929445,0.2922592,1.0134293,-0.03717457,0.025675626,-0.08468572,-0.31679776,-0.13996094,-0.4958466,0.09890018,-0.5932911,-0.4502851,0.8422332,0.3411442,0.5795597,-0.25960633,-0.034718283,0.11743683,-0.21551652,0.2620081,0.11250556,0.22112316,-0.11121777,-0.5972853,0.0012760436,0.573111,-0.017164806,-0.004069239,-0.10793391,-0.18631129,0.31077513,-0.3406748,-0.15891756,-0.17916544,-0.8779278,-0.13969465,-0.6787428,-0.4423686,0.43072096,-0.0017273152,0.21368726,0.1481988,0.037455257,-0.19385356,0.59513116,0.2195761,1.140814,0.10585191,-0.3195335,-0.12116599,0.5040168,0.14811994,-0.18689264,0.08414831,-0.07019633,0.083805,-0.5375213,0.48072597,0.13162737,-0.18829615,0.07934555,-0.029910041,0.14564776,0.32748872,-0.29576942,-0.25028816,0.09346441,-0.042585056,-0.40464416,-0.33165792,-0.31175533,0.16712719,0.46201158,0.106291234,0.050334483,-0.11912011,-0.092927195,0.3770976,0.09866169,0.46081546,0.38386372,0.19338454,-0.51941043,0.04323687,0.15077592,0.48278078,0.018991878,-0.3307154,-0.4650676,-0.6054792,-0.52907544,-0.256215,-0.16066605,0.392248,-0.022951188,-0.06350822,0.79354554,-0.057467267,1.1798669,-0.15468027,-0.3827807,0.013089408,0.4764897,0.0034631987,-0.17167081,-0.19686395,1.3540112,0.6160213,-0.10309198,-0.005572463,-0.26133338,0.020742575,-0.0466851,-0.30882946,-0.21763986,0.06597472,-0.5263312,-0.3994687,0.24667858,0.1977431,0.09405425,-0.17568775,0.34735557,0.36631027,0.0781463,0.10905337,-0.5259303,-0.2803544,0.263574,0.31728038,0.12102023,0.10616497,-0.48944867,0.37542376,-0.49181247,0.03408671,-0.44778368,0.081000276,-0.20600669,-0.26476023,0.1920111,-0.010731657,0.31263015,-0.6664976,-0.31876335,-0.26455644,0.5070825,0.04098934,0.051808715,0.70616984,-0.19190641,-0.18864202,-0.03590138,0.6208887,1.11318,-0.3297883,-0.06562968,0.66949934,-0.4590322,-0.39837447,0.27984315,-0.16448458,0.0009199977,-0.20306869,-0.25485507,-0.7011278,0.1575081,-0.020772114,0.22072929,-0.044846535,-0.6631515,-0.00895311,0.347241,-0.42844358,-0.24699439,-0.48774377,0.46060053,0.48176146,-0.12844951,-0.67866635,0.093351044,0.08599613,-0.21832787,-0.42943475,-0.13334464,-0.33590293,0.09793506,0.24540251,-0.26342502,-0.064060524,-0.03735822,-0.48477292,-0.04758491,-0.10406011,-0.37096024,0.11939638,-0.47974524,-0.1384985,0.97499305,-0.3156073,0.36736527,-0.6705603,-0.52367085,-0.8797485,-0.5650371,0.6192642,0.2430401,0.04793923,-0.9029646,-0.06782713,-0.045878705,-0.18919677,-0.22499879,-0.059194107,0.48738268,0.20803756,0.46223363,-0.2694898,-0.75219697,0.35652867,0.16354853,-0.26970017,-0.546915,0.21461187,0.28440696,0.99001735,0.040409833,-0.026515454,0.62313193,-0.7349526,-0.11370831,-0.15448672,-0.16962051,-0.70568925,0.046620235 +874,0.5193529,-0.17962328,-0.3965249,-0.18880227,-0.30966786,0.02640848,-0.047390465,0.65601766,0.2837017,-0.47314295,-0.21843645,-0.10927932,0.13998489,0.5197814,-0.0069974447,-0.44208997,0.1039061,0.26571113,-0.4867702,0.6281128,-0.46924558,0.16448161,-0.09514863,0.40188932,0.43095937,0.09834416,0.00027686357,0.15893795,-0.17123617,0.048225246,-0.1264739,0.34190795,-0.27086616,0.24055506,-0.2163398,-0.3214176,-0.21131544,-0.502359,-0.26951295,-0.6498841,0.31132102,-0.6370291,0.37227586,-0.11274228,-0.34915283,0.22975956,0.1976473,0.22693941,-0.32874367,-0.19579704,0.07947792,-0.09575714,-0.12532414,-0.05811627,-0.16467205,-0.36070794,-0.70786476,-0.05014009,-0.3898941,0.042776972,-0.28858948,0.13960981,-0.2929661,0.010824417,0.077328645,0.6006076,-0.42901486,0.1697291,0.17409717,-0.038622625,0.005322439,-0.5747321,-0.30064696,-0.19646427,0.21883737,0.018060764,-0.35930827,0.28054458,0.40673324,0.44774985,-0.044509497,-0.11573855,-0.34535983,0.06945065,0.06914034,0.49193054,0.07824225,-0.40009475,-0.1368499,-0.21386386,0.12332932,0.20520978,0.2988744,-0.15313877,-0.14205137,0.024347845,-0.23106606,0.27696827,0.39526787,-0.35391918,-0.3376624,0.4393147,0.44808248,0.28246963,-0.17845072,0.026760248,-0.034768153,-0.5571431,-0.12353051,0.051396422,-0.2991028,0.50387895,-0.2151181,0.20526817,0.59783286,-0.08177618,-0.03787217,0.118791,0.20187671,-0.07496969,-0.36771965,-0.33571735,0.21968283,-0.38192573,0.13113661,-0.1480736,0.76690614,0.15038744,-0.695292,0.26441005,-0.5685922,0.142071,-0.06930179,0.41526034,0.99103016,0.28700966,0.35933194,0.667401,-0.29117817,0.029950961,-0.0069094067,-0.20355843,-0.0010319267,-0.31126812,0.060501285,-0.48300505,0.025574284,0.043494377,-0.04886141,0.20828147,0.6906665,-0.4398176,-0.19408526,0.23735705,0.7011841,-0.27990523,-0.26785922,0.95544857,0.9372263,1.072431,0.10102231,0.9671498,0.1338282,-0.06539095,0.28423095,-0.24351396,-0.75299126,0.2667502,0.24061991,0.08518966,0.09677396,0.17248698,0.057484265,0.43565485,-0.3739381,-0.030062595,0.018735275,0.24622166,0.14722836,-0.1176297,-0.44786564,-0.4304983,-0.1478004,0.012848245,0.08322836,0.25423953,-0.28806168,0.5162043,-0.08858901,1.541303,0.01833306,-0.029238794,0.007379302,0.46233818,0.2296857,-0.38164225,-0.21773735,0.30532256,0.39553586,-0.022195837,-0.6274468,0.25870752,-0.20233901,-0.49856558,-0.1398387,-0.51602566,-0.2184647,-0.007966815,-0.4118983,-0.19706014,-0.013358661,-0.4729775,0.43650243,-2.8626676,-0.17670943,-0.068839915,0.41245696,-0.07329493,-0.38671902,-0.21139695,-0.51535696,0.3484476,0.2586972,0.47613975,-0.61606866,0.19289216,0.25902802,-0.60453415,-0.08131168,-0.66874653,-0.19986336,0.05944633,0.25037065,-0.048326038,0.19097233,0.10932697,0.083475575,0.6449192,0.07021308,0.18189184,0.3293624,0.267405,-0.052458797,0.40414906,-0.14023522,0.5998946,-0.3925438,-0.23645894,0.15220584,-0.45816627,0.2520947,-0.16089192,0.11608045,0.5830742,-0.51513225,-0.9097719,-0.5400539,-0.046687774,1.0750662,-0.23801358,-0.214853,0.34422487,-0.6679195,-0.15880392,-0.087156974,0.58853287,-0.094148435,-0.2850318,-0.6510878,-0.061689913,-0.022594512,0.12659942,-0.15436423,-0.1626147,-0.36556175,0.55180836,0.012508056,0.52844256,0.07222437,0.2416247,-0.4079368,-0.4295521,0.014058909,0.710571,0.27075213,0.109567784,-0.29979092,-0.15839057,-0.4830532,-0.11518902,0.22309522,0.40275216,0.54374546,-0.061338995,0.2633726,0.27537006,0.07180939,0.07825339,-0.0884333,-0.16111015,-0.22337784,0.03555782,0.49208885,0.63227284,-0.18366599,0.5535268,-0.047811057,0.1457734,-0.27851316,-0.5113456,0.5073102,1.0314779,-0.23078415,-0.27146694,0.72787297,0.41562057,-0.23935713,0.44093704,-0.44674602,-0.24709122,0.38292837,0.021578103,-0.22247872,-0.04510615,-0.3402031,0.20654067,-0.8452458,0.27515247,-0.12308257,-0.65526295,-0.5691768,-0.07564402,-2.4007506,0.06700749,-0.1774068,-0.2241421,-0.09633376,-0.28107062,0.14540707,-0.6625501,-0.58224815,0.16205215,0.10137181,0.81194556,-0.09472559,0.008718112,-0.19849475,-0.4067946,-0.26347256,0.13220437,0.0069051045,0.6660531,0.0886731,-0.47056586,0.22504674,-0.19556591,-0.42847568,0.019559333,-0.5462479,-0.40068844,-0.13863327,-0.5309342,-0.24806793,0.6262274,-0.38593602,0.014952366,-0.21366024,0.021863086,0.0108713405,0.23161362,0.07967348,0.08959078,0.099360034,-0.085917644,-0.022230055,-0.123484954,0.1405725,0.019472046,0.18881914,0.4630086,-0.036349542,0.37390164,0.62437767,0.71281826,-0.2505429,0.9261208,0.5837002,-0.03593443,0.22831662,-0.21324016,-0.1334983,-0.37061113,-0.18304382,-0.022026064,-0.48898554,-0.47668096,0.05086572,-0.2614945,-0.930795,0.44251353,0.014125243,0.2836854,-0.006516001,0.07750527,0.46784395,-0.17820075,-0.034085162,-0.16722608,-0.13581824,-0.6237432,-0.37571263,-0.6104426,-0.4941521,0.1182534,1.1273639,-0.3227608,0.1026022,0.05075541,-0.4196349,-0.09899149,0.17205046,-0.076085545,0.13732424,0.2319933,-0.19177534,-0.54814637,0.40538588,-0.11975847,0.02130783,-0.5115372,0.2754957,0.3992273,-0.5289959,0.45372456,0.20503238,0.004368452,-0.36184642,-0.6305479,-0.1868533,-0.09702628,-0.15299883,0.37670064,0.30847988,-0.8209496,0.41575027,0.3011865,-0.1579796,-0.786754,0.5311962,-0.11198234,-0.07665871,-0.15504916,0.29668516,0.24073033,0.0703457,-0.23925444,0.23646608,-0.6006724,0.2751477,0.2832052,0.009003247,0.21403544,-0.40473005,0.032563835,-0.6809363,-0.067649834,-0.59345293,-0.20474036,0.21140157,0.20007013,0.24704061,0.25948456,0.18477938,0.23980124,-0.27678972,0.06936436,-0.116804846,-0.23042575,0.21731676,0.49061647,0.5660263,-0.31828216,0.57589877,0.10824107,-0.16801323,0.1323895,0.005197712,0.26945996,0.0939657,0.46130952,-0.028934862,-0.28160638,0.09887556,0.78713787,0.17921515,0.31620765,0.005146418,-0.28764796,0.1977867,0.0872281,0.3130724,-0.04136363,-0.44627413,0.031714942,-0.4341829,0.13901098,0.50017166,0.083068624,0.19812274,-0.022550983,-0.30945295,0.023533517,0.083111964,0.0121959,-1.4057205,0.38985476,0.2008716,0.83579594,0.4870886,-0.12586276,-0.092492394,0.6445876,-0.21481732,0.20084274,0.39986873,-0.005131747,-0.45448187,0.5180301,-0.781373,0.6438217,-0.13829136,0.009894414,0.07903488,0.023824135,0.5028561,0.70302665,-0.09379648,0.025816783,0.17630611,-0.44356495,0.21947268,-0.3954466,0.04138233,-0.72561044,-0.13665785,0.74966496,0.44899717,0.34652594,-0.21540888,-0.046337564,0.093756296,-0.24188769,0.03972217,0.037061363,0.11815793,-0.060709093,-0.6501504,-0.2467697,0.4977367,-0.10705304,0.25958258,0.23913701,-0.2395508,0.1321262,-0.0784866,-0.020234644,-0.092305735,-0.7619607,-0.15364514,-0.28143847,-0.47187892,0.5733244,-0.2044706,0.22702101,0.27013156,0.067992084,-0.3367508,0.48608828,0.08857578,0.73196495,-0.035913676,-0.004399076,-0.31477872,0.2503764,0.30548224,-0.21640562,-0.0062605953,-0.13988099,0.0091180885,-0.49825588,0.44849485,0.0166028,-0.307439,-0.12390698,0.038038675,0.10511704,0.4913877,0.0124847805,-0.047121465,-0.24946356,-0.16495414,-0.22919454,-0.09936724,-0.06651711,0.4082925,-0.010089176,-0.025917659,-0.1627396,-0.005234382,0.015845418,0.27451274,-0.13570824,0.2499014,0.25404564,0.006221022,-0.29844937,-0.10467325,0.24049632,0.44931015,0.021803753,-0.29651424,-0.29231736,-0.2159365,-0.4678336,0.13679527,-0.1330849,0.44527408,0.18129714,-0.17823759,0.6145378,-0.08433326,1.1149886,0.050952222,-0.35766461,0.23322406,0.42698365,0.08950003,-0.06823533,-0.17861591,0.744547,0.35789683,-0.07527838,-0.13782267,-0.40567583,0.03591678,0.42403665,-0.18816169,-0.2985301,0.014336115,-0.7200459,-0.08062149,0.14545189,0.05140559,0.25250444,-0.20210387,0.13544856,0.37108323,0.00848532,0.21122684,-0.37302878,-0.031394333,0.35111883,0.4091335,0.13649361,0.20819266,-0.50778455,0.36314663,-0.6181795,0.07819908,-0.13738617,0.32808104,-0.31108174,-0.3879804,0.22433938,0.3255416,0.4249865,-0.1832769,-0.3419671,-0.37504014,0.5734238,0.11818821,0.114015065,0.43383935,-0.2822892,-0.09969691,0.18940042,0.33737808,0.82740813,-0.15319416,-0.111331,0.15569447,-0.38577884,-0.71766835,0.40038306,-0.35907593,0.31361768,0.07121542,-0.12170475,-0.66742355,0.18819237,0.362662,0.107387125,0.21831386,-0.46039346,-0.23376642,0.0686728,-0.18444307,-0.0860679,-0.30321032,-0.057559013,0.41113958,-0.28094894,-0.337277,0.10930992,0.22727826,-0.1419718,-0.47358927,0.04699471,-0.42938414,0.20840214,-0.05796246,-0.46315402,-0.18172337,-0.05249718,-0.35889718,0.18788941,0.07302987,-0.20102195,0.103648655,-0.427768,0.011974518,1.014284,-0.10581169,0.29098886,-0.41483185,-0.46384576,-0.7869204,-0.32951233,0.47366497,0.17914446,-0.14279394,-0.6966325,0.056809943,-0.020807458,-0.16535772,-0.1494209,-0.42331442,0.476155,0.1594439,0.040384553,0.14157578,-0.7748137,0.040660437,0.1277811,-0.10367259,-0.48651966,0.41065088,-0.07305244,0.92247254,0.124697626,0.12451149,0.18896106,-0.36245912,-0.048982166,-0.22594154,-0.12134386,-0.32761684,0.008362202 +875,0.55488044,-0.22715823,-0.3795924,-0.12701465,-0.13651934,0.12283184,-0.22486873,0.6002191,0.24425444,-0.4415923,-0.1343171,-0.032984674,0.008434228,0.019491931,-0.11093016,-0.48148552,-0.017692907,0.075059,-0.27045926,0.3732612,-0.5460575,0.2683435,-0.092136584,0.35516542,0.11756963,0.1668329,-0.06767933,-0.06069988,-0.13948084,-0.21519968,0.061898865,0.24333243,-0.58632106,0.06835587,-0.11983796,-0.40229398,-0.12769897,-0.5724124,-0.39285812,-0.7704135,0.28928787,-0.9094735,0.4524333,0.1317486,-0.4267009,0.35067686,-0.19510286,0.20008779,-0.17094228,0.040907733,0.26315764,-0.07278638,0.0010567562,-0.10362619,-0.10608566,-0.2321088,-0.54827017,0.10273888,-0.38184372,-0.124244556,-0.24286301,0.15388565,-0.30871448,-0.12488679,-0.24161138,0.3629282,-0.45100856,-0.08862404,0.08939104,-0.03143059,0.39647225,-0.5468251,-0.171181,-0.077837445,0.22935757,-0.28634712,-0.32901338,0.19530432,0.3367004,0.5148375,-0.1128241,-0.13527003,-0.36083212,0.1356364,0.13530329,0.49372083,-0.22359411,-0.59569687,-0.097674794,-0.10667891,0.24566521,0.17574856,0.15612806,-0.20456335,-0.12040043,0.2222689,-0.22126658,0.46804184,0.6571273,-0.2896431,-0.20709576,0.34692413,0.49503216,0.15499112,-0.12884596,0.0154784685,0.108754106,-0.526014,-0.19602226,0.13776739,-0.19433452,0.40351883,-0.10704831,0.29584482,0.69459754,-0.30753297,0.2185955,0.22410974,-0.04856914,0.023588022,-0.29284737,-0.29147768,0.16631912,-0.48442274,0.17229751,-0.30400744,0.72883,0.13775861,-0.76492935,0.3844537,-0.48072094,0.045944843,-0.1387256,0.53459007,0.70714986,0.3556536,0.26976115,0.6405697,-0.33534318,-0.08957333,-0.13141893,-0.2789542,0.14899768,-0.14907227,-0.0037843627,-0.43745184,-0.24052326,0.07329665,-0.18877585,-0.0016310407,0.43789297,-0.5867868,-0.053981643,0.13786367,0.53404385,-0.25914285,-0.029323488,0.8640571,0.98834556,0.97438276,0.16906306,1.0234979,0.2452947,-0.14898984,0.3759132,-0.37841627,-0.6628066,0.29850063,0.25092018,-0.0032212224,0.15605898,0.06650684,-0.12277087,0.4283007,-0.41154522,0.059272546,-0.26786572,0.17832766,0.038321298,-0.12513268,-0.3631291,-0.38391113,-0.19476545,0.06289879,0.04535056,0.33420447,-0.33622423,0.10303626,0.05032461,1.4408578,-0.13152243,-0.066247895,-0.079797566,0.51525027,0.14596434,-0.29285505,-0.029661626,0.28084844,0.3462816,0.044803053,-0.66899925,0.17248301,0.008392648,-0.38801533,-0.1025793,-0.31243473,-0.057542853,-0.052618004,-0.53171456,-0.08544419,-0.11490888,-0.37879896,0.47824892,-2.747987,-0.19918834,0.0882544,0.4476969,-0.23411933,-0.43048888,-0.12190567,-0.5208401,0.42728895,0.304069,0.41876712,-0.7324019,0.42338654,0.41770586,-0.5927825,-0.11297672,-0.86337775,-0.16778103,-0.119612746,0.22290137,0.15578164,0.024138058,0.08657255,0.10121875,0.49731573,0.06594188,0.16347383,0.1328688,0.47218376,-0.12025845,0.47657198,0.033843443,0.5181894,-0.14580072,-0.28921917,0.42370838,-0.538335,0.18564582,-0.13680194,0.09221654,0.38109216,-0.463674,-0.93202984,-0.77590746,-0.27059886,1.1301317,0.0019939903,-0.446621,0.25503987,-0.3668783,-0.38539657,-0.16507605,0.62974614,-0.029178295,-0.21567336,-0.80439466,-0.073312655,-0.17173631,0.063223764,-0.092583634,0.030326933,-0.43904427,0.6678272,-0.08979644,0.43128517,0.32929605,0.20714703,-0.12184825,-0.40423235,0.03434486,0.94914395,0.34495422,0.1644993,-0.3117953,-0.1919948,-0.2963799,0.0768669,0.07953213,0.5715479,0.70980805,-0.027511433,0.10746704,0.19435,-0.078945376,0.008431016,-0.17041557,-0.24046397,-0.18369389,0.031070169,0.6567007,0.57460606,-0.15245779,0.301334,-0.11202401,0.15509859,-0.2649922,-0.34676674,0.4450086,0.8754038,-0.09056697,-0.14127393,0.56584305,0.50155747,-0.26694804,0.43822408,-0.6174597,-0.17527452,0.31616473,-0.22991194,-0.30688924,0.28509393,-0.3459498,0.109492145,-0.74079263,0.4035658,-0.3846743,-0.5207566,-0.644834,-0.043590274,-3.257904,0.14359252,-0.1658493,-0.27299246,-0.058843784,-0.27776128,0.39804247,-0.533082,-0.42708096,0.21932228,0.044995725,0.7399325,-0.065996364,0.04070919,-0.33944082,-0.21412696,-0.3490012,0.05294547,0.21031882,0.3811057,0.01728341,-0.26420212,-0.023122687,-0.14445817,-0.36188895,0.06356991,-0.48670968,-0.5806173,-0.099318095,-0.3578735,-0.3579809,0.65840524,-0.22090718,0.055820864,-0.12106816,-0.10833882,-0.16309164,0.5038094,0.08052849,0.023976663,-0.022111658,-0.026748335,0.055162173,-0.24470337,0.35304165,0.10671002,0.2303777,0.4364338,-0.18286574,0.17113106,0.55243,0.63104016,-0.064534985,0.9671955,0.4354175,-0.06758846,0.29083493,-0.20563592,-0.21686493,-0.41705108,-0.26602855,-0.017873066,-0.45815334,-0.39849648,-0.10073502,-0.41103896,-0.80018556,0.43027505,-0.08608309,0.07307492,-0.029952075,0.27139673,0.4987733,-0.04057467,0.021218743,-0.053336047,-0.051876523,-0.45241198,-0.21811703,-0.5718464,-0.48636946,0.15986072,0.9601097,-0.14904039,-0.043206684,0.07588738,-0.11761657,0.005042327,-0.022229016,-0.13702476,0.06944754,0.31752157,-0.1140024,-0.5978581,0.43646988,-0.019287612,-0.2347304,-0.504059,0.2610839,0.6461044,-0.56573135,0.491987,0.32883188,0.045533914,-0.05903382,-0.52323276,-0.19538583,0.004760951,-0.19998135,0.52650684,0.264401,-0.87867355,0.44900376,0.3863211,-0.15142976,-0.67538136,0.5284001,0.009667174,-0.24823202,-0.15164852,0.28963107,0.074291945,0.042498294,-0.101788215,0.3895468,-0.4730444,0.2722876,0.22474436,-0.09367216,0.3205886,-0.08953427,-0.010082798,-0.6152402,0.033664357,-0.50328976,-0.26566106,0.16099834,0.05373449,0.26796648,0.3557203,0.11058233,0.47769046,-0.33606863,0.053503275,0.015909484,-0.22198166,0.2843503,0.38065365,0.53492993,-0.34446397,0.51501155,0.013676521,-0.16802166,-0.020214388,0.043061238,0.49137232,0.040314887,0.36279067,-0.08830388,-0.2807498,0.25944406,0.9231976,0.18982725,0.52497786,-0.1073214,-0.12102204,0.193558,0.16641307,0.27637962,0.06053864,-0.53592414,0.04840519,-0.12012075,0.2474797,0.33237094,0.10317183,0.19432862,-0.19234875,-0.26309,0.051007856,0.23831403,0.001715924,-1.2007338,0.35889387,0.118779145,0.8154647,0.4939074,-0.056622125,0.13606076,0.5326241,-0.14947878,0.1933416,0.27389202,0.0561843,-0.5528793,0.38932195,-0.76440036,0.4501441,-0.07899164,0.016011333,-0.07383331,-0.32638973,0.45713836,0.66605407,-0.14760184,0.12335747,0.06305052,-0.3242225,0.20287749,-0.41086483,0.14949398,-0.62152106,-0.13669549,0.7587237,0.5344734,0.32990798,-0.119000874,0.047835026,0.1176408,-0.0662788,0.06012777,0.104947194,0.090033926,0.11268855,-0.6321629,-0.18820307,0.45617884,-0.17561838,0.05369047,-0.119344436,-0.24918607,0.2010593,-0.112466134,-0.19691607,-0.09960177,-0.647677,-0.12605955,-0.4861366,-0.3480284,0.3298485,0.033556823,0.25344032,0.27879095,0.10479142,-0.16893911,0.2938431,0.32297176,0.6875568,-0.028255591,-0.08405429,-0.55623287,0.16479579,0.27147022,-0.20219956,-0.27910742,-0.14225045,0.09298923,-0.55880296,0.36054182,-0.10994851,-0.28809687,0.14281282,-0.06640327,0.08274456,0.63693655,-0.22705524,-0.118022956,0.07618941,-0.18203174,-0.3469903,-0.043061376,0.018920472,0.29038954,0.29897076,-0.1029013,-0.05598822,-0.12893136,-0.07466829,0.43584174,0.18935837,0.4852921,0.465501,0.097476505,-0.31403446,-0.16389465,0.099412456,0.46678302,-0.07511644,-0.13211203,-0.50510174,-0.39530846,-0.35394734,0.2568925,-0.062074937,0.3394538,-0.030343028,-0.15420659,0.6822185,-0.04532034,1.0176725,0.06520516,-0.35490295,0.07741117,0.46477175,-0.062127948,-0.07745019,-0.50083864,0.87219316,0.31653878,-0.16270159,-0.039645854,-0.2617203,-0.14615504,0.18648466,-0.18724763,-0.085890554,-0.0017023215,-0.79130507,-0.12484356,0.24980481,0.2846509,0.14947358,-0.049269717,0.17598207,0.2762483,0.03528818,0.18747355,-0.5033251,-0.11930816,0.29017448,0.34634557,0.0040787435,0.11475862,-0.42236763,0.32911894,-0.4819991,0.0277407,-0.2212369,0.19296433,-0.083017126,-0.3310006,0.23820181,0.101788215,0.30402446,-0.2153085,-0.4111581,-0.16842987,0.45845684,0.0647049,0.29559273,0.48148638,-0.20817627,0.022233231,0.030873192,0.5503287,1.1058505,-0.13523814,0.030458795,0.393739,-0.3326395,-0.59218407,0.38621834,-0.29073408,0.19508068,-0.015346795,-0.16603628,-0.45715973,0.27704015,0.31785172,0.09050586,0.030574014,-0.628086,-0.31213313,0.29680255,-0.33460647,-0.20565839,-0.3380006,0.12124871,0.68060505,-0.32865795,-0.2236075,-0.0032229295,0.43910772,-0.28821254,-0.34752408,0.041092474,-0.39297876,0.2725293,-0.06703996,-0.3607933,-0.03902303,0.054449704,-0.33310333,0.17150028,0.11115767,-0.33792803,0.028268397,-0.39579174,0.016719852,0.9682507,-0.117674336,0.17412615,-0.5165018,-0.53511506,-0.80191123,-0.31882545,0.276504,0.15219344,0.011965058,-0.5525828,-0.02393519,-0.015142866,-0.096902624,-0.07166491,-0.4220059,0.5606151,0.1227963,0.32352918,-0.06558373,-0.68359745,0.07094427,0.16286013,-0.30879906,-0.5606972,0.5273419,0.02081178,0.9806785,0.13869074,0.13012211,0.14476313,-0.36098364,0.034058828,-0.27209345,-0.18648598,-0.7897073,0.086065605 +876,0.32994053,-0.32601985,-0.68925,-0.108085066,-0.22537942,-0.00056348066,-0.29785827,0.4195629,-0.05518171,-0.65739864,-0.117693424,-0.25311536,0.036785066,0.26206458,-0.15737228,-0.40713158,-0.0052591343,0.39520738,-0.35631981,0.32687104,-0.598939,0.14775814,-0.09805334,0.3119836,-0.12981482,-0.011165956,0.2350583,0.13063598,-0.3143287,-0.35875353,0.056171324,0.022818977,-0.6312301,0.11260235,-0.27923566,-0.58163375,-0.05195156,-0.4083545,-0.30212176,-0.7815046,0.23571959,-1.0529568,0.50276583,0.12261221,-0.31682283,0.30650538,0.29987213,0.49767768,-0.16486736,0.06438113,0.16846485,-0.43809253,-0.21528362,-0.48856008,-0.2688368,-0.39149228,-0.6438889,0.008510157,-0.5621914,-0.18561763,-0.22979806,0.2528107,-0.26217714,0.14519006,-0.40720892,0.72276425,-0.39998987,-0.08511103,0.19831905,-0.0584682,0.30657712,-0.48489615,-0.08725393,-0.20294094,0.010973632,-0.13864961,-0.36986864,0.3175051,0.13025579,0.4190936,-0.23238039,-0.2982612,-0.37725547,-0.12929355,0.31576717,0.4692062,-0.15080684,-0.35845372,-0.18313676,-0.0499496,0.065035865,0.24451803,0.065161854,-0.2921215,0.13978527,0.17151037,-0.3340614,0.39398968,0.7120867,-0.34007645,-0.15947331,0.27916878,0.5619909,-0.2183539,-0.3417075,-0.051842425,0.006937715,-0.4573556,-0.22134042,0.27955878,-0.21932377,0.5991269,-0.21250567,0.19724026,0.44424745,-0.47467557,-0.21445245,0.009264068,0.15525346,-0.022471653,-0.40112373,-0.60276026,0.62554604,-0.6225794,0.06781314,-0.43094072,0.91225815,0.017003251,-0.5418854,0.44868603,-0.62516063,0.15777023,-0.064156845,0.7215146,0.477471,0.66814834,0.56813455,0.57526356,-0.4083695,0.00981099,-0.17298761,-0.31019375,-0.012246748,-0.391346,0.1732954,-0.3475789,-0.02501723,0.031614866,-0.26509145,-0.15173076,0.63374525,-0.36548215,-0.18285853,0.28472212,0.6421743,-0.39703313,-0.015574493,0.7578608,1.2640084,1.2193545,0.25998685,1.2301425,0.33451173,-0.23310119,0.026047034,-0.008588123,-0.7609597,0.3069549,0.24127604,-0.055677067,0.29121506,0.13102423,-0.0073140045,0.47056153,-0.6252226,0.03993295,-0.11816297,-0.015592748,-0.011099295,0.03309023,-0.5089954,-0.12182348,0.20339184,-0.18354706,-0.0065569934,0.4252599,-0.27099776,0.3567835,0.044403244,1.398341,-0.14857823,0.111453004,0.25261375,0.38886738,0.042316366,-0.14171483,0.056157406,0.26487368,0.24091482,0.19876672,-0.47494212,0.085387774,-0.17716128,-0.6171017,-0.21739005,-0.34005907,0.050641872,-0.15575545,-0.56603235,-0.14660296,0.03909136,-0.3970395,0.32882383,-2.4793625,-0.1873493,-0.21051644,0.4223585,-0.32088664,-0.41421345,-0.04229848,-0.6657916,0.52240807,0.44201633,0.3034076,-0.52420974,0.48572978,0.3353717,-0.34001276,-0.06442966,-0.9172693,-0.03975952,-0.3889345,0.32586476,0.06090342,-0.25862953,0.012170618,0.015617398,0.6203402,-0.20402546,0.050867006,0.34670532,0.30049452,-0.09224582,0.6119156,0.12666956,0.40370786,-0.73291034,-0.30456054,0.24661385,-0.48721984,0.10986195,0.12297149,0.05898342,0.48464572,-0.686297,-0.9731213,-0.6589399,-0.2206471,1.1443849,-0.2924082,-0.45644283,0.28309786,-0.3776266,-0.36316803,-0.35956314,0.4108135,-0.05682852,0.096921615,-0.856604,0.09206696,-0.07997494,0.42199385,-0.094986156,0.112987705,-0.49996215,0.5663298,-0.3447956,0.51385695,0.5423979,0.13061365,-0.53714776,-0.34582242,0.017968625,1.0703979,0.27533656,0.16066656,-0.37909558,-0.23896547,-0.065871365,0.010844604,0.13423902,0.45341098,0.6860375,-0.080329604,0.14683706,0.40055266,-0.1622992,-0.034650803,-0.16002831,-0.45665666,-0.12517564,0.09179937,0.7357327,0.49846995,0.01460348,0.51578856,-0.1446135,0.40493232,-0.43558103,-0.2852841,0.25371858,1.1186094,-0.07647154,-0.2828419,0.7384621,0.6475887,-0.57109886,0.63949,-0.59657866,-0.34818757,0.24795757,-0.15983698,-0.5641134,0.18819016,-0.28093874,0.28738356,-0.6102591,0.40925702,-0.2932069,-0.633966,-0.7580378,-0.33669007,-3.5125747,0.4113118,-0.070741355,-0.13690633,0.09023524,-0.32419336,0.19075607,-0.55412066,-0.5239959,0.19721346,0.14233272,0.7391756,-0.07058433,-0.10023501,-0.46971127,-0.32863474,-0.2550493,0.32197192,0.35285,0.15756248,-0.070239335,-0.48046485,0.124758765,-0.30576232,-0.39466724,-0.13440607,-0.7030051,-0.30151328,-0.25675094,-0.6022047,-0.6399961,0.73446006,-0.31971332,0.08365297,-0.32243744,-0.05494733,0.07431236,0.48510763,0.051699992,0.26255763,0.044288475,-0.14408892,0.029038755,-0.2397542,0.06170962,-0.0069462997,0.1549337,0.53049845,-0.20306717,0.10772758,0.5093448,0.7303383,0.041255567,0.9968905,0.5026459,-0.07091835,0.2529651,-0.2636653,-0.17621954,-0.72636133,-0.204742,-0.08332945,-0.56485546,-0.3398239,0.075291984,-0.18657543,-0.8657951,0.91461927,-0.16108671,0.025199635,0.09522371,0.6530619,0.44403365,-0.14640655,-0.22366033,-0.080313794,-0.05251666,-0.44233367,-0.4535966,-0.6666104,-0.45476544,-0.20558992,1.2783984,-0.013461042,0.022745533,0.07100078,0.04255766,0.09335084,0.39357522,0.04251287,0.2672044,0.5944038,0.0035218596,-0.535688,0.23972225,-0.20408791,-0.14910007,-0.70203215,0.337258,0.8555519,-0.6975415,0.62263894,0.51067173,0.20824355,-0.4219794,-0.588737,-0.29720554,0.16677962,-0.17328623,0.6343139,0.3231614,-1.1704751,0.44730127,0.33522394,-0.29606816,-0.7905268,0.53692836,-0.13569261,-0.28837085,-0.1053309,0.44727552,-0.11904457,0.04233021,-0.10603042,0.3154978,-0.40890026,-0.019544471,0.34961894,0.017699081,0.32474333,-0.42734215,-0.038306475,-0.6497169,-0.0044213803,-0.5822851,-0.22097021,0.2375575,-0.07183129,-0.047742363,0.581252,-0.077145144,0.38398123,-0.1939507,0.07411465,-0.14142272,-0.36582738,0.59015703,0.48171538,0.27364987,-0.51274645,0.7783937,0.038276896,-0.14274964,-0.5532976,-0.12257255,0.42738074,0.01565264,0.6125678,0.006281923,-0.30546653,0.39422598,0.84979683,0.41999817,0.9370697,0.2507144,0.016757255,0.08597546,0.18248858,0.2803763,-0.087151244,-0.52206826,0.060086425,-0.25144002,0.19057666,0.34482822,-0.07825007,0.4718954,-0.21330835,-0.0675973,0.061638866,0.0055755754,-0.16774227,-1.2870321,0.4732112,0.17129332,0.56360364,0.48856086,0.11515394,-0.017793475,0.48273352,-0.43493098,0.03550498,0.18818945,0.14434324,-0.27115992,0.6627603,-0.744594,0.37535745,-0.26689863,0.023919605,-0.21884204,0.096064895,0.48061648,0.72673863,-0.15044715,0.2302183,-0.10832309,-0.16616565,0.45225474,-0.36736754,0.33564255,-0.50075984,-0.39951056,0.8950365,0.35361046,0.6387976,-0.13402009,-0.1519849,0.15141365,-0.069209784,0.19931608,0.07269298,0.16224042,0.04279592,-0.75209904,-0.07247357,0.5967691,0.14771795,0.08412309,0.19477533,-0.2978578,0.30425677,0.091101795,-0.13102768,0.10751939,-0.57318056,-0.00026650864,-0.31314948,-0.4845672,0.3893264,-0.26097444,0.21781336,0.22424527,0.079507396,-0.5944548,0.24552868,0.48733672,0.62981796,0.060140956,-0.05899193,-0.18118836,0.18455319,0.15527253,-0.23551041,0.12923673,-0.3653806,0.15403804,-0.6278168,0.43574783,-0.18826352,-0.52802926,0.24665666,0.019961156,-0.1393494,0.780335,-0.049375165,-0.06219137,0.16967171,-0.19076537,-0.13506623,-0.37069666,-0.09610344,0.34647945,-0.20115282,0.03964434,-0.0023514656,0.04558344,-0.0018094019,0.6353209,-0.059039537,0.15052775,0.4295909,0.2815015,-0.39855564,0.06264489,-0.2980933,0.7621044,-0.07495146,-0.20771493,-0.30542448,-0.3242612,-0.16427118,0.152714,0.054136015,0.30319926,0.24273323,-0.2880716,0.9764035,-0.16803643,1.1069596,-0.04345194,-0.4679118,-0.12170289,0.39171764,0.09022946,-0.17884251,-0.33294886,0.9114385,0.53216386,-0.09333858,-0.15694359,-0.49955025,-0.041402925,0.10454245,-0.18217677,-0.43409264,-0.030000823,-0.6921947,-0.042852428,0.25701356,0.35939693,0.24624725,-0.18423901,0.5674057,0.41361472,0.04068966,0.22359218,-0.22149864,0.21558131,0.4390583,0.34822056,-0.08058229,0.015762405,-0.30316913,0.25051016,-0.6610083,0.01611612,-0.30834323,-0.019771999,0.11621124,-0.2742917,0.2590556,0.21894468,0.2632608,-0.21446119,-0.09110131,-0.052446615,0.5247457,0.24029852,0.3029657,0.7030914,-0.14905216,0.21089363,0.051314343,0.507628,1.3323659,-0.2750925,-0.07956174,0.21924391,-0.273737,-0.8845619,0.38603947,-0.30952978,0.17932248,0.05350785,-0.32744625,-0.598918,0.12932605,0.19870782,-0.37063786,0.26100835,-0.41008255,-0.13378982,0.18733273,-0.3393947,-0.21731333,-0.35546485,0.18518664,0.52532274,-0.14260326,-0.2687159,-0.17024164,0.44129306,-0.2368399,-0.34368724,-0.10742066,-0.4451326,0.21918158,-0.0023741939,-0.33543566,0.23941053,0.008153265,-0.5313698,-0.042427965,0.267433,-0.21227235,0.20778441,-0.38421962,-0.06419143,0.81627184,-0.092924215,0.10130839,-0.43369523,-0.6516527,-1.0931332,-0.11069414,0.4165717,-0.12317798,0.1123159,-0.5758498,-0.00015197018,-0.021608148,-0.20796515,-0.07780926,-0.4668504,0.3037713,0.20604537,0.47953895,0.06691592,-0.6047501,0.14984156,0.088579826,-0.19507183,-0.25233987,0.61781865,-0.08221532,0.87272716,-0.019530607,0.22624828,0.261701,-0.5229425,0.25517377,-0.15465023,-0.19163913,-0.60741216,-0.18543124 +877,0.44506678,-0.24129036,-0.6911946,-0.0507617,-0.35843387,-0.052944995,-0.17373851,0.62738967,0.25431138,-0.44259068,-0.15353559,-0.24412942,-0.13508219,0.5191915,-0.2328163,-0.4152603,-0.21390001,-0.016201628,-0.47372147,0.69908464,-0.23763332,0.16626245,0.117412,0.35663053,0.52252746,0.14136535,0.16059262,0.1624035,-0.22361477,-0.2833474,-0.047160722,0.07388925,-0.66616493,0.1528429,-0.33174482,-0.5543338,-0.20719422,-0.6828229,-0.2851788,-0.99100655,0.46236166,-0.95093346,0.42596823,-0.008850968,-0.25174636,0.19092487,0.35139477,0.29114553,0.015660264,-0.36490828,0.2236023,-0.12031254,-0.012632756,0.04164946,-0.42155716,-0.2636646,-0.60632807,-0.08328306,-0.37793973,-0.13912472,-0.15704833,0.1594924,-0.3741778,0.10456026,-0.21984838,0.7696671,-0.333867,-0.12820177,0.30402648,-0.05029738,0.30298615,-0.74776065,-0.27358526,-0.20351778,0.06955007,-0.09392938,-0.18535735,0.57439303,0.066556424,0.1810724,-0.028524546,-0.21705535,-0.33478612,-0.124518886,0.1045251,0.27762577,-0.20684844,-0.40434164,-0.14198217,-0.08259919,0.35495436,0.41290408,0.3269423,-0.2172367,0.120401494,-0.0049724486,-0.19888017,0.5225594,0.44459274,-0.22999822,-0.067500845,0.27817896,0.63271916,0.37701094,-0.23868242,-0.3056669,0.028187545,-0.509098,-0.07376147,0.24445216,-0.23165832,0.45920455,-0.09264057,0.19432592,0.49482253,-0.29895902,0.13108715,-0.024175782,0.11883836,-0.07529613,-0.6012103,-0.4242399,0.37962323,-0.47730687,0.41859674,-0.3456628,0.7284896,0.14927195,-0.48738366,0.24449581,-0.6883925,0.1698603,-0.029976066,0.4819435,0.71254116,0.39834923,0.31893393,0.77662456,-0.12921478,-0.09001687,-0.21792497,0.03391129,-0.117098734,-0.3547778,0.30869323,-0.40169203,-0.025820872,-0.2432584,-0.014703086,0.06851619,0.26938468,-0.45477566,-0.30796698,0.13435951,0.80917114,-0.13148645,0.09229605,0.88513595,1.0160761,1.193181,-0.039695557,0.7862024,-0.07606192,-0.21413714,0.20471478,0.09233642,-0.610551,0.32204264,0.41432348,-0.08307505,0.0893718,-0.06283596,-0.12906048,0.45815688,-0.37247616,-0.0021439607,-0.16636676,0.12883392,0.25474295,0.11503834,-0.34082508,-0.3307374,-0.10243205,0.013377208,-0.05618873,0.29886273,-0.20823413,0.30220965,-0.03811479,1.4142289,-0.14662863,0.106143884,0.32071528,0.5926116,-0.049242634,-0.29552713,0.05952062,0.109183155,0.096820556,0.07501068,-0.52568424,0.2473525,-0.37293264,-0.4539951,0.079572275,-0.46625233,-0.34891495,0.06458845,-0.5760914,-0.20591925,-0.15769999,-0.16054298,0.3776372,-2.7100134,-0.052135102,-0.16957599,0.20236367,-0.32810932,-0.43945485,0.089599736,-0.6398127,0.60028386,0.18975694,0.43453565,-0.41067314,0.20701903,0.5347952,-0.6496526,0.049039014,-0.66641164,-0.123345934,0.15663712,0.2549713,-0.16787942,-0.13473074,0.21768849,0.05870823,0.28628922,0.20963822,0.18645056,0.34008127,0.24820362,-0.22271205,0.6059005,-0.1125507,0.37727326,-0.7051964,-0.1262338,0.46387312,-0.5508969,0.39366448,-0.15191144,0.12619184,0.6655683,-0.61942583,-0.8253803,-0.57727504,-0.3050784,1.2295781,-0.21190095,-0.65776265,0.2392485,-0.40003034,-0.027842682,-0.27981803,0.6295737,0.047990542,0.014485698,-0.5868622,-0.006365744,-0.26925975,0.22247997,-0.1550193,0.08363759,-0.36626515,0.6843867,-0.029622091,0.5353964,0.39641884,0.093391106,-0.5270099,-0.43529928,-0.060652193,0.7615252,0.51283777,0.058008067,-0.1968467,-0.103821926,-0.5185645,-0.1837546,0.14318533,0.607659,0.6775725,-0.0065443562,0.19509116,0.29108825,0.012094855,0.101330414,-0.07813518,-0.35441992,-0.38272408,0.12697941,0.5905642,0.5532187,0.060441118,0.3990595,-0.04154891,0.17960149,-0.20018448,-0.4402634,0.20749117,1.007185,-0.30418885,-0.23787381,0.5375997,0.55619246,-0.3405096,0.49773863,-0.41755792,-0.46883604,0.4551773,-0.13325502,-0.6717073,0.09562905,-0.20697792,-0.008314848,-0.5258134,-0.10713459,-0.70635545,-0.23355825,-0.60011417,-0.21646707,-2.2670476,0.35096678,-0.056145243,-0.15534092,-0.23845533,-0.2700189,0.17026056,-0.6414616,-0.8027266,0.09469331,0.07890938,0.7703717,-0.16592321,0.0009893454,-0.27520037,-0.24431285,-0.3155287,0.23760271,0.18274738,0.30686614,-0.22334638,-0.3674564,-0.2290601,-0.037382323,-0.47239238,0.03832429,-0.5338142,-0.41850471,-0.27626193,-0.5166318,-0.4020239,0.6739823,-0.25735432,0.13435155,0.049853936,-0.09458201,0.06387024,0.04937878,0.23182514,0.5167682,0.063770406,-0.17050417,0.034767047,-0.18818349,0.06294782,0.246881,0.41614568,0.44361848,-0.14521183,0.48998627,0.40511227,0.8208255,0.04216935,1.0049125,0.21668312,0.0044520935,0.23914744,-0.14205094,-0.3293743,-0.57172686,0.08229024,0.12012669,-0.25996572,-0.44525582,-0.027723359,-0.21447116,-0.75934917,0.74806345,0.005459272,0.4094028,-0.07689439,0.2700338,0.5083977,-0.37002483,-0.005298801,0.041114565,0.1312214,-0.6612715,-0.33478525,-0.6591502,-0.5027938,-0.0102671245,0.85180736,-0.2713018,-0.08490066,0.30966023,-0.31559354,0.2224372,0.097237974,0.003085847,-0.15049645,0.42135686,0.13849679,-0.590161,0.5381885,0.09912114,-0.015469558,-0.41901156,0.47391322,0.6284023,-0.47573793,0.6076958,0.19820645,0.013788242,-0.64874446,-0.59068924,-0.027645264,-0.08789505,-0.28185743,0.34556866,0.36254328,-0.63561195,0.16697796,0.21700071,-0.10144412,-0.8115693,0.5010879,0.089114,-0.36347204,-0.12800139,0.38987908,0.34601548,-0.014278371,0.07364196,0.26467198,-0.25915077,0.18228628,0.33037594,-0.042144716,0.26123005,-0.3711417,-0.23941796,-0.4727607,0.4531338,-0.44670266,-0.26729175,0.54191107,-0.1419549,-0.13413857,0.36239132,0.21894374,0.23407364,0.06008701,0.18213604,-0.1531248,-0.27987263,0.48090914,0.45441166,0.6519181,-0.5467891,0.64808375,0.049104705,-0.19423291,0.33557656,-0.06295075,0.3543909,-0.013990306,0.5130088,-0.11672424,-0.34395888,0.040889814,0.6910748,0.1668707,0.36050415,-0.10687138,-0.06543254,0.10816402,0.058225192,0.13975248,-0.12700026,-0.80987513,0.03475178,-0.15040742,-0.11636876,0.54994667,-0.014169065,0.27464387,-0.018577393,-0.19033708,-0.006077707,-0.084048934,-0.35346413,-1.3648608,0.4816414,0.11224934,1.0692073,0.5806558,-0.07075795,-0.17052875,0.6501013,-0.12934457,0.09819715,0.40916803,0.14349084,-0.55127114,0.61563873,-0.47938046,0.5503489,0.053372804,0.0298433,-0.071099386,0.1125602,0.6539512,0.54926956,-0.30172294,-0.079264596,0.024651404,-0.2976814,0.31120417,-0.45237494,-0.067498565,-0.53451484,-0.34700972,0.515481,0.5431298,0.285821,-0.16711529,0.0068883416,-0.029695395,-0.130382,0.31032336,-0.01721667,0.11080156,-0.083640225,-0.3902899,-0.08167795,0.4507397,-0.4215759,0.16363427,-0.043512907,-0.29277852,0.12919234,0.14395723,0.04031805,-0.10434299,-0.77468884,0.21693197,-0.5549959,-0.4345453,0.08953249,-0.16797958,0.19586895,0.23991181,0.08225714,-0.24012038,0.5194877,0.114185885,0.7000317,-0.5427978,-0.0789181,-0.3582308,0.24193947,0.063536294,-0.10724917,0.18321855,-0.044259492,0.09900606,-0.4363337,0.5802651,-0.17685224,-0.35480303,-0.05500762,-0.1131837,-0.07378023,0.5952968,-0.05070218,0.049450524,-0.16042185,-0.18543953,-0.30443284,-0.33939713,0.037873797,0.119650826,-0.055284753,0.25409505,-0.19397466,-0.17386797,0.12721373,0.42917207,-0.12396038,0.3979306,0.4801437,0.19591318,-0.5727968,0.0074735973,0.12893069,0.6517086,0.04149615,-0.16243932,-0.38792166,-0.26139122,-0.33265796,0.47902447,-0.16581027,0.55088484,0.114869446,-0.19025205,0.84880215,-0.030784043,1.1239021,-0.10435842,-0.50142974,-0.10889912,0.47533643,-0.096531995,-0.26324338,-0.29824424,0.7850154,0.3571378,-0.112859815,-0.009925907,-0.2761202,0.07997641,0.3150036,-0.18756345,-0.14080025,-0.02861336,-0.46851012,-0.08119701,0.029135792,0.3793851,0.21744147,-0.37619796,0.019575957,0.42998186,0.114973545,0.33529934,-0.34955838,-0.16848141,0.26633975,0.17594443,-0.18779637,0.23982432,-0.5283297,0.3377729,-0.61081463,0.29927033,-0.39107817,0.22654735,-0.24336347,-0.34632385,0.14159863,-0.08225166,0.45896384,-0.2937851,-0.34444898,-0.24339673,0.43114752,0.25182343,0.1422136,0.5662599,-0.1457161,0.025093969,0.0020471124,0.6784919,0.9722353,-0.16656344,-0.13237886,0.0006939356,-0.34217983,-0.67865336,0.3082618,-0.29836428,0.13591978,-0.007916469,-0.06451337,-0.60759455,0.03044183,0.21593751,-0.13122264,-0.09669936,-0.889541,-0.22436915,0.120714225,-0.25474614,-0.2827605,-0.6105748,-0.07367664,0.43475887,-0.074907176,-0.32649598,0.0841205,0.21561462,-0.07462856,-0.51846784,0.051094867,-0.25753975,0.15885809,-0.12706167,-0.4521166,-0.11086834,0.1579348,-0.48512176,0.17594638,-0.28122026,-0.26912776,-0.06584852,-0.08206351,0.16084656,1.0661057,-0.08881542,0.22013003,-0.20739375,-0.5919295,-0.6416218,-0.42522258,0.16781078,0.0026388397,0.08949372,-0.58629984,-0.0142553905,-0.25349504,-0.055579368,-0.05542324,-0.16405998,0.40404022,0.12320647,0.48860946,-0.19561622,-0.6354542,0.44782272,-0.002130561,0.13981804,-0.28043988,0.34863186,-0.0032817882,0.80059755,0.14091939,-0.003464098,0.1111784,-0.41030914,0.08254468,-0.09394029,-0.08925912,-0.35809788,0.24356405 +878,0.58812827,-0.12775876,-0.44466925,-0.0774823,-0.3554784,0.27181,-0.23136866,0.23933715,0.32915872,-0.16784894,-0.124166235,-0.14798585,-0.18948634,0.20581464,-0.1606798,-0.54456484,-0.24249229,0.081674114,-0.5731441,0.742947,-0.34088293,0.43806198,-0.030153438,0.2909158,0.46536222,0.2689349,0.028982326,0.018468149,-0.19522637,-0.3142919,-0.16385508,0.22062987,-0.58060825,0.23820774,-0.27278274,-0.27803633,-0.13905989,-0.48750585,-0.40677628,-0.78175646,0.20320252,-0.74843,0.52261895,-0.044281084,-0.20709875,0.14501868,0.23757151,0.2806676,-0.041803055,-0.006389519,0.1596854,-0.27134514,-0.12616874,-0.096215695,-0.36424837,-0.5328293,-0.6432231,-0.02280489,-0.5357187,-0.19807231,-0.34139156,0.21745837,-0.33630192,-0.13272941,-0.030222565,0.6013216,-0.50494564,0.26062262,0.04928175,-0.11913951,0.021296237,-0.634555,-0.15596266,-0.10921042,0.20245662,-0.013013443,-0.13194466,0.2202661,0.25434497,0.40446943,0.12316422,-0.22903442,-0.56162846,-0.015822858,0.2510219,0.4329419,0.015774881,-0.24359174,-0.19657958,-0.12378688,0.25084943,0.2599443,0.18374473,-0.3699869,-0.111326754,-0.071244225,-0.23209864,0.5844508,0.48372787,-0.20370461,-0.2079261,0.3287568,0.4993152,0.34348553,-0.35829717,0.16506763,-0.14249769,-0.31981722,-0.011361621,0.15386868,-0.11831193,0.544976,-0.05434861,0.18871991,0.63681483,-0.069253564,-0.16562714,0.033058915,0.07201585,-0.092812665,-0.08148308,-0.14511248,0.27785942,-0.32562706,0.18983474,-0.10409304,0.6774007,0.089542694,-0.7135254,0.27622014,-0.5592301,0.09214661,0.13135016,0.5815232,0.71638846,0.4702698,0.2985849,0.6440659,-0.22779605,0.11699411,-0.12263481,-0.23789775,-0.109592564,-0.25698853,0.09471743,-0.5399883,-0.01667314,-0.11480665,-0.018238246,0.057077814,0.70844823,-0.4535922,-0.15863274,0.14317155,0.7778896,-0.20589061,-0.18902948,0.90713686,1.0453787,1.1790994,-0.0020965654,1.0234652,0.21948817,-0.20846868,-0.06046358,-0.41500992,-0.56720495,0.2480546,0.13969234,-0.42973885,0.3315871,0.12778413,0.084946595,0.4598759,-0.37313318,0.10454822,-0.052096628,0.11597434,0.24887887,-0.12816791,-0.3538173,-0.22920415,0.12428428,0.13692102,0.13779192,0.21541281,-0.3076273,0.3604995,0.11591561,1.3802695,0.06405687,-0.08071697,0.07889178,0.47050858,0.14829211,-0.21894355,0.004107021,0.27474332,0.39976096,0.01873234,-0.5339502,0.07585354,-0.23616476,-0.43253204,-0.20897317,-0.30704665,-0.26751184,-0.035713755,-0.28123388,-0.28015187,-0.14109083,-0.5573642,0.45956954,-2.6747444,0.042559993,-0.14298683,0.18373623,-0.20794468,-0.30782714,-0.038154654,-0.59120244,0.26497644,0.260865,0.36429274,-0.5821587,0.4145006,0.45544738,-0.6684066,-0.13397576,-0.51985717,-0.021281306,-0.008606303,0.5768263,-0.06116588,-0.018620778,0.030519865,0.13888215,0.56615436,0.09988888,0.19602296,0.38887393,0.43901402,-0.18071738,0.5528281,0.030726755,0.542827,-0.219877,-0.20696324,0.5624935,-0.42835295,0.25322497,-0.28080317,0.08975373,0.43511337,-0.36313856,-0.855569,-0.6059754,-0.3408087,1.2189881,-0.301441,-0.61292106,0.21429887,-0.25149626,-0.19148266,-0.07936469,0.55800825,-0.10605586,0.0029549114,-0.683535,-0.020383198,-0.11935154,0.16257937,-0.099780254,0.029081132,-0.37953657,0.73969716,-0.028530348,0.5370716,0.22122778,0.3659576,-0.38516104,-0.5209319,0.1959804,0.88605577,0.41067198,0.0973403,-0.37313384,-0.12082407,-0.23154718,-0.18950136,0.05605744,0.7194114,0.6291835,-0.1351638,0.14233807,0.23741056,-0.09407012,0.09028731,-0.28329867,-0.24411003,-0.14814644,0.061996378,0.5068819,0.67418957,0.028866611,0.5477464,-0.07587123,0.32397017,-0.076331064,-0.36886474,0.44208765,0.81396693,-0.22263388,-0.39645994,0.5019695,0.54837185,-0.25783932,0.4889415,-0.5574395,-0.39669302,0.5164605,-0.12922353,-0.55505544,0.20778035,-0.3855788,0.04302606,-0.77891415,0.13573027,-0.21722384,-0.59821314,-0.46704423,-0.22478661,-3.063589,0.05045008,-0.15952902,-0.21980323,-0.115745604,-0.16789451,0.10694479,-0.52391344,-0.56175476,0.03913343,0.18026656,0.5867936,-0.06526787,0.07980977,-0.26844263,-0.3992361,-0.32474643,0.30656448,0.06470237,0.5006744,-0.2807629,-0.52776325,-0.08821604,-0.14883305,-0.31358933,-0.19547305,-0.50472915,-0.33525276,-0.06014369,-0.5212026,-0.19781259,0.5606669,-0.5275663,0.05934532,-0.27305692,-0.014809534,-0.0046450347,0.18433142,0.14151429,0.22041453,0.14204428,-0.1635142,0.03357096,-0.24722238,0.377204,0.031957548,0.33961034,0.43449754,-0.023805052,0.29736727,0.37311208,0.5773455,-0.2207575,1.1034956,0.4391381,-0.13447538,0.4024793,-0.21574047,-0.2980214,-0.7035338,-0.15044057,0.08225542,-0.4839698,-0.51649845,-0.12881327,-0.20501801,-0.86071444,0.44289038,0.029148648,0.45719525,-0.12563491,0.121831566,0.5080962,-0.10576803,-0.06036387,-0.09463308,-0.14656915,-0.2786057,-0.50587326,-0.60126114,-0.59984845,-0.025194734,0.96122825,-0.07374351,-0.07780422,0.24314044,-0.38561034,-0.06150953,0.23089716,0.19161287,0.11115428,0.509347,0.04710031,-0.6284565,0.42911625,-0.23898253,0.13030864,-0.5643142,0.12554157,0.48106512,-0.5956098,0.477149,0.17077088,0.1913878,-0.21169373,-0.63864684,-0.14580452,-0.050237108,-0.2282151,0.48882684,0.36845034,-0.68771183,0.42562518,0.1334478,-0.12965868,-0.7161169,0.5153803,-0.12138371,-0.22599036,-0.05950305,0.50791097,0.19264527,-0.0162692,-0.124682605,0.23091327,-0.3236879,0.3015837,0.13098186,-0.15365359,0.23325782,-0.2089715,-0.25479484,-0.79641366,0.14815092,-0.32011816,-0.4365111,0.19195724,0.08076924,0.1587605,0.32407165,0.020939223,0.31411645,-0.16430245,0.13183323,-0.22853903,-0.17538625,0.34282213,0.4692681,0.66146326,-0.4499301,0.54937387,0.11000916,-0.11464988,0.11578793,0.11528007,0.39530274,-0.093713894,0.40695578,0.18727304,-0.2701365,0.21263269,0.76581866,0.31563014,0.5205246,-0.107402876,-0.32711667,0.27553955,0.11991364,0.21752867,-0.14034867,-0.6268362,-0.092992,-0.2970225,0.21922565,0.4795628,0.040731844,0.46567905,-0.1222716,-0.100928806,0.13862345,0.14386205,-0.051870324,-1.2023263,0.19358256,0.23772955,1.0081828,0.4370237,0.065045245,0.008040518,0.5758407,-0.2361058,0.07937819,0.5236043,0.05506747,-0.40560424,0.52574986,-0.74658716,0.5896616,-0.06633451,-0.04174667,0.2144011,4.0266663e-05,0.46432343,0.7443783,-0.2825951,-0.045007214,-0.021165587,-0.41806716,0.06857444,-0.3156833,0.2830441,-0.5407581,-0.26792282,0.7628062,0.6581696,0.31440133,-0.25059244,0.023889484,-0.0035440773,-0.20575511,0.062320184,0.0698785,0.01284273,-0.25502515,-0.6008708,-0.11192246,0.55598515,-0.16958621,-0.071725,0.16370265,-0.19222024,0.19276053,-0.11064319,0.024045322,-0.051142357,-0.6846517,-0.12992665,-0.19004093,-0.45275438,0.45989636,-0.19319203,0.30111557,0.18737604,-0.020317925,-0.3581281,0.42292055,0.23453012,0.69674575,0.038222868,0.046793655,-0.29411912,0.08482614,0.23019521,-0.1857355,-0.20717452,-0.19278774,0.17317818,-0.61775845,0.2998767,-0.27526507,-0.38054383,0.027940858,-0.16394201,-0.04445718,0.6255308,0.088282846,-0.10137054,0.20524141,-0.06667968,-0.2758277,-0.1436696,-0.15348618,0.28764522,0.08061458,-0.2727039,-0.11110856,-0.11029232,0.011189379,0.1609177,-0.11725498,0.38634053,0.31554383,-0.076769084,-0.34266794,0.06990287,0.17540172,0.5184508,-0.018538307,-0.0032030493,-0.16865575,-0.2666138,-0.47841305,0.29769772,-0.100778416,0.34542343,0.09350271,-0.3829837,0.77454746,0.07538439,1.2026343,0.08170263,-0.51012987,0.16082269,0.50595933,0.0023755096,-0.04215586,-0.23518695,0.95601904,0.5195142,-0.03351897,-0.14728962,-0.260037,0.08388785,0.17742468,-0.28187448,-0.1552006,-0.041219007,-0.60164094,-0.030939326,0.16261303,0.1356484,0.03580328,-0.063644916,-0.1167583,0.26201868,0.17089501,0.3619384,-0.4571335,-0.14803278,0.21938702,0.22933596,-0.050607916,0.06860021,-0.44439226,0.38339087,-0.6736665,-0.034407254,-0.23297039,0.24685983,-0.4141497,-0.1589452,0.32841635,0.05630163,0.3707587,-0.3506001,-0.44402704,-0.38224792,0.3838401,0.032391146,0.15487158,0.5406257,-0.30168858,0.08286802,0.017345004,0.42939433,0.95785517,-0.29773915,-0.10926575,0.23999438,-0.51729095,-0.6449422,0.2605083,-0.490132,0.15260762,0.07740872,-0.2552133,-0.32503924,0.3139645,0.12568448,0.05097347,0.07293315,-0.54969704,-0.0046864785,0.18226147,-0.30536214,-0.18927911,-0.18641388,0.11251762,0.6195189,-0.28623503,-0.38593698,-0.031458817,0.35647246,-0.2250824,-0.56624895,0.07458049,-0.18609788,0.36110088,-0.044600785,-0.36586112,-0.17798084,0.081953086,-0.5086868,-0.04798849,0.44137967,-0.29776245,-0.080298826,-0.26036388,0.055347126,0.8397384,-0.22826463,0.27606085,-0.50106335,-0.5184541,-0.8670707,-0.4277777,0.10271616,0.31319016,-0.12071779,-0.5841864,-0.09237002,-0.33461213,-0.06378932,0.09026867,-0.50080216,0.33959448,0.23282677,0.38008288,-0.17142908,-0.8962599,0.044453293,0.17260309,-0.11834764,-0.5428775,0.51393306,-0.087383136,0.71964586,0.09765517,0.12408381,0.18454073,-0.74518335,0.098056614,-0.10924809,-0.10810253,-0.717994,0.1213667 +879,0.5057654,-0.3038157,-0.27332747,-0.09040812,-0.09202275,-0.04808254,-0.040411897,0.5698465,0.22431406,-0.41248834,-0.05611364,-0.17852037,-0.017323613,0.1489906,-0.1923771,-0.45462126,-0.094193906,0.08949855,-0.20010056,0.571689,-0.30026707,0.33174106,-0.061953723,0.324421,0.1473205,0.30810434,0.112970464,0.0034713666,-0.2559662,-0.12779325,-0.075393334,0.31466103,-0.38243192,0.18828283,-0.22187051,-0.34789288,0.08809838,-0.42855608,-0.35918573,-0.7075765,0.24779662,-0.7343878,0.41064036,0.091651164,-0.2936135,0.432126,-0.047632296,0.16011347,-0.22804521,-0.06894554,0.12305413,-0.12035029,0.056847285,-0.3163869,-0.04528815,-0.17946434,-0.41236734,-0.024175556,-0.24181433,-0.20150666,-0.27171147,0.07616757,-0.278004,-0.1781982,-0.04958178,0.51402485,-0.47063726,-0.059992496,0.12814869,-0.11425828,0.3651578,-0.60790664,-0.25321096,-0.12564152,0.113118865,-0.23731026,-0.1026757,0.43573084,0.15157671,0.4742223,-0.13586667,-0.15247406,-0.4488674,0.024365246,0.010575998,0.39888513,-0.2165796,-0.3798209,-0.0083494885,-0.06942605,0.012989683,0.12511857,0.23284216,-0.093274,-0.1430033,-0.0843937,-0.07228195,0.09259401,0.46723735,-0.2807863,-0.2685326,0.2863491,0.51149726,0.03838666,-0.094820775,-0.18618196,0.0029854467,-0.32450053,-0.2668077,-0.02275596,-0.26383877,0.5797681,-0.013043621,0.21381591,0.6118256,-0.09675423,0.084577575,-0.07457033,0.13884555,-0.069303595,-0.36589357,-0.25621027,0.3729077,-0.38366044,0.08992834,-0.11604377,0.62396467,0.073731415,-0.69005257,0.28428176,-0.3873143,0.080566175,-0.06669508,0.4109268,0.581718,0.44217154,0.33889467,0.5613009,-0.5670554,0.02069544,0.029546378,-0.28580576,0.058746424,-0.22220829,0.0008482615,-0.5033857,-0.04370873,0.12765485,-0.09168613,0.18572263,0.25255638,-0.41041374,-0.0033650121,0.33509833,0.7368434,-0.21022496,0.0017513196,0.58181113,1.0456487,0.95209086,0.011054758,0.958844,0.1476299,-0.24612331,0.38165146,-0.2550666,-0.6038867,0.16418651,0.4280357,0.00045019787,0.21691899,0.13248596,-0.024633206,0.46045983,-0.32928675,0.036574602,-0.1255553,0.11983571,0.05174936,-0.045867383,-0.5990145,-0.31461135,-0.19644454,0.117843,-0.12428498,0.26410112,-0.077965096,0.3177955,-0.0025933743,1.5547388,0.008703819,0.08448691,0.14206983,0.5014868,0.13004535,-0.08472336,-0.059677385,0.26253366,0.07138697,0.14877822,-0.45238906,0.089571044,-0.13858394,-0.5562297,-0.05930036,-0.3063065,-0.013190311,0.06524301,-0.514656,-0.23083314,-0.16425568,-0.19793501,0.35558942,-2.7979085,-0.033845283,-0.053829256,0.23985483,-0.2704565,-0.37315553,0.012427783,-0.40238392,0.39967576,0.4538647,0.48297614,-0.6288707,0.051571485,0.46789116,-0.43077672,-0.045540713,-0.48307458,-0.14408621,-0.080524065,0.39253324,0.09897906,-0.090846494,0.11465263,0.10519159,0.47084206,0.05278855,0.12962581,0.10193911,0.24203883,-0.14744285,0.32553452,-0.035605453,0.36210716,-0.2851427,-0.19330594,0.35449687,-0.32163355,0.16819698,-0.1818209,0.1777378,0.4381893,-0.3508288,-0.8429958,-0.52938104,-0.2361443,1.2096614,-0.063488565,-0.39096564,0.33710277,-0.23968147,-0.17998074,-0.1547919,0.40402266,-0.042408314,0.027729634,-0.73231214,0.057573866,-0.15304986,0.08249684,0.025679478,-0.093803026,-0.54319596,0.69796443,0.054850195,0.49943474,0.45596403,0.11764345,-0.2437714,-0.44011393,-0.031579774,0.73612744,0.46621454,0.23111637,-0.20781142,-0.10574827,-0.19608463,-0.058975816,0.13703528,0.38840705,0.65359306,-0.06848069,0.16116728,0.2263965,-0.003995295,0.008481589,-0.052445617,-0.2500406,-0.030549072,0.20478335,0.53539544,0.66542643,-0.17238021,0.28458756,-0.072839566,0.2854791,-0.2329662,-0.3793005,0.38709736,0.8750947,-0.09491159,-0.16913038,0.6546484,0.6054478,-0.21904305,0.5064773,-0.62882733,-0.38177413,0.38272712,-0.29851672,-0.42324173,0.13529132,-0.30358344,0.09235556,-0.9331811,0.21291906,-0.2355162,-0.34895363,-0.7664631,-0.10326044,-3.3603005,0.2528596,-0.28448874,-0.2288943,0.10669913,-0.04571619,0.15331322,-0.7781529,-0.38167733,0.20166369,0.061816026,0.5274164,0.038729955,0.033157777,-0.23345593,-0.36337286,-0.10953555,0.09905606,-0.00058907666,0.2964861,0.0069265882,-0.5813342,-0.029981613,-0.2012857,-0.43485656,-0.06583522,-0.45512435,-0.44303587,-0.19750914,-0.5979946,-0.3399671,0.5611474,-0.17599243,0.08572211,-0.16390464,-0.09392168,-0.17179285,0.30945206,0.14044362,0.28410295,-0.035490878,-0.054344997,0.062280156,-0.3593887,0.2008793,0.12165357,0.18446651,0.46738335,-0.28456995,0.10980951,0.5011756,0.5458237,-0.26305592,0.80259573,0.5379999,-0.13504806,0.29787332,-0.23945752,-0.19526939,-0.597277,-0.4663285,-0.027861131,-0.27015778,-0.48221725,-0.019872237,-0.47179964,-0.7845583,0.60460293,-0.12455965,0.27795142,0.07712283,0.044534422,0.435572,-0.3581743,-0.13696764,-0.16509032,-0.01964375,-0.42440593,-0.38098326,-0.6837891,-0.5222782,0.10174273,0.94836634,-0.0735697,0.045244697,0.17261118,-0.02649991,-0.05940281,0.06986799,-0.022813955,0.03505489,0.3273409,0.073816665,-0.5915638,0.5747809,0.14124323,-0.09608718,-0.36573508,0.13902976,0.43202418,-0.5385065,0.5067489,0.33602324,-0.023001682,-0.121815905,-0.62375295,-0.19152887,-0.15979896,-0.21826427,0.4897534,0.2612097,-0.6961155,0.39574495,0.40603238,-0.32604995,-0.68188494,0.46103013,-0.1106332,-0.40861186,-0.077169426,0.28492022,0.027394764,0.079403974,-0.038973983,0.25332218,-0.37987363,0.255329,0.29217115,-0.0115648,0.23124808,-0.11800638,0.11686855,-0.77536166,0.14856276,-0.3607457,-0.25165623,0.2230094,0.024601463,-0.012569949,0.27199915,0.086000904,0.43918782,-0.1633372,0.078780174,-0.045590267,-0.23510893,0.34724802,0.3286419,0.47375125,-0.36987135,0.49977887,-0.004132966,-0.13282199,-0.2839972,-0.021575456,0.45408365,0.17819424,0.21478367,-0.15849856,-0.278499,0.1606012,0.71095186,0.18883643,0.4198931,-0.029935332,-0.11385676,0.27956593,0.18442564,0.21494861,0.036128085,-0.4036016,0.113103025,-0.2155982,0.080177315,0.37575468,0.09661339,0.29855072,-0.17758451,-0.15408143,0.15404418,0.250029,0.1021132,-0.9468092,0.175822,0.10407445,0.8194772,0.57417005,0.17730041,-0.09695102,0.7162348,-0.17811607,0.075179696,0.4042513,-0.0974401,-0.6250392,0.6070283,-0.5999788,0.3958811,-0.029609716,-0.083813,-0.10527388,-0.13448715,0.40392467,0.5654198,-0.11002719,0.051476184,0.029527454,-0.3450939,0.047808178,-0.3247519,0.18511118,-0.4666006,-0.17957065,0.5603283,0.5474573,0.28920242,-0.13961239,0.020871429,0.11567863,-0.088842295,0.18139571,0.094178386,0.1314995,0.01760232,-0.60087395,-0.08959249,0.4590977,-0.004708918,0.09907386,-0.17400599,-0.25236097,0.10864403,-0.14396405,-0.22526485,0.08918246,-0.5932593,0.061834164,-0.33596885,-0.3501976,0.5294831,-0.04033872,0.30319235,0.054330714,0.20528159,-0.30499873,0.25887343,0.15453042,0.7256073,-0.03622191,-0.10032733,-0.2887026,0.18718325,0.1572745,-0.11701386,-0.15342909,-0.14863601,-0.014014379,-0.516898,0.40632036,0.05175327,-0.12964235,0.09264056,-0.2132861,0.06520204,0.48589644,-0.05084084,-0.27745205,-0.13601342,-0.091534585,-0.34812444,-0.25213906,-0.06707653,0.3930683,0.03600224,0.043291457,-0.12644884,-0.06344538,0.066613145,0.4931065,0.054979857,0.25333744,0.22376558,-0.10902412,-0.3820595,0.048911702,0.025376145,0.3400089,-0.09637952,0.066501126,-0.3139777,-0.40684927,-0.36781532,-0.08711567,-0.09385112,0.33414263,0.11113548,-0.17222244,0.7570363,-0.057997484,1.0466605,0.030326229,-0.4116738,0.0136237545,0.38751385,-0.17879263,-0.039278213,-0.33938658,0.97585493,0.5680923,-0.05157918,-0.11057455,-0.2441747,0.032852016,0.22742733,-0.14241362,-0.08461639,-0.053130787,-0.682544,-0.24241824,0.29826936,0.37980407,0.13390215,-0.05996644,0.10203626,0.24798249,0.14065424,0.33364442,-0.3882299,-0.17490754,0.40310812,0.23298746,0.09286005,0.15035671,-0.3869322,0.36305434,-0.55347353,0.07792829,-0.31325808,0.04389535,-0.37465802,-0.28466195,0.17176743,-0.0846323,0.3257355,-0.29906318,-0.35172728,-0.24000041,0.4982597,-0.08006497,0.10842634,0.4822779,-0.20806056,0.11758087,0.015876558,0.3973922,0.9509267,-0.31038803,-0.080339685,0.3566993,-0.26873606,-0.6438258,0.33487853,-0.092308216,0.085450396,-0.2197581,-0.2063126,-0.52403754,0.20269182,0.25030667,0.05643065,0.0038997093,-0.48779732,-0.046713956,0.21279217,-0.3456175,-0.2234588,-0.24761301,0.064407855,0.5321877,-0.21811499,-0.3297127,0.110611014,0.27179235,-0.24709328,-0.46387526,-0.024590492,-0.32397875,0.28251678,0.14856115,-0.41199917,-0.08232947,0.06661664,-0.3051468,0.05356912,0.2192578,-0.3038913,-0.014228014,-0.47806397,0.08772079,0.9162663,-0.050561003,0.19206749,-0.46526897,-0.51843613,-0.937617,-0.40680638,0.59924495,0.11059824,0.040317945,-0.5469716,0.19110054,-0.23390834,-0.0066408715,-0.1259518,-0.22192436,0.38395292,0.1861046,0.31167927,-0.16100611,-0.45259243,0.07152782,0.19467758,0.0012652775,-0.39342734,0.40209255,-0.043887593,0.8411717,-0.017259778,0.10885319,0.2949908,-0.4746605,-0.07450464,-0.1816758,-0.33685666,-0.44551653,-0.066282235 +880,0.2923384,-0.11301792,-0.49708357,-0.111555584,-0.21593182,0.11484976,-0.2605073,0.5026204,0.26645947,-0.36109835,-0.23131858,-0.23067532,0.25409544,0.33358055,-0.25236467,-0.8645584,0.12600984,0.2629562,-0.568722,0.6902016,-0.4496588,0.30026838,0.10021825,0.35896412,0.009058193,0.17506908,0.29683307,-0.057259664,0.03896667,-0.12309063,-0.1945689,0.46123543,-0.51391166,0.09826026,-0.32670546,-0.36553708,0.19246987,-0.5192653,-0.25383168,-0.8759127,0.25251144,-0.7300452,0.584236,0.24198528,-0.31146267,0.10573179,0.18182203,0.33459428,-0.1583299,0.0025852919,0.10035506,-0.21954934,-0.2414825,-0.1686509,-0.33020213,-0.4496962,-0.637809,0.08855634,-0.49987376,-0.27595934,-0.09809788,0.1533834,-0.25226218,0.09787674,-0.15025857,0.5013646,-0.3520744,0.009450054,0.36657265,-0.28585884,-0.0040866635,-0.54984784,-0.06933065,-0.05519541,0.36248758,-0.29308027,-0.24460696,0.14403114,0.33941975,0.66236854,0.019579776,-0.35179117,-0.08282008,-0.17249231,0.041270185,0.5671949,-0.09567412,-0.65670574,-0.20341277,-0.038161375,0.1599488,0.23250872,0.08653025,-0.39553443,-0.11720113,-0.19097929,-0.12791143,0.34944457,0.574323,-0.5058825,-0.19195332,0.16783875,0.5366385,0.13421527,-0.027689664,0.21443692,-0.013110464,-0.66636753,-0.14160372,-0.030688198,-0.18197322,0.6979614,-0.0887115,0.1494287,0.5197212,0.021023529,-0.050187778,-0.018349953,-0.01168586,0.020568753,-0.40726897,-0.3238137,0.35591614,-0.37923667,0.046111904,-0.40008172,0.7268762,0.31302077,-0.68707395,0.36900347,-0.5371896,0.20483539,0.05174261,0.62117463,0.62195325,0.16513464,0.23922561,0.5110237,-0.45910767,0.17679971,-0.099321805,-0.26766062,-0.116395496,-0.027115524,0.1785052,-0.46590754,0.17550255,-0.11126713,-0.108404875,0.21916993,0.4273416,-0.596648,-0.19958267,0.011780123,0.7751077,-0.27195075,-0.060455646,0.8581284,1.0439551,0.76870006,0.019660855,1.3551742,0.3107047,-0.1086053,-0.12715761,-0.06883349,-0.60231787,0.17894514,0.33813682,0.034088697,0.22904018,0.027498087,-0.10055837,0.4152184,-0.47300574,0.010254946,-0.119437546,0.045703888,-0.13421996,-0.06287113,-0.4916729,-0.21339503,0.05829538,0.099490404,0.2791507,0.29455438,-0.086636096,0.47657776,0.06692168,1.232953,-0.06417396,-0.018386213,0.1654609,0.15786281,0.35208175,0.039310392,-0.086913235,0.25089204,0.322014,-0.090178296,-0.54333806,0.026558459,-0.25256914,-0.30075693,-0.23054789,-0.24367593,-0.12715146,-0.049097486,-0.45848504,-0.018793143,-0.10085633,-0.25833246,0.3800889,-2.5769105,-0.15713316,-0.21608743,0.41538522,-0.021582939,-0.344946,-0.12976888,-0.5134672,0.44421288,0.28078917,0.38738194,-0.6224168,0.38540363,0.5171384,-0.5117256,-0.1907716,-0.74671495,-0.076882556,-0.04288521,0.38916484,0.05408722,-0.045228533,-0.026529752,0.2421748,0.53723675,0.117182106,0.08331548,0.12212377,0.43568262,0.04649352,0.2950283,0.14913139,0.5992065,-0.18899703,-0.18609837,0.36663297,-0.35419273,0.3232109,-0.13767897,0.09650158,0.32562292,-0.37945935,-0.5846975,-0.6190031,-0.33432662,0.8941136,-0.04638288,-0.49861392,0.21996339,-0.23072007,-0.28097692,-0.022937234,0.6301452,-0.15654565,-0.010274136,-0.70562965,-0.033564948,-0.045035712,0.16828986,-0.019154586,-0.041617975,-0.5753502,0.639889,-0.1644322,0.3194558,0.4397624,0.29009402,-0.08674895,-0.49828818,0.09264679,0.9159906,0.33061838,0.061572675,-0.21014255,-0.17766477,-0.31469855,-0.10716538,-0.10344132,0.7727676,0.6987831,-0.14932217,-0.029751837,0.2648365,0.20480813,0.19581455,-0.26243037,-0.32984537,-0.05213367,0.026327515,0.65189177,0.6789958,-0.347836,0.25358215,0.005031247,0.47284,-0.1970777,-0.3925036,0.432303,0.8877891,-0.12817009,-0.22522703,0.712382,0.41881225,-0.3084207,0.44408455,-0.6647174,-0.3116105,0.45513883,-0.1541109,-0.47428513,0.30315652,-0.25635812,0.17533779,-0.8749019,0.32808846,-0.21777773,-0.30843338,-0.58269554,-0.11259169,-3.1565118,0.19663455,-0.2641452,0.010112105,-0.22795358,-0.15713467,0.043127354,-0.48207322,-0.5798303,0.29628676,0.056753684,0.43992805,-0.1859445,0.13454607,-0.31018317,-0.29420382,-0.055480354,0.21699378,0.14169882,0.31375918,-0.18922012,-0.25474304,0.09755937,-0.21651922,-0.38741615,0.09285491,-0.7824835,-0.36670426,-0.076248236,-0.6583815,-0.2151599,0.6566154,-0.4545862,0.05460159,-0.27671164,0.09917007,-0.20820884,0.21524051,0.21676469,0.2500182,0.115619466,0.07113611,-0.0105191935,-0.34150383,0.10111448,0.028675178,0.21380393,0.2755013,0.0077302675,0.12950605,0.1904702,0.6439442,-0.004687828,0.7665415,0.34426668,0.037733767,0.2057728,-0.1829259,-0.43027624,-0.42228037,-0.2450656,-0.1160304,-0.40884224,-0.4482617,-0.16833092,-0.36305946,-0.7250993,0.5137355,0.077418834,-0.12438986,-0.01955506,0.3141152,0.47891173,-0.21571493,0.04051238,0.030692337,-0.03194441,-0.44683567,-0.28739932,-0.60425955,-0.4898936,0.10378386,0.7524651,-0.15262823,0.11361076,-0.03336418,-0.08153724,-0.08167512,0.38519993,0.19520721,0.13029875,0.6586305,-0.10760568,-0.6762698,0.49262798,-0.1004175,-0.51586145,-0.6547021,0.16290052,0.42764983,-0.7485876,0.6896999,0.45085213,0.09846275,-0.030356407,-0.5065178,-0.14798893,0.16241245,-0.23194847,0.46639988,0.18857667,-0.60119474,0.43398973,0.15288241,-0.09247183,-0.80811924,0.6313803,0.005775717,-0.4975406,0.12978873,0.4935107,-0.035417754,0.032042682,-0.203039,0.07793459,-0.341345,0.15899521,0.29351628,-0.1526558,0.36428306,-0.3431782,-0.12871735,-0.8131805,-0.065714575,-0.6290601,-0.10250134,0.10057592,-0.0136183975,0.038333558,0.063334376,-0.08513538,0.3638095,-0.504342,0.18767732,-0.1370552,-0.38651243,0.34662881,0.4342124,0.29146296,-0.2586932,0.6758363,-0.021331983,-0.09164902,-0.1938847,0.10480079,0.517874,-0.02519737,0.46116862,-0.17920011,-0.034629773,0.3147302,0.74881554,0.15023175,0.32549557,0.28338525,-0.00054153,0.34098542,0.05897916,0.08835128,-0.0898685,-0.40539196,-0.010130993,-0.21660581,0.043706916,0.42193168,0.083635755,0.51855004,-0.05091369,-0.45408118,0.10119703,0.14780317,0.17275171,-1.0557331,0.14642797,0.04558382,0.77593744,0.46167526,0.13737066,-0.029490102,0.4102932,-0.15098219,0.06610004,0.22395284,-0.041780163,-0.28576502,0.5569593,-0.4843827,0.44445375,-0.13555534,0.013355406,0.10161494,-0.15665706,0.29695866,0.77471226,-0.22752495,0.026250707,-0.13795604,-0.026489517,0.06277183,-0.38863915,0.099380866,-0.3516657,-0.3771891,0.6507766,0.5594736,0.29739907,-0.41153127,0.021583123,0.3269428,-0.1347566,0.023370566,0.035491552,0.099018894,0.08055758,-0.43919283,-0.1548014,0.5810758,-0.021770652,-0.05632758,0.019134903,-0.3825592,0.20711541,-0.021688279,0.048640687,-0.1843967,-0.73561317,0.111550696,-0.3511201,-0.45473334,0.5297409,-0.23003308,0.14363307,0.23833063,0.116896264,-0.41238025,0.40741378,0.00019777616,0.81761914,0.121842824,-0.058021978,-0.297834,0.13688318,0.2691557,-0.25289413,-0.089065835,-0.41910717,0.2581628,-0.59088016,0.32655352,-0.019793903,-0.2413173,0.0006680012,-0.061016615,-0.0036659082,0.42795867,-0.020733245,-0.17039837,0.22416793,-0.03478628,-0.1894411,-0.16229934,-0.12504223,0.3146209,0.18693566,-0.046548475,-0.11445756,-0.06562253,-0.28838742,0.37311095,0.090949945,0.30886352,0.38746324,0.08336905,-0.23440309,0.12485723,0.10065891,0.47064018,-0.13010393,-0.23185202,-0.12766744,-0.53482527,-0.36745414,0.1275555,-0.14793777,0.30612087,0.08364369,-0.09683082,0.72936696,0.18132421,1.1375222,0.01406045,-0.42542973,0.13582514,0.5474586,-0.016440192,-0.068022266,-0.28489387,1.1318582,0.5115249,0.04373208,-0.06663999,-0.30025962,0.12334199,0.10442993,-0.09760318,-0.07156099,0.0027228743,-0.5950801,-0.17390993,0.18554208,0.24644928,0.21055399,-0.11944902,0.21444543,0.1404533,-0.04338282,0.31667346,-0.6486177,-0.13336603,0.23573135,0.10175896,-0.020710047,0.10396166,-0.38847283,0.47182962,-0.43350145,0.0719119,-0.5592727,-0.0019601742,-0.2552363,-0.1663435,0.18064903,-0.17199683,0.3184058,-0.47553375,-0.27171603,-0.36705488,0.35055372,0.32920587,0.09365876,0.59773487,-0.14389415,-0.10084961,0.13538428,0.7550234,1.1417961,-0.27417532,0.062192682,0.3964689,-0.314805,-0.5099682,0.13758487,-0.40298575,0.038385555,0.021797316,-0.14078316,-0.52517307,0.120396785,0.09120711,0.009555042,0.095794536,-0.6235412,-0.21524054,0.35160968,-0.23437214,-0.27718323,-0.36006394,0.25013202,0.8326332,-0.10937481,-0.38650444,0.040924683,0.09425284,-0.2257963,-0.9155411,0.060519684,-0.3224922,0.2947201,0.1806369,-0.2894997,-0.17798987,0.1471425,-0.4086284,0.15410501,0.34804145,-0.31842643,0.09556586,-0.24117932,-0.11155169,1.0192429,-0.19989444,0.20249636,-0.5659936,-0.5461355,-0.8463057,-0.4004469,0.5272225,0.16198722,0.042741936,-0.544961,-0.12133904,-0.23945396,-0.031314038,0.11505556,-0.19657764,0.40951115,0.17424823,0.55824214,-0.15758051,-0.91329485,0.043949984,0.08377288,-0.4511124,-0.46124583,0.3505911,0.21819133,0.75618136,0.037886772,0.02631849,0.3325408,-0.44727203,0.05422617,-0.3284434,-0.02016342,-0.6943435,0.07316233 +881,0.50488985,-0.16454393,-0.5293517,-0.17000352,-0.2804147,0.11283132,-0.19164899,0.22966796,0.2953761,-0.22115152,-0.27858257,-0.071717896,0.17205404,0.40608552,-0.08338984,-0.9348218,-0.09683072,0.2184278,-0.7528382,0.31528282,-0.6920115,0.40532494,0.08465176,0.37255558,-0.037921224,0.31192365,0.31242493,-0.2703877,-0.001881847,-0.1477414,0.001709562,0.07089643,-0.7338455,0.188999,-0.11917861,-0.24860543,-0.053969033,-0.4819829,-0.29655758,-0.8223902,0.18812236,-1.1015633,0.48304027,-0.057529885,-0.14527997,-0.25594553,0.19936815,0.43873575,-0.45392036,0.26880074,0.23433624,-0.2729503,-0.2075465,-0.3408652,0.038843725,-0.42781323,-0.41618913,-0.09073082,-0.4661169,-0.29975873,-0.21805191,0.29973787,-0.42567953,0.030103339,-0.15775153,0.037750702,-0.45509374,-0.024919037,0.40287402,-0.32318053,0.27515322,-0.4272488,0.02883469,-0.111009054,0.5869647,-0.029324321,-0.21837792,0.43805504,0.37763426,0.41772333,0.31550005,-0.3164582,-0.09737485,-0.14134493,0.4304067,0.5564169,-0.22383429,-0.22813104,-0.29138714,-0.007046846,0.31268424,0.46296743,-0.03647619,-0.30726096,-0.05990433,-0.17113478,-0.12715667,0.48120254,0.5067518,-0.25251466,-0.4733175,0.38593844,0.6370714,0.3118057,-0.09104851,0.17280926,0.12177348,-0.6184031,-0.06707784,0.25833657,-0.016815342,0.43437943,-0.14848487,0.12874985,1.0361336,-0.30454525,0.054871082,-0.24763091,-0.16426541,-0.21858047,-0.3719996,-0.097563416,0.15488842,-0.53628254,-0.0765684,-0.26991266,0.7237438,0.3348997,-0.6453729,0.38772663,-0.58657676,0.2009686,-0.08672167,0.823376,0.6636678,0.31036207,0.31818193,1.0165786,-0.44096008,0.17596367,-0.014856293,-0.5425774,0.10046491,-0.28234753,0.15913388,-0.45449036,0.09080006,-0.14068995,0.14301008,0.012685271,0.5456363,-0.4427058,-0.13347921,0.031698607,0.752997,-0.43638816,-0.04188955,0.768663,1.0035214,0.80260336,0.08175176,1.3821406,0.49817038,-0.19579212,-0.016148897,-0.2823332,-0.8125706,0.19706582,0.32999313,0.021657284,0.3010598,0.05861008,-0.16492929,0.1803441,-0.5151123,0.06892106,-0.18485379,0.35175145,0.029694129,-0.06876951,-0.39869705,-0.109273836,-0.07618173,0.0131565835,0.3718505,0.17269666,-0.2423111,0.2852708,-0.08618906,1.3241944,-0.1490288,0.024156086,0.0024647932,0.54967844,0.29962462,-0.0051539997,-0.13136259,0.40174425,0.53422856,-0.11003124,-0.7101377,0.18064353,-0.20285495,-0.49114594,-0.08284019,-0.3213989,-0.14342757,-0.09893854,-0.24963096,-0.10238708,0.0109893745,-0.3351515,0.5498631,-2.3751843,-0.36613148,-0.092484936,0.3637454,-0.23432146,-0.09915709,-0.28957647,-0.50281394,0.34908274,0.23580784,0.5181509,-0.68815243,0.40880865,0.5599647,-0.50519025,-0.24905656,-0.7438758,0.04323358,-0.025244461,0.3957532,0.06595899,-0.06270509,-0.13152479,0.10114072,0.7678943,0.042002074,0.17570066,0.57075274,0.52909404,0.14089228,0.5712257,0.031315617,0.6981031,-0.2872933,-0.35178545,0.3737515,-0.41001034,0.39868677,-0.44366756,0.07745818,0.46821082,-0.34394816,-1.0925527,-0.6537354,-0.6041577,1.1052816,-0.40212804,-0.53147775,0.21104933,0.04355095,0.051297527,0.16357669,0.7422687,-0.12772274,0.20629069,-0.65877116,0.035722516,-0.09627259,0.176454,0.14613064,0.022031574,-0.23352772,0.78728706,-0.14952274,0.45848215,0.19394375,0.2137347,-0.12935421,-0.38662726,0.24029873,0.9127632,0.21158105,-0.012710436,-0.098868564,-0.33295992,-0.06676085,-0.3123015,-0.112751946,0.6662462,0.9047625,-0.1128799,0.099803954,0.34107834,0.009190578,0.031099655,-0.06692035,-0.2535115,-0.07303938,-0.08783539,0.45479548,0.8173517,-0.09405209,0.41140193,-0.33552557,0.25746262,0.02391649,-0.51816136,0.7594744,0.50570273,-0.19547534,-0.017306464,0.42761496,0.43321735,-0.42925632,0.5728379,-0.75039935,-0.31536564,0.67423207,-0.13679439,-0.44477364,0.26162207,-0.1956161,0.022183584,-0.80072397,0.40373814,-0.28308818,-0.45149463,-0.32617056,-0.15381287,-3.3714647,0.2803784,-0.21711275,-0.13899207,-0.47372425,-0.06872897,0.30941027,-0.44807333,-0.57098013,0.21702436,0.18497664,0.6508404,-0.034824196,0.1244918,-0.28023925,0.07652451,-0.09619357,0.15551153,0.059461173,0.34041616,-0.114113316,-0.35292667,-0.03199525,0.0041198637,-0.5219122,0.16777219,-0.69716775,-0.5704882,-0.0022181226,-0.48049784,-0.22281653,0.74285597,-0.7025417,0.06415132,-0.26432115,0.13881999,-0.34504122,0.346522,0.16300681,0.28955132,0.13379279,-0.12238769,-0.114476904,-0.20001896,0.65054893,-0.08907627,0.27615166,-0.03541163,-0.23453505,0.09685973,0.3617042,0.51696754,-0.21622899,1.0258685,0.19748658,-0.09499623,0.13334237,-0.32153624,-0.22791123,-0.72196126,-0.33755776,-0.081474155,-0.5587834,-0.6854983,-0.13878714,-0.3022396,-0.90074825,0.54331243,0.15757436,0.3100425,-0.09912639,0.19029823,0.33421662,-0.1407585,0.077431954,-0.13322505,-0.14782964,-0.5597294,-0.29086292,-0.5557134,-0.5009907,0.12225921,0.73680335,-0.35841992,-0.05894953,-0.07740052,-0.33862352,-0.06878535,0.03216789,-0.0795019,0.1721746,0.5430974,0.023949413,-0.6074574,0.46961787,-0.06831752,-0.1431382,-0.7398513,0.097741164,0.7142249,-0.889099,0.70105004,0.4562271,0.005270859,0.25924692,-0.49828145,-0.2809361,-0.15511261,-0.14432806,0.33811834,-0.068935186,-0.82606167,0.5597616,0.3247205,-0.5712887,-0.6936748,0.41108423,-0.114973456,-0.17471243,0.11223371,0.35683537,0.16864857,-0.06037806,-0.37535217,0.2033436,-0.44596407,0.37708193,0.06127242,-0.11865546,0.45331576,0.033559024,-0.5813237,-0.7657516,-0.046681546,-0.47364622,-0.27699023,0.2621609,-0.20512453,-0.16145024,0.11550697,0.23681863,0.43912455,-0.3763025,0.07460882,0.020507185,-0.40080833,0.13568267,0.45049095,0.47822702,-0.43327475,0.66053116,0.19491495,-0.23774458,0.22499411,0.19938253,0.53235984,0.17111863,0.44044983,-0.22587845,-0.052665032,0.2922689,0.91354597,-0.014204287,0.50663084,0.09566759,-0.24576777,0.49122518,0.15448959,0.2806733,-0.13448313,-0.42832822,0.166344,0.05826404,0.17970978,0.4325798,0.51731515,0.39742863,0.18423519,-0.16499138,-0.061703384,0.3725659,-0.07168204,-1.1266215,0.39681005,0.36867338,0.8178358,0.3293956,-0.1151056,0.06717504,0.58569694,-0.14328796,0.13142787,0.3766573,-0.16423838,-0.47647893,0.666319,-0.70439756,0.29202864,-0.2995361,0.030222306,0.3157614,0.35524148,0.4204973,0.8567832,-0.12669423,0.045554396,-0.16349055,-0.11141299,-0.084766254,-0.3311669,0.16792808,-0.457657,-0.44812113,0.7479123,0.4504586,0.35682958,-0.15088224,0.026523145,0.014110274,-0.23617122,0.1759871,-0.07898048,0.020655572,0.1906512,-0.6989146,-0.18388955,0.5695184,0.014097352,0.037243158,-0.140431,-0.24381536,0.13342085,-0.38629267,0.030226482,-0.08677114,-0.8014135,0.03858257,-0.3393079,-0.4092689,0.28440526,-0.19381224,0.21263528,0.28151008,-0.021707136,-0.12069383,0.2811341,-0.0073905266,1.060344,0.15361659,-0.55656564,-0.5559422,0.09546929,0.3241744,-0.4400601,0.04665061,-0.40038025,-0.017932829,-0.4069448,0.6424475,-0.32796142,-0.4101292,0.41715235,-0.41791227,-0.22507717,0.55923986,-0.14077748,-0.23077825,0.19331929,-0.37022063,-0.36952102,0.27629,-0.29671928,0.25921634,0.31139252,-0.10322352,-0.06644442,-0.22342198,-0.21628428,0.47470462,-0.06174544,0.42157158,0.24058221,0.14540918,-0.07272583,0.013425791,0.27802557,0.5693581,0.21937889,0.06656045,-0.2027026,-0.449621,-0.27089602,0.14945371,-0.19197315,0.19596142,0.088105015,-0.3320011,0.81499225,0.18800987,0.98618835,0.31041056,-0.38502425,0.1759807,0.56506944,-0.13529226,0.027012685,-0.5481399,0.8949554,0.5188246,-0.21787244,-0.0047441847,-0.5435846,-0.19100784,0.47246596,-0.4785647,-0.024888309,-0.095083565,-0.71491784,-0.49727422,0.2676349,0.16318448,0.1904545,-0.025369756,-0.025481822,0.07988365,0.19365095,0.52433276,-0.84405065,-0.27247328,0.18015625,0.25607532,-0.07849275,0.08913867,-0.20949635,0.52026814,-0.60680896,0.12198452,-0.5406407,0.120759405,-0.28594843,-0.31991082,0.1724208,-0.10267247,0.48854,-0.24406777,-0.49869233,-0.0014780256,0.3811909,0.19356214,0.20791116,0.6849293,-0.39825252,0.03813358,0.14116724,0.6509713,1.3647168,-0.548132,0.19778985,0.4920597,-0.40942332,-0.5128103,0.47228998,-0.42777854,-0.09438447,-0.1351324,-0.5945221,-0.5396075,0.30071095,0.15475792,0.1311517,0.1844539,-0.6432284,-0.056105394,0.32362863,-0.10988426,-0.33872733,-0.24083987,0.49637046,0.99136925,-0.35694605,-0.48196313,0.28787053,0.2676032,-0.43978184,-0.59877884,-0.07449167,-0.29000002,0.3444503,-0.04171054,-0.18224955,-0.024335958,-0.03095704,-0.49779797,0.20107096,0.21514997,-0.34579155,0.15899219,-0.0089021325,0.02381023,0.8613015,-0.27475855,-0.05413151,-0.8690872,-0.35284525,-0.9325123,-0.38751128,0.31583154,0.3211417,-0.017571606,-0.2741643,0.013991434,-0.14570038,-0.09043885,0.063744955,-0.7800401,0.37542835,0.07458269,0.6036578,-0.3179603,-1.0620599,0.14057069,0.118605174,-0.37448466,-0.85728234,0.5954183,-0.22161537,0.76814556,0.025040297,-0.12872015,0.05173727,-0.47460893,0.100642495,-0.42939156,-0.11871871,-1.0401073,0.23944257 +882,0.48121977,-0.11508049,-0.42146847,-0.103425376,-0.4943889,0.23144172,-0.24792029,0.1681826,0.2737748,-0.3599821,0.13266174,-0.10281504,-0.11610104,0.3243913,-0.24425754,-0.80046815,0.07177873,0.019855082,-0.5324984,0.28519243,-0.5621892,0.47651097,-0.029537043,0.4142095,-0.029915733,0.24070354,0.25992742,0.11567319,-0.06992249,-0.19188207,-0.13530105,0.025955152,-0.6006712,0.14667135,-0.06715553,-0.36712578,-0.054841485,-0.36751637,-0.30351964,-0.7044461,0.40367746,-0.940135,0.57692266,-0.096731946,-0.41491273,-0.04992493,0.0957388,0.23614031,-0.19274357,0.15870538,0.22427347,-0.40989923,0.16910067,-0.15310988,-0.5090777,-0.6996142,-0.574763,-0.032313026,-0.66676813,-0.22425547,-0.3624607,0.2717339,-0.37726027,-0.066412136,-0.28033578,0.47527474,-0.39359862,-0.008569344,0.1669715,-0.23470823,0.18194199,-0.5711727,-0.11079832,-0.1126352,-0.0029996932,0.14010294,-0.1236534,0.29875213,0.37502548,0.42373943,0.14758778,-0.3028473,-0.30012003,-0.07495246,-0.010398475,0.5874294,-0.06251868,-0.23702659,-0.40223625,-0.1562406,0.3820008,0.2597822,0.11237492,-0.4321364,0.11101257,0.103561334,-0.16322559,0.54004645,0.47919428,-0.35394132,0.011207272,0.36897156,0.25944793,-0.10930265,-0.3538981,0.2058831,0.002478508,-0.4356208,-0.14302363,0.2252991,-0.004859956,0.6423425,-0.11295045,0.1845801,0.71480304,-0.2703906,0.014908884,-0.088560246,-0.082932755,0.017624822,-0.27232292,-0.18576808,0.15180779,-0.4123906,0.08968518,-0.32515943,0.82807356,0.096334,-0.7973579,0.42982262,-0.39165443,0.027251076,-0.11842755,0.57539344,0.5735802,0.5356728,0.039352212,0.99146754,-0.5275178,0.07185147,-0.02190977,-0.30746958,-0.011866986,-0.06483842,0.0917833,-0.4238564,0.21768942,0.039170988,-0.083368786,-0.089603744,0.48091713,-0.32961968,-0.06470237,-0.12661846,0.8008235,-0.35863858,-0.046871733,0.83504385,1.1865833,1.0127517,0.068530075,1.2036074,0.38567713,-0.011293888,-0.1266085,-0.17346048,-0.3397527,0.16584603,0.33959386,0.36328205,0.23815322,0.015310908,-0.17841785,0.38345394,-0.27297685,-0.15765862,0.04592947,0.25505146,0.10856644,-0.09725811,-0.41433045,-0.12871295,0.2365536,0.17535795,-0.037279837,0.2126253,-0.3380419,0.44591275,-0.007658739,1.1239927,0.028950674,0.10776677,0.02012817,0.59589595,0.23553285,-0.15201446,0.15863937,0.17957227,0.2645361,-0.068795465,-0.5515538,0.06492121,-0.41621742,-0.47538865,-0.1999584,-0.2984052,-0.07052694,-0.1015131,-0.49220237,-0.19079074,0.08654149,-0.3186194,0.39546907,-2.4226053,-0.08728354,-0.2723908,0.40054676,-0.14442901,-0.34999937,-0.080035694,-0.5059008,0.39495334,0.37703496,0.30008525,-0.52153957,0.49550763,0.3933616,-0.17657022,-0.12678835,-0.7803792,0.13137835,-0.16205102,0.44229972,-0.04392337,-0.045015845,-0.18174252,0.25439805,0.8767712,0.14748304,0.043867633,-0.000980091,0.34355316,-0.058554288,0.46603107,0.036905702,0.604427,-0.20123383,-0.106011204,0.37741014,-0.49927014,0.11918948,0.05485781,0.14673895,0.41219488,-0.50136876,-0.74850553,-0.71037036,-0.44835818,1.1762011,-0.28226516,-0.6796532,0.34502488,0.08969545,-0.28038022,0.112980984,0.54209954,-0.031131828,0.044618748,-0.5524233,0.0269847,-0.12816483,0.13943094,-0.12516023,0.11537569,-0.32054678,0.610377,-0.2671413,0.54179174,0.31332567,0.3700972,-0.07795703,-0.44913763,-0.041630115,0.7777967,0.45599794,0.06932425,-0.061176784,-0.18693008,-0.18865229,-0.35865778,0.13808052,0.606045,0.75489354,-0.09074764,0.07411003,0.28073025,-0.3211773,0.08855322,-0.09388146,-0.30280045,-0.034193587,0.11239186,0.47579974,0.5082037,-0.05288623,0.35147968,-0.13162552,0.32206523,-0.3011376,-0.47216472,0.35215673,0.81592155,-0.21283413,-0.25874218,0.5429339,0.42130682,-0.36172745,0.35665885,-0.6337516,-0.24378143,0.6956398,-0.03419874,-0.5538854,0.024886219,-0.3363062,0.0058642407,-0.8357342,0.49184448,-0.19238065,-0.8907705,-0.31445286,-0.36947525,-3.944397,0.14269431,-0.16875495,-0.11686203,-0.13322796,-0.22788659,0.37509042,-0.47252065,-0.40663752,-0.028279563,-0.042228572,0.5893208,-0.02503015,0.14516108,-0.35892043,0.0736904,-0.42025727,0.27231064,0.09513649,0.34904996,-0.022225471,-0.3118662,0.21273856,-0.31941244,-0.6664704,0.021514352,-0.5828743,-0.44716942,-0.034967635,-0.41059628,-0.35301098,0.75012225,-0.33722576,0.057310667,-0.3238613,-0.008418918,-0.18040864,0.3620272,0.2568,0.17400007,0.06421211,0.006668721,-0.010101765,-0.419707,0.26290044,0.11057527,0.17317854,0.3943754,-0.20027441,0.10564751,0.52432615,0.59053534,0.02466956,0.8426784,0.070056185,-0.13725875,0.42343426,-0.21610479,-0.36278698,-0.70686305,-0.39634302,-0.08231417,-0.34419802,-0.426705,-0.05409276,-0.3814506,-0.6988983,0.3778072,0.09274556,0.2728645,-0.25048432,0.27971184,0.2536043,-0.070712924,-0.027326887,-0.0453106,-0.18566313,-0.44176844,-0.44998777,-0.6943596,-0.66815025,0.08977448,1.204407,-0.02444277,-0.20683426,0.03369802,-0.23937458,0.03336014,0.08914301,0.18905191,0.081027985,0.15472552,-0.19363254,-0.63943493,0.32291454,-0.28494263,0.02319427,-0.64138705,0.16115545,0.8357372,-0.53125226,0.5064319,0.3116523,0.40313625,-0.123732015,-0.6467584,-0.20803247,0.11270311,-0.20819692,0.6431826,0.11195275,-0.8383981,0.49216643,0.071569435,-0.2369261,-0.47939762,0.50088185,0.040478174,-0.16638453,-0.022488762,0.41229212,0.107391916,-0.13567199,-0.21742694,0.2535265,-0.61857265,0.33578172,0.31227016,0.07577231,0.64902,-0.1559846,-0.25924143,-0.6254145,-0.23852828,-0.50673497,-0.2159235,-0.031366125,-0.050737858,0.032148484,0.25453126,-0.13186227,0.503673,-0.20816647,0.17618027,-0.14147083,-0.30076572,0.499746,0.51972514,0.39670992,-0.417116,0.62546796,0.1877868,0.021561272,-0.042126402,0.04943009,0.56824094,0.23157352,0.42762983,-0.093534395,0.0014007569,0.041181922,0.6197632,0.23375721,0.5233971,0.18912888,-0.3874863,0.40891916,0.19889268,0.18818855,-0.0806571,-0.40127423,-0.05382425,-0.09289937,0.12611136,0.38678408,0.16440298,0.37610167,0.024074525,-0.08977743,0.16310813,-0.11836215,-0.2594367,-1.2049505,0.3065403,0.075424165,0.6977587,0.3138354,0.01801874,-0.14075002,0.6161377,-0.21480182,0.025723653,0.43808368,0.21017425,-0.21987745,0.55708086,-0.55072284,0.41114154,-0.21318194,-0.0014267584,0.3004885,0.27583688,0.534004,0.8888238,-0.06123205,0.06526708,-0.0503801,-0.27107814,0.14888248,-0.26704362,0.1692157,-0.5687035,-0.33313382,0.57274014,0.32793966,0.27334315,-0.3140968,-0.16513415,0.22794005,-0.07612273,0.14060077,-0.108410336,-0.23068355,-0.15468079,-0.5982465,-0.38866603,0.46853366,-0.1298994,-0.031858746,0.033894364,-0.31587118,0.22651638,0.0077221077,-0.17549516,0.19571029,-0.70490354,0.014089218,-0.25465143,-0.48804146,0.25713456,-0.4468289,0.3239299,0.11331404,-0.052665677,-0.31089336,-0.037709173,0.34366998,0.73027617,0.08413971,-0.20895618,-0.36572233,-0.15662776,0.25896823,-0.36591414,0.00025792918,-0.20564528,0.16273932,-0.5973638,0.39380944,-0.3812264,-0.23288694,0.1933159,0.024090698,-0.005400477,0.4298469,-0.15468654,-0.111259274,0.34157822,0.058399566,-0.3817207,-0.08905554,-0.18912227,0.35847715,-0.12385731,-0.15998705,0.13392839,-0.14027892,0.07895445,0.45628846,0.05933067,0.28082338,0.1804839,-0.04923497,-0.43328384,-0.058054145,-0.12434907,0.45403624,0.015699107,0.09662322,-0.13790008,-0.36479136,-0.24107264,0.21374823,-0.16673121,0.15569665,0.09680922,-0.563587,0.7963266,0.0672227,1.2538645,0.05177756,-0.4278901,0.044894416,0.52806103,0.07864303,0.19570342,-0.4304218,1.0969234,0.64099586,-0.21080138,-0.1259624,-0.48153773,-0.19956547,0.17736273,-0.29926005,-0.36149815,-0.17378059,-0.71728694,-0.10144978,0.024579203,0.1800669,0.08582971,0.013067188,0.03546129,0.3328412,0.096130274,0.51403195,-0.5297774,0.0901169,0.39478716,0.3115764,0.040175352,0.2029448,-0.29685658,0.36102527,-0.6969189,0.33698788,-0.31632197,0.10596783,-0.025246393,-0.25170952,0.22926396,0.094972655,0.2742274,-0.1447112,-0.3455982,-0.22458553,0.7174608,0.09250859,0.23937885,0.7349577,-0.30144176,-0.05536653,-0.05297972,0.5773641,1.4427732,-0.03252901,0.19964409,0.3073079,-0.40239665,-0.5969454,0.17023157,-0.33738062,0.052366663,-0.09923526,-0.26350418,-0.36520997,0.30322775,0.06458644,-0.17439607,0.16624708,-0.36153716,-0.24280551,0.34811732,-0.3092292,-0.28751394,-0.32532462,0.39212477,0.6394806,-0.31160024,-0.3900256,-0.13118668,0.41932952,-0.26995933,-0.6703257,0.12964204,-0.08327751,0.3925553,-0.021478152,-0.39904305,0.07987178,0.29995677,-0.47870934,0.022576664,0.2885819,-0.3482996,0.04397663,-0.28861842,-0.0717728,0.9519195,0.13962673,0.100604534,-0.9073789,-0.5529059,-0.8850478,-0.47737873,0.06902874,0.25753254,0.004293116,-0.45650995,-0.28667578,-0.17354201,0.010413806,0.04404258,-0.6495303,0.27907082,0.00458618,0.6011074,-0.082705975,-0.79282963,-0.07105125,0.18188994,-0.267969,-0.53165585,0.6144562,-0.1272859,0.75058675,0.23445949,0.08145467,0.07798492,-0.6110079,0.42513084,-0.22244157,-0.3063611,-0.61401874,0.1512228 +883,0.26586443,-0.016535621,-0.5182121,-0.20805505,-0.29732674,0.21980876,-0.312302,-0.03878878,0.34455016,-0.16169812,-0.1162911,-0.009563684,-0.053773362,0.4491956,-0.23313233,-0.9513601,0.13518898,-0.013897523,-0.54728466,0.3643279,-0.3370441,0.39300266,0.16310652,0.4818711,0.047063496,0.25354597,0.20995982,0.06443817,-0.10743503,-0.23840687,-0.15326168,0.2929408,-0.5311569,0.15868305,-0.0693273,-0.38329744,-0.06677393,-0.26617426,-0.29314494,-0.6403853,0.49952602,-0.80598694,0.56931734,0.07672504,-0.23106083,-0.15678342,0.28054932,0.12892225,-0.2765412,0.05999333,0.23747794,-0.36220935,-0.15983818,-0.106088966,-0.36879426,-0.47467673,-0.60614884,-0.023673791,-0.6105663,-0.124543376,-0.14188607,0.32053804,-0.2856375,-0.005311379,-0.124508254,0.30875066,-0.2543878,0.17741624,0.27072793,-0.4564757,0.0012001899,-0.5169523,-0.23547642,0.023870882,0.37202275,-0.048876606,-0.22807215,0.16718377,0.5258779,0.6178838,0.18001643,-0.2592673,-0.27366704,-0.25378606,0.1549487,0.56999177,-0.20651422,-0.34502938,-0.1976408,-0.08674427,0.46320403,0.28658843,0.030536365,-0.41603428,-0.0006932983,-0.14355703,-0.1179115,0.5256168,0.52064484,-0.33563474,-0.042656496,0.32418835,0.2209758,0.23023184,-0.22804877,0.25415075,-0.058265686,-0.52629524,-0.17377976,-0.034591395,-0.028572317,0.55628836,-0.09149544,0.2631716,0.6868943,0.043054298,-0.057653163,-0.044815842,-0.07627083,-0.0014685759,-0.22229382,-0.030968199,0.20377384,-0.3250392,0.119917005,-0.09055208,0.5141684,0.021624615,-0.9092313,0.35256228,-0.5323463,0.07781002,-0.01398468,0.6457554,0.82966816,0.33572516,0.20310618,1.026904,-0.54408157,-0.03998507,0.0704862,-0.38428056,0.010277975,-0.081489876,0.019018687,-0.4835285,0.17576057,0.03544803,0.21231422,0.3519713,0.36758277,-0.32246095,-0.10452617,0.10574537,0.76788604,-0.26595265,-0.02373788,0.89061314,1.0609231,0.78424674,-0.0056513133,1.3388727,0.22534722,-0.08662189,-0.15572762,-0.08857376,-0.5453197,0.13207015,0.32161793,-0.12819985,0.3600734,0.112731494,0.0010585842,0.4105759,-0.29398623,-0.1929167,0.04654204,-0.04545853,0.20059255,-0.099871054,-0.284752,-0.013779842,0.19771184,-0.004978001,0.16021736,0.13255818,-0.2978134,0.35373944,-0.034480486,1.011553,-0.040300764,0.14178747,0.09214588,0.32799038,0.2805104,-0.08347632,-0.03927948,0.23935214,0.3037894,-0.008074701,-0.52854675,-0.046096463,-0.24911691,-0.47567332,-0.20986438,-0.35276428,-0.45358178,-0.031905375,-0.25899434,-0.14031482,0.054456793,-0.38648033,0.48080364,-2.7307086,-0.28782302,-0.29550093,0.27764323,-0.12876406,-0.21536872,-0.2688865,-0.36288726,0.34935907,0.36495012,0.38084266,-0.6184912,0.3799849,0.456091,-0.38498878,-0.32893556,-0.49915048,0.0013883802,0.0041902075,0.40307996,0.03175253,-0.25286624,-0.19253384,0.26521876,0.74812734,0.10046367,-0.053325567,0.25257307,0.5877313,-0.13999303,0.47370228,-0.057236332,0.6619838,-0.22509506,-0.21661726,0.27596638,-0.53078455,0.35827044,-0.045913942,0.10180605,0.4228707,-0.29539034,-0.91780925,-0.5550748,-0.3702744,1.2599139,-0.37119272,-0.5343667,0.32190222,-0.122885905,-0.41605332,0.061095055,0.7942552,-0.14330222,0.13717738,-0.580247,-0.03717282,-0.27253938,0.31767416,-0.06344907,0.035867017,-0.37734583,0.8093304,-0.08571366,0.53449154,0.34092978,0.15374213,-0.27785224,-0.31555018,0.06774773,0.8922724,0.39094764,0.08769842,-0.11801267,-0.020000495,0.023595516,-0.34973258,0.06355692,0.9318637,0.4465143,0.08155607,0.13192672,0.26435944,0.06143337,0.019749692,-0.10733518,-0.4457273,-0.17905995,0.1234577,0.7054113,0.86703277,-0.19730495,0.36716878,-0.002625658,0.22159061,-0.0899639,-0.49142677,0.528201,0.74271965,-0.1147668,-0.30675438,0.70772374,0.3681417,-0.35662988,0.31635416,-0.6086858,-0.43094617,0.6116812,-0.0031274145,-0.5795778,0.31947392,-0.3426314,-0.117272295,-0.7232723,0.21543096,-0.108267434,-0.62481594,-0.41068473,-0.28018257,-3.8293648,0.11669832,-0.30088648,-0.05441687,-0.36819118,-0.12623021,0.2259249,-0.46794793,-0.6811593,0.06741168,0.13883665,0.3515837,-0.19515309,0.2276286,-0.2522752,-0.22555135,0.009446456,0.3356147,0.015760817,0.2336234,-0.012637377,-0.21333869,-0.14086545,-0.10940517,-0.44673985,-0.0018046453,-0.64077187,-0.5446736,-0.05974876,-0.5051428,-0.059275277,0.7262373,-0.73822266,-0.097112946,-0.42583132,0.047166817,-0.22727595,0.1651923,0.11402297,0.347172,0.10746314,0.09442889,-0.16809466,-0.15334117,0.36018687,0.15699056,0.35294768,0.38149422,-0.019365687,0.05599531,0.3973983,0.5745464,-0.13660572,0.89978826,0.19823262,0.08822293,0.34440917,-0.2352771,-0.44765365,-0.7217935,-0.2843805,0.10426628,-0.55452216,-0.4924226,-0.16113879,-0.29936007,-0.83997756,0.44851002,0.11257474,0.14921233,-0.23588115,0.29343545,0.43822795,-0.15858458,-0.029575301,0.0055234064,-0.19653963,-0.34288964,-0.37093413,-0.5329907,-0.5797011,-0.10636968,0.9985755,-0.17898189,-0.0017519078,0.16520251,-0.31517667,-0.08057522,0.061598063,0.40476844,0.016987223,0.5024858,0.089994505,-0.7596871,0.5180716,-0.5335902,-0.14960378,-0.615706,-0.10970464,0.7639376,-0.67516994,0.7481372,0.5314839,0.2462473,-0.06994895,-0.663215,-0.3112993,-0.08725221,-0.21213141,0.61590326,0.30661806,-0.5500831,0.51790446,0.124587685,-0.06277725,-0.6481038,0.5150002,-0.19879898,-0.25207722,0.14825305,0.5032117,-0.071108386,-0.19146988,0.25532296,0.21521536,-0.28014973,0.4049377,0.20182054,0.0036118764,0.47622287,-0.018525656,-0.34858686,-0.6430155,0.09761664,-0.44706675,-0.28617746,0.08725259,-0.046392083,0.20029028,0.14042756,-0.25443652,0.46584937,-0.39672107,0.20196556,-0.121069856,-0.20206524,0.15436564,0.54202455,0.43162835,-0.5595357,0.5823096,0.18353559,-0.14231464,0.18146946,0.1684994,0.5607245,0.14147322,0.41137555,-0.308011,-0.04242655,0.13742714,0.6741816,0.15456411,0.2012772,0.11482433,-0.10964791,0.37309152,0.14033608,0.09306737,-0.07996743,-0.50775844,-0.15197101,-0.1689932,0.17673641,0.3933099,0.24985123,0.43160313,-0.1547665,-0.26891372,0.24679478,0.18377136,0.09944209,-1.186454,0.30746394,0.13555847,0.8893971,0.344307,0.12389393,-0.027949674,0.5479496,-0.1687784,-0.014586996,0.46895,0.030540068,-0.34042275,0.5790339,-0.44787928,0.5014979,-0.19630477,0.048197433,0.14950086,0.23388276,0.2766442,0.87828815,-0.16856673,0.009351836,0.054186013,-0.3862052,-0.08995358,-0.41726843,0.14232546,-0.45830944,-0.46492803,0.6473688,0.55851084,0.23851076,-0.32577708,-0.035539273,0.0290791,-0.09349087,-0.17078583,-0.088296264,-0.024291933,-0.24841274,-0.7490146,-0.18797135,0.71416664,0.08916647,-0.019255606,0.058192033,-0.26213744,0.26410004,-0.17369758,-0.05624914,-0.11432317,-0.58180916,0.013339543,-0.4303138,-0.79446083,0.18198846,-0.35210794,0.23634195,0.26665455,-0.13306418,-0.22261332,0.39925548,0.12855464,0.8722074,-0.0870215,-0.11762762,-0.27419335,-0.09094817,0.19112168,-0.25656253,-0.28692344,-0.40648687,0.24476722,-0.4369822,0.47019035,-0.2671289,-0.19165108,0.016301192,-0.11844186,0.06590247,0.35506445,-0.1752886,-0.13557875,0.31280196,-0.10608235,-0.29852623,-0.051609866,-0.3978496,0.2395684,0.07724713,0.029097924,0.07122937,-0.25027692,-0.28544542,0.057939712,0.015209088,0.41271496,0.42030495,0.046761062,-0.1739302,0.07485587,0.046600483,0.53873146,0.19269392,-0.1026789,-0.105349466,-0.5790813,-0.3744221,0.5243937,-0.07709217,0.18107912,0.014763555,-0.45593327,0.697753,0.17358273,1.1795824,0.0663923,-0.47073427,0.030883243,0.60394704,-0.15044579,0.15564911,-0.29058093,0.99233097,0.6228424,-0.034507845,-0.1125576,-0.41971746,0.046934567,0.21254778,-0.38009235,-0.25037324,-0.06899924,-0.5498298,-0.13866965,0.026280155,0.16271432,0.052619662,-0.06551465,-0.03107767,-0.03127614,0.26257375,0.24834475,-0.71630895,-0.13455716,0.37112528,0.27278012,-0.09097452,0.0043979837,-0.32842514,0.42111868,-0.68834454,0.0033386166,-0.73978966,0.0873259,-0.22395454,-0.16387087,0.17731388,-0.17807521,0.36980087,-0.31309742,-0.11493946,-0.21262752,0.46215776,0.22424981,0.24330086,0.7189256,-0.27321702,-0.12612678,0.21771026,0.60509384,1.4572091,-0.23885058,0.0821757,0.20275919,-0.3412871,-0.4668455,0.03847098,-0.5995891,-0.029901706,-0.03384185,-0.25438255,-0.27759823,0.23284477,-0.058256224,0.1558722,-0.08282054,-0.6156733,-0.32708603,0.44398263,-0.21091072,-0.31483904,-0.2487777,0.17618355,0.78020185,-0.24658407,-0.1373063,0.08840942,0.36103648,-0.32149446,-0.6496308,0.36256784,-0.3067543,0.47013906,0.09365054,-0.29266986,-0.09663673,0.23292628,-0.5327376,0.27303636,0.3310331,-0.30726507,-0.029783305,-0.09506115,-0.12382787,1.0413026,-0.12891056,0.2881579,-0.7462483,-0.49259618,-0.90518516,-0.2746237,-0.08902323,0.27584058,-0.13275793,-0.5633571,-0.20207682,-0.24883248,-0.10513069,0.01968978,-0.4255937,0.3846958,0.12298015,0.8257048,-0.24400641,-0.9654435,-0.0063968827,0.093686834,-0.268596,-0.5230754,0.5490002,0.14858031,0.73812515,0.057860613,-0.0085821245,0.26602647,-0.6017242,0.27802658,-0.20108387,-0.24951302,-0.9245888,0.227595 +884,0.5447156,-0.24667412,-0.52978086,-0.22105914,-0.3316753,-0.0604035,-0.13083002,0.35609373,0.3638678,-0.28234988,-0.06700965,-0.18012531,0.1460071,0.69255733,0.00039686388,-0.8607816,-0.09937795,0.21813618,-0.58463055,0.5597341,-0.4701549,0.44807723,0.043645512,0.3362092,0.4155899,0.20358574,0.14683618,0.053251278,-0.059959073,-0.13111077,-0.21237035,0.024217166,-0.5123814,0.13778467,0.031807512,-0.4399117,-0.045715194,-0.40649223,-0.5280948,-0.7119911,0.31825957,-0.81446433,0.5339404,-0.062654346,-0.37569952,0.14014919,0.2616007,0.30497828,-0.32602444,0.124972396,0.20397635,-0.021739177,0.0047879256,-0.029270416,-0.43838105,-0.4803821,-0.6227986,-0.040973812,-0.45828125,-0.2747151,-0.32223478,0.098021515,-0.36991358,-0.021925079,-0.111179985,0.43565896,-0.36261752,0.136755,0.26523772,-0.035836786,0.21180363,-0.489831,-0.13821636,-0.11791589,0.035580818,-0.11320015,-0.29615888,0.32347587,0.3095862,0.3111827,0.073198475,-0.30271605,-0.30159208,-0.08865765,0.042346608,0.6022263,-0.12726362,-0.26606658,-0.2862977,0.039864335,0.1198904,0.3022821,0.117661774,-0.49524418,-0.015150957,-0.14479952,-0.2676445,0.4432074,0.472582,-0.38703355,-0.30178717,0.3223754,0.3193162,0.21229155,-0.18302578,0.04861856,0.11056136,-0.5652793,-0.1329244,0.103646375,-0.09595127,0.5481264,-0.26161554,0.19720958,0.70028085,-0.2987741,-0.051219344,-0.051640112,0.21311475,-0.20239902,-0.36464942,-0.2041082,0.2382971,-0.58407336,0.077874154,-0.042353023,1.037129,0.23266621,-0.68357354,0.30208716,-0.6184784,0.1936354,-0.3339063,0.4450512,0.6724716,0.21003014,0.26298884,0.75484496,-0.3351462,0.16506241,-0.13225503,-0.39725327,0.16607612,-0.2471342,0.060950253,-0.56717724,-0.08708968,-0.00994955,-0.25346792,0.15748715,0.676893,-0.42923966,-0.20858027,0.15764277,0.8597844,-0.33544016,-0.11670657,0.65166336,1.0134815,1.1776239,0.06089678,1.2016157,0.41843486,-0.19476974,0.14057048,-0.2766566,-0.6929156,0.26157042,0.2940296,-0.47263667,0.33617723,0.04553869,-0.06252948,0.31508586,-0.15326308,0.04480816,-0.16600369,0.28012225,0.062015418,0.02393432,-0.5512541,-0.47573102,-0.10551715,0.18717612,-0.056002896,0.31322458,-0.26663956,0.2885812,-0.08083657,1.7251172,-0.07816448,-0.009089378,-0.0355678,0.5195779,0.30418828,-0.40913823,-0.19823651,0.2633463,0.4211364,0.0034929116,-0.58796376,-0.08264089,-0.30240697,-0.17400892,-0.2105126,-0.4403819,0.022555908,0.008875862,-0.42792282,-0.20469809,0.09485943,-0.3628118,0.5514981,-2.596276,-0.2351088,-0.05362807,0.221637,-0.3322675,-0.3898348,-0.20172839,-0.5033105,0.41264057,0.2503517,0.5324777,-0.49378684,0.20288502,0.46941772,-0.5183346,-0.1702195,-0.72662354,-0.11541764,-0.11355424,0.3991498,-0.10568634,0.03660627,-0.067969285,0.24210775,0.48550567,0.075736225,0.10769194,0.26894382,0.3722622,-0.071114846,0.5208258,-0.05670693,0.6910763,-0.2720867,-0.22466125,0.31139502,-0.13570648,0.23518474,-0.24711408,0.059395466,0.63820463,-0.53963417,-0.88067317,-0.5110067,-0.16239245,1.0731473,-0.3732901,-0.39491215,0.35376158,-0.27750948,-0.038199693,0.061261732,0.3417629,0.045950364,-0.051404435,-0.5699046,0.1360156,0.106931925,-0.049442876,-0.04224156,-0.1693003,-0.21286823,0.5479726,-0.04247406,0.11186182,0.18731713,0.26536444,-0.24527848,-0.50034046,0.13791548,0.983757,0.25190148,0.18693697,-0.465884,-0.19951133,-0.3740039,-0.08289415,0.18757115,0.29200712,0.83792263,-0.20914525,0.097456336,0.26849458,-0.064867,0.09949276,-0.011685121,-0.34520105,0.0057798275,-0.086031616,0.5424874,0.6391428,0.056548882,0.69138837,-0.037844192,0.2032717,-0.13792987,-0.56532687,0.519163,1.1822761,-0.08795241,-0.2812308,0.6231534,0.27653182,-0.24060477,0.45139304,-0.40530694,-0.25170752,0.41276893,-0.20736562,-0.30384475,0.24525607,-0.41736162,-0.04680394,-0.8457988,0.3543311,0.03231412,-0.4343545,-0.39026177,-0.17596936,-3.744379,0.33070529,-0.29112783,-0.10587361,0.09824563,-0.11319539,0.17941028,-0.47154927,-0.46176782,0.15458238,0.024814442,0.7435027,-0.15359728,0.22782719,-0.12812681,-0.2265143,-0.4371338,0.17294753,0.0041021407,0.5613293,-0.07253296,-0.46480402,-0.039942604,-0.2133347,-0.5381234,0.09555236,-0.620255,-0.41580042,-0.27136996,-0.75472593,-0.27205765,0.8390251,-0.058863048,-0.061302077,-0.24511541,0.034530938,-0.051277358,0.37121964,0.26759318,0.104072355,0.09931489,-0.01964207,-0.101371326,-0.36271572,0.26063856,0.10954448,0.3006309,0.30752316,-0.01407671,0.15600474,0.5890174,0.5147509,-0.1426252,0.8306317,0.5424625,-0.26953334,0.15161435,-0.21643026,-0.19446231,-0.44943002,-0.36699763,-0.2757052,-0.46639895,-0.48765013,-0.098422945,-0.31486186,-0.65907395,0.5924605,0.077307425,0.24476345,0.022481715,0.00871973,0.4266903,-0.10581977,-0.014281769,-0.13856146,-0.100509845,-0.60712576,-0.35220322,-0.484921,-0.40182245,0.43658733,1.0158052,-0.30732194,0.02140937,-0.056540024,-0.3437786,-0.23107712,0.10062329,-0.058166757,0.2348262,0.17011434,-0.044948947,-0.63262606,0.31572288,0.027207008,0.09153517,-0.5515681,0.26635927,0.7773795,-0.47265372,0.54897285,0.26747754,0.2317785,-0.08845872,-0.4977778,-0.4362329,0.21882892,-0.18859416,0.4573792,0.17204694,-0.8190045,0.45189047,0.2517846,-0.46170625,-0.7324725,0.5433082,0.019823262,-0.24358416,-0.15755281,0.29623264,0.10979787,-0.0007833329,-0.30891967,0.3314669,-0.44460043,0.289755,0.22035265,-0.021252831,0.34561905,-0.11450336,-0.22959524,-0.6128627,0.07572036,-0.3677974,-0.45365223,0.07906599,0.08387218,0.12845062,0.27038443,0.020284394,0.3046826,-0.32531264,0.10592982,-0.14453125,-0.30430132,0.4356736,0.25874335,0.5441635,-0.43703803,0.5785021,0.11473322,-0.10754889,0.118206955,0.10275483,0.43497106,0.19310816,0.36936,-0.025454143,-0.21782358,0.24174051,0.8354029,0.030494802,0.3662797,0.16837566,-0.13354273,0.0010845363,0.057195097,0.14850481,0.21501641,-0.4382724,-0.10576861,-0.45898476,0.26544586,0.45157278,0.11965046,0.2630805,-0.12169693,-0.38547835,0.21878624,-0.08671701,0.046552986,-1.3166904,0.24956298,0.22944279,0.64828426,0.52170986,-0.09200289,-0.18503849,0.6465067,-0.19846438,0.15812303,0.38309118,-0.11699147,-0.42660937,0.58121395,-0.8069854,0.6705818,-0.1027581,0.002405138,0.12786077,0.18995632,0.54510903,0.9102099,-0.20151168,0.051389664,0.089932285,-0.3841065,0.07217293,-0.3818921,0.17264116,-0.68619853,-0.39045402,0.70440674,0.28910923,0.24658579,-0.093509555,-0.0152631,0.068664625,-0.07510265,0.07192445,0.054809738,-0.05202963,-0.08002389,-0.72930145,-0.32857263,0.46409956,-0.076081954,0.19316234,-0.081141174,0.08847288,0.05968364,-0.35993266,0.112464584,-0.03930028,-0.75169516,-0.21336056,-0.40711212,-0.5220065,0.3673291,-0.27506277,0.29351398,0.11183196,0.016110338,-0.24814986,0.53191763,0.21798022,0.87467736,-0.12133924,-0.10480126,-0.34560052,0.07509914,0.21378922,-0.1338438,-0.047452565,-0.21742116,0.04058839,-0.69837046,0.560793,-0.08307075,-0.5188778,0.026922176,-0.0556306,0.07289869,0.6180574,-0.006910453,-0.11417844,-0.23595785,-0.1970529,-0.29778555,-0.14652668,-0.04687902,0.3248276,0.2977142,-0.34952208,-0.17277676,-0.2518667,0.047017083,0.26699612,-0.21885313,0.33740386,0.22219624,0.30979648,-0.13707347,-0.077763505,0.21299879,0.57971567,0.06425656,-0.05605783,-0.29927447,-0.09921598,-0.3894619,0.1816728,-0.08203286,0.38545656,0.1696003,-0.20257686,0.7307449,0.026718562,1.1590705,0.077770025,-0.39102432,0.13566193,0.3977808,0.20323622,-0.08229219,-0.39738503,0.98427993,0.62875915,-0.0033836514,-0.1953883,-0.48603544,-0.21776374,0.37238643,-0.2829379,-0.2426935,0.22801703,-0.5354332,-0.3137205,0.29767212,0.11815373,0.24312139,-0.09132422,0.18555962,0.3957028,0.18358983,0.31627566,-0.46451366,0.07955991,0.26766032,0.50306076,0.087992035,0.40840602,-0.5171336,0.3116102,-0.63741666,0.3328791,-0.20377277,0.27252883,-0.09155396,-0.23456813,0.33285555,0.22123487,0.4442153,-0.27585587,-0.38519642,-0.2107169,0.69678193,-0.010604829,0.13752496,0.6375708,-0.32673594,0.05745679,0.01857417,0.41185212,1.0895385,-0.23392008,-0.102935635,0.42317045,-0.33571982,-0.928181,0.5519194,-0.20120819,0.26261088,0.028230393,-0.33821857,-0.5567493,0.290098,0.109346636,0.035603285,0.16891766,-0.320225,-0.13897896,0.21451499,-0.088072725,-0.21793287,-0.3911405,0.20171177,0.48336664,-0.2101696,-0.36994824,0.213477,0.23798494,-0.17362805,-0.57619375,-0.05537586,-0.2133878,0.21424377,0.08871881,-0.30035666,-0.16357432,-0.113510825,-0.4639803,0.107687555,0.17054737,-0.29081914,0.11316314,-0.14149408,-0.14648674,0.9754979,-0.26224712,0.0562768,-0.7057869,-0.6134208,-0.7634663,-0.3722279,0.44239807,0.11475933,0.011853923,-0.6145318,-0.11942773,-0.029009743,-0.070419304,-0.043370992,-0.4915259,0.42146423,0.02911598,0.15309553,-0.072174266,-0.9151222,0.083518185,0.14796562,-0.3332082,-0.6784785,0.48685193,-0.26093304,0.8419257,0.07070354,-0.013222859,0.32710934,-0.28450996,0.10245639,-0.2226158,-0.31160918,-0.63878787,0.014802944 +885,0.6239834,-0.31138325,-0.54459643,-0.30978924,-0.29800305,-0.033313464,-0.22618827,0.5994357,0.21644135,-0.6225697,-0.20601301,-0.1504614,-0.063422084,0.30688286,-0.28624654,-0.6354602,0.099618934,0.21674797,-0.4558038,0.35000232,-0.5842536,0.20101666,-0.031926975,0.6697912,0.3666552,0.12657237,0.2928021,0.041074645,-0.095545866,-0.45549306,-0.095996216,0.27283645,-0.5201743,0.32925344,-0.18281384,-0.529354,0.09916197,-0.703155,-0.34997168,-0.8650977,0.18318693,-1.0441678,0.7209197,0.20895469,-0.34309578,-0.11201684,0.36929947,0.19228968,-0.17852025,0.1894679,0.22850963,-0.23677726,-0.19500855,-0.20896468,-0.4414146,-0.3771165,-0.82875454,-0.057224892,-0.3376398,0.14304043,-0.2750778,0.2836748,-0.19928052,-0.024512948,-0.1433123,0.5281123,-0.43360916,-0.1437478,0.015104294,-0.16316733,0.34714487,-0.7189702,-0.41594237,-0.25346795,0.25139928,-0.21506485,-0.3013607,0.34405708,0.35670853,0.4895238,0.021866104,-0.23221858,-0.30925494,0.0018472441,-0.23138909,0.6012843,-0.2761,-0.31523067,-0.31212568,-0.3278202,0.47558618,0.38556385,0.13576777,-0.28321552,-0.08422638,-0.20154317,-0.4057536,0.5236849,0.52087164,-0.39992708,-0.06039275,0.34973767,0.1830981,0.1656763,-0.12616745,0.14954355,0.06559909,-0.69767964,-0.22301602,0.26931962,-0.21138163,0.5957037,-0.16115594,0.42904958,0.6215451,-0.2697276,-0.15185769,0.15534453,0.30765814,-0.27688736,-0.22806577,-0.7825045,0.42792717,-0.54814893,0.119101144,-0.21465759,0.9971697,0.05941516,-0.77798116,0.25107446,-0.6056539,-0.07137199,-0.10497699,0.50910234,0.546683,0.5481268,0.43834916,0.5930307,-0.3272249,0.060699385,-0.048111375,-0.18761529,0.16080317,-0.2170068,0.09929047,-0.32538265,-0.14019822,0.019047294,-0.15306203,0.101169825,0.92832315,-0.35912317,-0.09079703,0.38539514,0.5868174,-0.37056518,-0.0858989,0.6821852,1.2202522,1.2132741,0.14531705,1.3432795,0.24579005,-0.21910945,-0.06864047,0.19700405,-0.93134403,0.44710866,0.42269272,-0.3852657,0.42056313,0.33701307,0.10641606,0.33457646,-0.56667143,-0.1861556,0.024956886,0.17398998,-0.10866042,0.06363021,-0.6825738,-0.55841315,0.046120446,-0.25056782,0.121435,0.18425669,-0.25618663,0.5370556,0.12571034,1.2642684,-0.13429293,0.07201311,0.09427704,0.5755993,0.1441848,-0.15786402,-0.20508376,0.07967826,0.43306294,0.02542072,-0.49849278,0.051187824,-0.13783455,-0.2633277,-0.29143754,-0.42512003,-0.009632018,-0.08203981,-0.36408052,-0.44040504,-0.006556475,-0.3991746,0.377255,-2.3699634,-0.047064688,-0.20355268,0.3755836,-0.12009927,-0.41342434,-0.22049475,-0.52177656,0.6720034,0.29918975,0.4829544,-0.6546372,0.42248636,0.6947117,-0.4744711,-0.16337506,-0.9428757,-0.18931174,-0.22868612,0.19224812,-0.10902558,-0.18333301,-0.05582859,0.079944,0.6613111,0.094109096,0.12528536,0.3181495,0.31310382,0.024170315,0.73515385,-0.052224435,0.56442595,-0.478198,-0.34598595,0.22304673,-0.5868074,0.080205776,-0.21838781,0.1357789,0.7734152,-0.5536483,-0.92833835,-0.6878248,-0.27369404,1.2384117,-0.4702677,-0.29875678,0.21064043,-0.08599036,-0.41591406,0.074148335,0.46351075,-0.4200477,-0.03851381,-0.6825614,-0.24518767,-0.043737,0.38676715,-0.010816229,0.04583315,-0.54294443,0.55724204,-0.16382305,0.4599716,0.24201293,0.13774052,-0.52646434,-0.711645,0.07011415,1.0555408,0.31801006,0.17553052,-0.3172105,-0.16214672,-0.20942655,-0.038348902,0.058518577,0.46794343,0.73521334,-0.15148261,0.26913175,0.4605101,-0.06529875,0.06889637,-0.11848961,-0.42262167,-0.24371633,0.123052455,0.80261356,0.49841136,0.14055547,0.2310632,-0.12519217,0.56742036,-0.26485485,-0.37767643,0.46817937,1.0702524,-0.0616947,-0.25120658,1.0880643,0.47966558,-0.21573511,0.5833262,-0.7778263,-0.51808643,0.29363364,-0.025714982,-0.3903349,0.14217785,-0.35724682,0.1460079,-0.97832185,0.50576687,-0.11852424,-0.42571825,-0.5527333,-0.16372745,-3.4630115,0.2425056,-0.2973772,-0.19859034,0.023778427,-0.40137324,0.38841304,-0.65462226,-0.6057602,0.1667763,-0.005723089,0.80587196,-0.18468502,-0.09661601,-0.3046492,-0.38391814,-0.5220349,0.12845889,0.21364586,0.5266221,0.21153513,-0.46791792,0.41289273,-0.18879879,-0.35403126,-0.12678976,-0.79896164,-0.4712057,-0.10746057,-0.8721846,-0.54000396,0.8179449,-0.39845628,0.0123945875,-0.26558805,0.06514813,-0.049983166,0.46777543,-0.15144911,0.3419,-0.10076251,0.015804678,-0.10384403,-0.18840474,0.3665765,0.08028629,0.13244683,0.27992645,-0.17864278,0.026071157,0.7164601,0.6574707,-0.27243364,1.1109107,0.49803662,-0.004138641,0.07391427,-0.1874151,-0.33141524,-0.4996609,-0.3248846,0.008343118,-0.5247962,-0.13993192,-0.030693293,-0.28121135,-0.8987166,0.8946999,0.008559918,0.14809832,-0.06698639,0.19999628,0.305362,-0.017164875,-0.02807256,-0.12361832,-0.06561466,-0.37358606,-0.37743396,-0.6520499,-0.39071578,-0.15343645,1.009247,-0.21469621,0.072006464,0.33241668,-0.18416496,0.16240573,0.0032740019,-0.027009014,0.1464524,0.604727,0.11886792,-0.73838586,0.32487082,-0.30855185,0.035327025,-0.4634478,0.31992513,0.8207096,-0.7929026,0.58036566,0.5729106,0.20309095,-0.39239606,-0.7207597,-0.3633461,-0.11472795,-0.10540839,0.66646475,0.29109487,-0.89993894,0.65216273,0.23684868,-0.38875094,-0.73121977,0.5688663,-0.18793365,-0.2572661,0.07527286,0.5168954,-0.05743891,-0.055196565,-0.15462737,0.18209179,-0.32469788,0.3199432,0.14586267,0.090266764,0.5793581,-0.22219682,0.101943925,-0.74562913,-0.028769016,-0.58849895,-0.48926616,0.2960498,-0.09467729,-0.03400321,0.41544026,0.022990916,0.33222693,-0.45730868,0.03127677,-0.05375331,-0.19641365,0.39584017,0.6043956,0.59339315,-0.33482003,0.5954486,0.0550857,0.11393972,-0.2746422,-0.08623121,0.4545676,0.09919335,0.37596846,-0.20907025,-0.38893637,0.3035182,0.77989113,0.26249897,0.56170285,0.19027248,0.07163544,0.1303119,0.1606412,0.3504068,0.102050744,-0.6702228,-0.15445805,-0.42570525,0.14369936,0.5494176,0.027494496,0.27909872,-0.22207999,-0.16736881,0.14088745,-0.040724955,-0.09943645,-1.3810515,0.35168105,-0.020477712,0.51934373,0.37369853,0.014802228,-0.110850796,0.83957654,-0.26705095,0.07006804,0.18915646,0.31141528,-0.28308454,0.74953777,-0.50100744,0.5157679,-0.11846932,-0.13905457,-0.2208915,0.07065816,0.45804453,0.9302355,-0.13517587,0.21250291,0.16934495,-0.33419567,0.05099191,-0.5223203,0.20401981,-0.5294143,-0.31490117,0.6892149,0.3409831,0.43300754,-0.19399054,-0.045310877,0.07182113,-0.1521837,0.08588536,0.061122973,-0.22102217,-0.18185404,-0.7467891,-0.1498442,0.6675984,0.3290823,0.14243484,0.18665144,-0.23483698,0.19374885,-0.014271337,0.13501549,-0.10505755,-0.84381104,-0.29902798,-0.44613925,-0.44277972,0.16806573,-0.2939076,0.12815931,0.27088094,0.04960314,-0.078009024,0.31097943,0.54798776,0.7986108,0.08305331,-0.10020001,-0.2653783,0.086084075,0.2455227,-0.24656351,-0.083471395,-0.47803658,0.14957401,-0.578258,0.16675521,-0.041341342,-0.3897365,0.044370987,-0.012447203,0.008388514,0.4791209,-0.0926418,0.1462019,0.13375804,0.04943461,-0.26590222,-0.17085022,-0.31501,0.1827775,-0.010791147,-0.04710591,-0.12204037,-0.20688911,-0.085748896,0.35284072,0.066304475,0.31053358,0.6176352,0.11220054,-0.2547771,0.1509164,-0.21314415,0.82104385,-0.16597849,-0.29838124,-0.38205686,-0.29966655,-0.15816358,0.3436583,-0.09278709,0.1483705,0.07668227,-0.3852057,0.8626642,0.012849679,1.0038198,-0.052288987,-0.44941893,-0.1332972,0.55917954,-0.19445372,0.049925577,-0.30219793,1.0057896,0.48905563,-0.28941655,-0.22252174,-0.52120864,-0.21263003,0.21448894,-0.25640544,-0.41446242,-0.20092432,-0.5527047,-0.1450778,0.2619305,0.15915795,0.09430568,-0.022770545,0.32945153,0.5497403,0.16113718,0.53151494,-0.6758393,0.10985477,0.32318765,0.3432332,0.010622834,0.31626543,-0.36015457,0.36915883,-0.7357436,0.21262316,-0.409005,0.16793655,-0.23701987,-0.34577513,0.2649883,-0.02183261,0.5641107,-0.26578474,-0.13135621,0.026518803,0.589743,-0.09399672,0.38721552,0.75750494,-0.27349168,0.01947191,-0.20059612,0.42790037,1.2055775,-0.20611551,0.17645764,0.4809104,-0.22621855,-0.683217,0.16925362,-0.4133645,0.05132228,0.0594957,-0.32549083,-0.29097944,0.27292272,0.34489548,0.06723029,0.25946316,-0.46917313,-0.14963719,0.4850045,-0.05120002,-0.27993435,-0.3136012,0.0023914934,0.38506415,-0.30250558,-0.42724138,0.010108016,0.31904024,-0.14781097,-0.4798401,-0.01315185,-0.4356737,0.3239517,0.1997716,-0.33335045,-0.09959326,-0.2582541,-0.37461177,0.0027284264,0.25245124,-0.3299522,0.07147976,-0.2834434,0.022764826,0.87467563,0.009423053,0.12797837,-0.5869472,-0.57179534,-1.0560648,-0.27267098,0.3566197,0.28152472,-0.13758543,-0.61771023,-0.030209148,-0.11909075,-0.2449811,0.013462581,-0.37352678,0.42937797,0.19350079,0.61382705,0.092186734,-0.7829574,0.15320483,0.0734449,-0.1969181,-0.41519728,0.57662547,-0.12610355,1.1518826,0.052822668,0.0064946115,-0.104325294,-0.4438362,0.40614325,-0.21324226,-0.33285052,-0.69604415,-0.05497586 +886,0.39488247,-0.19997959,-0.43699592,-0.0039151227,-0.2907138,-0.051050045,-0.0036331713,0.44921634,0.027646255,-0.2825396,-0.20711817,-0.09481721,-0.19821645,0.3910954,-0.25548384,-0.79209787,0.05228755,0.2318871,-0.44594035,0.69663006,-0.26898298,0.36057472,-0.019573828,0.20523386,-0.01583368,0.24267878,0.12495698,-0.27219364,-0.10334567,-0.1339259,-0.19951065,0.28154686,-0.48551694,0.3341494,-0.15890907,-0.34636542,0.20714493,-0.29865626,-0.3487368,-0.63267076,0.073129795,-0.5647502,0.44978228,0.08096479,-0.25115475,0.22616073,0.047237456,0.33883157,-0.13117139,0.115760446,0.04702434,-0.14350012,-0.062204685,-0.29673004,-0.06302728,-0.6047749,-0.49294403,0.07821224,-0.46931973,-0.15617307,-0.14181237,0.18537839,-0.33501264,-0.25936598,-0.051785927,0.24548234,-0.40995646,0.005643836,0.20671323,-0.118921466,0.052095167,-0.4663187,-0.07887031,-0.15635452,0.2891297,-0.17952968,-0.09863501,0.46508306,0.18862307,0.51648945,0.016778708,-0.16670358,-0.2813329,-0.062354248,0.208701,0.48355013,-0.24732392,-0.52778184,0.017182782,0.15922885,0.2546298,-0.010262383,0.11500375,-0.10830091,-0.08357586,-0.19542918,-0.113989905,0.12264431,0.6093479,-0.387221,-0.3913174,0.3189142,0.41052133,0.16254766,-0.038635153,-0.008794657,-0.09417762,-0.45568207,-0.20530435,-0.05249468,-0.15973212,0.46673384,-0.16541807,0.19698642,0.5452599,-0.20579691,0.17224367,0.17110778,-0.038638975,0.043948896,-0.02496733,-0.33953542,0.20379607,-0.43903634,0.02619608,-0.20008801,0.83048236,0.31363875,-0.74963826,0.26393533,-0.5851738,0.1488415,-0.051000684,0.60400474,0.58495444,0.5624619,0.18581448,0.50032926,-0.49809107,0.12726736,0.031714533,-0.4431083,0.13866243,-0.14361514,-0.13144575,-0.48838696,-0.040962357,-0.0027449557,0.010171788,-0.12812178,0.274389,-0.588163,-0.025643121,0.05651519,1.0060433,-0.36120692,-0.03627124,0.58990675,0.8607583,0.896698,0.0029544064,1.2075092,0.1675154,-0.3171478,0.17028628,-0.358479,-0.6405021,0.26834,0.32943103,-0.44179815,0.3640108,0.048589773,-0.01719155,0.28856444,-0.44282657,-0.006313903,-0.32051244,0.13763689,-0.026626838,-0.114764385,-0.51215154,-0.363901,-0.1182094,-0.01617889,0.007167284,0.47763205,-0.14268476,0.38773474,0.120439604,1.4706625,0.014845277,0.11911274,0.17486112,0.3420969,0.14450203,0.022384511,0.03739069,0.27926156,0.41051823,0.15212989,-0.46630386,0.1341649,-0.33203405,-0.56999713,-0.18452491,-0.30828324,-0.054095007,0.054425005,-0.3483436,-0.26823744,-0.15505747,-0.07525987,0.38954192,-2.303203,-0.075688355,-0.13407548,0.4050676,-0.28455588,-0.3028578,-0.13242128,-0.46548894,0.32995796,0.26403743,0.45470005,-0.6841094,0.45124266,0.3274321,-0.38266876,-0.20391466,-0.5124921,-0.03595299,-0.06482909,0.35800335,0.007243266,0.0817704,0.233992,-0.015995523,0.43762532,-0.17678107,-0.045251068,0.072403654,0.3772224,0.19302198,0.21895488,-0.037982155,0.4652402,-0.27167624,-0.1818588,0.24242045,-0.33184534,0.35461044,-0.04813773,0.11620922,0.2577932,-0.45274892,-0.7319463,-0.64801425,-0.27281886,1.2809925,-0.10673355,-0.3119371,0.21597059,-0.194525,-0.22964384,-0.26590568,0.21334377,-0.24195817,-0.118173905,-0.65398836,0.06560896,-0.08134011,0.21881175,0.08169503,-0.0641057,-0.40915638,0.7052566,-0.050204635,0.508496,0.2507456,0.300226,-0.11677415,-0.55853844,0.0434467,0.8601517,0.46835336,0.10084397,-0.07223344,-0.20471002,-0.16828208,-0.011606668,0.13359429,0.5294878,0.78408635,-0.13573101,-0.15293206,0.30759415,0.028561069,0.20819597,-0.13607314,-0.32661673,-0.099823415,0.07606203,0.62996197,0.5564872,-0.3144097,0.367344,-0.056477956,0.32746574,-0.11853778,-0.42218682,0.422148,1.1053528,-0.2076451,-0.21538304,0.50594825,0.54394287,-0.25711006,0.3469518,-0.6195498,-0.3372622,0.29061764,-0.2625089,-0.34909108,0.1766871,-0.27497137,0.18695049,-0.94700825,0.5416149,-0.37484366,-0.59302706,-0.62760955,0.043391377,-2.8937821,0.2105443,-0.36475992,-0.12683645,-0.13298628,0.049253013,0.1456015,-0.6412934,-0.38954082,0.14150031,0.19418846,0.4849401,-0.051209517,0.13309535,-0.16144025,-0.45606923,-0.27201742,0.056366306,0.1609364,0.17276919,-0.06685351,-0.3364501,-0.046074547,-0.14758097,-0.23291096,0.30879688,-0.6674255,-0.46549678,-0.23986255,-0.42288208,-0.3681019,0.6191518,-0.3787977,0.09653515,-0.11672739,-0.03103978,-0.22489478,0.23087946,0.017915037,0.10743613,-0.016209897,-0.06610339,-0.0027127224,-0.30921507,0.320138,0.063396834,0.5436383,0.34673074,-0.25418624,-0.003964737,0.598942,0.5456275,-0.057441156,0.56221575,0.46715063,-0.08604439,0.47881123,-0.4242387,-0.27482793,-0.51242507,-0.48373505,0.061897464,-0.2748265,-0.47525403,0.08649053,-0.35351494,-0.76646084,0.4428289,-0.060348682,0.04757599,-0.15669353,0.23076956,0.53244215,-0.06648241,-0.096518,-0.06236743,-0.10852115,-0.36346465,-0.26176247,-0.68437016,-0.41162387,0.14517102,1.1296313,-0.2758012,0.06925046,-0.08602141,0.019748032,0.0746476,0.05782688,0.07350115,0.14046678,0.23212826,-0.17242756,-0.7594079,0.54911345,-0.10656093,-0.25090298,-0.39073202,0.15576021,0.5460284,-0.8830667,0.4305007,0.3309633,-0.095649414,0.16951762,-0.5778006,-0.24425554,-0.0042212945,-0.22647245,0.22011207,0.17297229,-0.6229375,0.36979493,0.47502428,-0.39615324,-0.7460961,0.39202997,0.074879415,-0.38822412,0.17149891,0.33945873,-0.016937392,-0.030686041,-0.04639523,0.21512018,-0.40307465,0.34930345,0.22322032,-0.08015459,0.0972525,-0.1458836,-0.002755327,-0.8643292,0.1971599,-0.46047854,-0.32379475,0.29436556,0.24922906,-0.041365985,0.07004578,0.15046947,0.40899286,-0.46671385,0.110499434,0.05810701,-0.35301393,0.29977646,0.39826113,0.49153253,-0.39709058,0.455041,0.042486437,-0.108651124,-0.11450031,0.2645274,0.4475246,0.11945673,0.2994031,0.13660884,-0.16642275,0.41665748,0.87026364,0.20550118,0.50928855,0.068991445,-0.06899108,0.2758221,0.18366805,0.108988576,0.12836626,-0.3497052,-0.042775836,0.05737892,0.15322399,0.5596295,0.18017809,0.37711254,-0.1767064,-0.18475814,-0.086356066,0.29300722,0.11616521,-1.2543142,0.39792666,0.19353901,0.6506896,0.42854327,0.13805565,0.0299107,0.62008667,-0.10435744,0.085741356,0.25256783,-0.070705995,-0.52844536,0.45358583,-0.6439876,0.2993106,-0.012807927,0.044582307,-0.050230715,-0.17847402,0.32525244,0.76532257,-0.07067156,0.029371722,-0.12115259,-0.3527793,-0.070197694,-0.45351562,0.13124533,-0.5741591,-0.23841408,0.48663297,0.5352303,0.18145756,-0.18584435,0.040508162,0.08306075,-0.15339576,0.32771,-0.11973769,0.20711689,-0.00074437156,-0.5380959,-0.04592168,0.5769788,-0.27541155,0.07462952,0.12296919,-0.26449376,0.291154,-0.08317727,-0.04756403,0.012948991,-0.4969265,0.32968095,-0.2745428,-0.19281991,0.5051382,-0.06562516,0.13120793,0.26783773,0.1444603,-0.34840065,0.24627988,0.054857906,0.53448254,-0.08672232,-0.3751913,-0.43465024,0.22053264,0.001793061,-0.1886903,0.059398834,-0.09665998,0.01624448,-0.4073946,0.35315147,0.09356911,-0.055147383,-0.083177604,-0.24606626,-0.16143534,0.5096432,-0.120326765,-0.25822693,-0.057983078,0.008251756,-0.1999121,-0.08604712,-0.08588984,0.16453585,0.29213783,-0.05227215,-0.04712636,-0.1910158,-0.11146788,0.4067902,-0.039269663,0.3972764,0.33871168,0.16628745,-0.39485237,-0.08442932,0.18026781,0.28065804,-0.0842998,0.067479156,-0.39681435,-0.42877293,-0.29142794,-0.031611826,-0.24041322,0.27261502,0.058463354,-0.28899536,0.83784866,0.11413361,1.3343853,0.027681896,-0.20524268,0.08116231,0.5306803,0.110685624,0.024454772,-0.3686033,1.161185,0.61266994,-0.119455226,-0.15538765,-0.37126353,-0.15866682,0.097882025,-0.26390836,-0.22905576,0.22216024,-0.53306997,-0.529959,0.212407,0.1461437,0.08382874,0.0062946444,-0.052806497,0.2764706,0.17373344,0.23788224,-0.43912745,-0.19345392,0.13260925,0.20727685,0.08634411,0.23146784,-0.45673662,0.3563309,-0.4903358,0.07557277,-0.19745721,0.07908332,-0.111810155,-0.33803087,0.16658887,0.032097735,0.24924338,-0.2917785,-0.37109488,-0.075533286,0.46299264,0.094985604,0.24212548,0.6760172,-0.31778422,0.03781075,0.06771861,0.5254533,1.1094208,-0.28969765,-0.24806643,0.32490715,-0.43223003,-0.74008864,0.202559,-0.22613104,-0.011871372,-0.19926691,-0.33509737,-0.6093327,0.32439557,0.28081527,0.08763688,0.008495389,-0.5262628,-0.08288544,0.29704952,-0.5188953,-0.3120106,-0.33954912,0.30204108,0.8082171,-0.3387451,-0.3381761,0.03441573,0.17505781,-0.35705063,-0.55241793,-0.1667973,-0.37112936,0.19337289,0.22552869,-0.2798392,-0.18745898,0.19242565,-0.26859173,0.18855345,0.3807581,-0.24764077,0.12233635,-0.21926905,-0.023995271,0.75238293,-0.29630095,-0.012747399,-0.5681275,-0.42207998,-0.83560574,-0.61277497,0.72321594,0.38805643,0.052508447,-0.73564327,-0.02353694,0.13240623,-0.25992256,-0.13563655,-0.156511,0.27534583,0.120825455,0.2669868,-0.09419511,-0.84632194,0.22991733,0.14878194,-0.091581464,-0.5414837,0.42251047,-0.13473961,1.047891,0.016496275,-0.020172117,0.30832857,-0.43301317,-0.1007144,-0.2595139,-0.21149231,-0.64400226,-0.05659834 +887,0.45448187,-0.18834403,-0.60018146,-0.13517891,-0.43239748,0.2763038,-0.30009145,0.36593866,0.41583565,-0.40538087,-0.22848704,-0.054232113,0.09078831,0.30747792,-0.19860482,-0.5200984,-0.07539966,0.1595503,-0.63798994,0.37792605,-0.44301268,0.31938776,0.15889215,0.36201847,-0.037030652,0.31663227,0.14643161,0.008087624,-0.09764982,-0.14781989,-0.23505391,0.17382513,-0.43443954,0.053727012,-0.21610355,-0.46520007,0.009804914,-0.4217779,-0.22023264,-0.6550575,0.1732595,-1.0718057,0.58777416,-0.024158249,-0.16022815,0.11836283,0.1646294,0.13936733,-0.23734048,0.028907351,0.08766972,-0.42035383,-0.20660877,-0.4538144,-0.30241042,-0.41597092,-0.38990885,0.047940936,-0.62438786,-0.2755438,-0.22297761,0.12860979,-0.26646322,0.15144798,-0.14312635,0.23835553,-0.15185148,-0.0984428,0.2167252,-0.34236303,0.09687598,-0.47550172,-0.103710584,0.022673164,0.35683763,-0.07476427,-0.2570271,0.29936406,0.16073205,0.5000392,0.09253542,-0.25516808,-0.43880036,0.0010523704,0.10592183,0.46793658,-0.25497335,-0.22678559,-0.28444093,0.16261618,0.508888,0.22900182,0.083636686,0.008982757,0.025536167,-0.16452135,-0.26052836,0.6190735,0.57831454,-0.4063004,-0.25361446,0.23338358,0.6369315,0.09001374,-0.17397928,0.06253198,0.00760401,-0.5282096,-0.113986425,0.013354549,-0.058353845,0.56922144,-0.11632352,0.12170808,0.57892257,-0.1254964,0.011191646,0.2095401,0.09188195,-0.08822978,-0.20817845,-0.16223104,0.27238095,-0.5786228,-0.14915378,-0.28439993,0.5929858,0.008660825,-0.7420867,0.44308117,-0.4088198,0.09113077,-0.058425225,0.48369706,0.5994622,0.65849185,0.27167866,0.86018986,-0.36791736,0.18050186,-0.19313982,-0.1577114,0.028950004,-0.29941532,0.09956258,-0.5281409,0.2676238,-0.06452539,-0.050089303,0.39403594,0.4716929,-0.6281257,-0.19779712,0.25206432,0.78364146,-0.2824323,-0.116092436,0.8062166,1.1159256,0.94808537,0.036604363,1.0735208,0.29661098,-0.24975179,-0.0712361,-0.13403644,-0.67279524,0.19267403,0.3308732,-0.17188662,0.4848649,-0.007501726,-0.078185864,0.16296802,-0.31048092,-0.13262679,0.11151622,0.14378585,0.10798423,-0.03973272,-0.48771498,-0.09448919,0.06771216,0.0003093481,0.37140256,0.23610929,-0.20503853,0.59071916,-0.007276558,1.1789868,-0.080128506,-0.013186655,-0.0156197185,0.44811246,0.31580755,-0.024202036,-0.081330985,0.46632883,0.15168218,-0.03644385,-0.49615705,0.10698537,-0.32347262,-0.27258366,-0.09185011,-0.3242142,-0.19493397,0.054063626,-0.13600366,-0.32878363,-0.05519742,-0.37160593,0.34162155,-2.6215832,-0.30187628,0.036237612,0.42990535,-0.17560223,-0.2813346,-0.31115583,-0.49767116,0.24416722,0.24958548,0.5397123,-0.5876233,0.30984926,0.49910238,-0.63522047,-0.21580465,-0.65659434,0.012031651,0.00078274193,0.43614307,0.1056474,-0.22889464,-0.097498216,0.17681812,0.64601314,0.12403914,0.08088191,0.6628169,0.49311697,0.12558138,0.4814143,-0.036875587,0.68924785,-0.52684975,-0.21389842,0.3497399,-0.3743939,0.37028933,-0.06638004,0.18457064,0.5206824,-0.3627658,-0.9421192,-0.50170493,0.045312844,1.359757,-0.2364031,-0.56687856,0.14089163,-0.27202743,-0.3422672,0.114742905,0.5626699,-0.0837702,0.07447204,-0.6817721,0.031632707,-0.018707417,0.19336154,0.07249113,-0.102409124,-0.20672299,0.6533005,-0.11647602,0.5394512,0.1487973,0.12258882,-0.23730813,-0.27395818,0.0658835,0.9928264,0.32049862,0.1296038,-0.1113757,-0.29930747,-0.16315335,-0.17680629,0.025328089,0.5828385,0.5466292,-0.03452088,0.037046067,0.36347267,0.085741356,0.068203576,-0.17250842,-0.14743412,-0.1422999,0.032007758,0.45465484,0.87589103,-0.20136632,0.33691075,-0.1410145,0.40107667,-0.09361443,-0.5835352,0.4918623,0.5716234,-0.24043535,-0.28755495,0.5701318,0.3432306,-0.53220445,0.5124953,-0.68848836,-0.5127795,0.4954438,-0.18001571,-0.40154272,0.2710487,-0.30354244,0.24630788,-0.6427119,0.25006106,-0.15471284,-0.3169585,-0.41845897,-0.07163088,-3.264114,0.2820145,-0.08499016,-0.059294045,-0.2585835,-0.09692201,0.16323583,-0.5114802,-0.62645555,0.04780199,0.18448171,0.5790471,-0.16500565,0.1971585,-0.22870176,-0.36497352,-0.10519664,0.23342991,-0.0025878274,0.28901538,-0.12636732,-0.35342222,-0.06830668,-0.02559814,-0.4440039,0.10332409,-0.6610089,-0.40608317,-0.07557395,-0.4808113,-0.13510261,0.47843134,-0.38417333,-0.015852602,-0.30639508,0.18872115,-0.03282039,0.05741525,0.0016454504,0.15415318,0.107202634,-0.116400085,0.23803766,-0.27634338,0.4433661,0.0017903561,0.2717921,0.33231768,-0.11021502,0.06729196,0.53683406,0.8102703,-0.17710194,1.0799989,0.20920141,-0.14123997,0.33316138,-0.06757809,-0.37092543,-0.56799686,-0.18173483,-0.023753222,-0.4740724,-0.31992757,0.22161764,-0.35582063,-0.9191023,0.63102883,0.06333354,0.25040123,0.031521305,0.59843963,0.6139585,-0.29011318,0.02437419,-0.18718632,-0.3191219,-0.58975667,-0.28006494,-0.5589271,-0.49090275,0.09948739,0.8608588,-0.32778233,0.31846327,0.04129263,-0.10348078,0.02837166,0.215635,0.14102188,0.3094855,0.5450655,-0.034779336,-0.5663549,0.2845847,-0.18467572,-0.19473816,-0.43068472,0.09497476,0.6047227,-0.76587796,0.44195506,0.4109478,-0.038421173,-0.038005523,-0.4771818,-0.101687685,-0.18733929,-0.10160046,0.35348722,0.27420107,-0.8013471,0.52461404,0.41975978,-0.5496544,-0.6866738,0.19078809,-0.16885789,-0.17674455,-0.10491168,0.3172758,0.08901077,-0.07956019,-0.16251339,-0.05178943,-0.3954743,0.23386994,0.045387607,-0.068050034,0.3365992,-0.12898865,-0.4426171,-0.8309835,0.07106411,-0.5724154,-0.26858187,0.3991475,0.018099498,-0.061881907,0.12826918,0.095557764,0.4160864,-0.3058572,0.0154484445,-0.07801955,-0.36440256,0.49343407,0.2890918,0.5264041,-0.3902686,0.5215619,0.0195359,-0.15599193,0.06960854,-0.14613973,0.47780573,-0.07917413,0.33064058,0.13275026,-0.20479536,0.17333482,0.7431205,0.07529108,0.34698042,0.19199911,-0.12679881,0.456965,-0.04944394,0.036432464,-0.112167545,-0.60817057,0.13275354,-0.30613977,0.10167872,0.4137786,0.27506214,0.3463933,-0.027987711,-0.15963426,-0.076663926,0.25286412,0.07551111,-1.1925199,0.16617166,0.12937789,0.7713922,0.22056343,0.19799702,-0.14707914,0.6423676,-0.23411387,0.17540342,0.466443,-0.019965071,-0.4488951,0.4626332,-0.52955586,0.47004843,-0.17662725,0.08302375,0.20288152,0.14760517,0.3559255,0.9321947,-0.2016243,0.055999856,-0.017530736,-0.15744019,-0.08502885,-0.33345234,0.01757579,-0.37920988,-0.35694757,0.7686129,0.25194278,0.61000425,-0.07725418,-0.11105359,0.026463678,-0.08627307,0.29190668,-0.018913366,0.1250604,-0.035263725,-0.5188625,-0.0168838,0.5701676,0.54995143,0.23885356,-0.25852042,-0.21829864,0.16072433,-0.14625901,-0.08464419,-0.1006769,-0.48682392,0.011927976,-0.19828993,-0.7219172,0.42711252,-0.1056898,0.023862066,0.24960548,-0.053122327,-0.120346315,0.23269628,0.07296904,0.76647305,0.15277545,-0.27396426,-0.36718464,0.22020887,0.20295006,-0.28281114,0.16935405,-0.31707323,0.20004278,-0.50996333,0.6128334,-0.34194934,-0.47417957,0.16680428,-0.2001209,0.08900197,0.53625983,-0.21071008,-0.19166653,0.022955857,-0.12444509,-0.46724778,-0.28977668,-0.20306693,0.21547511,0.22643143,-0.2825367,-0.16909331,-0.28363693,-0.024725337,0.44344583,0.09715671,0.40353516,0.18939129,0.0821844,-0.26853102,0.1788593,0.21273932,0.45331806,0.07126435,-0.13078019,-0.44558424,-0.47967127,-0.38575652,0.23257428,-0.06704087,0.14309064,0.12749784,-0.08409341,0.8898822,-0.21603976,0.9837979,0.042033654,-0.28683165,0.0025703083,0.61844325,0.020130713,-0.07521698,-0.3810353,1.0171205,0.5917993,-0.13366333,-0.021455096,-0.5508437,-0.08519371,0.28345075,-0.41512075,-0.097770855,-0.07713682,-0.5701036,-0.42839673,0.18738453,0.20825975,0.3645737,-0.2280766,0.3884819,0.07824599,0.060508635,0.21076983,-0.49652132,-0.3604713,0.29777473,0.26862082,-0.24119605,0.015240183,-0.4473567,0.29707938,-0.61355495,0.05057333,-0.4647333,-0.023205029,-0.12432737,-0.33439943,0.1399464,0.11328855,0.26067036,-0.3623317,-0.44818863,-0.053519405,0.30673188,0.10648476,0.08968146,0.4294329,-0.23504736,-0.14524086,0.18060721,0.5458883,1.1648952,-0.3376358,0.10177118,0.45486355,-0.3242342,-0.5661574,0.37399757,-0.24549259,0.09815642,-0.092086084,-0.3318017,-0.42812464,0.24618237,0.20233633,0.10585436,0.09909026,-0.63227403,-0.08396021,0.13856217,-0.4039903,-0.0955009,-0.1534357,0.1999006,0.6669471,-0.16411519,-0.3626068,0.054091748,0.43817294,-0.16361156,-0.6140732,-0.020341529,-0.20834193,0.27420002,0.27084425,-0.35501736,-0.034988508,0.18822053,-0.5603931,0.0092628915,0.1636278,-0.45121047,0.008968817,-0.45406187,0.17404729,0.74731064,-0.22403763,0.19730799,-0.5226859,-0.50908554,-0.934671,-0.32447827,0.09780128,0.13239248,0.04237133,-0.47659633,-0.004642835,-0.15017025,-0.29972485,0.07443938,-0.4747886,0.54800725,0.13557766,0.39136598,-0.3852927,-1.0146519,0.14504288,0.08571294,-0.19569996,-0.6215441,0.49539137,-0.053015344,0.79916394,0.075053796,-0.09914604,0.35081992,-0.60536,0.08097014,-0.32580888,-0.04086025,-0.66172796,0.01671913 +888,0.5107329,-0.13539843,-0.5319476,-0.08501698,-0.124541044,0.2175976,-0.06978446,0.32060173,0.08958614,-0.4724169,-0.16125149,-0.20870382,-0.092332006,0.4248525,-0.11703147,-0.72653055,0.012310764,0.16687301,-0.6518675,0.64627683,-0.39609897,0.4362917,0.03612752,0.21118027,0.037375465,0.29482776,0.15909842,-0.19323787,-0.22056298,-0.08821448,-0.271123,0.061802965,-0.3548799,0.043183148,-0.15129878,-0.26408184,-0.07111021,-0.28788492,-0.5440009,-0.67852527,0.36123365,-0.69928545,0.42324865,-0.14147165,-0.20360795,0.3147033,0.2813695,0.46539456,-0.18247783,0.11003925,0.10680251,0.008272596,-0.107127324,-0.19893508,-0.3372671,-0.708817,-0.5657043,0.13600282,-0.44589004,-0.28439435,-0.21900368,0.11699886,-0.41663525,-0.079610854,-0.12896301,0.38064522,-0.32836515,-0.1238724,0.24929771,-0.068344444,0.17341232,-0.60729545,-0.15729979,-0.19211113,0.25475988,-0.107704826,-0.011317344,0.38258886,0.35404137,0.49731863,0.038005218,-0.12896624,-0.33115268,-0.054489344,0.33359995,0.42063507,-0.1490507,-0.5590548,-0.06496885,0.033636868,0.11226672,-0.043863453,0.13642627,-0.14134906,-0.11861779,0.027542949,-0.292127,0.37900022,0.40584737,-0.375734,-0.40836614,0.42266804,0.50035435,0.039083913,-0.15651584,-0.082176216,-0.073366635,-0.4072877,-0.10196379,0.24490455,-0.21436365,0.36191267,-0.24600725,0.23099177,0.65547144,-0.21660925,0.044582948,-0.039231174,-0.14372009,-0.1234471,-0.04946331,-0.06296441,-0.026633471,-0.39059263,-0.067804694,-0.2896671,0.60803634,0.26601118,-0.6913855,0.33237717,-0.55578035,0.29484874,0.021564102,0.42933875,0.72142005,0.26761883,0.07260594,0.64627385,-0.35470992,0.085965246,-0.011159979,-0.4284356,0.024988063,-0.2745236,-0.03509041,-0.61373395,0.07209097,0.110301,-0.09871582,-0.047127094,0.40601283,-0.5368399,-0.14344236,0.011884697,0.89702576,-0.25226,-0.16824584,0.69093275,0.9421092,0.88679767,-0.039268892,1.3964926,0.25110593,-0.3558698,0.31344852,-0.6941551,-0.5737319,0.28035074,0.17801207,-0.2293511,0.48242968,-0.039756663,-0.10543206,0.33556074,-0.28801054,0.14892614,-0.27083993,0.022092849,0.13001546,-0.20965855,-0.25725752,-0.27801812,-0.13067278,0.02649012,0.2818855,0.17747468,-0.13066974,0.4302904,0.031691153,1.5490279,-0.062435392,0.023003854,0.013918519,0.3588093,0.14911148,0.007907497,0.14662647,0.23703673,0.41244537,0.003238365,-0.5417961,0.06000659,-0.39531428,-0.4648785,-0.23323755,-0.27841276,-0.013678908,0.08816591,-0.36837053,-0.17940673,-0.124896646,-0.25944847,0.3673071,-2.535391,-0.24916846,-0.22824776,0.31598848,-0.31553724,-0.34853128,-0.23968367,-0.4613103,0.323272,0.283201,0.44139606,-0.58248365,0.5017608,0.3253976,-0.53294206,-0.09559634,-0.49647942,-0.047055833,-0.0074731074,0.45507717,-0.112203605,-0.006049146,0.27037102,0.08845209,0.40831256,-0.1550877,0.02964732,0.24402267,0.39711106,0.08643097,0.5160356,0.14931864,0.63445973,-0.1646322,-0.21869652,0.28937858,-0.34304103,0.16636091,0.035680555,0.103164844,0.43012375,-0.3769435,-0.79936266,-0.5346132,-0.21574007,1.0755806,-0.13760436,-0.23167661,0.23916432,-0.18117765,-0.27386382,-0.114723414,0.34670368,-0.09543851,-0.10737606,-0.72088873,0.13429724,-0.07695518,0.07266622,-0.05100709,-0.13139012,-0.37173027,0.7890875,-0.0899287,0.35302317,0.22209887,0.23960137,-0.25963297,-0.52156377,0.06576674,1.0166116,0.38466686,0.06399995,-0.18422458,-0.24039188,-0.49354383,-0.1578188,0.09362295,0.3914611,0.62127686,0.03441548,0.028331505,0.29013214,-0.056351885,0.18848108,-0.14504346,-0.3207178,-0.166527,-0.028909955,0.672704,0.44419208,-0.29142103,0.6703146,-0.10617575,0.2533412,-0.12925836,-0.45344028,0.70945656,1.0769767,-0.22307882,-0.24883938,0.37584454,0.3716426,-0.32855082,0.32207757,-0.5443606,-0.4066456,0.46389252,-0.24506152,-0.22910185,0.3164351,-0.3057773,0.06549273,-1.0126384,0.2311592,-0.2826926,-0.37170613,-0.5129073,-0.057899192,-3.1557162,0.22615007,-0.3175951,-0.152146,-0.114709586,0.16613407,0.10716525,-0.61523736,-0.38329464,0.05126818,0.09471637,0.59843206,-0.030951915,0.085939094,-0.20005359,-0.22130936,-0.2920161,0.16487263,0.1251181,0.32285985,0.011087112,-0.45046374,0.09549728,-0.21378535,-0.3062187,0.03878904,-0.64900917,-0.46284193,-0.29039282,-0.50664616,-0.38154796,0.7228466,-0.24818403,0.054849476,-0.23922244,0.10042976,-0.02422762,0.35869694,0.027853657,0.12325008,0.11799314,-0.040617317,0.1382612,-0.2260968,0.21033578,0.039827697,0.47149444,0.42899796,-0.12547836,0.13844268,0.3673768,0.6848629,-0.06344209,0.6284587,0.4801961,-0.15175468,0.35007298,-0.26958615,0.028441843,-0.50209206,-0.29015577,-0.089711785,-0.23461877,-0.646513,-0.18881495,-0.42729273,-0.760758,0.2739128,-0.055123262,0.10376102,-0.11563157,0.36297414,0.51427066,-0.018702133,0.16480905,-0.1221763,-0.16580203,-0.38025528,-0.34729552,-0.5757308,-0.46857703,0.16397192,1.0632788,-0.099536955,-0.10858859,-0.08866338,-0.2601301,-0.023601536,0.06260737,0.12520681,0.13055758,0.34664452,-0.2328982,-0.69702935,0.44632325,-0.179964,-0.22157973,-0.47985393,0.21383819,0.55798423,-0.44312438,0.61511654,0.31875142,0.012834851,0.08610497,-0.37575388,-0.0035933293,0.048527323,-0.22381252,0.28596702,0.11348394,-0.5454696,0.4054001,0.24312171,-0.30750877,-0.6154437,0.57715124,0.19619988,-0.27412716,-0.10071475,0.3754819,0.10425331,-0.045565248,-0.31763887,0.27765113,-0.42979282,0.18724611,0.26451728,0.053040784,0.2525111,-0.13623363,-0.2805906,-0.71835005,0.10617715,-0.4052335,-0.13149013,0.18677385,0.22216883,0.37006307,0.036558613,-0.14231367,0.28940657,-0.38343543,0.13521187,-0.024005745,-0.25720966,0.2484743,0.23312032,0.27290457,-0.5609065,0.5019815,-0.0054565035,-0.15545225,0.021637037,0.12627348,0.52537113,0.27382076,0.39756438,0.18681103,-0.25912362,0.36384925,0.7203005,0.24851051,0.480769,0.21793815,-0.2860448,0.20765045,0.07371035,0.07906738,-0.044256963,-0.37567765,-0.18269035,0.13777852,0.2352646,0.4143044,0.05017308,0.3905698,-0.15827104,-0.28340796,-0.02246404,0.24429794,-0.0055469275,-1.2789797,0.47974676,0.3252394,0.85137045,0.3191889,-0.14090315,-0.010006268,0.6641782,-0.20851892,0.13624462,0.30244613,-0.16167015,-0.5440105,0.41584998,-0.5955521,0.36514008,-0.047925536,-0.022756508,-0.023462212,0.009211287,0.29576862,0.88720876,-0.24959616,0.018240862,-0.10469536,-0.364982,0.19548707,-0.15145183,0.1450395,-0.4727345,-0.26909083,0.6027376,0.30635542,0.16422729,-0.13029057,0.024503723,0.1392076,-0.10593657,0.15775406,0.020720422,0.2068337,-0.14430992,-0.7030549,-0.22815195,0.3904519,-0.19255602,0.1850728,0.36409461,-0.20300175,0.20848078,0.017765157,0.013871169,-0.12445854,-0.43868995,0.012622171,-0.076047026,-0.3151797,0.4898469,-0.27025193,0.26333994,0.27178156,0.017373038,-0.36679572,0.35935315,0.0828592,0.5578161,-0.10876543,-0.33410448,-0.4104327,0.18728074,0.11205082,-0.28282982,-0.008445933,-0.12006241,0.13381577,-0.532897,0.44006014,-0.0064201653,-0.2512501,0.03100498,-0.23041219,-0.029829517,0.4293626,-0.24126607,-0.07756983,0.08099085,0.003872024,-0.16036975,-0.049012348,-0.052427597,0.2915682,0.16389641,-0.091601916,-0.1120312,-0.026828066,-0.004627362,0.43078944,0.044099182,0.31175685,0.38012418,0.23772608,-0.40806285,-0.097096,0.38130403,0.32920057,0.030995652,-0.020979697,-0.31134385,-0.33292812,-0.3837692,0.14431548,-0.04905177,0.27295542,0.18585068,-0.37711853,0.6913655,0.03120472,1.3385266,-0.050516088,-0.2934553,-0.005241558,0.5860714,0.15042943,0.058246326,-0.2879097,0.8766666,0.57700413,-0.08692186,-0.13528886,-0.3503749,-0.044073258,0.10440861,-0.259829,-0.20229657,0.14186181,-0.58289754,-0.5472629,0.20810293,0.12293928,0.22513251,-0.0629628,0.1302229,0.24421221,0.042239606,0.38649833,-0.5483637,-0.40345946,0.13014089,0.18971746,-0.020033479,0.22741961,-0.44743377,0.30776033,-0.58161163,0.08293394,0.0047439337,0.19133857,0.030166484,-0.2229146,0.25902283,-0.051910643,0.4001264,-0.28081995,-0.33977827,-0.30571574,0.55371493,0.007773401,0.1489948,0.62973326,-0.2816981,0.024402011,0.16079903,0.60420144,1.2924244,-0.16725759,0.06753758,0.3053261,-0.31179503,-0.68253064,0.33886462,-0.1983547,0.20617454,-0.11249997,-0.34141827,-0.47862643,0.43296826,0.11512633,0.11040968,0.017655825,-0.4981171,-0.32506847,0.39986032,-0.38332087,-0.24245472,-0.31499195,0.2000882,0.61217386,-0.30550027,-0.2423485,0.17221501,0.2712014,-0.29242933,-0.5954195,-0.046305653,-0.26586884,0.33672398,0.17216137,-0.16085061,-0.055261604,0.06390799,-0.35940263,0.26455536,0.28901738,-0.3857232,0.03472265,-0.30178636,-0.28834426,0.8483459,-0.26127777,0.22477223,-0.63292503,-0.41764674,-0.744998,-0.5977081,0.37536797,0.11122017,-0.15292734,-0.59607834,-0.1836682,0.08947627,-0.15419814,-0.010855425,-0.2583772,0.34257433,0.05894001,0.2506348,-0.13563669,-0.8418362,0.016799927,0.15724,-0.119813174,-0.7016533,0.4169967,-0.01760216,0.9702605,0.17536101,0.124995306,0.43698505,-0.4679845,-0.07568658,-0.179683,-0.16405669,-0.7017271,0.007145051 +889,0.42199266,-0.13821255,-0.46356174,-0.1405729,-0.2028628,0.15984184,-0.15295817,0.60492384,0.15386908,-0.5073157,-0.09160706,-0.14345168,-0.07398497,0.52261305,-0.43137467,-0.4460728,-0.098373644,0.11104499,-0.3738186,0.39893097,-0.4470341,0.39919317,0.03495546,0.39098895,0.23106036,0.3225537,0.18335429,-0.11841922,-0.36173245,-0.36977813,0.020727703,0.019262027,-0.5500307,0.14786614,-0.32984418,-0.27936712,0.05754309,-0.64811164,-0.41067153,-0.721506,0.22649407,-0.7932244,0.6809647,-0.047250196,-0.23184739,0.19728881,0.2911479,0.2785277,0.07308878,-0.06569901,0.3721252,-0.115661554,-0.033605754,-0.017317222,-0.37474397,-0.4823402,-0.67366207,-0.021449635,-0.41863987,-0.16723996,-0.2501083,0.17638463,-0.19684157,-0.075720794,0.036498204,0.43312058,-0.3965047,-0.04170301,-0.031378433,-0.038578052,0.45923555,-0.56584924,-0.3160933,-0.05605026,0.27228734,-0.3691426,-0.036115758,0.35215044,0.20365223,0.3940482,-0.10292453,-0.13526686,-0.45601743,0.022414794,0.1409617,0.68593127,-0.37599394,-0.35778987,-0.10345569,-0.22838761,0.34212297,0.16253494,0.10186406,-0.35209042,-0.1614882,0.014963388,-0.27349257,0.4038889,0.47098124,-0.16000322,-0.037035994,0.48529193,0.3413297,0.21286082,-0.08361149,-0.038813148,-0.013709598,-0.4825648,-0.23090331,-0.018034771,-0.13013066,0.58550876,-0.1583611,0.4102854,0.6222691,-0.035652988,-0.04739407,0.06012305,0.23899494,-0.16916054,0.13576081,-0.3600512,0.08803945,-0.4871763,0.002897689,-0.039359257,0.6720181,0.20541754,-0.9273806,0.40577132,-0.5656375,0.051429715,0.13869078,0.3484589,0.5157595,0.50729126,0.25747877,0.6175865,-0.37318265,-0.0023276256,0.13403694,-0.25505778,0.21699923,-0.17206262,-0.0068744714,-0.51951015,-0.1629716,0.23544072,-0.12858485,0.043529313,0.37366757,-0.3950241,-0.065118186,0.1724983,0.80287623,-0.26931036,0.08142356,0.7199886,1.2153853,0.9874143,0.08962265,1.312749,0.07116673,-0.25345057,0.03610479,-0.19418485,-0.7906046,0.2544907,0.424228,-0.6407722,0.40954843,0.18515931,0.088775024,0.3895632,-0.39709342,-0.070954435,-0.16275324,0.17691046,0.04658282,-0.24072233,-0.48784298,-0.33156174,-0.05606114,-0.0055244793,0.014641927,0.21897449,-0.21762808,0.36473545,0.36975846,1.588025,-0.10834129,0.15658572,0.06616927,0.4257707,0.08722807,-0.15909089,-0.045315422,0.13249424,0.22130847,0.1162654,-0.42606196,-0.037561838,-0.16991566,-0.56362337,-0.10411954,-0.3111107,-0.2902808,-0.16653164,-0.44716564,-0.20884515,-0.1406718,-0.40112674,0.4487427,-2.7473373,-0.053255722,-0.09599483,0.36975873,-0.109252386,-0.4367989,-0.044090986,-0.42834777,0.6936605,0.29637378,0.52076244,-0.62510574,0.31781313,0.59006715,-0.46236256,-0.11773205,-0.58886,-0.09311126,0.030736921,0.19598466,0.052823786,-0.120985515,0.09875249,0.3439462,0.26988378,-0.09731073,0.18657735,0.26527855,0.3278235,-0.027902126,0.44273227,-0.17523733,0.51063406,-0.28082657,-0.15508899,0.24956425,-0.6323631,0.14730069,-0.149906,0.19596967,0.41316864,-0.48350203,-0.792364,-0.56306785,-0.31076956,1.0879653,-0.09102157,-0.29666626,0.3523153,-0.27345875,-0.52348363,-0.031663805,0.3264963,-0.2878647,0.071768716,-0.825924,-0.10383546,-0.15704568,0.17723121,-0.040507726,0.13451856,-0.5878055,0.6880284,-0.16650115,0.40535957,0.38164294,0.17728959,-0.4639371,-0.4232744,-0.006651046,1.0288984,0.57223284,0.15394965,-0.13470976,-0.14414245,-0.33193108,-0.3047113,0.08220099,0.40525278,0.716206,-0.032895006,0.030355912,0.18623391,-0.022986481,0.03792614,-0.062618926,-0.32271692,-0.029062161,-0.004126182,0.60777223,0.56445014,-0.2141038,0.28945324,-0.13777357,0.36144602,-0.19106907,-0.34282982,0.4486162,0.8269216,-0.038629726,-0.17089412,0.7697693,0.42448145,-0.22990447,0.49087194,-0.5631308,-0.4453316,0.4367706,0.0032327403,-0.5775851,0.17479672,-0.24185435,0.06678262,-0.8858398,0.54058486,-0.12069027,-0.48030588,-0.5144788,-0.19367181,-2.9335017,-0.023618784,-0.057946842,-0.35246998,-0.083950475,-0.09010247,0.1905321,-0.7579899,-0.75309974,0.08720911,-0.076986626,0.725731,-0.00047089046,0.10532176,-0.0040627536,-0.34753415,-0.3965604,0.21153678,-0.01893911,0.40791115,0.0782631,-0.42829177,-0.22031006,-0.31241384,-0.5799276,0.086460866,-0.6850945,-0.47862127,-0.15402396,-0.4227436,-0.37669343,0.73545486,-0.43622434,0.011747697,-0.25910994,-0.09646177,-0.30277106,0.4507543,0.16715254,0.18274087,0.028956423,-0.014081494,0.042261593,-0.347871,0.30505913,0.21487363,0.36993173,0.48751628,-0.17129827,0.3280006,0.5572032,0.8584865,-0.07388961,0.99858624,0.39049658,-0.13066015,0.23814462,-0.38326314,-0.29679418,-0.53735715,-0.3098957,0.112448126,-0.34899533,-0.3360268,-0.12340693,-0.38081935,-0.71017903,0.54668975,0.05085284,0.12714808,-0.09632739,-0.040968455,0.18348163,-0.17953461,-0.15996304,-0.034039453,-0.14171973,-0.5566631,-0.306063,-0.73449135,-0.4609772,-0.06452214,1.0036591,0.05860079,0.09075531,0.2651517,-0.2803934,0.17510238,0.029298764,-0.031045772,0.025686612,0.2428205,0.119823106,-0.69741714,0.50995666,-0.10562606,-0.0048956047,-0.53887993,0.023105025,0.73373234,-0.44016173,0.5156921,0.4915374,0.19312176,-0.18542624,-0.50361615,-0.23585807,-0.090206474,-0.24055497,0.40548176,0.15325826,-0.7495352,0.49918577,0.32512566,-0.32422787,-0.7308721,0.55161047,0.08109458,0.033898517,0.045021936,0.3468264,0.12796932,0.012269978,0.01786779,0.31828466,-0.32108945,0.38392913,0.30218276,0.12820768,0.41744468,-0.17639178,-0.16648445,-0.77110046,0.11053394,-0.31963497,-0.33691555,0.009728597,0.0049109343,-0.053725645,0.1290819,0.1196217,0.28048867,-0.5255924,0.18167995,0.07889027,-0.24595307,0.18526393,0.519511,0.59908,-0.31857732,0.5947105,0.00703689,0.021553122,-0.18614835,-0.18543826,0.46559852,0.21840233,0.18934822,0.16860853,-0.26988065,0.23732468,0.7459542,0.20177521,0.37407154,0.17809297,-0.26598948,0.22177656,0.10464681,0.15186508,0.10144312,-0.63653886,0.10423644,-0.106605604,0.010236878,0.48287874,-0.023757068,0.22098094,-0.1429865,-0.33495352,0.075988404,0.25387126,-0.19611219,-1.558633,0.3539476,0.10757171,0.77174824,0.5719945,-0.07954808,0.06629339,0.72829616,-0.2462344,0.043833997,0.35647795,0.021032682,-0.56069654,0.5657591,-0.7559358,0.34892818,0.0012164575,-0.018282946,0.00017727338,0.014753332,0.34844735,0.7545707,-0.081245884,0.14722429,0.023270901,-0.25183532,0.19170281,-0.42945164,0.2440487,-0.29739618,-0.19182189,0.591869,0.36262482,0.36811036,-0.170398,0.171019,0.037930492,-0.19670238,0.30120733,0.07927632,0.05224116,-0.26126096,-0.63978374,-0.2355668,0.62294894,-0.008496111,0.22244596,0.15853435,-0.3077243,0.17428468,-0.0645671,-0.03324672,0.02546951,-0.81624943,-0.033167128,-0.37708616,-0.3715673,0.3238497,-0.103447124,0.30205137,0.26396668,0.06288462,-0.22173151,0.31375557,0.35364974,0.7133106,-0.033135153,-0.17785318,0.06941343,0.16690312,0.16546907,-0.12662408,-0.028803643,-0.2818211,-0.009231723,-0.34426954,0.33866823,0.0149696665,-0.22339953,0.14717351,-0.16273744,0.16887826,0.465823,-0.23119281,-0.055988666,-0.11829584,0.10653642,-0.023598662,-0.16605908,-0.1610322,0.12633856,0.28827026,0.012741602,-0.07127008,-0.12041748,-0.18146256,0.2780877,-0.03969087,0.48673242,0.61953217,0.14399089,-0.6122789,-0.17170022,0.034164842,0.42061278,-0.0026477552,0.013680761,-0.32477725,-0.44520867,-0.2628469,0.2771509,-0.26638675,0.25741693,0.10277675,-0.31615904,0.64081573,-0.004972371,1.0886092,-0.01210154,-0.36831373,0.0017773142,0.5115604,-0.0845969,-0.09556888,-0.40064353,0.8911265,0.4081251,-0.27355412,-0.13450171,-0.42421213,-0.059356946,0.22338794,-0.16430408,-0.27201673,-0.06224199,-0.6901375,-0.3534014,0.2605851,0.12944399,0.030429102,-0.07358033,-0.03724432,0.43083775,0.16814001,0.5176289,-0.49104732,-0.106240936,0.44613874,0.2178028,0.05372363,0.028634993,-0.44329026,0.39158803,-0.390055,0.04632308,-0.23581854,0.20199409,-0.28916994,-0.40284982,0.103989474,0.04710454,0.42126685,-0.13094285,-0.47669697,-0.11486216,0.48572236,0.055552814,0.07658359,0.46389169,-0.17611621,0.10384011,-0.13429527,0.39532852,0.96395695,-0.21522944,0.17547446,0.40498713,-0.4204964,-0.4538421,0.13943541,-0.36443418,0.21354516,-0.08673651,-0.3458562,-0.5456915,0.23728797,0.30616662,-0.01342895,0.114967465,-0.3476515,-0.23731738,0.41723305,-0.32100254,-0.29148972,-0.34304273,-0.090456165,0.5959734,-0.45700365,-0.2209816,0.053553667,0.23896901,-0.25729975,-0.36048508,-0.008357497,-0.19482297,0.45241103,0.08896799,-0.5008759,-0.1635717,-0.07809197,-0.30502245,0.07690152,0.20464435,-0.3631941,-0.06542279,-0.27521265,-0.086330146,0.83211666,-0.10247484,0.10380007,-0.4819864,-0.49296442,-0.87331843,-0.45876122,0.26610035,0.1986863,-0.12523778,-0.6903654,-0.03292841,-0.07317592,-0.08288046,0.022869166,-0.31350276,0.37211052,0.19401935,0.38688084,-0.101404384,-0.64227784,0.15757892,0.14955123,-0.036061954,-0.4445116,0.6016875,-0.051968317,0.75081825,0.16036305,0.015837623,0.02178978,-0.5576529,0.25471961,0.0074601346,-0.20920442,-0.5945189,0.30683768 +890,0.33899626,-0.14302982,-0.7732234,0.1683225,-0.109181106,0.09593544,-0.51142913,0.42869008,0.23535788,-0.5352115,0.014184271,-0.15994985,-0.19386254,0.29118696,-0.14421052,-0.37674752,-0.015623544,0.34124812,-0.46085957,0.5985159,-0.342158,0.2789046,0.11101348,0.26515853,-0.10838898,0.14951551,-0.027065387,-0.17482053,-0.4112793,-0.23128001,0.1258505,-0.038980853,-0.65225786,0.24305032,-0.25603965,-0.43854618,0.22043066,-0.6040882,-0.31450555,-0.60512495,0.02765143,-0.8315032,0.6929113,-0.045657378,-0.33749846,0.28725377,-0.21830875,0.28888682,-0.1125891,-0.06725056,0.29490408,-0.3614693,-0.3631256,-0.5722658,-0.43060282,-0.3310493,-0.53779304,0.05161507,-0.5593652,0.1782767,-0.03560243,0.26922354,-0.031764466,0.15175006,-0.2283528,0.004736364,-0.41506615,-0.17197435,0.03800984,0.023960924,0.25602603,-0.7348636,-0.097366564,-0.1657406,0.16306728,-0.039987687,-0.2670575,0.1428233,0.23511368,0.458748,0.03634429,-0.12867157,-0.36954156,-0.003206869,0.2156967,0.4174621,-0.27555826,-0.089942634,-0.17288788,-0.05288588,0.6320581,0.12980838,0.15707108,-0.20199,0.06274889,-0.15424079,-0.54381335,0.18386485,0.5901842,-0.27449298,0.13872902,0.57816917,0.6365333,0.3280193,-0.18284295,0.13319102,-0.16642879,-0.36854228,-0.07531164,0.12145374,-0.19858158,0.6562227,-0.1038599,0.20093091,0.38190496,-0.25724724,-0.13845314,0.051377684,0.037739437,0.017421901,-0.13481258,-0.34262288,0.2498426,-0.40349934,-0.07119267,-0.33817494,0.5553989,-0.0014734672,-0.8259966,0.37124434,-0.46010232,0.009944547,0.052201975,0.6598873,0.68662286,0.91481906,0.16313134,0.7863164,-0.4616556,0.16850281,-0.19920151,-0.1457596,0.07730951,-0.093749255,0.061834857,-0.47419512,0.060629636,-0.012265116,-0.41040704,0.17243123,0.6941488,-0.49242482,-0.1419983,0.20742981,0.56288135,-0.32825205,-0.17547345,0.81410646,1.3037952,0.871525,0.16308565,1.2462691,0.4265376,-0.19594519,-0.28166524,-0.14185177,-0.77875155,0.119340755,0.3195902,-0.24156256,0.5994757,0.120211214,-0.17672366,0.3660914,-0.15193082,-0.1389681,-0.0136482185,0.34398293,-0.16209057,-0.19432513,-0.21491992,-0.080827735,-0.11519983,0.09079379,0.05999143,0.36858892,-0.19371122,0.5044234,0.24125396,1.2313732,-0.08850521,-0.03013244,-0.00027609244,0.22334607,0.2604438,-0.04464598,-0.17035995,0.42713618,0.3331327,-0.05333528,-0.44053152,-0.11505276,-0.21085864,-0.54406065,-0.19802131,0.09421859,-0.049035918,-0.2735469,-0.0683899,-0.32682285,0.095308095,-0.3939335,0.4542221,-2.388491,-0.19538693,-0.05955516,0.37045154,0.046355363,-0.3719211,-0.05010596,-0.37946868,0.49522874,0.31324485,0.38834497,-0.44842252,0.33617958,0.435032,-0.62345743,-0.1692638,-0.6686217,-0.010181072,-0.1009894,0.4515991,-0.075947754,-0.32139906,0.082068674,-0.17634042,0.44750476,-0.22255488,0.15914023,0.41559944,0.45886782,0.12820084,0.28730327,0.08519087,0.6708789,-0.23341234,-0.17147422,0.20909278,-0.510596,0.5529667,-0.09136864,0.26286995,0.40205577,-0.53086925,-0.6878512,-0.48531625,0.10823142,1.3786281,-0.23548062,-0.4686201,0.07119004,-0.2508823,-0.48941362,0.032105815,0.2792412,-0.20191498,-0.068981715,-0.7915611,-0.33622584,-0.0010536785,0.31874666,0.002948314,0.23425339,-0.39584717,0.4085729,-0.014982328,0.45450187,0.7239027,0.109628975,-0.09349596,-0.3487312,0.013697699,1.1497048,0.30723938,0.11044994,-0.3079596,-0.1489029,-0.23258887,0.060507786,0.12986316,0.23651643,0.7145892,-0.0114487605,-0.006689474,0.27593973,-0.09766933,0.03079229,-0.10167142,-0.49157897,-0.16657265,0.063021444,0.51630896,0.85581845,0.026340403,0.5388374,-0.14505444,0.34613648,-0.18802547,-0.5194244,0.49680963,0.72196823,-0.24919319,-0.2032727,0.6106004,0.3926719,-0.2698018,0.5778819,-0.59754634,-0.41042304,0.3164022,0.016005004,-0.34536514,0.45331845,-0.27611133,0.24794151,-1.0564092,0.2914403,-0.29990718,-0.58721596,-0.79557306,0.018537624,-2.1898792,0.19526882,-0.20284067,-0.20501195,-0.13332182,-0.26105353,0.20755619,-0.46714735,-0.6421531,0.26186943,0.36390674,0.3702712,-0.06771872,0.047257554,-0.21415989,-0.43683663,-0.16084658,0.31424704,0.14723383,0.13683249,-0.35939363,-0.53238255,-0.10748442,-0.3141059,-0.16723873,-0.08915999,-0.7578264,-0.18882167,-0.08552451,-0.39045605,-0.18693238,0.5897165,-0.60144264,-0.19462673,-0.38661686,0.14714423,0.10845545,0.29485562,-0.15803401,0.18376334,0.09405714,-0.21672918,0.030504843,-0.26398912,0.029597744,0.19123626,0.14614241,0.5580032,-0.1863637,0.068189986,0.51004636,0.8422,-0.11697403,0.9215674,0.5718715,-0.2558112,0.24347644,-0.30077398,-0.21253538,-0.6756809,-0.25660634,-0.23266362,-0.43115282,-0.54585123,0.054817498,-0.29394704,-0.8797013,0.7280762,0.051466763,-0.28483915,0.19643216,0.859468,0.42068973,-0.28015074,0.116844185,-0.2593589,-0.15785497,-0.40928963,-0.37974843,-0.8419152,-0.4358404,0.03273839,1.2912972,-0.22863829,0.12836513,0.38867983,-0.29478577,0.05005245,0.19830601,0.020353124,0.052760005,0.3089079,0.06679597,-0.64024496,0.31536508,-0.113714956,-0.23488583,-0.56660765,0.2049045,0.9239262,-0.8541859,0.26772067,0.69088334,-0.08512911,0.13779038,-0.63205165,-0.06302624,0.010104309,-0.2704102,0.34129962,0.3718382,-0.60955924,0.5138878,0.38945237,-0.3511002,-0.8493247,0.35679615,-0.06484566,-0.07074801,0.01886741,0.4454272,0.053134754,0.11454747,-0.4042152,0.017238617,-0.3781383,0.26353663,0.19617672,-0.15962096,-0.042826887,-0.08952141,-0.31038862,-1.037413,0.105499804,-0.41164568,-0.21364081,0.52583355,0.14525402,0.21954994,-0.16430892,0.3763984,0.41435492,-0.5986515,0.14544706,-0.26263073,-0.3517789,0.42879918,0.5096834,0.34157622,-0.32043314,0.52773196,-0.15566728,-0.27786815,-0.28796637,-0.08702854,0.5162082,0.014451042,0.13946994,0.20692877,-0.095351756,0.12313663,0.6883537,0.19438536,0.4046165,0.1636451,-0.118984215,0.29120323,0.13054933,0.37308946,-0.080455355,-0.47367355,0.04654391,-0.08811498,0.19753115,0.4200236,0.15300818,0.49226618,-0.23534936,-0.122697145,-0.09803373,0.16223763,0.3640289,-0.8154831,0.35600606,0.19445825,0.37822828,0.6280017,0.2397147,0.18473947,0.57444644,-0.45045146,-0.024769902,0.37385273,0.110187866,-0.4529426,0.39769706,-0.8424427,0.2458932,-0.1251428,0.19614144,0.35080758,-0.10282558,0.75665444,1.1317985,-0.19170938,0.07858472,-0.064843066,-0.06873206,-0.19260144,-0.20295906,-0.08592036,-0.2620162,-0.38971338,0.93921256,0.03471817,0.563469,-0.18435265,0.013987447,0.39064184,-0.23000221,0.6526738,0.074858606,0.16078667,-0.10687175,-0.44408157,-0.08848137,0.61017686,0.17783208,0.13420007,-0.013783996,-0.20372427,0.37901828,-0.23068468,-0.23154098,0.056933388,-0.5302755,-0.01897344,-0.40467405,-0.52671355,0.5384566,0.22319674,0.09094646,0.08798101,0.13355094,-0.09106338,0.4462932,0.02639381,0.82990235,0.12200896,-0.46658826,0.07323355,0.34104005,0.18397929,-0.22523253,0.055536788,-0.066044815,0.17828709,-0.8924642,0.44937038,-0.34967482,-0.41290593,-0.07274429,-0.16557148,-0.012845695,0.3340137,-0.23773761,-0.21640028,0.28950688,0.0016673555,-0.3151937,-0.47718742,-0.38266185,0.044362117,0.22906418,-0.08496783,-0.18818696,-0.091877185,-0.08049796,0.39713502,0.030178184,0.19701307,0.35047516,0.18033914,-0.49763694,-0.111436255,0.09897738,0.49520096,-0.044886608,-0.047030997,-0.4188663,-0.51705354,-0.2617312,0.059378546,-0.098359026,0.35231707,0.23920222,-0.24331407,1.0376135,-0.106494814,1.1445371,-0.091594875,-0.30684385,0.040634792,0.59104854,-0.0942534,-0.09194488,-0.47163454,1.1348935,0.67475516,-0.09836265,-0.05511107,-0.6402276,-0.3476219,0.08916483,-0.30820456,-0.17914683,-0.053472698,-0.6137574,-0.26122043,0.24269779,0.26738644,-0.11305088,-0.16841936,0.48475328,0.23981623,0.1053034,0.036953676,-0.46915743,-0.19124024,0.40001297,0.20591669,-0.08803299,-0.006188708,-0.41655526,0.27308086,-0.63488966,-0.018164491,-0.3506918,-0.050933268,0.059467256,-0.2869332,0.18627916,0.18937843,0.23162723,-0.5205385,-0.46042845,-0.041137513,0.45233312,0.115135185,0.31766742,0.60129136,-0.31167972,-0.09276116,-0.103140175,0.44222498,1.1282266,-0.40244344,0.036042187,0.30486438,-0.22625558,-0.6002367,0.32712883,-0.37867117,0.13230829,-0.09236947,-0.3775909,-0.635413,0.2712047,-0.002664869,-0.124119766,-0.05340598,-0.6433634,0.07963091,0.15591979,-0.35189447,-0.11233052,-0.21549864,0.14017412,0.87486744,-0.289682,-0.7547636,0.045742746,0.24648719,-0.51349217,-0.43502417,-0.090849966,-0.33063585,0.26628152,0.32866415,-0.415352,0.213762,0.26731274,-0.6547846,-0.10124358,0.1741947,-0.38460135,-0.07278348,-0.5067947,0.23016565,0.62967557,-0.19708925,0.20527662,-0.36747846,-0.6295747,-0.7194908,-0.20974644,0.007034769,0.08412861,0.039010767,-0.65243286,0.09203244,-0.2935331,-0.252029,0.041638978,-0.50248706,0.68739885,0.2238576,0.331275,-0.45734832,-1.025813,0.14600031,0.1354604,-0.15256254,-0.5021493,0.34012875,-0.20302467,0.8270586,0.041249912,0.12539594,0.4132454,-0.8310556,0.38769174,-0.27424824,-0.14022112,-0.634504,-0.0368209 +891,0.4807566,-0.40984088,-0.48710448,-0.08241738,-0.35354185,-0.0013075242,-0.19323125,0.6205939,0.22049053,-0.6262122,-0.22957459,-0.17501146,-0.0014194146,0.100627296,-0.32901174,-0.30397618,-0.06401329,0.2983468,-0.3009916,0.571644,-0.2410066,0.26244742,0.11775613,0.32794878,0.36547488,0.1216374,-0.09813457,0.08873503,-0.075254604,-0.37278476,-0.11193395,0.29875717,-0.46883106,0.40262026,-0.35862386,-0.5075843,-0.02144687,-0.61340183,-0.49394223,-0.84384024,0.3070722,-1.0082202,0.7496027,-0.09577819,-0.39165798,0.077995606,0.32376453,0.28369045,0.13068105,0.055642027,0.2969271,-0.2357932,-0.040812995,-0.19911303,-0.23428085,-0.58374417,-0.63358176,-0.035160538,-0.38111994,-0.08131926,-0.41671324,0.3707975,-0.22739193,-0.11391346,-0.19024643,0.67694294,-0.4266874,0.14066245,0.12864736,-0.1295038,0.56002575,-0.76171976,-0.25571272,-0.061348878,0.1109968,-0.16120349,-0.31600195,0.17755398,0.35910177,0.46400756,0.04459176,-0.21547405,-0.3423668,-0.058973394,-0.00888299,0.54841775,-0.3358855,-0.2371281,-0.09102488,0.09382996,0.44322065,0.42098352,0.18447569,-0.28759602,-0.014120849,0.066262014,-0.22939652,0.48160955,0.54767936,-0.1818228,-0.07457893,0.23892051,0.52813995,0.10151116,-0.23228715,0.20294657,-0.107557856,-0.5503419,-0.12497342,-0.0398049,-0.24094994,0.5957722,-0.2222348,0.30018422,0.6287011,-0.19392933,-0.043565027,0.32297972,0.22876292,-0.1203136,-0.40619844,-0.47654402,0.32552433,-0.58962655,0.058077298,-0.1985076,0.74197257,-0.17919518,-0.519142,0.19518577,-0.6511605,0.09965363,-0.14665669,0.37209287,0.62457097,0.6230962,0.32223433,0.82925117,-0.29376253,-0.026387606,0.095568895,-0.22234614,0.09460551,-0.36883715,-0.0061182426,-0.5036096,-0.12058671,-0.26682347,-0.14010563,-0.07682022,0.7669131,-0.7774,-0.236962,0.1264635,0.9090481,-0.2426307,0.0055158986,1.0075332,1.1405509,1.2717931,0.09693908,1.1176865,0.26161763,-0.23153745,-0.08927098,0.004661734,-0.6096591,0.33489913,0.46874678,-0.11215173,0.13620672,0.17378396,-0.059414778,0.62152743,-0.5043286,-0.19351648,-0.31154618,0.04128591,0.100592844,-0.25063106,-0.6908699,-0.18586077,-0.07316326,0.20486125,0.028626762,0.18331172,-0.25235766,0.44741824,0.039542735,1.4068525,-0.22676834,-0.010659928,0.1868077,0.37750134,0.18728739,-0.24664044,0.10377726,0.12102453,0.385627,0.33533132,-0.45684907,0.0776608,-0.213507,-0.41455618,-0.20969948,-0.2880997,-0.19439782,-0.16282204,-0.49766195,-0.4043051,-0.1987765,-0.36412507,0.25044006,-2.4686244,-0.27274045,-0.20461163,0.43294826,-0.15622322,-0.45782655,0.24834186,-0.48556864,0.6248013,0.43069428,0.539421,-0.6772657,0.3419491,0.59747314,-0.5282666,0.006433771,-0.8152144,-0.16476974,-0.19024651,0.36081725,0.13963738,-0.20578788,0.08230514,0.022207508,0.54761547,-0.064826116,0.22789446,0.37448215,0.40822887,-0.31780034,0.5437434,0.07995284,0.5417505,-0.14203757,-0.32784107,0.45023552,-0.30424753,-0.01684535,-0.105229266,0.021777878,0.5411042,-0.5464902,-0.89490837,-0.9452802,-0.2063024,1.0379243,-0.059247274,-0.67898047,0.28009126,-0.49504244,-0.49881443,-0.034628153,0.5287623,-0.042020816,0.1576058,-0.9034555,-0.10875574,-0.14110146,0.114645466,-0.034285363,-0.17706913,-0.75187844,0.9466569,-0.22666542,0.46156585,0.43633074,0.38795295,-0.40044308,-0.5257392,-0.14277512,1.0567732,0.66074556,0.09720277,-0.30677626,-0.0016142565,-0.17286846,-0.11137654,0.20317411,0.6296906,0.6352803,-0.07496826,0.12162711,0.44331518,-0.017607931,0.08415655,-0.029589634,-0.49959707,-0.22682913,-0.064168096,0.71791965,0.72872216,0.0917151,0.5885918,-0.21752647,0.5628011,-0.17755798,-0.4970937,0.267536,1.2713027,-0.14911182,-0.5382707,0.8732049,0.46989873,-0.19081013,0.43230522,-0.6147578,-0.34475043,0.19163066,-0.20666203,-0.72564656,0.22235471,-0.3965738,0.22444381,-0.9134435,0.48096168,-0.32771567,-0.8495818,-0.66081196,-0.25963628,-3.0011296,0.363379,-0.38274643,-0.16943468,-0.16126712,-0.39281875,0.2701483,-0.62137675,-0.62004554,0.057858907,0.027900435,0.79571,-0.09064953,-0.019270202,-0.14583696,-0.45606804,-0.23761518,0.24725193,0.23764172,0.3089455,-0.12002222,-0.36878327,0.0018699307,-0.08255401,-0.5831794,0.013587149,-0.9188671,-0.68787485,-0.16931556,-0.5723038,-0.35633057,0.7293967,-0.2153346,0.058526892,-0.3974563,0.07017975,-0.011090453,0.20733452,0.071102075,0.3025014,0.10747996,-0.15225898,0.16550249,-0.26645902,0.14425509,0.050275568,0.36374962,0.22587395,-0.2535269,0.3574879,0.57154685,0.6848183,-0.2908521,1.2134387,0.6428891,-0.1566318,0.146782,-0.088958375,-0.4474538,-0.65053046,-0.2801479,0.2525919,-0.55573225,-0.27593544,0.1396046,-0.48942846,-0.81462026,0.7429713,-0.04085394,0.3794251,0.002325269,0.39968652,0.6079553,-0.22498855,-0.30310774,-0.007249383,-0.31563473,-0.573581,-0.27157247,-0.6056606,-0.621164,-0.22663032,1.1786114,-0.11810087,0.21870361,0.30362374,-0.15633672,0.07544514,0.14545101,-0.06937433,0.04929858,0.5761947,-0.27718848,-0.76587677,0.32953212,-0.16852869,-0.14245181,-0.5579708,0.4959796,0.850953,-0.57109016,0.5755666,0.44004643,0.20289429,-0.5332558,-0.613959,-0.11270222,-0.07141546,-0.24686477,0.67816836,0.36997956,-0.7348559,0.47039095,0.34215993,-0.1543525,-0.7407472,0.660171,-0.22468421,-0.22123593,-0.009933426,0.34011868,0.051751766,-0.011948178,0.015874583,0.2964647,-0.2985519,0.32418698,0.21357553,-0.13223681,0.11066718,-0.31440845,0.00600785,-0.825878,0.19044226,-0.58001494,-0.34933588,0.31103283,0.06260434,-0.013534193,0.31381336,0.1428093,0.49547905,-0.17844535,0.089402,-0.32515156,-0.5052279,0.4090503,0.5760489,0.5048813,-0.3985174,0.4723929,0.09216903,-0.23347656,-0.19706856,0.11911015,0.47653005,0.03877447,0.5320488,-0.12380899,-0.061979312,0.35237217,0.8214312,0.21774295,0.6470328,-0.05269356,-0.008034787,-0.022743229,0.13655263,0.38577354,-0.11534904,-0.7699481,0.13966714,-0.44031546,0.18199499,0.5082575,0.028359026,0.23837426,-0.22069822,-0.394248,0.033885412,0.15828753,0.14846438,-1.5567597,0.37871736,0.21472563,0.9737726,0.32446605,0.07135056,-0.17726296,0.8409167,-0.058173385,-0.03262911,0.42476007,0.19090632,-0.2897549,0.53914464,-1.0455906,0.33166158,-0.07431459,-0.009900708,-0.1640003,-0.10573024,0.57879364,0.8914286,-0.22642693,0.035196066,-0.022070093,-0.35093725,0.33095393,-0.48489827,0.2251145,-0.5291927,-0.4432104,0.8006619,0.52136165,0.44630894,-0.14869381,0.08545354,0.080610104,-0.18099976,0.3995922,0.1349167,-0.028017465,-0.3136749,-0.64379305,-0.13237442,0.40101144,0.0066515896,0.17934373,0.0024274725,-0.21005043,0.2840111,-0.096984714,0.08969646,0.087600976,-0.6276686,-0.06944968,-0.35757568,-0.51788354,0.5140768,-0.050625376,0.046123292,0.16701017,0.038439013,-0.18042406,0.23320507,0.066688605,0.83153343,0.15763211,-0.17989816,-0.26196858,0.0961389,0.11576119,-0.28144407,-0.12708825,-0.17946577,0.28961346,-0.6640166,0.42516953,0.023952693,-0.56080616,0.32798812,-0.106900685,0.0075459685,0.49425015,-0.21028045,-0.18967935,0.12993021,-0.050770577,-0.14937386,-0.29452503,-0.024506519,0.28029707,0.0915237,0.020027189,-0.14483775,-0.21543993,-0.36941716,0.50993353,-0.086908534,0.60967517,0.5213545,0.031999048,-0.3536084,-0.065177664,0.24387115,0.55469644,-0.16736275,-0.100271024,-0.17374937,-0.62394774,-0.36852866,0.25372145,0.06752013,0.47005087,0.14934936,-0.031101776,1.0263441,0.046080966,1.3246906,-0.034205027,-0.5021811,0.046120163,0.56198,-0.070588775,0.011156905,-0.41202527,1.0226109,0.6052125,-0.14843395,-0.026831407,-0.5732961,0.10740713,0.22153774,-0.16514541,-0.18495552,-0.0146250175,-0.80432945,-0.26337856,0.24567914,0.41767508,0.149053,0.02460299,0.15391515,0.5989638,-0.13402304,0.26461652,-0.40912098,-0.16720062,0.36056006,0.37846655,-0.19661973,0.06029968,-0.6009948,0.3062825,-0.42556885,0.12070867,-0.31546915,0.21649545,-0.17269564,-0.35311472,0.30507973,-0.22931258,0.4671305,-0.31229427,-0.2340455,-0.11889632,0.5731245,0.018433042,0.01566385,0.54937935,-0.30708778,0.07018216,0.081239395,0.534407,1.2374753,-0.40476003,-0.07606962,0.37298998,-0.55163795,-0.59619504,0.35085136,-0.322712,0.12013145,0.30141985,-0.3532055,-0.36013845,0.20433356,0.26959637,-0.05952659,-0.058446113,-0.4733977,0.02294318,0.31768417,-0.42276186,-0.10325669,-0.17866342,0.3336542,0.38412032,-0.26179945,-0.3954767,-0.08330894,0.4219151,-0.16311055,-0.49842924,0.11719862,-0.3605787,0.42554167,-0.027171751,-0.5622952,-0.19737762,-0.1624052,-0.48625815,0.09926675,0.23476307,-0.30469382,0.06891178,-0.41502947,-0.15478285,0.9379601,-0.20416927,0.022324782,-0.67881525,-0.43563715,-0.8451613,-0.36836258,0.1050078,0.21362628,0.02740502,-0.664758,-0.15515852,-0.2788807,-0.12323152,-0.09791844,-0.31089416,0.5471478,0.22288138,0.69694334,-0.28203514,-0.9006743,0.34620363,0.0588442,-0.15543896,-0.625983,0.77422655,-0.024969826,0.6657244,0.08599559,0.27506155,0.080565885,-0.43026653,0.10934593,-0.056723878,-0.4343983,-0.9781612,-0.2373074 +892,0.3616658,0.0254627,-0.3880445,-0.052233525,-0.2734767,0.09284214,-0.06000587,0.45664522,0.18339767,-0.4513067,-0.1044439,-0.035377137,-0.1635606,0.307941,-0.23610705,-0.6160908,0.05467885,0.047032017,-0.31318936,0.57580477,-0.2774894,0.6577542,-0.027935734,0.37694898,-0.07315118,0.18518981,0.15669933,0.0044720266,0.19259056,-0.37228358,0.0004227253,0.03337823,-0.8089677,0.31197459,-0.2099997,-0.4608099,0.28686598,-0.48886675,-0.2373084,-0.62093484,0.17624386,-0.5738953,0.8235241,0.16320957,-0.17276353,0.104850754,-0.03369744,0.30414316,-0.10278349,0.17268941,0.26576024,-0.12482696,0.09150367,-0.33100647,0.092284255,-0.34188792,-0.35329336,-0.11715141,-0.3815593,-0.3245905,-0.16287497,0.1983464,-0.11527296,-0.038007975,-0.2023181,0.27559218,-0.5907353,0.08334657,-0.01320449,-0.25974143,0.045077045,-0.70128906,-0.20690629,-0.023996238,0.22663198,-0.2821967,-0.060749695,0.2991718,0.058490273,0.43090242,-0.0031813933,-0.057867374,-0.038276024,-0.27103484,-0.1410814,0.596025,-0.29256913,-0.319974,-0.14726366,-0.016684573,0.42447457,0.01445287,0.18610588,-0.22050375,-0.11423587,-0.33757517,-0.10192391,0.339619,0.48761526,-0.3416618,0.13200289,0.2129783,0.478471,0.28802982,0.054542813,-0.028703423,-0.10443824,-0.39139065,-0.078074604,-0.13105315,-0.15845546,0.30284736,0.09901544,0.24277037,0.53504425,-0.13677892,0.07869895,0.09305897,-0.016867233,0.21045424,-0.075696535,-0.47419697,0.36574215,-0.35006392,0.216811,-0.17603335,0.57322943,0.0031020413,-0.43749806,0.25948963,-0.5331758,0.038325127,0.013980497,0.4510288,0.28417614,0.52590364,-0.05940012,0.71033317,-0.5818542,0.10082065,0.00082083617,-0.04218122,-0.134517,0.24923292,0.035038777,-0.30074602,0.15834676,-0.14417465,-0.15010183,0.12460712,0.0520756,-0.7211749,-0.033739604,0.22329995,0.7854211,-0.28847593,0.16847119,0.7262997,1.180085,0.8622784,-0.09118596,1.0620606,0.17444435,-0.19408926,-0.43769962,-0.012853971,-0.4661105,0.07533348,0.5102902,0.002074801,0.2681138,0.09883519,0.01572178,0.29978535,-0.5914621,-0.26717243,-0.14319062,0.58552325,-0.0074910326,-0.28740516,-0.44204915,-0.0127215935,-0.012911453,0.0010291499,0.08232654,0.2809399,-0.4794836,0.14179425,0.04526575,1.1731803,0.13554586,0.10236626,0.09603512,0.39852187,0.3177603,0.08094292,0.16239454,0.24327832,0.26442748,-0.037076775,-0.5148044,0.15321891,-0.27131608,-0.53873837,-0.069706246,-0.15544814,-0.2478314,0.026830755,-0.42407608,-0.23009513,0.0095127225,0.074698456,0.37828392,-2.4177885,-0.17672297,-0.16594617,0.47918895,-0.119481474,-0.30671012,0.0016249877,-0.101157576,0.41913173,0.4008137,0.3927264,-0.48292178,0.34477422,0.5844464,-0.36881542,-0.20795487,-0.35202214,-0.0446263,0.14302531,0.27293167,0.14792415,-0.111480795,-0.030478861,0.26640308,0.41915587,0.028549125,0.14723152,0.32607225,0.4106248,-0.26269403,0.3233403,-0.015336366,0.44326383,-0.21692075,-0.10389581,0.315085,-0.3651744,0.18066496,-0.34579998,0.040331814,0.32992426,-0.22075066,-0.6937238,-0.3096272,-0.10007168,1.0404962,0.047709983,-0.51870966,0.123527676,0.10275721,-0.24361423,-0.038903303,0.45165676,-0.31876278,-0.062162038,-0.6746533,-0.03365815,-0.26459596,0.44238046,-0.04747754,0.09266547,-0.64238703,0.63915026,-0.18068658,0.45661163,0.4970736,0.40582472,-0.14732984,-0.37029126,0.021591287,0.8220656,0.69950515,0.07203008,-0.18654655,0.06633754,-0.019970087,0.06780982,0.029243818,0.71766484,0.69343376,-0.10672284,0.0036526276,0.19434412,0.16277257,-0.027564071,-0.1814284,-0.34087563,-0.15906137,-0.017931608,0.4091604,0.5329697,-0.23896226,0.21693142,-0.12152194,0.3731129,-0.2018967,-0.3967221,0.34828237,0.26785487,-0.21858686,-0.032811046,0.6248372,0.40822983,-0.090513304,0.32549492,-0.7725817,-0.37610957,0.46865243,-0.045763418,-0.38646272,0.27517053,-0.3132703,0.09732514,-0.8620799,0.50894296,-0.31721574,-0.4239999,-0.57263935,-0.37416136,-2.1415503,0.07159981,-0.21730123,-0.040480264,-0.25895217,-0.32156086,-0.04139442,-0.74422413,-0.5944761,0.2964309,-0.070402935,0.4111476,-0.06946249,0.19943355,0.033955447,-0.5902795,-0.06866956,0.3940997,0.033587635,0.16937247,0.17638487,-0.21648332,-0.08737393,-0.0016679366,-0.42413533,0.10756711,-0.44628322,-0.25290948,-0.11814018,-0.46539968,-0.0894833,0.61762214,-0.2667132,0.12657012,-0.16178681,0.06048973,0.011287212,0.12086631,0.22803518,0.14166477,0.026069313,-0.06038084,0.039609518,-0.23614189,0.24638847,0.29148486,0.4132716,0.17547148,-0.18053685,-0.12030269,0.39710805,0.6176405,-0.12657571,0.64915335,0.17224585,-0.27441007,0.41354254,-0.25258172,-0.41622674,-0.54464173,-0.5326793,0.2547468,-0.26331124,-0.5923287,-0.051789444,-0.3824738,-0.5855809,0.49643344,-0.024049915,-0.0074982345,-0.04689012,0.2556555,0.23147374,-0.2904968,-0.14003538,0.012717201,0.068453416,-0.24661233,-0.27567214,-0.6034679,-0.25742725,-0.15828909,0.8525787,-0.24483699,0.07716697,0.304903,-0.0034714364,0.26379097,-0.000623593,0.14952874,-0.07180286,0.2576275,0.092607096,-0.53128445,0.43882403,-0.19301136,-0.24625836,-0.59331894,0.09179818,0.6355458,-0.59758973,0.27971345,0.38123852,0.08533262,-0.10843231,-0.44423854,-0.109375395,0.23246314,-0.24849519,0.2783346,0.0047005415,-0.4097174,0.3394081,0.29368168,-0.3232587,-0.6712837,0.4883409,-0.05434707,-0.52917737,0.14258514,0.3089089,0.2263245,0.033407595,-0.104111075,0.24972796,-0.28726766,0.367253,0.1860058,-0.11877717,0.45453852,-0.17645001,-0.2162269,-0.8481151,0.2164307,-0.45798445,-0.41733822,-0.08768828,-0.022088083,-0.2821297,0.26177898,0.22454883,0.44329116,-0.6031773,0.16780734,-0.2806886,-0.37729982,0.47780174,0.44154784,0.5044076,-0.10406731,0.5312749,0.079512686,-0.038574357,-0.01877717,0.04430314,0.47054386,-0.10065894,0.075794294,0.017257543,0.15126947,0.21216136,0.64084786,0.09791506,0.18748124,0.11789629,-0.27608955,0.19743422,0.16061953,0.15852962,0.08414871,-0.30942023,0.33067077,0.03151502,-0.11079454,0.40262428,0.36264896,0.15861504,-0.063000746,-0.3660924,0.06424335,0.3752724,0.093933925,-1.0316398,0.25876933,-0.11093721,0.78842187,0.47510162,0.254917,0.18362603,0.43924662,-0.07102445,-0.13446933,0.08625025,0.11586578,-0.18789479,0.3911308,-0.3760535,0.2622951,-0.04427451,-0.020775795,0.17697889,-0.17600836,0.36720482,0.69937855,-0.11596056,-0.022955088,-0.07015802,-0.12804732,-0.2063471,-0.35457242,0.25773236,-0.28631324,-0.3032145,0.61134493,0.24701871,0.15418516,-0.23520707,0.05433099,-0.04469133,-0.24401543,0.28192136,-0.10982016,0.028771244,-0.02357864,-0.19032834,-0.17342371,0.49322128,-0.2869274,-0.1477099,-0.264687,-0.24843924,0.14602245,-0.09742521,0.04967706,0.05482822,-0.7526076,0.29516056,-0.43603528,-0.062325127,0.2633004,0.04481005,0.29005855,0.024296353,-0.04578542,-0.09557596,0.4743342,0.1440243,0.6868524,0.055151388,-0.19617026,-0.20437646,0.32179627,0.1432884,-0.20530897,0.25278482,-0.18038484,0.19727223,-0.6011833,0.28694436,-0.11197127,-0.18752891,0.011303397,-0.33897984,-0.076279216,0.27278343,-0.047729455,-0.057530794,0.06515204,-0.3139553,0.13003089,-0.2697165,-0.44593745,0.14327744,0.19918774,0.02898219,-0.1506378,-0.17312871,-0.33131617,0.44309372,0.15546802,0.3461617,0.23632017,0.07332924,-0.5849097,0.09997916,-0.2863366,0.3905234,-0.21574871,0.05141657,-0.10281587,-0.65273607,-0.388597,0.30577624,-0.3691934,0.09689646,0.04748781,-0.13057175,0.8426208,0.47274244,1.2162944,-0.18592884,-0.43334058,0.06782843,0.709136,-0.18088843,0.03999549,-0.27125928,1.2623032,0.5050794,-0.12741916,0.019533511,-0.022122484,-0.122151025,0.17892449,-0.2652809,-0.10185269,-0.13715975,-0.42684343,-0.31880647,0.123460926,0.28598595,-0.15739202,-0.01836741,-0.11110302,0.3651063,0.0815117,0.25045705,-0.6912359,-0.065769546,0.32736307,-0.05039024,0.048336305,-0.03615223,-0.34668085,0.45322832,-0.5565371,0.1985865,-0.39406,0.09089918,-0.28114992,-0.21049537,0.06820577,0.059632327,0.29742992,-0.7247379,-0.4106884,-0.039411448,0.21182749,0.05484529,0.087714046,0.57391727,-0.20115791,-0.054511968,-0.2315297,0.5050384,0.8552045,-0.32879496,0.046862647,0.4864689,-0.54982144,-0.48403072,-0.053262074,-0.37146437,-0.151501,-0.34695297,-0.29495537,-0.54764,0.22713701,0.056997437,-0.108475395,-0.1407141,-0.6831579,-0.16086242,0.48400497,-0.23979068,-0.2152209,-0.33390296,0.27339843,0.8386573,-0.2108438,-0.4301501,0.051514048,0.356637,-0.32801676,-0.7507642,0.12811294,-0.3830202,0.50952744,0.13060902,-0.25737095,-0.49693415,0.064971834,-0.3767169,-0.006972258,0.28510833,-0.18195525,-0.03345349,-0.2315259,0.2524163,0.59135664,-0.0327156,0.06883211,-0.55730444,-0.39934254,-0.93574977,-0.35514405,0.43865854,0.4104726,-0.19548811,-0.78575045,-0.1214317,-0.3437926,-0.08329419,-0.19112664,-0.092986494,0.29722887,0.18723775,0.66231143,-0.37473577,-1.2007403,0.12352516,0.046260852,-0.3187484,-0.35450077,0.43648702,0.28322238,0.63086253,0.070024244,-0.22364837,-0.018321143,-0.61140466,0.34833643,-0.33967048,-0.090184554,-0.5480965,0.34899646 +893,0.35403526,-0.09823213,-0.57052124,-0.13003004,-0.2964533,0.17557311,-0.3938241,0.38265264,0.055228706,-0.72656745,0.19809234,-0.28217122,0.0044537685,0.23708634,-0.036452074,-0.5987397,0.20149618,0.258602,-0.53165084,0.6897699,-0.57165515,0.12834662,0.2363698,0.13551994,-0.18319352,0.17393412,0.24886088,-0.24602084,0.008788973,-0.27560043,0.01036789,0.03301781,-0.5961186,0.53314704,-0.0048203506,-0.3178362,0.26647064,-0.31766665,-0.016238352,-0.62260705,-0.07295058,-0.81869745,0.5000725,0.09511418,-0.30246362,0.12891349,-0.004904906,0.28581437,-0.23813546,0.1739822,0.38258395,-0.4815614,-0.3781313,-0.45696244,-0.18209873,-0.65099746,-0.4509774,-0.13552584,-0.4927059,-0.06371436,-0.26908287,0.18584315,-0.19729583,0.06800796,-0.12396344,0.122299396,-0.42086005,-0.10228389,0.020129139,-0.35441002,0.25250262,-0.46983087,-0.019977054,-0.18968765,0.17117745,0.16158143,-0.25143656,0.27816495,0.2261945,0.6323221,0.1079432,-0.2680402,-0.11992782,-0.20888881,0.25008157,0.60006595,-0.1574282,-0.11912393,-0.27780998,-0.23235293,0.04311949,0.048959654,-0.059691545,-0.4347342,-0.0072585307,-0.22645585,-0.4316096,0.08416239,0.3857461,-0.50673527,0.09660444,0.37757826,0.3792189,-0.13377377,-0.19621104,0.040454928,-0.05951721,-0.5074476,-0.23927128,0.31622836,0.1083822,0.46841368,-0.008315834,0.16347711,0.6662771,0.06795007,-0.17228492,-0.17475109,-0.039999247,-0.009429176,-0.21703815,-0.23769026,0.31663752,-0.6572682,-0.18707085,-0.5779732,0.9564371,0.008816714,-0.9241781,0.4963294,-0.49161625,-0.09322048,-0.14784229,0.6961341,0.6067176,0.74810314,-0.12567872,0.8003126,-0.48873594,0.17030703,-0.32397023,-0.24658024,0.30895075,-0.026589742,0.3014907,-0.4192451,0.21164536,0.14845742,0.035037994,-0.17408375,0.73823494,-0.20784819,-0.12520039,0.30440387,0.70120853,-0.36347273,-0.03464571,0.45313355,1.2021762,0.641114,0.23490562,1.2725451,0.25770926,-0.26486805,-0.017141024,-0.017120458,-0.81052333,0.22958767,0.40856025,1.0296767,-0.12358699,0.21693452,0.020954618,0.44626155,-0.11032569,0.0107417,-0.1448278,0.2771481,-0.2521848,-0.18353891,-0.33740678,-0.2982227,0.07523251,-0.03197837,-0.032176625,0.42818627,-0.038392145,0.47557643,0.0052889325,1.8123993,0.013960605,0.21331894,0.101972334,0.31868982,0.1637296,0.005389318,-0.21869884,0.2536793,0.23671865,-0.039795436,-0.38996398,0.17223959,0.00047036633,-0.60951453,-0.027983835,-0.31987,-0.05431955,-0.13477136,-0.20788594,-0.25914755,0.28640845,-0.41529894,0.33956146,-2.484944,-0.08718919,-0.12671585,0.22637211,-0.22092664,-0.20786393,-0.22394651,-0.36858854,0.6329667,0.44389638,0.5031443,-0.45497462,0.5338351,0.48967743,-0.35193774,-0.10301294,-0.72125053,0.03876577,-0.27118316,0.38241234,-0.01262185,-0.36054087,-0.22212149,-0.034802724,0.60537434,-0.23171149,0.18501513,0.4118364,0.24976303,0.17616601,0.388176,-0.11284533,0.5448403,-0.37537375,-0.24403907,0.17445655,-0.38186768,0.351006,-0.23131734,0.25719157,0.34651193,-0.51032233,-0.7725482,-0.48095512,-0.2971582,0.99414235,-0.51138675,-0.43992448,0.25806138,0.14201865,-0.31835386,0.17848277,0.4237502,-0.05391567,0.17232783,-0.6367463,-0.08042813,0.17175086,0.50167423,0.07261657,0.06446957,-0.47602454,0.60389495,-0.09426433,0.74367374,0.4928943,0.00882345,-0.067133665,-0.18564576,0.15977158,0.9756017,0.101439394,0.24823375,-0.23623371,-0.18735512,-0.22812462,-0.097192205,0.015175288,0.41096184,0.71504664,-0.006183309,-0.06431646,0.33651367,-0.3426982,-0.19727826,-0.03304572,-0.54473025,0.010431248,0.20871729,0.4963329,0.5327147,0.16266273,0.31790683,-0.08918276,0.5695034,-0.24850188,-0.44175175,0.49631247,0.41407773,-0.14353736,-0.08071934,0.5246448,0.65784025,-0.24458261,0.6098626,-0.43852457,-0.5631004,0.2856737,0.023159439,-0.4692935,0.18708295,-0.4306508,0.2346719,-0.86940914,0.27608293,-0.42880055,-0.64622974,-0.6268361,-0.085236646,-3.6310422,0.23191915,-0.032872345,-0.24428642,0.1634441,0.062491626,0.3041885,-0.4728724,-0.29643106,0.15402648,0.24489331,0.56991315,0.04599136,-0.16186018,-0.41838375,-0.13619284,-0.07259489,0.26843712,0.039888065,-0.014917977,-0.13259272,-0.35141954,0.052524086,-0.39675882,0.03925866,-0.042726934,-0.72719026,-0.31880707,-0.21729898,-0.52973217,-0.49177673,0.6927975,-0.58963436,-0.05882634,-0.22636652,-0.012271664,-0.17012793,0.34634233,0.020414943,0.09248052,-0.10232406,-0.2722902,-0.3708761,-0.4643619,0.046219885,0.0707633,0.19199128,0.5817239,-0.084269606,-0.08121317,0.6516013,0.37965393,0.046146378,0.8187375,0.26923007,-0.1561142,0.29092988,-0.3817114,-0.09731501,-0.5917918,-0.24587257,-0.3470993,-0.42879686,-0.43794894,0.07971051,-0.36544505,-0.67461705,0.62161344,0.27522993,-0.46986413,0.21120398,0.36580873,0.18503927,-0.12639445,-0.026989976,-0.30047324,-0.0040090284,-0.51839715,-0.43342045,-0.72022706,-0.5544862,0.23129265,1.1039943,-0.16501223,-0.03698274,0.22848438,-0.09797705,0.07343796,0.29863086,0.0126255555,0.25102422,0.3960165,0.09897258,-0.73339295,0.64321285,-0.16833287,0.036629874,-0.5269709,0.23824652,0.5605542,-0.94391656,0.39603305,0.48383793,0.21796311,0.13661514,-0.5374057,-0.37408748,0.0972231,-0.24647129,0.34179714,0.037244864,-0.9597366,0.5505362,0.22929345,-0.21331477,-0.92012936,0.19509703,-0.23482953,-0.28186733,0.15693195,0.37618545,-0.087222345,0.10567071,-0.44721308,0.04869722,-0.70152336,0.16585466,0.19795947,-0.103908144,0.4827861,-0.15876801,-0.09901723,-0.6674414,-0.17999327,-0.4399607,-0.2239338,0.38010252,-0.034456823,0.13370748,0.2617015,0.2078347,0.3993169,-0.41109172,0.14225914,-0.16842872,-0.2600271,0.4746717,0.42365885,0.24834292,-0.47728953,0.5920921,-0.23282434,0.06445189,-0.5614662,0.00818187,0.41504678,0.2674069,0.32935077,-0.19798179,-0.0650536,0.16738671,1.0252799,0.21071875,0.35029736,0.19461425,-0.15106241,0.5716612,0.035098687,0.15356956,0.059111666,-0.44320002,-0.09197149,-0.013169289,0.16390239,0.28700328,0.122999884,0.6327787,-0.13632132,0.003132065,0.080406554,0.2647296,0.18734574,-0.5249993,0.48954293,0.17198062,0.37010124,0.86109614,0.024967998,0.09738036,0.7434554,-0.4096943,0.2790017,0.060761113,-0.21252431,-0.368517,0.5833671,-0.7367756,0.07744657,-0.2036166,-0.024329558,0.2613268,-0.16500506,0.49923134,0.8910627,-0.06369794,0.25977907,-0.071138196,-0.17591952,0.020959726,-0.22509623,-0.1734652,-0.33906412,-0.5051436,0.717611,0.24649465,0.48690498,-0.301436,-0.092197895,0.20403421,-0.0153322965,0.3172262,-0.0350441,-0.022691796,0.12653153,-0.49463424,-0.22385979,0.8321659,-0.0134031875,0.12108082,0.3115854,-0.27838954,0.52023745,-0.06258341,-0.23944974,-0.13817064,-0.5007707,0.2953626,-0.4164476,-0.291918,0.5949356,-0.09275081,0.34529778,0.07131127,0.11934212,-0.09131525,0.43836525,0.31596193,0.70045334,0.14516641,-0.29189292,-0.014903545,-0.08461901,0.09569493,-0.31351593,-0.17803927,-0.27485967,0.14665978,-0.9096373,0.3422093,-0.26640448,-0.31427887,0.25674775,-0.02409883,-0.018922018,0.4434118,0.045717616,-0.08414557,0.05806466,0.10548123,-0.30554488,-0.24532308,-0.40549386,0.1496079,-0.29235458,0.12697703,-0.09440968,-0.041392483,0.15225677,0.3770727,-0.0008463785,0.06980691,0.05541865,0.18751252,-0.31243008,0.17610429,-0.06698938,0.44493553,-0.08129609,0.010265201,-0.15795445,-0.0946511,-0.2640648,-0.043475527,-0.16622971,0.21608083,0.1265307,-0.54303604,0.8907933,-0.14280806,0.83080816,0.15098451,-0.3405924,0.13193624,0.4894599,0.019453267,0.11096696,-0.36023402,0.9605627,0.6893189,-0.11580872,-0.03595199,-0.50371784,-0.34887543,0.34187827,-0.24971263,-0.11048042,-0.122489594,-0.8162736,-0.23564868,0.22993998,0.37242934,0.081048645,-0.18380427,0.14158438,0.109813355,0.27077302,-0.065920606,-0.45625266,0.04675466,0.29226342,0.22018503,0.12224901,0.09966087,-0.29012612,0.30694377,-0.921138,0.16373965,-0.41560975,-0.22549449,0.12403903,-0.07909801,0.19537199,0.04169901,0.27699503,-0.14081036,-0.28057078,0.057958525,0.54688853,0.36001864,0.4836268,0.9837756,-0.21585262,0.04425894,0.0018339878,0.4495059,1.0913182,-0.35473147,-0.14189814,0.46702346,-0.22596703,-0.60955256,0.07310095,-0.23697837,0.0013732215,-0.09944477,-0.688245,-0.27770784,0.19712786,0.2457078,-0.3747178,0.035981666,-0.48810396,0.14637297,0.24093823,-0.26982114,-0.46203884,-0.21916904,0.16368149,0.9066272,-0.23121911,-0.35599503,0.033134192,0.108417146,-0.5241224,-0.53633815,-0.050780218,-0.4290445,0.27904415,0.41109964,-0.39428052,0.2454537,0.14579429,-0.62971705,-0.0055764965,0.22413345,-0.34967843,0.0028651368,-0.5021604,0.089859426,0.9138383,0.21200953,-0.060851455,-0.48184142,-0.6339045,-0.68052745,-0.31545377,0.48493275,0.021961376,-0.05253799,-0.2487321,-0.047465462,-0.1603286,-0.11119155,-0.01839869,-0.5017121,0.399948,-0.082451,0.4992236,-0.10769264,-0.92031604,0.14922374,0.2573696,-0.126822,-0.4331909,0.16585462,-0.47895694,0.9912786,-0.012288659,-0.001435419,0.33768272,-0.7710023,0.30394897,-0.58104503,-0.08232365,-0.61703736,0.001474157 +894,0.45747355,0.026348911,-0.5914605,-0.07351533,-0.36724204,0.043908328,-0.20476288,0.5179207,0.22619572,-0.33225095,-0.16697252,0.075641975,-0.05905582,0.31490213,-0.17286211,-0.59990776,0.17168203,0.16795897,-0.49143034,0.5339091,-0.30693236,0.27264127,-0.08967416,0.41336048,0.13680406,0.3729481,-0.03575934,-0.013168499,0.0022901632,-0.15259337,-0.077417485,0.37544778,-0.4926339,0.27447343,-0.14289096,-0.26018938,-0.010860451,-0.41636503,-0.27380872,-0.80407774,0.22620556,-0.5664542,0.4407174,-0.1039857,-0.29285002,0.0754085,0.22736324,0.38912293,-0.057379045,-0.18857297,0.08819914,-0.090799056,-0.24048328,-0.10511932,-0.0946723,-0.39318395,-0.43319058,-0.050127223,-0.47842395,-0.07705183,-0.28656688,0.17742686,-0.27155244,0.027749453,0.0101523325,0.5772876,-0.279083,0.08544034,0.30529732,-0.1094504,0.1471873,-0.6663695,-0.009941161,-0.055348024,0.41857067,-0.05150838,-0.20731577,0.24178712,0.23748769,0.4742716,-0.02727335,-0.16213426,-0.35717154,-0.18485856,-0.044786274,0.47445494,-0.19178832,-0.3619205,-0.09695126,0.086290374,0.08727199,0.21157198,-0.080294624,-0.1464984,-0.10452979,-0.10650865,-0.20273821,0.29089138,0.48203215,-0.2362915,-0.14767465,0.4695593,0.5375413,0.16417786,-0.15101159,-0.01992755,0.03813467,-0.55034673,-0.23945326,-0.23415022,-0.118499935,0.3316061,-0.049328662,0.29459888,0.6161633,0.056240812,-0.15595992,0.20879796,0.08088439,0.013398722,-0.29541636,-0.107433766,0.19433045,-0.37164322,0.089291856,-0.06600109,0.6503186,0.1395216,-0.6910949,0.21126965,-0.5228811,0.073510095,-0.005867712,0.38097963,0.74298424,0.47471166,0.22822098,0.6760502,-0.21124339,0.18399584,-0.14950714,-0.2776733,0.041815262,0.036812067,0.057577036,-0.48119274,0.09741908,0.032982253,-0.055451326,0.15853015,0.21750489,-0.52194184,-0.14343908,0.08292958,0.8494768,-0.20415391,-0.18507576,0.66219217,0.82937384,0.80496216,-0.015262338,0.9127476,0.064341836,-0.101453885,0.19442548,-0.24073651,-0.6021998,0.2947566,0.33353263,0.114119604,0.17907748,0.02752304,-0.11757584,0.4871999,-0.20508534,-0.12950827,-0.013329864,0.30562848,0.18164068,-0.10749158,-0.41753018,-0.2682635,-0.041000668,0.0040863194,0.25220457,0.21552555,-0.19348414,0.35329384,0.027208453,1.6082268,-0.024753299,0.108369306,0.18817607,0.39421967,0.2894612,-0.3228891,-0.16173933,0.23710728,0.086773,0.12254355,-0.46625155,0.19375148,-0.15359041,-0.41274002,-0.119181536,-0.28588945,-0.23641384,-0.008021265,-0.41429335,-0.15457863,-0.19037211,-0.25856924,0.42883426,-2.8396645,-0.12186143,-0.10712076,0.36104348,-0.22914985,-0.36596566,-0.18335393,-0.44958377,0.33934164,0.2898582,0.43409806,-0.5170654,0.5003472,0.46092528,-0.602725,-0.06475713,-0.49263567,-0.057657346,0.13853687,0.26367235,0.022894183,-0.09518716,-0.14128678,0.14993042,0.45722198,0.0022168718,0.0913111,0.4016865,0.4029178,0.0153004825,0.34043503,-0.17086057,0.55849785,-0.29512936,-0.16053298,0.22941676,-0.50949633,0.1677104,-0.23929241,0.0858553,0.56283295,-0.46959853,-0.97096795,-0.6636185,-0.045621857,1.1393082,-0.1028291,-0.27563542,0.29931778,-0.63110334,-0.27522618,0.13343409,0.53964466,-0.049471818,-0.13570166,-0.6958209,-0.012528179,-0.21364823,0.16849945,0.0016136672,-0.07570421,-0.429414,0.54960376,-0.05750085,0.5603268,0.17747119,0.21448112,-0.22574073,-0.39354962,-0.087008506,0.72077143,0.45597965,0.22896853,-0.22612837,-0.19021688,-0.50960624,0.012243915,0.07413,0.6945579,0.47248387,0.013660569,0.063362285,0.19234703,0.01310401,-0.047038957,-0.14233814,-0.24515678,-0.068786286,0.013219528,0.55431044,0.57541484,-0.199384,0.33002272,0.040562935,0.24392964,-0.28919804,-0.44206718,0.48138964,0.77555805,-0.25951487,-0.3011726,0.6489267,0.38709712,-0.098957114,0.338077,-0.60763216,-0.4537813,0.31527114,-0.122363195,-0.38781935,0.09618971,-0.22208689,0.095795594,-0.7547854,0.15348871,-0.38249856,-0.7190883,-0.45931616,0.05033986,-3.042919,0.25781035,-0.058558144,-0.17875537,-0.23549213,0.005162807,0.15104863,-0.52288157,-0.6252665,0.1968976,0.06092049,0.7199702,-0.12999243,0.18352748,-0.11415103,-0.33964097,-0.21970563,0.22895616,0.07952289,0.33778837,0.012013659,-0.47532484,-0.107813776,-0.051068164,-0.43998763,0.1858619,-0.5958664,-0.38766423,-0.120461926,-0.45956805,-0.059969902,0.5914375,-0.37546033,0.12751435,-0.2675339,0.063411,-0.22931737,0.22626972,0.01075092,0.07494187,0.14358672,-0.17921408,-0.01589556,-0.2577666,0.27655092,-0.011331074,0.4612048,0.2411339,0.08631033,0.19295955,0.56357497,0.6020253,-0.12165765,0.9711814,0.33286005,0.018294161,0.34464154,-0.23764461,-0.3240751,-0.18717921,-0.19400373,0.019512605,-0.31516048,-0.2355586,0.021010332,-0.51422095,-0.7774055,0.23000796,0.020644765,-0.012020588,-0.0020201355,0.21773562,0.5903495,-0.28491387,-0.0496513,-0.07074393,-0.075650945,-0.57806355,-0.32031462,-0.40571636,-0.43077686,0.0044455808,1.0226232,-0.30528122,0.08659883,-0.08305234,-0.08581583,-0.13407601,0.13216826,-0.016814847,0.11115106,0.48567128,-0.21080865,-0.5489608,0.3657297,-0.30970818,-0.22298187,-0.56922907,0.3104071,0.4592563,-0.5967388,0.5774852,0.37461698,0.11525978,-0.22778964,-0.59781396,-0.09411108,0.008028418,-0.2928596,0.3865239,0.41339862,-0.7662774,0.35710907,0.18797636,-0.14059359,-0.73304933,0.590964,0.03501842,-0.32096514,-0.09926401,0.3691874,0.14102882,-0.025727505,-0.17698184,0.07630798,-0.21499225,0.1678506,0.08535334,-0.059556082,0.3458653,-0.37638444,-0.001460962,-0.7052005,-0.05451052,-0.47871897,-0.2363566,0.1795274,0.059115656,0.1894977,0.12214787,0.03475345,0.3534882,-0.31708404,0.056618135,-0.25885916,-0.2680834,0.36190864,0.40333486,0.4835429,-0.37598813,0.50931865,0.018987272,-0.1011492,0.056280732,0.16367021,0.40142602,-0.15559268,0.5020086,0.009138092,-0.11273829,0.15971455,0.6624024,0.09646033,0.23016913,-0.012689643,-0.14000499,0.22329089,-0.028503746,0.12228216,0.028532773,-0.6071321,-0.071734145,-0.2944382,0.09121861,0.6081543,0.18500061,0.24213514,0.055649057,-0.30700326,0.058989048,0.12864284,0.022261709,-1.1776694,0.45984793,0.14095944,0.9132205,0.31687424,0.04562293,0.0023130067,0.708338,-0.017473646,0.20799327,0.3777922,0.05851637,-0.34786063,0.49640912,-0.68279755,0.47431493,0.0041966066,-0.07785287,0.074680924,-0.1559494,0.47729397,0.8948903,-0.13952264,0.02405868,0.05227966,-0.32162237,0.11931093,-0.2177114,-0.14099567,-0.681107,-0.28905475,0.59093815,0.49926257,0.26782256,-0.2387187,-0.028409194,0.13335136,-0.015484711,-0.0016410276,-0.010112375,0.05325541,-0.0328354,-0.5341391,-0.19312769,0.5076761,0.046568416,0.15094396,0.109648034,-0.09182175,0.29459363,0.0060117543,-0.057791013,-0.091072775,-0.5789322,-0.052136064,-0.3032164,-0.45856363,0.46400416,-0.21864703,0.17031932,0.1687672,0.1066445,-0.3150087,0.50742316,-0.03414715,0.7441751,-0.012907121,0.05388402,-0.29547027,0.21102288,0.19025436,-0.22290403,-0.22641745,-0.38819084,0.0058697127,-0.62208253,0.30238873,-0.09496167,-0.28671286,0.13211557,-0.058564078,0.13924086,0.4052366,-0.035122678,-0.2003061,-0.08955413,-0.014355395,-0.27836683,-0.19472343,-0.1351865,0.23301056,0.029398516,-0.04991202,-0.1530079,-0.17232808,-0.12002881,0.33002624,-0.067741096,0.34679466,0.32638484,0.14909558,-0.1971334,0.0023195446,0.30411378,0.52116966,0.041069545,-0.1298739,-0.22799146,-0.3568318,-0.34808868,0.33134902,-0.05479329,0.28640866,0.23460928,-0.1556302,0.6063442,-0.02089042,0.93570995,-0.011889387,-0.25015214,0.10681336,0.29584634,0.0843576,-0.06631429,-0.40965706,0.8202207,0.4177197,-0.075825356,-0.06796805,-0.34685785,0.07210271,0.20829585,-0.16449058,-0.08882919,-0.12600496,-0.565065,-0.16734362,0.15889823,0.2312384,0.13768338,-0.07206915,-0.056313936,0.23799182,0.0890712,0.23809457,-0.4115174,-0.1268329,0.28498366,0.2612093,0.112787545,0.09823411,-0.6000584,0.344993,-0.6031339,-0.03288819,-0.25784832,0.22355554,-0.3144239,-0.29199785,0.18781757,-0.042521425,0.35971147,-0.2146149,-0.30724958,-0.33117667,0.38588178,0.19562072,0.07356019,0.4674217,-0.20589563,-0.009330589,0.12082314,0.6444086,0.71868926,-0.29703403,0.016012296,0.33089817,-0.22480665,-0.53231907,0.23885527,-0.37412232,0.07368391,0.09035696,-0.17626968,-0.4252201,0.3698387,0.12713408,0.123812445,-0.073801085,-0.6235257,-0.10906974,0.16822168,-0.22956046,-0.15871672,-0.25931475,0.13461919,0.6369064,-0.14013329,-0.25616056,0.1001492,0.31211296,-0.04137935,-0.64283717,0.037360046,-0.31621987,0.27799457,0.06486307,-0.2750461,-0.29032063,0.018733032,-0.48588437,0.30309188,0.065541066,-0.29935277,0.083836354,-0.32484215,-0.024219006,0.8081848,-0.10799736,0.2625788,-0.4385458,-0.37672335,-0.68373615,-0.31483987,0.20330188,0.21654408,-0.052888915,-0.6298293,-0.061038222,-0.1202032,-0.18084171,-0.043163344,-0.35931057,0.36244178,0.07949662,0.22512555,-0.04255961,-0.870602,0.09529353,0.062381424,-0.2368324,-0.44023612,0.3644915,-0.045696173,0.94768405,0.08890608,0.120878376,0.23962314,-0.4205675,-0.121769354,-0.1255005,-0.082018614,-0.62985605,0.05974281 +895,0.3746295,-0.21929921,-0.38911,-0.11615025,-0.34140953,0.019816482,-0.27775592,0.16225168,0.111195534,-0.3146471,-0.23523998,-0.22413895,0.11071185,0.36736277,-0.15288094,-0.45417926,-0.1713407,0.12303754,-0.7064795,0.5669357,-0.46439523,0.2596282,0.27014425,0.34815156,0.20115662,0.29973373,0.28496125,-0.11962218,-0.06457934,-0.042106006,-0.23725745,0.26843432,-0.47479802,0.008473166,-0.2325844,-0.35789022,-0.0022846023,-0.51581055,-0.21953163,-0.7778922,0.12638964,-1.0365984,0.5225988,-0.18510373,-0.1148418,-0.006918212,0.46489257,0.39710993,-0.32290685,0.050702307,0.25002053,-0.24241194,-0.17808262,-0.14967483,-0.093894765,-0.46116728,-0.54619825,-0.14132604,-0.55343276,-0.22501612,-0.24064597,0.25357136,-0.36695632,0.20542185,-0.17203985,0.27897316,-0.417296,0.005563863,0.23747009,-0.18279251,0.3764178,-0.4110438,-0.09324602,-0.13368362,0.39400595,-0.13126615,-0.14441092,0.39772895,0.4736751,0.32597697,0.22463973,-0.27764598,-0.1905941,-0.08658841,0.020285996,0.45456424,-0.19189784,-0.35495093,-0.2783276,0.11987901,0.4030776,0.5114996,-0.16183211,-0.2767512,-0.01839203,-0.054442894,-0.31337947,0.42794037,0.4617768,-0.2512916,-0.4268403,0.28487322,0.49376792,0.27479705,-0.28967744,0.011499208,0.029087523,-0.53187525,-0.03429906,0.23325114,-0.09203838,0.47113392,-0.08965022,0.2362938,0.85007364,-0.18662685,-0.04632016,-0.14028384,-0.057592113,-0.35304296,-0.13200411,-0.13240921,0.10500419,-0.58452237,0.17322813,-0.21470429,0.8368566,0.06522241,-0.72754586,0.35311046,-0.5771259,0.14039093,-0.11291831,0.57958335,0.67800623,0.40716985,0.47809163,0.74862504,-0.27407694,0.13420828,-0.21779858,-0.5016672,0.056974426,-0.2032372,0.046556495,-0.4916638,0.09376454,-0.102685735,0.061212752,-0.0067098695,0.5283541,-0.5949572,-0.023097014,0.14457512,0.70513713,-0.36214346,-0.14404605,0.620945,0.8991192,0.943465,0.08275631,1.1108052,0.36060652,-0.11381319,0.20054294,-0.2320209,-0.55039495,0.29426584,0.38342467,-0.23219861,0.27681926,0.011134211,-0.08810774,0.24195524,-0.37501258,-0.13830566,-0.1309652,0.19694008,0.19753362,0.06835124,-0.40230128,-0.22615552,-0.0035256227,0.013187417,0.21183817,0.09633315,-0.24355036,0.3915041,0.039232884,1.5847396,-0.094433315,0.027588714,0.080737874,0.56812835,0.21707319,-0.075443864,-0.06628785,0.32861608,0.4239903,0.10992956,-0.61082006,0.23217662,-0.22336563,-0.3956774,-0.06116837,-0.33523542,-0.15159123,0.056301516,-0.447513,-0.08098116,-0.040081654,-0.33771196,0.51423544,-2.7970197,-0.18306813,-0.13830265,0.25375712,-0.32499796,-0.2189786,-0.16472048,-0.5645491,0.28646618,0.26542002,0.45653504,-0.6772099,0.41780555,0.45931107,-0.594403,-0.16638885,-0.7296316,-0.124234505,-0.07031821,0.572056,0.048312187,-0.08564035,-0.07504098,0.17285486,0.775096,-0.04732355,0.15445969,0.4891936,0.43607247,0.26147023,0.68099415,0.009046904,0.56798327,-0.16697177,-0.19239344,0.36335963,-0.1813161,0.20220512,-0.10481403,0.12458265,0.55718005,-0.4294466,-1.029463,-0.62505496,-0.41945547,1.0964977,-0.42387664,-0.42307916,0.15698287,0.05986441,-0.07133008,0.0032446801,0.5135108,-0.14717034,0.15192226,-0.79148126,0.12965769,0.014793268,0.20826861,0.061910223,-0.014658515,-0.20857035,0.5337462,-0.0512109,0.5655158,0.17727576,0.28540096,-0.24625991,-0.5218477,0.15798025,0.99078625,0.2630252,-0.09882782,-0.2030905,-0.35783488,-0.10783771,-0.18431212,0.089211814,0.4208967,0.7198939,-0.0024921,0.27523884,0.31499022,-0.053647574,0.012234942,-0.19468495,-0.1397252,-0.016665148,0.0740087,0.41348654,0.65903765,-0.07920552,0.5690449,-0.25343046,0.32722104,0.04686446,-0.5904463,0.5473663,0.74343,-0.1984549,-0.015199521,0.45825914,0.5467464,-0.30651176,0.40153462,-0.5938881,-0.26891625,0.73814666,-0.22180405,-0.5222572,0.19807047,-0.25134057,0.13939491,-0.681259,0.27720463,-0.18412977,-0.37754056,-0.4150718,-0.07207512,-3.5018952,0.09497962,-0.08637406,-0.3030981,-0.14528018,-0.21499012,0.3136699,-0.6042445,-0.5767974,0.14163874,0.1851066,0.5967444,-0.02937352,0.118865974,-0.3615322,-0.052084222,-0.15580828,0.2040475,0.24995764,0.2955075,-0.19049937,-0.5072521,-0.06653456,-0.088947885,-0.54587185,0.17413191,-0.5913335,-0.5428088,-0.13377602,-0.47647658,-0.3295053,0.6595859,-0.38970488,-0.03521538,-0.20201524,0.08826248,-0.14644758,0.27746737,0.25076446,0.16848032,0.068125516,-0.085244775,0.16123213,-0.325402,0.5563287,-0.0060127634,0.2433626,0.16853577,0.034899067,0.20521055,0.48504636,0.47986308,-0.09378583,1.0332302,0.4198254,-0.1396938,0.13963714,-0.16585748,-0.24097201,-0.7193672,-0.28633782,-0.17190515,-0.4442395,-0.39781716,-0.008551554,-0.10259921,-0.7903814,0.7528919,-0.080170244,0.36841312,-0.2139192,0.23307739,0.49996343,-0.24056247,0.044416595,-0.0983425,-0.15510593,-0.5767949,-0.35384735,-0.65485954,-0.5062534,-0.084437594,0.9505721,-0.20460816,0.048396565,-0.23427247,-0.27751482,-0.005345305,0.055410538,0.11656905,0.45454502,0.48487774,-0.12764834,-0.7470447,0.43365797,-0.06997214,-0.016111247,-0.4532682,0.1390134,0.63658375,-0.6676146,0.41640207,0.35279146,0.046869673,-0.0695345,-0.49814305,-0.22490664,-0.104434915,-0.2673134,0.38592988,0.13029866,-0.77194554,0.6023438,0.30767447,-0.39762852,-0.68023044,0.30945295,-0.086033806,-0.21222325,0.033840816,0.28503484,0.1053953,-0.029303452,-0.28316143,0.16681358,-0.48460928,0.36794314,0.071084835,-0.082446694,0.28770933,-0.0657925,-0.3225851,-0.68054414,-0.0077749095,-0.46279764,-0.30159226,0.3656186,0.007726272,-0.0718205,0.26564452,-0.14255017,0.39956087,-0.29556432,0.03363284,0.071889795,-0.27485308,0.17001489,0.5372136,0.36780244,-0.26595703,0.64354825,0.20533694,-0.2762184,0.12369339,-0.022772022,0.30636072,0.11856018,0.28332138,-0.211935,-0.30808315,0.4509608,0.70259374,0.21816212,0.38525823,-0.03017563,-0.12735607,0.39014068,0.05007743,0.13730189,0.024577688,-0.45484325,-0.07069402,-0.16685492,0.12126514,0.5505817,0.23000653,0.33189258,0.052293718,-0.17690511,-0.01379682,0.1059754,-0.08926835,-1.1837689,0.2673874,0.28411955,0.7858798,0.34933499,-0.05133791,-0.081106834,0.7138805,-0.34101868,0.07408897,0.417922,0.14767303,-0.50366366,0.79507935,-0.6420943,0.40060574,-0.14867307,0.062233943,0.12571405,0.17324701,0.25344476,0.94057304,-0.2291366,0.0890882,-0.030858431,-0.14212853,0.019535892,-0.29215857,0.013953598,-0.3872077,-0.428701,0.68556756,0.41426122,0.36073595,-0.089726135,-0.061504208,-0.048515517,-0.17904441,0.17796387,0.049394023,0.07613933,-0.007840745,-0.49995688,-0.16847862,0.62685907,0.051355407,0.19247082,-0.15105106,-0.23545766,0.039084468,-0.21826053,-0.0048856577,-0.03294946,-0.62736547,-0.09408851,-0.20637833,-0.5288003,0.3975506,-0.3583291,0.18234862,0.1912284,0.008325587,-0.22980891,0.14908828,0.34288165,0.7092443,-0.006904459,-0.22422782,-0.31135783,-0.01734158,0.26264173,-0.2280213,0.03136294,-0.2941274,-0.03495338,-0.5695949,0.57137996,-0.18601926,-0.523594,0.21075559,-0.22038978,-0.04610254,0.6185001,0.05178133,-0.08231844,0.0063257418,-0.15276863,-0.5056797,-0.05660294,-0.19106713,0.15771522,0.32352364,-0.1312264,-0.00788023,-0.25746307,-0.123657845,0.52709955,-0.007456557,0.46697518,0.19316782,0.1477457,-0.15739037,-0.0084404545,0.059738763,0.5810247,0.15747906,-0.030278882,-0.36268944,-0.35484168,-0.3332982,-0.02483364,-0.0795378,0.276507,0.03209006,-0.4132258,0.9703932,-0.16420099,1.082162,0.12141968,-0.33471614,-0.02019528,0.49575183,-0.09320875,0.028141024,-0.36382866,0.7821275,0.5668486,0.032811895,-0.06475744,-0.38833156,-0.12812681,0.36366075,-0.38482377,-0.1121833,-0.007950662,-0.47754386,-0.5147678,0.26317,0.16576557,0.17064747,-0.10356713,-0.04662907,0.19533709,0.07454429,0.55870247,-0.562368,-0.14457826,0.16661192,0.34479424,-0.2387963,0.23009995,-0.44443658,0.47954497,-0.5166576,0.0988662,-0.4433077,0.14963984,-0.24550724,-0.25436068,0.20400119,-0.11025881,0.40697625,-0.12361858,-0.35333693,-0.12589242,0.5590455,0.07267412,0.13327919,0.6866909,-0.25657907,0.0405872,0.10144235,0.45677373,1.2816342,-0.55119956,0.014045522,0.34918007,-0.3650962,-0.52607334,0.4449436,-0.32031953,-0.063139424,0.053250365,-0.42127043,-0.27708513,0.32188034,0.11429892,0.1311474,0.070132665,-0.4936083,-0.026014829,0.36238468,-0.21357098,-0.22260837,-0.24742442,0.43290636,0.6311772,-0.30180973,-0.34392816,0.034473643,0.32653823,-0.27894017,-0.45894966,-0.12864819,-0.21406314,0.31053796,0.1177382,-0.29770166,-0.0848163,0.14925343,-0.4511822,0.017759927,0.12230361,-0.3934325,0.08862854,-0.1164337,-0.09519137,0.9816253,-0.32515624,-0.15431643,-0.74064183,-0.42432785,-0.8332954,-0.31461728,0.24580905,0.20790474,0.017665435,-0.39376628,-0.038241826,-0.13386743,-0.32375655,-0.03955915,-0.5236104,0.3583861,0.13931337,0.48569164,-0.26302198,-0.82708615,0.07749192,0.057753857,-0.07228044,-0.66769546,0.61120516,-0.077499576,0.6963548,0.14969735,-0.024621995,0.19529413,-0.31059715,0.087704726,-0.40253365,-0.1879551,-0.88688856,0.073640995 +896,0.45730764,-0.13988641,-0.64794403,-0.13000634,-0.11671428,0.08513566,-0.2248598,0.18586317,0.26868442,-0.5174976,-0.089782625,-0.11070751,0.08455295,0.34719265,-0.11712634,-0.742693,0.14389266,0.32443392,-0.50899494,0.5056862,-0.50649273,0.39550957,0.06839162,0.19608848,-0.048636172,0.12916747,0.2732473,-0.04328279,-0.06373722,-0.29122147,-0.008064669,0.017302994,-0.60928476,0.2285874,0.0015764832,-0.47657442,-0.0023593444,-0.3553549,-0.44614804,-0.8253752,0.26114404,-0.9014199,0.56621563,-0.029011132,-0.3298259,0.3418179,0.081985965,0.25171897,-0.19845955,0.07251408,0.09705159,-0.32920727,-0.37177467,-0.3357512,-0.2675557,-0.38439396,-0.6577107,-0.041229468,-0.5817824,0.11001739,-0.34343383,0.115017615,-0.5029173,0.28384194,-0.22022255,0.42511258,-0.23060766,0.032640237,0.2345087,-0.12358941,0.060827173,-0.35899633,-0.09444466,-0.12231907,0.06483274,-0.008162673,-0.35621136,0.36752015,0.29812983,0.53277683,0.03746684,-0.36470094,-0.31854314,-0.047854804,0.27314755,0.4700932,-0.08233543,-0.4330528,-0.20951508,-0.03234743,0.19193341,0.1292127,0.17953953,-0.31337997,0.08356815,0.17029317,-0.4416746,0.44581315,0.5887402,-0.2965321,-0.12574512,0.34819758,0.57607484,-0.1768431,-0.09368939,0.16751143,-0.10670435,-0.60024196,-0.23998755,-0.04193455,-0.22909704,0.6361171,-0.30583966,0.097227775,0.5791957,-0.35484773,-0.26886475,0.32874286,0.063978516,-0.17482303,-0.23107216,-0.2868241,0.5051761,-0.64012486,-0.010802975,-0.20932443,0.8822991,0.11087041,-0.73423266,0.4169828,-0.61620164,0.2713912,-0.14691314,0.7143933,0.6255316,0.6086028,0.3927737,0.74708396,-0.58466077,-0.036940493,-0.083917156,-0.5803694,0.20963739,-0.26258707,-0.044347122,-0.387393,-0.03461613,0.073391825,-0.26671344,0.02150948,0.6640201,-0.35291007,-0.09915678,0.0402259,0.76543045,-0.39642665,-0.18155043,0.80163074,1.117841,1.2359812,0.21566452,1.320013,0.49585077,-0.117854886,-0.07313322,-0.09139746,-1.0773654,0.33462998,0.20210099,-0.40481365,0.42357528,0.13603482,-0.09848769,0.35753638,-0.5087629,-0.20899323,-0.046178136,0.3719043,-0.010955696,-0.17271203,-0.43704844,-0.32276016,0.18470731,-0.0632872,0.25301564,0.46689188,-0.28299916,0.46871904,0.21367405,1.2910413,-0.10432386,-0.064302996,0.14039192,0.30287144,0.24594344,-0.16183956,-0.026163243,0.19736011,0.43917763,0.11885666,-0.63997084,0.006064876,-0.20122232,-0.522311,-0.21410066,-0.20544481,0.036085792,-0.26113746,-0.18760516,-0.3145352,-0.12838647,-0.46992227,0.46177387,-2.2924502,-0.25043216,-0.059303317,0.3105581,-0.0968483,-0.33170074,-0.108074866,-0.6168777,0.30358347,0.3038019,0.4631663,-0.7422097,0.45235273,0.5191492,-0.48790088,-0.0056195143,-0.67150086,0.03527591,-0.23346502,0.31743506,0.111551575,-0.03415664,-0.08672248,0.17704147,0.5823238,-0.13261418,0.1916354,0.45934722,0.45730355,-0.11647514,0.36772993,0.05334331,0.7144754,-0.4666856,-0.14194515,0.309079,-0.5272831,0.113459535,-0.091514125,0.1842993,0.39260116,-0.43225104,-0.82953954,-0.6279215,-0.16196333,1.3775623,-0.40244505,-0.5352049,0.24492596,-0.049758546,-0.23268096,-0.045490835,0.26762116,-0.40903282,-0.09895686,-0.7962367,0.14044635,-0.008661444,0.3199991,-0.16343972,0.04512476,-0.32124692,0.600285,-0.098442905,0.5330833,0.30916113,0.22340542,-0.32472324,-0.5431016,0.18727861,1.0399938,0.35025123,0.17390272,-0.38444933,-0.19729845,-0.17038496,-0.1472719,0.19858263,0.4258081,0.84376436,-0.19123824,0.11991611,0.36774394,-0.039904073,0.031873778,-0.07660016,-0.40105087,-0.07753876,-0.13709049,0.6156272,0.7797193,-0.17274903,0.3541778,-0.1432298,0.4317018,-0.16704136,-0.6075641,0.65399873,1.2726135,-0.2040439,-0.42066997,0.69587857,0.4884432,-0.40809816,0.7401364,-0.61397797,-0.42937627,0.38959825,-0.08393591,-0.39983308,0.14219591,-0.37554714,0.20623027,-0.837781,0.45260465,-0.16909193,-0.65177476,-0.44859442,-0.025157807,-4.0378046,0.17311716,-0.24859825,-0.075322054,-0.14009787,-0.06819362,0.25578067,-0.34093586,-0.7454884,0.21994737,0.21987364,0.77754027,-0.12572847,0.19522792,-0.17510106,-0.21713169,-0.395604,0.15918534,0.25243443,0.2064916,0.13827302,-0.48260787,-0.09823547,-0.2619592,-0.42465788,0.12708524,-0.73912716,-0.43886662,-0.09523886,-0.5818532,-0.61523944,0.66638255,-0.3531678,0.01989865,-0.3178756,-0.027463647,-0.09305541,0.40556198,-0.21300521,0.029290965,-0.058522563,-0.21269837,0.008808434,-0.18742186,0.3432892,-0.053158734,0.34625039,0.34564286,-0.24313919,0.045745593,0.46970206,0.7360457,0.04289146,0.8192978,0.3214807,-0.15375292,0.3105141,-0.15024765,-0.3066392,-0.6498111,-0.3057161,-0.052808695,-0.49328735,-0.34266546,0.033887096,-0.36085966,-0.9735594,0.553861,0.041978322,0.056774303,0.047652915,0.38915083,0.43305126,-0.10454646,-0.09862819,-0.042752128,-0.34242398,-0.44249514,-0.33430618,-0.9789811,-0.35715738,0.10597616,1.1527832,-0.033220217,0.01749778,0.018711096,-0.07994558,0.0567633,0.27909052,-0.009807756,0.2414057,0.57842666,0.017664222,-0.7102511,0.4439307,-0.37270573,0.017214097,-0.7158574,0.20481804,0.62570804,-0.77731776,0.46401304,0.5248096,0.15057112,0.019361576,-0.5000326,-0.28410816,0.044947304,-0.12345098,0.54748577,0.46277764,-0.94488645,0.5514269,0.3816813,-0.47237998,-0.71713835,0.35424134,-0.11864771,-0.13090077,-0.059822902,0.5086429,-0.17442349,0.09364487,-0.2223838,0.092947006,-0.44523513,0.2689872,0.25073385,0.04569377,0.123013146,-0.08456703,-0.072023936,-0.7109048,-0.15838696,-0.5726655,-0.09251937,-0.01051044,-0.027048746,-0.006783059,0.22322692,-0.09774857,0.36572087,-0.2686624,0.05095106,-0.053474206,-0.4632209,0.6793458,0.5588051,0.40565413,-0.3915456,0.7586981,0.07333123,-0.14840218,-0.18978928,-0.004099204,0.3360699,0.09386502,0.54158485,0.45305464,-0.014586554,0.32568452,0.7743861,0.23048991,0.54499173,0.30199003,-0.15062734,0.3055519,0.1528043,0.36889976,0.0060243607,-0.5332568,-0.0408194,-0.3262369,0.23806565,0.6700793,0.12149526,0.45914248,-0.063490495,-0.3932924,-0.019577738,-0.0025299971,-0.11286701,-1.4614056,0.47699574,0.15377879,0.5867994,0.58840156,-0.0050541665,0.21935837,0.52380776,-0.24161513,0.14635979,0.28584242,0.017139025,-0.34781796,0.64025474,-0.79138684,0.43962348,-0.19504033,0.14497161,0.016994072,0.10550892,0.39668688,0.9754441,-0.12793726,0.20819518,-0.11222387,-0.29676652,0.26173243,-0.43098253,0.15448588,-0.4455962,-0.3658333,0.82142216,0.30945268,0.5494092,-0.21747524,-0.10321239,0.10059753,-0.15776652,0.05079717,0.035818044,0.037386358,-0.24081472,-0.7195228,-0.12289678,0.6180159,0.26223555,0.18258892,0.07866435,-0.11851156,0.2300472,-0.2668129,-0.2272823,0.027763424,-0.692829,-0.15216725,-0.20081249,-0.49944514,0.15793514,-0.26685092,0.19695896,0.3353557,0.14687833,-0.52353704,0.018160177,0.15291156,0.60894173,0.055126853,-0.2338183,-0.18136604,0.16983296,0.28845838,-0.3495175,0.1866751,-0.309838,-0.059202358,-0.5465588,0.59866405,-0.23695086,-0.3561471,0.25593063,-0.14931203,-0.046186987,0.5679939,-0.30419922,-0.16464195,0.08231267,-0.02130623,-0.17066042,-0.37989727,-0.17933647,0.25489688,0.048849728,-0.19334687,-0.0037377293,-0.09542697,0.016891552,0.32909063,-0.12951526,0.23009516,0.36558563,0.10515426,-0.4239874,-0.067162685,0.117981665,0.6956581,0.053841487,-0.32004818,-0.50529826,-0.4618848,-0.18830983,0.08090366,-0.024841528,0.31518608,-0.013877513,-0.37356436,0.7750146,0.107312694,1.0899588,0.10395272,-0.39339602,0.012013912,0.62470275,0.13670625,-0.17655197,-0.19889075,0.97964346,0.5283957,-0.19606209,-0.26982838,-0.6772222,-0.07460194,-0.03641389,-0.2630917,-0.42188266,0.04990047,-0.67779094,-0.15899706,0.23555396,0.3228113,0.12310849,-0.07521907,0.3023072,0.514609,0.066216305,0.30442283,-0.48307472,0.024581987,0.3735337,0.19675589,0.1008278,0.069770426,-0.39204648,0.2335655,-0.68727237,0.07240919,-0.104794815,0.06061512,-0.017059969,-0.33057305,0.34238002,0.30377427,0.19271165,-0.47327912,-0.32133776,-0.1381217,0.5089778,0.176783,0.27981022,0.8055845,-0.23668233,-0.047689393,0.21014386,0.5642601,1.0248567,-0.050459724,0.029676042,0.20128441,-0.5391445,-0.77840734,0.51316255,-0.09789632,0.11419478,-0.052071176,-0.47168332,-0.7293993,0.3662268,0.10330104,-0.007733831,0.43900827,-0.52778095,-0.2368305,0.20654249,-0.34700316,-0.2734676,-0.35122225,0.14939652,0.57256407,-0.2909697,-0.31945917,0.060829803,0.2347494,-0.20662615,-0.53879344,-0.28547108,-0.48527497,0.33203924,0.07919412,-0.2361339,0.080502026,0.14593357,-0.43786418,0.3023837,0.24090448,-0.22187011,0.2543244,-0.25758392,-0.18391807,0.65348977,-0.3397508,0.12663108,-0.71790373,-0.6183126,-0.95184547,-0.2545935,0.5616052,0.06257811,-0.076922186,-0.58791035,-0.1769999,0.058858827,-0.273042,-0.049332783,-0.42549464,0.420109,0.10168694,0.3239573,0.03667812,-0.8436214,0.043536086,0.14883493,-0.2499641,-0.43012887,0.48504508,-0.13771118,0.8954576,0.13241805,0.1734558,0.31159097,-0.5843365,0.16791286,-0.12798157,-0.10363186,-0.5722039,0.012786072 +897,0.6074062,-0.048998628,-0.5170523,-0.037493806,-0.31044033,0.014882737,-0.2512493,0.33563295,0.33047375,-0.32866284,-0.23311043,-0.14385428,-0.09093285,0.31210762,-0.15651336,-0.6264318,-0.2040326,0.1504263,-0.40096062,0.8526773,-0.31116167,0.23314336,0.03468955,0.36730495,0.4324618,0.11238742,0.18054877,0.039566416,-0.22717796,-0.26351535,-0.026694454,0.20392457,-0.6091184,0.1813968,-0.18897645,-0.3979922,-0.09972046,-0.4956681,-0.3440037,-0.7856306,0.40580684,-0.74884903,0.36638606,0.041000545,-0.18311456,0.3546133,0.2287182,0.24406312,-0.088557094,-0.2074851,0.121750906,-0.108843125,-0.03252,-0.083643965,-0.38490814,-0.21864584,-0.7657355,0.03842873,-0.4218912,-0.20237572,-0.39787585,0.13489719,-0.38030815,-0.02315248,-0.22296308,0.65218854,-0.4918969,0.0749164,0.09179108,-0.0815672,0.091357715,-0.84198225,-0.35273913,0.0046180347,-0.025568824,0.033010583,-0.09509396,0.21310498,0.1604418,0.37526697,0.07646223,-0.23610497,-0.57552207,-0.110761076,0.3048384,0.5039987,-0.0005465654,-0.2001775,-0.19536726,-0.03174836,0.21013114,0.29648617,0.38624462,-0.13827549,-0.042005584,-0.13827087,-0.24533492,0.51068455,0.500168,-0.32614404,-0.36913416,0.32739693,0.53768444,0.31589526,-0.14371274,-0.15350525,-0.069335505,-0.49992365,-0.06293798,0.23629893,-0.38144302,0.59873116,0.0017399621,0.12627429,0.49204797,-0.15156434,0.13887547,-0.02066471,0.08358538,0.061271053,-0.49985048,-0.29573876,0.33989912,-0.33584183,0.32345244,-0.08536343,0.90516675,0.033115573,-0.69190276,0.28229147,-0.5786018,0.10021329,0.03863164,0.48116717,0.64572614,0.27384135,0.35220715,0.788017,-0.21189213,0.05705337,-0.12085493,-0.09817021,-0.14090785,-0.105177715,0.22700302,-0.49075097,-0.11673311,-0.0686612,0.0003119982,0.21416165,0.6050793,-0.32182658,-0.14576696,0.27476338,0.8728965,-0.13001516,-0.11027675,0.91043526,1.3146987,1.4313846,-0.01894217,1.0561193,0.112633675,-0.27398768,0.028844027,-0.24614851,-0.6611817,0.19247445,0.27505052,-0.16320919,0.22637922,0.036999933,0.004432889,0.43390396,-0.42616814,0.123574495,-0.10159986,0.10312564,0.2643066,-0.026342694,-0.5328283,-0.35135034,-0.08564564,0.052310072,0.008028181,0.26540634,-0.2791562,0.19139484,-0.04180292,1.4644196,-0.14602375,0.012228741,0.2655231,0.4239777,0.1526795,-0.2185812,0.09421674,0.22426862,0.27998206,-0.09553185,-0.6336802,0.112746805,-0.33261627,-0.40833044,-0.15292518,-0.43605006,-0.07192935,0.05888841,-0.37438518,-0.19369163,-0.19791172,-0.49701184,0.48241064,-2.9023683,-0.022168994,-0.07872859,0.26306474,-0.30236226,-0.32702163,-0.0075335894,-0.50853604,0.4758239,0.22090127,0.48131004,-0.46854395,0.26798704,0.45690182,-0.71212536,0.046924964,-0.649427,-0.24565479,-0.004399873,0.48408306,-0.10357718,0.06438328,0.052089408,0.21269442,0.5941567,0.2625292,0.24267401,0.4031514,0.37480038,-0.27621028,0.46247414,-0.11591785,0.4913855,-0.25153378,-0.16311568,0.42794168,-0.41998762,0.3962135,-0.3258667,0.16957569,0.50610507,-0.39859676,-0.9339524,-0.5243549,-0.340913,1.0148823,-0.2670453,-0.6653291,0.33088037,-0.22124122,-0.099612586,-0.061107066,0.5151149,-0.07891024,-0.25211784,-0.7306151,0.022095177,-0.09026054,0.140417,0.00012853972,-0.006884974,-0.43571588,0.85653746,-0.06097478,0.48108834,0.31989008,0.44946972,-0.2091603,-0.30405995,0.08944552,0.93168896,0.4011213,0.07881196,-0.34670416,-0.10077858,-0.26252386,-0.26379153,0.119593754,0.5525269,0.68161094,-0.15198506,0.14497769,0.34208748,0.05444291,0.06638359,-0.07373747,-0.31281117,-0.24750155,-0.07421389,0.45534882,0.7560107,-0.0064349542,0.39512414,-0.02051844,0.16091275,-0.2364038,-0.32356438,0.48503417,0.828462,-0.09103041,-0.3165228,0.58298934,0.5957173,-0.2562721,0.5708686,-0.44955567,-0.20392752,0.52995366,-0.18665077,-0.41670778,0.014622303,-0.48137188,-0.19871551,-0.6990038,0.21882893,-0.43144462,-0.41998482,-0.48218888,-0.20958057,-2.3580127,0.17563698,-0.3109489,-0.2504072,-0.1900027,-0.0954433,-0.09774494,-0.6765762,-0.7074655,0.11891334,0.14800376,0.6506924,-0.1489722,0.085713536,-0.19310245,-0.34138992,-0.43659866,0.08235006,0.07653374,0.44784096,-0.1392873,-0.31140438,-0.0009949964,-0.07409591,-0.35725623,-0.054543562,-0.47365955,-0.36219856,-0.11863144,-0.44321978,-0.18838233,0.6398278,-0.4093973,0.025703628,-0.2893138,0.015607363,0.00011468392,0.17830823,0.22112559,0.32298067,0.15781872,-0.11320378,-0.061955318,-0.23565228,0.43351904,0.13844317,0.4148496,0.61767185,-0.17153539,0.1950462,0.36506134,0.5252085,-0.08980259,1.0319308,0.43295747,-0.13338062,0.22759174,-0.18747255,-0.22220048,-0.7020737,-0.13203517,0.052818887,-0.37305367,-0.6407295,-0.20175669,-0.32659495,-0.86245483,0.44492647,-0.0322846,0.57508767,-0.053643517,0.20171738,0.4703901,-0.17642571,-0.021815883,-0.06903574,0.021456517,-0.38826662,-0.43573233,-0.6880704,-0.38015085,0.15052143,0.96047914,-0.15004133,-0.118415944,0.24793316,-0.3762291,-0.10935784,0.2071853,-0.07000014,0.010298527,0.47473225,0.3094458,-0.6318835,0.5062376,0.043445505,0.042454958,-0.45417303,0.18813199,0.45565712,-0.41306293,0.61708844,0.21688029,0.14673892,-0.118324265,-0.6230388,-0.23254374,-0.026499419,-0.12588619,0.31163967,0.39521253,-0.70722616,0.43496007,0.09340374,-0.25754994,-0.9214356,0.46698782,-0.08844723,-0.2684301,-0.047152616,0.40004805,0.25557238,0.034489512,0.014528293,0.2977721,-0.39052922,0.26691872,0.20431453,-0.104022816,0.173061,-0.13615663,-0.22225468,-0.73050684,0.14354132,-0.3607254,-0.36386007,0.22114362,0.12420352,0.062026437,0.374297,0.34064117,0.34230286,-0.15224046,0.27736542,-0.12159591,-0.15716611,0.4160164,0.39610225,0.79623264,-0.5040568,0.56979984,0.041159026,-0.17619416,0.14097062,-0.015487596,0.33005974,-0.07417968,0.37347955,-0.032913096,-0.19269124,0.12077452,0.6478434,0.20871855,0.34450597,0.061529838,-0.20288755,0.45947793,0.0044459244,0.10479513,-0.08781587,-0.70264846,0.022465605,-0.3069172,0.09093172,0.49751097,0.04133165,0.3126297,-0.11939727,-0.09561278,0.1057601,0.1992334,-0.27927023,-1.0423452,0.16522019,0.018384036,0.9421718,0.71125,-0.024268266,0.094718106,0.49511245,-0.18947461,0.04935371,0.4762804,0.03930848,-0.5062474,0.6251379,-0.561929,0.587668,-0.101309314,-0.020111639,0.012482194,0.07447608,0.51738846,0.68952334,-0.37241885,-0.15929915,-0.072387114,-0.4635573,0.09710583,-0.3174753,0.2667639,-0.5417472,-0.35379183,0.7704781,0.60655934,0.29299456,-0.17776097,-0.03205248,0.088694826,-0.16507241,0.13559881,0.009636523,0.04305923,0.032064978,-0.634502,-0.074614756,0.42410645,-0.4327474,0.049256746,0.0738195,-0.16355082,0.10919252,-0.11923982,-0.18542807,0.05193464,-0.79803556,0.010145079,-0.23879424,-0.39993078,0.21204615,-0.1493743,0.33594185,0.145935,-0.022400549,-0.26542094,0.25670263,0.17310493,0.5838029,-0.07781922,0.057253845,-0.28047058,0.09221314,0.038524583,-0.119872324,0.06129879,0.074101724,0.2495765,-0.6846026,0.5384115,-0.17066447,-0.2167746,-0.118329994,-0.22452694,-0.019323103,0.71400875,-0.18224144,-0.012866766,-0.3449927,-0.23045397,-0.26962727,-0.22042543,-0.028428402,0.14168221,0.085459545,-0.20743439,-0.12291492,-0.12331792,0.05673921,0.16300859,-0.037746347,0.36495337,0.23149487,-0.0025970845,-0.42577922,-0.19495402,0.15149365,0.42864752,-0.0061815013,-0.16387232,-0.26918587,-0.37042558,-0.3921504,0.40137476,-0.036051873,0.3696543,0.055459674,-0.19138663,0.7002998,0.16714838,1.1997378,0.02974411,-0.40304992,0.042486884,0.59570086,-0.17751104,-0.119070634,-0.2623618,0.9313479,0.46373132,-0.014706268,-0.12746271,-0.37973145,0.05402614,0.1879174,-0.24734871,-0.068456635,-0.017934404,-0.4301472,-0.0887376,0.08432312,0.22596033,0.08538026,-0.2651309,-0.050820485,0.27687886,0.12050017,0.4447279,-0.39499715,-0.33296674,0.35371727,0.15818323,-0.013300249,0.2101833,-0.37979856,0.3162257,-0.7043584,0.22326161,-0.19174653,0.14818023,-0.27515915,-0.15709202,0.4028428,0.1038354,0.49601313,-0.3718535,-0.35318455,-0.3116441,0.38577932,0.17306294,0.15753135,0.5212346,-0.19862773,0.014377682,-0.020623028,0.61441934,1.1029611,-0.102587745,-0.06822359,0.19548963,-0.40779817,-0.7499328,0.34073538,-0.38163647,0.07985409,-0.10919325,-0.24500205,-0.66305923,0.15490964,0.19352429,-0.043655936,0.18211061,-0.60238296,-0.34430602,0.038600214,-0.34150356,-0.23281462,-0.20218055,-0.071221195,0.7167617,-0.0994114,-0.39705357,-0.047701064,0.18569033,-0.08644143,-0.47999606,0.10559873,-0.32540953,0.28896528,-0.016755732,-0.30486575,-0.25205696,0.20342074,-0.4818344,-0.05141095,0.16637689,-0.29966673,-0.10747772,-0.37307817,0.007202066,0.90024275,-0.20394543,0.29405773,-0.37483466,-0.5652489,-0.75230896,-0.5156615,0.3940519,-0.03194727,-0.03805518,-0.5588702,-0.031391144,-0.33490303,0.018207647,-0.07226361,-0.46251327,0.4443305,0.12811746,0.34125122,-0.24881011,-0.62441766,0.10702447,0.09826912,-0.0813039,-0.48134944,0.30128404,-0.02792581,0.82594234,0.077003844,0.028095208,0.11635128,-0.50023204,0.1542864,-0.14826457,-0.20212676,-0.50921273,0.15079048 +898,0.525285,-0.07306313,-0.516171,-0.10330221,-0.17524827,0.11691177,-0.22626168,0.49677837,0.4451088,-0.34378114,-0.007851249,-0.14266114,-0.011452265,0.34452292,-0.093471915,-0.33896795,-0.045144945,0.076201156,-0.44181475,0.48949185,-0.5000784,0.22521956,-0.22061104,0.46130416,0.17955373,0.31216016,0.039532077,0.04618207,-0.047246296,-0.12933838,0.10694054,0.41606313,-0.43351507,0.08282821,-0.17459247,-0.20219205,-0.090372,-0.36247692,-0.47170112,-0.77565926,0.21801426,-0.636756,0.4048982,0.07340247,-0.35323954,0.13644724,0.15182531,0.18646185,-0.14258051,-0.10940132,0.0579296,-0.09622955,0.0112872645,-0.13319655,-0.21212797,-0.24241829,-0.5497581,0.05863394,-0.43573812,-0.10359927,-0.28760675,0.1637854,-0.32425204,0.01800966,-0.13220054,0.5665545,-0.40886557,0.046563815,0.2298311,-0.18548667,0.33485782,-0.62645245,-0.3045789,-0.061972108,0.15282236,-0.04292527,-0.29869056,0.26027218,0.28682107,0.37601122,-0.059069663,-0.09996692,-0.39346746,-0.07849145,0.1557639,0.35400096,-0.22710502,-0.39430767,-0.16962354,0.006789709,0.20630758,0.32422364,0.14070071,-0.2876425,-0.12907569,0.1474445,-0.25845394,0.5643319,0.60822266,-0.24847132,-0.26354784,0.31026906,0.45328644,0.31520128,-0.22098878,0.006026249,0.00053066714,-0.5539618,-0.058560405,-0.007072,-0.057743184,0.49141222,-0.10582795,0.24440695,0.48735848,-0.21473452,-0.18109994,0.08651918,0.010078521,-0.02525624,-0.37311706,-0.030320775,0.073286444,-0.41243523,0.14720811,-0.07870884,0.6849827,0.17252019,-0.65157473,0.3288624,-0.47636998,0.15602861,-0.062269997,0.5048181,0.76483095,0.29519767,0.44133943,0.645731,-0.3436184,0.08379507,-0.22394507,-0.21213846,0.1035416,-0.22286482,-0.0016697645,-0.5290912,-0.13482152,0.0059720348,-0.14621559,0.18907659,0.4718001,-0.48537266,-0.19606455,0.18684801,0.69411486,-0.20130074,-0.08332226,0.7230608,1.0749657,0.9734762,0.053579632,1.0707375,0.02236778,-0.123738624,0.23953404,-0.34338558,-0.69895136,0.34443378,0.22464828,-0.22523463,0.16478327,-0.0061482303,-0.110716455,0.3829575,-0.3819239,0.024174344,-0.027946906,0.5014019,0.1809719,-0.04248772,-0.2757252,-0.29576898,-0.04642221,-0.0713607,0.0396962,0.27541953,-0.23143005,0.3729463,-0.057857335,1.4570191,-0.071443506,0.062896706,0.1298945,0.54460317,0.2431702,-0.2752286,-0.07378531,0.43236744,0.097051494,0.18946664,-0.42139685,0.13930854,-0.229714,-0.3994173,-0.07513867,-0.44359002,-0.087801814,0.018385101,-0.24207143,-0.11243514,-0.15813282,-0.4215035,0.49834207,-3.064875,-0.33856696,-0.09318208,0.33014888,-0.18115129,-0.3290935,-0.07505929,-0.52644575,0.41044128,0.28290915,0.42197803,-0.6984099,0.16626444,0.44067925,-0.52888805,-0.18856533,-0.5562731,-0.103544295,0.0844416,0.45775822,-0.016175684,-0.00035338892,-0.034431424,0.21600671,0.45210338,0.06881468,0.17456554,0.26240134,0.26619893,-0.05210968,0.51222706,-0.06280441,0.44525743,-0.24590003,-0.2548191,0.4242626,-0.4469117,0.2860601,-0.09714874,0.087117516,0.40552545,-0.35436606,-0.8747194,-0.47501284,-0.052407194,1.2869054,-0.13477409,-0.49008256,0.3056531,-0.60733235,-0.32705587,-0.112676196,0.45696783,-0.08218273,-0.031733066,-0.7848731,0.10448049,-0.13942917,0.1328511,-0.051868763,-0.047167093,-0.2385246,0.4858353,0.008018851,0.3932561,0.40668443,0.066606425,-0.39818725,-0.59465474,-0.07783765,0.8190792,0.39524505,0.1559359,-0.2083913,-0.21355236,-0.33802295,-0.076566696,0.15794423,0.5763812,0.55322546,-0.087760106,0.16030495,0.39538503,-0.043709256,0.05911119,-0.22150388,-0.17764041,-0.08518218,-0.040191032,0.63186646,0.85651726,-0.14629549,0.4885756,0.050907217,0.25664866,-0.107995555,-0.38784418,0.4752821,0.97048634,-0.25398722,-0.25328794,0.5863648,0.340425,-0.31525552,0.43130782,-0.41161388,-0.26301974,0.477193,-0.18580928,-0.44214153,0.33039212,-0.30509517,0.03886068,-0.7288308,0.2152796,-0.4214252,-0.509607,-0.48040885,-0.045751516,-3.2680771,0.12366603,-0.24729976,-0.18969132,-0.10218835,-0.13001135,0.11651143,-0.4586988,-0.56867826,0.038223702,0.16954832,0.65801597,-0.24824347,-0.021647668,-0.27272344,-0.34598783,-0.419221,0.09380883,0.13461085,0.46232972,-0.093969345,-0.44855362,-0.066913985,-0.11473336,-0.41896367,0.1254404,-0.421185,-0.5319903,-0.11978145,-0.4428332,-0.289206,0.6213005,-0.13911422,-0.048030987,-0.2848016,-0.030744318,0.07507108,0.25756264,0.08122995,0.10417613,0.16253212,-0.09862505,-0.0807504,-0.25446692,0.1857784,-0.034297653,0.26377195,0.504558,-0.051415265,0.20903607,0.5124512,0.57607895,-0.16357806,0.98655343,0.41729492,-0.014873648,0.34358135,-0.26693648,-0.31231153,-0.43897116,-0.2007735,0.07742515,-0.4662253,-0.3976092,-0.11705052,-0.28818443,-0.6195009,0.58421755,-0.07313685,0.16143173,-0.082383074,0.25063446,0.55787086,-0.117626145,0.012814472,-0.027742442,-0.1775356,-0.61095154,-0.2624931,-0.62651086,-0.5223409,0.25254762,0.7848982,-0.29580644,0.10708327,0.07675182,-0.24115798,-0.087490305,0.08675101,0.03132285,0.16203499,0.36615765,-0.061000913,-0.5420526,0.25482005,-0.06531137,-0.08468267,-0.6056921,0.3323822,0.60573393,-0.5581317,0.64709586,0.30071998,0.053924028,-0.19931546,-0.58661413,-0.087829225,-0.078824,-0.30385956,0.58421946,0.2792506,-0.8894791,0.48387024,0.35681993,-0.20984821,-0.7458895,0.5819468,-0.08612446,-0.26960015,-0.13068494,0.4112339,0.14631149,0.08935843,-0.14541319,0.35481334,-0.26653713,0.21743542,0.265779,-0.20121816,0.42763948,-0.179185,-0.22014055,-0.66954815,-0.0068427077,-0.5513478,-0.35107356,0.23998807,0.12827857,0.049319144,0.16615078,0.055669468,0.40446416,-0.18557218,0.12898915,0.018513652,-0.18127032,0.39705724,0.46278724,0.64169765,-0.32219774,0.5334902,0.0011543666,-0.07800106,0.019837435,-0.0017767338,0.2806525,-0.024789408,0.35767484,0.12155973,-0.22885711,0.2177762,0.7404037,0.10593848,0.37070835,-0.01691623,-0.118330926,0.2290296,0.02006706,0.25355712,-0.08750753,-0.56323105,-0.037798196,-0.4232833,0.17349872,0.42032394,0.22145063,0.24866088,-0.10699135,-0.42717245,-0.008906456,0.13106263,-0.026767079,-1.3302411,0.24808954,0.14625832,0.81576705,0.44862235,0.061906997,0.00997167,0.637161,-0.11876154,0.078409895,0.46415883,0.0934578,-0.4422317,0.42716366,-0.9225068,0.465128,-0.036219694,0.028912766,0.07080905,0.0021324297,0.489456,0.764709,-0.16264352,-0.025923138,0.11595863,-0.37405798,0.2091554,-0.38878733,0.049963165,-0.6424988,-0.30915827,0.50591594,0.47337747,0.29664263,-0.21038932,-0.034365036,0.14346503,-0.14456932,0.14006801,0.0518602,0.05758955,-0.1493284,-0.5944009,-0.17609109,0.43482408,0.1973031,0.14721394,-0.034869164,-0.09124648,0.21481015,-0.10581526,-0.014731006,-0.09266551,-0.54086053,-0.18492712,-0.30208254,-0.42745233,0.5140999,-0.26455688,0.2528417,0.254144,0.14798129,-0.21513097,0.45256782,-0.04819897,0.711475,-0.04166364,-0.09697747,-0.3345429,0.08839337,0.18718731,-0.15436895,-0.123970255,-0.23828173,0.011674054,-0.4932567,0.511741,-0.0761763,-0.2415678,-0.03436428,-0.0930675,0.090110354,0.50417507,-0.14492252,-0.2516803,-0.17796476,-0.15308845,-0.34708145,-0.15668747,0.058402166,0.15955462,0.23856707,-0.22519924,-0.08510569,-0.2366059,0.029073538,0.29118463,-0.053512957,0.23331252,0.2985712,0.08904146,-0.2607077,-0.13438384,0.2730097,0.5057347,0.11470385,-0.11251648,-0.2511333,-0.4488367,-0.4320542,0.11672896,-0.041544046,0.31853727,0.06905,-0.19591814,0.57246405,-0.048099503,1.0561259,0.062437296,-0.2584238,0.011804605,0.42007756,0.046823934,-0.07639756,-0.3478434,0.724636,0.46429476,-0.23305997,-0.17793517,-0.42741156,0.017173357,0.10217177,-0.18691316,-0.076557636,-0.12190493,-0.60996515,-0.06781173,0.12795609,0.2890173,0.22890733,-0.19906217,0.043920588,0.31159273,0.08979754,0.35916615,-0.3410229,-0.18018843,0.30008718,0.37856755,0.030692354,0.033213872,-0.45314032,0.4124379,-0.4546714,0.15141611,-0.1104764,0.2211811,-0.16573673,-0.31730422,0.287287,0.0007190985,0.36374983,-0.28265536,-0.38621718,-0.24604791,0.3250993,0.12481516,0.08899788,0.5018303,-0.2349529,-0.07665475,0.08450425,0.47090507,1.1486627,-0.18776567,-0.16273536,0.2956019,-0.27344784,-0.7259384,0.29721954,-0.38051605,0.1949441,0.06370479,-0.11741345,-0.48631886,0.20468391,0.18411317,0.09244871,-0.031345285,-0.6317354,-0.14109391,0.163231,-0.348416,-0.15112485,-0.28030038,-0.08178411,0.54733825,-0.18435074,-0.34479377,0.026989317,0.33336183,-0.18594414,-0.5441751,-0.023865735,-0.26186174,0.23063782,0.00085502514,-0.31218234,-0.10015207,0.11770587,-0.47989914,0.11022849,0.15537132,-0.3574979,0.035399806,-0.27520722,-0.16671847,0.90796584,-0.3246617,0.37852746,-0.21353368,-0.47352752,-0.65345234,-0.18248583,0.22589916,-0.022763561,-0.010518391,-0.53823775,-0.0077204844,-0.22531496,-0.24760689,-0.009974206,-0.35055092,0.49339053,0.035120573,0.29761317,-0.11391819,-0.7026498,0.15055011,0.22196513,-0.10759982,-0.5717215,0.59263384,-0.105737396,0.6919318,0.0732773,0.10044724,0.35937005,-0.38002777,-0.031913117,-0.09409294,-0.164857,-0.5093788,0.04565584 +899,0.4407859,-0.17065947,-0.52726334,-0.2499839,-0.31617638,-0.060323372,-0.023894975,0.62391627,0.46554637,-0.018690139,0.07001531,-0.019605586,-0.143369,0.49638602,-0.16502474,-0.9298453,0.024050675,0.11926543,-0.62288064,0.4719104,-0.41628763,0.2613639,-0.17334183,0.55031884,0.17423661,0.14761555,0.029265516,0.06470439,0.28483462,0.000529622,-0.06285983,0.21939029,-0.46642253,0.33917025,-0.040301524,-0.24851261,0.029347016,-0.3820363,-0.33518836,-0.87066245,0.43518475,-0.56752235,0.57424164,0.08060575,-0.43897453,0.023680212,0.13284205,0.29610696,-0.45947334,-0.08706658,0.08887624,-0.08252866,0.07589533,-0.02659183,-0.35095248,-0.33940756,-0.6184843,-0.077971436,-0.41394138,-0.12862913,-0.25608328,0.1635767,-0.36165503,-0.11951826,-0.25945407,0.6479514,-0.2982712,0.14691253,0.37772608,-0.18467207,0.21278293,-0.44761062,-0.12949951,-0.093013845,0.09480917,0.18449199,-0.3515686,0.36496723,0.26857057,0.35340902,-0.09863508,-0.26011375,-0.23302011,-0.1406233,-0.06674292,0.3700695,-0.24644786,-0.2894683,-0.21315467,0.062530324,0.2377065,0.35548222,0.0035042565,-0.23253246,-0.017991006,-0.13512789,-0.1195394,0.5587395,0.45802274,-0.25714687,-0.29048893,0.30797634,0.23345439,0.20850806,-0.20750594,0.17586891,0.03774755,-0.57430345,-0.23153807,0.09238684,-0.1512205,0.46054807,-0.084735245,0.15189406,0.82446104,-0.14059468,-0.23218727,-0.0688681,0.11289088,0.038580667,-0.4297121,-0.3102267,0.19937742,-0.50457495,0.110747896,-0.15466343,0.8508079,0.14226007,-0.7668981,0.18132323,-0.58620423,0.10412393,-0.18632956,0.6009671,0.9395828,0.49466538,0.32835126,0.74726266,-0.45586523,0.10132912,0.06943036,-0.26118907,0.124034464,-0.10342121,0.09790298,-0.50939447,-0.034515966,-0.029050201,-0.07634547,0.17016138,0.0210488,-0.46682385,-0.21517245,-0.017749252,0.81758004,-0.2578661,-0.13740633,0.76958114,0.9604459,1.1058893,0.09670129,1.1140894,0.29079822,-0.095021784,0.23003049,-0.2302419,-0.62068576,0.19353946,0.16374932,-0.23198362,0.2428168,-0.05427386,-0.021651268,0.4723289,-0.2422529,-0.059698284,0.0019200556,0.30661973,0.052038927,-0.26463988,-0.41131893,-0.4824792,0.06857165,0.02195265,-0.03288595,0.36073926,-0.2969494,0.3056993,0.0393027,1.1978997,0.3469971,0.03874899,0.047688723,0.44748938,0.2529819,-0.27655426,-0.1911078,0.2896503,0.48140678,0.07356323,-0.5919313,0.2071228,-0.30917585,-0.18699916,-0.060388308,-0.44991302,0.028349796,-0.13528071,-0.4066658,-0.21006499,-0.15609972,-0.104913615,0.4105235,-2.8472373,-0.061427146,-0.09494736,0.12279234,-0.11257281,-0.12651585,-0.054629516,-0.49029422,0.24309766,0.39446008,0.35913268,-0.61880785,0.3745706,0.39546537,-0.54300135,-0.062773086,-0.6752258,-0.22474344,0.078028984,0.26786846,-0.078350194,0.21046853,-0.09618673,0.30023837,0.6269446,0.17971802,0.08060191,0.18821661,0.50410664,-0.10431097,0.52196985,-0.11089006,0.48389718,-0.3941156,-0.10795916,0.15591992,-0.5146363,0.43429065,0.121332705,0.11448478,0.61060184,-0.49058416,-0.9025533,-0.4103185,-0.17477208,1.2292653,-0.36537054,-0.26887476,0.39416078,-0.44020852,-0.16187745,-0.10346606,0.5325925,-0.101032116,-0.16069557,-0.62329376,-0.055425104,-0.021187032,0.29604566,-0.096277855,-0.12896618,-0.079746485,0.5116791,-0.047640193,0.5686782,0.20860833,0.11668384,-0.46092656,-0.5670552,4.3225784e-05,0.5518091,0.37950453,0.08922106,-0.0995048,-0.13928495,-0.18902801,-0.06238538,0.09870228,0.73527294,0.77069664,-0.13333087,0.12459018,0.41011062,-0.20626569,0.0248705,-0.08953912,-0.2576888,-0.15301119,0.06896409,0.4405035,0.7599612,-0.13842617,0.42165127,-0.05829147,0.20002896,-0.19132538,-0.4568931,0.5583397,0.8049666,-0.11481502,-0.23733978,0.5861445,0.35442278,-0.3429515,0.40024078,-0.45543823,-0.15740697,0.76043296,-0.1344185,-0.3903452,0.010695373,-0.28069147,-0.092615105,-0.94176143,0.37278402,-0.29377612,-0.64279324,-0.44529784,-0.021164,-3.9207084,0.16304593,-0.27365914,-0.21883963,-0.2622522,-0.033662777,0.28328404,-0.5674836,-0.59599835,0.15167391,0.20809229,0.5382839,-0.13686685,0.08794132,-0.38599655,-0.30843222,-0.307588,0.1653841,0.16412435,0.2860128,0.0031332572,-0.31628385,-0.05867328,-0.0539338,-0.5706336,0.084922455,-0.582863,-0.4033629,-0.09580805,-0.6758025,-0.16840875,0.821704,-0.25122812,-0.025110478,-0.17349319,-0.04539925,-0.13405125,0.33493087,0.19836225,0.25478983,0.06807104,0.018710986,-0.15518317,-0.31333736,0.20835467,0.042953607,0.49694657,0.16201766,-0.08054952,0.19295485,0.6395152,0.67469054,-0.0003350973,0.75923204,0.38320565,-0.07940954,0.3351028,-0.3709383,-0.38047218,-0.44640234,-0.24385363,-0.17211038,-0.33739635,-0.4015551,-0.07069711,-0.26934218,-0.81870526,0.3637413,0.031136194,0.25829682,-0.16990362,0.17882985,0.3555913,-0.16689889,0.17766671,-0.060548287,-0.21472692,-0.39840588,-0.28532287,-0.6634372,-0.3947183,0.31231955,1.0737575,-0.34110418,0.048446327,-0.07030691,-0.4015272,0.046970546,0.18464416,0.17639816,0.28558728,0.21590261,-0.20254202,-0.63867086,0.40382826,-0.19723749,-0.1264811,-0.68391186,0.07062445,0.820117,-0.5714434,0.76527596,0.12083172,0.015457928,-0.20738347,-0.6666436,-0.3442748,0.14843573,-0.017247101,0.52558726,0.29624248,-0.7054791,0.47534263,0.278765,-0.1496097,-0.6398664,0.4654919,-0.13314618,-0.32530567,-0.017028809,0.3858079,0.12380188,-0.08686149,0.06368526,0.35852483,-0.30284992,0.13229808,0.19498412,-0.07675493,0.23113339,0.055244416,0.057543218,-0.7066886,0.06415876,-0.67760205,-0.17356043,0.29018787,0.038175624,0.14259818,0.08981922,-0.06552831,0.2637817,-0.15122445,0.14073873,-0.013745884,-0.24411379,0.37803403,0.51116383,0.41410124,-0.34980765,0.5521601,0.12648283,0.07983923,0.24009494,0.271426,0.4536165,0.21189289,0.5244224,-0.21442668,-0.25969574,0.22342749,0.73640853,0.12489017,0.31941125,0.09841961,0.023112396,0.2044038,0.16385192,0.06983048,0.061647397,-0.24437343,-0.1472416,-0.14409716,0.23833914,0.53588265,0.09318664,0.22909577,-0.018255508,-0.28091618,0.1970384,0.234459,-0.06433637,-1.2927359,0.4324324,0.25004125,0.7938207,0.39726067,0.28223935,-0.19874598,0.6985416,-0.13751061,0.20147704,0.58403534,0.18181874,-0.47846428,0.6542661,-0.57157815,0.6721535,-0.019505316,0.0095566185,0.08344624,0.26532805,0.37954366,0.8079508,-0.096393645,-0.019641653,0.090298206,-0.3642056,0.108745135,-0.44246197,0.09996179,-0.52543306,-0.35404572,0.5067424,0.5101382,0.15279573,-0.35986912,-0.032825578,0.09703028,-0.082036965,-0.05363092,-0.17290907,-0.17395155,-0.16250119,-0.6196986,-0.2292289,0.45343232,-0.109615296,0.066763766,0.029913014,-0.14675735,0.29157078,-0.1027239,-0.044114094,-0.07560408,-0.7971544,-0.0108579,-0.27806285,-0.49608627,0.5408121,-0.49303687,0.2130708,0.20919792,0.045740705,-0.43280736,0.32832572,0.04715256,0.7386672,-0.24206881,-0.092886806,-0.3600937,0.10965911,0.1030537,-0.25186843,-0.06720417,-0.43780628,-0.02332819,-0.46053088,0.34554327,-0.080060326,-0.26869223,-0.23003155,-0.1253009,0.121987544,0.44509855,-0.2637918,-0.06042259,-0.25654456,-0.28937554,-0.38988647,-0.2232007,-0.28292468,0.2995053,0.102497436,0.0039103427,0.043963138,-0.13615239,-0.110066205,0.25217745,-0.07716604,0.27719593,0.3113372,0.067072086,-0.18282229,0.013287127,0.0027635198,0.40819708,0.1356333,-0.15387301,-0.39121106,-0.22231494,-0.19533002,0.19788122,-0.20167732,0.3011534,-0.08884362,-0.42792454,0.78159374,0.05395648,1.1496128,-0.11585525,-0.4066175,0.10494328,0.45163098,0.09062535,-0.018571714,-0.12682916,0.77195215,0.54250944,-0.07861995,-0.172702,-0.24806571,-0.116302334,0.26317027,-0.27691928,-0.28685912,-0.02570183,-0.63393193,0.049384754,0.22433466,0.10024353,0.2845836,-0.011703898,-0.22915141,0.04749153,0.23874015,0.3819003,-0.43735328,0.12787145,0.12456298,0.3924687,0.24169742,0.20471036,-0.4401184,0.3357924,-0.72129536,0.27976763,-0.4065087,0.17218496,-0.2505716,-0.28982124,0.08549816,0.06248754,0.31572095,-0.26655486,-0.19545062,-0.24512087,0.5970685,0.23624535,0.16002576,0.6667995,-0.23776908,-0.12025261,0.17303784,0.54798967,1.0268168,-0.09111759,-0.30064687,0.12112262,-0.35584155,-0.8964049,0.14453878,-0.39415208,0.1672256,-0.0852265,-0.10201314,-0.35767698,0.19989367,0.12962316,0.13145769,-0.004309498,-0.53674877,-0.36074963,0.4507903,-0.27599305,-0.36709538,-0.33402833,0.29421198,0.6180901,-0.19904667,-0.36459944,0.013584316,0.1990615,-0.1631425,-0.51502883,0.045419823,-0.42614743,0.3285273,0.018172491,-0.51378286,-0.018486291,0.09598645,-0.49716714,0.19956188,0.15072234,-0.29153,0.02388054,-0.06746817,-0.27223098,1.0288206,-0.1412699,0.082084745,-0.6313977,-0.5387153,-0.8409675,-0.3479508,0.4218396,0.26512748,-0.08349099,-0.78109217,-0.051411923,-0.033262096,0.025123915,-0.017760143,-0.4577539,0.41859105,0.11688641,0.27033907,0.102570124,-1.0090368,0.09160442,0.13387631,-0.16737403,-0.6412427,0.51377594,-0.18913858,0.8189427,0.057033617,0.051208694,0.19276147,-0.4143429,0.207209,-0.32081234,-0.30873248,-0.40196028,0.17370753 +900,0.4445941,-0.020583943,-0.44573116,-0.25293738,-0.22213547,0.31820124,-0.041952,0.15376186,0.054009013,-0.37119472,-0.081513494,-0.10839027,-0.04796224,0.32001588,-0.18012181,-0.81311893,-0.10227914,-0.017658988,-0.56583166,0.2993807,-0.52770895,0.5866385,0.18295473,0.239763,0.082503505,0.47558922,0.34307706,-0.29505634,-0.21043421,0.06448434,-0.22288091,0.13125072,-0.5738756,0.15479627,-0.0018064259,-0.2964877,0.21457762,-0.2668905,-0.22462675,-0.6047083,0.4065375,-0.68692774,0.3628555,-0.08183009,-0.25453764,0.20041406,-0.07424699,0.21578829,-0.45542827,0.24166691,0.25825375,-0.34664625,0.0426338,-0.19442898,-0.27307934,-0.52276033,-0.47098365,0.03662534,-0.57874525,-0.2943843,-0.36712202,0.19973004,-0.30181757,0.027902015,-0.18326038,0.17757595,-0.4720093,-0.1428445,0.14951384,-0.18060683,-0.0020835027,-0.31269068,-0.14351812,-0.14278668,0.22963068,-0.067248456,-0.0011675917,0.27738255,0.38239723,0.5479146,0.12973313,-0.27892286,-0.2302564,-0.13572975,0.117421255,0.45229882,-0.13953668,-0.386928,-0.11556859,0.019491524,0.08341023,0.11793019,-0.04539959,-0.29957736,-0.0024147741,0.09182823,-0.16024402,0.09919131,0.54429805,-0.3744816,-0.2176373,0.38532427,0.42451924,-0.0753374,-0.036944486,0.056687385,-0.059106965,-0.4096655,-0.26279145,0.2423065,-0.12938944,0.4813882,-0.05219543,0.10893889,0.86137235,-0.16532041,0.13593897,-0.34913194,-0.09251901,-0.14485586,-0.076050185,-0.091518015,0.040829614,-0.364734,-0.026121587,-0.3466136,1.0139867,0.16289772,-0.7926556,0.31692344,-0.40154728,0.18585996,-0.14271882,0.6632134,0.5680396,0.2800274,0.13464746,0.83722484,-0.64834785,0.16671066,-0.047307476,-0.40770817,0.081722915,-0.10864487,-0.041931063,-0.36049864,0.18454522,0.08279894,0.017006129,-0.033396497,0.19158918,-0.37853447,0.12793991,-0.08612217,0.6061555,-0.56380916,0.081911206,0.59767693,0.9107627,0.7717167,0.1475232,1.3876377,0.5039196,-0.24585094,0.02521548,-0.46561393,-0.48114833,0.1415791,0.48618338,0.37189418,0.120010436,0.1469991,0.14017454,0.34263396,-0.29142672,0.09764831,-0.17187813,0.26755133,-0.059553165,0.057948016,-0.39650577,-0.23858811,0.091413796,0.103908435,0.030380573,0.21242207,-0.10560578,0.41177836,0.08683108,1.5919887,0.09660062,0.17532477,-0.067376226,0.33064717,0.14617549,-0.054370396,-0.051443055,0.37942597,0.36420393,-0.2371966,-0.6004245,-0.14921167,-0.32910612,-0.49857008,-0.19761416,-0.3457812,0.0153028965,0.031617295,-0.35219753,-0.10877965,0.13712876,-0.28443807,0.47001934,-2.3686638,0.03507065,-0.12921573,0.29210594,-0.25354552,-0.3802527,-0.1838989,-0.41675746,0.33586788,0.4667215,0.31089723,-0.55482143,0.20353056,0.120269775,-0.13487941,-0.18277784,-0.70487344,0.04787222,-0.15107292,0.3493589,-0.1894786,-0.06408207,-0.24792127,0.09596688,0.5732832,-0.01461691,-0.09593412,0.20388934,0.39259398,0.22284321,0.4663941,0.36603197,0.53461945,-0.0880679,-0.11694313,0.3617751,-0.41478044,0.42258978,0.073550925,0.16968377,0.25445136,-0.58713156,-0.7807879,-0.6972853,-0.37111554,1.3317268,-0.3614765,-0.2648844,0.30744496,0.12806946,-0.1965021,-0.012976021,0.30241007,-0.19063948,-0.07006025,-0.6461295,0.03140288,0.040384695,0.12543844,-0.0066300295,0.2253344,-0.1670368,0.6667427,-0.31097794,0.3116175,0.36685574,0.22553368,0.13095705,-0.53143245,0.0362067,1.0031664,0.30006042,0.10243912,-0.06798701,-0.3172187,-0.09952085,-0.283813,0.33911476,0.24001202,0.9302318,0.15812713,0.02065771,0.26684445,-0.23501371,0.021576738,-0.0173739,-0.37855232,0.05458522,-0.019198023,0.48506898,0.35731253,-0.1821022,0.32850692,-0.20614548,0.30845028,-0.090160176,-0.4263121,0.5346419,0.83571684,-0.10756309,-0.1395455,0.49926713,0.4721899,-0.39950815,0.33139855,-0.5680701,-0.18272349,0.7128922,-0.20489791,-0.36090985,-0.07821247,-0.341191,-0.023200244,-1.0263826,0.35544014,0.14301568,-0.44483668,-0.53861445,-0.20364933,-3.7191358,0.0014697537,-0.26411352,-0.14637543,0.12255095,-0.15074499,0.22871724,-0.59617615,-0.38732716,0.072225675,-0.083396986,0.3950216,0.07968916,0.23554237,-0.2552309,-0.0064010248,-0.26480222,0.14979911,0.116800666,0.23791327,-2.1964312e-05,-0.30239636,0.21514937,-0.41070998,-0.38121474,0.10938333,-0.31100523,-0.51838994,-0.29357362,-0.39429507,-0.21028718,0.7130394,-0.4942984,-0.15686347,-0.1739288,-0.06755301,-0.38034564,0.40019488,0.35544184,0.20944126,0.092704095,0.030990096,-0.22947896,-0.52043855,0.3727629,0.1626848,0.25310895,0.42376962,-0.066207305,0.060320772,0.4897777,0.50557554,-0.0006311387,0.5428238,0.2314409,-0.10001251,0.26754087,-0.54785156,-0.2575631,-0.8194872,-0.51454395,-0.4071911,-0.33234644,-0.456668,-0.20360959,-0.47984803,-0.8117603,0.251552,-0.02830907,0.07434274,-0.14218365,0.22608292,0.31228203,-0.047515273,0.028499164,-0.19765297,-0.06384802,-0.52258086,-0.39770183,-0.6032603,-0.6046251,0.30114833,1.0712764,-0.092218645,-0.22671357,-0.14267704,-0.2199179,0.19986387,-0.13751546,0.17386203,0.28065443,0.37001908,-0.14875926,-0.7256259,0.59970725,-0.04962285,-0.12941796,-0.6151974,-0.14125054,0.58051956,-0.8048673,0.39124334,0.35457513,0.2521511,0.38628542,-0.44234288,-0.48591557,0.0034595653,-0.18966283,0.4551317,-0.0010668337,-0.43217593,0.43749565,0.24274546,-0.06785227,-0.6750505,0.35665333,0.007271873,-0.23335108,0.2843501,0.28861785,0.02475715,-0.23363732,-0.18805137,0.19916365,-0.5408929,0.3793307,0.5105945,0.10224047,0.37515008,-0.1714643,-0.35918707,-0.5375492,0.04381077,-0.50233984,-0.200174,0.0008786041,0.16664046,0.14743851,0.036477357,-0.055951297,0.5452368,-0.38401175,0.15842591,-0.008890744,-0.12095632,0.3267769,0.43860793,0.25601506,-0.53749144,0.6214859,0.03868745,-0.0005640909,-0.2607139,0.06237259,0.5562244,0.34347147,0.047174558,0.01668182,-0.21192893,0.2708531,0.59715796,0.2679076,0.4235764,0.14206691,-0.3264767,0.48560876,0.27065653,-0.037164737,0.1375747,-0.072944894,-0.048319325,0.18826684,0.17707388,0.32421514,0.04110109,0.4751413,-0.11677545,-0.123047665,0.36081803,0.08591452,-0.14726898,-0.6797803,0.18808123,0.11454459,0.49443692,0.4728499,-0.12019625,0.06508822,0.38187325,-0.467452,0.13562469,0.29677033,0.0019039661,-0.60360694,0.54567724,-0.58334416,0.37963942,-0.29046294,-0.011533417,0.0330598,0.16445735,0.27938217,0.9143697,-0.06841311,0.1018249,-0.061614014,-0.19650649,0.050939303,-0.28712443,0.097292244,-0.48916075,-0.24796976,0.50185764,0.2255897,0.26762843,-0.22213529,-0.12723157,0.0651779,-0.04271829,0.21238245,-0.08625467,0.07774007,0.003941793,-0.5163619,-0.6558697,0.5431001,0.0263599,0.048858505,0.10360734,-0.3773979,0.39440164,-0.21703087,0.009745399,-0.004961093,-0.44199145,0.09278579,-0.21749021,-0.48620373,0.20647056,-0.30871105,0.4989591,0.17198049,0.09158291,-0.39451167,0.031525284,0.31875175,0.7984162,-0.05999627,-0.2622144,-0.46501333,0.1349294,0.4777128,-0.32164198,0.090133354,-0.19355075,-0.013115462,-0.647395,0.3982209,-0.23565441,-0.17891705,-0.026617624,-0.24788463,-0.14023633,0.36335194,-0.24475838,-0.05662354,0.2888971,0.14274082,-0.2295343,0.019116025,-0.38015312,0.21745479,0.0073112547,-0.012801394,-0.055832554,-0.14296474,-0.06172707,0.36412776,0.05169297,0.15828611,0.052364796,-0.19888791,-0.43547577,-0.12844008,-0.07462977,0.11800335,0.13931097,-0.08011765,-0.31338853,-0.3748446,-0.17214456,0.12279943,-0.30433196,0.14954527,0.16538975,-0.5601809,0.71870697,0.069721974,1.1365069,0.20754978,-0.2582686,0.06513263,0.58147824,0.18577239,0.16283609,-0.28678265,0.9350039,0.6569213,-0.12516917,-0.2860502,-0.33494946,-0.28717694,0.32910773,-0.19678888,-0.14149499,-0.12554014,-0.6533543,-0.40791833,0.15592125,0.23261108,0.08550559,0.13333154,-0.118709125,0.053737663,0.19200203,0.66399145,-0.32408777,-0.12470397,0.25751132,-0.029277433,0.21368569,0.2524914,-0.32769907,0.45540297,-0.68788517,0.09632219,-0.29033518,0.07202945,0.013777584,-0.24571571,0.12559944,0.012391772,0.38296038,-0.2670167,-0.41416055,-0.17930387,0.67940545,0.19598208,0.34242317,0.6777733,-0.27738214,-0.036870692,0.0043291952,0.3586033,1.353288,-0.024670012,0.18697704,0.37338996,-0.25534078,-0.47335324,0.27696478,-0.19509114,0.026508585,-0.20600563,-0.4562291,-0.31268045,0.32243258,0.20772317,-0.20659433,0.103004366,-0.37168586,-0.2513039,0.48729193,-0.25835937,-0.40046456,-0.28538626,0.40549368,0.6530541,-0.532282,-0.3630474,0.12839067,0.22914802,-0.3232106,-0.5147107,-0.124657646,-0.19070509,0.41367358,0.11971394,-0.21612954,0.0577953,0.31682244,-0.2273244,0.23496512,0.309931,-0.4241072,-0.12459254,-0.12902093,0.028146207,0.99395204,0.17935738,-0.049558714,-0.76055115,-0.29996282,-1.0452198,-0.46394357,0.57806516,0.17316656,0.013537422,-0.47338802,-0.009003293,0.12752448,0.17324449,0.114893265,-0.6369548,0.3778038,0.20816916,0.38837987,-0.08399151,-0.75715625,-0.12558176,0.032431334,-0.18127136,-0.50532424,0.4859259,-0.185591,0.58910584,0.059529766,-0.00017412007,0.19835764,-0.5374476,0.2890065,-0.45187682,-0.20942056,-0.6328902,0.1665717 +901,0.30434337,-0.009458423,-0.6561739,0.012103694,-0.18348122,0.06834761,-0.29363158,0.16090079,-0.183724,-0.40006182,0.026301274,-0.028550684,-0.04165742,0.27101344,-0.22125928,-0.6160087,0.12050021,0.16259754,-0.4353697,0.3637953,-0.5562221,0.5169727,0.08957159,0.11423732,0.04686839,0.10290743,0.2287317,-0.049191687,-0.2254935,-0.5266205,-0.03530138,0.11799378,-0.44876575,0.2786744,-0.118953705,-0.5671164,0.1277809,-0.20709352,-0.3172111,-0.52202195,0.17218621,-0.64222854,0.61444205,-0.05670572,-0.2948714,0.23398885,0.2905617,0.288345,-0.08634262,0.11014582,0.02247736,-0.36025953,-0.37493962,-0.3121775,-0.36092302,-0.39231417,-0.70989096,-0.009875426,-0.8251093,-0.09137132,-0.28292236,0.2884427,-0.42240283,0.12222852,-0.19334683,0.41630387,-0.36079484,-0.07721359,0.10944005,-0.07751789,0.17514066,-0.41137815,-0.075657845,0.026183257,0.11987823,-0.22574104,-0.09245561,0.19499336,0.18229572,0.48262718,-0.047204368,-0.31729826,-0.22099657,-0.31921768,0.13644205,0.68239975,-0.18107985,-0.26506475,-0.19141474,-0.018989589,0.25982705,0.36547357,0.061280128,-0.09406607,-0.15312913,0.08332533,-0.34487298,0.34918264,0.4896354,-0.42452022,-0.22498357,0.49895993,0.46073914,-0.04701389,-0.18288119,0.23001882,0.005647438,-0.51713383,-0.1824709,0.21769522,-0.08621262,0.43193126,-0.11956322,0.3505178,0.49200064,-0.3169925,0.00022636993,0.27557454,0.020331947,0.073423095,-0.18034495,-0.18517168,0.29650378,-0.6313551,-0.0688328,-0.32729015,0.9259254,-0.1580193,-0.6133853,0.37944552,-0.59168005,0.16475967,-0.14545788,0.7660025,0.44098708,0.47221875,0.18997426,0.63419676,-0.44466308,-0.09427791,-0.056957014,-0.30475253,0.038137138,-0.09427207,-0.08320493,-0.41720873,-0.093494296,0.21631955,0.15081401,0.045651525,0.646885,-0.4567053,-0.17092599,0.013720402,0.6887346,-0.35123926,-0.13350847,0.79952323,1.2215022,1.1171701,0.050785176,1.0965152,0.19412418,-0.07663642,-0.3595124,0.0037512097,-0.51485336,0.18568388,0.37406197,-0.048904903,0.23251669,-0.017680893,-0.14662494,0.40461522,-0.31755295,-0.21384974,-0.022604434,0.30797,-0.1944022,-0.16345449,-0.41078717,-0.22609796,0.048318725,-0.03744607,0.15823151,0.31356832,-0.2942109,0.47679368,0.1453424,1.0663451,-0.084185876,0.23650463,0.15143745,0.26971337,0.19577622,-0.0761954,-0.06110808,0.1346391,0.3237216,0.13092557,-0.5944312,-0.020019459,-0.20834698,-0.47894764,-0.22002697,-0.1910256,-0.10472681,-0.32176188,-0.4048519,-0.045451794,-0.049560454,-0.41752347,0.35966662,-2.7017856,-0.11552048,-0.15709198,0.27257967,-0.11406521,-0.38595608,0.04929506,-0.387444,0.60965043,0.2618731,0.47172028,-0.52203196,0.52867967,0.38146684,-0.25734454,-0.051537436,-0.6982361,-0.16972148,-0.15396859,0.3628066,0.009448878,-0.20107542,-0.06411668,0.09771901,0.5161436,-0.24648093,0.11820569,0.25224653,0.21786237,-0.17387508,0.33732802,0.22238572,0.507252,-0.30853006,-0.15454046,0.33895403,-0.36053377,0.1746575,-0.030286659,0.21324413,0.32057995,-0.4972097,-0.81580776,-0.5018007,-0.25743753,1.1982133,-0.23803948,-0.4164396,0.18055226,-0.1457318,-0.37539697,-0.059124026,0.2790354,-0.21948242,0.080651276,-0.6917431,0.11493899,-0.2513102,0.28801855,-0.14643833,0.04130837,-0.45649877,0.37085006,-0.21411227,0.52492964,0.41901565,0.3087874,-0.38458303,-0.42399073,0.017727364,1.2247149,0.48352218,0.06636109,-0.26593798,-0.09227978,-0.21677658,-0.089440785,0.25262806,0.42816567,0.9537549,-0.007555557,0.25384405,0.2944176,-0.14659746,-0.032891933,-0.06506974,-0.38453588,-0.05577619,-0.04159264,0.74275464,0.35633025,0.13023318,0.7005711,0.044986725,0.303129,-0.3785047,-0.45173195,0.36136872,0.6591631,-0.2646756,-0.50077564,0.7416239,0.54424804,-0.11523663,0.46204165,-0.6595031,-0.4926358,0.33090404,-0.17106523,-0.28772092,0.2676664,-0.4468228,0.1509596,-0.958971,0.3494497,-0.36613157,-0.83689225,-0.49674925,-0.21945561,-3.5472908,0.16532029,-0.2936898,-0.0737216,-0.017375618,-0.108818114,0.33923694,-0.41635087,-0.48552987,-0.02206544,0.17907265,0.75155896,-0.009238473,0.05813033,-0.18703648,-0.2671022,-0.21881844,0.29686132,0.23498929,0.025414307,-0.19459009,-0.42684358,0.058755483,-0.36414847,-0.4223626,0.031226078,-0.52687174,-0.4277072,-0.11815642,-0.42352384,-0.43305498,0.717794,-0.40271068,0.09677559,-0.35179785,-0.06392713,0.07588712,0.3294256,0.17272642,0.20779242,-0.028683273,-0.117248,0.15579839,-0.37876898,0.14186232,0.011407788,0.31731793,0.36485547,-0.19367285,0.1088186,0.4530169,0.46431333,0.09918112,0.8677698,0.30601472,-0.1107691,0.27268323,-0.21932779,-0.16948883,-0.63935727,-0.32195792,-0.062386844,-0.48758644,-0.39949465,-0.16327386,-0.22631283,-0.7924163,0.6422185,-0.0077664256,0.16232207,-0.20543323,0.656375,0.3086783,0.051449332,-0.19285192,-0.0022225103,-0.20053622,-0.19162989,-0.20427176,-0.88214797,-0.4557334,-0.09635444,1.212279,-0.15085149,0.042698495,0.08273102,0.026418865,-0.018558834,0.23344043,0.18959199,0.22739315,0.39175707,-0.06836914,-0.59533113,0.45352724,-0.43804544,-0.20447949,-0.57082015,-0.015558756,0.803336,-0.65938044,0.23505116,0.6281241,0.20950942,-0.07352698,-0.55765903,0.1542162,0.061703924,-0.26693672,0.51626873,0.29136583,-0.91113293,0.6896113,0.20125309,-0.14585736,-0.56740695,0.589547,0.05946412,-0.25604722,0.04722819,0.43298766,0.015757935,0.028845906,-0.1282758,0.19104151,-0.42071941,0.27648604,0.22236952,-0.02658186,0.42891958,-0.35052446,-0.19797993,-0.51823086,-0.08359504,-0.56291336,-0.2342415,0.033711016,-0.09878214,0.07632666,0.3891748,-0.25883552,0.4918876,-0.34723637,0.13320753,-0.16934405,-0.37319332,0.5922213,0.59391946,0.19306199,-0.27504024,0.7376091,0.082079925,-0.059537154,-0.4034443,0.10625375,0.5837164,-0.14022301,0.4772327,-0.0031439534,-0.090334974,0.4399652,0.6691317,0.27463788,0.4180588,0.18474486,-0.04075406,0.025900874,0.04993971,0.10353215,0.13600247,-0.21154268,-0.17243113,-0.045089044,0.16562581,0.5679745,0.077348016,0.5443297,-0.17289785,-0.07469742,0.119123034,0.07535007,-0.15794322,-1.0225006,0.5550822,0.1607937,0.5291304,0.42072344,0.12431472,0.091178976,0.32430997,-0.34012467,0.06445082,0.20436606,0.26920062,-0.29160944,0.7428111,-0.7834032,0.62602985,-0.15876476,0.060874958,-0.061555814,-0.31589535,0.57889044,1.0153884,-0.03766244,0.22820666,-0.029650133,-0.2618768,0.120626375,-0.19768672,0.12796697,-0.36828265,-0.090389885,0.8627687,0.283959,0.44517747,-0.069781,-0.056206953,0.33229074,-0.12990752,0.10325552,-0.0815859,0.23998697,-0.33505538,-0.43674034,-0.40423623,0.5166549,0.11735994,0.048896134,0.20812489,-0.09888454,0.28519437,0.012529945,0.079090714,-0.066432804,-0.3414953,0.20526853,-0.3307655,-0.49892792,0.16402899,-0.6418076,0.24651964,0.20886387,0.112866625,-0.37998995,0.12210937,0.34166327,0.5710348,-0.08539772,-0.256209,0.023083882,0.093321875,0.21222804,-0.2599804,-0.1912287,-0.25693712,0.28916788,-0.8873935,0.3735314,-0.37293047,-0.4135233,0.12078752,-0.09419562,-0.05656067,0.3029153,-0.042793963,-0.17250998,0.27433887,-0.10160502,-0.14633033,-0.36872667,-0.13094105,0.17918698,0.07423817,-0.074652515,0.0019197613,-0.014504318,-0.090518065,0.24440329,0.027103782,0.20603988,0.33736032,0.21357475,-0.49664512,-0.115562476,0.03925011,0.55369246,-0.16917661,0.080272004,-0.3998099,-0.39092237,-0.14961436,0.28079405,-0.16293696,0.3676522,-0.010009144,-0.30490535,1.0101913,-0.08272944,1.1118585,0.1002865,-0.44941607,-0.023434231,0.63236034,-0.0025518963,-0.12156408,-0.1402528,1.1354771,0.50302535,-0.13815083,-0.20496882,-0.47929478,-0.045102052,0.17840101,-0.21990278,-0.5321515,-0.11269627,-0.46963024,-0.09968337,0.20789555,0.2730934,0.042781178,-0.08970194,0.035388507,0.4691989,0.026720962,0.20709644,-0.58089125,0.09070015,0.33544657,0.18508264,-0.24356246,0.0509338,-0.4580718,0.22107159,-0.7226986,0.08564918,-0.16340633,0.0863262,0.05909692,-0.28144982,0.33214813,0.13048737,0.2108858,-0.1704794,-0.17711045,-0.090845644,0.34043702,0.11396334,0.084333725,0.8445224,-0.274369,0.15344891,-0.039638035,0.3751492,1.2834046,-0.12447625,-0.2163793,0.1694196,-0.3414637,-0.8576661,0.2080609,-0.45170334,0.09068276,-0.040291555,-0.59630996,-0.40329698,0.22390537,0.26849762,0.037489634,0.19008161,-0.42334023,-0.19602333,0.069489725,-0.31829324,-0.28117657,-0.36196628,0.08730099,0.6133456,-0.15411393,-0.21329428,-0.019985994,0.533815,-0.17566426,-0.5334525,0.15141816,-0.2901228,0.29245,0.0076820618,-0.18618011,0.0996437,0.047674365,-0.38380584,0.12534033,0.5201963,-0.21458681,0.061638184,-0.18899487,-0.020229409,0.5964491,-0.31699768,-0.016812911,-0.60015285,-0.65659696,-0.62438303,-0.36608785,0.36151853,0.12022022,0.12300454,-0.4935748,-0.036495592,-0.06483635,-0.037107725,-0.0953406,-0.29777876,0.31601068,0.14152597,0.22544707,-0.09335906,-0.793861,0.08802002,0.013168929,-0.24387717,-0.40594664,0.60114765,-0.17806573,0.6231526,0.19676249,0.10520792,0.35379335,-0.64471626,0.2634212,-0.16532663,-0.2054522,-0.8024992,-0.064486034 +902,0.43566558,-0.2431108,-0.39669093,-0.22390749,-0.45980427,0.092998825,-0.35254145,0.118964836,0.21514018,-0.43564096,-0.34222063,-0.036465533,0.11345542,0.1838386,-0.05603278,-0.44699574,-0.14081314,0.19557603,-0.819011,0.6653328,-0.5586863,0.25393316,0.24340357,0.4327942,0.21919307,0.20508452,0.2703716,-0.046835575,-0.24091859,-0.095792055,-0.13637975,0.3590722,-0.6295545,0.13082467,-0.43167534,-0.4550708,-0.043471113,-0.47841582,-0.2605839,-0.7492135,0.1676921,-1.1596655,0.6422404,-0.050910536,-0.15292536,-0.02084407,0.4250751,0.37996146,-0.4111732,0.18395089,0.2649197,-0.37704363,-0.3347527,-0.3902034,-0.07465574,-0.45007583,-0.45315665,-0.16644545,-0.4724558,-0.17580418,-0.21398582,0.30373,-0.25331786,-0.0006669124,-0.17580375,0.21670693,-0.42726845,0.13664478,0.3237765,-0.14752005,0.13202222,-0.6198768,-0.10929668,-0.20173556,0.44466692,-0.25145537,-0.31038114,0.41247287,0.4316377,0.5877083,0.27183646,-0.37963027,-0.19842218,-0.13544334,0.097359896,0.3480693,-0.12323896,-0.24889706,-0.2708766,-0.05750541,0.7119198,0.509861,0.09361245,-0.19089988,-0.017306866,-0.10698928,-0.08434423,0.5151968,0.52975184,-0.27593726,-0.27704614,0.29263318,0.5887203,0.2810784,-0.25530714,0.084735356,0.031195465,-0.54981196,-0.13811143,0.32443807,-0.12818713,0.5659465,-0.14808486,0.10712366,0.92138034,-0.21928936,0.14434077,-0.04867076,0.059310492,-0.24437799,-0.2759096,-0.29842803,0.31356248,-0.63420856,0.10096862,-0.33163413,0.58496666,0.08392895,-0.4944671,0.28928986,-0.599304,0.22957537,-0.025543002,0.66020423,0.8466493,0.5000788,0.39265746,0.85886323,-0.18992944,0.10970647,-0.11643016,-0.23965602,0.057607923,-0.38394526,0.20957702,-0.53768337,0.23427357,-0.24778228,0.20604032,0.0026280223,0.53693104,-0.5347973,-0.2488018,0.27840036,0.6177046,-0.30611742,-0.033186376,0.75667167,0.924161,1.14076,0.15963207,1.4743347,0.40308937,-0.23410884,-0.1313304,-0.061979108,-0.7567922,0.14599438,0.33751306,-0.2940789,0.28922,0.023120228,0.005034588,0.26217172,-0.56783897,-0.1027944,-0.10783191,0.4205888,0.10655069,0.023827774,-0.45357513,-0.11763995,0.05774734,-0.10354454,0.27881375,0.15833633,-0.24217448,0.4531754,0.09860848,1.1861306,-0.21875216,-0.03149869,0.15132459,0.47987857,0.27511224,-0.11130068,0.11616118,0.34929508,0.36387062,-0.1677825,-0.58326244,0.15532354,-0.33405325,-0.4483419,-0.24152726,-0.3733063,-0.108818136,0.055276886,-0.25113994,-0.27142817,-0.04800636,-0.289452,0.39648777,-2.4514127,-0.36674196,-0.23703827,0.3082659,-0.31498134,-0.13656737,-0.22499725,-0.49445602,0.3871902,0.124228954,0.48201656,-0.7220487,0.41905484,0.5613347,-0.7204774,-0.23138943,-0.83048606,-0.19060951,-0.03623716,0.45104715,-0.0015577237,-0.3073183,-0.011565459,0.10986592,0.5927744,0.030016867,0.16956252,0.6248848,0.5645614,0.1736474,0.5806369,0.07099282,0.55881554,-0.45057216,-0.2886339,0.5276869,-0.30962875,0.42006597,-0.04990573,0.0009841959,0.8911823,-0.5059131,-0.8610723,-0.6370356,-0.34090438,1.0106465,-0.42336842,-0.59751534,-0.07100798,-0.25106937,-0.00010727246,0.10130043,0.6305617,-0.064987056,0.08463143,-0.81341225,-0.11590746,0.035212055,0.30189267,0.0062321844,0.104236,-0.3205916,0.74215597,-0.118029244,0.5463038,0.2347285,0.2499889,-0.3375871,-0.32868093,0.0909468,0.9413422,0.5391313,0.0038730581,-0.21824466,-0.4007825,-0.06659089,-0.37564963,0.14788987,0.5198729,0.6327056,-0.19379419,0.2795941,0.41677237,-0.081542745,-0.06330714,-0.26955014,-0.19862694,-0.22645426,0.1400946,0.5809882,0.7895761,-0.095396556,0.4328806,-0.19777231,0.22809115,-0.04274989,-0.6920397,0.6379351,0.7699097,-0.23344222,-0.017560558,0.6159913,0.42751697,-0.3949151,0.57684153,-0.90611637,-0.4273087,0.6296104,-0.0526117,-0.39808705,0.20903036,-0.36978674,0.33076075,-0.7736556,0.30640805,-0.3356851,-0.18756254,-0.7436393,-0.19597177,-2.1044037,0.19675829,-0.1538683,0.018494058,-0.2935084,-0.30935088,0.27354452,-0.5446607,-0.71310276,0.23723075,0.24395518,0.6017975,-0.11490227,0.20267348,-0.3054416,-0.26945078,-0.16875926,0.085951716,0.1803902,0.37581077,-0.34275827,-0.49404076,0.14119108,0.039371595,-0.42536557,0.024480926,-0.6642631,-0.5235519,-0.10860471,-0.457544,-0.12406889,0.5380712,-0.42026997,-0.08975906,-0.29541877,0.09600224,-0.17327504,0.22176416,0.23968604,0.25956756,0.16103347,-0.010827907,0.016837064,-0.3151695,0.43653807,0.07394389,0.07828307,0.19298248,-0.18241237,0.15919027,0.32900327,0.6502809,-0.22224118,1.0195796,0.36918923,-0.07854999,0.20427844,-0.19722632,-0.37770388,-0.6372031,-0.28919408,-0.11803947,-0.48655555,-0.4169362,0.11768116,-0.23853773,-0.9241276,0.80356234,0.03254377,0.35401735,-0.121213,0.36629993,0.40319303,-0.25901538,-0.04435229,-0.128684,-0.17004925,-0.6380542,-0.45667562,-0.6983277,-0.539675,-0.06941121,0.9359146,-0.28638372,-0.07715271,0.19557902,-0.25450075,0.051640145,0.19822183,-0.03721826,0.21104045,0.83168894,0.11921004,-0.68664944,0.32471904,0.10886813,-0.06002748,-0.45322078,0.28353357,0.7344115,-0.7166327,0.5198799,0.4703152,-0.0003204445,-0.19373296,-0.71521163,-0.29558876,-0.08801436,-0.30364063,0.42162478,0.17470023,-0.7682941,0.624856,0.24312331,-0.48740903,-0.79632694,0.43252233,0.015820106,-0.17125796,0.037252314,0.38088715,0.14109057,-0.10774895,-0.2190343,0.2146412,-0.4003062,0.44228745,0.13265485,-0.22447321,0.3735512,-0.2818072,-0.46072057,-0.7257097,0.14895684,-0.5476604,-0.41191956,0.3956498,-0.2103268,-0.14483525,0.25935715,0.23954654,0.3795393,-0.29285592,0.082652345,-0.13896374,-0.3378886,0.18706447,0.5015228,0.37325853,-0.41216984,0.65842783,0.2005733,-0.227952,0.049915593,0.017573027,0.26138923,0.063110195,0.33517262,-0.07842552,-0.10357942,0.34791216,0.7693451,0.1392772,0.34688404,0.08159067,-0.04620591,0.44818163,0.1417858,0.23877643,-0.2210308,-0.4957391,0.00086874166,-0.04305507,0.118978456,0.41551888,0.35404977,0.45482534,0.076332375,-0.015429346,0.01021534,-0.00275867,-0.11135582,-1.4716724,0.17823535,0.23194082,1.0134984,0.353704,-0.09788094,-0.017795514,0.7417725,-0.38000074,-0.07750996,0.47338971,-0.0179691,-0.39295822,0.7375731,-0.48209122,0.3318263,-0.22992416,0.016833926,-0.014744214,0.26171538,0.32636452,0.8459311,-0.326109,0.076360434,-0.13958177,-0.16987874,0.13303424,-0.3088073,0.026466783,-0.32905072,-0.46252352,0.84992474,0.2896606,0.5195598,-0.3278771,0.005958991,0.008739058,-0.4174601,0.35564035,0.077428095,0.057292573,0.019550657,-0.46154568,0.006172792,0.6104594,-0.0018140514,0.11000768,-0.10068093,-0.34290615,0.04875196,-0.14098077,0.09130122,-0.08843788,-0.8803481,-0.22206113,-0.32733917,-0.49780864,0.37359306,-0.21625061,0.050095674,0.3021495,-0.15502222,-0.012252049,0.21621838,0.13074799,0.8917405,0.009048632,-0.27992752,-0.213296,0.098782524,0.3498949,-0.2372755,0.27592108,-0.23659866,0.15095451,-0.6453093,0.725491,-0.211879,-0.36129892,0.25777498,-0.29394048,-0.13368812,0.47504744,-0.108819254,-0.105262056,0.20738854,-0.27755424,-0.48251858,-0.086605765,-0.32100648,0.19419065,0.23345663,-0.009864855,-0.2088107,-0.24798161,-0.180607,0.54181665,0.08533212,0.3416269,0.30901316,0.012108758,-0.35860077,0.20737258,0.2081919,0.5728742,0.002740526,-0.114573866,-0.37093106,-0.32954985,-0.39727554,0.49814066,-0.13902913,0.11756849,-0.040292837,-0.41885886,1.1223243,-0.12613389,1.0878847,0.14446236,-0.45454183,-0.008940725,0.61400473,-0.22751638,0.009695862,-0.31187984,0.81961197,0.5500986,0.111695684,0.054496113,-0.48296234,-0.016907986,0.3759867,-0.3232231,-0.07851331,0.011163687,-0.49699333,-0.483365,0.20091729,0.24092038,-0.00039726097,-0.23048376,0.13354205,0.2729936,0.19347195,0.5088606,-0.7327109,-0.38345852,0.19699098,0.22109279,-0.2331859,0.123076715,-0.34335652,0.39012605,-0.7076261,0.03455559,-0.47297812,0.13753779,-0.1293108,-0.3585243,0.13385324,-0.04107511,0.50326276,-0.3809101,-0.36297086,-0.04809644,0.40647826,-0.016782364,0.29461068,0.5832868,-0.29181883,0.106226996,0.15403867,0.5275935,1.390788,-0.45605093,0.07331131,0.20684896,-0.42579275,-0.5601738,0.5979361,-0.4623101,0.023693789,0.009077754,-0.5977846,-0.44911024,0.16214797,0.16081998,0.24405782,-0.011156738,-0.64980835,-0.1055286,0.338304,-0.16591737,-0.13825972,-0.19429536,0.17685065,0.667904,-0.124492936,-0.3023395,0.21232468,0.3495374,-0.29828224,-0.4725744,-0.02559828,-0.34773844,0.3109675,0.09603559,-0.21091647,-0.032225464,0.14332604,-0.5725234,-0.0040290356,0.22017032,-0.3834424,-0.062470004,-0.33702984,0.18227917,0.8966802,-0.18430549,-0.062089674,-0.68562496,-0.4723083,-0.7978726,-0.27090833,0.045325447,0.2001745,0.034689996,-0.43440205,0.07904007,-0.16265737,-0.22283827,0.07180546,-0.6110048,0.44026098,0.25809368,0.46654847,-0.33961102,-0.8222202,0.089468814,-0.04561961,-0.04962224,-0.44131476,0.6061138,-0.00044635136,0.8460493,0.12779206,-0.13857044,-0.029879777,-0.5027419,0.19212158,-0.35642478,-0.056956165,-0.9003493,0.05068251 +903,0.52933306,-0.1416482,-0.53106964,-0.091046385,-0.13519487,0.013822055,-0.049563143,0.66676384,0.24945973,-0.5318075,-0.09349027,-0.29402196,0.1867711,0.53133196,-0.0816975,-0.656356,-0.042125337,0.20783871,-0.43007058,0.6371963,-0.3845668,0.3316952,0.035108328,0.41088942,0.25886866,0.34677616,0.03479685,-0.12992407,-0.32713282,0.101987325,-0.124865174,0.24769786,-0.65699476,0.03256735,-0.011283178,-0.36081696,-0.07081788,-0.37251604,-0.47168154,-0.62394226,0.34361818,-0.7885994,0.57103306,-0.038456276,-0.14237235,0.25359666,0.035791747,0.3333182,-0.3118815,-0.011921534,0.037005875,-0.005196617,-0.0049652066,-0.29231045,-0.407637,-0.6571658,-0.6009939,-0.027305167,-0.37067434,-0.22469807,-0.37117746,0.06534473,-0.3441496,-0.12281246,-0.05167071,0.39471644,-0.38565907,0.2591293,0.18951271,-0.028085778,0.31796265,-0.43721518,-0.28404433,-0.19219758,0.20394462,-0.27031514,-0.14024353,0.33005828,0.415848,0.36237377,-0.12221313,-0.0437114,-0.32523096,0.072298564,0.10501984,0.47071588,-0.31528118,-0.67067516,0.008676311,0.037227135,0.13145383,0.26701605,0.3467707,-0.2745766,-0.09135124,0.06578268,-0.32653058,0.46457973,0.4197709,-0.34447187,-0.4766709,0.39679688,0.3724388,0.11563527,-0.23487093,-0.041130725,-0.038808957,-0.48333457,-0.11024182,0.21199414,-0.21555567,0.57030004,-0.048235793,0.11673581,0.6829072,-0.26463622,-0.0070820334,0.020132972,0.04874653,-0.01927639,-0.27424273,-0.19427289,0.14081591,-0.3695877,0.09537632,-0.18075055,0.7837261,0.30150884,-0.81765735,0.42685163,-0.56786793,0.14351556,-0.10170877,0.39992332,0.6940629,0.40626925,0.16040061,0.6151914,-0.4982077,0.09550074,-0.043146227,-0.45311612,0.16077791,-0.16739868,-0.12897588,-0.56226736,-0.051672652,0.03529165,-0.25579002,0.1897309,0.44824404,-0.6152469,-0.20537789,0.12482806,1.0085437,-0.34651348,-0.23398592,0.74040693,0.9141957,0.73239505,0.033663385,1.3027552,0.30536312,-0.26350817,0.45545945,-0.5104979,-0.7556063,0.26351258,0.260686,-0.7091262,0.4144282,0.12755929,-0.1055632,0.121606275,-0.102812916,-0.0007316883,-0.0849356,0.1285648,0.00779615,-0.24948655,-0.35591257,-0.34556538,-0.25582406,-0.15278961,0.1790861,0.24140635,-0.28292996,0.29324052,0.028320324,1.8267039,-0.009983237,0.10107463,-0.080897935,0.6080985,0.27611503,-0.13871136,-0.11830138,0.50048196,0.43891463,0.29580086,-0.5992062,0.19564845,-0.3117084,-0.6140198,-0.12213487,-0.4450242,0.10784142,-0.0646065,-0.4546122,-0.083756156,-0.15336385,-0.28413457,0.5170317,-2.6359982,-0.2548262,-0.12863399,0.4334394,-0.2892819,-0.35299352,-0.18191454,-0.4211885,0.33055857,0.20508875,0.5163518,-0.7502965,0.3020857,0.28138983,-0.4205845,-0.23379542,-0.6160257,-0.0369593,-0.006668138,0.3710887,-0.24395452,0.24034742,0.26482645,0.1883151,0.40956226,-0.13267806,0.07557161,0.26429555,0.45792294,0.16237989,0.42676976,-0.12651986,0.6626581,-0.21612193,-0.23493136,0.14085633,-0.3472262,0.16511801,0.14477614,0.12939838,0.29128462,-0.4534387,-0.9759511,-0.48404026,-0.18594867,1.0223291,-0.33208498,-0.36440402,0.2923095,-0.25869334,-0.14725758,-0.14329942,0.53150445,0.005891392,-0.024027197,-0.7625106,0.08586796,-0.03506107,0.14682844,0.0004317004,0.07816002,-0.26118028,0.45030624,0.009824538,0.5162426,0.16072758,0.20090191,-0.40421754,-0.54582953,0.1338285,1.0275868,0.069342904,0.12622732,-0.073907696,-0.34826565,-0.38939416,-0.026300857,0.14170863,0.52895105,0.668787,-0.04709872,0.09372151,0.32080847,0.025703214,0.20495926,-0.10640126,-0.35792395,-0.13302289,-0.12964892,0.44795233,0.55318594,-0.40828106,0.78193134,-0.2295991,0.2629458,-0.12200082,-0.48419872,0.6487986,1.143904,-0.2680206,-0.19679686,0.5694352,0.3431989,-0.52909744,0.43287876,-0.4570681,-0.0996005,0.63923085,-0.15767524,-0.22111201,0.3640417,-0.1941043,-0.078828536,-0.9266007,0.3635529,-0.29464686,-0.47096184,-0.22391686,0.07096027,-3.8960302,0.1498321,-0.29485786,-0.31646186,-0.14961056,-0.056418963,0.1786937,-0.62940055,-0.49787605,0.21452448,0.16838983,0.70292366,-0.030693272,0.14254496,-0.2985398,-0.24579495,-0.2390797,0.11372425,0.16142686,0.37715212,-0.029820463,-0.475246,-0.16709223,-0.07201558,-0.47921765,0.16802791,-0.69285274,-0.42856294,-0.13077448,-0.7593756,-0.2723462,0.7779985,-0.36861122,-0.010657044,-0.23303369,-0.013375715,-0.18268088,0.2392656,0.009946619,0.128176,0.0879519,-0.031306837,0.12107145,-0.24855271,0.1838993,0.08333748,0.43897894,0.17441337,-0.16391708,0.08251421,0.57168865,0.6702388,-0.0028863412,0.7789014,0.6073829,-0.12189192,0.37133533,-0.3395471,0.022082053,-0.54945576,-0.4835976,-0.24294113,-0.29507694,-0.59768057,-0.18965171,-0.28632113,-0.72205997,0.58663464,-0.14615804,0.3580918,-0.06619202,0.30286005,0.5282908,-0.22073999,0.07485521,-0.14185116,-0.26259953,-0.64494324,-0.19094199,-0.54579204,-0.39722353,0.39511025,0.78435606,-0.19820179,0.03293274,-0.25935704,-0.28973705,-0.038169548,0.19197804,0.028110322,0.24222206,0.39083067,-0.28286383,-0.6643223,0.4619415,-0.23630343,-0.1851218,-0.6107451,0.28323135,0.5817655,-0.6317348,0.76314694,0.18237187,-0.069714636,-0.1693317,-0.36624634,-0.32050043,0.12631838,-0.11448013,0.23445328,0.09888576,-0.93705434,0.30622506,0.41975874,-0.38083073,-0.53577125,0.7648411,0.0048627947,-0.28081694,-0.105293974,0.27756622,0.16856946,0.05228152,-0.34828627,0.2624976,-0.5240016,0.23848622,0.280079,-0.10003304,0.20830916,-0.03727205,0.016513119,-0.7960742,0.11798501,-0.4501676,-0.20487414,0.34456795,0.20323507,0.15194973,0.08294109,0.061493047,0.27836525,-0.33599937,0.087010585,0.0428245,-0.2094342,0.40566108,0.3736624,0.43965337,-0.4736431,0.47413686,-0.026444813,-0.3068179,0.2756922,0.24541026,0.5326336,0.28818116,0.2737268,0.27639848,-0.3754881,0.31797716,0.69733745,0.20252196,0.49536562,0.13005875,-0.0904965,0.2932512,0.1605477,0.07833343,0.15339755,-0.367357,-0.0738357,-0.061373755,0.24169856,0.56070966,0.15575226,0.26169956,-0.14194092,-0.44011614,-0.03572618,0.23500364,0.13572666,-1.2261208,0.38473347,0.21023147,0.70700115,0.35939312,0.032347776,-0.13366447,0.5542258,-0.072302744,0.14098863,0.40524918,-0.06606483,-0.6088892,0.48799583,-0.6895231,0.40633774,0.0006258442,-0.04383209,0.1700715,0.11173526,0.3086719,1.0538176,-0.11464803,0.030253913,0.09571551,-0.26565057,0.106784195,-0.42852995,0.11378842,-0.57249016,-0.27767578,0.59822965,0.39871693,0.24068475,-0.23473631,0.04395277,0.1020868,-0.15190437,0.10174997,0.043543916,0.21548778,0.01536936,-0.70088035,-0.26355,0.61239237,-0.13987309,0.13882264,0.10950499,-0.1501722,0.3723162,-0.2983708,-0.09198051,0.06836519,-0.7408849,-0.061809078,-0.27935582,-0.38363,0.49366787,-0.17753047,0.38085926,0.15250562,0.020682981,-0.36847666,0.52079195,0.20088822,0.70276845,-0.14129485,-0.2739228,-0.4639772,0.1943282,0.24954136,-0.2140309,0.05080668,-0.21171682,-0.18195912,-0.57283974,0.403918,0.19320315,-0.18491855,-0.08187572,-0.096114404,0.1442312,0.524983,-0.06796372,-0.0797006,-0.13929422,-0.15011314,-0.24410091,-0.19329461,-0.026434751,0.27647105,0.26748732,-0.20203355,-0.050822716,-0.013987541,0.09710041,0.30494773,-0.091165766,0.46823502,0.3412894,0.39700383,0.07997312,-0.25258183,0.40098888,0.411384,0.112718455,-0.12733212,-0.26433548,-0.3148726,-0.37799314,-0.13224968,-0.1351977,0.4420734,0.08090015,-0.33238217,0.7136665,0.04915033,1.1784856,-0.02444624,-0.37541956,0.010735732,0.34626624,0.010935879,-0.07665756,-0.31352285,0.99246174,0.64468354,0.13045299,-0.16778898,-0.24150452,-0.2464576,0.17747028,-0.32683218,-0.33184546,0.09739256,-0.55609876,-0.27218392,0.23529068,0.14172693,0.30863872,-0.028286012,0.31503537,0.3116255,0.030525547,0.18336064,-0.4913936,-0.045246575,0.26392344,0.4901516,0.0659703,0.20857008,-0.44872564,0.39746433,-0.47819936,0.13953243,-0.18307152,0.21488787,-0.1373623,-0.4839548,0.2394478,0.13384336,0.43140417,-0.3127248,-0.36166483,-0.31977382,0.5587156,0.1049947,0.028758626,0.6148423,-0.2666024,0.044270165,0.054089885,0.5167029,1.07854,-0.15353003,-0.16868089,0.43793187,-0.5690318,-0.8383777,0.39129046,-0.10870823,0.35018173,-0.13638419,-0.086285844,-0.56029004,0.31278288,0.11505081,-0.07033083,-0.00037160746,-0.44386667,-0.3530666,0.21507232,-0.34134722,-0.31607148,-0.3004515,0.28792495,0.68398416,-0.3917518,-0.35277116,0.17752916,0.17549832,-0.112731986,-0.44625917,-0.2442492,-0.39678398,0.30114788,-0.0006847198,-0.38063306,-0.1552468,-0.045093272,-0.30010983,0.2671684,0.09690123,-0.38319686,0.22287062,-0.18915822,-0.31244186,0.90952015,-0.22635767,0.040596724,-0.57509464,-0.44045755,-0.7710918,-0.5700233,0.5084023,0.059992455,-0.07382962,-0.6150194,0.05629986,0.009239467,-0.20720442,-0.058966205,-0.3810209,0.36520463,0.04220206,0.24764313,-0.11965583,-0.9148398,0.16642621,0.23391843,-0.15270866,-0.919814,0.5478264,-0.2331174,1.0121592,0.018034546,0.18301322,0.56445,-0.40265766,-0.3647575,-0.2471514,-0.14981729,-0.6080591,0.15381703 +904,0.6327385,-0.58186966,-0.54289645,-0.19913769,-0.116998814,-0.13614665,-0.03265053,0.61175025,0.11631749,-0.52286065,-0.27771482,-0.23877282,0.17185411,0.22529039,-0.23589009,-0.51242834,-0.0819169,0.23918295,-0.35500115,0.6287998,-0.2394116,0.05112137,-0.10197845,0.5192551,0.43033937,0.34561375,0.003910108,0.020890214,-0.25330737,-0.15415023,-0.095325656,0.1722797,-0.70527595,0.07317316,-0.20092975,-0.3842803,-0.027956974,-0.5678448,-0.43781233,-0.7505772,0.10832986,-0.9878782,0.564947,0.15364237,-0.43346235,0.26188165,-0.045254495,0.32876185,-0.42566517,-0.07994388,0.22246055,-0.12048283,-0.03029456,-0.3038199,-0.04087181,-0.54793596,-0.6084818,-0.14109395,-0.32476756,-0.32747298,-0.17209224,0.04820076,-0.32744035,-0.018602436,-0.11034396,0.7393518,-0.613182,0.055374417,0.1335127,-0.0826729,0.40754578,-0.5660148,-0.21687931,-0.23525342,0.13801464,-0.14438845,-0.27434742,0.21236467,0.12492439,0.30729264,-0.061776318,-0.1444169,-0.27893814,0.047383036,0.113830924,0.3488343,-0.17114319,-0.47650605,-0.11472391,-0.10474736,0.12600054,0.3012301,0.36298257,-0.23724361,-0.09963042,0.19689964,-0.1541803,0.41962042,0.51355445,-0.15835305,0.044557337,0.14895684,0.60365015,0.23313765,-0.20137306,-0.07449501,0.034856353,-0.49850035,-0.2766557,0.053347528,-0.3283226,0.9290068,-0.12698902,0.19344664,0.7269037,-0.25971115,0.010051662,0.07712399,0.1604312,-0.15879078,-0.4018794,-0.55609363,0.46702355,-0.3709115,0.20460391,-0.33931527,0.76932806,0.24763368,-0.50478625,0.2400526,-0.6013496,0.18900609,-0.16743493,0.590215,0.4772713,0.542998,0.5557573,0.43939564,-0.44961688,0.13312934,0.21863914,-0.35513887,0.17229104,-0.26496002,-0.0873071,-0.48782063,-0.16048168,-0.1753092,-0.31229603,-0.15533453,0.61207455,-0.54152846,-0.03545654,0.2410778,1.0012611,-0.3076162,0.018899966,0.72293985,1.227159,0.98688334,0.046063587,1.1248139,0.3135142,-0.3384559,0.15298663,-0.027039148,-0.7437987,0.29920667,0.46744567,-0.23197006,0.41136482,0.18680254,-0.18728824,0.506187,-0.5374574,0.1422175,-0.06591877,-0.027791072,0.034329534,-0.17767352,-0.7883639,-0.19738597,-0.24149412,0.0017560233,-0.3821782,0.36941954,-0.25552502,0.38604262,0.05557613,1.812793,-0.025021486,-0.063997254,0.03840315,0.591042,0.06315256,-0.20632796,-0.020074774,0.49437717,0.45421678,0.3648019,-0.5117416,0.21001972,-0.20072564,-0.42287815,-0.26401475,-0.4325485,0.047030553,-0.10353636,-0.5530453,-0.1325679,-0.14182429,-0.0381852,0.21598949,-2.3145177,-0.055228267,-0.25498828,0.60885453,-0.18231887,-0.31460255,0.27576414,-0.48866245,0.21092682,0.3879388,0.51071286,-0.7625462,0.46131992,0.6249058,-0.5569778,0.012638915,-0.6760997,-0.3687533,-0.11522266,0.46553758,-0.11722922,0.13112797,0.18975852,0.29979733,0.56142676,0.040262286,0.23172717,0.24273413,0.47274953,-0.2945307,0.7062821,0.14882009,0.38752472,-0.123545215,-0.11731913,0.21363544,-0.24229355,0.14597268,-0.017135559,0.115283616,0.5287828,-0.52395636,-0.8907324,-0.6032301,-0.09590264,1.0753764,-0.39576122,-0.39082897,0.2914039,-0.4128814,-0.33093038,-0.23748296,0.39136934,-0.13512994,0.04146916,-0.895615,-0.019634973,-0.060101423,0.084269226,0.015615822,-0.0627547,-0.54101396,0.75681823,-0.07143393,0.56609225,0.5297529,0.23279892,-0.19449963,-0.57142234,0.04352279,0.993685,0.4615847,0.09290979,-0.43268117,-0.15563774,-0.24241239,0.18301448,0.12691112,0.48577994,0.851969,-0.22614585,0.22522198,0.36401433,-0.067848824,0.001014211,-0.19508745,-0.38074028,-0.16484803,-0.06534929,0.48845342,0.8553917,-0.19037575,0.48552325,-0.17410123,0.586514,0.025075424,-0.4190176,0.2533624,1.302856,-0.15884128,-0.19915856,0.7913132,0.68354183,-0.52496165,0.5141457,-0.6285595,0.0017820813,0.48037606,-0.1975789,-0.504795,0.44510955,-0.30533898,0.22426048,-0.99170077,0.50312316,-0.11477674,-0.48176992,-0.70790076,-0.2495097,-3.3828013,0.29908422,-0.48410398,-0.37134856,-0.014931072,-0.36079594,0.28174275,-1.0823284,-0.517678,0.25403154,-0.004529235,0.72532743,-0.031986754,0.052854713,-0.35361665,-0.4346213,-0.17775719,0.15691449,0.2584268,0.22983836,-0.18368864,-0.62490976,-0.06185678,-0.016747849,-0.37245008,-0.030907894,-0.65585226,-0.56391865,-0.1778641,-0.65109617,-0.3137045,0.6627716,0.057234243,0.0947712,-0.1346402,-0.054217257,-0.058892503,0.099757,0.19421583,0.38742554,-0.13234176,0.0056248903,0.11834648,-0.28695107,0.053834643,0.13206433,0.5100243,0.051464316,-0.10207903,0.21329886,0.594249,0.5205378,-0.17132916,0.94754845,0.68556696,-0.26147035,0.22022893,-0.13731344,-0.44597006,-0.773652,-0.54044205,0.00011089715,-0.4269678,-0.4065525,0.071699075,-0.38271588,-0.7343664,0.78911644,-0.11318786,0.3313968,-0.018671155,0.27688113,0.7013406,-0.24958615,-0.32522666,0.026756173,-0.16985002,-0.7343131,-0.104063034,-0.8221741,-0.5372912,0.242849,0.8393104,-0.22338496,0.06340032,0.12989502,-0.30652082,0.24784683,0.1705151,-0.16734606,0.019722028,0.6171437,-0.010041849,-0.66931987,0.5488905,-0.025101228,-0.21829389,-0.5236309,0.20471649,0.69243515,-0.74035394,0.74707884,0.3869651,-0.12950474,-0.18604998,-0.6377793,-0.31515282,-0.14685588,-0.09166169,0.53607386,0.34331945,-0.810726,0.19111495,0.27805954,-0.35735872,-0.71813726,0.8270826,-0.19321309,-0.38975012,0.018660514,0.32722792,-0.032991704,-0.025319178,-0.25894374,0.43521512,-0.29238972,0.16444184,0.5430271,-0.1379505,-0.07323183,0.09379785,0.22213699,-0.9574686,0.27521726,-0.52858347,-0.37448347,0.41606483,0.02724389,0.043788828,0.24742633,0.34737456,0.25167274,-0.31075895,0.112318486,-0.044760644,-0.4842704,0.61016536,0.5488212,0.49554205,-0.47999507,0.54806566,0.031651307,-0.09973485,-0.03139571,0.00714094,0.38275796,0.07245247,0.42917702,0.10353823,-0.22428797,0.2116047,0.7053069,0.31213987,0.89363,0.2625907,0.13101472,0.15703364,0.19958873,0.37185314,-0.023397792,-0.7112976,0.2967419,-0.02657504,0.12979928,0.46026945,0.03949146,0.29929313,-0.21714574,-0.32047734,0.113264635,0.28843093,0.2178877,-1.3060037,0.2588789,0.22179207,0.7318345,0.59367585,0.13126408,-0.19241124,0.56723297,-0.22465649,-0.016485013,0.4302933,0.3456309,-0.665107,0.6451567,-0.7029075,0.38659468,0.036409102,0.05639023,-0.16620497,-0.21116619,0.4096505,0.6978991,-0.14384681,-0.021781344,-0.10154574,-0.3051832,0.17713343,-0.69388676,0.0042518754,-0.4966079,-0.37754527,0.6059976,0.6121841,0.4217695,-0.18964724,0.019547137,0.08200333,-0.2822075,0.4273407,0.12732957,-0.09798017,0.09249315,-0.91943353,-0.2687357,0.42399818,-0.4310489,0.036125444,-0.24780846,-0.28104234,0.15350576,-0.12197903,-0.18695645,0.16551228,-0.84016997,-0.06811053,-0.5175765,-0.58025426,0.6023211,0.07976047,0.13714837,0.122168966,0.012558862,-0.1980651,0.17986245,0.06379271,0.9523062,0.12320461,-0.15523142,-0.37095964,0.13029775,0.27903935,-0.1994006,0.23050858,-0.4232416,0.25623143,-0.6023724,0.46707848,0.18258335,-0.5475988,-0.21880794,-0.15244642,-0.011543593,0.5683124,-0.11231577,-0.30126113,-0.17570604,-0.023999594,-0.20245808,-0.37894067,-0.06523058,0.31754598,0.04399422,0.09131189,0.039861474,0.033431336,0.13350427,0.67187905,0.020585256,0.5717203,0.60606533,-0.15418248,-0.30961877,-0.26689816,0.19363494,0.47355548,-0.06603403,-0.23262487,-0.46032503,-0.7636969,-0.3416125,0.018953241,-0.18458614,0.62402445,0.18407029,-0.039360363,1.0251384,-0.10492523,1.3558645,-0.13958901,-0.7330835,0.07901168,0.7116476,0.017061938,-0.057496134,-0.33053428,1.1174945,0.5149824,-0.18224502,-0.27302706,-0.5465218,-0.13476968,0.25512275,-0.13402626,-0.30951774,-0.062020086,-0.7053495,-0.07792606,0.12608136,0.4511941,0.29530457,-0.0729133,0.42769873,0.51135087,-0.0809705,0.35813242,-0.5244367,-0.2422811,0.28054225,-0.008295959,-0.12937674,0.16927713,-0.44805372,0.3591628,-0.44846848,0.08307944,-0.4284407,0.15429941,-0.009949554,-0.47993672,0.20680016,0.028846644,0.45746925,-0.5426056,-0.19282652,-0.3152354,0.5767489,0.10125765,0.17884456,0.6086001,-0.38587245,0.114942096,-0.052536014,0.5645599,1.3507833,-0.24128708,-0.021352334,0.3926945,-0.66036284,-0.83296037,0.32626107,-0.117624424,0.27685767,-0.016071992,-0.37093413,-0.8220696,0.18884693,0.14796957,-0.2823769,0.19481164,-0.6109504,-0.21058828,0.29170325,-0.45202497,-0.1144149,-0.29609632,0.24062118,0.53016025,-0.34766808,-0.29778585,-0.1179067,0.09556469,-0.09942604,-0.20770726,-0.24050131,-0.45744693,0.35745108,0.0028787742,-0.53404087,-0.118354924,-0.24094075,-0.3360941,0.21045755,0.1910983,-0.31730163,0.17123675,-0.21434823,-0.2834813,1.1504956,-0.07359522,-0.13227654,-0.5304638,-0.5617637,-0.8792997,-0.5516652,0.5075474,-0.026900204,0.07376338,-0.66495633,0.182184,-0.0329154,0.0047636684,-0.2104674,-0.35006478,0.4996207,0.2060276,0.58279645,-0.03894459,-0.9000111,0.29687083,0.20653628,-0.27682704,-0.7737019,0.731716,-0.23314372,0.8979114,0.0117712375,0.29307035,0.12169585,-0.43834054,-0.14046727,-0.27326238,-0.37963483,-0.65126747,-0.12838486 +905,0.3814673,0.062906615,-0.51841414,-0.14141974,-0.20062743,-0.02283134,-0.05713276,0.5006672,0.327463,-0.4215233,-0.2985853,-0.10822652,-0.031863328,0.21698533,-0.084245495,-0.71385455,0.058425207,0.20570771,-0.4856322,0.5104383,-0.42644662,0.45188782,-0.049141094,0.34749812,-0.019251855,0.32044685,-0.07586132,-0.2204442,-0.13397726,-0.15118122,-0.2340562,0.3658495,-0.42780846,0.24478434,-0.095954105,-0.28121144,0.02776913,-0.37035692,-0.46531126,-0.75065064,0.34259313,-0.72967273,0.5077722,0.035100803,-0.23913607,0.024426881,0.051228836,0.3883416,-0.12755398,0.022221029,0.060677543,-0.065334804,-0.14640734,-0.2602728,-0.40088606,-0.26881886,-0.4578207,-0.04789236,-0.27316058,-0.09658722,-0.27415365,0.21308938,-0.31424236,0.009775137,-0.15776531,0.5175861,-0.42878163,0.3341697,0.22278121,-0.10639409,0.15736455,-0.5753877,0.010034836,-0.12714781,0.33949506,-0.28402308,-0.27688286,0.3465679,0.271972,0.46003377,0.034476105,-0.21540605,-0.29991052,-0.21184275,0.022367248,0.53114235,-0.2875324,-0.56935537,-0.038794316,0.13091747,0.08315475,0.39723247,-0.06916392,-0.22090465,-0.1332518,-0.03653725,-0.21251263,0.3483836,0.5875179,-0.06443757,-0.38339466,0.38060838,0.44425446,-0.042261302,-0.04334604,0.008138565,-0.034102768,-0.49673468,-0.22162507,0.02677044,-0.23691794,0.41323382,-0.16404067,0.20801279,0.6271719,-0.15110329,-0.16794108,0.1546873,0.041042108,0.12622264,-0.3471362,-0.1628388,0.12323059,-0.49299586,0.2633311,-0.07669612,0.8748921,0.20249547,-0.7382596,0.29336563,-0.55327076,0.07750359,-0.08966594,0.4662657,0.5385692,0.42872557,0.33704,0.691434,-0.39464384,0.1533837,-0.119507775,-0.47338766,-0.14434715,0.084852114,-0.021119293,-0.3822149,0.12429115,0.014008494,-0.22254053,0.22084998,0.27271992,-0.655815,0.008197426,0.009879296,0.90399414,-0.36691713,-0.23918924,0.7790171,0.77232367,0.8159972,-0.02645697,1.2586515,0.22789611,-0.29708257,0.36118263,-0.5217499,-0.759367,0.36444885,0.22468391,-0.37090948,0.09766698,0.07137884,-0.035073,0.1748027,-0.41207308,-0.14324169,-0.2897911,0.3013992,0.13948172,-0.06189337,-0.40842226,-0.2809049,-0.21977735,-0.07189925,0.295634,0.23234934,-0.22846593,0.32904482,-0.018751265,1.4980052,0.05518401,0.059659775,0.12856828,0.4144785,0.25187638,-0.014829709,-0.2235685,0.5037133,0.21875358,-0.03721195,-0.63785934,0.054317575,-0.31336117,-0.28067273,-0.07087641,-0.2733587,-0.024203297,0.027734088,-0.28479493,-0.31135383,-0.2938796,-0.2677673,0.60933787,-2.5900805,-0.16514198,0.034386136,0.48904622,-0.34646577,-0.4069867,-0.16585915,-0.6331471,0.37805086,0.16444565,0.55995214,-0.63753563,0.3721429,0.44251028,-0.54422146,-0.17840211,-0.5714522,-0.004283474,0.10579167,0.14143999,-0.11978546,0.014910304,-0.14527209,-0.25194716,0.4575538,-0.034852352,0.107498884,0.53949845,0.4293211,0.19656219,0.3345985,-0.082529016,0.6563435,-0.28519937,-0.1517621,0.21317345,-0.42509305,0.31288412,-0.18462881,-0.011751785,0.52969897,-0.5768317,-0.7656799,-0.691879,-0.3393697,1.00859,-0.11621543,-0.20893504,0.30350274,-0.3990317,-0.29044485,-0.11107417,0.51955575,-0.094578184,-0.11066547,-0.6736755,-0.0641257,-0.11936991,0.31086123,0.013585732,0.005356408,-0.2656859,0.5750051,-0.24930246,0.34970134,0.112846605,0.16773437,-0.42456877,-0.5747494,-0.03890942,0.8982585,0.3441472,0.24942812,-0.09251615,-0.3096064,-0.36530113,-0.2504881,0.036689974,0.7561526,0.80234826,-0.09597126,-0.049326167,0.3645562,0.05322593,0.06616478,-0.24689649,-0.25224596,-0.19567622,0.03740186,0.47478196,0.34892786,-0.2938852,0.5619406,0.01211588,0.4229357,-0.18514243,-0.3380341,0.3337789,1.0934854,-0.18258436,-0.35066617,0.6299607,0.20569786,-0.27715585,0.41479158,-0.5101647,-0.28496653,0.43393177,-0.2239557,-0.5499004,0.10119363,-0.15874705,0.09640638,-0.7692139,0.3179379,-0.2888351,-0.8111342,-0.42964175,0.06519563,-2.7111914,0.11828233,-0.25596973,-0.13341606,-0.04352277,-0.10282559,-0.19876997,-0.31299752,-0.60327286,0.29189152,0.12340326,0.5660581,-0.21172954,0.22752358,-0.04933874,-0.09223577,-0.421457,0.1741771,0.27648103,0.29378474,-0.04969029,-0.44302055,-0.028415803,0.067998976,-0.48956606,0.31220216,-0.63831073,-0.4251529,-0.12653798,-0.7905748,-0.20354953,0.72051406,-0.46320283,0.026892098,-0.26610672,0.010668452,-0.15523073,0.28325644,-0.07173823,0.19884263,0.07058024,-0.19805798,-0.021490455,-0.22858873,0.463642,-0.0017874837,0.43217924,0.22586188,0.0040343357,0.118956104,0.44332978,0.64149606,0.080515474,0.76825625,0.46590665,-0.094825774,0.32162946,-0.26561007,-0.31363103,-0.38533685,-0.26659173,0.039302807,-0.4606511,-0.32470828,-0.12451018,-0.5212577,-0.7890826,0.35884187,0.10320819,0.018659042,0.07351588,0.33822423,0.5232947,-0.04874015,0.10712286,-0.074251145,-0.07775961,-0.56119007,-0.24352802,-0.48973158,-0.36424506,0.33661225,0.9486768,-0.29004204,0.03888254,-0.14880411,-0.122406214,-0.14688136,0.19705266,-0.053901415,0.24676195,0.48270628,-0.32187927,-0.45912963,0.36382622,-0.0533048,-0.25715032,-0.5594217,0.25037703,0.6447698,-0.781412,0.70020765,0.23810603,-0.025049258,-0.023960825,-0.49015805,-0.36391765,-0.019379687,-0.24805737,0.28361413,0.24148777,-0.644379,0.33508906,0.36878803,-0.16321722,-0.83352405,0.4477803,-0.027129184,-0.4071342,0.0027696078,0.42141885,0.09024009,-0.05842062,-0.25557625,0.104018465,-0.18856548,0.20385228,0.16879252,-0.09680299,0.20139764,-0.35717678,-0.22184673,-0.9198283,0.05070194,-0.56787735,-0.20934187,0.30629966,0.14286293,0.056110676,0.13730717,0.188788,0.43999326,-0.33173588,0.063665375,-0.14613412,-0.30173016,0.29247972,0.34948972,0.4317902,-0.44236463,0.4299034,0.0071934415,-0.09264032,0.036097363,0.1851189,0.51607424,-0.13850345,0.44397575,0.19668,-0.28770158,0.2732774,0.8373651,0.20716517,0.3338761,0.048962116,0.10122771,0.1891165,0.041963197,0.10505768,0.17053328,-0.51017666,-0.1246626,-0.22014776,0.11470766,0.522663,0.32396466,0.22161815,-0.002649807,-0.4026779,-0.11831559,0.25161836,0.031216292,-0.9583773,0.42929128,0.1268314,0.84134746,0.39885888,0.124591365,-0.009446818,0.52147037,0.03941953,0.27978098,0.27462712,-0.18278407,-0.43243223,0.39104718,-0.65305096,0.55093265,0.013819016,-0.0052907295,0.07628837,-0.06772722,0.33092433,1.0643324,-0.13977972,0.017235288,-0.012892737,-0.1639437,0.20463601,-0.4913266,0.00013392247,-0.6700452,-0.308613,0.59324163,0.39066437,0.25410488,-0.05371546,-0.025842201,0.17866684,0.010390452,0.057986658,0.068346694,0.1287579,0.014567022,-0.4980157,-0.25727496,0.6271085,-0.0053845462,0.13510606,0.0812249,0.12177165,0.40649244,-0.1685056,-0.039529048,-0.11928547,-0.65032345,-0.01371314,-0.20755188,-0.29645243,0.19937855,-0.047207475,0.2319029,0.22998068,0.110005125,-0.47268915,0.38831836,0.2620546,0.7529831,-0.0406265,-0.17749152,-0.3687234,0.25470325,0.20143965,-0.24928233,0.17891055,-0.236722,-0.16141978,-0.7040848,0.50119126,-0.026633663,-0.37244767,0.07144504,-0.15930066,-0.059044525,0.4126221,-0.11701722,-0.11020335,0.087766096,-0.24090584,-0.30617076,-0.06353971,-0.16990052,0.180526,0.4469879,-0.11660138,-0.08936819,-0.16333672,-0.20604159,0.46930045,-0.0667374,0.3357945,0.19647385,0.23971604,-0.19570777,-0.12974606,0.1766393,0.61546034,-0.06894694,0.15444763,-0.058964465,-0.28676796,-0.25148982,0.13191582,-0.032198425,0.44154456,0.08016389,-0.36132473,0.6103697,0.08479501,1.0933862,0.045635503,-0.19994357,0.012319551,0.41393483,0.085838884,-0.051219422,-0.32414654,1.099649,0.4773008,-0.043047883,-0.09198561,-0.3523501,0.048685256,0.114555754,-0.07736582,-0.15028879,0.12627168,-0.46845546,-0.36060983,0.2592755,0.19421746,0.15786396,-0.014941573,0.043508057,0.22820646,-0.03871941,0.19347483,-0.47520095,-0.04188371,0.24980766,0.20506321,0.21371382,0.2270411,-0.47737783,0.3879597,-0.45344603,0.12419235,-0.1405654,0.2326157,-0.26025242,-0.32041502,0.2532453,-0.03138622,0.34225732,-0.27662557,-0.3624905,-0.3536,0.516092,0.16212688,0.14090763,0.5554694,-0.14967799,-0.012462282,0.050781514,0.6169723,0.87955374,-0.07316243,0.015830802,0.3569587,-0.37682182,-0.5418834,0.3794271,-0.18291084,-0.13144487,0.046811506,-0.14465627,-0.3955221,0.31139782,0.13687025,0.18525933,0.17313704,-0.5504579,-0.08853948,0.26177335,-0.3402244,-0.19035424,-0.36630514,0.4026903,0.8351524,-0.18603882,-0.188526,0.2375109,0.0013940334,-0.33725706,-0.5885835,-0.0865798,-0.30532214,0.25803515,0.037324097,-0.20906195,-0.2885005,0.041430257,-0.36323068,0.13185307,0.10834748,-0.27690837,0.1304496,-0.23115815,-0.24448362,0.7821875,-0.21313286,0.06781529,-0.5016743,-0.30663437,-0.7665118,-0.2867104,0.394542,0.20852995,-0.015271342,-0.7183911,-0.20212331,0.017147716,-0.27459285,-0.03083593,-0.3323831,0.4239136,0.13239841,0.3088494,-0.17460635,-1.0614101,0.2007213,0.2011453,-0.2718046,-0.6472664,0.37753862,-0.053395733,0.89131206,0.07136813,0.04597638,0.44439596,-0.37745878,-0.08294874,-0.22603191,-0.102572985,-0.75197375,0.032000616 +906,0.37338868,-0.20687266,-0.43836305,-0.21011592,-0.46394494,-0.014422526,-0.42083475,0.16341294,0.32992527,-0.31740236,-0.22133927,-0.0034292303,-0.09009097,0.10813645,-0.17619115,-0.40451518,-0.10984359,0.10535882,-0.87414837,0.5850904,-0.5164202,0.3365513,0.16823316,0.504603,0.08857235,0.21477777,0.36755773,0.032844804,0.08115756,-0.40715873,0.00960809,-0.07875603,-0.7898539,0.2778835,-0.34686413,-0.41642675,-0.025967963,-0.70399386,-0.12392956,-0.85117555,0.32592916,-0.839323,0.60458857,-0.08701346,-0.23523076,-0.1828606,0.6754113,0.19123626,-0.09753748,-0.17032997,0.25203595,-0.33153844,-0.25143102,-0.2589518,0.13960983,-0.45139253,-0.52890337,-0.10113583,-0.52096975,-0.38854074,-0.24671936,0.35615888,-0.37711096,0.09362335,-0.15844579,0.7643867,-0.39645264,0.17386596,0.16736372,-0.24489321,0.19338417,-0.7563715,-0.13192378,-0.069733925,0.5746798,0.14715575,-0.15120932,0.44708595,0.27988887,0.38994554,0.19667141,-0.3853804,-0.24258143,0.033257376,-0.24559145,0.48033538,-0.15812615,-0.2339474,-0.117375135,-0.022391418,0.5699914,0.40488735,0.05311429,-0.049416464,0.10645783,-0.19819565,-0.19986065,0.79222804,0.52686125,-0.30638584,-0.08595332,0.16436231,0.33078894,0.4872358,-0.22238445,-0.078931354,-0.06036957,-0.69852734,-0.2438341,0.077410586,-0.09100965,0.3734981,-0.13050938,0.24091448,0.672786,0.027595945,-0.07666256,0.23081887,0.021648759,0.12161431,-0.14255372,-0.4263982,0.38456142,-0.58646876,0.089957945,-0.44159886,0.72925067,-0.14951253,-0.7039206,0.33929718,-0.61013085,0.15709175,0.14809512,0.5557799,0.91895455,0.745593,0.47499284,0.8735222,-0.043227863,0.025777036,-0.037566047,-0.1398703,0.21597524,-0.4265922,0.2894949,-0.3819891,0.02420717,-0.26965377,0.28101394,-0.0011376739,0.5691555,-0.59178036,-0.17110176,0.25336888,0.7734823,-0.106025435,0.10837301,0.747921,1.0446954,1.1089627,0.1472918,1.0095617,-0.032007735,-0.2372144,-0.008780186,0.18677671,-0.8032279,0.25898948,0.344321,0.041643303,0.20045447,-0.06893241,0.00017161667,0.46008906,-0.37890482,-0.19178323,-0.049943898,0.37797156,0.21674085,-0.14638765,-0.42404106,-0.42855784,0.13122503,0.048539992,0.1893849,0.23712273,-0.34262228,0.332567,-0.11734261,0.9771824,-0.09785235,0.08085767,0.24647407,0.53991455,0.30675098,-0.12601866,0.100386895,0.19173187,0.18550837,0.16089566,-0.63717353,0.2886875,-0.31019577,-0.26021257,-0.1613241,-0.4060793,-0.46280566,0.113794215,-0.41369793,-0.38478914,-0.22737904,-0.2943812,0.2090673,-2.654171,-0.23146307,-0.19192319,0.4327917,-0.21682619,-0.18005168,-0.04179247,-0.58043957,0.3491634,0.3082724,0.69987226,-0.5598657,0.44050947,0.60595,-0.8274072,-0.2271409,-0.62880754,-0.0728947,0.06550184,0.44375697,0.12160162,-0.4005653,-0.21931536,0.12213918,0.7440285,0.2501568,0.15115516,0.51568437,0.52510875,-0.13622062,0.6685937,-0.18907803,0.5103857,-0.34372985,-0.23124285,0.27629933,-0.54502314,0.043489683,-0.34744084,0.03216858,0.84016114,-0.59835154,-0.97933894,-0.56678265,-0.026135633,1.1813692,-0.0894446,-0.7113817,0.1084418,-0.5620996,-0.13850711,0.046128992,0.81059045,-0.16925271,-0.007972066,-0.61203593,0.020197019,-0.2409994,0.29899412,0.011787798,-0.12138909,-0.59007055,0.8803661,0.005075189,0.6025643,0.070052736,0.25903976,-0.6766255,-0.29845676,0.098537385,0.56806,0.60703033,-0.019496053,-0.25644353,0.055260662,-0.11014304,-0.3026602,-0.08435765,0.92718506,0.45793185,-0.099734396,0.22781722,0.40986907,-0.15517813,0.13222249,-0.14242692,-0.24200201,-0.41833544,0.13457012,0.6098122,0.8262701,0.057116628,0.3299807,-0.046027977,0.21197136,-0.30047712,-0.52720875,0.65391254,0.5555253,-0.2329876,-0.008992541,0.5056301,0.6292244,-0.2818043,0.5286327,-0.5687017,-0.48739043,0.4740665,-0.09948885,-0.5586627,-0.023336021,-0.42917708,-0.054521635,-0.50853556,0.31919196,-0.51241195,-0.5403249,-0.47876522,-0.13852602,-2.3021927,0.21518616,-0.24436726,0.049513314,-0.6240749,-0.24329282,0.2622061,-0.5305856,-0.7557869,0.105066024,0.2675867,0.74339765,-0.12177405,0.12205607,-0.21863031,-0.56874007,-0.09543881,0.21160476,0.12868063,0.2905458,-0.004242564,-0.20667839,0.032688428,0.056427762,-0.39390126,-0.031052867,-0.4637933,-0.48362327,-0.026362075,-0.5189427,-0.29403245,0.6338094,-0.3841568,0.069414295,-0.39365327,0.12515198,0.038920708,0.10889101,-0.0027939528,0.25163853,0.197263,-0.19954006,0.09606471,-0.1947302,0.4825851,-0.07057163,0.40690675,0.16629575,0.11573527,0.23711777,0.40276054,0.6622534,-0.20074435,1.2326708,0.21223791,-0.053945493,0.3575605,-0.17439888,-0.43323183,-0.70708066,-0.02229636,0.26692358,-0.34855697,-0.26882467,0.30145475,-0.28389376,-0.7809133,0.6023137,0.037700083,0.32799146,0.024407139,0.3569266,0.42363715,-0.10875541,-0.079423256,0.074846625,-0.12047104,-0.53674185,-0.26253542,-0.7592543,-0.32873818,-0.3086557,0.9926379,-0.21815455,0.107462354,0.33350268,-0.12217516,0.11775803,-0.07559169,0.056894746,0.118505515,0.4648699,0.32798266,-0.6140943,0.24585868,-0.196492,-0.06288785,-0.4744741,0.3993063,0.7680142,-0.6503708,0.5885547,0.57670003,0.09357139,-0.41631973,-0.66024435,-0.0055035003,0.08614763,-0.22461657,0.34405562,0.34413555,-0.7559244,0.5514326,0.15125987,-0.42810106,-0.85539246,0.3778837,-0.030023703,-0.3122432,-0.18392694,0.385777,0.37892005,-0.08225503,0.036606085,0.26277384,-0.4580623,0.4093441,-0.2531845,-0.073691584,0.28013366,-0.10968869,-0.42941907,-0.69787073,0.018092126,-0.6112666,-0.442773,0.38803756,-0.11661529,-0.012730156,0.3752469,0.19599535,0.3809737,-0.030897805,0.13336043,-0.1656445,-0.31846306,0.19825952,0.570218,0.48822224,-0.38072327,0.5330309,0.16079396,-0.0586873,0.1941924,0.16663383,0.1828825,0.0069106705,0.5028641,-0.2611136,-0.12268173,0.14032365,0.915102,0.1644409,0.28953508,-0.029227247,0.02736342,0.483315,-0.064779356,0.25194076,-0.16767712,-0.70878834,0.043703776,-0.19327855,0.054705698,0.50114167,0.058775783,0.24431606,-0.03193924,-0.10240557,-0.07358008,0.312462,-0.4988264,-1.1049753,0.43444267,0.30367973,1.0228674,0.52925366,0.1310022,-0.21925063,1.0615679,-0.09756004,-0.09808701,0.47514662,0.074715935,-0.31455374,0.71332735,-0.5947707,0.49492815,-0.20611812,-0.071894765,-0.06693061,0.20605087,0.19909795,0.6245566,-0.28701895,-0.013737778,-0.14553721,-0.2765824,-0.012539159,-0.2057231,0.17951716,-0.33643046,-0.4512743,0.8267286,0.25156096,0.32158408,-0.40161562,0.15927471,-0.10519991,-0.20522285,0.16669078,-0.015315689,-0.30908152,0.05742353,-0.5179761,0.10373425,0.44021654,0.008245637,0.2932408,-0.08540157,-0.1710283,0.017182777,-0.06644466,0.020670608,-0.08957801,-0.74511856,0.2077173,-0.30599248,-0.5541249,0.458889,-0.2737118,-0.16450699,0.27799344,0.10573679,-0.013952534,0.35442722,0.14741983,0.47701597,-0.16190249,0.026005983,-0.2174402,0.012770772,0.015058741,-0.37698314,0.16145672,-0.34197125,0.23861726,-0.5460803,0.6325082,-0.1698351,-0.41467324,0.26454177,-0.12066424,-0.06274183,0.53819436,-0.17380925,0.0718854,0.1172589,-0.25352776,-0.1728176,-0.24179454,-0.30867392,0.1505559,0.102565266,0.017486146,-0.22679074,-0.22615834,-0.33535132,0.51647574,-0.08099378,0.5115833,0.19055827,0.20805462,-0.335533,0.1799527,0.039845217,0.84355134,0.16925202,-0.057803024,-0.4815285,-0.3869492,-0.40330586,0.45381722,0.07372068,0.093252264,0.07375822,-0.2912683,0.8779921,-0.20118488,0.96927285,-0.22715282,-0.2650351,0.019015292,0.66080433,-0.15395765,0.06697079,-0.33170894,0.8892335,0.35182497,-0.06341223,0.119740725,-0.443259,0.12072003,0.24313855,-0.3511165,-0.08330835,-0.14197588,-0.46006235,-0.30482894,0.18717182,0.2272969,-0.07304784,-0.276293,-0.039111767,0.23385425,0.15691514,0.30022037,-0.6007561,-0.29068843,0.3217046,0.27556744,-0.16154602,0.13776745,-0.52760035,0.196927,-0.8650456,0.2724984,-0.6390927,0.04472821,-0.15709339,-0.2222191,0.22955902,-0.020317784,0.3977816,-0.33790526,-0.41526023,0.023635939,0.30932906,0.23245434,0.22947697,0.5938223,-0.21716557,-0.02319024,0.20261465,0.7445922,1.0703777,-0.3391964,0.09248834,-0.058132272,-0.5756013,-0.57595164,0.28726384,-0.3674188,-0.31782162,0.1380246,-0.23948763,-0.3871051,0.12592083,0.22506242,0.24376178,-0.11160881,-0.8975546,-0.26786527,0.3672622,-0.24529189,-0.1563855,-0.30328253,0.26928398,0.57284015,0.013408731,-0.14381778,-0.12832224,0.5610245,-0.15447827,-0.63451,0.1508912,-0.58516854,0.29999536,-0.073152915,-0.411141,-0.116536535,0.0028965871,-0.6225683,0.068644606,0.17629413,-0.4008861,-0.09110504,-0.25275144,0.115986355,0.7964887,-0.18455034,0.06430745,-0.298112,-0.62343,-0.92405796,-0.14524575,-0.037820697,0.22901623,0.013306181,-0.5373301,-0.208472,-0.22278242,-0.41107735,-0.016142005,-0.6143301,0.18581061,0.1914162,0.5637289,-0.4886985,-0.8539534,0.21753018,0.08907294,-0.054073155,-0.32442564,0.34184822,0.15571703,0.6754597,0.15444238,-0.1369883,-0.29745737,-0.4568744,0.23274462,-0.30724853,-0.19020866,-0.7580454,0.15286954 +907,0.54192483,-0.030685091,-0.5764431,-0.2908648,-0.537059,0.30094382,-0.2031496,0.093077496,0.33821085,-0.54752797,-0.004661226,-0.24849838,0.017093142,0.32993582,-0.2399912,-0.781687,-0.076310806,0.20471643,-0.8187647,0.3736517,-0.5047611,0.2614647,0.34182236,0.20538919,0.008158405,0.095688865,0.36230263,-0.2841379,-0.046923064,-0.040767793,-0.084099725,-0.015824588,-0.6491453,0.24171062,-0.03030402,-0.2914565,0.118561104,-0.55762076,-0.27253017,-0.6250225,0.42513427,-0.8886685,0.5094984,0.12529033,-0.30420026,0.1694616,0.07948599,0.05895153,-0.22600213,0.187178,0.23653345,-0.35510123,-0.07886316,-0.2211056,-0.40024486,-0.50355536,-0.71995354,0.048967652,-0.5155455,-0.14283963,-0.24044393,0.34405002,-0.3579659,0.05117063,-0.17711058,0.50087917,-0.33683863,-0.20193067,0.30105674,-0.14087254,0.2420353,-0.29217184,-0.09189239,-0.13730222,0.3543183,-0.06928148,-0.19563408,0.2834434,0.20346895,0.6820504,0.121910855,-0.34181356,-0.16835466,-0.0034987747,0.15018898,0.45739862,-0.13314953,-0.30486247,-0.1800423,-0.046241723,0.19126533,0.3733794,-0.10484408,-0.51329035,0.19380666,-0.006174376,-0.28470185,0.5830946,0.47523198,-0.4020475,-0.2644289,0.34732327,0.3658642,-0.076163486,-0.15790823,0.2102731,-0.023391414,-0.74047977,-0.3837916,0.43725014,-0.16430695,0.43504816,-0.1366244,0.1256402,0.7077506,-0.24165162,-0.09421498,-0.22553441,-0.24808636,-0.03160281,-0.20367408,-0.063744076,0.2534989,-0.49148777,0.07539431,-0.24259607,0.772459,0.17067634,-0.86936975,0.33017606,-0.64533067,0.14095777,-0.13019958,0.7341791,0.72315484,0.44366685,0.23707017,0.88893014,-0.5050781,0.16778356,-0.11776102,-0.48199502,0.070733376,-0.13232549,0.050629403,-0.34616163,-0.012968847,-0.07756449,-0.054079853,-0.048635982,0.40301362,-0.29004547,-0.042772055,0.122832134,0.80159265,-0.43951365,0.039730072,0.7960863,1.0102227,0.9950787,0.24663289,1.3965787,0.31864282,-0.28359598,0.2640377,-0.29239246,-0.61036843,0.25828177,0.27849016,0.25699216,0.24537824,-0.022165664,0.23716854,0.22283569,-0.4541277,0.049199007,-0.16034608,0.2459115,-0.12614818,0.053133298,-0.35859364,-0.2005925,0.19354303,0.078739755,0.19275421,0.24253106,-0.13815102,0.32819065,0.1375398,1.2008529,0.0027552366,0.09143095,0.12954897,0.24854082,0.13302273,-0.020824132,-0.10869873,0.1680616,0.3979459,-0.12193462,-0.6047306,0.07906205,-0.18997209,-0.4012125,-0.2555819,-0.3366159,0.067636326,-0.22606859,-0.35758382,-0.10733227,-0.060915664,-0.49701983,0.40779305,-2.1433032,-0.23280214,-0.08941674,0.25321364,-0.099933036,-0.1755672,-0.24643424,-0.6617726,0.32305956,0.3824569,0.13563462,-0.6943208,0.4912281,0.5071791,-0.38600025,-0.14176852,-0.7358582,0.004134738,-0.18821809,0.32935795,-0.02354435,-0.08976357,-0.26356688,0.3296295,0.5459856,0.054495223,-0.029171837,0.275242,0.52645695,0.12847821,0.62961024,0.06548722,0.4875435,-0.27851027,-0.10023619,0.4126314,-0.28695658,0.1651856,-0.10381269,0.14241293,0.38245627,-0.6243836,-0.79014677,-0.8011058,-0.5618717,1.2000078,-0.39090315,-0.33599466,0.3573631,0.04326578,-0.23953384,-0.06558585,0.67378575,-0.20434299,-0.004692586,-0.832142,0.0788861,-0.012095753,0.32459348,-0.08922239,0.14713345,-0.32804725,0.70912004,-0.21573646,0.4537667,0.29477674,0.18605956,-0.25254568,-0.61395705,0.22411938,0.78092754,0.19007546,0.16723152,-0.16073303,-0.22915119,-0.11710063,-0.043819115,-0.04863809,0.6562088,0.899186,-0.06180663,-0.032456484,0.39857838,-0.23620863,0.08621585,-0.19347951,-0.1992639,-0.06767988,-0.19982842,0.5102319,0.43959954,-0.05822129,0.272227,-0.19620337,0.30869785,-0.09776052,-0.31171086,0.5399744,0.91103935,-0.13463287,-0.17280097,0.6217293,0.44807476,-0.41976082,0.4577448,-0.6589151,-0.26388618,0.51157254,-0.072128944,-0.5201309,0.034407828,-0.37277177,0.24480274,-0.9926548,0.24850713,-0.09403233,-0.27423766,-0.46557614,-0.11935776,-3.391061,0.27629754,-0.21464327,-0.12729293,-0.023015173,-0.11296378,0.425796,-0.43081257,-0.56442314,0.06424549,0.13382936,0.59397244,0.11943304,0.31496456,-0.34983078,-0.022765987,-0.40944293,0.26432416,0.20498927,0.33294785,-0.063559495,-0.32748693,0.1171952,-0.42125705,-0.36487728,0.05374695,-0.52014846,-0.4246684,-0.11279591,-0.4822286,-0.5263806,0.634577,-0.333974,-0.074453436,-0.26642707,-0.1056364,-0.103355266,0.33021268,0.1568638,0.18792282,0.101004094,0.0012269417,-0.41829368,-0.33650583,0.41695154,0.0056000757,0.03488435,0.31188312,-0.08118746,0.17514418,0.41827643,0.6420739,0.031362407,0.661659,0.2997409,0.03468151,0.18866174,-0.21478496,-0.25958434,-0.7144438,-0.3684644,-0.20229062,-0.4386219,-0.51261693,-0.16458052,-0.41092443,-0.6848441,0.45300472,0.017472532,-0.048473537,0.047608327,0.21117888,0.39811435,-0.22090231,0.09255557,-0.10287763,-0.293838,-0.4371771,-0.5028398,-0.73854226,-0.47859663,-0.0440296,1.1490887,0.08850228,-0.22467962,0.08221673,-0.2125581,0.0900316,0.15615489,0.18552552,0.31805903,0.47060373,-0.073700264,-0.7399834,0.48016852,-0.14085811,-0.05050334,-0.49421296,-0.061140757,0.65446866,-0.7803427,0.49922213,0.35448,0.25460014,0.024550326,-0.49334112,-0.3434357,0.057208017,-0.32991478,0.5488265,0.19581749,-0.8111228,0.54347825,0.12627394,-0.18265842,-0.85882765,0.41435987,-0.007966483,-0.26166606,0.14447246,0.3735419,0.10017802,0.018758286,-0.23706862,0.19656035,-0.4789386,0.33335668,0.29463524,0.15368779,0.20682101,-0.20012732,-0.23172377,-0.68793094,-0.15812463,-0.5473948,-0.30278128,0.011532871,-0.010902,0.053253498,0.30960777,0.019477399,0.5677903,-0.23495206,0.19477873,-0.063833624,-0.1436504,0.27293137,0.4378923,0.3250065,-0.43385988,0.6763373,-0.09183297,-0.0024716496,-0.29330504,0.07103374,0.4078329,0.29713246,0.27607667,0.077987336,-0.19425729,0.3267752,0.7449057,0.120092794,0.20927258,0.2922167,-0.21508071,0.62870395,0.13619655,0.052353814,-0.14991468,-0.3872062,-0.20215897,-0.10439415,0.08991165,0.34554484,0.08797489,0.37743157,-0.24515685,-0.14229414,0.038718197,0.14898005,-0.15309744,-1.2372214,0.19356513,0.10445123,0.5889758,0.71147096,-0.12664615,0.045809943,0.4955136,-0.39390162,0.06652651,0.33817157,0.04567136,-0.34758726,0.50977886,-0.44982103,0.40640754,-0.25507018,-0.019260915,0.11531691,0.23417664,0.17427383,0.9464256,-0.115322836,0.17189893,-0.02692854,-0.062121574,0.19371358,-0.20171168,0.00029409726,-0.5377277,-0.30434796,0.52157146,0.409144,0.43028456,-0.21805473,-0.0803469,0.021228075,-0.05816621,0.11850647,-0.060435858,-0.22788183,0.019682396,-0.69426537,-0.38626382,0.5137708,0.11670328,-0.10121267,0.091085106,-0.44824183,0.07283446,-0.2332894,-0.087699875,-0.075569026,-0.8360008,-0.2799674,-0.2836743,-0.3099601,0.304016,-0.49532095,0.21563047,0.2710702,0.12500577,-0.43968967,0.023393568,0.34728736,0.77047336,0.29414636,-0.18926443,-0.2534331,-0.10777907,0.2679946,-0.3744286,-0.07137001,-0.21020408,0.09859344,-0.63643986,0.55256176,-0.14591485,-0.23488545,0.12990305,-0.16692927,0.043388605,0.6065484,-0.20884885,-0.15686846,0.22018607,0.05935177,-0.28723857,0.012115654,-0.38846645,0.20611338,0.010262104,-0.08314959,0.17717728,-0.14519924,-0.07940347,0.5492588,0.17424814,0.26314676,0.274794,-0.021591851,-0.45964247,0.05943521,-0.03183419,0.36747676,0.048516948,-0.14939308,-0.17311811,-0.21390606,-0.044561885,0.384622,-0.056606147,0.035075076,-0.0038954178,-0.4660661,0.70817256,0.24720176,0.94376177,0.11245433,-0.24763387,0.09293128,0.3933563,0.0113349315,0.036265675,-0.45770514,0.78763074,0.55253655,-0.13075767,-0.2333323,-0.288329,-0.069796845,0.072728,-0.24735619,-0.11676058,-0.1341788,-0.73988414,-0.20459214,0.18319622,0.15435365,0.05882012,-0.035337042,0.064933814,-0.10023255,0.123881534,0.5427362,-0.5406968,0.13589005,0.33416566,0.22912768,0.18878593,0.3030739,-0.20572822,0.45204756,-0.5295596,0.09648431,-0.37336445,0.013266404,0.08477804,-0.25470403,0.15945901,0.1741756,0.29090044,-0.17748356,-0.40267697,-0.30011493,0.7342219,0.19519158,0.36521205,0.88798535,-0.25897226,-0.049050268,0.018046143,0.5402719,1.397414,-0.06899228,0.113930956,0.20083085,-0.40544194,-0.5105902,0.19444904,-0.40333694,-0.10137328,-0.028352363,-0.33841762,-0.2541288,0.27031484,0.19217342,0.0016911536,0.14687344,-0.47106597,-0.19019909,0.61390185,-0.21111366,-0.31602713,-0.23590907,0.41514242,0.66273254,-0.28843105,-0.09760632,0.009470335,0.34389526,-0.39807913,-0.5938805,-0.06190612,-0.4131996,0.35198295,0.15996481,-0.26047722,-0.01533702,0.23730367,-0.54675114,0.08691261,0.3523096,-0.37956494,0.040386725,-0.27393532,-0.23224252,1.0105815,0.048747897,-0.064612076,-0.63671434,-0.5404411,-1.1353438,-0.15854983,0.2358767,0.13196914,0.1537152,-0.33228907,-0.19420834,0.01697042,-0.01027772,0.14107679,-0.5311212,0.36336097,0.12201994,0.5692638,0.033425096,-0.8847056,-0.012794344,0.061752852,-0.2988679,-0.3790699,0.6115208,-0.021743003,0.7057543,0.044947673,0.029065708,0.0782754,-0.56143355,0.3619424,-0.34519157,-0.10577468,-0.75071925,0.056920953 +908,0.51283455,0.047634482,-0.7131455,-0.11897061,-0.12860051,0.074475236,-0.22474386,0.56146723,0.23452386,-0.4463816,-0.041753147,-0.10128891,-0.111233145,0.2645516,-0.31196883,-0.34824973,0.10540328,-0.040834047,-0.42324695,0.36747533,-0.35068145,0.22467151,-0.083221845,0.60349256,0.1661358,0.11292644,0.17324565,-0.001290305,0.06050794,-0.44400856,-0.18315794,0.31726906,-0.3242752,0.032092366,-0.17562532,-0.37993324,0.11434808,-0.43287346,-0.26537,-0.6066876,0.25458422,-0.6687658,0.7615228,0.24698,-0.13608856,0.27308428,0.3548117,0.11134944,0.13501887,0.07454113,0.2210113,-0.2649189,0.14173812,-0.3986909,-0.37470883,-0.63868326,-0.47373727,-0.06077514,-0.5773506,-0.39215764,-0.22629458,0.20089792,-0.3874215,-0.18708138,-0.0029757728,0.4227567,-0.38763058,0.21888895,-0.016381817,-0.2802511,0.1579786,-0.6802904,-0.22998919,0.03109648,0.33339527,-0.2635932,-0.14743237,0.0147427805,0.24116787,0.39385584,-0.293565,0.048380807,-0.2570864,-0.27290285,-0.11536252,0.5429872,-0.28533742,-0.4003129,0.049510274,0.18286972,0.34746474,0.43565634,0.15878926,-0.10157513,-0.12770091,0.075500965,-0.24176551,0.7233063,0.5095205,-0.25226822,-0.0827064,0.30052993,0.5075055,0.4622468,-0.17195775,0.097284384,-0.15299183,-0.47061977,-0.08385476,-0.0695085,-0.062127534,0.31170914,0.04729968,0.5891728,0.65147907,-0.14782499,0.06289845,0.13677263,0.031588554,0.07819572,-0.1337574,-0.26594248,0.13665026,-0.37277758,0.32883742,-0.14884157,0.6801576,-0.0032434342,-0.5026613,0.27710548,-0.6187791,-0.15782224,-0.06505411,0.45298517,0.47047156,0.38038597,0.080417864,0.6102822,-0.44818297,0.020821387,-0.0023648413,-0.35903865,-0.039582077,0.05873588,0.01679501,-0.53230315,0.0272677,0.00026741216,0.07710146,0.2584505,0.4369934,-0.60029167,-0.25260058,0.14575268,0.99277824,-0.29111254,-0.09016573,0.64858913,0.9911663,0.6516994,-0.09571788,0.6804848,-0.022260936,-0.13100821,-0.14748031,0.07419971,-0.5769258,0.4112818,0.4933705,-0.6184461,0.29822844,0.13164109,-0.06928653,0.21296786,-0.10895278,-0.18928455,-0.12868512,-0.034910023,0.21036428,-0.31421176,-0.19590741,-0.08859441,0.05376829,-0.07215767,0.31562638,0.095334,-0.43545607,0.38566026,-0.19472513,1.3488567,-0.04120368,0.097012594,0.16078232,0.4834572,0.24378985,0.15223919,0.14467882,0.4415774,0.35613707,0.3423262,-0.48990104,0.28144532,-0.32062533,-0.43523338,-0.09325032,-0.3090341,-0.18829384,0.025634868,-0.3948658,-0.060622696,-0.14612323,-0.15254392,0.30081758,-2.8293397,-0.1916624,-0.13012187,0.34680316,-0.055400718,-0.30028418,-0.18718792,-0.3140477,0.39483443,0.24267823,0.5176524,-0.41662663,0.3935419,0.59689516,-0.41600963,-0.30366996,-0.45458984,0.08676109,-0.077338256,0.13738099,-0.019166114,-0.068526976,0.093388416,0.09606188,0.56539685,-0.13096307,0.062029075,0.3150671,0.6575361,-0.29263103,0.519272,-0.18629263,0.5422563,-0.29041404,-0.22063805,0.4589071,-0.32083416,0.12347825,-0.10579989,0.13138543,0.45327094,-0.20130616,-0.97852135,-0.41394174,0.06350482,1.2811544,-0.16928601,-0.4798145,0.13228188,-0.15827326,-0.46225882,-0.003600008,0.56592184,-0.24514543,0.08357889,-0.67712075,0.053169586,-0.25943312,0.11601847,-0.01631129,-0.037262928,-0.3950063,0.55265135,0.119669676,0.54308516,0.15773025,0.23968115,-0.3661669,-0.29656306,0.05923145,0.7581677,0.4585581,-0.0075240512,-0.15807496,-0.013716126,-0.19072095,0.06572901,0.18158776,0.9131736,0.54980206,0.010082204,0.17702504,0.23431374,0.0762136,0.0070416927,-0.24373315,-0.20146443,-0.18870376,-0.1198704,0.46647042,0.35700098,0.026058467,0.5283956,0.096710704,0.36224923,-0.48998,-0.34615496,0.22766541,0.74504584,-0.3376365,-0.47427896,0.5298987,0.26442796,-0.37519512,0.2839677,-0.74363035,-0.23302117,0.6480686,-0.1082649,-0.68426615,0.17865577,-0.26755235,0.03121055,-0.90857315,0.1357129,-0.388554,-0.51113325,-0.4518752,-0.32761002,-2.7798197,0.1806617,-0.32515794,-0.19089971,-0.42921868,-0.25502253,0.07481848,-0.622733,-0.51901937,-0.01770907,0.15068947,0.6745675,-0.13271374,0.07124997,-0.20693588,-0.46917343,-0.11784779,0.16056672,0.087225825,0.2807941,-0.017237436,-0.2138214,0.09078724,0.124792196,-0.3303653,0.018341897,-0.3069181,-0.3081748,-0.016411625,-0.3831094,-0.165649,0.74163246,-0.41276324,-0.0349744,-0.24935536,0.15204261,0.072585486,0.28565168,0.17322487,0.076526254,-0.0011194755,-0.05395776,0.09052839,-0.46479318,0.34718364,0.018237859,0.3759966,0.35048202,0.044446465,0.07396327,0.37128752,0.33215308,0.09220919,0.71889627,0.042234834,-0.014600348,0.36573964,-0.3346422,-0.36874294,-0.43864918,-0.2857891,0.3054104,-0.4060613,-0.43826172,-0.15454867,-0.26930785,-0.71798706,0.45582467,0.014424768,0.30667531,-0.23357163,0.8180208,0.4866619,-0.20378542,-0.19549274,0.28814223,-0.19267721,-0.49607047,-0.19212666,-0.5099006,-0.43844783,-0.053646628,0.6853162,-0.46196496,0.13342236,0.08624515,0.038347717,0.1523352,0.14093299,0.09831124,0.09640319,0.33713877,-0.27792242,-0.58192897,0.4796838,-0.47690314,-0.237223,-0.66937727,0.049064398,0.68891615,-0.6619256,0.2860864,0.33894718,0.07192401,-0.2519916,-0.60299605,0.06430007,0.15844876,-0.1511818,0.111170575,0.104011804,-0.79070765,0.298481,0.37946108,-0.11503637,-0.44814214,0.68277085,0.055054795,-0.56177175,-0.036292564,0.4783531,0.398721,-0.01607436,-0.17322697,0.12452947,-0.22348183,0.37312773,-0.095791645,-0.062940195,0.39100778,-0.1194099,-0.17853257,-0.61149067,0.21229033,-0.541739,-0.46887735,0.37529954,0.031620957,0.22205152,0.42886078,-0.06465333,0.34921995,-0.54831433,0.2316106,-0.3084466,-0.13242216,0.4243723,0.32583869,0.41961747,-0.38015556,0.54430413,0.12163936,-0.05926472,0.55456024,0.21488124,0.541281,-0.13641006,0.44228113,0.018177388,-0.25324634,0.235076,0.8107164,0.1803048,0.28337535,0.036584094,-0.0666562,0.023560232,0.082640246,0.116339535,-0.14420423,-0.5420859,-0.101855166,-0.26722595,0.07754108,0.67160845,0.09025857,0.16195408,0.037390355,-0.3061526,0.10678756,0.5111659,0.07560952,-0.9011126,0.35760844,0.21107148,0.8740807,0.024877608,0.19378246,0.0287292,0.57502043,-0.09320145,0.0650467,0.24874915,0.20616363,-0.37173396,0.48382246,-0.5554895,0.41368207,-0.08035669,-0.08782404,0.018543793,-0.29788655,0.316815,0.79716486,-0.21865474,0.08019796,0.07616287,-0.25039855,0.10928497,-0.4631028,0.048052963,-0.43824318,-0.19117156,0.61861396,0.624968,0.27075258,-0.28798538,0.02522012,0.07372435,-0.054537967,-0.14212851,-0.037107978,0.18425137,-0.25276476,-0.54444414,-0.054768864,0.4197669,0.3424261,0.115581006,-0.11357973,-0.10246208,0.45413503,0.07582135,0.23822817,-0.09366366,-0.35372284,0.16132511,-0.18968846,-0.69256854,0.30380797,-0.13360526,0.30687082,0.23757623,-0.035148904,0.107384466,0.5791578,0.06548352,0.6431293,-0.12562115,-0.045119047,-0.6116329,0.3074157,0.012577813,-0.1958744,-0.19776407,-0.26843426,0.29193947,-0.45308083,0.25631455,-0.22653985,-0.2751721,-0.10466699,-0.23750392,0.006034133,0.429272,0.0069471356,0.013555896,0.11818163,-0.2931021,-0.2430807,-0.15429169,-0.21173026,0.27020577,-0.11607406,-0.066288285,-0.21573974,-0.14578702,-0.36279377,0.06643884,0.05211751,0.46707714,0.32232654,0.15650398,-0.07697508,-0.067071795,0.069735765,0.6089305,-0.10613739,-0.1437978,-0.111174606,-0.666427,-0.32059553,0.34993237,-0.14102902,0.19492811,0.33830047,-0.10540173,0.66251266,-0.050041724,1.0410101,-0.047402147,-0.22183873,0.07526632,0.6847784,-0.07067729,-0.1759991,-0.22417398,1.1005839,0.5269697,0.08907574,0.009562007,-0.138201,-0.1494479,0.072437115,-0.3647144,-0.07671559,-0.13464083,-0.4794524,-0.30063763,0.19236897,0.24726056,0.15364061,-0.1656137,-0.038290534,0.30175185,-0.025085362,0.19348803,-0.5161434,-0.4353031,0.2697527,0.19884911,-0.31413257,0.07197427,-0.4504997,0.37486008,-0.432771,-0.010443839,-0.5578404,0.19575511,-0.18055469,-0.20676047,0.18733296,-0.1051269,0.2838426,-0.39224595,-0.35604703,-0.0033164432,0.021099104,0.28697166,0.19670819,0.3745897,-0.20830698,-0.04831301,0.002335453,0.50297374,0.8955816,-0.08753792,-0.09027633,0.49313384,-0.4795243,-0.6890368,0.12138243,-0.71708244,0.0974951,-0.09233563,-0.14058413,-0.03422487,0.3594427,0.20292044,0.0711138,-0.18040021,-0.635066,0.015697425,0.24305023,-0.21308881,-0.22274493,-0.3195696,0.06500938,0.66176814,-0.23953246,-0.13121888,-0.1398705,0.5077444,-0.07459924,-0.52493864,0.09352665,-0.22509311,0.3859521,0.12551112,-0.16809629,-0.27291358,-0.071750194,-0.54450876,0.42360276,0.12596464,-0.17192578,0.07461294,-0.21087165,0.10930445,0.49746695,-0.29735693,-0.19950819,-0.3703373,-0.46640882,-0.5915712,-0.24911283,0.12661518,0.036587417,0.037023615,-0.6584862,0.117560655,-0.1500865,-0.27969006,-0.26027158,-0.1942483,0.29408476,-0.06642025,0.6079508,-0.27583605,-1.0407051,0.2708029,-0.08727955,-0.42046747,-0.72331196,0.35736045,-0.07780074,0.60976964,0.036181785,-0.037253466,0.27213967,-0.4525428,0.09687529,-0.39321712,-0.19112045,-0.8668924,-0.01996268 +909,0.70105976,-0.44764593,-0.5987941,-0.21149321,-0.3795922,0.008877954,-0.09324447,0.6122036,0.32256892,-0.53417933,-0.10189365,-0.07333847,0.05454411,0.20599107,-0.18631852,-0.42613462,0.011362025,0.26818708,-0.39883694,0.50197995,-0.25871378,0.11372714,-0.09863361,0.4341022,0.38738114,0.30014727,-0.020112531,0.017402265,-0.27065918,-0.050067756,-0.26643512,0.4055269,-0.19323908,0.15869264,-0.1845874,-0.39918828,-0.11514529,-0.51079184,-0.44401073,-0.81360537,0.28658715,-0.9862047,0.5174957,-0.07169354,-0.38492537,0.11614835,0.022232039,0.30990416,-0.22987089,-0.17133613,0.13021526,-0.100803725,-0.025333464,-0.26099232,-0.14051409,-0.46034107,-0.48177317,-0.08413168,-0.43215698,-0.06623238,-0.20784292,0.1453072,-0.35243702,0.029176397,-0.030972498,0.6590583,-0.41181394,0.17389257,0.17318483,-0.1394724,0.22911476,-0.68920857,-0.22866847,-0.10023613,0.24073291,-0.004072726,-0.3450837,0.26352626,0.344817,0.37308767,0.020039456,-0.12725213,-0.40234852,0.028101739,0.06913103,0.49188253,-0.102278374,-0.5896296,-0.09822942,0.12537217,0.3795474,0.29850173,0.15989934,-0.18256953,-0.074909985,0.0396036,-0.16682294,0.5877713,0.49688697,-0.25712475,-0.0076448363,0.3300362,0.5922331,0.19611652,-0.26729435,-0.0070654578,0.071692295,-0.49154788,-0.09454657,0.11702608,-0.23466794,0.56073016,-0.16759232,0.2473403,0.68284386,-0.19774795,-0.06564604,0.3295299,0.26211292,-0.2678198,-0.3168525,-0.31215337,0.23273836,-0.4981107,0.07951533,-0.16003005,0.73829174,0.07539863,-0.66706973,0.3630959,-0.50350744,0.15289386,-0.24115722,0.38975668,0.73777705,0.5765077,0.2778558,0.6368965,-0.38448796,0.061254047,-0.06987666,-0.38522032,0.02166115,-0.16023263,-0.025559405,-0.6386925,0.063727975,-0.07684677,-0.16138735,0.12190221,0.5652386,-0.60635436,-0.24166144,0.19746824,0.90465075,-0.29572746,-0.195747,0.9291957,0.9848871,0.99045056,-0.017929273,0.9767148,0.2956446,-0.15175162,0.21382876,-0.22684397,-0.5352331,0.33597603,0.3748377,-0.20386791,0.25433105,0.06592618,-0.16616423,0.52393115,-0.21861175,-0.07174766,-0.22437869,0.10756158,0.10872885,-0.10327522,-0.71311885,-0.25085968,-0.21930142,0.038899235,0.07055222,0.26318935,-0.2663376,0.5880187,-0.043573253,1.7342898,-0.016881982,-0.06547742,0.015788937,0.47791713,0.28772303,-0.18759991,0.03125045,0.3314133,0.29199123,0.22186275,-0.4848983,0.1852123,-0.3082004,-0.40508628,-0.14419165,-0.42088142,-0.09111137,-0.07522554,-0.55350256,-0.13954036,-0.13123734,-0.24726336,0.3997434,-2.6573923,-0.2707798,-0.12367307,0.29608414,-0.12958845,-0.45952368,0.060465872,-0.50937027,0.15365145,0.25462034,0.56775707,-0.6762761,0.47060868,0.46853706,-0.6925365,0.023192257,-0.6605355,-0.16716185,-0.058719374,0.3754956,0.02831867,-0.02296351,0.19548659,0.047430165,0.64751685,-0.009259666,0.16569047,0.35083422,0.452591,-0.11603405,0.46389365,-0.019599753,0.53132266,-0.3275234,-0.17760277,0.20352349,-0.2624566,0.19109389,0.08328402,0.17232932,0.674702,-0.34728318,-1.0103045,-0.74090344,0.16556738,1.1070067,-0.14089148,-0.36385494,0.24635959,-0.565211,-0.37297088,-0.08983489,0.37550372,-0.019578686,-0.0048877853,-0.7820601,-0.00989068,-0.038306355,-0.0081239,-0.06692539,-0.19732358,-0.3298213,0.66738033,-0.033770133,0.5581372,0.28283006,0.23968521,-0.2747535,-0.44393235,0.006908422,0.78809375,0.41370863,0.2292148,-0.18489334,-0.14168529,-0.30295506,0.13970253,0.15506856,0.5523071,0.5317458,-0.06057504,0.0740853,0.33078983,0.0059296316,0.055722486,-0.16907117,-0.32775503,-0.21806109,0.05844164,0.48896644,0.7443093,-0.15615596,0.67155886,0.02336063,0.42514896,-0.10116778,-0.5771223,0.46093497,1.0507087,-0.36066452,-0.51764154,0.646335,0.47843435,-0.31846243,0.35289308,-0.5818501,-0.22412793,0.26862678,-0.13779666,-0.43385074,0.21492757,-0.27392864,0.25180453,-0.91691226,0.19675432,-0.23229432,-0.73916924,-0.5726513,-0.10581769,-3.0433772,0.2773752,-0.25698653,-0.27509284,-0.008111919,-0.24696173,0.17475319,-0.8335727,-0.5141624,0.21666281,0.10442763,0.76320016,-0.081802055,0.019738572,-0.21005782,-0.45156422,-0.1290253,0.09854501,-0.00049071066,0.3504551,-0.03218255,-0.48852494,0.012588433,0.04198537,-0.3786192,0.087204285,-0.7590908,-0.5546144,-0.14365983,-0.5626321,-0.33206192,0.64279544,-0.0798947,0.0663782,-0.19983952,0.17998405,-0.098350815,0.21774206,0.0071414975,0.08903899,-0.06281946,-0.116652034,0.21854474,-0.30264708,0.24208973,-0.066130616,0.3385178,0.23053889,-0.1645509,0.2822434,0.7166861,0.7423081,0.00900001,1.0057815,0.47108918,-0.20084277,0.21117862,-0.112191096,-0.45901966,-0.57492054,-0.2925566,0.02445143,-0.47185978,-0.32793778,0.011525835,-0.51235414,-0.8505255,0.6553008,0.06488162,0.3771952,-0.016600074,0.29580072,0.78301907,-0.32583705,-0.06701634,0.0010143305,-0.2057542,-0.65603083,-0.253452,-0.71351236,-0.444546,0.10845315,1.0971335,-0.25484052,0.12699379,0.09707821,-0.29014418,0.049816646,0.19676554,-0.10741605,0.20635632,0.39887312,-0.3811023,-0.6030475,0.36144894,-0.29438215,-0.18220995,-0.5545463,0.34084177,0.51832885,-0.6247858,0.5954982,0.34966087,-0.015550396,-0.40145248,-0.5039,-0.1360536,0.049884327,-0.018081184,0.62753093,0.44338518,-0.77453977,0.34314495,0.3831217,-0.19143096,-0.6183219,0.55162084,-0.06672525,-0.32714272,-0.21577083,0.32197136,0.13688262,-0.05165382,-0.33852562,0.08719604,-0.35863706,0.28369313,0.1743163,-0.09473152,0.106643155,-0.12222055,-0.039721128,-0.84995276,-0.03374773,-0.5436123,-0.26630694,0.3304539,0.08086174,0.31759316,0.12160628,0.032497473,0.3599984,-0.39878058,-0.09048215,-0.14736046,-0.46749657,0.45431975,0.45920613,0.5103633,-0.41564846,0.586542,0.04002889,-0.17118566,0.06132092,0.15810025,0.4355574,0.16920781,0.54831,0.03237158,-0.23063646,0.26212797,0.8571717,0.120169654,0.5809167,0.09898926,-0.087335885,-0.009982944,0.06661113,0.32566968,-0.12154379,-0.5003671,0.10476995,-0.3510378,0.22275604,0.44235873,0.026566137,0.25409442,-0.07505939,-0.43803406,0.05426299,0.16521844,0.17464831,-1.591904,0.38118815,0.2760491,0.93081295,0.25408903,0.04821947,-0.2655438,0.7472319,-0.118553855,0.1551323,0.34824663,-0.048202146,-0.4398198,0.48629752,-0.7549128,0.4662516,0.022728605,-0.0022547778,-0.055330284,-0.124446556,0.41384143,0.76227826,-0.10942244,0.016937701,-0.022299247,-0.46015218,0.21210606,-0.43941587,-0.023678813,-0.62121993,-0.3447695,0.70979226,0.5605851,0.5173248,-0.11435897,-0.052123394,0.082572274,-0.08557343,0.17642964,0.13783209,0.17025805,-0.19433948,-0.7579065,-0.14233616,0.47809023,0.027852535,0.2791514,-0.048141938,-0.19877204,0.29702586,0.010180839,-0.100505695,-0.046272505,-0.63433504,-0.040089916,-0.27034777,-0.6453696,0.5918538,-0.02783801,0.11873263,0.1963092,0.017336708,-0.22027646,0.34763607,0.064401396,0.9042339,0.041397613,-0.033683937,-0.4762659,0.21600683,0.1635553,-0.103868805,-0.0831154,-0.3672202,0.11899739,-0.6441536,0.4772019,0.072287984,-0.43161914,0.00025988903,-0.024358844,0.12645128,0.48873848,-0.2006985,-0.2640708,-0.28540668,0.0008474248,-0.47064143,-0.40039474,-0.018517302,0.32592535,0.17211711,0.00550004,-0.1805106,-0.064165205,0.019176373,0.44179198,0.052087307,0.39635167,0.3632786,0.031060588,-0.21501246,-0.23143502,0.3223516,0.5453562,-0.0428542,-0.20701218,-0.4221006,-0.5342209,-0.36791706,-0.090003364,-0.029864904,0.41768298,0.05555025,-0.0835088,0.8251652,-0.22443677,1.3303651,0.02792895,-0.44520283,0.089944504,0.525737,0.080641784,-0.06790098,-0.28300995,1.022692,0.5596089,-0.042883754,-0.06263553,-0.61622936,-0.05648079,0.24894606,-0.17823736,-0.1043073,0.007937397,-0.6197594,-0.2103472,0.32683453,0.2118858,0.33098173,-0.12033338,0.31793228,0.49735302,-0.0847352,0.18849252,-0.37389213,-0.26883358,0.09066076,0.3167087,0.0011288269,0.14342403,-0.5470541,0.2978081,-0.53138417,0.053078122,-0.35779396,0.27271327,-0.19145839,-0.31000096,0.2362738,0.04330584,0.40232483,-0.36304256,-0.26371044,-0.22401595,0.5912034,0.13711806,-0.039963305,0.50151557,-0.26881438,-0.030015392,0.21367022,0.48314586,0.9038876,-0.19404078,-0.06395735,0.4587486,-0.38675115,-0.70299625,0.38577986,-0.2744262,0.27297214,0.086006165,-0.20409659,-0.5968486,0.3230247,0.20653944,0.00041157645,0.06903238,-0.5441514,0.0064366544,0.28449515,-0.25181785,-0.094419725,-0.3394212,0.16074295,0.3243088,-0.3208768,-0.40296698,0.0022082988,0.2410793,0.01174515,-0.394867,-0.10771586,-0.5054684,0.35006428,-0.018559981,-0.35677978,-0.16139507,-0.19155304,-0.4103155,0.18113258,0.10428897,-0.2952626,0.19090848,-0.2942207,-0.14329657,0.9211711,-0.17077503,0.17380467,-0.69456387,-0.41344187,-0.6661181,-0.36736402,0.25908405,0.091787934,0.0067038834,-0.8552529,0.15167104,-0.023201393,-0.20357665,-0.2008907,-0.3366859,0.49915692,0.061199088,0.38132137,0.0083664525,-0.8711619,0.32200354,-0.011304342,-0.2065413,-0.6613334,0.5664951,-0.096225895,0.88130635,0.09528704,0.25285324,0.2630164,-0.361622,-0.14068678,-0.40205404,-0.27296478,-0.57116944,-0.24637184 +910,0.64875436,0.020265441,-0.28925794,-0.2736715,-0.24582277,0.12999552,-0.31390685,0.38258302,0.012548795,-0.6389298,-0.2467684,-0.17362037,-0.078177914,0.2434144,-0.2011494,-0.9894396,0.24928845,0.241258,-0.28781265,0.4064345,-0.652942,0.48392507,-0.16324168,0.362031,0.080419466,0.08666763,0.27188066,-0.11734977,-0.11475118,-0.25103053,0.07276354,-0.029717756,-0.50627816,0.12754749,0.15364623,-0.38937744,0.21661319,-0.25469717,-0.19284955,-0.7598,0.15569445,-0.7175257,0.6015405,0.107802354,-0.30493498,0.047368314,0.18073137,0.1272687,-0.16133401,0.4056163,0.2058433,-0.073453374,-0.05605261,-0.31782252,-0.13526572,-0.77123886,-0.4884874,0.056646697,-0.25060707,-0.17784339,-0.28068718,0.2644202,-0.22240904,0.041817132,-0.07744014,0.23150858,-0.44827086,-0.17663068,0.06841439,-0.21150248,0.24248838,-0.7589335,-0.32645556,-0.28576887,0.19526687,-0.03372904,-0.15944465,0.1308158,0.42401823,0.59405494,-0.008053752,-0.054514185,-0.090961106,-0.24121363,0.30453035,0.596784,-0.4188407,-0.5795464,-0.2074597,-0.29360807,0.22872931,0.16155003,0.18611544,-0.45260298,0.100293145,-0.014703012,-0.513645,0.23499472,0.60187316,-0.6745501,0.14079127,0.14810498,0.3353391,0.120193966,-0.052869048,0.23861977,-0.028898653,-0.567405,-0.27609587,0.12715451,-0.11377572,0.6045028,-0.19598016,0.040756684,0.41681355,-0.30619627,0.25777242,-0.051334407,-0.0407955,0.16657315,-0.30748823,-0.40155938,0.25739366,-0.36612046,0.0699742,-0.46184114,1.0437105,0.18253864,-0.5182696,0.39191136,-0.50995547,0.12883195,-0.12568791,0.49394864,0.50838816,0.3926495,0.108451515,0.6801067,-0.4095095,-0.11713655,-0.004370146,-0.04606426,-0.040296797,0.057277855,-0.16305314,-0.25157496,0.32998616,0.03614193,0.06558792,0.028519949,0.7146213,-0.3941369,0.069969915,0.2948259,0.86689633,-0.4402961,0.09333205,0.59980613,1.1263257,0.87755054,0.14115237,1.2556707,0.48295277,-0.13529834,-0.016515883,-0.017449535,-0.56515884,0.19423954,0.3991893,0.24743487,-0.016382337,0.20784079,-0.11580992,0.5677176,-0.53544366,0.08332124,-0.28667867,0.556588,0.07283567,-0.1876506,-0.32789218,-0.044429474,0.12836716,-0.15989031,-0.004926269,0.30393416,-0.3904198,0.1381788,0.020138323,1.1292012,-0.076020114,0.16272007,0.04651207,0.4698636,0.26961592,-0.0033727884,0.21526836,0.29534572,0.2864419,-0.13110612,-0.56652635,0.082876086,-0.2008691,-0.66755736,-0.2589852,-0.113365225,-0.0628311,0.20921366,-0.3944837,-0.19434272,0.14745435,-0.16489209,0.43286258,-2.0764062,-0.21922453,-0.18020783,0.36841652,-0.17370412,-0.43791363,-0.011508112,-0.38647667,0.6735396,0.4143345,0.29685482,-0.606869,0.5114929,0.52051425,-0.2571194,-0.17482154,-0.7514312,-0.09011333,-0.010923742,0.3163492,-0.03159132,-0.22931641,-0.20725435,0.22656973,0.54032797,-0.15334703,0.21212648,0.2232618,0.24248382,0.17076054,0.2831245,0.023697706,0.596721,-0.14520049,-0.19973148,0.2676228,-0.4405518,0.0795775,0.018138152,0.16077974,0.21569446,-0.60279995,-0.6935284,-0.9705724,-0.5951085,1.1414701,-0.10721874,-0.49264562,0.29609343,-0.03716207,-0.29012802,-0.042945173,0.41914096,-0.21163265,-0.07589042,-0.7419439,0.08469233,-0.08711782,0.3833962,0.07984397,0.05154862,-0.385634,0.8202535,-0.25033844,0.33514807,0.4710248,0.1977924,-0.28297612,-0.51399,-0.17872326,1.1889087,0.44506022,0.2332142,-0.16397533,-0.109832495,-0.32499593,0.081506014,-0.009710296,0.588161,0.7221542,-0.019445103,-0.0054811183,0.16117099,-0.058719154,0.036835466,-0.11021519,-0.53378737,-0.077892184,0.1074115,0.6534356,0.34067,-0.1902101,0.35151476,-0.23543121,0.36169797,-0.45547214,-0.22722226,0.5015585,0.9391613,-0.15369593,-0.12110991,0.762,0.5039744,-0.36315697,0.45341477,-0.7424136,-0.3440401,0.4272916,-0.1647355,-0.3160846,0.1622598,-0.5183632,0.13342501,-0.87185985,0.5024491,-0.4617604,-0.49696118,-0.6647732,-0.25114867,-3.8428004,0.30723295,-0.07771872,-0.11718849,0.023163516,-0.21318826,0.5653974,-0.40875947,-0.47413668,0.20163567,0.040413138,0.4719784,0.00804246,0.1959394,-0.35742947,-0.26684955,-0.31935266,0.1894481,0.035375245,0.2492592,0.102017,-0.4079947,0.23252527,-0.15246965,-0.24521941,0.092077985,-0.61994755,-0.5367361,-0.15016836,-0.41741973,-0.28256828,0.639993,-0.6967325,0.16121219,-0.40371993,0.022842344,-0.42954063,0.35942462,0.08422398,0.22999851,-0.18683611,-0.14280814,-0.28051788,-0.43521398,0.26567218,0.30932763,0.08884551,0.4161238,-0.12404156,-0.1011157,0.4131524,0.44757998,0.19283986,0.8516234,0.41799226,-0.09565498,0.40714204,-0.35163754,-0.23811802,-0.340857,-0.4520648,-0.19490427,-0.39820564,-0.48569605,-0.1482932,-0.28608662,-0.78273046,0.38907558,-0.119445324,-0.02228989,0.22464758,0.25778422,0.09544758,0.00020925816,-0.032147042,-0.0127468845,-0.01128168,-0.46708542,-0.32727462,-0.65352064,-0.35426432,0.23941776,0.9209181,-0.06670632,-0.012955813,0.19469163,-0.13970013,0.10431829,0.05390667,0.24187732,0.016847987,0.27490354,0.047311697,-0.8149346,0.3099454,-0.043588974,-0.252861,-0.6891309,0.21977851,0.8597812,-0.81442,0.5207586,0.38806745,0.19136246,0.09848487,-0.6032969,-0.36193207,0.13162822,-0.46945733,0.3970717,0.16452214,-0.8819863,0.46022475,0.3820998,0.04395141,-0.7861065,0.52517444,-0.056962784,-0.5107547,0.06835452,0.43072632,0.20023766,0.016526511,-0.24019442,0.3232991,-0.53135306,0.25516975,0.3323654,0.005502647,0.46581003,-0.31165978,-0.22540879,-0.80741763,-0.113411196,-0.6708677,-0.40782115,0.074811384,0.16281031,-0.034102052,0.40085417,0.19528484,0.48394746,-0.3525976,0.23912199,-0.11439563,-0.20151544,0.37521428,0.4273378,0.36959344,-0.26279712,0.6345471,-0.059179123,0.037928298,-0.26930445,0.1758909,0.35697952,0.032676477,0.38295114,-0.11094833,-0.042120613,0.30133474,0.7292923,0.19901496,0.5280952,0.20936564,-0.2074879,0.4248954,0.17380275,0.05131513,0.2213383,-0.45201316,-0.20307149,0.17365725,0.14129163,0.49692738,0.15421651,0.36008006,-0.2123978,-0.30064148,0.030096225,0.22423628,-0.04144354,-0.98485035,0.3066962,-0.028568331,0.66970783,0.8431893,-0.10125283,-0.028917097,0.48291963,-0.25302646,-0.09696604,0.16421655,-0.011989046,-0.36456558,0.3349076,-0.4624926,0.0837713,-0.38587424,0.117274776,-0.029338956,-0.0118460655,0.3792817,0.76933616,-0.006043065,0.14354931,0.12968706,-0.32343307,0.0656103,-0.28149793,-0.026815264,-0.5901937,-0.20707376,0.6524799,0.36145547,0.28279966,-0.29073778,0.013950891,0.09983897,-0.25338206,0.07542395,-0.00037033283,0.008318406,-0.18264112,-0.68478453,-0.43632352,0.6260194,-0.033191103,-0.07036435,0.22325942,-0.41037273,0.22546722,-0.11132686,0.11448535,0.13968505,-0.49641302,-0.005194508,-0.42882076,-0.36240867,0.249171,-0.09471769,0.18302038,0.22061592,0.12729003,-0.17391348,0.31754827,0.32168463,0.6107214,0.11973568,-0.24995266,-0.39478686,0.022486357,0.09220692,-0.22501312,-0.011031169,-0.3024902,0.06397386,-0.8200118,0.4759944,-0.09906112,-0.023668047,0.25018018,-0.12627338,-0.22165808,0.5183491,-0.26924798,-0.01904782,0.40385726,-0.15042713,-0.19898735,0.021058768,-0.22412711,0.21818858,-0.11551973,-0.020826403,-0.037145417,-0.2028798,-0.02227024,0.370647,0.11361347,0.19950086,0.6670016,0.09096129,-0.25447047,-0.17357925,-0.19056822,0.64299804,-0.14181556,0.09395434,0.0056221667,-0.8356333,-0.36101687,0.016426425,-0.26922095,0.15527678,0.08874615,-0.5209909,0.85657,0.21107146,1.212393,-0.04918212,-0.42754757,-0.14274469,0.615448,-0.14936016,0.13233724,-0.49099413,1.0725137,0.65546477,-0.2641671,-0.1286113,-0.24999817,-0.25719863,0.19981828,-0.21238524,-0.14213333,-0.026563952,-0.6795937,-0.3052383,0.08801662,0.33513314,-0.13823552,0.15623412,0.22140187,0.18046738,0.10742945,0.3423562,-0.59336096,0.10167311,0.3030954,0.33265263,-0.0044516004,0.11608637,-0.15974793,0.2585027,-0.7782565,-0.018580753,-0.4987777,0.009945126,-0.08677326,-0.30194905,0.19111712,0.23188779,0.18112113,-0.36855978,-0.1959103,0.010280586,0.6030474,0.035458382,0.23269749,0.54872316,-0.17823216,0.097115725,0.026282083,0.5376241,1.4433757,0.015502008,-0.12829106,0.3258774,-0.5129699,-0.7218271,0.23673582,-0.51587486,-0.021712514,-0.069665894,-0.5115693,-0.5546285,0.40793464,0.26723683,-0.1451858,0.03735608,-0.51770854,-0.24007908,0.3950402,-0.22853248,-0.3855987,-0.17364533,0.31254476,0.74424875,-0.50946605,-0.20560786,-0.14947885,0.45957857,-0.4691637,-0.78858054,-0.02790295,-0.46220785,0.5434219,0.41114756,-0.26603007,-0.10531605,-0.058205064,-0.39876464,-0.12142809,0.24022835,-0.46202967,0.19241406,-0.37898195,-0.037817605,0.75098187,0.061446276,0.06449394,-0.6244366,-0.64128184,-0.91731966,-0.45420885,0.6596838,0.3182873,0.00028245265,-0.51124567,-0.07563556,-0.13548979,-0.025742462,0.15588944,-0.25726277,0.58219254,0.21427168,0.682908,0.042150773,-0.74586225,-0.15757391,0.3058198,-0.30993706,-0.6611383,0.44859555,-0.20885475,1.1170766,0.042739954,-0.050921135,0.08915443,-0.5262651,0.35319504,-0.39160407,-0.32697004,-0.6855649,0.20797484 +911,0.3914947,-0.0005084654,-0.5771539,-0.25257775,-0.40222237,0.20976757,-0.23338595,0.30205795,0.16567424,-0.31136286,-0.07726911,-0.19146772,0.035982337,0.43778342,-0.20043206,-0.5870478,0.09031113,0.20488396,-0.678222,0.39856955,-0.49979246,0.53886235,0.17655651,0.2663946,0.07895973,0.3007885,0.23395139,-0.10817913,-0.12445438,-0.052955467,-0.26836383,0.11312354,-0.52493614,0.11710676,-0.08562342,-0.43130067,0.035653543,-0.2724698,-0.16803366,-0.69406855,0.3366019,-0.6602418,0.57736355,-0.20015483,-0.49504757,0.10106458,0.15025075,0.25339988,-0.41757476,0.09672856,0.15762672,-0.15102205,-0.09748306,0.0011595567,-0.36259568,-0.5238685,-0.5924519,-0.0429519,-0.6477353,-0.017819338,-0.3173913,0.18894199,-0.3240956,0.04256721,-0.12329321,0.19372539,-0.42711818,0.19649439,0.23922096,-0.07875206,0.011579039,-0.50536215,-0.079753235,-0.2293634,0.2344731,-0.023466619,-0.20143175,0.28566712,0.47794074,0.5377721,0.19070567,-0.20572034,-0.24487482,-0.14325891,0.06060748,0.5272857,0.03303099,-0.24318141,-0.30759728,-0.102182284,0.3666162,0.30125856,0.20224431,-0.29866913,-0.1707106,-0.03888126,-0.2637977,0.15173657,0.37175027,-0.41271657,-0.16249938,0.3858249,0.42136872,0.22558804,-0.201057,0.20588785,-0.16605061,-0.58204556,-0.32007405,0.11256678,-0.24281667,0.69904745,-0.3057762,0.16766484,0.79542565,-0.24391419,0.035660505,-0.059381556,-0.0035063506,-0.16235487,-0.19013043,-0.09192327,0.10531025,-0.68874437,-0.0045845984,-0.19316708,0.6236135,0.14133316,-0.68315434,0.2548134,-0.6009051,0.09692596,-0.12718551,0.56691,0.6901178,0.3988478,0.17850733,0.813156,-0.49430105,0.048330713,0.028172426,-0.48107806,0.19059071,-0.0678476,-0.13255493,-0.5577259,0.119573995,0.12936693,0.065603524,0.018709425,0.592558,-0.34867638,-0.038234726,-0.027929159,0.55118966,-0.51123327,-0.20991325,1.0237583,0.8919235,1.0636526,0.07137633,1.5053042,0.3465435,-0.1564538,-0.11792543,-0.18366149,-0.5271233,0.14646251,0.3729502,-0.2292971,0.43636817,0.1377971,0.1176475,0.32734782,-0.18905894,-0.024245998,-0.059933696,0.14402577,-0.08434876,-0.15671875,-0.466138,-0.40220687,0.120071,0.15829442,-0.052964535,0.23200426,-0.17833099,0.5633557,0.28026947,1.4102815,0.06435248,-0.0015101354,-0.02156703,0.23753086,0.28252715,-0.13360843,-0.081116796,0.3710283,0.3524173,-0.113864705,-0.506956,-0.13760084,-0.2747798,-0.5398993,-0.19534983,-0.4398137,-0.13752998,-0.2060589,-0.5469043,-0.111237556,0.025772823,-0.28520334,0.5518405,-2.2506943,-0.2626609,-0.16608879,0.20950325,-0.06733464,-0.42345524,-0.15537481,-0.43555877,0.32524586,0.3490134,0.38276663,-0.72445834,0.46481228,0.33128902,-0.32092476,-0.14416596,-0.6701762,-0.11952656,0.014407042,0.1324378,-0.14468159,-0.1774232,-0.05959632,0.22436514,0.62241787,-0.110159345,0.13306388,0.22119543,0.53612465,-0.07641447,0.4524916,0.21806015,0.610062,-0.057985943,-0.12934473,0.3735949,-0.32214394,0.45883432,-0.021652972,0.19653693,0.49432328,-0.57266563,-0.70675474,-0.5866464,-0.3899601,1.1309572,-0.48108846,-0.28158972,0.25102738,-0.11101626,-0.23046072,0.020469775,0.33052608,-0.11947308,-0.052045025,-0.64146733,0.06302709,-0.080141544,0.08984573,-0.16965084,0.13426492,-0.2638115,0.76659995,-0.15345396,0.41812918,0.41274354,0.18409103,-0.16691443,-0.5335388,0.08489837,0.89661777,0.55916727,0.107933834,-0.26820412,-0.30264091,-0.40592167,-0.22643954,0.2577193,0.36483726,0.8732054,-0.013920593,0.27535996,0.24182446,-0.0654628,0.09260432,-0.10712433,-0.26272377,-0.072529025,0.11060189,0.48917267,0.5432833,-0.21254416,0.41268215,-0.19227234,0.17429802,-0.13299689,-0.6268148,0.5547472,0.9622872,-0.2783838,-0.27974126,0.5849702,0.36158445,-0.35121796,0.47003797,-0.5104875,-0.25682306,0.6423633,0.013464605,-0.28542712,0.18799806,-0.37076157,0.1444643,-1.042979,0.29092818,0.0019960701,-0.4210282,-0.42414722,-0.17376389,-3.4953115,0.24756628,-0.21287753,-0.047143485,-0.26318878,-0.27600744,0.28439635,-0.6298374,-0.7256669,-0.054641984,0.097766735,0.530039,0.03646294,0.102027215,-0.1635416,-0.3089032,-0.2100988,0.071814395,0.12233531,0.32337815,-0.16264063,-0.46046215,0.012448975,-0.32103178,-0.63364714,0.00599985,-0.54887015,-0.53420335,-0.24133264,-0.39395115,-0.24507283,0.7947763,-0.36319974,0.015969245,-0.21968254,-0.046564255,-0.13436551,0.3026098,0.22902784,0.025653223,0.038557988,0.019618355,-0.10748853,-0.31627545,0.1267538,0.09552339,0.22744936,0.42478055,-0.1355968,0.3411559,0.45096868,0.6466733,-0.23956251,0.67178756,0.20724156,-0.11352155,0.33856723,-0.19407521,-0.21296111,-0.7760885,-0.45893785,-0.2723916,-0.4404698,-0.525272,-0.16716225,-0.3483301,-0.7983147,0.4769527,0.07294553,0.12453575,-0.16868898,0.30079448,0.38707057,-0.12361956,-0.0027786712,-0.12314778,-0.39450794,-0.49942806,-0.44483417,-0.8126892,-0.632349,0.30663618,1.2319789,-0.19882815,-0.09497695,0.07090249,-0.31291616,0.13027547,0.12784937,0.09630593,0.124699466,0.29698557,-0.21861567,-0.6475231,0.45552734,0.00028734206,-0.23610254,-0.4894822,-0.040527113,0.6466446,-0.6355232,0.47600496,0.44904187,0.20477766,0.34141642,-0.75442064,-0.17631496,-0.01625703,-0.2368035,0.60802495,0.24973354,-0.632325,0.5640676,0.19753304,-0.1253841,-0.61456066,0.6359082,-0.046026517,-0.035318978,0.029826827,0.42737764,0.13734804,-0.12395992,-0.22888225,0.25535384,-0.66998374,0.34685573,0.46065152,0.025493646,0.32556188,0.021076437,-0.31886834,-0.75421077,-0.040623505,-0.46284917,-0.24550866,-0.029426038,-0.04488889,0.061184302,0.05003725,0.19638087,0.38020632,-0.56132334,0.25624987,-0.044940464,-0.2180263,0.27148667,0.43090808,0.39227265,-0.53976923,0.65019554,0.08736609,0.08439889,-0.19090563,0.14240414,0.5482747,0.2488624,0.4011032,0.0025384664,-0.108263984,0.17002591,0.5705995,0.2500932,0.28265032,0.20947185,-0.35475406,0.23991458,0.29219514,0.26974198,0.054012578,-0.24159305,-0.050353896,0.00064953166,0.12773888,0.5628928,0.11799177,0.293602,-0.009580167,-0.06399769,0.20652732,0.057209358,-0.09745343,-1.0936904,0.32976073,0.39194945,0.6262334,0.5887154,-0.10757581,0.014088909,0.2910071,-0.42949098,0.14650036,0.41266456,0.08269116,-0.4476381,0.55062604,-0.5790157,0.4783668,-0.23796794,-0.018962674,0.16091706,0.13948114,0.4077044,1.0844659,-0.035944246,0.07862579,0.09757759,-0.24926071,0.17955083,-0.36840656,-0.18036233,-0.5020702,-0.22494347,0.7252428,0.25890163,0.31333098,-0.35473812,-0.06448893,0.13923182,-0.26986268,0.08731222,-0.05342593,0.2037606,-0.26318958,-0.522158,-0.42868367,0.51816195,0.044885162,0.18910775,0.20576695,-0.4563374,0.2182203,-0.22592698,0.09524062,-0.014560719,-0.7380827,-0.20935301,-0.4283653,-0.49506015,0.30996996,-0.31612638,0.19349208,0.27181542,0.0016993016,-0.33605126,0.15360206,0.04270015,0.7682063,0.0059494297,-0.14030679,-0.17382526,0.22879656,0.42022997,-0.34935218,-0.010720015,-0.17303154,0.07512269,-0.5840014,0.43364382,-0.2025282,-0.23645042,-0.04036922,-0.19253176,-0.12560397,0.3149575,-0.2340969,-0.10300549,0.06057132,0.10293487,-0.11806286,-0.074131645,-0.32576188,0.2917624,0.09603622,-0.083129644,-0.0028027415,0.020339267,0.05330558,0.31393856,0.0043026805,0.2617151,0.26105767,-0.18886575,-0.5362143,-0.010572311,-0.0026665807,0.30331823,0.08996331,-0.08465083,-0.35953006,-0.30534345,-0.21343999,0.36389032,-0.27656403,0.1333766,0.13576256,-0.3092688,0.9664382,0.22143151,1.2618039,0.067103975,-0.45179042,0.1064637,0.62497455,0.06592298,0.077609636,-0.16655083,1.0095992,0.5194058,-0.24605481,-0.3134455,-0.43697298,-0.1825893,0.323227,-0.29977852,-0.30119297,-0.04607087,-0.627607,-0.2837278,0.140002,0.1412506,0.08599376,-0.05496688,0.018718084,0.24498925,0.008793314,0.51634765,-0.6590354,-0.22825877,0.33263773,0.13346274,-0.023418833,0.2779213,-0.40819073,0.46878484,-0.6749185,0.13255873,-0.31482744,0.22994347,-0.08932856,-0.404928,0.3249246,0.09194905,0.27823868,-0.24543566,-0.40621197,-0.30497476,0.65910244,0.16300695,0.35010856,0.7197922,-0.4550033,0.0001356562,0.05168114,0.38375384,1.2479386,0.002664264,-0.053532466,0.37109518,-0.497666,-0.5617785,0.24958754,-0.46833482,0.06290949,-0.045072135,-0.39382485,-0.42781302,0.38619334,0.13552262,0.04446052,0.17344971,-0.5027557,-0.046630684,0.44712356,-0.28912517,-0.29311022,-0.21757819,0.34437895,0.70695037,-0.4811825,-0.2498634,0.1295701,0.16246456,-0.34319904,-0.58362406,0.033909123,-0.21739888,0.47834143,0.1424224,-0.41253415,0.1382583,0.12159009,-0.34964007,0.13345197,0.4516911,-0.269893,0.1517574,-0.4719928,-0.11280953,1.0876796,0.0231992,0.030779809,-0.52651113,-0.55880445,-0.8929155,-0.3337998,0.36489508,0.1601107,0.006004508,-0.6778744,-0.03430762,-0.028103793,-0.014753413,0.16876765,-0.30885682,0.5091714,0.20451385,0.29498836,0.052587025,-0.829835,-0.021766532,0.09704599,-0.22242394,-0.5279173,0.61370826,-0.21227366,0.70954037,0.291453,0.06790323,0.13437101,-0.64122325,0.37231153,-0.3649422,-0.009998099,-0.588946,0.0040578763 +912,0.23416077,-0.061994188,-0.6554382,-0.12728342,-0.3085221,0.21592313,-0.14307345,0.40491003,0.2570133,-0.28491342,-0.07390972,0.025698157,-0.0043242825,0.49690282,-0.13585685,-0.61502844,0.067196116,0.08697988,-0.3791801,0.35917658,-0.397645,0.3316971,-0.08781651,0.45632565,-0.007273197,0.26948056,0.037197348,0.02100974,-0.06015075,0.12766717,-0.12646806,0.6117268,-0.44014058,0.19178857,0.07188536,-0.30829242,0.019886484,-0.28501213,-0.44145057,-0.59412867,0.38976824,-0.79615176,0.5328122,0.055333808,-0.39458486,0.11724827,0.003273322,0.22805251,-0.3959595,0.048049226,0.21098804,-0.31745183,-0.09336933,-0.21213017,-0.3526669,-0.53703886,-0.57978666,-0.050927408,-0.5585546,-0.11914666,-0.30454746,0.23023854,-0.18819141,0.019595928,-0.22460607,0.17786294,-0.4568211,0.0553088,0.39029628,-0.28202194,0.06900745,-0.38943222,-0.10987818,-0.068087585,0.28204912,-0.045511365,-0.15786067,0.1534017,0.38854307,0.5571235,-0.0443422,-0.26877645,-0.44534147,-0.02987494,0.10124348,0.5076255,-0.11606283,-0.26086167,-0.213039,-0.032249514,0.1889191,0.20216878,-0.06392212,-0.3292996,-0.0082589835,0.016853146,-0.16481942,0.25700128,0.37375128,-0.43881485,-0.20327242,0.48183754,0.4840035,0.16946165,-0.1659643,0.13333711,0.06572035,-0.53277785,-0.21317975,0.05428441,-0.07832551,0.6323831,-0.019544354,0.19675389,0.6950757,0.07760833,-0.11427113,-0.16681267,-0.07456322,-0.039475977,-0.25135633,0.05317233,0.0632791,-0.3020744,0.1771589,-0.032731626,0.5716137,0.102455124,-0.6925612,0.39234585,-0.4631512,0.1096273,-0.11722152,0.5675412,0.7258918,0.39491814,0.14974712,0.91037714,-0.62356275,-0.05318696,-0.0743352,-0.42947575,0.11765324,-0.033569213,-0.009485809,-0.49522063,0.09209268,0.050384063,-0.0758088,0.1326522,0.295523,-0.31981122,0.010023222,0.073884405,0.6348801,-0.43136165,-0.1813897,0.61085737,1.0119764,0.85214204,0.026709804,1.266289,0.30350372,-0.00603508,0.037797105,-0.36347806,-0.57436985,0.132018,0.31649393,0.07418576,0.34171438,0.25090045,0.1389522,0.60846674,-0.07581043,0.061322965,-0.024815917,0.19786717,0.110739775,0.011013682,-0.4181137,-0.21092899,0.1272048,0.24428853,0.015253535,0.13548762,-0.14056522,0.34727895,0.15996996,1.5082917,0.00089673814,0.04721891,0.019087378,0.26769254,0.251432,-0.0643224,-0.18277934,0.27625805,0.34026605,-0.019225027,-0.42997605,0.105135985,-0.21526727,-0.40110344,-0.15633205,-0.22970806,-0.10554393,-0.1907174,-0.6094085,0.043304734,0.051826913,-0.2895115,0.60401255,-2.667966,-0.32324883,-0.20013149,0.32879475,-0.11508478,-0.3723027,-0.33087793,-0.34212697,0.26779526,0.38322374,0.32665217,-0.60132426,0.50922406,0.310533,-0.34561047,-0.11449497,-0.5934629,0.062613435,-0.10766531,0.32470343,0.15571219,-0.13328184,-0.14820778,0.28825933,0.68277466,-0.17765747,-0.10938756,0.21070692,0.50308764,-0.12432386,0.6188487,-0.087173775,0.6201769,-0.18669073,-0.21565653,0.40552637,-0.4180362,0.53016204,0.011552141,0.15936305,0.30465963,-0.29055592,-0.9037496,-0.58107984,-0.32208368,1.2349029,-0.30508846,-0.20717405,0.27776617,-0.38996178,-0.32135957,0.048882768,0.46056944,-0.029340914,0.025934,-0.75567627,-0.016663369,-0.21068665,0.07833391,-0.057930812,0.05681088,-0.26308843,0.72252023,-0.17863351,0.489246,0.5098028,0.13871789,0.085653946,-0.2949905,0.0076664113,0.71924007,0.40605348,0.15167704,-0.2501364,-0.28998896,-0.05784971,-0.03223646,0.12634234,0.57758987,0.47943237,0.035679743,0.07073595,0.26530245,-0.038603928,-0.17882262,-0.22862795,-0.24416715,0.09446711,0.16247836,0.5146334,0.9374541,-0.24485458,0.18688999,-0.16313706,0.11007186,-0.09209363,-0.54349446,0.34709483,0.62628937,-0.10254535,-0.24084865,0.61690557,0.46694726,-0.29967517,0.24786195,-0.5769889,-0.25237718,0.56373715,-0.15732005,-0.34436873,0.118897825,-0.373507,-0.13085721,-0.84228814,0.25209266,0.020144416,-0.5857797,-0.3871329,-0.16346046,-4.3036804,0.18255943,-0.19823432,-0.019740045,0.03139537,-0.072198875,0.35195228,-0.656839,-0.57226,0.12348815,0.087409936,0.39576927,-0.10550495,0.08140759,-0.37078002,-0.13590299,0.121154696,0.25108498,0.06496358,0.26408705,0.092390224,-0.46010223,-0.02217134,-0.40150994,-0.5150561,0.026270907,-0.638753,-0.36546496,-0.05449377,-0.4899264,-0.21078682,0.6853589,-0.5689971,-0.0671547,-0.30823892,0.1286264,-0.3329471,0.31754825,0.08310689,0.19903544,0.11215002,0.031090917,-0.14836748,-0.3489451,0.24159311,0.038412943,0.3055843,0.33440542,-0.09261762,0.17293984,0.68071485,0.62956583,-0.17742588,0.82097405,0.4350643,-0.0687018,0.20701891,-0.18721852,-0.22338563,-0.6665542,-0.53437936,-0.19476032,-0.4722614,-0.39882258,-0.12593627,-0.31250018,-0.79258156,0.44301572,0.065985866,0.0674222,-0.111911625,0.0355435,0.42897135,-0.40988106,0.024873588,-0.06782372,-0.2521032,-0.63137066,-0.49998617,-0.50024533,-0.6644963,0.17022575,1.1412978,-0.22104883,-0.010290593,-0.006796266,-0.34169355,-0.099888764,0.2370488,0.21946353,0.06582865,0.4264486,-0.16754714,-0.6481886,0.29852608,-0.29706222,-0.098511405,-0.606908,-0.08332797,0.63863385,-0.49728018,0.68715954,0.41378725,0.19329016,0.37029237,-0.6012388,-0.4978652,-0.039323248,-0.2046267,0.47974902,0.21829627,-0.702189,0.4230345,0.21349168,-0.21723725,-0.55172104,0.47118613,-0.18348886,-0.13984159,0.062432233,0.3276532,0.094675176,-0.07931498,0.0039004546,0.23033181,-0.3632118,0.31342417,0.34941864,-0.07039731,0.22455853,0.011891956,0.04020581,-0.6959296,-0.2848596,-0.32021955,-0.21968955,0.059991397,-0.016756188,0.06164916,-0.22007516,0.052822452,0.39700133,-0.4412786,0.09778741,-0.066750534,-0.2985172,0.220677,0.5040427,0.3496946,-0.3972022,0.50382245,0.08983498,0.1629584,-0.0553224,0.06512805,0.5088139,0.040757455,0.47072765,-0.20328686,-0.023709297,0.19590065,0.7528331,0.13151175,0.34605753,0.052655533,-0.2580565,0.34299976,0.18221428,0.10404645,-0.15216161,-0.27073333,0.19989647,-0.2512603,0.26217258,0.4807739,0.23877338,0.40998003,-0.14574978,-0.2268348,0.23038483,0.17833886,0.068407565,-1.0196689,0.31504232,0.1873158,0.6922217,0.3476944,0.1472722,0.101921946,0.48983324,-0.32169276,0.00059135375,0.49664184,-0.10536324,-0.51510173,0.43040422,-0.65574116,0.41456133,-0.18049134,-0.056296356,0.3233444,0.27779165,0.33626688,0.75769264,-0.058435135,0.00064635504,0.025428824,-0.2637782,-0.06258564,-0.30479577,0.05541298,-0.60635304,-0.3483463,0.5757536,0.77826256,0.40908575,-0.31238258,-0.106623724,0.096618846,-0.053278677,0.05257904,-0.24329111,-0.033140328,-0.07157768,-0.7076928,-0.123810135,0.5275551,0.11472754,0.022375057,-0.07747905,-0.38895658,0.37922928,-0.2416688,-0.12837254,-0.068400875,-0.54938984,-0.09431909,-0.4104461,-0.6510181,0.4127621,-0.38677725,0.32486093,0.19934297,-0.051687654,-0.21094571,0.39628527,-0.0635352,0.99682677,0.10163069,-0.09461068,-0.38753197,0.0627276,0.34735993,-0.1972507,-0.07809133,-0.42361477,0.17092143,-0.50944686,0.30536577,-0.19326662,-0.16208257,0.09259084,-0.24047214,0.17668507,0.5273982,-0.2016322,-0.287472,0.09856244,-0.0146792,-0.27558568,-0.12876667,-0.42779046,0.2823306,-0.13377512,-0.044913907,0.07433252,-0.15623449,-0.10701743,0.19756967,0.17965858,0.19505641,0.3065468,-0.07987707,-0.1782498,0.00018487527,0.050394434,0.50151324,0.14603385,-0.23952958,-0.31698152,-0.41828534,-0.3422858,0.15323125,-0.12710457,0.23186272,0.09229764,-0.27422264,0.7503681,0.16503301,1.2338084,0.2130271,-0.38302964,0.099608816,0.57002056,0.1617155,0.22167921,-0.40657595,0.73776776,0.5555904,-0.120755665,-0.18400048,-0.36240742,-0.14002272,0.13715225,-0.22350408,-0.17040403,-0.066885516,-0.9020503,-0.14731632,0.24708962,0.14070305,0.33300972,0.0104581695,-0.04531368,0.022451542,0.19707553,0.4124913,-0.41057572,-0.12367351,0.38440785,0.37879795,-0.058168486,0.11557121,-0.35870346,0.48152557,-0.53081393,0.040193934,-0.65759873,0.14280826,-0.25836352,-0.18824312,0.17962739,-0.124017246,0.31268597,-0.28937557,-0.25703523,-0.20604119,0.62282246,0.20960167,0.14399998,0.7185996,-0.2626796,-0.28355244,0.08400054,0.50197136,1.005606,-0.48863345,0.12265457,0.5172376,-0.165788,-0.5127968,0.09189104,-0.40118077,0.16844012,-0.080769815,-0.4090546,-0.44455698,0.3507468,-0.015753087,-0.04423555,0.046933915,-0.37990695,0.018167239,0.39686728,-0.2986892,-0.17079121,-0.17369798,0.19440658,0.6273129,-0.39525527,-0.5900025,0.14749435,0.3667625,-0.16308476,-0.49222836,0.1465557,-0.25248465,0.31318313,0.24532166,-0.4216612,-0.08052562,0.2854405,-0.3600613,0.014528362,0.35956976,-0.3505581,0.102593936,-0.30611253,-0.0005434476,1.238854,-0.08868311,0.3014645,-0.6584301,-0.43433028,-0.9344255,-0.2444395,0.3068226,0.17294192,-0.18145816,-0.40238905,-0.07073482,-0.012190869,-0.16167568,-0.042876557,-0.49821413,0.4527663,0.08390299,0.4446355,-0.14259219,-0.7973652,-0.13213243,0.1290036,-0.28010258,-0.39697793,0.57089525,-0.21352936,0.80295664,-0.08284115,0.12463506,0.16881102,-0.5076547,0.20398079,-0.3096774,-0.047304712,-0.7740256,-0.0947281 +913,0.5461697,-0.15191945,-0.5140974,-0.18947887,-0.2358374,-0.051792305,-0.15176493,0.62085044,0.39061993,-0.38488752,-0.021052549,0.007456714,0.01906894,0.23744065,-0.081969246,-0.53257805,-0.043971382,0.052260593,-0.47088286,0.48586324,-0.4190933,0.12029708,-0.047257744,0.52299356,0.28220555,0.28149813,0.03661823,0.098413564,0.23432606,-0.15512332,-0.08625349,0.19021635,-0.50326204,0.17732236,-0.12661804,-0.28823474,-0.14155747,-0.44529203,-0.4649225,-0.7172491,0.29950804,-0.74528384,0.46637636,0.17135069,-0.34924918,0.10462556,0.041136026,0.32005203,-0.2605708,-0.043415498,0.12352231,0.09476403,0.11199827,-0.13489762,-0.10735448,-0.4117439,-0.6223746,-0.06527054,-0.39223406,0.05730902,-0.053328015,0.1352846,-0.26654708,0.0096192015,-0.24377137,0.53330874,-0.32182008,-0.13864955,0.30854586,-0.14902434,0.34337202,-0.48970816,-0.07448661,-0.12736157,0.062570095,-0.0042408826,-0.39814222,0.29409835,0.11692055,0.49464607,-0.11393342,-0.20465198,-0.12523694,-0.02784944,-0.09059321,0.36941057,-0.30369663,-0.41102278,-0.24077779,0.059989236,0.2898923,0.1468236,0.17611718,-0.2004283,-0.07834457,-0.103254505,-0.19257379,0.5082581,0.56430036,-0.32053417,-0.024617994,0.32508028,0.58432823,0.20293792,-0.18799977,0.19258973,0.06964709,-0.5868543,-0.19308145,0.048898693,-0.24369924,0.47107786,-0.2135817,0.18405746,0.6104965,-0.08703486,-0.116206504,0.15291448,0.108599626,-0.20389311,-0.37266174,-0.35514438,0.29539934,-0.5391223,0.17228974,-0.20086288,0.6664961,0.024930593,-0.6886072,0.27549997,-0.43896154,0.15972966,-0.0615365,0.5807535,0.8858525,0.4630215,0.27573863,0.7342965,-0.44870573,0.08481819,-0.18574017,-0.29605535,0.24048139,-0.037230413,0.02175167,-0.5188839,-0.101093024,0.09606234,-0.21215786,0.084993824,0.41114953,-0.51670164,-0.16963911,0.21914326,0.7206909,-0.27150154,-0.11983574,0.7176627,1.1126832,1.0950882,0.07732142,0.74940175,0.168423,-0.1694055,0.13320763,-0.138935,-0.716327,0.29659516,0.29802597,0.119331904,0.38679287,0.037798747,-0.05304002,0.43569374,-0.40348127,0.004632303,-0.10308352,0.28681216,-0.12298846,-0.1005425,-0.4159118,-0.28571433,-0.06810286,0.2008291,0.057286687,0.3042958,-0.19283281,0.46554857,0.124048166,1.3643512,-0.0582193,0.034956537,0.14798598,0.547535,0.23170558,-0.39248177,-0.075658955,0.18003792,0.56165135,0.19511957,-0.53911805,0.046996344,-0.16545086,-0.35951653,-0.008861291,-0.27001145,0.04056486,-0.20954087,-0.5084266,-0.19173342,-0.086771816,-0.2687902,0.32106268,-2.9839926,-0.0478919,-0.09119473,0.24813756,-0.12226309,-0.30229935,-0.0866749,-0.5602287,0.31873074,0.39056966,0.37648267,-0.75637335,0.41915867,0.41450822,-0.5179175,0.22498445,-0.7354376,-0.121119455,-0.06378093,0.33373216,0.22456817,0.1490543,0.047347236,0.41745123,0.49926618,0.06903503,0.15491441,0.15714592,0.29708233,-0.033470247,0.3947448,-0.0050365687,0.3713586,-0.22805697,-0.15421107,0.33745518,-0.40729484,0.03008001,-0.27151337,0.06531737,0.4897855,-0.406711,-0.82357603,-0.5520018,-0.018765355,1.188503,-0.2336962,-0.4481516,0.18782537,-0.5151275,-0.31980115,0.02327659,0.47853968,-0.28054518,-0.13172899,-0.7969318,-0.017465984,-0.27756616,0.1361346,-0.09607395,-0.16239962,-0.38076115,0.66708773,-0.04682361,0.52472097,0.2930422,0.11580326,-0.25528643,-0.5694904,0.08121841,0.77395535,0.416824,0.094218105,-0.2431405,-0.100486,-0.29613608,0.26101887,0.24503393,0.6847514,0.8198745,-0.1467784,0.23658866,0.4467802,-0.022035237,-0.04753947,-0.10021539,-0.29455474,-0.112656325,0.041141577,0.6760312,0.8082898,0.0047622123,0.27016357,-0.11464167,0.29416484,-0.19908592,-0.5589798,0.44827923,0.8135975,-0.09833015,-0.33809033,0.664107,0.5298982,-0.06171549,0.46668246,-0.57770103,-0.3644663,0.19692558,-0.046942737,-0.23618223,0.23768473,-0.37765697,0.2776355,-0.7544497,0.17998126,-0.24249245,-0.6455626,-0.6437895,-0.17574221,-2.9849477,0.27745253,-0.23149848,-0.20343456,-0.06591799,-0.19937316,0.37372166,-0.6027105,-0.5608822,0.12563911,0.12724322,0.71910274,-0.047306027,-0.029238295,-0.24044566,-0.27477008,-0.31792918,0.037640683,0.27531275,0.30965558,0.084317684,-0.47069508,-0.1396746,-0.22748362,-0.33697775,-0.01314273,-0.5784855,-0.47296908,-0.12134685,-0.5940802,-0.28482345,0.61677945,-0.11183548,0.11541703,-0.2616104,-0.051439404,0.034615453,0.28167227,0.01739512,0.041861605,-0.09422293,-0.0015963119,0.04761599,-0.22944307,0.17422818,0.009167449,0.27922556,0.20820658,-0.14403374,0.11654483,0.54586196,0.66590023,-0.14804384,0.8189526,0.56271374,-0.12646647,0.23310633,-0.06626304,-0.21385437,-0.4688235,-0.29078844,0.016380815,-0.42633644,-0.31368592,-0.054191317,-0.4048252,-0.8162417,0.45019862,0.01320254,0.32883435,0.019130968,0.12972671,0.5238944,-0.013098885,0.00054690044,-0.0076106032,-0.19680697,-0.4887823,-0.2553046,-0.7105988,-0.3007794,0.20136467,1.1025233,-0.2160622,0.0444301,0.09081017,-0.2756609,0.04799215,0.1714504,-0.117581464,0.1094624,0.4072205,-0.20865259,-0.5620556,0.29847756,-0.16345319,-0.1976557,-0.51067454,0.10021059,0.60345244,-0.6713569,0.5670597,0.21629328,0.109667875,-0.32925686,-0.68543684,-0.16641411,-0.018563956,-0.29792678,0.58666766,0.30320606,-0.7533375,0.500527,0.19753443,-0.20036982,-0.5813536,0.5942206,-0.06458602,-0.26917467,-0.23065908,0.27973473,-0.0889324,0.040839028,-0.15949298,0.20839046,-0.28597823,0.16410042,0.20290604,-0.11857471,0.16615249,-0.12815024,0.1286224,-0.59466624,-0.15720204,-0.71337545,-0.37864876,0.21087751,-0.054317586,0.21425529,0.03152496,-0.09485587,0.37083167,-0.24890079,0.1860947,-0.13594641,-0.3074545,0.41586855,0.48874733,0.45351237,-0.35563153,0.66399944,0.12998387,-0.030546643,-0.08118699,0.14691636,0.34810767,-0.04518243,0.41010875,-0.15275885,-0.17827506,0.31470266,0.8195478,0.17559026,0.3194481,-0.08895986,-0.041978635,0.105288,0.019656528,0.23331761,-0.088323444,-0.4765565,-0.08052858,-0.31991467,0.15113595,0.38556436,0.07864834,0.28456464,-0.03542041,-0.30878717,0.053488564,0.08398811,-0.011932389,-1.5895138,0.34762046,0.290022,0.72537774,0.5682392,0.0076915105,-0.18728223,0.6746553,-0.25555325,0.12111558,0.36303428,0.14695594,-0.39951465,0.490864,-0.68068326,0.56723,-0.0053238473,-0.006915214,-0.14494221,-0.06341433,0.4510717,0.7620413,-0.16377974,0.1591265,0.0067848503,-0.25190467,0.07640519,-0.33051687,0.037408534,-0.69855195,-0.30116028,0.6649892,0.473988,0.5032396,-0.09779151,-0.090350404,0.089822784,-0.09223119,-0.0043720445,-0.08035647,-0.05814799,-0.1825718,-0.6685166,-0.26852486,0.43279248,-0.03208723,0.061585806,0.06448696,-0.16305253,0.12949483,-0.021673806,-0.040089615,-0.12075604,-0.6777219,-0.09076259,-0.28690025,-0.23812298,0.60563487,-0.3782791,0.18780512,0.23074862,0.14171857,-0.18617351,0.054215178,-0.029550398,0.7588137,-0.07766433,-0.12729253,-0.42126766,0.17923437,0.1884158,-0.15410659,-0.27870834,-0.3356207,0.09975152,-0.57211655,0.30378526,0.027265104,-0.30319482,0.13100106,-0.13078122,0.0894626,0.4687537,-0.12406371,-0.22901174,-0.012921095,-0.06659362,-0.23648925,-0.20893249,-0.15459304,0.3626427,0.09691081,-0.0101031745,0.02955673,-0.078589104,-0.018674692,0.30131328,0.1925568,0.29101536,0.36985353,0.0135580385,-0.40229687,0.028004888,0.22917925,0.5623917,0.05845158,-0.2527799,-0.34953907,-0.46141407,-0.36201292,0.11713273,-0.0115176635,0.3934656,-0.013256271,0.015638147,0.8167068,0.03965881,1.1002787,-0.028019099,-0.44634208,-0.009166143,0.4521879,-0.053998265,0.007638291,-0.2998129,0.91360813,0.46300173,-0.20192862,-0.16062933,-0.3993337,0.105019145,0.16923085,-0.1257182,-0.2208269,-0.105788745,-0.63454694,0.02402544,0.32696092,0.26360562,0.31565654,-0.049990334,0.03533645,0.21795647,-0.0781645,0.32739064,-0.45792967,-0.008119106,0.19453113,0.19281273,0.08989143,0.08978045,-0.41191167,0.2632028,-0.528426,0.0805056,-0.25072697,0.16261435,-0.12162067,-0.42119226,0.23368265,-0.14648557,0.3930875,-0.45288196,-0.3255969,-0.17087327,0.59543324,0.12031088,0.20172651,0.5764755,-0.31446058,0.04293289,0.04649327,0.44334584,0.92600334,-0.22203176,-0.012721514,0.3541242,-0.27665812,-0.7340645,0.17781143,-0.26418775,0.27330187,0.018728307,-0.26817957,-0.41293296,0.32797006,0.12928452,0.041309293,0.10371711,-0.6240647,-0.1529554,0.27177116,-0.14196669,-0.31994587,-0.3877656,0.16468695,0.42312005,-0.24948142,-0.39454424,0.07301654,0.32169622,-0.0495797,-0.533247,-0.062057387,-0.3767533,0.2859914,0.17925933,-0.29454195,-0.07493493,-0.09938048,-0.40678832,0.18292229,0.22429164,-0.24451932,0.12538293,-0.294115,-0.09597182,0.8558966,-0.20725252,0.10897642,-0.52474946,-0.40564117,-0.6957699,-0.31047317,0.30402228,0.07826466,0.0020406723,-0.7552049,-0.07433078,-0.07947232,-0.032458283,-0.11634214,-0.21879418,0.599448,0.14488348,0.3131708,0.068676315,-0.7849358,0.23831207,0.09122174,-0.11496596,-0.4887461,0.53063214,0.03360359,0.73469555,0.1447256,0.22481711,0.1470408,-0.5023841,0.1290802,-0.22877616,-0.18585502,-0.6613239,0.09506822 +914,0.13668847,-0.17989771,-0.58713263,0.046026066,-0.10506734,0.15121935,-0.4686609,0.256594,0.22621158,-0.47113067,0.17879318,0.07953688,-0.122851305,0.296719,-0.14236388,-0.7636864,-0.093925826,0.17359349,-0.5121006,0.8175077,-0.4602442,0.1784814,0.009538559,0.3273111,0.032202993,0.14075328,0.15653795,-0.19264592,-0.30570185,-0.12867962,-0.019632697,0.29812258,-0.26890624,0.43326774,0.05834198,-0.23175937,0.12403552,-0.27862334,-0.34626076,-0.81650835,0.26607463,-0.67252505,0.5290577,-0.026641242,-0.32141164,0.22345735,0.308187,0.22430651,-0.09905648,-0.16434506,0.1598302,-0.47114384,-0.6822542,-0.4604651,-0.31414744,-0.6143387,-0.63089085,-0.10183419,-0.64785725,-0.0305143,-0.2119469,0.38248938,-0.35948026,0.017521627,-0.24501108,0.55686474,-0.46466783,-0.06442742,0.11830531,-0.23186061,0.10792998,-0.85810983,-0.1753326,-0.020039538,0.1459125,0.36795843,-0.13023211,0.17426807,0.20873639,0.41981637,0.13585247,-0.3205214,-0.51937294,-0.23178719,0.35809025,0.38859436,-0.26240692,-0.2393786,-0.1845203,-0.123658724,0.29758203,0.14691976,-0.0726543,-0.2769875,0.09831648,-0.085032925,-0.36736166,0.27211335,0.51789945,-0.39390054,0.056067623,0.37591383,0.38792646,0.22082582,-0.33369943,-0.050485298,-0.119145185,-0.48003414,-0.05623734,0.16204812,-0.117578655,0.5046533,-0.1153221,0.29023033,0.35240218,0.04178917,-0.26188308,-0.058846857,0.10284298,0.18246533,-0.2044805,-0.14240237,0.23563954,-0.4362152,0.04974673,-0.36227593,0.71865475,-0.215007,-0.6213007,0.510558,-0.38318747,0.039814793,0.12574531,0.76315665,0.7113819,0.70048344,0.12740313,0.97260326,-0.430799,0.05139478,-0.21655843,-0.22576526,0.19428633,-0.030860106,0.37928993,-0.45524538,0.2358895,-0.08916196,0.008883478,-0.119774394,0.799536,-0.33811328,-0.16287269,0.05799313,0.76297176,-0.2923781,-0.11431912,0.6889748,1.1933255,1.0086765,0.16125153,1.1405078,0.35818723,-0.21261175,-0.3252037,-0.18140276,-0.8154119,0.3080721,0.22896744,0.22918595,0.16859528,0.13264778,-0.002684914,0.67842925,-0.1898982,-0.16768496,-0.20898408,0.40075538,0.006906129,-0.034128897,-0.45803085,-0.20264465,0.27630913,-0.12862046,0.4446063,0.28234065,-0.24285914,0.6445445,0.103626475,1.3787643,-0.32670376,0.1584498,0.16653281,0.24567956,0.18467301,0.12107185,-0.0023372374,0.38171107,0.32736397,-0.062055953,-0.6801281,0.13565212,-0.29361543,-0.54769444,-0.15181574,-0.2046834,-0.1226448,-0.12697722,-0.11639782,-0.356208,0.09379576,-0.47237697,0.20895617,-2.7904017,-0.15927908,-0.11274739,0.07944024,-0.0823362,-0.27524948,-0.089983515,-0.4221149,0.7070947,0.233751,0.46142638,-0.38687786,0.39687645,0.5737963,-0.5858257,-0.18720675,-0.7185346,-0.14601663,-0.17720453,0.56285894,0.022714991,-0.4382156,-0.15892312,0.03036026,0.6471894,-0.15234993,0.17036834,0.432325,0.3734957,-0.108610205,0.363599,-0.051533993,0.6934113,-0.30507186,-0.21374395,0.27875048,-0.36437193,0.38486364,-0.30803522,0.1823561,0.45627645,-0.2640185,-0.5988597,-0.35814413,0.074338004,1.2427298,-0.3926946,-0.66498506,-0.01272426,-0.22880028,-0.18384083,0.21616863,0.5181663,-0.12491916,-0.09147132,-0.67531896,0.011748176,-0.019060062,0.34763166,-0.092941694,0.20474546,-0.51223195,0.6564833,0.040166378,0.65441126,0.54424757,0.25652507,-0.38039196,-0.281139,0.041502394,0.822297,0.21763127,0.13998762,-0.3197091,-0.25193548,0.0051693367,-0.161155,-0.13889006,0.6022567,0.5574207,0.036419347,-0.027026312,0.33570635,-0.36383507,0.031162241,-0.2212082,-0.46103546,-0.27291805,0.15262106,0.50710434,0.56539,0.10194295,0.5302107,0.06854482,0.43027642,-0.21371344,-0.4713958,0.58792007,0.6467567,-0.35297972,-0.19335519,0.69298923,0.51771843,-0.14913127,0.54907125,-0.56301886,-0.38932434,0.39191964,-0.13580321,-0.44031417,0.15538679,-0.44984198,0.080954,-0.8997068,0.052190945,-0.44243973,-0.64162135,-0.8621801,-0.059287097,-3.1782975,0.07161224,-0.22901653,-0.095620565,-0.21305138,-0.10810934,0.21054904,-0.4600921,-0.5464931,0.09253058,0.36516184,0.2628915,-0.19779088,-0.17527731,-0.46714354,-0.18825099,-0.0875879,0.32049134,-0.027810883,0.13632053,-0.13204607,-0.5067489,0.14765443,-0.43516314,-0.14436378,-0.09450455,-0.5279697,-0.16831708,-0.011039012,-0.52110904,-0.370238,0.7165699,-0.6523548,-0.033886813,-0.48380405,0.22961777,0.17982458,0.2618726,-0.13379475,0.23388356,0.25600523,-0.19498524,-0.015456214,-0.24782069,0.14835948,-0.03944164,0.17011306,0.5497707,0.13379437,0.053462245,0.57140106,0.7010324,0.040486313,1.0871545,0.48349607,-0.16576959,0.2205682,-0.3105572,-0.10186366,-0.5749717,-0.12553647,-0.021311196,-0.4697246,-0.4568443,-0.07216811,-0.3188572,-0.78346455,0.70564216,0.19052924,0.060011305,-0.02822119,0.4720654,0.32758448,-0.11924016,0.06880255,-0.21416205,-0.15899302,-0.4425925,-0.40663078,-0.8632754,-0.49315643,-0.066958375,1.0152367,-0.2500396,-0.15294717,0.1677037,-0.47818425,-0.10118217,0.31284252,0.24554788,0.25630924,0.3192032,0.2765985,-0.7231188,0.47676343,-0.13724521,0.09708175,-0.51498795,0.22849727,0.6718419,-0.7252098,0.47490147,0.5136372,0.097316876,-0.10869738,-0.8023061,-0.22612807,0.2966758,-0.15277979,0.5336853,0.35840452,-0.69946617,0.75373256,0.317445,-0.18211725,-0.91142815,0.18022561,-0.24954152,-0.11698271,-0.007629688,0.51956207,0.11979438,0.23486987,-0.24779285,0.07576838,-0.480911,0.2832902,0.0076001287,-0.13961837,0.30563143,-0.20307428,-0.13041945,-0.8648077,-0.028010666,-0.47679046,-0.21245167,0.39835614,0.0951254,0.20194568,0.06639142,0.15691456,0.4170162,-0.3291468,0.12888172,-0.16799265,-0.2133785,0.35578114,0.55817217,0.2192029,-0.44867098,0.57618296,-0.11794118,-0.0020941955,-0.16431867,-0.05002649,0.39583635,0.19710436,0.5130371,-0.12058388,-0.048879977,0.20135999,0.983978,0.18978526,0.367615,0.05745451,-0.27954346,0.34113625,-0.062199276,0.13144125,0.015956145,-0.4111575,-0.18985325,-0.20179392,0.27092797,0.5160352,0.20419621,0.6564777,-0.11103185,-0.15256865,-0.047252174,0.14945203,0.15029833,-0.8095474,0.646011,0.14738041,0.6331471,0.5654944,0.22424911,0.08277651,0.69101685,-0.3820412,0.017011601,0.40886974,0.009125965,-0.2900334,0.5880751,-0.84864175,0.10979306,-0.1968921,0.1457545,0.22857645,0.07674168,0.48502022,0.9435317,-0.12618347,0.14834413,0.012170909,-0.23228787,0.13469918,-0.2057226,0.04454114,-0.15161976,-0.4177813,0.52020675,0.35478672,0.45856702,-0.21343888,-0.010246956,0.33077666,-0.075770006,0.3971397,-0.026975665,-0.008398359,-0.1354354,-0.50573236,-0.20803292,0.54308885,0.13718241,0.14206077,0.016443707,-0.21617801,0.46513602,-0.08554653,-0.25340578,-0.0072982437,-0.47413766,0.24263987,-0.15159687,-0.77027345,0.57766,-0.17750388,0.07978906,0.06391208,0.12925996,-0.28454548,0.1396669,0.005703651,0.77949595,0.06675622,-0.13281962,-0.07162829,-0.3194559,0.11739823,-0.23141888,-0.05743124,-0.19398744,0.31077605,-0.76267093,0.45133755,-0.5278472,-0.36282822,0.03360692,-0.2845084,-0.013414552,0.46486458,-0.36825892,-0.1633343,-0.017899577,-0.05459597,-0.19207767,-0.42278856,-0.38567093,-0.0054669483,-0.3499524,-0.025618961,-0.24345867,-0.15252744,-0.2627767,0.36102295,0.09168245,0.08345831,0.3176101,0.18768404,-0.4141159,-0.059695456,0.27962226,0.53499615,-0.07730515,-0.11539796,-0.29531804,-0.28107485,-0.38784328,0.31291822,-0.007178687,0.30471706,0.08656942,-0.5620223,0.85639614,-0.07589729,1.0895038,-0.010903358,-0.52147555,0.07565439,0.6078365,-0.018904746,0.19377872,-0.37751293,0.77612936,0.6009358,-0.07670903,0.021423506,-0.8443073,0.0003815431,0.4636169,-0.33685017,-0.05290321,-0.09213103,-0.69670653,-0.21141627,0.30899176,0.24174072,0.053828325,-0.12504338,0.040979378,-0.025342405,0.46862978,0.2255492,-0.46233404,0.107263215,0.47819236,0.09405173,-0.039167065,0.2023263,-0.2811448,0.24291672,-0.6439724,0.2254246,-0.463731,-0.0056043174,-0.10706313,-0.036929015,0.34635514,-0.026890341,0.16422628,-0.16147563,-0.3751752,-0.023549424,0.4355005,0.2647319,0.26341724,0.7712288,-0.22987741,0.085391134,0.1447522,0.6142541,1.1159263,-0.45588526,-0.058978003,0.15790811,-0.23820662,-0.7952777,0.14584936,-0.3452934,-0.05965381,0.0629566,-0.49081084,-0.58613116,0.13342835,0.068616375,-0.09812207,-0.014019717,-0.36416614,-0.1541854,0.2584561,-0.26258183,-0.10727252,-0.12552814,0.022350889,0.70750934,-0.33761984,-0.4920136,-0.10257328,0.3942943,-0.33407694,-0.55384606,0.17861396,-0.44310564,0.4155729,0.37647772,-0.31522462,0.021521516,0.21110035,-0.6778028,0.09463457,0.40638527,-0.29434225,-0.08365197,-0.32402003,0.2461477,0.816837,-0.17577018,0.17601317,-0.4689485,-0.5538466,-0.7708477,-0.2762679,0.059880022,0.0038648753,-0.115582906,-0.55487293,0.02294296,-0.37618065,-0.09786166,0.04336029,-0.7307719,0.45372418,0.06651092,0.44774157,-0.27516717,-0.939677,0.10441962,0.18755385,-0.05401065,-0.32198018,0.47676805,-0.23114412,0.8875951,0.04987057,0.18125857,0.22868927,-0.61642545,0.3597759,-0.3938328,-0.353226,-0.72849625,-0.03471787 +915,0.39643207,-0.3875062,-0.5192781,-0.20888318,-0.15103935,0.019602988,-0.3258447,0.120155096,-0.01610707,-0.4493707,-0.34883448,0.004969222,0.022736957,0.45291233,-0.052198105,-0.7104629,-0.11431079,0.12463808,-0.75277215,0.5170477,-0.5402446,0.33473036,0.32679367,0.31409952,0.07300084,0.35289827,0.41220075,-0.2384266,-0.16668122,-0.048200764,-0.08006018,-0.0056625134,-0.6840482,0.21572742,-0.22930005,-0.18029599,0.0757977,-0.3455875,-0.14341113,-0.771588,0.120071374,-0.9433885,0.4209056,-0.12635227,-0.17990902,-0.117560916,0.20838879,0.43322024,-0.3515008,0.24575113,0.17375025,-0.30071858,-0.18546124,-0.34465694,0.10236437,-0.43070784,-0.42000017,0.00033953678,-0.6042255,-0.39511675,-0.11230869,0.26346073,-0.3282509,-0.012099162,-0.183563,0.25306407,-0.5686933,-0.1696397,0.2989247,-0.20624979,0.33661428,-0.5096072,-0.02755992,-0.19385436,0.5235793,-0.02897949,-0.033398066,0.40211228,0.36662573,0.4595479,0.28353667,-0.21428397,-0.09617057,-0.18536615,0.4527762,0.510634,-0.058575895,-0.3243208,-0.17696084,-0.06588322,0.30556747,0.30321452,-0.10984535,-0.39025995,0.011106687,-0.15231654,-0.059508163,0.23897275,0.4720096,-0.16987416,-0.30752063,0.24609084,0.59412163,0.1927677,-0.10159589,0.020623889,0.07097509,-0.4941199,-0.16478753,0.4746213,0.029252741,0.46680906,-0.05073111,0.21572042,0.85216874,-0.26449433,0.09838797,-0.32993698,-0.11955496,-0.3145319,-0.12397238,-0.17576681,0.08748255,-0.49970797,-0.03406586,-0.35694242,0.8057815,0.1823069,-0.70706207,0.2722539,-0.50799894,0.19332238,-0.19420251,0.72673446,0.51250964,0.29257873,0.15514596,0.83689576,-0.4346511,0.2484868,0.04204584,-0.51551574,-0.118427165,-0.31888404,-0.0516023,-0.35163686,0.007086622,-0.27478546,0.087013476,-0.19946453,0.3792503,-0.508537,0.02264366,0.0019010731,0.62750757,-0.43281832,0.14062893,0.716568,1.0430491,1.0701396,0.1250464,1.191593,0.6747241,-0.2508636,0.016792348,-0.31474873,-0.65167487,0.18638696,0.40898314,0.37425974,0.22767004,-0.12608388,-0.18653464,0.33234766,-0.58526844,0.26494116,-0.16518055,0.2849485,-0.102467895,-0.0028196913,-0.55631965,-0.0928755,0.059741583,-0.03980988,0.0958286,0.12784924,-0.1942559,0.6412946,-0.045664232,1.1118567,-0.2878452,0.0411083,-0.027923848,0.52222013,0.13483219,-0.12550685,0.008775145,0.33181158,0.7084724,-0.11945362,-0.8011897,0.16903111,-0.3933932,-0.4748167,-0.38880318,-0.43129033,0.043528683,0.067097306,-0.31615138,-0.26361793,0.22765884,-0.3537269,0.436676,-2.4912522,-0.13269474,-0.33305174,0.2375747,-0.429278,-0.04779901,-0.16153963,-0.46376395,0.3168274,0.22418778,0.38457945,-0.6090832,0.4021334,0.50908375,-0.24042985,-0.08695834,-0.7385931,-0.07080218,-0.14486703,0.47493643,0.059781466,-0.06707126,-0.15011682,-0.021942424,0.7571054,-0.16120346,0.14360465,0.477877,0.22271858,0.19658177,0.4785715,0.21242401,0.62678593,-0.41489765,-0.13901171,0.41710636,-0.15125977,0.31675714,-0.21061945,0.20021693,0.45104724,-0.5716346,-0.6941888,-0.91459525,-0.71704113,1.1806327,-0.36872417,-0.59260327,0.18598525,0.29145542,0.11313285,0.11097827,0.5444879,-0.17603967,0.31711537,-0.686951,-0.04174151,0.0882254,0.30179414,0.05320837,-0.0094095785,-0.34283438,0.7544638,-0.098630026,0.47559053,0.3052649,0.4178597,-0.07692892,-0.45429918,0.11768333,0.99263257,0.33085176,-0.12146575,-0.0950017,-0.33351794,-0.15750502,-0.35885555,-0.008762251,0.4410169,1.0434208,-0.05300561,0.11741875,0.23154525,-0.16656876,0.23480608,-0.0847137,-0.3282611,-0.04490481,0.04957178,0.5098957,0.38025302,0.13765046,0.5362229,-0.2723553,0.42835635,-0.053829808,-0.45757177,0.6761103,0.66223115,-0.18416014,-0.017133627,0.48746774,0.5678647,-0.47690848,0.5158729,-0.70107836,-0.33327004,0.7086934,-0.15665682,-0.54850817,0.19690336,-0.21685001,0.3534455,-0.9162928,0.45726267,-0.48939013,-0.5178029,-0.46946308,-0.14773294,-2.9005873,0.24919727,-0.12285795,-0.14150666,-0.1817799,-0.12440598,0.37557217,-0.50436765,-0.45120043,0.15135694,0.14435026,0.56537044,0.081177935,0.08094574,-0.3115592,-0.0047662854,-0.13719878,0.19583665,0.116571054,0.16025905,-0.07274628,-0.33295536,0.14970358,-0.2394903,-0.4357644,0.057420854,-0.58697313,-0.6375775,-0.16428126,-0.45681766,-0.392094,0.5734991,-0.40827796,0.036606733,-0.20297465,0.05538092,-0.24830696,0.2462764,0.14875524,0.33819517,0.10951807,-0.19674452,-0.05782646,-0.36519226,0.47343805,-0.03133446,0.23692706,0.02384924,-0.106557466,0.1966147,0.38115305,0.523926,-0.18057795,0.86442024,0.449178,-0.061997198,0.16129065,-0.3501052,-0.32057813,-0.6069656,-0.42016786,-0.03019424,-0.3643845,-0.74917215,0.06279634,-0.20485233,-0.90691775,0.5530983,0.032005813,0.326447,-0.11710191,0.124855794,0.27707952,-0.07941758,-0.0062904186,-0.12927268,-0.08233947,-0.52316374,-0.33965084,-0.7903709,-0.63005006,-0.10741333,0.8856686,-0.20783392,-0.14045027,-0.11176521,-0.5365029,0.09136175,-0.027504558,-0.026389996,0.2561532,0.3166153,-0.06267694,-0.82776546,0.43151265,0.110610895,-0.0070573604,-0.5308246,0.18198213,0.8369772,-0.8087536,0.42302874,0.40416312,-0.08746598,-0.007611216,-0.4286713,-0.1922883,-0.0047269696,-0.19170026,0.40658903,-0.110433534,-0.5690201,0.5683255,0.19755046,-0.350028,-0.77778023,0.30027002,0.063604996,-0.1343676,0.27181032,0.34130412,-0.28308305,-0.1908954,-0.44149277,0.20164074,-0.40575355,0.32958338,0.2863888,-0.019655185,0.15468082,-0.22375162,-0.40055355,-0.6154658,0.0462609,-0.55041087,-0.1813834,0.40768543,-0.042854395,-0.013936894,0.07503476,-0.024188085,0.4761583,-0.19938615,0.08224275,0.030643731,-0.40184775,0.2352327,0.41162357,0.21521258,-0.39580813,0.6987916,0.24587008,-0.37132916,-0.04358663,0.15941055,0.3950799,0.29456758,0.44426438,-0.27104837,-0.05797539,0.45577186,0.78362316,0.11620026,0.71229947,0.06197944,-0.20638399,0.46659583,0.1818947,0.26348293,-0.07964028,-0.1885451,-0.10451765,0.226856,0.027961057,0.42119798,0.30180553,0.5931896,0.009801409,-0.079373814,0.12300444,0.15232334,-0.08048278,-0.88683575,0.4335056,0.23440523,0.7723767,0.51619476,-0.09140927,-0.0895764,0.599315,-0.35375404,0.057844866,0.23733126,0.08498321,-0.5094233,0.63504666,-0.5963954,0.37870732,-0.19762583,-0.10535137,0.09839703,0.12845993,0.26151356,0.87760437,-0.01482165,0.12763223,-0.1884052,-0.07732974,0.045912094,-0.37379974,0.22799897,-0.4074059,-0.4956726,0.667965,0.2535117,0.24742699,-0.002412231,-0.09079255,0.13907112,-0.23032485,0.3879237,-0.024016205,0.1259117,0.19371393,-0.56290907,-0.1817997,0.5567103,-0.1392322,0.073578544,-0.019117817,-0.35110754,0.036836028,-0.19739333,0.12004926,-0.054143723,-0.70971966,0.09812414,-0.2911705,-0.38130692,0.2640166,-0.30846435,0.18945368,0.20024154,-0.03210612,-0.25654852,0.106296316,0.06971425,0.88148445,0.045299243,-0.39707592,-0.42973083,-0.0070108324,0.4805664,-0.32906556,0.19176218,-0.39789575,-0.08940867,-0.56635547,0.63239205,-0.21071722,-0.41388062,0.37693188,-0.3110706,-0.26898882,0.62283653,-0.10807913,-0.10384744,0.28530714,-0.15998867,-0.36055905,0.12211184,-0.36597332,0.22928461,0.25419462,0.093159206,-0.12765118,-0.12297305,-0.032872457,0.557092,0.10321535,0.53496665,0.30251795,0.0012367581,-0.32979065,0.14191483,0.1703647,0.4154041,0.34668916,0.08914279,-0.37654975,-0.450751,-0.295011,0.079418525,-0.22764094,0.1677715,0.018505152,-0.47695214,0.7803441,0.14800034,1.1582069,0.2038871,-0.36949873,0.008545299,0.4963821,-0.103549,0.090502106,-0.59390396,0.8747638,0.64692384,-0.106120296,-0.10830999,-0.4652774,-0.2736546,0.42050567,-0.31496218,-0.06860109,-0.038668197,-0.68745035,-0.5445924,0.17945279,0.24918249,0.034847002,0.11110829,-0.09159676,0.087866664,0.12074901,0.5746546,-0.79153377,-0.045926154,0.181185,0.13895094,-0.04801831,0.2765917,-0.3217589,0.36492977,-0.7228293,0.20110138,-0.31838205,0.1121115,-0.017935257,-0.4326652,0.17475949,0.06736098,0.3554259,-0.34508,-0.4021848,0.0004830467,0.6898256,0.028722184,0.2625931,0.7026413,-0.3503603,0.23913403,0.24685182,0.5332328,1.3696371,-0.48310715,0.077176556,0.21792743,-0.37138438,-0.57164425,0.5109836,-0.3244987,-0.045536127,-0.20851612,-0.6237365,-0.43421364,0.43897527,0.17377901,-0.15358064,0.11930179,-0.54815626,-0.01556812,0.37583995,-0.22727898,-0.35188296,-0.33789065,0.49621132,0.5794918,-0.42069831,-0.35142517,0.13700397,0.28031984,-0.43989757,-0.44779247,-0.111140184,-0.25541312,0.36228722,0.1109853,-0.26262257,-0.010427869,0.1405116,-0.39766565,0.06546382,0.21959054,-0.36467904,-0.002192378,0.03582811,0.0055318177,0.73384243,-0.16293931,-0.3618045,-0.77155817,-0.29816416,-0.87768936,-0.4927207,0.48938337,0.23357336,0.036788184,-0.39273152,0.13627863,-0.1146289,0.11892813,0.1334509,-0.6415533,0.3406518,0.10051424,0.5811616,-0.16886647,-0.8380622,0.1953676,0.11846594,-0.15457372,-0.63196796,0.5563306,-0.08934783,0.80773646,0.005115297,-0.106723785,0.112930216,-0.42515597,0.11351148,-0.3908618,-0.20972909,-0.8656154,0.118806124 +916,0.5696894,-0.104166426,-0.45902437,-0.20375082,-0.2081976,0.16756018,-0.26366198,0.3074698,-0.008937718,-0.55873054,0.10840875,-0.19234526,0.014032442,0.2969747,-0.19240965,-0.5680977,0.035553474,0.034309767,-0.39968514,0.17965332,-0.5667265,0.41837433,0.07365588,0.20133798,0.012343392,0.3149978,0.2895831,-0.19676256,-0.33020616,-0.24671495,-0.1412426,-0.034308773,-0.549792,0.064842336,-0.15256637,-0.2832023,0.16664651,-0.5490678,-0.41121906,-0.4856262,0.10354004,-0.70471513,0.5277822,-0.023511693,-0.17845106,0.3103072,0.026848076,0.3325299,-0.091658495,0.2108859,0.2814327,-0.261841,0.012059946,-0.1963822,-0.4452377,-0.46822757,-0.5238046,0.0009282725,-0.44839638,-0.20601656,-0.21882643,0.12526669,-0.26923072,-0.054335695,-0.07802271,0.28649244,-0.36032674,-0.023950212,0.11960095,-0.12744352,0.35678446,-0.37868464,-0.19539505,-0.11805181,0.22224608,-0.3575043,-0.16850081,0.38515395,0.31010067,0.45049852,-0.11198455,-0.22870497,-0.43315154,-0.049450077,0.09830298,0.67373514,-0.24780338,-0.25962487,-0.24429357,-0.13162842,0.23599261,0.25045076,0.032404333,-0.33519173,-0.14418793,0.06570572,-0.38863632,0.24860667,0.5210402,-0.40680876,-0.16778843,0.43624127,0.3468461,-0.014754292,-0.1576126,0.04909871,-0.0074700955,-0.45991918,-0.15933216,0.33440042,-0.11004554,0.44366854,-0.0758081,0.3031799,0.7380496,-0.25105178,0.052891456,-0.014768696,0.029213898,-0.0026194043,-0.12870929,-0.20756729,0.21021059,-0.5823359,0.009248257,-0.10106501,0.8259181,0.25758755,-0.9025638,0.4359845,-0.42774448,-0.010675598,-0.064706765,0.45695525,0.5526618,0.5219017,0.089852534,0.6292512,-0.61300516,0.13821876,-0.13450508,-0.3890026,0.11196976,-0.068317644,0.02597797,-0.45083973,-0.13323304,0.14051428,-0.070948325,0.092873186,0.2849747,-0.3331637,-0.004211411,0.22648892,0.7089226,-0.3273642,-0.018262662,0.52470887,0.98557204,0.8544556,0.04120443,1.1179434,0.2719807,-0.27434584,0.15976855,-0.37680444,-0.6442312,0.19700065,0.4046995,-0.165664,0.25453442,0.14583118,0.03754292,0.29817852,-0.26971707,-0.025296554,-0.18829614,0.110927016,0.009764416,-0.053609796,-0.3907831,-0.28212202,-0.054685622,-0.17040838,0.032823578,0.23815009,-0.194853,0.36875495,0.14796335,1.6848522,-0.026859213,0.13160181,0.05643513,0.5321318,0.17662537,-0.11894405,-0.097433135,0.27472472,0.26599863,0.1148983,-0.4031333,0.019658606,-0.04999444,-0.512962,-0.12897089,-0.29228503,0.051915772,-0.10875599,-0.47830367,-0.15206857,0.06921016,-0.33409205,0.6034362,-2.8171325,-0.12170677,-0.11202711,0.36702657,-0.31473136,-0.48655406,-0.13820371,-0.4993839,0.5159024,0.32186916,0.4262566,-0.5724348,0.27662623,0.4277713,-0.2593844,-0.14079654,-0.71524596,-0.086693585,-0.19621775,0.16754821,-0.022919912,-0.0985616,-0.039474927,0.18694581,0.42750326,-0.20167023,0.11247407,0.05577488,0.21858412,0.23529914,0.492702,0.0173518,0.55782074,-0.30187175,-0.21949852,0.22005536,-0.38200387,0.057863526,0.08798872,0.18757096,0.3579663,-0.31523013,-0.78635055,-0.5657988,-0.29428267,1.0700951,-0.30436552,-0.28889516,0.28963494,0.12770298,-0.42073622,-0.0743986,0.28115025,-0.04959832,0.025373623,-0.68024445,0.01497306,-0.085180014,0.13884832,0.0033785552,0.10012158,-0.32506037,0.50722,-0.17964849,0.4756504,0.35885888,0.13617146,-0.15479334,-0.26952735,-0.006852068,1.0271318,0.27416357,0.21154605,-0.18744224,-0.21811163,-0.16546741,-0.22116223,0.16449493,0.27461696,0.73904413,-0.0062263794,0.11418369,0.25871885,-0.12441853,0.07101846,0.019000486,-0.34056097,-0.015608951,-0.09968544,0.55852556,0.44825357,-0.028539836,0.4561897,-0.1316153,0.26127696,-0.29444614,-0.36122826,0.4973414,0.75397384,-0.1273987,-0.18411407,0.5272502,0.47644395,-0.2637292,0.3693649,-0.6569759,-0.28802267,0.45847455,-0.17890829,-0.39028412,0.17966413,-0.27589968,0.113070585,-0.8252589,0.40197018,-0.19678631,-0.43151963,-0.4003155,-0.22492987,-3.5428991,0.07515568,-0.247358,-0.34324986,0.20827194,-0.12820557,0.2712298,-0.58572423,-0.24230304,0.17039678,0.037992742,0.68389565,0.08449887,0.08591621,-0.3421689,-0.18817014,-0.47702694,0.2157236,0.07662979,0.26348183,0.0472862,-0.40639293,0.08376537,-0.30403417,-0.5244993,0.10956888,-0.6454617,-0.39302734,-0.22350346,-0.47175562,-0.5006198,0.6949234,-0.47116628,0.05514108,-0.16958906,-0.034663048,-0.25222045,0.5095249,0.19756705,0.16132103,-0.07340126,-0.035237536,-0.05404769,-0.41011304,0.33093694,0.19139056,0.24722777,0.3788308,-0.14395326,0.08210837,0.53631175,0.58891153,0.03968519,0.68875027,0.35555175,-0.14275832,0.3185193,-0.3752094,-0.1372301,-0.42794722,-0.44563293,-0.0867528,-0.33035585,-0.413378,-0.1528586,-0.3156827,-0.73183703,0.52337945,-0.003182359,0.022471119,-0.08731498,0.16744252,0.2686286,-0.28460634,-0.12727626,-0.015028402,-0.12961161,-0.3647909,-0.3193433,-0.5769944,-0.51013476,0.1638664,1.0346891,-0.007422015,-0.07196942,0.06967397,-0.16081417,0.021492667,0.0038183294,0.022996001,0.21195617,0.34598783,-0.034899905,-0.6478044,0.43774086,-0.20027666,-0.18989877,-0.5984447,0.14651018,0.70213044,-0.5351442,0.4559011,0.41581583,0.24228193,-0.056980718,-0.5659049,-0.2539681,-0.008454651,-0.2858505,0.39567855,0.049932104,-0.782738,0.5485985,0.42236272,-0.38107055,-0.54598993,0.49943987,0.0629652,-0.22392611,0.17095174,0.26481742,0.013431888,-0.04298333,0.032734107,0.29055434,-0.50322837,0.31655484,0.46287137,0.07800083,0.47330886,-0.13754013,-0.044568487,-0.5429956,-0.105299816,-0.24562413,-0.297042,0.11966469,0.0040179268,0.1640487,0.22340861,0.059057746,0.3444962,-0.3812481,0.0862035,-0.046479516,-0.13040942,0.2629935,0.36930338,0.45407012,-0.3927325,0.55235803,-0.053318866,-0.013817221,-0.24794249,0.00033948943,0.4949865,0.24669844,0.1759846,-0.11699475,-0.33946717,0.19816263,0.6284243,0.30713174,0.45952997,0.18201,-0.14300567,0.1575452,0.17983893,0.041818436,0.28346652,-0.3560133,-0.07771765,-0.056804247,0.17797995,0.3907097,0.004262425,0.35421923,-0.25918132,-0.1250217,0.11339479,0.06380226,-0.19483909,-1.2120042,0.3189647,0.15598094,0.62743926,0.27656567,0.040884417,-0.011461921,0.66735315,-0.28761047,0.087703556,0.13256584,-0.0722858,-0.39313895,0.57204336,-0.60728884,0.4424612,-0.050243415,-0.018042916,-0.028477013,0.019405544,0.39753157,0.83130014,-0.084932625,0.1868965,0.042263135,-0.3870769,0.20840345,-0.21610728,0.20164967,-0.4938746,-0.15517597,0.6458576,0.24468523,0.32828525,-0.08009709,0.020222604,0.020805644,-0.08662196,0.1392425,0.07369283,0.07539363,0.105360545,-0.56134844,-0.34583881,0.60473174,0.02189097,0.08473013,0.067012504,-0.2067649,0.2889698,-0.16831261,-0.026904546,-0.038034387,-0.55568206,0.019387597,-0.3414473,-0.40967488,0.22589815,-0.17846364,0.31582597,0.16746804,0.014429372,-0.20006827,0.545375,0.44002777,0.8277758,-0.11871658,-0.22079271,-0.3492418,0.03287793,0.26877218,-0.18421927,0.009616416,-0.32191423,-0.08294554,-0.5511361,0.21696654,-0.10696236,-0.21445161,0.15999633,-0.099999435,0.064085685,0.5233847,-0.21339491,0.033489488,0.02036034,0.0055134017,-0.3203243,-0.1326389,-0.13316229,0.19343613,0.12258677,-0.060840257,-0.010697246,-0.116113536,-0.052643955,0.31232446,0.18108194,0.36159766,0.34392452,0.16623704,-0.35780603,-0.14517897,-0.09273154,0.40028262,-0.060375713,-0.08529326,-0.38653165,-0.3482187,-0.14545575,0.14767708,-0.18114334,0.22428273,0.06592414,-0.25187606,0.7717334,-0.24313504,1.0326176,0.08344102,-0.31740743,-0.015054956,0.34341356,-0.019828197,0.1505368,-0.36308533,0.89995694,0.4753083,-0.015295692,-0.1263341,-0.2950331,-0.2348561,0.12526847,-0.2091039,-0.24607202,-0.015889484,-0.57149196,-0.32385737,0.2377083,0.040237635,0.19151369,-0.017862529,0.10094908,0.34515017,0.22610591,0.4523562,-0.41593572,0.006684959,0.34739596,0.36028367,0.07082122,0.22777233,-0.38812548,0.35583246,-0.4772907,0.090423636,-0.30178005,0.16501729,0.0010344274,-0.20055868,0.22426675,-0.027868073,0.39760494,-0.16929865,-0.31156635,-0.047112368,0.5638283,0.11294228,0.35509562,0.66425925,-0.17011245,0.09638988,-0.027593197,0.36910367,1.0779295,-0.312788,0.015964106,0.615526,-0.21242827,-0.6458473,0.25289416,-0.24588762,0.13988349,-0.16989292,-0.24612336,-0.27768055,0.27411306,0.19323146,0.038344894,0.11512795,-0.37879318,-0.15864842,0.45947897,-0.30700037,-0.4158023,-0.33955437,0.21445006,0.72064453,-0.35015565,-0.24567494,0.015651949,0.33862007,-0.23089212,-0.34457114,0.024026502,-0.27416182,0.24087185,0.18605956,-0.2690757,0.03800022,0.0012807772,-0.25658488,0.1976593,0.19774082,-0.36825898,-0.030755648,-0.22764774,-0.05829452,0.8217265,-0.070888735,0.024039686,-0.64788485,-0.5437082,-0.92448545,-0.46613613,0.44367915,0.15767837,-0.04096578,-0.34358445,-0.06647642,-0.05578964,-0.08914698,-0.078674875,-0.4634562,0.38233984,0.14188139,0.3447227,-0.04588419,-0.5996304,-0.0011420287,0.09345427,-0.19670668,-0.55145675,0.49591962,-0.21352394,0.87471,0.100774854,0.04778491,0.14863652,-0.3833906,0.10956474,-0.26370755,-0.28858516,-0.72482413,0.1357871 +917,0.3677995,-0.20270914,-0.7358462,-0.11849105,-0.11465642,0.09756983,-0.26647398,0.26688033,0.060742054,-0.58052915,0.13968796,0.02723244,-0.09971419,0.19802967,-0.03567486,-0.47556677,-0.032692753,0.1833528,-0.5217727,0.5251777,-0.61626834,0.4207745,-0.10180949,0.19422837,0.051430877,0.31167284,0.010629456,0.19159164,-0.13865267,-0.09241365,0.17817558,0.303864,-0.43016022,0.20322101,0.08332356,-0.45760533,-0.2198122,-0.26284713,-0.33935675,-0.5212791,0.2178501,-0.74731326,0.55764514,0.015188352,-0.20271476,0.17187375,0.2577762,0.29084784,-0.3020987,0.13858399,0.14853004,-0.29034567,-0.20585082,-0.34352043,-0.16981909,-0.22055626,-0.585923,0.048620462,-0.5828988,0.04157429,-0.24202043,0.17382485,-0.3658611,0.0883971,-0.35582626,0.43865046,-0.49866873,-0.07994409,0.19355613,-0.07960708,0.2901947,-0.5427962,-0.13343999,-0.11420823,0.0059760334,-0.35107213,-0.34721556,0.22418477,0.22958733,0.48051327,-0.01488416,-0.15043242,-0.4033914,-0.23945467,0.31314194,0.43561035,-0.13961665,-0.190211,-0.32235643,-0.09604652,0.18776041,0.15645064,0.0082511185,-0.32399192,-0.08459498,0.055546466,-0.23164867,0.3428227,0.55411124,-0.26969114,-0.16707209,0.43692267,0.665614,-0.024958221,-0.22472961,0.23181272,-0.019025998,-0.4273424,-0.26111788,0.1644137,0.023404999,0.4435654,-0.21089596,0.2143274,0.503955,-0.31146362,-0.13689372,0.31326395,0.13295165,-0.008872652,-0.3465896,-0.2734405,0.1913347,-0.580578,-0.01046611,-0.20016076,0.56717485,-0.04906068,-0.73304206,0.38614905,-0.48073986,0.13751313,-0.11090568,0.610693,0.7289838,0.50096565,0.13797612,0.66670674,-0.37866768,0.06482918,-0.12084573,-0.32086167,0.06475191,-0.010323143,-0.056766566,-0.69151664,0.10421093,0.07301482,0.022587113,0.034705576,0.66782266,-0.37541825,-0.14627251,-0.01233238,0.6126472,-0.40187803,-0.00092287065,0.7128988,1.0341232,1.1168945,0.14840953,1.1465067,0.23521128,-0.13610823,-0.081484206,-0.23841757,-0.6994077,0.3199033,0.28822067,-0.16163383,0.3800996,0.010313044,-0.0035391252,0.5452509,-0.29834,0.15702938,-0.08892848,0.2891102,-0.11368539,-0.15744396,-0.3058788,-0.24301186,0.06290891,0.1140258,0.12636882,0.29941547,-0.35666314,0.43379492,0.23399691,1.5246087,-0.0885131,0.20885691,0.08476225,0.24662304,0.19713154,-0.3047963,-0.051215615,0.1616282,0.3682508,0.09286092,-0.5820065,0.03596312,-0.07366764,-0.6056729,-0.2765811,-0.33079913,0.030607883,-0.4006497,-0.50697744,-0.067114964,-0.031196969,-0.5235334,0.3359266,-2.588998,-0.19321045,-0.121130206,0.24127324,-0.13678977,-0.46844834,-0.2096139,-0.39750415,0.47530332,0.23731993,0.3916645,-0.58468944,0.467333,0.44286278,-0.33052203,-0.02781679,-0.60072714,-0.106267855,-0.1666206,0.14421968,0.06474505,-0.12248561,0.016587079,0.22723444,0.45994198,-0.47546548,0.12832077,0.28029364,0.28450242,-0.014399076,0.39128685,0.02338467,0.5396577,-0.38812727,-0.3343963,0.42264616,-0.4641779,0.07926867,-0.046029624,0.16319631,0.27040577,-0.5466496,-0.89424896,-0.5939969,-0.11977456,1.1825782,-0.293133,-0.37560555,0.16662788,-0.4568644,-0.566519,-0.021478863,0.25446558,-0.29657206,-0.011199995,-0.9147073,0.17148843,-0.21674706,0.19474907,-0.1034119,0.07431717,-0.41904965,0.48207793,-0.022371883,0.70309937,0.5384033,0.1529683,-0.46895558,-0.31172153,0.11762928,1.0911019,0.42427,0.12759286,-0.27915376,-0.12302272,-0.24533828,-0.005984763,0.27254397,0.36851442,0.5961661,0.0887657,0.2039538,0.28559726,-0.038665485,-0.07636959,-0.29937324,-0.26589176,-0.01478279,0.19837971,0.6152417,0.4751396,-0.11822455,0.3839708,-0.07727257,0.19474371,-0.29774156,-0.5621525,0.41487166,0.86902547,-0.09918329,-0.44483358,0.6865143,0.5789999,-0.35862365,0.5187564,-0.5230914,-0.31107318,0.20804943,-0.22366025,-0.22468857,0.24035184,-0.4461324,0.21536082,-0.89774555,0.19830431,-0.30640706,-0.6435193,-0.55006194,-0.27873343,-3.1193593,0.1695525,-0.122893825,-0.13781983,0.038169798,-0.2024157,0.33663946,-0.5861359,-0.61744434,0.06855782,0.14025424,0.74153084,-0.043813042,-0.09467627,-0.13685554,-0.18998976,-0.17116831,0.17283176,0.07948094,0.2205781,-0.043511476,-0.54433435,-0.13113423,-0.24052788,-0.48338223,-0.117778346,-0.53433865,-0.34118265,-0.07694904,-0.43057054,-0.4973999,0.5940207,-0.30809453,0.033461574,-0.22073932,-0.028104817,0.08824679,0.48030108,0.033892397,0.30662748,0.099458024,-0.083449624,0.13563754,-0.31376126,0.07022424,-0.035706267,0.08186164,0.5688824,-0.17067403,0.1723334,0.50842136,0.7141233,0.05818517,0.88823,0.5096426,-0.13879697,0.32303265,-0.35616022,-0.15176061,-0.5648878,-0.37362975,-0.12975805,-0.51596457,-0.42081082,-0.0030136586,-0.31051537,-0.9038721,0.53836465,0.08010103,-0.006410527,-0.086571105,0.3515833,0.29621252,-0.106187776,-0.084924854,-0.21838503,-0.19703637,-0.29797044,-0.41582984,-0.72194993,-0.53050876,-0.030285845,1.2522156,-0.15550508,0.061507735,0.04361816,-0.0829316,-0.029879402,0.38175932,0.17162517,0.32272342,0.29368085,-0.10678436,-0.48104572,0.24824886,-0.17777987,-0.32384953,-0.67486596,0.105514556,0.74707806,-0.5802856,0.53396946,0.3880588,0.16358696,-0.19435903,-0.6828172,-0.03721048,0.13133423,-0.2650431,0.6470636,0.35001394,-0.88406175,0.52650094,0.4172889,-0.21755616,-0.6954004,0.56704277,0.0022679965,-0.07173126,-0.15091158,0.37900004,-0.18296392,0.011069016,-0.21990551,0.16166203,-0.3530463,0.25716284,0.32806972,-0.028608467,0.3380237,-0.36273292,-0.15241887,-0.6186336,-0.10781917,-0.53735435,-0.13101342,0.15756266,-0.029613435,0.2254902,0.308579,-0.19329469,0.4548815,-0.3850802,0.030646503,-0.07781218,-0.36686122,0.27459425,0.4482271,0.23897089,-0.28853875,0.6604528,0.010281102,0.0025819181,-0.33628574,0.108146794,0.6023937,0.05470585,0.5027226,-0.0060555856,-0.12989661,0.40207958,0.8278439,0.2491712,0.37140286,0.24237886,-0.15564531,-0.0020888646,0.11580858,0.26960003,-0.062028266,-0.27603582,0.052601464,-0.053931538,0.32459226,0.52111495,0.0416319,0.6284491,-0.18349586,-0.18925115,0.057099115,0.22465767,-0.13467526,-1.4402139,0.5687138,0.15571252,0.63905805,0.62351793,0.10574996,0.13380685,0.35261768,-0.42756864,0.14902586,0.2603316,-0.14803705,-0.3845951,0.520416,-0.78499275,0.5126977,0.040426724,0.109570056,0.02749091,-0.107375145,0.62233794,0.87554806,0.020632155,0.23645642,0.11042306,-0.30957374,0.2075319,-0.26463482,0.05254955,-0.4950154,-0.26540294,0.9418915,0.27992868,0.5099422,-0.138256,-0.04510965,0.22588424,-0.09502697,0.15611601,0.044671185,0.23013668,-0.1465907,-0.5556785,-0.23421392,0.49545687,0.17501512,0.12168304,0.23902825,-0.26777062,0.27625504,0.08975924,5.741914e-05,-0.012667402,-0.48312765,0.037647106,-0.3628358,-0.53175366,0.2722967,-0.40844128,0.22997561,0.20905113,0.090477385,-0.4108728,0.29691112,0.18623374,0.6461595,-0.07863327,-0.08885152,-0.09128233,0.29980385,0.28561553,-0.0960028,-0.18829224,-0.2758141,0.24147753,-0.8086258,0.36816946,-0.1662912,-0.46644288,0.34467018,0.006483223,0.0074733696,0.49395484,-0.28679687,-0.32067972,0.1806293,-0.14105406,-0.30581027,-0.43304306,-0.16792887,0.32812914,0.018065779,0.0006468296,-0.08448648,-0.028622698,-0.08056946,0.28758752,0.19647928,0.2755538,0.42205957,0.14216277,-0.5252786,-0.061222915,0.20177121,0.4832873,-0.06414883,-0.01249302,-0.32806903,-0.42207292,-0.16096407,0.23489715,-0.14272591,0.22856261,0.055617783,-0.31595346,0.90111697,-0.1563371,1.0856537,0.120582424,-0.3887793,0.13137044,0.36585945,0.025171006,-0.1459918,-0.17684917,0.9317866,0.58842593,-0.12600479,-0.23600303,-0.44425452,-0.068977885,0.10622649,-0.23849821,-0.36399633,-0.019978713,-0.73570454,-0.23843284,0.2167642,0.18545713,0.097232595,-0.15135893,0.19633046,0.32042155,0.019132806,0.025952585,-0.5282822,0.1428327,0.34866175,0.2336021,-0.06620562,0.011261312,-0.46373138,0.3095969,-0.6294411,0.109144025,-0.033054825,0.09440837,0.04914736,-0.19770902,0.318665,0.09084125,0.054167334,-0.22453594,-0.21278232,-0.1814656,0.51559275,0.008776586,0.09221731,0.8150585,-0.27180442,0.24208139,0.07062044,0.400329,1.0885146,-0.19334705,0.02138151,0.324034,-0.26292342,-0.770274,0.25252792,-0.34136245,0.2201534,-0.02945995,-0.37305185,-0.49357042,0.285412,0.09224645,0.03246329,0.18303002,-0.37847763,-0.1178297,0.24303026,-0.29095522,-0.1888972,-0.3598776,-0.11462583,0.57219964,-0.20622468,-0.29108107,0.07828101,0.4164322,-0.2510456,-0.43003088,0.03638145,-0.34182325,0.25497857,0.12927598,-0.2453948,0.0811427,0.17103125,-0.3890503,0.1063554,0.43294924,-0.22157246,0.06768618,-0.34137923,-0.13604549,0.7573759,-0.34910393,0.10155233,-0.4441842,-0.60261357,-0.8178428,-0.19276682,0.41881326,0.052629273,-0.11108477,-0.70650953,-0.0020315489,-0.010873961,-0.13300519,0.005606691,-0.41090053,0.5146722,0.07835876,0.13818555,-0.0242686,-0.61997205,0.091017984,0.12937325,-0.1482181,-0.42328194,0.56219697,-0.10547383,0.6887853,0.1614324,0.107003726,0.34975183,-0.7420813,0.23481494,-0.14566745,-0.116588,-0.7366069,-0.15770312 +918,0.17503585,-0.34584734,-0.7015689,-0.14277412,-0.3849735,-0.026464125,-0.38634896,0.27902016,0.034521505,-0.27110374,-0.21703659,0.07197166,-0.0050821207,0.2648256,-0.19612814,-0.4528922,-0.21949951,0.21103425,-0.83288604,0.5053921,-0.5489669,0.26790148,0.001198257,0.47067606,0.06339536,0.2656447,0.28768027,0.025830412,0.10273785,-0.18811469,-0.08454567,0.2934384,-0.5371013,0.25430182,-0.21959615,-0.62838775,0.029584214,-0.4575748,-0.019182742,-0.8476015,0.2800318,-0.9129389,0.56090504,-0.15425144,-0.2371978,-0.011118129,0.34965575,0.3743831,-0.17090571,-0.13479592,0.37273192,-0.13894634,-0.25584733,-0.35890555,0.06403326,-0.2470619,-0.3690339,0.010872508,-0.61821944,-0.32284883,-0.21788251,0.35262856,-0.2674615,0.06956344,-0.24299127,0.3547515,-0.41353962,0.07404568,0.0670605,-0.12323105,0.2630408,-0.61960036,0.09460921,-0.12702322,0.5430908,-0.15176491,-0.23382698,0.22543995,0.1286505,0.34258676,0.057548095,-0.17345947,-0.23211907,-0.16375408,-0.021213502,0.45921394,-0.25491512,-0.28683278,-0.14846192,-0.017973185,0.42927146,0.38320664,-0.0360095,-0.23639087,0.03359774,-0.25394103,-0.21507676,0.6401429,0.43174925,-0.2303877,-0.24146323,0.3383458,0.6174445,0.26342204,-0.32523245,-0.06615217,-0.047837455,-0.52844036,-0.13500714,0.118050836,0.115394294,0.4017334,-0.17404164,0.3896245,0.71235114,-0.03459452,-0.10621085,0.13001674,-0.0353025,-0.2076785,-0.14376928,-0.2728187,0.18153997,-0.563891,0.1482582,-0.23720114,0.7000496,-0.015788613,-0.9132164,0.46838114,-0.5699336,0.044619042,-0.060260523,0.5606257,0.55027145,0.62196034,0.17696774,0.7017348,-0.22975738,0.20153223,-0.1916318,-0.28996268,-0.058652263,-0.13684602,0.11140531,-0.47814667,0.16805644,-0.28654632,0.2340705,-0.047758486,0.23012601,-0.49115214,-0.15948214,0.22452547,0.637077,-0.347388,0.017772734,0.8186066,1.0010939,0.9688535,0.100531824,0.9617974,0.024240104,-0.16293858,0.0127625065,-0.012554675,-0.777375,0.20536841,0.45721066,0.16128632,0.16023491,-0.0991201,0.12264368,0.45677546,-0.25580904,-0.16265272,-0.19166107,0.2896695,0.12496519,-0.016737664,-0.35026208,-0.23330192,0.193835,-0.031773485,0.044554442,0.20645611,-0.23005497,0.4500548,0.15657325,1.3524374,-0.13703072,0.11305956,0.14285137,0.5135839,0.2159486,-0.1236398,-0.09995911,0.2523742,0.39747766,-0.02722498,-0.5832508,0.26622504,-0.21677692,-0.46990636,-0.061179694,-0.28182352,-0.3419167,0.012829469,-0.4649457,-0.30394664,-0.09408712,-0.2480495,0.31191155,-2.888921,-0.23607671,-0.07614759,0.2809632,-0.15716441,-0.36867675,0.0032049443,-0.5667283,0.4171522,0.23278524,0.52021706,-0.51265734,0.62779146,0.42220464,-0.5500539,-0.22986047,-0.7367067,-0.1076951,0.034396045,0.43377006,0.057513643,-0.09385156,-0.24795644,0.07457589,0.5831097,-0.14718087,0.15512626,0.4444908,0.3855028,0.14966221,0.5948655,-0.03621049,0.5769293,-0.5672003,-0.24283928,0.28545073,-0.38702166,0.20149408,-0.08513541,0.08969164,0.5546142,-0.6245665,-0.84961456,-0.73800546,-0.19771276,1.1968793,-0.2002788,-0.3814502,0.17067565,-0.37889862,-0.14453988,-0.00543197,0.46969032,-0.12220511,-0.010282661,-0.66533977,0.04416511,-0.18907662,0.37192702,0.038991645,-0.1554104,-0.4600173,0.61735564,0.020618105,0.6245666,0.271884,0.13416363,-0.30515692,-0.196719,0.09813207,0.61305594,0.28172353,-0.011311556,-0.1221591,-0.20537949,-0.18189968,-0.10061312,-0.02772677,0.66674066,0.54246694,0.051290233,0.2049082,0.25556538,-0.0872449,0.13277586,-0.29107907,-0.2362067,-0.1496847,0.16637845,0.4113483,0.52831036,0.07682275,0.40940443,-0.14229439,0.29080555,-0.1425566,-0.530003,0.5851969,0.48949352,-0.07570964,-0.10751889,0.50063425,0.6383362,-0.38574448,0.44829747,-0.5109592,-0.21425812,0.5095079,-0.25179014,-0.47486934,0.06633768,-0.23699994,0.13121435,-0.6541582,0.12856503,-0.60193205,-0.6284973,-0.44363737,-0.078890614,-2.9984293,0.27716303,-0.08006623,-0.2621433,-0.38797697,-0.2599115,0.25561535,-0.4951576,-0.6631847,0.048609685,0.236445,0.5798029,-0.02332434,0.054360185,-0.2718021,-0.21313643,-0.02294445,0.347442,0.1094375,0.22691023,-0.20564692,-0.3011422,-0.15730496,-0.071582936,-0.4270976,0.030987075,-0.5796007,-0.32931703,0.053258467,-0.47334608,-0.30356425,0.5211713,-0.2565132,-0.015852584,-0.24624902,0.001520291,-0.12495818,0.32142475,0.14902519,0.23014541,0.11742555,-0.12107152,0.12655802,-0.35152873,0.36303568,-0.103416175,0.23881464,0.08058306,0.035007868,0.24141036,0.35562694,0.7736173,-0.17168576,1.1796728,0.33186632,-0.050930675,0.37129855,-0.3178966,-0.54095477,-0.594118,-0.055187225,0.003502454,-0.29154798,-0.2894598,0.18681277,-0.19769521,-0.8252602,0.7924342,0.17344035,0.10318639,0.026037136,0.401672,0.3446213,-0.17847109,0.03092323,-0.13420409,-0.105329014,-0.5261643,-0.29903677,-0.718842,-0.47678736,-0.33723775,0.98771363,-0.29170647,0.18426718,-0.020867428,-0.21521349,0.06193685,0.22419001,0.12219032,0.4965857,0.4221151,-0.060125668,-0.62654275,0.34971294,0.027312418,-0.17272766,-0.34918645,0.1891797,0.67968196,-0.6229653,0.40181383,0.26232806,-0.014018538,-0.22898476,-0.62604976,-0.07350438,-0.10515106,-0.16218095,0.48468998,0.3193619,-0.94994706,0.55957764,0.4256592,-0.2835308,-0.8565088,0.36238825,0.050498847,-0.32322264,-0.18881802,0.28700283,-0.01867204,-0.11221566,-0.24211572,0.16311155,-0.30963987,0.2890032,-0.037316445,-0.07431553,0.22506136,-0.33322108,-0.22913544,-0.5663155,0.07197385,-0.6354953,-0.2734922,0.3616718,-0.03037708,-0.096077375,0.31060788,-0.06255341,0.36392632,-0.29780385,0.127966,-0.12396785,-0.35423395,0.013435721,0.45393372,0.29168865,-0.40128437,0.5297479,0.059236035,-0.1525734,-0.060586423,0.027994772,0.45080277,-0.076157965,0.40630364,-0.26844093,-0.17779505,0.35364607,0.9272416,0.20621085,0.43704364,-0.28858268,0.013048108,0.30334827,-0.01171298,0.25783458,0.10994825,-0.4583303,0.067535035,0.012310912,0.1158821,0.55760694,0.064706825,0.36039087,-0.008581544,-0.1506625,-0.031073553,0.22874542,-0.029782772,-1.0999082,0.5798848,0.27209747,0.89784145,0.51326257,0.18782811,-0.12454464,0.8671647,-0.4120612,0.100069545,0.40897587,0.07029113,-0.33007017,0.7722723,-0.6748781,0.39353418,-0.14432295,-0.108280264,0.26392674,-0.064961076,0.3269895,0.7895875,-0.19565193,0.09737182,0.042996615,-0.19144171,-0.0957332,-0.2896462,-0.17455769,-0.26918504,-0.32091412,0.78307825,0.458058,0.39818347,-0.27427745,-0.035108868,0.030636316,-0.08520895,0.16595863,-0.07098734,0.036875576,0.039364632,-0.36706778,0.0042531244,0.7154133,0.28242928,0.21728896,-0.25067607,-0.4333776,0.24880351,0.006748654,0.012975027,-0.13558485,-0.52919894,0.32709888,-0.30645877,-0.41472924,0.5795178,-0.19396318,0.0142324595,0.23104693,0.058337193,-0.031642526,0.34563997,0.06825038,0.55451095,0.071083754,0.06312609,-0.27460745,0.09916567,0.15750238,-0.24831742,-0.043557715,-0.43400046,-0.021777915,-0.60240215,0.48660812,-0.056340754,-0.50300646,0.25864545,-0.11706068,-0.032716002,0.65250427,0.05543219,0.036936592,0.08131411,0.036381785,-0.31053022,-0.29120937,-0.20325685,0.19193478,0.22549927,0.18010823,-0.28924128,-0.12302742,-0.19269444,0.6707272,0.103458315,0.623766,0.054227125,0.07629328,-0.35732308,0.15013301,0.021307299,0.5571623,0.037809312,0.018607581,-0.17982851,-0.24924026,-0.16266392,0.25995228,-0.027839882,0.14620964,0.1032272,-0.2207665,0.8563626,-0.050197188,0.96245414,-0.021683596,-0.29620418,0.21535306,0.48445585,-0.066836536,0.053775445,-0.40707257,0.7990815,0.4288076,-0.08737984,-0.025302896,-0.2646807,-0.16989662,0.14302124,-0.37240136,-0.0041892924,-0.12128663,-0.51497644,-0.43773124,0.23641928,0.20055556,0.09238991,-0.15714744,-0.008759816,0.08417189,0.06020445,0.26515713,-0.5679514,-0.11802834,0.19528024,0.20403564,-0.21300398,0.14628488,-0.48633957,0.4009516,-0.74665433,0.19386315,-0.5936548,0.15673648,-0.21344154,-0.3830175,-0.00066302717,-0.10696385,0.16605996,-0.14018308,-0.4421921,0.010378187,0.23222537,0.17084752,0.33577093,0.50573206,-0.23753352,0.19757748,0.045245234,0.4593346,0.6857628,-0.40803996,-0.20801629,0.2585477,-0.32674593,-0.5512857,0.2690722,-0.25894937,-0.07257595,0.068514444,-0.20639296,-0.18701701,0.23642081,0.30854955,0.13832839,-0.20017119,-0.7025962,-0.030335864,0.39341578,-0.1767519,-0.18705976,-0.2623236,0.33954582,0.72534674,-0.24271075,-0.3883358,0.036219716,0.4141043,-0.23114842,-0.5270061,0.09592139,-0.28149116,0.34553504,0.061802592,-0.38857785,-0.043230385,0.12008896,-0.52253145,0.04852949,0.259549,-0.26998517,-0.015870778,-0.310343,0.13118897,0.95580846,-0.29043978,-0.07624355,-0.30318505,-0.49749467,-0.7769721,-0.23366325,0.24618565,0.2638857,0.094806105,-0.45550752,0.09703815,-0.105452605,-0.40925106,0.14460324,-0.40246102,0.3676876,0.13194913,0.5691268,-0.32665786,-0.8467873,0.268867,0.22264552,-0.030183181,-0.45070148,0.5041772,-0.12448061,0.7944772,0.08608085,-0.14851542,-0.06564424,-0.45809785,0.19500871,-0.3964436,-0.032803617,-0.74234676,0.056464955 +919,0.40767893,-0.13646206,-0.3958264,-0.08981933,-0.14846215,0.12307037,-0.06996768,0.68376774,0.31535864,-0.19441952,0.004232458,-0.20936169,0.11108854,0.52537376,-0.11993955,-0.46245548,0.035939034,0.13452145,-0.49745995,0.6133947,-0.24494243,0.13524912,-0.15578702,0.5487131,0.34903577,0.35714412,-0.14152838,-0.12947963,-0.2529968,-0.10804407,-0.048440885,0.32108206,-0.33436063,0.094232775,-0.20767768,-0.19819704,-0.08270973,-0.6156144,-0.5611666,-0.74468845,0.39309576,-0.81424046,0.44300207,-0.06916058,-0.20465867,0.29917246,0.1633252,0.3688026,-0.31282282,-0.18298118,0.049012896,0.12438363,0.1352977,-0.14798209,-0.252799,-0.44720674,-0.43402508,-0.08139681,-0.39133152,-0.16455977,-0.14209577,0.07939404,-0.2503553,-0.07280874,0.01566508,0.48496744,-0.44558784,0.2896486,0.26387197,-0.03881367,0.29032207,-0.48903847,-0.3017487,-0.11694097,0.26390594,-0.14710076,-0.1305646,0.29805925,0.21898796,0.11735432,-0.3306792,0.05818482,-0.303618,0.025378166,-0.04241844,0.5542826,-0.16486658,-0.649752,-0.09210821,-0.006312021,0.049480226,0.14874645,0.27175537,-0.23171498,-0.012046172,0.0064833206,-0.29966718,0.39141995,0.4354159,-0.19702056,-0.115644924,0.3598218,0.29135412,0.38483745,-0.30307606,-0.073233195,0.086033545,-0.455559,0.043708745,0.0564969,-0.18157928,0.6153754,-0.1029165,0.18701802,0.67780465,-0.05195122,0.02700007,0.0067275846,0.18085851,-0.1441801,-0.2083533,-0.24555029,0.119219795,-0.26441863,0.14861952,-0.107385874,0.59001267,0.22668251,-0.63593084,0.35180405,-0.5639321,0.0927975,-0.15747486,0.23056053,0.63958937,0.3157284,0.29231268,0.50411344,-0.23600136,0.110878065,0.013628555,-0.32302484,0.10040735,-0.26380867,-0.07186993,-0.47459635,-0.060793154,0.08036884,-0.31816146,0.1408314,0.13648292,-0.403475,-0.112870455,0.13579202,0.86818,-0.19979273,-0.099832214,0.7726334,0.9996256,0.8090958,-0.025929397,0.92618024,0.22918548,-0.10551921,0.37625948,-0.2584865,-0.6878037,0.2561426,0.180398,-0.71637934,0.21775672,-0.045679074,-0.11572995,0.25938994,-0.17981097,0.11461949,-0.15608065,0.06018174,0.2204068,-0.14994928,-0.3194437,-0.43043047,-0.34397316,-0.08340378,0.24367502,0.15200214,-0.26742256,0.39459684,-0.033118572,1.6989481,0.116345845,-0.09561484,0.04800648,0.7597813,0.24254496,-0.1649626,-0.19474937,0.35231996,0.4261903,0.146632,-0.52469146,0.31374535,-0.2060024,-0.4439297,-0.053272128,-0.460521,-0.09938253,-0.0079499995,-0.55905026,-0.092458606,-0.1103626,-0.13608317,0.4232184,-3.1727998,-0.123083875,-0.06497941,0.3486088,-0.22793047,-0.119255,-0.110183515,-0.38000804,0.27683923,0.30174565,0.48399347,-0.672211,0.24279632,0.36711803,-0.5412714,-0.14271976,-0.4569871,-0.06949322,0.049967706,0.41454244,-0.07177789,0.2899037,0.40116814,0.21712856,0.40371805,0.118517265,0.23400831,0.18494411,0.34576994,0.13634583,0.4050581,-0.20724429,0.4572073,-0.22335264,-0.10778058,0.21818672,-0.44898847,0.26159662,-0.16634957,0.15611328,0.5149142,-0.350642,-0.8472849,-0.5626561,0.1216072,1.0626304,-0.18018652,-0.35222435,0.11314603,-0.40003613,-0.1856771,-0.05899474,0.60050446,0.008309068,-0.03647999,-0.6524615,-0.13965736,-0.14424597,0.034951795,0.013204319,-0.028041337,-0.10220325,0.5396567,0.15447733,0.4387036,0.1450045,0.06733068,-0.36047056,-0.537144,0.1259952,0.4800342,0.17996319,0.1497778,-0.13496378,-0.1336879,-0.4101171,-0.05698735,0.119248785,0.62837565,0.4711542,-0.07878766,0.2795858,0.24376275,-0.03737923,0.04158557,-0.08552281,-0.21518132,-0.10124608,-0.025142398,0.43925044,0.6374732,-0.20472495,0.62453026,-0.13618214,0.2688198,-0.16329649,-0.38367867,0.5573249,1.1792278,-0.27877957,-0.2996056,0.4316668,0.51742345,-0.2909717,0.31854057,-0.48414525,-0.15645064,0.49807143,-0.1128306,-0.36361584,0.42110786,-0.1763962,0.17497389,-0.82399505,0.17259659,-0.17548086,-0.26945236,-0.44290218,-0.0004207066,-3.0936112,0.12145121,-0.07823468,-0.4626793,-0.15868047,-0.18529561,0.21047917,-0.54426813,-0.53903174,0.1587248,0.12892473,0.64893997,-0.063362345,0.13807903,-0.29485962,-0.145609,-0.23491418,0.15598908,0.14839259,0.5091515,-0.1428062,-0.43734103,-0.15003274,-0.17284557,-0.4082403,0.1044062,-0.6445402,-0.34687927,-0.15565808,-0.6074807,-0.23889992,0.6713415,-0.24406181,0.014590366,-0.16016866,-0.040927578,-0.22038364,0.25613877,0.16255073,0.11474593,-0.019267354,-0.05972467,0.20186456,-0.21360005,0.29314107,0.023843234,0.31779075,0.20266856,0.08528103,0.2332373,0.48784265,0.45996794,-0.12312092,0.8228982,0.4511537,-0.06649352,0.2405732,-0.34781915,-0.16372646,-0.38234633,-0.1602197,-0.14743654,-0.27356258,-0.5482051,-0.16566263,-0.43237644,-0.6486129,0.3866024,-0.13362536,0.20701586,0.09288483,0.10880958,0.590968,-0.179751,0.104415104,0.07157842,-0.073653184,-0.5985592,-0.2640881,-0.47653556,-0.25483546,0.10844408,0.6755136,-0.18493788,-0.028640976,0.0014771564,-0.5188592,-0.064980336,0.12605648,-0.09430926,0.10968663,0.32027718,-0.27752298,-0.6186542,0.385354,-0.23386966,-0.16194856,-0.43153688,0.20469496,0.45718494,-0.57436126,0.70122,0.2840877,0.026446389,-0.3589463,-0.4238607,-0.26106492,-0.068458006,0.005945906,0.26714364,0.22812656,-0.7824101,0.25526562,0.26976848,-0.33870015,-0.5455808,0.69436127,-0.054716546,-0.3511326,-0.19375919,0.24704473,0.137381,0.0021635985,-0.32444185,0.21159227,-0.388619,0.045755006,0.20481959,-0.049912266,0.19580945,-0.11393653,0.0485659,-0.6123609,0.14768808,-0.29116246,-0.30637497,0.41853857,0.06281511,0.26936156,0.026567075,0.14041647,0.1307418,-0.2491373,0.039397832,-0.00012742622,-0.092992194,0.24366967,0.3322867,0.5746204,-0.51625675,0.55777895,-0.050673,-0.082566015,0.45859584,0.23577653,0.26031098,0.28184214,0.3991855,0.1920275,-0.30434713,0.20648208,0.78582495,0.19361487,0.46298796,0.025685811,-0.11618771,0.18697466,0.049825672,0.21330822,-0.02835138,-0.44797254,-0.13065222,-0.34226418,0.19681577,0.39862856,0.078080475,0.18237741,-0.041837517,-0.49596587,0.038348343,0.17618598,0.08400154,-1.3244671,0.36550766,0.32186016,0.861515,0.24990828,-0.053231955,-0.049158845,0.7102605,0.009784349,0.17210974,0.39808846,0.02338454,-0.6204928,0.5960063,-0.68100786,0.48896366,0.06072732,-0.077254854,0.018162565,0.0687593,0.36160856,0.6637449,-0.13632783,0.023759857,0.20267439,-0.51501733,0.066891916,-0.38052177,0.04939537,-0.6405307,-0.20266795,0.51049,0.5735956,0.22633888,-0.17366134,0.08590812,0.082756765,-0.10691334,0.08391573,0.17140071,0.19115864,-0.06998195,-0.776962,-0.16263115,0.48469582,-0.34461552,0.1140831,-0.020732304,-0.16527423,0.35511896,-0.29136112,-0.0037516144,-0.09636663,-0.7739796,-0.019891143,-0.2765536,-0.4346532,0.4944737,-0.15134512,0.27976936,0.20763628,0.0336763,-0.31609896,0.42472172,0.027112825,0.7801234,-0.38736948,-0.12063865,-0.5321628,-0.018891778,0.28944328,-0.16557041,-0.24574924,-0.34261307,-0.060787294,-0.2733901,0.42203665,0.031032374,-0.2064469,-0.32909712,-0.09159284,0.18655331,0.5239839,-0.09457011,-0.18598978,-0.27144605,-0.090291455,-0.53783023,-0.06085189,-0.09029786,0.26640216,0.47253317,-0.17811038,-0.19049838,-0.07908726,-0.004544369,0.31671306,-0.2131901,0.6066832,0.4328416,0.2916452,-0.014538805,-0.1404811,0.37083775,0.4833188,0.0572395,-0.07361841,-0.4114885,-0.36480626,-0.38116223,0.19244789,-0.15931287,0.4343633,0.2320925,-0.22869189,0.64464134,-0.16821899,0.9041395,0.07407268,-0.32379597,0.26039702,0.35619995,-0.0061226347,-0.11914891,-0.32265544,0.78147644,0.44285306,0.008951368,-0.07595886,-0.2323498,0.022994246,0.18139479,-0.19367763,-0.18986215,0.04660616,-0.5484963,-0.085915625,0.15204395,0.23215099,0.410985,-0.1513248,0.103612535,0.1896676,0.10134623,0.21937357,-0.41148907,-0.08994535,0.2922699,0.29612345,0.15129559,0.16743062,-0.52010936,0.37444517,-0.23920245,0.052144635,-0.33568844,0.31365323,-0.18574838,-0.38599712,0.097891144,0.014293969,0.328914,-0.31927297,-0.29487568,-0.48507056,0.439291,0.24669997,0.058713,0.4027617,-0.21861155,0.14767838,0.02810062,0.6774378,0.7456559,-0.23117879,-0.106987916,0.37257996,-0.3953258,-0.73527807,0.3204603,-0.29194,0.5045986,0.0126379775,0.06775488,-0.77630097,0.36194044,0.20162182,0.09227226,-0.21141179,-0.4875245,-0.22205831,0.364431,-0.16607831,-0.29347152,-0.446939,0.12356971,0.39271337,-0.16884105,-0.35302645,0.18881357,0.12580267,-0.13576756,-0.39016384,0.046337243,-0.39455494,0.3278723,-0.07112075,-0.39803305,-0.26699507,-0.15621792,-0.39550117,0.46744913,-0.011019145,-0.307405,0.13224033,-0.20514582,-0.12970619,0.9686914,-0.32911125,-0.036120262,-0.549398,-0.50186265,-0.71597594,-0.52242726,0.2369784,0.15717424,-0.0422537,-0.55095685,0.06181692,0.002060307,-0.1786492,-0.156216,-0.3226831,0.42463177,0.09576956,0.25715384,-0.015029945,-0.8180813,0.21169567,0.07326721,-0.21210109,-0.6733472,0.35995105,-0.115690805,0.83770084,0.047091033,0.19994281,0.3459084,-0.066972725,-0.3103717,-0.17856862,-0.20832255,-0.6004544,0.18012188 +920,0.3205113,-0.026752114,-0.5194866,-0.24391694,-0.32181498,0.20523065,-0.17016196,0.21809898,0.19795407,-0.1586272,0.07600939,-0.29117325,-0.010020864,0.4307704,-0.13873056,-0.7234407,0.11541431,-0.01057239,-0.50525063,0.24011286,-0.5029926,0.4500457,0.18621962,0.2414662,-0.10139048,0.32884076,0.39275798,-0.10684649,0.02503117,-0.15297024,-0.17864746,0.10895432,-0.5500275,0.20513092,-0.13464758,-0.25568634,0.07842432,-0.38649377,-0.26600358,-0.5991876,0.39979604,-0.7170725,0.4228116,-0.050664887,-0.40113768,0.07149574,0.08541247,0.25624982,-0.3186218,0.10865656,0.22291976,-0.279552,0.01241103,0.038245663,-0.40145794,-0.75830185,-0.5136675,0.042891487,-0.6632336,-0.21710531,-0.20793091,0.2914639,-0.31606892,0.079973854,-0.038614783,0.21239503,-0.43011087,-0.18094851,0.24613155,-0.2800569,0.20382147,-0.39252272,-0.047885336,-0.09932385,0.16138433,0.019247206,-0.109983176,0.2300231,0.5261437,0.5005413,-0.0019517422,-0.28996086,-0.19099003,-0.2357159,-0.054231778,0.63270444,-0.0037103256,-0.35845163,-0.2501717,-0.10816596,0.2670436,0.17272943,0.14262572,-0.18554927,-0.18777646,-0.013241311,-0.32376412,0.23931023,0.37832114,-0.5366256,-0.18086673,0.42421785,0.43245134,0.10755723,-0.1571113,0.27846205,0.047114063,-0.4669112,-0.10351137,0.123092525,-0.25362694,0.6661854,-0.22348192,0.3025451,0.8826389,-0.18201883,0.054822557,-0.03149397,-0.1651617,-0.2829437,-0.09384306,0.064080484,0.10028173,-0.5944196,-0.0121258,-0.20667553,0.812462,0.20660584,-0.7041666,0.38665736,-0.39581135,0.14763226,-0.13956961,0.66859156,0.70855147,0.25061926,0.12830104,0.8153875,-0.48057,0.052049406,0.05578501,-0.38361648,0.1293252,-0.14035171,-0.13355139,-0.57035935,0.14327782,0.21244714,0.04813821,0.00053094624,0.2735822,-0.43337065,-0.03162145,0.101060264,0.6685689,-0.39555684,-0.18653803,0.72906786,1.0797212,0.86551434,0.04514184,1.266026,0.27282375,-0.22905485,-0.044914637,-0.25674686,-0.46876898,0.14288399,0.46632302,0.5092022,0.37663853,0.110752575,0.095939316,0.3297536,-0.12762053,0.0015674352,0.04142266,0.13838951,-0.00017338296,-0.14462872,-0.44935513,-0.25493944,0.2373833,0.08468636,0.008883119,0.253726,-0.084886596,0.6153673,0.18835531,1.1687022,0.049370274,0.14842777,-0.085329674,0.5313145,0.20894289,-0.02678315,-0.06217424,0.37993297,0.1511218,-0.021281008,-0.43200856,-0.028194094,-0.31905186,-0.5286129,-0.20089273,-0.3146499,-0.14002034,-0.1729276,-0.45952708,-0.11585279,0.08464783,-0.30971894,0.50917745,-2.6702266,-0.1989655,-0.2542022,0.21241789,-0.22580214,-0.21431176,-0.10000873,-0.4449068,0.2747535,0.57012594,0.37774727,-0.67744166,0.44495448,0.4071654,-0.3029501,-0.12371798,-0.57723045,-0.09199303,-0.1675039,0.38258514,0.10029045,-0.23668177,-0.14604948,0.42807382,0.7500206,0.08371095,0.03549832,0.05934493,0.46968612,-0.023426192,0.45079342,0.19016938,0.5739979,-0.07171165,-0.1382774,0.2940373,-0.43422958,0.4314786,0.07039812,0.1964896,0.2996189,-0.389944,-0.86168766,-0.6214834,-0.346188,1.1701847,-0.39876458,-0.3607751,0.39778525,0.10141737,-0.22993396,0.112525225,0.311512,-0.038043402,0.21048266,-0.5599372,0.11264919,-0.09812068,0.058906198,-0.03279034,0.07022217,-0.20759518,0.794444,-0.18897197,0.40799332,0.29540417,0.15668415,-0.037105083,-0.3773016,-0.060266323,0.8920453,0.497352,-0.032109458,-0.17246242,-0.1985109,-0.27402648,-0.26353118,0.11283756,0.41444713,0.8431406,0.08530211,0.13977996,0.26228523,-0.07563378,0.042191695,-0.035429176,-0.37871906,0.0531754,0.020144071,0.65238434,0.59541184,-0.27972087,0.34762466,-0.082001574,0.29560232,-0.15929084,-0.53749436,0.4204041,0.7690146,-0.13548893,-0.17740999,0.4755799,0.47117087,-0.44977856,0.40055072,-0.5702196,-0.2874547,0.79126203,0.022497552,-0.4009505,0.11541759,-0.3389464,0.052147318,-1.0391107,0.35415137,0.05779384,-0.5963938,-0.4325684,-0.25105676,-3.8212533,0.16915105,-0.14612597,-0.14858979,-0.15062039,-0.043794874,0.37410468,-0.56059664,-0.51902527,0.043743897,-0.0017651637,0.468879,-0.08946754,0.22017889,-0.30994102,-0.14178102,-0.2495318,0.34005347,-0.019098138,0.22266573,-0.14100687,-0.35870656,0.11624008,-0.47412872,-0.4934155,-0.05152433,-0.58694553,-0.6824415,-0.18358779,-0.4514441,-0.13059899,0.68657976,-0.27479416,-0.072584026,-0.30623195,0.06436941,-0.28114453,0.30706793,0.25907242,0.076958254,-0.067848094,0.0039566117,-0.044096116,-0.4048346,0.18367305,0.1666224,0.45475343,0.38686383,-0.15181224,0.15048231,0.6847989,0.52275145,-0.0038554072,0.7158403,0.08032681,-0.11566994,0.41894644,-0.26671284,-0.36817247,-0.7314751,-0.4284816,-0.13574524,-0.44059753,-0.52789503,-0.15693049,-0.23378025,-0.6813982,0.33455405,0.07335984,0.104361095,-0.2302486,0.30342662,0.34770048,-0.2237433,-0.013587522,-0.22214638,-0.2175868,-0.5632064,-0.3995881,-0.6821721,-0.5831651,0.19803964,1.0552088,-0.0047594863,-0.09108629,-0.09438817,-0.24142942,0.014835682,0.005146257,0.36858636,0.21391988,0.16442555,-0.25790575,-0.68753207,0.58812654,-0.15782382,-0.08897182,-0.62039363,-0.19270691,0.52142656,-0.5787892,0.43686435,0.47832006,0.31453797,0.32453588,-0.604709,-0.18265705,0.018688878,-0.1783217,0.5183457,0.11844384,-0.5057917,0.5656137,0.10865342,-0.15064004,-0.49491692,0.46196216,-0.010049725,-0.0756506,0.09332126,0.40169278,0.0687918,-0.19335862,-0.2230943,0.2207301,-0.6349918,0.27885777,0.47029406,0.054836046,0.7342228,-0.07916436,-0.26409912,-0.59149206,-0.22038676,-0.45504147,-0.08486835,-0.050301157,-0.023661708,0.055342697,0.08963833,-0.0008862654,0.42241913,-0.45921087,0.20985264,-0.011815751,-0.28002402,0.51707804,0.50052065,0.414591,-0.4657243,0.6905206,0.13257693,-0.017327992,-0.21089515,-0.07037613,0.55628186,0.22123197,0.32466802,0.016278887,-0.14402083,0.1623883,0.78009915,0.25571266,0.39546824,0.12176197,-0.18253137,0.32886323,0.1813207,0.09366183,0.026399724,-0.32642186,-0.04052667,0.05272003,0.089471355,0.44533527,0.07015261,0.4635538,0.021001657,-0.19281092,0.23066075,0.009445178,-0.11498109,-1.0244625,0.23880698,0.47427782,0.628409,0.3603583,-0.10373085,0.06784188,0.5895568,-0.38081345,0.05088779,0.3175163,0.10417778,-0.5405127,0.61565477,-0.5755156,0.5333794,-0.26514775,-0.016377326,0.23260188,0.06948315,0.3295143,0.8799018,-0.08447354,-0.024724016,0.01181827,-0.3896079,0.15855001,-0.40363467,0.10670081,-0.44970518,-0.22929968,0.6541987,0.31069186,0.16391736,-0.1896081,-0.11411929,0.14834571,-0.064632885,0.17394222,-0.16786991,0.06782161,-0.32381615,-0.59767246,-0.4408376,0.577928,0.19881423,0.09340563,0.07918482,-0.45967835,0.3379684,-0.119034655,-0.025520165,-0.023863683,-0.49299172,0.091970414,-0.24853906,-0.62043214,0.38166025,-0.32919744,0.4147391,0.15187578,-0.02762446,-0.23742637,0.015885433,0.15510072,0.6575038,0.045615498,-0.17187235,-0.36042964,-0.0954247,0.29471138,-0.35889047,-0.23684005,-0.40298596,0.12104106,-0.370289,0.45753974,-0.2800454,-0.34261158,-0.105029486,-0.3234866,-0.040129606,0.16250178,-0.23607506,-0.12338409,0.24235229,0.14257248,-0.22549443,-0.0024683713,-0.36759573,0.36765653,0.029907418,-0.22280788,0.008283397,-0.039039858,0.022268414,0.2769899,-0.031027054,0.11685183,0.1746886,-0.24511372,-0.4229994,-0.08262802,-0.060709614,0.28342324,0.0011181514,-0.033184282,-0.22435111,-0.3957607,-0.2069287,0.13906308,-0.16372363,0.18191756,0.1443591,-0.26307958,0.8841148,0.10090601,1.2557317,0.12069712,-0.4676738,0.0965806,0.6531067,0.1077478,0.12646145,-0.3017926,0.9471212,0.6065758,-0.2359222,-0.38957748,-0.4752899,-0.08932594,0.24290092,-0.2701977,-0.37235054,-0.1171256,-0.6624931,-0.17162038,0.2331199,0.2362302,0.25427327,-0.010155131,-0.031230783,0.12679672,0.10962487,0.5660753,-0.53269285,-0.21660344,0.38543478,0.06506636,-0.11602398,0.039596852,-0.289118,0.47441348,-0.69028693,0.018339077,-0.48070872,0.11720917,-0.17072369,-0.41386953,0.23625693,-0.08118732,0.43076655,-0.177661,-0.30274704,-0.17696747,0.6115049,0.34429625,0.38227966,0.63862354,-0.2490357,-0.12482932,0.057608422,0.436283,1.4034973,-0.13098381,-0.030753434,0.34674293,-0.38381493,-0.55403876,0.15930894,-0.5063389,0.14673106,-0.1337783,-0.4778657,-0.4462663,0.37108943,0.15863006,-0.023871029,0.18248068,-0.36565638,-0.20588198,0.32641163,-0.47558537,-0.37484682,-0.31289062,0.36035812,0.7484831,-0.3466709,-0.34654891,0.028267639,0.3116785,-0.3018773,-0.69115025,0.16054961,-0.16071758,0.44840446,0.04306786,-0.4084192,0.13711624,0.28120574,-0.2599652,0.35178146,0.35871306,-0.35048994,0.099072106,-0.29885188,-0.018967453,0.9407337,0.08475057,0.06895426,-0.9198694,-0.50622904,-0.959784,-0.42459583,0.44316503,0.11261358,-0.10474115,-0.38413396,-0.21899526,-0.13091293,0.061771832,0.16456315,-0.43755278,0.35933763,0.1221124,0.574401,-0.008505297,-0.8307111,-0.07833711,0.06386331,-0.17733309,-0.5502411,0.51702964,-0.24145669,0.66832584,0.18320395,0.0042817434,0.16130833,-0.52767074,0.3273648,-0.31944835,-0.18928975,-0.7477504,0.1282694 +921,0.26562786,-0.13274398,-0.5441418,-0.18539406,-0.3403359,0.1350943,-0.31093884,0.21328121,0.24431969,-0.14541778,-0.14053842,0.017885549,0.15125707,0.39441967,-0.03480705,-0.5492435,-0.17659406,0.24669951,-0.75791156,0.47920057,-0.5295413,0.17549807,-0.06945189,0.41328558,0.086157545,0.4280515,0.12645046,-0.116577946,0.08249054,0.092588395,0.12448208,0.37031254,-0.5048067,0.08370818,-0.3034775,-0.28989857,-0.029451102,-0.3540607,-0.24542148,-0.5552689,0.089106515,-0.86506504,0.51380044,0.016272092,-0.096244484,-0.09548143,0.3416446,0.43953452,-0.42987156,0.05157364,0.2611427,-0.1948731,-0.26212022,-0.27729052,0.059144113,-0.43889445,-0.37190762,-0.17051788,-0.60729146,-0.26638705,-0.13709575,0.20947978,-0.20142587,0.026968349,-0.03197955,0.15111846,-0.44324842,0.11901607,0.3737969,-0.25118938,0.30933297,-0.47490484,0.09574903,-0.023721447,0.5757153,-0.054627817,-0.29512313,0.2943986,0.37143892,0.43318108,0.14807853,-0.2366643,-0.21282856,-0.10862262,0.22985204,0.38463193,-0.24946503,-0.22749491,-0.3095823,0.042003527,0.23551822,0.36506203,-0.14216366,-0.3360934,-0.045650378,-0.08164633,-0.072892085,0.52284664,0.48501188,-0.27676162,-0.32704705,0.31260636,0.6205225,0.41934937,-0.2836773,0.13603884,0.04070456,-0.51334226,-0.20366168,0.14946489,-0.010516314,0.37623802,-0.050835248,0.1648047,0.89269364,-0.054700416,-0.020480545,-0.030559985,-0.09578513,-0.12066985,-0.35260984,-0.035002638,0.110316284,-0.62791985,0.03722047,-0.1663523,0.4443892,0.08157025,-0.6082465,0.34083685,-0.66040957,0.19366251,-0.15092486,0.5587051,0.7486219,0.35853094,0.10233439,0.8908678,-0.28750336,0.23203398,-0.17909555,-0.39836523,0.18092278,-0.1449628,0.018098664,-0.547,0.14976342,-0.056424387,0.19509767,0.117227726,0.18093039,-0.4744216,-0.08010847,0.25588593,0.7856756,-0.32322782,0.012613845,0.62244934,1.1266754,0.8053728,0.007451356,1.379546,0.2280166,-0.2758127,0.14675385,-0.33468124,-0.6165777,0.16234563,0.25925684,-0.081258155,0.3810465,-0.07834586,-0.0007926861,0.31883845,-0.47394568,0.10254093,0.05706764,0.29604885,0.23364069,-0.015893197,-0.2942913,-0.031856764,-0.068700075,0.015374522,0.20698503,0.104730085,-0.18124202,0.24296379,-0.08877761,1.2128168,-0.028250337,0.083823204,0.09974046,0.5422306,0.32719073,-0.15941516,-0.063957445,0.37205628,0.41689217,0.04813564,-0.51691383,0.36517614,-0.28313032,-0.49563885,-0.14501013,-0.39983064,-0.1311045,-0.019744894,-0.42999324,-0.0959089,-0.025038607,-0.26453876,0.50839746,-2.8963048,-0.3959001,-0.12836787,0.35182992,-0.25471097,-0.044471093,-0.30858505,-0.3177091,0.27218753,0.25960314,0.41509277,-0.6059444,0.6572764,0.55008894,-0.6090475,-0.14540532,-0.605812,-0.067384236,-0.027241392,0.35104376,0.049089488,-0.15866493,-0.017058562,0.2918039,0.5911621,-0.0405504,0.10008457,0.49026135,0.3397821,0.09828419,0.5377864,-0.09701063,0.4567966,-0.33145177,-0.22679025,0.30901414,-0.21552268,0.31275496,-0.08960194,0.085009925,0.51430345,-0.34055698,-1.0479771,-0.60116756,-0.23270592,0.9255086,-0.39944693,-0.42373574,0.1667738,-0.36239448,-0.09267297,0.05902395,0.60852146,0.1094579,0.19236201,-0.82627416,0.04986108,-0.074243836,0.15457913,0.08261168,-0.055743407,-0.36515948,0.70451504,-0.07277528,0.6046888,0.27721345,0.24132068,-0.13843086,-0.36282158,0.15990295,0.67957217,0.24114297,0.038474225,-0.09887548,-0.37354177,-0.0481979,-0.12044287,0.05497688,0.57319844,0.59239346,-0.026848102,0.2911783,0.31727275,-0.13526948,-0.05843303,-0.15639077,-0.21502915,0.08865254,0.02086896,0.44344074,0.8168077,-0.18829697,0.42255163,-0.07996351,0.31628257,-0.083099976,-0.56438506,0.67618,0.5067331,-0.24275804,-0.12521262,0.5453246,0.42048123,-0.41064292,0.43583584,-0.690131,-0.2999781,0.63880414,-0.19320276,-0.38385174,0.2146903,-0.24132703,0.12147362,-0.76389974,0.23625289,-0.24176067,-0.38243258,-0.38078243,-0.1283446,-3.595056,0.18533717,-0.25108334,-0.110985234,-0.20423062,0.0456153,0.36832038,-0.5230549,-0.5289663,0.15010996,0.2601387,0.70124775,-0.20969187,0.10562334,-0.3361743,-0.14132434,-0.031385597,0.24754563,0.035467483,0.25763372,-0.2186246,-0.43083516,-0.04487284,0.08006746,-0.5031571,0.16122827,-0.47344044,-0.3225511,-2.5167068e-05,-0.41806832,-0.12060252,0.49613872,-0.44210586,-0.05573703,-0.20549828,0.105850205,-0.18689035,0.35898802,0.23010717,0.06593166,0.24077418,0.09092019,0.038370274,-0.27899852,0.52473295,-0.055417538,0.24478902,0.091150954,0.08243534,0.17911103,0.53780645,0.4642802,-0.29213136,0.9741469,0.46286392,0.044108517,0.2628275,-0.21893282,-0.16710907,-0.44922325,-0.37350228,-0.20840994,-0.45048842,-0.48211095,-0.019344259,-0.3216757,-0.8965558,0.59071666,0.039500967,0.24179251,-0.054300148,0.14137986,0.4208596,-0.23738469,0.018539647,-0.095868744,-0.21935783,-0.4396787,-0.2146554,-0.60608786,-0.47703138,0.065291405,0.7320915,-0.4388574,0.08514541,-0.056883223,-0.16964166,-0.05980493,0.24008724,0.16146068,0.25743577,0.52022475,-0.046675943,-0.6032075,0.36079174,-0.19642605,-0.28953025,-0.5528095,0.08043289,0.6836465,-0.71545565,0.6782229,0.42653763,0.10531128,-0.11795204,-0.5058319,-0.24316192,-0.15426971,-0.33621007,0.48295376,0.0003029724,-0.9147962,0.47238472,0.34499237,-0.37832043,-0.64571327,0.6128751,-0.13115266,-0.17991526,-0.009657814,0.24783128,0.1205071,-0.10213779,-0.20194343,0.25011066,-0.38988507,0.25811937,0.09151384,-0.16975528,0.33784828,-0.091290794,-0.19060917,-0.699109,-0.10863107,-0.48116198,-0.23243402,0.32848218,-0.057569947,-0.035277963,0.12622084,0.12054639,0.37688828,-0.32308277,0.038145524,-0.023116564,-0.38548073,0.14688653,0.45195532,0.35498458,-0.37590617,0.51655865,0.03217819,-0.23347534,0.24481522,0.031172175,0.4118205,0.07932541,0.51383597,-0.16638009,-0.08833912,0.40846023,0.718397,0.079174265,0.3015341,0.037602566,-0.13713501,0.3526722,0.054600988,0.09814164,-0.10757174,-0.40228876,0.020654429,-0.089565545,0.32782033,0.4194253,0.4026708,0.3516229,0.061116442,-0.28830677,0.050997607,0.21573664,0.087942936,-1.2391528,0.53052837,0.38511318,0.84047073,0.45420042,0.056869064,-0.057100985,0.6006407,-0.08235722,0.06814628,0.37507424,0.006794813,-0.45577753,0.66174805,-0.72261304,0.4520976,-0.18366064,-0.05310034,0.19614728,0.16588174,0.33214703,0.8392719,-0.12709858,0.075293295,0.053643312,-0.21645913,-0.023066262,-0.21856192,-0.0044558444,-0.46676287,-0.35436946,0.749992,0.55645484,0.4365855,-0.31255886,-0.0012837887,0.052384786,-0.076928824,0.27496794,-0.065004416,-0.066863194,0.060655307,-0.63577896,-0.208113,0.52532446,-0.041124996,0.12800859,-0.12415015,-0.29756805,0.029145433,-0.30262563,0.06462714,-0.07772374,-0.59445924,-0.20084603,-0.26705456,-0.5922732,0.57421696,-0.33045813,0.13885458,0.24241191,-0.11749982,-0.15542914,0.5312442,-0.15245867,0.84342307,0.06769975,-0.22439721,-0.31660047,-0.0101181185,0.2176447,-0.26304382,-0.056199297,-0.5285324,0.10234591,-0.5523263,0.6053922,-0.14178784,-0.40511286,0.27392796,-0.2575224,0.03307705,0.51522595,-0.120307714,-0.20898002,0.22944178,-0.25399318,-0.44704342,-0.1328656,-0.39689848,0.24587448,0.24755883,0.036377627,-0.1640797,-0.29092872,-0.16276315,0.48255503,0.080455825,0.48740232,0.3520757,0.0045064925,-0.11511149,0.10458102,0.33303005,0.4396233,0.13070677,-0.029846955,-0.2969824,-0.44935745,-0.28863162,0.093084596,-0.059158955,0.099046014,-0.017301567,-0.13899827,0.8649834,-0.080561645,1.0672916,0.17132218,-0.28379026,0.27649483,0.4264049,-0.09638456,0.017025867,-0.5345589,0.64742166,0.5471163,-0.07125926,-0.04938456,-0.39837372,-0.1340157,0.25203934,-0.27186114,-0.008019733,-0.070318066,-0.7063172,-0.42918122,0.22856542,0.12732647,0.095747404,-0.09641695,0.0028609396,-9.4203155e-05,0.10721842,0.2440122,-0.797751,-0.2302168,0.21815631,0.40951595,-0.14501935,0.07950505,-0.34047934,0.55464995,-0.5549084,0.037441,-0.47269443,0.08498474,-0.3249568,-0.41686803,0.0322661,-0.0914348,0.29314074,-0.113803014,-0.31871936,-0.15377872,0.44615206,0.09248458,0.1468462,0.59442556,-0.2951088,-0.009694659,0.064681634,0.47183022,1.0628611,-0.5387293,-0.05378078,0.38144416,-0.39862823,-0.5397218,0.34375745,-0.55181247,0.05128118,0.068687424,-0.4604214,-0.3282846,0.33040276,-0.009534216,0.10817378,-0.006409148,-0.6319635,0.0035378614,0.24693625,-0.21945204,-0.28451934,-0.1123977,0.29474354,0.7953609,-0.2568668,-0.2536178,0.15145943,0.40300426,-0.28972495,-0.47394735,0.11464475,-0.39424637,0.31003076,-0.032231938,-0.22978726,-0.039678466,0.0614041,-0.5122024,0.091793306,0.2381447,-0.2919281,0.0649726,-0.17195085,-0.0150435055,0.90498793,-0.21670322,-0.066716895,-0.65565324,-0.49537036,-0.9260235,-0.33264914,-0.006851077,0.30312178,0.027747143,-0.33048505,0.19433993,0.004980727,-0.2138939,0.017658047,-0.59118706,0.38363966,0.1410489,0.4863268,-0.27393538,-0.8373142,0.056477413,0.12655385,-0.22530036,-0.6476961,0.6715348,-0.21942507,0.96159416,0.005015405,-0.08462314,0.03981743,-0.34897676,0.13870929,-0.37024722,-0.12942053,-0.9103289,-0.017505236 +922,0.4199798,-0.2494857,-0.6350214,-0.1091596,-0.31037045,0.15233898,-0.2895253,0.37612036,0.3780157,-0.26656,-0.182218,-0.06503877,0.20983836,0.5704187,-0.07223409,-0.729084,-0.03395311,0.19019674,-0.6887475,0.5436072,-0.54715323,0.37550816,0.22445236,0.4914933,0.07261505,0.26327842,0.46956572,-0.09106286,0.18306208,-0.08471546,-0.35760394,0.12916856,-0.56805,0.0584522,-0.18406074,-0.30493197,0.026248971,-0.33741918,-0.15746126,-0.83080375,0.1591842,-0.947614,0.61239785,-0.124939606,-0.20221828,0.066621445,0.25427327,0.30964082,-0.4395383,0.0029255587,0.089775495,-0.35261387,-0.33573112,-0.3057327,-0.11370482,-0.64576036,-0.4043011,-0.06329246,-0.621262,-0.2681051,-0.30968326,0.17097381,-0.3839688,0.042846296,-0.17131063,0.2831411,-0.34723857,0.0026954242,0.29203245,-0.4022406,0.24756508,-0.49601778,-0.023846997,-0.079644814,0.48892567,0.08586371,-0.18758021,0.4054058,0.35236374,0.59787655,0.26829475,-0.3173409,-0.15624359,-0.2105689,0.13267997,0.48895162,-0.13470258,-0.49969083,-0.27272034,0.013079976,0.27966124,0.39244822,0.074116014,-0.2307291,0.001468569,-0.06661404,-0.2825819,0.69201106,0.5402874,-0.3164692,-0.23831476,0.28792027,0.5415564,0.16085665,-0.25350598,0.13256498,-0.13611254,-0.5257927,-0.14919625,0.09169085,-0.16380389,0.49774975,-0.16685656,0.09115834,0.6924094,-0.099031344,-0.103171214,-0.021764856,-0.0479202,-0.22171704,-0.3057084,-0.11128104,0.32313266,-0.6039686,0.025895467,-0.35002264,0.7693329,0.14742856,-0.69742966,0.54841393,-0.45845821,0.2570448,0.036001164,0.69933236,0.8142339,0.37261692,0.3659087,1.0637491,-0.46696204,0.20125952,-0.086722456,-0.47584215,-0.050500114,-0.27690786,0.20943138,-0.57200813,0.39617604,-0.12205834,0.04050793,0.16074118,0.42273596,-0.49982664,-0.24330722,0.26175678,0.86405903,-0.29971048,-0.0500632,0.87783676,1.030873,0.94320506,0.028237287,1.2669764,0.32938442,-0.28241405,0.071120724,-0.20982145,-0.6344784,0.19929865,0.40419367,0.2610623,0.36611012,-0.0640141,-0.16818811,0.22301213,-0.38188574,-0.1842811,-0.007310859,0.23572205,0.14225496,-0.08876257,-0.51065624,-0.005844857,0.09548088,-0.12553108,0.27876344,0.17581834,-0.3193805,0.56585824,-0.05782318,1.2833841,-0.15001084,-0.011227702,-0.010021695,0.46363178,0.45874724,-0.006793778,-0.11486103,0.5240397,0.43501854,-0.079866275,-0.7518468,0.256037,-0.4069709,-0.43392634,-0.15742712,-0.38555998,-0.12684141,0.058186587,-0.17993793,-0.09987419,-0.14319205,-0.338319,0.35511738,-2.629848,-0.34567356,-0.14706834,0.32062572,-0.23587589,-0.0608988,-0.21591036,-0.54736197,0.29803768,0.31237292,0.530959,-0.7257934,0.48046425,0.552693,-0.51695263,-0.23984173,-0.67951876,0.005136609,-0.037150797,0.4966173,0.124950275,-0.3223726,-0.20764753,0.19962557,0.81904495,0.15397093,0.12953304,0.55293566,0.50334007,-0.10207791,0.56287825,-0.09864284,0.7263366,-0.44855276,-0.21226577,0.34869486,-0.2385149,0.22724839,-0.16171636,0.07857622,0.60530394,-0.3366,-0.965138,-0.5465979,-0.19793749,1.0174874,-0.47485605,-0.7196781,0.16614135,0.09241716,-0.036834385,0.113589205,0.68896955,-0.027928535,0.14164901,-0.7635177,0.21498582,-0.10562205,0.10775911,0.00089206867,-0.022050377,-0.25895536,0.8992316,-0.18539861,0.7309758,0.1288645,0.26349533,-0.22713648,-0.2872768,0.09398307,0.9636008,0.28577897,-0.10123686,-0.07583884,-0.2841966,-0.15201259,-0.35468003,0.020282056,0.79882324,0.8237254,-0.10616619,0.046614457,0.30176002,0.030314535,0.03246183,-0.15800492,-0.34097162,-0.17748229,-0.06281402,0.49908113,0.72123855,-0.15347525,0.4578517,-0.21157424,0.327005,0.051679205,-0.6393069,0.67677176,0.60059595,-0.3883802,-0.17551562,0.5592891,0.37409526,-0.5064137,0.5332442,-0.78832763,-0.38641888,0.69642127,-0.112337485,-0.43812338,0.31259808,-0.23669437,0.12953106,-0.790371,0.14554645,-0.24274567,-0.444726,-0.27385074,-0.11586406,-3.8492484,0.22338176,-0.21708305,-0.049333755,-0.52962625,-0.04189344,0.23913698,-0.50569814,-0.638957,0.17002918,0.26003528,0.62001884,-0.16787426,0.16068758,-0.37929827,-0.23862995,0.021614721,0.21413012,-0.060720403,0.24719644,-0.10916669,-0.4041605,-0.12111305,-0.033694383,-0.54448617,0.110699944,-0.70473564,-0.39832968,-0.13271451,-0.6564242,-0.11265149,0.6252524,-0.47958097,0.00062543154,-0.33512837,0.19740057,-0.24990739,0.059427977,-0.06299653,0.14401487,0.2248224,-0.04191079,0.22871558,-0.35403094,0.4273006,-0.1744086,0.32862678,0.07323592,-0.037996348,0.063313164,0.43847117,0.70258886,-0.18672906,1.0361717,0.3269138,-0.047515698,0.26362088,-0.16490364,-0.41885754,-0.6133209,-0.41922733,-0.08821865,-0.49223194,-0.42633268,0.055217493,-0.27665955,-0.8220273,0.5980485,0.05066489,0.5286389,0.057970356,0.44515222,0.48310062,-0.252317,0.08371387,-0.010790544,-0.2933721,-0.57410467,-0.22387524,-0.7003945,-0.58283854,0.047047973,0.7397162,-0.29117435,-0.0035177693,-0.092970416,-0.14743574,0.04748563,0.18588993,0.32636717,0.31839347,0.48706642,0.0050978702,-0.55869,0.5132794,-0.22199798,-0.18737434,-0.5708197,0.1482812,0.4684265,-0.7096148,0.6041352,0.40946907,0.049313802,0.047555078,-0.5343766,-0.12892868,0.05891834,-0.15746103,0.42963466,0.1348854,-0.9512325,0.60341495,0.3458034,-0.46236438,-0.76567084,0.33947703,-0.0737647,-0.14336213,-0.11496148,0.4396976,0.183165,-0.113753654,-0.2419031,-0.015951118,-0.53211194,0.28251806,0.06307937,-0.1017764,0.38806987,-0.03870228,-0.408545,-0.8460639,-0.17082848,-0.6788291,-0.17559369,0.26566166,-0.030724557,-0.103760764,0.009976064,-0.15965247,0.48651257,-0.40814045,0.17245527,-0.07541033,-0.43176597,0.43647593,0.49927017,0.34039325,-0.36654353,0.65520746,0.08303114,-0.3601642,0.12982169,-0.0437773,0.42249542,0.064824924,0.4769178,-0.0905607,-0.01795243,0.36602673,0.77068466,0.081480734,0.39632463,0.23686007,-0.17002021,0.47449684,0.11368904,0.16138686,-0.041042153,-0.42236838,0.06881391,-0.11664571,0.103886366,0.66269696,0.34839335,0.41474488,0.15924038,-0.15621898,-0.03736589,0.09416484,-0.13189246,-1.2703542,0.36707577,0.1983627,0.8345167,0.24110402,0.11297226,-0.21528955,0.66763407,-0.14760931,-0.026578533,0.344971,-0.068635315,-0.29780713,0.67009544,-0.6973683,0.33293602,-0.31799677,-0.0068417513,0.3162317,0.2771705,0.35561463,0.96206105,-0.32393926,0.071186304,-0.12897612,-0.10826416,-0.037238542,-0.3234677,-0.091142654,-0.19335082,-0.49471956,0.52608204,0.31501886,0.44082713,-0.24519908,-0.04013119,0.017969217,-0.18260184,0.08052908,-0.10124024,-0.064184375,-0.045027457,-0.53538525,-0.18065552,0.5389524,0.3404849,0.28753868,-0.24570727,-0.28157634,0.21705225,-0.18211976,0.0007644977,-0.025385145,-0.6266185,-0.06055245,-0.23477945,-0.561826,0.43856445,-0.14926064,0.17265998,0.26726693,-0.08653475,-0.13315995,0.067122586,0.075139515,0.94868004,0.14178206,-0.2578134,-0.47383395,-0.033665843,0.2547546,-0.29799396,0.15982607,-0.40278748,0.060563702,-0.5733127,0.6723117,-0.22351797,-0.50435024,0.44169232,-0.31537125,-0.030937418,0.53681934,-0.19339517,-0.050054085,-0.02907272,-0.085295245,-0.29573438,-0.26650983,-0.30975834,0.25035852,0.0591528,-0.068291835,0.021962153,-0.1917026,-0.06052683,0.5483907,0.066766456,0.33651686,0.3146402,0.18209353,-0.05201123,0.2674338,0.3096853,0.5363503,0.20895068,-0.161068,-0.2539635,-0.56424665,-0.40792537,0.03116553,-0.10785474,0.20095327,0.18904154,-0.21112005,0.8104901,0.05402534,1.2365264,0.013867897,-0.3749737,0.03648488,0.65370834,-0.108702086,0.10188941,-0.33873183,0.8859577,0.6964753,-0.1045786,0.011978158,-0.48588532,0.022869054,0.42868227,-0.4446044,-0.05588283,-0.07958323,-0.49838337,-0.5345944,0.21671481,0.12584528,0.34485266,-0.09888286,0.099203266,0.09946772,0.11198555,0.39106035,-0.630343,-0.18900779,0.20705901,0.21071196,-0.20668904,0.07605963,-0.28229478,0.4521796,-0.61270094,0.064954795,-0.6057285,0.085940704,-0.10164543,-0.2319707,0.1281499,-0.18050376,0.3716131,-0.25471282,-0.4448206,0.013344957,0.35945824,0.19237688,0.037115216,0.59346694,-0.24795556,-0.10194092,0.25120902,0.63245803,1.2759513,-0.46809477,0.12097937,0.297291,-0.4252661,-0.6410624,0.36648488,-0.38572472,-0.011186489,-0.078551225,-0.5070885,-0.38891268,0.34050304,0.21730591,0.008419901,0.09655683,-0.59011537,-0.1078745,0.35296506,-0.29299185,-0.1736317,-0.09306664,0.25613636,0.69339734,-0.30058894,-0.41904116,0.10244899,0.3807459,-0.2909065,-0.7775798,-0.046714578,-0.23221502,0.3117096,0.23075593,-0.24793445,-0.088071056,0.16784164,-0.6107554,0.18543765,0.18867992,-0.36831895,0.15703966,-0.27978864,-0.1719022,0.8142026,-0.21743946,0.14985277,-0.7770389,-0.44268948,-0.85326624,-0.39683172,0.2868843,0.10820438,0.009168412,-0.46503782,-0.03401867,-0.16785999,-0.18684964,-0.031166945,-0.36776227,0.28403643,0.09571952,0.6831941,-0.32534605,-0.97251564,0.055004936,0.22124605,-0.24085872,-0.7460745,0.60476106,0.0010321991,0.8286921,0.13083561,0.024133101,0.17007668,-0.537862,0.0017717002,-0.34285745,-0.10908776,-0.7373065,0.10261743 +923,0.22104187,-0.13258417,-0.3760966,-0.20005402,-0.36723492,0.042041034,-0.24832115,0.2509107,0.18323992,-0.26643392,-0.074571095,0.06279805,0.024777897,0.37835386,-0.14262146,-0.53068435,-0.13177802,0.2175312,-0.6189476,0.44812787,-0.5708064,0.38715026,0.06965755,0.4097324,-0.058298394,0.43774122,0.18560886,-0.13290738,-0.08769935,-0.049848877,-0.1472123,0.35160345,-0.46350113,-0.00542517,-0.18063201,-0.28748718,0.057640817,-0.25913718,-0.2064633,-0.75434124,0.11129986,-0.7278481,0.4914682,-0.12818223,-0.23579493,0.098982245,0.3554474,0.4282481,-0.3471842,-0.004426023,0.19673914,-0.26502043,-0.09556091,-0.34735024,-0.07146154,-0.36443448,-0.45837063,-0.039905254,-0.67022705,-0.38601515,-0.2131377,0.24054109,-0.3179718,-0.05506617,-0.12159078,0.24341205,-0.40769607,-0.08132815,0.1971676,-0.2287114,0.2581088,-0.5018652,-0.019662548,-0.058443263,0.3461571,0.038785897,-0.21956727,0.45955276,0.21550126,0.36549738,0.1833689,-0.22874844,-0.297746,-0.1934798,0.23034966,0.3501364,-0.18338445,-0.25397378,-0.22255337,0.067397065,0.1545944,0.35681102,0.0010926574,-0.16137631,-0.042761303,0.01426206,-0.22019741,0.4153405,0.43408704,-0.21253744,-0.28538474,0.24876666,0.63568366,0.20636858,-0.41183335,0.035073422,-0.08857962,-0.5293324,-0.15088128,-0.049680673,-0.056331616,0.45426783,-0.07613075,0.054897416,0.8521899,-0.18858027,-0.11198081,-0.15633376,0.024265684,-0.050169274,-0.26223892,-0.13541985,0.10551162,-0.47814274,-0.04112211,-0.23496512,0.5141193,0.03876034,-0.6906905,0.3656147,-0.5429662,0.09198865,-0.014200762,0.5453399,0.67998403,0.51280963,0.29256144,0.7645125,-0.28305387,0.13393137,-0.09712562,-0.41849273,0.16221116,-0.27106196,0.015518181,-0.52129096,0.18390763,-0.12149683,0.07116703,0.15569858,0.45105398,-0.5495255,-0.03131334,0.18305646,0.698425,-0.39227712,-0.0046731587,0.6057273,1.0719273,0.97361314,-0.046325073,1.0035284,0.28573957,-0.21428813,0.19376759,-0.358072,-0.5239254,0.18379125,0.4184221,-0.031527273,0.37653828,-0.1316788,0.03598483,0.48134303,-0.34845912,0.01421231,0.0401094,0.38439307,0.18530281,-0.115454495,-0.5288378,-0.059226513,0.093104675,0.021914896,0.2509997,0.2329451,-0.25073984,0.35405177,-0.05957647,1.5334194,-0.020521875,0.086867884,0.07558117,0.4958005,0.35026628,-0.0710046,-0.06083726,0.5955106,0.33924997,0.013688166,-0.4738604,0.20666447,-0.30074787,-0.48358136,-0.034573145,-0.46733493,-0.16420406,-0.06433683,-0.46142703,-0.08973868,0.016550265,-0.31502125,0.37728912,-2.8074172,-0.29558703,-0.034427106,0.325444,-0.2513898,-0.23947567,-0.059178215,-0.44587946,0.355847,0.29845437,0.39556283,-0.54111123,0.5699698,0.61302805,-0.3966345,-0.19327028,-0.53208554,-0.19999737,-0.14201668,0.5624684,0.124044664,-0.08759618,-0.13969576,0.26250577,0.6409874,-0.075887926,0.1759477,0.43447214,0.29728973,0.0348097,0.57547456,-0.08430165,0.54249614,-0.1526711,-0.17456861,0.39438617,-0.31569064,0.07574165,-0.10655229,0.09467684,0.49918813,-0.33022082,-1.0117056,-0.5941537,-0.19751672,1.0561506,-0.44350964,-0.36991775,0.30258566,-0.2743551,-0.18648116,0.09557843,0.52970165,-0.03770484,0.33776143,-0.66264653,0.2226614,-0.08320419,0.10784227,0.007359432,0.055399485,-0.35505664,0.5723724,-0.078089595,0.5567186,0.29741848,0.23763597,-0.21944267,-0.2787451,0.12142731,0.65829754,0.29790068,-0.049951937,-0.033072483,-0.34561116,-0.017837986,-0.19211999,0.06479168,0.5248543,0.70854604,0.003929306,0.13398437,0.18639272,-0.10370883,-0.013560783,-0.22378156,-0.1337841,0.13738212,0.12742722,0.45332372,0.75979483,-0.21433714,0.3812092,-0.15329848,0.4204298,-0.05151207,-0.6488435,0.5115732,0.5212569,-0.22073235,-0.06824006,0.54750454,0.50132656,-0.3931572,0.43850684,-0.66833377,-0.23368579,0.71884763,-0.20907182,-0.38220835,0.2908433,-0.19661973,0.15693915,-0.7874524,0.2131499,-0.22074138,-0.28627223,-0.49467683,-0.19736427,-3.74024,0.101430625,-0.085188285,-0.14586264,-0.15239693,0.05198519,0.3603288,-0.7069524,-0.51196283,0.03989251,0.17075521,0.5368632,-0.14506154,-0.004904203,-0.32653588,-0.27550685,-0.03199721,0.3520293,-0.037814554,0.21040845,-0.27330878,-0.45901608,-0.10851304,-0.1840086,-0.72905314,0.1421888,-0.5029163,-0.4713733,-0.08234553,-0.46170515,-0.13114104,0.67075604,-0.34718046,-0.001948107,-0.19665754,0.04433568,-0.11882031,0.16103373,0.26001713,0.25391674,0.23789823,-0.008777883,0.16219237,-0.3727894,0.35589638,0.0073095113,0.23544265,0.10265003,0.023350772,0.12617192,0.48630694,0.7295331,-0.18992169,0.9599861,0.33613572,-0.16160497,0.2788656,-0.3734162,-0.27241603,-0.6084956,-0.36800304,-0.1481939,-0.40417868,-0.46515068,-0.035057418,-0.36611027,-0.712372,0.67065245,-0.009228483,0.3034219,-0.09967684,0.28119135,0.34271663,-0.18076184,-0.07971243,-0.09744718,-0.24681436,-0.48490432,-0.29919338,-0.68492085,-0.6107948,-0.023561198,0.9028691,-0.22652072,0.024534605,-0.17328197,-0.1667434,0.006495975,0.1085563,0.12784518,0.34341794,0.36256734,-0.016446665,-0.69359773,0.43459818,-0.015745025,-0.17204405,-0.49820927,0.04771624,0.53317994,-0.6760758,0.6111502,0.29972526,-0.0016305409,0.002495531,-0.5709877,-0.13668916,0.024608314,-0.2570097,0.5703814,0.10004715,-0.8146696,0.5351864,0.24255937,-0.49327934,-0.58964497,0.35586736,-0.2279345,-0.27433097,-0.2201798,0.33878204,0.1300366,-0.011667791,-0.25566685,0.21413058,-0.41821992,0.21261929,0.23098174,-0.10228505,0.3976629,-0.077566914,-0.15326424,-0.8045027,-0.04659919,-0.46364146,-0.30657318,0.24143638,-0.0011176076,-0.014409616,0.18863061,0.06836511,0.37955242,-0.2781932,0.07183711,0.06519721,-0.35223928,0.21342745,0.54296815,0.32181078,-0.3560846,0.5326177,0.10613463,-0.20197871,-0.01095178,0.0042371564,0.41150808,-0.06601819,0.3873635,-0.19496211,-0.15337244,0.43849155,0.66342,0.19899394,0.41946107,0.07769913,-0.25204363,0.344518,-0.04653491,0.080928355,0.03755364,-0.45768723,0.08721231,-0.07805847,0.1823546,0.5574641,0.3834755,0.3460922,0.18715434,-0.18411757,0.062469155,0.32029852,-0.080112174,-1.267316,0.33595932,0.36861068,0.8790759,0.3849638,0.23326081,-0.05571967,0.5767222,-0.40149724,0.059869096,0.3918721,-0.04764407,-0.43222988,0.7340878,-0.74740237,0.389265,-0.12073299,-0.080796115,0.15474387,0.030355634,0.4566003,0.7976831,-0.13245706,0.04278186,0.13557258,-0.1264829,0.07261377,-0.197337,-0.03082485,-0.30764133,-0.3284105,0.4872592,0.43709248,0.37155965,-0.20249632,0.019385412,0.198784,-0.20257394,0.23455022,-0.08268532,0.074058816,0.10058071,-0.44011346,-0.24846162,0.4370878,0.108167626,0.22881263,-0.036617476,-0.25638944,0.11510345,-0.085087895,-0.09808227,0.06685874,-0.46854526,-0.034442917,-0.13581084,-0.49412045,0.6270281,-0.29473758,0.17630379,0.13537341,0.01370215,-0.24021327,0.14979264,0.0164209,0.7163748,0.08268696,-0.1680093,-0.22583356,0.025771871,0.044217337,-0.2549243,-0.0069153085,-0.39831176,0.11539726,-0.5363827,0.5144967,-0.184401,-0.34370252,0.12750486,-0.2861957,-0.0781658,0.46965626,-0.07490802,-0.29495203,-0.04981734,-0.009157769,-0.37317985,-0.08855837,-0.2883242,0.24764983,0.10925998,-0.09568279,-0.016676098,-0.1534349,-0.15306616,0.69542694,-0.035748143,0.4703808,0.2633663,-0.16708031,-0.25586814,0.093088716,0.34873226,0.30381253,0.08895537,0.115602136,-0.28034413,-0.41920397,-0.39793456,0.2430343,-0.22294214,0.2395936,0.08712895,-0.26857796,0.91139966,-0.042432997,1.1561253,0.0075649098,-0.41113073,0.19267693,0.5585066,-0.059795007,0.13340658,-0.4531984,0.8348719,0.56146157,-0.1896185,-0.12086217,-0.48714107,-0.04960672,0.3027426,-0.4558743,-0.13971247,-0.1445072,-0.6322966,-0.4744858,0.15336254,0.16360703,0.28433084,-0.032681286,-0.1052438,0.05577688,0.110498175,0.32083094,-0.5184386,-0.26615497,0.31877854,0.292513,-0.24451283,0.063555166,-0.36225542,0.48859897,-0.3973998,0.13113892,-0.40817595,0.10350711,-0.2909239,-0.28073755,0.14452492,-0.044470716,0.2047784,-0.14789343,-0.3737833,-0.061515927,0.3419801,-0.055028174,0.10686902,0.6169755,-0.2576424,0.11173195,0.08839859,0.4501239,1.1491249,-0.41396382,0.009706631,0.420269,-0.41366833,-0.60794795,0.32820618,-0.28904504,0.0075200424,0.023104195,-0.49482137,-0.49834162,0.21339445,0.046738666,0.016406953,0.044118233,-0.41416904,-0.043557398,0.4061264,-0.26399153,-0.11153664,-0.09942213,0.30795887,0.73154306,-0.341306,-0.3639122,0.039157063,0.31835717,-0.2614797,-0.46673822,-0.052255243,-0.13962643,0.48530686,0.15316261,-0.333382,-0.032679893,0.23953462,-0.49926177,0.09896672,0.39270288,-0.34422538,0.13475631,-0.18303333,-0.028634254,0.8925899,-0.2215828,-0.08729808,-0.62280464,-0.48523575,-0.9442431,-0.4108209,0.22564334,0.15818092,-0.11863479,-0.4486669,0.09311427,-0.14164197,-0.23842563,0.03888827,-0.4841021,0.28820226,0.20038444,0.51474565,-0.25748855,-0.7959789,0.060325664,0.12461272,-0.15430662,-0.60814744,0.747574,-0.24324231,0.75831944,0.019857313,-0.0059736874,0.15241255,-0.3226406,0.14592153,-0.3168915,-0.063085794,-0.7995783,0.002300948 +924,0.32967356,0.06639375,-0.57445484,-0.2471886,-0.19764756,-0.027870135,-0.1815614,0.0827632,0.32789087,-0.017232107,-0.03768483,0.031941257,0.018998465,0.24920085,-0.10702928,-0.9669891,-0.034465816,0.014390305,-0.42210367,0.4834546,-0.45767912,0.47547105,-0.0129390955,0.38839537,0.07357759,0.4541622,0.23309512,-0.04854623,-0.12027614,-0.010507479,-0.21467413,0.30552694,-0.7534639,0.08957092,-0.06964575,-0.24282752,-0.0052427053,-0.15019627,-0.37728548,-0.70966065,0.4295301,-0.7845702,0.636823,0.08068187,-0.32234138,0.052129857,0.14740203,0.20425312,-0.41577762,0.14495704,0.17739275,-0.41966745,0.073264465,-0.17925726,-0.29349184,-0.5667244,-0.6213074,-0.03990416,-0.7153602,-0.17666534,-0.47657079,0.16726772,-0.37148625,-0.19342472,-0.25989076,0.38030434,-0.3868484,0.100864954,0.19791816,-0.25916353,0.08671014,-0.40024376,-0.19722976,-0.14090471,0.24171737,0.10161601,-0.28362924,0.4342375,0.41593748,0.46578804,0.17897804,-0.28925055,-0.26409715,-0.13535348,0.24983807,0.34224185,-0.15136679,-0.34757218,-0.32351685,-0.16881725,0.10576943,0.38693455,-0.13375752,-0.32716092,0.12129603,0.21394168,-0.12684913,0.43502077,0.5562163,-0.2662527,-0.29351273,0.3458561,0.25499466,0.038904138,-0.2791222,0.24508728,-0.010450986,-0.55334276,-0.22724476,0.15810804,-0.15870725,0.6056064,-0.073814094,0.04099496,0.8275885,-0.19958016,-0.112058654,-0.3840117,-0.00058957085,-0.124241054,-0.32165042,-0.036048528,0.19749263,-0.35058665,0.18357992,-0.19659789,0.65096956,0.18022408,-0.7707495,0.37226656,-0.6277442,0.13322793,-0.18461971,0.64506245,0.87763757,0.2782642,0.39932555,0.9531375,-0.5512031,0.050904304,0.20452574,-0.5090123,0.19016087,-0.23956037,-0.024535758,-0.43212047,-0.0039265626,0.04059779,0.0067409384,0.15252638,0.29073414,-0.35350534,0.0042795017,-0.074569575,0.71699893,-0.38630968,0.012280379,0.8809175,1.0020019,0.7986025,0.07515937,1.2340767,0.48132855,-0.15906824,0.07828612,-0.38737026,-0.5677841,-0.021491949,0.2569779,-0.3351256,0.28348696,0.16930781,0.06618579,0.47018296,-0.3880856,-0.012808646,0.008372434,0.20346744,0.01629855,-0.12906107,-0.32748842,-0.04605919,0.072826676,0.029371228,0.13250165,0.29081315,-0.19160774,0.42097664,0.14383051,1.1101463,0.14356065,0.012353632,-0.03132769,0.39259866,0.42461258,-0.1612116,-0.08842688,0.43579546,0.44468382,-0.0035546932,-0.55026853,-0.03933726,-0.30950683,-0.42902726,-0.21714921,-0.43300548,0.020193549,0.038028475,-0.42765808,-0.08928845,0.14005977,-0.24328195,0.44169322,-2.5981853,-0.12657672,-0.096238784,0.23110603,-0.059763543,-0.24116646,-0.24595013,-0.5612469,0.30445322,0.3607922,0.25018874,-0.55315447,0.22234948,0.31582016,-0.32606193,-0.14862467,-0.572753,-0.07011564,-0.13356401,0.41672078,-0.07946099,-0.08497814,-0.13510534,0.3396366,0.6817304,0.14454024,0.036618393,0.08510905,0.43839765,-0.13065541,0.50715935,0.11513138,0.57719135,-0.04643582,-0.30818543,0.32523513,-0.2994587,0.34665182,0.026749356,0.16300532,0.4435358,-0.45838982,-0.91138774,-0.55935514,-0.48068443,1.0535704,-0.39330724,-0.3976689,0.3319237,-0.15286934,-0.3511866,0.043513052,0.6495462,-0.20716561,0.1523163,-0.6306376,0.096659556,-0.11752321,0.17518805,0.0065820483,0.24969958,-0.2264329,0.73336613,-0.181896,0.26789635,0.25572392,0.14963432,-0.18754303,-0.5500762,0.17066622,0.83365303,0.37188783,0.003752968,-0.16958418,-0.18960264,-0.09925105,-0.28038046,0.12501253,0.5941647,0.7193964,-0.079435065,0.03380899,0.24536486,-0.19348209,-0.053051088,-0.13733728,-0.3468435,0.049841773,0.063611925,0.5284538,0.61544603,-0.20008738,0.42581373,-0.08509069,0.23118567,-0.11128148,-0.56570286,0.66385496,0.99733627,-0.025822412,-0.11861301,0.8156249,0.42727062,-0.34540504,0.4399918,-0.624632,-0.21572231,0.73537916,-0.17364763,-0.42415252,0.16622402,-0.38639894,-0.019836145,-0.92443746,0.17227888,0.08425385,-0.5010561,-0.5350827,-0.1982899,-4.6227293,0.09807801,-0.22894092,-0.042332616,-0.15931857,-0.16618688,0.4752521,-0.52401555,-0.510933,0.2177342,0.08880174,0.4797731,-0.21118645,0.1886548,-0.36377528,-0.18519685,-0.1239201,0.38278368,0.27750435,0.29323244,-0.031545248,-0.38979134,0.09318935,-0.20356211,-0.631627,-0.11240333,-0.36368254,-0.5962731,-0.15554376,-0.5848349,-0.2989924,0.8498824,-0.55140454,-0.100780554,-0.23849523,-0.020521015,-0.24206138,0.40916035,0.39060903,0.34101194,0.12391204,0.18264525,-0.15081565,-0.35179597,0.23922995,0.12944402,0.30857986,0.3259353,0.07278415,0.098868154,0.48239,0.53655463,0.012550997,0.8869804,0.28735763,-0.09992744,0.26277456,-0.5033282,-0.32512292,-0.98575485,-0.4603908,-0.4457278,-0.47549954,-0.5209076,-0.22868347,-0.3645037,-0.8225395,0.47923976,-0.03472815,0.31201443,-0.14374371,0.39304203,0.27596682,0.0008851247,-0.102126226,-0.09985872,-0.24987094,-0.44139275,-0.27774018,-0.50603694,-0.68657887,0.12669475,0.726904,-0.13847235,-0.16385423,-0.069353394,-0.37783903,0.040978003,0.054376718,0.35663837,0.27239242,0.44680372,0.10610281,-0.7053589,0.47358757,-0.16834481,-0.09034599,-0.91704845,-0.13813487,0.587245,-0.7867704,0.6614236,0.35063124,0.22755061,0.08151204,-0.6319321,-0.41096088,0.19213428,-0.20410864,0.6623515,0.2447178,-0.7239455,0.57339126,0.041777473,-0.035647534,-0.5891438,0.5346018,-0.057510562,-0.28293163,0.19415888,0.36428595,-0.13819918,-0.08781787,-0.026084503,0.3841549,-0.35995704,0.21499498,0.4915771,-0.039318077,0.67775875,0.0018521185,-0.20451845,-0.7745558,-0.042822544,-0.5472077,-0.24410672,0.154125,-0.003421726,0.09960441,0.08871362,-0.18237714,0.37824425,-0.23724213,0.2504478,-0.09731025,-0.16485827,0.22582316,0.53149885,0.2910606,-0.5642271,0.6317429,0.15968189,-0.094996266,0.022624284,0.20980084,0.53709525,0.07614399,0.40732163,-0.064884976,-0.14521435,0.06522913,0.66823775,0.22685862,0.49818072,0.24758425,-0.12567408,0.37420702,0.19185317,0.07172785,0.06170237,-0.21039243,-0.079580955,0.037345946,0.19127558,0.4919746,0.11215081,0.32338995,-0.16539904,-0.1836785,0.37503406,0.26769236,0.1384527,-0.97384685,0.43511185,0.24165504,0.6840891,0.57978344,0.08319491,-0.071409516,0.3866009,-0.29478127,0.19370396,0.3870626,0.06825425,-0.4269028,0.51273805,-0.49724188,0.47224116,-0.11847062,-0.015924526,0.106455505,0.20313223,0.35564017,1.1057407,-0.13498417,0.12876584,0.13997671,-0.18274471,0.17562962,-0.20106378,0.07741941,-0.4269071,-0.36780426,0.62053543,0.41518566,0.20938039,-0.33647108,-0.056697875,-0.08280599,-0.12194603,-0.10565518,-0.18286465,-0.016912771,-0.058236003,-0.55771434,-0.525956,0.5693574,-0.026027964,0.037099395,0.06481456,-0.32694897,0.24528448,-0.14317219,-0.13989887,-0.00086231955,-0.56559604,-0.0029572845,-0.3474087,-0.6416489,0.6008654,-0.57111925,0.3578401,0.17944972,0.023209935,-0.4796899,0.15220201,0.25820893,0.7998727,-0.041132372,-0.07157155,-0.4143751,0.049001228,0.41451088,-0.3321999,-0.18136515,-0.41210222,0.09605193,-0.55136734,0.36913797,-0.293556,-0.3071506,-0.35178158,-0.12612464,0.008431422,0.41769025,-0.24780855,-0.25884372,0.12846185,0.007562884,-0.28509256,-0.065952964,-0.255444,0.23981176,-0.05084441,-0.08867715,0.041337106,-0.12786335,-0.35775343,0.23099232,0.013394488,0.3372044,0.27495685,-0.064005494,-0.21929021,-0.08564746,0.07221285,0.37709117,0.045726676,-0.10978985,-0.14896642,-0.38226053,-0.31174025,0.21455492,-0.18174039,0.16017434,0.08500532,-0.58478546,0.6948659,0.18165953,1.1624416,0.115299426,-0.4051186,0.086598836,0.51690733,0.042784214,0.11996548,-0.27646944,0.9936391,0.6834302,-0.19743636,-0.24061318,-0.32116333,-0.07167997,0.22959457,-0.29170418,-0.25847426,-0.10295378,-0.70077735,-0.1985854,0.03608266,0.26613265,0.10545536,0.025313748,-0.17770936,-0.0215091,0.2980948,0.4002417,-0.46724123,0.002246627,0.3641874,0.22634998,0.08731251,0.29505798,-0.21342981,0.46859327,-0.57560503,0.16952477,-0.68685913,0.16651511,-0.15043476,-0.2685548,0.1491655,-0.05359567,0.3756465,-0.22448623,-0.20550522,-0.35268718,0.6143018,0.120858684,0.22689272,0.7324247,-0.20745358,0.12006321,0.1467292,0.5509233,1.4466027,-0.22783129,-0.054131526,0.33188084,-0.26658034,-0.53783023,0.14268948,-0.38980213,0.093697794,-0.21778846,-0.37599322,-0.34086356,0.15661462,-0.04422056,-0.066100046,0.060260303,-0.5523102,-0.328342,0.3200573,-0.17807308,-0.237341,-0.25691578,0.31779402,0.78179085,-0.44000462,-0.2719261,0.025071954,0.16415703,-0.28647995,-0.6029411,0.0894024,-0.17346303,0.49648628,0.0697968,-0.41995737,0.13731427,0.46268627,-0.48798847,0.3138903,0.4423537,-0.3495431,0.05518878,-0.007088993,-0.11546803,1.1541101,-0.12502353,0.048895817,-0.5992548,-0.513703,-1.022033,-0.39787748,0.32879072,0.25618905,0.069930054,-0.48714873,-0.031748764,-0.057305243,0.18257363,0.15098538,-0.6327548,0.3955396,0.08267232,0.6831532,-0.037003525,-0.8628286,-0.17172106,0.18584742,-0.23119865,-0.5569201,0.6268687,-0.2852617,0.7978509,0.013935568,0.030682666,0.19921395,-0.57325274,0.3046148,-0.28929278,-0.13709255,-0.71909136,0.06344426 +925,0.4837763,-0.13054276,-0.3743717,-0.13382354,-0.29302353,0.16380695,-0.16888033,0.6013732,0.1814766,-0.37420857,-0.17026988,-0.23926635,0.019219436,0.35273108,-0.032173585,-0.33183512,0.050993297,0.22549678,-0.46360287,0.3862008,-0.45676926,0.15342137,-0.08670674,0.42371833,0.19240507,0.14132404,0.038051926,-0.004904514,-0.10650194,-0.09729461,-0.058635414,0.2830956,-0.4305432,0.14364499,-0.25267255,-0.29217336,-0.1173728,-0.49576262,-0.32179356,-0.6624674,0.19654302,-0.7384462,0.43573475,-0.0390983,-0.30723113,0.39477283,-0.045273088,0.24552736,-0.22498682,-0.013012344,0.08588587,-0.14545986,-0.1175538,-0.11422994,-0.2588223,-0.30639338,-0.44422373,0.124834105,-0.3889733,-0.06022218,-0.24232034,0.072634414,-0.2161494,0.01862111,0.044157855,0.29645255,-0.4123922,-0.037363566,0.13718727,-0.00076510385,0.21881592,-0.52948666,-0.08291741,-0.18473217,0.31572035,-0.15111654,-0.35746157,0.24146491,0.26496124,0.49774027,-0.12156439,-0.091993354,-0.2788075,-0.013011668,0.040025786,0.4263227,-0.12589295,-0.38411522,-0.15579903,-0.0861917,0.33566988,0.20368838,0.15877414,-0.10797426,-0.26020437,-0.08276709,-0.20316592,0.29682022,0.5304754,-0.3801867,-0.22849096,0.35639971,0.5823481,0.34651554,-0.13616088,0.12322593,0.025002135,-0.5753614,-0.12454966,-0.06233402,-0.23323269,0.45309117,-0.19166611,0.24936157,0.5582199,-0.13319296,-0.040193357,0.12779233,0.036611613,-0.110354856,-0.21220909,-0.16371915,0.23020361,-0.4090333,0.12207153,-0.10307327,0.6105331,0.1755456,-0.656602,0.31452763,-0.53932416,0.14753272,-0.0801152,0.57265675,0.85549283,0.40521842,0.2847488,0.68556535,-0.30019748,0.05918112,-0.14235993,-0.18562846,0.060177848,-0.21772462,-0.11803693,-0.5105171,0.052153032,0.042624816,-0.14664856,0.17809224,0.42321724,-0.5001931,-0.11751489,0.20304601,0.6220741,-0.2731465,-0.1681836,0.8008867,0.96488714,0.9079512,0.07092089,1.0246873,0.0918611,-0.1382167,0.2641712,-0.22572741,-0.6514147,0.28071105,0.31672874,0.2764951,0.17621744,0.2199004,0.005213218,0.36843675,-0.50202864,0.0036742054,-0.12638003,0.036191493,0.11487744,-0.02753672,-0.35972947,-0.2555259,-0.11609025,0.09219764,0.0056869164,0.2432936,-0.21868551,0.38851398,-0.053786583,1.5622597,0.052592784,-0.013744265,0.051871255,0.47897637,0.125523,-0.16320439,-0.18229729,0.36106777,0.3193438,-0.081430756,-0.48964188,0.11505164,-0.14920811,-0.50405717,-0.016559795,-0.36160907,-0.21182992,-0.090427525,-0.54256845,-0.14194097,0.01493502,-0.40424287,0.5427287,-2.9295983,-0.2376806,-0.026809815,0.3224451,-0.14377472,-0.25038505,-0.16717106,-0.33536124,0.2722362,0.4143067,0.41292274,-0.5994443,0.33298782,0.30852836,-0.5190536,-0.09505069,-0.5866907,-0.13539267,-0.022835888,0.22517408,0.08338265,-0.027637228,0.06210123,0.17707063,0.5529734,0.06665928,0.12769374,0.2929169,0.36310345,0.023004971,0.34415647,-0.07618599,0.450733,-0.24487999,-0.26757136,0.3076927,-0.29564255,0.23802334,-0.088938996,0.1361633,0.45255774,-0.42487353,-0.8710928,-0.63953805,-0.17709704,1.1696779,-0.2588591,-0.35450906,0.23662388,-0.5437482,-0.19657081,-0.13656265,0.5491578,0.008963279,-0.054778755,-0.7465188,-0.04153043,-0.04072128,0.14772068,-0.10605361,-0.0064500384,-0.32907498,0.72637594,-0.15855631,0.43584302,0.31079432,0.097917125,-0.09450726,-0.39952064,0.0441083,0.735585,0.3409452,0.14686428,-0.28681248,-0.22673124,-0.44565544,0.053932518,0.15240176,0.4144777,0.56327426,-0.027958162,0.19938844,0.22881809,0.012668377,-0.08045549,-0.16625322,-0.076699644,-0.073398404,-0.037298903,0.5134498,0.62708765,-0.13737251,0.47145584,-0.08941637,0.14212868,-0.2161436,-0.44714782,0.46677163,0.7175052,-0.2587725,-0.14882198,0.53005975,0.55816257,-0.21404156,0.36694196,-0.6750507,-0.3211152,0.46354568,-0.09697704,-0.3519322,0.25788414,-0.3104447,0.17375831,-0.8407056,0.22294955,-0.02562689,-0.5063428,-0.5287409,-0.05706361,-3.0447953,0.18383585,-0.08664709,-0.27469704,-0.025788926,-0.26207703,0.25212583,-0.4568206,-0.5227566,0.054973163,0.0215308,0.7724054,-0.09925931,-0.019831747,-0.22914715,-0.434955,-0.36996523,0.113554165,0.072774164,0.47498876,-0.07750878,-0.38824433,-0.02304846,-0.23741856,-0.27864796,-0.070002615,-0.5502839,-0.4181043,-0.21479826,-0.38477823,-0.18978493,0.51422596,-0.3953754,0.030928934,-0.28516757,-0.08251702,-0.057409607,0.29187047,0.07869114,0.012058027,0.09284272,-0.094699875,0.014675744,-0.24990648,0.25184992,0.036669023,0.07544512,0.43745267,-0.07720066,0.28223416,0.61990047,0.60809934,-0.22352338,0.87796366,0.4738622,-0.021205202,0.30591556,-0.20741974,-0.21641842,-0.43333498,-0.19137843,-0.037920088,-0.52410173,-0.4251744,-0.07659709,-0.3208692,-0.7911659,0.4678989,-0.13289931,0.1307941,0.071693614,0.23908396,0.5950781,-0.23790303,0.020127438,-0.1112065,-0.08113138,-0.45606017,-0.4262659,-0.5933192,-0.4258847,0.1093759,1.0607263,-0.17639409,0.060782194,0.091034174,-0.16393133,0.013075485,0.06593953,0.077984594,0.08614348,0.36925545,-0.16474694,-0.4743475,0.4016956,-0.13513134,-0.19541362,-0.56378007,0.12653768,0.49173486,-0.5860842,0.4390688,0.36379075,0.07627508,-0.1475734,-0.61332834,-0.16374701,-0.16982548,-0.28078133,0.36952183,0.23000523,-0.83155626,0.49432364,0.306513,-0.15724567,-0.7591249,0.5414626,-0.10005529,-0.21883765,0.03804161,0.2625816,0.13410784,0.014547138,-0.17786992,0.18016328,-0.41841766,0.3457772,0.27342194,-0.037410907,0.29572928,-0.3169787,-0.038734414,-0.5823355,-0.17605463,-0.48567232,-0.2247521,0.18534923,0.12068936,0.18967852,0.13854803,0.13624862,0.34495735,-0.3337397,0.09407629,-0.10190093,-0.21618034,0.2751428,0.42581326,0.5637073,-0.3378356,0.5915611,0.0030845087,-0.07846172,-0.046696108,-0.04461203,0.3091375,-0.050505012,0.3641544,0.018752575,-0.2468719,0.116419226,0.7688757,0.2209444,0.34621796,-0.004088726,-0.25192153,0.23419727,0.11218052,0.260941,-0.08651738,-0.4788695,0.018278878,-0.34313804,0.1647267,0.3559572,0.1521256,0.27791882,-0.02556058,-0.20481163,0.02710819,0.062966794,-0.05235767,-1.2534649,0.24226655,0.20774326,0.81076247,0.40290633,-0.025813192,0.0879869,0.58812165,-0.14247172,0.10103309,0.3905856,0.0134532675,-0.4983071,0.42616892,-0.7310687,0.5385201,-0.13534391,-0.064566635,0.12313878,-0.074712396,0.47713482,0.7054833,-0.14020197,0.0066036787,0.19848399,-0.3324036,0.17786041,-0.37385178,0.032463737,-0.6670412,-0.19089778,0.6097052,0.44042927,0.32584733,-0.24860084,0.026504826,0.01886399,-0.13321595,0.029474005,0.09599243,0.14180104,-0.14415888,-0.66385716,-0.103483126,0.44637045,-0.023194429,0.13522053,0.07355725,-0.29975906,0.15002963,-0.15140006,-0.10506934,-0.04555869,-0.51297677,-0.18336125,-0.2939423,-0.44468912,0.45330408,-0.175338,0.40137938,0.23573893,-0.0061554024,-0.24076712,0.44181332,0.12994328,0.7496761,0.07671708,-0.13064069,-0.2973569,0.2543014,0.2516809,-0.19862492,-0.20076191,-0.20519568,-0.06341762,-0.43568677,0.34870684,-0.14754659,-0.36462083,0.16471413,-0.0684125,0.017759815,0.4396885,0.02345189,-0.102084376,-0.07884568,-0.194363,-0.27053738,-0.06922804,-0.10123651,0.35225955,0.056550752,-0.15905568,-0.1189484,0.013143782,0.09483361,0.3581669,-0.00044236332,0.30377376,0.33022806,0.065971315,-0.2924561,-0.019101862,0.049699232,0.49629405,-0.004331207,-0.20689277,-0.2764871,-0.35561067,-0.31007868,0.14562541,-0.13306151,0.37122053,0.17673963,-0.10333543,0.7120188,-0.011741411,0.9529859,0.08311955,-0.27470943,0.20926788,0.4414964,0.06039977,-0.08067811,-0.3346842,0.69386184,0.31944853,-0.056757595,-0.16293767,-0.20038,-0.019465808,0.2072185,-0.19342232,-0.23409511,-0.08843161,-0.61988723,-0.17011392,0.23183854,0.23633943,0.30522862,-0.14199816,0.10371652,0.31201112,-0.068130456,0.28230935,-0.26099277,-0.15156537,0.3983692,0.29894045,-0.056828175,0.07512303,-0.30545086,0.4467715,-0.5685471,-0.18064252,-0.2319034,0.18905029,-0.24515012,-0.40195906,0.20713395,0.14965303,0.35621667,-0.18733773,-0.23212244,-0.34927988,0.46576437,0.12415297,0.20375068,0.35169613,-0.18950999,-0.022995822,0.076257266,0.3361108,0.9644681,-0.2701202,-0.03204511,0.3669685,-0.21893972,-0.5241178,0.4219696,-0.5009935,0.3904143,-0.018966418,-0.14226963,-0.5309374,0.30935642,0.19904079,0.10439494,0.072050154,-0.5523756,-0.09168984,0.27846968,-0.16944773,-0.17835297,-0.32318193,0.07974889,0.5277694,-0.1487049,-0.35128158,0.030019121,0.31736705,-0.18396182,-0.5224314,0.12793148,-0.36257416,0.21895266,-0.0955152,-0.34049943,-0.027228922,0.0008947626,-0.41844627,0.15333602,0.116385415,-0.28015646,0.12809674,-0.449223,0.19852851,0.94257057,-0.1929034,0.22998884,-0.45061272,-0.51905715,-0.85150063,-0.2578541,0.45257717,0.26557463,-0.027523696,-0.53196925,0.08519125,-0.12808189,-0.28992805,-0.09436465,-0.25480273,0.41277534,0.15730974,0.34056503,-0.024546735,-0.68769455,0.14773437,-0.07156797,-0.28328064,-0.43774408,0.48446718,0.012321252,0.8608335,0.1562739,0.11305862,0.15567179,-0.4835959,0.057414167,-0.15900533,-0.0014420673,-0.5004947,0.08435792 +926,0.2830985,-0.34855056,-0.37845054,-0.13836396,-0.07166735,-0.028341135,-0.16206764,0.6584767,0.045927253,-0.37221503,-0.1873707,-0.31918895,0.036939975,0.39727962,-0.10840008,-0.51398414,-0.1597143,0.08141615,-0.5162901,0.54102015,-0.34483898,0.053239126,-0.05372094,0.41956636,0.39398554,0.27903488,0.058232486,-0.07863466,-0.0983578,-0.22687846,-0.1190991,0.1433597,-0.61554396,0.3045957,-0.08844227,-0.09332154,-0.0635188,-0.62946016,-0.48000658,-0.7051635,0.29611382,-0.81688637,0.3626915,0.12448779,-0.12585662,0.29263663,0.22568047,0.36910498,-0.2583545,-0.1454276,0.29043892,0.022423124,-0.012169232,-0.15800503,0.03424572,-0.37966368,-0.5694201,0.0073209503,-0.24342103,-0.5383565,-0.20488296,0.20543809,-0.26655075,-0.069042124,0.008030142,0.7266386,-0.41018972,0.19153546,0.19479807,-0.14236312,0.31786874,-0.6558166,-0.25527987,-0.11963568,0.26731697,-0.09277898,-0.19069932,0.24884023,0.32575178,0.123660825,-0.14612718,-0.027396843,-0.094356455,-0.19299786,0.24927194,0.4494382,-0.19082348,-0.67168283,-0.0065178475,0.10972839,-0.055405717,0.096696556,0.1907661,-0.5702805,-0.27619803,0.062025014,-0.34024838,0.3847781,0.3445121,-0.10408863,-0.23272176,0.34552345,0.4716027,0.27532098,-0.18606178,-0.11950765,-0.012531522,-0.5830224,-0.024856046,0.00891821,-0.13941789,0.50099117,-0.15883557,0.25977054,0.7316447,-0.10534856,-0.17143638,0.07746946,0.09382134,-0.025730083,-0.39881405,-0.3346274,0.1514631,-0.30145547,0.18910265,-0.15129258,0.7792063,0.21318097,-0.73869294,0.3527346,-0.59695035,0.2207402,-0.122568816,0.4441551,0.6849923,0.38475823,0.43267003,0.56058997,-0.40017048,0.1223816,0.029305005,-0.40110663,0.108946264,-0.23093636,-0.16904481,-0.4886178,-0.011364897,-0.07869207,-0.043865066,0.10828421,0.29520962,-0.5642882,-0.022120014,0.09342783,0.9626191,-0.2243789,-0.03147633,0.5904819,0.85758835,1.069265,0.010304034,0.96768755,0.1263979,-0.2908842,0.41204223,-0.2777329,-0.739196,0.33162832,0.4204639,0.094877124,0.207087,-0.06535522,-0.02665553,0.34054407,-0.33963537,0.21936388,-0.20770468,0.14173199,0.33672276,-0.29541764,-0.38022423,-0.2779011,-0.12022679,-0.07664485,-0.11755333,0.025600294,-0.24722074,0.44336048,-0.070639335,1.750286,0.07363098,0.11663211,0.09940896,0.5332112,0.11861381,-0.2453196,-0.00990815,0.5454106,0.45277992,0.34987918,-0.46351242,0.2903919,-0.2544376,-0.44623676,-0.06953018,-0.44787255,-0.17212401,-0.035963196,-0.2619938,-0.1916004,-0.13498247,-0.10665398,0.44782138,-2.9975662,-0.166508,-0.2196601,0.2829611,-0.22460945,-0.18782575,0.025305254,-0.3827786,0.3992388,0.3886217,0.6101354,-0.59605974,0.29654035,0.3694903,-0.52795994,-0.2717469,-0.5482738,-0.0074426583,0.01279413,0.47594902,-0.072741546,0.055184823,0.028368458,0.13251399,0.5180369,0.00020088255,0.10096424,0.2960081,0.4378442,0.09313921,0.6297539,-0.119899474,0.38479328,-0.22789876,-0.14820272,0.27178597,-0.45662633,0.29755208,0.025364855,0.04797517,0.48411727,-0.40329528,-0.92449504,-0.6268139,-0.20098512,1.0787004,-0.3280361,-0.30276394,0.3316017,-0.37992707,-0.18203144,-0.15373766,0.40004167,-0.14217955,-0.0033690135,-0.76506805,0.017308736,-0.035410013,0.23344056,0.03723717,-0.25962463,-0.43861946,0.6457249,-0.02759699,0.43858984,0.3346441,-0.023876548,-0.47473896,-0.47033748,-0.07119563,0.88028914,0.29309538,0.08447528,-0.07361693,-0.15343122,-0.33138335,-0.12928842,0.12556197,0.6063909,0.4427185,0.018053642,0.18444197,0.28014985,-0.06668157,-0.01502952,-0.22128464,-0.26499316,-0.13356532,-0.0152456565,0.5651147,0.5977089,-0.11626843,0.50195414,-0.06171212,0.31301576,0.07198911,-0.41345295,0.45197856,1.130462,-0.026746439,-0.3725934,0.447479,0.4432713,-0.3165765,0.34146062,-0.35231963,-0.053046893,0.68731403,-0.25694665,-0.5936335,0.37808546,-0.19958687,-0.0149666965,-0.7838573,0.27762377,-0.24831675,-0.53052264,-0.6415878,-0.21539076,-2.9852803,0.14991964,-0.23675281,-0.45301422,-0.24066897,-0.041560177,0.10105565,-0.5984865,-0.40902996,0.14971988,0.060952794,0.61650574,-0.10585266,0.085342795,-0.21899408,-0.09965164,-0.3377477,0.1847683,0.045176487,0.28130627,0.023656866,-0.39901194,-0.071412206,-0.14863698,-0.48655602,0.117869474,-0.5093012,-0.42101955,-0.09950348,-0.52070665,-0.34704408,0.67578703,-0.3307484,0.036167957,-0.11341039,0.07901011,-0.1577618,0.23659122,0.26226074,0.1679162,-0.08328185,-0.013042524,0.00016380847,-0.3058711,0.32386142,0.012818457,0.4020119,0.24147503,-0.11417546,0.29152378,0.36533603,0.6790321,0.016202722,0.7338097,0.4507219,-0.052437514,0.34267876,-0.33007905,-0.29790065,-0.42713484,-0.24811791,0.16842882,-0.31167218,-0.48354074,0.02945236,-0.30225644,-0.6047805,0.40996572,-0.064671345,-0.068109274,0.022272259,0.20259582,0.5515944,-0.18177183,-0.029882148,0.02736637,-0.06619203,-0.62624997,-0.13064843,-0.5686547,-0.5355106,0.14461851,0.86069155,-0.2562864,-0.099064715,-0.13685636,-0.5050919,-0.012228116,0.25277755,-0.21914291,0.358984,0.31278214,-0.10934558,-0.75477546,0.44203737,-0.17734073,-0.33678102,-0.53156954,0.2717123,0.5781444,-0.5222601,0.71171635,0.22707379,-0.034139443,-0.24516475,-0.36167648,-0.2414825,-0.16622393,-0.2582625,0.28106442,0.08231603,-0.6108025,0.3294505,0.35323167,-0.25029415,-0.7051196,0.4105363,-0.0854039,-0.2804567,0.10078601,0.31731912,0.1399524,-0.036901202,-0.10529119,0.22286119,-0.3984714,0.13798606,0.16075586,-0.0037501454,0.20618725,-0.05341019,-0.056899797,-0.7471941,0.15537955,-0.36131665,-0.3886299,0.4835309,0.17178255,0.2046082,-0.018993502,-0.030760124,0.32585466,0.049180955,0.084091045,-0.13976987,-0.1798837,0.31743145,0.4644703,0.37517717,-0.57868564,0.5493864,0.06372369,-0.020483196,0.1503823,0.09593892,0.21910189,0.19935465,0.39393187,0.014344673,-0.26314187,0.24401908,0.690811,0.18512283,0.601293,0.11596588,-0.006273652,0.28654888,-0.05739985,0.18674664,0.1508333,-0.616694,0.023072824,-0.1701724,0.15363942,0.51299137,0.109776996,0.25394756,-0.14890516,-0.39396355,-0.0016495181,0.3673698,0.26514688,-1.1560036,0.46745703,0.2928051,0.9287236,0.4798578,0.006476074,0.014810597,0.8988347,-0.016790546,0.010199149,0.31814936,0.027365476,-0.68222624,0.5546498,-0.8505187,0.44933936,-0.027524948,-0.051021397,-0.005633384,0.064419515,0.4940853,0.57026225,-0.1968114,-0.06623839,0.05190423,-0.29289216,0.28641397,-0.5660091,0.25472537,-0.37261906,-0.3353615,0.4068925,0.6000704,0.20579238,-0.18556315,0.06554074,0.076935686,-0.22233248,0.1461872,0.016100561,-0.052335262,0.029280834,-0.94092983,-0.16038255,0.5214936,-0.26458237,0.32775494,0.16003491,-0.17610367,0.37854585,-0.18629234,-0.08661842,-0.11364464,-0.57670075,0.22981954,-0.09377063,-0.5513529,0.4414502,-0.13601969,0.21284492,0.25081238,0.011414657,-0.107318215,0.3896316,0.066090785,1.0694281,-0.18665159,-0.22048597,-0.38197646,0.21262453,0.07980361,-0.13280754,-0.09272241,-0.3416327,-0.108357064,-0.5160718,0.61183673,0.11465508,-0.37689766,-0.14677201,-0.14484145,-0.05579604,0.69017,-0.107857294,-0.1197291,-0.21224773,-0.2776928,-0.04727741,-0.049198765,-0.05550389,0.34744096,0.3069953,0.096141815,-0.12053757,-0.07683592,-0.22295402,0.52287465,-0.06913292,0.53196937,0.34143522,0.1480693,-0.32575792,-0.28886354,0.10274144,0.5080032,0.3090792,-0.18506481,-0.23542118,-0.40853497,-0.3627356,0.20053361,-0.07313117,0.5945804,0.15535207,-0.36987412,0.64024967,-0.2074461,1.2597713,-0.07813324,-0.39975056,0.23022904,0.56465054,0.105622105,0.026487073,-0.34635386,0.6391993,0.4697069,0.00021147728,-0.007550703,-0.35546616,-0.0312945,0.054387778,-0.15956692,-0.23816828,0.011542037,-0.59864193,-0.27177534,0.07426671,0.17040826,0.34859458,-0.12684469,-0.11631233,0.26134464,-0.13348368,0.28570345,-0.22787638,-0.079237044,0.18131618,0.22475976,-0.004557828,-0.12595688,-0.5998834,0.45763645,-0.36555302,0.15884243,-0.3323708,0.19225286,-0.21837719,-0.20918871,0.1818815,-0.056747615,0.36133492,-0.3252441,-0.288788,-0.2117585,0.66357654,0.194592,0.19632046,0.5752728,-0.25484505,0.07459853,0.032954264,0.52340466,0.8587578,-0.36277202,-0.11050445,0.39438704,-0.5153282,-0.61540014,0.3693092,-0.28546077,0.3174193,0.09103241,-0.0012658039,-0.47406983,0.16484794,0.2843791,0.07137938,-0.11060875,-0.6592969,-0.34512684,0.39128542,-0.35689092,-0.14446011,-0.39788136,0.107307054,0.5333473,-0.22269888,-0.23089524,0.008548354,0.062825195,-0.23564188,-0.3875793,-0.18174498,-0.42737797,0.46761265,-0.0132261915,-0.2233011,-0.21883272,0.019342208,-0.4786146,0.27662745,-0.18271148,-0.40090492,-0.008564572,0.021764256,-0.23881374,0.9246556,-0.24182324,-0.010264833,-0.5186865,-0.41384518,-0.70672727,-0.30064902,0.5991902,-0.12508999,0.072874255,-0.57801986,-0.14037819,-0.066395946,-0.27449414,-0.16794908,-0.39013764,0.35939166,0.039071076,0.47908196,-0.052689027,-0.82913715,0.28809282,0.17077339,0.026687214,-0.8776378,0.44665194,-0.08093656,0.6784618,0.03494041,0.2703193,0.27090728,-0.23630363,-0.15610966,-0.2571195,-0.28778288,-0.63576597,0.22824882 +927,0.22558287,-0.35619357,-0.48139936,-0.097176254,-0.17115876,0.22614221,-0.28611663,0.3838581,-0.040728975,-0.52117676,-0.12545383,-0.43953562,-0.0900429,0.39549,-0.12504475,-0.3646968,-0.11095252,0.37818098,-0.40335646,0.028642213,-0.4504165,0.31836444,0.044583134,0.24297862,-0.020291101,-0.03585445,0.16791537,-0.15830001,-0.067990825,-0.6620806,0.23919356,0.06720571,-0.8471311,0.33780712,-0.079577565,-0.5298723,-0.0058246613,-0.6300561,-0.34684643,-0.77373946,0.21397348,-0.94298756,0.6204528,0.010820903,-0.14156431,0.27762684,0.0952929,0.5522963,-0.053046454,0.23500538,0.43780175,-0.44344082,-0.18516427,-0.11870819,-0.32119116,-0.40601355,-0.54659545,0.003136009,-0.2865183,-0.18114714,-0.2932902,0.18004404,-0.27637267,0.088287786,-0.17639214,0.18608591,-0.39834917,0.031999446,0.19402345,-0.11096595,0.42220673,-0.53106266,-0.110952735,-0.15772621,0.19050579,-0.5654663,-0.25205788,0.25916696,0.27258706,0.34414834,-0.30608386,-0.00924167,-0.20368087,-0.08648255,0.29965842,0.78060734,-0.025626456,-0.03972756,-0.07659713,-0.18211961,0.12389666,0.12573597,0.017827045,-0.36223102,-0.019139037,-0.031527143,-0.35488537,0.34668195,0.5401622,-0.26591522,-0.124034785,0.4072419,0.52012414,0.23044638,0.0037864447,0.23496492,0.13969095,-0.4026699,-0.18464735,0.351438,-0.07343204,0.27823877,-0.071498536,0.21448395,0.69325817,-0.45041108,-0.10410973,-0.052403677,0.09531538,-0.14631362,-0.15515435,-0.53381884,0.5443288,-0.53604525,0.1823279,-0.2236214,0.9909123,0.07315508,-0.64289904,0.35449687,-0.7324935,0.0049793096,-0.25377318,0.681979,0.3025712,0.49986893,0.1832196,0.61359954,-0.4585007,-0.0076364996,-0.06215931,-0.32082915,-0.082665876,-0.41529852,-0.14005245,-0.22026965,-0.034428798,0.08613836,-0.09308006,-0.12119428,0.4580688,-0.39319712,-0.088664874,0.032842338,0.63085014,-0.4253036,0.0012305558,0.6930967,1.068439,1.000034,0.27847666,1.3283956,0.40708536,-0.31405252,-0.2271873,0.15640199,-0.98231184,0.26381856,0.39555365,-0.24716961,0.20774558,0.34371296,-0.054534502,0.35225207,-0.58688337,-0.025975674,-0.11650698,0.034949146,0.026508266,-0.114174604,-0.39899,-0.23609968,0.0072094337,-0.03176368,-0.096970454,0.20023017,-0.29185635,0.25472352,0.27793062,1.3356853,-0.19184528,0.105597734,0.06777163,0.34083542,0.0076654493,-0.16255596,-0.1123049,0.03418953,0.49447235,0.0783308,-0.5213439,0.12183255,0.07922542,-0.4262394,-0.31495434,-0.171687,-0.08521334,-0.096667826,-0.28724998,-0.2563581,0.048487507,-0.32205087,0.461409,-2.3387313,0.03121909,-0.18407565,0.38330287,-0.13030423,-0.32266432,-0.19639938,-0.4701206,0.39422768,0.37741083,0.38627502,-0.51548094,0.41883296,0.47749668,-0.3714476,-0.115547225,-0.751818,-0.10361435,-0.11627157,0.060252327,0.15351732,-0.02415577,-0.07188488,-0.091741085,0.47621274,-0.38942713,0.12406679,0.3745908,0.37769508,0.17140213,0.51934874,0.032969963,0.5261594,-0.48183203,-0.3057049,0.34048656,-0.33814248,0.1797032,-0.026546676,0.13007183,0.2526955,-0.5518112,-0.91509753,-0.7527541,-0.68913937,1.2778916,-0.35464147,-0.36532038,0.18998562,-0.013027577,-0.46951133,-0.16908579,0.46330777,-0.2671316,-0.09544598,-0.8006159,-0.11162646,-0.16869727,0.48172277,-0.077625796,0.12501337,-0.6016631,0.3986732,-0.31623057,0.44972223,0.4412442,0.12612447,-0.18417169,-0.39162353,0.016766276,1.1629791,0.30972663,0.21961577,-0.47219896,-0.2219162,-0.20772998,-0.039295502,0.07637012,0.44766188,0.8246611,-0.006941813,0.17416383,0.2164078,0.031849608,-0.00013149083,-0.14108238,-0.37052363,0.028568983,-0.010795015,0.6733159,0.18910956,0.2091178,0.48380488,-0.13203903,0.30120152,-0.17050058,-0.29939443,0.18770996,0.9395423,-0.04462639,-0.23427346,0.65311974,0.5224215,-0.41167426,0.44633394,-0.58779,-0.26827267,0.36053142,-0.107670166,-0.44466734,0.33806497,-0.3829572,0.22057274,-0.9259122,0.45787382,-0.27493843,-0.74031335,-0.56078374,-0.23956399,-3.189685,0.11626855,-0.08760224,-0.1386115,-0.13847648,-0.2225085,0.419918,-0.27564737,-0.61158395,0.18310821,0.023818552,0.7253165,-0.07467542,0.038034033,-0.33496314,0.04008303,-0.2842401,0.20188753,0.37350768,0.16354153,-0.13493797,-0.38533783,0.066550896,-0.27326477,-0.19670585,-0.11003735,-0.7227066,-0.43675628,-0.046503894,-0.6702973,-0.5574712,0.7996394,-0.61960095,-0.08582838,-0.22744524,0.06337997,-0.19560328,0.5812191,0.08247266,0.09964696,-0.11102609,-0.14975597,-0.16158679,-0.2017852,0.3029591,0.027814731,0.07441089,0.31948072,-0.30191773,0.035715092,0.5245865,0.555321,0.010317778,1.0096223,0.32934362,-0.12744983,0.20712678,-0.29599872,-0.14454785,-0.5203391,-0.10803149,-0.12617636,-0.60660315,-0.5380992,0.04580742,-0.18612668,-0.6863293,0.73393357,-0.051491916,-0.17569914,0.10926243,0.36450952,0.25395292,0.025973529,-0.12875275,-0.13626951,0.017233562,-0.34643614,-0.35793695,-0.69055593,-0.50644726,-0.100490615,1.2668698,-0.0744011,0.1294076,0.22208019,-0.26516265,0.18100269,0.19740991,-0.062315203,0.11399822,0.5995015,0.13314314,-0.68071634,0.37159094,-0.20838492,-0.11208423,-0.7851295,0.18990341,0.838665,-0.80642354,0.38792682,0.36967978,0.13981152,-0.082397625,-0.3867531,-0.20734325,-0.014662472,-0.30674392,0.30618733,0.053462088,-0.82199305,0.4085776,0.4740345,-0.33004367,-0.7080795,0.5187385,0.032799132,0.03646612,0.2437819,0.3594633,-0.22491741,0.023725849,-0.056254577,0.32072252,-0.36410135,0.31342202,0.1267008,-0.031766843,0.15624662,-0.23707208,-0.08958875,-0.6300994,0.12951498,-0.30502352,-0.21101184,0.12097224,-0.117260896,-0.005254829,0.5949533,0.062277578,0.40674883,-0.28266025,0.025505293,-0.19746771,-0.3219774,0.26544264,0.37620166,0.24369296,-0.43399745,0.7842313,-0.002687639,-0.18468976,-0.36332172,0.040501483,0.5231988,0.031741202,0.30874452,0.08322896,-0.2432777,0.2608424,0.98346865,0.3113184,0.6776464,0.004529631,-0.017553616,0.17626038,0.2767234,0.37200266,0.102691576,-0.50598216,0.05275036,-0.0496027,0.14942381,0.41683537,0.101382695,0.38383645,-0.23322001,-0.2680486,0.007141733,0.159991,-0.12177062,-0.9972456,0.42658305,0.034241192,0.6336629,0.49343076,-0.010512757,0.44491968,0.5506014,-0.21518517,0.08643943,0.07441259,0.07224204,-0.3568274,0.6196128,-0.6690582,0.32409927,-0.22144946,-0.008426863,0.09752922,-0.043912638,0.60166514,0.70665026,-0.08016767,0.16662228,-0.028234744,-0.16691837,0.10689964,-0.41641188,0.3221292,-0.4414102,-0.22018167,0.76991093,0.4851547,0.47440353,-0.21986818,0.04242998,0.015629983,-0.15676925,0.20200245,0.08738748,0.032930706,-0.025297591,-0.623915,-0.10637261,0.77897865,0.08255772,0.01930536,0.06911613,-0.34084848,0.43999583,-0.057909895,0.087313905,-0.048544664,-0.71176374,-0.11962233,-0.58537596,-0.43063775,0.005887312,0.011777079,0.22431234,0.28277656,-0.02003708,-0.3804371,0.24656768,0.53404796,0.7472848,-0.014634972,-0.20940442,-0.33285433,0.20358412,0.21126394,-0.21588245,-0.1602638,-0.2546191,0.042601276,-0.7136037,0.38257635,-0.23776165,-0.48081166,0.53448546,0.010035828,-0.094823934,0.6896615,-0.11520101,0.18408814,0.39228922,-0.32536522,-0.15345046,-0.12656932,-0.31002694,0.048073106,0.084368385,-0.06007147,-0.11086488,-9.691716e-06,-0.2630556,0.24446961,0.000115466115,0.42244664,0.44876376,0.28161415,-0.40664497,-0.08995192,-0.39878526,0.7061008,-0.20819724,-0.18552765,-0.25700518,-0.38300127,-0.065802,0.4834845,-0.05560457,0.4030561,0.1014059,-0.548895,0.8048326,-0.09261276,0.8037262,-0.010092522,-0.36258242,-0.008426649,0.5719939,-0.118275665,-0.16078277,-0.4630041,0.81387645,0.60648793,-0.10474342,-0.19571415,-0.23364373,-0.22920522,0.0940956,-0.26039964,-0.2495363,-0.12534443,-0.6533214,-0.19367291,0.2374877,0.3669479,-0.038370878,-0.115910515,0.48209754,0.47544318,-0.024968887,0.18506157,-0.503654,0.13921754,0.31706384,0.33203468,-0.029761812,-0.05230997,-0.26849878,0.26257682,-0.64374995,0.01665094,-0.33566156,-0.0018531621,0.061297834,-0.13438027,0.1660541,0.07933588,0.2380877,-0.27205095,-0.16398866,-0.035136867,0.30065146,0.08699076,0.42602438,0.82345504,-0.21426506,0.36213484,-0.010804313,0.52928936,0.9612502,-0.30426183,0.0580137,0.5248574,-0.35773113,-0.40617442,0.56762916,-0.35168707,0.088328324,-0.03210781,-0.33607706,-0.24335721,0.23964718,0.3374075,-0.095284775,0.24344711,-0.48789388,0.08202596,0.34271413,-0.32754472,-0.4148698,-0.4701982,0.17073259,0.7229064,-0.14522386,-0.37097302,0.049133968,0.50628483,-0.3740737,-0.30554435,-0.10744681,-0.28846574,0.34483874,-0.06640975,-0.33012345,0.076142445,0.04758629,-0.34048954,-0.058141343,0.13648507,-0.2948354,0.11223586,-0.31188694,0.23613322,0.6569369,-0.35907832,-0.15359099,-0.71125996,-0.5989913,-0.9228757,-0.2273182,0.5426346,0.36362118,0.044677574,-0.29649195,-0.041324146,-0.088971354,-0.28992283,-0.054960914,-0.48313046,0.3358847,0.06579679,0.5477005,-0.036057223,-0.88850373,0.13413362,0.11156634,-0.39104968,-0.4162503,0.48272333,-0.062935874,0.74392295,0.077209845,0.10958467,0.1474689,-0.52226293,0.23523703,-0.08813675,-0.091073245,-0.85585517,0.06336002 +928,0.4494824,-0.24172509,-0.43748882,-0.20109092,-0.046973865,0.17449275,-0.13473402,0.39068416,0.166568,-0.5250793,-0.16517678,-0.3634092,-0.036011416,0.29898575,-0.06660053,-0.6336916,-0.109780565,0.06025695,-0.47394437,0.5734964,-0.4737144,0.4109531,0.050875835,0.17812733,0.1582471,0.37310925,0.112874605,-0.17018498,-0.07062906,-0.24456434,-0.12331345,0.092942536,-0.50175136,0.205827,0.058388468,-0.35015652,-0.16515519,-0.44447082,-0.3473175,-0.58005124,0.26954585,-0.69096714,0.42292133,0.0039021203,-0.16546896,0.34789357,0.022856805,0.24557522,-0.28400818,0.0793862,0.15666828,-0.035666432,-0.09367095,0.0027818042,-0.121136256,-0.25873345,-0.6007063,0.052494977,-0.30251932,-0.35420626,-0.23701288,0.0663022,-0.35833496,0.020152807,-0.20061935,0.38794476,-0.36197734,-0.09155906,0.24018244,-0.14998177,0.26280764,-0.5589377,-0.15123573,-0.07946894,0.19827558,-0.25074905,-0.14817175,0.1769074,0.25073674,0.5237317,0.042319782,-0.0894318,-0.37416625,-0.1231939,0.3476326,0.55989414,-0.023729166,-0.359974,-0.12659687,0.003263269,0.0030755487,0.053656068,0.21202254,-0.26096743,-0.25336802,0.037009727,-0.23067212,0.1761659,0.4064985,-0.3785388,-0.42015058,0.37578383,0.62393105,0.11042567,-0.022979986,0.12011747,0.053340573,-0.38753697,-0.15716386,0.14322247,-0.16338451,0.32899782,-0.14973925,0.24724989,0.6282464,-0.15482195,0.09939668,-0.0047187805,-0.13961382,-0.11816106,-0.15696537,-0.11705921,0.09808527,-0.365033,0.16581716,-0.16247287,0.784761,0.1966281,-0.6830025,0.3989158,-0.5083901,0.19995658,0.03377543,0.62962,0.673792,0.20309594,0.25540665,0.62018317,-0.35034013,0.024744626,-0.10504013,-0.31642348,-0.014385894,-0.08877475,-0.0072319508,-0.5270119,-0.0012219207,0.13232708,-0.07689186,0.07703565,0.35919222,-0.52112645,0.10680919,0.080516756,0.7357977,-0.31796047,-0.019999716,0.7506271,0.97804874,1.0659099,0.13584355,1.1840811,0.21335016,-0.31868124,0.20681044,-0.5798804,-0.6619347,0.23677956,0.33628246,0.17922091,0.3191451,0.09985965,0.01307258,0.42926815,-0.33337379,0.2775504,-0.11803884,0.10151924,0.10580634,0.0047934824,-0.4167908,-0.23499808,-0.11368368,0.059579678,0.09516477,0.14313854,-0.17774959,0.39176944,0.11665128,1.7649285,-0.23185483,0.12727478,0.012840151,0.2995539,0.056720812,-0.27137214,-0.076098084,0.2232265,0.4228743,-0.028373148,-0.7310985,0.13876382,-0.100602664,-0.46782345,-0.20494854,-0.34302092,-0.0187989,-0.051559,-0.30767298,-0.12421159,-0.16210051,-0.5294455,0.3131741,-2.7357616,-0.17942412,-0.12177296,0.23698887,-0.25253376,-0.38152176,-0.09416013,-0.4427064,0.3368712,0.34934762,0.36762634,-0.6286286,0.34717155,0.41523954,-0.3838966,-0.13742158,-0.605768,-0.023829851,-0.021894148,0.28657076,-0.0125409495,0.029839933,-0.038021922,0.18965109,0.37514156,-0.07797571,0.049401976,0.2933167,0.27363485,0.1718153,0.4524545,0.06551371,0.54944116,-0.081788525,-0.114918835,0.3228306,-0.31149602,0.23118632,-0.058372296,0.19962814,0.2362913,-0.49442655,-0.74491435,-0.6957765,-0.5972584,1.2318357,-0.24439695,-0.35931015,0.3749021,-0.21333659,-0.30273494,-0.17004271,0.44804507,-0.17411144,-0.3005391,-0.81553686,0.019213328,-0.11364322,0.21026863,-0.03430521,-0.089991234,-0.5298274,0.7230555,-0.11605931,0.5493079,0.3840379,0.0851186,-0.045296993,-0.30591044,0.026156107,1.1096687,0.38260236,0.07044115,-0.2565351,-0.2393264,-0.3788467,-0.10816083,0.06922736,0.3805149,0.6929713,0.028823735,0.101339355,0.18178561,-0.0040614987,0.075153686,-0.113459125,-0.19877554,-0.07381078,-0.06682255,0.59575015,0.3383133,-0.18382578,0.5456826,-0.12293436,0.16286932,-0.15452442,-0.34757352,0.44277975,0.8151685,-0.0766388,-0.21774706,0.5489942,0.40186256,-0.25515175,0.3484026,-0.54043806,-0.124146305,0.40802914,-0.31450972,-0.30551594,0.30560365,-0.2534663,0.16767056,-0.9850921,0.22038658,-0.19194995,-0.5989601,-0.5660696,-0.11067878,-3.6322937,0.09973198,-0.09060676,-0.31750324,-0.016103284,-0.06641384,0.26140925,-0.55920875,-0.595703,0.13755114,0.05241841,0.6151792,0.020133147,0.06582433,-0.1781355,-0.14253761,-0.36908984,0.1652668,-0.039322253,0.3247413,0.07535754,-0.27396405,0.016051294,-0.16676542,-0.30763716,0.025223792,-0.5182337,-0.51549625,-0.08584132,-0.5016933,-0.26841596,0.66317207,-0.22918953,0.07355472,-0.21917759,-0.029678037,-0.15030701,0.4198575,0.14638078,0.13375019,-0.0014609013,-0.0058607436,-0.02535918,-0.23121956,0.25744465,0.09849493,0.31471506,0.4145031,-0.20936823,0.29354525,0.41676235,0.63130814,-0.015310183,0.67691386,0.5383454,-0.14678338,0.27097416,-0.36070606,-0.09296174,-0.45795155,-0.3020908,0.040942457,-0.37473226,-0.65258723,-0.18690255,-0.24295427,-0.79850495,0.36153263,0.044036094,0.051468484,-0.0038883004,0.15907495,0.4349565,0.05939562,0.06596137,-0.16613956,-0.05611411,-0.49122688,-0.2586603,-0.62724245,-0.37423787,0.23567012,1.0218496,-0.20819232,0.07219219,0.041280456,-0.3395133,-0.01582892,0.08155085,0.07310132,0.19768175,0.35605627,-0.014909319,-0.5880145,0.45819807,-0.022433953,-0.18051662,-0.59920454,0.054702424,0.60540825,-0.6059104,0.46087864,0.13331045,0.048252247,-0.029223485,-0.3363875,-0.09402274,-0.079594746,-0.2882125,0.22979261,0.122492336,-0.5595681,0.37463012,0.29286456,-0.03057146,-0.7017933,0.24490069,0.0012275066,-0.21084145,0.04511989,0.21583872,-0.028843509,0.110873364,-0.12061168,0.14349894,-0.33839774,0.30815533,0.35223788,-0.008572345,0.30072775,-0.1397936,-0.12255086,-0.69320214,0.011166104,-0.43129382,-0.16874799,0.09772577,0.26087818,0.26881117,0.22046538,0.024972081,0.4027306,-0.27418223,0.10449743,0.111321874,-0.19376482,0.2057551,0.34282,0.30244684,-0.39438057,0.569995,0.073254354,-0.056115013,-0.24237892,-0.049915433,0.5351561,0.07579769,0.2725111,-0.09399981,-0.36578473,0.34538174,0.8301314,0.17781314,0.41298223,0.10582803,-0.15218414,0.2879591,0.09036619,0.09939579,0.023769217,-0.48145136,0.08239281,0.020385435,0.18134084,0.38105717,0.18684076,0.3073495,-0.09689514,-0.29900786,0.014002255,0.2704261,-0.100286715,-1.0771908,0.3409452,0.07353174,0.8057191,0.66957587,-0.040076263,0.16104473,0.47275877,-0.32844815,0.11647331,0.2198907,-0.09146255,-0.6516653,0.51907426,-0.7044641,0.43825123,0.006613936,-0.020607496,0.014592888,-0.19098756,0.39512372,0.7209968,-0.16831799,-0.014497495,-0.0988754,-0.1495863,-0.009855254,-0.3897269,0.0886284,-0.49341705,-0.23639844,0.69203526,0.4324634,0.378179,-0.033125374,0.03410558,0.04848075,-0.026841568,0.11083666,0.106419675,0.04566529,0.0020844936,-0.67183685,-0.19869414,0.54778725,-0.22083294,0.13947678,0.032358248,-0.4386654,0.10080127,-0.08036717,-0.1883496,-0.06352506,-0.623956,0.10936903,-0.34891352,-0.3925235,0.23677795,-0.14051142,0.32685047,0.17054224,0.022887941,-0.16141999,0.26713774,0.251646,0.6803195,0.069382675,-0.10920005,-0.3271498,0.24636085,0.1645737,-0.19726107,-0.19731502,-0.13734971,0.07776458,-0.5715424,0.38878265,-0.018356856,-0.41362232,0.23784658,-0.119930424,0.07703085,0.5470186,-0.24971221,-0.049657114,0.09080579,-0.3358943,-0.14676407,-0.042684097,-0.08865626,0.29365197,0.19787182,-0.13492292,-0.04987367,-0.05661873,-0.08813749,0.3666025,0.15892465,0.41464677,0.34832424,0.009457086,-0.330519,-0.19679888,0.09600574,0.30217406,0.11990379,-0.03440862,-0.2500865,-0.3889371,-0.35892457,0.28039128,-0.15278395,0.34598514,-0.05731948,-0.33732155,0.6156634,0.093769856,1.0545254,0.07737879,-0.3380573,0.072409295,0.38791957,0.09070448,-0.048878543,-0.38087633,0.83683175,0.51061285,-0.10896458,-0.2137746,-0.29978338,-0.12681563,0.2456675,-0.16251428,-0.11791752,-0.055091705,-0.7010039,-0.3399276,0.21256296,0.13925402,0.17034362,-0.068818666,0.09608537,0.1398575,-0.0041669137,0.31626502,-0.46538863,-0.13041125,0.3040239,0.04950261,0.09588904,0.065064006,-0.44820574,0.40833727,-0.6114645,0.11978344,-0.1047697,0.114816986,-0.03656024,-0.15227519,0.26093024,0.18907355,0.40237728,-0.29701972,-0.41042417,-0.35711455,0.55456126,-0.13922141,0.1088211,0.61573887,-0.24756551,0.22028829,0.16631389,0.49138227,1.0998188,-0.10013182,0.16529597,0.33748668,-0.25964904,-0.47884113,0.35024548,-0.20249535,0.07116219,-0.04714152,-0.24863802,-0.38749167,0.22137496,0.27551243,0.07359529,0.26285124,-0.46127272,-0.41733232,0.18139656,-0.42171508,-0.21865988,-0.3664996,-0.059856188,0.7372028,-0.3483961,-0.23470625,0.13115504,0.20825338,-0.3833122,-0.5407378,-0.09614421,-0.24948104,0.310391,0.01886304,-0.32119983,-0.056792945,0.1182936,-0.2489235,0.04401664,0.124246456,-0.40031943,0.04901255,-0.3653423,-0.09184128,0.90844804,-0.09681845,0.13431774,-0.67101544,-0.4825983,-0.77883446,-0.44831222,0.69421107,-0.0054876334,-0.1297714,-0.43978825,0.027276,-0.09991461,0.11086481,0.025264662,-0.4347348,0.49632856,0.16560616,0.27351594,-0.0031156072,-0.6719709,0.123759694,0.13120766,-0.180678,-0.62932485,0.53905505,0.061485834,0.7129094,0.08697351,0.056153845,0.1957752,-0.5271858,0.018492201,-0.124135494,-0.16082452,-0.7335312,0.114146076 +929,0.31983894,-0.27042472,-0.5075626,-0.12465503,-0.35954788,0.09869696,-0.3303897,0.10534353,0.20134914,-0.26136208,-0.22644475,-0.016307535,0.028895535,0.25044337,-0.064970866,-0.60111874,-0.2038604,0.17776519,-0.78895974,0.5079206,-0.49001357,0.2949051,0.16899104,0.3312953,0.036869492,0.22208858,0.18219566,-0.10614971,-0.13509084,0.0033445433,0.02141187,0.21684647,-0.6938772,0.1453424,-0.23795952,-0.17244789,-0.04021634,-0.2824129,-0.3148242,-0.7019167,0.18647799,-0.8661084,0.5593778,-0.28260306,-0.15918696,-0.051421426,0.24205814,0.5548228,-0.23881087,0.0769552,0.25408664,-0.1712609,-0.18212414,-0.26922965,0.18362837,-0.38908768,-0.36976248,-0.003994273,-0.53512406,-0.25727624,-0.18173225,0.2765878,-0.18712464,-0.0013066158,-0.22316955,0.450945,-0.4384751,-0.12360604,0.4270401,-0.12309641,0.3763596,-0.5859213,0.04407473,-0.10175629,0.49581486,0.00767339,-0.18594365,0.30803555,0.24081406,0.33104414,0.22496691,-0.27806216,-0.14213765,-0.15426277,0.3477748,0.2642458,-0.019820103,-0.18567374,-0.27714488,0.10512224,0.2382245,0.16255926,0.13007873,-0.43708834,0.04969331,-0.035555765,-0.23308653,0.55857927,0.42302918,-0.20378432,-0.22186781,0.24728823,0.7111295,0.35886046,-0.27322918,0.07909805,-0.03754144,-0.46525282,-0.12519991,0.23142457,-0.07788132,0.4745166,-0.14778034,0.036527492,0.75797856,-0.12110113,-0.056182973,-0.00024680048,-0.07595666,-0.19497457,-0.2492256,-0.13698475,0.066268094,-0.53456795,0.04995409,-0.19851428,0.64583766,0.112668365,-0.69669676,0.3818117,-0.54661745,0.17015117,-0.05633856,0.5984517,0.7700349,0.4305593,0.20565033,0.8745997,-0.27937883,0.17024225,-0.0023241192,-0.48706424,0.12329867,-0.31660366,-0.0027842075,-0.45413637,0.09832656,-0.24653432,0.062516466,-0.13682567,0.25905657,-0.49929965,-0.047738083,0.16495147,0.72722083,-0.30346903,-0.05464936,0.5596145,1.0893341,0.9992981,0.10869864,1.3033595,0.3649241,-0.25994876,-0.021549962,-0.31199408,-0.6778451,0.2097232,0.3012322,0.04327894,0.39681476,-0.07095243,0.05457641,0.37062147,-0.5101906,0.12008125,-0.051603258,0.40569225,0.14598596,-0.02397278,-0.36318082,-0.05889275,0.1611194,-0.062018573,0.13993496,0.053926215,-0.16018288,0.3167167,0.112350196,1.3335308,-0.2377177,-0.009924087,0.044164844,0.45235574,0.294388,-0.13773303,-0.0034397785,0.40765908,0.49787632,-0.14004654,-0.5531076,0.30379465,-0.26528206,-0.45232555,-0.21770196,-0.33490476,-0.06198132,0.12310371,-0.3369611,-0.18980908,0.112795874,-0.20349105,0.4359616,-2.7459726,-0.3390294,-0.07347818,0.21805483,-0.40082198,-0.23836085,0.0044630505,-0.48280883,0.27898094,0.21443,0.38907528,-0.64842975,0.622262,0.4805569,-0.4706427,-0.05226788,-0.6054236,-0.1636257,-0.050036445,0.50343233,0.09013684,-0.094152115,-0.19067493,0.28365755,0.5482343,-0.16262828,0.15778627,0.5226587,0.17831144,0.10529906,0.59731996,0.07380624,0.601766,-0.18680406,-0.07689103,0.5060271,-0.2038742,0.15600911,-0.10269608,0.03327017,0.5216794,-0.37460247,-0.78632814,-0.7410159,-0.40102607,1.0206379,-0.4311206,-0.56111586,0.08961724,-0.14483961,-0.064680636,0.122629,0.4662427,-0.015889332,0.14175919,-0.8300841,-0.008957267,0.0130710825,0.29366264,0.016001325,-0.13039345,-0.41104746,0.7112738,-0.020430364,0.5807885,0.26655322,0.33487004,-0.083887875,-0.53546983,0.14195691,0.89976454,0.35456076,-0.067253515,-0.3168478,-0.2590527,-0.06965564,-0.08176144,-0.040813822,0.54527456,0.65090215,0.016665127,0.059513666,0.25786594,-0.19159397,0.02879756,-0.22707126,-0.2637129,0.037852004,-0.10910171,0.48321813,0.6760801,-0.15336566,0.51497674,-0.30656523,0.3384043,0.027470194,-0.61097795,0.7545452,0.63956,-0.19918095,-0.113527045,0.43427038,0.40275848,-0.37576538,0.38527417,-0.6384742,-0.22633074,0.7050106,-0.1373766,-0.4212531,0.26106763,-0.28282475,0.24922784,-0.8904846,0.31384423,-0.37291878,-0.3078479,-0.504694,-0.13131201,-3.0650485,0.14947414,-0.10463761,-0.1566425,-0.37375528,-0.08511549,0.31790116,-0.4746703,-0.58700466,0.15872082,0.20368454,0.5874915,-0.029276682,0.10570623,-0.2874932,-0.19440109,-0.13808882,0.20434615,0.08312563,0.20408219,-0.15135492,-0.39023638,-0.08276993,-0.21639216,-0.43393993,0.20130411,-0.53361195,-0.45617637,-0.07470347,-0.3983306,-0.33294386,0.639272,-0.35497376,-0.049559303,-0.22372131,0.084328264,-0.08667193,0.25343305,0.091111675,0.3099163,0.22290722,-0.0053441226,-0.05390977,-0.36567265,0.401618,0.016593974,0.22489566,0.1546687,0.0067924,0.17031014,0.39767936,0.65407485,-0.24361101,0.7887286,0.49389997,-0.007970192,0.21608415,-0.24547103,-0.29739588,-0.5531235,-0.2750129,-0.10723184,-0.439829,-0.50087106,-0.06892122,-0.33513874,-0.7585257,0.5758559,0.04384002,0.3088824,0.056163512,0.21701935,0.40264416,-0.126289,0.031541575,-0.12670636,-0.15785521,-0.5444206,-0.39636,-0.61182046,-0.4997099,-0.1285716,0.9948765,-0.26022425,0.06098059,-0.08692337,-0.5050355,0.08145652,0.18713588,0.067411646,0.35025352,0.5569475,-0.010410806,-0.6630987,0.31455088,-0.011452582,-0.071286574,-0.47117925,0.16195777,0.7251797,-0.67877364,0.58720946,0.35145706,-0.023742229,-0.1381575,-0.46801206,-0.20054695,0.01803632,-0.3949078,0.5313129,0.07320753,-0.7110412,0.4272664,0.16675323,-0.38449,-0.70508945,0.39486,-0.09311649,-0.2455434,-0.024212278,0.28920674,-0.05065487,-0.0024215113,-0.22526535,0.15324098,-0.4296446,0.22074105,0.21539445,-0.024362028,0.22416419,-0.12475215,-0.2900634,-0.6595659,0.025782283,-0.52108896,-0.25915006,0.28896883,0.08353533,0.00016170368,0.092068516,0.16882177,0.4783729,-0.2237907,0.13843995,0.005627744,-0.331727,0.23651159,0.5300233,0.2230367,-0.36158082,0.4689889,0.093163446,-0.12511204,-0.096506536,0.10510512,0.40715033,0.12691996,0.2683519,-0.022375971,-0.011218168,0.37139538,0.64143485,0.098337874,0.5060915,-0.023033544,-0.22683056,0.4543826,-0.075491294,0.2838642,0.030175216,-0.4485067,0.015486177,-0.06281382,0.30640015,0.44740272,0.34575975,0.29038975,0.07916332,-0.2646099,-0.024487793,0.24284597,-0.12337829,-1.2151436,0.48019904,0.3726914,0.86198306,0.48736048,-0.036444858,0.035439868,0.64659023,-0.27773744,0.13926068,0.34350464,0.040277347,-0.4468277,0.6221854,-0.7098468,0.25420952,-0.17106539,-0.08968103,0.1299396,0.1334985,0.26458526,0.84725124,-0.28327566,0.046868242,-0.07356002,-0.04509095,-0.07888903,-0.25193614,-0.0045601428,-0.33407164,-0.48998243,0.61454445,0.45410693,0.3418192,-0.33316278,0.042527832,0.024397023,-0.23275828,0.28739747,-0.057181433,-0.012532325,0.15055981,-0.49816507,-0.33482343,0.5041864,-0.14365959,0.08576816,-0.105221584,-0.1861261,-0.013714317,-0.1570096,0.033996657,-0.028716898,-0.6369704,-0.06449175,-0.15150347,-0.3367569,0.46750477,-0.28735888,0.10941644,0.20512046,-0.019140545,-0.14115912,0.32034877,0.009653829,0.65904444,0.24444722,-0.22051385,-0.31874985,-0.03081774,0.23014833,-0.28816566,0.032385997,-0.39415184,0.09006047,-0.52311116,0.629568,-0.06485973,-0.38379484,0.27389574,-0.23196863,-0.12567443,0.56893134,-0.17258349,-0.14171791,0.23982213,-0.10404374,-0.25357357,-0.08645759,-0.31873435,0.20365776,0.36209488,-0.02199231,-0.05327199,-0.29156244,-0.15268773,0.60264117,0.07619102,0.4483645,0.41178596,-0.095220685,-0.37127683,-0.027585324,0.3392338,0.5077565,0.20794468,-0.0025231577,-0.23356415,-0.37330788,-0.2777443,0.2931673,-0.09382407,0.104757875,-0.04122395,-0.3283974,0.8259741,0.14342439,1.1525353,0.08035718,-0.30483055,0.12287155,0.46702862,-0.04444751,0.1281414,-0.54593575,0.59403324,0.5568951,-0.039688863,0.01960583,-0.44653487,-0.13874738,0.19129968,-0.2603051,0.08518029,-0.14068322,-0.669133,-0.46503258,0.24157676,0.1775154,0.07114927,0.048437484,-0.11678936,0.039592177,0.049498864,0.42753312,-0.58070284,-0.11542799,0.14590898,0.15735039,-0.11376025,0.09964562,-0.41822836,0.42301297,-0.6884365,0.01212775,-0.3002667,-0.010542594,-0.18852665,-0.26787543,0.08316225,0.004797671,0.27944133,-0.40942287,-0.44098422,-0.14283356,0.4837083,-0.026259296,0.22975197,0.7402185,-0.19411208,0.21170445,0.14205027,0.41599783,1.144747,-0.40066147,0.05046332,0.20951733,-0.40162832,-0.5496966,0.34055302,-0.28974164,0.097899094,-0.083672896,-0.4943345,-0.55751395,0.23314646,0.0072180256,0.06984766,-0.007860031,-0.62893367,-0.09104942,0.46321142,-0.3745718,-0.16275221,-0.25339228,0.29113337,0.60890466,-0.35002965,-0.33450836,0.0005160123,0.2733901,-0.32745773,-0.38644055,-0.082365885,-0.2599169,0.40807363,0.12925352,-0.17199625,-0.13598202,0.25370258,-0.5066824,0.08283764,0.28704804,-0.3051819,0.07986401,-0.013609223,-0.035666406,0.8830726,-0.17990881,-0.17432061,-0.6634737,-0.44994462,-0.9348224,-0.38062447,0.19667313,0.18079042,0.022829514,-0.5591184,-0.029018506,-0.18469554,-0.01913376,0.11263969,-0.57280445,0.37264025,0.1271202,0.5693084,-0.20100127,-0.95707804,0.06391373,0.0624849,-0.055186197,-0.66371226,0.6539918,-0.05986209,0.79838866,0.013028016,-0.032453034,-0.09450997,-0.39877933,0.18907185,-0.35125208,-0.11516915,-0.82964486,0.102341466 +930,0.46011338,-0.36190176,-0.5666519,0.023241179,-0.38573477,0.11585855,-0.039573234,0.5686577,0.3589491,-0.30372402,-0.2899089,-0.15009466,0.0034716788,0.33832374,-0.12059041,-0.40564242,-0.10950606,0.34414366,-0.5870934,0.67084056,-0.18087308,0.2432112,0.03552698,0.49601966,0.5004889,0.21490394,-0.135951,-0.0018121302,-0.18179977,-0.22279385,-0.17759119,0.23366728,-0.41943768,0.38452002,-0.26470262,-0.27781647,-0.12004639,-0.72933835,-0.54818135,-0.76412135,0.24492513,-0.76867014,0.6488064,-0.12820664,-0.2127161,0.06822115,0.1097822,0.40938133,-0.22640324,-0.102267615,0.36526537,-0.15175553,-0.22310485,-0.14145438,-0.20084664,-0.26703998,-0.49659333,-0.109377824,-0.22216897,-0.023991214,-0.2092603,0.214365,-0.13793838,-0.08070314,0.05342563,0.5551001,-0.35045916,0.25961128,0.14257227,-0.05619773,0.08056765,-0.586718,-0.32466105,-0.19770078,0.39990467,-0.10285498,-0.40149015,0.24668112,0.2001382,0.20691799,-0.06360661,-0.114431776,-0.21724097,0.032947965,0.212447,0.6159366,-0.14648846,-0.47709134,-0.116206445,0.06031915,0.22474353,0.17334059,0.26933673,-0.4659651,-0.10230981,-0.05284432,-0.0623825,0.37959465,0.40717322,-0.09973626,0.09006558,0.37056193,0.39387324,0.41878882,-0.16694994,-0.026509898,0.004478294,-0.45613092,-0.14149396,-0.11484564,-0.20553578,0.48562902,-0.06305248,0.20806254,0.5069408,-0.089816146,-0.277615,0.20322248,0.29727766,-0.198361,-0.12899171,-0.39673787,0.29333755,-0.3950594,0.13136797,0.08555029,0.67861706,0.19665591,-0.58959275,0.26105097,-0.58513767,0.04273477,-0.12920901,0.3442699,0.6623789,0.5038261,0.26080182,0.74231154,-0.22315924,0.102814786,0.07054495,-0.33334956,-0.13870688,-0.251204,-0.101782486,-0.62925607,-0.09490925,-0.16253074,-0.17884402,0.14035389,0.37966558,-0.49794927,-0.15373527,0.07180295,0.77644855,-0.27028254,-0.0410829,0.9860258,1.011396,0.8723057,0.1157004,1.1680657,0.13947347,-0.29530236,0.0011599915,-0.07972834,-0.7154926,0.32050222,0.40407297,-0.8210532,0.22931409,0.1497707,0.063095145,0.32104093,-0.49015626,-0.03520913,-0.12694211,-0.016681109,0.11105503,-0.11221124,-0.4529821,-0.40906996,-0.2557194,0.106845535,-0.080698475,0.2164781,-0.2722899,0.44297487,0.12804282,1.6719106,0.04763135,-0.12590776,-0.013375829,0.3986802,0.28794906,-0.20845358,-0.336508,0.30040404,0.43051687,0.13565199,-0.51390916,0.07405288,-0.11691674,-0.30044875,-0.13332579,-0.23248614,-0.26784664,-0.016372416,-0.30939093,-0.28328627,-0.07091618,-0.25431502,0.4923455,-2.7063854,-0.17297928,-0.034458715,0.4233319,-0.12611619,-0.36011344,-0.16919048,-0.43868488,0.2525276,0.20478234,0.49715927,-0.5985576,0.26954597,0.33776832,-0.71647304,-0.24105155,-0.46866456,-0.09505056,0.14029978,0.30067366,-0.06754687,0.10182941,0.080322266,0.020365069,0.34196043,-0.117693804,0.13969415,0.45559844,0.39768654,-0.04705618,0.49637565,-0.07802444,0.607446,-0.2994828,-0.17303498,0.30523425,-0.21984518,0.25392967,-0.04779017,0.13776514,0.68817014,-0.5374926,-0.74969864,-0.62127835,0.043113887,1.0863421,-0.21434096,-0.21189635,0.20503923,-0.5893984,-0.31219885,-0.0019790444,0.44353417,-0.0550111,-0.11078559,-0.7129407,-0.11744686,0.15261105,0.014815041,-0.08118439,-0.13938917,-0.38984197,0.62291086,-0.02520549,0.6287719,0.37900382,0.18011819,-0.24795203,-0.3556338,0.110265,0.9479955,0.4647832,0.14302717,-0.18164313,-0.0066315657,-0.5656522,-0.07479378,0.11444449,0.53141326,0.4506182,-0.14998065,0.15463248,0.27902517,0.10323449,0.0868581,-0.24203634,-0.21386994,-0.15907931,-0.04462937,0.41527727,0.7408113,8.52985e-05,0.67892164,0.031855937,0.37042412,0.021481497,-0.4559571,0.4108459,1.2072588,-0.19768454,-0.3621884,0.53333867,0.44745016,-0.10992871,0.33874723,-0.31782237,-0.30676636,0.39969972,-0.11538303,-0.42210525,0.33645287,-0.16249306,0.25109246,-0.7664407,0.35558018,-0.06956458,-0.6930124,-0.4484633,-0.004134173,-2.1992035,0.17970546,-0.269023,-0.18241562,-0.0864328,-0.29128698,-0.024310246,-0.52908605,-0.64212996,0.17861797,0.02649802,0.76782656,-0.15519747,0.12357825,0.023319444,-0.34064293,-0.18991116,0.124177404,0.07162376,0.4656908,-0.042458434,-0.5286587,-0.22312112,-0.10701088,-0.31077734,0.0011615753,-0.7883478,-0.40654877,-0.053052336,-0.61852044,-0.35590023,0.6953843,-0.33864444,0.015553975,-0.15571155,0.016674025,-0.05100238,0.11588142,0.042004935,0.093285,-0.01462571,-0.09858249,0.07821043,-0.15407614,0.2028785,0.08775584,0.17871518,0.14715545,0.08402152,0.47383007,0.40311494,0.7657972,-0.29698277,0.93807924,0.55148476,-0.26746553,0.15572591,-0.24021854,-0.45869806,-0.49870983,-0.22418039,0.10518682,-0.4948239,-0.4283173,0.021792488,-0.34168133,-0.8604589,0.61040086,0.16546439,0.13218018,0.10807327,-0.0007474763,0.5917883,-0.2793526,-0.028150273,-0.017391281,-0.17383312,-0.54694134,-0.14429685,-0.545188,-0.393795,0.042078357,1.2624863,-0.26674157,0.113725185,0.2404406,-0.45715025,0.17591347,0.19587128,-0.11571831,0.16343226,0.45005172,-0.056669254,-0.6202764,0.3232515,-0.18279906,-0.13956042,-0.48902375,0.38701692,0.69214046,-0.641894,0.5596909,0.297434,-0.010129298,-0.2660463,-0.19366738,-0.10452112,-0.13178828,-0.09950919,0.4495225,0.23785338,-0.6321467,0.23645698,0.33172056,-0.20617917,-0.80671346,0.54319257,-0.02971044,-0.18087183,0.009070805,0.28594008,0.13743666,-0.0721157,-0.24827984,0.2587529,-0.23506474,0.23192154,0.10346607,-0.16473384,-0.16795148,-0.36794356,-0.1293052,-0.888132,0.17266853,-0.36772725,-0.47028896,0.31432456,0.1438925,0.11566021,0.023625493,0.30382887,0.21335658,-0.359512,0.13657214,-0.1910234,-0.32565933,0.27806342,0.4462215,0.51918745,-0.35859632,0.5517028,-0.01529155,-0.17263606,0.0031838757,0.07626271,0.30421135,0.104680344,0.36575508,0.17135255,-0.20825031,0.27366194,0.6919823,0.13020413,0.33322784,0.008944546,-0.17659354,-0.07084912,0.09588071,0.38587043,-0.050308198,-0.6562831,0.14124669,-0.33060256,0.09804428,0.47109923,0.26588994,0.08922611,-0.05645724,-0.6031971,0.007502807,-0.023800297,0.22502877,-1.3391732,0.41657305,0.2006038,0.7809041,0.36737466,-0.106006704,0.00975324,0.6462172,-0.011133044,0.087571755,0.33601478,-0.16306385,-0.3721303,0.3132587,-0.6827792,0.52050114,0.011058475,-0.032193135,0.25178477,-0.05191985,0.44330963,0.7356078,-0.1611764,0.074608706,0.06596917,-0.31195608,0.12798159,-0.43702284,-0.07711172,-0.7271954,-0.4296637,0.7203139,0.59374183,0.30845043,-0.14158945,0.18255155,0.082488775,-0.20399253,0.26260597,0.2632447,0.10822026,-0.06806572,-0.789744,0.052620143,0.5036956,-0.31664434,0.052897386,-0.047953673,-0.10682881,0.23879743,-0.20199862,0.13939205,-0.09719377,-0.79790074,-0.079704,-0.49992725,-0.45840314,0.30542526,0.05133784,0.17073585,0.2184408,0.07136847,-0.13790414,0.6511167,0.1720061,1.0226195,0.033565205,-0.16385034,-0.18448141,0.37441427,0.1649487,-0.083520725,-0.030600095,-0.3437782,0.018203901,-0.61736596,0.52569664,0.17180681,-0.3219142,0.01071241,0.0379625,0.16676667,0.5107291,0.0050528687,-0.061712224,-0.12217382,-0.10362153,-0.31379464,-0.26931486,-0.18216428,0.13888821,0.3816422,0.034732033,-0.15541188,-0.16095807,-0.17331915,0.27060816,-0.123119116,0.626144,0.29300043,0.11993545,-0.26119262,-0.13509846,0.24356113,0.5492995,0.014111431,-0.2170683,-0.32144314,-0.27845335,-0.4135242,0.110754736,-0.09527089,0.39539665,0.11121733,-0.050418172,0.66910076,-0.049215037,1.2267469,-0.00808319,-0.30949542,0.17130968,0.47202867,-0.044636603,-0.22405103,-0.20558415,0.9177784,0.43524578,-0.01003073,-0.10011764,-0.44029695,-0.17586647,0.23900877,-0.22449265,-0.14562733,0.10081098,-0.4671543,-0.2759168,0.11316577,0.13729091,0.28119,-0.17363882,0.19743569,0.45373985,-0.0781569,-0.040031016,-0.38503,-0.17239925,0.3001814,0.20310572,-0.10595268,0.018372843,-0.5441871,0.47387287,-0.37045106,0.17194824,-0.21989049,0.24342072,-0.30315813,-0.18061061,0.16222014,0.11803242,0.2836872,-0.44988534,-0.29780102,-0.43848428,0.53899777,0.12455593,-0.027098013,0.43075672,-0.32776657,0.011772965,-0.05271197,0.38276434,0.6921288,-0.28366834,-0.02167075,0.4024203,-0.4324141,-0.43203303,0.28503722,-0.3187696,0.09400483,0.10889169,-0.14528129,-0.68940353,0.22445928,0.17752054,0.12732857,-0.10705472,-0.7626397,0.067398585,0.3739643,-0.16146922,-0.12715204,-0.36923474,0.05422932,0.39283296,-0.25149792,-0.6311718,0.101832084,-0.11111212,-0.108760275,-0.41542414,-0.06701691,-0.41729417,0.19804774,-0.073531546,-0.32130393,-0.38661766,-0.13204193,-0.46403232,0.13369569,-0.009648967,-0.38696337,0.10400974,-0.2288781,-0.18238425,1.0354792,-0.30784145,0.2771748,-0.41279963,-0.4135452,-0.6395267,-0.38617674,0.23189838,0.1288553,-0.06409713,-0.76092064,0.022607194,-0.08586029,-0.364078,-0.1979606,-0.31796265,0.5126504,0.16772164,0.4221249,-0.15349698,-0.94804007,0.37290642,0.048643705,-0.32124397,-0.5829611,0.36685544,0.02114657,0.73060447,0.025612256,0.15319361,0.2980635,-0.42377928,-0.15306391,-0.17758097,-0.061681014,-0.45077085,0.0015203442 +931,0.32274136,-0.2530387,-0.6493139,-0.09066391,-0.09070265,0.31669956,-0.44029254,0.18086025,0.19446097,-0.4750999,0.079515085,-0.20610496,-0.09536987,0.051072028,-0.12794037,-0.67499393,0.045188945,0.019409698,-0.47652483,0.8015323,-0.43089765,0.1714601,0.14922486,0.18789007,-0.038511287,0.18589285,0.2032353,-0.14295684,-0.107791595,-0.09341341,0.09164526,-0.26808268,-0.535418,0.113910265,-0.26757595,-0.29532126,0.14255424,-0.2715577,-0.3966518,-0.778273,0.22502004,-0.9005701,0.4439222,0.02118449,-0.32362238,0.47808963,0.04169825,0.23226091,-0.26966766,0.0824094,0.14376776,-0.35467726,-0.40701053,-0.35098785,-0.38679928,-0.63730055,-0.45065904,-0.109499164,-0.58881146,-0.0074410737,-0.21940707,0.18549204,-0.2576515,-0.12853839,-0.2847985,0.30543616,-0.4973289,-0.1554211,0.11794293,-0.095052205,0.3737138,-0.8209531,-0.12246658,-0.13592021,0.022524636,0.15156695,-0.13679305,0.21602537,0.17141524,0.40352282,0.016333086,-0.21066292,-0.36852512,-0.15937744,0.36679167,0.2580894,-0.028008742,-0.18771695,-0.17558457,-0.22910394,0.33081004,0.32247835,0.14296229,-0.31667343,0.038066,0.03528732,-0.38245794,0.46471336,0.6698925,-0.27495587,-0.027794315,0.39797026,0.45749268,0.2985671,-0.32038498,-0.017279983,-0.08177025,-0.46401992,-0.19662301,0.44242483,-0.096938595,0.6464637,-0.14616157,0.2307694,0.49512094,-0.17319253,0.06455158,-0.033763546,-0.008537999,0.014654564,-0.18365596,-0.19705555,0.2719406,-0.6329651,0.06696028,-0.58267033,0.39232954,0.018998938,-0.63426214,0.28804868,-0.4754478,0.14319511,0.030669121,0.725008,0.79755116,0.54837036,-0.04042398,0.744538,-0.36148334,-0.13368101,-0.13628684,-0.1510836,0.25311238,-0.12230485,0.1901463,-0.39251933,-0.087940514,0.0569028,0.046431493,-0.108972274,0.6482148,-0.20927732,-0.1457644,0.094169565,0.7278493,-0.23670384,0.04777757,0.6388833,1.1271385,0.7728134,0.1147481,1.450303,0.39826816,-0.24156204,-0.09797077,-0.031175297,-0.7981352,0.16277921,0.32272503,0.44139758,0.38264152,0.038555168,-0.1912137,0.39562207,-0.2748277,0.076208256,-0.17637947,0.108931676,-0.14950256,-0.17030866,-0.21963789,-0.10361425,0.05024951,0.06822573,0.26226902,0.23943743,-0.06800843,0.42253777,0.13988641,0.9770595,-0.20004402,0.052792035,0.05146804,0.3293423,0.21970864,0.07770598,0.06913996,0.43790013,0.34576195,0.013102134,-0.60746247,0.082505904,-0.27306518,-0.52449715,-0.1834507,-0.40286514,-0.19409847,-0.09367701,-0.31381717,-0.25492415,-0.032162435,-0.48059484,0.23076192,-2.7278993,-0.1847935,-0.26877642,0.23814459,-0.21296346,-0.19903731,-0.16861835,-0.42741466,0.6580885,0.31466818,0.3680287,-0.5623999,0.47281858,0.64156353,-0.47561413,0.0008215989,-0.6497119,-0.10560601,-0.14603174,0.5406473,-0.06619167,-0.27981535,0.14673318,0.0056321365,0.50712967,0.032771137,0.18661597,0.31308866,0.49054334,-0.1262178,0.22823915,-0.007843311,0.38509536,-0.416511,-0.048880134,0.34153005,-0.29928797,0.39349762,-0.3063828,0.23703761,0.46012592,-0.43081123,-0.5088294,-0.4150353,-0.1590689,1.0900857,-0.2783423,-0.7191118,0.11651923,-0.21966507,-0.29256597,-0.1549772,0.6555008,-0.1556101,0.105645485,-0.68142813,-0.13884793,-0.016938487,0.25770906,0.08935974,0.26755774,-0.3642585,0.88692516,0.026634319,0.5882373,0.4448831,0.17533578,-0.17878532,-0.46080568,0.25971296,0.7410484,0.375181,0.07847919,-0.2461364,-0.17880745,-0.16175675,-0.2233936,0.037618805,0.6160199,0.8752286,-0.037579454,0.07218761,0.24073088,-0.22167595,0.027636811,-0.24247925,-0.38970488,-0.2532026,0.17564575,0.43960088,0.5214144,-0.02055149,0.26001835,0.055027492,0.27500194,-0.3044431,-0.5049886,0.65203476,0.93317896,-0.18332063,-0.05890461,0.55672276,0.67364424,-0.3507639,0.5173334,-0.6463317,-0.39925703,0.4665641,-0.17517142,-0.5147091,0.31345412,-0.43869898,0.10709662,-0.70710754,0.15719078,-0.4942146,-0.2714196,-0.77779853,-0.08193493,-2.9269307,0.11105231,-0.3290477,-0.08238526,-0.40166038,-0.17767687,0.44657642,-0.38302487,-0.5166747,0.23337577,0.19350131,0.6631278,-0.06754859,-0.05673011,-0.38378686,-0.25719,-0.26689234,0.20697513,0.020175753,0.087213375,-0.39432636,-0.28794646,-0.029737523,-0.16110332,-0.2660026,-0.13175417,-0.28498736,-0.23161952,-0.2513506,-0.24885789,-0.17527331,0.6656992,-0.3647054,-0.0756019,-0.23333065,-0.022598648,0.06122517,0.37119165,0.039851807,0.22205357,-0.04932418,-0.12419183,0.056744635,-0.3419606,0.13472612,0.1169585,0.1320386,0.69919634,-0.15026556,-0.007543317,0.33961576,0.60954523,0.04430782,0.8693796,0.22899291,-0.095837906,0.46497256,-0.16268589,-0.3121509,-0.7591378,-0.19694625,-0.13029717,-0.3010109,-0.547978,-0.15103768,-0.23349372,-0.7151333,0.46026847,0.14817251,0.1785331,0.078798614,0.52320874,0.49672085,-0.1275654,0.06034107,-0.16415755,-0.15741846,-0.3299641,-0.28314728,-0.84700096,-0.51905525,0.16958416,0.69430363,-0.1474826,-0.2766619,0.25298664,-0.3723523,0.09954447,0.31086174,0.10032606,0.116067424,0.32919332,0.2476342,-0.6196561,0.696761,0.10178079,-0.15770134,-0.6642513,0.1456472,0.6483177,-0.7380882,0.37746185,0.60127014,-0.056678712,-0.32843775,-0.55160993,-0.116120614,0.09620179,-0.32701316,0.41944274,0.1768719,-0.8537427,0.42148283,0.1938483,-0.037448194,-0.70317876,0.51243746,-0.042274285,-0.13431735,0.023506578,0.51917803,0.019604564,0.13329098,-0.22106747,0.31835964,-0.35867923,0.23572232,0.1462739,-0.078765534,0.5213911,-0.046352386,-0.1672632,-0.7449618,0.115628324,-0.55406696,-0.11367799,0.5625506,-0.043052394,0.3199202,0.09680707,0.12702645,0.37807605,-0.34409577,0.22431557,-0.1960801,-0.37754494,0.40819237,0.49188766,0.35814834,-0.40480635,0.7467702,-0.15950893,-0.21329466,0.08958066,0.20898768,0.3516486,0.26215467,0.5021262,0.029178878,-0.17274849,0.086679,0.96527004,0.3122849,0.50298727,0.3951871,-0.068468705,0.50471205,0.033108365,0.16214712,-0.2755715,-0.5208642,-0.15553318,0.002004632,0.24547903,0.37290117,0.0054420233,0.5383344,-0.120506905,0.15656163,-0.07646445,0.27098346,0.10032716,-0.67135775,0.2745134,0.25189453,0.68197405,0.64854366,-0.07056708,0.05802358,0.46601528,-0.18826962,0.078342,0.35468084,0.13372931,-0.5193105,0.51993996,-0.56558836,0.22959697,-0.18114951,0.02418461,0.13701923,0.036726702,0.46337706,0.79159874,-0.15079817,0.049597852,-0.058620814,-0.22435713,0.28286773,-0.2674189,-0.016775532,-0.1299521,-0.46199164,0.60326433,0.3972394,0.38984272,-0.2061458,-0.07579662,0.22495513,-0.055231202,0.53757507,0.06554586,0.096310414,-0.25842458,-0.59329176,-0.26665646,0.48005673,-0.054865744,0.15200412,0.25290355,-0.23176602,0.18900375,-0.07701974,-0.08832292,-0.09170443,-0.6430273,0.11023987,-0.32343462,-0.61839205,0.649501,-0.02528033,0.27102828,0.328878,-0.05617268,-0.23085739,0.055130474,0.007037725,0.4794111,-0.101143666,-0.16048951,-0.36830926,-0.063460395,0.32031605,-0.48290023,0.0057658213,-0.01768466,0.1756312,-0.7202299,0.5377557,-0.37120432,-0.1998637,0.1673377,-0.2597174,-0.12567048,0.6077176,-0.2876595,-0.16402756,0.2997978,-0.07337095,-0.35401607,-0.35705847,-0.2297734,0.17231146,-0.07708037,0.1273375,-0.25952926,0.031611342,0.1124915,0.31884027,0.14860177,0.017633393,0.46765748,0.12228567,-0.52428305,-0.1762509,0.28047296,0.54462975,0.16760029,0.019033518,-0.2842228,-0.5346359,-0.36642843,0.2771825,-0.012390162,0.23654023,0.15850933,-0.45458147,0.76168424,-0.010426061,0.78404766,0.032822963,-0.4359884,0.12995742,0.5683857,-0.116240434,-0.19678439,-0.33061934,0.7678032,0.56695205,-0.19096892,-0.05608916,-0.47198132,-0.021287147,0.3467029,-0.2943487,0.0046860576,-0.08050973,-0.70108604,-0.23695551,0.17159484,0.21772881,-0.06297753,-0.28606123,0.1435716,0.068222575,0.15759088,0.2685322,-0.62419516,-0.23822732,0.37716293,-0.1371268,-0.009251835,0.18785068,-0.24727595,0.23327853,-0.66795766,-0.05554119,-0.44007125,-0.122528866,0.14553441,-0.22154489,0.22453716,0.070301466,0.2840787,-0.33074903,-0.49352902,-0.108325675,0.4231235,0.32051376,0.46658966,0.5598411,-0.16826937,0.04701313,0.0023168602,0.6038836,1.2666095,-0.12986264,-0.041071586,0.21331213,-0.506465,-0.7280669,0.22921522,-0.45557848,0.4309666,0.03383797,-0.46731168,-0.409437,0.22571845,0.05913353,-0.13335933,0.07076399,-0.7644667,-0.30656677,-0.00022700003,-0.2684804,-0.18565418,-0.35319546,-0.06396807,0.74474555,-0.33607224,-0.11754157,-0.10596103,0.2902893,-0.43898717,-0.4192522,0.14713906,-0.34066454,0.27054822,0.10609098,-0.23239692,0.2453059,0.07067892,-0.6524259,0.23487233,0.030004527,-0.4388608,-0.13141978,-0.3266931,0.067316815,0.7679269,-0.13112545,-0.03818847,-0.14620654,-0.7383459,-0.67681456,-0.43967268,0.010302661,0.17069733,0.1046209,-0.507968,0.20287158,-0.13866097,0.24288486,0.05145681,-0.41858324,0.42779693,0.123193555,0.45310694,-0.18754824,-0.6484892,0.17724968,0.107269004,-0.26807603,-0.41795555,0.39294648,-0.28917602,0.8035425,0.15798876,0.068931326,0.2208679,-0.7749496,0.281986,-0.3733832,-0.13060842,-0.56656474,0.08109655 +932,0.4235214,-0.30012378,-0.4511391,-0.01766689,-0.26355156,0.14559802,-0.09744671,0.49499363,0.30831286,-0.40423977,-0.28295296,-0.11248343,0.13106865,0.39307517,-0.20868029,-0.48064855,0.012137807,0.3050399,-0.42354122,0.54960036,-0.3661575,0.2307133,0.12415154,0.34634262,0.40505952,-0.0058145532,0.0001513958,-0.061042666,-0.33924216,-0.3421828,-0.46071383,0.22896484,-0.23603883,0.27646834,-0.07963332,-0.389262,-0.072112635,-0.5441246,-0.35635927,-0.7339477,0.22683686,-0.751934,0.5281545,-0.09287056,-0.22793151,0.1460182,0.31251937,0.3612641,-0.08953018,-0.13630931,0.20130971,-0.16312853,-0.10152699,-0.2446843,-0.3074949,-0.53852934,-0.6776759,-0.17283219,-0.2675235,-0.18764599,-0.19510746,0.32443902,-0.35072866,0.032424863,0.027669443,0.48236597,-0.30382773,0.23113999,0.13869397,-0.111340605,0.20613113,-0.67126185,-0.27758384,-0.028023062,0.16112797,-0.09173837,-0.33005765,0.22526997,0.46020338,0.23932849,-0.08482062,-0.11518073,-0.2614794,-0.15592432,0.09649977,0.66555625,-0.3077364,-0.54721165,-0.05800235,0.09835473,0.47266886,0.32114366,0.18753982,-0.31533054,-0.037416775,0.21272898,-0.36798513,0.41514322,0.24651766,-0.35545355,-0.03644373,0.30736688,0.32308847,0.16124487,-0.24362986,-0.20406379,0.014961334,-0.52439606,-0.03218514,0.20365074,-0.37561306,0.6358455,-0.19143926,0.31174314,0.57149625,-0.21389927,-0.052946083,0.18487048,0.2600737,-0.120238215,-0.32667425,-0.38604605,0.17454155,-0.4649966,0.11727778,-0.10876456,0.98776907,0.04880256,-0.572249,0.31379455,-0.6223952,0.07584903,-0.20659846,0.2490341,0.48049942,0.46315187,0.2940044,0.6742398,-0.37139133,-0.12909824,-0.07901691,-0.3162972,-0.12993647,-0.18504198,0.18034731,-0.5384584,0.027583249,-0.045931697,-0.08955094,0.31443012,0.5170992,-0.5927838,-0.23011255,-0.017089656,0.87483525,-0.30100453,-0.18849127,0.7986084,1.0448709,1.0521464,0.019067425,1.0670316,0.3187938,-0.21760684,-0.02548192,-0.11400983,-0.43984747,0.38201046,0.3700125,-1.0815431,0.16221759,0.04346744,-0.033674743,0.28189725,-0.25037855,-0.057343967,-0.15048432,-0.08477382,0.2218013,-0.15650068,-0.38795334,-0.4260348,-0.19414656,-0.018680014,0.14119364,0.24204026,-0.21631585,0.5364819,0.17838573,1.5243398,-0.084390655,-0.07919704,0.054756816,0.20574853,0.24328367,-0.0741244,-0.015190968,0.2516214,0.3225094,0.07335219,-0.4505994,0.11463433,-0.30607048,-0.34006265,-0.14009412,-0.15736529,-0.18943718,0.18274611,-0.37363705,-0.30052185,-0.1362894,-0.2420139,0.5395984,-2.7206607,-0.37430513,-0.056790728,0.30385244,-0.2036232,-0.5869462,-0.06648847,-0.58642584,0.39695483,0.018538503,0.57068163,-0.6336633,0.26178747,0.2878081,-0.6138712,-0.28783256,-0.7388653,-0.10950352,0.07929473,0.1692444,-0.023976097,-0.008196776,0.14083976,-0.008841212,0.5413424,-0.11083082,0.13455653,0.38162297,0.4456351,-0.093342945,0.56052303,-0.07994187,0.73769057,-0.17117518,-0.20424546,0.26185396,-0.42735556,0.34376848,0.06678062,0.18043351,0.6647911,-0.34048912,-0.76522255,-0.648409,-0.10304871,1.0325373,-0.14088185,-0.31296793,0.18319534,-0.35853162,-0.398255,-0.13758536,0.37392733,-0.11212291,-0.09265467,-0.75052065,0.034417767,0.063854866,0.093896955,0.021133631,-0.2055049,-0.20200147,0.5949973,-0.04909026,0.4245606,0.31569952,0.21792902,-0.44399226,-0.27541658,-0.104807444,0.88239706,0.5144143,0.12450673,-0.24118485,-0.08408319,-0.45975095,-0.08281803,0.09214912,0.4943266,0.5916528,-0.05556266,0.0528813,0.2947219,-0.0033179612,0.084093094,-0.08924428,-0.3862861,-0.06729072,0.0065279603,0.45020518,0.51872027,-0.018675685,0.7414993,0.08280253,0.44309264,-0.1429948,-0.5146834,0.44286457,1.3464062,-0.29566795,-0.4561235,0.5933266,0.33310825,-0.15647417,0.3351596,-0.4047275,-0.33362293,0.49988744,-0.1785958,-0.5247849,0.15621355,-0.27428088,0.100165404,-0.69804627,0.3839525,-0.31614143,-0.48067045,-0.38481063,-0.106616735,-2.4028816,0.2764633,-0.30952498,-0.14757627,-0.13224022,-0.23131885,0.006920081,-0.6623231,-0.48668283,0.1606341,0.28795996,0.71015745,-0.02959675,0.04519534,-0.028622326,-0.2548091,-0.08424293,0.12868387,-0.02620047,0.35925263,-0.028773006,-0.4118732,0.04805649,-0.06436612,-0.39173386,0.20196986,-0.7109136,-0.44443575,-0.05545921,-0.52117515,-0.52993417,0.7809354,-0.5497182,0.11946971,-0.13987805,0.14710023,0.05403935,0.26855147,0.09684534,0.095274046,-0.07679892,-0.029606186,0.19338916,-0.27191097,0.22530644,0.062364437,0.2659039,0.34097487,0.06531422,0.39764303,0.44159368,0.64478534,0.077351406,0.8594678,0.41102192,-0.108760685,0.08564322,-0.1753375,-0.46161515,-0.433752,-0.29148504,0.13932659,-0.4155078,-0.35059005,-0.13854629,-0.27935272,-0.67237335,0.5643664,0.15903424,0.16866867,-0.09597637,0.3779976,0.5744857,-0.28302997,0.07305508,0.076564424,-0.17777498,-0.5951296,-0.26442564,-0.5681158,-0.35114914,0.1749832,1.0952754,-0.33189502,0.19110394,0.020385921,-0.33079332,0.011314163,0.21278766,-0.14772996,0.043119576,0.42149937,-0.3922308,-0.6706992,0.28776997,-0.28625104,-0.18655106,-0.42822102,0.45872954,0.7730412,-0.5457555,0.5013826,0.42845318,0.0202115,-0.30609438,-0.36442822,-0.09851014,0.0826065,-0.18778917,0.37182057,0.25269726,-0.60969055,0.25034043,0.37522423,-0.31855172,-0.6149831,0.53023875,0.04085267,-0.31138185,-0.1780027,0.392378,0.35382217,-0.006488539,-0.055352155,0.08684875,-0.40873355,0.25668877,0.038598243,-0.028575612,-0.026120214,-0.19235413,-0.17211336,-0.8980131,0.122733936,-0.38432142,-0.37645784,0.2999658,0.12504321,0.2592034,0.23704435,0.07623445,0.2611295,-0.47897977,0.048188146,-0.13997093,-0.2964932,0.33599633,0.415023,0.49682486,-0.26443836,0.49125788,0.09030844,-0.15351914,-0.0003684117,0.031632457,0.40884268,0.25366843,0.40426606,-0.013891477,-0.27666062,0.36966795,0.68768936,0.121813536,0.34896952,0.04042798,-0.14228085,-0.16618453,-0.05386639,0.25524247,0.11516975,-0.5842767,-0.081343815,-0.39096242,0.11955197,0.5129684,-0.08660091,0.21945542,-0.104807205,-0.42121476,0.02700498,0.040226314,0.17322387,-1.1970071,0.4696374,0.2242476,0.8157782,0.30866763,-0.05579144,-0.13329403,0.69004565,-0.24640872,0.20364247,0.35767287,0.014855476,-0.33551788,0.47057045,-0.82567066,0.48488948,-0.042627737,0.018826861,0.0054041226,0.03282006,0.35026735,0.87530136,-0.23604153,-0.012909352,0.10734903,-0.4872058,0.12059419,-0.44525167,0.054500606,-0.71850514,-0.44400883,0.6873198,0.49064004,0.42207208,-0.14778982,0.034672365,0.24354824,-0.16518322,0.20579419,0.11390995,0.2238044,-0.10078209,-0.71273035,-0.035503928,0.42789766,-0.027777625,0.30235374,0.04485991,0.026760118,0.21737133,-0.15196422,0.05774832,-0.0873712,-0.5862814,-0.010685169,-0.3854117,-0.575581,0.446475,-0.25879616,0.10519728,0.2229103,0.06368239,-0.04337615,0.48487267,0.37939495,0.85004646,-0.02974088,-0.10225366,-0.25571287,0.28078163,0.022245921,-0.025305588,0.09330761,-0.15816863,0.13049135,-0.7114778,0.5711465,-0.10324281,-0.15604533,-0.028330078,-0.09618103,0.15754224,0.43180344,-0.26988935,-0.08807169,-0.21641353,-0.032629233,-0.20727803,-0.13573074,-0.05368305,0.2418358,0.39071178,0.116081126,-0.20982376,-0.3526953,-0.36845878,0.10524146,-0.15842159,0.48575848,0.33871153,0.07943102,-0.21536604,-0.24107185,0.09385408,0.4192742,-0.0132002,-0.2869101,-0.38766187,-0.3949644,-0.40266922,0.2047484,-0.0330435,0.4053197,0.037224695,-0.1163561,0.83077997,-0.22077672,1.2209531,-0.029639363,-0.378169,-0.072603896,0.4270624,-0.12148949,-0.10282489,-0.12694378,0.89601296,0.4850827,0.09629337,-0.07048565,-0.4643559,0.057907693,0.20054308,-0.23154886,-0.099224254,0.1197925,-0.41677624,-0.44938284,0.1800766,0.08433808,0.15720852,-0.08862233,0.107762344,0.51184785,0.02677201,0.21887878,-0.36479828,-0.09708995,0.22591121,0.37675107,-0.04598747,0.2933809,-0.46763223,0.33217922,-0.46698138,0.20612827,-0.34624916,0.19102618,-0.14868332,-0.14350048,0.28567642,0.21440798,0.21899632,-0.33094183,-0.27321735,-0.055080123,0.44413823,0.100233786,-0.045179807,0.4619308,-0.29680884,-0.15312946,0.02065494,0.50553244,0.9822194,-0.3467852,-0.12340387,0.41205978,-0.39788035,-0.4523474,0.4677195,-0.24261746,0.07948008,0.113989204,-0.090987355,-0.56171644,0.29380938,0.3947179,0.07751311,-0.080595136,-0.51762354,0.020592557,0.25131696,-0.42714706,-0.17154004,-0.24863304,0.3159324,0.27384374,-0.2807503,-0.3844035,0.059254467,0.18296146,-0.1002976,-0.2987472,0.004264992,-0.42440277,0.21605372,0.06462753,-0.24198912,-0.16376813,0.006995485,-0.47389752,0.020803057,0.10814951,-0.31851885,0.22497147,-0.20711423,-0.17973843,0.83316296,-0.25800386,0.122705825,-0.5776565,-0.29330096,-0.42744234,-0.5152716,0.26525503,0.106212124,0.00929395,-0.74969107,-0.13272788,0.05100971,-0.23531431,-0.09648728,-0.28916013,0.51999915,0.13138627,0.39257765,-0.1929761,-0.7826712,0.1500054,0.017243495,-0.059355512,-0.5891821,0.31870762,-0.13690211,0.78855455,0.042524572,0.015073623,0.50891787,-0.3327435,-0.07915003,-0.263917,-0.32951406,-0.70442927,-0.08976392 +933,0.5515579,-0.099528074,-0.6158635,-0.3929587,-0.2676689,0.20854884,-0.20820437,0.34287226,0.3867438,-0.3997663,-0.09555873,-0.0029612505,-0.07083308,0.32104543,-0.17087951,-0.9137253,0.15265135,0.22411579,-0.6934407,0.30089352,-0.4780636,0.36255786,0.014109208,0.29734087,-0.020966332,0.19254486,0.002182548,0.06091214,0.1443045,0.04345516,-0.21368282,0.1279412,-0.69447577,0.14449173,-0.042589802,-0.4166195,-0.12996474,-0.44046286,-0.2614101,-0.83233607,0.5130584,-0.8775886,0.5351077,-0.04923926,-0.43518803,0.11574335,-0.1446322,0.103878506,-0.41226262,0.0654592,0.1798536,-0.2109317,-0.11126088,-0.1190494,-0.2629656,-0.497101,-0.66172135,0.033718403,-0.41940907,-0.071356006,-0.2734988,0.17049639,-0.34935492,0.04251615,-0.32514888,0.38778433,-0.35074776,0.041906916,0.19092456,-0.19718647,0.019759191,-0.49348485,-0.073658675,-0.17556173,0.19220176,-0.035779588,-0.33218274,0.14613467,0.37161556,0.76086944,0.12102655,-0.37204272,-0.079112664,0.07834211,0.024313666,0.3888128,-0.25006023,-0.49489486,-0.20522235,-0.15408093,0.2963545,0.10253684,0.11922161,-0.4849076,0.0018669006,0.019638687,-0.2996832,0.3928076,0.6084321,-0.5186657,-0.16772754,0.4281076,0.41504022,0.00967611,-0.13866447,0.25999436,-0.045564897,-0.5890594,-0.4044972,0.16352382,-0.09772842,0.60756123,-0.21797313,0.17825016,0.65808415,-0.049557988,-0.038103715,-0.066912375,-0.09620566,0.0040889885,-0.35766375,-0.12408208,0.18000236,-0.5564728,0.1173163,-0.35333025,0.7413763,0.33979723,-0.88565814,0.47832453,-0.448782,0.18376344,-0.17788158,0.6194394,0.8674033,0.47527775,0.07517129,0.903792,-0.6649695,0.046062145,0.114361115,-0.3449586,0.08665287,-0.011515255,0.16448912,-0.4796278,0.18017925,-0.03312195,0.0155850835,0.04445805,0.33990496,-0.38902107,-0.2208499,-0.00652984,0.7131596,-0.41898102,-0.01298379,0.6897465,0.9117681,1.0411911,0.1302242,1.5975763,0.3689596,-0.13239184,0.1772264,0.012030995,-0.8037573,0.13460454,0.3308763,0.5806037,0.16973709,0.11046973,0.1519367,0.3523766,-0.2205848,-0.00075323763,-0.03008609,0.15269583,-0.029088827,-0.1861577,-0.2201896,-0.2286691,0.20409995,0.1936356,-0.11953679,0.3210258,-0.08806502,0.3964609,0.3109543,1.3154225,0.05851255,0.11737123,0.044032626,0.43863788,0.21996967,-0.27263615,-0.06364787,0.20502557,0.48327512,-0.14949171,-0.5712675,-0.028795429,-0.26703578,-0.40657154,-0.087613836,-0.34185892,-0.19637646,-0.077279314,-0.47906354,-0.20508605,0.044890072,-0.35316724,0.5237323,-2.2145495,-0.3061601,-0.1176699,0.33418816,-0.059776586,-0.379545,-0.23380738,-0.47526768,0.28416765,0.28458717,0.22780114,-0.7794455,0.40488422,0.46613222,-0.3820333,0.0018686423,-0.74168295,-0.11809338,0.0011966503,0.2912849,0.042003732,-0.09119313,-0.22010294,0.32873985,0.59807515,0.23421523,-0.021249212,0.3080103,0.54819834,0.016113387,0.52014494,0.018186565,0.6601659,-0.31170565,-0.08312193,0.31494635,-0.5753483,0.3643903,-0.04257563,0.2718351,0.48839903,-0.46915972,-0.7414516,-0.79538524,-0.40344986,1.2806085,-0.306939,-0.31780705,0.4913317,-0.14748889,-0.26565665,-0.10436451,0.5352198,-0.088478774,-0.11519364,-0.6179621,-0.12560664,-0.05831424,0.19813706,-0.13898923,-0.060177848,-0.31075758,0.8865316,-0.11166391,0.5607649,0.26719823,-0.014389198,-0.002173167,-0.44517496,0.076280706,0.9065169,0.42736262,0.17289501,-0.20016098,-0.08990001,-0.40160143,-0.040560644,0.060816612,0.6298914,0.7265163,-0.02673025,0.0020876504,0.2384472,0.075179964,0.048597775,-0.20483612,-0.3674841,-0.071830064,-0.074191764,0.42659774,0.58876216,-0.3262585,0.02039658,-0.17023805,0.029914673,-0.12925838,-0.5477756,0.6142712,0.9508871,-0.09606739,-0.18691455,0.48648483,0.22069469,-0.56904024,0.4526874,-0.57996315,-0.19822524,0.6037651,-0.005737064,-0.40113074,0.10996633,-0.3609812,-0.043657325,-0.73243207,0.34532234,-0.14989172,-0.5504574,-0.19432174,-0.14603749,-3.8911922,0.29910544,-0.06549054,-0.02675613,-0.3230337,-0.17687389,0.3885515,-0.32986993,-0.6059605,0.09030425,-0.04595501,0.5460676,-0.08145075,0.21925679,-0.22825839,-0.116657905,-0.44113016,0.104420304,-0.022381105,0.2537682,0.02084306,-0.22938214,-0.06414222,-0.24375965,-0.44034874,0.053391837,-0.68185055,-0.4665709,-0.12482051,-0.3928812,-0.23964915,0.62716365,-0.3990317,0.04589506,-0.30917817,-0.13765992,-0.47739586,0.34865877,0.03134369,0.06203447,-0.1943024,-0.03739734,-0.16565596,-0.2219926,0.1850593,0.093882136,0.35952193,0.33371463,-0.3349284,0.0981139,0.4729797,0.8420712,0.010281169,0.86294806,0.12097379,-0.0045243273,0.54061645,-0.014125537,-0.33483136,-0.69128996,-0.26450586,-0.16867755,-0.50916255,-0.2565193,-0.017006222,-0.41328943,-0.78582245,0.19566053,0.08526925,0.13100848,0.17241666,0.23391834,0.37230122,-0.12406197,0.16219491,-0.22544256,-0.32351434,-0.57046384,-0.47228146,-0.5697266,-0.48445606,0.26073474,1.1023458,-0.18837214,-0.11474133,-0.04553688,-0.21771577,0.17496324,0.24720527,0.17679718,0.13051699,0.4703085,-0.34463963,-0.66983914,0.44782254,-0.20377462,-0.04728357,-0.5908663,0.0030460174,0.67047757,-0.6272507,0.7085282,0.30202144,0.12587295,0.13869761,-0.6103135,-0.30592516,-0.09725107,-0.25523245,0.59803426,0.18951383,-0.7703349,0.51211923,0.2732923,-0.022417916,-0.67043334,0.39468992,0.0133016985,0.007521409,0.014850026,0.3733962,-0.14004919,-0.16228005,0.028250149,0.20035568,-0.549191,0.28668377,0.3898247,0.19746931,0.13230887,0.023393286,-0.13664554,-0.6071732,-0.1665908,-0.5802082,-0.19948174,-0.050056215,-0.06840621,0.20649682,0.060640637,0.106157035,0.55758244,-0.37758482,0.31492087,0.11322134,-0.35757717,0.4092442,0.40310913,0.42063016,-0.4826894,0.548537,0.06022721,0.07272743,0.038775966,0.1890897,0.4679382,0.39720842,0.4394315,-0.07461973,-0.041034248,0.1870937,0.88547397,0.2221566,0.28814682,0.08996049,-0.18294074,0.43897164,0.3259989,0.20027138,-0.0490825,-0.46944427,-0.08330447,-0.041057665,0.14645253,0.57895064,0.07847385,0.22304495,-0.14665984,-0.12087609,-0.007974058,0.072212376,-0.101432286,-1.2500125,0.16641596,0.2102307,0.7589564,0.52746373,-0.14549395,-0.04151488,0.2646295,-0.2918832,0.2972862,0.4779897,0.082426436,-0.4870811,0.4669986,-0.58092463,0.4177884,-0.14987916,0.08006019,0.341682,0.20460683,0.46764633,0.9670969,-0.08663066,-0.030762713,0.04218649,-0.23123527,0.19417746,-0.51188385,-0.044831477,-0.5110217,-0.29919514,0.6775011,0.5376101,0.22371545,-0.4384515,-0.034911074,-0.023023963,-0.07798534,-0.099399686,-0.07988251,-0.05699787,-0.19601037,-0.674714,-0.22930059,0.71871215,0.100631624,-0.12608832,0.080560975,-0.51893723,0.30718324,-0.28847423,0.07317869,-0.1551346,-0.8236669,-0.058762792,-0.33855245,-0.40332377,0.3418581,-0.22798237,0.15657578,0.35765675,0.036187604,-0.28229973,0.18389884,0.10637658,0.7431861,-0.004593762,-0.087863885,-0.480859,0.1439082,0.27025887,-0.38674986,-0.07044307,-0.3731224,-0.013594969,-0.5421523,0.42333624,-0.039147798,-0.16594109,0.30032885,-0.0031208396,0.14471044,0.5933602,-0.37007597,-0.15845402,0.03314295,0.151889,-0.19199361,0.012092022,-0.3140291,0.3424519,-0.0054551386,0.062796794,0.046433054,-0.14274035,0.04976159,0.21485019,0.1891974,0.20023043,0.37658823,-0.07757951,-0.38771915,-0.0026567394,-0.011494983,0.52114654,0.18880977,-0.19234984,-0.20573139,-0.25540137,-0.2907362,0.443885,-0.12604287,0.2616915,-0.05175584,-0.362473,0.6050902,0.19986765,0.9959215,0.12963209,-0.40963423,0.05709028,0.55286384,0.105060026,-0.020946672,-0.31557724,0.8101208,0.44593334,-0.1789538,-0.16909868,-0.33668217,-0.15318607,0.11601746,-0.20752598,-0.086369924,-0.07647391,-0.93184114,-0.03794033,0.075096115,0.27093875,0.2023534,0.03085373,0.015710918,0.1628155,0.14431117,0.5529834,-0.6757999,-0.08180474,0.12805691,0.21062693,0.04263145,0.086854406,-0.27951676,0.32005247,-0.75917584,-0.008218775,-0.50113535,0.000640527,-0.21673217,-0.41899714,0.14912106,0.06435773,0.25528696,-0.32172364,-0.40618637,-0.3681212,0.62373173,0.3083078,0.45170167,0.74897426,-0.24684905,-0.0046431995,0.24818999,0.46415395,1.0831965,0.0107781235,0.054103535,0.3428171,-0.41168234,-0.7053532,0.08379483,-0.396719,0.19642879,0.05818489,-0.1221906,-0.3589336,0.22374131,0.1823084,-0.09073491,0.20660426,-0.830174,-0.25156555,0.45315796,-0.1874996,-0.2728484,-0.31187597,0.2943954,0.8455936,-0.5253119,-0.31545618,0.12747392,0.28193432,-0.2420152,-0.74852854,0.08375576,-0.4565211,0.5259664,0.1726577,-0.42862982,0.039537504,0.0887499,-0.54523194,0.1846049,0.22018205,-0.33516195,0.014041323,-0.35636738,-0.10057053,1.0025189,0.18616024,0.17635599,-0.5536898,-0.5675432,-0.8800701,-0.35233214,0.24755576,0.30424875,0.08288811,-0.51718986,-0.17742833,-0.1655524,0.10040507,0.082020134,-0.35441458,0.44065985,0.13389371,0.47398785,0.03259173,-0.9937638,-0.00012592628,0.06498745,-0.24267492,-0.37098652,0.60282165,-0.16256817,0.7784142,0.0063465904,0.010570208,0.05477277,-0.754488,0.2706899,-0.58959997,-0.0050643133,-0.57757914,0.22106992 +934,0.3699265,-0.22251728,-0.5186301,-0.11755448,-0.37733832,0.032716695,-0.2267933,0.2991309,0.2858762,-0.06250026,-0.07261853,0.017734867,-0.02673192,0.34165993,-0.06265273,-0.7126887,-0.1853259,0.04986305,-0.69764215,0.6260531,-0.5118337,0.31968784,0.014786609,0.2824974,0.25158936,0.443207,0.13787816,-0.022966592,-0.0040599983,-0.12864277,0.017490761,0.055579428,-0.5308374,0.10571987,-0.123876065,-0.1877362,0.1238441,-0.5259392,-0.25513577,-0.711405,0.21556225,-0.7606494,0.46780917,-0.0142852785,-0.0804036,0.0143634,0.37019163,0.43925825,-0.39658266,0.060289722,0.26146019,-0.11921905,-0.030823343,-0.25804478,-0.099538915,-0.4067053,-0.5203336,-0.11959657,-0.57060224,-0.36331412,-0.16970721,0.21310264,-0.4450311,-0.12895906,-0.2450842,0.5010421,-0.4546782,0.022278527,0.3742793,-0.26977202,0.12320385,-0.627157,0.051198322,-0.053715143,0.35430786,0.18823287,-0.01467585,0.44228002,0.22730848,0.28366855,0.29353243,-0.27297968,-0.3194348,-0.30122226,0.23647998,0.3169063,-0.026917513,-0.20520717,-0.2871915,0.09153225,0.12299423,0.40654185,0.06758405,-0.23289065,-0.008017356,-0.120843634,-0.1365618,0.5478509,0.41343752,-0.3215795,-0.2773227,0.37655488,0.63296795,0.35951632,-0.26510027,-0.01318031,0.013573945,-0.5084627,-0.13942567,0.20582469,-0.11761041,0.335024,-0.10133292,-0.03398713,0.8191611,-0.09952119,-0.064241454,-0.09076178,0.07132488,-0.06218081,-0.41909477,-0.19575033,0.13879925,-0.5033678,0.099198006,-0.24108194,0.5965115,0.06067639,-0.5367031,0.39558524,-0.61779046,0.17947327,0.07031429,0.59983313,0.5918744,0.44006735,0.2870451,0.77925354,-0.17701264,0.22707237,-0.18641993,-0.38441658,0.0063316664,-0.23221086,0.2660196,-0.49334943,0.17557599,-0.27353013,-0.012718749,-0.00016378959,0.48670676,-0.33982506,-0.1833498,0.19542669,0.8519247,-0.23325354,0.02610873,0.57024276,1.1209447,1.200313,-0.061533794,1.090952,0.34709084,-0.27839378,0.013514793,-0.46202812,-0.5059319,0.16205902,0.30137333,-0.19962288,0.3085772,-0.12683062,-0.037271254,0.3310814,-0.29632598,0.14477305,-0.030724132,0.3946698,0.23142001,-0.1172618,-0.3683415,-0.21556288,0.09842985,-0.059468213,0.32366735,0.22762285,-0.25083432,0.24973746,-0.08412245,1.4753329,-0.13259819,0.16769552,0.23908043,0.51365507,0.29536715,-0.09029971,0.13534644,0.4455698,0.29572985,-0.106441185,-0.5988134,0.20890446,-0.4364303,-0.47968197,-0.14745459,-0.41197142,-0.12120966,0.0322428,-0.4037126,-0.03200116,-0.17724963,-0.2874384,0.35537368,-2.8116407,-0.24318132,-0.17427053,0.17567466,-0.4094663,-0.18296903,-0.09393532,-0.5195438,0.26986626,0.19173008,0.48577294,-0.54994625,0.623094,0.6073119,-0.62676454,-0.09506295,-0.53187996,-0.037508305,-0.06442366,0.54020566,-0.093292855,-0.03306057,-0.20624371,0.33697426,0.73040193,0.1069661,0.2310897,0.56230724,0.37439093,0.060923316,0.65575194,-0.061362464,0.5210761,-0.23097295,-0.10208122,0.41272166,-0.43026435,0.3450117,-0.16569014,0.08982936,0.570995,-0.4482943,-1.022909,-0.48752123,-0.24956328,1.0355618,-0.33001506,-0.31361687,0.21350752,-0.19998471,-0.045793854,0.14379859,0.6165758,-0.07372991,0.22898254,-0.6425673,0.12115073,-0.080323264,0.18372692,-0.013072848,0.13607332,-0.39723217,0.7929749,-0.05479383,0.64931446,0.18735223,0.18764432,-0.26686928,-0.29793707,0.09994831,0.7485482,0.34019387,-0.005798443,-0.13569328,-0.25755286,-0.1203094,-0.30926672,0.0013072013,0.64095634,0.5479603,-0.11081233,0.050009627,0.25816327,-0.24285384,-0.07644346,-0.18507555,-0.18624298,0.017242007,0.15819506,0.37602776,0.7055187,-0.13142785,0.42874792,-0.15741642,0.24242344,-0.18665963,-0.48326743,0.5514864,0.32472107,-0.22298256,-0.119680725,0.4956535,0.55168456,-0.39307016,0.50805193,-0.5527302,-0.21167488,0.7214047,-0.20353886,-0.3918366,0.13413684,-0.2819248,0.05370067,-0.650765,0.22951819,-0.45950946,-0.40496764,-0.37181345,-0.22669436,-3.111444,0.14999132,-0.09434835,-0.07502292,-0.27669147,0.15967141,0.24159019,-0.65510803,-0.6590291,0.051498644,0.26175317,0.56393445,-0.08434471,0.12578562,-0.31106982,-0.30277082,-0.1652746,0.37262172,-0.035161726,0.30790615,-0.11047939,-0.39226323,-0.08152019,0.04654561,-0.54848975,0.16593006,-0.5848275,-0.29470024,-0.057633925,-0.5669275,-0.27017584,0.5780599,-0.342696,0.053476207,-0.19428179,0.18566291,-0.16870634,0.13645266,0.12527274,0.33904442,0.24172857,-0.15662387,0.033816196,-0.2256928,0.4615488,-0.123217575,0.43475887,0.10266947,0.0060662627,0.09012949,0.42949754,0.6313442,-0.14749101,0.98644763,0.2384111,-0.093973376,0.2114101,-0.28607437,-0.10069768,-0.56478655,-0.35473964,-0.13232672,-0.35505596,-0.62403655,-0.056588396,-0.32672247,-0.8130631,0.48879424,0.08361907,0.40663978,-0.062131397,0.13616052,0.42236817,-0.2103413,0.076835275,-0.0025623043,-0.2049907,-0.39140838,-0.337241,-0.6326962,-0.4334779,0.22122052,0.85476,-0.3731355,-0.11224529,-0.07863082,-0.41347295,-0.090501174,0.13459225,0.09730757,0.1818637,0.42481005,0.046850406,-0.5674463,0.32605517,-0.07331495,-0.048999112,-0.5232815,0.054204885,0.67605907,-0.5968867,0.8021396,0.19908793,0.097344205,-0.12543415,-0.55778855,-0.07757539,0.16265754,-0.12008883,0.49145663,0.13638568,-0.68841326,0.50780445,0.27266437,-0.51976925,-0.7414108,0.27539623,-0.1196714,-0.3653205,-0.11024721,0.4390124,0.26068494,-0.10204231,-0.20922464,0.32456475,-0.44973728,0.16200621,0.18990655,-0.13102494,0.24798988,-0.05851132,-0.34498432,-0.66648215,-0.026229315,-0.4747664,-0.36500123,0.3182336,0.031286605,-0.030963112,0.05332939,0.15571485,0.36443135,-0.11018955,0.119669184,-0.03409465,-0.27746227,0.36568552,0.40469447,0.30939734,-0.36018175,0.49990645,0.049826406,-0.17407869,0.25587136,-0.0031101704,0.31672075,-0.10425242,0.46116525,-0.12149183,-0.07820247,0.30078545,0.56364,0.13306023,0.37660375,0.13394378,-0.25167748,0.41436154,-0.04875768,0.09739049,-0.039013322,-0.49133414,0.028188689,-0.055540666,0.102883704,0.4979741,0.31039074,0.3691243,0.16733232,-0.09924902,0.01699179,0.34734604,-0.22632709,-1.1155899,0.4008452,0.2208379,0.8633792,0.50560963,0.13748339,-0.09347364,0.6527768,-0.26225215,0.025546651,0.48712233,0.013371173,-0.44576672,0.7348583,-0.46622533,0.38409767,-0.13563937,-0.041510526,0.15804595,0.22854939,0.44534963,0.71796477,-0.20806089,-0.110299475,-0.12583429,-0.30169737,-0.0697389,-0.17808393,0.12800984,-0.39315757,-0.49516523,0.625301,0.46233204,0.36981493,-0.19989727,-0.07953484,0.003776137,-0.15078443,0.19054519,-0.10226035,-0.13614392,0.17207576,-0.51896393,-0.18933342,0.48944432,-0.23248434,0.08577843,-0.13074884,-0.22812273,0.07946544,-0.20182732,0.061761204,-0.0018022418,-0.64449626,-0.060188137,-0.121969305,-0.50230783,0.328088,-0.35671458,0.11774373,0.109901555,-0.10261329,-0.21476263,0.29462087,0.21822634,0.7265235,-0.08245202,-0.18376677,-0.19526339,0.059121784,0.090290986,-0.20890018,0.079663,-0.295819,0.18523155,-0.65155655,0.5951434,-0.24059817,-0.41134006,0.14736663,-0.3775093,-0.14467649,0.6199792,-0.25711837,-0.20666571,-0.23911457,-0.29561657,-0.3381514,-0.13297245,-0.24678881,0.29108688,0.12693056,-0.16182941,-0.21108386,-0.16033596,0.029197948,0.52827865,0.012161183,0.37021175,0.2733947,0.022065377,-0.20807794,0.055763755,0.2106015,0.42235547,0.26984933,0.08136201,-0.40638068,-0.31791005,-0.36015847,0.2903754,-0.16790959,0.13233124,0.08448288,-0.32170245,0.9668711,0.1672991,1.315436,0.077479795,-0.33207363,0.07761677,0.5920252,-0.022030327,0.1065885,-0.35991648,0.896097,0.6718025,-0.10172675,-0.0010349273,-0.58023554,-0.11520496,0.28357932,-0.43943414,-0.03898859,0.033677094,-0.5383216,-0.25472465,0.31355855,0.13620093,0.121791236,-0.11736969,-0.13915053,0.051626846,0.1891535,0.5092426,-0.5340763,-0.11757029,0.23256369,0.12853321,0.0413957,0.17406705,-0.40860102,0.40165988,-0.74515915,0.30556098,-0.26566938,0.14419153,-0.3511853,-0.26015913,0.1900402,-0.04738652,0.31558397,-0.3758396,-0.48135632,-0.020242717,0.48945385,0.12466601,0.08838512,0.66483194,-0.24052446,-0.037011225,0.079617135,0.6995389,1.1551279,-0.3954529,0.021248898,0.3384212,-0.42924973,-0.7478214,0.19890937,-0.48295787,-0.10336539,-0.14149158,-0.4758048,-0.4744944,0.30759734,0.044155844,0.113692306,0.03644073,-0.4850759,-0.14288808,0.38413402,-0.291714,-0.25129816,-0.15228263,0.26606524,0.75972724,-0.237257,-0.5406031,-0.009883819,0.25984457,-0.28912607,-0.5201627,-0.040089138,-0.19119915,0.4092762,0.07498181,-0.2405595,-0.11641216,0.17147046,-0.52342683,-0.048143197,0.17457695,-0.32440063,0.080049135,-0.27660954,0.020575635,0.8142541,-0.18553688,-0.0024813334,-0.6186408,-0.4490112,-0.89657676,-0.38231406,0.19600162,-0.031197349,-0.11399449,-0.3970506,0.0266289,-0.109858446,-0.092226334,0.11685894,-0.57037646,0.33482516,0.07265296,0.39286157,-0.36525434,-0.8727095,0.052516267,0.20122974,-0.14174183,-0.65487653,0.680666,-0.15255089,0.8292531,0.036987297,-0.1309577,-0.064234234,-0.49884665,0.14449635,-0.43514225,-0.14098868,-0.7449858,0.143699 +935,0.6309437,-0.17951417,-0.5457561,-0.027444322,-0.1920278,-0.07251166,-0.23628531,0.42251232,0.42489865,-0.48023993,-0.20291328,-0.26522356,0.1260586,0.25865895,-0.22006318,-0.56279325,-0.05398003,0.22157647,-0.53726804,0.678223,-0.35005713,0.24634616,0.106956966,0.44134873,0.18419805,0.19340464,0.0981266,-0.005846991,-0.3016679,-0.23057629,-0.09202159,0.2450489,-0.79120314,0.012368679,-0.2818076,-0.47609183,-0.1837647,-0.5231025,-0.47757372,-0.84419954,0.252953,-0.90653807,0.65277237,0.15756585,-0.3090669,0.37914452,-0.1628244,0.16479531,-0.20079397,-0.051484987,0.07035459,-0.12041729,-0.15429442,-0.24181916,-0.20027281,-0.22564347,-0.6980493,0.10367206,-0.40622938,-0.028232766,-0.318485,0.031896785,-0.3024816,0.01358143,-0.0019913774,0.7177124,-0.33028105,0.11111769,0.15448236,0.068017356,0.30969912,-0.4940762,-0.17299876,-0.20955387,0.2407395,-0.26521206,-0.20348102,0.16325487,0.2048835,0.4998363,-0.08028854,-0.19202067,-0.36968228,0.19159259,0.21339546,0.34109715,-0.1333182,-0.70862126,-0.081167094,-0.0034639745,0.066611886,0.007303467,0.38152182,-0.3459709,-0.08455351,-0.04388732,-0.16403848,0.60848844,0.5095369,-0.3329825,-0.12281931,0.18571952,0.58131516,0.22179674,-0.016102633,-0.06018389,-0.026002783,-0.6931523,-0.20591237,-0.023777429,-0.2350765,0.6942511,-0.1610696,0.17978151,0.47726867,-0.25237125,-0.23357016,0.18119049,-0.094655305,-0.028956322,-0.20113853,-0.2518863,0.44819084,-0.3408806,0.18111151,-0.15065421,0.67409664,0.25871268,-0.82548785,0.3574263,-0.6792648,0.19332038,0.088439666,0.53195614,0.6624806,0.46644104,0.4025944,0.6602129,-0.43462855,0.0682177,0.053435225,-0.47558886,0.03279912,-0.28897613,0.021432532,-0.47693428,-0.20248684,-0.04608563,-0.34238523,0.1463079,0.45147833,-0.5516155,-0.023352034,0.095779255,0.7141091,-0.20545913,-0.21820052,0.9596929,1.1319573,1.1177971,0.1115513,1.2825873,0.2435715,-0.2498809,0.22801377,-0.2728361,-0.81605655,0.34339648,0.30865875,-0.6071384,0.5697072,0.15906535,0.0019540512,0.3865272,-0.4626365,-0.015113058,0.024688445,0.1299378,0.01788964,-0.080814674,-0.54655075,-0.28718823,-0.26515797,0.09030518,0.11024405,0.31759077,-0.1459541,0.28287366,0.14924107,1.4727517,-0.18696798,-0.014846804,0.07050132,0.42263225,0.19391258,-0.21073541,-0.25393584,0.28386158,0.21298991,0.14837871,-0.53202856,0.024536463,-0.08720891,-0.3513387,-0.16993658,-0.26409924,0.07112826,0.0068489085,-0.25298202,-0.23679315,-0.2180437,-0.47718588,0.43469495,-2.3975549,-0.16550647,0.028154602,0.36099818,-0.23514828,-0.48411077,-0.11076998,-0.5690734,0.26421818,0.277095,0.4717485,-0.74705607,0.26858878,0.52194965,-0.5851774,-0.26901495,-0.70908266,-0.18510954,0.0030589746,0.30119303,-0.035659138,0.030878829,0.15827304,0.20787011,0.43137115,0.13483153,0.112351924,0.2518982,0.4237957,-0.14900337,0.45985353,-0.03657641,0.44815806,-0.21989432,-0.12998854,0.43712837,-0.20884132,0.22488198,-0.19416378,0.17583863,0.44004828,-0.55520815,-0.87107307,-0.59499943,-0.11387029,1.2180191,-0.16147819,-0.506763,0.24288982,-0.3458155,-0.24077691,-0.06520243,0.542174,-0.0610807,0.06458522,-0.8482543,0.08019415,0.01579477,0.16164456,0.041323144,0.027625378,-0.46368805,0.67009825,0.018787824,0.33989435,0.55952597,0.2549992,-0.15967193,-0.66617835,0.20762128,1.1374015,0.22367351,0.23174077,-0.5315422,-0.21224786,-0.38409123,0.0930489,-0.1588645,0.5028673,0.675891,-0.14330308,0.11845226,0.2663258,0.18481387,0.20093773,-0.14712276,-0.271649,-0.13111888,-0.093303666,0.5528329,0.89681816,-0.25825906,0.4828563,-0.044756625,0.16037607,-0.17597015,-0.3524021,0.6703581,1.2894047,-0.17261957,-0.23732604,0.69777274,0.37260893,-0.35627124,0.52914137,-0.4785091,-0.2836679,0.33280137,-0.15032925,-0.42297876,0.3080627,-0.25265366,0.1927933,-0.91151345,0.31234974,-0.22082628,-0.33541864,-0.53937787,0.05998849,-3.2826293,0.29824623,-0.25909546,-0.20515302,-0.121570095,-0.18184243,0.10390489,-0.5866367,-0.70057577,0.1747563,0.031473987,0.70316327,-0.30438823,0.14270706,-0.052347124,-0.45500416,-0.2752593,0.18976201,0.27071312,0.38852435,0.04258662,-0.49994656,-0.13759255,-0.16616032,-0.35315132,-0.014725112,-0.53371656,-0.40510792,-0.12813455,-0.6302557,-0.29554525,0.70344317,-0.28101796,0.0829034,-0.32274422,-0.030912098,-0.09325095,0.3033048,-0.1335126,0.2839805,0.007549649,-0.011941339,-0.04127163,-0.12624682,0.17682287,0.096899256,0.20341113,0.36885756,-0.2799504,0.32949525,0.48870498,0.90686184,-0.06966433,0.9849546,0.5252383,-0.06500951,0.18515283,-0.20278054,-0.32186958,-0.6855379,-0.3274656,-0.0141048385,-0.38535696,-0.55799365,-0.13406986,-0.31159702,-0.8030562,0.6692288,-0.15904385,0.25094637,0.11774263,0.2253491,0.59923893,-0.2955217,-0.052796178,-0.15772769,-0.14874502,-0.6097806,-0.19577415,-0.59355795,-0.3890268,0.12041289,0.9595099,-0.19099139,0.07336453,0.18618315,-0.21612933,0.049251676,0.1064965,-0.02399713,0.026865661,0.4842513,0.15779641,-0.6473447,0.41907603,0.051345173,-0.16341724,-0.60071635,0.22201866,0.6238687,-0.6461014,0.63371044,0.30626976,-0.075267784,0.004763365,-0.49960232,-0.2883465,0.004993365,-0.18843222,0.44769397,0.45072657,-0.7188437,0.28579754,0.32873538,-0.31829935,-0.78138757,0.5923104,0.0858826,-0.28233224,-0.084115475,0.42589256,-0.016594378,0.1508686,-0.3184449,0.18420905,-0.32892925,0.22497548,0.297654,-0.11044449,-0.108962044,-0.15023343,0.039304394,-0.8933494,0.15457764,-0.51200324,-0.32052904,0.22729227,0.22675452,0.08097669,0.21172285,0.22617333,0.2325764,-0.38690358,0.09470483,-0.049678687,-0.3083634,0.48455268,0.5096902,0.4901157,-0.39660564,0.5797146,0.024480421,-0.12454402,-0.096785106,-0.1574538,0.39062464,-0.028950058,0.19771582,0.346615,-0.2656287,0.10604345,0.6060547,0.16209577,0.46186832,0.2611058,0.03863599,0.38530922,0.06466326,0.3595444,-0.07738293,-0.591309,0.05195484,-0.4132745,0.15188634,0.44289196,0.11133187,0.19063582,-0.19559255,-0.40571338,0.018745743,0.22473162,0.05118769,-1.2826384,0.12495096,0.14528304,0.69021004,0.760025,-0.048091613,0.054671504,0.585269,-0.087640636,0.12303548,0.45257425,0.07857696,-0.545213,0.5441312,-0.639395,0.39712632,-0.0505964,0.073189,-0.024251666,-0.1486183,0.27060792,0.72228426,-0.26460668,0.044826884,-0.13534616,-0.10908772,0.06434397,-0.50985545,0.1163058,-0.53034586,-0.22164124,0.85397935,0.46075124,0.43203098,-0.22842506,0.10629837,0.1385484,-0.16382283,0.1669694,0.12921122,-0.0054988493,-0.032736655,-0.7166704,0.080759645,0.5571063,-0.06452133,-0.0051645315,-0.13106848,-0.1960551,0.080055185,-0.37545982,-0.3301137,-0.13478644,-0.8643912,-0.21748754,-0.46317512,-0.38151214,0.47180727,-0.033218686,0.17159666,0.19070816,0.14042829,-0.3053067,0.33957675,0.1728016,0.6946657,0.23221014,-0.08187492,-0.2711464,0.32782632,0.18862931,-0.17282611,-0.09536866,-0.122178465,0.039668087,-0.47701403,0.4404604,0.021932181,-0.3117103,-0.09133332,-0.055557307,0.05972,0.664581,-0.19018275,-0.24875487,0.09236769,-0.1474327,-0.19342946,-0.2909548,0.046436742,0.34077257,0.2840668,-0.26615322,-0.038757287,0.001300179,-0.096070565,0.22462025,0.06466705,0.4506966,0.41110295,0.07954086,-0.3190379,-0.1788826,0.19468692,0.56153864,0.0743304,-0.26009205,-0.38271147,-0.4135751,-0.411106,0.088542625,-0.03274605,0.17214702,0.09230303,-0.103164636,0.6750899,0.27006772,1.1709952,0.029533941,-0.39741457,0.10386555,0.3662567,0.00071251165,-0.19637793,-0.42929113,1.1580316,0.36771843,-0.16865699,-0.11773329,-0.41994488,-0.01566465,0.15315312,-0.13362342,-0.061721005,0.008857338,-0.6351143,-0.098398834,0.25072196,0.33041185,0.11809135,-0.19685403,0.26580366,0.3505343,0.017390866,0.27015665,-0.4382117,-0.26017708,0.45060423,0.22566697,-0.002940563,0.1224286,-0.32717234,0.2793039,-0.38407263,0.007429577,-0.377898,0.08699449,-0.07881876,-0.300327,0.32838744,0.1763729,0.4129638,-0.45061603,-0.29704574,-0.4599363,0.5266405,0.025666429,0.0588043,0.49169824,-0.28059185,0.0015680927,0.036706313,0.5198767,0.98187286,-0.08771029,0.09015817,0.29578808,-0.3355775,-0.53885925,0.4724491,-0.28392637,0.22830957,-0.16584137,-0.13495442,-0.6980352,0.08279122,0.06864663,0.03882146,0.2650193,-0.77451396,-0.37224114,0.2829507,-0.38658327,-0.033439614,-0.2474121,-0.09807988,0.5600202,-0.2669518,-0.40163058,0.026576353,0.03821797,-0.06571592,-0.5232352,-0.1723145,-0.273958,0.13061555,0.25121623,-0.28701115,-0.18491386,0.16109553,-0.4783114,0.08573369,0.059530433,-0.3844125,0.046359863,-0.34933472,-0.13718988,1.0591274,-0.2700969,0.31487483,-0.32399565,-0.69711673,-0.96664625,-0.34400088,0.4198052,-0.08304889,0.09905942,-0.6497739,0.08789032,-0.15322748,-0.19606687,0.03206152,-0.44601992,0.3793774,0.1362525,0.36342147,-0.09314394,-0.8535365,0.17562366,0.16705987,-0.17707366,-0.6748164,0.46685347,0.22255689,0.8710644,-0.02632611,0.17469905,0.31683138,-0.62048304,-0.20424303,-0.058906868,-0.06620196,-0.5028647,0.11890142 +936,0.40259212,-0.44668746,-0.45567065,-0.09600329,-0.25801295,0.2837452,-0.2194331,0.32570633,0.11986934,-0.4600543,-0.18503179,-0.27945277,0.0732171,0.15471356,-0.21790017,-0.2837863,-0.04987963,0.20579569,-0.68213654,0.5239584,-0.23205402,0.1646918,0.055609297,0.5077859,0.43739244,0.21521671,-0.003894529,-0.0579249,-0.39117458,-0.198016,-0.013095613,0.21108945,-0.4715508,0.1421093,-0.32102603,-0.40508464,-0.09998184,-0.5572728,-0.40759936,-0.81913537,0.34045666,-1.0028776,0.51309747,-0.11076286,-0.24208303,0.28352436,0.24669555,0.29490572,-0.13629784,-0.18982278,0.38027787,-0.2450645,-0.05703468,-0.095280826,-0.29059675,-0.43128154,-0.5255825,0.016793745,-0.33254805,-0.19608554,-0.31637532,0.16060312,-0.25335056,-0.07569226,-0.03683598,0.6921914,-0.42846698,0.26509142,0.17271364,-0.021783782,0.4145557,-0.61977416,-0.28339797,-0.2731454,0.32549042,-0.27475026,-0.25772035,0.29610014,0.32380566,0.26201922,-0.15853238,-0.0724616,-0.36202082,-0.020323243,0.19009304,0.4814499,-0.08384156,-0.4865985,-0.21448374,-0.14564331,0.15042014,0.09743273,0.3483079,-0.2814998,-0.019753734,0.002156594,-0.20550935,0.5683545,0.41871172,-0.13857445,-0.10708548,0.32387877,0.63953096,0.30952507,-0.27724567,-0.15702698,0.073230386,-0.463476,-0.08994783,0.3103933,-0.30057436,0.5170494,-0.18316755,0.2647094,0.74176174,-0.28801155,-0.03636474,0.11939748,0.18938705,-0.35371166,-0.0009808199,-0.36545804,0.27395943,-0.3895206,0.15879102,-0.14072917,0.64627045,0.088722415,-0.6044291,0.24780117,-0.5537568,0.11790222,-0.048251566,0.34981653,0.7038054,0.46007714,0.46641514,0.55389345,-0.25459197,0.08003085,0.0835315,-0.37832215,-0.0900844,-0.44210073,-0.14420076,-0.5056011,-0.13783383,-0.15613171,-0.21180831,-0.081827536,0.56120765,-0.5550021,-0.09247399,-0.02034247,0.83482224,-0.2676445,-0.14081967,0.9363555,0.8849591,0.9974898,0.089481056,1.1723297,0.3320465,-0.32341304,0.11564988,-0.15541695,-0.7301913,0.37948427,0.31181064,-0.61548436,0.29545408,0.065066494,-0.010062908,0.38405666,-0.35253605,0.06450986,-0.32851723,-0.1376947,0.12787053,-0.075752005,-0.35223532,-0.27770296,-0.12573496,0.015105994,0.17944355,0.12775204,-0.25009996,0.577434,0.19399115,1.7110802,-0.11147703,-0.051375575,-0.020883588,0.47200757,0.17075919,-0.13753165,-0.18372633,0.26281908,0.40582862,0.3083158,-0.52371234,0.21730338,-0.11929349,-0.34652707,-0.26019156,-0.3678178,-0.20930994,-0.062067445,-0.41637442,-0.1795276,-0.099749506,-0.2770268,0.2149762,-2.4688408,-0.07740158,-0.14300796,0.34069577,-0.14212342,-0.3118941,-0.07257911,-0.57197803,0.35926232,0.21855326,0.4678822,-0.55633837,0.26908544,0.49855027,-0.62751806,-0.08988077,-0.6263147,-0.2045351,0.010875844,0.3914745,-0.03214236,0.044439077,0.1772137,0.14505635,0.42128843,0.0014612228,0.16678683,0.28575382,0.6114517,-0.053434405,0.51563394,0.054664467,0.5142829,-0.21964057,-0.29065087,0.45724088,-0.3029979,0.2776725,-0.16581668,0.16972099,0.70433575,-0.40017578,-0.8656021,-0.72774655,-0.22430818,1.199025,-0.16264212,-0.5155655,-0.046017308,-0.35398063,-0.39659756,-0.02590224,0.5321749,-0.061920345,0.056899786,-0.8864133,-0.08246483,-0.013975416,0.13227426,0.05846686,0.060872383,-0.42127284,0.6695137,-0.035576984,0.37210438,0.29893965,0.1895144,-0.45093748,-0.5005301,0.15715767,0.9193781,0.3501594,0.14023113,-0.3799377,-0.11816307,-0.38435337,-0.0602101,0.03191844,0.45345968,0.4313848,0.010879904,0.26613727,0.28107888,-0.078490295,0.09729319,-0.3242454,-0.2813937,-0.19070257,-0.07890233,0.454281,0.53818,-0.033181045,0.5820777,-0.12633964,0.28553602,-0.13026308,-0.5120632,0.61809355,1.2455828,-0.22646005,-0.35940197,0.570419,0.4594228,-0.33478943,0.34574655,-0.5439751,-0.19694437,0.4742438,-0.21545005,-0.5553213,0.25600395,-0.2671303,0.1946789,-0.8751211,0.29972702,-0.23760687,-0.37857407,-0.6754961,-0.035634894,-2.9845395,0.22721751,-0.19790375,-0.371408,-0.17957138,-0.35316262,0.16602065,-0.58185565,-0.5768318,0.11813577,-0.040074397,0.9144457,-0.05529609,0.14798029,-0.2564183,-0.27515337,-0.16013534,0.0869725,0.25587505,0.39118457,-0.22850582,-0.58170784,0.055603366,-0.25339636,-0.39359522,-0.109662734,-0.6356589,-0.44642887,-0.18875061,-0.49753076,-0.3781539,0.65417546,-0.3112037,0.08140143,-0.23901919,-0.016571494,-0.012813389,0.40391475,0.09746276,0.1523557,0.08545502,-0.10451567,0.08461147,-0.22223881,0.305229,0.061804015,0.0010385726,0.3872726,-0.10204436,0.46914247,0.41760203,0.73867416,-0.08565189,1.0484062,0.43434387,-0.19382314,0.15522,-0.21975875,-0.30163863,-0.6259228,-0.15776245,0.1240293,-0.45649353,-0.5273687,0.003589843,-0.3139231,-0.7814936,0.631873,-0.084143035,0.19548662,0.040799327,0.31496835,0.53063023,-0.26918393,-0.12102895,-0.04837587,-0.16989207,-0.56702197,-0.30171445,-0.617577,-0.60311806,-0.08464963,0.87929636,-0.10750763,-0.015696853,0.1449317,-0.4330555,0.06757693,0.15312418,-0.124317355,0.13285556,0.43395418,-0.0832082,-0.62873536,0.49680662,-0.032687973,-0.15350583,-0.5802665,0.2896126,0.74476635,-0.55202895,0.49654928,0.4611473,-0.075209565,-0.4288959,-0.4046069,-0.13320112,-0.08094554,-0.12743859,0.4099434,0.27858788,-0.70670563,0.40478903,0.27088732,-0.20749311,-0.78534937,0.70650166,0.04971049,-0.2660439,0.0065568197,0.39606974,-0.039821357,-0.064210914,-0.4652761,0.27949736,-0.34972125,0.15861197,0.17032872,-0.05648273,0.12753224,-0.23068024,-0.10326111,-0.8043291,0.16997658,-0.39050457,-0.31518942,0.4181262,0.022833914,0.14826988,0.32899567,0.18678226,0.28259543,-0.3027181,-0.051955692,-0.13824114,-0.13179655,0.15861407,0.47378612,0.5759631,-0.56562525,0.6385408,-0.055212237,-0.18935569,0.00577536,0.17850997,0.3964043,0.20892164,0.5460265,0.1919011,-0.33639258,0.22091272,0.82343155,0.17349818,0.74295384,0.10805667,-0.26073396,0.056357037,0.08443693,0.4630414,-0.21716125,-0.5445995,0.11996029,-0.375884,0.13363865,0.4586422,-0.06218142,0.26046404,-0.16594256,-0.51950866,0.06708924,0.13619195,0.10478741,-1.261546,0.3430182,0.28862074,0.9624093,0.31257424,-0.08752407,0.02547093,0.77544963,-0.26254106,0.07920601,0.34633848,0.021336552,-0.48865175,0.47525683,-0.805636,0.41768864,-0.07688953,-0.08629058,0.013925071,-0.14621897,0.3956391,0.7890216,-0.20554972,0.14490795,0.011941607,-0.32996145,0.38413543,-0.5014785,0.14698426,-0.4897166,-0.2688476,0.72488594,0.5577673,0.34237877,-0.22958663,0.113677636,-0.019473491,-0.1760274,0.2237996,0.3109096,0.17364545,-0.09244494,-0.83507204,-0.04893043,0.5106998,-0.038127635,0.27650768,-0.008845576,-0.20679487,0.29322428,-0.19127408,0.120306134,-0.11135509,-0.8464884,-0.1535743,-0.3560767,-0.5430497,0.40523285,-0.0096025895,0.21163526,0.2507555,-0.009613445,-0.32720733,0.42645237,0.1889581,0.8494752,0.12276469,-0.025788536,-0.35294178,0.17514226,0.3060567,-0.22834711,-0.13640133,-0.09753128,0.12437795,-0.49879023,0.4736993,0.014449771,-0.47025844,0.035814334,-0.060212355,0.07290031,0.6978037,-0.04580212,-0.11723755,-0.10130613,-0.05724821,-0.2599325,-0.029687796,-0.13660951,0.23363876,0.28955683,0.007240129,-0.28491387,0.046343118,-0.28337386,0.46520576,-0.031437647,0.65879303,0.63274574,0.029388053,-0.45933124,-0.14630933,0.20714031,0.6332653,-0.011423848,-0.21556415,-0.36207595,-0.42800277,-0.29966456,0.27576947,-0.04650917,0.22699283,0.22472672,-0.31481716,0.76357704,-0.2628679,0.9668001,0.008628385,-0.5023404,0.21811523,0.4550833,-0.08708714,-0.15747865,-0.49402174,0.8319076,0.33968282,-0.089961,-0.06715099,-0.35379907,-0.026274364,0.22468622,-0.1637063,-0.14792752,-0.03412825,-0.6583534,-0.23669091,0.22049832,0.27812985,0.18474352,-0.17282364,0.17985395,0.406218,-0.054488394,0.2704926,-0.51074165,-0.20722707,0.37437147,0.21892236,-0.0409383,0.14007352,-0.36540055,0.45071134,-0.36404356,0.06920254,-0.29842165,0.2678187,-0.28748956,-0.23510382,0.24495867,0.1407611,0.41507742,-0.31475952,-0.25124308,-0.42445964,0.4473896,0.28429702,0.13668284,0.3906156,-0.29697436,0.10233361,0.07751689,0.48530152,0.929712,-0.26697773,0.17966986,0.3922254,-0.38141844,-0.44488817,0.4449299,-0.41807002,0.2702786,0.02895655,-0.0723842,-0.51060134,0.26169488,0.30227122,0.14505406,-0.11938972,-0.6343945,-0.11580206,0.42581132,-0.31150892,-0.18843745,-0.3037896,0.070543125,0.23681927,-0.31274417,-0.28849858,0.030759811,0.268927,-0.09977838,-0.2336751,-0.13699673,-0.3922382,0.40214175,-0.048486166,-0.38112825,-0.11546661,-0.22285356,-0.48974445,0.26096088,0.043973804,-0.43555215,-0.0048993654,-0.15124063,-0.068254165,0.90646,-0.28487313,-0.081292614,-0.35725102,-0.4282344,-0.7874607,-0.26303557,0.30445454,0.098385625,-0.01801421,-0.5942346,0.033540938,-0.09690804,-0.07488554,0.006478467,-0.616155,0.48531765,0.16348624,0.44505447,-0.007106351,-0.7572183,0.24127391,0.08221795,-0.19632228,-0.6685411,0.5296072,-0.10476518,0.72790664,0.019466149,0.21881448,0.3199907,-0.40316424,-0.14620683,-0.090612866,-0.2334626,-0.650274,-0.015832279 +937,0.61333513,-0.37083572,-0.6810285,-0.05817715,-0.4062241,0.22033894,-0.2707597,0.82629883,0.43039012,-0.5768033,-0.20648205,-0.12711126,0.11445663,0.40104398,-0.12136312,-0.81960535,-0.16082004,0.2817415,-0.4739046,0.6924756,-0.22277796,0.32747298,0.08004588,0.68159235,-0.24829233,0.2134829,0.22901538,0.0983151,0.47930264,-0.5281834,0.12887129,0.11430027,-0.93413603,0.33393472,-0.21282458,-0.4557736,-0.05062399,-0.47341698,-0.10943844,-0.94655323,0.27910316,-0.9595612,0.86485356,0.20063034,-0.27362275,-0.05533018,0.021266494,0.24469474,-0.15148588,-0.035846528,0.17457673,-0.25976124,-0.24677643,-0.4022573,-0.09049398,-0.5312003,-0.59285057,-0.28273723,-0.28807837,-0.12258802,-0.31187373,0.2144548,-0.15582803,0.13407396,-0.48460454,0.39279318,-0.6381772,0.0213426,0.15329358,-0.39403802,0.29215568,-0.6625283,-0.13752005,-0.1417484,0.080887616,-0.2566122,-0.2676775,0.20059016,0.13065577,0.52569854,0.28485245,-0.35519847,-0.23305288,-0.018007815,0.15359147,0.5158076,-0.065521345,-0.4317451,-0.29345888,-0.22852147,0.14954789,0.17758997,0.34602085,-0.65265,0.104202524,-0.33861518,-0.17818128,0.73283803,0.4608013,-0.5279673,-0.043641903,0.09820823,0.69749856,0.27776486,-0.058869462,0.08149885,-0.015115125,-0.43285617,-0.20272975,0.044535436,-0.11734362,0.356576,-0.18499187,-0.02925397,0.46737647,-0.14509842,-0.25339285,0.16645858,-0.1216708,-0.05313276,-0.56218904,-0.29933697,0.5673072,-0.31947285,0.34831843,-0.5368721,0.83678037,0.09660275,-0.42348552,0.3869368,-0.7684245,0.08206575,-0.07323404,0.58756095,0.5390028,0.5888895,-0.054566126,0.857798,-0.41825604,0.17695452,-0.082388,-0.22389701,-0.055320013,-0.1812514,0.05275507,-0.2873502,0.16751742,-0.16459242,-0.14163116,0.017404113,0.59280074,-0.57388824,-0.23981567,0.24830358,0.9926149,-0.28268093,-0.02040267,1.0918808,1.3140053,0.82044125,-0.023784656,1.446168,0.17129582,-0.23253174,-0.050533254,0.13831034,-0.8867661,0.09947836,0.52892095,0.24150765,0.34270376,0.115484,0.08138587,0.46152195,-0.5926215,-0.16195175,0.017508319,0.3743011,-0.028330004,-0.32918903,-0.67325914,0.14369078,0.18948916,-0.010669005,0.04249795,0.3248158,-0.37097248,0.28819615,0.07463592,0.9771242,-0.19406448,0.16858023,0.093192235,0.365242,0.30491108,-0.1259068,0.08232701,0.17507428,0.19150485,0.0681261,-0.58776885,0.29469615,-0.035243295,-0.51589155,-0.07855481,-0.2920615,-0.20663476,0.20534281,-0.3544133,-0.24549091,0.03500828,-0.07569295,0.27979022,-1.9112905,-0.014043832,-0.06441277,0.507553,-0.21877523,-0.396249,0.21803364,-0.5525101,0.42950606,0.37376615,0.53371996,-0.5836522,0.3998422,0.76022226,-0.6822524,-0.009150016,-0.56534207,-0.06988426,0.029160073,0.37707415,0.076250866,-0.26421908,-0.1122389,0.27465355,0.6515275,0.22315279,0.23214898,0.43132383,0.30636564,-0.41415206,0.41256666,-0.0024519116,0.8421999,-0.42539835,-0.27035642,0.41719905,-0.14309977,0.28288183,-0.43031082,-0.04403047,0.46162587,-0.2989283,-0.9844993,-0.876717,-0.40641093,1.0339897,-0.24992153,-0.69856644,0.1999131,-0.15042333,-0.22966449,0.21375473,0.61993706,-0.23520163,0.13134159,-0.77095956,0.18762231,-0.2319706,0.5129569,-0.032031458,0.021420788,-0.8652927,1.0844761,-0.2840132,0.56000084,0.55354786,0.4423183,-0.07119392,-0.58300716,0.16800985,0.90415275,0.57794785,0.22762981,-0.30785054,-0.1023,-0.29048198,0.09073856,-0.06109377,0.9298666,0.71527517,-0.20875952,-0.058291573,0.20898995,0.060572494,0.071969256,-0.17169489,-0.53933334,-0.30330944,0.09642906,0.52343905,0.6028862,-0.25844494,0.06589945,-0.26688874,0.6008574,-0.1815016,-0.49243027,0.56590086,0.95376253,-0.3426305,-0.15228471,0.9295271,0.416715,-0.3314579,0.7287053,-0.8279794,-0.26724872,0.3801338,-0.08658148,-0.4897291,0.15268715,-0.26972398,0.19288483,-1.0512321,0.16766551,-0.58936375,-0.6507573,-0.36741787,-0.27222648,-3.3075607,0.34917533,-0.049633417,0.042544622,-0.45498523,-0.20455165,0.15913096,-0.7935508,-0.7932513,0.1473801,0.074710846,0.46081418,-0.09565696,0.15938851,-0.32632443,-0.48853454,-0.119893074,0.5643989,0.14105408,0.12269459,-0.19350225,-0.4659067,0.024397489,0.20225301,-0.3652984,0.01510697,-0.95580447,-0.18637307,-0.21614201,-0.62502575,-0.06796566,0.6065922,-0.58261555,0.08109339,-0.21634889,0.20748219,-0.2965893,0.24975209,0.03808489,0.22200231,0.25025386,-0.03173868,-0.16317216,-0.114613414,0.2766359,0.22557895,0.3278826,0.310923,-0.2822374,0.10502602,0.4528635,0.873522,-0.087648086,1.1004077,0.24304,-0.101796046,0.3910504,-0.07074897,-0.5873953,-0.86913854,-0.2748925,-0.060481478,-0.47080785,-0.5600937,0.033355333,-0.40746027,-0.7562292,0.46724844,0.13155015,0.22601485,0.18995687,0.16970934,0.50717336,-0.35166973,-0.19771606,-0.11087289,-0.0776093,-0.6811434,-0.28462583,-0.5978587,-0.56500727,0.03705467,0.95717144,-0.15001035,0.15676963,0.431417,-0.15215096,0.21784373,0.21495923,0.124204494,-0.18341088,0.7759563,0.50114167,-0.63952154,0.45510215,0.12385621,-0.21775396,-0.80032825,0.66693914,0.49145803,-0.9311202,0.67995614,0.16856533,0.10979811,-0.07789087,-0.4608837,-0.3315783,0.18999043,-0.26895753,0.4872829,0.26868558,-0.7315511,0.21745273,0.24974677,-0.023883473,-0.8947371,0.58823097,-0.23967123,-0.35277066,-0.1785787,0.62621063,0.08538888,0.005735281,-0.1020421,0.21362679,-0.47066402,0.11857466,0.18340775,-0.042342536,0.34269947,-0.23493533,-0.015992021,-1.0645176,0.23492697,-0.67130667,-0.3853612,0.13814697,-0.12881193,-0.48059878,0.2284523,0.2422308,0.41127452,-0.18913063,0.46255088,-0.23518236,-0.39846817,0.68849933,0.4463336,0.45895758,-0.23045854,0.7833516,-0.029111873,-0.11689297,-0.03334161,0.054996885,0.4327084,-0.13851902,0.51286143,-0.023038471,0.1568416,0.033040874,0.7315935,0.21080181,0.21401596,0.12395634,0.094602,0.46222815,0.08054639,0.34577566,-0.08409428,-0.7860001,0.2578903,-0.09796533,-0.1962461,0.5488027,0.25251907,0.3570004,-0.12238133,-0.3973042,0.067608126,-0.006172502,-0.09758959,-1.2923545,-0.009973859,0.066643484,0.83219844,0.73717433,-0.04005301,0.0035482794,0.39805967,-0.1316254,0.13285974,0.39680704,0.01007129,-0.24382135,0.4901146,-0.7736075,0.22320497,-0.16139317,0.098811366,0.36951318,-0.09499087,0.33973712,0.99462223,-0.27279136,0.055713534,-0.162536,-0.07231815,-0.08215558,-0.42250818,-0.004044992,-0.28109002,-0.5106503,0.76949704,0.55999756,0.6013433,-0.54082847,-0.072812855,0.072945006,-0.20959099,0.1747722,-0.10276087,-0.054998927,0.124053836,-0.36490673,-0.14160092,0.6857025,-0.13886614,-0.13564987,-0.08509888,-0.49188286,0.2992015,0.0070533515,-0.10625322,-0.05907923,-1.0234302,-0.15522137,-0.49816275,-0.3286501,0.33256045,0.061249554,-0.03651779,0.18433376,-0.010035345,-0.06362786,0.38971764,0.18375455,1.0549333,0.38797423,-0.11523068,-0.47472963,0.38791895,0.21555777,-0.28275377,0.2010874,-0.30220348,0.03279239,-0.46613884,0.15790442,-0.15394142,-0.7110535,0.15171811,-0.039945908,-0.11029343,0.60109293,-0.00027947425,-0.3050414,0.23723392,-0.1761713,-0.095476136,-0.37567288,-0.17017287,0.25866532,-0.11856662,0.18058872,-0.19713466,-0.16094215,-0.2361053,0.16937122,0.3104108,0.34619972,0.50200784,-0.08122437,-0.48128456,0.25312468,0.14893709,0.4541315,-0.29540905,-0.02181322,0.18406466,-0.7540836,-0.57423156,0.0061519505,-0.15315795,0.27582636,0.13307701,-0.16707563,0.77879316,0.33052358,1.3927714,-0.28953063,-0.6385058,0.29248074,0.7581058,-0.18340027,-0.053634237,-0.5166872,1.4264635,0.5122127,-0.12092663,-0.006673624,-0.29549465,-0.23109174,0.26663035,-0.23118457,0.06419657,-0.08984871,-0.72297204,-0.003011477,0.13828799,0.4593727,0.07378094,-0.05084616,0.17775764,0.27722278,0.03368888,0.3714346,-0.6839016,-0.17036676,0.22890231,0.0837587,-0.07330549,-0.0667604,-0.2326976,0.25666124,-0.62545455,0.12043693,-0.5564331,-0.19536617,-0.2511671,-0.19628902,0.07150869,-0.14820698,0.2922836,-0.52734435,-0.37751535,-0.18527259,0.4046269,0.26470822,-0.042141076,0.9053396,-0.12742473,0.07366912,0.16378674,0.5831775,0.9859605,-0.24697761,0.05581416,0.145371,-0.60231435,-0.5675042,0.008496952,-0.2835832,0.028623605,-0.12737978,-0.34984362,-0.6791218,-0.003480068,-0.062658705,-0.30633038,0.19590302,-0.72211766,0.08914216,0.45523047,-0.43962127,-0.17008273,-0.17725763,0.50786144,0.95997727,-0.1268669,-0.47046185,0.21750955,-0.016037028,-0.23925261,-0.90852296,-0.21645033,-0.21428546,0.2282696,0.16697478,-0.5910187,-0.27864242,0.14098829,-0.5292316,-0.13194934,0.2411859,-0.3173671,0.23555732,-0.46626148,-0.22761936,0.98200923,0.022510504,-0.015032237,-0.8688938,-0.7192103,-0.88246804,-0.3688843,0.45422903,0.108350754,0.07670853,-0.6252708,-0.02317674,-0.51617604,0.015873885,-0.10100105,-0.17213798,0.43158466,0.31852713,1.0023994,-0.15261893,-1.1931264,0.44293195,0.2597212,0.1682618,-0.5967924,0.3486152,0.08174029,0.8492777,-0.014862528,0.010756336,0.11505358,-0.87005407,0.11649964,-0.18148185,0.06211143,-0.9112077,0.40624747 +938,0.42399964,0.0885355,-0.44392565,0.052306466,-0.20977838,0.11492058,-0.31584293,0.22962403,0.33606288,-0.41624454,-0.28886122,-0.14368889,0.09251015,0.39785478,-0.0689964,-0.8073508,0.18943447,0.46330184,-0.3407284,0.66876507,-0.3911915,0.45619515,0.13703275,0.39036953,-0.114470825,0.17346361,0.23125099,-0.04037265,-0.21462026,-0.26584172,-0.021969428,0.24085206,-0.68054146,0.26798752,-0.31595087,-0.4906856,0.0030680436,-0.5566437,-0.35596293,-0.82624924,0.26653275,-0.64999396,0.77904534,0.1985778,-0.017133107,0.0676182,0.31192625,0.44044274,0.09810294,0.10217662,0.23871097,-0.29153797,-0.39528844,-0.26553375,-0.23937933,-0.1876222,-0.72208935,0.02729832,-0.45793942,-0.017760534,-0.34137058,0.19173248,-0.3522023,0.30164227,-0.12240632,0.37592214,-0.49956462,0.11733726,0.34239465,-0.20051232,-0.052344825,-0.5569465,-0.20155515,0.006438629,0.41253656,-0.28494325,-0.22791754,0.21328583,0.41899678,0.6444859,0.013482594,-0.36296478,-0.29736745,0.017695932,0.07644544,0.814288,-0.4553962,-0.34384683,-0.07750522,0.04602869,0.56781065,0.17555135,-0.09822583,-0.21173164,-0.029857563,-0.33702403,-0.03183454,0.23575331,0.59198296,-0.41802472,-0.21706636,0.21564086,0.40624025,0.08406182,0.02432643,-0.01898263,0.06983222,-0.56927395,-0.0767255,-0.30291387,-0.19526342,0.5634337,-0.07737759,0.1406995,0.543217,-0.071281776,-0.046117865,0.21600458,-0.03231877,0.28167465,-0.2688641,-0.34220314,0.42186773,-0.4366275,0.25395516,-0.3049463,0.6253656,0.21491274,-0.47172478,0.39417094,-0.65798676,0.20791231,0.22607924,0.5268208,0.6757255,0.42831537,0.39006087,0.65108114,-0.46018738,0.08594179,0.03143855,-0.115354575,-0.087737046,-0.07295601,0.29262722,-0.43117592,0.014078214,-0.0989615,-0.26993728,0.33008435,0.56090283,-0.5878115,-0.13585918,0.107650824,0.8790745,-0.23557684,-0.10389598,1.0851821,1.0849532,1.0287753,-0.0748473,1.3391279,0.4025163,-0.16703781,-0.28909495,-0.19539173,-0.6418655,0.015201406,0.2492864,-0.6631032,0.31946406,0.2671431,-0.26918522,0.66208225,-0.7758111,-0.33694732,0.106206164,0.17631009,0.059746027,-0.20364437,-0.63900286,-0.18301164,-0.052737474,-0.16646324,0.341702,0.527599,-0.20519862,0.38504198,-0.013106465,1.3316505,-0.0125684,0.07291549,0.13022867,0.20178065,0.35476077,-0.022941759,-0.041025795,-0.010528014,0.19337541,-0.07189095,-0.39216775,-0.09496234,-0.39431196,-0.24238676,-0.19585755,-0.013163557,-0.4214022,0.03874521,-0.2663997,-0.20996457,-0.1914364,-0.20447643,0.42656332,-2.363782,-0.34857193,-0.14426354,0.54461646,-0.16221306,-0.43649924,-0.09603992,-0.49154916,0.61049885,0.026077468,0.4366747,-0.66228807,0.38535702,0.41735792,-0.81791425,-0.37144896,-0.7460908,-0.08524149,0.007220346,0.17206922,0.12291899,-0.293793,0.17081195,0.11783253,0.5908482,-0.12625581,0.011652205,0.22186397,0.4855015,-0.10396501,0.24313387,0.094523326,0.73027027,-0.18208414,-0.4044994,0.34915417,-0.48151383,0.42389017,-0.34708676,-0.035581045,0.3887715,-0.3164737,-0.93758607,-0.55539155,-0.22360022,0.7426032,0.15725055,-0.4847206,-0.03461189,-0.23935471,-0.3425508,0.045339327,0.63340366,-0.39787146,-0.15352097,-0.7629231,-0.09313757,-0.042442285,0.08136987,0.029160304,0.18465193,-0.6993859,0.62004334,-0.255057,0.106337935,0.591812,0.49194655,-0.21183428,-0.48218182,0.07584739,0.9068112,0.46258256,0.19623032,-0.24175207,-0.15534973,-0.07602937,-0.30999982,-0.22634767,0.7931868,0.61042,-0.22674449,0.0021766196,0.28681776,0.26830447,0.11945788,-0.26134744,-0.48842424,-0.19920936,0.056773152,0.70978856,0.91591877,-0.27637514,0.37845582,0.0011738905,0.22908896,-0.20630336,-0.48036385,0.620486,0.8529542,-0.1858627,-0.03637235,0.5965889,0.17909463,-0.16850574,0.4045628,-0.75418115,-0.37110084,0.27512708,-0.07476668,-0.4463063,0.06843984,-0.22862515,-0.031463053,-0.782732,0.57617563,-0.33867824,-0.37687296,-0.6569827,-0.15079167,-2.5155954,0.1444511,-0.50856054,0.19208159,-0.19921182,-0.14831932,-0.12665533,-0.5399393,-0.71959835,0.36520752,0.007138556,0.59874636,-0.30799615,0.26287645,-0.170856,-0.4383496,-0.31755698,0.2702893,0.34019506,0.3840792,0.042117033,-0.27270806,0.107650906,-0.11452602,-0.43905413,0.09263565,-0.8258292,-0.34379798,-0.11855184,-0.52334017,-0.1701173,0.8092953,-0.4962069,0.16277803,-0.48764282,0.018335719,-0.25774246,0.30322167,0.142143,0.28725508,0.079173416,-0.118591085,0.025639135,-0.09449437,0.29230103,0.18702038,0.3237719,0.42598554,-0.15653881,0.20690808,0.26709622,0.77833873,0.24855894,0.85554814,0.41399446,-0.14298661,0.2055766,-0.4691777,-0.34452227,-0.45839623,-0.4884312,0.07408751,-0.51172173,-0.40993565,-0.21594521,-0.5968859,-0.7804359,0.49532253,0.055342417,-0.14293581,-0.13911907,0.21981147,0.39188495,-0.4172514,-0.12207349,-0.08704197,0.049694426,-0.44827652,-0.23193939,-0.44669655,-0.6576983,0.10396374,1.0967827,-0.20189986,0.2054539,0.14347216,0.00075543846,-0.004022463,0.25469673,0.08091015,-0.17821625,0.5875067,0.017852237,-0.7482232,0.28156874,-0.18195261,-0.44813168,-0.91166496,0.4418875,0.6603569,-0.69112706,0.79592836,0.67113507,0.1695558,-0.058527295,-0.52982926,-0.32334372,0.14462946,-0.28577182,0.19980842,0.13553305,-0.5081614,0.38293102,0.417058,-0.3410269,-0.84167016,0.54807,0.10919805,-0.5257541,0.12514335,0.4801357,0.2786549,-0.04314977,-0.026743092,0.39834264,-0.31897244,0.46753836,0.03666756,-0.31680283,0.6021191,-0.36349827,-0.3668079,-0.9666593,0.08332247,-0.49386084,-0.36032155,-0.0049980143,0.018830381,-0.015811294,0.08692457,0.23767328,0.37534672,-0.53860164,0.059768163,-0.20524646,-0.39375877,0.2307079,0.40566424,0.4603348,-0.32004112,0.65697837,-0.0011587602,-0.06793829,-0.070753604,0.08750657,0.43670338,-0.19505206,0.4277387,0.03287042,0.009970395,0.12243429,0.69256985,0.08626688,0.2014691,0.23728283,-0.06117979,0.2545378,0.0055347728,-0.008956989,0.10404145,-0.3723173,0.14047925,-0.30104142,0.020391094,0.44382188,0.26883233,0.3883042,-0.15634534,-0.47514516,0.000984247,0.16920942,0.08894026,-1.2899538,0.3184567,0.001627867,0.73569405,0.38659593,0.20432395,0.09395544,0.6049351,-0.19861911,-0.05711232,0.32864088,-0.13963877,-0.035066903,0.55939287,-0.6981362,0.369372,0.075408645,0.15979873,-0.004534515,-0.13998574,0.2074038,0.84028023,-0.26680362,-0.1327275,-0.2645389,-0.15158731,-0.08047227,-0.4112272,0.324995,-0.49042815,-0.3791228,0.9764801,0.38656884,0.35736942,-0.1539082,0.11460728,0.24885108,-0.25069728,0.07268433,0.10509239,0.20968741,0.03866736,-0.46831512,0.0936849,0.52387184,-0.11898331,0.018947918,-0.06755073,-0.14688112,0.27605188,-0.15776783,-0.11589351,-0.001957373,-0.864144,0.0116588175,-0.69698375,-0.32416043,0.45780414,0.016145825,0.20085393,0.13014266,0.066468194,-0.23899716,0.7043574,0.023374043,0.742896,0.23051421,-0.36784035,-0.029145498,0.32219866,0.22526854,-0.18449475,0.27073014,-0.17487851,0.37150875,-0.4866443,0.4727993,-0.043284103,-0.15184893,0.13232344,-0.22328909,-0.009438887,0.50227684,-0.3488146,-0.1980877,0.26223344,-0.3636726,-0.12998639,-0.21902712,0.010617664,0.19393612,0.3323341,-0.07191729,-0.16509172,-0.23686041,-0.553033,0.44829828,0.055685475,0.22430745,0.5361612,0.28293437,-0.3838518,-0.011676765,-0.0066668713,0.5548457,-0.25885132,-0.22250476,-0.29242995,-0.5958616,-0.46664983,0.3390155,-0.09447097,0.27564704,-0.08194796,-0.10961361,0.9033469,0.21224448,1.1527536,-0.021806322,-0.35132664,0.05238744,0.6553387,-0.11690057,-0.064355515,-0.2930525,1.2749712,0.53696215,0.015990496,-0.056099866,-0.36990598,0.17133999,0.28546175,-0.25363466,-0.14376417,0.079381,-0.5064838,-0.23057233,0.1981326,0.24754944,-0.052083142,-0.12420317,0.21346037,0.27257952,0.11650471,0.23343842,-0.7972644,-0.21282414,0.51139146,0.38160217,-0.15475951,0.19413622,-0.3524623,0.46164906,-0.38472974,0.08130508,-0.44559905,0.06482848,-0.13191421,-0.17273101,0.40840447,0.15331842,0.27486023,-0.52016956,-0.14277633,-0.23515353,0.23637229,0.3422187,0.06553428,0.63425964,-0.21428467,-0.17073932,0.032269288,0.60660994,1.2254217,-0.35215423,0.21383902,0.3687347,-0.36893824,-0.3658967,0.32790312,-0.19019443,-0.22503695,-0.09140983,-0.27321732,-0.6403091,-0.04111743,-0.06962904,0.07966847,0.0041544577,-0.61003774,-0.24122217,0.2340854,-0.3217661,-0.08034321,-0.33163518,0.2675304,0.8660349,0.0576026,-0.20774242,0.0831939,0.18042682,-0.25783646,-0.8144166,0.022763643,-0.39083752,0.20393728,0.22450915,-0.23076648,-0.30034068,0.10703704,-0.49068847,-0.06008194,0.21816741,-0.3179884,0.1131891,-0.2510522,-0.090072066,0.80335706,-0.35121286,0.40694886,-0.741949,-0.3838033,-0.91309834,-0.26002604,0.3543315,0.28865045,-0.105493516,-0.8720634,-0.18922623,-0.21641842,-0.23133853,0.025306582,-0.30700037,0.20873657,0.28997114,0.54688436,-0.36491722,-1.0061024,-0.008770557,0.029604547,-0.37916705,-0.34619468,0.2848709,0.42812246,1.0464685,0.037349798,-0.058180068,0.29943708,-0.44009045,0.08240586,-0.12431455,-0.20225371,-0.8451646,0.0004851818 +939,0.6011616,-0.03464178,-0.52431995,-0.18514092,-0.31669548,0.1208691,-0.13025156,0.34273404,0.25728855,-0.45382988,-0.16569367,-0.09666942,0.0613129,0.21718787,-0.1393336,-0.62431574,0.14806876,0.1284696,-0.60736275,0.536555,-0.36604452,0.31612682,-0.0036437144,0.28420487,0.13076992,0.19821668,0.10032971,-0.23720331,0.10859248,-0.13319118,-0.23051472,0.45068952,-0.475208,0.113912374,-0.045312732,-0.34483933,-0.0041167666,-0.45522803,-0.40245315,-0.8383799,0.3142518,-0.6094102,0.4579909,0.032488417,-0.3156864,0.14313363,0.22592135,0.3041747,-0.11368217,0.0036774557,0.07436623,-0.0012131894,-0.08727699,-0.07537133,-0.08921916,-0.42164838,-0.49841237,-0.08937209,-0.32009435,-0.19263624,-0.34648287,0.22760503,-0.27834526,0.004174625,-0.1485058,0.5183698,-0.32585987,0.02224977,0.23822008,-0.10314105,0.23610054,-0.564703,-0.060341317,-0.077546455,0.34134302,-0.04551023,-0.19712839,0.18259725,0.19879794,0.4573179,-0.035115283,-0.1991284,-0.2548992,-0.094663605,-0.057215754,0.49823862,-0.21010077,-0.5371765,-0.035204396,0.093498394,0.138361,0.18908474,-0.026243484,-0.24509776,-0.14029844,0.033363454,-0.23335415,0.35406902,0.52647537,-0.3014951,-0.35798347,0.35108688,0.51791495,0.20433319,-0.16609693,0.03490725,-0.031747777,-0.60459954,-0.21050167,0.061562385,-0.16144587,0.48645148,-0.056450646,0.28524408,0.56886375,0.0059401672,-0.118218005,0.1864147,0.019529507,0.023806032,-0.19239008,-0.07045309,0.14400792,-0.346629,0.2874117,-0.15337352,0.84037095,0.10134707,-0.7877841,0.16639154,-0.60141563,0.07288769,-0.15897834,0.4778387,0.6273074,0.29223448,0.27018067,0.71587396,-0.3703165,0.069129646,-0.100225955,-0.4463897,-0.08082771,0.05435369,-0.004772204,-0.518548,0.11702061,-0.024428697,-0.067954466,0.05175906,0.21157393,-0.6665158,-0.13602945,0.121094085,0.78468806,-0.34319237,-0.13342868,0.6163532,0.8669944,0.88607514,0.079892695,0.9350449,0.18725856,-0.15757407,0.21562569,-0.41026187,-0.69787234,0.30367568,0.2619442,0.010998305,0.059012454,0.00010673439,-0.05934054,0.483749,-0.27371353,-0.014662881,-0.1805397,0.27569327,0.14302164,-0.1703975,-0.28026414,-0.28430054,-0.027363848,0.021913582,0.22920853,0.13946138,-0.3157984,0.25117734,0.0447314,1.5370026,-0.059232026,0.019328551,0.092272714,0.3566522,0.22317186,-0.16231537,-0.08337167,0.24153799,0.3905319,-0.0070349155,-0.57613075,0.2047916,-0.16718327,-0.38828933,-0.15761085,-0.3069512,-0.09282381,-0.009895948,-0.41902778,-0.19163936,-0.15719618,-0.21208511,0.62138736,-2.807633,-0.047993742,-0.12077208,0.3134353,-0.1671702,-0.34030077,-0.071732186,-0.50818354,0.30877566,0.3114716,0.39524987,-0.5675107,0.49192867,0.3448355,-0.5291849,-0.07218217,-0.6760216,-0.16536093,0.030818665,0.36767942,0.18367846,-0.045494873,-0.10676372,0.15355232,0.5146326,-0.07661685,0.042149868,0.23868676,0.47817966,0.071247846,0.56346977,0.046451177,0.6474396,-0.14459874,-0.13307402,0.3235434,-0.3726135,0.20666376,0.0037280514,0.116961345,0.4331549,-0.36374795,-0.8361999,-0.5944268,-0.13287698,1.1229897,-0.22446941,-0.36440608,0.20457542,-0.28427672,-0.13366438,0.06930957,0.34980738,-0.10915148,-0.18127789,-0.7042116,0.029487956,-0.1617762,0.13385491,-0.027804984,-0.07455394,-0.38213047,0.5851565,0.008628593,0.59621876,0.24126014,0.29009986,-0.27970192,-0.5073388,-0.12274591,0.80865854,0.3116205,0.10532555,-0.1562392,-0.25896406,-0.3890063,-0.008821011,0.033387292,0.73758036,0.7273426,-0.00801032,0.1423693,0.16146079,-0.070557036,0.14534079,-0.19531901,-0.23270252,-0.09112858,-0.04509849,0.54328513,0.47509256,-0.15201049,0.4088142,0.0141423065,0.41272774,-0.23076601,-0.37148434,0.42860556,0.9962212,-0.2646569,-0.3388178,0.54151297,0.45734724,-0.09568251,0.2832864,-0.6901329,-0.3612746,0.4929584,-0.19866283,-0.3552174,0.19148335,-0.32291484,0.16996208,-0.8905035,0.29440856,-0.3446118,-0.49574032,-0.45570266,0.011847965,-3.1427,0.23243868,-0.18279302,-0.092363834,-0.1421415,-0.0670108,0.13736795,-0.44675878,-0.5671475,0.13958345,0.087008126,0.6072705,-0.009178861,0.16430955,-0.26563704,-0.05315832,-0.23009692,0.24623382,0.082912415,0.3553604,0.08917676,-0.47924587,0.04519075,-0.14332323,-0.3817656,0.17446257,-0.5003512,-0.5389826,-0.029629013,-0.5273937,-0.33510083,0.5474867,-0.33569804,-0.025507193,-0.27240634,0.021066181,-0.08773152,0.29976097,0.061228205,0.11385317,-0.002457496,-0.07090574,-0.0049681664,-0.2926297,0.27985236,-0.006074037,0.34097168,0.30195305,-0.008449519,0.23659277,0.5662679,0.5283138,-0.023877379,0.85252595,0.4936713,0.026756624,0.30258825,-0.25281996,-0.30041078,-0.3714322,-0.20224006,-0.005326918,-0.34473404,-0.3279102,-0.1993897,-0.42200062,-0.6315918,0.35279956,0.036282618,0.04056995,-0.102428734,0.18269399,0.5515914,-0.19476503,0.0021878972,0.019475266,-0.18764505,-0.5346508,-0.29975033,-0.49583176,-0.4651088,-0.028852273,1.042658,-0.31474406,-0.0670965,-0.14212933,-0.13947414,-0.054405194,0.12904021,0.070089474,0.2716276,0.4515239,-0.26846406,-0.68390375,0.47547463,-0.24805737,-0.06930206,-0.494848,0.20196275,0.443203,-0.55346525,0.4113719,0.25803393,0.18052343,0.03949464,-0.65080506,-0.090249,0.145242,-0.19729361,0.40546203,0.1766839,-0.7194103,0.42492318,0.29521945,-0.09164806,-0.72001565,0.5079374,0.081285894,-0.4782744,-0.090464815,0.34003437,0.060869426,-0.0019895548,-0.17738733,0.114725396,-0.30678424,0.3425775,0.23346111,-0.044939745,0.025523402,-0.31170446,-0.011755677,-0.7421369,-0.026512146,-0.46990663,-0.19420716,0.24162108,0.057978064,0.23964916,0.15749848,-0.050876983,0.3342931,-0.35442844,0.06428619,-0.12070042,-0.19260302,0.30793545,0.44631347,0.277694,-0.33260503,0.48452988,0.11051447,-0.2367775,-0.052892357,0.17385638,0.4102805,-0.0065014013,0.438119,-0.06581623,-0.19621998,0.3411466,0.654732,0.062948644,0.28498656,-0.07635691,-0.17035793,0.21820962,0.049462132,0.07081343,0.16552633,-0.5350364,-0.17536363,-0.22285068,0.13230854,0.48401564,0.15124804,0.27095821,-0.032433625,-0.35318947,-0.02489382,0.16616574,0.0077724387,-1.1651545,0.33610293,0.19377922,0.89972496,0.46584448,-0.030480012,0.010777501,0.5352483,-0.19064575,0.17458144,0.39180288,-0.0034745196,-0.50412667,0.4292442,-0.6223073,0.49503237,-0.08366221,-0.018021472,0.040610526,-0.112555295,0.34194475,0.9865681,-0.24670789,0.12872566,0.09139973,-0.3035739,0.23165824,-0.2822683,-0.011070826,-0.629212,-0.26099348,0.5852017,0.4777872,0.30506137,-0.13578153,-0.04033205,0.15651761,-0.09463425,-0.049479216,0.095915094,0.13601643,-0.031055227,-0.6028989,-0.22506353,0.49343738,0.01622932,0.1149947,0.018738827,-0.16961521,0.24488345,-0.15349735,-0.016971,-0.21065821,-0.5330496,-0.025142131,-0.2609235,-0.38538456,0.47125745,-0.15814292,0.23226719,0.18117197,0.06362025,-0.27880177,0.3074833,0.08935347,0.7508033,0.004450083,-0.08972185,-0.4466067,-0.032505736,0.16333036,-0.19419126,-0.18783803,-0.34671587,0.057467073,-0.5759385,0.4775006,-0.03443572,-0.25171244,0.050939724,-0.091256134,0.07838593,0.42053,-0.1730052,-0.13685013,0.007152445,0.013345084,-0.25036675,-0.055568505,-0.09875572,0.23972785,0.12358378,-0.13802142,-0.08995237,-0.117872775,-0.111688405,0.29825717,0.04920617,0.45168343,0.35130373,0.14074576,-0.26352918,-0.0053702802,0.25066608,0.5679853,-0.10105836,-0.10040218,-0.28114304,-0.4038006,-0.3484983,0.17619526,-0.09985085,0.33101878,0.06229719,-0.29294187,0.5936026,0.0017773194,1.1207522,0.04283668,-0.23440212,0.046126757,0.5149626,0.08890581,0.0039847316,-0.36385965,0.8535426,0.49171376,0.0047767567,-0.12963976,-0.28151953,0.1730209,0.10091236,-0.13506342,-0.0017703561,-0.07531821,-0.4950027,-0.25738338,0.15112281,0.17288807,0.24185765,-0.010967416,-0.073110946,0.20711651,0.029869514,0.26021838,-0.44289935,-0.12914029,0.121963695,0.25992322,0.026515495,0.1227609,-0.55098534,0.40805486,-0.46453044,0.10029434,-0.24827433,0.23423634,-0.0900109,-0.16123803,0.23640725,-0.032513753,0.26962662,-0.3454532,-0.3503734,-0.18544798,0.39787564,0.17969188,0.16692294,0.59277534,-0.25121617,-0.04816156,0.11929917,0.55962086,0.8835652,-0.32981136,-0.0022139738,0.34250838,-0.32102275,-0.60701174,0.22301242,-0.20802988,0.053278532,0.061429627,-0.23253673,-0.47073612,0.44948572,0.2353071,0.16218048,-0.08675961,-0.605585,-0.20382218,0.49976018,-0.27604556,-0.21662495,-0.28157926,0.20664011,0.5268013,-0.27991885,-0.20403638,0.15022965,0.18874188,-0.1523851,-0.66830194,0.042734947,-0.3328259,0.3901507,0.170667,-0.29278553,-0.29736972,0.07732612,-0.4639566,0.17900811,0.33694604,-0.3397954,0.055398718,-0.38165808,-0.06293149,0.90219116,-0.18436061,0.13308014,-0.5761106,-0.32875913,-0.7153363,-0.41110715,0.39223632,0.20086278,-0.031065369,-0.5247065,-0.124718554,-0.037130084,-0.2876697,-0.14907192,-0.35484287,0.5050588,0.12405637,0.3267884,-0.06323781,-0.8628919,0.06730744,0.071068645,-0.22642457,-0.456607,0.47815108,0.047206458,0.81739795,0.0893016,0.17941155,0.3349155,-0.42696548,-0.08708775,-0.27799046,-0.063290276,-0.74534994,0.08265549 +940,0.44681945,-0.4151649,-0.56475973,-0.10935107,-0.25229177,0.028870411,-0.4740299,0.35321897,-0.068991445,-0.6743054,-0.14823858,-0.08697879,-0.024248838,0.48706323,-0.14127408,-0.5950542,0.18343687,0.27771962,-0.6516653,0.59035873,-0.4997899,0.19688933,0.11900462,0.08284121,0.098062,-0.025081566,0.22821532,0.01885197,0.37241948,-0.08102829,-0.013736587,0.06674358,-0.61548287,0.23261727,-0.23842001,-0.56289244,-0.0056959847,-0.30854285,-0.29348856,-0.7476973,0.17110337,-0.96153355,0.52144873,0.17201588,-0.50993365,0.1174156,0.09424978,0.2425709,-0.067727715,0.21120797,0.15250112,-0.03880775,-0.27482432,-0.04292375,-0.16433421,-0.66230357,-0.5646458,0.04601016,-0.64290595,-0.14868164,-0.15841031,0.20878217,-0.37142113,0.10597543,-0.22518677,0.043908242,-0.3834353,-0.19015668,0.16946499,0.080281526,0.24781114,-0.52714527,0.057287134,-0.27650386,0.27335584,-0.2400936,-0.37323776,0.2006847,0.17855945,0.8080254,-0.0019404384,-0.2577349,-0.049236953,-0.012660852,0.28717402,0.46153685,-0.16260949,-0.29679477,-0.36656958,0.019139122,0.45137355,0.24595097,-0.012305558,-0.54694307,-0.07001183,-0.020335294,-0.40934494,0.413717,0.47361705,-0.3179955,-0.31830677,0.35243756,0.6926991,0.10844256,-0.14066377,0.3239052,0.0054103825,-0.5606545,-0.17796943,0.27133796,-0.12804922,0.37365362,-0.23735136,0.2820825,0.3576105,-0.20275512,-0.030886462,-0.021404611,-0.16162293,-0.17887019,-0.1472339,-0.3224214,0.20324367,-0.6876614,0.25682566,-0.39010996,0.7265386,0.19352359,-0.8572713,0.3839089,-0.63586134,0.15618804,-0.19431141,0.73324364,0.92004,0.29420418,0.06251621,0.65419936,-0.44003862,0.12099722,-0.32216066,-0.2752137,0.029341193,-0.28553173,-0.1122492,-0.518011,0.009539082,-0.24925604,-0.090222396,-0.26038107,0.7292022,-0.47385916,-0.22052199,0.085740566,0.61524665,-0.32957175,-0.03789268,0.7709392,1.012321,1.1105579,0.24649826,1.2206439,0.32222998,-0.08317955,0.097202554,-0.069852844,-0.7691877,0.30907437,0.5549273,0.6117422,0.37558156,0.043099284,-0.05244871,0.43149108,-0.43651742,-0.03528942,-0.34050336,0.2513604,-0.20512508,0.044634975,-0.4103002,-0.058775686,0.051619615,0.19262959,-0.091916524,0.28927422,-0.27193692,0.14456634,0.19689618,1.4883807,-0.3042158,-0.0416095,0.06300915,0.2997255,0.24799575,-0.31428754,-0.118312486,0.124391474,0.53452355,0.0055466155,-0.74366105,0.031306855,-0.17037216,-0.3467662,-0.28122312,-0.14525904,0.08170335,-0.16713764,-0.3750366,-0.04491265,0.02927388,-0.375337,0.39547378,-2.367722,-0.48852417,-0.14909518,0.3348931,-0.24432498,-0.4908747,-0.114708535,-0.3814731,0.4982827,0.3281468,0.4110542,-0.5920441,0.52226055,0.35958958,-0.47880194,0.023630679,-0.86376643,-0.15168859,-0.05359812,0.45590562,-0.07756432,-0.12546079,-0.16369277,0.2390647,0.5041081,-0.16485144,0.14150015,0.3617013,0.4207379,0.12048879,0.58761096,-0.045486443,0.43875158,-0.5278028,-0.23223859,0.52353925,-0.09771967,0.40700278,-0.11028034,0.18626364,0.35476902,-0.6920915,-0.8785508,-0.7946874,-0.5828556,1.3077654,-0.30623454,-0.36485144,0.18109155,-0.20015867,-0.18866454,-0.091471285,0.41541842,-0.16545725,-0.121408395,-0.8728767,-0.040811162,0.054488692,0.3746599,0.00909683,-0.13143028,-0.3533689,0.58693707,-0.1499047,0.45544153,0.4076959,0.20175138,-0.042053267,-0.38651678,0.054867312,1.1325957,0.43387216,0.12827595,-0.39432192,-0.29551476,-0.40755078,0.10536484,0.010899156,0.39995575,0.849224,-0.14472963,0.06997547,0.27467936,-0.037307106,0.04429078,-0.27475446,-0.338026,-0.07032628,0.28324935,0.61992264,0.36961064,0.031177392,0.41129833,-0.040143736,0.026338339,-0.2345925,-0.42863843,0.26655474,1.0361362,-0.11481038,-0.19507271,0.56712514,0.43963522,-0.1967706,0.58292955,-0.7843971,-0.31904566,0.1459752,-0.02980984,-0.31722662,0.28156057,-0.4944772,0.34034425,-0.9900054,0.3546268,-0.5340718,-0.3488876,-0.62109476,-0.18238078,-3.1196806,0.44618753,-0.029687634,-0.15116364,-0.082035184,-0.1938936,0.6683581,-0.37305334,-0.6643287,0.12090527,0.029016338,0.57847875,0.070967026,-0.020104386,-0.32142365,-0.2744982,-0.41089085,0.19681683,0.22212833,0.25686657,-0.19102472,-0.47829753,-0.1333188,-0.27253386,-0.1507862,-0.02466631,-0.6925977,-0.38330775,-0.18982461,-0.415501,-0.23562652,0.52734715,-0.2562888,-0.04347386,-0.22317782,-0.009918408,-0.027553381,0.45083243,0.1875472,0.07309022,0.16362087,-0.07304721,-0.31439167,-0.31678888,0.09270248,0.13492714,-0.02086655,0.22236589,-0.14824493,0.26250914,0.55285966,0.48303777,-0.25400585,0.83533734,0.5545786,-0.14426787,0.3811495,-0.15712386,-0.34475374,-0.57417065,-0.08274284,-0.26683715,-0.42768103,-0.5701338,0.016330512,-0.22807106,-0.7187139,0.59371865,0.014940767,0.021169428,0.10255599,0.41537535,0.3328718,-0.090524554,-0.076754145,-0.16193035,-0.17772263,-0.5491308,-0.5523635,-0.6521847,-0.52669495,0.08567715,1.1598423,-0.19952165,0.12496524,0.039038654,-0.11497749,0.08294879,0.12892042,0.010216151,0.28408062,0.49366167,0.09702572,-0.7161629,0.3573791,0.1169256,-0.013639963,-0.4829243,0.13206512,0.6330129,-0.6550485,0.37453857,0.35152626,0.10255264,0.09148427,-0.6796414,-0.091746874,0.2435934,-0.36784172,0.5103134,0.22737892,-0.9381351,0.54946256,0.31753772,-0.13923016,-0.7584663,0.5611378,0.12356232,0.027622882,-0.15675776,0.3134497,0.010032911,0.101632476,-0.33442086,0.4598989,-0.36800697,0.28629553,0.25030798,-0.11301732,0.18927394,-0.32156056,-0.15678881,-0.6764224,-0.0055828644,-0.66489786,-0.19044271,0.21136299,-0.10113992,-0.010835638,0.14107326,0.19265996,0.52493227,-0.28138658,0.12573281,-0.097607225,-0.36486033,0.23283114,0.6289987,0.4111244,-0.36317965,0.6900485,0.07335812,-0.21584529,-0.31437322,0.08621882,0.33954805,0.07629788,0.37638298,-0.11250259,-0.008371372,0.3956599,1.1469468,0.22074474,0.49144202,0.019358588,-0.10962452,0.26773706,0.15950729,0.088829234,-0.23260704,-0.41610262,-0.1118209,0.06222713,0.16880178,0.67860246,0.15230824,0.28436428,-0.17848459,-0.12904322,-0.03415456,0.15200552,0.04443002,-1.2787423,0.23594679,0.24895647,0.5232239,0.76799625,-0.07457602,0.2308382,0.35534498,-0.42065176,0.06844299,0.23157993,0.0010500596,-0.5239785,0.50577074,-0.7056204,0.34492555,-0.13462329,0.12146202,0.22476067,-0.07069064,0.52656996,0.8281014,-0.048192725,0.21396562,-0.020728858,-0.15558451,0.18949996,-0.26900026,0.017966133,-0.41014272,-0.37540454,0.72294456,0.5151953,0.4673304,-0.16341226,-0.07854454,0.08960538,-0.20394881,0.18503548,-0.17021649,-0.10021261,-0.18300864,-0.6014151,0.005469868,0.7527627,0.21786243,0.08555794,0.05579756,-0.40181917,0.33002874,-0.049717188,0.09789925,-0.0038889234,-0.9201653,-0.00042996727,-0.49184653,-0.09790272,0.42313597,-0.28199285,0.19258785,0.24875434,0.07457373,-0.23310898,0.24899231,0.05080323,0.72218996,0.1679952,-0.13918866,-0.32299584,0.05163241,0.1684263,-0.34125912,-0.113160305,-0.30158243,0.045189016,-0.8954979,0.53460723,-0.12922071,-0.35724303,0.4429922,-0.012467654,-0.046891175,0.6718743,-0.08407712,-0.16573665,0.071483225,-0.096066564,-0.2854151,-0.22099121,-0.019247394,0.33328804,0.04686896,0.06141373,-0.13423043,-0.0074849497,-0.05828288,0.5192041,0.13972646,0.31852025,0.4078536,0.25436798,-0.40298298,0.18238273,0.19789293,0.48273352,-0.05381656,-0.028237453,-0.096750624,-0.18837427,-0.29617378,0.15005389,-0.18409549,0.3369415,0.06982916,-0.2900113,0.7340208,0.23710878,1.1113402,-0.0042894343,-0.33210456,0.03527877,0.49352705,-0.03475352,-0.17196491,-0.41806954,0.7787014,0.5088751,-0.042181857,-0.10263073,-0.4919492,-0.4535219,0.12563182,-0.338558,0.0767287,-0.06464363,-0.7777891,-0.27477774,0.17958298,0.31352133,-0.0046432843,-0.1595178,0.12888788,0.19341734,-0.036292247,0.27124748,-0.4715307,-0.063125946,0.22436133,0.32216972,-0.110022396,-0.04473663,-0.5200168,0.28153676,-0.65497506,-0.00077039865,-0.4398604,0.13235837,0.08861291,-0.29784083,0.21645238,0.16683443,0.30856153,-0.25984114,-0.38593,-0.056931496,0.6278118,0.2234353,0.27469504,0.68511266,-0.41704607,0.26109287,0.0036004256,0.3590902,1.0242101,-0.3374534,-0.13733724,0.16490872,-0.3748466,-0.6179203,0.33862764,-0.5076745,0.26990655,0.22659317,-0.37885872,-0.47339025,0.3379879,0.20110911,0.043362882,-0.045164183,-0.6758273,-0.010145981,0.1812498,-0.12567177,-0.19964422,-0.33282107,0.094834715,0.8168335,-0.3403622,-0.44446167,0.092251614,0.28043798,-0.31658015,-0.6685062,-0.06232712,-0.3360926,0.23567086,0.23679362,-0.1389435,-0.005990975,0.111276895,-0.58706385,-0.05785968,0.29119927,-0.29320657,-0.03969677,-0.3483117,0.0030769156,1.0115353,-0.18273272,-0.2049503,-0.5735253,-0.616244,-0.70492613,-0.19339278,0.5562042,0.48051813,0.27381855,-0.4904575,0.1579205,-0.16674998,-0.029942453,0.1372555,-0.33481723,0.4527966,0.09400467,0.42374924,-0.050313175,-0.7837654,0.22982107,0.07581735,-0.12312348,-0.42138305,0.49735767,-0.16029105,0.84035736,0.084039174,0.034765158,0.084673434,-0.5912992,0.24592717,-0.21605536,-0.075558834,-0.83288,-0.0124137355 +941,0.46273917,-0.29182288,-0.45028454,-0.08733147,-0.1841925,0.18616535,-0.2585213,0.19652018,0.13182455,-0.5493837,-0.2519035,-0.26715484,-0.1445841,0.19142374,-0.31154898,-0.3880592,-0.011637574,0.09041137,-0.5450066,0.66569495,-0.3070584,0.28147966,0.017733283,0.4014352,0.3801422,0.28172672,0.18087251,-0.020372782,-0.13131881,-0.21728568,0.029085254,0.13220419,-0.47295868,0.15890867,-0.15005726,-0.36915448,-0.07041331,-0.50511616,-0.4115733,-0.75892043,0.60524964,-0.9748847,0.4494077,-0.006930973,-0.086579494,0.4101705,0.26021037,0.32485065,-0.013779318,0.054229103,0.23235507,-0.006362951,-0.0646726,-0.07396479,-0.18801834,-0.42250755,-0.6087896,-0.02536863,-0.36792284,-0.26110387,-0.32624835,0.07984034,-0.2566855,0.052517235,0.028490828,0.53490955,-0.5184317,-0.02445283,0.29477394,-0.06764849,0.36493355,-0.6873163,-0.1799316,-0.05672555,0.3151514,-0.18001652,-0.042495854,0.17506084,0.4065933,0.43389755,0.0040531876,-0.06528283,-0.1631197,-0.14520258,0.29379576,0.44857693,0.055782694,-0.4212007,-0.13650776,-0.0062236628,0.03504176,0.22174147,0.289828,-0.37567902,-0.07095482,-0.014980395,-0.19480418,0.45006078,0.4520742,-0.2714489,-0.20130183,0.38955593,0.5321857,0.25722253,-0.16735746,0.106854245,-0.0011191656,-0.46446568,-0.2093894,0.19465494,-0.31616527,0.5151026,-0.15077774,0.31808186,0.62632245,-0.14634606,0.09078227,-0.093853526,-0.022357604,-0.27364957,-0.16122031,-0.2816981,0.17712678,-0.438226,0.2013344,-0.088924475,0.5887911,0.06932937,-0.59241384,0.28690663,-0.6167393,0.08498381,-0.034357212,0.40617597,0.60047597,0.28099722,0.29996583,0.6550202,-0.41267604,0.011849572,-0.056531016,-0.32873458,-0.15663792,-0.26569608,-0.19608977,-0.44243953,0.04932966,-0.15609707,-0.019084198,-0.21076061,0.4558856,-0.44684705,0.072755866,0.08380071,0.84901595,-0.29688987,0.09248652,0.82595736,0.9343371,1.1595598,0.070006825,1.1114589,0.21135053,-0.25999126,0.07056336,-0.1163411,-0.64432263,0.4007422,0.5060083,-0.045372963,0.2864373,0.0105017405,0.057811085,0.36932898,-0.38053676,0.15850426,-0.22790347,-0.03637246,0.26533267,-0.17992662,-0.3802995,-0.116450794,0.0022183578,0.11787126,0.17782547,0.051047906,-0.13135622,0.27738848,0.12982465,1.663981,-0.22296311,0.06403316,0.16085966,0.4128755,0.1956198,-0.090683684,-0.052823164,0.22802661,0.42965552,0.19703561,-0.70234716,-0.008813039,-0.22860269,-0.42620805,-0.24989833,-0.28074473,-0.11186516,0.016380707,-0.41800764,-0.1103449,-0.16157001,-0.32932752,0.2911293,-2.6327379,-0.19017714,-0.2971634,0.2789232,-0.24147873,-0.29367474,-0.09644384,-0.45167747,0.44158646,0.37135622,0.3162753,-0.56828713,0.45839468,0.52590495,-0.63720447,0.0988282,-0.5159236,-0.14361598,-0.16674218,0.3584706,0.00518647,-0.05369464,0.027167527,0.2544854,0.42697194,0.04054207,0.15983649,0.2792253,0.5289487,0.030127065,0.7153918,0.08624945,0.4130106,-0.15401167,-0.10793027,0.47295916,-0.23699099,0.23345819,-0.20742477,0.17946504,0.51920843,-0.56497353,-0.76484746,-0.7322272,-0.45914474,1.1551269,-0.10473302,-0.49991047,0.19716473,-0.27710336,-0.37088865,-0.11287144,0.48108146,-0.170274,0.07367614,-0.86647856,-0.058484543,-0.10511125,0.023191115,0.024236642,-0.06630785,-0.5908002,0.8742635,-0.00436654,0.44210348,0.38719627,0.18230239,-0.25845602,-0.55956477,0.01075691,0.9060107,0.41584688,0.0561742,-0.30638358,-0.063458495,-0.38727352,-0.06742199,0.06824408,0.4404034,0.521251,0.08704669,0.32415923,0.17357874,0.12886259,-0.00255211,-0.26476592,-0.27998617,-0.14836088,-0.200969,0.5688404,0.47345677,-0.15434612,0.39398214,-0.113413796,0.26035082,-0.19148661,-0.37639427,0.52013373,1.2456322,-0.11744625,-0.39331397,0.65191805,0.5007726,-0.24778026,0.3696214,-0.59216464,-0.1189444,0.47507858,-0.23807958,-0.63826203,0.20345595,-0.35269102,0.14221264,-0.7664815,0.26221102,-0.26529783,-0.22582892,-0.5780899,-0.23856299,-3.2590566,0.22576895,-0.2449104,-0.30168438,-0.21824677,-0.15074508,0.33052558,-0.53729784,-0.7617527,0.22588132,-0.05567893,0.7607185,-0.1347396,0.18762134,-0.24805762,-0.2196374,-0.34744692,0.09736263,0.037764803,0.2849042,-0.08879458,-0.44403014,0.044537067,-0.19600715,-0.39539808,-0.072735,-0.4230275,-0.32823163,-0.11138312,-0.34711888,-0.13551188,0.5284648,-0.13415508,0.06990639,-0.28844318,-0.10566036,-0.17040545,0.3991303,0.042120498,0.13715991,0.041621756,-0.042373728,0.048975762,-0.13805558,0.35921153,0.08890341,-0.015332184,0.24374828,-0.21823142,0.1903974,0.20842266,0.5232939,-0.20840149,0.9745003,0.44628382,-0.19200477,0.20965725,-0.25215536,-0.2606991,-0.6046961,-0.26667807,0.047899343,-0.37520954,-0.6788265,-0.094664305,-0.38749695,-0.7495716,0.49102765,-0.044461012,0.26377392,0.0441326,0.1457676,0.39946404,-0.1523612,0.0020399885,0.05141227,-0.12056171,-0.46437347,-0.34229487,-0.59733444,-0.44866365,-0.114906915,0.7892836,-0.07256161,-0.031747773,0.054130338,-0.39824674,0.028484814,0.100476734,-0.054461244,0.119438216,0.4788242,-0.039468586,-0.8047992,0.636137,-0.09917059,-0.12721808,-0.56994915,0.055826202,0.69629514,-0.48721224,0.50713444,0.37883335,0.048638288,-0.3268634,-0.5536299,-0.04792857,-0.043550868,-0.42624515,0.49347046,0.18817511,-0.69932395,0.42977035,0.2989129,-0.08327319,-0.7884682,0.7008012,0.041086633,-0.2603517,0.10449113,0.41895548,0.068967596,0.03425627,-0.33897686,0.37798825,-0.40510017,0.2288163,0.17935556,-0.031495906,0.12902966,-0.23275234,-0.18328704,-0.74077994,-0.037886743,-0.4183356,-0.18130098,0.16993073,0.0291284,0.124701895,0.33945405,0.07731342,0.4220193,-0.26865843,0.1528246,-0.050142195,-0.104004234,0.16268112,0.46355247,0.43395093,-0.47430936,0.60219926,-0.08284744,-0.099047825,0.049824316,0.099764094,0.38252643,0.08510737,0.4147974,0.08325343,-0.23778439,0.33237138,0.9250479,0.28364435,0.5067671,0.18528631,-0.27859232,0.33458558,0.16654024,0.26845512,-0.19005917,-0.6063555,-0.034940876,-0.17107895,0.11997322,0.4290895,-0.013405728,0.3314467,-0.1384888,-0.3456541,0.029439304,0.21508123,0.009362936,-0.9570981,0.26249334,0.14597687,0.8429854,0.6363734,-0.13261575,0.17361975,0.5211839,-0.22210178,-0.03149983,0.34726027,0.0062325993,-0.56049705,0.5584311,-0.5418285,0.27221885,-0.048804738,-0.12335,-0.014723198,0.01607566,0.34084627,0.68233526,-0.1825876,0.060738266,-0.101927675,-0.24654119,0.32608312,-0.4545606,0.035901286,-0.31511062,-0.33107814,0.6262014,0.709973,0.2574168,-0.17907931,0.052871864,-0.015889298,-0.12187259,0.15095349,0.23129518,0.03144711,-0.11001976,-0.8258289,-0.19550224,0.41236755,0.104311906,0.048727855,0.023652514,-0.32092616,0.21274458,-0.08713259,0.11856638,-0.00022383133,-0.86372113,-0.041444458,-0.22827253,-0.5231827,0.27455208,-0.11246125,0.23224078,0.18767291,-0.021772925,-0.23362732,0.122287504,-0.031196324,0.6914622,0.03918906,0.05597109,-0.39695632,0.100554705,0.21114448,-0.24635312,-0.028940868,-0.23287068,0.20723964,-0.67940956,0.59504914,0.0041499296,-0.38513005,0.27357107,-0.12658696,-0.03383764,0.62887114,-0.23641191,-0.09139465,0.017191362,-0.07852013,-0.23801522,-0.22451115,-0.19424623,0.1616734,0.0451291,0.076748535,-0.14446935,0.037429877,-0.16708751,0.5289911,0.08246682,0.57510126,0.5163524,-0.07137259,-0.42697594,-0.17861703,0.12292094,0.58220613,0.0026349684,-0.26828435,-0.19947377,-0.71790737,-0.25976807,0.37951893,-0.003995208,0.26770192,0.09563082,-0.25575116,0.64807165,0.073665924,1.108727,0.087502845,-0.4201003,0.13002777,0.5308783,-0.10621198,-0.122408204,-0.4064712,0.71564656,0.517648,-0.11571254,-0.10079129,-0.2661439,0.060555495,0.041688986,-0.23535372,-0.02546997,-0.117809944,-0.5976317,-0.3366061,0.1299239,0.29794952,0.08644954,-0.16547719,0.07400249,0.26362792,-0.012856803,0.4828482,-0.4924278,-0.3701529,0.3621787,0.22075881,-0.080510974,0.028823873,-0.4040593,0.4984828,-0.4913648,0.012215288,-0.3149472,0.20496269,-0.25191295,-0.16096298,0.24798916,-0.046552304,0.4183202,-0.31146634,-0.42368928,-0.25972927,0.37909344,0.17717877,0.17096029,0.3818106,-0.30093306,0.20769338,0.08554586,0.6707784,0.9804865,-0.08872902,0.21874695,0.33405632,-0.46004078,-0.48152003,0.37676254,-0.32247528,0.21855585,0.17631201,-0.21019433,-0.4016975,0.2818,0.23463562,-0.051770397,-0.09984178,-0.6131318,-0.34766954,0.4686185,-0.2146844,-0.21414907,-0.2475449,-0.017591167,0.5437738,-0.31985968,-0.24650837,-0.0914233,0.2525178,-0.21757771,-0.530073,-0.029990379,-0.41087925,0.49076447,-0.0017231822,-0.15367675,-0.11942472,-0.011199077,-0.51368356,0.12658842,0.113352746,-0.41986293,-0.024209926,-0.35103557,-0.10591132,0.8582573,-0.27818996,-0.072730295,-0.4972293,-0.41908118,-0.9554698,-0.3028756,0.35796434,0.1881965,0.07103432,-0.38639486,0.07016388,-0.21736985,0.111480094,-0.0043638507,-0.3309863,0.4141744,0.13411142,0.56769174,-0.09019251,-0.67126137,0.121274024,0.08421509,-0.35570708,-0.39595845,0.699506,0.05405364,0.65874636,0.022770038,0.11566793,0.121533036,-0.5437451,0.065712914,-0.107159846,-0.15478143,-0.8463147,0.07150658 +942,0.40242302,-0.18462116,-0.5417799,-0.11530328,-0.1772289,0.3679883,-0.18074472,0.49735114,-0.032984044,-0.5438507,-0.16636294,-0.023585683,-0.03489162,0.37296087,-0.20749979,-0.43615356,0.1088513,0.16295876,-0.5632918,0.68031895,-0.4707954,0.1964277,-0.064971834,0.38028508,0.26922405,0.1081929,0.14057106,-0.04359507,-0.42317492,-0.14247513,-0.18592276,0.5424858,-0.37878662,0.08252042,-0.19870216,-0.30108228,-0.12087944,-0.33007324,-0.37408853,-0.6909313,0.08504571,-0.85150623,0.53202677,-0.17529248,-0.2880252,0.2837058,0.40414214,0.29088122,-0.28458,-0.016864553,0.083071455,-0.19987726,-0.12434755,-0.28623918,-0.2569784,-0.54844093,-0.58750254,0.14205611,-0.534014,-0.095369466,-0.19898425,0.26871908,-0.20544152,-0.05620254,-0.13458574,0.5915925,-0.5161108,0.08337018,0.12588286,-0.014238773,-0.02265086,-0.70828766,-0.18847118,-0.24763264,0.20458487,-0.06942861,-0.20856543,0.19922492,0.47894555,0.518975,-0.017536711,-0.13022396,-0.43325743,-0.041607566,0.032436296,0.40808818,-0.21925163,-0.5200486,-0.22156502,0.010295193,0.3060264,0.03982424,0.14088571,-0.28580377,-0.051218778,-0.01822155,-0.37230778,0.26829687,0.4590108,-0.49940854,-0.30393064,0.39050865,0.43401578,0.15387204,-0.37389848,-0.0386918,-0.0653016,-0.6008194,-0.025307052,0.24445802,-0.1592918,0.60729235,-0.21051605,0.083377175,0.5269328,0.0209452,-0.04547743,0.10376642,0.1611786,0.07326546,-0.2251432,-0.2486106,0.061800346,-0.21969475,-0.04263508,-0.15064561,0.7198249,0.108560525,-0.6196657,0.34798586,-0.5340852,0.08491323,-0.032057695,0.44453347,0.6055735,0.5211297,0.16867042,0.6064865,-0.13662457,0.072717845,0.028472152,-0.17973572,0.023383765,-0.28643852,-0.10652168,-0.47517893,0.2600266,0.014293544,-0.10965012,0.031909764,0.7518529,-0.56092125,-0.17936185,0.09717731,0.845088,-0.2640609,-0.3202141,0.8430639,0.91765094,1.0113564,0.01705388,1.2058277,0.28669655,-0.15856351,0.12659675,-0.3971418,-0.5154924,0.2652866,0.34014216,-0.29888713,0.32873756,0.098165624,-0.15609603,0.52147794,-0.37064117,-2.4815556e-05,-0.3037773,0.1441822,0.21204486,0.07683663,-0.4179057,-0.37913987,0.056345068,-0.031973653,0.23154718,0.23945433,-0.30692294,0.34170386,0.022942195,1.5940062,-0.10069591,0.00091801956,0.023550991,0.49615258,0.21612793,-0.028776187,0.09061247,0.2912568,0.30397704,0.02446721,-0.39026952,0.12438811,-0.2779294,-0.61074054,-0.110293515,-0.35987377,-0.18790528,-0.07461649,-0.6428648,-0.16661763,-0.020470709,-0.21637666,0.48606676,-2.7145705,-0.18461159,-0.116671205,0.2973389,-0.2801693,-0.39514512,-0.23230475,-0.41863436,0.377728,0.29142386,0.4849968,-0.573619,0.5179254,0.26268905,-0.40702522,-0.12148993,-0.6222937,-0.14069033,-0.04415942,0.51979005,-0.0040026773,-0.021972332,0.19726206,-0.001957573,0.6164951,-0.2794295,0.18893184,0.26173162,0.21151444,0.02946715,0.4922341,0.046549514,0.6449663,-0.35107732,-0.26401424,0.42956227,-0.55944973,0.35922456,-0.045847178,0.1422254,0.45864147,-0.45494533,-0.9120235,-0.6703683,0.003714189,1.1641713,-0.25927755,-0.40109408,0.012752992,-0.28088126,-0.1823314,-0.06784764,0.4617027,-0.14354558,0.0063009635,-0.82220185,0.051768616,0.033580672,0.24614006,-0.14800131,0.14117467,-0.33169055,0.5983242,-0.09331496,0.44682318,0.27145973,0.24284416,-0.37518215,-0.4265048,-0.07005943,0.9417832,0.4216826,0.124942034,-0.1978567,-0.33841556,-0.37660685,-0.09088791,0.094541505,0.6367806,0.41727608,0.07068263,0.09275706,0.2994001,-0.09058697,0.07887293,-0.2945669,-0.2745813,-0.111361764,0.20726873,0.5571118,0.5304824,-0.14093268,0.5961425,-0.1604013,0.41454598,-0.11559586,-0.39749533,0.47588438,1.0595093,-0.27965948,-0.30819756,0.5630086,0.619316,-0.24837163,0.315758,-0.66610175,-0.44698614,0.5578182,-0.18094245,-0.26041302,0.22619997,-0.32894862,0.12557968,-0.87579465,0.43905243,-0.3249041,-0.35291183,-0.6921656,-0.106055975,-3.3440423,0.17876357,-0.17667243,-0.05558096,-0.09325495,-0.25866756,0.19297922,-0.58942705,-0.41815683,0.06795146,0.1766774,0.50287414,-0.12601656,0.085339405,-0.2644282,-0.3190291,-0.19639999,0.26683784,0.17587428,0.3929807,-0.17547122,-0.54682297,0.059688777,-0.2668855,-0.29603118,0.026635978,-0.81248826,-0.53533113,-0.06674227,-0.58835703,-0.36775166,0.7056657,-0.51213604,0.023859773,-0.1617581,0.10721865,-0.051792584,0.23002483,0.043381028,0.10925375,0.07674845,-0.17760865,0.102890104,-0.3520003,0.18729377,-0.02053029,0.16234016,0.48687577,-0.01941111,0.21895431,0.60328346,0.5633619,-0.016098648,0.8721205,0.5683435,-0.11371462,0.38845757,-0.20387265,-0.16737014,-0.46482155,-0.28985828,-0.046704322,-0.3865962,-0.44044796,-0.043032788,-0.34967864,-0.79870105,0.5523062,-0.12258166,0.07851653,-0.131437,0.47349873,0.5989216,-0.1809797,-0.02738195,-0.07048525,-0.15433201,-0.42737526,-0.5708316,-0.6067896,-0.5033155,-0.02441288,1.10373,-0.21657121,-0.08279635,-0.06592082,-0.22711605,-0.18892853,0.2641228,0.09028428,0.13476303,0.5755825,-0.2947744,-0.7209252,0.4003001,-0.3025373,-0.117963,-0.29312062,0.34487885,0.6053741,-0.6385223,0.5800094,0.52809477,0.1616509,-0.13926497,-0.55066276,-0.21796523,0.025152067,-0.19222534,0.41006312,0.20560518,-0.75892377,0.44617707,0.15115492,-0.34129477,-0.7436404,0.6010866,-0.04178299,-0.24521208,-0.08985743,0.43257448,0.19005159,0.06911984,-0.22612411,0.087283365,-0.5495982,0.25877038,0.18737094,-0.044087976,0.3514899,-0.31449044,-0.13956623,-0.77759826,0.011357361,-0.46685028,-0.35277927,0.2953071,0.051264793,0.2280578,0.1162737,-0.09098675,0.301023,-0.37597287,0.07642388,-0.1202314,-0.17186785,0.22608797,0.4940678,0.42255116,-0.46103546,0.55358726,0.06474902,0.03566431,0.024177298,0.028160501,0.34581798,0.118202746,0.529281,0.09830113,-0.073750734,0.3614386,0.74554586,0.33322176,0.46400377,-0.0029605068,-0.3606152,0.19204536,-0.05795455,0.14054577,-0.043948554,-0.41530454,-0.20167309,-0.19001144,0.2211106,0.47198984,0.13227305,0.44842255,-0.059738167,-0.23558864,0.079611376,0.18080392,0.03886585,-1.1461134,0.24651513,0.23263133,0.7506721,0.31372303,0.0792395,-0.019994818,0.73297364,-0.35722214,0.04890466,0.45926332,-0.05313733,-0.42924312,0.5780592,-0.67702675,0.5074686,-0.19747749,0.07326476,-0.045657266,0.06419947,0.3596064,0.86622536,-0.16256133,0.07120566,0.1331685,-0.3745636,0.20328227,-0.30317217,0.21705985,-0.46447948,-0.2642018,0.6742748,0.56051826,0.40174317,-0.17133412,0.0028734393,0.17283471,-0.29169655,0.15890846,0.09198372,0.23980916,-0.12127069,-0.777915,-0.1781047,0.54862976,-0.1583983,0.12758055,0.25430992,-0.28098172,0.3367493,-0.13056585,-0.023354873,-0.08128904,-0.55766726,-0.14199454,-0.26113954,-0.4863826,0.44371003,-0.36972022,0.21364574,0.21987587,0.0017911792,-0.40944272,0.41070455,0.043049853,0.7331504,-0.0008786097,-0.20202585,-0.30730698,0.07136183,0.17920823,-0.21197805,-0.13300212,-0.29384738,0.19562204,-0.5278317,0.39504302,-0.13044271,-0.24215099,-0.12973794,-0.070144325,-0.07817976,0.45874506,-0.08531863,-0.15192452,0.018115401,-0.052607544,-0.32995307,0.0055698305,-0.0822219,0.31318274,0.121913075,-0.018103339,-0.12408148,-0.13651808,-0.16070509,0.4638637,-0.06566677,0.31577858,0.58150434,0.17308037,-0.37506038,-0.03404326,0.18001877,0.647701,-0.02787067,-0.124383874,-0.25791058,-0.32504016,-0.37169167,0.21803683,-0.11192712,0.34757808,0.2344164,-0.4325282,0.7943982,-0.21381733,1.2623725,0.03611803,-0.38424605,0.07852663,0.51036596,0.02051972,0.13039672,-0.29929486,0.9055266,0.52178717,0.03413497,-0.08182672,-0.4212868,-0.04932051,0.12989591,-0.18307677,-0.21724299,-0.07175556,-0.56700397,-0.27161342,0.117998905,0.1735421,0.3228849,-0.052203443,0.14619473,0.3412238,0.10959137,0.29714692,-0.4367604,-0.12009598,0.31400493,0.449749,-0.1490944,0.1253747,-0.46862757,0.34737715,-0.5548192,0.014013981,-0.17828418,0.18785506,-0.13406388,-0.2682133,0.30333143,0.035325453,0.28922135,-0.43320715,-0.22157365,-0.25739264,0.562186,0.0020396076,0.12646139,0.64748096,-0.26914793,-0.0114575755,0.062488105,0.5566342,1.0774429,-0.35743043,-0.0059940666,0.26470196,-0.34081775,-0.70926654,0.27428842,-0.37142214,0.25395083,0.028563257,-0.21866359,-0.6034772,0.3795808,0.25853956,0.1132977,-0.02202096,-0.5562933,-0.08955148,0.36412323,-0.21250689,-0.11938405,-0.19768925,0.23387432,0.4935586,-0.36919898,-0.37703916,-0.0070575066,0.37501535,-0.21285671,-0.49982524,-0.016105227,-0.4901441,0.2964344,0.20641649,-0.2503709,-0.10796035,-0.03001244,-0.44482815,0.14937437,0.45093122,-0.33587915,0.11146884,-0.30028656,-0.025826186,0.8973738,-0.085306376,0.21350376,-0.48310837,-0.45977458,-0.8759657,-0.22481152,0.32182977,0.11209595,-0.105818465,-0.77288306,-0.040184475,-0.09556769,-0.52869815,-0.011493518,-0.49170244,0.54933774,0.082995646,0.26916343,-0.018772922,-0.71541697,0.0914528,0.06899957,-0.038750514,-0.45277828,0.36527383,-0.11756915,0.96894425,0.11649243,0.1297459,0.29222718,-0.44237006,-0.00077021867,-0.27247608,-0.013129715,-0.72234374,-0.004358884 +943,0.5630353,-0.17743155,-0.55634755,-0.25934976,-0.39425486,0.090847254,-0.35742927,-0.020869901,0.22556463,-0.41043976,-0.22132835,-0.12188021,0.034757327,0.40535286,-0.23050506,-0.8215418,-0.007963636,0.21574919,-0.5967173,0.45548037,-0.6193647,0.26715347,0.037001234,0.54266685,0.00052665814,0.29342356,0.375058,-0.023204157,-0.26778308,0.014795073,-0.07280571,0.22223027,-0.9822999,0.20503463,-0.1447502,-0.48913023,0.055048548,-0.41151974,-0.26058397,-0.9221493,0.4892488,-1.0545412,0.61410046,-0.058202393,-0.2963428,0.07669943,0.05674398,0.21427216,-0.39901915,0.08008214,0.26226372,-0.54389584,-0.15253152,-0.24024396,-0.18799232,-0.56851983,-0.778248,0.09348693,-0.7089728,-0.04991413,-0.3414369,0.2678471,-0.31226733,0.07232355,-0.306879,0.3309652,-0.6193163,-0.119101815,0.12716666,-0.13502975,0.23697303,-0.2888954,-0.20545742,-0.22163773,0.2606267,-0.12605432,-0.20482324,0.32063887,0.36580577,0.5932582,0.19070816,-0.353961,-0.35568348,0.02575085,0.16494314,0.32556322,-0.04484821,-0.43953127,-0.36280277,-0.13646527,0.36766466,0.39743453,0.069975555,-0.340077,0.21450163,0.13219073,-0.11902591,0.40916866,0.5000873,-0.3901537,-0.26279444,0.2589495,0.5172369,-0.17349158,-0.26350597,0.009629548,0.08294458,-0.69563115,-0.33087865,0.43379173,-0.23400022,0.6561986,-0.14568436,0.11818942,0.91087335,-0.3692027,-0.064057834,-0.26574966,-0.11871071,-0.24046943,-0.23068942,-0.21498892,0.45100376,-0.45284346,0.037565477,-0.2804256,0.7229357,0.23166026,-0.7367205,0.34060812,-0.5663229,0.13900664,-0.123797655,0.7084939,0.65952843,0.40261716,0.5507115,0.8566038,-0.4761712,0.3077206,0.13642107,-0.460354,0.09406923,-0.3707039,0.101737045,-0.34664026,0.0044616675,-0.23556297,-0.11410512,-0.08389325,0.4940894,-0.40800306,-0.02825378,-0.00096509286,0.6530856,-0.4474638,0.041130718,1.0362759,1.1262801,1.1822788,0.21101487,1.6232721,0.6324304,-0.0767589,-0.15073776,-0.14604096,-0.61963195,0.1863834,0.44810146,-0.2497752,0.31539592,0.036837675,0.16709037,0.4589822,-0.63120043,0.012944677,-0.16709948,0.20074166,-0.12023686,0.07246675,-0.60470164,-0.15693347,0.12686107,0.02394686,0.09812649,0.37720013,-0.11859507,0.60078526,0.06556364,1.1403421,-0.04648235,-0.04277686,-0.08915786,0.5464351,0.14492199,-0.030607095,-0.06765843,0.1855751,0.4627189,-0.12352882,-0.7140297,-0.050487183,-0.32807684,-0.34506717,-0.37262195,-0.40491995,0.23081145,-0.27451205,-0.3523721,-0.24871598,0.057817925,-0.30926195,0.47998708,-1.9743053,-0.14110401,-0.18248507,0.23280115,-0.12651253,-0.31292233,-0.16899957,-0.62899536,0.39998797,0.37807298,0.39441177,-0.6410139,0.35630697,0.43414164,-0.46754834,-0.09293396,-0.988426,-0.0033068317,-0.33860043,0.41052845,-0.07100372,-0.28304932,-0.31142756,0.17213437,0.6371749,0.08408087,0.10737778,0.18571188,0.5451745,0.032867067,0.68053436,0.25345263,0.5315918,-0.3511474,-0.2804843,0.5175304,-0.37633476,0.3385942,-0.055170804,0.17054716,0.52649206,-0.7131289,-1.0730947,-0.8356449,-0.6130751,1.0421966,-0.33608574,-0.5042278,0.15835033,-0.08818977,-0.22394456,0.012074134,0.38108367,-0.2642472,0.103487544,-0.7874591,-0.065875076,0.14258228,0.2794376,-0.037783828,0.27663124,-0.35264271,0.5383375,-0.20773129,0.15546967,0.459405,0.27354065,-0.19450484,-0.6568703,0.25085333,0.9565175,0.27826095,0.098538145,-0.31032056,-0.36328772,-0.013339775,-0.193628,-0.03423739,0.43266302,0.9578577,-0.24267784,0.020416604,0.34158173,-0.29793778,0.039049268,-0.13011232,-0.3183587,-0.10197033,0.06813377,0.5922242,0.75423735,-0.21956041,0.25514835,-0.33894977,0.51479053,0.0131848585,-0.5192837,0.6770095,1.0582381,-0.12239496,-0.08909122,0.81955624,0.5872657,-0.6270383,0.7063962,-0.76702434,-0.33427265,0.64509517,0.012271361,-0.42317942,-0.17943093,-0.34920564,0.33711436,-1.0392708,0.303873,-0.03010724,-0.3627022,-0.6372908,-0.21539016,-3.9206147,0.1489942,-0.23366295,0.0073726005,-0.07970953,-0.2227516,0.37410328,-0.5546016,-0.65356815,0.1255943,-0.011060503,0.5963963,-0.102275714,0.32921436,-0.38549998,-0.1504077,-0.32781428,0.26034227,0.46147007,0.3531511,-0.007994456,-0.52272046,0.2450464,-0.42328677,-0.45088312,-0.17751609,-0.66923743,-0.510188,-0.25758323,-0.6797315,-0.5315801,0.6501446,-0.31368932,-0.034989957,-0.34763643,0.12301066,-0.22270682,0.5013763,0.18053566,0.3362182,0.14914873,0.07110208,-0.19030759,-0.22208397,0.3157738,0.031315345,0.030639231,0.2624134,-0.05749764,0.22175767,0.47609776,0.7218774,-0.017661443,0.93724245,0.38437706,-0.013733777,0.21935473,-0.3673903,-0.4984839,-0.87116754,-0.46121305,-0.24247435,-0.5294703,-0.5061051,-0.09384644,-0.42333984,-1.0134863,0.71083206,0.06575994,0.184643,-0.14259446,0.44666752,0.4218464,-0.24841748,0.007272831,-0.15282938,-0.2535193,-0.5875045,-0.54003733,-0.763437,-0.7694343,-0.07206905,1.1206868,-0.03204012,-0.3425579,0.24474089,-0.42866588,0.25607768,0.21781063,-0.0037375134,0.23408845,0.697573,0.1466411,-0.8013997,0.50515586,0.031850595,-0.0612665,-0.5868967,0.0044404524,0.8117301,-0.86253196,0.7114728,0.58492315,0.22921541,0.21435615,-0.6210889,-0.3831535,0.05384677,-0.0570773,0.7158661,0.2872445,-0.8154526,0.6623413,0.17673358,-0.27815852,-0.85435545,0.5418178,0.05784915,-0.1907728,0.21338478,0.45296404,0.028416293,-0.054655105,-0.43672827,0.23591502,-0.53250813,0.22918512,0.449972,0.056147087,0.37230772,-0.19290951,-0.3251576,-0.8326183,-0.09487339,-0.47468826,-0.26835233,0.030141482,-0.12333421,-0.07145041,0.23260215,0.084784046,0.42203522,-0.34362355,0.16160889,-0.0753362,-0.3343881,0.20871113,0.53779286,0.26140672,-0.6062607,0.76636183,0.10470385,-0.27380317,-0.19828519,-0.080577016,0.4467666,0.15442204,0.28741175,0.07785287,-0.13842593,0.03104854,0.62480146,0.08884297,0.5427098,0.23500337,-0.20961216,0.60493314,0.24598959,0.26457173,-0.058958855,-0.24408457,0.08854042,-0.060321517,0.05606131,0.38878083,0.08511938,0.43064165,-0.03679266,-0.04691135,0.20039405,0.1460304,-0.055063862,-1.3257035,0.29467854,0.1797054,0.6097021,0.6454855,0.050175223,-0.039495353,0.61621827,-0.70012665,-0.07870535,0.4088157,0.20508745,-0.44525903,0.5887221,-0.5331465,0.38898394,-0.29525822,-0.082245186,0.044870887,0.3629563,0.38726425,1.0146881,-0.07596582,0.19042012,-0.090136655,-0.040332604,0.2933357,-0.27183756,-0.061224945,-0.3654206,-0.36890444,0.7932443,0.36037797,0.4720991,-0.29035473,-0.095302865,0.013400367,-0.21104264,0.3356796,-0.04641674,-0.17467615,0.0626903,-0.6838078,-0.2605093,0.5209028,0.108307496,0.00055309065,0.10515843,-0.45486158,0.2975974,-0.2625988,-0.08219145,-0.042573,-0.83441085,-0.32475758,-0.38554317,-0.40763712,0.45170054,-0.4468377,0.27398542,0.23366454,0.061714377,-0.4493394,-0.012795689,0.22568281,0.8111729,0.40585026,-0.113699794,-0.28560376,0.079479694,0.49283418,-0.5022513,0.059623618,-0.34106258,0.15414552,-0.55172163,0.633143,-0.21859124,-0.393387,-0.053687956,-0.17227003,0.009767703,0.60776097,-0.216644,-0.20455413,0.26156786,0.027963161,-0.29462835,-0.25573775,-0.3584054,0.24859358,-0.052272405,-0.007950498,-0.07464201,-0.06737041,-0.07658733,0.85166645,-0.05520689,0.29116583,0.2728921,-0.12128877,-0.41421336,0.012761644,-0.13259831,0.5193567,-0.012588569,-0.25819662,-0.39560273,-0.27529687,-0.1217807,0.28500384,-0.1765047,0.036416225,0.037418924,-0.44252846,0.8228442,0.2157928,1.3577224,0.10985493,-0.5211237,0.04691719,0.6053724,-0.004986848,0.15235741,-0.45723078,1.0448345,0.47071174,-0.32532224,-0.13838181,-0.5010111,-0.12194286,0.23677588,-0.2556249,-0.12315603,-0.29242048,-0.77023536,-0.28764287,0.24707463,0.3911579,0.11289965,-0.04124562,0.28041238,0.041334577,0.25327998,0.699014,-0.48696828,-0.09579929,0.4566618,0.29371768,0.02267374,0.21535513,-0.07852743,0.4594774,-0.52650243,0.10610391,-0.66383666,0.10090273,0.09504758,-0.45203432,0.18817149,0.16910097,0.40602753,-0.26735,-0.24717629,-0.26971126,0.8060288,0.27283198,0.22686605,0.7523716,-0.29809374,0.0822965,0.06579529,0.55910015,1.5472772,-0.26090723,0.21338442,0.17051843,-0.21420605,-0.55100167,0.44218454,-0.5204458,-0.08068289,-0.18250932,-0.49887577,-0.6156683,0.13871573,0.11661398,-0.09804548,0.17702878,-0.5214787,-0.134418,0.5085406,-0.08845459,-0.21011125,-0.32739225,0.44386694,0.68282634,-0.37629387,-0.26272938,0.087251686,0.3419013,-0.24225108,-0.43792632,-0.12902027,-0.3731092,0.46048698,0.104101874,-0.46140394,0.074862,0.23825775,-0.42271134,0.118892215,0.48562995,-0.30150393,0.1162976,-0.240011,0.056444068,1.1443878,-0.009562075,0.1526853,-0.61773765,-0.50318235,-1.1901648,-0.15298608,0.43129948,0.2877193,0.073533766,-0.44685668,0.007541001,0.0229314,-0.0048498,0.26588523,-0.8131496,0.38316685,0.101921625,0.71301556,0.091384076,-0.8130186,-0.085224174,0.08635123,-0.22842346,-0.35273567,0.59420913,-0.10658006,0.8466391,0.09498169,0.0927018,-0.021123962,-0.56525385,0.3730547,-0.3419449,-0.17960323,-0.7255211,-0.03434779 +944,0.5414034,-0.29187396,-0.48492938,-0.18283173,-0.27575257,0.28272635,-0.04783093,0.60284173,0.20971581,-0.15193993,0.015812894,-0.10090521,0.008303189,0.48744124,-0.041589893,-0.70353,-0.1195546,0.04443189,-0.62449354,0.32730582,-0.44746944,0.31546313,-0.10382271,0.46716124,0.1015272,0.34186566,0.07615352,0.09732726,0.11695364,0.21870448,-0.15898426,0.25764114,-0.5703259,0.054140504,0.02239306,-0.30412772,-0.16224636,-0.38091025,-0.3262804,-0.52577037,0.40467578,-0.69545054,0.5422525,-0.1778566,-0.40652987,0.18326932,-0.1539077,0.13375422,-0.47825903,0.010284694,0.20772758,-0.022664186,0.13509914,0.005993265,-0.18461339,-0.40136257,-0.54714525,-0.050712224,-0.48641247,-0.060315844,-0.14131509,0.11751737,-0.27055293,0.02256938,-0.06513841,0.31606042,-0.3581587,0.054457087,0.34219244,-0.23533684,0.23018925,-0.45271474,-0.091682725,-0.18514207,0.2370412,-0.093483336,-0.2258771,0.13033447,0.3727838,0.5347896,-0.092470735,-0.13443917,-0.2540135,0.20952933,-0.0713741,0.6016711,-0.030851604,-0.18717869,-0.35046944,-0.14005865,0.07688394,0.04179684,0.10963464,-0.35440108,-0.06588861,-0.039446894,-0.10921558,0.18489657,0.34466755,-0.3874799,-0.24921441,0.38126138,0.4869237,0.23830803,-0.042120907,0.17271401,0.05737514,-0.6285791,-0.23336846,-0.002346965,-0.051540844,0.5837039,-0.18808402,0.32193714,0.73582643,-0.020923348,0.13699828,-0.1670226,-0.0944029,-0.1842115,-0.28167135,-0.089889556,0.13020712,-0.35716695,0.09412698,-0.082131095,0.46838835,0.2346279,-0.8463577,0.37407142,-0.47824675,0.08918477,-0.1602475,0.47485238,0.9188125,0.3954331,-0.03257996,0.8330625,-0.5976974,0.029660206,0.1202189,-0.35681966,0.3476954,-0.042969253,0.023601161,-0.59411323,-0.0839009,0.17437838,-0.052008025,0.14293791,0.25324443,-0.5060718,-0.120473295,-0.04185572,0.5754147,-0.3610726,-0.2117245,0.6162964,0.90102565,0.8002202,0.024211653,1.2617582,0.29910094,-0.1640972,0.28110665,-0.30064282,-0.6157448,0.14212188,0.32794094,0.12526466,0.60889095,0.08210134,-0.06414897,0.5379529,0.07053598,0.08244698,0.048403203,0.016922494,-0.07134379,-0.18585855,-0.3514009,-0.28721416,0.10481025,0.052571084,-0.10279349,0.27026102,-0.2796725,0.38086668,0.19512646,1.7698922,0.06639911,0.09419597,0.011945675,0.2827605,0.24157077,-0.25073877,-0.28141534,0.31442994,0.4178826,0.09578942,-0.51766497,0.31311384,-0.111764774,-0.50898874,-0.07412654,-0.34437153,-0.23008196,-0.21933553,-0.6100624,-0.023013212,0.03310906,-0.22766942,0.46213335,-2.785773,-0.24024637,-0.12160066,0.36827692,-0.29594773,-0.35799688,-0.27592036,-0.25071377,0.07641487,0.50874263,0.34274894,-0.7189826,0.36465338,0.2679572,-0.36078814,-0.09900802,-0.48310485,-0.18708947,0.14878228,0.11635113,-0.11268295,0.034505542,0.003649794,0.44884926,0.51637834,0.01900418,-0.09726494,0.20683624,0.53960073,0.08422288,0.48394525,0.0053063747,0.5282661,-0.19556847,-0.11715314,0.40835983,-0.39695734,0.3373794,0.11131582,0.2499343,0.35939044,-0.36374468,-0.899459,-0.57220805,-0.31830075,1.2256334,-0.4035021,-0.2543547,0.23498361,-0.1365578,-0.2578721,-0.046923574,0.4438538,-0.016480394,-0.16739509,-0.77634394,-0.13773154,-0.052130178,0.22688964,-0.020135237,-0.041505676,-0.2331126,0.6297182,-0.0058293203,0.5582177,0.3984751,0.14481264,0.071127996,-0.56445825,0.08936406,0.6302192,0.32559088,0.22767133,-0.17178954,0.048028152,-0.25731856,0.118246004,0.1296694,0.459532,0.7142481,0.0764916,0.25826314,0.28926295,0.028142361,0.017538745,-0.030111028,-0.23678988,-0.029719405,-0.04376871,0.40841436,0.79002225,-0.30724138,0.2737892,-0.16419117,0.11343467,-0.17429979,-0.5624536,0.65365696,0.85480225,-0.21730043,-0.12323756,0.30822402,0.30098736,-0.34449452,0.32786167,-0.6293841,-0.1332263,0.4849952,-0.121499576,-0.23853882,0.30058515,-0.2569004,-0.031160366,-1.0031046,0.13035509,0.04634607,-0.29803762,-0.44062263,-0.13319013,-3.8546262,0.17800514,-0.15823385,-0.30752066,-0.18794395,-0.11662921,0.5205289,-0.72039616,-0.68713444,0.07891457,-0.045471072,0.5396636,-0.03850166,0.17212875,-0.3740702,-0.17050654,-0.1623001,0.18627074,0.105902284,0.31391206,0.10866996,-0.42882687,-0.13626072,-0.13494833,-0.5535409,0.079384595,-0.5859306,-0.5671108,-0.167015,-0.44781816,-0.13075279,0.65710026,-0.26706177,-0.100475624,-0.16819248,-0.041592777,-0.31861386,0.36433014,0.07909175,0.055485018,0.028309971,0.069614775,-0.12661296,-0.27387062,0.19283369,0.13293782,0.26333362,0.29755887,-0.28176948,0.18392897,0.64401424,0.650986,-0.04411375,0.5502637,0.38270423,0.01917217,0.40715155,-0.24979003,-0.11867054,-0.6099328,-0.26243553,-0.2658106,-0.40123194,-0.51313287,-0.18456878,-0.35621977,-0.81157434,0.2558603,-0.087371096,0.17256406,-0.01107817,0.1563176,0.49420038,-0.31665665,0.10768938,-0.057693098,-0.24901077,-0.52834195,-0.38146728,-0.5270251,-0.6300933,0.3842471,1.1093332,-0.17112626,-0.060245767,-0.052250262,-0.33452857,0.019315593,-0.038352575,0.15066266,0.18383534,0.18486819,-0.21114364,-0.7059049,0.43013003,-0.25846404,-0.15410699,-0.65034986,0.024059048,0.52936757,-0.5142403,0.5050452,0.21646562,0.12608257,0.1818373,-0.54054606,-0.24167325,0.031725228,-0.116741896,0.5363549,0.2988265,-0.61337346,0.41083467,0.20577511,-0.14786649,-0.52696896,0.5293007,0.01617633,-0.13373922,-0.050750785,0.25981307,-0.009714266,-0.041406844,0.00935909,0.17656612,-0.5289058,0.21473667,0.39923924,0.047809236,0.40362102,0.14614004,0.10620949,-0.5514539,-0.07369269,-0.41496673,-0.15571769,0.17280348,-0.02155423,0.38857645,-0.06513883,0.15304272,0.3637275,-0.3208939,0.10024476,0.11148059,-0.29748318,0.23908521,0.5016986,0.4041267,-0.4462994,0.38478342,0.019823859,0.17648548,0.2553176,0.17363968,0.49346623,0.4265246,0.21864134,-0.105757125,-0.13575037,0.19634192,0.6596471,0.10396635,0.29045746,0.08176903,-0.23836938,0.2635217,0.17146876,0.19724265,-0.15351209,-0.41418302,-0.018977843,-0.016856235,0.3155268,0.4805147,0.0885718,0.21681312,-0.19383945,-0.31380588,0.21087044,0.13096382,-0.026635386,-1.0763967,0.23009561,0.32640073,0.73508173,0.41796872,0.0065369513,0.052920163,0.22781955,-0.21476632,0.23201388,0.509407,0.004526762,-0.6044523,0.55267435,-0.5550085,0.40292642,-0.12303492,-0.10641094,0.19551522,0.21480507,0.4261341,0.8452019,0.024205161,0.04040154,0.1708734,-0.39839157,-0.089600295,-0.38183865,0.04464394,-0.74748874,-0.14077783,0.57417417,0.5408398,0.227492,-0.45731786,-0.103142075,-0.060286883,-0.111513495,0.07719595,-0.038405236,0.047966726,-0.09802704,-0.69040257,-0.44303843,0.5046133,-0.047136646,0.008536767,-0.040316902,-0.5135015,0.1189398,-0.16952607,-0.1364354,-0.034306843,-0.8693666,-0.03255334,-0.32242626,-0.527627,0.4431388,-0.0894537,0.088250235,0.17463714,0.03251829,-0.37173754,0.35134125,0.046909627,0.9406162,-0.052427173,-0.1221938,-0.55030906,0.22258955,0.39270127,-0.22557057,-0.31932878,-0.3992965,-0.006061534,-0.13863996,0.4239464,0.0798107,-0.18551207,0.104624115,-0.06970461,0.16802181,0.41080725,-0.24115291,-0.16954687,-0.10567402,0.026432395,-0.4102206,0.078636274,-0.40950865,0.3326267,0.15524796,-0.02443547,0.115768865,0.040615007,0.022305112,0.19795993,0.28581172,0.3024634,0.53339964,-0.113181114,-0.35938406,-0.10289614,0.16636251,0.39562672,0.096799955,-0.19829275,-0.5680693,-0.48714367,-0.31149906,0.24458303,-0.24251267,0.26334518,-0.038503535,-0.40313962,0.7005241,0.23886864,1.0959735,-0.068611465,-0.21812584,0.11637715,0.4113421,0.19956627,-0.09252139,-0.35294473,0.8688921,0.51923126,-0.15709901,-0.32248205,-0.081926934,-0.30947113,0.23715934,-0.28349292,-0.07006268,-0.2000892,-0.8448034,-0.14424962,0.16368856,0.1485912,0.14387348,-0.012866745,0.04350744,0.11468831,0.08270575,0.289096,-0.41595384,-0.18994966,0.2405749,0.28278166,-0.021932097,0.21806255,-0.4083126,0.44622883,-0.5654306,0.09787187,-0.5335096,0.0712545,-0.038637932,-0.2276539,0.09691828,-0.005203531,0.33906493,-0.24059154,-0.34578726,-0.4023081,0.63249457,0.20737761,0.370878,0.744012,-0.22018598,-0.086691275,0.1325888,0.46700874,1.1183095,-0.023062166,0.010863524,0.39977133,-0.3029838,-0.630043,0.0189829,-0.2804132,0.44958904,-0.16106743,-0.16742116,-0.4357788,0.36103395,0.06287434,0.09818191,0.066360705,-0.5821713,-0.25674558,0.4255096,-0.3242386,-0.27679074,-0.36531323,0.15298764,0.6454543,-0.4123203,-0.29553074,0.13902806,0.29071018,-0.15193847,-0.45535567,0.044549625,-0.49166125,0.25696608,0.1345803,-0.33484906,-0.065451115,0.0772064,-0.3417456,0.27625805,0.24196583,-0.26392132,0.04605089,-0.25679573,-0.14166485,1.0332605,0.04739976,-0.0792474,-0.7478791,-0.47579062,-0.9373775,-0.4339466,0.2820502,0.16810696,-0.1622982,-0.6191069,0.06846878,-0.09806288,0.042660985,-0.11184808,-0.3072317,0.5392312,0.10664903,0.4502578,0.050145403,-0.91059846,0.0360161,0.116913766,-0.4058684,-0.57328135,0.61969787,-0.10234405,0.64039654,0.06501717,0.05942836,0.17541605,-0.53431237,0.211607,-0.46222872,-0.06285615,-0.63799626,0.18569122 +945,0.5018525,-0.05673449,-0.40329766,-0.35623217,-0.3514842,0.12833655,-0.19576971,0.110070296,0.34679374,-0.5712886,-0.15429275,-0.04075982,-0.03990066,0.51649195,-0.22711174,-0.86644936,-0.017854994,0.06865765,-0.58266217,0.41394392,-0.56078166,0.22045851,0.040364567,0.43953958,-0.2951479,0.16831015,0.5162225,-0.04610609,0.07080113,-0.15063153,0.109286845,0.11320001,-0.87846094,0.30369362,-0.095465384,-0.25286007,0.012521054,-0.72034764,-0.09983573,-0.769196,0.4647638,-0.8798342,0.58686554,-0.0843052,-0.28219256,0.04668249,0.22240971,0.05408753,-0.12540048,-0.08680568,0.29676822,-0.33488014,-0.24292612,0.10998118,-0.35810176,-0.52958983,-0.696482,0.08103488,-0.65841246,-0.1955923,-0.3729564,0.17263901,-0.35709313,0.026286462,-0.20996828,0.63011175,-0.45697126,-0.12464592,0.36861792,-0.33400884,0.07900948,-0.5828487,-0.15568207,-0.15623952,0.31123504,0.0026606247,-0.18627568,0.50846684,0.34827176,0.6047493,0.21307676,-0.3949543,-0.20652825,-0.087103404,0.23702562,0.59899914,-0.022034913,-0.3339359,-0.26331472,-0.024945071,0.25727317,0.17170517,0.16798835,-0.27310136,0.10973292,0.12876879,-0.032619696,0.6983757,0.4949658,-0.42650792,-0.29777387,0.34367296,0.3815559,-0.032569867,-0.049836148,0.08414355,-0.10834048,-0.5414159,-0.33220056,0.11815251,-0.13173306,0.5558733,-0.079794325,0.05030054,0.8147003,-0.32946193,0.035266723,-0.20679307,-0.28043196,0.13530238,-0.34776023,-0.053794295,0.34224483,-0.39823022,0.06877771,-0.24984433,0.6001254,0.24031931,-0.8071313,0.34354195,-0.37161407,0.15473051,-0.027511701,0.7571895,0.7937191,0.48457217,0.4345092,0.9800944,-0.40305606,0.042702883,0.20220132,-0.20942074,0.0258782,-0.27286795,0.29467526,-0.28799823,0.2341003,0.095974915,-0.055533666,0.11669382,0.34573603,-0.4180824,-0.03906168,0.09696128,0.6551414,-0.27484378,-0.16342537,0.9460376,1.2720946,1.083795,0.09209916,1.6563493,0.14538775,-0.08276489,0.09783548,-0.021608269,-0.74479,0.13604361,0.46668682,0.6165018,0.4026148,0.08365974,-0.06302657,0.35626206,-0.5235765,-0.2728184,0.057400268,0.3599192,0.09573803,-0.18019366,-0.50255036,-0.11509272,0.23821227,0.0638923,-0.0052598887,0.3409516,-0.17712744,0.47226024,0.10013873,0.8551416,0.0060634017,0.11934296,0.034025554,0.33339584,0.12152806,-0.19959502,0.14499176,0.29206058,0.16553004,0.047506083,-0.6938978,-0.027260842,-0.5015406,-0.4851311,-0.34228912,-0.5147636,-0.119850494,-0.22514905,-0.16035849,-0.26345655,-0.15756893,-0.4173293,0.36072764,-2.3716106,-0.29409808,-0.3318182,0.4657692,-0.19282164,-0.2134224,-0.18516254,-0.64244175,0.41273132,0.43531027,0.5004081,-0.55206776,0.49763182,0.414986,-0.67968696,-0.11303604,-0.776789,0.07476213,-0.13812833,0.5200767,0.0046214364,-0.360144,-0.32294008,0.34515008,0.79233384,0.50524473,0.11124009,0.20604783,0.59238297,-0.14708097,0.502584,-0.17940728,0.56101775,-0.25840458,-0.05704094,0.45463374,-0.49104962,0.32083952,-0.37608054,0.033991043,0.6231667,-0.51509064,-1.0721421,-0.81901914,-0.57015496,1.1948539,-0.41430256,-0.6703143,0.45553008,-0.16335161,-0.11755362,-0.044158276,0.6168348,-0.11263477,0.20006716,-0.6401556,0.20156896,-0.20894052,0.02417934,-0.10391486,0.34533966,-0.5342428,0.7674942,-0.23013961,0.4828333,0.2624502,0.15980105,-0.1683942,-0.19124456,0.08028036,0.7405328,0.45621848,0.15191674,-0.14518747,-0.07698051,-0.15290941,-0.4240248,-0.06419466,0.94223386,0.6056488,-0.078394115,-0.036940813,0.20219187,-0.13686457,0.16799103,-0.11334634,-0.25849426,-0.2081757,0.075361975,0.71014816,0.6958151,-0.46035123,0.0445426,-0.11574253,0.3273411,-0.04339214,-0.49467853,0.35095808,0.71856815,-0.19240178,-0.020688688,0.790649,0.5396283,-0.5235297,0.531207,-0.64106965,-0.28586838,0.8491408,-0.003452748,-0.547381,-0.3071937,-0.24362762,0.014615645,-0.65934,0.2848099,-0.26741233,-0.7812632,-0.2163785,-0.23154251,-3.1796367,0.2346642,-0.26939812,-0.040886506,-0.21864821,-0.104997106,0.24616326,-0.5865357,-0.65091664,0.07260849,-0.04346584,0.5565268,-0.21261542,0.17685187,-0.3325549,-0.19974883,-0.19657142,0.32965985,0.033327308,0.34616065,-0.041161884,-0.2545164,0.105173804,-0.12477087,-0.6172337,-0.07504793,-0.5644217,-0.56865436,-0.19374482,-0.49863115,-0.20405316,0.76234895,-0.38835326,-0.124553286,-0.3110485,0.1330433,-0.2571742,0.2625716,0.007902329,0.41941917,0.087166406,-0.06730042,-0.1527294,-0.09976268,0.6704564,0.07327823,0.47227982,0.4020374,-0.25208318,0.19987448,0.42632294,0.67503715,0.038090236,1.0585493,0.29419354,-0.013898787,0.3686755,-0.15291485,-0.38924417,-0.8767622,-0.43515667,0.0704949,-0.44040796,-0.5529074,-0.07481861,-0.4655302,-0.886136,0.482874,0.08280229,0.34452948,-0.24320465,0.16168408,0.26110327,-0.32384428,0.12711243,-0.1287843,-0.052981537,-0.7004245,-0.34841123,-0.71251756,-0.6255448,-0.09501406,1.1271303,-0.063922316,-0.27319312,0.11045935,-0.27783272,0.11307507,0.13407399,0.27787575,-0.07110431,0.56729513,0.07603424,-0.82481664,0.44528142,-0.1339107,0.023289422,-0.6465898,0.25209594,0.6204348,-0.5536464,0.77888393,0.39675787,0.30509365,0.08158066,-0.6913007,-0.31098744,-0.05219284,-0.05648036,0.52058524,0.18428724,-0.9223809,0.5172624,-0.11077809,-0.31892908,-0.6277363,0.50703,-0.16641389,0.12141153,0.11784059,0.42462435,0.18765609,-0.19519329,-0.16722424,0.28277123,-0.51634896,0.4995997,0.2085315,0.18689401,0.72321194,-0.16361861,-0.4307791,-0.8257079,-0.20335943,-0.6064807,-0.22711396,-0.02660645,-0.1431879,-0.100133084,0.16489346,0.16089225,0.559799,-0.20495756,0.22671014,-0.06674672,-0.58094454,0.43673754,0.57180786,0.565782,-0.6582528,0.7480576,0.07394246,-0.08020016,-0.18044512,0.093832545,0.4563633,0.072510965,0.35811213,-0.04917055,-0.048320625,-0.109248705,0.7750995,0.18966268,0.23371327,0.22453894,-0.19714652,0.69859976,0.0006772007,0.2114247,-0.10624366,-0.73297507,0.10742852,-0.13133515,-0.06864341,0.48273805,0.22884321,0.39548168,-0.045296907,-0.13281389,0.12502052,0.085496984,-0.12868752,-1.4359903,0.14884531,0.18881983,0.8168791,0.51356804,-0.029750595,-0.0061029494,0.65751666,-0.16990001,-0.10764774,0.6068497,-0.05771904,-0.53831625,0.7204725,-0.5836404,0.57557166,-0.28521085,-0.06136164,0.12085771,0.30157885,0.42701736,0.90566796,-0.21082877,-0.102459095,-0.20000096,-0.12123954,0.30704808,-0.39345217,0.07716115,-0.4560542,-0.26030958,0.7458318,0.4760634,0.3039566,-0.24223296,-0.0010329945,0.21226732,-0.22050394,0.34706888,-0.1770215,-0.259217,-0.23690958,-0.7397242,-0.19107813,0.4546087,0.0005500267,0.15129666,0.20443535,-0.26674524,0.09508073,0.023089387,-0.26561803,0.0015825698,-0.78679687,-0.19206727,-0.28873852,-0.5905614,0.2441395,-0.33492768,0.16293709,0.27550742,0.097275674,-0.2855892,0.02099663,0.16197507,0.78314334,0.022572747,-0.18784648,-0.3693662,-0.041548807,0.31713852,-0.4521276,0.38563785,-0.29514447,0.15506199,-0.47181496,0.65005213,-0.22100186,-0.20359199,0.10324413,-0.10391903,-0.06680123,0.4760147,-0.15236114,-0.0041172574,0.19137055,-0.2260227,-0.1892374,-0.2213307,-0.39094117,0.28238004,-0.040406395,-0.06080231,0.047849264,-0.15921329,0.040097903,0.43346894,0.07795157,0.09146059,0.16368224,-0.070037834,-0.42186823,0.020882512,0.1166096,0.5910558,0.1342551,-0.092334926,-0.23368078,-0.41689324,-0.20194484,0.48113072,-0.06792232,0.12491011,0.009386569,-0.3725557,0.68688256,0.17523164,1.1931065,-0.031754013,-0.4385701,-0.032849755,0.79352903,0.05390358,-0.021949073,-0.45500383,1.0166119,0.4271501,-0.14277552,-0.15593497,-0.7706595,-0.11366219,0.26034224,-0.26574662,-0.24785154,-0.2630995,-0.77560145,-0.16935344,0.1315789,0.09782157,0.2004515,0.0013031512,0.072716124,0.014500921,0.23813121,0.5049211,-0.6033317,-0.24619631,0.4133215,0.1987866,0.05829124,0.12829672,-0.22058636,0.34766865,-0.7736418,0.22916079,-0.3964928,0.05566597,-0.26552406,-0.24040346,0.23380367,0.12220293,0.49390635,-0.026991853,-0.38175598,-0.07967052,0.4955388,0.09091214,0.27778164,0.824578,-0.2868372,-0.23359184,0.021515632,0.56636477,1.6268415,0.05433276,0.47416446,0.07056854,-0.43225527,-0.6446969,0.15804985,-0.51125985,0.06791598,-0.09609733,-0.26628464,-0.46677613,0.041200563,0.039464176,-0.18896861,0.21556467,-0.59463453,-0.4748577,0.24110109,-0.37921157,-0.19112617,-0.3863741,0.244989,0.93621427,-0.33451757,-0.25125733,0.13213019,0.3297375,-0.0623406,-0.8115087,-0.02300935,-0.20176506,0.38121262,-0.13660844,-0.41638395,0.01310607,0.18750282,-0.49031627,0.2056321,0.19422428,-0.38928714,0.07588766,-0.3479043,-0.026775578,1.0854625,0.13757871,0.3737372,-0.5975926,-0.669405,-0.99105865,-0.25499997,-0.12080321,0.0900474,-0.10951411,-0.2264276,-0.23454468,-0.049189508,0.10145578,0.042382002,-0.672694,0.21001768,0.057657544,0.60188466,-0.14819609,-0.8643856,-0.08580625,0.15857397,0.19135761,-0.50092655,0.32976386,0.027947113,0.70288706,0.17103465,-0.018970026,-0.15953855,-0.6262594,0.29031536,-0.3730807,-0.11888337,-0.43288672,0.2457627 +946,0.32481197,0.011607647,-0.50352204,-0.072180815,0.038998544,0.10440359,-0.15036309,0.14022999,0.21562424,-0.41741523,0.030693308,-0.17495392,0.021057572,0.34395048,-0.17433837,-0.677925,0.017476724,0.16211717,-0.28988814,0.3024004,-0.48776224,0.3945207,-0.042960893,0.18099608,-0.19664635,0.19966975,0.4322743,-0.122304015,-0.14667585,-0.2761836,0.094974294,0.18108848,-0.5992133,0.23557952,0.14460003,-0.32716078,0.097461216,-0.27060443,-0.37480205,-0.52578145,0.32714763,-0.73815566,0.52737427,0.24131183,-0.1074426,0.21833737,0.13429372,0.22443001,-0.31848326,0.17873558,0.13319682,-0.17092974,-0.088131845,-0.24939987,-0.27557537,-0.21097663,-0.49003473,0.010689578,-0.44689175,-0.1249057,-0.40637377,0.10896653,-0.40555552,0.017257173,-0.17973062,0.30921003,-0.37742758,0.01653908,0.2668834,-0.26919934,0.24610092,-0.2679293,-0.09239401,0.00053199485,0.059228476,-0.3002827,-0.0741735,0.19465575,0.14095919,0.43996096,-0.028761348,-0.148249,-0.2911246,-0.24659573,0.2770039,0.6092066,-0.19580944,-0.38400322,-0.12179928,-0.009225952,-0.13799939,0.13797292,-0.038919974,-0.37669674,-0.052024383,0.053771503,-0.28281972,0.33215886,0.52675873,-0.23391096,-0.1980077,0.39043984,0.29965216,-0.21388957,-0.018310426,0.20816419,0.15640496,-0.522283,-0.2508442,0.074929334,0.06862747,0.40208647,-0.05360284,0.33565637,0.6449613,-0.42059138,0.007702078,-0.037553847,0.01875405,-0.026781917,-0.3173403,-0.18001893,0.26662058,-0.4175539,0.0059110946,-0.097460985,1.0355021,0.059909515,-0.8482197,0.43902665,-0.4043305,0.09891661,-0.15768231,0.5699088,0.3544806,0.25828487,0.16725476,0.68394405,-0.62764037,0.08931891,-0.03891662,-0.6021937,-0.022495074,0.10921766,-0.23021376,-0.3348392,-0.022955963,0.30017525,0.07216792,0.14672367,0.35130462,-0.3722233,-0.092800654,0.021972569,0.84962314,-0.35372704,-0.06362915,0.47641724,1.1249714,0.74752766,0.03819927,1.144314,0.29006213,-0.12851441,-0.10868498,-0.19837774,-0.8950914,0.19391575,0.23676832,-0.26070204,0.28481093,0.15442726,-0.15304302,0.17720218,-0.38567585,-0.06868149,-0.10979348,0.37496647,-0.10663407,-0.072456725,-0.3872336,-0.077012815,0.10536886,-0.114611864,0.23092738,0.21411125,-0.1983056,0.17904806,0.121176854,1.532343,-0.044942237,0.24984454,0.07625913,0.4189516,0.3143766,0.02468991,-0.16547082,0.30126914,0.33716002,0.0830456,-0.5282565,0.05188625,-0.023884919,-0.43044788,-0.2028284,-0.2788636,0.074443884,-0.16980942,-0.32980868,0.022140415,0.013528122,-0.47867987,0.4461956,-2.871178,-0.043001533,0.024263961,0.28545353,-0.230734,-0.2083937,-0.20671943,-0.34533837,0.40317065,0.42013577,0.40071043,-0.57561886,0.31807283,0.4887174,-0.19046526,-0.1349876,-0.50679505,0.0901771,-0.21550485,0.28174067,0.08170663,-0.05770445,-0.1691109,0.20706585,0.3487391,-0.17419152,0.045710888,0.2485049,0.33395788,0.20091058,0.2960222,0.09047334,0.5052376,-0.38281757,-0.11436277,0.34226927,-0.3007725,0.1192153,0.007430896,0.11132475,0.15684332,-0.3382101,-0.8350722,-0.4431176,-0.3507836,1.1545277,-0.27960178,-0.28696615,0.37990332,0.101717286,-0.38354227,0.03963129,0.35255042,-0.21358427,0.011477432,-0.8175122,0.19204998,-0.110039815,0.3847025,0.0796266,-0.046380155,-0.38445696,0.5187775,-0.1716738,0.5379492,0.47219244,0.13022855,-0.33594465,-0.47947383,0.20327449,1.0710162,0.12294846,0.2026889,-0.18909647,-0.12002279,-0.16629277,-0.10337294,0.027001783,0.4507702,0.8364716,0.018356385,0.0540803,0.32797357,0.06055054,-0.03510144,-0.044932555,-0.3125575,-0.035317387,-0.15960215,0.6177029,0.3887727,-0.2684933,0.37015983,-0.12688448,0.34871206,-0.30583522,-0.2647211,0.5164517,0.7057981,-0.086115405,-0.3312057,0.6131999,0.5022164,-0.2964231,0.39277253,-0.5877177,-0.2813912,0.39272457,-0.19494794,-0.35186005,0.3018892,-0.3101155,0.07480308,-1.0066923,0.33869484,-0.15480505,-0.42824632,-0.45633927,-0.24808083,-4.3351054,0.09261335,-0.25865135,-0.18879405,-0.010040879,0.1077215,0.2997233,-0.3423333,-0.36528125,0.12196588,0.12046635,0.56228846,0.041455735,0.22624636,-0.21321407,0.13524751,-0.2310654,0.16725422,0.12681755,0.09045633,0.100290455,-0.45868307,-0.1538838,-0.19465293,-0.50822204,0.17248532,-0.4921866,-0.32424736,-0.0920607,-0.5892953,-0.4939435,0.6078419,-0.46772394,0.008873999,-0.30535516,0.007266578,-0.14014885,0.45804578,0.07349758,0.108649015,-0.173891,-0.021295158,-0.079745665,-0.25968868,0.4426596,0.031857185,0.32574016,0.38572755,-0.26301497,-0.08174612,0.37865424,0.42064068,0.15659797,0.63840103,0.31287006,-0.118327364,0.28110558,-0.31818834,-0.12924509,-0.52334034,-0.4280383,-0.09920518,-0.46086076,-0.42479306,-0.17097129,-0.35977703,-0.69356406,0.61624604,-0.04020043,-0.034126844,-0.050901264,0.2745813,0.20175481,-0.031287167,-0.04860804,-0.05820947,-0.1483327,-0.2727912,-0.3306412,-0.6689302,-0.34007758,0.09027525,0.8030526,-0.14459464,0.025452277,-0.047716107,-0.0141936885,-0.049177263,0.10661862,0.2508607,0.44180915,0.42181233,0.013248175,-0.58371437,0.5548901,-0.34042555,-0.21747069,-0.6438283,-0.04378134,0.59600055,-0.74624777,0.49617568,0.3845341,0.2511677,0.10443822,-0.39891386,-0.3155271,0.030598832,-0.20576267,0.4753869,0.15077151,-0.81529844,0.52641964,0.31360933,-0.19651672,-0.64981186,0.43665808,0.09265045,-0.29081067,-0.008091935,0.3213742,-0.20982814,0.040276133,-0.23507203,0.14612672,-0.35550144,0.19597699,0.09604082,-0.08786812,0.65063745,-0.15782735,-0.10680527,-0.50134593,-0.04981152,-0.44511032,-0.24770005,-0.017890066,0.033300318,-0.074266456,0.26576835,-0.33699363,0.44846442,-0.37167913,0.057698976,0.09825007,-0.24348663,0.49175972,0.3803828,0.31194323,-0.31416026,0.6969667,-0.12942518,-0.005983395,-0.24741422,0.18480276,0.5581532,-0.008744283,0.37128884,0.08298846,-0.050842676,0.42306146,0.6292781,0.2369829,0.5365508,0.2034951,-0.004816796,0.2989211,0.16421954,0.08322949,0.23657963,-0.27337745,-0.12061107,-0.069611184,0.20910566,0.42177302,0.1748749,0.63259125,-0.2146056,-0.3477494,0.13047531,0.28432545,-0.18554915,-0.9142705,0.37663412,0.071387336,0.50310373,0.51551265,0.029115887,0.19187653,0.37776986,-0.13106832,0.25384817,0.073846065,-0.09095138,-0.437874,0.4957644,-0.42972466,0.33058098,-0.07723701,0.0005984775,0.10638575,-0.09520394,0.3842999,0.7439011,0.057771597,0.18067154,0.08222739,-0.2582312,0.03870492,-0.3299963,0.33550435,-0.32736316,-0.1894976,0.596518,0.46523666,0.24094321,-0.14166561,-0.10436293,0.1033183,-0.019084398,-0.032194417,-0.020182954,0.10098435,0.030153776,-0.70566833,-0.40040135,0.6433341,0.32916003,-0.011681204,-0.030266438,-0.16319343,0.3361195,-0.15563083,-0.039324403,-0.060019184,-0.49474296,0.13055839,-0.23297802,-0.37704495,0.28308138,-0.4350265,0.32021254,0.1541306,-0.059777614,-0.4516081,0.20424436,0.3647106,0.5682885,0.03536531,-0.20734707,-0.31873918,0.0014565757,0.27303648,-0.26655373,-0.20295797,-0.37622467,-0.013396316,-0.66421026,0.30880335,-0.06624354,-0.24969295,0.20125988,-0.16015768,-0.04840256,0.5789779,-0.06823792,-0.08259193,0.15774365,-0.1298641,-0.27415746,-0.19834733,-0.21610744,0.22273234,0.20351502,-0.12624227,0.09173543,0.027419958,-0.27864882,0.15780203,0.095823206,0.2874251,0.29502693,0.24435772,-0.292603,-0.079091296,-0.039757438,0.5813819,-0.05788378,-0.0072407895,-0.22022417,-0.36695144,-0.11288323,0.088261366,-0.2216144,0.11559475,0.06894721,-0.42349476,0.7523457,0.12224739,0.9037784,0.02880654,-0.2308857,-0.056923848,0.47506112,0.026932253,0.043518357,-0.39701006,1.0818132,0.6028946,-0.23718642,-0.31247085,-0.29830346,-0.07289859,0.04368039,-0.18845494,-0.42552444,-0.034555282,-0.5749118,-0.39562538,0.18271838,0.3314382,0.06538621,-0.013056149,0.09015084,0.14854418,0.10803662,0.15283643,-0.5439698,0.11038574,0.25361988,0.27530903,0.14620273,0.083498314,-0.4512115,0.42073584,-0.5252019,0.04395017,-0.29499006,0.076342866,-0.054557443,-0.13460433,0.14908382,0.03470226,0.2880952,-0.27972084,-0.11234482,-0.14620633,0.381403,0.16064633,0.20744184,0.7677539,-0.11260922,0.16719782,0.15702297,0.55425817,1.0866134,-0.20357434,-0.12117605,0.48967028,-0.23604794,-0.6717998,0.169737,-0.27061886,0.08440889,-0.2179935,-0.4034541,-0.42874813,0.25065354,0.053965908,-0.017707732,0.20885767,-0.46795136,-0.2583994,0.3212283,-0.25658444,-0.2956414,-0.3228697,0.045604263,0.6635276,-0.2165386,-0.1277129,0.050889738,0.2633417,-0.25613874,-0.6187831,-0.15017454,-0.18506674,0.2682427,0.17348294,-0.11150094,-0.041996695,0.07996159,-0.26304027,0.24139714,0.40398842,-0.37390688,0.05837544,-0.1827489,-0.14074111,0.6271681,-0.31985217,-0.053607773,-0.74266785,-0.4762954,-1.0055196,-0.34571838,0.67399114,-0.018276375,-0.025889557,-0.37813753,-0.12907088,-0.02287039,-0.12622988,-0.13861719,-0.4153661,0.36155096,0.04383702,0.4305757,0.023384247,-0.78645986,-0.13578174,0.13470562,-0.43306494,-0.5963316,0.6866149,-0.07647101,0.6336538,-0.025531352,0.060501847,0.5593791,-0.61275446,0.0725903,-0.26229224,-0.16366088,-0.64579266,0.10675849 +947,0.4620255,-0.3336522,-0.38747963,-0.14516695,-0.27364653,0.0923826,-0.025304334,0.7525312,0.21343899,-0.14352667,-0.19283526,-0.1250948,0.1530096,0.51712203,-0.10478521,-0.43011,-0.057805378,0.09809502,-0.6587363,0.49454,-0.35267323,0.0063921395,-0.17785197,0.43838373,0.4078899,0.2495947,-0.06376739,0.13864547,-0.0133784,-0.035402756,-0.12652084,0.29492408,-0.27617168,0.21002564,-0.053292606,-0.2198422,-0.17275156,-0.6562749,-0.36370867,-0.7189557,0.5175917,-0.76828766,0.41705757,-0.10634501,-0.2115102,0.4898763,0.14235114,0.31200266,-0.320626,-0.32379696,0.14502588,0.061991308,0.0035472834,-0.1967192,0.05178293,-0.09963727,-0.49053332,-0.09486472,-0.27467564,-0.33787948,-0.25208634,-0.0052981805,-0.2846954,0.0664775,0.08392501,0.6500317,-0.35698277,0.27167416,0.18544905,-0.13554482,0.092649296,-0.6138266,-0.19784838,0.0053483224,0.3112421,-0.1006944,-0.26384044,0.38820055,0.24781606,0.12884717,-0.18916747,-0.07200415,-0.23680128,-0.07340648,0.07459148,0.5142117,-0.12972094,-0.6939188,-0.017384373,0.12494621,-0.019605644,0.26905677,0.25980493,-0.10225087,-0.2326054,0.04360817,-0.1632142,0.43545672,0.329361,-0.15662383,-0.18663722,0.40582812,0.49226445,0.30725527,-0.12493282,-0.24709596,-0.033198114,-0.56485265,-0.025931166,-0.1808917,-0.1958217,0.43222365,-0.093251295,0.32811072,0.6245361,-0.0057402113,-0.11024892,0.12890564,0.14541107,-0.13060649,-0.3635171,-0.2949714,0.18396963,-0.3593933,0.28675237,-0.013508008,0.6582568,0.28590736,-0.6196285,0.36900395,-0.5288063,0.14098826,-0.13739344,0.22912754,0.726842,0.39243367,0.29503042,0.60526025,-0.25723454,0.061769065,-0.16808893,-0.31763092,-0.029611556,-0.19554034,0.08723442,-0.60565203,0.023424588,-0.06790661,-0.15736485,0.18923858,0.15432447,-0.47720015,-0.088415846,0.12931028,0.81468934,-0.26395994,-0.120891996,0.86008996,1.0936083,0.9032142,-0.023192255,0.80767214,0.08214359,-0.19050018,0.4418387,-0.18588161,-0.64379543,0.25172764,0.4564047,-0.043291263,0.11018184,-0.10830032,-0.0015512086,0.33789495,-0.2544146,0.008938184,0.012336057,0.27258748,0.4476647,-0.12042691,-0.39851686,-0.36356786,-0.19148803,0.006088972,0.024127774,0.18354024,-0.14690992,0.49923265,-0.09721657,1.7816083,0.17438558,0.0764531,0.11851385,0.5401267,0.22728752,-0.264592,-0.373758,0.33791244,0.3892418,0.11924553,-0.60275686,0.40308857,-0.21858343,-0.38021776,-0.042133763,-0.5625463,-0.1821743,-0.022614025,-0.3092955,-0.17560251,-0.1489308,-0.118762165,0.44872338,-3.2687507,-0.19193453,-0.07233132,0.34267914,-0.21131057,-0.32831177,0.09657158,-0.43616915,0.41079757,0.2890731,0.5317541,-0.46617648,0.27423382,0.2708876,-0.7264821,-0.2221811,-0.45651194,-0.11670187,0.15684032,0.32672197,-0.1069539,-0.08170243,0.1063056,0.22960837,0.48773143,0.045818754,0.16023827,0.373743,0.33968312,-0.09135453,0.6126017,-0.4057255,0.5191308,-0.24739161,-0.10543333,0.120966986,-0.24698733,0.22374307,-0.21955885,0.13788454,0.5946398,-0.36714104,-1.0518993,-0.5632556,0.11855741,1.1618663,-0.25330368,-0.300283,0.37370422,-0.64131653,-0.05995264,-0.15888868,0.39963058,-0.028616332,-0.18761803,-0.6337238,0.13505092,-0.018699776,-0.09010513,-0.045292266,-0.28012672,-0.3837853,0.6126633,0.076435484,0.52709824,0.23192427,0.052338798,-0.3749884,-0.27740702,0.09123802,0.3681952,0.34547094,-0.010213063,-0.0066423784,-0.122580715,-0.36791593,-0.21662313,0.15155905,0.5249915,0.41356128,-0.028508268,0.30757868,0.12435711,-0.052348163,0.08443442,-0.1309641,-0.15515406,-0.13671125,-0.046035,0.4835365,0.668126,-0.111535564,0.64429945,7.381806e-06,0.16089013,-0.029426757,-0.41869995,0.535388,0.8805009,-0.1886184,-0.4285041,0.40762097,0.35905713,-0.1510007,0.24366692,-0.25599423,-0.063298024,0.6636188,-0.27909103,-0.37078416,0.12808064,-0.13203011,-0.049912576,-0.68183327,0.06725981,-0.32930377,-0.611992,-0.40523928,-0.07719779,-3.0338864,0.097256035,-0.17908737,-0.2984608,-0.2263284,-0.27889362,0.0036922486,-0.5999332,-0.58251417,0.29981977,0.08336219,0.8779498,-0.12963778,0.017918877,-0.14682773,-0.2969003,-0.28556368,0.08026947,-0.080080524,0.49321076,-0.023156065,-0.40258107,-0.046569373,-0.028672457,-0.6226212,0.13498323,-0.44802874,-0.2512191,-0.11237425,-0.5387546,-0.37340996,0.6634341,-0.18729459,0.11614284,-0.08954922,0.03000512,-0.080001995,0.21131016,0.031113936,0.12720877,0.087272644,-0.08271174,0.22608946,-0.20368645,0.24305223,0.06886157,0.39289874,0.117659084,-0.01223212,0.35649157,0.44335905,0.6939065,-0.059240304,0.7603314,0.4276388,-0.005151932,0.2842422,-0.3598803,-0.30550286,-0.27278602,-0.23915738,0.18017404,-0.296124,-0.36614484,-0.21523578,-0.4074282,-0.61689657,0.4324387,0.09711846,0.1936159,0.007236202,0.17727591,0.65745604,-0.33777648,0.088644296,-0.008962672,-0.055490196,-0.6747738,-0.0686721,-0.51546794,-0.38658148,0.100185394,0.7365329,-0.32699093,0.025202077,-0.10596996,-0.44890344,0.18966678,0.1715531,-0.13418707,0.34129253,0.17890249,-0.30116066,-0.6076256,0.38866812,-0.24485157,-0.2552857,-0.5482169,0.36884242,0.31434616,-0.41720062,0.6355343,0.16136946,-0.05743474,-0.39842063,-0.33641678,-0.119100384,-0.011036603,-0.18395633,0.19003569,0.2589506,-0.84286696,0.40813163,0.3939161,-0.22011214,-0.814268,0.5048171,-0.03774563,-0.3593661,-0.06303402,0.1712756,0.44719124,-0.00014650592,-0.3020299,0.14843409,-0.44073015,0.22358707,0.006031314,0.0055534793,0.17678261,-0.13301036,0.0017841,-0.64588267,0.0663406,-0.36064127,-0.27573916,0.31071785,0.15324256,0.27929145,-0.031295035,0.10844188,0.24309501,-0.25104374,0.10885258,-0.16226722,-0.34906787,0.19551413,0.44020584,0.44759914,-0.44181272,0.53174806,0.0027213509,0.016610801,0.31831792,0.011220806,0.28857735,0.16619538,0.41400072,0.07926467,-0.31905046,0.22103374,0.65293133,0.13043298,0.29512593,0.031616144,-0.026226558,0.010448864,0.019671323,0.21351221,0.100937255,-0.53197396,0.12607032,-0.28741857,0.10706796,0.5848037,0.18103038,0.04660966,0.012966385,-0.5129118,-0.05738216,0.20820533,0.03484703,-1.1860902,0.52227604,0.22992395,1.084044,0.36022732,0.010224302,-0.20414028,0.77072513,0.090475455,0.15354219,0.3072787,-0.012638152,-0.49396423,0.54366666,-0.90804,0.649627,0.09623839,-0.12367415,0.048005626,0.044878226,0.31724685,0.6140284,-0.18868293,-0.06605168,0.1390041,-0.43583834,0.2369047,-0.469012,-0.1850802,-0.62064964,-0.25058043,0.3543279,0.50853336,0.29157048,-0.1600356,0.05225003,0.15435672,-0.15377559,0.081903495,0.14145502,0.016366767,-0.034683388,-0.784422,-0.14413546,0.3332283,-0.0692245,0.39372367,-0.038823403,-0.034876265,0.29066837,-0.1713092,-0.0643834,-0.07301992,-0.62644136,0.15247776,-0.31163815,-0.42732388,0.43496567,-0.05975406,0.23441403,0.2554697,0.0629773,-0.1047393,0.57423955,-0.13479562,1.0121473,-0.17027651,-0.16106087,-0.3426369,0.13796307,0.08337101,-0.13392518,0.1075051,-0.3791322,-0.1678246,-0.41760942,0.6021069,0.08065455,-0.3084594,-0.10306204,-0.18991295,0.1813185,0.55615354,-0.21011013,-6.8293166e-06,-0.39880323,-0.28961036,-0.27313542,-0.32285628,-0.08150008,0.30867767,0.24174435,0.15542592,-0.12962396,0.003605939,-0.026625248,0.57180136,-0.1275699,0.5017081,0.21703003,0.13871692,-0.066954635,-0.27442712,0.30181462,0.4905681,0.07194873,-0.24418351,-0.48753884,-0.47574407,-0.32764876,0.13204397,-0.03474429,0.5411777,0.036752254,-0.06692138,0.4456964,-0.24932994,1.0506829,-0.00093575165,-0.3386407,0.23607701,0.45372853,-0.027645338,-0.15674004,-0.15038344,0.6755371,0.28385904,0.121453844,0.004822002,-0.31155604,0.042443596,0.31973416,-0.20584208,-0.08304921,-0.037247226,-0.43920198,-0.28888667,0.043298006,0.12801851,0.45172375,-0.19349553,0.039506946,0.28045604,0.05797885,0.13351148,-0.27478462,-0.1909357,0.33408102,0.18296582,-0.044213388,0.047189217,-0.5887724,0.4583373,-0.36727974,0.10399104,-0.25376394,0.23919128,-0.26452065,-0.23051938,0.23309955,0.14639364,0.31427124,-0.16457035,-0.39394924,-0.29924864,0.49481204,0.2427095,0.051819555,0.3667819,-0.23508745,-0.08471397,0.12761012,0.4728389,0.5064235,-0.17654863,-0.06051796,0.22389992,-0.44973162,-0.6236111,0.48437345,-0.07472068,0.31914705,0.20430185,0.22019173,-0.66556835,0.28098553,0.3065853,0.12579955,-0.17257258,-0.61390936,-0.28614515,0.31762916,-0.2987817,-0.14714424,-0.43812215,-0.042460956,0.44713226,-0.21905349,-0.23784201,0.1437988,0.11332765,-0.02206282,-0.31016794,-0.061801538,-0.4458211,0.27117598,-0.19824535,-0.32419878,-0.38686484,-0.034546643,-0.47337145,0.33827877,-0.33473304,-0.25956914,0.07946663,-0.12578672,-0.106188424,1.0379083,-0.29007137,0.2285352,-0.49470586,-0.4813035,-0.58723485,-0.3524616,0.41226763,-0.04699522,0.010728375,-0.7367169,-0.052794613,-0.07887439,-0.18327525,-0.21477446,-0.33251607,0.34617144,-0.012824496,0.2879058,-0.022016622,-0.73485315,0.37722155,0.016437503,-0.12979089,-0.58463866,0.34874216,-0.09502939,0.67655176,-0.0760464,0.14136289,0.19870354,-0.15849994,-0.21747945,-0.25671098,-0.24574691,-0.40024525,0.14854406 +948,0.44238234,-0.34718844,-0.5392932,-0.2041743,-0.21466017,-0.16583458,-0.24309577,0.42883074,0.32792354,-0.16554861,-0.2039463,-0.034506526,0.22359963,0.46817428,-0.1348245,-0.6529674,-0.09818392,-0.02590145,-0.57215345,0.63689065,-0.45315552,0.34039852,-0.011535439,0.26288894,0.3716399,0.45797917,0.13824588,-0.15482713,-0.021228248,-0.21019767,-0.03623452,0.106317475,-0.7627735,0.19548626,-0.35039726,-0.33464983,0.10372307,-0.52948993,-0.42369998,-0.8084268,0.15474203,-0.9740566,0.58015245,-0.056767236,-0.11339109,-0.058147408,0.12428904,0.42731836,-0.43467024,0.05621754,0.2118606,-0.09464862,-0.09650319,-0.21641137,-0.221988,-0.38207456,-0.51081795,-0.20918733,-0.7434239,-0.28458703,-0.33961886,0.076904185,-0.3861654,-0.10125101,-0.13292956,0.28387597,-0.59199494,0.08802893,0.17829861,-0.14115326,0.34650552,-0.48139098,-0.04711355,-0.18864313,0.3948659,-0.11918753,-0.21791525,0.41396296,0.31103316,0.20797259,0.12717189,-0.2840408,-0.25089228,-0.22232094,0.28021902,0.53005415,-0.01023125,-0.5894531,-0.3293266,0.14327067,0.28630224,0.5578782,0.15042341,-0.50789285,0.029635035,-0.109387904,-0.21828853,0.7738648,0.5845347,-0.19237381,-0.2716973,0.37848967,0.5530472,0.52128667,-0.2433392,0.05370202,-0.023509948,-0.48854607,-0.14430319,0.1847815,-0.19363286,0.77798,-0.054390308,-0.04673456,0.86690325,-0.19564065,-0.07833706,-0.046431065,-0.028999375,-0.26594567,-0.36251113,-0.05176073,0.058677413,-0.62282825,0.36191294,-0.25329503,0.68441206,0.30847988,-0.82600874,0.48257542,-0.5653766,0.13588221,0.032297947,0.5643247,0.52470267,0.46446553,0.36930764,0.9067179,-0.3275303,0.24409026,0.031508394,-0.58735794,-0.17160663,-0.25370735,-0.09600557,-0.41961357,0.10213336,-0.057181384,0.06733175,-0.07132107,0.5004457,-0.39568788,-0.15794848,0.25620556,0.8634466,-0.37637627,-0.104223065,0.8779822,1.1341895,1.0406426,0.007862318,1.3221928,0.15396847,-0.12965892,0.10983689,-0.11235377,-0.7632643,0.092386745,0.4569031,-0.22775736,0.2105999,-0.02520536,-0.011359437,0.05930743,-0.3622645,0.05852851,0.113155864,0.5116825,0.1373656,-0.28028172,-0.36079475,-0.09410074,-0.03187261,0.037990972,-0.07006819,0.15392183,-0.3524309,0.16523758,0.042723253,1.3165941,-0.15197521,0.005850537,0.116944976,0.7459937,0.29121575,-0.08973923,-0.06684875,0.5595677,0.51932037,-0.08908506,-0.78285044,-0.0058459584,-0.4800491,-0.4763729,0.018548848,-0.31718442,-0.22578959,-0.037596997,-0.314907,0.15415335,-0.07971459,-0.26722506,0.72792745,-2.6791086,-0.37136194,-0.26302043,0.30766156,-0.38623,-0.124356456,-0.080178745,-0.4859154,0.36545533,0.2285979,0.5956705,-0.6785112,0.49741372,0.5362815,-0.5553967,-0.047176298,-0.6324033,0.0016024654,0.03327229,0.4736394,0.0032708251,0.103761666,0.006034233,0.099339984,0.86125636,0.2314309,0.2429433,0.5566702,0.48426282,0.07192559,0.62793756,-0.19155149,0.62625325,-0.32114565,-0.011206567,0.31968638,-0.2943468,0.5340437,-0.28630504,0.124203674,0.55526316,-0.47779274,-0.9891544,-0.5242695,-0.5545343,0.99197143,-0.54023385,-0.48895204,0.38365415,-0.09241115,0.03207066,0.0337229,0.64731765,-0.013639894,0.25688493,-0.52642,-0.028329724,-0.12421945,0.03728554,0.023061378,0.07480201,-0.16557862,0.85990906,0.009301603,0.6651546,0.31130898,0.15720673,-0.1665933,-0.33819398,0.25657752,0.76153475,0.37218368,-0.10533606,-0.27167702,-0.1481056,-0.21735393,-0.33882925,0.09520037,0.72682226,0.79665923,-0.29683936,0.056422368,0.3811983,0.15983061,-0.008358354,-0.15895526,-0.36882523,-0.0833428,-0.07604831,0.38268632,0.7986166,-0.2399703,0.614249,-0.30660966,0.060188305,0.03879058,-0.5472594,0.56931645,0.5745915,-0.22021975,-0.11672742,0.2836204,0.5450805,-0.5485989,0.56874496,-0.5242531,-0.057368625,0.8599498,-0.15270087,-0.46515933,0.26935452,-0.31708014,-0.09401748,-0.9124279,0.3175279,-0.29886225,-0.5682501,-0.05455506,-0.16512989,-3.1262445,0.15313147,-0.08378113,-0.22301084,-0.5549723,-0.015637165,0.116581224,-0.5492246,-0.93816274,0.328598,0.1754712,0.54187053,-0.12769532,0.14654471,-0.29514846,-0.058207795,-0.19166708,0.27387294,-0.08035426,0.34699926,-0.30136478,-0.40154517,-0.30851856,0.10537165,-0.68465984,0.279364,-0.55752796,-0.34970692,-0.044935223,-0.80967903,-0.12508106,0.5468578,-0.52363724,-0.08770242,-0.07684792,-0.030674024,-0.38949403,0.12050295,0.1366651,0.23990026,0.0478182,-0.08258379,0.08329146,-0.27155182,0.5297762,-0.017265799,0.38086155,-0.22166458,-0.19163942,0.013524017,0.3776744,0.5996959,-0.22388038,1.224183,0.1986874,-0.117615126,0.36047757,-0.27167967,-0.24221095,-0.89257044,-0.40584078,-0.23393846,-0.3600802,-0.69569904,-0.0422048,-0.19632055,-0.8108751,0.53659725,0.23168169,0.6167539,0.054538425,0.16351576,0.34888184,-0.22400211,0.068089396,-0.049236044,-0.06262045,-0.5376443,-0.28663853,-0.6837644,-0.4689431,0.19284667,0.6419701,-0.3067579,-0.18294317,-0.19844346,-0.4357724,0.08223217,0.16776238,0.07027591,0.2981389,0.5088078,0.06958928,-0.6355339,0.3375968,0.09126841,-0.12246737,-0.5049463,0.07805737,0.7647322,-0.6960011,0.8083094,0.20630838,0.03952033,0.018549794,-0.6652677,-0.15513967,-0.056084014,-0.10182684,0.2502809,0.032108024,-1.007545,0.39578837,0.34294403,-0.6122498,-0.7974195,0.63827,-0.0791669,0.05343851,-0.12890019,0.36639234,0.34958404,-0.23146774,-0.35434064,0.263011,-0.32364836,0.34577143,0.06507345,-0.19254127,0.152461,0.11729691,-0.4184983,-0.85985184,0.049058285,-0.45420015,-0.17357534,0.35587958,-0.24142309,-0.17967194,0.023620032,0.32037136,0.2748629,-0.39879036,0.14874618,-0.054691255,-0.44667074,0.35276562,0.50852466,0.49788934,-0.4213007,0.7076401,0.28279507,-0.15656155,0.30871543,0.26995662,0.34732273,-0.03478034,0.35270125,0.27421507,-0.060105205,0.16431281,0.8782477,0.28498724,0.6041093,0.30112812,-0.16035953,0.36714697,0.23494434,0.29562646,0.05291568,-0.4904904,0.16839188,-0.096827984,0.1082514,0.5534117,0.30444148,0.30150363,0.15645711,-0.2006049,-0.1681999,0.41477445,-0.052752208,-1.259515,0.3389261,0.25426427,0.84619063,0.5261001,0.15868813,-0.006048192,0.37169316,-0.073733866,0.0035486235,0.5619866,-0.009150657,-0.56313,0.7151283,-0.62618643,0.4021621,-0.09987909,0.073875844,0.38496226,0.27298835,0.45073786,0.94737583,-0.2443607,-0.111826874,-0.13773333,-0.070889704,-0.047853634,-0.41996014,0.06419352,-0.34227875,-0.4991497,0.86199325,0.5620798,0.35391062,-0.060859416,-0.110021956,0.0077069295,-0.19845909,0.14520808,-0.013412771,-0.054567575,0.0028548485,-0.63732886,-0.2653885,0.6965107,-0.04950945,0.07112944,-0.20072174,-0.18528566,0.38855952,-0.37737033,0.094645314,0.04326384,-1.0156612,0.08682457,-0.17111216,-0.46104977,0.21428071,-0.120890975,0.20247053,0.14139934,-0.059513472,-0.137733,0.29160535,0.07172835,0.95963365,-0.086357735,-0.29105315,-0.30206835,0.08789127,0.28692397,-0.30453002,0.18350388,-0.27575013,-0.20572992,-0.5542358,0.5660087,-0.0969001,-0.4289367,0.11242816,-0.29804942,-0.18996137,0.6707993,-0.052945927,-0.19794936,-0.12508768,-0.3259802,-0.5081994,-0.25952718,-0.23209824,0.21673483,0.34578416,-0.068713896,-0.07287712,-0.099978715,0.09801883,0.29773042,-0.06888764,0.48181096,0.12435122,0.17343968,-0.0665144,-0.11402193,0.3484065,0.44956034,0.2728445,0.0004947009,-0.062352523,-0.23044586,-0.39681414,-0.04532502,-0.16762462,0.35218918,0.026736693,-0.29188415,0.7173927,0.123485476,1.3015915,0.07473211,-0.4612685,0.20259327,0.68106055,-0.24594821,-0.066474885,-0.40205514,1.0814555,0.65485454,-0.14822078,-0.03616434,-0.57612574,-0.17522009,0.31691426,-0.37539205,-0.07376022,0.1466818,-0.34545854,-0.21699828,0.24269728,0.24495818,0.16240965,-0.110700935,-0.15027766,0.22737475,0.17132382,0.4576663,-0.7629549,-0.2696709,0.19419679,0.25487986,0.12069594,0.008000309,-0.27505013,0.32337278,-0.6980918,0.2866308,-0.49440488,0.057526555,-0.4342825,-0.4234622,0.15676744,-0.04401362,0.37099406,-0.27151257,-0.41740313,-0.20853972,0.40471762,0.018940398,0.21129256,0.6253897,-0.29305384,0.004470904,0.038661607,0.6535607,1.0366927,-0.40277436,-0.03292599,0.4682102,-0.665254,-0.71695095,0.4006216,-0.45432308,0.18452138,-0.07037933,-0.44498947,-0.6082501,0.24231838,-0.13704816,0.043226145,0.11375336,-0.79328865,-0.10243575,0.346626,-0.13664913,-0.34115627,-0.11399,0.32861307,1.0825824,-0.35606918,-0.4736062,0.21239094,0.0120460335,-0.28634927,-0.5910837,-0.04648386,-0.049154803,0.29581425,-0.10766372,-0.2820055,-0.12356958,0.26788935,-0.5153215,-0.0274482,-0.0032971988,-0.38203153,0.1709521,-0.06516634,-0.11604491,0.97012305,-0.5309201,-0.14304763,-0.77564925,-0.52580893,-0.7369473,-0.3847108,0.11942003,0.19436298,-0.003412637,-0.39180744,0.23818198,-0.06555296,-0.15774661,0.116979904,-0.58179927,0.40127438,0.13654368,0.5505834,-0.3523038,-1.1809319,0.23628344,0.34453905,0.0064638094,-0.8724607,0.55527675,-0.06695459,0.7076709,0.08635875,-0.073316485,-0.030721588,-0.44765395,-0.10238615,-0.39588073,0.08920557,-0.7561958,0.38374278 +949,0.5492302,-0.049561944,-0.46312925,-0.07646441,-0.5156564,-0.04083627,-0.124731004,0.061108913,0.27962333,-0.4985432,-0.2647853,0.070525475,-0.31571573,0.17923962,-0.003227536,-0.57520145,0.03756895,0.38912424,-0.50278765,0.74829954,-0.21495032,0.40478912,0.01016794,0.20540091,0.09927148,0.25102016,0.11091689,-0.15332845,-0.31258592,-0.18461367,-0.08661018,0.1477757,-0.5412425,0.5356806,-0.07622445,-0.3102245,-0.056609817,-0.4461923,-0.3104528,-0.7289035,0.32316226,-0.7558444,0.46866375,-0.0406714,-0.1334066,-0.022902135,0.12721938,0.44341108,-0.05976314,-0.025931876,0.30721086,-0.26810813,-0.30418745,-0.28597134,0.04854735,-0.39291653,-0.5554073,-0.102290586,-0.23305702,-0.12902442,-0.2913054,0.28687832,-0.26034397,-0.066683814,-0.06857141,0.65112066,-0.5095276,0.24699904,0.38297606,-0.23982142,0.048856873,-0.71578735,-0.04879691,-0.0784688,0.43272465,-0.022694204,-0.1947564,0.3850012,0.31915122,0.5379316,0.23341206,-0.14620157,-0.14462219,-0.012504967,0.15776624,0.46160534,-0.3343616,-0.1437056,-0.07669441,-0.04416136,0.48607573,0.06591036,0.17328086,-0.2780445,-0.04882749,-0.009286478,0.015020392,0.2727271,0.399856,-0.17066063,-0.13250639,0.42949772,0.6266977,0.070994146,-0.035439532,0.13244979,-0.06695824,-0.323038,-0.16086413,-0.041701395,-0.17897962,0.27567202,-0.10247762,0.21273622,0.7648076,0.013543755,0.10990782,0.24570219,0.07831403,0.20362265,-0.18733184,-0.31304693,0.34036025,-0.63512343,0.063751794,-0.14978933,0.6969206,0.009871108,-0.4908782,0.40927538,-0.50185215,0.15288989,-0.10711872,0.50517553,0.71822834,0.5262296,0.3284824,0.82530034,-0.5330766,0.12074101,0.1277725,-0.1692017,0.03027254,-0.102337815,0.18122233,-0.51591533,0.06568682,-0.07484351,-0.11696947,-0.037788935,0.17643236,-0.7471089,-0.14664732,-0.01668345,0.9647342,-0.29819688,-0.007950847,0.84107786,0.98355615,1.0073601,-0.022988483,1.2175757,0.26565057,-0.34042206,-0.20189261,-0.30205998,-0.59115475,0.17482302,0.37124127,-0.25224233,0.18433905,0.25591755,-0.049536068,0.53469527,-0.52900285,-0.12227255,-0.31653723,0.31594896,-0.0049184687,-0.17589696,-0.58328027,-0.14914441,-0.039527632,0.008018515,0.06871324,0.33313447,-0.21898091,0.39958125,0.099544235,1.4179971,-0.31860182,0.03366915,0.085989304,0.31569406,0.09077974,-0.22425999,0.047749903,0.13630196,0.349513,-0.056085322,-0.47508934,0.013407017,-0.3490846,-0.40636858,-0.26180226,-0.17620452,-0.11282366,0.1466914,-0.16107523,-0.3847607,-0.1142171,-0.34987697,0.42984778,-2.2328768,-0.18543836,-0.33904818,0.5252939,-0.2568016,-0.22438608,-0.020506442,-0.46163464,0.20688334,0.17405793,0.5399991,-0.60400903,0.5436641,0.47792754,-0.79377645,-0.13186665,-0.5518466,0.0060428423,0.06389516,0.25633425,-0.033489846,-0.24375822,-0.030300213,0.119103454,0.4083722,-0.026589552,0.1279998,0.51251423,0.349782,0.11454489,0.24461296,0.14249708,0.6368629,-0.27996573,-0.24861825,0.46559468,-0.25663212,0.21130745,-0.2563134,0.0036139744,0.4489255,-0.40659326,-0.6709188,-0.79592294,-0.27536133,1.1194361,-0.050239626,-0.5136684,0.11606591,-0.2765634,-0.25376484,0.019528184,0.3501266,-0.045514435,-0.075361185,-0.8878892,-0.040006287,-0.05199018,0.08265013,0.07088379,-0.23668242,-0.5527309,0.7876605,-0.25189295,0.41729742,0.3781673,0.36695686,-0.19342612,-0.28861216,0.031719975,1.0201699,0.59174854,0.12572666,-0.16065101,-0.09204217,-0.3547656,-0.284689,0.03889079,0.49080357,0.5511323,-0.13535967,-0.056949854,0.3422257,-0.016073164,0.059098814,-0.23618521,-0.4796152,-0.22988322,-0.042954665,0.6403576,0.5573819,-0.11781842,0.43653414,-0.017927732,0.17881945,0.034801446,-0.5476341,0.4518972,0.9022718,-0.35442188,-0.30585957,0.55631167,0.28899315,-0.22673523,0.39771408,-0.5450813,-0.27220556,0.27496153,0.03055409,-0.62469393,-0.063549,-0.39693502,0.355637,-0.6513662,0.753224,-0.5338317,-0.8038305,-0.5864817,-0.049899537,-1.7070726,0.29612255,-0.46245965,0.032059826,-0.2039728,-0.03689608,0.031704847,-0.6211082,-0.46886352,0.2690467,0.029146884,0.5741,-0.080250606,0.118949115,-0.1304258,-0.44963837,-0.07311891,0.04251151,0.13946126,0.3488963,-0.04727739,-0.414505,0.23446456,0.11031831,-0.24725291,-0.050026953,-0.77498627,-0.5731617,-0.21142605,-0.5494484,-0.18913592,0.67619324,-0.46282881,0.14546093,-0.46144268,0.12269014,-0.19349541,0.16103351,0.025051503,0.25287637,0.04536667,-0.139667,-0.16004106,-0.17832062,0.3847311,0.043570675,0.4436802,0.16448641,-0.20006071,0.21692525,0.5414402,0.67142135,-0.06378708,0.94804233,0.50942856,-0.31270462,0.25647724,-0.17810321,-0.32441905,-0.6480796,-0.47991022,0.36503512,-0.4818154,-0.37739578,0.10916914,-0.52807087,-0.9774141,0.6260604,0.07593458,0.26443467,0.028441599,0.22002898,0.5008958,-0.17014968,-0.100811355,0.011896719,-0.19279204,-0.7144707,-0.098657526,-0.6850109,-0.4384203,0.23709263,1.2228364,-0.4387834,0.23606266,0.42048955,-0.2736275,0.15589312,0.11566001,-0.12664554,-0.06194162,0.5199269,-0.11361348,-0.6362892,0.28668618,-0.07623441,0.0632481,-0.5629967,0.45458058,0.69829226,-0.5604282,0.5874332,0.3432662,-0.053358722,-0.16912566,-0.5481154,-0.30805558,-0.057052292,-0.40856,0.3321158,0.236027,-0.47106007,0.24149708,0.4484453,-0.3050185,-0.75604886,0.37292957,-0.11437089,-0.073095165,0.14709918,0.33585438,0.17654197,-0.007150101,-0.04807263,0.26357886,-0.44211176,0.52680504,0.09459095,-0.26830617,0.103298746,-0.34646508,-0.46752796,-0.8925191,-0.037492484,-0.5382439,-0.3215626,0.14796464,0.07375695,0.053218756,0.2193989,0.4261224,0.47596923,-0.15276578,0.02091791,-0.1768849,-0.50071615,0.3861242,0.44025904,0.39509335,-0.41036555,0.55244786,0.008804237,-0.15086548,-0.20228551,0.098501965,0.5137497,0.12427479,0.51069456,0.04954757,-0.06718055,0.18799977,0.9130866,0.049819034,0.3864765,-0.06685247,-0.052438486,0.10000168,0.057572454,0.31467554,-0.015525739,-0.60348135,0.15299277,0.010821112,0.08127958,0.4284685,0.24766131,0.2542683,-0.1461711,-0.46015126,-0.106917344,-0.0092504425,-0.008313541,-1.433721,0.51646477,0.06655485,0.7229819,0.36505562,0.060468644,-0.0037167121,0.8754691,-0.06402917,0.15236239,0.18012755,-0.34148073,-0.38479137,0.32154235,-0.6652599,0.22500862,0.06156199,0.10381794,0.039839048,0.020540953,0.24026667,0.7227403,-0.19849603,-0.10388071,-0.45892826,-0.2985528,0.10484957,-0.27026504,0.35465616,-0.50543123,-0.45592335,0.68833125,0.67862403,0.43946955,-0.2836823,0.15116458,0.043822475,-0.2972764,0.33409905,0.05085475,-0.038910363,0.05424494,-0.5149008,-0.065137126,0.36680323,-0.20368907,-0.045731395,0.010982773,-0.05608424,0.17937656,-0.096454464,-0.06324182,-0.08690597,-0.64365345,0.16444299,-0.41570425,-0.2537938,0.38049528,0.17794445,-0.098867536,0.099335074,-0.010349406,-0.14423688,0.5106239,-0.09863404,0.70198786,0.24831986,-0.2405698,-0.27443394,0.28712907,-0.060104568,-0.10470561,0.31926912,-0.23405151,0.23266782,-0.71765864,0.51483727,0.045060735,-0.32837987,0.23906006,-0.23365977,-0.07317968,0.3931064,-0.31530327,-0.18153225,0.17263658,-0.3530007,-0.1712468,-0.24728402,-0.13052198,0.091929756,0.22157459,0.07152867,-0.28792888,-0.22294874,-0.40510818,0.39783472,0.14660494,0.32487813,0.42577443,-0.013577261,-0.5182331,-0.13015844,0.2522786,0.42251232,-0.0827815,-0.19794032,-0.38146415,-0.51356745,-0.48148298,0.3462507,0.0013236573,0.44215918,-0.102204934,-0.19391097,0.92536294,0.05149927,1.3362439,0.009263756,-0.1622359,-0.11257323,0.68279696,-0.025861021,0.03353523,-0.24394076,0.85472447,0.6266371,-0.07965292,0.003994501,-0.46260804,-0.09779949,0.31407264,-0.20888694,-0.0073880935,0.08834797,-0.74042034,-0.35928196,0.28353903,0.29244393,-0.046321776,0.03777346,0.21755826,0.3375146,-0.074058704,0.28370416,-0.623843,-0.3008665,0.23339102,0.2998496,0.006273757,0.1454071,-0.56332827,0.35058743,-0.7027159,0.14135358,-0.17099145,0.052887898,-0.16370293,-0.2438616,0.29924226,0.06554242,0.50254214,-0.53455526,-0.3198624,-0.08123745,0.38516262,0.3185648,0.031016057,0.75263005,-0.35909632,-0.043420196,0.21924068,0.4630068,0.911426,-0.17209862,0.08709778,0.3809927,-0.47348282,-0.55018634,0.23410133,-0.15461884,-0.12958908,0.034363758,-0.44947347,-0.39253792,0.10972215,0.29385695,-0.18893115,0.09278006,-0.8411112,-0.032997157,0.20917416,-0.40268582,-0.10350854,-0.24158199,0.19523753,0.53951204,-0.25452235,-0.4364228,-0.092418216,0.30536288,-0.15070046,-0.6411435,-0.06917689,-0.41183805,0.3902332,0.03035043,-0.39497873,-0.21159537,-0.14416695,-0.4538369,-0.03227914,0.25262946,-0.35709924,0.05915318,-0.24297394,-0.045032926,0.6011794,0.007899036,0.08755638,-0.44363952,-0.2703204,-0.86295176,-0.2853384,0.18803619,0.24283946,-0.08153138,-0.6153596,-0.066166006,-0.1467231,0.15378918,-0.017962124,-0.3933761,0.32215446,0.21951653,0.42455357,-0.21359432,-1.0371603,0.1129305,0.10079361,-0.1250079,-0.5291169,0.41789514,0.15623832,0.90715396,0.080198534,-0.007860399,-0.04969446,-0.49523264,0.123926625,-0.3292332,-0.27718323,-0.7178475,0.04382428 +950,0.2352835,-0.23804252,-0.6472769,-0.11161259,-0.39294985,-0.045097966,-0.34566653,0.1274569,-0.096230656,-0.57613236,-0.11851693,-0.3336066,-0.054943834,0.5482524,-0.14048393,-0.54709285,-0.015317556,0.46599028,-0.58886224,0.26924625,-0.3637825,0.44794917,0.1997819,0.020352116,-0.11112997,-0.050602198,0.28734508,-0.18090843,-0.10787892,-0.50589657,0.010933474,-0.13879843,-0.9651162,0.29406604,-0.12032291,-0.68801713,-0.05455935,-0.28744414,-0.19481333,-0.85184646,0.18169184,-0.89981604,0.5829422,-0.19772291,-0.13757734,0.09950155,0.14834301,0.61174613,0.13757764,0.20607872,0.28409687,-0.4191883,-0.40535107,-0.14625484,-0.16028562,-0.45787242,-0.5175409,0.07525032,-0.61819625,-0.32043546,-0.41129133,0.124527,-0.40459427,0.19828296,-0.18853343,0.45441127,-0.16291492,-0.21366441,0.28888276,0.038563177,0.48363224,-0.5699993,0.086737126,-0.1726708,0.2657986,-0.46737787,-0.28214732,0.3427571,0.27379966,0.48307583,-0.03609797,-0.22600605,-0.19952375,-0.19867809,0.27324164,0.62228626,-0.09449208,-0.4123623,-0.12503886,0.025021456,0.33165446,0.04450661,-0.092998475,-0.4256628,0.04225442,0.16646862,-0.30368873,0.34575653,0.47574246,-0.11085733,-0.13137716,0.4602653,0.6127464,-0.039917585,-0.044039547,0.18890978,0.09597678,-0.4712509,-0.1809016,0.21041526,-0.039668825,0.4863739,-0.16107184,0.21640714,0.57326156,-0.4100999,-0.17968427,0.07551826,-0.059397385,0.0059765778,-0.05865111,-0.4754323,0.56995696,-0.76081103,0.08391888,-0.38316575,1.0647702,-0.014017392,-0.86517924,0.37941417,-0.6999776,0.16479617,-0.18072768,0.83933973,0.56666136,0.5985264,0.12768999,0.7018245,-0.38546443,0.09059899,-0.090925425,-0.4164712,-0.10341082,-0.41940704,-0.083460905,-0.3520579,-0.26676628,0.047063585,-0.13411279,-0.105998,0.56900305,-0.51975423,-0.2310362,-0.15833686,0.60300493,-0.46925655,-0.04534753,0.73856664,1.1771418,1.1034218,0.3088632,1.248442,0.2754493,-0.24723685,-0.28475317,-0.012747705,-0.789161,0.29202452,0.21583124,-0.55131894,0.19971772,0.09204218,-0.07471371,0.374261,-0.5752267,-0.050451655,-0.15884753,0.29943076,-0.2948044,-0.21070011,-0.27506098,-0.13073853,0.13647032,-0.023725217,0.09336099,0.31911102,-0.23379226,0.33209315,0.32952324,1.1276431,-0.15794186,0.15576555,0.14144395,0.08774356,0.0743188,-0.28153846,-0.041178625,-0.07406103,0.40603462,0.058907393,-0.55722123,-0.076528005,-0.10568786,-0.40467867,-0.43505827,-0.13085407,0.11971089,-0.11473558,-0.22208524,-0.21540909,0.13491465,-0.43888518,0.6383126,-2.028766,-0.13177024,-0.120659895,0.27178466,-0.2992156,-0.4163371,-0.099294364,-0.64918596,0.42261377,0.2742449,0.42811227,-0.64217174,0.3481063,0.25426638,-0.30975845,-0.15286501,-0.790782,-0.049289104,-0.2005909,0.12614302,0.13812645,-0.117995895,-0.08114519,0.07824595,0.48275694,-0.34815407,0.06588284,0.47251233,0.14206201,0.21652083,0.58332324,0.16051362,0.44033417,-0.36578846,-0.23580532,0.39226928,-0.21918829,-0.06912264,-0.016935175,0.16079581,0.22248013,-0.5659753,-0.8966577,-0.85709125,-0.5861762,1.1548539,-0.25780073,-0.70902896,0.10625257,0.2557875,-0.3684474,-0.064941645,0.35861382,-0.25242496,0.211235,-0.815633,-0.08556387,-0.17468846,0.55001813,0.0040515834,0.0058848686,-0.5840739,0.45358816,-0.35664478,0.23929538,0.5671547,0.2564971,-0.31228748,-0.5648807,0.11901084,1.4674224,0.32519233,0.081165224,-0.4131032,-0.09545169,-0.31736198,-0.02469024,0.052869588,0.36028424,0.9000918,-0.012208671,0.10556477,0.35694543,-0.045617018,0.056590408,-0.0672699,-0.5314257,-0.032760423,-0.18358482,0.7839369,0.32823095,0.29107344,0.7773319,-0.1072667,0.17264374,-0.2765763,-0.3442793,0.51598275,1.313659,-0.19514327,-0.31004384,0.5976183,0.39504996,-0.08415884,0.5285986,-0.6352693,-0.50940305,0.30834463,-0.06623272,-0.44666114,0.2517663,-0.3286388,0.28405735,-1.0169011,0.52599466,-0.42377886,-0.8860946,-0.59254,-0.123277314,-2.7243426,0.32502612,-0.1923443,-0.057073027,-0.05651961,-0.20118241,0.43996385,-0.3212547,-0.5538991,0.15025398,0.16382305,0.8364229,0.015623167,-0.027115917,-0.15817274,-0.15573634,-0.27428484,0.27170983,0.3670927,-0.049551982,-0.0073890015,-0.44527325,0.07972428,-0.3646524,-0.33559537,0.08259231,-0.55137295,-0.46144316,-0.30870947,-0.583499,-0.7266936,0.71878487,-0.67889553,0.0490115,-0.28938448,-0.049469765,0.10868245,0.4530368,0.05765623,0.14544265,0.048150185,-0.18735664,-0.16095752,-0.16211557,0.05596361,0.039366093,0.17603107,0.308819,-0.48078915,0.17705025,0.44948447,0.7199846,0.17877962,0.9200128,0.49307966,-0.16202319,0.052844662,-0.2917831,-0.17067051,-0.5893073,-0.228658,-0.14805917,-0.42432022,-0.3983856,-0.00950933,-0.27338335,-0.830105,0.79382926,-0.05409513,0.044014733,-0.058346983,0.44864264,0.25038144,-0.024436286,-0.22418946,-0.25417674,-0.1333648,-0.3920933,-0.42927146,-0.6836128,-0.60188144,-0.2216721,1.3420442,-0.049544077,0.15631877,-0.03278458,-0.02152122,0.17904373,0.1810875,-0.071392685,0.25587097,0.47396484,-0.14638692,-0.75834656,0.3221533,-0.2039537,0.10593265,-0.77192736,0.3489591,0.86630064,-0.6620338,0.26244816,0.53594416,0.08622033,-0.23004736,-0.5076592,-0.078206554,0.095678605,-0.35453597,0.26335707,0.107263945,-0.7532485,0.6298564,0.2932845,-0.26684645,-0.83227473,0.5136761,0.2311757,-0.16089787,0.1973499,0.36476687,-0.13880078,0.074883856,-0.29894271,0.25414833,-0.33513394,0.26977196,0.2941609,-0.08727645,0.2691668,-0.33545431,-0.10589576,-0.63560885,0.22306746,-0.4126674,-0.18534625,0.015285824,0.006349236,0.11403784,0.55618054,-0.005548189,0.46104625,-0.23569767,-0.040813725,-0.2803916,-0.49029768,0.46215448,0.603815,0.16491556,-0.42870125,0.779072,0.0542846,-0.142793,-0.73396844,-0.034083255,0.54691905,-0.033113334,0.33132067,0.272382,-0.21702544,0.1605469,0.7320544,0.40097204,0.6454771,0.0043279626,0.012387075,0.10490084,0.2373171,0.4366857,0.20969498,-0.5214102,-0.015071045,-0.22998212,0.028288553,0.52791125,-0.026720032,0.5236766,-0.23528688,-0.24142969,0.0018942971,0.02012656,-0.25150597,-1.4086828,0.69828886,0.2558252,0.5396743,0.5432911,-0.10390981,0.28727666,0.4857287,-0.27101287,0.1967923,-0.00082136196,0.042105448,-0.17427611,0.6605249,-0.9293217,0.3102652,-0.033016097,-0.05953437,0.051007837,-0.07843829,0.4003669,0.8581279,-0.07388566,0.25779176,-0.26624084,-0.16994731,0.2683677,-0.2538562,0.2801563,-0.56084067,-0.33716464,0.9692993,0.24690016,0.5116727,-0.15176994,-0.059817284,0.0826683,-0.2303931,0.19612221,0.011918393,0.07609085,0.013121098,-0.50067157,-0.16503339,0.64527845,0.10796425,-0.04004346,0.26445165,-0.12886089,0.27273402,0.040840466,0.0630442,-0.06491974,-0.57574385,0.1178197,-0.48763123,-0.15302616,0.17544962,-0.5105052,0.2817626,0.16111778,0.10152513,-0.39596447,0.18212843,0.63203764,0.70368403,0.1824751,-0.21510603,-0.07384505,0.13941927,0.26190788,-0.3413674,-0.08521152,-0.13899226,-0.07159902,-0.9074862,0.36659285,-0.20830375,-0.30329552,0.5748642,-0.051978197,-0.21017374,0.5507105,-0.16409652,0.12516193,0.5608459,-0.040050004,-0.046417225,-0.20883448,-0.11833707,0.1824855,0.045295034,-0.082949474,-0.07533236,0.12180314,-0.20677216,0.37840882,-0.067613825,0.31470367,0.2904021,0.27046338,-0.44169506,-0.02591391,-0.09274128,0.5681284,0.063992985,0.01887264,-0.38302281,-0.25776526,-0.19988029,0.16800939,-0.05875491,0.2607639,0.020788074,-0.45065615,0.871969,0.08620218,1.0670656,0.036103208,-0.37957326,0.03541653,0.451766,0.08399204,-0.06496427,-0.46857294,1.0428132,0.5316165,-0.10993717,-0.049900457,-0.40306222,-0.1594698,0.18933141,-0.1487024,-0.38631442,0.061272535,-0.5855492,-0.47107133,0.25737402,0.45428684,-0.14620247,-0.03884399,0.20812182,0.5308342,-0.1582031,0.22417994,-0.39788723,0.24353482,0.15897804,0.22820301,0.07243197,0.16085291,-0.2858399,0.27513772,-0.8899527,0.15544371,-0.20337264,0.08297202,0.202474,-0.20546412,0.2877324,0.5075268,0.20654988,-0.11872145,-0.21068867,-0.07183427,0.4949808,-0.00021576385,0.2657995,0.9463765,-0.25240245,0.17812747,-0.053472176,0.2801741,1.2618892,-0.41316056,-0.01642407,0.5098519,-0.40737438,-0.4925989,0.47203505,-0.33057365,0.05909313,0.042876672,-0.61462045,-0.29354942,0.18033506,0.109888844,-0.103331685,0.33029884,-0.6159064,0.00078231096,0.3659602,-0.34015712,-0.28836998,-0.44680452,0.27051356,0.5077235,-0.2317043,-0.4572772,0.018662505,0.43536386,-0.202094,-0.39494964,-0.049759578,-0.24852078,0.3159585,0.07359556,-0.198418,-0.027364016,0.2578136,-0.40969142,0.06260314,0.254508,-0.25286016,0.095858686,-0.20228238,0.06756572,0.70865613,-0.38340974,-0.1391009,-0.6186474,-0.4927005,-0.7967622,-0.29495028,0.4000105,0.37092185,0.025537023,-0.57929355,-0.14006831,-0.08205729,-0.0808035,-0.005081862,-0.41516992,0.2837815,0.23951079,0.4566873,-0.065560825,-0.90313274,0.23700254,0.04981917,-0.20148323,-0.4683112,0.4437952,0.023164034,0.7909624,0.050637275,0.22912721,0.31018403,-0.6709364,0.24449271,-0.07033905,-0.10311856,-0.8924293,-0.110199 +951,0.3803607,-0.06775567,-0.4678684,-0.22729257,-0.3536853,0.19868138,-0.29477695,0.31428346,0.20043173,-0.20180117,0.015397242,0.050102644,0.016486255,0.379182,-0.15573637,-0.8503293,-0.1334642,0.106992245,-0.6540567,0.48305723,-0.6672258,0.33934626,0.038276274,0.44637984,0.06157055,0.39888075,0.2802614,0.00026130278,-0.13131402,-0.01896456,-0.10961322,0.30718118,-0.6185592,0.25423178,0.06621412,-0.28728786,-0.047596563,-0.22104813,-0.15102135,-0.6977411,0.44861305,-0.7190283,0.6447594,-0.124882534,-0.37670955,0.131447,0.076853275,0.21255232,-0.42663953,0.077470824,0.20355348,-0.30870515,-0.07141587,-0.2217914,-0.19971307,-0.5137542,-0.5512554,0.0005599737,-0.6322852,-0.05434188,-0.36348602,0.32122725,-0.36438498,0.088831134,-0.24559215,0.2800635,-0.4499298,0.01816969,0.21542686,-0.30860347,-0.049415182,-0.4682457,-0.062718466,-0.06943393,0.289299,0.026165415,-0.25747705,0.36945647,0.45947704,0.5521546,0.18304497,-0.33554876,-0.28969344,-0.22127463,0.071614124,0.45805544,-0.03244008,-0.3814815,-0.29932526,-0.16042084,0.37336472,0.10304227,-0.030740635,-0.2968907,0.0070377835,0.15770492,-0.25338426,0.41261345,0.46477804,-0.44941244,-0.23244719,0.48352143,0.26827228,0.10303116,-0.23664197,0.16067877,-0.0788108,-0.57210904,-0.27930558,0.19118021,-0.030448226,0.57957196,-0.21001182,0.3022019,0.8807415,-0.12622765,-0.034755714,-0.23394164,-0.077470936,-0.11564218,-0.32391614,-0.1342298,0.09618759,-0.46982506,-0.04546656,-0.2866326,0.6517255,0.08461379,-0.67702186,0.4611532,-0.36795536,0.07725637,-0.1475307,0.5545528,0.7826558,0.3620168,0.124146715,0.890612,-0.48816428,0.018927645,-0.09522398,-0.41514772,0.07783176,-0.042099245,0.08873115,-0.4431612,0.17664576,0.1852532,0.13071959,0.059195265,0.5432269,-0.32520467,-0.00011690061,-0.106604554,0.60567576,-0.5300144,-0.062880285,0.8149707,1.0045959,0.9744616,0.09075148,1.54921,0.44473106,-0.16141963,-0.054282483,-0.3603964,-0.46743584,0.17987484,0.3120983,0.034369603,0.309935,0.13989218,0.09904202,0.4848566,-0.2872874,0.01936646,0.04343251,0.38866493,-0.057243254,-0.028529266,-0.41693214,-0.19801006,0.26836166,0.10772672,0.19363552,0.21770912,-0.14751019,0.5802948,0.11791651,1.3549324,0.091360085,0.1395767,-0.06913119,0.39791143,0.2503976,-0.11699248,-0.0018117984,0.31782627,0.4081332,-0.15800701,-0.552582,-0.09597266,-0.3308293,-0.4779524,-0.21973825,-0.4163911,-0.12017486,-0.17792784,-0.53255755,-0.19406566,0.21910222,-0.34441885,0.46041948,-2.4640365,-0.29725733,-0.18044062,0.27650893,-0.2374538,-0.42095497,-0.31452,-0.52915263,0.3978589,0.4028251,0.29765975,-0.6148841,0.40871716,0.1631061,-0.2656555,-0.120648585,-0.6382187,0.058037616,-0.08612707,0.3243184,-0.13794042,-0.2751116,-0.20079057,0.37171927,0.7546866,0.009464261,0.0062215566,0.19982728,0.39702475,0.05742709,0.41949692,0.09391734,0.6447815,-0.17922185,-0.21287568,0.36320487,-0.36904037,0.33820972,-0.12595144,0.22131395,0.4428894,-0.44978663,-0.8616781,-0.57714516,-0.26005825,1.241311,-0.52487946,-0.2905267,0.26324084,-0.012831344,-0.4280352,0.1062791,0.4288216,-0.121083654,0.010862191,-0.65373796,0.09501017,-0.12601997,0.058567785,-0.1430413,0.17767684,-0.3935271,0.72373885,-0.18604858,0.43807456,0.26870868,0.19210836,-0.19238958,-0.3760528,0.16894726,0.95756316,0.4668507,0.092120245,-0.20656279,-0.22974457,-0.19513588,-0.2990869,0.14641318,0.46608517,0.63557357,0.105411716,0.039468333,0.23980786,-0.24286224,0.01908356,-0.162717,-0.23303203,0.007013754,0.19740972,0.64596635,0.5082425,-0.15639298,0.345025,-0.13635965,0.27209574,-0.12714148,-0.62904,0.59058994,0.93193346,-0.18378338,-0.23305541,0.63281167,0.3666732,-0.30429426,0.46781215,-0.5203979,-0.3428118,0.5838621,-0.105442636,-0.3781013,0.0077281715,-0.41192892,0.022270624,-0.88090914,0.14979598,0.08745527,-0.54263645,-0.5281479,-0.35853082,-3.9633024,0.11219672,-0.13833341,-0.051108,-0.15360758,-0.14219707,0.39198455,-0.6046608,-0.5321624,0.041822754,0.009763764,0.5336074,0.007600214,0.057480074,-0.34431714,-0.121045165,-0.14970183,0.22237124,0.0812414,0.33279812,0.04870766,-0.433031,0.18872756,-0.28603795,-0.5526735,-0.01572204,-0.53904223,-0.529441,-0.1157217,-0.41107827,-0.2061886,0.78055465,-0.49369252,-0.018166257,-0.33934605,0.056376226,-0.15501124,0.34309393,0.15872523,0.15074328,0.14366253,-0.0054199696,0.013061108,-0.3713256,0.28511715,0.059609756,0.20778356,0.3994066,-0.115283966,0.094170205,0.5238617,0.58601594,-0.02408723,0.77789426,0.25398466,-0.16701674,0.3247061,-0.25657845,-0.19485016,-0.6929625,-0.5180593,-0.21164745,-0.5310995,-0.35118905,-0.25265375,-0.34603298,-0.8098676,0.43238556,0.035683665,0.139868,-0.14215918,0.3168763,0.23312302,-0.1353116,0.061097104,-0.20192581,-0.25278157,-0.51803154,-0.4739715,-0.57575357,-0.7863309,0.14627317,1.0487701,-0.07420857,-0.1286308,-0.02635364,-0.44198212,0.013468113,0.12301384,0.29753286,0.20516707,0.39352146,-0.16587119,-0.8004099,0.45640504,-0.23854281,0.00017623504,-0.66758895,-0.0009500027,0.6730248,-0.56803113,0.6050756,0.37863243,0.30056885,0.13805062,-0.56661326,-0.36109668,0.056235928,-0.20787846,0.6383284,0.23236337,-0.6815478,0.5742673,0.14967361,0.006053972,-0.6428029,0.37311676,-0.01838925,-0.0759083,0.040070694,0.47808504,-0.0035233179,-0.052407168,-0.20080084,0.17521645,-0.61279875,0.36351818,0.34982777,0.05898962,0.6046858,-0.16248034,-0.23749918,-0.599084,-0.28895518,-0.4533025,-0.27657261,-0.07601202,0.08098399,0.15923171,0.054457027,-0.04210764,0.42020315,-0.4552125,0.2518877,-0.014034939,-0.23086254,0.23352757,0.47928277,0.37747997,-0.42891693,0.63423866,0.1321959,0.1451032,-0.23365508,-0.077228814,0.64767724,0.304829,0.35114732,-0.10066263,-0.04219357,0.17234357,0.67481196,0.26339397,0.2955877,0.18095782,-0.4012991,0.21239741,0.19934775,0.087865904,0.16134745,-0.19636983,-0.0689764,0.049176533,0.21098456,0.4685864,0.14670192,0.33504957,-0.07868865,-0.07386656,0.21396714,0.000512747,-0.14297087,-1.2216036,0.36809602,0.40671635,0.65997595,0.45742923,-0.07198559,-0.077409625,0.40978095,-0.38150278,0.10011617,0.27369928,0.026596665,-0.3714084,0.47050014,-0.51581496,0.410584,-0.18368608,-0.006785055,0.16808577,0.26601946,0.2787209,0.9724542,-0.070480905,0.13724872,0.031681444,-0.24054727,0.10436224,-0.23806255,0.060484104,-0.47377166,-0.19933653,0.68562526,0.34251553,0.31899646,-0.3218831,-0.15228347,0.03213265,-0.20676543,-0.02038575,-0.23673369,0.036957387,-0.2208683,-0.62108415,-0.43897125,0.48242512,0.09992336,0.0807249,0.19921906,-0.31263825,0.21413249,-0.128802,-0.012187115,0.0049475688,-0.62521046,-0.13025092,-0.29138234,-0.50340825,0.3526397,-0.4945589,0.28870708,0.1351584,-0.0011393627,-0.27158412,0.10073192,0.01950678,0.8936855,0.16659291,-0.21917194,-0.33639365,0.022865137,0.41887248,-0.31748194,-0.014386904,-0.35358742,0.1561604,-0.66456187,0.39902732,-0.19058882,-0.21755303,-0.019826094,-0.12219436,0.035775073,0.31166205,-0.2582569,-0.123564705,0.24665712,0.045176443,-0.20891055,-0.009379443,-0.45304745,0.22691528,0.026239984,0.06550118,0.024639638,-0.13512158,-0.08871954,0.3863689,0.18013982,0.09393061,0.37580976,-0.13723405,-0.2583453,-0.022957662,0.0616418,0.4285178,0.041002322,-0.072814696,-0.29745665,-0.356029,-0.34030974,0.46121475,-0.19527817,0.08105808,0.045045655,-0.39059135,0.7755772,0.16012941,1.1548634,0.24281839,-0.48558745,0.17381598,0.56744736,0.05686346,0.22797562,-0.3347617,0.9173673,0.513683,-0.13005784,-0.20120601,-0.4882724,-0.14626162,0.4100551,-0.31437317,-0.26954034,-0.20902564,-0.86600566,-0.23660527,0.15049744,0.16558804,0.04615346,-0.0013060133,-0.05163819,0.07493714,0.2129693,0.5577625,-0.6574127,0.06976562,0.35400283,0.12335037,-0.00053155026,0.31071168,-0.31756166,0.42760772,-0.626646,0.07271811,-0.48842552,0.072086245,-0.10270427,-0.34612,0.33429784,0.10267151,0.31049454,-0.29822552,-0.43654925,-0.34302756,0.66165763,0.16062139,0.3173664,0.7094316,-0.2957895,-0.17425194,0.20143504,0.4600359,1.3567768,-0.093499415,0.16416082,0.32157117,-0.3036503,-0.55133885,0.14684726,-0.32735044,0.09315595,-0.076755114,-0.43506482,-0.33186924,0.3265707,-0.001168402,-0.09136102,0.24222428,-0.4051213,-0.17788129,0.39412734,-0.24372788,-0.28678867,-0.18337736,0.21059676,0.6917915,-0.48234636,-0.4376817,0.076058164,0.397323,-0.23039314,-0.6870635,-0.017364703,-0.21785754,0.40319186,0.21258545,-0.32400075,-0.01950218,0.23973995,-0.44377413,0.16419329,0.5194899,-0.3244979,0.046890274,-0.34459114,-0.069509044,1.0484296,0.013996554,0.23021029,-0.7174975,-0.4226209,-0.987264,-0.28742212,0.18881908,0.18296099,-0.065817,-0.63224643,-0.075026475,-0.15394042,0.058385808,0.18956086,-0.53315383,0.45084903,0.15619789,0.5090294,0.033341184,-0.85372716,-0.15165932,0.10654981,-0.18384987,-0.5024601,0.59337896,-0.22387908,0.61619836,0.1406702,0.13782834,0.1211135,-0.7345177,0.29024214,-0.36372524,-0.09462919,-0.82209116,0.10185639 +952,0.4513486,-0.14587778,-0.34646243,-0.12917866,-0.12393882,0.17846778,-0.06855411,0.5022686,0.1854937,-0.47845283,-0.16418943,-0.3480958,0.040712792,0.2322263,-0.12479301,-0.5446547,-0.014307813,0.13695581,-0.44697377,0.46826264,-0.49436158,0.39404824,0.05571755,0.26865676,0.16001359,0.15998454,0.11734805,-0.20030728,-0.14490236,-0.07532121,-0.21912864,0.38792256,-0.4147399,0.018246006,-0.16167411,-0.4023511,0.02433048,-0.5609378,-0.30585542,-0.6833466,0.3910557,-0.73278373,0.42657655,0.08119078,-0.08486922,0.50575674,-0.024199529,0.15444466,-0.20952867,-0.042257033,0.19738343,-0.045829106,-0.07913545,-0.057612345,-0.19430605,-0.19173983,-0.48010424,0.20611373,-0.36031994,-0.2661211,-0.26563385,0.107799076,-0.29641667,-0.092662744,-0.04520565,0.2839405,-0.35760885,-0.14115666,0.19656678,-0.07941944,0.19842307,-0.5168197,-0.11134396,-0.090663545,0.28667596,-0.27595314,-0.14014056,0.26868948,0.33747044,0.52956647,-0.080481224,-0.10457598,-0.33264384,0.018408157,0.05218569,0.53425413,-0.12989971,-0.665294,-0.12061204,0.035486143,0.035038486,0.23762086,0.10826824,-0.24769929,-0.2588062,0.09639135,-0.22757544,0.3010196,0.5148986,-0.41096961,-0.30227324,0.3197888,0.42682925,0.23219447,0.034897383,-0.07819333,0.018878993,-0.63819534,-0.17932197,0.0045907893,-0.30247375,0.57614154,-0.13543704,0.31132403,0.627637,-0.08666453,0.10652331,0.06026144,0.017874742,-0.18787406,-0.21391967,-0.058505867,0.24554276,-0.44305375,0.17124377,-0.098903984,0.8226109,0.16407855,-0.7445128,0.4146347,-0.57577497,0.16003847,-0.11077603,0.51072365,0.6634696,0.14784619,0.31450403,0.6909673,-0.46358097,0.017492931,-0.020652592,-0.32267338,-0.04974232,-0.08148768,-0.084416315,-0.49005452,0.058160704,0.062039662,0.071477786,0.23574845,0.28189617,-0.52497554,0.06790439,0.06985225,0.7522793,-0.32030603,-0.10504634,0.6969894,0.94612986,0.9229604,0.08081817,1.1379523,0.25125077,-0.33895218,0.39714953,-0.3797894,-0.8054994,0.27574918,0.3818473,-0.22909918,0.15131289,0.055105988,0.0025546232,0.32095855,-0.4266091,0.055949364,-0.16794518,0.019809615,0.16284527,-0.0775036,-0.33600965,-0.3960833,-0.12997541,0.055539463,0.117571,0.13984817,-0.092445344,0.29678687,0.026791608,1.645123,0.0025797328,0.044709153,-0.010035505,0.33598778,0.16783224,-0.14736368,-0.14516668,0.31176943,0.36454585,-0.12407615,-0.622629,-0.0076392093,-0.20579888,-0.5688488,-0.116192944,-0.302033,-0.07418494,0.11862721,-0.41765875,-0.1253785,-0.26404336,-0.34293205,0.5754792,-2.8485084,-0.1759902,-0.07081303,0.23855916,-0.29695842,-0.34427544,-0.20749852,-0.5058991,0.37140414,0.34450766,0.37377346,-0.70173454,0.2878667,0.26561514,-0.48370603,-0.20818433,-0.6480108,-0.1521097,-0.013702019,0.19259222,0.032525077,0.04467586,-0.0024019252,0.026709715,0.5278496,0.0169077,0.074774876,0.18338054,0.48719424,0.14743476,0.42908594,0.0007085085,0.5420999,-0.24758703,-0.16620475,0.28509772,-0.30876148,0.38329926,-0.11707163,0.17407854,0.4566405,-0.5036705,-0.78880346,-0.61241096,-0.25832912,1.1399375,-0.111956365,-0.37666512,0.33343562,-0.255982,-0.14731674,-0.08847865,0.5325224,-0.11794958,-0.29631293,-0.7237107,0.14701763,-0.04446669,0.030168863,-0.0066241594,-0.015269001,-0.32453647,0.69788337,0.00310449,0.3551601,0.34868157,0.20992373,-0.20608804,-0.35126406,0.06443709,0.79877543,0.3547439,0.11503809,-0.14141934,-0.13565664,-0.5290775,-0.16663344,0.10700934,0.3555021,0.65378445,0.028177548,0.15474854,0.23981346,0.15781651,0.13009971,-0.14355071,-0.13928016,-0.0030157885,-0.1474281,0.5329924,0.51167256,-0.3245793,0.4623591,-0.051665656,0.06624493,-0.22194415,-0.32192847,0.6124794,0.92284584,-0.11512195,-0.16835362,0.49887234,0.5564889,-0.2020933,0.3278623,-0.52172935,-0.3470273,0.5373554,-0.2523305,-0.36451134,0.15752842,-0.25096828,0.09519629,-0.98315793,0.12057528,-0.08755762,-0.3293982,-0.5462427,0.0044073584,-3.3518507,0.18543002,-0.2504019,-0.11598359,-0.15122975,-0.062972516,0.10883116,-0.54800916,-0.5483671,0.16647361,0.09241721,0.5501157,-0.0074679903,0.19678882,-0.12986192,-0.17384191,-0.33394703,0.0597643,-0.017237728,0.346134,-0.037575983,-0.34689358,-0.06206368,-0.1879529,-0.37994033,0.22302571,-0.4739956,-0.4593534,-0.11797522,-0.4101572,-0.40211174,0.58504707,-0.31133252,-0.025697764,-0.1684838,-0.05174052,-0.1822963,0.40798417,0.1697082,0.15774536,-0.051485315,-0.095688805,0.03875791,-0.25670013,0.3680863,0.042101145,0.22640571,0.43960112,-0.121717386,0.2060178,0.41299242,0.6715483,-0.10950293,0.79386926,0.49749422,-0.008979678,0.35773978,-0.3245906,-0.17747141,-0.45399222,-0.3436194,-0.05760845,-0.38418624,-0.5456342,-0.16405906,-0.32845148,-0.6661093,0.37122247,0.082496814,0.25429735,-0.016845124,0.18597753,0.52834725,-0.1878426,0.07714612,-0.13262938,-0.020001112,-0.45773208,-0.25636736,-0.63782203,-0.44163397,0.23138243,0.8561739,-0.14457774,-0.053131808,0.010836617,-0.18429524,-0.03035974,-0.037572972,-0.015873363,0.20734888,0.3249251,-0.1918196,-0.6226371,0.63081044,-0.05528359,-0.25314674,-0.5486333,-0.008043701,0.42343807,-0.55852824,0.49130693,0.28408474,0.073955804,0.07343605,-0.55032593,-0.12822773,-0.075437896,-0.2806497,0.24792649,0.21147776,-0.6961098,0.42563412,0.43356666,-0.19061552,-0.76599944,0.45455638,0.14141631,-0.2754987,-0.046218563,0.2832051,0.15150674,0.041541036,-0.167903,0.23686,-0.61764866,0.3180333,0.2582215,0.022285929,0.3404404,-0.22616397,-0.16535746,-0.6794527,-0.021185001,-0.4212014,-0.13829279,0.15071742,0.12658195,0.18948358,0.11989654,0.08568857,0.30455992,-0.3538691,0.117799215,0.042989198,-0.0820064,0.073729664,0.3379992,0.4399089,-0.41600463,0.54263693,0.020686632,-0.119285375,-0.008395191,0.049337283,0.41585156,0.14868109,0.24353771,0.001690197,-0.37943947,0.34731472,0.79163176,0.115362234,0.21715865,0.025980059,-0.11399908,0.30625898,0.084337376,0.1334857,0.01917297,-0.50009507,-0.054378923,-0.09195655,0.1883171,0.5121658,0.076141074,0.3819014,-0.09829165,-0.2769845,-0.007745569,0.1943533,-0.015087571,-1.0167664,0.37804016,0.122355856,0.9518851,0.53369987,-0.14223841,0.14669363,0.45246062,-0.23816343,0.20046441,0.32084313,-0.15204464,-0.6487877,0.57585335,-0.52746606,0.41841215,-0.105677366,-0.075498395,0.07452507,-0.054875817,0.37703127,0.6585882,-0.10793206,-0.0034784903,0.004440659,-0.32275856,0.21269733,-0.42717937,-0.0026856998,-0.6191351,-0.08221755,0.6059582,0.48903835,0.20337968,-0.1736017,0.010650474,0.09923419,-0.11563014,0.08783158,0.062384132,0.2037964,-0.066748016,-0.7102904,-0.15741493,0.49191672,0.03337485,0.13615254,-0.051978365,-0.38291046,0.23599206,-0.26719195,-0.060949944,-0.13797244,-0.58968,0.0011247,-0.33041015,-0.53136116,0.4440048,0.05458116,0.321547,0.2180304,0.103614494,-0.2057159,0.31218383,0.10057027,0.6531225,-0.10970233,-0.16572815,-0.4767782,0.20643067,0.25225246,-0.19538814,-0.23803116,-0.18859936,-0.1298901,-0.45569217,0.5142464,0.0111409025,-0.1831763,0.08762466,-0.12933786,0.05196435,0.56925964,-0.16882023,-0.0052238065,-0.038718063,-0.21111248,-0.2645685,-0.0679173,-0.10142081,0.28730106,0.2706475,0.016359873,-0.101681836,-0.05799316,-0.11137425,0.40395632,-0.07680444,0.28911012,0.28210852,0.01386549,-0.324467,-0.14774638,0.27649716,0.3298261,-0.03292316,-0.19889377,-0.33684048,-0.30920166,-0.32032305,0.041081455,-0.1085254,0.3884215,0.006672327,-0.250069,0.68041146,0.051716764,1.0475689,0.18664907,-0.19063607,0.10065181,0.4842401,-0.05207918,-0.11495206,-0.39994824,0.84417635,0.46676284,0.038884778,-0.12758149,-0.18581666,0.08124237,0.21398859,-0.18968935,-0.14981203,0.0028312574,-0.6016473,-0.3781896,0.13557822,0.21692044,0.16753353,-0.13664259,-0.047725335,0.21615417,0.025446767,0.3674841,-0.4824509,-0.37586302,0.2287139,0.27244234,0.07312796,0.17284323,-0.39080873,0.4434058,-0.5617497,0.068607144,-0.24737689,0.22322689,-0.2250467,-0.18742082,0.20514804,0.09944115,0.30701873,-0.15849243,-0.43741366,-0.29362872,0.40859857,0.05279918,0.24774815,0.42852613,-0.28284344,-0.011863158,0.08833623,0.5337241,1.0777322,-0.09099916,-0.082974955,0.4015147,-0.26694572,-0.5284962,0.44011602,-0.2630791,0.15582535,0.026299192,-0.059469428,-0.512933,0.2965374,0.21422324,0.10426867,0.013282704,-0.5235104,-0.326307,0.31355426,-0.23521836,-0.26216546,-0.2783805,0.13711463,0.6197403,-0.31238815,-0.2628683,0.18190016,0.1624282,-0.2886596,-0.637326,0.103872985,-0.3841359,0.3703573,0.07668751,-0.2660213,-0.06220858,0.095644616,-0.3697162,0.16825584,0.055872105,-0.3271405,0.014548878,-0.3555028,-0.0131109,1.1547652,-0.20845424,0.2552594,-0.5517179,-0.4727545,-0.8641575,-0.43375862,0.58041435,0.05882504,0.046312407,-0.4645931,0.032572877,0.053045567,-0.0976651,-0.03073579,-0.29541942,0.44769,0.09047054,0.28932858,-0.077980414,-0.49237207,0.008017207,0.06513787,-0.22420137,-0.42341378,0.42794907,0.064829655,0.82926005,0.09711293,0.03290835,0.3971787,-0.3739558,-0.028680343,-0.21159036,-0.06627618,-0.65148515,0.11625032 +953,0.49639672,0.0026977658,-0.44835517,-0.25714764,-0.3180437,-0.08369523,-0.32004294,0.07415465,0.29657426,-0.29499716,-0.20095079,-0.054726224,0.112762555,0.34618214,-0.10100885,-0.92592305,0.052864693,0.17436405,-0.8011679,0.5599281,-0.64808565,0.38187006,0.25422397,0.3071441,0.0077558244,0.3981139,0.4419159,-0.14188017,0.18652524,-0.12615903,-0.0116123045,0.11516811,-0.7116943,0.18567263,-0.1455065,-0.40895915,0.11954414,-0.3827546,-0.091213904,-0.68234664,0.08636248,-0.7805669,0.58764094,0.094444856,-0.11317776,-0.041033745,0.19721484,0.47499448,-0.24845459,0.09400233,0.23425977,-0.18087666,-0.21382281,-0.2410855,0.11028617,-0.34718534,-0.40720147,-0.08614201,-0.57225937,-0.36638087,-0.28429002,0.06099822,-0.42978224,0.05086758,-0.029544419,0.37955967,-0.30806187,-0.04001326,0.4201774,-0.12461985,0.24675171,-0.4768944,0.016136613,-0.0773468,0.54387844,-0.22374108,-0.26073927,0.41631532,0.33708754,0.49624506,0.25689158,-0.43642262,0.027038809,-0.19719991,0.07016352,0.52569336,-0.17487468,-0.36871895,-0.26195168,0.2115512,0.33951586,0.3457387,-0.05124196,-0.23028362,0.010739741,-0.071049884,-0.24119584,0.6239143,0.5322858,-0.2639415,-0.42031628,0.15438604,0.43990254,0.11022063,-0.11173721,0.15415491,0.02607346,-0.5393461,-0.2351126,0.13547435,0.05123887,0.4761565,-0.052706044,0.1899648,0.8158231,-0.30098155,0.10072977,0.004285029,-0.202337,-0.010052775,-0.31525216,-0.17003417,0.21816874,-0.8266603,-0.0073574907,-0.31739932,0.92042214,0.16899931,-0.7643563,0.42617536,-0.574808,0.14636825,-0.19757839,0.5745095,0.7035919,0.3326513,0.33518544,0.77308166,-0.45976186,0.2203283,-0.15059425,-0.47678468,-0.014904375,-0.092728294,0.2853132,-0.48875013,0.038825635,-0.07252437,0.14184931,0.057918526,0.19456208,-0.5122162,-0.12528922,0.26523563,0.7637022,-0.35916743,-0.047508117,0.73542076,1.2350416,1.0469786,0.09704008,1.1632749,0.37369737,-0.24599668,0.1024851,-0.1727281,-0.63456905,0.14017048,0.34621263,0.16736217,0.25920033,-0.06330196,-0.14094076,0.23419724,-0.4310959,-0.057781585,0.047742072,0.46370813,0.030337287,-0.026315471,-0.5169078,-0.22306386,0.07065598,-0.13388416,0.011789597,0.26717803,-0.16289935,0.22612055,-0.065679,1.0540743,-0.1448798,0.0981622,-0.051336966,0.5853299,0.29222038,-0.07226894,-0.19663002,0.21999456,0.32298064,-0.025540216,-0.596247,0.17807552,-0.35651544,-0.30103627,-0.184407,-0.31368682,0.050024543,0.16689089,-0.33815306,-0.1121494,-0.0787,-0.32415256,0.5278904,-2.8251643,-0.4085268,-0.056980826,0.343177,-0.32001868,-0.15141347,-0.04707903,-0.6006117,0.4022984,0.21349452,0.47913545,-0.74385655,0.5883673,0.414912,-0.49783614,-0.30296874,-0.7592654,-0.0076864487,-0.12765625,0.35499388,0.022699654,-0.16793104,-0.21825776,0.30717438,0.6517182,0.05686925,0.11045468,0.33162817,0.304056,0.35131073,0.6512292,0.0024414319,0.6168108,-0.3455251,-0.12771678,0.22874022,-0.1260291,0.20720425,-0.22268264,0.1227295,0.41805226,-0.50023735,-0.8782406,-0.7035409,-0.47686222,1.0313108,-0.32105327,-0.424795,0.1615605,-0.08952407,0.06294401,0.081566215,0.3956592,-0.075336866,0.038592,-0.67531425,0.108216085,0.01627134,0.056210726,0.093640804,-0.06945908,-0.40050077,0.70600945,-0.1113804,0.4634841,0.2477417,0.34045595,-0.15277795,-0.374665,0.19273996,0.87771624,0.29372406,0.0042360425,-0.11522167,-0.33255625,-0.22116467,-0.17067862,0.04046434,0.5461411,0.9030059,-0.10203961,0.058901723,0.27840242,-0.16767584,0.16062883,-0.03323747,-0.332194,-0.030252364,0.010734826,0.522119,0.6052971,-0.16743574,0.51654345,-0.054180253,0.19536339,-0.022574289,-0.45850068,0.56408995,0.5673199,-0.11947465,-0.039780524,0.32983795,0.38792548,-0.2540406,0.49351788,-0.6119629,-0.23026,0.7229949,-0.11212408,-0.3212294,0.13021098,-0.3515828,0.19573487,-0.8487109,0.43145746,-0.542511,-0.5211295,-0.18527912,-0.0026628098,-3.8269439,0.3369848,-0.23501076,-0.074058816,-0.25544274,0.019478424,0.3727221,-0.561417,-0.44201747,0.2654071,0.15295564,0.64755166,0.022608442,0.12321599,-0.23809414,-0.17066261,-0.21510641,0.10716437,0.07602986,0.289534,-0.017487321,-0.3205683,0.04260706,-0.07409006,-0.5262477,0.27207848,-0.4401753,-0.54035443,-0.045044545,-0.5134902,-0.4123775,0.5766348,-0.34176084,0.08120737,-0.35936478,0.025604421,-0.23525439,0.2723594,0.07608603,0.08419377,0.025501626,0.08114032,-0.021254225,-0.39138943,0.50328815,-0.0048454576,0.38903576,0.015755387,-0.017489126,0.06847454,0.48903152,0.523831,0.043246087,0.84459025,0.22881818,-0.12164266,0.32455817,-0.30934018,-0.20517884,-0.46018666,-0.38219506,-0.20938082,-0.28328684,-0.38973904,0.009661726,-0.34197536,-0.7563034,0.53987545,0.030782351,0.3129103,-0.06673403,0.3015817,0.32759413,-0.120272115,0.06843715,0.020099547,-0.14794824,-0.6896401,-0.13283826,-0.6593704,-0.47952673,0.12590311,0.58737534,-0.46018082,0.041391436,-0.099381335,-0.12796982,0.14686659,-0.056960743,0.14666998,0.34499502,0.37952158,-0.13129474,-0.6776095,0.41244522,-0.11219321,-0.07677182,-0.5116325,0.15382886,0.7273377,-0.6419745,0.57050985,0.49232647,0.1243157,0.1155239,-0.50389755,-0.17861755,0.13215193,-0.28345025,0.27450165,0.082544506,-0.88601077,0.5470828,0.28105003,-0.48444572,-0.69272023,0.40719,0.17047508,-0.26741654,-0.012352611,0.29567662,0.19372939,-0.073258355,-0.21611036,0.0899371,-0.4627688,0.18094173,0.06592428,-0.053196963,0.35936025,-0.0725379,-0.38630506,-0.6492586,-0.11371938,-0.6006459,-0.25098556,0.1978879,0.0574936,-0.030020837,0.2002744,0.111031376,0.38949093,-0.26643208,0.09988635,0.004116791,-0.47246698,0.24644057,0.5410442,0.31070635,-0.3512155,0.5563337,0.12524079,-0.15152308,-0.074749626,0.07547374,0.42257792,0.0058461255,0.24731612,-0.099054076,-0.16461317,0.29289863,0.61454815,0.058733102,0.32080215,0.08346249,0.060627777,0.401434,0.07460147,-0.059580483,0.17762657,-0.3551883,-0.171821,-0.03777012,0.16196087,0.47043103,0.44882146,0.26725218,0.092212304,-0.2981151,-0.094496645,0.06706184,-0.26384443,-1.1240312,0.52551335,0.20340946,0.6381802,0.6017791,-0.073295526,-0.037869025,0.49442822,-0.17401327,0.16951908,0.3090512,0.009524533,-0.27507254,0.7556291,-0.5283908,0.42454004,-0.115438364,-0.0015646666,0.08182533,0.059593398,0.26684698,0.8409217,-0.24123372,0.080684885,-0.07472699,-0.14285977,-0.07539271,-0.29036126,-0.08655008,-0.43201175,-0.26141062,0.7608866,0.33061984,0.27425683,-0.12740108,-0.06361774,-0.022449791,-0.21707837,0.20011282,-0.2068534,-0.06597794,0.13914655,-0.509774,-0.16073786,0.54904383,-0.005537196,0.10504716,-0.24808593,-0.06593477,0.06820555,-0.1347361,0.07510834,0.008903212,-0.74997985,0.14415038,-0.30619022,-0.24517496,0.42735487,-0.34111524,0.06197799,0.1597157,0.104300365,0.032153454,0.22427024,0.14079939,0.5055975,0.06768679,-0.42127863,-0.39164186,-0.10965097,0.28330857,-0.25657672,0.13086994,-0.41399527,-0.015284411,-0.66392803,0.6751291,-0.055160854,-0.31690758,0.18588684,-0.1487207,-0.053785402,0.52549756,-0.30361804,-0.05917645,0.17380057,-0.2241883,-0.33321005,-0.08134421,-0.23992433,0.17755981,0.4080606,-0.06553801,-0.06906034,-0.33978885,-0.19506907,0.4575191,0.08207654,0.50493383,0.12089818,0.21205299,-0.13864146,0.07257736,0.17290771,0.3810621,0.16186295,-0.029051036,-0.50571096,-0.17213385,-0.2107998,0.13191558,0.01192029,0.10155416,-0.16844259,-0.3067601,0.87306243,0.10773667,1.1456097,0.10135389,-0.29542568,0.036197018,0.46617958,-0.24428926,0.025889859,-0.45703,0.9115835,0.5701181,-0.027427146,-0.1415439,-0.4767354,-0.21561173,0.3194835,-0.336812,-0.05342016,-0.0226386,-0.4137284,-0.488127,0.25650185,0.2751896,-0.040255208,-0.01114411,-0.0056031174,0.077869646,0.084039465,0.48509318,-0.73826116,-0.046709854,-0.008680024,0.29444006,0.01488625,0.2478181,-0.3415756,0.45581153,-0.79316086,0.2566413,-0.57246715,0.044518106,-0.17944059,-0.35261992,0.13798681,0.12105002,0.3369731,-0.21964476,-0.47582173,0.06792684,0.36187595,0.061644197,0.1691048,0.6896354,-0.32909217,-0.12088784,0.13438213,0.58660203,1.2941195,-0.21596089,-0.08167137,0.28551093,-0.4124258,-0.57341325,0.28842226,-0.33845735,-0.13031746,-0.10840715,-0.35478085,-0.44289234,0.18062079,0.22474541,0.04896601,0.09649282,-0.6046216,-0.19710724,0.29522207,-0.32059258,-0.39324108,-0.1920042,0.3475917,0.86637765,-0.3163877,-0.18730664,0.0656566,0.23621634,-0.14816041,-0.6245842,-0.09306373,-0.10916829,0.33997914,0.19073908,-0.24849336,-0.111574575,0.17497952,-0.44561648,0.07470935,0.2809796,-0.3569345,0.07323219,-0.08268154,-0.07590115,0.8699008,-0.10242319,-0.101281114,-0.65109664,-0.41032267,-0.7029856,-0.5352451,0.26643798,0.22758433,0.19063827,-0.26300684,0.016309708,0.032797974,-0.059932154,0.09617092,-0.4900083,0.28010234,0.14490981,0.5299603,-0.26734728,-1.027918,0.01009196,0.2414688,-0.19426593,-0.6992482,0.59379154,-0.0037462923,0.7911727,0.13910463,-0.10931838,-0.0022861552,-0.37545744,0.26094896,-0.45768017,-0.074593656,-0.765277,0.0793581 +954,0.30555272,-0.2786982,-0.5565662,-0.010603988,-0.2657715,-0.20521608,-0.044047438,0.67431694,0.08604646,-0.522303,-0.07800913,-0.23173569,-0.02996291,0.40411136,-0.24419403,-0.44363025,-0.17028926,0.15542604,-0.2244629,0.47320336,-0.25759217,0.22785218,0.023793302,0.4726916,0.062938675,0.29982743,-0.013154681,-0.0059377644,-0.29837218,-0.20604748,-0.050473254,0.17810924,-0.711715,0.025499392,-0.15021703,-0.6396455,0.081942745,-0.52550584,-0.30910528,-0.750347,0.23765662,-0.81302357,0.5517579,0.1497393,-0.19617778,0.20937075,0.1438422,0.4154352,-0.11394898,-0.021719387,0.17450668,-0.12510088,0.080808,-0.1986364,-0.38095394,-0.30038527,-0.5523237,0.087133236,-0.38915202,-0.35149992,-0.16514675,0.05569291,-0.32240206,0.040602203,-0.008301661,0.40658304,-0.45479077,-0.09193499,0.25616938,-0.23873717,0.3587874,-0.45770842,-0.086246625,-0.22997192,0.026761252,-0.46384394,-0.09276645,0.41218123,0.07850556,0.58003044,-0.0828847,-0.27853847,-0.48545074,0.1348431,0.011082409,0.35048887,-0.35903925,-0.4995815,-0.061301686,0.0151418215,0.20619027,0.24103469,0.25503537,-0.22002935,-0.05773479,0.09677581,-0.26383206,0.25358513,0.45322946,-0.29269853,-0.20667544,0.19401127,0.6391132,0.18058611,-0.0624935,-0.0048694517,-0.019806175,-0.35200408,-0.27859014,-0.07092133,-0.16219355,0.60773355,0.060624145,0.29176342,0.69348115,-0.26990414,0.07675007,-0.037292227,-0.10054514,0.021216769,-0.32670933,-0.36100787,0.42336434,-0.36042845,0.32660148,-0.083884865,0.6836427,0.23759955,-0.8495938,0.3948536,-0.5965973,0.0908951,0.022727827,0.4978997,0.41818315,0.64884883,0.4764077,0.59335285,-0.5020355,0.095606856,-0.15195307,-0.26108253,0.04952975,-0.20933135,-0.021343552,-0.3917551,-0.008007242,-0.07074057,-0.28925034,0.06590553,0.2083252,-0.62392205,0.0077680647,0.24294876,1.0055379,-0.24679321,-0.116423525,0.6316135,0.9620623,0.9351267,-0.025739614,1.1698006,0.095482275,-0.21753035,0.39478397,-0.10748721,-0.8500052,0.18157683,0.49388367,-0.22951151,0.35741812,0.17118405,0.08600506,0.5419246,-0.3910465,0.14475879,-0.19859725,0.08609818,0.05685819,-0.21338771,-0.41516507,-0.19601887,-0.11564464,-0.081856914,-0.26723883,0.35124862,-0.054801866,0.324158,-0.02342397,1.9718888,-0.018702853,0.18375383,0.14349006,0.64528316,0.017125975,0.08613371,-0.103754245,0.24666959,0.051794544,0.2954692,-0.31773362,0.1339137,-0.19982435,-0.62364125,-0.0938569,-0.2461448,-0.07250799,-0.17282456,-0.4896786,-0.17184687,-0.15045987,-0.14876188,0.3671746,-2.473769,-0.04404735,-0.06614138,0.3303227,-0.34182218,-0.4554568,0.092123955,-0.42703968,0.4785033,0.41298205,0.509302,-0.6731943,0.39932626,0.48203883,-0.4689861,-0.102689,-0.5661587,-0.13450941,0.0036118662,0.29825544,-0.05455361,-0.092826076,0.06773008,0.05023219,0.43369716,-0.16761567,-0.06321465,0.16821083,0.34815195,-0.0072775576,0.5521171,-0.2011461,0.3672175,-0.3878903,-0.25734657,0.35333925,-0.5095958,0.13635494,0.16955422,0.079889566,0.2951453,-0.557468,-1.0214084,-0.7170938,-0.4670847,1.0719854,-0.019268064,-0.34084004,0.39115328,-0.41767973,-0.24777505,-0.2825143,0.35914594,0.008357238,0.17793244,-0.78418064,-0.0151702855,-0.32601225,0.20953362,0.15721534,0.016903698,-0.48587015,0.5998182,-0.12559032,0.4992835,0.58782536,0.08951576,-0.3665612,-0.49705252,-0.031289354,0.9640523,0.37661013,0.24062452,-0.13978621,-0.22215329,-0.3457248,-0.03944208,0.05033608,0.38372344,0.93196255,-0.20565504,0.05256403,0.268964,0.045154355,-0.08681851,-0.17284335,-0.3249191,-0.08695315,0.17224255,0.49830362,0.61037624,-0.28495198,0.4322589,-0.14831915,0.5403516,-0.13326539,-0.42628348,0.23621456,0.70396966,-0.15314414,-0.067556396,0.6933423,0.52086455,-0.48714468,0.5486381,-0.6156064,-0.2272264,0.43588603,-0.16009484,-0.5402709,0.2647598,-0.24277122,0.11189897,-1.0091708,0.26750368,-0.32901594,-0.29951045,-0.63610774,-0.23626608,-3.256419,0.17091331,-0.22198783,-0.21946785,0.015968801,-0.1407738,0.14684604,-0.708697,-0.79738057,0.033292774,0.10285085,0.595893,-0.07583639,0.012335759,-0.2315286,-0.26120883,-0.2660509,0.16623253,0.36936358,0.17083813,0.0443994,-0.64893365,-0.35695145,-0.28845268,-0.56391436,0.07789688,-0.73143566,-0.4138772,-0.29087862,-0.79869944,-0.38624492,0.66956174,-0.2857471,0.07173797,-0.22970408,-0.083427384,-0.17540087,0.32878223,0.1361774,0.19598426,0.008362289,-0.062351044,0.03808696,-0.24169841,0.022965688,0.17767972,0.38985536,0.27349347,-0.22458445,0.22662497,0.63455254,0.9380766,-0.061613306,0.76880455,0.5991261,-0.24827674,0.48686022,-0.40619043,-0.35748595,-0.8037956,-0.370734,0.07399413,-0.33032593,-0.5115987,0.1961766,-0.3983188,-0.80389434,0.8833351,-0.113771886,0.059378207,0.081317954,0.22855149,0.43506587,-0.38254923,-0.17496936,-0.11859333,-0.001968118,-0.64336246,-0.3097224,-0.5164144,-0.5673883,0.03447903,1.1856788,-0.0119540505,0.051943786,0.2550311,0.03408698,0.11596779,0.15137775,0.042162813,0.11108235,0.42399758,0.048711464,-0.59315264,0.43106192,0.052365907,-0.11309297,-0.4623502,0.2376826,0.5584145,-0.7864999,0.54296505,0.19214028,-0.038869467,0.027272075,-0.54841757,-0.1303835,-0.08829293,-0.06168459,0.31343895,0.17989019,-0.76040584,0.26169455,0.70781493,-0.30558902,-0.7836708,0.3176964,-0.110592805,-0.274631,-0.1370016,0.29521468,0.1401858,0.022449017,-0.18303499,0.17676815,-0.41064242,0.096629456,0.48736027,-0.048880365,0.2761248,-0.14621554,-0.104453124,-0.89281696,0.42360395,-0.3922485,-0.27013236,0.39944208,0.029686065,-0.20334387,0.3412047,0.13573608,0.32631472,-0.20121591,0.017373582,-0.044986524,-0.36728376,0.38877508,0.39919728,0.49359387,-0.55274147,0.58575034,-0.061974987,-0.12165502,-0.088019334,-0.18564738,0.516931,-0.07442451,0.14308818,0.12052954,-0.33521253,0.2298632,0.79659724,0.11734501,0.5395627,0.019374022,0.023635488,0.26589817,0.27879512,0.07380401,0.2679373,-0.57046187,0.36818945,0.059476793,0.09911764,0.50697076,0.118865915,0.31484923,-0.15267166,-0.1671171,-0.062670305,0.24143878,-0.046817206,-1.1701052,0.33222535,0.10443126,0.8342024,0.55911785,0.33417588,0.14908956,0.70241034,-0.23131593,0.12676302,0.40869856,-0.11524259,-0.64154524,0.6412112,-0.5936886,0.5273199,0.1372266,0.03971099,0.042208195,-0.102574736,0.5936321,0.6671785,-0.15659246,0.009431945,-0.08275476,-0.11432049,-0.010345142,-0.5199085,0.042596035,-0.41498676,-0.23613669,0.6321163,0.40804517,0.30867055,-0.13419527,-0.04382181,0.12655202,-0.18220781,0.34883624,-0.17759481,0.040918224,0.049334545,-0.37902388,-0.24341632,0.6802485,-0.024797421,0.13341777,-0.1370449,-0.35092264,0.25030047,-0.04800248,-0.23349921,0.008781006,-0.6640076,0.16008925,-0.49624714,-0.26459342,0.3841674,0.14365496,0.19573918,0.13749285,0.10894179,-0.44285825,0.63633597,0.08142789,0.6934416,-0.08633285,-0.17005311,-0.14117303,0.34022665,0.11811658,-0.21737821,0.01882102,-0.1719901,0.09266916,-0.5142929,0.3620137,0.04071915,-0.4050673,0.08962314,-0.174621,0.0071943034,0.44204447,-0.062902324,-0.14931448,-0.090942875,-0.119314395,-0.1596538,-0.35342818,-0.092273474,0.33633834,-0.07990547,-0.11825721,0.0018443695,-0.20139037,0.04779776,0.6963335,-0.10255655,0.32690266,0.29236633,0.12364884,-0.5098032,-0.11682543,-0.043464303,0.50705934,-0.16886891,0.077062,-0.24638191,-0.34916255,-0.30227983,-0.03298823,-0.28178668,0.4824475,0.13628492,-0.4801917,0.8776295,0.17285237,1.458367,-0.10126127,-0.42665973,-0.025291044,0.3915313,-0.12108599,0.04254719,-0.43350407,1.1094123,0.57982796,-0.11842407,-0.23027182,-0.26952806,-0.17825545,0.15956523,-0.25218433,-0.12540701,-0.04989206,-0.5555481,-0.25972295,0.2741973,0.3763245,0.2423699,-0.085901156,0.22601968,0.21034148,0.07143371,0.17677332,-0.27062014,-0.15339667,0.47584504,0.25053674,-0.106025405,-0.06485948,-0.47733572,0.35873228,-0.4059201,0.25996906,-0.3323043,0.11383632,-0.21835232,-0.38327914,0.14533776,-0.059082493,0.3762145,-0.33906284,-0.3381439,-0.1638156,0.48892725,0.114277594,0.20211247,0.6534366,-0.29210597,0.1311525,-0.20379351,0.5088111,0.9254531,-0.18265373,-0.08935519,0.27942723,-0.16675243,-0.5460503,0.435578,-0.13730761,0.01857081,-0.13148911,-0.15041408,-0.56664413,0.13596544,0.28356594,-0.27821323,0.11147017,-0.50594634,-0.15896419,0.13756372,-0.4595909,-0.26391393,-0.4245081,0.17900573,0.70318234,-0.24350159,-0.3234525,0.25962383,0.2699251,-0.13183485,-0.25150442,-0.22273795,-0.1584467,0.23425943,0.18938072,-0.65210754,0.03509098,0.16211806,-0.33083364,-0.17170876,0.27010542,-0.33261207,0.08727844,-0.279961,-0.03424868,1.0011946,-0.014321694,0.16372475,-0.35626096,-0.5802132,-1.0030023,-0.33376652,0.59033763,0.24268572,-0.02191362,-0.5929927,0.007625291,-0.20274268,-0.34512183,0.01056689,-0.2945283,0.26735184,0.097104944,0.55433625,-0.31582177,-0.6283785,0.18616049,0.29817858,0.06200012,-0.55910563,0.5252307,-0.029474076,0.910406,0.08322646,0.010028582,0.47901428,-0.49478182,-0.08642746,-0.2693451,-0.22626819,-0.4626558,-0.056376807 +955,0.6949909,-0.11773289,-0.41583735,-0.019228967,-0.38013908,0.28399405,-0.32618877,0.28893808,0.041143224,-0.699907,-0.3555462,0.14678133,-0.15400821,-0.105881214,-0.30988222,-0.736977,0.10711694,0.13169524,-0.2639126,0.83393186,-0.43652982,0.37774655,-0.16996185,0.18673316,0.28306583,0.3705342,0.26754558,-0.06425632,-0.09136633,-0.47327995,0.17644487,-0.0049690465,-0.6739918,0.47188032,-0.08954701,-0.4502816,0.11916445,-0.40146655,-0.3401173,-0.73258656,0.42265394,-0.9204824,0.5073035,-0.0021971373,-0.26821515,0.15754022,0.2850096,0.12723075,0.1369541,0.038653255,0.15390211,-0.17383562,-0.058607683,-0.4291973,-0.2243438,-0.49277526,-0.557696,-0.0549802,-0.4275952,0.024530906,-0.35812286,0.2725149,-0.20927748,0.000212541,-0.31771293,0.016972143,-0.50355947,-0.010320475,-0.03455949,-0.032156054,0.04622917,-0.6722091,-0.2638119,-0.26495135,0.18927242,-0.048122432,-0.019166008,0.5120326,0.12378338,0.51319575,0.15592988,-0.22863261,-0.3142718,-0.16208938,0.44765678,0.48617914,-0.3861346,-0.22577451,-0.23265529,-0.2162706,0.7470633,0.3454752,0.14852849,-0.13346674,0.15521383,-0.10369281,-0.24007383,0.6257165,0.77736974,-0.46974605,-0.13486482,0.2653705,0.526117,0.10098905,-0.2535804,0.078612894,-0.10307048,-0.3285324,-0.40065092,0.23733616,-0.16452448,0.2804557,-0.20637536,0.085277595,0.47659022,-0.41100237,0.41613638,0.24609672,-0.123557165,0.04087483,-0.16771021,-0.30730283,0.35114706,-0.59599197,0.26409242,-0.5003854,0.8932673,-0.040494718,-0.62353545,0.45332056,-0.547985,0.12877963,-0.0033173584,0.68612,0.5961215,0.62488467,0.2182441,0.81583464,-0.21549733,-0.03158835,-0.108796306,-0.124138586,0.03742162,-0.044550594,-0.008070505,-0.2513043,0.09154768,0.024409793,-0.027228603,-0.1852625,0.6383832,-0.46352154,-0.21490662,-0.019504238,0.72359204,-0.34378174,0.052925825,0.7336271,1.1593759,0.88083637,0.044669714,1.1935996,0.13595237,-0.122022636,-0.2834385,-0.1260121,-0.63775784,0.23374686,0.43850005,-0.2512862,0.44221255,0.20992129,-0.04959344,0.19466877,-0.63871384,-0.12017281,-0.20136715,0.51379883,-0.098197505,-0.020212488,-0.4383449,-0.041236207,0.30290562,-0.1533168,0.346944,0.45229632,-0.559632,0.3361649,0.27163082,0.9746262,-0.09650113,0.13486472,0.1256207,0.6721448,0.20792834,-0.037555456,0.2712135,0.19131199,0.1555762,-0.20579672,-0.6816418,0.074962184,-0.30964854,-0.6970686,-0.14820133,-0.43195784,-0.28758913,0.25567466,0.022298392,-0.4005289,-0.0407452,-0.18518558,0.3490038,-2.3955255,-0.05177563,-0.2011934,0.30968446,-0.29448262,-0.41335046,-0.13294116,-0.6356027,0.52026504,0.15331332,0.43326804,-0.6816189,0.36765215,0.7966877,-0.6216093,0.09125536,-0.62389743,0.044803023,-0.16670778,0.53765523,0.020871427,-0.1035739,-0.06574877,-0.10299528,0.58817035,0.2301701,0.13122444,0.33252364,0.43872958,-0.04966841,0.36733568,0.065396756,0.390938,-0.47959453,-0.19591144,0.4897604,-0.3937802,0.5123874,-0.18466176,0.081483476,0.48553717,-0.59716135,-0.49845207,-0.798146,-0.47126308,1.2218788,-0.21647845,-0.7337051,-0.00073600735,-0.2614651,-0.2464044,-0.005782173,0.49873102,-0.30336654,-0.09358358,-0.60325277,-0.04697599,-0.25748476,0.39493662,-0.048256095,0.2439457,-0.41614324,0.9859506,-0.16452573,0.39119643,0.21317379,0.41531843,-0.28827146,-0.51649106,0.113267586,0.88147914,0.6108881,0.21156766,-0.3785437,-0.24889007,-0.053882103,-0.34211192,0.03714744,1.0379992,0.4765023,-0.15452436,-0.21552365,0.47642773,-0.13210429,0.034704376,-0.21993682,-0.3786492,-0.38156503,-0.16379555,0.71987957,0.620877,-0.15784726,0.2632775,-0.12008638,0.39884666,-0.36842126,-0.37867495,0.5113781,0.7132827,-0.21757743,-0.11333183,0.840114,0.7022957,-0.2993409,0.6210183,-1.0174146,-0.40144846,0.31520727,-0.13114713,-0.45999655,-0.033982478,-0.38230532,0.27794373,-0.609031,0.47431195,-0.5654177,-0.396514,-0.6867896,-0.03134887,-2.1381495,0.12763295,-0.24464947,-0.013592156,-0.2957698,-0.25394714,0.31086272,-0.6035632,-0.5063114,0.304291,0.13093087,0.518791,-0.023370806,0.03743328,-0.34938732,-0.41768953,-0.39071915,0.23301095,0.24912244,0.34132317,-0.4072707,-0.23822998,0.21234947,0.025512818,-0.084860794,-0.11967242,-0.4099812,-0.55583286,-0.2155575,-0.2892586,-0.18339978,0.5411657,-0.59128857,0.04608734,-0.2700721,0.024234973,-0.21069075,0.12462802,0.16471688,0.15382852,0.11910127,-0.13409221,-0.0068208505,-0.4634484,0.70495135,0.103009544,0.39909685,0.6201206,-0.26260367,-0.13319919,0.30562457,0.49786693,0.15627839,0.9425194,0.076529875,-0.27741084,0.34351143,-0.1244193,-0.5085591,-0.6784985,-0.11152457,0.08060905,-0.29081294,-0.46315098,-0.17522979,-0.43660927,-1.0080034,0.5198791,0.08301242,0.51771945,-0.18398945,0.46695608,0.39815617,-0.100907646,-0.087112814,0.1724936,-0.07761184,-0.63959825,-0.4144128,-0.73597974,-0.2353151,0.16309205,0.7837231,-0.06400813,-0.13307267,0.3908715,-0.22218545,0.14049993,-0.011493476,0.03106202,-0.020397572,0.5138818,0.121504314,-0.6091528,0.64453083,0.17938921,-0.047726993,-0.45242512,0.35915205,0.74442226,-0.6587893,0.21003488,0.47196245,0.07342977,-0.284516,-0.61505485,-0.049481906,-0.13505915,-0.2903735,0.44608784,0.41812235,-0.82054925,0.38838404,0.14284584,-0.15371102,-0.6828094,0.60122687,-0.056639366,-0.13965064,-0.062523715,0.5047901,0.19331002,0.039390363,0.10980134,0.4178992,-0.34911218,0.33832246,0.042860128,-0.051954113,0.28321308,-0.26196066,-0.46550962,-0.80851245,0.2456436,-0.6606074,-0.4170296,0.40954116,-0.0009200481,-0.061895683,0.3262525,0.37265846,0.5980015,-0.26601264,0.21903491,-0.08401636,-0.102149375,0.57066524,0.4011175,0.52182424,-0.4442083,0.7354565,0.17869195,0.01096979,0.20637694,0.26456988,0.3191009,-0.10453452,0.39652982,0.065405674,-0.045942947,0.0397216,0.7596268,0.46958044,0.3749554,0.12813312,-0.25326356,0.30672348,0.059690777,0.30471987,-0.0012368972,-0.7464232,-0.23141773,-0.035215102,-0.07157945,0.42405975,0.14035605,0.2942994,-0.17510591,-0.05459641,-0.019499917,0.04725879,-0.21508922,-1.2218922,0.15437937,-0.0053226626,0.727313,0.6472987,-0.19528945,0.20699373,0.6965781,-0.27423576,-0.014882023,0.4352284,0.16569728,-0.4411247,0.31514513,-0.42278436,0.23624992,-0.12692167,0.13956285,0.016749356,-0.1154766,0.3257995,0.8765907,-0.252474,0.091762856,-0.04579238,-0.34633777,0.10079081,-0.12919234,0.36989358,-0.44232163,-0.3308624,0.5875068,0.3912028,0.58983314,0.00051454856,-0.047217663,-0.20624854,-0.21302843,0.27650613,0.03678624,0.09249317,-0.24361323,-0.45556405,-0.32490832,0.5281027,-0.12968506,-0.0010999441,0.06705399,-0.2349651,0.24446808,-0.03596053,-0.09567864,0.00013985083,-0.6657854,0.11523194,-0.14495888,-0.38072756,0.1881966,0.059036914,0.18298642,0.24722873,-0.0683694,-0.08476036,0.20614961,0.32131135,0.4668855,0.06774413,-0.19334064,-0.4519872,0.13985373,0.16284825,-0.336895,0.1002812,0.030430097,0.3243238,-0.6836357,0.3941407,-0.23807767,-0.3455092,0.060997512,-0.20932968,-0.27515525,0.624493,-0.034610685,-0.20580666,0.09712553,-0.07025279,-0.32213253,-0.19593757,-0.16566974,0.09061667,0.063746616,-0.05847464,-0.21529484,-0.32363793,-0.12559494,0.17238998,0.13047062,0.20335929,0.43158516,-0.055337217,-0.5569203,-0.079674534,0.24702397,0.5516992,-0.009746606,0.17954943,-0.14490397,-0.6416159,-0.49273145,0.4324605,-0.14835654,0.099998474,0.10002002,-0.41092828,0.6187433,-0.20477279,0.97333455,0.046579566,-0.31028253,-0.12870303,0.72562313,-0.16592279,-0.021912782,-0.355652,1.0849102,0.50698715,-0.27039957,-0.06263642,-0.42152098,-0.07495262,0.1925337,-0.2009957,0.030537091,0.07849883,-0.63801104,-0.070495404,0.22467582,0.4687392,-0.12468959,0.0034052224,-0.08767304,0.2130664,0.21113355,0.6167915,-0.37399417,-0.54450166,0.47700214,0.091128975,-0.10795907,0.26386452,-0.29794216,0.17025137,-0.69248766,0.10933674,-0.6679419,-0.017180903,-0.13734078,-0.40434858,0.26664415,0.12024032,0.43748686,-0.49173197,-0.59930456,0.050032377,0.33267227,0.14733627,0.32246172,0.42737374,-0.068403706,0.008605827,-0.010039793,0.5127985,1.2230132,0.008114135,-0.08993937,0.19977225,-0.6509284,-0.84526545,0.2209222,-0.5363384,0.017648298,-0.023619175,-0.59186774,-0.30631992,0.22291125,0.058343153,0.07166035,-0.008779622,-0.8988958,-0.3067689,0.04528308,-0.27419335,-0.25062767,-0.21824318,0.26872033,0.8390278,-0.38193133,-0.31266072,-0.17601348,0.2505396,-0.40742347,-0.6513447,-0.057439223,-0.22192486,0.30444866,0.09402085,-0.16425923,-0.16901706,0.2116579,-0.50505424,0.046688113,0.2312701,-0.48920372,-0.022248112,-0.16490188,0.2891009,0.572086,-0.116879925,-0.045367368,-0.30629432,-0.5207484,-0.7743174,-0.41612688,-0.084603466,0.45595175,0.0566437,-0.44417027,0.025053611,-0.2498624,0.05369126,-0.046211533,-0.5521752,0.6354813,0.24158779,0.42958105,-0.046283416,-0.8337498,0.0943429,0.11458738,-0.011919599,-0.5943269,0.524564,-0.21381705,0.96891534,0.17036428,-0.006432171,-0.08200126,-0.7038953,0.26492456,-0.27158022,-0.1655865,-0.9038918,0.32193688 +956,0.40141532,-0.012814947,-0.5077764,-0.12137041,-0.5222083,-0.23824188,-0.34106776,0.2580197,0.2949437,0.13232315,-0.13330835,0.04549216,0.007666232,0.36572346,-0.07969342,-0.58781445,-0.06293165,0.16386293,-0.6722861,0.7207995,-0.402219,0.34739524,0.06912546,0.4436141,0.30304042,0.47116005,0.24084152,-0.028167235,-0.19843785,-0.26492605,-0.110859156,0.2671472,-0.6162988,0.15387411,-0.28977013,-0.19345988,0.16460611,-0.49376795,-0.3052458,-0.7819533,0.075924866,-0.8730672,0.59967905,-0.0414232,-0.16892794,-0.34843102,0.37274686,0.47652918,-0.14734752,-0.12197819,0.19893561,-0.2097339,-0.039481856,-0.29608047,-0.09410552,-0.5230671,-0.45519403,-0.1183203,-0.6944485,-0.32882854,-0.10553673,0.24815884,-0.32146582,-0.14862578,-0.110501416,0.34974825,-0.4427754,0.10592575,0.3085822,-0.32550982,0.13875446,-0.4802508,0.10105205,-0.15083943,0.45148817,0.14451195,-0.18437141,0.48039505,0.31221685,0.26243088,0.31856543,-0.31983465,-0.28224766,-0.28029212,0.088850565,0.45958474,-0.08488833,-0.29124436,-0.24930115,0.07413446,0.44655818,0.40356445,0.15023085,-0.23170276,-0.00044786633,-0.17973325,-0.124316595,0.5875694,0.5209821,-0.20810984,-0.22919096,0.38362643,0.5633902,0.47163406,-0.39067748,0.018612433,-0.0052631935,-0.41091117,-0.1081946,0.06939346,-0.09252004,0.46704474,0.053852383,0.051050637,0.92775714,-0.1093703,-0.06744887,-0.05648991,0.0700433,-0.27696648,-0.3462716,-0.27156177,0.1026816,-0.48860106,0.09037938,-0.09273883,0.7050486,0.016686382,-0.64707834,0.38984188,-0.61335003,0.05095723,0.07706401,0.5985509,0.5393103,0.55464214,0.37437811,0.76699054,-0.0800765,0.1869932,0.04115486,-0.46254203,0.06424984,-0.32275453,0.12773325,-0.43928587,0.16897339,-0.23514095,0.025979655,-0.04135853,0.30170584,-0.4886898,-0.098085046,0.24843232,0.9414831,-0.2533981,-0.12395013,0.69335157,1.1884694,1.0205187,-0.1281294,0.9252003,0.31444913,-0.07520612,0.037255716,-0.30413258,-0.6437443,0.15872963,0.39733556,-0.17155658,0.38863862,-0.09062889,-0.017564291,0.3158715,-0.32564554,-0.018929236,0.07886546,0.32243195,0.25280657,-0.11932931,-0.4768282,-0.13386355,-0.0017995059,-0.05177258,0.22423717,0.26785785,-0.33596742,0.35356203,-0.015579009,1.4197466,-0.12950587,0.019453986,0.107063726,0.7481805,0.31644645,-0.061176196,0.1265785,0.60576874,0.26335734,-0.0008766373,-0.47397357,0.30278152,-0.44531468,-0.44615567,-0.12611534,-0.42682716,-0.23012343,0.25136614,-0.42333668,-0.09019225,-0.07647743,-0.0601295,0.30786875,-2.869967,-0.18896116,-0.18077183,0.2181086,-0.28017,-0.079344206,0.11324307,-0.47120172,0.1274767,0.23735365,0.47181037,-0.5652725,0.5154606,0.661685,-0.583909,-0.12817906,-0.54830587,0.0015408879,-0.114735246,0.6548959,-0.08197626,-0.055170693,-0.040867794,0.18959482,0.7320618,0.16138935,0.1437048,0.549954,0.29265213,0.12850991,0.41852984,0.03743816,0.5942117,-0.25208184,-0.1980202,0.3675854,-0.27832267,0.37592855,-0.10785346,0.044629924,0.7003163,-0.38649604,-0.8255026,-0.56451225,-0.24622396,0.91055787,-0.37569454,-0.5351817,0.21926285,-0.06772767,-0.1566102,0.13484727,0.5895745,-0.17785527,0.22506733,-0.47351533,0.04029595,-0.12375625,0.1801199,-0.014603762,0.09609644,-0.23923212,0.6737144,0.030155638,0.5709091,0.15067562,0.36615983,-0.24308255,-0.44478995,0.15747426,0.65612435,0.38328376,-0.09657116,-0.17510095,-0.3352415,-0.091768965,-0.29798564,0.07909444,0.5347376,0.6974144,-0.21930529,0.18348779,0.35470232,-0.15730104,-0.04647367,-0.16398826,-0.24346001,0.021411275,0.24334595,0.3215838,0.9056591,-0.19881783,0.52245706,-0.14078905,0.28086922,-0.17904623,-0.5740605,0.6835144,0.4298605,-0.2822744,-0.14174148,0.4980188,0.5013183,-0.4965564,0.4689246,-0.71914315,-0.12925915,0.6310537,-0.029776571,-0.5796397,0.18310149,-0.16823894,0.11438214,-0.8115701,0.41389766,-0.32809633,-0.39620343,-0.4242368,-0.12571612,-3.000859,0.058832176,-0.16368762,-0.19081208,-0.28661266,0.012261708,0.310437,-0.74392813,-0.5374633,0.08529913,0.19276902,0.4436344,-0.14063278,0.16218771,-0.24676369,-0.2741134,-0.23322651,0.36895135,0.016408818,0.39330614,-0.31702718,-0.50533956,-0.067789696,0.043278582,-0.57966036,0.18764171,-0.5504522,-0.26739985,-0.054293178,-0.5791709,-0.18032025,0.591879,-0.42607778,0.0874873,-0.30515727,0.073672704,-0.25921458,0.113406196,0.18165855,0.1383431,0.18718295,-0.04109342,0.0359932,-0.37803954,0.45004413,-0.11663588,0.4782768,0.10771645,0.016515834,0.17901243,0.41804692,0.51900965,-0.26542795,0.9906814,0.42299905,-0.113419905,0.29985395,-0.30121383,-0.239805,-0.57845396,-0.3804573,-0.080871984,-0.3785944,-0.6058572,0.009917382,-0.31639975,-0.7978998,0.6307917,0.026420541,0.49472174,-0.05506646,0.09176664,0.36716846,-0.30289987,-0.06990995,0.014152744,-0.18447587,-0.5635558,-0.18287887,-0.59011406,-0.5467417,0.14093521,0.83300215,-0.25871423,-0.09885854,0.014218315,-0.4106097,-0.004402415,0.10218067,0.02499186,0.22695789,0.390944,-0.05559944,-0.62456065,0.35735467,-0.058556914,0.030733492,-0.42468703,0.053933375,0.6524128,-0.71735775,0.58392876,0.18453808,0.12799856,-0.32630718,-0.5221498,-0.23678038,0.040337894,-0.1483984,0.5439355,0.18561956,-0.7639044,0.4131208,0.09450214,-0.58519214,-0.62984747,0.2727127,-0.17708646,-0.2616803,-0.011553421,0.28021222,0.08379211,-0.1039481,-0.21327439,0.18802384,-0.33373126,0.18248424,0.25300664,-0.13360296,0.33650842,-0.087225564,-0.34759447,-0.73395294,0.08046477,-0.46540177,-0.39450333,0.4099455,0.01947598,-0.09096625,0.1294933,0.22843264,0.28491715,-0.16098467,0.19588928,0.027372463,-0.27997914,0.37663487,0.49285692,0.4636612,-0.43916368,0.58946365,0.190266,-0.2463286,0.1491999,0.0023770968,0.28756636,-0.101930246,0.40548703,0.02349492,-0.012792424,0.24542548,0.5908248,0.21766533,0.51588196,0.084314324,-0.19378565,0.45353362,0.007471303,0.25945583,-0.02715169,-0.57983655,-0.103673205,-0.14224765,0.09403561,0.5966498,0.39728495,0.30657133,0.2004293,-0.20275797,0.049351268,0.12877005,-0.21456629,-1.3102206,0.34587842,0.46306974,0.8885706,0.21512532,0.09527337,-0.22529055,0.88660043,-0.3001756,0.029488983,0.4805226,0.17419952,-0.48301098,0.76422274,-0.48320666,0.48739108,-0.08888361,-0.1311418,0.21253294,0.10351087,0.45502275,0.7913429,-0.20831053,0.003731745,-0.09605595,-0.28268987,-0.06962264,-0.24644178,0.084324405,-0.35512313,-0.50648886,0.69354814,0.3879492,0.38026258,-0.19209573,-0.04311318,0.08282873,-0.106614254,0.18894388,-0.10261683,-0.08961343,0.073198214,-0.44442362,-0.2590353,0.666612,-0.10869967,0.10951779,-0.19753994,-0.28299457,0.13074522,-0.19609417,0.019720905,0.006471747,-0.72069705,0.08484366,0.025047142,-0.57622916,0.54040974,-0.22437574,0.091250926,0.05797694,-0.06283893,-0.08829351,0.49142107,0.15697818,0.68927413,0.0024461427,-0.1826084,-0.21708962,0.16169003,0.19528215,-0.18808177,0.057132967,-0.35497406,0.008109748,-0.6133795,0.48297527,-0.28508556,-0.495565,-0.07795849,-0.21375646,-0.06831939,0.6035853,0.06305849,-0.24037625,0.065758,-0.32919723,-0.5047765,-0.07456876,-0.2859974,0.18277435,0.21148112,-0.21239875,-0.1253904,-0.1796995,0.019557988,0.42952365,-0.14407201,0.46487018,0.20837453,-0.04738502,-0.12525027,0.040071834,0.23426907,0.45833904,0.14852749,0.24421152,-0.19940208,-0.35381338,-0.41100147,0.17161182,-0.15844369,0.24341415,0.14233463,-0.33351427,0.96321684,0.058912117,1.4405264,0.14499193,-0.39522925,0.2599389,0.63346696,-0.072578765,0.15552145,-0.49187028,1.0385053,0.4851994,-0.10203872,-0.08463363,-0.49811667,-0.13243727,0.23666434,-0.44627762,-0.022992253,0.0059492867,-0.4980273,-0.19190216,0.07083922,0.1871377,0.09750896,-0.03528247,-0.12573327,0.1158086,0.17004225,0.43262067,-0.52953506,-0.25553763,0.3360385,0.24289718,-0.09267889,0.062861994,-0.46018606,0.47133234,-0.64646053,0.21461192,-0.5326523,0.23908158,-0.42771754,-0.47411174,0.08322595,-0.10104696,0.4362231,-0.39827445,-0.36841905,-0.09736852,0.48751342,0.123718545,0.098698,0.6655989,-0.24295211,0.015959991,-0.009055972,0.5620363,0.967701,-0.46610996,-0.086782865,0.2809029,-0.42957896,-0.6177054,0.34109876,-0.48345956,-0.10217737,-0.15841705,-0.57832927,-0.51892775,0.2144329,0.03969615,-0.039290976,0.0030179957,-0.5649429,-0.08504152,0.24244754,-0.20408373,-0.23228207,-0.15099214,0.30851337,0.86465925,-0.21804349,-0.5861193,0.031042771,0.20485362,-0.20458262,-0.5073563,-0.05969082,0.009299827,0.35492522,0.078998104,-0.37696713,-0.09865988,0.3356228,-0.54447967,0.015372385,0.23845543,-0.38700894,0.16870697,-0.23360504,-0.004049599,0.9232488,-0.28156143,-0.22556092,-0.6756163,-0.5777178,-0.92730844,-0.62892526,0.012157611,0.23256403,0.001338172,-0.43019444,0.07072794,-0.20102951,-0.100541785,0.03639013,-0.6898978,0.30325925,0.08379528,0.57003814,-0.32095775,-1.0723782,0.17321578,0.13110504,0.03933462,-0.7715848,0.53770036,-0.1887575,0.89245784,0.14031525,-0.0689608,-0.040815074,-0.42215523,0.09500973,-0.3841919,-0.21253824,-0.8252143,0.22505918 +957,0.5601714,-0.21992618,-0.4925033,-0.2865319,-0.20425142,-0.12545921,-0.20218253,0.7356414,0.46201858,-0.048678335,-0.31483284,0.10510975,0.020352982,0.2732828,-0.11803248,-0.9750952,-0.008485754,0.11581352,-0.582751,0.7316394,-0.45140085,0.23461246,-0.16200106,0.45499682,0.082175545,0.29138875,0.22441947,0.25650924,0.089606136,0.04346391,0.11397307,0.34484157,-0.5607407,0.2276411,-0.22899461,-0.28750947,-0.17511235,-0.32389748,-0.057725057,-0.924081,0.07428452,-0.62708586,0.48182914,-0.014612204,-0.48976508,-0.06578777,0.16965495,0.12222733,-0.3827127,-0.13520809,0.03040435,-0.11324639,-0.25504085,-0.3158438,-0.02975218,-0.5508621,-0.5344138,-0.14817023,-0.53516865,-0.09466225,-0.089355744,0.20239174,-0.33305928,-0.17416297,-0.13323641,0.57229304,-0.31505787,-0.21575212,0.4434278,-0.1253428,0.19358271,-0.57016253,-0.08435887,-0.14637674,0.34726468,0.32700804,-0.21866657,0.286373,0.36274195,0.46346855,0.3077381,-0.36440682,-0.30237743,-0.18821026,0.12783979,0.2134934,-0.17876041,-0.35285902,-0.37897888,0.09405742,0.42540273,0.32912335,0.37728313,-0.012664606,0.017428791,-0.07035608,-0.103608705,0.72313094,0.5274587,-0.29577675,-0.30614397,0.27431977,0.728762,0.25483286,-0.32182768,0.018099913,-0.057861734,-0.4159485,-0.17648594,0.050355673,-0.13156696,0.5398292,-0.11091723,-0.03927533,0.80252224,-0.1286369,-0.13522604,0.20970695,0.13598128,-0.18818288,-0.4529166,-0.2689166,0.24666737,-0.45257306,-0.13769394,-0.4042491,0.48214224,0.08639407,-0.6308754,0.26577592,-0.44721827,0.22101896,0.07862468,0.54401225,0.8298301,0.47459102,0.34656549,0.6953015,-0.037872564,0.045166597,0.17451112,-0.18158017,0.21588385,-0.3469155,0.10810164,-0.4970391,0.19515729,-0.1897064,-0.053133678,0.19797571,0.43747675,-0.53459567,-0.3423603,0.20269497,0.71004766,-0.13551718,-0.1437735,0.7580185,1.2483101,1.1006471,-0.096085824,1.2247771,0.22226517,-0.105534874,0.04300892,-0.24710636,-0.5893945,0.2214437,0.3337469,-0.3156084,0.6548147,-0.20551391,0.014549832,0.3636574,-0.37057832,-0.09494292,0.18998308,0.52596396,0.094901085,-0.28591898,-0.6487765,-0.07896744,0.07140273,0.07919478,0.2696602,0.41169557,-0.19670041,0.39548182,-0.06425201,0.75533414,-0.105604924,-0.056824993,0.06694416,0.505035,0.30717614,-0.10983777,0.06465263,0.45541546,0.20407826,-0.06345332,-0.53509295,0.31895217,-0.3887818,-0.28982413,-0.019373283,-0.5042513,-0.18259609,-0.070609726,-0.22207554,-0.16935037,-0.14769506,-0.1628056,0.29949215,-2.7195647,-0.3475497,-0.20051439,0.2563393,-0.15736294,-0.020013396,-0.050984606,-0.5323355,0.2606486,0.2946015,0.49415493,-0.60440034,0.5511028,0.6121594,-0.5956381,-0.06286005,-0.7221017,-0.124657266,-0.07323062,0.6059949,0.09526292,-0.101471126,-0.06649738,0.5213704,0.7157266,0.42435285,0.28497604,0.6092013,0.38304064,-0.2609457,0.33458433,0.03020446,0.63513726,-0.17608292,-0.18847679,0.2659984,-0.48083684,0.37317872,-0.30617875,0.13017108,0.605779,-0.30169687,-0.8740916,-0.4372985,-0.09309701,1.1911281,-0.38422897,-0.4285107,0.12775846,-0.18357866,-0.084336035,0.108055204,0.63645554,-0.11142256,0.15332136,-0.6934615,-0.028134113,0.08990249,0.049390897,-0.10372745,0.019318681,-0.4782729,0.7440494,-0.09112412,0.51581365,0.07577985,0.28893104,-0.31895941,-0.4655905,-0.007835937,0.80698705,0.5231121,-0.17720532,-0.24849813,-0.23754644,-0.2661035,-0.08202003,0.048288148,0.7170861,0.6151046,-0.14747046,0.117328145,0.3474323,-0.028111437,0.12797318,-0.1281215,-0.26190194,-0.0842972,0.16453479,0.48424125,0.95306396,-0.30176488,0.2915908,-0.1475998,0.41279802,-0.21235877,-0.52005094,0.57773566,0.52812237,-0.3033113,-0.1632364,0.6265798,0.5427107,-0.5285062,0.7499678,-0.57473785,-0.30847248,0.57453924,-0.13520534,-0.35657915,0.174317,-0.27029943,0.06302807,-0.81627196,0.33529517,-0.4071804,-0.3487999,-0.51915985,-0.12617178,-3.0605948,0.26348767,-0.009618432,-0.10968598,-0.40111563,0.0076818913,0.36276817,-0.87550014,-0.81240875,0.021827957,0.12388077,0.63969195,-0.17103074,-0.12380549,-0.21673787,-0.6200275,-0.09322473,0.36333945,0.1066294,0.36782822,-0.10416695,-0.41872084,0.01354291,0.06715887,-0.5461599,0.07030707,-0.49585494,-0.50391823,-0.14121391,-0.62449,-0.07942376,0.5729241,-0.34921467,0.047040183,-0.35981444,0.1319011,-0.0144385,0.23357706,0.02383673,0.11198733,0.23365521,-0.13410856,0.18295836,-0.17929657,0.32280353,-0.04161669,0.46982506,0.2387814,-0.1326627,0.30158082,0.63448,0.60694355,-0.16821598,0.98027927,0.32399788,0.008737411,0.37585273,-0.23434572,-0.37191546,-0.49353823,-0.31613135,0.008422732,-0.28880435,-0.4578905,-0.008895397,-0.3619256,-0.89264864,0.46133247,-0.11170754,0.550559,-0.14986128,0.3304144,0.5269379,-0.20522797,0.10898469,-0.009855551,-0.36316285,-0.37183544,-0.23357208,-0.68764,-0.5394632,0.253937,0.68735653,-0.3709096,0.010360536,-0.083677895,-0.1966343,0.10521972,0.21224399,0.16985202,0.06776717,0.27010444,0.11771417,-0.43048736,0.27443323,-0.010054852,-0.07870407,-0.5515688,0.11056005,0.6481568,-0.7540112,0.6500361,0.3558797,-0.057031006,-0.25326833,-0.7151658,0.0004897515,0.1883357,-0.04639696,0.66365385,0.24905543,-0.82380104,0.48822102,0.11250564,-0.48522234,-0.6529288,0.3800938,-0.19668859,-0.07213231,-0.3146271,0.4435588,0.063476406,-0.038740505,-0.37308976,0.34567484,-0.36576727,0.056838423,0.20929058,-0.11818919,0.5010969,0.008821079,-0.10011243,-0.71873254,0.0015216371,-0.63076043,-0.3062125,0.38043118,-0.023545966,-0.010044803,-0.018603139,0.3190094,0.2712903,-0.27110323,0.31706688,0.11399835,-0.5457081,0.52188385,0.52508193,0.5759446,-0.24984993,0.42541894,0.23792945,-0.23405927,0.11398839,-0.120536566,0.31817913,-0.025614897,0.51831466,0.09330217,-0.03178972,0.31106904,0.42231992,0.010993473,0.44558263,0.25012746,-0.20775749,0.21604256,-0.15495168,0.28098252,-0.26447436,-0.49558532,-0.07233704,-0.122506104,0.14538285,0.50519675,0.29507825,0.19136149,0.20606048,-0.21620673,0.09779038,0.3212899,-0.112580635,-1.5974818,0.21855839,0.2838428,0.894938,0.4288799,0.244384,-0.32030773,0.472918,-0.1316427,0.09180337,0.6376186,0.11004096,-0.4984771,0.75421244,-0.57422256,0.40814397,-0.26049832,-0.085648775,0.045169767,0.12542808,0.48469892,0.8207715,-0.17678685,0.013220825,-0.12677632,-0.15074854,0.22719455,-0.3871977,0.26852044,-0.25278375,-0.3968811,0.61631787,0.3545549,0.26297653,-0.3536605,-0.09959755,0.14624566,-0.24786341,0.22907577,-0.15632677,-0.062843286,-0.04419209,-0.53836566,-0.13521905,0.34367073,-0.05101307,0.087094046,-0.14497776,-0.25231984,-0.04327932,-0.0031164635,0.03630082,0.094502725,-0.6883974,-0.14519952,-0.22137274,-0.4875749,0.6243129,-0.11955614,0.090395905,0.11002708,0.08716317,-0.2545586,0.14421006,0.049555957,0.573039,0.16287814,-0.12937182,-0.23674814,0.15101026,0.21717739,-0.31585503,0.077892005,-0.38590685,0.3399855,-0.3494699,0.59436685,-0.17819472,-0.620953,-0.134457,-0.17990911,-0.05376959,0.40915933,-0.23581557,-0.22301172,-0.20595837,-0.28240487,-0.27200133,-0.05413619,-0.11261951,0.33162805,0.052147854,-0.1345416,-0.22735791,-0.0009178966,0.047560513,0.5293487,0.0610403,0.30061093,0.7457016,-0.046363086,-0.36769733,0.20814812,0.39776543,0.32357565,0.26138237,-0.081435956,-0.622942,-0.42128685,-0.46524343,0.24631006,-0.123863526,0.038351227,0.050491884,-0.20690393,0.80578166,0.038701687,1.4201536,-0.048829872,-0.3742223,0.11456671,0.65151757,-0.17755301,-0.07117029,-0.4985133,0.9850314,0.51846427,-0.40579596,0.026144201,-0.6221716,-0.23306222,0.34959492,-0.43774548,-0.27064306,-0.14878632,-0.66155905,-0.26399612,0.16666435,0.17236477,0.17149496,-0.1850037,0.09315517,0.1957456,0.17741652,0.4003537,-0.71640396,-0.20442444,0.22931391,0.2564503,-0.04305576,0.107433915,-0.35253444,0.31605706,-0.85172874,0.16472425,-0.40574896,0.12577604,-0.16891284,-0.5937213,0.09154755,0.03912565,0.3193557,-0.3489946,-0.4784707,0.00835863,0.5159337,-0.05862248,0.058263537,0.46046472,-0.36595833,-0.044526022,0.2332396,0.6622216,1.223261,-0.16370404,-0.07444418,0.106335014,-0.51221085,-0.95856786,0.12932646,-0.5278347,0.22895788,-0.34500977,-0.5815897,-0.6498389,0.25467125,0.12088106,0.05067106,0.101613484,-0.40651953,-0.22507632,0.04442379,-0.36331913,-0.08591708,-0.07139367,0.1422084,0.69242555,-0.3399831,-0.36447445,-0.14631233,0.24619357,-0.1936245,-0.59935766,-0.08316368,-0.17257251,0.33714172,0.033479154,-0.2805465,-0.005748575,-0.067194395,-0.52958584,0.19900815,0.2513952,-0.24884248,0.17276978,-0.41790923,0.05259038,0.8219616,-0.01514382,0.028212627,-0.44114852,-0.58157665,-0.79548126,-0.4510649,0.15572435,0.034797907,-0.19802476,-0.69030637,0.13404232,-0.3144561,-0.06447921,0.19357596,-0.42058966,0.2549992,0.117850624,0.47286773,-0.21970432,-0.8675199,0.27924374,0.29756305,-0.0973891,-0.7438918,0.62063843,-0.29382437,0.6484738,0.12635131,-0.04310539,-0.12506162,-0.39657247,0.08126833,-0.39077958,0.00071618956,-0.5254312,0.15140669 +958,0.61249304,-0.19665167,-0.8522091,-0.043778487,-0.24296054,0.161942,-0.24101862,0.43948022,0.43319193,-0.35652152,-0.42117676,-0.07619542,0.05022005,0.09568981,-0.14547288,-0.7313519,-0.101359546,0.28928262,-0.66859925,0.46719098,-0.16631344,0.25021425,0.10392475,0.6270949,0.09328775,0.1875016,-0.14477043,0.057518095,-0.16505888,-0.05796534,-0.095273085,0.34847155,-0.51975965,0.26291662,-0.32413077,-0.31144154,-0.2143391,-0.62877846,-0.25270393,-0.6862226,0.29097968,-0.7912275,0.68072546,0.1875056,-0.3777594,-0.21015659,-0.09200314,0.19105932,-0.22161928,0.14689314,0.12930943,-0.24205676,-0.17603703,-0.22710769,-0.40849608,-0.09910141,-0.5706121,0.027134588,-0.39248258,0.19132032,0.09753048,0.17712186,-0.36128783,0.019237686,-0.29765517,0.3764562,-0.24436697,0.13527668,0.46230274,-0.19956748,0.21190977,-0.46953171,-0.15751477,-0.10798129,0.45116144,-0.015315065,-0.5219988,-0.049720924,0.17785227,0.6281625,0.027420009,-0.11563356,-0.2122548,0.08465471,0.10758934,0.51954067,-0.06780344,0.014242873,-0.27104256,0.004009998,0.3802547,0.4016468,0.12599833,-0.33837304,-0.04934449,-0.3768266,0.0746425,0.2563267,0.42568326,-0.031223923,0.0068822624,0.27213067,0.43889618,0.302667,0.030972917,0.24622913,0.14888301,-0.66195613,-0.24375448,0.15896657,-0.038498018,0.64296186,-0.13096449,0.30257696,0.5164916,0.034312874,-0.066795014,0.12028035,0.16901839,-0.021074818,-0.2971117,-0.15980558,0.39847466,-0.4956422,0.083692595,-0.2716382,0.3808834,0.083394326,-0.6691492,0.27666456,-0.58740014,0.20301738,-0.031170428,0.6152681,0.95921814,0.35231027,0.030187493,0.82959634,-0.32520312,0.051647563,0.0013201416,-0.14264421,0.0823089,-0.058332287,0.051300205,-0.51864636,-0.19050686,-0.025500815,-0.19131543,0.31273392,0.2507502,-0.34312803,-0.31754574,-0.17133126,0.64430356,-0.22894469,-0.09324317,1.0099627,0.98237896,0.7867713,0.116090275,1.419211,-0.016311537,-0.16743112,-0.13145205,0.075055696,-0.8207108,0.28917426,0.16444163,-0.45481986,0.58983773,0.078980125,-0.10474306,0.41788405,-0.38885516,0.055972107,0.045218922,-0.12374699,-0.1901543,-0.013314104,-0.58304113,-0.3686598,-0.05512443,0.119616225,0.06630913,0.24571447,-0.07668481,0.53345865,-0.005032009,1.1519113,-0.09948413,0.088310234,0.061293066,-0.10882026,0.23306179,-0.31785637,-0.31175637,0.27829581,0.39938492,0.08311932,-0.4920269,-0.030874813,-0.17222895,-0.14395973,-0.21424031,-0.18063542,-0.09648068,-0.25579163,-0.43582636,-0.1601855,-0.1169129,-0.40857857,0.32040268,-2.4685903,-0.30569515,-0.12580717,0.44736218,-0.22151804,-0.37188607,-0.46912473,-0.4095865,0.25163627,0.2527556,0.40584913,-0.5946446,0.29037327,0.26219717,-0.5229704,-0.14396529,-0.70934963,-0.01205875,0.18838081,0.03608951,-0.049661033,0.073822044,-0.114711426,0.15086468,0.41083008,0.061409015,0.057300113,0.4240767,0.53897905,-0.10235368,0.19871381,-0.08878423,0.5459491,-0.4918167,-0.20525834,0.35616463,-0.37740692,0.43604356,-0.03946531,0.11406618,0.5097377,-0.5935512,-0.47857475,-0.5163282,-0.35119322,1.1833811,-0.37904674,-0.25544947,0.14757952,-0.5426585,-0.4617743,-0.0051974403,0.8450388,-0.11077031,-0.032490365,-0.866913,-0.38966203,-0.06785543,0.27624542,-0.14078522,-0.02936486,-0.45044646,0.5828804,-0.038868725,0.49075556,0.5355273,0.16425292,0.06162583,-0.44771728,0.2700513,0.89309835,0.49338573,0.24118114,-0.33881527,0.100092255,-0.3509496,0.25127906,0.07609219,0.7033676,0.56301844,-0.18859383,0.17280476,0.3566958,0.09859754,0.15196247,-0.05272957,-0.19986896,-0.24825346,-0.15543154,0.63079906,0.92899865,-0.15517926,0.11276518,-0.013263121,0.36623636,-0.21722904,-0.5004126,0.55924225,1.0659177,-0.16195174,-0.24179013,0.82944995,0.4226387,-0.3808972,0.45573348,-0.47953027,-0.33370957,0.33403215,0.06378205,-0.43046004,0.30216455,-0.33369634,0.26835814,-1.0601233,0.19275752,-0.10876372,-0.48803204,-0.55816925,0.014796227,-2.3554385,0.29988465,-0.26901764,-0.2158746,-0.28852862,-0.3056876,0.26570374,-0.42986298,-0.75876456,0.1462737,0.06298755,0.5202314,-0.37768096,0.1678343,-0.054549556,-0.5479527,-0.075422384,0.15318353,0.5103668,0.29346707,-0.15250537,-0.2705285,-0.3345619,-0.11105935,-0.26315492,0.029245328,-0.7320042,-0.56426203,-0.10292612,-0.55124557,-0.012836456,0.55686015,-0.32463485,-0.25382432,-0.18257847,0.07896145,-0.023143638,0.22617301,0.03279794,0.28547773,0.13844167,0.017663652,-0.16747025,-0.12360792,0.3157486,0.16593984,0.18969296,0.33349356,-0.2646464,0.4008437,0.3719979,0.7292102,-0.3026523,0.8530053,0.31052965,0.10969981,0.15455034,-0.069931425,-0.6244805,-0.48490867,0.013724526,-0.12632975,-0.5580902,-0.39431867,-0.1562581,-0.49732047,-0.99811536,0.34995213,0.11231907,0.03883056,0.1517683,0.41268522,0.4936511,-0.22350895,-0.007934904,-0.12314482,-0.23999667,-0.36851034,-0.4089415,-0.47469172,-0.4514247,0.1524057,1.1889203,-0.14852498,0.25042352,0.22317187,-0.35648283,0.031739455,0.252983,0.1357874,-0.015201437,0.57700527,0.1410409,-0.3568632,0.45679992,-0.019977186,-0.25577047,-0.6645974,0.008459973,0.6470436,-0.7413548,0.71251154,0.3609897,-0.07139962,-0.1591328,-0.5164375,-0.31241146,-0.062788464,-0.15453836,0.60720235,0.49779397,-0.509263,0.21266484,0.06647222,0.00023030341,-0.665112,0.5744087,-0.14945576,-0.1988151,-0.040229063,0.41853613,-0.31602556,0.06361653,-0.054409195,0.13067819,-0.109680966,0.2544991,0.23647761,-0.16376755,0.09746552,-0.14711407,-0.025912398,-0.7279882,0.15042095,-0.70319295,-0.26956606,0.4451787,0.13936432,0.122525096,-0.0003241837,0.38359565,0.43475446,-0.45733365,0.11836754,-0.24157366,-0.28069296,0.33706254,0.45816556,0.56403595,-0.5080609,0.48908672,0.074514225,0.039446764,-0.039565515,0.28868857,0.37672848,-0.070808396,0.3625263,-0.009320974,-0.099662304,-0.04017646,0.7137028,-0.021868825,0.23841324,0.33345333,0.08859575,0.23813012,-0.01605446,0.27014452,-0.27888843,-0.5356525,-0.10299411,-0.324452,0.06776561,0.33022824,0.06871069,0.20245068,-0.19306111,-0.24502496,0.04142426,0.31772295,0.17357926,-1.2247326,0.26031938,0.14911577,0.61232674,0.44964004,0.08551721,-0.057902914,0.3936994,-0.16488521,0.1958654,0.4468699,-0.10252557,-0.37990957,0.51466936,-0.41401115,0.4635333,-0.120033994,-0.060340635,0.13514993,-0.08007814,0.42726773,0.9009119,-0.03233501,0.006295231,-0.020065363,-0.1446399,-0.14667264,-0.41916448,-0.07018709,-0.66427594,-0.2734418,0.7259571,0.550189,0.4774271,-0.4973263,-0.01871572,0.062679246,-0.058298785,0.18591395,0.12191532,0.12510312,0.041860256,-0.7441527,-0.043626342,0.6016959,-0.0121137705,-0.030889463,-0.0031130076,-0.22654895,0.20896801,-0.13477764,0.04871627,-0.16303992,-0.8508218,-0.19477186,-0.73091215,-0.591154,0.11427809,-0.21253495,0.12851544,0.23138742,0.02954499,-0.36622754,0.50351554,-0.1125768,1.1875482,0.11522736,-0.04516809,-0.40530878,0.5578966,0.31067768,-0.3200831,-0.21185103,-0.21102445,0.20932138,-0.3547162,0.44461012,0.06289545,-0.3521995,-0.08264863,-0.0072600124,0.024014875,0.44310722,-0.16840652,-0.11482592,0.27915913,-0.02647087,-0.4238391,-0.1762328,-0.39059234,0.14544754,0.3366789,-0.051326692,-0.123809434,0.048698746,-0.07395731,0.20202427,0.25571793,0.23179789,0.49099857,-0.10526744,-0.32169172,0.04492746,0.27799782,0.57050365,0.1324836,-0.2940435,-0.32849997,-0.38379294,-0.36930832,0.527203,-0.043785617,0.26018834,0.10007497,-0.13049057,0.84747255,0.34366965,0.9173713,-0.017310595,-0.20404053,0.11418243,0.45788902,-0.12816484,-0.3403605,-0.26292807,0.97371036,0.3669843,-0.21990342,-0.0941743,-0.34232083,-0.14726985,-0.10345918,-0.1842058,-0.036841188,-0.14965285,-0.67401636,-0.096611395,0.111754954,0.30761236,0.106702186,-0.12264397,0.20913796,0.26245746,-0.091932334,0.035897188,-0.50581163,-0.19074535,0.3077647,0.17685464,0.07076552,0.13512306,-0.36170945,0.43409118,-0.6915235,-0.0035416603,-0.5303684,0.11252884,-0.011251926,-0.36547524,0.06807496,-0.09613441,0.28459707,-0.572189,-0.15621446,-0.4404499,0.4351224,0.19158117,0.26260647,0.7258171,-0.19804649,-0.10250275,0.18880104,0.6296686,1.1064746,-0.16722342,0.076329716,0.43560272,-0.24896061,-0.60364324,0.053354718,-0.42015186,0.23721778,-0.23212019,-0.35563952,-0.6653727,0.09011762,0.010697931,0.14832172,0.013429684,-0.5455803,-0.11685802,0.27936,-0.20716831,-0.19164908,-0.35728717,0.005828035,0.5716826,-0.007095176,-0.52664727,-0.03332139,0.114331245,-0.16085966,-0.33382288,0.03433801,-0.26376367,0.01654091,-0.005185726,-0.338548,-0.04574656,-0.009122947,-0.47965842,0.14083835,0.15459889,-0.2953844,0.17165525,-0.31577268,-0.33267412,1.1311743,-0.16505174,0.10164289,-0.37795514,-0.61357176,-0.8099502,-0.26607254,-0.039213084,0.22038336,0.16035834,-0.71439636,0.02738497,-0.22419052,-0.00935114,0.01053227,-0.14399609,0.4681135,0.2172664,0.59234333,-0.15938762,-0.8849551,0.20615935,0.10542451,-0.5440198,-0.50403845,0.41326776,0.14218685,0.7466277,0.012370895,0.09595038,0.16298154,-0.66635567,0.11569681,-0.06881661,0.023407374,-0.64366794,-0.092973426 +959,0.59180146,-0.27840123,-0.47444126,-0.10622961,-0.32704818,-0.049511705,-0.3474144,0.5110451,0.23978218,-0.60467815,-0.19455577,-0.080216445,-0.1404771,0.46353582,-0.21208546,-0.6800362,0.07910412,0.16949959,-0.7342745,0.6799032,-0.30974352,0.20289746,0.27339068,0.4595487,0.36095655,0.1613492,0.19089374,0.004081942,-0.20873757,-0.2590977,0.10128409,0.106068715,-0.91592973,0.1918703,-0.35564688,-0.44863665,-0.118245006,-0.48489165,-0.33452183,-0.88145995,0.3144905,-0.9291366,0.62877756,-0.10917449,-0.30838782,0.1294382,0.165649,0.44133687,-0.18121791,0.030128343,0.1949676,-0.2540572,-0.13923399,-0.08761746,-0.097954094,-0.34127888,-0.6227752,0.20661014,-0.5084579,0.026500199,-0.24818148,0.23948675,-0.41272908,0.20416236,-0.04595919,0.58476865,-0.46293372,0.1699448,0.39508396,0.006134415,0.20351171,-0.51227665,-0.18516488,-0.25652626,0.16878058,-0.16065551,-0.30130717,0.27992994,0.30240998,0.5768184,0.25388867,-0.40590322,-0.32678908,-0.07147432,0.21310435,0.33807483,-0.03627178,-0.42257768,-0.32068762,0.03507353,0.3924486,0.09306334,0.253319,-0.22856876,-0.069818035,0.09389539,-0.34607786,0.5922258,0.54721004,-0.3165423,-0.25274676,0.16517869,0.6944125,0.2711762,-0.119028986,0.115443714,0.049128506,-0.693465,-0.2118769,0.15418361,-0.20407966,0.6097879,-0.35482123,0.2259103,0.6623153,-0.34697056,-0.004018029,0.2020019,-0.04313966,-0.15314673,-0.2470064,-0.33364496,0.32236853,-0.5630251,0.13097167,-0.34247613,0.8348512,0.24606824,-0.7066164,0.17304872,-0.6607805,0.26035944,-0.10940454,0.6146549,0.8304612,0.48231322,0.37779307,0.7382642,-0.32791913,0.15133125,-0.15638861,-0.40139276,-0.0037622694,-0.339762,-0.0011485927,-0.4103205,-0.09626454,-0.22352034,-0.058736615,-0.060649306,0.49631757,-0.5675669,-0.20543608,-0.01399526,0.99529177,-0.28709227,-0.11833275,1.0893457,0.8607613,1.3024325,0.15197694,1.3557558,0.28836977,-0.12512305,0.09112474,-0.08134657,-0.7853854,0.4652079,0.32663572,-0.30129486,0.44122803,-0.059428185,-0.006178662,0.44958472,-0.5567322,0.15850659,-0.39585197,0.40108806,0.073461175,-0.18858638,-0.2693711,-0.14755645,0.0703041,-0.035493296,0.07410959,0.26992297,0.025640791,0.60998344,0.058346048,1.4446485,-0.1383492,-0.042885847,0.08902752,0.44849348,0.19499835,-0.073448524,-0.07388066,-0.06251034,0.39774793,0.10213722,-0.6269356,-0.02064544,-0.37643105,-0.3270588,-0.3673399,-0.25681126,-0.050997518,-0.16144924,-0.376948,-0.26716322,-0.17381172,-0.12954137,0.35637984,-2.1345992,-0.40011424,-0.19513687,0.2914223,-0.305247,-0.3276557,-0.071113646,-0.68251574,0.5539475,0.31966162,0.51763266,-0.7126419,0.4716061,0.4325788,-0.5055,-0.13772418,-0.76024115,-0.20011461,0.04573132,0.43502837,0.0047126096,-0.13445087,0.011435531,0.17140189,0.5740751,-0.11766809,0.044368193,0.3106303,0.45162976,-0.062582806,0.5257413,0.06837334,0.51492006,-0.49160826,-0.1833959,0.4791821,-0.3450899,0.32246277,-0.12071042,0.07030486,0.58311677,-0.5738965,-0.89317715,-0.69284,-0.24113092,1.1816692,-0.13639528,-0.45105252,8.875504e-05,-0.2149524,-0.0749148,-0.03195773,0.29073778,-0.22015539,0.023487007,-0.8273039,-0.15802205,0.0005371338,0.1174048,-0.028427815,0.005493216,-0.43161714,0.6543514,-0.13421309,0.24027136,0.5281199,0.29266927,-0.28495866,-0.6435089,0.18848693,1.0637097,0.49678114,0.16872853,-0.5754047,-0.22829947,-0.38811338,-0.15153196,-0.052674852,0.5229546,0.86402315,-0.15651362,0.17532383,0.379021,-0.00842143,0.07630128,-0.14930013,-0.44861364,-0.27580264,-0.08240806,0.5459959,0.7791536,-0.15000877,0.47452736,-0.12178371,0.36674535,-0.07588708,-0.48082083,0.62768126,1.0190372,-0.42522705,-0.39574757,0.5480705,0.31022355,-0.27843404,0.66104144,-0.5385436,-0.36600533,0.46737894,0.031526297,-0.33049685,0.1768938,-0.45345667,0.18309148,-1.0981483,0.37155363,-0.40956342,-0.2177127,-0.707269,-0.3023317,-2.2658448,0.20795491,-0.20399994,-0.040503547,-0.31342983,-0.29779214,0.15880832,-0.38659823,-0.8981596,0.16845332,0.1339554,0.6892921,-0.12751603,0.26450256,-0.1367382,-0.264983,-0.55933267,0.035066508,0.3986181,0.3739614,-0.06395082,-0.49598932,-0.013429865,-0.2885219,-0.42711022,0.10656558,-0.70258313,-0.6584838,-0.17016259,-0.4405114,-0.32832283,0.6407025,-0.2891727,-0.035559244,-0.32102823,-0.021171743,-0.03400767,0.4401667,0.1422469,0.085370034,0.17738515,-0.13390853,0.0020054579,-0.35076568,0.12525246,0.19658408,0.26853442,0.34538954,-0.16986817,0.44021007,0.499221,0.8777789,-0.08370039,0.7995478,0.52677304,-0.10812821,0.3037535,-0.24133092,-0.6070254,-0.5700208,-0.2138561,0.029582407,-0.4898944,-0.36037064,0.18002185,-0.34953392,-0.87911284,0.5608116,0.016741427,0.07200119,-0.0848194,0.3318045,0.40106452,-0.15599528,-0.08902033,-0.074603714,-0.18491873,-0.63966036,-0.41501784,-0.7335957,-0.68750846,-0.14209878,1.1996204,-0.09810747,-0.12875873,0.1641525,-0.29998663,0.19474804,0.1905206,-0.20327778,0.0126309,0.4340779,-0.08381075,-0.78228146,0.4468894,-0.07901987,-0.08958031,-0.61359775,0.24291475,0.66495657,-0.64795357,0.35270935,0.41613972,0.068993434,-0.09172096,-0.6249169,-0.110510565,-0.09682478,-0.14373153,0.45941365,0.28176692,-0.6195332,0.53023744,0.39732665,-0.31775576,-0.91373783,0.49670166,0.15043975,-0.10527521,0.094673365,0.3697101,0.17582566,0.006906094,-0.25880653,0.16231206,-0.35795426,0.21813276,0.25113863,-0.14426248,0.102954045,-0.27837515,-0.4500049,-0.8100194,0.020597514,-0.57522154,-0.2982995,0.20239542,0.044468127,0.0060687214,0.050300065,0.21463436,0.27261454,-0.18284465,0.055210885,-0.2228487,-0.35896593,0.37319118,0.5092265,0.5859017,-0.45220172,0.62424755,0.123170905,-0.115623206,0.13916215,0.029606376,0.53181803,0.0025520474,0.34332186,0.39034602,0.027287211,0.08570671,0.80190396,0.0617027,0.504725,0.20567313,-0.2772444,0.28346503,0.20647025,0.2929367,0.01699806,-0.48678228,0.055515237,-0.1262107,0.072822966,0.57833016,0.14035699,0.37985116,0.040935874,-0.16139302,-0.099953964,-0.01297234,-0.009259839,-1.8169652,0.3615967,0.2190745,0.7844446,0.43829703,-0.056989945,0.22720616,0.6574025,-0.19759493,0.15314132,0.44625592,0.06257636,-0.369819,0.5549683,-0.6421752,0.49372625,-0.12711391,0.15753943,0.02142984,0.18236282,0.52321005,0.7782336,-0.2021394,0.06917556,-0.10279188,-0.26525283,0.18406206,-0.52466536,0.09124665,-0.3389228,-0.29036802,0.8574879,0.46874595,0.2841533,-0.3176923,0.041444506,0.08490094,-0.1847637,0.3553558,-0.16598518,0.08717266,-0.15297067,-0.53353333,-0.1710821,0.5027878,0.004765872,0.18615927,-0.06414866,-0.18465903,0.20516388,-0.14492235,-0.034159787,-0.13236511,-0.9943404,-0.18345967,-0.42295665,-0.3381226,0.20281586,-0.17081581,0.07953213,0.2636036,0.088519394,-0.5863343,0.33977318,-0.2945161,0.65616745,-0.011939526,-0.24710819,-0.16755012,0.14693028,0.46616104,-0.33753118,0.13739537,-0.13223673,0.22815147,-0.5437102,0.50728816,-0.124686,-0.471831,0.21123149,-0.1365096,-0.09306769,0.53414357,-0.22739932,-0.066206545,0.22055179,-0.1632696,-0.14633575,-0.2635411,-0.0077159554,0.28991845,0.38711208,-0.124280356,-0.13333504,-0.23155446,-0.035999157,0.6111039,0.010208018,0.43145213,0.38729995,0.12340379,-0.50657517,-0.23578513,0.18411158,0.5768885,0.022563133,-0.29038036,-0.41190997,-0.43278378,-0.32475892,0.43983778,-0.20866635,0.21167535,0.071391806,-0.47421402,0.8593562,0.26975754,1.4160789,0.13505691,-0.4568271,0.22645739,0.4902152,-0.10688029,-0.078228384,-0.4498348,0.87486845,0.44978598,-0.33514103,-0.09982136,-0.536545,0.042389728,0.010516442,-0.22841269,-0.22492264,-0.093437836,-0.46837234,-0.30827817,0.2682398,0.289558,-0.0739862,-0.21746433,-0.0049886573,0.2552459,-0.0646256,0.37602496,-0.57930434,-0.05780518,0.29237926,0.21718639,-0.048741966,0.18308623,-0.51957273,0.33243388,-0.5228232,0.06468368,-0.2674045,0.23188497,0.0025539417,-0.4398086,0.35244763,0.04381621,0.3381713,-0.5612452,-0.4420265,-0.29443115,0.48603427,0.33141345,0.1929391,0.70746607,-0.27129012,-0.09406473,-0.040131144,0.53602886,1.1400076,-0.29551584,0.107994795,0.2409741,-0.20020269,-0.46317452,0.4688054,-0.3095972,0.22671227,-0.11388037,-0.315861,-0.7315153,0.23202172,0.17939287,0.092819646,0.068503015,-0.75596553,-0.19512865,0.37389153,-0.26430708,-0.20499292,-0.47641033,0.03495381,0.5840631,-0.25475988,-0.2590471,0.16496518,0.2723284,-0.18156368,-0.40029007,-0.17517811,-0.22439846,0.23935379,0.22265095,-0.26052386,-0.19763213,0.13854957,-0.57586336,0.12399718,0.1825589,-0.2789987,-0.053194955,-0.15895307,-0.05830446,0.8435354,-0.23244268,0.34161857,-0.5068058,-0.47061038,-0.83665437,-0.23281746,0.4213434,0.24033651,0.03141217,-0.7226349,-0.24831173,-0.1379615,-0.07550301,0.14192232,-0.5390041,0.5084095,0.13254952,0.44902337,-0.028507536,-0.84765875,0.10663619,0.092399165,-0.23262775,-0.57532585,0.5263679,-0.027400665,0.7322838,0.14359984,0.16829988,0.24456576,-0.6156867,-0.07206385,-0.14461035,-0.09565587,-0.6536739,0.03996311 +960,0.29536846,-0.118660115,-0.53096265,-0.15542385,-0.1785058,-0.018501054,-0.20091654,0.39106885,0.2733552,-0.4492233,0.13282105,-0.26096082,-0.12578185,0.29284236,-0.12993294,-0.51583177,-0.084798194,0.1447448,-0.43319115,0.6398618,-0.27799764,0.37930638,0.18011627,0.15656339,-0.07968607,0.21327108,0.013627452,-0.31239644,-0.21391399,-0.13566808,0.065936856,-0.089230046,-0.45667067,0.27630848,-0.16128387,-0.11405204,0.32829237,-0.40872812,-0.3624719,-0.7132227,-0.001911517,-0.6173021,0.59885186,-0.087685436,-0.38915634,0.18259296,0.09525943,0.448293,-0.12817518,0.007298716,0.3064852,-0.19096948,-0.37240067,-0.18409759,-0.15710758,-0.74083537,-0.49334157,-0.17667982,-0.49491844,-0.088235594,-0.1374871,0.14352408,-0.2955712,-0.077496305,-0.19750796,0.51750475,-0.5051565,-0.050167456,0.18345903,0.001344047,0.36654717,-0.7175581,-0.06928373,-0.13486038,-0.016227182,0.16768508,-0.15617864,0.43398234,0.14867815,0.47666305,0.0133771105,-0.18503945,-0.16658582,-0.07579071,0.02589488,0.46029,-0.06698964,-0.19967943,-0.15983428,0.044632927,0.29940468,0.12948725,0.009401942,-0.30937952,-0.0010716438,-0.05863281,-0.24711452,0.076558575,0.42782438,-0.269934,0.034567934,0.32094613,0.445375,0.0144677125,-0.1743798,0.04789681,-0.10791347,-0.33777675,-0.12905726,0.09643005,-0.2483098,0.6830845,0.057895865,-0.02027055,0.52645326,-0.021715725,-0.19201827,-0.08247637,0.1592625,0.20843272,-0.101290576,-0.45779073,0.43385154,-0.64244235,-0.108782955,-0.37716597,0.63148534,-0.011452467,-0.8040733,0.3020266,-0.38596752,-0.049035,-0.043674525,0.58373535,0.7352213,0.7196739,0.21067469,0.7413521,-0.5694441,0.23125288,-0.0661804,-0.2303872,0.30156028,-0.21001436,0.16926704,-0.5147377,-0.060155496,-0.07736127,-0.36943468,-0.2088113,0.52627546,-0.53650963,-0.019178033,0.20632274,0.7666205,-0.3350701,0.0056339423,0.43104497,1.258846,0.94710934,0.06471099,1.121565,0.305411,-0.3642939,0.06929627,-0.2700814,-0.65166646,0.10643967,0.26446673,0.17937002,0.22354235,0.12015783,-0.028296877,0.3994374,-0.45658502,-0.033511054,-0.10182328,0.4567625,-0.087800905,-0.07203279,-0.5060412,-0.21203701,0.021799732,0.0043567717,-0.055262424,0.34498698,-0.1223295,0.18852669,0.21602353,1.6508541,-0.021283276,0.09361874,0.12465799,0.38324806,0.27150917,-0.0056189536,-0.0871153,0.44060346,0.18961395,-0.023876278,-0.52380955,0.05719315,-0.26248416,-0.4626756,-0.059509195,-0.21192689,0.10675998,-0.029672926,-0.35177523,-0.29912406,0.03238114,-0.38479635,0.40134534,-2.5422385,-0.088002,-0.03729737,0.24992853,-0.23770224,-0.20274608,0.1909315,-0.44272748,0.47908497,0.47251382,0.43352112,-0.41507998,0.35442206,0.52882975,-0.5111034,0.0036516427,-0.5587591,-0.19065943,-0.09990141,0.3709373,-0.005489552,-0.27328074,-0.024102287,0.11886705,0.4317756,-0.10003908,0.15013833,0.33535206,0.2124616,0.11012689,0.5505319,-0.041076496,0.45641795,-0.11061306,-0.10020471,0.19609255,-0.31102127,0.19465011,-0.13916782,0.14525083,0.4082573,-0.44685262,-0.5849925,-0.44780126,-0.15455645,1.0389372,-0.31868693,-0.28081942,0.24439855,-0.08888688,-0.17011113,-0.05984757,0.43180427,0.13027126,0.046527896,-0.7523726,-0.15549085,0.08627454,0.30889103,0.12028202,0.18998857,-0.5393806,0.50667936,-0.13941827,0.5211203,0.56873447,0.1923296,-0.11141488,-0.43860015,0.030347006,0.9174346,0.36178696,0.12662011,-0.3210804,-0.17692462,-0.2796368,-0.0421403,0.11886131,0.2788499,0.9728498,-0.037029553,0.01475668,0.16589783,-0.3376262,0.07305967,-0.16936317,-0.54988,-0.007862846,0.22607845,0.47924736,0.49268454,-0.0396265,0.44042876,0.0446976,0.3548651,-0.1770841,-0.44888848,0.40905267,0.75048554,-0.21320054,-0.15785433,0.5459006,0.5424932,-0.08485827,0.564483,-0.5538854,-0.28591305,0.56594557,-0.097022034,-0.5655225,0.3994833,-0.36937475,0.1890514,-0.98485595,0.40862548,-0.3272011,-0.59968823,-0.7603912,-0.055001445,-2.854246,0.11923776,-0.08000584,-0.062490877,0.16718842,0.08308521,0.35404682,-0.5456645,-0.4920279,0.17732042,0.1735848,0.5210296,-0.09566368,-0.16778873,-0.2708702,-0.4367553,-0.25296444,0.3439636,0.084428996,0.13407968,-0.028670693,-0.4535472,-0.10317491,-0.3458377,-0.28907546,0.07811725,-0.38598284,-0.32414615,-0.29959857,-0.5430442,-0.39830902,0.7278649,-0.2817045,0.012846342,-0.15595451,0.15497223,0.19022647,0.13930242,0.0751039,0.16281897,0.04492145,-0.23958655,-0.10922192,-0.35107702,0.062004957,0.22593822,0.34663072,0.4368716,-0.045488257,-0.007520147,0.76193744,0.6169062,-0.12962739,0.8633663,0.43632373,-0.18986616,0.30884135,-0.32555294,-0.08988441,-0.600352,-0.28674462,-0.24498034,-0.3297787,-0.53341997,0.13660628,-0.41228607,-0.71915424,0.54617345,-0.0026583513,0.057641767,0.08430295,0.35919735,0.36021185,-0.25403827,0.01650198,-0.19085269,-0.15950142,-0.42838523,-0.3585471,-0.8228342,-0.40429673,0.10632982,1.3851174,-0.11981848,-0.052220926,0.0778056,-0.19466709,0.1371386,0.08619301,0.09466713,0.22306539,0.27914906,0.07209525,-0.71040165,0.41457018,0.08223219,0.06280099,-0.6144098,0.28255934,0.6045402,-0.7337349,0.31895626,0.42522573,0.12309634,-0.108811475,-0.7934159,-0.2163716,0.23498778,-0.32573482,0.53170955,0.0870814,-0.8387588,0.4163699,0.18468894,-0.40489167,-0.76503485,0.33541495,-0.17787284,-0.3541149,0.13513324,0.28909054,-0.015515101,0.20957416,-0.3611801,0.3183157,-0.59089667,0.2019844,0.3325523,-0.14554492,0.28294075,-0.14973,-0.13993683,-0.94006413,0.054598577,-0.49517733,-0.3125345,0.33190632,0.16990407,0.1102574,0.255408,0.43793297,0.4882905,-0.1963234,0.029418338,-0.18004127,-0.3878171,0.6203251,0.53485674,0.26678663,-0.26074567,0.4629244,-0.18650156,-0.12295561,-0.4081081,-0.061442815,0.41601732,0.14956191,0.22236411,0.1063105,-0.2501237,0.21896692,0.8420875,0.24021381,0.42241102,0.13153519,-0.20129801,0.4116384,0.05497475,0.02169054,0.08691667,-0.41070995,-0.15102257,-0.09846322,0.20299965,0.4441333,0.073999576,0.35162476,-0.21485327,-0.15678073,0.13449337,0.27746832,0.07953194,-0.6886452,0.39201418,0.12731217,0.46626556,0.78356177,0.24708344,0.019447485,0.61313325,-0.38435906,0.09376994,0.3823728,0.051687438,-0.47246268,0.53027344,-0.6014704,0.20801535,-0.09416248,-0.07192173,0.10334095,-0.018922806,0.6151609,1.0098951,-0.11915894,-0.01072858,-0.15542327,-0.16583437,0.12904762,-0.21899655,-0.03924079,-0.4497428,-0.47253147,0.65074855,0.11389948,0.35023987,-0.17071442,-0.087517194,0.113047674,-0.20684865,0.6477864,-0.059731547,-0.06710566,-0.017520426,-0.4202018,-0.28368047,0.49771544,-0.16291808,-0.07305115,0.008274981,-0.055999495,0.111464776,-0.124098174,-0.10399015,0.065760344,-0.6313362,0.042522863,-0.27870825,-0.3935977,0.79257596,-0.2116566,0.26168177,-0.013413885,0.14841549,-0.24921367,0.17086174,0.32423654,0.47952235,0.024541872,-0.26919147,-0.100370996,-0.025062036,-0.05135084,-0.26016316,0.08282091,-0.1857172,0.10593966,-0.9255012,0.47706094,-0.18856254,-0.26937154,0.09312506,-0.29946962,-0.06432044,0.45676774,-0.31426987,-0.14591575,-0.06704315,-0.08293249,-0.09712229,-0.34110248,-0.32967553,0.122830436,-0.32646352,-0.11323927,-0.10545143,-0.10431321,0.11939258,0.5919026,0.035853114,0.12591968,0.32632405,0.12157784,-0.5893135,-0.08790441,-0.05928444,0.34182847,0.03476806,-0.06949141,-0.41426358,-0.21219444,-0.2833766,-0.04927995,-0.1653164,0.37028015,0.14362644,-0.42588785,1.0499082,0.07605871,1.1227727,-0.1122384,-0.41170442,0.029995164,0.6577949,-0.058930643,0.09878157,-0.5082035,0.96325517,0.8055116,-0.021297531,-0.13200079,-0.38400352,-0.18074577,0.32109845,-0.3093508,-0.20996994,-0.043717857,-0.7612623,-0.30015832,0.28299806,0.27999738,0.017028606,-0.028601121,0.11884419,0.16106328,0.26170295,0.36165053,-0.39922792,0.046049904,0.2970943,0.16549882,0.2340947,0.17441593,-0.40137917,0.26118276,-0.6824586,0.18235478,-0.19267167,-0.09700391,0.029022912,-0.34937844,0.2141443,0.20267907,0.17621501,-0.19363806,-0.3472889,-0.012470475,0.4771293,-0.015830679,0.28096953,0.76469773,-0.2884956,0.023260562,-0.017445628,0.5330051,1.233279,-0.33149508,-0.20070873,0.38051245,-0.44839278,-0.69243336,0.1983211,-0.4296959,0.12277635,-0.09808251,-0.42318276,-0.5751283,0.14106597,0.20654258,-0.36079803,-0.08993778,-0.5470332,-0.19271103,0.29770395,-0.3941002,-0.1728598,-0.20953685,0.14521068,0.7826661,-0.35971165,-0.31237394,-0.11193201,0.24345157,-0.31915388,-0.5453338,-0.023453835,-0.41498503,0.33951774,0.27303854,-0.43852898,0.18825859,0.13693672,-0.5594715,0.056761947,0.3527289,-0.3437442,-0.018740714,-0.4802688,0.13512519,0.78525543,0.15146758,-0.05254821,-0.46858475,-0.5549255,-0.9529359,-0.33052355,0.35625294,0.113721415,-0.041423857,-0.5111347,0.036568277,-0.19080795,0.09105278,-0.07165313,-0.4902879,0.32514918,0.14726393,0.29058826,-0.2323792,-0.99570197,0.031714074,0.08807537,-0.24082583,-0.40907958,0.5795946,-0.22483024,1.0933571,0.13922344,0.0017157674,0.15677196,-0.70487684,0.44780445,-0.3683664,-0.28911132,-0.45091873,-0.107090846 +961,0.4064182,-0.2933477,-0.5860152,-0.12124261,-0.39680654,0.10615057,-0.13438132,0.4360577,0.33956942,-0.46041358,-0.121060506,-0.08894793,-0.09919895,0.18425103,-0.2082035,-0.59080917,-0.12129366,0.14047986,-0.43108997,0.50284815,-0.19495444,0.25350857,0.011717796,0.2734193,0.28878456,0.33948544,0.016571235,-0.14671747,-0.0319748,-0.07394822,-0.089464396,0.28588158,-0.3241368,0.07088973,0.04161642,-0.21579486,-0.07942595,-0.324573,-0.3769095,-0.71867985,0.42033952,-0.7550283,0.4664392,-0.02509392,-0.19801386,0.27344316,0.19676101,0.3282335,-0.10911913,0.038794205,0.2897663,-0.14105745,-0.109805256,-0.04889612,-0.2476151,-0.38833776,-0.5202609,-0.05713588,-0.4154516,-0.3030051,-0.30737633,0.19364643,-0.35052603,-0.10271571,-0.07579662,0.5633356,-0.47420272,0.14892082,0.35818115,-0.10765165,0.3265357,-0.65703624,-0.06798213,-0.020845216,0.24223538,-0.04706425,-0.08282563,0.09148969,0.31324452,0.45106372,0.10680409,-0.21386664,-0.42613852,-0.10254373,0.3003739,0.32553476,-0.16704302,-0.29972407,-0.09517886,0.24449037,0.2502609,0.22336972,0.19001774,-0.2580524,-0.16535811,0.06324133,-0.17661312,0.36872518,0.4433334,-0.2779906,-0.26663777,0.4209419,0.5376423,0.12838316,-0.16680503,0.10712147,-0.10382652,-0.4208283,-0.17842674,0.0073629245,-0.24478969,0.2876925,-0.1040186,0.18819547,0.6651733,-0.07247149,0.0353449,-0.03717694,-0.008458957,-0.0357325,-0.33144137,-0.05398125,0.10470419,-0.5163961,0.10110414,0.0009124521,0.7261754,0.036823563,-0.6417808,0.23061135,-0.4548747,0.21429026,-0.054401547,0.46765488,0.67076474,0.36603427,0.23128816,0.78045344,-0.43645322,0.07264647,-0.07310022,-0.46935633,0.05325766,-0.0950482,0.03188491,-0.6005871,0.13603464,-0.04130134,-0.0065854834,0.07001573,0.37795413,-0.5690043,-0.14096093,0.18085673,0.83042336,-0.26645076,-0.08448195,0.6855978,0.9196512,0.9698654,-0.04524557,1.1035311,0.14218776,-0.30052525,0.11763894,-0.46124822,-0.57573265,0.31856033,0.4462527,-0.12752593,0.24480449,0.0076289885,0.029354826,0.42152536,-0.26717335,-0.011235873,-0.24657944,0.1476008,0.20617774,-0.26325828,-0.39846152,-0.054320715,0.08899374,0.05245591,0.1581643,0.119626075,-0.1694323,0.29279685,4.1881576e-05,1.5723028,-0.25590572,0.08394274,0.18378055,0.26005787,0.157018,-0.045726016,0.10928276,0.42458367,0.31695157,0.13660686,-0.5712166,0.07847085,-0.36845624,-0.42133063,-0.2483259,-0.3312717,-0.1820636,0.103352666,-0.31994322,-0.16529575,-0.21720974,-0.45252234,0.42254767,-2.7706745,-0.088413745,-0.27503896,0.2070084,-0.31014973,-0.3600231,-0.07541241,-0.46407712,0.3338892,0.36682123,0.5046831,-0.60585797,0.45273128,0.4570592,-0.61112434,0.00095754117,-0.51814425,-0.11146286,-0.08803108,0.3357215,0.07245109,-0.21184008,0.02790777,0.14094417,0.48758638,0.0020312965,0.09681247,0.49519575,0.4944628,-0.11876507,0.57914495,0.014889408,0.54299736,-0.06522988,-0.18733057,0.33505976,-0.22366795,0.20946571,-0.0057890583,0.1640531,0.42779374,-0.2873638,-0.89131886,-0.59554774,-0.120662235,1.2481319,-0.16156694,-0.40452236,0.35197437,-0.3994286,-0.28526133,-0.057460204,0.46695185,-0.051802102,-0.06291206,-0.8348386,0.13123491,-0.18245038,0.07317912,0.029554531,-0.25579095,-0.48305318,0.9277872,-0.11051804,0.56124,0.3681294,0.16737139,-0.23060952,-0.35480797,0.01572664,0.8592268,0.46408623,0.07465108,-0.116567604,-0.13990411,-0.29933667,-0.18230893,0.11731723,0.6271858,0.5499909,0.024185264,0.052218236,0.30943963,0.020327296,0.070455216,-0.21114156,-0.3397033,-0.13117056,-0.06867002,0.45985365,0.4409375,-0.31252733,0.43011236,-0.0134584345,0.35580924,-0.07238506,-0.53323215,0.38264504,0.9282612,-0.20828547,-0.57848173,0.6623839,0.3777851,-0.18151972,0.39048076,-0.5249279,-0.22547406,0.44979763,-0.3189643,-0.4943852,0.20681916,-0.4084581,0.032355905,-0.8379876,0.19464417,-0.41264564,-0.5593405,-0.44637772,-0.15279822,-3.3864257,0.24922074,-0.40069282,-0.14905187,-0.28435266,-0.024253398,0.102016866,-0.6140888,-0.63804185,0.1357381,0.106981054,0.6058998,-0.061356593,0.064580634,-0.18360622,-0.2627224,-0.19222762,0.20862326,0.009428933,0.25401443,-0.034914084,-0.4034399,-0.08336714,0.07856851,-0.37335318,0.027887894,-0.4581466,-0.40394866,-0.08475749,-0.3946276,-0.12002372,0.59169674,-0.36839318,0.077400886,-0.31184202,0.13949485,-0.11538032,0.26677567,-0.09352059,0.17358142,0.091988504,-0.16349922,0.09216514,-0.2922033,0.38407886,0.013741048,0.38007078,0.3217068,-0.25595742,0.18285824,0.3762589,0.5848685,-0.12611097,0.81965554,0.46388426,-0.18095799,0.29067624,-0.18353574,-0.23426262,-0.6220823,-0.34469903,0.107100844,-0.481802,-0.4621116,-0.13825727,-0.3969264,-0.8300233,0.39203906,-0.00093064085,0.3707643,-0.021099817,0.3235443,0.5902066,-0.10696185,0.08137154,0.053017784,-0.22916959,-0.37513155,-0.20688802,-0.5338565,-0.42393464,0.22205935,1.0649776,-0.23223808,0.07865903,-0.032830667,-0.21665558,-0.033214584,0.19590002,0.09466135,0.16627356,0.48414418,-0.20002674,-0.62582684,0.44478327,-0.18629295,-0.14712788,-0.6616469,0.20871125,0.4791137,-0.4859397,0.68200946,0.24393737,0.05156375,-0.19138485,-0.4839995,0.009154798,-0.02879512,-0.29926792,0.52055126,0.2703391,-0.5827381,0.40889645,0.36946413,-0.13978672,-0.68121797,0.36775088,-0.019060588,-0.2912864,-0.014266142,0.38967174,0.18641458,-0.06125136,-0.13600577,0.1929587,-0.3547244,0.3338468,0.14641897,-0.24068864,0.2326996,-0.17265779,-0.17980841,-0.8027721,-0.016706478,-0.59081376,-0.15315333,0.24675782,0.13681652,0.13686657,0.087622136,-0.013411138,0.54074484,-0.17703086,0.057454214,-0.16613226,-0.29494599,0.36647528,0.4676578,0.26931906,-0.51162225,0.45023325,0.009949427,-0.2483731,-0.103048205,0.1891675,0.57702553,-0.022920012,0.44373932,0.0069740303,-0.2094479,0.34224653,0.73048997,0.13196054,0.4877563,0.06854789,-0.16314615,0.20832409,0.0658747,0.11133899,-0.1756413,-0.68724525,-0.051407337,-0.17728558,0.13079217,0.5013795,0.11051548,0.32672513,-0.08490202,-0.25779137,0.010664726,0.23888776,0.14180529,-1.0107691,0.27036947,0.13870986,0.93467855,0.41004455,-0.026442863,0.08182454,0.5989278,-0.05807625,0.085109755,0.39787516,0.03193447,-0.5043301,0.5240655,-0.7026541,0.31054068,-0.008442506,-0.052397475,0.020336539,0.058484524,0.26395243,0.74717534,-0.14788127,-0.048948698,-0.12922615,-0.2850989,0.24406117,-0.24135113,0.11820577,-0.46912214,-0.36682713,0.4954814,0.52138484,0.33665127,-0.15186682,-0.009192839,0.10464928,-0.101861596,0.17585856,0.027783558,0.13988608,-0.067076504,-0.59933895,-0.239458,0.31296122,0.18177488,0.17918098,0.051348157,-0.16338314,0.17925349,-0.101550356,-0.088262096,-0.036765624,-0.49395585,-0.06093584,-0.14361237,-0.6063417,0.4965148,0.0065271296,0.2372951,0.083057284,-0.014124431,-0.23591232,0.23999178,-0.004303448,0.7152087,-0.043957237,0.05747187,-0.40160775,0.19786139,0.053480722,-0.16826306,-0.09636183,-0.2149595,0.11223338,-0.7228577,0.4612842,-0.015328247,-0.42540282,0.34850693,-0.18800935,-0.04939132,0.5158503,-0.24179469,-0.12019587,-0.033593636,-0.104184225,-0.20146498,-0.31106633,-0.101542786,0.2041113,-0.016347822,0.031617075,-0.15431191,-0.09401933,-0.13605586,0.3103649,-0.05356795,0.31538424,0.3992797,0.06271469,-0.42979816,-0.16624576,0.31842238,0.42173383,0.023975689,-0.06285076,-0.26597512,-0.66404283,-0.4754229,0.15183873,-0.012144178,0.36136568,0.070848435,-0.21140753,0.8182583,-0.0018502772,1.1813338,-0.011702588,-0.3755283,0.06488483,0.6330726,0.067220934,0.031833407,-0.2539928,0.81936765,0.6943285,0.035697125,-0.06270175,-0.4785939,0.07779922,0.13930508,-0.21826792,0.054388702,0.011398777,-0.6282766,-0.439419,0.23979871,0.18648893,0.1766366,-0.06556267,0.059431136,0.15261243,0.017891914,0.30684,-0.48051035,-0.32355055,0.1684795,0.20735754,0.035314687,0.04144188,-0.59797776,0.37155858,-0.56171185,0.07454693,-0.16082793,0.1861644,-0.22626828,-0.1568473,0.28559163,-0.07582211,0.3722461,-0.34665298,-0.3584336,-0.15260187,0.47585592,0.15546677,0.121719696,0.5822012,-0.28397173,0.07057454,0.17380214,0.54625094,0.994593,-0.14583424,0.121777326,0.4740103,-0.3283577,-0.65746284,0.35877895,-0.32727158,0.10925574,0.06348464,-0.3107473,-0.2779346,0.28053933,0.09493813,-0.067139216,0.021577138,-0.5270268,-0.27626175,0.3087562,-0.37528348,-0.04750513,-0.21835798,0.10404915,0.62976503,-0.32470852,-0.30724496,0.0028348248,0.3350393,-0.09491858,-0.53987145,-0.0213357,-0.2530264,0.42047656,0.14141397,-0.28149068,-0.097413845,0.008785162,-0.41636568,0.13865541,0.1504956,-0.32805887,0.07436145,-0.34127223,-0.1343163,0.73934245,-0.17538163,0.1412836,-0.6160394,-0.29791075,-0.8106645,-0.3023525,0.23622686,0.10019519,-0.041710287,-0.6481717,-0.0027752146,-0.26700485,0.02977838,-0.042731322,-0.3131598,0.40697014,0.10544817,0.461646,-0.22278829,-0.7120141,0.14470136,-0.016393786,-0.22006035,-0.66022724,0.65788585,-0.11743288,0.7533348,0.017904274,0.12930396,0.25770134,-0.50478077,-0.028718814,-0.26021016,-0.30725563,-0.7117869,-0.06954589 +962,0.3077379,-0.8225179,-0.5726567,0.007373041,-0.1732082,-0.04983467,-0.38709602,0.4071464,0.19453385,-0.20238805,-0.13108125,-0.13556953,-0.06677808,0.7791251,-0.21755162,-0.6162446,-0.3125584,0.083918676,-0.72732484,0.79874206,-0.31055748,0.07551468,-0.031093273,0.55880994,0.47915134,0.06320906,0.04510158,0.16012008,0.0503153,-0.33901536,0.02421083,0.11290252,-0.7299653,0.25528845,-0.25502428,-0.45710984,-0.08865567,-0.68286544,-0.5203933,-0.8402289,0.37832284,-1.1510655,0.7455877,0.022871494,-0.25976756,0.046585534,0.058977794,0.28870422,-0.046035655,-0.035195928,0.17323324,-0.018531376,0.02880947,-0.23459132,-0.29866743,-0.44818798,-0.60692215,-0.017428365,-0.6385601,-0.27628273,-0.14457819,0.24132696,-0.6367362,-0.012690725,-0.09838413,0.4704779,-0.53064054,0.10828833,0.0015349805,-0.03212279,0.18818717,-0.5942179,-0.22141925,-0.13507509,0.18702982,-0.15666716,-0.24016008,0.1617638,-0.0345402,0.25453767,-0.22318813,-0.13102166,-0.29181772,-0.11561541,0.18225428,0.74118984,0.11594608,-0.69057596,-0.26789045,0.26467592,0.35591027,0.17188624,0.0749989,-0.4732732,-0.12585802,-0.17196025,-0.07882239,0.8610735,0.5048574,-0.15485807,-0.42501324,0.41090098,0.5590845,0.6028457,-0.18767723,-0.10496533,0.15014976,-0.5769415,-0.013284525,0.28911728,-0.10815517,0.5580543,-0.04048351,0.45708972,0.66404116,-0.35470796,0.10968522,-0.028996017,0.051440097,-0.32169968,-0.13842459,-0.2526729,0.2537458,-0.33658746,0.28192517,-0.29708347,0.77584726,0.068501174,-0.7398437,0.29732996,-0.6615446,0.1660949,-0.036113624,0.7081772,0.82412875,0.49096638,0.34782276,0.58716285,-0.06547473,0.1642812,-0.17874336,-0.37336743,0.03232529,-0.39883074,-0.15636328,-0.5553812,-0.256512,-0.116738044,-0.14034705,-0.06513762,0.7641999,-0.4938863,-0.24819979,0.00412541,0.892392,-0.1509219,0.029696226,0.97363615,1.0452284,1.1375487,0.072345264,1.227598,0.17676876,-0.12090763,0.1435605,-0.026966041,-1.0425897,0.37890247,0.48137274,0.16976313,0.70704854,0.0607121,-0.0651824,0.4841029,-0.59744567,0.08806289,-0.23308472,0.17525837,0.2664017,0.03937728,-0.5639744,-0.1476487,-0.17680812,0.17734833,0.009241158,0.28232208,-0.48933735,0.4225692,0.2106152,1.8414621,-0.16798222,-0.021749157,0.022585785,0.6975666,0.12728345,-0.17125246,0.0048426627,0.41829854,0.52678573,0.21200386,-0.8436116,0.24034896,-0.27248773,-0.36071426,-0.24391568,-0.2801196,-0.06673023,-0.34392875,-0.3577676,-0.065292075,-0.13657022,-0.2387712,0.43711066,-2.5692265,-0.3530407,-0.101481795,0.36739856,-0.33755952,-0.41330537,-0.03892138,-0.44851318,0.49246877,0.32268888,0.65566087,-0.74359024,0.21141663,0.5462569,-0.69404095,-0.19225898,-0.7430705,-0.023654884,0.019784201,0.75707567,-0.11703309,0.1107008,0.239083,0.19166724,0.59034765,0.08670971,0.101759896,0.40789086,0.6830428,-0.025187317,0.5323203,-0.18257709,0.3327252,-0.47786245,-0.17531696,0.40819246,-0.29052496,0.42517647,-0.2445068,0.17953335,0.6111963,-0.4778737,-1.0131204,-0.4972202,-0.32321876,1.0439937,-0.397877,-0.547484,0.16009423,-0.109661505,-0.3179438,-0.3066801,0.6345007,-0.3951446,-0.0424469,-0.80468833,-0.042040814,-0.13939145,0.21852478,-0.103385985,0.023835182,-0.3165262,0.5322897,0.00818793,0.29236656,0.21471572,0.24292645,-0.432525,-0.70259607,0.2794908,0.7389684,0.41141734,0.09126967,-0.33061385,-0.16825107,-0.07193661,-0.13576359,-0.13790241,0.67623985,0.70385104,-0.13017428,0.23866911,0.38462964,-0.16449222,-0.05321915,-0.23888712,-0.1355958,-0.23696828,0.2842783,0.6428407,0.9436356,-0.0991206,0.68184954,-0.085862465,0.07764681,-0.04319106,-0.3924972,0.44463557,1.065341,-0.15564175,-0.36182874,0.43921408,0.6082546,-0.5923055,0.4917222,-0.601544,-0.1356394,0.52638066,-0.17137797,-0.6627288,0.40818372,-0.23256716,0.08834137,-0.9356201,0.3936225,-0.17763157,-0.4870437,-0.8048379,-0.104691125,-2.069566,0.11006117,-0.2947364,-0.48692784,-0.29132593,-0.27638954,0.20606256,-0.6593499,-0.7215158,0.1355664,0.16191287,0.6264065,-0.23589873,0.16628608,-0.19624665,-0.289056,-0.28581545,0.19508383,0.25329003,0.366808,-0.13571496,-0.51408446,-0.18331371,-0.014992595,-0.48142618,0.14883071,-0.7122112,-0.4469479,-0.07978984,-0.65400296,-0.14236055,0.7042176,-0.03741648,-0.13349949,-0.21074665,0.092569076,0.07700344,0.47629756,0.13848917,0.122386396,0.11756823,-0.07328317,0.08350561,-0.15535791,0.34357893,-0.04517869,0.25046164,0.33158278,-0.28520378,0.5344202,0.7016448,0.547537,0.051298987,0.9371891,0.5198371,-0.18644226,0.19990206,-0.12378013,-0.30224335,-0.5998155,-0.2602604,0.1987879,-0.3932019,-0.59544384,-0.28201205,-0.1857123,-0.8756609,0.72114104,0.035480667,0.38084102,-0.08812876,0.33036464,0.47546786,-0.15155305,-0.12750404,-0.007817966,-0.10311134,-0.4234619,-0.42977914,-0.68079925,-0.5307699,0.09778668,0.93783265,-0.15006362,-0.14333448,0.094893664,-0.49919575,0.04180547,0.17875998,-0.06136606,0.23112674,0.36102793,0.19771573,-0.71201503,0.58828557,-0.07040469,-0.16075236,-0.72849625,0.12162373,0.7254667,-0.5868303,0.32504433,0.18465789,0.06287581,-0.39978623,-0.43952674,-0.010466492,0.08949154,0.0031223192,0.22030869,0.29439068,-0.75835,0.5200496,0.25842512,-0.35409823,-0.6346098,0.55286807,0.040798247,-0.01965471,-0.1691987,0.3541022,0.121563196,0.04244377,-0.37447459,0.53386307,-0.17116234,0.2387098,-0.08245708,-0.08370938,0.29288077,-0.14631805,-0.2675106,-0.7515332,0.3106594,-0.4947164,-0.41012865,0.57313,0.069257185,0.16144885,0.16414757,0.1115949,0.4076189,-0.35585135,-0.03249471,-0.11258952,-0.29842314,0.37136698,0.5599373,0.6904879,-0.6113868,0.64459383,0.15759033,-0.09522125,0.3398048,0.07685399,0.35264555,0.0006444931,0.42096034,0.13219614,-0.2424657,0.18782702,1.0874727,0.255283,0.6072747,0.11353643,-0.13572522,0.2998151,0.15138772,0.27187848,-0.18846127,-0.6548268,0.051359355,-0.21292737,0.05994904,0.65668666,0.12421538,0.24757953,-0.27110013,-0.4044857,0.039619274,0.12220627,0.20189723,-1.5671355,0.15970373,0.29097757,0.7868336,0.3340873,0.08017975,0.33722943,0.717131,-0.19672461,-0.07261703,0.42970496,0.22238874,-0.6979187,0.65060586,-0.76627064,0.6215924,-0.05834667,0.08138916,0.1764955,0.16128305,0.52146864,0.6545926,-0.34439144,-0.10590048,-0.16100413,-0.34291568,0.0007148713,-0.50019276,0.41041332,-0.546353,-0.53058887,0.69642437,0.71620685,0.2235496,-0.021069322,0.032199483,0.08853134,-0.17171106,0.27359074,0.048083447,-0.098192915,-0.16912556,-0.91993284,-0.0879153,0.59643745,-0.00785408,0.08740339,-0.17169105,-0.007771671,0.31933412,-0.17322448,-0.135363,0.021233622,-0.9208582,0.06384413,-0.4654483,-0.66627485,0.25111896,-0.21829596,0.19285746,0.21660313,-0.06660519,-0.46536645,0.3109432,0.08698309,1.1058899,-0.09301128,-0.22835286,-0.4304533,-0.03912943,0.25929183,-0.32041344,-0.04610895,-0.20866278,-0.05158657,-0.6474988,0.62707067,-0.15937746,-0.4848237,0.06724378,-0.23884101,0.0527362,0.7342581,0.08560936,-0.15156882,-0.13654803,-0.410345,-0.39122233,-0.395012,-0.094558015,0.27996996,0.2824968,-0.08373717,-0.14060588,-0.04984356,-0.14266753,0.48712254,-0.026951153,0.52735656,0.47448856,0.4039755,-0.18495266,-0.22548358,0.19440134,0.6652076,0.14929777,-0.099767074,-0.26622996,-0.46104974,-0.4515739,0.26074076,-0.14987147,0.40399393,0.059209663,-0.46925825,0.76763,0.13809124,1.115771,0.034057982,-0.49240357,0.39162058,0.6169828,0.038357116,-0.22459897,-0.4937996,1.0276998,0.51716095,-0.055475432,-0.17053832,-0.5878709,-0.28009453,0.3585353,-0.37660939,-0.039203584,-0.12692845,-0.43556228,-0.007242358,0.22088793,0.20293415,0.13693957,-0.26527685,0.018371407,0.34043807,-0.019857,0.339461,-0.5316003,0.029028391,0.28967422,0.16968292,-0.035576038,0.0355879,-0.555611,0.37133107,-0.49582607,0.20766935,-0.48214293,0.35467553,-0.1587805,-0.17566316,0.24650426,0.052509677,0.4915523,-0.50401,-0.32394537,-0.20749009,0.47957927,0.2503767,0.17282769,0.6023277,-0.29271856,0.24556093,-0.093704,0.55900896,1.1220131,-0.32805943,0.041343458,0.2574833,-0.5003725,-0.70516837,0.46238384,-0.50763834,0.45812225,-0.03723728,-0.026451314,-0.76032406,0.28427076,-0.011306155,0.16899236,-0.16513136,-0.5761113,-0.24117413,0.33471662,-0.24018395,-0.23549402,-0.47444472,-0.14938398,0.6253904,-0.09790872,-0.5016246,0.08953603,0.33058232,-0.16711597,-0.43041143,-0.019197237,-0.28427854,0.12451039,-0.09306984,-0.3066066,-0.16250929,0.06831476,-0.6264362,0.046071038,0.01349399,-0.37458324,0.030976683,-0.09043411,-0.07897724,1.185704,-0.5989253,0.008190644,-0.79341704,-0.63983905,-0.82105845,-0.3292213,0.37637743,0.22319598,0.23646507,-0.77766067,0.1622596,-0.036432695,-0.1882084,-0.12004441,-0.583394,0.417309,0.012760852,0.42990512,-0.3726334,-1.0061201,0.44021624,0.025706116,-0.1147954,-0.7958693,0.6518799,-0.04380413,0.7854687,0.09283526,0.25623798,0.10874311,-0.58653057,-0.2334096,-0.08287187,-0.29501495,-0.7733036,0.30781856 +963,0.61974186,-0.28734,-0.6573937,-0.15085295,-0.40634203,-0.11980861,-0.069573455,0.3249591,0.36055008,-0.26186788,-0.37049377,-0.020117998,0.10096594,0.3734159,0.03264141,-0.9271145,-0.1440447,0.35271257,-0.8372517,0.5827916,-0.50615275,0.27183515,0.0041227844,0.40526834,0.21799472,0.35196787,-0.071750626,-0.095036745,-0.109181374,0.2054355,-0.10547122,0.3162478,-0.3935789,0.07621439,-0.056687847,-0.26701096,-0.16176523,-0.51508266,-0.14995195,-0.7971488,0.19253452,-0.8743967,0.430345,-0.09353241,-0.2205179,-0.26050204,0.029293515,0.4168522,-0.37747076,0.0013827452,0.12904404,-0.07036187,-0.193529,-0.24081582,0.015432954,-0.15540758,-0.51400334,-0.037255935,-0.3997479,-0.15038994,0.10211043,0.08681852,-0.4135815,-0.026634078,-0.31554273,0.3991093,-0.4188581,-0.01799233,0.54736596,-0.12576903,0.101924434,-0.51438004,-0.06351663,-0.028970562,0.5125301,-0.044901725,-0.3303302,0.37450936,0.18803594,0.47929996,0.3739916,-0.27890885,-0.03976876,-0.0853825,0.17659368,0.5098513,-0.037705276,-0.37950695,-0.20694259,0.068031915,0.23788632,0.33695662,0.033309862,-0.3504226,-0.13736399,-0.18167026,0.02349892,0.25437647,0.4410149,-0.13438693,-0.35715288,0.3983897,0.7415057,0.34398195,-0.15833282,0.05734152,0.05732697,-0.648525,-0.191827,0.20411518,-0.041568305,0.4781101,-0.12133547,0.22277993,0.7419834,-0.12284495,0.040165856,0.09808254,0.036765512,-0.22965695,-0.49092242,-0.24442863,0.19525176,-0.5063792,0.13873285,-0.21696578,0.7402963,0.29747432,-0.71437335,0.37578928,-0.6280172,0.22683941,-0.07361495,0.72015643,0.87821555,0.26518625,0.30436257,0.6303407,-0.081821844,0.2722897,0.08175169,-0.50097823,0.00826986,-0.09683636,0.14701457,-0.5416634,0.14860977,-0.17423478,-0.041312072,0.13198186,0.43683177,-0.6404628,-0.17474549,-0.119420394,0.63283324,-0.3103457,-0.06429027,0.894071,0.9123561,0.88081205,0.09451545,1.4082776,0.3979867,-0.3168057,0.3428782,-0.55911964,-0.8072755,0.2218596,0.2219122,-0.42285368,0.53433603,-0.037120268,-0.22557321,0.4429661,-0.27454156,0.11132109,-0.10646344,0.34862715,-0.14207752,0.03407544,-0.63191885,-0.2753991,-0.18647835,-0.056763455,0.17416587,0.3219234,-0.32519266,0.40338972,-0.11329263,1.4526647,-0.10434224,0.06228988,-0.071140274,0.32530752,0.2173152,-0.30648354,-0.23716229,0.4684275,0.50862825,-0.18457443,-0.70815194,0.35693315,-0.32290787,-0.29806498,-0.18127514,-0.45462972,0.024439398,-0.13884367,-0.3970381,-0.16817664,-0.077255875,-0.33916774,0.38834792,-2.5299551,-0.37296283,-0.094313785,0.3794386,-0.2579615,-0.2898006,-0.23880926,-0.5193633,0.13857779,0.08993854,0.5573647,-0.6821867,0.5560316,0.45567846,-0.5947839,-0.16405055,-0.81492716,-0.049742654,0.182141,0.25880638,-0.056866206,0.061724994,-0.06556935,0.030135265,0.43728146,-0.033557918,0.082157135,0.5552276,0.41093272,0.24164368,0.38133353,-0.027190711,0.7098172,-0.31178346,-0.09909534,0.3147735,-0.24327111,0.31103617,-0.08834268,0.07159416,0.61834824,-0.47711006,-0.8819789,-0.5442151,-0.40494794,0.9828137,-0.48031828,-0.37187943,0.19453344,-0.23517159,-0.09308045,0.052842356,0.65395534,-0.09650861,-0.15393415,-0.76902825,0.03933141,-0.0073568914,0.20822929,-0.009760352,-0.051369723,-0.2378054,0.53182495,-0.019663077,0.5959021,0.19731314,0.3012523,-0.14737763,-0.42605972,0.20567568,0.6491622,0.1924428,-0.07820575,-0.113406435,-0.24875014,-0.16493446,-0.14158076,0.003433764,0.56834567,0.77305794,-0.046232894,0.12447843,0.34507707,-0.0067730406,0.17002593,-0.15450177,-0.15009686,-0.14739884,-0.06783176,0.41433054,0.76566374,-0.27722338,0.6758992,-0.27729222,0.25684616,-0.067304365,-0.59033966,0.6738845,0.6770454,-0.2712429,-0.13310957,0.53283656,0.35280862,-0.49340117,0.5229069,-0.55840236,-0.06071971,0.5793785,-0.17586859,-0.33508837,0.34070036,-0.1821797,0.26162362,-0.99325764,0.2713349,-0.32849705,-0.49516532,-0.45091337,0.13212568,-2.805297,0.29060096,-0.18427876,-0.13811086,-0.18882054,-0.14660218,0.15728961,-0.75300246,-0.616083,0.22299163,0.22196929,0.7056512,-0.1716579,0.0931625,-0.27761704,-0.30010945,-0.21276177,0.0646706,0.027805887,0.40026826,-0.25055063,-0.38878077,-0.083308,0.0062512984,-0.46473277,0.2161533,-0.8001938,-0.5240991,-0.09550463,-0.8118233,-0.17757472,0.6963214,-0.22077648,-0.104247294,-0.18079893,0.019014465,-0.2109049,0.36197442,-0.005542526,0.23040716,0.29299542,-0.016248813,0.05316957,-0.24870147,0.3429156,-0.07711827,0.38401935,0.12162574,-0.15055616,0.35603064,0.48736283,0.7180387,0.028060151,0.8267517,0.56506085,-0.09872769,0.23703854,-0.33251396,-0.26964617,-0.5263516,-0.37477154,-0.09342366,-0.39806038,-0.62805855,-0.06118265,-0.3693238,-0.84469247,0.5320593,-0.013787527,0.35511667,-0.113856874,0.16220382,0.62923086,-0.15338184,0.043066606,-0.12682523,-0.23567082,-0.48479974,-0.19756435,-0.694261,-0.48553684,0.22931466,1.0704176,-0.3771462,0.2234638,-0.2062914,-0.42796278,0.040615294,0.14892626,0.008709862,0.39702702,0.3579915,-0.19935161,-0.52792263,0.39650983,-0.11014472,-0.21369442,-0.44585815,0.08642511,0.60210115,-0.8007215,0.7174765,0.1338965,-0.050091267,-0.046193175,-0.46084034,-0.20190237,0.11634783,-0.21620676,0.40953782,0.28114098,-0.49981195,0.4707022,0.33101428,-0.2278296,-0.8149391,0.28919417,-0.11574303,-0.18410832,-0.13642329,0.37433994,-0.11760699,0.04389495,-0.3686915,0.07286179,-0.41609997,0.18563703,0.33059248,-0.23426011,0.13028684,0.036488798,-0.23783149,-0.7196773,0.14831306,-0.6083137,-0.15979427,0.36079186,-0.00025927907,0.18797605,-0.07821028,0.28518456,0.4477536,-0.41044363,0.023022117,0.10642608,-0.29536277,0.105151325,0.48915446,0.289612,-0.4576755,0.37592712,0.14491118,-0.118029,0.08028188,0.069855645,0.3741152,0.16504055,0.40247557,-0.12251957,-0.27322203,0.24447213,0.7808799,0.05209981,0.44481248,0.06303027,-0.091268465,0.21751015,0.02378844,0.3700321,-0.023403963,-0.31633568,0.04124966,0.18114427,0.21536018,0.5790467,0.4660645,0.36089674,0.036731668,-0.33765063,0.015537171,0.280599,-0.0044608023,-1.2900211,0.461635,0.28867376,0.8361842,0.5325808,0.10312362,-0.24355419,0.4558419,-0.20745167,0.22637479,0.35257497,-0.25669506,-0.5946283,0.7368422,-0.678745,0.47159898,-0.15502095,-0.06388189,0.15730268,-0.041067645,0.32402802,0.75180733,-0.16412984,0.05234079,-0.13349918,-0.10110001,0.012295282,-0.39403662,-0.0632182,-0.6051478,-0.31950697,0.64096355,0.43532383,0.31669638,-0.19398023,0.0011848853,0.17075601,-0.08378328,0.16539167,0.11377639,0.10228157,0.30647624,-0.64622504,-0.40693805,0.5432241,-0.23968643,0.06461761,-0.15609668,-0.35791916,-0.01485831,-0.20716132,-0.038541853,-0.07676195,-0.7935019,0.101529635,-0.34278643,-0.4996597,0.28663,-0.089557104,0.06840123,0.27209952,0.047934063,-0.31771642,0.41453993,0.023937276,1.0896138,0.057333782,-0.24461001,-0.36761034,0.31639534,0.33568698,-0.2840158,0.047984764,-0.392669,0.09675085,-0.40108812,0.7134224,0.12698518,-0.3853679,0.10931059,-0.19084051,-0.0059686312,0.42419836,-0.20987114,-0.12506706,-0.19759256,-0.16439949,-0.501813,0.050580934,-0.27291828,0.18274818,0.46123078,-0.0034706134,-0.06598903,-0.071563035,-0.0648057,0.7261886,0.07904546,0.47478187,0.4923269,-0.05171836,-0.15935619,-0.028448949,0.43149754,0.43767172,0.16574067,-0.03125761,-0.63210326,-0.29416972,-0.34258837,0.18452145,-0.096290775,0.34226182,-0.056024663,-0.12695873,0.86210895,0.1547001,1.2394553,0.036792535,-0.28906927,0.10866283,0.3933121,-0.15100549,-0.05792959,-0.4854409,1.0067861,0.36972097,-0.11001013,0.044546314,-0.52064353,-0.35440034,0.4551341,-0.26435637,0.006116796,-0.04380887,-0.48017782,-0.44783896,0.13855216,0.14418729,0.11459296,-0.066163585,0.044086438,0.0745254,0.03019461,0.11647458,-0.66787463,-0.15929581,0.08059735,0.21148852,0.045504753,0.2907899,-0.3794256,0.50039506,-0.7833399,0.26892048,-0.28988367,0.24033979,-0.047396783,-0.3772549,0.17828855,0.10882656,0.3599293,-0.33129945,-0.34900826,-0.33027312,0.6139563,0.052504696,-0.014958749,0.7517385,-0.31840977,0.117292404,0.34294382,0.6015923,1.2057064,-0.15498106,0.053552788,0.29367557,-0.33926848,-0.68691456,0.35105845,-0.21747765,-0.048095226,-0.21493313,-0.34139845,-0.70153576,0.29643565,0.13985628,0.12338427,0.17924947,-0.5223885,-0.13210899,0.23223804,-0.33466065,-0.116659455,-0.44671977,0.2877533,0.8478988,-0.24917075,-0.3313598,0.097723044,0.10038327,-0.27641943,-0.2961991,-0.09668911,-0.35482973,0.2588855,-0.11286728,-0.19651915,-0.25814888,0.107524864,-0.3375243,0.14354075,0.21372017,-0.2553009,0.3059294,-0.12332128,-0.19617844,1.0547054,-0.2041896,0.033894684,-0.69626105,-0.5137316,-0.8244387,-0.53392893,0.12782606,0.12814853,-0.048110656,-0.6203715,0.3224562,-0.029769646,-0.12697253,0.083010346,-0.3955413,0.39208126,0.114814796,0.30922502,-0.2584487,-0.9804773,0.2046594,0.15570985,-0.30268133,-0.68687886,0.5579868,-0.071503714,0.8330464,0.086469725,0.031102227,-0.04884762,-0.34120747,-0.015505075,-0.34342745,-0.0935949,-0.91168743,0.017145423 +964,0.48981428,-0.10195083,-0.6170635,-0.13873447,-0.45486948,0.13943693,-0.25906056,0.14484452,0.24277145,-0.095479965,-0.23635581,0.12400646,-0.23645757,0.24815185,-0.14638892,-0.832303,-0.06306273,0.13461645,-0.59994066,0.54432243,-0.19733427,0.33481672,-0.1456686,0.32389933,0.30093685,0.4236962,0.11946009,0.169118,0.17597404,-0.20731372,-0.026231894,-0.24000758,-0.7993236,0.3174949,-0.31583533,-0.40649027,-0.10333292,-0.55717814,-0.35936788,-0.7515718,0.5203475,-0.733546,0.6678756,0.2217384,-0.34679142,-0.1576907,0.20488466,0.17982855,-0.21537948,0.066833414,0.3414254,-0.42046982,-0.007816058,-0.14509597,-0.3316081,-0.43300244,-0.6484244,-0.20438609,-0.43248865,-0.013708844,-0.15758187,0.21901202,-0.237918,-0.013149202,-0.3299083,0.14688092,-0.4860069,0.094393805,0.20958665,-0.18710896,-0.12110192,-0.70630085,-0.21945883,-0.06829031,0.2784046,0.27459666,-0.15049051,0.48388082,0.08889522,0.5141172,0.29338473,-0.3130449,-0.3317909,-0.027031284,0.1260311,0.5310368,-0.1650835,0.31197786,-0.3649533,-0.22027662,0.61739296,0.45800135,0.050946347,-0.18775058,0.14339016,-0.32067835,0.03428706,0.36582512,0.60575074,-0.32292587,-0.047482304,0.21904948,0.3137379,0.3825063,-0.17838605,0.11410569,-0.10741076,-0.29675862,-0.3512356,0.16382025,-0.0932367,0.26642695,0.0038661389,0.14493527,0.48808149,2.6909205e-05,0.0764326,0.04509658,0.00884007,0.2747347,-0.25859514,-0.4001601,0.48723397,-0.5831179,0.5232309,-0.2429722,0.420857,0.1714286,-0.6148161,0.2842635,-0.6414408,0.1248848,-0.028692488,0.64625514,0.9620646,0.59903705,0.06800813,0.927634,-0.4299375,0.084486045,-0.068477765,0.05704877,0.062933214,0.0056451103,0.23396192,-0.41825074,0.14454032,-0.23300482,0.06621898,0.21655038,0.28686583,-0.16807468,-0.20647874,0.0640409,0.724404,-0.26092154,0.17285626,0.77736914,1.1540805,1.124771,-0.089792326,0.9595055,0.05500212,-0.21474622,-0.5298718,0.04399291,-0.6010638,0.061089627,0.30079386,0.15524699,0.47055465,0.2374541,-0.040157977,0.4041999,-0.39528185,-0.16847871,0.120611735,0.083053075,-0.044722464,0.0014617259,-0.5211116,-0.33416468,0.16525462,0.05153192,0.004832011,0.449259,-0.33960024,0.4947707,0.04442778,0.8693758,0.13041037,0.17483248,0.24230263,0.3804895,0.24553023,-0.28657013,-0.055133276,0.06970357,0.27800572,0.021721043,-0.5780891,0.060761515,-0.4371821,-0.32353354,-0.07145503,-0.42495066,-0.42770126,0.06802036,-0.33480978,-0.30954468,-0.06559871,-0.2878019,0.40897185,-2.460156,-0.058573678,-0.16407418,0.37982643,-0.26542157,-0.2982127,-0.14690813,-0.48909634,0.2573089,0.19508079,0.38242033,-0.3525629,0.3830126,0.3919946,-0.632661,0.11621192,-0.49175632,-0.17689255,0.17724122,0.28834864,-0.1265419,-0.13299619,-0.24040031,0.3694078,0.71898264,0.35491684,-0.07575223,0.31216547,0.43830007,-0.24223192,0.33164927,-0.082875624,0.5011205,-0.5521828,-0.22524033,0.44969752,-0.36778036,0.6118999,-0.3239383,0.09429167,0.4970979,-0.45703554,-0.703616,-0.3334665,-0.28675425,1.2651392,-0.35447386,-0.71610713,0.06322941,-0.37076572,-0.1843963,-0.05225784,0.5999065,-0.22099003,-0.1204681,-0.57478446,-0.18662442,-0.26111317,0.24257992,-0.03671101,0.1149042,-0.44866377,0.9074837,-0.097644314,0.63035935,0.2977754,0.27518314,0.16363968,-0.30458266,0.19482714,0.5216747,0.69769704,0.16688119,-0.29986757,0.053793445,-0.008576145,-0.30249023,0.20001027,0.9162407,0.5258275,-0.28981176,0.057889573,0.2703351,-0.062472012,0.10145338,-0.11069831,-0.40695965,-0.30548337,-0.059810344,0.50551057,0.8266522,-0.018522121,0.12946454,0.007961443,0.2757912,-0.22387585,-0.44731963,0.31666124,0.72052765,-0.093673915,-0.09660853,0.77144563,0.54091394,-0.21903545,0.5563653,-0.73830855,-0.3279045,0.62620896,0.0070499,-0.45546442,-0.102714725,-0.47008708,-0.039142154,-0.5975625,0.17452934,-0.31703794,-0.5202039,-0.51986206,-0.21659015,-2.5470095,0.09480412,-0.3283404,0.10019317,-0.32398394,-0.26973546,0.34040153,-0.6255094,-0.7113298,0.08884262,0.012365644,0.5803482,-0.2536912,0.13686039,-0.24150303,-0.36613384,-0.36560407,0.37809467,0.31601393,0.3255033,-0.23803157,-0.1592786,-0.07696463,-0.013836856,-0.40324387,-0.20708431,-0.4936219,-0.30932772,-0.06550897,-0.35298777,-0.1289964,0.46096438,-0.41412747,0.033123933,-0.21699014,-0.095716946,-0.19885734,0.053384762,0.2488011,0.35770175,0.1559445,-0.11966442,0.014728101,-0.19527122,0.44864517,0.23577353,0.46188635,0.37961417,-0.19449209,0.033424266,0.40121636,0.5909886,-0.17686193,0.9127988,0.13981919,-0.042953886,0.5051892,-0.2769644,-0.65485513,-0.87775195,-0.17660935,-0.015271164,-0.40542188,-0.57871455,-0.116653234,-0.31063426,-0.9795265,0.34315172,0.16465625,0.37861922,-0.14064763,0.06705849,0.3486897,-0.1941295,-0.08722997,0.033835616,-0.099801116,-0.35576457,-0.38359883,-0.572612,-0.5619779,-0.03531796,1.0423505,-0.07512415,-0.002870092,0.44188717,-0.34812626,0.20771544,0.11529572,0.24172728,-0.11051623,0.41060454,0.3084216,-0.5410644,0.536894,-0.07937108,-0.06346266,-0.6181153,0.09290891,0.66419655,-0.51673454,0.53361416,0.46925122,0.08655153,-0.0988378,-0.74590653,-0.15842925,0.05713107,-0.34408662,0.55885166,0.46450076,-0.47702202,0.40502024,0.08742457,-0.12527587,-0.63395,0.6698138,-0.05777273,-0.22888246,0.044417128,0.46332154,0.10881996,-0.054493062,0.4300882,0.44237524,-0.1989136,0.42915732,0.2820261,-0.09658524,0.2289177,-0.04098204,-0.2556661,-0.7265898,0.20965579,-0.5881228,-0.28888276,0.4033981,-0.03990615,0.120306656,0.06682355,0.4134046,0.49948865,-0.3754096,0.22025622,-0.19610515,-0.34645283,0.44888088,0.4460589,0.63797766,-0.5624136,0.5217939,0.15637079,-0.109675005,0.41077948,0.27228147,0.40148932,-0.050945446,0.30617467,-0.20702632,0.08466132,-0.25264248,0.5091405,0.27643454,0.02199948,0.073602565,-0.16202077,0.40833503,0.1715011,0.015958332,-0.18620968,-0.55894935,0.039073803,-0.035071455,0.08869234,0.5148522,0.13009265,0.20536889,-0.19215547,0.05027418,0.19406033,0.03381374,-0.31625062,-1.221908,0.30186462,0.10196385,0.83003145,0.45623285,0.1350626,-0.056283332,0.41092414,-0.20264731,-0.009191307,0.52734345,0.12096853,-0.37732235,0.39996618,-0.34538335,0.4509997,-0.1471546,0.015177942,0.3277694,0.21497592,0.6765932,0.6785604,-0.19130747,-0.03904068,0.056047477,-0.3138672,-0.12327143,-0.12964925,0.018597424,-0.55343914,-0.30120736,0.6542736,0.37893683,0.3596359,-0.44041947,0.016025709,-0.1928028,-0.16361842,0.16209173,0.00079916074,-0.07694324,-0.17008628,-0.39639318,-0.15969999,0.44867283,-0.37861302,-0.15360276,0.03836208,-0.22873856,0.066320725,0.028180229,0.10266225,-0.0487659,-0.8791081,0.19355941,-0.39857927,-0.3816485,0.29408485,-0.10978068,0.057409942,0.24471451,0.006660397,-0.22508715,0.38869402,0.017325806,0.73263156,0.05770951,-0.07781931,-0.32231152,0.1587031,0.2222604,-0.21564484,0.25925785,-0.1795195,0.32392126,-0.4055589,0.43741804,-0.31437498,-0.18399686,-0.03372339,-0.096758,-0.2022149,0.47539717,-0.11585545,-0.15235224,0.14966908,-0.043453496,-0.38533586,-0.3235486,-0.44463918,0.06273001,-0.08706053,-0.06306049,-0.24475725,-0.14760566,-0.106969245,0.1745668,0.10980061,0.12924555,0.29465312,-0.2339278,-0.41883084,0.10471532,-0.006305089,0.3572319,0.0039145947,-0.052223112,-0.320667,-0.43767932,-0.39863852,0.74607074,-0.2718116,0.21529852,-0.033065695,-0.14303243,0.7077145,0.12804976,1.0615544,-0.06565176,-0.4161282,-0.04250324,0.644002,-0.27642617,-0.123969026,-0.2541354,0.8770965,0.5447135,-0.1213313,-0.19175856,-0.2467087,-0.052673016,0.016503109,-0.37331775,-0.12836696,-0.054053657,-0.5991215,0.016184883,0.1389936,0.34204558,0.008147657,-0.11442803,-0.15596436,0.20400491,0.35919592,0.27473298,-0.41819617,-0.3829912,0.4963441,0.106724925,-0.16481815,0.19563077,-0.31304532,0.3364238,-0.75202966,-0.044435795,-0.7274678,0.040086802,-0.107218266,-0.40636677,0.2376453,0.030654807,0.344717,-0.5861912,-0.22836766,-0.17875552,0.25350952,0.26957506,0.35975164,0.59780073,-0.20577644,-0.15776516,0.03895577,0.5342642,1.038644,-0.2249387,-0.007716491,0.2641714,-0.4866975,-0.576668,-0.12053021,-0.48797697,0.04141305,-0.119218096,-0.32292894,-0.38877127,0.15915471,0.011849339,-0.037296984,0.16053563,-0.7959505,-0.21782812,0.075627916,-0.3149319,-0.29452896,-0.33627522,0.21180129,0.76547635,-0.11856886,-0.28045318,-0.011581751,0.28257042,-0.1257098,-0.5728966,0.4191605,-0.3900894,0.21843912,-0.14155814,-0.4580362,-0.12027106,0.3438112,-0.46258947,0.22585575,0.2824427,-0.31610376,-0.053698704,-0.29403633,0.1367088,0.96635306,-0.031438038,0.065640144,-0.3525612,-0.5417435,-0.8970266,-0.39293554,-0.16995311,0.40720198,-0.08897155,-0.49506298,-0.084222585,-0.46801198,0.015886787,-0.11454297,-0.30301327,0.3831088,0.25212446,0.5368329,-0.19205149,-0.85126156,0.21107887,0.18677571,-0.41229588,-0.18656412,0.54805416,-0.13503002,0.7438192,-0.00027021766,-0.08556089,-0.23136179,-0.65227973,0.5478557,-0.22987276,-0.050724488,-0.67097163,0.054445203 +965,0.55741185,-0.33680478,-0.64766234,0.10777437,-0.21382897,0.27318686,-0.25027615,0.41550013,0.21908598,-0.31870493,-0.03862896,0.07805692,-0.2058791,0.25918528,-0.19750248,-0.41656098,-0.19604947,0.19234271,-0.5530268,0.5944375,-0.26046842,0.3061919,-0.044562336,0.23658967,0.18827142,0.2585225,0.13362952,0.07601842,0.031776372,-0.22121356,0.15862055,-0.034858204,-0.5747207,0.40397742,-0.16233951,-0.34956497,-0.14339916,-0.398994,-0.5062777,-0.7008273,0.3744282,-0.7907089,0.7011768,0.027729876,-0.26218763,0.121904746,0.05620592,0.28920606,-0.14033756,-0.0078822635,0.14244534,-0.305325,-0.21517245,-0.29982966,0.10058684,-0.2878606,-0.58409715,-0.07489775,-0.4986983,0.12271985,-0.17426945,0.23064639,-0.34595406,0.16981028,-0.2707925,0.41963425,-0.3702518,0.089673445,0.19649929,-0.27350202,0.09746163,-0.6299448,-0.14175676,-0.05093863,0.021835614,0.089682005,-0.12911561,0.3779013,0.00053551694,0.49138933,0.0113096535,-0.19712634,-0.2833725,-0.049034,0.09678085,0.5573486,-0.13223614,-0.26786646,-0.19062267,-0.124306455,0.51224816,0.040798917,0.013392468,-0.19053274,-0.085149124,-0.04795498,-0.105669394,0.3946868,0.687411,-0.23188414,-0.00967687,0.5155752,0.51517755,0.05126454,-0.08519289,0.14176792,0.028678037,-0.42624655,-0.17095979,-0.0043145576,-0.10471826,0.45314842,-0.04963743,0.27994603,0.51591873,-0.20027263,-0.16070077,0.35815617,0.20035999,0.020765606,-0.18821615,-0.41614336,0.3314996,-0.53501374,0.0041411477,-0.28658372,0.7377978,0.0768808,-0.805026,0.35561892,-0.4962212,0.13315837,0.10188233,0.6080294,0.7040547,0.7555509,0.10451921,0.949131,-0.31556785,0.026182063,-0.18734483,-0.19411272,0.20595399,-0.19173782,-0.18678282,-0.42716706,0.06242293,0.21051426,-0.11986046,0.026184147,0.41472623,-0.5302934,-0.16094805,0.05778903,0.5851933,-0.18011338,-0.010644937,0.7319637,1.1382977,1.0428402,0.13831984,1.0720307,0.11821849,-0.23886682,-0.22975269,-0.059802365,-0.89271283,0.26849568,0.292849,-0.05702222,0.46724054,0.23136427,-0.19522545,0.2730843,-0.43738422,-0.2138193,-0.00078320305,0.26282752,-0.11695831,-0.097003095,-0.45905125,-0.27455655,0.17072757,0.00896964,0.20295961,0.35503516,-0.36931908,0.34077966,0.22020763,1.3402735,-0.17355026,0.24084933,0.24070698,0.21127678,0.2192553,-0.24843259,0.022898054,0.16237898,0.3519076,0.09717175,-0.527845,0.08548386,-0.2578381,-0.51924247,-0.1474155,-0.13998128,-0.061655626,-0.074980214,-0.32940352,-0.30669972,-0.21093361,-0.4339927,0.35288665,-2.7557485,-0.08702073,-0.0371576,0.45428506,-0.29995856,-0.28567156,-0.095467806,-0.43917826,0.22762717,0.38778582,0.4107055,-0.71709865,0.3585066,0.29651308,-0.62379223,-0.004064353,-0.5235198,0.047746256,-0.013599229,0.3922959,0.020523317,-0.2297011,-0.069185734,0.2039717,0.5041787,-0.10174009,0.054714017,0.5310576,0.21442667,-0.084701434,0.18943663,-0.10231174,0.36566767,-0.6078361,-0.14543651,0.5197674,-0.5357813,0.13084665,0.05650049,0.16262752,0.374289,-0.5309592,-0.7484547,-0.5110661,0.08740017,1.2671674,-0.36286935,-0.55193686,0.15489273,-0.24895146,-0.26073858,-0.0018570344,0.37843385,-0.19778535,-0.015845085,-0.75190735,-0.057808835,-0.23175262,0.52161235,-0.03353823,-0.036317382,-0.4675468,0.72836214,-0.06970822,0.79658955,0.36708146,0.2899813,-0.29457524,-0.3851886,0.13203308,1.0465015,0.66179657,0.13634679,-0.17325646,-0.114592396,-0.17637606,-0.22404672,0.20775266,0.50945055,0.6808618,-0.07446251,0.07275368,0.30792704,-0.020821193,0.076758124,-0.1178955,-0.31592572,-0.16617365,0.12673847,0.623865,0.6314242,-0.047828726,0.18298377,0.021626746,0.36944488,-0.11923501,-0.47023758,0.50909656,0.8313894,-0.08004829,-0.36414996,0.57010436,0.5362178,-0.13458855,0.5687149,-0.70511067,-0.5362429,0.37078175,-0.09745021,-0.4154618,0.21429329,-0.4240293,0.34735197,-0.7950452,0.32226288,-0.30553025,-0.6081347,-0.6192389,-0.08422346,-2.39254,0.13589214,-0.22254118,-0.13510625,-0.1170701,-0.022617765,0.30974367,-0.6451293,-0.61335,0.07073701,0.23678665,0.71627337,-0.08955499,0.052736863,-0.06528587,-0.3423171,-0.35932344,0.28147534,0.24061346,0.19230522,-0.009657886,-0.40405422,-0.325183,-0.08717598,-0.28492206,-0.007612284,-0.5764578,-0.38439363,-0.22398901,-0.548599,-0.36480534,0.5824747,-0.25503746,0.042545877,-0.18187237,0.046765573,-0.016493503,0.2320986,0.08471996,0.043297514,-0.0053239665,-0.27842033,0.21485463,-0.23814252,0.3349969,0.04468373,0.32109728,0.56413007,-0.41139203,0.03497996,0.57231134,0.5939675,-0.087049514,0.90048355,0.37029108,-0.13115351,0.3482271,-0.16670386,-0.39520136,-0.49258024,-0.17543812,0.13301133,-0.36565363,-0.15530199,0.0022892356,-0.35803196,-1.0517813,0.5254356,-0.012257229,0.31790236,-0.010192005,0.27933136,0.42561644,-0.12477218,-0.08910371,-0.12824765,-0.19752744,-0.37637505,-0.23726897,-0.777325,-0.38433582,-0.06780286,1.2452781,-0.2167341,0.043488692,0.20354916,-0.19227777,0.1556366,0.047696017,0.10995649,0.18247119,0.4747172,0.089376904,-0.6127705,0.39516535,-0.3281795,-0.12360768,-0.48396543,0.3057666,0.6136917,-0.61542284,0.1950025,0.42841306,0.1190938,-0.1963462,-0.5563147,0.041702125,-0.035130765,-0.044077992,0.42375356,0.31918827,-0.649743,0.4701956,0.23048477,-0.38619518,-0.6140908,0.3030285,0.020438232,-0.10861357,-0.22425842,0.39316073,-0.07365771,-0.06024054,-0.09949481,0.22565109,-0.34502402,0.2640777,0.022157626,-0.1340119,0.39578724,-0.21998173,-0.23616856,-0.73144466,0.16000906,-0.58217496,-0.031397093,0.20062661,0.09175407,-0.032962088,0.023347182,0.10543569,0.5553449,-0.36238137,0.10276006,-0.18434347,-0.43535078,0.7168143,0.54505235,0.40407073,-0.31673563,0.681035,0.10389069,-0.15093909,-0.30946502,-0.0358534,0.46030518,-0.100328766,0.23533122,0.09230308,0.025966985,0.18771015,0.5976266,0.31068316,0.33016744,0.04623843,-0.14564934,0.17070833,0.08904065,0.15610763,-0.061772473,-0.5960548,-0.0356123,-0.12997597,0.106281996,0.48031372,0.11184058,0.45570466,-0.23653625,-0.2794687,0.006932547,0.08882939,-0.22765633,-1.3182654,0.37222087,0.04845656,0.70805764,0.56845295,-0.006080453,0.08193707,0.60149246,-0.10428222,0.1223021,0.25911447,-0.07508305,-0.49189076,0.48917547,-0.65876216,0.47042802,-0.0010143698,0.05763537,0.21053143,-0.031892285,0.58513266,0.6975914,-0.103741266,0.085873984,-0.08239495,-0.24786739,-0.011606244,-0.29941204,0.29482153,-0.557295,-0.34651247,0.8506152,0.26652673,0.56936735,-0.1231683,-0.025313172,0.014715477,-0.056408104,0.44741535,-0.06905317,0.1982546,-0.31713867,-0.4437669,-0.15353881,0.6025835,-0.02651995,0.059384745,0.061985515,-0.049386393,0.18349367,0.048313525,0.03085317,-0.11815819,-0.75995904,0.2509847,-0.32945728,-0.31007177,0.407254,-0.14367771,0.26722303,0.22942352,-0.053703323,-0.46506754,0.14345707,0.24889842,0.7050867,-0.04444305,-0.20815805,-0.27447975,0.2357801,0.27193674,-0.13976015,-0.020988517,-0.24413,0.11071571,-0.6603591,0.40591577,-0.2923248,-0.1322443,0.27944717,-0.2046371,0.045701265,0.6336071,-0.13438453,-0.29109195,0.16344094,0.0666948,-0.42798913,-0.4371494,-0.17324859,0.12755015,0.30818376,-0.00571121,-0.00419329,-0.0804447,-0.10825967,0.1256677,0.22035189,0.29519284,0.42977244,-0.012486305,-0.48783648,0.02880807,0.05234183,0.4519303,0.10673719,-0.031774886,-0.57626635,-0.550997,-0.3957478,0.2874085,-0.08491267,0.25514457,-0.003436593,-0.25194627,0.8569947,-0.008006537,1.0045756,-0.07924595,-0.34362444,-0.024786567,0.62176126,-0.09108117,-0.255627,-0.2930772,1.085271,0.72181755,-0.15388092,-0.18198314,-0.4334378,-0.12251528,0.13291174,-0.26896477,-0.24981835,-0.009457541,-0.70574963,-0.15305571,0.12896657,0.31964558,-0.04389124,-0.2594096,-0.10793132,0.33741218,0.015246149,0.090945736,-0.3967091,-0.12031745,0.3988217,-0.05379802,0.06759788,0.060571976,-0.5731378,0.24141155,-0.65474445,-0.040699124,-0.120507255,0.05628412,-0.058464646,-0.42753965,0.25779358,0.084218055,0.2715929,-0.49171218,-0.30957678,-0.069025725,0.37213284,0.1122802,0.017281642,0.66041946,-0.27653632,0.06979144,0.11726384,0.40169346,0.91901386,-0.34844977,0.045077696,0.16393709,-0.40526995,-0.66342735,0.2262645,-0.21300684,0.10600813,-0.15732187,-0.31736958,-0.57413864,0.25118533,0.20379482,-0.03395583,0.07223602,-0.75456995,-0.20605206,-0.015575093,-0.4375618,-0.16029969,-0.36498165,-0.058313467,0.6625057,-0.27839717,-0.42751387,0.08638822,0.28888804,-0.039481737,-0.5466746,-0.03252347,-0.28351432,0.14526619,0.07720725,-0.2378296,-0.12421873,0.28184384,-0.43713725,0.008091664,0.13948928,-0.2866942,-0.05496026,-0.43992093,0.031593632,0.6086391,-0.16468102,0.10795841,-0.54423153,-0.41778043,-0.9666721,-0.41713634,0.20496076,0.21756043,0.093697906,-0.7430513,0.0115690585,-0.29586282,-0.06371928,-0.28328317,-0.33915812,0.50271493,0.19182311,0.30678627,-0.1707571,-0.803735,0.12199715,0.09547686,-0.12111128,-0.347869,0.4705432,0.08579052,0.8439579,0.1748629,0.13936397,0.25368342,-0.8518754,0.030839555,-0.15567915,-0.1959836,-0.5564766,0.13353835 +966,0.3582496,-0.2447257,-0.5162185,-0.21936284,-0.18384813,0.15474437,-0.23914358,0.4285823,0.16426262,-0.44222167,-0.23145904,-0.3064537,0.098496914,0.20864843,-0.23019664,-0.47830296,-0.045512266,-0.0007757613,-0.4887409,0.6047729,-0.4011576,0.21083912,-0.00237276,0.39651543,0.21257654,0.22042114,0.15486431,-0.12428197,0.07932679,-0.26839298,-0.18326594,0.236649,-0.5468216,0.19794083,-0.14711672,-0.35669076,0.0730087,-0.47891515,-0.25295225,-0.6888545,0.34654438,-0.93092334,0.47324196,0.17811991,-0.31770432,0.40830386,0.19513883,0.22467826,-0.3529359,-0.110046916,0.0891981,-0.055883408,0.01986592,-0.16954242,-0.12836257,-0.2669078,-0.4796644,-0.06684343,-0.37193662,-0.27332926,-0.3415583,0.06354617,-0.27361786,-0.045059375,0.037271436,0.55593073,-0.44068295,0.10193952,0.24850136,-0.22794448,0.45285624,-0.5914763,-0.20773765,-0.10022569,0.4314895,-0.20145464,-0.1596929,0.12503038,0.3442084,0.32030663,-0.11603253,-0.081691355,-0.087838836,-0.21023569,0.11952551,0.41914126,-0.09678137,-0.47660595,-0.09360372,-0.15284213,0.15076627,0.27534434,0.24089848,-0.2943633,-0.18967634,-0.05915598,-0.34019965,0.5236598,0.36818585,-0.30912235,-0.092947885,0.35993928,0.4787129,0.3091787,-0.10887228,0.021500904,0.090224095,-0.6340793,-0.16632321,0.034453254,-0.24183501,0.61020184,-0.16481811,0.4086959,0.6169488,-0.06703256,0.01883115,0.007979357,-0.019146759,-0.23409447,-0.3981536,-0.26082635,0.26111466,-0.4035541,0.15532674,-0.11470998,0.7852399,0.106218815,-0.5663333,0.25993818,-0.57204944,0.13001654,-0.14598285,0.46629462,0.47213537,0.3787623,0.31129578,0.6845263,-0.47081405,-0.12985009,-0.019011699,-0.3491001,0.014097904,-0.08207394,-0.21293505,-0.4901737,0.03216453,0.047054432,0.16466847,0.10904893,0.33628485,-0.4275122,-0.05115625,0.19227637,0.865021,-0.24824198,-0.051396325,0.67413676,1.0277789,0.84023654,0.101491965,1.0257905,0.06464807,-0.25372493,0.049371563,0.041505877,-0.798482,0.3336701,0.5038688,-0.1664361,0.2638412,-0.018184781,0.017110558,0.2286579,-0.30921438,-0.019599667,-0.1384293,0.10378687,0.11608087,-0.08530033,-0.3238225,-0.19235435,-0.034254473,0.028477816,0.07072211,0.068062454,-0.08615044,0.3160316,0.16074984,1.3276832,-0.18307778,0.11138344,0.13754354,0.39317968,0.26508173,0.012652965,-0.13992125,0.43028787,0.36714506,0.23537041,-0.7095157,0.25642914,-0.10136063,-0.43502042,0.011516828,-0.34304592,-0.112024054,-0.040259995,-0.48996374,-0.014133293,-0.18846741,-0.20973803,0.4475633,-2.9170823,-0.11881015,-0.18314005,0.3828899,-0.18458723,-0.25222412,-0.04260585,-0.354843,0.5068405,0.36079276,0.46795648,-0.5850645,0.2976602,0.52761775,-0.5289731,-0.16842362,-0.5868998,-0.20015463,-0.074908026,0.33139026,-0.010180547,0.059016142,-0.032746386,0.30595973,0.38750523,0.06909592,0.19870742,0.25650543,0.48614928,-0.0069945683,0.65024704,-0.046298113,0.5033511,-0.22437106,-0.13479692,0.23900631,-0.24339423,0.2259703,-0.072105154,0.13489099,0.5012344,-0.4304533,-0.78971916,-0.6927185,-0.24648912,1.3140447,-0.38233906,-0.43184426,0.3046138,-0.27235126,-0.2385706,-0.0054718186,0.46727383,-0.116034865,-0.03724685,-0.8409253,0.1020773,-0.0028998577,0.23917247,0.07271724,-0.188078,-0.45525742,0.7606418,-0.0009806523,0.54403424,0.42683512,0.119450495,-0.24209836,-0.46416077,-0.075318664,0.7904483,0.4190075,0.076216236,-0.26258847,-0.18636917,-0.5109068,0.07751274,0.072885685,0.50071454,0.5552153,0.006901182,0.2420124,0.28554136,0.10398006,0.14329857,-0.21800143,-0.26575404,-0.16113135,-0.13593541,0.49588013,0.54298824,-0.0970178,0.17033452,0.06956141,0.2842638,-0.22413653,-0.52040446,0.59570986,1.0401145,-0.13782512,-0.27821118,0.6015596,0.62235904,-0.16367632,0.30481425,-0.541617,-0.27177247,0.63144577,-0.15606523,-0.5924982,0.19593228,-0.34955344,0.09365565,-0.8986263,0.12052221,-0.35752407,-0.29188567,-0.34898573,-0.021152528,-3.7624147,0.35121602,-0.2681185,-0.21718594,-0.40608323,-0.11181431,0.33323714,-0.5596454,-0.64924055,0.18793894,-0.0087502,0.72507596,-0.11860202,0.095643945,-0.2298598,-0.10661569,-0.1503635,0.09106075,-0.009299379,0.25615555,0.008804862,-0.45081636,-0.054080002,-0.026810113,-0.39837456,0.023487557,-0.39839047,-0.36640218,0.0458678,-0.5388936,-0.26937595,0.5426152,-0.3719552,-0.0026727777,-0.23158646,0.0799266,-0.22931115,0.17457357,0.03664722,0.21414599,-0.08020392,-0.033462305,-0.16472858,-0.36211315,0.2897066,0.023888435,0.09521666,0.018401759,-0.09037355,0.15429728,0.38039792,0.4640237,-0.11130471,0.835914,0.35318464,0.008444102,0.28071433,-0.1479043,-0.2972849,-0.5395987,-0.19636692,-0.034798805,-0.3360077,-0.4215908,-0.07602781,-0.29359773,-0.7200426,0.5757295,0.06492998,0.18200217,-0.02158777,0.25341237,0.46368644,-0.17432489,0.015884105,0.058341715,-0.13210085,-0.6465944,-0.13496715,-0.7031947,-0.2888908,0.0928474,0.5100942,-0.3601921,0.08789123,0.05480693,-0.29301456,0.06308569,0.17518257,-0.058612272,0.2751907,0.61154747,0.004443691,-0.69342697,0.51440203,-0.06835081,-0.1832322,-0.50243765,0.10873294,0.6560122,-0.6113694,0.5373797,0.4539965,-0.06988095,-0.26406887,-0.41093686,-0.23595971,-0.091180556,-0.35981324,0.3796113,0.20926505,-0.8371582,0.33306423,0.19739923,-0.10858075,-0.6974229,0.8366585,-0.030807715,-0.39001146,0.011562123,0.4012019,0.13875905,0.08846448,-0.1326085,0.23554006,-0.27546996,0.1768902,0.17220497,-0.09948404,0.2855955,-0.107731424,0.008105294,-0.76388615,-0.04659535,-0.52852124,-0.28202045,0.30794492,0.057206444,-0.017469142,0.1444124,0.09325531,0.35465083,-0.23716667,0.18336175,-0.069678664,-0.17801784,0.4252835,0.4785898,0.50577825,-0.35001785,0.677699,0.04428804,0.021452487,0.049819726,0.14171508,0.37290698,0.026023673,0.4943927,0.024411472,-0.17111316,0.4524656,0.5574211,0.2328679,0.41475406,0.16730705,0.06450641,0.33393508,0.108881146,0.19582677,-0.09958071,-0.64045215,-0.03149866,-0.37771723,0.074125,0.5172357,0.19320837,0.18944813,-0.025089474,-0.4492682,0.010064183,0.14378174,-0.0019426896,-0.90078,0.33984926,0.21915378,0.7552385,0.54931873,-0.12186343,0.1154325,0.6572398,-0.121642485,0.04972323,0.38843143,0.19078638,-0.5619765,0.6188192,-0.6614476,0.32210082,-0.15470804,-0.050440393,0.05950145,-0.03264869,0.4004045,0.7397938,-0.12087289,0.07376799,0.05367184,-0.40994072,0.2629275,-0.41343036,-0.10831237,-0.4812203,-0.24313515,0.4888878,0.6747036,0.40142104,-0.28828067,0.092715636,0.11072968,-0.15941899,0.0727392,0.1559317,-0.033642825,-0.14494002,-0.77120024,-0.10692819,0.5449088,0.17976093,0.15477291,-0.11297472,-0.28857386,0.32865286,-0.2921273,0.14482754,-0.14079401,-0.74368954,-0.058030963,-0.3911851,-0.48977682,0.32900268,-0.28986305,0.290157,0.24836956,0.015987864,-0.09869385,0.22836417,-0.06787997,0.7710565,0.08713767,-0.14620796,-0.40039307,0.024652123,0.13307196,-0.18864942,-0.039140962,-0.35512954,0.011316364,-0.49122894,0.39531326,0.020292997,-0.22314581,0.03464531,-0.19492985,0.027881883,0.5688857,-0.12780356,-0.031358358,-0.07869392,-0.11537605,-0.19372895,-0.21516183,-0.15253834,0.20902117,0.2033851,0.1424879,-0.21242854,-0.08726455,-0.22585215,0.19508164,-0.039431036,0.53770715,0.40036148,0.020665122,-0.23952898,-0.1851632,0.25700888,0.52121294,-0.021582833,-0.148141,-0.12033514,-0.59515315,-0.19230458,0.22284752,-0.0066650948,0.3606481,0.0886153,-0.11940229,0.7046534,-0.05082155,0.85788566,0.013397134,-0.44333646,0.035006635,0.54846376,0.0070390976,-0.20171905,-0.19782823,0.8312908,0.34967723,-0.13616563,-0.108826436,-0.3263502,0.015649837,0.018566608,-0.1227901,0.0055734445,-0.12830561,-0.50368494,-0.2950195,0.16104467,0.2917288,0.27242175,-0.06055627,0.01812963,0.22876707,-0.08414216,0.39507484,-0.5769628,-0.2592613,0.16702901,0.13670334,-0.00045823248,0.04684971,-0.42962816,0.47046897,-0.54131055,0.1081295,-0.45347378,0.15640329,-0.22573796,-0.18793803,0.16266641,-0.13647279,0.34582636,-0.43199286,-0.37770763,-0.28935054,0.39271286,0.20578612,0.12813273,0.5734126,-0.27143717,0.06997346,0.097141504,0.56679314,0.83969426,-0.12865992,-0.003992007,0.3473207,-0.51124865,-0.5357532,0.20667475,-0.48428413,0.3364065,0.05166115,-0.106371075,-0.42675394,0.24300933,0.24225706,0.1350084,0.042472463,-0.78941435,-0.25105864,0.45387208,-0.18392882,-0.24219278,-0.26674646,-0.044433508,0.44064587,-0.25827816,-0.2848332,0.02643589,0.12643194,-0.05699354,-0.61747044,-0.009349043,-0.3738734,0.30775687,0.14945085,-0.2785691,-0.18045355,0.05861103,-0.45947057,0.37598088,-0.05020626,-0.317754,0.0071745985,-0.25789714,-0.15798184,0.90305865,-0.34902424,0.03278088,-0.39512378,-0.44215077,-0.6628526,-0.24164772,0.59630144,-0.011428759,0.20602857,-0.41633365,0.12726915,-0.090976484,-0.074526034,-0.07696418,-0.27244553,0.49973994,0.16421254,0.54651386,-0.029223157,-0.7372296,0.29578498,-0.04238622,-0.23163532,-0.6440562,0.48157918,-0.104194164,0.6403767,0.036548574,0.08567602,0.22994551,-0.5153,-0.07348229,-0.15025067,-0.15779103,-0.56190044,0.13978729 +967,0.45361748,-0.2776729,-0.55918604,-0.087566435,-0.57913333,-0.11848114,-0.32050863,0.4054682,0.5068006,-0.1629646,-0.3344376,0.010997345,0.08898532,0.41728243,-0.14552546,-0.6749463,-0.08077086,0.40840173,-0.83651334,0.5891804,-0.35900185,0.4316174,0.12880222,0.40786198,0.18020207,0.12632959,0.10927721,-0.05095573,0.13958251,-0.4653518,-0.050481558,0.20784223,-0.7984999,0.1641867,-0.40255603,-0.6596943,0.009166151,-0.5466606,-0.13647752,-0.9193711,0.14719589,-0.77932614,0.77197033,-0.14772685,-0.27588013,-0.28569764,0.22128706,0.57786894,-0.09485006,0.16751562,0.38239434,-0.3271932,-0.15134515,-0.28916582,0.08859829,-0.42087007,-0.46903506,-0.23850374,-0.5042295,-0.0848892,-0.13852574,0.259663,-0.16685742,-0.09682237,-0.15199442,0.29049304,-0.27700832,0.13116054,0.24990588,-0.0584162,0.638855,-0.5939679,-0.009379496,-0.11521288,0.471687,-0.20275676,-0.25492534,0.47171664,0.3738151,0.4341174,0.29644445,-0.37917468,-0.14307332,-0.03797509,0.01039366,0.5625751,-0.37046647,-0.27002704,-0.26748517,0.012933691,0.60051346,0.37307307,0.031848412,-0.20294529,0.15540327,-0.24632138,0.022245914,0.6316297,0.43529558,-0.08546547,-0.11040867,0.055128384,0.46466413,0.5007634,-0.13075286,0.06065021,0.011819343,-0.52144706,-0.2570144,-0.008797944,-0.27913475,0.47565362,-0.15987866,0.15315586,0.86068374,-0.10138627,-0.12635075,0.26313332,0.1771909,-0.06336479,-0.09528301,-0.41378763,0.33920157,-0.8989651,0.12597458,-0.36629617,0.6524729,-0.0022767268,-0.7556675,0.22052033,-0.7657125,0.062471393,0.023715748,0.5217507,0.8254168,0.5156769,0.3147597,0.9276096,-0.15372688,0.19782312,0.08385554,-0.36060944,0.25900397,-0.27904686,0.002559257,-0.56489366,-0.21066575,-0.28134987,0.17008595,0.1727375,0.4490663,-0.79387015,-0.32085353,0.27872872,0.6555891,-0.31963453,0.16403349,0.8403136,1.1608654,1.1403947,0.07121471,1.4429835,0.104495384,-0.3678669,-0.04078682,-0.012308647,-0.73819846,0.29769334,0.39858127,-0.74821395,0.38090786,-0.10747788,0.017550161,0.36297965,-0.6220979,-0.22524054,0.109447785,0.3241847,-0.10693824,-0.40653285,-0.5518637,-0.3546126,-0.043551665,0.15079413,-0.05307712,0.27438748,-0.40214157,0.23045392,0.053935066,1.0458096,-0.20646794,-0.027709166,0.028881969,0.41330028,0.28331962,-0.09841309,-0.27039823,0.07719221,0.44599763,0.21922706,-0.48677993,0.060566466,-0.3380599,-0.31620714,-0.2808526,-0.11032996,-0.2515489,0.10587511,-0.3842602,-0.32859528,-0.09133039,-0.3097443,0.3997626,-2.10623,-0.30302617,-0.048371017,0.40769705,-0.25212693,-0.13262212,-0.18845916,-0.51293993,0.45868346,0.16281262,0.68254894,-0.7136054,0.4956679,0.5861063,-0.73953223,-0.12095225,-0.7536335,-0.20002502,0.1266021,0.27235642,0.2823312,-0.25470623,-0.09816996,0.16418509,0.7355175,0.046906278,0.22034037,0.5709645,0.41375133,-0.20932633,0.48068535,-0.120709054,0.56633955,-0.32610273,-0.24986826,0.36649418,-0.29393324,-0.033934753,-0.30349785,0.0025682747,0.689945,-0.64600426,-1.2213045,-0.60604775,-0.25806907,1.0630612,-0.23379205,-0.49240708,0.3383734,-0.16554262,-0.18151055,0.24530129,0.75321865,-0.16581558,0.2563808,-0.76693535,-0.1238605,-0.044911325,0.057814296,0.03671366,-0.12577641,-0.59996456,0.78292876,-0.075637855,0.49096403,0.23036069,0.33514294,-0.3253846,-0.41852632,0.075513445,1.1520743,0.5938832,0.04750346,-0.18875188,0.006192165,-0.382991,-0.026455695,-0.11989669,0.611474,0.87581235,-0.28524524,0.21090972,0.24110854,-0.025691202,0.082924895,-0.15299655,-0.42673326,-0.12050462,0.015959492,0.5876178,0.8010917,0.12510236,0.55466425,-0.18796122,0.360453,-0.07239311,-0.6309425,0.47927514,0.7928067,-0.14863399,-0.019878222,0.758594,0.37585792,-0.18700488,0.6177296,-0.6091039,-0.6143804,0.54181296,-0.06602954,-0.5854692,0.27827302,-0.30396214,0.24081166,-0.7278853,0.57994556,-0.5781913,-0.69988376,-0.43037876,-0.09703016,-2.5174897,0.3617877,-0.18424706,0.07735347,-0.40201116,-0.11844772,0.3001219,-0.6738701,-0.774923,0.064823665,0.18326688,0.8530853,-0.14615901,0.07557305,-0.053880427,-0.63150394,-0.18619801,0.31498507,0.2604414,0.24198209,-0.110235006,-0.60198885,-0.13257326,-0.064047106,-0.57358426,0.017431712,-0.7941933,-0.6632243,-0.040233303,-0.579647,-0.31599548,0.6965901,-0.4072722,0.15951249,-0.33880904,-0.01350839,-0.042442262,0.2329812,-0.04958023,0.11969075,0.09915811,-0.08283839,0.12857665,-0.07121583,0.45199144,0.12327448,0.27143803,0.046488732,-0.17863393,0.255599,0.55340546,0.7729885,-0.39307523,1.3817986,0.5128568,-0.22533493,0.12639146,-0.22214781,-0.43649206,-0.70830375,-0.30479226,0.017377196,-0.5007003,-0.3006393,0.06384202,-0.29026693,-0.95030195,0.76345485,-0.027851472,0.28586486,-0.033139534,0.07837606,0.29199067,-0.2831749,-0.20479967,-0.1947258,-0.2566426,-0.41309536,-0.085952885,-0.70397395,-0.4741405,-0.38291898,1.0958626,-0.41973045,0.2815041,0.24256597,-0.13670401,0.34229776,0.13542305,-0.07775068,0.05064556,0.5905354,0.16007471,-0.76939243,0.2588832,-0.0078656,-0.03882492,-0.5177224,0.14381093,0.8482985,-0.8184001,0.594026,0.44759393,-0.030998817,-0.16898991,-0.5867123,0.062286884,0.14792544,-0.29239202,0.5297081,0.21497953,-0.62010986,0.5752174,0.25125846,-0.51176745,-0.7924948,0.4828184,0.0154359015,-0.35077587,-0.108837724,0.5421887,0.17366166,-0.14417239,-0.18394077,0.47259712,-0.3727025,0.5938325,-0.046564188,-0.08034341,0.108150184,-0.086598836,-0.38063416,-1.0470716,0.27130613,-0.5433941,-0.3859433,0.2855842,-0.072603405,-0.31727597,0.41180253,0.43118286,0.455295,-0.44264945,0.110411495,-0.21281986,-0.61605906,0.39081153,0.4973794,0.41727972,-0.2998394,0.5124688,0.2509344,-0.4495561,-0.15591687,0.0074825287,0.57871044,-0.16895784,0.5455471,-0.14794092,-0.19255431,0.30721983,0.6727576,-0.03742118,0.29174006,-0.06751626,-0.008720696,0.08251376,0.12019587,0.27022338,-0.03177115,-0.51856714,0.072921015,-0.19521244,0.017322833,0.67508507,0.2921112,0.091470055,0.14025415,-0.3247117,-0.016771195,0.22384389,-0.07071117,-1.7870094,0.61826974,0.28990978,0.9141101,0.5798015,0.13603434,-0.0848883,0.5789216,-0.25437376,0.012480669,0.42800894,-0.005397459,-0.2873815,0.6949561,-0.80342436,0.31325084,-0.15887593,0.03830799,0.21564882,-0.11554924,0.49473563,0.94087106,-0.14040105,0.22272556,-0.04258192,-0.14470248,0.0040815673,-0.35711458,-0.00015952438,-0.54601854,-0.4848399,0.9515614,0.33876634,0.37678528,-0.2476091,0.13324875,0.10949859,-0.19056536,0.41430315,0.026146179,-0.054251324,-0.0071428814,-0.51596296,0.16589974,0.5726269,-0.08648013,-0.018981343,-0.16349667,-0.06035122,0.09175157,-0.21531124,0.18593156,-0.022732625,-0.8885409,-0.14571331,-0.7350159,-0.25465766,0.3862939,-0.16002692,0.069410436,0.22500764,0.10403854,-0.03224188,0.3864937,0.3562541,0.6252378,0.17559601,-0.35738632,0.05265501,0.35232663,0.19418202,-0.40991282,0.02534187,-0.20351678,0.09504217,-0.5659253,0.66067266,-0.048777003,-0.47205982,0.39839056,-0.1236386,-0.02898326,0.46073946,-0.11750511,-0.21805005,0.09900268,-0.053181548,-0.28961506,-0.23026066,-0.2808093,0.0008527686,0.37149835,-0.024830678,-0.17929499,-0.19955592,-0.24198948,0.41213784,-0.061251223,0.6926467,0.38042983,0.16177535,-0.32923266,0.2864679,0.283082,0.48051786,0.03004489,-0.015662232,-0.49484554,-0.30148038,-0.3760232,0.08505842,-0.1718868,0.22959034,-0.021025984,-0.05406946,1.107858,0.20737647,1.2512388,0.04963441,-0.4132134,-0.006812791,0.58969635,-0.40767118,-0.20096952,-0.57978904,1.1761923,0.53268546,-0.33299044,-0.024235362,-0.47854042,-0.060356364,0.30882537,-0.29842412,-0.14238068,-0.0075498275,-0.6514411,-0.5424455,0.23115478,0.39763764,-0.07467175,-0.16845606,-0.016387323,0.37524557,0.16336219,0.11003971,-0.7743833,-0.2359202,0.25570735,0.44177082,-0.12582192,0.24571633,-0.43904093,0.36673427,-0.7781832,0.14385007,-0.32930216,0.14836119,-0.36329496,-0.5690677,0.15592988,-0.024430426,0.28134763,-0.2960479,-0.3448964,-0.0051711746,0.29945347,-0.010254711,0.04164463,0.62242633,-0.32048306,-0.038621146,-0.014137884,0.5237784,1.2396075,-0.48114458,-0.07825627,0.4330815,-0.47665954,-0.58077925,0.32508996,-0.41864538,-0.25341812,-0.12602669,-0.64590335,-0.5247694,0.1605735,-0.03594506,0.13776736,-0.07137669,-0.5965144,0.23352404,0.41288415,-0.30034786,-0.26240978,-0.2024306,0.39373457,0.61312145,-0.22836219,-0.57800645,0.08266868,0.25338888,-0.3928244,-0.46031508,-0.04348262,-0.29182947,0.35709652,-0.027954085,-0.5874884,-0.09352991,-0.012803748,-0.61060226,-0.030084187,0.35733566,-0.3076836,0.0777932,-0.2033463,-0.05691421,1.0462761,-0.32198164,-0.03362848,-0.43531168,-0.464468,-0.7257164,-0.23532222,0.051430717,0.5063679,-0.01259537,-0.57597566,-0.060845446,-0.26796296,-0.18663175,0.08420261,-0.2395432,0.32170638,0.30426505,0.6497172,-0.56220776,-1.0889908,0.43026218,0.29742593,-0.23117043,-0.6311832,0.60011816,0.023242945,0.8080093,0.090382814,-0.04589851,0.1855666,-0.50503236,0.15075544,-0.11750925,0.03899144,-0.8491674,-0.018619316 +968,0.62822723,-0.15782242,-0.6649213,-0.20935602,-0.31550258,-0.24327034,-0.19607222,0.5376768,0.38081634,-0.49771756,0.035125356,-0.139507,0.008765788,0.47617477,-0.15044059,-0.7709718,-0.04044871,0.06817202,-0.5361202,0.5956649,-0.46400627,0.29498592,0.024158817,0.46321136,0.1914598,0.29775575,0.10818705,-0.10281262,0.0002874732,-0.14251491,0.080480315,0.292207,-0.73723006,0.04093898,-0.087463096,-0.504169,-0.09821437,-0.5317951,-0.34854966,-0.7600142,0.3066698,-0.763631,0.4770882,-0.020301677,-0.24990712,0.14073749,0.20621803,0.4108318,-0.3106289,-0.07734954,0.056351446,-0.013927415,-0.06107662,-0.14015117,-0.3667115,-0.4287867,-0.7535801,-0.0036081448,-0.45764273,-0.12018862,-0.33719528,0.1489082,-0.40621272,0.14961389,-0.16654134,0.46891662,-0.37671527,-0.13710809,0.50829107,-0.07949525,0.30468583,-0.3800446,-0.14129427,-0.21493185,0.12826659,-0.058041636,-0.31779182,0.3744832,0.28939068,0.58657205,0.09129805,-0.34563142,-0.384592,-0.029885463,0.091150805,0.40462542,-0.29076442,-0.48784864,-0.22435147,-0.043675065,0.282403,0.33239567,0.17130792,-0.27593154,0.025620492,0.241423,-0.36718088,0.46916053,0.4924127,-0.29197207,-0.2623673,0.17712703,0.49629936,0.2153798,-0.21461779,0.27592266,0.06567225,-0.6053172,-0.20229259,0.07382087,-0.09120293,0.41631645,-0.10874877,0.20211971,0.78733087,-0.24435103,0.019806504,0.034941345,-0.023173492,-0.15110122,-0.46860495,-0.2854038,0.28103936,-0.5538073,0.2762677,-0.21782973,0.8921767,0.2004194,-0.6835436,0.31743115,-0.67630625,0.2872401,-0.18041536,0.5117353,0.8281985,0.46270424,0.40052515,0.67944425,-0.40584219,0.15600336,-0.12018195,-0.39663458,0.11676513,-0.26637942,0.083455876,-0.37714058,0.03428662,0.073874,-0.103644595,0.2071031,0.37853456,-0.6344107,-0.18176568,-0.03837145,0.8904521,-0.18581223,-0.038891785,0.8413008,0.83922446,0.9950519,0.093084484,1.178985,0.30125612,-0.19172297,0.3844356,-0.15343308,-0.8191961,0.26903826,0.36652732,-0.43100047,0.28515035,-0.013074335,-0.045706272,0.55677205,-0.32807148,0.053900316,-0.15447414,0.21528503,0.025444701,-0.30098987,-0.3104828,-0.27462542,-0.028206388,-0.11584419,0.086291336,0.34947777,-0.08479488,0.40408695,0.049287617,1.7501659,0.0137970075,0.119148,0.12821555,0.55649173,0.30438802,-0.07616247,-0.06374029,0.13118842,0.3827362,0.1314538,-0.5883952,0.037040446,-0.23879626,-0.43161115,-0.113881454,-0.40302992,-0.03866972,-0.2554686,-0.65362453,-0.07670953,-0.25233755,-0.15344128,0.39976817,-2.428814,-0.35045847,-0.16819586,0.2265491,-0.27580255,-0.33761495,-0.105228,-0.5605098,0.49258918,0.30092517,0.43570575,-0.73279536,0.44304734,0.45356813,-0.5425452,-0.020273648,-0.7129352,-0.17057994,-0.058854304,0.28480196,0.012278663,-0.10391208,0.053437933,0.24727339,0.47561544,-0.11604929,0.062102277,0.17235778,0.4241936,-0.029691573,0.69628894,-0.10905154,0.54374254,-0.43242252,-0.22644475,0.36038572,-0.480553,0.17353109,0.021357443,0.110632084,0.48866686,-0.5281621,-1.0369425,-0.6175946,-0.19447085,1.0767376,-0.27850685,-0.33209616,0.33561766,-0.40211907,-0.17631555,-0.0480508,0.48457107,-0.073516525,0.035615806,-0.8680788,0.14289346,-0.1456841,0.078448005,0.0039196396,-0.012403095,-0.2004161,0.51560533,-0.06485799,0.41207874,0.29467905,0.13691059,-0.33541957,-0.54838455,0.12159836,0.9092668,0.3392274,0.20144625,-0.25667468,-0.18754238,-0.4133766,-0.099460036,0.049685005,0.47405952,0.79476196,-0.12165073,0.1842777,0.3049664,-0.07416554,0.041404843,-0.19376709,-0.3832705,-0.15734132,-0.059988625,0.5267053,0.77225614,-0.2474225,0.41868007,-0.06903673,0.3539633,-0.17982264,-0.4967327,0.6560937,1.0190364,-0.2576151,-0.32695347,0.6055456,0.50630665,-0.3180644,0.57286686,-0.55799973,-0.2659123,0.50026894,-0.023228474,-0.38710696,0.17983572,-0.3969205,0.09719667,-0.9039082,0.22095424,-0.33198956,-0.21243584,-0.50945234,-0.19872895,-3.7556899,0.16667563,-0.24406675,-0.09139208,-0.22662109,-0.09215015,0.3632796,-0.71622384,-0.7406298,0.17896667,0.17104387,0.8002736,-0.0738452,0.1144368,-0.2619689,-0.3222125,-0.34928823,0.013515206,0.26381892,0.3571096,0.049862415,-0.47824782,-0.21088319,-0.1081815,-0.5537642,0.12632959,-0.6494652,-0.58852303,-0.19852829,-0.6708528,-0.4216273,0.754992,-0.21937269,0.021622919,-0.13817066,-0.13092364,-0.19385673,0.36189,0.13952683,0.08981933,0.061533153,-0.06864788,0.06566588,-0.26752892,0.036691613,0.061187483,0.33713913,0.20883611,-0.13871756,0.33214164,0.59782714,0.90786755,0.0021507144,0.8520944,0.5784459,-0.04133424,0.47769845,-0.37356073,-0.3054294,-0.6493156,-0.2570976,-0.22144711,-0.4049665,-0.38024256,0.04766324,-0.3501037,-0.8253529,0.68980634,-0.0069052055,0.22947538,-0.084679514,0.079092205,0.56062365,-0.1117621,-0.13184842,0.06983642,-0.1817396,-0.5668918,-0.16393185,-0.67347956,-0.545313,0.25436392,1.0701195,-0.06923561,-0.046731587,0.06535129,-0.1512534,0.012089731,0.16431116,0.031029947,0.15197875,0.41408414,-0.035956845,-0.6364173,0.4039643,-0.18908553,-0.24800582,-0.6678492,0.1536868,0.71757936,-0.7605361,0.52427924,0.2433222,0.061824095,-0.03201905,-0.5282463,-0.1002924,0.073574185,-0.06544938,0.463572,0.35759953,-0.90989006,0.46024597,0.48070717,-0.2308711,-0.6758495,0.5184755,0.007159941,-0.15452345,-0.10969687,0.26694277,0.29942882,0.13038805,-0.13425392,0.23013955,-0.49715847,0.12223327,0.32288444,-0.15287994,0.3523267,-0.13980645,-0.036713243,-0.7351352,-0.002512537,-0.5689005,-0.26722828,0.30172962,0.00094651803,0.08602997,0.0040338524,-0.005626019,0.16185178,-0.28816357,0.10672785,-0.04580726,-0.26188684,0.38999188,0.5605081,0.40974927,-0.42672735,0.68287927,0.10882595,-0.016321117,0.2234649,0.13891333,0.484423,0.067915946,0.5165635,0.02532012,-0.27510104,0.11870171,0.79504526,0.043847464,0.34045196,0.06863135,-0.07798211,0.1879996,0.20579745,0.027422402,0.10452069,-0.48520637,-0.025241202,-0.024621965,0.17157638,0.67245984,0.19131757,0.32595572,0.056540154,-0.34544587,0.018711282,0.16233465,-0.18350902,-1.7068434,0.44120145,0.2108295,0.7913575,0.51201177,0.1306391,-0.084787175,0.615426,-0.14667343,0.22432755,0.507936,-0.064576566,-0.4515593,0.6197538,-0.609685,0.6436068,-0.036374353,0.15187068,0.02090247,0.20026927,0.48138925,0.72948,-0.045640536,0.08136714,0.036446977,-0.35246378,0.1797665,-0.36810756,-0.13344088,-0.40846485,-0.17136487,0.6764787,0.52793205,0.39559764,-0.2588639,0.021848312,0.1041347,-0.17571896,0.07305889,-0.13664165,0.0270366,-0.03607633,-0.5805511,-0.32154426,0.5997758,0.03978353,0.21828228,-0.07802432,-0.22451818,0.30568644,-0.14029141,-0.07895419,-0.124150135,-0.7395797,-0.05687523,-0.4822784,-0.4538534,0.46601883,-0.05475322,0.26239502,0.23185807,0.09047059,-0.40351465,0.5125828,-0.05613576,0.71930385,-0.34196493,-0.33936524,-0.34893286,0.2187906,0.25590682,-0.3508495,-0.14710224,-0.4014404,0.06126486,-0.49348205,0.30551904,-0.07316496,-0.40558052,-0.027356211,-0.06696265,0.087819554,0.4600886,-0.20463194,-0.1500659,-0.036195256,-0.14893566,-0.24111277,-0.40411398,-0.059043452,0.30094656,0.1209638,0.050478853,-0.047091134,-0.2740678,0.07346916,0.51262635,-0.04518423,0.28284097,0.46202177,0.20947534,-0.27507535,-0.15946984,0.38551855,0.491904,-0.016578078,-0.1285362,-0.39397752,-0.39733443,-0.4305302,0.21073829,-0.10515325,0.44712615,0.06284056,-0.48732954,0.9547097,0.048086822,1.1625868,-0.05856823,-0.48961657,0.17368266,0.3900371,-0.07598146,-0.059603494,-0.30974787,0.86987764,0.40505147,-0.19505352,-0.30660984,-0.40292588,-0.12522101,0.099878095,-0.30404365,-0.21646772,-0.009482866,-0.58947176,-0.16342288,0.13464274,0.299264,0.27437845,-0.2630761,0.15030403,0.18639287,-0.024516374,0.45284155,-0.4323855,-0.1590257,0.20904492,0.4098432,-0.08748841,0.07281891,-0.548614,0.41482276,-0.38665193,0.15982476,-0.37179244,0.2489146,-0.12540516,-0.39260888,0.2515563,-0.013503879,0.34618357,-0.31125346,-0.28826576,-0.2754316,0.5750967,0.13839158,0.08633121,0.803134,-0.3314907,-0.012225833,0.026309885,0.6138638,1.1225736,-0.1934612,-0.032171264,0.31885183,-0.30451137,-0.59640753,0.1871935,-0.24199048,0.25304613,-0.0172977,-0.32695395,-0.57288116,0.19064276,0.12168009,0.09007824,0.14448746,-0.5921083,-0.28324115,0.24112272,-0.2900591,-0.31798926,-0.40829945,0.09210515,0.5853722,-0.32565516,-0.25810236,0.20185313,0.17962392,0.066672005,-0.49839693,-0.21090047,-0.32694966,0.30220467,0.20729075,-0.41838512,0.08534558,0.07650766,-0.48748565,0.07950283,0.23003778,-0.37449154,0.09148594,-0.33316913,-0.18302022,1.1092901,-0.24813825,0.2783825,-0.52377284,-0.51572436,-0.8875346,-0.41338024,0.58835536,0.2015608,0.1390002,-0.5991997,-0.039217904,0.06038425,-0.066012315,-0.0183663,-0.3492658,0.43120837,0.1553494,0.46912813,-0.060014293,-0.725796,0.06434891,0.11395125,-0.18440326,-0.63534415,0.6122285,-0.15892658,0.8315011,0.1482543,0.09817002,0.28392175,-0.47683284,-0.22309136,-0.2656595,-0.23176204,-0.7527137,0.093165874 +969,0.41876122,-0.22799265,-0.5844161,0.017640335,-0.22278896,-0.13289836,-0.1650927,0.5025124,0.26401833,-0.30126905,-0.010151512,-0.17746441,-0.017036494,0.28609297,-0.22442831,-0.40510565,-0.06510027,0.16621076,-0.32575622,0.48795512,-0.25776002,0.08720475,-0.0027418393,0.60305405,0.16662002,0.21261337,0.044377778,0.23134394,-0.24002388,-0.26589024,-0.052429933,0.38475332,-0.6514521,-0.030141322,-0.25584394,-0.40621966,0.03801574,-0.4699323,-0.43708473,-0.78964865,0.27661982,-0.8640644,0.48283672,0.17899616,-0.28403053,0.2571048,0.1268711,0.25397012,0.029704597,-0.23995641,0.116622746,-0.1756047,0.17774129,-0.33496144,-0.085617594,-0.37219477,-0.5707933,-0.0032356605,-0.5573356,-0.17750606,-0.09532101,0.15068866,-0.23518512,-0.17077267,-0.1199071,0.49525598,-0.4018617,0.022039702,0.24821205,-0.15761015,0.37607425,-0.55274147,-0.11495022,-0.007270515,-0.007605408,-0.32893443,-0.3490142,0.30794677,0.080729164,0.4418778,-0.24488664,-0.18730858,-0.44116575,0.14784372,0.06613083,0.37973,-0.36572906,-0.41024595,-0.10614573,0.18622555,0.18858476,0.14966929,0.3570423,-0.08055724,-0.07590328,0.02283855,0.048435677,0.4830676,0.62571746,-0.24523042,-0.15127456,0.15883772,0.5823121,0.24581572,-0.21551819,0.044334177,0.091739126,-0.56773525,-0.16145624,0.005778662,-0.15877517,0.63030857,-0.10467541,0.18445848,0.5415669,-0.2970154,-0.07355662,0.19331287,0.10275737,0.09001502,-0.3178068,-0.25459534,0.4754456,-0.48678637,0.05451219,-0.2071055,0.5002106,0.11981238,-0.7662712,0.22173333,-0.52754754,0.08287114,-0.016871823,0.4890676,0.64049065,0.54414845,0.5620581,0.7114278,-0.42952824,0.11830105,-0.018049853,-0.38264874,0.3554318,-0.3500304,-0.020596627,-0.5884308,-0.29548526,-0.09410142,-0.3106201,0.052032758,0.27394685,-0.77524537,0.0016740113,0.2949666,0.78003937,-0.19170246,-0.20746328,0.7435589,1.0066917,0.93837255,-0.011349865,0.8386774,0.12798212,-0.21482544,0.21643613,-0.09307221,-0.72267884,0.2155076,0.21250704,-0.2233726,0.45080805,0.13539521,0.025132852,0.35622504,-0.43233714,0.039094765,-0.084785774,0.16596176,0.066489875,-0.26933497,-0.48137805,-0.21421072,-0.14292966,-0.027610252,-0.03856005,0.4035697,-0.18237363,0.4364817,0.025416175,1.7564533,-0.044014152,0.074724294,0.0715512,0.49883372,0.24257219,-0.31987157,-0.09715573,0.3581028,0.30692714,0.4250296,-0.31221667,0.058704805,-0.18942769,-0.42894793,-0.101910286,-0.30085564,0.0008746045,-0.21356691,-0.49032503,-0.1781095,-0.121066265,-0.17086431,0.32951307,-2.9940486,0.17815992,0.14466831,0.3533124,-0.2472961,-0.43903646,-0.003253511,-0.46238872,0.29241022,0.39701647,0.4128326,-0.7364856,0.21737528,0.4161255,-0.5375181,-0.013056389,-0.64752895,-0.18315606,-0.089778356,0.3766574,0.16352904,0.009974296,0.33860555,0.27232128,0.4144478,-0.09141233,0.12021698,0.10392249,0.41352436,-0.065365754,0.39254162,0.020544048,0.2698393,-0.19449066,-0.30887797,0.49820948,-0.44736856,0.103133865,0.044986658,0.09077121,0.47272927,-0.23696253,-0.9867501,-0.5333388,0.10236245,0.97823894,-0.0426601,-0.6082083,0.121808514,-0.4865282,-0.4353099,-0.1430354,0.38950697,-0.12036103,0.00311625,-0.77237624,-0.14981367,-0.35697895,0.18536809,0.008172588,-0.031441055,-0.48161325,0.61952394,-0.010097904,0.26418576,0.47223336,0.25416955,-0.43478087,-0.7121124,0.009307508,0.79023933,0.3462812,0.15485458,-0.3107438,-0.21974312,-0.16823128,0.19397327,0.12739047,0.61882824,0.82261306,-0.20466156,0.17906025,0.27041826,-0.0056364876,-0.0593608,-0.20090692,-0.34257698,-0.034406062,0.085490964,0.59823793,0.94968075,-0.11316509,0.47247174,-0.054950703,0.30852056,-0.13200082,-0.5534496,0.43137312,1.0769075,-0.11898924,-0.33168513,0.52231216,0.42360878,-0.3014074,0.47445598,-0.5482707,-0.27780828,0.34142557,-0.19247317,-0.48173144,0.34097037,-0.26996627,0.18953618,-0.85549,0.39361748,-0.16729233,-0.46511778,-0.8597577,-0.13649578,-3.0943882,0.23779248,-0.28575414,-0.23926343,-0.043979414,-0.20620213,0.13948354,-0.6867357,-0.46109152,0.1478378,0.16043201,0.734031,-0.15532203,0.015234743,-0.2560345,-0.3215107,-0.08473849,0.20058525,0.3582433,0.1597728,-0.044370957,-0.4694876,-0.07442333,-0.1902931,-0.44837004,0.002031484,-0.57005924,-0.5765497,-0.18687038,-0.54012233,-0.23840137,0.6718482,-0.274525,-0.08174689,-0.22099373,-0.09117305,0.15241818,0.3257138,0.10041482,0.23671791,0.01390961,0.016284432,0.0716995,-0.18683894,0.0095307315,0.04024418,0.34220982,0.4626222,-0.20517263,0.28757188,0.6094739,0.7357558,-0.19464567,0.888244,0.6786012,-0.11342788,0.26810673,-0.22245179,-0.31620812,-0.6372689,-0.2921227,-0.0563568,-0.5102076,-0.30780268,-0.008465009,-0.40672752,-0.71087164,0.75046927,-0.10073729,0.3165777,0.026475212,0.5194302,0.6263183,-0.32350662,-0.16397038,-0.15506466,-0.22463645,-0.4435734,-0.29951566,-0.46821377,-0.53627783,0.08382288,1.0164316,-0.25570422,0.13200395,0.23851824,0.026933875,0.060092416,0.20985982,-0.2478706,0.21334021,0.34910432,-0.0696507,-0.5280036,0.41965142,-0.06647501,-0.20393887,-0.60854435,0.096565485,0.48521194,-0.6255617,0.6226927,0.35322735,-0.0058612833,-0.17605229,-0.7504873,-0.20560496,0.1378264,-0.17482483,0.56698763,0.30395108,-0.6848885,0.42948702,0.30234307,-0.42741895,-0.6699723,0.56726784,-0.04214788,-0.4724979,-0.2456763,0.22754683,-0.20171002,0.14862375,-0.20497444,0.23075804,-0.32479063,-0.02128363,0.37535805,-0.05304251,0.1550686,-0.114533424,-0.038169365,-0.78525347,0.23729743,-0.46404558,-0.41873798,0.33237067,-0.027152257,0.06980139,0.3122547,0.26555175,0.3642995,-0.29246554,0.076002605,-0.0633869,-0.24544458,0.40693903,0.44764248,0.50042635,-0.5642226,0.44795108,0.077510044,-0.21448705,-0.11226517,-0.015841527,0.5080758,-0.10387351,0.2747511,0.085627615,-0.23506835,0.15267327,0.95669967,0.073522575,0.62127906,-0.082264595,0.089953534,0.12880775,0.07766409,0.3462976,-0.007078137,-0.55709964,0.18831466,-0.32328203,0.13059767,0.44400287,0.11592819,0.21196027,-0.0050296998,-0.28475556,0.09753672,0.3186685,0.2383788,-1.3204876,0.19763644,0.33716485,0.8682151,0.44977522,0.15279038,0.071965516,0.6291532,-0.30930167,0.0277438,0.2819372,0.09032067,-0.4502297,0.5399395,-0.8443252,0.35215712,0.068224475,-0.031379726,-0.17587784,-0.23822118,0.52757627,0.7090224,-0.27744448,0.017357498,-0.01531314,-0.15023233,0.07812569,-0.33447042,0.11110419,-0.5970092,-0.2315749,0.7640509,0.54903793,0.40955362,-0.04594919,-0.02600433,0.266331,-0.10931487,0.16468593,0.027151564,0.18780568,-0.045971725,-0.5386657,-0.06526518,0.52343595,0.022893667,0.03825638,-0.18283136,-0.09485241,0.14653085,-0.17393382,-0.2436388,-0.0862928,-0.7693759,0.047159787,-0.35593703,-0.41009417,0.9103084,-0.19881797,0.120926395,0.31742948,0.14813587,-0.31258735,0.24225447,0.15915193,0.6952036,-0.005860814,-0.065483615,-0.37586045,0.32996723,0.10374335,-0.14333734,-0.19537987,-0.17970419,0.28880045,-0.4228415,0.27352592,-0.041011576,-0.30040115,-0.12708247,-0.013417823,0.120225705,0.60510105,-0.061135493,-0.36326525,-0.12600194,-0.24603581,-0.27574548,-0.16823404,-0.047815587,0.2543914,0.18374072,-0.26724413,-0.031531505,-0.08045508,-0.16859974,0.33814684,0.09392868,0.44183177,0.3246362,-0.012799374,-0.43782288,0.0034658334,0.13464074,0.55656916,-0.23184061,-0.059599318,-0.3354611,-0.33188745,-0.49561116,0.20507665,-0.11087485,0.32208562,0.08233462,0.046316676,1.0087003,-0.010555063,1.2284677,-0.02703335,-0.52795756,0.061714526,0.5118404,-0.020568356,-0.04723866,-0.47918007,1.0429196,0.48184174,-0.060892608,-0.100344315,-0.22069208,0.09117116,0.3150919,-0.14174947,-0.08225938,-0.08013078,-0.57429135,0.055864427,0.34939522,0.38600394,0.25712404,-0.15442756,0.051897604,0.31274337,-0.09666296,0.106718056,-0.43342978,-0.111056075,0.23830879,0.38849398,-0.010276922,0.04286498,-0.45427507,0.28707784,-0.22307375,0.022640483,-0.3731261,0.20179881,-0.10720209,-0.40874624,0.17311446,-0.14279255,0.3607593,-0.3711441,-0.18627858,-0.2357628,0.38805082,0.18525055,0.18666048,0.4560353,-0.31348345,0.17632893,-0.095626704,0.44513398,0.90797806,-0.412818,-0.14944105,0.48069185,-0.22434342,-0.73317116,0.3804781,-0.3589849,0.23419937,-0.093562946,-0.24533905,-0.5294639,0.116580494,0.26265505,0.13471703,-0.049625363,-0.5961227,-0.03284343,0.33602065,-0.43061474,-0.16938548,-0.3410748,0.13742444,0.5493823,-0.12406205,-0.37353367,-0.015122993,0.3106393,-0.09265561,-0.2908752,-0.010615985,-0.2829542,0.29969308,0.04663854,-0.5190342,-0.020237295,0.020741949,-0.37142015,0.24457036,0.33967835,-0.18837391,0.094296195,-0.24824616,0.08217887,0.89832914,-0.26814,0.15353891,-0.45210567,-0.44331306,-0.8570858,-0.2744136,0.17369293,-0.022092676,0.12503615,-0.8550611,0.086366996,-0.24563195,-0.27437565,-0.22539203,-0.2879203,0.5203496,0.15113282,0.37639692,-0.14486936,-0.75287735,0.1622931,0.17417029,-0.14809987,-0.594121,0.5718133,0.029880945,0.8022685,0.08504134,0.15577486,0.34538904,-0.4773982,0.043265432,-0.16953991,-0.26814303,-0.5933874,-0.13626388 +970,0.3079358,-0.09560775,-0.35384285,0.035303734,-0.10528431,-0.013219324,-0.022698034,0.69088256,0.30916446,-0.5077301,-0.23700798,-0.47601375,0.07743781,0.45498443,-0.09575472,-0.48970428,0.22071795,0.30102283,-0.47363386,0.4671958,-0.47567782,0.35816604,0.11767944,0.5832579,0.1725375,0.15514836,0.26317543,-0.1866249,-0.36761728,-0.21303777,-0.1748556,0.28000697,-0.49835473,0.26738578,-0.30896094,-0.46415567,0.06399224,-0.621885,-0.08125995,-0.6341604,0.094791904,-0.74883157,0.43160954,0.11838858,-0.10462823,0.1460149,0.21096687,0.27371517,-0.17556152,-0.068355754,0.08133869,-0.21113494,-0.06638749,-0.41116962,-0.28811008,-0.30133572,-0.55830514,0.14401236,-0.5148279,-0.12446753,-0.42992085,0.065128475,-0.2268391,-0.17272055,0.22337031,0.36113968,-0.39852715,0.04392276,-0.12369285,-0.22051635,0.10848212,-0.34515512,-0.29113102,-0.14517887,0.3071695,-0.28702518,-0.27864066,0.35980296,0.31435052,0.3783904,-0.120431975,-0.037312657,-0.41821456,-0.01265018,0.0926312,0.6700591,-0.13995452,-0.5909068,-0.07567815,-0.08611819,0.10128276,0.2483408,0.24371836,-0.29540572,-0.05322078,-0.024535745,-0.31525165,0.40327215,0.2939379,-0.46445927,-0.33170712,0.40151328,0.31718537,0.16483,-0.114876725,-0.09275204,0.088153645,-0.5294845,-0.14920579,0.033413395,-0.20889282,0.64001584,-0.007267189,0.38664752,0.6314779,-0.40992588,0.023010395,0.059304476,0.16341922,-0.27282655,-0.09778073,-0.19422713,0.24757648,-0.42152795,-0.10212679,-0.18246257,0.9147299,0.12766019,-0.6201335,0.42383736,-0.638198,-0.028653149,-0.12081598,0.35065037,0.6379504,0.4409793,0.3613262,0.47172588,-0.37662303,-0.0326856,-0.14971061,-0.43269572,-0.03133381,-0.25956622,0.1231007,-0.5628675,-0.1193073,0.35475606,-0.006178379,0.33374655,0.48801175,-0.5817165,-0.17622453,0.22398277,0.7528698,-0.24979961,-0.39603692,0.8072182,1.0867946,0.868019,0.11622791,1.2121124,0.13939354,-0.16526286,0.2771652,-0.13337834,-0.67689204,0.3333653,0.3016779,-0.8981848,0.24778712,0.24743882,0.19427384,0.17471577,-0.38610923,0.059254974,-0.05764549,-0.015594056,0.10589148,-0.107328035,-0.24914098,-0.44874707,-0.1869134,-0.17868811,0.1910675,0.41965985,-0.24124496,0.2659166,-0.11911829,1.7342968,0.21977265,0.11754505,-0.15822046,0.66390383,0.19890149,0.021459216,-0.2428625,0.41367784,0.12092233,0.22387233,-0.4239471,0.14252636,-0.21343541,-0.53393674,0.0287139,-0.31781608,-0.17137456,0.027125712,-0.36495328,-0.14132383,-0.09531238,-0.48731905,0.5991826,-2.822819,-0.25482145,0.0993054,0.40848047,-0.2525095,-0.41278514,-0.31824285,-0.43612522,0.32552037,0.2960456,0.51240504,-0.6507007,0.15733738,0.3624925,-0.45702738,-0.4568061,-0.49498257,0.24349038,-0.10616509,0.17837867,-0.12184346,0.019979488,0.17498784,-0.1622616,0.5127827,-0.14431997,0.05081749,0.3308188,0.45901266,0.1343178,0.38795263,-0.09073848,0.523329,-0.41624528,-0.35148388,0.20997667,-0.51359856,0.38667795,-0.022860652,0.0945324,0.35800737,-0.3763305,-0.9835928,-0.60322505,-0.14811328,1.0018399,-0.13683519,-0.18338947,0.16623275,-0.13216938,-0.22835073,-0.1619555,0.69584244,-0.11369666,0.097079575,-0.59274757,-0.016709274,-0.06367288,0.21532385,0.052613128,0.11633664,-0.2706845,0.3765288,0.04898613,0.40192556,0.12588933,0.16805215,-0.6775936,-0.5033833,0.22317496,1.0340146,0.23227696,0.2425681,-0.19467871,-0.2001454,-0.51404345,-0.22910157,0.19115141,0.58261836,0.56643516,0.012772853,0.13414223,0.39115557,0.13770285,0.03266234,-0.14608575,-0.21627541,-0.09845364,0.10834283,0.6106583,0.74783766,-0.11736312,0.73821,-0.019553477,0.23143668,-0.36175057,-0.2811013,0.5459305,0.77308834,-0.11079035,-0.08780516,0.5534067,0.46727237,-0.47896242,0.46471533,-0.4584783,-0.5336707,0.42356825,-0.17508522,-0.2949184,0.19569822,-0.2356875,0.13044871,-0.88439333,0.29530632,-0.12878856,-0.42196503,-0.45494613,-0.02741382,-3.4551861,0.18411514,-0.06637565,-0.1967796,-0.01846106,-0.036436476,-0.10680425,-0.5523697,-0.2988202,0.11362324,0.080921456,0.8537186,-0.13768137,0.20896387,-0.24911317,-0.55725557,-0.27914795,0.07075504,-0.045120254,0.4711917,0.14506924,-0.4332304,-0.008368629,-0.19654484,-0.2795033,0.062615596,-0.6872957,-0.5247531,-0.19674549,-0.5703967,-0.53558797,0.7765054,-0.79671234,-0.031656247,-0.09876998,-0.040286746,-0.032178517,0.58539534,0.22694404,-0.09766505,0.10407659,-0.050351955,0.039142095,-0.3384231,0.39325827,0.061204474,0.35453188,0.59197223,-0.03582079,0.33848554,0.63864946,0.6289623,-0.11616719,0.76056087,0.33144206,-0.18494834,0.2647715,-0.38327146,-0.1399117,-0.48561326,-0.2736966,-0.21613792,-0.45296448,-0.44950682,0.048167776,-0.20796867,-0.7506976,0.5999118,-0.016695078,0.2574869,0.017302442,0.44224972,0.436632,-0.26023933,-0.103305124,-0.06483955,-0.031317066,-0.5088784,-0.37756258,-0.5433318,-0.46662372,0.38764256,0.67421216,-0.31913012,-0.062846355,0.22528657,-0.04278906,-0.114689335,-0.017253641,0.0014956177,0.05971422,0.39502275,-0.14462891,-0.6146989,0.5047269,-0.2826024,-0.13084629,-0.52900666,0.29730096,0.6073068,-0.82143295,0.42703447,0.34984216,0.059041403,-0.006636369,-0.21889582,-0.29981634,-0.13070314,-0.01799582,0.10927341,0.10629623,-1.0161146,0.3472758,0.35619402,-0.3488059,-0.7390477,0.5101688,-0.08156507,-0.20618281,-0.28307953,0.41188645,0.3714981,0.010835031,-0.2680061,0.119319916,-0.714193,0.20942731,-0.037104093,-0.013084051,0.54933137,-0.24336267,-0.116132304,-0.7104326,0.14828865,-0.32114553,-0.43822104,0.3017463,0.24128565,0.040961098,0.48463017,0.124120116,0.12818244,-0.46877342,0.021028036,0.010352311,-0.025250817,0.1585871,0.36304814,0.6946566,-0.43417415,0.5851859,-0.049894944,0.11415968,-1.24692915e-05,-0.0056295274,0.30408484,0.16628177,0.37148827,0.1142238,-0.5408026,0.19204596,0.6979744,0.22890782,0.41596764,0.06000172,-0.06163317,0.07308824,0.15610267,0.2949069,0.20376721,-0.5752264,0.14150189,-0.41498417,0.0933609,0.5276811,0.122435644,0.2585078,-0.024514556,-0.32827112,0.05633559,0.2980025,0.06539793,-1.0347188,0.42399865,0.15872595,0.67001283,0.35238153,0.028037941,0.18267992,0.6845647,-0.16952267,0.34674612,0.27755818,-0.15258236,-0.4503684,0.645558,-0.74084395,0.6028216,-0.1359859,-0.15473412,0.024675477,-0.11497768,0.34452468,0.739395,-0.1132368,0.041030053,0.15020753,-0.31230396,-0.022895742,-0.40238434,0.28750053,-0.72846556,-0.14321437,0.6771579,0.59487355,0.23793884,-0.17118141,0.069999285,0.029435555,-0.12752953,0.151593,-0.029819733,0.3405835,0.15760976,-0.7372457,-0.06497922,0.6904843,0.17741151,0.2237761,0.20002136,0.0047550797,0.34057644,-0.1473591,-0.15289685,-0.08419469,-0.7320617,0.07443381,-0.2940806,-0.5409044,0.52223814,-0.0037678003,0.33746552,0.3022736,0.09874064,-0.1670855,0.84598476,0.55179715,0.6709548,0.05029722,-0.26361778,-0.39984024,0.4806254,0.14098345,-0.15536436,-0.17360938,-0.24948025,-0.10292001,-0.51257855,0.25262377,-0.012696227,-0.25368953,-0.25133356,-0.005672296,0.07959471,0.58964145,0.19702668,-0.026887637,-0.17953187,-0.2896738,-0.15310663,0.091426946,-0.18110359,0.29508582,0.13053527,-0.2599817,-0.1818609,-0.27675578,-0.2278771,0.025562376,-0.24021511,0.30186814,0.2088217,0.2138265,-0.15285489,0.045792174,0.060733687,0.4358148,-0.03421101,-0.18743765,-0.21151015,-0.039822906,-0.4752651,-0.07694025,-0.063405596,0.18505815,0.3996441,-0.35368335,0.68256533,-0.12241123,1.0914605,0.1120054,-0.2581915,0.25286758,0.330703,0.030327965,-0.14953312,-0.4316427,1.1623213,0.42928308,-0.14928854,-0.23290884,-0.27902746,-0.19905517,0.28729516,-0.36126572,-0.52611506,0.08011012,-0.63341403,-0.28099066,0.20481852,0.19409415,0.27622908,-0.11095697,0.12545553,0.48365515,0.09555725,0.2093682,-0.4461349,-0.24241838,0.35542536,0.69744235,0.04215785,0.2761226,-0.2706264,0.46251068,-0.7551004,0.1301937,-0.4024642,0.18323596,-0.5916201,-0.496404,0.23921311,0.42443413,0.5039422,-0.030328596,-0.34791434,-0.2575243,0.33069235,0.110831186,0.2220231,0.42260146,-0.22480397,-0.1943104,-0.23610303,0.302028,1.0110028,-0.2334847,-0.29205373,0.5677914,-0.24656133,-0.6058444,0.50201035,-0.46906558,0.24767935,-0.07917818,-0.15677896,-0.5170865,0.14070329,0.17943123,0.09215893,-0.13567582,-0.46518594,0.100175306,0.2627023,-0.21095824,-0.35366416,-0.39319173,0.1336445,0.6285859,-0.21166237,-0.32518202,0.18930969,0.26184395,-0.21557252,-0.4288383,-0.15850383,-0.36396402,0.25543875,0.055475898,-0.33950546,-0.09218129,0.03746759,-0.4709975,0.14456932,0.01677283,-0.37277693,0.19947056,-0.3786428,0.11037654,0.94358426,-0.106517576,0.2776162,-0.3535836,-0.5233058,-0.7849141,-0.4035066,0.485516,-0.03485591,-0.032016467,-0.59153795,-0.018055404,-0.07135175,-0.4546401,-0.06062017,-0.46112648,0.30913225,0.121481776,0.35373825,0.018521184,-1.0106684,0.0756845,0.16209626,-0.16110262,-0.8200102,0.30743235,-0.24857359,1.1966503,0.037949722,-0.12735327,0.70783556,-0.38810536,-0.15784839,-0.31864804,-0.009338307,-0.48739845,0.061951526 +971,0.3953213,-0.10556881,-0.6079381,-0.1530697,-0.19847259,-0.14655109,-0.22373916,0.31849352,0.28603834,-0.6931961,-0.06944106,-0.30031177,0.05061963,0.28057587,-0.17178218,-0.7472127,0.027578983,0.070222594,-0.49947056,0.5616404,-0.2822589,0.31950498,0.19667496,0.41711357,0.073778085,0.17980976,0.14292307,-0.2988046,-0.19262458,-0.17627637,0.19526578,0.15384464,-0.9159031,0.21989654,-0.23885898,-0.42723256,0.046079274,-0.5561072,-0.33392087,-0.72519463,0.20281278,-0.81538004,0.46175066,0.22116017,-0.16412406,0.07548614,0.056701876,0.4408329,-0.13791011,0.08147408,0.2947732,-0.104838625,-0.1127102,-0.08036766,-0.11983999,-0.18208028,-0.6151014,0.18518613,-0.50306165,-0.19157228,-0.2693074,0.041775975,-0.35999733,-0.12582736,-0.1260887,0.56597346,-0.42847782,-0.03561022,0.55615634,-0.16253455,0.52477235,-0.45763114,-0.1793973,-0.21968423,0.33168063,-0.46023765,-0.24197112,0.36587554,0.30758932,0.5468007,0.11151004,-0.3651854,-0.24576767,0.019330647,0.32627848,0.40496144,-0.33466667,-0.44972032,0.00883188,0.04604439,0.08200407,0.1405039,0.14608888,-0.40262094,-0.07907625,0.07479554,-0.20942198,0.47302267,0.57644695,-0.20938845,-0.19567235,0.17451476,0.47157913,0.25443396,-0.00045016833,0.17693688,0.14369373,-0.65128905,-0.3104476,0.19069918,-0.067028604,0.4759502,-0.06777143,0.19729938,0.82077926,-0.2716051,0.099887766,0.15244995,-0.15807618,0.083668366,-0.3334855,-0.11746902,0.34237385,-0.53410965,0.24578413,-0.2607719,0.8156681,0.23840734,-0.87500525,0.21874145,-0.5612563,0.19575523,-0.007149678,0.55503434,0.8060006,0.4373245,0.29900455,0.6474686,-0.64325047,0.13286008,-0.029021401,-0.5590046,0.13925451,-0.25443575,-0.022469087,-0.39934942,-0.30999228,-0.051395994,-0.028954476,0.1449872,0.19026451,-0.66577053,-0.041443553,0.12255444,0.9863472,-0.18581028,-0.074974455,0.7946628,0.95075166,0.9772644,0.16925634,1.438862,0.12066684,-0.24572909,0.27036306,-0.06329732,-0.87707835,0.3087185,0.30488044,-0.3227563,0.19975956,0.12589923,0.1068537,0.42954272,-0.6081669,0.17491044,-0.27369985,0.24595745,-0.063644126,-0.30326152,-0.28200993,-0.20510289,-0.17513993,-0.08979762,-0.15448031,0.25268793,0.047825444,0.2608031,-0.075649336,1.4296873,-0.11686627,0.17950928,0.047948927,0.43770096,0.1844641,-0.123094015,-0.08507877,-0.010865852,0.29463726,0.19482371,-0.37133732,0.054996006,-0.27271953,-0.429917,-0.2344842,-0.24024566,0.055393588,-0.025736528,-0.51454467,-0.02761811,-0.11056332,-0.37176013,0.3935347,-2.4727948,-0.08772067,-0.10679205,0.23141468,-0.29445854,-0.24559991,-0.18300359,-0.57202786,0.56436366,0.28629044,0.5117715,-0.6932802,0.2624582,0.4630301,-0.62479955,-0.0826549,-0.66686183,-0.06759775,-0.05365187,0.05596022,0.17011313,-0.15481703,0.0031154964,0.18458617,0.4574819,-0.112018906,-0.14758177,0.27098694,0.3704795,0.0962715,0.5878144,-0.08070681,0.44608593,-0.39426568,-0.24989578,0.41398236,-0.34485093,0.1536764,-0.15540375,0.054346383,0.26786852,-0.5256791,-0.9381309,-0.77746564,-0.696938,1.0015395,-0.0030495462,-0.27103403,0.28699917,-0.12282833,-0.18388653,-0.005822867,0.676664,0.063896604,0.301912,-0.9085684,-0.03909113,-0.21411109,0.14392336,0.06862879,0.03237336,-0.5644182,0.63127136,-0.10835831,0.23447503,0.6224928,0.171991,-0.16326752,-0.5250057,0.23509558,1.2818578,0.26039523,0.2695258,-0.38981524,-0.16021411,-0.48616645,-0.19737397,-0.0661764,0.530501,0.9141844,-0.18197368,0.043551184,0.27001795,0.25412613,0.12258877,-0.17160773,-0.39767596,-0.21803202,-0.13183244,0.64084613,0.6920055,-0.14828207,0.35503483,-0.09135987,0.3036108,-0.098467745,-0.3002243,0.5895057,1.0455472,0.01591645,-0.19342384,0.50163037,0.33131674,-0.27644327,0.5156039,-0.40790105,-0.37215686,0.43749705,-0.14860848,-0.5483754,0.28379458,-0.45650768,0.13105379,-0.94834524,0.4568073,-0.47500712,-0.28976187,-0.46970257,-0.16801979,-3.4636414,0.30964303,-0.28540364,0.08773017,-0.19410111,-0.011866263,0.31764618,-0.40483946,-0.5362744,0.14813623,0.069343165,0.78593844,-0.11094963,0.2351776,-0.2588974,-0.17963187,-0.2908083,-0.014995826,0.428564,0.2285438,0.096900955,-0.3384493,-0.22835943,-0.3385567,-0.3843589,0.122632265,-0.61667687,-0.57519764,-0.27174535,-0.55335313,-0.45929864,0.77236927,-0.48586008,-0.008413421,-0.13952781,-0.082021885,-0.05356342,0.43293557,0.15042332,0.22859158,-0.04502358,-0.06775785,-0.2697642,-0.301388,0.29904112,0.16827247,0.32423773,0.30890635,-0.20438997,0.3662574,0.5028066,0.8372751,-0.12668078,0.83055276,0.63408756,-0.059318505,0.30168915,-0.38413692,-0.2686192,-0.72359717,-0.3169399,0.018059727,-0.42743775,-0.48954725,0.21493527,-0.35975474,-0.76441544,0.6821534,-0.09397179,-0.021563599,0.12315726,0.11400109,0.28821757,-0.2846697,-0.14797108,-0.012187498,0.011960409,-0.621107,-0.26727226,-0.577035,-0.71103734,-0.077700146,1.0523921,-0.10855365,-0.05362134,0.058926042,-0.12201447,0.15981808,0.1236311,0.014318423,0.16242775,0.47892064,0.1278962,-0.63334525,0.5335957,-0.07869265,-0.26629624,-0.6465817,0.16859646,0.7237319,-0.78672165,0.65659094,0.41140494,0.100433454,0.21605669,-0.52217907,-0.29853168,-0.010716749,-0.19407058,0.25184634,0.05919265,-0.7706713,0.40941188,0.3559427,-0.32881275,-0.8791382,0.48281312,0.076221466,-0.26037842,0.010142141,0.3429131,-0.0011655986,-0.035854377,-0.15105769,0.24125136,-0.36704874,0.23356335,0.31917945,-0.15665393,0.35026655,-0.14238368,-0.20523931,-0.71059763,0.13186361,-0.5534238,-0.34229904,0.2111288,0.10063214,-0.1905208,0.1752843,0.2753293,0.35655025,-0.17377189,0.118716955,-0.10593117,-0.36670858,0.31424466,0.46717677,0.48554128,-0.5059262,0.69515866,-0.10125596,-0.10963433,-0.07934325,0.20713483,0.58007187,-0.07130647,0.2852936,-0.02004905,-0.18093626,0.13498981,0.9343638,-0.07115586,0.48223382,0.1288797,0.014050462,0.24151337,0.14719735,0.029539188,0.1251252,-0.64364713,0.122197226,-0.079616986,0.12078013,0.510727,0.1218786,0.28342924,-0.08831109,-0.36973897,-0.12621716,0.25472617,0.11361081,-1.1873602,0.4680423,0.13147773,0.76810604,0.5841697,0.033037513,0.1401347,0.5710055,-0.098175064,0.24293779,0.40074506,-0.36281762,-0.45573786,0.5250102,-0.63727534,0.45173725,0.09711571,0.051637974,0.10942262,-0.065033935,0.44708356,0.79125375,-0.1625317,0.13456531,-0.14106493,-0.13243894,0.14290419,-0.5473551,0.14451507,-0.3885767,-0.38890347,0.81274146,0.6351227,0.2617992,-0.14177172,0.032776404,0.1189834,-0.25995532,0.24948256,-0.19106899,-0.040242177,0.08207862,-0.6363613,-0.17860515,0.62077904,-0.054383468,0.12523915,-0.045633733,-0.06113294,0.29597592,-0.16284181,0.01869258,-0.17795444,-0.8400735,-0.0353778,-0.65714025,-0.23063298,0.4058468,-0.18425097,0.29158396,0.24913752,0.19599734,-0.33840793,0.69483954,-0.050291207,0.64483637,-0.09399414,-0.40300608,-0.39989632,0.28930974,0.3000273,-0.34777328,-0.15666457,-0.25616962,0.11249941,-0.57086766,0.40909752,-0.047523897,-0.22907901,0.13311575,-0.13345698,-0.10610231,0.5652911,-0.13903452,-0.055862945,0.23734555,-0.15666635,-0.09300184,-0.01698176,-0.09407152,0.25759244,0.34164843,-0.068221614,-0.034252033,-0.2511366,-0.12204582,0.3365319,0.034806363,0.33907524,0.36449507,0.15797596,-0.40380454,-0.15845375,0.32432863,0.66455114,0.08222463,-0.09306791,-0.29626274,-0.2922024,-0.27406892,0.1935008,-0.17623572,0.23466012,0.0696573,-0.3882272,0.815765,0.2750803,1.2947283,0.097810306,-0.31122023,0.1008389,0.3436401,-0.1435088,-0.04731241,-0.6407526,1.0723475,0.51417965,-0.13191119,-0.08991729,-0.3028138,0.056761023,0.06907513,-0.19418585,-0.10557175,0.024899704,-0.7365302,-0.21568252,0.246483,0.37137213,0.0509376,-0.1452591,-0.10743214,0.029897707,0.016231375,0.11357454,-0.7071659,-0.029194662,0.14520392,0.32465845,-0.02389287,0.10870867,-0.41117126,0.5419796,-0.54363674,0.0676408,-0.27689612,0.076072276,-0.15601781,-0.35273567,0.26596063,-0.077372454,0.46661565,-0.412405,-0.2631413,-0.25300795,0.36767468,0.22857387,0.22678454,0.7594668,-0.24889685,0.046337478,0.028038843,0.61333495,1.1826696,-0.30504575,0.06580876,0.4024529,-0.22139832,-0.37787384,0.2493739,-0.40629128,0.17135479,-0.33348098,-0.35878658,-0.49490443,-0.027126921,0.14084585,-0.022327295,0.12542035,-0.6877989,-0.21686053,0.2058618,-0.42090622,-0.43871197,-0.42389104,0.19057237,0.6568895,-0.24978593,-0.25072306,0.21768053,0.057286944,-0.09333646,-0.41433683,-0.06737774,-0.20862894,0.17335603,0.18679598,-0.423224,-0.11154485,0.09867018,-0.53274083,0.19038351,0.24130665,-0.40895635,-0.08426504,-0.06433759,-0.17155658,0.92954344,-0.24263705,0.25138825,-0.47217104,-0.53152335,-0.93766385,-0.27352187,0.6428598,0.16554031,0.1603901,-0.4192793,-0.19316995,-0.063755505,-0.007520092,0.0212763,-0.3042336,0.31506798,0.117685184,0.6538439,-0.3133367,-0.8268723,0.061806615,0.15862584,-0.181646,-0.6408843,0.41490918,0.071109824,0.78791046,0.044692226,-0.03507274,0.47689587,-0.57301664,-0.24053724,-0.26743594,-0.1283019,-0.6951429,0.07245065 +972,0.41960123,-0.3982768,-0.5553142,-0.1255757,-0.37865448,-0.16471304,-0.23888983,0.3262382,0.31399378,-0.21625388,-0.056720622,0.0932757,-0.041890416,0.25718105,-0.14589235,-0.64352095,-0.2077777,0.2319918,-0.72771263,0.6251609,-0.4977295,0.43044785,0.14625607,0.3128696,-0.029280433,0.2089163,0.20696424,0.14201795,0.10204362,-0.13632545,-0.08711316,0.32594985,-0.5506334,0.3842186,-0.23736584,-0.3939546,0.1119658,-0.2090163,-0.036017608,-0.75461733,0.052237246,-0.7537899,0.62554324,-0.21225323,-0.38939694,-0.22445713,0.26159227,0.41940352,-0.29981086,0.09388433,0.2073988,-0.36603427,-0.1407775,-0.52227885,0.08448981,-0.5388235,-0.41564375,-0.07906122,-0.62558556,-0.18269362,-0.049319305,0.2976803,-0.16675554,-0.067747936,-0.20819725,0.44485694,-0.40177923,-0.15331748,0.3256509,-0.23177603,0.32649708,-0.6402498,0.00736802,-0.09983388,0.31508607,-0.023144895,-0.17620766,0.4026487,0.030542387,0.44163302,0.27571598,-0.40282208,-0.3092418,-0.19369368,-0.021766977,0.33499938,-0.18363227,-0.28771088,-0.20086597,0.10224692,0.37224764,0.30173144,0.12117643,-0.21576367,-0.0017294118,-0.31378418,-0.026817368,0.3430428,0.42210084,-0.27964914,-0.26121524,0.16981816,0.7710611,0.15363815,-0.19021104,0.08794045,-0.1165595,-0.50725275,-0.19866857,0.12601629,0.050011218,0.36394385,-0.06390445,-0.007501892,0.73855245,-0.15224995,-0.22423764,0.18350157,0.039100852,-0.030015213,-0.29550642,-0.3597981,0.4261958,-0.5605644,-0.028103922,-0.3472946,0.5888562,-0.01501309,-0.7950824,0.22871315,-0.59336424,0.036661416,0.013018457,0.6259637,0.6416212,0.6535424,0.22643434,0.8115631,-0.32214528,0.15654702,-0.084836565,-0.22064193,0.1006976,-0.37711683,-0.06723694,-0.57480365,0.25500935,-0.35802904,0.022614395,0.06582819,0.35996002,-0.6959275,-0.14469838,0.2592435,0.6119708,-0.3347156,-0.006037789,0.6419062,1.0914266,1.1722664,0.016832134,1.1706277,0.335288,-0.2921176,0.002942313,-0.0834375,-0.53526765,0.17114122,0.42279932,0.04073402,0.4322962,-0.06285279,0.045163002,0.39980978,-0.3710522,-0.029069956,-0.02929249,0.4591937,-0.06530995,-0.20379743,-0.7411443,-0.2717995,0.18243954,-0.09626849,0.031910777,0.28086135,-0.17347537,0.52835387,0.041170154,1.1891098,-0.119834505,0.16487359,0.30229467,0.38663498,0.36037546,-0.1631199,-0.034002136,0.43232414,0.36019066,0.008909439,-0.40130165,0.2818223,-0.26492205,-0.5371038,-0.1671437,-0.3096458,-0.031678952,0.039450772,-0.38194466,-0.41407558,-0.006969767,-0.26201004,0.2991049,-2.5460489,-0.084203646,-0.060735352,0.30087325,-0.31395265,-0.25419232,0.0047796923,-0.45936546,0.23152171,0.25996143,0.44698745,-0.5564397,0.46237502,0.54494727,-0.54763925,-0.19088398,-0.6389357,-0.21584807,-0.06747009,0.60330904,0.16014345,-0.27667588,-0.21999623,0.13942127,0.7523165,-0.11655586,0.21855184,0.62084234,0.20631838,-0.021341775,0.5651359,0.029623615,0.52730924,-0.3950204,-0.20223625,0.4724057,-0.33682957,0.09923834,0.085477255,0.036828212,0.5904506,-0.5062755,-0.92206395,-0.6827909,-0.11642082,1.1494434,-0.30599895,-0.57810163,0.072538495,-0.019231107,-0.13412996,0.021349145,0.3427775,0.006734318,0.32804736,-0.6454201,-0.034820028,-0.040063065,0.377541,0.007923211,-0.084519364,-0.5590893,0.71729594,-0.04752476,0.6449407,0.3292935,0.3628175,-0.43733257,-0.5130185,-0.030995099,0.9108788,0.37156463,-0.0049203634,-0.07754332,-0.1707249,-0.03562967,-0.13018562,0.10940211,0.6265417,0.8187379,-0.087462306,0.13059644,0.28734514,-0.23459403,0.10561974,-0.15756464,-0.23047747,-0.15658616,0.2548148,0.49036327,0.6466626,0.018523693,0.33548048,-0.14461206,0.5329723,-0.07733288,-0.7637032,0.41369155,0.9142289,-0.16183482,-0.15588214,0.63770694,0.5159267,-0.26306108,0.53257763,-0.71237516,-0.40886325,0.5639449,-0.21633697,-0.48443487,0.26624233,-0.3124887,0.24749467,-0.81260127,0.39711827,-0.47609833,-0.578999,-0.73243827,-0.3215301,-2.6076944,0.38663295,-0.047077574,-0.030587448,-0.0823062,-0.14778854,0.2519768,-0.72743595,-0.5472484,0.027319716,0.2700487,0.4933717,-0.14445962,0.02664819,-0.35369435,-0.43291745,0.059850276,0.3922973,0.16150868,0.122155346,-0.16443662,-0.4265085,-0.18946435,-0.055852085,-0.5086227,0.07643831,-0.689205,-0.46911994,-0.11495805,-0.61605877,-0.20987412,0.66433895,-0.31601158,0.0063045495,-0.16962482,0.03267454,0.034790494,0.04999572,-0.029178781,0.2604508,0.22161727,-0.11678302,0.087860465,-0.34539533,0.21071997,0.04871758,0.22448076,0.09438251,-0.4060626,0.09968807,0.5762605,0.811193,-0.21515016,0.85351604,0.42280766,-0.1062242,0.3641057,-0.19062993,-0.47454092,-0.7370172,-0.31798914,-0.01968291,-0.44752875,-0.4071408,0.13264301,-0.32775512,-0.8440031,0.87247956,-0.11515201,0.2323015,-0.054513816,0.39965954,0.42943937,-0.24171574,-0.14297077,-0.12539087,-0.30984333,-0.32999706,-0.33751398,-0.6125083,-0.5485812,-0.15469499,1.2912371,-0.2854548,0.20991834,0.16640401,-0.20496821,0.14746805,0.22595385,0.12959954,0.40589634,0.40337515,0.03263138,-0.56783473,0.33664766,-0.011886354,-0.18141209,-0.29375157,0.25245604,0.61139905,-0.7291495,0.42138192,0.2716163,-0.030063663,-0.18000463,-0.6613222,-0.07939291,0.10297811,-0.13444401,0.75294334,0.2889741,-0.5999717,0.6160954,0.26890755,-0.5476606,-0.81144553,0.16242623,-0.2073869,-0.42616516,-0.08689896,0.46432853,-0.14101386,-0.028883193,-0.31012908,0.18884937,-0.5219522,0.20316295,0.17149922,-0.15254535,0.10670285,-0.2107834,-0.26186022,-0.8336939,0.09998499,-0.57609385,-0.3483542,0.33705616,-0.09103419,-0.23804331,0.3122725,0.018417416,0.54110146,-0.2535241,0.13466506,-0.024417136,-0.37736636,0.3632682,0.5269689,0.26621833,-0.27085543,0.43338886,0.101654306,-0.22088994,-0.37868118,-0.01604219,0.45952135,0.020240877,0.39993507,-0.33692318,-0.004722399,0.4645497,0.73365337,0.15424633,0.44252965,-0.050718326,-0.20896025,0.25607112,0.027007427,0.25160545,0.009393354,-0.30772966,0.08636337,0.0051082033,0.1419971,0.5934981,0.25338313,0.34389386,0.0036618677,-0.09986616,0.12357945,0.3600618,-0.08859473,-1.2998744,0.34880045,0.34112504,0.81112987,0.4813402,0.43416572,-0.20403825,0.6651154,-0.29964834,-0.06404743,0.34915325,0.0038024357,-0.35861096,0.7850452,-0.6458596,0.3354561,-0.17721932,-0.032869067,0.07291515,0.0129287755,0.5047242,0.8838781,-0.11566673,0.08289889,-0.11439451,-0.03828297,-0.02334657,-0.31915978,0.05803773,-0.22591901,-0.47007713,0.72892916,0.19765738,0.49100357,-0.2905302,-0.061554737,0.18271752,-0.23209418,0.34342638,-0.11451982,0.09529352,0.086021475,-0.2151873,-0.059933174,0.51678145,0.065389164,0.08898517,-0.14358957,-0.27425495,0.12335099,0.030984385,-0.008954593,0.08554237,-0.5190887,0.09154076,-0.27229398,-0.32674956,0.67529625,-0.29408816,-0.062369924,0.19712935,0.154964,-0.16471629,0.049004667,0.23251952,0.7711138,0.21351545,-0.1939249,-0.21710835,0.1089046,0.08103616,-0.24709593,0.17078508,-0.3337094,0.18065281,-0.78034145,0.41849825,-0.060638785,-0.4999434,0.28861645,-0.17564304,-0.083588906,0.3832949,-0.22805004,-0.2610496,0.06476484,-0.046638332,-0.33673355,-0.24261318,-0.32330874,0.20376109,0.21155313,0.030606005,-0.039058298,-0.16762467,-0.07138616,0.6042821,0.07872985,0.2908299,0.2559492,-0.096779995,-0.3462736,0.46046954,0.06821143,0.3981792,-0.053003047,0.1873376,-0.324011,-0.38808712,-0.3991608,0.062050562,-0.13362218,0.13735655,-0.015299141,-0.22375356,1.0812277,-0.02124708,1.2480575,-0.09815054,-0.3958258,0.10993479,0.5447621,-0.054231107,0.05885132,-0.44453642,1.05272,0.7708277,-0.115044855,0.028900895,-0.31673965,-0.22536895,0.26663327,-0.43609905,-0.11758141,-0.122202925,-0.60125095,-0.43480307,0.29282692,0.20526047,0.14239003,-0.1520064,-0.030048694,0.122926354,0.1471753,0.0865728,-0.49271324,0.122522935,0.118638135,0.34026554,-0.22066303,0.10273378,-0.48966983,0.36075878,-0.7387621,0.22384262,-0.40052313,0.041488178,-0.16751587,-0.3705469,0.13561168,-0.15246692,0.1135115,-0.3994944,-0.32575387,0.008263505,0.4120086,-0.015273622,0.079309806,0.72638303,-0.25618783,0.1808882,0.17425404,0.37611106,1.1888807,-0.4202573,-0.259351,0.17255415,-0.338331,-0.6000671,0.2957992,-0.24731223,-0.11641406,-0.17082019,-0.60297096,-0.4560223,0.14953755,0.31235933,0.15547301,-0.006796028,-0.5946023,0.15027292,0.38827315,-0.42112327,-0.096926995,-0.16516992,0.39293173,0.58529204,-0.18380828,-0.61893064,0.06001206,0.33678606,-0.34215614,-0.55054396,-0.09232939,-0.32593012,0.42436668,0.12512304,-0.28061664,-0.071730964,0.112083875,-0.53857106,-0.06095872,0.5101872,-0.25354388,0.06975827,-0.35310173,0.058463685,0.7552613,-0.040819697,-0.098406136,-0.57781345,-0.470967,-1.0912981,-0.42553744,0.2629809,0.25417492,0.051061515,-0.60998017,0.027397692,-0.29357502,-0.19025585,0.036710035,-0.2755554,0.35607508,0.19359955,0.6036099,-0.49707517,-0.9505054,0.3693431,0.24141042,-0.04426288,-0.4875662,0.5368915,-0.071040615,0.72693986,0.0021621925,-0.074467316,0.11436259,-0.7210811,0.23389395,-0.26493296,-0.119203486,-0.6479645,-0.22957002 +973,0.32833892,-0.43302998,-0.29686496,-0.091528915,-0.36435196,-0.22495215,-0.22058141,0.5654947,0.11469817,-0.26277402,-0.30850175,-0.048315298,-0.026558718,0.3789158,-0.07964219,-0.49989977,-0.16240849,0.32140023,-0.6869747,0.6137558,-0.5846142,0.070441574,0.055316094,0.5048075,0.014939678,0.2501835,0.39435804,-0.17632735,-0.027739376,0.01059556,-0.069038816,0.4101791,-0.66642606,0.14577508,-0.2366616,-0.39744273,-0.009635667,-0.56382865,-0.09241825,-0.8244011,0.08624493,-1.026452,0.4451182,0.08218273,-0.35588574,-0.1974201,0.15826388,0.32142177,-0.5382034,-0.024089968,0.27918324,-0.23785555,-0.2861614,-0.3282071,0.24155174,-0.34454167,-0.5710061,0.0368147,-0.34145072,-0.23547749,-0.09079141,0.28281137,-0.19014144,-0.056363355,-0.13603243,0.45337078,-0.5529526,-0.21096689,0.1317508,-0.19421954,0.123363376,-0.65178937,-0.009876651,-0.37383413,0.45551836,0.007065455,-0.28340632,0.47587338,0.26713964,0.42512956,0.2663295,-0.28204003,-0.30190927,-0.03666163,0.017855942,0.39602795,-0.37691417,-0.3151382,-0.28468427,-0.11766878,0.17250724,0.20092332,-0.05775137,-0.3187391,0.093479335,-0.27928957,-0.05584776,0.17127295,0.35512128,-0.33877465,-0.288295,0.20042975,0.5361429,0.2499628,-0.19353034,-0.19423842,0.13249378,-0.6807995,-0.19914703,0.087518595,-0.19351387,0.62218744,-0.13207477,0.026148856,0.8051483,-0.018634157,-0.062906645,-0.06038751,0.23111832,-0.16341817,-0.2736009,-0.43306008,0.44978943,-0.33785906,0.10513821,-0.29885414,0.7725723,0.19037944,-0.73379046,0.3652904,-0.6211182,0.096508585,-0.07616919,0.6491443,0.75551224,0.76039696,0.39850628,0.80913514,-0.21021004,0.17774747,-0.0574854,-0.22614433,0.1449129,-0.26193973,-0.09193877,-0.47283256,0.10140165,-0.17198308,0.010972805,-0.08219796,0.4598606,-0.61455876,-0.05276999,0.30791253,0.5964929,-0.310268,-0.09024625,0.64984226,1.0475689,1.0170425,0.06536923,1.3542051,0.44762984,-0.17573428,0.22414494,-0.044403702,-0.94308513,0.06746522,0.49736667,-0.084088035,0.24445839,0.039843407,-0.15948372,0.5904951,-0.56747276,0.09060672,-0.2243303,0.31582066,-0.084987335,0.0530339,-0.6028211,-0.25949702,0.06792014,0.023690274,-0.09214612,0.32489985,-0.2687957,0.23674019,-0.083167695,1.281056,-0.05420594,0.18302858,0.17401512,0.5169044,0.06852454,0.0147722615,-0.040078077,0.33240116,0.3678051,-0.056997288,-0.6111862,0.34006977,-0.32459876,-0.5858712,-0.09261528,-0.27509174,-0.11714014,0.17914535,-0.4231874,-0.34011236,-0.034344953,-0.23843968,0.42276272,-2.3464034,-0.16865481,-0.21669318,0.36392972,-0.2848679,-0.07497275,-0.15679199,-0.43239,0.2709715,0.31609955,0.6008981,-0.733592,0.43245748,0.505095,-0.64133984,-0.1396573,-0.7592673,-0.039504115,-0.1328326,0.3929541,0.056880485,-0.30212715,-0.08966118,-0.20942432,0.71620053,0.017111037,0.2112515,0.55235475,0.18239002,0.19425042,0.4887618,-0.055752385,0.5415881,-0.5637059,-0.45755553,0.29595745,-0.37923393,0.41935667,-0.031377386,0.062824965,0.6100034,-0.6658506,-1.0385798,-0.69856924,-0.3036919,1.0527607,-0.3771437,-0.46864638,0.25738773,-0.16793652,0.07952996,0.14498176,0.62896043,-0.06680005,0.15369101,-0.7384286,0.10189342,0.019163074,0.46297598,0.10489574,-0.054701854,-0.41121694,0.7837387,-0.1755848,0.57196516,0.4280094,0.12533139,-0.34068823,-0.45324838,-0.017727481,0.8542698,0.31222743,0.11412359,0.012258534,-0.35942551,-0.124081306,-0.2538487,-0.0123251425,0.56854516,0.8041255,-0.14463145,0.12709735,0.28929606,-0.030922651,-0.035991807,-0.2076552,-0.3285854,-0.17261894,0.38845766,0.46911398,0.8174205,-0.13853957,0.34610167,-0.25841066,0.4331201,0.1224888,-0.49904358,0.540885,0.67736155,-0.19295757,0.12633629,0.75860834,0.7599394,-0.45735574,0.5071936,-0.613618,-0.36137497,0.49534068,-0.11938461,-0.46503854,0.04485296,-0.3124336,0.3464497,-0.7173023,0.49280012,-0.49902916,-0.44426122,-0.81940633,-0.058629274,-2.9094822,0.27963766,-0.18143971,-0.038242955,-0.098118626,-0.06658976,0.4020492,-0.8476879,-0.5212799,0.21472,0.09962087,0.5137957,-0.0625625,0.04491586,-0.322862,-0.32209602,-0.064355254,0.34136453,0.32762292,0.23487073,-0.17332478,-0.56646985,0.09813396,-0.071744256,-0.3239889,-0.0068446547,-0.8130799,-0.4376522,-0.09450889,-0.79409057,-0.38637206,0.5626708,-0.518001,-0.014788661,-0.22143416,0.1223919,-0.29372135,0.230967,0.07317754,0.21315251,0.16742925,-0.12079173,-0.061585397,-0.18504061,0.3919119,0.03621472,0.101727396,0.066676535,-0.19829233,0.16755962,0.64470214,0.7531232,-0.24038804,1.296139,0.66851217,-0.18574472,0.19257379,-0.25660804,-0.2638114,-0.69482785,-0.3941177,-0.26163688,-0.3607161,-0.46156776,0.360038,-0.2139494,-0.9119527,0.93167067,-0.1616931,0.2024498,0.2201482,0.07510204,0.41024557,-0.30353975,-0.032205295,-0.18253513,-0.015862605,-0.5608955,-0.37250268,-0.682108,-0.5164409,-0.16357571,1.1715776,-0.26216236,0.14817382,0.22044103,-0.33651176,-0.12871341,0.08644453,0.0025248204,0.3416669,0.5779772,0.011804019,-0.7327896,0.29543898,0.11845199,-0.066428654,-0.30525163,0.21372636,0.6736264,-0.98915416,0.794202,0.300916,-0.08624455,-0.11164089,-0.6154701,-0.5628169,0.042919796,-0.10316514,0.4425132,0.09512699,-0.7913254,0.46840444,0.31587613,-0.6092294,-0.8688529,0.17465329,-0.2724611,-0.23102097,-0.04239915,0.39170322,-0.041179877,-0.0959798,-0.21441495,0.2338997,-0.41757426,0.3192694,0.055187777,-0.20133543,0.32439813,-0.3237046,-0.15973416,-0.91621685,0.13345575,-0.55036896,-0.28988716,0.5353162,-0.061283354,-0.3294803,0.21417247,0.26285326,0.278679,-0.2766033,0.07502333,0.06242296,-0.37406674,0.15001087,0.51300955,0.28369543,-0.27724653,0.55624753,0.10855526,-0.031763624,-0.34586826,-0.22698571,0.21493204,-0.04850912,0.3646325,-0.31556177,-0.199548,0.28818095,0.9183793,0.082594134,0.63570666,-0.004727222,0.032613155,0.59048635,0.09131217,0.24373777,-0.025268197,-0.5569826,0.14474876,-0.023305902,0.06807306,0.5225207,0.318794,0.39606515,0.028059125,-0.1345811,0.0066058487,0.16566081,0.07021459,-0.94056416,0.32430327,0.085953355,0.68390924,0.6915229,0.16712527,-0.3648415,0.79498214,-0.39365885,-0.039973095,0.5472321,-0.074870914,-0.5518088,0.76588804,-0.6883478,0.384636,-0.36498296,-0.045173883,0.16567685,0.0774042,0.44036007,0.6671386,-0.14264867,0.038200762,0.029759621,-0.13348983,0.042306244,-0.2891315,0.119370736,-0.3521212,-0.41883254,0.8844569,0.41607356,0.47767273,-0.19849235,-0.016514517,0.050573442,-0.23308754,0.50408345,-0.13936123,-0.090222664,0.17150815,-0.5842098,0.11437819,0.6730099,0.016983887,0.08884063,-0.03952245,-0.40268123,0.23113574,-0.18248005,-0.17773052,-0.08357907,-0.74491984,0.09369447,-0.37396994,-0.35743788,0.54723555,-0.25555372,0.15896395,0.19175589,0.10038647,-0.30941302,0.4768436,0.12466419,0.9538164,0.15999082,-0.20442213,-0.08559481,0.2563388,0.17003684,-0.18964891,0.11397856,-0.525763,-0.031205177,-0.62085545,0.5886557,-0.10897606,-0.4296813,0.20354263,-0.19436656,-0.07150581,0.50318533,0.0036391292,-0.21701078,0.014840168,-0.14167623,-0.47190297,-0.15017663,-0.3613499,0.29604375,0.14305855,0.19560926,-0.21241839,-0.3367957,-0.2760935,0.7389433,0.02178646,0.45326564,0.37083992,0.11884495,-0.14378597,0.12638669,0.16772431,0.5113445,-0.013454467,-0.08741162,-0.505376,-0.29645205,-0.18677996,-0.15432262,-0.052913412,0.4065484,0.09321085,-0.3168957,0.88851947,-0.083528034,1.2778119,0.022586199,-0.39769664,-0.02012235,0.61553186,-0.12822461,-0.048466694,-0.40709615,0.96130323,0.54802996,-0.15821593,-0.027227765,-0.55681264,-0.21018346,0.41320872,-0.3043621,-0.15780659,-0.11426098,-0.68721277,-0.4311413,0.17610498,0.32119328,0.12019536,-0.11428013,0.1036123,0.11015894,0.1301672,0.32321504,-0.46648434,-0.2077089,0.38015357,0.4198557,-0.087186635,0.22956741,-0.2745764,0.45968163,-0.73979473,0.32603192,-0.5875903,0.09060311,-0.36731753,-0.45717993,-0.024194425,0.01621706,0.2966958,-0.21910872,-0.28949055,0.030424438,0.55644226,-0.030803153,0.2951948,0.89103794,-0.27523747,-0.07520034,-0.03837418,0.56498057,0.9686498,-0.5586506,-0.07673794,0.1135433,-0.19290191,-0.5241074,0.60966617,-0.34697405,-0.16449384,-0.0357114,-0.44482458,-0.5975248,0.07627304,0.17921662,-0.14873104,-0.10069767,-0.66659826,0.1103855,0.35223362,-0.104008555,-0.13083693,-0.08471564,0.639801,0.7688699,-0.24210334,-0.5000847,-0.00087932375,0.2671232,-0.2065778,-0.41490868,-0.20513754,-0.49663773,0.32410344,0.27478993,-0.43185923,0.063265085,0.10628884,-0.46864775,-0.10887887,0.19813858,-0.2387499,0.24140124,-0.377553,0.13007168,1.0367097,-0.02999167,0.10227159,-0.41371343,-0.5838436,-1.1040813,-0.34648204,0.50108343,0.28679857,-0.009381592,-0.4030676,0.19935541,-0.14614414,-0.43125775,0.06687492,-0.55731213,0.4489204,0.17033285,0.5834859,-0.26504555,-0.6831088,0.097361185,0.26665244,0.11352714,-0.4238939,0.5381214,-0.13965574,1.1543599,0.022185251,-0.21434636,-0.010370121,-0.45353356,0.021324217,-0.39163753,-0.017468996,-0.6328524,-0.08298228 +974,0.110166185,0.01570909,-0.84117603,-0.09465384,-0.21515045,0.06936568,-0.2836829,0.44272733,0.22134387,-0.3192449,0.10098626,-0.10140427,-0.11642276,0.2640048,-0.18409012,-0.7329979,-0.065882854,0.07202759,-0.38232556,0.598483,-0.4646143,0.24322748,-0.07918073,0.27322128,0.05379789,0.38187653,0.12653224,-0.24070457,-0.00014550345,-0.10427612,0.033972006,0.20048033,-0.36712703,0.1344375,0.08957903,-0.25732067,0.23950703,-0.3016474,-0.42832544,-0.66982406,0.32498237,-0.6920099,0.5514747,0.0956341,-0.27719697,0.44708943,0.049405508,0.0033793706,-0.26715407,-0.06828047,0.34480596,-0.28820997,-0.3322905,-0.16277437,-0.38911608,-0.76541144,-0.50510484,-0.106754474,-0.65454084,-0.07405671,-0.361526,0.16009894,-0.37413958,-0.13927297,-0.22196208,0.1744368,-0.6319718,-0.015584179,0.0628146,-0.31611425,0.08313613,-0.63479507,-0.10619893,-0.063969836,0.141139,0.14831424,-0.017027732,0.24603963,0.049041253,0.3949675,-0.009063401,-0.044691417,-0.59955746,-0.2806124,0.2566479,0.38911372,-0.07759583,-0.18482523,-0.056327175,-0.07609548,0.3060407,0.35081282,0.03763924,-0.17089696,-0.18402639,0.07668634,-0.33469138,0.45295662,0.504696,-0.23952726,-0.07784406,0.49813825,0.19154358,0.2669973,-0.36553636,0.12673858,-0.14706244,-0.42442527,-0.17193785,-0.010154724,-0.10518042,0.3910223,-8.174138e-05,0.3702514,0.80230683,-0.12377958,-0.0527729,-0.19353811,0.002604078,0.057098538,-0.2705378,-0.10667284,0.22104017,-0.42481998,0.17136621,-0.20220843,0.684837,-0.06735995,-0.79579085,0.3962764,-0.4145113,0.077552386,-0.14097941,0.75847065,0.6413188,0.535984,0.15622258,0.8845075,-0.43212837,0.15306608,0.015397782,-0.47170094,0.35400537,0.12953316,-0.021541135,-0.48617366,0.06924777,0.1792936,-0.11107598,0.11527063,0.59151655,-0.40303913,0.02585062,0.0653568,0.830386,-0.3280591,-0.10530964,0.57037824,1.1440991,0.79438835,0.07333947,1.0402391,0.2399745,-0.20731728,-0.029676054,-0.29423764,-0.9638732,0.19461921,0.35166496,0.14804076,0.3472405,0.16289215,-0.009742941,0.4823548,-0.20709983,-0.08086804,-0.13833098,0.36076418,-0.03953505,-0.2748981,-0.1802272,-0.1009218,0.089345016,0.051890977,0.22662939,0.3531239,-0.13837942,0.39800724,0.12801717,1.4563278,-0.045461852,0.06824656,0.1749306,0.517311,0.27804935,0.07084932,0.05043993,0.7536518,0.33770496,-0.010531281,-0.68561935,0.14358003,-0.27767918,-0.4932774,-0.13312893,-0.34051746,-0.19698794,-0.017821701,-0.2732993,-0.19117144,-0.08149327,-0.30101386,0.35914865,-2.7978675,0.019538967,-0.17542256,0.24349962,-0.052998006,-0.12957712,-0.025977036,-0.42864418,0.57144797,0.49675712,0.4219353,-0.4393246,0.51288843,0.7208436,-0.3285534,-0.07235471,-0.53852355,-0.1567734,-0.09194488,0.48956257,-0.10756911,-0.20825426,0.0689237,0.06831833,0.4842484,0.04078865,0.17597353,0.32054114,0.6021328,-0.13587764,0.33074233,-0.11149148,0.58806187,-0.119358905,-0.08099691,0.1692735,-0.37949356,0.44312865,-0.3957804,0.10861135,0.46325678,-0.22356436,-0.7322704,-0.21385661,0.06425988,1.0077192,-0.37986594,-0.5815765,0.34930712,-0.26148438,-0.18203616,-0.14850186,0.5318796,-0.21240173,-0.18864986,-0.61843354,-0.017833821,-0.25687006,0.106231384,0.0030090862,0.12921445,-0.4615275,0.75169885,0.04146817,0.7561466,0.36084896,0.10190284,-0.2079055,-0.2810921,0.07820722,0.5452064,0.321734,0.11045466,-0.34578535,-0.22536813,0.044041682,-0.21786198,0.058216807,0.53306174,0.59964997,-0.063674726,0.12701885,0.20869902,-0.28709435,-0.11487006,-0.32958603,-0.33964822,-0.096807756,0.10716132,0.37927303,0.693075,-0.1733613,0.38182217,0.19174193,0.32666588,-0.35220656,-0.45143372,0.46563217,0.66638213,-0.17328933,-0.15449367,0.60751826,0.4671087,-0.14725685,0.4756334,-0.6166156,-0.17036687,0.5367136,-0.23566937,-0.45267287,0.15496273,-0.28527465,-0.06488281,-0.7988946,0.24725571,-0.18262057,-0.6176439,-0.7023152,-0.1662267,-3.0193253,-0.020656396,-0.45823678,-0.20388296,-0.389888,-0.00295814,0.19227873,-0.48316702,-0.5191762,0.12779021,0.37690115,0.45070362,-0.13922592,0.03924322,-0.30357417,-0.19747797,-0.0562041,0.26067382,-0.15862694,0.14759292,-0.056187768,-0.4368577,-0.0044083,-0.081470355,-0.31996113,-0.035314284,-0.21817853,-0.06920241,0.043766025,-0.38672358,-0.116345815,0.7771265,-0.48804238,-0.10703675,-0.25679448,0.09017281,-0.116957135,0.27303356,0.00064912863,0.11159021,0.016861144,-0.015634581,0.09138928,-0.42190203,0.291404,-0.089705266,0.45759198,0.36586234,0.030452082,-0.15496643,0.5919797,0.469525,0.057605233,0.822905,0.3660604,-0.24655928,0.36044434,-0.3079764,-0.10488885,-0.6358303,-0.4284367,0.018078608,-0.37794098,-0.6070324,-0.16993068,-0.5165774,-0.85410655,0.3720956,0.06829781,-0.015146285,-0.02153259,0.3976719,0.39132696,0.038401235,0.06607348,-0.06703472,-0.23012137,-0.41233808,-0.13624422,-0.7798895,-0.35647175,0.16218092,0.9564404,-0.2999421,-0.33239597,0.10679563,-0.44884667,-0.0076745087,0.1753444,0.25948453,0.33691978,0.27108094,0.18891081,-0.6116692,0.65762436,-0.07986969,-0.026211854,-0.68811464,-0.1630442,0.43573228,-0.83546066,0.40105072,0.558238,-0.08560588,0.10211507,-0.7025115,-0.2275466,0.15287575,-0.17119971,0.41288307,0.21311192,-0.83399194,0.52766484,0.25380033,-0.110124946,-0.67687273,0.30018595,-0.24416174,-0.22676754,0.19870612,0.28124925,0.12426204,-0.03979615,-0.21231662,0.2525653,-0.2912504,0.36059904,0.099115714,-0.20718868,0.47989056,-0.048109863,-0.01493276,-0.8804775,0.028324971,-0.4262354,-0.08668627,0.38974735,0.14196567,0.30891237,-0.02128378,0.14423497,0.448796,-0.34342322,0.2632503,-0.29991955,-0.29787764,0.4690493,0.45015833,0.28486001,-0.41531911,0.60708016,-0.12948933,-0.16313548,0.21858966,0.075752445,0.4791067,0.07772623,0.43693304,0.055253167,-0.27704787,0.17382307,1.1071099,0.28489545,0.37623432,0.19593121,-0.13363573,0.46489996,-0.0043629683,0.06776574,-0.07349483,-0.4867685,-0.032462854,-0.07696949,0.25421903,0.42858785,0.21685186,0.46527913,-0.11563439,-0.07647399,0.10184089,0.24525563,0.287705,-0.7088297,0.44617623,0.2636141,0.63850725,0.62993205,0.1174363,0.14909792,0.5429072,-0.19739921,0.069366924,0.34916,0.097604886,-0.4794738,0.3831019,-0.59432757,0.4399162,-0.19804123,-0.053992808,0.3394471,0.047655802,0.44361755,0.86522853,-0.18959716,-0.0018970221,0.12389754,-0.27713522,0.09141111,-0.15180232,-0.11712862,-0.28404504,-0.3709726,0.4402664,0.5311957,0.34366164,-0.06302036,-0.038558695,0.27747077,0.04551712,0.23188855,-0.009649164,0.044100374,-0.07529458,-0.4166741,-0.2980053,0.47242537,-0.08783162,0.019573543,-0.09039472,-0.32910213,0.34421656,-0.27802375,-0.069691785,-0.0832986,-0.52708954,0.17038839,-0.11293013,-0.8879808,0.60730875,0.12462049,0.3367373,0.21524274,-0.01810311,-0.18386804,0.15119238,0.020387696,0.73780155,-0.23470439,-0.07733758,-0.3273775,-0.28722256,0.28924513,-0.3653571,-0.15432207,-0.15976523,0.063908875,-0.6206721,0.37973925,-0.33833724,-0.2628863,-0.09707825,-0.37814644,-0.028263075,0.39950174,-0.19624083,-0.25333217,0.11264382,-0.13213202,-0.16999663,-0.26624218,-0.38048792,0.053957354,-0.24227038,0.019359767,-0.2623421,-0.16234623,-0.021592498,0.27528644,-0.11110679,-0.032870818,0.2817022,0.17110617,-0.3141826,-0.2971027,0.22816499,0.5895415,0.02053849,0.06580356,-0.23611781,-0.43717474,-0.36065882,0.24134925,-0.18189017,0.34473655,0.28951007,-0.51271117,0.79746914,0.02916801,0.8747245,0.059897173,-0.41629162,0.25358638,0.7018139,0.26372203,0.19685592,-0.26510802,0.8808121,0.61925995,-0.26031324,-0.10152803,-0.49307474,-0.0947119,0.4275753,-0.27534404,-0.16526015,-0.002747689,-0.69894695,-0.14796713,0.3379789,0.05227836,0.051121067,-0.17240511,0.040078063,-0.040465888,0.42781025,0.2582393,-0.5764297,-0.24310994,0.2738035,-0.09419594,0.06819541,0.15628919,-0.49142244,0.31776476,-0.40376732,0.016513724,-0.4295484,0.008379638,-0.08819103,-0.035708904,0.15053026,-0.038152665,0.20468901,-0.24592051,-0.40849113,-0.029315531,0.45793253,0.23617052,0.49764222,0.60955924,-0.22296046,0.035786808,-0.09710632,0.5445219,1.1140705,-0.26414433,-0.15540065,0.4534488,-0.42407247,-0.6720889,0.066081874,-0.5490922,-0.0395695,-0.102227405,-0.51783115,-0.3834832,0.27015597,0.06699658,-0.3154993,0.086362734,-0.55747837,-0.21162836,0.15943919,-0.36966977,-0.24510863,-0.29876238,-0.16689089,1.0046381,-0.45212513,-0.2860053,-0.017509809,0.26408276,-0.28993973,-0.56516486,0.21272898,-0.32204765,0.40276363,0.18754579,-0.4101704,-0.0066066766,0.13980721,-0.43397978,0.22185217,0.3777585,-0.35925236,-0.028890137,-0.39374566,0.12137167,0.8055844,-0.09121263,0.09237993,-0.2786843,-0.5054094,-0.80347747,-0.29623923,0.2575295,0.0505797,0.00023022294,-0.5741872,0.18593721,-0.06255277,-0.04305576,-0.099724755,-0.5886083,0.5501653,0.13624847,0.3619387,-0.16623732,-1.082595,0.014993966,0.038755033,-0.37213463,-0.5887355,0.6117373,-0.28705975,0.90520924,0.13364114,0.098901436,0.09472398,-0.53403413,0.5050784,-0.48682073,-0.37288776,-0.60757476,0.061397623 +975,0.4087749,-0.22904398,-0.44175628,-0.13983645,-0.038673755,0.14900889,-0.17578131,0.27197078,0.21551809,-0.3298087,0.036498364,-0.2644142,0.097872205,0.6099893,-0.04113434,-0.72457445,0.04320344,0.088028856,-0.6362991,0.53754437,-0.5382833,0.45543632,-0.03432191,0.2521385,0.06794907,0.30964443,0.31681558,-0.041815527,0.07749915,0.13756618,-0.11783478,0.24167247,-0.4673065,0.04797089,0.054405928,-0.23809052,0.03960739,-0.2559386,-0.45038864,-0.5944964,0.4574247,-0.8289807,0.35206586,0.00807209,-0.30074602,0.2863072,-0.008788959,0.2819266,-0.47201544,0.1344154,0.14555407,0.08716265,0.123650424,-0.2509284,-0.28091842,-0.4429565,-0.4181711,0.053115495,-0.5520106,-0.32052284,-0.3527263,-0.0043530692,-0.2776529,0.11242846,0.07846756,0.12197009,-0.45283964,-0.15960671,0.318961,-0.14755912,0.24555609,-0.41610622,-0.017730366,-0.113383666,0.19145839,-0.18431863,-0.068165585,0.32766178,0.31370527,0.6165856,-0.1160253,-0.12531206,-0.23997055,-0.022902194,0.16649812,0.5109056,-0.13365313,-0.41968346,-0.21924217,-0.0002698342,-0.015119372,0.09997352,0.09552849,-0.40017214,-0.13080646,-0.004166009,-0.2560506,0.2077119,0.41818315,-0.539192,-0.34547082,0.44277066,0.53674287,0.14296831,-0.068668954,0.16736993,0.08621917,-0.38912874,-0.21949701,0.16251026,-0.13207386,0.45229033,-0.04679559,0.17844509,0.7311372,-0.10740985,0.25275466,-0.29298756,-0.07756364,-0.17360494,-0.19463377,-0.09895641,-0.0035913626,-0.39495018,0.07886494,-0.07293519,0.711264,0.3980743,-0.6977326,0.4991564,-0.4110047,0.19522569,-0.23160455,0.5112735,0.70379746,0.19998795,0.09007803,0.7362678,-0.6899211,0.22171097,-0.10604331,-0.33461717,0.21646541,-0.21689647,-0.12813509,-0.46280432,0.2256252,0.042799808,-0.091650866,0.08531426,0.36860764,-0.47850454,-0.09636062,0.09218972,0.85673946,-0.3927541,0.13312714,0.4291537,0.9328537,0.79041004,-0.039079923,1.1780131,0.52135116,-0.2867154,0.32867062,-0.31927332,-0.8919671,0.19507305,0.46688753,0.34303847,0.34849584,0.14301893,-0.071170345,0.33532298,-0.28589243,0.089712635,-0.22670938,0.23695531,-0.062942185,-0.09886886,-0.29954544,-0.098674245,-0.06845915,-0.082848474,0.061893653,0.23552631,-0.1755394,0.16357186,-0.025255863,2.1433313,-0.069530085,0.14296539,-0.032689225,0.522812,0.3871399,-0.19691725,-0.1433881,0.40162858,0.461903,-0.00016543866,-0.6409866,0.13990976,-0.2327914,-0.4494639,-0.19547231,-0.37690264,0.12944376,0.04432681,-0.43240547,-0.0337217,0.105981596,-0.16029647,0.4046292,-2.6968586,-0.24179225,-0.1553558,0.34802607,-0.4400913,-0.25029817,-0.26381722,-0.2975528,0.36360237,0.42874068,0.35136604,-0.5899354,0.26747885,0.3865063,-0.22288388,-0.08525203,-0.4624693,-0.08133759,-0.02421943,0.3889908,-0.14928149,-0.05656739,-0.107711144,0.43260768,0.24614035,-0.0025804916,0.08202468,0.19580337,0.38153654,0.23263402,0.3781971,-0.08699172,0.474853,-0.20725074,-0.08916044,0.38137683,-0.24432285,0.29629248,-0.026865752,0.18076853,0.308132,-0.52780414,-0.8637699,-0.5661508,-0.33607417,1.0394187,-0.48138365,-0.40362296,0.3561582,-0.0460766,-0.10707422,-0.03864516,0.37405765,-0.053149324,-0.15691002,-0.7767811,0.12587072,0.0057750545,0.22895975,0.104725614,-0.052703302,-0.20777453,0.589686,-0.0270528,0.4999141,0.17789786,0.12284245,-0.0062810103,-0.49081337,0.032131378,0.92936146,0.2752846,0.14932175,-0.2322416,-0.21742915,-0.37056336,-0.20350914,0.018449286,0.2800114,0.8086423,0.07216406,0.054948073,0.14571117,-0.097411595,-0.023599874,-0.13108633,-0.29174784,0.10196145,-0.05685656,0.5747969,0.47726172,-0.24651732,0.40657315,-0.0849439,0.1379727,-0.219415,-0.5325397,0.62236077,0.89682317,-0.097949974,-0.16890712,0.4748791,0.2923197,-0.49356046,0.45219025,-0.7691447,-0.27440515,0.5325862,-0.19752179,-0.20794494,0.2894078,-0.32097182,0.036553454,-0.88150024,0.23839286,-0.048574354,-0.09895756,-0.42102763,-0.20236264,-3.9476228,0.12724473,-0.112598605,-0.22914465,-0.01914099,0.10278257,0.44779283,-0.4777389,-0.54675865,0.19856307,0.023474602,0.6092905,0.07757078,0.15084948,-0.31707278,-0.04332478,-0.3996769,0.07693798,0.011815739,0.3504605,0.11143355,-0.4407673,-0.13551484,-0.20067532,-0.28988025,0.10821117,-0.56069815,-0.49338427,-0.28293973,-0.49408022,-0.07620538,0.6035427,-0.18571559,0.01940697,-0.19776887,-0.0658355,-0.26322645,0.24079694,0.33321652,0.12829922,0.0026431403,0.028552098,-0.19031286,-0.4151774,0.2576014,0.10810096,0.17168468,0.21646087,-0.092480294,-0.07226661,0.51229304,0.50833756,-0.08329894,0.5269031,0.4606734,-0.11650049,0.35884288,-0.33815295,-0.1497495,-0.4063149,-0.40612087,-0.37207383,-0.32094017,-0.5839612,-0.22235708,-0.36386314,-0.6853179,0.42924914,-0.018220885,0.21403077,0.05184611,0.012773291,0.37965205,-0.11072119,0.020946454,0.0026500304,-0.16634029,-0.583278,-0.3146291,-0.52859324,-0.4341087,0.5770019,0.74018425,-0.188226,-0.09927518,-0.102321126,-0.19764659,-0.08447062,-0.14456327,0.13994072,0.3434995,0.23501904,-0.0057039578,-0.6618559,0.57952416,-0.102359615,-0.16788967,-0.66331476,0.04240296,0.49551374,-0.6111914,0.49962905,0.19833134,0.13356961,0.108814865,-0.5131633,-0.2865483,0.121026285,-0.31684712,0.30516356,0.08621963,-0.7935003,0.42025247,0.36817744,-0.3363003,-0.6359913,0.4989057,0.062135782,-0.29579982,-0.005176838,0.20454058,0.07220398,0.067675866,-0.3611213,0.2752016,-0.5504468,0.16234857,0.38463885,-0.0032382766,0.48535767,-0.2091931,-0.18303034,-0.48888168,-0.08786637,-0.44389126,-0.19643511,0.15830915,0.03936646,0.10450796,0.08307055,0.03720242,0.48388252,-0.33521852,0.12347977,0.07353062,-0.24255511,0.38995764,0.31515417,0.39580122,-0.38644817,0.52701837,-0.121307276,-0.050901175,0.16425762,0.15171047,0.5006129,0.3347746,0.2535754,-0.01889108,-0.12625259,0.312523,0.97178334,0.16723728,0.33308294,0.078007124,-0.3161709,0.3068691,0.31516713,-0.086098716,0.11477332,-0.24182819,-0.04110626,0.069348216,0.24280366,0.46104705,0.23862979,0.40471998,-0.19049732,-0.36518365,0.23065752,0.12530084,-0.11889755,-0.90151304,0.15002725,0.16077217,0.6391335,0.4380024,-0.055915017,0.033225276,0.49800733,-0.14535974,0.12024256,0.23851411,-0.3615327,-0.62432206,0.4671251,-0.5079142,0.39153254,-0.023468876,-0.0009250204,0.17847608,0.24584867,0.4046981,0.75146025,-0.04389962,0.039827537,0.0040107574,-0.33971536,0.0862892,-0.36998957,-0.044281904,-0.39174265,-0.33844355,0.41398317,0.49829295,0.14195411,-0.17130886,0.017413475,-0.061720897,-0.06903253,-0.016567957,-0.0014236092,0.0141538065,-0.0003452162,-0.63300234,-0.5168182,0.5638112,0.07525524,0.044418987,-0.13062903,-0.19271101,0.3446124,-0.21716523,-0.04626796,-0.00072878995,-0.72793096,0.033237617,-0.3160811,-0.36007226,0.39518562,-0.063265614,0.30604535,0.1818902,-0.05683732,-0.41383797,0.50091517,0.07256092,0.7930256,-0.13918298,-0.26952678,-0.5729501,0.074995175,0.23256254,-0.2504614,0.04505384,-0.4043844,0.024563653,-0.61480993,0.41236985,-0.03285829,-0.24132726,0.2599451,-0.18480536,0.11591778,0.5998395,-0.17364769,-0.09635391,-0.0979601,-0.10681146,-0.40819848,-0.13242024,-0.20373863,0.1575245,0.18927626,-0.052966464,-0.04569535,-0.02779053,0.016771387,0.5378242,0.07393408,0.28715655,0.35012484,0.17406763,-0.1908911,-0.047789223,0.3108804,0.38615724,0.044112835,-0.014947414,-0.15827225,-0.5123835,-0.33340946,0.14078365,-0.29930764,0.26420525,0.028665576,-0.49447364,0.5788107,0.19481274,0.9313743,-0.056941807,-0.2707048,0.13851628,0.43515775,0.083749995,-0.00083635055,-0.39619097,0.73559123,0.6998424,-0.018737268,-0.2111371,-0.14072233,-0.329133,0.17187183,-0.31468195,-0.05868918,0.04485691,-0.75577897,-0.3552694,0.22478408,0.23822525,0.1586017,0.0077036787,0.14632784,-0.045786526,0.13516359,0.1999065,-0.5506264,-0.20167576,0.2307918,0.26304936,0.06535337,0.123793945,-0.40518913,0.46636054,-0.5749727,-0.023280596,-0.3208209,0.08687093,-0.04868504,-0.33697805,0.14414898,-0.0031085291,0.40402335,-0.2812477,-0.42738324,-0.26057255,0.53542405,0.12997997,0.20843436,0.5193536,-0.27349344,0.21977672,0.02052327,0.51744664,1.0492976,-0.16035,0.05459078,0.37461615,-0.35591373,-0.73955536,0.2608952,-0.14966129,0.37075037,-0.100078546,-0.23078531,-0.48066732,0.37140945,0.1160719,-0.015637506,0.1568866,-0.48801824,-0.31973192,0.20576063,-0.22435686,-0.3702921,-0.36862957,0.13047522,0.69396025,-0.38491747,-0.074879475,0.32108566,0.32260847,-0.2891202,-0.64314884,-0.10136898,-0.35703278,0.27598447,0.20473905,-0.18828265,0.065336876,0.07443203,-0.3502352,0.20261791,0.18498723,-0.4283403,0.06353277,-0.27206215,-0.012932336,1.0562031,-0.1267526,-0.16073951,-0.8467057,-0.46472454,-0.98560447,-0.45811862,0.7640251,0.19804677,0.15043591,-0.37977973,0.08012681,-0.02395571,0.20572135,0.05638667,-0.4087917,0.47704232,0.0059770485,0.36928767,-0.055544693,-0.7859222,-0.05089558,0.06769652,-0.38845035,-0.6848595,0.61488223,-0.18151544,0.92424786,0.058512203,-0.020483602,0.3313375,-0.5199215,0.057707954,-0.45104286,-0.2715828,-0.7051353,0.24770196 +976,0.40458643,-0.17419901,-0.5104056,-0.07468733,-0.3922627,0.055930052,-0.21506432,0.25097662,0.19341624,-0.14131367,-0.21373135,-0.12379513,0.011335788,0.24960832,-0.07017095,-0.55049795,-0.033804122,0.25405884,-0.77114576,0.5709614,-0.47863775,0.27898243,0.014170454,0.4567627,0.19713025,0.365386,-0.059238028,0.010090118,-0.13765426,0.2172468,-0.056622967,0.3164723,-0.454643,0.12647699,-0.14454667,-0.1183787,0.04228851,-0.32238743,-0.26419064,-0.7792441,0.07253569,-0.7249326,0.5462793,-0.24946684,-0.21600693,-0.17634718,0.13563532,0.43760294,-0.36555022,-0.01439754,0.23804502,-0.25187638,-0.26386976,-0.20930171,0.014383014,-0.33617675,-0.4045419,0.011556601,-0.5871892,-0.15076637,-0.15827692,0.20259112,-0.26853052,0.06583821,0.0047761817,0.371959,-0.34668803,0.095284216,0.2970512,-0.17060721,0.063258745,-0.51195115,0.021449082,-0.10776021,0.45091796,0.07633125,-0.30458355,0.3533544,0.26080298,0.40928465,0.21682864,-0.22466528,-0.06598393,-0.16553892,0.10185984,0.38846716,-0.1402127,-0.093078196,-0.25135806,0.026209971,0.42116114,0.2306251,0.007081642,-0.24873464,-0.100023046,-0.11615818,-0.13597545,0.25595376,0.4912365,-0.21172257,-0.23012088,0.27156028,0.6367386,0.24784867,-0.21762212,0.15684964,-0.06740974,-0.42603755,-0.100571744,0.06060636,-0.03916516,0.42196748,-0.09142999,0.0010652192,0.81552494,-0.10665643,-0.12938794,-0.08258408,0.08201355,-0.050028574,-0.36247748,-0.17573169,0.059462167,-0.48109138,-0.027289342,-0.098409034,0.6155618,0.18440905,-0.6406088,0.31164268,-0.48457235,0.16735594,0.039799735,0.63287747,0.7235733,0.46910712,0.379246,0.7800265,-0.26640183,0.24690011,-0.014740817,-0.2597285,0.05791371,-0.23277766,0.06946101,-0.48625958,0.24366795,-0.33698902,-0.14794873,0.040260185,0.38311312,-0.6936083,-0.046943817,0.0749543,0.64496934,-0.3523041,-0.1123785,0.66366404,0.9847561,0.77658963,-0.06275169,1.1477491,0.4930935,-0.14534323,0.19999424,-0.39153123,-0.65014774,0.13722481,0.20804305,0.035106745,0.32626757,0.07795192,-0.17192559,0.4447076,-0.4345379,0.0042296015,-0.059041698,0.29766583,0.097396724,0.13091893,-0.42326272,-0.17830026,0.06912115,-0.015555143,0.17458577,0.23925602,-0.41025072,0.380972,0.05047562,1.5227926,-0.0889694,-0.025068337,0.13153808,0.44374028,0.19054963,-0.20729479,-0.17698891,0.5730194,0.4135814,-0.094069816,-0.57680523,0.19050135,-0.2561793,-0.37422758,-0.11853921,-0.35265088,-0.06705745,0.0018423857,-0.5082742,-0.24897073,0.010110031,-0.29517466,0.4443235,-2.627445,-0.31251526,-0.10074283,0.48366952,-0.26418248,-0.23568742,-0.21301404,-0.50651056,0.060219057,0.28886583,0.3190058,-0.5376987,0.518506,0.3412837,-0.48017666,-0.22909394,-0.63533235,-0.06032068,-0.046841152,0.46683794,-0.02008653,-0.060718972,-0.25604388,-0.012139299,0.5575724,-0.14386497,0.16900091,0.58844525,0.2376093,0.18939817,0.47928923,0.06578161,0.5978659,-0.22333933,-0.2479135,0.49509785,-0.26974374,0.22439438,-0.033932798,0.04016865,0.58501387,-0.38052034,-0.7672965,-0.6324849,-0.23400576,1.0597283,-0.50454295,-0.46740454,0.18620443,-0.22706166,-0.14962511,0.10129064,0.54208875,-0.14974567,0.017724598,-0.75210893,0.117089845,0.10945314,0.35095242,0.051143516,-0.011355007,-0.23214848,0.69331133,-0.2545632,0.6601219,0.16899726,0.26561365,-0.02175552,-0.42741904,0.15627804,0.844393,0.29355073,-0.04317917,-0.14900672,-0.30111712,-0.09056887,-0.20294675,-0.01787732,0.4631925,0.7133862,0.030283375,0.15882581,0.2709368,-0.091819435,0.01762737,-0.19703083,-0.23353113,0.013051218,0.20058858,0.5059409,0.67101836,-0.1835267,0.4467577,-0.32130304,0.3919606,0.020575186,-0.5918839,0.5742568,0.61752826,-0.25428095,-0.13547814,0.4503138,0.5487773,-0.35513425,0.42148218,-0.7198319,-0.23422042,0.7119212,-0.18345468,-0.34427086,0.20577554,-0.22728872,0.25662422,-0.70723605,0.33322537,-0.21113974,-0.5411012,-0.45577148,0.010177977,-2.6769886,0.09703766,-0.067721345,-0.14854969,-0.18848006,-0.10616109,0.20003307,-0.54600805,-0.45991915,0.10289491,0.18015559,0.4986187,-0.002702776,0.052727364,-0.30307433,-0.21750414,-0.12612979,0.13302027,0.13475825,0.33388507,-0.17238095,-0.48463833,-0.057288527,-0.14042377,-0.4840072,0.10737646,-0.68769246,-0.45836756,-0.13838577,-0.60027266,-0.17349555,0.61882347,-0.3665975,-0.031883836,-0.34749335,0.029746648,-0.11557064,0.13485773,0.11723194,0.21650934,0.18354179,-0.040641386,-0.056775928,-0.41045952,0.27743685,0.049823433,0.13294238,0.1697672,0.0976519,0.16954212,0.428648,0.56555414,-0.32588178,1.0728962,0.40585917,-0.08741456,0.25944206,-0.25751063,-0.25718355,-0.42897606,-0.23335671,-0.066062294,-0.37994888,-0.36345613,0.02972715,-0.3855416,-0.7969599,0.58644533,-0.18023737,0.28046048,-0.0036301857,0.25996786,0.53696674,-0.22966067,-0.024161935,-0.23691791,-0.24378738,-0.48209152,-0.38774803,-0.58649004,-0.5423291,0.10952802,1.1991969,-0.33124584,0.030357193,-0.083285525,-0.4470078,-0.054032996,0.03283756,0.10034708,0.39475897,0.5612613,-0.19070849,-0.5974945,0.21964024,-0.16871192,-0.09242617,-0.44296682,0.10333911,0.60135025,-0.78232193,0.61136633,0.17622986,0.18780124,0.0014058808,-0.46049014,-0.24027434,-0.014412957,-0.22902624,0.5723474,0.1570338,-0.69561005,0.45427284,0.111400545,-0.36483768,-0.7806063,0.15561637,-0.18811771,-0.24392614,0.03454085,0.4095508,-0.10430998,-0.026624562,-0.32621652,0.058581736,-0.32679018,0.1968002,0.34836793,-0.23696817,0.27264905,-0.1646975,-0.21102312,-0.6731906,-0.114505775,-0.38349262,-0.3093984,0.23665299,-0.0013496157,-0.07296077,0.006224867,0.15558267,0.37410697,-0.31938973,0.0943169,-0.07117275,-0.2885414,0.179728,0.42157254,0.3912934,-0.395728,0.4311905,0.068234034,-0.22416277,-0.06884764,0.004710113,0.3905487,-0.054179102,0.2671963,-0.17606173,-0.12629405,0.31416172,0.7471633,0.09557504,0.5720184,0.04499889,-0.26712295,0.27360225,0.005096304,0.17956227,-0.05969921,-0.3959753,0.053282946,-0.0027029638,0.2359528,0.53556436,0.4389238,0.3653567,0.08039072,-0.28260124,0.013153949,0.11122909,-0.07879852,-1.20699,0.22975639,0.17846969,0.7954195,0.2944079,0.11294456,-0.123995975,0.6928325,-0.1907582,0.06345016,0.36039612,-0.047866765,-0.4050363,0.69348526,-0.63506675,0.45923492,-0.21924555,0.0067363004,0.31056973,0.1793509,0.3791198,0.81184536,-0.20007262,-0.027628005,0.038451653,-0.027744524,0.07749993,-0.33195668,-0.006782361,-0.44830707,-0.40353984,0.69785064,0.4280461,0.34409022,-0.34367824,-0.033808284,0.035784993,-0.2073447,0.20413662,-0.016649147,0.09409955,0.12921943,-0.5099495,-0.1964422,0.4878168,-0.05868396,0.025102276,0.026659608,-0.2628975,0.003987244,-0.291668,0.0030720935,-0.08051161,-0.6516662,-0.18318108,-0.13438518,-0.5165858,0.3846975,-0.09452915,0.11380316,0.19702405,-0.023849964,-0.36105067,0.40602997,0.031567603,0.92735153,0.097738564,-0.27862334,-0.29248798,0.0802237,0.35285613,-0.2406956,0.15213235,-0.3784462,0.039876718,-0.5232196,0.5195896,-0.1296787,-0.44545785,0.23013534,-0.21217403,-0.14153722,0.51695424,-0.10749031,-0.15759282,-0.052526608,-0.17985469,-0.38759893,-0.004839308,-0.3247605,0.112647444,0.22822714,-0.13720764,-0.08014113,-0.17410122,0.012072996,0.65384036,0.14974296,0.41457605,0.2924246,-0.03098826,-0.18982881,0.18167503,0.20260668,0.46652532,0.1439532,-0.11145611,-0.35669434,-0.28023884,-0.16523738,0.21452124,-0.08588685,0.21063247,0.14900486,-0.3057257,0.97812754,0.008919749,1.1923429,-0.024911078,-0.25902003,0.13905539,0.5250463,-0.08165563,0.16431366,-0.43756944,0.7583295,0.4555584,-0.031719595,-0.01161677,-0.3414314,-0.26932502,0.3873115,-0.34346128,-0.008194349,-0.13238811,-0.519621,-0.54165775,0.26236415,0.1834375,0.16591038,-0.021805318,9.1724534e-05,0.050408386,-0.06551722,0.21309763,-0.5193446,-0.12315593,0.22514355,0.1760241,-0.12371141,0.14539589,-0.3843389,0.56267494,-0.66075975,0.1696489,-0.3663748,0.11586101,-0.16202687,-0.2977003,0.08330883,0.033305842,0.36963338,-0.40057647,-0.20437801,-0.25657716,0.60299134,-0.059295688,0.109038144,0.6446816,-0.30797723,-0.0119826235,0.13770762,0.48861235,1.0734098,-0.38134745,0.10901963,0.27340922,-0.30381468,-0.56158483,0.3970968,-0.20463285,-0.062387984,-0.088696174,-0.4194617,-0.42002925,0.30300564,0.13419081,0.056064513,-0.07762665,-0.5388504,-0.052019957,0.41098562,-0.2488582,-0.089351594,-0.10595894,0.35119587,0.73141235,-0.17291169,-0.45141268,-0.019418793,0.2541513,-0.32764944,-0.38619873,-0.13243523,-0.3211841,0.396628,0.0634295,-0.26179668,-0.08747211,0.15519132,-0.42289305,-0.015049394,0.21946713,-0.33830452,0.11508967,-0.13138689,0.053628493,0.9574933,-0.18830939,0.033525277,-0.6369464,-0.5298775,-0.9472327,-0.33614337,0.24757595,0.22579373,-0.10180497,-0.41352394,0.047895323,-0.25009555,-0.20761465,0.18328775,-0.49436447,0.31104583,0.20870596,0.43205652,-0.31018314,-0.9093156,0.082990155,-0.01201271,-0.2222699,-0.6289703,0.5121398,-0.098668635,0.7956455,0.057926126,0.047759265,-0.025448779,-0.31881595,0.19914612,-0.2741776,-0.05022216,-0.79577184,-0.010178196 +977,0.3982685,-0.144484,-0.40462664,-0.08448599,-0.4926092,0.028954139,-0.25145453,0.349569,0.11449406,-0.53198516,-0.22137976,-0.10910788,-0.18525033,0.22079895,-0.34982687,-0.6055648,-0.14069968,0.14688972,-0.3768922,0.6502996,-0.3142768,0.3253451,-0.04142259,0.3391022,0.32957616,0.25907287,0.06930339,0.063253514,-0.25182492,-0.2409337,-0.018674381,0.37465635,-0.5782726,0.4219125,-0.23826806,-0.4175184,-0.034039076,-0.19361769,-0.26756495,-0.7370645,0.27511603,-0.69879663,0.3705174,0.06011087,-0.29911548,0.28210405,0.22096042,0.21887058,-0.11359766,-0.06868376,0.29481634,-0.35639578,-0.16164355,-0.29879275,-0.10217042,-0.51596946,-0.6170228,-0.07689953,-0.6107328,-0.07542931,-0.37942708,0.3169982,-0.20414338,-0.23343998,0.022347527,0.47504872,-0.5826461,0.09995034,-0.029192882,-0.03219801,0.10608136,-0.7746698,-0.3156779,-0.083432205,0.06580573,-0.233758,-0.19729635,0.49827015,0.19450471,0.27055213,0.08637221,-0.22636978,-0.44448853,-0.1879639,0.31497034,0.30359983,-0.112167746,-0.30341938,-0.11447802,-0.17771132,0.2977962,0.14187036,0.2574656,-0.2548906,-0.049948607,-0.028585505,-0.04453116,0.51789916,0.5298959,-0.15736358,-0.12776023,0.3523182,0.541096,0.28451476,-0.25977728,-0.08943978,-0.077843584,-0.46280453,-0.20399816,0.061066907,-0.2307673,0.43738303,-0.22234458,0.09807921,0.62035865,-0.31610888,-0.07810835,0.3478131,0.13774358,0.08201202,-0.2086811,-0.39820766,0.37700266,-0.5547291,0.20913388,-0.22266912,0.62380713,-0.04628497,-0.6862524,0.22002862,-0.5167317,0.05099032,-0.04808576,0.5424305,0.65006727,0.5615116,0.19379391,0.65773416,-0.2499744,-0.03502263,-0.08613226,-0.08397394,-0.057153497,-0.29407114,-0.09206584,-0.49789917,0.02132097,-0.19020958,0.03336982,-0.017569019,0.7012221,-0.43695176,-0.1599413,0.26191205,0.7501133,-0.3736814,-0.059329048,0.8366663,1.1839906,1.1521696,0.03442837,0.93942237,0.04101607,-0.20564705,-0.21849814,-0.14096712,-0.5939377,0.28687006,0.3010715,-0.048168946,0.23067354,0.09839142,0.1792949,0.3274296,-0.440826,-0.06587182,-0.12352446,0.4471677,0.13867375,-0.07471366,-0.42077655,-0.17224686,0.0771805,-0.0011639356,0.039969124,0.34628236,-0.22127305,0.39122778,0.26131588,1.082678,-0.11643241,-0.0010418018,0.12322856,0.34768158,0.16845815,-0.1457211,0.15971063,0.18672197,0.16218285,0.04488502,-0.48611337,0.114686266,-0.19908835,-0.8321183,-0.2069958,-0.36025164,-0.33101985,-0.14366342,-0.45627585,-0.3038827,-0.014962955,-0.38050738,0.31219217,-2.4355774,-0.034388423,-0.016990393,0.22841379,-0.081804276,-0.30726153,-0.05980174,-0.37123024,0.45776692,0.20812796,0.33682021,-0.5630576,0.417394,0.6118056,-0.6735743,-0.016349716,-0.4925416,-0.3159666,-0.074832,0.44327152,0.15214425,0.0855951,0.12104319,0.17903796,0.54171675,-0.1819704,0.2348998,0.38634166,0.26000646,-0.36056262,0.36149248,0.11781763,0.39723846,-0.37379107,-0.19898921,0.3372255,-0.45722115,0.18437554,-0.2942462,0.18314695,0.5483211,-0.35772425,-0.84287226,-0.63796055,-0.29373905,1.1228722,-0.12917025,-0.54805535,0.21485749,-0.40369284,-0.1710029,-0.08992615,0.43750325,-0.10817536,0.1688511,-0.79182756,-0.041621335,-0.1515601,0.18574938,0.024249554,-0.003345426,-0.49899042,0.83099186,0.013341739,0.55429834,0.2931491,0.18149099,-0.57822776,-0.36352095,0.17091869,0.8365958,0.53917867,0.11040933,-0.32189465,-0.22868973,-0.15300639,-0.05237641,0.18001264,0.542566,0.4733838,-0.06085515,0.19718422,0.32741806,-0.054545633,-0.024749829,-0.2562283,-0.2763103,-0.038993932,0.15652093,0.52636635,0.6312033,-0.06833305,0.3545316,-0.012247867,0.383421,-0.15706758,-0.42763025,0.44920903,1.1590827,-0.08395329,-0.2866181,0.6827376,0.63984853,-0.14648703,0.525966,-0.63288665,-0.4899334,0.39550576,-0.18360798,-0.4201036,0.036269557,-0.49258813,0.14904006,-0.8206959,0.42098823,-0.41791627,-0.6055518,-0.8326304,-0.24549879,-2.1507115,0.12420993,-0.2655476,-0.13425492,-0.26598656,-0.33160347,0.20240158,-0.6814617,-0.5734455,0.1661167,0.117700115,0.684308,-0.13049883,0.08212512,-0.1383795,-0.51040524,-0.12623206,0.3569171,0.11697386,0.32167965,-0.09142505,-0.50736785,0.053235196,-0.1385254,-0.3974511,-0.11452479,-0.44309482,-0.48272476,0.0328095,-0.48822066,-0.17418739,0.53612006,-0.33469242,0.0053141834,-0.2165827,-0.040204022,0.09810493,0.13627084,0.19586952,0.28877696,0.16543382,-0.03373834,0.061361782,-0.23268642,0.2115169,0.08438316,0.16269328,0.43194097,-0.24194965,0.22339122,0.52819467,0.62420595,-0.21132779,1.0438339,0.32349423,-0.17427908,0.2684884,-0.14526865,-0.40916008,-0.795933,-0.25346097,0.040765595,-0.37469977,-0.36129978,0.0354263,-0.3009188,-0.916755,0.61086863,0.08122668,0.27812394,-0.20851234,0.110214934,0.30797827,-0.22128274,-0.25918403,-0.20753017,-0.18817312,-0.417822,-0.5466865,-0.81357676,-0.51792204,-0.23361182,1.155337,-0.15976185,-0.09709411,0.33445215,-0.21558772,0.17556445,0.26550725,-0.04347234,-0.019722959,0.3854394,0.2032699,-0.6820021,0.58335763,0.07127387,0.025283856,-0.43342903,0.2849449,0.6485157,-0.51905113,0.5154149,0.38991496,0.109902315,-0.23624645,-0.64094484,-0.111760065,-0.016140314,-0.18552676,0.61188215,0.3395621,-0.71907365,0.42328006,0.30335748,-0.25728896,-0.71957695,0.6227581,-0.1199652,-0.20241387,-0.15646034,0.4511988,0.20456934,0.03419715,-0.09596373,0.37255877,-0.3731932,0.36203226,0.09708872,-0.09160115,0.26113158,-0.23472793,-0.26983938,-0.83368134,0.1721439,-0.41887042,-0.41956788,0.15012684,-0.060747106,0.010484687,0.39327848,0.1699424,0.38677788,-0.20200314,0.053490084,-0.26375473,-0.37427798,0.28153363,0.5384397,0.64453715,-0.2576165,0.60536736,0.0660855,-0.04172098,-0.0448756,0.121630095,0.39280522,0.050348155,0.486853,0.13749021,-0.05030604,0.10050028,0.90247923,0.33816406,0.44310322,0.044802666,-0.25044337,0.21136396,0.06625026,0.3518532,-0.17504126,-0.5175737,0.1353484,-0.22220026,0.08918308,0.44238764,-0.0025598684,0.36848724,-0.06747982,-0.23871626,0.040537395,0.28126758,0.067111164,-1.4513913,0.36176726,0.28322002,0.871182,0.6814263,0.007239278,0.13349614,0.7079172,-0.2788425,0.012770853,0.40178803,-0.014381996,-0.23251206,0.51878047,-0.7182458,0.3810434,-0.11832716,-0.02516017,-0.03105462,-0.1907359,0.43902925,0.6112978,-0.14614174,-0.06150627,0.09032164,-0.4724956,0.06730988,-0.24714242,0.30096486,-0.4544726,-0.28642857,0.8964587,0.6648811,0.3636142,-0.21211687,0.08933219,0.20213537,-0.21524341,0.24798134,0.0472114,-0.04878814,-0.1647119,-0.4868636,-0.0954872,0.601773,-0.24726054,0.16165991,0.23780721,-0.27725112,0.22335264,0.056925345,-0.08506694,0.07959293,-0.6611661,0.103202924,-0.1924359,-0.42775318,0.44448084,-0.15231654,0.07914587,0.2483388,0.09191673,-0.34547758,0.15281467,0.22851284,0.470442,0.29069492,-0.117985286,-0.112765945,0.02778819,0.07724414,-0.17843238,-0.07110008,-0.09813628,0.2539217,-0.62422466,0.3963186,-0.33001164,-0.27492836,0.110002674,-0.1653166,-0.075482845,0.4753786,0.04265295,-0.15401891,0.0013992072,-0.03007806,-0.18965976,-0.12770624,-0.26176873,0.3561462,0.03494156,-0.13497326,-0.29126447,-0.11097753,0.046540365,0.35570326,-0.07972662,0.36482152,0.29041627,-0.12309071,-0.52613705,-0.10828851,0.16722314,0.423899,-0.13783607,-0.0100233015,-0.049778588,-0.34685168,-0.38822445,0.4166327,-0.22045879,0.24451296,0.24245648,-0.26585186,0.8855133,-0.042435106,1.0373465,0.021319767,-0.47904435,0.18199134,0.4254546,-0.20311347,0.053123962,-0.18609516,0.888753,0.5292862,-0.12998515,-0.17798242,-0.4361821,0.13255304,0.1992569,-0.22607592,-0.1931444,-0.093634844,-0.7089659,-0.16176656,0.2479868,0.2886595,-0.025017397,-0.1981557,-0.13072017,0.3561971,0.165874,0.25045964,-0.61246663,-0.066555835,0.3545681,0.20653267,-0.020739028,0.09544577,-0.45293978,0.3608324,-0.628821,0.10193411,-0.2599172,0.08651734,-0.45888212,-0.24225079,0.2613673,0.043678515,0.2892966,-0.30495986,-0.33320275,-0.34456074,0.33228976,-0.035185926,0.07561218,0.4464992,-0.21043396,0.25710958,0.03251189,0.40875643,0.9112647,-0.3172551,-0.14819835,0.21394612,-0.45695952,-0.5050746,0.21326399,-0.51436913,0.023772478,0.061417803,-0.33208066,-0.56602824,0.13866755,0.253882,0.16966647,0.21531206,-0.76588184,-0.036783043,0.09618094,-0.38301584,-0.15473007,-0.033954754,-0.017965471,0.5422764,-0.2717894,-0.23581526,-0.058477297,0.32381397,-0.21272853,-0.5117774,0.15108699,-0.46871364,0.62097585,-0.112865366,-0.2972116,-0.13062558,0.18779704,-0.36181527,0.076869056,0.34014118,-0.27670112,0.059892796,-0.4460969,0.3334182,0.74475497,-0.1661674,0.2620285,-0.3279751,-0.48690546,-0.9072327,-0.16328256,0.14430949,0.34972423,-0.042940136,-0.74199295,0.07060905,-0.27849618,-0.18647838,0.06351026,-0.5168852,0.36103883,0.23108418,0.2834741,0.031380005,-0.75563306,0.15622021,0.14168283,-0.08929645,-0.3645702,0.5872861,-0.09143041,0.8605821,0.06355955,0.06450602,-0.05005261,-0.59248054,0.23303343,-0.14299701,-0.21241659,-0.49788058,-0.02789078 +978,0.51555395,-0.28385356,-0.50615996,-0.16052166,-0.090637445,-0.20424475,-0.15345901,0.76518816,0.32478857,-0.57692385,-0.14191695,0.05495231,0.0071867923,0.45390692,-0.20624612,-0.7133647,0.05149508,0.20841517,-0.4504554,0.35789463,-0.41579673,0.09332269,-0.13130236,0.56062263,0.34770724,0.06562649,0.09839359,-7.346543e-05,-0.24551186,-0.17565925,0.07557985,0.29648638,-0.5224097,0.1447547,-0.3726443,-0.4234932,-0.122289084,-0.658688,-0.46433118,-0.9559527,0.3960724,-0.73701876,0.64001584,-0.04643009,-0.286847,-0.10006833,0.4029682,0.25989068,-0.24545604,-0.10792455,0.16773094,-0.20110153,-0.21836501,-0.061217383,-0.36632988,-0.36227563,-0.7291083,0.083564766,-0.44229028,0.06317533,-0.12098077,0.24171089,-0.55207926,-0.055173956,-0.09230259,0.8593393,-0.30214024,-0.110987835,0.44023636,-0.273713,0.21937226,-0.77737516,-0.13014412,-0.091775365,0.16071974,-0.0127202,-0.33803943,0.4167739,0.20249623,0.5301149,0.07984144,-0.38271257,-0.41666594,-0.00080322137,-0.038809236,0.5181961,-0.30378515,-0.59070116,-0.17632762,0.044811673,0.34212705,0.33979732,0.07742122,-0.17662336,0.17276514,0.13117144,-0.23087949,0.8423242,0.7077779,-0.18847565,-0.014192984,0.2162815,0.3727585,0.2935804,-0.17632204,0.05641042,0.16862796,-0.6552853,-0.23655137,0.07148609,-0.239192,0.54810804,-0.14546567,0.24607314,0.7537867,-0.29287627,-0.007355888,0.20144968,0.26796493,0.12217125,-0.49743846,-0.49516508,0.3924349,-0.5789592,0.31139967,-0.2677721,0.7985142,0.17864734,-0.4392195,0.28825244,-0.53604925,0.20291534,-0.07168281,0.60262513,0.7629786,0.42906666,0.53848743,0.93232197,-0.4082017,0.02781214,0.03798813,-0.18861237,-0.017573453,-0.30328152,0.22316116,-0.3310037,-0.08720593,-0.10906705,0.017081304,0.13676123,0.36976144,-0.66384685,-0.33055574,0.15739413,1.0414214,-0.16630322,0.002618546,0.9057066,1.1353118,1.3065044,-0.09918747,1.2413585,0.11929097,-0.29044375,0.09366693,0.10149687,-0.7698906,0.34799206,0.24694914,-0.40479985,0.13049413,-0.044012602,-0.13200426,0.6720079,-0.71182615,-0.03994353,-0.12769407,0.24977177,0.17568482,0.0047275317,-0.5957787,-0.1571437,-0.15694569,-0.12515324,0.15816778,0.3196282,-0.31117308,0.49390328,-0.23054184,1.1870328,-0.130103,-0.003463447,0.096366055,0.5636449,0.19778539,-0.16923904,0.05718446,0.04191742,0.5077568,0.05645633,-0.5836446,-0.07647962,-0.4911769,-0.2601613,-0.10773595,-0.45431623,-0.11089563,-0.028040735,-0.371968,-0.39930332,-0.23184747,-0.30858988,0.22394957,-2.5941045,-0.24272646,-0.16180442,0.32934788,-0.34785035,-0.21379705,-0.19024134,-0.6118131,0.65087914,0.17603867,0.67323744,-0.5333601,0.3963853,0.47715986,-0.8280056,-0.05024012,-0.8156298,-0.14749868,-0.007568175,0.31842205,0.16106172,-0.3141025,0.022078648,-0.0426631,0.88449293,0.20030063,0.12604155,0.27812597,0.4644458,-0.3006415,0.50337297,-0.26597282,0.6024458,-0.7383819,-0.2050829,0.2355814,-0.6528211,0.05325693,-0.41379052,0.02993795,0.6405351,-0.5059614,-0.9909918,-0.7051063,-0.02456686,1.2269105,-0.11505943,-0.5974951,0.3272228,-0.5276886,-0.047905054,-0.03106562,0.8031722,0.08550165,-0.07306682,-0.6284994,-0.09198821,-0.15531994,0.044126544,-0.026201867,0.04120382,-0.30961326,0.6876413,-0.1061918,0.253571,0.27047274,0.26390895,-0.52952886,-0.33257055,0.021629186,1.111375,0.43951952,0.26837417,-0.20721349,-0.051411882,-0.42923605,-0.3491372,-0.177005,0.80905515,0.8205246,-0.21631923,0.14678352,0.4570738,0.024943752,0.1241848,-0.09681606,-0.6191923,-0.3471279,0.10243365,0.79644376,0.67586136,-0.0006311102,0.4941413,-0.055025853,0.30705255,-0.31267488,-0.2835306,0.5570477,1.0624156,-0.31562006,-0.2698851,0.86423564,0.36478862,-0.37252054,0.6739078,-0.54209155,-0.5643081,0.53599864,-0.17492619,-0.70659965,-0.018907065,-0.3820363,0.10682416,-0.7121626,0.2575925,-0.4100317,-0.6194225,-0.42176753,-0.34158608,-2.9517066,0.10592062,-0.41289207,0.06510531,-0.32370383,-0.21809453,0.121999905,-0.4743908,-0.77437,0.21118775,0.15508416,0.8290485,-0.26579145,0.17282167,-0.39043933,-0.31937912,-0.30052313,0.110879414,0.31537417,0.32475913,0.12380907,-0.42304116,0.10188972,-0.021869998,-0.5218185,0.01317459,-0.8109024,-0.49396375,-0.1994258,-0.7874424,-0.26816732,0.8776572,-0.26890704,0.049888674,-0.15586047,0.23503913,0.038019966,0.3070439,-0.017261205,0.30264512,0.030374305,-0.22831224,0.17983235,-0.1600035,0.4373193,0.17367233,0.4444191,0.335372,0.054434873,0.2100688,0.7583391,0.8689266,-0.16655152,1.2549329,0.52197576,0.036024086,0.27844608,-0.17583683,-0.5343733,-0.5347545,-0.28755382,0.19364251,-0.53524005,-0.22239326,0.13469046,-0.45160952,-0.94465566,0.7829619,-0.03480817,0.2985533,0.045917474,0.23620997,0.53418833,-0.3189609,0.060382184,0.018187052,0.05868206,-0.4420374,-0.16270219,-0.7056099,-0.53261507,-0.123149395,0.98346883,-0.24270357,-0.09097069,0.10871989,-0.15379487,-0.005758841,0.13526247,-0.0439949,-0.03256876,0.45761302,0.035127167,-0.6555434,0.22960113,-0.2209601,-0.10608551,-0.69523233,0.39245623,0.8595037,-0.7573604,0.8182783,0.39314812,-0.08400757,-0.61603165,-0.67931026,-0.19980635,-0.096944764,0.02670127,0.49021557,0.16860224,-0.8198229,0.49791366,0.47389123,-0.3635607,-0.86257786,0.4013983,-0.20979981,-0.044269346,-0.02288044,0.3369846,0.19926849,-0.08459462,-0.13454936,0.27962184,-0.4656627,0.35236865,-0.005402473,-0.13146758,0.53790224,-0.21482435,-0.20628966,-0.9030474,0.022527196,-0.80757976,-0.2353258,0.49820158,-0.101656824,0.050893947,0.21069899,0.099944904,0.23421821,-0.07465053,0.039182134,-0.22631587,-0.33830345,0.53335565,0.5808826,0.55984396,-0.51057965,0.6907915,0.15424241,-0.18899131,0.102475435,0.06738266,0.4211655,0.015025448,0.7154599,-0.12626588,-0.12342452,0.12698078,0.97264063,-0.01476989,0.4700597,0.09610427,-0.017890371,0.0053779106,0.10043469,0.0752343,0.20878229,-0.8447047,-0.08844226,-0.34531522,0.14525042,0.62392914,0.15220998,0.42851207,0.06585906,-0.3410691,-0.14316644,-0.012324032,-0.18612257,-1.7682036,0.6598578,0.113496326,0.94766116,0.14301148,0.22772108,-0.2463766,0.85997427,0.0930388,0.13176237,0.52380127,-0.05179639,-0.3802704,0.68097866,-0.69806266,0.71336305,-0.13083173,0.14933972,-0.17000084,0.15981865,0.5390386,0.88024217,-0.20833626,0.058835246,0.0033257792,-0.38405865,0.3526325,-0.65231997,0.08240939,-0.46577442,-0.31426027,0.5378044,0.5868551,0.29151657,-0.1607653,-0.011275144,0.23649582,-0.10318342,0.16124378,-0.030732729,-0.23498653,-0.07514818,-0.81320953,-0.006843223,0.50729537,0.054481506,0.3456133,-0.011789262,0.19679956,0.40063456,-0.05047715,0.020342438,-0.14869303,-0.723573,-0.22621289,-0.50147665,-0.71924984,0.3309557,-0.10632215,0.19080104,0.21605574,0.011527217,-0.4371728,0.5237209,-0.092996694,0.8054331,-0.30652186,-0.33963406,-0.4726198,0.1568333,0.13687067,-0.4063076,0.06325981,-0.3809021,0.121645935,-0.42333403,0.4989585,-0.26118794,-0.4980481,0.037463058,-0.15907085,-0.06900229,0.6645909,-0.1918209,0.19795808,0.027601806,-0.44231704,-0.29086348,-0.49735433,-0.109496444,0.24631771,0.1121753,0.15264702,-0.1985579,-0.33700818,-0.2568355,0.43297416,-0.09773534,0.1923222,0.6032681,0.25440022,-0.22458762,-0.101925105,0.1703438,0.98103654,0.1254827,-0.24670133,-0.5390611,-0.38168314,-0.41691783,0.20245433,-0.050435122,0.45309752,0.12542032,-0.23478328,0.7557202,0.09163539,1.2267141,0.116967134,-0.3067014,-0.03454787,0.5752068,-0.036428437,-0.010868024,-0.50968146,1.0009451,0.42478874,-0.1998745,0.0062246206,-0.7305052,0.15100151,0.2829301,-0.23304228,-0.4634491,-0.021975571,-0.56848395,-0.2817975,0.48121837,0.3829037,0.2706558,-0.21135662,0.14862747,0.35420564,0.17673796,0.47291192,-0.6891046,-0.0056893,0.45279217,0.39663896,-0.061831877,0.17341818,-0.44107673,0.32952073,-0.5029608,0.16172034,-0.31602478,0.21326314,-0.27377084,-0.40730035,0.37729314,-0.0680907,0.57664603,-0.32753047,-0.31532538,-0.071491696,0.37816074,0.2585286,0.11980154,0.68877155,-0.2599449,-0.2223247,0.2150499,0.89048785,1.1827542,-0.26017192,0.09554016,0.2582634,-0.3243762,-0.78159505,0.42038143,-0.37834823,-0.019037947,0.032265242,-0.31746694,-0.6002662,0.19283889,0.06837153,-0.18995437,0.2113831,-0.6189175,-0.35387653,0.114183575,-0.17376214,-0.249043,-0.36137164,0.15505038,0.4761342,-0.20058197,-0.42551842,0.036652118,0.46438703,-0.01841212,-0.69834954,0.038756393,-0.46090487,0.20533128,-0.0112151345,-0.36209872,-0.011358217,-0.20424318,-0.7101774,0.20476769,-0.08810587,-0.3889944,-0.0060669915,-0.099491924,-0.07160408,0.75270593,-0.18935555,0.3521581,-0.4007239,-0.44747475,-0.9671371,-0.19732744,0.22878402,0.20835337,-0.116160415,-0.8048439,-0.24716407,-0.17480065,-0.101459816,-0.04016829,-0.4148245,0.45525905,0.10406778,0.5731588,-0.20630623,-0.73792547,0.1980358,0.19116296,-0.14232942,-0.51834816,0.38356832,0.1273378,1.0462201,0.086291075,0.051226508,0.17823206,-0.3763335,-0.118346326,-0.2498892,-0.46271762,-0.61246526,0.020687722 +979,0.3693706,-0.06257349,-0.35587645,-0.49281254,-0.2595562,0.05216668,-0.11744433,0.31654608,0.12815405,-0.35014978,-0.15572886,-0.12361895,0.03787744,0.6621446,-0.19342543,-0.88477606,-0.124255925,0.0037866507,-0.57959163,0.43208233,-0.64093095,0.31020793,0.16980255,0.39735484,0.023839653,0.21319415,0.41374683,-0.17756201,0.12356016,-0.1654459,-0.39773396,0.18091206,-0.62786186,0.2781035,0.22890599,-0.24305795,0.11292308,-0.41841197,-0.13224262,-0.72631764,0.31294617,-0.7598106,0.29574764,-0.10451526,-0.28676486,0.18212478,-0.13073398,0.37248436,-0.46631578,0.0611069,0.24623907,-0.39165652,-0.031132191,-0.18568571,-0.07147839,-0.58020437,-0.55536795,0.12672693,-0.5314474,-0.31593227,-0.26166153,0.12946443,-0.41965792,-0.037551742,-0.24246182,0.46005008,-0.39873013,-0.17592634,0.32003427,-0.16515155,0.18963355,-0.51004297,-0.18534255,-0.116809905,0.28850064,0.033531684,-0.18498166,0.27393582,0.52597713,0.4055889,0.18044287,-0.27336463,0.031408496,-0.29152545,0.3305634,0.4694353,0.022256598,-0.5775959,-0.21900566,-0.05928427,-0.039951336,0.21080263,0.063759856,-0.3892081,0.07675294,0.24534778,-0.42901587,0.34212014,0.40571904,-0.38985956,-0.12625961,0.29012445,0.4162618,0.060793355,-0.14940862,0.05269556,0.05133691,-0.5712576,-0.27685785,0.41198286,-0.25727528,0.55031174,-0.36232352,0.12977476,0.82381344,-0.18079008,0.09953252,-0.3680083,-0.077830456,-0.2762839,-0.22152118,-0.37078607,0.35855827,-0.54072326,0.123690926,-0.45775554,1.1040671,0.19471805,-0.7106984,0.40094185,-0.53171027,0.15746093,-0.26189163,0.6855316,0.79501754,0.33180276,0.23359685,0.9157627,-0.64537996,0.08259984,0.04100202,-0.4260459,0.10696883,-0.23465993,0.2262464,-0.37330154,0.026827574,-0.019973105,0.23649256,-0.07209081,0.17519283,-0.3860936,-0.073232,0.025034776,0.7009035,-0.42032337,0.02611778,0.8037526,0.94496155,1.0724903,0.22079206,1.3680487,0.472744,-0.34918392,0.09431585,-0.117610365,-0.53662235,0.21335685,0.52126014,0.3884622,0.07333511,-0.08176025,0.27023497,0.47040406,-0.4498876,0.21965063,-0.19048935,0.3878714,0.08052857,-0.12901758,-0.5198744,-0.3448279,0.15851356,-0.1082936,-0.02964291,0.31116042,-0.01809675,0.49848685,0.060378093,1.0836693,0.15076356,0.15778059,-0.14008667,0.38070086,0.23901677,-0.021390602,0.16411312,0.28984675,0.5640983,-0.08923897,-0.7954299,-0.036197826,-0.3011383,-0.46662378,-0.2526436,-0.47288594,0.11440454,-0.0014480948,-0.42908657,-0.03946212,0.18664436,-0.20727734,0.4687896,-2.1076899,-0.20115243,-0.28712875,0.24924964,-0.2445265,-0.31825063,-0.050869346,-0.5196232,0.48808572,0.40764856,0.43263844,-0.69157314,0.2299176,0.29147446,-0.25168815,-0.004485627,-0.80653024,-0.12245115,-0.23074812,0.23851609,0.056333918,-0.09110085,-0.26376763,0.18055458,0.7154034,-0.056634936,-0.08074033,0.0991661,0.3048519,0.120886065,0.64329696,0.11651436,0.67954606,-0.2595998,-0.026342267,0.2765253,-0.45316815,0.31757528,0.07200111,0.21334054,0.36048284,-0.53768635,-0.8131542,-0.8057355,-0.67958814,1.2480433,-0.52575725,-0.34033343,0.21979511,0.113185614,-0.17499042,-0.030167723,0.4252108,-0.2569411,-0.11864883,-0.64404887,0.11244232,0.122372955,0.17407028,-0.022115225,0.2141021,-0.2045603,0.693897,-0.14037289,0.38273856,0.3734363,0.06585806,-0.14984836,-0.4491047,-0.07176896,0.9671798,0.5018946,0.084712245,-0.19303496,-0.21625233,-0.26236007,-0.18364972,0.11721012,0.5274294,0.9887044,0.06461519,0.03816435,0.32711324,-0.20641907,0.014584847,-0.0017270545,-0.4612534,0.064171195,0.011893491,0.72004384,0.38021708,-0.12363657,0.4397935,-0.21082382,0.27800342,-0.20124392,-0.50502175,0.6727235,1.254471,-0.14448003,-0.14212865,0.46480095,0.5235962,-0.41216585,0.3402861,-0.5032975,-0.26767957,0.853045,-0.043270092,-0.4563187,-0.11259192,-0.38083684,0.07122407,-1.0335373,0.21262097,-0.173256,-0.5139566,-0.7136533,-0.16101485,-4.3315253,0.14670123,-0.1372179,0.05997016,-0.22577743,-0.16324367,0.40483233,-0.63532037,-0.56321996,0.15638362,-0.027584093,0.6217995,0.0076667047,0.16772993,-0.39336362,-0.06891144,-0.29664403,0.04595515,0.0035771083,0.23865019,0.11808411,-0.23064196,0.20933537,-0.39589903,-0.58968705,0.14012708,-0.5666054,-0.66737074,-0.31320795,-0.44887754,-0.44834304,0.8146799,-0.47207883,0.030182205,-0.04509385,-0.028863907,-0.26283613,0.41601384,0.25017253,0.3041719,0.0819208,-0.06654944,-0.28908744,-0.50067776,0.08489778,0.13092011,0.24583851,0.20685047,-0.020286635,0.0876036,0.6091654,0.7132134,0.05201286,0.689826,0.25527063,-0.052247822,0.3103321,-0.405701,-0.18842788,-0.72892666,-0.52353317,-0.1988377,-0.37576702,-0.6672411,-0.17288078,-0.29964763,-0.73356277,0.29257777,0.06564551,0.04780527,0.024774998,0.251426,0.3641158,-0.055594254,0.052939147,-0.13633983,-0.04741318,-0.72018456,-0.34966847,-0.7947286,-0.5714228,0.15314947,1.0153346,0.011109282,-0.29060653,-0.20446032,-0.3917717,0.06530633,0.08357644,0.21599911,0.29166603,0.2521912,-0.051724676,-0.9206815,0.4868957,0.01762561,-0.18595499,-0.7621359,0.018685153,0.91453266,-0.7685962,0.5064888,0.4699835,0.11461994,0.11099254,-0.29723266,-0.48846254,0.24402218,-0.30446067,0.47048533,0.0044625006,-0.4852241,0.5772005,0.22632565,0.046266943,-0.68501765,0.4211795,-0.08020918,-0.16714312,0.116407774,0.44577357,0.11081353,0.08368064,-0.15278643,0.120710194,-0.69502133,0.10918319,0.5054107,0.2804952,0.42373106,-0.12811,-0.2519286,-0.6123841,-0.18120317,-0.75669986,-0.21477573,-0.055252638,-0.0011158685,0.055987105,0.08726233,-0.03200775,0.31925896,-0.23630409,0.18989675,0.018968506,-0.19192655,0.39036253,0.5336079,0.069816135,-0.42356753,0.6944614,0.119817264,0.18515669,-0.31559947,0.06902581,0.3979636,0.48969188,0.35517988,-0.17951714,-0.18247981,0.24405164,0.8036692,0.21073417,0.48574257,0.24727298,-0.066235185,0.49286464,0.19981885,0.2176944,0.17279856,-0.23968518,-0.10437408,0.06950788,0.056979638,0.51940805,0.04859918,0.344206,0.034731776,-0.076964885,0.19907252,0.09551867,-0.19810408,-1.1463534,0.60318714,0.31892508,0.5448467,0.4897724,-0.13793813,-0.035206497,0.5360391,-0.48578277,0.15314461,0.3329554,0.058748018,-0.5938458,0.7953174,-0.7728491,0.38347208,-0.29884014,0.10524311,-0.085405715,0.30415925,0.46527204,0.78764075,-0.16487382,0.0886616,-0.058984492,-0.2933754,0.3439751,-0.51258487,-0.08256615,-0.44700134,-0.3537613,0.48269236,0.22946115,0.36622727,-0.33280802,-0.13621946,0.13301022,-0.1104849,0.110373974,-0.20213933,-0.09474146,0.011987816,-0.68685055,-0.5552362,0.52521914,0.07848612,0.2660551,0.20837076,-0.30051208,0.3707873,-0.22129874,-0.035413105,0.047682256,-0.73309284,-0.043955475,-0.25147954,-0.57183224,0.31941214,-0.7426374,0.32154247,0.2542827,0.10745665,-0.21485217,-0.041835517,0.19401099,0.683388,-0.062294897,-0.367308,-0.37038198,0.08332927,0.1488166,-0.4266053,-0.0082621975,-0.4159402,-0.06846928,-0.44594678,0.37182614,-0.13599204,-0.14762259,0.041685566,-0.18280281,-0.16875325,0.4985496,-0.48631087,-0.028018156,0.037024003,-0.17604357,-0.10793463,-0.044605237,-0.40901992,0.31493834,-0.011026382,0.19940753,-0.013211712,-0.12252257,-0.14172909,0.47635487,0.11992223,0.22307329,0.17855026,-0.16919585,-0.17797743,-0.25742918,-0.033884715,0.2104816,0.20807417,-0.27084172,-0.15083036,-0.26054308,-0.1689415,0.2238309,-0.15640683,0.2879364,-0.020923099,-0.5170056,0.631858,-0.026967352,1.2556719,0.14425825,-0.5337597,-0.034352448,0.5751565,0.07082124,0.06991657,-0.16313398,0.7143248,0.4748629,-0.08057943,-0.2790973,-0.6544583,-0.1345097,0.49927855,-0.22466648,-0.22839038,-0.0037079006,-0.6483371,-0.40068159,0.22345139,0.29081354,0.026424,0.154931,-0.15312217,0.0052030385,0.2248304,0.679075,-0.53213394,0.06727226,0.335286,0.13239715,0.121088974,0.25292626,-0.19658673,0.40637705,-0.76991314,0.29626927,-0.52268684,0.06448105,-0.047984023,-0.1493994,0.31521276,0.10601035,0.36865988,-0.22457777,-0.4088156,-0.11133338,0.7816927,0.38927016,0.38528696,0.75031835,-0.27765277,0.011937131,0.19563401,0.533436,1.4172145,-0.104383,0.20493329,0.25080314,-0.5206394,-0.5788517,0.2903164,-0.2164495,0.05860545,-0.06584505,-0.44873464,-0.51517123,0.16572735,0.16906284,-0.087436736,0.3212072,-0.3783807,-0.42197958,0.6439206,-0.43392506,-0.41387346,-0.35368967,0.4013606,0.5809057,-0.41343093,-0.39456752,-0.10686507,0.30764413,-0.28216723,-0.42046857,-0.09259498,-0.2877958,0.48570684,0.13923855,-0.35285327,0.22695772,0.3138224,-0.48105133,0.27863258,0.23048455,-0.451956,0.064384766,0.033717398,-0.09221101,0.93353707,-0.117694505,-0.015942072,-0.8813703,-0.58717984,-0.76767725,-0.3706956,0.8154997,0.090438746,0.035639744,-0.48901424,-0.05794166,-0.0046730936,0.036008466,0.05774704,-0.51001215,0.286805,0.25383958,0.4881992,0.1862271,-0.6674226,-0.07677418,0.0004845485,-0.026780069,-0.51145935,0.47327495,-0.30177394,0.58380884,0.004461779,0.097820014,0.00863117,-0.44710532,0.29070818,-0.34853688,-0.2265495,-0.74920946,0.24240823 +980,0.6353742,-0.36174712,-0.4481683,-0.16449608,-0.22282885,0.14298008,-0.1060357,0.65150666,0.28518882,-0.42917067,-0.07591847,-0.109771565,0.027858881,0.13873447,-0.09110636,-0.4308337,-0.13636343,-0.046538472,-0.48625645,0.50315213,-0.3696631,0.13299425,-0.22248635,0.37826735,0.37905425,0.29804727,-0.06336038,0.13841937,-0.08943459,-0.12539056,0.008022038,0.24313578,-0.42484474,0.14174801,-0.11709606,-0.28093678,-0.06706479,-0.46994466,-0.47249037,-0.7562813,0.35778812,-0.8325623,0.48387134,-0.0625509,-0.24055916,0.4423693,0.09770764,0.15313068,-0.105393596,-0.14379969,0.20861766,-0.044068728,0.07893722,-0.29761562,-0.19722942,-0.48674664,-0.5021628,-0.14323963,-0.359594,-0.39927483,-0.21145919,0.109260395,-0.35477012,-0.14818856,-0.10517326,0.79614836,-0.44432017,0.1490154,0.20070824,-0.17374884,0.2912432,-0.8095795,-0.24787156,-0.019994358,0.08435109,-0.08577918,-0.12670392,0.24012643,0.2677925,0.21066977,-0.13043216,-0.12979545,-0.3895122,-0.019067105,0.013393129,0.3506355,-0.18785708,-0.4757128,-0.048574008,-0.033522274,0.06758257,0.2522864,0.3882403,-0.19740163,-0.037069224,0.23488416,-0.37078422,0.4887945,0.4779533,-0.27429736,-0.1215548,0.32134193,0.5051932,0.22808653,-0.28956145,-0.2547701,0.0014391404,-0.42180347,-0.1283117,0.094918445,-0.25965458,0.447243,-0.1802624,0.3770261,0.6434367,-0.18572086,0.112635784,0.09483512,0.25042757,-0.09307603,-0.49256065,-0.24313109,0.17631736,-0.44852352,0.22658275,-0.22951628,0.6711145,0.10053134,-0.39350477,0.25045636,-0.51030606,0.07641978,-0.15348527,0.31765762,0.6263946,0.41870227,0.18298875,0.68147236,-0.4016393,-0.0069310847,-0.06932665,-0.20548485,0.08887572,-0.19516732,0.24549752,-0.53360224,-0.13844746,-0.035054795,-0.050527044,0.08356201,0.41024357,-0.45367447,-0.20300652,0.24339716,0.9182631,-0.20218897,-0.06488331,0.69200003,1.1773597,0.9027803,0.07268965,1.0614108,0.1973323,-0.25199828,0.32923552,-0.17118604,-0.5345704,0.3847346,0.4327729,0.017381366,0.20254923,0.026128251,-0.19819817,0.54421973,-0.17734027,0.03735015,-0.060821638,0.12288873,0.31775922,-0.11795959,-0.23584516,-0.22657299,-0.027828097,0.07831519,0.04216755,0.10911668,-0.25066856,0.23539758,-0.037096914,1.5553216,-0.13185081,-0.039829347,0.14272374,0.4723287,0.24108218,-0.21407071,0.17755127,0.36483458,0.33305183,0.29839185,-0.6140246,0.35852733,-0.26526105,-0.52177423,-0.045367327,-0.36124358,-0.08818182,0.018690888,-0.54884005,-0.12388298,-0.19153255,-0.15078512,0.323531,-2.8961425,-0.088882245,-0.1339915,0.3632537,-0.23725174,-0.42591974,0.13708702,-0.3952666,0.3644991,0.40079483,0.4697006,-0.6169369,0.3892977,0.5224834,-0.75621575,-0.026628705,-0.5316929,-0.09043404,-0.09218221,0.26306814,-0.039007597,-0.04562092,0.10615866,0.13560173,0.5052002,-0.01784033,0.17831914,0.37935835,0.4513706,-0.41211727,0.59100163,-0.0966645,0.40819308,-0.33882353,-0.18858227,0.3485796,-0.39920124,0.053922094,-0.14277488,0.18865323,0.54549414,-0.23912045,-0.8921111,-0.6461264,-0.09879257,1.1373564,-0.17580152,-0.61354923,0.22117552,-0.4702587,-0.335103,-0.07215531,0.56830734,0.038477167,-0.09847395,-0.69249654,0.18899938,-0.15658906,0.051368073,-0.025672125,-0.15301666,-0.48255917,0.84570634,0.05177273,0.5714926,0.23801063,0.18563487,-0.40881282,-0.27808526,0.031586643,0.6794589,0.43292242,0.10149189,-0.23214258,-0.003385679,-0.28341132,-0.023301344,0.19639246,0.63064057,0.48436955,-0.018207682,0.17819907,0.3036564,-0.08033248,-0.028748991,-0.1504821,-0.3082046,-0.15724656,-0.066613965,0.41438338,0.5783673,-0.024627833,0.3798083,-0.05910233,0.2684471,-0.22464368,-0.48976594,0.46101123,1.0536649,-0.20803311,-0.46342438,0.4163033,0.3861697,-0.26095942,0.3418737,-0.5307866,-0.19587396,0.4904849,-0.24356055,-0.45615909,0.14459656,-0.33270007,-0.08080807,-0.73336816,0.13211754,-0.4592426,-0.5425166,-0.51952463,-0.30473694,-3.644644,0.25814137,-0.37371212,-0.2404468,-0.27839202,-0.20539095,0.26150805,-0.71112293,-0.46563196,0.23816094,0.0618221,0.72990096,0.019671623,0.058697045,-0.31294104,-0.33958668,-0.24727413,0.24542609,-0.0038898725,0.28795928,-0.034218337,-0.40781006,-0.08329594,0.11696855,-0.49328217,0.033371612,-0.5858965,-0.42255467,-0.15624347,-0.52271533,-0.36702678,0.62077993,-0.17020765,0.08650426,-0.0926222,0.015464809,-0.14688821,0.36696097,0.07490868,0.18636332,0.06868817,-0.15114398,0.15183939,-0.34566095,0.22272435,0.031507578,0.3587348,0.30258977,-0.04028016,0.20517829,0.39358288,0.5482546,0.014577215,0.8952113,0.30074623,-0.09615235,0.38970155,-0.2011852,-0.23237848,-0.55671716,-0.27811533,0.10811683,-0.27219284,-0.3550685,0.0033058112,-0.367342,-0.6113691,0.42421335,0.025091382,0.32357562,0.18518387,0.37545064,0.6920691,-0.23571728,-0.113580815,0.09405189,-0.08419517,-0.52423275,-0.2853371,-0.5745503,-0.5436113,0.18129888,0.62258536,-0.1408456,-0.039279956,0.037111487,-0.19143285,0.068524085,0.1897339,-0.05733865,0.011339582,0.5164926,-0.15257862,-0.56134915,0.37547064,-0.17715663,-0.2189683,-0.53927445,0.39828587,0.58267534,-0.4435101,0.67181784,0.3482245,0.18067744,-0.3962091,-0.40528506,-0.052513056,0.042169742,-0.24729618,0.3967859,0.34873402,-0.98815596,0.27343187,0.3852604,-0.22232796,-0.6937386,0.6714433,-0.05326218,-0.3599502,-0.29633203,0.29856667,0.29434654,-0.017765332,-0.10423013,0.17681037,-0.47093248,0.120103784,0.06801797,-0.0045612226,0.26000267,-0.0025655557,0.0013299172,-0.5804345,0.11399077,-0.32158148,-0.39362603,0.38722187,-0.12404374,0.25276154,0.38482884,0.119761154,0.23933564,-0.12562543,0.12252894,-0.13225985,-0.29139507,0.3258171,0.37884748,0.44443014,-0.44919884,0.49607503,0.011357011,0.016556323,0.28553194,0.19469929,0.35137302,0.2831851,0.4998694,-0.017101673,-0.18537515,0.26154515,0.72203666,0.19726372,0.53317463,0.06519997,-0.13914293,0.107536405,0.020099644,0.15852721,-0.104111895,-0.6180354,0.11343474,-0.18023697,0.19462943,0.42012623,-0.043324288,0.22198258,-0.11690069,-0.3570186,0.0036215198,0.31683654,-0.05488173,-1.1891829,0.42267308,0.25310144,1.1014688,0.30704892,0.010191711,-0.24332994,0.73098874,0.12651482,0.077332824,0.3215063,0.15300551,-0.40582436,0.55546486,-0.7763306,0.3619823,0.03378332,-0.08443473,-0.14708169,-0.0906715,0.30537236,0.6835813,-0.2618221,-0.11868476,0.040838186,-0.50621486,0.33727977,-0.4050565,0.052252114,-0.5149068,-0.26131013,0.5047006,0.5655316,0.3693902,-0.20612107,0.015067222,0.008439536,-0.16837542,0.18118387,0.10091637,-0.015474117,0.06082581,-0.7503075,-0.26714805,0.2914593,-0.018124692,0.3172705,-0.11120571,-0.17673017,0.21697578,-0.085440286,-0.0712088,0.09784278,-0.6110085,0.08006174,-0.3336282,-0.56045747,0.48037514,-0.027695766,0.13917218,0.20126472,0.061088122,-0.17711264,0.3973511,0.056309912,0.8128301,-0.030137558,-0.087009154,-0.50156176,0.0023167317,0.05182167,-0.18351208,0.008654629,-0.27757293,0.14278021,-0.5592914,0.41881165,-0.0069193197,-0.33106253,0.09932284,-0.17648758,0.19304325,0.5643815,-0.23091157,-0.17274936,-0.183712,-0.083619066,-0.19914661,-0.38210014,-0.049574573,0.30022824,-0.062414028,0.1831292,-0.18465842,-0.16084382,-0.048376955,0.39893293,0.013310533,0.40087494,0.43173346,0.07065873,-0.13536304,-0.16098578,0.25681382,0.53771436,-0.056502484,-0.22863773,-0.3193951,-0.67957973,-0.40112412,0.19711448,0.09610688,0.49633953,0.040791743,-0.2416808,0.7791217,-0.21791855,1.0642705,-0.1198283,-0.39473873,0.086213745,0.49175692,-0.03936179,-0.0946804,-0.3145526,0.84015816,0.5346781,-0.015465517,-0.03169882,-0.24519965,-0.051933706,0.19522038,-0.19021851,0.037059896,-0.14797658,-0.7104077,-0.24328658,0.1179221,0.29072422,0.18334085,-0.07243866,0.13548651,0.39085463,0.016646005,0.3064717,-0.50489384,-0.23616996,0.19609584,0.21903451,-0.13071679,0.23043552,-0.50239295,0.3469192,-0.57256395,0.17450362,-0.33674127,0.17864285,-0.16868693,-0.18778585,0.24709791,-0.0656722,0.39229056,-0.24985217,-0.3654682,-0.22501773,0.37341765,0.18268713,0.09276439,0.5249306,-0.13619058,0.018483533,0.07788401,0.6872091,0.9920811,-0.04770346,-0.0077545503,0.22064263,-0.5608198,-0.6917867,0.32273644,-0.20380059,0.26670808,0.13534158,0.028864415,-0.45014817,0.23862165,0.21250135,0.066355094,-0.024783991,-0.6805718,-0.26865494,0.2881601,-0.41094986,-0.12219005,-0.23546861,0.09014322,0.3822553,-0.24954346,-0.13410114,0.0036681523,0.49056214,-0.032861657,-0.29197142,0.024417754,-0.5010437,0.3469399,0.014433161,-0.3068949,-0.2077695,-0.0898305,-0.48823473,0.29198915,-0.07550426,-0.3247475,-0.0024979848,-0.1728487,-0.094880566,0.7466061,-0.09793584,0.067000434,-0.5576262,-0.49558628,-0.6117688,-0.38713947,0.082920626,0.005325079,-0.006300032,-0.63719976,0.04155533,-0.20620361,-0.04435784,-0.21887805,-0.36135367,0.43912983,0.097451694,0.55934197,-0.084594406,-0.73592705,0.1725323,0.17457914,-0.08790602,-0.6078316,0.5249709,-0.19771081,0.7356832,-0.0929546,0.21520832,0.13830255,-0.33267385,-0.062230572,-0.26786518,-0.33037615,-0.6599087,0.038686972 +981,0.46535596,-0.12843364,-0.36825734,-0.058634065,-0.18821764,0.21602109,-0.0980313,0.47524428,0.14915827,-0.42198497,-0.17176163,-0.31471485,0.024635242,0.27504617,-0.14662921,-0.48618782,-0.037155513,0.13290915,-0.52527845,0.38227695,-0.5387503,0.36989063,-0.038180076,0.4011774,0.098126896,0.2048592,0.04443828,-0.17417923,-0.14043672,-0.109332025,-0.12296387,0.35961476,-0.4624965,0.06934184,-0.18429229,-0.36140004,-0.0019754842,-0.49689013,-0.31029332,-0.5919192,0.26702508,-0.7137115,0.38834125,0.05171172,-0.24369158,0.3957706,-0.08574559,0.18151855,-0.17793316,0.048621655,0.18975136,-0.04873196,0.036372125,-0.13404319,-0.17075348,-0.26918098,-0.5035406,0.1813498,-0.4084496,-0.22239777,-0.16659328,0.17119852,-0.17552137,-0.033261325,-0.055014268,0.36470369,-0.4244822,0.08609224,0.12546831,-0.052345075,0.25150493,-0.44805858,-0.19325784,-0.07204568,0.28119057,-0.2742911,-0.09542726,0.14027332,0.28387195,0.5399127,-0.08464044,-0.018212542,-0.33691877,0.03875722,0.017569043,0.6073943,-0.2036607,-0.4992825,-0.1729944,-0.10743672,0.026926778,0.19271159,0.12967494,-0.28370094,-0.21124965,-0.0209538,-0.23011412,0.24569725,0.43947488,-0.38175035,-0.26370177,0.37458387,0.5009997,0.19965458,-0.010650227,0.013593819,0.012750456,-0.5109745,-0.10795961,-0.017670564,-0.15998434,0.532383,-0.030506724,0.3032903,0.6071396,-0.06267306,0.09591143,-0.05342307,-0.023660466,-0.056717083,-0.232658,-0.06258462,0.16677965,-0.28108,0.13310613,-0.093029365,0.82549036,0.0929416,-0.8120718,0.38462242,-0.5416728,0.07827151,0.006527112,0.5214353,0.62463635,0.28003818,0.28692517,0.55659723,-0.49441856,0.06843373,-0.12872574,-0.26601675,-0.10786661,-0.051787615,-0.08621923,-0.45085698,0.12293563,0.09277597,-0.06598161,0.079887606,0.37875262,-0.57448953,0.02536951,0.12883475,0.6986498,-0.38017693,-0.08677244,0.66278815,1.0076728,0.8504966,0.06335537,1.1320279,0.3184463,-0.32966444,0.29493105,-0.38204852,-0.7122218,0.23090163,0.34373936,0.06883356,0.28131735,0.1521129,-0.057083774,0.41992453,-0.34836027,-0.018092906,-0.1349168,0.05970044,0.0795984,0.038761333,-0.34285045,-0.29322895,-0.03983274,-0.011524631,0.13744621,0.18566051,-0.21494913,0.23338558,0.07707841,1.8668416,-0.078900665,0.15597177,0.06161301,0.37914363,0.10921867,-0.15273057,-0.13028328,0.44000253,0.28933805,-0.058527283,-0.58420515,0.047163326,-0.10272128,-0.5603635,-0.1302631,-0.2535048,-0.14901923,0.045514762,-0.47789097,-0.1491437,-0.19547294,-0.24741474,0.51184255,-2.8523371,-0.10697953,-0.10571495,0.30546468,-0.32376155,-0.3713365,-0.178058,-0.38824174,0.31756184,0.39452118,0.34715885,-0.6485988,0.31167203,0.2858342,-0.381077,-0.1543695,-0.54650813,-0.067857444,0.04741963,0.24559945,-0.07650566,-0.042369492,-0.04546075,0.025198907,0.38187853,-0.07980175,0.14616886,0.2673834,0.44265613,0.19039683,0.33491224,0.05452903,0.5113318,-0.18609197,-0.16393866,0.35889333,-0.34294164,0.2827426,-0.09428195,0.15459818,0.28575352,-0.5065819,-0.738785,-0.58045816,-0.37246948,1.1838044,-0.2570645,-0.34542626,0.26451916,-0.062134877,-0.08323218,-0.047162466,0.43383315,-0.11163111,-0.18519656,-0.8398678,0.104125306,-0.04345583,0.2129226,-0.008927185,0.033289626,-0.39732957,0.6045128,-0.12156424,0.44373876,0.35131878,0.16559425,-0.17641899,-0.36237356,0.008630259,0.8892689,0.3135147,0.18288587,-0.19129916,-0.2655133,-0.32976547,-0.049508855,0.06916892,0.38341802,0.6427894,0.098105654,0.18356626,0.2580824,0.08779086,0.0912839,-0.16292214,-0.15802911,-0.02828518,-0.10228371,0.5984934,0.5419074,-0.24040678,0.38781458,-0.13754043,0.21483341,-0.22306193,-0.32735643,0.39335087,0.7782698,-0.14270698,-0.1643461,0.5699061,0.5449201,-0.24318282,0.27171722,-0.55881435,-0.2778639,0.5954732,-0.23337531,-0.46299222,0.22926775,-0.2693812,0.08540631,-0.9127517,0.31346697,-0.10311661,-0.3303001,-0.5385643,-0.11364018,-3.2962446,0.19006242,-0.19630606,-0.20948653,-0.012895971,-0.10097217,0.14871907,-0.56776226,-0.49105218,0.10780568,-0.0325325,0.48314825,0.016221356,0.28105494,-0.23688689,-0.16565007,-0.23869711,0.08505279,0.08782674,0.358051,-0.031613115,-0.35697806,-0.030189462,-0.17691204,-0.2696287,0.040806115,-0.52065194,-0.46292913,-0.05764519,-0.5375001,-0.28924263,0.5221035,-0.44047695,-0.027990822,-0.24693069,-0.08674425,-0.23016022,0.35343817,0.14121963,0.14418828,0.06593452,-0.09891433,-0.07544531,-0.28322014,0.30584773,0.06909118,0.067562215,0.47184628,-0.10971542,0.1523731,0.35279363,0.57128006,-0.13756165,0.7230378,0.45794252,-0.05830715,0.32256165,-0.32390183,-0.065256454,-0.56796956,-0.30289704,-0.10145499,-0.38916215,-0.5095582,-0.17271854,-0.3411914,-0.7026284,0.4222283,-0.030999802,0.20548898,0.004051313,0.17909828,0.527047,-0.15665242,-0.10067327,-0.07582857,-0.020188924,-0.463862,-0.38408947,-0.6152394,-0.42047957,0.2042197,0.944489,-0.045300275,-0.034811337,0.07762292,-0.16149661,-0.05191135,0.06276648,0.0852727,0.13678294,0.37290022,-0.12557922,-0.60526156,0.5489218,-0.0740906,-0.29959577,-0.5141155,0.07512837,0.4985331,-0.5563702,0.539384,0.33786878,0.23622131,0.18538012,-0.5145922,-0.15349135,-0.015924647,-0.27500477,0.32030773,0.18842417,-0.70209646,0.44862372,0.4015773,-0.16347931,-0.84675795,0.3959408,-0.028044777,-0.34442997,0.06644911,0.32031137,0.1791012,0.012709511,-0.17613474,0.16722704,-0.53623736,0.31555632,0.27050593,-0.04505923,0.3717513,-0.23381832,-0.05739575,-0.63259053,0.021843772,-0.4980091,-0.29441363,0.138081,0.035390213,0.11126596,0.18445265,0.07935582,0.38683683,-0.38151994,0.10589954,0.0010680575,0.0003818227,0.03230141,0.43097705,0.45033717,-0.426878,0.5366324,0.004760919,-0.0071222186,-0.13612792,0.09295746,0.4923249,0.010558389,0.23758036,-0.06589796,-0.3204953,0.3817162,0.69338703,0.22463092,0.39929166,0.020856928,-0.23351121,0.29815036,0.06105004,0.12961344,-0.020841599,-0.4911482,-0.091862716,-0.024255872,0.20991297,0.4299165,0.1812048,0.39394352,-0.11249772,-0.2724148,0.0886872,0.2880641,-0.13467391,-0.9156875,0.26052612,0.11003068,0.84039676,0.558227,0.0015235133,0.1563718,0.4161672,-0.23284343,0.13856511,0.27959856,-0.049605604,-0.5892929,0.55386716,-0.540836,0.36476088,-0.23576495,-0.019347817,0.07600516,-0.07635725,0.38693142,0.7160222,-0.09874706,0.052810945,0.05147071,-0.23561706,0.007862149,-0.361203,0.10160847,-0.5855957,-0.10165672,0.6193265,0.48286933,0.2741345,-0.2341469,0.03649459,0.06283032,-0.09187311,-0.033155862,0.12738362,0.098395616,0.041814998,-0.6360512,-0.29029375,0.6069035,-0.055193253,0.14118972,0.038851157,-0.39750493,0.24092767,-0.22072731,-0.12134373,0.04392697,-0.5626604,-0.039342754,-0.32640362,-0.45420158,0.29499212,0.012144739,0.23796074,0.15539196,0.042044334,-0.35076132,0.29020625,0.14146967,0.7580557,0.03034481,-0.15078902,-0.4507854,0.19827372,0.32394314,-0.13733001,-0.260783,-0.2014049,-0.059219547,-0.5073395,0.44148934,0.054865416,-0.2229971,0.16276902,-0.12090817,0.025532223,0.565225,-0.05451349,-0.08035075,0.050278433,-0.20726347,-0.36063406,-0.022302097,-0.15065937,0.2735511,0.22342703,-0.07388242,0.009448387,-0.042109903,-0.12687898,0.43777388,0.0885928,0.3720988,0.43345052,0.037185192,-0.33994395,-0.09355975,0.09836613,0.41688412,-0.05498686,-0.10252804,-0.19681698,-0.4388673,-0.34411585,0.16160363,-0.22171238,0.33212748,0.10251992,-0.2999102,0.6774209,0.06335456,0.9271981,0.092960596,-0.23580536,0.06225696,0.36151493,-0.0019214638,-0.037260085,-0.46236446,0.91093403,0.5176146,0.0061684344,-0.17479077,-0.08439386,-0.08844786,0.1911522,-0.17418955,-0.15872589,-0.14404662,-0.62098163,-0.3380009,0.1535839,0.24021238,0.09036383,-0.014256563,0.025323022,0.15793839,0.024139825,0.39357477,-0.44077083,-0.31924105,0.26388752,0.24606706,0.005979128,0.114988774,-0.34716964,0.5206971,-0.5345995,-0.015978541,-0.2794457,0.11375003,-0.21431825,-0.21568075,0.12334866,-0.04489266,0.36022916,-0.2870163,-0.35130683,-0.29287308,0.42360675,0.061896987,0.17209919,0.47985375,-0.24753065,0.0513442,-0.022313688,0.51096976,1.0618674,-0.20282778,0.012003288,0.43110412,-0.2291235,-0.50231475,0.27889144,-0.29899728,0.13871726,-0.03439826,-0.15602675,-0.44437498,0.33169025,0.13752842,-0.03187842,0.021115083,-0.5536253,-0.11516313,0.37074733,-0.2729136,-0.25753397,-0.20794587,0.1663053,0.7686631,-0.32725346,-0.22718048,0.07240467,0.25469837,-0.27870026,-0.59844494,0.048419107,-0.4080312,0.35531485,0.10925409,-0.24547738,-0.19796285,0.026955865,-0.286306,-0.031895492,0.13010694,-0.32581717,0.06871616,-0.40887848,0.053638864,1.0208018,-0.056514733,0.17094362,-0.6136695,-0.44371203,-0.9848304,-0.39671236,0.541069,0.12874982,-0.0014150441,-0.39571714,0.041813172,-0.10868581,-0.20772806,-0.05465272,-0.3579085,0.48593628,0.14432421,0.40701526,-0.16929135,-0.6140789,-0.011143088,0.11365907,-0.2654459,-0.47711244,0.46951362,0.033997204,0.8164887,0.01964582,0.021296173,0.30488434,-0.48919666,0.06493799,-0.28273654,-0.07994406,-0.7717218,0.09319469 +982,0.696466,-0.27398142,-0.6574375,-0.092446454,-0.2008667,0.24922805,-0.31292257,0.39232773,0.09783256,-0.49328643,-0.21453895,-0.2665091,-0.08746784,0.21080741,-0.20978095,-0.44218096,-0.010663271,0.07545359,-0.50367135,0.64460814,-0.1856229,0.3654149,0.06492133,0.41437045,0.29214168,0.398775,0.32355705,0.1272318,0.009393121,-0.29518232,-0.08073813,0.07917436,-0.64442974,0.12984057,-0.25269648,-0.42206374,-0.051730696,-0.4433294,-0.26689306,-0.8728968,0.30100983,-0.9793523,0.6055241,0.032459076,-0.28960314,0.33015123,0.3715237,0.16942906,-0.20257689,0.010787534,0.22793531,-0.108214036,0.07052752,-0.30941862,-0.318014,-0.5323629,-0.44988284,-0.16168258,-0.554313,-0.2714626,-0.31864756,0.1973414,-0.20314203,-0.013158611,-0.18548642,0.38537493,-0.4511034,0.015524311,0.26469937,-0.17067215,0.3158525,-0.7655902,-0.24353287,-0.18858244,0.30623814,-0.027667284,-0.12951714,0.35387844,0.25146556,0.31978688,0.24596305,-0.14402528,-0.27504423,-0.24685667,0.080655634,0.28867248,-0.09105643,-0.3358653,-0.23886923,-0.2496873,0.45625338,0.4238623,0.34283108,-0.23357245,0.04006203,-0.19199964,-0.22537325,0.47394744,0.4685142,-0.36169323,-0.08093313,0.34560373,0.6455003,0.2438543,-0.32542902,0.1343533,-0.05476095,-0.4120846,-0.18056083,0.26347458,-0.22529748,0.5765892,-0.13621022,0.23765948,0.73493475,-0.2038887,-0.057602305,0.02616887,0.039057374,-0.26834455,-0.18390763,-0.35510227,0.3658351,-0.4840596,0.22820608,-0.28371972,0.56889176,0.16792558,-0.52777416,0.20940015,-0.6649614,0.022549434,-0.06917865,0.47525945,0.5814977,0.5719223,0.16214512,0.8840006,-0.29809758,-0.06650026,-0.11646859,-0.16840497,0.0077621513,-0.23561546,0.0833397,-0.53882,0.18670058,0.001179627,-0.014699625,0.057671327,0.56293875,-0.35696816,-0.13312139,0.12779687,0.8260941,-0.31393746,0.1278424,0.92668974,1.1230546,1.0616494,-0.024789274,1.0231925,0.18858646,-0.36505264,-0.10002328,0.068726964,-0.5037882,0.26643986,0.47876647,-0.15975802,0.42425042,0.076560915,-0.06691908,0.2811134,-0.3534394,-0.08532065,-0.11383774,-0.04688242,0.10978164,-0.087279595,-0.43474227,-0.11858099,0.14355704,-0.047132473,0.31461477,0.21488492,-0.22897302,0.52593297,0.051455446,1.409651,-0.15469567,0.12126268,0.2183295,0.5806522,0.3898585,-0.13544886,0.015958173,0.40845686,0.27819368,0.111405455,-0.5374806,0.2289085,-0.2649731,-0.5712902,-0.03006238,-0.4362445,-0.09322506,-0.034380525,-0.34892124,-0.1837015,-0.15899219,-0.2572268,0.29856166,-2.735418,-0.13565587,-0.113141574,0.24235287,-0.26464182,-0.23275523,-0.07614814,-0.4811481,0.5392987,0.32708192,0.40785238,-0.48864153,0.42184153,0.57464266,-0.5298449,-0.107212365,-0.4333088,-0.007334918,-0.08804558,0.43727186,-0.093989,-0.18827547,0.028179994,0.26896554,0.47317606,0.20297097,0.18538015,0.27221438,0.429244,-0.08158833,0.50198513,0.026595814,0.43417308,-0.4202781,-0.15820067,0.47974816,-0.4116914,0.24657127,-0.19091609,0.17415397,0.5448488,-0.5590558,-0.8472523,-0.6885711,0.022859266,1.0502609,-0.33412233,-0.72166795,0.11045432,-0.2547313,-0.22849558,0.016173836,0.598599,-0.16289823,0.17862646,-0.6471687,0.040451195,-0.059110966,0.09977393,0.0635501,0.08917008,-0.5830553,0.85014075,-0.034270562,0.7192032,0.26681414,0.21338275,-0.3913901,-0.6166735,0.10772007,0.84678257,0.5416304,-0.052083116,-0.07215439,-0.12065884,-0.22588362,-0.16049881,0.24606776,0.804163,0.59184676,0.05586559,0.08235473,0.23870893,-0.0105369855,0.18424408,-0.3021089,-0.29996786,-0.21053664,-0.1213382,0.5047632,0.47238,0.07534606,0.32242015,-0.13517378,0.55393195,-0.14535831,-0.5329259,0.5869416,1.1781633,-0.18896411,-0.354771,0.61187637,0.53016824,-0.26321137,0.56177384,-0.796913,-0.2830742,0.46397033,-0.13887404,-0.64340514,0.20463693,-0.24810033,0.081595965,-0.857314,0.0972367,-0.3379362,-0.3452435,-0.4528925,-0.24406256,-3.3466184,0.19842108,-0.2244459,-0.094686136,-0.3231287,-0.30300814,0.21550186,-0.5992045,-0.6745004,0.16732237,0.014654769,0.84006375,-0.1693413,0.18403013,-0.23015162,-0.40999603,-0.3534495,0.26410142,-0.058376778,0.33924294,-0.19682212,-0.34078926,0.0060841525,-0.01332071,-0.43321282,-0.14515842,-0.44956964,-0.31105265,-0.20855805,-0.45081094,-0.19416046,0.6009499,-0.3100428,0.09221244,-0.15382206,0.089596935,-0.014775583,0.19804871,0.13045637,0.27707118,0.078259155,-0.06411028,0.08586942,-0.2711271,0.16091542,0.07910706,0.1953649,0.17363872,-0.252811,0.20573735,0.28691486,0.56492895,-0.09649276,0.78019655,0.26605824,-0.105872646,0.31108946,-0.20481108,-0.454859,-0.7110473,-0.18406537,-0.096656665,-0.2657369,-0.46877939,-0.124184616,-0.39101693,-0.87707317,0.5851097,0.11500404,0.433913,0.045320876,0.43947962,0.5545868,-0.26197436,-0.07196993,0.09793893,-0.17985432,-0.61869395,-0.22568622,-0.6095577,-0.41993517,0.037548818,0.70706075,-0.32770962,-0.091420926,0.28812346,-0.1537175,0.11610055,0.14548351,0.04450333,-0.0258688,0.53078634,0.01704611,-0.654967,0.7246519,-0.17577577,-0.13979803,-0.5161073,0.2902529,0.5071581,-0.60811245,0.4358088,0.4088017,0.033546872,-0.44300896,-0.6062493,0.064994976,-0.004104721,-0.17585301,0.44190398,0.28372636,-0.745141,0.31535414,0.13337073,-0.2140685,-0.7703175,0.6826792,-0.06766583,-0.41454622,-0.027635476,0.42551756,0.22760627,-0.08403043,-0.23889668,0.17530182,-0.37959597,0.18892278,0.17340027,-0.082062654,0.42314696,-0.24598299,-0.18839046,-0.7006144,0.09475134,-0.6283244,-0.27662143,0.4510834,-0.021389237,-0.017530022,0.26598826,0.114002444,0.3536651,-0.24075063,0.24349822,-0.230624,-0.13525663,0.48123652,0.50600517,0.51359594,-0.5735461,0.63293046,-0.0103749065,-0.13459086,0.19792248,0.14364484,0.263638,-0.00418124,0.60392463,-0.031854134,-0.20135723,0.16724539,0.3949153,0.3573902,0.31622773,0.15872549,-0.18402088,0.21130183,0.0745159,0.32514578,-0.02904354,-0.7415906,-0.13200149,-0.36800924,0.13209131,0.490917,0.12292702,0.3866693,-0.004598328,-0.20926504,0.118636355,0.17552121,-0.27345452,-1.0630789,0.3362732,0.21703339,0.84716886,0.49946627,-0.07071238,-0.029885769,0.69903046,-0.13027146,0.08725773,0.31804085,0.16721629,-0.4615881,0.60687125,-0.58968604,0.3373941,-0.057412803,-0.123050146,0.023132388,0.06171218,0.46093792,0.87880194,-0.23324712,0.041322898,-0.021152232,-0.4173387,0.30759546,-0.30914542,-0.024209337,-0.34451315,-0.3673508,0.65817696,0.36963013,0.36699864,-0.2233334,-0.05798379,-0.08652801,-0.167749,0.21712324,0.12150108,0.158452,-0.20514992,-0.590977,-0.29575792,0.5059966,0.008809797,0.14040777,0.0048842346,-0.37690184,0.1956795,-0.08018307,0.15596427,0.010511166,-0.70598274,0.16862737,-0.14408872,-0.41768694,0.43684608,0.008828585,0.21653572,0.22321442,-0.053591125,-0.05817614,0.22328965,0.12212875,0.7311769,0.028880758,-0.12650226,-0.47292438,0.16099174,0.1673021,-0.2852538,0.018964062,-0.103376806,0.2442394,-0.586016,0.47635362,-0.052335355,-0.25210455,0.10303084,-0.12191527,-0.13533534,0.6266113,-0.13919528,-0.12893218,0.02651206,-0.010793692,-0.3826611,-0.37477937,-0.25483784,0.0949179,-0.09469731,0.059269242,-0.29010454,0.012467989,-0.0577573,0.3785029,0.0338903,0.42041263,0.4118123,-0.110476986,-0.41037172,-0.11708941,0.19767281,0.33655673,-0.050022505,-0.1373084,-0.1660392,-0.7270743,-0.37452206,0.37885612,-0.021501148,0.2802759,0.18114655,-0.06643295,0.85242844,-0.03311772,1.1021186,-0.058347877,-0.47694638,0.20848179,0.71747875,-0.097944684,-0.1426249,-0.2359444,1.0275542,0.6425637,-0.10057817,0.0028258052,-0.21932538,0.022031387,0.07621869,-0.35829464,-0.07388829,-0.11869005,-0.6616196,-0.2235934,0.015085613,0.35276705,0.20193383,-0.09873704,0.079327516,0.30733186,0.06164523,0.29784372,-0.47160164,-0.4875632,0.46467286,0.13139616,-0.21732275,0.040685553,-0.4207546,0.4973213,-0.639126,0.002364644,-0.534311,0.16009833,-0.18093085,-0.23536423,0.18822765,-0.04226046,0.24692532,-0.47269008,-0.43204302,-0.20789799,0.32658345,0.3481513,0.20957018,0.49705476,-0.29946873,0.14536855,-0.071657196,0.58210087,0.8748182,-0.08582749,-0.05727332,0.29649287,-0.62888235,-0.6687876,0.24633329,-0.4448928,0.24147286,-0.008127292,-0.26020595,-0.42262462,0.31591755,0.13156855,0.014376053,0.047073517,-0.8364528,-0.1590592,0.20698777,-0.24912664,-0.12920368,-0.4410102,0.1510226,0.5831881,-0.2781104,-0.25143418,0.006317156,0.15509902,-0.10034788,-0.7899783,-0.08796493,-0.27896526,0.41747102,0.052859344,-0.23611464,-0.09380819,0.11599451,-0.54046714,0.29668722,-0.008575712,-0.30453867,0.0743683,-0.50503445,0.10760534,0.733995,-0.11913294,-0.09705211,-0.34821656,-0.5669104,-0.82504845,-0.45034045,0.16497764,0.072949424,0.15769067,-0.6623582,0.10235132,-0.4238135,0.08046969,-0.043180566,-0.3473502,0.4050543,0.21177652,0.5974864,-0.097980775,-0.8019193,0.28380817,0.06472143,-0.17180826,-0.5020984,0.47637865,-0.21121882,0.7819255,0.124931335,-0.020500403,0.2587604,-0.6462498,0.12297455,-0.19521162,-0.08395179,-0.6829993,0.018112894 +983,0.5434789,-0.30833596,-0.39678448,-0.19152498,-0.18237822,0.098339245,-0.029525291,0.45840007,0.20488285,-0.5556831,-0.11397794,-0.22334825,-0.029510802,0.24730472,-0.105967715,-0.5646544,-0.013873784,0.24064139,-0.314167,0.53278804,-0.37853724,0.26934797,0.045093257,0.10566685,0.20175165,0.31698933,0.07463585,-0.14204556,-0.16129433,-0.08589562,-0.2913622,0.392818,-0.38445434,0.24120273,-0.043952823,-0.1978305,0.13634293,-0.34893754,-0.3218383,-0.76257527,0.20916119,-0.8246887,0.43816236,0.116211854,-0.35364142,0.19082707,0.16316923,0.23916174,-0.32561862,0.058034584,0.20344955,-0.10855439,0.010366154,-0.28814155,-0.12507918,-0.5555621,-0.603566,-0.09265005,-0.36631104,-0.41574556,-0.23957577,0.17049116,-0.42017207,-0.08246336,-0.12890096,0.59646434,-0.43049082,-0.07682438,0.3222018,-0.26143292,0.30081853,-0.5734979,-0.13421725,-0.13930903,0.13359842,-0.070474006,-0.2521012,0.35733548,0.34433162,0.38849917,0.16126917,-0.23538595,-0.20195284,-0.19504313,0.23907413,0.35237274,-0.24699463,-0.42245868,-0.022856925,-0.05392546,0.07148412,0.07373972,0.205134,-0.32622916,-0.097778045,0.12851599,-0.24943566,0.11428965,0.45775414,-0.44583416,-0.24798872,0.19137748,0.6320457,-0.048304312,-0.15935825,0.054815516,-0.027845778,-0.44442713,-0.2214791,0.18294822,-0.42683658,0.6089235,-0.28772175,0.095425166,0.7467031,-0.24501085,0.06135742,-0.013611182,0.10819542,-0.19704345,-0.35402337,-0.30179062,0.2742573,-0.47054246,0.0937837,-0.2123366,0.82574534,0.20351307,-0.58520234,0.22949964,-0.5351335,0.1769647,-0.1380538,0.5502961,0.54926574,0.4363236,0.44581664,0.7041837,-0.5525852,0.10246987,-0.004028614,-0.40561453,0.035538595,-0.28007525,0.02607224,-0.48791054,0.06666388,0.000844427,-0.13265406,-0.044975556,0.44338658,-0.61784625,0.06293624,0.2716321,0.9421267,-0.35651195,-0.047851156,0.5023611,0.87871295,1.0010206,0.06544987,1.1440489,0.23931926,-0.45671195,0.23699832,-0.35201028,-0.65059096,0.35898563,0.4800316,0.09755268,0.26955858,0.19839546,0.053700127,0.44597968,-0.45614845,0.20890754,-0.31845137,0.07467139,0.03535467,-0.21574211,-0.52183,-0.20462637,-0.046704125,-0.014574176,-0.051756572,0.17227142,-0.07958024,0.42586222,0.16187352,1.637851,-0.087237194,0.11238697,0.21717528,0.28711906,0.1353599,0.027867882,0.07552585,0.49174002,0.40892887,0.2729844,-0.6027562,0.071462385,-0.28964424,-0.5942671,-0.12169317,-0.4106913,0.11683043,-0.014925893,-0.42066428,-0.24846512,-0.07700452,-0.28585437,0.37676218,-2.4726355,-0.1617567,-0.14825444,0.29362747,-0.29634386,-0.26732928,0.014684609,-0.43048158,0.2741256,0.39066452,0.5164162,-0.7251767,0.3282965,0.37190315,-0.5251351,-0.066283725,-0.69794285,-0.16030906,-0.2274675,0.42837772,0.09158792,-0.12852216,-0.0460253,0.1280502,0.54056585,-0.050550114,0.15511368,0.30878884,0.35193413,-0.025653696,0.5780894,0.20932195,0.48971808,-0.14843331,-0.22065766,0.34892574,-0.39842358,0.10540032,0.22450806,0.07327137,0.47404563,-0.41922563,-0.72401625,-0.7658053,-0.34217256,1.1847409,-0.29476312,-0.40515748,0.31875274,-0.24199146,-0.2204681,-0.2011625,0.3746074,-0.14619808,0.11633862,-0.81329167,0.14960961,-0.004811748,0.10240673,0.07099418,-0.11813721,-0.4004926,0.84008133,-0.12920779,0.48955613,0.3486044,0.010736863,-0.20450374,-0.4759121,-0.044861976,1.0712761,0.38249487,0.09188767,-0.1312887,-0.26072434,-0.34777313,-0.009191746,0.14719014,0.4014851,0.78584063,-0.05726842,0.09632788,0.3216399,-0.08334216,0.05033177,-0.18083952,-0.35329762,-0.02511903,0.042957187,0.52272534,0.42213643,-0.20353898,0.38041818,-0.16244666,0.38753414,-0.075257055,-0.40850896,0.3705768,1.2223495,-0.15415512,-0.3734764,0.68298995,0.50339985,-0.38740525,0.3774627,-0.6265991,-0.18850961,0.5169235,-0.2424817,-0.44924864,0.2521321,-0.32181606,0.33282602,-0.95628196,0.4330409,-0.17153034,-0.47820696,-0.6427046,-0.22314952,-3.4423232,0.3493934,-0.3992234,-0.16170785,-0.071093366,0.004342393,0.24901406,-0.6997591,-0.39089516,0.09090136,0.09202387,0.47707638,-0.057964835,-0.028914869,-0.2293854,-0.36009553,-0.22046481,0.12007931,-0.0024895906,0.34935844,-0.038145844,-0.60520864,0.122160785,-0.1560702,-0.40898257,0.09376183,-0.6178861,-0.63394386,-0.13294406,-0.61946833,-0.39187872,0.68134946,-0.29436308,0.04717374,-0.261432,0.10384975,-0.1352143,0.3089512,0.16045932,0.19225626,-0.106349535,-0.11009264,-0.12341583,-0.20338407,0.33870602,0.012730131,0.33821577,0.30731916,-0.24599458,0.11398795,0.6473287,0.49648622,-0.045861986,0.7936102,0.60852545,-0.21576566,0.40003031,-0.28165588,-0.2942212,-0.6885728,-0.5070503,0.15778498,-0.46666285,-0.4567619,0.015637927,-0.30892706,-0.76280516,0.62357277,-0.05949638,0.13822219,-0.005461854,0.36514166,0.58697766,-0.16965288,-0.13636084,-0.046274487,-0.29772064,-0.5435,-0.2695144,-0.7464217,-0.36537144,0.19181451,1.0744724,-0.32255584,-0.0057660798,0.0074064294,-0.23007129,-0.05725895,0.20664883,-0.021686776,0.21797676,0.4458429,-0.16464974,-0.70390075,0.48532823,0.029597282,-0.1787233,-0.39758065,0.2031504,0.6142118,-0.7290327,0.59740716,0.2982178,0.11739022,-0.12792176,-0.48670733,-0.2633315,-0.0050234753,-0.31036952,0.5634333,0.077141486,-0.5932003,0.3102537,0.41352862,-0.25736907,-0.6730708,0.44144773,-0.19066451,-0.19416396,0.051100858,0.38355932,0.024589412,-0.040452026,-0.117021784,0.1878059,-0.4810097,0.2321843,0.43455568,-0.033272725,0.13514711,-0.1109565,-0.18530622,-0.8780824,-0.0027882585,-0.6164195,-0.28326342,0.23756517,0.1619784,-0.091202945,0.25131467,0.020126553,0.5493822,-0.11965755,0.046938498,0.059371658,-0.2695465,0.3917512,0.40509492,0.38374117,-0.49997738,0.5280693,0.074363984,-0.0007801056,-0.35650268,0.014933451,0.48037246,0.19251792,0.4418243,-0.05779074,-0.10842577,0.50990134,0.78138524,0.25723064,0.66074395,0.091528304,-0.13760087,0.25540084,0.14132538,0.096716605,0.039916866,-0.5109171,0.012949119,-0.16939102,0.17545493,0.42758623,0.106883846,0.31186977,-0.09893061,-0.27548236,0.074305125,0.31618297,0.035967097,-1.2297794,0.35824987,0.2117521,0.7089106,0.4686494,0.035121474,-0.005478233,0.70792234,-0.3274511,-0.017173132,0.324777,-0.14912656,-0.5717499,0.6014248,-0.68967015,0.32433203,-0.18666817,0.08360254,-0.14169268,-0.05474234,0.39688402,0.7852902,-0.21398821,-0.09849296,-0.18725356,-0.24911347,0.30789602,-0.51339823,0.1293187,-0.47939193,-0.41536328,0.5727743,0.4192334,0.38984197,-0.12743543,0.015059826,0.08818459,-0.108737595,0.4491494,0.044815052,0.08155999,-0.025734095,-0.73771805,-0.30161625,0.543601,-0.083093755,0.18291791,-0.047871027,-0.28404993,0.26443043,-0.13128355,-0.037471436,-0.104593724,-0.4805932,0.0003145536,-0.21419887,-0.5366875,0.60476154,-0.06774863,0.22854719,0.28150794,0.0350556,-0.35039595,0.15623544,0.11720207,0.73742336,0.042932596,-0.27776718,-0.34015292,0.17234106,0.055479933,-0.1745441,0.09225427,-0.2688094,0.12830609,-0.60673624,0.52067286,-0.036906395,-0.45395538,0.13686396,-0.2976366,-0.18148454,0.6127836,-0.27388102,-0.194354,-0.188866,-0.15318309,-0.05220753,-0.22317483,-0.127232,0.38475153,0.020506088,0.12019841,-0.20901343,-0.09546079,-0.14876303,0.4684336,-0.050776657,0.31937793,0.3731617,-0.089732185,-0.35859627,-0.06969871,0.1282515,0.22041884,0.10248903,-0.13948537,-0.18836226,-0.46516693,-0.33460903,-0.02471644,-0.08458875,0.40760466,0.1507879,-0.33737323,0.96563286,-0.08864697,1.3629959,0.028803695,-0.4296785,-0.065155976,0.6577621,0.10015909,0.03770963,-0.26634857,0.8964277,0.6958425,-0.07764999,-0.086200476,-0.52491117,-0.056290884,0.12042342,-0.09389849,-0.029820379,-0.04744831,-0.63892597,-0.35902423,0.25498858,0.33054003,0.27492186,0.058286276,0.019721007,0.24523124,-0.05902167,0.39156094,-0.4449484,-0.2488355,0.23734376,0.094926275,0.11538312,0.017011559,-0.41989523,0.4979831,-0.58589727,0.21455981,-0.2082602,0.177325,-0.16268635,-0.26053685,0.25112048,-0.07113802,0.36647403,-0.39673942,-0.34840646,-0.07803106,0.62452924,-0.019770758,0.13791582,0.6688909,-0.31972593,0.05889593,0.14625059,0.4600941,1.0926694,-0.17695656,0.012634845,0.3434719,-0.39027968,-0.6418782,0.42070445,-0.2747266,0.17022477,0.10605325,-0.34083423,-0.45378348,0.23975843,0.33854178,-0.0870519,0.11998006,-0.48868093,-0.23508812,0.2884084,-0.4572152,-0.106145725,-0.15385227,0.34237513,0.5451716,-0.43565398,-0.41086245,0.05338178,0.12689029,-0.27907145,-0.5739291,-0.13260633,-0.4170416,0.48395392,0.14942688,-0.26469892,0.07818184,0.04289383,-0.3845468,0.16826157,0.28943756,-0.32950908,0.16533987,-0.34934884,-0.08881381,0.8241012,0.016177274,-0.0025496124,-0.61697143,-0.37571,-0.96989155,-0.3234429,0.6161973,-0.05554498,0.08105988,-0.5472186,0.010996705,-0.08120861,-0.008129756,-0.083404645,-0.3543705,0.4700813,0.23180503,0.46537763,-0.03277661,-0.71427256,0.13992712,0.09205605,0.08521628,-0.65881234,0.509666,-0.1884566,0.78073287,0.061366074,0.11520462,0.27884758,-0.47564828,-0.08510888,-0.18489191,-0.36891305,-0.62406313,-0.15649357 +984,0.22217377,-0.054297082,-0.50184155,-0.30723894,-0.17531389,0.2763573,-0.13675924,0.1927761,0.22222668,-0.31465608,0.06619386,-0.095406294,-0.01324029,0.31968564,-0.11640385,-0.79561865,0.033771586,-0.016143618,-0.4341714,0.32463768,-0.55788004,0.41086993,-0.067409605,0.22880487,0.028506236,0.3558789,0.16520938,-0.1223786,-0.29146507,0.1445335,-0.12307911,0.26390913,-0.47301576,0.08892681,0.05225932,-0.2395633,-0.07044692,-0.086360246,-0.33694452,-0.625535,0.4974144,-0.7444011,0.47254798,-0.14562875,-0.27485815,0.10952983,0.1539409,0.040418442,-0.46683818,0.20006701,0.28918114,-0.27815863,-0.03563172,-0.22432177,-0.49645883,-0.61012024,-0.49656644,-0.10946431,-0.6354639,-0.27174446,-0.3663107,0.1167601,-0.3460678,-0.18106954,-0.17081808,0.49520424,-0.4638283,0.07459632,0.13023838,-0.25483766,0.06809261,-0.57569325,-0.058909077,-0.01661098,0.21496095,-0.21787669,-0.15671812,0.3222151,0.42874053,0.4893524,0.061505575,-0.21870929,-0.37241307,-0.2965145,0.2915528,0.2650093,-0.14412111,-0.38414747,-0.23131943,-0.14036293,-0.02582785,0.1675911,-0.11239187,-0.4794297,-0.007502869,0.14435528,-0.28504485,0.4514597,0.5126612,-0.4454216,-0.34454426,0.48443985,0.25529033,0.051241588,-0.3687931,0.2509123,-0.07900032,-0.44658425,-0.2598516,0.23373525,-0.044287167,0.43110177,-0.2650329,0.17381832,0.90355873,-0.1425454,0.13304941,-0.3107639,-0.03718579,0.019965608,-0.2654493,-0.0030125936,-0.05939739,-0.49737844,0.0033100646,-0.15952666,0.7460124,0.19394991,-0.7717112,0.48415735,-0.4813804,0.12160521,-0.20081054,0.5961483,0.74058455,0.21107109,0.10419533,0.9224729,-0.5266356,0.026331697,0.13502799,-0.44764382,0.014907909,-0.05853423,-0.06787477,-0.555289,0.047138993,0.10532609,0.14728647,-0.005657041,0.45624593,-0.29132968,-0.11638017,-0.05469161,0.7898053,-0.47414085,-0.12940557,0.61333764,0.9575482,0.8928226,0.07514604,1.4472206,0.38399556,-0.36677548,0.085893355,-0.44023672,-0.51132315,0.22875477,0.25130823,0.16885045,0.17150281,0.15848118,0.26796767,0.37088457,-0.27801475,0.12804745,-0.14755744,0.09803685,0.15233392,-0.046737917,-0.23661254,-0.16510831,0.17058454,0.118109494,0.046322998,0.15963419,-0.10943284,0.4397597,0.15750425,1.379452,0.09460351,0.0963229,0.054535493,0.47561446,0.17364904,0.019650843,0.04851051,0.42251265,0.44261724,-0.15421836,-0.592149,-0.09327511,-0.41174456,-0.4791455,-0.18736966,-0.5033432,-0.1357359,-0.15581726,-0.482897,-0.15523705,0.26038346,-0.49378625,0.48952076,-2.553802,-0.1453469,-0.18511747,0.2676756,-0.12980504,-0.19675618,-0.34067744,-0.43020716,0.4138613,0.3790596,0.34627932,-0.5483328,0.31320807,0.4299193,-0.25774875,-0.1278611,-0.6351351,-0.025150243,-0.14428599,0.36208865,-0.14249673,-0.10720397,-0.114668496,0.30915007,0.6265725,0.077558346,0.011138932,0.20233001,0.3799216,-0.005365336,0.57204264,0.1245371,0.55128723,-0.16373512,-0.09227261,0.34234092,-0.5342341,0.1608269,0.012899884,0.10203668,0.4467425,-0.41221693,-0.8232795,-0.4925871,-0.5315985,1.1312754,-0.41207677,-0.37374514,0.49737352,-0.11344344,-0.24735934,-0.12819067,0.61339253,-0.0820905,0.11042507,-0.6338305,0.1583245,-0.011492522,0.122150525,-0.13752955,0.25931174,-0.17685999,0.675992,-0.21144888,0.44660392,0.34532917,0.099971615,-0.13670704,-0.48978272,0.19760075,0.83539236,0.31991976,0.14297122,-0.0065015606,-0.14930302,-0.09756332,-0.24415255,0.19229653,0.5050722,0.6491432,0.02820151,0.07439516,0.29716405,-0.23846711,-0.024434486,-0.15261461,-0.31618494,-0.067651555,0.13298145,0.55194646,0.34588432,-0.12644762,0.48242944,-0.15264153,0.11850431,-0.18042584,-0.47011223,0.48241174,0.76091474,-0.11423675,-0.30482104,0.37220207,0.35532582,-0.48412502,0.36929077,-0.53722155,-0.11240803,0.71779424,-0.20425901,-0.4977411,0.037433214,-0.29821044,8.531411e-06,-0.72538453,0.23670997,0.13824314,-0.5446437,-0.41726044,-0.34052023,-4.20832,0.029013237,-0.24126638,-0.079047285,-0.115357675,-0.038829673,0.30331144,-0.38104656,-0.5268286,0.07626246,0.02757124,0.39161283,0.019777842,0.04926484,-0.36075178,0.021756839,-0.19144906,0.33159584,0.05983276,0.2954675,-0.069392234,-0.4672018,0.17269151,-0.2550225,-0.49660772,-0.06833899,-0.36285633,-0.49945408,-0.02897838,-0.5248716,-0.2518346,0.8226831,-0.51483065,-0.053229917,-0.22498836,-0.10262544,-0.2522269,0.39125368,0.31291124,0.21545418,-0.026976151,0.061401024,-0.08584515,-0.31389394,0.27525064,0.026869576,0.21136598,0.40418923,0.08102239,0.06440058,0.63639855,0.52387255,0.16038512,0.80065626,0.20539059,-0.19435804,0.37688312,-0.40654835,-0.112979576,-0.733271,-0.46816826,-0.19066098,-0.49790817,-0.48556647,-0.19889155,-0.33664414,-0.7029924,0.26411512,0.040244307,0.21403961,-0.06485055,0.25244147,0.2844474,0.023827812,0.07838849,-0.054438855,-0.22751208,-0.5303173,-0.51548994,-0.6462923,-0.5990614,0.26760426,0.905947,-0.12920944,-0.26268727,-0.09315934,-0.47689554,0.023674471,0.31500185,0.33311638,0.3556746,0.34724128,-0.07897801,-0.72234327,0.39129364,-0.082642436,-0.07195088,-0.7383002,-0.14172691,0.7378833,-0.6489016,0.6934618,0.32733673,0.15725844,-0.025606966,-0.54184896,-0.37593156,-0.012205227,-0.2837667,0.5843588,0.1035871,-0.58150417,0.47656643,0.07082883,-0.008168107,-0.5409671,0.69090325,-0.014460687,-0.008214549,0.18250927,0.49488506,0.0090356525,-0.26524484,-0.022537133,0.26762536,-0.50357664,0.26771688,0.38848785,0.04023737,0.55286044,-0.059384298,-0.3596358,-0.5601422,-0.29897135,-0.50736195,-0.21724635,0.08947131,0.03778183,0.27208087,0.18909764,-0.121214606,0.3946122,-0.17972408,0.21302813,-0.04445343,-0.30050117,0.28843725,0.42225745,0.31847,-0.4252353,0.59978986,-0.041313816,0.14589567,0.074747466,0.12825315,0.53902787,0.35242766,0.43381044,0.016207544,-0.24234973,0.19133091,0.9352067,0.35605055,0.33067253,0.13461278,-0.34231105,0.31047305,0.16973586,0.0402341,0.016876992,-0.23805517,-0.10834845,-0.03856008,0.2979929,0.17816064,0.07154587,0.36657187,-0.1745247,-0.10321544,0.26181164,0.26517817,-0.03570824,-0.9592425,0.31490198,0.23092686,0.701582,0.47158486,0.022968376,-0.04062936,0.37499866,-0.32457215,0.13208932,0.3969632,-0.15326306,-0.3980035,0.59138834,-0.45882702,0.5632673,-0.085288286,0.075655125,0.031313557,0.36502287,0.1448779,0.98202693,-0.05092647,0.13468274,0.1689751,-0.3213039,0.20347074,-0.39202443,0.16764641,-0.37008584,-0.31981796,0.543956,0.3835882,0.25241497,-0.24191381,-0.103673026,-0.048271544,-0.22557124,0.005874149,-0.037633963,-0.031041432,-0.19922136,-0.74424493,-0.4489924,0.45352557,-0.07796623,0.061938237,0.22703509,-0.2194904,0.3603059,-0.04091778,0.1002546,0.012075436,-0.4042312,-0.10200969,-0.21555752,-0.6135198,0.38702807,-0.492833,0.44368297,0.22254448,-0.01932805,-0.5097118,0.24905883,0.2434798,0.6538098,-0.18086578,-0.18484624,-0.39411253,-0.1916741,0.3624667,-0.31562623,-0.12813248,-0.35551903,0.079262204,-0.67091054,0.46718928,-0.36100432,-0.23884602,0.0013253053,-0.29274434,-0.056849338,0.4132227,-0.15949339,-0.24041119,0.07690565,0.04086244,-0.20173727,-0.022122724,-0.32961982,0.32618925,-0.16912028,0.04965349,-0.12692277,-0.21599077,-0.1317531,0.31236184,0.029835744,0.18543202,0.3579999,-0.0786474,-0.3322832,-0.08832167,0.07256386,0.44309106,0.19603129,0.08107027,-0.10176599,-0.3429419,-0.21352682,0.28020704,-0.1539248,0.14772826,0.20217842,-0.62639344,0.52929443,-0.093893655,1.0744176,0.12506773,-0.32860318,0.019264491,0.5055214,0.11061556,0.22254562,-0.117316626,0.84874266,0.6766659,-0.029320668,-0.26064977,-0.423254,-0.09543955,0.27518278,-0.20637517,-0.19168854,-0.051734436,-0.853076,-0.16179107,0.18716805,0.088497356,0.24880725,0.04571871,-0.13436985,-0.027576517,0.26420382,0.49145934,-0.54844743,-0.0005403241,0.28247368,0.17512235,0.11206148,0.19138826,-0.27643767,0.4094006,-0.63584554,0.029285403,-0.22810052,0.053253293,-0.26815668,-0.1127347,0.2528823,0.044666924,0.37931496,-0.008210794,-0.3064967,-0.36656204,0.6601395,0.07365176,0.3050519,0.6877417,-0.14145163,0.10669522,0.22284572,0.5003994,1.3503679,0.08829692,-0.13218941,0.41775778,-0.37471825,-0.5635124,0.10612702,-0.54251456,0.09274821,-0.0007646799,-0.29940927,-0.21412212,0.22188608,0.029881235,-0.07215646,0.21547692,-0.46924388,-0.32807758,0.22518227,-0.22984968,-0.27978218,-0.2744538,0.20470414,0.69719696,-0.44353968,-0.015668424,0.040338263,0.39134732,-0.38955742,-0.70131,0.20993157,-0.34781083,0.5400156,0.12398153,-0.4001171,0.21956368,0.21218675,-0.37263057,0.23635897,0.53227305,-0.43769443,0.0056849956,-0.060591806,-0.228668,0.94428116,0.082935944,0.06053245,-0.59974194,-0.39402562,-0.93339765,-0.27363193,0.29991373,0.19381934,-0.11229394,-0.44499797,-0.11698964,0.05613052,0.13206841,0.1682797,-0.61421496,0.41946346,0.114028625,0.43573177,-0.042829983,-0.8371432,-0.079243295,0.09945599,-0.24784301,-0.49377784,0.64325297,-0.3176197,0.70638466,0.15161711,0.038391154,0.25437415,-0.53317285,0.30787188,-0.30336294,-0.30764675,-0.6314999,0.08982877 +985,0.42879125,-0.177132,-0.5491368,-0.1756334,-0.41612896,0.25506592,-0.20720744,0.18784128,0.31755584,-0.4222545,-0.07453173,-0.26628885,-0.10962516,0.4766948,-0.16069922,-0.90634257,0.0008549946,0.18859985,-0.7123988,0.3547938,-0.5665569,0.40020567,0.13687585,0.39936706,-0.1148888,0.04608259,0.33255172,-0.115746655,-0.06180825,0.18420736,-0.28461283,0.10968555,-0.5163341,0.22801633,0.082507506,-0.21368702,0.056975212,-0.32306507,-0.18924887,-0.7673874,0.35112217,-0.70589113,0.48076895,0.09181881,-0.42429683,0.031029131,-0.004536765,0.33507854,-0.36582258,0.24047528,0.16967323,-0.28922638,-0.07712604,-0.19779019,-0.3750301,-0.44791242,-0.5551504,0.105744824,-0.55708164,-0.15283068,-0.16317323,0.24899459,-0.25137526,0.025880218,-0.2246186,0.2533713,-0.35181096,-0.19408242,0.424319,-0.13052072,0.067316614,-0.41753918,-0.09482862,-0.14001247,0.3281429,-0.010754517,-0.23146902,0.17519559,0.36398807,0.57669574,-0.009793659,-0.3302767,-0.27191016,-0.0028007796,0.21806607,0.46930096,-0.03697266,-0.20639233,-0.2450891,-0.0149691915,0.24020246,0.22060318,0.04726406,-0.41924405,-0.026686583,-0.14196539,-0.22986268,0.27672294,0.49437505,-0.43067402,-0.29707164,0.34725136,0.65602344,0.15357885,-0.105577864,0.22805007,-0.03929874,-0.7347073,-0.21310595,0.39474362,-0.15756781,0.42893448,-0.30240044,0.05548019,0.6490653,-0.14102277,-0.05919798,-0.12143193,-0.11272963,-0.030116934,-0.35227892,-0.10138713,0.21826339,-0.4247879,0.041714158,-0.23751597,0.9216633,0.19816507,-0.9356107,0.3697041,-0.54994315,0.21867196,-0.06603188,0.7236691,0.7929674,0.305497,0.15842521,0.94264615,-0.55651045,0.14936018,-0.12175054,-0.33820844,0.061411176,-0.124445714,-0.053847883,-0.5236486,0.19379473,-0.30097532,-0.02138718,0.096650675,0.34179306,-0.46966633,-0.10643594,0.034498077,0.6530836,-0.39689144,-0.08956415,0.8116931,0.8635291,0.97508246,0.1391052,1.5536562,0.4636328,-0.22276466,-0.015227245,-0.4223492,-0.6968999,0.15378809,0.26426846,0.3257727,0.43059868,0.054958306,0.018893285,0.41674748,-0.32451612,0.10710718,-0.24564032,0.064610206,0.05012006,-0.09064625,-0.27127066,-0.09594818,0.15406886,0.04525773,0.014307976,0.26987514,-0.12770574,0.39110562,0.10798519,1.1855613,-0.019390533,0.09909717,0.07167979,0.16835912,0.30296725,-0.111143366,0.023173472,0.29841802,0.44697472,-0.15652682,-0.6426867,0.074143834,-0.18062231,-0.44330093,-0.2928093,-0.23878013,0.054877043,-0.0039744503,-0.36670032,-0.13375506,0.040351503,-0.21691503,0.39088768,-2.1975532,-0.21394573,-0.17514575,0.30133864,-0.13403107,-0.308705,-0.29632118,-0.42647573,0.31861043,0.4120527,0.26377544,-0.6843295,0.38333383,0.30842274,-0.35723612,-0.113330945,-0.7056088,-0.12647179,-0.052782297,0.24117081,-0.054212652,-0.094305284,-0.11681003,0.19764563,0.6506586,-0.07474155,-0.1135854,0.19183062,0.5048894,0.15230213,0.55450267,0.125594,0.5729103,-0.20877253,-0.17880681,0.35618928,-0.47763327,0.3593271,0.29610762,0.14683504,0.3882494,-0.49844965,-0.71458066,-0.78639805,-0.48532838,1.1792582,-0.39228058,-0.4155052,0.3041392,0.019681424,-0.2856822,-0.018312931,0.3998244,-0.17136435,-0.14329608,-0.7619897,0.05610309,0.12429578,0.29884782,-0.08463287,-0.06441906,-0.19775571,0.88602835,-0.23213983,0.3783405,0.35614967,0.1237251,-0.2048848,-0.56635374,0.03675509,0.91398925,0.30040714,0.079736285,-0.18805742,-0.2819026,-0.17019153,-0.16346094,0.13018674,0.54970497,0.78444034,-0.023279494,-0.04649247,0.46933356,-0.15081657,0.072691426,-0.123122014,-0.29925635,-0.12642695,0.036223505,0.58580506,0.43012676,-0.18512727,0.43140024,-0.15304933,0.10848958,-0.1252613,-0.5765251,0.589596,1.0107844,-0.11086811,-0.35298043,0.49046716,0.4027364,-0.55496347,0.3081717,-0.55382437,-0.17084996,0.65374744,-0.07826735,-0.3747534,0.06228395,-0.32392773,0.08646943,-0.94327563,0.16964436,-0.19022825,-0.37068224,-0.6075058,-0.026348082,-3.3843312,0.21064381,-0.42130956,-0.017742392,-0.23080333,-0.042543795,0.22921468,-0.43106943,-0.59319484,0.01895173,0.0860978,0.38901582,-0.08949159,0.15406425,-0.39198,-0.14484715,-0.2291615,0.16214836,0.025673714,0.25245348,0.10787688,-0.27661592,0.18975098,-0.36998406,-0.43391725,-0.003205789,-0.55492157,-0.44715214,-0.31953403,-0.48698616,-0.32564119,0.6565925,-0.49740034,-0.12957731,-0.20157556,0.13405094,-0.100472756,0.3726761,0.18371531,0.3313757,0.13112393,-0.05865815,-0.3592679,-0.40890726,0.09947363,0.032040484,0.08000897,0.5172067,-0.065150455,0.17796263,0.40394565,0.7479142,-0.07085405,0.53138626,0.21394062,-0.07251786,0.27292427,-0.3640793,-0.14456289,-0.5882621,-0.3453283,-0.24056305,-0.47978804,-0.645575,-0.14858927,-0.31002516,-0.82671845,0.39835757,0.04994389,-0.055944223,-0.081652455,0.43815884,0.45488623,-0.03140049,0.12135533,-0.21411636,-0.3022847,-0.40000126,-0.58450836,-0.56364644,-0.5525008,0.14433488,1.3207953,-0.19315307,-0.07353949,-0.13884051,-0.27492037,-0.008518187,0.27515,0.1962129,0.2858685,0.29604298,-0.19851801,-0.58569354,0.39056945,0.05190335,-0.3029714,-0.6083183,0.07080998,0.677266,-0.69788927,0.7730428,0.25054938,0.1664896,0.17131786,-0.58926505,-0.3008876,0.18028425,-0.27871433,0.5231575,0.12302249,-0.4396545,0.53628665,0.3516623,-0.10190896,-0.8362092,0.15783775,-0.05249333,-0.38596085,0.1103056,0.3777456,-0.03359308,-0.014244592,-0.23746006,0.14948416,-0.44523355,0.12480913,0.3369429,0.06230518,0.10590722,-0.117198534,-0.32623324,-0.64540005,-0.081204705,-0.59496677,-0.11542972,0.044734124,0.0593444,0.13930851,0.04013071,0.0026475957,0.61423403,-0.30564436,0.20259807,0.0022093307,-0.08581502,0.17741121,0.4652388,0.19043647,-0.49087587,0.5153397,0.098304346,0.013535589,-0.20625627,0.21807253,0.4607145,0.34717122,0.41139787,-0.13345104,0.0011913946,0.2873342,0.7125899,0.08018148,0.3941047,0.18488964,-0.1907849,0.49225885,0.266259,0.16524975,-0.14691898,-0.13563918,0.0020514715,0.07617941,0.2520887,0.44329906,0.12153579,0.43898472,-0.05286775,-0.17307101,0.13706036,0.22182277,-0.042538386,-1.1348206,0.23617288,0.26504868,0.6350755,0.5220727,-0.031051252,0.06801726,0.415269,-0.3370029,0.08444152,0.19978221,-0.044009306,-0.41958067,0.5030776,-0.5886014,0.35108176,-0.39316693,-0.0076928013,0.0523413,0.26239967,0.38578084,0.77507937,-0.092526756,-0.0094622625,-0.057588868,-0.17059025,0.13526693,-0.2949622,0.0077398843,-0.4633586,-0.4318803,0.4621203,0.38684747,0.3815005,-0.4244595,-0.07948623,0.13163498,-0.0839112,0.070187666,-0.12255804,-0.012956555,0.067867495,-0.6113638,-0.25468335,0.62306243,-0.028695852,0.118958786,0.05730657,-0.32975864,0.27379182,-0.06607694,-0.03330481,-0.07563112,-0.7090341,0.01508603,-0.21076891,-0.47460437,0.18519807,-0.38235694,0.16332977,0.37415528,0.062345058,-0.49681512,0.29556847,0.0749478,0.85863477,0.14602827,-0.12698172,-0.38801834,0.24999537,0.22621265,-0.3704521,-0.024414381,-0.26685438,0.0703073,-0.580328,0.55556697,-0.14826672,-0.2854175,0.11383889,-0.11020521,-0.14464697,0.518153,-0.39474788,-0.19692436,0.17392002,-0.12479011,-0.20777453,-0.10156078,-0.40752468,0.3281341,0.0060990835,-0.077553436,0.10077883,-0.050906263,-0.15050162,0.4981627,0.16714562,0.19430886,0.25009927,-0.053805858,-0.5143066,0.10001323,-0.013885127,0.34057274,0.05150544,-0.23184313,-0.21316521,-0.41407305,-0.19869079,0.2826775,-0.20421934,0.16160922,0.12293941,-0.5662803,0.80542594,0.33883643,1.2145483,-0.0009107547,-0.27207214,0.031640716,0.5659607,0.22519334,0.04642139,-0.33622342,0.69285476,0.65567195,-0.16819887,-0.024845421,-0.31518587,-0.1241011,0.1833388,-0.24419358,-0.008506932,-0.013220592,-0.64642507,-0.31659064,0.096033216,0.16718046,0.1139851,-0.089681625,-0.07083182,0.056527387,0.03344438,0.38529927,-0.33465105,0.062825605,0.17376797,0.18841138,0.096128404,0.20751855,-0.2516921,0.5072692,-0.65951556,0.19897053,-0.3637893,0.0752709,-0.008128881,-0.15452473,0.19041075,0.0613232,0.22280441,-0.1806928,-0.20210125,-0.18917592,0.7809081,0.34017393,0.4245153,0.7765666,-0.21987942,0.11468899,0.20123528,0.5439178,1.4295871,-0.13144204,-0.04404695,0.18865061,-0.23557536,-0.5364254,0.2586868,-0.3516114,-0.04477316,-0.21107127,-0.43979383,-0.47536406,0.3519464,0.17342629,0.15262556,0.12214683,-0.4460612,-0.10524164,0.5525345,-0.3307704,-0.26324543,-0.31662172,0.41233826,0.7378184,-0.17114326,-0.37112132,0.019878937,0.2916875,-0.45628753,-0.5939893,0.00793285,-0.40475103,0.3297486,0.16698687,-0.2509287,-0.0012246573,0.37983012,-0.43330064,0.08731692,0.32187435,-0.24868083,0.16478446,-0.16244233,-0.20434393,0.956358,-0.1919312,0.06452122,-0.7942802,-0.55456775,-1.0134187,-0.18988214,0.5453996,0.1687756,0.09465225,-0.55944186,-0.26620224,-0.07600935,-0.113538966,0.15652272,-0.3970165,0.321287,0.12043779,0.45659703,-0.102428846,-0.8465162,0.05142965,0.1340288,-0.3385558,-0.4750344,0.48478928,-0.15299939,0.78045475,-0.0020302173,0.021328913,0.18745343,-0.5616634,0.39762232,-0.43160582,-0.25971636,-0.7610091,-0.014287195 +986,0.2057733,-0.11843746,-0.5424543,-0.08595695,-0.32560393,-0.0013450632,-0.28335056,0.5211661,0.29631782,-0.16633715,-0.3128949,-0.09184592,-0.0029398203,0.14753376,-0.19144915,-0.6838564,-0.119650505,0.24240667,-0.5304939,0.55357224,-0.35904422,0.21309173,0.11214443,0.26111504,0.051492035,0.20778902,0.237318,-0.112335265,0.047508772,-0.24023409,-0.09239545,0.3943901,-0.7461944,0.36677966,-0.3973695,-0.15837695,0.17027856,-0.40826583,-0.23238628,-0.74658984,-0.037982,-0.8033021,0.46609125,0.2507641,-0.26243567,-0.015142093,0.14489736,0.18386073,-0.3132757,0.045434397,0.27237636,-0.24583523,-0.104271494,-0.35888383,-0.09355392,-0.35076872,-0.36202583,-0.06181814,-0.52814263,-0.12635602,-0.18552119,0.12542568,-0.27588245,-0.053010896,-0.31521294,0.24679117,-0.3804319,-0.044736966,0.32706323,-0.34525082,0.31392995,-0.46762714,-0.033033907,-0.09961358,0.45200458,-0.010482629,-0.1384757,0.33341816,0.2516593,0.33134806,0.18490875,-0.29522505,-0.2115897,-0.19702683,0.23358627,0.32908627,-0.18280298,-0.1432388,-0.13112909,0.04534,0.3887693,0.56073564,0.06307711,-0.21778046,-0.10581917,-0.4334277,-0.12983595,0.47099915,0.5495312,-0.35675302,-0.10069934,0.30037418,0.5439884,0.35562778,-0.09074265,-0.095165946,-0.004477605,-0.5075815,-0.099111855,0.08820159,-0.0872795,0.47792348,-0.043200642,-0.098081835,0.70920986,0.008380125,-0.13787092,0.1847511,0.07167743,0.043499824,-0.3914143,-0.18463224,0.3758379,-0.6090581,0.16158994,-0.2853117,0.58685243,0.07144292,-0.6669937,0.31475118,-0.625109,0.13765974,0.10369747,0.4560993,0.49389067,0.63412833,0.36292472,0.8396032,-0.24189025,0.14171548,-0.06366531,-0.24243021,0.090655394,-0.14386122,0.032418203,-0.35224828,0.20862901,-0.29606786,0.13722947,0.08542559,0.10821942,-0.39247194,-0.17484552,0.5225687,0.84593457,-0.17099822,-0.0778104,0.538693,1.111209,0.9882962,-0.048477877,1.0467949,0.06951987,-0.12438526,-0.12141148,0.08609887,-0.78301764,0.11776515,0.5389406,0.043196242,0.16299592,-0.12347057,0.109346546,0.1354324,-0.34170362,-0.057610396,-0.023821443,0.34461316,0.081075676,-0.112778105,-0.37380755,-0.27631924,0.015735684,-0.08428481,-0.13365431,0.26376382,-0.0025358398,0.21650796,-0.053813767,0.97826976,-0.07154239,0.22179873,0.27764228,0.49155775,0.34682712,-0.0917294,0.07793436,0.5224535,0.081337355,0.080968015,-0.41274622,0.15884481,-0.39473262,-0.3753637,0.029108882,-0.3455391,-0.22797315,0.13157247,-0.5219206,-0.020979159,-0.0129393665,-0.172244,0.50684637,-2.9186776,-0.027376791,-0.18990119,0.31420848,-0.28726068,-0.14026396,-0.16454448,-0.53084093,0.2736143,0.19320817,0.6476129,-0.49232125,0.2991682,0.6442085,-0.5447406,-0.22793584,-0.63509625,-0.031958703,0.023460284,0.30427065,0.107447036,-0.04480948,-0.046454262,0.14074248,0.6142745,0.22161658,0.1644961,0.47757554,0.36025167,-0.04016602,0.4742701,-0.22421531,0.5424219,-0.40688953,-0.18531926,0.33753118,-0.3348311,0.505809,-0.09881192,0.041649073,0.6579046,-0.3908324,-0.82790637,-0.41781,-0.3774253,1.1839072,-0.46789935,-0.35808694,0.097225435,-0.08322201,0.016952733,0.109243006,0.54869586,-0.0018230528,0.3420142,-0.5312523,-0.009093533,-0.104983084,0.2960839,0.025879676,-0.108391784,-0.4439621,0.85862356,0.03167513,0.5637248,0.28746778,0.14125924,-0.06661276,-0.44792148,-0.047287796,0.7212364,0.45723686,0.02350741,-0.2180438,-0.2164637,-0.12547138,0.046611577,-0.052670848,0.6418628,0.43772867,-0.28930792,0.11468362,0.36486462,0.24581836,0.016277587,-0.16320173,-0.30977234,-0.10352897,0.08596005,0.39298463,0.9382549,-0.01047194,0.09415897,0.072198056,0.35758686,-0.15390365,-0.5191528,0.46882454,0.2353919,-0.0089814365,-0.07648498,0.48953757,0.77596515,-0.24344297,0.48569632,-0.5441641,-0.3868939,0.49404183,-0.22812754,-0.42171612,0.2722556,-0.29448083,-0.051452,-0.67665964,0.35172644,-0.45511305,-0.32892442,-0.33354533,-0.07624391,-2.8663514,0.25910506,-0.06988361,-0.027861616,-0.39617744,-0.030196123,0.16535826,-0.5313062,-0.6757269,0.09183506,0.22288716,0.39348868,-0.29280418,0.07507017,-0.2789413,-0.45842195,-0.045463245,0.47224703,0.06862076,0.23511557,-0.25434658,-0.33286017,-0.2496111,-0.009582977,-0.1861759,0.2603631,-0.5255291,-0.18032561,-0.044087812,-0.46591845,-0.037052844,0.41871762,-0.56324905,0.11892144,-0.016658338,0.20355736,-0.1436726,-0.11093982,0.20904547,0.27082714,0.056390632,-0.07861122,-0.02546713,-0.26441422,0.5557433,0.08873171,0.32460675,0.2616919,0.003680865,0.024231011,0.5089579,0.5469287,-0.40169394,1.1113847,0.12527958,-0.024002254,0.2892009,-0.17641456,-0.41415718,-0.6409512,-0.11896136,-0.010510936,-0.3574462,-0.40082774,0.20227043,-0.22388965,-0.762234,0.5491896,0.020230865,0.34210667,0.037586886,0.2313798,0.3711928,-0.4899535,0.06562797,0.05423892,0.013167765,-0.39827147,-0.24821198,-0.78552777,-0.32504117,0.10985541,0.8860516,-0.47206292,0.03460669,0.18021716,-0.101475745,0.10129038,0.076559015,0.11085126,0.09646169,0.6564947,0.29714102,-0.45668152,0.35437787,0.0026669155,-0.08876047,-0.32209542,0.17847633,0.53649443,-0.7908041,0.63091654,0.4152752,-0.06680923,-0.23591924,-0.7234499,-0.2217827,-0.005428955,-0.2132508,0.44666913,0.25707212,-0.8527279,0.2444247,0.0005661156,-0.6610465,-0.84503365,0.4505509,-0.16906051,-0.2699206,-0.03170164,0.3647736,0.06883519,-0.21273066,-0.013757326,0.2565765,-0.24831297,0.21865158,0.10334203,-0.1683176,0.22494917,-0.092102885,-0.17840715,-0.7963254,0.07730673,-0.4637154,-0.3653456,0.5116294,-0.10477638,-0.34917584,0.07172524,0.19525762,0.33667025,-0.2127375,0.26089528,0.0061690114,-0.31365865,0.68532497,0.43034968,0.55269635,-0.38309813,0.5297958,0.14668965,-0.1751939,0.029794177,0.21877809,0.29468173,-0.22755986,0.2627087,-0.20512725,0.027896902,0.23851424,0.5995819,0.26891515,0.1784807,0.09660388,0.053638827,0.4069248,-0.045582335,0.1312976,-0.2520409,-0.69021606,0.05351348,-0.25015986,-0.020734485,0.49894068,0.21814485,0.16814516,0.13819164,-0.05068864,-0.07180882,0.3646537,0.0146249905,-0.9416494,0.27115604,0.022018129,0.90095943,0.5264361,0.28183267,-0.089312054,0.65653414,-0.21946378,0.035569195,0.49501637,0.043703612,-0.3548216,0.71107286,-0.48007122,0.42791107,-0.1607294,-0.10211737,0.3485415,0.089647554,0.4197185,0.6649177,-0.19289434,-0.102404594,-0.08257577,-0.24138458,-0.09903708,-0.26897284,0.07892799,-0.33809772,-0.5354828,0.52895576,0.45662966,0.40446433,-0.3523331,-0.026159218,-0.114597134,-0.10168853,0.31367403,-0.042277377,-0.17085008,0.15797038,-0.38114664,0.062522404,0.7209217,-0.14042467,0.07327197,-0.2543205,-0.26546213,0.21297936,-0.24467213,0.07560202,-0.0840474,-0.820343,0.15404452,-0.38257775,-0.50015336,0.29303846,-0.14388056,0.11431473,0.07094561,-0.08679857,0.041399095,0.41705433,0.16327524,0.71377563,-0.06611229,-0.11553076,-0.3229172,0.25729838,0.026777165,-0.10752504,0.114156805,-0.37666336,0.20314205,-0.56188244,0.33412766,-0.18822141,-0.39656207,-0.026275987,-0.12710615,-0.14125194,0.6765272,0.041772705,-0.11203953,-0.081460916,-0.21765618,-0.45574942,-0.08226704,-0.37676835,0.11118419,0.24656515,-0.09506202,-0.18030758,-0.19980888,-0.06802758,0.31133345,0.03504822,0.2738224,0.008502196,0.08970558,-0.30011654,0.23410182,0.032851633,0.52283823,0.16359815,-0.00022217508,-0.08297032,-0.3200312,-0.36678913,0.09343812,-0.20838839,0.3091153,0.17581093,-0.065500714,0.917039,-0.06419875,1.1001968,0.0127516985,-0.38422227,0.09041327,0.52258587,-0.15338387,-0.07998327,-0.34858713,0.9689923,0.5485147,-0.10654831,-0.021935647,-0.22215043,-0.02944699,-0.034905028,-0.21550255,-0.010568194,0.044859905,-0.3799895,-0.11542552,0.14325099,0.30033746,0.19464444,-0.24730104,-0.21405001,0.18495631,0.2161028,0.16878557,-0.567986,-0.46337315,0.20403218,0.20380092,-0.119780384,0.021527888,-0.28573993,0.43638086,-0.72427034,0.12902106,-0.6743308,0.03605331,-0.3667802,-0.36775145,0.047718327,-0.15239055,0.45593867,-0.5263054,-0.37627587,-0.05927756,0.39179268,0.1332724,0.27017707,0.622518,-0.15059827,-0.02991943,0.0478657,0.5850148,0.83482546,-0.5652093,-0.2261671,0.4091524,-0.43270317,-0.58608556,0.18594839,-0.6737172,-0.030502645,-0.20519464,-0.4062135,-0.34491977,0.124882124,0.016174063,0.05055864,-0.0010663271,-0.75258875,0.18088596,0.2501344,-0.29234567,-0.21351828,-0.33781412,0.3423535,0.7813938,-0.12929736,-0.5731134,0.06583472,0.039102074,-0.2678749,-0.4990593,0.039120663,-0.2279628,0.044702306,0.08671569,-0.39554742,-0.04866153,0.26611972,-0.5013829,-0.064194806,0.042206425,-0.25457904,0.077311456,-0.23422082,0.13205712,1.0226328,-0.29243097,-0.1211125,-0.36174133,-0.5783463,-0.8325264,-0.34094942,0.40569222,0.046763923,0.07974473,-0.49969366,-0.09744861,-0.28146526,-0.27342346,-0.122584336,-0.33332327,0.3650202,0.112351805,0.5157035,-0.4285321,-0.97478575,0.39454606,0.14065816,-0.08228656,-0.55303353,0.34608185,-0.14513324,0.9019528,-0.016335957,-0.17844804,0.1623906,-0.5869631,0.1395009,-0.2870677,0.0762781,-0.55289394,0.24704663 +987,0.65272754,0.078889646,-0.9591426,-0.16901362,-0.33206287,0.0018424107,-0.40926448,0.43046883,0.4753697,-0.45619413,0.0784683,-0.10469226,-0.07683414,0.029381542,-0.085593484,-0.61435837,0.1800334,0.14552002,-0.4045614,0.5077069,-0.5149722,0.2447654,0.1648986,0.36494267,-0.092328794,0.289226,0.02422675,-0.17221713,0.14755256,-0.16295205,0.1022644,0.027346099,-0.62318116,0.10283383,-0.12495056,-0.15108088,0.10454383,-0.37350515,-0.3018975,-0.5800286,-0.016776001,-0.7737071,0.6809726,0.1657688,-0.19214265,0.20297892,-0.05250896,0.096773535,-0.054444194,0.17694719,0.37774572,-0.2468255,-0.47074258,-0.2086708,-0.3043467,-0.6579854,-0.65883946,-0.13112305,-0.6621972,0.072152115,-0.34709552,0.17401665,-0.3276926,-0.055869013,-0.19871932,0.22585131,-0.43814874,0.002330297,0.09888665,-0.15239699,0.2527859,-0.6516752,-0.0070550838,-0.057053268,0.2261873,0.09225384,-0.06648921,0.004165545,0.18028744,0.392428,-0.031760912,-0.19823153,-0.33321905,0.11326321,0.10732573,0.37596,-0.11805936,-0.11501173,-0.16109037,-0.044781398,0.4411517,0.34694836,0.16096039,-0.334267,-0.020187104,-0.06305951,-0.5164423,0.6126371,0.53802544,-0.5069926,0.21142252,0.57108617,0.46503678,0.38267985,-0.22796895,0.30096325,-0.14249586,-0.42166018,-0.10112416,0.15345259,-0.14168532,0.44283715,-0.075257294,0.24451832,0.70420855,-0.07597075,-0.008709858,0.3852875,0.017456662,0.2934898,-0.29631498,-0.051959846,0.3146033,-0.59053296,-0.06469903,-0.38666192,0.5086145,-0.30442822,-0.7806135,0.36730197,-0.49159408,-0.0152882235,-0.17533946,0.6681113,0.8381767,0.6142714,-0.0010022322,0.79751056,-0.48695013,0.092253566,-0.1335511,-0.25967303,0.34910813,0.067076996,0.45339736,-0.46745113,-0.071057506,0.025521858,-0.30388093,0.1303485,0.56474334,-0.29563433,-0.34080675,0.27730325,0.58780044,-0.2524456,-0.1049545,0.53093755,1.2890009,0.89716214,0.16654134,1.0119268,0.13601123,-0.036585514,-0.28708535,-0.09796675,-0.8206229,0.2531025,0.253998,0.162502,0.3708427,0.06849973,-0.042775597,0.33523884,-0.034378067,-0.14143953,0.05066237,0.33502832,-0.13145675,-0.3225056,-0.242175,-0.32846236,0.16107698,0.14751063,0.03958867,0.34952188,-0.19718938,0.23372371,0.1404351,1.0783274,-0.015015443,-0.09200931,0.031138167,0.28663456,0.27553228,0.034469683,-0.043606978,0.36606243,0.2144159,0.08110029,-0.2873886,0.16600014,-0.15186362,-0.5054491,-0.26656246,-0.3327228,-0.122776866,-0.3045316,-0.2083735,-0.013027355,0.02475422,-0.55606294,0.3112366,-2.703023,-0.062141526,-0.11283449,0.3489436,0.0749684,-0.18191433,-0.2422009,-0.37502265,0.27427343,0.2985574,0.5539047,-0.5184699,0.77125216,0.7004207,-0.64098734,-0.23482119,-0.614509,-0.063818425,-0.16256718,0.348258,0.1362757,-0.3015999,-0.008067216,0.16023202,0.5586128,-0.07106858,0.2350903,0.33339646,0.5957258,-0.20111167,0.637964,-0.058721915,0.4330703,-0.12010205,-0.16115819,0.21738629,-0.38457736,0.25542185,-0.3687781,0.0951682,0.2876682,-0.13829808,-0.8493708,-0.29311642,0.15295693,1.202483,-0.36776438,-0.5222626,0.1962039,-0.13356932,-0.36629176,0.21091163,0.4757475,-0.18352616,0.0653103,-0.80649376,0.026925089,-0.1003075,0.088602275,0.020080864,0.020241229,-0.41815183,0.75182796,0.024471551,0.53413254,0.45744562,0.1889218,-0.023951372,-0.19566762,0.15780272,0.99546653,0.29588345,0.12293708,-0.38257203,-0.1926717,-0.17150582,0.11242074,-0.037935395,0.5654445,0.4359618,-0.06789458,0.18450575,0.27287123,-0.1495672,-0.13591547,-0.39290616,-0.46393433,-0.08271118,-0.0034289882,0.47387123,0.9254691,0.003952086,0.3412887,0.1482572,0.21476264,-0.32582578,-0.55847853,0.36357486,0.360925,-0.1987849,-0.14341652,0.6488093,0.50378746,-0.27894282,0.54246134,-0.6112294,-0.45265818,0.31735626,0.07438803,-0.3702507,0.42966652,-0.4386411,0.03599019,-0.90162724,0.24310823,-0.47643638,-0.43275928,-0.4261916,-0.20989062,-2.797434,0.35551,-0.18462269,-0.11014539,-0.1711912,-0.014326721,0.25497743,-0.5132869,-0.60212594,0.050385933,0.17172976,0.5747755,-0.21620303,0.031453345,-0.269665,-0.56724995,-0.10194942,0.36800185,0.0024646719,0.2269253,-0.046301603,-0.43863937,-0.14729004,-0.07926652,-0.05131686,-0.03821657,-0.49227998,-0.11630491,0.0025357567,-0.36550424,-0.22314394,0.6138609,-0.32254907,-0.046579447,-0.18343991,0.159109,0.22482638,0.30505803,-0.12170348,0.05257477,0.009289692,0.06845954,-0.11675802,-0.16136922,0.21579368,-0.037570566,0.39235485,0.36690375,-0.010488282,-0.09388336,0.65583235,0.41106156,-0.13158141,1.0320095,0.07243513,-0.11446629,0.25585642,-0.1345306,-0.11765895,-0.67190605,-0.2958214,-0.19995917,-0.43057764,-0.26018813,0.05610791,-0.3074398,-0.8216036,0.5012923,0.13660972,-0.09652499,-0.045391083,0.5850572,0.5195147,-0.125629,0.0776505,-0.18235008,-0.121470034,-0.35753906,-0.26526332,-0.8705326,-0.27756628,0.22595586,1.1245676,-0.36667013,0.009328534,0.16051011,0.05080567,0.09730441,0.16128704,0.22522372,0.060911458,0.48376742,0.17766333,-0.6006776,0.31388423,-0.41688225,0.015286717,-0.74660397,-0.12703903,0.7376774,-0.82461065,0.20047228,0.5494176,0.07193225,0.088345975,-0.7259068,-0.17781818,0.21548219,-0.19875352,0.4511548,0.17569214,-0.9726162,0.5791716,0.26773483,-0.28480774,-0.71501607,0.6104431,-0.1769734,-0.26571086,-0.10335723,0.48843208,0.2236008,0.059363633,-0.32926944,0.088732995,-0.45614514,0.422236,0.07467646,-0.3220101,0.44536236,0.08074517,-0.1004403,-0.82809114,-0.18410933,-0.3864467,-0.35809696,0.38462698,-0.16750096,0.07128044,0.055295676,0.27036572,0.32670608,-0.5712215,0.14950062,-0.22726887,-0.2889515,0.64567566,0.4964051,0.4725561,-0.31221065,0.6357041,-0.032412063,-0.22374974,-0.00400576,0.011506294,0.3229058,-0.0363355,0.27976373,0.22739156,-0.16594379,0.17119354,0.7952595,-0.001305682,0.24630783,0.261892,-0.03787831,0.33233956,-0.04275027,0.17232366,-0.28031504,-0.5146421,-0.063209675,-0.28337777,0.28879544,0.42877725,0.0706437,0.5113745,-0.18504544,-0.09710569,0.006288891,0.37397555,0.3115436,-0.94968605,0.1776637,0.24582039,0.3221852,0.5508805,0.03512458,0.12306849,0.50126845,-0.17918311,0.20868564,0.3247545,0.115480304,-0.31951064,0.50639904,-0.6680209,0.25583407,-0.1515516,0.10391418,0.31707734,-0.052777365,0.54237807,0.8929607,-0.12873909,0.04501578,-0.10290844,-0.34305838,-0.2809819,-0.16582836,0.07133897,-0.38365546,-0.2803482,0.8308123,0.39043364,0.48298463,-0.21427566,-0.1004251,0.2196802,-0.1935041,0.2797099,-0.019647188,-0.104765855,-0.024996703,-0.545657,-0.09062075,0.52222514,0.20502038,-0.08441442,0.04873495,-0.057697218,0.2997783,0.0026818167,-0.124337375,-0.103390075,-0.42118314,-0.04669556,-0.5048254,-0.5678191,0.37904596,0.1330502,0.24889553,0.059456248,-0.07670245,-0.016864454,0.37614432,0.17183495,0.588955,0.010066609,-0.21905768,-0.25990307,0.07093111,0.053586025,-0.22936668,-0.22281706,-0.3339926,0.43829918,-0.58200175,0.3390549,-0.49236193,-0.46038982,0.050539628,-0.3651004,0.045705333,0.4897643,-0.17986125,-0.24100415,0.16352195,-0.096619,-0.18330322,-0.24668421,-0.35293174,0.22370408,-0.21774286,-0.3394209,-0.19172625,-0.13856778,0.051967144,0.14964603,0.2055128,0.066562824,0.4743118,0.33790898,-0.39641595,0.014231603,0.30844662,0.6965515,-0.16469054,-0.1783911,-0.5304857,-0.4451126,-0.33718553,0.18977414,-0.16265647,0.19122803,0.19511344,-0.27485827,0.9255338,0.104134984,0.93956584,-0.075038515,-0.29710048,0.20774432,0.56776,0.028663972,-0.11170936,-0.16995811,0.9567191,0.5370694,-0.30600753,-0.1599497,-0.554786,-0.27257475,0.038413078,-0.41364446,-0.022975901,-0.158107,-0.6687042,-0.051657956,0.29070365,0.18288286,-0.054842737,-0.25190398,0.34090176,0.23841743,0.17496127,0.029479668,-0.7787147,-0.18903255,0.25963786,0.23367846,-0.15393925,0.06614099,-0.30667987,0.34931806,-0.583489,0.04653422,-0.3410881,-0.053000987,-0.024715165,-0.20777471,0.12150794,0.040408526,0.3187148,-0.47493473,-0.414685,-0.06862343,0.2538475,0.23744135,0.2842081,0.6578705,-0.29809913,-0.24008457,-0.103816845,0.63950104,1.2465737,-0.24891375,0.083276756,0.45143422,-0.38134134,-0.842706,0.06756383,-0.6605975,0.12841055,-0.013467416,-0.45232013,-0.40973035,0.27016303,0.027795546,-0.046215486,0.14781787,-0.47108093,-0.060012665,0.118797846,-0.25098553,-0.24511524,-0.050277412,0.035956394,0.8917804,-0.28226033,-0.38838565,-0.09866512,0.31217337,-0.18684363,-0.46470964,0.028378695,-0.36960402,0.21929188,0.20059502,-0.08958583,0.17353898,0.02589707,-0.570767,0.18074144,0.2806622,-0.2147228,0.17274576,-0.3967236,0.235623,0.7912435,0.03819732,0.007202024,-0.13047749,-0.68189675,-0.6230025,-0.24974988,0.0037662685,0.057160515,-0.10465614,-0.45210397,0.01410386,-0.27330324,0.100377865,-0.0737408,-0.5714224,0.5143194,0.045146316,0.3488883,-0.4024124,-1.1953295,0.040128943,0.0957248,-0.4516735,-0.5832941,0.51237196,-0.17701048,0.8616188,0.11187547,0.014274567,0.017926598,-0.7186715,0.26815984,-0.40370488,-0.0551808,-0.4915407,0.014523874 +988,0.6055475,0.07436607,-0.686444,-0.20757923,-0.45231813,0.2263257,-0.33520073,0.07521135,0.2848251,-0.31323987,-0.14212711,0.00891013,0.08108105,0.26810136,-0.24140036,-0.75814867,-0.045172993,0.105579056,-0.59686536,0.5290866,-0.32984465,0.35393238,0.018930921,0.36359754,0.24247302,0.4733382,0.30463496,0.11894183,0.051957607,0.06843672,-0.15985057,0.06501978,-0.6373687,0.19863561,-0.2905281,-0.49763516,-0.119514585,-0.31356892,-0.35675505,-0.6876598,0.4657525,-0.83717763,0.53668046,0.019077608,-0.39963204,-0.06455445,0.22225669,0.1698607,-0.28913063,0.17949966,0.01971626,-0.38358143,0.06822152,-0.20724241,-0.5311325,-0.523621,-0.62193644,-0.19586979,-0.787831,0.008236455,-0.22856264,0.30397555,-0.22124788,0.026595797,-0.19284287,0.30160373,-0.39921075,0.16561916,0.37421212,-0.26988998,-0.011623911,-0.46273473,-0.09849109,-0.06904842,0.29537958,0.22805741,-0.2109795,0.32137713,0.19258627,0.55087906,0.30612317,-0.26014692,-0.38420886,-0.109490834,0.14353879,0.2936673,-0.022910254,0.044162642,-0.46316412,-0.2097357,0.40898767,0.5087698,0.011124496,-0.2641699,0.11423869,-0.29440573,-0.0021061492,0.43437475,0.5391882,-0.47619337,-0.21514939,0.37170747,0.5485427,0.07730513,-0.2798388,0.29888692,-0.052251656,-0.4643522,-0.22670223,0.24649382,-0.049619813,0.50193304,-0.02568254,0.15843499,0.5961785,-0.14217113,-0.101245485,-0.12622061,-0.08261429,-0.023874376,-0.33467942,0.06355909,0.2954275,-0.3863103,0.12772387,-0.12532519,0.50503594,0.102255665,-0.7046571,0.2937286,-0.61464405,0.12566201,0.08395589,0.6825394,0.6990139,0.5636334,0.05102859,1.0446604,-0.31989434,0.06119344,-0.2405453,-0.12849878,0.10921903,-0.1631476,0.17231478,-0.43872085,0.21984594,-0.09844262,-0.03220382,0.067247465,0.48454505,-0.30949757,-0.20259951,0.038753193,0.745262,-0.377088,-0.048293263,0.9278716,1.092173,0.93773466,-0.015403965,1.0830497,0.25282744,-0.1990544,-0.23982337,-0.102977924,-0.65778047,0.024184512,0.29368833,0.19361274,0.6355996,0.1620148,0.09765009,0.22136705,-0.3006758,-0.07925383,0.09018547,0.094321765,-0.024903292,0.020481063,-0.5221321,-0.18238914,0.12678494,0.13329217,0.2370273,0.20002429,-0.17804813,0.5100313,0.101679035,1.2131319,0.03227358,0.16356006,0.22910914,0.4508604,0.44914347,-0.20851637,-0.107318595,0.326303,0.20178518,-0.06485221,-0.5151272,0.07144047,-0.3260453,-0.44258323,-0.15686211,-0.48466486,-0.20306025,-0.102474384,-0.43304604,-0.14574257,-0.010039644,-0.48934454,0.4034432,-2.5416577,-0.175442,-0.117937885,0.36953932,-0.25715777,-0.19522026,-0.36631155,-0.36550972,0.27004513,0.37226728,0.18296501,-0.4198994,0.46959573,0.5247579,-0.45467848,0.022665229,-0.5714269,0.15085034,-0.16943255,0.31342342,-0.12908529,-0.08014495,-0.2571333,0.45540613,0.7419513,0.18299265,-0.009346298,0.294986,0.3790962,-0.16500606,0.50998026,0.012729688,0.51385134,-0.45210034,-0.1484231,0.46921307,-0.4980195,0.35181496,-0.08912299,0.17442732,0.44296715,-0.61068434,-0.83378184,-0.5533885,-0.17048611,1.109682,-0.5102972,-0.50308365,0.2982936,-0.50771743,-0.17656302,0.056583732,0.6358715,-0.08295314,0.21069884,-0.57574475,-0.07456018,-0.13929245,0.16919889,-0.07737366,0.0756806,-0.3932577,0.81397146,-0.21320884,0.5552836,0.20014034,0.25982472,0.03384052,-0.58610755,0.2414716,0.6270065,0.3895795,-0.033508588,-0.1362269,-0.16357136,-0.051107053,-0.12613206,0.14331888,0.6967415,0.6517619,-0.10215644,0.12569329,0.33866164,-0.06068768,0.039792933,-0.19746566,-0.2093173,-0.14469428,-0.007196154,0.3925217,0.7476206,-0.046181638,0.079170704,0.004396162,0.38130277,-0.17263433,-0.6224796,0.46453014,0.6668369,-0.12555143,-0.3414442,0.7103539,0.57748204,-0.43076524,0.4636834,-0.82057476,-0.37334704,0.68676436,-0.043796454,-0.45243213,0.09760066,-0.43721962,0.13079941,-0.8232922,-0.05916089,0.0940619,-0.29362437,-0.30065036,-0.28294286,-3.3522618,0.13354585,-0.1625571,-0.05104514,-0.15619496,-0.26568562,0.30153862,-0.48435968,-0.6993221,0.08354501,0.080060266,0.47683114,-0.32894215,0.21463369,-0.30599254,-0.29723573,-0.35542288,0.361526,0.16712871,0.34532148,-0.22658436,-0.31727317,-0.122958146,-0.25207925,-0.5801848,-0.14328942,-0.44571644,-0.26814705,-0.13868509,-0.38207123,-0.2640778,0.62756246,-0.32556462,-0.014299431,-0.3052104,0.05160173,-0.072618194,0.18468173,0.26006523,0.27751458,0.24875906,0.0476903,-0.1751992,-0.3112628,0.29367998,0.034429006,0.25348625,0.37385368,-0.21289156,0.18215285,0.3612948,0.54863006,-0.15802884,0.92482555,0.13138732,0.06465273,0.35670534,-0.16372694,-0.5187924,-0.7806244,-0.1766695,-0.20161572,-0.4237767,-0.5302214,-0.2444614,-0.53303665,-0.95791584,0.36287138,0.1383699,0.428798,-0.1831847,0.28467205,0.52243775,-0.23638514,0.010489017,0.020304991,-0.42752582,-0.51207954,-0.4875903,-0.54778117,-0.536724,0.11324764,1.0247228,-0.2678069,-0.11122246,0.0913765,-0.37159616,0.08110734,0.35137245,0.25556248,0.027671639,0.686122,0.12738486,-0.5063785,0.5131507,-0.24122879,-0.23239657,-0.62974864,0.052341998,0.570317,-0.701908,0.604723,0.33479777,0.17398487,-0.092564054,-0.56020665,-0.04875642,-0.047564507,-0.19896679,0.59615433,0.30709007,-0.69101185,0.4664692,-0.1901319,-0.05701373,-0.69320804,0.54687876,-0.16430554,-0.2901925,0.02621408,0.49885908,0.07763199,-0.13994677,-0.011688067,0.074369274,-0.4311683,0.27257422,0.46237296,-0.07528905,0.50412506,-0.09482499,-0.30020508,-0.8064126,-0.005315312,-0.6006614,-0.17890498,0.32817125,-0.034040205,0.046229754,0.08934294,0.015647369,0.49053693,-0.2917164,0.24329622,-0.19278936,-0.209892,0.5049879,0.42237732,0.49681225,-0.59560883,0.62996477,0.14064614,-0.1676409,0.12914956,0.1852813,0.36609298,-0.020002205,0.51830363,-0.008782889,0.046034086,0.014999713,0.44995525,0.20871006,0.1418504,0.19547378,-0.25120568,0.50305885,0.10963873,0.071948394,-0.2989399,-0.56592494,-0.055715345,-0.23618433,0.07285624,0.38142696,0.20586756,0.47826275,-0.06600119,0.032456215,0.26354936,0.107334696,-0.31561106,-1.0407717,0.1214562,0.30631867,0.6424724,0.59832436,0.08474612,-0.04442841,0.40526083,-0.21258986,0.05652799,0.49558148,0.087779775,-0.20374057,0.46072772,-0.5170248,0.6232087,-0.16200776,-0.15746143,0.24257691,0.39505857,0.5876584,0.9510814,-0.00072483503,0.024698367,0.05226911,-0.16554357,0.10698482,-0.1553903,-0.039334565,-0.5866786,-0.42320323,0.58666694,0.4263281,0.5276625,-0.33785206,-0.13264322,-0.024681283,-0.12327331,0.14300816,-0.05734047,-0.08431702,-0.20081748,-0.5699343,-0.34883386,0.42226484,-0.16986667,-0.06104087,0.26025277,-0.33787873,0.25721666,0.038271684,0.12046606,-0.0041379207,-0.7814098,-0.08574336,-0.37386888,-0.58734083,0.41675326,-0.2849041,0.3645142,0.28579292,-0.15011522,-0.32953623,0.18934958,-0.008315384,0.86425155,0.1347182,-0.14974646,-0.38350886,0.17023349,0.3358772,-0.44195598,0.09586502,-0.1729647,0.21456215,-0.46209168,0.5436035,-0.32612917,-0.16425742,-0.033689406,-0.19470285,-0.06012099,0.55500513,-0.1291807,-0.14284185,0.17138478,0.041887093,-0.36671552,-0.17595494,-0.44854075,0.18238571,-0.049556702,-0.1577526,0.055843957,-0.056126278,0.08782791,0.28493312,0.08691992,0.25075886,0.17266965,-0.22932342,-0.31978136,0.14345993,0.15083309,0.37545416,0.08360813,0.034672022,-0.04383998,-0.46506503,-0.39826378,0.4701245,-0.12432189,0.056345385,0.18091823,-0.073051475,0.854791,0.27857986,1.057541,0.15453847,-0.25724056,0.20079306,0.5310564,-0.020557728,-0.03512024,-0.23854852,0.9337086,0.5613973,-0.25337315,-0.18412177,-0.25506884,-0.102800325,0.013778567,-0.34922546,-0.09365247,-0.19383702,-0.6171833,-0.20674752,0.0013272102,0.20224759,0.20152664,-0.20968018,0.002206513,0.08647905,0.17363136,0.49603373,-0.4534534,-0.29824498,0.5775651,0.109729014,-0.0045688194,0.14220627,-0.28557512,0.49332193,-0.6518348,0.045569386,-0.60619843,0.052460197,-0.1977632,-0.3707598,0.18146567,-0.039482765,0.2851501,-0.4342164,-0.32211548,-0.2755207,0.5166729,0.20513238,0.34998924,0.63038003,-0.23111884,-0.016494486,0.017063107,0.52296907,1.1183461,-0.16705452,-0.053366918,0.3331852,-0.30849558,-0.6820563,0.14978568,-0.6566884,0.11143889,-0.09858525,-0.41506442,-0.29977512,0.24370877,0.003966791,-0.10955792,0.19337668,-0.7482971,-0.17973064,0.16939528,-0.18739246,-0.15475985,-0.2746734,0.2531139,0.681543,-0.16515872,-0.35726324,0.14417353,0.17537369,-0.19817106,-0.6664478,0.16224857,-0.15585652,0.2706341,-0.01031218,-0.45555696,-0.09757247,0.3306667,-0.5663751,0.08319696,0.22121854,-0.23555197,0.060524307,-0.3917606,-0.07194022,1.1202776,0.002224986,0.08220607,-0.42074904,-0.6233405,-1.1305509,-0.32296976,-0.084104754,0.14946114,0.07244225,-0.42628813,-0.043226086,-0.36857727,0.04008574,0.12675445,-0.46133274,0.42616585,0.21905184,0.6132301,-0.13764815,-0.8346073,0.18798266,0.1533129,-0.42573357,-0.41221985,0.67738277,-0.18116891,0.71269876,0.16150737,-0.01199744,0.079864964,-0.6932129,0.42111656,-0.2636867,0.0079891,-0.7447525,-0.08191271 +989,0.39737627,-0.06984296,-0.6319839,-0.07958142,0.0023854652,0.12158142,-0.25983196,0.38928095,0.24208392,-0.42327914,0.0033413384,-0.0019108994,-0.12149109,0.19874263,-0.14866503,-0.37821516,-0.089645915,0.22747609,-0.42039922,0.387405,-0.33820227,0.24586901,-0.18517281,0.3442903,0.05243272,0.1900864,0.13034163,0.014789795,-0.28609747,-0.08700101,0.15249753,0.5146982,-0.5194616,0.15842625,-0.11284961,-0.24426691,-0.038788237,-0.3620912,-0.37958315,-0.74780357,0.36650175,-0.8291021,0.5829238,0.0790741,-0.3082559,0.2849453,-0.0044740713,0.21786939,-0.23390846,-0.015168761,0.11810557,-0.15882821,-0.19128187,-0.2540765,-0.11678307,-0.2608223,-0.51028746,0.05105633,-0.5430235,-0.01292137,-0.22120534,0.23474313,-0.38983923,-0.047728006,-0.18178903,0.6078469,-0.42378524,-0.023959499,0.18428656,-0.023891946,0.28113025,-0.70404357,-0.18028879,-0.07711567,0.13543491,-0.21604298,-0.24845669,0.23684968,0.3455701,0.3782443,-0.24745396,-0.19724156,-0.42348942,-0.019444669,0.17344253,0.455465,-0.26843178,-0.5157731,-0.15729503,-0.026388738,0.32296735,0.11331714,0.116881594,-0.32459942,-0.06534692,0.19879189,-0.18176186,0.5092119,0.58353186,-0.078651205,-0.025050154,0.35182735,0.6155262,0.05441091,-0.038163226,0.020976437,-0.008257354,-0.4199086,-0.14031284,0.13632557,-0.13081887,0.4449139,-0.09720007,0.106990024,0.4797509,-0.37593243,-0.12739375,0.2620633,0.12381734,0.08527713,-0.20968412,-0.34243187,0.2511804,-0.5477327,-0.026801262,-0.21560717,0.6458621,0.07747246,-0.8185636,0.34276262,-0.4561431,0.09724275,-0.15686497,0.62620395,0.7088254,0.47562104,0.3290393,0.6916924,-0.536552,0.009294386,0.023066701,-0.4424684,0.18024829,-0.12818937,-0.2038927,-0.5306851,-0.18437532,0.11449548,-0.17535107,0.13267574,0.4967573,-0.5625185,-0.13499554,0.013624064,0.5100659,-0.31655547,-0.10427996,0.6979452,1.1536204,0.91382444,0.13473384,1.2323002,0.21859913,-0.16106133,0.17632096,-0.27738452,-0.9164805,0.4948259,0.30848154,-0.7160843,0.40335354,0.1105361,-0.16273448,0.34314507,-0.50552267,-0.21606787,-0.073678136,0.17127617,-0.06021068,-0.24382485,-0.42050052,-0.27534026,0.08623731,-0.028585915,0.14558421,0.33672282,-0.46692902,0.19690903,0.09340233,1.0955598,-0.10759168,0.07580776,0.07376566,0.3359535,0.1932636,-0.22309598,-0.21377985,0.48954466,0.42574188,0.16881596,-0.5178567,0.1063055,-0.30076155,-0.444028,-0.21344411,-0.29814386,0.16380103,0.049270388,-0.38444433,-0.098897755,-0.14648251,-0.51579374,0.32981387,-2.6052606,-0.13157818,-0.0909039,0.282088,-0.11945922,-0.27432278,-0.25166878,-0.45385715,0.31604558,0.3727674,0.47350508,-0.5884529,0.21288557,0.33079672,-0.541941,-0.16288936,-0.5691923,0.006821411,-0.16971596,0.27967173,0.059813797,-0.22801235,0.20153429,0.18174076,0.5069751,-0.16452505,0.027441999,0.40298897,0.34222123,0.05913335,0.2659683,0.071831085,0.48142514,-0.39386615,-0.33505026,0.4018043,-0.3968708,0.11915167,0.05713541,0.105981566,0.32439852,-0.43945155,-0.97234243,-0.56135714,-0.10720483,1.381961,-0.21979155,-0.47387537,0.20408556,-0.26425833,-0.44743973,0.018611947,0.42758483,-0.25518972,-0.04213237,-0.98549175,-0.040926505,-0.07733606,0.20975389,-0.055398047,0.1693273,-0.457957,0.48696852,-0.12559773,0.48800603,0.41943765,0.15323862,-0.54860556,-0.56861895,0.08934564,1.0878171,0.3563342,0.18420209,-0.2874395,-0.17622355,-0.18703543,0.088355765,0.2114941,0.48946384,0.8202172,0.008178307,0.15625408,0.30747563,0.048522312,0.12170317,-0.1721424,-0.3358334,-0.07888914,0.050366737,0.7070145,0.49477845,-0.052563675,0.38793808,-0.01599838,0.30599928,-0.11536308,-0.44025788,0.39618784,1.0502115,-0.11742823,-0.3945414,0.6119142,0.48324686,-0.40041837,0.6630605,-0.5738061,-0.32897896,0.3666008,-0.21175085,-0.5041871,0.22094245,-0.3627722,0.2754884,-0.9145544,0.37250385,-0.2815036,-0.5952452,-0.5143176,-0.06645387,-3.223515,0.11732979,-0.24188301,-0.23694155,-0.16440773,-0.13639703,0.38164207,-0.5857345,-0.5749301,0.10525168,0.14080687,0.6948854,-0.23332916,-0.03919179,-0.1570843,-0.33319554,-0.13809764,0.13808446,0.33250633,0.21032512,0.064303875,-0.45456848,0.03968825,-0.23424013,-0.3487877,-0.1292206,-0.46988073,-0.40180993,-0.1794935,-0.6744532,-0.34318927,0.5877613,-0.3422582,-0.06420877,-0.21331473,0.09996683,0.1599582,0.48265886,-0.011533166,0.17536023,0.11802528,-0.17436552,0.014180963,-0.26415786,0.3793754,0.00859423,0.26009846,0.525086,-0.23036668,0.16247618,0.6540059,0.69130355,-0.0074263983,1.0472487,0.57090145,-0.05183236,0.28463224,-0.33019394,-0.22725241,-0.5486763,-0.31509712,0.070314474,-0.5879609,-0.31018215,0.04260816,-0.31308603,-0.90168655,0.62489223,-0.3415294,0.18504612,-0.057734486,0.41376045,0.38380167,-0.09432272,-0.018271694,-0.16100469,-0.24032585,-0.39262396,-0.18050909,-0.6894477,-0.44661823,-0.008366482,0.98754066,-0.16341956,0.1314685,-0.04958834,-0.053367954,0.07462401,0.06364636,0.10780175,0.3400552,0.34875587,-0.0093641365,-0.5071475,0.202713,-0.22840984,-0.16083963,-0.691587,0.068959944,0.6632427,-0.6233379,0.5671697,0.47871202,0.09803035,-0.17335367,-0.7428193,-0.15082118,0.22725046,-0.1715738,0.66677314,0.4062861,-0.83578646,0.51005614,0.5091068,-0.3291292,-0.67057073,0.558686,0.11030524,0.04636352,-0.11228614,0.47356704,-0.2230402,0.02859412,-0.1673393,0.19008832,-0.24051104,0.25058183,0.17474641,-0.098722145,0.448194,-0.123889565,-0.19073625,-0.6734759,0.059736036,-0.5968852,-0.20790555,0.23540698,-0.0046794456,0.111509025,0.16898713,-0.016661981,0.60460645,-0.29753122,0.034097828,-0.12870267,-0.33812752,0.4253748,0.5486381,0.51436555,-0.2644166,0.5474013,-0.0068416554,-0.08038386,-0.2966906,-0.07969404,0.60004413,-0.041919257,0.3804265,0.100801595,-0.10956448,0.30969158,0.8395389,0.16527459,0.56352156,0.012470535,-0.14377125,0.05342715,0.095424466,0.24353197,-0.045522958,-0.4049671,-0.224983,-0.19985251,0.21521322,0.49357924,0.09609372,0.33485273,-0.25092062,-0.28041258,0.12554593,0.3057315,0.08926314,-1.1303312,0.48367134,0.2019658,0.63179624,0.369198,0.11850756,0.12696555,0.41884905,-0.29698083,0.09376874,0.38209042,0.044146042,-0.6381945,0.5420167,-0.83814824,0.451125,-0.06542015,-0.031457905,0.080934525,-0.15951385,0.4080837,0.87331456,-0.10626387,0.20812365,0.012440483,-0.2631553,0.2893386,-0.3680931,0.26587132,-0.48339668,-0.2690675,0.7462819,0.39345598,0.37216058,-0.1764295,-0.11626575,0.24984029,-0.23817644,0.1824362,0.01129627,0.09024093,-0.1277037,-0.65625703,-0.17051153,0.4134319,0.36270127,0.06341945,-0.017872317,-0.022583965,0.1742449,-0.08682399,-0.07745762,-0.1367313,-0.55231106,-0.087432265,-0.25386256,-0.46065775,0.4775097,-0.2794486,0.15975468,0.34827787,0.14314468,-0.51033086,0.19755496,0.219565,0.7268415,-0.02907546,-0.24591729,-0.30332989,0.33981827,0.25192842,-0.16244586,-0.102548644,-0.489924,0.14761427,-0.6382412,0.468455,-0.2909725,-0.41677842,0.07654818,-0.10353415,0.0044152653,0.560543,-0.24280477,-0.21385255,0.0096488,-0.0664305,-0.22229706,-0.32187918,-0.24291325,0.06713439,0.114312254,-0.10464753,-0.16415913,-0.09220083,-0.14310919,0.36889032,0.071561165,0.27662373,0.47089124,0.22028562,-0.42984346,0.023057107,0.14120288,0.5963393,0.11992866,-0.094966725,-0.53953254,-0.32924947,-0.23170824,0.18199314,-0.12466495,0.28599912,0.18299143,-0.26682228,0.8043371,0.006954891,1.1774261,-0.044107046,-0.44172302,-0.0890022,0.6341594,-0.08067741,-0.2756141,-0.40135297,1.0369812,0.66025364,-0.17688969,-0.17883602,-0.37847605,-0.05382795,0.10641485,-0.25754958,-0.36961725,-0.095215194,-0.6024796,-0.16179745,0.26590994,0.3576983,0.021552483,-0.012034403,0.1501696,0.23785874,0.08555697,0.16963466,-0.37734106,0.11081868,0.22881047,0.31883684,-0.024310082,0.15016262,-0.40549988,0.3784655,-0.57889855,-0.06504712,-0.19189094,0.10493789,0.0017965914,-0.48786908,0.2176839,0.06074549,0.30297533,-0.100473784,-0.1777697,-0.1229552,0.393792,0.037775278,0.14976327,0.6031876,-0.22285604,0.16427946,0.049631663,0.4329557,1.0047894,-0.12723373,-0.035078175,0.23893033,-0.2792189,-0.81512564,0.29136258,-0.46785426,0.29672214,-0.16336283,-0.3369592,-0.4983477,0.2546616,0.21972314,-0.059064362,-0.039331194,-0.51729304,-0.15324871,0.19389032,-0.38415122,-0.24136195,-0.28268525,0.030133145,0.59168905,-0.25918612,-0.34330043,-0.03276874,0.3691213,-0.21040222,-0.474075,0.02520827,-0.3244648,0.27426448,-0.003356278,-0.29011455,0.03814372,0.12902412,-0.3759888,0.32522577,0.24287881,-0.2677873,-0.00045657266,-0.18280932,0.04567355,0.54037863,-0.22572635,0.17725968,-0.46076584,-0.49489787,-1.0370022,-0.098882094,0.33397737,0.03679953,0.06818562,-0.8702011,0.0644919,-0.10384226,-0.11538733,-0.18167417,-0.38168246,0.37899408,0.0510841,0.4669327,-0.11740399,-0.82711935,0.030932155,0.17317878,-0.16079691,-0.52873695,0.54214686,0.0037183675,0.86443716,0.15996958,0.23290594,0.3565847,-0.58667654,-0.03294491,-0.2348348,-0.25740376,-0.60705817,-0.061279807 +990,0.53516424,-0.24805234,-0.46994945,-0.19152382,-0.22815712,-0.2505578,-0.119354345,0.4842076,0.17470898,-0.48797157,-0.13540825,-0.24765904,-0.07346316,0.39623612,-0.2611073,-0.8713537,0.07188882,0.023443414,-0.344472,0.5767328,-0.48212165,0.31729868,0.060269333,0.29763365,0.24758247,0.3210351,0.24200521,-0.24121498,-0.07891261,-0.29821476,0.0320674,0.12922238,-0.6046315,0.2851145,-0.021727579,-0.44023743,0.036254406,-0.5157595,-0.32449165,-0.6735067,0.08805769,-0.6512218,0.4302988,0.07952094,-0.23381433,0.04688188,0.21829946,0.40309685,-0.31713292,0.015226149,0.16461638,0.13228872,-0.18061234,0.052986894,-0.08241677,-0.40604204,-0.6139621,0.12775913,-0.34161457,-0.16287722,-0.23361446,0.20080437,-0.41824722,0.094599426,-0.10396697,0.64642704,-0.42254052,-0.110370435,0.38934636,-0.1372641,0.29112408,-0.45541844,-0.095760986,-0.22493836,0.0559327,-0.10405982,-0.25800458,0.3453136,0.29825714,0.47596353,0.14452264,-0.26691398,-0.22612095,-0.1504507,0.24691255,0.51400405,-0.26322776,-0.6492495,-0.2825887,0.055839427,0.1289324,0.13272662,0.1449742,-0.43449873,-0.02935925,0.20418896,-0.38128787,0.39896637,0.38302845,-0.39595574,-0.14812985,0.27418256,0.44114652,0.2532976,-0.026341524,0.046491057,0.120620124,-0.6421062,-0.2777544,0.14290729,-0.12454421,0.45976013,-0.14425775,0.16239575,0.7369262,-0.22977833,0.12728027,0.11000983,-0.050989896,-0.037019305,-0.42935362,-0.27891034,0.25095657,-0.5225293,0.16243987,-0.22017412,1.0543177,0.22595032,-0.7562815,0.3587176,-0.73643726,0.17356277,-0.2173877,0.5609135,0.59056896,0.39084932,0.2993596,0.66208166,-0.43421677,0.035885274,-0.17044891,-0.38831452,0.05281065,-0.10340673,-0.0374196,-0.4090025,0.06540213,0.008332781,0.013671922,-0.025945405,0.34870172,-0.5757717,-0.06279944,0.035419922,0.97429115,-0.31649718,-0.1354076,0.69456977,0.91346693,1.0221401,0.13792406,1.3092091,0.1785369,-0.14121422,0.260289,-0.1773869,-0.6331636,0.26123935,0.45500728,-0.19822195,0.22835088,-0.0053447485,-0.107901,0.4943471,-0.29153237,0.16417198,-0.24594927,0.39091533,0.033277206,-0.19304647,-0.38285843,-0.29206815,0.06247727,-0.13151436,0.02325273,0.3151712,-0.1169562,0.21456695,0.01828757,1.6352426,-0.14110295,0.21049829,0.16054973,0.4402053,0.12287283,-0.10375763,-0.02844452,0.010660999,0.3183312,0.13378632,-0.6586966,0.18485999,-0.20187803,-0.56057185,-0.1071356,-0.28784758,-0.1774605,-0.118857756,-0.49370524,-0.07462011,-0.09968463,-0.11474669,0.5740243,-2.4409442,-0.22738771,-0.09253515,0.19588408,-0.4022129,-0.4083598,-0.056959648,-0.5185022,0.48521972,0.2834511,0.6376999,-0.7354013,0.55829674,0.46974462,-0.36688995,-0.20784184,-0.66055065,-0.19311105,0.017517904,0.26252893,-0.0019264136,-0.11907421,-0.03720363,0.19134174,0.50286716,-0.06783376,0.08939605,0.19235267,0.29163265,0.048117924,0.7160844,0.030609906,0.4830398,-0.39520317,-0.15757297,0.30573124,-0.435922,0.35805982,0.046969645,0.08974495,0.2625498,-0.51284075,-1.0648906,-0.7242827,-0.47300795,1.0322882,-0.2280627,-0.30208492,0.32085535,-0.1366106,-0.05155158,-0.026854875,0.29523605,-0.029607031,0.13165888,-0.84714806,0.18003082,-0.16348752,0.13228668,0.030227762,-0.03635055,-0.3233234,0.72267866,-0.051063847,0.40278697,0.5380416,0.11271759,-0.3198529,-0.51675236,0.053826284,1.118719,0.45149565,0.21067853,-0.22340329,-0.27685997,-0.39080566,-0.16952059,0.08221833,0.62413025,0.8243655,-0.02406265,0.09610156,0.28024593,-0.009763094,0.04790028,-0.046379883,-0.4226374,-0.1218899,0.036981333,0.6885948,0.60257643,-0.20863427,0.38547844,-0.12763855,0.3284242,-0.11002219,-0.42075852,0.5693461,0.9059786,-0.20555337,-0.22285993,0.62673706,0.5069652,-0.1587795,0.4342511,-0.52428526,-0.31532878,0.5439283,-0.066251315,-0.37904906,0.17499825,-0.39666292,0.06545726,-1.049904,0.4014112,-0.52783155,-0.31614333,-0.50299686,-0.25198877,-3.886101,0.29820874,-0.29790068,-0.050631933,-0.2290161,-0.015812848,0.33056238,-0.604447,-0.71201974,0.12968285,0.0739082,0.6031392,-0.041507956,0.22190277,-0.20339414,-0.11672156,-0.19572915,0.15845807,0.11427301,0.28709793,0.12786914,-0.42601904,-0.15171441,-0.20565966,-0.47700745,0.2600948,-0.58536845,-0.6828564,-0.18208395,-0.69393694,-0.46917483,0.79922974,-0.44496045,0.044303488,-0.06629963,-0.0076134354,-0.2506582,0.42728826,0.08250664,0.12658438,-0.000114770875,-0.08233142,-0.14809899,-0.29898342,0.10786598,0.11795234,0.4877429,0.23223414,-0.12826638,0.28758356,0.6534458,0.73172855,0.03385547,0.69121605,0.38808417,-0.037462216,0.36843967,-0.36990643,-0.2632289,-0.55223596,-0.37029976,-0.12943831,-0.34604242,-0.4752221,0.06157014,-0.2978018,-0.8236183,0.6401963,0.040731613,-0.048182018,-0.1851878,-0.06059396,0.34858847,-0.12351036,-0.1268558,0.006369642,-0.08716101,-0.6866215,-0.31775126,-0.72819895,-0.47197682,0.15329476,1.1632932,-0.24127118,-0.044688024,-0.02827287,-0.21064937,-0.0185318,0.014701681,0.058296937,0.15534016,0.4066598,-0.01953039,-0.6381927,0.45598835,-0.18975008,-0.19309358,-0.41256285,0.18623509,0.7833437,-0.7304479,0.58456975,0.34715804,0.18753597,0.113612175,-0.49933285,-0.16958497,0.028733144,-0.114906274,0.45982864,0.12450703,-0.77500457,0.4923994,0.5672289,-0.27847448,-0.81897175,0.4803107,-0.011235748,-0.15346326,-0.11677853,0.34169683,0.29059634,0.077213585,-0.13437627,0.25375763,-0.5624219,0.24502884,0.26611638,-0.08731566,0.4036121,-0.14586295,-0.07606727,-0.75621635,-0.08197309,-0.49402514,-0.38635543,0.1897045,-0.036103725,-0.07467634,0.039522905,0.09793532,0.24548347,-0.18962927,0.12356557,-0.01632308,-0.20728756,0.4160257,0.5800453,0.4480649,-0.48539108,0.57438993,0.06268568,0.13365929,0.06532431,0.089660846,0.39124444,-0.036027875,0.36321783,0.0036586523,-0.11150151,0.16825019,0.8262452,0.07396036,0.4253924,0.11765287,-0.10260006,0.24246243,0.06239165,0.077794924,0.24902423,-0.55529195,-0.069846675,0.0710185,0.17793201,0.5670568,0.20774664,0.3248653,0.01645722,-0.23157856,0.03167977,0.19638307,-0.090029284,-1.3782578,0.5587419,0.15998928,0.634127,0.72925484,-0.026746402,0.17333435,0.55587083,-0.12002177,0.15686443,0.36788702,-0.07829316,-0.57487303,0.6109161,-0.607248,0.41091797,-0.14316368,0.11404074,-0.058214284,0.023414152,0.4984351,0.6686067,-0.05283105,0.089870796,-0.06764948,-0.32143715,0.04525695,-0.51416075,0.11351403,-0.40638548,-0.20984481,0.78806037,0.5430897,0.2885305,-0.1422588,-0.012107162,0.21637051,-0.14214422,0.13601255,-0.20523128,-0.01761662,0.020772701,-0.6604511,-0.3303352,0.7677335,-0.16872369,0.25015566,-0.08851648,-0.14831093,0.26393104,-0.16368437,-0.03801196,-0.07661728,-0.75327903,-0.011176164,-0.51531315,-0.43169323,0.1940546,-0.174453,0.12865229,0.026173158,0.09936674,-0.5112494,0.45034122,-0.034177013,0.7212635,-0.22946347,-0.23776482,-0.29779243,-0.020606007,0.2213115,-0.27994806,-0.2687874,-0.32629398,0.05767984,-0.60466003,0.35947868,0.032429792,-0.4022211,0.085887425,-0.11943783,-0.094461,0.47298545,-0.3102667,-0.1108519,0.05284617,-0.23744683,-0.09617982,-0.24772552,0.087804176,0.28862375,0.25028437,0.058407657,0.0060361284,-0.27151656,-0.058710694,0.45258904,-0.04048553,0.27903193,0.48078224,0.21156202,-0.47050685,-0.16545439,0.21923378,0.5264527,0.039826576,-0.018313868,-0.43044537,-0.20806967,-0.268939,0.2340224,-0.22833626,0.34458637,0.010162866,-0.5433548,0.84961224,0.1370767,1.2470989,0.056999106,-0.38665417,0.122809015,0.39993116,-0.051227633,0.039541595,-0.39837852,0.9862382,0.5442456,-0.2824998,-0.29488277,-0.5913604,-0.10054524,0.14166537,-0.28612632,-0.18795566,-0.054338526,-0.46208405,-0.31421757,0.16858844,0.31501645,0.11708462,-0.13548903,-0.0600016,0.16646771,0.02613914,0.4819526,-0.5741472,0.0061598844,0.24481942,0.38976648,0.07915175,0.18235445,-0.51732594,0.42158148,-0.561925,0.31324488,-0.36457062,0.16821781,-0.19583894,-0.22726645,0.160462,-0.0074657924,0.31761247,-0.335999,-0.3641801,-0.1630687,0.61420065,0.15316716,0.08379627,0.97117096,-0.295371,-0.00914153,-0.017102947,0.62869346,1.1253159,-0.24142034,-0.06129912,0.31608567,-0.18981835,-0.47620553,0.2628371,-0.3335895,0.027241366,-0.057489965,-0.38652548,-0.6791007,0.23246679,0.30807066,0.035610866,0.15183036,-0.80729884,-0.30391365,0.21901062,-0.25609818,-0.3888275,-0.3876073,0.07609319,0.750347,-0.38912386,-0.23793264,0.06881752,0.12762015,-0.05900675,-0.47648948,-0.12527296,-0.27178827,0.2896337,0.27244067,-0.20730948,-0.18945862,0.09602586,-0.38128528,0.04688349,0.19924355,-0.2638107,0.1620977,-0.098566525,-0.0944354,0.93458885,0.005079133,0.24916813,-0.56348747,-0.50299215,-0.84663373,-0.445464,0.6261078,0.086202435,-0.018048972,-0.508747,-0.09151103,0.095054574,-0.06790051,0.014297689,-0.50030273,0.45401448,0.055014987,0.48765782,0.029711558,-0.6438194,0.09584492,0.18413506,-0.019041548,-0.5711756,0.52668846,-0.22149861,0.94045115,0.07619996,-0.012450002,0.20867704,-0.5015121,-0.14785537,-0.37231034,-0.23665237,-0.69989926,0.18510737 +991,0.6667027,-0.39776924,-0.48975402,-0.41191292,-0.5178265,0.22602181,-0.07271506,0.38303798,0.35669532,-0.5957305,-0.03581663,-0.2611118,-0.05647871,0.3145047,-0.43973055,-0.96061647,-0.120224975,0.032547846,-0.34911457,0.16001162,-0.5953106,0.20305459,0.1925595,0.43027562,-0.081300035,0.1961193,0.44323173,-0.030606296,0.041525256,-0.32959837,-0.15654035,-0.14513025,-0.84354514,0.4206562,-0.115329266,-0.44556838,0.26582393,-0.6565312,-0.17637399,-0.66508853,0.48017102,-0.8001267,0.812819,0.043581612,-0.16830638,-0.044623185,0.18545981,0.057929624,-0.051601768,0.3039526,0.087654404,-0.23930474,-0.018787872,-0.21457128,-0.3852597,-0.7117806,-0.85205925,0.014013764,-0.60402983,-0.26315364,-0.34126526,0.3592284,-0.34490854,0.041235182,-0.093630835,0.72316116,-0.2639476,-0.22695665,0.15087946,-0.20568177,0.2822231,-0.47998208,-0.3566982,-0.021884883,-0.10086228,0.04140424,-0.2380079,0.21110144,0.18970372,0.51056516,0.12684567,-0.38253748,-0.1223158,-0.00058474543,-0.15966763,0.67075735,-0.27525905,-0.46885738,-0.28867695,0.042077113,0.23870406,0.19684154,0.053998698,-0.15840176,0.31339744,0.2458839,-0.4592971,0.6290281,0.5466916,-0.56538284,-0.22435017,0.0041858973,0.18029724,-0.30877095,-0.008784538,-0.030297631,0.056550987,-0.50062585,-0.3872599,0.3615334,-0.23357102,0.60302514,-0.24729152,0.23060784,0.7682781,-0.41259775,0.024802392,0.007522419,0.042459436,0.021647895,-0.20506163,-0.36270434,0.29972464,-0.57678616,-0.20447683,-0.6349487,1.1470968,0.09002385,-0.65294677,0.2927374,-0.6313659,0.02160416,0.011060724,0.7030152,0.44482622,0.48484507,0.26973432,0.81166697,-0.37182075,-0.13372959,0.054320145,-0.23380156,0.24018416,-0.21449924,0.44187203,-0.19147739,-0.060760707,-0.00030167104,0.055887986,-0.09388161,0.7541271,-0.48795882,0.09236531,0.19349849,0.90411454,-0.3924719,-0.01785689,0.57320166,1.2911866,1.0240481,0.15569848,1.5358714,0.13109271,-0.26947504,0.12443614,-0.17330953,-0.34222037,0.43663877,0.5167223,0.50295514,0.37015432,0.102927364,0.073299594,0.51166815,-0.4929436,-0.14812584,-0.022173706,0.2542855,-0.035325143,-0.17903732,-0.6124713,-0.42133632,0.30715942,0.1413741,0.16986904,0.25843105,-0.3866362,0.25586545,0.078718886,1.1027415,0.054627694,0.20786855,-0.009396523,0.42600375,0.004834929,0.13153347,0.11520424,0.10432373,0.11844784,0.1617766,-0.6064558,-0.00926668,-0.35994723,-0.3338499,-0.2952761,-0.35242206,-0.16311961,-0.25260273,-0.5171844,-0.19338365,-0.13379331,-0.358082,0.22691989,-1.9249226,-0.35954022,-0.024887526,0.34999096,-0.25446832,-0.4316276,-0.15025152,-0.5835322,0.30308658,0.48768607,0.30784065,-0.6687318,0.5905949,0.40635028,-0.35129172,-0.010643935,-0.7631765,-0.013653303,-0.2622373,0.4725322,0.07597181,-0.5082326,-0.54769313,0.4164731,0.7975458,0.2475626,-0.14769077,0.14257649,0.5739082,-0.110667706,0.75888026,0.10606809,0.4655053,-0.338837,-0.088945605,0.32401136,-0.58106124,0.092031226,-0.03497969,0.16893059,0.46555632,-0.76018393,-1.1095159,-0.81524485,-0.5662829,1.1930001,-0.35397297,-0.31785065,0.28710896,0.061912227,-0.50315845,-0.109814525,0.45415202,-0.2994414,0.19270954,-0.69019705,0.07384587,-0.07834278,0.23413654,0.0193698,0.2242574,-0.45332655,0.80538046,-0.2988307,0.3645967,0.09221788,0.2446026,-0.4371058,-0.51234686,0.1947746,1.2476265,0.5232304,0.24762528,-0.21716805,-0.041977856,-0.17303695,0.1231281,-0.059600033,0.63360125,1.0057989,0.1423082,-0.11318581,0.31023008,-0.3707901,0.042253215,-0.035956483,-0.47161865,-0.18558629,0.15945786,0.8490733,0.3949241,-0.22301622,0.12883231,-0.22348776,0.3959525,-0.47376508,-0.20922568,0.37237653,1.1201495,-0.01940011,-0.1560178,0.8302969,0.5541757,-0.6356595,0.5264236,-0.815193,-0.49611846,0.4366354,-0.043022808,-0.5332364,-0.12860234,-0.38696232,0.10344406,-0.9567593,0.4209692,-0.06995553,-0.6302382,-0.55147713,-0.52495545,-3.8877006,0.3227966,-0.15503258,-0.03794206,-0.02830186,-0.0782983,0.41460246,-0.54824644,-0.554946,-0.07196511,-0.08673867,0.5077756,0.15681416,0.058203258,-0.11629237,-0.3937826,-0.3804082,0.2811417,0.091684446,0.07642,0.08985411,-0.3605985,0.3025652,-0.47075063,-0.52599084,0.13114317,-0.44937125,-0.67285395,-0.11278012,-0.5131907,-0.42862573,0.9979205,-0.09146129,0.11753132,-0.23560306,0.05397891,-0.11622274,0.40335575,-0.041207325,0.15275341,-0.09082079,-0.22004554,-0.052627433,-0.32389703,0.35597867,0.08535623,0.617622,0.48906708,-0.23943193,0.06655951,0.68901813,0.5245827,0.17523529,0.8957368,-0.16255091,0.031594805,0.28586602,-0.21272412,-0.24362418,-0.73637116,-0.3253425,0.10580482,-0.45726854,-0.21931484,0.04580765,-0.38007194,-0.62689996,0.43353352,-0.15221024,0.11705641,-0.05717994,0.5500215,0.32071114,-0.11983297,0.045752812,-0.066379234,-0.30317348,-0.41927043,-0.44501644,-0.71740264,-0.3411482,0.15753475,1.155399,-0.016009817,-0.28273502,0.023743004,-0.022740161,0.16416936,0.10897647,0.10765655,0.006269574,0.48926944,-0.14906749,-0.8990024,0.27772194,-0.13113053,0.05433333,-0.39094493,-0.05634784,0.88126576,-0.8298413,0.68470925,0.36233497,0.51676494,-0.006969446,-0.33118984,-0.19296975,0.2618584,-0.16050193,0.4791345,0.11052289,-0.7226413,0.5265022,0.012769906,-0.0915872,-0.71193177,0.38118047,-0.0966007,-0.32562977,-0.36394674,0.54204696,0.31413382,0.040697575,-0.22418837,0.3681127,-0.67492944,0.19557819,0.26178488,0.3276425,0.43687448,-0.26129696,-0.120682165,-0.748978,-0.3695508,-0.55075395,-0.39374068,0.08691139,-0.03199511,0.0050603747,0.45777887,0.15771757,0.5139382,-0.30864826,0.1779329,0.06257684,-0.48938742,0.5252514,0.5518652,0.39492172,-0.32649344,0.5505096,0.11556437,0.17098406,-0.44175816,-0.0032492399,0.4122436,0.2217898,0.15702431,-0.05771617,-0.26589033,0.42378289,0.8383724,0.17543377,0.45832175,0.41753173,0.013919769,0.48037797,-0.03345124,-0.06926891,0.028045485,-0.57249236,-0.12051655,0.17334864,-0.09908373,0.4405387,-0.11577995,0.28089148,-0.04510647,-0.038375746,0.22567204,0.44649142,-0.4571566,-1.3183196,0.19514646,0.18781178,0.6408335,0.6196645,-0.046087,-0.06836055,0.44652653,-0.30244213,-0.07638734,0.5810203,0.3256677,-0.19532773,0.8369422,-0.32994628,0.4156769,-0.29769453,0.10632358,-0.2781722,0.09948079,0.4409186,0.9340211,-0.043289326,-0.066117376,-0.15200202,-0.16318682,0.18174222,-0.47120804,0.26166204,-0.52998483,-0.12988655,0.71885186,0.24259798,0.37901023,-0.2249271,-0.06824557,0.07343595,-0.15124185,0.3517774,-0.04479482,-0.39956924,-0.054880477,-0.90204203,-0.14566998,0.65389884,0.3199447,0.13534331,0.21655238,-0.27417582,0.08027084,-0.0044631124,-0.20325765,0.074223354,-0.7554449,-0.18238619,-0.46048746,-0.4932185,0.27824697,-0.3640935,0.09199037,0.28265095,0.20177618,-0.2433575,-0.2406116,0.5610686,0.5336639,0.20011194,-0.41550368,-0.3597579,0.0040504546,0.0070982156,-0.500538,0.027935114,-0.27452374,0.3856048,-0.69612896,0.5127286,-0.14516039,-0.3861175,-0.0122513715,-0.08787312,-0.04852407,0.5097421,-0.36845288,0.08560197,0.054647736,0.08980747,0.0049582245,-0.003433609,-0.30156508,0.23087266,-0.3410284,-0.20419244,0.007179439,-0.27286035,0.09192475,0.6621182,0.41905302,0.080686815,0.3708229,-0.08309467,-0.34259278,0.037540473,-0.43888584,0.56548274,0.08113097,0.003452158,-0.3184776,-0.22590785,-0.12727988,0.41034502,0.051485814,-0.07117024,-0.13010284,-0.7023171,1.1334534,0.12548852,1.2717263,0.032851376,-0.27533287,-0.114831924,0.6866422,-0.11367919,0.0990867,-0.48311132,1.1843504,0.56936336,-0.36622232,-0.45868483,-0.65874225,-0.12784985,0.17294115,-0.36536166,-0.27672583,-0.37343425,-1.0185537,-0.18994056,0.285927,0.51656145,0.10791765,-0.018081272,0.28943905,0.3115558,0.08575277,0.72458047,-0.66721404,0.016026998,0.33862716,0.24926576,0.25789404,0.32235432,-0.2488431,0.2059128,-0.8468009,0.35493702,-0.40541905,-0.009097236,-0.017539626,-0.48858556,0.3079081,0.18580991,0.27489215,-0.18901713,-0.28230175,-0.058350027,0.68262756,0.12975922,0.2542534,0.84409666,-0.23780577,-0.13435987,-0.0882872,0.5255311,1.6788113,0.2317841,0.18029141,0.07455216,-0.48868093,-0.7338333,0.2429409,-0.5536138,-0.1904336,0.08857324,-0.4766704,-0.41824594,0.27240863,0.3852759,-0.1262381,0.20946357,-0.24116698,-0.44189626,0.64460385,-0.4429199,-0.28372318,0.08879089,0.28555623,0.7479416,-0.31117803,-0.05586788,-0.17437407,0.6350311,-0.2905258,-0.6380051,-0.18066773,-0.3614357,0.60939306,-0.019691253,-0.38706693,0.0324261,-0.046803214,-0.48232883,0.045155585,0.46525088,-0.40299425,0.014240821,-0.36643457,-0.20036976,0.8492633,0.30857855,0.04299667,-0.75335616,-0.40460953,-1.1284909,-0.33168417,0.13880807,0.083248675,-0.10328649,-0.3965779,-0.25112748,-0.13269022,-0.086311884,0.124648556,-0.55402786,0.064657494,0.056325376,0.7261652,0.017734628,-0.86866856,0.18033953,0.21564963,-0.13876657,-0.4703072,0.64327,-0.2691483,0.5928393,0.05496446,-0.0014263391,-0.10568537,-0.69280994,0.3205815,-0.35949963,-0.17506835,-0.8816902,0.128867 +992,0.42239508,-0.41619518,-0.385811,-0.1150861,-0.04224274,0.23991686,-0.21762216,0.58215857,0.24838938,-0.4889524,-0.18996453,-0.33908328,0.034200054,0.4009827,-0.074305154,-0.46009287,-0.16300301,0.22398393,-0.4432123,0.43751982,-0.3197689,0.121604465,-0.09970695,0.5498874,0.13782741,0.20516913,0.05198277,0.05095281,-0.31366152,-0.21488781,-0.0506572,0.041569646,-0.534155,0.24526906,-0.19977714,-0.15044434,-0.09836706,-0.6373079,-0.32786885,-0.81077147,0.29677048,-0.97384566,0.60972637,0.10130614,-0.26705885,0.20130064,0.3605535,0.24480022,-0.29323694,-0.017161906,0.3685207,-0.2502478,-0.031255532,-0.09165803,-0.30346194,-0.46734276,-0.56126934,0.026367312,-0.2592672,-0.2794363,-0.19585504,0.24708843,-0.18522443,0.011677988,-0.059178058,0.56490606,-0.37699643,0.15845285,0.36766443,-0.34686056,0.43692198,-0.537215,-0.24257855,-0.16810028,0.2795747,-0.053936493,-0.24682975,0.22206956,0.3748499,0.3654836,-0.045156986,-0.12819998,-0.25771198,-0.06711921,0.20292504,0.45174214,-0.2504057,-0.4530389,-0.27033088,-0.22012039,-0.023445224,0.20234977,0.28048542,-0.26685324,0.007233826,0.011931722,-0.3717401,0.3166962,0.46344543,-0.23926382,-0.176494,0.3636403,0.57158923,0.20754321,-0.13324755,-0.13079906,0.14366192,-0.6000069,-0.17757277,0.19887726,-0.30787805,0.52954286,-0.15759152,0.2706795,0.6952691,-0.08788123,-0.107973136,0.011111389,0.12818955,-0.27791283,-0.56379116,-0.22861052,0.25060785,-0.35289446,0.2118452,-0.15122238,0.62360024,0.20817512,-0.510428,0.35503462,-0.56613225,0.13793765,-0.0116946725,0.38184395,0.64369744,0.4491874,0.38225213,0.82516783,-0.48392308,-0.10015103,-0.07099474,-0.1356979,0.13285899,-0.29679534,0.19461125,-0.545491,0.15010028,-0.0026618391,-0.09305922,0.1028074,0.5950322,-0.452081,-0.12294415,0.18753237,1.1058189,-0.19693892,-0.11532548,0.78379536,0.96303374,1.0139605,-0.044586223,1.4222571,0.2373793,-0.37884465,0.060922842,-0.06490705,-0.77268094,0.35291138,0.38186982,-0.37756371,0.19861977,0.19173966,-0.11834148,0.56774575,-0.25968918,0.16659279,-0.16074406,-0.11140829,0.16806985,-0.116940975,-0.3508869,-0.15254886,-0.082000606,-0.13945405,0.24460681,0.08388376,-0.30158758,0.49753156,-0.063186444,1.8331041,-0.24484594,0.11356803,0.082656495,0.3255708,0.1958258,-0.12385952,-0.029188251,0.5078335,0.32763547,0.27644566,-0.42937472,0.1619957,-0.2380622,-0.46222293,-0.0823577,-0.2673048,-0.13432513,-0.13122396,-0.30636773,-0.241334,-0.16722496,-0.2513053,0.3283515,-2.7898457,-0.20187627,-0.23236395,0.25296026,-0.30414593,-0.28831574,-0.13307433,-0.4081576,0.5258083,0.27716884,0.476369,-0.5195632,0.30729374,0.40859112,-0.60836285,-0.20443384,-0.47471237,-0.109584294,-0.040687658,0.30542985,0.009965385,-0.14985491,-0.076000504,0.17098336,0.5986207,0.107117794,0.21845241,0.46629402,0.55364424,-0.22861378,0.55097246,-0.20642318,0.6262751,-0.41910303,-0.23718621,0.29263353,-0.5748024,0.3461016,-0.102618545,0.15481089,0.5789921,-0.38906276,-0.87653184,-0.7531807,-0.2989432,1.02979,-0.23780866,-0.494514,0.13779068,-0.3670043,-0.38873652,-0.0020751853,0.7220359,0.01424702,0.20957433,-0.7984092,-0.01731419,-0.10178796,0.24743557,-0.011988692,-0.097154856,-0.46640626,0.94412184,-0.006170129,0.4978067,0.380903,0.06791099,-0.38542843,-0.33686936,-0.03233795,0.9896521,0.3184535,0.25542343,-0.1484326,-0.10997754,-0.5648041,-0.17122817,0.016520614,0.6053018,0.43316576,-0.030089637,0.14840376,0.30501023,-0.014792648,-0.01547277,-0.09197343,-0.35334477,-0.14541072,-0.07571911,0.52114683,0.5668907,-0.0654815,0.43061018,-0.2327982,0.44634604,-0.2275663,-0.46232986,0.50629634,0.9778538,-0.26237226,-0.26180223,0.6829737,0.3931084,-0.36229882,0.4552271,-0.6097359,-0.33774284,0.4592885,-0.102237485,-0.66674614,0.2229564,-0.29625067,-0.036684256,-0.8577523,0.16383426,-0.29907584,-0.4095731,-0.47941515,-0.23225848,-3.7798672,0.24858166,-0.13683403,-0.22893186,-0.21806206,-0.025042504,0.106932074,-0.5800047,-0.6450048,0.15802705,0.0066561997,0.746398,-0.14440553,0.20069599,-0.3146973,-0.22067071,-0.2995758,0.14738804,0.016728818,0.33272043,-0.12809588,-0.53195673,-0.06595171,-0.1280405,-0.4523375,0.03757159,-0.86462307,-0.38129592,-0.12091128,-0.63915807,-0.16565989,0.67396814,-0.40393028,0.0020790498,-0.27101794,0.07953378,-0.22131558,0.3950428,0.012314077,0.24143718,0.018435603,-0.3002455,-0.020863483,-0.15258865,0.3393786,0.12172792,0.15967402,0.32508084,-0.13180198,0.24456947,0.3399488,0.70987767,-0.10232952,1.0056517,0.30572483,-0.168572,0.33137548,-0.2450593,-0.16804963,-0.448485,-0.21625076,0.13722886,-0.5035701,-0.49231377,-0.012472426,-0.38000885,-0.75574136,0.5757427,0.114317924,0.14669612,0.111002654,0.2912006,0.41679797,-0.40287873,-0.01916382,0.005749198,-0.11744941,-0.5243379,-0.3479527,-0.5346606,-0.5109903,0.15548171,0.9183505,-0.05262977,0.13039242,0.16073388,-0.3543146,-0.10440195,0.2547476,-0.14295451,-0.04468755,0.41980255,-0.085333146,-0.75496745,0.5045657,-0.10860374,-0.20349564,-0.6361482,0.3629092,0.70631987,-0.57337457,0.88091415,0.50012684,0.11878311,-0.35170016,-0.49201962,-0.23365472,-0.18281443,-0.20004188,0.3754208,0.19995908,-0.7163761,0.29962555,0.45751682,-0.27152324,-0.73579913,0.54666984,-0.24330299,-0.15806328,-0.09545671,0.4862366,0.050438643,0.057019215,-0.2404998,0.2829375,-0.51722866,0.15953378,0.12365226,0.0061133206,0.44132194,-0.17020762,-0.14716923,-0.785731,-0.016434222,-0.50289625,-0.36360827,0.42221463,-0.01265724,0.086645216,0.3158724,0.11121968,0.27722374,-0.23584147,0.14766262,-0.14893667,-0.22799851,0.25374544,0.43324196,0.48070017,-0.5250643,0.67418975,-0.0019379109,-0.039686073,0.051500995,0.13937055,0.42097342,0.16045165,0.65980446,-0.081369996,-0.17941976,0.31915173,0.7358592,0.18709087,0.4976233,0.14708649,-0.1606489,0.1601006,0.12212209,0.24782366,-0.025967194,-0.7893653,0.10428091,-0.41088846,0.1765977,0.4208727,0.11005717,0.34451973,0.03633357,-0.32857653,-0.06622596,0.22047253,0.06671241,-1.1463461,0.3860949,0.17849547,1.0693866,0.34544942,-0.039299697,0.0148485815,0.78222513,-0.067720465,0.04045068,0.33352885,-0.080165066,-0.46540704,0.6372687,-0.8574111,0.3365365,-0.1587588,-0.037467178,0.04219964,-0.05202535,0.5723047,0.8164064,-0.1952961,0.050481766,-0.014863568,-0.17384124,0.35213003,-0.43607056,0.19984405,-0.49671006,-0.4157597,0.6406856,0.5573059,0.39715365,-0.38364443,0.08375924,-0.014170244,-0.11716219,0.10413306,0.20136802,0.09720149,-0.053613793,-0.9972293,-0.10495964,0.49232924,0.016299486,0.38301215,0.01801388,-0.28507784,0.32637876,-0.28592542,0.0071513704,-0.07376234,-0.7807782,-0.060629945,-0.3593317,-0.6125486,0.3479171,-0.022673344,0.12453868,0.15968934,0.00032912692,-0.19627042,0.5629916,-0.03815527,1.0496299,0.13026862,-0.0923442,-0.37956512,0.21729009,0.15879954,-0.24492241,0.06453028,-0.3419803,-0.06277164,-0.5708088,0.6116709,0.022676647,-0.54846364,0.2833158,-0.04336338,0.069277294,0.64478725,-0.13970561,-0.16483325,-0.15584126,-0.27402556,-0.25137466,-0.20382561,-0.07242525,0.37711868,0.13209695,0.14487375,-0.15963183,-0.0009987354,-0.22807728,0.30897728,-0.03025485,0.3806546,0.5703513,0.06141423,-0.31759933,-0.12369021,0.10276425,0.68569374,-0.034660775,-0.39627302,-0.13023718,-0.56259257,-0.4785134,0.3362111,-0.020515038,0.4682262,0.165873,-0.26661977,0.7195261,-0.112425126,1.1384401,0.07440678,-0.40174374,0.06751498,0.5931505,-0.0044303485,-0.13497327,-0.49039412,0.78712016,0.5300757,-0.07634044,0.017626164,-0.4303832,-0.03777019,0.26153648,-0.2089526,-0.08554233,-0.11165017,-0.7420514,-0.21813726,0.15895994,0.3435415,0.4273015,-0.17459698,0.13365178,0.4035976,0.03403992,0.2742751,-0.42355987,-0.20475249,0.37552285,0.37743977,-0.14915776,-0.002279232,-0.37206638,0.36678633,-0.54254127,0.15774785,-0.2962753,0.10284383,-0.41020885,-0.29617235,0.2587872,-0.06402647,0.38774264,-0.33132294,-0.32014665,-0.07772856,0.32691023,0.37114188,0.24102016,0.5606334,-0.16850837,0.049081773,0.176647,0.5497417,0.8726847,-0.44238734,0.09795723,0.3868061,-0.39163518,-0.7464374,0.4457864,-0.39111984,0.25707877,0.14786392,-0.2661422,-0.40113103,0.2684234,0.14954591,0.009649341,-0.048014652,-0.65968853,-0.02961865,0.39023098,-0.19350724,-0.17976807,-0.24864878,0.19175507,0.41785863,-0.10052973,-0.39711985,0.18126757,0.3418614,-0.17417018,-0.5971467,-0.1276852,-0.5251315,0.45945707,-0.014789547,-0.30426514,-0.085970975,-0.2340637,-0.57981294,0.22264862,-0.1480486,-0.37454247,0.12106963,-0.38994583,-0.23365188,0.84444684,-0.1784208,0.04003166,-0.48647282,-0.44812462,-0.80797726,-0.16486973,0.31691542,-0.037151173,-0.04663612,-0.42802384,-0.03868296,-0.19998503,-0.116531946,-0.013058625,-0.38935813,0.40553078,0.05878444,0.5946878,-0.07292505,-0.64103276,0.2021265,0.20757501,-0.12122369,-0.6708906,0.4934686,-0.13856058,0.7875002,-0.08295535,0.117141835,0.40471497,-0.5421373,-0.10426793,-0.24070399,-0.19959098,-0.67410916,0.12473234 +993,0.3732612,-0.2594817,-0.45764318,-0.019768171,-0.14950256,0.0030770202,-0.19008833,0.5999317,0.2910418,-0.3567654,-0.13344915,-0.1928504,-0.03673768,0.25746077,-0.11752691,-0.35475692,-0.16288733,-0.014024411,-0.40595445,0.5371534,-0.35310492,0.0610802,-0.15460594,0.56593996,0.22846417,0.19187546,-0.14963217,-0.003945112,-0.22813737,-0.16434671,0.022871792,0.46391663,-0.62955374,0.08950263,-0.2738073,-0.31310132,-0.14935647,-0.49605182,-0.45489538,-0.725163,0.3390173,-0.7782133,0.41468933,0.23040545,-0.17002524,0.40233198,-0.057035714,0.10646861,-0.21849477,-0.1287678,0.094521105,-0.15783612,0.06416687,-0.26903516,-0.17683096,-0.20216914,-0.61900896,0.066649474,-0.4329393,-0.20605408,-0.40118575,0.13018356,-0.31732175,-0.17524217,-0.10383745,0.5222801,-0.35843205,0.3239452,0.027218938,0.0349041,0.32066402,-0.5772261,-0.37220708,-0.1269878,0.28857273,-0.39578083,-0.22511618,0.20215075,0.1984232,0.2401946,-0.28609654,0.029458823,-0.4938693,0.08624222,0.11898449,0.43419638,-0.39516783,-0.69605184,0.052408297,-0.01451086,-0.036876738,0.15840803,0.17685735,-0.2904688,-0.10928928,-0.01843231,-0.102710664,0.597933,0.49081603,-0.1266859,-0.3316467,0.278415,0.4067544,0.32000247,-0.06448406,-0.31682557,0.10755557,-0.6293598,-0.051662784,0.13310297,-0.07184231,0.5681849,0.0472129,0.29144552,0.47214317,-0.27330884,-0.08279801,0.15614583,0.0040429533,0.12852706,-0.2423205,-0.1421902,0.20512517,-0.19197161,0.31938437,-0.12736917,0.7232284,0.075277105,-0.8669917,0.3133821,-0.66518253,0.022640595,-0.0286419,0.42197743,0.7261583,0.4133257,0.4121093,0.48114896,-0.3532544,-0.009399712,-0.06384742,-0.25448963,0.020908272,-0.23252924,-0.039670825,-0.4943253,-0.27288684,-0.044837486,-0.20748283,0.17217328,0.41940913,-0.48779926,-0.016355492,0.29041037,0.7591047,-0.16463389,-0.2028413,0.7669921,1.0693161,0.88597566,0.07525236,1.0476445,0.07437367,-0.20329382,0.45098937,-0.2632461,-0.7809295,0.26807275,0.13629414,-0.37226963,0.16673093,0.23458405,-0.012085984,0.21821345,-0.3949841,0.004504343,-0.055695403,0.038324624,0.24930553,-0.22007398,-0.26523867,-0.25566253,-0.2948129,-0.008745432,-0.008105472,0.25350782,-0.30620345,0.25232917,0.01757229,1.453723,-0.022452364,0.09788912,0.059157137,0.5740612,0.03742824,-0.23534946,-0.16059762,0.35181925,0.27585283,0.34751844,-0.6122768,0.19728482,-0.14173652,-0.46047118,-0.05344927,-0.371351,-0.23168588,-0.024832817,-0.526692,-0.09344985,-0.18158306,-0.27497503,0.5078297,-3.1057987,-0.0527186,0.056618404,0.33961204,-0.12116798,-0.3303285,-0.04245149,-0.38268325,0.41269493,0.28834572,0.38602623,-0.61562544,0.28628376,0.46982327,-0.50308007,-0.1805657,-0.54233706,-0.015652113,0.033261847,0.37870696,0.021221032,0.15311548,0.24760486,0.041592002,0.44712016,0.0018899838,0.13872364,0.18601872,0.56672513,-0.1892335,0.4313911,-0.16140811,0.3840042,-0.40127778,-0.28151095,0.24107178,-0.4315548,0.3531065,-0.08388489,0.09976655,0.4193212,-0.32704416,-0.9356629,-0.50456053,-0.19551682,1.0737334,-0.015805105,-0.3764607,0.24737792,-0.5222284,-0.2489732,-0.19280045,0.69409704,-0.035446446,0.06324521,-0.7631164,-0.045760084,-0.2832677,0.17577188,0.01975105,0.032710116,-0.40662536,0.64277434,0.09227052,0.33201817,0.410906,0.08449912,-0.45577502,-0.6062216,0.07765896,0.7302157,0.17443015,0.21618801,-0.23908709,-0.24502373,-0.09433856,0.06580923,0.10736713,0.7205258,0.35788998,-0.03521882,0.23536693,0.30232468,0.053992543,0.054242153,-0.15109669,-0.1947666,-0.19182622,0.07342985,0.5675342,0.96235347,-0.17525448,0.47443834,-0.0017250212,0.15597217,-0.23590492,-0.1821369,0.36550793,1.009307,-0.046109777,-0.20355837,0.6052249,0.6265808,-0.2613741,0.4033061,-0.44337454,-0.21440963,0.56887984,-0.21517538,-0.46728492,0.2529095,-0.27691543,-0.003728648,-0.8341079,0.3119471,-0.2713873,-0.4834675,-0.6910176,-0.00029408684,-2.9945533,0.109324515,-0.3011668,-0.27888364,-0.17623071,-0.23806024,0.09682119,-0.7193373,-0.4480505,0.118176274,0.0925312,0.56349725,-0.21471675,0.12524064,-0.26205882,-0.32474267,-0.12411791,0.17594086,0.31321463,0.32358962,-0.052448023,-0.3343914,-0.14759576,-0.05125634,-0.22331113,0.06494499,-0.4512709,-0.36274645,-0.096894465,-0.5501239,-0.34963647,0.6688075,-0.4251815,-0.16760506,-0.20381151,-0.048064787,0.0015991777,0.34863782,0.17773454,0.20731342,0.052325595,-0.07470977,-0.08394989,-0.23821647,0.35813951,0.041309025,0.35749725,0.57414633,-0.21343009,0.31652617,0.47413644,0.5231965,-0.06801218,1.0045904,0.54842114,-0.009239475,0.27042326,-0.3188858,-0.22288036,-0.58480126,-0.1747921,0.116813324,-0.35123298,-0.47371876,-0.035304904,-0.36428404,-0.6959703,0.5613727,-0.24575724,0.18515168,-0.0055018864,0.33344316,0.52058554,-0.27280363,-0.10823534,-0.135107,-0.037821937,-0.48224187,-0.30378282,-0.4040661,-0.5099662,0.0076522627,0.7164522,-0.1676053,0.06715719,0.24114467,-0.22504993,-0.040140066,0.14862591,-0.10914749,0.18348247,0.3017771,0.070650004,-0.6166106,0.5277588,-0.07157699,-0.22667068,-0.62733227,0.2191956,0.5183584,-0.62276596,0.63447917,0.3787172,-0.025756663,-0.101481974,-0.5199702,-0.17677534,-0.02624932,-0.019892097,0.2236378,0.344015,-0.8737928,0.34606746,0.32437623,-0.24820781,-0.74497336,0.6487179,-0.10920509,-0.34909606,-0.015129681,0.3154949,0.083036624,0.05431254,-0.07762939,0.3962039,-0.25526276,0.2860237,0.027601948,-0.07038766,0.069187485,-0.07075209,0.017430237,-0.5865634,0.36487472,-0.3946868,-0.3743215,0.45544073,0.13869546,0.18854226,0.3106884,0.16961372,0.25093088,-0.19263832,0.051504444,-0.13099374,-0.25876486,0.14539231,0.41479087,0.69550866,-0.51041305,0.4912772,0.104875624,-0.018782796,0.21347363,0.12348774,0.35962257,-0.23028915,0.4209241,0.09252801,-0.34826016,0.15156461,0.98885745,0.20148647,0.4987607,-0.065377586,-0.02444903,0.30526957,0.07529896,0.23549835,-0.123639196,-0.6089811,0.13324483,-0.34980837,0.18838625,0.3476461,-0.018917115,0.025608048,-0.30813077,-0.34812465,0.05484273,0.5048999,0.2043423,-1.1531565,0.21387182,0.09654089,0.89673567,0.48125315,0.04832072,0.11049303,0.6311982,-0.0077669225,0.08546207,0.44894242,0.067709826,-0.54729706,0.48877847,-0.7486003,0.5202442,-0.06395038,0.028602347,-0.031199744,-0.2603722,0.29688475,0.6523474,-0.28410962,-0.009758949,0.12196356,-0.4055711,0.016170979,-0.47757697,0.48601738,-0.5953929,-0.1523227,0.68019,0.70954347,0.22650321,-0.10829691,0.0048566037,0.17942636,-0.13316697,0.09142247,0.034740705,0.1461541,0.034174588,-0.77734756,0.07882292,0.6136151,-0.110545635,0.15532644,-0.1213975,-0.1022918,0.39878586,-0.3414563,-0.2619065,-0.11842259,-0.77485013,0.2136016,-0.45147762,-0.5516236,0.5049549,-0.13390066,0.33144906,0.34319985,0.19145364,-0.3515587,0.5195169,0.15828599,0.7486648,-0.033177715,-0.05083983,-0.38722983,0.09952245,0.2807159,-0.11186105,-0.27170387,-0.17307562,-0.0051980517,-0.4274795,0.28968468,-0.08480566,-0.25625083,-0.29140607,-0.017264301,0.17375548,0.6607919,0.060849886,-0.119572066,-0.107340015,-0.23754257,-0.3567225,0.104422234,0.039846033,0.28270134,0.27712783,-0.12339753,-0.11842939,-0.15570149,-0.16668825,0.25043708,-0.038275275,0.50921965,0.33328357,0.26282942,0.02120985,-0.20991255,0.15602343,0.6026913,0.040115554,-0.16964133,-0.25739798,-0.28010616,-0.3384806,0.2819148,-0.03530597,0.3652114,0.065846264,-0.33956432,0.5556703,-0.19467352,0.9525712,0.07456088,-0.33629692,0.23409732,0.3538336,-0.047112014,-0.15113302,-0.43173113,0.9673934,0.49041784,-0.06295464,-0.14015661,-0.057603955,0.02721688,0.06471268,-0.25657222,-0.13588801,-0.007962356,-0.55905837,0.1747305,0.24012107,0.3155463,0.21991153,-0.14465195,0.03886972,0.2648153,0.04858913,0.139565,-0.37991628,-0.1490465,0.30389178,0.30873662,0.10810394,0.09667497,-0.3865675,0.35321307,-0.35372424,0.05622394,-0.42327258,0.20602399,-0.3641392,-0.21932888,0.22188419,-0.029490089,0.52774966,-0.1618719,-0.20202573,-0.38297808,0.31121954,0.15969323,0.16227995,0.39802125,-0.21666728,0.102623515,-0.016427608,0.44486824,0.7144607,-0.28861746,-0.2068569,0.3254449,-0.3000245,-0.50215244,0.44215894,-0.50367665,0.19827087,-0.07924659,0.06159761,-0.37459612,0.1495195,0.14976822,0.13107549,-0.18854944,-0.75274724,-0.17533056,0.20576006,-0.24014287,-0.22576977,-0.19926663,0.04429674,0.74472475,-0.20427684,-0.20430104,0.08560866,0.32841897,-0.119945206,-0.29668188,0.15557714,-0.34821084,0.16869867,-0.06282865,-0.39752576,-0.25947985,0.10253314,-0.39757195,0.084541,0.07237958,-0.42876986,-0.020363351,-0.25961038,-0.04615888,1.0053388,-0.27525637,0.28443673,-0.35045418,-0.60013574,-0.79169804,-0.27845848,0.25188437,0.12085644,0.067295134,-0.59462047,0.04409079,-0.047211513,-0.39349318,-0.18567978,-0.47548398,0.4183134,0.043312464,0.485721,-0.2212705,-0.75277215,0.12046965,0.16482061,-0.14017613,-0.79636365,0.4393758,-0.058393005,0.85998005,-0.039965093,0.07902288,0.36345437,-0.3709596,-0.13610415,-0.10710905,-0.18166226,-0.6575021,0.07773427 +994,0.4802388,-0.0914431,-0.57846844,-0.08633191,-0.57933915,0.08526304,-0.14699666,0.24884814,0.2653952,-0.17026256,-0.32440543,-0.1392046,0.23041706,0.37469664,-0.13691252,-0.80478513,-0.08293371,0.18498385,-0.79734075,0.48920733,-0.55058736,0.34772044,0.080954626,0.45047265,0.18279281,0.34141934,0.2433458,-0.11862131,-0.12197102,0.068379655,-0.060049444,0.16330753,-0.60489154,0.14960198,-0.1711525,-0.3373746,0.10367816,-0.45990545,-0.24441157,-0.6641208,0.20712547,-0.99186724,0.5175505,-0.17264566,-0.08090626,-0.03986414,0.26865453,0.33477277,-0.37959743,0.15389258,0.20590496,-0.27925804,-0.18389145,-0.23441441,-0.101839185,-0.5022702,-0.4834724,-0.05561912,-0.55950177,-0.31631577,-0.21827386,0.22087495,-0.30645952,0.15552536,-0.073966056,0.24579129,-0.4450099,0.06756349,0.35083556,-0.21403523,0.12157008,-0.47798002,-0.0019180477,-0.030886032,0.45548636,-0.012368336,-0.19142552,0.37594754,0.3813506,0.45447317,0.30397758,-0.36719233,-0.16902484,-0.25559196,0.2401762,0.5075206,-0.11375884,-0.30014104,-0.17437808,0.06916592,0.27548122,0.33774418,-0.056705974,-0.21832743,-0.046933915,-0.13620889,-0.13039671,0.38081023,0.5306399,-0.31123,-0.30204582,0.43362382,0.66444534,0.19943914,-0.14987922,0.119717926,0.050888535,-0.624552,-0.1515484,0.15727076,-0.062473454,0.44981253,-0.18514487,0.12160571,0.9366107,-0.08936228,0.042638276,-0.14177673,-0.04323145,-0.2416605,-0.26760986,-0.078873456,0.16322826,-0.5809504,0.0011615027,-0.30600667,0.81835103,0.19761837,-0.6267351,0.41296166,-0.54231894,0.22876024,-0.11661891,0.5969704,0.65246505,0.33919436,0.2897778,0.7577852,-0.30185276,0.33617184,-0.104676604,-0.5153757,0.050057575,-0.26865342,0.085734904,-0.4069925,0.28390557,-0.22234696,0.060250755,0.07500565,0.51014584,-0.51718616,-0.18172352,0.115676425,0.79631317,-0.3980274,-0.1350937,0.66738486,0.85886663,1.0363319,-0.028070368,1.394921,0.40441525,-0.17846125,0.008570276,-0.28262487,-0.613713,0.18075672,0.36503887,0.013373271,0.29110977,-0.061095573,-0.09744913,0.36509112,-0.32572064,-0.1489736,-0.07081179,0.38980693,0.16606325,0.058545396,-0.42759883,-0.21248117,0.022270307,-0.03957393,0.22266886,0.32876623,-0.22777149,0.38681638,-0.07259846,1.4296672,-0.068518944,0.12248092,0.09603618,0.45562685,0.27528954,-0.035673283,-0.085069865,0.41844344,0.37945092,-0.017119274,-0.6071039,0.20862691,-0.35749063,-0.45351142,-0.14604762,-0.33021596,-0.18705727,0.085892364,-0.46587607,-0.20065258,-0.10983813,-0.17785186,0.4281835,-2.5458353,-0.30603793,-0.11848354,0.3574337,-0.2586139,-0.2350387,-0.20665747,-0.5912653,0.20862766,0.21195707,0.40041563,-0.7176031,0.51554364,0.5106733,-0.49891508,-0.13152885,-0.6803051,-0.08267022,0.015634663,0.43053892,-0.14932832,-0.04507058,-0.26789635,0.2189116,0.60749173,-0.0042252243,0.23311661,0.5379242,0.383284,0.20715556,0.53620964,-0.028932098,0.54238045,-0.26256222,-0.16612086,0.4011346,-0.25386652,0.35556757,-0.27961513,0.12721929,0.51177174,-0.44109285,-0.9563654,-0.6285664,-0.2815048,0.93739045,-0.48133898,-0.46650654,0.20819287,-0.056221254,0.019674286,0.14766008,0.44833136,-0.10319883,0.04636982,-0.7525137,0.032984056,0.026305437,0.13781255,0.043956894,0.02750948,-0.21204041,0.67741245,-0.151573,0.52737045,0.14105871,0.34304142,-0.01658979,-0.4233387,0.09103799,0.8012366,0.2923622,0.10362893,-0.26152742,-0.2951633,-0.13043985,-0.22639188,-0.031914525,0.5680582,0.786831,0.025318976,0.15098207,0.21067563,-0.07856552,0.057237096,-0.18574996,-0.22504899,0.067317866,-0.061798133,0.40170288,0.74891466,-0.24851242,0.4696106,-0.32348996,0.37499094,-0.12206185,-0.68936163,0.63456464,0.70232576,-0.26483965,-0.05568111,0.52010554,0.4535637,-0.5101566,0.47040147,-0.7158358,-0.27890706,0.7535863,-0.19640982,-0.4606759,0.1505476,-0.21718107,0.04757414,-0.79025435,0.3090335,-0.1937603,-0.4017567,-0.40779698,-0.0604269,-3.4237494,0.2670291,-0.18581499,-0.04617957,-0.23422994,-0.058439165,0.23565419,-0.5848941,-0.6941365,0.17132398,0.18787631,0.6915277,-0.12274042,0.2644961,-0.26146972,-0.1463452,-0.11422644,0.11426304,0.12086065,0.24828458,-0.077994555,-0.45054764,0.09295751,-0.048306078,-0.473419,0.26607695,-0.58781075,-0.50949466,-0.07533839,-0.3969276,-0.2192881,0.53686965,-0.44788072,-0.070090644,-0.25898582,0.108710185,-0.33205092,0.14366746,0.15175718,0.27831644,0.19513312,-0.005220769,0.091920644,-0.32788536,0.56445175,-0.09235443,0.26256996,0.03552985,0.054014623,0.07882344,0.42028773,0.57050085,-0.23311782,1.0154824,0.26034683,-0.022378776,0.19316818,-0.19470692,-0.3163008,-0.5536652,-0.3729983,-0.2326079,-0.45167476,-0.49936712,-0.028447598,-0.38496014,-0.8156212,0.47423047,0.047441587,0.32287148,-0.18495242,0.24753013,0.55485624,-0.34192088,-0.010689035,-0.061260503,-0.15747893,-0.6321125,-0.35223526,-0.6620868,-0.5218324,0.10126758,0.99844134,-0.32108888,-0.0031373724,-0.18086791,-0.28739098,0.008447422,0.09499267,0.05972769,0.28027552,0.6255685,-0.12864345,-0.7189586,0.48269552,-0.17985646,-0.13242553,-0.59248906,0.010254921,0.57227945,-0.7592336,0.6315105,0.46620739,0.12142283,0.12776558,-0.6055823,-0.26641876,-0.06557763,-0.19665746,0.48465765,0.088045835,-0.7566191,0.5798053,0.30578196,-0.43057078,-0.8448231,0.30399853,-0.02513786,-0.34433278,0.03264251,0.31092837,0.13761847,-0.100213915,-0.25989187,0.15021059,-0.526566,0.3301631,0.23671344,-0.049235642,0.31286836,-0.16439112,-0.4189031,-0.69979894,-0.13104711,-0.44199845,-0.23756948,0.19416974,-0.11150162,0.0011738464,0.08508977,0.096961856,0.47171804,-0.32346523,0.102172144,-0.006106943,-0.34049946,0.27870914,0.39141473,0.32113373,-0.3419452,0.5280722,0.036139168,-0.2482062,0.14761838,0.14245483,0.4317522,0.15138,0.38400257,-0.09317055,-0.18500063,0.3755203,0.74977946,0.08882616,0.35288116,0.033923365,-0.25116348,0.47279269,0.013052233,0.12063978,0.024812594,-0.36634612,-0.021120735,-0.04360196,0.19607206,0.5073179,0.3651313,0.43959028,0.055443034,-0.15990594,0.12078561,0.09360903,-0.005108457,-1.1052333,0.21975607,0.17360166,0.89016044,0.44253284,0.08976433,-0.098269895,0.562934,-0.21027279,0.13400108,0.46873295,0.095906556,-0.43155292,0.8109376,-0.60143936,0.3213501,-0.31652898,-0.08392052,0.14907217,0.22578266,0.29680738,0.8831969,-0.17586401,-0.027590683,-0.108577006,-0.1940816,0.010820888,-0.2906368,-0.06476776,-0.56323755,-0.3318394,0.692944,0.44570422,0.34191945,-0.27198416,-0.13160197,-0.038088154,-0.11619849,0.09493819,-0.015766248,0.06426707,0.15035829,-0.5051259,-0.3512005,0.5944318,0.09274772,0.16819197,-0.22543761,-0.35372245,0.066904195,-0.34651124,0.0211261,0.017231582,-0.68561983,-0.10244935,-0.16616213,-0.62206733,0.3964094,-0.17928296,0.11326994,0.18030584,-0.017324418,-0.278781,0.1814054,0.097095996,0.9880911,0.03459598,-0.22952096,-0.33257943,0.12514234,0.38497788,-0.25547534,0.095054224,-0.34393904,0.12908052,-0.5141619,0.7116699,-0.1633895,-0.3356232,0.35693023,-0.29902294,-0.026835157,0.59984916,-0.053299397,-0.14565288,0.15740252,-0.047059506,-0.5273715,0.0037677437,-0.34289986,0.19707955,0.24163772,-0.14691876,-0.106772065,-0.18250239,-0.08405334,0.5595967,0.040216513,0.5007518,0.27594346,0.0073678754,-0.22150172,-0.039393652,0.17378023,0.51751655,0.12584297,-0.13949162,-0.391136,-0.44022813,-0.2320678,0.23332268,-0.15701483,0.13601165,0.10838136,-0.22346567,1.0198187,0.013773007,1.149577,0.16787145,-0.3047545,0.09033914,0.51273584,-0.07787043,0.0038836487,-0.36700267,0.7799482,0.48841774,-0.13325179,-0.051164094,-0.36882877,-0.054840825,0.36981916,-0.36450624,-0.022429623,-0.090215445,-0.51498675,-0.4866112,0.32276106,0.23737606,0.12815426,-0.06581099,0.008755298,0.027625374,0.085123256,0.5391444,-0.6969952,-0.23935911,0.17525625,0.25191182,0.027113743,0.3030158,-0.3539327,0.4377398,-0.7390499,0.08847487,-0.51911557,0.14551486,-0.13158603,-0.3331179,0.11823679,0.027215783,0.39914343,-0.30278623,-0.44398808,-0.18427198,0.46940833,0.08584265,0.13028832,0.62917113,-0.28757793,0.059161104,0.1366253,0.5725733,1.2605054,-0.42600554,0.114304066,0.4497881,-0.3153246,-0.5865693,0.44434744,-0.3732832,-0.09964397,-0.10456035,-0.45183548,-0.46183696,0.3215006,0.2434303,0.06724337,0.09374989,-0.57462215,0.021372177,0.37863427,-0.2559,-0.22143818,-0.18512549,0.3190413,0.7899303,-0.29353172,-0.29142213,0.05899367,0.3466212,-0.25369564,-0.49979302,-0.08339012,-0.30103528,0.39820856,0.101444304,-0.0863261,-0.075160295,0.17165986,-0.4286206,0.106161624,0.16000623,-0.37829956,0.12796566,-0.26210642,0.19018644,0.84714675,-0.17953134,-0.1472,-0.83843625,-0.36178055,-0.93511117,-0.454464,0.1670638,0.15021744,0.026117451,-0.37996265,0.06925832,-0.10584938,-0.15100886,0.06313166,-0.4935661,0.40392816,0.08684096,0.49834287,-0.26446676,-0.9745467,0.040179014,0.042077623,-0.26907116,-0.6626394,0.5985699,-0.13347608,0.8479388,0.036669362,-0.0978611,-0.008369185,-0.34554374,0.3061211,-0.47477466,-0.08504635,-0.8760117,0.12199935 +995,0.43395612,0.07914376,-0.69459194,-0.22184943,-0.356422,0.08178975,-0.22408906,0.53594184,0.05933177,-0.47812518,-0.21615852,-0.23668262,-0.008727095,0.2414905,-0.2859335,-0.627116,0.18560958,0.13001391,-0.46221733,0.26129603,-0.4707549,0.54509985,0.18530956,0.25630188,0.07189907,0.08687579,0.16737577,-0.117459945,-0.07701053,-0.5387954,-0.035854362,0.0762371,-0.7556935,0.1491298,-0.410656,-0.5390368,0.25850576,-0.4813591,-0.25306895,-0.79122764,0.15315807,-0.7534703,0.66999733,-0.043068312,-0.42149606,0.17583588,0.21944854,0.37125507,-0.02949153,0.1786463,0.15953921,-0.21042076,-0.10878251,-0.057454415,-0.33833975,-0.59799296,-0.63167053,0.18588018,-0.68113816,-0.24821922,-0.17518108,0.14176211,-0.47862554,0.047461953,0.009818273,0.47892672,-0.39615163,-0.14633141,0.2723139,-0.17949417,0.41952705,-0.6135484,0.017395353,-0.15023734,0.2972711,-0.25144902,-0.15459062,0.18652216,0.2611957,0.6079545,0.13051353,-0.3529794,-0.1332181,-0.13680588,-0.06196999,0.50925815,-0.18498985,-0.32204267,-0.2601285,-0.053605467,0.40887636,0.28601572,0.078921996,0.011821947,-0.12202071,0.0859022,-0.31331584,0.5593737,0.5473643,-0.55713505,-0.00814917,0.33325368,0.47748464,0.21832426,-0.045839585,0.19540851,0.005401694,-0.6281935,-0.25457022,0.06219739,-0.23902157,0.44323573,-0.29093376,0.32728752,0.67486745,-0.20434077,0.06723196,0.36760828,-0.042402823,0.04972812,-0.088871464,-0.29158112,0.3675666,-0.65639156,0.06260854,-0.26584247,0.8662609,0.21859524,-0.5980342,0.30443838,-0.63107693,0.15047625,-0.11102907,0.63978034,0.6691262,0.5955035,0.16878448,0.7892745,-0.43251052,0.016576396,-0.035340257,-0.22786808,0.12733185,-0.13564192,-0.102414444,-0.28855425,0.0464893,-0.111583844,0.10482783,0.07935714,0.40151986,-0.6429772,-0.07790406,0.14411055,1.0118656,-0.25833794,-0.08765221,0.76935875,0.9045598,0.96531457,0.024399344,1.120934,0.09628658,-0.1420901,-0.07664586,0.14028491,-0.55179465,0.38567662,0.396321,0.116821766,0.30321184,-0.0360342,0.033665825,0.33598232,-0.43090057,-0.16864443,-0.13993376,0.2124592,-0.0528112,-0.17731752,-0.48086914,-0.15860096,-0.0360362,0.01781579,0.17035298,0.26372787,-0.06083704,0.42055467,0.0030184984,1.0794591,-0.12466632,0.14332081,0.03053315,0.4399231,0.2604749,0.04380318,-0.053200595,0.18373744,0.21574332,0.22894137,-0.6125693,0.02308472,-0.30348793,-0.40053743,-0.2584191,-0.29185122,-0.24813318,-0.1858573,-0.5530384,-0.18275312,-0.14372052,-0.26537186,0.4525198,-2.3868365,-0.32391864,-0.1437918,0.3514026,-0.22102274,-0.3725355,-0.14276603,-0.4884879,0.57626504,0.31262055,0.565322,-0.68931484,0.4837775,0.5021621,-0.2580929,-0.16329002,-0.62409365,-0.20155679,-0.01679633,0.11375988,0.11848096,-0.38323376,-0.18378222,0.14132933,0.54233056,0.0159251,0.10716847,0.008164908,0.31254464,-0.1356001,0.47435632,-0.0058189207,0.55716413,-0.31483346,-0.14516595,0.41355133,-0.36186272,0.11839117,-0.25528148,0.11204624,0.37085143,-0.61922437,-0.9354022,-0.6884846,-0.38649216,1.2646139,0.036840748,-0.4948233,0.26589695,-0.07049971,-0.2012618,0.09585665,0.36416197,-0.07272989,0.21491551,-0.63729316,-0.067514226,-0.124656424,0.1808832,-0.07216019,0.1292867,-0.53818244,0.6045538,-0.10473131,0.30582276,0.2898269,0.26846412,-0.26867226,-0.5514148,-0.028073302,1.1289943,0.7101515,0.1588505,-0.37125382,-0.055967946,-0.5644415,-0.050913103,-0.075330555,0.61322594,1.009718,-0.12727994,0.12778372,0.35051963,-0.044073123,0.17973034,-0.05033738,-0.5653266,-0.13877764,0.010227501,0.5745138,0.4578309,0.013027127,0.5011377,-0.035093337,0.45148635,-0.272645,-0.55736315,0.4915131,0.7514643,-0.44609421,-0.316804,0.65295094,0.2925103,-0.23608346,0.58177567,-0.64645493,-0.63863546,0.42177382,-0.026653955,-0.57791865,0.19797246,-0.36604524,0.23198628,-1.1317035,0.3556381,-0.39082116,-0.53633374,-0.36063877,-0.2853844,-3.3873436,0.20156904,-0.17170143,0.15179195,-0.24754238,-0.08569892,0.34853488,-0.38377175,-0.761065,-0.03183158,0.086536594,0.7975175,-0.0888992,0.16774593,-0.27805862,-0.50729877,-0.28815243,0.36639664,0.29603735,0.16805312,-0.06855537,-0.31594467,-0.04609256,-0.29352596,-0.47243792,0.059035752,-0.6715693,-0.61960155,-0.31684667,-0.5793945,-0.35592058,0.7422809,-0.3568612,0.045032736,-0.27693018,0.14761446,0.07549618,0.1755452,0.12336405,0.1435428,0.029025713,-0.13851148,0.08513603,-0.37918684,0.27662566,0.14543779,0.34859374,0.23070478,0.00044141497,0.18402995,0.57917595,0.6112656,-0.15382078,0.87284786,0.2512595,-0.013585674,0.4400722,-0.29875436,-0.52652574,-0.44792816,-0.30779833,-0.030075928,-0.44370228,-0.32717034,0.12696777,-0.34217533,-0.84605414,0.587648,0.068081714,-0.00967899,-0.20144033,0.46798882,0.54670835,-0.16694136,-0.14757523,0.0716788,-0.07748925,-0.5109574,-0.16276087,-0.7739948,-0.5483925,-0.1861025,1.1609153,-0.21986988,0.080615565,0.085410155,0.21264254,0.21185027,0.010787046,0.11294986,-0.06737799,0.5330699,-0.0038180265,-0.76902753,0.39264336,-0.20030198,-0.1905158,-0.58025074,0.1423956,0.766095,-0.70592105,0.3191199,0.7424901,0.07352984,-0.13344982,-0.53128445,0.13819928,0.0013095279,-0.34950548,0.43644708,0.055143587,-0.7417348,0.5821882,0.25891814,-0.30320188,-0.7294261,0.6596915,-0.021851847,-0.23609832,0.07358261,0.47310543,0.25634265,-0.05919981,-0.0546523,0.26361004,-0.51176316,0.17270672,0.2877365,-0.047396116,0.77596337,-0.2119884,-0.3485399,-0.72928673,-0.12180209,-0.6303493,-0.35531646,0.21277942,-0.05903726,-0.08947091,0.3048298,0.15101874,0.5368777,-0.2830602,0.12498194,-0.32882208,-0.34471336,0.57851034,0.5468806,0.54108226,-0.45975408,0.65235275,0.065336466,-0.016951997,0.11915689,0.03439234,0.52603763,-0.20868865,0.40374225,0.20152111,0.0053443653,0.05861234,0.7095346,0.12353661,0.3833365,0.12069046,0.02044685,0.1571016,0.13416775,0.06569259,0.040531497,-0.49813518,-0.112390526,-0.17571394,-0.02864795,0.54964393,0.14316097,0.25471464,0.027667029,-0.1683481,-0.046064854,-0.0047820085,-0.18665807,-1.1238654,0.48539957,0.27434838,0.7744699,0.34060255,0.23877041,0.08175985,0.49098536,-0.25080797,0.19282852,0.4208601,0.28595617,-0.34770307,0.6195065,-0.6771498,0.52827114,-0.053031,0.0001104985,0.042430345,-0.116347805,0.6579728,0.86971515,-0.13633718,0.09989004,-0.07661758,-0.28830633,0.19621284,-0.5082142,-0.20142163,-0.40040588,-0.030387912,0.7967022,0.35465363,0.15158017,-0.24545076,-0.026980365,0.11293528,-0.1650969,0.26426822,-0.107903294,0.048974577,-0.2657577,-0.4388767,-0.21154276,0.53532755,0.16464524,0.17894614,0.0803077,-0.10917771,0.21694772,-0.108064875,0.20074283,-0.104979925,-0.6037897,-0.019244624,-0.6803873,-0.4038034,0.28601214,-0.30262595,0.2295382,0.13781989,0.10514689,-0.24742696,0.29768577,-0.061068747,0.47175097,-0.09652849,-0.32091832,-0.22888705,0.22658846,0.21687813,-0.55264634,-0.25224778,-0.17322867,0.20513286,-0.49516034,0.34476784,-0.3194628,-0.36204386,0.110590756,-0.17321506,-0.17133543,0.44507584,-0.17181359,-0.0016642745,0.31849837,-0.16906847,-0.105823584,-0.20176263,-0.16258523,0.12946458,0.16123155,-0.16336107,-0.15692125,-0.2547936,-0.02652162,0.39298883,-0.15111338,0.34940976,0.30700594,0.082653746,-0.4954968,-0.16178472,0.10120629,0.56151503,-0.038084,-0.035081156,-0.35059384,-0.3876775,-0.2414136,0.15789866,-0.1270402,0.21471511,0.13135622,-0.21322183,0.89984226,0.2264014,1.2876663,0.00045850448,-0.41515806,0.0434891,0.5393954,-0.07640074,-0.08700182,-0.41751957,1.1746616,0.3702992,-0.2767991,-0.1785877,-0.36166498,0.04276674,0.17798771,-0.20069548,-0.3681531,-0.21637197,-0.5318465,-0.32582092,0.3782077,0.46134853,0.13037702,-0.15420905,0.05061922,0.2888546,-0.038029917,0.4203772,-0.62436384,-0.21219638,0.324131,0.23333676,-0.06765705,0.121008776,-0.48689047,0.29838854,-0.6971591,-0.032376196,-0.3623708,0.1834307,-0.128449,-0.51559937,0.33176824,0.09597795,0.34605926,-0.24888137,-0.42375627,-0.0949433,0.28278825,0.17803153,0.15699218,0.76067704,-0.32781363,-0.063510664,-0.023449685,0.5682988,1.2779897,-0.19672163,-0.026186073,0.33623543,-0.24996923,-0.5973192,0.2529158,-0.6900193,0.11212938,-0.11832229,-0.4269788,-0.49816146,0.23442318,0.10581766,0.034179177,0.1883334,-0.7902312,-0.09501732,0.18570757,-0.23178056,-0.23490581,-0.32601422,0.24292101,0.76924133,-0.21529426,-0.11349203,0.034606006,0.49492756,-0.20184848,-0.71823317,0.09396416,-0.061171144,0.33010417,0.06924768,-0.3238062,0.10471482,0.09672703,-0.5235451,0.14358275,0.331631,-0.30889538,0.059105407,-0.27244446,0.26077995,0.6920128,-0.03930685,0.13926479,-0.32197925,-0.5024935,-0.8056301,-0.060072947,0.4786425,0.28903428,-0.008180733,-0.5724655,-0.06411223,-0.29865503,-0.18398584,-0.08562094,-0.3104275,0.3110511,0.14758173,0.5313948,-0.15377672,-0.807057,0.15689747,0.029609231,-0.20727964,-0.60013807,0.5371298,-0.13916269,0.75939053,0.2717189,0.021192163,0.2512996,-0.5697509,0.12501898,-0.15763608,0.013167462,-0.74314743,0.11416189 +996,0.3830308,-0.2402277,-0.39379904,-0.10161166,-0.11658681,0.28056946,-0.21423906,0.40391216,0.081086546,-0.537955,-0.105117135,-0.21911027,0.08475978,0.1884912,-0.14662036,-0.3183106,-0.06488561,0.01340969,-0.36538634,0.44457817,-0.50374407,0.35291252,0.007907931,0.29693902,0.03858277,0.26759642,0.11784415,-0.15542434,-0.10317465,-0.19269486,-0.09489056,0.24448475,-0.5279676,0.0743845,-0.03939437,-0.44333866,-0.027695093,-0.34692335,-0.24881443,-0.6397265,0.2388154,-0.83784527,0.4393197,-0.039189484,-0.3642797,0.38039646,0.05333836,0.2614914,-0.14740492,0.14047095,0.08291634,-0.04298396,0.10405208,-0.15618624,-0.2113892,-0.3447343,-0.46335372,0.06898805,-0.38165912,-0.28733814,-0.31066892,0.12375732,-0.20397814,-0.100991055,-0.20951214,0.31554773,-0.47909755,-0.15371329,0.15691207,-0.1393571,0.46872905,-0.5239621,-0.122350074,-0.11317326,0.23741181,-0.30026215,-0.11807129,0.12986735,0.35732555,0.62578464,-0.017501397,-0.089948885,-0.4009126,-0.17207566,0.25268656,0.5318076,-0.16676296,-0.4378995,-0.16381119,-0.18853919,0.14530881,0.22138509,0.19219233,-0.26915994,-0.20303702,0.015426965,-0.25561953,0.20725378,0.39842212,-0.53174734,-0.28837445,0.45021963,0.62285143,0.1324008,-0.11121461,0.08217167,0.013705698,-0.47513956,-0.09004931,0.2042822,-0.24579991,0.4661247,-0.17328721,0.4425245,0.62349147,-0.17600146,0.26218495,-0.08716298,-0.09030331,-0.22732137,-0.33586627,-0.07366989,0.12584946,-0.42272797,0.12933974,-0.12102806,0.7786063,0.063046336,-0.6762438,0.2847895,-0.44946298,0.08685227,0.009132042,0.5236649,0.50986063,0.26988497,0.06678878,0.6664324,-0.48108107,-0.05562187,-0.18118839,-0.2715043,-0.046907265,-0.14756137,-0.17785852,-0.5146356,0.043729782,0.14423366,0.057108086,-0.021870099,0.4276919,-0.49924868,0.07118588,0.25882703,0.7334184,-0.356887,0.028001927,0.7215551,0.94574195,0.8139768,0.09009228,1.1431915,0.107648656,-0.2509695,0.050122377,-0.28678587,-0.5999438,0.24331442,0.39362818,0.22244658,0.28619796,0.115124725,0.04787539,0.4961484,-0.34233564,0.119150236,-0.30542564,-0.033424582,0.08290566,0.0018125275,-0.3133836,-0.1730395,-0.024876047,0.07880596,0.035213236,0.09183478,-0.103536315,0.33509028,0.16970548,1.599958,-0.27554992,0.14800853,0.12945811,0.2938502,0.13222066,-0.16037968,-0.0152573865,0.3009969,0.37631425,-0.0022958438,-0.68476415,0.059487212,-0.014084742,-0.6684681,-0.070342146,-0.22087376,-0.14986263,0.034156818,-0.5700913,-0.1080213,-0.10691998,-0.3662446,0.42502105,-2.7392523,-0.11257233,-0.14454421,0.23808652,-0.4091978,-0.4228398,-0.0723687,-0.30439007,0.40098667,0.41799715,0.38283804,-0.67009485,0.32674226,0.41104117,-0.3664276,-0.056427427,-0.5953755,-0.14686552,-0.06857276,0.211509,0.11700862,-0.15700084,-0.027066758,0.116673864,0.5281678,-0.15698808,0.15953684,0.15848774,0.31065604,0.01794659,0.48839122,0.07527541,0.4790677,-0.13918611,-0.179311,0.43212783,-0.3205286,0.2858544,-0.17393889,0.2925797,0.2867286,-0.42519173,-0.70130134,-0.76575077,-0.5017779,1.2508546,-0.17506891,-0.49026912,0.2858394,-0.15534489,-0.30663,-0.14429967,0.49566588,-0.08173752,0.0019035756,-0.90095365,0.095632546,-0.15633088,0.23931226,0.04251555,-0.08060091,-0.47411555,0.7817963,-0.09795485,0.4220352,0.50281113,0.18904074,-0.11822391,-0.3129083,-0.04835119,0.96750987,0.41688505,0.16244248,-0.3449202,-0.19864792,-0.38858667,0.034080394,0.16068506,0.34185454,0.65772766,0.14099239,0.10775706,0.17079805,0.038155124,0.01237992,-0.2136888,-0.17906351,-0.051634975,-0.00080677035,0.60597724,0.3610539,-0.143317,0.40100545,-0.21489696,0.08349681,-0.34257957,-0.3527746,0.46620065,0.8058564,-0.111686975,-0.26092562,0.66351414,0.4961502,-0.14309914,0.28586853,-0.6676459,-0.2908021,0.46144903,-0.28614137,-0.42031854,0.2577599,-0.3438218,0.12801541,-0.99083745,0.18626341,-0.34404537,-0.3536916,-0.59169203,-0.099274635,-3.674952,0.29881617,-0.16001002,-0.25244483,-0.105558865,-0.16763267,0.32176036,-0.5121381,-0.47042185,0.093460076,0.015897488,0.57916296,0.030210635,0.13427138,-0.3052841,-0.10544917,-0.1722745,0.09732445,-0.019479247,0.25827515,-0.071107745,-0.36934468,-0.05917236,-0.2135604,-0.4316933,0.04195725,-0.55422246,-0.4962916,-0.122181654,-0.40346438,-0.35253394,0.5441415,-0.40712035,0.09281321,-0.20183489,-0.021946777,-0.14091945,0.53205746,0.097555384,0.09590387,0.07755682,-0.07527315,-0.0443661,-0.2840576,0.22820751,0.11308516,0.10677667,0.4699231,-0.2977738,0.14723797,0.36711776,0.58902985,-0.09264032,0.76491624,0.46622407,-0.09373151,0.33773813,-0.26805285,-0.09458018,-0.5825816,-0.36671507,-0.01710475,-0.43116486,-0.5464634,-0.17615543,-0.26649988,-0.7407611,0.51811296,-0.015144187,0.06072516,-0.005344367,0.34786388,0.4204678,-0.16394919,-0.020457966,-0.122223265,-0.11162026,-0.44113076,-0.4732973,-0.64083743,-0.414723,0.038537983,0.9593367,-0.11018076,0.026375743,0.021429906,-0.2244562,-0.08695468,0.10324585,0.059264883,0.027202837,0.33813968,-0.09642872,-0.5837561,0.5629359,0.15787435,-0.29966533,-0.39340064,0.05745846,0.63862044,-0.5174438,0.43074882,0.3656145,0.16129272,-0.057061806,-0.521563,-0.077713124,-0.019052673,-0.4429089,0.38704246,0.12741968,-0.64345235,0.45094478,0.32253087,-0.034876592,-0.7479626,0.5208099,0.07088302,-0.34212646,-0.017572252,0.33898935,0.0423412,0.054407243,-0.17043567,0.19211811,-0.48301208,0.31623918,0.31015167,-0.007945853,0.45496145,-0.26826993,-0.12745479,-0.64341813,-0.08843562,-0.5097816,-0.148381,0.23592523,0.037783884,0.12927896,0.22048807,-0.0056250324,0.48488358,-0.32625172,0.11745012,-0.040044893,-0.08632629,0.23570721,0.3717591,0.37239748,-0.3144054,0.54546094,0.045052335,-0.0491841,-0.33896098,0.09680527,0.5980395,0.15300076,0.3689884,-0.22660962,-0.28642073,0.34646204,0.7507678,0.29397967,0.48831138,0.0018862922,-0.2090606,0.29326516,0.1502845,0.19647093,-0.012214144,-0.434291,-0.054867107,-0.1695169,0.16519937,0.36748356,0.15039852,0.403712,-0.14912222,-0.24522339,0.117808774,0.23022223,-0.027664065,-0.8645437,0.28401005,0.1832474,0.8096597,0.52375096,-0.06079326,0.19676752,0.4801161,-0.30082414,0.17980808,0.26765165,-0.044240177,-0.63830936,0.5493024,-0.69449496,0.28225663,-0.11516263,0.025628047,0.05029563,-0.12864558,0.43173906,0.71400654,-0.07574723,0.063845515,-0.027566437,-0.26480195,0.089683756,-0.35220852,0.050615497,-0.47553858,-0.18239947,0.6688275,0.4547933,0.390894,-0.1707575,-0.024904259,0.13555439,0.044712212,0.15492629,0.09522917,0.24357158,-0.08199759,-0.65921104,-0.20906813,0.50937396,0.049820997,0.15650608,-0.020996286,-0.4626301,0.21918194,-0.15350844,-0.12859143,-0.0063172937,-0.4794127,0.050033484,-0.38989204,-0.45071557,0.24721415,-0.19166994,0.3330874,0.1739001,0.02719969,-0.15740258,0.19117762,0.14352886,0.81676203,0.2008555,-0.03539602,-0.34321925,0.16617815,0.2304197,-0.20008871,-0.16317685,-0.07281471,0.0033859808,-0.6230414,0.3098795,-0.095939875,-0.22600527,0.37417275,-0.2038427,-0.041316655,0.58142024,-0.09961832,-0.10575182,0.055705857,-0.240089,-0.28871354,-0.10349835,-0.10304864,0.35810977,0.12518689,0.0041294335,-0.0833309,-0.005106,-0.14182152,0.39480686,0.07867101,0.32993716,0.399305,0.007350842,-0.46562564,-0.10998719,0.07109246,0.44418532,-0.110627435,-0.023635881,-0.17979303,-0.55701005,-0.24725148,0.09516661,-0.111988276,0.26980278,0.0037976583,-0.2682163,0.93399674,0.06950095,0.99044764,0.15692319,-0.3680954,0.072575144,0.37233633,-0.050199825,0.06962701,-0.3912702,0.87903583,0.48415142,-0.055570085,-0.08404495,-0.10051642,-0.005028105,0.14236291,-0.1511225,0.018654617,-0.027161557,-0.6311216,-0.29900455,0.35977632,0.28555474,0.11822461,-0.02062681,0.041533988,0.14042921,0.004068293,0.41944045,-0.57282007,-0.2544224,0.298707,0.20730048,-0.008154541,0.045836058,-0.42815268,0.42281142,-0.64075094,0.04841632,-0.39524496,0.07898281,-0.16216221,-0.15380627,0.17871103,-0.01883442,0.30799204,-0.23703952,-0.39168045,-0.23657149,0.48467636,-0.015788866,0.18078308,0.49990463,-0.20685855,0.20540908,0.057106175,0.4506107,1.0720526,-0.22440399,0.097627446,0.39806053,-0.2844126,-0.495026,0.31255212,-0.32216474,0.16824177,-0.029114878,-0.25832993,-0.3324284,0.30142227,0.29517096,0.07960311,0.011722807,-0.5022685,-0.19719627,0.34485805,-0.3514125,-0.15753499,-0.1904501,0.084855095,0.6325415,-0.2998048,-0.34348062,0.03903424,0.37500435,-0.4152796,-0.5287396,0.1726408,-0.34330565,0.3091311,0.07426767,-0.31521785,-0.052937172,0.075998895,-0.39461422,0.060239248,0.15249448,-0.37453517,0.07084853,-0.4342108,0.11245051,0.8505976,-0.14506432,0.09397468,-0.57534283,-0.50325614,-0.9235022,-0.2896038,0.5951508,0.115379356,0.09739698,-0.396814,0.122974426,-0.17526652,-0.035659187,0.08559125,-0.31924495,0.50747484,0.23159665,0.43314227,-0.18724874,-0.4788147,0.1122943,0.13094127,-0.1220143,-0.41921768,0.48833954,0.04905438,0.8206844,0.005936263,0.043536477,0.26312765,-0.66668797,0.03486778,-0.14666584,-0.18313904,-0.8684446,-0.016606128 +997,0.66166264,-0.43905726,-0.6052342,-0.09265026,-0.18846497,0.28831106,-0.26524162,0.5187489,0.20000248,-0.6958007,-0.32140446,0.013938576,-0.1229528,0.31272423,-0.30913246,-0.44093233,-0.14865316,0.08547083,-0.685799,0.701931,-0.19157322,0.1987866,0.03304199,0.34213176,0.4247454,0.24469236,0.17582288,0.062093545,-0.04486977,-0.3371398,-0.04940536,-0.29324418,-0.65918595,0.36940214,-0.4344473,-0.39297396,-0.16669051,-0.7468637,-0.401897,-0.8680693,0.35995084,-1.0797526,0.6940479,-0.065985635,-0.22251293,0.07717077,0.121524855,0.29131833,0.0673771,-0.012936413,0.24284144,-0.06981921,-0.0028288842,-0.09947636,-0.2645848,-0.2663835,-0.7269204,-0.10457675,-0.44198352,0.07176799,-0.11927404,0.09650359,-0.30195034,0.03934569,-0.17123757,0.5257828,-0.39157262,-0.04269699,0.13516736,-0.15437213,0.43644905,-0.698786,-0.27678415,-0.04364807,0.4393654,-0.18415049,-0.057200294,0.21667814,0.010450035,0.3477835,0.10985939,-0.19928423,-0.3346598,0.021861427,0.14266375,0.46064416,0.037748348,-0.16714227,-0.30362636,-0.115506604,0.68815964,0.3564877,0.13098195,-0.37518263,-0.006075026,-0.3289057,-0.10277816,0.65473783,0.6228625,-0.086783424,-0.08669892,0.4047196,0.68581355,0.35116237,-0.1150054,-0.030875802,0.0008890495,-0.39190835,-0.20554395,0.42887902,-0.1503578,0.4232622,-0.120318696,0.24797495,0.4006711,-0.19520581,-0.013293299,0.33081517,0.18503815,-0.28114194,-0.004545465,-0.45446473,0.32599124,-0.5330276,0.17965873,-0.46932077,0.7588485,0.091152385,-0.9385107,0.26642495,-0.5832691,0.075034045,0.20181918,0.5211155,0.68561566,0.5439318,0.030936662,0.9106263,-0.28773293,0.095002666,-0.13320166,-0.22735457,-0.015228438,-0.18082812,0.104725495,-0.5004972,-0.2724505,-0.024597203,-0.05085229,-0.21730156,0.37718698,-0.38577282,-0.4125883,-0.02847394,0.6443995,-0.2522911,0.16840021,0.95100576,1.1309191,0.9269148,0.11244647,1.281567,-0.10341612,-0.27550915,-0.19472705,-0.16755685,-0.87008154,0.4285615,0.31015188,-0.32874078,0.7717148,0.073299125,0.15293176,0.1304463,-0.521423,0.09984903,-0.09128497,0.1729987,-0.24257293,0.11687976,-0.54713,-0.45264387,0.007622838,0.13808343,0.2762645,0.2090543,-0.2512135,0.43176222,0.32912812,1.3145926,-0.36409396,0.22100517,0.12619765,0.43272185,0.10349462,-0.16888115,-0.26657835,0.1515481,0.4785379,0.09554714,-0.5223533,0.10795655,-0.121272825,-0.26416948,-0.13744889,-0.39117506,-0.15682188,-0.1639045,-0.18789022,-0.079004504,-0.27736652,-0.7565898,0.24809685,-2.4704108,-0.15481874,-0.15950415,0.40146118,-0.49920464,-0.28072724,-0.16544336,-0.5672564,0.48047733,0.24032691,0.46899194,-0.6161157,0.35044274,0.66263217,-0.58454776,0.07439085,-0.59793216,-0.1080729,-0.0025948018,0.4511841,-0.011551207,-0.10618514,0.07094289,0.4096643,0.38719052,0.29993922,0.099609375,0.46002093,0.42732725,0.04577586,0.5162869,-0.10584577,0.40407056,-0.48468548,0.0018681601,0.34738332,-0.48011866,0.12324731,-0.2619319,0.22022429,0.5486309,-0.6750274,-0.45457926,-0.6303172,-0.31060338,1.3427039,-0.3739241,-0.54965746,0.014967266,-0.20722571,-0.32425177,-0.08282907,0.6067168,-0.36810392,0.073105775,-0.75810784,-0.38299438,-0.2175239,0.35326132,-0.06628455,0.14514004,-0.77709013,0.69399804,-0.05522763,0.62444144,0.32411218,0.27435362,-0.27743426,-0.49866533,0.28747043,0.977132,0.53522146,0.064223304,-0.27271515,0.007824814,-0.4142694,-0.043162882,0.061784625,0.6789015,0.6668886,-0.19995423,-0.050736587,0.4281335,-0.0999581,0.33044544,-0.063149214,-0.40468273,-0.46975765,-0.09856184,0.6239008,0.5652459,0.010597503,0.27655464,-0.13722274,0.2507549,-0.36356756,-0.3292231,0.675162,0.7432084,-0.17174128,-0.28184095,0.6713022,0.5479496,-0.26444504,0.57771426,-0.6829409,-0.34742147,0.29055625,0.022846157,-0.61901647,0.23055954,-0.25157598,0.29839548,-0.9127817,0.21054327,-0.42114776,-0.48048234,-0.52500576,0.06718313,-2.0878968,0.14700468,-0.12678818,-0.35181093,-0.35033664,-0.29888123,0.1572409,-0.6048646,-0.8104738,0.2798741,-0.08706047,0.7927637,-0.08078467,0.07206604,-0.13684082,-0.44890085,-0.4955542,0.19952507,0.06100591,0.3844537,-0.12613514,-0.2802712,-0.09939269,-0.09916212,-0.37061954,-0.03196333,-0.5720914,-0.3667887,-0.20706244,-0.6675687,-0.37562996,0.62393534,-0.12516592,-0.013084319,-0.19048227,0.007913893,0.04418995,0.4638227,-0.06606686,0.28537565,0.2590149,-0.28268808,0.06556736,-0.12707938,0.38111883,0.18409558,0.23095004,0.41799498,-0.41203722,0.34879938,0.41634983,0.8114077,-0.072843835,0.8602109,0.23481897,-0.104405805,0.35384703,-0.3085001,-0.4782055,-0.5027281,-0.049498785,0.21686044,-0.3841023,-0.43794426,-0.21614878,-0.24192336,-0.91649187,0.4377432,0.2226009,0.5258926,-0.024551356,0.13217938,0.49323636,-0.03142901,0.053925622,-0.00844084,-0.2225655,-0.43208537,-0.21616678,-0.70602095,-0.33862203,0.054510463,0.84715205,-0.091122285,0.21521664,0.29956573,-0.3570351,0.4174296,0.03728026,0.0642758,-0.054050278,0.3057058,0.21078233,-0.48098612,0.45695096,0.15626444,-0.11741636,-0.46518523,0.25678188,0.9162982,-0.50634754,0.40091237,0.25267485,-0.10631974,-0.71336573,-0.5298388,0.10931133,0.009850049,-0.07893242,0.32450065,0.38482746,-0.59169877,0.28465325,0.11771176,0.037228465,-0.7522877,0.67238295,0.012695776,-0.14879715,-0.12774917,0.59777683,-0.015801072,-0.04456325,0.0348942,0.16906996,-0.305636,0.2428166,0.17630407,0.004952973,0.34770894,-0.11515812,-0.17620333,-0.7973487,0.2462533,-0.78715706,-0.16910365,0.527073,0.06485429,0.0043833377,0.18788962,0.1794242,0.3629048,-0.3355391,0.2685631,0.035801377,-0.20231406,0.45580617,0.41480976,0.5287514,-0.4884122,0.47498608,0.10877703,-0.021510303,0.06885572,0.14744952,0.43018237,0.16325662,0.2431953,0.03845657,-0.22135803,0.118329905,0.47949442,0.30120865,0.33847532,0.23834357,-0.022995522,0.11305752,0.10833498,0.4527811,-0.28407854,-0.7903619,0.022503257,-0.035225984,-0.104141615,0.265548,-0.026106268,0.1856423,-0.17214063,-0.38123688,-0.07560634,0.17049168,-0.34592617,-1.4952619,0.3179761,0.13838659,0.7647244,0.39637935,-0.018302932,0.07473327,0.5809663,-0.1627912,0.21781917,0.31681257,0.13786218,-0.48829108,0.5083455,-0.4963625,0.44003925,0.13119265,-0.045164682,-0.027799796,-0.13767758,0.39196077,0.7857641,-0.15559027,0.0029275685,-0.22903499,-0.24822387,0.06642981,-0.4066801,0.28556228,-0.5288402,-0.42080402,0.60783756,0.3593406,0.53768235,-0.07251498,0.0041098474,-0.1370976,-0.081184946,0.3437666,0.10825884,-0.034021966,0.050613426,-0.7198932,-0.11231766,0.28850633,-0.015518224,0.07370058,-0.026085097,-0.17706116,0.017560259,0.0045009553,0.09659323,-0.022594359,-1.1304651,0.06592016,-0.3736895,-0.20367172,0.03548334,-0.3135037,0.15183334,0.18715768,-0.16561708,-0.21332045,0.12537923,0.3483165,0.7057503,0.09353855,-0.19988477,-0.40284324,0.22521563,0.13512579,-0.28775397,0.13967682,-0.018939376,0.09459303,-0.4716429,0.24546047,0.059551775,-0.51361513,0.19599423,-0.16861928,0.014470262,0.80172795,-0.0953051,-0.020001601,-0.026640683,-0.057659052,-0.22446966,-0.2049882,-0.23690858,0.102831244,0.32182983,0.004868096,-0.07841999,0.06449177,-0.17075051,0.275748,0.36734223,0.5901536,0.5969374,0.07699593,-0.620727,0.07133659,0.17078848,0.4343834,0.19109218,-0.12243547,-0.3890132,-0.4416915,-0.4650902,0.5329238,-0.11313865,0.20485592,0.10571854,-0.028193105,0.67333347,0.050835203,0.9507904,0.047911488,-0.30411947,0.0014045,0.5626393,-0.07295178,-0.3287595,-0.4383226,1.1264608,0.48370814,-0.24854684,-0.053441633,-0.37153408,-0.14173767,0.07343421,-0.28197172,-0.12903732,0.020011375,-0.6069977,-0.25750026,0.19351871,0.22851832,-0.09705434,-0.20791188,-0.08960671,0.52519697,0.10548429,0.5024853,-0.51265633,-0.07639821,0.36597276,-0.13154514,0.1309512,0.26522082,-0.5382803,0.17770998,-0.7166911,0.22031322,-0.34005585,0.19734046,-0.14953366,-0.42110515,0.1937951,0.04669714,0.51443064,-0.46475387,-0.55692774,-0.17970341,0.41601866,0.10872233,0.17815922,0.5927369,-0.17945682,0.22629806,0.0701633,0.47766042,1.0049372,-0.03131751,0.26345944,0.24274102,-0.49023324,-0.74829936,0.016696783,-0.3159749,0.4567728,-0.19544958,-0.2871253,-0.41298074,0.25806805,0.13697858,0.043355115,0.07852618,-0.7612727,-0.36406586,0.31283173,-0.24792945,-0.18334684,-0.405006,-0.12492429,0.48935977,-0.08639847,-0.43534058,-0.086647436,0.17421757,-0.12313707,-0.47417125,-0.1894739,-0.1871753,0.07391742,-0.09821047,-0.42313272,-0.1278185,-0.016205799,-0.41115847,0.064016186,-0.136251,-0.38598794,-0.06544376,-0.17759626,-0.162786,0.8478735,-0.26457727,-0.014297152,-0.30857,-0.49381813,-0.8094263,-0.42829123,0.013556624,0.085150264,-0.0125121595,-0.6914198,0.10099103,-0.418711,0.16659507,0.04882874,-0.3479873,0.39839706,0.23614898,0.63207245,-0.09246204,-0.9035495,0.5021986,0.13379805,-0.15070382,-0.5634321,0.729627,-0.04998662,0.57467353,0.12245921,0.07473238,-0.07440969,-0.83421624,-0.009074444,0.039690457,-0.11056165,-0.7649575,0.33720097 +998,0.5776879,-0.2192989,-0.5475892,-0.15719675,-0.15818483,0.21227771,-0.16512355,0.34703457,-0.033438675,-0.6349197,-0.0840909,-0.24210832,0.02840418,0.3603784,-0.09213572,-0.5249039,-0.017308775,0.35206243,-0.46873933,0.50432324,-0.3240885,0.40957838,0.18274887,0.46337146,0.019330906,0.30908138,0.23143981,-0.06722856,-0.2233773,-0.2339361,-0.20474198,0.33335093,-0.5168894,0.15835282,-0.06302418,-0.5103885,0.024406565,-0.3596026,-0.09817072,-0.6986066,0.1848072,-0.9234899,0.3560793,0.041723944,-0.39119023,0.05858266,-0.001159723,0.19530994,-0.18996763,-0.03065903,0.22099338,-0.3358868,-0.20738673,-0.43422258,-0.100208715,-0.305363,-0.54414773,-0.032499075,-0.5467176,-0.1946384,-0.1827787,0.1708236,-0.19287308,-0.0016513237,-0.1396586,0.30591917,-0.46374238,-0.23281981,0.20512946,-0.2517936,0.20078167,-0.6482235,-0.19267216,-0.18763593,0.25225884,-0.33659217,-0.2663057,0.12498228,0.13160937,0.5670695,-0.061840698,-0.08294605,-0.5392631,0.029510017,0.002735945,0.5469153,-0.17457622,-0.26160216,-0.056083936,0.059676435,0.13764678,0.121130615,0.073562324,-0.22375861,-0.032595664,-0.14537835,-0.054119322,0.15674685,0.5226748,-0.32163298,-0.27488774,0.27564067,0.49504465,-0.02995481,-0.17452055,-0.047062222,-0.04359301,-0.39626485,-0.065109774,0.18041712,-0.14255139,0.65614045,0.08369282,0.19496639,0.5768992,-0.026105078,-0.054011934,-0.10252021,0.07304426,-0.13590859,-0.12832372,-0.13044712,0.48718527,-0.25489357,-0.0024878155,-0.37426996,0.73467565,0.082692176,-0.7316987,0.30713925,-0.36753288,-0.0063421866,-0.06611207,0.5615995,0.496006,0.38594598,0.09476941,0.67065597,-0.42082456,0.1437939,-0.1643625,-0.14085102,-0.1242429,-0.14625895,-0.038230997,-0.5248587,0.018670687,-0.072396316,-0.18120183,0.13947044,0.50117445,-0.677795,0.02342303,0.19159912,0.6062316,-0.36182302,-0.15887278,0.83976895,1.0607045,0.72558665,0.060594168,1.0494044,0.3471251,-0.3492048,0.024507906,-0.33034083,-0.58647835,0.10727199,0.31658766,0.040819682,0.2989236,0.18353364,0.011076189,0.47412932,-0.39370823,0.04436638,-0.2813449,0.03415019,-0.069508664,0.075087614,-0.5134749,-0.08998302,-0.047745917,-0.045040943,0.14809804,0.11428456,-0.30030364,0.47312513,0.120907895,1.8652155,-0.12715493,0.03814685,0.1739068,0.1666964,0.18053651,-0.009903452,-0.11257928,0.19407304,0.24138965,-0.015770784,-0.33733103,0.047694214,-0.26208344,-0.6353622,-0.21301787,-0.19947706,0.053147767,-0.049875114,-0.3602675,-0.1251,0.18367489,-0.44621548,0.29263568,-2.3087015,-0.015133033,-0.08203415,0.45983785,-0.19648212,-0.44051808,-0.13155004,-0.34351963,0.31670904,0.4676124,0.4141912,-0.534923,0.29678223,0.30646235,-0.40852973,-0.20049301,-0.5548478,-0.019935388,-0.0985574,0.35001674,0.036321525,-0.3018969,-0.0316635,-0.13988528,0.4452601,-0.2536709,-0.09172387,0.43688217,0.31521356,0.24946152,0.3337736,0.1591225,0.5887145,-0.2717536,-0.332843,0.47624367,-0.3535291,0.22107887,0.10262482,0.16812323,0.30157137,-0.40432182,-0.76553875,-0.73878056,-0.24321121,1.1862344,-0.038182683,-0.5162241,0.08759578,-0.109675296,-0.45441532,0.014087017,0.45023963,-0.14207612,-0.047511704,-0.8882821,-0.092622,-0.20786236,0.45932326,0.091556974,0.103623666,-0.62999445,0.6777435,-0.20782876,0.4485063,0.37107608,0.39108327,-0.2577519,-0.49077946,0.0023345351,1.137422,0.22660388,0.13408154,-0.22885889,-0.29530817,-0.3166254,0.028544988,0.17500614,0.5426379,0.76779705,0.13403887,0.006781069,0.30355126,0.056720372,-0.11819236,-0.23167178,-0.3270962,-0.15552542,0.15538114,0.63728863,0.4416899,0.0687728,0.60862106,-0.19679824,0.47397804,-0.08044919,-0.3753412,0.36928895,0.84744763,-0.12878753,-0.4018939,0.64405185,0.5047268,-0.3195306,0.43106553,-0.66860604,-0.43715352,0.17176369,-0.19863388,-0.37324625,0.27509788,-0.20826563,0.27542296,-0.9515683,0.2598355,-0.17162672,-0.45017415,-0.82806724,-0.20375457,-2.7051744,0.31860366,-0.035654258,-0.18236487,0.18749824,-0.2498231,0.066902585,-0.78164613,-0.38540396,0.10702271,0.05986353,0.70633024,0.024120651,0.20183006,-0.22390555,-0.39320734,0.1273238,0.38080153,0.23957351,0.21511522,-0.010310026,-0.40271333,0.1099658,-0.22220364,-0.19482954,-0.14148971,-0.6923545,-0.65818363,-0.105513826,-0.6645389,-0.031740002,0.6513444,-0.5934235,0.050795123,-0.276518,0.0093425,-0.061518326,0.21944875,0.14449954,0.3408253,0.22941653,-0.1861946,-0.06608717,-0.33072656,0.19649996,0.09475744,0.08893684,0.5660268,-0.21133533,0.38039768,0.48118275,0.5131104,0.004170468,0.7564617,0.64334077,-0.052898195,0.098247,-0.32855543,-0.305642,-0.7308537,-0.38523865,-0.148051,-0.56047523,-0.40708202,-0.033820346,-0.3953194,-0.7909426,0.7383543,-0.13352135,-0.122744665,0.19504414,0.5341672,0.5825285,-0.15660477,-0.18779217,-0.18055321,0.011071306,-0.31238782,-0.47556192,-0.5747722,-0.4940737,-0.10645223,1.1540761,-0.03177995,0.09439449,0.21805161,-0.10833906,-0.050444033,0.14904514,0.025662733,0.10339391,0.49337733,-0.025759725,-0.56193835,0.3225593,-0.1177262,-0.15800661,-0.48558462,0.26680842,0.45689452,-0.8218479,0.39361617,0.28404066,0.2287239,0.038214967,-0.48478478,-0.1937541,0.11414925,-0.23866668,0.3641324,0.04385278,-0.46594837,0.3746088,0.19788629,-0.035571393,-0.82116324,0.28131798,-0.009830307,-0.51323843,-0.022606455,0.32165006,-0.02568553,-0.06635989,-0.40500826,0.051455263,-0.22883826,0.12211655,0.3672643,-0.12540123,0.22488159,-0.4702695,-0.17468883,-0.8058004,0.27023557,-0.42158487,-0.33491054,0.31403553,0.04651651,-0.002700306,0.31595692,0.1347937,0.46465954,-0.39699763,-0.0064370083,-0.1386823,-0.15892641,0.36847395,0.36654657,0.2761666,-0.5357806,0.5145889,-0.0290615,-0.1140783,-0.34318766,-0.09911592,0.6424618,-0.016038455,0.21666087,0.04987561,-0.14801225,0.33110237,0.7104005,0.14997149,0.5978428,0.021435035,-0.23254275,0.1042558,0.038540144,0.17159009,-0.11779185,-0.39973348,0.2505363,0.024489125,0.036786143,0.4068093,0.09042632,0.5203927,-0.115427345,-0.3241495,0.25812733,0.19485845,0.017853044,-0.91210777,0.28256708,0.020100502,0.7951084,0.40489367,0.0005358228,0.10261022,0.55444103,-0.46514493,0.14621976,0.066882886,-0.30306807,-0.36442265,0.4021689,-0.6685269,0.28927442,-0.029513946,0.0045978473,0.016756978,-0.28151035,0.36884847,0.86978287,-0.1913093,0.23423958,-0.10077473,-0.021824049,-0.046293046,-0.2257294,0.052289035,-0.6013679,-0.3901893,0.79456127,0.41608253,0.5975083,-0.14825676,0.021928208,0.19035545,-0.19118793,0.15088679,0.08150624,0.18952039,0.13844106,-0.3853565,-0.22313818,0.5884604,0.17588042,0.1038038,0.14120442,-0.35807243,0.38112825,0.11728173,-0.098639965,-0.15478656,-0.48678732,0.03896801,-0.59661716,-0.39395747,0.38464645,0.0038669934,0.2546371,0.24042648,0.043150313,-0.37708429,0.41612548,0.35728252,0.9759255,0.17673437,-0.1528078,-0.33826143,0.34091708,0.33159631,-0.21526337,-0.103594795,-0.3282308,0.27676514,-0.73524106,0.2746299,-0.031848844,-0.45137754,0.04756262,-0.08021854,0.008300694,0.417297,-0.025777917,-0.15651552,0.13884519,-0.004231123,-0.214701,-0.027447939,-0.278643,0.115893,0.0049562147,-0.13875426,-0.15039629,0.09648323,-0.14569898,0.4289121,0.108245336,0.3259819,0.4629603,0.031155236,-0.48275504,0.05688739,0.21415046,0.546143,-0.10920607,-0.1631627,-0.21027118,-0.50557286,-0.4231256,0.27409667,-0.11803767,0.27375218,0.37766662,-0.27964145,0.7389618,0.06459284,1.1427362,-0.031733092,-0.40273854,0.03918991,0.45814222,0.029752888,-0.07067542,-0.41705638,1.1397427,0.64163107,-0.016686091,-0.049369328,-0.30122584,-0.11365982,0.24898261,-0.11962508,-0.09709144,-0.19617817,-0.76166576,-0.49088138,0.2118837,0.31177285,0.102598265,-0.056758247,0.30132625,0.20270322,-0.016425371,0.11511206,-0.35764366,-0.21325547,0.2553271,0.15832922,-0.103388675,0.10103853,-0.39753926,0.4429552,-0.62862754,0.046747565,-0.41410843,0.11405922,0.041387603,-0.21991825,0.19524346,0.035190627,0.3107538,-0.5233345,-0.25930575,-0.2548743,0.48447734,0.20104705,0.19702078,0.51400083,-0.1999909,0.11077852,0.057262234,0.3475668,1.1751908,-0.360133,0.13836312,0.3816781,-0.18400195,-0.42628366,0.21291174,-0.31757048,0.100440174,-0.16369207,-0.3344782,-0.5105034,0.31606165,0.24983208,-0.11441834,-0.006589037,-0.41432887,0.023494968,0.40797287,-0.3771916,-0.15946859,-0.18408765,0.24359336,0.5155746,-0.19042397,-0.3687345,0.12723556,0.24954261,-0.28792733,-0.50826234,-0.113189034,-0.39836755,0.36861277,0.25266138,-0.36383644,-0.10441494,-0.079597786,-0.36269352,0.10824597,0.5012529,-0.34543547,-0.037721835,-0.32976088,-0.104841165,1.0058019,0.019127287,0.12925288,-0.54791415,-0.4457927,-0.87701726,-0.48021448,0.45649704,0.15106402,0.013618322,-0.56596184,0.11273723,-0.3277381,-0.2842834,0.012884025,-0.37892348,0.36264628,0.24592683,0.5446614,-0.22454856,-0.91108286,0.18365978,0.17375173,-0.2875117,-0.58517534,0.34698275,-0.0003563991,0.72092575,0.008556062,0.1154723,0.52316964,-0.74601257,-0.04569694,-0.19844946,-0.09464249,-0.6855554,-0.017109655 +999,0.43785745,-0.21529947,-0.54181105,-0.14853336,-0.19912711,-0.23195566,-0.23009335,0.8508484,0.4205599,-0.27069312,-0.04425769,-0.123405054,0.06539181,0.35413525,-0.190318,-0.28298795,0.13974658,0.0820749,-0.4710825,0.57639617,-0.31939974,0.030009221,-0.085095115,0.72454137,0.3503667,0.25165877,0.09437551,0.23266172,-0.08328212,-0.350347,0.016081369,0.17654024,-0.60418123,0.2648795,-0.25702888,-0.3617566,-0.003575038,-0.6054974,-0.50302243,-0.8430614,0.422629,-0.8219473,0.42710254,0.24148408,-0.23223084,-0.0039198454,0.46173707,0.2906767,-0.21150349,-0.18522273,0.08191243,-0.06521416,0.15417208,-0.2711991,-0.11860022,-0.3372598,-0.50348574,-0.08142347,-0.50901896,-0.13861145,-0.2952061,0.23927735,-0.32732624,-0.15906115,-0.025127292,0.7504472,-0.2705164,0.054135323,0.21855456,-0.21778613,0.4319712,-0.5919777,-0.26821557,-0.11512013,0.16759814,-0.08420014,-0.38885653,0.31151992,-0.0037338166,0.10608061,-0.32047638,-0.06917512,-0.2415722,-0.048762094,-0.2524387,0.4643947,-0.32241443,-0.7411389,-0.027026892,0.12904955,0.2343794,0.31209007,0.40273705,-0.21766472,-0.033300307,-0.16106142,-0.23671713,0.67545104,0.6303208,-0.028830517,0.07381869,0.19150032,0.23657025,0.20493048,-0.35443684,-0.01647441,0.12748593,-0.5025521,-0.11921049,-0.17503013,-0.10816951,0.590086,-0.1302951,0.35519555,0.63903606,-0.19372052,-0.23718505,0.26053336,0.33427516,-0.051633105,-0.4078369,-0.3913318,0.3098574,-0.42248031,0.13199683,-0.12610391,0.68211275,0.11561856,-0.66698265,0.1873536,-0.5545082,0.04079279,-0.12939523,0.43036234,0.79398227,0.48521683,0.4313021,0.71157974,-0.3047841,0.11337224,-0.14774007,-0.21807188,0.21288306,-0.25044325,0.1430967,-0.44963607,-0.27340794,0.06629947,-0.15107045,0.27987948,0.36072376,-0.50944686,-0.26029179,0.2683899,0.8414688,-0.17164384,-0.0604584,0.8568585,1.2961339,0.955617,0.08697964,0.7002367,0.04521703,-0.15812558,0.18124223,0.2485833,-0.903652,0.30216014,0.16414925,-0.24188274,0.17100574,0.06937297,-0.021740489,0.27868107,-0.5669355,-0.16507243,-0.07146334,0.4372201,0.079256944,-0.12804066,-0.24733725,-0.33098078,-0.020969234,0.17754981,-0.017052835,0.18429424,-0.12544331,0.43209207,0.0054788073,1.1873623,0.081051596,-0.017213903,0.08369237,0.86346334,0.24607368,-0.2528726,-0.052896943,0.27021664,0.3955762,0.21278192,-0.577148,0.16924988,-0.16904268,-0.4015835,-0.11487095,-0.40612993,-0.0139457425,-0.10670157,-0.4879238,-0.24505593,-0.2382266,-0.092045136,0.31816623,-3.1849787,0.0013200749,-0.018807525,0.32384032,-0.027993621,-0.1489247,0.17837831,-0.42559117,0.53763634,0.46277758,0.49018288,-0.6443186,0.23514758,0.42045403,-0.6441034,0.034915198,-0.6514456,0.057441536,-0.14460176,0.3695757,0.00964143,-0.03568616,0.2586574,0.31605232,0.4020131,0.18365265,0.26502237,0.2315474,0.41462812,-0.14602049,0.34522593,-0.16990374,0.28944552,-0.49490005,-0.22860499,0.13460456,-0.6420673,-0.026101394,-0.30934152,0.004398197,0.63005936,-0.3917786,-1.0347114,-0.38590145,0.25507495,1.0511708,-0.18446727,-0.62181616,0.26678827,-0.515317,-0.13943352,0.018369026,0.6719843,-0.15291432,0.18268242,-0.7044067,0.009491909,-0.28554803,0.07871874,0.010145139,-0.21810393,-0.4324056,0.7003443,0.115809895,0.3716273,0.25903553,-0.07283569,-0.8348635,-0.4299405,0.17176615,0.5565429,0.42519665,0.10881638,-0.11649975,-0.052839085,-0.30276233,-0.041382097,0.23633552,0.75864226,0.66521543,-0.16665526,0.4269122,0.36376813,-0.17525946,0.042692862,-0.11292717,-0.38368416,-0.22105981,0.17393261,0.74083036,0.8279469,0.026390754,0.47268888,0.010096639,0.2547748,-0.27249533,-0.48200914,0.63582826,0.82394403,-0.07202098,-0.3750958,0.61641455,0.51328,-0.26614836,0.47309148,-0.4990032,-0.4523883,0.5001093,-0.030823566,-0.49293405,0.16095313,-0.2926719,0.1180486,-0.77159995,0.11382327,-0.3957116,-0.59712005,-0.5945784,-0.18833143,-3.1148407,0.1421353,-0.26821625,-0.31447902,-0.296739,-0.36843356,0.24489266,-0.50622773,-0.48513606,0.23463902,0.110381335,0.89828455,-0.10327783,0.08745343,-0.1526153,-0.3253245,-0.41295883,0.07354794,0.20156574,0.40106973,0.07008536,-0.46139434,-0.1911801,-0.023663597,-0.542903,-0.022077555,-0.40863073,-0.3683255,-0.20057307,-0.68223834,-0.37949914,0.50691223,-0.17130233,-0.056526493,-0.21663937,-0.041129276,-0.040615287,0.42661163,0.09492123,0.04375427,-0.008048193,0.018389119,0.20014682,-0.2634045,0.15895614,-0.04284475,0.3900172,0.17376278,-0.017344277,0.18488897,0.4582497,0.660004,-0.16102761,0.93483543,0.392789,0.009192619,0.33718494,-0.15108274,-0.3163851,-0.31530383,-0.11457367,0.11871856,-0.37803277,-0.27694044,-0.014154077,-0.37916365,-0.6774925,0.506439,0.09921358,0.23214854,0.051610053,0.32861048,0.43557504,-0.14005324,-0.04423265,-0.087429516,-0.10435241,-0.62649536,-0.16687435,-0.53688097,-0.23665403,0.039917324,0.7540777,-0.2835918,-0.109406784,0.13860309,-0.20833713,0.0991903,0.34482732,-0.17620349,0.12262566,0.3558211,-0.14227691,-0.6999063,0.35127556,-0.29644844,-0.1931862,-0.671709,0.23892854,0.53195316,-0.5742545,0.70377845,0.19034769,0.15789637,-0.60770833,-0.5770914,-0.21242858,0.033867463,-0.20793776,0.45423096,0.50056815,-0.9856035,0.47981253,0.24212432,-0.40488723,-0.61666435,0.59043276,-0.0031111294,-0.41647664,-0.27915907,0.18973039,0.11294825,0.036942307,-0.35911292,0.21295781,-0.29167172,0.2063583,0.006245591,-0.1302472,0.37272254,-0.1281413,-0.071631916,-0.41734105,0.21882986,-0.5571496,-0.3428415,0.3730713,-0.04452901,-0.00095185364,0.26516283,0.04863299,0.19754046,-0.12513235,0.14365618,-0.36707962,-0.22556743,0.2824342,0.5381178,0.5485421,-0.53792864,0.69432664,0.16149867,-0.12504865,0.1120704,0.17126824,0.35812587,0.15220554,0.41105536,0.11988661,-0.34435594,0.16608201,0.7121659,0.12669411,0.47453868,-0.15045033,0.24428263,0.04305296,0.10395167,0.20128718,0.21506095,-0.5354687,-0.107157595,-0.5188248,0.13322736,0.39673653,0.094150044,0.31621453,0.13429157,-0.3913824,0.059420053,0.29025576,-0.0637705,-1.555379,0.5447191,0.38085464,0.9170631,0.43465713,0.049972057,-0.27226996,1.0350333,-0.03908658,0.029373683,0.24649468,0.2689092,-0.34395325,0.6315456,-0.83715034,0.6126355,0.04630402,-0.11461022,-0.23240696,0.06746539,0.40471983,0.78859067,-0.22077504,0.008301788,0.23831515,-0.42427835,0.009879806,-0.48096982,-0.076231115,-0.6120004,-0.29965106,0.59088904,0.49529693,0.3249591,-0.13468315,-0.040509615,0.13003339,-0.09867115,-0.08147928,-0.036308024,-0.032843627,-0.07651766,-0.7452618,-0.13060512,0.5010834,0.005817351,0.26268017,0.114241965,0.028214758,0.34790042,-0.0747442,-0.008236137,-0.09827206,-0.6983401,0.027236192,-0.2654611,-0.41877174,0.78192544,-0.45974243,0.2941401,0.29867554,0.21741596,-0.1746471,0.34349772,0.053198203,0.7221351,-0.24324061,-0.16817378,-0.30885878,0.10163097,0.19449665,-0.1676547,-0.27752697,-0.25906178,-0.13638236,-0.53961533,0.43064946,-0.16286626,-0.12053284,0.061045192,-0.14820613,0.092202395,0.5831037,-0.062827274,-0.1091047,0.16416727,-0.3785383,-0.18084826,-0.23246263,-0.26696688,0.38286668,0.04981087,0.059643593,-0.08278746,-0.08625367,-0.07538487,0.27879205,-0.13721406,0.39867136,0.29503644,0.38811266,-0.232095,0.04905851,0.06439007,0.706506,-0.06521723,-0.07976344,-0.24333392,-0.48441017,-0.45323142,0.05109767,0.0050356416,0.30948153,0.09933967,-0.10150168,0.8238558,-0.11420096,1.017574,-0.10849187,-0.48931134,0.26174468,0.43466628,-0.13746256,0.01993512,-0.22765207,0.8313347,0.3944707,-0.11441298,-0.004559587,-0.30471915,0.08708647,0.2413115,-0.21206756,-0.38288733,-0.043087635,-0.5256415,-0.14210482,0.4001545,0.36139432,0.22132276,-0.06625866,-0.0029071977,0.43475953,0.04981248,0.28169134,-0.6037571,0.026405519,0.24924435,0.3949913,0.12038222,0.08652854,-0.48249733,0.2839276,-0.47807267,0.09021208,-0.40620658,0.31955102,-0.37244904,-0.52571493,0.02294919,-0.09310841,0.4985384,-0.43203732,-0.16400507,-0.2807736,0.5489886,0.24639668,0.17658249,0.43335372,-0.3621769,-0.0003968938,-0.12825555,0.5085547,0.67610687,-0.34114197,-0.3133594,0.31086913,-0.37053248,-0.8310023,0.31811938,-0.42671862,0.13378285,0.052024208,-0.027612321,-0.50843835,0.1908319,0.30810794,0.14738943,-0.16118604,-0.5952976,-0.26795065,0.29755655,0.05437957,-0.3033432,-0.4038418,0.124754235,0.4566596,-0.11225209,-0.1985967,0.19517232,0.243194,0.06672688,-0.47485122,-0.048229016,-0.35901058,0.3661419,-0.07869523,-0.37451646,-0.28545883,0.07467659,-0.42716464,0.3867879,-0.26657307,-0.20092084,0.054142438,-0.12277821,0.0075341137,0.8178976,-0.42172834,0.19480433,-0.46137398,-0.5338879,-0.69204086,-0.16598572,0.37983048,0.01996335,0.06743336,-0.8521404,-0.13581939,-0.039226327,-0.14584446,-0.16711609,-0.30049372,0.35715845,0.09450826,0.33592203,0.049441587,-0.7621,0.32968166,-0.04937085,-0.04338907,-0.6674345,0.532786,-0.06427366,0.7388605,0.059430633,0.0005910085,0.197364,-0.43527937,0.14147153,-0.16596673,-0.34632123,-0.42390004,0.11673846 From e2e00ab4b7a471c1c49b40c16c5ba2a95ce9a536 Mon Sep 17 00:00:00 2001 From: Igor Sadalski Date: Mon, 29 Sep 2025 20:27:31 +0000 Subject: [PATCH 4/7] Refactor geneformer embedding function for improved readability and performance; remove deprecated test file and update package installation script. --- biomni/tool/genomics.py | 82 +++----- biomni/tool/tool_description/genomics.py | 4 +- biomni_env/new_software_v006.sh | 2 +- tutorials/geneformer_tests.py | 239 ----------------------- 4 files changed, 35 insertions(+), 292 deletions(-) delete mode 100644 tutorials/geneformer_tests.py diff --git a/biomni/tool/genomics.py b/biomni/tool/genomics.py index b3b6e0409..6c56f4ec2 100644 --- a/biomni/tool/genomics.py +++ b/biomni/tool/genomics.py @@ -2163,6 +2163,7 @@ def analyze_genomic_region_overlap(region_sets, output_prefix="overlap_analysis" return log + def geneformer_embed( adata_or_path, base_dir, @@ -2203,15 +2204,12 @@ def geneformer_embed( str Steps performed during the embedding extraction process. """ - - import anndata as ad - import pandas as pd - import numpy as np + import pickle + import subprocess from pathlib import Path - import os - import subprocess + import anndata as ad steps = [] steps.append("Starting Geneformer embedding extraction pipeline") @@ -2221,17 +2219,12 @@ def geneformer_embed( steps.append(f"Chunk size: {chunk_size}") steps.append(f"Number of processes: {nproc}") steps.append(f"Forward batch size: {forward_batch_size}") - + import sys - proc = subprocess.Popen( - ["git", "lfs", "install"], - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, - text=True - ) + proc = subprocess.Popen(["git", "lfs", "install"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True) for line in proc.stdout: - print(line, end='', file=sys.stdout) + print(line, end="", file=sys.stdout) proc.wait() if proc.returncode != 0: raise RuntimeError("git lfs install failed") @@ -2239,17 +2232,13 @@ def geneformer_embed( geneformer_dir = Path(base_dir) / "Geneformer" if not geneformer_dir.exists(): proc = subprocess.Popen( - [ - "git", "clone", - "https://huggingface.co/ctheodoris/Geneformer", - str(geneformer_dir) - ], + ["git", "clone", "https://huggingface.co/ctheodoris/Geneformer", str(geneformer_dir)], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, - text=True + text=True, ) for line in proc.stdout: - print(line, end='', file=sys.stdout) + print(line, end="", file=sys.stdout) proc.wait() if proc.returncode != 0: raise RuntimeError("git clone of Geneformer failed") @@ -2257,29 +2246,19 @@ def geneformer_embed( print(f"Geneformer directory already exists: {geneformer_dir}") proc = subprocess.Popen( - ["pip", "install", "."], - cwd=str(geneformer_dir), - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, - text=True + ["pip", "install", "."], cwd=str(geneformer_dir), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True ) # Also install required dependencies after installing Geneformer proc.wait() if proc.returncode != 0: raise RuntimeError("pip install of Geneformer failed") - #required to make geneformer work - extra_packages = [ - "peft==0.11.1", - "transformers==4.40" - ] + # required to make geneformer work + extra_packages = ["peft==0.11.1", "transformers==4.40"] proc = subprocess.Popen( - ["pip", "install"] + extra_packages, - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, - text=True + ["pip", "install"] + extra_packages, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True ) for line in proc.stdout: - print(line, end='', file=sys.stdout) + print(line, end="", file=sys.stdout) proc.wait() if proc.returncode != 0: raise RuntimeError("pip install of Geneformer failed") @@ -2287,6 +2266,7 @@ def geneformer_embed( try: from geneformer import EmbExtractor from geneformer.tokenizer import TranscriptomeTokenizer + steps.append(f"Loading Geneformer model: {model_name}") BASE_DIR = Path(base_dir) MODELS_DIR = geneformer_dir @@ -2330,26 +2310,28 @@ def geneformer_embed( steps.append("✓ Added required columns: ensembl_id, n_counts, cell_index") steps.append("Loading token dictionary and checking gene overlap") - + # Check if model files exist if not TOKEN_DICT_PATH.exists(): - raise FileNotFoundError(f"Token dictionary file not found: {TOKEN_DICT_PATH}\n" - f"Please download the Geneformer model files to: {MODEL_DIR}\n" - f"Required files:\n" - f" - {TOKEN_DICT_PATH.name}\n" - f" - {GENE_MEDIAN_PATH.name}\n" - f" - {GENE_NAME_ID_PATH.name}\n" - f"You can download them from the Geneformer repository or Hugging Face.") - + raise FileNotFoundError( + f"Token dictionary file not found: {TOKEN_DICT_PATH}\n" + f"Please download the Geneformer model files to: {MODEL_DIR}\n" + f"Required files:\n" + f" - {TOKEN_DICT_PATH.name}\n" + f" - {GENE_MEDIAN_PATH.name}\n" + f" - {GENE_NAME_ID_PATH.name}\n" + f"You can download them from the Geneformer repository or Hugging Face." + ) + if not GENE_MEDIAN_PATH.exists(): raise FileNotFoundError(f"Gene median dictionary file not found: {GENE_MEDIAN_PATH}") - + if not GENE_NAME_ID_PATH.exists(): raise FileNotFoundError(f"Gene name ID dictionary file not found: {GENE_NAME_ID_PATH}") - + with open(TOKEN_DICT_PATH, "rb") as f: token_dict = pickle.load(f) - + token_keys = set(token_dict.keys()) var_names = set(adata.var_names) matching_tokens = token_keys & var_names @@ -2360,7 +2342,7 @@ def geneformer_embed( f"Number of tokens in tokenizer: {len(token_keys)}\n" "Please ensure your gene names (var_names) are Ensembl IDs matching the Geneformer model." ) - + steps.append(f"✓ Loaded token dictionary with {len(token_dict)} tokens") steps.append(f"✓ Found {len(matching_tokens)} matching genes between dataset and tokenizer") steps.append(f"Sample matching tokens: {list(matching_tokens)[:10]}") @@ -2434,4 +2416,4 @@ def geneformer_embed( except Exception as e: steps.append(f"✗ Error during Geneformer embedding extraction: {str(e)}") steps.append("Geneformer embedding extraction failed") - return "\n".join(steps) \ No newline at end of file + return "\n".join(steps) diff --git a/biomni/tool/tool_description/genomics.py b/biomni/tool/tool_description/genomics.py index 32773c9b7..d2ab21f29 100644 --- a/biomni/tool/tool_description/genomics.py +++ b/biomni/tool/tool_description/genomics.py @@ -714,5 +714,5 @@ "type": "str", }, ], - } -] \ No newline at end of file + }, +] diff --git a/biomni_env/new_software_v006.sh b/biomni_env/new_software_v006.sh index 4dd8840da..deb2a68e1 100755 --- a/biomni_env/new_software_v006.sh +++ b/biomni_env/new_software_v006.sh @@ -31,4 +31,4 @@ pip install "numcodecs>=0.13.0" pip install "zarr>=2.18.2" pip install "requests>=2.32.1" pip install "numba>=0.6.1" -pip install pynvml \ No newline at end of file +pip install pynvml diff --git a/tutorials/geneformer_tests.py b/tutorials/geneformer_tests.py deleted file mode 100644 index 30949c735..000000000 --- a/tutorials/geneformer_tests.py +++ /dev/null @@ -1,239 +0,0 @@ - -# ============================================================================= -# CONFIGURATION PARAMETERS - Modify these as needed -# ============================================================================= - -import os - -# Base paths -BIOMNI_ROOT = "/home/igor/exploration/biomni/Biomni/" -TUTORIALS_DIR = os.path.join(BIOMNI_ROOT, "tutorials") -DATA_DIR = os.path.join(TUTORIALS_DIR, "data") -EMBEDDINGS_DIR = os.path.join(TUTORIALS_DIR, "zero-shot-performance", "embeddings") - -# Dataset parameters -SYNTHETIC_FILENAME = "synthetic_ensembl_dataset.h5ad" -SYNTHETIC_EMBEDDINGS_PREFIX = "synthetic_geneformer_embeddings" -SYNTHETIC_UMAP_PLOT_FILENAME = "synthetic_geneformer_umap.png" - -# Geneformer parameters -# Available models: -# - "Geneformer-V1-10M": 10M parameters, fastest, good for quick testing -# - "Geneformer-V2-104M": 104M parameters, balanced performance (default) -# - "Geneformer-V2-104M_CLcancer": 104M parameters, cancer-specific fine-tuning -# - "Geneformer-V2-316M": 316M parameters, highest performance, requires more memory -MODEL_NAME = "Geneformer-V2-104M" -MODEL_INPUT_SIZE = 4096 -CHUNK_SIZE = 10000 -NPROC = 8 -FORWARD_BATCH_SIZE = 64 - -# Synthetic dataset parameters -N_CELLS = 1000 -N_GENES = 2000 -N_CELL_TYPES = 5 - -# UMAP parameters -UMAP_SIZE = 5 -UMAP_DPI = 300 - -# ============================================================================= -# HELPER FUNCTIONS -# ============================================================================= - -def create_synthetic_ensembl_dataset(n_cells, n_genes, n_cell_types, random_seed=42): - """ - Create a synthetic single-cell RNA-seq dataset with Ensembl gene IDs. - - Parameters - ---------- - n_cells : int - Number of cells to generate - n_genes : int - Number of genes to generate - n_cell_types : int - Number of different cell types - random_seed : int - Random seed for reproducibility - - Returns - ------- - adata : AnnData - Synthetic AnnData object with Ensembl gene IDs - """ - import numpy as np - import pandas as pd - import scanpy as sc - from scipy import sparse - - np.random.seed(random_seed) - - # Generate synthetic Ensembl gene IDs - # Real Ensembl IDs follow pattern: ENSG + 11 digits - ensembl_ids = [] - for i in range(n_genes): - # Generate 11-digit number with leading zeros - gene_number = f"{i+1:011d}" - ensembl_id = f"ENSG{gene_number}" - ensembl_ids.append(ensembl_id) - - # Generate synthetic cell type labels - cell_types = [f"CellType_{i+1}" for i in range(n_cell_types)] - cell_type_labels = np.random.choice(cell_types, size=n_cells) - - # Generate synthetic expression matrix - # Use negative binomial distribution to simulate count data - expression_matrix = np.zeros((n_cells, n_genes)) - - for i, cell_type in enumerate(cell_types): - # Get cells of this type - cell_mask = cell_type_labels == cell_type - - # Generate different expression patterns for each cell type - # Some genes are highly expressed in specific cell types - for j in range(n_genes): - if j % (n_genes // n_cell_types) == i: - # High expression for cell type-specific genes - mean_expr = np.random.negative_binomial(5, 0.3, size=np.sum(cell_mask)) - else: - # Low baseline expression - mean_expr = np.random.negative_binomial(2, 0.7, size=np.sum(cell_mask)) - - expression_matrix[cell_mask, j] = mean_expr - - # Add some noise - noise = np.random.poisson(1, size=(n_cells, n_genes)) - expression_matrix = expression_matrix + noise - - # Convert to sparse matrix for efficiency - expression_matrix = sparse.csr_matrix(expression_matrix.astype(int)) - - # Create cell metadata - cell_metadata = pd.DataFrame({ - 'cell_type': cell_type_labels, - 'cell_id': [f"Cell_{i:04d}" for i in range(n_cells)], - 'n_counts': np.array(expression_matrix.sum(axis=1)).flatten(), - 'n_genes': np.array((expression_matrix > 0).sum(axis=1)).flatten() - }) - - # Create gene metadata - gene_metadata = pd.DataFrame({ - 'gene_id': ensembl_ids, - 'gene_symbol': [f"GENE_{i+1:04d}" for i in range(n_genes)], - 'n_cells': np.array((expression_matrix > 0).sum(axis=0)).flatten(), - 'mean_counts': np.array(expression_matrix.mean(axis=0)).flatten() - }) - - # Create AnnData object - adata = sc.AnnData( - X=expression_matrix, - obs=cell_metadata, - var=gene_metadata - ) - - # Set gene names to Ensembl IDs - adata.var_names = ensembl_ids - adata.var_names_unique = ensembl_ids - - # Add some basic preprocessing - adata.var['highly_variable'] = adata.var['n_cells'] > n_cells * 0.1 - adata.obs['total_counts'] = adata.obs['n_counts'] - - return adata - -# ============================================================================= -# MAIN EXECUTION -# ============================================================================= - -if __name__ == "__main__": - import torch - import scanpy as sc - import numpy as np - import pandas as pd - - import sys - sys.path.append(BIOMNI_ROOT) - from biomni.tool.genomics import geneformer_embed - - print("=" * 80) - print("GENERATING SYNTHETIC DATASET WITH ENSEMBL IDs") - print("=" * 80) - - # Create synthetic dataset with Ensembl IDs - print(f"Creating synthetic dataset with {N_CELLS} cells, {N_GENES} genes, {N_CELL_TYPES} cell types...") - synthetic_adata = create_synthetic_ensembl_dataset(N_CELLS, N_GENES, N_CELL_TYPES) - - print(f"Synthetic dataset created: {synthetic_adata}") - print(f"Number of cells: {synthetic_adata.n_obs}") - print(f"Number of genes: {synthetic_adata.n_vars}") - print(f"Sample Ensembl IDs: {list(synthetic_adata.var_names[:10])}") - print(f"Cell types: {list(synthetic_adata.obs['cell_type'].unique())}") - - # Create directories - os.makedirs(DATA_DIR, exist_ok=True) - os.makedirs(EMBEDDINGS_DIR, exist_ok=True) - - # Save synthetic dataset - synthetic_path = os.path.join(DATA_DIR, SYNTHETIC_FILENAME) - synthetic_adata.write(synthetic_path) - print(f"Saved synthetic dataset to: {synthetic_path}") - - print("\n" + "=" * 80) - print("TESTING WITH SYNTHETIC DATASET (ENSEMBL IDs)") - print("=" * 80) - - # Test with synthetic dataset (should work better with Ensembl IDs) - print("Testing Geneformer with synthetic dataset containing Ensembl IDs...") - synthetic_steps = geneformer_embed( - adata_or_path=synthetic_adata, - base_dir=TUTORIALS_DIR, - adata_filename=SYNTHETIC_FILENAME, - embeddings_prefix=SYNTHETIC_EMBEDDINGS_PREFIX, - model_name=MODEL_NAME, - model_input_size=MODEL_INPUT_SIZE, - chunk_size=CHUNK_SIZE, - nproc=NPROC, - forward_batch_size=FORWARD_BATCH_SIZE, - ) - print("Synthetic dataset Geneformer embedding steps:") - print(synthetic_steps) - - # Load the synthetic embeddings CSV - synthetic_embeddings_path = os.path.join(EMBEDDINGS_DIR, f"{SYNTHETIC_EMBEDDINGS_PREFIX}.csv") - synthetic_embeddings_df = pd.read_csv(synthetic_embeddings_path, index_col=0) - print(f"✓ Loaded synthetic embeddings with shape: {synthetic_embeddings_df.shape}") - print(f"✓ Synthetic embeddings columns: {list(synthetic_embeddings_df.columns)}") - - synthetic_adata.obsm['X_geneformer'] = synthetic_embeddings_df.values - print("\nChecking for synthetic Geneformer embeddings...") - print(f"Available obsm keys: {list(synthetic_adata.obsm.keys())}") - - if 'X_geneformer' in synthetic_adata.obsm: - synthetic_adata.obsm['X_umap_input'] = synthetic_adata.obsm['X_geneformer'] - use_rep = 'X_umap_input' - print(f"✓ Found synthetic Geneformer embeddings in obsm['X_geneformer'] with shape: {synthetic_adata.obsm['X_geneformer'].shape}") - else: - print("⚠️ No synthetic Geneformer embeddings found in expected location (obsm['X_geneformer'])") - print("⚠️ Using raw data for UMAP.") - use_rep = None - - sc.pp.neighbors(synthetic_adata, use_rep=use_rep) - sc.tl.umap(synthetic_adata) - import matplotlib.pyplot as plt - synthetic_umap_output_path = os.path.join(DATA_DIR, SYNTHETIC_UMAP_PLOT_FILENAME) - sc.pl.umap(synthetic_adata, color='cell_type', show=False, size=UMAP_SIZE, title="UMAP of Synthetic Geneformer embeddings") - plt.savefig(synthetic_umap_output_path, dpi=UMAP_DPI, bbox_inches='tight') - plt.close() - print(f"✓ Synthetic UMAP plot saved to: {synthetic_umap_output_path}") - - # Show cell type distribution - print(f"\nCell type distribution in synthetic dataset:") - print(synthetic_adata.obs['cell_type'].value_counts()) - - print("\n" + "=" * 80) - print("TESTING COMPLETE") - print("=" * 80) - print("Generated files:") - print(f"- Synthetic dataset: {synthetic_path}") - print(f"- Synthetic embeddings: {os.path.join(EMBEDDINGS_DIR, f'{SYNTHETIC_EMBEDDINGS_PREFIX}.csv')}") - print(f"- Synthetic UMAP plot: {os.path.join(DATA_DIR, SYNTHETIC_UMAP_PLOT_FILENAME)}") From 167bdd25243be936ea79f8e17e7b6ca407fefcb7 Mon Sep 17 00:00:00 2001 From: Igor Sadalski Date: Mon, 29 Sep 2025 20:30:00 +0000 Subject: [PATCH 5/7] Revert "Refactor geneformer embedding function for improved readability and performance; remove deprecated test file and update package installation script." This reverts commit e2e00ab4b7a471c1c49b40c16c5ba2a95ce9a536. --- biomni/tool/genomics.py | 82 +++++--- biomni/tool/tool_description/genomics.py | 4 +- biomni_env/new_software_v006.sh | 2 +- tutorials/geneformer_tests.py | 239 +++++++++++++++++++++++ 4 files changed, 292 insertions(+), 35 deletions(-) create mode 100644 tutorials/geneformer_tests.py diff --git a/biomni/tool/genomics.py b/biomni/tool/genomics.py index 6c56f4ec2..b3b6e0409 100644 --- a/biomni/tool/genomics.py +++ b/biomni/tool/genomics.py @@ -2163,7 +2163,6 @@ def analyze_genomic_region_overlap(region_sets, output_prefix="overlap_analysis" return log - def geneformer_embed( adata_or_path, base_dir, @@ -2204,12 +2203,15 @@ def geneformer_embed( str Steps performed during the embedding extraction process. """ - + + import anndata as ad + import pandas as pd + import numpy as np import pickle - import subprocess from pathlib import Path - import anndata as ad + import os + import subprocess steps = [] steps.append("Starting Geneformer embedding extraction pipeline") @@ -2219,12 +2221,17 @@ def geneformer_embed( steps.append(f"Chunk size: {chunk_size}") steps.append(f"Number of processes: {nproc}") steps.append(f"Forward batch size: {forward_batch_size}") - + import sys - proc = subprocess.Popen(["git", "lfs", "install"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True) + proc = subprocess.Popen( + ["git", "lfs", "install"], + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + text=True + ) for line in proc.stdout: - print(line, end="", file=sys.stdout) + print(line, end='', file=sys.stdout) proc.wait() if proc.returncode != 0: raise RuntimeError("git lfs install failed") @@ -2232,13 +2239,17 @@ def geneformer_embed( geneformer_dir = Path(base_dir) / "Geneformer" if not geneformer_dir.exists(): proc = subprocess.Popen( - ["git", "clone", "https://huggingface.co/ctheodoris/Geneformer", str(geneformer_dir)], + [ + "git", "clone", + "https://huggingface.co/ctheodoris/Geneformer", + str(geneformer_dir) + ], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, - text=True, + text=True ) for line in proc.stdout: - print(line, end="", file=sys.stdout) + print(line, end='', file=sys.stdout) proc.wait() if proc.returncode != 0: raise RuntimeError("git clone of Geneformer failed") @@ -2246,19 +2257,29 @@ def geneformer_embed( print(f"Geneformer directory already exists: {geneformer_dir}") proc = subprocess.Popen( - ["pip", "install", "."], cwd=str(geneformer_dir), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True + ["pip", "install", "."], + cwd=str(geneformer_dir), + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + text=True ) # Also install required dependencies after installing Geneformer proc.wait() if proc.returncode != 0: raise RuntimeError("pip install of Geneformer failed") - # required to make geneformer work - extra_packages = ["peft==0.11.1", "transformers==4.40"] + #required to make geneformer work + extra_packages = [ + "peft==0.11.1", + "transformers==4.40" + ] proc = subprocess.Popen( - ["pip", "install"] + extra_packages, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True + ["pip", "install"] + extra_packages, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + text=True ) for line in proc.stdout: - print(line, end="", file=sys.stdout) + print(line, end='', file=sys.stdout) proc.wait() if proc.returncode != 0: raise RuntimeError("pip install of Geneformer failed") @@ -2266,7 +2287,6 @@ def geneformer_embed( try: from geneformer import EmbExtractor from geneformer.tokenizer import TranscriptomeTokenizer - steps.append(f"Loading Geneformer model: {model_name}") BASE_DIR = Path(base_dir) MODELS_DIR = geneformer_dir @@ -2310,28 +2330,26 @@ def geneformer_embed( steps.append("✓ Added required columns: ensembl_id, n_counts, cell_index") steps.append("Loading token dictionary and checking gene overlap") - + # Check if model files exist if not TOKEN_DICT_PATH.exists(): - raise FileNotFoundError( - f"Token dictionary file not found: {TOKEN_DICT_PATH}\n" - f"Please download the Geneformer model files to: {MODEL_DIR}\n" - f"Required files:\n" - f" - {TOKEN_DICT_PATH.name}\n" - f" - {GENE_MEDIAN_PATH.name}\n" - f" - {GENE_NAME_ID_PATH.name}\n" - f"You can download them from the Geneformer repository or Hugging Face." - ) - + raise FileNotFoundError(f"Token dictionary file not found: {TOKEN_DICT_PATH}\n" + f"Please download the Geneformer model files to: {MODEL_DIR}\n" + f"Required files:\n" + f" - {TOKEN_DICT_PATH.name}\n" + f" - {GENE_MEDIAN_PATH.name}\n" + f" - {GENE_NAME_ID_PATH.name}\n" + f"You can download them from the Geneformer repository or Hugging Face.") + if not GENE_MEDIAN_PATH.exists(): raise FileNotFoundError(f"Gene median dictionary file not found: {GENE_MEDIAN_PATH}") - + if not GENE_NAME_ID_PATH.exists(): raise FileNotFoundError(f"Gene name ID dictionary file not found: {GENE_NAME_ID_PATH}") - + with open(TOKEN_DICT_PATH, "rb") as f: token_dict = pickle.load(f) - + token_keys = set(token_dict.keys()) var_names = set(adata.var_names) matching_tokens = token_keys & var_names @@ -2342,7 +2360,7 @@ def geneformer_embed( f"Number of tokens in tokenizer: {len(token_keys)}\n" "Please ensure your gene names (var_names) are Ensembl IDs matching the Geneformer model." ) - + steps.append(f"✓ Loaded token dictionary with {len(token_dict)} tokens") steps.append(f"✓ Found {len(matching_tokens)} matching genes between dataset and tokenizer") steps.append(f"Sample matching tokens: {list(matching_tokens)[:10]}") @@ -2416,4 +2434,4 @@ def geneformer_embed( except Exception as e: steps.append(f"✗ Error during Geneformer embedding extraction: {str(e)}") steps.append("Geneformer embedding extraction failed") - return "\n".join(steps) + return "\n".join(steps) \ No newline at end of file diff --git a/biomni/tool/tool_description/genomics.py b/biomni/tool/tool_description/genomics.py index d2ab21f29..32773c9b7 100644 --- a/biomni/tool/tool_description/genomics.py +++ b/biomni/tool/tool_description/genomics.py @@ -714,5 +714,5 @@ "type": "str", }, ], - }, -] + } +] \ No newline at end of file diff --git a/biomni_env/new_software_v006.sh b/biomni_env/new_software_v006.sh index deb2a68e1..4dd8840da 100755 --- a/biomni_env/new_software_v006.sh +++ b/biomni_env/new_software_v006.sh @@ -31,4 +31,4 @@ pip install "numcodecs>=0.13.0" pip install "zarr>=2.18.2" pip install "requests>=2.32.1" pip install "numba>=0.6.1" -pip install pynvml +pip install pynvml \ No newline at end of file diff --git a/tutorials/geneformer_tests.py b/tutorials/geneformer_tests.py new file mode 100644 index 000000000..30949c735 --- /dev/null +++ b/tutorials/geneformer_tests.py @@ -0,0 +1,239 @@ + +# ============================================================================= +# CONFIGURATION PARAMETERS - Modify these as needed +# ============================================================================= + +import os + +# Base paths +BIOMNI_ROOT = "/home/igor/exploration/biomni/Biomni/" +TUTORIALS_DIR = os.path.join(BIOMNI_ROOT, "tutorials") +DATA_DIR = os.path.join(TUTORIALS_DIR, "data") +EMBEDDINGS_DIR = os.path.join(TUTORIALS_DIR, "zero-shot-performance", "embeddings") + +# Dataset parameters +SYNTHETIC_FILENAME = "synthetic_ensembl_dataset.h5ad" +SYNTHETIC_EMBEDDINGS_PREFIX = "synthetic_geneformer_embeddings" +SYNTHETIC_UMAP_PLOT_FILENAME = "synthetic_geneformer_umap.png" + +# Geneformer parameters +# Available models: +# - "Geneformer-V1-10M": 10M parameters, fastest, good for quick testing +# - "Geneformer-V2-104M": 104M parameters, balanced performance (default) +# - "Geneformer-V2-104M_CLcancer": 104M parameters, cancer-specific fine-tuning +# - "Geneformer-V2-316M": 316M parameters, highest performance, requires more memory +MODEL_NAME = "Geneformer-V2-104M" +MODEL_INPUT_SIZE = 4096 +CHUNK_SIZE = 10000 +NPROC = 8 +FORWARD_BATCH_SIZE = 64 + +# Synthetic dataset parameters +N_CELLS = 1000 +N_GENES = 2000 +N_CELL_TYPES = 5 + +# UMAP parameters +UMAP_SIZE = 5 +UMAP_DPI = 300 + +# ============================================================================= +# HELPER FUNCTIONS +# ============================================================================= + +def create_synthetic_ensembl_dataset(n_cells, n_genes, n_cell_types, random_seed=42): + """ + Create a synthetic single-cell RNA-seq dataset with Ensembl gene IDs. + + Parameters + ---------- + n_cells : int + Number of cells to generate + n_genes : int + Number of genes to generate + n_cell_types : int + Number of different cell types + random_seed : int + Random seed for reproducibility + + Returns + ------- + adata : AnnData + Synthetic AnnData object with Ensembl gene IDs + """ + import numpy as np + import pandas as pd + import scanpy as sc + from scipy import sparse + + np.random.seed(random_seed) + + # Generate synthetic Ensembl gene IDs + # Real Ensembl IDs follow pattern: ENSG + 11 digits + ensembl_ids = [] + for i in range(n_genes): + # Generate 11-digit number with leading zeros + gene_number = f"{i+1:011d}" + ensembl_id = f"ENSG{gene_number}" + ensembl_ids.append(ensembl_id) + + # Generate synthetic cell type labels + cell_types = [f"CellType_{i+1}" for i in range(n_cell_types)] + cell_type_labels = np.random.choice(cell_types, size=n_cells) + + # Generate synthetic expression matrix + # Use negative binomial distribution to simulate count data + expression_matrix = np.zeros((n_cells, n_genes)) + + for i, cell_type in enumerate(cell_types): + # Get cells of this type + cell_mask = cell_type_labels == cell_type + + # Generate different expression patterns for each cell type + # Some genes are highly expressed in specific cell types + for j in range(n_genes): + if j % (n_genes // n_cell_types) == i: + # High expression for cell type-specific genes + mean_expr = np.random.negative_binomial(5, 0.3, size=np.sum(cell_mask)) + else: + # Low baseline expression + mean_expr = np.random.negative_binomial(2, 0.7, size=np.sum(cell_mask)) + + expression_matrix[cell_mask, j] = mean_expr + + # Add some noise + noise = np.random.poisson(1, size=(n_cells, n_genes)) + expression_matrix = expression_matrix + noise + + # Convert to sparse matrix for efficiency + expression_matrix = sparse.csr_matrix(expression_matrix.astype(int)) + + # Create cell metadata + cell_metadata = pd.DataFrame({ + 'cell_type': cell_type_labels, + 'cell_id': [f"Cell_{i:04d}" for i in range(n_cells)], + 'n_counts': np.array(expression_matrix.sum(axis=1)).flatten(), + 'n_genes': np.array((expression_matrix > 0).sum(axis=1)).flatten() + }) + + # Create gene metadata + gene_metadata = pd.DataFrame({ + 'gene_id': ensembl_ids, + 'gene_symbol': [f"GENE_{i+1:04d}" for i in range(n_genes)], + 'n_cells': np.array((expression_matrix > 0).sum(axis=0)).flatten(), + 'mean_counts': np.array(expression_matrix.mean(axis=0)).flatten() + }) + + # Create AnnData object + adata = sc.AnnData( + X=expression_matrix, + obs=cell_metadata, + var=gene_metadata + ) + + # Set gene names to Ensembl IDs + adata.var_names = ensembl_ids + adata.var_names_unique = ensembl_ids + + # Add some basic preprocessing + adata.var['highly_variable'] = adata.var['n_cells'] > n_cells * 0.1 + adata.obs['total_counts'] = adata.obs['n_counts'] + + return adata + +# ============================================================================= +# MAIN EXECUTION +# ============================================================================= + +if __name__ == "__main__": + import torch + import scanpy as sc + import numpy as np + import pandas as pd + + import sys + sys.path.append(BIOMNI_ROOT) + from biomni.tool.genomics import geneformer_embed + + print("=" * 80) + print("GENERATING SYNTHETIC DATASET WITH ENSEMBL IDs") + print("=" * 80) + + # Create synthetic dataset with Ensembl IDs + print(f"Creating synthetic dataset with {N_CELLS} cells, {N_GENES} genes, {N_CELL_TYPES} cell types...") + synthetic_adata = create_synthetic_ensembl_dataset(N_CELLS, N_GENES, N_CELL_TYPES) + + print(f"Synthetic dataset created: {synthetic_adata}") + print(f"Number of cells: {synthetic_adata.n_obs}") + print(f"Number of genes: {synthetic_adata.n_vars}") + print(f"Sample Ensembl IDs: {list(synthetic_adata.var_names[:10])}") + print(f"Cell types: {list(synthetic_adata.obs['cell_type'].unique())}") + + # Create directories + os.makedirs(DATA_DIR, exist_ok=True) + os.makedirs(EMBEDDINGS_DIR, exist_ok=True) + + # Save synthetic dataset + synthetic_path = os.path.join(DATA_DIR, SYNTHETIC_FILENAME) + synthetic_adata.write(synthetic_path) + print(f"Saved synthetic dataset to: {synthetic_path}") + + print("\n" + "=" * 80) + print("TESTING WITH SYNTHETIC DATASET (ENSEMBL IDs)") + print("=" * 80) + + # Test with synthetic dataset (should work better with Ensembl IDs) + print("Testing Geneformer with synthetic dataset containing Ensembl IDs...") + synthetic_steps = geneformer_embed( + adata_or_path=synthetic_adata, + base_dir=TUTORIALS_DIR, + adata_filename=SYNTHETIC_FILENAME, + embeddings_prefix=SYNTHETIC_EMBEDDINGS_PREFIX, + model_name=MODEL_NAME, + model_input_size=MODEL_INPUT_SIZE, + chunk_size=CHUNK_SIZE, + nproc=NPROC, + forward_batch_size=FORWARD_BATCH_SIZE, + ) + print("Synthetic dataset Geneformer embedding steps:") + print(synthetic_steps) + + # Load the synthetic embeddings CSV + synthetic_embeddings_path = os.path.join(EMBEDDINGS_DIR, f"{SYNTHETIC_EMBEDDINGS_PREFIX}.csv") + synthetic_embeddings_df = pd.read_csv(synthetic_embeddings_path, index_col=0) + print(f"✓ Loaded synthetic embeddings with shape: {synthetic_embeddings_df.shape}") + print(f"✓ Synthetic embeddings columns: {list(synthetic_embeddings_df.columns)}") + + synthetic_adata.obsm['X_geneformer'] = synthetic_embeddings_df.values + print("\nChecking for synthetic Geneformer embeddings...") + print(f"Available obsm keys: {list(synthetic_adata.obsm.keys())}") + + if 'X_geneformer' in synthetic_adata.obsm: + synthetic_adata.obsm['X_umap_input'] = synthetic_adata.obsm['X_geneformer'] + use_rep = 'X_umap_input' + print(f"✓ Found synthetic Geneformer embeddings in obsm['X_geneformer'] with shape: {synthetic_adata.obsm['X_geneformer'].shape}") + else: + print("⚠️ No synthetic Geneformer embeddings found in expected location (obsm['X_geneformer'])") + print("⚠️ Using raw data for UMAP.") + use_rep = None + + sc.pp.neighbors(synthetic_adata, use_rep=use_rep) + sc.tl.umap(synthetic_adata) + import matplotlib.pyplot as plt + synthetic_umap_output_path = os.path.join(DATA_DIR, SYNTHETIC_UMAP_PLOT_FILENAME) + sc.pl.umap(synthetic_adata, color='cell_type', show=False, size=UMAP_SIZE, title="UMAP of Synthetic Geneformer embeddings") + plt.savefig(synthetic_umap_output_path, dpi=UMAP_DPI, bbox_inches='tight') + plt.close() + print(f"✓ Synthetic UMAP plot saved to: {synthetic_umap_output_path}") + + # Show cell type distribution + print(f"\nCell type distribution in synthetic dataset:") + print(synthetic_adata.obs['cell_type'].value_counts()) + + print("\n" + "=" * 80) + print("TESTING COMPLETE") + print("=" * 80) + print("Generated files:") + print(f"- Synthetic dataset: {synthetic_path}") + print(f"- Synthetic embeddings: {os.path.join(EMBEDDINGS_DIR, f'{SYNTHETIC_EMBEDDINGS_PREFIX}.csv')}") + print(f"- Synthetic UMAP plot: {os.path.join(DATA_DIR, SYNTHETIC_UMAP_PLOT_FILENAME)}") From f8eaddf0d8756827ed04c6fe7b3366d042fee77d Mon Sep 17 00:00:00 2001 From: Igor Sadalski Date: Mon, 29 Sep 2025 20:34:25 +0000 Subject: [PATCH 6/7] fix precommit hooks --- biomni/tool/genomics.py | 82 +++++++++--------------- biomni/tool/tool_description/genomics.py | 4 +- biomni_env/new_software_v006.sh | 2 +- 3 files changed, 35 insertions(+), 53 deletions(-) diff --git a/biomni/tool/genomics.py b/biomni/tool/genomics.py index b3b6e0409..6c56f4ec2 100644 --- a/biomni/tool/genomics.py +++ b/biomni/tool/genomics.py @@ -2163,6 +2163,7 @@ def analyze_genomic_region_overlap(region_sets, output_prefix="overlap_analysis" return log + def geneformer_embed( adata_or_path, base_dir, @@ -2203,15 +2204,12 @@ def geneformer_embed( str Steps performed during the embedding extraction process. """ - - import anndata as ad - import pandas as pd - import numpy as np + import pickle + import subprocess from pathlib import Path - import os - import subprocess + import anndata as ad steps = [] steps.append("Starting Geneformer embedding extraction pipeline") @@ -2221,17 +2219,12 @@ def geneformer_embed( steps.append(f"Chunk size: {chunk_size}") steps.append(f"Number of processes: {nproc}") steps.append(f"Forward batch size: {forward_batch_size}") - + import sys - proc = subprocess.Popen( - ["git", "lfs", "install"], - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, - text=True - ) + proc = subprocess.Popen(["git", "lfs", "install"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True) for line in proc.stdout: - print(line, end='', file=sys.stdout) + print(line, end="", file=sys.stdout) proc.wait() if proc.returncode != 0: raise RuntimeError("git lfs install failed") @@ -2239,17 +2232,13 @@ def geneformer_embed( geneformer_dir = Path(base_dir) / "Geneformer" if not geneformer_dir.exists(): proc = subprocess.Popen( - [ - "git", "clone", - "https://huggingface.co/ctheodoris/Geneformer", - str(geneformer_dir) - ], + ["git", "clone", "https://huggingface.co/ctheodoris/Geneformer", str(geneformer_dir)], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, - text=True + text=True, ) for line in proc.stdout: - print(line, end='', file=sys.stdout) + print(line, end="", file=sys.stdout) proc.wait() if proc.returncode != 0: raise RuntimeError("git clone of Geneformer failed") @@ -2257,29 +2246,19 @@ def geneformer_embed( print(f"Geneformer directory already exists: {geneformer_dir}") proc = subprocess.Popen( - ["pip", "install", "."], - cwd=str(geneformer_dir), - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, - text=True + ["pip", "install", "."], cwd=str(geneformer_dir), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True ) # Also install required dependencies after installing Geneformer proc.wait() if proc.returncode != 0: raise RuntimeError("pip install of Geneformer failed") - #required to make geneformer work - extra_packages = [ - "peft==0.11.1", - "transformers==4.40" - ] + # required to make geneformer work + extra_packages = ["peft==0.11.1", "transformers==4.40"] proc = subprocess.Popen( - ["pip", "install"] + extra_packages, - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, - text=True + ["pip", "install"] + extra_packages, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True ) for line in proc.stdout: - print(line, end='', file=sys.stdout) + print(line, end="", file=sys.stdout) proc.wait() if proc.returncode != 0: raise RuntimeError("pip install of Geneformer failed") @@ -2287,6 +2266,7 @@ def geneformer_embed( try: from geneformer import EmbExtractor from geneformer.tokenizer import TranscriptomeTokenizer + steps.append(f"Loading Geneformer model: {model_name}") BASE_DIR = Path(base_dir) MODELS_DIR = geneformer_dir @@ -2330,26 +2310,28 @@ def geneformer_embed( steps.append("✓ Added required columns: ensembl_id, n_counts, cell_index") steps.append("Loading token dictionary and checking gene overlap") - + # Check if model files exist if not TOKEN_DICT_PATH.exists(): - raise FileNotFoundError(f"Token dictionary file not found: {TOKEN_DICT_PATH}\n" - f"Please download the Geneformer model files to: {MODEL_DIR}\n" - f"Required files:\n" - f" - {TOKEN_DICT_PATH.name}\n" - f" - {GENE_MEDIAN_PATH.name}\n" - f" - {GENE_NAME_ID_PATH.name}\n" - f"You can download them from the Geneformer repository or Hugging Face.") - + raise FileNotFoundError( + f"Token dictionary file not found: {TOKEN_DICT_PATH}\n" + f"Please download the Geneformer model files to: {MODEL_DIR}\n" + f"Required files:\n" + f" - {TOKEN_DICT_PATH.name}\n" + f" - {GENE_MEDIAN_PATH.name}\n" + f" - {GENE_NAME_ID_PATH.name}\n" + f"You can download them from the Geneformer repository or Hugging Face." + ) + if not GENE_MEDIAN_PATH.exists(): raise FileNotFoundError(f"Gene median dictionary file not found: {GENE_MEDIAN_PATH}") - + if not GENE_NAME_ID_PATH.exists(): raise FileNotFoundError(f"Gene name ID dictionary file not found: {GENE_NAME_ID_PATH}") - + with open(TOKEN_DICT_PATH, "rb") as f: token_dict = pickle.load(f) - + token_keys = set(token_dict.keys()) var_names = set(adata.var_names) matching_tokens = token_keys & var_names @@ -2360,7 +2342,7 @@ def geneformer_embed( f"Number of tokens in tokenizer: {len(token_keys)}\n" "Please ensure your gene names (var_names) are Ensembl IDs matching the Geneformer model." ) - + steps.append(f"✓ Loaded token dictionary with {len(token_dict)} tokens") steps.append(f"✓ Found {len(matching_tokens)} matching genes between dataset and tokenizer") steps.append(f"Sample matching tokens: {list(matching_tokens)[:10]}") @@ -2434,4 +2416,4 @@ def geneformer_embed( except Exception as e: steps.append(f"✗ Error during Geneformer embedding extraction: {str(e)}") steps.append("Geneformer embedding extraction failed") - return "\n".join(steps) \ No newline at end of file + return "\n".join(steps) diff --git a/biomni/tool/tool_description/genomics.py b/biomni/tool/tool_description/genomics.py index 32773c9b7..d2ab21f29 100644 --- a/biomni/tool/tool_description/genomics.py +++ b/biomni/tool/tool_description/genomics.py @@ -714,5 +714,5 @@ "type": "str", }, ], - } -] \ No newline at end of file + }, +] diff --git a/biomni_env/new_software_v006.sh b/biomni_env/new_software_v006.sh index 4dd8840da..deb2a68e1 100755 --- a/biomni_env/new_software_v006.sh +++ b/biomni_env/new_software_v006.sh @@ -31,4 +31,4 @@ pip install "numcodecs>=0.13.0" pip install "zarr>=2.18.2" pip install "requests>=2.32.1" pip install "numba>=0.6.1" -pip install pynvml \ No newline at end of file +pip install pynvml From 2af91a58002d8c0c725079229dfce4578fe95e32 Mon Sep 17 00:00:00 2001 From: Igor Sadalski Date: Mon, 29 Sep 2025 20:35:33 +0000 Subject: [PATCH 7/7] Remove deprecated test file and associated synthetic embeddings CSV files from the geneformer tutorial. --- tutorials/geneformer_tests.py | 239 ---- .../embeddings/embeddings_geneformer_4096.csv | 1001 ----------------- .../synthetic_geneformer_embeddings.csv | 1001 ----------------- 3 files changed, 2241 deletions(-) delete mode 100644 tutorials/geneformer_tests.py delete mode 100644 tutorials/zero-shot-performance/embeddings/embeddings_geneformer_4096.csv delete mode 100644 tutorials/zero-shot-performance/embeddings/synthetic_geneformer_embeddings.csv diff --git a/tutorials/geneformer_tests.py b/tutorials/geneformer_tests.py deleted file mode 100644 index 30949c735..000000000 --- a/tutorials/geneformer_tests.py +++ /dev/null @@ -1,239 +0,0 @@ - -# ============================================================================= -# CONFIGURATION PARAMETERS - Modify these as needed -# ============================================================================= - -import os - -# Base paths -BIOMNI_ROOT = "/home/igor/exploration/biomni/Biomni/" -TUTORIALS_DIR = os.path.join(BIOMNI_ROOT, "tutorials") -DATA_DIR = os.path.join(TUTORIALS_DIR, "data") -EMBEDDINGS_DIR = os.path.join(TUTORIALS_DIR, "zero-shot-performance", "embeddings") - -# Dataset parameters -SYNTHETIC_FILENAME = "synthetic_ensembl_dataset.h5ad" -SYNTHETIC_EMBEDDINGS_PREFIX = "synthetic_geneformer_embeddings" -SYNTHETIC_UMAP_PLOT_FILENAME = "synthetic_geneformer_umap.png" - -# Geneformer parameters -# Available models: -# - "Geneformer-V1-10M": 10M parameters, fastest, good for quick testing -# - "Geneformer-V2-104M": 104M parameters, balanced performance (default) -# - "Geneformer-V2-104M_CLcancer": 104M parameters, cancer-specific fine-tuning -# - "Geneformer-V2-316M": 316M parameters, highest performance, requires more memory -MODEL_NAME = "Geneformer-V2-104M" -MODEL_INPUT_SIZE = 4096 -CHUNK_SIZE = 10000 -NPROC = 8 -FORWARD_BATCH_SIZE = 64 - -# Synthetic dataset parameters -N_CELLS = 1000 -N_GENES = 2000 -N_CELL_TYPES = 5 - -# UMAP parameters -UMAP_SIZE = 5 -UMAP_DPI = 300 - -# ============================================================================= -# HELPER FUNCTIONS -# ============================================================================= - -def create_synthetic_ensembl_dataset(n_cells, n_genes, n_cell_types, random_seed=42): - """ - Create a synthetic single-cell RNA-seq dataset with Ensembl gene IDs. - - Parameters - ---------- - n_cells : int - Number of cells to generate - n_genes : int - Number of genes to generate - n_cell_types : int - Number of different cell types - random_seed : int - Random seed for reproducibility - - Returns - ------- - adata : AnnData - Synthetic AnnData object with Ensembl gene IDs - """ - import numpy as np - import pandas as pd - import scanpy as sc - from scipy import sparse - - np.random.seed(random_seed) - - # Generate synthetic Ensembl gene IDs - # Real Ensembl IDs follow pattern: ENSG + 11 digits - ensembl_ids = [] - for i in range(n_genes): - # Generate 11-digit number with leading zeros - gene_number = f"{i+1:011d}" - ensembl_id = f"ENSG{gene_number}" - ensembl_ids.append(ensembl_id) - - # Generate synthetic cell type labels - cell_types = [f"CellType_{i+1}" for i in range(n_cell_types)] - cell_type_labels = np.random.choice(cell_types, size=n_cells) - - # Generate synthetic expression matrix - # Use negative binomial distribution to simulate count data - expression_matrix = np.zeros((n_cells, n_genes)) - - for i, cell_type in enumerate(cell_types): - # Get cells of this type - cell_mask = cell_type_labels == cell_type - - # Generate different expression patterns for each cell type - # Some genes are highly expressed in specific cell types - for j in range(n_genes): - if j % (n_genes // n_cell_types) == i: - # High expression for cell type-specific genes - mean_expr = np.random.negative_binomial(5, 0.3, size=np.sum(cell_mask)) - else: - # Low baseline expression - mean_expr = np.random.negative_binomial(2, 0.7, size=np.sum(cell_mask)) - - expression_matrix[cell_mask, j] = mean_expr - - # Add some noise - noise = np.random.poisson(1, size=(n_cells, n_genes)) - expression_matrix = expression_matrix + noise - - # Convert to sparse matrix for efficiency - expression_matrix = sparse.csr_matrix(expression_matrix.astype(int)) - - # Create cell metadata - cell_metadata = pd.DataFrame({ - 'cell_type': cell_type_labels, - 'cell_id': [f"Cell_{i:04d}" for i in range(n_cells)], - 'n_counts': np.array(expression_matrix.sum(axis=1)).flatten(), - 'n_genes': np.array((expression_matrix > 0).sum(axis=1)).flatten() - }) - - # Create gene metadata - gene_metadata = pd.DataFrame({ - 'gene_id': ensembl_ids, - 'gene_symbol': [f"GENE_{i+1:04d}" for i in range(n_genes)], - 'n_cells': np.array((expression_matrix > 0).sum(axis=0)).flatten(), - 'mean_counts': np.array(expression_matrix.mean(axis=0)).flatten() - }) - - # Create AnnData object - adata = sc.AnnData( - X=expression_matrix, - obs=cell_metadata, - var=gene_metadata - ) - - # Set gene names to Ensembl IDs - adata.var_names = ensembl_ids - adata.var_names_unique = ensembl_ids - - # Add some basic preprocessing - adata.var['highly_variable'] = adata.var['n_cells'] > n_cells * 0.1 - adata.obs['total_counts'] = adata.obs['n_counts'] - - return adata - -# ============================================================================= -# MAIN EXECUTION -# ============================================================================= - -if __name__ == "__main__": - import torch - import scanpy as sc - import numpy as np - import pandas as pd - - import sys - sys.path.append(BIOMNI_ROOT) - from biomni.tool.genomics import geneformer_embed - - print("=" * 80) - print("GENERATING SYNTHETIC DATASET WITH ENSEMBL IDs") - print("=" * 80) - - # Create synthetic dataset with Ensembl IDs - print(f"Creating synthetic dataset with {N_CELLS} cells, {N_GENES} genes, {N_CELL_TYPES} cell types...") - synthetic_adata = create_synthetic_ensembl_dataset(N_CELLS, N_GENES, N_CELL_TYPES) - - print(f"Synthetic dataset created: {synthetic_adata}") - print(f"Number of cells: {synthetic_adata.n_obs}") - print(f"Number of genes: {synthetic_adata.n_vars}") - print(f"Sample Ensembl IDs: {list(synthetic_adata.var_names[:10])}") - print(f"Cell types: {list(synthetic_adata.obs['cell_type'].unique())}") - - # Create directories - os.makedirs(DATA_DIR, exist_ok=True) - os.makedirs(EMBEDDINGS_DIR, exist_ok=True) - - # Save synthetic dataset - synthetic_path = os.path.join(DATA_DIR, SYNTHETIC_FILENAME) - synthetic_adata.write(synthetic_path) - print(f"Saved synthetic dataset to: {synthetic_path}") - - print("\n" + "=" * 80) - print("TESTING WITH SYNTHETIC DATASET (ENSEMBL IDs)") - print("=" * 80) - - # Test with synthetic dataset (should work better with Ensembl IDs) - print("Testing Geneformer with synthetic dataset containing Ensembl IDs...") - synthetic_steps = geneformer_embed( - adata_or_path=synthetic_adata, - base_dir=TUTORIALS_DIR, - adata_filename=SYNTHETIC_FILENAME, - embeddings_prefix=SYNTHETIC_EMBEDDINGS_PREFIX, - model_name=MODEL_NAME, - model_input_size=MODEL_INPUT_SIZE, - chunk_size=CHUNK_SIZE, - nproc=NPROC, - forward_batch_size=FORWARD_BATCH_SIZE, - ) - print("Synthetic dataset Geneformer embedding steps:") - print(synthetic_steps) - - # Load the synthetic embeddings CSV - synthetic_embeddings_path = os.path.join(EMBEDDINGS_DIR, f"{SYNTHETIC_EMBEDDINGS_PREFIX}.csv") - synthetic_embeddings_df = pd.read_csv(synthetic_embeddings_path, index_col=0) - print(f"✓ Loaded synthetic embeddings with shape: {synthetic_embeddings_df.shape}") - print(f"✓ Synthetic embeddings columns: {list(synthetic_embeddings_df.columns)}") - - synthetic_adata.obsm['X_geneformer'] = synthetic_embeddings_df.values - print("\nChecking for synthetic Geneformer embeddings...") - print(f"Available obsm keys: {list(synthetic_adata.obsm.keys())}") - - if 'X_geneformer' in synthetic_adata.obsm: - synthetic_adata.obsm['X_umap_input'] = synthetic_adata.obsm['X_geneformer'] - use_rep = 'X_umap_input' - print(f"✓ Found synthetic Geneformer embeddings in obsm['X_geneformer'] with shape: {synthetic_adata.obsm['X_geneformer'].shape}") - else: - print("⚠️ No synthetic Geneformer embeddings found in expected location (obsm['X_geneformer'])") - print("⚠️ Using raw data for UMAP.") - use_rep = None - - sc.pp.neighbors(synthetic_adata, use_rep=use_rep) - sc.tl.umap(synthetic_adata) - import matplotlib.pyplot as plt - synthetic_umap_output_path = os.path.join(DATA_DIR, SYNTHETIC_UMAP_PLOT_FILENAME) - sc.pl.umap(synthetic_adata, color='cell_type', show=False, size=UMAP_SIZE, title="UMAP of Synthetic Geneformer embeddings") - plt.savefig(synthetic_umap_output_path, dpi=UMAP_DPI, bbox_inches='tight') - plt.close() - print(f"✓ Synthetic UMAP plot saved to: {synthetic_umap_output_path}") - - # Show cell type distribution - print(f"\nCell type distribution in synthetic dataset:") - print(synthetic_adata.obs['cell_type'].value_counts()) - - print("\n" + "=" * 80) - print("TESTING COMPLETE") - print("=" * 80) - print("Generated files:") - print(f"- Synthetic dataset: {synthetic_path}") - print(f"- Synthetic embeddings: {os.path.join(EMBEDDINGS_DIR, f'{SYNTHETIC_EMBEDDINGS_PREFIX}.csv')}") - print(f"- Synthetic UMAP plot: {os.path.join(DATA_DIR, SYNTHETIC_UMAP_PLOT_FILENAME)}") diff --git a/tutorials/zero-shot-performance/embeddings/embeddings_geneformer_4096.csv b/tutorials/zero-shot-performance/embeddings/embeddings_geneformer_4096.csv deleted file mode 100644 index 763ed23f0..000000000 --- a/tutorials/zero-shot-performance/embeddings/embeddings_geneformer_4096.csv +++ /dev/null @@ -1,1001 +0,0 @@ -,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,index -0,0.4372309,-0.23207778,-0.5129313,-0.1505107,-0.3634494,0.22991809,-0.20210837,0.42830157,0.13887508,-0.44921246,-0.21464333,-0.24415077,0.050682355,0.27401868,-0.15017961,-0.37812823,0.0374734,0.23365864,-0.6975457,0.6355338,-0.31056368,0.14427702,0.18788977,0.33175665,0.23579076,0.12245113,0.17191654,-0.06309888,-0.08664267,-0.21743742,-0.34948164,0.22004306,-0.5177804,0.2804833,-0.23115024,-0.25012013,-0.038990825,-0.47206828,-0.40999436,-0.756197,0.24700302,-0.78854036,0.4353037,-0.20303614,-0.29390508,0.27218565,0.12297985,0.33031616,-0.11275032,-0.10072221,0.19491717,-0.23626986,-0.11313645,-0.13503897,-0.16626176,-0.42969012,-0.5224517,-0.050794378,-0.3405571,-0.24559972,-0.31661418,0.23586594,-0.2224473,0.12518609,-0.1300094,0.6589022,-0.4155468,0.22492318,0.2207923,-0.15420291,0.27590397,-0.69979304,-0.0258227,-0.10319634,0.27178735,0.06357276,-0.236632,0.3138563,0.31705773,0.3260627,0.08432958,-0.23138657,-0.28587154,-0.071928084,0.15571845,0.42014134,-0.05255979,-0.36748397,-0.14844249,0.022432012,0.21609217,0.15601234,0.1374452,-0.38278893,-0.10259365,0.09377084,-0.17703564,0.34630516,0.5432007,-0.28921926,-0.11883723,0.30603582,0.59142107,0.245034,-0.19415747,-0.14202738,-0.110766865,-0.51791596,-0.19859843,0.0520715,-0.27180564,0.60554236,-0.2252023,0.23310392,0.6609244,-0.080559984,-0.11082033,0.022976499,0.03607942,-0.1178181,-0.1990046,-0.12887916,0.16988936,-0.49232006,0.09014026,-0.1091098,0.75131094,0.13940585,-0.619661,0.19557634,-0.5455241,0.15753233,-0.016299518,0.4129727,0.6850104,0.5048944,0.21845385,0.6754938,-0.36893606,0.092702724,-0.059605733,-0.42031306,0.027477909,-0.2230806,-0.07632838,-0.6181169,-0.0045621274,-0.24601297,0.0642831,-0.032763507,0.5009018,-0.53682446,-0.11739376,0.06702504,0.81155324,-0.2941447,-0.035550874,0.6791706,0.8862041,0.96365243,0.04529369,1.0891742,0.20958701,-0.29116097,0.09191421,-0.15757328,-0.5334169,0.3759012,0.37447718,-0.03742246,0.14454725,0.022061951,0.08205789,0.4629951,-0.4660792,-0.045932673,-0.24005772,-0.054731622,0.11269383,-0.0950674,-0.43939856,-0.2863617,0.12859625,0.16398406,0.15905231,0.212034,-0.176273,0.49327126,0.23951003,1.5837617,-0.115931265,-0.021881377,0.14812535,0.25443166,0.19749963,-0.14307642,-0.043921556,0.3704277,0.4284556,0.124675386,-0.51894575,0.08929976,-0.27168787,-0.3806136,-0.18221422,-0.28426227,-0.15046415,0.11505049,-0.4963499,-0.18789458,-0.07483339,-0.28424478,0.37749383,-2.4825358,-0.1980811,-0.14580518,0.2926217,-0.21185361,-0.34600747,-0.0137704825,-0.5785228,0.31419253,0.30736163,0.3937756,-0.6629387,0.39200196,0.32618165,-0.64063597,-0.07039616,-0.56401914,-0.19529976,-0.027792852,0.42745212,0.073642105,-0.06735709,0.12693559,0.15384407,0.56446993,-0.09523867,0.10953885,0.4035327,0.43114972,-0.042142063,0.67469305,0.0016474864,0.58258194,-0.2733943,-0.18208002,0.43177256,-0.23982508,0.18164806,-0.09238567,0.14077498,0.5553805,-0.41662636,-0.7917117,-0.7547205,-0.16375701,1.2136562,-0.34062874,-0.4911096,0.27738336,-0.25323418,-0.25486034,0.00053487107,0.42825833,-0.08759057,0.0892176,-0.73456055,0.07579522,0.019897258,0.12278686,-0.06501098,-0.23633432,-0.44901434,0.850123,-0.069813296,0.4778953,0.31231117,0.18145242,-0.23211499,-0.5017984,0.08117761,0.8216889,0.48437595,0.042035,-0.27217236,-0.106719226,-0.3988256,-0.04959669,0.06303328,0.5284824,0.551958,-0.016870832,0.13909666,0.17864785,-0.016667321,0.057846792,-0.2878376,-0.2822064,-0.07948586,-0.13480723,0.55991215,0.52296734,0.010285179,0.43747845,-0.046397552,0.36134842,-0.105519526,-0.5781068,0.5203756,1.163941,-0.31076044,-0.32713172,0.40155298,0.3501656,-0.10142489,0.30780274,-0.56800795,-0.39739126,0.46387473,-0.19139859,-0.5054603,0.1376415,-0.25406107,0.15484998,-0.65780413,0.2388403,-0.16686596,-0.6132312,-0.59103405,-0.015613914,-2.618363,0.38196728,-0.28171706,-0.14879587,-0.27473024,-0.16369757,0.20415077,-0.43907714,-0.41536286,0.121916085,0.10547449,0.57459337,0.0040394417,0.09362882,-0.2507271,-0.22244097,-0.21851435,0.14629921,0.1417814,0.2892748,-0.15538353,-0.4770467,-0.030531565,-0.17608525,-0.45617104,0.122057706,-0.5933149,-0.4638554,-0.20812918,-0.29377383,-0.36030617,0.6431498,-0.3355685,0.09037874,-0.18767326,0.08472754,-0.06804906,0.15092103,0.032126665,0.12291039,0.03420359,-0.11086586,0.06835878,-0.3147095,0.24242058,0.07685274,0.18565477,0.22939374,0.0014640794,0.24064125,0.39038175,0.669186,-0.20855945,0.8898593,0.40895367,-0.022656789,0.23849061,0.0014334865,-0.31466457,-0.47804478,-0.1598322,0.17693797,-0.4778808,-0.37982392,-0.0045533846,-0.33525327,-0.64299005,0.47161236,0.0063450616,0.107324064,0.08658267,0.27231425,0.65518135,-0.36067355,-0.02890056,-0.05483272,-0.25032422,-0.54843646,-0.40890923,-0.66226006,-0.56220794,-0.041718878,1.0362958,-0.124124244,0.009864751,-0.09632212,-0.41621494,0.1186669,0.14626573,-0.059898887,0.1543822,0.46605104,-0.37966758,-0.6626912,0.53465796,-0.17702618,-0.15378545,-0.46670833,0.36055273,0.53733355,-0.4697307,0.37103873,0.33902308,0.039085872,-0.13136266,-0.45671934,-0.046575144,-0.11330163,-0.41373324,0.4336121,0.22091453,-0.68615997,0.4201279,0.14154473,-0.23235506,-0.7518496,0.45517564,-0.051991668,-0.2078114,0.06373639,0.34053254,0.102888905,0.009058364,-0.22853692,0.083572395,-0.46864423,0.29120955,0.22332497,-0.016565211,0.03726612,-0.2491993,-0.07850542,-0.762863,-0.042663552,-0.51625186,-0.2333469,0.2833715,0.11894145,0.18068157,0.15561472,0.10836558,0.39644387,-0.25721416,0.1192495,-0.10613086,-0.35016975,0.3929536,0.4469218,0.39430454,-0.40729463,0.62032557,0.0069580884,-0.16114286,-0.11448521,0.10618294,0.4325308,0.15273571,0.566653,-0.10944089,-0.16396742,0.33272237,0.72504807,0.24160983,0.456304,-0.029231261,-0.22024202,0.20223878,0.040100034,0.2293569,0.061372798,-0.6833876,0.037448674,-0.31754005,0.15502983,0.5512435,0.014491947,0.34024185,-0.075605296,-0.3451854,0.077381685,0.081993945,0.007827661,-1.2584392,0.27893564,0.2789406,0.9850306,0.33420476,-0.0710575,-0.071988575,0.67612857,-0.2161557,0.12997907,0.37593034,0.058791835,-0.3938042,0.4613928,-0.88495857,0.32565767,-0.13840127,-0.049393877,0.18373555,-0.0794754,0.35333234,0.82676625,-0.22808504,-0.01840937,-0.011549483,-0.3660257,0.30313376,-0.40847346,-0.014169665,-0.55022466,-0.45911705,0.5917398,0.5332233,0.3783074,-0.2701212,-0.025206698,0.042493347,-0.29556218,0.16564083,0.1548065,0.057649445,-0.13002479,-0.6600508,-0.100252464,0.38154423,-0.11325857,0.20652068,0.06807203,-0.05554557,0.15651251,-0.10561442,-0.006643085,-0.09870675,-0.67078537,-0.08005247,-0.28752196,-0.37321803,0.48800874,-0.1861383,0.14870773,0.25891447,0.07244025,-0.19772467,0.33313704,0.028238507,0.8264308,0.2508187,-0.063913696,-0.33727875,0.19175293,0.13191625,-0.21107608,-0.036088523,-0.28834558,-0.02081654,-0.54765767,0.39410916,-0.041887697,-0.3261172,0.13908708,-0.20577759,0.02602597,0.5462966,-0.08289389,-0.1237524,-0.101665616,0.1515426,-0.1366055,-0.22056001,-0.04140006,0.19711864,0.15398893,0.1519829,-0.10067034,-0.024199745,-0.2231038,0.42066544,0.04837872,0.44719034,0.38937074,-0.17898795,-0.32193998,-0.13345063,0.08851056,0.4714344,0.06821024,-0.1420807,-0.29474628,-0.45427394,-0.3461485,0.20626704,0.08931467,0.31220776,0.100829996,-0.1198665,0.77250093,-0.10880824,1.2134569,-0.021458037,-0.3274693,0.04608492,0.4564154,0.1434157,0.05657905,-0.3645843,0.6797279,0.39176413,-0.003673322,-0.1530489,-0.32853332,0.068508595,0.17834796,-0.11024614,-0.085930735,-0.06021137,-0.6271931,-0.3158404,0.19825335,0.2744836,0.24260625,-0.07190124,-0.01891003,0.40648124,-0.07214431,0.4169232,-0.42041454,-0.27650663,0.32009628,0.078518994,-0.1175519,0.1290759,-0.50484496,0.42856956,-0.45553732,-0.08358943,-0.29453874,0.10687768,-0.18396549,-0.2598697,0.3356949,0.011719002,0.40484804,-0.41253904,-0.22948326,-0.266443,0.5399789,0.24611795,0.20607425,0.5105691,-0.24131186,-0.05821434,0.080239184,0.45739326,0.93512744,-0.34914094,0.049264178,0.33422107,-0.45069516,-0.4922032,0.4337721,-0.25764504,0.071219206,0.15101063,-0.2413212,-0.31784552,0.35059014,0.24145225,0.02385176,0.053435177,-0.73151696,-0.08366235,0.5103437,-0.39650142,-0.15136904,-0.22479726,0.20644277,0.30537683,-0.3184487,-0.3697558,-0.048404194,0.26676154,-0.23331083,-0.51382536,-0.07814933,-0.34871554,0.25983062,-0.020900892,-0.27208203,-0.055889018,0.049219977,-0.46021965,0.20280018,-0.00094492995,-0.36238593,0.06063593,-0.1943345,-0.071788505,0.8236433,-0.20938133,-0.018123893,-0.4842232,-0.36455512,-0.73408824,-0.4004791,0.27898204,0.13023642,0.06344488,-0.6065912,-0.16745818,-0.17165983,-0.106663294,-0.06485026,-0.22826211,0.4298362,0.14943463,0.46884385,-0.0518118,-0.79008913,0.36228493,-0.011644781,-0.07216482,-0.51820487,0.51809543,-0.0728359,0.70607233,-0.0070755463,0.22243899,0.17298312,-0.45304725,-0.104519844,-0.23460996,-0.18912959,-0.70022684,-0.0013838691,32 -1,0.39858034,-0.17778991,-0.47388962,-0.13176416,-0.34211794,0.22410974,-0.2247194,0.27355933,0.15601909,-0.37778014,-0.1391723,-0.16187513,-0.071918815,0.17106494,-0.23323584,-0.57132107,0.06522264,0.14005528,-0.44080678,0.6353121,-0.26153582,0.43425378,0.045950413,0.17809375,0.12800068,0.28622672,0.27007568,-0.0966509,-0.15121417,-0.16526105,-0.31818122,0.3056635,-0.21366265,0.16747236,0.005839162,-0.23900896,0.07378386,-0.14746907,-0.33195692,-0.7306182,0.29499954,-0.7393907,0.3643805,-0.09167168,-0.29682687,0.28035673,0.18873397,0.2929721,-0.06866115,-0.0035958746,0.15363434,-0.16466719,-0.018987374,-0.29615107,-0.26572138,-0.5805165,-0.55788684,-0.1037572,-0.4773219,-0.41548806,-0.36699864,0.26401323,-0.3504908,-0.12211038,-0.067925565,0.43967718,-0.56169915,0.23034224,0.16713986,-0.1718854,0.42129457,-0.6154344,-0.04695615,-0.09033326,0.18842402,-0.13309939,-0.063313186,0.309307,0.34852004,0.38161355,0.0854847,-0.18686506,-0.40696064,-0.15085626,0.28245392,0.40418872,-0.08495045,-0.35463592,-0.017675316,-0.002267813,0.15012445,0.1567903,0.17312033,-0.24272543,-0.13883018,0.0753063,-0.1654741,0.19635779,0.3390968,-0.37911993,-0.24476632,0.27776486,0.5998983,-0.027108984,-0.29549497,0.055190545,0.025561221,-0.33242837,-0.1733963,0.050387423,-0.11936628,0.5112799,-0.23586433,0.20992397,0.7580711,-0.12459163,-0.11023608,-0.12328629,-0.03279481,-0.18040934,-0.052437693,-0.18947834,0.1301053,-0.41577962,0.034325723,-0.12663841,0.714905,0.13319097,-0.6003845,0.31852233,-0.4616595,0.120271854,-0.1097933,0.36886686,0.53219587,0.46743593,0.2748468,0.63213646,-0.4933234,-0.027132925,-0.0667507,-0.41997227,0.047112938,-0.18164246,-0.08624848,-0.5026444,0.08715916,-0.11341251,-0.08893493,-0.029243812,0.5429494,-0.48505032,-0.052688267,0.02230002,0.8199784,-0.39668116,-0.07647532,0.49416283,0.8677535,0.93929285,0.02279151,1.0003827,0.30496675,-0.28878304,0.105021164,-0.3746004,-0.3622874,0.34309933,0.5435274,-0.1201784,0.28251025,-0.06992591,0.10781512,0.47810286,-0.24524587,0.1456292,-0.20791015,0.08458314,0.1715356,-0.1582714,-0.42282003,-0.11868224,0.11168514,0.1837021,0.14881404,0.15926015,-0.09290444,0.36148402,0.15802853,1.7646927,-0.07580525,0.019594569,0.17718494,0.305298,0.1909102,-0.0738221,0.054981653,0.32427305,0.25737473,0.21007456,-0.47263482,0.12180759,-0.23873602,-0.5945671,-0.2525528,-0.2935137,-0.14583625,0.014796128,-0.46298173,-0.16333482,-0.055483826,-0.32559735,0.3964885,-2.5260127,-0.12984307,-0.26330444,0.21220565,-0.24801858,-0.35551733,0.06668561,-0.43699968,0.36008817,0.36940184,0.37392735,-0.60913223,0.40797952,0.4404813,-0.4137224,-0.10140216,-0.3993612,-0.16075659,-0.18763787,0.41947812,0.16081181,-0.16418462,0.0039889463,0.29962674,0.4254032,-0.260946,0.12981577,0.2881787,0.3113656,0.021663602,0.56522685,0.12923704,0.51391363,0.021360086,-0.18768108,0.47300327,-0.17454082,0.13349593,0.056099046,0.10555942,0.3599375,-0.2657162,-0.8706271,-0.705112,-0.18638252,1.1759546,-0.15236293,-0.46789172,0.220151,-0.1681385,-0.21504425,-0.06569995,0.2751885,-0.07037407,0.09951281,-0.8390217,0.16034153,0.007171589,0.10584555,0.099234596,-0.26945934,-0.5047391,0.82150537,-0.075950325,0.6079944,0.3337602,0.20632935,-0.23205787,-0.4249171,-0.017259967,0.8244719,0.4658584,0.062389873,-0.21906886,-0.27180743,-0.2663968,-0.0897394,0.050040275,0.46373165,0.61228967,0.029360984,0.12345387,0.2368,-0.10390902,0.021090087,-0.20456976,-0.29750612,0.124052666,0.016078662,0.5170376,0.44925752,-0.12488629,0.4551257,-0.025506284,0.4943455,-0.13138978,-0.50508356,0.33894417,1.1812781,-0.21072032,-0.4089683,0.4766724,0.397312,-0.20944369,0.28231063,-0.66472715,-0.26343045,0.42467892,-0.25982925,-0.42573097,0.22332299,-0.38687956,0.15679033,-0.7734259,0.33634293,-0.34172446,-0.51293206,-0.56249356,-0.17173363,-3.44746,0.23701134,-0.26457423,-0.22464363,0.021730136,-0.007379383,0.26767516,-0.71850204,-0.47753912,0.09317313,0.05273327,0.5397326,0.051002223,0.0895095,-0.23556687,-0.121760435,-0.0844634,0.27203268,-0.03554221,0.25054932,-0.10870367,-0.52938473,-0.027071834,-0.08836457,-0.5016131,0.02582258,-0.53027797,-0.5769221,-0.16580994,-0.36383462,-0.2696199,0.60754216,-0.26798147,0.07578087,-0.32947215,-0.037203427,-0.097029015,0.18926597,0.11426391,0.14298354,0.068290375,-0.038628306,0.10357966,-0.283416,0.26898885,0.016052973,0.2863323,0.20782791,-0.118826024,0.16167408,0.4621022,0.5037906,-0.06431267,0.7358309,0.51372075,-0.14552808,0.1954383,-0.21646515,-0.2985792,-0.6102758,-0.40962586,0.00022401047,-0.36946157,-0.46939325,-0.19653346,-0.31250596,-0.6801512,0.5022599,0.032852966,0.14715016,0.005460974,0.23295355,0.50958425,-0.19198151,-0.07758334,-0.04423836,-0.25763348,-0.48856613,-0.2893555,-0.64236045,-0.5702917,0.0790158,1.0189475,-0.14036258,-0.049199082,0.075195424,-0.14955428,-0.024712162,0.14895649,0.059012875,0.24386126,0.44541314,-0.21513684,-0.6726345,0.46370354,-0.121507674,-0.063975,-0.46431747,0.12920006,0.5072233,-0.41100958,0.5162988,0.35122132,0.008454975,-0.11800892,-0.46799803,-0.10957379,-0.017944444,-0.3817142,0.49466205,0.23957977,-0.5378872,0.3311776,0.23111857,-0.24512707,-0.6371197,0.49219316,-0.11505799,-0.42181402,-0.017031193,0.35405052,0.045448247,-0.049969327,-0.18532303,0.17045115,-0.32823876,0.29120505,0.27277502,-0.07141068,0.14097609,-0.22891814,0.04287674,-0.8350366,-0.045778226,-0.40711498,-0.271013,0.1316341,0.08951957,0.053113393,0.2695498,-0.10216082,0.3870993,-0.18352082,0.07129151,-0.07110296,-0.2927254,0.27184883,0.37228122,0.312707,-0.33829555,0.48372582,-0.013888808,-0.09045008,-0.10915192,0.1145547,0.5404706,0.076651745,0.44805485,-0.06267082,-0.22337958,0.48233065,0.77042896,0.2842874,0.58522826,0.066316985,-0.25883806,0.13012888,0.08742535,0.19284943,-0.014196122,-0.459024,0.026898839,-0.2097205,0.20991907,0.52398765,0.11019574,0.3722468,-0.027113609,-0.3877519,0.15708724,0.17977011,0.0049755014,-1.1591766,0.2921743,0.36587092,0.8879373,0.40881392,0.09926065,0.0214138,0.6562905,-0.2928707,-0.009844524,0.34152964,-0.041862283,-0.5483127,0.5214478,-0.89956284,0.27887616,-0.046878807,-0.09500257,-0.09252893,-0.03649935,0.27042997,0.79065806,-0.15885393,-0.011491646,-0.04903948,-0.28699645,0.13664232,-0.326384,0.11236087,-0.39230704,-0.3511886,0.52167827,0.58299726,0.3363065,-0.047161564,0.07239907,0.101359956,-0.101556875,0.21564783,0.13152094,0.21814585,-0.1343824,-0.6237518,-0.23771505,0.37422007,0.11108609,0.16140768,0.060065564,-0.24425854,0.1973027,-0.11425411,-0.025376363,0.031901646,-0.46934447,-0.02969886,-0.13722563,-0.42338046,0.64519244,-0.07137137,0.14520667,0.15288638,0.074813016,-0.1875616,0.29018995,0.14983933,0.5762281,0.19477318,0.06094349,-0.262321,0.026286466,0.006219522,-0.13533337,-0.061308175,-0.12625688,0.13913643,-0.63483685,0.3384107,-0.033202928,-0.4125885,0.21239215,-0.2530692,-0.0981423,0.4406575,-0.21857893,-0.18933597,-0.0031482542,-0.008043864,-0.22937669,-0.20510662,-0.039108813,0.23213173,0.018657213,0.013922713,-0.15475374,-0.07494262,-0.15552686,0.36990333,1.1217945e-05,0.39458016,0.43816373,-0.0916542,-0.37872672,-0.14723381,0.2024771,0.43529344,-0.09525291,0.004323567,-0.18573578,-0.55676574,-0.36909455,0.10390353,-0.037064582,0.28520456,0.12644133,-0.3316615,0.7894313,-0.14619137,1.2284646,0.03944071,-0.34798437,0.06785232,0.425645,0.05155242,0.07296468,-0.234349,0.7721967,0.5657213,-0.031716827,-0.17342778,-0.28693324,0.030732043,0.12423692,-0.16460106,-0.05662158,-0.011470507,-0.72615755,-0.39100412,0.22422972,0.15714781,0.15825379,0.032905765,0.011666715,0.26770946,-0.059696633,0.2702315,-0.3585053,-0.22129264,0.31930155,0.19854507,-0.042404268,0.11914291,-0.48467126,0.41782397,-0.370463,0.12914939,-0.31030056,0.16487165,-0.19945422,-0.16945702,0.2481014,-0.093736045,0.32296053,-0.29172152,-0.24950634,-0.14009489,0.5887504,0.06865235,0.082245216,0.60276186,-0.27893698,0.11236871,0.09656142,0.43416783,0.96752864,-0.41514847,0.009547808,0.41537398,-0.44310984,-0.5516604,0.30815795,-0.2537546,0.04756307,0.1707411,-0.37861496,-0.3621975,0.34428573,0.19990487,-0.028851839,0.08324205,-0.5010321,-0.1504153,0.38365677,-0.435833,-0.12751472,-0.15763548,0.25423583,0.4172353,-0.3493586,-0.29043055,0.023161607,0.23234315,-0.31050918,-0.43740067,-0.084642455,-0.20526218,0.43716145,0.11682649,-0.3821781,-0.045105353,0.097303875,-0.3458421,0.15598549,0.32077232,-0.38071486,0.055439204,-0.37812346,-0.0031121373,0.79351413,-0.22247025,-0.106473625,-0.5455829,-0.28292784,-0.88080376,-0.4341625,0.40129054,0.05652838,-0.11343006,-0.5861832,-0.069488555,-0.15567474,-0.036039114,-0.011893917,-0.30288523,0.46699652,0.24441446,0.46617442,-0.08620751,-0.76455945,0.08770602,-0.003756453,-0.119695015,-0.6641597,0.5788864,-0.25878513,0.617492,0.01990028,0.14607541,0.31122628,-0.5039744,0.030342389,-0.21845776,-0.27511483,-0.69568175,-0.11261614,51 -2,0.29438928,-0.13192235,-0.34572384,-0.13058536,-0.2870268,0.16073653,-0.11946653,0.20312464,0.12354601,-0.3665718,-0.153274,-0.0825751,0.05930397,0.40316525,-0.10146939,-0.6818228,-0.094573215,0.12654473,-0.68720394,0.36036608,-0.6165807,0.3953448,0.0804916,0.15629417,0.07061991,0.5373673,0.3353832,-0.2659717,-0.27141643,0.061351776,-0.22273675,0.15504663,-0.32623982,0.09818575,-0.10212744,-0.19812927,0.12588799,-0.37713864,-0.21206045,-0.5624863,0.15902176,-0.80193657,0.31873816,-0.11382101,-0.004024986,0.02450556,0.12893829,0.23795195,-0.38721395,0.16249695,0.26541188,-0.17342603,-0.038873084,-0.35444215,-0.14572807,-0.34727025,-0.31688106,-0.0019492998,-0.5135283,-0.47802684,-0.098281145,0.191491,-0.24753848,0.023839371,-0.05997948,0.23345612,-0.4457247,-0.015869308,0.27897903,-0.21476926,-0.012665798,-0.46907946,0.086205274,-0.031441327,0.5087245,-0.060320225,-0.051617216,0.4635252,0.33949247,0.32178378,0.27572417,-0.1573254,-0.2165319,-0.29499975,0.2304046,0.4074298,-0.16350645,-0.311471,-0.14706618,0.12392271,0.09929738,0.1947277,-0.037636954,-0.2969022,-0.10295895,-0.1075978,-0.17021015,0.26151684,0.4411795,-0.26664186,-0.22751962,0.3749862,0.60249394,0.09355628,-0.17967893,-0.16716778,-0.031743128,-0.392475,-0.14422593,0.21963748,0.07283538,0.36344004,-0.06896051,0.15697682,0.91421497,-0.19409204,0.17261885,-0.26291847,-0.08395982,-0.10254728,-0.1667978,-0.10836956,-0.02830384,-0.41168743,-0.028165141,-0.1700997,0.779672,0.2744276,-0.6545471,0.42360306,-0.40170333,0.12143213,-0.064854056,0.5741782,0.40189525,0.3481861,0.20222707,0.7258554,-0.4478408,0.3075149,-0.15992706,-0.43992862,-0.085242815,-0.12908237,0.037880685,-0.40088353,0.17621644,-0.14607626,0.04817114,0.042876102,0.1942011,-0.4571923,0.10449707,0.0663106,0.84914654,-0.49297905,0.023204109,0.52073884,1.0299524,0.8256161,-0.00303138,1.2132286,0.36674365,-0.2797578,0.11185736,-0.45759502,-0.5712748,0.14853431,0.31408167,0.15156773,0.19615982,-0.0053439606,0.046506103,0.25264707,-0.3809784,0.102496244,-0.12807858,0.23957185,0.10968208,0.16796805,-0.42133224,-0.15591161,-0.033905435,-0.061712068,0.19946876,0.16544348,-0.24179304,0.34939858,-0.042678863,1.6881156,-0.0814744,0.1622047,0.07264803,0.5263898,0.107183516,-0.089724384,-0.05129892,0.42775014,0.33248156,-0.19018456,-0.67948854,0.14313976,-0.32194352,-0.4755432,-0.091034666,-0.3806989,-0.109860644,0.1655914,-0.30494866,-0.1827498,0.008007728,-0.3659761,0.44377455,-2.7196448,-0.16326037,-0.088038735,0.31324783,-0.35619876,-0.21918172,-0.21204697,-0.4479452,0.21515457,0.24042337,0.36398667,-0.5699603,0.36043197,0.35452113,-0.352148,-0.30301672,-0.6212307,0.060341746,-0.056621194,0.4454427,-0.12241551,-0.029205013,-0.21382928,-0.0050190687,0.50789744,-0.066953406,0.092273995,0.48266372,0.29785883,0.4049705,0.43718314,0.04677342,0.56321985,-0.20306946,-0.14554396,0.34662515,-0.34748006,0.31562167,-0.16420437,0.104871556,0.33953437,-0.44200814,-0.6543084,-0.60229987,-0.42049336,1.0967374,-0.31370476,-0.27615827,0.19186032,-0.0041966983,-0.08478268,-0.030801913,0.44735864,-0.12725334,0.022514356,-0.5943424,0.18137819,0.00026043417,0.23110163,0.084240824,0.016776022,-0.25999293,0.58607143,-0.09179619,0.5234377,0.2695759,0.22729743,-0.01623444,-0.25194594,0.07814005,0.878357,0.19085579,-0.0041206935,-0.11657635,-0.32557583,-0.11980783,-0.3590787,0.029965302,0.32901573,0.77961224,0.09566375,0.0042903386,0.1639256,-0.11065712,0.015065705,-0.11240271,-0.2075793,0.03674258,0.017285144,0.38143355,0.4714691,-0.089403756,0.40406564,-0.23432069,0.3307984,-0.13183829,-0.3682333,0.5542829,0.4500728,-0.087449744,0.011797351,0.28009897,0.45303452,-0.3939922,0.38662377,-0.5265491,-0.17234407,0.706962,-0.35724658,-0.28948736,0.13436289,-0.22687696,0.12739575,-0.73500293,0.26490575,-0.1789397,-0.31789508,-0.41344324,-0.1201748,-2.8330173,0.06900329,-0.12868018,-0.225145,-0.097428754,0.0624352,0.19990605,-0.63962364,-0.39289582,0.14941399,0.11265262,0.4717681,0.07857951,0.14192663,-0.31258428,-0.042231414,-0.08366578,0.14523266,-0.016146258,0.33567098,-0.09740781,-0.3400661,0.022256501,-0.2230812,-0.41795138,0.23054047,-0.43519557,-0.30588126,-0.10676465,-0.45639372,-0.21534412,0.60806495,-0.50783974,-0.011275176,-0.16823785,0.06676264,-0.2786834,0.16913882,0.31482664,0.07477697,0.20909941,-0.022726193,0.06472812,-0.4128939,0.5220769,0.049381875,0.37834728,0.2564787,0.049270377,0.0025484036,0.3534914,0.5587705,-0.13051236,0.9554045,0.25551033,-0.17046915,0.2751572,-0.39999893,-0.14002846,-0.54454947,-0.43776175,-0.0047996463,-0.2449255,-0.534882,-0.06155475,-0.37109527,-0.7281175,0.41727772,0.008446423,0.24593942,0.0088839745,0.22222878,0.39707336,-0.18334894,0.0509705,-0.040026143,-0.06115482,-0.567979,-0.41776413,-0.61485624,-0.50272065,0.17829779,0.89336205,-0.3305245,-0.13889277,-0.25506347,-0.3535305,-0.07300193,-0.07157804,0.06757665,0.31191325,0.27323562,-0.13015105,-0.6285791,0.46951783,-0.06437799,-0.15302831,-0.4491505,0.0074604116,0.5526474,-0.6921154,0.47142416,0.3310368,0.140518,0.15608613,-0.40172508,-0.26414904,-0.036717385,-0.17873368,0.29680884,0.048206598,-0.6119896,0.4490851,0.25417736,-0.3655592,-0.7476489,0.17941748,0.060425416,-0.2743026,0.07647066,0.31472674,0.09505536,-0.18571985,-0.19059142,0.12020972,-0.38163337,0.27990016,0.3797132,0.008666025,0.24899194,-0.21644762,-0.3811166,-0.62131053,0.018003747,-0.39423734,-0.11973371,0.24982062,0.03488443,0.11621469,0.110138744,0.045842744,0.37530288,-0.295514,0.026630871,0.055447906,-0.13307743,0.14745295,0.23927599,0.27499536,-0.32066855,0.53463125,0.0007238002,-0.1273333,0.024696715,0.03261164,0.445549,0.13454024,0.15983991,-0.14303818,-0.2977981,0.4299879,0.7448479,0.18715797,0.26922452,-0.020545308,-0.32762572,0.4982301,0.056340076,0.06274554,0.19700325,-0.34502384,-0.062103488,0.10506489,0.1770562,0.33299547,0.3969068,0.49229965,-0.017569328,-0.20257756,0.13715613,0.11150163,-0.05297208,-0.82946914,0.32385132,0.10350682,0.68407583,0.35357922,0.12164065,-0.1453833,0.59574664,-0.33193877,0.16181938,0.3709967,-0.15891609,-0.51414376,0.60030866,-0.55102897,0.39507046,-0.112686805,-0.10838324,0.12950459,0.065049395,0.24072088,0.68727785,-0.07439315,-0.019489177,0.010440637,-0.19216368,-0.091536075,-0.2713222,-0.034193095,-0.40017515,-0.3261041,0.5585597,0.21875836,0.27881208,-0.11150211,-0.056431476,0.011149233,-0.08328908,0.21232283,0.0039375494,0.012348358,0.14417927,-0.43197975,-0.4245623,0.47027078,-0.08008991,0.13966675,-0.12722,-0.26163793,0.16897519,-0.27760112,-0.052967694,0.0024276883,-0.51414376,0.10137555,-0.20504497,-0.4544515,0.24401799,-0.08771617,0.2437865,0.17845362,-0.008617024,-0.19134887,0.47615364,0.25085112,0.8749938,-0.017266238,-0.24719918,-0.32652506,0.009514048,0.33919567,-0.18372625,0.21305934,-0.31576896,-0.016959751,-0.59613675,0.5976996,-0.18850678,-0.14508143,0.21621412,-0.3564693,-0.08827233,0.57529765,-0.083300345,-0.12852012,0.064052515,-0.06498248,-0.4530571,0.10149787,-0.33655947,0.12708595,0.33939078,-0.01696558,-0.15076236,-0.29980436,-0.2268335,0.46120307,0.124891296,0.43187442,0.120773904,-0.034980915,-0.13023652,-0.022496255,0.0815756,0.3001165,0.15389152,0.027734363,-0.30064845,-0.36081922,-0.30178204,0.23156825,-0.1532438,0.101503275,0.17239608,-0.39374897,0.6570044,-0.059274428,1.118535,0.20264755,-0.32464862,0.07888122,0.48996517,-0.011813474,0.2024307,-0.43250144,0.79878974,0.56524515,-0.0014985309,-0.08568484,-0.37928092,-0.20319949,0.3219462,-0.3340934,-0.026606567,-0.03475168,-0.5506127,-0.47847018,0.35953915,0.023590207,0.090024054,0.040628433,-0.090277225,-0.09075205,0.1807037,0.4388348,-0.58865947,-0.17781058,0.28128132,0.10101413,0.09516031,0.21227011,-0.42124134,0.59381694,-0.5550809,0.1664107,-0.29349172,0.09477687,-0.20328118,-0.2662032,0.15879834,0.07882528,0.3488365,-0.3789285,-0.49795094,-0.08527499,0.44595048,-0.09718412,0.27124718,0.53650236,-0.2759946,0.020865174,0.10600347,0.5538675,1.1130284,-0.28720334,0.121406615,0.43068096,-0.32953334,-0.51917815,0.3229027,-0.32856986,-0.14795166,-0.11715059,-0.31668258,-0.33411577,0.36747497,0.31134915,0.01139401,0.040373687,-0.45976162,-0.099240325,0.40857947,-0.3058383,-0.2977424,-0.14324023,0.33877918,0.64578825,-0.38148612,-0.30338064,0.0865311,0.29964373,-0.34899196,-0.40314108,-0.19260824,-0.1823464,0.35458907,0.24815801,-0.11984498,-0.06951576,0.13542488,-0.2623763,0.08772304,0.21515845,-0.4322219,0.07786342,-0.102226384,0.049242944,0.7284679,-0.023632785,-0.16294813,-0.7180526,-0.29780635,-0.9095912,-0.5959779,0.36722082,0.1095006,-0.013794597,-0.2803202,-0.01732599,-0.08744334,-0.0895243,0.0945441,-0.60309726,0.38873872,0.19139756,0.42605272,-0.32172605,-0.8216897,-0.05782602,0.1151787,-0.19816543,-0.5595347,0.561166,-0.12439067,0.8844803,0.0062839617,-0.2212918,0.16553392,-0.3198486,0.17310426,-0.4517521,-0.21418566,-0.8222533,0.12881206,105 -3,0.58813125,0.16504858,-0.635396,-0.14746986,-0.29855353,0.27378997,-0.2842547,-0.075352274,0.20709288,-0.63181114,-0.034740064,0.050308775,-0.24977434,-0.013324849,-0.24524117,-0.4388527,-0.031360935,0.122434616,-0.5735782,0.56068707,-0.32187793,0.512047,-0.04283005,0.15020104,-0.0067106434,0.19831102,0.073150724,-0.11751665,-0.4313171,-0.22241975,-0.003321234,0.20874114,-0.5176365,0.30582595,-0.17132041,-0.25669283,-0.092452765,-0.4122793,-0.24580635,-0.60969317,0.2071069,-0.53522587,0.61185557,0.0043243207,-0.29509813,0.16439374,0.2351629,0.11574087,0.13811386,-0.035834704,0.2799911,-0.16696577,-0.15990399,-0.14955738,-0.4925131,-0.3888784,-0.50636697,0.05258099,-0.5201635,0.043689094,-0.17871071,0.34398624,-0.16013025,-0.13434155,-0.18320908,0.44652092,-0.16567393,0.12363869,0.13678797,0.014147934,0.13337721,-0.71434623,-0.18561378,0.007517103,0.2716379,-0.17003375,-0.034775477,0.23039736,0.22395454,0.54972315,-0.039003316,-0.19173229,-0.5344315,0.052268352,0.23058449,0.39582807,-0.35290763,0.003159502,-0.07362174,-0.07620481,0.4734019,0.18861552,0.16050877,-0.39839146,-0.028672531,-0.14035477,-0.0471628,0.33341295,0.48263907,-0.23774096,0.007839837,0.53007555,0.48973534,0.13893515,-0.14415042,-0.009677791,-0.20419675,-0.32189155,-0.1279883,0.22050405,-0.055564977,0.34067664,0.034741625,0.27844176,0.31663346,0.121887065,0.007839171,0.20633164,0.08580038,0.11425505,0.0010267005,-0.061569776,0.08632499,-0.44591257,-0.116969995,-0.19590235,0.51221955,-0.051785145,-0.99811554,0.2969103,-0.4225338,0.017908748,0.14596187,0.48635635,0.7249353,0.63655996,0.011382854,0.81268543,-0.5600379,0.026232032,0.07834455,-0.28161216,0.10496254,0.0052757403,0.08378201,-0.64608216,-0.10772937,-0.051571615,-0.039673116,0.1014766,0.40826377,-0.59498525,-0.1667785,0.0036854954,0.6396814,-0.22401765,-0.07194094,0.7137343,1.1017185,0.9464049,0.159204,1.1052306,0.1754006,-0.07126503,-0.20262133,-0.52948666,-0.60858023,0.2660997,0.26919764,-0.5846019,0.41187644,0.0621185,0.06858238,0.31617063,-0.24787101,-0.25272766,-0.25106496,0.3353117,-0.12003851,-0.18109146,-0.39297417,-0.16141821,0.20985906,-0.15876482,0.23846976,0.24148235,-0.3231376,0.20772268,0.32911706,1.493064,-0.29119262,0.12251732,0.08917447,-0.027014276,0.16896486,-0.32123494,0.025660805,0.21057068,0.285434,-0.16705528,-0.25052217,-0.069658026,-0.18343349,-0.442733,-0.23790842,-0.06501115,-0.35527396,0.027817508,-0.21980003,-0.31011292,-0.12096137,-0.54193985,0.53039145,-2.6536884,0.009199902,-0.22721937,0.4138774,-0.27510914,-0.6006655,-0.16727433,-0.36608377,0.4869363,0.19845839,0.24296573,-0.38033327,0.3543934,0.4249232,-0.38462177,-0.1876454,-0.5634761,0.08023936,0.105588995,0.19219878,-0.07807207,-0.2937299,0.0682307,0.20626417,0.29610083,-0.16799742,0.11350939,0.44188493,0.46556455,-0.09144363,0.25988343,0.03814285,0.61111444,-0.21978985,-0.2135536,0.48043594,-0.5810997,0.2608707,0.05673546,0.15743819,0.44468543,-0.42265773,-0.48062858,-0.53127736,-0.17706329,1.1617597,-0.024773324,-0.46301556,0.07214318,-0.07448285,-0.5756012,0.036878012,0.4163637,-0.0835188,-0.014292564,-0.83939826,-0.08742418,-0.12584691,0.28285497,-0.16160484,0.1623573,-0.52058774,0.63586533,-0.14654274,0.48414534,0.44255662,0.31697667,-0.36978695,-0.28698155,-0.026410123,1.039865,0.48964667,0.16029543,-0.14821184,-0.145697,-0.24045874,-0.27038407,0.16646907,0.5266666,0.46448618,-0.044477668,-0.038819537,0.27140686,0.033283483,0.09638233,-0.20661134,-0.3840517,-0.17792499,-0.1028896,0.4555282,0.4662543,0.010521722,0.53581125,-0.094325975,0.050017174,-0.34137413,-0.4707868,0.49987108,0.7070116,-0.29750982,-0.39956972,0.5078931,0.3585484,-0.12763946,0.4406697,-0.5193117,-0.44345778,0.30506054,-0.10355951,-0.41285172,0.12237913,-0.3907117,0.22746551,-0.6009793,0.4392657,-0.39761052,-0.44992885,-0.57918775,-0.07161934,-1.3051664,0.19681847,-0.10102345,-0.07696574,0.0004374385,-0.07474121,0.2204777,-0.53734136,-0.6738763,0.014841147,0.020032808,0.42522988,-0.019242097,0.059401345,-0.07591381,-0.41206032,-0.27984762,0.276511,0.12795897,0.39308637,0.04586532,-0.23127958,-0.025677646,-0.15476418,-0.2543027,-0.1275913,-0.48861527,-0.5155913,-0.18553215,-0.37791732,-0.18328875,0.6732199,-0.70378464,-0.0024619172,-0.45418948,-0.06854579,0.14973536,0.2551952,0.024841793,0.2739778,0.098030545,-0.30676913,-0.10242729,-0.31768596,0.36228797,0.11618263,0.12144079,0.7458967,-0.2393163,0.31004107,0.36709282,0.8844003,-0.08421111,0.6907392,0.2879021,-0.11987926,0.24266484,-0.32091874,-0.23525293,-0.63090235,-0.2757342,0.09713278,-0.39982784,-0.3898482,-0.21691087,-0.43329033,-0.75051546,0.39849332,-0.022927957,0.20350097,-0.037470505,0.34028956,0.39198405,-0.13324903,-0.022917125,-0.025564022,-0.20795695,-0.26108146,-0.428575,-0.5536463,-0.43960223,0.1296173,1.2056874,-0.11285263,0.12529111,0.4064183,-0.063802786,0.09664692,-0.088794105,0.09789106,-0.086620554,0.26692495,0.10249069,-0.5277391,0.17220809,-0.053162433,-0.0033477405,-0.5173307,0.3652872,0.6246756,-0.385591,0.44279724,0.38117048,0.20934181,-0.08579695,-0.70071703,0.0061757704,0.14981192,-0.33673757,0.46820378,0.33283657,-0.5452739,0.41345042,0.4276992,-0.22660485,-0.7350229,0.33949184,0.13305044,-0.10389621,0.05515832,0.41979748,-0.030429833,-0.05749113,0.06440395,0.221021,-0.25751823,0.48320746,0.23545139,-0.07740327,0.1782275,-0.3419778,-0.491974,-0.68092626,0.18574049,-0.39453828,-0.47948804,0.16195484,0.0112872,0.121818066,0.12970613,0.2152537,0.47636077,-0.35604987,0.113935634,-0.083044074,-0.149393,0.29604018,0.39436498,0.5056936,-0.27415407,0.37099934,-0.03406578,-0.053930648,-0.21835677,0.09281495,0.5229857,0.1702457,0.24470119,0.10205156,-0.15596415,0.15846342,0.59940004,0.12947048,0.2039291,-0.031494338,-0.53151095,-0.037269346,-0.0067674397,0.16516072,-0.10489169,-0.43178532,-0.1643089,-0.05249039,0.12723179,0.36864877,-0.0044321944,0.27929312,-0.30485752,-0.20523258,0.08554704,0.14161971,-0.1325211,-1.2644608,0.3161595,0.011572979,0.77554023,0.41074193,0.22859305,0.013590851,0.47613615,-0.33153605,0.14929143,0.2754163,-0.25660124,-0.33391836,0.26026496,-0.58590454,0.24733734,-0.10426897,0.04369489,0.028623477,-0.08981201,0.21511364,0.94667727,-0.120639816,0.054621827,-0.17164329,-0.26619995,0.01880012,-0.09214099,0.23525473,-0.3810866,-0.39578927,0.72422737,0.2670755,0.590869,-0.20630552,0.016518028,0.10412805,-0.34204388,0.0799776,0.09735198,0.12699525,-0.024396785,-0.39333275,-0.09520024,0.407027,-0.01410497,-0.07465065,0.1765122,-0.219309,0.09768525,-0.1189601,0.119292416,-0.052787274,-0.62753385,-0.04214235,-0.34393385,-0.21349253,0.08773335,-0.105616204,0.10969307,0.16127951,0.113744244,-0.24670467,0.48572883,0.37140933,0.72595894,-0.010041156,-0.050994664,-0.23789972,0.33614537,0.1842011,-0.102000475,0.056953065,-0.12817526,0.29863617,-0.5750525,0.38268524,0.014096036,-0.359635,0.13733378,-0.09112417,0.10360537,0.4668127,-0.36112025,-0.26572582,0.124131985,0.11463219,-0.20548554,-0.033400368,-0.105938375,0.12017765,0.15812375,-0.095539466,-0.15920798,-0.116294354,-0.34280744,0.05434814,0.15091377,0.3789393,0.6251524,0.1328095,-0.69223034,0.04529503,0.17852159,0.3598983,0.068800956,-0.06120216,-0.37385035,-0.4094069,-0.3587338,0.69267553,-0.17913759,0.075488746,-0.033083837,-0.3069183,0.70287216,0.011888651,1.1493543,0.08272267,-0.15081678,-0.18608668,0.5426047,0.03735085,-0.011707008,-0.41236997,0.92706263,0.6393506,-0.048364725,0.072855875,-0.33022916,-0.11710048,0.15696844,-0.33777335,-0.06806164,0.03981856,-0.67139196,-0.34711435,0.07931553,0.09839195,-0.11688873,-0.088871405,-0.077664055,0.20956151,0.18327264,0.2620168,-0.44841307,-0.096604936,0.22652976,0.26974308,0.02826104,0.22939076,-0.5683561,0.24179256,-0.60143715,0.09457033,-0.14786142,0.09274408,0.03721038,-0.29354128,0.18731572,-0.03131911,0.2814424,-0.33538902,-0.40497422,-0.090263166,0.31911463,0.14869533,0.1285881,0.6762113,-0.15682404,0.2524926,0.12101269,0.46979833,1.0993965,-0.12370715,0.0900535,0.36755753,-0.26214758,-0.59004605,0.0800665,-0.35981077,0.09984164,-0.194173,-0.35737386,-0.15024586,0.31337315,0.16573192,0.15007254,-0.034322694,-0.61719525,-0.029838366,0.38833186,-0.27209815,-0.103664406,-0.14436178,-0.048429593,0.5691153,-0.17612074,-0.3772081,-0.0385222,0.3731738,-0.22739884,-0.6456298,0.09772967,-0.34062058,0.39395815,0.25200662,-0.29034922,-0.14285375,-0.022017553,-0.36307007,0.088003114,0.22201526,-0.32304567,-0.12280919,-0.26795495,0.064759314,0.53261155,-0.040499043,0.1156735,-0.2960499,-0.47051492,-0.8198776,-0.19244377,-0.3316209,0.25498536,-0.12719,-0.6360702,-0.05434851,-0.35476336,-0.014646699,0.01171503,-0.40568268,0.3907676,0.33094585,0.28329232,-0.37168288,-0.8172248,0.07522654,0.25698924,-0.042043205,-0.4663712,0.54040337,0.09656212,0.71394503,0.119168475,-0.04941563,0.16589896,-0.7780463,0.3308709,-0.22465739,-0.03060774,-0.78696644,0.13150723,121 -4,0.6750282,-0.11934945,-0.6944818,-0.097313285,-0.467983,0.050199144,-0.23556766,0.382272,0.18191886,-0.47745654,-0.18621792,-0.087048024,0.027905231,0.24888201,-0.17617007,-0.8381139,0.18468593,0.3580955,-0.5950115,0.72379404,-0.3480723,0.35323763,0.02556471,0.29568288,0.24095544,0.31115043,0.14264615,-0.041777764,0.033897303,-0.10103798,-0.16708685,0.3822415,-0.47936282,0.28861982,-0.11113189,-0.5111182,-0.14073391,-0.22161447,-0.39390016,-0.7937349,0.28035945,-0.66635454,0.47070077,-0.089081906,-0.36030677,0.048451893,0.199051,0.4022445,-0.18727827,-0.011569897,0.029537467,-0.11867554,-0.3039587,-0.30668506,-0.18505211,-0.4885051,-0.5515201,-0.027272148,-0.5224788,0.080654144,-0.31402326,0.35112762,-0.2143553,0.07124947,0.0017984053,0.43508878,-0.36286482,0.01515784,0.1523062,-0.11849483,0.17789964,-0.49740577,-0.22307089,-0.08956297,0.19843963,-0.06038375,-0.4527358,0.2048172,0.1857096,0.40122467,0.0681139,-0.21098213,-0.45309192,-0.012284247,-0.013055956,0.57129174,-0.20436254,-0.45028564,-0.20755075,0.05073445,0.21008265,0.18172912,-0.07799268,-0.29477948,-0.059909582,-0.10599504,-0.22240189,0.4129985,0.54510415,-0.39830124,-0.16481875,0.38419285,0.6013806,0.050806325,-0.29412264,0.13116929,-0.08084569,-0.57293767,-0.17134318,0.03592368,-0.025280373,0.46585375,-0.11425663,0.26404187,0.57784855,-0.007067456,-0.29405642,0.20194301,0.11349134,-0.032119174,-0.2803811,-0.23094189,0.3958379,-0.46423173,0.06966703,-0.19029057,0.7190057,0.02948653,-0.8114446,0.3337464,-0.47723052,0.07313539,0.0032208508,0.42942157,0.6931947,0.43049905,0.16943371,0.8507591,-0.21823657,0.14146407,-0.11805908,-0.22436547,-0.20139958,-0.017054772,-0.13978367,-0.53779525,0.19740887,-0.011539452,-0.10375229,0.18647973,0.6449185,-0.64736146,-0.21180622,0.07262042,0.7189843,-0.42958555,-0.18171328,0.824781,0.90391546,1.0473412,0.08293751,0.9804868,0.2723069,-0.13953649,0.040794294,-0.35206527,-0.47191417,0.33770323,0.24948213,0.37731072,0.36340117,0.01584181,0.0012432617,0.5052449,-0.22893798,-0.17110541,-0.1236539,0.2173802,0.12826507,0.022263717,-0.59291303,-0.2304773,-0.029470257,0.18432659,0.22712235,0.20010827,-0.35318202,0.4062709,0.13181272,1.5919993,-0.037903976,-0.023257371,0.16612239,0.3362583,0.3433516,-0.14449275,-0.1961791,0.18982866,0.3287183,0.109621555,-0.51556945,0.007232624,-0.25803947,-0.46734267,-0.109168895,-0.2777129,-0.12151857,-0.23661451,-0.48717332,-0.2651584,0.059142716,-0.35819423,0.55254894,-2.5083673,-0.20221014,-0.15639156,0.3669679,-0.11686235,-0.38163295,-0.2586541,-0.40776607,0.38915753,0.33917585,0.45241702,-0.506187,0.5468126,0.33570364,-0.65316546,-0.037378,-0.5457787,-0.035881374,-0.029762253,0.43540654,0.06596744,-0.043521143,-0.0101330355,0.11306695,0.58083206,-0.3383402,0.027886951,0.31315303,0.28036246,-0.012401164,0.45170653,0.08366289,0.5408572,-0.29007092,-0.28489685,0.39080596,-0.36731452,0.107601374,0.02759288,0.15473804,0.44061947,-0.54622793,-1.0794321,-0.6321456,0.055786245,1.025497,-0.32679176,-0.4389899,0.19256476,-0.28574023,-0.2862146,0.051752485,0.2465551,-0.12917773,-0.011918404,-0.7706701,-0.02022452,-0.0003435261,0.17096102,-0.05956672,-0.087577045,-0.3900027,0.7471025,-0.12109793,0.58818465,0.26436448,0.32212862,-0.27028364,-0.53951323,0.01231014,0.99213856,0.28030905,0.10910916,-0.3198378,-0.298467,-0.29059258,0.063050255,0.21907221,0.6296008,0.61710775,0.017672721,0.08778291,0.22881494,-0.017349532,0.0984221,-0.21039282,-0.23412393,-0.17940441,0.075874135,0.78240997,0.61035013,-0.03566429,0.5921065,-0.0877738,0.39430547,-0.19194154,-0.59377587,0.399802,1.0915003,-0.23948254,-0.6127206,0.6057831,0.47067934,-0.14489047,0.29358414,-0.7139965,-0.36888638,0.3415684,-0.24793348,-0.22239985,0.24411367,-0.33027312,0.22769646,-0.9208172,0.17120905,-0.16233978,-0.7931008,-0.5633253,-0.2607501,-3.3004174,0.31028944,-0.04847638,-0.085694216,0.082113676,-0.25279027,0.17634624,-0.49441928,-0.50585115,0.047009476,0.09737743,0.8102297,0.013982848,0.098352626,-0.15192443,-0.3725978,-0.14045443,0.3683552,0.21075913,0.34553948,-0.012424418,-0.48636526,-0.004389588,-0.145845,-0.5161672,0.0018268719,-0.6560445,-0.5221736,-0.16312899,-0.65404063,-0.21249214,0.59491014,-0.4542459,0.15023845,-0.24155448,-0.035348922,0.084159836,0.16774286,-0.020221753,0.15343356,0.22131316,-0.089977436,0.18183184,-0.23899771,0.16623425,0.0014002516,0.14404237,0.20171583,-0.121295914,0.37707973,0.6188543,0.65809464,-0.076499805,0.93461007,0.527017,-0.05887866,0.23124276,-0.13707948,-0.34728214,-0.59587663,-0.27255952,-0.106897935,-0.49173665,-0.2578689,-0.09365713,-0.42698267,-0.78997374,0.6809146,-0.07939439,-0.048148442,-0.054668278,0.4024911,0.640749,-0.28214306,-0.124643974,-0.057027634,-0.2651738,-0.31513265,-0.3683008,-0.57100576,-0.52658755,-0.15973747,1.3931383,-0.20233317,0.01256968,-0.047708433,-0.0997929,-0.012197614,0.29391262,0.11475701,0.29228503,0.3749512,-0.31891525,-0.5922023,0.30248302,-0.4541426,-0.24331604,-0.49803632,0.28793073,0.5137492,-0.5629302,0.39312094,0.36260948,0.29478708,-0.03865385,-0.5477764,-0.073091164,0.13714974,-0.22570784,0.5562518,0.32625288,-0.71164715,0.5248331,0.24855204,-0.11313082,-0.80299664,0.58612996,-0.09256793,-0.4372429,-0.066566505,0.42257896,0.107878745,-0.12887825,-0.3936619,0.11435343,-0.25392076,0.17495628,0.22756653,-0.053670377,0.19595906,-0.38016245,-0.04389246,-0.83962977,-0.101668835,-0.42316788,-0.23555288,0.16749354,-0.10903067,0.093376085,0.049776867,-0.15631326,0.43764973,-0.34443328,0.029530259,-0.41396764,-0.26200673,0.38101944,0.45977622,0.3530521,-0.32570577,0.5445634,0.040841345,-0.043188564,-0.27987462,0.041817717,0.5303119,-0.17164506,0.5883836,-0.033046275,-0.09747776,0.19089603,0.66300863,0.22466733,0.47418427,0.031527787,-0.23265906,0.040854797,0.08699507,0.25795814,-0.040201068,-0.3275479,0.02716662,-0.21389179,0.18436363,0.632888,0.15547659,0.3618845,-0.09386895,-0.32877898,0.0546436,0.07002299,0.025163066,-1.6002897,0.43982735,0.20161837,0.7457571,0.4329139,0.15440764,-0.05102333,0.5654666,-0.15353146,0.12549134,0.25183025,-0.0717144,-0.18254821,0.38417011,-0.86545026,0.57134956,-0.061177626,0.065481044,0.07723371,-0.07992661,0.5213752,0.9948869,-0.13024962,0.15088747,0.048456453,-0.23589878,0.14400849,-0.27048886,-0.090365455,-0.64814156,-0.34584796,0.84645426,0.483956,0.5520437,-0.14130051,-0.07519175,0.15282103,-0.069818325,0.072236046,0.10106616,0.14651302,-0.053213723,-0.55580705,-0.20014659,0.47474524,0.056427564,0.11884901,0.2318572,-0.1632693,0.342294,0.09672241,-0.034432847,-0.09958099,-0.5846327,-0.104648076,-0.37645423,-0.39546862,0.4722915,-0.1819628,0.19470218,0.18421897,0.048836306,-0.36652094,0.31119224,0.13945952,0.83175665,0.24703121,-0.12412388,-0.26774496,0.15951586,0.24108213,-0.23450086,-0.08370457,-0.36664122,0.2103738,-0.83761716,0.30046555,0.02194775,-0.5117556,0.29503563,0.0236851,0.038825866,0.42332,-0.060690515,-0.21614741,0.08237687,0.015027414,-0.24681063,-0.16463745,-0.20234069,0.1763155,-0.04399537,-0.17763393,0.027847247,-0.03579331,0.025146011,0.5586394,0.062084835,0.42277184,0.41255102,0.24071538,-0.33731845,0.06461871,0.28366798,0.5566306,-0.19983695,-0.20508897,-0.28452048,-0.4088819,-0.37757066,0.12228974,-0.06358632,0.32430622,0.21107955,-0.20607835,0.83732474,-0.19526719,1.2866333,-0.011044033,-0.40689763,0.15909351,0.41999665,-0.08199673,0.031717617,-0.24026711,0.88398695,0.5418916,-0.1354625,-0.21212755,-0.32687673,-0.0134777585,0.056333333,-0.26702002,-0.19733323,-0.1069061,-0.5110377,-0.43148458,0.087418444,0.22373219,0.27118653,-0.18168579,0.07025967,0.2640321,-0.060686804,0.1783458,-0.41166744,0.053969454,0.26636323,0.35137963,-0.1072529,0.15373215,-0.49460232,0.34706816,-0.4693715,0.07418087,-0.38572693,0.2697982,-0.12932321,-0.27163774,0.344222,0.017278206,0.2625589,-0.29339847,-0.17895466,-0.3401223,0.5775619,0.13896684,-0.04577747,0.55999637,-0.1998285,-0.060500298,0.12848578,0.39168802,1.0039428,-0.508392,-0.09102813,0.3135399,-0.25897816,-0.45601922,0.16323459,-0.34247088,0.140576,0.070194304,-0.3044241,-0.5734238,0.37584767,0.1663043,0.07478244,0.08594797,-0.66190535,-0.07530291,0.2926476,-0.2338489,-0.057687152,-0.15845849,0.24089622,0.45519873,-0.16751367,-0.28615287,0.05956354,0.21941929,-0.14383046,-0.6342078,0.09178665,-0.42383453,0.37146956,0.13760395,-0.30826646,-0.18300529,0.000673266,-0.45559603,0.019050097,0.39824653,-0.2572846,0.08576749,-0.4591571,-0.046684224,0.9718423,-0.21031617,0.3610023,-0.5663333,-0.43276277,-0.97752035,-0.22449976,0.32604688,0.25704923,-0.02037166,-0.78394157,-0.06573828,-0.18380709,-0.48928973,-0.032934163,-0.40067554,0.4525006,0.13291356,0.4587331,-0.041000403,-1.029252,0.22967912,0.07468086,-0.4255361,-0.3946455,0.43460384,-0.059196137,0.7940896,0.14224315,0.27482185,0.35100228,-0.53267264,0.08384085,-0.14041881,-0.031796187,-0.7649687,-0.064042695,177 -5,0.46949074,-0.12914278,-0.63483095,-0.14160185,-0.29058287,0.0640402,-0.25576073,0.4453448,0.20464294,-0.5487543,-0.16093123,-0.27017933,0.006469811,0.47542152,-0.19936979,-0.6925931,-0.023808716,0.1665434,-0.520467,0.5167991,-0.36054158,0.23739684,0.14626145,0.37576112,0.3820141,0.31194434,0.25693536,-0.26383677,-0.363522,-0.054523557,-0.058377974,0.10590084,-0.58832365,0.12409938,-0.2056919,-0.5135255,0.069668114,-0.4907861,-0.34827647,-0.6532317,0.3460947,-0.8182368,0.39561194,-0.08687709,-0.11777624,0.15881607,0.17364399,0.5359934,-0.21652804,0.027157156,0.07600373,-0.1744768,-0.058812372,-0.0066223284,-0.22234176,-0.36943343,-0.51864237,0.07805036,-0.4150901,-0.19368216,-0.17737257,0.09432144,-0.36604753,0.18854734,-0.08972602,0.41563618,-0.43498713,-0.13309297,0.27671027,-0.15789512,0.2769594,-0.50353587,-0.1809919,-0.17061752,0.22085527,-0.20205595,-0.112364516,0.3647831,0.29716447,0.5460248,0.0876398,-0.24528815,-0.34050632,-0.045283206,0.22167721,0.48874316,-0.18604076,-0.52138877,-0.25744042,0.0029908146,0.3541671,0.09390768,-0.028682355,-0.3550232,-0.015701083,0.13767298,-0.33539823,0.26425904,0.45467725,-0.21158803,-0.1597564,0.2225354,0.5065166,0.1835579,-0.17600818,-0.0045642396,0.03469494,-0.48539042,-0.18021773,0.16449897,-0.2184604,0.5068651,-0.035336155,0.16523297,0.6893665,-0.23633993,0.13362461,-0.09090657,-0.038909722,-0.18514258,-0.24680379,-0.29447803,0.24945371,-0.537409,0.17497116,-0.21422184,0.8456147,0.2730269,-0.7279517,0.30415246,-0.5741762,0.23539114,-0.053513426,0.44318908,0.6519725,0.3905384,0.29635826,0.61058605,-0.4239018,0.20939817,-0.2097678,-0.42125794,-0.01361869,-0.21854869,0.027071036,-0.36897296,0.07150325,-0.043857105,-0.08425746,0.071789235,0.29439372,-0.48477668,-0.041855525,-0.03860865,0.9522326,-0.2768295,-0.021892702,0.6919656,0.90693843,1.0134435,0.017164083,1.1546628,0.26821384,-0.34624645,0.24127229,-0.2009131,-0.6617368,0.29760665,0.39410433,-0.28465933,0.30990937,0.099617384,0.08352011,0.47056597,-0.39200225,0.18799187,-0.23150726,0.12946752,0.044000935,0.0028210317,-0.3948031,-0.20736492,-0.052077897,-0.037052047,-0.045129314,0.23000593,-0.15316392,0.44239148,0.07111575,1.8249059,-0.07526557,0.0777551,0.05331209,0.46988252,0.09082481,-0.0065645636,-0.0379632,0.103281595,0.22873875,0.024438953,-0.5458187,-0.011877501,-0.28151175,-0.5076397,-0.16140115,-0.24880168,-0.11708552,-0.11713853,-0.5069037,-0.119358346,-0.113953814,-0.22942433,0.392078,-2.412691,-0.255474,-0.18312632,0.17931743,-0.43455487,-0.37109038,-0.113382876,-0.47562256,0.43669268,0.30460048,0.5361692,-0.701612,0.4249824,0.35229155,-0.46159643,-0.120716654,-0.6646933,-0.13912264,0.00023832041,0.3554647,-0.05691451,-0.17242688,0.0338169,0.12895706,0.45578936,-0.24736612,0.05531763,0.16592379,0.31515792,0.21982355,0.6279748,-0.047012683,0.52210236,-0.38901556,-0.13046181,0.3667679,-0.3750206,0.15219285,0.010975992,0.18394473,0.34091192,-0.50765926,-0.91417426,-0.69725424,-0.3491571,1.1440412,-0.1992336,-0.2668012,0.23547758,-0.24824078,-0.11546404,-0.029654594,0.27858952,-0.090776,0.050613303,-0.8245063,0.07134096,-0.14926991,0.09953266,0.117743425,0.057513006,-0.26226154,0.5927039,-0.02960853,0.32574415,0.5139763,0.27533114,-0.17002527,-0.42839536,0.12998493,1.0199689,0.30717283,0.19737785,-0.19993083,-0.20654356,-0.39060682,-0.17467827,0.13880716,0.32150844,0.7832663,-0.014196894,0.076324776,0.21811251,-0.024894306,0.028731298,-0.10212505,-0.43641624,-0.13601764,0.06699699,0.56895274,0.5995509,-0.16424179,0.50358367,-0.10782452,0.32414937,-0.1450216,-0.44511324,0.5511597,0.81624717,-0.22571859,-0.2162092,0.39532408,0.551339,-0.24983527,0.46415946,-0.62407225,-0.41227704,0.553882,-0.15842783,-0.44693688,0.20410866,-0.39064535,0.13299008,-0.9774231,0.24016151,-0.3856854,-0.21184796,-0.513722,-0.15919618,-3.35905,0.09811414,-0.14067192,-0.251669,-0.09066466,0.012561777,0.19048916,-0.664463,-0.6413351,0.10840076,0.08207923,0.69285756,0.08160791,0.13882111,-0.2885778,-0.18846238,-0.23663038,0.03259648,0.20675601,0.17663825,0.06105923,-0.6059816,-0.17967457,-0.2947125,-0.4252163,0.13159777,-0.58366275,-0.52678144,-0.22262043,-0.53121996,-0.43146566,0.63149136,-0.3579321,0.057146877,-0.10603267,-0.03477877,-0.181132,0.30398315,0.13659385,0.067536004,0.11692036,-0.07172903,0.053281978,-0.33696488,0.12174525,0.18211804,0.29741076,0.37521636,-0.058643408,0.22556531,0.56358737,0.74290043,-0.06659194,0.8330638,0.51962596,-0.118706,0.39740804,-0.4225099,-0.30861068,-0.5370589,-0.29365432,-0.112895526,-0.2782575,-0.40904427,0.023612313,-0.37608775,-0.77563435,0.57579476,0.032749254,0.057349823,-0.06079746,0.08617344,0.4467355,-0.23623186,-0.11655269,-0.06592059,-0.08693746,-0.5675117,-0.3635853,-0.74157405,-0.6015197,0.105757326,1.1559349,-0.04569402,-0.07737018,0.06987908,-0.23644316,0.0828135,0.026771804,-0.013580606,0.11861998,0.4217287,-0.10806204,-0.7186894,0.46255848,-0.07647729,-0.14629498,-0.5636783,0.13997883,0.7613089,-0.64328337,0.405302,0.44481733,0.05220951,0.05476732,-0.3668214,-0.10068466,-0.09380351,-0.17652197,0.33037344,0.100487486,-0.57914025,0.45281175,0.42157176,-0.3021044,-0.79504335,0.4433139,0.12440544,-0.096118264,-0.01690615,0.33109567,0.21500412,-0.09296125,-0.1872732,0.0665094,-0.50651604,0.24612772,0.4164119,-0.08771613,0.34354708,-0.12251007,-0.23213933,-0.81782013,0.044918768,-0.38959724,-0.18702507,0.26430145,0.10934275,0.13682353,-0.059042305,0.029047359,0.2887432,-0.2556459,-0.020629862,-0.13557456,-0.23295113,0.37694004,0.4248793,0.4170118,-0.4342537,0.61062104,0.015990293,-0.050702356,-0.02678233,-0.020260205,0.4606326,0.16156429,0.2393355,0.12989955,-0.3214227,0.25514913,0.7370294,0.19746582,0.4779974,0.115031265,-0.2436278,0.23540261,0.19786581,-0.07158448,0.23671156,-0.43642965,-0.06470842,-0.025212422,0.11619983,0.47208938,0.20440505,0.41019797,-0.035824627,-0.2595867,0.010716478,0.108662955,-0.087349236,-1.323277,0.3920329,0.15933764,0.7167286,0.59448826,-0.024261085,0.15750268,0.5623674,-0.21506691,0.16234636,0.4250542,-0.1671407,-0.5360447,0.6336006,-0.6681463,0.51504946,0.030960217,0.10910587,0.071306616,0.042460352,0.51636237,0.73673767,-0.06609245,0.115227334,0.0017824523,-0.32197958,0.036465842,-0.30452538,-0.08160893,-0.46986175,-0.23248552,0.5810465,0.39369038,0.29664052,-0.102379546,-0.06638682,0.026404629,-0.09578133,0.24808797,-0.05996987,0.16284177,0.04614855,-0.5914815,-0.38462117,0.5152233,-0.030332537,0.29809344,0.035005935,-0.23009089,0.3177675,-0.07722749,-0.04631032,-0.066048495,-0.60072696,0.018947955,-0.4246685,-0.358989,0.39543977,-0.058568455,0.3416928,0.07533531,0.032742217,-0.3848002,0.49374187,0.066260055,0.7208202,-0.15496525,-0.3285087,-0.19620526,0.063717805,0.35162273,-0.20936537,-0.10459123,-0.25539425,0.0052394797,-0.5390092,0.43552113,-0.119845964,-0.18794467,0.14973338,-0.1677494,0.030199504,0.5478122,-0.19488811,-0.078149736,0.06169263,0.075287946,-0.2688393,-0.16159639,-0.15543468,0.21419632,0.23199567,0.07399984,-0.14092204,-0.14210165,0.03246111,0.45275712,-0.12292056,0.3741318,0.36518165,0.1725661,-0.40966097,-0.19591224,0.2111856,0.427563,0.11971639,-0.115181506,-0.3405032,-0.3004097,-0.30105236,0.11558424,-0.16272295,0.23788245,0.16477752,-0.43690935,0.902394,0.006302469,1.2986652,0.004194042,-0.38886338,0.074976414,0.34477633,-0.12730004,0.074916236,-0.40822577,0.8374111,0.5370167,-0.11608588,-0.19845657,-0.45305118,-0.120180525,0.17149617,-0.2526533,-0.16635294,-0.004002895,-0.51786804,-0.40081707,0.2692375,0.34030476,0.17761329,-0.21255729,0.060694862,0.10821121,0.06615011,0.4230087,-0.42390078,-0.26392746,0.35563043,0.3671928,0.0465531,0.122772865,-0.46998546,0.4284585,-0.5096828,0.03623735,-0.2434173,0.15055686,-0.090101555,-0.31021667,0.31351408,0.029061764,0.39052403,-0.44815984,-0.34773535,-0.25111875,0.572299,0.02038788,0.15649596,0.71955967,-0.22870874,-0.008025885,0.0155533375,0.54681325,0.987934,-0.31737423,0.039520472,0.4446993,-0.22560929,-0.5084335,0.29374588,-0.30930418,0.1326672,-0.07388073,-0.33111787,-0.66558737,0.3032438,0.23562863,-0.033692893,-0.0027691405,-0.5695876,-0.1321699,0.3172891,-0.3360598,-0.38136774,-0.3807543,0.057885334,0.56580096,-0.32367238,-0.28447488,0.21523486,0.2569542,-0.1271034,-0.36308044,-0.19287863,-0.26961595,0.39498076,0.31509298,-0.34069785,-0.111487836,0.12058279,-0.48097453,-0.019114709,0.17438161,-0.40335643,-0.012299303,-0.24484418,-0.07554827,0.9148694,0.007955845,0.23840058,-0.5796218,-0.3665612,-0.9092606,-0.4131441,0.59696263,0.14721912,0.024642,-0.5851154,-0.034616105,-0.045030624,-0.15251757,0.019086147,-0.44269866,0.43557557,0.10575984,0.47102287,-0.15516102,-0.58314514,0.11423882,0.16211048,-0.108835384,-0.55019736,0.490431,-0.078613184,0.8876763,0.07879962,0.0599608,0.3667083,-0.453372,-0.13631962,-0.2550039,-0.2586124,-0.7021215,0.07855742,218 -6,0.5765292,-0.114630535,-0.32122394,-0.07281329,-0.104547404,0.014056858,-0.10330247,0.3280689,0.19555944,-0.5876652,-0.06301076,-0.26026565,-0.004904025,0.24145514,-0.060354035,-0.71929264,-0.08593565,0.18665496,-0.34872943,0.5124342,-0.44243652,0.324106,0.026199706,0.30932477,0.073006965,0.21792923,0.23952234,-0.21472827,-0.087560974,-0.07500005,-0.09057366,0.2949493,-0.548291,0.10433244,-0.024263645,-0.29090217,-0.0048003057,-0.31925407,-0.2714317,-0.6815268,0.2269488,-0.62468797,0.37458438,0.1907361,-0.11669983,0.38749918,-0.044363547,0.32528618,-0.1980852,0.060097843,0.17262371,-0.21595049,0.014701114,-0.2168855,-0.15891951,-0.40033492,-0.52059287,0.06980368,-0.32725435,-0.34389827,-0.36458188,0.13998461,-0.30326372,-0.15779892,-0.12481019,0.3437932,-0.42773172,0.00068731344,0.17203572,-0.1422404,0.40727735,-0.4054901,-0.13951546,-0.15479529,0.113455884,-0.2452397,-0.13837092,0.2686259,0.21543229,0.6440806,-0.043151077,-0.21311423,-0.30968216,0.0055078478,0.14749166,0.5602968,-0.20005172,-0.4996573,-0.045497105,-0.036170736,0.18292983,0.03533086,0.030483628,-0.31903616,-0.26325738,0.11445761,-0.29880548,0.30323842,0.493284,-0.3244595,-0.32437676,0.31090236,0.518,0.022956148,-0.122023486,0.029821873,-0.011506078,-0.4289852,-0.17764525,0.10997008,-0.21292448,0.33949846,-0.11845118,0.1498469,0.7026914,-0.17770042,0.12056225,-0.041403566,-0.08197134,0.00047041036,-0.3300222,-0.26698548,0.25360915,-0.32576814,0.18507828,-0.2389597,0.8679598,0.16838616,-0.8647476,0.43172932,-0.48245215,0.17662795,-0.07677649,0.6555508,0.6754687,0.28479993,0.41069916,0.6542372,-0.6750044,0.06895027,-0.14999367,-0.33698678,0.055676553,-0.07903477,0.022420399,-0.49659252,0.045587044,0.0685037,-0.0910821,0.0010078076,0.2975865,-0.6426675,-0.0053693373,0.17199606,0.77238053,-0.3485703,-0.043848187,0.51953083,0.8942235,0.87463707,0.03799932,1.1682557,0.27662516,-0.3438673,0.33202603,-0.5165903,-0.5872531,0.21543466,0.3443434,0.024373427,0.26034904,0.123003006,-0.029508395,0.29256585,-0.33490002,-0.002707513,-0.15618518,0.13923235,-0.009585121,-0.124344096,-0.3791577,-0.11757673,-0.059739336,-0.008887565,0.05801638,0.17933773,-0.36286718,0.1446633,0.011966717,1.9109443,-0.03694775,0.13456662,0.034324896,0.4425211,0.10734187,-0.078039095,0.03263644,0.43531317,0.32756063,0.09989723,-0.54386157,0.11117069,-0.19546217,-0.51549596,-0.102114856,-0.21936211,0.1004649,0.050999235,-0.34963062,-0.012408295,-0.0599629,-0.41268048,0.4878016,-2.613746,-0.18944553,-0.043230936,0.31571218,-0.31273723,-0.3391744,-0.09259489,-0.33628583,0.3649752,0.3121444,0.40015277,-0.75272125,0.27092463,0.30852267,-0.42977607,-0.13634208,-0.6395446,-0.028180826,-0.12303428,0.37445393,0.10338971,-0.01184838,-0.030964537,0.18224908,0.4117376,-0.16670701,0.015693447,0.16243629,0.31464648,0.20817241,0.44980258,0.0088344,0.38164788,-0.14399055,-0.18134238,0.36703685,-0.423501,0.1287089,0.047722556,0.06846254,0.28680724,-0.4279415,-0.86513025,-0.65311235,-0.49691194,1.0682752,-0.26710677,-0.3960312,0.2496081,-0.069413066,-0.30079293,-0.12472935,0.31087336,-0.15558052,-0.07835105,-0.8659521,0.14434434,-0.04869158,0.22214018,0.08718198,0.042748276,-0.36330652,0.57637674,-0.13349114,0.42065173,0.3347404,0.20005001,-0.12518075,-0.45459715,0.018663196,1.0441928,0.21173868,0.16093238,-0.16825518,-0.21548958,-0.19078296,0.0012782111,0.13198243,0.48797327,0.7022927,-0.047996417,-0.008791653,0.25818297,0.0065143863,-0.09597371,-0.19949588,-0.26675138,-0.035869583,0.07954201,0.600699,0.5134064,-0.2793778,0.35096118,-0.073671706,0.27400154,-0.10380143,-0.48820946,0.4807394,1.1138618,-0.15848567,-0.09950994,0.5294511,0.26469252,-0.33257312,0.42328238,-0.7392847,-0.18795677,0.5400466,-0.19099939,-0.3062947,0.18842195,-0.30237377,0.032173928,-0.9415146,0.3588498,-0.18568055,-0.41325918,-0.4476916,-0.15156019,-3.302078,0.10155689,-0.16327341,-0.22339305,-0.02681385,0.08535776,0.21393046,-0.60148495,-0.3866789,0.048450246,0.11783322,0.5255516,0.10786823,0.105286404,-0.26409984,-0.15606171,-0.33049938,0.081475325,0.11492273,0.29978982,0.069098115,-0.41393355,0.00017709592,-0.09502327,-0.40827295,0.1302398,-0.42771986,-0.4510018,-0.24415076,-0.49859613,-0.33493346,0.5145657,-0.38176778,0.03783086,-0.21308438,-0.07399046,-0.19696255,0.34278718,0.17556201,0.08602775,-0.055725656,-0.016319083,-0.10894544,-0.23557977,0.21675873,0.15977545,0.105294496,0.44506267,-0.24197015,0.13033405,0.4361674,0.627387,-0.0012853496,0.7596408,0.6070263,-0.1405338,0.36678943,-0.33649963,-0.13551119,-0.63650036,-0.44878682,-0.15626208,-0.41447458,-0.5015741,-0.028646898,-0.31664667,-0.7332822,0.4694206,-0.12256735,0.14716932,-0.0026210845,0.24618572,0.50334823,-0.19150218,-0.08951402,-0.060232233,-0.1517173,-0.51053095,-0.29780173,-0.59912163,-0.47872886,0.25728345,0.8751121,-0.119166516,0.012561216,-0.034760736,-0.0584782,-0.11748892,0.13031581,0.03239676,0.23946956,0.3578184,-0.0974974,-0.62146544,0.51197386,0.014146497,-0.14671801,-0.5776978,0.20518768,0.55585194,-0.49909616,0.47463727,0.24039526,0.0882595,0.042390052,-0.4684295,-0.274472,-0.005249879,-0.2801404,0.39433548,0.1582339,-0.6897195,0.40990236,0.44764653,-0.2650412,-0.71891356,0.30838516,0.0026328599,-0.33608347,-0.010259104,0.28751808,0.015545628,0.045991316,-0.1458775,0.22695424,-0.60747164,0.17584518,0.29172197,-0.04117094,0.3361685,-0.19958222,-0.08326953,-0.7217499,-0.0017989102,-0.5015139,-0.2884954,0.08861448,0.14802656,0.038560156,0.2395023,0.02245565,0.46669468,-0.13629465,0.08797559,0.009250241,-0.10312672,0.24135716,0.47917628,0.36051005,-0.34607422,0.45210457,0.010456674,-0.11000786,-0.20482773,-0.005157304,0.5027523,0.14615275,0.2451884,-0.074809745,-0.29785615,0.37633228,0.6403483,0.24926887,0.43107584,0.043437384,-0.2234121,0.37768802,0.13819544,0.108894646,0.0750785,-0.37220073,-0.0482987,0.0013817688,0.15922207,0.4021895,0.1773267,0.39938828,-0.08513791,-0.2601197,0.038032312,0.25462615,-0.12500435,-1.0460782,0.3547509,0.24271193,0.7872376,0.56679225,0.015577064,0.13304682,0.57944655,-0.24601758,0.18643141,0.28462118,-0.17768154,-0.57326776,0.45954525,-0.6271693,0.2539509,-0.07195057,0.03406468,0.085574254,0.00092299195,0.4554041,0.70152384,-0.22694315,0.07834217,-0.1400738,-0.18790762,0.17969105,-0.34683266,0.20488442,-0.44342238,-0.28205395,0.6471241,0.40866303,0.3403237,-0.20453885,-0.050192114,0.08692189,-0.04980367,0.10363849,0.030476168,0.066339634,0.05777368,-0.52036494,-0.23939598,0.60750884,-0.09045013,0.15396811,0.052082628,-0.2597877,0.16682748,-0.20035045,-0.21840768,-0.0426387,-0.5229403,-0.08755053,-0.11772213,-0.2819853,0.5716281,-0.15066475,0.31718612,0.062700704,8.7794135e-05,-0.2589354,0.24002177,0.30928004,0.55622315,0.08132067,-0.1817464,-0.3187266,0.17975336,0.18208586,-0.1976801,-0.17236501,-0.19522965,-0.07172033,-0.6605469,0.44638488,0.06301239,-0.26285613,0.16171432,-0.13257074,0.0327042,0.57507205,-0.04617017,-0.1721025,0.033554368,-0.20624413,-0.2378673,-0.15090613,-0.11054977,0.34604084,0.085404456,-0.09958,-0.029163932,-0.030812327,-0.120582044,0.4236836,0.13818428,0.2620278,0.28049842,0.14359844,-0.3902514,-0.08366497,0.08366422,0.26375747,0.09576887,-0.102102794,-0.060282834,-0.40865007,-0.42734075,-0.083394974,-0.16555673,0.32703888,0.045484237,-0.3913299,0.84567213,0.1409589,1.2064427,-0.085481435,-0.24478592,0.02462629,0.4932693,-0.061213836,0.13787879,-0.3945073,0.82504416,0.55987036,0.044572115,-0.14287058,-0.18284686,-0.08028439,0.19102062,-0.19985837,-0.026635226,0.0147094205,-0.66817707,-0.43954286,0.27665496,0.27684158,0.08233085,-0.041607507,-0.0033567303,0.18420643,0.042510092,0.37279275,-0.3447603,-0.12388779,0.23017873,0.3162975,0.039732438,0.0783794,-0.38481057,0.40812212,-0.49716064,-0.0071929027,-0.13011573,0.0669837,-0.13557558,-0.2041857,0.27775022,0.074161835,0.3148625,-0.26439813,-0.36683217,-0.21907698,0.4806601,0.04488459,0.1674247,0.57833016,-0.21208468,0.10033527,0.012026604,0.47868258,1.1413819,-0.30045867,0.08588624,0.41829863,-0.3370202,-0.6280955,0.30330095,-0.23585606,0.09188777,-0.20744024,-0.3005221,-0.38580093,0.1686784,0.1805345,0.0060890475,0.18920752,-0.57095206,-0.241728,0.31714505,-0.31480658,-0.18614617,-0.12779772,0.22339788,0.7186028,-0.35546052,-0.38113284,0.14680184,0.24185924,-0.34077173,-0.5550129,-0.14360042,-0.33746907,0.38067403,0.18736632,-0.33409888,0.054552104,0.21358609,-0.373872,-0.035365216,0.21611135,-0.4395031,0.13886435,-0.28785896,-0.0024483746,0.80888975,-0.07317283,0.12061038,-0.6983419,-0.3537285,-0.9941762,-0.4430823,0.57686454,0.19561923,0.024172632,-0.41490224,0.02150192,-0.035175435,-0.21312632,-0.122143984,-0.3499612,0.37617916,0.18401542,0.45821285,-0.12298525,-0.77333283,-0.10012398,0.13297862,-0.070827834,-0.63727397,0.4389571,-0.020991718,0.86274886,0.049594216,0.111631855,0.35048115,-0.4989807,0.024407092,-0.24725176,-0.22400601,-0.6971864,0.04153826,223 -7,0.7473613,-0.12828133,-0.77294934,-0.043843877,-0.66733617,0.16519654,-0.38588524,0.13388823,0.228141,-0.5605262,0.1564959,-0.031126713,-0.21231037,0.12563287,-0.17853534,-0.67654353,-0.08011447,0.17325637,-0.7728109,0.8194837,-0.4148583,0.28941357,0.19025895,0.17268343,-0.10351919,0.16750751,0.1937135,-0.110399544,-0.28347418,-0.15419427,-0.061032042,0.14831448,-0.63032115,0.60752714,-0.024072459,-0.16988042,-0.06119167,-0.29076135,-0.270965,-0.7381163,-0.03880115,-0.6120508,0.44889292,-0.061494604,-0.36726683,0.06742786,0.07015176,0.22858341,-0.040448178,0.011744275,0.25563386,-0.4021422,-0.5885527,-0.31812203,-0.3860498,-0.7656189,-0.6289305,-0.22544609,-0.5411204,-0.082661875,-0.20214713,0.3934093,-0.31748578,-0.1705011,-0.29988647,0.649241,-0.31880066,0.07390348,0.2881298,-0.08986114,0.18456912,-0.6727494,-0.04211766,-0.0884907,0.009232495,0.28094134,-0.2856366,0.25596142,0.07206196,0.378707,0.12266288,-0.44352248,-0.41897252,-0.15151334,0.34466577,0.39995617,-0.13008839,-0.12393357,-0.2703714,-0.057714853,0.38538602,0.34439513,0.18164149,-0.4708712,0.12965141,-0.21000504,-0.23502018,0.38803485,0.4737395,-0.1970005,0.11148476,0.40601406,0.3189883,0.09101939,-0.35460445,-0.04664562,-0.26821396,-0.47331557,-0.12313767,0.3909226,0.064973876,0.26557273,-0.105513684,0.0639736,0.5150486,-0.11523342,-0.17912543,0.10862448,0.017760636,0.25725758,-0.23888652,-0.08808082,0.30975035,-0.6542386,-0.19890372,-0.517811,0.73392415,-0.12391434,-0.68293494,0.25003698,-0.51144934,0.16694103,0.08998928,0.7265458,0.8938196,0.677395,0.031079117,0.9173323,-0.29736754,0.29031983,-0.35628605,-0.24121198,0.10272554,-0.1228727,0.5554238,-0.39271975,-0.15993138,-0.11554158,-0.14512363,-0.27101022,0.7894553,-0.564495,-0.31663784,0.0009933631,0.73688686,-0.31876463,-0.11059538,0.6977903,1.1520059,1.0432367,0.32275447,1.173952,0.44191965,-0.12530789,-0.17229971,-0.3098046,-0.53699017,0.3358626,0.23944439,0.14158854,0.40564823,0.03592035,0.058414236,0.4412643,-0.14760192,-0.26876423,-0.20615579,0.4880357,-0.04360096,-0.16193141,-0.35593772,-0.119441144,0.25929508,-0.0463216,0.23409039,0.38227692,-0.169921,0.50266504,0.26358438,1.1596273,-0.21725261,0.06273804,0.12896065,-0.04201096,0.206948,-0.19456221,0.080784515,0.5030368,0.19411787,-0.12047761,-0.5041112,-0.018250234,-0.16902551,-0.5407432,-0.13426927,-0.22386312,-0.20111644,-0.093184665,-0.2208309,-0.29244646,0.02401265,-0.52448124,0.38921434,-2.2530034,-0.034986686,0.0046217917,0.20475791,-0.28095508,-0.43954545,-0.14302984,-0.5285446,0.57705766,0.26811385,0.3744875,-0.36881498,0.3094565,0.3799198,-0.6457273,0.02420748,-0.7501003,-0.06777088,-0.17837554,0.4878545,-0.05263211,-0.27291864,0.14437285,-0.036137223,0.51029134,-0.009457417,0.1134692,0.41552848,0.46331337,-0.14706412,0.5179531,0.13250534,0.5533025,-0.35011023,-0.14652121,0.44173154,-0.4246465,0.40073448,-0.115710355,0.047967438,0.5364141,-0.23242283,-0.5091487,-0.4273955,-0.14759627,1.0765773,-0.4699438,-0.61007154,0.060142938,-0.0225963,-0.18069862,0.107806236,0.3490416,-0.028936792,0.08346542,-0.6028862,-0.049475987,-0.04874845,0.30877176,-0.11687279,0.20182374,-0.50778645,0.75244015,-0.17180735,0.53858614,0.580655,0.35925215,-0.26071766,-0.35970435,0.21767136,0.77138346,0.39254203,0.021414125,-0.37122366,-0.26117358,-0.096227266,-0.07962305,0.010388419,0.5825209,0.6054489,-0.13938135,-0.05156074,0.30429676,-0.3370182,0.13017415,-0.2019099,-0.36741048,-0.28453845,0.1512111,0.30308348,0.5795912,0.08099711,0.60145503,0.010708791,0.3391097,-0.14416252,-0.6755851,0.49144,1.2826592,-0.27460903,-0.24035726,0.53976125,0.4589829,-0.057861175,0.66474026,-0.55583215,-0.37475297,0.4067666,-0.10798985,-0.5010771,0.1802601,-0.29621506,0.18648614,-0.8330454,0.41456184,-0.39569974,-0.54764265,-0.70962,-0.13813391,-1.6189901,0.35794517,-0.3242276,0.028542832,-0.19479182,-0.20960681,0.20067401,-0.4988446,-0.5700279,0.17358986,0.23809108,0.3830296,-0.024988273,0.04642284,-0.31914207,-0.4837745,-0.02840589,0.41793036,-0.013023426,0.12745593,-0.17271648,-0.3882152,0.14200447,-0.13519715,-0.17260942,0.024431512,-0.59362465,-0.2477127,-0.22756936,-0.40805268,-0.240944,0.59293735,-0.42341122,0.04430135,-0.16310622,0.08430606,0.20171405,0.1530185,-0.02458295,0.22626221,0.2217162,-0.19987327,-0.19662826,-0.387826,-0.062444407,0.22330116,0.14766371,0.70843285,-0.14844906,0.22414891,0.37175968,0.7069551,-0.05130796,0.8859048,0.038428806,-0.25843367,0.32500148,-0.23553433,-0.14825344,-0.9172198,-0.31858715,-0.016836872,-0.52153915,-0.49820787,-0.11147489,-0.35595986,-0.779156,0.60940284,0.073249534,0.1680185,-0.0036900744,0.540163,0.42529225,-0.19769886,0.004551642,-0.17248067,-0.33609417,-0.33352312,-0.6001539,-0.785546,-0.5027852,0.19805014,1.3555739,-0.2453965,-0.18381329,-0.002607314,-0.2617886,0.012353007,0.2699979,0.04200429,0.11827068,0.28266582,0.3364141,-0.44519126,0.4940579,-0.049270514,0.12022112,-0.2869297,0.42625698,0.792219,-0.68989235,0.3575369,0.44413668,0.15282811,-0.04001197,-0.8147565,-0.14617285,0.29252484,-0.2309141,0.4292689,0.39331067,-0.68375015,0.5304607,0.27094954,-0.30519107,-0.8591005,0.17715573,0.049568925,-0.27576166,0.13370104,0.45842543,-0.0065482715,0.10139462,-0.3102238,0.27836198,-0.5528065,0.29969582,0.05831257,-0.08121667,-0.067425705,-0.07144405,-0.41615626,-0.9713753,0.0062182792,-0.6083521,-0.3869574,0.31263942,-0.07745349,0.102174014,0.219612,0.28753898,0.4561831,-0.3352375,0.1132726,-0.29416236,-0.1475613,0.5365902,0.63665605,0.48834705,-0.41333243,0.6467377,-0.05439609,-0.11125817,-0.33151418,0.067483515,0.29798865,0.22698785,0.49787617,0.12253332,0.057063643,0.17006314,0.83612967,0.25068358,0.40749872,0.068122566,-0.35768688,0.25695613,-0.04312216,0.3610561,-0.21606277,-0.49948052,-0.14595681,-0.054912537,0.19628695,0.37918898,-0.025472922,0.48308435,-0.18828464,0.031229619,0.1459961,0.07996281,0.050180618,-1.0174793,0.44318098,0.40340626,0.59753793,0.615236,0.12138246,0.06166839,0.54025763,-0.4669838,0.044471297,0.29357103,-0.16912186,-0.22289288,0.37491906,-0.66748464,0.19103906,-0.26201794,0.04861579,-0.0027918115,0.069108345,0.36116958,1.060528,-0.11157405,0.053017933,-0.11776,-0.24897623,0.17049289,-0.12787424,0.0020225819,-0.35094756,-0.60593057,0.74456537,0.15193668,0.6913602,-0.17210843,-0.08977359,0.35242096,-0.35825607,0.43057138,0.020468852,-0.018394217,0.020632207,-0.19961372,-0.14214684,0.5052275,-0.27401194,-0.041579105,0.1498801,-0.119895995,0.15047447,0.06738655,-0.15739915,0.013845205,-0.60444295,-0.026162315,-0.3210762,-0.36031553,0.4007173,-0.11989397,0.041656673,0.15667015,0.15240103,-0.24431251,0.12186906,0.16560678,0.6585959,0.20413412,-0.18738988,0.08265734,0.07331485,0.21032226,-0.34919497,0.09593678,0.06501552,0.37915862,-0.8994,0.35176447,-0.27547908,-0.44569778,0.094732225,-0.3967168,-0.23829536,0.49097258,-0.26514035,-0.16384178,0.23002933,-0.019693403,-0.17555371,-0.08816916,-0.2498473,0.16507614,-0.26903453,-0.023739954,-0.0970698,-0.03438832,-0.013519329,0.38998985,0.103663,-0.001938301,0.39567629,0.051652994,-0.5802402,0.04689824,0.36388403,0.39746213,0.10994217,0.09168782,-0.17605413,-0.29614466,-0.52017546,0.4048559,-0.08620733,0.17901236,-0.045344003,-0.49549708,1.1146792,-0.039173555,0.9926937,-0.18701994,-0.4243546,-0.056271728,0.56013936,0.001010702,0.04183374,-0.3493722,0.95603895,0.5837848,-0.090698354,-0.06473546,-0.67861503,-0.11139039,0.4073859,-0.4349215,-0.13680868,-0.0052376073,-0.69663936,-0.2407948,0.24844097,0.06382377,-0.026762828,-0.18607858,0.0054695187,0.1625517,0.26707196,0.24335614,-0.6577562,-0.028799307,0.25074774,0.14470088,0.00053920463,0.23447905,-0.3567193,0.2899797,-0.8412899,0.3864364,-0.25440937,-0.08330078,-0.0056174994,-0.13184851,0.25703645,0.2353412,0.13299365,-0.3557361,-0.3517239,-0.0971134,0.40034848,0.21688746,0.23683722,0.84364027,-0.26179594,-0.03546462,0.09243445,0.57048225,1.310702,-0.19979486,-0.21985458,0.1719507,-0.3928933,-0.74015784,0.1393549,-0.3951491,-0.038088996,-0.12695377,-0.4945033,-0.4385137,0.257605,0.13488398,-0.06899316,0.1276536,-0.63974625,0.0025445293,0.1725585,-0.33500683,-0.11857651,-0.06104055,0.17337415,0.78571665,-0.34899694,-0.31674033,-0.09335994,0.15249932,-0.43310383,-0.4687673,0.17626512,-0.32291687,0.2713428,0.24189949,-0.34230062,0.08746795,0.23813884,-0.5971222,0.059614625,0.30249402,-0.21707419,0.015714375,-0.30324292,0.17977664,0.66443133,0.12574999,-0.008465115,-0.26304126,-0.66704965,-0.66996354,-0.41457248,-0.22709727,0.10703011,0.031206857,-0.75910467,0.013844069,-0.494156,-0.10334004,-0.0045515685,-0.5732123,0.46338344,0.25122356,0.32961532,-0.26543757,-1.1128354,0.34056455,0.09256088,-0.09960097,-0.4064118,0.32871577,-0.20920579,0.77198035,0.1769584,0.01636968,0.15629321,-0.92843705,0.3133613,-0.34411,-0.17365706,-0.69627684,-0.008424696,243 -8,0.4122613,-0.19398597,-0.6191717,-0.1567692,-0.57948446,0.17145906,-0.31865284,0.34016982,0.1669045,-0.21606337,-0.13918576,-0.06720222,0.0334887,0.38526943,-0.07210663,-0.54733133,-0.2427981,0.14479941,-0.85172486,0.48438478,-0.49179867,0.40053725,0.15274923,0.23480794,0.25684375,0.51157826,0.24442628,-0.017483557,-0.23695895,0.12590624,-0.11724714,0.1173373,-0.4358417,0.10660543,-0.23533513,-0.2872273,-0.04527014,-0.3222431,-0.184706,-0.59170014,0.15471762,-0.74421954,0.43941674,-0.2162813,-0.025699416,0.0502917,0.3318642,0.39000726,-0.37151003,0.15272897,0.24438463,-0.2300792,-0.15365888,-0.32631484,-0.14159511,-0.37491372,-0.3759586,-0.11065391,-0.67503536,-0.26455542,-0.10915891,0.2699544,-0.22523521,0.1961572,-0.02956523,0.23659195,-0.4646455,0.12507534,0.2324865,-0.18194816,-0.034834057,-0.4970992,0.014234873,-0.1328415,0.53399694,0.022210944,-0.17266452,0.41843107,0.24154565,0.30913287,0.31431714,-0.28570405,-0.3231903,-0.23754317,0.23035656,0.33990788,-0.12036772,-0.16029362,-0.1989199,-0.003845811,0.37932277,0.24217252,-0.03199174,-0.29290658,-0.041094076,-0.11460602,-0.24271926,0.3407054,0.44595546,-0.22792765,-0.2345754,0.3276179,0.48039514,0.22350104,-0.38283437,-0.0019766758,-0.09707782,-0.4415764,-0.13071921,0.13588628,0.11811037,0.40011716,-0.10993238,0.118355006,0.7947716,-0.115602955,-0.021213213,-0.07065385,0.062289204,-0.1846877,-0.25959685,-0.06092104,-0.027537528,-0.5530824,-0.049110733,-0.14562477,0.64637923,0.111982696,-0.75305647,0.32797518,-0.4723468,0.12569329,-0.11631462,0.4699866,0.6791695,0.40462878,0.14065844,0.7541996,-0.1985175,0.2694418,-0.20019655,-0.34262487,-0.052589044,-0.21370281,0.024497068,-0.5492035,0.23277803,-0.1214649,0.11214985,0.0828463,0.48776218,-0.42010555,-0.107173525,0.21098721,0.72826236,-0.40564847,-0.09222987,0.62727237,1.0436317,0.9093545,-0.011528967,1.1192037,0.39228013,-0.25933367,0.093753874,-0.49228,-0.40271008,0.16137569,0.30503306,0.11169953,0.32810804,-0.05493722,0.02694802,0.4162441,-0.33166152,0.06537309,0.04374234,0.25017998,0.15820971,0.037957687,-0.3275225,-0.14320002,0.15654793,-0.020503718,0.14287184,0.2700121,-0.28993392,0.40859103,-0.07102671,1.4809667,0.012523576,0.013207669,0.1336063,0.5558291,0.23047459,-0.11339086,-0.026244858,0.43167162,0.47760773,-0.12873152,-0.53881437,0.20638621,-0.33755776,-0.508724,-0.15700145,-0.45011118,-0.19321088,0.03987813,-0.5255967,-0.25014737,0.077426404,-0.27215183,0.37353218,-2.8585458,-0.30503827,-0.19077852,0.22812603,-0.33358246,-0.29877764,-0.2227194,-0.49310717,0.23648411,0.24643834,0.3519331,-0.52621573,0.583009,0.38515344,-0.4396999,-0.16011332,-0.57720476,-0.015956573,-0.034436017,0.42295462,-0.07982575,-0.03492948,-0.12611106,0.09739409,0.6569356,-0.16725641,0.22782099,0.5559511,0.33582345,0.15274017,0.6300013,0.08199797,0.5718502,-0.41493902,-0.2405721,0.31592005,-0.21651153,0.1873383,-0.035167053,0.11789964,0.51065296,-0.4379909,-0.83956695,-0.5743119,-0.15714885,0.9850605,-0.4626715,-0.36563084,0.25947505,-0.053240236,-0.1326184,0.11177458,0.51575863,-0.071616605,0.14551789,-0.6736889,0.19036284,0.050288383,0.19131206,0.021239476,-0.08398393,-0.24913254,0.6862416,-0.032827917,0.6043957,0.26895708,0.25045338,-0.115311444,-0.22091314,0.14623001,0.83909935,0.28016198,-0.0045852703,-0.1750061,-0.3297453,-0.18674208,-0.26538977,0.14118946,0.35433173,0.5389365,0.07451178,0.20275587,0.1978721,-0.11303015,-0.028613843,-0.18143384,-0.09472468,-0.034859452,0.1498544,0.4367964,0.603384,-0.034117192,0.5973212,-0.2029306,0.3890879,-0.12350607,-0.6381972,0.5409519,0.43159646,-0.21944681,-0.17402093,0.52989244,0.5782056,-0.29206324,0.41363117,-0.7013375,-0.40697742,0.6290742,-0.23110086,-0.35236335,0.18656245,-0.25596166,0.06701339,-0.72772384,0.14743304,-0.2289994,-0.3355953,-0.4032952,-0.32071975,-3.2425842,0.11370698,-0.0047433325,-0.1893723,-0.12420626,-8.0185775e-05,0.28630996,-0.6599277,-0.41849366,0.11005622,0.1879131,0.59982985,0.014813115,0.009969862,-0.25502726,-0.203467,-0.07155302,0.23150328,-0.029565763,0.31232905,-0.18168275,-0.52083766,-0.061055142,-0.07960339,-0.486881,0.17463693,-0.44258058,-0.35225415,-0.1087713,-0.28807202,-0.23177026,0.51914644,-0.39169496,0.0021370754,-0.31425086,0.05486981,-0.18794961,0.13883854,0.2237585,0.2017011,0.20938236,0.013969292,0.1473657,-0.38969457,0.37127662,-0.049337957,0.3093342,0.2864197,0.14442702,0.19188553,0.34987342,0.54758203,-0.17814058,0.9042266,0.32739273,-0.047225688,0.2930842,-0.15729606,-0.18745717,-0.55490303,-0.36364374,-0.20543724,-0.38612092,-0.44814733,0.0050179134,-0.33705524,-0.8010187,0.5769064,-0.033601467,0.22665776,-0.13781586,0.25066844,0.38744938,-0.23325913,-0.051762067,-0.0807493,-0.15129286,-0.44411996,-0.47275913,-0.59869534,-0.59456915,0.014217156,0.9801221,-0.24869728,-0.023693562,-0.15023942,-0.32106027,-0.028552823,0.21542951,0.15098555,0.39896047,0.4088475,-0.10098141,-0.7114424,0.42744985,-0.26704282,0.0014104071,-0.49270794,0.11433374,0.43761757,-0.57640284,0.50076437,0.3132652,0.2317715,0.08395665,-0.47658843,-0.17029908,-0.06985151,-0.21182524,0.49718392,0.21138608,-0.78639627,0.5637231,0.086094506,-0.40832824,-0.7527537,0.3211135,-0.015111485,-0.3056476,-0.06336047,0.326272,0.1590844,-0.13404283,-0.24000692,0.15539552,-0.41074058,0.27294853,0.3257602,-0.060040362,0.26437137,-0.13277057,-0.32007912,-0.59428895,-0.111323565,-0.2798569,-0.30685097,0.18739456,0.025561323,0.091602005,0.17117652,0.015304874,0.30351076,-0.23116265,0.0993991,-0.08522712,-0.25059915,0.2150984,0.36270618,0.3523084,-0.35441366,0.5070634,0.06257901,-0.18434298,0.06632655,0.025361545,0.33544812,0.09006647,0.38520768,-0.14689973,-0.25872353,0.4386623,0.55378354,0.21706943,0.2737789,0.04565022,-0.35867608,0.29728934,-0.009994478,0.055915404,0.0013876803,-0.42130986,-0.069344774,-0.0062520434,0.26059195,0.5104534,0.2009614,0.40442213,0.10241823,-0.0042018853,0.14816745,0.08530315,-0.040396065,-1.1935307,0.2873949,0.2768434,0.7729899,0.4066744,0.0073549044,-0.21452273,0.64272934,-0.3821755,0.050696667,0.36082894,-0.0571335,-0.36255002,0.62581396,-0.6369075,0.50513536,-0.1526032,-0.13617444,0.1802157,0.17122065,0.24866708,0.89159,-0.12251113,0.11066243,0.18776016,-0.3254629,-0.017687831,-0.1600882,-0.043286633,-0.51185274,-0.40832162,0.7190528,0.2565537,0.3845052,-0.16720992,-0.0919089,-0.018484892,-0.22179136,0.100177094,-0.055077933,0.11169118,0.106819965,-0.419327,-0.25711587,0.51086426,-0.01430847,0.20422405,0.009921022,-0.36722773,0.042980343,-0.20007756,0.020418601,0.0082852915,-0.53187525,-0.043316703,-0.15535699,-0.51960355,0.36656097,-0.18826768,0.23017663,0.12986867,-0.10427719,-0.19973382,0.38779318,0.08525443,0.758402,0.023969742,-0.19755742,-0.20300052,-0.05491785,0.3680402,-0.19079278,0.12087105,-0.42537975,0.03157439,-0.62824935,0.58692354,-0.13788275,-0.44494152,0.2920193,-0.18927962,-0.004813552,0.4696991,0.030986238,-0.09952984,0.0984254,0.084294304,-0.39137968,-0.116245106,-0.40511823,0.2374608,0.14934127,0.008321404,-0.067195736,-0.16707027,0.039341897,0.58597946,0.0034699598,0.41928017,0.26357102,0.019220976,-0.20756397,0.12128749,0.19651738,0.36695832,0.04707644,0.03656107,-0.41529918,-0.3758689,-0.3557425,0.24111602,-0.14863716,0.11001155,0.05410334,-0.24329048,0.8957939,-0.15983538,1.1349516,0.16120803,-0.32093573,0.21250737,0.40445787,-0.016847365,0.16066253,-0.32531276,0.68097633,0.57439756,0.0047500976,-0.142743,-0.3487893,-0.12712675,0.33638024,-0.33142185,-0.023241583,-0.043546773,-0.5635321,-0.5273782,0.14588629,0.043806423,0.1356157,-0.03415185,0.02012672,0.08627435,0.119660184,0.36047867,-0.6168076,-0.16317368,0.18301946,0.25464192,-0.12652464,0.26562032,-0.49002194,0.50042486,-0.72366667,0.059606805,-0.3374387,0.14745939,-0.084895864,-0.25839892,0.1405344,0.08995579,0.34554976,-0.2872235,-0.355464,-0.25562045,0.59175444,-0.050237473,0.21325988,0.51634943,-0.30539697,0.071476825,0.14870164,0.46716422,1.1255665,-0.5084717,0.034310993,0.33837858,-0.32562235,-0.5947211,0.30466154,-0.36416298,-0.05227763,0.007706488,-0.46469873,-0.2502483,0.40031168,0.101282164,0.109231345,0.14542973,-0.46554688,0.049777865,0.37716663,-0.22703299,-0.3000948,-0.12864892,0.25318074,0.66856825,-0.33845627,-0.2336659,0.074517824,0.34889817,-0.28859532,-0.3588004,0.037595153,-0.23095362,0.44134447,0.12312104,-0.11978315,-0.118842855,0.13811214,-0.40383917,0.042033643,0.36192498,-0.3824988,8.280838e-05,-0.23275498,-0.032704767,0.8453652,-0.10053263,-0.006670665,-0.702881,-0.4340173,-0.7890283,-0.42197374,0.07423956,0.18403842,-0.1248542,-0.42076993,-0.009364581,-0.07682953,-0.23563181,0.10388505,-0.5186236,0.441207,0.111750394,0.41718125,-0.15358904,-0.9215111,-0.06503879,0.019360589,-0.27575144,-0.5064532,0.5750111,-0.23371397,0.8161931,0.022409547,-0.10215564,0.031781208,-0.3793448,0.37275025,-0.4281873,-0.104642205,-0.69917464,0.039884195,338 -9,0.3936746,-0.18311538,-0.41547486,-0.17173803,-0.2672259,0.12780501,-0.18199413,0.2093463,0.08871172,-0.21741351,-0.13882837,-0.15895769,-0.06855543,0.37911904,-0.10385078,-0.6800562,-0.19662607,-0.019178264,-0.74021596,0.4456239,-0.60135955,0.43313712,0.16770303,0.19748496,0.009831274,0.53215283,0.3206888,-0.26326728,-0.06362379,0.031666137,-0.07825661,0.08645564,-0.43347853,0.055249978,-0.09782757,-0.15630753,0.08571226,-0.2951654,-0.32859576,-0.58902186,0.34078476,-0.6549716,0.32905784,-0.06400811,-0.07814741,0.10409463,0.305062,0.44431865,-0.33808446,0.10826135,0.1900166,-0.15877785,-0.08509118,-0.24963541,0.0036159193,-0.41323286,-0.396941,0.0057408772,-0.6102721,-0.4420624,-0.057390388,0.17349057,-0.3170887,-0.025863664,-0.11856335,0.38574815,-0.3698914,-0.048397418,0.37992495,-0.13369821,0.27970904,-0.61863947,0.033189215,-0.064375944,0.42499664,0.02564961,0.041147493,0.3963826,0.28915754,0.38703328,0.22313438,-0.25127006,-0.19525975,-0.21250631,0.26855686,0.3695251,-0.19617002,-0.23846708,-0.14472511,0.15322079,0.02792553,0.27238038,-0.0702626,-0.31316125,-0.025736328,0.0099695865,-0.29244053,0.43573394,0.5955186,-0.24110898,-0.39664066,0.30569714,0.65941566,0.11324738,-0.2556187,-0.030133262,-0.072776474,-0.42604375,-0.08565914,0.24546537,-0.060305882,0.39943814,-0.05984539,0.1782811,0.79676104,-0.113632016,0.018518336,-0.27163544,-0.20680203,-0.117601156,-0.16202363,-0.008826067,-0.06686615,-0.5857747,-0.09038272,-0.25003582,0.6548223,0.20070507,-0.7121824,0.4126515,-0.4095644,0.18197969,-0.09568734,0.53102267,0.65174246,0.22372887,0.17410961,0.80290985,-0.45217386,0.1433594,-0.09599462,-0.5137825,0.017139912,-0.15192893,0.05082189,-0.48452008,0.076007284,-0.18399785,0.08096194,-0.054985393,0.17909864,-0.50688374,0.019114831,0.17369537,0.7919638,-0.33614135,-0.0037409489,0.4952516,1.1043366,0.88971496,-0.03554515,1.1494851,0.3311042,-0.32258344,0.31879807,-0.7033673,-0.5141791,0.17863248,0.44412696,0.24332285,0.34057823,-0.15234879,-0.028910875,0.3748255,-0.39420065,0.16493252,-0.09386108,0.23941539,0.1792105,-0.027972838,-0.27513814,-0.06584142,-0.048639655,0.0019773666,0.1407703,0.14449762,-0.27704218,0.30995825,-0.087172285,1.2710466,-0.07703965,0.17878053,0.04757633,0.47720656,0.13369791,-0.11652807,-0.026934918,0.44944814,0.4569597,-0.017861502,-0.6994508,0.19848628,-0.41964895,-0.4070376,-0.22375576,-0.4266952,0.0022751584,0.21586165,-0.37352005,-0.15922198,0.028458336,-0.2619252,0.3737166,-2.9559078,-0.20453134,-0.27868053,0.22585592,-0.42556548,-0.16574113,-0.041662596,-0.56618357,0.3149053,0.40462518,0.44072545,-0.52714103,0.52696186,0.3993838,-0.34891057,-0.11152234,-0.550858,0.016120581,-0.1331426,0.5116986,0.005499206,0.01523933,-0.15167674,0.18556575,0.6054857,-0.05224492,0.08054104,0.35324472,0.38063228,0.16751096,0.6367192,0.03893323,0.5538866,-0.28470477,-0.09304088,0.4074386,-0.21380974,0.12485719,-0.18091641,0.13712645,0.37392756,-0.42142394,-0.77461004,-0.61332977,-0.4365902,1.0956417,-0.34135222,-0.2849917,0.28587666,-0.015562689,-0.01011204,-0.051319584,0.527911,-0.0062532984,0.1753271,-0.67063314,0.25148654,-0.078017555,0.12753671,0.02371671,-0.07926772,-0.29218656,0.6620526,-0.023294313,0.55823374,0.22528337,0.25123295,-0.11707885,-0.38460648,0.06652727,0.8973904,0.32760534,-0.030315153,-0.049586814,-0.27908647,-0.049455322,-0.20857221,-0.01966116,0.40029478,0.7148655,0.088712275,0.11331297,0.2680614,-0.14760101,0.014435971,-0.07336948,-0.18597268,0.047448363,0.0045050173,0.43627667,0.4513536,-0.09800631,0.4683663,-0.19563943,0.24342217,-0.07638005,-0.47775823,0.6152923,0.5470623,-0.162008,-0.12777098,0.36207595,0.49670723,-0.35244772,0.4134604,-0.65351725,-0.2699564,0.7331949,-0.28607315,-0.3651612,0.17284772,-0.19610034,-0.0022698115,-0.7727821,0.27268198,-0.38681042,-0.3784616,-0.4019045,-0.21642078,-3.743237,0.14747682,-0.23800892,-0.23504601,-0.08058852,0.09975662,0.28856444,-0.6203916,-0.3070912,0.08258778,0.21568263,0.46829468,0.07684914,0.07420307,-0.24319753,0.008296132,-0.16626999,0.17441264,0.033062823,0.18115325,-0.146376,-0.45469904,0.05805111,-0.12861082,-0.52133965,0.17027421,-0.25789398,-0.4104889,-0.1629853,-0.39315864,-0.1754057,0.5908814,-0.276923,0.06620381,-0.22792244,0.07540143,-0.13707034,0.2140251,0.09375409,0.2259465,0.13727006,-0.08045605,0.057857715,-0.5039713,0.45310792,-0.015505322,0.39646846,0.18330856,0.028730523,0.13416924,0.35299557,0.4694435,-0.16674128,0.7912158,0.4190895,-0.11040533,0.28188077,-0.27531078,0.009229843,-0.53472656,-0.46739027,-0.053030476,-0.33566356,-0.6623628,-0.07483677,-0.3479758,-0.73186547,0.48368803,-0.090377316,0.32455465,-0.061142493,0.2556689,0.34860978,-0.18726638,0.06264604,-0.17610775,-0.156239,-0.4870358,-0.3393852,-0.6057992,-0.509457,0.08449575,0.7715564,-0.25158894,-0.07145516,-0.30354357,-0.24137735,-0.019717686,-0.08067863,0.13273266,0.3863913,0.2392708,-0.12495964,-0.60199434,0.52188814,-0.16805449,-0.09283056,-0.5195217,0.057031635,0.58226043,-0.5490984,0.54251635,0.25269046,0.07613124,0.09080979,-0.37136292,-0.15464675,0.034479737,-0.27342582,0.4883182,-0.02913713,-0.73683137,0.44267598,0.2148376,-0.40270606,-0.7130211,0.30512607,-0.03154402,-0.33772972,0.023617804,0.23222195,0.116335556,-0.06909864,-0.27045655,0.08772605,-0.4073944,0.17476118,0.18070412,-0.026116157,0.3304155,-0.1667719,-0.2709538,-0.6715969,-0.015945021,-0.42754623,-0.18827543,0.2743288,0.021064132,0.06730814,0.12146797,0.03209551,0.388184,-0.04986791,0.15113685,0.15241644,-0.3200037,0.22431228,0.41994068,0.23550373,-0.45793232,0.46932092,0.08354974,-0.22744098,0.0121905245,0.050679415,0.46250182,0.16538633,0.28241226,-0.13125369,-0.18610346,0.53156304,0.70979106,0.17467283,0.42566532,0.18803053,-0.25780845,0.37647605,-0.018784083,-0.021515526,0.121251695,-0.3934997,-0.080593415,0.11825232,0.22618905,0.5018752,0.344609,0.44536796,0.026636595,-0.15135156,0.048541993,0.29858637,-0.06841543,-0.8558382,0.32748425,0.26562658,0.81563354,0.3115024,0.028938452,-0.21528654,0.6308352,-0.2679245,0.08168381,0.37333533,-0.10437343,-0.50655264,0.6866937,-0.6122785,0.42236742,-0.1969662,-0.13150875,0.049354583,0.18633491,0.2736512,0.76714987,-0.1266278,0.04860316,-0.073779464,-0.22883612,0.078441694,-0.2544554,0.07379083,-0.34890652,-0.34736723,0.55803007,0.30008298,0.21382557,-0.09503891,-0.04201095,0.0006711869,-0.14171284,0.2451244,-0.111439675,0.0696787,0.06117414,-0.6004842,-0.31405166,0.4348439,0.024286166,0.24234547,-0.06909065,-0.22274333,0.047423147,-0.25999415,-0.017522208,0.02348959,-0.5229406,0.023870446,-0.0061499653,-0.4561833,0.40994942,-0.3455113,0.15584555,0.18659317,0.0039429157,-0.3233569,0.22193839,0.1012437,0.73489875,0.04045197,-0.20574951,-0.48337364,-0.012060192,0.271158,-0.26543447,0.11173094,-0.42081878,-0.03786474,-0.5856384,0.6127478,-0.16951638,-0.32303938,0.23420732,-0.28942013,-0.044190325,0.6242663,-0.157999,-0.15543534,0.19569753,-0.16896504,-0.38028708,-0.032846842,-0.298475,0.19131619,0.21374424,0.09352708,-0.10769744,-0.1543342,-0.059739042,0.5268839,0.10725298,0.37597102,0.15593913,0.059961677,-0.23729862,0.009245473,0.19020994,0.3235762,0.25275564,0.034760293,-0.31250083,-0.44699726,-0.25780463,0.11902896,-0.042709477,0.20271191,0.03818682,-0.42556947,0.744458,-0.04382618,1.2170621,0.2145637,-0.19561616,0.06546351,0.40956587,-0.008368085,0.16343959,-0.42691883,0.6763338,0.6521657,-0.016866338,-0.098490566,-0.30016506,-0.09931912,0.3059166,-0.33246517,-0.018612504,-0.004026816,-0.556497,-0.47384048,0.19669542,0.16554415,0.09801392,0.035966065,-0.11927511,-0.053268902,0.038453877,0.4745786,-0.53074735,-0.172418,0.16961718,0.1501661,-0.06641011,0.12638173,-0.32991543,0.5355024,-0.5883733,0.08747729,-0.28119275,0.023430975,-0.12757318,-0.23374093,0.1561392,-0.07532205,0.36630872,-0.18801716,-0.5029967,-0.022851668,0.5694704,0.091357134,0.22550967,0.67788035,-0.27404168,0.11011348,-9.9185636e-05,0.52894884,1.2314218,-0.40938288,0.05811813,0.2562301,-0.4039621,-0.6229368,0.43374118,-0.21983974,-0.045810614,-0.108904086,-0.4880916,-0.2554925,0.36410922,0.10245361,-0.035526562,0.10289311,-0.5019479,-0.26784086,0.39853516,-0.3702648,-0.2990614,-0.18251832,0.4374742,0.7116259,-0.372687,-0.24642193,0.069137335,0.40147278,-0.3457411,-0.3666892,-0.02177916,-0.10328949,0.3968439,0.16343737,-0.121069625,-0.017504832,0.24176347,-0.35234588,0.17327486,0.16591746,-0.44327316,-0.05843892,-0.047550373,-0.13372326,0.7871533,-0.1929488,-0.13742508,-0.73592275,-0.41333362,-0.9261804,-0.5908947,0.38292584,0.1399237,-0.0034239152,-0.30145752,-0.06225708,0.007347696,-0.025187591,0.004032135,-0.56643414,0.2692199,0.09785592,0.5832443,-0.19856274,-0.7664836,-0.053394362,0.15267862,-0.14725792,-0.6551251,0.54252696,-0.12639314,0.79422337,0.023968395,0.01826171,0.12584718,-0.36921456,0.14503877,-0.41647217,-0.26311943,-0.8675416,0.16711934,359 -10,0.4061044,-0.11393451,-0.51231676,-0.28111187,-0.4842675,0.012623429,-0.30313617,0.2578685,0.21295628,-0.21146104,-0.21540451,0.06981294,0.05174367,0.26644385,-0.11058598,-0.66882914,-0.01661117,0.18920717,-0.7282622,0.5507897,-0.5121731,0.29677728,-0.008467366,0.34098825,0.12748054,0.4814534,0.14040048,0.061056823,-0.12866873,0.054992314,0.00921572,0.34314233,-0.5812936,0.09023236,-0.19282486,-0.28040624,0.024665605,-0.31628257,-0.1732033,-0.6613978,0.06416743,-0.8434659,0.5332183,-0.15642202,-0.19171108,-0.08838757,0.41776377,0.52229005,-0.37875745,0.17061235,0.25930566,-0.27500725,-0.1384382,-0.33470076,-0.0799726,-0.5510041,-0.5021815,-0.09909784,-0.76861906,-0.3270473,-0.21611217,0.2179231,-0.23589201,-0.03412286,-0.14907998,0.24279982,-0.5138257,0.09462898,0.258486,-0.08980951,0.22273172,-0.4448903,0.036652397,-0.12528878,0.36677355,0.015453931,-0.20733058,0.40959558,0.258497,0.39911357,0.2996641,-0.3077097,-0.30964178,-0.19888012,0.28783795,0.24590215,-0.10612127,-0.101977415,-0.40298247,-0.01032459,0.42907742,0.4490619,0.07007766,-0.15888268,-0.07911668,-0.09452296,-0.104978524,0.47401962,0.44787928,-0.23721807,-0.2681291,0.31159145,0.6238579,0.24245605,-0.43263984,0.056601062,0.0059980643,-0.4320399,-0.21121132,0.16134945,-0.09184896,0.39037928,-0.1656937,-0.019818993,0.9187886,-0.18480277,-0.0007286668,0.018304924,0.11502326,-0.15275495,-0.24018657,-0.12607448,0.067657344,-0.6266468,0.00255722,-0.2376153,0.52960634,0.049719706,-0.62773514,0.1718708,-0.53558016,0.20811583,-0.09231615,0.6605573,0.7611679,0.53684247,0.28127453,0.6904879,-0.11791151,0.26432934,-0.1458474,-0.4295142,0.14885002,-0.2921822,0.09774321,-0.53426516,0.07059892,-0.24959329,0.028615776,0.08032592,0.51238775,-0.48905876,-0.018360615,0.1994623,0.77709585,-0.40427917,-0.0344261,0.62612,1.0856283,0.9846751,0.007936706,1.2040962,0.3911581,-0.15008682,-0.008312281,-0.4186182,-0.46300253,0.14449944,0.36032286,-0.17669374,0.3947639,-0.11065855,0.093758054,0.31189036,-0.48974812,0.10384517,0.036975436,0.41259772,0.083907396,-0.11200631,-0.33854955,-0.06325908,0.14611787,0.0751973,0.17217535,0.24184474,-0.29957658,0.3845855,0.026323633,1.3726131,0.049095202,0.036055487,0.0752185,0.57609314,0.29795814,-0.136452,0.082499005,0.52064145,0.24625222,0.0015972572,-0.5721853,0.20697062,-0.34336966,-0.47361407,-0.2318593,-0.4709165,-0.10968668,-0.07302517,-0.40360045,-0.17650315,-0.08002027,-0.23996174,0.36952156,-2.5850625,-0.23029317,-0.08802398,0.3974704,-0.17296861,-0.20812844,-0.08547764,-0.53868306,0.2966116,0.30158436,0.4281463,-0.56862015,0.5928972,0.611613,-0.5128117,-0.07181012,-0.69738936,-0.17767376,-0.1292264,0.5160482,0.054544274,-0.054958396,-0.10638099,0.32434055,0.6876554,-0.092849106,0.20282693,0.5335442,0.24012358,-0.00094933016,0.5904138,0.11435691,0.52731246,-0.19015156,-0.2558199,0.35665008,-0.3050335,0.23607355,-0.06790823,0.008538804,0.60480034,-0.42311174,-0.9357032,-0.5554297,-0.2645564,0.9790867,-0.41325647,-0.48037955,0.12404747,-0.21613492,-0.19105367,0.09981069,0.53939,-0.17411993,0.25213584,-0.7872996,0.150676,-0.07163777,0.24585775,0.0040910053,0.078942716,-0.32927138,0.69254065,-0.12863988,0.63424414,0.1720143,0.23513177,-0.21658082,-0.39174855,0.16919926,0.90427196,0.42433333,-0.11324833,-0.23182958,-0.33998275,-0.058009386,-0.17360622,0.12781943,0.4763272,0.62978506,-0.15032086,0.28217012,0.354662,-0.15116796,-0.09138701,-0.23182446,-0.15529881,0.0379063,0.14080516,0.49194145,0.844854,-0.16179584,0.45479083,-0.2371155,0.38325593,-0.04125734,-0.6566228,0.5574353,0.39216006,-0.19523917,-0.15077828,0.64540106,0.5179726,-0.42363238,0.58650523,-0.759185,-0.30678785,0.65751946,-0.1144749,-0.29112646,0.20004569,-0.36657974,0.2596936,-0.745513,0.37511775,-0.30580184,-0.36958963,-0.5181489,-0.25615963,-2.9341998,0.073697746,-0.07004651,-0.13457693,-0.30623677,-0.079535894,0.24659608,-0.6653886,-0.6661518,0.029912269,0.16194107,0.5763383,-0.07629565,0.058976356,-0.22696744,-0.34461856,-0.14380087,0.29241252,0.06603287,0.29771462,-0.23005639,-0.58223903,-0.058157165,-0.12813558,-0.61761904,0.080288395,-0.42750955,-0.3998325,-0.09088826,-0.48207957,-0.16354366,0.51942784,-0.27197483,0.031169927,-0.3365564,-0.025001705,-0.107233495,0.1856731,0.28291705,0.18201691,0.2627531,0.050964385,0.04447355,-0.36949894,0.31787166,-0.11137869,0.32264867,0.17828687,0.03778121,0.26637965,0.45792955,0.549375,-0.29607368,1.0049539,0.33497226,-0.11896173,0.23555453,-0.3041763,-0.3314069,-0.64071137,-0.3654363,-0.22890483,-0.43519875,-0.47368297,0.054134592,-0.35510153,-0.8676001,0.6590142,0.02046273,0.3375531,-0.21592711,0.2631365,0.40791008,-0.11426443,-0.16869698,-0.038912747,-0.3031381,-0.5112066,-0.39865866,-0.69475627,-0.5120005,0.083192386,1.0337185,-0.32225126,0.077855885,-0.01894554,-0.23063906,-0.03139263,0.18103631,0.015318267,0.24591163,0.42227054,-0.03377362,-0.62717265,0.37917703,-0.013939507,-0.05953593,-0.46648183,0.050413404,0.6307879,-0.7642396,0.54438776,0.38771325,0.0944391,0.030100612,-0.5864343,-0.09349978,-0.10304125,-0.22952046,0.5551653,0.2269155,-0.74185216,0.54670423,0.13921508,-0.35726935,-0.6990462,0.37195942,-0.14875038,-0.31186378,-0.018242078,0.2804451,0.099979684,-0.08130947,-0.32299536,0.20822367,-0.3747748,0.27877185,0.37469044,-0.14417572,0.3126121,-0.15953523,-0.31484357,-0.7416722,0.04028535,-0.4973704,-0.3182289,0.1831014,-0.0668067,-0.0905757,0.20524803,0.07775897,0.30690905,-0.22354788,0.059304498,-0.051411103,-0.32976636,0.19563878,0.48240638,0.3980979,-0.3645713,0.55140954,0.20182383,-0.20181015,-0.00085160485,0.028622834,0.398581,-0.078267306,0.42032507,0.027026042,-0.12367565,0.4058581,0.48008996,0.21507514,0.48147702,0.14295956,-0.27160996,0.3479348,0.021263689,0.10700786,-0.10134249,-0.36774424,0.099227585,-0.17688325,0.1858419,0.46733183,0.3680123,0.4458945,0.08688447,-0.056731038,0.08493589,0.24022831,-0.107938714,-1.5752206,0.31743094,0.34849602,0.79497737,0.4567657,0.18685006,-0.20003772,0.6184456,-0.47592023,0.041341275,0.50976616,0.09975618,-0.3621507,0.7403251,-0.6943228,0.48422655,-0.13775851,-0.07908985,0.09192805,0.15232491,0.4422714,0.9208973,-0.12230468,0.13951345,0.015277766,-0.2551064,0.17603509,-0.24775477,-0.046401262,-0.42126232,-0.3784545,0.72538215,0.2512027,0.4138624,-0.18523057,-0.053911045,0.03806082,-0.32431895,0.28067684,-0.07988324,0.05319924,0.080248505,-0.28282252,-0.28705856,0.44065025,-0.15594558,0.118836306,-0.016963854,-0.35104448,-0.00661147,-0.09788628,0.09915839,0.045855295,-0.58977115,-0.111792006,-0.09282665,-0.4845972,0.59748936,-0.269551,0.062150605,0.16302884,-0.027720852,-0.2637024,0.20972522,0.0748383,0.5609723,0.087871775,-0.2501412,-0.092570744,0.035750583,0.33604407,-0.3070217,0.15523833,-0.3358289,0.20261894,-0.6340395,0.54436654,-0.17290433,-0.51374125,0.18098472,-0.2660676,-0.047007933,0.3883885,0.014362363,-0.31698993,0.12058345,-0.15434498,-0.35823086,-0.1407453,-0.34277987,0.20460075,0.08296888,-0.10944772,-0.19088042,-0.10103217,0.06353102,0.5873337,-0.059599113,0.42136765,0.29428184,-0.07246484,-0.34728914,0.14390399,0.21841791,0.35141373,0.046976924,0.15066902,-0.28660032,-0.39545086,-0.3427853,0.29485434,-0.23731677,0.14315043,0.16019782,-0.26598418,1.0523114,0.0035301237,1.2981788,0.117401965,-0.41041943,0.12801956,0.4144492,-0.1124832,0.13051589,-0.38249475,0.84356755,0.6417418,-0.16864349,-0.10678876,-0.5251222,-0.14859538,0.28419444,-0.36183152,-0.21720812,-0.06918398,-0.6511346,-0.4490503,0.21292919,0.17953622,0.20885971,-0.052211236,0.002896905,0.15891762,0.14132826,0.2754149,-0.5980054,-0.17819656,0.2602692,0.2279067,-0.10833044,0.17307441,-0.4535743,0.47042012,-0.61472476,0.09639828,-0.32580617,0.19003327,-0.2731299,-0.43666464,0.18406975,0.018735433,0.29557183,-0.27277017,-0.43338045,-0.073111095,0.49398625,-0.044755157,0.22425807,0.60835826,-0.3440987,0.059195366,0.010035094,0.40694317,1.2915965,-0.44248322,0.032216955,0.3657741,-0.40470248,-0.7105464,0.33215243,-0.4677832,0.014163305,-0.083933696,-0.61981356,-0.4320001,0.25601447,0.0052552433,0.056549057,0.09636813,-0.39283448,-0.003875473,0.31593665,-0.24938115,-0.16803864,-0.09596125,0.24154495,0.6898974,-0.36657307,-0.27471572,0.1137318,0.32644367,-0.3206656,-0.30894315,-0.052648015,-0.05427259,0.50479233,0.013074647,-0.28773728,-0.012803011,0.16326806,-0.4153854,0.022838509,0.53439444,-0.26386106,0.056894284,-0.3614373,0.051178467,0.8943249,-0.20342968,-0.12566167,-0.4779346,-0.49061045,-0.8627881,-0.3990478,-0.012246931,0.13605301,-0.056522045,-0.4145426,0.0334516,-0.22994877,-0.16839908,0.14227617,-0.552524,0.42436072,0.20186548,0.3443934,-0.2471679,-0.9951091,0.05944984,0.082710184,-0.1530291,-0.64050215,0.7691258,-0.26668045,0.75863683,0.13751812,-0.06265838,0.0007702708,-0.4697513,0.1825099,-0.31148994,-0.010389875,-0.8409211,0.029594835,381 -11,0.44850278,-0.18615955,-0.47189382,-0.11289778,-0.4705565,0.04662679,-0.31288883,0.2199559,0.3078071,-0.23867658,-0.07725166,-0.041361924,-0.0035764417,0.1872627,-0.075739324,-0.6674762,-0.31074917,0.12983496,-0.905875,0.5893266,-0.5307893,0.33420536,0.11905865,0.27867943,0.2177006,0.4295022,0.16524425,-0.14265999,-0.17439362,-0.051729593,-0.17848828,0.24137707,-0.5864043,0.11965025,-0.151284,-0.27927506,-0.007255719,-0.42299628,-0.29898226,-0.6781657,0.042435814,-0.81880563,0.49511236,-0.13417816,-0.1324631,-0.10190773,0.16989702,0.40412927,-0.4815468,0.18244435,0.33608562,-0.21928768,-0.1650399,-0.2603918,-0.0011993436,-0.46529365,-0.4748617,-0.13358296,-0.62649345,-0.19733918,-0.08680555,0.26590887,-0.24774796,0.022912113,-0.21883292,0.33745137,-0.46703044,-0.03845015,0.22098714,-0.189354,0.1926245,-0.550426,0.0751438,-0.12469187,0.46673304,0.024654543,-0.22434828,0.34662756,0.30009627,0.39739764,0.33031026,-0.36446565,-0.26248452,-0.1282128,0.18643644,0.34915763,-0.16008443,-0.28845727,-0.26348746,0.037764892,0.40574175,0.15732917,0.024628485,-0.33320054,-0.021999916,-0.08189296,-0.17756031,0.5060511,0.48129058,-0.29700625,-0.2932208,0.3217926,0.45959926,0.25889057,-0.243315,0.07559967,-0.017607044,-0.4371919,-0.09472603,0.29718006,-0.010385182,0.37736213,-0.16617101,0.11461225,0.70250756,-0.06495635,-0.044140853,0.02858771,-0.06172493,-0.09007179,-0.14035466,-0.09003679,0.16124749,-0.529999,-0.0014026866,-0.25611487,0.49352893,0.21569817,-0.6600466,0.39984584,-0.5468316,0.17539138,0.011585514,0.61662287,0.7678239,0.5196856,0.26635718,0.77729654,-0.24764243,0.23937404,-0.037610214,-0.40070784,0.055134606,-0.23464483,0.09374512,-0.5054108,0.13545197,-0.32426772,0.088069804,-0.028328104,0.31569353,-0.5203773,-0.11526553,0.11845225,0.75530154,-0.3200075,-0.073502764,0.74238956,1.1299605,1.017249,0.03989187,1.1700444,0.33239797,-0.28062072,0.012369475,-0.37920514,-0.5733849,0.1878802,0.36115837,-0.24445051,0.51920193,-0.19250631,0.059881665,0.34184787,-0.3978216,0.046032187,0.0076977294,0.2886994,0.098351926,-0.10245613,-0.28720757,-0.053100344,-0.023474878,-0.033795673,0.18381299,0.13990158,-0.31240445,0.3354133,0.06311555,1.3185148,-0.17307048,-0.052044585,0.108836286,0.44748846,0.34788686,-0.18377681,0.04091949,0.4431361,0.4719998,-0.053155072,-0.61172205,0.22444797,-0.3834388,-0.35685566,-0.1529454,-0.24526155,-0.030214015,0.03255148,-0.38067633,-0.26301652,0.024210887,-0.3443657,0.38630196,-2.7138574,-0.23110847,-0.15627086,0.2393653,-0.31265318,-0.2538047,-0.10840759,-0.6015012,0.26383138,0.16488871,0.4456918,-0.6518197,0.5958545,0.5241016,-0.6029582,-0.1493484,-0.63721454,-0.056361888,-0.013619703,0.652711,0.0281058,-0.22985727,-0.11034473,0.15846097,0.61673397,-0.016401151,0.19968913,0.50827605,0.4106766,0.113984555,0.6603305,0.093446955,0.6262257,-0.26987004,-0.17864957,0.52512604,-0.34323284,0.17440446,-0.049078517,0.12790836,0.54622793,-0.4692713,-0.88812804,-0.5717738,-0.1684933,1.0593843,-0.39257646,-0.44035226,0.15858668,-0.05549123,-0.082127035,0.24544188,0.5239177,-0.025497572,0.08204786,-0.78117174,0.15119298,-0.07622467,0.24254936,0.105092615,-0.005957421,-0.28437933,0.6886941,-0.043612957,0.6066097,0.25701421,0.29921448,-0.1318579,-0.4754769,0.117095076,0.9808426,0.3812682,-0.046584226,-0.1648262,-0.25477734,-0.093351744,-0.16433077,-0.07492789,0.5921214,0.68150306,-0.08533921,0.1363836,0.3281152,-0.052180193,0.060498517,-0.21297573,-0.18710569,-0.06871122,0.13560237,0.33003584,0.7239896,-0.08488748,0.56367356,-0.14653845,0.33470327,-0.021819398,-0.6064267,0.73921305,0.78769547,-0.1968045,-0.12363156,0.41716394,0.42279777,-0.20907472,0.48707294,-0.6143084,-0.3379797,0.5898641,-0.20450707,-0.3188489,0.3634679,-0.30937073,0.2441095,-0.77109784,0.28009284,-0.35142976,-0.35985166,-0.47807553,-0.21131705,-2.8650527,0.07091489,-0.11714387,-0.12849179,-0.28398877,-0.1232149,0.3000586,-0.6477492,-0.5846475,0.1301206,0.2376571,0.490117,-0.06592057,0.14995787,-0.2847643,-0.14354466,-0.06598874,0.32222533,0.17805405,0.27495033,-0.18084161,-0.42200732,-0.13712938,-0.04291336,-0.48319322,0.070345685,-0.62027335,-0.39887148,-0.07999577,-0.539147,-0.16888677,0.5933167,-0.39948723,0.03965471,-0.25686884,0.08507141,-0.14522855,0.13489217,0.20825505,0.13442221,0.16378221,-0.07213887,0.05190827,-0.2126062,0.3082003,0.06614628,0.27189234,0.15255973,0.06258047,0.12846236,0.34749532,0.6619057,-0.2565214,0.96479136,0.3289158,-0.20476343,0.28718486,-0.2514552,-0.26237458,-0.68942887,-0.39802995,-0.13923436,-0.46264675,-0.5593873,-0.022644838,-0.31368256,-0.8960139,0.56890327,-0.019299746,0.31981882,-0.005574724,0.2240806,0.51010257,-0.09958397,0.062123775,-0.1299368,-0.18965551,-0.42145953,-0.33596587,-0.6658631,-0.43374568,0.10670881,1.0618092,-0.22343229,0.038801495,0.0041787555,-0.32526106,-0.020504935,0.066837914,0.1307739,0.29955584,0.44974816,0.085981175,-0.5630366,0.26511276,-0.1027361,-0.012871999,-0.4984868,0.17675227,0.6201545,-0.6806565,0.5763725,0.24339117,0.06511205,-0.008257256,-0.44365698,-0.1513923,-0.0148456795,-0.16182308,0.5434088,0.18189357,-0.6815842,0.49306214,0.23340058,-0.38948226,-0.7616974,0.32060555,-0.004243153,-0.20359749,-0.07268039,0.37405288,0.051079623,-0.08849813,-0.2701741,0.26117754,-0.34281024,0.27742994,0.1543677,-0.14395303,0.1338254,-0.0030642275,-0.5380242,-0.77138907,0.07662951,-0.4753336,-0.33939767,0.2616926,-0.04095672,-0.0068347314,0.0068185665,0.11138312,0.37917086,-0.27978593,0.15292463,-0.009575253,-0.19877058,0.23395334,0.5067097,0.20955731,-0.37348127,0.51442456,0.21282099,-0.24397977,0.06515188,-0.032141376,0.3069806,-0.011091302,0.28187698,0.066552766,-0.1021669,0.44450638,0.70694894,0.23447716,0.46197942,0.043127034,-0.23574734,0.32492948,-0.04495468,0.23128802,-0.07509234,-0.46951175,-0.040714614,0.12228959,0.21368907,0.3823551,0.3979584,0.31504938,-0.02377642,-0.15403435,-0.022134542,0.17704369,-0.04047605,-1.2571459,0.25886077,0.25357983,0.8990974,0.51438713,0.054459494,-0.16140929,0.6297848,-0.33439907,0.027081707,0.4199301,-0.115272045,-0.35401553,0.64816445,-0.49538836,0.26446924,-0.11661619,0.05144767,0.098383114,0.07417938,0.3434316,0.79448205,-0.22554962,-0.015686214,-0.1205235,-0.09528487,-0.04706725,-0.18711255,0.024964644,-0.3229282,-0.45712113,0.8085645,0.32634774,0.3838582,-0.23153555,-0.026867086,0.043292698,-0.17335795,0.1506573,0.03341879,0.013084833,0.12625182,-0.3573945,-0.28433162,0.5496987,-0.18919465,0.0063369977,-0.13140216,-0.2910187,0.026269468,-0.14469756,0.05674254,-0.08826785,-0.70834106,-0.04485536,-0.33089167,-0.45722002,0.40594476,-0.19448459,0.031201705,0.105604075,0.05678594,-0.1872273,0.29179332,0.15856016,0.66157085,0.06521997,-0.1795069,-0.28348175,-0.026631903,0.21555653,-0.22367087,0.039944388,-0.37347126,0.097813815,-0.6274057,0.60938096,-0.21692273,-0.44706815,0.17779142,-0.29153323,-0.022729432,0.5187334,-0.097213075,-0.2652567,0.31631458,-0.06862079,-0.4279637,-0.11670755,-0.27531192,0.27921644,0.36339098,-0.030958967,-0.08055015,-0.13315356,-0.246114,0.54560035,0.09994079,0.49194565,0.30188632,0.03626736,-0.24406901,0.07763881,0.3162621,0.46881622,0.21255884,0.053683367,-0.31767362,-0.40581036,-0.4032581,0.22636084,-0.1443828,0.19497137,-0.049755476,-0.3414156,0.90653473,0.047806762,1.2694826,0.0096569555,-0.44471636,0.01800333,0.5340503,-0.09775038,-0.047657162,-0.2842621,0.9398338,0.63034403,-0.06771942,-0.028923241,-0.42505646,-0.25836176,0.21716194,-0.32505876,0.008104911,-0.109330155,-0.592102,-0.38305223,0.2952732,0.08855552,0.027621578,-0.06454012,-0.041037798,0.048114788,0.07321078,0.25992203,-0.6984888,-0.2132061,0.1671459,0.15656538,-0.08353546,0.106823035,-0.42424372,0.34733927,-0.6492038,0.10498498,-0.38707605,0.11238603,-0.08562078,-0.22633988,0.19964266,-0.0533799,0.29038692,-0.43273112,-0.4572171,-0.2462519,0.49473304,-0.07384395,0.11544933,0.66034997,-0.31851202,0.15264976,0.19742054,0.62305486,1.1285734,-0.46506304,0.10832079,0.34454447,-0.42025805,-0.5510142,0.3248317,-0.3052591,-0.0588552,-0.032721065,-0.4515735,-0.49972612,0.3151249,0.1242058,0.18892823,0.15685214,-0.7280948,-0.09578427,0.35327873,-0.29656562,-0.17980956,-0.19358721,0.32409522,0.8489141,-0.38143045,-0.46695998,0.08535447,0.3074142,-0.27623746,-0.51230234,-0.10815842,-0.22327664,0.3373239,0.2441776,-0.15567577,-0.034227543,0.14468396,-0.5301674,0.07461586,0.33877417,-0.3454762,0.09184937,-0.11716638,-0.042598363,0.84810144,-0.22086407,0.027876012,-0.65251493,-0.43050814,-0.84154344,-0.4866996,0.100340426,0.17033891,-0.0043280404,-0.5152063,0.049822416,-0.2280817,-0.22015287,0.15395257,-0.6063627,0.4114996,0.11336633,0.53574765,-0.37398657,-0.9875928,0.044774044,0.22512172,-0.12486259,-0.60528517,0.67297477,-0.05548993,0.8269415,0.08282194,-0.0836622,0.0085278675,-0.4873591,0.06127034,-0.40013918,-0.05217778,-0.79783404,0.054251656,384 -12,0.44793394,-0.1494282,-0.46540242,-0.07423659,-0.16244462,0.21318494,-0.12557997,0.54064995,0.11332112,-0.4733925,-0.045416966,-0.10939525,-0.09131634,0.35143444,-0.12198211,-0.45723686,0.008526276,0.16327527,-0.6528274,0.51666814,-0.38718292,0.25523174,0.026681887,0.36292073,0.20546368,0.34626237,0.07131039,-0.21754017,-0.3344808,-0.0625394,-0.16578004,0.31314442,-0.4255001,0.06341316,-0.17611067,-0.21418813,-0.018207554,-0.4034848,-0.35136673,-0.6621596,0.11067505,-0.7758629,0.42992118,-0.077997066,-0.22498429,0.2926533,0.031320684,0.38103485,-0.26397842,0.054876726,0.16343725,-0.17816448,-0.024718424,-0.20774749,-0.21802972,-0.3901824,-0.41303462,0.043182407,-0.38444918,-0.22532117,-0.1902197,0.09069182,-0.28966913,-0.06038448,-0.14212401,0.2802012,-0.45422623,0.046404764,0.12898536,-0.09606999,0.08101102,-0.55932665,-0.08171847,-0.1608552,0.19179758,-0.15213734,-0.14744452,0.38414422,0.27070072,0.452445,-0.055614218,-0.074212365,-0.30787024,-0.068962544,0.12815148,0.45198178,-0.22682257,-0.48143286,-0.005244171,0.062261973,0.260841,-0.0040944815,0.11186896,-0.15881695,-0.13171272,0.017953781,-0.1989128,0.2045925,0.528377,-0.33113953,-0.34321055,0.4258009,0.43469024,0.111404076,-0.18737103,-0.050935812,-0.061911106,-0.42046702,-0.13957153,0.18259275,-0.09167723,0.34118828,-0.13526046,0.13949282,0.6285074,-0.20762923,0.076780915,0.02099533,0.025804698,-0.006549085,-0.098751694,-0.15781105,0.1077195,-0.22466092,0.044657994,-0.19349141,0.6270752,0.32323268,-0.6388776,0.36249495,-0.47644126,0.15803878,0.008791033,0.5046344,0.56324506,0.53813696,0.18784492,0.6256115,-0.32936192,0.16501561,-0.10396369,-0.27974415,0.115373924,-0.2616597,-0.034806896,-0.48188636,0.11731933,0.049475525,-0.19383638,0.077845275,0.3137089,-0.6340639,-0.05062917,0.08863096,0.83337736,-0.3213895,-0.1316674,0.6859959,0.8356136,0.73635244,-0.017780349,1.1255234,0.3196868,-0.3256797,0.26519865,-0.51095897,-0.5949452,0.24189793,0.24456558,-0.32598433,0.33713534,0.07163411,-0.1641987,0.25470352,-0.26301754,0.061703738,-0.27396798,0.038706716,0.10392377,-0.08391613,-0.25159004,-0.297865,-0.14546038,-0.02082655,0.17950882,0.26446527,-0.3153355,0.38318425,0.012599798,2.0231104,-0.064529754,0.014081001,0.026972791,0.47394493,0.14438544,-0.060811576,0.006604426,0.41874236,0.3399437,0.04494628,-0.4600637,0.13751984,-0.24800093,-0.57717466,-0.06241122,-0.40390444,-0.06779573,-0.026290867,-0.41556612,-0.14280383,-0.020559479,-0.23883645,0.40592256,-2.5994017,-0.14200792,-0.053549707,0.37782282,-0.27196306,-0.3379832,-0.32502288,-0.40768752,0.28656757,0.2917132,0.49574515,-0.62464803,0.40227303,0.22556248,-0.48342323,-0.13429631,-0.46307507,-0.058862742,0.0019214854,0.3398506,-0.06982119,0.057821717,0.18500814,-0.03884411,0.4564825,-0.14308444,0.044766538,0.28988335,0.38251796,0.17844823,0.3199956,0.0099327145,0.61292034,-0.28529286,-0.23913841,0.2955352,-0.39112988,0.23990479,0.049686972,0.12085522,0.32982904,-0.41571656,-0.8549779,-0.60741043,-0.061788775,1.2350107,-0.19472894,-0.27624562,0.18987083,-0.2007484,-0.2358654,-0.107364364,0.35347316,-0.08007469,-0.120114885,-0.78006774,0.0526217,-0.09517358,0.24356855,0.007596349,0.06941745,-0.3381768,0.6446506,-0.16913508,0.51677907,0.19039173,0.14096598,-0.047950193,-0.40234578,0.118477166,0.9414622,0.32535997,0.11664764,-0.110787325,-0.3453853,-0.2904678,-0.045902666,0.105688654,0.40039802,0.58223987,0.04059905,0.08763488,0.31150082,-0.060285266,0.046853367,-0.21857318,-0.27414328,-0.0871411,0.057619408,0.52995425,0.4200761,-0.27327392,0.51304454,-0.09021075,0.3573962,-0.046317108,-0.43304673,0.508943,1.037287,-0.2635072,-0.17474388,0.365402,0.4357003,-0.3567566,0.3538766,-0.5760376,-0.32995728,0.4408996,-0.22456595,-0.24339135,0.33265412,-0.28608397,0.16027416,-0.8623396,0.369879,-0.18594551,-0.36978403,-0.61187696,-0.00962466,-3.0172203,0.06532308,-0.17153782,-0.29862842,-0.06112643,-0.051836945,0.101112716,-0.6147979,-0.3001852,0.08850803,0.1307684,0.6510409,-0.032118745,0.034257684,-0.28884166,-0.3215524,-0.26933584,0.14051482,0.17267634,0.42439717,-0.09836896,-0.46213293,0.000537129,-0.20187327,-0.3054634,0.10807266,-0.62637836,-0.41290793,-0.19992292,-0.46739808,-0.24267124,0.62997866,-0.2918853,0.009428315,-0.19411844,-0.007451734,-0.13639925,0.19218731,0.07929872,0.12160462,0.10966602,-0.14686637,0.029920638,-0.2662778,0.25374737,0.10728369,0.32096684,0.49887815,-0.072340816,0.09803122,0.4777214,0.59125865,-0.13178603,0.76103836,0.39557457,-0.1574145,0.33246443,-0.38462642,-0.15343136,-0.48338076,-0.3150905,-0.0076148547,-0.3897082,-0.47988117,-0.054825854,-0.35734576,-0.7585861,0.42189723,-0.13177997,0.026724128,-0.050087158,0.3255669,0.5788189,-0.07821286,0.0448592,-0.2121205,-0.019773953,-0.47094333,-0.33891964,-0.5861697,-0.45328188,0.18566427,1.1690663,-0.22068843,-0.057301104,-0.0364038,-0.23399965,-0.044594914,0.04999838,0.088576026,0.15960406,0.4191388,-0.3196649,-0.59734625,0.41270345,-0.22823967,-0.2105391,-0.48157126,0.22386289,0.6013329,-0.6376129,0.5396365,0.28524572,0.067419276,-0.06496304,-0.389851,-0.17729509,-0.049528927,-0.17337053,0.16719571,0.08807731,-0.60439575,0.40496644,0.3211966,-0.362072,-0.61581844,0.3866287,-0.041306537,-0.2771032,0.1029961,0.31987846,0.064853914,-0.058474038,-0.20921737,0.21668178,-0.41459802,0.27534795,0.2433744,-0.013445002,0.14688851,-0.1079545,-0.21519151,-0.6846241,0.12615427,-0.4280077,-0.3155024,0.26852873,0.1816003,0.25763714,0.0635826,0.048281994,0.38463345,-0.35172972,0.07612125,-0.064413235,-0.15996605,0.35820866,0.26613846,0.45448226,-0.53341407,0.5138694,-0.026852548,-0.21912098,0.045564614,-0.032699957,0.44572854,0.10878402,0.28425628,0.123835295,-0.27729496,0.35419926,0.74633306,0.2705765,0.528759,0.03537709,-0.30927086,0.30362582,0.10894987,0.10798758,0.038903616,-0.39140317,-0.044966474,0.071087584,0.14843139,0.39359525,0.10560279,0.37529022,-0.053635687,-0.19788165,0.031440966,0.16658486,-0.003787139,-1.0937774,0.34716478,0.16907942,0.76791465,0.30655527,-0.033484213,0.080851495,0.6582885,-0.22926442,0.119170144,0.23573625,-0.20261565,-0.62404037,0.42637858,-0.63758934,0.37919766,-0.015165462,0.04369452,-0.038658984,-0.028167684,0.33580488,0.7907121,-0.16634586,0.071699485,-0.0038514822,-0.26789448,0.04345793,-0.25405464,0.084071465,-0.5574502,-0.34248567,0.65978366,0.3797093,0.41852602,-0.14156422,0.03649678,0.05208122,-0.112468876,0.086552665,0.12463039,0.246678,0.008620973,-0.5677821,-0.20872939,0.5369245,-0.34343162,0.11430424,0.19928703,-0.32542923,0.2967151,-0.08833428,0.047900718,-0.12343707,-0.50195843,-0.019148178,-0.2547135,-0.36814034,0.29710722,-0.08132526,0.3148736,0.22343287,-0.029814979,-0.33247325,0.32815132,0.15136899,0.716302,-0.12701824,-0.3114965,-0.34377167,0.24557434,0.14491381,-0.30235344,-0.017331332,-0.14574051,0.09706193,-0.5011579,0.30541128,-0.028131071,-0.33758226,0.04960446,-0.19184792,-0.07957764,0.45618045,-0.12037799,-0.13199502,-0.1136154,-0.09417871,-0.32941073,-0.049708337,-0.13789979,0.22777021,0.21401526,-0.06451526,-0.10810919,-0.027232265,0.016480096,0.4323747,0.022757228,0.29140425,0.4420438,0.21139699,-0.20857659,-0.121846676,0.17467903,0.47002557,0.052882224,-0.0076241563,-0.3077058,-0.44358972,-0.3656969,0.17448285,-0.23223737,0.34797317,0.3081173,-0.4758468,0.71638834,-0.03497885,1.1674553,-0.01819394,-0.3151746,0.10596991,0.46938178,0.16033217,0.07764114,-0.33698916,0.9003211,0.52620494,0.051372312,-0.12602346,-0.35183096,-0.21068855,0.17954223,-0.19981611,-0.18124926,-9.8691264e-05,-0.5729617,-0.4106652,0.27722034,0.115467094,0.29016325,-0.053404324,0.116992906,0.23698534,0.10787417,0.13768283,-0.3773988,-0.34248534,0.2997682,0.16084455,-0.014719276,0.08996049,-0.40377885,0.34221253,-0.47733092,-0.0148239,-0.112540945,0.11340155,-0.045732904,-0.18728681,0.17403592,0.016805867,0.385646,-0.3995097,-0.28948787,-0.27783304,0.5175724,0.04106185,0.21129663,0.5537427,-0.24938262,-0.0026661789,0.11864993,0.50874835,0.96724373,-0.23379768,0.09379514,0.54973197,-0.27878258,-0.61383706,0.32627404,-0.19323914,0.11123926,-0.14630347,-0.32028997,-0.49381396,0.37172282,0.23167005,0.056491986,-0.03185257,-0.47981766,-0.14614141,0.39913845,-0.38303027,-0.2648517,-0.38648695,0.24063416,0.7094922,-0.36743748,-0.38337868,0.19805478,0.17532493,-0.23610777,-0.47872868,-0.16915046,-0.29980427,0.32349056,0.064778425,-0.17355537,-0.11166602,0.0077640363,-0.32842818,0.24520645,0.20167753,-0.38782835,0.08880678,-0.2863594,-0.014640967,0.84939957,-0.14697675,0.10566608,-0.5623397,-0.42037264,-0.75113386,-0.5257456,0.40822175,0.12607253,-0.060002193,-0.68243104,0.027512213,-0.028865432,-0.39794403,-0.06512493,-0.33839867,0.401029,0.08608997,0.14964488,-0.11009507,-0.74088115,0.22532184,0.041870333,-0.122671545,-0.5397228,0.4428882,-0.036583643,0.91306955,0.14571564,0.03336792,0.33487567,-0.37243515,-0.1775429,-0.2670408,-0.103786334,-0.6428684,0.03357805,497 -13,0.24929059,0.100198805,-0.6359823,0.06336234,-0.39375865,0.19247355,-0.3932277,0.09322749,0.22990336,-0.22637774,0.10555887,-0.03507271,-0.21170989,0.060398635,-0.10450687,-0.58358586,-0.0063702553,0.09707198,-0.5044861,0.8204946,-0.28739667,0.38981748,0.10359985,0.2290248,0.018032754,0.30346847,0.053861793,-0.112853095,-0.22866766,-0.23434651,0.029997062,0.11336242,-0.50181323,0.4210152,-0.11807372,-0.2139651,0.20059128,-0.28547877,-0.36282045,-0.6009009,0.13008477,-0.5558262,0.571407,-0.012492143,-0.27914196,0.2837855,0.10753058,0.15171887,-0.11463416,-0.007190417,0.23439586,-0.35195684,-0.3675967,-0.26745394,-0.40447745,-0.5136493,-0.58681154,-0.1806865,-0.6316184,0.039780706,-0.34296677,0.23236914,-0.37059814,-0.12103419,-0.12659353,0.2783639,-0.4671485,0.21833897,0.0431755,-0.12669516,0.08442101,-0.62622565,-0.08492398,-0.14297532,0.018993363,0.23545453,-0.061661083,0.3736341,0.087659806,0.42092904,0.1238243,-0.24253267,-0.37724525,-0.25361457,0.26648033,0.44971973,-0.16657531,0.08816618,-0.25924644,-0.13220519,0.45196614,0.34178713,0.119189054,-0.12958202,-0.039788958,-0.19322419,-0.34258765,0.3064684,0.47888178,-0.23988348,-0.0032771826,0.5151324,0.38824928,0.24251808,-0.3208393,0.1315194,-0.122778244,-0.267751,-0.2282436,0.10841309,-0.12783451,0.45654824,-0.037014686,0.22541498,0.54428846,-0.12587027,-0.027334943,0.00088702934,0.0066656647,0.14725052,-0.17207238,-0.1014524,0.21741147,-0.6415015,0.06598228,-0.25750983,0.5280139,-0.112104,-0.6708791,0.28751084,-0.4678278,0.035341073,-0.05900723,0.6118842,0.8170962,0.7197202,0.13730565,0.72927046,-0.30118334,0.09995299,-0.29736513,-0.12904319,0.2149537,0.108904906,0.11009978,-0.5359367,0.0049848137,0.02495931,-0.12149707,-0.06832054,0.5181213,-0.28126436,-0.2000185,0.1681523,0.798583,-0.28611267,-0.098578624,0.5543738,1.2183927,0.99345285,0.10004728,0.99623436,0.16452564,-0.06093657,-0.32479954,-0.18386838,-0.68097484,0.11734845,0.23689671,0.15585223,0.30000293,0.12017323,-0.07746272,0.41468582,-0.21480481,-0.15188599,-0.1651893,0.43469954,-0.04374467,-0.15593363,-0.27672338,-0.13689855,0.22847848,-0.028904347,0.18220603,0.43467715,-0.2004916,0.43619648,0.2760708,1.3150089,0.015135727,0.06973051,0.15320404,0.23766091,0.25118458,0.004203658,0.07233399,0.5706053,0.2302293,0.0071282326,-0.45619178,0.1520089,-0.23169495,-0.6544538,-0.07661866,-0.28658542,-0.12016626,-0.14717418,-0.2415749,-0.15667804,-0.14100367,-0.4515272,0.33156925,-2.8826807,-0.08990941,-0.122741155,0.1216688,-0.12793514,-0.19352229,0.056223925,-0.32124144,0.5171766,0.23608103,0.39561895,-0.4575896,0.5289791,0.56419635,-0.53659993,-0.07704265,-0.47476274,-0.25685295,0.00015930568,0.54269236,-0.10069496,-0.12687477,-0.101999834,0.18548043,0.5038511,-0.019953834,0.18062414,0.35828647,0.4179237,-0.20358375,0.28235716,0.0155307865,0.43215388,-0.16119839,-0.20558034,0.22862667,-0.30025297,0.5067069,-0.30155328,0.17098607,0.47278753,-0.2696577,-0.46583536,-0.30188045,-0.00045814234,0.99753255,-0.44531175,-0.557569,0.07612136,-0.22315487,-0.2030809,-0.014014209,0.3765373,-0.109638855,0.033121053,-0.61696106,-0.0058367183,-0.15152489,0.21663223,-0.050445676,0.19819185,-0.4336927,0.62952054,0.034805823,0.7465238,0.45685792,0.2266902,-0.29448605,-0.28975353,0.17725751,0.69734836,0.43511733,0.16599166,-0.3811908,-0.24908912,-0.00502958,-0.24186558,0.12243236,0.51272416,0.5491186,-0.12129774,0.14967945,0.2975053,-0.28840163,-0.16374265,-0.2223269,-0.2780041,-0.058522575,0.033653677,0.343632,0.74164623,-0.12839226,0.39718428,0.006686919,0.38934043,-0.19316293,-0.44286856,0.39458966,0.70139575,-0.26888466,-0.20112708,0.6629612,0.58276623,-0.07086956,0.5597805,-0.60038537,-0.35064954,0.457111,-0.05511122,-0.44433174,0.2161357,-0.38047057,-0.05271511,-0.7274078,0.2756793,-0.4058995,-0.5142778,-0.6876142,-0.067445196,-2.285068,0.1020991,-0.37324056,-0.15377155,-0.15870221,-0.13973399,0.21684068,-0.50632626,-0.6216202,0.23708293,0.3228939,0.38407052,-0.13146807,0.074673146,-0.22782937,-0.3831648,-0.10720442,0.3508541,0.0938743,0.10572018,-0.31121108,-0.50508726,-0.1651687,-0.025822453,-0.25236323,-0.023393441,-0.35001665,-0.19814093,-0.007323556,-0.2876103,-0.06388552,0.508397,-0.4510478,-0.065036766,-0.4153118,0.0056593698,0.1727875,0.09738278,0.07949446,0.17099422,0.0036118084,0.00079563435,0.039308697,-0.3458064,0.18680826,0.056446843,0.30431703,0.5253106,-0.030683728,0.05560581,0.5246072,0.50560385,-0.13550024,0.8375307,0.25949693,-0.27489656,0.325373,-0.15201043,-0.30387282,-0.6922307,-0.27808505,-0.050344244,-0.40772262,-0.45610526,-0.04180717,-0.35132927,-0.7961777,0.56717765,0.18900694,0.08368441,-0.18344986,0.42873806,0.3902621,-0.21998453,-0.030101446,-0.13623765,-0.23252569,-0.34055176,-0.36455074,-0.9697646,-0.36840636,0.12575614,1.1622884,-0.22594345,-0.19484234,0.2772524,-0.23380423,-0.09613633,0.16059518,0.22706708,0.2153256,0.2530143,0.20493867,-0.49962312,0.6092767,-0.0936349,0.07444882,-0.6109308,0.006202053,0.63524,-0.61394244,0.34095624,0.5690285,0.013470191,-0.13959771,-0.94287986,-0.13340022,0.038768977,-0.21455358,0.51270807,0.32219893,-0.79844,0.59390754,0.16786504,-0.23743178,-0.6889338,0.420534,-0.15125895,-0.2484525,0.0096690655,0.3727142,0.13805234,0.024419231,-0.13618736,0.24265862,-0.2550795,0.45200947,0.01098145,-0.2019444,0.26005092,-0.12717177,-0.25483927,-0.8495495,-0.022887178,-0.37524915,-0.333779,0.3703427,-0.018666046,0.10383773,0.13960662,0.1696175,0.4239613,-0.28564802,0.078929216,-0.20344256,-0.32560062,0.36793414,0.5015666,0.5464147,-0.25643215,0.5831404,-0.07107417,-0.10304952,-0.066161394,0.14369504,0.41925344,0.029079929,0.36773065,0.01660107,-0.10785832,0.10358122,0.7987857,0.23917353,0.26085785,0.15627606,-0.22821732,0.4302385,0.03856907,0.15681374,-0.020649128,-0.5603484,-0.06713239,-0.24342832,0.2201199,0.4893248,0.12016894,0.56775576,-0.1473287,-0.00962533,-0.02841939,0.07476667,0.17432228,-0.9052022,0.2656604,0.24771996,0.6950332,0.58511364,0.24529937,0.14321335,0.57574314,-0.35849193,0.01355408,0.45276356,0.016390625,-0.31020397,0.49548844,-0.6236972,0.2708492,-0.04730002,0.038461827,0.21573503,-0.0897062,0.49452108,0.9806104,-0.23209515,0.015548072,0.055020522,-0.35588127,0.06463657,-0.13210328,-0.07248683,-0.20199423,-0.40312257,0.62153184,0.3224924,0.31296474,-0.22978115,-0.05304584,0.21389598,-0.18325959,0.3264528,0.07033083,0.030886194,-0.14024904,-0.29142547,-0.3493011,0.6032973,-0.19043674,0.046220537,0.08361522,-0.14256081,0.18877865,-0.14431128,-0.2097801,0.13981174,-0.50187546,0.030039767,-0.2094897,-0.5327313,0.57703847,-0.000754977,0.08727817,-0.011370161,0.012083616,-0.13321303,0.28538626,0.10046307,0.46100268,0.17208512,-0.10428101,-0.04634845,-0.18019114,0.09174684,-0.26709098,0.050136693,-0.041059986,0.26173604,-0.84401584,0.3284883,-0.3911795,-0.34200278,0.053862456,-0.34107158,-0.0928156,0.2730254,-0.05072508,-0.20461711,-0.020962825,-0.13036129,-0.37468153,-0.4120107,-0.27378297,0.08796976,-0.11344877,-0.11093527,-0.17142677,-0.09213606,0.027123788,0.167771,0.033441186,0.06462873,0.20766917,0.08392343,-0.43927455,-0.12741244,0.2069542,0.4042102,-0.20388891,0.053523153,-0.23229116,-0.38685554,-0.31616092,0.34669754,-0.20170514,0.2302535,0.030808799,-0.3656367,0.975698,-0.05332233,0.9854407,0.046794683,-0.43783525,0.08521273,0.6293235,-0.02614212,0.19520298,-0.18326499,0.89390737,0.6435467,-0.023626955,-0.19472612,-0.5418208,-0.014810153,0.24926873,-0.3335628,-0.19564968,-0.0065989634,-0.55355865,-0.06770196,0.30229604,0.14000204,0.019239051,-0.13664791,-0.027519543,0.2017058,0.30953187,0.29171696,-0.61919004,-0.120150976,0.38705292,0.007113534,-0.0045850924,0.18843138,-0.4061833,0.28933555,-0.55972934,0.19445491,-0.3932372,-0.00652586,-0.06834152,-0.14997752,0.17120709,-0.002043584,0.26476288,-0.23420276,-0.33782855,-0.04649903,0.28681314,0.20355123,0.3678658,0.60866976,-0.16659792,-0.00036285556,-0.15028852,0.5030005,1.0824155,-0.37189186,-0.15313914,0.31856143,-0.35426965,-0.6580095,-0.023777338,-0.5206786,0.08702048,-0.010276135,-0.5335598,-0.35713455,0.25029984,-0.111870706,-0.021200605,0.07106398,-0.54333663,0.03304056,0.076969385,-0.26180243,-0.15213305,-0.109306335,-0.048046898,0.85725486,-0.2578981,-0.26332924,-0.0023934946,0.2601153,-0.34681404,-0.5499387,0.1988462,-0.27758178,0.24856529,0.122838214,-0.33707866,0.12823276,0.15396813,-0.4705222,0.018502962,0.47933656,-0.2704557,-0.042223725,-0.42253852,0.28021273,0.72620684,-0.14385945,-0.03161138,-0.2922527,-0.5433248,-0.6564266,-0.2879257,-0.06912236,0.13350002,0.0039337524,-0.57837534,-0.009694983,-0.2371548,0.009701473,0.004267959,-0.60856843,0.49335957,0.26384,0.2693206,-0.3339511,-0.87016565,0.04200284,0.056165185,-0.1563647,-0.4892957,0.5813343,-0.28389668,0.8988161,0.09493354,-0.05623954,0.09847184,-0.71379507,0.39653125,-0.40347278,-0.14520946,-0.5570829,0.06269128,521 -14,0.42676592,-0.092413254,-0.48785624,-0.18532579,-0.49393088,0.05026161,-0.32434678,0.21731278,0.13206774,-0.2815878,-0.11480349,0.05106269,0.044835076,0.3809694,-0.10602163,-0.671316,-0.10454391,0.18089648,-0.7452983,0.5316739,-0.5821596,0.3787261,0.16800027,0.32315433,0.115712516,0.4770876,0.38972086,-0.11526604,-0.08470085,-0.003648758,-0.099901035,0.25220823,-0.55620795,0.1495883,-0.1929217,-0.33831435,-0.0006710326,-0.23470223,-0.1437783,-0.63899004,0.12547311,-0.7687661,0.5664186,-0.10745035,-0.16482855,-0.023526588,0.39476764,0.4241861,-0.3325171,0.115881786,0.21050519,-0.2805153,-0.1452035,-0.38349593,-0.06050509,-0.5068851,-0.4111368,-0.10210258,-0.8031937,-0.38071543,-0.15293936,0.2394811,-0.28893065,0.05926438,-0.10590209,0.23979995,-0.47104874,0.0052037514,0.3020829,-0.22024852,0.2956889,-0.5068455,0.0039032907,-0.0684564,0.4745241,-0.020230126,-0.11917574,0.39716333,0.27585897,0.471385,0.33918297,-0.35743332,-0.25788662,-0.29331318,0.1298392,0.2775004,-0.15569475,-0.12149269,-0.2376948,0.026375918,0.4509596,0.4083951,-0.040469725,-0.1315305,-0.07646036,-0.09059179,-0.14505595,0.3608396,0.426311,-0.26683438,-0.34674436,0.20190766,0.53862405,0.13677311,-0.36050227,0.1429884,-0.084578745,-0.49871096,-0.19194373,0.1395971,0.08205213,0.35864955,-0.14608698,0.054346196,0.8822751,-0.17121363,-0.08674529,-0.06277293,-0.03225936,-0.16566628,-0.19360924,-0.019174652,0.03321722,-0.6015062,-0.040966094,-0.23751853,0.6543724,0.05275309,-0.6953696,0.27733764,-0.5230307,0.14049393,-0.0027369612,0.65101653,0.7356067,0.45853147,0.25007987,0.8025882,-0.27156994,0.22148682,-0.06496592,-0.40134788,0.104571454,-0.20385705,0.06580897,-0.5108701,0.19254528,-0.0688544,0.11362846,0.09370572,0.50268346,-0.5220926,-0.04278419,0.18698636,0.7575626,-0.35937622,0.0024781018,0.7236754,1.0131627,0.9712587,-0.0051591136,1.1416237,0.33902538,-0.17313747,0.019519437,-0.40863284,-0.4453477,0.13487844,0.4049013,0.114126794,0.4373541,-0.18205409,0.10997057,0.32764992,-0.3629634,-0.054970074,-0.0114370305,0.30119285,-0.007560935,-0.14624833,-0.40853047,-0.116095476,0.06900975,-0.011872313,0.10664476,0.29788375,-0.25130856,0.42530924,-0.09646825,1.4294958,-0.037341483,0.047602065,0.09029006,0.50023603,0.29748645,-0.07135147,0.063033886,0.46478468,0.36328694,0.008453194,-0.4993143,0.15985602,-0.36188596,-0.53444684,-0.19177583,-0.5547732,-0.10742122,-0.00855422,-0.40052766,-0.225772,-0.05357364,-0.31353232,0.30231082,-2.7720659,-0.21103045,-0.13244829,0.2633203,-0.26647827,-0.14900897,-0.10857344,-0.54118264,0.2853858,0.31773582,0.41883194,-0.5709442,0.62111056,0.50566477,-0.47896743,-0.13008225,-0.6261328,-0.12432463,-0.13020793,0.52347934,-0.03776696,-0.08270283,-0.076962724,0.33532923,0.761855,-0.0837527,0.17600326,0.44589496,0.3044799,0.07095089,0.5861697,0.0971655,0.50111467,-0.24875581,-0.22044098,0.4451689,-0.2102604,0.14454988,-0.076402694,0.021561485,0.45514172,-0.4533388,-0.9329871,-0.5785256,-0.19044554,0.94285494,-0.44992423,-0.4670104,0.19081448,-0.13578062,-0.07119005,0.14254193,0.46326408,-0.119530156,0.31389785,-0.66421473,0.17219158,-0.022354078,0.12235117,0.025981836,0.011338508,-0.31140572,0.6892806,-0.077214494,0.62628543,0.22784954,0.32650942,-0.18096225,-0.3303453,0.18047607,0.90160024,0.35382167,-0.07376243,-0.17504697,-0.39822942,-0.15470679,-0.22007407,0.08930296,0.41737628,0.6562028,0.022614345,0.2570336,0.29069212,-0.1731579,-0.0077639013,-0.1325688,-0.08990533,-0.00081767055,0.13540804,0.37716478,0.63177586,-0.07721125,0.50662243,-0.14737357,0.5034575,-0.08054373,-0.63345194,0.5947993,0.4281856,-0.18052399,-0.07651211,0.552412,0.59026414,-0.34146821,0.56295204,-0.7464294,-0.32602358,0.655177,-0.15365006,-0.32504478,0.2443444,-0.34007135,0.18035254,-0.7859254,0.21984488,-0.2470417,-0.3551035,-0.39935353,-0.3677726,-3.4313772,0.13572991,-0.097253,-0.11576462,-0.23737301,-0.058981992,0.31866282,-0.70285374,-0.510842,-0.0022698992,0.15743382,0.5901254,-0.039996658,0.07054987,-0.28631827,-0.29466945,-0.06592291,0.25426617,-0.010498965,0.24027407,-0.25267074,-0.53953326,-0.08480013,-0.109101236,-0.5583023,0.13214532,-0.42197537,-0.39379352,-0.13227497,-0.36571768,-0.20649588,0.59673476,-0.24101846,0.048182756,-0.28488135,0.017251585,-0.17744164,0.09562033,0.26035264,0.16802478,0.2123419,0.041567355,0.04377893,-0.3846132,0.33980414,-0.09879494,0.4304027,0.21972138,-0.018755361,0.19686921,0.43498605,0.41790238,-0.1682444,0.9448353,0.30418265,0.004421277,0.27957273,-0.2015519,-0.32129994,-0.7022786,-0.4579652,-0.2372742,-0.41746756,-0.45586595,-0.002583658,-0.35175645,-0.73978674,0.6961526,-0.03849848,0.36506423,-0.21476936,0.33201566,0.41001734,-0.2013696,-0.1261191,-0.050482597,-0.31507814,-0.44731444,-0.3146595,-0.7219419,-0.6169931,0.039563973,0.95748454,-0.33030513,0.029049776,-0.10593519,-0.10405994,-0.015523614,0.17302617,0.13203083,0.32409358,0.43894392,-0.0549025,-0.6937531,0.4939413,-0.1624617,-0.10040266,-0.40958494,-0.020801533,0.5034864,-0.72280777,0.45887688,0.3116215,0.13030347,0.16013591,-0.5459226,-0.051350325,0.047937654,-0.22792593,0.5072379,0.14897764,-0.7761903,0.5873137,0.16483569,-0.37398273,-0.6419937,0.33542752,-0.06775281,-0.32391235,0.025104284,0.3647251,0.124858916,-0.16317089,-0.18150128,0.17800036,-0.47381642,0.24935745,0.26145357,-0.057702586,0.3642935,-0.092510656,-0.38104108,-0.6747798,-0.055495467,-0.44062933,-0.31818917,0.100906976,-0.01640243,-0.047155954,0.19027698,0.001995788,0.3876452,-0.26542652,0.14701262,-0.022172824,-0.33777934,0.3270653,0.46835232,0.37834653,-0.32602787,0.51349425,0.15529835,-0.20475891,-0.025146568,0.04751921,0.3898799,0.030607501,0.43469906,-0.18822803,-0.15391193,0.5134518,0.5297598,0.19982211,0.36816403,0.08029195,-0.26779866,0.37683558,0.006213583,0.070502914,0.024609586,-0.3861199,-0.014976042,-0.03647158,0.18123727,0.47602105,0.30038112,0.41230634,0.106880456,-0.065659605,0.15306413,0.2034371,-0.17003058,-1.1982033,0.3441272,0.35734513,0.69183713,0.47244874,0.118127026,-0.22711046,0.6242628,-0.39130998,-0.0039217053,0.38269755,0.007973804,-0.32914072,0.8004637,-0.6300311,0.4937825,-0.1869059,-0.12611046,0.08515031,0.0571704,0.34911865,0.9435314,-0.09533269,0.118279174,0.054362837,-0.20437855,0.09172169,-0.22349863,-0.06968987,-0.31542614,-0.36942986,0.70617723,0.21896884,0.4235166,-0.18660723,-0.09136225,0.058775697,-0.23178254,0.28450677,-0.08886609,0.05814209,0.031083688,-0.3012902,-0.3389045,0.4874148,-0.012921256,0.16542695,-0.12820311,-0.36112148,0.036808643,-0.16382243,0.072348826,0.026205175,-0.5708141,-0.019105325,-0.21960768,-0.5161577,0.59363806,-0.3290762,0.18151586,0.13215786,-0.06627122,-0.23936269,0.15227424,0.031294398,0.5967126,0.11003257,-0.21647994,-0.12891541,-0.024994746,0.28972292,-0.30351895,0.0619145,-0.33851567,0.16323127,-0.63718694,0.4891613,-0.19629762,-0.4741138,0.22886604,-0.18752076,-0.015799837,0.4349718,0.06988022,-0.2281322,0.13568231,0.07405576,-0.3356396,-0.1203291,-0.32831043,0.2473905,0.08202448,-0.096917085,-0.12659006,-0.14303195,0.009071084,0.5130189,-0.014623187,0.39025858,0.18563387,-0.06553456,-0.2388835,0.17135644,0.22008084,0.33897176,0.10148146,0.10301774,-0.26817188,-0.4526284,-0.30624127,0.2143262,-0.18120295,0.17292397,0.08694731,-0.3063668,1.0454699,-0.025035521,1.1560079,0.07634526,-0.29601076,0.11087933,0.45163777,-0.06755044,0.14299114,-0.35614485,0.8487108,0.5914589,-0.20606922,-0.18039243,-0.36896336,-0.046132255,0.3625371,-0.43767968,-0.060983866,-0.07891343,-0.58480364,-0.4951641,0.21552481,0.16577867,0.14363071,-0.033433948,-0.039693784,0.100004785,0.077893436,0.36362973,-0.6579671,-0.16726822,0.25306445,0.24108899,-0.1579904,0.18404257,-0.45631382,0.49052772,-0.6671123,0.14810304,-0.42266092,0.09509012,-0.13470575,-0.43857467,0.16472319,-0.011613446,0.25497478,-0.27182114,-0.45628238,-0.046100155,0.52486014,-0.021525815,0.16737483,0.6864923,-0.35350284,0.084943116,0.042903025,0.41971254,1.2452444,-0.408714,-0.116912164,0.28569952,-0.43662453,-0.6193389,0.28262255,-0.4211526,-0.06382681,-0.15076624,-0.6623723,-0.3116979,0.30590096,0.13118306,0.071568444,0.12675111,-0.46768048,-0.0019315752,0.2841503,-0.28340152,-0.26635274,-0.12783222,0.34040084,0.72096807,-0.32390907,-0.20611098,0.03609228,0.3213023,-0.31230304,-0.47906342,0.0027013104,-0.15457757,0.46406594,0.049231447,-0.18415299,0.01619428,0.13956791,-0.37205294,0.12908186,0.5057578,-0.32553616,0.0027591656,-0.30784836,-0.08253807,0.84768057,-0.10981888,-0.14528431,-0.47580898,-0.4321211,-0.9088715,-0.5624868,0.11487756,0.15556903,0.02093191,-0.37331554,0.05764825,-0.08931253,-0.14563121,0.1920509,-0.5130823,0.39516348,0.11654767,0.47905603,-0.17382413,-0.9205907,0.0865462,0.13571306,-0.1510169,-0.6528585,0.6351069,-0.25267926,0.7705915,0.09579508,-0.08266172,0.074254304,-0.37435588,0.27099815,-0.3624497,-0.054985188,-0.8119465,-0.042681698,545 -15,0.47560525,-0.03147015,-0.6973079,-0.017983004,-0.44818884,0.051502824,-0.45488065,0.08987455,0.47042775,-0.30861896,-0.06596547,0.001147186,-0.20657256,0.20375805,-0.12961698,-0.71808743,-0.022514446,0.21531162,-0.5781877,0.73867923,-0.23422511,0.30232453,0.146813,0.17142752,0.09108105,0.16413349,0.19281127,-0.04504826,-0.21434021,-0.20240037,0.06654765,0.07050755,-0.5891724,0.39637172,-0.18470545,-0.2755135,0.014678528,-0.31276995,-0.24520268,-0.78848964,0.027155336,-0.540628,0.5980614,-0.01965922,-0.2621103,0.25064778,0.20786844,0.281924,-0.052408885,0.1372726,0.2114993,-0.5041313,-0.6543898,-0.23646733,-0.3691101,-0.59312063,-0.72485465,-0.062628746,-0.7061676,0.10805885,-0.3183087,0.2669026,-0.26894447,-0.076588504,-0.2798775,0.40057164,-0.40165302,-0.035615236,0.20552363,-0.12186791,0.11900536,-0.60915095,0.008030465,-0.0931811,0.21975307,0.22801831,-0.025206478,0.1665602,0.24594599,0.4659274,0.2640027,-0.42949098,-0.28467384,-0.12384701,0.22054254,0.2960034,-0.19607268,-0.089322984,-0.23052897,-0.08512642,0.60316175,0.257527,0.1644183,-0.21245655,0.018236423,-0.07641495,-0.31916428,0.2701876,0.4907512,-0.31092346,0.23470476,0.58473575,0.5597165,0.19156146,-0.25969827,0.20395383,-0.2137698,-0.4415063,-0.17564456,0.22260042,-0.12868585,0.4476059,-0.115229264,0.1720243,0.523652,-0.07820992,-0.15835914,0.15583318,0.0011633495,0.036470022,-0.10395998,-0.14794391,0.28010055,-0.54782754,0.01009683,-0.35214737,0.6609856,-0.13909848,-0.99735934,0.30047476,-0.36129445,0.15391675,-0.09450042,0.74198496,0.91838163,0.64114904,0.13863342,0.84876966,-0.27129427,0.24019794,-0.08934172,-0.36224002,0.081212536,-0.092714936,0.20002574,-0.53510565,-0.078041494,-0.21198559,-0.2605366,0.023758497,0.73937184,-0.46234578,-0.23190044,-0.072585724,0.54673445,-0.26596645,-0.080869205,0.79970163,1.1274352,0.9085395,0.13614799,1.1956025,0.34950328,-0.18803997,-0.31177986,-0.24295883,-0.57053983,0.18955123,0.29655853,-0.10953627,0.46274453,0.19111758,-0.048322216,0.3771398,-0.15086187,-0.17465644,-0.072004035,0.34995067,-0.15086827,-0.1930189,-0.31271476,-0.16967186,0.20241448,0.10937196,0.15511708,0.45040688,-0.21579516,0.54756534,0.23044121,1.1699305,-0.15168953,-0.1259282,0.05538548,0.2457132,0.30208293,-0.03160796,-0.13085072,0.29283684,0.3293595,0.0012370488,-0.520121,-0.070148505,-0.075726405,-0.5134673,-0.29451245,-0.23261245,-0.10665951,-0.31593862,-0.023094956,-0.13083732,0.025881747,-0.67459583,0.443074,-2.2367783,-0.079904795,-0.21924987,0.22509395,0.048919547,-0.29002023,-0.04973701,-0.41809735,0.6576406,0.35207248,0.45909628,-0.5475915,0.49425843,0.6143792,-0.65290713,-0.049683772,-0.70331526,-0.19414438,-0.062418047,0.50371605,-0.013691971,-0.30018896,-0.08105601,0.10689368,0.49257216,-0.12409945,0.094588235,0.50736964,0.33287922,-0.20512195,0.46547434,0.110778,0.5464901,-0.21924794,-0.23223658,0.44950712,-0.26139984,0.31671715,-0.3613764,0.06479794,0.3260786,-0.35857514,-0.75124645,-0.44619098,-0.06818227,1.3703598,-0.44746542,-0.63919693,0.3015201,-0.06443055,-0.18670107,0.21575224,0.37176442,-0.10504141,0.058972947,-0.782746,0.07491554,0.04644311,0.1362816,-0.0284188,0.116722114,-0.55231464,0.64150506,-0.18678555,0.6605447,0.53376913,0.36423028,-0.11412919,-0.36622834,0.15254574,0.989418,0.39811963,-0.0091367625,-0.24784896,-0.08718666,-0.105443574,-0.2458403,-0.044795606,0.44913247,0.6057685,-0.14172438,0.024198255,0.25921854,-0.320545,0.04561042,-0.29945126,-0.53372383,-0.104645446,0.1320535,0.53282815,0.68894255,0.062321614,0.46412602,0.03178216,0.37425047,-0.06759247,-0.61696273,0.5806178,0.95344555,-0.30628288,-0.19226576,0.69164556,0.30497208,-0.112502165,0.71970713,-0.59268796,-0.37846223,0.4267402,0.08029133,-0.37109876,0.31907046,-0.28799778,0.15879351,-0.9335851,0.22629467,-0.40535384,-0.5231566,-0.4199182,-0.06831798,-2.793774,0.2564342,-0.27186164,-0.053061217,-0.27361083,-0.14359808,0.14352301,-0.49154764,-0.71314013,0.03720078,0.25260478,0.41148207,-0.2101618,-0.0037388206,-0.21728723,-0.2901985,-0.07747385,0.33412188,0.00922208,0.12518084,-0.3123912,-0.4419194,-0.015102534,-0.32673162,-0.25156093,-0.19881174,-0.6231944,-0.100730866,-0.108068526,-0.3785519,-0.26297507,0.5212236,-0.5159531,-0.038118653,-0.4848947,0.06531006,0.12833157,0.2255585,-0.15506482,0.16135442,0.27081937,-0.085473254,-0.17435484,-0.10838208,0.12591419,-0.03741798,0.31646398,0.4554743,-0.06523627,0.13758601,0.5324809,0.6365411,-0.1783604,0.972399,0.36632738,-0.25424266,0.2571074,-0.24444047,-0.27158198,-0.73469573,-0.31895995,-0.11905872,-0.36219057,-0.4384371,0.04121706,-0.23820063,-0.9563928,0.66850287,0.17287035,0.09945898,-0.06955314,0.47904384,0.46618962,-0.093976565,-0.08109139,-0.04124013,-0.4469822,-0.3789411,-0.24196005,-0.8426248,-0.49668452,0.027914003,1.2539164,-0.34338406,0.12064795,0.22043827,-0.24981162,0.14568655,0.21416841,0.11791092,0.20261227,0.22959732,0.26652768,-0.6940734,0.52728397,-0.15241627,0.10909804,-0.5511857,0.120350264,0.5815397,-0.6251058,0.2654412,0.5434356,0.018740233,0.042973604,-0.8193734,0.03854366,0.11102222,-0.16142032,0.64876384,0.2584021,-0.7365681,0.7517222,0.29126996,-0.23198262,-0.8663921,0.3453248,-0.00895767,-0.19909853,0.047616385,0.5035702,-0.0066501675,0.039474856,-0.29685113,0.08525609,-0.42932618,0.36315957,0.19916752,-0.13133824,0.11667152,-0.17256671,-0.24353532,-0.87783194,0.037711106,-0.48952332,-0.21295452,0.14700626,-0.10464911,0.01895148,-0.011245468,0.25467622,0.40578973,-0.4581243,0.20456298,-0.254053,-0.33865297,0.57291406,0.6570282,0.33964348,-0.30835977,0.5811881,-0.054600276,-0.17619905,-0.29357916,-0.04178442,0.45404172,0.01597815,0.46491027,0.29784086,-0.08216103,0.2622955,0.55550176,0.015942974,0.28108978,0.06618947,-0.3766124,0.26692098,-0.011591007,0.30212665,-0.2619247,-0.39689553,0.044653177,-0.052380618,0.23491888,0.45463014,0.19510372,0.51654446,-0.14534628,-0.1381347,-0.032367542,0.12417096,0.119962886,-1.1921638,0.44454905,0.34229487,0.45551798,0.6195428,0.16400482,0.06288576,0.6176848,-0.35976613,-0.010127324,0.36351186,0.0325109,-0.20822251,0.48101667,-0.83848345,0.15976626,-0.21821715,0.10407558,0.1946744,0.038144436,0.47911477,1.140504,-0.13136889,0.1251446,-0.1690301,-0.2178765,0.023605213,-0.19715926,-0.013534826,-0.25172243,-0.4888111,0.7314536,0.19565229,0.47853878,-0.20907891,-0.060155287,0.20923726,-0.18393838,0.53154933,0.100196056,0.038443327,-0.03314524,-0.3499062,-0.3915775,0.4970031,-0.16519794,-0.04029424,-0.08236086,-0.19458786,0.28778642,-0.16763283,-0.09745432,0.063463464,-0.5372299,-0.017687006,-0.30170727,-0.4412641,0.44681063,7.0761234e-05,0.13591138,0.021638975,0.15412505,-0.31139874,0.12011029,0.12147996,0.5214759,0.12499013,-0.2636462,0.15850182,-0.1993791,0.23013745,-0.29392824,-0.0016805495,0.031009983,0.2204865,-0.8613343,0.44966552,-0.44778365,-0.5868792,0.21708645,-0.3259887,-0.09307429,0.3383674,-0.24662542,-0.24848242,0.2011887,-0.031607658,-0.24767601,-0.40776,-0.2964941,0.046404988,-0.20520343,-0.18755344,-0.087365404,0.048215237,0.031075394,0.46342206,0.0054783155,0.114619404,0.3317016,0.060942803,-0.64723194,0.03135042,0.41723338,0.3238686,-0.09452014,0.12075138,-0.3772623,-0.2859614,-0.3113616,0.014444701,-0.26772687,0.21698664,0.023134083,-0.37543827,0.92347753,0.106301166,1.1053416,-0.04120299,-0.39465234,-0.04528474,0.43212593,-0.010110294,-0.030055916,-0.2065746,0.93358266,0.6457952,-0.12205187,-0.11124955,-0.677518,-0.20709473,0.32831907,-0.33456233,-0.12319805,0.0059102913,-0.7255068,-0.33719757,0.18275219,0.19546752,-0.118839644,-0.17957388,0.14187491,0.1823591,0.304635,0.019938175,-0.6507501,0.021578053,0.42506722,0.20259954,-0.19742173,0.089484826,-0.37652048,0.29201108,-0.6548643,0.16149779,-0.2649806,0.011285261,-0.058330283,-0.13071766,0.18529698,0.04436744,0.13177754,-0.21381193,-0.33673173,-0.01825995,0.3778883,0.18470778,0.24168046,0.79745317,-0.32485867,0.08523291,-0.07158032,0.54307544,1.26109,-0.27663323,0.04480583,0.2635982,-0.20911309,-0.5497701,0.10390734,-0.34260917,-0.10267792,0.02940462,-0.5590623,-0.5792249,0.11788026,0.10381246,0.036025852,0.13486485,-0.5053031,-0.11952311,0.24700715,-0.33017543,-0.16219305,-0.2790269,0.15736042,0.7253859,-0.44139746,-0.45727405,-0.036266,0.17274037,-0.31836954,-0.56777805,0.1396898,-0.18902677,0.2376617,0.16033697,-0.32472283,0.0028770426,0.21631493,-0.5841091,0.06674278,0.34357333,-0.2143159,0.09097528,-0.38222313,0.15837088,0.6618731,-0.19602175,0.10345902,-0.29904062,-0.67195404,-0.66181856,-0.3759067,-0.06158429,0.12446004,-0.020088743,-0.54992676,-0.061836347,-0.3041505,-0.1040032,0.1595319,-0.5075689,0.4427402,0.15703762,0.39831105,-0.303422,-0.92690456,0.20237292,0.0638275,-0.17351505,-0.39184213,0.4310794,-0.11993543,0.7721211,0.086476624,0.055803593,0.20394051,-0.80421466,0.31774005,-0.18285389,-0.14521965,-0.6387789,-0.04041505,620 -16,0.70064723,0.03196172,-0.5600981,-0.1201598,-0.4528486,0.16590343,-0.2846087,0.12375178,0.16846001,-0.4949941,-0.25429964,-0.032322228,-0.14931695,0.30787137,-0.2433725,-1.0043522,0.031971727,0.20179619,-0.56097084,0.9083022,-0.27853557,0.4413712,0.004151835,0.18092075,0.117273346,0.38423562,0.31495214,-0.077153146,-0.19240396,-0.19076797,-0.1771282,0.10412483,-0.62806076,0.39285052,-0.07169502,-0.21404617,-0.025908584,-0.37650633,-0.29166153,-0.8205381,0.33921388,-0.6620307,0.35515285,-0.009576626,-0.14640293,0.12109351,0.24918477,0.37368357,-0.12794551,0.06732195,0.094407335,-0.051769573,-0.2487551,-0.15016577,-0.27517384,-0.4448139,-0.6025376,-0.035360124,-0.5837659,-0.23209837,-0.3851025,0.3144384,-0.32167053,0.09748425,-0.17956926,0.7100479,-0.33480912,-0.004934118,0.22489013,-0.13253522,-0.030272746,-0.6800241,-0.079714425,-0.111037664,0.32566732,0.0061226278,-0.16105196,0.3181685,0.18977064,0.36317798,0.20251113,-0.39616698,-0.403652,-0.26305458,0.46457508,0.41871923,-0.0696267,-0.3101451,-0.33349627,-0.07199317,0.2394049,0.13013418,0.22892132,-0.31353837,-0.059651088,-0.23828869,-0.29493833,0.43771967,0.5326666,-0.31482503,-0.19001076,0.4028742,0.5298397,0.07391669,-0.10642463,0.06721366,-0.0406122,-0.4218461,-0.1226257,0.28902054,-0.07162102,0.443464,-0.12312157,0.084586576,0.5501091,-0.13823582,0.037549082,-0.004742377,-0.0008187925,0.09829908,-0.24175924,-0.14767027,0.23097734,-0.58551854,0.095650546,-0.28093642,0.8237668,0.15211649,-0.7207431,0.17186844,-0.5290132,0.14356975,-0.024262778,0.55640763,0.5802929,0.36671472,0.054074008,0.8154069,-0.27616718,0.16319782,-0.111089624,-0.2724113,-0.30657163,-0.07861019,0.035093315,-0.3675216,0.17458834,-0.092338845,0.008510401,-0.09886515,0.48625362,-0.47767225,-0.21181768,-0.096901774,0.85032225,-0.34346637,-0.12677236,0.9222973,1.0196292,1.1172035,0.012179377,1.1910275,0.20807356,-0.29129848,-0.30412814,-0.3646272,-0.5808327,0.3269567,0.3307874,0.13605164,0.34895745,0.044865478,0.002502508,0.19379127,-0.42375436,-0.06843343,-0.17344065,0.26614022,0.10201584,0.049965143,-0.3563134,-0.21815884,0.115757,-0.0064928234,0.2795913,0.13908976,-0.2957597,0.43800092,0.018384477,1.2915604,-0.0027479162,0.18349777,0.14068834,0.30283654,0.26676255,-0.091671355,0.019256985,0.291122,0.28668958,-0.14165367,-0.66300976,-0.009280878,-0.38711122,-0.42007688,-0.19536443,-0.33830357,-0.06158778,-0.06345229,-0.24555953,-0.16729605,-0.02488099,-0.31365624,0.43563506,-2.3530767,-0.14294323,-0.24441223,0.38790682,-0.32973197,-0.3496248,-0.102558464,-0.66409683,0.4042222,0.3040134,0.38693994,-0.32940584,0.39998627,0.4756005,-0.5688509,-0.025311517,-0.51892287,-0.09503921,0.028470907,0.5207633,-0.19037957,-0.03646469,-0.13568845,0.25920144,0.5313926,0.033186983,0.17208445,0.4697438,0.3131017,0.14703716,0.44433385,0.16493572,0.5128155,-0.357727,-0.08517127,0.40189323,-0.42962262,0.30017394,-0.19577213,0.032871354,0.4409315,-0.5687413,-0.6302592,-0.6244114,-0.40576428,1.0223627,-0.35388547,-0.5357576,0.16915685,0.1586044,-0.13340712,0.04792346,0.33584175,-0.04021444,-0.04141098,-0.6412935,0.07148427,-0.050660685,0.25732478,-0.04025192,0.071731225,-0.47331175,0.6684348,-0.18747595,0.5214801,0.24105161,0.4669199,-0.20845196,-0.58940774,-0.023579404,1.0948557,0.42713785,0.11820971,-0.27668566,-0.18813749,-0.4387394,-0.19093956,0.0305542,0.59776646,0.70253414,-0.024380865,0.0032468894,0.29208106,0.046000432,0.25552958,-0.19348322,-0.385216,-0.2852551,-0.16727054,0.5516993,0.43235773,-0.08829773,0.37869027,0.0033475512,0.3369871,-0.1562021,-0.37643552,0.52648294,0.97505635,-0.17745277,-0.37639645,0.63757277,0.5012335,-0.26156238,0.5928941,-0.6455379,-0.30998954,0.49634048,-0.12270281,-0.2565584,-0.0051917327,-0.40883195,0.13638805,-0.75061965,0.28200853,-0.310888,-0.56623775,-0.51520145,-0.13797906,-2.4329674,0.24527988,-0.22298521,-0.10240684,-0.19105798,-0.08799048,0.0040248563,-0.5696359,-0.6112703,0.18962288,-0.005513233,0.6810867,-0.24231847,0.19887595,-0.09483142,-0.0938186,-0.3563282,0.25416824,0.16500412,0.35134482,-0.096782684,-0.25865498,0.098441,-0.14793079,-0.43859982,0.11985631,-0.43422246,-0.46256495,-0.25170153,-0.5083138,-0.08594728,0.6492644,-0.31209666,0.14529556,-0.14860204,0.093777806,0.0035006755,0.24635208,0.034954954,0.32131818,0.20104353,-0.15457612,-0.14601451,-0.22675377,0.39884448,0.09989155,0.27889174,0.35260054,-0.12675022,0.17109576,0.3727533,0.5416809,0.07324015,0.8326472,0.19906494,-0.12261321,0.33440882,-0.2752795,-0.31826982,-0.57660544,-0.21945058,0.0070564044,-0.4266322,-0.48675033,-0.101201236,-0.36655474,-0.9289068,0.48573804,0.0021558404,0.27974436,0.05278915,0.21799017,0.43909228,-0.0834323,-0.030142546,-0.07036543,-0.06835872,-0.46257,-0.33616465,-0.5933229,-0.41665494,0.07496134,0.985273,-0.2534393,-0.16524296,-0.14434394,-0.27958763,-0.06565708,0.15077075,0.14765936,0.114241205,0.38287702,0.08706937,-0.6451417,0.558653,-0.123581074,-0.008263076,-0.41242126,0.16771685,0.49486586,-0.57244354,0.42119065,0.40489167,0.12698185,-0.09435709,-0.6916906,-0.055460073,0.0609062,-0.20248199,0.35914403,0.31441674,-0.65953773,0.36757022,0.05882942,-0.26708722,-0.9981393,0.54418766,0.07402707,-0.3569586,0.03333549,0.4781292,0.17564039,0.009234428,-0.21606557,0.15602306,-0.31318334,0.19872592,0.25883126,-0.07758802,0.35287803,-0.27722493,-0.4094282,-0.75162196,0.03726432,-0.6082902,-0.18420659,0.18702768,0.017693913,-0.0028209116,0.1914321,0.20666431,0.51176286,-0.25060707,0.071506344,-0.17404824,-0.2376364,0.43741155,0.4385996,0.5849641,-0.45011458,0.6085068,-0.0152252875,-0.07780821,0.027230484,0.086961746,0.35375613,-0.010562504,0.4604364,0.17122082,-0.011726432,0.14357243,0.5558342,0.3195369,0.27328244,0.1653191,-0.41685048,0.39448944,0.050270945,0.2325879,-0.074816875,-0.53112763,-0.04557898,-0.11867672,0.07660314,0.4565028,0.17075932,0.41997153,-0.052094415,-0.21491507,-0.0018918654,0.0033673889,-0.18991928,-1.230463,0.2841208,0.07650088,0.8590729,0.50889826,-0.00092946785,0.07371509,0.47052464,-0.09966427,0.16612093,0.28588596,0.01733213,-0.2858462,0.35234985,-0.5121383,0.3384503,0.013108264,0.06764047,-0.039404258,0.122106984,0.38054284,1.0196729,-0.14941552,-0.012296864,-0.25416398,-0.26546282,0.32373992,-0.30882245,0.10667794,-0.4515355,-0.35494846,0.75687605,0.2820696,0.31234357,-0.0850332,-0.06598,0.15735295,-0.14668956,0.29282895,-0.010511138,0.0007645207,0.058235336,-0.5226741,-0.3707885,0.4709674,-0.32337537,-0.15051192,0.0706971,-0.10947653,0.06879533,0.045999873,0.020130789,0.04182305,-0.787026,-0.07433869,-0.20807609,-0.31965205,0.17603658,-0.2798955,0.16725239,0.15312926,-0.096453615,-0.4468757,0.20381029,0.30460364,0.54912704,0.09837154,-0.1887134,-0.37716293,0.00032605143,0.24351151,-0.37745285,0.2867546,-0.15795434,0.27782238,-0.7823373,0.53951603,-0.09843787,-0.33959344,0.059984587,-0.15460882,-0.21434796,0.4093583,-0.12805142,-0.09701259,0.11678242,-0.073895074,-0.076595485,-0.010496728,-0.20217018,-0.060326904,0.12284444,-0.15296666,-0.011302503,-0.021439258,0.016819883,0.4720428,0.08878775,0.3967311,0.36909485,0.08320762,-0.56522816,0.1309618,0.22126494,0.41819102,0.07305814,0.025723835,-0.088491894,-0.36473528,-0.35047728,0.42204705,-0.16299357,0.19368519,0.12529285,-0.2406955,0.723653,0.12554915,1.1067886,0.00046099283,-0.36331105,0.038400132,0.5413537,-0.0047937315,0.0018189725,-0.3422902,0.9860003,0.4920018,-0.2176651,-0.23358469,-0.41000324,0.053312838,0.073541775,-0.27789378,-0.09056767,-0.050873566,-0.33534417,-0.36046648,0.042232726,0.18654922,0.04044132,-0.052754752,-0.095867366,0.25954366,0.16587563,0.40054557,-0.6519361,-0.09613756,0.31249204,-0.007821987,0.1912199,0.19579525,-0.4726785,0.35862795,-0.70174325,0.11084147,-0.20887227,0.21823463,-0.14389193,-0.26532757,0.32866102,0.17380123,0.39693406,-0.36747238,-0.41799212,-0.3291867,0.41437042,0.13852628,0.097768374,0.63958335,-0.22723952,0.013458835,-0.048049442,0.58154154,1.102517,-0.102011055,0.20749302,0.3009206,-0.45383772,-0.57654274,0.018136933,-0.35476404,0.0028977816,-0.06113136,-0.31265736,-0.6369455,0.19372483,0.18979204,-0.014315816,0.32041484,-0.7466381,-0.3014073,0.24126653,-0.30092654,-0.20852697,-0.124635614,0.27157876,0.73590404,-0.32708377,-0.25577426,0.014378285,0.18517244,-0.26095006,-0.8291365,-0.07650067,-0.22717442,0.28437132,0.052841935,-0.22408763,-0.21296783,0.1456486,-0.4790715,0.13033281,0.26246625,-0.2234947,0.04065594,-0.24339333,-0.03727389,0.6783133,-0.121991,0.11010331,-0.43005612,-0.44060066,-0.9994867,-0.4796278,0.12553045,0.16448647,0.033902735,-0.5728855,-0.24385576,-0.28878722,0.05456224,0.14213358,-0.3267915,0.37178817,0.23893204,0.4772021,-0.13103236,-1.1087326,0.12991664,0.20084225,-0.2796444,-0.51196295,0.31445718,-0.10758049,0.7514538,0.18213423,-0.024890466,0.17057548,-0.6892133,0.08754515,-0.18664214,-0.089857146,-0.72284836,0.29770297,624 -17,0.3906109,-0.14516155,-0.4537445,-0.19291124,-0.3239529,0.09419543,-0.07032126,0.2659919,0.2312609,-0.11888229,-0.035061553,-0.16249157,0.10086058,0.28293353,0.0052324254,-0.54601413,-0.09670504,0.044921264,-0.7079589,0.43733972,-0.51817524,0.29203662,-0.0070943832,0.23474504,0.24559103,0.44110596,0.1782972,-0.19223465,-0.08062733,0.23766091,-0.3498978,0.22447813,-0.3472362,-0.05561069,-0.059311334,-0.13988347,0.033688635,-0.38589364,-0.3406251,-0.7412584,0.2755878,-0.77766126,0.34163615,-0.051056102,-0.08947736,0.052422173,0.3739824,0.26557508,-0.47694993,-0.021958698,0.27947232,-0.19740921,-0.084740475,-0.14868167,-0.12506181,-0.3908914,-0.2112599,-0.07606348,-0.6499541,-0.37186107,-0.26421577,0.12693395,-0.38460076,-0.13300431,-0.035517365,0.47272536,-0.4136656,-0.15768543,0.25513038,-0.19872774,0.14534868,-0.60043794,0.03443492,-0.16653785,0.630878,-0.107794404,-0.106438495,0.45959288,0.41779402,0.25643298,0.13439265,-0.17635062,-0.1479035,-0.24804008,0.136567,0.32914084,-0.14995152,-0.5113122,-0.041736286,0.084532894,0.13764563,0.22618917,-0.0040528416,-0.18061972,-0.10531034,0.004159857,-0.20303033,0.48332888,0.41225275,-0.3115313,-0.19922848,0.33197135,0.5275163,0.30679837,-0.28016558,-0.04444828,-0.032269537,-0.47967827,-0.19823377,0.22354549,-0.17452736,0.4192607,-0.2827449,0.2468818,0.83538216,-0.20094796,-0.0544326,0.016176406,0.05724597,-0.25442773,-0.16836219,0.0186546,-0.045411114,-0.5400482,0.121500924,-0.14317992,0.6561917,0.2778271,-0.52289337,0.25126636,-0.45595193,0.33722654,-0.017395133,0.6287947,0.6566901,0.25507146,0.41329026,0.92358506,-0.2879564,0.1429929,0.06437975,-0.5192506,0.0383302,-0.27561238,0.08801681,-0.53043425,0.08198773,-0.21878995,-0.015805924,0.03378288,0.14196546,-0.45312333,-0.06710486,0.1888925,0.7161803,-0.3607484,-0.060900297,0.55131966,0.9203384,0.8561351,0.033268996,1.0833195,0.14844574,-0.35806805,0.25815365,-0.41538215,-0.7436233,0.25490597,0.300527,0.03305842,0.20890965,-0.04021372,-0.047337897,0.29228055,-0.4355825,0.060337774,-0.17283145,0.107741065,0.1844649,-0.017914912,-0.27680996,-0.29363856,-0.23140772,0.02459999,0.07730833,0.1764944,-0.24526037,0.4227825,-0.01614044,1.4540201,0.08939045,-0.018873945,0.10051702,0.62449056,0.22260569,0.011781748,-0.13352408,0.6009927,0.44160247,0.022649601,-0.6869341,0.22239275,-0.39523578,-0.39528772,-0.12743738,-0.4454483,-0.10026067,0.17001721,-0.4450289,-0.19851503,-0.10477225,-0.3458446,0.51785135,-2.8868287,-0.20404588,-0.121315956,0.258705,-0.25705016,-0.108188525,-0.11226487,-0.52725554,0.09484518,0.35761413,0.47137132,-0.7262373,0.33917776,0.43203917,-0.48089185,-0.16265756,-0.7031038,-0.16610658,-0.034681432,0.5159641,0.030743508,-0.069444805,-0.057096463,0.10641023,0.5980401,0.016550751,0.12516528,0.45543244,0.43400237,0.10245163,0.685237,0.0024600765,0.5368803,-0.2736159,-0.16304304,0.27745697,-0.37073395,0.13844956,-0.020594379,-0.003623936,0.6914436,-0.38307774,-0.8304688,-0.4834045,-0.18545023,1.0478877,-0.4102718,-0.2692078,0.32369733,-0.4444767,0.12346172,-0.11920554,0.6856507,-0.010101233,0.0072223437,-0.6236361,0.27794462,-0.02386477,0.07329645,0.021415146,-0.071491785,-0.1264473,0.7598914,-0.047645863,0.5933403,0.27679402,0.055289656,-0.13838443,-0.4318025,0.04436493,0.70033073,0.29399562,-0.014830011,-0.20186694,-0.18132102,-0.10219158,-0.1253657,0.07054406,0.43863696,0.6298318,-0.025683088,0.19782612,0.36987475,-0.13412383,0.017341735,-0.14497553,-0.19183554,-0.09783477,0.008193717,0.43032736,0.5560977,-0.21850553,0.57043815,-0.15908325,0.12895052,-0.15511864,-0.41369396,0.6985154,0.7074418,-0.2953192,-0.069087885,0.19976646,0.50998944,-0.37992123,0.3860421,-0.62563634,-0.1759611,0.7727437,-0.23818675,-0.23178686,0.3068358,-0.21749702,0.12901627,-0.83644027,0.1773477,-0.26979026,-0.33635724,-0.41983545,0.020362714,-3.3351269,0.09427748,-0.24842139,-0.19782244,-0.39667472,-0.07121237,0.21249089,-0.6207344,-0.43573833,0.09477596,0.17622684,0.5800805,0.00032423175,0.07242995,-0.28311473,-0.110004425,-0.17632091,0.09650431,-0.023304518,0.42572522,-0.19369996,-0.50804013,0.031793438,-0.14112371,-0.42326114,0.10473669,-0.46646303,-0.32211965,-0.16820899,-0.5511496,-0.37267327,0.7145415,-0.19077127,0.03709708,-0.25031394,0.036123082,-0.13229726,0.2620542,0.32360846,0.16639319,0.04053954,0.069838665,0.14832297,-0.29556948,0.27984098,-0.15448299,0.35591322,0.08925891,0.1503936,0.21417803,0.5393597,0.53177005,-0.17785649,1.0999545,0.42848763,-0.13774434,0.36789435,-0.36532986,-0.20318969,-0.5631026,-0.38582438,-0.06356174,-0.3384255,-0.4939818,-0.037239216,-0.33915508,-0.6871184,0.40810898,-0.106944144,0.39071012,0.043405652,0.29182294,0.5515845,-0.15826607,0.082569234,-0.07086471,-0.28537756,-0.61794865,-0.27750292,-0.58853656,-0.41301063,0.0636495,0.73179865,-0.40579247,-0.104159735,-0.16782111,-0.4658626,-0.04347616,0.013971182,0.20339252,0.48843035,0.3586291,-0.23382,-0.57409203,0.39347762,-0.08753919,-0.029787246,-0.48244163,0.0073462585,0.48988914,-0.7075076,0.57879084,0.2619877,0.050334435,-0.06318415,-0.47257632,-0.20300664,0.0017733154,-0.14248607,0.3780957,0.12537773,-0.75895786,0.5236079,0.18197292,-0.29794475,-0.6201532,0.41574094,0.040366516,-0.38951606,-0.0023384795,0.34290794,0.1467568,-0.091478966,-0.22564259,0.0849356,-0.3857536,0.24937204,0.29402518,-0.04929862,0.21959843,-0.07812266,-0.28545737,-0.5320473,0.01778063,-0.47364068,-0.12448476,0.32565373,0.123711124,0.1337002,-0.049433727,-0.0028292537,0.27292347,-0.22740261,0.05489772,0.101497516,-0.23399292,0.28208548,0.35140043,0.18082032,-0.41805774,0.5980926,-0.008784115,-0.23313098,0.21859226,0.077043295,0.27678826,0.16785206,0.2502062,0.012857339,-0.29873002,0.38470644,0.9218738,0.16940588,0.34894097,0.025445843,-0.12735349,0.36393023,0.030998588,0.14329907,0.072200656,-0.38981283,-0.15631863,-0.0049865176,0.20433174,0.4424162,0.29999498,0.31346485,0.066253126,-0.14516413,0.0400822,0.20796563,-0.045441333,-1.2227557,0.5062927,0.34060776,0.79853314,0.251143,0.0046821176,-0.16486944,0.797825,-0.3064993,0.052611426,0.46665052,-0.1000015,-0.53870195,0.5742105,-0.6115904,0.55106753,-0.025654165,-0.111589596,0.09285146,0.20970507,0.20200059,0.8262954,-0.24291594,-0.14053322,0.08309924,-0.37473643,0.13443278,-0.2799362,-0.12682268,-0.44035408,-0.33176968,0.4872725,0.20648219,0.18074152,-0.15011667,-0.030433813,-0.053370677,-0.19343548,0.27549234,-0.007132765,0.07924981,0.0033569757,-0.6414963,-0.2718012,0.46635035,-0.11961164,0.15996301,-0.15827344,-0.22704218,0.18731698,-0.15360962,0.053838078,-0.08988059,-0.42616898,0.008083063,-0.11145018,-0.60639626,0.56972265,-0.3648338,0.33873734,0.30326486,-0.117407724,-0.28472582,0.494127,0.17640682,0.82240164,-0.3127169,-0.22586864,-0.54326355,-0.086777814,0.2768284,-0.16199093,-0.08430718,-0.33683288,-0.05621024,-0.3689878,0.59943086,-0.2026984,-0.30848956,0.10044253,-0.4393114,-0.07876514,0.5199088,-0.14571401,-0.14487521,-0.14986965,0.030448822,-0.3361274,-0.044084616,-0.26561412,0.26699135,0.2575311,-0.007409944,-0.33438393,-0.2560174,-0.07566921,0.4848942,-0.13618279,0.39795527,0.1370984,0.08537478,-0.10801865,0.09445973,0.31638825,0.30684286,0.23021251,-0.007877349,-0.4487206,-0.22312942,-0.31452793,-0.035274904,-0.13367005,0.1286302,0.18241481,-0.32189015,0.92376316,-0.113851115,1.1510378,0.10841026,-0.31303656,-0.0043542525,0.59724003,-0.039076224,0.117486335,-0.13259348,0.70378023,0.57108015,0.0056886743,-0.16943137,-0.39208114,0.053938925,0.37799025,-0.25505704,0.059236914,0.044923887,-0.45011598,-0.3451674,0.35776395,0.06801124,0.30805716,-0.037212394,-0.15149625,0.035845738,0.11545267,0.36442497,-0.513923,-0.21337995,0.1904056,0.027800502,0.06645251,0.15764037,-0.42658156,0.5989273,-0.5931133,0.06980217,-0.2811019,0.3039976,-0.14856787,-0.1899304,0.11832832,-0.18173155,0.39917937,-0.18969904,-0.3616491,-0.15872677,0.49700928,-0.04882774,0.2260758,0.5093829,-0.21182093,0.011270931,0.107864216,0.5734086,1.0200268,-0.29764664,-0.049634457,0.2529154,-0.2821195,-0.61956674,0.48080432,-0.2440808,-0.04524174,-0.029973542,-0.262994,-0.3986587,0.2451748,0.26957193,0.27692494,-0.07406237,-0.5586991,-0.35484868,0.39784205,-0.21687451,-0.15306047,-0.33193076,0.3352711,0.62908834,-0.2899121,-0.38080102,0.12849244,0.2605948,-0.26826167,-0.4660632,0.09178251,-0.2511586,0.46739224,0.14264865,-0.21439967,0.040110692,0.22657347,-0.4257114,0.3665119,0.17840134,-0.4173042,0.12369501,0.044558246,-0.1530332,1.0000083,-0.29782265,-0.04429288,-0.54203206,-0.47434267,-0.8790736,-0.4964278,0.3622509,0.120332435,-0.09041542,-0.48095545,-0.026094718,0.066752784,-0.11066371,0.007551532,-0.49477056,0.44460818,0.08667327,0.41537154,-0.2130024,-0.7815174,0.084086575,-0.07761723,-0.08410892,-0.5498688,0.59082747,-0.16950953,0.9154932,0.052532036,-0.06884143,0.18352702,-0.21111596,-0.07048906,-0.31180838,-0.33239624,-0.63200307,-0.08942941,642 -18,0.52715176,0.17145503,-0.4281926,-0.071191356,-0.3952689,0.2119792,-0.17940746,0.0068081687,0.091441095,-0.4423807,-0.060672157,-0.03921153,-0.086352,0.11428442,-0.13702825,-0.41724086,0.20798641,0.26010457,-0.5035739,0.6118721,-0.3202312,0.39206618,0.22011395,0.19083996,-0.048311543,0.1396941,0.30964807,-0.20571952,-0.17714489,-0.23903005,-0.37182572,0.09063603,-0.7476804,0.34096432,-0.2557424,-0.41258204,-0.033483528,-0.16740215,-0.19780564,-0.6882024,0.24200293,-0.70848846,0.56622773,-0.027479768,-0.21190284,0.10782435,0.21950598,0.2616607,-0.13996144,0.068157256,0.167599,-0.10919482,-0.3126422,-0.23163123,-0.119015105,-0.39986324,-0.3635552,0.011436291,-0.43514147,0.06292243,-0.29346135,0.26369673,-0.18558352,-0.023469277,-0.11553007,0.17741136,-0.23157199,0.45396334,0.15909109,-0.0015372984,-0.013552441,-0.536688,0.0696804,-0.20516764,0.37971184,-0.087689854,-0.1946366,0.21283473,0.35221872,0.5817013,0.11271199,-0.21780348,-0.17474128,-0.14539607,0.08621386,0.39976403,-0.20511997,-0.31706727,-0.1932297,-0.09067767,0.26505202,0.2571254,0.14254516,-0.3939522,-0.03636769,-0.105219945,-0.20830183,0.25410026,0.5206522,-0.41535234,-0.13598716,0.40305042,0.5530995,-0.0069462694,-0.038828276,-0.007351181,-0.06465808,-0.42739183,-0.17987569,0.12181441,-0.06729386,0.4409542,-0.11505675,0.16520707,0.5503034,-0.14394379,-0.062160127,0.102977276,-0.014755589,-0.0989441,-0.12145529,-0.10671203,0.21035239,-0.6450254,-0.09275267,-0.1783227,0.84566265,0.12893379,-0.5410399,0.30548877,-0.3796519,0.16857341,-0.022769267,0.48500746,0.66169053,0.37144002,-0.03143016,0.88745236,-0.53624356,0.053598545,-0.027334185,-0.32108957,0.082467794,-0.17516372,-0.00494938,-0.47923502,0.08829302,0.023197511,0.15338917,-0.02661562,0.26169175,-0.6984916,-0.2986358,0.024171717,0.7038869,-0.3825268,-0.011400531,0.6678092,0.8989577,0.93853426,0.039305307,1.3416356,0.33550498,-0.14592443,-0.15332295,-0.21260054,-0.68750185,0.106320806,0.26172733,-0.20974013,0.15001214,0.17761554,-0.07414212,0.38244852,-0.36600986,-0.14779274,-0.2634381,0.44558653,0.01359644,0.011706643,-0.40094477,-0.20063722,0.19059488,0.03130261,0.29765087,0.33131823,-0.19652936,0.21483842,0.18677178,1.7578393,-0.24245615,0.0683293,0.093702875,0.23914859,0.29549462,-0.0829677,-0.07736106,0.24122533,0.35419878,-0.070602596,-0.27900392,-0.24330863,-0.2673015,-0.49861264,-0.1565639,-0.18154939,-0.24306929,-0.12974718,-0.16538413,-0.33801037,-0.031676967,-0.15086485,0.65423214,-2.5490675,-0.09718341,-0.19805086,0.3203771,-0.39346582,-0.3452531,-0.19501725,-0.44882834,0.5227437,0.19941318,0.50653315,-0.63408446,0.31948677,0.2964101,-0.32295328,-0.2685801,-0.7025162,0.12746306,-0.02809178,0.43589726,0.0073608863,-0.22697802,-0.03191692,-0.0055956175,0.33338732,0.0150914015,0.1626162,0.2827251,0.43254825,0.1826013,0.39046612,0.3043715,0.6842272,-0.37076086,-0.10745162,0.48247203,-0.2780551,0.43032378,-0.2432428,0.090379864,0.42265773,-0.40007097,-0.60551035,-0.7612595,-0.06566828,0.96904004,-0.19842926,-0.4751073,-0.0234358,-0.20262785,-0.14332314,0.0026700217,0.17802192,0.050234985,-0.055118315,-0.66336656,0.21566537,0.038064163,0.25229922,-0.07035182,0.05437886,-0.38588116,0.6673311,-0.24472907,0.39967433,0.47746602,0.29587662,-0.08086419,-0.3797707,0.14665517,1.0050775,0.41303682,0.08700186,-0.21864878,-0.37527612,-0.3005863,-0.22946745,0.040195093,0.4269723,0.5965828,-0.06471499,-0.05097439,0.31901526,0.1377706,-0.03938872,-0.04688338,-0.36441544,-0.1784545,-0.19707242,0.48925233,0.6686562,-0.1371139,0.42228875,-0.13405932,0.16823435,-0.13954984,-0.5847789,0.6657938,0.90095174,-0.32731166,-0.19455248,0.41434687,0.31693926,-0.2242665,0.4259895,-0.6610102,-0.4582822,0.32923028,0.041244,-0.21975075,-0.035283905,-0.2974134,0.116756275,-0.6772328,0.44632226,-0.21008208,-0.28661767,-0.51821166,-0.19761837,-2.159113,0.22319135,-0.24625683,0.104484595,-0.1528589,-0.091967925,-0.003105472,-0.45228162,-0.41270745,0.19648933,0.010425217,0.45292968,0.15824796,0.33039,-0.18150151,-0.20488298,-0.29022747,0.18954314,0.12732394,0.288839,-0.1212192,-0.3872326,0.013326722,-0.05903049,-0.20490223,0.030222801,-0.6635973,-0.4668689,-0.2233045,-0.26733506,-0.1404307,0.76764244,-0.47055316,0.0811038,-0.37429163,-0.0391865,-0.19198763,0.22947678,0.20124161,-0.00784307,0.04052807,-0.0012165132,-0.0688262,-0.38035086,0.14838418,0.11337298,0.22754705,0.46764576,-0.25982666,0.14575675,0.17750667,0.5504453,-0.027410079,0.76030385,0.29916975,-0.27746853,0.35759157,-0.15858798,-0.23154055,-0.63083076,-0.49147964,-0.12387711,-0.46964237,-0.29752672,0.06246989,-0.37580255,-0.7153516,0.47217578,0.04350213,0.117063425,0.018864794,0.39321995,0.50704473,-0.26467934,-0.027302016,-0.08278572,-0.18254086,-0.60811996,-0.42387536,-0.55050004,-0.34944236,0.3080483,1.1215017,-0.34544846,-0.077978835,0.13942298,-0.20813236,-0.030736316,0.024367914,-0.048602134,0.056097887,0.48066044,-0.04837064,-0.64626926,0.41333896,-0.10051209,-0.099030845,-0.55990934,0.27888894,0.5459148,-0.64140654,0.2239179,0.46787474,0.22194992,0.14831264,-0.5727336,-0.24025275,-0.07231295,-0.31218654,0.30648956,0.19728717,-0.48226178,0.42516539,0.23615158,-0.03149165,-0.67412806,0.47198436,0.12044738,-0.27124634,0.08725737,0.3329933,0.14947769,-0.053838644,-0.12647447,0.06530348,-0.49392438,0.31175038,0.21930446,-0.176438,0.28488678,-0.24587917,-0.49900824,-0.597824,-0.067600176,-0.4814852,-0.4511713,0.11839781,0.016266398,0.023892147,0.10755296,0.30348745,0.34003562,-0.46784627,0.06036682,-0.01215802,-0.06979637,0.40038916,0.27553636,0.40016088,-0.4072823,0.5467751,-0.0057852725,-0.18147063,-0.18652633,0.19846201,0.3996626,0.08738414,0.27936107,0.049766675,-0.089983776,0.27659836,0.70327413,0.19981197,0.14374065,-0.024872405,-0.25726786,0.1315109,0.060532387,0.11521318,0.118030675,-0.48053715,-0.016049694,0.009147815,0.21953723,0.37686592,0.24766639,0.32490933,-0.07010886,-0.18789649,0.020228041,-0.060744874,-0.016315874,-1.1320401,0.07825593,0.21778052,0.69649184,0.4788732,-0.13134201,0.050063167,0.4561003,-0.2622645,0.17933668,0.31269205,-0.23764788,-0.2379524,0.46210894,-0.6411214,0.38479662,-0.022266464,0.12191838,-0.015545408,-0.025122182,0.13227542,0.9435318,-0.10363061,0.0802641,-0.27879283,-0.2559772,-0.08368646,-0.16398653,0.1402566,-0.26263142,-0.34148803,0.77634966,0.36471677,0.4516977,-0.29326892,-0.020433849,0.093414165,-0.19010103,0.14259882,-0.0048184358,0.19889918,0.0937648,-0.47204888,-0.14388113,0.5703191,-0.23798239,0.06192142,0.11779129,-0.20861673,0.21346878,-0.22986206,0.024378546,-0.07118576,-0.61417097,-0.04494703,-0.34460217,-0.024711227,0.3445863,0.005515505,0.15448812,0.08392215,-0.018849531,-0.15568635,0.3386889,-0.014251421,0.5969566,0.070623875,-0.07800984,-0.3847904,0.2077692,0.24383366,-0.30728877,0.11765748,-0.11112804,0.17613223,-0.7217226,0.31017804,0.056896135,-0.18205439,0.07447236,-0.24541178,-0.058377188,0.52554715,-0.02079545,-0.07900915,0.086048335,-0.023299877,-0.1466842,0.033462625,-0.059050377,0.09410349,0.33024535,0.04265669,-0.017882152,-0.18338992,-0.41752687,0.15595917,0.23751368,0.29988256,0.23935632,0.042385396,-0.47359332,-0.043748006,0.026676238,0.43719012,-0.15334378,-0.14805673,-0.17168696,-0.47200558,-0.4921563,0.39398357,-0.15811457,0.10556752,0.01650124,-0.20359042,0.68731105,0.11685688,1.1807845,0.15607615,-0.26766706,-0.051069085,0.6686733,0.004008307,0.10086775,-0.3157976,0.872066,0.461745,0.02842921,-0.10593085,-0.18374467,-0.1951922,0.23479453,-0.14379896,-0.056836996,-0.04134098,-0.46990538,-0.28647935,0.16872187,0.115403004,-0.007835348,-0.050556697,-0.090262085,0.23610808,0.0125969015,0.38901645,-0.61663663,-0.23763813,0.381066,0.24887836,0.01570795,0.11626877,-0.4929978,0.42108327,-0.4668323,-0.026600862,-0.29549712,0.08492001,-0.1767515,-0.13831075,0.2058082,-0.07227319,0.34242517,-0.5632426,-0.4392212,-0.24936014,0.38803327,0.34181932,0.3186614,0.6154647,-0.22842906,-0.03353652,0.0066560297,0.46465328,1.0597286,-0.18662576,0.039292533,0.47757372,-0.3763814,-0.49127883,0.23881842,-0.32340717,0.09858849,-0.00706583,-0.34849066,-0.3887369,0.36960375,0.12963974,0.10619842,0.07728645,-0.91877544,-0.022196932,0.2930054,-0.18019979,-0.17271227,-0.22474563,0.21034975,0.80764526,-0.1379169,-0.31712794,0.1554699,0.23628013,-0.2504988,-0.6490612,-0.1707233,-0.3908583,0.336042,0.24466464,-0.28650805,-0.16907164,0.045732252,-0.4637242,0.030397745,0.20418972,-0.33834234,0.044294957,-0.23098981,-0.043460775,0.72348523,-0.025609747,0.06127778,-0.4638207,-0.25296324,-0.759093,-0.40221095,0.2567481,0.27680406,0.057710625,-0.44013664,-0.18734758,-0.110811375,-0.09915547,-0.03714658,-0.5092559,0.48468623,0.20743774,0.20741639,-0.08612427,-0.9149169,0.06343686,0.034660805,-0.12081595,-0.4217467,0.3795195,-0.027336018,0.78077203,0.13580571,-0.13733292,0.36181426,-0.7079911,0.21166916,-0.24604355,-0.010183573,-0.8774465,0.08937016,678 -19,0.5935329,-0.1593402,-0.50380087,-0.1701976,-0.3551464,0.057287462,-0.34315726,0.07924772,0.062301874,-0.36575696,0.016651228,-0.13021326,0.029189643,0.36551583,-0.060866315,-0.90671873,0.10363612,0.0707032,-0.71373594,0.5944215,-0.55946326,0.5032185,0.060238805,0.13425454,0.010302027,0.32361078,0.28991035,-0.08702167,-0.12311342,0.042902164,-0.13426612,0.08526918,-0.56385505,0.1044281,-0.01173434,-0.22883521,0.07470417,-0.29418245,-0.3948435,-0.7029398,0.3795172,-0.6651068,0.31746486,0.06544712,-0.2950858,0.19220419,0.022064477,0.14854573,-0.2981552,0.3123381,0.1800239,-0.1579738,-0.063930035,-0.18826607,-0.18306841,-0.6036209,-0.54120594,0.13213447,-0.55979234,-0.31719133,-0.26205567,0.1614591,-0.40973815,-0.034005288,-0.09980712,0.34837016,-0.4701317,-0.14090139,0.19896036,-0.08291323,0.2632514,-0.4445668,0.010911427,-0.14573383,0.15753262,-0.17550305,-0.16731045,0.32298833,0.17254028,0.49275595,0.098249674,-0.28206182,-0.15866505,-0.098855436,0.2852541,0.36784896,-0.16322124,-0.45511556,-0.19396855,0.031209175,0.02861985,0.0099097965,-0.06433774,-0.45062542,-0.06580763,-0.0375818,-0.19992824,0.3682332,0.5014874,-0.364577,-0.27273494,0.38827857,0.45175254,0.15754473,-0.15779853,0.08622771,-0.07938727,-0.4695809,-0.17865106,0.2089764,-0.042617932,0.38568223,-0.35196534,0.25028467,0.7105616,-0.17683226,0.01915805,-0.075752445,-0.06395598,-0.09971136,-0.030173488,-0.08136112,0.12042262,-0.62910247,0.09560512,-0.16570978,0.7380899,0.32718658,-0.71695846,0.40686792,-0.5092498,0.318458,-0.24967623,0.5285215,0.82309055,0.25118777,0.11067996,0.6353056,-0.5741114,0.15575665,-0.121877655,-0.47806516,0.14253819,-0.10910432,-0.084656656,-0.55862606,-0.039358456,-0.15314639,-0.1322799,-0.19028495,0.55665153,-0.37818986,-0.04015164,0.038272016,0.6671481,-0.35114053,0.01660068,0.61370146,0.8303823,1.1846464,0.06335826,1.0967054,0.38624442,-0.20612492,0.0993732,-0.3536335,-0.73860264,0.28712144,0.409558,0.31842163,0.3183822,-0.14780003,0.025042642,0.43799922,-0.30365607,0.037391387,-0.2878568,0.2586724,-0.13018501,-0.042140357,-0.4244721,-0.10459834,-0.007710853,0.20793423,-0.04243339,0.29254273,-0.13036111,0.2651448,-0.027837697,1.5889809,-0.0986337,0.086191006,0.07533151,0.41546562,0.41449922,-0.21725266,-0.031801213,0.21282922,0.40297598,0.1537087,-0.6445473,-0.03903736,-0.37765178,-0.44974267,-0.16685417,-0.2761994,0.11854835,-0.07444066,-0.44731504,-0.20872152,0.040622823,-0.30683193,0.3493668,-2.3917758,-0.21556899,-0.17267357,0.21175283,-0.25598592,-0.3636904,-0.09352548,-0.43979675,0.42242557,0.36380702,0.5149835,-0.5773986,0.31519777,0.35847387,-0.52559674,0.020959966,-0.67687,-0.12013844,-0.15459464,0.4869639,0.04398889,-0.057016034,-0.102136515,0.30098012,0.5227933,-0.2119267,0.08908854,0.20213965,0.35839453,0.11910785,0.42823175,0.027852416,0.47242647,-0.28935942,-0.21747497,0.40035206,-0.19269598,0.115766,-0.17005311,0.10014709,0.3184302,-0.56026924,-0.9211383,-0.5481966,-0.30218956,1.2425903,-0.16253382,-0.4070392,0.3020816,-0.030771386,-0.10180495,0.14594644,0.28742862,-0.19806705,-0.10137476,-0.7037902,0.2615399,0.031355906,0.1821784,0.12294134,-0.046892915,-0.22848022,0.55665725,-0.054920305,0.33504462,0.27397117,0.21307382,-0.034513444,-0.5217716,0.114566155,0.983307,0.37658224,0.16102791,-0.25243127,-0.20879176,-0.19021483,-0.109202646,0.0867768,0.2923784,0.7923862,-0.057607513,0.09248655,0.20048764,-0.083439,0.11806649,-0.14066213,-0.31456783,0.0806262,-0.11814931,0.5517326,0.4872313,-0.09758681,0.37971565,-0.038773496,0.28502515,-0.11440182,-0.56024057,0.66018856,1.2853556,-0.09817785,-0.1591366,0.45868707,0.3331799,-0.26346454,0.58132124,-0.623557,-0.32754105,0.37179658,-0.2582984,-0.25939763,0.25356746,-0.37421024,0.0626667,-0.7237708,0.33284917,-0.23557511,-0.3800255,-0.5552951,-0.19188593,-3.7149308,0.24111891,-0.30737945,-0.10585349,-0.07599845,0.05338478,0.33387226,-0.5019479,-0.534802,0.11587441,-0.067543395,0.60132045,-0.056163978,0.1653379,-0.21265513,-0.20369923,-0.42989087,0.12244576,0.09365843,0.31910592,0.0014318859,-0.39826664,0.0405531,-0.28654265,-0.44819847,0.04993418,-0.5031243,-0.43354455,-0.18813454,-0.450272,-0.1591188,0.5973015,-0.013192831,0.043304246,-0.20707893,-0.11523719,-0.11809843,0.2802508,0.18901134,0.17622392,0.07107886,0.04652855,-0.14350763,-0.27488503,0.14279033,0.10145507,0.12576263,0.34709448,-0.1181329,0.11547953,0.48271433,0.57083166,-0.1681495,0.762972,0.5156379,-0.120892875,0.3918412,-0.23538488,-0.239145,-0.5166644,-0.37410003,-0.18090431,-0.33829236,-0.5377976,-0.04901056,-0.24904026,-0.65777844,0.40301815,-0.013441521,0.09465505,-0.049044166,0.1609172,0.32021433,-0.11772817,-0.095421664,-0.082564436,-0.15367149,-0.4724345,-0.27120814,-0.64300436,-0.44584063,0.111403786,0.9143345,-0.11469629,-0.1700826,-0.20256126,-0.136258,-0.096571,-0.09684779,-0.012633091,0.29519486,0.098732285,0.0021330854,-0.84001744,0.49327737,-0.05925037,-0.03740832,-0.47133794,0.088428795,0.58630526,-0.58350855,0.42583603,0.32491517,0.19060656,0.07389777,-0.6118405,-0.13390179,0.20433897,-0.24804564,0.51120114,0.118197724,-0.74175334,0.5710643,0.3933639,-0.27468082,-0.70757294,0.49628314,0.19169699,-0.36728376,-0.016472816,0.3325454,-0.03347658,0.027746862,-0.23828232,0.40709382,-0.39722532,0.27122957,0.2918275,0.013763392,0.2606591,-0.08857736,-0.25851208,-0.5608139,-0.10118277,-0.39914694,-0.28954554,0.074655436,0.08588141,-0.04235377,0.046990156,-0.12769735,0.5283885,-0.15963443,0.10829512,-0.07902193,-0.21839303,0.2812542,0.40467137,0.4197526,-0.38625482,0.66594374,0.022570308,-0.17430933,-0.036995444,0.17454955,0.45891064,0.21513642,0.3816706,0.057863824,-0.094770476,0.2855751,0.8376974,0.071901985,0.49678147,0.15338996,-0.34123588,0.33074778,0.1783576,0.09562581,-0.077619724,-0.24483976,-0.075940125,0.059850138,0.22727638,0.46886158,0.10415863,0.24884212,-0.1565292,-0.25032887,0.08529674,0.18714336,0.03229936,-1.1390392,0.34222063,0.25492626,0.67588854,0.68540597,-0.03750747,-0.0013348355,0.5745431,-0.25046065,0.040123552,0.36366367,-0.110658735,-0.54702413,0.4450543,-0.62356746,0.29577607,-0.06970846,-0.008742916,0.01698461,0.09887684,0.34664392,0.7701023,-0.07397929,0.07983729,-0.13076608,-0.33451125,0.118798,-0.33503544,0.039854743,-0.29637405,-0.33017278,0.6114638,0.28053084,0.12656029,-0.20005536,-0.042443093,0.006332054,-0.103653334,0.13582782,-0.0021066542,0.054105673,-0.04285144,-0.6638003,-0.3439613,0.48215967,0.103779964,0.042820122,-0.048255853,-0.1541865,0.23386702,-0.23016939,-0.0025220478,-0.008827069,-0.71272504,-0.06737232,-0.31700963,-0.25213668,0.4496511,-0.17629535,0.28973386,0.19857658,0.109729454,-0.35759112,0.21960723,-0.0053779096,0.6391642,0.059784062,-0.20576079,-0.3644241,0.047747638,0.20282549,-0.23016949,-0.12492278,-0.28825283,0.0064119557,-0.67637575,0.51273817,-0.11565137,-0.32929406,0.19012602,-0.11392188,-0.028415378,0.5654059,-0.20541826,-0.3322157,-0.031778794,-0.028960591,-0.27926415,-0.23402978,-0.082564056,0.245583,0.14740016,-0.17430922,-0.21005535,-0.025858963,0.005594001,0.5809408,0.05427495,0.3243489,0.33340344,0.14838384,-0.47145614,-0.06258732,0.296726,0.38076976,0.16971782,0.018448373,-0.21475825,-0.33102486,-0.34649104,0.10369247,-0.18871489,0.2583901,0.12658612,-0.39959666,0.59407836,0.20116901,1.1596011,-0.01968523,-0.23133713,0.1678616,0.4194313,0.051226467,0.052253474,-0.35101974,0.7446436,0.6525064,-0.03830011,-0.23953906,-0.37822902,-0.20302646,0.110281445,-0.2286957,-0.05991598,-0.010709846,-0.7509949,-0.32888693,0.2607473,0.21697578,0.08631466,0.03717375,-0.053194467,0.09638444,0.225448,0.38462812,-0.50831944,-0.09298155,0.26238912,0.24929126,-0.0038275192,0.16753668,-0.39811176,0.37293085,-0.5190625,0.17011411,-0.15714589,0.21473113,-0.0010249369,-0.26582143,0.2637455,0.041568648,0.3994112,-0.25374442,-0.50973743,-0.16064623,0.5568935,0.07914807,0.22444999,0.61085963,-0.33756196,0.22390889,0.08204347,0.5201336,1.0599632,-0.14378312,-0.054134272,0.3015468,-0.3375638,-0.7456464,0.25769475,-0.08827017,0.14110306,-0.0887996,-0.29383874,-0.4459311,0.15877277,0.18861438,0.052453466,0.120606564,-0.51512223,-0.24050176,0.31186965,-0.09359919,-0.21749252,-0.30862308,0.2032998,0.73606884,-0.40573716,-0.13967809,0.15492989,0.20937386,-0.26239538,-0.58416486,-0.0831166,-0.38579372,0.39489022,0.2862714,-0.077070504,0.16364074,0.09802853,-0.48445714,0.15653625,0.28145814,-0.40418696,-0.02819827,-0.1756019,-0.13187689,0.86755776,-0.22352658,0.042871904,-0.62293774,-0.5449572,-0.9231796,-0.39413685,0.6653422,0.15271932,0.19111617,-0.6692201,-0.028521637,0.024830742,0.06437492,0.057108056,-0.51986027,0.33190063,0.08815329,0.37063703,-0.09040291,-0.7300664,0.053839315,0.14002708,-0.33063278,-0.50787514,0.50848794,-0.10334451,0.73128366,0.030259771,0.04864393,0.2503237,-0.5152708,0.031261653,-0.24536152,-0.19905363,-0.5786462,0.20482324,693 -20,0.60457456,-0.2569849,-0.55922097,-0.026534498,-0.2632171,0.099666074,-0.12123456,0.48357487,0.2614137,-0.38663173,0.047841273,-0.21609747,0.0786138,0.30915064,-0.12958422,-0.27548814,-0.042477407,0.120163836,-0.34016737,0.54256546,-0.49858037,0.23487377,-0.07947982,0.43573487,0.20654392,0.19376105,0.027759783,-0.09586414,-0.36292732,-0.18317473,-0.019526454,0.3581199,-0.3878224,0.2656045,-0.1438044,-0.2605402,0.09627888,-0.3348006,-0.46806794,-0.6383254,0.19407234,-0.70862013,0.48987904,-0.02825359,-0.2649992,0.043567497,0.014724668,0.25663915,-0.2393782,-0.0071988245,0.08059646,-0.108009696,0.0892077,-0.361694,-0.08683447,-0.30869764,-0.4182538,0.023594337,-0.35999292,-0.020393506,-0.3178959,0.14239863,-0.33244428,-0.061715126,-0.15822604,0.48196304,-0.47569823,0.2934976,0.031893946,-0.2139706,0.3339592,-0.5279446,-0.38245296,-0.15452453,0.09069473,-0.06446936,-0.29805186,0.3803357,0.3280095,0.32568124,-0.029302696,-0.051888857,-0.38167563,-0.071033545,0.19206765,0.5448199,-0.1786331,-0.5961563,-0.14043388,0.0152049735,0.11448808,0.25467968,0.13534662,-0.443143,-0.05296685,0.1621383,-0.28079456,0.39885965,0.49947897,-0.30698776,-0.04335323,0.2665314,0.4434956,0.30112118,-0.08524947,-0.17367503,0.025291367,-0.48277035,-0.14912285,0.07032203,-0.03232172,0.56398153,-0.15059815,0.22191393,0.5631998,-0.26228222,-0.1869493,0.1143238,0.12080992,-0.15430956,-0.2321524,-0.21119183,0.054037068,-0.39083037,0.12961021,-0.099688865,0.8251985,0.17201151,-0.5800328,0.41066262,-0.49513996,0.10987835,-0.15782443,0.39172435,0.52057916,0.4769085,0.41381317,0.68267006,-0.48607394,0.036440983,-0.18042126,-0.4355404,0.03133584,-0.20837165,-0.011469056,-0.4756735,-0.019912258,0.014175706,-0.13453506,0.04194237,0.56868416,-0.43384498,-0.1820127,0.034443315,0.759354,-0.31581184,-0.06746104,0.6169713,1.00512,1.0330719,0.14149754,1.092106,0.14841346,-0.1764996,0.20499732,-0.21469018,-0.6665523,0.35325387,0.36408293,0.05357852,0.087550685,0.052048415,-0.004981672,0.41233435,-0.22731951,-0.041714396,-0.15144837,0.4876349,0.21889785,-0.08854909,-0.25172293,-0.45362556,-0.092325926,0.014950919,-0.17068446,0.30567864,-0.21443598,0.4148693,0.07647992,1.8939313,-0.01574883,0.047459267,0.06955893,0.5598523,0.20508498,-0.17887037,-0.01340148,0.36617884,0.11185767,0.14300953,-0.40324405,0.15796089,-0.2820021,-0.66112334,0.02105959,-0.30536962,-0.17405331,0.006798029,-0.43712634,-0.25616884,-0.079593934,-0.19005121,0.5915308,-2.8251073,-0.2550037,-0.057229955,0.34420845,-0.29684424,-0.34639236,-0.041798204,-0.41693664,0.3218963,0.18689632,0.5863388,-0.80013037,0.1762159,0.3568969,-0.42728683,-0.22700924,-0.50505435,-0.01688559,-0.020336628,0.37478855,0.003550852,0.012817772,-0.020466426,0.012971198,0.44587266,-0.15093727,0.26221466,0.21874066,0.25829872,-0.055129543,0.5014718,-0.0518979,0.47727394,-0.29163623,-0.16162847,0.3454274,-0.31081977,0.33422866,-0.04138639,0.03721282,0.47101605,-0.44571954,-0.77475095,-0.59238684,-0.09335979,1.0124351,-0.15106097,-0.4820502,0.23114382,-0.434441,-0.22404091,-0.15478297,0.17008503,0.010542111,-0.10235329,-0.8098397,0.13832678,-0.060786612,0.12979968,8.45825e-05,0.019632297,-0.21787941,0.6034776,0.038537983,0.48404706,0.4414203,0.08733226,-0.290985,-0.37796745,0.028435914,0.6899028,0.39403725,0.25354844,-0.2784233,-0.22427927,-0.10638346,-0.12985128,0.2208531,0.4501887,0.47643393,-0.16052328,0.1526445,0.35629562,-0.04680012,-0.07540622,-0.12799941,-0.19393493,-0.07789874,0.077409,0.59759593,0.84225553,-0.10132119,0.4468212,-0.034278456,0.3094244,-0.12765773,-0.49735624,0.42220092,0.9627257,-0.16300637,-0.27877134,0.4166104,0.45510697,-0.2166405,0.30249962,-0.5080306,-0.24962509,0.40936375,-0.17755337,-0.36103794,0.20600589,-0.3249829,0.1138613,-0.7988613,0.37720296,-0.37965223,-0.41886926,-0.40644166,-0.22409202,-2.7298515,0.14371705,-0.25290698,-0.22332512,0.048338573,-0.19371097,0.06102898,-0.58481884,-0.47615147,0.0739532,0.06512467,0.5607553,-0.026490482,0.011553729,-0.1888088,-0.38637775,-0.3038489,0.051560584,0.07639942,0.45939398,-0.07530454,-0.52552557,0.0073139807,-0.113777235,-0.42987743,0.16977863,-0.52959913,-0.5973108,-0.14045997,-0.3989091,-0.5670831,0.5701345,-0.09060106,-0.049336083,-0.08314831,-0.040979743,-0.090904094,0.20711124,0.14058287,0.10695527,0.037130754,-0.018111601,-0.030707408,-0.31455117,0.1648928,0.019789554,0.27903655,0.44820496,-0.09237332,0.11657524,0.52964926,0.5596741,-0.1496931,0.7630367,0.4202949,-0.13810475,0.24711691,-0.29983717,-0.31924087,-0.47835344,-0.38173366,0.056489542,-0.42928934,-0.47800535,-0.020506522,-0.31384602,-0.5282636,0.6073808,0.07361457,0.05312886,-0.01641553,0.1028847,0.52063674,-0.24559078,-0.11477193,0.07005339,-0.15455589,-0.7833445,-0.36063343,-0.68376374,-0.5166393,0.22376992,1.0564057,-0.22362351,-0.1540047,0.1414111,-0.3200276,0.013711171,-0.021364963,-0.015043042,0.061782986,0.3395773,-0.19444525,-0.56585956,0.36997834,-0.07758239,-0.1145704,-0.4726512,0.2919429,0.65373176,-0.47100055,0.6174645,0.25037226,0.27660853,-0.11024089,-0.48308113,-0.24852332,-0.020767776,-0.25312793,0.46936435,0.23128891,-0.7636037,0.38999933,0.44371328,-0.36112866,-0.68714905,0.48697338,-0.048256915,-0.29369673,-0.103976786,0.3033289,0.197529,-0.019370118,-0.044530813,0.31942874,-0.55079263,0.32569513,0.2980069,-0.12606129,0.13996083,-0.14030948,-0.21361756,-0.7169039,-0.031191755,-0.29102948,-0.37306938,0.22341366,0.049973805,0.043585766,0.011953536,0.19634283,0.31135833,-0.29667267,0.02556473,-0.084973805,-0.12292458,0.38285172,0.39472997,0.62047726,-0.25174946,0.5242551,-0.021650363,0.021041587,-0.08495782,0.039683063,0.27713794,0.20412877,0.26373017,0.026772654,-0.26073286,0.26938006,0.9370922,0.15405762,0.34503597,-0.06659728,-0.21087085,0.17784211,0.109186344,0.40680197,0.025077732,-0.46039242,0.07335985,-0.27229053,0.18750092,0.39190847,0.18785623,0.16094881,-0.11669407,-0.43982378,-0.020410016,0.15203288,0.02227847,-1.274206,0.30018687,0.203547,0.79282033,0.40418363,0.030677183,0.029997122,0.6834822,-0.22013938,0.056641906,0.31136277,-0.11421897,-0.47973856,0.35310978,-0.8334171,0.48990273,-0.021419033,-0.0077121495,-0.016652234,-0.03070717,0.4841078,0.7471474,-0.13355206,-0.065164566,0.13754486,-0.38089752,0.027593596,-0.4257196,-0.062092394,-0.6948191,-0.32775936,0.629581,0.45716664,0.36427274,-0.18982531,-0.017442338,0.11704105,-0.1499137,0.25758797,0.08008203,0.19075476,-0.08221617,-0.68194795,-0.17329523,0.5577378,-0.027246486,0.19279666,-0.06144336,-0.14552186,0.28403676,-0.1736807,-0.055169724,-0.02562939,-0.57411265,-0.06099848,-0.32881707,-0.34743086,0.4845406,-0.019407105,0.30421904,0.17620698,0.061525345,-0.16416521,0.5277269,0.115380555,0.76024145,-0.06172,-0.18709534,-0.4513002,0.072662205,0.19158694,-0.047236674,-0.08842031,-0.100104526,-0.13564211,-0.51799154,0.5048921,0.060543958,-0.17178264,0.073667064,-0.042148978,0.08278168,0.55482394,-0.078834385,-0.31332448,-0.20834559,-0.09648549,-0.39520785,-0.097364195,0.05731901,0.20157206,0.35420984,-0.01219638,-0.018587593,-0.18381795,0.037172437,0.3406175,0.026460953,0.2910663,0.2707987,0.20115043,-0.3656721,-0.18842298,0.17227656,0.5569874,-0.015650261,-0.002495706,-0.31609133,-0.4683047,-0.44085574,-0.0019509512,-0.18339598,0.33718756,0.10744818,-0.35084897,0.6736462,-0.19365534,1.1615878,0.13864493,-0.17913735,0.031763386,0.47076702,-0.018158495,0.06902944,-0.19912276,0.7717292,0.4733563,-0.11810721,-0.26430488,-0.33025575,0.015162528,0.10529524,-0.22363287,-0.062094957,0.03647546,-0.6038675,-0.14379437,0.16426751,0.1969821,0.14189787,-0.10611615,0.024958229,0.30747825,0.10983616,0.2868438,-0.27079865,-0.24221471,0.31660533,0.4017391,0.04730228,0.03078874,-0.47540855,0.3509842,-0.38243422,0.25405815,-0.16857454,0.18875785,-0.2236998,-0.22790034,0.2400378,-0.091703966,0.29307982,-0.31536406,-0.2954119,-0.19192132,0.4399336,0.07123932,0.14155675,0.65633214,-0.18245015,-0.109520875,0.15652996,0.33434695,1.0591154,-0.31240618,-0.17171386,0.54612845,-0.35948378,-0.5470019,0.3628879,-0.18194146,0.12838975,0.046447486,-0.12204027,-0.6617314,0.2201521,0.21800268,0.05626372,-0.07994256,-0.68849576,0.032380566,0.3495661,-0.4537615,-0.16871484,-0.30603135,0.03582902,0.5088722,-0.20201616,-0.36889198,0.19626418,0.18479216,-0.28381371,-0.33802,-0.05287595,-0.3699458,0.29386026,0.043909226,-0.26314917,-0.11175687,0.22441557,-0.41740862,-0.052016962,0.06481371,-0.35161814,0.12800202,-0.43970618,-0.040009744,0.92202353,-0.28148532,0.366524,-0.3942206,-0.36424458,-0.6862892,-0.22920653,0.48666024,-0.06785393,-0.011206156,-0.6525728,-0.15447581,0.07805464,-0.40198243,-0.28866932,-0.45090657,0.56068486,0.06702018,0.14690375,-0.028157908,-0.6688617,0.22825934,0.13329144,-0.08684117,-0.5026479,0.5571373,-0.16474326,0.71520334,0.07523103,0.030354276,0.3790227,-0.4172191,0.1098209,-0.21779922,-0.18690886,-0.58428144,0.032317422,712 -21,0.437486,-0.06554955,-0.525002,-0.21136087,-0.37615758,0.13459033,-0.26470146,0.1004678,0.23928079,-0.33598807,-0.00737632,-0.00683843,-0.0017551675,0.3315562,-0.17124413,-0.791881,0.052146107,0.07709426,-0.55439407,0.44832683,-0.5603806,0.52945226,0.026616657,0.3105353,0.08506849,0.3687121,0.19063991,-0.06358487,-0.02087011,0.12647839,-0.18987453,0.35642976,-0.6674094,0.038574796,0.08386518,-0.2676148,-0.07817009,-0.33323833,-0.29314166,-0.70732254,0.39525226,-0.7311746,0.47403285,-0.19644912,-0.3821316,0.15721525,0.06580765,0.3402103,-0.4356423,0.15866527,0.1913122,-0.3406035,-0.0204306,-0.01941359,-0.261822,-0.50394243,-0.5556615,-0.08669097,-0.6398397,-0.14493501,-0.3281431,0.21343805,-0.3832719,-0.009681936,-0.20878181,0.3991799,-0.37089735,-0.06809938,0.31212357,-0.11632826,0.10220292,-0.4160605,-0.074744776,-0.1872028,0.2347867,0.03807667,-0.26234618,0.28765038,0.36445943,0.5246974,0.11830206,-0.2801571,-0.12438674,-0.10398558,0.13928476,0.5079156,-0.07082749,-0.38209778,-0.3181192,-0.018591361,0.17137621,0.26399583,0.06050058,-0.41113967,-0.071825914,0.14823347,-0.23890296,0.30233568,0.44563618,-0.38937017,-0.20501451,0.45455045,0.41716817,0.10626616,-0.21970513,0.3229278,-0.04597963,-0.59053856,-0.23698501,0.2608329,-0.10660327,0.5372645,-0.24521172,0.15621544,0.7702843,-0.22664833,-0.0544297,-0.23720299,-0.17823115,-0.06930769,-0.26714125,-0.046498455,0.10058127,-0.43314767,0.12151192,-0.1969261,0.8534245,0.26632103,-0.8375912,0.34797436,-0.43614078,0.17603204,-0.24592416,0.63886935,0.9419847,0.26307687,0.3576489,0.89707285,-0.6160379,0.09269134,-0.03725396,-0.5168598,0.043175142,-0.04593725,-0.056844663,-0.48895574,0.09663185,-0.03319556,0.011145625,-0.09534149,0.36074203,-0.42816025,-0.04535041,-0.09231794,0.60148203,-0.48455733,-0.13148859,0.74930006,0.8502601,0.82787555,0.14349797,1.1966873,0.41155338,-0.13783203,0.14426851,-0.32797945,-0.4872219,0.16718695,0.29893813,0.10337799,0.327183,0.08459519,0.054858882,0.4076532,-0.15340054,-0.10695354,-0.005989047,0.25835246,0.0022301655,-0.10238197,-0.40471,-0.12752138,0.14030924,0.057951346,0.049160715,0.22084606,-0.2515522,0.40745616,0.22147691,1.5109211,0.03512295,0.07142318,-0.037440464,0.3819585,0.32516626,-0.21062486,-0.11064266,0.44861934,0.42909896,-0.116220094,-0.6648238,-0.020884044,-0.2311299,-0.40897667,-0.18704247,-0.45827407,-0.03444612,-0.093900725,-0.4959294,-0.09068297,0.1547159,-0.29525754,0.570584,-2.500299,-0.25487524,-0.104584835,0.25994405,-0.24681069,-0.36350632,-0.29608828,-0.4941344,0.27749148,0.36703795,0.22152276,-0.72443897,0.42498708,0.39099687,-0.2064997,-0.15668307,-0.64957607,-0.11163284,-0.08652311,0.38725966,-0.1204614,-0.017227087,-0.13665988,0.33363882,0.6233313,0.0042571602,0.014583155,0.047397867,0.4703083,0.062334687,0.6782556,0.14846437,0.63715166,-0.1259677,-0.08256183,0.32426548,-0.29660755,0.28751978,0.12594151,0.15927126,0.39141357,-0.43268642,-0.8108106,-0.57102776,-0.34653315,1.1096146,-0.53112334,-0.30955377,0.26841483,-0.016422398,-0.18640652,0.09098174,0.4220438,-0.08030116,-0.00982368,-0.721672,0.1887607,-0.083162956,0.0978411,-0.10360134,0.1456842,-0.14628705,0.6058523,-0.23231374,0.5630343,0.31790453,0.16760348,-0.08285657,-0.5433514,0.051248495,0.90451145,0.3672463,0.07203106,-0.17116669,-0.30373964,-0.19130515,-0.16807081,0.14881812,0.5039563,0.725225,0.0115223145,0.14867157,0.36110306,-0.23531513,0.011316724,-0.12431013,-0.25212383,0.027756313,-0.02501614,0.52596414,0.48676845,-0.2548688,0.42151222,-0.13995366,0.08047958,-0.1033669,-0.52866226,0.59298044,1.0062003,-0.26210925,-0.23777021,0.56379735,0.24902995,-0.30741194,0.3049391,-0.58388907,-0.14963844,0.72780216,-0.12256683,-0.30717334,0.14373146,-0.3165802,0.07389309,-0.878714,0.25419438,-0.017556218,-0.4745465,-0.45756972,-0.11541181,-4.1366796,0.11049293,-0.10573079,-0.12265382,-0.04266971,-0.17978281,0.3510989,-0.5300852,-0.56502676,0.09794235,-0.062435992,0.5154852,-0.05404718,0.1788332,-0.37969443,-0.02926234,-0.22541603,0.22909415,0.08665546,0.38596502,-0.022893513,-0.3740492,0.08545563,-0.3180668,-0.6274385,0.065541394,-0.35308766,-0.5670566,-0.16302375,-0.46520698,-0.28650078,0.76579195,-0.27623495,-0.04071837,-0.28543484,-0.09219214,-0.23285176,0.35511547,0.18508959,0.2223532,0.05896566,0.09891976,-0.17076413,-0.3805529,0.09473333,0.014498059,0.13700292,0.33378297,-0.015976418,0.11638819,0.5224332,0.58121705,-0.09104259,0.691734,0.31298485,-0.08968354,0.30950361,-0.38420698,-0.23043515,-0.70305526,-0.51205117,-0.43864524,-0.48868796,-0.46908897,-0.26080915,-0.4192746,-0.8264426,0.43322927,0.006730597,0.22948515,-0.14713404,0.30159026,0.37523606,-0.1794516,0.006756481,-0.08031253,-0.29343867,-0.5596142,-0.46931434,-0.5804404,-0.612463,0.22989193,0.9520367,-0.18619598,-0.17932616,-0.17441377,-0.2664299,-0.07107593,-0.050395854,0.2359689,0.31233197,0.29202098,-0.17682421,-0.57973975,0.49971175,-0.17002283,-0.082131736,-0.59742343,0.022486806,0.660993,-0.57036716,0.6052555,0.30102324,0.187338,0.12947091,-0.66456604,-0.26779506,0.08973311,-0.2659721,0.61488163,0.15108566,-0.7592061,0.58141357,0.14835761,-0.033298906,-0.664503,0.5052876,0.0383996,-0.23177128,0.12053271,0.34108028,0.026239378,-0.03486237,-0.23114681,0.17726183,-0.5739995,0.2896029,0.42173597,0.04356352,0.41985202,0.04870649,-0.2343771,-0.5814467,-0.16720763,-0.62274045,-0.26223013,-0.038078982,-0.049622364,0.18189526,0.043985307,-0.0991743,0.50427383,-0.32652625,0.20699005,-0.003472514,-0.07146356,0.31624532,0.56687844,0.22361031,-0.47754365,0.543986,0.15844539,0.026771938,-0.06748459,0.09302057,0.5525704,0.33044124,0.2936835,-0.11483086,-0.13353014,0.1138398,0.6361264,0.2755848,0.47163078,0.24450712,-0.3193153,0.35101616,0.2612901,0.21976864,0.077057645,-0.17360535,-0.1439401,0.052068148,0.23436606,0.48356858,0.21320204,0.34459653,-0.054664336,-0.17393945,0.23513547,0.087833494,-0.112158485,-1.1817249,0.3416664,0.27167436,0.614549,0.5645313,-0.019460559,0.073410176,0.30179438,-0.42309177,0.18165527,0.31512037,-0.0076651643,-0.46574125,0.50267404,-0.5932386,0.4629231,-0.21621263,0.02629158,0.08923645,0.24056995,0.36550957,1.0120231,-0.11854957,0.15237783,0.044191036,-0.17393026,0.23967586,-0.31598338,-0.08968847,-0.42857277,-0.2810737,0.5157399,0.34162655,0.25284553,-0.3364657,-0.06969714,0.051009297,-0.11450033,-0.16776422,-0.07223281,0.020433167,-0.03773385,-0.48781967,-0.49012515,0.5821827,-0.19537699,0.021458372,0.074762166,-0.37600645,0.2790161,-0.1344383,-0.06918836,-0.036947202,-0.6618242,-0.17356683,-0.2433419,-0.5315629,0.34118578,-0.48967996,0.2644757,0.14796741,0.043739572,-0.3234222,0.1227246,0.2859286,0.7520688,-0.026061324,-0.09245923,-0.41034657,-0.050724037,0.47817454,-0.34647292,-0.1692443,-0.33155304,0.082178086,-0.54367346,0.3868305,-0.0805975,-0.25769424,-0.011508661,-0.10427397,-0.023943152,0.41051093,-0.29207966,-0.19136,0.13387652,-0.035009407,-0.34856582,-0.08541345,-0.31469616,0.28032526,0.046373077,-0.12240059,0.18004563,-0.058679402,-0.06009306,0.3598962,0.12682295,0.2839005,0.25727355,-0.06283331,-0.29354453,-0.060732037,0.15999524,0.31917158,0.07899537,-0.0928271,-0.20606428,-0.32596704,-0.24795252,0.27894127,-0.1585162,0.24638306,0.09960998,-0.45932478,0.74113876,0.12434847,1.1062934,0.12543745,-0.36788458,0.06397034,0.43888894,0.14023611,0.1918568,-0.23843129,0.8474832,0.5195051,-0.06259648,-0.1924373,-0.34046587,-0.2876095,0.27074796,-0.23862603,-0.24778903,-0.114807785,-0.57489663,-0.2406524,0.16156662,0.22021045,0.12814718,0.0020837819,-0.15853475,0.10478087,0.17311978,0.4963908,-0.49996555,0.010643679,0.35281456,0.2016229,0.09102033,0.24598882,-0.26968607,0.4910028,-0.61649716,0.18613742,-0.4934174,0.23259942,-0.016291814,-0.13413225,0.23905417,-0.06901283,0.33746853,-0.18111496,-0.29808566,-0.28571382,0.6830077,0.09490385,0.25203213,0.782973,-0.2594113,0.044718813,0.055327095,0.46394882,1.2791263,-0.05290295,0.02295264,0.3329731,-0.29962546,-0.63739985,0.23157454,-0.30214226,0.10734373,-0.098121375,-0.35321683,-0.34360892,0.28712216,0.09350378,0.07354541,0.10401974,-0.5621476,-0.29270902,0.53155535,-0.15543579,-0.16913007,-0.19332407,0.34486413,0.7458248,-0.4412682,-0.30365986,0.040283974,0.25553298,-0.19478627,-0.5395081,-0.009738543,-0.24429439,0.42109203,0.09834821,-0.2772621,0.08142506,0.32581013,-0.38102013,0.1905964,0.40043914,-0.28988886,0.17235291,-0.16731584,-0.16801623,1.160568,0.0039779088,0.08411249,-0.7104216,-0.5036038,-0.9693305,-0.36857563,0.20682983,0.17880735,0.013226502,-0.58297795,-0.050741892,-0.02873514,-0.01954775,0.08660106,-0.5666985,0.45365566,0.114581905,0.39889738,-0.042488314,-0.86444,-0.10763704,0.09289677,-0.22504032,-0.5894011,0.7063538,-0.22445065,0.75591326,0.12008967,0.10566825,0.06893646,-0.5915007,0.2921707,-0.41736877,-0.08764407,-0.7748484,0.086009815,728 -22,0.37147364,-0.12697075,-0.5270509,-0.09708414,-0.19153626,0.19360961,-0.13789861,0.49348998,-0.0015473505,-0.3204163,-0.07109138,-0.032003004,-0.022480536,0.21081047,-0.18200064,-0.541893,-0.027072597,-0.014795633,-0.37379056,0.24311225,-0.47300115,0.25669602,-0.055872735,0.27383152,0.14843722,0.2598354,0.17533582,0.043275837,-0.02707433,-0.16940413,-0.22906467,0.318506,-0.48407447,0.08031867,-0.1443855,-0.23646952,-0.021770477,-0.36944988,-0.43319437,-0.5295912,0.2512956,-0.66694635,0.38644612,0.048851285,-0.20087202,0.36278227,0.21023098,0.20109607,-0.1198801,-0.00077188894,0.24766347,0.027112173,0.11556178,-0.16990902,-0.22019294,-0.44196022,-0.44255772,0.07400766,-0.5542769,-0.14133482,-0.01297286,0.15706958,-0.15232484,-0.030534608,-0.2613048,0.45183313,-0.3442678,-0.14700687,0.2094528,-0.10712773,0.29414332,-0.5246923,-0.07512136,0.05953312,0.08593281,-0.12610744,-0.14278825,0.11426231,0.1418568,0.39665976,-0.12761192,-0.13583408,-0.3411915,0.026313046,0.06238354,0.41652724,-0.31238306,-0.3524661,-0.23855445,0.038533956,0.21969432,0.19458131,0.035081644,-0.23610508,-0.10786317,0.007530293,-0.26725727,0.43807808,0.52888304,-0.33192194,-0.13815537,0.3839083,0.5259271,0.11845395,-0.19961813,0.1279756,-0.008228371,-0.44651812,-0.07297665,0.053988412,-0.1390653,0.43285155,-0.15968281,0.2602199,0.50152636,-0.06389462,0.07345414,-0.0056348145,-0.04625562,0.021511141,-0.23468985,-0.0742038,0.080190636,-0.3602284,-0.02736195,-0.12165336,0.6227437,0.052926525,-0.75641507,0.28255457,-0.46364868,0.16340072,-0.10926136,0.42092744,0.7035767,0.27071723,0.05826582,0.713097,-0.33844984,0.11531059,-0.122034915,-0.3391677,0.11541627,0.11625897,-0.010359399,-0.58347476,-0.10954317,0.15202059,0.0068546883,-0.018355517,0.40213048,-0.5652805,-0.088386916,0.20949739,0.82723707,-0.23001334,-0.11741292,0.63995564,1.0558062,0.88673437,0.0664344,0.7812372,0.15510449,-0.10863945,0.054411784,-0.32779193,-0.5176145,0.1319885,0.3650325,0.23436292,0.21958502,0.030916736,-0.034134716,0.47040698,-0.30573916,0.020436,-0.14747441,0.24615978,0.076359,-0.02244118,-0.25228763,-0.11103928,0.05779411,0.16490354,0.05819188,0.2791803,-0.2831072,0.25623408,0.09857304,1.5795164,-0.16373496,0.16210228,0.15498905,0.39971414,0.25214264,-0.33193412,0.061211657,0.19521025,0.49880117,0.111348405,-0.3986105,0.013133644,-0.22536242,-0.47534448,-0.09107463,-0.22169282,-0.08787092,-0.15082493,-0.5533541,-0.0113296565,-0.0054979674,-0.2878821,0.3824323,-3.1695764,0.057921212,-0.10720994,0.18383189,-0.19697237,-0.4473197,-0.17233019,-0.47906858,0.46149507,0.40238604,0.3545934,-0.5552568,0.35714912,0.2895724,-0.2853167,0.070781216,-0.6767703,-0.07184988,-0.03307565,0.3376936,0.073448114,0.02757233,0.1000682,0.27860686,0.34626928,-0.098655954,0.14251997,0.09051126,0.32757354,0.07517242,0.41020977,-0.0076608886,0.35897088,-0.17734471,-0.22415252,0.3668687,-0.3386557,0.09749088,-0.057999417,0.1855814,0.28759697,-0.37089178,-0.86311495,-0.43042713,-0.22724374,1.1420128,-0.18261898,-0.43225813,0.23070881,-0.14011319,-0.26720467,0.010888135,0.39342067,-0.08725019,-0.035514202,-0.7590131,0.14900632,-0.31640705,0.1050217,-0.11200261,-0.06001746,-0.41991588,0.62832904,-0.13642468,0.49718353,0.3956945,0.2204997,-0.31849965,-0.42663532,-0.014318652,0.88738734,0.41360924,0.016852371,-0.056640442,-0.1515258,-0.26355952,0.08124098,0.20039785,0.58417994,0.6681581,-0.0091177225,0.1617281,0.29361483,-0.024617096,-0.12212478,-0.05635634,-0.2811526,-0.019619416,-0.04057482,0.6261113,0.5455148,-0.020270336,0.5390237,-0.15647298,0.34474775,-0.30732465,-0.5038699,0.31285164,0.55145305,-0.12071231,-0.356607,0.4566028,0.41886857,-0.059922513,0.34313226,-0.6192777,-0.40842777,0.3873527,-0.22254458,-0.298083,0.33454362,-0.3173132,-0.049393445,-0.64809215,0.28253213,-0.22619146,-0.68275344,-0.60088336,-0.37527892,-3.4929585,0.14171816,-0.17907941,-0.1384724,0.0056916126,-0.17077816,0.27595335,-0.4221538,-0.36091793,0.1448828,0.101481825,0.5477582,0.0057164114,0.05178631,-0.22568825,-0.13107562,-0.20201744,0.1997949,0.18006185,0.23723955,-0.029450472,-0.3797614,-0.058692463,-0.17188925,-0.41474876,0.045782447,-0.45906764,-0.46872672,-0.12895858,-0.38332045,-0.14200711,0.59600145,-0.41174272,0.048601657,-0.21502833,-0.023928348,-0.029718915,0.3350322,0.17584616,0.08803992,-0.08474201,0.037529968,0.038323797,-0.39504603,0.14581324,0.10939828,0.26193902,0.32224438,-0.0527136,0.15617815,0.51517725,0.5547269,-0.050286025,0.67406845,0.47678488,-0.14588453,0.28546518,-0.11549929,-0.009066053,-0.49328828,-0.30156165,-0.05997955,-0.40326667,-0.38690063,-0.18378955,-0.3567042,-0.62904376,0.37671977,0.011566969,0.16536601,-0.066783644,0.34094357,0.44640377,-0.12320498,-0.040892206,-0.03400051,-0.11670184,-0.43813735,-0.3706091,-0.6124391,-0.36621732,0.092638195,1.0726323,-0.23145333,-0.045684822,-0.08424105,-0.1510898,-0.037280187,0.07673319,-0.047701567,0.20179033,0.25901937,-0.27227458,-0.5358195,0.3625671,-0.3523543,-0.16997674,-0.5420571,0.040889557,0.49793345,-0.42472962,0.4137828,0.2256994,0.2748007,-0.18829079,-0.59127253,-0.012975426,0.09307324,-0.29219103,0.5011946,0.20939061,-0.7557494,0.5545846,0.20294616,-0.12764855,-0.6603601,0.5089441,0.11112423,-0.24114037,-0.03145241,0.21558185,0.016086593,-0.045871362,-0.14130898,0.19317189,-0.32386118,0.22095947,0.2779312,-0.05131646,0.26427698,-0.22780919,0.028466856,-0.46081004,-0.10348002,-0.46439826,-0.26271975,0.055026524,-0.06703635,0.19114253,0.12885344,-0.25382158,0.37890723,-0.20837104,0.19591606,-0.11174011,-0.16902255,0.2997755,0.3714387,0.27775416,-0.40406328,0.51171046,0.14268972,-0.14594094,0.021760566,0.14493379,0.40012684,0.00086951256,0.25731844,-0.17114013,-0.11552386,0.33577245,0.72353834,0.1924048,0.44059518,-0.036073167,-0.19006401,0.047869835,-0.039408855,0.04332524,-0.06032722,-0.4914221,-0.072118506,-0.08321794,0.30792478,0.36319324,0.16782032,0.41298822,-0.06528628,-0.16031854,0.17315117,0.21669593,-0.033688348,-1.1428722,0.29929417,0.17870606,0.8154153,0.47017026,0.06120505,-0.038423005,0.49643072,-0.2981236,0.07724571,0.3513869,0.03922152,-0.26931673,0.3778727,-0.7749223,0.44373405,-0.047922272,-0.049193796,-0.11610644,-0.14027312,0.40110564,0.8671108,-0.13621703,0.1033521,0.0061016786,-0.1963965,0.15131384,-0.18681926,0.14206173,-0.48917803,-0.3973453,0.67353994,0.43902758,0.35187295,-0.117090106,-0.12351467,0.042055964,-0.083272934,-0.04112593,-0.004661526,0.08095688,-0.17012589,-0.59990704,-0.39693063,0.38262606,-0.08540602,0.100879684,0.13705742,-0.23753048,0.12571089,-0.053613152,0.004328426,0.035365324,-0.53280777,-0.0958716,-0.17266323,-0.31168607,0.5583047,-0.42010164,0.32367328,0.0626606,0.022888167,-0.16135441,0.1349383,0.068992004,0.7078094,-0.0731623,-0.028206902,-0.4240096,0.14745174,0.13008082,-0.18066628,-0.30472717,-0.36054316,0.16653521,-0.70899534,0.3027782,-0.08886625,-0.22269166,0.16337705,-0.13680498,0.08716731,0.48300406,-0.031248486,-0.2107182,0.045088742,-0.107018426,-0.20513041,0.009240603,-0.0951144,0.2570094,0.024019297,-0.09814579,-0.023907255,-0.020274095,-0.17437533,0.24660733,0.131961,0.3308978,0.28547487,0.19484651,-0.3737194,-0.067807995,0.07041697,0.45654416,0.02509796,-0.1392135,-0.14953026,-0.42593932,-0.2942706,0.1826488,-0.12937643,0.2869109,0.10426966,-0.05251387,0.6131255,-0.0896285,1.0844171,0.038601805,-0.32386684,-0.021414876,0.41989902,0.08281401,0.16343196,-0.36203703,0.8232929,0.5699048,0.0642779,-0.09185127,-0.19572824,0.10766827,0.23162082,-0.056578975,-0.1058802,-0.0666588,-0.63433284,-0.13298562,0.16300105,0.173077,0.20130882,-0.05223178,-0.091249764,0.26577255,-0.003552493,0.3080985,-0.53504616,-0.037839927,0.25513032,0.29687372,-0.08606969,0.09689545,-0.48700073,0.35191748,-0.3657911,0.0426727,-0.23738687,0.16370414,-0.07296645,-0.2862794,0.217683,-0.1795633,0.41256598,-0.30261043,-0.31203488,-0.09619379,0.5490847,0.1731058,0.1949124,0.46971372,-0.20106351,0.10115848,-0.05120155,0.5435272,1.0178696,-0.33844513,-0.031612746,0.43656898,-0.18563405,-0.6520358,0.15177582,-0.3402713,0.16239904,-0.056040436,-0.3327086,-0.18423696,0.47037905,0.17660113,0.017220095,0.07587082,-0.42971072,-0.05983165,0.34368473,-0.118346274,-0.23748364,-0.30577722,0.15570638,0.57791364,-0.24959984,-0.27597708,0.010794548,0.4042333,-0.11308561,-0.36992964,0.11013882,-0.25227946,0.27717337,0.13737392,-0.212515,-0.048678517,0.020391261,-0.37616548,0.17056538,0.2533439,-0.2585887,0.025906209,-0.15275581,-0.09135939,0.76305425,-0.19810355,0.079165176,-0.5705845,-0.3875307,-0.6701436,-0.44098222,0.22083461,0.005798494,0.099185735,-0.64808506,-0.030001087,-0.14812711,-0.107763894,-0.11760489,-0.30204797,0.51670176,0.105771855,0.30059567,-0.116455786,-0.58163023,0.13492517,-0.00035720714,-0.15259157,-0.4615484,0.5593212,-0.0895318,0.6156728,0.038231634,0.123535536,0.28840405,-0.5016369,0.109319754,-0.32979557,-0.1683677,-0.8297702,0.14221323,752 -23,0.24468338,-0.15643705,-0.5126499,-0.14078392,-0.32228133,0.15812752,-0.16043136,0.2982214,0.1641237,-0.30314705,-0.19443662,-0.17430958,0.066703886,0.5130237,-0.13886823,-0.57073736,-0.12269125,0.09603318,-0.7556391,0.39031982,-0.5843498,0.28363183,0.12536731,0.29818648,0.1863581,0.4223796,0.36461163,-0.323728,-0.29660267,0.05471142,-0.23427786,0.028461793,-0.42056045,0.1376186,-0.11920613,-0.22948392,0.13964246,-0.47246197,-0.14057375,-0.6069217,0.13195479,-0.8123375,0.28685868,-0.08291559,-0.06928355,-0.019445566,0.16064887,0.34920686,-0.39678442,-0.0075515755,0.2418039,-0.11654326,-0.094901994,-0.16616826,-0.1351895,-0.39032826,-0.36508578,-0.03152839,-0.51093256,-0.44673607,-0.16379885,0.17695948,-0.3025327,0.17845547,-0.14101788,0.18641631,-0.420157,0.004051741,0.24324757,-0.1808635,0.026891403,-0.4808358,0.052693017,-0.08511874,0.43792623,-0.09160257,-0.027510252,0.42401764,0.23796679,0.4028138,0.20581996,-0.27773044,-0.2451297,-0.15918745,0.26235798,0.4329361,-0.10078273,-0.28907344,-0.16767423,0.047638107,0.25121325,0.26662338,0.050792236,-0.2907505,-0.12467014,-0.09549138,-0.17271906,0.27931744,0.5750471,-0.22216313,-0.197161,0.38251835,0.62139565,0.18081088,-0.1745733,-0.16521028,-0.03868723,-0.47818723,-0.1757961,0.15635468,-0.024930667,0.50076026,-0.090497464,0.20617226,0.8704868,-0.19370638,0.10547412,-0.18203686,-0.09026043,-0.21009612,-0.16371864,-0.08608235,0.024251254,-0.4823417,0.02341594,-0.19890979,0.77332264,0.20339732,-0.8138925,0.33967662,-0.39332753,0.15930068,-0.08809531,0.6131432,0.4900039,0.310348,0.24436176,0.74179846,-0.4380157,0.28871033,-0.14831379,-0.47947457,-0.038950615,-0.16017824,0.05556484,-0.48093924,0.12710583,-0.17318496,0.07638251,-0.0005896372,0.2311467,-0.40632686,-0.029401982,0.15687926,0.70295465,-0.43946803,-0.06220697,0.6048723,1.0032203,0.8821705,0.011747573,1.1589625,0.3870976,-0.3141978,0.16177088,-0.49081966,-0.6413666,0.15521212,0.3299013,0.21756351,0.2191677,-0.07177313,-0.042808477,0.25210527,-0.41329747,0.15941955,-0.1302715,0.17735049,0.040604115,0.13148654,-0.36252815,-0.20301425,-0.037306253,-0.078006804,0.08726194,0.19315542,-0.27920878,0.35167632,-0.05885693,1.630984,-0.014623765,0.064030774,0.022199428,0.5462192,0.09404823,-0.073631,-0.11784619,0.4159646,0.42583236,-0.16011661,-0.6643846,0.17793933,-0.33147126,-0.53502333,-0.1588579,-0.4229607,-0.15328497,0.07563648,-0.4474672,-0.10005997,0.026582733,-0.28511745,0.43395433,-2.7754173,-0.1729519,-0.21217687,0.18668601,-0.30630943,-0.18277562,-0.028756602,-0.48144633,0.17356162,0.32414535,0.432493,-0.5616768,0.49337596,0.3810407,-0.3900757,-0.15527873,-0.63031286,-0.009656843,-0.020446567,0.40403897,-0.10207806,0.015891496,-0.10984531,0.053147607,0.5747927,-0.10918707,0.17766908,0.48247933,0.32694775,0.30419376,0.5152894,0.16830833,0.63453424,-0.30154034,-0.10326477,0.28477934,-0.26107597,0.31704578,-0.012852006,0.14793742,0.4474693,-0.4081532,-0.67429435,-0.6104084,-0.3645409,1.0623691,-0.44049475,-0.32803357,0.26916134,0.049015436,0.03514238,0.0153627815,0.43452352,-0.056748718,0.012553118,-0.6413925,0.20576537,-0.07022015,0.17976248,0.018965427,-0.012026815,-0.18779269,0.742851,-0.07755142,0.5890711,0.28086662,0.20595141,-0.03827039,-0.26760477,0.12758459,0.8145688,0.1498785,-0.051799245,-0.13059203,-0.37748623,-0.20157053,-0.2711973,0.07975675,0.29294404,0.8094818,0.07061252,0.06581401,0.21455832,-0.087696396,0.030066343,-0.037406832,-0.18868749,-0.052904412,0.008367163,0.33916372,0.5793138,-0.1259814,0.4718291,-0.28687888,0.36980173,0.032158468,-0.45226076,0.59516674,0.36910602,-0.14490339,0.015261084,0.31696385,0.597322,-0.39488715,0.40674454,-0.62878174,-0.16561732,0.75349164,-0.1417744,-0.32021,0.11550551,-0.22317299,0.09845843,-0.81358284,0.2825026,-0.19990088,-0.33905864,-0.39735517,-0.112936795,-2.7748075,0.18356197,-0.23846963,-0.28607142,-0.1196959,-0.038665034,0.17306569,-0.71416473,-0.4050948,0.019831285,0.17301697,0.5664397,0.13069156,0.09851717,-0.22251414,-0.016947066,-0.13857798,0.09095273,-0.0753332,0.27267942,-0.07818076,-0.37784478,-0.06116209,-0.14196008,-0.43839532,0.2206965,-0.4978112,-0.41147253,-0.17940189,-0.38805005,-0.24195138,0.50902057,-0.30464828,-0.049421817,-0.18421175,0.040367775,-0.23762837,0.16413648,0.25388327,0.065878324,0.22562908,-0.08046079,-0.006554407,-0.4176361,0.35301313,-0.016266627,0.35951334,0.25557426,0.16002925,0.12561737,0.31540897,0.5560247,-0.16144341,0.77051747,0.21956955,-0.10201494,0.25084203,-0.24074554,-0.11340604,-0.57226515,-0.37140256,-0.18030459,-0.33014977,-0.55045617,-0.034255538,-0.2852001,-0.7628727,0.4787786,-0.037214037,0.21499434,-0.042796545,0.15620591,0.48954177,-0.1447263,0.025058543,-0.13597839,-0.030696757,-0.4973811,-0.4284792,-0.7028236,-0.496229,0.13856646,0.92288744,-0.16392651,-0.11208579,-0.19352634,-0.33678278,-0.019687517,-0.012054235,0.04646738,0.40318888,0.2894726,-0.24124381,-0.59328663,0.5399664,-0.04740816,-0.05719935,-0.40771186,-0.05424931,0.5293808,-0.5978167,0.47854283,0.3981605,0.08378482,0.26308414,-0.40066195,-0.29518396,-0.07038204,-0.17358764,0.28725255,0.037471827,-0.7231698,0.45780396,0.22410582,-0.37389547,-0.77655476,0.22977765,0.056584157,-0.28839877,0.05180304,0.28007048,0.11514853,-0.12757054,-0.29781634,0.13185406,-0.38129878,0.30632228,0.3268769,-0.023149276,0.06520655,-0.11085052,-0.3525116,-0.5568841,0.00018971808,-0.4066738,-0.15037675,0.2594107,0.016278457,0.11381685,0.11720868,0.10008524,0.38922092,-0.335237,0.043684218,0.118086785,-0.26599425,0.08382141,0.30701205,0.3881887,-0.43701485,0.5364876,0.076894425,-0.1848422,0.0956989,0.023904208,0.4129152,0.2020105,0.23563696,-0.10343294,-0.2661916,0.49891213,0.6710447,0.18120833,0.33992073,0.055546828,-0.2516143,0.43495747,0.09091763,0.11301852,0.12608722,-0.3170016,0.09502018,0.099645294,0.25386468,0.35607585,0.30507842,0.51610076,0.059199024,-0.13563809,0.101925336,0.1394254,-0.1463957,-0.7843897,0.28003925,0.27314305,0.8429385,0.4251594,-0.08836047,-0.18516275,0.6823058,-0.28747678,0.16413607,0.3364756,-0.020400448,-0.513537,0.6878516,-0.5811303,0.40628636,-0.23612095,-0.12238247,0.113824286,0.13531365,0.20660266,0.7380867,-0.19780493,0.009288795,0.07994844,-0.2727017,-0.025884852,-0.30302036,0.103326544,-0.49986088,-0.33053225,0.5706094,0.23064223,0.24438155,-0.049537938,-0.081589125,0.012114449,-0.17247045,0.15952988,-0.004245978,0.122308426,0.229586,-0.52355886,-0.37248117,0.4887668,-0.14359117,0.23489329,-0.13839178,-0.3748043,0.035861693,-0.3703091,-0.045598075,-0.00091444043,-0.56675,0.07346827,-0.11874123,-0.43981197,0.20916797,-0.19408691,0.21802644,0.20696351,-0.027849674,-0.1927051,0.3393723,0.12991928,0.8219714,0.010242939,-0.2932632,-0.33373556,0.027944867,0.35281962,-0.19992624,0.19388399,-0.36677405,-0.09761812,-0.57219696,0.5888545,-0.11338297,-0.31677288,0.20799932,-0.33189118,-0.05904767,0.61189026,-0.067905106,-0.15470445,-0.094013534,-0.046980623,-0.38678688,0.12497013,-0.39843535,0.19294278,0.24977903,-0.055336975,-0.11793023,-0.12996855,-0.11828103,0.46086803,0.12383175,0.47835922,0.10787292,-0.06572754,-0.20640033,-0.030981489,0.16119182,0.34240386,0.26386172,-0.031695012,-0.3368463,-0.33909482,-0.20578133,0.1667031,-0.16996263,0.15146403,0.13108452,-0.3039549,0.731454,-0.021590699,1.1736596,0.18889731,-0.29056415,0.053591013,0.4723393,0.014967712,0.18252671,-0.42109367,0.7698328,0.49140784,-0.05003009,-0.10816344,-0.37581435,-0.22029726,0.4271085,-0.26747546,-0.067556076,-0.021001043,-0.4863884,-0.46892846,0.28050783,0.1060898,0.10994968,0.03233831,-0.06250701,-0.011321467,0.077500485,0.5958897,-0.62868905,-0.21076997,0.12721048,0.075545505,-0.05492303,0.28056127,-0.45319426,0.5602893,-0.658704,0.13271178,-0.30004,0.10520243,-0.19868934,-0.27077284,0.1286956,0.056767732,0.42393738,-0.2800649,-0.47506708,-0.13331892,0.5991577,0.0937984,0.40442464,0.57708955,-0.30491915,0.09299618,0.14605758,0.48418134,1.0845773,-0.4402051,0.064411476,0.42664036,-0.33816314,-0.5479629,0.42659375,-0.24577843,-0.1114437,-0.09399324,-0.38197353,-0.39595288,0.44695333,0.23690614,-0.04741946,0.16538016,-0.4706951,-0.00264625,0.47955972,-0.29007855,-0.33137122,-0.18664543,0.42754996,0.72695166,-0.3842187,-0.20041978,0.102597386,0.2869287,-0.33034053,-0.40418315,-0.11451412,-0.20227051,0.33510858,0.017941061,-0.19864172,-0.06626775,0.08996073,-0.2797018,0.15660018,0.18973239,-0.38545614,0.024719672,-0.09984699,-0.039202668,0.8217314,-0.13394938,-0.09774869,-0.75184494,-0.40723357,-0.8708803,-0.5699341,0.31287503,0.11778342,-0.049471978,-0.24783202,-0.022822887,-0.064051524,-0.173235,0.08042767,-0.48064333,0.3987594,0.16881311,0.42286465,-0.23507595,-0.9090293,0.031456154,0.05025058,-0.22094569,-0.5270972,0.56362206,-0.11666289,0.8252504,0.020420333,-0.10476029,0.0812704,-0.33668038,0.19894342,-0.47677264,-0.17245881,-0.707754,0.12188827,796 -24,0.4242911,-0.064757906,-0.3890882,-0.17723948,-0.20670892,0.17333321,-0.16973692,0.30532765,0.11601406,-0.4767484,-0.10740331,-0.13806625,0.07223625,0.13458854,-0.216201,-0.58113015,-0.07169811,0.12997584,-0.29967952,0.5321983,-0.43238544,0.54341376,-0.048695516,0.18856707,0.11052357,0.38197336,0.17459354,-0.12206581,-0.2561959,-0.11765644,-0.20698255,0.42116296,-0.39451277,0.055746548,-0.024423866,-0.3522735,0.034600515,-0.2682724,-0.3058592,-0.64056003,0.28681424,-0.65114105,0.33592987,-0.06518323,-0.26608253,0.4348672,0.046599627,0.1700012,-0.11865962,0.04316466,0.07466078,-0.24423088,0.032975834,-0.27407268,-0.18886606,-0.39061955,-0.57071155,0.025266396,-0.4403926,-0.32307804,-0.43152735,0.106072634,-0.32454187,-0.11324226,0.038195167,0.38018176,-0.5929306,-0.042631045,-0.017527139,-0.12112568,0.23438393,-0.6125755,-0.17055413,-0.073194005,0.1870423,-0.3534684,-0.073799856,0.36102897,0.23210208,0.44838104,0.041440543,-0.14877906,-0.5303285,-0.21028817,0.27091205,0.42505506,-0.1935755,-0.3983476,-0.052267045,-0.11037204,0.07989904,0.12668346,0.03775684,-0.118100196,-0.18323348,-0.014059806,-0.27487648,0.14306107,0.44232446,-0.43817753,-0.3458232,0.36849245,0.4621932,0.0647913,-0.1862935,0.0074697384,-0.0038423617,-0.3430716,-0.21324901,0.09005708,-0.18103272,0.489177,-0.13466826,0.23478244,0.6356708,-0.23623581,0.10691396,-0.15762419,0.051197175,0.014991802,-0.14813296,-0.15855119,0.18875028,-0.42150444,0.07544686,-0.20445406,0.8084829,0.09908045,-0.74163914,0.3376638,-0.42639136,0.040849257,-0.055831026,0.4707074,0.5028128,0.41505674,0.29051328,0.5859628,-0.48233026,-0.032953013,-0.04553541,-0.35193235,-0.013835237,-0.13291031,-0.09279825,-0.5284199,0.124545656,0.13873911,0.025358856,0.06683658,0.52810794,-0.42574412,0.029214362,0.12170702,0.7179277,-0.37619537,-0.088220164,0.6840582,0.97559404,0.89269143,0.0057365852,1.0092794,0.22099364,-0.28620675,0.046639834,-0.4488314,-0.47088376,0.20713726,0.3285485,-0.040025495,0.18396793,0.085968494,0.14953013,0.34179765,-0.3478253,0.060926296,-0.23077035,0.15233453,0.09716167,0.09372712,-0.4402026,-0.3075161,0.0751445,0.10667081,0.13381281,0.29674125,-0.04723551,0.48474833,0.13445024,1.6179746,-0.0015908795,0.12695423,0.06742456,0.48073646,0.17352867,0.03372688,0.057551496,0.30668724,0.18372071,0.081559725,-0.6070034,-0.0071413307,-0.14660034,-0.61844945,-0.18584563,-0.4046585,-0.11893544,0.021929257,-0.43428344,-0.21174186,0.0148196295,-0.4310426,0.47130325,-2.6975882,-0.063282505,-0.022217084,0.23660183,-0.253208,-0.37592793,-0.05486957,-0.45763335,0.49086577,0.3645705,0.44297913,-0.6548805,0.2589433,0.46958822,-0.3980355,-0.100845255,-0.43565106,-0.22749732,-0.15075439,0.31900513,0.101239815,-0.17624465,0.08284786,0.1744669,0.4704229,-0.1820083,0.14471711,0.24799693,0.22386658,0.07508592,0.39680022,0.06155231,0.4912004,-0.06762457,-0.18881004,0.4504876,-0.3960325,0.13166997,-0.10159099,0.15598294,0.3295242,-0.39811856,-0.77805334,-0.57716966,-0.30609393,1.158113,-0.1860926,-0.46753287,0.30808625,-0.14698485,-0.22636236,-0.21687488,0.33081985,-0.15970343,0.07333413,-0.7425811,0.2323283,-0.05711833,0.07599064,0.08458015,0.07827095,-0.46703255,0.6468296,-0.046288677,0.43612036,0.34920812,0.23189683,-0.2215672,-0.41996533,0.05459189,0.91125935,0.4352036,0.20261686,-0.3257545,-0.2593211,-0.1899109,-0.12835261,0.14847168,0.37184143,0.69566673,0.04234691,0.15839347,0.17993902,-0.076366596,0.09798832,-0.142267,-0.19751036,-0.0073315036,0.06739371,0.54979175,0.4156854,-0.20302996,0.4066691,0.0009824581,0.24317014,-0.23449592,-0.3858224,0.4256928,0.9639605,-0.050699554,-0.24359763,0.61378706,0.55903715,-0.19868074,0.4062427,-0.6187998,-0.2876729,0.48017097,-0.31502905,-0.42942575,0.16346073,-0.3952176,0.09147801,-0.75919276,0.29357925,-0.17610209,-0.35121694,-0.6914811,-0.11539037,-3.626472,0.08033462,-0.1612567,-0.20607698,-0.024190418,-0.16693433,0.17756456,-0.6303739,-0.45985922,0.16796097,0.0356172,0.5829434,0.023603959,0.019666806,-0.2189225,-0.2608553,-0.25005698,0.13263763,0.019477578,0.3266324,-0.07308924,-0.5033835,0.007450998,-0.20499271,-0.46286795,0.019271504,-0.2870884,-0.5351266,-0.10328364,-0.4271715,-0.32064462,0.6418052,-0.36134255,0.089321785,-0.20328772,-0.14621216,-0.124844775,0.2586193,0.20152074,0.19173667,0.12650321,-0.067420594,0.1320628,-0.3265168,0.24885362,0.030925835,0.1479721,0.48805714,-0.15625286,0.09775691,0.5128866,0.5834254,-0.017411618,0.85266155,0.47121507,-0.21029106,0.22333513,-0.33857414,-0.22782053,-0.6363042,-0.39031586,-0.021959797,-0.3850279,-0.5264756,-0.2201369,-0.33261776,-0.70962185,0.57657343,-0.032131966,0.19014496,-0.004057949,0.25185847,0.31171393,-0.14504696,-0.11812633,-0.18283835,-0.11075957,-0.36958712,-0.35018846,-0.73268634,-0.5227798,0.04614919,0.87250906,-0.10325652,-0.13396047,0.045002364,-0.04531951,-0.06565127,0.2142499,0.22815341,0.20799008,0.23162995,-0.0487881,-0.6024023,0.62562954,0.1153912,-0.16611665,-0.55788946,0.006339399,0.40503764,-0.5330075,0.45190838,0.400815,0.013049895,0.07056963,-0.52001,-0.20467955,-0.08277511,-0.31750685,0.4172142,0.20821297,-0.6279397,0.41877964,0.23290534,-0.20865321,-0.6796157,0.52342457,-0.109559864,-0.34978226,0.025930362,0.36646912,0.18771362,0.016830873,-0.15361607,0.1923879,-0.4270366,0.25183815,0.26442346,-0.017558321,0.47641423,-0.23631646,-0.13662612,-0.7379014,-0.015118557,-0.51227576,-0.21247971,0.055213187,0.14325818,-0.020081166,0.26988792,-0.123795554,0.44218007,-0.34329942,0.052530378,0.04216079,-0.1467864,0.26042792,0.3543691,0.4615545,-0.29327133,0.53456795,0.025719035,-0.015750341,-0.20205866,0.12189035,0.48431182,0.12947108,0.28193784,0.08934759,-0.3588727,0.2691354,0.76932424,0.35754508,0.48229244,0.10148152,-0.3230781,0.302842,0.18474185,0.18614075,0.09646355,-0.34181947,0.031698633,-0.25362936,0.12626979,0.35529265,0.054159254,0.49731177,-0.18607263,-0.19050673,0.09420281,0.30833852,-0.09658724,-0.9564889,0.18527202,0.16763672,0.7875838,0.58608687,0.06990808,0.13635664,0.5421028,-0.3440241,0.069018506,0.31977123,-0.07743909,-0.55582553,0.6377587,-0.7175929,0.4187698,-0.05014,-0.068526566,-0.041664034,-0.07885139,0.31605133,0.66551423,-0.06344128,0.056354396,0.050772518,-0.34400612,0.19514465,-0.35230958,0.10439183,-0.35083225,-0.16205412,0.64794904,0.31414038,0.30667892,-0.099007085,0.02977508,0.08592947,-0.13276456,0.13062851,0.11738404,0.2285705,-0.08851725,-0.50774884,-0.3487817,0.46878007,0.0021580597,0.15533602,0.022368515,-0.1495524,0.24211918,-0.060099512,-0.102028176,0.12028843,-0.45628685,0.110566854,-0.2329696,-0.42199612,0.59473884,-0.2368089,0.33836296,0.13905272,0.061840028,-0.37557375,0.19576731,0.35494518,0.5545004,0.072410025,-0.13570692,-0.30684897,-0.05020829,0.2362136,-0.16690597,-0.19778536,-0.08934493,0.1402025,-0.55539435,0.34218445,-0.17674369,-0.1326897,0.16469952,-0.18714234,-0.03647058,0.3613288,-0.07391697,-0.18384887,-0.010307445,-0.025722744,-0.27365932,-0.13074282,-0.17482655,0.26749676,0.10248483,-0.112090886,-0.08471652,-0.13508372,-0.11200778,0.3908108,-0.020548252,0.32883093,0.27172643,-0.047070764,-0.49723014,-0.07743871,0.14285222,0.3324122,-0.14678453,0.09214903,-0.21130644,-0.46582603,-0.30068815,0.13733499,-0.1461037,0.2766027,0.17057489,-0.3241672,0.6936661,-0.16288616,0.93931246,0.07600133,-0.45133084,0.08120708,0.40466905,-0.041898403,0.06950704,-0.14969769,0.9508391,0.61446494,-0.0041450015,-0.24726693,-0.29792607,0.07403369,0.19045165,-0.1382719,-0.12132713,-0.078009546,-0.7532228,-0.33846718,0.32966873,0.2716844,0.15679112,-0.0449054,0.027202334,0.22838391,0.222278,0.32366404,-0.508404,-0.1791662,0.44412512,0.09794521,0.08398436,0.158316,-0.31296608,0.41822848,-0.50255483,0.075162075,-0.29182664,0.111360505,-0.27534702,-0.21414489,0.32309008,0.09543116,0.29485288,-0.14186575,-0.4165308,-0.26050594,0.41220614,-0.05999484,0.14779162,0.4486529,-0.1654968,0.16266294,-0.035039403,0.34396657,1.0992546,-0.1891578,-0.10330422,0.34657457,-0.3472016,-0.5527131,0.27015233,-0.27863038,0.092273444,-0.043227963,-0.2660537,-0.4758321,0.18814367,0.19694474,0.020795088,0.21123564,-0.38005012,-0.20094413,0.28906554,-0.36574546,-0.15061633,-0.16846392,0.07273061,0.6361519,-0.3267875,-0.13474047,0.050438713,0.3533561,-0.28139976,-0.5741908,0.0799837,-0.2860018,0.3405863,0.19287097,-0.33103782,0.050593797,0.20970632,-0.2916932,0.04658392,0.5117794,-0.41098157,0.0012855565,-0.37238696,0.1701244,0.8956624,-0.116061784,0.17821133,-0.5220548,-0.42126718,-0.9259058,-0.44326615,0.55049956,0.16523862,-0.027958548,-0.57561123,0.045344494,-0.22598715,-0.112370916,-0.04772392,-0.43375942,0.47046828,0.28699857,0.23827244,-0.06685098,-0.5684228,-0.006498295,0.101710275,-0.1428022,-0.463629,0.52087784,-0.17564318,0.7339123,0.04806818,0.07843051,0.3351008,-0.47177136,0.07287472,-0.23151904,-0.27338472,-0.6068644,-0.051204458,857 -25,0.525285,-0.07306313,-0.516171,-0.10330221,-0.17524827,0.11691177,-0.22626168,0.49677837,0.4451088,-0.34378114,-0.007851249,-0.14266114,-0.011452265,0.34452292,-0.093471915,-0.33896795,-0.045144945,0.076201156,-0.44181475,0.48949185,-0.5000784,0.22521956,-0.22061104,0.46130416,0.17955373,0.31216016,0.039532077,0.04618207,-0.047246296,-0.12933838,0.10694054,0.41606313,-0.43351507,0.08282821,-0.17459247,-0.20219205,-0.090372,-0.36247692,-0.47170112,-0.77565926,0.21801426,-0.636756,0.4048982,0.07340247,-0.35323954,0.13644724,0.15182531,0.18646185,-0.14258051,-0.10940132,0.0579296,-0.09622955,0.0112872645,-0.13319655,-0.21212797,-0.24241829,-0.5497581,0.05863394,-0.43573812,-0.10359927,-0.28760675,0.1637854,-0.32425204,0.01800966,-0.13220054,0.5665545,-0.40886557,0.046563815,0.2298311,-0.18548667,0.33485782,-0.62645245,-0.3045789,-0.061972108,0.15282236,-0.04292527,-0.29869056,0.26027218,0.28682107,0.37601122,-0.059069663,-0.09996692,-0.39346746,-0.07849145,0.1557639,0.35400096,-0.22710502,-0.39430767,-0.16962354,0.006789709,0.20630758,0.32422364,0.14070071,-0.2876425,-0.12907569,0.1474445,-0.25845394,0.5643319,0.60822266,-0.24847132,-0.26354784,0.31026906,0.45328644,0.31520128,-0.22098878,0.006026249,0.00053066714,-0.5539618,-0.058560405,-0.007072,-0.057743184,0.49141222,-0.10582795,0.24440695,0.48735848,-0.21473452,-0.18109994,0.08651918,0.010078521,-0.02525624,-0.37311706,-0.030320775,0.073286444,-0.41243523,0.14720811,-0.07870884,0.6849827,0.17252019,-0.65157473,0.3288624,-0.47636998,0.15602861,-0.062269997,0.5048181,0.76483095,0.29519767,0.44133943,0.645731,-0.3436184,0.08379507,-0.22394507,-0.21213846,0.1035416,-0.22286482,-0.0016697645,-0.5290912,-0.13482152,0.0059720348,-0.14621559,0.18907659,0.4718001,-0.48537266,-0.19606455,0.18684801,0.69411486,-0.20130074,-0.08332226,0.7230608,1.0749657,0.9734762,0.053579632,1.0707375,0.02236778,-0.123738624,0.23953404,-0.34338558,-0.69895136,0.34443378,0.22464828,-0.22523463,0.16478327,-0.0061482303,-0.110716455,0.3829575,-0.3819239,0.024174344,-0.027946906,0.5014019,0.1809719,-0.04248772,-0.2757252,-0.29576898,-0.04642221,-0.0713607,0.0396962,0.27541953,-0.23143005,0.3729463,-0.057857335,1.4570191,-0.071443506,0.062896706,0.1298945,0.54460317,0.2431702,-0.2752286,-0.07378531,0.43236744,0.097051494,0.18946664,-0.42139685,0.13930854,-0.229714,-0.3994173,-0.07513867,-0.44359002,-0.087801814,0.018385101,-0.24207143,-0.11243514,-0.15813282,-0.4215035,0.49834207,-3.064875,-0.33856696,-0.09318208,0.33014888,-0.18115129,-0.3290935,-0.07505929,-0.52644575,0.41044128,0.28290915,0.42197803,-0.6984099,0.16626444,0.44067925,-0.52888805,-0.18856533,-0.5562731,-0.103544295,0.0844416,0.45775822,-0.016175684,-0.00035338892,-0.034431424,0.21600671,0.45210338,0.06881468,0.17456554,0.26240134,0.26619893,-0.05210968,0.51222706,-0.06280441,0.44525743,-0.24590003,-0.2548191,0.4242626,-0.4469117,0.2860601,-0.09714874,0.087117516,0.40552545,-0.35436606,-0.8747194,-0.47501284,-0.052407194,1.2869054,-0.13477409,-0.49008256,0.3056531,-0.60733235,-0.32705587,-0.112676196,0.45696783,-0.08218273,-0.031733066,-0.7848731,0.10448049,-0.13942917,0.1328511,-0.051868763,-0.047167093,-0.2385246,0.4858353,0.008018851,0.3932561,0.40668443,0.066606425,-0.39818725,-0.59465474,-0.07783765,0.8190792,0.39524505,0.1559359,-0.2083913,-0.21355236,-0.33802295,-0.076566696,0.15794423,0.5763812,0.55322546,-0.087760106,0.16030495,0.39538503,-0.043709256,0.05911119,-0.22150388,-0.17764041,-0.08518218,-0.040191032,0.63186646,0.85651726,-0.14629549,0.4885756,0.050907217,0.25664866,-0.107995555,-0.38784418,0.4752821,0.97048634,-0.25398722,-0.25328794,0.5863648,0.340425,-0.31525552,0.43130782,-0.41161388,-0.26301974,0.477193,-0.18580928,-0.44214153,0.33039212,-0.30509517,0.03886068,-0.7288308,0.2152796,-0.4214252,-0.509607,-0.48040885,-0.045751516,-3.2680771,0.12366603,-0.24729976,-0.18969132,-0.10218835,-0.13001135,0.11651143,-0.4586988,-0.56867826,0.038223702,0.16954832,0.65801597,-0.24824347,-0.021647668,-0.27272344,-0.34598783,-0.419221,0.09380883,0.13461085,0.46232972,-0.093969345,-0.44855362,-0.066913985,-0.11473336,-0.41896367,0.1254404,-0.421185,-0.5319903,-0.11978145,-0.4428332,-0.289206,0.6213005,-0.13911422,-0.048030987,-0.2848016,-0.030744318,0.07507108,0.25756264,0.08122995,0.10417613,0.16253212,-0.09862505,-0.0807504,-0.25446692,0.1857784,-0.034297653,0.26377195,0.504558,-0.051415265,0.20903607,0.5124512,0.57607895,-0.16357806,0.98655343,0.41729492,-0.014873648,0.34358135,-0.26693648,-0.31231153,-0.43897116,-0.2007735,0.07742515,-0.4662253,-0.3976092,-0.11705052,-0.28818443,-0.6195009,0.58421755,-0.07313685,0.16143173,-0.082383074,0.25063446,0.55787086,-0.117626145,0.012814472,-0.027742442,-0.1775356,-0.61095154,-0.2624931,-0.62651086,-0.5223409,0.25254762,0.7848982,-0.29580644,0.10708327,0.07675182,-0.24115798,-0.087490305,0.08675101,0.03132285,0.16203499,0.36615765,-0.061000913,-0.5420526,0.25482005,-0.06531137,-0.08468267,-0.6056921,0.3323822,0.60573393,-0.5581317,0.64709586,0.30071998,0.053924028,-0.19931546,-0.58661413,-0.087829225,-0.078824,-0.30385956,0.58421946,0.2792506,-0.8894791,0.48387024,0.35681993,-0.20984821,-0.7458895,0.5819468,-0.08612446,-0.26960015,-0.13068494,0.4112339,0.14631149,0.08935843,-0.14541319,0.35481334,-0.26653713,0.21743542,0.265779,-0.20121816,0.42763948,-0.179185,-0.22014055,-0.66954815,-0.0068427077,-0.5513478,-0.35107356,0.23998807,0.12827857,0.049319144,0.16615078,0.055669468,0.40446416,-0.18557218,0.12898915,0.018513652,-0.18127032,0.39705724,0.46278724,0.64169765,-0.32219774,0.5334902,0.0011543666,-0.07800106,0.019837435,-0.0017767338,0.2806525,-0.024789408,0.35767484,0.12155973,-0.22885711,0.2177762,0.7404037,0.10593848,0.37070835,-0.01691623,-0.118330926,0.2290296,0.02006706,0.25355712,-0.08750753,-0.56323105,-0.037798196,-0.4232833,0.17349872,0.42032394,0.22145063,0.24866088,-0.10699135,-0.42717245,-0.008906456,0.13106263,-0.026767079,-1.3302411,0.24808954,0.14625832,0.81576705,0.44862235,0.061906997,0.00997167,0.637161,-0.11876154,0.078409895,0.46415883,0.0934578,-0.4422317,0.42716366,-0.9225068,0.465128,-0.036219694,0.028912766,0.07080905,0.0021324297,0.489456,0.764709,-0.16264352,-0.025923138,0.11595863,-0.37405798,0.2091554,-0.38878733,0.049963165,-0.6424988,-0.30915827,0.50591594,0.47337747,0.29664263,-0.21038932,-0.034365036,0.14346503,-0.14456932,0.14006801,0.0518602,0.05758955,-0.1493284,-0.5944009,-0.17609109,0.43482408,0.1973031,0.14721394,-0.034869164,-0.09124648,0.21481015,-0.10581526,-0.014731006,-0.09266551,-0.54086053,-0.18492712,-0.30208254,-0.42745233,0.5140999,-0.26455688,0.2528417,0.254144,0.14798129,-0.21513097,0.45256782,-0.04819897,0.711475,-0.04166364,-0.09697747,-0.3345429,0.08839337,0.18718731,-0.15436895,-0.123970255,-0.23828173,0.011674054,-0.4932567,0.511741,-0.0761763,-0.2415678,-0.03436428,-0.0930675,0.090110354,0.50417507,-0.14492252,-0.2516803,-0.17796476,-0.15308845,-0.34708145,-0.15668747,0.058402166,0.15955462,0.23856707,-0.22519924,-0.08510569,-0.2366059,0.029073538,0.29118463,-0.053512957,0.23331252,0.2985712,0.08904146,-0.2607077,-0.13438384,0.2730097,0.5057347,0.11470385,-0.11251648,-0.2511333,-0.4488367,-0.4320542,0.11672896,-0.041544046,0.31853727,0.06905,-0.19591814,0.57246405,-0.048099503,1.0561259,0.062437296,-0.2584238,0.011804605,0.42007756,0.046823934,-0.07639756,-0.3478434,0.724636,0.46429476,-0.23305997,-0.17793517,-0.42741156,0.017173357,0.10217177,-0.18691316,-0.076557636,-0.12190493,-0.60996515,-0.06781173,0.12795609,0.2890173,0.22890733,-0.19906217,0.043920588,0.31159273,0.08979754,0.35916615,-0.3410229,-0.18018843,0.30008718,0.37856755,0.030692354,0.033213872,-0.45314032,0.4124379,-0.4546714,0.15141611,-0.1104764,0.2211811,-0.16573673,-0.31730422,0.287287,0.0007190985,0.36374983,-0.28265536,-0.38621718,-0.24604791,0.3250993,0.12481516,0.08899788,0.5018303,-0.2349529,-0.07665475,0.08450425,0.47090507,1.1486627,-0.18776567,-0.16273536,0.2956019,-0.27344784,-0.7259384,0.29721954,-0.38051605,0.1949441,0.06370479,-0.11741345,-0.48631886,0.20468391,0.18411317,0.09244871,-0.031345285,-0.6317354,-0.14109391,0.163231,-0.348416,-0.15112485,-0.28030038,-0.08178411,0.54733825,-0.18435074,-0.34479377,0.026989317,0.33336183,-0.18594414,-0.5441751,-0.023865735,-0.26186174,0.23063782,0.00085502514,-0.31218234,-0.10015207,0.11770587,-0.47989914,0.11022849,0.15537132,-0.3574979,0.035399806,-0.27520722,-0.16671847,0.90796584,-0.3246617,0.37852746,-0.21353368,-0.47352752,-0.65345234,-0.18248583,0.22589916,-0.022763561,-0.010518391,-0.53823775,-0.0077204844,-0.22531496,-0.24760689,-0.009974206,-0.35055092,0.49339053,0.035120573,0.29761317,-0.11391819,-0.7026498,0.15055011,0.22196513,-0.10759982,-0.5717215,0.59263384,-0.105737396,0.6919318,0.0732773,0.10044724,0.35937005,-0.38002777,-0.031913117,-0.09409294,-0.164857,-0.5093788,0.04565584,898 -26,0.6011616,-0.03464178,-0.52431995,-0.18514092,-0.31669548,0.1208691,-0.13025156,0.34273404,0.25728855,-0.45382988,-0.16569367,-0.09666942,0.0613129,0.21718787,-0.1393336,-0.62431574,0.14806876,0.1284696,-0.60736275,0.536555,-0.36604452,0.31612682,-0.0036437144,0.28420487,0.13076992,0.19821668,0.10032971,-0.23720331,0.10859248,-0.13319118,-0.23051472,0.45068952,-0.475208,0.113912374,-0.045312732,-0.34483933,-0.0041167666,-0.45522803,-0.40245315,-0.8383799,0.3142518,-0.6094102,0.4579909,0.032488417,-0.3156864,0.14313363,0.22592135,0.3041747,-0.11368217,0.0036774557,0.07436623,-0.0012131894,-0.08727699,-0.07537133,-0.08921916,-0.42164838,-0.49841237,-0.08937209,-0.32009435,-0.19263624,-0.34648287,0.22760503,-0.27834526,0.004174625,-0.1485058,0.5183698,-0.32585987,0.02224977,0.23822008,-0.10314105,0.23610054,-0.564703,-0.060341317,-0.077546455,0.34134302,-0.04551023,-0.19712839,0.18259725,0.19879794,0.4573179,-0.035115283,-0.1991284,-0.2548992,-0.094663605,-0.057215754,0.49823862,-0.21010077,-0.5371765,-0.035204396,0.093498394,0.138361,0.18908474,-0.026243484,-0.24509776,-0.14029844,0.033363454,-0.23335415,0.35406902,0.52647537,-0.3014951,-0.35798347,0.35108688,0.51791495,0.20433319,-0.16609693,0.03490725,-0.031747777,-0.60459954,-0.21050167,0.061562385,-0.16144587,0.48645148,-0.056450646,0.28524408,0.56886375,0.0059401672,-0.118218005,0.1864147,0.019529507,0.023806032,-0.19239008,-0.07045309,0.14400792,-0.346629,0.2874117,-0.15337352,0.84037095,0.10134707,-0.7877841,0.16639154,-0.60141563,0.07288769,-0.15897834,0.4778387,0.6273074,0.29223448,0.27018067,0.71587396,-0.3703165,0.069129646,-0.100225955,-0.4463897,-0.08082771,0.05435369,-0.004772204,-0.518548,0.11702061,-0.024428697,-0.067954466,0.05175906,0.21157393,-0.6665158,-0.13602945,0.121094085,0.78468806,-0.34319237,-0.13342868,0.6163532,0.8669944,0.88607514,0.079892695,0.9350449,0.18725856,-0.15757407,0.21562569,-0.41026187,-0.69787234,0.30367568,0.2619442,0.010998305,0.059012454,0.00010673439,-0.05934054,0.483749,-0.27371353,-0.014662881,-0.1805397,0.27569327,0.14302164,-0.1703975,-0.28026414,-0.28430054,-0.027363848,0.021913582,0.22920853,0.13946138,-0.3157984,0.25117734,0.0447314,1.5370026,-0.059232026,0.019328551,0.092272714,0.3566522,0.22317186,-0.16231537,-0.08337167,0.24153799,0.3905319,-0.0070349155,-0.57613075,0.2047916,-0.16718327,-0.38828933,-0.15761085,-0.3069512,-0.09282381,-0.009895948,-0.41902778,-0.19163936,-0.15719618,-0.21208511,0.62138736,-2.807633,-0.047993742,-0.12077208,0.3134353,-0.1671702,-0.34030077,-0.071732186,-0.50818354,0.30877566,0.3114716,0.39524987,-0.5675107,0.49192867,0.3448355,-0.5291849,-0.07218217,-0.6760216,-0.16536093,0.030818665,0.36767942,0.18367846,-0.045494873,-0.10676372,0.15355232,0.5146326,-0.07661685,0.042149868,0.23868676,0.47817966,0.071247846,0.56346977,0.046451177,0.6474396,-0.14459874,-0.13307402,0.3235434,-0.3726135,0.20666376,0.0037280514,0.116961345,0.4331549,-0.36374795,-0.8361999,-0.5944268,-0.13287698,1.1229897,-0.22446941,-0.36440608,0.20457542,-0.28427672,-0.13366438,0.06930957,0.34980738,-0.10915148,-0.18127789,-0.7042116,0.029487956,-0.1617762,0.13385491,-0.027804984,-0.07455394,-0.38213047,0.5851565,0.008628593,0.59621876,0.24126014,0.29009986,-0.27970192,-0.5073388,-0.12274591,0.80865854,0.3116205,0.10532555,-0.1562392,-0.25896406,-0.3890063,-0.008821011,0.033387292,0.73758036,0.7273426,-0.00801032,0.1423693,0.16146079,-0.070557036,0.14534079,-0.19531901,-0.23270252,-0.09112858,-0.04509849,0.54328513,0.47509256,-0.15201049,0.4088142,0.0141423065,0.41272774,-0.23076601,-0.37148434,0.42860556,0.9962212,-0.2646569,-0.3388178,0.54151297,0.45734724,-0.09568251,0.2832864,-0.6901329,-0.3612746,0.4929584,-0.19866283,-0.3552174,0.19148335,-0.32291484,0.16996208,-0.8905035,0.29440856,-0.3446118,-0.49574032,-0.45570266,0.011847965,-3.1427,0.23243868,-0.18279302,-0.092363834,-0.1421415,-0.0670108,0.13736795,-0.44675878,-0.5671475,0.13958345,0.087008126,0.6072705,-0.009178861,0.16430955,-0.26563704,-0.05315832,-0.23009692,0.24623382,0.082912415,0.3553604,0.08917676,-0.47924587,0.04519075,-0.14332323,-0.3817656,0.17446257,-0.5003512,-0.5389826,-0.029629013,-0.5273937,-0.33510083,0.5474867,-0.33569804,-0.025507193,-0.27240634,0.021066181,-0.08773152,0.29976097,0.061228205,0.11385317,-0.002457496,-0.07090574,-0.0049681664,-0.2926297,0.27985236,-0.006074037,0.34097168,0.30195305,-0.008449519,0.23659277,0.5662679,0.5283138,-0.023877379,0.85252595,0.4936713,0.026756624,0.30258825,-0.25281996,-0.30041078,-0.3714322,-0.20224006,-0.005326918,-0.34473404,-0.3279102,-0.1993897,-0.42200062,-0.6315918,0.35279956,0.036282618,0.04056995,-0.102428734,0.18269399,0.5515914,-0.19476503,0.0021878972,0.019475266,-0.18764505,-0.5346508,-0.29975033,-0.49583176,-0.4651088,-0.028852273,1.042658,-0.31474406,-0.0670965,-0.14212933,-0.13947414,-0.054405194,0.12904021,0.070089474,0.2716276,0.4515239,-0.26846406,-0.68390375,0.47547463,-0.24805737,-0.06930206,-0.494848,0.20196275,0.443203,-0.55346525,0.4113719,0.25803393,0.18052343,0.03949464,-0.65080506,-0.090249,0.145242,-0.19729361,0.40546203,0.1766839,-0.7194103,0.42492318,0.29521945,-0.09164806,-0.72001565,0.5079374,0.081285894,-0.4782744,-0.090464815,0.34003437,0.060869426,-0.0019895548,-0.17738733,0.114725396,-0.30678424,0.3425775,0.23346111,-0.044939745,0.025523402,-0.31170446,-0.011755677,-0.7421369,-0.026512146,-0.46990663,-0.19420716,0.24162108,0.057978064,0.23964916,0.15749848,-0.050876983,0.3342931,-0.35442844,0.06428619,-0.12070042,-0.19260302,0.30793545,0.44631347,0.277694,-0.33260503,0.48452988,0.11051447,-0.2367775,-0.052892357,0.17385638,0.4102805,-0.0065014013,0.438119,-0.06581623,-0.19621998,0.3411466,0.654732,0.062948644,0.28498656,-0.07635691,-0.17035793,0.21820962,0.049462132,0.07081343,0.16552633,-0.5350364,-0.17536363,-0.22285068,0.13230854,0.48401564,0.15124804,0.27095821,-0.032433625,-0.35318947,-0.02489382,0.16616574,0.0077724387,-1.1651545,0.33610293,0.19377922,0.89972496,0.46584448,-0.030480012,0.010777501,0.5352483,-0.19064575,0.17458144,0.39180288,-0.0034745196,-0.50412667,0.4292442,-0.6223073,0.49503237,-0.08366221,-0.018021472,0.040610526,-0.112555295,0.34194475,0.9865681,-0.24670789,0.12872566,0.09139973,-0.3035739,0.23165824,-0.2822683,-0.011070826,-0.629212,-0.26099348,0.5852017,0.4777872,0.30506137,-0.13578153,-0.04033205,0.15651761,-0.09463425,-0.049479216,0.095915094,0.13601643,-0.031055227,-0.6028989,-0.22506353,0.49343738,0.01622932,0.1149947,0.018738827,-0.16961521,0.24488345,-0.15349735,-0.016971,-0.21065821,-0.5330496,-0.025142131,-0.2609235,-0.38538456,0.47125745,-0.15814292,0.23226719,0.18117197,0.06362025,-0.27880177,0.3074833,0.08935347,0.7508033,0.004450083,-0.08972185,-0.4466067,-0.032505736,0.16333036,-0.19419126,-0.18783803,-0.34671587,0.057467073,-0.5759385,0.4775006,-0.03443572,-0.25171244,0.050939724,-0.091256134,0.07838593,0.42053,-0.1730052,-0.13685013,0.007152445,0.013345084,-0.25036675,-0.055568505,-0.09875572,0.23972785,0.12358378,-0.13802142,-0.08995237,-0.117872775,-0.111688405,0.29825717,0.04920617,0.45168343,0.35130373,0.14074576,-0.26352918,-0.0053702802,0.25066608,0.5679853,-0.10105836,-0.10040218,-0.28114304,-0.4038006,-0.3484983,0.17619526,-0.09985085,0.33101878,0.06229719,-0.29294187,0.5936026,0.0017773194,1.1207522,0.04283668,-0.23440212,0.046126757,0.5149626,0.08890581,0.0039847316,-0.36385965,0.8535426,0.49171376,0.0047767567,-0.12963976,-0.28151953,0.1730209,0.10091236,-0.13506342,-0.0017703561,-0.07531821,-0.4950027,-0.25738338,0.15112281,0.17288807,0.24185765,-0.010967416,-0.073110946,0.20711651,0.029869514,0.26021838,-0.44289935,-0.12914029,0.121963695,0.25992322,0.026515495,0.1227609,-0.55098534,0.40805486,-0.46453044,0.10029434,-0.24827433,0.23423634,-0.0900109,-0.16123803,0.23640725,-0.032513753,0.26962662,-0.3454532,-0.3503734,-0.18544798,0.39787564,0.17969188,0.16692294,0.59277534,-0.25121617,-0.04816156,0.11929917,0.55962086,0.8835652,-0.32981136,-0.0022139738,0.34250838,-0.32102275,-0.60701174,0.22301242,-0.20802988,0.053278532,0.061429627,-0.23253673,-0.47073612,0.44948572,0.2353071,0.16218048,-0.08675961,-0.605585,-0.20382218,0.49976018,-0.27604556,-0.21662495,-0.28157926,0.20664011,0.5268013,-0.27991885,-0.20403638,0.15022965,0.18874188,-0.1523851,-0.66830194,0.042734947,-0.3328259,0.3901507,0.170667,-0.29278553,-0.29736972,0.07732612,-0.4639566,0.17900811,0.33694604,-0.3397954,0.055398718,-0.38165808,-0.06293149,0.90219116,-0.18436061,0.13308014,-0.5761106,-0.32875913,-0.7153363,-0.41110715,0.39223632,0.20086278,-0.031065369,-0.5247065,-0.124718554,-0.037130084,-0.2876697,-0.14907192,-0.35484287,0.5050588,0.12405637,0.3267884,-0.06323781,-0.8628919,0.06730744,0.071068645,-0.22642457,-0.456607,0.47815108,0.047206458,0.81739795,0.0893016,0.17941155,0.3349155,-0.42696548,-0.08708775,-0.27799046,-0.063290276,-0.74534994,0.08265549,939 -27,0.40458643,-0.17419901,-0.5104056,-0.07468733,-0.3922627,0.055930052,-0.21506432,0.25097662,0.19341624,-0.14131367,-0.21373135,-0.12379513,0.011335788,0.24960832,-0.07017095,-0.55049795,-0.033804122,0.25405884,-0.77114576,0.5709614,-0.47863775,0.27898243,0.014170454,0.4567627,0.19713025,0.365386,-0.059238028,0.010090118,-0.13765426,0.2172468,-0.056622967,0.3164723,-0.454643,0.12647699,-0.14454667,-0.1183787,0.04228851,-0.32238743,-0.26419064,-0.7792441,0.07253569,-0.7249326,0.5462793,-0.24946684,-0.21600693,-0.17634718,0.13563532,0.43760294,-0.36555022,-0.01439754,0.23804502,-0.25187638,-0.26386976,-0.20930171,0.014383014,-0.33617675,-0.4045419,0.011556601,-0.5871892,-0.15076637,-0.15827692,0.20259112,-0.26853052,0.06583821,0.0047761817,0.371959,-0.34668803,0.095284216,0.2970512,-0.17060721,0.063258745,-0.51195115,0.021449082,-0.10776021,0.45091796,0.07633125,-0.30458355,0.3533544,0.26080298,0.40928465,0.21682864,-0.22466528,-0.06598393,-0.16553892,0.10185984,0.38846716,-0.1402127,-0.093078196,-0.25135806,0.026209971,0.42116114,0.2306251,0.007081642,-0.24873464,-0.100023046,-0.11615818,-0.13597545,0.25595376,0.4912365,-0.21172257,-0.23012088,0.27156028,0.6367386,0.24784867,-0.21762212,0.15684964,-0.06740974,-0.42603755,-0.100571744,0.06060636,-0.03916516,0.42196748,-0.09142999,0.0010652192,0.81552494,-0.10665643,-0.12938794,-0.08258408,0.08201355,-0.050028574,-0.36247748,-0.17573169,0.059462167,-0.48109138,-0.027289342,-0.098409034,0.6155618,0.18440905,-0.6406088,0.31164268,-0.48457235,0.16735594,0.039799735,0.63287747,0.7235733,0.46910712,0.379246,0.7800265,-0.26640183,0.24690011,-0.014740817,-0.2597285,0.05791371,-0.23277766,0.06946101,-0.48625958,0.24366795,-0.33698902,-0.14794873,0.040260185,0.38311312,-0.6936083,-0.046943817,0.0749543,0.64496934,-0.3523041,-0.1123785,0.66366404,0.9847561,0.77658963,-0.06275169,1.1477491,0.4930935,-0.14534323,0.19999424,-0.39153123,-0.65014774,0.13722481,0.20804305,0.035106745,0.32626757,0.07795192,-0.17192559,0.4447076,-0.4345379,0.0042296015,-0.059041698,0.29766583,0.097396724,0.13091893,-0.42326272,-0.17830026,0.06912115,-0.015555143,0.17458577,0.23925602,-0.41025072,0.380972,0.05047562,1.5227926,-0.0889694,-0.025068337,0.13153808,0.44374028,0.19054963,-0.20729479,-0.17698891,0.5730194,0.4135814,-0.094069816,-0.57680523,0.19050135,-0.2561793,-0.37422758,-0.11853921,-0.35265088,-0.06705745,0.0018423857,-0.5082742,-0.24897073,0.010110031,-0.29517466,0.4443235,-2.627445,-0.31251526,-0.10074283,0.48366952,-0.26418248,-0.23568742,-0.21301404,-0.50651056,0.060219057,0.28886583,0.3190058,-0.5376987,0.518506,0.3412837,-0.48017666,-0.22909394,-0.63533235,-0.06032068,-0.046841152,0.46683794,-0.02008653,-0.060718972,-0.25604388,-0.012139299,0.5575724,-0.14386497,0.16900091,0.58844525,0.2376093,0.18939817,0.47928923,0.06578161,0.5978659,-0.22333933,-0.2479135,0.49509785,-0.26974374,0.22439438,-0.033932798,0.04016865,0.58501387,-0.38052034,-0.7672965,-0.6324849,-0.23400576,1.0597283,-0.50454295,-0.46740454,0.18620443,-0.22706166,-0.14962511,0.10129064,0.54208875,-0.14974567,0.017724598,-0.75210893,0.117089845,0.10945314,0.35095242,0.051143516,-0.011355007,-0.23214848,0.69331133,-0.2545632,0.6601219,0.16899726,0.26561365,-0.02175552,-0.42741904,0.15627804,0.844393,0.29355073,-0.04317917,-0.14900672,-0.30111712,-0.09056887,-0.20294675,-0.01787732,0.4631925,0.7133862,0.030283375,0.15882581,0.2709368,-0.091819435,0.01762737,-0.19703083,-0.23353113,0.013051218,0.20058858,0.5059409,0.67101836,-0.1835267,0.4467577,-0.32130304,0.3919606,0.020575186,-0.5918839,0.5742568,0.61752826,-0.25428095,-0.13547814,0.4503138,0.5487773,-0.35513425,0.42148218,-0.7198319,-0.23422042,0.7119212,-0.18345468,-0.34427086,0.20577554,-0.22728872,0.25662422,-0.70723605,0.33322537,-0.21113974,-0.5411012,-0.45577148,0.010177977,-2.6769886,0.09703766,-0.067721345,-0.14854969,-0.18848006,-0.10616109,0.20003307,-0.54600805,-0.45991915,0.10289491,0.18015559,0.4986187,-0.002702776,0.052727364,-0.30307433,-0.21750414,-0.12612979,0.13302027,0.13475825,0.33388507,-0.17238095,-0.48463833,-0.057288527,-0.14042377,-0.4840072,0.10737646,-0.68769246,-0.45836756,-0.13838577,-0.60027266,-0.17349555,0.61882347,-0.3665975,-0.031883836,-0.34749335,0.029746648,-0.11557064,0.13485773,0.11723194,0.21650934,0.18354179,-0.040641386,-0.056775928,-0.41045952,0.27743685,0.049823433,0.13294238,0.1697672,0.0976519,0.16954212,0.428648,0.56555414,-0.32588178,1.0728962,0.40585917,-0.08741456,0.25944206,-0.25751063,-0.25718355,-0.42897606,-0.23335671,-0.066062294,-0.37994888,-0.36345613,0.02972715,-0.3855416,-0.7969599,0.58644533,-0.18023737,0.28046048,-0.0036301857,0.25996786,0.53696674,-0.22966067,-0.024161935,-0.23691791,-0.24378738,-0.48209152,-0.38774803,-0.58649004,-0.5423291,0.10952802,1.1991969,-0.33124584,0.030357193,-0.083285525,-0.4470078,-0.054032996,0.03283756,0.10034708,0.39475897,0.5612613,-0.19070849,-0.5974945,0.21964024,-0.16871192,-0.09242617,-0.44296682,0.10333911,0.60135025,-0.78232193,0.61136633,0.17622986,0.18780124,0.0014058808,-0.46049014,-0.24027434,-0.014412957,-0.22902624,0.5723474,0.1570338,-0.69561005,0.45427284,0.111400545,-0.36483768,-0.7806063,0.15561637,-0.18811771,-0.24392614,0.03454085,0.4095508,-0.10430998,-0.026624562,-0.32621652,0.058581736,-0.32679018,0.1968002,0.34836793,-0.23696817,0.27264905,-0.1646975,-0.21102312,-0.6731906,-0.114505775,-0.38349262,-0.3093984,0.23665299,-0.0013496157,-0.07296077,0.006224867,0.15558267,0.37410697,-0.31938973,0.0943169,-0.07117275,-0.2885414,0.179728,0.42157254,0.3912934,-0.395728,0.4311905,0.068234034,-0.22416277,-0.06884764,0.004710113,0.3905487,-0.054179102,0.2671963,-0.17606173,-0.12629405,0.31416172,0.7471633,0.09557504,0.5720184,0.04499889,-0.26712295,0.27360225,0.005096304,0.17956227,-0.05969921,-0.3959753,0.053282946,-0.0027029638,0.2359528,0.53556436,0.4389238,0.3653567,0.08039072,-0.28260124,0.013153949,0.11122909,-0.07879852,-1.20699,0.22975639,0.17846969,0.7954195,0.2944079,0.11294456,-0.123995975,0.6928325,-0.1907582,0.06345016,0.36039612,-0.047866765,-0.4050363,0.69348526,-0.63506675,0.45923492,-0.21924555,0.0067363004,0.31056973,0.1793509,0.3791198,0.81184536,-0.20007262,-0.027628005,0.038451653,-0.027744524,0.07749993,-0.33195668,-0.006782361,-0.44830707,-0.40353984,0.69785064,0.4280461,0.34409022,-0.34367824,-0.033808284,0.035784993,-0.2073447,0.20413662,-0.016649147,0.09409955,0.12921943,-0.5099495,-0.1964422,0.4878168,-0.05868396,0.025102276,0.026659608,-0.2628975,0.003987244,-0.291668,0.0030720935,-0.08051161,-0.6516662,-0.18318108,-0.13438518,-0.5165858,0.3846975,-0.09452915,0.11380316,0.19702405,-0.023849964,-0.36105067,0.40602997,0.031567603,0.92735153,0.097738564,-0.27862334,-0.29248798,0.0802237,0.35285613,-0.2406956,0.15213235,-0.3784462,0.039876718,-0.5232196,0.5195896,-0.1296787,-0.44545785,0.23013534,-0.21217403,-0.14153722,0.51695424,-0.10749031,-0.15759282,-0.052526608,-0.17985469,-0.38759893,-0.004839308,-0.3247605,0.112647444,0.22822714,-0.13720764,-0.08014113,-0.17410122,0.012072996,0.65384036,0.14974296,0.41457605,0.2924246,-0.03098826,-0.18982881,0.18167503,0.20260668,0.46652532,0.1439532,-0.11145611,-0.35669434,-0.28023884,-0.16523738,0.21452124,-0.08588685,0.21063247,0.14900486,-0.3057257,0.97812754,0.008919749,1.1923429,-0.024911078,-0.25902003,0.13905539,0.5250463,-0.08165563,0.16431366,-0.43756944,0.7583295,0.4555584,-0.031719595,-0.01161677,-0.3414314,-0.26932502,0.3873115,-0.34346128,-0.008194349,-0.13238811,-0.519621,-0.54165775,0.26236415,0.1834375,0.16591038,-0.021805318,9.1724534e-05,0.050408386,-0.06551722,0.21309763,-0.5193446,-0.12315593,0.22514355,0.1760241,-0.12371141,0.14539589,-0.3843389,0.56267494,-0.66075975,0.1696489,-0.3663748,0.11586101,-0.16202687,-0.2977003,0.08330883,0.033305842,0.36963338,-0.40057647,-0.20437801,-0.25657716,0.60299134,-0.059295688,0.109038144,0.6446816,-0.30797723,-0.0119826235,0.13770762,0.48861235,1.0734098,-0.38134745,0.10901963,0.27340922,-0.30381468,-0.56158483,0.3970968,-0.20463285,-0.062387984,-0.088696174,-0.4194617,-0.42002925,0.30300564,0.13419081,0.056064513,-0.07762665,-0.5388504,-0.052019957,0.41098562,-0.2488582,-0.089351594,-0.10595894,0.35119587,0.73141235,-0.17291169,-0.45141268,-0.019418793,0.2541513,-0.32764944,-0.38619873,-0.13243523,-0.3211841,0.396628,0.0634295,-0.26179668,-0.08747211,0.15519132,-0.42289305,-0.015049394,0.21946713,-0.33830452,0.11508967,-0.13138689,0.053628493,0.9574933,-0.18830939,0.033525277,-0.6369464,-0.5298775,-0.9472327,-0.33614337,0.24757595,0.22579373,-0.10180497,-0.41352394,0.047895323,-0.25009555,-0.20761465,0.18328775,-0.49436447,0.31104583,0.20870596,0.43205652,-0.31018314,-0.9093156,0.082990155,-0.01201271,-0.2222699,-0.6289703,0.5121398,-0.098668635,0.7956455,0.057926126,0.047759265,-0.025448779,-0.31881595,0.19914612,-0.2741776,-0.05022216,-0.79577184,-0.010178196,976 -28,0.49967554,-0.005362355,-0.6118299,-0.27165684,-0.4953663,0.20572762,-0.24548474,0.22578453,0.16468816,-0.3453899,0.03548696,-0.104678914,-0.075576656,0.30582023,-0.08109404,-0.7132856,0.17395552,0.21218468,-0.6500741,0.2984099,-0.4356563,0.36247054,0.017008387,0.3494233,0.07854388,0.3197039,0.11613001,0.033480525,0.004532084,0.037185904,0.06950168,0.47524303,-0.650784,0.20785652,-0.066062674,-0.27756476,-0.070365265,-0.29195654,-0.25790867,-0.66109216,0.17554556,-0.65317136,0.4432887,-0.12611257,-0.41143787,0.10662028,0.05420567,0.26035193,-0.30329394,0.059724636,0.3105045,-0.3310727,-0.12816486,-0.18212628,-0.31442496,-0.5899411,-0.55462325,-0.09759769,-0.598287,-0.034139518,-0.34691587,0.23075333,-0.27763534,0.011871703,-0.08357443,0.31303388,-0.42434475,0.16674796,0.21036468,-0.24077483,0.1010745,-0.2757076,-0.048432652,-0.14292343,0.23184894,-0.011427492,-0.39566663,0.26283634,0.30947676,0.5023751,0.1081518,-0.3123825,-0.27223673,-0.10433073,0.07026782,0.48998684,-0.1051659,-0.06541465,-0.29077026,-0.10340719,0.34018895,0.0795486,-0.046950556,-0.44997507,-0.04579874,0.081937015,-0.18287416,0.25852892,0.53218436,-0.39013046,-0.20201299,0.36708623,0.46526256,0.05841674,-0.2734253,0.2928254,-0.12355547,-0.5346539,-0.17279331,0.13526635,0.052733954,0.38223782,-0.18802404,0.0363396,0.8467388,-0.109256335,-0.12704869,-0.09159507,0.06955048,0.052865017,-0.24094158,-0.04655762,0.1491521,-0.596253,0.05390094,-0.0903944,0.80206585,0.08880526,-0.843006,0.3568372,-0.4791901,0.105778486,-0.12758088,0.5796051,0.9558332,0.42935967,0.14690891,0.78943056,-0.33755904,0.12103118,-0.039854724,-0.3732579,0.22343211,-0.23098126,0.030242205,-0.45948762,0.16318269,0.045117315,-0.11752468,0.15563214,0.37274402,-0.42685205,-0.09337937,0.042363405,0.5421042,-0.47091305,-0.060143877,0.61747575,0.8688613,0.96077645,0.15819281,1.3636032,0.42177,-0.09027512,0.27270097,-0.29431972,-0.49983618,0.15622143,0.26667714,0.25456092,0.2053937,0.21298058,0.24447447,0.5807333,-0.2533812,0.0048441067,-0.012838532,0.14053106,-0.029407183,-0.07695156,-0.42785913,-0.26389673,0.23283845,0.15075794,-0.14922777,0.33950165,-0.15282679,0.43297005,0.18230218,1.3133161,0.14327243,0.045958318,-0.01934874,0.40961403,0.19480784,-0.20006402,-0.11563788,0.31515485,0.35911828,-0.104961395,-0.3667811,-0.040561438,-0.18014571,-0.41960248,-0.23071319,-0.50055146,-0.09258161,-0.17569862,-0.5674071,-0.12745059,0.1824502,-0.2972738,0.44968855,-2.4381156,-0.2787866,-0.13076422,0.26278707,-0.044974007,-0.34808594,-0.475378,-0.49367478,0.18182169,0.31313372,0.35284412,-0.5848787,0.5115042,0.3050934,-0.40299547,-0.18206589,-0.6481279,-0.08117361,-0.12577671,0.3339816,-0.034701683,0.051705487,-0.1287741,0.34471327,0.7314905,-0.16037497,-0.07772742,0.17060639,0.3375886,0.034313098,0.5770011,0.22318923,0.62283146,-0.22200648,-0.2477369,0.3198641,-0.39291078,0.27059165,0.19638215,0.13447754,0.42899632,-0.3826832,-0.93998927,-0.5677449,-0.27915996,1.1832378,-0.45168427,-0.2712835,0.28325146,-0.22233725,-0.29903185,0.03019403,0.35613823,-0.061225414,0.18144354,-0.68425417,0.059518553,0.01569872,0.13825205,-0.09281495,0.1275664,-0.12908565,0.67228115,-0.2142255,0.38107485,0.35584408,0.123643495,-0.047893003,-0.5580463,0.06642834,0.8486676,0.30353236,0.14009301,-0.21750611,-0.24121654,-0.17185478,-0.17525624,0.24585271,0.49517328,0.5533418,-0.0043423474,0.1457467,0.2834507,-0.15886882,-0.03411776,-0.19002748,-0.29822925,0.013018411,0.09954755,0.62087524,0.6142378,-0.17277665,0.40807867,-0.16438176,0.16693807,-0.09667182,-0.5815406,0.39763397,0.9441662,-0.20101064,-0.26684523,0.4298333,0.3593739,-0.37241372,0.35184643,-0.55521286,-0.27441925,0.549268,-0.110405296,-0.39108774,0.08380042,-0.342058,0.06541626,-0.82531697,0.37229586,0.05138555,-0.71330565,-0.49330303,-0.1584171,-3.6018813,0.13680035,-0.095471725,-0.15956903,-0.03922618,-0.22423929,0.3112175,-0.5095421,-0.44229412,0.021748144,0.013857922,0.52199167,-0.045789026,0.026910502,-0.3656268,-0.3917981,-0.13929325,0.21914712,0.11856086,0.3391727,-0.087850735,-0.3983205,0.14152488,-0.34929356,-0.49638754,0.020830475,-0.6749504,-0.5901474,-0.08733734,-0.43761918,-0.2831269,0.68742687,-0.49680248,0.02200938,-0.25374037,-0.044068377,-0.25598523,0.2943203,0.2492247,0.1635048,0.08818822,0.15912095,-0.1225985,-0.3291925,0.14259338,0.10827776,0.28123617,0.40275332,-0.06566627,0.17659225,0.79182976,0.5829097,0.058602672,0.83400047,0.34784225,-0.0827799,0.21651131,-0.30586982,-0.20195201,-0.7148187,-0.34983233,-0.41143653,-0.4629817,-0.34339547,0.00047251582,-0.3053046,-0.8194623,0.4812474,-0.027233332,-0.03883186,-0.13179767,0.20580378,0.3634124,-0.11289996,-0.035653263,-0.080223,-0.3235162,-0.51348996,-0.44281304,-0.65163267,-0.71523356,0.15749882,1.3055425,-0.16588247,0.028208494,-0.10738071,-0.26995575,0.08570935,0.21575068,0.17701446,0.23570098,0.40426767,-0.17394826,-0.6623713,0.3216309,-0.27735612,-0.07759088,-0.6369814,0.045342278,0.692608,-0.6879519,0.5385511,0.3016315,0.20039377,0.09444763,-0.63675404,-0.28435907,-0.05393315,-0.2569352,0.62158865,0.1944685,-0.6963811,0.51785874,0.044662762,-0.22111279,-0.5718675,0.49710685,-0.1404776,0.017568173,0.14060435,0.33707774,-0.0287686,-0.2126229,-0.045089733,0.31847894,-0.45081335,0.2856677,0.4182711,-0.028154392,0.29491964,-0.09616865,-0.0747643,-0.6198287,-0.341707,-0.472893,-0.29544255,0.03074488,0.06415415,0.08407713,0.056196257,0.0039694253,0.3906714,-0.240115,0.11696774,-0.19424263,-0.31842005,0.40257192,0.49622613,0.3971979,-0.32878023,0.5601886,0.12377044,0.13840695,-0.08287,0.09757414,0.52311766,0.12636992,0.3905362,-0.1588464,-0.13805646,0.0662667,0.73935986,0.2847243,0.26976317,0.064434156,-0.18207091,0.2574387,0.2198072,0.11074944,-0.1297325,-0.18490025,-0.08631824,-0.09899032,0.26202214,0.28543413,-0.01324698,0.41010493,-0.13296884,-0.20833966,0.2903448,-0.0048172586,0.063283265,-1.3760532,0.32039905,0.29444072,0.5568278,0.33857912,0.082870625,0.08723843,0.54006636,-0.35300183,0.025727639,0.439813,-0.06939554,-0.2951909,0.51186657,-0.7448341,0.5461654,-0.13549134,0.04498659,0.18612619,0.31729975,0.33583742,0.92122626,-0.109733485,0.11244135,0.019851856,-0.3743492,0.1859251,-0.32018888,0.07603615,-0.54733574,-0.33168337,0.718444,0.4287817,0.28255355,-0.3794652,-0.10776289,0.0059647504,-0.17438118,0.046105705,0.013161626,-0.03567162,-0.07424469,-0.59163517,-0.29116747,0.5613277,-0.08175066,0.023952581,0.16504055,-0.33281717,0.36350042,-0.019356199,-0.03865262,-0.13024946,-0.49696213,-0.12745196,-0.24768458,-0.5467142,0.48439962,-0.35399604,0.25735858,0.3143845,-0.003938061,-0.27887663,0.4236471,0.15382417,0.6821108,-0.042212322,-0.25718448,-0.23890084,0.15898773,0.34536332,-0.21514206,-0.09565331,-0.4124058,0.089422524,-0.53586715,0.22854842,-0.3449408,-0.28532907,-0.0042917877,-0.1219526,0.05341818,0.3441096,-0.07180983,-0.15756556,0.04552698,0.113076374,-0.22751433,-0.072072774,-0.288765,0.26967356,-0.09339531,-0.14957713,0.00927715,-0.22039026,0.065118626,0.34021658,0.077097856,0.27429047,0.23777527,-0.14060569,-0.30901486,0.05686866,0.07654264,0.332224,0.100266576,-0.12065505,-0.29252982,-0.24311782,-0.33112603,0.2663098,-0.1422636,0.1674806,0.14700903,-0.41827238,0.9416137,-0.11139108,1.1973822,0.07857083,-0.34336737,0.23135486,0.47435346,0.124287575,0.18440802,-0.20276418,0.71803653,0.5833611,-0.08514167,-0.33716658,-0.37122908,-0.20541109,0.12508476,-0.28167358,-0.26015347,-0.06395945,-0.8014374,-0.15534179,0.039241403,0.113043256,0.2849952,-0.12571132,-0.09345791,0.15358649,0.029140122,0.39418134,-0.48036346,-0.0067601986,0.28969473,0.353092,-0.079099655,0.16236186,-0.2591653,0.44551122,-0.6346402,0.15774435,-0.41884387,0.10982862,-0.21723917,-0.1793473,0.18853456,0.07867865,0.31189555,-0.22181332,-0.16523449,-0.3201408,0.72201145,0.13757926,0.26886398,0.6656977,-0.24009591,-0.16452512,0.20156574,0.26465347,1.1809131,-0.11094239,-0.016140597,0.41730332,-0.23471574,-0.43843138,0.08114388,-0.3842622,0.13777637,0.017095994,-0.3918228,-0.30035174,0.28742275,0.1025006,0.003893081,0.10672169,-0.4230918,-0.07221669,0.43691304,-0.32763818,-0.26843104,-0.27281472,0.26835158,0.5427482,-0.4553655,-0.33260253,-0.0056955814,0.24706645,-0.37550652,-0.5268498,0.13298887,-0.32882315,0.40704384,0.1701825,-0.49471256,0.12347385,0.33637187,-0.32504568,0.046024792,0.4946233,-0.29467407,0.03031219,-0.26655227,-0.008360803,1.1012633,0.08746097,0.13178606,-0.54489505,-0.52393115,-0.96246237,-0.21902467,0.32535917,0.31396142,-0.03431168,-0.512465,-0.16097519,0.02097328,-0.15317829,0.07689078,-0.5686791,0.3978987,0.19292054,0.35524845,-0.04570064,-1.0531404,-0.0922676,0.1004909,-0.171832,-0.56533647,0.5367769,-0.27266103,0.83696526,0.20323251,0.16627976,0.13712296,-0.4648018,0.30344394,-0.33543432,-0.041838434,-0.7178791,0.06450989,6 -29,0.50849724,-0.36780077,-0.46201676,-0.17997314,-0.44357806,0.06040158,-0.41297927,0.3304576,0.32103652,-0.31871483,-0.22854535,0.1757577,0.062152594,0.43418038,-0.18074353,-0.5442007,-0.1141921,0.21400881,-0.66240203,0.5423376,-0.52822214,0.2750311,0.09843367,0.40666598,0.3004858,0.39437866,0.29355988,0.08775619,0.026685141,0.017657561,-0.022135228,0.26542592,-0.47490776,0.088169985,-0.19284274,-0.394498,-0.12661907,-0.45181274,-0.17648757,-0.81626713,0.15926698,-0.9280983,0.5133592,-0.20090486,-0.31062448,-0.20932211,0.34762174,0.36456788,-0.32387525,0.15868026,0.19581577,-0.1631602,-0.2673679,-0.2931153,0.002417978,-0.4611915,-0.5123801,-0.08334892,-0.5540419,-0.06329785,-0.13722706,0.306963,-0.30560887,0.048210863,-0.17120686,0.2556395,-0.4788705,-0.10519039,0.27278087,-0.10216146,0.20127507,-0.57030964,-0.09062263,-0.18509185,0.4030031,0.13243903,-0.335236,0.32169676,0.27838692,0.43071654,0.3094831,-0.21610144,-0.30427963,-0.09987138,0.22704391,0.3851604,-0.22846685,-0.16652729,-0.3777688,0.026563987,0.595019,0.3660854,0.031766508,-0.19178845,0.008010838,-0.21417265,-0.19754057,0.49573302,0.45260465,-0.26281267,-0.23264915,0.23540455,0.5418348,0.21834795,-0.2959565,0.17592078,-0.006243963,-0.5373712,-0.14789951,0.17018746,0.024902053,0.42490208,-0.172434,0.16888899,0.6578538,-0.070420176,-0.07350424,0.06339988,-0.03834012,-0.2503227,-0.31247088,-0.2772137,0.15408242,-0.57232785,0.014631838,-0.2193533,0.59559,0.103531085,-0.73706466,0.26473108,-0.5051384,0.2601768,-0.028538715,0.6046151,0.8333515,0.55331707,0.26147038,0.9220813,-0.19423014,0.20532988,-0.15247762,-0.29977265,0.08883336,-0.31097174,-0.03802186,-0.56038326,0.25868767,-0.2522232,-0.06896789,0.16006503,0.68162626,-0.52579105,-0.14078589,0.14851324,0.64162207,-0.39111003,-0.019562088,0.9034894,1.0449728,1.2135623,0.09126777,1.1648542,0.3728028,-0.057032675,-0.124089815,-0.18200749,-0.5938716,0.2427869,0.43366927,0.040534616,0.48980695,-0.07728936,-0.095723584,0.39312243,-0.5111186,-0.09624271,-0.05636964,0.22230534,0.11703184,-0.048426725,-0.50484246,-0.2037196,0.05761312,0.07408473,0.1413712,0.20639284,-0.22521168,0.6332171,-0.050762862,1.1569092,-0.09023295,-0.0019987086,0.12296615,0.45866907,0.31626153,-0.23386641,0.010730177,0.25743997,0.53661513,-0.1714362,-0.57708484,0.14396694,-0.30393034,-0.39804235,-0.16393954,-0.32444254,-0.14667167,0.08356957,-0.4570281,-0.3720189,-0.0321283,-0.25720596,0.3781035,-2.46462,-0.2767554,-0.1577115,0.29337746,-0.198298,-0.26133025,-0.22647811,-0.5216199,0.27625287,0.2740586,0.428921,-0.62248844,0.55261135,0.59445536,-0.6426994,-0.031585798,-0.8686824,-0.12557513,-0.10463966,0.46136606,0.09541363,-0.17867778,-0.058256567,0.20816243,0.8141788,-0.039356284,0.2345238,0.52833056,0.32205662,0.08926959,0.55236006,0.095667526,0.5995436,-0.397278,-0.26537266,0.43501166,-0.29006425,0.17267051,-0.20913419,0.06128272,0.5975244,-0.47272882,-1.0141244,-0.6096679,-0.122192934,1.2983029,-0.3094815,-0.45533925,0.12224132,-0.25461757,-0.08981145,0.16393653,0.5315459,-0.19386336,0.1438905,-0.7970691,0.05452349,0.05831919,0.13889316,-0.06380755,-0.12914611,-0.4060982,0.6681987,-0.14627819,0.6009195,0.28915265,0.31685883,-0.15485232,-0.5125625,0.05481324,0.8319944,0.45290068,-0.0619466,-0.20969006,-0.30457884,-0.08029914,-0.09116289,0.0722186,0.50542367,0.6229646,-0.06367509,0.2655084,0.39985722,-0.09021674,0.052810315,-0.19661665,-0.1778507,-0.1337372,0.11740264,0.51987386,0.7634678,0.016028367,0.3752738,-0.28282943,0.3290841,-0.016915679,-0.6838238,0.58892334,0.68092084,-0.29506713,-0.19382185,0.6242154,0.5069098,-0.28218564,0.52958053,-0.6487363,-0.36397073,0.43869373,-0.11054977,-0.35256752,0.20525032,-0.37709865,0.33029106,-0.7849119,0.412877,-0.38556024,-0.37420005,-0.4906104,-0.16860127,-3.2041502,0.19142936,-0.15266924,-0.16664627,-0.2459489,-0.25908732,0.37774128,-0.6083111,-0.6201992,-0.05752587,0.20361581,0.57373166,-0.07483351,-0.022673648,-0.2339761,-0.35581404,-0.14849563,0.16831088,0.08962866,0.3919425,-0.09810765,-0.52495646,-0.043875877,-0.12226607,-0.4902937,0.032108154,-0.62845886,-0.5059878,-0.092778824,-0.27917185,-0.2935794,0.50777566,-0.28055882,0.06568496,-0.36139327,0.13720328,-0.059710428,0.18821985,-0.021979854,0.24611464,0.13129094,-0.09206821,0.14486471,-0.24556938,0.4413315,-0.14292218,0.1329843,0.24225841,-0.13299179,0.24930735,0.56720537,0.6094081,-0.39621708,1.097002,0.50199366,-0.07618101,0.13830402,-0.13444184,-0.35804093,-0.5617122,-0.2914312,-0.07785497,-0.4980057,-0.39697573,0.019953549,-0.3283843,-0.92503524,0.642304,-0.06539882,0.43032974,-0.111764185,0.20418236,0.4467678,-0.1115652,0.027070608,-0.12858543,-0.36607903,-0.4813227,-0.39051223,-0.7114286,-0.59237236,-0.089806855,1.0607785,-0.30168587,0.16296028,0.01735118,-0.34706718,0.057711594,0.17514223,0.04843191,0.22841288,0.38183075,-0.008610353,-0.6604292,0.3063258,0.023929633,-0.011955664,-0.47493148,0.19328961,0.611437,-0.72893673,0.44222373,0.40760535,0.014048021,0.0039976053,-0.58301115,-0.15407178,-0.13274352,-0.1487623,0.7434645,0.28934184,-0.852376,0.6540009,0.2551664,-0.4772162,-0.62864286,0.34578592,-0.049766917,-0.17762402,-0.11300005,0.29359508,0.03158756,-0.11160983,-0.23205401,0.1688939,-0.3634964,0.45034453,0.14534688,-0.10114919,0.25149506,-0.19533513,-0.27327177,-0.7810435,-0.1118404,-0.6165346,-0.25820592,0.22826274,-0.038228713,-0.033867233,-0.029192552,0.01170246,0.44689548,-0.3257864,0.020566106,-0.029515514,-0.3327375,0.34979782,0.5103506,0.34779748,-0.2393079,0.54417515,0.20490125,-0.22722171,0.09721362,0.015278019,0.38501298,-0.016940944,0.41676366,-0.19184464,-0.098545074,0.34941483,0.5025939,0.124601945,0.36855322,-0.00045021623,-0.28297806,0.36360714,0.01638702,0.18029834,-0.183572,-0.3257311,-0.06364472,-0.17282136,0.21003191,0.53403544,0.3376903,0.4514341,0.021484418,0.0006295033,0.017255172,0.11911556,0.037226517,-1.4682816,0.38209322,0.20529485,0.7465254,0.45304674,0.040865168,-0.20122057,0.6348937,-0.41470608,0.046644613,0.5133958,0.09949933,-0.39268193,0.6983501,-0.63239217,0.5032034,-0.17134981,0.074556045,0.18308528,0.21608907,0.47649646,0.8300611,-0.0622764,0.20095688,-0.0751513,-0.19149387,0.01984973,-0.24637304,-0.024169035,-0.38118201,-0.41698903,0.79547703,0.33345157,0.5470823,-0.16047809,-0.092989996,0.07857939,-0.18863675,0.3608235,-0.037848048,0.063475855,-0.16148688,-0.4637569,-0.12899488,0.51453507,-0.020614747,0.16785501,-0.025352526,-0.3638397,0.028792407,-0.19034211,0.042414233,-0.019913316,-0.5629136,-0.26599807,-0.26656145,-0.3903932,0.41825563,-0.31703094,0.018443175,0.21622221,-0.051770408,-0.1743086,0.029097028,-0.026971906,0.80290544,0.0034039356,-0.256813,-0.18034637,0.12862661,0.33789253,-0.29346192,0.1706336,-0.23684189,0.16416003,-0.56276125,0.53686464,-0.25865898,-0.50428236,0.40215707,-0.16116522,-0.087773964,0.5347377,-0.10229673,-0.20405208,0.13874198,-0.07905716,-0.41176295,-0.26536018,-0.3402454,0.26299405,0.18103945,-0.11153153,-0.10459742,-0.23461628,0.103387274,0.65825784,0.05908042,0.43977204,0.3442824,0.080268174,-0.39602062,0.16653827,0.26737064,0.507093,0.1522363,-0.01507771,-0.5344641,-0.5102652,-0.32587013,0.029145181,-0.17514275,0.14040777,0.022810586,-0.2509861,0.9339027,0.027800925,1.1773891,0.023882784,-0.42318344,0.08204538,0.51621026,-0.12053561,0.05865391,-0.26525253,0.88415617,0.6716775,-0.22540094,0.003531565,-0.7087377,-0.23226647,0.3226286,-0.38870746,-0.12301478,-0.080020435,-0.6581702,-0.43310136,0.18481342,0.12703402,0.14203686,-0.13480538,0.09287604,0.22098112,0.028603882,0.4307949,-0.59797007,-0.26765794,0.23128185,0.3171373,-0.17804247,0.14251705,-0.55824554,0.33258,-0.65694714,0.035812005,-0.3407886,0.25064322,-0.15487629,-0.4130283,0.15883607,-0.056406073,0.2618971,-0.33827546,-0.4834199,0.041045394,0.5134321,-0.07499908,0.108191304,0.55905986,-0.35032168,-0.0027931407,0.13195829,0.4337505,1.3135896,-0.43083063,0.09159039,0.3308742,-0.40328416,-0.6953854,0.33823323,-0.39573783,-0.07732355,-0.053532492,-0.4623373,-0.45914024,0.31691706,0.09484462,0.15557945,0.041266426,-0.3992839,-0.08086916,0.35152906,-0.19561559,-0.19043638,-0.24269642,0.32374975,0.45264027,-0.34764495,-0.5130745,0.008295663,0.34309885,-0.23487474,-0.46402967,-0.09314613,-0.13486578,0.3225189,0.29286987,-0.29479286,-0.10859849,0.04360352,-0.46958387,-0.00882639,0.28867596,-0.2673627,0.15905014,-0.31958443,-0.015564721,0.91831374,-0.3058759,0.034154817,-0.57457626,-0.50275004,-0.95461065,-0.41589218,0.1816194,0.3214535,-0.0069652954,-0.6623019,0.081433,-0.19956239,-0.24095678,0.096587546,-0.49332398,0.50119966,0.15244034,0.38106665,-0.28791016,-0.7268764,0.14661926,-0.0113855265,-0.12376048,-0.4583455,0.6951822,0.019394279,0.93554723,0.21614791,0.007731933,-0.0059272517,-0.5187215,0.12861013,-0.29664558,-0.08560322,-0.8272759,-0.0731909,9 -30,0.31794685,-0.01037313,-0.39937732,-0.32618397,-0.30779946,0.20888808,-0.08883622,0.18959989,0.16105205,-0.32859743,-0.11707541,-0.094066225,0.033459567,0.2629714,-0.29703963,-0.8106551,-0.08670086,0.029161043,-0.49537206,0.33766276,-0.5164772,0.48448008,0.13684483,0.33103803,-0.0039607286,0.25888687,0.35596824,-0.19561034,-0.29445884,-0.13661961,-0.26750532,0.31125054,-0.6959423,0.15769725,-0.10919845,-0.25565135,0.122773185,-0.325046,-0.24795623,-0.6569829,0.28742594,-0.8240501,0.47911477,-0.07545852,-0.28146434,0.2244696,0.19736628,0.12691164,-0.4100976,0.20564261,0.08694891,-0.35188824,0.007933965,-0.11136419,-0.29782522,-0.5441766,-0.49017954,0.052011278,-0.63209087,-0.2997775,-0.2979102,0.17223695,-0.37422928,-0.017195573,-0.24297489,0.23929618,-0.51343125,-0.031714126,0.14607993,-0.13677552,0.20149258,-0.39618272,-0.15183899,-0.07301687,0.17965111,-0.16990061,-0.1918117,0.35388163,0.29094464,0.4411975,0.034172274,-0.32454377,-0.17141068,-0.15825292,0.17223927,0.4023879,-0.09369263,-0.42363268,-0.25476116,-0.034174867,0.22414772,0.24972701,-0.13842094,-0.34278843,-0.04527458,0.05579426,-0.100655176,0.15343618,0.4687695,-0.36168212,-0.25957096,0.34480602,0.17757574,0.13615635,-0.18566473,0.20509544,-0.04115942,-0.42087895,-0.2670148,0.24297303,-0.11427726,0.64430785,-0.050761692,0.12228185,0.76228744,-0.26622283,0.21891376,-0.17426613,-0.0047338866,-0.11512348,-0.15934166,-0.14567533,0.05766853,-0.544893,-0.06299924,-0.24195729,0.90753305,0.16188225,-0.8057499,0.26469412,-0.47226658,0.07091848,-0.22065139,0.606382,0.6294965,0.34214693,0.23200367,0.82880527,-0.64517033,0.092510656,0.06448132,-0.41757354,0.023585528,-0.11337468,-0.12119033,-0.44205016,-0.01686468,0.17532888,0.11894179,-0.07586605,0.26193425,-0.28638357,0.041775,-0.20212787,0.71518993,-0.44294822,0.050192375,0.74909365,1.0376608,0.8921379,0.1438208,1.4037048,0.36187893,-0.11061971,-0.072037995,-0.1640911,-0.463093,0.1484694,0.41970322,-0.08276874,0.28576732,0.038981613,0.13417526,0.28222805,-0.40120474,0.20186695,-0.005930679,0.2719823,-0.15583524,0.03064873,-0.3962366,-0.19924268,0.23295297,0.15561526,-0.1304036,0.18069637,-0.08684016,0.44327238,0.19321974,1.3353083,0.07694981,0.08486678,-0.10210812,0.4413017,0.28542447,0.03190484,-0.0015087798,0.34562466,0.3469875,-0.07022342,-0.5570532,-0.0876744,-0.21828455,-0.50635314,-0.29485968,-0.5222804,-0.0010330677,-0.14492717,-0.43547273,-0.13807002,0.17195892,-0.3194633,0.5243218,-2.4446545,-0.08029424,-0.14168927,0.26495788,-0.2104331,-0.24476928,-0.2238746,-0.39857048,0.42571473,0.41679227,0.30495262,-0.6788555,0.27577603,0.39088088,-0.14560297,-0.23392986,-0.65726817,-0.08134786,-0.18874943,0.4707889,-0.004860161,-0.0627397,-0.17372409,0.25680822,0.60448706,0.057058945,0.017632008,0.0062530227,0.34565467,0.08862158,0.57406104,0.23836263,0.5810672,-0.043001074,-0.0014644172,0.430373,-0.35785252,0.27834973,0.12446499,0.2023829,0.3440665,-0.5025904,-0.7161421,-0.6084595,-0.53165936,1.1946852,-0.47456324,-0.42264935,0.33658212,0.12929067,-0.16433723,0.02359637,0.32418597,-0.12964995,0.18667072,-0.6236445,0.004834899,-0.00896338,0.07442298,-0.04916014,0.19772418,-0.17209703,0.6033847,-0.21288511,0.36227006,0.4296676,0.2582718,-0.07395081,-0.6261256,0.1744881,0.9313661,0.5206897,0.036182754,-0.058931198,-0.26830438,-0.1565283,-0.24000779,0.2786554,0.49508098,0.92187387,-0.012143014,0.0322764,0.29370236,-0.22209662,0.05593899,-0.058935862,-0.3412475,0.153101,-0.03920868,0.5720558,0.4868859,-0.16236377,0.47373492,-0.18945654,0.41658688,-0.11271062,-0.41757223,0.5179774,0.89855856,-0.09971559,-0.14982584,0.48645905,0.502873,-0.34246022,0.34414786,-0.6815028,-0.15528432,0.8332646,-0.03588828,-0.38315225,0.18795842,-0.295335,0.07978297,-1.0984513,0.40287495,-0.03154663,-0.48912847,-0.5251954,-0.28534958,-3.652745,0.04286576,-0.20370428,-0.13309199,-0.08627303,-0.13227402,0.36003053,-0.589657,-0.538644,0.10058597,0.026720762,0.38540915,0.06112976,0.14306924,-0.30824292,-0.07532281,-0.27135462,0.20245597,0.08174942,0.16606116,-0.25026548,-0.39314228,0.07619332,-0.32467598,-0.50954473,0.02622648,-0.37042558,-0.6674133,-0.10096966,-0.45351,-0.29118693,0.8086195,-0.36195755,-0.15893479,-0.118616804,-0.09510705,-0.28912994,0.34473717,0.34802595,0.20255911,-0.0043595918,0.11155777,-0.077264346,-0.38088965,0.17681296,0.15463021,0.21506514,0.3724517,-0.19266401,0.14174402,0.51372045,0.3506441,0.012870997,0.6387829,0.19363928,-0.17345372,0.34419027,-0.5501952,-0.37206855,-0.8003704,-0.4761365,-0.28804722,-0.32421795,-0.4147508,-0.2355814,-0.35526472,-0.77868164,0.4561209,0.061179064,0.17770626,-0.2596182,0.19573665,0.2629517,-0.032724347,-0.02646976,-0.2297238,-0.20453928,-0.42956072,-0.42634672,-0.7617012,-0.5935657,0.02523863,1.02135,-0.074676156,-0.2717345,-0.06779151,-0.18652302,0.07410089,-0.119733736,0.15920669,0.3038139,0.25944477,-0.16020012,-0.73598236,0.5731338,0.07681023,-0.14570943,-0.6026503,-0.16430919,0.70923704,-0.6757991,0.445669,0.43904838,0.23109044,0.14488292,-0.55584085,-0.20986089,0.029757403,-0.21039607,0.6305547,0.043293275,-0.54708505,0.4917752,0.20054314,-0.1648596,-0.6821642,0.6240742,-0.052913643,-0.25293195,0.17032105,0.3247823,-0.06868772,-0.066451624,-0.038936317,0.3212277,-0.568966,0.33617103,0.5176345,0.09107149,0.5141669,0.017893706,-0.3497297,-0.6177943,-0.090022534,-0.46328014,-0.26636878,-0.02972645,0.12767598,-0.05529843,0.18699881,-0.042724997,0.47168088,-0.4403032,0.14764784,0.048581608,-0.21455559,0.3531825,0.44980156,0.33824715,-0.371009,0.666289,0.16337882,0.11684148,-0.2716018,0.14428392,0.4931567,0.3842493,0.14774553,-0.047232464,-0.18556392,0.2598819,0.659906,0.21402368,0.47724006,0.21525505,-0.24875024,0.37375784,0.24570511,0.15513438,0.15097904,-0.1300438,-0.14581552,0.016619712,0.09006015,0.2742485,0.0967733,0.40094343,-0.003675472,-0.11623942,0.29236692,0.13425143,-0.04604113,-0.98307866,0.21995558,0.18435833,0.5298469,0.6097056,-0.014086697,0.1797419,0.3833508,-0.41372007,0.011368893,0.3370722,0.16107102,-0.46918717,0.6686476,-0.5437839,0.4383005,-0.19909726,0.002443865,-0.004367605,0.20143558,0.29959822,0.9768935,0.0051630884,0.10129702,-0.065466814,-0.24011561,0.1618605,-0.29501283,0.12045781,-0.3532062,-0.297903,0.60377127,0.3579011,0.17343321,-0.22077417,-0.1533215,0.093795165,-0.15824606,0.27167696,-0.094533116,0.08611137,0.039045215,-0.5878239,-0.48245192,0.55319285,-0.07616617,0.039951302,-0.015388334,-0.27043188,0.28806794,-0.09628542,-0.06454455,0.008950926,-0.5205746,0.019572496,-0.35943416,-0.4761994,0.42885804,-0.6782719,0.34292412,0.15049414,-0.05028424,-0.2471449,-0.101237945,0.33270273,0.5132512,0.04521647,-0.27103347,-0.31415796,-0.12624896,0.30798262,-0.32880938,-0.15955764,-0.192026,0.16932654,-0.53246194,0.31448615,-0.23606893,-0.14175838,0.044141915,-0.19448295,-0.11262153,0.31684837,-0.23181427,-0.23616433,0.1821484,0.09690246,-0.32469636,-0.03563892,-0.30925876,0.29033107,0.017377708,-0.039011832,0.120613635,-0.08118073,-0.17488825,0.38052773,0.039311048,0.32574093,0.21333724,-0.25919598,-0.4927732,-0.07589873,-0.12740241,0.22979234,0.08536733,0.117431596,-0.19046691,-0.2520991,-0.18854606,0.2098918,-0.30617085,0.084293365,0.1242702,-0.47221076,0.88686407,-0.014058126,1.1566292,0.11945976,-0.32021123,0.048956797,0.5167865,-0.059348486,0.06352488,-0.22762886,1.0387928,0.7763401,-0.07350014,-0.27899858,-0.39566517,-0.13025461,0.30124658,-0.1754762,-0.2963518,-0.079775594,-0.6842032,-0.3116395,0.10537668,0.16870764,0.122785844,0.12899622,-0.17572246,0.07299064,0.18246117,0.58936346,-0.512333,-0.019358907,0.3388518,0.14378732,0.11279696,0.14146453,-0.27787468,0.47854733,-0.61139894,0.20961261,-0.4330417,0.0042834273,-0.19399491,-0.260728,0.19450025,0.020896506,0.21118617,-0.21349186,-0.2272118,-0.32645983,0.59579706,0.050643593,0.32980013,0.72294945,-0.24515787,0.07311688,0.10095336,0.41329738,1.4008571,-0.10577894,0.033013124,0.37429988,-0.44235092,-0.43515855,0.2039788,-0.41994548,0.051206823,-0.10246879,-0.3935402,-0.4518988,0.2528351,0.110940956,-0.010931933,0.014861859,-0.48348957,-0.20638506,0.46891174,-0.2617645,-0.30790013,-0.2762615,0.25049078,0.7282295,-0.42725623,-0.2188982,-0.014096152,0.20892823,-0.3516119,-0.56555337,0.08122576,-0.18304262,0.5234891,0.09622454,-0.30613875,0.21115363,0.4017382,-0.32027096,0.13912067,0.56301993,-0.3907147,0.012306869,-0.077063695,-0.04221758,1.0386958,0.041467894,-0.041276284,-0.7595349,-0.5283352,-0.9007003,-0.36557767,0.35763153,0.2934621,-0.008744284,-0.4922708,-0.009285048,-0.040009946,0.08581597,0.04076959,-0.5730815,0.34827954,0.12190937,0.5253468,-0.008416394,-0.7599289,-0.14128587,0.031564303,-0.15676051,-0.51743525,0.67313254,-0.30713594,0.5301063,0.06493582,0.033770885,0.2188327,-0.5641796,0.30688792,-0.25865206,-0.26865575,-0.60195756,0.0963423,20 -31,0.5744159,-0.09790284,-0.55421394,-0.1683615,-0.2648726,0.26215482,-0.19753933,0.40958047,0.092023775,-0.44664985,-0.23455903,-0.12578803,0.0384131,0.24484813,-0.22963113,-0.6725585,-0.055940293,0.11572716,-0.6871136,0.8115297,-0.26072496,0.42531446,0.021241415,0.23742571,0.26813465,0.45229656,0.23828085,-0.14853774,-0.22807698,-0.14648134,-0.1436432,0.0065196957,-0.70229495,0.18850201,-0.3655627,-0.40713978,-0.06434706,-0.38269722,-0.40180147,-0.72350675,0.34052306,-0.87881786,0.5057091,-0.084097326,-0.15656327,0.27498242,0.1891109,0.29438117,-0.2746287,0.039723083,0.095978394,-0.110002734,0.100569755,-0.31869775,-0.20522644,-0.6306572,-0.52303267,-0.008149825,-0.6055975,-0.1740463,-0.3201133,0.11823083,-0.32354546,-0.0249599,-0.20497847,0.43016815,-0.4929767,0.13030136,0.06072314,-0.03631465,0.018814623,-0.60738707,-0.14245644,-0.100514695,0.22018415,0.0009253491,0.041552994,0.41139212,0.0596105,0.35528964,0.13987124,-0.16265768,-0.3218314,-0.17135724,0.16364677,0.33969855,-0.08154678,-0.50712115,-0.0865281,-0.010594089,0.3926535,0.23378244,0.20662323,-0.09890978,-0.10714811,-0.25925764,-0.20878312,0.3775727,0.6402408,-0.34875554,-0.292153,0.3544448,0.4710644,0.1613015,-0.2617832,-0.023894455,-0.105562255,-0.35734582,-0.08306942,0.32009047,-0.21010646,0.57049155,-0.13202843,0.22448564,0.60844254,-0.2862261,0.18840125,0.028620707,0.023675889,-0.061725415,-0.053027548,-0.1761077,0.14778145,-0.46400076,-0.004240334,-0.41206828,0.70929974,0.14686742,-0.579638,0.2333138,-0.53263193,0.1749071,0.132403,0.49110177,0.6142393,0.5283506,0.08545785,0.7442268,-0.17940079,0.10802376,-0.2091618,-0.25642926,-0.051586434,-0.12388077,0.033329014,-0.4090625,0.15431897,-0.009995684,0.009792827,-0.12339948,0.5267654,-0.46004254,-0.11653754,0.064335935,0.84149235,-0.28758538,-0.03400603,0.86607003,0.99429345,0.90296096,-0.009388866,1.1724836,0.24720539,-0.3102001,-0.0067176875,-0.3121172,-0.5984019,0.23785692,0.26789325,-0.032049023,0.45874882,0.102435976,-0.059204705,0.13586293,-0.44916546,0.042741872,-0.2804394,0.15959755,0.11966482,0.06637788,-0.22727232,-0.41936842,-0.03456437,0.058737718,0.30598336,0.19424406,-0.19901402,0.34440643,0.011082216,1.4641355,0.08523446,0.1605477,0.14107452,0.6346773,0.23018546,0.029246137,0.058116626,0.3583579,0.3758874,0.030453138,-0.5980985,0.030075844,-0.39719605,-0.6095215,-0.101719245,-0.44477683,-0.21052247,0.047362637,-0.45798457,-0.16500238,-0.0869796,-0.25692296,0.34427506,-2.5531127,-0.047839973,-0.22311138,0.402188,-0.40633088,-0.2718544,-0.27866927,-0.5206853,0.5026214,0.34164995,0.5232915,-0.57305676,0.41660953,0.45571324,-0.5682707,-0.011484478,-0.4802763,0.020113457,-0.0022611134,0.5768044,-0.22114411,-0.07461503,0.17072117,0.08562957,0.5370342,0.0092378,0.09751486,0.30371562,0.41307297,-0.010393687,0.42454842,0.06465247,0.45188767,-0.37835938,-0.09852403,0.36341703,-0.43986052,0.31188822,-0.18103155,0.15362898,0.46866956,-0.68916094,-0.8331274,-0.6201391,-0.08117978,1.0582143,-0.36809987,-0.5427731,0.08456972,-0.17273876,-0.11008296,-0.2046771,0.4694187,-0.08991389,0.021626767,-0.6363493,0.054593384,-0.13220479,0.22036918,0.01674755,0.17430201,-0.43593526,0.842561,-0.117799416,0.5408988,0.13312505,0.31444886,-0.29722726,-0.53665733,0.17898935,0.8538726,0.56333095,-0.03510427,-0.26034814,-0.34888554,-0.3329161,-0.21647383,0.16753718,0.634409,0.5942228,-0.07923269,0.060817048,0.33592716,-0.11626683,0.23576143,-0.18975443,-0.3264981,-0.2517693,-0.11924501,0.5794481,0.5410691,-0.1653737,0.42858443,-0.063068464,0.41811132,-0.24440287,-0.44171214,0.5490304,0.9130514,-0.19149102,-0.29758346,0.37173903,0.6389213,-0.28785887,0.47657582,-0.6360769,-0.5349165,0.48864096,-0.2489284,-0.33700654,0.34642467,-0.25868985,0.03242874,-0.72778934,0.23662251,-0.4079227,-0.3021109,-0.50267595,-0.08504318,-3.1597936,0.12078377,-0.2779001,-0.19326311,-0.26612675,-0.2636682,0.036149852,-0.6133582,-0.5153544,0.09645416,0.110870756,0.7213057,-0.08198837,0.19485635,-0.17638269,-0.34815466,-0.39475608,0.24033971,0.094455175,0.36793527,-0.29423028,-0.34256607,-0.028710939,-0.12822834,-0.31266242,0.09664756,-0.4629543,-0.4011916,-0.22958098,-0.47160512,-0.29738516,0.56732935,-0.1666942,0.12536037,-0.22707573,-0.01912713,-0.1448375,0.27891564,0.15584953,0.19398257,0.22028983,-0.106274545,0.17669848,-0.3260791,0.37020564,0.05245735,0.44657716,0.38098305,-0.25662446,0.13395679,0.32606336,0.48104817,-0.035317674,0.7280476,0.29335067,-0.14344402,0.40435958,-0.22154075,-0.3392939,-0.6309518,-0.23470402,-0.06026779,-0.29263127,-0.51965255,-0.15402302,-0.40852857,-0.9151324,0.40174535,0.012878362,0.3049563,-0.10845996,0.3253683,0.62937045,-0.09943694,0.00856561,0.025766125,-0.09156157,-0.3646437,-0.25221884,-0.7182406,-0.35872364,0.05774278,0.8773619,-0.17359942,-0.15120785,0.027642554,-0.16672355,0.0656967,0.10478336,0.17947812,0.101414986,0.49520248,-0.09903254,-0.62746316,0.6930982,-0.13900742,-0.29608464,-0.4424552,0.2924911,0.56824255,-0.637893,0.43693265,0.42936626,0.017831698,-0.19102004,-0.42065272,0.035866737,-0.11581834,-0.22078091,0.27575678,0.19212219,-0.60600454,0.34250057,0.03635747,-0.2708059,-0.79037833,0.738502,0.013775978,-0.49133506,-0.00916183,0.39333084,0.09274116,-0.052039005,-0.25562587,0.114145756,-0.49168935,0.29953495,0.25047186,-0.042145543,0.4522718,-0.20316423,-0.2915387,-0.66703415,0.17639719,-0.51595855,-0.29639345,0.40503353,0.20559666,0.11021086,0.05073971,-0.07771613,0.46953404,-0.3407281,0.2251516,-0.07676817,-0.17283991,0.4330901,0.31574598,0.5156256,-0.54800016,0.6909579,0.010209076,-0.13680412,0.24205515,0.26681858,0.33195764,0.09325464,0.35948545,0.20495936,-0.22236544,0.3024519,0.6293278,0.41594136,0.48167706,0.20272443,-0.31202677,0.41883734,0.09396481,0.12332369,-0.059159167,-0.48932582,-0.118491374,0.0063813105,0.085347846,0.37372434,0.13409507,0.401506,-0.12492572,-0.0015756972,0.013391927,0.26898646,-0.21325895,-1.1916925,0.25694564,0.2077755,0.8518598,0.39436305,0.024672203,-0.0328791,0.64164674,-0.17704707,0.09860278,0.29378107,0.065196134,-0.458135,0.50905645,-0.48178786,0.5346061,-0.031466864,-0.03642783,0.051850572,0.1515153,0.30376762,0.87756926,-0.14797544,-0.06619862,-0.06424546,-0.4119777,0.16204911,-0.25724438,0.1341558,-0.51290596,-0.3051368,0.66980284,0.27581596,0.32045454,-0.05066841,-0.036593728,-0.034031242,-0.16721883,0.23529255,0.13282569,0.25938845,-0.04483951,-0.6836552,-0.3571536,0.4477994,-0.47411713,0.16561209,0.24199533,-0.31804365,0.2512575,-0.04969371,0.06535293,0.0034987405,-0.6967466,0.10467811,-0.24287811,-0.25426722,0.40915334,-0.24594818,0.38931853,0.24809873,-0.120209165,-0.4356076,0.1874885,0.22855724,0.62589246,-0.1719127,-0.31069613,-0.54380673,0.15709792,0.26816052,-0.36411265,0.09781337,-0.1422973,0.16092384,-0.5954881,0.43418792,-0.1002334,-0.20240499,-0.034976337,-0.28084984,-0.14655896,0.6153487,-0.11250268,-0.07788108,0.04916017,-0.030513633,-0.37842193,-0.20110178,-0.17228304,0.12347555,0.38468456,-0.07670036,-0.16161981,0.031546637,0.13366266,0.4559651,0.027771037,0.39855057,0.3379988,0.14583525,-0.42796266,-0.0014965683,0.29651555,0.36059487,0.09363204,0.072066024,-0.26613536,-0.5592104,-0.39058292,0.24850105,-0.16291656,0.14879975,0.26310825,-0.19931722,0.80401146,-0.07966313,1.1766536,0.12766692,-0.33805364,0.15914671,0.53908885,0.077986315,-0.022253968,-0.26681197,1.1565449,0.62619704,-0.031727474,-0.14046039,-0.32712793,-0.024614174,0.088936485,-0.3027189,-0.21607696,0.1192311,-0.39600798,-0.36531776,0.08488563,0.23857999,0.100313246,-0.1361376,-0.015518751,0.322354,0.20536794,0.39785528,-0.530894,-0.4461704,0.35172474,-0.035701994,-0.024977867,0.24181922,-0.41807166,0.39933145,-0.6495377,0.011697687,-0.20173678,0.1166365,-0.018594094,-0.27377838,0.30085656,-0.001199156,0.40348792,-0.4807366,-0.4582705,-0.2855623,0.44581193,0.09510201,0.17493072,0.5682482,-0.23415598,0.0751726,-0.060146663,0.6412414,1.1378777,-0.15184063,-0.066187166,0.35175028,-0.50980365,-0.7438508,0.15178552,-0.34074843,0.249271,-0.090973966,-0.3368545,-0.44955567,0.37673336,0.14195056,0.022712998,0.065280706,-0.73647845,-0.29930204,0.34578,-0.3135044,-0.20869699,-0.32115528,0.20399533,0.75650513,-0.27666384,-0.26400182,0.060457934,0.21063331,-0.19593516,-0.7663936,-0.0932837,-0.33568716,0.26801473,-0.073284864,-0.22429562,-0.13768338,0.18954125,-0.42865294,0.19787735,0.05262795,-0.32212967,-0.06897758,-0.31791127,-0.009855837,0.81296587,-0.24033685,0.11804302,-0.41775045,-0.46212247,-0.88625515,-0.39096665,0.1944967,0.15217906,0.11480258,-0.6660136,-0.038354486,-0.108418405,-0.038773514,-0.08538851,-0.3140606,0.37159172,0.24407232,0.33503798,-0.12356556,-0.8611858,0.26375273,0.057287727,-0.23886296,-0.5747103,0.48290324,-0.2137884,0.76281774,0.15520063,0.044866726,0.30768338,-0.68916786,-0.030777976,-0.23173173,-0.08560411,-0.6965866,0.15317607,29 -32,0.43382218,-0.17904972,-0.5297974,-0.10512173,-0.14398193,0.18515903,-0.08039981,0.42917186,0.22152197,-0.2690428,-0.00618322,-0.2576164,0.091338515,0.36984453,-0.014021197,-0.4244411,-0.02344342,-0.0045243874,-0.52818775,0.49506545,-0.42905414,0.19088241,-0.18700159,0.3926402,0.2937711,0.3597511,0.00034229457,-0.11217942,-0.034852672,-0.05306371,-0.024129827,0.39487913,-0.2806739,0.1378186,0.03451445,-0.11065892,0.01262043,-0.24895601,-0.45926702,-0.6249392,0.37102813,-0.5915104,0.37718344,-0.0027284175,-0.24510425,0.028332502,0.04459375,0.17371425,-0.36936608,-0.14806552,0.07965613,-0.07877433,0.0891889,-0.12275633,-0.088404834,-0.340619,-0.42927456,-0.075145856,-0.43181098,-0.25239116,-0.27558154,0.077510834,-0.40977728,-0.10106412,-0.12821834,0.55852926,-0.49465907,0.1063656,0.14461917,-0.24468766,0.25677934,-0.64980054,-0.32831293,-0.08991259,0.19786894,-0.091012545,-0.2198377,0.27401057,0.29393697,0.28384948,-0.026337113,-0.010840796,-0.31005624,-0.24408263,0.22662976,0.42300564,-0.16696009,-0.6028973,-0.06880437,0.04117708,-0.040587954,0.17319156,0.13302867,-0.34364617,-0.14870699,0.22118771,-0.24411875,0.35349798,0.4712323,-0.36794502,-0.2506992,0.25526655,0.52122766,0.35944137,-0.20420837,0.013093881,0.034454018,-0.40739995,-0.07585696,0.101189524,-0.074937,0.4562289,-0.1394112,0.37394977,0.63153183,-0.22154167,-0.017268173,-0.064134866,0.030897232,-0.24760409,-0.2254409,-0.038252335,-0.03376189,-0.3392886,0.26339206,-0.10994263,0.76479226,0.25814432,-0.4710849,0.44151068,-0.51535225,0.20862949,-0.05641284,0.51513433,0.64424765,0.15486363,0.4275966,0.71346027,-0.27226198,0.08122735,-0.17840445,-0.32110292,-0.042759098,-0.112052165,-0.02378216,-0.4329796,-0.06823118,-0.01567476,-0.19508168,-0.016444605,0.40205026,-0.4718539,-0.12797768,0.085689545,0.72525716,-0.28765357,-0.031230448,0.5209424,0.9546867,0.91582996,0.024926875,1.0464433,0.04995203,-0.25310352,0.2991264,-0.35009423,-0.65225846,0.31512,0.36788267,0.41346335,0.11979343,0.0014253333,-0.08731739,0.41491386,-0.34684312,0.24179418,-0.18490416,0.36923796,0.2496795,-0.04949172,-0.20931093,-0.30071157,-0.19176954,-0.121431276,-0.03468664,0.18997869,-0.18709046,0.3611509,0.035772152,1.8253322,-0.073300704,0.1070242,0.1826651,0.56592673,0.1285736,-0.19482602,-0.0608372,0.4753694,0.31428277,0.1135501,-0.5909606,0.20801815,-0.29457092,-0.635406,-0.060234696,-0.42051423,-0.18185577,0.011179919,-0.4181437,-0.14027388,-0.032750357,-0.31106952,0.4718616,-3.0039902,-0.22707987,-0.16347708,0.19904508,-0.23912893,-0.2013044,-0.06194958,-0.43425366,0.24439429,0.34341514,0.42883402,-0.68277234,0.16612081,0.44564104,-0.3884249,-0.10405981,-0.48913777,-0.115053326,0.010096736,0.4404943,-0.050423395,-0.0137478225,-0.08433338,0.18910542,0.42281368,-0.08477482,0.14181994,0.2753059,0.21230301,-0.00775335,0.5795511,0.007089464,0.4192429,-0.21416643,-0.088122904,0.40467507,-0.35458156,0.28976387,-0.12500069,0.13279125,0.44626743,-0.3052813,-0.724024,-0.4787662,-0.13316394,1.1695101,-0.2593525,-0.36105484,0.4014145,-0.5707905,-0.064146,-0.34117562,0.41469806,-0.041658945,-0.14835969,-0.74907136,0.18258585,-0.12204009,0.08514709,-0.0014914237,-0.041730274,-0.20532846,0.66916674,0.045806013,0.58065546,0.3395393,-0.06760213,-0.19064456,-0.42044455,-0.03588112,0.5950967,0.2956279,0.14658378,-0.3104802,-0.20446756,-0.22789675,-0.043542117,0.18345517,0.53839225,0.5228118,-0.0053509697,0.2168783,0.3425575,-0.18355703,-0.1343592,-0.2042706,-0.1743567,0.026663493,0.023966037,0.5748377,0.56246275,-0.23363999,0.5439873,0.044808157,0.14432643,-0.17870733,-0.4343015,0.37331074,0.8694546,-0.24726464,-0.2217635,0.38696298,0.34409675,-0.31079817,0.2565714,-0.5262362,-0.016495626,0.6223751,-0.19829014,-0.34805495,0.37446043,-0.3000919,0.16136587,-0.8865049,0.2051369,-0.34651473,-0.44172996,-0.50360256,-0.18802091,-3.138806,0.09144819,-0.27611336,-0.33241808,-0.079349905,-0.19851041,0.1060382,-0.60213804,-0.5816588,0.045221962,0.118106335,0.57074946,-0.09701718,-0.061010204,-0.30130818,-0.32267183,-0.3348003,0.07582995,0.022454567,0.47256935,-0.13698217,-0.41945314,0.097473726,-0.05281064,-0.33858937,0.088408634,-0.32136455,-0.56300676,-0.12047326,-0.47247624,-0.4663924,0.6453348,-0.074226275,0.04744009,-0.14413159,-0.09761015,-0.035067227,0.3057727,0.25359154,0.10388805,0.023341138,0.02226222,-0.10689297,-0.24848029,0.06386583,-0.094319314,0.32276383,0.4055032,0.03461179,0.22695799,0.5286747,0.4851802,-0.089980595,0.7901591,0.50095564,-0.041437354,0.29073474,-0.35649067,-0.21245795,-0.44769615,-0.2787507,0.1487234,-0.3903023,-0.58316374,-0.1581859,-0.23826146,-0.5230369,0.44023013,-0.079358116,0.099842116,0.1158836,0.17476764,0.58236915,-0.066573516,-0.026117675,0.09439602,-0.075661324,-0.7023555,-0.31949008,-0.64846635,-0.45483837,0.22577672,0.8139214,-0.2863044,-0.12683141,0.05538511,-0.5627858,-0.023692703,0.07206915,0.11827096,0.22820877,0.37094644,-0.19229567,-0.5427918,0.35278794,-0.08300498,-0.12754843,-0.53145564,0.18028057,0.57996464,-0.59250516,0.657427,0.12426413,0.092464484,-0.2855184,-0.56826687,-0.20072336,0.0093461685,-0.22155043,0.41519982,0.12560092,-0.7202836,0.3695358,0.32466194,-0.1460563,-0.691597,0.5422982,-0.11353815,-0.40576875,-0.022569004,0.2528957,0.11110722,-0.008820295,-0.11871988,0.31357533,-0.47343355,0.2663335,0.25615567,-0.14188063,0.2759027,-0.14216316,-0.18296948,-0.5457903,-0.035967246,-0.45236814,-0.25274074,0.31714645,0.11988172,0.13275552,0.05374439,0.11013212,0.3884661,-0.122620925,0.07437091,0.0011589155,-0.10776898,0.28431386,0.37919372,0.40654865,-0.34435204,0.6027471,-0.06395705,0.044592842,0.1387863,0.104738,0.3059709,0.19651303,0.37370747,0.04087593,-0.33037314,0.2351808,1.1077845,0.23365521,0.53584385,-0.03921647,-0.18883617,0.2145544,0.081594214,0.24576774,-0.036838472,-0.4663908,-0.020311609,-0.1722301,0.21714002,0.3447191,0.17087954,0.23806082,-0.08988899,-0.39504707,0.01922603,0.23095348,-0.031740457,-1.2343314,0.31062546,0.20773634,0.85738385,0.38835818,0.0044253394,-0.003284566,0.5711099,-0.16047515,0.07632318,0.3177482,-0.056843232,-0.6044688,0.4674591,-0.7707627,0.6022588,-0.025929742,-0.04742362,-0.008527122,-0.03830806,0.3284593,0.6899214,-0.16770445,-0.15293482,0.10187148,-0.26271877,0.12251016,-0.43067586,-0.087231874,-0.66571784,-0.30783835,0.4444915,0.5222372,0.19223316,-0.20896794,0.030698605,0.0502781,-0.08061355,0.21681592,-0.013371624,0.17695148,-0.08328668,-0.69843626,-0.34584498,0.43734884,-0.10617669,0.21124631,-0.05769359,-0.23521541,0.2840649,-0.11456949,-0.042680684,-0.11231181,-0.4169448,0.04557693,-0.22775665,-0.5273298,0.46907985,-0.23171821,0.3977156,0.2546709,0.046618104,-0.27690548,0.41072565,-6.394833e-05,0.7692635,-0.27342957,0.0019972567,-0.5647082,0.0020827428,0.22105011,-0.128286,-0.20719287,-0.19680613,-0.071348265,-0.4283466,0.48390096,0.029525762,-0.30026066,-0.02023004,-0.21038273,-0.033848252,0.63809747,-0.07623142,-0.24266808,-0.25304753,-0.18085691,-0.36816648,-0.07200599,-0.0029048473,0.20206505,0.1955008,0.0054997355,-0.10579727,-0.15262875,0.029626556,0.23475488,-0.013073007,0.29341573,0.29942173,0.14773133,-0.2471776,-0.16675116,0.2480326,0.46449608,0.107736066,-0.069962695,-0.23980334,-0.47652477,-0.36672077,0.1443416,-0.1149655,0.3998419,0.16136064,-0.49270436,0.6304228,-0.06283648,0.9992587,0.13096684,-0.22589849,0.098894835,0.52680427,0.0559043,-0.009958748,-0.21114513,0.65064895,0.4901785,-0.064701095,-0.2914486,-0.19069767,-8.8173896e-05,0.21897465,-0.12845173,-0.08530551,-0.007819162,-0.5629107,-0.06666605,0.23409986,0.22097209,0.2607954,-0.12397502,-0.11680147,0.16086021,0.07333283,0.3338037,-0.31460568,-0.097771086,0.2490295,0.15360293,0.11280007,0.07500121,-0.38419905,0.42919502,-0.44371623,0.20640984,-0.21420318,0.20189996,-0.2001729,-0.1843257,0.18862034,-0.095954776,0.38185972,-0.2616829,-0.30280608,-0.2990078,0.3924798,0.1789504,0.12849884,0.55210423,-0.15111446,0.0028254688,0.23341915,0.4628684,1.0819473,-0.22223675,-0.120718166,0.3756045,-0.31818762,-0.610333,0.42279154,-0.25548822,0.13537344,0.029594418,-0.050823636,-0.542186,0.23933154,0.30542055,-0.047375206,0.016961325,-0.6568651,-0.26198214,0.21819322,-0.42072868,-0.11736564,-0.47621956,-0.08041145,0.62501776,-0.20038351,-0.25467384,0.16019477,0.28703073,-0.29704785,-0.48663118,0.10980771,-0.2736026,0.41371354,-0.020264,-0.21886918,-0.061413124,0.2168499,-0.4039621,0.16233908,0.06599695,-0.43701485,0.13104123,-0.20228931,-0.07767576,0.91702485,-0.27005395,0.09343037,-0.34810883,-0.3546007,-0.71791846,-0.29730928,0.5118265,-0.08542875,-0.042312913,-0.5265167,-0.08926775,0.040048525,-0.08559666,-0.11171675,-0.45178565,0.5745925,0.06365326,0.2897504,-0.0474215,-0.6379173,0.16860668,0.0042105448,-0.07825316,-0.49833125,0.6104456,-0.14326689,0.57773733,0.09638631,0.069643795,0.2170974,-0.29824233,0.09645912,-0.21884674,-0.19517435,-0.5572791,0.09578073,44 -33,0.3319201,-0.084333345,-0.51722586,-0.20061357,-0.19827951,0.10081207,-0.111596435,0.43551782,0.18622139,-0.30291545,-0.11629756,-0.18794124,0.05876129,0.18500474,-0.09675113,-0.5308502,-0.0021826066,0.108292505,-0.5768009,0.6082442,-0.32827115,0.09820783,-0.17230338,0.26348096,0.2585171,0.36509213,-0.060187705,-0.13341498,-0.10450625,-0.037248686,-0.15694115,0.4517741,-0.31503433,0.07824425,-0.042970583,-0.050926395,-0.099283755,-0.4472391,-0.4017997,-0.7096972,0.36345166,-0.79112816,0.30100542,0.029435877,-0.24419183,0.27802116,0.21065341,0.26209727,-0.3161432,-0.2545226,0.14090285,-0.12313537,-0.03712741,-0.111249626,-0.12197538,-0.34687114,-0.45966247,-0.19002171,-0.3197644,-0.31132132,-0.39361033,0.06698377,-0.31575572,-0.015142176,-0.082099624,0.6166475,-0.53378844,0.1793919,0.21838138,-0.21631175,0.14588691,-0.65025675,-0.11921859,-0.093379825,0.35466364,-0.13832693,-0.16739787,0.31578407,0.3734217,0.2134436,-0.10039947,-0.115256146,-0.3392728,-0.21418369,0.2692501,0.40788054,-0.094993606,-0.53931385,0.018881574,0.015083078,-0.14548208,0.21618867,0.15541397,-0.27455544,-0.20262271,0.14891183,-0.12541175,0.41226923,0.42406273,-0.1508036,-0.124438286,0.32384333,0.51637775,0.36677974,-0.28751528,-0.10562923,-0.002550695,-0.44953936,-0.16383079,0.0011122674,-0.25226405,0.51348233,-0.13873383,0.21883705,0.7628973,-0.13232294,-0.12308088,-0.09728753,0.0046999827,-0.14125592,-0.24520683,-0.23341036,0.19028176,-0.27118406,0.3395535,0.0041352306,0.61186683,0.151952,-0.5533211,0.36984035,-0.54547083,0.12602758,-0.12146485,0.38902795,0.5694994,0.35295004,0.46458232,0.62301755,-0.3288681,0.088876784,0.0026295763,-0.36487076,0.05394337,-0.11301147,-0.061327875,-0.49110302,0.08124172,-0.09614863,-0.20703092,0.115063265,0.24492213,-0.37653768,-0.05787513,0.11412987,0.811548,-0.30133936,-0.096628696,0.5613132,0.8350403,0.8970005,0.043743994,0.8954125,0.11034087,-0.27034318,0.35658193,-0.2613926,-0.7502372,0.3156535,0.35257694,0.03394112,0.13796115,0.080099,0.06360276,0.38637045,-0.3388351,0.04686454,-0.16044447,0.010645052,0.24669406,-0.20460081,-0.3981538,-0.17771201,-0.21515246,0.07614011,0.03600288,0.18558049,-0.09942102,0.38781086,0.041997466,1.8503178,0.09182634,0.008596348,0.145184,0.48620743,0.24990219,-0.160808,-0.14110988,0.5349294,0.28411627,0.24953258,-0.6031109,0.2279096,-0.21176024,-0.4272287,-0.14838026,-0.5284292,-0.16992041,0.13241653,-0.44311106,-0.10645516,-0.15682037,-0.23555881,0.38854653,-2.9558082,-0.13039681,-0.14676636,0.3228078,-0.22443259,-0.24792337,0.0059097502,-0.39080307,0.19062181,0.30228788,0.48361313,-0.60813344,0.31266403,0.43243843,-0.63603246,-0.05621271,-0.43284452,-0.19549324,0.033369794,0.34304014,-0.06975691,0.054221023,0.15272404,0.22749545,0.42240503,0.070372425,0.24255894,0.3578331,0.41305113,-0.01817034,0.5967386,-0.10081403,0.53696036,-0.15207809,-0.15688702,0.1650167,-0.2065846,0.35411417,-0.15881711,0.09794543,0.56602913,-0.32812318,-0.8512029,-0.5712175,-0.05276472,1.2073545,-0.4221973,-0.3202487,0.3642515,-0.6129147,-0.23667419,-0.22156666,0.46341693,-0.020940863,-0.08636944,-0.74801236,0.19270372,-0.091074124,0.11354279,0.06316269,-0.14675689,-0.34064728,0.72604203,0.01636151,0.6388916,0.333487,0.010728512,-0.20551041,-0.29690474,-0.06150013,0.5868618,0.26757544,0.08531886,-0.31954044,-0.25815406,-0.25162083,-0.056589734,0.14057882,0.6011607,0.37365657,0.011609905,0.2015422,0.24280445,-0.07735117,0.010737589,-0.20133951,-0.17846322,-0.04278758,-0.030584887,0.365762,0.5812315,-0.33330494,0.40125564,0.10595948,0.25577256,-0.031840056,-0.36438796,0.4277821,1.2433838,-0.18034911,-0.3545252,0.47523674,0.43891978,-0.2565259,0.30785295,-0.4321279,0.004775949,0.6652441,-0.26078433,-0.42978728,0.24295726,-0.27879634,0.10809533,-0.72624874,0.090811536,-0.1666399,-0.46807218,-0.5161291,-0.089845404,-3.2709496,0.1258218,-0.3300597,-0.3402591,-0.20006806,-0.18309112,0.06847334,-0.7265712,-0.60456854,0.22443703,0.05780834,0.7048745,-0.1215263,-0.025012314,-0.31059822,-0.32029587,-0.1586345,0.16235237,0.10551266,0.44077933,-0.079771526,-0.51764005,-0.1261664,0.07622272,-0.40491742,-0.017812986,-0.41812617,-0.32807755,-0.076897025,-0.51183385,-0.12705737,0.68286777,-0.19423789,0.027914153,-0.08487072,0.0017115772,-0.10628643,0.15044224,0.2331662,0.24160855,-0.016421173,-0.010853294,0.10554753,-0.23618782,0.3093522,0.0016690306,0.37316537,0.24271664,0.054767765,0.18775207,0.48650837,0.5470137,-0.14128757,0.8663789,0.58467436,-0.09422612,0.19622597,-0.27119446,-0.2957273,-0.5867762,-0.32709548,0.09873515,-0.37650007,-0.51874393,-0.19517267,-0.3114548,-0.6898525,0.40233007,-0.03777896,0.19457352,0.12809595,0.17452295,0.5460493,-0.20028518,0.040732868,0.014853958,-0.16032279,-0.627017,-0.118998125,-0.42736384,-0.39959055,0.17622873,0.7787998,-0.28613633,-0.036549717,0.046251513,-0.45150077,0.026143583,0.14885536,0.1156809,0.40749666,0.47461748,-0.17691353,-0.5282848,0.49585718,-0.15760939,-0.19690858,-0.59509116,0.19682796,0.50603676,-0.521643,0.72453,0.29827127,-0.060480088,-0.27954447,-0.5009107,-0.25485024,-0.025752857,-0.15989652,0.35475522,0.2503334,-0.64626765,0.25672278,0.18031828,-0.14892066,-0.64307845,0.6853354,-0.18749699,-0.38489458,0.021668926,0.2718634,0.02998523,-0.08925424,-0.18504481,0.22118719,-0.26232725,0.085370906,0.35279047,-0.053354464,0.09457709,-0.2123478,0.09716554,-0.71635705,0.07634679,-0.46481806,-0.15471703,0.4147257,0.05498883,0.23096637,-0.021566778,0.009671742,0.2968331,-0.2494392,0.16729495,-0.042515233,-0.22845818,0.31848124,0.37797922,0.4514372,-0.48719162,0.5236875,-0.02200143,-0.07003288,0.19487885,0.18108869,0.38264054,0.053299095,0.45304298,0.027633876,-0.24159485,0.2678041,0.92136437,0.30424812,0.48548386,0.04210716,-0.08420646,0.20564294,0.06168209,0.23418482,-0.08103243,-0.5883866,0.08394652,-0.21539569,0.10372904,0.4225326,0.16999692,0.1747731,-0.11421046,-0.43630925,0.0137153715,0.3340547,0.21299219,-1.0456034,0.34809375,0.28566614,0.89926744,0.32236746,0.09340258,-0.12820533,0.59261894,-0.21227275,0.13484731,0.3356262,0.032840792,-0.6371661,0.46717164,-0.7429657,0.5146971,0.11705913,-0.14148416,-0.00957093,-0.046043053,0.27367863,0.61730343,-0.21224089,-0.1428461,0.08311925,-0.38570243,0.26782542,-0.45079944,-0.1412267,-0.49493727,-0.28656375,0.51443756,0.577239,0.24980758,-0.09643941,0.0767741,0.07063158,-0.17218581,0.09954724,0.105653815,0.20307061,-0.028986234,-0.7573962,-0.19762771,0.40050563,-0.18633363,0.2668562,-0.066619635,-0.16998383,0.40441337,-0.16255826,-0.021371514,-0.059917875,-0.624267,0.11463082,-0.20561326,-0.6207672,0.54814327,-0.08070795,0.36890548,0.21089102,0.011295125,-0.28971878,0.52256465,-0.09546603,0.8432002,-0.11134346,-0.0032074228,-0.5701473,0.030997142,0.08478871,-0.106353834,-0.06763551,-0.40262175,0.12299303,-0.44377232,0.40828133,-0.009855546,-0.3963561,-0.15042934,-0.12336852,0.06408794,0.5856238,-0.2166131,-0.115297735,-0.26361528,-0.22476968,-0.28023607,-0.22959784,-0.105273664,0.28257984,0.16201879,0.1320863,-0.23545134,-0.102782294,-0.14897726,0.3821762,-0.12647456,0.49890015,0.33689722,0.014466637,-0.10684058,-0.30750176,0.3585323,0.50180274,-0.031843297,-0.10942343,-0.27883673,-0.4833396,-0.41861475,0.14933018,-0.06275398,0.50708216,0.26851892,-0.17662258,0.5817903,-0.2861558,0.87218595,0.022137789,-0.41866475,0.16613278,0.46445486,0.08955607,-0.092275575,-0.118487045,0.6761034,0.41715652,0.05071772,-0.1838371,-0.20647994,0.09547245,0.11208918,-0.11454423,-0.0250202,-0.019894699,-0.54607695,-0.005205363,0.15726633,0.17466795,0.40275037,-0.098142676,0.007785352,0.14171518,0.04144025,0.13379474,-0.43339238,-0.33323824,0.24425438,-0.060929883,0.0824271,0.04873975,-0.5475336,0.49442804,-0.28802562,-0.039227318,-0.24595457,0.27383173,-0.26700807,-0.09415564,0.20805612,-0.10716959,0.44481894,-0.26570728,-0.22412854,-0.36239797,0.44145203,0.17595327,0.09097792,0.46775234,-0.22683083,0.16357404,0.16577104,0.54996777,0.6813216,-0.2580794,-0.035906076,0.30851722,-0.44125122,-0.4804116,0.3486107,-0.36160412,0.19700642,0.094271734,0.047680058,-0.53378665,0.17340806,0.19432375,-0.08641373,0.020884782,-0.65250343,-0.32885897,0.21224806,-0.32651007,-0.13714372,-0.22369072,0.079131454,0.58873504,-0.31940624,-0.30201942,0.08698904,0.03634176,-0.03359635,-0.45538932,0.09639822,-0.26619303,0.3212243,0.009745982,-0.32044843,-0.10760427,0.08413405,-0.39352727,0.34554344,0.055038884,-0.36117473,0.03644766,-0.27435842,-0.09702596,1.0512474,-0.2596362,0.09912189,-0.3548438,-0.42656773,-0.7276373,-0.29512134,0.37183988,-0.038259372,0.06797439,-0.6091218,0.04128032,-0.05076912,-0.063688464,-0.20609972,-0.40463528,0.55002385,0.08838971,0.3635015,-0.08563553,-0.8289399,0.121857665,-0.031913053,-0.13416281,-0.58988184,0.48839322,-0.21980989,0.71025157,0.021652061,0.20776197,0.2112709,-0.29615584,-0.106713235,-0.2373597,-0.20589858,-0.50296783,-0.013520954,58 -34,0.31830892,-0.08389412,-0.36351544,-0.1300801,-0.10546659,0.25524473,0.0002238173,0.34704122,0.03050549,-0.3800281,-0.009876564,-0.14126933,-0.054718222,0.36074448,-0.010143377,-0.54060775,0.14185286,0.025810119,-0.5260048,0.43794537,-0.4692399,0.4426239,-0.033309646,0.10352632,-0.008877991,0.44164425,0.18285468,-0.2820995,-0.19474025,0.0077889487,-0.25469795,0.05035879,-0.4573785,0.15069509,0.0945671,-0.16174963,0.14647347,-0.2217711,-0.2214427,-0.4703595,0.14142011,-0.54260445,0.30599403,-0.0927441,-0.08085379,0.14544357,-0.0352944,0.38318455,-0.3383807,0.18273413,0.1695011,-0.17698674,-0.1854915,-0.17201379,-0.13354197,-0.43948048,-0.4830278,0.051771857,-0.39286318,-0.31600046,-0.15555793,0.054186475,-0.30734736,-0.036643058,-0.017583752,0.071013555,-0.45160466,0.00060908124,0.25069898,-0.14242351,0.00058847666,-0.5889275,0.12023709,-0.14134394,0.35082233,-0.2899779,-0.14076309,0.41953307,0.3754915,0.53676623,0.085127145,-0.106918976,-0.15353483,-0.23114786,0.20118631,0.54582965,-0.109139666,-0.30608726,-0.107765555,-0.004390925,-0.009958204,0.15541793,0.0070766434,-0.32334208,-0.1769842,0.08660638,-0.18419078,0.1958994,0.36393964,-0.42024127,-0.33304054,0.49018654,0.5961028,-0.028604478,-0.113907054,-0.027061936,-0.022301104,-0.5022683,-0.23166588,0.20010379,-0.14484477,0.37174347,-0.098047204,0.1482365,0.74573296,-0.36469823,0.045258194,-0.13584574,-0.095987216,-0.07244243,-0.030667806,-0.032990694,0.0849443,-0.38731006,0.053982772,-0.06352219,0.707115,0.38850436,-0.6790972,0.36342046,-0.41050696,0.14887665,-0.1680418,0.58985996,0.61422956,0.3353529,0.14047669,0.7631422,-0.48766863,0.28797987,-0.08569985,-0.41530895,0.12031167,-0.16886044,-0.13698377,-0.48422307,0.16546004,0.062626965,-0.13203889,0.068163574,0.12185113,-0.64896584,0.06924887,0.07065832,0.74690974,-0.31455117,-0.149709,0.44616342,0.8346008,0.7661566,0.0010387041,1.1764417,0.29692605,-0.37887967,0.23215875,-0.5805337,-0.64623934,0.09944886,0.41221595,0.1096884,0.23382393,0.21663985,-0.008670941,0.2541313,-0.3771801,0.16150337,-0.08906103,0.23789755,0.087900184,0.008156821,-0.24562354,-0.15766972,-0.06483343,-0.029053591,0.122279614,0.268888,-0.2368268,0.34137815,0.01956467,2.0001354,-0.0032545477,0.16268326,0.00013702922,0.47202885,0.037822314,-0.12027977,-0.16162431,0.34907427,0.32412428,0.15169682,-0.4991356,0.04116471,-0.25206465,-0.6404641,-0.06624043,-0.38145107,-0.08727879,-0.07375077,-0.23094001,-0.072263926,0.11812837,-0.2706802,0.64181066,-2.7402353,-0.08548245,-0.102717295,0.26294318,-0.37002426,-0.34086463,-0.17161503,-0.4457137,0.24074838,0.4022374,0.5000839,-0.7042335,0.34886366,0.19427611,-0.28638315,-0.20779215,-0.59074473,-0.007071048,0.028767938,0.22070724,-0.020950925,-0.05179716,-0.039785843,0.10496841,0.35928887,-0.13480192,-0.02809972,0.26157412,0.26429266,0.3263297,0.41137603,0.07754934,0.5982673,-0.17283235,-0.15299787,0.24900036,-0.251559,0.34477293,-0.06294629,0.09622364,0.1481084,-0.33976665,-0.7700113,-0.6577798,-0.2950604,1.2423911,-0.26892513,-0.10681203,0.19842525,-0.105581686,-0.15042509,-0.23089641,0.34942317,-0.043265477,-0.18947192,-0.64576185,0.16293594,0.007888252,0.3820191,0.065399356,0.04730226,-0.34405136,0.42058855,-0.16442391,0.49768946,0.28071612,0.06133627,0.06613508,-0.2796535,0.0660892,0.9839847,0.28017724,0.106193185,-0.04682849,-0.2680442,-0.3565472,-0.23578128,0.120099574,0.29149312,0.66979885,0.030846708,-0.07988665,0.278176,-0.03074763,-0.07371386,-0.143907,-0.23299189,0.08139681,-0.112856485,0.53940296,0.3355017,-0.18413454,0.5561644,-0.06974876,0.2135315,-0.04828517,-0.34829766,0.52461934,0.6977167,-0.16312842,0.025083616,0.26930517,0.44812363,-0.26946756,0.36648458,-0.62628365,-0.24388102,0.5163288,-0.21160473,-0.20776597,0.15304928,-0.22378868,0.108673126,-0.79112166,0.32895622,-0.06720634,-0.37005627,-0.44353223,-0.08578697,-3.6405573,0.068584666,-0.13823846,-0.19490555,0.15355691,0.13758017,0.033475623,-0.6077837,-0.3094888,0.1864866,0.08040059,0.5438622,-0.020560278,0.081358954,-0.26121366,-0.18660302,-0.31424814,0.09636773,-0.06657504,0.2751665,0.062156767,-0.33280107,0.032751076,-0.18954796,-0.313101,0.07154411,-0.54890436,-0.3936904,-0.20437336,-0.46591312,-0.25168434,0.72633517,-0.42013854,0.10930327,-0.12935671,-0.032772742,-0.15255569,0.20434472,0.25866103,-0.01498431,0.054887325,0.061074957,-0.05242929,-0.41626367,0.22506762,0.15192103,0.40212148,0.32494548,0.020729385,0.05944491,0.48672238,0.53074074,-0.053249784,0.57019347,0.5181707,-0.16920641,0.25393313,-0.42975128,0.018035537,-0.38278514,-0.5231721,-0.08948955,-0.31622112,-0.5863402,-0.014707327,-0.24370195,-0.6975877,0.3041821,0.0682943,-0.04657858,0.02319967,0.25887713,0.40454146,-0.264798,0.07441001,-0.056201234,-0.0487991,-0.4828065,-0.3655014,-0.49837202,-0.36736512,0.42823574,1.0739436,-0.31866398,-0.14569303,-0.084269606,-0.24996763,-0.119054995,0.00791036,0.042107083,0.24643825,0.28330302,-0.24981833,-0.6720239,0.43376136,-0.26653576,-0.056069024,-0.63222694,0.07779098,0.5407082,-0.6999335,0.32236683,0.2573707,0.08920409,0.20015925,-0.32535744,-0.21906736,-0.07198036,-0.2701529,0.120530404,-0.14196134,-0.64463854,0.38669583,0.19076093,-0.26942903,-0.5447813,0.42415524,0.026020762,-0.2897594,0.14490733,0.21948111,0.18247789,-0.089346945,-0.37435535,0.17634472,-0.51480806,0.24482736,0.45076716,0.040663917,0.27326778,-0.09703002,-0.23238745,-0.53468096,0.06139267,-0.4110391,-0.20349856,0.16613898,0.18496886,0.2064998,0.09784944,0.106011316,0.30580693,-0.39629728,0.040239424,0.086233154,-0.23826084,0.28917328,0.3438995,0.36755985,-0.4425035,0.5059886,-0.014317114,-0.05593894,-0.05117833,-0.06636953,0.49015558,0.20119861,0.11720168,0.056561228,-0.34257236,0.24543297,0.80290246,0.26294753,0.3236821,0.012373442,-0.26709485,0.17457826,0.1558283,0.09294833,0.27297065,-0.41757968,0.052468844,0.15806553,0.25445595,0.39584458,0.27243325,0.37950218,-0.04352433,-0.23344567,7.655006e-05,0.08336738,-0.07420319,-0.84569657,0.37313575,0.2668972,0.662011,0.32354176,0.02150257,0.12926471,0.4810101,-0.32039756,0.20998633,0.19090392,-0.4005545,-0.6513452,0.49659824,-0.61728394,0.48480392,0.0679362,-0.0010569971,0.10132834,-0.09937145,0.2623564,0.9020724,-0.19416758,0.0019098371,-0.11177503,-0.17108376,0.004804589,-0.38528237,0.069053926,-0.53042245,-0.31018147,0.53739965,0.3287409,0.25769162,0.017014612,0.12906167,0.019541718,-0.103795074,0.1590203,-0.10159008,0.20009752,0.13263738,-0.56850094,-0.39746937,0.5704557,-0.3379646,0.07120916,0.17525667,-0.18196446,0.25544325,-0.2377496,-0.025699513,-0.15210685,-0.4876191,0.053752184,-0.060311455,-0.27624962,0.39412507,-0.08260196,0.38960093,0.12419085,0.02162834,-0.30840173,0.62157845,0.15062606,0.6762898,-0.094956025,-0.31617445,-0.4477108,0.11864547,0.21070372,-0.21394059,-0.007631447,-0.18187705,0.020598732,-0.60036546,0.31828177,-0.014892694,-0.3047391,0.05018477,-0.30967164,-0.076713644,0.48491335,-0.07077092,-0.03721441,-0.06107935,-0.14195313,-0.19031,0.052636787,-0.24997771,0.13238558,0.20659171,-0.047267377,-0.10269832,-0.17107241,-0.10673734,0.24262394,0.054628797,0.16311732,0.20631453,0.010920286,-0.2023728,-0.19229287,0.09276816,0.28195122,0.009511273,-0.050847456,-0.19442663,-0.31727588,-0.3197401,0.13867892,-0.26706246,0.36626023,0.19435658,-0.36399496,0.52411026,-0.052000597,1.1691751,0.070687845,-0.2538107,-0.0054810494,0.5221303,0.17618203,0.16625859,-0.32259744,0.8325582,0.54766786,0.07490036,-0.172179,-0.2307216,-0.30510622,0.3373716,-0.07425705,-0.1926029,0.047332883,-0.6597353,-0.403557,0.32258427,0.09136517,0.3183115,0.09235574,-0.049602073,0.09674499,0.10794084,0.23423265,-0.4925022,-0.27198815,0.38069606,0.16682677,0.13413164,0.13828343,-0.40591317,0.46892273,-0.532594,-0.00466682,-0.12011861,0.12141923,-0.10315187,-0.11767979,0.2348939,0.13893022,0.41902304,-0.27036467,-0.45214853,-0.23651682,0.4770494,0.10869463,0.2860788,0.63633335,-0.23775205,-0.00067090243,0.0023400858,0.38509664,0.9550153,-0.2421902,0.03595816,0.4896583,-0.32273623,-0.40716064,0.3467961,-0.09395504,0.07651079,-0.027181752,-0.2935636,-0.4259142,0.3177505,0.16471173,-0.01439634,0.16864721,-0.54744005,-0.22826955,0.112680264,-0.28907788,-0.32988316,-0.39954403,0.37565073,0.8954709,-0.5150146,-0.2510078,0.22748011,0.20953798,-0.20994478,-0.43600917,-0.14722508,-0.3149557,0.23475175,0.08981314,-0.2796958,-0.12702633,0.07992421,-0.25922728,0.19430813,0.23635478,-0.40755406,0.10780454,-0.113527864,-0.02837602,0.7662809,-0.010989755,-0.025157502,-0.56074625,-0.29009265,-0.7406544,-0.5686808,0.5030646,0.1975328,-0.1991343,-0.3728962,-0.04272199,0.00696446,-0.2162088,-0.026955705,-0.5170136,0.48625457,0.051122237,0.0895466,-0.08388966,-0.7910188,0.060869955,0.0027729115,-0.20343718,-0.5219923,0.3597142,-0.1799629,0.8613117,0.06706561,-0.12427373,0.4007541,-0.40189293,0.0152541585,-0.3615156,-0.15050414,-0.64379865,0.1542411,78 -35,0.53283453,-0.036724806,-0.50367904,-0.16729313,-0.32564873,0.107875995,-0.36456317,0.1918317,0.27239454,-0.18524863,-0.080260895,0.043928392,-0.05590242,0.24219517,-0.075265385,-0.749008,-0.008186599,0.06812986,-0.81233716,0.64227295,-0.36476612,0.3702271,-0.07026649,0.431258,-0.10565984,0.46217147,0.26043367,0.0194641,0.11195732,-0.1213877,0.14803183,0.019425241,-0.80710226,0.2752338,-0.21542147,-0.23389214,0.0016320869,-0.36934435,-0.12527832,-0.6570717,0.14729163,-0.76828957,0.528449,-0.12593551,-0.11809098,0.048760645,0.10347758,0.24640682,-0.28167585,0.056218266,0.13854276,-0.16608146,-0.17903669,-0.36778212,0.064648174,-0.49749267,-0.30921793,-0.06932155,-0.70286953,-0.2233103,-0.34545875,0.16230044,-0.2881503,-0.08165188,-0.26233116,0.44044837,-0.31198686,0.013310067,0.28405342,-0.20827134,0.20547926,-0.525552,0.061645217,0.033051066,0.38581076,-0.02471965,-0.19006877,0.44208795,0.08702384,0.36379236,0.28435996,-0.3482463,-0.09390155,-0.057943784,0.21836437,0.35471666,-0.07442349,-0.21491629,-0.21499997,-0.09567061,0.44976547,0.21847822,0.01294386,-0.21091793,-0.102335446,-0.11182195,-0.10286562,0.69740236,0.5073316,-0.29821366,-0.18540218,0.30900082,0.5198737,0.31179783,-0.12653457,-0.056386482,-0.04514899,-0.51638776,-0.15170681,0.18914795,-0.0280029,0.3721345,-0.06596284,0.17505568,0.7147526,-0.143318,-0.049114276,0.13587344,-0.008790224,-0.091098934,-0.26518288,-0.06729512,0.23731324,-0.60801244,-0.14964962,-0.41066366,0.55934757,-0.0221565,-0.7046313,0.31704545,-0.5382019,0.030726004,-0.09886311,0.54411703,0.818183,0.52245677,0.18316078,0.7603372,-0.30088174,0.114108294,-0.10317734,-0.41067368,0.014844671,-0.13594441,0.079297036,-0.4334681,0.06530885,-0.22930035,0.23879167,0.030194715,0.29395983,-0.54888594,-0.15042943,0.08096685,0.65791905,-0.28617847,-0.062414005,0.68852353,1.1534213,0.8456514,0.042953752,1.0364281,0.19979799,-0.16999815,-0.044485405,-0.11847615,-0.40634692,0.31179965,0.44564986,0.24216962,0.3519636,-0.19131473,-0.086149566,0.2509131,-0.23826614,-0.12766713,0.07481514,0.5322049,0.12145816,-0.12299183,-0.31846115,-0.09943711,0.049855433,0.10018295,0.24875641,0.16459574,-0.24909134,0.18160701,0.17341922,1.0057442,-0.08802634,0.07142906,0.061303608,0.37682447,0.41258958,-0.15449312,0.00014494732,0.4098853,0.33635065,-0.06649648,-0.661422,0.26631394,-0.43623328,-0.4730183,-0.11779534,-0.38250977,-0.2088661,0.021907762,-0.5634341,-0.15773445,-0.024061894,-0.2014184,0.33250076,-2.6242576,-0.31508714,-0.12803634,0.42177248,-0.21864897,-0.24645486,-0.046370115,-0.42002863,0.21878657,0.29719478,0.3975765,-0.50537056,0.5879591,0.54076606,-0.5291704,-0.10579462,-0.511209,0.010468688,-0.002234893,0.5623422,0.03289501,-0.27388525,-0.21347466,0.3376872,0.6852983,0.007996704,0.17945066,0.44526845,0.31525227,-0.07697697,0.4391717,0.09530316,0.55873674,-0.30998433,-0.1663123,0.25519344,-0.19092044,0.20611894,-0.14820562,0.13677756,0.54613227,-0.2985518,-0.8894739,-0.53016543,-0.29673052,1.2074283,-0.23316944,-0.59761775,0.09019716,-0.014648259,-0.14598572,0.22666404,0.543498,-0.117614396,0.26841927,-0.6215107,0.22629249,-0.19272141,0.191899,0.03905523,-0.049449034,-0.31560925,0.79612136,-0.118495844,0.59767956,0.1696784,0.3893473,-0.13020739,-0.38404536,0.15501633,0.7520033,0.37834212,-0.00428541,-0.19655795,-0.15447193,-0.10880645,-0.03794138,0.012237569,0.6455078,0.5906192,0.00089711696,0.12645331,0.28291473,-0.091134444,0.040847756,-0.25425845,-0.2765816,-0.053251594,-0.008256942,0.61191696,0.7561374,-0.12143059,0.3411101,-0.12043737,0.18406609,-0.068957284,-0.5582312,0.6958335,0.4644804,-0.24295034,-0.12649041,0.54449356,0.40416837,-0.24155271,0.413606,-0.6827529,-0.40139884,0.6709864,-0.08835269,-0.31578,0.1855542,-0.24398193,0.21521246,-0.60070276,0.4117009,-0.45564532,-0.5064806,-0.34946895,-0.109246865,-3.2402792,0.28953177,-0.025748914,-0.06536555,-0.47630683,-0.034629565,0.31178686,-0.5701241,-0.5239015,0.06879306,0.13209157,0.66513133,-0.16904926,0.1310041,-0.18405874,-0.44136828,0.07849711,0.2823746,0.13011268,0.2026395,-0.09258841,-0.28174052,-0.050341323,0.05398171,-0.58868384,0.23893486,-0.47507966,-0.49845576,-0.047944892,-0.42235753,-0.1087284,0.5406368,-0.34006777,0.044422965,-0.22904913,0.2263673,-0.007341251,0.15181355,0.05192084,0.18217744,0.24446869,-0.00017806282,0.015805315,-0.24605393,0.33413774,-0.007588541,0.5047282,0.18694174,0.018815896,0.0062770825,0.4309367,0.5778706,-0.19060081,1.0306005,0.18196939,-0.04847242,0.3536138,-0.08581936,-0.42869788,-0.68973374,-0.34817183,0.04340654,-0.35632327,-0.34461474,0.114562094,-0.21639991,-0.8677125,0.41619506,-0.041467123,0.35168603,-0.10782561,0.3917738,0.51464975,-0.14516374,-0.07535204,-0.074785054,-0.20368996,-0.47445965,-0.31217632,-0.7257569,-0.4252179,-0.07297306,0.74530876,-0.32687518,0.03164737,-0.018920925,-0.062443018,0.14655173,-0.08321022,0.06722358,0.13583897,0.29929373,0.08847469,-0.513492,0.33991462,-0.13785762,-0.09827763,-0.4178486,0.1678518,0.6268972,-0.60463417,0.3780328,0.38251668,0.048931323,-0.091980405,-0.57187575,0.0034325533,0.035359137,-0.21899755,0.45600432,0.18797463,-0.94450927,0.6201722,0.093587875,-0.32570243,-0.7413765,0.41286978,0.07665274,-0.2560864,-0.19360676,0.3994434,0.021213956,-0.082169995,-0.270917,0.245448,-0.47112137,0.22061719,0.12051824,-0.09465136,0.17400798,-0.122145765,-0.37126848,-0.6665916,-0.08242532,-0.54317766,-0.31828249,0.23669337,-0.16995779,-0.03538045,0.19830066,0.04450726,0.49315345,-0.26872557,0.10715346,-0.09025982,-0.41812205,0.3855065,0.54823333,0.46619922,-0.17269728,0.48782745,0.10170529,-0.110864036,0.2184782,0.100796774,0.46886846,-0.05920857,0.3755198,-0.11410934,0.13720608,0.27172452,0.6827103,0.11309105,0.38992295,-0.06805294,-0.21144536,0.44188216,0.020243965,0.31135583,-0.21166846,-0.43549362,0.08859892,0.14233899,0.03732077,0.45594934,0.22547747,0.30910647,0.05596163,-0.24164389,0.0670235,0.2482854,-0.1610974,-1.327596,0.30827358,0.23832579,0.9306054,0.39618513,0.0055907518,-0.16592559,0.59196615,-0.16833034,0.10265303,0.31369284,0.08058496,-0.44156468,0.6169729,-0.6165534,0.25622016,-0.13601384,-0.021451164,0.22795704,0.07915436,0.30414551,0.8840005,-0.2952689,-0.005056926,-0.1823993,-0.13591188,-0.0761691,-0.19182733,0.07429269,-0.24204487,-0.4243588,0.7675476,0.28738132,0.29658315,-0.3267441,0.027615745,-0.06344902,-0.22667,0.22876889,-0.101784565,-0.033606358,0.0032765027,-0.36795083,-0.21394342,0.5184585,-0.06939915,0.14781605,-0.18616946,-0.12811892,-0.04544944,0.10429411,-0.04099351,-0.02431164,-0.57031405,0.08006213,-0.33469558,-0.363704,0.4388586,-0.32922095,0.021019265,0.2035635,-0.014040686,-0.08005799,0.21122012,0.09374506,0.48604783,0.11170095,-0.28652823,-0.35121998,-0.0029776935,0.11461875,-0.28597128,0.11050048,-0.36092132,0.14597622,-0.66186255,0.4298541,-0.19043817,-0.35221618,0.33787894,-0.25420794,-0.049177166,0.45742756,-0.0023468956,-0.16686988,0.09543677,-0.14766105,-0.29736546,-0.116232015,-0.21785997,0.20888454,0.17579927,-0.1823443,-0.1698949,-0.10088821,-0.15166718,0.4594676,0.14469874,0.38297793,0.21605432,0.0497763,-0.36783618,0.23085739,0.36543113,0.46786737,0.11864019,0.13196588,-0.31593728,-0.42245674,-0.4931169,0.14582244,-0.058780476,0.03813511,0.032292582,-0.23658444,1.021724,-0.03315015,1.0667942,0.010814618,-0.36327353,0.07193158,0.55733126,-0.08266097,-0.07471535,-0.4650273,0.9238095,0.50760573,-0.01803656,0.011933494,-0.24604727,-0.15350996,0.19308342,-0.38866746,-0.016079195,-0.13946176,-0.612206,-0.45084238,0.19372797,0.21628207,0.06351893,-0.108186714,-0.15470307,0.16845205,0.07095556,0.29987618,-0.8535102,-0.24772696,0.013329059,0.09072945,-0.13504508,0.24472985,-0.3850243,0.33689955,-0.7822019,0.17712311,-0.55570614,0.094509915,-0.17818232,-0.33826405,0.11683294,-0.030418068,0.3703828,-0.26291877,-0.4896269,-0.072325595,0.20471269,0.06329375,0.1439882,0.5599251,-0.17089672,0.004331693,0.12448554,0.6035482,1.0281503,-0.35439909,0.0920552,0.14505237,-0.45059305,-0.6353178,0.098267004,-0.41182625,0.02288394,-0.07714487,-0.37165186,-0.3169107,0.22911988,0.056374293,0.12589352,0.06467253,-0.8402971,-0.132819,0.31016296,-0.28898537,-0.07233921,-0.12990278,0.29715985,0.77078915,-0.35009792,-0.27759802,0.10571789,0.4501996,-0.1386208,-0.6296355,-0.015331879,-0.28856593,0.37463734,0.064525336,-0.25155616,-0.047432587,0.059178293,-0.51803946,0.13269389,0.33804476,-0.32336968,-0.0800755,-0.09183139,0.092668526,0.7615412,-0.17757417,0.056260742,-0.55085254,-0.53391737,-0.84838736,-0.5655282,-0.021064732,0.23449385,0.024932472,-0.37238392,-0.035269413,-0.12780069,-0.14664155,-0.030643811,-0.4908929,0.2581909,0.16971906,0.57955545,-0.28949526,-1.1201602,0.2033188,0.1596537,-0.13006195,-0.59616,0.48660856,-0.1687115,0.6845667,0.047219552,-0.10908108,-0.086385265,-0.58968663,0.08482756,-0.37518674,0.037832487,-0.7003311,0.21629103,80 -36,0.4130866,-0.2624192,-0.48464507,-0.09813253,-0.40776646,0.11735763,-0.24190466,0.49725062,0.19447261,-0.5344108,-0.2042878,0.014509341,-0.10793717,0.14666454,-0.13705468,-0.39456394,-0.10400428,0.23379925,-0.6019489,0.7496604,-0.3097391,0.124771066,-0.043867204,0.3676359,0.27243966,0.20282835,-0.056099225,-0.14043036,-0.32994366,-0.14815974,0.020663794,0.3454835,-0.53210706,0.31707364,-0.41536918,-0.37498617,-0.12620555,-0.46415395,-0.42891794,-0.69133234,0.17692383,-0.89805335,0.57267064,-0.11821355,-0.25122967,0.24340527,0.14428475,0.3355907,-0.04221765,0.100188345,0.15520388,-0.21946913,-0.14450513,-0.35394406,-0.09506008,-0.4621015,-0.53496945,-0.059881438,-0.30971578,0.08389821,-0.16785465,0.24765041,-0.12875181,0.020203803,-0.24552208,0.3676287,-0.49097908,0.33950713,0.10328995,0.023444675,0.11621243,-0.7384878,-0.26603878,-0.10603706,0.13885133,-0.05714745,-0.26648527,0.31524143,0.17472777,0.54596186,-0.03179741,-0.09395815,-0.2955026,0.10754262,0.16124962,0.44286835,-0.2681005,-0.23018792,-0.11326347,0.034063067,0.48920524,0.06675178,0.06477373,-0.24779941,-0.043525346,-0.16576181,-0.18153141,0.2875057,0.39657673,-0.21190602,-0.15805365,0.43613857,0.41310757,0.32760006,-0.17713946,-0.13587332,-0.18247724,-0.45526856,-0.11068119,0.13235797,-0.28345236,0.56971145,-0.13707635,0.11334567,0.29768282,-0.055280186,-0.0704123,0.2226739,0.15738332,0.14887388,-0.12292098,-0.35328254,0.29855525,-0.4523376,0.04744834,-0.33851627,0.4804865,-0.051889874,-0.572309,0.27460298,-0.5157976,0.09538515,-0.024477828,0.3848626,0.6965779,0.57340246,0.06506142,0.6532289,-0.14467846,0.07562267,-0.09140788,-0.1851885,0.10870065,-0.26334682,-0.06185843,-0.5505536,0.14733249,-0.22232343,-0.1038222,0.04900805,0.48806152,-0.51017344,-0.23627296,0.04567256,0.76479924,-0.28058833,-0.1457271,0.8352735,1.0056126,1.0006666,0.045723163,1.0875397,0.2897617,-0.20408262,-0.11288282,-0.27539098,-0.5774413,0.31115338,0.27372628,-0.4027664,0.31689674,0.12802677,0.04576608,0.45179832,-0.35637525,-0.12506066,-0.289664,0.3192173,0.075358704,0.002337262,-0.403408,-0.38837194,-0.07881921,0.13904047,0.17286141,0.21303324,-0.25794464,0.39377716,0.057609603,1.397052,-0.13371615,0.0070327334,0.13963881,0.29768258,0.1381855,-0.119491085,0.11259472,0.14459385,0.25796726,-0.008729152,-0.5063058,0.16948706,-0.2461492,-0.56261146,-0.17824483,-0.19312263,-0.29146385,0.083960116,-0.50524145,-0.30131346,-0.046077948,-0.21917814,0.36963734,-2.4384782,-0.1511973,-0.19113412,0.50728476,-0.31128997,-0.3216181,-0.16255523,-0.42815095,0.2730943,0.2886164,0.4690119,-0.6043685,0.4450188,0.29767781,-0.59577227,-0.058300838,-0.6149477,-0.14750296,0.072994694,0.33278555,0.021654954,0.0033911373,0.30404446,0.030529138,0.4830262,-0.2353631,0.24686812,0.4038149,0.34826994,-0.05508136,0.29542878,-0.03840368,0.579473,-0.3918059,-0.27626693,0.45704308,-0.32046497,0.24660772,-0.07035797,0.08441035,0.4794244,-0.5032315,-0.8211533,-0.67589164,0.06459129,1.3492278,-0.11201671,-0.5253695,-0.026682978,-0.38224924,-0.2966771,-0.04769482,0.33131087,-0.16591647,-0.08285295,-0.91668177,-0.082423806,-0.14440249,0.25494888,-0.04614718,0.0037735403,-0.49391887,0.68712187,0.008034296,0.58146477,0.37167728,0.3531177,-0.18585712,-0.3830469,0.046320405,0.75879186,0.51748025,0.09596348,-0.24754965,-0.23934743,-0.35558024,0.13849989,0.27332276,0.52874005,0.37319294,-0.09910616,0.094036326,0.2585044,-0.029667787,0.026047222,-0.21141018,-0.31854513,-0.28491503,0.22453642,0.6932131,0.74409497,-0.09779504,0.35220167,-0.11553517,0.39814365,-0.10711174,-0.6113085,0.44935083,1.1959993,-0.28111055,-0.3530302,0.6427618,0.5993135,-0.22007619,0.452963,-0.6560395,-0.49925193,0.18913046,-0.10535832,-0.37558103,0.028115738,-0.379932,0.3311419,-0.8426491,0.5146599,-0.42581356,-0.3491907,-0.74207425,-0.05659288,-1.5795683,0.22088294,-0.14348523,-0.21661955,-0.17476998,-0.23703754,0.14062813,-0.6068489,-0.6167484,0.15977816,0.17768455,0.5258938,-0.051683847,0.023629121,-0.18565038,-0.4497945,-0.039859742,0.1548926,0.23993507,0.39926267,-0.111714445,-0.5063264,0.059552357,-0.08299548,-0.20123568,0.039308317,-0.6116624,-0.6166029,-0.033646755,-0.47104117,-0.17130661,0.33977175,-0.3733717,0.0056036413,-0.23886508,0.095633015,0.061199214,0.16251521,-0.085979566,0.26641095,0.21394326,-0.09193499,0.08348561,-0.15458922,0.35580117,0.1722337,0.1048989,0.47343758,-0.2145076,0.18245915,0.52343416,0.6095074,-0.30001324,0.8005227,0.5964496,-0.19864357,0.2673988,-0.18085,-0.3309925,-0.5520494,-0.2621578,0.107082665,-0.40095025,-0.32448363,0.12521918,-0.34979087,-0.95765805,0.57858974,-0.09661803,0.14899367,0.06999371,0.14300463,0.55537486,-0.13578954,-0.055575714,-0.050885048,-0.1399827,-0.46360213,-0.53547454,-0.6298147,-0.39451474,-0.094757825,1.1968923,-0.15222089,0.17269966,0.26325783,-0.27774617,0.04990397,0.23622659,-0.11340313,0.021606077,0.5424112,-0.17146546,-0.65417117,0.2595899,0.05953533,-0.03291769,-0.45234275,0.42944553,0.62567353,-0.5166949,0.5456336,0.46127766,0.019786896,-0.10418022,-0.60367244,-0.16610214,0.049368903,-0.29046094,0.4066282,0.25325575,-0.6614479,0.41358107,0.20012392,-0.35553554,-0.6853821,0.5928066,-0.07812394,-0.24313152,-0.16654544,0.33610508,0.08133814,0.09128932,-0.16002904,0.25054318,-0.3471019,0.441399,0.12366043,-0.03399368,-0.13717702,-0.29738665,-0.075021125,-0.93139434,0.09291418,-0.42992932,-0.39597222,0.25767013,0.031840287,0.1429339,0.07301128,0.23812762,0.34453562,-0.33267248,0.08664774,-0.18972617,-0.30003735,0.42552358,0.4048798,0.59587157,-0.4451115,0.514209,0.07796957,-0.2428211,-0.019055234,-0.0011848956,0.45342147,0.12021364,0.2845897,0.0905049,-0.042400688,0.18935302,0.7548617,0.24661668,0.35365862,-0.08164437,-0.24375711,0.12399435,-0.025200963,0.24175225,-0.22927201,-0.42872894,-0.10784401,-0.078276284,0.12310438,0.39929944,0.08730088,0.2963125,-0.15799195,-0.27149615,-0.020589726,0.12795146,0.18102665,-1.3114604,0.21043625,0.2297549,0.8988018,0.49773204,0.012113496,0.04042194,0.636753,-0.31612554,0.01256505,0.46779624,-0.06529912,-0.4483209,0.43093818,-0.72201514,0.3308075,-0.032538317,0.072522976,0.037773106,0.0667314,0.4102679,0.76525545,-0.17850485,0.18492809,-0.026914645,-0.3774876,-0.05521522,-0.16866858,0.19127339,-0.5336114,-0.3820855,0.7239151,0.5508018,0.50850976,-0.28772467,0.012994905,0.13293739,-0.12988582,0.27302313,0.103903264,0.12438156,0.036104854,-0.6119845,0.07417473,0.45285404,-0.13531087,-0.016602032,0.0897078,-0.23818961,0.27521002,-0.0550574,-0.031981107,-0.0044759456,-0.5840924,-0.13955876,-0.39527008,-0.18296644,0.26195478,-0.099050894,9.880867e-05,0.09717405,0.09415117,-0.22261569,0.13371886,-0.04896494,0.8238809,0.08279079,-0.19688725,-0.3623116,0.25799397,0.19022228,-0.11006665,0.0815047,-0.24836041,0.11329652,-0.5945345,0.4148292,0.05995092,-0.18309581,0.07252453,-0.088875696,0.06985544,0.38983315,-0.055013314,-0.24836959,0.106108725,0.055692326,-0.41285276,-0.14809567,-0.15565684,0.25171748,0.3743215,-0.020005211,-0.24430615,-0.08796014,-0.091919586,0.5419651,0.105630554,0.44806153,0.47092676,0.021780593,-0.48326063,0.027722334,0.1969339,0.5212637,-0.05960764,-0.15027691,-0.36293888,-0.36772135,-0.37603748,0.4097911,-0.16971782,0.24318172,0.10982333,-0.13979214,0.7135991,-0.01588607,1.2023253,-0.0900987,-0.34006813,0.050608505,0.41685215,-0.14201644,-0.12643258,-0.47708946,0.7920028,0.51461256,0.099206455,-0.041177202,-0.47050345,-0.07021649,0.017178014,-0.1677994,-0.13418347,-0.15295674,-0.71016216,-0.3032821,0.19968772,0.2576397,0.02119995,-0.09250912,0.14234719,0.3155439,0.12503006,0.19470158,-0.4184608,-0.34863022,0.3029941,0.29487872,-0.06392901,0.1530159,-0.5074428,0.24061498,-0.5261814,-0.06496943,-0.11105405,0.07682745,-0.20229712,-0.25201604,0.20487681,-0.010742199,0.30400115,-0.47529754,-0.37746632,-0.22117317,0.45319164,-0.07839978,0.073240265,0.4734382,-0.18937066,0.083309814,0.12122731,0.40824276,0.9472949,-0.45260882,0.17495655,0.346485,-0.3886662,-0.59214246,0.20012811,-0.3085007,0.15977904,0.058291323,-0.22235633,-0.619797,0.3116194,0.10944076,0.105075404,-0.1333864,-0.64021707,0.10336629,0.37524506,-0.27249962,-0.1341774,-0.16142182,0.047058694,0.413807,-0.16550142,-0.38491493,0.068440706,0.30572766,-0.18622038,-0.3431316,0.011354972,-0.4314769,0.28605473,0.12001549,-0.35628182,-0.25649017,-0.050162084,-0.45670182,0.16595824,0.3476014,-0.28572685,0.061209284,-0.31116557,0.11120304,0.7952568,-0.16991572,0.23591049,-0.44723687,-0.42992747,-0.7983623,-0.33588877,0.09307186,0.3478317,-0.12674367,-0.69424725,0.03932268,-0.16578177,-0.37612927,-0.109295085,-0.30219638,0.5592111,0.1868155,0.27674627,-0.20542657,-0.7320837,0.27027252,0.18579713,-0.15246055,-0.35853276,0.44065383,-0.041574836,0.9730109,0.09233238,0.11529893,0.10344262,-0.501805,-0.1340878,-0.13511986,-0.04562427,-0.6363111,-0.07240813,85 -37,0.51340634,0.031369865,-0.5147417,-0.25399318,-0.3918769,0.08303189,-0.19596274,0.18219104,0.37742522,-0.18401237,-0.10019727,-0.12723036,0.06862428,0.29400274,-0.02837506,-0.77104694,0.02108325,0.1910463,-0.83721346,0.53779966,-0.5094853,0.35391837,0.050993014,0.55727285,0.1136626,0.28402758,0.014576538,0.019846804,-0.016429394,0.1155504,-0.07038914,0.5134722,-0.75132096,0.14611636,-0.07905078,-0.23574258,-0.23273124,-0.42945454,-0.2593819,-0.64281243,0.36324698,-0.8087671,0.57917076,0.031437088,-0.48024434,0.0620091,0.09783078,0.26515877,-0.39091188,0.059706815,0.1784555,-0.41808736,-0.03301411,-0.12991062,-0.25346768,-0.4466482,-0.6723703,0.03699386,-0.63057935,-0.12558696,-0.2823295,0.26521674,-0.30156252,0.035371773,-0.31262907,0.40550676,-0.3224947,0.10769741,0.3621149,-0.22630456,0.06804845,-0.22256981,-0.12277262,-0.11895889,0.3483163,0.007965915,-0.45387644,0.20829585,0.26550537,0.65399224,0.13806042,-0.41101748,-0.26504982,-0.025078647,-0.08384848,0.40301916,-0.07090813,-0.17430624,-0.33772177,-0.09599739,0.16929366,0.33808678,0.090156816,-0.37197307,-0.050650224,0.09314075,-0.024051026,0.48135564,0.50020283,-0.31876814,-0.28971153,0.29123914,0.49114874,0.12187341,-0.32406744,0.13295656,0.03321054,-0.65260386,-0.20883562,0.19519505,0.04659693,0.52018785,-0.11657895,0.07911427,0.8063543,-0.05847439,-0.21093361,-0.23002917,-0.17478545,0.053375002,-0.40419763,-0.04347888,0.2953852,-0.36237103,0.095844895,-0.16314715,0.53454375,0.102091715,-0.7790461,0.3144975,-0.57738197,0.27738053,-0.09456185,0.6313972,1.056843,0.35333484,0.33755904,0.85047275,-0.47123036,0.18752351,-0.0006487947,-0.40866724,0.15806088,-0.22426534,0.29564822,-0.4465145,-0.053596426,-0.01643896,-0.16835068,0.069745705,0.31196955,-0.5008515,-0.12653597,0.10236891,0.72623736,-0.3750512,-0.13397673,0.9616392,0.95919955,0.92355835,0.08523014,1.2886094,0.43333134,-0.15498886,0.16078536,-0.26090083,-0.68535,0.09190629,0.24753365,0.10346574,0.37313226,0.12398621,0.20887984,0.4921211,-0.29227078,-0.010818023,0.066470474,0.123163395,0.03749114,0.010166146,-0.456048,-0.07405749,0.091537654,0.15239286,0.062059708,0.26921612,-0.060329616,0.4072827,0.02632337,1.6261849,0.13022283,0.09439023,0.021213196,0.34279883,0.3047279,-0.2577554,-0.16021512,0.36932275,0.40680656,-0.009443298,-0.4779479,0.033761993,-0.2110498,-0.26923132,-0.21356913,-0.4592834,0.014659379,-0.29133946,-0.5459257,-0.19477817,-0.002026111,-0.3531142,0.476175,-2.6327672,-0.26238492,-0.064465016,0.36896044,-0.05156164,-0.333857,-0.3615405,-0.52054334,0.207239,0.3748628,0.3031629,-0.69086796,0.40370154,0.25731426,-0.40241438,-0.089303695,-0.7164858,-0.023573719,-0.07747762,0.36545852,-0.107651934,-0.01592394,-0.06875802,0.42058614,0.6543965,0.033883095,0.0093279965,0.23504975,0.5115883,-0.13228859,0.64297205,0.17072675,0.5045201,-0.11859402,-0.22239202,0.32005784,-0.33350086,0.3612552,0.070489325,0.04989611,0.47452587,-0.4186504,-0.8062243,-0.54070675,-0.17491199,0.9451275,-0.45310023,-0.31265602,0.3166775,-0.44721216,-0.24276768,0.044989213,0.5953323,-0.047417194,0.099470034,-0.75298125,0.014448099,-0.08744468,0.23757437,-0.1200605,0.1723148,-0.32184094,0.69466037,-0.24979657,0.4178819,0.2693743,0.10465735,-0.19589056,-0.47448075,0.29773527,0.7993429,0.30901328,0.10978073,-0.18261315,-0.31790066,-0.1408586,-0.15638518,0.14290129,0.6865788,0.58411473,-0.10297472,0.22155628,0.44392517,-0.18098678,-0.03158091,-0.12729265,-0.22130021,-0.037129622,-0.017585078,0.48668495,0.86040115,-0.17241892,0.40431923,-0.07359396,0.31210244,0.008390484,-0.6245127,0.5639414,1.0001829,-0.17041321,-0.15606847,0.53116953,0.32038736,-0.38414446,0.4144078,-0.52021766,-0.10103938,0.6481327,-0.031525478,-0.39725584,0.23911913,-0.43711585,0.04769954,-0.88069934,0.22617757,0.1186154,-0.46296695,-0.42526844,-0.13187799,-3.861787,0.2016082,-0.19873908,-0.076108746,-0.12503374,-0.26597482,0.31677765,-0.578423,-0.5704962,-0.00017171912,-0.0030567031,0.5021751,-0.22769287,0.0897446,-0.33997083,-0.2676564,-0.20378646,0.27087903,0.20596676,0.42856807,-0.10487938,-0.40511775,0.015897233,-0.24327189,-0.5396502,-0.06049222,-0.5798881,-0.56455654,-0.11890492,-0.4492307,-0.23243067,0.7119305,-0.26333433,-0.028259218,-0.43728638,-0.13236982,-0.09422109,0.29539618,0.29064816,0.3305925,0.18488991,0.1888181,-0.17844243,-0.2742392,0.14833724,-0.066669375,0.22054276,0.30201274,0.0047008665,0.29303306,0.3862119,0.685496,-0.230182,0.79167527,0.44784352,0.01527093,0.28551975,-0.26039904,-0.25204456,-0.83642876,-0.28588563,-0.29196715,-0.54942584,-0.37052757,-0.15674931,-0.36135685,-0.8320081,0.4906324,0.075565666,0.20744602,-0.09079054,0.3083021,0.4532878,-0.23525907,-0.027554594,-0.058600314,-0.32684872,-0.6034306,-0.33807898,-0.550172,-0.7416791,0.2039793,0.9135535,-0.15688984,-0.041215613,0.023611443,-0.24514854,0.04977432,0.18751603,0.1658925,0.27040246,0.49051085,-0.09265822,-0.5499972,0.4849552,-0.3437974,-0.15460092,-0.69207406,0.15715544,0.5747812,-0.62479985,0.78130925,0.27910113,0.23772627,0.011460908,-0.6643705,-0.34484488,-0.07254459,-0.1931465,0.6620787,0.25758302,-0.80297816,0.48013496,0.13589337,-0.10340083,-0.6416314,0.4809453,-0.19388947,-0.2562384,0.21168096,0.31157774,-0.034747332,-0.06911216,-0.012027383,0.24868503,-0.4448393,0.1769036,0.47353175,0.023269322,0.24498801,-0.016488373,-0.105762236,-0.60001963,0.055764936,-0.6115716,-0.3469165,-0.061529204,0.022918057,0.15995559,0.09255189,-0.051165543,0.4083841,-0.30888134,0.23841754,-0.14203912,-0.26235098,0.21305408,0.58270276,0.3426337,-0.54379636,0.59844077,0.14150597,-0.001377061,-0.035538673,0.20543137,0.50979567,0.11472969,0.42627764,-0.19370633,-0.04429086,0.1739282,0.6891214,0.14567044,0.38012084,0.09173219,-0.09004854,0.32142982,0.14436954,0.22982995,-0.12701137,-0.28822416,0.023215864,-0.100167684,0.33337533,0.48089236,0.17920277,0.31512427,-0.09890257,-0.21667454,0.24045308,0.099253364,-0.041025396,-1.4343108,0.31014967,0.40086037,0.79983664,0.4436268,0.100169495,-0.097942844,0.42303115,-0.38542956,0.13715215,0.39004454,-0.010991113,-0.26360965,0.5374158,-0.62641764,0.58284086,-0.1548379,-0.062453806,0.16361274,0.30370724,0.40674567,0.8772228,-0.2255598,0.09169459,0.07513563,-0.18887398,0.113135435,-0.38346335,0.013377884,-0.51755583,-0.38394392,0.6107933,0.4264472,0.34247422,-0.49337187,-0.07830666,0.023412962,-0.119537756,-0.1454245,-0.15665174,-0.073738046,-0.039079983,-0.5691789,-0.406281,0.5429398,-0.32858717,-0.031944238,-0.012128316,-0.35058022,0.1767575,-0.066100635,-0.020747937,-0.09220142,-0.78001904,-0.107629076,-0.3527881,-0.5283892,0.6122276,-0.48544556,0.22403379,0.228564,-0.002926818,-0.3556925,0.3740126,-0.110430464,0.7690125,0.013789192,-0.037863385,-0.40533537,0.15473482,0.41785836,-0.32092947,-0.13836546,-0.448736,0.17191245,-0.51038885,0.42713726,-0.12764972,-0.4222115,-0.19088188,-0.005916615,0.1358976,0.47867146,-0.2701447,-0.26409057,0.24275103,-0.14952128,-0.17629907,-0.1292792,-0.30856737,0.3458546,-0.0056111254,-0.019991808,0.14284588,-0.016420748,-0.023580492,0.38735598,0.17926012,0.35346925,0.31916428,-0.08658856,-0.21298972,0.13900699,0.0806196,0.34156123,0.10185455,-0.12642688,-0.23114261,-0.2965026,-0.38317227,0.2975533,-0.14794055,0.27825138,0.106195435,-0.42080715,0.7511525,0.2645223,1.1773028,0.11517328,-0.41872987,0.24677595,0.39522707,0.010780525,0.15855224,-0.28498784,0.8290056,0.38460252,-0.13823009,-0.23747098,-0.27002704,-0.09646862,0.21703981,-0.26631644,-0.2293932,-0.19805282,-0.7135885,-0.11548003,0.06261515,0.22919297,0.18487582,-0.086317874,-0.09057307,0.0795405,0.08141109,0.38681376,-0.4580842,-0.032644514,0.33288756,0.2862874,-0.051335774,0.2188792,-0.23418666,0.49636653,-0.48007396,0.08694856,-0.619944,0.18587717,-0.14896145,-0.3150843,0.13069059,-0.15282613,0.27401987,-0.3246302,-0.24242221,-0.36596897,0.61801267,0.27966806,0.2620808,0.7424871,-0.27772874,-0.16064349,0.20935479,0.47344857,1.2998774,-0.25241917,-0.0152471475,0.3174434,-0.22327384,-0.55859965,0.10269724,-0.36371318,0.12859905,-0.10711075,-0.42006016,-0.28922936,0.12038779,0.020981405,-0.05151988,0.10426663,-0.5732384,-0.07174809,0.40565565,-0.20195091,-0.23112851,-0.38986176,0.3081491,0.703299,-0.3597253,-0.37752095,0.12625228,0.2340063,-0.27937555,-0.48983023,0.05357468,-0.33230364,0.36817893,0.037704293,-0.4491402,0.042704653,0.18750447,-0.46719512,0.13242567,0.44781923,-0.24695626,0.14385617,-0.22189678,-0.366124,1.2231778,-0.014380977,0.14245805,-0.5677751,-0.6288173,-0.99613285,-0.41177696,0.11442784,0.20608315,0.046306733,-0.51000154,-0.10475718,-0.005680591,-0.12177518,0.14483717,-0.49253798,0.40893146,0.115191035,0.48271492,-0.083316684,-0.99237204,-0.14093436,0.08105995,-0.31671625,-0.51503825,0.5959605,-0.0857666,0.7121539,0.13665304,0.17894235,0.1406575,-0.5963039,0.23654796,-0.28703552,-0.006518852,-0.73667324,-0.027200103,109 -38,0.529624,-0.016905256,-0.49799135,-0.23126473,-0.27070266,0.35035264,-0.07267062,0.06541452,0.1669803,-0.24528944,-0.0021988004,-0.21235251,-0.018389873,0.33905208,-0.1100589,-0.7341898,-0.08951886,0.092129216,-0.73301095,0.35373628,-0.40339792,0.43832844,0.06005153,0.261636,-4.708208e-05,0.39009857,0.17707816,-0.205072,-0.041987285,0.16858919,-0.11497302,0.13731974,-0.5579972,0.040739886,0.086229704,-0.11663621,0.020932319,-0.30047822,-0.2695712,-0.5479125,0.33324963,-0.6056944,0.5366896,0.009248517,-0.28902632,0.147722,-0.07450763,0.1876085,-0.3877803,0.100402646,0.20587732,-0.30505598,-0.014637165,-0.14745393,-0.27075398,-0.56258094,-0.54485726,0.019643713,-0.6602575,-0.207633,-0.25088003,0.18827194,-0.33313903,-0.060579643,-0.15920982,0.41871452,-0.34781688,0.0821352,0.34798455,-0.2641259,0.04587546,-0.2361317,-0.12985201,-0.1282119,0.33161923,-0.07729132,-0.16779537,0.15971012,0.25334048,0.58132297,0.060662594,-0.33114147,-0.17812023,-0.018508852,0.05008991,0.4525688,-0.1271899,-0.22584704,-0.19283076,-0.07694906,-0.06739712,0.07603863,-0.008808553,-0.40129122,0.010261919,0.12134853,-0.18518755,0.3796512,0.50937897,-0.39191958,-0.26048228,0.35523966,0.55567765,0.100635394,-0.18070902,0.15031482,0.0073602237,-0.482,-0.25221592,0.30120793,-0.05492829,0.51377964,-0.10542594,0.23916732,0.74442166,-0.14881757,-0.0335225,-0.22620295,-0.22470577,-0.043858353,-0.065475546,-0.013767071,0.056169145,-0.3805318,0.011253936,-0.22525707,0.7670102,0.16788502,-0.8045722,0.36059093,-0.52225906,0.17015164,-0.15827543,0.67052,0.8970587,0.23155284,0.06601658,0.8367559,-0.57522666,0.096889,-0.06257847,-0.5249874,0.09378028,-0.07570773,-0.022790298,-0.5578577,-0.012772031,0.055683836,-0.07374498,-0.10420582,0.22339763,-0.49862513,-0.067677975,0.006443072,0.6875905,-0.46223348,-0.22004029,0.6038867,0.91209173,0.8026477,0.110196404,1.1272588,0.4427359,-0.28411108,0.20722489,-0.6110646,-0.51327425,0.13943376,0.3030659,0.321649,0.5187125,0.079557404,0.08738653,0.45239234,-0.11355251,0.17619032,0.04122337,0.10776773,0.06134257,-0.08620094,-0.30504295,-0.13259868,0.07549029,0.009893874,0.1793355,0.24736422,-0.24853209,0.3759166,0.16813178,1.5308039,0.06725018,0.13270926,-0.095291376,0.302928,0.16709161,-0.11472459,-0.1389985,0.4416665,0.3628637,-0.003573738,-0.5966541,0.007770937,-0.25470498,-0.39236078,-0.18570244,-0.40068886,-0.09055845,-0.16578352,-0.42944103,-0.01953599,0.18906625,-0.37834418,0.49559504,-2.5591404,-0.1435469,-0.11351184,0.23585913,-0.25955716,-0.34995425,-0.20151298,-0.4337608,0.034728486,0.42687225,0.24556127,-0.6272781,0.48932934,0.2722091,-0.2597047,-0.16418688,-0.63323724,-0.053962704,-0.09733205,0.2950891,-0.12192565,-0.015883116,-0.115067616,0.32266286,0.5012731,-0.110777244,-0.21532874,0.176501,0.5877575,0.05210498,0.48372787,0.16758628,0.5403888,-0.1640144,-0.16726133,0.32009912,-0.3387305,0.24867278,0.15567291,0.12413629,0.19448414,-0.39763504,-0.8222352,-0.5281048,-0.35008228,1.1987801,-0.38446593,-0.21054155,0.21644713,-0.038942162,-0.22254707,-0.027805358,0.46333125,-0.026955348,-0.09390745,-0.65171075,0.109297246,-0.10917226,0.15796983,-0.07882751,0.16224787,-0.21237652,0.58839613,-0.14112191,0.42924538,0.23911478,0.26446274,-0.017571859,-0.48894835,0.25833395,0.81719744,0.225669,0.10130252,-0.13374203,-0.2276389,-0.13636988,-0.103241585,0.16610743,0.4549713,0.7278181,0.10609101,0.15422033,0.36212525,-0.17467663,0.038619496,-0.121275544,-0.3223197,0.044913564,-0.06319415,0.5889113,0.50830203,-0.23122889,0.47539574,0.02764016,0.14942661,-0.18024586,-0.4406448,0.62719893,0.70956933,-0.1305054,-0.1693054,0.3462991,0.3569413,-0.49628308,0.3015883,-0.56154126,-0.11215614,0.75309104,-0.1754311,-0.33080104,0.23654252,-0.26975226,-0.018117387,-0.9726572,0.29707533,0.1257531,-0.3152323,-0.34336856,-0.20319043,-3.9321141,0.15139246,-0.26127905,-0.08199049,0.071814105,0.029052451,0.24613367,-0.545969,-0.36581543,0.054619387,-0.029492563,0.47658598,-0.06494165,0.2112758,-0.291739,-0.07911375,-0.1995751,0.28840998,0.077980354,0.31280857,-0.051337548,-0.3500531,0.15039042,-0.3420344,-0.49137756,0.0036246479,-0.38201672,-0.54090333,-0.099393055,-0.5188471,-0.17637807,0.77202636,-0.33993468,-0.072226465,-0.33838055,0.056868672,-0.15510768,0.4439438,0.18867204,0.13870932,0.15174255,0.028347895,-0.2126469,-0.4189797,0.217669,0.13026841,0.36685663,0.35795105,0.00040769763,0.21122368,0.59221065,0.6242827,0.02667861,0.573477,0.3805483,-0.13291286,0.4017784,-0.35792315,-0.05860465,-0.6866267,-0.4369772,-0.26217833,-0.41989988,-0.6492093,-0.27523172,-0.25630438,-0.67114997,0.32436883,-0.035494484,0.14559837,-0.08419981,0.27517968,0.3986227,-0.17849493,0.03978266,-0.11252056,-0.28577223,-0.35850772,-0.4197036,-0.48078924,-0.5183672,0.29971874,0.97345555,-0.1382316,-0.09742982,-0.16239782,-0.32669696,-0.08898237,-0.07634879,0.34457988,0.3059823,0.19134744,-0.29328898,-0.6250718,0.46910375,-0.28881052,-0.037911035,-0.6395905,-0.110734686,0.64382845,-0.5767983,0.5603073,0.14834993,0.22583091,0.18776241,-0.4756761,-0.27793735,0.17417069,-0.24467999,0.45621112,-0.0003022477,-0.5734997,0.43319753,0.17235465,-0.06002848,-0.5529283,0.5072259,0.054206006,-0.21823668,0.14573842,0.3395141,0.023073915,-0.121627904,-0.13649946,0.15720236,-0.57364285,0.19330084,0.3718003,0.05034624,0.30767524,0.044955064,-0.20255017,-0.49897882,0.06464225,-0.54397285,-0.30493438,0.030376118,0.1887291,0.31833696,0.101645045,0.018876731,0.43861288,-0.3311448,0.049917772,-0.033030733,-0.23499095,0.2987659,0.46265763,0.28352535,-0.5469109,0.5622189,0.08399238,0.11356567,0.031985253,0.080972224,0.56102973,0.25740322,0.2516634,0.010137102,-0.14766695,0.2445972,0.57503456,0.1975107,0.4364694,0.19136265,-0.27154505,0.32957834,0.17609513,0.064236104,-0.08535774,-0.18420629,-0.0911077,0.15579727,0.31826195,0.4300357,0.05148509,0.34775472,-0.14204356,-0.2061151,0.26628605,0.2210123,-0.21153384,-1.0337484,0.27225468,0.4150039,0.65346724,0.3760607,-0.045052372,0.064805046,0.45442164,-0.45839167,0.14849073,0.34512907,-0.07651637,-0.56655025,0.55050373,-0.49501133,0.5411753,-0.22590643,-0.07264617,0.06384671,0.1321446,0.20618793,1.0131708,-0.06821449,-0.021388266,-0.05829545,-0.2185765,0.032450538,-0.33826643,0.22620478,-0.5709683,-0.24580503,0.56213665,0.38094613,0.27049577,-0.3002388,0.02477885,0.03184417,-0.10893977,0.121602446,-0.1287779,-0.028605971,-0.12443039,-0.70354474,-0.5608754,0.548515,-0.18151027,-0.00036301464,0.052509643,-0.34462392,0.2091918,-0.21041702,-0.019836228,-0.12792033,-0.5955182,-0.016978778,-0.2379663,-0.6198788,0.4246419,-0.30793464,0.3352374,0.17309895,-0.0103880735,-0.44293556,0.31150222,0.14528501,0.7199789,0.068183176,-0.09504913,-0.47738495,0.08232771,0.3322615,-0.27591032,-0.210807,-0.30566943,0.08361827,-0.44971454,0.42427188,-0.10307031,-0.37440035,-0.14530735,-0.14441986,0.009774378,0.43948066,-0.2821159,-0.078261815,0.04903289,-0.033553574,-0.19164744,0.19185269,-0.35265118,0.31685275,0.00714143,-0.1336468,0.021015089,-0.041724674,-0.030792892,0.23844889,0.20586982,0.21611883,0.38820747,-0.039961874,-0.40209818,-0.102367096,0.01591589,0.26164278,0.18220598,-0.057830364,-0.28400034,-0.31710067,-0.28003022,0.33091092,-0.18356779,0.160042,0.09859037,-0.5325334,0.66249275,0.08144536,1.2084689,0.1706422,-0.22875199,0.16498983,0.46292692,0.2209818,0.21158594,-0.48964444,0.7499537,0.5778175,-0.049238153,-0.40736324,-0.25845912,-0.20722565,0.26180273,-0.24806663,-0.20461446,-0.06320117,-0.7089825,-0.22733282,0.1792056,0.108589925,0.13626117,0.1329996,-0.1542723,0.08220285,0.1459122,0.4975777,-0.50613296,-0.16203976,0.3421501,0.12402106,0.023914468,0.26981777,-0.30267465,0.4600029,-0.6364448,0.10868369,-0.45878908,0.08202718,-0.022747623,-0.17900406,0.19018957,0.053514466,0.35436776,-0.19543704,-0.32959965,-0.25509655,0.6561099,0.22389828,0.3213029,0.7624602,-0.22347337,-0.107180476,0.12586407,0.40954003,1.2392414,-0.037273765,0.030140772,0.4029301,-0.29080173,-0.64941484,0.21676138,-0.30125427,0.14792573,-0.14228287,-0.3284822,-0.26659942,0.32818526,0.03164328,-0.013050996,0.11944935,-0.5199355,-0.3266838,0.47021788,-0.28464866,-0.26137415,-0.22568402,0.39053118,0.8145775,-0.46120796,-0.24906248,0.10457486,0.28600535,-0.24431534,-0.51809406,0.12917417,-0.35003287,0.3523405,0.121213466,-0.2899248,0.098478675,0.17565507,-0.38367796,0.24631473,0.45685366,-0.39891517,0.037330512,-0.051697895,-0.2809777,0.91675764,0.08286926,0.0044254214,-0.6701215,-0.46846417,-1.0200611,-0.56540775,0.2677169,0.15083703,-0.1304051,-0.48490122,-0.07656465,0.038199108,-0.07590415,0.13417107,-0.5630209,0.34798163,0.13248932,0.4802321,-0.027423918,-0.89657414,-0.13021415,0.08151014,-0.33441123,-0.7288115,0.58167285,-0.23965524,0.66104454,-0.017332762,0.03987781,0.20961721,-0.4920558,0.18771274,-0.40708023,-0.15917759,-0.739905,0.08824521,147 -39,0.28451508,0.14148071,-0.68616754,-0.24763343,-0.21935385,0.15626904,-0.20026207,0.37084794,0.26368877,-0.4445745,0.103018716,-0.063232444,0.001726443,0.39452562,-0.20542923,-0.56103086,0.23804505,0.113328665,-0.6819397,0.427674,-0.34917986,0.24229154,-0.07725991,0.37278074,0.21742523,0.2514214,0.06973131,-0.056968898,-0.07454921,-0.037245035,-0.12467993,0.3268997,-0.27387637,0.07307491,-0.19951853,-0.28538528,-0.046923988,-0.24694069,-0.34236795,-0.621109,0.17775607,-0.5435227,0.54901046,-0.06442274,-0.21528575,0.23816991,0.21266815,0.18932487,-0.068532854,-0.13632613,0.12077531,-0.20273098,-0.15719838,-0.082419686,-0.54469097,-0.51926225,-0.647859,0.05762159,-0.7474973,-0.006887719,-0.29078102,0.116413936,-0.27919972,-0.11059021,-0.0022267643,0.406411,-0.29385978,0.038886327,0.0220761,-0.100016035,0.17373055,-0.6082951,-0.23563865,0.042018585,0.3315956,-0.20441896,-0.32717815,0.3539287,0.33982122,0.3895126,-0.115223795,-0.16790283,-0.43513793,-0.041475542,0.020209726,0.5454947,-0.27297214,-0.36060488,-0.021319177,0.094302975,0.2863403,0.28139353,0.077566236,-0.29258448,-0.09020059,0.018406615,-0.19378187,0.58629245,0.53560424,-0.30381596,-0.12051849,0.45379525,0.49673483,0.17955042,-0.29457107,0.18745506,-0.13107397,-0.5798417,-0.15862632,-0.016593307,-0.06843139,0.44077468,-0.10255062,0.2566249,0.58788675,-0.026454676,-0.14430541,0.14538318,0.072090425,-0.05921992,-0.0965913,-0.08469579,0.092477314,-0.5142145,0.15402989,-0.19835606,0.5754788,0.099403314,-0.99562985,0.31114733,-0.4931901,0.079078935,0.04548613,0.41781437,0.8515892,0.36766738,0.074250184,0.6747798,-0.3469067,0.0866714,0.06672439,-0.3583971,0.027738903,-0.07086515,-0.036935396,-0.67719764,-0.06344851,0.0059573054,-0.116967484,0.3339536,0.40041423,-0.45009497,-0.2122339,0.22766823,0.74371374,-0.30936387,-0.23254596,0.684499,1.0385286,0.9266406,0.060443632,0.9697716,0.108816035,-0.17245035,0.22323585,-0.25555223,-0.6700307,0.27325848,0.29426497,-0.33818433,0.3439706,-0.004419038,0.11190996,0.29412213,-0.3563064,-0.07582927,-0.06719121,0.19198248,0.065118454,-0.07138983,-0.20552336,-0.3678003,0.07115378,-0.014193647,0.1345507,0.22888157,-0.22439548,0.38569212,0.1541512,1.4521768,0.06117428,0.008795824,0.023905376,0.45854574,0.27139166,-0.20501451,-0.2586199,0.37238765,0.4099533,0.0084453765,-0.38504055,0.012482436,-0.3227836,-0.32206166,-0.14819047,-0.3808752,-0.22625652,-0.046942886,-0.415978,-0.11821389,-0.10075112,-0.5812452,0.53123766,-2.9320707,-0.14334187,-0.10782224,0.28381193,-0.078316145,-0.33649665,-0.27667207,-0.47208232,0.36453462,0.26281708,0.32944334,-0.4708796,0.36709845,0.4864021,-0.4770673,-0.13993944,-0.6934669,-0.07510716,-0.03832973,0.22778477,0.0040579997,-0.031808328,0.16876172,0.35045803,0.37448242,-0.17307442,0.04065315,0.3242529,0.25684798,0.03765608,0.39069915,-0.13246366,0.62863696,-0.24994808,-0.13211343,0.2363148,-0.4896808,0.11752325,0.0073470958,0.15206964,0.5366386,-0.3520586,-0.89284396,-0.430533,-0.048665375,1.1425154,-0.26794764,-0.16097052,0.4246779,-0.348177,-0.42000598,-0.052633017,0.46760195,-0.070984036,-0.06978494,-0.6719965,-0.08173303,-0.062785484,0.08103433,-0.19333777,0.042713307,-0.3290498,0.5675962,-0.05444309,0.56352055,0.22126488,0.2882756,-0.37430194,-0.39093104,0.040769935,0.7543702,0.26892495,0.075770974,-0.123603195,-0.19586805,-0.46646363,-0.08450793,0.26092184,0.54025203,0.53700805,-0.07412167,0.08937588,0.25818315,0.039500546,0.04101277,-0.22921108,-0.24231553,-0.06300019,0.020886011,0.5053187,0.49468684,-0.058614366,0.49810117,0.043393902,0.13455904,-0.29514444,-0.44367412,0.4820813,0.8072116,-0.21869466,-0.40606853,0.5268884,0.29720277,-0.16591232,0.3665615,-0.57175905,-0.28024885,0.59343296,-0.17339852,-0.2728893,0.1692618,-0.2194145,0.14106356,-0.74337804,0.18557535,-0.10880586,-0.604478,-0.37350217,-0.14040461,-2.941369,0.01398761,-0.13928723,-0.27015954,-0.12557857,-0.09448802,0.21655062,-0.5396952,-0.48116243,0.1339909,0.11278914,0.6666142,-0.10125382,-0.05089663,-0.11360434,-0.43035606,-0.4260069,0.16087756,0.0064051077,0.39759693,0.0035050362,-0.22225064,-0.01747547,-0.22173044,-0.4222333,0.06691968,-0.38967586,-0.26776955,-0.14197588,-0.5211274,-0.3074892,0.72555315,-0.4664595,-0.00428929,-0.30964017,-0.032565974,0.032423317,0.20830132,0.16216393,0.07763076,0.11911207,-0.026409376,0.016527316,-0.39092067,0.1940454,-0.08600842,0.244369,0.37983736,0.12291124,0.30592382,0.580546,0.7292687,-0.18814436,0.9117582,0.4370553,0.03158754,0.30283743,-0.26680633,-0.28702366,-0.42880368,-0.28291178,0.006968174,-0.3907592,-0.31031302,-0.13663606,-0.37062258,-0.6513629,0.39796156,0.050264686,0.17983608,-0.07618575,0.28405812,0.396703,-0.23917377,-0.028571924,-0.09291153,-0.20993945,-0.3627596,-0.3115403,-0.6717735,-0.411515,0.1422123,0.9974536,-0.2533902,-0.0813809,0.06844891,-0.2938157,0.25902227,0.20092621,0.18046159,0.36837107,0.23866606,-0.22702855,-0.61415446,0.379622,-0.4089852,-0.17427091,-0.6638785,0.05781199,0.5943589,-0.46486768,0.54407954,0.2882144,0.11240977,-0.19958714,-0.5754652,-0.0015194863,-0.0056707487,-0.23203626,0.3909374,0.13194251,-0.91931254,0.45569372,0.22780974,-0.21052313,-0.5814239,0.5401882,-0.0019185133,-0.07996741,-0.06363563,0.38460052,0.05380176,-0.036578577,-0.1658337,0.037878476,-0.28278396,0.27227616,0.3141415,0.049179703,0.3712488,-0.29594147,-0.03577099,-0.64207816,-0.09135981,-0.5204614,-0.23086143,0.2247726,0.0992756,0.308609,0.039245926,-0.21339133,0.2730006,-0.3301425,0.1777674,-0.10104832,-0.2497398,0.260954,0.41369018,0.43460888,-0.32558453,0.6033442,-0.019991,-0.12410866,0.016553216,0.046084516,0.52691764,0.022898361,0.3482845,0.100786805,-0.27581382,0.21814984,0.7785113,0.2284382,0.22823939,0.0007906109,-0.22876415,-0.015260644,0.03227854,0.098098755,-0.0008277893,-0.5267933,-0.13087541,-0.24555135,0.20705399,0.5020794,-0.032572612,0.25156087,-0.04297192,-0.21737619,0.04971762,0.11253591,-0.081366,-1.5021564,0.3529334,0.3047544,0.7995237,0.3095712,0.18445109,-0.11085953,0.5938836,-0.14778769,0.23388773,0.26878625,-0.105601035,-0.32594866,0.46158233,-0.73311216,0.5988461,0.09525858,-0.01760543,0.09778633,-0.022521786,0.3665825,0.9515904,-0.22438566,0.10447484,0.08966109,-0.29834136,0.25768742,-0.3267456,0.038141146,-0.5301262,-0.31766066,0.5524747,0.37027752,0.42346328,-0.18745798,-0.031015657,0.04871428,-0.1301634,-0.025448823,-0.05260484,0.13883582,-0.2632534,-0.48101604,-0.16937913,0.38691574,-0.04011508,0.17582467,0.35915983,-0.17859867,0.37352064,-0.01982136,0.20447038,-0.06387094,-0.5588846,-0.01766378,-0.10820429,-0.43641585,0.4684978,-0.31804293,0.3479083,0.3285015,0.033765726,-0.2586203,0.4436333,0.2422495,0.70933753,-0.14133358,-0.057359703,-0.2843313,0.16577105,0.16464724,-0.11700025,-0.09787329,-0.3687646,0.021786094,-0.53339255,0.2664287,-0.1284669,-0.33866292,-0.1017566,-0.00061382353,0.17950355,0.51437104,-0.0891403,-0.09838252,-0.06961776,0.04870464,-0.21038271,-0.14373003,-0.091007285,0.2971491,0.052795064,-0.11421236,-0.18088941,-0.0952181,-0.049244635,0.1206889,-0.03817991,0.42273793,0.39224777,0.22391413,-0.24716188,-0.0037879944,0.20200706,0.4381561,0.05980477,-0.09812748,-0.24862942,-0.14934695,-0.2859219,0.20939565,-0.14963384,0.22573213,0.11721309,-0.2542493,0.553687,-0.1698522,1.085482,0.048282724,-0.2760932,0.06451538,0.48121718,0.055279426,0.028634682,-0.24909155,0.78108704,0.44535995,-0.014217004,-0.20564225,-0.3378206,-0.039166585,0.20174213,-0.19427998,-0.18306586,0.040829837,-0.59680295,-0.2568531,0.14581922,0.038101934,0.31024992,-0.20507002,-0.11078064,0.2955554,0.048780352,0.27341092,-0.46181443,-0.06499219,0.24476324,0.16150945,-0.04363822,0.15390232,-0.4486246,0.29484016,-0.4182114,-0.02785704,-0.08170883,0.23114786,-0.17043796,-0.18598634,0.22317758,0.023908675,0.29024914,-0.08345252,-0.2432908,-0.17944485,0.44246402,0.13995646,0.16634008,0.58072066,-0.19172165,-0.029857058,0.071369015,0.36557695,0.9589029,-0.23254432,-0.043593094,0.40763664,-0.23676287,-0.59330744,0.16940916,-0.51699847,0.24852866,-0.02240134,-0.15881732,-0.15185423,0.18609644,0.14045815,0.1609332,0.039503608,-0.540884,-0.21458356,0.26557344,-0.23254287,-0.14920087,-0.35675904,-0.13873972,0.50556374,-0.31949297,-0.29021934,0.11554171,0.1897172,-0.0016815029,-0.6772715,0.24414676,-0.2844623,0.32398513,0.11850602,-0.36405998,-0.104204684,0.021490753,-0.3806534,0.29645866,0.10873066,-0.30460042,0.04223177,-0.19681731,-0.06760362,0.91405606,-0.2868312,0.24516878,-0.31902865,-0.54834104,-0.78139466,-0.3279513,0.07333541,0.10321967,-0.052957743,-0.62958634,-0.0026481636,-0.05773934,-0.14487462,0.028649405,-0.20830032,0.4306072,0.103291534,0.34830105,-0.080979764,-0.9497475,0.10099157,-0.026573451,-0.24052313,-0.54353756,0.5734148,0.03217005,0.7094698,0.18445109,0.18957527,0.19412583,-0.34336945,0.2025502,-0.25178364,0.017261498,-0.46258843,-0.008840218,153 -40,0.461215,0.0055605024,-0.49027207,-0.12481381,-0.23001638,0.088598534,-0.40340257,0.38803548,0.18748686,-0.47494024,0.07220159,0.061663583,-0.014450991,0.35423514,-0.35761958,-0.52846956,0.14790633,0.08594297,-0.5107253,0.54171485,-0.34591156,0.28791696,-0.051966563,0.40139198,0.077102914,0.31622624,0.22249955,0.0019990727,-0.055876844,-0.30461857,-0.07171753,0.15783468,-0.53847563,0.20764229,-0.29652023,-0.22671747,-0.054394666,-0.42475322,-0.36758777,-0.6493199,0.12858707,-0.6097897,0.6938538,0.018055797,-0.29397807,0.19482344,0.16885188,0.2342905,0.02918461,-0.056940556,0.14319362,-0.29420477,-0.20507959,-0.2580159,-0.3173694,-0.4953485,-0.546713,0.05460766,-0.571173,0.06308415,-0.23384446,0.23921195,-0.20655814,-0.024771139,-0.024295427,0.5367365,-0.26609945,0.047073103,-0.053315155,-0.18089554,0.23297837,-0.6010169,-0.2676076,0.1029006,0.28710073,-0.13378878,-0.19441843,0.3082216,0.15539452,0.49372283,-0.058161914,-0.22604261,-0.37594894,-0.044301413,0.049026966,0.60615236,-0.24985075,-0.3154624,-0.18689474,-0.115855895,0.42406082,0.17063296,-0.0052896813,-0.4249668,-0.08778638,-0.1738285,-0.18451917,0.46196395,0.5794126,-0.19297603,0.11086699,0.36550438,0.3069939,0.07078442,-0.18776071,0.13609271,-0.121284425,-0.45238099,-0.14311154,-0.029461298,-0.1464977,0.47249258,-0.0645252,0.35845298,0.4803487,0.009221643,-0.12856957,0.15660739,0.1289973,0.1121241,-0.17896622,-0.26097217,0.22651,-0.6118009,0.05290245,-0.17112763,0.6595916,0.058936108,-0.98187846,0.3953691,-0.47638637,-0.020155512,0.117785156,0.41038048,0.6560335,0.5559405,0.08880861,0.7529259,-0.46046197,0.122742824,0.03610878,-0.29453114,-0.02301985,-0.16980228,-0.028126441,-0.5171869,-0.0029635932,0.11184895,-0.07543782,0.16111997,0.4095857,-0.4248361,-0.09818874,0.2636002,0.68608975,-0.22024857,0.016850585,0.830329,1.1233023,0.9242915,0.15070458,0.96695423,0.042623702,-0.12810284,-0.106817804,-0.0057824478,-0.6260047,0.3083899,0.3581661,-0.060750484,0.35607314,0.084176846,-0.035345454,0.23235977,-0.34178346,-0.3198924,-0.083955415,0.27729347,0.0592661,-0.11540061,-0.38505915,-0.30138987,0.15607712,-0.077977344,0.14556515,0.24133357,-0.2166961,0.4388338,0.2836121,1.2591617,-0.06396006,0.13667567,0.21075305,0.36976025,0.3143893,-0.1727637,-0.1912901,0.24818888,0.28897387,0.18232775,-0.43859175,-0.04176671,-0.24419384,-0.5335931,-0.1816072,-0.20112303,-0.28140378,-0.04058276,-0.41474557,-0.2575692,-0.07829158,-0.4475846,0.4805798,-2.8786287,-0.103126466,-0.14204372,0.37841833,-0.09226794,-0.3899881,-0.16887721,-0.44461757,0.5879971,0.3274891,0.39181313,-0.5471904,0.2589252,0.5649334,-0.4261679,-0.20278941,-0.54792845,-0.053423535,0.034188606,0.38124627,0.10398161,-0.29344448,0.11021835,0.24372335,0.4910189,-0.15860945,0.18360204,0.25290886,0.30342576,-0.07166024,0.3003899,-0.08572467,0.52026063,-0.4087203,-0.18991008,0.3409757,-0.41942278,0.027255202,-0.13015443,0.13995871,0.53468645,-0.44713452,-0.76238525,-0.52686435,-0.09028271,1.1309017,-0.13254362,-0.49184537,0.22001399,-0.1387473,-0.48562112,0.078841366,0.35791957,-0.21706176,0.11772084,-0.68149453,-0.048415605,-0.15041578,0.15324047,-0.092060134,0.06683062,-0.46152475,0.61649966,-0.10064764,0.62676346,0.40344822,0.28666347,-0.35771826,-0.4225461,0.019121157,0.8830461,0.48566943,0.15859959,-0.15814225,-0.1113701,-0.15176961,-0.27865967,0.07657747,0.6357499,0.61970633,-0.08878747,0.07777631,0.27247006,0.1096128,0.16554391,-0.18316144,-0.35068476,-0.13968855,0.05338967,0.619308,0.6077983,-0.06603173,0.2936589,-0.00042080972,0.2895816,-0.18276945,-0.40712315,0.47203797,0.7558744,-0.1575978,-0.39301935,0.6011203,0.36009267,-0.08162261,0.43891695,-0.59721625,-0.5747599,0.44505486,-0.06287373,-0.43681258,0.2874081,-0.25679788,0.20992629,-0.6388793,0.40005428,-0.2773594,-0.5926572,-0.4619745,-0.22442901,-2.8760195,0.1195357,-0.16989553,-0.16804364,-0.21350467,-0.23012792,0.22003703,-0.56351066,-0.5923691,0.11279637,0.025181673,0.6537365,-0.13451752,0.06869084,-0.16321614,-0.45817515,-0.35710943,0.20312902,0.08571464,0.35340804,0.06752148,-0.23053625,-0.117848516,-0.22461572,-0.42201185,0.04030681,-0.5841911,-0.44141418,-0.16156694,-0.4790116,-0.283464,0.65972716,-0.43130583,0.072870985,-0.36515394,-0.04808816,-0.10438751,0.25284088,0.08352959,0.15089087,0.124462985,-0.027106397,0.0338292,-0.33655673,0.19655791,-0.027120491,0.12492269,0.5057918,-0.107706204,0.15826336,0.4122495,0.7334489,-0.28239813,0.8971015,0.32459202,0.010661991,0.3264964,-0.21826673,-0.4142541,-0.46556404,-0.31494543,0.13275263,-0.36951023,-0.3034837,-0.1025557,-0.3461375,-0.7129144,0.5538503,-0.020120889,0.15045306,-0.10351948,0.19716722,0.266002,-0.26939934,-0.18200986,-0.020972107,-0.15019396,-0.39370143,-0.37571707,-0.65764195,-0.44568092,-0.09275987,0.9475087,-0.066933244,-0.03643801,0.2650271,-0.10490282,0.13430464,0.11304818,0.19283387,0.17457557,0.3311418,0.057967726,-0.73836833,0.40552303,-0.30740535,-0.22093122,-0.46992934,0.17872995,0.67335844,-0.5270494,0.4360773,0.49699652,0.20670307,-0.25784516,-0.61264753,-0.056566317,0.054622494,-0.20126756,0.55325484,0.25867406,-0.87146956,0.6021573,0.2823521,-0.29144648,-0.7078275,0.41636539,0.13101494,-0.076785356,0.018062837,0.43989214,-0.016561564,-0.10393414,0.03914208,0.14962167,-0.32647172,0.36848032,0.21493536,0.0060575604,0.4372763,-0.25848305,-0.13781382,-0.7026447,-0.110521205,-0.49341595,-0.34526467,0.10650478,-0.022804076,0.025555491,0.037277747,-0.15523085,0.44348267,-0.42252684,0.17029643,-0.17811218,-0.26511872,0.2637245,0.50373447,0.48753378,-0.24950713,0.5489863,0.0069030076,-0.022279762,-0.16093835,-0.010617018,0.47510582,0.1436137,0.28238633,-0.09528702,0.040590327,0.13290213,0.65672106,0.25780585,0.29898834,0.03581939,-0.26300567,0.15237606,0.07982001,0.16378754,-0.047453366,-0.4929269,-0.025438666,-0.29558122,0.07930196,0.5097193,0.0338073,0.33862603,-0.1853686,-0.14128521,0.050803136,0.19601001,-0.13045591,-1.6823537,0.41929603,0.2045429,0.7571254,0.4126302,0.13226189,-0.064563096,0.74656427,-0.05971707,0.046710953,0.26118624,0.13383694,-0.18964216,0.45403346,-0.72266793,0.3681982,-0.027711209,-0.016159125,0.09927784,-0.02299475,0.36355957,0.79297227,-0.15460852,0.110971615,0.042384293,-0.24756952,0.081122845,-0.36724472,0.07301877,-0.24197939,-0.28639352,0.7757262,0.3247375,0.3622863,-0.23425564,0.0031746335,0.10439362,-0.14047348,0.17245422,0.04374798,0.05738561,-0.18876745,-0.44023877,-0.096057855,0.5591279,0.04326675,0.10782876,0.20351346,-0.18933041,0.25124872,-0.017515115,0.13340925,0.04720982,-0.6483666,-0.0020228904,-0.35730228,-0.35718834,0.3614485,-0.16198486,0.20118691,0.25209397,0.1383332,-0.23356129,0.20803417,0.31353116,0.68293554,-0.034757502,-0.072111115,-0.13183254,-0.027466653,0.21595411,-0.22305804,-0.059449814,-0.43056068,0.093034506,-0.5631409,0.22803465,-0.084556535,-0.18458243,0.23819116,-0.028582849,0.12809202,0.47763607,-0.14306358,-0.12746455,0.05087648,0.10224417,-0.17622799,-0.32436204,-0.21973628,0.10449594,0.16139475,-0.09386093,-0.03266557,-0.11063138,-0.2563708,0.21783192,0.032748807,0.42032152,0.40915182,0.18585053,-0.3186341,0.15958029,0.05207544,0.5694254,0.15147462,-0.07709649,-0.16953057,-0.41946557,-0.23500124,0.1940633,-0.14281999,0.07782637,0.19105159,-0.19084525,0.6832473,-0.06172827,0.97080564,-0.022196982,-0.3323593,-0.031228414,0.4083091,-0.08763066,0.05038792,-0.27961713,0.9789452,0.5149599,-0.039430946,-0.07221113,-0.30329582,-0.104628876,0.12864208,-0.30472022,-0.12572883,-0.022983385,-0.5276004,-0.22542723,0.102666155,0.15040386,0.05449661,-0.14447048,-0.11400059,0.3093156,0.14461799,0.2622509,-0.5239035,0.08478476,0.37474102,0.19274412,-0.041865215,0.12773056,-0.46362323,0.30081567,-0.3958412,0.034885023,-0.3969278,0.056649655,-0.1832674,-0.24525115,0.17174101,-0.051200807,0.4041458,-0.23579955,-0.36893255,-0.13525176,0.35142204,0.13250951,0.12570968,0.51811165,-0.13518181,0.007268451,0.009317674,0.46802324,0.93141466,-0.34456176,0.08058385,0.4102552,-0.24977756,-0.5465688,0.00037063845,-0.50071466,0.1011217,-0.064989954,-0.17551044,-0.30667013,0.13494575,0.21393707,0.16413465,-0.02256209,-0.6155392,-0.18442088,0.41373774,-0.23400632,-0.1771115,-0.19080564,-0.0013719238,0.58731484,-0.2715718,-0.3265406,0.0145061165,0.24982536,-0.14303213,-0.6779033,0.1510978,-0.33606246,0.27833128,0.2820742,-0.29287112,-0.19354245,-0.029166933,-0.48000985,0.16287477,0.23992363,-0.3019353,0.015544337,-0.30213267,-0.046466462,0.72703683,-0.18511629,0.36898082,-0.4562468,-0.5129887,-0.82226306,-0.3578544,-0.018672764,0.2004716,0.11487543,-0.6798891,-0.14342044,-0.24563876,-0.13312441,-0.024050586,-0.36664534,0.39547783,0.1871248,0.52243346,-0.234862,-0.84949625,0.19953483,0.1503737,-0.13184908,-0.5104841,0.45088452,0.10107021,0.71553695,0.1620543,0.045084354,0.116280764,-0.62277293,0.1969398,-0.19675061,-0.10162543,-0.60227287,0.11968541,165 -41,0.39385068,-0.10714157,-0.38174176,-0.18121745,-0.24782827,-0.026306152,-0.25581583,0.31797,0.24197473,-0.20239575,-0.16503923,-0.052001797,0.124351524,0.36083138,-0.12134214,-0.7407823,-0.13956493,0.11925669,-0.5841744,0.50770736,-0.6311511,0.3760209,0.033385016,0.30691347,0.09478666,0.45450547,0.18691094,-0.08514642,0.053549826,-0.016140714,-0.16777962,0.38737538,-0.66336733,0.064810924,-0.09565315,-0.22720656,0.09854467,-0.43822598,-0.32604367,-0.68966997,0.10159208,-0.7734106,0.40710846,-0.1633124,-0.05284271,0.08582597,0.09894709,0.3426873,-0.40199637,0.07622319,0.17975864,-0.14223903,-0.12445974,-0.25537482,0.058062218,-0.3599195,-0.407929,-0.0752228,-0.51374555,-0.35381916,-0.22405711,0.11938601,-0.31611174,-0.030496262,-0.17176588,0.35608572,-0.40707442,0.06217155,0.38307962,-0.11753957,0.13150783,-0.52297986,0.07984224,-0.057621002,0.45698738,0.017288785,-0.13539186,0.39245096,0.29773927,0.37273696,0.26300538,-0.26162377,-0.13425067,-0.21625915,0.2153914,0.30096662,-0.077322535,-0.33455166,-0.16581222,0.09744208,0.11597777,0.338429,-0.020105703,-0.23268862,-0.12946221,-0.040219367,-0.34511262,0.53670347,0.53730094,-0.22231674,-0.35854694,0.29119366,0.51294816,0.3120085,-0.23918933,-0.028066859,0.02184045,-0.5022637,-0.17445989,0.07047701,-0.07484721,0.45693004,-0.18911497,0.13992497,0.85005236,-0.16534919,0.11784926,-0.13172892,-0.038865082,-0.08432665,-0.42633757,-0.08821714,0.023418015,-0.5326915,0.034137644,-0.18566093,0.75171053,0.15714991,-0.73710704,0.3897433,-0.5917036,0.13736692,-0.17616884,0.6258497,0.6855547,0.32274473,0.3456524,0.7292323,-0.33081022,0.19008036,-0.07142848,-0.5328164,0.10694036,-0.16423456,0.05840662,-0.452693,0.102142796,-0.17715597,0.16994691,0.005621871,0.21717392,-0.47842512,-0.15805823,0.13304377,0.80712897,-0.31480166,-0.101893276,0.5696721,1.0612018,0.8503853,0.04302743,1.178949,0.2974527,-0.15651754,0.1572234,-0.3411916,-0.717598,0.17156988,0.40859514,0.044502705,0.2419962,-0.032057233,0.03139061,0.30450982,-0.3101594,-0.05542825,0.00034837332,0.46809483,0.20492181,-0.15912779,-0.40589148,-0.17076986,-0.03186962,-0.1096801,0.1410526,0.23681456,-0.15646577,0.19579698,-0.014759788,1.4719542,0.046247065,0.055457313,0.08480126,0.6404851,0.4259497,-0.21559563,0.011036009,0.56659806,0.49157628,-0.043488264,-0.5848693,0.27564222,-0.30672935,-0.35102504,-0.12774572,-0.48602945,-0.006283015,0.16312581,-0.42289537,-0.01115229,-0.005908631,-0.040973436,0.44944072,-2.9292006,-0.24933973,-0.034466058,0.3635193,-0.3090964,-0.14695437,-0.011341587,-0.52529347,0.2735739,0.2755708,0.4789806,-0.5622092,0.58537406,0.56646234,-0.40625447,-0.13470662,-0.687235,-0.10000391,-0.060573846,0.52479243,-0.017849617,0.03879441,-0.1643309,0.10560919,0.56121683,0.021991696,0.10547607,0.44127542,0.3437656,0.16918866,0.6509329,-0.114090696,0.5496292,-0.19286548,-0.13711888,0.3028025,-0.23069933,0.27025366,-0.12511346,0.102207124,0.6182723,-0.29998186,-0.86912227,-0.49882483,-0.37715846,0.9846837,-0.44985116,-0.44783407,0.2723828,-0.18338102,-0.12383454,0.060218897,0.47428173,-0.09757383,-0.016395941,-0.61433756,0.29628706,-0.06356315,0.13291892,0.033869848,-0.076715566,-0.24923919,0.6618887,0.010907082,0.57626754,0.21380371,0.26049393,-0.08345345,-0.28612256,0.009338841,0.7392998,0.2707021,-0.024704115,-0.18953449,-0.3593313,-0.11419824,-0.060963638,-0.008263819,0.5444619,0.64019704,-0.07714319,0.14838041,0.34457794,-0.022402102,-0.016549187,-0.14524242,-0.20063463,0.03950972,-0.022252144,0.3977962,0.68669915,-0.2294994,0.37710458,-0.20521443,0.26114517,-0.09434654,-0.5676359,0.6786626,0.43350628,-0.18288621,-0.011424188,0.39152962,0.46766064,-0.3532009,0.42036763,-0.5886933,-0.05465384,0.7161277,-0.1660716,-0.2727749,0.17414548,-0.15567417,-0.02134446,-0.7632346,0.2582992,-0.3210749,-0.2633533,-0.38397002,-0.176822,-3.638474,0.13341998,-0.050371576,-0.104522385,-0.30659565,0.042272314,0.2992432,-0.59598655,-0.49258482,0.15403424,0.16976616,0.52812886,-0.060956568,0.087040484,-0.29236788,-0.13490504,-0.15730208,0.15096419,0.030959923,0.36374146,-0.13819714,-0.42362663,-0.10863258,-0.0019648997,-0.5395345,0.264501,-0.5004159,-0.36401004,-0.08091943,-0.44945335,-0.14671774,0.57024735,-0.34399647,-0.0041866517,-0.23434347,0.04837533,-0.32598993,0.118336596,0.14056756,0.26089737,0.124978185,-0.033352274,-0.007137336,-0.37769598,0.3440182,-0.00379794,0.44193622,0.08316855,0.15748657,-0.019316364,0.41295052,0.45898968,-0.15701741,0.9865588,0.33183596,-0.13436541,0.2888837,-0.28326467,-0.26626897,-0.5994781,-0.38652068,-0.16896151,-0.37899452,-0.47656277,-0.061481524,-0.30368656,-0.7073276,0.5370367,0.040093645,0.33788517,0.013277678,0.26587784,0.42448798,-0.12920043,0.049204655,0.055785812,-0.18703018,-0.5696207,-0.2476333,-0.6616583,-0.39811805,0.1614135,0.5842054,-0.35926828,-0.07309313,-0.35301,-0.22424597,-0.07396396,-0.033952944,0.14022318,0.41273025,0.38697818,-0.039420534,-0.5679,0.48369434,-0.16394672,-0.096733816,-0.47628137,-0.030981354,0.6407105,-0.6846578,0.6346964,0.23174429,-0.0112088695,0.03859146,-0.55264044,-0.305588,0.005284246,-0.23747046,0.5221475,0.12255695,-0.9522178,0.53488714,0.17601866,-0.38810727,-0.69220644,0.3847247,-0.08771902,-0.3008663,-0.06604268,0.20616384,0.21325299,0.047272965,-0.22847506,0.2832656,-0.43380412,0.17804018,0.23206127,-0.11901116,0.3119435,-0.07427871,-0.15574399,-0.6496553,-0.06407824,-0.4498516,-0.2023184,0.24923462,-0.10685015,-0.035081223,0.095934354,0.15935278,0.3057553,-0.21521631,0.2126407,0.18496911,-0.27222466,0.30921426,0.47476506,0.37849048,-0.3455287,0.4381624,0.15143046,-0.15171573,0.18389279,0.20304525,0.3607036,-0.01120634,0.3198046,-0.1316557,-0.086001545,0.35738423,0.82677966,0.18145998,0.47562003,0.003446333,-0.17629471,0.51627916,-0.003446971,0.13837662,0.10034998,-0.47080043,-0.051475663,0.06904213,0.24544024,0.5689274,0.32325447,0.23260711,0.09199186,-0.20381086,0.029619023,0.2990749,-0.051880702,-1.0698454,0.39074033,0.2783187,0.8894993,0.37207055,0.045935094,-0.12276353,0.60839933,-0.20793585,0.2257141,0.45446438,-0.049424827,-0.51834196,0.73786354,-0.5343477,0.37166658,-0.10888487,-0.056154273,0.17726928,0.10787493,0.40709198,0.73841727,-0.24881813,0.043173894,0.029002966,-0.16656516,0.107969865,-0.34215605,-0.0009904262,-0.32865766,-0.33633548,0.5498065,0.42888713,0.23221049,-0.30343905,-0.04296803,0.1264384,-0.11320316,-0.0057161823,-0.074487045,-0.110198855,0.17879252,-0.4383604,-0.30082893,0.59656596,-0.12139099,0.1347172,-0.2527741,-0.21350949,0.19833171,-0.15105437,-0.09332726,-0.025505017,-0.6459791,0.035701364,-0.13680431,-0.4940435,0.47103938,-0.24900545,0.097238526,0.12198035,-0.023731466,-0.19969511,0.3693343,0.09560068,0.67274344,-0.18890724,-0.1929138,-0.37649757,-0.015474647,0.1960327,-0.24769014,0.06279299,-0.5396287,-0.05050318,-0.5130922,0.4019824,-0.11329107,-0.35170615,0.15401708,-0.17430755,-0.003514655,0.55696493,0.03743184,-0.17042914,-0.06937273,-0.1795292,-0.38840792,-0.095307,-0.22667557,0.3176,0.30494893,-0.082595356,-0.10440011,-0.28782585,-0.11765044,0.50342834,0.05234071,0.40992558,0.10546024,0.022085473,0.0016430151,-0.10988026,0.2877504,0.3634001,0.0971439,0.00060646236,-0.24854635,-0.30449924,-0.3098219,0.1806862,-0.12762704,0.26691407,0.05559051,-0.4169096,0.8350407,0.005611576,1.0657437,0.032514058,-0.3335838,0.10440986,0.4059052,-0.0762108,0.08408756,-0.33349216,0.79039717,0.46086523,-0.015747644,-0.0051769763,-0.47325355,-0.1132069,0.23568681,-0.27518162,-0.021940913,-0.032234777,-0.50023973,-0.2822032,0.27302247,0.22606802,0.06764852,-0.052539162,-0.18642485,0.07038021,0.1555348,0.40848854,-0.5444143,-0.23700267,0.11623593,0.13768412,-0.04301214,0.097393,-0.4569815,0.47097808,-0.61854863,0.15964073,-0.44736677,0.20120162,-0.28257528,-0.21210639,0.16343905,-0.16049536,0.40157086,-0.33430728,-0.4844693,-0.2185291,0.33815745,0.07259747,0.17660408,0.5564069,-0.19499828,0.11392373,0.13175032,0.571385,1.117706,-0.37681365,-0.01762602,0.2684644,-0.46177202,-0.65996945,0.22793959,-0.31589904,-0.05731357,-0.053513184,-0.3994097,-0.3242572,0.15529476,0.030962396,0.13915214,0.09682813,-0.5418559,-0.18244156,0.3454087,-0.28072882,-0.2164483,-0.14576471,0.27518636,0.8665583,-0.31113183,-0.39360443,0.06632649,0.20156825,-0.2547205,-0.438413,-0.18581122,-0.16355199,0.3178021,0.02660647,-0.19273254,-0.06591134,0.22261228,-0.4193833,0.17808592,0.21857858,-0.38386247,0.09956224,-0.04101146,-0.1280671,0.9764198,-0.28811577,-0.08461932,-0.6595442,-0.5890075,-0.81555223,-0.5236862,0.29798114,0.17391449,0.012809802,-0.33527127,0.12368486,-0.06796552,-0.12641388,0.034867294,-0.5441429,0.33737445,0.10647033,0.36894602,-0.16432966,-0.9830928,-0.009915493,0.06506132,-0.22087848,-0.731144,0.70224786,-0.2730068,0.79021,0.013748303,0.012061663,-0.06272748,-0.25369778,0.07088229,-0.3763544,-0.13922353,-0.7387499,0.19242509,178 -42,0.35817567,-0.17785287,-0.42248315,-0.016908497,-0.285657,0.06024191,-0.13162598,0.35851687,0.17644435,-0.41868913,-0.06361689,-0.06950402,-0.048446983,0.39309064,-0.16672413,-0.5338766,-0.17511334,0.23600413,-0.42434123,0.6174956,-0.4762839,0.3388472,0.089615494,0.28604177,0.111315474,0.19553371,0.13569655,-0.08823971,-0.10834398,-0.08405718,-0.104481876,0.38976997,-0.47244674,0.07819105,-0.12053841,-0.26739368,0.05174359,-0.49186128,-0.43734536,-0.62725985,0.35755086,-0.74111897,0.4401228,0.16003495,-0.22264725,0.253052,0.027603805,0.19953133,-0.1133802,0.06690637,0.2122379,-0.021694988,-0.029141456,-0.12814218,-0.21668558,-0.15844655,-0.46529216,0.09905158,-0.49961078,-0.18623415,-0.17667855,0.21133849,-0.24425735,-0.03835657,-0.17651463,0.34910163,-0.47619325,0.0068757385,0.113983706,-0.13008587,0.37479156,-0.57312226,-0.13021067,-0.039947562,0.07255863,-0.23702407,-0.18369462,0.2911742,0.18850678,0.47990125,-0.11725109,-0.18327418,-0.28765598,0.107701026,0.12550874,0.5533584,-0.33134294,-0.21920595,-0.14206602,0.2115368,0.23619634,0.16955078,-0.08588297,-0.46090013,-0.075404994,-0.032120436,-0.055643365,0.34599772,0.5276399,-0.2143142,-0.12447295,0.4345733,0.33394063,0.234447,0.007946137,-0.020035315,-0.11550432,-0.4409774,-0.062242344,0.0925746,-0.15251474,0.42635325,-0.060427707,0.06852825,0.46934927,-0.054773103,0.0042638183,-0.15322065,-0.018446822,0.041312777,-0.15336058,-0.16874981,0.25005943,-0.3497754,0.15385336,-0.043079317,0.5843113,0.1125579,-0.75221026,0.31732634,-0.44808313,0.1820937,-0.18507619,0.47979194,0.65353763,0.31725428,0.18404481,0.76202357,-0.4403985,0.14025128,-0.17683975,-0.3143247,0.1394996,-0.07161803,-0.17996007,-0.54303783,0.012789737,-0.17626835,-0.26702267,0.09212581,0.23236626,-0.6054598,0.05332219,0.11647104,0.6713653,-0.31583816,0.08697364,0.6023941,0.92213327,0.83110154,0.021072892,1.0059283,0.22858758,-0.1419227,0.22740775,-0.29280895,-0.6657968,0.19803686,0.50231624,-0.09302476,0.2093913,0.18023589,-0.05280914,0.25331077,-0.32730776,-0.19795099,-0.33579773,0.22580379,0.001964949,-0.0081007555,-0.47190166,-0.17751063,-0.07558266,0.14762591,-0.132896,0.20720874,-0.34418485,-0.017945468,-0.022315606,1.8180904,-0.15530738,0.10143921,0.14837769,0.21771848,0.26539314,-0.10378152,-0.04257884,0.4058566,0.26719657,0.12128091,-0.53458405,0.06935098,-0.2680647,-0.506172,-0.06928533,-0.12505625,0.026354171,0.11051137,-0.49275988,-0.00030644238,0.056220613,-0.36407822,0.4740075,-2.7259915,-0.12877059,-0.12746665,0.36844608,-0.29561415,-0.40621608,-0.13599372,-0.2511199,0.4267815,0.4096649,0.47008696,-0.58970064,0.14915667,0.24253488,-0.519881,-0.097927645,-0.45536494,-0.11942804,-0.039632037,0.38654274,-0.0050248653,-0.03173269,0.08400318,0.104233,0.43284887,-0.13544999,0.061776757,0.2948983,0.37794152,0.0841687,0.40520525,-0.1278891,0.44774023,-0.17673184,-0.27850294,0.4045306,-0.1686036,0.25799048,0.046854727,0.13035989,0.30374128,-0.58413637,-0.8477564,-0.5314053,-0.3798002,1.2835166,-0.20536798,-0.42498007,0.2749291,-0.1913827,-0.21483627,-0.012102647,0.31600848,-0.08118096,-0.12741184,-0.85375947,0.14956364,-0.14649858,0.32943937,0.037714086,-0.0009878222,-0.32543305,0.5535442,-0.09254065,0.4149744,0.45133197,0.29482388,-0.031824358,-0.44812632,-0.033495847,0.8553742,0.480004,0.09811781,-0.16959733,-0.1452648,-0.07567866,0.055997845,0.18219209,0.41747478,0.70347404,-0.07637825,-0.019279974,0.30083093,0.049090486,-0.0041714404,-0.13469991,-0.2972603,0.0037528872,0.01051769,0.5202635,0.5548497,-0.15023576,0.40192485,0.0083514415,0.24750301,-0.011936955,-0.4025392,0.31048387,1.1641113,-0.10439159,-0.19837524,0.5196841,0.37490392,-0.16875154,0.34284413,-0.60493267,-0.18494192,0.29015425,-0.2143325,-0.37888125,0.25499684,-0.27824146,0.037388656,-0.7665267,0.35809493,-0.16487277,-0.32135063,-0.55153537,-0.056898646,-3.1182158,0.15803991,-0.31735724,-0.21235669,-0.0037433207,-0.10666348,0.22216427,-0.6050803,-0.5476142,0.06457654,0.03136523,0.43507618,-0.04831866,0.1510416,-0.08138813,-0.1909627,-0.097085446,0.2115792,0.16366349,0.34052953,-0.06818077,-0.4024667,-0.26209924,-0.12231949,-0.37705874,0.14504063,-0.542092,-0.46261638,-0.16242777,-0.5647459,-0.0744213,0.54229915,-0.21385567,-0.025361504,-0.1731007,-0.05162651,0.007580828,0.2055158,0.21487306,0.29639882,0.14697464,-0.000419572,-0.10110904,-0.25585845,0.24692656,0.18053475,0.095212236,0.41001433,-0.14545724,0.14188376,0.4425999,0.59378153,-0.40403855,0.6685548,0.71497655,-0.23718765,0.15978147,-0.30412143,-0.18725806,-0.6023437,-0.43001068,-0.22329019,-0.36911625,-0.36338657,-0.13711062,-0.35990256,-0.69546103,0.6112591,-0.14373639,0.22310305,0.11673484,0.20782968,0.5436396,-0.14578447,-0.024570342,-0.039048,-0.15808398,-0.5401964,-0.33175066,-0.47452566,-0.39943635,0.10402532,1.0479841,-0.16965199,0.093086705,0.08933702,-0.1112282,-0.07578353,-0.24381047,-0.026691908,0.2272161,0.29087135,0.03778319,-0.57433206,0.41508767,0.05956527,-0.18045889,-0.5112606,0.31315616,0.6066793,-0.4815538,0.4684455,0.2703796,0.16592652,-0.015641594,-0.70837146,-0.18917117,0.1470131,-0.24309412,0.48142558,0.20230368,-0.645603,0.4164986,0.408934,-0.36101547,-0.74787134,0.421304,0.05682522,-0.38040748,-0.028230034,0.24931282,0.079453595,0.0014269948,-0.04224827,0.28695408,-0.25896358,0.29393494,0.25461793,-0.13868102,0.24125805,-0.27750283,-0.20616636,-0.70347714,0.20076498,-0.31008458,-0.31118825,0.2178314,0.12712349,-0.029681262,0.013678558,-0.011918686,0.51039577,-0.28006536,0.12996149,-0.093187325,-0.1798816,0.38623846,0.5085258,0.43188265,-0.3182015,0.47488692,-0.046711173,-0.20175545,-0.23263925,0.05610361,0.5147871,0.005639598,-0.017891195,-0.1712973,-0.16003661,0.2583712,0.698937,0.0987022,0.2602805,-0.046787612,-0.21133173,0.29576743,0.07648165,0.08800937,-0.15654083,-0.5514436,0.08180339,0.037073523,0.16749984,0.4651844,0.22390051,0.17004353,-0.21723863,-0.2981006,0.04389549,0.18795416,0.15874512,-0.965682,0.249915,-0.015786178,0.6777558,0.5596114,0.051392652,0.10530317,0.50220525,-0.23354436,0.037267983,0.3701393,-0.17757083,-0.4297055,0.3355843,-0.7040255,0.28703928,0.03435351,0.050543662,0.0989787,0.13258994,0.3743459,0.64783275,-0.13904089,0.035327815,-0.08195874,-0.17324968,-0.09106937,-0.20958881,-0.0391315,-0.4195198,-0.5240466,0.5077949,0.37466252,0.32393777,-0.23821804,0.0058459695,0.04719732,-0.16993353,0.21778305,0.09474824,0.046678863,0.033812985,-0.4863428,-0.24178548,0.59097016,0.12448138,0.027399998,-0.2068164,-0.055397987,0.23850974,-0.13077597,-0.19484505,0.007476546,-0.6234672,-0.098735124,-0.4537959,-0.23851001,0.28529054,-0.18010822,0.1952965,0.011139078,-0.028665371,-0.31519935,0.3967263,0.18827637,0.9493249,-0.010265827,-0.18720707,-0.3276656,0.28308272,0.10885949,-0.01834502,-0.03787354,-0.21888272,-0.025516734,-0.6576484,0.43404722,-0.050635442,-0.26489776,0.19307593,-0.07299316,0.08007369,0.45217898,-0.11986384,-0.217583,-0.15353154,-0.13503978,-0.35170865,-0.27668908,-0.114815414,0.15207404,0.22951575,-0.09264697,-0.03672822,-0.09510188,-0.16903238,0.46540475,0.10416991,0.3495468,0.18317556,0.2158809,-0.32131055,-0.030830862,0.25396436,0.37963048,-0.011917051,0.058799557,-0.089322865,-0.38877314,-0.38820314,-0.048805848,-0.18684725,0.30850795,0.18180238,-0.25492373,0.70548517,0.12596633,1.1816319,-0.0917195,-0.21614113,-0.0054179914,0.40058398,-0.014681539,0.0019373875,-0.31553152,0.85335684,0.72344077,0.156567,-0.09862722,-0.26766413,-0.2097184,0.16478622,-0.21533093,0.008554585,0.023327818,-0.5877422,-0.3863889,0.22532773,0.21508937,-0.0037227161,-0.12433381,-0.06984091,0.07862497,0.037770264,0.24398287,-0.30749518,-0.10796358,0.29576012,0.30601394,0.057176434,0.17614806,-0.48929375,0.39931154,-0.42667097,0.11398712,-0.29152587,0.20712301,-0.00952634,-0.16845231,0.11897632,-0.14127329,0.38041705,-0.31210092,-0.3314013,-0.14782694,0.53373826,-0.089405224,-0.0071446784,0.5624572,-0.23287237,0.19143632,-0.08325027,0.36386108,0.9479287,-0.37587333,0.057546094,0.33092347,-0.18939418,-0.53576714,0.27626508,-0.16715394,0.049860395,-0.12439961,-0.29987577,-0.38008937,0.1735266,0.11711289,-0.030303083,-0.17979172,-0.48797587,0.00021754764,0.37929735,-0.15798168,-0.2053145,-0.3148329,0.20059796,0.54492986,-0.30231774,-0.49973115,0.1854671,0.16683458,-0.16611725,-0.4438179,-0.09483629,-0.2840136,0.098278925,0.22220583,-0.37588423,-0.049520597,0.1854224,-0.40971002,-0.08794168,0.14479369,-0.25578085,-0.03742356,-0.16790685,-0.060669832,1.0295943,-0.21245612,0.08845119,-0.66997397,-0.49414876,-0.8978361,-0.34248346,0.5340574,0.17418282,0.20754981,-0.67411643,0.08861424,-0.14485914,-0.1894369,-0.15138464,-0.38071537,0.49048156,0.15371999,0.3438664,-0.41399804,-0.6071411,0.15552104,0.13329259,-0.17099324,-0.53595155,0.43077132,0.099017546,0.7686836,0.020732751,-0.017433774,0.24756104,-0.54464495,-0.026805907,-0.18865263,-0.25165823,-0.7755789,0.112046435,185 -43,0.5737051,-0.21451096,-0.46360934,-0.12467401,-0.5625102,0.33828792,-0.21457134,-0.036603317,0.07701948,-0.46641508,0.009440076,-0.13217995,-0.10821231,0.29287142,-0.25854594,-0.65474653,-0.11096435,0.09514109,-0.6641482,0.5434216,-0.6272699,0.39145264,0.1454919,0.23136592,0.04528401,0.14414653,0.24139789,-0.120646,-0.3599847,0.060617108,-0.1342949,0.25138378,-0.6915416,0.28992787,-0.11045148,-0.3713598,-0.02365265,-0.33394417,-0.0906939,-0.8073399,0.3191537,-0.7940539,0.47881562,-0.14601517,-0.35617536,0.096011624,0.15390992,0.17160366,-0.2841189,0.007822208,0.17761305,-0.36276883,-0.22529618,-0.17174686,-0.3503499,-0.75838524,-0.82403725,0.04580831,-0.70128685,0.004935302,-0.3321255,0.46797135,-0.28507358,0.03182163,-0.1543801,0.4602161,-0.4436642,0.08276035,0.11526758,-0.027688632,-0.13208666,-0.46950465,-0.11217901,-0.15012683,0.101759315,0.06961914,-0.07535258,0.26229596,0.4979383,0.6476022,0.26032776,-0.43393862,-0.291927,0.083908655,0.015079774,0.45497382,-0.11036372,-0.2657001,-0.27506036,-0.110819966,0.5393088,0.23600417,0.19300087,-0.2732053,0.03997825,0.035590746,-0.2243594,0.3776565,0.4186474,-0.33031347,-0.18533385,0.48259926,0.50901926,-0.18227229,-0.19151689,0.16528402,-0.029325929,-0.6463544,-0.08926031,0.42959535,-0.16407107,0.63480514,-0.22640763,0.16740379,0.7506089,-0.28168932,-0.13369553,-0.065551944,-0.24718499,-0.078864746,-0.20132895,0.023491748,0.050647102,-0.5060701,-0.11633154,-0.3540931,0.7532302,0.07655223,-0.86878717,0.30775544,-0.36094874,0.14830391,0.0023796689,0.74906594,0.8800913,0.5025007,0.31975794,0.9500352,-0.44471753,0.08225473,0.033513308,-0.34435996,0.15382524,-0.18641008,0.060818702,-0.4613448,0.1845384,-0.16183944,-0.10280697,-0.2057188,0.77102274,-0.5742365,-0.14733702,-0.15461919,0.648959,-0.4230979,-0.09809048,1.0019065,0.85753804,0.9301723,0.17613538,1.5134861,0.57246876,-0.088488355,0.010036631,-0.3942307,-0.4904172,0.24643607,0.23995517,-0.20708,0.39691144,0.057854533,0.03868382,0.4388647,-0.4360024,-0.08139321,-0.22199711,0.23383966,-0.023225829,0.04382725,-0.4653207,-0.22455302,0.17576581,0.0008703247,0.23745693,0.35173708,-0.34039772,0.6114048,0.3236794,1.2105983,-0.16743132,0.043185305,-0.04684656,0.12790796,0.020758718,-0.11547713,-0.027781658,0.06898372,0.4439792,-0.25229532,-0.60347116,-0.06975798,-0.28473532,-0.4089465,-0.37254757,-0.27012646,-0.1346095,-0.20531969,-0.39528042,-0.35946393,0.06670306,-0.46439883,0.42270303,-2.0748553,-0.2811218,-0.29967046,0.36986828,-0.056748334,-0.43006712,-0.14881295,-0.6176939,0.26455003,0.2774519,0.22556435,-0.73163164,0.44068643,0.30826274,-0.42944154,-0.103925474,-0.81970346,0.053317323,-0.16781956,0.33235714,-0.087855,-0.24674074,-0.23298626,0.10967809,0.6556413,0.019469187,0.16608861,0.28998038,0.6030078,0.053204928,0.5147809,0.38940644,0.6999771,-0.18697824,-0.23805355,0.5613748,-0.39715979,0.33061427,0.21611002,0.20293348,0.4599148,-0.50822806,-0.8047796,-0.67040193,-0.36115888,1.0661013,-0.3496134,-0.37083834,0.09590727,-0.003029585,-0.15496352,0.0100634545,0.48413253,-0.15513977,-0.018705275,-0.81799996,-0.09476051,0.12260311,0.18696102,-0.14150393,0.13510461,-0.26551515,0.6879569,-0.3297728,0.259663,0.3997853,0.2756459,-0.3127026,-0.5322791,0.21022475,1.0539149,0.46256799,0.13964063,-0.16548713,-0.56129146,-0.24071014,-0.19782893,0.0973529,0.41354835,0.7647945,0.11467311,0.04477749,0.30099553,-0.20451611,0.14970148,-0.2439411,-0.26559857,-0.21589118,0.07982062,0.4428142,0.4155838,-0.13398485,0.4577076,-0.28616077,0.18654962,-0.027984139,-0.53999156,0.58613926,1.0571164,-0.15758829,-0.30575812,0.57799256,0.33898118,-0.3652513,0.47756356,-0.59029245,-0.22880852,0.6374498,-0.023676546,-0.34837708,-0.07956906,-0.48681712,0.27320528,-0.89737964,0.41354385,-0.1131984,-0.4300202,-0.6503571,-0.15972678,-2.8110747,0.22010265,-0.28318465,-0.029930413,-0.12980324,-0.34341544,0.31843686,-0.47943482,-0.4851914,-0.07640745,-0.034466643,0.46150076,0.04598551,0.089938626,-0.27188855,-0.20911266,-0.26027814,0.16559117,0.25013247,0.28972813,-0.09406812,-0.34727985,0.31615466,-0.51967424,-0.4002301,-0.048832774,-0.7209496,-0.74041724,-0.18560311,-0.4809563,-0.39405844,0.7766597,-0.3492316,-0.19145739,-0.3201156,0.15903307,-0.07794095,0.35396257,0.16843523,0.035521798,0.13538264,-0.15244523,-0.13517343,-0.36623582,0.22394995,-0.009646092,0.17543183,0.65033174,-0.15841845,0.32623634,0.4442829,0.6568956,0.045075208,0.7845867,0.2512933,-0.1296033,0.20086087,-0.052725192,-0.26640028,-0.88190335,-0.39136153,-0.12021073,-0.5459377,-0.3884486,-0.09139311,-0.37987754,-0.84569716,0.52006495,-0.12957637,0.27007985,-0.1684625,0.4780622,0.44613746,-0.1082079,0.1776851,-0.3243325,-0.34357688,-0.45623854,-0.595647,-0.84865683,-0.7454766,0.08228165,1.4929883,-0.05610545,-0.1098668,0.062013432,-0.3632817,0.1946468,0.16333145,0.09316523,0.2221804,0.4948635,-0.18975943,-0.678357,0.41825926,-0.09152017,0.06208539,-0.41552475,0.045717254,0.6775921,-0.5835242,0.4786157,0.41134888,0.20619532,0.22863561,-0.5927381,-0.2346186,0.16562115,-0.25186327,0.5414662,0.28249127,-0.56295115,0.5395498,0.102347836,-0.27527308,-0.85861415,0.26350477,0.05748237,-0.028439835,0.052972943,0.49124137,0.21235311,-0.03205017,-0.29391676,0.2667791,-0.5871782,0.31210685,0.4029563,-0.20631945,0.24584296,-0.2580304,-0.3924863,-0.638129,-0.16332263,-0.5148711,-0.28265548,-0.064275116,0.02321845,0.05719696,0.048914723,0.2740165,0.4941612,-0.47068614,0.07886494,-0.058577858,-0.21316856,0.28297693,0.51589847,0.24418177,-0.37928897,0.6575788,0.02915962,-0.14596453,-0.1858559,0.04733439,0.48747444,0.2877673,0.14951481,0.21308745,-0.06024558,0.26894557,0.69563246,0.119904526,0.34895337,0.18975395,-0.39745182,0.42566866,0.1912255,0.2981402,-0.10732838,-0.29948562,-0.20837021,0.15020359,0.17469546,0.45907012,0.04148848,0.463677,-0.16081378,-0.040093645,0.2388654,0.037856273,-0.11385812,-1.1883488,0.11496421,0.21449608,0.5846597,0.37099382,-0.09955415,0.08688303,0.54259944,-0.5503278,-0.0488079,0.3968167,0.0709178,-0.32646728,0.5428862,-0.5441619,0.32400727,-0.41891605,0.14372958,0.011890195,0.17270277,0.27710786,1.0582812,-0.09988965,-0.06563277,-0.044256654,-0.07787531,0.21180448,-0.1453813,0.19288261,-0.45141804,-0.2986894,0.7375573,0.39161268,0.4492504,-0.26242453,-0.032721788,0.1270903,-0.20591266,0.23290072,-0.11243294,-0.11182205,-0.10478921,-0.6079883,-0.25123125,0.5254106,0.10906012,0.25433576,0.27440405,-0.480726,0.2092528,-0.19989288,-0.13976617,-0.08485928,-0.7015484,-0.28546172,-0.36316237,-0.4216525,0.21145545,-0.44707066,0.21131983,0.37269312,0.05965674,-0.4610927,-0.19759241,0.33353636,0.780651,0.104239285,-0.12310595,-0.22039697,0.12046889,0.39159068,-0.39021164,0.06085316,-0.13341217,0.23294559,-0.58763766,0.5406186,-0.32406798,-0.35840407,-0.033338115,-0.25676304,-0.07338031,0.581307,-0.3666216,-0.14842016,0.15385461,0.10941613,-0.22923774,-0.013245847,-0.24265066,0.3158251,0.05582148,-0.1810823,-0.042111117,-0.13789028,-0.19337139,0.46289992,0.20403978,0.24178268,0.3816013,-0.09849823,-0.5358877,0.010982215,0.06267716,0.54241943,0.10092135,-0.21879087,-0.37824693,-0.19915551,-0.23303445,0.43017012,-0.0862142,0.12991147,-0.007709572,-0.5366957,0.97886235,0.08091183,1.2767376,0.14773986,-0.43627438,-0.03419518,0.691916,0.03306301,0.18895988,-0.28462052,0.9344592,0.4769464,-0.1887713,-0.09882538,-0.5510297,-0.14270101,0.40707555,-0.27355137,-0.07248783,-0.28010535,-0.7443123,-0.31728896,0.24694778,0.17199197,-0.10495421,-0.039962806,0.10020815,0.058070537,-0.07061762,0.6596601,-0.64761436,0.007145196,0.23218328,0.13406426,-0.018477686,0.39734435,-0.29290032,0.37631994,-0.7013519,0.09259144,-0.31063968,0.18538061,0.15233617,-0.21720986,0.33031443,0.034808733,0.37200737,-0.26708603,-0.3146491,-0.42968538,0.8250485,0.30153272,0.34816808,0.9209164,-0.46316803,-0.05304327,0.17001303,0.5380683,1.5020216,-0.15834647,0.22607629,0.10809765,-0.37500462,-0.60665965,0.38540044,-0.46571139,-0.015430823,-0.15848711,-0.3841807,-0.46397784,0.31974468,0.3271352,0.105901375,0.14438799,-0.44651443,-0.17965296,0.60267395,-0.23450585,-0.0757834,-0.1198186,0.28151956,0.7363335,-0.4310183,-0.3165856,-0.12432492,0.48392427,-0.23367421,-0.6514682,-0.05106715,-0.27414313,0.51443106,0.29388952,-0.22582659,0.019910343,0.25387752,-0.43105993,0.18407123,0.42737532,-0.27351457,0.050734818,-0.26196173,-0.015817106,0.91022813,0.093231395,0.18798552,-0.6683986,-0.4318501,-0.88753295,-0.36476254,0.11538707,0.31280887,0.013050855,-0.59942836,-0.0979533,-0.15802394,-0.12585007,0.26205724,-0.77387995,0.3709411,0.05343652,0.55598,-0.037588835,-0.9068735,-0.029146098,0.041943736,-0.033642262,-0.41315952,0.5091342,0.004647389,0.6809786,0.41166204,0.15221547,-0.09267359,-0.5599934,0.4265948,-0.43495458,-0.1639463,-0.71450967,0.1262183,195 -44,0.51447713,-0.23205446,-0.5516473,-0.3378631,-0.547372,0.16047578,-0.31579185,0.026522234,0.28575715,-0.33688945,0.042828124,0.038122486,-0.14560372,0.15212928,-0.14447653,-0.6242742,-0.1928848,0.11062515,-0.83452666,0.59285665,-0.47253674,0.21289697,0.08329334,0.3568138,0.15618873,0.2388308,0.17863142,-0.0033571497,-0.19374436,-0.11301213,-0.08355078,0.33607867,-0.8569995,0.16681065,-0.22871292,-0.40302384,-0.1212143,-0.5417678,-0.19358356,-0.713608,0.25656086,-0.8605842,0.6089972,-0.19560368,-0.300662,0.05317553,0.2323827,0.23503122,-0.2589567,0.15937658,0.2520504,-0.1662298,-0.1751807,-0.09279859,-0.30020306,-0.47393912,-0.6447114,0.07141728,-0.6426145,0.038308606,-0.19155625,0.33627266,-0.28566226,0.13245517,-0.35530978,0.42363617,-0.39294058,-0.076670446,0.015826069,0.0069976673,0.019470893,-0.4511954,-0.14891607,-0.31842834,0.34239638,0.031775557,-0.30963728,0.20693249,0.27897105,0.6159078,0.11450935,-0.39899245,-0.32258135,-0.10974794,0.05276882,0.36225057,-0.077016324,-0.21561703,-0.41555902,-0.04253623,0.46888018,0.26307935,0.037321776,-0.334001,0.16072038,-0.0023173227,-0.23070164,0.6585113,0.45977283,-0.3846591,-0.28298432,0.38720262,0.40491456,0.16636892,-0.24302927,0.2132959,-0.040526837,-0.5322819,-0.26950407,0.3207028,-0.11281459,0.38939184,-0.09590705,0.22819698,0.692921,-0.20748688,-0.10556575,-0.14959517,-0.2647051,-0.09213258,-0.33029333,-0.17201833,0.1698589,-0.5642194,0.1620345,-0.24597788,0.4941265,-0.0013938807,-0.952433,0.332304,-0.61115843,0.23755929,-0.055061273,0.6918285,1.0565485,0.5730519,0.30510503,0.8025868,-0.22355625,0.12591106,-0.029036734,-0.2711567,0.01414586,-0.18059038,0.1616762,-0.51892346,0.0401145,-0.1352255,-0.032808334,-0.13001022,0.60911924,-0.4428326,-0.1997383,-0.019755758,0.6734384,-0.3332247,-0.13274682,1.1235476,1.0183005,1.2357742,0.18752378,1.3636796,0.30440485,-0.061516672,-0.08164122,-0.2592969,-0.5540215,0.21124177,0.2765203,-0.11696401,0.46626994,0.0010088915,0.09649606,0.43708473,-0.43882143,-0.024866879,-0.027905278,0.2119248,-0.039564986,-0.028658282,-0.2784024,-0.26735824,0.37985206,0.08908498,0.21562862,0.2512347,-0.28253222,0.63148755,0.22458898,1.1673033,-0.043724243,-0.010123886,-0.0013615638,0.3852982,0.2188756,-0.18709028,-0.024665006,0.3071362,0.44153142,-0.15162493,-0.55901086,0.060136724,-0.30275416,-0.23466316,-0.16927499,-0.37320563,-0.1591039,-0.3732784,-0.4606286,-0.36480176,-0.0132279135,-0.44656533,0.502241,-2.2997193,-0.3269886,-0.19118655,0.14682727,-0.18276066,-0.3677377,-0.16838121,-0.56990093,0.27632827,0.30495942,0.34832802,-0.6977013,0.62303203,0.5086449,-0.6245369,-0.035315458,-0.8043431,-0.21092318,-0.108148046,0.3904433,-0.074516445,-0.32369983,-0.24899232,0.29508254,0.59278613,0.039832048,0.15003844,0.32312512,0.5533001,-0.07917812,0.7198298,0.119921744,0.53751004,-0.21492247,-0.23244165,0.46640265,-0.3701366,0.2632817,0.03366311,0.12921052,0.60985965,-0.5830185,-0.8963014,-0.6719742,-0.3956622,1.236022,-0.35331693,-0.44957253,0.07752337,-0.2527971,-0.28569043,0.054780677,0.5514288,-0.20105231,0.002351489,-0.8461445,-0.10607651,-0.025153399,0.2802429,-0.1529178,0.15305361,-0.4739648,0.66258633,-0.08858438,0.5068183,0.26935944,0.25330025,-0.32480443,-0.4220431,0.22880176,0.9471143,0.4885075,0.0086852275,-0.3021516,-0.2553427,-0.1168904,-0.079899006,0.017439406,0.58194685,0.57521456,-0.0786369,0.12046998,0.48980016,-0.16604395,0.10831936,-0.25393096,-0.22153412,-0.1719441,0.0840718,0.6231891,0.60300624,-0.12217299,0.42773262,-0.22102278,0.23672894,-0.06400713,-0.5720937,0.57340604,0.86885417,-0.11303108,-0.21006691,0.6408771,0.4895115,-0.30179718,0.5411385,-0.62194145,-0.27237874,0.5463129,-0.017613344,-0.4359479,0.13963193,-0.42385232,0.08959683,-0.86420083,0.1581278,-0.25263122,-0.3015317,-0.57684946,-0.20227255,-3.4327054,0.034547277,-0.09374493,-0.06466968,-0.23695958,-0.42554498,0.44307286,-0.46321714,-0.7939367,0.08792331,0.0826435,0.54081225,-0.14743735,0.11481837,-0.28515503,-0.3735483,-0.42575473,0.23381227,0.24274985,0.25606817,-0.0867182,-0.4603203,0.006644888,-0.34794995,-0.47906458,-0.15539005,-0.63147426,-0.45607623,-0.07954154,-0.5613489,-0.3656768,0.63384193,-0.2699654,-0.078751154,-0.42024165,0.0053559355,-0.056810707,0.4081001,0.100140676,0.16981693,0.10855009,-0.13242668,-0.097447254,-0.22563457,0.22768044,-0.042434033,0.1994873,0.23850387,-0.08480193,0.28746486,0.4392447,0.77699995,-0.08945809,0.9190488,0.27502006,-0.168156,0.37521446,-0.115640186,-0.3204086,-0.7917459,-0.25152296,-0.111332566,-0.5777441,-0.42892408,-0.11308947,-0.39076805,-0.85407394,0.5210748,0.07187722,0.24530452,-0.21769062,0.36164925,0.39535052,-0.14812353,0.16221485,-0.19631854,-0.3040866,-0.37387258,-0.49006712,-0.77509207,-0.549202,-0.096523724,1.3921535,0.01179564,0.017532036,0.18875933,-0.3309334,0.13352795,0.261629,0.21205585,0.34760165,0.5878164,-0.054368407,-0.64777863,0.34994423,-0.21146625,0.0671093,-0.5796361,0.07706146,0.8360488,-0.65909874,0.5775176,0.3754065,0.1827661,-0.0030497424,-0.6068174,-0.12301781,0.04510431,-0.19055462,0.7675315,0.42151973,-0.77990025,0.6246711,0.13537392,-0.08354102,-0.7669742,0.5143624,0.07128834,-0.03844455,0.03142048,0.43287212,0.058192447,-0.03823141,-0.03837215,0.19546944,-0.43053603,0.37161264,0.28563634,-0.02039764,0.33628425,-0.15735653,-0.29601127,-0.64998,-0.12976682,-0.41831416,-0.35913706,0.02789193,-0.120040044,0.15075144,0.12536697,-0.037832916,0.4714175,-0.19864729,0.084194936,-0.16770057,-0.20573431,0.23453881,0.569457,0.28287327,-0.41124922,0.7110162,0.24709797,-0.14935857,-0.09340101,0.102671206,0.32130575,0.16275589,0.35797414,0.10475133,-0.20778419,0.2370843,0.62661517,0.17840019,0.30982518,0.1003471,-0.17620121,0.35279846,0.110767186,0.15886557,-0.23238362,-0.43362987,-0.21091416,-0.023002457,0.17328563,0.4562332,0.12831655,0.2686972,-0.127472,0.041767035,0.030845396,0.19733098,-0.2831624,-1.5541055,0.14793515,0.31789368,0.8321443,0.7060545,0.06171307,0.0067457594,0.55604863,-0.45428884,-0.022966899,0.4950776,0.25908372,-0.29297656,0.59481436,-0.4693096,0.475219,-0.10240177,0.10820286,0.046889216,0.11846854,0.4456253,1.0327152,-0.21517006,0.099093676,0.02301132,-0.11657789,0.2525014,-0.0992392,0.090456136,-0.39033476,-0.33684048,0.77915144,0.37806988,0.3911533,-0.37334114,-0.096081965,-0.05727032,-0.29503688,0.10022084,-0.017356958,-0.10948796,-0.12765111,-0.52303016,-0.19558758,0.51503485,-0.0921689,-0.0007432215,0.29085156,-0.474182,0.16546081,-0.027736379,0.11419518,0.010708988,-0.6917371,-0.16638467,-0.22098993,-0.41970533,0.24774893,-0.40482545,0.09915176,0.13818265,0.04033483,-0.2736681,0.027287126,0.13878885,0.6677494,0.10249039,-0.047909554,-0.14094776,0.045914337,0.20825422,-0.37167105,-0.09055059,-0.30650115,0.2608553,-0.6638739,0.521634,-0.17538181,-0.45496273,0.15430185,-0.063745335,0.021297915,0.37673175,-0.21026984,-0.19773015,0.10899383,0.10323078,-0.3649954,-0.18562534,-0.3282671,0.27627861,0.04947278,0.031645715,-0.020520808,-0.07844944,-0.10360625,0.6245146,0.09518389,0.2560044,0.46820927,0.070677675,-0.6101655,0.075982206,0.034378685,0.6663625,-0.0058760047,-0.15368457,-0.33974275,-0.18719098,-0.3069088,0.593439,-0.13454351,0.18334377,-0.08790171,-0.4860283,0.8280039,0.107675955,1.2106445,0.033281557,-0.44086057,0.03626309,0.5301333,-0.17566806,0.046403266,-0.30473414,0.9313505,0.5274105,-0.17857084,-0.2527377,-0.5344968,-0.15287952,0.115460485,-0.33970433,-0.17343333,-0.27193332,-0.71407634,-0.17176381,0.16730654,0.13908774,0.1578427,-0.00824772,0.1122722,0.16269754,0.106914625,0.5190966,-0.54050934,-0.06957501,0.26031187,0.26542988,-0.0654322,0.19369546,-0.40054458,0.25098076,-0.75272894,0.109241806,-0.44932967,0.11333207,-0.05727853,-0.2678592,0.23399088,0.119213276,0.26363057,-0.24828495,-0.35612532,-0.30750853,0.63725686,0.0057669254,0.30886388,0.9330711,-0.21667574,0.063513234,0.08922868,0.46624207,1.3349965,-0.10912211,0.032138295,0.14579709,-0.2733982,-0.5267072,0.16236177,-0.5400741,0.14084892,0.13238111,-0.40755957,-0.30759043,0.27466634,0.05773824,0.18443942,0.11809962,-0.71744263,-0.16147949,0.436626,-0.116296545,-0.11803609,-0.33905897,0.26010808,0.85137004,-0.3135205,-0.27132344,-0.103999786,0.42427635,-0.24691199,-0.7568879,-0.047282685,-0.44176945,0.5090242,0.09608192,-0.2750329,0.018297676,0.098739035,-0.55245876,0.109308414,0.46095073,-0.2966042,0.06531182,-0.32991588,-0.18914874,1.0825838,-0.13231054,0.2342422,-0.51086813,-0.5852121,-0.892531,-0.1263941,0.02483508,0.23422226,-0.024951477,-0.5215487,-0.09259215,-0.1786463,-0.14853133,0.26967487,-0.6685678,0.4757155,0.1766222,0.61888385,-0.038162045,-0.8636464,0.02611208,0.040789627,-0.05765653,-0.27657935,0.7288598,0.090391956,0.6981107,0.22951093,0.09522909,-0.122892916,-0.6335725,0.35570258,-0.33693644,-0.060360655,-0.8326634,0.06403687,196 -45,0.482038,-0.1573207,-0.53620654,-0.11606369,-0.39465335,0.16227093,-0.26317424,0.36271024,0.18234703,-0.2659361,0.08198781,0.0014600935,-0.04048779,0.33670238,-0.06204133,-0.62128323,0.050425813,0.13638127,-0.7252275,0.6226436,-0.51551145,0.45736706,0.053405568,0.19878237,0.18149623,0.35589322,0.11645786,0.04176899,0.06229563,-0.108560234,-0.15955609,0.2606288,-0.44274107,0.122323975,-0.03981146,-0.29895136,-0.09394387,-0.387119,-0.5313239,-0.65226245,0.29152074,-0.6452675,0.58836174,0.09475538,-0.39876038,0.11590497,0.1346134,0.2636369,-0.32193574,0.17864043,0.17365393,0.019765709,-0.0637802,-0.26765826,-0.28315184,-0.4334817,-0.45443103,0.09137471,-0.6101809,-0.068930015,-0.317723,0.1359224,-0.2783959,-0.052418713,-0.20422873,0.3969376,-0.46735248,0.031304218,0.07716294,-0.06286204,0.18852493,-0.5604865,0.08838971,-0.15058447,0.1389867,-0.15420467,-0.311855,0.2366179,0.17896089,0.6119314,0.013780758,-0.291827,-0.26962522,-0.10195662,-0.04720111,0.44870064,-0.23871252,-0.44157937,-0.21426192,0.06463879,0.3685174,0.21423681,-0.021087065,-0.31928876,-0.07424033,-0.16509496,-0.26180205,0.45977095,0.5447717,-0.3458649,-0.20541358,0.4944461,0.4749887,0.1989111,-0.16149153,0.21421805,0.0147238225,-0.5613785,-0.2305804,0.026650786,-0.036015674,0.44942516,-0.24264859,0.22978291,0.5906532,-0.07029087,-0.056292627,0.20285302,0.07625386,0.025256008,-0.18875453,-0.18275326,0.06847349,-0.5515415,0.058806054,-0.12780112,0.721121,0.11791819,-0.694808,0.41484004,-0.5290242,0.15329778,-0.054485068,0.56037587,0.832829,0.47210836,0.14283943,0.7528297,-0.39152503,0.1566003,-0.22255239,-0.29092997,0.06522098,-0.058537275,-0.15371674,-0.56802857,0.02849666,-0.09031225,-0.102675475,0.022608705,0.7258022,-0.46056637,-0.24557117,0.07647311,0.7570962,-0.41330242,0.020025741,0.60138726,0.9492746,0.9528017,0.023983078,1.1471863,0.25278053,-0.08981496,0.04146836,-0.29001504,-0.6257044,0.2789565,0.4230807,0.105749935,0.32468542,-0.04235028,0.024867676,0.32052612,-0.3135934,-0.0123625975,-0.20423813,0.31394696,-0.095514536,0.029462144,-0.45320255,-0.24770752,0.0066881627,0.26018086,0.05321207,0.30852908,-0.25871786,0.23433045,-0.019810634,1.6330606,-0.12874074,0.13284354,0.20164543,0.5137684,0.36564928,-0.342604,-0.17163444,0.2549159,0.3581917,0.054042615,-0.5626491,-0.032402083,-0.26647285,-0.40540746,-0.14446075,-0.32189757,-0.079962,-0.17737861,-0.5848745,-0.22682998,0.10177024,-0.5064819,0.49992073,-2.5496182,-0.20831223,-0.11546463,0.2600278,-0.24098587,-0.43300372,-0.24716029,-0.36060074,0.4470042,0.29615748,0.38269174,-0.62839735,0.35981297,0.5787756,-0.4042579,0.046534225,-0.5454692,-0.10449589,-0.018584974,0.34517726,0.04903937,-0.22615163,-0.118043154,0.3237202,0.5516466,-0.20191884,0.13467593,0.28449383,0.2944854,0.08779521,0.43261862,-0.028664373,0.4362175,-0.2580441,-0.2655365,0.44893134,-0.25428623,0.20012246,-0.15261564,0.09543655,0.44596243,-0.6551401,-0.9080077,-0.5628519,-0.07975407,1.2079875,-0.3142389,-0.47158027,0.31525323,-0.37791392,-0.3061177,0.040791072,0.4407205,-0.077410504,-0.038799986,-0.77857643,0.18252657,-0.05561669,0.22189319,0.04031299,-0.009374343,-0.2913721,0.6245554,0.053138956,0.4672264,0.30061245,0.09080616,-0.22583093,-0.38185635,0.12705907,0.9637102,0.507118,0.14808536,-0.22810204,-0.24775761,-0.21775638,0.059182547,0.12037855,0.4923606,0.67901915,-0.03696473,0.07154633,0.27190796,0.05746626,0.05905653,-0.22531058,-0.251032,0.010066325,0.050788153,0.6241563,0.56040996,-0.08188508,0.38155648,-0.113912165,0.23580116,-0.23672688,-0.5847793,0.46636617,1.0006869,-0.095700175,-0.2460989,0.61687744,0.45520595,-0.29042736,0.4014218,-0.57118845,-0.3864796,0.3364419,-0.19486111,-0.27979153,0.33559188,-0.4009719,0.17123295,-0.7242206,0.25536937,-0.15860523,-0.5463428,-0.3727369,-0.17891791,-3.3002012,0.24883601,-0.17523399,-0.043103162,-0.018965686,-0.10527951,0.30054677,-0.5015691,-0.49718738,0.029093836,0.05551507,0.7033236,0.023653843,0.13658673,-0.105358385,-0.3709792,-0.28390473,0.15981454,-0.013355317,0.40525633,-0.09342654,-0.4495569,-0.3115033,-0.12048467,-0.34888282,-0.023991704,-0.6562606,-0.42666218,-0.22301967,-0.5369469,-0.011170324,0.6084194,-0.090833604,0.069543146,-0.29351982,-0.10354461,0.061715305,0.19067508,0.14579874,0.16890971,0.0483066,-0.114446685,0.0030687153,-0.35179785,0.17547695,-0.044207618,0.17185022,0.3201788,-0.07002251,0.1004204,0.5131587,0.58162177,-0.2391244,0.9824853,0.45863622,-0.21731007,0.38682833,-0.15617894,-0.22038256,-0.54951787,-0.2784343,-0.18912122,-0.43056428,-0.16836049,0.0030653924,-0.28708735,-0.77905166,0.45902103,-0.043353513,0.15585434,-0.03331601,0.27610564,0.47787356,-0.20337851,-0.061664842,-0.13034369,-0.29790452,-0.44823423,-0.27663124,-0.6085537,-0.39130688,0.23900865,1.114079,-0.2285679,0.021237362,0.06123062,-0.115685396,-0.108501405,-0.07405221,0.20280144,0.27878484,0.3122181,-0.2600755,-0.6539655,0.3066752,-0.06320839,-0.07122864,-0.504056,0.1497127,0.73979086,-0.5058881,0.46670866,0.21588773,0.21390651,-0.10089737,-0.6827007,-0.1665899,0.07516439,-0.26125535,0.50905204,0.20985055,-0.8692529,0.552658,0.31319106,-0.22823691,-0.7438256,0.5016886,0.02614005,-0.43492085,-0.11894328,0.3328113,0.007182032,0.0014639124,-0.23707607,0.27391386,-0.31784293,0.39034683,0.18510872,-0.15640539,0.18999073,-0.28029066,-0.33475798,-0.5710976,-0.111762136,-0.4672548,-0.42642286,0.19115382,0.038954154,0.07937023,-0.030211294,-0.11771171,0.45682517,-0.29587442,0.10584912,-0.16637816,-0.26508573,0.37554696,0.42269576,0.5284317,-0.35845536,0.6136763,0.025421027,-0.022618815,-0.117099494,0.24889854,0.46150106,-0.060246788,0.34872395,-0.029276745,-0.11522347,0.38200063,0.86726344,0.18112323,0.32642943,0.014876749,-0.18794504,0.14159645,0.1498996,0.012453511,-0.11665756,-0.42773902,-0.080599055,-0.17157656,0.25494966,0.53004044,0.119955905,0.21955216,-0.15653795,-0.28768623,0.096108146,0.19144756,0.011908488,-1.4571247,0.21880043,0.20410681,0.6845445,0.50215626,0.10875618,-0.16221674,0.6177875,-0.26934177,0.046496402,0.3008627,-0.115466736,-0.37155733,0.39658403,-0.66088855,0.4622921,0.027534105,0.050834805,0.10755585,0.030053396,0.37379444,0.8456706,0.018180816,0.07669692,0.05709968,-0.3254947,-0.014056541,-0.31519637,0.0097403005,-0.48642564,-0.3909011,0.7323317,0.3262979,0.32374525,-0.06815768,-0.05589952,0.07374872,-0.20765649,0.107644364,0.036685523,0.06762756,-0.2041615,-0.6436603,-0.15803042,0.55857533,0.22197613,0.04265374,0.097424425,-0.056031514,0.2986498,-0.10987198,0.04205653,-0.07882595,-0.5674218,-0.045290943,-0.4442468,-0.39224464,0.4120104,-0.25149408,0.21301946,0.13780375,0.07918618,-0.33379346,0.41863045,0.07480852,0.7127883,0.0077198446,-0.0961708,-0.18375693,0.21863815,0.13927805,-0.21898398,-0.20164412,-0.18738085,0.12309605,-0.780985,0.36250523,-0.096133314,-0.4238609,0.24221021,-0.06800928,0.05741455,0.42753875,-0.07076054,-0.3054353,0.0035513937,-0.15662429,-0.3350703,-0.26561737,-0.1216076,0.29083523,0.20223112,-0.14028361,-0.10905995,-0.14608017,0.03381589,0.42916927,0.0058001447,0.36920178,0.317592,0.15891579,-0.3183518,0.119710766,0.31456977,0.5730779,0.044205546,0.03193912,-0.22781065,-0.2840101,-0.37157974,0.06068769,-0.16330333,0.26687717,0.13531223,-0.20701307,0.88270223,0.095393166,1.1065903,0.035810746,-0.20679146,0.16935223,0.37940133,0.054380726,0.011933241,-0.29168493,0.9360545,0.6539501,-0.07945345,-0.16286021,-0.39019305,-0.14351982,0.061397493,-0.3064756,-0.15456128,0.012552306,-0.76627386,-0.28167242,0.24921489,0.22539312,0.21933004,-0.08346935,0.029635333,0.1578788,0.04829171,0.19309744,-0.59697914,0.009551175,0.33336258,0.20865875,-0.00789856,0.16648164,-0.5487289,0.29449785,-0.5904754,0.002976166,-0.16470556,0.23000541,-0.07691838,-0.29498887,0.27701864,0.014439993,0.3463797,-0.36006773,-0.3749802,-0.23703355,0.5352346,0.018615924,0.14435384,0.55007917,-0.33467487,0.1167522,0.07345429,0.40779868,0.98135996,-0.324405,-0.011103388,0.35240608,-0.37127346,-0.7140197,0.09218869,-0.38565424,0.075508356,0.06909739,-0.3196362,-0.29188737,0.33774996,0.006049011,0.1845126,-0.07682459,-0.6279102,0.018625524,0.24341303,0.017015178,-0.18997067,-0.29904237,0.19622609,0.62315226,-0.24941045,-0.33839166,0.10853599,0.29410183,-0.25835985,-0.6661342,-0.023083296,-0.2687982,0.17966162,0.12974992,-0.22062962,0.0023704767,-0.01244919,-0.4938134,8.017197e-05,0.36762366,-0.39398587,0.008606657,-0.30214885,-0.09547554,0.9833648,-0.22943383,0.09447043,-0.4861059,-0.5246696,-0.85036504,-0.35157543,0.4095524,0.11648364,0.073814824,-0.7340235,-0.01041048,-0.20896131,-0.06581775,0.08351836,-0.4085734,0.5301885,0.099531576,0.32997656,-0.1527424,-0.82527626,0.19210842,0.028652828,-0.2668673,-0.53505015,0.50781405,-0.07410053,0.74626374,0.14890715,-0.0065556914,0.22734503,-0.8056763,0.1335986,-0.22544472,0.017534574,-0.82074463,0.08716302,204 -46,0.48094773,-0.23860158,-0.30013043,-0.025000094,-0.2388775,0.20138207,-0.14960858,0.5479269,0.17246254,-0.35953978,-0.0719073,-0.21136868,-0.023702033,0.30317888,-0.08766325,-0.39100152,-0.09634764,0.25131783,-0.5374326,0.49428004,-0.4381542,0.2961766,-0.13540448,0.453493,0.14617914,0.2526216,-0.044988804,-0.07596849,-0.26935196,-0.11219856,-0.09601094,0.3170159,-0.6010143,0.10553435,-0.12432642,-0.31617945,-0.05107995,-0.5480808,-0.31004798,-0.7437371,0.30880618,-0.80095994,0.4277609,-0.020778785,-0.2715774,0.4409892,-0.06892544,0.33029297,-0.257792,-0.01838027,0.18109357,-0.15719628,0.02845313,-0.19886893,-0.09228996,-0.092127405,-0.521562,0.09713532,-0.32982334,-0.24963644,-0.33011198,0.06924977,-0.33210126,-0.025673907,-0.0489626,0.2832284,-0.5038614,0.08793751,0.061591223,-0.054312073,0.11160971,-0.525059,-0.110816374,-0.13401173,0.27401885,-0.20301226,-0.13378093,0.4100634,0.19858053,0.52459776,-0.099893466,-0.11313507,-0.3705387,0.043928362,0.04549007,0.5433246,-0.16711159,-0.46042344,-0.060904622,0.023330627,0.23489857,0.0779556,0.072785154,-0.19717532,-0.2994115,0.002852857,-0.10263932,0.26573864,0.45566952,-0.35185927,-0.30679816,0.3221241,0.5475408,0.17517619,-0.041652378,0.030668724,0.014659807,-0.50608313,-0.12552293,0.093766764,-0.16917557,0.42226368,-0.061186876,0.24859342,0.7056362,-0.2010166,-0.008729614,-0.045947466,0.0786562,-0.009681519,-0.21832275,-0.27442467,0.2199578,-0.325982,0.20469172,-0.18420048,0.73749834,0.17569482,-0.84804547,0.3549836,-0.47045425,0.14348112,0.009528004,0.5478258,0.68940973,0.47292492,0.48182374,0.68330216,-0.38417798,0.126885,-0.15724365,-0.23388878,-0.027537977,-0.22809248,-0.12497527,-0.48905334,0.106436186,-0.022950608,-0.18771689,0.14449352,0.21989608,-0.6358038,0.08375803,0.12252452,0.7791818,-0.23975328,-0.013994671,0.80068797,0.9106835,0.9057025,0.039287146,1.047061,0.21953063,-0.23737323,0.30064726,-0.37900352,-0.6766411,0.18340303,0.31855565,0.04154427,0.17215186,0.1956718,-0.09437573,0.40423968,-0.47201282,-0.0045509897,-0.14818458,0.08608641,0.16867884,-0.093144834,-0.32565454,-0.2675106,-0.13035208,-0.005152218,0.0012831539,0.3271709,-0.28360665,0.42339206,-0.009256732,1.9210007,0.050869644,0.09018035,0.08548267,0.5263887,0.11223605,-0.14386383,-0.14696935,0.3942846,0.36283892,0.0014436366,-0.53753114,0.10559409,-0.13927032,-0.468484,0.058781084,-0.3025853,-0.111648686,-0.064353,-0.4037661,-0.23631257,-0.13838907,-0.23665997,0.4337395,-2.7938614,-0.09615103,0.02402972,0.35522187,-0.22123662,-0.35205954,-0.041017845,-0.4453658,0.31502807,0.27382284,0.4632851,-0.70432156,0.25081664,0.28351146,-0.5179935,-0.15955025,-0.633946,-0.111667044,0.08010071,0.3647671,-0.012970487,-0.0574525,0.025479328,-0.007885039,0.49419594,-0.04814195,0.098732434,0.321114,0.40711433,0.111377776,0.41816473,-0.022889309,0.45121205,-0.21553366,-0.24387647,0.29852948,-0.39618775,0.22508521,0.055622347,0.12959792,0.3959161,-0.46136898,-0.8550121,-0.6719191,-0.10571006,1.1787012,-0.14889845,-0.45674002,0.28352237,-0.30114383,-0.20771942,-0.16014084,0.41374975,-0.053192157,-0.25885576,-0.8042494,-0.09001459,-0.09836838,0.29667988,0.037611604,0.014367102,-0.35976732,0.61761206,-0.13207678,0.41947138,0.34658736,0.12007624,-0.15594083,-0.4063189,0.08571389,0.84745693,0.3057388,0.1803968,-0.18875402,-0.26144722,-0.2715176,-0.12214848,0.053138066,0.43100202,0.5858866,0.019739553,0.14352542,0.22452118,-0.0734298,-0.08740714,-0.2785325,-0.09442474,-0.098788075,0.06006341,0.5452841,0.5615978,-0.18495066,0.47277117,-0.014453169,0.07445637,-0.12541766,-0.4169452,0.5370603,0.79615366,-0.08888079,-0.17831889,0.44286335,0.46064216,-0.20240894,0.4127709,-0.6001991,-0.28506887,0.50375694,-0.24971306,-0.34693757,0.2549107,-0.21199606,0.1465381,-0.7871322,0.269803,-0.15116552,-0.47953755,-0.59310514,0.008776873,-2.9608345,0.0712704,-0.15206236,-0.3900951,-0.02265054,-0.17443383,0.048663076,-0.53543925,-0.43153778,0.08035851,0.13623895,0.71483815,-0.08552752,0.033266865,-0.23311338,-0.29786485,-0.39870435,0.036090072,0.118839756,0.40114307,0.07056351,-0.4915855,-0.08279076,-0.2128294,-0.3793412,0.0017565899,-0.5409647,-0.43600845,-0.18397948,-0.47406176,-0.2700003,0.6176975,-0.29015857,0.07613603,-0.2720217,-0.10744342,-0.13355437,0.35825497,0.21249133,0.12250224,0.02824933,-0.13614096,0.11404399,-0.2840954,0.34605017,0.048743602,0.20620245,0.5218863,-0.18870421,0.15577763,0.4874923,0.63913345,-0.09557979,0.7788463,0.49608177,-0.075491354,0.3004126,-0.36603305,-0.17775866,-0.45002967,-0.25907516,-0.059319034,-0.43998283,-0.47020912,-0.1074462,-0.40103367,-0.7558819,0.4811361,-0.13812125,0.097354695,-0.030984692,0.2858436,0.5456389,-0.20007007,-0.007920565,-0.16479072,0.02300191,-0.4375947,-0.30070135,-0.5918128,-0.4063639,0.1022207,1.0313703,-0.10810758,0.005298279,0.11663644,-0.23054597,-0.05556495,0.06671918,-0.07371173,0.16090776,0.37673223,-0.109295756,-0.66639775,0.47527367,0.0016879104,-0.21052274,-0.51916283,0.20099446,0.44356537,-0.55397445,0.47064006,0.114350654,0.030210592,-0.057996422,-0.44381747,-0.18627317,-0.09344833,-0.17666966,0.30823958,0.115796365,-0.6859392,0.44690967,0.3742014,-0.2832114,-0.71802115,0.26316136,-0.024008185,-0.4398845,0.074158385,0.16764134,0.05622113,0.027771134,-0.26449898,0.20590925,-0.49305677,0.2894059,0.26324755,-0.043077864,0.27359903,-0.25356507,-0.23246315,-0.66338176,0.05800199,-0.3758129,-0.29184616,0.20877801,0.18722878,0.09831609,0.14068234,0.10827011,0.40214884,-0.27669168,0.019895103,-0.09360536,-0.10176037,0.20251402,0.43817374,0.4450103,-0.43167484,0.5520883,0.05136137,-0.10676138,-0.08094059,0.030429471,0.40207392,0.07882586,0.19181578,-0.0062134415,-0.3335752,0.25392216,0.6874475,0.30236518,0.50111425,-0.10641861,-0.21216688,0.34093642,0.17292279,0.25054237,0.06400442,-0.38732725,0.14262526,-0.19678031,0.09864897,0.42128026,0.16793221,0.29949665,-0.054728962,-0.27458635,0.076192714,0.1965721,-0.110075474,-1.224906,0.24111271,0.1329777,0.86651874,0.44192693,0.02406301,0.21003477,0.7354872,-0.28564095,0.08553866,0.2730211,-0.071232036,-0.63270485,0.5292305,-0.7128775,0.48098224,0.031066163,0.028601445,0.09655996,-0.042231143,0.44019043,0.5846075,-0.1688681,-0.03953173,-0.012647884,-0.24722663,0.05414713,-0.32365775,0.08331666,-0.618399,-0.18651219,0.6361207,0.43773395,0.31131798,-0.1954574,0.09309144,-0.0056514665,-0.10041557,0.09747506,0.16410851,0.15269972,-0.030602295,-0.5080737,-0.1501116,0.5513681,-0.16528478,0.13016973,-0.007828962,-0.2669562,0.24128127,-0.18802693,-0.26035202,-0.15511036,-0.625161,0.05433523,-0.2555739,-0.30671242,0.40453735,0.120526254,0.38404596,0.22809967,0.063465565,-0.3733701,0.41239965,0.26081622,0.8423704,0.022582572,-0.18538882,-0.31288368,0.26741102,0.18942356,-0.14250967,-0.13903265,-0.11482568,-0.09246783,-0.49182892,0.36969638,-0.096992396,-0.24392799,0.10061989,-0.09183417,0.09992617,0.5141251,-0.0814606,-0.09941515,-0.096598946,-0.22373052,-0.4326509,-0.1115736,-0.14933652,0.26528704,0.29210028,-0.13864551,-0.108344905,0.07501025,-0.09140473,0.5536159,-0.059416655,0.23292978,0.20892583,0.09812011,-0.3691783,-0.091804296,-0.009101048,0.44699264,-0.029323041,-0.09736256,-0.32143208,-0.39759883,-0.40090612,0.13745178,-0.1773397,0.45271242,0.11723212,-0.3655646,0.82917917,0.022415232,1.0378525,0.04935099,-0.27882168,0.24663676,0.51421773,-0.034264803,-0.03347092,-0.33336172,0.77713156,0.4986314,-0.09357107,-0.02414795,-0.2115663,-0.11721895,0.26570675,-0.18895034,-0.067024775,-0.0066356696,-0.53537995,-0.2898415,0.2689854,0.2593329,0.24782525,-0.1248029,-0.010207702,0.20709014,0.010166745,0.19115588,-0.2486355,-0.23080109,0.27071327,0.15609875,0.1328617,0.034350395,-0.45809066,0.38410532,-0.50357366,0.051429264,-0.13314939,0.19799206,-0.18858284,-0.25259447,0.21101749,0.14607246,0.300871,-0.3177878,-0.31536537,-0.34560037,0.4385128,0.06675729,0.17119418,0.43717423,-0.30342695,0.15876529,-0.003624227,0.35703045,0.84765756,-0.20999296,0.061796766,0.3976556,-0.23892179,-0.51829875,0.44637352,-0.20217413,0.14312439,-0.10048193,-0.09926212,-0.5566832,0.2306734,0.22330955,0.13826858,-0.04699129,-0.5674144,-0.25463885,0.35977653,-0.25240508,-0.23900343,-0.37025124,0.1557414,0.6975266,-0.20367672,-0.3816253,0.18559685,0.22619551,-0.20831965,-0.46149313,-0.068967365,-0.39745688,0.27468917,-0.025485106,-0.3748749,-0.07442251,0.06785735,-0.37016144,-0.019399107,0.09899312,-0.35495645,0.045038838,-0.3791277,0.09237096,0.9704188,-0.20972928,0.27767873,-0.6030212,-0.3539393,-0.9620386,-0.30873048,0.56180006,0.19040439,-0.006753806,-0.6287915,0.070944615,-0.1205737,-0.36100817,-0.08035524,-0.47389075,0.4470423,0.15231833,0.18415347,-0.104631424,-0.6343031,0.13140526,0.058737308,-0.17342974,-0.5047136,0.5090767,0.06607043,0.83702415,0.121131726,0.102602154,0.2501454,-0.5236242,0.07675335,-0.23239379,-0.16120094,-0.5660917,0.051340446,208 -47,0.37618196,0.152169,-0.56795627,-0.39365917,-0.37342125,0.14097399,-0.28100553,0.13418043,0.12760295,-0.23967347,0.14005446,-0.017672796,-0.09037283,0.44900346,-0.14568591,-0.8264219,0.09646367,-0.04898429,-0.63755554,0.39912003,-0.4512071,0.5062215,0.17408086,0.31329745,0.026657335,0.22300376,0.3491186,-0.13358527,-0.027987935,-0.032359224,-0.23445645,0.33034322,-0.59109634,0.11478202,0.02000388,-0.36315614,0.03996043,-0.07146154,-0.2385042,-0.60796946,0.37464324,-0.65381074,0.5479423,-0.15404567,-0.38523832,0.076372445,0.20393474,0.2893716,-0.2711028,0.1528505,0.2512563,-0.34236035,0.008333497,-0.059233308,-0.39912322,-0.71300983,-0.65364456,-0.18302807,-0.8683908,-0.3462811,-0.38508657,0.2534347,-0.3137824,0.11094335,-0.1950481,0.30446267,-0.4022112,0.03971924,0.19327557,-0.13833204,0.15910375,-0.5222124,-0.028390858,-0.103770554,0.1496185,0.13233504,-0.07330315,0.22749016,0.43037206,0.56823754,0.074102685,-0.3940235,-0.33301932,-0.23064566,-0.014138795,0.46731266,-0.026557729,-0.02225507,-0.2832415,-0.10543069,0.34847814,0.25651392,-0.09108207,-0.22401401,-0.014704971,0.13962832,-0.19487083,0.25628236,0.41727254,-0.5420488,-0.30328172,0.39670646,0.4602359,0.122681305,-0.32940656,0.21037564,-0.01731051,-0.35000822,-0.15440059,0.25596315,-0.071755014,0.4868164,-0.032750882,0.23992276,0.9127641,-0.20946378,-0.13008595,-0.33101785,-0.17738578,-0.04342316,-0.022675663,0.0003253445,-0.09975033,-0.5303927,-0.09096055,-0.26639396,0.9538781,0.1356768,-0.6814031,0.27899018,-0.33936584,0.027766835,-0.22009043,0.6435231,0.7038977,0.3549677,0.04200721,0.84077674,-0.62549293,0.04767313,0.026603423,-0.45712978,0.13919923,-0.08630857,0.11325089,-0.47103155,-0.03812377,-0.0026795194,0.05955388,-0.09804921,0.3621283,-0.28160593,-0.06359729,-0.06496817,0.70427424,-0.50986683,-0.016296893,0.57598454,1.0232451,0.87290645,0.05568354,1.1182747,0.33478028,-0.17825133,0.056038857,-0.49559438,-0.36010775,0.17146125,0.33919615,0.16499674,0.29832208,0.084062815,0.17630762,0.50408036,-0.17959459,0.015245492,0.11584933,0.21087626,-0.0032393634,-0.11997926,-0.57694715,-0.22072431,0.23445848,0.09847371,0.069586486,0.11171482,-0.21401444,0.45746005,0.27961397,1.3407903,0.089089274,0.12037479,-0.012826193,0.43818682,0.13177902,-0.04193943,-0.017738104,0.30509058,0.325065,0.06328762,-0.5925127,-0.003374204,-0.37021536,-0.4042719,-0.3730994,-0.45243827,-0.066186994,-0.07572337,-0.5225771,-0.12649938,0.1319834,-0.32858992,0.43042988,-2.556215,-0.19385739,-0.18122259,0.17725424,-0.12909162,-0.23051983,-0.19955501,-0.5745722,0.20120987,0.45652303,0.23876745,-0.60779613,0.5509546,0.33523157,-0.13084751,-0.15017216,-0.56207514,-0.11684817,-0.10181403,0.4073668,-0.040948365,-0.068047225,-0.32777938,0.556939,0.6914037,-0.051966883,0.06583205,0.12115279,0.34988198,-0.04231231,0.58999515,0.22992262,0.52057374,-0.09719606,-0.07387712,0.433176,-0.23838146,0.23804423,0.016822167,0.21273315,0.4643455,-0.4347372,-0.7788672,-0.51710284,-0.24763441,1.0680913,-0.525668,-0.34523422,0.32664466,-0.008988794,-0.11560521,0.017792545,0.30302036,0.045748547,0.12762481,-0.51300895,0.11599898,-0.027493091,0.20314455,-0.110484496,0.029177465,-0.21500897,0.62847906,-0.22547254,0.46421507,0.2299833,0.24902622,-0.02848123,-0.4415403,0.03330083,0.8777295,0.3902916,0.00659921,-0.28438655,-0.25723904,-0.22587559,-0.24958694,0.16608347,0.29978734,0.9039856,0.078538,0.1001827,0.280176,-0.3092749,0.054915108,-0.09537681,-0.41251528,0.14527637,0.027276382,0.3243404,0.40078807,-0.22508669,0.46617603,-0.086634286,0.22677374,-0.1766954,-0.44408208,0.5576399,0.864884,-0.15514973,-0.198367,0.5040159,0.25888836,-0.34116793,0.3914493,-0.6868061,-0.2631948,0.82323486,-0.069861345,-0.3263747,0.071284585,-0.360824,-0.07443759,-0.9174958,0.37640876,-0.073774934,-0.6062787,-0.47047985,-0.28051624,-3.8084908,0.10685985,-0.23659581,-0.0827813,0.06755683,-0.06455331,0.2966415,-0.6119518,-0.45018688,0.046248436,-0.0072403047,0.48292667,0.08287918,0.15401429,-0.28866923,-0.21245815,-0.22996798,0.2968493,0.098475784,0.18552113,-0.019082524,-0.44380718,0.28584158,-0.34144768,-0.5575417,-0.00804483,-0.33785582,-0.5505308,-0.08231736,-0.35560918,-0.16213733,0.80122185,-0.30362862,-0.030541915,-0.29409963,-0.044515178,-0.1910498,0.37415785,0.46161094,0.052779894,0.08343,0.04695739,-0.18020105,-0.54577667,0.12406948,0.13303122,0.3414722,0.2921513,0.10292776,0.22394103,0.65248024,0.34680986,0.052257545,0.63257307,0.17853856,-0.20078593,0.29956096,-0.2931293,-0.14845867,-0.81080735,-0.4077018,-0.2529585,-0.39479938,-0.40407467,-0.17503494,-0.36907497,-0.77547497,0.46849942,-0.01948392,0.38835412,-0.20197527,0.3165115,0.27672094,-0.0017793253,-0.04133073,-0.24103433,-0.35296994,-0.503825,-0.45856774,-0.6665809,-0.6931921,0.19633609,1.1877819,-0.13423517,-0.20959437,-0.08788361,-0.20119104,-0.004629731,0.13117896,0.3535818,0.27567035,0.36863366,-0.1689687,-0.6997933,0.42708644,-0.19218373,0.11048263,-0.65795,-0.2643695,0.5646303,-0.603282,0.42831904,0.3492837,0.2315188,0.22712137,-0.73302674,-0.25231612,0.06716321,-0.26146397,0.49188483,-0.03312424,-0.39039204,0.53259826,0.008947566,-0.05803673,-0.5217596,0.5382039,-0.06675511,-0.37586725,0.12879857,0.3458404,0.03409125,-0.102592215,-0.129979,0.24673508,-0.5635986,0.27367952,0.4884163,0.003934793,0.44334137,-0.08121096,-0.18929718,-0.48331463,-0.14212747,-0.4562862,-0.22365633,-0.06272017,0.18664843,0.17478685,0.24481015,0.039971992,0.40980914,-0.25372076,0.21771827,0.03720235,-0.24552575,0.48047736,0.49517387,0.3375451,-0.45834002,0.519483,0.110241055,-0.077308744,-0.12472074,0.103276275,0.5929506,0.21743926,0.34918427,-0.1254614,-0.18008855,0.29862532,0.66986156,0.28797027,0.31916717,0.12221499,-0.2516372,0.27312815,0.22354792,-0.059401162,0.1687206,-0.09442139,-0.1835039,0.15128043,0.16919395,0.5131453,0.14936483,0.37683672,-0.07732911,-0.12796335,0.36433843,0.099889696,-0.2490825,-0.9012314,0.14846349,0.3949166,0.64483285,0.40636826,0.13513635,-0.1202832,0.38989082,-0.47344822,-0.04704494,0.38483822,0.10602911,-0.38709486,0.64880973,-0.6085186,0.52457106,-0.20056994,-0.0899822,0.13736929,0.17096278,0.23373666,1.0469395,-0.050119724,-0.06850311,0.048246678,-0.34990725,0.22247255,-0.28088325,0.0013652891,-0.45565256,-0.26335695,0.6042367,0.33053547,0.11365388,-0.33176628,-0.033928413,-0.008629642,-0.14050755,0.10205231,-0.16485108,-0.0285002,-0.21199802,-0.46318838,-0.5018077,0.5160162,-0.13635981,0.014285279,0.06753833,-0.36223382,0.2557186,-0.065666646,-0.04952552,0.05824896,-0.42465955,-0.03807188,-0.24489003,-0.5622147,0.40616688,-0.40923154,0.30514008,0.12471181,0.033848334,-0.32179207,0.13506469,0.18284461,0.4986065,0.117260635,-0.13294508,-0.2953063,-0.05112555,0.3483863,-0.2847043,0.10671402,-0.29074067,0.22272234,-0.68105155,0.35267878,-0.27094734,-0.27528733,-0.23184605,-0.2901682,-0.009716418,0.31729013,-0.2358597,-0.05658487,0.17331594,0.15070097,-0.21907449,-0.048543103,-0.32735163,0.2064613,-0.19366266,-0.15894753,-0.05264949,-0.13892807,-0.008719765,0.25358093,0.0837178,0.24211793,0.18338543,-0.1363277,-0.28261128,-0.061528258,-0.060705278,0.26125073,0.08682858,0.05400463,-0.2755536,-0.31109226,-0.2516392,0.45868477,-0.14555411,0.13505024,0.1819183,-0.5232576,0.891824,0.02993904,1.2972248,0.23328264,-0.31817165,0.08471176,0.6157681,0.20656495,0.26359496,-0.28954297,0.8112196,0.5529156,-0.0901531,-0.37417316,-0.2506842,-0.21214008,0.30027625,-0.27274427,-0.3573426,-0.19197492,-0.747696,-0.15054491,0.1388504,0.13825987,0.23281959,0.07560466,-0.15593389,0.13260473,0.20833352,0.64477146,-0.45854235,-0.017636418,0.28788197,0.116447754,0.058064207,0.28904617,-0.3287937,0.40462792,-0.69919956,0.14601052,-0.4961295,0.066184,-0.092708655,-0.2789934,0.28984094,0.003665924,0.25588626,-0.13938695,-0.21838227,-0.21786115,0.71483654,0.2603335,0.29449862,0.7155839,-0.21806237,0.04236252,0.06746797,0.4368866,1.3614542,-0.03239771,-0.18645862,0.20223229,-0.35084933,-0.6411893,0.13253959,-0.29229286,0.0013388582,-0.14319836,-0.5207057,-0.23239645,0.4201981,0.04901535,-0.19362795,0.24837737,-0.40432274,-0.16512838,0.31895235,-0.2930325,-0.26085365,-0.109179914,0.37015358,0.7624019,-0.53027,-0.24316898,-0.085630134,0.44336417,-0.23990332,-0.58644205,0.14804432,-0.18226787,0.5670707,0.12579283,-0.42667162,0.17452873,0.22641955,-0.36188024,0.2116665,0.6457216,-0.42182073,-0.11582552,-0.23349082,-0.15416598,0.94443685,0.12559164,-0.17676339,-0.65621114,-0.37632665,-0.8482307,-0.2952031,0.35647872,0.18355827,-0.12476933,-0.45907986,-0.14488353,-0.14008382,0.06712134,0.17763239,-0.6217798,0.26912928,0.18906005,0.460822,0.054009464,-0.91144025,-0.1548473,0.06377379,-0.23058927,-0.5828532,0.68920714,-0.37490335,0.6119702,0.07782169,0.05431195,0.060969297,-0.46772802,0.46158484,-0.4408371,-0.16911572,-0.8405131,0.02107077,214 -48,0.29571345,0.034651794,-0.5153885,-0.17755046,-0.28535748,0.15973054,-0.06811038,0.12167398,0.11026898,-0.27381092,-0.026238158,-0.21644643,0.020532057,0.45645446,-0.118885115,-0.70604587,-0.029057536,0.08641641,-0.68271655,0.3772372,-0.5738526,0.3727212,0.06406669,0.3762608,0.04054419,0.37814993,0.29202354,-0.15726866,-0.20310055,0.18238828,-0.15302317,0.35492843,-0.584357,0.054392356,-0.009894116,-0.2079677,-0.0009684954,-0.38911214,-0.3206045,-0.55054057,0.4790591,-0.7226972,0.36987054,-0.055400796,-0.23646247,0.15436922,0.049047142,0.25880018,-0.44702238,0.059675857,0.15652597,-0.29920247,0.048044857,-0.099357724,-0.2507106,-0.34605008,-0.5840147,0.055341687,-0.5648146,-0.30750474,-0.2190274,0.16353254,-0.37902495,-0.0073382556,-0.19491294,0.4658497,-0.43065462,-0.037260085,0.3233714,-0.23923188,0.088290006,-0.2587555,-0.11666559,-0.021785429,0.39580673,-0.05628132,-0.10183085,0.31988084,0.30117118,0.49557564,0.0073154094,-0.24994022,-0.22940186,-0.03346581,0.12497255,0.53692913,-0.04506142,-0.15635282,-0.12890534,-0.03462028,-0.1404854,0.19363421,-0.0068321824,-0.48367766,-0.05287802,0.13231187,-0.082437366,0.13906921,0.4770985,-0.38251364,-0.30159622,0.34007943,0.39088666,0.07764814,-0.12365395,0.1418183,-0.025437586,-0.56204796,-0.24607477,0.15730049,-0.19632772,0.6271861,-0.04139226,0.2310549,0.7096653,-0.088979065,0.013555024,-0.34395224,-0.12516409,0.005808994,-0.2507727,0.06415324,0.114989296,-0.31220326,0.059200402,-0.069951646,0.7078074,0.1854766,-0.88279146,0.40267932,-0.44864666,0.12438637,-0.1341489,0.5862949,0.6984887,0.2343646,0.3155136,0.86436725,-0.64877456,0.12000775,0.0036308318,-0.4829694,0.031259242,-0.041662455,0.045057528,-0.44247878,-0.0354928,0.09822804,-0.047353376,0.043100394,0.055816267,-0.3555692,0.086412124,-0.02307757,0.7471693,-0.47719386,-0.044106692,0.6524197,0.96445864,0.733037,0.10106732,1.3177836,0.3835972,-0.21351999,0.20702684,-0.44157666,-0.56941044,0.07850572,0.2969414,0.21112087,0.28834772,0.13940215,0.10569208,0.45828748,-0.3133649,0.16944058,-0.043689687,0.012163755,0.015890196,-0.03082006,-0.38305688,-0.17244913,0.044647295,0.060443953,0.006222749,0.18881978,-0.14370294,0.37613207,0.13277686,1.790075,0.11660169,0.18289188,0.03126307,0.39505345,0.19935954,-0.12802637,-0.2141524,0.3658204,0.35402128,-0.08555068,-0.5324853,-0.01870697,-0.23444554,-0.46011207,-0.19702795,-0.3989464,-0.043671902,0.00059168786,-0.48880827,-0.0768775,0.11127274,-0.26509953,0.4908064,-2.7104897,-0.115974754,-0.13138916,0.2905699,-0.30885407,-0.32463068,-0.31194854,-0.44755802,0.21469866,0.46072906,0.22992572,-0.65027344,0.31407464,0.2303862,-0.19139613,-0.18359044,-0.5218248,-0.010156333,-0.059474237,0.33039472,-0.17303438,0.008088436,-0.1274097,0.27481553,0.58884627,-0.009146713,-0.14138281,0.12392716,0.3631508,0.24030544,0.5189061,0.05365967,0.5449966,-0.101528466,-0.10285472,0.25342274,-0.24337009,0.31184125,0.03337987,0.19822943,0.27929583,-0.44371617,-0.70070744,-0.55465925,-0.4296002,1.1479506,-0.50399435,-0.18263845,0.38650587,-0.041481204,-0.18108483,-0.026563937,0.4731697,-0.02424638,-0.023858324,-0.68046594,0.087193124,-0.081665084,0.123512104,-0.03123127,0.10644982,-0.20118234,0.6052542,-0.18973927,0.3777417,0.41169167,0.21315661,-0.0024055503,-0.4982129,0.14336176,0.84534556,0.25063157,0.12184207,-0.09383465,-0.2315265,-0.103657044,-0.2661916,0.11518919,0.4101397,0.671545,0.0843424,-0.01610455,0.34229475,-0.098653406,0.009898093,-0.09487066,-0.26614752,0.09540268,-0.107051924,0.48674214,0.58371395,-0.25791302,0.38382906,-0.13773128,0.14137816,-0.058552016,-0.43513423,0.5715406,0.9427176,-0.12795666,-0.047003567,0.41888925,0.38149226,-0.3780082,0.2766757,-0.5053065,-0.13489509,0.7648345,-0.20884392,-0.42248094,0.10779049,-0.292229,0.04443147,-0.93048346,0.17951253,0.16201314,-0.24373446,-0.39233518,-0.097938195,-4.0283804,0.05625387,-0.30614546,-0.18230301,0.03448253,-0.063667744,0.18733189,-0.5931178,-0.5048195,0.11530428,-0.048896916,0.44300014,-0.040603176,0.22608328,-0.3433153,-0.039119147,-0.08878934,0.22686993,0.15827721,0.3005615,0.012581665,-0.33635956,0.08243867,-0.37805617,-0.49327466,0.057038087,-0.40637833,-0.5587144,-0.2230295,-0.5043306,-0.30811042,0.7363274,-0.37200323,-0.08860575,-0.20773163,-0.0584157,-0.31121147,0.2852339,0.3378044,0.22878532,0.08686593,0.07962333,-0.18969971,-0.38377714,0.20871527,0.07201236,0.16166773,0.43204853,0.07482907,0.07931625,0.3726606,0.5094452,-0.10696975,0.515439,0.30852437,-0.035442524,0.28365096,-0.54122365,-0.099643946,-0.7286161,-0.4879265,-0.36101496,-0.37398857,-0.63743573,-0.30294865,-0.40404895,-0.72802866,0.39362666,0.00084463507,0.20303869,-0.016723637,0.19593433,0.4285738,-0.14503087,0.03892401,-0.10421727,-0.1784683,-0.5568313,-0.4209014,-0.5830352,-0.68774706,0.24484149,0.88527465,-0.05984572,-0.18526024,-0.10194651,-0.25828075,-0.014024654,-0.06570081,0.2855054,0.30508214,0.2273145,-0.18073334,-0.62679136,0.5936686,-0.10790376,-0.17973766,-0.6974714,-0.0025372617,0.5736286,-0.59260154,0.7533988,0.25348356,0.20838599,0.24397922,-0.48299658,-0.38325316,0.0674093,-0.24154004,0.51434445,0.09299837,-0.62604356,0.40909785,0.20692015,-0.10127807,-0.7091111,0.50641555,-0.052989636,-0.29481417,0.19454645,0.34001464,-0.04872655,-0.12245122,-0.046759464,0.13036142,-0.5281295,0.21541709,0.4809171,0.10044347,0.4505679,-0.07817742,-0.13594344,-0.5427784,-0.06249001,-0.51239294,-0.14456077,0.042308774,0.11727871,0.19140922,0.04776018,-0.049003296,0.4269527,-0.43020132,0.22127458,0.03551726,-0.0927921,0.16096735,0.43767875,0.2597589,-0.5279621,0.5474698,-0.049596637,0.07727145,-0.11450142,0.24667501,0.46698654,0.34098214,0.15103853,-0.10293632,-0.21418917,0.19749668,0.64834887,0.2120658,0.43454722,0.19001175,-0.23988718,0.38503015,0.14574236,-0.0007991418,0.05873005,-0.19127248,-0.061513677,0.07983477,0.25940204,0.3394568,0.15316392,0.41089824,-0.15354052,-0.213795,0.26132077,0.21983376,-0.041663695,-0.801214,0.290424,0.2197408,0.58263326,0.4999137,-0.0053768903,0.09077341,0.30869374,-0.38703898,0.16354315,0.31145424,-0.12136272,-0.46901554,0.5322162,-0.5116687,0.51279616,-0.18574017,-0.06552005,0.123092726,0.31276596,0.1693162,0.78650373,-0.09634583,0.12666102,0.05302555,-0.18318588,0.031330597,-0.28357893,0.077687144,-0.5360081,-0.31807587,0.41842136,0.4122125,0.24180368,-0.322826,-0.056637958,-0.0065278113,-0.079782486,-0.010781137,-0.033232387,0.05888826,0.06887371,-0.5848081,-0.5608902,0.54443276,-0.19816095,0.028830718,0.029815312,-0.30507946,0.28883514,-0.20635857,-0.16788241,-0.0359748,-0.6824805,0.05590867,-0.23568371,-0.50044036,0.31522447,-0.38829947,0.32298803,0.16297029,0.019427046,-0.49610254,0.23977442,0.11230186,0.81243765,-0.004156083,-0.16249093,-0.43856868,0.0016325116,0.37579474,-0.21157146,-0.042238556,-0.3562098,0.015173882,-0.3874189,0.3858665,-0.06871767,-0.15795988,-0.18867604,-0.101831175,-0.009907749,0.52880627,-0.16837423,-0.11803034,0.014477726,-0.0002027303,-0.35625592,-0.026050702,-0.39482886,0.24921697,0.09522641,0.0033865646,0.0849527,-0.0599738,-0.12703753,0.40433946,0.12038685,0.27524146,0.24437742,-0.18543306,-0.30586183,-0.1024752,0.056859124,0.28374347,0.11615546,-0.09761504,-0.22768907,-0.3353832,-0.22502889,0.28144556,-0.17989218,0.1603663,0.19435506,-0.41356608,0.6866825,0.16186948,1.1137288,0.20918304,-0.23670089,0.120152146,0.31165987,0.1508537,0.15652105,-0.32587987,0.80508024,0.7024179,-0.0730105,-0.26440594,-0.2224091,-0.13803175,0.22578499,-0.19539161,-0.1492149,0.011932265,-0.59026206,-0.25983572,0.114722304,0.22559075,0.18005018,0.06477046,-0.12251997,-0.041939266,0.18810129,0.4895721,-0.39309317,-0.17264621,0.40348712,0.12973757,0.13896574,0.2476901,-0.23101854,0.5274682,-0.4799412,0.115824506,-0.5171836,0.05142855,-0.03941854,-0.18653145,0.1821007,-0.0474841,0.36657792,-0.15035766,-0.22755244,-0.3527671,0.6577257,0.24914351,0.3180889,0.6961205,-0.2108912,0.032037806,0.10039022,0.57383716,1.2626265,-0.2123997,0.09693317,0.3505799,-0.24351113,-0.51081187,0.14958945,-0.29854095,0.05196266,-0.22708473,-0.3063442,-0.47608623,0.23318878,0.082343765,-0.09322819,0.107386254,-0.41635013,-0.30166215,0.4591758,-0.3021075,-0.34159642,-0.29631388,0.34324715,0.704069,-0.40368205,-0.2715347,0.06336513,0.16916001,-0.18149048,-0.52701104,-0.002888374,-0.2338897,0.25692576,0.18692252,-0.37848714,-0.017764773,0.3840081,-0.2534323,0.09469223,0.4223658,-0.33697593,0.036341958,-0.121153675,-0.2265847,1.1468087,-0.013577394,-0.03640464,-0.6615405,-0.478547,-1.0726542,-0.47639585,0.42564383,0.15529187,0.042059872,-0.4374007,-0.00012510642,0.03628414,-0.013356354,0.0012644455,-0.44405863,0.40828145,0.1251373,0.42354995,-0.0029800795,-0.72407293,-0.20323062,0.09164055,-0.21269041,-0.5276905,0.4960681,-0.14023094,0.7441386,0.0002935063,-0.022375554,0.20764518,-0.4811644,0.16674095,-0.45039344,-0.19983542,-0.72625357,0.07392794,215 -49,0.44018638,-0.19031775,-0.38672277,-0.1411397,-0.24956968,0.063969836,-0.22423226,0.5797975,0.24169579,-0.386082,-0.15442461,-0.013685938,-0.040400688,0.25944602,-0.3024187,-0.34809294,-0.0023444816,0.08840488,-0.33563375,0.5672705,-0.43564293,0.19411346,-0.041750252,0.39204428,0.25750017,0.17333697,0.07283993,0.0985663,-0.20279548,-0.4304706,-0.09010173,0.41755286,-0.48049062,0.17182848,-0.2714823,-0.32657537,-0.08682577,-0.54258937,-0.42874253,-0.8044917,0.21806642,-0.85920143,0.45714816,-0.046426553,-0.39332706,0.3818681,0.14717758,0.14467758,-0.021503415,-0.17644358,0.081152946,-0.16027999,-0.06602329,-0.0992128,-0.188613,-0.32365534,-0.6174943,0.10004404,-0.4555539,-0.088984184,-0.27547503,0.2107326,-0.26622343,0.03252529,-0.09861842,0.43171233,-0.5009878,0.06604856,-0.009684451,-0.017481204,0.25667825,-0.58515173,-0.26008618,-0.107020825,0.12579527,-0.12720367,-0.2919846,0.28899294,0.34323424,0.46670237,-0.08541573,-0.21337156,-0.3943172,-0.025492985,0.07004597,0.5040152,-0.26180464,-0.6929276,-0.16180652,-0.019328007,0.42101005,0.24979767,0.054132275,-0.119078815,-0.15573297,0.058825772,-0.24816039,0.41615385,0.58543926,-0.24402499,-0.21270134,0.29898012,0.41058558,0.211943,-0.19004235,0.013749689,0.0060351267,-0.5623605,-0.101806045,-0.08372204,-0.14338687,0.5703457,-0.15000093,0.29406077,0.5050782,-0.11615951,-0.06817789,0.20754282,0.040849358,-0.13754451,-0.2915724,-0.22478652,0.28538412,-0.55258155,0.17969775,-0.20177223,0.6852082,0.008263398,-0.8481171,0.3267372,-0.41881877,0.092047594,-0.067329586,0.5405444,0.68157244,0.45817944,0.38155112,0.66674805,-0.29832697,0.0035016537,-0.06721532,-0.28769585,0.057630025,-0.3338108,-0.0806162,-0.4504369,0.03710015,0.09867927,-0.13409248,0.17202665,0.54164225,-0.59423614,-0.11895238,0.30060238,0.62002575,-0.21281213,-0.060247615,1.0655999,1.0802615,1.0062966,0.036726903,0.9929998,0.099697016,-0.0783766,0.20439559,-0.06743522,-0.5674691,0.25737396,0.3634128,0.012589455,0.15800384,0.011463429,-0.1210857,0.40522626,-0.47514075,-0.21709254,-0.13314322,0.20144391,0.11255026,-0.042273596,-0.46117157,-0.32012242,-0.006007258,0.19477683,-0.011366576,0.29729068,-0.30328277,0.5282947,0.015125655,1.4590657,-0.07278822,-0.05188188,0.05445149,0.6085708,0.18726148,-0.15274328,0.020163,0.29905933,0.22088704,0.15445076,-0.43961075,0.011720099,-0.20352358,-0.48555702,-0.05335905,-0.38954994,-0.21224639,-0.07821691,-0.5252148,-0.19733475,-0.14812247,-0.35444325,0.47257257,-2.9181123,-0.15051797,-0.04806762,0.19423157,-0.11803767,-0.4334553,-0.0022155978,-0.50558233,0.4698459,0.38839057,0.43410578,-0.7060148,0.12822072,0.39371386,-0.5373684,-0.12509418,-0.6294956,-0.18660358,-0.018227303,0.4945283,0.12524895,-0.039662924,0.13587716,0.07442168,0.6333956,0.10221111,0.19848748,0.2548631,0.34107918,-0.15919964,0.43777013,-0.08401349,0.40137446,-0.20071971,-0.2534238,0.3938322,-0.37201935,0.2700021,-0.20455018,0.21454923,0.48663148,-0.47186297,-0.8945552,-0.5731898,-0.18844365,1.2409716,-0.12155479,-0.49811804,0.23781139,-0.3164588,-0.28354993,-0.07016357,0.50286174,-0.15802923,0.06012974,-0.66421366,-0.03603927,-0.12551738,-0.02033757,-0.10207352,-0.0034751613,-0.4336778,0.6542034,-0.058342416,0.44087648,0.301927,0.12001906,-0.44920892,-0.54208493,-0.03318789,0.8632798,0.5428047,0.14574325,-0.28241304,-0.14834572,-0.33489868,-0.103496,0.07540794,0.5806804,0.67098755,-0.08288537,0.12513983,0.28916785,0.107365765,0.040497564,-0.12579957,-0.17064841,-0.1019685,0.064728774,0.66055834,0.71291775,-0.15623833,0.35462993,-0.061383132,0.29109412,-0.16879836,-0.47017133,0.2999969,0.91312015,-0.115101576,-0.28973305,0.60657084,0.5072286,-0.11621261,0.44042805,-0.5624094,-0.30892432,0.3694595,-0.08196031,-0.4284115,0.3697591,-0.35381216,0.04784091,-0.8152752,0.39110374,-0.18791929,-0.62205386,-0.59106636,-0.10470618,-3.1070635,0.1083362,-0.21560279,-0.2585539,-0.09862773,-0.36306334,0.25275913,-0.51784736,-0.48681644,0.07567823,0.09547274,0.63961,-0.17998943,0.027746774,-0.19455746,-0.24396305,-0.30979195,0.17257582,0.12215014,0.35068476,-0.23384878,-0.3004774,-0.14782552,-0.1670106,-0.46468773,-0.038441036,-0.4969892,-0.55691385,-0.06666207,-0.38504124,-0.18269716,0.60325617,-0.3261346,0.13384774,-0.24570712,-0.04827132,-0.06617222,0.18042529,0.11394959,0.13793881,0.05818394,-0.09100064,0.21321088,-0.30333886,0.3005316,0.035406247,0.22915697,0.4628309,-0.21196172,0.27767077,0.5097383,0.6614057,-0.2389974,1.0683163,0.3717823,-0.13324738,0.3095337,-0.12684654,-0.3748433,-0.5874486,-0.21046156,0.0025152005,-0.44900507,-0.28416833,-0.04752119,-0.3645476,-0.79306895,0.5353624,0.0069568045,0.22871429,-0.14935657,0.25200006,0.6118521,-0.20722711,-0.09070037,-0.04576534,-0.13908319,-0.5503752,-0.30258703,-0.6594837,-0.51546544,-0.10108062,0.9345824,-0.015635088,0.061844498,0.116714634,-0.0055830926,0.0040028393,0.11070356,0.005441278,0.047890954,0.30681607,-0.06581654,-0.6966442,0.5266475,-0.04908044,-0.20627768,-0.46187016,0.32371166,0.5998117,-0.50003844,0.3846325,0.496001,0.14893073,-0.203013,-0.6174502,-0.05540543,-0.13090742,-0.15885699,0.55261075,0.38570875,-0.8231422,0.561548,0.3240166,-0.18098067,-0.700168,0.4899999,0.012549408,-0.10574006,-0.021029335,0.3286208,0.23391539,0.06957081,-0.16751114,0.20522691,-0.35934302,0.28116447,0.22719672,-0.10631596,0.3068375,-0.2488513,-0.05214797,-0.7479502,-0.0067632394,-0.5307476,-0.40279698,0.15242115,0.031093927,0.05384831,0.12992099,-0.045855254,0.36329755,-0.27649838,0.051888064,-0.05316168,-0.27754566,0.41147757,0.55051225,0.58018523,-0.3169406,0.6292435,0.19148391,-0.12122457,-0.050906897,-0.0057580955,0.37559244,0.014479734,0.3701595,-0.045471802,-0.20263499,0.22306943,0.7722501,0.31178468,0.39752483,-0.05012504,-0.14958969,0.21969827,0.08928617,0.34016022,-0.026987694,-0.6389723,-0.012129478,-0.4674905,0.13232537,0.45031548,0.16021742,0.22349226,-0.013531387,-0.2795764,0.051817838,0.12473016,-0.009274505,-1.441498,0.33702916,0.20061627,0.90459466,0.47701043,0.033811558,0.006519422,0.78597915,-0.18361323,0.09390625,0.46720922,0.16224577,-0.37409514,0.6062411,-0.88511705,0.44514117,-0.036815554,0.09768869,0.04703327,-0.117676325,0.4895391,0.6732971,-0.13856678,0.027978437,0.041637033,-0.32974097,0.13767636,-0.43685693,0.15402137,-0.46467587,-0.1933929,0.72838837,0.4855321,0.35366327,-0.15105866,0.028505277,0.1656132,-0.113223806,0.08501735,0.059179578,0.10664966,-0.28209487,-0.58148503,-0.08408713,0.50277704,-0.10641644,0.17268327,-0.02292283,-0.2079966,0.18382835,-0.08694441,-0.15604195,-0.066551924,-0.56972736,-0.07191628,-0.28759387,-0.4627697,0.5880947,-0.23767509,0.18313083,0.24828121,0.067508064,-0.14487621,0.12569737,0.17006983,0.6970142,0.026044939,-0.059236288,-0.24717112,0.13972208,0.10965289,-0.20486432,-0.2515992,-0.19118768,0.043906957,-0.5419493,0.36755604,-0.16108248,-0.34461018,0.10802855,0.0490105,0.12495576,0.4317048,-0.086933084,-0.2055654,-0.042893205,-0.05704068,-0.20098902,-0.1968077,-0.001119107,0.33625534,0.25477138,-0.07705145,-0.00904618,-0.043427125,-0.15460685,0.34104,-0.081122115,0.40307647,0.23908776,0.0020385496,-0.3233854,-0.046220373,0.07387518,0.5216913,-0.0728175,-0.026615635,-0.23055968,-0.355538,-0.37542906,0.15677328,-0.061270766,0.4182452,0.21451196,-0.09853326,0.7487644,-0.09908532,1.1048942,0.015489116,-0.5084353,0.0923783,0.5019531,-0.05152153,0.0069873296,-0.26117638,0.91948545,0.3244759,-0.09728569,-0.094241485,-0.38873243,0.1590859,0.20517409,-0.13292915,-0.100449406,-0.052400418,-0.67778134,-0.12143346,0.20599991,0.29257077,0.19287461,-0.15479721,-0.07388156,0.38844207,-0.048244696,0.33524638,-0.39166203,-0.15463322,0.34421706,0.3249446,-0.16451764,-0.05692539,-0.5068027,0.28869048,-0.41299325,0.007823937,-0.3546448,0.21336079,-0.33001754,-0.29233217,0.2570782,-0.10071629,0.3624543,-0.3006302,-0.39802945,-0.26361865,0.4471932,0.036497585,0.0074569527,0.3748514,-0.28917605,0.0058606258,0.006535087,0.3368495,1.1037716,-0.37371188,0.016862847,0.3202143,-0.27769792,-0.52015245,0.33314624,-0.38195962,0.23386961,0.12885202,-0.20194538,-0.43324348,0.241767,0.31138635,0.23134503,0.07631134,-0.6489552,-0.102861695,0.23098512,-0.22486502,-0.14658666,-0.37800562,0.015103277,0.5243985,-0.28340587,-0.47370815,0.010940436,0.25418356,-0.19998507,-0.54121906,0.04700795,-0.28005275,0.21864866,0.08299694,-0.4385289,-0.09850773,0.052725367,-0.4476819,0.07075559,0.17630953,-0.26085377,0.095462404,-0.39270163,0.08848757,0.9913596,-0.16249326,0.27281505,-0.4234135,-0.53548026,-0.7426359,-0.36276683,0.21630332,0.21489376,0.09025722,-0.6494327,-0.036384802,-0.23405956,-0.20362127,-0.118244335,-0.30384475,0.49683782,0.16297327,0.3904993,-0.17981823,-0.6697718,0.2332038,0.046061873,-0.06356162,-0.45559615,0.54904366,0.04898111,0.6834713,0.11523734,0.14643377,0.24071416,-0.5475148,-0.005930327,-0.11469738,-0.20270199,-0.62780625,0.111276194,226 -50,0.6699736,-0.08572594,-0.5307628,-0.10676274,-0.40918338,0.14518318,-0.2698749,0.3275053,0.07332748,-0.38356584,-0.19679242,0.03480101,-0.1388365,0.17439432,-0.23059025,-0.8736969,0.020678602,0.102593005,-0.5088482,0.768047,-0.37957764,0.5706767,-0.25259304,0.26650715,0.41305462,0.25979024,0.0828526,0.16002291,-0.22783926,-0.13003933,0.10479738,0.2479823,-0.41254482,0.15982783,0.13564612,-0.312831,-0.063083805,-0.11253835,-0.361347,-0.7418153,0.33008182,-0.5545376,0.54753745,-0.19233412,-0.38037086,0.08784442,0.15369901,0.03434162,-0.13653654,0.06252595,0.16674268,-0.22940463,-0.11113994,-0.17633367,-0.35962552,-0.5589251,-0.6294902,-0.008320849,-0.474235,-0.21110828,-0.2798266,0.3518231,-0.40000036,-0.1323377,-0.03886825,0.5670744,-0.5156316,0.102452666,-0.0788627,-0.29347265,0.07194843,-0.8517965,-0.17128736,-0.094627365,0.041327283,0.109770335,-0.15979564,0.24730481,0.26146552,0.35265642,0.08634281,-0.23934117,-0.59082603,-0.09447522,0.24871269,0.5063592,-0.19705744,-0.3383143,-0.32667035,-0.19518295,0.3310692,0.04979626,0.18400727,-0.46109834,-0.14871788,-0.06678891,-0.23007688,0.39729548,0.5388254,-0.34950888,0.08026048,0.3541984,0.5541305,0.2137107,-0.45518583,0.1226269,-0.1820432,-0.37208277,-0.12084223,0.12374112,0.0313663,0.52182114,-0.19751623,-0.040537372,0.43010733,-0.094729215,-0.04570307,0.0151216425,-0.014370587,0.26126528,-0.21043628,-0.07656814,0.21571541,-0.077924825,0.09278712,-0.3046628,0.6317476,0.030084673,-0.6648038,0.43291128,-0.35635346,0.13954332,0.030802393,0.5925257,0.83691293,0.4963903,-0.055709116,0.7680921,-0.2385232,0.10751581,0.10357195,-0.09932579,-0.13579978,0.091117695,-0.09077048,-0.4809444,0.2586555,-0.21360287,-0.0261999,0.11632464,1.0466002,-0.44067043,-0.15120077,-0.10032089,0.71131605,-0.40838873,-0.14062732,0.79821193,1.0347753,1.0350176,0.026275683,1.0676239,0.36175275,0.0038256394,-0.25251356,-0.3360895,-0.5453222,0.2134847,0.33115733,0.32668382,0.21384452,0.05779086,-0.004532039,0.53599256,-0.28242552,0.048417654,-0.082082435,0.4743315,0.2617373,-0.101903625,-0.37406385,0.038020182,0.3132676,0.11871675,0.15189096,0.28603852,-0.29661983,0.30840126,0.037605572,1.4814794,0.014294058,0.002012249,0.21104436,0.39815515,0.2874248,-0.32785866,0.29508466,0.18995248,0.40010428,-0.20942223,-0.59092176,0.06550807,-0.17851576,-0.6377467,-0.33368623,-0.2290245,-0.23015359,-0.157633,-0.507409,-0.1878646,0.10213227,-0.4159643,0.4733355,-2.4338353,-0.052356414,-0.17900515,0.3630153,-0.08224423,-0.46580335,-0.013521716,-0.38904354,0.4244508,0.3969187,0.31362477,-0.44017822,0.48561156,0.47386765,-0.5074238,0.063522235,-0.5077365,-0.09229435,-0.021269936,0.68017846,-0.046527058,0.018333888,-0.06440814,0.33781898,0.6391751,-0.040387705,0.12666343,0.3373009,0.31426412,-0.12407852,0.5558665,0.0839114,0.56277704,-0.07552969,-0.24937733,0.4909473,-0.6090349,0.03527853,-0.015444834,0.2612724,0.28820503,-0.45641154,-0.8903222,-0.6716393,-0.23903894,1.0453639,-0.3030764,-0.7192483,0.4120913,-0.3469664,-0.33565736,0.14610083,0.31864282,-0.3199434,0.023164518,-0.7689421,0.049210586,-0.10807432,0.20105144,-0.16625567,-0.06404275,-0.4934765,0.8081255,-0.2721218,0.5814199,0.36475083,0.3004269,-0.21333474,-0.46395808,0.014108451,0.9190858,0.5271091,0.08690548,-0.20757379,-0.11759782,-0.29106343,-0.15030798,0.117597,0.8251826,0.47455546,0.03737968,-0.014061112,0.18030956,-0.2722681,0.030851223,-0.27735758,-0.24552892,-0.0842412,0.086342074,0.52562445,0.6835273,-0.22342576,0.4610641,-0.1822299,0.47021973,-0.17791428,-0.5349238,0.37826732,0.88481385,-0.22409754,-0.49641412,0.5008134,0.45483324,-0.21039,0.29143244,-0.6248949,-0.13612786,0.47822857,-0.28038716,-0.2607025,0.2922514,-0.49694598,0.050413713,-0.76303893,0.17651118,-0.27165255,-0.6459615,-0.4348167,-0.39048597,-3.036239,0.0588068,-0.13500431,-0.28583047,-0.06846488,-0.31632963,0.2902934,-0.56614405,-0.59490824,0.021011867,0.098835185,0.4138782,0.117018,-0.053807605,-0.2811628,-0.18423404,-0.17755407,0.3579414,0.008764908,0.47265473,-0.060558867,-0.47935587,-0.13446921,-0.24153346,-0.5559921,0.017413903,-0.5049847,-0.49230242,-0.06580083,-0.4112095,-0.1283825,0.5490165,-0.545062,0.13617423,-0.33610582,0.042894833,-0.17437994,0.08887191,0.0711538,0.32442775,0.1648558,-0.13239768,0.10394441,-0.24986725,0.2434034,0.083283246,0.1203285,0.4419955,-0.15910107,0.04123144,0.3674721,0.68761253,-0.0657483,0.885486,0.47819394,-0.018739033,0.32770878,-0.22663337,-0.30575085,-0.6563922,-0.162179,-0.018549088,-0.48675513,-0.41981426,-0.37452862,-0.3885913,-0.789497,0.3832855,-0.031478293,0.10544315,-0.06965077,0.29717386,0.41431826,-0.07873349,-0.085127234,-0.021563858,-0.22113189,-0.3532712,-0.4182809,-0.6118232,-0.54555094,-0.12277228,1.118508,0.034808394,-0.111753,-0.0077246577,-0.33847886,0.065932035,0.27712154,0.18920681,0.0948559,0.3281886,-0.053571127,-0.66755444,0.38941702,-0.28081182,-0.10891557,-0.56110346,0.23622496,0.50013804,-0.3865728,0.5088319,0.1486178,0.23400754,-0.25940388,-0.73771936,0.022995142,0.08502186,-0.31658974,0.5521687,0.32073623,-0.8392094,0.47161758,0.24588096,-0.12024665,-0.64712954,0.42583364,-0.10345488,-0.6564944,-0.055923805,0.51218724,0.07158296,-0.18440914,-0.24370834,0.4075464,-0.3803469,0.28291088,0.22933231,-0.114537634,0.28386015,-0.2600127,-0.29562935,-0.8561963,-0.0861477,-0.39305907,-0.31793186,-0.02298344,0.11245899,0.1852301,0.06225162,-0.06344396,0.5637156,-0.29412556,0.24059321,-0.2825088,-0.23080772,0.20842057,0.46763873,0.41248223,-0.30553254,0.6469382,0.098572075,0.15049393,-0.09397046,0.13495134,0.54790217,-0.10802357,0.46774673,0.032719024,0.10038465,0.13754511,0.7221841,0.30974233,0.46548378,0.023541942,-0.61443216,0.24163124,-0.0055603515,0.37850362,-0.21489505,-0.53453696,-0.01768063,0.029481022,0.23513061,0.5405395,0.1586816,0.5719905,-0.17972098,-0.355457,0.13847789,0.07870436,-0.07630086,-1.2654521,0.22847308,0.17920266,1.01176,0.6046083,0.11354244,0.104434185,0.37207276,-0.23615283,0.033056214,0.40185478,-0.09907445,-0.24297537,0.2089794,-0.7433544,0.3446904,-0.16307038,-0.06856622,0.25683224,0.03312362,0.50728,0.70914793,-0.12840803,0.007835336,0.07738271,-0.2954189,0.101580486,-0.19701415,0.15892297,-0.51275903,-0.38663346,0.52755016,0.5295104,0.41326937,-0.3449121,-0.066262186,0.21776916,-0.18070437,-0.0120572,0.05114918,-0.030885927,-0.23249425,-0.40369874,-0.45704508,0.4077016,0.12552911,-0.12758894,0.20731324,-0.26863313,0.20768082,0.038416628,0.02820737,0.110189185,-0.53355217,0.092935756,-0.26449785,-0.39340255,0.3319796,-0.40469384,0.19629578,0.2573842,-0.07761839,-0.36840332,0.27685255,0.38227567,0.77078557,0.2721752,0.058883604,-0.28858262,-0.08954139,0.30362555,-0.19758986,-0.17015511,-0.17666918,0.21697891,-0.6656982,0.35486245,-0.30873203,-0.25621718,0.20858285,-0.05662784,-0.12235382,0.388269,-0.15963954,-0.29661632,0.13618961,0.019802304,-0.16425374,0.0128391385,-0.040179826,0.25761512,0.0066252146,-0.20243579,0.0036570374,0.02195441,0.100577675,0.3678719,0.0407765,0.4013238,0.51529384,-0.029852666,-0.45697623,-0.12211442,0.2836491,0.5070205,-0.034956295,0.21988122,0.035866246,-0.57110727,-0.44492334,0.29041395,-0.23700891,0.22504134,0.042113736,-0.5518861,0.6846193,0.17685106,1.2158478,-0.0027912557,-0.4814177,0.093863755,0.70244896,-0.10272772,0.20317629,-0.2506727,1.0185206,0.5884063,-0.34063596,-0.2466608,-0.39218426,-0.026708849,0.26050544,-0.24487658,-0.16325489,-0.080544904,-0.66141963,-0.14246875,0.053186495,0.09551326,-0.01215104,-0.061058376,-0.07602037,0.11327397,0.17925593,0.33324045,-0.47210285,0.106861904,0.2663225,0.109331094,-0.109502725,0.12626943,-0.30425787,0.26607496,-0.52529734,0.33296803,-0.30721116,0.12458131,-0.2242469,-0.2364251,0.34970188,0.10451964,0.17612205,-0.4289715,-0.2197988,-0.22408189,0.49159494,0.13342093,0.13255192,0.54264957,-0.16110311,0.18179278,0.1568841,0.44202363,1.2055292,-0.2337529,0.091935046,0.27623668,-0.4523034,-0.61961544,0.078792095,-0.3690819,0.14412078,-0.18914397,-0.34501934,-0.5468099,0.26488087,0.16239914,-0.0037070364,0.10744938,-0.5915207,-0.27511913,0.46320805,-0.3024295,-0.123204984,-0.20929854,-0.007922672,0.47151458,-0.28736004,-0.48392016,-0.117303126,0.3313936,-0.2838256,-0.6601884,0.14859441,-0.1954306,0.44926006,0.15668203,-0.3793826,-0.17401788,0.3032931,-0.4700408,-0.10543844,0.34757155,-0.3519601,0.12539078,-0.266913,0.09270743,0.8887603,-0.16725634,0.32170352,-0.56291187,-0.5531189,-0.93657464,-0.42985976,0.2546629,0.26367712,-0.17070639,-0.73713636,-0.20519987,-0.56555057,-0.14086984,0.1302796,-0.45041797,0.53129435,0.21823964,0.31977606,-0.10653365,-0.833668,-0.031661183,0.1669637,-0.24963158,-0.4778959,0.5671427,-6.6012144e-06,0.6997578,0.11221884,0.19809192,0.13807613,-0.57277304,0.40525806,-0.12865795,-0.16935815,-0.6493445,0.24668264,256 -51,0.46482682,-0.2367049,-0.41293466,-0.15291327,-0.4199251,0.025199734,-0.22266358,0.26752496,0.22617391,-0.07958986,-0.06590165,-0.051724657,0.0011637304,0.3960813,-0.07011493,-0.60281795,-0.28642103,0.059007086,-0.6624301,0.35830307,-0.6445318,0.33087337,0.08316872,0.34886843,0.057061143,0.53309256,0.26434064,-0.19251762,-0.04737882,0.0076015443,-0.09207915,0.3159871,-0.5401776,0.07440183,0.04099061,-0.1528579,0.06959782,-0.54425085,-0.17446716,-0.57291037,0.08821232,-0.7786742,0.38872322,-0.10385895,-0.16262186,0.108995974,0.12486987,0.34029073,-0.3875296,0.11589838,0.29115504,-0.020507524,-0.043108284,-0.28244334,0.069308236,-0.21026173,-0.33551472,-0.0009095166,-0.4199667,-0.32285744,-0.04025039,0.13072187,-0.21028458,0.03913203,-0.25416666,0.29876012,-0.48579204,-0.13937034,0.36163163,-0.26638207,0.24889576,-0.39328334,0.1516236,-0.08668016,0.39414233,-0.064213835,-0.14048,0.4176896,0.21242101,0.36190856,0.25545242,-0.2418609,-0.25930104,-0.16775566,0.2343054,0.43292755,-0.1822527,-0.3634186,-0.30261,0.0125075355,0.15404612,0.27219683,-0.025796078,-0.26443297,-0.009871243,-0.12498726,-0.20394105,0.38055003,0.43328816,-0.30539393,-0.317423,0.33831227,0.6766889,0.31779662,-0.20623723,0.036299944,-0.0066352617,-0.59263855,-0.15680228,0.15753685,0.021532852,0.34437647,-0.10594675,0.1910197,0.84380895,-0.1525737,0.0011090236,-0.072293505,-0.16596413,-0.12725815,-0.3620416,-0.13092911,0.023127574,-0.48273304,0.030272778,-0.12934862,0.6196461,0.22608763,-0.78343534,0.46277338,-0.5231717,0.14493808,-0.18928716,0.67770666,0.5485704,0.39272565,0.27129766,0.7826411,-0.3730647,0.24472511,-0.062907316,-0.49852613,0.18139118,-0.12736577,0.05337137,-0.5543126,0.15298145,-0.19539957,0.05488514,-0.038656376,0.28912228,-0.5539449,0.016951002,0.11411678,0.7399752,-0.36799267,0.007749308,0.6090783,1.0169533,0.9601267,-0.010719957,1.1175581,0.3025816,-0.26280165,0.2633921,-0.5327342,-0.5781796,0.28869122,0.40969485,0.025435157,0.3679145,-0.15531589,-0.06659803,0.23931454,-0.3038589,0.08667219,-0.07792717,0.24004585,0.09720029,0.02334315,-0.43835264,-0.14196472,0.020644573,0.027158774,0.09189973,0.09765863,-0.21917629,0.37062374,0.0015849881,1.6249243,-0.08991353,0.02677729,-0.014232986,0.533823,0.26522452,-0.16412695,-0.17356187,0.46728095,0.4305319,0.019489288,-0.6127329,0.351027,-0.18086804,-0.5291011,0.002015695,-0.43079373,-0.08088423,0.007121414,-0.42693233,-0.05475898,0.08315399,-0.2927081,0.43594915,-2.75885,-0.20991527,-0.046589278,0.18439466,-0.33271855,-0.18852884,-0.07507983,-0.44837412,0.15257461,0.32874638,0.44687718,-0.6633205,0.5093187,0.50177693,-0.43233573,-0.19770387,-0.6470603,-0.06289446,-0.02570433,0.4772088,0.10467544,-0.061143577,-0.13341993,0.26787198,0.5984591,-0.01087359,0.15765776,0.27132162,0.35394362,0.17400053,0.6189487,0.03724032,0.58908963,-0.19953674,-0.1365978,0.44788417,-0.2213745,0.1694233,-0.17371967,0.082316115,0.35235763,-0.34379783,-0.99681467,-0.6626587,-0.3342143,1.1381836,-0.41695654,-0.44346672,0.27971852,-0.08056223,-0.10029964,0.17221156,0.39595303,-0.075184494,0.015089843,-0.7450279,0.26344326,-0.040278703,0.15122601,0.077522166,-0.01628258,-0.32259184,0.7114165,-0.016213993,0.63124275,0.30539143,0.19982785,0.0192779,-0.40689746,0.10908535,0.6947662,0.23064843,-0.057466183,-0.1425618,-0.24990344,-0.07673451,-0.05604229,-0.08339936,0.42034507,0.75991106,0.06472949,0.17506702,0.22108859,-0.06865473,0.06585522,-0.14160806,-0.23095825,0.10714264,-0.039184622,0.39651322,0.71317315,-0.13628754,0.46354353,-0.33443213,0.37396595,0.016811656,-0.5751208,0.66748655,0.42765853,-0.2301541,0.031966683,0.4579355,0.47130448,-0.30112743,0.43995315,-0.63340026,-0.12694834,0.6054512,-0.1645001,-0.41739073,0.223953,-0.16329339,0.14664727,-0.7593351,0.34200257,-0.25307375,-0.27657607,-0.342424,-0.104836285,-3.7081454,0.18566884,-0.08603631,-0.20661332,-0.11151362,-0.058413282,0.33275333,-0.69775486,-0.5370204,0.06398712,0.20179835,0.4379293,-0.018114835,0.07920765,-0.34323847,-0.05707417,-0.06700005,0.2064612,-0.019922942,0.29337704,-0.14743862,-0.41762555,-0.1521653,-0.073534146,-0.5871739,0.19468161,-0.5529736,-0.442775,-0.038866017,-0.51293176,-0.18515846,0.5437468,-0.24071783,0.006508314,-0.14096302,0.106463596,-0.25100702,0.26176402,0.12026688,0.12553243,0.11041486,-0.014019452,0.06519808,-0.30244228,0.44967002,0.027629638,0.36711943,0.13718583,0.109171785,0.14734262,0.4255401,0.52825975,-0.18198162,0.87777925,0.35134873,-0.18213877,0.30923492,-0.3763429,-0.049793117,-0.5451344,-0.49708974,-0.092148244,-0.45326084,-0.52268565,-0.08581756,-0.31486088,-0.7202763,0.54526335,-0.007864386,0.22469829,-0.08017831,0.1323535,0.53674465,-0.1301582,0.10810583,-0.19521332,-0.15442646,-0.655067,-0.294745,-0.6212008,-0.4525765,0.15854673,0.9888904,-0.30925187,0.052787308,-0.1476585,-0.2916681,-0.04573502,0.011798196,0.0058449805,0.40629822,0.3493739,-0.06593579,-0.6249401,0.44868356,0.017956182,-0.05902959,-0.4378739,0.037936613,0.633434,-0.7205169,0.5850972,0.33453304,0.109032266,0.09191607,-0.5067644,-0.29692847,-0.077737555,-0.233888,0.5867965,0.017772896,-0.63268983,0.48865837,0.27703825,-0.4288522,-0.65132123,0.27945232,-0.056595758,-0.24588422,0.05224684,0.27837065,0.03590451,-0.08822921,-0.2793858,0.19685285,-0.43223888,0.24965343,0.20204443,-0.024833128,0.3101622,0.009889513,-0.3586685,-0.6910573,-0.12061626,-0.41335243,-0.33427957,0.26564425,-0.089674175,0.0023648627,0.020150438,0.040022917,0.43677604,-0.21727906,0.058031604,0.22695696,-0.21218012,0.2753899,0.46340024,0.30504867,-0.37998438,0.43475842,0.16320294,-0.14214797,0.0080047995,-0.07115242,0.40526897,0.040962152,0.326603,-0.15529102,-0.15370935,0.42174202,0.62068844,0.13098432,0.36812958,-0.105207495,-0.20105621,0.47086352,-0.035380773,0.15893117,0.015237302,-0.377203,0.01470235,0.09150314,0.2276926,0.3935461,0.37921622,0.27557886,0.12815642,-0.18540026,0.09854221,0.22108027,-0.14084797,-0.9416419,0.34856313,0.30223143,0.775556,0.534867,0.0120949745,-0.12003088,0.716817,-0.31581363,0.15427902,0.40255713,-0.022672683,-0.64540076,0.66075766,-0.6522582,0.27748626,-0.17457522,-0.019727506,0.17891158,0.07470819,0.35357195,0.6891871,-0.113470316,0.0074631386,-0.04844959,-0.15435502,-0.142802,-0.30277395,-0.017978258,-0.46537954,-0.3432838,0.6362722,0.4081272,0.29857942,-0.14465946,-0.024831975,0.12527621,-0.15946972,0.19739136,0.03830043,0.025384862,0.17400458,-0.57852423,-0.30299023,0.51011276,-0.060733672,0.12028523,-0.2886524,-0.2838521,-0.0574641,-0.39048275,-0.07239424,-0.017299773,-0.4789684,0.005728565,-0.17854902,-0.40518865,0.23690608,-0.17874913,0.124165505,0.07380343,-0.016821517,-0.18647096,0.19327864,0.10450328,0.86022794,0.07702474,-0.22633381,-0.39752805,0.102219656,0.23822135,-0.28617626,-0.0981576,-0.3609107,-0.014767274,-0.48421,0.49575683,-0.12089042,-0.5493649,0.19789335,-0.1645328,-0.04285788,0.5502116,-0.14766201,-0.36877507,-0.05622229,-0.16413145,-0.43070468,0.04833314,-0.25702572,0.23815824,0.33981687,-0.13657176,-0.065460294,-0.19315158,-0.085298896,0.54754925,0.08906148,0.43569216,0.25217342,-0.024662599,-0.36561766,0.088359706,0.26360193,0.41250527,0.19293436,0.098631874,-0.43132025,-0.3481529,-0.24419841,0.17678411,-0.16114438,0.22591713,-0.05458781,-0.21420795,0.850167,0.0318375,1.2384058,0.109256975,-0.27716902,0.12458202,0.43580222,0.009773333,0.12391706,-0.44808713,0.8312756,0.54763967,-0.12757716,-0.16315977,-0.50330794,-0.25836247,0.22743171,-0.28427652,-0.045763686,-0.11292458,-0.6171981,-0.4444923,0.3567767,0.11296899,0.22206351,0.058756232,-0.05756715,-0.06925386,0.08232334,0.391881,-0.52771914,-0.20011449,0.07689929,0.24747682,-0.06026122,0.10701488,-0.46857774,0.3869179,-0.49760768,0.18751715,-0.38655606,0.036379866,-0.20589025,-0.19468689,0.073582515,-0.12226178,0.2742012,-0.22216703,-0.54765326,-0.15881874,0.5173599,0.07933996,0.20199528,0.7102737,-0.28786367,0.18620317,0.17894983,0.48350063,1.1761045,-0.3764386,-0.008719847,0.4242818,-0.33034128,-0.6214805,0.3021846,-0.21011469,-0.14142081,-0.096729025,-0.4580126,-0.42958015,0.2891246,0.11477798,0.044314973,0.086280465,-0.5335342,0.011411641,0.38971823,-0.21548799,-0.23251706,-0.39068314,0.3271431,0.81211007,-0.36392245,-0.38069886,0.10815122,0.24109752,-0.39573663,-0.52059525,-0.1425781,-0.18981034,0.3535235,0.18608537,-0.216961,-0.0025526881,0.1467031,-0.34265295,0.20149335,0.24993066,-0.36663067,0.18247736,-0.079962246,-0.11189526,0.87867737,-0.20122235,-0.13984266,-0.7076607,-0.525933,-0.9802122,-0.4285947,0.29639745,0.119339295,-0.07667744,-0.34632975,0.056991816,-0.12387799,-0.154776,0.0014757514,-0.5689969,0.37879705,0.04450624,0.52647877,-0.24126722,-0.8496916,0.11342663,0.1924218,-0.08915712,-0.6461111,0.6783188,-0.1651873,0.76839495,0.07856592,-0.113268614,0.0421344,-0.3750897,0.026964165,-0.3751325,-0.1960293,-0.8433102,0.15959314,285 -52,0.44965932,-0.012491286,-0.23826784,-0.1366867,-0.31437886,0.101716176,-0.22098011,0.21704859,0.16463405,-0.57991976,-0.033653878,-0.107677326,-0.014138777,0.161564,-0.2535969,-0.7290776,0.14316618,0.049479064,-0.38313323,0.56716096,-0.4356107,0.3760401,0.04324229,0.12789331,0.007785082,0.27588117,0.38987175,-0.058422975,0.0017961413,-0.1523394,-0.15686563,0.24553709,-0.63687915,0.4521041,-0.042616468,-0.23839067,0.13887474,-0.27591467,-0.17623952,-0.5533166,0.15832746,-0.6538628,0.26468623,0.14513141,-0.18974724,0.2782632,0.21895248,0.21468097,-0.11308496,0.07889122,0.13743596,-0.15942061,-0.116549134,-0.2537914,0.09203362,-0.45714283,-0.4159016,-0.0821794,-0.586559,-0.44691956,-0.21304591,0.16307838,-0.32118967,-0.137227,-0.12535065,0.43755835,-0.38789898,-0.17369556,0.26489893,-0.32077312,0.19234887,-0.5288471,-0.16886652,0.053588435,0.20563078,-0.1404899,-0.1856145,0.3630055,0.076297544,0.45964378,0.07842146,-0.28091693,-0.15592128,-0.22324327,0.22324073,0.46088713,-0.22844931,-0.43576038,-0.096295685,2.226606e-05,0.10610615,0.064138375,0.18205222,-0.22534409,-0.08958802,-0.08638117,-0.12738921,0.39750665,0.4835028,-0.46380997,-0.10863851,0.24527457,0.39816368,-0.025452368,-0.08010955,0.0037576593,-0.05999583,-0.3602889,-0.26493955,-0.00798963,-0.061855376,0.47252095,-0.15902916,0.25174177,0.47919813,-0.23205343,0.16702087,0.031545974,0.025633907,0.15825167,-0.20490783,-0.20338032,0.31312552,-0.67995304,-0.1712704,-0.3419224,0.76004934,0.12039408,-0.6308775,0.30422986,-0.4322505,0.036446624,-0.06817872,0.4950326,0.5667689,0.42222828,-0.018100474,0.6815476,-0.5311543,0.055025645,-0.29218072,-0.18313044,0.13442001,-0.10166806,0.17657995,-0.3346434,0.012465667,0.117734134,0.121244535,-0.121423125,0.21223143,-0.6089439,-0.10775768,0.16233835,0.68067425,-0.28705552,0.010785263,0.65435374,1.1696911,0.80739605,0.105092496,0.9369353,0.047718905,-0.10033597,-0.093550645,-0.047277864,-0.4208158,0.20197876,0.40352035,0.7224667,0.1524213,0.06864306,-0.10091931,0.24837048,-0.31371656,-0.20703965,-0.17909564,0.5433512,0.015626295,-0.00011508539,-0.3636312,-0.1492497,0.11454609,0.12494828,-0.016588364,0.3180973,-0.1543846,0.1817218,0.059442677,1.1944697,-0.09306176,0.16196781,0.08307053,0.4066356,0.2634265,-0.08366559,0.13821763,0.26742357,0.20980012,0.11107563,-0.43663025,-0.08834988,-0.1776151,-0.5468403,-0.040024888,-0.36711106,-0.060097806,-0.04992187,-0.43408358,-0.19515662,0.018778011,-0.12562588,0.31406996,-2.9007874,0.007203538,-0.16946863,0.29760283,-0.23910466,-0.22198145,-0.0829051,-0.39019823,0.52698654,0.42982638,0.3816856,-0.5305895,0.30380118,0.458161,-0.37400776,-0.05797123,-0.4941906,0.005290745,-0.22430584,0.46658736,0.018734422,-0.20542446,0.027276723,0.290318,0.49352965,0.084651224,0.19502057,0.1659131,0.14282319,0.00948851,0.3282252,0.12737441,0.3016094,-0.333746,-0.11583507,0.2696861,-0.29163188,0.009271257,-0.14385018,0.026637815,0.22006294,-0.26255026,-0.65827006,-0.5698332,-0.34314194,1.1583049,-0.18830335,-0.59894204,0.26093385,0.07516149,-0.13567972,-0.050909847,0.22916009,0.014075559,0.18931614,-0.66018724,0.16244093,-0.12699786,0.058963932,0.036980562,-0.058486316,-0.6799762,0.70266634,-0.216324,0.433699,0.372119,0.34303904,-0.25484213,-0.42920226,0.06936569,0.94977653,0.48367178,0.08901264,-0.025368657,-0.2250367,-0.03939294,0.01507907,0.3085009,0.6099121,0.7803022,-0.056551732,0.18263602,0.3565455,0.03392306,0.09284076,0.009030728,-0.3693114,-0.011808269,0.0019408092,0.72072214,0.53281283,0.04100976,0.38066864,0.070111565,0.28518254,-0.21614486,-0.48015577,0.34596795,0.67862815,-0.07057515,-0.16978943,0.66014844,0.55292517,-0.05672809,0.48500454,-0.6312628,-0.5221623,0.43226874,-0.22340038,-0.43921274,0.100933634,-0.31987065,0.1335913,-0.58829945,0.465468,-0.36248407,-0.6217348,-0.54384196,-0.24736331,-3.2972555,0.15468323,-0.2585017,-0.16394153,-0.07240133,-0.13673326,0.24045272,-0.6298528,-0.31755286,0.3136261,-0.09814466,0.57621616,-0.117844656,-0.019552348,-0.24303159,-0.30083427,-0.117386244,0.2621076,-0.013908058,0.0765272,-0.028765664,-0.21715108,0.15560842,-0.077294044,-0.33920917,0.1515859,-0.3644693,-0.6034839,-0.13585556,-0.35336605,-0.19133013,0.5932527,-0.34801465,-0.018635504,-0.21215545,-0.040481977,-0.06881818,0.21939199,0.22730523,0.23595786,0.103812926,0.062165186,-0.17007618,-0.30623096,0.29333794,0.15038669,0.33560026,0.416775,-0.16654205,-0.026098669,0.43515068,0.3139395,-0.03537848,0.7586934,0.21206012,-0.09256831,0.36768812,-0.2477442,-0.32966617,-0.5853272,-0.4075388,0.06507135,-0.31284374,-0.31290329,-0.08757134,-0.30750608,-0.65021044,0.47883752,-0.08369504,0.27525824,-0.21102414,0.14523414,0.23619343,-0.10098477,-0.14859757,-0.12457548,-0.06475826,-0.46129352,-0.21891835,-0.7453611,-0.3106704,0.16948691,0.79592633,-0.2851969,-0.08805095,0.1004091,0.15612826,0.14138559,0.08278825,0.07160897,0.0020084828,0.34476697,0.062279567,-0.64731216,0.50712514,-0.18422717,-0.09775225,-0.45721623,0.058964767,0.4952042,-0.6163104,0.37199107,0.3896444,0.1808221,-0.13247778,-0.5993696,-0.1808601,0.061376873,-0.33920634,0.48739198,0.14428738,-0.8739428,0.44878718,0.23705016,-0.47269452,-0.68828434,0.5727393,0.021839783,-0.2501947,-0.012650445,0.2451276,0.20898128,0.036919795,0.088749975,0.21743569,-0.5356067,0.2682557,0.20853817,0.029430108,0.39434966,-0.14283875,-0.23933503,-0.54197884,-0.15858585,-0.52445364,-0.23386133,0.019071031,-0.0989252,-0.14496441,0.40832448,-0.0824069,0.48868418,-0.24479392,0.17941289,-0.0012213737,-0.3607093,0.4819649,0.46699464,0.466466,-0.35226846,0.51018333,0.011515854,0.06013982,-0.2673188,-0.04167296,0.379362,0.090568,0.2335052,-0.14610487,-0.08682843,0.36438978,0.7855643,0.19689384,0.36142927,0.013569582,-0.1467035,0.35497627,0.108921096,0.12727201,0.09811766,-0.3743049,-0.18130352,-0.012788663,0.069879845,0.3550202,0.11703211,0.48836383,0.06712569,-0.2705531,0.09778094,0.17378713,-0.09858515,-1.1360233,0.28502744,0.07738898,0.65261054,0.65832394,0.113726474,0.107746765,0.44346696,-0.18788132,-0.0020478629,0.17911091,-0.0019715354,-0.3368834,0.6213168,-0.58607745,0.28073788,-0.124953486,-0.0069854828,-0.18947333,-0.0023039225,0.35999545,0.72201806,-0.16308215,0.13903534,-0.13868588,-0.1964524,0.067890696,-0.3049494,0.12398377,-0.43416163,-0.3277265,0.62001,0.2826021,0.32879215,-0.070504315,-0.04094824,0.11429809,-0.13239895,0.13238302,-0.03934279,-0.01668353,-0.06016317,-0.42900276,-0.37998968,0.56805146,-0.17061506,0.026203416,-0.059852608,-0.088649005,0.09661504,0.09823198,-0.095547065,0.10931111,-0.53222156,0.16333528,-0.20017375,-0.2638539,0.4860581,-0.32150397,0.08138091,0.16658568,0.058873106,-0.15512474,0.059919696,0.20401281,0.3601163,-0.049789254,-0.25246787,-0.29221907,-0.022372179,0.06809507,-0.07630835,0.022975534,-0.12842008,0.26780623,-0.67334205,0.33319858,-0.061276227,0.003089629,0.28742558,-0.21344957,-0.041974574,0.4512525,0.08090803,-0.05662099,0.253685,-0.15534928,-0.07882127,-0.22170861,-0.24208954,0.13281068,-0.10509639,-0.01795136,-0.018478893,-0.1420052,-0.11802977,0.2877295,0.0629669,0.15711492,0.21849573,0.050747603,-0.44373477,0.15591487,0.08264783,0.26731783,-0.004643023,0.115928,-0.21492305,-0.5294821,-0.30973634,0.10349108,-0.15732431,0.0524356,0.052140437,-0.25784346,0.8722395,-0.009648927,1.0704924,-0.018436775,-0.3639718,-0.08300722,0.46737188,-0.21836588,-0.01271082,-0.25018582,0.9971074,0.54357415,0.004381068,-0.057058048,-0.41578528,-0.017320268,0.22658585,-0.19949971,-0.1531179,-0.13772225,-0.5916587,-0.36581314,0.19524391,0.2881968,-0.03569252,0.047183596,-0.12778075,0.27194738,0.22265172,0.3975864,-0.74236417,-0.026768468,0.26985946,0.21274695,0.16807985,0.1722173,-0.23521191,0.3869121,-0.5537796,0.18405423,-0.19846706,0.00030069053,-0.12627771,-0.31154338,0.11282006,-0.01859676,0.3800862,-0.23687367,-0.38500124,-0.13907385,0.3810464,-0.04898086,0.135937,0.5344535,-0.16501492,0.04967898,-0.117832795,0.44626063,1.0611534,-0.17251709,-0.12824449,0.3643983,-0.39878082,-0.67950076,0.09213553,-0.33238292,0.03812124,-0.04811059,-0.45079982,-0.38311717,0.17165512,0.22957946,0.030199585,0.1392531,-0.5515744,-0.28088325,0.20333359,-0.31705576,-0.39587003,-0.18428764,0.31247306,0.7080595,-0.28174794,-0.06997158,-0.059469245,0.39309523,-0.30169493,-0.6764015,-0.009748675,-0.24449714,0.27886802,0.16078381,-0.13740347,-0.12646283,0.1789324,-0.3620355,0.025721971,0.35268247,-0.17975748,0.04933797,-0.10914438,0.15482977,0.7097374,0.071779504,0.12740937,-0.64090157,-0.45344073,-0.7511924,-0.44520196,0.17939194,0.17452379,0.017766366,-0.4832697,-0.077077255,-0.13902506,0.046384573,-0.14481443,-0.2299627,0.39137694,0.221109,0.3369615,-0.17857711,-0.70918655,0.08056677,0.13129997,-0.021194763,-0.3360501,0.38530958,-0.123219855,0.67620486,0.1264428,-0.117245056,0.023456853,-0.5245162,0.17925361,-0.23397177,-0.2312477,-0.59004503,0.14277215,309 -53,0.45009357,-0.06826473,-0.30222476,-0.13671388,-0.24530937,0.17724206,-0.06168486,0.46605122,0.15272287,-0.40902397,-0.17848852,-0.29855818,0.06474167,0.2935275,-0.17215145,-0.66139877,0.19376224,0.11290436,-0.33860528,0.40233994,-0.49720737,0.5943419,0.19553661,0.14655131,-0.036859002,0.23819372,0.25403905,-0.23310801,-0.0940935,-0.30506286,-0.30934548,0.35095674,-0.67925155,0.14361581,-0.20196016,-0.36265928,0.26232523,-0.47734365,-0.2696553,-0.7306883,0.12130766,-0.6623762,0.6220757,0.116263516,-0.18748668,0.21414006,0.049973115,0.20349748,-0.11663812,0.18193245,0.16468616,-0.14304852,0.01425378,-0.14769092,-0.2966296,-0.65742517,-0.53076833,0.063609414,-0.3911975,-0.35367584,-0.26095837,0.08198275,-0.39122823,-0.004969187,-0.1509873,0.31453156,-0.41460532,0.029891461,0.20704773,-0.22054727,0.16817735,-0.56563103,-0.061735965,-0.13758488,0.110854305,-0.32210696,-0.17720063,0.22504084,0.34516832,0.40138042,0.03328629,-0.3239556,-0.039287496,-0.13143837,-0.04728149,0.69269305,-0.32890666,-0.6295129,-0.053345677,0.069863215,0.22823545,0.22410806,0.08016245,-0.23613296,-0.17039919,-7.2252005e-05,-0.32793945,0.34806553,0.48335966,-0.47555664,-0.27857628,0.24618348,0.38702175,0.09401432,-0.008649753,0.014869377,-0.05166199,-0.5729368,-0.20823562,0.06956543,-0.12239089,0.47483253,-0.16479713,0.18920235,0.7854651,-0.20501094,0.14053103,-0.039116308,-0.06767574,-0.081153676,-0.22014296,-0.22149631,0.25467765,-0.53832585,0.084506966,-0.25348026,0.9064138,0.22128713,-0.6306827,0.3281424,-0.4794782,0.075739056,-0.06457228,0.5006917,0.49766755,0.3423829,0.19748834,0.50103706,-0.4844163,0.068627015,-0.14570703,-0.40950495,0.1014967,0.03040247,-0.066303305,-0.2775025,-0.004308045,0.09728837,-0.08358221,0.14113961,0.27280858,-0.6558589,0.006008068,0.18082234,0.77725554,-0.37305295,-0.15122023,0.69985473,0.8704008,0.750119,0.0014455812,1.4046988,0.35476714,-0.11826256,0.05422292,-0.24990824,-0.47104955,0.19011074,0.4361843,-0.43586433,0.21359883,0.07966452,-0.026029395,0.28801292,-0.24258098,0.023052782,-0.15181123,0.123183444,-0.07332901,-0.23658241,-0.43258697,-0.26856166,-0.036484316,-0.03403132,0.2154623,0.2607288,-0.15480636,0.26862717,0.10076937,1.349501,-0.036339775,0.02781589,0.0536148,0.3078626,0.39769703,-0.03101401,0.13267995,0.35558474,0.3709222,-0.03506522,-0.49027187,0.056252144,-0.19999456,-0.55698514,-0.15924793,-0.28734666,-0.06646349,0.12779517,-0.44840798,-0.10344437,-0.0076200143,-0.10085789,0.58721614,-2.6407447,-0.11162514,-0.031509124,0.25687465,-0.18843529,-0.48556483,-0.13798551,-0.4954117,0.42022848,0.35757926,0.3866991,-0.77487403,0.21839282,0.42461675,-0.41019145,-0.26823223,-0.7084134,-0.042798515,-0.102550715,0.3252015,0.144907,-0.0593163,-0.034783714,0.08505459,0.6165321,-0.09463806,0.06530548,-0.016265664,0.4262998,0.039441526,0.43439096,0.18270566,0.5587867,-0.0022235736,-0.12472873,0.38189372,-0.3427772,0.24787122,-0.081923775,0.15947989,0.23482892,-0.22484162,-0.755123,-0.62256336,-0.49210167,0.9184728,0.061811194,-0.3126794,0.13370524,0.16687159,-0.26945853,-0.022839487,0.41268197,-0.25417686,0.07441811,-0.64414746,-0.021942772,-0.022610188,0.044101812,-0.027350692,0.01516486,-0.4826547,0.5695889,-0.047124375,0.34318197,0.3212886,0.2605259,-0.24737509,-0.48248267,-0.16020392,0.9103038,0.55320716,0.12894586,-0.21874025,-0.18943861,-0.24859825,-0.08831225,-0.029963566,0.52477455,0.8911046,-0.046443164,0.039464414,0.26717642,0.1347881,0.11021476,-0.07434945,-0.31502822,0.15407029,-0.008025162,0.60912025,0.37385786,-0.1826345,0.40524113,-0.086364985,0.57046914,-0.15301526,-0.4800512,0.4114769,1.0659993,-0.16597562,-0.007443847,0.61145544,0.35785848,-0.24757972,0.3756895,-0.68408704,-0.28957075,0.62956285,-0.20193385,-0.42818362,0.2927412,-0.2307441,0.0408725,-0.8623804,0.49758792,-0.1518028,-0.44207442,-0.48926395,-0.17849721,-3.5541794,0.1340473,-0.22006118,-0.009874959,-0.09830075,-0.17534234,0.109057516,-0.5207662,-0.27300292,0.17079651,0.13347554,0.46745878,-0.04672323,0.13992839,-0.34506708,-0.30760977,-0.22458172,0.2512135,0.026048433,0.24589415,-0.15487003,-0.2895883,0.113185115,-0.25903058,-0.4875038,0.18309629,-0.6801925,-0.4676381,-0.19158365,-0.651128,-0.25522867,0.74307615,-0.39421204,0.04966822,-0.1190694,0.101040624,-0.13957387,0.3528782,0.20223917,0.13682826,-0.068588145,0.026400814,0.053386703,-0.37945807,0.33800358,0.21951431,0.39384073,0.3194284,-0.1229673,0.04318403,0.4474368,0.43249297,-0.04022055,0.70634055,0.3184141,-0.106138915,0.41483378,-0.22813523,-0.40759218,-0.5693715,-0.5087138,-0.030261658,-0.39077312,-0.3806951,-0.17878455,-0.32247615,-0.62487686,0.5190778,-0.017060585,-0.047630146,-0.15276599,0.25718677,0.3670417,-0.23544541,-0.11420581,-0.041044,-0.03179808,-0.3963755,-0.33348745,-0.62890923,-0.49652103,0.10322596,0.85085267,-0.15825775,-0.036986645,-0.17917001,0.21328667,-0.03770163,0.011467308,0.06304647,0.046306007,0.32276875,-0.27304718,-0.64932853,0.59940565,-0.10991657,-0.3348916,-0.5863997,0.15451086,0.6529668,-0.7040514,0.51104546,0.46249935,0.019284993,0.02344076,-0.55284315,-0.2322242,0.1318674,-0.24942887,0.4107251,-0.046291843,-0.60866034,0.49953887,0.36326274,-0.3689088,-0.57072544,0.6033034,-0.009004949,-0.37964648,0.12277734,0.35687992,0.030061945,-0.027724836,-0.12516646,0.2062802,-0.58227694,0.258398,0.25961232,0.10537677,0.5381402,-0.051779196,-0.30264783,-0.87184817,0.06717482,-0.44102353,-0.3506274,-0.04628554,-0.033246286,0.018844858,0.37654954,0.018103473,0.40907568,-0.40293592,0.14624067,-0.13311419,-0.28044286,0.4007616,0.34791195,0.38809556,-0.2101185,0.5296248,0.07094013,-0.09711871,-0.067367494,0.14543515,0.5406311,0.076235,0.24884138,-0.05555884,-0.13769364,0.36070973,0.8068502,0.15595952,0.31933326,0.16412756,-0.08633782,0.27429813,0.14262846,0.13109525,0.25312978,-0.33952713,-0.10744174,-0.1313372,0.019287907,0.5694628,0.13133045,0.25691658,-0.06914228,-0.34903485,0.13200767,0.18542938,0.20827937,-0.7688954,0.12729366,0.12867428,0.64974976,0.37789226,0.09368623,0.049466647,0.518689,-0.2522604,0.16868575,0.19726202,0.0153948255,-0.472655,0.5729084,-0.5785444,0.4197085,-0.030367803,-0.02839464,-0.054569557,-0.13382638,0.36665097,0.930304,-0.18922088,0.12501095,-0.038570385,-0.16295408,0.14267582,-0.49542975,0.18173906,-0.33538902,-0.24961981,0.7441577,0.38446438,0.26618373,-0.18198623,-0.0038016587,0.24432805,-0.18463004,0.017991245,-0.012919322,0.19630182,0.0552743,-0.42257783,-0.27424106,0.62330395,0.0056038685,0.061844286,-0.10208309,-0.22892688,0.3142891,-0.23849052,0.008299299,-8.698553e-05,-0.70694304,0.07742496,-0.37418348,-0.54870766,0.42904845,-0.12799823,0.21963279,0.17272255,0.06312966,-0.13105272,0.30844185,0.28324676,0.80602133,0.06444504,-0.14927867,-0.39107436,0.19588856,0.18391594,-0.3124929,-0.14973302,-0.17476827,0.0869147,-0.6086776,0.3107036,-0.043271847,-0.26147363,0.072592095,-0.1908266,-0.09546764,0.40038958,-0.105132535,-0.20433578,0.21339774,-0.14166185,-0.14353539,0.042982057,-0.13016303,0.280127,0.23643754,-0.09933333,-0.03691629,-0.23981181,-0.19428957,0.2906858,0.019796804,0.33016783,0.16375537,-0.010773741,-0.41333294,0.011893913,-0.0054832846,0.31755117,-0.21315816,0.020036556,-0.16100064,-0.47323555,-0.2877294,0.008797161,-0.1245698,0.2464447,0.12245832,-0.2828,0.85135514,0.08623305,1.1602904,-0.056516826,-0.4333714,0.029935066,0.5272542,0.03043868,-0.008473655,-0.3567948,1.1925589,0.586407,0.029684048,-0.20505527,-0.22011986,0.036235776,0.18258825,-0.19691607,-0.15375079,-0.05018353,-0.59260917,-0.4178568,0.33024853,0.27654168,0.112610996,0.07613186,0.006979188,0.29639333,0.1512401,0.4378472,-0.69163704,-0.081369944,0.21000972,0.31169292,-0.030939024,0.18403721,-0.4187033,0.50728476,-0.50606656,0.18318686,-0.38556826,0.1260441,-0.31537756,-0.1623072,0.23732865,-0.035936065,0.30916446,-0.41894728,-0.38649967,-0.19207829,0.27592447,0.061804995,0.2859637,0.69608414,-0.23621833,-0.02074257,-0.07064095,0.63728374,1.1616383,-0.22162893,-0.10061358,0.5868689,-0.45523158,-0.5527356,0.22144678,-0.25771195,-0.011083964,-0.08529285,-0.30115372,-0.32341504,0.28762916,0.12953356,-0.03723654,0.0076028313,-0.5392165,-0.048483506,0.4160425,-0.3981595,-0.29500347,-0.3455663,0.59841496,0.85018843,-0.3248198,-0.32908523,0.023393538,0.28483772,-0.39997125,-0.72439146,0.0026414096,-0.18600681,0.540084,0.08128621,-0.1913262,0.06865581,0.0128724985,-0.3026981,0.08364965,0.4055968,-0.3854611,0.1021399,-0.196849,0.08237379,0.84925777,0.0029041432,-0.0817722,-0.7245099,-0.4327031,-0.8835263,-0.57372236,0.64858866,0.330574,0.066818535,-0.52738976,-0.1328676,-0.103529945,-0.12839971,-0.094977595,-0.20779794,0.39713103,0.16293114,0.51589006,-0.23729303,-0.8834529,-0.03957243,0.090318225,-0.18162885,-0.51154315,0.35015213,-0.0044746622,0.8398516,0.1955658,-0.118538424,0.4040133,-0.42962605,0.07115931,-0.35850054,-0.19075301,-0.8104645,0.13269085,322 -54,0.54617673,-0.09075162,-0.5790001,-0.041971,-0.3084819,0.20040563,-0.059659485,0.52765566,-0.014686243,-0.4314536,-0.12093005,-0.04926346,0.00668101,0.26225096,-0.27041405,-0.42821002,0.068773866,0.23943883,-0.49352163,0.5942731,-0.3267723,0.4303679,0.014040172,0.18032883,0.074856564,0.36431083,0.11522086,-0.07294778,-0.2842869,-0.22193994,-0.15919329,0.43084133,-0.5058415,0.12711139,-0.18775244,-0.38434136,0.03787016,-0.43225774,-0.3479367,-0.63680017,0.067223296,-0.63020515,0.6370315,-0.04869181,-0.33421516,0.38253307,0.13725503,0.13332446,-0.104348466,0.02684913,0.03722384,-0.05352458,-0.10735296,-0.35828364,-0.16124037,-0.49657816,-0.4979023,0.09912151,-0.49107733,-0.13355424,-0.17392753,0.09222113,-0.21729057,-0.0018935129,-0.16610521,0.5075653,-0.4684767,0.16065317,0.028596528,-0.03287751,-0.010792773,-0.5628239,-0.115152374,-0.07867257,0.22215036,-0.18445939,-0.102773935,0.19958854,0.29064053,0.43774188,0.0097880075,-0.11243374,-0.2690094,-0.11477858,-0.01605061,0.48926258,-0.27331144,-0.49566132,-0.06380146,-0.06942113,0.19848207,-0.0064768344,0.12943704,-0.17727375,-0.12825541,-0.1684976,-0.2914902,0.29545072,0.4349925,-0.4874851,-0.20152695,0.38268328,0.3692718,0.17802595,-0.22051838,-0.019707877,-0.12185197,-0.4691687,-0.18592669,0.060279593,-0.16632524,0.5814414,-0.10216656,0.30922776,0.5921024,-0.06539685,0.04869257,0.13107611,0.109742306,0.10459126,-0.17052992,-0.17472053,0.12951683,-0.37543708,-0.03469865,-0.099868566,0.79549724,0.045089383,-0.770041,0.35019335,-0.4895205,-0.09547,-0.07251771,0.38319695,0.45225516,0.5472707,0.096879974,0.58122337,-0.28513643,0.050808348,-0.02133432,-0.35025883,-0.022241399,0.090906255,-0.22316751,-0.55895627,0.215005,0.13366795,-0.05219724,0.045983475,0.48226798,-0.52981377,-0.15352254,0.1839187,0.7912583,-0.35921115,-0.26319927,0.6848682,0.88328755,0.9354446,-0.040858872,1.0220995,0.19597992,-0.09079829,-0.011400282,-0.27971154,-0.42140192,0.20922443,0.27438828,-0.15772535,0.20877743,0.035581224,-0.11183542,0.28207538,-0.07395863,-0.09103511,-0.1723127,0.21410985,0.14180677,-0.16447712,-0.38884026,-0.46155167,-0.012227368,0.0709416,0.21351135,0.24978638,-0.18723822,0.33205637,0.19660047,1.656131,0.0067629963,0.103263974,0.111513674,0.41149515,0.31693617,0.02645339,-0.07326536,0.30724913,0.19654351,0.13717234,-0.42630786,0.094164886,-0.13976306,-0.70491266,-0.10333636,-0.3163254,-0.22913325,-0.18153143,-0.661065,-0.22426862,0.042854898,-0.22036609,0.49801403,-2.7001247,-0.06788705,-0.075606495,0.30935243,-0.21606383,-0.49843898,-0.19468974,-0.3100067,0.37747884,0.2976653,0.47353673,-0.6105989,0.59604764,0.3429035,-0.32219693,-0.25444585,-0.41768906,-0.11238602,0.019182695,0.36449787,-0.031365886,-0.017879948,0.15137817,0.10064475,0.4626054,-0.39935243,0.16381213,0.21838546,0.26585695,0.032143705,0.24584958,0.1101412,0.5607338,-0.14345992,-0.2588056,0.3489927,-0.27250835,0.2619351,-0.034100734,0.18156365,0.29932746,-0.4680675,-0.9495981,-0.558509,0.036463447,1.1256723,-0.14998217,-0.2732846,0.15258817,-0.10283857,-0.3884909,-0.030383341,0.23623195,-0.16045517,-0.0049269106,-0.6702073,0.12257974,-0.10607032,0.17871019,-0.0965797,0.04405916,-0.47042823,0.53444046,-0.06314641,0.65833974,0.29914588,0.17224449,-0.2206247,-0.3779953,-0.04850819,1.0362949,0.4693571,0.1277784,-0.20169538,-0.19088939,-0.31958544,0.040348265,0.09058785,0.53352916,0.70663846,0.1278168,0.06696987,0.054904938,0.0045837983,0.13896894,-0.17923385,-0.25504065,-0.04524288,0.06902448,0.5381586,0.4655785,-0.27027887,0.49479762,-0.17365691,0.39793068,-0.1312856,-0.491417,0.4571346,0.85929966,-0.29838914,-0.3244316,0.5231278,0.5730599,-0.26131836,0.2874472,-0.5866959,-0.4112196,0.3860857,-0.24603495,-0.24713482,0.36525294,-0.19185896,0.14782813,-0.92170537,0.3566167,-0.32596278,-0.4551863,-0.32827336,-0.14320157,-3.5996742,0.22095919,-0.11164273,-0.11939725,-0.15176629,-0.19667134,0.16730347,-0.55781865,-0.39117855,0.09581977,0.11210506,0.57634413,-0.0015874077,0.14076644,-0.14404921,-0.43271804,-0.11183867,0.29460168,0.017389886,0.39005265,-0.16479562,-0.45885074,-0.04688192,-0.19417636,-0.47668323,0.12065888,-0.669367,-0.46126226,-0.091195695,-0.5441342,-0.32043117,0.6008828,-0.38012466,0.058407776,-0.25627655,0.038466915,-0.10995005,0.20287019,-0.0015228912,0.05881109,-0.005072508,-0.07466085,0.17005962,-0.25801915,0.12494526,0.121935874,0.28197467,0.38298455,-0.025021926,0.20077282,0.50602,0.56836826,-0.023404844,0.7758681,0.38463572,-0.12704377,0.3831898,-0.20222774,-0.26537317,-0.6316732,-0.49934822,-0.048670348,-0.33889997,-0.26712582,-0.091620415,-0.3053419,-0.74090344,0.6167157,-0.019598573,-0.030167341,-0.084765546,0.44844276,0.4988338,-0.27071622,0.014804428,-0.08983956,-0.15974686,-0.45388392,-0.3106269,-0.6679993,-0.34103465,-0.06960145,1.157066,-0.3326465,-0.06418523,-0.0730318,0.04102951,-0.07096065,0.13192554,0.20049185,0.20608357,0.44367638,-0.35476294,-0.6114534,0.4403726,-0.3623554,-0.31187624,-0.2899813,0.17733333,0.5374782,-0.617303,0.43486923,0.42312056,0.1472333,0.046174124,-0.58345294,-0.026537925,0.09613629,-0.19401424,0.33304358,0.29225612,-0.8235501,0.5158567,0.2934343,-0.23617122,-0.6809951,0.64591753,-0.089271426,-0.44433123,-0.0014771484,0.4057707,0.12099845,-0.090511836,-0.28188384,0.17231992,-0.5051152,0.2633792,0.16212934,-0.038148932,0.2866384,-0.30028346,-0.16691259,-0.7090664,-0.060525596,-0.35929048,-0.45357984,0.20525813,0.07442574,0.11689471,0.118487485,-0.065692,0.4687509,-0.62440264,0.032478966,-0.044204246,-0.2679515,0.3895862,0.32816014,0.51396626,-0.30414605,0.45194897,-0.03161571,0.021666098,-0.077396676,0.1656821,0.5001634,0.0026373267,0.31670278,0.023950405,-0.16945738,0.3219824,0.66188437,0.28241313,0.48028642,0.00664822,-0.2782483,0.18737966,0.05152401,0.10604368,0.118709534,-0.3322817,-0.15187478,-0.13204053,0.12051256,0.59046435,0.1745393,0.2865821,-0.13794726,-0.15998293,0.07852009,0.24994077,-0.034726374,-0.9998122,0.29759112,0.11298844,0.6624196,0.43441835,0.13732915,-0.07829224,0.5480266,-0.32310307,0.20780629,0.28374398,0.02749221,-0.5081047,0.48785007,-0.62245214,0.39859354,-0.09704194,-0.016060358,0.14667656,-0.15423924,0.38539216,1.0391297,0.042380974,0.07209727,0.11112858,-0.40191442,0.0030593649,-0.31970865,0.018025182,-0.44005942,-0.25299135,0.7485254,0.43295035,0.32457507,-0.12515908,0.014994246,0.12421009,-0.14274925,0.0623557,0.038295776,0.44734502,-0.13127148,-0.55539155,-0.27591962,0.59509337,0.027063392,0.025443979,0.14125918,-0.30603588,0.36941367,-0.07310804,-0.015497319,-0.047503777,-0.53543687,0.09715715,-0.26234898,-0.3120916,0.34658134,-0.23574556,0.18737854,0.10878021,0.09656747,-0.3488757,0.341015,0.2642147,0.57465315,0.021865658,-0.24066357,-0.35863304,0.2611534,0.1503464,-0.28809184,-0.2123734,-0.27466294,0.22897848,-0.6458071,0.23899762,0.055975534,-0.18956093,0.055171933,-0.07429778,0.04882365,0.3464781,0.046219807,-0.06245204,-0.053969707,-0.025380768,-0.29407713,-0.13565844,-0.15441456,0.1711405,0.20953959,-0.2444736,-0.10432087,-0.033635627,-0.011999946,0.34100592,0.077648826,0.38081074,0.47697145,0.17253019,-0.4006669,-0.01677395,0.15057369,0.47500673,-0.19960791,0.02974265,-0.34704205,-0.37047747,-0.20361988,0.26734683,-0.28994086,0.21085837,0.20471567,-0.08067276,0.97802436,-0.083405375,1.1507212,0.08392388,-0.29965246,0.13027324,0.4141021,0.06921664,0.057642348,-0.4072528,1.1212467,0.5615003,0.018702019,-0.13425632,-0.26300943,-0.06096808,0.0697003,-0.26468354,-0.19553453,-0.102434814,-0.5728244,-0.34940594,0.25136524,0.16098124,0.23345283,-0.02067036,0.14937927,0.24069817,0.1515772,0.25223002,-0.5947392,-0.12973094,0.31807166,0.26168936,-0.11662132,0.18857503,-0.54193854,0.3870977,-0.62848157,0.0549308,-0.2617649,0.1520094,-0.16849227,-0.28870508,0.2205419,-0.022701517,0.35043353,-0.3749283,-0.32345292,-0.24539995,0.2917217,0.038253963,0.045333162,0.59757054,-0.25455597,0.16678327,0.050863106,0.5215932,0.90465367,-0.19989747,-0.11144165,0.42270252,-0.32350516,-0.6818217,-0.011872277,-0.24631718,0.2092887,-0.19186401,-0.15240031,-0.46561712,0.43216568,0.17997748,-0.019423373,0.011452043,-0.47050288,0.039373532,0.51786554,-0.35936004,-0.20190963,-0.20979379,0.28087252,0.74554145,-0.3179274,-0.31575057,0.03267587,0.29411113,-0.1356104,-0.613625,-0.012667857,-0.35884652,0.28134233,0.20847967,-0.32018137,-0.08919047,0.025305215,-0.31857675,0.14976388,0.51673704,-0.22443289,0.049926743,-0.44774586,-0.014446616,0.8562203,-0.07917392,0.14106254,-0.38420588,-0.54989946,-0.7904168,-0.39393967,0.33621913,0.13311608,-0.07774671,-0.6413522,-0.059918493,-0.19200464,-0.4491699,-0.10213144,-0.20057794,0.4538679,0.15457672,0.19959292,-0.060301915,-0.86663735,0.15804172,0.033081453,-0.18342793,-0.48993054,0.43991923,-0.13749692,0.9086578,0.11507535,-0.024597013,0.42568767,-0.5681301,-0.06423257,-0.3204435,0.01977292,-0.66735446,0.13686144,337 -55,0.5374982,-0.1569744,-0.5738089,-0.13514352,-0.2255387,-0.055583645,-0.17691877,0.61396873,0.17771862,-0.45563763,-0.06594219,-0.13466589,-0.03199487,0.38727817,-0.14384912,-0.6593915,-0.07759872,0.0964347,-0.54363286,0.48600394,-0.4380411,0.186434,-0.08555543,0.44871098,0.22776939,0.3014164,-0.052942917,-0.05648671,-0.080787696,0.0011901706,0.09701577,0.100097045,-0.68651116,0.08361436,-0.10157156,-0.392454,-0.1390262,-0.51960516,-0.41141802,-0.75572914,0.37117332,-0.7192755,0.51210225,0.055744864,-0.22918579,0.01772958,0.0065906383,0.4483801,-0.28277653,-0.003086187,0.106729396,-0.0099784285,-0.00031088293,-0.10674423,-0.18583064,-0.2607861,-0.55068445,0.044488557,-0.38594562,-0.14527684,-0.06518297,0.045215275,-0.30149797,0.0920794,-0.10247111,0.5186775,-0.3820355,-0.052894056,0.45911926,-0.09537995,0.30749625,-0.46413213,-0.06367393,-0.17553115,0.2525088,-0.18248196,-0.33924985,0.3950156,0.15248969,0.50392133,0.03785745,-0.32237554,-0.28378665,0.008020431,0.17027837,0.4187185,-0.31401405,-0.45130664,-0.12637344,0.088967845,0.13322663,0.21643433,0.1694883,-0.27960777,-0.15014932,0.12668952,-0.19891153,0.33686662,0.56535226,-0.17186396,-0.3067302,0.24256259,0.5792286,0.22898135,-0.03842303,0.1934515,0.1203171,-0.60592127,-0.3025927,0.10955398,-0.07162394,0.2590987,-0.08203316,0.21805526,0.72948474,-0.25454846,0.060549207,-0.045004733,-0.12703753,-0.0021803528,-0.40381324,-0.34741357,0.21148133,-0.42613196,0.2889282,-0.13741136,0.784644,0.24849313,-0.81257945,0.244178,-0.68741363,0.18174314,-0.21284103,0.56949794,0.8035209,0.4438437,0.22258888,0.7085111,-0.40021697,0.20925052,-0.11618219,-0.34439456,0.070405774,-0.22024676,-0.014114283,-0.3864832,0.00994505,-0.1319988,-0.14703166,0.15377866,0.19468763,-0.5360964,-0.08609586,-0.0016985629,0.85558516,-0.2903066,-0.043961585,0.79200083,0.83797944,0.92920375,0.15289477,1.0975561,0.21471255,-0.25260493,0.408292,-0.22676553,-0.92213356,0.3831539,0.26644456,-0.10641527,0.2826931,0.053783305,-0.06978202,0.41803133,-0.39205816,0.24410799,-0.2310057,0.21889737,0.1425367,-0.33470333,-0.21635596,-0.19100499,-0.1419815,-0.039204128,-0.059503913,0.2453951,-0.15814663,0.33237857,-0.040430892,1.8295555,0.08072075,0.11058675,0.08559807,0.48579842,0.16062315,-0.19305569,-0.1831169,0.12719959,0.35232174,0.12946975,-0.5912903,0.15696898,-0.17354004,-0.46471682,-0.13596475,-0.34777695,-0.01594117,-0.30648255,-0.4899587,-0.18214533,-0.13091177,-0.08949603,0.3635041,-2.5577912,-0.22979274,-0.028402783,0.30903673,-0.31359148,-0.31698108,-0.1755209,-0.48003033,0.43715757,0.34754813,0.4120468,-0.6445106,0.5435105,0.39411643,-0.5301697,-0.028508725,-0.62511146,-0.20254692,0.15363464,0.12259179,-0.0015524104,0.016866237,-0.010358579,0.13363142,0.46207762,-0.15866582,-0.040615402,0.21901889,0.38605937,0.051517516,0.5242357,-0.1295561,0.5812569,-0.41612536,-0.20720217,0.28287363,-0.3976431,0.10992458,0.0918802,0.06647638,0.31886733,-0.5574237,-0.9862287,-0.6564143,-0.23409177,0.9637566,-0.11019326,-0.31347483,0.30069026,-0.4086877,-0.16182208,-0.14813836,0.4171299,-0.038336348,-0.04218044,-0.8581822,-0.047132023,-0.21604718,0.21848215,-0.012740953,-0.0025916193,-0.3344173,0.5414924,-0.11221254,0.48048115,0.45259565,0.15765196,-0.1766367,-0.5257673,0.14883167,0.9076756,0.2707683,0.19551165,-0.31083417,-0.1432962,-0.397178,-0.038391117,0.026047979,0.47369337,0.8299891,-0.12715048,0.1974329,0.24504393,-0.028145295,-0.019030832,-0.091178596,-0.3053538,-0.1518732,-0.11826022,0.5430417,0.7063383,-0.2637635,0.48494786,-0.045231137,0.46085197,-0.18495406,-0.39515424,0.54252946,0.7768482,-0.17526394,-0.30172852,0.50695133,0.2921263,-0.3095997,0.46651927,-0.52034175,-0.15807974,0.4306833,-0.14753185,-0.35809135,0.31531113,-0.31067953,0.1557641,-0.99528503,0.30816942,-0.3308446,-0.22862741,-0.5654056,-0.22074765,-3.0638106,0.13340606,-0.20014352,-0.22436792,-0.113426775,-0.068310335,0.18532875,-0.53024876,-0.7328658,0.07943588,0.06001709,0.7830064,-0.080519974,0.13907579,-0.20811465,-0.14495699,-0.35626772,0.057573713,0.2684447,0.3101433,0.029462665,-0.47490993,-0.29675174,-0.17915346,-0.5248377,0.19954675,-0.5353439,-0.50001115,-0.15047485,-0.5122545,-0.30690968,0.73050094,-0.1744321,-0.051361144,-0.13745922,-0.075784,-0.04949576,0.4714761,0.16387813,0.08161456,0.15237041,-0.0719704,-0.041368622,-0.24290696,0.13548926,0.03182042,0.4089855,0.21363142,-0.19967899,0.292734,0.5654792,0.8470549,-0.11487935,0.6929219,0.5766893,-0.086749256,0.409958,-0.3664053,-0.34426332,-0.45101783,-0.22592081,0.038655587,-0.3580659,-0.51177365,0.01575447,-0.41225266,-0.76236105,0.5027045,-0.0821743,-0.054456495,0.04747537,0.10655588,0.360676,-0.2452591,-0.0942703,-0.11659195,-0.02489125,-0.50982326,-0.20788349,-0.50380236,-0.58803725,0.048173912,1.2562605,-0.12119748,0.0077357106,-0.009973913,-0.26598108,0.016378637,0.03007792,0.01725354,0.26880983,0.39632002,-0.13009131,-0.5925338,0.4575322,-0.1919098,-0.29474708,-0.6672596,0.09803299,0.68284225,-0.62801516,0.47443062,0.15149513,0.11447207,-0.072198994,-0.49808443,0.015098989,0.0471133,-0.14970842,0.40679848,0.14569908,-0.7560986,0.46609735,0.49327022,-0.23353542,-0.7072707,0.35376447,0.08159457,-0.30397332,-0.072170444,0.31732818,0.05514978,0.06054967,-0.1468623,0.21896087,-0.3764312,0.09059636,0.30438334,-0.10478188,0.29838246,-0.15794766,-0.12143954,-0.67486703,0.08638116,-0.52687514,-0.20782317,0.286343,0.011785952,0.19158325,0.089189306,0.23618591,0.4197269,-0.30508003,0.048004776,-0.13761753,-0.22245677,0.27170187,0.44895667,0.46624994,-0.5472317,0.5311624,0.009385949,-0.07474442,0.08320412,0.12786178,0.5304498,-0.07737001,0.327204,0.047705196,-0.20811701,0.19769853,0.81633365,0.08505437,0.3440309,0.06995067,-0.24168894,0.20623623,0.18794402,0.00999943,0.10158917,-0.47815144,0.098723486,0.011606444,0.18236938,0.5184882,0.1667696,0.2326195,-0.03375617,-0.2527588,-0.13689476,0.2282458,-0.08212571,-1.4844834,0.495217,0.15013435,0.8563999,0.47647864,0.07501026,0.1903012,0.55247885,-0.14671877,0.20366754,0.33652204,-0.16633224,-0.54918396,0.49073303,-0.6326308,0.545241,0.014487732,0.031223705,0.0723954,-0.043860115,0.6399853,0.75412273,-0.0793431,0.0208712,0.021151353,-0.23463461,0.15362675,-0.46155703,-0.088615224,-0.49746794,-0.26767364,0.73126835,0.39438164,0.22793418,-0.21159868,-0.010099843,0.14337584,-0.04692152,0.16302292,-0.16673413,0.08885998,0.059251167,-0.5855497,-0.38082904,0.5689191,-0.12391097,0.16558884,-0.05114471,-0.22490577,0.26411587,0.003911257,-0.030581027,-0.16393703,-0.72831374,0.036818627,-0.45769176,-0.29013997,0.3325876,-0.073425785,0.26777238,0.20815179,0.11651739,-0.40789568,0.61957186,-0.11032204,0.8369831,-0.16661605,-0.20734066,-0.3418824,0.2746389,0.27563846,-0.27961892,-0.08898184,-0.23459709,-0.003832791,-0.41547105,0.42574376,0.0004050266,-0.45703396,0.1926685,0.011230099,0.055116717,0.38350058,-0.21338359,0.00093242526,0.0396175,-0.16434613,-0.2095035,-0.16840118,-0.11273205,0.23959248,0.3157655,-0.03605044,-0.045753516,-0.06235365,0.05881352,0.5683215,-0.023297567,0.38669556,0.37346923,0.25253135,-0.43416157,-0.15639713,0.2502711,0.48127162,-0.037842263,-0.12465013,-0.4019767,-0.29124284,-0.31455636,0.29706421,-0.21856692,0.40758398,0.0677121,-0.43711,0.7179357,0.13527998,1.2866157,0.081546396,-0.32687506,0.18583812,0.31816274,-0.009103069,0.009928508,-0.53979504,0.8119726,0.47375602,-0.19953874,-0.19847254,-0.25115493,-0.12703998,0.120279215,-0.19245397,-0.16108932,-0.08272539,-0.5359747,-0.2805634,0.2795963,0.18795037,0.19006594,-0.08760574,0.025538668,0.16498247,-0.017088056,0.123726696,-0.43189391,-0.08566764,0.16465503,0.2647799,0.024938956,0.024756923,-0.56363815,0.4043999,-0.41413137,0.10132455,-0.23894116,0.2118429,0.0033514611,-0.30014873,0.17611496,0.010655396,0.4065007,-0.32231253,-0.30672953,-0.18793705,0.50631434,0.14063299,0.2342266,0.72646815,-0.2843399,0.15941435,-0.03480553,0.5361414,0.90072954,-0.2259807,0.0120517835,0.38832834,-0.15456566,-0.4868914,0.3339731,-0.23193662,0.15367337,-0.10027383,-0.14660746,-0.5737253,0.27223742,0.2799733,-0.038311414,-0.048151784,-0.6900945,-0.3601582,0.32697427,-0.2290556,-0.31375623,-0.47719193,0.1267439,0.73587054,-0.1664614,-0.20649034,0.26843002,0.20030932,-0.09904176,-0.37882394,-0.07320529,-0.34340245,0.22748682,0.052631777,-0.29641747,-0.04363905,0.17203678,-0.46987233,0.13059756,0.15547378,-0.33336765,0.015165804,-0.2195079,-0.13807698,0.9449166,-0.20041446,0.25686133,-0.54198873,-0.5437132,-0.9279634,-0.34218097,0.554414,0.20859513,-0.015353441,-0.7171239,-0.18753356,0.073330425,-0.16576383,0.010569453,-0.29985136,0.42721483,0.04190692,0.34181976,-0.13292836,-0.6651222,0.07168925,0.12351983,-0.23152843,-0.61075515,0.54005456,0.051695988,0.86151016,0.009772077,0.09054083,0.29945445,-0.4339964,-0.10087179,-0.23111327,-0.17894697,-0.6376392,0.037651666,340 -56,0.4291949,-0.28821105,-0.71106386,-0.12129944,-0.37268382,-0.027653363,-0.21182603,0.54624397,0.25050074,-0.5028977,-0.15852854,-0.18383016,-0.07859042,0.38789803,-0.249407,-0.46107498,-0.023039054,0.21299127,-0.69224733,0.59743804,-0.20448416,0.11141658,-0.0017242096,0.53526026,0.34261507,0.10493975,-0.059664443,-0.035021074,-0.06099059,-0.043950677,0.037824493,0.15271431,-0.6682434,-0.027938053,-0.33765957,-0.48221505,-0.15640552,-0.4669638,-0.50707865,-0.93950623,0.45571402,-0.9058737,0.5210687,-0.061740004,-0.42553473,-0.05069153,0.16437262,0.39962265,-0.114681005,-0.16411337,0.20223443,0.030301169,-0.11375928,0.10518196,-0.16108516,-0.32096958,-0.6206835,0.12954542,-0.46218097,0.08994098,-0.11368542,0.24751246,-0.32515478,0.13325047,-0.20878886,0.679866,-0.33161226,-0.118939534,0.35328028,-0.06065856,0.37998587,-0.71117496,-0.08288991,-0.1432323,0.26624638,-0.07330812,-0.21838826,0.2934962,0.22071186,0.5560187,0.006501248,-0.29053843,-0.31525105,0.24530667,0.067377776,0.297794,-0.15979466,-0.45334184,-0.073844,0.10462396,0.336223,0.1955603,0.24068508,-0.36701393,-0.09886608,0.10730366,-0.222352,0.2477125,0.533958,-0.086039215,-0.1454721,0.2386143,0.6015279,0.40954676,-0.060985517,0.1921254,0.051872365,-0.534329,-0.1796698,0.0273794,-0.2667577,0.5597007,-0.12022557,0.2800716,0.52053636,-0.104080096,-0.12801477,0.049645577,0.015448865,-0.120589495,-0.3284876,-0.31647438,0.34004575,-0.38500684,0.34805256,-0.1975514,0.63058263,0.19827583,-0.7873212,0.22307442,-0.61693263,0.25876182,-0.040084146,0.45896274,0.8612313,0.51728475,0.28315327,0.8016251,-0.37894866,0.12778457,-0.04464195,-0.3355407,0.096489646,-0.34226853,-0.059377268,-0.45239997,-0.18496063,-0.24279864,-0.19552688,-0.020164296,0.40826428,-0.6148306,-0.09452794,-0.08563043,0.79137695,-0.14777172,-0.029990299,0.8091145,0.92071205,1.1453578,0.11385803,1.0815026,0.10972233,-0.2570765,0.35598737,-0.084516585,-0.9480829,0.3758359,0.264116,-0.2794487,0.293532,0.017397664,-0.033356618,0.6457786,-0.60004103,0.20367137,-0.16138303,0.13154055,0.040053997,-0.14386441,-0.3706106,-0.21249929,-0.07149233,-0.0071269907,-0.032188345,0.2349157,-0.121761486,0.32367426,0.021268666,1.7670696,-0.097141795,0.03284807,0.11914079,0.45011413,0.055550024,-0.18107408,-0.19574848,0.04833506,0.3665065,0.115276225,-0.54184675,0.007129524,-0.27482155,-0.43483698,-0.113169104,-0.20451069,-0.19336447,-0.19952112,-0.55286306,-0.3006562,-0.17055674,-0.3554056,0.36675102,-2.383348,-0.20917189,-0.10042316,0.319714,-0.35467768,-0.36342478,-0.0042778067,-0.6141705,0.5177165,0.35715333,0.33545065,-0.6689116,0.42082572,0.3731116,-0.56873935,0.070298344,-0.6704553,-0.14852257,0.12881675,0.26136687,0.0029514097,-0.16816798,0.13364862,0.17436108,0.34579697,0.016882375,0.10900734,0.34322694,0.29767948,0.05898597,0.53200233,-0.17019232,0.4833431,-0.3351877,-0.17474595,0.41768232,-0.406267,0.18855245,-0.098478064,0.10397195,0.539731,-0.62280875,-0.87108254,-0.66880906,-0.19268373,1.2167766,-0.105017334,-0.39281476,0.32381177,-0.5843193,0.048237577,-0.10951227,0.56639326,-0.0072506703,0.0049633086,-0.8811352,-0.09299533,-0.1515471,0.2070709,0.0148293255,-0.08476448,-0.43143532,0.5300136,0.019132506,0.47553158,0.5500299,0.09470428,-0.21750623,-0.6848333,0.15341505,0.8885836,0.4015117,0.20140457,-0.27303588,0.0016714036,-0.54917186,0.021096379,0.0675202,0.47929007,0.8081669,-0.0952376,0.21774411,0.17617847,0.06299934,0.11285957,-0.24978155,-0.43298316,-0.25236496,0.061837226,0.5800404,0.73695123,-0.13972837,0.47403225,-0.12986808,0.33152568,-0.2609108,-0.35478693,0.5430726,1.0894958,-0.37963408,-0.2929873,0.57516927,0.49000758,-0.20123422,0.5049173,-0.5023125,-0.35228658,0.5116271,-0.12085181,-0.5087906,0.24875745,-0.37025934,0.26405725,-0.94107527,0.2781623,-0.39999115,-0.27880898,-0.67672044,-0.07790632,-2.3580751,0.17259549,-0.21630791,-0.17818367,-0.23644283,-0.25051373,0.28494114,-0.58261776,-0.8713112,0.06923823,0.047907416,0.74824184,-0.105976,0.10402401,-0.10769802,-0.25352016,-0.3150311,0.08781539,0.42631307,0.31141454,0.01039584,-0.6362337,-0.24393527,-0.19538969,-0.35341677,-0.0028474052,-0.65516907,-0.5305294,-0.2773769,-0.63076407,-0.35466862,0.6111696,-0.099146396,0.038474716,-0.22852762,-0.09523067,0.027793135,0.33205503,0.004744237,0.20402768,0.09292861,-0.09124361,-0.0041619837,-0.112200916,0.03605943,0.0928049,0.18718548,0.24619173,-0.20351325,0.44968075,0.65270203,0.9575223,-0.37614703,0.90970504,0.69054073,-0.09315187,0.3090247,-0.2761229,-0.35793197,-0.6143017,-0.057693187,0.10938047,-0.43937272,-0.42367145,0.1672279,-0.4959618,-0.8070546,0.68251777,-0.15308553,0.24459025,0.14264764,-0.032173418,0.5861672,-0.24514154,0.00017437339,-0.19086762,-0.12274424,-0.51014495,-0.38641527,-0.5508378,-0.59653807,-0.14114857,1.3173242,-0.052510068,-0.034550734,0.24981335,-0.25080287,0.13070239,0.07702948,-0.02962742,0.20031081,0.42852664,-0.13950361,-0.76787806,0.26360595,0.05581928,-0.047175247,-0.5518088,0.25386465,0.65078294,-0.6364436,0.5715741,0.22686222,-0.061946914,-0.28747073,-0.60323465,-0.0117738135,0.058543466,-0.24396631,0.5402713,0.3325423,-0.65591806,0.34512037,0.36967546,-0.18553938,-0.8323062,0.481822,-0.07038048,-0.16767436,-0.10869146,0.36899552,-0.029927567,0.038277354,-0.22171472,0.10213732,-0.3034458,0.2455086,0.37456328,-0.14472976,0.25686032,-0.24581403,0.09777418,-0.74744916,0.20323814,-0.5362028,-0.18917094,0.38444534,0.11278857,0.10711317,0.06680924,0.23783153,0.30069053,-0.26359597,0.07681193,-0.105846375,-0.322583,0.31243974,0.51705945,0.47287083,-0.5708442,0.6194289,-0.0042118244,-0.22016971,0.004195139,0.00803078,0.40877643,0.022853822,0.2726067,0.15206897,-0.21703202,0.13414025,0.8360461,0.04254581,0.48896223,0.01297117,-0.13081574,0.06855748,0.14223307,0.13629466,-0.020723939,-0.71084976,0.038183622,-0.19054782,0.11471166,0.53135914,0.13417384,0.22029614,-0.04238718,-0.36532494,-0.08764583,0.07748085,-0.08450776,-1.5997167,0.44131818,0.18917438,0.87932813,0.6255944,0.10597595,-0.05763654,0.49466118,-0.1770477,0.16678864,0.59550214,0.009297178,-0.49679723,0.4944925,-0.775225,0.52496815,-0.030497469,0.08725366,0.08722445,0.09570095,0.4616334,0.70933497,-0.115656845,0.0788899,-0.012162376,-0.25502908,0.09952789,-0.3248328,-0.0871189,-0.5702345,-0.31927356,0.6365249,0.52757394,0.32426995,-0.28559667,0.056501046,0.14965153,-0.14713357,0.19501083,-0.004965726,0.05443295,-0.1387026,-0.70840585,-0.10506822,0.48861367,-0.07992062,0.030167159,-0.04121197,-0.25759378,0.21388713,-0.15824264,0.05767907,-0.07146526,-0.8702571,-0.1656131,-0.5317817,-0.23576252,0.32789806,-0.17128736,0.13726336,0.23088966,0.13386534,-0.4410317,0.39755318,-0.14442451,0.7544006,-0.15867752,-0.08957036,-0.32362345,0.22336426,0.25000423,-0.22588758,-0.09510277,-0.11295687,0.0282881,-0.37272385,0.443318,0.06464506,-0.32947108,0.13461494,-0.021916721,-0.03897445,0.4506,-0.2636967,-0.19551963,0.064535186,0.036632862,-0.26034814,-0.26313207,-0.09657502,0.18765019,0.17082623,0.07452943,-0.18838236,-0.110370114,-0.064106695,0.56719834,0.033111334,0.3836432,0.54801214,0.09537331,-0.48702154,-0.06403579,0.33307636,0.60400057,0.07466239,-0.17935526,-0.46661323,-0.30200142,-0.3416547,0.17749259,-0.089830466,0.40286523,0.100445166,-0.2230694,0.7491839,0.22089754,1.2519238,0.01819296,-0.34967124,0.066230014,0.3416072,-0.039870262,-0.15832752,-0.5266115,0.7810025,0.42634046,-0.16308415,-0.18630773,-0.32245877,-0.0631741,0.1431145,-0.15611249,-0.11667544,-0.107960515,-0.7059681,-0.26232204,0.22900023,0.3376382,0.16404976,-0.18633384,0.04060767,0.3620599,-0.027917162,0.2876331,-0.44940138,-0.23009318,0.3206846,0.2082142,-0.05311752,0.06024859,-0.52132565,0.37453538,-0.4390359,-0.07576633,-0.18869102,0.110627085,-0.11719543,-0.3335291,0.25697014,-0.054188747,0.36704227,-0.32227215,-0.31644845,-0.28467134,0.54779387,-0.023444533,0.15453026,0.6626734,-0.27142507,0.0013833418,0.06412703,0.55046654,0.9310859,-0.29598114,0.09414067,0.20143351,-0.1947142,-0.6272427,0.34719118,-0.29672644,0.14813668,-0.028384045,-0.23652977,-0.6007786,0.1901368,0.1470383,-0.017991893,-0.013108939,-0.7663897,-0.16058691,0.45623094,-0.21108225,-0.15936248,-0.42354605,0.0041963086,0.4277857,-0.14079314,-0.4451081,0.12813997,0.33171403,-0.053322405,-0.4626217,-0.07482268,-0.33066365,0.20829701,0.113053784,-0.55527073,-0.17663312,0.0967851,-0.49472147,0.1619609,0.18351072,-0.3080482,0.0034329025,-0.317862,-0.104826376,1.1307744,-0.17785211,0.18007472,-0.2960259,-0.48644674,-0.97070175,-0.3288002,0.286609,0.34376848,0.015404712,-0.80537117,-0.08043942,-0.22667754,-0.15435304,-0.0057313293,-0.16462919,0.50886464,0.20084783,0.58487743,-0.07419771,-0.59506655,0.20106757,0.12862015,-0.02879234,-0.33308712,0.6409602,0.12272835,0.811031,0.0071454816,0.20208997,0.20805535,-0.46178627,-0.06107994,-0.1486339,-0.1664623,-0.5967696,-0.08169547,347 -57,0.33155707,-0.054749366,-0.43327934,-0.03584791,-0.15694363,0.16578484,0.017331354,0.43455827,0.18575674,-0.37341633,-0.030293532,-0.13283862,0.08040549,0.27705848,-0.09545436,-0.40256053,0.018434547,0.08809252,-0.54171216,0.5333857,-0.3501389,0.24046095,-0.21003398,0.33146697,0.075566076,0.366261,0.11363597,-0.28986442,-0.108347654,0.14330427,-0.20402682,0.24721147,-0.40929186,0.01331397,-0.060906604,-0.082154244,0.10495362,-0.33030698,-0.31435415,-0.60887325,0.36320055,-0.64154,0.26506644,0.06233788,-0.10582316,0.23043989,0.012409076,0.25736654,-0.39093053,-0.06396218,0.18578595,-0.12772182,-0.050404858,-0.15854013,-0.092388,-0.35207105,-0.43673128,-0.0044008642,-0.3682555,-0.16125546,-0.28097713,0.03963897,-0.32374477,-0.16933851,-0.027531052,0.33493534,-0.49666905,0.14386389,0.1796503,-0.1527377,0.089778535,-0.48574236,-0.08085483,-0.115950726,0.35349166,-0.23574767,-0.14919531,0.35411647,0.23955444,0.4192284,-0.09705838,-0.13003762,-0.286815,-0.046862863,0.20413047,0.44326806,-0.11901217,-0.50684834,0.014049593,0.06187921,-0.13028878,0.26158273,0.045034997,-0.39007953,-0.21213235,0.1301182,-0.13696337,0.2112586,0.45260733,-0.27015007,-0.23160061,0.4600098,0.539296,0.110485725,-0.20908333,-0.19811615,0.009120047,-0.5138694,-0.15396705,0.18768732,-0.18597502,0.49652737,-0.03679803,0.21375284,0.7160166,-0.23537734,0.067113414,-0.054742876,0.029109161,-0.068317816,-0.16106029,-0.013771649,0.033153847,-0.37666172,0.27345976,-0.0052475315,0.72055304,0.27993375,-0.705245,0.32693064,-0.47236413,0.19926614,-0.19642459,0.5129981,0.6481279,0.28477767,0.3764202,0.77382123,-0.5255748,0.14499643,-0.075526565,-0.5587697,0.13993102,-0.10250962,-0.2359348,-0.5232345,0.011870917,0.08098375,-0.11414065,-0.02794848,0.045653433,-0.48073238,-0.03371707,0.14831626,0.80133575,-0.3143844,-0.12002427,0.41085887,0.8396673,0.81737554,0.06172649,1.138981,0.052293852,-0.30957487,0.5028852,-0.36997724,-0.79261863,0.14420298,0.25910446,0.061324503,0.16612105,0.22449458,0.070746474,0.33066002,-0.39622325,0.1642699,-0.18412998,0.2740128,0.23451237,-0.037855104,-0.23616418,-0.2557198,-0.1415824,0.02037551,-0.028908081,0.24098451,-0.20448962,0.044580862,-0.058384877,2.0182,0.10910216,0.12285094,0.08391702,0.6023979,0.13756393,-0.098752536,-0.26766622,0.54206574,0.37068683,0.27060226,-0.5590112,0.13160965,-0.2557571,-0.59402895,-0.04463712,-0.43636408,-0.104710236,0.09653731,-0.48003298,-0.04089271,-0.04739367,-0.23467512,0.6182135,-2.9060493,-0.008910675,-0.11870566,0.3305603,-0.3205199,-0.28048563,-0.15317717,-0.4197012,0.3023132,0.35694402,0.41866112,-0.6868997,0.26781484,0.31585363,-0.45973113,-0.09626819,-0.5678879,-0.17481081,0.007772334,0.38210315,0.054914773,0.03518718,0.12273975,0.15797038,0.3316009,-0.016089901,0.060617216,0.14553174,0.2687353,0.26100522,0.5247984,-0.051447432,0.49074373,-0.06979792,-0.109156296,0.1415592,-0.25486958,0.43666494,0.019018017,0.08283168,0.31503353,-0.29416597,-0.89317226,-0.54797244,-0.14470997,1.17808,-0.32239735,-0.16592625,0.3358339,-0.4811701,-0.072341174,-0.26069197,0.50179005,-0.028541164,-0.20341307,-0.7545872,0.22143555,-0.07854833,0.20478384,0.0312962,0.016287895,-0.29370397,0.5245081,0.009482159,0.5950594,0.40997714,0.04068682,-0.06561756,-0.3323016,0.0034664944,0.6278187,0.21329756,0.1084951,-0.16348016,-0.26612943,-0.33950043,-0.123479515,0.11051297,0.48236707,0.636021,-0.0396799,0.1016365,0.2066586,-0.023247063,-0.03746711,-0.21326116,-0.24306601,0.0416155,-0.19276357,0.45394742,0.63644457,-0.2681513,0.41795015,0.004466906,0.14366329,-0.21179354,-0.3002239,0.3763687,0.8961953,-0.15496437,-0.016942844,0.28842926,0.54448926,-0.2576217,0.32696417,-0.5314776,-0.00026395544,0.55054355,-0.2098074,-0.29360154,0.112433255,-0.2843489,0.116043925,-0.694747,0.25564283,-0.023804173,-0.27350223,-0.38753676,-0.06724373,-3.348951,0.1394254,-0.27800474,-0.23637794,-0.03385808,0.026053369,0.111359775,-0.7117706,-0.4229672,0.20017637,0.048566602,0.5767046,-0.062169958,0.07403554,-0.3272633,-0.23034146,-0.25885892,0.08847201,-0.05811148,0.36157048,-0.07377399,-0.5077465,-0.016808039,-0.13005461,-0.2828216,0.059714727,-0.44936436,-0.35157514,-0.13701722,-0.3749712,-0.31103128,0.68882227,-0.28150287,0.046742536,-0.13256662,-0.11173533,-0.18505591,0.26350534,0.27440065,0.040836446,-0.014011946,0.15409824,-0.039788477,-0.33357045,0.19488826,0.02895103,0.30880392,0.3680073,0.16202942,0.10550414,0.45848617,0.54920316,-0.1747246,0.80615366,0.62478244,-0.13076141,0.20583825,-0.40151232,-0.10657695,-0.47437686,-0.48984987,-0.109631516,-0.41299695,-0.45190307,-0.07283461,-0.3410005,-0.6604141,0.4389377,-0.03865861,0.1678094,0.110167645,0.10095479,0.514754,-0.31596482,0.026154637,0.038107812,-0.10525206,-0.6278314,-0.28449285,-0.51706797,-0.35861328,0.25630966,0.8929161,-0.34920144,-0.21257526,-0.0008016676,-0.3009522,-0.053555593,0.034312725,0.013452504,0.3290813,0.3314805,-0.12901717,-0.6063861,0.59115326,-0.07226202,-0.10949543,-0.6945873,0.13496795,0.36961704,-0.63073164,0.5636421,0.29847088,-0.0031667277,0.02484259,-0.5043012,-0.33154058,-0.03769873,-0.1488528,0.2048128,0.08759816,-0.78992146,0.31907225,0.2390199,-0.23910153,-0.62964714,0.6142189,-0.033078834,-0.37860084,0.028864115,0.21611066,0.17357108,-0.0656639,-0.2432164,0.2334743,-0.49785006,0.18375267,0.47941425,-0.03177402,0.1308405,-0.12121019,-0.051702254,-0.620347,0.055779375,-0.34614426,-0.15968403,0.36403877,0.103997186,0.19134147,0.038045995,0.16033801,0.2881682,-0.39443293,0.08990322,0.007864803,-0.13320783,0.3689,0.37134382,0.51818216,-0.4714365,0.4890403,-0.08182292,-0.0757227,0.1718092,0.13890278,0.4512117,0.13142447,0.2193766,-0.010624155,-0.32655793,0.22733387,0.8584116,0.22188324,0.36504912,-0.06451078,-0.16191232,0.25679436,0.17904544,0.17513657,0.20501724,-0.5074018,0.07283746,0.03778605,0.2717626,0.34445894,0.1415278,0.25207657,-0.03325719,-0.24857469,-0.009127807,0.2240631,0.066786125,-1.1448114,0.45167756,0.27583474,0.7481478,0.42277265,0.029055677,0.006109776,0.5245109,-0.22156322,0.21357478,0.31952336,-0.22468111,-0.6575093,0.46766692,-0.6084429,0.5374417,0.035016276,-0.060545877,0.06571078,-0.06747302,0.18456301,0.78075665,-0.16885833,-0.05237681,0.10147524,-0.28216195,0.08630716,-0.38421318,-0.06933535,-0.6450641,-0.31744534,0.46407843,0.52652866,0.30003533,-0.07274847,0.05221938,0.050558373,-0.14122897,0.04595388,0.030451294,0.29197544,0.20370619,-0.7076887,-0.25214785,0.53094065,-0.421587,0.13834083,-0.094066896,-0.18403247,0.28599867,-0.31306916,-0.11757663,-0.050333258,-0.59329593,0.008090951,-0.16886106,-0.3818356,0.42938817,-0.10308439,0.36868975,0.21465877,0.03679144,-0.3649831,0.63954335,0.040328134,0.6770346,-0.30052406,-0.09502675,-0.5721647,0.07419575,0.22440487,-0.07268019,-0.12439343,-0.31172138,-0.048603803,-0.46275717,0.3535499,0.09106381,-0.16885251,-0.14910342,-0.26213527,-0.012357531,0.6048069,-0.07485607,-0.23390666,-0.21986504,-0.13703498,-0.32051817,-0.15537706,-0.18318167,0.19744459,0.18725568,-0.024120454,-0.084912255,-0.18971872,-0.07677182,0.3305381,0.06581519,0.31237143,0.22271204,-0.039560646,-0.16576964,-0.2382927,0.21270607,0.38637006,-0.09690787,-0.014061365,-0.2606738,-0.3948297,-0.39206105,-0.014823377,-0.19025995,0.3947684,0.20084125,-0.25432026,0.5765801,-0.088839084,1.0880187,0.13296777,-0.30302775,0.036475077,0.49022686,0.0895346,0.074443646,-0.29728118,0.7242193,0.54948246,-0.0013235807,-0.23790863,-0.1680144,-0.08108929,0.26120368,-0.16237068,-0.04332584,0.11722089,-0.5371953,-0.121821806,0.32791352,0.17714082,0.3113779,-0.017668005,-0.09576451,0.09850824,0.10035844,0.22341105,-0.39672333,-0.22170497,0.25312954,0.22156088,0.15565124,0.16531122,-0.43436262,0.54988587,-0.30759892,-0.07879435,-0.22859854,0.22470848,-0.2026865,-0.19527845,0.18918118,-0.005686894,0.50923526,-0.21339539,-0.29756153,-0.38384682,0.45429635,0.17239931,0.2736809,0.48707408,-0.15036157,0.04260013,-0.008630503,0.47534665,0.8754332,-0.3008352,-0.090263404,0.4758274,-0.35154992,-0.5860794,0.2160067,-0.23345718,0.09701744,-0.086354226,-0.09568912,-0.5634717,0.18916762,0.16394565,0.068268806,-0.0037461221,-0.6070255,-0.2398425,0.14446191,-0.32420862,-0.29191932,-0.35535038,0.24167064,0.8417667,-0.41350555,-0.20089397,0.14170115,0.11968061,-0.12370608,-0.47921842,-0.051578462,-0.33146563,0.20262615,0.065315306,-0.3791016,-0.16842334,0.11068856,-0.32047206,0.15066274,0.12833443,-0.3758534,0.19098449,-0.16473666,-0.05406574,0.9717226,-0.14334421,0.026064936,-0.48183435,-0.37485158,-0.73921853,-0.39197832,0.46932343,0.14984527,-0.042974956,-0.4394943,0.03819154,0.030515928,-0.13774599,-0.18980499,-0.495983,0.5201467,0.03724117,0.15961215,0.013925785,-0.84509325,-0.044433624,-0.003315946,-0.2108525,-0.5679987,0.49346906,-0.18551958,0.8514601,0.045172665,0.019475358,0.3304889,-0.26687753,-0.053848855,-0.33402815,-0.19466941,-0.6701064,0.098495245,358 -58,0.34747848,0.089317866,-0.52498776,-0.14957862,-0.47804976,0.3626904,-0.27542835,0.15596631,0.26213574,-0.041051693,0.025546398,0.07172917,-0.12612233,0.19472708,-0.14264545,-0.6235419,-0.0470714,0.118232146,-0.54727244,0.5373343,-0.3136992,0.43999347,-0.18176228,0.3570059,0.18234754,0.44480556,0.13535897,0.100254595,-0.050050635,-0.006547004,-0.25139558,0.29976928,-0.5793214,0.3299203,-0.046792366,-0.4041298,-0.074739106,-0.41727468,-0.22878978,-0.67062366,0.33657938,-0.7756567,0.5996088,-0.1234653,-0.3434726,0.060199123,0.22950369,0.16070612,-0.2475226,0.038126104,0.19441892,-0.24508496,0.15109268,-0.30290973,-0.31217468,-0.5648461,-0.49957004,-0.18640098,-0.65999365,-0.06291662,-0.35957313,0.23751542,-0.23250076,-0.12549315,-0.36650518,0.10137911,-0.5118352,0.17933914,0.14353873,-0.35421038,-0.16709717,-0.4899528,-0.062774554,-0.13251711,0.2100831,0.11190003,-0.06808624,0.40984076,0.18274157,0.4630803,0.13915852,-0.31964236,-0.45306984,-0.14078858,0.062202945,0.37087616,-0.08447322,0.014028877,-0.26035962,-0.14102635,0.4686729,0.36676794,0.11855616,-0.25300923,-0.017290588,-0.10529396,-0.1303508,0.28498137,0.40979677,-0.4006348,-0.22924635,0.45127273,0.45333806,0.16910452,-0.33370575,0.22093195,-0.12448439,-0.2100984,-0.29843894,0.17110693,-0.061120704,0.41092217,-0.07983069,0.13439009,0.72948194,-0.04522788,0.077823214,-0.19412135,-0.061929565,-0.02410172,-0.32412586,-0.0709095,0.15778627,-0.3758158,0.20003963,-0.13550963,0.501102,0.06634526,-0.6996801,0.34630787,-0.5589515,0.097573996,-0.0310492,0.5117209,0.7413222,0.5305866,0.085276894,0.93619066,-0.32290044,0.012852779,-0.19281201,-0.18509465,0.1414396,-0.052637644,0.11697943,-0.4783632,0.22483908,0.088357195,-0.030810822,0.13081534,0.32805023,-0.27769095,-0.11499332,0.09466539,0.59532416,-0.4378554,0.044473827,0.6916282,1.0566318,0.9509522,0.009343766,1.1242303,0.3691675,-0.13243747,-0.2477292,-0.24134031,-0.4860061,0.054715924,0.42702737,-0.067560345,0.5341852,0.16623247,0.02924773,0.30932584,-0.22995867,0.047164492,0.095232494,0.21885416,-0.05300907,-0.06318657,-0.370697,-0.2115887,0.31103063,0.10427318,0.079706356,0.23483118,-0.28601414,0.41887483,0.27453035,1.524298,0.112898365,0.12930906,0.13634777,0.38096374,0.26192573,-0.21274936,-0.035866674,0.35120878,0.29734913,-0.21915835,-0.47079235,0.064817585,-0.35896763,-0.5319387,-0.062280837,-0.3608964,-0.28208637,-0.027863203,-0.38008514,-0.18850131,0.050918456,-0.23353615,0.37904108,-2.6252382,-0.009249248,-0.114850104,0.2776768,-0.26904333,-0.2964453,-0.35849482,-0.4900306,0.21227118,0.31229013,0.18720606,-0.45779657,0.4243045,0.4364321,-0.36521006,-0.06424151,-0.5613518,0.16908032,-0.020174779,0.40542814,-0.16496283,-0.20696978,-0.17686006,0.3923161,0.65759087,0.11749414,-0.043194663,0.33994743,0.38554555,-0.029051978,0.36998037,0.10359404,0.5637358,-0.13241492,-0.16338105,0.48348737,-0.4531383,0.49226692,0.002037216,0.10276273,0.41279632,-0.4170158,-0.6916162,-0.49489784,-0.14316425,1.1474724,-0.4443487,-0.46074513,0.13463373,-0.109394774,-0.23373657,0.10353261,0.37803358,-0.036959875,-0.04387176,-0.5613023,0.03386663,-0.2548429,0.17573163,-0.12664908,0.29976684,-0.35248628,0.754312,-0.2288157,0.5575232,0.23116267,0.20786373,-0.06689963,-0.42079002,0.19300231,0.65809685,0.5145977,0.09616051,-0.24797249,-0.13231027,-0.066036895,-0.31216633,0.24526063,0.5723767,0.49850157,-0.14891456,0.051439166,0.29949662,-0.18550918,-0.067766234,-0.2809913,-0.20230773,-0.010449211,0.22001748,0.40408498,0.60973406,-0.18673325,0.16676506,-0.11896149,0.20530955,-0.18569356,-0.65351886,0.37830853,0.5251411,-0.16684633,-0.23523259,0.59759986,0.4294301,-0.25701424,0.3584295,-0.68562555,-0.2567119,0.521691,-0.09838858,-0.40011394,0.09944001,-0.2928587,0.05225282,-0.60455287,0.055932343,-0.05668055,-0.5120877,-0.39025715,-0.14220601,-2.9892108,0.07412993,-0.13281965,-0.0511002,-0.120722145,-0.19761708,0.2844038,-0.6228751,-0.65146625,0.07005748,0.01341957,0.41641876,-0.07976845,0.12281148,-0.35490492,-0.24600662,-0.26437172,0.29095864,0.052030064,0.40646234,-0.20782523,-0.29508686,0.037241846,-0.116062805,-0.44078094,-0.120620616,-0.48003694,-0.26491284,-0.18903066,-0.32445735,-0.07862117,0.6027198,-0.49806833,-0.0063349344,-0.29827648,-0.045416694,-0.08019033,0.2408998,0.35157394,0.0937375,0.23514643,0.06065296,0.018230624,-0.3547027,0.3566062,0.077742994,0.21821362,0.46014988,-0.09090811,0.06910587,0.4352725,0.5512694,-0.059716173,0.73184955,0.16478908,-0.1727506,0.4751886,-0.2885802,-0.32988465,-0.79810536,-0.39096096,-0.21926324,-0.46919203,-0.39553905,-0.2506227,-0.38587,-0.86303484,0.31984645,0.13898183,0.36908284,-0.043124177,0.23810567,0.39983407,-0.2017287,0.09361711,-0.023163386,-0.2412585,-0.4880882,-0.5334705,-0.61334217,-0.6498798,0.35715732,0.93276894,-0.16808334,-0.04132969,0.17437339,-0.34931955,0.068987615,0.18722421,0.17681788,0.09319514,0.47660923,-0.056962237,-0.45917356,0.32281193,-0.0147032775,-0.086731404,-0.49943352,0.058697235,0.6652529,-0.56440526,0.44986266,0.15877399,0.18927999,-0.05809626,-0.7591111,-0.18841529,-0.07514569,-0.285058,0.5910719,0.3104056,-0.5799296,0.38151607,0.009969203,-0.123440355,-0.55478966,0.45527542,-0.093547136,-0.18169296,0.009401761,0.4042542,0.07921409,-0.12613498,0.11825238,0.14735945,-0.5151669,0.382639,0.2495614,-0.07817056,0.2949899,0.03448657,-0.23778504,-0.7089717,-0.0743234,-0.4333474,-0.4672895,0.09228411,0.02350352,0.028075676,0.08154144,0.064168856,0.5186048,-0.3651756,0.21619296,-0.18570141,-0.24577343,0.36674514,0.3683706,0.39683193,-0.4746353,0.5569813,0.049702093,0.08782458,0.055025928,0.145177,0.55655307,0.09587101,0.3570789,-0.11964494,-0.11345849,0.066712774,0.51904523,0.31058088,0.1893675,0.041054774,-0.37681484,0.2745749,0.14977297,0.12745373,-0.028067479,-0.2937806,-0.010041162,-0.18509838,0.19850895,0.4312796,0.15391672,0.3561762,-0.028221171,-0.022124158,0.3590675,0.080342606,-0.34376758,-1.0174048,0.2631886,0.25175682,0.7936069,0.46094567,0.0065306993,-0.013673756,0.41713905,-0.43726355,0.031485245,0.5303932,0.07862244,-0.36118543,0.47529805,-0.539816,0.45356196,-0.1248591,-0.101650625,0.3043838,0.35825115,0.39769518,0.8880794,-0.16176125,0.058771774,-0.035853438,-0.22341754,0.020124305,-0.025550734,0.14607403,-0.44216132,-0.39888042,0.5986644,0.41428104,0.4658175,-0.34665945,-0.09495589,-0.11296227,-0.19135591,0.1406814,-0.006542243,-0.045687035,-0.18652494,-0.37777904,-0.41658068,0.54264283,-0.17155805,-0.077227,0.03909645,-0.3051796,0.21698567,-0.016203472,-0.014418237,0.06343947,-0.546305,0.029702801,-0.22929882,-0.38673097,0.43363827,-0.22851709,0.25454268,0.09761216,0.011668788,-0.23550107,0.28865466,0.1595303,0.67506963,0.021323517,0.036957853,-0.31714672,0.35999572,0.35125828,-0.23169483,0.009001434,-0.2458877,0.26858914,-0.6352674,0.22469121,-0.21602178,-0.24154481,-0.05146223,-0.23079538,0.016099405,0.37529528,-0.18210566,-0.16204791,0.12306309,0.03554699,-0.42765212,-0.15465203,-0.4492191,0.12295321,-0.06835364,-0.1415777,-0.0049792305,-0.0779293,-0.14048085,0.26919937,0.11811527,0.1040167,0.29010674,-0.18244925,-0.39812553,0.083245695,0.034729626,0.34731114,0.11231084,0.081097245,-0.23517483,-0.393849,-0.35793272,0.5463939,-0.2678005,0.108747795,0.08062823,-0.31892383,0.8403751,0.03869987,1.141523,0.12000276,-0.41716722,0.14974612,0.5620742,0.14902104,0.15645412,-0.28371167,0.8852012,0.65371317,-0.14414573,-0.118898325,-0.20890775,-0.19817525,0.24873401,-0.41008478,-0.18184987,0.030546244,-0.77601045,-0.07285103,0.15770063,0.10628922,0.14933795,-0.041822117,-0.14333996,0.04941197,0.1335738,0.5098408,-0.36959273,-0.2946416,0.3844726,0.092621006,0.038042575,0.26172236,-0.29427993,0.39679286,-0.72589856,0.2050178,-0.6205827,0.089968316,-0.18535401,-0.32913965,0.2151249,-0.01565774,0.27072197,-0.35286152,-0.48605323,-0.16233747,0.4992459,0.14587417,0.2928065,0.62345326,-0.23764795,-0.0511531,-0.07615308,0.3945731,1.1014624,-0.059493348,0.08849135,0.37647384,-0.3820747,-0.6656472,0.018436713,-0.4260089,0.092870906,-0.012380734,-0.44490296,-0.18292552,0.32353866,0.00011852011,-0.11627299,0.027095638,-0.51892567,-0.055340067,0.24110118,-0.2461754,-0.1685456,-0.33458155,0.19703183,0.78188086,-0.27570027,-0.5575718,0.11383383,0.35999978,-0.25874195,-0.61965626,0.15880674,-0.12036589,0.39586556,0.07290517,-0.45198423,0.08859818,0.41634566,-0.43298686,-0.027707111,0.4552574,-0.3404195,0.005769156,-0.3571887,0.097509146,0.92876315,0.02232558,0.001301378,-0.43514043,-0.4411075,-0.96121025,-0.35857368,-0.13176823,0.1982457,-0.03569322,-0.5263714,-0.042812534,-0.31212592,0.14593762,0.05534191,-0.5611141,0.44111773,0.29113716,0.53617704,-0.19764194,-0.93400884,-0.0376667,0.2036443,-0.14699933,-0.4526598,0.57375175,-0.32308716,0.65206516,0.1586481,-0.040015258,0.13417819,-0.785665,0.39845616,-0.43090913,0.029082628,-0.6543202,0.11470379,375 -59,0.45744035,-0.07391837,-0.3943597,-0.08523166,-0.22766961,0.09785192,-0.06976802,0.652017,0.27815732,-0.4421025,-0.10432261,-0.105532214,0.008603103,0.22878921,-0.10826692,-0.40432703,-0.12265198,0.19674142,-0.5054987,0.45093787,-0.4732623,0.33218655,-0.11646354,0.3313921,0.23699169,0.3107617,-0.044652387,0.0065103625,-0.23802279,-0.00791274,-0.09926237,0.40274668,-0.2535105,0.10602201,-0.13944222,-0.26142746,-0.14337613,-0.45795736,-0.4156755,-0.56714165,0.33121693,-0.65486765,0.37877217,0.0052859336,-0.32370317,0.2928899,-0.06750365,0.2697531,-0.14608547,-0.02586314,0.076434866,-0.0109243095,0.013600022,-0.17754044,-0.30513716,-0.23199084,-0.5789364,0.1689986,-0.4024582,-0.17610951,-0.19340345,0.065755054,-0.20340358,-0.06702736,0.049553134,0.36457318,-0.4390728,0.053967178,0.12751901,-0.010332417,0.16417575,-0.47955406,-0.082791775,-0.03655806,0.2986836,-0.28972366,-0.21506178,0.2361981,0.24107209,0.50376916,-0.09755167,-0.06267186,-0.39252192,0.005323801,0.16269766,0.4579691,-0.17845286,-0.43768695,-0.14340205,0.0017589778,0.12350486,0.27311248,0.19180912,-0.2872632,-0.18314552,0.018988717,-0.16103746,0.399423,0.4936738,-0.28480285,-0.36444664,0.43010768,0.69986343,0.10912333,-0.12021092,0.0032076687,-0.006369613,-0.49924728,-0.15982814,0.015639506,-0.10359213,0.35621035,-0.033195145,0.15946358,0.5603296,-0.14931983,0.04986193,0.08209808,-0.024095442,0.007970378,-0.31502095,-0.12101841,0.10972302,-0.39025778,0.043434367,-0.027224481,0.6692406,0.15545972,-0.84703255,0.35065228,-0.5283076,0.094695225,-0.07168086,0.4703629,0.7543261,0.31258416,0.27848223,0.6772431,-0.38206527,0.11531207,-0.15311289,-0.27634633,0.061805617,-0.17441055,-0.013076,-0.56869704,0.0010142997,0.08717788,-0.23219717,0.19550174,0.37613043,-0.54084814,-0.10312829,0.1866897,0.70737237,-0.3203549,-0.15898697,0.75554144,1.0482701,0.9015969,0.00084352866,1.1839348,0.12965745,-0.24600336,0.36341614,-0.58841515,-0.65362847,0.23244718,0.30732843,-0.041617483,0.24438493,0.07847977,0.086940095,0.3661922,-0.34595177,0.122969806,-0.11425104,0.12656748,0.025188467,-0.06052576,-0.4667763,-0.25646973,-0.058733612,0.11258273,0.16698505,0.2620538,-0.30475265,0.30894053,-0.004401058,1.8418664,-0.050939083,0.09600865,0.073855676,0.44355887,0.13302082,-0.38057294,-0.11106227,0.29477105,0.23581801,-0.08125664,-0.48189205,0.12968007,-0.1261223,-0.5118357,-0.106973395,-0.354244,-0.004211195,-0.06553277,-0.41150647,-0.057669815,-0.1466279,-0.40976536,0.59279835,-3.000711,-0.22508922,-0.07546188,0.25391018,-0.23660137,-0.5026798,-0.21006235,-0.35805467,0.3330263,0.284529,0.38389316,-0.66620445,0.3043356,0.32094425,-0.4901164,-0.11385669,-0.61788285,-0.09653697,0.005290818,0.20520833,-0.06345002,0.050771542,0.06828288,0.11761187,0.4100172,-0.070157334,0.103104316,0.31043357,0.33804107,0.016126432,0.3999051,-0.052371543,0.5077654,-0.14188483,-0.28271458,0.39219922,-0.35577613,0.20077284,-0.011500113,0.1322027,0.30007517,-0.48327675,-0.83759284,-0.57621056,-0.21758074,1.0499628,-0.15387362,-0.2976634,0.3487913,-0.51787084,-0.27821586,-0.13951068,0.53156495,-0.010806009,-0.21088672,-0.8232014,0.08617456,-0.062448245,0.09114905,-0.079334095,-0.03641425,-0.4089394,0.55811477,-0.11443919,0.52817166,0.3486418,0.22417015,-0.24490875,-0.38628352,0.072249815,0.9573705,0.30188948,0.12422803,-0.20014004,-0.23288193,-0.44314754,-0.11791626,0.15822689,0.4553115,0.62917155,0.010087129,0.14200397,0.22459736,-0.02096044,0.031065002,-0.15378274,-0.16489245,-0.088772595,-0.10982325,0.6094662,0.58060926,-0.14573397,0.559562,-0.020270895,0.09910452,-0.2646212,-0.3952812,0.40688467,0.69651866,-0.1532684,-0.26544866,0.61813617,0.39013314,-0.2127074,0.36235464,-0.5671308,-0.1539855,0.40175873,-0.30266422,-0.3775185,0.27776662,-0.2383292,0.07312742,-0.9264042,0.16548331,-0.12252238,-0.56799877,-0.5668842,-0.08547874,-2.8936908,0.13782802,-0.086563095,-0.2890944,0.05114461,-0.15081277,0.08304515,-0.46838295,-0.5479272,0.18960324,0.10894125,0.61211514,-0.076501906,0.029053457,-0.20668823,-0.24982521,-0.37220243,0.09891917,0.077292494,0.43331647,-0.02210622,-0.34895647,-0.10578127,-0.15399823,-0.43346006,0.0683835,-0.54909563,-0.40173885,-0.067569345,-0.47056675,-0.23683634,0.65020764,-0.33527407,0.0021037832,-0.21781778,-0.084391214,0.02654408,0.3276044,0.13350897,0.09479366,0.24614564,-0.03953173,0.026049152,-0.26309577,0.25294617,0.07005697,0.29401374,0.37727296,-0.21458507,0.28330076,0.48605746,0.64494246,-0.23459092,0.82454044,0.56120205,-0.05159812,0.20343357,-0.29317647,-0.079325624,-0.3779006,-0.24897553,-0.07060677,-0.40497252,-0.51960135,-0.22326528,-0.4086745,-0.73888814,0.41809797,0.04274481,0.13954636,-0.015727937,0.21172199,0.51479715,-0.18479067,-0.014241319,-0.14864857,-0.15377977,-0.5040809,-0.32652032,-0.583069,-0.48608768,0.29475862,1.0611997,-0.12740457,0.07028509,0.050048284,-0.20849656,-0.09473016,0.06828181,-0.01909914,0.21023008,0.2999203,-0.16141573,-0.41984862,0.40467978,-0.08260971,-0.198643,-0.6162095,0.16970678,0.49157718,-0.45286196,0.5914915,0.18851757,0.0748619,-0.059100647,-0.48249727,-0.08952238,-0.02860707,-0.25527805,0.45906162,0.30201417,-0.8229363,0.4430623,0.30636793,-0.14548641,-0.7421022,0.48991895,-0.07512554,-0.2083329,-0.104692265,0.2514477,0.258145,0.020828161,-0.19535288,0.19877405,-0.37337822,0.31414807,0.19874671,-0.045904964,0.33610487,-0.22129397,-0.10995342,-0.61006963,-0.01669845,-0.54782754,-0.24696968,0.14408356,0.12840733,0.2526339,0.20329897,0.080830306,0.3209952,-0.27961376,0.09618143,-0.04286141,-0.20433591,0.1697354,0.35006875,0.56470543,-0.35487702,0.40218896,-0.01433032,-0.0054769516,-0.0866336,0.020742133,0.550045,-0.020325907,0.24038172,-0.0497372,-0.32159734,0.31623322,0.675125,0.1840519,0.19060582,0.009025779,-0.22558299,0.2042234,0.036609314,0.19012126,-0.016786385,-0.47542223,0.12294674,-0.11060813,0.23433271,0.37519288,0.1960304,0.26984784,-0.10088168,-0.33043873,0.048649244,0.18050148,-0.042815626,-1.1719396,0.303849,0.19160937,0.8963756,0.4999057,0.07011539,0.07982701,0.53597206,-0.20398945,0.19238973,0.35204357,-0.15353253,-0.48887247,0.4417708,-0.7657452,0.569429,0.00632238,-0.052886695,0.08071186,-0.126351,0.47527277,0.68025124,-0.13168916,0.078394085,0.04824791,-0.23047906,0.0447364,-0.28528756,0.02869229,-0.705802,-0.17234378,0.6552832,0.47965816,0.3137421,-0.11386407,0.034620374,0.16332117,-0.029309683,-0.04964801,-0.014368542,0.09475505,0.028909795,-0.58614457,-0.20205769,0.42368174,-0.12960617,0.08680267,0.056833297,-0.18464066,0.15462562,-0.11637682,-0.22094037,-0.06402308,-0.5582095,-0.06394024,-0.23994511,-0.3186614,0.4296198,-0.11131984,0.22299507,0.18700187,0.15156838,-0.24765554,0.47202063,0.15636483,0.8508404,0.04021624,-0.047087356,-0.38145387,0.28128877,0.19466014,-0.14613977,-0.2139897,-0.29040688,0.0119047575,-0.56733644,0.34112853,-0.06139993,-0.42101166,0.14534122,-0.068631664,0.123882115,0.5250914,-0.11286679,-0.10050111,-0.04303241,-0.16993046,-0.2688641,-0.04503457,-0.089034155,0.3716817,0.26457876,-0.12233058,-0.015251784,-0.109222606,-0.026770085,0.38598138,0.083910674,0.42447075,0.26618308,0.10136098,-0.22942673,-0.08028734,0.21955481,0.3649144,-0.10946655,-0.087333284,-0.24879202,-0.31285912,-0.4034869,0.23405407,-0.15783378,0.35856104,0.106734574,-0.15534152,0.5763874,0.09514621,1.1199358,0.11774806,-0.28338832,0.22094816,0.3625235,0.10791221,-0.01510454,-0.35053635,0.84885806,0.43302196,0.0008812137,-0.13719055,-0.2723303,-0.04758152,0.19360967,-0.1941059,-0.14532101,-0.0022034608,-0.6778131,-0.2285736,0.30944502,0.10834257,0.24419561,-0.06650615,0.0546651,0.21525146,-0.016845496,0.19259323,-0.3285059,-0.16662419,0.26979047,0.36020043,-0.013948422,0.12344775,-0.46882528,0.37668163,-0.47501153,-0.008911636,-0.14080645,0.18633534,-0.18207017,-0.29421747,0.19632556,0.03233317,0.39956617,-0.19957656,-0.40884602,-0.3501436,0.48699084,-0.02354655,0.09586364,0.36781007,-0.24357477,0.08112793,0.013425876,0.32602856,0.9779189,-0.20533818,-0.0526445,0.36759293,-0.17711496,-0.5990652,0.35891756,-0.26495022,0.28383058,0.031533964,-0.14244157,-0.4018342,0.35230866,0.2105911,0.053882256,0.069433525,-0.44389248,-0.13397793,0.16256408,-0.26339495,-0.1852905,-0.2557852,0.05689735,0.6522943,-0.28897193,-0.37047315,0.12174042,0.3276794,-0.16948947,-0.43754363,0.0785079,-0.39668524,0.16212423,-0.0056059957,-0.3065818,-0.17996322,0.004511304,-0.3077485,0.08097823,0.19494262,-0.2781026,0.10876496,-0.30277494,-0.07104777,0.998006,-0.12922063,0.31413177,-0.5032442,-0.5510154,-0.83105356,-0.43637025,0.2952127,0.10998124,-0.11698732,-0.56155264,0.020200029,-0.09638355,-0.24587333,0.029488826,-0.3255632,0.49332216,0.09436758,0.24978544,-0.24671172,-0.76368576,0.009258365,0.12341892,-0.33701584,-0.5674976,0.5548901,0.123192534,0.87976295,0.07542935,0.09292491,0.28010866,-0.4837958,-0.00042272732,-0.2959114,-0.07568779,-0.63400316,0.094098695,376 -60,0.46082702,-0.08962192,-0.63523424,-0.055769913,-0.06932945,-0.016776575,-0.29317933,0.3439371,0.19227903,-0.45694792,-0.05774081,-0.09627376,0.011801752,0.25461316,-0.13266961,-0.53612804,-0.10200004,0.1417068,-0.52888674,0.5486743,-0.60615885,0.3351043,-1.414679e-05,0.33738914,0.064226806,0.1961089,0.36340165,-0.094996214,-0.17747255,-0.10340592,0.32325745,0.32484868,-0.6894123,0.099966496,-0.08576693,-0.39079514,-0.10010813,-0.31946248,-0.4109821,-0.7459335,0.33232507,-0.9229522,0.58724535,0.20248377,-0.22875446,0.26479554,0.05673766,0.18746474,-0.3637151,0.20626715,0.11395939,-0.24672112,-0.15395138,-0.3405464,-0.024698593,-0.2668964,-0.6686996,-0.012337409,-0.45506644,-0.043284073,-0.3404078,0.19276805,-0.38048762,0.08015042,-0.33416396,0.42530048,-0.5498455,0.012501545,0.3040002,-0.050060693,0.38971204,-0.46646267,-0.12374762,-0.18093783,-0.045516692,-0.13956283,-0.31585038,0.26014328,0.22429729,0.511121,-0.048158787,-0.28305215,-0.36361974,-0.062146984,0.32019347,0.31814802,-0.3196484,-0.4912926,-0.1180276,-0.10781232,0.125299,0.1732288,0.10071975,-0.38647223,-0.0624544,0.2952659,-0.122428045,0.42494303,0.6662631,-0.24374503,-0.16049686,0.31566703,0.5640099,-0.02530496,-0.07223033,0.13035405,-0.05846075,-0.6355344,-0.24243575,0.26880008,-0.18489029,0.4870996,-0.07662748,0.12131955,0.6588867,-0.2822784,-0.15613186,0.0871072,0.024239017,0.1021953,-0.2518246,-0.41598687,0.47250146,-0.5492388,0.105918124,-0.29811952,0.66464853,-0.009259708,-0.7478559,0.366054,-0.5700174,0.21153635,-0.13323045,0.7436179,0.63952786,0.54083323,0.41661417,0.76804227,-0.6194156,0.049914606,-0.046640955,-0.3922975,0.19495668,-0.1673877,-0.09822814,-0.4260908,-0.07073236,0.07513184,-0.20122541,0.12461152,0.5153619,-0.473635,-0.005981233,0.038806923,0.5459808,-0.34310013,0.033141028,0.5825072,1.084965,1.0503772,0.15431333,1.3340056,0.26759157,-0.28974307,0.100286745,-0.12690687,-0.88754654,0.3012858,0.38536358,-0.31586802,0.36238623,0.08864795,-0.11341926,0.38394138,-0.55545473,-0.06737424,-0.19528326,0.24096504,-0.13871789,-0.30982295,-0.30185828,-0.14455453,0.018281696,0.029167201,0.0039691906,0.36491898,-0.2604315,0.22303486,0.10863261,1.5513463,-0.13468814,0.16046113,0.23973647,0.26385736,0.24060722,-0.25470415,-0.007686347,0.33437654,0.51292855,0.25652742,-0.5805735,0.11902793,-0.16203775,-0.6521512,-0.16373931,-0.2506982,0.19590662,-0.1158478,-0.5091963,-0.05156257,-0.046396594,-0.38782007,0.40553004,-2.4334335,-0.051696204,-0.07954764,0.30415538,-0.18856838,-0.34330404,-0.24392188,-0.45928484,0.44230145,0.3674032,0.47147062,-0.75418496,0.3401283,0.36795652,-0.4857641,-0.015938662,-0.7088133,-0.081511796,-0.115222156,0.29719236,0.0266799,-0.23800378,0.028150344,0.28665292,0.5369252,-0.19997618,0.06882404,0.28954113,0.3470301,-0.08785098,0.5143121,0.08259969,0.33570662,-0.40350038,-0.3136591,0.509866,-0.404208,0.14409679,0.017190957,0.057013523,0.3105538,-0.46577707,-1.0761021,-0.5727358,-0.09362118,1.1939337,-0.42852974,-0.49543658,0.25915977,-0.18188997,-0.39657772,-0.005373981,0.3770932,-0.2721915,0.08879172,-1.007409,0.093016386,-0.19190165,0.3111822,0.05384399,0.15621431,-0.4426397,0.66798943,-0.17840205,0.6328775,0.53086185,0.10495782,-0.33005223,-0.49197915,0.12856293,1.0809131,0.36253577,0.15786584,-0.2881161,-0.15209489,-0.14035553,0.009309959,0.16275303,0.46994463,0.7389728,-0.06514608,0.19212109,0.24279903,-0.04931747,-0.0021284223,-0.2779754,-0.2922796,0.030089222,0.16496843,0.6207278,0.7640704,-0.14049888,0.21275233,-0.02928543,0.43914568,-0.1664807,-0.5192453,0.51034814,1.1617646,-0.032707743,-0.33736497,0.6933415,0.4064209,-0.29753736,0.6301637,-0.6878288,-0.28687435,0.3996089,-0.10261051,-0.34516326,0.29877138,-0.44264162,0.215116,-0.8420427,0.5096177,-0.37902364,-0.32016122,-0.6149133,-0.30491266,-3.3563364,0.16311494,-0.3303943,-0.09720088,-0.023398563,-0.01765401,0.3633841,-0.6603442,-0.6432242,0.07479508,0.21223706,0.59117025,-0.12416208,-0.052095905,-0.17898916,-0.14644484,-0.10470213,0.25381222,0.26437408,0.16216087,0.10796036,-0.5550946,-0.18253273,-0.117806226,-0.4400653,-0.105547085,-0.5460361,-0.47311515,-0.20971721,-0.5436719,-0.4968903,0.6066659,-0.3105177,-0.07833555,-0.17736208,-0.08082145,0.0011662329,0.3324635,0.060875498,0.34712535,0.003545612,-0.10773158,0.032816686,-0.15228847,0.20793697,-0.059458822,0.22426304,0.43668276,-0.32081848,0.041231655,0.46747848,0.61536604,-0.14433096,0.8265102,0.6582937,-0.028364308,0.3066776,-0.21750408,-0.2490914,-0.82513523,-0.4592031,-0.1539374,-0.51901376,-0.296866,-0.008921728,-0.31149748,-0.7672252,0.6465796,-0.162818,0.16651355,-0.01640901,0.38217023,0.3457776,-0.15001976,-0.124989,-0.105420314,-0.201454,-0.5066204,-0.27756903,-0.77323645,-0.5750807,-0.101468354,1.1892328,-0.06413547,0.0067826733,0.057968877,-0.052781228,0.01761199,0.2631198,0.012011811,0.33603853,0.5121347,0.11165141,-0.5088934,0.43435657,-0.15858954,-0.20648076,-0.71350837,0.020710312,0.6369173,-0.6159965,0.6552961,0.5837091,0.1803674,-0.040730555,-0.7936188,-0.32732716,0.14681058,-0.14736882,0.75148827,0.33763188,-0.91342866,0.5075604,0.50088567,-0.43057632,-0.66249484,0.47068036,-0.026697375,-0.20869567,0.045546535,0.46642706,-0.2876209,0.037919603,-0.25069636,0.3398775,-0.46430883,0.2684963,0.20089567,-0.08069417,0.3532044,-0.2653727,-0.24378377,-0.71234435,0.10764556,-0.5455487,-0.25205907,0.18840045,-0.09901987,-0.08736153,0.1693338,-0.12789214,0.57139206,-0.22580041,0.1406821,-0.17484131,-0.41634554,0.5472709,0.58403176,0.28127706,-0.27964064,0.64301157,-0.091577224,-0.10085101,-0.43248826,0.061090983,0.5990759,-0.06920835,0.406866,-0.069271505,-0.03145521,0.41586274,0.7396955,0.2862762,0.49039125,0.19778326,-0.14923303,0.22344086,0.14026698,0.24826603,-0.028069712,-0.38006157,-0.064640045,-0.13868518,0.23694071,0.47869536,0.034459345,0.48812017,-0.25825256,-0.2695225,0.069493026,0.20457359,0.014707044,-1.3503091,0.50415194,0.066380374,0.5917774,0.6323708,0.035554923,0.027800871,0.43475682,-0.20948133,0.08671051,0.23820919,-0.10427386,-0.54284835,0.5904739,-0.67705333,0.2991024,-0.16229598,0.035774656,0.020709515,-0.014020022,0.45638803,0.6642844,0.0058971047,0.20769322,-0.09097804,-0.20099516,0.21471678,-0.3172045,0.1934315,-0.42281118,-0.34600025,0.8727326,0.2959953,0.49888033,-0.21346617,-0.0944114,0.2633221,-0.16856673,0.18522683,-0.013384998,0.094071135,-0.05361446,-0.5344744,-0.26830366,0.53103966,0.124869436,0.13111736,-0.059825774,-0.17971386,0.21384344,-0.12913854,-0.060929887,-0.0948079,-0.6124508,-0.042217176,-0.41279453,-0.3148871,0.49303186,-0.38688445,0.22514108,0.2644334,0.06634855,-0.49485978,0.09964301,0.2080782,0.7000614,-0.07630318,-0.21184605,-0.14177594,0.31116927,0.23087502,-0.11278197,-0.010095088,-0.29914227,0.1338485,-0.7014051,0.42437315,-0.120198935,-0.31628755,0.23614205,-0.056782324,-0.06014569,0.60248023,-0.23159745,-0.42035866,0.17556922,-0.14176206,-0.19428822,-0.4587742,-0.15243617,0.2931531,0.09323883,0.08443828,0.016761992,0.028645277,-0.03870665,0.4124506,0.15515228,0.20208362,0.3806673,0.076543465,-0.46874547,0.010786563,0.15740435,0.63758326,0.015989438,-0.12765408,-0.509931,-0.53293705,-0.22011738,0.13412097,-0.20723605,0.34812757,0.015336929,-0.4233231,1.0081605,0.028837964,1.1033587,-0.030624062,-0.34028402,-0.044861145,0.6463156,-0.06294967,-0.17233053,-0.23497126,0.97514623,0.741453,-0.23170158,-0.15154302,-0.2734808,-0.04669563,-0.05621905,-0.2909377,-0.299105,-0.017908841,-0.6882685,-0.12153642,0.1501857,0.41134748,0.027181309,-0.12616691,0.13251323,0.21822104,0.03841881,0.14758107,-0.41358593,0.033225533,0.23174551,0.18801422,-0.015741013,0.013449255,-0.49226096,0.30589333,-0.4619286,0.07102504,-0.24885362,0.07269812,0.07374567,-0.36900532,0.27588397,-0.028994923,0.25239512,-0.3813585,-0.15375021,-0.09595442,0.44153678,0.19094682,0.1643492,0.8099092,-0.2852347,0.26555791,0.11042024,0.4508978,1.2374226,-0.38291565,0.039881453,0.33658957,-0.3332383,-0.71459544,0.26242116,-0.2929377,0.2605991,-0.20399226,-0.49789214,-0.54711497,0.12481852,0.05608498,-0.06688508,0.15559179,-0.67896795,-0.18247536,0.18160054,-0.3384604,-0.26559108,-0.4154317,0.0013394132,0.6262288,-0.2444235,-0.41903898,0.02926249,0.3565386,-0.26215267,-0.4670628,-0.08621634,-0.3086596,0.2253713,0.17181587,-0.24645899,0.10784143,0.16374794,-0.38021338,0.11552368,0.32465205,-0.33920914,-0.017434195,-0.35364193,-0.06839953,0.77474564,-0.18031748,-0.043616965,-0.44405383,-0.5682447,-1.1116331,-0.1351372,0.52314496,0.04313305,0.15153357,-0.6337361,0.08812329,0.057359003,0.0030366946,-0.14336753,-0.3687286,0.46430326,0.07643395,0.36648217,-0.04478998,-0.64428765,-0.051028542,0.13630687,-0.10747099,-0.4236055,0.58284736,-0.026702758,0.7244387,0.07405549,0.18250987,0.2586373,-0.6739099,0.18315002,-0.13565019,-0.25460768,-0.73849326,-0.042553253,382 -61,0.40857178,-0.13191256,-0.3706587,-0.118870005,-0.112028435,0.12954892,-0.18037558,0.25454444,0.18786488,-0.1368882,0.009210318,-0.22511603,0.025746044,0.34780577,-0.108655274,-0.62124926,0.0036862008,-0.060362473,-0.55855507,0.6021019,-0.46071875,0.23533547,-0.056235626,0.29596925,0.11493039,0.3566143,0.23371601,-0.19287983,-0.07620843,-0.085188866,-0.0662719,-0.03541802,-0.4806579,0.12260955,0.026860118,-0.115967795,0.12846327,-0.2862792,-0.37480357,-0.7031477,0.3728459,-0.6410177,0.29209918,-0.05249577,-0.12721126,0.45263484,0.08134189,0.39292794,-0.24850115,0.015244349,0.2773546,0.011477165,0.016521882,-0.041330844,-0.03779304,-0.49892926,-0.47141844,0.070066005,-0.34153783,-0.32041112,-0.17024094,0.11166608,-0.20126906,-0.032110415,-0.12634356,0.2635117,-0.49137786,-0.0030225143,0.19495839,-0.15815216,0.3736791,-0.44511992,0.09119868,-0.10633194,0.22445144,-0.12765121,-0.05953487,0.33836848,0.36181742,0.35635528,-0.10268232,-0.060845517,-0.355423,-0.046482407,0.17246866,0.4055531,-0.08131911,-0.4495163,-0.16110662,-0.056746252,-0.12101191,0.14157133,-0.009643901,-0.36723614,-0.059797086,0.088756785,-0.24315888,0.30942068,0.45931345,-0.35112906,-0.3341304,0.47492042,0.59512514,0.21074533,-0.19740057,-0.18456735,0.029446693,-0.41628382,-0.1333033,0.14845288,-0.20777225,0.4918307,-0.17256413,0.19629245,0.71402943,-0.1727849,-0.04340243,-0.14498745,-0.1012192,-0.26183003,-0.19508205,-0.05890758,0.00707086,-0.50262886,0.11518529,-0.22739723,0.5626967,0.263329,-0.6526349,0.40414992,-0.40475774,0.15195681,-0.15213284,0.46269023,0.7013746,0.2460212,0.12626337,0.81137997,-0.61840403,0.16664502,-0.108716615,-0.47759625,0.2944656,-0.13674192,-0.16028918,-0.5461171,-0.022352427,0.07342851,-0.104824975,-0.16492188,0.096481524,-0.5296591,0.025376597,0.07114891,0.7994394,-0.23114122,-0.05524823,0.45463502,1.0231862,0.9588588,0.014392944,1.0895952,0.19959761,-0.32789302,0.3989295,-0.4596657,-0.7436346,0.18026099,0.23891395,0.058641165,0.13242014,-0.031481735,-0.0113122985,0.36410227,-0.33672333,0.13069308,-0.15741712,0.22917828,0.21435285,-0.01974143,-0.11542554,-0.2392098,-0.012544334,0.14157522,0.12809579,0.21988633,-0.23040184,0.12522434,0.0076037943,1.8287952,-0.08336468,0.10886299,-0.0011463054,0.52117234,0.23228663,-0.16229194,-0.044130366,0.29871115,0.42842063,0.30440158,-0.5684603,0.24479626,-0.23866579,-0.5192504,-0.042570226,-0.24980626,0.039524198,0.02182366,-0.30690366,-0.060254384,0.08152002,-0.16036856,0.51834166,-2.8498783,-0.01755394,-0.21879016,0.24338126,-0.27729192,-0.22217081,-0.018046819,-0.43881336,0.3574493,0.46716636,0.42923063,-0.67646176,0.27751186,0.39261642,-0.5025531,-0.013827674,-0.59122574,-0.04386752,-0.059891153,0.4783558,0.07007527,0.056166478,0.040908754,0.28680348,0.3860642,0.009162955,0.17226714,0.12779836,0.29240087,0.15435848,0.545481,0.06741763,0.518952,-0.034093946,-0.12360296,0.29977056,-0.31492233,0.2967809,-0.1505134,0.16705783,0.36829302,-0.26475886,-0.8866765,-0.60547763,-0.2502882,1.0829082,-0.22548506,-0.3649658,0.28101528,-0.07073168,-0.18950509,0.010190833,0.37840876,-0.06325491,-0.030917987,-0.70787734,0.2217155,-0.038828067,0.157606,0.013051312,-0.07618017,-0.3694133,0.6351781,-0.011430139,0.46864307,0.26647708,0.12172917,-0.1897966,-0.56636316,0.06920305,0.87187475,0.2852061,-0.05579868,-0.10066854,-0.14071025,-0.46243957,-0.16422397,0.11062072,0.34490496,0.58051336,0.01777405,0.063678585,0.14106065,-0.08546934,-0.03769084,-0.05073335,-0.3020608,0.12693787,-0.21007556,0.45826933,0.6304452,-0.13992241,0.31366378,-0.044964544,0.2578119,-0.14161333,-0.4761041,0.65423405,0.7891268,-0.12716453,-0.121281825,0.3032208,0.33810797,-0.17632295,0.33974165,-0.57400554,-0.16790798,0.34725484,-0.12325791,-0.2634394,0.12573494,-0.22826603,0.026614279,-0.70677954,0.24674675,-0.24576628,-0.34765857,-0.50915396,-0.14850177,-3.8178072,0.0418646,-0.21396083,-0.32863885,-0.045310505,0.096168235,0.35172108,-0.5368079,-0.52170473,0.110465646,0.020882133,0.4832308,-0.009105237,0.12687247,-0.38693458,-0.0017621573,-0.44374,0.26279998,0.05617642,0.20768657,0.10598208,-0.4816118,0.031578615,-0.19112849,-0.45566538,0.03407821,-0.38993353,-0.38373658,-0.23407315,-0.39447036,-0.32675523,0.6668488,-0.20495006,0.067315996,-0.08832534,-0.056299247,-0.2259531,0.35781208,0.19819462,-0.029824216,-0.02784501,0.026644029,-0.022216598,-0.29307607,0.17699721,0.03709221,0.23039813,0.3045532,-0.014996804,0.043578282,0.35683265,0.5133405,-0.14972827,0.67021513,0.5408718,-0.18549696,0.22556233,-0.32439113,0.004964955,-0.30823025,-0.3715565,-0.14705487,-0.30074123,-0.59217596,-0.12549509,-0.2850417,-0.6490296,0.3091573,0.03361319,0.10465045,-0.025778782,-0.03194097,0.37375918,-0.21078917,0.22601047,-0.024497058,-0.028756447,-0.53833693,-0.26232633,-0.57160306,-0.38198352,0.25155294,0.8610672,-0.17717841,-0.25110462,-0.08364985,-0.20357056,0.056391574,-0.011062678,-0.08457717,0.1786585,0.22285864,-0.14009166,-0.68214464,0.5587427,-0.17699164,-0.006670367,-0.6404563,0.15546003,0.497005,-0.4291339,0.43898058,0.24234219,0.043631233,-0.030115977,-0.44376525,-0.06707177,-0.060702905,-0.26218256,0.3642654,0.07473485,-0.7621087,0.3145402,0.29016274,-0.23782389,-0.6042367,0.5580789,0.08863224,-0.2715574,0.015375772,0.26393473,0.0570522,-0.0068556303,-0.4021125,0.2601039,-0.5402055,0.07851815,0.35840333,-0.009888218,0.24593747,-0.10926472,-0.058691572,-0.5728455,-0.044593327,-0.31127647,-0.18426187,0.19350775,0.08422357,0.17282483,0.22377989,0.14891285,0.3150922,-0.17872483,0.15294898,0.10322697,-0.16617149,0.32764333,0.3561204,0.34719482,-0.44223303,0.47614655,0.00872688,-0.2278555,0.18977965,0.04179509,0.3774745,0.2772544,0.3950574,0.111256614,-0.20924571,0.32360986,0.6959349,0.19468117,0.3793753,-0.08346817,-0.3069777,0.23796517,0.14971283,0.18244809,0.17511925,-0.4892928,0.018436529,0.017710928,0.25712597,0.344138,0.10044318,0.28560323,-0.08167225,-0.3325166,-0.045285918,0.08129539,-0.10913531,-1.0799819,0.4512028,0.30659348,0.8170342,0.5651067,-0.096578084,0.052968226,0.66425085,-0.06815271,0.107946485,0.31404763,0.023036636,-0.56054395,0.4567545,-0.7430699,0.35813728,0.04826456,-0.069612436,0.0037453105,-0.078352265,0.25707886,0.7755944,-0.1926683,0.02786794,-0.19225952,-0.3558074,0.22613727,-0.21836632,0.096154705,-0.45147622,-0.43020585,0.5137182,0.45189252,0.19979958,-0.15392014,0.07656212,0.024686556,0.010219075,0.045495313,0.05653403,0.1349789,0.12992464,-0.6850989,-0.34248072,0.502271,-0.4354574,0.076226756,-0.039429538,-0.19984806,0.1317011,-0.23310024,-0.000922136,-0.007200945,-0.575579,-0.053752013,-0.029837757,-0.21901362,0.46559006,-0.26683986,0.29260877,0.06571163,0.09046039,-0.34796032,0.31691265,0.060036495,0.6363139,-0.0766222,-0.07351753,-0.50172466,0.09499475,0.14874075,-0.15339819,-0.111278154,-0.23581956,-0.08563559,-0.5315812,0.42456663,-0.024545662,-0.37299463,0.04424714,-0.20596203,0.0435728,0.6249589,-0.22093017,-0.30854854,-0.1137445,-0.092467666,-0.22448164,-0.13921705,-0.15380178,0.13035089,0.14647163,-0.002787061,-0.05993629,0.04550415,-0.15950295,0.38675985,0.14096321,0.32938334,0.26120383,0.07744853,-0.35203254,-0.074404046,0.085288495,0.38777483,-0.0027822554,-0.00325761,-0.23043343,-0.5043327,-0.4343109,0.07609382,-0.11373958,0.4683214,0.092587456,-0.22723113,0.4509095,0.05133113,1.190038,0.061025493,-0.28022966,0.022775456,0.48775,0.048295412,0.047853634,-0.4201688,0.7421515,0.5511458,-0.14040945,-0.1770041,-0.1285636,-0.21540913,0.20045352,-0.12524602,0.05162185,0.0661386,-0.74465007,-0.32116112,0.20112091,0.16001844,0.1730653,-0.018217843,-0.12108435,0.19505236,0.115728274,0.44062525,-0.50329596,-0.17015694,0.3248243,0.23791207,0.092591256,0.21210326,-0.35682362,0.3729586,-0.36418986,0.08811496,-0.13405363,0.19276476,-0.18255605,-0.15249534,0.16337168,-0.18766084,0.33073053,-0.17813146,-0.4157233,-0.29116485,0.57897526,0.273036,0.2645294,0.68205607,-0.17445143,0.09714066,0.051366262,0.57246304,0.99336684,-0.26974532,0.006000558,0.376956,-0.29336575,-0.60119706,0.25143215,-0.11982484,0.16563283,0.0260113,-0.24334703,-0.41902438,0.39975888,0.06376065,-0.005130873,0.10211431,-0.71747804,-0.20032129,0.31685573,-0.17041212,-0.3011832,-0.3497461,0.19762093,0.67120576,-0.33932543,-0.2090821,0.16358641,0.25404063,-0.30948865,-0.51529294,-0.115457416,-0.37971824,0.2974953,0.15470177,-0.3196406,-0.13458768,0.09702438,-0.41826868,0.25293532,-0.047530707,-0.3553085,0.043250803,-0.121124655,-0.072867185,0.8595285,-0.2151047,-0.01678238,-0.66611373,-0.33692598,-0.73850536,-0.42924884,0.39786407,0.14082937,-0.057603966,-0.4481929,-0.16079591,-0.086223654,0.07263685,-0.12224874,-0.43287137,0.44570157,-0.010452025,0.31633353,0.029178854,-0.8591997,0.02655756,0.18671556,-0.10902269,-0.57331836,0.49714273,-0.13258883,0.6787336,0.101483844,0.12430021,0.34919345,-0.2768302,0.10794826,-0.36384484,-0.24007438,-0.6887463,0.28202152,383 -62,0.19224054,-0.11861815,-0.55022216,-0.03745103,-0.21068436,0.070961446,-0.31020743,0.35196728,0.24868076,-0.3055924,-0.18788838,-0.11392296,-0.0008227788,0.33659086,-0.14777595,-0.45878762,-0.027944393,0.23412447,-0.6467651,0.46928078,-0.4083532,0.20832911,-0.22381112,0.23888108,0.14586253,0.06675977,0.1366315,-0.075033605,-0.08125128,-0.106972985,0.153783,0.278759,-0.5519203,0.34212866,-0.22515717,-0.35871875,-0.052410603,-0.38093197,-0.47891364,-0.86106837,0.14531983,-0.6284699,0.5426832,-0.11426708,-0.20727138,0.34216067,0.04825057,0.23340936,-0.20614766,0.015441008,0.12633646,-0.30733538,-0.31368217,-0.12579082,-0.1289562,-0.3765438,-0.52537996,0.15917706,-0.45976332,-0.022840556,-0.30756378,0.15843575,-0.45021725,0.077651024,-0.1453229,0.46012187,-0.32433483,0.07964796,0.11195756,-0.1224089,0.08184731,-0.64395636,-0.07436329,-0.0834678,0.15014845,-0.08660397,-0.28744182,0.3554389,0.23401448,0.35676908,-0.07816216,-0.23587401,-0.18730906,-0.0015459917,0.069131054,0.48951143,-0.21870062,-0.28724873,-0.059607036,-0.030002255,0.3957434,0.031789623,-0.17639768,-0.24986112,-0.12111571,0.17016245,-0.16728815,0.23678069,0.66201,-0.1117012,-0.004043415,0.39411145,0.41240677,0.1225204,-0.089916356,0.028488897,-0.11113077,-0.43470633,-0.19449429,0.020007059,-0.10289548,0.38511327,-0.060902916,0.14412934,0.54410446,-0.16180956,-0.15377486,0.16569479,0.06591052,0.112287514,-0.1213204,-0.36321628,0.35571444,-0.53304285,0.15283361,-0.11608208,0.80648726,0.04665301,-0.709204,0.30516136,-0.41917795,0.14826441,-0.018189881,0.6962686,0.67463636,0.5165529,0.34946445,0.7563035,-0.3969695,0.06678455,0.023728974,-0.3434198,0.022084221,-0.2095798,-0.14562075,-0.3794619,0.04411233,0.18542561,-0.15988111,0.14993264,0.23143877,-0.5049023,-0.056648985,-0.0062003303,0.55414397,-0.28219992,-0.025983132,0.69835967,0.9587797,0.882318,0.11719304,1.1440634,0.18596719,-0.09416362,-0.019242518,-0.023239046,-0.79968566,0.28662544,0.1944604,-0.5883486,0.2774797,0.14568017,-0.20011686,0.34450462,-0.59716016,-0.23742557,-0.1771253,0.30898288,-0.005049616,-0.12804261,-0.27226725,-0.3282939,0.007440418,0.06476203,0.10732288,0.31683084,-0.2377497,0.1900284,0.16270982,1.2294052,-0.082247734,-0.025747176,0.27124217,0.32604477,0.13364145,-0.16663438,-0.10880429,0.110070735,0.49044815,0.08209589,-0.58061033,0.025422871,-0.14226076,-0.40895593,-0.15585268,-0.19895396,0.07494685,-0.08471978,-0.3430959,-0.16600668,-0.18848416,-0.5238247,0.5172334,-2.6610098,-0.11483997,-0.09690125,0.32250273,-0.12310476,-0.20936315,-0.24500015,-0.49891865,0.39519432,0.36167148,0.39525896,-0.49481776,0.32003665,0.26246157,-0.67769706,-0.12208405,-0.59363055,0.092516094,-0.012506014,0.3698804,0.11105826,-0.1341711,0.023168813,0.038622055,0.5455523,-0.14560714,0.08974991,0.37696266,0.30472726,-0.103816904,0.27583644,0.011976939,0.5280584,-0.3884138,-0.2852608,0.43816566,-0.3276397,0.21423852,-0.13850962,0.16702369,0.39887518,-0.58735657,-0.8471942,-0.49848232,-0.13568333,1.4208606,-0.30463868,-0.49763295,0.26210028,-0.24177054,-0.3015135,-0.0655482,0.43890443,-0.24225032,-0.10391819,-0.75825036,-0.008081645,-0.057727724,0.35286027,-0.063894846,0.040375434,-0.35554278,0.50754,-0.16887636,0.5690922,0.38138855,0.18927306,-0.2235343,-0.36400688,0.10713777,0.9382789,0.5083554,0.1511701,-0.18666671,-0.09915264,-0.21439643,-0.2184102,0.1854587,0.50680107,0.6957313,-0.06311566,0.111665316,0.29912356,0.0115129575,0.08199797,-0.19303702,-0.21576136,-0.011103552,0.18187542,0.6629111,0.56677914,-0.016117483,0.29381746,0.05028924,0.3307425,-0.187997,-0.40074623,0.4351523,1.0054443,-0.15364105,-0.28591442,0.42059946,0.49017882,-0.1441007,0.43423328,-0.55205506,-0.48827192,0.4593512,-0.19132984,-0.47227228,0.19666156,-0.29890233,0.19112349,-0.6447472,0.4172303,-0.22188683,-0.67311263,-0.41512185,-0.06092264,-2.973662,0.10012135,-0.31629926,-0.164365,-0.20274365,-0.09496001,0.23995024,-0.42283365,-0.5856006,-0.0075424146,0.16229844,0.7570189,-0.048534863,0.02720714,-0.16012917,-0.19863933,-0.34900028,0.041346613,0.24325302,0.23859406,-0.015949555,-0.39229512,-0.13960186,-0.25415024,-0.40854624,0.028718185,-0.44783545,-0.28971282,-0.25907406,-0.5094612,-0.28214633,0.5646341,-0.35207734,0.00958672,-0.23810978,0.015450355,-0.028829256,0.33381593,0.06197741,0.03857056,0.06762475,-0.16385542,0.059227124,-0.22072357,0.37671202,-0.0058117434,0.20860581,0.4848414,-0.25334427,0.07447862,0.49412674,0.6062057,-0.21240908,1.073992,0.44919264,-0.039287236,0.270899,-0.13575397,-0.3596237,-0.46814185,-0.20269334,0.09643796,-0.444063,-0.23622468,-0.031727254,-0.26021153,-0.8918482,0.6029829,-0.021394297,0.18921432,0.018708339,0.21648249,0.46470273,-0.11751792,-0.059276525,-0.07665891,-0.15909836,-0.24395737,-0.24078974,-0.7300563,-0.4684857,-0.0873788,1.1207459,-0.17464653,0.08864833,0.069196686,-0.087865174,0.15742683,0.05172602,0.07994797,0.30994463,0.38234764,-0.02501899,-0.70858157,0.37813908,-0.3170653,-0.16788045,-0.5044018,0.2237507,0.64211446,-0.58985287,0.33871612,0.43950728,0.11404957,-0.2240777,-0.63355017,-0.15712783,-0.00571901,-0.21530762,0.4580468,0.2135537,-0.9286687,0.5063917,0.41031662,-0.3177077,-0.66718864,0.5125165,-0.022775747,-0.05939088,0.07327984,0.4931836,-0.16006473,-0.025024297,-0.12284312,0.22286779,-0.22823864,0.33575994,0.14836463,-0.080003336,0.3442336,-0.27054244,-0.117840126,-0.647861,0.037209183,-0.43538198,-0.16298638,0.0799349,-0.027582468,-0.07333382,0.10466844,-0.09706274,0.46725088,-0.3597269,0.11254299,-0.21708298,-0.4256224,0.48560685,0.54460526,0.4134369,-0.22788179,0.6403358,0.055238873,-0.11971663,-0.2678912,-0.0032560527,0.50531566,-0.009121759,0.38463026,0.05328562,-0.08750273,0.24853373,0.8122193,0.221865,0.4260533,0.04013498,-0.21835285,0.08250056,0.17665364,0.28706396,-0.007384423,-0.39713073,-0.071523376,-0.3021843,0.21505743,0.39920345,0.18113545,0.4547893,-0.19023362,-0.29048878,-0.017620666,0.13970175,-0.045173895,-1.259601,0.53203577,0.08187431,0.7210116,0.35348988,0.12809214,0.048629627,0.5311662,0.0076486208,0.11162607,0.2004293,0.004736066,-0.46541113,0.5248681,-0.7920043,0.4481393,0.00050416216,0.005725532,0.16486612,0.07431585,0.4436667,0.74904096,-0.24857375,0.06919209,-0.07911341,-0.1594168,0.32195422,-0.40294698,0.23293464,-0.4582491,-0.46599513,0.720354,0.34954262,0.43485814,-0.21085197,-0.037614837,0.07961,-0.14433305,0.25915954,0.039426204,0.029265925,-0.066317104,-0.5086671,-0.13271585,0.38874355,0.06967576,0.03515459,-0.0006445721,-0.06015835,0.3073998,-0.19513825,0.044032335,-0.1325493,-0.4636152,-0.017427243,-0.33793083,-0.43033344,0.2844968,-0.35139593,0.3140279,0.26309228,0.0064214403,-0.44792494,0.12388407,0.29146636,0.6696036,-0.050012454,-0.28587282,-0.15957668,0.25291005,0.2100005,-0.2403793,-0.03130214,-0.30251706,0.03740938,-0.69684535,0.37431,-0.2443184,-0.2681455,0.39504755,-0.105904914,-0.031608462,0.5044707,-0.12978098,-0.08875239,0.06957179,-0.12458427,-0.2173939,-0.34157324,-0.16706379,0.30489075,0.16348204,0.015277773,-0.044715825,-0.024806513,-0.13408631,0.23508587,0.044168964,0.25457814,0.31539237,0.05208999,-0.31257147,0.011556052,0.043417774,0.6259966,0.17105588,-0.16094097,-0.35013634,-0.32380375,-0.19354607,0.08723253,-0.120443106,0.2901202,0.10470513,-0.26910025,0.61990964,-0.09684965,0.8680159,-0.030353349,-0.2781302,0.02799464,0.5528805,-0.05274694,-0.22871241,-0.22924712,0.8539982,0.481117,-0.118943945,0.010107737,-0.30171707,-0.10591623,0.1510809,-0.27569583,-0.23242879,0.03451424,-0.59514177,-0.29133087,0.20439203,0.3491341,-0.052704073,-0.15639308,-0.034649394,0.29789782,-0.0019224472,0.224776,-0.41142517,0.029995784,0.3694622,0.12096751,-0.051643316,0.12647992,-0.4065709,0.28008458,-0.59900415,0.003117174,-0.06708902,0.10614151,-0.121438764,-0.30420122,0.3216231,0.14425625,0.36560318,-0.2485703,-0.14389892,-0.21719536,0.35808802,0.087903604,0.082107365,0.51705784,-0.2942745,0.014024869,0.13643178,0.39393765,0.75853795,-0.25831467,0.14349931,0.25731188,-0.33717647,-0.5285256,0.3126998,-0.29024178,0.16163377,-0.1014328,-0.2722876,-0.41300607,0.22942173,0.27257574,0.08267803,0.023628533,-0.68719894,-0.053919785,0.129552,-0.22548848,-0.2197109,-0.3864408,0.17313522,0.587639,-0.27846795,-0.2994978,0.053898267,0.26148728,-0.15622492,-0.53532386,0.04724273,-0.36315495,0.13327634,-0.055752013,-0.28158897,-0.08607245,-0.0010953397,-0.4473805,0.15539303,0.12174542,-0.2915553,-0.055667922,-0.12668264,0.13049708,0.69134945,-0.28925928,0.24151555,-0.47847727,-0.47424442,-0.9110911,-0.25825405,0.37146205,0.29613602,0.042722773,-0.6695363,-0.0016220417,-0.054397285,-0.21875301,-0.0701389,-0.36907238,0.40393832,0.16306971,0.2908164,-0.20900092,-0.74339926,0.14408265,0.059038512,-0.22289339,-0.28470084,0.33800235,-0.010979906,0.65983385,0.14657578,0.12510094,0.15294372,-0.53349185,0.15329847,-0.15564738,-0.20416254,-0.56752384,0.09929624,411 -63,0.44448304,-0.05357919,-0.57774115,0.020538377,-0.41698867,0.24008113,-0.085006356,0.48158738,0.22481553,-0.3956047,-0.20796375,-0.01646078,-0.07025402,0.17067751,-0.23048283,-0.572177,-0.038632564,0.15583116,-0.31168306,0.51219267,-0.29766452,0.38414574,0.10352304,0.20528223,0.24804159,0.15425496,0.008831149,-0.11577277,-0.23449121,-0.29066503,-0.12860227,0.27523965,-0.6552275,0.41206986,-0.1263452,-0.24458233,-0.011642383,-0.36223197,-0.3654142,-0.72485757,0.16556695,-0.69599617,0.6009751,0.10272372,-0.3978052,0.06425668,0.18180582,0.262507,0.014991526,0.04219288,0.21610975,-0.09213393,-0.008141674,-0.1690414,-0.012865409,-0.5197476,-0.53049505,-0.18083817,-0.5410688,-0.11065841,-0.040880557,0.26289213,-0.23643012,-0.09693979,-0.2128649,0.5878427,-0.47625887,0.10433967,0.26932722,-0.099544756,0.2984433,-0.59229374,-0.09649122,-0.05680555,-0.017291121,-0.09258796,-0.26496643,0.25879204,0.10247259,0.43436998,-0.044187702,-0.14441268,-0.18835363,-0.007057769,0.12904644,0.3541434,-0.34443322,-0.34564888,-0.12521252,0.057067335,0.41450316,0.010541424,0.19881742,-0.2898787,-0.0984333,0.00299526,0.0004746858,0.32593712,0.5601946,-0.20131657,0.02833677,0.2683451,0.5498877,0.1646821,-0.15397334,0.08445297,0.02910145,-0.36980665,-0.107629046,-0.034580253,-0.19278763,0.5119804,-0.056423172,0.06418395,0.62152344,-0.052016012,-0.07069114,0.1933788,0.17300698,0.12284908,-0.1671778,-0.3238883,0.23469745,-0.5358335,-0.13597329,-0.059396695,0.72690475,-0.0029116161,-0.6967779,0.23502828,-0.45236146,0.07211675,0.02327825,0.5134348,0.5866006,0.5229084,0.11253024,0.81332487,-0.3252492,0.093092844,-0.07325549,-0.2441818,0.14837097,-0.097466975,-0.102137685,-0.4764642,-0.14667618,-0.09806079,-0.3717081,-0.102841295,0.3568007,-0.6772174,-0.161382,0.11359477,0.71029484,-0.30801672,-0.06334789,0.5815383,1.0361937,0.9133095,0.1622867,0.86493623,0.18093422,-0.120234795,-0.19417393,-0.2363586,-0.5367043,0.18426618,0.29315543,-0.17051071,0.4662167,0.24359998,0.111863464,0.44483924,-0.47576267,-0.027886763,-0.19423388,0.4046003,-0.054997966,-0.07051061,-0.38711122,-0.17571594,0.048496045,0.1732299,-0.016975999,0.363797,-0.24666332,0.25276986,0.25037786,1.4961476,-0.28349656,-0.041926056,0.12580717,0.28309557,0.16389883,-0.40226734,0.016144596,0.31161958,0.28688484,0.0441501,-0.50481653,-0.0099709,-0.099219725,-0.46241063,-0.16894628,-0.13575886,-0.175997,-0.15243079,-0.44455382,-0.26918462,-0.06129051,-0.25815868,0.44376233,-2.596479,0.11102483,0.00875938,0.3221828,-0.20577392,-0.40615585,-0.07916466,-0.40932447,0.19686183,0.33797723,0.33005285,-0.66619617,0.33371562,0.501018,-0.34374523,0.036504373,-0.554187,0.14252785,-0.011225332,0.41116202,-0.025126241,0.03726967,0.19823165,0.31444886,0.45007935,-0.17327113,0.20329544,0.19230132,0.26338103,-0.021352792,0.27498785,0.08112947,0.4272759,-0.0015000179,-0.19450785,0.4649301,-0.34985703,0.18863326,0.008500997,0.037075747,0.29072142,-0.3182774,-0.6231465,-0.5886066,-0.11895515,1.0260904,-0.27122086,-0.5669538,0.19008467,-0.19929296,-0.29556555,-0.046308592,0.29773527,-0.06225604,0.04881013,-0.802515,-0.07046445,-0.18918946,0.3244556,-0.08917268,-0.05248966,-0.52931774,0.74169683,-0.23895866,0.4717089,0.43688127,0.27318263,-0.29324746,-0.54553664,0.029552605,1.0227723,0.6427189,0.14298353,-0.27986917,-0.17128731,-0.21943365,0.0899801,0.09244561,0.6584248,0.83893925,-0.14810686,0.044623874,0.2963422,0.03923425,-0.020651817,-0.16294536,-0.4713926,-0.021221235,-0.043482564,0.5756096,0.6588111,-0.054035667,0.53186953,-0.0904161,0.3573795,-0.17985806,-0.50574327,0.37543058,0.7292539,-0.19337985,-0.28127712,0.70259833,0.5319041,-0.1277705,0.41211647,-0.63711834,-0.22584085,0.4130394,-0.18778259,-0.460356,0.34099495,-0.3386954,0.26599586,-0.6984291,0.6681497,-0.25254917,-0.7902309,-0.5787822,-0.17428377,-1.8986577,0.2319839,-0.20843507,-0.19278768,-0.06820953,-0.174518,0.24163476,-0.7090213,-0.5985995,0.16422954,0.058514047,0.5179846,0.03229276,0.049262565,-0.08006145,-0.369147,-0.041320577,0.2865653,0.16403157,0.16331154,-0.00037343055,-0.4273113,-0.058791965,-0.110770814,-0.2903884,0.020170484,-0.620363,-0.63271457,-0.12661842,-0.51735824,-0.13078405,0.6425432,-0.3745888,0.039179888,-0.21108957,0.043770812,-0.009243948,0.07367091,0.1221991,0.11633359,-0.025451235,0.0153685585,-0.0041462183,-0.29739195,0.09405681,0.12905961,0.4086738,0.3772646,-0.13532978,0.23251027,0.54187816,0.6247122,0.022826418,0.8297721,0.4838931,-0.26702797,0.08712918,-0.121267386,-0.27018243,-0.60572624,-0.32911754,0.0692912,-0.5690847,-0.2684956,-0.0037758294,-0.39675286,-0.75910234,0.4803298,-0.13878152,0.2646956,-0.037298903,0.2206463,0.45557368,-0.20811602,-0.13245195,-0.23944923,-0.13791972,-0.58999515,-0.33925512,-0.67303884,-0.36554453,0.19224092,1.4155059,-0.34134272,0.005990967,0.13601124,-0.1752761,0.109329656,-0.037504133,-0.07140587,0.020105675,0.49698406,-0.076577716,-0.58501863,0.20820257,-0.1659774,-0.031661157,-0.4611863,0.10797348,0.5330993,-0.61263216,0.45460412,0.2785011,0.16936406,-0.05471401,-0.6758014,-0.06557665,0.10445873,-0.39552355,0.53319085,0.31729904,-0.5203556,0.33163568,0.27247363,-0.37600124,-0.66317654,0.46586883,-0.02941426,-0.32069522,-0.09806052,0.2977333,-0.12659632,-5.1882118e-05,-0.030428424,0.23081182,-0.3208171,0.19501904,0.2903458,-0.12676094,-0.08091363,-0.25367856,-0.18778999,-0.7874133,0.14231874,-0.33681762,-0.36532068,0.10878666,0.024198802,0.08591122,0.23638028,0.2288419,0.5682353,-0.31158423,0.08328809,-0.09080383,-0.30840212,0.5767659,0.47138473,0.42238602,-0.18684886,0.46196437,0.07067905,-0.0586303,-0.26248562,0.12766422,0.4321701,-0.0314757,0.26101136,0.028892636,-0.080317214,0.34014776,0.8709954,0.10845532,0.43717536,-0.073023215,-0.15729167,0.08612442,-0.010190858,0.22311693,0.010586977,-0.5528188,-0.051751696,-0.02372301,0.13089716,0.3825928,0.19010639,0.28481805,-0.14639148,-0.37256575,0.1335514,0.20045355,0.035011586,-1.3014609,0.23483513,0.02869787,0.73898697,0.6180024,0.2585122,0.030776855,0.4661612,-0.27034938,0.051420618,0.2201368,0.047651455,-0.3517263,0.32575125,-0.6651114,0.28737113,-0.0935492,-0.02111565,-0.019281514,-0.22838348,0.33566308,0.90484196,-0.14550184,-0.050094202,-0.0724447,-0.14666288,-0.073709436,-0.29379803,0.2452085,-0.6569596,-0.5055909,0.7583792,0.5279231,0.46795654,-0.14125869,0.017453307,0.18744728,-0.22212619,0.22713718,0.04779107,0.02623648,0.007548958,-0.4562738,-0.27997917,0.5367172,-0.19792691,-0.107157506,-0.08821065,-0.12422041,0.07553616,-0.15660311,-0.10828527,0.045101993,-0.7030739,0.018759497,-0.47764555,-0.3140206,0.47328857,-0.19367218,-0.013081364,0.09971104,-0.023401465,-0.28795817,0.2874211,0.33111274,0.616909,0.09829463,-0.02550962,-0.21577784,0.3410818,0.07714887,-0.13466938,-0.042034633,-0.11649219,0.3639235,-0.5794043,0.34062934,-0.007063272,-0.19657938,0.061756596,-0.21514213,0.0113281105,0.5008058,-0.11004007,-0.1715225,0.10413315,-0.19191706,-0.15875654,-0.14892586,-0.21904443,0.12215334,0.06643747,-0.14902756,0.03230136,-0.13504845,-0.2138947,0.11616941,0.1822033,0.41306233,0.58386695,-0.11767873,-0.61478174,-0.049379557,-0.036396287,0.42808118,0.061457533,-0.09163959,-0.3860615,-0.39762378,-0.41823965,0.2765946,-0.26342672,0.35328665,0.036038034,-0.24075244,1.0386342,0.12498914,1.1844214,-0.031279653,-0.40992138,-0.15151432,0.5758287,-0.05197399,0.081967145,-0.4248561,1.0148636,0.5789015,-0.058993764,-0.019400088,-0.23893094,0.08050496,0.29294112,-0.12860397,-0.21050946,-0.060091034,-0.5833829,-0.09620122,0.29718453,0.20542824,0.021884248,0.05820515,0.022546554,0.31418857,0.016763197,0.23912251,-0.56000465,0.12864691,0.23043641,0.12424964,0.24896917,0.020845752,-0.5488243,0.3009022,-0.41971135,0.14422771,-0.21593225,0.009971544,-0.028767955,-0.36317104,0.18464492,0.015699223,0.31172925,-0.5533619,-0.23013741,-0.18177673,0.56311744,-0.078138195,0.12085394,0.59383565,-0.20421793,0.15364474,-0.04227063,0.5714767,1.0344056,-0.3346857,-0.094471954,0.51583606,-0.45386976,-0.60959536,0.1868928,-0.3200952,-0.1262541,-0.17159045,-0.47419637,-0.5137471,0.25354522,0.25128877,-0.113359265,0.06333685,-0.7074996,-0.042948484,0.33489603,-0.3554762,-0.13711308,-0.17158157,0.25480425,0.6216849,-0.4233954,-0.36223462,-0.15562102,0.37066185,-0.28603202,-0.45022488,-0.06930498,-0.25851613,0.3206843,0.071507044,-0.33683798,-0.14826146,0.18748969,-0.32607397,-0.06797536,0.35833117,-0.24788958,0.04121328,-0.18807995,0.11992433,0.69172686,0.039575655,-0.13277023,-0.49710453,-0.32926926,-0.889227,-0.35177654,0.14178836,0.1050643,0.015194388,-0.6999022,-0.06693013,-0.29074228,-0.0225273,-0.09454564,-0.34966207,0.5364835,0.22082853,0.3457569,-0.05630234,-0.90047574,0.16024269,0.09638362,-0.10617225,-0.57041377,0.46374062,-0.03193241,0.85945636,-0.0058970097,0.0054980777,0.077810705,-0.6352874,0.1988842,-0.16010323,-0.1384446,-0.8226621,0.11848143,417 -64,0.43781084,-0.21513583,-0.42867208,-0.036755256,-0.21589702,0.034020744,-0.009163776,0.19886586,0.16105798,-0.45969892,-0.03280802,-0.19093274,0.03126132,0.45168388,-0.18143976,-0.5820059,-0.0740113,0.15522194,-0.4764271,0.4617086,-0.36416078,0.33956927,0.08092535,0.22268766,0.023865059,0.28110188,0.283955,-0.38508394,-0.16947316,-0.04418429,-0.26913548,0.16841605,-0.44797352,0.24063885,-0.034147326,-0.3525712,0.21822743,-0.31755558,-0.34015363,-0.57292694,0.15118042,-0.5977967,0.28988856,0.09138428,-0.12042518,0.26287538,-0.020045683,0.35192716,-0.3947553,0.04463777,0.12247547,-0.12596986,-0.10087487,-0.41079706,-0.04449997,-0.31044838,-0.3834426,-0.020483036,-0.29579425,-0.13942882,-0.27628875,0.14544488,-0.26824626,-0.011861388,-0.14670652,0.23287576,-0.42635453,-0.0065506883,0.15087032,-0.23010483,0.23227827,-0.44078714,-0.12910768,-0.059205934,0.17005636,-0.21779212,-0.07929378,0.3966871,-0.07620276,0.41104335,-0.027220525,-0.0254491,-0.37590432,-0.20321818,0.13636287,0.59836197,-0.18619579,-0.47510082,-0.042437345,0.08971882,-0.015778987,0.12480891,-0.1470956,-0.36138427,-0.15936552,-0.19528747,-0.20555922,0.1332601,0.5029939,-0.3569636,-0.014745437,0.34165215,0.35961324,0.0038718395,-0.09088564,-0.25078988,0.02527326,-0.49595052,-0.15914157,0.06922436,-0.20137537,0.51246095,0.01819558,0.1562649,0.57831526,-0.17365614,0.06540222,-0.092203885,-0.048627418,0.00049661845,-0.08315222,-0.20431691,0.1780979,-0.22533299,0.034714025,-0.08365071,0.83340555,0.1591426,-0.75695705,0.28945512,-0.46874672,0.12795964,-0.07742749,0.42970824,0.17497374,0.55941296,0.22462668,0.70776075,-0.56919473,0.19098078,-0.21774772,-0.28591645,-0.16783412,0.122531354,-0.19454832,-0.38063848,0.14705941,0.030065082,-0.18332988,0.15697984,0.10332022,-0.4470181,0.14670092,0.041711144,0.8553525,-0.39222682,0.06576434,0.46551093,0.88542193,0.81392473,0.03932379,0.9790069,0.1778386,-0.39091122,-0.017392755,-0.35283095,-0.6298306,0.12647226,0.41274124,0.026897728,0.18960969,0.22285119,0.12671754,0.27237076,-0.23767659,-0.029807054,-0.21803296,0.12305711,0.056528613,0.044618096,-0.29756865,-0.16819046,-0.229049,-0.05562019,0.014382154,0.1620267,-0.2990019,0.3589731,0.16640416,1.9587575,0.021926463,0.15362163,0.1468601,0.2886188,0.12790059,0.06658058,-0.071267776,0.28566927,0.15773056,0.022114258,-0.46923596,0.0664969,-0.16157562,-0.63310385,-0.06517082,-0.13996929,-0.05099164,0.064841434,-0.3035335,-0.10053918,0.023223553,-0.23908082,0.507523,-2.5080552,-0.0037736772,0.020879956,0.4034679,-0.32536113,-0.26181307,-0.10998382,-0.3386631,0.32987198,0.38857955,0.45749205,-0.610459,0.31834686,0.34992847,-0.39336196,-0.2072678,-0.4901064,-0.033035547,0.041316226,0.2647737,-0.014747538,0.00017414615,-0.008446544,-0.015282784,0.32116893,-0.25724888,-0.011262268,0.2051992,0.25604165,0.29355055,0.46299934,0.01880122,0.48313707,-0.31937844,-0.05692187,0.14150253,-0.39473546,0.21357298,0.12934463,0.12858617,0.2838316,-0.46537662,-0.73978233,-0.601691,-0.1997109,1.1006719,-0.23195887,-0.2783086,0.24991465,0.06467661,-0.17507368,-0.086099416,0.20553441,-0.023380954,-0.034051657,-0.72032225,0.097245395,-0.058779787,0.33407542,0.1257993,-0.0098639615,-0.35416853,0.6479527,-0.0978726,0.500474,0.45217508,0.20812126,-0.110906586,-0.26140928,0.06305315,0.83957785,0.29612598,0.19942777,-0.08373466,-0.2067532,-0.11200181,-0.11525272,0.17687231,0.370514,0.6746487,-0.07151493,-0.03876148,0.19942942,0.10125175,-0.14386,-0.12113187,-0.30467257,-0.00614696,-0.050488766,0.5421698,0.5059915,-0.17731848,0.32752067,-0.0958291,0.41630673,-0.13823408,-0.32059905,0.41155854,0.9301066,-0.1301502,-0.20630088,0.46302438,0.6065628,-0.119369134,0.29983494,-0.6806927,-0.25918484,0.44673896,-0.21862265,-0.30718866,0.16839704,-0.21210834,0.10949693,-0.8517305,0.3178393,-0.20233771,-0.3508729,-0.5123684,-0.16176422,-2.8129115,0.10153549,-0.27501512,-0.22333549,0.1478962,0.1656302,0.0072476473,-0.58132076,-0.3777016,0.13206932,0.13373639,0.4598436,0.049250785,0.3223238,-0.14763469,-0.035361923,-0.15980253,0.17198999,0.01572571,0.18335146,0.05700034,-0.45651513,-0.14364259,-0.17327055,-0.30962947,0.19799608,-0.49810743,-0.35249627,-0.1163339,-0.48206747,-0.25698364,0.46642146,-0.3564514,-0.009275654,-0.1362474,-0.019245826,-0.1886016,0.18600832,0.055721797,0.094432354,-0.058055304,-0.108862266,-0.043146316,-0.2939917,0.28477916,0.16737077,0.21229124,0.28591722,-0.018708197,-0.028953936,0.39715958,0.5433129,0.011447951,0.5935863,0.37799028,-0.13764074,0.20255944,-0.4085545,-0.29258543,-0.51378167,-0.5739034,-0.038388938,-0.26405936,-0.37225962,-0.08795297,-0.37014633,-0.61421824,0.5442296,0.037413828,-0.16352512,0.089506775,0.16704324,0.49366072,-0.1599202,-0.16537187,0.05007731,-0.12634182,-0.45861566,-0.415284,-0.50007534,-0.23352721,0.07611455,1.1516507,-0.14305004,-0.09699787,0.002973061,-0.086492166,-0.1302542,0.057078995,-0.019596584,0.33012837,0.26818562,-0.14553507,-0.6170152,0.5948189,-0.062919304,-0.26713574,-0.44633704,0.19367884,0.5335927,-0.61143553,0.29967642,0.2507013,0.16477537,0.188936,-0.37400517,-0.25545353,-0.08067722,-0.21095052,0.22740573,-0.023719944,-0.4508748,0.25218433,0.40775812,-0.4536792,-0.7375062,0.2842934,0.027380425,-0.63066864,0.096887365,0.24010655,0.08493017,-0.12557751,-0.19726755,0.092852555,-0.33387575,0.2708459,0.2846305,0.026758224,-0.070357926,-0.28563625,-0.16205162,-0.78070354,0.05363054,-0.27344295,-0.21068606,0.2873507,0.14787965,-0.022212364,0.011300772,0.09435603,0.37068954,-0.36008158,-0.0057551675,-0.11775267,-0.100179255,0.44986308,0.3449121,0.38640285,-0.3303923,0.53441817,-0.06790672,0.032267477,-0.31169614,0.0236061,0.5042641,0.047029894,0.097022146,0.0072631687,-0.3208039,0.38750803,0.5800126,0.2597314,0.36580932,0.052236363,-0.25024697,0.38333243,0.19925675,0.08386487,0.167124,-0.3908611,0.1480466,0.02180031,0.112443194,0.34567666,0.20063248,0.45708588,-0.12056572,-0.28820714,0.0668437,0.18548532,-0.0055058897,-0.8944698,0.3468862,-0.046429858,0.61039203,0.60631657,0.066319264,0.17739305,0.67379457,-0.2195301,0.06481975,0.27729762,-0.14639534,-0.4465146,0.43272984,-0.58816767,0.3467526,-0.016081264,0.04746805,0.08819333,0.041159738,0.2661338,0.8539129,-0.13763416,0.04111893,0.016120883,-0.17950052,-0.103637844,-0.26638377,-0.07475789,-0.4879066,-0.42783922,0.51548505,0.27434647,0.388861,0.0017372333,0.02557617,0.14575726,0.036625035,0.294736,0.15866488,0.10554601,0.1008465,-0.6085575,-0.19720122,0.5840597,-0.18468267,0.13280536,-0.032495484,-0.14290705,0.37055722,-0.116343096,-0.24877664,-0.06127502,-0.39269364,0.080358475,-0.2511883,-0.18105721,0.31034565,0.0064277556,0.42822868,0.04484033,0.01271314,-0.34645975,0.42552522,0.20476991,0.85266864,0.06967774,-0.166061,-0.3443281,0.12292977,0.28882793,-0.07203717,0.13333087,-0.04481519,-0.12066685,-0.7840923,0.34787372,-0.0010493323,-0.16462809,0.18379083,-0.2431021,-0.066569544,0.45810902,-0.14717492,-0.15824936,-0.0045077577,0.061577633,-0.22408797,-0.0749688,-0.33253968,0.16775763,0.1315274,0.06140131,0.028047701,-0.055030633,-0.0131617505,0.48298556,-0.004340902,0.41965804,0.08307733,0.06951964,-0.4569187,-0.13058856,-0.0016705543,0.34791726,-0.08096044,-0.10197753,-0.25214168,-0.48382398,-0.26396698,-0.12055324,-0.22707824,0.18096757,0.16044015,-0.31692877,0.752499,-0.07052171,1.028943,-0.049772423,-0.14732188,0.056636572,0.41218778,-0.024699215,0.16371955,-0.30704197,0.95442194,0.7143679,0.001909893,-0.15053412,-0.1950586,-0.07750409,0.00035844743,-0.16116625,-0.036607064,0.09909472,-0.39109,-0.41500044,0.18386455,0.08334152,0.13074163,-0.05359577,-0.004112974,0.13299245,0.123902366,0.21898791,-0.28608587,-0.24602596,0.2489824,0.082737885,0.21609493,0.081242114,-0.48246056,0.49584568,-0.36378145,0.105686925,-0.28096527,0.09231285,-0.12733558,-0.1537278,0.15502536,-0.04628098,0.1643471,-0.36202002,-0.24932992,-0.21630044,0.47314382,0.14690118,0.21624191,0.55480313,-0.138966,0.019930733,-0.0061383788,0.41862863,0.7916889,-0.48855555,0.113543645,0.6065416,-0.34279382,-0.25212544,0.275776,-0.052065425,-0.19472834,-0.06658526,-0.18816769,-0.5693002,0.32453987,0.1583437,-0.08200332,0.044984207,-0.59496665,-0.16283607,0.38248855,-0.3744921,-0.31576842,-0.31115562,0.4253886,0.5479822,-0.2999226,-0.3271241,0.27236816,0.055640712,-0.20949376,-0.37838507,-0.106592916,-0.40000957,0.3379894,0.30539867,-0.23323618,-0.2236504,0.08512483,-0.25052622,-0.0010803342,0.18387169,-0.2835257,0.068689846,-0.30527496,-0.08209729,0.78736913,-0.18107529,0.099369705,-0.7328191,-0.280164,-0.9776161,-0.46681684,0.680002,0.19958304,-0.051963042,-0.47569248,-0.1366793,0.056594,-0.3259861,-0.14956485,-0.3656422,0.39172444,0.12778854,0.2654726,-0.16212979,-0.72429556,0.14244741,0.11194228,-0.2971381,-0.42952323,0.38934952,-0.121523425,0.8663033,-0.023142532,-0.017417647,0.45215666,-0.5171739,-0.08851802,-0.21127596,-0.35190645,-0.52892,-0.008576974,449 -65,0.22598192,-0.14704128,-0.4802016,-0.21707061,-0.36286235,0.27551383,-0.18881808,0.15421484,0.056256443,-0.3439699,0.09499914,-0.0983002,-0.0483315,0.393104,-0.14326088,-0.5673921,-0.20408352,0.070091605,-0.6212999,0.307875,-0.522283,0.21583879,0.007793518,0.32109743,-0.09802556,0.36401957,0.23417568,-0.09057612,-0.19444169,0.03618993,-0.026745811,0.2544534,-0.7449648,0.138161,-0.039593115,-0.37540373,0.0061710607,-0.49466923,-0.17681544,-0.544883,0.3931712,-0.6512866,0.44309294,-0.28879482,-0.26165378,0.34187365,0.12673828,0.15932246,-0.17740327,0.07343279,0.31826785,-0.1258495,0.026288792,-0.08716062,-0.22898212,-0.5048188,-0.52942973,0.037570275,-0.632686,-0.2035349,-0.062262937,0.31249607,-0.25325978,0.13936058,-0.2563444,0.47718427,-0.31149256,-0.13128768,0.15848434,-0.14345893,0.14446178,-0.4469445,-0.023959897,-0.08856875,0.2621118,-0.20544076,-0.07699002,0.18009098,0.2822536,0.5262426,0.016247459,-0.24554682,-0.22145209,0.044900164,0.0017741807,0.53392154,-0.17064436,-0.21491466,-0.27937284,-0.074729964,0.0035257116,0.15412365,-0.076361254,-0.4209164,0.031939052,0.11500387,-0.30270717,0.27208275,0.32828763,-0.4862051,-0.39123982,0.46439302,0.4293394,0.05343821,-0.06937809,0.06103646,0.021590006,-0.5213231,-0.20480044,0.22691236,-0.11758771,0.42272168,-0.10739444,0.33192444,0.726435,-0.062053256,0.033110507,-0.22461616,-0.16674669,0.033019163,-0.3300775,0.10497814,0.066264525,-0.38181728,0.014035106,-0.12216644,0.59227043,0.08995489,-0.9354814,0.43233728,-0.43040052,0.03624121,-0.103258036,0.5435747,0.7184311,0.32337683,0.079789676,0.7697381,-0.45175475,0.114396304,-0.0942882,-0.3598317,0.14024192,0.012282187,0.081899874,-0.5603795,0.05543811,-0.011547431,0.11982538,0.007985719,0.30374515,-0.4562404,-0.013394954,0.073623866,0.66549623,-0.41210154,-0.11169527,0.6378954,0.9504164,0.85938656,0.08560973,1.3678887,0.1416264,-0.17450625,0.16355726,-0.37544698,-0.45186585,0.2090607,0.41268957,0.2052103,0.29077336,0.07035284,0.16727988,0.49613026,-0.18224987,0.12933797,-0.031065881,0.22219652,0.021806091,0.02042232,-0.41360652,-0.32452428,0.23342748,0.036298703,0.060905192,0.1543421,-0.25993603,0.40286216,0.2930674,1.5485425,-0.0189918,0.12122854,-0.029953208,0.35484648,0.18888947,-0.14245686,-0.12987724,0.31320268,0.27098596,-0.040958658,-0.5034377,0.11625085,-0.2382931,-0.44734418,-0.22986774,-0.3217116,-0.17541833,-0.2187088,-0.50167215,-0.12575956,0.13757363,-0.40869397,0.4432089,-2.7010183,-0.23842812,-0.17687248,0.2601503,-0.24059968,-0.4056443,-0.20391896,-0.3823119,0.27778608,0.4299889,0.2753017,-0.49055988,0.46376395,0.305305,-0.37366667,-0.1638025,-0.6366556,-0.082159504,-0.03387029,0.3015849,-0.045229845,-0.18679003,-0.40642434,0.37184578,0.42758536,-0.13441455,-0.017608348,0.19900338,0.4119978,0.23084883,0.5284231,0.0672026,0.5259764,-0.160936,-0.17368217,0.4814654,-0.36118937,0.15895325,0.053914744,0.2442011,0.3374262,-0.40994874,-0.914415,-0.6236252,-0.52242017,1.0922521,-0.31241214,-0.2963379,0.32823354,0.04355661,-0.29751757,0.07999496,0.39373308,-0.0802742,-0.004449159,-0.7350051,0.09415972,-0.06466375,0.25830793,-0.09293306,0.12403967,-0.45377126,0.508965,-0.113721065,0.51200986,0.41616723,0.17573214,-0.14390258,-0.317109,0.08274028,0.9492088,0.3600951,0.13371946,-0.08772094,-0.14890921,-0.16152011,-0.01218842,0.044978116,0.35519475,0.6565174,0.12549052,0.11861106,0.22592515,-0.123306304,0.071919374,-0.12233967,-0.26499572,0.011826862,0.046092805,0.4781881,0.42676806,-0.16973895,0.3711821,-0.18041152,0.22331145,-0.063535474,-0.4380718,0.32244635,0.63713485,-0.24096352,-0.07409754,0.49756077,0.43792728,-0.32434595,0.4272977,-0.5586835,-0.2997716,0.6269775,-0.21539661,-0.38385433,-0.015025707,-0.2500465,0.043417193,-0.8127221,0.16979682,-0.013463385,-0.41457024,-0.46318468,-0.26876402,-3.870001,0.0947949,-0.050552018,-0.1447643,0.005239073,-0.16067955,0.3910193,-0.47567138,-0.5923235,0.06705904,-0.022887034,0.53488064,-0.006457641,0.21659933,-0.36267963,-0.11140807,-0.21119049,0.35422483,0.09666634,0.1964644,0.05440402,-0.4540282,0.09975171,-0.40017825,-0.53439784,0.040644504,-0.5807479,-0.4846521,-0.056118302,-0.53765595,-0.4295488,0.6412203,-0.40204066,-0.17330424,-0.2660118,0.03680952,-0.08497603,0.42360196,0.153298,0.08243161,0.17792304,0.04714998,-0.091290414,-0.26183882,0.2554933,0.12789086,0.19527617,0.37850052,0.06461582,0.1847245,0.5271435,0.5492724,0.046953607,0.7649541,0.28913218,-0.062866405,0.40293303,-0.3261062,-0.12616327,-0.6374715,-0.384049,-0.13067816,-0.46195945,-0.49337703,-0.12239413,-0.32744747,-0.6728476,0.50589323,-0.005263649,0.0432387,-0.061945453,0.31313795,0.3211658,-0.2841724,0.14549205,-0.15014508,-0.11811862,-0.3794502,-0.5567817,-0.74002546,-0.60272145,0.02773913,1.130861,0.022730805,-0.112600096,-0.0030780416,-0.2007648,-0.031056521,0.03939039,0.19867729,0.41758382,0.46819204,-0.1476932,-0.6596226,0.4115237,-0.20963445,-0.041108966,-0.4366982,-0.014225777,0.5440885,-0.5310623,0.5661672,0.39880446,0.25005454,0.2366188,-0.5254879,-0.08574413,0.08046149,-0.33594278,0.58692735,0.18331897,-0.6706763,0.61883885,0.05242539,-0.14160529,-0.7879046,0.50766546,0.020081358,-0.07873233,-0.010601282,0.38525462,0.14219564,-0.052764155,-0.061375733,0.14932458,-0.5769143,0.40474677,0.32981744,0.10677385,0.6378317,-0.20200537,-0.17910227,-0.6073359,-0.3360908,-0.29496664,-0.30660677,0.019376144,-0.09696242,0.19000946,0.2749746,-0.10723195,0.48153383,-0.36498195,0.044942234,0.020230232,-0.2458959,0.17431377,0.4908017,0.2888213,-0.34581813,0.5213029,-0.04480501,-0.0752602,-0.20581105,-0.043596677,0.46152824,0.2594477,0.15499511,-0.05081825,-0.20164655,0.21306089,0.67019266,0.17821836,0.23500627,-0.091271624,-0.3363743,0.36548933,0.047398932,0.017566182,0.024836209,-0.31876695,-0.05684479,0.080826394,0.15005532,0.38751876,0.06388682,0.30878842,-0.12560558,-0.08890858,0.22197025,0.22168922,-0.26315874,-0.8766723,0.19305782,0.19607541,0.74997675,0.62120634,0.07947743,0.100240335,0.4551384,-0.48253673,0.07055997,0.3856783,0.0105064325,-0.43073803,0.59671456,-0.54189473,0.5378555,-0.19252436,-0.091198534,0.21776988,0.07926008,0.37198704,0.9700892,-0.027837114,0.11445622,0.11248578,-0.19074306,0.2082431,-0.11651388,0.077413514,-0.4098337,-0.24659565,0.5454876,0.44707555,0.28016573,-0.2791644,-0.07379182,-0.007116899,-0.20204921,0.08049305,-0.027828919,-0.14480115,0.037289813,-0.6502512,-0.38413623,0.5956988,0.062239453,0.042303268,0.13607839,-0.48799267,0.22863227,-0.10139086,-0.101408824,0.045916293,-0.5986979,-0.1373642,-0.28260228,-0.42323795,0.2542542,-0.36506084,0.18046221,-0.012801062,0.10490905,-0.35719785,0.128961,0.3117949,0.71973586,0.12066104,-0.059059393,-0.32097036,-0.01212462,0.25011328,-0.2947186,-0.11788149,-0.5099107,0.12619361,-0.5667951,0.4993897,-0.10529021,-0.27905786,0.1307096,-0.033448223,0.12688282,0.37986827,-0.011921838,-0.06855072,0.0009443313,0.1789008,-0.32674092,0.02246768,-0.45706275,0.2047306,0.06467896,-0.03290601,-0.020716127,-0.09970578,-0.2446508,0.51539016,0.21861903,0.26193422,0.28025293,0.043723043,-0.45924503,-0.049840495,-0.078095034,0.44846165,-0.055913553,-0.04544067,-0.27180344,-0.17955947,-0.18365355,0.47326186,-0.17983934,0.1447188,-0.01913283,-0.41125822,0.7068318,-0.007159304,1.1353136,0.13685548,-0.3200521,-0.010280365,0.40146077,-0.023532137,0.08877006,-0.52400994,0.8506818,0.5197318,-0.012093529,-0.24015653,-0.26018003,-0.17627132,0.20478255,-0.22207892,-0.1438382,-0.27307895,-0.7808904,-0.3905439,0.20288897,0.15666184,0.13970375,-0.015126124,0.034228116,0.071584545,0.12293695,0.54016364,-0.4450764,-0.10285192,0.3221038,0.3161898,-0.052951746,0.26152647,-0.31765977,0.5352662,-0.68677163,0.17328432,-0.42982662,0.04310813,-0.034110785,-0.14337021,0.10522288,0.0679626,0.37519386,-0.088732034,-0.40883997,-0.25242853,0.6201448,0.17328137,0.2116833,0.876794,-0.11798394,0.038947098,0.0121004805,0.44292507,1.1887664,-0.1686776,0.05479254,0.28881717,-0.17349233,-0.5630528,0.014228843,-0.4302585,0.031738523,-0.011990827,-0.22313325,-0.2746358,0.2730739,0.11880739,0.057392247,-0.042754944,-0.43954644,-0.022629414,0.6017995,-0.23334141,-0.21343043,-0.25064445,0.39434183,0.80991906,-0.43524095,-0.1780205,0.02049881,0.4578419,-0.2716961,-0.62481165,0.06375962,-0.4620058,0.4910628,0.11026174,-0.3507744,-0.004684329,0.19566101,-0.4028417,0.13506323,0.45807797,-0.3389226,-0.12852094,-0.23728588,-0.1158249,1.018357,0.10697491,0.095880345,-0.64334273,-0.51132196,-0.96838784,-0.19366743,0.14611197,0.14554307,-0.069098376,-0.30588046,-0.08012816,-0.22416013,-0.08496731,0.021409549,-0.5902253,0.36446336,0.09387514,0.61006564,-0.10275406,-0.81737924,-0.18555461,0.22805361,-0.10873905,-0.41636622,0.6150006,-0.06004535,0.7063208,0.108304225,-0.031229373,0.09897095,-0.42187372,0.26937163,-0.52702576,-0.069725245,-0.76809734,0.18014172,450 -66,0.44451973,-0.06777794,-0.38291168,-0.0038338602,-0.31688014,0.02914986,-0.2508967,0.4923315,0.23566605,-0.32713547,-0.1831372,-0.036829036,-0.014817439,0.23789813,-0.24548829,-0.5223285,-0.064763695,0.12193075,-0.36237022,0.7347952,-0.5016438,0.3008681,-0.04464761,0.4188319,0.37594706,0.20466378,0.12638833,-0.10129751,-0.22232948,-0.19745469,-0.11029577,0.3409887,-0.47375646,0.061071333,-0.28694737,-0.39242396,-0.026016124,-0.4874332,-0.42605647,-0.76386636,0.4239806,-0.7342169,0.4664576,0.0022662356,-0.2888924,0.37185726,0.053959988,0.24904229,-0.26739687,-0.08375195,0.14226021,-0.15141456,-0.019681713,-0.04668682,-0.21754856,-0.33891475,-0.58661103,0.023738967,-0.5496067,-0.08387506,-0.34072948,0.18507214,-0.26500246,-0.10122241,-0.029292833,0.5494766,-0.48706818,-0.1090345,-0.03735688,-0.04594233,0.21369919,-0.6222775,-0.22305241,-0.15051597,0.10786004,-0.07948608,-0.21273804,0.18319933,0.24062651,0.42880958,-0.01317884,-0.11316859,-0.39038694,-0.096172765,0.12277517,0.3660905,-0.115550384,-0.673371,-0.19699025,-0.10967422,0.2591704,0.1772237,0.08197195,-0.29399154,0.0126642175,0.10938469,-0.3154379,0.5251929,0.48738348,-0.2958049,-0.2155606,0.3477167,0.52226764,0.33037752,-0.18543407,0.017803643,-0.12711716,-0.49858353,-0.12804465,-0.06330104,-0.23419383,0.6316476,-0.094241664,0.21832013,0.56541204,-0.11450455,0.042809837,0.055936992,-0.07677792,-0.1112079,-0.32331538,-0.2848594,0.12376417,-0.43452936,0.24577479,-0.13783154,0.72263384,0.07565626,-0.6802199,0.34116754,-0.4919788,0.11431542,-0.032837983,0.5469432,0.6505781,0.37029755,0.36792317,0.6695604,-0.34103954,0.02082435,-0.13603044,-0.21642052,-0.06354219,-0.034951046,-0.13193047,-0.42580673,0.018373914,-0.053118654,-0.10929192,0.039199136,0.41604453,-0.5017575,-0.054005772,0.12805289,0.71409607,-0.29085478,-0.07647378,0.8556314,1.1425065,1.0760148,0.03557445,1.0842618,0.20835245,-0.06692393,0.1132528,-0.26821935,-0.6544961,0.24313305,0.37278375,-0.14720689,0.22906367,0.06738509,-0.04024055,0.39809844,-0.446795,-0.11443657,-0.17430696,0.23225449,0.12024864,0.062289752,-0.3886023,-0.24298842,0.01716935,0.087207526,0.15002133,0.25291318,-0.34926063,0.19671628,0.1545543,1.4659207,-0.15281264,0.021466812,0.1014271,0.5648393,0.19211501,-0.08212135,-0.028433712,0.40524265,0.40325058,-0.021626819,-0.6482338,0.12031908,-0.25453612,-0.47492322,-0.07264534,-0.3112328,-0.09192243,0.05132623,-0.41051474,-0.07318407,-0.17721938,-0.3708339,0.45419282,-2.7536168,-0.15270236,-0.04653553,0.20823461,-0.14464577,-0.32458925,-0.048686326,-0.43740407,0.3691236,0.2655349,0.44175178,-0.6442204,0.34960496,0.5631918,-0.4603828,-0.1599013,-0.6648611,-0.14000735,-0.08418821,0.56283516,-0.078805976,-0.020991009,0.029287234,0.12753011,0.5973617,0.06469574,0.20755492,0.25151545,0.37594542,0.0104018,0.4579154,-0.007879738,0.43206176,-0.12821057,-0.14657554,0.40616497,-0.30269742,0.26273844,-0.101374015,0.1903985,0.43912786,-0.5121552,-0.84748685,-0.6407411,-0.14910227,1.2123936,-0.24234863,-0.47750688,0.35077983,-0.26421806,-0.21954764,-0.03305676,0.44508117,-0.15854552,-0.11274975,-0.8308129,0.04508332,-0.15943623,0.095801525,-0.012042571,0.18231307,-0.3126626,0.6530933,-0.05925186,0.46873713,0.3610234,0.29976672,-0.33079976,-0.54814065,0.06403111,0.9431645,0.4425941,0.09532687,-0.2689594,-0.21011055,-0.25430292,0.0097181,0.063757256,0.58080786,0.63898325,-0.026053607,0.15312195,0.27615112,0.052194938,-0.035898883,-0.22418845,-0.20704222,-0.08090404,0.06050422,0.4847383,0.62873775,-0.19855219,0.4492002,-0.04957623,0.20184776,-0.21187623,-0.39393225,0.52469933,0.9672699,-0.28322253,-0.23269756,0.6873698,0.4908156,-0.1838714,0.4950112,-0.66467535,-0.27071157,0.48288906,-0.20988426,-0.3646203,0.29922628,-0.2930065,0.060858823,-0.7907873,0.27531672,-0.26698905,-0.521835,-0.53953683,-0.1823678,-3.1462991,0.13264632,-0.27978426,-0.25239056,-0.18855456,-0.2683702,0.2943592,-0.5671748,-0.5288675,0.15768687,0.15566182,0.5534224,-0.11463793,0.08209873,-0.29640007,-0.3118907,-0.30277023,0.1670716,0.122449346,0.4158468,-0.1017957,-0.400038,-0.074641734,-0.14714362,-0.39307266,-0.027425893,-0.41844198,-0.33989957,-0.0845892,-0.47680607,-0.23309009,0.60240465,-0.39279908,0.06259271,-0.26520035,-0.11259332,-0.13277516,0.36271882,0.17651027,0.13895501,0.018046834,0.0033735633,0.07413352,-0.33512992,0.1344399,0.058271248,0.08183143,0.38644612,-0.137214,0.20181426,0.3786648,0.6528541,-0.18604976,1.0017946,0.5554738,-0.13660459,0.30906227,-0.28167748,-0.28550193,-0.67691904,-0.2925469,-0.12635976,-0.40517175,-0.4923787,-0.20088254,-0.2886993,-0.78268373,0.54466355,-0.025885087,0.40203723,-0.041653357,0.24843833,0.49556762,-0.20138445,-0.018974576,-0.010221276,-0.06315457,-0.5178822,-0.30074394,-0.69728166,-0.46229795,0.018275179,0.79342675,-0.11027445,-0.049983546,0.10064432,-0.26637352,-0.038553976,0.052641194,0.08889316,0.14037831,0.47992235,-0.092603736,-0.67754686,0.39946085,-0.109763905,-0.11021565,-0.486022,0.1460569,0.5765082,-0.5845129,0.51931703,0.40864965,0.14687406,-0.123056054,-0.55641335,-0.20945549,-0.06269771,-0.18733217,0.5353543,0.30553308,-0.86182994,0.51712114,0.35761335,-0.16000679,-0.7724113,0.60773903,-0.08556959,-0.23654185,-0.013525642,0.36927155,0.17555135,0.060530674,-0.21562648,0.24285273,-0.30118787,0.317926,0.19247016,-0.18124986,0.22031385,-0.2722426,-0.12347363,-0.6888721,-0.0027132947,-0.47187635,-0.2663832,0.07643427,0.08123036,0.060416117,0.10192925,-0.079160444,0.4199191,-0.2614801,0.19619244,-0.03852416,-0.09816493,0.25484952,0.5675283,0.5387718,-0.30057555,0.6006624,0.04099491,-0.18757536,0.028604329,0.024581715,0.33817077,-0.06748944,0.34361777,0.069985986,-0.18328172,0.29266214,0.6475818,0.32609093,0.4856341,-0.039775558,-0.26801598,0.364773,0.15719143,0.35223448,-0.011515968,-0.5392587,-0.12550119,-0.20869207,0.14730604,0.6046226,0.18772054,0.33278278,-0.10720987,-0.19309412,0.04797052,0.15035373,-0.1499036,-1.2298027,0.27054662,0.15357584,0.7945816,0.6205452,-0.027833328,0.09872344,0.4852047,-0.22112998,0.06378875,0.44937187,0.23837943,-0.5269819,0.52585006,-0.66334,0.41065407,-0.095590755,0.03694419,0.046858825,-0.06429562,0.39690065,0.72412944,-0.24871151,0.08039221,0.013459016,-0.23536706,0.16490573,-0.2758496,0.10605101,-0.54851794,-0.25322825,0.6289884,0.6066642,0.31267664,-0.19809729,-0.005204918,0.10131423,-0.13338028,0.0687109,0.06552385,0.06769795,-0.16444421,-0.5765429,-0.24847682,0.47842526,-0.12210417,0.14073858,-0.06032449,-0.2514394,0.13959911,-0.067992695,-0.16648962,0.037792232,-0.6601176,-0.12724699,-0.19304094,-0.40199634,0.47108808,-0.20147073,0.21676925,0.085765116,0.07976898,-0.28404468,0.19312029,0.17117447,0.589793,-0.039467134,0.01888372,-0.285039,0.10505855,0.18411678,-0.0926998,-0.29246548,-0.31249565,-0.00074471533,-0.6613401,0.37855187,-0.06512237,-0.26753864,0.0957139,-0.16377449,0.06555029,0.56517863,-0.063127816,-0.1984927,0.0003274083,-0.063894585,-0.27442718,-0.19134885,-0.059544142,0.24685512,0.19984448,-0.11109781,-0.09896722,-0.06597288,-0.0633425,0.3933593,-0.01887973,0.4430727,0.3050281,0.13863814,-0.33240163,-0.11533095,0.15392056,0.46188238,0.027466774,-0.10235011,-0.16668658,-0.37742162,-0.3756345,0.17081767,-0.19404143,0.24598739,0.13912337,-0.3390203,0.77799976,0.1594173,1.1762954,0.03674459,-0.4078716,0.12917727,0.57666075,-0.10324524,0.030529492,-0.34246397,0.9320572,0.38197276,-0.13897514,-0.11877288,-0.3968167,0.008849807,0.27867374,-0.1897199,-0.16723382,-0.12287509,-0.5148517,-0.18317926,0.1886808,0.3113378,0.097045176,-0.11769718,-0.07414428,0.216025,0.086898655,0.538249,-0.3757646,-0.079340115,0.41433382,0.16810873,-0.03944129,0.14011088,-0.4238382,0.4069624,-0.46415478,-0.040726773,-0.30735183,0.1407053,-0.30569148,-0.3194595,0.24381743,0.017359853,0.3997707,-0.29232085,-0.4125139,-0.29271212,0.5014888,0.021634974,0.12829491,0.5011674,-0.2793029,0.13048176,-0.10696965,0.37626055,0.9781264,-0.30411306,-0.055457935,0.28805977,-0.37831524,-0.63675284,0.27274507,-0.42542124,0.11738002,0.0074362457,-0.23366284,-0.524865,0.34007865,0.16152069,0.024296202,0.019312967,-0.6829386,-0.117222086,0.32204992,-0.1196831,-0.16553196,-0.15459979,0.008027852,0.6825529,-0.32626113,-0.50765926,-0.03786192,0.27866322,-0.13483879,-0.6515809,-0.05494752,-0.3682592,0.361497,0.20074086,-0.23004934,-0.06742695,0.15392676,-0.49556336,-0.031052908,0.1737881,-0.29925418,0.024612581,-0.31943184,0.07910969,0.98359096,-0.12412379,0.22004616,-0.43851113,-0.48017263,-0.855254,-0.37630552,0.28315437,0.18217164,0.11232138,-0.5811115,0.13712528,-0.21906734,-0.08883226,-0.06112693,-0.4637902,0.4910633,0.1343608,0.49405006,-0.11999388,-0.7669378,0.03328792,0.09167336,-0.033004276,-0.5478617,0.5293842,0.039621197,0.7475435,0.082084246,0.13359918,0.13318242,-0.49829382,-0.003601674,-0.22780731,-0.18621401,-0.66213256,0.15509748,451 -67,0.48970097,-0.32276142,-0.509445,-0.0620706,-0.3854331,0.19760817,-0.258139,0.46204883,0.15324987,-0.32348865,-0.1210406,-0.11008004,0.018158004,0.33181438,-0.21578357,-0.41942397,-0.022813495,0.25501424,-0.5014791,0.67894506,-0.30667183,0.21472132,0.0017515756,0.34469363,0.31669858,0.2546714,0.1024344,-0.063586965,-0.26295578,-0.19464673,-0.23268732,0.3373986,-0.48450148,0.1759124,-0.072651595,-0.254166,0.0048796833,-0.42561036,-0.3466012,-0.7584709,0.32438725,-0.8264398,0.4861465,-0.08777632,-0.3636867,0.28795016,0.12640406,0.412204,-0.28201497,-0.100007996,0.2330973,-0.1641739,-0.08628783,-0.17794566,-0.102689624,-0.38586792,-0.5238595,0.063566096,-0.3803897,-0.16828367,-0.30121797,0.25154412,-0.2422475,0.04215671,-0.14886901,0.5708462,-0.53566384,0.19413164,0.16417266,-0.15734394,0.227756,-0.73700416,-0.07526253,-0.058123313,0.31198555,-0.038200885,-0.09355421,0.2579234,0.40374434,0.32284224,0.14027551,-0.24838696,-0.34498224,-0.14935295,0.048087835,0.42178017,-0.13827959,-0.52236277,-0.19118766,0.02486898,0.22405028,0.16528897,0.13619584,-0.335005,-0.11715815,0.014294378,-0.28115225,0.26518577,0.41056812,-0.3454664,-0.087646246,0.38826802,0.64591306,0.15218475,-0.244184,-0.17191675,-0.08567284,-0.57884896,-0.09219212,0.06729093,-0.2760769,0.64535713,-0.15161923,0.27760905,0.7130016,-0.11050324,-0.08690968,0.07976746,0.08052409,-0.27882788,-0.29499745,-0.25835183,0.09831718,-0.44723392,0.20034893,-0.09247703,0.8402555,0.07776435,-0.6234559,0.3423978,-0.5073413,0.13393575,-0.093979806,0.3833142,0.56892,0.4359953,0.36285952,0.639001,-0.30680227,0.10858681,-0.016439393,-0.5338692,-0.037208844,-0.08492889,-0.11571526,-0.5730232,0.14816184,-0.17035851,-0.08483715,-0.050063718,0.5670221,-0.47739226,0.017113568,0.1124806,0.8353871,-0.3221863,-0.15615767,0.717543,0.94484115,0.97533476,-0.0047452133,1.1025677,0.29995626,-0.24126339,0.07030912,-0.35386258,-0.5255387,0.34388286,0.5524342,-0.25514922,0.25553113,0.07773158,-0.029661588,0.54336655,-0.31317538,-0.03463526,-0.263694,0.0969519,0.12560445,-0.085333765,-0.44963673,-0.27631387,0.02593896,0.17204918,0.1273557,0.2188404,-0.15032417,0.47286817,0.22010756,1.7044631,-0.08853501,0.03666447,0.075439006,0.42826995,0.19254096,-0.09818779,-0.073300764,0.35728267,0.46350855,0.108758986,-0.5125749,0.08682604,-0.28448057,-0.5309621,-0.16011393,-0.28265935,-0.21276754,0.060323734,-0.48142153,-0.11940314,-0.1408792,-0.16588038,0.45379433,-2.643458,-0.16761643,-0.2237351,0.12839699,-0.3098777,-0.41528794,0.12344752,-0.5201182,0.30826676,0.32682756,0.4810847,-0.668568,0.38753864,0.29980943,-0.57107794,-0.053578023,-0.5873326,-0.24208283,-0.05329942,0.5030776,0.0015882179,-0.14431137,-0.023171319,0.04030416,0.5273109,-0.096485965,0.18695399,0.36353108,0.3820011,-0.0080924295,0.5854372,0.07705639,0.52290344,-0.09054742,-0.21995142,0.35291195,-0.22963293,0.33799717,-0.071812235,0.13399519,0.49245805,-0.3967871,-0.83425,-0.72561157,-0.06584716,1.2695539,-0.27397025,-0.4630765,0.24652296,-0.2365973,-0.242399,0.0064395815,0.33283696,-0.10885172,-0.046094354,-0.7991662,0.14408064,-0.055113524,0.12414143,0.0012358124,-0.19141684,-0.43286628,0.78256494,-0.06816846,0.47005978,0.4062553,0.13754618,-0.24049722,-0.39082196,0.008410774,0.93088365,0.45103303,0.047175743,-0.22429474,-0.19290179,-0.42619365,-0.083465174,0.046255924,0.42827308,0.5216249,0.06451161,0.11867438,0.22310662,-0.03459706,0.09500594,-0.24075955,-0.2437467,-0.0671417,0.012902714,0.55663514,0.6390604,-0.06593032,0.5407279,-0.17522226,0.3081977,-0.10864829,-0.510605,0.5392504,1.0585954,-0.27400675,-0.4313878,0.66594183,0.48913875,-0.17108703,0.33543938,-0.5188717,-0.27497625,0.48498607,-0.16752735,-0.45465022,0.19539948,-0.23373866,0.07248755,-0.87685776,0.20548517,-0.2029157,-0.457323,-0.5109947,-0.12270189,-3.195571,0.34710085,-0.3287048,-0.23440051,-0.12117391,-0.2563947,0.14349256,-0.7080406,-0.48223782,0.14339083,0.0945201,0.55100477,-0.055667117,0.12009959,-0.24235836,-0.19747202,-0.15235332,0.15257987,0.075938694,0.2454537,-0.19045007,-0.5352179,0.009226784,-0.07062844,-0.445978,0.015832044,-0.7417289,-0.48288274,-0.12648734,-0.48050362,-0.23030525,0.60248566,-0.31749308,0.08055529,-0.23101917,0.075581625,-0.0918278,0.19094688,0.05693923,0.14268251,0.0035192445,-0.12596343,0.13994552,-0.3406114,0.33406222,0.04381404,0.25181264,0.14118709,-0.06478939,0.26848477,0.39578474,0.62147415,-0.28127626,0.93217945,0.4956536,-0.14938852,0.23102091,-0.09236546,-0.3045879,-0.63632417,-0.3070701,0.027231136,-0.4377269,-0.43335178,-0.07561239,-0.32656693,-0.6774234,0.6479883,-0.011980869,0.12385017,0.019565325,0.3232325,0.6336721,-0.31901518,-0.041662183,-0.049762227,-0.17515975,-0.6120002,-0.31692243,-0.6161394,-0.4607687,0.0317719,0.9710592,-0.10486682,0.10890836,0.031396504,-0.3492474,-0.040236253,0.10653034,-0.028407812,0.26652187,0.48387605,-0.31348825,-0.75922894,0.49850577,-0.14512874,-0.15196311,-0.41803855,0.24808578,0.50849825,-0.5330438,0.5567065,0.39298213,0.104588866,-0.10215707,-0.50352454,-0.18538481,-0.040048257,-0.2825718,0.52523047,0.25670782,-0.623187,0.44068852,0.23625849,-0.19107732,-0.8110782,0.5083675,-0.09952819,-0.3322938,-0.10341464,0.33969408,0.089785166,-0.02013378,-0.3421531,0.08648404,-0.45016196,0.3011569,0.20414749,-0.14426383,0.08504156,-0.22838682,-0.1344189,-0.7712926,-0.0106553435,-0.4195356,-0.30323777,0.25534463,0.03792236,0.01841122,0.10593267,0.10071339,0.32570624,-0.26860946,0.11731429,-0.04675115,-0.22423631,0.33028957,0.45978576,0.51827574,-0.465937,0.5833431,0.05682816,-0.12173832,-0.2238775,0.027761621,0.47544292,0.08923195,0.5114964,-0.061783433,-0.20256913,0.4504501,0.60836923,0.24651252,0.5850314,-0.032466464,-0.15768981,0.12902877,0.053638235,0.29628605,0.0916736,-0.7127294,0.06591556,-0.2612139,0.14994349,0.5936433,0.13701922,0.32430965,-0.07145752,-0.30091915,0.073403716,0.119475275,0.0808194,-1.1351147,0.28080425,0.3514469,0.8403541,0.31893685,-0.026409669,-0.07377981,0.8189286,-0.31465888,0.08291411,0.4420582,0.07933493,-0.5203424,0.53158593,-0.8614752,0.37543654,-0.07085427,-0.02655089,0.09822014,-0.077863224,0.29018986,0.82717264,-0.2340567,-0.00857158,-0.0017406233,-0.42128327,0.163911,-0.35627538,-0.056303486,-0.57462424,-0.38973498,0.6324439,0.5897278,0.35055888,-0.15913455,0.057030357,0.12182324,-0.14733325,0.13761525,0.17178038,0.18513367,-0.009742692,-0.71741253,-0.19389603,0.45595014,0.0677336,0.23454629,-0.033938095,-0.18436322,0.2995515,-0.3279135,-0.09678719,-0.02364346,-0.6404318,-0.06108529,-0.15324357,-0.46335512,0.43308616,-0.12176325,0.14070715,0.13802476,0.10148922,-0.26724374,0.38658562,-0.008608237,0.8713978,0.21946555,-0.087707594,-0.29337186,0.20355272,0.06198311,-0.054784898,-0.061982546,-0.3737753,-0.012017764,-0.6699569,0.39380258,-0.046174247,-0.40742528,0.05427464,-0.17178309,-0.022128914,0.50164247,-0.07556046,-0.18383336,-0.03953463,-0.0049901716,-0.24012433,-0.28313613,-0.07801247,0.24756631,0.3045053,0.14060326,-0.17380938,-0.011570256,-0.18330187,0.4921417,-0.06377886,0.4344408,0.3125077,-0.08318418,-0.2620198,-0.21271215,0.20437667,0.4959507,-0.15720508,-0.16094969,-0.33249578,-0.5401356,-0.26201954,0.1363696,-0.045971952,0.39555544,0.11891541,-0.09909913,0.8653343,-0.16073205,1.2918534,0.11247928,-0.44905084,0.083904065,0.53866446,0.052082345,0.0377296,-0.30972183,0.926319,0.41882673,-0.022311486,-0.14763291,-0.4721365,0.020580132,0.19914341,-0.16595855,-0.018769763,-0.053506725,-0.55767536,-0.2878722,0.16859865,0.293901,0.1841661,-0.0074113384,-0.015651532,0.32804614,-0.059606872,0.41697615,-0.4413898,-0.30353385,0.2859838,0.21074477,-0.18393797,0.14545287,-0.5732469,0.44392833,-0.4445724,0.062199183,-0.35933742,0.13245098,-0.26504534,-0.23966569,0.26538843,-0.1119862,0.43508995,-0.4312979,-0.32284388,-0.30503932,0.55198914,0.22846103,0.14157641,0.550936,-0.37935892,0.09960551,0.12231882,0.44076028,0.7941428,-0.39845937,-0.0061109215,0.34992123,-0.2744378,-0.5496887,0.38279977,-0.18905377,0.11859644,0.24497643,-0.21750113,-0.44769618,0.36527988,0.109735295,0.007871866,0.041426525,-0.654228,0.031506464,0.44645756,-0.25204408,-0.079257235,-0.18408753,0.28584963,0.49928206,-0.32786208,-0.57864964,-0.00844142,0.21703897,-0.08544268,-0.46699697,-0.08930599,-0.36706057,0.34453255,0.090391815,-0.28847805,-0.17205751,0.087539315,-0.43522334,0.093107104,0.26710725,-0.38683122,0.08973021,-0.30102712,-0.12080374,0.9234961,-0.17062879,0.108650714,-0.6512611,-0.35618982,-0.7097651,-0.32116538,0.32659364,0.04021185,0.049080513,-0.6129118,-0.07383104,-0.2497979,-0.12824732,-0.05046953,-0.43088073,0.50025785,0.15235186,0.4904371,-0.052194238,-0.6710453,0.20549473,0.024793053,-0.12652586,-0.5641483,0.54020065,-0.14033356,0.8256649,-0.0131118875,0.20374253,0.26401767,-0.4817716,-0.072721004,-0.32579908,-0.18521973,-0.81394434,-0.007047821,452 -68,0.46886176,-0.20655255,-0.50999033,-0.091684714,-0.6117102,0.2628128,-0.27889287,0.14959493,0.31676427,-0.102021545,0.0009845495,0.07542877,-0.2813149,0.10118657,-0.033966456,-0.76311255,0.017253434,0.17665136,-0.8920032,0.744076,-0.22363731,0.4140101,-0.04420373,0.31545222,0.3223034,0.30333897,-0.07330459,0.17331488,-0.07672019,-0.34821,-0.1779687,0.18228498,-0.8017271,0.35697597,-0.17195912,-0.40947077,-0.20928656,-0.47712898,-0.40577838,-0.85139036,0.37212974,-0.8813901,0.62935936,-0.07161838,-0.39397725,-0.10620861,0.23227058,0.27693313,-0.031708367,0.016603947,0.24329174,-0.31553406,-0.091291174,-0.262283,-0.19172777,-0.363216,-0.537453,-0.12543283,-0.46770066,-0.033845823,-0.21627282,0.28339833,-0.2535229,-0.056898817,-0.40039742,0.33827555,-0.35090846,0.401268,0.18362041,-0.17732322,-0.011755854,-0.50617224,-0.10181446,-0.22773688,0.25630015,0.1926043,-0.35899085,0.53880864,0.14298989,0.6441521,0.31087554,-0.34843552,-0.15738031,-0.13525237,0.05363472,0.38265058,-0.11683048,0.04954748,-0.42046145,-0.089656994,0.6351906,0.25064075,0.036209546,-0.33580002,0.057252493,-0.28727943,0.028154664,0.48050198,0.4894942,-0.18709736,-0.008874422,0.28924564,0.5340191,0.30396247,-0.34216374,0.22500226,-0.17352013,-0.26117414,-0.22058612,0.352058,-0.07028316,0.37794134,-0.08020733,-0.008578233,0.5954622,-0.098250926,-0.17038958,0.05121132,-0.03517825,0.10502272,-0.33224568,-0.18408865,0.26997474,-0.5671518,0.2018272,-0.29931185,0.5525721,0.16025999,-0.7326907,0.32136112,-0.61770296,0.22358626,0.04515131,0.65415835,1.0332575,0.66650796,0.08271735,0.921232,-0.22166233,0.16777661,-0.04476242,-0.044198558,-0.03138814,-0.13331935,0.14486621,-0.43219256,0.14739797,-0.3078986,-0.13846162,-0.032005645,0.29609054,-0.4280653,-0.24950144,-0.06652584,0.5531924,-0.29108217,0.10532327,1.0396514,0.8870115,1.0604074,0.12585822,1.1074481,0.28849345,-0.1441488,-0.3450408,-0.011246502,-0.55182517,0.10488926,0.19734108,0.13474168,0.4076566,0.10471556,0.0060066204,0.30267012,-0.47234344,-0.13394302,-0.022720568,0.16891298,-0.12038049,-0.006131809,-0.57119733,-0.35657632,0.33671027,0.059329856,0.06947389,0.3066061,-0.32580233,0.64689314,0.26740927,0.964986,-0.0241917,0.026475018,0.034223735,0.21351886,0.17475225,-0.3390891,-0.059296794,0.31995514,0.393807,-0.14405191,-0.554615,0.03080492,-0.29182273,-0.33386794,-0.17498414,-0.31902707,-0.27235204,-0.2288419,-0.42522424,-0.37654865,-0.029647658,-0.34382543,0.50793135,-2.3886003,-0.22078533,-0.1457524,0.22622968,-0.18250349,-0.21984738,-0.2313622,-0.49980488,0.21249992,0.20554551,0.32548457,-0.63742256,0.41478813,0.45416957,-0.5692861,0.07783819,-0.62225807,-0.015067632,0.12843308,0.37161618,-0.12410718,-0.09399946,-0.16310269,0.2332623,0.5950802,0.07391339,0.08105283,0.45221916,0.3982715,-0.17795531,0.29914337,0.08253026,0.57533634,-0.3870215,-0.20850152,0.61741877,-0.3889907,0.4340052,-0.023927048,0.05173829,0.5640541,-0.5469965,-0.5005992,-0.46264893,-0.26607218,1.1591502,-0.42969358,-0.67663187,0.0055969283,-0.18015185,-0.13755485,0.104336776,0.5220637,-0.12518571,0.011313468,-0.61198556,-0.19211906,-0.08848479,0.32130224,-0.289301,0.14334121,-0.39762446,0.76925296,-0.16406712,0.5200963,0.3027515,0.14335637,-0.18731563,-0.50638455,0.19042102,0.7232338,0.63467395,0.14935116,-0.2643792,-0.15592343,-0.19731995,-0.25731575,0.11218402,0.8499235,0.5055918,-0.1701633,0.09573589,0.44663867,-0.15683128,0.10172094,-0.24061377,-0.27924734,-0.29747775,0.084636696,0.57744277,0.5770315,0.11704992,0.34316203,-0.11108298,0.28906995,-0.043394007,-0.5903817,0.44161737,0.8114864,-0.31164923,-0.2756066,0.52915865,0.3985632,-0.33423448,0.45148587,-0.64990306,-0.25434038,0.56155676,0.058348946,-0.50515485,0.16338195,-0.25033906,0.19153607,-0.75722194,0.2695418,-0.3877699,-0.7213433,-0.5207279,-0.011708781,-2.3797355,0.21107852,-0.20523071,-0.050167456,-0.37669456,-0.3577396,0.29974544,-0.36548576,-0.698448,0.037028372,0.06115564,0.5467737,-0.13448334,0.09694365,-0.2700869,-0.29653558,-0.30878085,0.28260642,0.25704625,0.34804815,-0.39029068,-0.21492733,-0.044647567,-0.13189794,-0.38889682,-0.19838521,-0.76379144,-0.3953436,-0.09856067,-0.58361685,-0.20924537,0.6296425,-0.43084145,0.011640493,-0.37923068,-0.084923364,-0.00080077536,0.1292639,0.28939056,0.32184982,0.25271288,-0.13207254,-0.10916183,-0.18825254,0.16628619,0.04009492,0.17864084,0.23787948,-0.18701313,0.4070589,0.32545185,0.7779696,-0.08435931,0.7948605,0.22701585,-0.17854714,0.4801583,-0.21620616,-0.49816066,-0.797575,-0.14934686,-0.07448462,-0.48374826,-0.37420994,-0.122389644,-0.35150313,-0.99809265,0.4224238,0.22121009,0.34065726,-0.038872786,0.32491693,0.44156373,-0.108274266,0.082623154,-0.12349582,-0.3648678,-0.3679552,-0.47154787,-0.6003752,-0.5963631,-0.03933434,1.1611147,-0.14412841,0.10559121,0.32444012,-0.374062,0.25224802,0.19560789,0.14763528,0.116327584,0.5172022,0.10405861,-0.39845386,0.39345366,-0.09014063,-0.010471076,-0.4672583,0.24274948,0.82872957,-0.6158184,0.48640653,0.29636782,0.12203072,-0.32472527,-0.7794804,-0.06469601,0.023532568,-0.2793076,0.5694411,0.40213093,-0.4679209,0.4906779,0.112300634,0.07244401,-0.66817695,0.47080886,0.0064621232,-0.27165776,0.10076037,0.5386171,-0.17163955,-0.09752088,0.14096266,0.18777114,-0.30976984,0.3383814,0.2802763,-0.21120085,0.033425823,-0.00033577532,-0.38610232,-0.697481,0.17300484,-0.7048975,-0.3848189,0.17472482,-0.0324132,0.029775828,0.1289978,0.20848833,0.5554772,-0.17272994,0.16322048,-0.27968764,-0.30120388,0.45592597,0.5264445,0.35996258,-0.46585986,0.6922707,0.1968065,0.034620192,0.10238805,0.30961472,0.53652024,0.048733346,0.41578358,-0.028721306,-0.029897474,-0.0028775334,0.5609308,0.21152736,0.35667658,0.020320268,-0.13815114,0.16016775,0.16408563,0.42593062,-0.18302998,-0.34519294,-0.014172355,-0.037279606,0.08124477,0.50382566,0.20284235,0.30233282,-0.027127005,-0.014354702,0.14541754,0.017427877,-0.26564714,-1.5171356,0.2708916,0.36185396,0.8583473,0.38602275,0.15061918,-0.027115352,0.54867643,-0.4412812,-0.043909512,0.42532903,0.019211173,-0.22735694,0.4449415,-0.6188072,0.373653,-0.17138694,-0.027756238,0.33340287,0.19937128,0.49972457,0.82977647,-0.2511179,-0.021619149,-0.047222972,-0.29078287,0.13417923,-0.1502394,0.14651722,-0.38067457,-0.5426479,0.68652946,0.36158428,0.3767004,-0.4793347,0.060959864,-0.14769778,-0.1991888,0.16431232,-0.0046870485,-0.08592844,-0.22099844,-0.43464708,-0.23959842,0.531531,-0.34190017,-0.10393067,0.1471878,-0.29622534,0.13738012,0.0069154277,0.07875419,-0.08100857,-0.7727102,0.1909784,-0.41004676,-0.33747077,0.3090287,-0.35422623,0.0519716,0.29916286,-0.016226143,-0.27408963,0.28742123,0.05808003,0.74948597,0.009360317,-0.07346876,-0.0826694,0.34537196,0.26137242,-0.26547295,0.012563869,-0.13660105,0.26527187,-0.56638473,0.32828853,-0.24084266,-0.3646009,0.112566866,-0.16475895,-0.10539009,0.3488528,-0.2537709,-0.11356455,0.13595521,-0.031183109,-0.42852852,-0.16855729,-0.3009556,0.18222478,0.17783208,-0.12281355,-0.09406081,-0.0026154341,-0.14067496,0.3403713,0.13077456,0.27968284,0.46904147,-0.05163886,-0.5643316,0.20400469,0.111629665,0.3802846,0.07557195,0.0034927614,-0.18200406,-0.21687928,-0.428573,0.6985929,-0.26925817,0.29035395,-0.10869761,-0.36399475,0.87631863,0.048324183,1.1329077,0.078912295,-0.40133953,0.03791136,0.6001171,-0.18183152,-0.036069665,-0.29597202,0.8550624,0.49319845,-0.034981057,-0.10821947,-0.2668858,-0.07429378,0.2189621,-0.32142645,-0.17905147,-0.09291234,-0.5558029,-0.0631047,0.10000047,0.20913625,-0.013449809,0.0242698,-0.25397697,0.1870891,-0.02031244,0.3091895,-0.50908625,-0.15402761,0.37388927,-0.0132588595,-0.11322971,0.18043326,-0.34236974,0.30545002,-0.75670624,0.16898777,-0.549994,0.03619916,-0.017668117,-0.27839425,0.23426622,-0.13867745,0.19179466,-0.56730735,-0.25438517,-0.24773641,0.51444924,0.18554708,0.25213963,0.6965904,-0.26571554,-0.03332889,0.22389674,0.37216932,0.98581195,-0.1866884,0.015289582,0.07105173,-0.39739567,-0.61173224,0.13623753,-0.33071902,0.15511726,0.08759408,-0.40621263,-0.2066476,0.31487063,0.15686086,0.10170476,0.033833504,-0.90718293,-0.026283199,0.41097522,-0.14111045,-0.11240129,-0.39986727,0.2950786,0.67460984,-0.20021172,-0.4147123,0.073730625,0.2334401,-0.35467416,-0.556298,0.25788388,-0.32322478,0.29053324,-0.04363065,-0.4540713,0.009225331,0.33914444,-0.52570546,-0.017982394,0.3728578,-0.24446537,0.021237355,-0.13883716,-0.019124866,0.8925054,-0.14148128,0.09937978,-0.47174096,-0.57743305,-0.8579515,-0.28863662,-0.10361617,0.45181322,-0.016256426,-0.70379305,-0.2657325,-0.4473611,-0.04072075,0.11696419,-0.4850735,0.48334157,0.31855166,0.5635668,-0.17260002,-0.9423855,0.31134874,0.08200056,-0.25184587,-0.331975,0.4487201,-0.060235277,0.5681642,0.18386196,0.084279254,-0.018757083,-0.70564604,0.32878622,-0.28284025,-0.035857957,-0.72160625,0.06374255,459 -69,0.55987656,-0.113476455,-0.40422213,-0.046877395,-0.14786562,0.08240479,-0.19167861,0.48580974,0.16146863,-0.37183526,-0.22011071,-0.24412322,0.09089124,0.3827627,-0.16637063,-0.576145,-0.1589401,0.13505791,-0.37792096,0.5053246,-0.42139786,0.2262488,0.05459927,0.40036732,0.2113016,0.33393407,0.20162284,-0.08403645,-0.24188668,-0.06348808,-0.07006805,0.4390813,-0.5905725,0.02381491,-0.06670663,-0.36391807,-0.164704,-0.4968606,-0.28092578,-0.6397628,0.399194,-0.70792186,0.3851941,0.19194153,-0.16899914,0.3391639,0.03701485,0.15857375,-0.23755533,0.022019722,0.10188388,-0.18772954,-0.030041747,-0.14234565,-0.1236618,-0.22254004,-0.6755693,0.03647419,-0.4245108,-0.23709728,-0.23920657,0.17159575,-0.24910937,0.032253623,-0.12128946,0.49398777,-0.43664593,-0.07659982,0.24413607,-0.12882489,0.25172645,-0.50949895,-0.21600379,-0.056444652,0.23015143,-0.25735936,-0.059790403,0.15713668,0.29314986,0.5591259,-0.009291768,-0.1452046,-0.4616272,-0.0039381757,0.114572555,0.5461145,-0.3235031,-0.62132436,-0.14968073,0.046686463,-0.066981845,0.17056233,0.07472732,-0.28067473,-0.099128306,-0.016425185,-0.104376316,0.30707207,0.39745742,-0.39796123,-0.36475092,0.2723598,0.44790033,0.13431445,0.0022537597,-0.0687439,0.062964246,-0.58466244,-0.11380616,0.08164819,-0.25293484,0.53887546,-0.004511562,0.3079708,0.6033297,-0.08597009,-0.00014880672,-0.10902071,-0.06457043,0.013414107,-0.35196766,-0.055240422,0.25996858,-0.26356953,0.21417224,-0.06143526,0.7916312,0.06257202,-0.86198604,0.3285754,-0.5224923,0.13433042,-0.034209475,0.49257267,0.68735963,0.23385113,0.4440467,0.7124036,-0.498939,0.052032705,-0.13357584,-0.32312334,-0.052143943,-0.07698007,0.104066506,-0.58672965,0.046238806,0.030548364,-0.025886144,0.21242452,0.4383691,-0.6091192,0.01500589,0.21737443,0.77939934,-0.28152248,-0.08907705,0.7088105,1.0593488,1.0916336,0.021725936,1.1087545,0.16730575,-0.22536412,0.32355052,-0.45114,-0.6817584,0.17980225,0.3788038,-0.008008048,0.20546597,0.1368496,-0.11123401,0.3992867,-0.36435997,0.004030615,-0.07106517,0.029933944,0.17381293,0.023921961,-0.424706,-0.21117964,-0.08979235,0.05748434,0.13924994,0.2272803,-0.21082519,0.39195856,0.005957395,1.8882668,-0.13782428,0.1744794,0.10946442,0.43584442,0.13005584,-0.15748218,-0.12182912,0.21593246,0.31854877,0.050708696,-0.5589001,0.06828946,-0.1657542,-0.53334594,-0.067700416,-0.29245734,-0.13095874,0.011413803,-0.51455015,-0.113770336,-0.13861099,-0.40174824,0.43368635,-2.9760284,-0.06461412,-0.010623328,0.25802648,-0.2215704,-0.45243692,-0.17071602,-0.42618665,0.36781245,0.37113973,0.39708096,-0.629917,0.25978097,0.25330546,-0.4511979,-0.1433442,-0.6058028,-0.08396982,-0.05874797,0.33299077,-0.036919672,-0.14100555,0.058032084,0.17116605,0.5480056,-0.02258461,0.13481483,0.18575493,0.378319,-0.0120676905,0.48147854,-0.03128034,0.4563833,-0.18027806,-0.27357033,0.36288017,-0.34158513,0.1835229,-0.1962981,0.17793927,0.2976477,-0.39355752,-0.9429245,-0.57727695,-0.23318839,1.0441918,-0.21031645,-0.3417229,0.27351364,-0.14371899,-0.17068075,-0.0468701,0.49349585,-0.085301176,-0.08005212,-0.8334856,0.16380444,-0.14484581,0.051502645,0.05414681,0.017443081,-0.5018524,0.7209642,-0.08313431,0.4917996,0.465151,0.20364021,-0.16146186,-0.45674625,0.11460626,0.96013534,0.24832392,0.19576128,-0.16585547,-0.18137994,-0.17595562,-0.08315089,0.0527326,0.53254825,0.6537018,0.07333877,0.21743599,0.24017769,0.04124111,0.07887219,-0.16257358,-0.2537681,-0.10022578,-0.09890157,0.5823503,0.72721213,-0.21700728,0.3899423,-0.10657567,0.23427793,-0.08267856,-0.28363758,0.5176084,0.93412507,-0.11022433,-0.18609233,0.6019459,0.5440167,-0.23399329,0.3908231,-0.5681313,-0.2958311,0.4680771,-0.24225569,-0.41935426,0.25937712,-0.3079641,0.0004594396,-0.9012984,0.15208332,-0.1867853,-0.2533476,-0.5595981,-0.15409157,-3.7883723,0.1622963,-0.35969937,-0.21367334,-0.04440467,-0.09463053,0.16068242,-0.64417946,-0.46898472,0.098254934,0.06189393,0.5401655,-0.10704103,0.17929739,-0.2062802,-0.1750161,-0.16872244,0.16971156,0.11807665,0.32678562,0.0403292,-0.36706105,-0.019199044,-0.14117111,-0.34874076,0.01960501,-0.537062,-0.45221043,-0.10663716,-0.524799,-0.40181297,0.5423006,-0.41466618,0.019166376,-0.22432305,-0.08823477,-0.14502373,0.35897568,0.099411085,0.20102471,0.028065383,-0.06724247,0.019153185,-0.24104086,0.25424904,0.049052887,0.23990612,0.5533716,-0.19127515,0.20864119,0.38172033,0.53450316,-0.07564603,0.8533062,0.64765924,0.043963253,0.18687277,-0.3038343,-0.119794734,-0.62205404,-0.42502272,-0.11579797,-0.3932628,-0.5128648,-0.18225747,-0.41625202,-0.7436744,0.5132638,-0.0803491,0.28901052,-0.04284702,0.30316338,0.5206559,-0.30973968,-0.03859575,-0.07129637,-0.035214797,-0.4814106,-0.27180773,-0.5703091,-0.63148797,0.052716166,0.7819148,-0.055599667,-0.031797655,0.05279605,-0.15624693,-0.16861044,0.19442397,0.06729712,0.1858277,0.49377772,0.024141889,-0.644818,0.5771538,-0.11846945,-0.22608304,-0.66379434,0.12162564,0.34868076,-0.58005905,0.66805726,0.33928835,0.14500016,0.12158221,-0.5396582,-0.19197361,-0.07804249,-0.19061086,0.43305504,0.26698452,-0.77521193,0.4631802,0.37354156,-0.22458456,-0.8366779,0.4483614,0.017103255,-0.4476115,0.012667246,0.2950526,0.14161794,0.05609715,-0.16004513,0.20430629,-0.4826255,0.3058162,0.17402315,-0.084713414,0.38087595,-0.21611843,-0.07519282,-0.5917759,0.0927123,-0.47234327,-0.31720048,0.15945588,0.12277676,0.15621763,0.16509081,-0.050343707,0.37626594,-0.24770534,0.079277486,0.03182346,-0.19070083,0.17807506,0.43882617,0.40875685,-0.4082431,0.5388138,-0.02680791,-0.09181556,-0.03236695,0.1294542,0.48123303,0.017367065,0.36844686,-0.11594848,-0.33964297,0.3203935,0.6112784,0.12766185,0.35760802,-0.014385151,-0.2370823,0.47082135,0.05672317,0.08630409,0.007017538,-0.5779403,0.007475402,-0.16066456,0.21461949,0.5043167,0.14254616,0.3695081,-0.15418366,-0.1910215,0.12222126,0.22270907,-0.075151704,-1.0298469,0.22445802,0.08475925,0.85024196,0.6439278,-0.06532645,0.061030786,0.4981109,-0.24038182,0.12065603,0.3091877,-0.06305881,-0.56218934,0.62002516,-0.7056688,0.42314374,-0.11576476,-0.027392827,0.0093635805,-0.109872654,0.35358024,0.6107987,-0.12431471,-0.0021337233,0.023974115,-0.2557769,0.016626012,-0.30540425,0.24270518,-0.6026249,-0.15807395,0.64142215,0.6189202,0.33547372,-0.13326332,-0.027924387,0.0754807,-0.05534531,0.010594575,0.034458026,0.15977766,0.044858918,-0.64310193,-0.27615103,0.59650064,-0.12740088,0.12187313,-0.04064888,-0.29910034,0.19305253,-0.15088984,-0.30097032,-0.05750697,-0.6029158,0.08806686,-0.36551178,-0.44576228,0.5558195,-0.08121514,0.3053885,0.14610192,0.14582413,-0.43012884,0.20776322,0.1727629,0.8837738,0.03301818,-0.16233736,-0.41705662,0.13133153,0.2378582,-0.11485269,-0.2969228,-0.29741046,0.03877889,-0.58520454,0.44285107,-0.053061314,-0.29909387,0.12145206,-0.10681027,0.087995626,0.56623346,-0.016040355,-0.17022216,-0.010272458,-0.085755646,-0.35005322,-0.087275654,-0.14637545,0.29673114,0.12549414,-0.09313042,-0.0726043,-0.10067952,-0.1429712,0.4365617,0.1219841,0.35132334,0.32518405,0.06774732,-0.3537661,-0.072107844,0.30614185,0.42289826,-0.03781103,-0.17094271,-0.2951406,-0.49537224,-0.40277472,0.14518897,-0.1729851,0.3493729,0.09709449,-0.23099163,0.74406767,0.021246959,1.1078784,0.1322333,-0.28826553,0.12820557,0.4225341,-0.026788294,0.015837558,-0.43517148,0.9647877,0.5796401,-0.009549692,-0.14288771,-0.17013618,0.049139127,0.1300731,-0.17862976,-0.08787852,-0.13490205,-0.6292217,-0.26904348,0.14112023,0.27342343,0.23917706,-0.09328098,0.012191951,0.19514665,0.053975582,0.41383877,-0.396808,-0.22262092,0.32365492,0.31383362,-0.061502982,0.11290604,-0.46473038,0.45936057,-0.3748819,-0.026397139,-0.37923014,0.15763137,-0.18220073,-0.19688772,0.26356867,-0.08692074,0.46646142,-0.2094245,-0.3334953,-0.2559689,0.40854925,0.07684653,0.07816401,0.59327394,-0.24279904,0.13812667,-0.0003117174,0.52447927,1.223969,-0.34779084,0.005622633,0.32784027,-0.17034632,-0.63712823,0.35256574,-0.1658857,0.12090272,-0.043136552,-0.21534272,-0.47956574,0.22356063,0.08528167,-0.019580454,0.052211083,-0.49247813,-0.2237237,0.21818888,-0.28591034,-0.1921817,-0.24663532,0.14661187,0.6965349,-0.29732037,-0.32464954,0.11344212,0.33471954,-0.07677485,-0.60833734,0.050364092,-0.37842667,0.24678163,0.19589408,-0.28209856,-0.15838148,0.087868325,-0.36181483,0.009384707,0.25544742,-0.3354674,0.046571314,-0.34836873,-0.023866748,1.0036452,-0.1434604,0.25220722,-0.5899623,-0.4776214,-1.0184579,-0.42918056,0.5529223,0.06515078,0.087232195,-0.50939274,0.0461761,-0.1446162,-0.1819715,-0.14276353,-0.40325308,0.46731696,0.13824245,0.42187953,-0.15712032,-0.45288387,-0.0019828398,0.1606966,-0.13042863,-0.4952998,0.45152473,0.09987415,0.86081535,0.028688904,0.081214495,0.34712043,-0.52493006,-0.13780625,-0.20559573,-0.1945796,-0.7390426,0.086000346,477 -70,0.51450217,-0.4394157,-0.37761635,-0.15012561,-0.4108265,0.058883984,-0.12671632,0.60278016,0.22898443,-0.5806503,-0.1748298,-0.13106689,0.0019435063,0.28406787,-0.17747894,-0.490166,-0.007862031,0.24689633,-0.47664583,0.6712477,-0.34325504,0.26076856,0.0348287,0.30510983,0.26327935,0.24096984,0.15377204,-0.048471898,-0.21184543,-0.10107516,-0.16077548,0.3216729,-0.42602658,0.33546287,-0.13129649,-0.20471361,0.14388643,-0.4011659,-0.18806866,-0.7240249,0.21831799,-0.71786594,0.39711303,0.066711515,-0.39734143,0.36214226,0.08657156,0.28894657,-0.2716765,0.0014729686,0.09158144,0.03784483,0.113993704,-0.15236689,-0.08608249,-0.47339272,-0.5792835,-0.03958689,-0.358381,-0.30504775,-0.30031672,0.14850122,-0.39188504,-0.02520074,-0.08377628,0.6138009,-0.5178393,0.100233406,0.24866715,-0.16493292,0.3213302,-0.62356,-0.14525318,-0.17710093,0.221596,-0.029401395,-0.17586958,0.33510745,0.30495262,0.32229927,-0.023339923,-0.20760679,-0.3688017,-0.06467153,0.28255185,0.38899305,-0.18195923,-0.40723103,-0.008990396,-0.011511371,0.20916128,0.21180859,0.25347507,-0.23261595,-0.18031764,0.030418772,-0.17258403,0.19686796,0.2806762,-0.23546425,-0.25130975,0.18650684,0.5575591,0.05377645,-0.18863939,-0.10338688,0.05319529,-0.5410229,-0.2622896,0.10142292,-0.33971858,0.47490036,-0.19796333,0.15907559,0.6911714,-0.22993621,0.0014298633,-0.030565152,0.14864218,-0.119818866,-0.33378765,-0.33164772,0.22260754,-0.4737396,0.012079585,-0.10772078,0.71114475,0.1253757,-0.5826591,0.21138194,-0.45822275,0.123172306,-0.14993227,0.3454042,0.5599738,0.4751796,0.3580061,0.62286305,-0.45719138,0.12381175,-0.07133427,-0.35302174,0.07804133,-0.26135045,-0.0621849,-0.53356063,0.044413857,-0.06761194,-0.13010791,-0.009547897,0.4184552,-0.5557638,0.011275047,0.12819508,0.78336114,-0.31296116,0.002960654,0.70699775,0.8193278,1.071048,0.06612349,1.0872217,0.23684858,-0.2792827,0.24350396,-0.2212893,-0.63647014,0.31872588,0.51398754,0.08691114,0.2823378,0.012685649,0.11452568,0.4268002,-0.2379596,0.17927364,-0.28566587,0.08133734,0.0293569,-0.31863552,-0.48738053,-0.35666752,-0.09984346,0.11141048,-0.18663085,0.2635428,-0.08451975,0.33030778,0.078437194,1.825329,-0.022392813,0.051737092,0.14636981,0.33464938,0.27296734,-0.20250969,-0.008961476,0.5684296,0.2912759,0.26771998,-0.56891525,0.15966411,-0.25505444,-0.54676664,-0.14367746,-0.3546793,0.03217999,-0.057143345,-0.5016639,-0.18397595,-0.12538359,-0.24246922,0.35006514,-2.6359115,-0.24969566,-0.28098664,0.25483721,-0.21819478,-0.3132183,0.017166961,-0.41681635,0.29024047,0.3651513,0.46209568,-0.58286893,0.2148005,0.42114815,-0.5823205,-0.050383724,-0.51296484,-0.2627843,-0.1720549,0.4014666,0.037724763,-0.020394623,-0.012593016,0.15800425,0.5351353,-0.15003252,0.26994675,0.2675277,0.31472713,0.028243814,0.5602941,0.07512971,0.39356464,-0.1905364,-0.22571626,0.3569373,-0.3741917,0.15896714,0.19378158,0.21910529,0.41695294,-0.43322092,-0.85730326,-0.7693228,-0.31039667,0.9974409,-0.15008616,-0.38338658,0.32412386,-0.27695617,-0.31879053,-0.10930998,0.2405304,-0.06433832,0.051781446,-0.8697221,0.14044039,-0.014078848,0.076762296,0.01325421,-0.23876299,-0.3882746,0.7961986,0.0009035021,0.50886667,0.38627958,0.13083223,-0.24710312,-0.3781613,-0.07313366,0.8932732,0.4950974,0.12248451,-0.2745929,-0.23981844,-0.34068918,0.03756319,0.060391698,0.36196744,0.7687806,-0.13861081,0.17437957,0.19026011,-0.025225462,0.109273896,-0.19788298,-0.28796163,0.02416107,0.098615885,0.42977673,0.46237725,-0.16317846,0.37588117,-0.10322266,0.46517193,-0.05785299,-0.49428165,0.47168815,0.9477996,-0.114693575,-0.32307476,0.57809484,0.6500872,-0.1852963,0.4297251,-0.4582606,-0.12810037,0.5766963,-0.27514562,-0.36755317,0.14001466,-0.41198906,0.19228579,-0.8826092,0.3410434,-0.3116568,-0.38369882,-0.48474476,-0.14792956,-3.0003169,0.2532333,-0.22966374,-0.372626,-0.1404463,-0.1200147,0.17609195,-0.7777301,-0.48375952,0.17434254,0.16269645,0.6836459,-0.008549045,-0.03231941,-0.1901587,-0.38627532,-0.14251216,0.15352555,-0.07391624,0.19019589,-0.10010338,-0.5761239,-0.04236804,-0.16542394,-0.3854165,0.117599815,-0.6835582,-0.5532621,-0.24991766,-0.56725556,-0.37137094,0.7021184,-0.05458394,-0.008904889,-0.047393546,0.02709626,-0.059093148,0.24542254,0.12657845,0.13282825,0.10054098,-0.093122415,0.0015109777,-0.28305182,0.27192,0.10600096,0.23404469,0.30906263,-0.1654539,0.19067585,0.5975564,0.5745152,-0.22257681,0.7656855,0.41349852,-0.124148294,0.2957762,-0.28315538,-0.2928117,-0.49751395,-0.41410655,0.01844336,-0.4170686,-0.45352063,0.043775134,-0.35192412,-0.64317095,0.6327739,-0.011273105,0.243785,-0.06439926,0.20353642,0.43162096,-0.31558037,-0.112318374,-0.11371808,-0.15715599,-0.52121305,-0.2913548,-0.75538605,-0.47865453,0.19623527,1.0827334,-0.2550724,-0.01445058,-0.013590792,-0.2154878,0.060397454,0.117225036,-0.06833062,0.20554361,0.38497278,-0.059617758,-0.6409999,0.5360558,0.09443759,-0.21863562,-0.35914046,0.18112344,0.6033334,-0.46488726,0.6153524,0.33969188,-0.014853289,-0.12873018,-0.6013917,-0.116277635,0.02693107,-0.17697728,0.5085231,0.27035642,-0.70439464,0.38552237,0.3085831,-0.47284904,-0.69788355,0.5237934,-0.14106151,-0.27734458,-0.065759495,0.35984498,0.15039998,-0.028662158,-0.23665795,0.3293237,-0.44351518,0.26445287,0.36489275,-0.03161947,0.16449186,-0.16000411,-0.07518034,-0.88932335,-0.035089523,-0.39319602,-0.32154825,0.34537965,0.10083298,-0.04725185,0.26293075,0.070765205,0.41718173,-0.3801624,0.10479267,-0.03489121,-0.24799635,0.44555855,0.4074707,0.41811842,-0.38794056,0.455936,0.0038498528,-0.035669334,-0.18566537,0.0337345,0.4504866,0.098785974,0.42702717,-0.19061524,-0.16329253,0.49601975,0.79946935,0.15892695,0.46141642,0.09640754,-0.27208817,0.27450886,0.09946765,0.18644702,0.0264249,-0.46368232,0.06694684,-0.1637163,0.06995263,0.48901778,0.09922795,0.18275593,0.001098223,-0.2622887,0.11942159,0.27722943,0.14264579,-1.1999959,0.24562171,0.2003403,0.7761741,0.5483485,0.09546644,-0.04127019,0.65805924,-0.31222796,0.088382535,0.37700784,-0.010706186,-0.5869038,0.6045048,-0.718072,0.3419427,-0.09813504,-0.10428536,0.0046618897,-0.13420421,0.54017365,0.7370821,-0.16615714,-0.0025347807,0.010544991,-0.4129222,0.31113875,-0.47930858,-0.07469328,-0.52424306,-0.38129738,0.5646982,0.5298802,0.34873214,-0.13421158,0.002711975,0.1434752,-0.18305583,0.24135737,0.10245929,0.16995195,0.11705602,-0.6670128,-0.16914034,0.40744817,-0.042200387,0.21844679,-0.09452155,-0.26875955,0.15605305,-0.18943341,-0.09922117,-0.0008189799,-0.709428,0.07904452,-0.25186032,-0.34784266,0.5222299,-0.07400407,0.09894849,0.18321991,0.084301874,-0.29621992,0.28059095,0.18403088,0.7532196,0.01219596,-0.057880335,-0.18587075,0.2221905,0.05882949,-0.15423003,0.046714634,-0.22529808,0.06566857,-0.68991655,0.46964335,0.10103734,-0.3182744,0.07739161,-0.19025037,-0.018186798,0.5704186,-0.16022463,-0.28413856,-0.35238016,-0.017950408,-0.14285871,-0.34376758,-0.05534992,0.3805801,0.07483011,0.14812388,-0.12590925,0.0853831,0.0067647584,0.47428775,0.031436183,0.47383085,0.2709019,-0.09755212,-0.4955034,-0.016059887,0.15795079,0.30614188,-0.0871561,-0.11977194,-0.22192529,-0.410052,-0.38310504,0.07787123,-0.11845904,0.38033873,0.14359672,-0.22952503,0.9416295,-0.11627372,1.3021328,0.007909581,-0.4611296,0.1313607,0.5658734,-0.07080194,-0.04991001,-0.30647314,0.88599443,0.55538476,-0.05381173,-0.12876324,-0.36814833,-0.0807578,0.16385582,-0.24603215,-0.13788721,-0.058419958,-0.6183747,-0.29607594,0.23141901,0.21292126,0.22913171,-0.09215565,0.037420474,0.3128252,0.014554638,0.27980718,-0.36562005,-0.2895254,0.212585,0.19323276,0.033779837,0.15631306,-0.5642903,0.39151302,-0.53948,0.27669156,-0.17526597,0.23184069,-0.24758646,-0.3161172,0.25274402,0.06428022,0.25437728,-0.34166652,-0.34398508,-0.17823824,0.5962768,0.07749504,0.17021239,0.580907,-0.32202056,0.20170566,0.11469978,0.4734745,0.9078936,-0.2859613,-0.107488334,0.37572068,-0.48364797,-0.7106856,0.34516162,-0.23140001,0.11898661,-0.037287265,-0.32276264,-0.58089584,0.3105905,0.25231972,0.02627831,-0.051745538,-0.4738366,-0.13591681,0.49145705,-0.46834853,-0.2867842,-0.24719727,0.31938314,0.48715663,-0.2951513,-0.5222243,0.004109338,0.19844712,-0.26779842,-0.3791399,-0.16778074,-0.256285,0.41904438,0.023115885,-0.31511003,-0.077754,0.014147047,-0.39879766,0.10310477,0.18442795,-0.31468093,0.11439511,-0.3863155,-0.108878985,0.9554932,-0.05303095,-0.010622915,-0.44938016,-0.3333888,-0.8333485,-0.2995353,0.6689798,0.0031455234,0.09076264,-0.47607118,-0.037416324,-0.043444812,-0.07909857,-0.12551057,-0.25977278,0.43809772,0.15316302,0.38378912,-0.079694346,-0.6919452,0.15919852,0.15811954,-0.031719197,-0.61314505,0.5278294,-0.26418033,0.8772219,0.07086868,0.081973076,0.27237183,-0.45608944,-0.021405365,-0.16365597,-0.33444098,-0.5409193,-0.08278483,493 -71,0.47348526,-0.13783331,-0.46250674,-0.23882219,-0.35402694,0.094659574,-0.20632228,0.13780919,0.14928171,-0.42971244,-0.3375693,-0.09647892,0.09929888,0.4643588,-0.08623574,-0.850038,0.014174532,0.1489138,-0.9729093,0.5281824,-0.59610945,0.43097478,0.20893383,0.1668884,0.23609553,0.51554453,0.49223906,-0.23785885,-0.19238617,0.06446986,-0.105932996,-0.026264615,-0.54457074,0.13667816,-0.099304706,-0.33708042,0.09978412,-0.46422133,-0.20984975,-0.6445492,0.23405139,-0.934042,0.4005385,-0.070310876,0.054960873,-0.06421557,0.26556534,0.37870464,-0.45802042,0.2791655,0.18949763,-0.27474937,-0.22780478,-0.29011297,0.06388188,-0.52895457,-0.49593818,-0.021187592,-0.5708545,-0.43993077,-0.2223,0.13762242,-0.3417303,0.13774905,-0.09979221,0.26516268,-0.44865096,-0.030231535,0.37912947,-0.15831794,0.059686534,-0.44471318,0.058840632,-0.0972448,0.4922255,0.022899894,-0.12939042,0.51835257,0.3760395,0.54535496,0.31540242,-0.35857132,-0.12430917,-0.22487845,0.36069712,0.39705235,-0.010178011,-0.37464792,-0.18792215,0.07540199,0.2639892,0.3239111,0.08236116,-0.34137586,-0.029664196,-0.04773048,-0.17136304,0.51986015,0.5816116,-0.31566438,-0.37806982,0.40406924,0.5154479,0.15703134,-0.14093718,0.02981016,-0.039245263,-0.5692242,-0.19939637,0.31262493,-0.012271348,0.43949366,-0.10657795,0.06573734,0.9312744,-0.37173587,0.029184595,-0.3091861,-0.20248824,-0.2658538,-0.0982163,-0.11942295,0.075924546,-0.6010235,-0.0770693,-0.43369573,0.70443964,0.317771,-0.71201664,0.2971518,-0.5220341,0.18749897,-0.22776106,0.6518684,0.65932393,0.32468975,0.304266,0.8533787,-0.41735363,0.38759202,-0.10669266,-0.5080389,-0.010650314,-0.41444463,0.09460445,-0.4362793,0.09511533,-0.30012167,0.016924925,0.026860744,0.47127026,-0.49183035,0.015522853,-0.025233645,0.66086733,-0.47018087,0.00304088,0.70385295,1.0884315,1.1476834,0.09861373,1.2699256,0.59953076,-0.3553074,0.16611724,-0.4674024,-0.60678,0.20325933,0.45166638,0.25338712,0.28193212,-0.1729607,-0.01173383,0.20006011,-0.57734436,0.15681179,-0.0405015,0.35407212,0.06717324,-0.082988255,-0.32041845,-0.20322594,0.03771069,-0.034583084,0.1338308,0.23637593,-0.2182017,0.43826032,-0.062391363,1.3389617,-0.017665874,0.050938338,-0.16484855,0.5546859,0.21815278,-0.1898351,-0.06801336,0.29164532,0.4858863,-0.13823657,-0.75678754,0.1390171,-0.44077194,-0.3999242,-0.26298058,-0.4297482,0.05567981,0.00064085796,-0.25863063,-0.09577274,0.04009255,-0.3003874,0.4244941,-2.4923532,-0.31792313,-0.1982219,0.3178141,-0.2791265,-0.07832976,-0.12345046,-0.53686965,0.31151733,0.27848703,0.4531342,-0.60060304,0.46573412,0.3467982,-0.55563056,-0.24255101,-0.827495,0.03267911,-0.1394227,0.47700834,-0.11722441,-0.061673373,-0.11888704,0.16948673,0.69856083,-0.13061218,0.12913306,0.4347866,0.36067265,0.23044962,0.5957397,0.076629594,0.6776781,-0.28922027,-0.12911946,0.40262994,-0.21793172,0.30150005,-0.22099628,0.09752904,0.39729905,-0.5465139,-0.80302393,-0.70916665,-0.45147532,0.9673617,-0.42121896,-0.4099781,0.10416779,0.057753675,0.14876412,-0.017344896,0.5622899,-0.06864289,0.14423129,-0.6192086,0.08224525,0.07769417,0.06221426,0.09681189,0.11729282,-0.3240568,0.5925386,-0.06674118,0.5302609,0.18649301,0.3562982,-0.14156668,-0.3572879,0.30008325,1.0425876,0.20476946,-0.10151471,-0.15173087,-0.3307028,-0.19017468,-0.31945884,0.026705246,0.36620018,0.8386214,-0.031539973,0.14993499,0.22562133,-0.21252753,0.038885944,-0.14804688,-0.23781197,0.07478716,-0.02393777,0.43999827,0.6594087,-0.09712075,0.5112262,-0.2640217,0.34708127,-0.005694689,-0.5944346,0.7166811,0.6458108,-0.06300139,-0.005247634,0.46344256,0.47354138,-0.44193053,0.5939622,-0.6779815,-0.2766113,0.8445196,-0.23103637,-0.35903174,0.16971338,-0.27815422,0.15494019,-0.8571571,0.43348745,-0.28338924,-0.22192436,-0.35315657,-0.031566955,-3.5704775,0.11862823,-0.081231356,-0.14246683,-0.0775799,-0.053725332,0.21838614,-0.63149405,-0.5010522,0.18958034,0.22435188,0.72799206,-0.008667545,0.22188509,-0.24481618,-0.15038499,-0.2472234,0.19442938,-0.016668811,0.2517555,-0.06381045,-0.30595055,0.092452876,-0.10513154,-0.5314549,0.19811355,-0.43658802,-0.48515335,-0.18054013,-0.40735742,-0.36621097,0.6059056,-0.34117416,-0.048020877,-0.14636318,-0.05727138,-0.29682472,0.24971168,0.16037542,0.19528909,0.25299633,-0.029660894,0.0040817894,-0.2862609,0.45286328,-0.03882528,0.41004616,0.12341542,0.01611101,0.13600978,0.40485507,0.5410124,-0.14612918,0.8360958,0.39441705,-0.09437984,0.116673715,-0.3561527,-0.23407793,-0.55744344,-0.45491093,-0.116168484,-0.28891814,-0.5435478,-0.022124913,-0.34816098,-0.8114065,0.43878135,0.104655646,0.3121234,-0.11585195,0.22441025,0.3136974,-0.10598377,0.0034575872,-0.12712128,-0.16490021,-0.5718492,-0.23005438,-0.69560754,-0.51484776,0.12440481,0.7788714,-0.2882353,-0.122558996,-0.21613605,-0.3106336,0.048657805,-0.009422336,-0.07071061,0.32307285,0.3303553,-0.0226829,-0.805784,0.47967827,-0.16969468,0.0069321617,-0.5809068,-0.011489274,0.5753552,-0.750329,0.47893924,0.4247216,0.045780312,0.23766537,-0.48146763,-0.12387139,0.030285783,-0.11503125,0.31045392,-0.03463081,-0.8716383,0.5708845,0.17785086,-0.48234028,-0.7419029,0.37320578,0.13170373,-0.18893918,0.18435733,0.2021912,0.09613375,-0.13062803,-0.46209043,0.25866768,-0.5603709,0.3635781,0.22126125,0.019612487,0.3320825,-0.1520532,-0.46158224,-0.6126039,-0.046670146,-0.502614,-0.030087277,0.25512964,-0.051360223,0.10763466,0.13612747,0.058964282,0.43860483,-0.2660908,0.087606415,0.06616871,-0.39124438,0.18207856,0.443845,0.33085135,-0.4925266,0.5768494,0.12328462,-0.29671952,0.18503745,0.033382773,0.37046516,0.29266256,0.2681534,0.022801548,-0.22686668,0.41863522,0.7364608,0.06748929,0.2707771,0.19058034,-0.34924775,0.5001633,0.0824566,0.113190554,0.109324396,-0.25946724,-0.019516699,0.19873932,0.120457806,0.483222,0.373463,0.58997047,0.111705825,-0.18740398,0.037690267,0.1128279,-0.06512548,-1.0982428,0.30557936,0.15564004,0.76929724,0.6245052,-0.04297693,-0.16245052,0.60365075,-0.28846228,0.089253455,0.33263004,-0.095675915,-0.5433169,0.66877186,-0.6088795,0.43080124,-0.093857825,-0.10463246,0.0052811727,0.1710616,0.16225773,0.8777402,-0.13799721,0.12996888,-0.081092134,-0.2047216,0.15800714,-0.36438316,-0.037358716,-0.48672372,-0.42646807,0.69114083,0.19944195,0.22131228,0.025697127,-0.088987306,0.102104396,-0.21672162,0.272033,-0.012308657,0.022165336,0.07449392,-0.5623024,-0.37756804,0.40322724,-0.18156715,0.13610585,-0.156177,-0.27495295,0.015222952,-0.3350036,-0.026962966,-0.073904954,-0.7378411,-0.050145905,-0.19403814,-0.3862401,0.3941734,-0.21477455,0.2898174,0.27081457,0.031593315,-0.20824261,0.20642085,0.1806033,0.77209646,-0.013364304,-0.35129154,-0.31703866,-0.054897897,0.44019163,-0.31335005,0.3191267,-0.3546133,0.030981295,-0.6950992,0.7462082,-0.20209724,-0.38686016,0.27428687,-0.21747702,-0.06595485,0.5761453,-0.2173526,-0.08799252,0.19413069,-0.06497089,-0.31394905,0.024328474,-0.40274128,0.1408274,0.18880993,-0.037363555,-0.1334554,-0.16888891,0.06645142,0.6437085,0.0075868256,0.45890537,0.118058115,0.04681447,-0.20328712,0.05621554,0.22766127,0.3868758,0.29609695,-0.014929088,-0.4783838,-0.34209025,-0.3497582,0.20282781,-0.16924015,0.093678385,0.04975808,-0.49595717,0.7083204,0.024646766,1.2771386,0.17479905,-0.38965535,0.16518623,0.48999915,-0.12884827,0.074886695,-0.42380095,0.7734209,0.54524267,-0.018663388,-0.008788981,-0.44950703,-0.2344409,0.42487007,-0.32288447,-0.15135789,-0.029564466,-0.6628902,-0.52351487,0.22836453,0.03869583,0.14095566,0.023386894,-0.02498395,0.030847725,0.22320883,0.5076515,-0.6922929,-0.23504108,0.19732891,0.22927849,0.039944082,0.21376655,-0.3978778,0.5207772,-0.74035794,0.17134407,-0.25289357,0.08248071,-0.099746384,-0.4054979,0.20641796,0.21935505,0.4008483,-0.23676133,-0.5648046,-0.015384253,0.6256716,-0.06259893,0.2560432,0.66615355,-0.43128368,0.06568417,0.035793975,0.5940081,1.3642629,-0.35368073,0.17173153,0.34281802,-0.4234056,-0.6050324,0.47510242,-0.29659808,-0.093057446,-0.10048365,-0.44828188,-0.431284,0.38170213,0.19544294,-0.03591147,0.18287444,-0.5095478,-0.17227845,0.39568794,-0.25283545,-0.41641045,-0.25272468,0.3650126,0.6773737,-0.48589897,-0.14755684,0.2086299,0.36604244,-0.28092042,-0.34893972,-0.12164796,-0.2205647,0.3912482,0.15874226,-0.22804344,-0.14142297,0.16241078,-0.4187703,0.112600796,0.20717089,-0.37474322,-0.05815331,-0.087441325,-0.06390187,0.80177057,-0.17681618,-0.052820176,-0.69235903,-0.3789117,-0.89898837,-0.5138289,0.3306432,0.07748174,-0.016659051,-0.39490548,0.057233676,0.060194246,0.009971049,0.17974386,-0.6262853,0.3709812,0.07243952,0.4149689,-0.21933728,-0.87319344,-0.01824873,0.15677027,-0.27021837,-0.6337986,0.5767727,-0.13782915,0.8767363,0.094026044,-0.11150934,0.06833776,-0.41507933,0.13358963,-0.4135067,-0.1540873,-0.7698557,0.22093849,502 -72,0.52170515,-0.13285601,-0.5648892,-0.12425259,-0.24816622,0.037382558,-0.14109461,0.43734244,0.0542057,-0.5352376,-0.058186024,-0.21258216,-0.15729606,0.48484132,-0.33443993,-0.81617844,-0.13163379,0.2109634,-0.5657329,0.5374635,-0.30666816,0.31918347,0.06354454,0.3533397,0.1600517,0.2223414,0.28255063,-0.13557482,-0.21545278,-0.06993626,-0.034247786,0.13454974,-0.5693052,0.026162714,-0.23486373,-0.49694413,-0.075295456,-0.35761708,-0.25418985,-0.8901343,0.51437813,-0.86185604,0.43964344,-0.19588917,-0.30327648,0.0877228,0.25832975,0.43977576,-0.13426517,-0.033913888,0.20349678,-0.074039474,-0.033196386,-0.064454995,-0.22702983,-0.34089875,-0.56497645,0.27347955,-0.5228778,-0.11784705,-0.22888991,0.2821878,-0.38343543,0.057421215,-0.11248047,0.49131274,-0.3759163,-0.2606138,0.46452516,-0.146323,0.47110355,-0.620228,0.0049508065,-0.14134042,0.12309774,-0.11867687,-0.036384955,0.28558087,0.30832276,0.6035104,0.1370127,-0.29373193,-0.32936832,0.13258314,0.1714812,0.37656796,-0.19734661,-0.5645822,-0.180033,0.08635003,0.23639476,0.1452907,0.1527401,-0.3993376,0.0126517825,0.12447407,-0.2907689,0.4386357,0.45779428,-0.3171821,-0.19106704,0.34603375,0.63286823,0.27255058,-0.14185914,0.09589616,-0.015310781,-0.48528963,-0.17863072,0.17379622,-0.17886856,0.46559548,-0.14229871,0.2369272,0.6711033,-0.19193932,0.0518886,0.06859626,-0.0705412,-0.17404231,-0.24011138,-0.21499565,0.21871267,-0.4885295,0.052627653,-0.3176297,0.84324795,0.12312962,-0.7945703,0.41367602,-0.5622601,0.32565582,-0.15994556,0.5050875,0.72826725,0.36465997,0.16818494,0.96606964,-0.534282,0.045043923,-0.118827716,-0.44135028,0.13423464,-0.21364763,-0.05818242,-0.3847381,0.018107593,-0.18687926,-0.1478502,-0.07158527,0.39841804,-0.6770703,-0.043488726,-0.16594325,0.9085908,-0.3308688,-0.018572327,0.7074506,0.97353613,1.0701294,0.03406394,1.4197917,0.23451778,-0.23328452,0.2965413,-0.2552301,-0.7525039,0.42636275,0.33426043,-0.2690872,0.31526908,-0.03431625,-0.062330436,0.5239173,-0.41972452,0.090489835,-0.38385522,0.22158533,0.056151822,-0.15234184,-0.37917265,-0.13916324,0.05341899,-0.023568776,0.1921309,0.14266303,-0.12678203,0.388952,0.00559932,1.6365064,-0.17101943,0.06044312,0.097689286,0.42689914,0.11442323,-0.039486952,-0.095828,-0.019767068,0.41079897,0.001114238,-0.44418657,0.097466595,-0.23182407,-0.6040264,-0.22754075,-0.21054621,-0.0753946,0.075459994,-0.4595502,-0.2165697,-0.09075263,-0.24298725,0.38571694,-2.3236651,-0.20252606,-0.09099139,0.20574096,-0.3481487,-0.39192063,-0.0924723,-0.6081388,0.5777367,0.34804156,0.46722442,-0.6694723,0.41004488,0.39272264,-0.4728449,-0.06724772,-0.67454904,-0.111632586,-0.008547043,0.35582986,0.12836343,-0.3454675,-0.0377196,0.18419012,0.53984475,0.05004242,0.01719879,0.19426209,0.25367236,0.091853015,0.46536142,0.08595514,0.5894506,-0.25093645,-0.21205004,0.49640316,-0.24768785,0.1064221,-0.05801931,0.049633056,0.3482671,-0.508214,-1.0516051,-0.82704556,-0.26508993,1.1915879,-0.009831635,-0.49165827,0.22227083,-0.0385456,-0.11404574,0.09500462,0.38277236,-0.06537528,-0.05325242,-0.9452573,0.07520776,-0.106931746,0.09342767,0.1728538,-0.12353043,-0.4376125,0.6926387,-0.12361396,0.41172677,0.51664996,0.18955638,-0.22020684,-0.6706181,0.043883666,1.0660995,0.33150384,0.09801978,-0.17889665,-0.20684011,-0.51820195,-0.1655609,0.09904662,0.45974624,0.89670956,0.1609546,-0.026467334,0.2435235,-0.09820351,0.039387673,-0.10861181,-0.48735076,-0.19250038,-0.09308903,0.5900126,0.58068264,-0.09075725,0.5297491,-0.27275807,0.4307341,-0.086193435,-0.429067,0.8282827,1.1774987,-0.32325816,-0.24600407,0.62263525,0.32009298,-0.24447784,0.5692564,-0.56806195,-0.40786362,0.49114165,-0.16535614,-0.51479274,0.23848006,-0.37757042,0.20233282,-1.0886284,0.31112358,-0.45631427,-0.21362221,-0.6959161,-0.23856488,-3.1855962,0.24658494,-0.21167973,-0.111564,-0.15416369,-0.09954588,0.3091655,-0.5621631,-0.72451586,0.052167475,0.14068536,0.6403351,0.054293778,0.20916651,-0.1676727,-0.13155958,-0.25302055,0.1237998,0.30230987,0.30052283,0.05777806,-0.5666816,-0.17852291,-0.30348054,-0.36262006,0.0037162472,-0.64051867,-0.5431485,-0.38454276,-0.5833739,-0.3903873,0.6634249,-0.44217312,-0.022078188,-0.21313836,-0.0230292,-0.029380482,0.44214204,-0.05538659,0.10274442,0.14373952,-0.06567611,0.043159015,-0.27161664,0.16411889,0.12020031,0.36538833,0.3422634,-0.24251725,0.35019505,0.63855064,0.80766815,-0.11073792,0.74883974,0.66341645,-0.051124338,0.25712037,-0.33989906,-0.29406285,-0.6932161,-0.28929237,-0.1279478,-0.37189525,-0.4226249,0.004201457,-0.48777753,-0.8140116,0.58164006,-0.039826594,0.14095278,-0.0041970722,0.20262651,0.47147048,-0.11047186,0.0028124396,-0.15521559,-0.22038577,-0.5346464,-0.27683535,-0.7022545,-0.71008044,0.062422164,1.1230365,-0.15201548,-0.10951766,0.107605174,-0.12390341,0.16171122,-0.0101823285,-0.08306558,0.16553299,0.41407317,-0.12028677,-0.7341524,0.31324053,0.06761247,0.011471946,-0.5303277,0.13583595,0.63058203,-0.597388,0.41172817,0.37276697,0.10925056,0.07895529,-0.4676444,-0.06836802,0.062859684,-0.23461658,0.6184139,0.18187052,-0.5229805,0.5841044,0.45957977,-0.1936485,-0.92866147,0.40600216,0.08828328,-0.17667682,-0.1886813,0.24882373,-0.024088949,-0.029673757,-0.30820185,0.08622379,-0.48131114,0.28124565,0.35825938,-0.061743803,0.36745334,-0.26729003,-0.25340256,-0.6905452,0.16214883,-0.5503806,-0.17395964,0.18328269,0.041106045,0.019604731,0.082232684,0.16238788,0.4805307,-0.22468038,0.10285151,-0.017888643,-0.21148491,0.3380402,0.4454913,0.3171479,-0.607056,0.5354024,-0.119355515,-0.15936193,-0.103248544,-0.026202422,0.64383394,0.21649964,0.22639458,0.12139503,-0.08568726,0.22429335,0.66953313,0.05957594,0.42400986,-0.061743736,-0.2647403,0.12464081,0.173993,0.24924242,0.14972349,-0.5251728,-0.12273117,0.106848955,0.104491696,0.51261073,0.12375878,0.37403643,-0.0117866425,-0.42539254,0.0010055285,0.05595319,-0.23353758,-1.3679272,0.5101995,0.2024255,0.78379,0.60941887,-0.07901084,0.054283045,0.5749655,-0.12608641,0.28336906,0.33682722,-0.092303,-0.56350106,0.57602584,-0.71581674,0.2882563,-0.10420859,0.1410575,-0.009975071,0.09160344,0.33575362,0.7623726,-0.11770995,0.18565272,-0.1747688,-0.18007614,0.10436301,-0.25565535,0.103374474,-0.38512015,-0.25739288,0.61867255,0.4302876,0.33319375,-0.24443501,-0.0063125696,0.14319667,-0.11743276,0.15431398,-0.057813384,0.0772323,0.018249536,-0.62588215,-0.37793243,0.47649837,0.16340238,0.039940946,0.008920386,-0.38022688,0.18037164,-0.14496167,0.0062564462,-0.13012658,-0.54625314,-0.12133275,-0.34112805,-0.24767676,0.2801756,-0.10709107,0.1961945,0.15489593,0.183792,-0.45645413,0.23486793,-0.060793154,0.74731946,-0.17967851,-0.1426555,-0.38451743,0.19241704,0.24019426,-0.3330243,-0.20241873,-0.114957705,0.08429216,-0.53088975,0.5311335,-0.121205434,-0.36668733,0.33024198,-0.1459177,-0.20862797,0.5351223,-0.32723758,-0.14194568,0.16726997,-0.13526385,-0.13295425,-0.21063852,-0.074215375,0.12364962,0.15387417,-0.056263976,-0.20883426,-0.18133911,-0.09906908,0.55449986,-0.034634087,0.363932,0.5250805,0.12499833,-0.56252116,-0.10490906,0.23900151,0.49729097,-0.0006201826,-0.07706905,-0.3766813,-0.38094088,-0.3018663,0.16469367,-0.18712887,0.1982541,0.10457156,-0.3922218,0.8249459,0.28560928,1.3343024,0.044970617,-0.28924483,0.08792336,0.45943016,0.10189337,-0.022838023,-0.49097782,0.8034469,0.5996519,-0.20851144,-0.08147007,-0.4475213,-0.14176244,0.18330702,-0.29057068,0.081415996,-0.12081801,-0.6354636,-0.5538856,0.33521032,0.3670527,0.098927006,-0.12212902,0.005339101,0.15741602,0.03378948,0.41776088,-0.4511478,-0.14278826,0.2459788,0.2852576,-0.02686239,0.06805973,-0.59983814,0.41500285,-0.5535377,-0.029408373,-0.21762724,0.19271731,-0.0075684637,-0.27893198,0.22631392,-0.1728106,0.32148758,-0.2657426,-0.4695487,-0.20752159,0.4932028,-0.02349351,0.1292718,0.81911826,-0.30254567,0.07849406,-0.0102658495,0.6507214,1.3171916,-0.2409753,0.119210266,0.3343367,-0.12051056,-0.5227331,0.250262,-0.27417266,0.049789585,-0.15738943,-0.35175762,-0.58839464,0.28609577,0.14777304,0.049011778,-0.057101276,-0.6690514,-0.30355403,0.39460266,-0.30946317,-0.27752906,-0.34359163,0.15097596,0.5926835,-0.33754903,-0.34327602,0.13805723,0.3900475,-0.11368032,-0.5729352,-0.14913228,-0.2871392,0.35934526,0.40133113,-0.4258793,0.025387136,0.1778894,-0.48499024,0.28737068,0.18711114,-0.33225876,0.042448543,-0.25904277,0.008726031,1.0055988,-0.13098311,0.11874038,-0.4955399,-0.4313391,-1.0515406,-0.3454129,0.4232963,0.21246657,-0.016991425,-0.67989564,-0.05344806,-0.28802478,0.039112017,0.11819378,-0.35237795,0.32598948,0.15395218,0.6715691,-0.22191483,-0.6123781,0.04854154,0.12338349,0.001405701,-0.5008192,0.61426705,0.0693547,0.8141793,0.11205638,0.12138124,0.3170588,-0.5937315,-0.021878751,-0.25134543,-0.2619084,-0.74588823,0.14190456,506 -73,0.34157935,-0.023922686,-0.606838,-0.06673883,-0.076514125,0.24658781,-0.09421153,0.55009604,0.13826074,-0.4114552,-0.2023406,-0.05154179,0.06869525,0.16960065,-0.16511229,-0.40778053,-0.08105531,0.14820513,-0.49626762,0.50523967,-0.31743354,0.15948498,-0.1411955,0.37607566,0.06051261,0.27799812,-0.03243781,-0.1342978,-0.24768128,-0.013453372,-0.046368472,0.5576168,-0.31858087,-0.04153593,-0.2168766,-0.18663603,-0.0033457354,-0.38407332,-0.38675952,-0.6125736,0.27401355,-0.7777752,0.45928875,0.027890973,-0.2531763,0.3865473,0.082051456,0.13654232,-0.20181039,-0.11271596,0.114402026,-0.060320348,-0.02227594,-0.20044675,-0.23711443,-0.35444692,-0.49171883,0.07627821,-0.39557108,-0.0718357,-0.22084403,0.1259596,-0.2837754,-0.096698105,-0.11620523,0.41359806,-0.5014896,0.2064957,0.1305733,-0.059807204,0.14695969,-0.72850806,-0.15017025,-0.088214,0.2311876,-0.25626338,-0.07343424,0.21707411,0.3450745,0.47056097,-0.16001034,-0.039211754,-0.43206042,0.036354307,0.13694014,0.42253518,-0.31067625,-0.49435723,-0.005742319,0.10118528,0.14469868,0.11951689,0.11065602,-0.14254785,-0.19999766,-0.1044385,-0.15003242,0.25288478,0.5065657,-0.28659767,-0.2947607,0.42845938,0.49867266,0.2311281,-0.15777661,-0.14926551,-0.015509626,-0.4046049,-0.100613,0.07163233,-0.17748138,0.5095337,-0.06199587,0.18784921,0.5331971,-0.03454249,0.11536198,0.093470015,0.16272892,0.086436056,-0.23424923,-0.0057746675,0.046145722,-0.2248755,0.1181921,-0.082236305,0.57102776,0.08271201,-0.6587555,0.35667786,-0.47368288,0.09789752,-0.06081073,0.43766886,0.582811,0.32894617,0.15525448,0.4986275,-0.25108805,0.046744443,-0.055290103,-0.2698717,0.12110754,-0.047518287,-0.11918993,-0.5910953,0.11654732,0.023602467,-0.101889834,0.13974035,0.22135891,-0.4853893,-0.10693413,0.2622011,0.85471946,-0.2939383,-0.1965149,0.54653037,0.92094964,0.6760081,-0.03962151,1.1542281,0.11625635,-0.11581996,0.31722325,-0.47994307,-0.6787537,0.17615739,0.3177692,-0.28109342,0.26844883,0.18117365,-0.051123302,0.4253009,-0.34890622,-0.004456859,-0.24720046,0.16616261,0.17697653,0.01785085,-0.3443696,-0.2871576,-0.1560046,0.026296176,0.16008289,0.24121475,-0.22321065,0.1939906,-0.017104715,1.7335783,-0.045002766,0.10295726,0.11129656,0.36502355,0.16687551,-0.009994863,-0.007945754,0.4733106,0.16557568,0.06051163,-0.43050998,0.1779605,-0.14241487,-0.57666993,-0.12406877,-0.32881042,-0.096191764,0.09478017,-0.51903003,-0.09574711,-0.19645111,-0.33008724,0.45503128,-2.9099863,-0.08496471,-0.08675025,0.42122355,-0.21980652,-0.41660067,-0.3360968,-0.35979056,0.35964102,0.26749936,0.46349797,-0.6444826,0.36007625,0.18874864,-0.44916293,-0.10241818,-0.53386587,-0.1884939,0.035470165,0.27754843,0.021465996,0.021886382,0.16099903,0.08124321,0.34349436,-0.17788845,0.10415368,0.28439653,0.39128327,-0.008542702,0.30713493,-0.15201893,0.5395478,-0.1547949,-0.2802233,0.2803898,-0.38075966,0.38325173,-0.091581784,0.13933809,0.27442282,-0.32244253,-0.863032,-0.544452,-0.08379724,1.2983624,-0.13540016,-0.32243136,0.18617995,-0.33480442,-0.20663804,-0.1621324,0.46406096,-0.16447984,-0.14708519,-0.84204054,0.12153278,-0.1825875,0.19419253,-0.049948473,0.003869757,-0.38433385,0.6170863,-0.057538517,0.5176301,0.3528072,0.18967009,-0.09242091,-0.31395227,-0.031619254,0.8220685,0.39414954,0.08096506,-0.15190053,-0.28910798,-0.28629836,-0.0005709864,0.11649657,0.54788125,0.38296035,0.036579113,0.19949421,0.2664249,-0.0039080624,0.057572458,-0.17758858,-0.2756489,-0.07416308,0.050982174,0.4599828,0.63963956,-0.39821336,0.39004666,-0.15690488,0.31738335,-0.10463937,-0.37751183,0.3245914,0.77337426,-0.17769298,-0.2572422,0.59403706,0.5562748,-0.33229697,0.2899308,-0.47139144,-0.28449616,0.43024495,-0.23124646,-0.29044455,0.17729114,-0.2663445,0.03178668,-0.8857272,0.3558402,-0.2807519,-0.33465648,-0.56831044,0.020939395,-2.9039965,0.14404982,-0.22073679,-0.16693005,-0.1489835,-0.08954622,0.10178978,-0.6303819,-0.47500262,0.15580873,0.12733713,0.43709713,-0.0773471,0.16810647,-0.14337404,-0.29248032,-0.10531397,0.11913216,0.21655166,0.37410372,-0.17569637,-0.54652846,-0.07181366,-0.10051243,-0.24348855,0.18566993,-0.65546393,-0.37176737,-0.011885009,-0.5102558,-0.19579661,0.5107192,-0.44262478,-0.07331212,-0.21626224,0.09589228,-0.0851886,0.27680796,0.07799817,0.15398681,0.022237182,-0.041050643,0.09426908,-0.25572628,0.43900204,0.04692482,0.27931678,0.5199548,0.020512078,0.15231277,0.5064546,0.49500835,-0.08970583,0.75521123,0.5782895,-0.039026733,0.26596716,-0.25659895,-0.15687399,-0.4288153,-0.3548838,0.011191161,-0.40710792,-0.3923485,-0.05605556,-0.40254146,-0.8343761,0.4162707,-0.10254046,0.00082897395,0.0071487874,0.22313657,0.597272,-0.17586334,0.049345143,-0.06994296,-0.100469775,-0.4713808,-0.362175,-0.57031834,-0.33965775,0.07255953,1.0855725,-0.2587304,0.10264119,-0.0635017,-0.11536461,-0.14450729,0.1809677,0.01905346,0.16882476,0.58469087,-0.15733282,-0.52442145,0.3925706,-0.13319334,-0.2965153,-0.5525868,0.21022128,0.40449202,-0.6107421,0.67727,0.4080771,0.04868027,-0.07070542,-0.57324976,-0.1710342,-0.095227584,-0.22268689,0.26242954,0.19464919,-0.66827756,0.36689132,0.29329118,-0.24801345,-0.6767843,0.54896116,-0.041492265,-0.3291109,-0.027718272,0.3043273,0.062902644,-0.007173948,-0.18144764,0.13441932,-0.28224245,0.37969267,0.11959619,-0.07981466,0.3751038,-0.21035369,-0.10213128,-0.7110472,0.01627276,-0.4824239,-0.29085535,0.2998021,0.11275213,0.15333264,0.020666145,0.038776886,0.34757793,-0.5058874,0.043958515,-0.058672015,-0.21227194,0.2314901,0.25740254,0.48288548,-0.42099577,0.45630607,0.0059055574,-0.103597626,0.09503804,0.19101125,0.5185507,-0.011895396,0.24660324,0.06724633,-0.17201589,0.24670248,0.68486345,0.11083948,0.360709,-0.053197384,-0.26067847,0.32386485,-0.07884242,0.00371461,-0.12803613,-0.42871925,-0.0036641285,-0.124214396,0.21787284,0.47740746,0.12671465,0.37365618,-0.12875941,-0.26958188,0.046958845,0.26484263,0.2304119,-0.93619955,0.22884694,0.10317109,0.867447,0.27160847,0.089605644,0.011914946,0.5039022,-0.146534,0.14738247,0.45308238,-0.15117316,-0.5785719,0.529095,-0.6337825,0.37587747,-0.007462986,0.015689226,0.0648572,-0.010419935,0.26591274,0.7871925,-0.1830388,0.019254304,0.12056307,-0.41283715,-0.014745681,-0.25706574,0.098291434,-0.57861906,-0.22812992,0.46941617,0.62062484,0.31149408,-0.22140019,0.015657067,0.14664853,-0.09362446,0.11224674,0.11577102,0.29426485,-0.01986004,-0.68226326,-0.21307878,0.53406274,-0.029262774,0.1374754,0.029203907,-0.19446439,0.36444265,-0.10816142,-0.07810031,-0.03517254,-0.36330473,-0.0525829,-0.29827008,-0.43972746,0.4174324,-0.2018006,0.29573053,0.17298281,0.037171736,-0.32406533,0.4844776,-0.01624412,0.8007661,-0.040196735,-0.10087323,-0.48921725,0.24918208,0.22643107,-0.101514,-0.13375378,-0.39125037,0.13890451,-0.39964315,0.40228853,-0.09181355,-0.15479134,-0.05305604,-0.19405083,0.02339533,0.5003283,-0.013722625,-0.122898325,-0.15126473,-0.10288292,-0.44408137,-0.1388985,-0.09905031,0.26042143,0.23454323,-0.070431605,-0.17782465,-0.17942303,-0.11996086,0.31754813,0.12423085,0.33273625,0.45350683,0.11064408,-0.28281772,-0.16776676,0.2548172,0.5118124,-0.04644253,-0.11958513,-0.3270952,-0.43889675,-0.28446943,0.1229409,-0.21707338,0.2788066,0.23826706,-0.1155281,0.65457535,-0.01008147,1.1214718,0.15866926,-0.23649268,0.02888693,0.357108,0.011191264,0.01470547,-0.2852224,0.845538,0.53377587,0.1328396,-0.07638456,-0.33134606,-0.026962664,0.021973591,-0.087795116,-0.12373543,-0.09703592,-0.6209841,-0.3488757,0.15667583,0.14936286,0.2865191,-0.0642,0.15137559,0.11722288,0.0991855,0.21478803,-0.40652022,-0.25991008,0.23792392,0.28447548,-0.023545831,0.191135,-0.44626504,0.4242072,-0.42088312,-0.090425625,-0.22685549,0.1945417,-0.044930626,-0.2645342,0.11925585,-0.2045081,0.38098627,-0.3924472,-0.2552952,-0.26329666,0.46020013,0.13902307,0.09864537,0.4811896,-0.19148669,0.050597217,0.011634536,0.5209958,0.87277603,-0.2524661,0.07355094,0.3919471,-0.23806642,-0.70445293,0.2306765,-0.24892384,0.20982939,-0.16221917,-0.12909405,-0.536921,0.39143467,0.07909874,-0.026850767,-0.1363773,-0.42237455,-0.095541745,0.18998966,-0.33815545,-0.17099628,-0.22000827,0.04333123,0.6225916,-0.26319906,-0.29409933,0.065678984,0.24645203,-0.13362908,-0.43098128,0.03533683,-0.4224137,0.2454951,0.1260989,-0.25707224,-0.15720078,0.11166128,-0.297859,0.20532468,0.28550017,-0.22586803,0.024189103,-0.26645386,-0.023769952,0.8902818,-0.1386474,0.16303535,-0.4628289,-0.44162938,-0.7596909,-0.22960547,0.32654655,0.06742707,0.024761844,-0.6873275,0.01617793,-0.12898965,-0.33389673,-0.18967474,-0.3390442,0.43482065,0.07929659,0.15486851,-0.2739867,-0.6001564,0.12658358,0.059300013,-0.16198337,-0.50946647,0.43244886,-0.035971396,0.97465044,0.058645286,0.13327631,0.34830558,-0.32875365,-0.16424775,-0.19363579,-0.15451927,-0.6150231,-0.051552847,509 -74,0.59429115,-0.055924278,-0.7033105,-0.035893563,-0.32566503,0.16779576,-0.45581,0.19517066,0.4509099,-0.44612184,0.040565617,-0.061961576,-0.0014912598,0.24247514,-0.12562767,-0.4640767,-0.095932364,0.18726453,-0.54490685,0.68458486,-0.48155266,0.22398046,0.27984,0.39683178,0.0831654,0.12864453,0.16150501,-0.20623766,-0.18533832,-0.23714355,0.14391285,0.15175493,-0.64948523,0.21334395,-0.26840943,-0.22707218,-0.07524197,-0.44402152,-0.34291595,-0.72441405,0.23849678,-0.76196766,0.64740616,-0.011388354,-0.33862948,0.12654427,0.19614702,0.070390105,-0.19774696,0.07737994,0.23548174,-0.35212725,-0.63210905,-0.12369519,-0.1369028,-0.4386711,-0.6547485,-0.1112683,-0.60848236,0.18786272,-0.39044905,0.337729,-0.3921489,-0.0419408,-0.20959745,0.4813521,-0.45942312,0.15423574,0.09130153,-0.21590386,0.06845897,-0.62818253,-0.056827966,-0.029956017,0.23976383,0.2961538,-0.20757012,0.11795701,0.28431427,0.5760829,0.19834238,-0.36599743,-0.4797525,0.025034515,0.048265412,0.38418984,-0.21852882,-0.17369884,-0.17202915,-0.025683448,0.5529057,0.31171793,0.010610057,-0.30190012,-0.07751022,-0.15279193,-0.2852039,0.38924408,0.6119039,-0.26315925,0.011911824,0.40675336,0.36143637,0.21186496,-0.2294138,0.14759272,-0.1661661,-0.57919985,-0.113695085,0.10676515,-0.11280028,0.42351478,-0.112173446,0.34306583,0.59590095,-0.106886804,-0.19637859,0.15539177,0.074024096,0.12194196,-0.3281684,-0.1935342,0.37607944,-0.58408755,0.08480912,-0.3333671,0.5958689,-0.13284087,-0.85238314,0.3771259,-0.36626163,0.2011484,0.14254332,0.72821236,0.999197,0.66497433,0.23321256,0.94015896,-0.35810316,0.12401199,-0.18854815,-0.3171002,0.3164052,-0.029423699,0.47083795,-0.56091124,-0.108346716,-0.1045295,-0.18023466,0.02693653,0.8530592,-0.48966786,-0.20955299,0.15498537,0.7025744,-0.23535222,-0.10000898,0.88079405,1.0939652,1.0701774,0.048291054,1.2450148,0.30534405,-0.16142772,-0.2622923,-0.24390173,-0.92180836,0.20411292,0.28620666,0.43825567,0.3041661,0.27433023,-0.13452137,0.53813124,-0.35199064,-0.27583212,0.0149623975,0.44167817,-0.057439517,-0.12534457,-0.40429187,-0.18841875,0.17445248,0.022418475,0.22943616,0.38291246,-0.121629745,0.45847416,0.07840437,1.5685436,-0.16055328,0.08643058,0.13677007,0.22812274,0.23723432,-0.082048595,-0.05205709,0.3344913,0.44513866,0.006215574,-0.44091392,-0.011735849,-0.26269567,-0.47092357,-0.19512776,-0.31968987,-0.23735337,-0.31684533,-0.2233644,-0.24103497,-0.048861083,-0.6107954,0.25727782,-2.7214353,-0.10711194,-0.10794976,0.26394832,-0.16957672,-0.32505554,-0.15055601,-0.44629246,0.65486383,0.3006161,0.55312634,-0.6282548,0.518124,0.54532015,-0.65121716,-0.04841967,-0.86060417,-0.15974651,-0.22512189,0.45648316,-0.04699749,-0.46687424,-0.078938,-0.03736265,0.6194781,-0.028132048,0.13201074,0.5673267,0.47262657,-0.19352224,0.4193422,-0.1271864,0.6240632,-0.2986945,-0.24280035,0.37133452,-0.401689,0.25957435,-0.48243994,0.0862086,0.4469136,-0.35544744,-0.7151343,-0.39827558,0.1444657,1.0792215,-0.42121997,-0.5966895,0.17457198,-0.40497988,-0.1646719,0.25783408,0.60913414,-0.12700294,-0.034371294,-0.8381989,-0.16988534,-0.055483736,0.13418561,-0.09420976,0.19315562,-0.54252666,0.8197991,-0.106484674,0.59738827,0.42461756,0.3165979,-0.25543788,-0.2981287,0.21051735,0.9344827,0.37773976,0.014676617,-0.27912593,-0.19480552,-0.11519421,-0.33309484,0.012179827,0.7007722,0.5482773,-0.12710553,0.14071879,0.30431962,-0.27228263,0.0140062645,-0.20519868,-0.36546153,-0.28263658,0.05759711,0.5889472,0.7627771,0.043059662,0.5340115,-0.004652027,0.29645765,-0.13457969,-0.59021974,0.57765085,0.6371213,-0.27929282,-0.2028428,0.5784392,0.29176608,0.011857361,0.62172437,-0.59404504,-0.43071026,0.25010154,0.008681687,-0.4408834,0.3270262,-0.4522758,0.029241465,-0.8929063,0.1815297,-0.34464556,-0.6520222,-0.6822798,-0.23213989,-2.617296,0.10191874,-0.3349041,0.0010177772,-0.17004858,-0.11196635,0.26471484,-0.45180142,-0.64120877,0.10188027,0.21728416,0.5480944,-0.18721053,-0.03510474,-0.21670283,-0.44892353,-0.3230601,0.26151276,0.13854755,0.21286127,0.039734643,-0.41342407,-0.021547372,-0.20724453,-0.13606998,-0.17063117,-0.58247685,-0.25711495,-0.04817173,-0.44047368,-0.31946254,0.69964206,-0.39590958,0.08514185,-0.34308058,0.08145752,0.09448248,0.18884407,-0.15056428,0.22882888,0.06820454,-0.15248072,0.0048172977,-0.29666752,0.2617179,-0.031226201,0.3665784,0.5989737,-0.10303074,0.15462402,0.4800384,0.7786517,-0.14283903,1.1348684,0.46918643,-0.11244486,0.1951659,-0.10630394,-0.20633027,-0.6904177,-0.17363587,-0.040764857,-0.61227053,-0.33059385,0.020194769,-0.481786,-0.8493649,0.58732766,0.1950663,0.056336366,-0.055031568,0.47732493,0.5633157,-0.19578591,-0.06306833,-0.15368693,-0.34366554,-0.41731688,-0.27960625,-0.81282985,-0.51916677,-0.12881483,1.1972195,-0.12404098,-0.14500824,0.11799263,-0.3365607,-0.044016417,0.2180633,0.10375649,0.1539774,0.4133653,0.18189305,-0.679309,0.49850917,-0.24603051,0.095022395,-0.70336944,0.28814477,0.58961606,-0.75144863,0.41545478,0.482483,0.23154083,-0.19463576,-0.7882138,-0.18497205,0.15822837,-0.13892512,0.49200666,0.36289865,-0.8303683,0.7303865,0.27769613,-0.14302516,-0.8055819,0.25000358,-0.0019366089,-0.3022324,-0.027120396,0.3502926,0.09276549,0.17684597,-0.41173202,0.26539776,-0.41058356,0.5630485,-0.0058521964,-0.27025875,0.3287072,-0.15925932,-0.25375038,-0.8003937,-0.07231979,-0.45579273,-0.34301305,0.23788583,0.14597799,0.14606068,0.020649455,0.22551352,0.51020455,-0.41760284,0.12868343,-0.51312494,-0.32030517,0.5098387,0.5891497,0.3213219,-0.38337085,0.6447078,0.050053064,-0.25877854,-0.136167,-0.038910724,0.3768948,-0.08206052,0.49398655,-0.055373106,-0.15645707,0.30968845,0.7926107,0.081880316,0.30656856,0.10633649,-0.1438826,0.37870586,-0.09451027,0.15256603,-0.22143261,-0.63096553,-0.14791203,-0.2013728,0.2476597,0.48913652,0.21070407,0.57667065,-0.14817084,-0.046677716,0.1044647,0.12506013,0.16728783,-1.1045251,0.35436827,0.18292674,0.72681427,0.46651977,0.000892777,-0.035896644,0.7158251,-0.2969066,-0.026805306,0.41531307,-0.0038238093,-0.21161738,0.5641379,-0.84094983,0.3718341,-0.2610937,0.10079077,0.17527558,0.08250446,0.47905806,0.99269366,-0.2534274,0.13432029,-0.047868386,-0.2723496,0.12176722,-0.110445835,0.06329052,-0.48891923,-0.3739506,0.77245283,0.30137426,0.5632506,-0.22898757,-0.047956653,0.3063481,-0.19299802,0.2846247,0.048995722,-0.0018952321,-0.11999667,-0.4274829,-0.16550678,0.5076617,0.08832002,0.109888576,0.10309323,-0.10640568,0.31634814,-0.14718215,-0.19663727,-0.06045807,-0.5607773,-0.04529698,-0.34805736,-0.53223705,0.5977751,-0.030391209,0.25137037,0.17557883,0.035250593,-0.06771594,0.27906376,-0.014999688,0.78157187,0.092440456,-0.28556192,-0.056301106,-0.0706289,0.20738672,-0.27925476,-0.12353979,-0.18314098,0.2420198,-0.6867301,0.38930798,-0.45627084,-0.4414689,0.20494826,-0.22922425,-0.00894168,0.47076082,-0.14114043,-0.16173705,0.23834842,-0.12976688,-0.18440579,-0.39483997,-0.40537623,0.17222454,-0.17542934,-0.042704783,-0.12318621,-0.07580116,-0.12365899,0.38556674,0.17218211,0.017583646,0.42508113,0.1884771,-0.43836358,0.050945487,0.43224412,0.60804194,-0.036212824,-0.083694965,-0.55041504,-0.36634555,-0.4413026,0.26819074,-0.06937688,0.33947727,0.08488926,-0.37819105,1.0618993,0.10726053,0.9910326,0.061405025,-0.32011998,0.08815082,0.6761754,0.06300612,0.07770229,-0.32341993,0.9440323,0.553918,-0.12242288,-0.0075032692,-0.62293833,0.021619286,0.4218481,-0.3618033,-0.15965414,-0.07919012,-0.73053193,-0.102252655,0.15544473,0.16597873,0.063663445,-0.23602793,-0.004201226,0.17262188,0.25160813,0.17690468,-0.6012459,-0.1304853,0.46128935,0.20411535,-0.086057,0.17669556,-0.44855917,0.2289544,-0.5983783,0.10883327,-0.3063901,0.109912656,-0.079941444,-0.19396386,0.4581118,-0.010169897,0.2851074,-0.37847218,-0.31825185,-0.08604437,0.2900256,0.2395827,0.3374486,0.6457684,-0.31839967,-0.085732155,0.1572047,0.58116335,1.2233826,-0.34378463,0.19005656,0.2916345,-0.37135664,-0.775524,0.26546726,-0.39070997,0.09868758,0.033952985,-0.53639483,-0.44756836,0.2226884,-0.005451534,-0.05636154,0.05626699,-0.44868276,-0.14510721,0.23378861,-0.34745663,-0.12382526,-0.1915454,0.026057068,0.81967545,-0.28699547,-0.2967317,-0.07960458,0.28872132,-0.111159146,-0.5254252,0.13314213,-0.45970762,0.2220383,0.24403065,-0.3444858,0.0030437186,-0.046296027,-0.75437516,0.025721382,0.36121702,-0.29326633,0.03972645,-0.443063,0.055465948,0.8753252,-0.083000794,0.22710901,-0.44979206,-0.49696285,-0.81589746,-0.0934196,-0.06282313,0.0032953247,-0.017924191,-0.5552939,-0.09080522,-0.35938096,-0.123325415,-0.0449121,-0.64806247,0.39566302,0.15443835,0.39127672,-0.27824238,-0.9802826,0.045726717,-0.005224675,-0.24352297,-0.38576564,0.6193359,0.044900343,0.92835563,0.17066541,0.055161633,0.13634112,-0.6519726,0.1465154,-0.27087086,-0.2760916,-0.82671416,-0.02734004,524 -75,0.32526845,-0.10144975,-0.6639423,-0.047369216,-0.25075015,0.1953845,-0.19068736,0.33284485,0.16297859,-0.367813,0.030794542,-0.13061056,-0.014745977,0.38845187,-0.013777081,-0.5308367,0.028261295,0.21221833,-0.6510348,0.40963054,-0.51123303,0.343443,-0.11783797,0.17266583,0.15416974,0.29586965,0.17970422,0.02011276,-0.13056499,-0.0018653534,0.08467642,0.20458874,-0.39443463,0.23585421,0.003190089,-0.301055,-0.07686164,-0.34491426,-0.35179454,-0.5336864,0.289062,-0.5591303,0.5852437,-0.20747778,-0.15933767,0.2891776,0.171672,0.23713282,-0.2552393,-0.08329907,0.058771566,-0.28095508,-0.23634312,-0.3167987,-0.2123224,-0.22963497,-0.54898256,0.06823331,-0.54237664,-0.09197006,-0.3031274,0.1087034,-0.3383334,0.121926725,-0.06859459,0.51842993,-0.3911151,0.10904503,0.11972511,-0.20853546,-0.07198855,-0.62431145,-0.033397384,-0.04586863,0.0995339,-0.20698312,-0.27953976,0.3381037,0.17259628,0.44039628,-0.043986592,-0.11048412,-0.4192029,-0.17117628,0.07337201,0.5852814,-0.16659299,-0.11517004,-0.15886556,0.014113128,0.09367801,0.06622795,0.044898957,-0.22041011,-0.15119544,0.059695676,-0.121510066,0.32360736,0.49265128,-0.44315463,-0.18775493,0.49363256,0.5948058,-0.03999634,-0.10764932,0.10366977,-0.10765182,-0.48740095,-0.19263917,-0.020560972,-0.058915474,0.3886137,-0.17798045,0.20677158,0.5234543,-0.27495396,-0.12882599,0.24148151,0.16366082,0.061233673,-0.245301,-0.12935318,0.19458619,-0.45942914,-0.07180007,-0.0899343,0.6189029,0.15157513,-0.60385406,0.35059324,-0.45464808,0.13182035,0.01982373,0.5914477,0.7818122,0.46823406,0.17907497,0.72575885,-0.31565684,0.14341629,-0.12867843,-0.31313205,0.038081557,-0.08184837,-0.117880814,-0.51247567,0.16295813,0.10943897,-0.013257029,0.29279897,0.5382198,-0.43896243,-0.100706175,0.09932619,0.6776245,-0.3433539,-0.21907452,0.7117421,1.0298043,0.9382893,0.025255416,1.1699511,0.14938113,-0.21600297,0.092810735,-0.27341676,-0.7101183,0.22291473,0.26328698,-0.123923644,0.33361536,0.15481503,-0.029305026,0.3863079,-0.40581757,-0.025364451,0.0053738104,0.2407232,0.01796294,-0.042859968,-0.36055022,-0.26238933,0.08555652,0.032278605,0.20595077,0.33415642,-0.42202932,0.41635787,0.09419788,1.5516872,-0.041093785,0.16260675,0.13760756,0.29352295,0.14790845,-0.24890675,-0.21875905,0.26459473,0.31962022,0.08805053,-0.49257246,0.034157522,-0.17407314,-0.4928072,-0.1176061,-0.31692886,-0.078808,-0.18501276,-0.4192653,-0.21862376,-0.052241717,-0.5642253,0.42004097,-2.723856,-0.18756893,-0.0744454,0.3374355,-0.11614647,-0.3947353,-0.28863296,-0.46889764,0.17617218,0.3722633,0.41971177,-0.475922,0.34987172,0.26871604,-0.42100975,-0.15438277,-0.50682664,-0.0030116625,-0.09931369,0.2274795,0.0414119,-0.110512644,-0.010888159,0.1833509,0.49681938,-0.31156683,0.049332842,0.31903327,0.24931511,-0.012067404,0.3431378,-0.028422505,0.659976,-0.47294784,-0.28829777,0.429056,-0.5321865,0.062672846,-0.06705813,0.19837159,0.36228955,-0.49966407,-0.84978783,-0.4700501,0.05164349,1.3255169,-0.25688595,-0.23780414,0.26629508,-0.3761394,-0.44135696,-0.10653433,0.36021,-0.14304177,-0.112642355,-0.7500033,0.07021873,-0.18043756,0.24937037,-0.12167309,0.0010601319,-0.37776482,0.49690711,-0.057896398,0.71192336,0.31048605,0.17083436,-0.3684773,-0.23263685,0.21513267,0.96593237,0.39072645,0.14393345,-0.18296659,-0.17364258,-0.25483862,-0.14200568,0.21902862,0.5013536,0.6207731,0.025576435,0.117153,0.29901415,-0.019573372,-0.042400375,-0.2127408,-0.21733828,0.03149733,0.07345317,0.6003015,0.43151295,-0.05741708,0.37925044,0.0490328,0.30129567,-0.26997158,-0.5349347,0.32908878,0.8917818,-0.17892274,-0.45418978,0.43691495,0.5253706,-0.2807163,0.478807,-0.5261634,-0.38434616,0.24239507,-0.3151205,-0.17360248,0.17701684,-0.32384968,0.16083728,-0.70111144,0.18348911,-0.018982448,-0.6873566,-0.5398575,-0.20668797,-3.3466072,0.04986553,-0.13181515,-0.10657129,0.054792494,0.023178335,0.114400834,-0.42922533,-0.47084057,0.008435257,0.19417672,0.6701287,-0.07382832,-0.086353466,-0.10392146,-0.39206713,-0.2279025,0.1549448,0.077782914,0.30733567,0.0009456761,-0.41325897,-0.0033193715,-0.29206192,-0.40048173,-0.093787074,-0.48989844,-0.33964586,-0.12738073,-0.5140064,-0.32857266,0.6572802,-0.4532056,0.13269442,-0.2660115,-0.0150772,0.043154128,0.30387637,0.03481394,0.050037537,0.15680647,-0.12705731,0.18954141,-0.38416964,0.2388382,-0.025898237,0.23021276,0.5844489,-0.16987783,0.088541664,0.5387726,0.64760786,-0.03212945,0.9571339,0.40560704,-0.103998184,0.33208346,-0.26550847,-0.20800102,-0.3662871,-0.31241283,0.07586433,-0.46156758,-0.32560337,-0.06458337,-0.3649884,-0.84462905,0.45873222,-0.026106343,0.09205688,0.034269758,0.3753695,0.40667132,-0.20459563,-0.055665366,-0.07945424,-0.14497003,-0.29755592,-0.37821257,-0.67542726,-0.54790026,0.100091085,1.2989877,-0.21618266,0.06258691,-0.004994899,-0.22531143,0.018255979,0.17190626,0.2750144,0.42602807,0.3868728,-0.18652567,-0.5210935,0.28878176,-0.5143623,-0.18080415,-0.5604231,0.1059899,0.5020606,-0.5848162,0.39238268,0.3504184,0.25503865,-0.045754142,-0.48988473,-0.0065757334,0.021238148,-0.21255279,0.45967537,0.30229783,-0.8831317,0.5468966,0.24952477,-0.34310478,-0.70461285,0.44687876,-0.02704601,-0.058233026,-0.034993906,0.40145367,-0.034318954,-0.053889148,-0.27234024,0.02740432,-0.4068439,0.32459465,0.20302492,0.053552985,0.37498492,-0.3420652,-0.14586985,-0.5249008,-0.13039425,-0.45218498,-0.1829633,0.07696217,0.048145875,0.23130043,0.17255342,-0.09264386,0.3778761,-0.35452807,0.061354313,-0.18803306,-0.36845538,0.28999227,0.41110602,0.34617478,-0.2924903,0.5733039,-0.033450194,-0.008921862,-0.12865682,0.008139454,0.49856657,-0.012663737,0.37826344,0.0856424,-0.09019528,0.2618704,0.8944862,0.2513649,0.2325426,0.073913805,-0.3067779,0.02829101,0.058847472,0.13909593,0.08738397,-0.40918037,0.02895065,-0.15289424,0.2292107,0.5363481,0.21977563,0.55311465,-0.18309367,-0.34738404,0.050505616,0.12407571,-0.069697335,-1.3746457,0.3344848,0.09370223,0.7363719,0.4263652,0.111288905,0.05781661,0.43806654,-0.29348826,0.20440075,0.23980534,-0.26760483,-0.35414982,0.488194,-0.79682803,0.6063173,0.06755085,0.017839843,0.15147997,-0.052594446,0.47651994,0.87675184,-0.11418027,0.016982058,0.23817801,-0.2270203,0.2011309,-0.32348704,0.06646,-0.5705452,-0.20914519,0.7534969,0.34294578,0.43889648,-0.15921953,-0.035880253,0.05420556,-0.19902213,0.16779152,-0.03194139,0.23194247,-0.22990659,-0.54678065,-0.21833004,0.40812993,0.14063305,0.19289063,0.22717986,-0.1237878,0.2965149,-0.046910085,-0.099315636,-0.11448746,-0.4614092,-0.026479661,-0.2575424,-0.5444343,0.27073416,-0.17950714,0.3045498,0.2720514,0.04767154,-0.50288314,0.42696726,0.23772223,0.82610476,-0.0322339,-0.15978532,-0.19229741,0.26250684,0.2703729,-0.20483619,-0.122742675,-0.48433942,0.14885195,-0.64737993,0.43026453,-0.16958839,-0.29793423,0.28376037,-0.08228508,-0.023374364,0.53157574,-0.10727183,-0.09891847,0.030004412,-0.051697824,-0.30689913,-0.2246782,-0.3149112,0.23402584,0.002598565,-0.09999849,-0.1990253,-0.106419556,-0.106682345,0.24921583,0.051671114,0.27070183,0.2835851,0.09521541,-0.32211894,-0.018417902,0.12281724,0.5477993,-0.0029652454,-0.15244283,-0.41684213,-0.36712205,-0.19304697,0.29687777,-0.066617094,0.25544536,0.18303156,-0.24448287,0.6788263,-0.20744804,1.0734968,0.10663144,-0.26261404,0.11049198,0.51853937,-0.00085695833,-0.08789933,-0.25695515,0.91550875,0.5266954,-0.105708666,-0.27629015,-0.38320687,-0.029229265,0.17536686,-0.23306158,-0.40695667,-0.107346945,-0.6178523,-0.36416098,0.19721733,0.17079407,0.24396339,-0.17530909,0.15721169,0.30242214,0.050663453,-0.03066133,-0.39740855,0.08460522,0.411836,0.24617986,-0.090816446,0.12501979,-0.4878365,0.3649771,-0.604018,-0.057965726,0.024162918,0.15326916,-0.11881991,-0.31214154,0.3177734,0.24061587,0.26935893,-0.22236478,-0.22911078,-0.2547738,0.48598397,0.026490834,0.045865834,0.68494266,-0.2519661,0.003636674,0.06984052,0.34577942,0.910621,-0.2109925,-0.0126285665,0.25873595,-0.31845582,-0.5961969,0.29930663,-0.34972262,0.15052831,-0.119972125,-0.25742692,-0.5281704,0.36930424,0.18600042,0.07923671,0.11025898,-0.44453585,-0.1475099,0.15150577,-0.31732532,-0.1559179,-0.36876535,-0.06517278,0.628386,-0.21396211,-0.21206895,0.20554945,0.4499949,-0.17908686,-0.58647555,-0.018298738,-0.38684368,0.2700679,-0.027790073,-0.19344401,-0.112088524,0.02751819,-0.36205292,0.25628042,0.3324346,-0.22451177,0.09679867,-0.23368557,0.01864621,0.72066045,-0.17730722,0.20765164,-0.48406988,-0.5583443,-0.9305092,-0.2364796,0.36233783,0.12004247,-0.022206372,-0.6404655,-0.006802369,-0.17639975,-0.28986073,-0.007468488,-0.47250152,0.38593483,0.027501876,0.18901014,-0.19028898,-0.8240031,0.08119241,0.13794275,-0.24096549,-0.43204802,0.40994185,-0.044460934,0.7507831,0.22461702,0.05808507,0.41808003,-0.5380412,0.13484575,-0.17839801,-0.102822155,-0.58610874,-0.014051076,525 -76,0.5299336,-0.119712055,-0.5737795,-0.053311445,-0.41182956,0.17510359,-0.20176855,0.32523298,0.31859055,-0.36602148,-0.050976016,0.1416305,-0.15879878,0.19739789,-0.18745393,-0.6125623,-0.051329203,0.10683901,-0.3770923,0.61481565,-0.38199753,0.4477176,0.0017060991,0.22286928,0.054519318,0.34081122,0.022426743,-0.0633907,-0.108002886,-0.30379945,-0.07283636,0.19389573,-0.6181721,0.30222642,-0.017400056,-0.28615868,-0.036709264,-0.36754194,-0.15282512,-0.6782506,0.22038195,-0.5611668,0.6040133,-0.0303232,-0.26990792,0.18015537,0.043270335,0.26199657,-0.079712406,0.015338529,0.2556057,-0.058472387,-0.28165781,-0.10058556,-0.06941734,-0.35668844,-0.477359,0.035257906,-0.39193398,0.019330544,-0.16242635,0.21245624,-0.25284824,0.00694409,-0.17970128,0.40852526,-0.32623643,0.101566374,0.09979515,-0.11396398,0.22202489,-0.65930724,-0.00828832,-0.1291128,0.18082853,-0.1156363,-0.23720872,0.26187408,0.3328086,0.47319594,0.10081493,-0.19507879,-0.35222626,0.01344084,0.20316112,0.41174063,-0.2750865,-0.3727646,-0.22281788,0.08966566,0.2571653,0.064957395,0.041535452,-0.41601783,-0.03711579,-0.14306049,-0.26417837,0.4188767,0.43055475,-0.3472445,-0.05336556,0.41983667,0.5937897,0.20717287,-0.07553825,0.016731502,-0.086637214,-0.46887338,-0.19459756,0.07650323,-0.055666573,0.33861327,-0.0918315,0.099876404,0.44913775,-0.12151457,-0.225276,0.22102669,0.037387922,0.033939272,-0.19244164,-0.1638228,0.17264512,-0.5594638,0.0027519874,-0.24586795,0.5599358,0.115016736,-0.7630632,0.27368742,-0.45707077,0.032116186,0.011316504,0.4711671,0.77113414,0.5067013,0.08981614,0.8627989,-0.4655012,0.049727976,-0.18809393,-0.35342547,0.15198202,-0.08450579,-0.10510534,-0.61389065,0.19950613,-0.07148476,-0.18233056,0.09051452,0.17855084,-0.595754,-0.029156156,0.116812065,0.6321983,-0.33506268,-0.031212322,0.65278727,1.1203363,1.0556722,0.07908062,1.3572732,0.09541459,-0.18834989,-0.02784653,-0.3098987,-0.68081677,0.28340447,0.3631249,-0.09165092,0.3315794,0.17721127,-0.032149762,0.38653147,-0.32814482,-0.11013037,-0.12659107,0.46685073,0.029283747,-0.115893364,-0.3467259,-0.21676062,0.064875275,0.18486893,0.022639103,0.19192791,-0.32170013,0.24293192,0.16805917,1.368526,-0.22372365,0.039139427,0.12507154,0.23586933,0.27426895,-0.21547568,-0.1001806,0.22344726,0.3091622,0.18514416,-0.4552368,-0.034451026,-0.17112724,-0.43854946,-0.13276312,-0.15246198,-0.15618712,-0.07285302,-0.2194378,-0.23030153,0.04291907,-0.26567686,0.5561055,-2.6145256,-0.035375386,-0.12944037,0.16665274,-0.11687632,-0.4942421,-0.11583814,-0.45468652,0.3447874,0.2750615,0.43203205,-0.63955665,0.36189806,0.42499927,-0.55995613,-0.13140196,-0.5077952,-0.13780625,-0.015981125,0.38037914,0.13276675,-0.16478245,-0.15644999,0.21765454,0.41689432,-0.14174774,0.09407386,0.3887563,0.33151776,-0.057755936,0.45439088,0.13652739,0.60886955,-0.13529415,-0.21663764,0.401533,-0.3360127,0.20480159,-0.07301368,0.14622858,0.3228651,-0.404427,-0.88190854,-0.7581035,-0.1558178,1.3306019,-0.19312441,-0.4430816,0.14779317,-0.23579833,-0.49175957,0.061932236,0.19030476,-0.072216675,-0.12885642,-0.8371941,0.07871011,-0.10232245,0.20316568,-0.075686365,-0.015154716,-0.6355525,0.7538853,-0.11825861,0.45718542,0.5377065,0.15713033,-0.11542064,-0.44370946,-0.08253458,1.0834823,0.54966515,0.025907632,-0.17029291,-0.13707021,-0.35342407,0.059329055,0.16347206,0.59071827,0.5090927,-0.037430447,0.04326486,0.15450318,0.01438003,0.06337915,-0.207477,-0.36049202,-0.05627147,-0.19084811,0.5899891,0.62258536,-0.07281919,0.4312031,-0.048147645,0.26466858,-0.007265631,-0.574181,0.4310481,0.9515383,-0.1519793,-0.29897207,0.73434365,0.37140027,-0.07399689,0.4428526,-0.4546788,-0.36601135,0.17827265,-0.10056832,-0.27594006,0.27127588,-0.24068148,0.09023104,-0.6171125,0.35193986,-0.32912964,-0.6620139,-0.42974293,-0.1559606,-3.032799,0.28250134,-0.12889653,-0.057874627,-0.012882199,-0.047814902,0.29702404,-0.5688583,-0.62223583,0.13196763,0.08143738,0.5048202,-0.14742705,-0.012888711,0.013036879,-0.37160277,-0.13330066,0.26481566,0.054294672,0.27153242,0.07492443,-0.3767238,-0.08485874,-0.10945335,-0.32313693,-0.000327399,-0.55964494,-0.52986073,-0.08391571,-0.43887672,-0.22871716,0.7235667,-0.48730248,0.03797582,-0.22294539,0.02821263,0.031575486,0.16993658,-0.15589263,0.07896264,0.004863739,-0.018450607,0.03686332,-0.22546867,0.30278265,0.10612109,0.27925617,0.3316208,-0.11380872,0.26339865,0.46751028,0.7395648,-0.10838328,0.94200724,0.43111598,-0.17446733,0.25965238,-0.14853062,-0.30368084,-0.5157283,-0.34504503,-0.023651712,-0.54552984,-0.24412231,-0.02347364,-0.35196114,-0.7982096,0.55354506,0.06546947,0.0030313283,0.011498272,0.27092236,0.5052166,-0.12783802,0.08484201,-0.16097902,-0.24026631,-0.44402874,-0.33209544,-0.5606233,-0.31974968,-0.015949491,1.2859938,-0.38026124,0.11450536,0.09765959,-0.16981411,0.09001225,0.03220187,0.017881092,0.16513127,0.41545427,-0.03348886,-0.6502037,0.3007602,-0.2352524,-0.029375408,-0.5362127,0.27261436,0.61824197,-0.62014925,0.34706858,0.34894323,0.18815178,0.035449825,-0.504827,0.0058782306,0.060712095,-0.3689076,0.597717,0.2628854,-0.6293486,0.45545888,0.36138952,-0.23488094,-0.73868126,0.42838562,-0.067826025,-0.19846858,-0.07284898,0.36229616,0.1696867,0.042342626,-0.19210558,0.1826947,-0.27599886,0.38217127,0.13025393,-0.09489293,0.061179493,-0.16972502,-0.20688528,-0.7708963,-0.03945017,-0.3885211,-0.40803194,0.13144824,0.045393802,-0.031531043,0.10190649,0.13244766,0.46465695,-0.3760162,0.0790125,-0.10928235,-0.30779716,0.45784575,0.47195402,0.37442935,-0.276602,0.47955823,-0.00022386573,-0.2037161,-0.22456895,-0.07807088,0.5182091,-0.027539417,0.2910819,0.07374756,-0.0045631714,0.29902285,0.6214487,0.05165613,0.25435895,-0.17903164,-0.31814954,0.07539787,0.01935316,0.24356024,0.045607165,-0.5108663,0.04246967,0.030812431,0.16539565,0.5788237,0.18051676,0.207048,-0.14307891,-0.33230293,0.035422537,0.14758949,0.032458715,-1.431038,0.34700432,0.038287267,0.78758645,0.64553094,0.010792816,0.14668858,0.5317235,-0.122686855,0.073112026,0.421969,-0.014765263,-0.29864383,0.28348494,-0.7699202,0.3339244,-0.07079777,0.11755325,0.121407524,-0.14102615,0.31238177,0.9925064,-0.14518136,0.03173295,-0.17511438,-0.19979914,-0.15427276,-0.26607943,0.09239873,-0.5214056,-0.41901842,0.75216484,0.44758558,0.49338982,-0.20934889,0.07988189,0.10095156,-0.15916465,0.16123754,-0.027408775,0.027896114,-0.05355698,-0.53268576,-0.13482954,0.58971983,-0.071901396,-0.018751284,0.03521783,-0.23152058,0.18831539,-0.059777766,0.0050517824,-0.04645495,-0.62583435,-0.19470438,-0.38353032,-0.2421973,0.2881024,-0.12502415,0.12900649,0.07851526,0.12995014,-0.2168689,0.28936344,0.25511765,0.7428379,0.118615836,0.011441879,-0.21915662,0.31024596,0.10478999,-0.15971951,-0.10259826,-0.15325254,0.20454764,-0.7553601,0.40368998,-0.03644833,-0.4071414,0.17138043,-0.039424144,0.055563435,0.42917594,-0.26785696,-0.23948863,0.092380166,-0.066878825,-0.0651666,-0.23543167,-0.12315134,0.07691464,0.158667,-0.16991606,-0.119924545,-0.21479985,-0.14691705,0.21711329,0.11517088,0.33029917,0.35752818,0.09453127,-0.518082,0.048589915,0.13845539,0.51389676,-0.06746194,-0.13587634,-0.3031754,-0.4953366,-0.3809603,0.21902698,-0.11901705,0.25715607,-0.09255629,-0.24157766,0.71612906,0.16115323,1.3393891,0.019933375,-0.30006862,0.042271502,0.5101028,-0.028231248,0.09351201,-0.39792675,0.99757624,0.6121471,-0.21930267,-0.12741299,-0.48013043,-0.052778408,0.07262147,-0.1757741,0.041683394,-0.09094004,-0.68105924,-0.38287205,0.2810238,0.21484277,-0.018767953,0.019336477,0.0059100688,0.21220498,0.05359085,0.32431838,-0.47253597,-0.031220905,0.24409948,0.27805462,0.053592555,0.058155067,-0.55720353,0.34522474,-0.503228,0.09225313,-0.17758746,0.04239578,-0.19841754,-0.12773491,0.14333218,-0.11728555,0.24770574,-0.4273508,-0.49343586,-0.20455985,0.41041967,0.021606125,0.05126465,0.66197026,-0.22676125,0.0945203,0.04521574,0.41208613,1.0293245,-0.2645388,0.033540823,0.3896476,-0.27334043,-0.4486019,0.016322471,-0.21603274,-0.06864646,-0.023515977,-0.32327998,-0.46038458,0.3616588,0.1070558,0.11396462,0.049514554,-0.6829914,0.024928167,0.33085746,-0.20537427,-0.1434924,-0.16441175,0.10756622,0.7183168,-0.39056206,-0.5766759,0.07027486,0.26363474,-0.19549254,-0.6590604,-0.14799032,-0.30990058,0.3605055,0.22161919,-0.3036175,-0.1939565,0.07573663,-0.44804156,-0.10100937,0.26036233,-0.30526096,0.025409443,-0.29492608,-0.067158096,0.7309532,-0.08963003,0.24139978,-0.46718943,-0.4512794,-0.8731165,-0.23194283,0.19312683,0.262052,-0.072356865,-0.6617424,-0.09092212,-0.26149896,-0.12394957,0.011563063,-0.38115793,0.4539492,0.14940977,0.3868367,-0.19805312,-0.891557,0.15100096,0.20842397,-0.028275289,-0.43262523,0.47060126,0.064499184,0.6522759,0.15599813,-0.001107309,0.18329407,-0.63325906,0.107636124,-0.1624769,-0.0767656,-0.7242565,0.11816088,539 -77,0.38083997,-0.14701307,-0.49127018,-0.18092112,-0.28758293,0.28221333,-0.0750658,0.41349486,0.27164468,-0.40781,-0.14123438,-0.09111164,0.027750038,0.36985835,-0.20197958,-0.39186412,0.017688446,0.046445593,-0.47010353,0.28682917,-0.45773557,0.3462428,-0.016566098,0.23271915,0.17578353,0.31513128,0.15808469,-0.20200843,-0.23642811,-0.090671375,-0.008980811,0.25754324,-0.3776862,0.22532547,-0.1456364,-0.26655984,0.05581682,-0.34106082,-0.28957263,-0.6825587,0.240331,-0.8821328,0.34166718,-0.102520004,-0.22528307,0.28743854,0.119667076,0.2417572,-0.10894889,0.05435502,0.2461097,-0.17559566,-0.15567002,-0.16032958,-0.21755946,-0.35029206,-0.45557564,-0.0347552,-0.38354796,-0.18662725,-0.18561628,0.29492718,-0.20621893,-0.024476554,-0.07256741,0.30345702,-0.47502214,0.14777231,0.14158696,-0.16492432,0.09961053,-0.5618205,0.03645142,-0.057957307,0.24909951,-0.24789906,-0.24480483,0.362677,0.26184875,0.32892498,-0.0075228307,-0.106154054,-0.44018558,-0.13299583,0.1851976,0.42855284,-0.142032,-0.311205,-0.13125363,-0.06231138,0.14598128,0.26038322,-0.051007524,-0.46425366,-0.099257484,-0.04722254,-0.19540161,0.34629184,0.5592688,-0.3090838,-0.3086341,0.48277408,0.6708342,0.101994455,-0.29922995,-0.0688176,-0.058169663,-0.5850347,-0.1259192,0.2551266,-0.08695202,0.5490763,-0.11505354,0.13471547,0.7353192,-0.4236738,-0.00051481277,0.13517922,0.18270804,-0.028941154,-0.26727647,-0.0835262,0.1322267,-0.5513489,0.06644823,-0.11739834,0.7162698,0.09687105,-0.71492034,0.28124347,-0.3776104,0.01309745,-0.21902874,0.52131975,0.58857054,0.42784256,0.13774353,0.7618528,-0.4433296,0.08670027,-0.20887548,-0.40787426,0.20794162,-0.13732621,-0.13673186,-0.44402257,0.058078013,0.10363793,-0.10347264,0.088661134,0.3143279,-0.59047,-0.13823223,0.18693931,0.59008455,-0.42417276,-0.11252594,0.57168883,0.8637125,0.849306,0.094247356,1.217708,0.2521461,-0.17037699,0.12320533,-0.37881008,-0.55022955,0.26070058,0.22309485,-0.00558953,-0.017127827,0.12471664,0.045555193,0.26187375,-0.4416361,-0.040497214,-0.21549708,0.39182305,0.14134416,0.06957278,-0.22793797,-0.2673188,-0.022742953,0.15862812,0.1643674,0.12539709,-0.38796198,0.19291109,0.102408126,1.699971,-0.05668494,0.08060767,0.03450686,0.31369773,0.16078933,-0.13584381,-0.07675749,0.42518198,0.3224901,0.103522554,-0.49287412,0.036874406,-0.22109818,-0.46796525,-0.13184072,-0.40804625,-0.09143464,-0.08758661,-0.41754878,-0.14236,0.04065818,-0.2428539,0.7108415,-2.7156549,-0.09887997,-0.02405239,0.28111824,-0.1937217,-0.3947448,-0.255688,-0.47592598,0.36376897,0.3236484,0.44663423,-0.64942825,0.20619127,0.34152055,-0.4342695,-0.1675535,-0.6790519,0.033838682,-0.07549137,0.2790833,0.15239799,0.026588462,-0.036784217,-0.012887694,0.48374352,-0.09240992,0.14907908,0.3696419,0.26511958,0.12423024,0.44960722,0.052053265,0.6104571,-0.24533755,-0.2662994,0.36855498,-0.3698551,0.3007195,-0.099745505,0.25472987,0.35895854,-0.27282476,-0.9464022,-0.7555714,-0.2253762,1.2197027,-0.22632894,-0.40480965,0.20615974,-0.19257557,-0.33908913,-0.013428215,0.3742708,-0.04232241,-0.04525057,-0.762587,0.08256009,-0.07813238,0.20838293,-0.13922319,0.017084055,-0.31849152,0.45358646,-0.12541224,0.36462694,0.31005785,0.2085307,-0.27587956,-0.4358378,-0.027684998,0.8325659,0.33008456,0.09797772,-0.09523983,-0.320354,-0.31337726,-0.14384997,0.18995953,0.45304766,0.6389687,0.051077705,0.035365455,0.15593961,-0.078622326,0.0095595885,-0.11790143,-0.29357067,0.004255846,-0.10194945,0.53506035,0.5000595,0.0108247325,0.518083,-0.12517434,0.27113837,-0.09146252,-0.55522585,0.33046386,0.7087182,-0.292354,-0.3240904,0.4341624,0.41032818,-0.25157338,0.392985,-0.63914007,-0.25728703,0.38391134,-0.1521574,-0.45473507,0.0557134,-0.29545307,0.1319246,-0.79272485,0.29075217,-0.10996759,-0.63021857,-0.45342878,-0.1619526,-2.8628776,0.17436832,-0.101447105,-0.13229914,0.07172798,-0.16597262,0.17515042,-0.504664,-0.39880994,0.16158119,0.16752072,0.62530977,0.04593051,0.042384326,-0.29723865,-0.089246914,-0.27751446,0.18322422,-0.050189987,0.36170948,-0.1258882,-0.44806546,0.059949547,-0.024299264,-0.36114603,0.11667194,-0.5007416,-0.41991717,-0.18013036,-0.3617961,-0.37240806,0.75003976,-0.44618294,-0.029717833,-0.027710598,0.07217729,-0.0066823885,0.24219228,0.20071715,0.08214532,0.17683649,0.06850879,-0.10546659,-0.38276798,0.43400037,0.0006510429,0.07165596,0.42417052,-0.033424474,0.17103766,0.45774424,0.45416713,-0.16644944,0.8515452,0.5614844,-0.06504411,0.13354649,-0.20971106,-0.13504404,-0.3455832,-0.38669527,-0.2015851,-0.5435518,-0.2783745,-0.0801782,-0.259179,-0.77251554,0.60302013,0.17407875,0.034132928,-0.07392773,0.21163589,0.5900458,-0.2240275,-0.033730052,-0.09665778,-0.22620311,-0.6368456,-0.49538177,-0.59837353,-0.5285759,0.10766359,1.1162953,-0.29131654,-0.050584562,-0.05260671,-0.14782329,-0.020633817,0.18468887,-0.13064331,0.1613577,0.35469353,-0.28860462,-0.5352528,0.51465374,-0.17910118,-0.12387834,-0.680219,0.2809155,0.57773364,-0.6051731,0.42089754,0.46921152,0.09323598,-0.05386591,-0.55431014,-0.20266494,-0.10609004,-0.26324734,0.34096748,0.13011722,-0.74410605,0.3940669,0.2517486,-0.27774408,-0.72464275,0.50087804,-0.04479066,-0.264949,0.112193905,0.32253888,0.22400604,-0.12156149,-0.31547412,0.1548497,-0.395971,0.35694966,0.31911346,0.115325645,0.32522628,-0.20680322,-0.18127473,-0.70528895,-0.064091906,-0.41988096,-0.2199691,0.21203627,-0.06930726,0.06798549,0.33428988,0.17484699,0.41428596,-0.42309976,0.053027887,-0.20625427,-0.23806038,0.34884423,0.4108212,0.4591444,-0.27643144,0.45991135,0.048949912,-0.10471061,-0.0505334,0.100888446,0.52988946,-0.0034093335,0.36537766,-0.04559031,-0.20054045,0.2699828,0.7305693,0.19696397,0.37584123,-0.15229262,-0.4055187,0.10582675,0.10807303,0.22367035,0.11469068,-0.4746356,-0.036144048,-0.21960339,0.2831795,0.36106598,0.190564,0.47582334,0.0057565663,-0.2436003,0.069872595,0.16509342,0.08358726,-1.0665827,0.37192875,0.17823553,0.83611465,0.47313017,-0.020185478,0.053075712,0.5275387,-0.15869159,0.27028286,0.30287227,-0.11820082,-0.47756624,0.39354357,-0.88314044,0.54852885,-0.07675718,-0.044993322,0.096969485,0.008644283,0.36024737,0.88538635,-0.064900294,0.11370639,0.05709907,-0.3401821,0.14348412,-0.39377487,0.19189711,-0.67390484,-0.33369014,0.6243516,0.44718677,0.44621146,0.029470388,-0.07778694,0.115016825,-0.13696626,0.14824441,-0.09679679,0.24167466,-0.010032775,-0.54331774,-0.250777,0.49079955,-0.10955783,0.23358184,-0.002526082,-0.093690746,0.23113628,-0.17944069,-0.029652368,-0.072598234,-0.47022584,-0.09613967,-0.17114356,-0.3504057,0.4783932,-0.35473448,0.30718374,0.18815534,0.051244847,-0.32844186,0.42089775,0.25405174,0.87487787,-0.06899245,-0.15410739,-0.4416384,0.1803598,0.34108314,-0.2028679,-0.0791741,-0.2576738,0.034672342,-0.70365703,0.2431603,-0.102705464,-0.36225772,0.05140471,-0.20349222,0.05994023,0.5628666,-0.12725382,-0.2051478,0.010985434,-0.15426132,-0.35208306,-0.005683437,-0.22789776,0.15837975,0.24491914,-0.04655651,-0.07700814,-0.22184685,-0.14039317,0.21822105,0.0872401,0.3455211,0.3031611,0.049864784,-0.26573434,-0.11755346,0.17229931,0.4476749,-0.11038241,-0.10193394,-0.22435123,-0.36777258,-0.2898278,0.13691115,-0.07150657,0.35635996,0.162456,-0.15433846,0.70092356,-0.14991137,1.1250427,0.17191902,-0.28351736,0.09441628,0.4431069,0.1763938,0.09278321,-0.32543504,0.8677921,0.6319175,-0.07934384,-0.060552835,-0.23899686,-0.07827871,0.24761431,-0.08185103,0.0042747743,-0.019547839,-0.6567844,-0.32009643,0.30312026,0.18379328,0.17769179,-0.08342156,-0.06843815,0.16599862,-0.021412326,0.43506184,-0.48330826,-0.045116853,0.24142411,0.42701325,0.092695065,0.27268076,-0.37724423,0.43593696,-0.4668095,0.0061896928,-0.11295384,0.21759014,-0.24841453,-0.21763217,0.1834676,0.059749074,0.41862047,-0.15759307,-0.4519609,-0.25033644,0.48772043,0.14073321,0.16808456,0.59325135,-0.24012433,-0.026423458,-0.06715081,0.39498836,0.9882684,-0.43240416,0.059857283,0.5651096,-0.22052181,-0.5010334,0.29002148,-0.36198342,0.24312906,-0.043943122,-0.27163365,-0.2776914,0.4316241,0.23004486,-0.03413716,0.084698424,-0.52242863,0.04118243,0.19017324,-0.21748708,-0.19255058,-0.29827064,0.2957778,0.6261865,-0.4721165,-0.26492253,0.17114061,0.35718948,-0.2604408,-0.4068352,0.020535335,-0.33963507,0.28302935,0.021088196,-0.42050695,-0.14898631,0.011324266,-0.3552463,3.0055642e-05,0.09082551,-0.2479829,0.10175425,-0.21783671,0.170142,0.73540086,-0.05738136,0.06789946,-0.57249296,-0.2877454,-0.88310266,-0.20047945,0.16352484,0.27988297,-0.11713968,-0.44764525,0.011965536,-0.106759384,-0.17577553,-0.085219435,-0.4320894,0.60937554,0.04256682,0.20192254,-0.16539678,-0.90647185,0.040320218,0.07528445,-0.1532763,-0.51752913,0.4774679,-0.22639747,0.7678292,0.15023026,-0.06937169,0.27606025,-0.48296803,0.09497601,-0.37375152,-0.28464562,-0.7787373,-0.024573762,565 -78,0.45672718,-0.04364032,-0.5025879,-0.16011408,-0.32982144,0.32888645,-0.1123761,0.28984,0.12620597,-0.20689033,-0.16687885,-0.14624165,-0.025112377,0.26035628,-0.16510245,-0.76520723,-0.083382174,0.12177559,-0.65987456,0.31447646,-0.51155955,0.35421306,-0.079267785,0.41231936,0.021696739,0.3658381,0.06372871,-0.10523259,-0.1815735,0.096555874,-0.036781423,0.1696392,-0.5883019,0.14828703,-0.09387908,-0.18428043,-0.084717765,-0.430665,-0.3471198,-0.5761569,0.39007336,-0.62667,0.5254008,-0.15504818,-0.38252494,0.14268818,-0.06904666,0.1857928,-0.3073498,0.09012724,0.18705438,-0.09739722,0.009721197,-0.11566606,-0.22061586,-0.39691043,-0.502585,0.06700802,-0.5082178,-0.114132926,-0.18051888,0.1543434,-0.2921369,-0.030495722,-0.22423226,0.39440286,-0.34483832,0.15881035,0.23499978,-0.16708921,-0.0045097694,-0.44660646,0.00889433,-0.08012851,0.27856797,0.022765273,-0.225185,0.098064646,0.21794237,0.52411723,0.012797156,-0.19419402,-0.21415053,0.01347346,0.06661831,0.38973093,-0.10026617,-0.22649693,-0.23885292,-0.017006818,0.11231425,0.16693383,0.017071597,-0.48112884,-0.07910979,0.0682732,-0.20078678,0.20338002,0.41011512,-0.27282634,-0.30058402,0.444427,0.4298218,0.17595886,-0.0020121727,0.036581878,-0.04807176,-0.4433576,-0.3358043,0.10822934,-0.033195537,0.5277779,-0.109321706,0.29410353,0.6755418,-0.052214783,0.10433002,-0.09388834,-0.075447135,0.11458227,-0.20931813,-0.034711093,-0.030273017,-0.42399383,0.0069576157,-0.159374,0.67267525,0.16183269,-0.8497707,0.41877887,-0.54876554,0.098745555,-0.046391718,0.516201,0.84629524,0.39803764,0.028117545,0.67151576,-0.43470728,0.029036833,-0.09924052,-0.45033735,0.1897567,-0.019650593,0.03417453,-0.4877841,0.008190285,0.10675241,-0.08522901,-0.062127754,0.24821246,-0.45121062,-0.0043870807,-0.08102854,0.6466404,-0.4008168,-0.11807402,0.75354224,0.92423064,0.799059,0.11858949,1.4505732,0.39967483,-0.12079908,0.18042357,-0.40188918,-0.58542156,0.20389584,0.26244128,-0.05000116,0.42408037,0.07836704,0.007666204,0.4648401,-0.15391436,0.09984302,-0.052433677,0.23889537,-0.013902202,-0.019348767,-0.2967134,-0.38254964,0.15159944,0.07179157,0.10895759,0.26714385,-0.19159906,0.24719433,0.15055694,1.5851836,0.095961854,0.15351133,0.00095736794,0.31228325,0.20056531,-0.2098841,-0.15437758,0.35951114,0.31473756,-0.09467474,-0.5835365,-0.014592588,-0.238508,-0.44758406,-0.2045149,-0.2927512,-0.185632,-0.1537632,-0.5188752,-0.1947619,-0.0445743,-0.25416896,0.56578267,-2.6217852,-0.1647683,-0.04429737,0.3967031,-0.32026684,-0.44688126,-0.27740508,-0.4260566,0.23006408,0.3557335,0.26034877,-0.62124896,0.46650106,0.25426114,-0.38696328,-0.22802989,-0.57736695,0.06735411,0.15151672,0.29868537,-0.18992296,-0.14379211,-0.23606932,0.1972048,0.43087503,-0.08321451,-0.005584771,0.23885849,0.49601066,0.13383321,0.30310798,0.17319784,0.49438107,-0.07716659,-0.0422713,0.374909,-0.34008506,0.38540402,-0.0131093655,0.13022164,0.20135273,-0.5332228,-0.56955326,-0.598546,-0.40986204,1.1557555,-0.3225443,-0.16951025,0.16233918,-0.20898229,-0.30212566,0.038188346,0.37384507,-0.07930436,-0.15980308,-0.7276956,0.042078808,-0.03834394,0.26026127,-0.11278789,0.21713662,-0.41086483,0.6367868,-0.20210889,0.48272127,0.32498676,0.20016253,0.033909723,-0.452565,0.08396437,0.7721334,0.39947557,0.16712274,-0.09341252,-0.094809026,-0.1740295,-0.079077095,0.06148753,0.56562454,0.66938967,0.13367108,0.06810235,0.24557987,-0.21473853,0.035134062,-0.12789229,-0.26598835,-0.052875817,-0.0020499872,0.5764368,0.5706196,-0.30514863,0.33396032,-0.19564013,0.2199009,-0.24654137,-0.52391064,0.52932787,0.7213555,-0.19631468,-0.101998806,0.42934513,0.37225455,-0.29473716,0.33283758,-0.4425403,-0.16717081,0.6686091,-0.18141907,-0.42860037,0.17016885,-0.22460388,0.017235031,-0.88344806,0.37516925,-0.0038099512,-0.5363281,-0.42586324,-0.1208397,-3.3595364,0.11709617,-0.07470898,-0.116866976,-0.08313277,-0.14573923,0.24398313,-0.5226871,-0.57271457,-0.017611768,-0.059933312,0.46264216,-0.022202257,0.17513406,-0.22101763,-0.19494368,-0.29119056,0.23855007,0.19985689,0.31752223,-0.03965715,-0.24666983,-0.03326606,-0.31991258,-0.37182835,0.12996075,-0.48958617,-0.5574439,-0.07757365,-0.4428553,-0.15438977,0.7094971,-0.36763278,-0.058817834,-0.24566415,-0.035099044,-0.2129445,0.36349717,0.18492585,0.10232033,0.19707859,0.009221256,-0.0731758,-0.38747776,0.29401252,0.13151932,0.27281684,0.50388396,-0.01923503,0.23269622,0.45505884,0.6084975,0.012184069,0.64235497,0.18918438,-0.05287914,0.34824502,-0.291984,-0.17482054,-0.49464872,-0.26386613,-0.17268032,-0.3782936,-0.43954206,-0.24921627,-0.45109016,-0.7683133,0.20838654,0.013125397,0.09191753,-0.04698278,0.23680514,0.47743514,-0.09855213,0.09407033,-0.07235556,-0.18022229,-0.49617037,-0.4721551,-0.5207487,-0.48333073,0.2930755,1.1520513,-0.003285244,-0.054552455,-0.07928035,-0.31012022,0.025036853,-0.004242271,0.1023413,0.1600026,0.3294961,-0.18991905,-0.670434,0.37750483,-0.11020163,-0.26058656,-0.608015,0.07070532,0.65300286,-0.57492477,0.5840586,0.24124244,0.17362686,0.2846805,-0.49031478,-0.1456943,0.105755,-0.23028359,0.497908,0.3007398,-0.5102645,0.42589384,0.18891492,0.0013576783,-0.7118728,0.4936013,0.00031312555,-0.19870779,0.025221135,0.3341896,0.027341716,-0.16415754,-0.05845186,0.19682156,-0.48372754,0.276725,0.35250998,0.056672588,0.42708826,-0.0012441985,-0.16698112,-0.585221,-0.16413507,-0.5029468,-0.34719616,0.111016974,0.09646699,0.2796457,0.058765113,0.13286793,0.49078256,-0.41298702,0.10064784,-0.07335534,-0.16797377,0.24341689,0.4296123,0.26497185,-0.46288747,0.4815396,-0.013697688,0.24957798,-0.007202722,0.13909659,0.42499518,0.1898542,0.26410592,-0.0123760365,-0.14675693,0.08741614,0.61837494,0.1889016,0.3601439,0.110441454,-0.32182124,0.30173138,0.079329535,0.08446252,-0.043902144,-0.21920332,-0.09182887,0.077790335,0.22888471,0.38974068,0.12110992,0.21669886,-0.20576674,-0.213416,0.1995728,0.15118368,-0.11206256,-1.0292234,0.23546809,0.14708176,0.7095043,0.5265782,-0.0316834,0.001514215,0.32973468,-0.36049727,0.2239753,0.39672622,0.005122995,-0.567107,0.4450817,-0.4650726,0.4719776,-0.22889727,-0.13544363,0.1256591,0.07535719,0.2515077,0.9003794,-0.001959037,0.09576678,0.00081380457,-0.22445554,0.00094683375,-0.30009675,0.029911503,-0.6054412,-0.18375055,0.58153653,0.44414166,0.26268914,-0.46973497,-0.07112785,-0.028691888,-0.18290219,0.117164455,-0.00043263845,0.037371743,0.005974807,-0.6121346,-0.5268679,0.5333961,-0.20725018,-0.029107869,0.08258507,-0.3775629,0.21322678,-0.22887543,-0.05932156,0.010266904,-0.6206195,-0.03270732,-0.33685833,-0.47626933,0.32110777,-0.21064848,0.11775773,0.184441,0.11175808,-0.37319157,0.27844584,0.18247545,0.8214995,0.10148608,-0.09145721,-0.39233464,0.2516948,0.35710067,-0.2748912,-0.24205999,-0.22622563,0.2085059,-0.52975583,0.40648648,-0.07284573,-0.16881058,0.029742353,-0.04225286,0.072897896,0.36301324,-0.19805253,-0.13363172,0.1253376,0.0285175,-0.29959524,0.07681881,-0.37056908,0.14169225,0.13253725,-0.0980621,0.1061167,-0.050064117,-0.14343931,0.33502948,0.21433541,0.28523996,0.50718415,-0.08325385,-0.46748596,-0.14043516,0.027675536,0.36228934,0.16101591,-0.023138247,-0.385432,-0.2869436,-0.27470377,0.5158973,-0.1705308,0.10020561,0.09679793,-0.34602717,0.6724419,0.22683012,1.048275,0.06375254,-0.17300658,0.17929034,0.44033188,0.121440485,0.047076866,-0.46919775,0.7967845,0.56421375,-0.10566774,-0.20920461,-0.15674771,-0.2418741,0.18658343,-0.27795056,-0.19141403,-0.17698142,-0.7552952,-0.27270952,0.08736466,0.07763873,0.05173654,0.0342568,-0.054428965,0.045062155,0.11346398,0.42893544,-0.36763465,-0.07157548,0.3139168,0.19482195,0.14603691,0.3257079,-0.37762058,0.46242946,-0.7131714,0.16313522,-0.42055905,0.064166665,-0.017712194,-0.30850774,0.08304863,0.18817735,0.3119029,-0.35423678,-0.3954563,-0.36797705,0.49871972,0.19314663,0.25286645,0.68246037,-0.13827156,-0.043393288,0.12542441,0.5872382,1.1768357,0.1243449,0.0890518,0.5120794,-0.37009364,-0.587641,0.051543932,-0.3433972,0.14300191,-0.15050495,-0.2092708,-0.37982196,0.3259087,0.10585062,-0.049904495,0.033412807,-0.5838927,-0.16395709,0.43308753,-0.2743705,-0.2269324,-0.30486217,0.286423,0.7861786,-0.39415267,-0.17857692,-0.0058079436,0.35041672,-0.26865292,-0.45533246,-0.014708713,-0.33146328,0.32809624,0.11676774,-0.31291655,0.027741294,0.1688604,-0.37080133,0.06002993,0.33380356,-0.3963383,-0.0041552093,-0.2629647,-0.12326129,0.984527,0.08129108,0.042662248,-0.55885375,-0.5120075,-0.94479173,-0.36338723,0.11172578,0.16405565,-0.049024794,-0.61867493,-0.112954035,-0.042548712,0.05004219,0.04383765,-0.4842365,0.41149062,0.20528913,0.32965434,-0.013216078,-0.82642746,-0.14370103,0.19926903,-0.27813452,-0.51948416,0.653718,-0.16040921,0.7336424,0.096752405,-0.01723998,0.0861105,-0.63865733,0.31338745,-0.42235523,0.038124487,-0.6954888,0.21326295,569 -79,0.5890892,-0.2000686,-0.5983676,-0.23406166,-0.22933213,-0.022515833,-0.17893875,0.42591,0.29938233,-0.61592555,-0.05979056,-0.18933588,-0.041763086,0.40327048,-0.1464606,-0.7415271,-0.0017602555,0.120383315,-0.5089557,0.5872653,-0.44370586,0.30358297,0.1427166,0.38231277,0.13582453,0.2578746,0.15342537,-0.15451159,-0.17847583,-0.07879473,0.10079104,0.18598002,-0.68929255,0.14437705,-0.096847534,-0.3457873,-0.11008037,-0.3264109,-0.444965,-0.78250384,0.2845118,-0.8412618,0.51820654,0.00032930076,-0.38531354,0.101768896,0.22909476,0.40091074,-0.17174315,0.04713645,0.17623895,-0.1411058,-0.15910856,0.049833506,-0.2529881,-0.5672877,-0.63199556,0.10271862,-0.5041493,-0.19434261,-0.28848132,0.20433997,-0.43165982,0.045871265,-0.14874673,0.72502047,-0.34274256,0.033496615,0.49110824,-0.12907033,0.41969064,-0.55814016,-0.08462863,-0.2090658,0.12358201,-0.1462107,-0.3119505,0.18648297,0.3361264,0.6020355,0.11058536,-0.3508628,-0.29997706,0.008718297,0.25445172,0.19589642,-0.24287426,-0.56713766,-0.2506281,0.059905335,0.32100558,0.123915665,0.1644161,-0.34545037,0.0007850006,0.26881725,-0.25334057,0.5901841,0.56923205,-0.19091812,-0.2000671,0.19973889,0.5461218,0.23021315,-0.1303463,0.23248394,0.016724637,-0.53620756,-0.15500867,0.19822602,-0.22137168,0.46574724,-0.26741076,0.20175074,0.7084892,-0.24700382,-0.006748289,0.15907937,-0.076035485,0.09125709,-0.41511992,-0.16589114,0.33798453,-0.61819804,0.114270836,-0.3093584,0.8155747,0.1784086,-0.68202096,0.33957404,-0.5637313,0.26383263,-0.059350938,0.56655276,0.8116893,0.43557423,0.22525641,0.80890644,-0.5382019,0.09723821,-0.22456807,-0.39417472,0.17569914,-0.3280535,-0.05363685,-0.42241442,-0.119872645,-0.046907585,-0.2067653,-0.0039136857,0.32658243,-0.65114343,-0.08767556,0.11156211,0.93392277,-0.23624292,-0.09485197,0.8543627,0.97905797,1.0079237,0.074313454,1.3461707,0.26636016,-0.23825343,0.29041123,-0.2843711,-0.82490396,0.45342338,0.34397447,-0.16692121,0.3582245,-0.02810248,-0.008091226,0.47040302,-0.49116337,0.10000838,-0.21828285,0.33750638,0.08040463,-0.25384748,-0.46626246,-0.056152966,0.0017660931,-0.04146628,0.041022263,0.17717257,-0.046926856,0.37697148,0.010420218,1.3093606,-0.26593253,0.05707058,0.09752256,0.4892866,0.2234613,-0.18540922,-0.043018322,0.13466984,0.29922724,0.23742908,-0.64502496,0.0032593533,-0.3466152,-0.47962078,-0.29525745,-0.3317631,0.044323526,-0.16787393,-0.39146987,-0.24725813,-0.14620654,-0.26998097,0.37858716,-2.5423472,-0.30539253,-0.2290149,0.2577312,-0.45669684,-0.36571205,-0.029040113,-0.5533081,0.46834686,0.36971036,0.49681616,-0.67540634,0.4576983,0.43271512,-0.5383756,-0.03905703,-0.8311937,-0.09666549,-0.1600607,0.38302743,0.07869439,-0.2644422,-0.08750364,0.20896462,0.5058576,-0.016264934,0.12142648,0.17918193,0.31138206,-0.015408374,0.60890687,0.040657423,0.5712348,-0.3404408,-0.21128242,0.42323685,-0.37228882,0.1230305,0.070315555,0.11973115,0.41123304,-0.45078146,-0.9446785,-0.7808574,-0.3592361,1.0338522,-0.14892375,-0.45058608,0.33717775,-0.46437103,-0.24949291,0.02111809,0.4273616,0.051973227,0.10680312,-1.0048702,0.089012995,-0.12569371,0.00851424,-0.0044781864,-0.06769699,-0.38312885,0.75492066,-0.19283047,0.33377331,0.4395935,0.21427989,-0.35937908,-0.5871724,0.047428645,1.2017637,0.41448307,0.21762845,-0.24327904,-0.26511028,-0.4501984,-0.08214882,0.026799962,0.5256526,0.8653494,-0.08666919,-0.0155647695,0.2755936,-0.09780209,0.18933743,-0.13225722,-0.4607998,-0.16641787,-0.09142858,0.6309335,0.51115274,-0.22500032,0.565892,-0.045756377,0.3682698,-0.15908849,-0.50304294,0.60352135,0.93695843,-0.24497813,-0.3862761,0.6526559,0.41659582,-0.3582319,0.5762291,-0.570838,-0.3125907,0.41266304,-0.07666491,-0.57686937,0.2413066,-0.530359,0.23452741,-1.0914382,0.36098862,-0.4691128,-0.47597054,-0.56505805,-0.23603293,-3.2898788,0.29004636,-0.33760783,-0.07523896,-0.18685395,-0.004565574,0.36101604,-0.5580521,-0.7970774,0.14862591,0.08164777,0.7368453,-0.11803989,0.14486408,-0.22562248,-0.19353306,-0.33840826,0.18894821,0.35020727,0.16772883,-0.017429475,-0.57798755,-0.07610783,-0.16211212,-0.41905978,0.08659232,-0.6416763,-0.6048921,-0.24120677,-0.6268021,-0.28790465,0.73985803,-0.29469657,0.023941867,-0.22801337,0.11380878,-0.01522639,0.40914205,0.059823934,0.17521903,0.17255163,-0.06533481,-0.049893126,-0.31659555,0.11335621,0.1582296,0.39985788,0.29550675,-0.25788558,0.3425447,0.6875131,0.88115597,-0.032898225,0.9381517,0.6617218,-0.07203431,0.4291582,-0.28129748,-0.36500937,-0.63740027,-0.17680201,0.036509227,-0.48810464,-0.40941918,0.08416028,-0.4022687,-0.8769498,0.6721581,-0.002475869,0.15228401,-0.13924903,0.20647313,0.43859398,-0.21027765,-0.022537336,-0.09047499,-0.22364017,-0.53432,-0.23732692,-0.62688166,-0.6609175,0.051533617,1.1115708,-0.13410999,0.10423889,-0.040709637,-0.17082775,0.011993311,0.105918154,0.00966578,0.06351787,0.54973084,-0.06235592,-0.6337208,0.350966,-0.03364496,-0.104971305,-0.64642733,0.24730355,0.7785602,-0.57645935,0.62518865,0.3841375,-0.011818297,-0.13601501,-0.5811026,-0.08853845,0.11329629,-0.24983703,0.5766267,0.22155194,-0.77281445,0.3887081,0.4368991,-0.23377497,-0.7423059,0.4794725,0.037748933,-0.078749344,-0.051124513,0.36427638,0.03638337,0.019625809,-0.19595447,0.25375807,-0.442034,0.22470064,0.44380134,-0.17495604,0.41653723,-0.2352149,-0.22240141,-1.0025403,-0.09287229,-0.59452873,-0.25799227,0.28816393,0.12861201,0.09683025,0.22322482,0.123316824,0.46849304,-0.12810358,0.08301127,-0.17788297,-0.42745733,0.45464906,0.54489166,0.33218652,-0.57456255,0.64718395,0.12504494,-0.19433811,-0.078644365,-0.03573798,0.6140777,0.0069253556,0.47211316,0.16226646,-0.14724629,0.31875074,0.9478196,0.041965324,0.52910453,0.22313285,-0.06958874,0.25016505,0.14443168,0.042383876,0.08448546,-0.5862342,-0.09203512,-0.08955613,0.20746179,0.43160358,0.1456972,0.3359539,0.013551738,-0.375629,-0.030375805,-0.06372566,-0.0076695937,-1.6085268,0.43330306,0.30265415,0.73454314,0.5204376,0.16288596,0.0557163,0.642828,-0.17733033,0.17622866,0.41120338,-0.017962836,-0.42343634,0.56972,-0.75690055,0.4725806,-0.080278575,0.05997335,0.014263542,0.031221211,0.5578009,0.8493547,-0.098386586,0.10068859,-0.19198702,-0.29952392,0.32275257,-0.41813117,0.1586625,-0.3912918,-0.25746682,0.7152585,0.50212175,0.34497938,-0.19741456,0.0122259,0.20656517,-0.074951336,0.2112662,-0.15343942,-0.0563186,0.044987287,-0.64390874,-0.28299665,0.4515119,0.26893747,0.14075798,-0.04173261,-0.18639824,0.21957234,-0.06624965,-0.10944612,-0.08136058,-0.66980004,-0.15624733,-0.39711553,-0.53791416,0.38376147,-0.2625579,0.21728048,0.14243953,0.10081985,-0.38258523,0.24300183,-0.04635209,0.62696743,-0.030391261,-0.20589837,-0.29297727,0.13955978,0.21103749,-0.2668839,-0.14406742,-0.3316058,0.102955304,-0.62127227,0.5047579,-0.14692423,-0.45151526,0.2056753,-0.14109123,0.056778662,0.40863878,-0.34895408,-0.17909974,0.25095305,-0.1689451,-0.1067653,-0.26260772,0.054027323,0.35905468,0.16685429,0.032453366,-0.12500603,-0.14194989,-0.07054394,0.4992469,0.07359575,0.30365062,0.4722999,0.12390641,-0.46460652,-0.10421114,0.3540824,0.5912633,0.09389253,-0.09259355,-0.3184386,-0.38268527,-0.3478022,0.19080566,-0.016850226,0.32883286,0.102894954,-0.42301047,0.9610723,0.1974683,1.4115216,0.03904257,-0.43641287,0.076054305,0.3466843,-0.039824348,-0.0859773,-0.47391412,0.93859684,0.5779059,-0.2617734,-0.11046122,-0.6083766,0.017484196,0.10211141,-0.25220504,-0.15804885,-0.051128224,-0.6799681,-0.28407538,0.29442453,0.33045703,0.12881392,-0.13226452,0.16162129,0.110970974,-0.056123033,0.46997973,-0.60461885,-0.028724853,0.16942069,0.4070586,0.044138204,0.056138948,-0.490628,0.35504413,-0.6434029,0.166255,-0.18969475,0.14086734,-0.07447791,-0.39037707,0.29355097,-0.03660798,0.35590088,-0.39666897,-0.36054668,-0.26983836,0.6060203,0.07548933,0.04577828,0.7615965,-0.26332203,0.053036384,0.23708017,0.60715127,1.1523252,-0.14928243,0.06084211,0.27873465,-0.2041567,-0.7201881,0.33580235,-0.35924092,0.29864603,-0.07927826,-0.44191828,-0.5372509,0.2268592,0.19599864,-0.07920509,0.06660408,-0.6164198,-0.33228987,0.35995704,-0.42972198,-0.23156035,-0.1906807,0.07907508,0.5182145,-0.2225506,-0.29823875,0.044360436,0.4477627,-0.22704785,-0.560397,-0.25717345,-0.2470605,0.33717,0.18374014,-0.37437397,0.011713374,0.08625468,-0.50059605,0.06389435,0.2679258,-0.40958703,0.029800087,-0.22096641,-0.20884353,0.7956103,-0.014606798,0.21989831,-0.5597357,-0.42184603,-0.9386667,-0.2545323,0.39169067,0.14907223,0.08248682,-0.60019326,-0.053037874,-0.16477254,0.11124322,0.09144841,-0.5124732,0.43254733,0.17501935,0.5987989,-0.07481361,-0.71755636,-0.08800026,0.27057064,-0.131196,-0.6009686,0.5826792,-0.033022497,0.9554458,0.12674862,0.19840789,0.35277724,-0.61043817,-0.05751456,-0.15722632,-0.26909545,-0.77622503,-0.01165954,576 -80,0.5631794,-0.18610334,-0.63841903,-0.15219802,-0.3376785,0.113472715,-0.25132173,0.63303936,0.24251544,-0.5905495,-0.28256452,-0.20788836,-0.06658968,0.53314495,-0.18187504,-0.67204463,0.025385298,0.11375891,-0.5092734,0.47517666,-0.3802408,0.2580156,0.18432382,0.41033933,0.28770405,0.24210289,0.21593422,0.027130716,-0.21907762,-0.2421665,-0.0870444,0.12867185,-0.79801446,0.108062044,-0.18009862,-0.38294014,-0.13466729,-0.3765911,-0.28914303,-0.8353172,0.33030704,-0.89612985,0.5600221,-0.15670958,-0.31563032,0.15840858,0.16469975,0.35730827,-0.23777655,-0.01847624,0.06613573,-0.06762272,-0.11123125,-0.030432027,-0.25641188,-0.3421731,-0.65738267,0.110951945,-0.39654365,-0.1685879,-0.25550747,0.19430935,-0.29101044,0.34054714,-0.1172512,0.48423105,-0.4077343,0.0058721006,0.39687836,-0.20795627,0.14833164,-0.64110297,0.028657341,-0.25075212,0.19973251,-0.03594597,-0.21965155,0.34069148,0.3061444,0.54329526,0.20789571,-0.37806553,-0.3025752,-0.072820365,0.13064641,0.36361545,-0.15300551,-0.3798846,-0.24449699,-0.105242714,0.31134158,0.17357285,0.23844482,-0.32974863,-0.09556766,0.03769624,-0.3739017,0.31385073,0.48023218,-0.33229902,-0.23561338,0.3685441,0.4806109,0.096695796,-0.09599431,0.11495894,0.012187259,-0.6430717,-0.14595607,0.06523456,-0.2213881,0.53944224,-0.12768386,0.22195895,0.69108295,-0.19402535,0.0348474,0.109205544,-0.1419862,-0.239363,-0.42960727,-0.23844343,0.16011359,-0.54571146,0.20305392,-0.17217262,0.8560807,0.2371689,-0.73565096,0.34865448,-0.5398913,0.14487638,-0.13147563,0.46795157,0.7072539,0.5556216,0.16213277,0.7560142,-0.3420601,0.09942372,-0.19973245,-0.36875477,0.08196516,-0.29191083,0.049687684,-0.34767348,0.058553092,-0.15405314,-0.04684944,0.03573684,0.47540322,-0.4710226,-0.14248551,-0.0852994,0.8537127,-0.31987324,-0.16027609,0.80833036,0.82984334,1.0384836,0.06384693,1.1818525,0.33054268,-0.09903662,0.23494142,-0.09764572,-0.695835,0.39686108,0.3549968,-0.20693666,0.2723552,-0.028794909,-0.032667458,0.5408758,-0.25939977,0.051630966,-0.18709019,0.20852305,0.12448664,-0.12629098,-0.29875186,-0.27773538,0.16444959,0.026444886,0.11445971,0.28578418,-0.08965774,0.5012889,0.103452265,1.7584224,-0.077641346,0.04426726,0.17653623,0.50255847,0.1426307,-0.24188942,-0.05114522,-0.070431806,0.3817663,-0.008139089,-0.56427443,0.034169503,-0.21921018,-0.5114731,-0.17445374,-0.3095612,-0.18682848,-0.24321681,-0.57472897,-0.25483578,-0.055635117,-0.20509884,0.42497665,-2.3591573,-0.25272927,-0.20782676,0.27135387,-0.4899035,-0.38342273,-0.13721123,-0.5614024,0.4482622,0.25666526,0.4697277,-0.64012134,0.47510543,0.3942469,-0.4609208,-0.16109052,-0.5790582,-0.06658878,0.06359802,0.18319732,-0.016684007,-0.28243923,-0.078218326,0.07389166,0.5997834,-0.07066393,0.12616006,0.3062261,0.32704678,0.0047870465,0.57534957,-0.18771999,0.5907061,-0.4508853,-0.16513695,0.49004415,-0.36092496,0.17770186,-0.16779289,0.13722686,0.40675998,-0.5171025,-0.8577569,-0.81139624,-0.382092,1.1750727,-0.2622526,-0.43418244,0.23662426,-0.22497281,-0.064425185,0.036942184,0.46103108,-0.06001399,0.17942634,-0.72522014,0.113309465,-0.08966681,0.20288579,-0.024539037,-0.017235406,-0.34897956,0.6708213,-0.10679149,0.40368262,0.43200004,0.25265774,-0.21418089,-0.5569642,0.16144006,0.96673584,0.40777558,0.12105319,-0.3063361,-0.19749966,-0.46391603,-0.1950177,0.04198038,0.5187918,0.7513813,-0.029945323,0.07633875,0.20382291,-0.023915153,0.037296347,-0.18058263,-0.3699744,-0.1977256,0.026477233,0.6034975,0.5793223,-0.096957624,0.4948063,-0.2708126,0.4371876,-0.19053498,-0.526981,0.5854699,0.68017066,-0.35569584,-0.33659637,0.5403422,0.36398193,-0.16073878,0.52884394,-0.7258004,-0.5001755,0.37396792,-0.09747006,-0.4456358,0.09792076,-0.34437522,0.041787,-0.93220013,0.21222487,-0.4690969,-0.20784257,-0.42186123,-0.28152156,-3.1914923,0.20608908,-0.0857282,-0.09526835,-0.16147196,-0.18078074,0.25512758,-0.5772948,-0.73624694,0.055871952,0.041844204,0.70335424,0.04117952,0.20353673,-0.33629966,-0.1595168,-0.2988745,0.18852049,0.21689543,0.3236006,-0.035179406,-0.48738134,-0.09756607,-0.15832542,-0.5845926,0.07727915,-0.6555586,-0.61935914,-0.2706353,-0.44473407,-0.32011446,0.6699634,-0.38257492,0.15349793,-0.13361508,0.06668735,-0.124081634,0.32673472,0.040075924,0.10539723,0.24735202,-0.074546285,0.0626532,-0.35040373,0.20821223,0.15107343,0.36322492,0.29304802,-0.12150283,0.28649262,0.6083141,0.7254995,-0.09207311,0.793019,0.49757606,0.005024396,0.37379575,-0.19541752,-0.3730977,-0.43019593,-0.17056465,0.099417865,-0.39785767,-0.31847274,0.13620052,-0.30949777,-0.7430104,0.55068505,0.14313197,0.025609866,-0.021187332,0.108890705,0.4376266,-0.28505126,-0.05410602,-0.061663445,-0.1742093,-0.67067134,-0.49451008,-0.6506497,-0.64789706,-0.013280243,1.1855291,0.0011203121,-0.03907933,-0.028783284,-0.1691791,0.09718488,0.065241694,-0.051026374,0.0021096058,0.44932976,-0.15393433,-0.73979354,0.41399503,-0.11974183,-0.09513511,-0.57744724,0.2956984,0.61888206,-0.6155733,0.38300896,0.4017218,0.11369741,-0.11124933,-0.5897898,-0.056054175,-0.08715209,-0.23208734,0.3813395,0.22997731,-0.7834917,0.46072724,0.4277109,-0.25383222,-0.7606696,0.48983648,0.032138895,0.030940467,-0.0073815733,0.3798641,0.2177813,-0.035217788,-0.22581004,0.08937333,-0.495937,0.13228494,0.32852405,-0.013469765,0.44040683,-0.23862335,-0.103351295,-0.7142814,-0.10216081,-0.4926256,-0.26211697,0.14529991,0.008593753,0.1480366,0.11662265,0.19194117,0.33590204,-0.21984038,0.06350644,-0.06901513,-0.37885654,0.39701,0.42457443,0.58791727,-0.4326768,0.607956,0.09459415,0.019461669,0.27243268,-0.042759728,0.43703288,0.100040525,0.40962854,0.10233131,-0.15393631,0.059176445,0.8157853,0.13057917,0.38555542,0.10608289,-0.2578679,0.18117094,0.05616466,0.11828403,0.16818842,-0.69589114,-0.1258885,-0.20260273,0.10146442,0.6172918,0.29552013,0.4241581,-0.0056350864,-0.25800288,-0.045389496,-0.04414676,-0.19365463,-1.5591581,0.33676344,0.1917966,0.88829434,0.42489618,1.956895e-05,-0.040512584,0.55891657,-0.17690703,0.21809271,0.48649308,-0.027614981,-0.47995612,0.50991416,-0.693201,0.49685484,0.06541486,-0.0036301771,0.024710093,0.056816842,0.4868039,0.8692323,-0.08853367,0.11883144,-0.0660508,-0.37999296,0.27377406,-0.51560414,-0.02328381,-0.35164428,-0.25105152,0.71307325,0.4375137,0.2984755,-0.18953186,-0.053687513,0.11895389,-0.08626924,0.0964989,-0.09329736,0.05711059,-0.042599697,-0.5529783,-0.31481418,0.52741426,0.010480449,0.29024947,-0.0016052872,-0.29423234,0.24892813,-0.18137202,-0.15519565,-0.120834574,-0.72284234,-0.06557655,-0.54552466,-0.3778561,0.15818964,-0.11611902,0.15971312,0.1292331,0.05569133,-0.35860196,0.4529858,-0.003955722,0.6879262,-0.076611996,-0.22194871,-0.28365457,0.105580576,0.24846351,-0.3554541,-0.022696912,-0.18416806,0.023321431,-0.5084202,0.27871716,-0.16163051,-0.3652103,0.33245313,-0.08608423,0.03602653,0.48561126,-0.14843896,-0.042601444,0.14751631,-0.07581889,-0.24202831,-0.18839753,-0.09319511,0.2794014,0.26202577,0.08132351,-0.059976652,-0.116194345,-0.0005816519,0.50923115,-0.03550728,0.38706607,0.5165174,0.029134825,-0.45018697,-0.12961477,0.30602446,0.6073191,0.081654966,-0.10400681,-0.43401337,-0.35647818,-0.2683884,0.34269586,-0.16949959,0.3423205,0.030174403,-0.40431315,0.80367404,0.06741674,1.2114112,0.13198866,-0.3709944,0.07957843,0.3765229,0.047627658,-0.023194423,-0.45502388,0.9111536,0.4084513,-0.109091535,-0.19310312,-0.35201383,-0.087526545,0.15324156,-0.2883254,-0.19398499,-0.19012555,-0.662942,-0.25602266,0.2413392,0.2959768,0.13537769,-0.14373086,0.124847546,0.21989924,0.05511567,0.41271523,-0.5333202,-0.14317255,0.45205608,0.35814393,-0.094935834,0.1334166,-0.50330657,0.3583563,-0.57614523,0.12326166,-0.2800999,0.142063,-0.046745814,-0.2240711,0.3259279,0.083070256,0.39128608,-0.33986893,-0.43358323,-0.27716047,0.57735807,0.10720307,0.22944303,0.6275444,-0.21146728,-0.038963232,0.06892959,0.6284547,0.96403253,-0.25937292,0.19229619,0.32073593,-0.2528792,-0.6010747,0.39374256,-0.23848389,0.18160255,0.004832506,-0.20201929,-0.5590482,0.34784055,0.16074309,-0.06398767,0.23621319,-0.6802348,-0.24639368,0.31092864,-0.29314926,-0.18359166,-0.3911813,0.13014689,0.6345159,-0.17279163,-0.20697737,0.15538949,0.40602142,-0.14431605,-0.36502314,-0.17648259,-0.2573729,0.07470739,0.09801857,-0.2920606,-0.14856078,0.022170164,-0.53842986,0.11397131,0.18413557,-0.31733593,0.055183973,-0.2639198,0.082199134,0.85452276,-0.022435501,0.21056457,-0.5736803,-0.4750725,-0.7902595,-0.40527377,0.34456202,0.21980336,-0.0669743,-0.53910524,-0.20018724,-0.14957173,-0.006578028,0.012867775,-0.37655395,0.434303,0.030982424,0.47348318,0.057783265,-0.6400362,0.14539367,0.07647619,-0.11268194,-0.4484209,0.5372536,-0.12390475,0.888038,0.008288976,0.044465527,0.16084619,-0.52092844,-0.029768988,-0.20629185,-0.17377836,-0.70528364,0.095994815,578 -81,0.4885347,-0.25289077,-0.46699992,-0.0979048,-0.25911012,0.2324778,-0.34496954,0.44348672,0.20120585,-0.38410687,-0.115621954,-0.25692773,0.01998992,0.36650243,-0.083439544,-0.64463586,0.180621,0.1296069,-0.4644027,0.5277572,-0.52764136,0.45015204,0.030687906,0.36630392,0.1607343,0.3507349,0.40984696,-0.020937115,-0.18022892,-0.16064101,-0.1703848,0.11864877,-0.5339615,0.2413798,-0.21353899,-0.48031035,0.11668692,-0.39363986,-0.39307022,-0.7491622,0.1774084,-0.6509248,0.61043394,-0.015406404,-0.16649884,0.20163025,0.011620972,0.393581,-0.2591617,0.23121461,0.17670864,-0.08120383,0.059682153,-0.13001208,-0.36764637,-0.65304685,-0.5114319,-0.0013227444,-0.47578177,-0.28475928,-0.1841666,0.18222168,-0.124910176,0.21405149,-0.18262051,0.29577315,-0.36741105,-0.16085404,0.2303802,-0.20984088,0.19245306,-0.5903547,-0.15267688,-0.21600345,0.19685468,-0.21223159,-0.14472921,0.23881777,0.2728689,0.41521764,-0.038805332,-0.24777012,-0.32628664,-0.11015554,0.024201604,0.5968694,-0.12358414,-0.53040963,-0.22389644,-0.07519551,0.28504592,0.08348796,0.097559646,-0.2661963,-0.015859347,-0.04538995,-0.42163822,0.3611693,0.47350794,-0.4706716,-0.22175889,0.26012987,0.46430123,-0.056198534,-0.13086917,0.020089723,-0.060784932,-0.48063117,-0.17178062,0.04009156,-0.17037536,0.5020301,-0.16876033,0.07627771,0.7519697,-0.08774932,-0.03997242,-0.16976309,-0.09170333,-0.25801986,-0.08131857,-0.2957715,0.2310445,-0.3796742,0.037909977,-0.3098878,0.6729073,0.23660763,-0.6348886,0.40397912,-0.40512478,0.090555176,-0.0036808513,0.39109933,0.60663855,0.28504908,0.07559856,0.5394586,-0.4660344,0.18977666,-0.19566312,-0.27888808,0.05723526,-0.056135654,-0.034669764,-0.46377254,0.06560878,0.019566052,-0.12499118,0.156158,0.43935156,-0.5143987,-0.078204215,0.16648486,0.7693608,-0.37336168,-0.08457614,0.7586427,1.1065634,0.89821243,-0.019810738,1.2290059,0.5413406,-0.22843528,0.07296737,-0.40438873,-0.47047505,0.25196502,0.3945468,-0.1664984,0.3942574,0.052432492,-0.09778346,0.3607835,-0.2370517,0.08264567,-0.09106867,-0.015125781,-0.043015648,-0.18637043,-0.42719033,-0.17002085,-0.0042071445,0.0050363317,0.36087382,0.20982262,-0.276099,0.46116072,0.0713186,1.4085046,-0.042758487,-0.07348443,-0.046607055,0.4105717,0.3591557,-0.07544478,0.08411601,0.23648643,0.3708953,-0.014358701,-0.43640006,0.095686466,-0.27864444,-0.39424282,-0.26971015,-0.17425977,-0.087529205,0.06951195,-0.40473688,-0.08001769,0.12087452,-0.14707729,0.33298695,-2.6873102,-0.20737809,-0.15351658,0.16278249,-0.13563067,-0.45687068,-0.073667035,-0.4976992,0.4953365,0.39486775,0.32560995,-0.53076446,0.37581658,0.43899286,-0.4395084,-0.037675183,-0.63533926,0.017364211,-0.20146665,0.55200607,0.12848555,-0.0153724905,-0.014172974,0.27628583,0.567128,-0.029559508,0.15543461,0.060698185,0.43830714,0.03919494,0.45012453,0.34612012,0.6946465,-0.24492726,-0.22827098,0.40160146,-0.42009914,0.25972015,-0.186254,0.28079787,0.35101184,-0.3132281,-0.81361926,-0.5793434,-0.31759283,0.91568726,0.088733345,-0.40460813,0.14304797,-0.008141695,-0.3402013,0.16752732,0.34610793,-0.3361598,0.06036949,-0.7796253,-0.03152149,-0.011238445,0.030377818,-0.08205041,-0.005675379,-0.43712717,0.646752,-0.050522488,0.30192727,0.32544702,0.18735558,-0.18856564,-0.52814186,0.14026843,0.89381516,0.42053014,0.19805968,-0.24221265,-0.20425105,-0.27064657,-0.08259067,-0.08050335,0.43922025,0.64390314,-0.05293377,0.087005325,0.2161721,0.07881326,0.05483729,-0.1417833,-0.26775685,0.056069918,0.107494295,0.57989967,0.579911,-0.18054798,0.38864043,-0.16528097,0.67087376,-0.14900169,-0.46681136,0.7161784,0.9216505,-0.22232544,-0.20824288,0.53867084,0.4760875,-0.29629746,0.43767297,-0.812847,-0.43123126,0.35922986,-0.077047005,-0.31507862,0.20322198,-0.28389132,0.11970186,-0.9417772,0.257522,-0.19323865,-0.27192077,-0.661683,-0.28809518,-3.8945293,0.15710995,-0.13880362,-0.10329875,0.05773163,-0.050351404,0.26053482,-0.56904644,-0.38242674,0.18336186,0.050674394,0.53183484,0.0025766282,0.17448668,-0.21374702,-0.2266314,-0.23317727,0.2131293,-0.038642786,0.28965253,-0.01760476,-0.5139637,0.19016352,-0.36560673,-0.51094025,0.04784508,-0.68870914,-0.26282945,-0.2835986,-0.5655077,-0.21109228,0.5588031,-0.39680922,0.102985576,-0.2027556,0.099142924,-0.24566963,0.34133026,0.08034062,-0.022312837,0.08188679,-0.10478833,0.08546044,-0.33367115,0.17783058,0.12214319,0.28049088,0.38633257,0.035660453,0.024022818,0.3599559,0.57897854,-0.104437724,0.64165395,0.34652346,-0.20586613,0.34558374,-0.28945592,-0.26629022,-0.46507472,-0.4722348,-0.14906052,-0.38022333,-0.5563989,-0.14366172,-0.366127,-0.62165093,0.41586292,0.042617902,-0.06855748,-0.056473754,0.16736773,0.36944306,-0.31691557,-0.012718517,-0.025881695,0.004303165,-0.40965515,-0.41569448,-0.6111665,-0.53939253,0.18436927,0.8891099,0.044032026,-0.0410683,-0.008329363,-0.17741863,-0.07314011,0.17695168,0.09944329,0.045338534,0.40238577,-0.20184693,-0.70904946,0.49013466,-0.16967653,-0.23414977,-0.5969437,0.20537496,0.5961097,-0.55739045,0.49451894,0.5088165,0.15095638,0.06387874,-0.3866427,-0.1646804,0.1248261,-0.18306091,0.52169615,0.1488244,-0.6009904,0.53587747,0.2873984,-0.3934172,-0.6357183,0.5215835,0.076607674,-0.3135634,0.1199283,0.33682415,0.0054624826,0.027871564,-0.40397692,0.10010565,-0.48673218,0.12981865,0.3160366,0.11184084,0.43361193,-0.20272577,-0.16408506,-0.862086,-0.13117498,-0.35378212,-0.26146707,0.014458921,-0.008865664,0.044404157,0.23747788,-0.11766346,0.30960488,-0.2721166,0.19158404,-0.10263555,-0.21791479,0.4090132,0.2592218,0.41171548,-0.36165243,0.53926,-0.0238909,-0.078048036,-0.06405921,-0.007547494,0.56549394,0.091553055,0.44963673,0.057041973,-0.08418225,0.35822263,0.6869269,0.2972033,0.38028517,0.23532297,-0.36271107,0.23512326,0.1334787,0.10609405,0.16329093,-0.31875363,-0.14486462,-0.1965827,0.1342093,0.39357495,-0.01767942,0.42392755,-0.09030949,-0.28647906,0.17097217,0.14817187,0.13485286,-1.1102012,0.2533441,0.23719922,0.6973941,0.4316795,0.021266904,0.06369686,0.54698044,-0.3130218,0.0670964,0.23891214,-0.028065193,-0.4254951,0.38440108,-0.5538439,0.38571757,-0.07945645,-0.024879362,-0.009470872,-0.13379306,0.40933385,0.96809727,-0.19938333,0.223427,0.08033608,-0.28810158,0.02288203,-0.34404504,0.21389571,-0.30941296,-0.34897834,0.76226604,0.45899552,0.35113412,-0.14397885,-0.061429776,0.09510672,-0.1398935,-0.10154247,0.057342514,0.18809667,-0.06967252,-0.5763221,-0.30263546,0.51597047,0.08892112,0.15955181,0.0063866638,-0.3242784,0.193236,-0.102406,0.036778323,-0.0051331315,-0.59103596,0.04077891,-0.16838607,-0.41663885,0.60283154,-0.043140296,0.23382172,0.11292798,0.092211656,-0.29025188,0.32548007,-0.008739762,0.75584173,0.097435735,-0.0997209,-0.21181937,0.14627594,0.4599234,-0.29402447,-0.08668418,-0.29826188,0.07120999,-0.644238,0.31358862,-0.007325992,-0.37867394,0.047869086,-0.13271168,0.0766907,0.44033617,-0.14427917,-0.27414823,0.27436924,0.08460435,-0.23367368,-0.1599708,-0.21789391,0.30599323,0.1308653,-0.0031184182,-0.07869819,-0.016837459,-0.1263878,0.4710097,0.033719003,0.2905451,0.33148926,0.06847809,-0.4340052,-0.0020569265,0.08469119,0.4197754,-0.07096994,-0.0713287,-0.07658261,-0.60761404,-0.47562015,0.05085089,-0.100448266,0.11026676,0.12101601,-0.30271992,0.6285364,0.10738591,1.2852006,0.029032465,-0.44045725,0.14772598,0.6012708,0.08878483,0.092987396,-0.42809308,1.0352142,0.59241647,-0.16553597,-0.07971862,-0.30428022,-0.025948448,0.14041476,-0.210224,-0.2222888,-0.13486364,-0.65946925,-0.27494374,0.23159605,0.34351355,0.1602486,-0.023542892,0.22647034,0.17401396,0.083258495,0.43753976,-0.5105617,-0.39434206,0.36210203,0.23155987,-0.09796812,0.13825274,-0.4011866,0.4090507,-0.5015365,-0.0029838458,-0.34600455,0.19798657,-0.22966269,-0.31840366,0.24140657,0.06560914,0.30459505,-0.4596185,-0.40858132,-0.18840307,0.48338988,0.15629463,0.2232779,0.6110905,-0.14705415,-0.052560378,0.016629525,0.5129683,1.0337232,-0.334482,0.044944756,0.5160154,-0.3077851,-0.5526769,0.22005898,-0.2918604,0.15480591,-0.0062187687,-0.4050933,-0.4626602,0.3993166,0.04696154,0.01345697,0.085283175,-0.50418425,-0.06707461,0.34532827,-0.28534675,-0.28947732,-0.3604617,0.389027,0.6703647,-0.31545314,-0.47589043,0.16978559,0.33570656,-0.34086645,-0.5823482,-0.105864584,-0.14727622,0.56008637,0.31792527,-0.089972585,-0.05138509,-0.049013145,-0.42147034,0.08719705,0.2892717,-0.46337986,0.1074304,-0.3556275,-0.118091345,0.72058094,-0.017656155,0.12171538,-0.7705313,-0.42492157,-0.9553791,-0.5121224,0.61049944,0.24837439,-0.1602629,-0.5643201,-0.00040219352,-0.017907236,-0.027889272,0.0045955256,-0.24651161,0.4417049,0.039365742,0.5587565,-0.1128525,-0.7961422,-0.06914139,0.2668512,-0.20307389,-0.5432202,0.36176774,-0.011562943,0.92014533,0.14745593,0.013830133,0.36176163,-0.5427001,0.080230296,-0.31183034,-0.08602801,-0.7205459,0.14482643,580 -82,0.5277773,-0.16448466,-0.5106334,-0.024312168,-0.17133054,-7.169694e-05,-0.057063177,0.5213452,0.32974315,-0.2603935,0.08581039,-0.07795075,-0.010819058,0.2902152,-0.09299208,-0.2729294,0.06518017,0.09710671,-0.41565728,0.519332,-0.41701728,0.21187022,-0.27132052,0.49360895,0.12981115,0.33112356,-0.01721548,0.07907429,-0.10898171,0.008690121,0.19007382,0.59635496,-0.20286247,0.17536421,-0.080353916,-0.14932281,-0.059269503,-0.28944203,-0.43505946,-0.76917934,0.2475656,-0.54016405,0.3885017,0.06307943,-0.42776877,0.037092835,-0.07815232,0.18893805,-0.3205039,-0.13595508,0.014018447,0.014196418,0.08511302,-0.29810846,-0.12847349,-0.25189048,-0.4528194,-0.03263118,-0.4435204,0.020936325,-0.15634309,0.16502742,-0.29702312,-0.13458611,-0.11384551,0.5883504,-0.4798036,0.16757919,0.15211266,-0.120612375,0.31555665,-0.54673624,-0.32019582,-0.095692456,0.13396297,0.15240195,-0.31820256,0.29337794,0.30639872,0.40898135,-0.08954522,-0.06474053,-0.37669292,0.00087610167,-0.029975345,0.3606629,-0.1930047,-0.53220814,-0.15792395,-0.008987382,0.23672491,0.27668375,0.1691237,-0.22270879,-0.15640488,0.091978945,-0.2223497,0.40114665,0.5244871,-0.31981444,-0.077570155,0.26975775,0.4521191,0.34543842,-0.23535782,0.054398045,0.06275024,-0.527839,-0.07904725,-0.044677176,-0.08458456,0.57983315,-0.09341933,0.29511365,0.61385703,-0.18038209,-0.20787472,0.15079795,0.16989928,-0.14246126,-0.30869925,-0.106236815,0.026825171,-0.35268033,0.056626342,0.001046326,0.6332735,0.14724806,-0.51238143,0.3645159,-0.4581589,0.132185,-0.06374285,0.54563564,0.7127638,0.41139597,0.45702657,0.7590789,-0.30043656,0.04574825,-0.12254493,-0.27483118,0.08706255,-0.107413396,-0.18206003,-0.5323438,-0.11194962,0.033386193,-0.28999788,0.19531623,0.36121416,-0.53764296,-0.21406968,0.107184306,0.70675695,-0.24098599,-0.1049448,0.58186084,1.0735378,0.84146607,0.016460579,0.91897464,0.123857796,-0.077563,0.302423,-0.4298994,-0.6531899,0.29824394,0.29277968,-0.005133856,0.1894779,0.035131358,-0.14232375,0.3950582,-0.22841516,0.03339631,-0.05606938,0.44466913,0.144307,-0.17063294,-0.36450434,-0.24272521,-0.14147915,-0.048112053,-0.11205808,0.2919472,-0.24483787,0.29277304,-0.019532047,1.6285964,0.006721434,0.051956687,0.1575981,0.5349188,0.2633994,-0.26359233,-0.10715787,0.41579497,0.19588523,0.16870134,-0.49339178,0.25090855,-0.27299726,-0.5756002,0.013012312,-0.35866177,-0.089241154,-0.047551606,-0.4906684,-0.12382731,-0.10401363,-0.31630248,0.5030979,-3.085985,-0.29599565,-0.03236821,0.42310667,-0.24166909,-0.22483574,-0.0976324,-0.3741389,0.29151088,0.32414398,0.4341947,-0.80144155,0.16494857,0.39266896,-0.41939792,-0.07031774,-0.5324315,-0.03093426,0.016533915,0.35586643,0.038233727,0.077249296,0.10375407,0.16821684,0.4510638,-0.034658723,0.1903791,0.19360483,0.2320664,-0.048382707,0.41667354,-0.099148646,0.3768307,-0.2918126,-0.24202666,0.2995506,-0.3465334,0.19999456,0.07579319,0.123943,0.52053547,-0.33894682,-0.8109459,-0.48167613,0.08077206,1.1072085,-0.19306447,-0.41124138,0.3318794,-0.68214387,-0.230967,-0.23774898,0.38168576,-0.020542456,-0.18205681,-0.7414469,-0.0092238095,-0.14029855,0.058703896,-0.10054423,-0.077905595,-0.19024348,0.4997875,0.009305178,0.46035707,0.42258328,0.045543723,-0.2997703,-0.5834362,-0.060727052,0.51051855,0.42694607,0.16508074,-0.20947129,-0.17547494,-0.18621093,0.100776255,0.18756919,0.55680525,0.5140201,-0.14035833,0.23514389,0.3234158,-0.10506326,-0.134425,-0.22513154,-0.20963144,0.025331635,0.09601973,0.51185256,0.84186417,-0.18755552,0.43826595,0.07059863,0.17628558,-0.15440486,-0.48561165,0.4765814,0.8333106,-0.3027981,-0.31146246,0.5400232,0.37860078,-0.38153654,0.30551258,-0.45387304,-0.22890635,0.5224157,-0.20546255,-0.29371923,0.3218304,-0.2641744,0.21259989,-0.71316844,0.16225937,-0.317164,-0.5050627,-0.44024256,-0.11708413,-3.105273,0.16463478,-0.27678677,-0.26345438,-0.01110021,-0.13624066,0.1379153,-0.6549986,-0.46907753,0.13103549,0.20509557,0.6114433,-0.1260888,-0.09026898,-0.3032932,-0.49132872,-0.19459619,0.13171475,0.15466705,0.49112654,-0.056159604,-0.58386815,-0.07573411,-0.0013813749,-0.36028373,0.09542532,-0.53373766,-0.55027014,-0.13025649,-0.53263235,-0.34326592,0.65755004,-0.00732141,-0.04421695,-0.21206798,0.023957673,0.059917264,0.2453295,0.094498396,-0.0021329643,0.032847125,-0.04679536,0.013541292,-0.3404308,0.0668179,-0.05209865,0.19247009,0.4601849,-0.06595811,0.2515089,0.6009761,0.64469814,-0.13134418,0.85589117,0.5648874,-0.059522524,0.28965572,-0.29405394,-0.26871926,-0.45831275,-0.33288968,0.010922328,-0.40592685,-0.4207684,-0.11189664,-0.38049498,-0.6090007,0.58127666,-0.19212833,0.27301124,0.03335727,0.23935102,0.62288487,-0.15787861,0.011747621,0.051299613,-0.21180996,-0.59063494,-0.29602408,-0.6016624,-0.47640023,0.33255717,0.9300497,-0.38588062,0.003961997,0.0991118,-0.3465315,-0.13317627,-0.0059775915,0.024286821,0.17545415,0.38598806,-0.20994344,-0.34523058,0.2715773,-0.11483741,-0.14244226,-0.47631466,0.21936378,0.63642883,-0.54198027,0.62819195,0.152994,0.039949432,-0.3149407,-0.61244875,-0.10725488,0.082676485,-0.1656416,0.58365315,0.3845362,-0.8579045,0.46708164,0.3848734,-0.25604266,-0.5661024,0.4622202,-0.17265005,-0.40033907,-0.21017861,0.31147832,0.1096469,0.09381728,-0.21300396,0.35478336,-0.45712036,0.20362648,0.32859254,-0.25440368,0.31529793,-0.18046598,0.019938875,-0.73944193,-0.126411,-0.4780837,-0.32297564,0.31618187,0.1001923,0.08857547,0.008757178,0.17008059,0.33289132,-0.3256709,0.09235257,-0.01755568,-0.15701072,0.31467044,0.49171305,0.5234486,-0.31734836,0.507372,-0.01404296,0.021849621,0.05048473,0.02288095,0.28222758,0.09128566,0.42342198,-0.023755025,-0.21489652,0.325372,0.82713675,0.09019834,0.4467922,0.0020666653,-0.17699248,0.040328547,0.032921962,0.32109725,-0.18385945,-0.4259738,0.08609679,-0.26767945,0.21521144,0.43497238,0.19362554,0.17435275,-0.0027515106,-0.4280895,0.018295133,0.20488507,0.117468365,-1.3743944,0.32870072,0.21472347,0.6903527,0.34536362,0.20802496,-0.1475495,0.68760717,-0.18408391,0.08630358,0.4196625,0.021770526,-0.48554254,0.42331415,-0.8159739,0.6235675,-0.09020806,-0.03793644,0.06816512,-0.059746716,0.42973348,0.7015029,-0.052218154,-0.1022193,0.15430203,-0.32020104,0.077426665,-0.30406708,0.022564316,-0.7650436,-0.37033165,0.51847345,0.6129735,0.3256716,-0.17249279,0.016464934,0.22127773,-0.06304403,0.21136552,-0.036462445,0.17563325,-0.22834921,-0.6720043,-0.09937109,0.44221637,0.16984282,0.14518286,-0.08394569,-0.043441765,0.2282883,-0.1779259,-0.03663664,-0.0092167,-0.6619891,-0.13384545,-0.34158736,-0.3967097,0.5341519,-0.16148742,0.35182235,0.17071642,0.074355856,-0.34013933,0.4430663,0.0007849885,0.82359636,-0.17406806,-0.029780556,-0.4863212,0.19747321,0.136074,-0.12653324,-0.21324599,-0.22132428,-0.026353091,-0.35413384,0.41623873,0.07023181,-0.24547227,-0.17888525,-0.07843224,0.08088586,0.5304611,-0.08628557,-0.33998668,-0.34799916,-0.13245723,-0.41474748,-0.19405563,0.05892627,0.2672308,0.28121153,-0.10396883,-0.05803532,-0.12519602,0.13400033,0.31844044,0.117403865,0.15363741,0.41003093,0.0138841495,-0.24531342,-0.1520761,0.22918358,0.51957107,0.06386703,-0.08606957,-0.36062425,-0.47764605,-0.42369828,-0.11187339,-0.11341238,0.4035415,-0.023825807,-0.18801263,0.73281693,-0.11351469,1.1314176,0.020254295,-0.2580668,0.08482939,0.45245415,0.046581555,-0.008784324,-0.3130918,0.78636694,0.5141734,-0.1908136,-0.22478974,-0.2557773,-0.021732505,0.21812028,-0.19746092,-0.093624406,-0.027071293,-0.6380787,-0.039344512,0.20200817,0.18333343,0.24893437,-0.17895606,0.050209254,0.29881215,0.061775405,0.2673967,-0.35237756,-0.010769218,0.25620693,0.35506868,0.06710037,0.056354035,-0.50113463,0.4118897,-0.3573609,0.22716643,-0.22925009,0.24103472,-0.123704314,-0.4365366,0.21173114,-0.069793575,0.31322503,-0.31468487,-0.20658809,-0.32694468,0.40879846,0.1408382,0.013489006,0.54123414,-0.2864099,-0.07963523,0.12273883,0.47519428,1.0099192,-0.28288907,-0.17459781,0.3672909,-0.2711864,-0.7833955,0.28020617,-0.30656847,0.2021285,-0.07889598,-0.15120849,-0.64477646,0.24708375,0.17916986,0.11361152,-0.10645331,-0.5742597,-0.03720072,0.21155296,-0.3697171,-0.1319804,-0.30174217,0.029810723,0.4770581,-0.20724995,-0.51069313,0.024973247,0.2813179,-0.18360674,-0.39292878,0.03111083,-0.32521468,0.3217086,0.06140454,-0.40221316,-0.09600524,0.13227972,-0.45983312,0.022504555,0.10178903,-0.31165045,0.19482657,-0.324248,-0.14870802,0.9946754,-0.3421424,0.3280834,-0.2515268,-0.427153,-0.67206407,-0.16945082,0.34979272,-0.028888356,-0.032575354,-0.7616229,0.103311636,-0.058113623,-0.25317848,-0.20877442,-0.30428296,0.54726815,0.06993552,0.27236813,-0.020427026,-0.69501185,0.14312778,0.13530007,-0.10308997,-0.5461365,0.5936762,-0.24500722,0.7168569,0.12794617,0.08870855,0.29198793,-0.35920793,-0.02013734,-0.203473,-0.23475519,-0.5400156,-0.044311326,589 -83,0.5681739,-0.1530087,-0.36485252,-0.19430129,-0.30421966,0.0046898685,-0.24957618,0.39911488,0.28432837,-0.4314766,-0.2648556,-0.25659883,0.13237037,0.08293189,-0.060254604,-0.29890177,0.0039403364,0.27200657,-0.64513355,0.6811705,-0.29624993,0.2602382,0.10464605,0.4366364,0.2155937,0.19268112,0.04356681,0.03079696,-0.1449937,-0.22685042,-0.0016963221,0.19839185,-0.6227999,0.21632929,-0.42298692,-0.41404364,-0.21602081,-0.48269925,-0.3014122,-0.8025819,0.11513133,-0.89819247,0.48358306,-0.09427075,-0.41270345,0.3506137,-0.003119439,0.2536955,-0.18096429,0.056075748,0.11094093,-0.02997128,-0.18737194,-0.20942874,-0.16078456,-0.27373904,-0.45486253,0.13191837,-0.31388324,0.059712257,-0.42666852,0.13614346,-0.26282805,0.10450439,-0.10345486,0.4320255,-0.35744,0.2172994,0.09742993,-0.12814319,0.19753751,-0.46282682,-0.0529058,-0.15539001,0.2904137,-0.09946982,-0.27170926,0.1348725,0.2320865,0.5398661,0.06674691,-0.19554411,-0.22827817,-0.07024041,-0.068354845,0.3947691,-0.012686461,-0.3105818,-0.17656028,-0.2450886,0.34020162,0.22350518,0.16544706,-0.15805039,-0.16542038,-0.18856072,-0.21926752,0.26614437,0.55000156,-0.28440228,-0.18742403,0.39512074,0.62694335,0.06828721,-0.12791136,0.0020815432,-0.031455044,-0.45857844,-0.18070975,0.050738946,-0.26615185,0.4563735,-0.20391074,0.17623189,0.5661567,-0.12697592,-0.16459131,0.2065725,0.060054526,-0.08033395,-0.3254481,-0.25889683,0.28010088,-0.5773592,0.07778561,-0.24480039,0.7126309,0.03455773,-0.7395313,0.2426587,-0.5489974,0.19778906,0.0132112745,0.47473556,0.85700876,0.43134832,0.27882633,0.6622622,-0.31921297,0.027181992,-0.21968073,-0.23397803,-0.077574596,-0.19882144,0.04164903,-0.4997053,0.031676035,-0.011417657,-0.17659956,0.08963868,0.6060209,-0.5106645,-0.19555517,0.10536918,0.69997406,-0.2888217,-0.11551607,1.0926661,0.8075115,1.0179629,0.14322022,1.1258324,0.27682242,-0.09686448,0.116461284,-0.30689338,-0.51317084,0.25872907,0.2706509,0.072996646,0.12889804,0.06277101,0.03595616,0.31057936,-0.49514437,-0.06800375,-0.318383,0.14689052,0.014019966,-0.00077231415,-0.4629991,-0.4360992,-0.05782549,0.21314096,0.18466382,0.28738895,-0.19316368,0.41028363,0.060227428,1.3264551,-0.022792643,-0.049730096,0.17553474,0.37847203,0.23788746,-0.23211052,-0.17911394,0.27150238,0.3233157,-0.09170963,-0.49073493,0.042776987,-0.117928796,-0.3466838,-0.054265253,-0.36094534,-0.12069875,-0.13222922,-0.45314384,-0.26640576,-0.15584505,-0.4847607,0.52151096,-2.5107436,-0.18714169,-0.059049524,0.39495283,-0.12044434,-0.3710876,-0.20322657,-0.5679178,0.44255713,0.27140734,0.4606073,-0.66843235,0.42887807,0.3113923,-0.6557116,-0.047677428,-0.69263756,0.01937823,-0.00455115,0.27935794,-0.0116875395,-0.1073634,-0.12357725,-0.087423496,0.6107895,0.097062,0.2733279,0.5420295,0.3127361,-0.012122162,0.39151156,0.12387106,0.41878992,-0.2896481,-0.30556843,0.36896867,-0.3682248,0.154266,-0.25233242,-0.023611672,0.60451317,-0.60528624,-0.8558035,-0.69179773,-0.1865425,1.2162769,-0.21248925,-0.44937184,0.20601648,-0.3522367,-0.2830935,-0.02432461,0.5918709,-0.18290977,-0.05717261,-0.8224027,-0.06726443,0.048606098,0.12371602,-0.051320873,-0.007596612,-0.39477926,0.6422309,-0.1667492,0.39018482,0.30977252,0.12814452,-0.15864386,-0.3872912,0.18429598,1.0024757,0.36409593,0.1523428,-0.32619783,-0.2981109,-0.39618486,-0.06424968,0.08614839,0.5538402,0.5527815,-0.074390166,0.17650256,0.33741656,0.026658662,0.10334652,-0.19357847,-0.094996154,-0.24637248,0.15302947,0.6757407,0.7416059,-0.013495991,0.33193916,-0.21025369,0.20401601,-0.174263,-0.6410677,0.5821466,0.8475403,-0.17462136,-0.24540085,0.5468116,0.4821951,-0.09016344,0.5396495,-0.5154098,-0.48249727,0.27104667,-0.15467672,-0.33714682,0.26911837,-0.25490007,0.20107764,-0.77594507,0.22925854,-0.12902611,-0.48618412,-0.4696705,-0.1211708,-2.3600366,0.1919561,0.06874699,-0.22242017,-0.110103555,-0.4804582,0.09562057,-0.31757793,-0.60987294,0.13405402,0.041403018,0.71467656,-0.0682133,0.11015242,-0.113053456,-0.4631825,-0.48842964,0.07003009,0.16341019,0.4510911,-0.113373265,-0.35279563,-0.0073620006,-0.17765658,-0.41712612,-0.05650776,-0.6127924,-0.422106,-0.22825265,-0.44944054,-0.30143717,0.46536785,-0.19717857,0.19739708,-0.28952533,-0.041077826,-0.064807266,0.29443967,0.047745906,0.0911367,0.17229034,-0.0837947,0.09059644,-0.20296276,0.32326177,-0.0034853239,0.05661275,0.28644642,-0.22981398,0.2881683,0.4724843,0.6340348,-0.15942805,0.9396832,0.42454243,0.024620948,0.27355754,-0.12539199,-0.3706233,-0.56946635,-0.16768606,-0.13123275,-0.48940963,-0.16631621,0.018026646,-0.29843622,-0.83426666,0.47546342,-0.013501078,0.17698386,0.009884089,0.3082693,0.5841798,-0.25259653,0.018721886,-0.12098273,-0.13552538,-0.4169621,-0.39922187,-0.74495065,-0.4220414,0.08815551,0.98510736,-0.09191776,0.08558169,0.119992785,-0.022033254,0.07662112,0.25996643,-0.03001783,0.07361525,0.5704144,-0.14125955,-0.5116916,0.37289912,0.027112491,-0.20788206,-0.51125187,0.31865954,0.45779294,-0.59822464,0.40556508,0.37597376,0.089541316,-0.18108056,-0.5001706,-0.17085248,-0.23165585,-0.25799555,0.45643836,0.4294241,-0.7709181,0.49974748,0.29462332,-0.042617828,-0.9375118,0.45144027,-0.09423985,-0.29265893,-0.1491974,0.36499473,0.15966894,-0.11034423,-0.24715407,0.096583575,-0.4311277,0.39046997,0.18921217,-0.15242386,0.3351548,-0.34211797,-0.14236036,-0.69986284,-0.10723285,-0.47376797,-0.35479385,0.032188892,0.06649925,-0.015955929,0.14655872,0.16060156,0.38176155,-0.2194048,0.0923138,-0.24398631,-0.24578536,0.35736057,0.32965687,0.5711434,-0.24394861,0.69620895,0.018943213,-0.045363225,-0.17162399,0.056679994,0.40950885,-0.1214879,0.2900306,-0.07875487,-0.30950207,0.19391455,0.5281167,0.18446222,0.35087606,0.07100165,-0.11275355,0.13687128,0.11340815,0.32216778,-0.14386985,-0.4034217,0.0017131567,-0.44718093,0.063787885,0.35081726,0.16924922,0.30292144,-0.072584525,-0.21411142,-0.007363986,0.15440759,-0.13110428,-1.425344,0.2985461,0.20361623,0.7989713,0.5175352,-0.013771843,-0.07135401,0.72307044,-0.24368374,0.12177837,0.18228447,-0.122698516,-0.3435298,0.53961927,-0.8188913,0.4354019,-0.053851344,-0.029616842,0.1790177,-0.03616398,0.37451303,0.7487599,-0.15035243,0.086031035,-0.07187548,-0.30795708,0.1585726,-0.34190708,0.08469496,-0.6379594,-0.3026614,0.8158574,0.30029586,0.45588607,-0.31109363,0.013642031,0.0069097094,-0.16531175,0.09693377,0.19647086,0.100075126,-0.00033029914,-0.54417974,-0.1471946,0.4046203,-0.05236686,0.21193388,0.16833076,-0.23245245,0.123002924,-0.19519278,0.0066589545,-0.092482336,-0.6466294,-0.24800774,-0.36091423,-0.18988027,0.35524336,-0.06866869,0.24899122,0.19411837,0.13291106,-0.22977479,0.18689391,0.15878592,0.6561173,0.08216375,-0.16302341,-0.14068165,0.33072096,0.32808432,-0.20896187,0.045674905,-0.123548985,0.06534815,-0.69836974,0.4301113,-0.07513861,-0.36331555,0.33554816,-0.08816221,0.042922422,0.51458246,0.006332651,0.035426095,0.1111355,-0.049808007,-0.35827422,-0.20518856,-0.12417021,0.24602911,0.24504484,-0.17816904,-0.06568454,-0.019023782,0.023073878,0.635345,0.049226195,0.30516282,0.26335487,0.14076062,-0.3360073,0.09736003,0.16274977,0.4734142,0.070918314,-0.058056623,-0.23475288,-0.30821437,-0.34609264,0.15481056,-0.10870117,0.23392662,0.13170114,-0.05566664,0.7591735,0.094782114,1.0098007,0.11609247,-0.32170093,0.21124008,0.42367464,-0.068926945,-0.05933579,-0.23729378,0.8807067,0.37151504,-0.1630826,0.029082557,-0.28521255,-0.026327338,0.09046739,-0.2893847,-0.11388688,0.01828615,-0.5597646,-0.33056575,0.10533878,0.28815615,0.15565261,-0.20110533,0.09344293,0.31454048,-0.079872295,0.29701856,-0.3816548,-0.21545926,0.40475398,0.20686767,-0.10394019,0.09209,-0.43684435,0.3224846,-0.5401953,-0.04175402,-0.11302263,0.13317366,-0.16970953,-0.34600922,0.2278537,0.062817454,0.37112686,-0.28584403,-0.46158564,-0.31727645,0.43639523,0.09511115,0.116830125,0.36862993,-0.23913452,0.04578576,0.045365695,0.45400158,0.9323564,-0.048389908,0.108746305,0.37317565,-0.22213574,-0.53512895,0.26282048,-0.2557662,0.28982335,0.086331606,-0.17097023,-0.44504887,0.23152283,0.18981507,0.080972046,0.19629388,-0.6017761,-0.04883394,0.2846753,-0.083301686,-0.1021233,-0.26395875,0.07037025,0.41598594,-0.077656195,-0.3972202,0.06956786,0.08544829,-0.30675745,-0.51774114,-0.09143998,-0.43346566,0.1271915,-0.06457898,-0.3370911,-0.10809159,0.17983031,-0.35450786,-0.010501638,0.003008172,-0.20770565,0.07725057,-0.4556325,0.1393207,0.87259036,-0.122360855,0.4038844,-0.33886355,-0.5867585,-0.8349099,-0.25083113,0.37536252,0.083609775,-0.04943662,-0.6583682,-0.043641746,-0.1726307,-0.27768412,0.020967107,-0.33647144,0.47104296,0.2650875,0.35380527,-0.0038628802,-0.7484584,0.22255336,-0.010556601,-0.2820466,-0.43614233,0.42671525,0.1255,0.6648488,0.18605736,0.06346968,0.13872582,-0.58686286,0.015887931,-0.10031892,0.058124192,-0.5286971,0.014504135,591 -84,0.34143355,-0.19380826,-0.36735857,-0.21914768,-0.45558566,-0.0014899597,-0.24832296,0.05893723,0.17182112,-0.25884843,-0.08959293,0.048691902,0.03493788,0.34055907,-0.18874352,-0.75422055,-0.13918397,0.011545315,-0.66396606,0.529325,-0.6426405,0.47803617,0.07805182,0.22376351,-0.014823988,0.4613407,0.33999968,-0.26560086,-0.014667787,-0.053217083,-0.22945176,0.38328934,-0.55579436,0.15545684,-0.029132204,-0.25009742,0.29215646,-0.35311028,-0.15064171,-0.5945092,0.175782,-0.74869514,0.4944235,-0.06876597,-0.06782263,0.049416,0.3660809,0.31236,-0.46951467,0.22002655,0.1661354,-0.26515794,-0.053199574,-0.2546426,-0.04421524,-0.50674933,-0.43870634,-0.13581668,-0.8442553,-0.43510568,-0.21184231,0.19761945,-0.38430402,0.074088916,-0.18062302,0.27865458,-0.5134847,-0.015462071,0.22880417,-0.19645661,0.12052775,-0.5133506,0.009577688,-0.044034146,0.4612611,0.0185709,-0.14176093,0.4267382,0.2302147,0.37194037,0.27055892,-0.34749866,-0.2011906,-0.44841495,0.21247388,0.3435135,-0.17650193,-0.19871865,-0.1782059,0.08450562,0.31079492,0.37100273,-0.09462576,0.010295615,-0.06971718,-0.030994996,-0.25679454,0.3872768,0.55588627,-0.29285628,-0.5117512,0.28052744,0.4722175,0.12607244,-0.1363998,0.095108,0.029572725,-0.45339137,-0.2121044,0.08291323,-0.13296297,0.4464296,-0.17758963,0.13600752,0.9501691,-0.28804263,0.11133559,-0.16374367,-0.17464742,-0.123833954,-0.07250982,0.01018611,0.018412706,-0.69090486,0.026717596,-0.19826506,0.84403217,0.24086079,-0.55515397,0.33383414,-0.5796634,0.114894226,-0.042867973,0.62486446,0.5129621,0.44496998,0.42590648,0.73623496,-0.30174822,0.15098953,-0.081712425,-0.4317444,0.08104611,-0.33106506,0.03344705,-0.4453544,0.142412,-0.09782219,0.1476462,0.0010504983,0.37626532,-0.5815898,0.07988064,0.19475971,0.815536,-0.36682668,0.030641694,0.6007702,0.9509595,1.0587084,0.044258907,1.0669837,0.29357472,-0.2652474,0.05470684,-0.34792846,-0.5174297,0.13885008,0.37127748,-0.049988687,0.3504712,-0.094313204,0.04202623,0.36786193,-0.44486722,-0.10457543,-0.05702403,0.3683486,0.18690273,-0.09004751,-0.3852015,-0.15450971,0.08267584,-0.1550879,0.13481684,0.305467,-0.11885084,0.49578017,-0.013573594,1.2714119,0.0447063,0.14694181,0.12991557,0.5531204,0.2916425,0.13959014,0.05863866,0.54513323,0.34365955,0.08271158,-0.6849554,0.121056065,-0.40936363,-0.4288392,-0.18501222,-0.46285343,-0.17551391,0.027197719,-0.36339352,-0.20743847,-0.08703021,-0.19053859,0.37868896,-2.8037946,-0.24650332,-0.11487284,0.2463018,-0.35144427,-0.07901792,0.02584619,-0.5864517,0.22058177,0.26571774,0.35850242,-0.6644287,0.4837517,0.58519065,-0.5028239,-0.225144,-0.61303043,-0.094521396,-0.10971587,0.640996,-0.06411622,-0.10014814,-0.29466566,0.15874189,0.73564345,-0.06068309,0.2556352,0.39878988,0.40506703,0.2545125,0.5867346,0.07580754,0.57428443,-0.35562444,-0.09511066,0.39498013,-0.33912355,0.2729856,-0.10468793,0.049146477,0.4027736,-0.5163832,-0.90160906,-0.47882247,-0.2702102,1.0310442,-0.42152765,-0.39682508,0.2764155,-0.09908062,0.0002565179,-0.0037666298,0.3905512,-0.1770069,0.22886376,-0.5915968,0.29641902,-0.06052036,0.23555091,0.12550549,0.036455162,-0.235876,0.6410452,-0.052511334,0.53407454,0.15805486,0.27863264,-0.1821723,-0.42352086,0.065667704,0.8018693,0.48012632,0.0050917417,-0.11531832,-0.37886912,0.118086316,-0.25075728,0.010445611,0.5338747,0.77938455,0.022152133,0.16055529,0.29331464,-0.12336629,0.15324628,-0.18447123,-0.048405528,-0.009202857,0.12832133,0.46983975,0.60456264,-0.2079575,0.4729198,-0.13237947,0.48133466,-0.08612663,-0.5416949,0.59202325,0.714164,-0.12796496,-0.043596543,0.58384603,0.6284599,-0.34109688,0.46634245,-0.6369175,-0.3252725,0.77891886,-0.2929908,-0.472596,0.061437752,-0.24201459,0.14866626,-0.85142875,0.35551655,-0.31895638,-0.42660618,-0.5500285,-0.1938034,-3.6720805,-0.025941849,-0.309931,-0.07124642,-0.32716632,-0.068936266,0.17663252,-0.86066395,-0.55789244,0.15945135,0.15505555,0.4393968,-0.07365964,0.14753088,-0.32491678,-0.21896386,-0.12234703,0.293265,0.11724365,0.14799166,-0.13312079,-0.4116816,0.01622248,0.011112969,-0.51582587,0.29141408,-0.3587558,-0.5128715,-0.064497314,-0.46995452,-0.14899144,0.66570216,-0.26270887,-0.013348063,-0.28437203,0.12032207,-0.2137654,0.07912466,0.2952888,0.29710895,0.21914762,-0.1637605,0.043573704,-0.37380403,0.5197245,-0.05895637,0.47583604,0.20230806,0.04223737,-0.0025396235,0.48210174,0.3615501,-0.09162491,0.87220734,0.28644297,-0.15534812,0.37418744,-0.37252486,-0.3283026,-0.68659246,-0.53286535,0.028669585,-0.44639438,-0.5978967,-0.06159064,-0.30319235,-0.74136925,0.6413177,-0.112174004,0.38773614,-0.24529323,0.35155725,0.3941142,-0.029125996,-0.049660016,-0.072506316,-0.16875097,-0.6007756,-0.28024852,-0.7267024,-0.46142307,0.08344741,0.9640552,-0.35102642,-0.09516704,-0.20040306,-0.21473193,-0.046040393,0.09175654,0.21155599,0.36071408,0.4426729,0.058825966,-0.8176305,0.54061234,-0.06473086,-0.04469544,-0.43332952,-0.029256463,0.605687,-0.93540144,0.51057345,0.4215241,0.02586687,0.24047935,-0.53039956,-0.17878266,-0.017233893,-0.1433859,0.3503877,0.09376535,-0.736706,0.54104954,0.16092312,-0.5383687,-0.6524104,0.27972293,-0.085890785,-0.29426277,0.067354456,0.3473312,0.30130076,-0.06987969,-0.024904959,0.21192124,-0.49369353,0.24786234,0.24054146,-0.043285128,0.39493632,-0.09647764,-0.5220762,-0.7432798,-0.12496929,-0.45239466,-0.25066578,0.20961569,-0.04823496,-0.10904777,0.17485759,-0.030463051,0.4649881,-0.23089394,0.1438628,0.1471178,-0.35242513,0.27768564,0.4766572,0.3747468,-0.29540446,0.6605558,0.23026434,-0.07449553,0.06789696,0.018254735,0.31152624,-0.09533371,0.43254226,-0.11251539,-0.23716709,0.5378082,0.818107,0.2013863,0.37800226,0.08260943,-0.09742223,0.4953429,-0.013111645,-0.08329718,0.1559453,-0.34016278,-0.12388283,0.07438178,0.10103603,0.48497128,0.33042628,0.44526902,0.074633114,-0.020370748,0.029841758,0.34199333,-0.0964876,-0.9253617,0.2665338,0.25812173,0.7406843,0.42560485,0.1903458,-0.05890882,0.6300718,-0.4394231,0.026389996,0.4382323,0.10960899,-0.43934685,0.78595567,-0.48404923,0.50216436,-0.13636291,-0.0039666165,0.015237138,0.12335491,0.24370615,0.89318573,-0.0891995,-0.049862623,0.017665511,-0.3546682,0.11444778,-0.33345395,-0.090247005,-0.25455824,-0.24428816,0.6422781,0.30845934,0.30170515,-0.14657554,-0.12399368,0.04549537,-0.2085604,0.33535814,-0.07326631,0.14692271,-0.05201476,-0.25496256,-0.36332834,0.6478002,-0.05580711,0.32537225,-0.24988802,-0.23646569,0.19472085,-0.22554252,-0.10913056,0.08389623,-0.41328385,0.26937944,-0.1195309,-0.67083144,0.43787256,-0.2715465,0.14117233,0.26261994,0.036153983,-0.2603291,0.0820637,0.028093874,0.553632,-0.13874881,-0.34628633,-0.33167553,-0.12812304,0.22969489,-0.30433,0.17540446,-0.26560396,0.14203589,-0.5163005,0.59783745,-0.2465232,-0.4186847,-0.0044517145,-0.4078957,-0.112533905,0.46973056,-0.040210042,-0.14558198,0.08989965,-0.1931771,-0.397047,-0.17573611,-0.28708804,0.21532091,0.22473237,-0.014244035,-0.08089641,-0.32589427,-0.10753348,0.5578367,-0.0420858,0.35684177,0.08986744,-0.043779977,-0.24511665,-0.014062423,0.15237746,0.34954268,0.07755801,0.20167844,-0.30219465,-0.48099935,-0.31193393,0.22427963,-0.22328293,0.22702676,0.081991665,-0.45471048,0.9717611,-0.07914564,1.051659,0.09489341,-0.32867938,0.054946363,0.56900406,-0.08980115,0.072114944,-0.17773996,0.97013444,0.6324372,-0.087855324,-0.17280869,-0.41837344,-0.082887694,0.333068,-0.37533885,-0.19574912,-0.03326933,-0.482408,-0.33535635,0.29811773,0.11986479,0.12651478,0.07748047,-0.22312295,-0.13065472,0.18699884,0.37375796,-0.6688432,-0.34871405,0.29061627,0.12894978,0.037645224,0.1609996,-0.40710348,0.43190292,-0.6050025,0.19672036,-0.40625727,0.14586091,-0.24228628,-0.22350352,0.20208542,-0.016980872,0.28203812,-0.28210223,-0.47077107,-0.07414065,0.38880637,-0.012296997,0.1849455,0.5857076,-0.267782,0.09694423,0.051362876,0.58447003,1.2482195,-0.24766362,-0.122351095,0.21143036,-0.48182464,-0.7125141,0.41110057,-0.4010385,-0.24472243,-0.056345537,-0.54198813,-0.41742676,0.24733573,0.26155263,0.13463813,0.23231673,-0.61491066,-0.24612999,0.23006645,-0.4090952,-0.242528,-0.17935139,0.3831086,0.96604556,-0.37627286,-0.11206209,-0.001053486,0.29975903,-0.38539886,-0.58390653,-0.092870936,-0.01832461,0.51590276,0.20151755,-0.09902659,0.028084364,0.2775982,-0.38957888,0.16915762,0.48805952,-0.3811133,0.06618442,-0.15867653,-0.0044088736,0.8002136,-0.32675505,-0.20472538,-0.73747146,-0.40678242,-0.9100323,-0.3919247,0.40544307,0.15176788,-0.009195216,-0.36648953,-0.0002682656,0.039489344,-0.18525302,0.10015262,-0.6795235,0.37157646,0.15773042,0.46900874,-0.22947781,-0.8261248,-0.08032566,0.10942466,-0.039033636,-0.6659942,0.672927,-0.34637177,0.78454745,0.060097307,-0.25787416,0.042469412,-0.3263782,0.13468607,-0.33044216,-0.14230931,-0.84513634,0.038870238,597 -85,0.67489713,-0.31701237,-0.670028,-0.1011074,-0.28572497,0.0068246573,-0.18065661,0.42666864,0.3952455,-0.24484769,-0.08567484,-0.14912444,-0.029835861,0.13474181,-0.10850787,-0.31004727,0.0796874,0.11016606,-0.656757,0.5689234,-0.5235207,0.20967916,-0.0430562,0.49211287,0.38541102,0.3253953,0.020939944,0.13628477,-0.120033175,-0.16261572,0.206875,0.28915912,-0.60075116,0.15213828,-0.32260808,-0.2831203,-0.06752011,-0.45657778,-0.5181693,-0.8411739,0.40832585,-0.715244,0.43143463,0.0023809671,-0.25385734,-0.0021976605,0.085805036,0.13523723,-0.30008233,-0.096265525,0.17454812,-0.061415665,0.023260929,-0.22158472,-0.14654183,-0.28852475,-0.54226696,-0.071479656,-0.51078033,-0.06494522,-0.39827916,0.15217102,-0.34097457,-0.11095437,-0.1158705,0.6327008,-0.43913418,0.28856522,0.029973209,-0.13482857,0.13189173,-0.68752885,-0.41812265,-0.17853574,0.10850202,0.09364277,-0.38949656,0.35716403,0.19508216,0.30138662,0.004329808,-0.07568532,-0.327111,-0.15185955,0.15418701,0.31048328,-0.06672592,-0.5841541,-0.12967226,-0.21797936,0.34729555,0.26392075,0.28109816,-0.38493058,0.050606586,0.091993704,-0.14465888,0.5306364,0.6479891,-0.21854764,-0.11843432,0.10002342,0.31560242,0.34968415,-0.23841172,0.032628357,-0.05789084,-0.62373495,-0.18578684,0.040049996,-0.11269902,0.6160033,-0.09357995,0.30736157,0.5919688,-0.28046933,-0.23055807,0.19708002,0.094498426,-0.042682715,-0.41967195,-0.30313662,0.17718157,-0.5338277,0.09138855,-0.16017553,0.66710246,0.2278341,-0.6075138,0.3097173,-0.4355352,0.15352304,0.018568857,0.5637045,0.826911,0.42339453,0.44735062,0.76615375,-0.16828565,0.023218356,-0.1669121,-0.25330424,0.05127924,-0.20085056,0.06961328,-0.3540355,-0.12761527,-0.1000887,-0.037392303,0.21635142,0.66753244,-0.47722885,-0.30362052,0.111170344,0.70563745,-0.2587421,0.10558601,0.77681625,1.0899692,1.0434084,0.1329631,1.1354189,0.07348268,-0.100563355,0.15507603,-0.1515608,-0.7249212,0.32569677,0.16327326,0.111394964,0.09738337,-0.14809285,-0.07711977,0.23829073,-0.49035558,-0.023985133,-0.025938753,0.5383507,0.14823535,-0.018611655,-0.23568249,-0.39844203,-0.036274612,0.08294684,0.039852016,0.28360313,-0.29468873,0.3681615,0.10423911,1.458862,-0.046736337,-0.045389183,0.060049754,0.730526,0.32091692,-0.2194374,-0.04734026,0.4284721,0.2045798,0.039271936,-0.5343894,0.09816407,-0.32832897,-0.4248091,-0.05422502,-0.46188802,-0.21478888,-0.09600389,-0.3769856,-0.2379829,-0.095362194,-0.2932934,0.47780263,-2.7834575,-0.2693731,0.0021699667,0.36233872,-0.15719451,-0.32770005,-0.30816543,-0.5036654,0.4430805,0.09848455,0.49552512,-0.6836107,0.13685277,0.5558264,-0.5548308,-0.11309979,-0.55102277,-0.09558955,0.018843014,0.3370451,-0.09126503,-0.0059390515,-0.08910808,0.14577031,0.48541188,0.092117764,0.2902735,0.37709934,0.31297934,-0.13786456,0.55158514,-0.11037277,0.32708308,-0.3778994,-0.27509767,0.31954914,-0.4482752,0.27155143,-0.28127348,0.09057167,0.6691193,-0.6202365,-0.80457985,-0.4534378,0.13586095,1.0418534,-0.16381629,-0.5662066,0.32638842,-0.7303166,-0.15866135,-0.17047375,0.5816611,-0.13754109,-0.013030833,-0.6976031,-0.04774876,-0.06441443,0.10704045,-0.013958301,0.029756397,-0.2910056,0.57631147,0.017519219,0.5056823,0.2719044,0.067899466,-0.6091609,-0.5086133,0.24073462,0.742317,0.41264945,0.07957034,-0.18889731,-0.1071472,-0.32600686,-0.14182118,0.10717295,0.7619516,0.6742064,-0.19098347,0.22028258,0.32602715,-0.016134135,0.0021002162,-0.19398327,-0.17658049,-0.26513353,0.03657744,0.58587205,0.78569674,-0.13340798,0.36595532,0.14022326,0.2364879,-0.14789161,-0.51881063,0.44968805,1.0505064,-0.21158957,-0.32877845,0.41998267,0.37574935,-0.362585,0.4514489,-0.4973673,-0.46525627,0.4554495,-0.089493155,-0.34091583,0.3250894,-0.395351,0.019671362,-0.57287085,0.33981895,-0.4416749,-0.38829315,-0.44990793,-0.23419537,-2.5288367,0.15590528,-0.19714081,-0.06820285,-0.26834872,-0.37429327,0.07124546,-0.45316684,-0.6761044,0.17194219,0.11310765,0.7958165,-0.19696023,-0.13324043,-0.16982722,-0.4959253,-0.44476905,0.16119394,0.21771815,0.5516115,-0.08423639,-0.4153694,-0.083259135,0.027425736,-0.40021026,0.042668145,-0.45474857,-0.4917277,-0.11165902,-0.5353066,-0.5184027,0.6272743,-0.114709824,0.01813128,-0.13788255,-0.056855477,0.069797635,0.23247465,0.17150977,0.21067701,0.027325869,-0.054341055,0.052846,-0.18135318,0.022781488,-0.073556624,0.2158218,0.34340614,-0.08208561,0.17318973,0.31073666,0.73359513,-0.23817556,1.0083066,0.2182932,-0.080909014,0.35958558,-0.1493205,-0.47682458,-0.5338067,-0.20835969,0.03918712,-0.52116835,-0.29219723,-0.07335084,-0.3623628,-0.6642703,0.5787013,0.078273065,0.19748424,-0.006144684,0.29045156,0.52537614,-0.092163764,0.04062061,-0.083160624,-0.17140344,-0.6120655,-0.28536218,-0.74674773,-0.49093702,0.16935347,0.8378964,-0.3575319,-0.100666985,0.33786228,-0.30188593,0.039232574,0.2330385,-0.088920005,0.07688122,0.5305192,-0.10223319,-0.4390531,0.39447612,-0.1269629,-0.094521925,-0.56825066,0.42014194,0.6034893,-0.62115324,0.7213624,0.2857719,0.07544617,-0.45306614,-0.5741509,-0.13595295,-0.09647888,-0.123264164,0.5494838,0.3075414,-0.8397675,0.43580368,0.30684876,-0.14189288,-0.7328421,0.57252365,-0.115567766,-0.34463358,-0.19777827,0.48584712,0.16050817,0.06760029,-0.23048995,0.34088498,-0.42426834,0.34141237,0.22965397,-0.23828883,0.30422056,-0.24798043,-0.33214796,-0.6907197,-0.06077555,-0.48120037,-0.35173136,0.3509035,0.011192182,0.09684887,0.16650122,0.1710119,0.36501065,-0.22308064,0.06483001,-0.19122875,-0.195256,0.36146963,0.529968,0.6193569,-0.35898674,0.6027763,0.08998333,-0.19208536,0.21159342,0.17925772,0.16695884,0.025022447,0.41486788,0.06803739,-0.2589759,0.1631305,0.8290684,0.21356404,0.36167458,-0.011676408,-0.027704164,0.18455686,0.084702596,0.38369042,-0.036510095,-0.5624577,-0.0068713725,-0.3410745,0.24316815,0.41566992,0.23046553,0.22960497,-0.04988417,-0.23425376,-0.06585343,0.34517854,-0.10248751,-1.4778116,0.31408602,0.16204712,0.88030267,0.5304576,-0.011031121,-0.18489552,0.5923028,-0.01021209,0.054037184,0.31126156,0.18659747,-0.4013772,0.48769346,-0.5570013,0.6059987,-0.00079390034,0.04388742,0.069871806,0.056861386,0.6060602,0.7265108,-0.12954807,-0.076777585,0.12106238,-0.26234984,0.32381773,-0.36993933,-0.024460532,-0.60473496,-0.37307167,0.6900941,0.5295282,0.2881317,-0.19529134,0.016157746,-0.044924285,-0.25678423,0.18073452,0.0054724887,0.071433574,-0.20008753,-0.6643487,-0.05541232,0.42928332,0.0064458884,0.08884332,0.13586354,-0.08510086,0.19020551,-0.053403817,0.15893482,-0.1072474,-0.64039296,-0.08552787,-0.38363403,-0.36463994,0.47067043,-0.11641677,0.2153962,0.31969258,0.061946005,-0.23480122,0.41373056,0.029148698,0.6135228,-0.26239187,-0.05886744,-0.3775874,0.16740689,0.20731896,-0.22124657,-0.034047037,-0.18489975,0.088061504,-0.59846586,0.5206385,0.08584694,-0.14997739,0.021304578,-0.044751152,-0.029887617,0.61138844,-0.17199977,-0.2183314,-0.049556606,-0.1351532,-0.30880302,-0.2041283,-0.015370913,0.21959098,0.24457502,0.036574148,-0.1915709,-0.081064254,0.17590396,0.35761094,0.034022212,0.32353008,0.29791188,0.25317192,-0.3644807,-0.11077489,0.24450576,0.6927277,0.034618475,-0.056339957,-0.35791188,-0.5356666,-0.54268944,0.28358847,-0.11120363,0.3312147,0.15118936,-0.15939663,0.7248873,-0.107658386,1.0539589,0.122167885,-0.32605433,0.17190804,0.6356527,-0.10221362,-0.084693074,-0.16171332,0.7867978,0.42908984,-0.2317452,-0.12667005,-0.29635423,0.20051181,0.15140039,-0.24275742,-0.12163929,-0.119822115,-0.63126814,-0.08415134,0.048812643,0.29146582,0.13302463,-0.3028333,0.006607432,0.35742182,0.029584197,0.22272998,-0.49734372,-0.16226003,0.3244892,0.25470552,-0.05273404,0.13574259,-0.39082038,0.33521113,-0.47927773,0.12687086,-0.29902938,0.28884917,-0.14921927,-0.40429875,0.23483168,0.03386309,0.36359364,-0.4729864,-0.3134588,-0.3360112,0.29410398,0.18258461,0.2008607,0.53563195,-0.22366214,-0.09134484,0.039295517,0.5183425,1.117518,-0.15386304,-0.15806523,0.3472231,-0.43994898,-0.6405642,0.2682175,-0.5115494,0.17769386,0.15996368,-0.10022989,-0.589303,0.2685679,0.14273298,0.11589203,0.025449622,-0.9010446,-0.14348868,0.25226653,-0.26859692,-0.05475332,-0.43817395,-0.066472344,0.59899974,-0.24711184,-0.24203667,0.010677692,0.16554059,-0.19766352,-0.6269739,0.009395867,-0.38833183,0.35316187,-0.006345935,-0.21646714,-0.19290237,0.10063663,-0.59812415,0.1541992,0.015683427,-0.27767575,0.08778831,-0.359953,-0.010875685,0.95561385,-0.38908327,0.26222134,-0.057316467,-0.51840675,-0.72473204,-0.018288381,0.22247446,0.021134699,0.04263778,-0.67195815,-0.11764705,-0.17535087,-0.052023515,-0.09483874,-0.3642155,0.49994045,-0.020542664,0.37935683,-0.15975448,-0.8484945,0.30022764,0.1096984,-0.23597428,-0.40701967,0.5536219,-0.126934,0.5646198,0.14667909,-0.05035177,0.25925136,-0.5495796,-0.019143302,-0.22720851,0.009718187,-0.6248659,0.13769878,601 -86,0.39935187,-0.05841663,-0.4560293,-0.058621544,-0.24413691,0.028915852,-0.19307178,0.66808987,0.28128496,-0.22595464,-0.03232687,-0.041503165,0.048991546,0.377034,-0.15982926,-0.446381,0.011683218,0.21317214,-0.54720414,0.7220032,-0.345375,0.20587379,-0.38742065,0.4159395,0.25060087,0.25154015,-0.1063854,0.07215665,-0.12626359,0.012212137,-0.0062909573,0.55176324,-0.29091316,0.102789044,-0.32270923,-0.24016523,-0.09912828,-0.40762094,-0.46839017,-0.80891514,0.31667477,-0.6388289,0.5153385,-0.15341006,-0.28467155,0.27842385,0.047706075,0.2553034,-0.11395265,-0.16563939,0.09695093,0.01127167,0.016492039,-0.16074716,-0.3438382,-0.4140574,-0.45733875,0.01028088,-0.6222226,-0.048270047,-0.12022475,0.08669516,-0.201193,-0.1080445,0.013600718,0.53719866,-0.42422742,0.19410464,0.08388708,0.02774299,-0.052617766,-0.6642847,-0.0986411,-0.126473,0.37089822,-0.049650297,-0.28751513,0.34321362,0.1668347,0.3455491,-0.2420997,-0.067315206,-0.40203592,0.027509186,0.05105701,0.426027,-0.23595177,-0.6198963,-0.10253981,0.15968591,0.26357144,0.14484707,0.0932317,-0.106968194,-0.12731923,0.008339344,-0.13763146,0.49142247,0.57502013,-0.23121424,-0.17994425,0.4206882,0.43318337,0.3864197,-0.31949347,-0.012755534,-0.02654792,-0.54047257,-0.10174379,-0.049722657,-0.09813169,0.55086094,-0.078350484,0.17029063,0.44430333,-0.1305929,-0.16711819,0.14054361,0.06336534,0.050965406,-0.14857264,-0.19801532,0.117308624,-0.44254994,0.1434006,-0.011748757,0.4703993,0.17914413,-0.6865335,0.31677604,-0.4573494,0.08485724,-0.041444212,0.39092493,0.7549776,0.43029916,0.30360863,0.5447671,-0.11089766,0.16832653,-0.18035895,-0.22252733,-0.039769866,-0.17419757,-0.19141439,-0.56832945,0.1071606,-0.18049811,-0.22310588,0.18270348,0.29772386,-0.44646728,-0.19694918,0.09513673,0.8273202,-0.2579722,-0.18039024,0.7839293,1.0175568,0.8374926,-0.09366059,0.90100527,-0.0047355816,-0.12342939,0.23703974,-0.3312205,-0.6497133,0.29070914,0.13758768,-0.30269074,0.3599884,0.0052804425,0.02687642,0.30477336,-0.3795877,-0.0480128,-0.16457939,0.12839106,0.18794665,-0.033871256,-0.39026606,-0.33922,-0.18303424,-0.10683308,0.25271794,0.2992364,-0.32703966,0.2390979,-0.070503846,1.4773755,0.12712489,-0.05008826,0.11082427,0.6416835,0.2960849,-0.15393059,-0.13607244,0.50964403,0.34669048,0.14917111,-0.46868616,0.17308217,-0.23639524,-0.4731451,-0.10414719,-0.46877897,-0.13144249,0.022839941,-0.4566217,-0.16418281,-0.08588998,-0.2000368,0.4755175,-3.0049696,-0.20097423,0.03812339,0.39644343,-0.108951025,-0.236757,-0.2742119,-0.43886894,0.3906715,0.26029536,0.39621145,-0.53209835,0.4703525,0.288562,-0.63007313,-0.09161443,-0.51685214,-0.054198265,0.040319726,0.46065164,-0.09479338,0.032167174,0.3244685,0.3160543,0.5260993,0.023304045,0.21038483,0.3150826,0.438897,0.055383373,0.32416123,-0.22153345,0.4747697,-0.28897506,-0.18109159,0.25130287,-0.44073072,0.29998982,-0.08436925,0.103312016,0.53073204,-0.46027088,-0.9775684,-0.47260922,0.28164703,1.1723098,-0.1543885,-0.3713472,0.19939306,-0.5792769,-0.24938701,-0.15586159,0.54364705,0.04319219,-0.18912187,-0.6532926,-0.03717301,-0.051355258,0.052355446,-0.0829498,0.033821538,-0.21459606,0.4716038,0.02769436,0.41432807,0.21675928,0.1907524,-0.3117949,-0.4922511,0.008849021,0.5822499,0.32168123,0.056129996,-0.15786272,-0.2828734,-0.43683773,0.022001445,0.09334129,0.72086555,0.35611558,-0.10235184,0.15193133,0.263412,-0.027517892,0.09947255,-0.29046136,-0.15124588,-0.09017808,0.0969774,0.4941467,0.6049977,-0.29250032,0.50562257,0.09176847,0.122193515,-0.19790243,-0.32492143,0.31391916,1.1697023,-0.29417267,-0.33663145,0.40500268,0.49381208,-0.19438605,0.32468942,-0.36977863,-0.20539287,0.43624383,-0.2323274,-0.30382776,0.32960936,-0.11253624,0.121207505,-0.69706464,0.23549116,-0.21303827,-0.5295718,-0.6293667,0.09444137,-2.9276032,0.0934098,-0.12056433,-0.3634957,-0.119786784,-0.31666416,0.043977905,-0.50443107,-0.5703596,0.15570463,0.08714093,0.6537667,-0.25111824,0.034057572,-0.22863936,-0.47502097,-0.29990578,0.18074971,0.14631397,0.50779736,-0.06878508,-0.43101156,-0.13782465,-0.08825155,-0.3507909,0.13531356,-0.5209538,-0.16300118,-0.06453796,-0.5153026,-0.1627256,0.6310625,-0.22361559,-0.0076143313,-0.2303401,0.017054718,0.028397743,0.23026899,0.04292441,0.14805788,0.19542864,-0.15809356,0.21056569,-0.20247462,0.25695363,-0.06781586,0.30340394,0.2705486,0.07422043,0.22723423,0.54922295,0.6232105,-0.1623091,0.9161224,0.5474998,-0.020931104,0.2530607,-0.3499976,-0.23673654,-0.34864172,-0.20752066,-0.06427042,-0.43112004,-0.4240784,-0.13415544,-0.4563591,-0.7625028,0.44964412,-0.12523015,0.17298463,0.06599777,0.34573537,0.6446904,-0.16132432,0.1155256,0.0016554408,-0.2070512,-0.4410314,-0.23518886,-0.43928465,-0.33409098,0.07680954,0.8920224,-0.3267153,0.016901445,0.020745628,-0.29972667,-0.03230288,0.13002433,0.08036748,0.23149997,0.23242253,-0.32282084,-0.50543547,0.30367216,-0.15727593,-0.20110528,-0.46991768,0.26333094,0.4955946,-0.46128577,0.64143634,0.26467708,-0.07056959,-0.23142949,-0.5766942,-0.03354102,0.043771394,-0.15518671,0.44246808,0.2998463,-0.82222706,0.39598513,0.29116952,-0.30258757,-0.6230608,0.65549177,-0.04336589,-0.33809793,-0.10969609,0.33083886,0.19187886,0.012431096,-0.39208058,0.17771892,-0.24461079,0.14092386,0.22345234,-0.14741762,0.238871,-0.27764592,0.044025753,-0.685712,-0.035233866,-0.46853873,-0.2180616,0.39640844,0.09228982,0.29096317,-0.055759683,0.11123489,0.30112934,-0.44443274,0.12944758,-0.09247025,-0.19435182,0.34978914,0.37127483,0.49935856,-0.40821803,0.45077866,-0.044572122,-0.22575074,0.26499188,0.09250911,0.35862,-0.06623618,0.43611935,0.26507244,-0.16391066,0.2086443,0.7565573,0.22832456,0.37350607,0.02483575,-0.28150207,0.088849306,0.06298527,0.13808186,-0.11278869,-0.40321946,-0.019962423,-0.20900786,0.22614443,0.4529459,0.22832265,0.22422296,-0.040261805,-0.33872828,-0.10544641,0.17883326,0.1274444,-1.4059801,0.29153174,0.17895658,0.7977367,0.26699162,0.16084187,-0.004438244,0.54727554,-0.054936074,0.08929653,0.4390083,0.062583946,-0.5358993,0.47161484,-0.6528053,0.45827985,0.011714878,0.010287549,0.16454893,0.012504626,0.42981172,0.7522858,-0.07447608,-0.01204952,0.24609977,-0.3011839,0.13422187,-0.28352138,0.038835846,-0.6136811,-0.22844088,0.5133076,0.5193594,0.22132531,-0.20525017,0.07161785,0.1505493,-0.18717197,0.11437704,0.11568086,0.113257214,-0.108036436,-0.6391413,-0.06166031,0.35490134,-0.19201857,0.101613626,0.03860977,-0.112038724,0.37648383,-0.1801781,-0.04128277,-0.02960803,-0.5922799,-0.117341876,-0.3044924,-0.41940963,0.5792261,-0.17985982,0.25606215,0.2848963,0.08724081,-0.5184055,0.43740687,-0.011217415,0.710451,-0.18427226,-0.007249482,-0.39096093,0.10345142,0.18519157,-0.15490772,-0.2214593,-0.30189058,-0.012399412,-0.4208939,0.31676978,-0.009166166,-0.27577192,-0.26555574,-0.068720415,0.21851525,0.43834606,-0.039170068,-0.101837166,-0.17318586,-0.12410931,-0.52134955,-0.34708774,-0.07083465,0.18485865,0.2441433,-0.11547972,-0.14513765,-0.12040129,0.037307877,0.48443785,-0.123158604,0.45643973,0.40145773,0.30438367,-0.048059613,-0.12703215,0.2704773,0.50374657,-0.002009008,-0.06450994,-0.40087655,-0.32270014,-0.38017368,0.07970524,-0.12114799,0.33040726,0.2095851,-0.12228569,0.5699979,-0.099496335,1.0657474,0.015328035,-0.34244362,0.23842269,0.3978657,0.1435643,-0.12954833,-0.29267785,0.77065694,0.47498065,-0.027308162,-0.004157232,-0.28398576,-0.04774774,0.108284056,-0.18159604,-0.23515023,0.012313079,-0.42803246,-0.16302249,0.23640047,0.19841322,0.35156623,-0.19771883,0.11908026,0.2285446,0.0628715,0.16112462,-0.297883,-0.12147078,0.2785374,0.2316488,0.090994254,0.06181518,-0.51673055,0.3918223,-0.3084978,0.030127317,-0.22357965,0.33271092,-0.12686431,-0.36659262,0.20588581,-0.02156217,0.28074324,-0.16875844,-0.19822866,-0.3424288,0.42235455,0.08669256,-0.0016583949,0.35521343,-0.20499521,0.107607216,0.0012086704,0.53776884,0.7714615,-0.27306524,-0.16865182,0.24500158,-0.31719965,-0.725634,0.29384723,-0.41800356,0.26309356,-0.023862801,0.024500497,-0.685921,0.28755778,0.13828464,0.22827518,-0.16900936,-0.6419125,-0.17890522,0.2535965,-0.19276787,-0.13384598,-0.35792515,0.012930969,0.525992,-0.24529572,-0.41687012,-0.06686804,0.19738954,-0.094565496,-0.585934,0.09890058,-0.35235372,0.24744242,-0.004551159,-0.29570958,-0.21768294,-0.032308556,-0.38124153,0.25601825,0.059756283,-0.301514,0.093865775,-0.2026329,0.062368248,0.91417754,-0.33355087,0.23291063,-0.29042256,-0.5400868,-0.7685996,-0.35876456,0.077453434,0.2601242,-0.08071901,-0.85922134,0.13421364,-0.21688883,-0.44236094,-0.13614361,-0.33922565,0.46625003,0.08022833,0.19617471,-0.07433167,-0.781258,0.13860568,0.104329005,-0.317854,-0.5274371,0.45328242,-0.08789325,0.92992103,0.082908615,0.27255613,0.244231,-0.24491915,-0.10656424,-0.19511317,-0.07945285,-0.43203223,0.0075078104,645 -87,0.5655846,-0.26117,-0.3851496,-0.13652276,-0.2680196,0.30786783,-0.24777184,0.3331769,0.05125095,-0.29230613,-0.06751455,-0.090305775,0.084082715,0.52176386,-0.077541605,-0.5969988,0.05855774,0.06537324,-0.75832975,0.5236344,-0.5645495,0.31261024,0.07673703,0.27006108,0.20064396,0.28377616,0.17466895,-0.07297436,-0.093670204,0.06446085,-0.14329636,0.3199866,-0.5795028,0.11115422,-0.050319247,-0.19707674,0.01393199,-0.40609682,-0.31710318,-0.6026101,0.2794462,-0.75259477,0.47688305,-0.082325414,-0.31374553,0.39701676,-0.055115648,0.17768718,-0.41433823,0.09279113,0.08457507,-0.1068065,-0.04731804,-0.24141073,-0.122279525,-0.31928176,-0.5527141,0.101444855,-0.6726908,-0.32445988,-0.23423672,0.096029975,-0.31709003,0.041403882,0.0019049533,0.22643152,-0.51576865,0.07721695,0.072820045,-0.08174992,-0.09674147,-0.5019203,0.08728026,-0.07618087,0.18085386,-0.12784398,-0.2411015,0.2961695,0.2576673,0.5749463,-0.009213369,-0.18636595,-0.06439988,-0.012903251,0.13569054,0.58547693,-0.17236128,-0.29947016,-0.25692642,0.051277068,0.24500868,0.0054186136,0.016347416,-0.38808465,-0.16653076,-0.01261545,-0.15941675,0.17536767,0.4489082,-0.55399346,-0.34576744,0.4855901,0.47420642,0.19577023,-0.06213809,0.07125532,0.002316678,-0.53720015,-0.07786461,0.07610504,-0.11296777,0.40783742,-0.11257311,0.25106263,0.673778,-0.23988484,0.17658338,-0.051638935,-0.09956929,0.011018608,-0.13881287,-0.0633181,0.011368882,-0.43117815,-0.03551667,-0.15299052,0.76223487,0.24749364,-0.65600836,0.4908696,-0.46786028,0.13670541,-0.09931223,0.5695499,0.7993274,0.38241613,0.020303365,0.6033237,-0.38916636,0.13373592,-0.21606016,-0.33490926,0.2410115,-0.19629872,-0.22106892,-0.47640398,0.07173722,-0.008258028,-0.14472073,-0.0059866905,0.64575565,-0.5320867,-0.07946443,0.031494647,0.69325435,-0.3859548,-0.1524348,0.5898444,0.8586731,0.7854997,0.0056025535,1.2477039,0.39879206,-0.062148705,0.2097818,-0.366757,-0.66283154,0.21339864,0.52941835,0.11167002,0.40092394,0.12659417,-0.16980323,0.37524232,-0.3025748,-0.033621997,-0.18720603,0.3666184,0.0052104704,0.0024847835,-0.34442198,-0.21577522,0.0074933786,0.077846594,-0.035876516,0.3048339,-0.42953822,0.2729972,0.047840223,1.9311594,-0.11480113,0.13433905,0.033975974,0.39387137,0.27027035,-0.20469616,-0.22579569,0.33817112,0.43544367,-0.025399169,-0.5268161,0.10233154,-0.21588813,-0.53029054,-0.13990954,-0.43311483,-0.061615758,-0.10176443,-0.47400412,-0.086519934,0.25874704,-0.20411655,0.46501857,-2.6335413,-0.2335862,-0.11311957,0.42848903,-0.33963424,-0.44372213,-0.30385655,-0.33270016,0.21124971,0.30938047,0.4772411,-0.620045,0.42212957,0.3223117,-0.3137316,-0.15803106,-0.538293,-0.10016222,0.016142651,0.5055918,-0.11231553,-0.10677664,0.019605167,0.1792664,0.55385095,-0.16872302,0.0023384877,0.22129077,0.3049295,0.25594997,0.3243283,0.025029331,0.4992659,-0.20718487,-0.21371067,0.48378092,-0.042667415,0.2619927,-0.059443273,0.218537,0.23747225,-0.4614377,-0.8734366,-0.57752585,-0.11495753,1.1823782,-0.4056614,-0.2950699,0.19634043,-0.020700686,-0.15602371,-0.02495154,0.25887665,-0.15565653,-0.16699547,-0.72861576,0.16975203,0.06458862,0.19567996,-0.055520963,0.121250495,-0.21492118,0.4878854,-0.10317602,0.42293775,0.21762715,0.2937847,0.07959154,-0.40048072,0.13272265,1.0260268,0.34951705,0.12312277,-0.1796042,-0.23991528,-0.1458157,-0.1258243,-0.009062078,0.3107902,0.7994646,0.17948867,0.14095479,0.1615203,-0.12810329,-0.048612587,-0.19877079,-0.2650012,0.080120735,0.041023552,0.58059925,0.4994604,-0.16992354,0.4866684,-0.05826175,0.19559622,-0.047077,-0.554886,0.41549182,0.98895776,-0.18973958,-0.11114323,0.43219888,0.38284403,-0.3609101,0.38843566,-0.67388463,-0.30195683,0.48780027,-0.2283909,-0.27112672,0.3582393,-0.24428795,0.16730824,-0.7721833,0.5042798,-0.013906255,-0.28900418,-0.43979973,-0.123031795,-3.5957716,0.104976274,-0.17301969,-0.16388568,0.05619956,-0.041028585,0.31309807,-0.5750193,-0.36118817,0.010917619,-0.0062252516,0.6049819,-0.057442877,0.10343289,-0.2913342,-0.2699988,-0.2951002,0.084388,0.114716575,0.3508301,-0.03818241,-0.37044016,-0.021518724,-0.2445435,-0.26480255,0.14571728,-0.5336753,-0.5539449,-0.13761748,-0.44030756,-0.067707054,0.69166696,-0.2765957,-0.07136312,-0.20223266,0.045027953,-0.13213563,0.2926657,0.290725,0.045015555,0.13695446,-0.006917091,-0.08930753,-0.46108586,0.28224087,0.10363588,0.20798513,0.5508075,-0.044181824,0.051105008,0.6536597,0.384929,-0.16637728,0.7018362,0.42978942,-0.1684207,0.24397805,-0.24745074,-0.24502523,-0.3951007,-0.40512985,-0.1300206,-0.3764128,-0.35429752,-0.12559605,-0.2602076,-0.73327875,0.49854225,-0.16988015,0.11951816,-0.082157336,0.27423218,0.51884454,-0.13270977,-0.08346843,-0.12150252,-0.13371243,-0.6020924,-0.37913406,-0.6903654,-0.5594046,0.23557003,1.0214765,-0.24599731,-0.10516976,-0.1546298,-0.11695175,-0.120682895,-0.18042421,0.064544916,0.3277579,0.318896,-0.14220956,-0.8049072,0.4636497,-0.19478965,-0.15334731,-0.56026757,0.11437906,0.50685203,-0.67673516,0.37544858,0.28661326,0.21433447,0.19057523,-0.55285096,-0.2304225,0.1203276,-0.19970356,0.31960392,0.07615118,-0.7849579,0.53671753,0.24260353,-0.34282514,-0.7405207,0.48234475,0.13246109,-0.22441679,-0.009698726,0.30039072,0.106953904,-0.07494584,-0.16341795,0.20730385,-0.51181436,0.44843164,0.2879659,-0.005393766,0.38008752,-0.21278122,-0.27539593,-0.5427656,-0.12395261,-0.36462355,-0.32426333,0.12950914,0.07240539,0.26803178,0.0637168,-0.019047126,0.5208993,-0.4403172,0.028767046,0.09009823,-0.24068339,0.388346,0.42224577,0.52572036,-0.2843158,0.53815556,0.040240616,-0.05055987,0.14041619,0.031348746,0.4174662,0.087585464,0.1281799,-0.018412054,-0.14234106,0.27733925,0.92824894,0.21808648,0.36947095,0.05920525,-0.4333167,0.28625426,0.18419568,0.046547815,0.11989668,-0.32596424,-0.02987137,0.07481563,0.2275212,0.493645,0.24933529,0.29294825,-0.14018872,-0.27093774,0.14863272,0.022026025,0.09073351,-1.0519246,0.11077024,0.16492262,0.56063527,0.38136017,-0.05494669,0.02538985,0.507752,-0.24146733,0.072472304,0.29993114,-0.1849524,-0.6784137,0.51651424,-0.59979403,0.5058508,-0.033375934,0.003442768,0.11585231,0.090129405,0.37496728,0.85769343,-0.07385911,0.049772974,0.06089077,-0.29000768,0.06674355,-0.41117555,-0.04374016,-0.47295937,-0.22418097,0.58541924,0.42706844,0.17273742,-0.10171424,-0.032709684,-0.019328594,-0.20497315,0.08376408,-0.004403429,0.13408406,-0.049952284,-0.6043,-0.47122008,0.5204731,-0.022767462,0.108351015,-0.011440977,-0.0851038,0.3099503,-0.2820608,-0.1963711,-0.074869566,-0.55990326,-0.0702572,-0.4875549,-0.54962015,0.30950752,-0.13502195,0.23237401,0.16998634,-0.05695445,-0.41843897,0.4697777,0.11320883,0.8836067,-0.043770466,-0.28612423,-0.40040863,0.20147987,0.26129276,-0.20597541,-0.04940813,-0.2857305,0.044338338,-0.7425026,0.44159403,-0.19169366,-0.3130828,0.16274121,-0.13935104,0.013670639,0.45675054,-0.047251545,-0.21979737,-0.13572726,-0.038973905,-0.40141657,-0.108957306,-0.19114581,0.16983691,0.17506626,-0.17083545,-0.039240066,-0.11574782,0.00020590052,0.4824884,0.11117848,0.35455042,0.38898402,0.15091886,-0.2362338,-0.12233861,0.3206424,0.44396883,0.028627157,0.028216321,-0.38057062,-0.44519445,-0.34098914,0.1647829,-0.24785581,0.32486227,0.19452018,-0.46606773,0.7530458,0.0023663435,1.0652372,0.07968521,-0.2674345,0.20103164,0.54255223,0.15103501,0.03933935,-0.34507582,0.87269926,0.6256355,0.11202844,-0.18390912,-0.3871003,-0.28901353,0.24899876,-0.30691713,-0.13402064,-0.08358979,-0.68584573,-0.31861883,0.20308231,0.18603677,0.20895812,-0.041747063,0.061719507,0.18299718,0.08658582,0.2558832,-0.5569774,-0.16427243,0.2601595,0.31434482,-0.079207994,0.3035619,-0.4576162,0.46623158,-0.5733571,0.01764571,-0.27492803,0.13401115,0.06918843,-0.2907493,0.15676275,0.16819228,0.4116001,-0.33079875,-0.34276637,-0.2686876,0.50761366,0.08422712,0.16709426,0.6414654,-0.25144854,-0.013891585,-0.051173963,0.40079308,1.0000412,-0.14637113,0.118834816,0.35545802,-0.3325995,-0.6751085,0.27318266,-0.17273712,0.26567453,-0.11075303,-0.24450228,-0.52286255,0.30042976,0.10912057,-0.0065353625,-0.019362472,-0.51603526,-0.12551498,0.33467314,-0.16870867,-0.25889412,-0.3950847,0.15981199,0.756058,-0.45871288,-0.16243638,0.15138794,0.3619718,-0.29985458,-0.56195444,-0.109880574,-0.42281467,0.14741425,0.22889555,-0.15942192,-0.028176457,0.06901123,-0.36181822,0.07762897,0.2895221,-0.38113123,-0.0068732314,-0.1210484,0.11976341,1.0047369,-0.08182135,-0.09259092,-0.7970102,-0.53746015,-0.9244461,-0.4289444,0.5454701,0.23353584,0.07546355,-0.5319104,0.043479316,-0.08518088,-0.063403,-0.013834365,-0.508378,0.45195884,0.033324786,0.20880514,-0.030287646,-0.71823287,0.08244003,0.07466333,-0.31375626,-0.5943434,0.5199672,-0.17312726,0.8329414,0.08929476,-0.037600987,0.26177603,-0.5247051,-0.020283602,-0.47308993,-0.096686095,-0.7668102,0.23677675,660 -88,0.20346159,0.043069012,-0.48208904,-0.052563842,-0.22653133,0.35637543,-0.33322674,0.06504212,0.22145955,-0.42950863,0.20222962,-0.059917845,-0.19776814,-0.06561917,-0.10160583,-0.48477185,0.088746265,0.06531774,-0.3016007,0.48758963,-0.44243246,0.33827126,-0.017340511,0.11853083,-0.27804878,0.2521718,0.24566114,-0.24427938,-0.16359115,-0.20855355,-0.02769722,0.18581231,-0.36312175,0.4101242,-0.060616586,-0.19452482,0.20740518,-0.23697051,-0.20603508,-0.44943735,0.034124617,-0.6339958,0.33015913,0.020815361,-0.2765043,0.38577425,0.15595043,0.027631382,0.040224753,-0.01768757,0.14541733,-0.4708798,-0.24734536,-0.39278972,-0.48199952,-0.5440333,-0.37622434,-0.10241479,-0.5900286,-0.31322426,-0.29211038,0.23571919,-0.32991308,-0.2923174,-0.08883393,0.27062437,-0.40677333,-0.04412815,0.09243725,-0.33076382,0.19632849,-0.7505573,-0.12856664,0.010970684,0.007284304,0.1311074,-0.012340706,0.32016176,0.10452208,0.49164963,-0.018075872,-0.21822041,-0.50293165,-0.3083392,0.2736554,0.39938825,-0.23287353,0.12043981,-0.20503001,-0.07267678,0.2817236,0.32401255,0.12673305,-0.14078118,0.010554073,-0.09166114,-0.3290636,0.21088655,0.42958653,-0.46950623,-0.02103012,0.4007595,0.37497655,-0.025097057,-0.31356812,-0.00794635,-0.16159946,-0.20467764,-0.17220981,0.126777,-0.03734836,0.32059813,-0.10688779,0.24308217,0.54408187,-0.10396954,0.058880776,0.026598662,0.053071566,0.24470878,-0.28177205,0.06912401,0.25259757,-0.5748671,0.01661909,-0.25792524,0.456558,-0.17926617,-0.63737273,0.28171873,-0.29410195,-0.045551974,-0.017917272,0.53410155,0.5258569,0.55747956,-0.13769445,0.74787945,-0.4464631,0.021157324,-0.21199396,-0.018144138,0.1786832,0.06300393,0.13664894,-0.48206708,0.1454192,0.1531747,0.05913563,0.033508763,0.3748241,-0.34728172,-0.1285908,0.41891253,0.8031242,-0.26942632,-0.026728861,0.3958882,1.2511177,0.7885973,0.027264904,0.88426036,0.20985249,-0.17918696,-0.14555204,-0.1913197,-0.55964303,0.0570346,0.29204595,0.538184,0.2743225,0.0028282963,-0.09206672,0.2645228,-0.16197842,-0.23589441,-0.13968009,0.41863286,0.18088391,-0.013204031,-0.299223,0.05427642,0.22157636,-0.04592854,0.17706427,0.26636246,-0.10234112,0.42362225,0.009493202,1.0112957,-0.076740116,0.14915211,0.17401057,0.27743542,0.22050786,0.19895901,0.09844285,0.5972004,-0.03437377,-0.053419802,-0.45727456,0.061832882,-0.20481771,-0.59361935,-0.09768124,-0.30783135,-0.18076563,-0.07954032,-0.14258817,-0.19797,-0.04556703,-0.48098737,0.29558164,-3.025577,-0.025128514,-0.07397397,0.18337575,-0.1818842,-0.19153866,-0.066401824,-0.24605708,0.75757146,0.31951383,0.33879095,-0.28953847,0.23511389,0.5387864,-0.38622296,-0.15712552,-0.49350518,-0.03929569,-0.1726613,0.59614706,-0.023025893,-0.30937794,-0.102935374,0.048235364,0.387283,0.095176965,0.16292405,0.31224754,0.29471976,-0.087188244,0.14178893,-0.08171085,0.48498374,-0.3157231,-0.16099232,0.2651257,-0.34875965,0.33712274,-0.3130768,0.17923848,0.30854973,-0.09984064,-0.3679533,-0.28892183,-0.10181306,1.3254973,-0.30167747,-0.603129,0.22274832,-0.063371435,-0.17789178,-0.016224688,0.3460366,0.009070776,0.1494681,-0.515647,0.16803701,-0.12642303,0.18834482,-0.09831607,0.16162124,-0.48206654,0.52358115,-0.073128775,0.53220063,0.5434134,0.29653513,-0.24129927,-0.25521606,-0.0013942011,0.60293025,0.3987798,0.05889923,-0.12540118,-0.18089288,-0.010468738,-0.30864665,0.2183196,0.4228442,0.5975698,0.0038755313,0.09878507,0.2866686,-0.22889343,0.079104446,-0.06066725,-0.32373816,-0.08053222,0.18544501,0.36328503,0.41418824,0.0042748414,0.2960511,0.13535263,0.42211068,-0.16752386,-0.37818378,0.29087582,0.4652602,-0.25073248,-0.21237126,0.556552,0.5630536,-0.19096714,0.52243024,-0.63598317,-0.4416843,0.47081572,-0.23049095,-0.46657217,0.024275722,-0.4091333,0.083410606,-0.7228326,0.23245206,-0.351872,-0.50925684,-0.6561074,-0.13387944,-2.7164624,0.08329633,-0.38410327,-0.060329918,-0.0985623,-0.02804397,0.27762556,-0.50821376,-0.42160282,0.15949118,0.12843543,0.4085608,-0.073726535,0.04743453,-0.40458485,-0.25589478,-0.06439574,0.400484,-0.09967508,-0.061161265,-0.2408325,-0.39427692,-0.0076264106,-0.15660846,-0.14315712,0.016656598,-0.32298613,-0.14381975,-0.1273867,-0.2593894,-0.06586513,0.52105266,-0.49353272,-0.13610236,-0.280106,0.12491135,0.09689696,0.08311102,0.101534955,0.19971758,0.22821885,-0.035364307,-0.009327058,-0.3654198,0.20777915,0.11410044,0.17592219,0.5792609,-0.07061359,-0.028165098,0.45745692,0.3115149,0.07282844,0.731707,0.1752784,-0.13477163,0.33299482,-0.30725688,-0.13760602,-0.5439982,-0.25910494,-0.0043527465,-0.3622873,-0.6200979,-0.06486114,-0.3030844,-0.68643135,0.51819503,0.13736218,0.20775734,-0.17666599,0.40495935,0.38292456,-0.2164889,-0.036125265,-0.07376619,-0.124203846,-0.19363883,-0.3154999,-0.8561436,-0.42838377,0.21066082,0.7807957,-0.18043023,-0.14175254,0.23048997,-0.07255341,-0.14170514,0.3174201,0.30202192,0.13779664,0.25736278,0.23394962,-0.5570861,0.5008504,-0.09413287,0.005632825,-0.44369197,0.054499187,0.5142447,-0.5858158,0.30884686,0.54546005,-0.0127091175,-0.12987351,-0.6853327,-0.10402218,0.18644068,-0.3290637,0.48377597,0.056601204,-0.8035424,0.53099203,0.15653376,-0.24205437,-0.6680399,0.26570725,-0.041605376,-0.11849532,0.08919494,0.39494172,0.17599933,0.029037014,-0.027550027,0.22433512,-0.3577982,0.35024822,0.05779355,-0.14063613,0.55891556,-0.13947317,-0.11501406,-0.6872059,-0.0068405606,-0.40386432,-0.19742674,0.348785,-0.013621323,-0.0030572684,0.25664294,0.010294041,0.48407042,-0.31751347,0.16679743,-0.1593565,-0.32476962,0.35328975,0.444946,0.4417795,-0.31213123,0.5887263,-0.13147861,-0.07932189,-0.041533664,0.0041816263,0.503952,0.092070304,0.35142732,-0.02143772,-0.121091396,0.20124,0.7716148,0.22724058,0.25761038,0.101456136,-0.17937809,0.47128436,-0.035573386,0.020761399,-0.12547764,-0.42414856,-0.14505233,-0.11423315,0.24010831,0.32830143,0.20734368,0.7167977,-0.11754075,0.037057456,0.07411211,0.17390627,0.12890099,-0.33380708,0.25111282,0.21515237,0.58247185,0.48421097,0.30147082,0.18020424,0.5699954,-0.26872844,-0.022003613,0.38356176,-0.10076984,-0.3214583,0.52637976,-0.5445144,0.36967528,-0.19444564,-0.025126029,0.17975211,0.023003966,0.49459207,0.85079,-0.16313177,0.08412254,0.07079804,-0.3678566,0.18570213,-0.12586778,0.0944083,-0.06739667,-0.2933085,0.47389334,0.22047243,0.3380614,-0.11949715,-0.08713882,0.34224182,-0.09288584,0.43658316,-0.024958227,0.06393113,-0.18365757,-0.30189383,-0.38006142,0.47978914,0.050068058,0.18914124,0.10798957,-0.10503256,0.26816344,-0.09980441,-0.17280585,0.16625303,-0.34800422,0.2021932,-0.060179688,-0.5911813,0.54582715,-0.0047996193,0.17956385,0.057572864,-0.024748445,-0.13891259,0.14852703,0.0902397,0.4355805,0.028677478,-0.24974447,-0.16134614,-0.31774867,0.052979667,-0.1785845,-0.062065963,-0.0968163,0.26946804,-0.6803736,0.31208742,-0.49387267,-0.0865885,0.15658917,-0.4008518,-0.0362384,0.31313112,0.015542293,-0.15303671,0.18163908,-0.09721348,-0.49219665,-0.35268387,-0.36886817,0.09046849,-0.31631574,-0.032657005,-0.2995785,-0.24824613,-0.14515033,0.22919147,0.043923184,-0.095587865,0.28962418,0.036212876,-0.46768615,-0.05880662,0.14409402,0.28281948,-0.17292026,0.2699666,-0.0051728636,-0.45708564,-0.39319092,0.17608795,-0.113111064,0.29766616,0.10423183,-0.46379825,0.7892918,-0.21083863,0.7832257,-0.05102635,-0.3973176,-0.06996818,0.44569722,-0.1588532,0.005373027,-0.2604872,0.8932131,0.7292038,0.031110862,-0.13751431,-0.49901015,-0.043487437,0.38214874,-0.23686174,-0.10919866,-0.12371953,-0.58347225,-0.26235667,0.20235597,0.1803043,0.09667853,-0.08810265,0.030656569,-0.08440078,0.37121636,0.11572716,-0.47891644,-0.14799239,0.4660976,0.12940873,-0.069480285,0.20495173,-0.24337229,0.3130495,-0.65969986,0.23920652,-0.3838815,-0.094065435,-0.14326364,-0.15240312,0.10414946,-0.12375434,0.16131714,-0.09608534,-0.3736477,0.051424053,0.087436125,0.13684136,0.3505506,0.56447864,-0.17748988,0.0478027,-0.1214838,0.4538948,1.0501447,-0.17878443,-0.14872153,0.2038573,-0.38358426,-0.7419558,0.15566641,-0.5418744,0.1048485,-0.073789544,-0.3764608,-0.24871387,0.08406195,0.039525643,-0.07020205,-0.04942538,-0.37300617,-0.14193776,-0.13314588,-0.3313177,-0.12220247,-0.022647634,0.06896675,0.7868507,-0.25806218,-0.08060556,-0.078663155,0.406209,-0.38151598,-0.61988497,0.2599022,-0.24708986,0.3126127,0.30149892,-0.21119127,0.12639016,0.1463127,-0.49980068,0.0878272,0.42743087,-0.28470936,-0.09064569,-0.41285247,0.29564333,0.5098629,0.032199915,0.01704146,-0.40726417,-0.55506825,-0.6341671,-0.30475536,-0.043854143,0.11762758,0.059159577,-0.3605886,0.15985402,-0.2899274,-0.094235614,-0.045414183,-0.46089244,0.3654409,0.21462926,0.39273617,-0.3998772,-0.6130321,0.04231862,0.08087593,0.018357275,-0.43560702,0.37346503,-0.24886008,0.7494708,0.055317663,-0.17112225,0.2092053,-0.5674744,0.3334339,-0.34998786,-0.25757757,-0.489693,-0.07785864,676 -89,0.37982118,-0.07709753,-0.33854297,-0.1715903,-0.34810138,0.071222395,-0.13136789,0.123055995,0.1950868,-0.2468229,-0.12120074,-0.06302686,-0.02662203,0.3004724,-0.037354954,-0.6757457,-0.14564522,0.16839218,-0.7333292,0.38527542,-0.55171067,0.40550297,0.0763938,0.15564951,-0.04555542,0.42425895,0.22058563,-0.25214612,0.020046424,-0.05262924,-0.2026058,0.33089548,-0.4895789,0.09275991,-0.21762916,-0.14044535,0.045823347,-0.36623532,-0.33504874,-0.5464639,0.113079324,-0.7622893,0.45162177,-0.013152067,-0.11066879,-0.10762702,0.22760776,0.35635433,-0.28693354,0.09767128,0.29403707,-0.15230995,-0.13004944,-0.24381346,0.032662425,-0.31079155,-0.36263695,-0.079965875,-0.5785965,-0.3242937,-0.13587347,0.14073968,-0.33123878,0.041852854,-0.09731744,0.31453013,-0.32509357,0.06379337,0.33666968,-0.27673092,0.14979379,-0.36630884,0.18595636,-0.039266724,0.53909904,-0.020092651,-0.12147367,0.39299268,0.35135278,0.4766144,0.21279827,-0.27273896,-0.118159726,-0.22385827,0.17131004,0.43106925,-0.18261747,-0.27191615,-0.17474735,0.14873177,0.08476204,0.32157445,-0.16650961,-0.3074196,-0.05566118,-0.04645703,-0.2854431,0.45515996,0.50663847,-0.2898266,-0.40340778,0.31013978,0.5546513,0.32142586,-0.14623335,0.024747163,0.06275528,-0.507809,-0.23999469,0.2100685,-0.042967327,0.40977526,-0.07861063,0.17135927,0.81640553,-0.12141087,0.037651822,-0.00070381444,-0.18630253,-0.11777712,-0.15229851,-0.019212129,-0.039227497,-0.6323531,0.026760101,-0.15713134,0.76392007,0.16398193,-0.7629423,0.5151174,-0.5927511,0.17678815,-0.0986567,0.6404751,0.73843336,0.35494143,0.20001878,0.78493893,-0.3680464,0.16555038,-0.20794925,-0.48674357,0.07015425,-0.09406519,0.12425734,-0.4801022,0.06635829,-0.16916503,0.14356431,0.002922684,0.10548652,-0.5415374,-0.060807742,0.20130707,0.8999816,-0.3739133,-0.0011596903,0.5004649,0.9661416,0.8242001,-0.042513836,1.0496411,0.22835736,-0.22325553,0.26064804,-0.46693882,-0.63045204,0.137135,0.34177652,0.24922985,0.22226912,-0.053460345,-0.007919442,0.24222434,-0.3480296,0.07006271,-0.122677445,0.33911756,0.12271696,-0.019533778,-0.28888822,-0.11104825,-0.01335609,-0.08824544,0.10452741,0.22579046,-0.18395244,0.25355154,-0.026774146,1.3232933,-0.007380694,0.11957373,-0.019518185,0.4523924,0.22745459,-0.075201,-0.077617235,0.43008167,0.43969846,-0.035295483,-0.5637457,0.25361592,-0.3346171,-0.3416956,-0.09351346,-0.42602354,-0.063232765,0.19598156,-0.34680602,-0.067702174,-0.08375108,-0.25496647,0.55505365,-3.0498176,-0.27279803,-0.10485472,0.3125857,-0.3322919,-0.15789765,-0.08135407,-0.49179986,0.17989752,0.24679914,0.4094379,-0.59121674,0.60339785,0.45265394,-0.44393855,-0.20687473,-0.5980971,-0.093967944,0.0061132153,0.44491073,0.031052731,-0.0365403,-0.21772829,0.19806226,0.5472902,-0.020302016,0.031517178,0.37768185,0.41205883,0.2409233,0.6329349,-0.06709157,0.53106254,-0.29577103,-0.14749286,0.34724188,-0.20549892,0.28197873,-0.12207692,-0.027126247,0.39602047,-0.38899854,-0.83156836,-0.62327933,-0.4207649,1.0864427,-0.39142042,-0.2537859,0.19023395,-0.18928792,-0.08878748,0.073302805,0.5021534,0.04582747,0.06810961,-0.58497506,0.16236746,-0.041810248,0.18051445,0.07836921,-0.124567226,-0.2500604,0.5898016,0.016080115,0.5931258,0.22553146,0.20787993,-0.07351036,-0.33274916,0.06327239,0.7386367,0.26251695,0.024458915,-0.10269265,-0.35818693,-0.10257081,-0.07764049,-0.00031412765,0.50580895,0.66149724,-0.037472963,0.10784461,0.35800937,-0.12440752,0.07799218,-0.1533094,-0.15405065,0.0403639,-0.018981017,0.33952945,0.59241736,-0.12871212,0.43486476,-0.06703306,0.13576323,-0.11307578,-0.42977327,0.6338638,0.52698046,-0.20373997,0.02217282,0.385205,0.42743832,-0.3047408,0.45952874,-0.6154651,-0.20052132,0.58987904,-0.22800693,-0.37589538,0.21402222,-0.26904362,0.10456468,-0.76992226,0.32457083,-0.3088532,-0.39568612,-0.4221987,-0.062135592,-3.6835623,0.1479002,-0.12796268,-0.09355305,-0.19458096,0.066695675,0.33984652,-0.50780547,-0.37570623,0.10598159,0.23002447,0.5043669,-0.026901131,0.11844691,-0.32569933,-0.11346914,-0.15772645,0.19229439,0.041214507,0.28608558,-0.13930658,-0.3933583,-0.01442419,-0.09600888,-0.37686545,0.2735293,-0.4512845,-0.34390652,-0.08245246,-0.39758217,-0.17140497,0.5787957,-0.39060616,0.020608712,-0.30359843,0.0932492,-0.30024883,0.24462,0.24727547,0.13300449,0.10773358,-0.050993256,-0.07698069,-0.39710176,0.57074213,-0.030200616,0.40198445,0.13134365,0.16660437,0.09418983,0.49976027,0.43243906,-0.116039775,0.8926234,0.34436923,-0.063583694,0.31252068,-0.30840522,-0.21910548,-0.4134336,-0.41984627,-0.07878409,-0.3725609,-0.5127443,-0.050223377,-0.2804713,-0.75492114,0.5034357,-0.0076208897,0.24760503,-0.08888321,0.18605985,0.34303904,-0.23720598,0.048591822,0.023621585,-0.22117437,-0.52190965,-0.29298288,-0.582621,-0.44114494,0.13792714,0.7409322,-0.32765836,0.054480016,-0.18692684,-0.15269494,-0.11012219,0.00040967762,0.18246856,0.44804075,0.38014245,-0.20746604,-0.57689506,0.43329534,-0.14428683,-0.106687956,-0.5271739,0.0008007996,0.5774872,-0.74398565,0.5847413,0.21847057,0.02654368,0.04146245,-0.43328428,-0.28413448,-0.014634261,-0.22409712,0.33770585,0.03533254,-0.787796,0.4335264,0.23027392,-0.3663908,-0.64719045,0.34079885,-0.034317546,-0.27142704,0.004240051,0.2185297,0.2328592,-0.09537899,-0.1180029,0.19076124,-0.41464475,0.25381663,0.13802807,-0.09953254,0.25398713,-0.14701095,-0.3496906,-0.5943498,-0.07461906,-0.43376786,-0.25359342,0.26917177,0.030085558,0.102157995,0.07188378,0.07092872,0.40224224,-0.18954602,0.08794294,0.10567128,-0.3137324,0.25526094,0.42756766,0.35971445,-0.36157632,0.48747203,0.15487596,-0.11400078,0.11588254,0.11304568,0.41993806,0.027668945,0.278585,-0.08219105,-0.1458214,0.4175868,0.7981426,0.17604661,0.27100313,-0.036306348,-0.0747734,0.50141937,0.012459982,-0.011769969,0.13534462,-0.43167013,-0.113398075,-0.016063713,0.22060227,0.41885093,0.28144786,0.28669256,0.08801675,-0.2252883,-0.04063096,0.19712126,-0.12176185,-0.98279387,0.3664787,0.3179094,0.7740471,0.3705613,0.11485772,-0.11089615,0.6835807,-0.25794232,0.13864276,0.34004217,-0.17601006,-0.49512324,0.6368632,-0.60417885,0.4483178,-0.10110029,-0.114725895,0.14095686,0.030996453,0.32812458,0.7805109,-0.1615634,0.06224469,0.010046776,-0.23872936,-0.051924214,-0.2863209,0.012656301,-0.43648976,-0.35354346,0.57767224,0.3440897,0.2837961,-0.20544252,-0.012130609,0.08567283,-0.086755954,0.13104628,-0.09537832,0.011430226,0.106660455,-0.4867038,-0.16846664,0.57798594,-0.10586101,0.116484515,-0.17878169,-0.1989371,0.19077215,-0.20655492,0.026476935,-0.108669475,-0.47626638,0.11149041,-0.18667941,-0.40255117,0.4330927,-0.26191026,0.2310602,0.2012082,0.053231154,-0.19587429,0.49470505,0.11235217,0.71465945,0.016847193,-0.1799069,-0.45572025,-0.028881334,0.17332172,-0.2524835,-0.08368933,-0.47150502,-0.08363269,-0.570464,0.48775828,-0.20359482,-0.37805974,0.1809429,-0.2720329,0.068914495,0.5730658,0.00734747,-0.1248095,0.04369589,-0.18669567,-0.46287423,0.01164645,-0.20672551,0.29359984,0.32291284,-0.028190542,-0.12593597,-0.33489743,-0.16663623,0.4571848,0.122026145,0.33081365,0.15034777,0.023966186,-0.027132204,0.021390911,0.22473454,0.38079432,0.19843888,0.14024974,-0.38584206,-0.2835345,-0.2626908,0.12201133,-0.13189265,0.23748955,-0.03711687,-0.37170354,0.72402465,-0.03904944,1.1083126,0.22126,-0.15561578,0.09895687,0.47561917,0.011032652,0.15572786,-0.41809338,0.71047974,0.50649995,0.064054586,-0.10727063,-0.44988033,-0.0631767,0.17303689,-0.31246987,-0.016984664,-0.061909158,-0.5982604,-0.3419608,0.21102941,0.17840518,0.1482251,0.04100154,-0.23592475,0.02212803,0.08808455,0.4076923,-0.52249414,-0.20583321,0.24577416,0.21591213,0.0007219147,0.12686235,-0.34946936,0.49857864,-0.6073402,0.08234299,-0.38991195,0.10418305,-0.2649904,-0.30023178,0.13750781,-0.044027086,0.31472754,-0.18953675,-0.40881458,-0.09037019,0.39382976,0.055299547,0.14867483,0.66908157,-0.18550414,-0.03239607,0.053733528,0.52483857,0.99663967,-0.34837127,-0.0371373,0.29276824,-0.3768697,-0.5236383,0.31903124,-0.3823134,-0.062140547,-0.029954728,-0.4405868,-0.24399212,0.3499598,0.11241639,0.18767007,0.05067726,-0.5155689,-0.109979965,0.23761122,-0.2300967,-0.30448717,-0.17259733,0.3666478,0.8534839,-0.30868757,-0.23664156,0.09252699,0.295493,-0.29285818,-0.5143206,-0.0892115,-0.1538049,0.27252364,0.18544875,-0.20636511,-0.052762818,0.19522563,-0.39628017,0.10349934,0.27997524,-0.35594857,0.10977813,-0.078280136,-0.092392266,0.87771404,-0.22551097,-0.13842815,-0.6233359,-0.42514664,-0.8309176,-0.40923363,0.24513812,0.3219286,-0.04168664,-0.2780077,-0.027458757,-0.015936313,-0.16645882,-0.012097535,-0.57509255,0.39570284,0.059609015,0.44936103,-0.27821916,-0.84177774,-0.022452708,0.09659156,-0.14491996,-0.6594196,0.55608183,-0.26541305,0.8917122,-0.015741525,-0.14540862,0.061454527,-0.3607785,0.09316553,-0.45939124,-0.19708711,-0.8584098,0.12651783,706 -90,0.5338311,-0.12789077,-0.42834195,-0.10513975,-0.3129265,0.068509415,-0.093813166,0.4929866,0.14777862,-0.29456767,-0.17980894,-0.091091946,-0.0025065723,0.25435743,-0.12133292,-0.5370038,-0.007936306,0.13608818,-0.46827084,0.681625,-0.40286532,0.32325676,-0.09331531,0.20567471,0.06591655,0.2959761,0.1186592,-0.20903614,-0.12083696,0.0024147015,-0.21603954,0.21856654,-0.5690762,0.23792616,-0.11452717,-0.2736864,0.13607247,-0.28657272,-0.33695912,-0.6480641,0.22058119,-0.5411328,0.4584716,0.056957603,-0.20081109,0.13361886,-0.0631275,0.34233138,-0.31349486,0.11702332,0.23446816,0.057474058,-0.04955449,-0.11124918,-0.17093532,-0.45126092,-0.53314203,0.023305327,-0.33009952,-0.11635086,-0.18421385,0.10234238,-0.30475104,-0.12598862,-0.18138762,0.36853886,-0.5106847,-0.023444148,0.21271153,0.0028255172,0.2741217,-0.567102,0.034656305,-0.16475663,0.25370955,-0.19823101,-0.2496726,0.3232701,0.3199147,0.56306297,-0.012404431,-0.2301149,-0.20516849,-0.117783606,0.24371812,0.46145502,-0.12576644,-0.6136813,-0.08885108,0.024294876,0.19976385,0.123813435,0.0070327288,-0.45722598,-0.06585335,0.13490665,-0.15130673,0.26848274,0.45597082,-0.310337,-0.28970075,0.39019352,0.7102686,0.19255795,-0.024395507,-0.045379907,-0.06782378,-0.49475,-0.2541993,0.17229697,-0.2839024,0.48558939,-0.11353946,0.13302413,0.58163977,-0.16365324,-0.060063116,0.2043288,0.01843375,-0.07197831,-0.1456249,-0.32323325,0.0709868,-0.5835634,0.04106815,-0.062176343,0.66531,0.27688715,-0.78630376,0.32830432,-0.46449175,0.17443861,-0.18903594,0.5441974,0.73507416,0.3945425,0.246601,0.8044486,-0.52887267,0.18236019,-0.028265618,-0.39207286,0.15629983,-0.21786109,-0.20704052,-0.6054013,-0.03706599,0.028705683,-0.13459022,-0.036116708,0.11456406,-0.65964586,-0.0025629066,0.026861005,0.76846135,-0.3282353,-0.019689284,0.5463315,0.88317215,0.973319,0.09144756,1.2851807,0.11699591,-0.29506811,0.2802503,-0.47910726,-0.69703823,0.21123901,0.40820125,-0.30116463,0.30703583,0.060837872,0.02499117,0.41069242,-0.44280884,0.09567462,-0.18965127,0.39348248,-0.004428182,-0.18866915,-0.34602025,-0.27442825,-0.056360178,0.12693283,-0.114995,0.3844476,-0.23340556,0.12077355,0.100050285,1.6938524,0.0017431863,-0.0119689265,0.05217155,0.40053236,0.17037517,-0.1533505,-0.12002069,0.32271355,0.36050987,0.16415668,-0.5157261,0.087714255,-0.27971518,-0.5399605,-0.12832364,-0.26964143,0.060983192,-0.077087656,-0.34896883,-0.0715854,-0.07125488,-0.17623194,0.6847477,-2.6617632,-0.101670936,-0.12406626,0.16270041,-0.31769508,-0.36954004,-0.13209246,-0.59922993,0.32004738,0.3226368,0.54285836,-0.789596,0.3076424,0.25867522,-0.5095018,-0.014753934,-0.660982,-0.12294578,0.03639877,0.34495145,0.0943556,-0.06053768,0.0023720562,0.11297977,0.39576373,-0.05007297,0.06758695,0.16796014,0.35594946,0.19633721,0.4276132,0.02474337,0.5270604,-0.12879032,-0.073758006,0.34354958,-0.22156194,0.32761195,-0.15652613,0.046560436,0.329766,-0.39955738,-0.8847754,-0.7521204,-0.21128732,1.0952585,-0.14086075,-0.35333228,0.2347568,-0.2743016,-0.13844034,-0.16449147,0.25402707,-0.16685158,-0.17603451,-0.80583894,0.20064606,0.032924697,0.16429038,0.013335751,0.0034360262,-0.33961084,0.5731243,-0.021353358,0.4774146,0.43792656,0.10193079,-0.008547984,-0.4105692,-0.059081424,0.9092526,0.4724045,0.07422369,-0.122973494,-0.13282758,-0.44117904,-0.038602646,0.08751778,0.4363521,0.75356346,-0.096320644,0.035893116,0.29416257,0.05837003,-0.015750099,-0.1598733,-0.40510637,-0.020810515,-0.060821578,0.48487648,0.6031858,-0.29294837,0.46444184,-0.09007314,0.09531483,-0.0051758923,-0.5730043,0.60595995,0.99929404,-0.20387754,-0.13987736,0.46156722,0.43535417,-0.25190908,0.4568776,-0.57961154,-0.18314077,0.43322,-0.1015097,-0.2713416,0.1505304,-0.32392538,0.17937031,-0.8082393,0.47138906,-0.28624582,-0.4596148,-0.46110773,-0.07974216,-3.000403,0.22888671,-0.25360882,-0.12899132,-0.0057604834,0.046802957,0.15173082,-0.59490025,-0.60047925,0.24739194,0.136198,0.54714155,-0.056323852,0.031486776,-0.16596062,-0.26141846,-0.3640299,0.08906753,0.06991436,0.34729517,0.0034742206,-0.53087366,-0.14083478,-0.20038882,-0.3938445,0.1651445,-0.6350508,-0.41685617,-0.17239232,-0.5695923,-0.36565512,0.70285434,-0.25087568,0.002836932,-0.17226101,-0.012580998,-0.13035476,0.3315093,0.08065632,0.017024072,0.00090919994,0.010050016,-0.020733885,-0.30616948,0.198801,0.113368526,0.29381078,0.30858925,-0.021642417,0.24662031,0.58388346,0.64754534,-0.051303342,0.7676703,0.63456076,-0.2895732,0.3141148,-0.40117878,-0.17663848,-0.46492222,-0.48862478,-0.18652518,-0.4828965,-0.3974653,0.074695736,-0.41270825,-0.69591963,0.33638352,-0.047259774,0.16680506,0.0030645225,0.17517796,0.54421204,-0.24696742,0.060453385,-0.09123316,-0.17399389,-0.60552317,-0.27963892,-0.6792518,-0.42521006,0.26443505,1.2126573,-0.27848583,-0.12511511,-0.02846893,-0.17604496,0.060506925,0.11801249,-0.16981494,0.1572389,0.34433192,-0.14042181,-0.6872914,0.42476177,0.009692945,0.0038916487,-0.49288154,0.1369467,0.52736866,-0.65700537,0.39293194,0.29267114,0.071658894,0.10765894,-0.46908778,-0.19043155,-0.040574387,-0.19718625,0.4338428,0.07435425,-0.61251175,0.3974621,0.3666648,-0.29710126,-0.6242873,0.51116365,0.0031591123,-0.21697521,0.029114857,0.35378337,0.10454248,-0.035113666,-0.2564329,0.23020162,-0.47204322,0.25890994,0.43833423,-0.110517785,0.13061199,-0.094242774,-0.28630942,-0.7862731,-0.11669645,-0.4742674,-0.26732764,0.23236986,0.12298706,0.08201061,-0.037166804,0.25956503,0.41144678,-0.29498586,0.10151767,-0.0016935989,-0.23688333,0.35230303,0.4114504,0.38489568,-0.393211,0.44156513,0.023766503,-0.093196504,-0.19543765,0.049252175,0.39078075,0.15827143,0.33936986,0.025883384,-0.19772232,0.31636405,0.7420827,0.21263725,0.25514615,-0.107004,-0.25556254,0.1927207,0.107798636,0.2738872,0.15021667,-0.43588364,0.05205785,0.07027576,0.19802493,0.41669214,0.22362064,0.19851668,-0.04761107,-0.29988593,0.031575676,0.116176315,-0.037094094,-1.277654,0.48400298,0.26211327,0.6894467,0.6356657,0.0033141896,-0.009561133,0.46711105,-0.17282525,0.22920276,0.41131797,-0.12866677,-0.4982588,0.45659068,-0.6340278,0.50240064,0.00054584444,0.045759633,0.080510594,-0.07785387,0.28765845,0.85398424,-0.24754754,0.04447779,-0.20064494,-0.24242783,0.15995052,-0.27496243,0.03537947,-0.6379193,-0.37481388,0.67205656,0.44974893,0.3302781,-0.088963404,-0.024429651,0.16537058,-0.15766996,0.25629124,-0.024264324,0.19972417,0.11343292,-0.6364416,-0.17124662,0.5189347,-0.24478585,0.03777919,-0.039933167,-0.16866487,0.1680516,-0.3413539,-0.017714158,0.005634738,-0.5727585,-0.047602728,-0.16670889,-0.1310648,0.60719275,-0.037628904,0.21798433,0.11155168,0.07520627,-0.27248478,0.4197775,0.06006964,0.66541123,-0.1261548,-0.16500105,-0.40060866,0.15485163,0.18933032,-0.14977759,0.048791442,-0.12447107,0.00908722,-0.60682416,0.4309718,0.10820372,-0.23480234,0.041047722,-0.24156734,0.025390686,0.5137106,-0.13802525,-0.2659763,-0.13685137,-0.12295436,-0.16655454,-0.18075933,-0.15576825,0.21916418,0.27191716,0.054710053,-0.08592764,-0.12991637,-0.1685456,0.3992925,0.059943527,0.19325608,0.19348699,0.071188994,-0.45061716,-0.21802315,0.093329914,0.3061721,-0.06080942,-0.11886223,-0.25866958,-0.35010263,-0.38133943,-0.10218012,-0.19678244,0.37834376,0.07389634,-0.2433385,0.68438065,0.08642289,1.416324,0.08768973,-0.24286957,-0.025149794,0.64342195,0.095390886,-0.032975204,-0.30082136,0.851165,0.5399097,-0.034458067,-0.2057074,-0.36783817,-0.11001865,0.11884646,-0.14604388,-0.02339517,0.018989675,-0.47845444,-0.39471805,0.31498113,0.16565982,0.16100197,0.0028891228,-0.11388924,0.1725555,0.049733117,0.2693784,-0.332812,-0.14261183,0.25904447,0.22866577,0.16632155,0.13956492,-0.5346517,0.37616703,-0.4943024,0.12761056,-0.08093878,0.18573661,-0.24108958,-0.22068076,0.19753768,0.0910486,0.27523565,-0.29251492,-0.5565233,-0.26812878,0.58790064,0.14666101,0.2214549,0.7293645,-0.26531196,-0.06811139,0.0018925071,0.4519425,0.9923396,-0.26997417,-0.09224387,0.47941494,-0.20478073,-0.5609967,0.2922341,-0.25925773,0.13901696,0.03750571,-0.27929094,-0.5865785,0.24492744,0.12444312,0.11238284,-0.00260311,-0.6582551,-0.18056445,0.11488658,-0.2565805,-0.25805375,-0.33920377,0.38419586,0.8345099,-0.49445093,-0.33854586,0.17551552,0.17265564,-0.20915763,-0.42185187,-0.1139905,-0.38543677,0.28031465,0.20975296,-0.36333388,-0.100766644,0.21526377,-0.37582582,0.095094316,0.17998648,-0.4319276,0.19295576,-0.24938154,-0.08772221,0.90262914,-0.18651468,0.13873887,-0.38177016,-0.3157933,-0.8011882,-0.31241888,0.44313532,0.19945167,-0.0377519,-0.62653553,0.0051639993,0.059038144,-0.01955675,-0.121219814,-0.30600208,0.53418106,0.08818586,0.27310246,-0.09472078,-0.83522576,0.039754186,0.093709126,-0.10277929,-0.4642893,0.4671207,-0.047380608,0.8166529,0.07659845,0.12025292,0.26293027,-0.4646215,-0.0688921,-0.2728821,-0.14038223,-0.65191567,0.10299489,709 -91,0.53986394,-0.08075051,-0.4590187,-0.15899879,-0.15310761,0.1505641,-0.06861146,0.24434295,0.14985977,-0.40129787,-0.085126445,-0.105104305,-0.0046487264,0.1912403,-0.12397395,-0.71633446,0.055533618,0.073972434,-0.64935476,0.62835056,-0.4757581,0.38485712,0.118415624,0.11320983,-0.101889804,0.39239419,0.2172544,-0.2746275,-0.033295587,-0.07370074,-0.11037718,0.1199428,-0.7403848,0.2604224,-0.025576323,-0.18228672,-0.03398156,-0.3174897,-0.30679688,-0.6658803,0.27399707,-0.6660167,0.38374245,0.081681415,-0.23912391,0.23261802,0.03797195,0.29577732,-0.3653935,0.1769008,0.23939231,-0.033719227,-0.2039703,-0.12976086,-0.005405806,-0.4727711,-0.53940016,0.04853073,-0.520408,-0.19568506,-0.21372889,0.16375314,-0.38073546,-0.017341927,-0.09316558,0.32994804,-0.37680006,-0.018173505,0.30313605,-0.1443297,0.23196626,-0.41884387,0.08783822,-0.0986494,0.26627216,-0.19703747,-0.20312482,0.20844857,0.32480317,0.5705769,0.13601913,-0.25496492,-0.22490294,-0.011026779,0.19133982,0.46113214,-0.108075775,-0.45480284,-0.19363837,0.113284044,0.028275114,0.20982122,0.026966792,-0.3690586,-0.27227315,0.074661784,-0.2237764,0.34042698,0.569846,-0.3866827,-0.34292838,0.5281471,0.5858989,-0.02448722,-0.007877411,0.1267129,0.037502483,-0.5416759,-0.1807951,0.24679206,-0.15903056,0.40988842,-0.2051729,0.1463302,0.66298306,-0.29423088,-0.071386695,-0.004394075,-0.10344204,-0.03926252,-0.11151357,-0.029525258,0.13275379,-0.55657715,-0.0033697896,-0.32445562,0.73830265,0.23230442,-0.7844802,0.32917732,-0.4738292,0.20457497,-0.12359142,0.64901257,0.8797878,0.3739372,0.18324357,0.8710557,-0.48483592,0.12240267,-0.13838771,-0.48924106,0.2714439,-0.21913621,-0.053073633,-0.49177277,-0.013844173,0.02857349,-0.081247464,-0.08528899,0.3559619,-0.6062194,-0.09916248,0.11246572,0.6305165,-0.34277457,0.025575839,0.6596194,0.8350643,0.9137567,0.17852063,1.3712972,0.26799786,-0.22595225,0.1872786,-0.4184692,-0.77476895,0.21668802,0.3795603,0.15228848,0.12137068,0.08214455,0.008814881,0.29866016,-0.39648324,0.12719178,-0.2868887,0.40706322,-0.0548964,-0.13244069,-0.13412082,-0.08668201,-0.118522786,0.20864972,0.15053603,0.20068803,-0.20536658,0.29277074,0.085318364,1.5546718,-0.14288083,0.13643321,0.023082668,0.25436544,0.24847853,-0.19362688,-0.14347272,0.3050738,0.48438495,0.18386468,-0.60884786,-0.05449602,-0.15744683,-0.41769323,-0.19895887,-0.33108038,0.026594106,-0.12149524,-0.28444526,-0.1320566,0.01635795,-0.32278198,0.58548796,-2.6498747,-0.047681794,-0.13014689,0.32289314,-0.25916222,-0.30534047,-0.21658947,-0.6009117,0.48723897,0.33466756,0.40688318,-0.77305174,0.31481135,0.2968691,-0.37139535,-0.02337366,-0.7264365,-0.0015640333,-0.08802411,0.31851864,0.02305185,-0.13253261,-0.12709114,0.105354555,0.44440812,0.019295715,0.06735077,0.26761866,0.34376055,0.18334036,0.5563463,0.11591405,0.54800034,0.000301769,-0.2248597,0.31373852,-0.3453628,0.28982165,-0.1613453,0.07424147,0.24756932,-0.51028305,-0.8653896,-0.7537225,-0.278826,1.1742209,-0.24395582,-0.26981318,0.21167651,-0.16764414,-0.2357389,-0.13081834,0.37350976,-0.09541698,-0.1381944,-0.7492807,0.14551502,-0.06845948,0.17111604,-0.03944906,-0.09804955,-0.4500432,0.75459206,-0.1286069,0.5805093,0.30310762,0.11877775,-0.07382533,-0.506079,0.055754878,1.214689,0.40099126,0.040130958,-0.08961796,-0.22257023,-0.33784413,-0.11302267,0.066968665,0.46903533,0.821223,-0.08109354,0.015188515,0.31951302,-0.075840175,0.04657131,-0.09748609,-0.24802193,-0.091184326,-0.21606322,0.58692926,0.49899185,-0.120626,0.44033965,-0.10625799,0.20707805,-0.065803215,-0.4736676,0.65038025,0.8609594,-0.06613138,-0.28922802,0.47146422,0.3111546,-0.15298209,0.43514538,-0.5119833,-0.24860297,0.30989596,-0.23740305,-0.19834432,0.1855022,-0.41640502,0.14833307,-0.8546462,0.3459983,-0.18602723,-0.41059598,-0.47145754,-0.1978606,-3.4391747,0.14515856,-0.18411753,-0.124066755,-0.034324884,0.052283436,0.29771453,-0.46361843,-0.47568238,0.23882324,0.096353866,0.655553,-0.01281083,0.12418779,-0.17433286,-0.11678934,-0.34080583,0.16540556,0.10018884,0.16606143,0.029757142,-0.31804872,0.05033055,-0.06030231,-0.2908421,0.11169663,-0.4867285,-0.4775713,-0.2565686,-0.45261627,-0.26808897,0.71625644,-0.23743169,0.05057455,-0.16390687,-0.021207524,-0.017105948,0.3462926,0.092893735,0.062876426,-0.00064065866,0.0011431985,-0.024921328,-0.34310433,0.23241092,0.0076732934,0.2828199,0.27650952,-0.19297689,0.12715891,0.39658728,0.4467402,-0.19838923,0.73107624,0.45368266,-0.07093805,0.15720834,-0.23660202,-0.16606295,-0.5485059,-0.37148798,-0.20072219,-0.5162886,-0.3745453,-0.089474045,-0.37625083,-0.78658015,0.4041819,0.022992045,0.004579097,-0.01593583,0.3408394,0.48061478,-0.008137219,0.090124145,-0.068856135,-0.15740557,-0.45050094,-0.22723588,-0.538694,-0.36245117,0.25757384,1.1082839,-0.33398277,-0.03518771,-0.04679887,-0.027530748,-0.010686215,0.07929118,-0.035645794,0.24192552,0.4712975,-0.039513722,-0.56500846,0.4932981,-0.23324981,-0.14047512,-0.72530323,0.16238065,0.50408226,-0.77303296,0.43306926,0.31975198,0.10304004,0.035107434,-0.52830756,-0.12945941,-0.057202682,-0.30091977,0.41753954,0.12404308,-0.8293566,0.5255695,0.25318238,-0.14921631,-0.72462285,0.35145968,-0.06676974,-0.30628255,0.06472479,0.25959224,0.12249889,-0.027277725,-0.3224957,0.23270456,-0.4793985,0.22612372,0.25274432,-0.0643765,0.3675244,-0.05896329,-0.30441695,-0.67335826,-0.15515599,-0.51033646,-0.21197739,0.1516038,0.06606398,0.12558809,0.17090392,0.006378904,0.53569067,-0.34881085,0.20301235,-0.03362474,-0.26844186,0.35935026,0.40364504,0.35065025,-0.43376952,0.54710805,0.06959334,-0.12457212,-0.19347505,0.12712224,0.60166717,0.12300329,0.29450065,0.013318183,-0.24201453,0.4185407,0.8706676,0.13456333,0.36574355,0.019945353,-0.25079486,0.2726605,0.13998978,0.09472589,0.10812169,-0.48817408,-0.0015833043,0.09015946,0.19405702,0.35635415,0.19835287,0.37328476,-0.050516136,-0.13546059,-0.09231987,0.18198664,0.019076277,-1.0586247,0.34785846,0.24336055,0.6959286,0.52457774,-0.039276972,-0.0042891316,0.46636087,-0.28730446,0.19290727,0.16230226,-0.19138414,-0.43900692,0.45040166,-0.8260202,0.42051613,0.02293418,-0.017121192,0.054146837,-0.019117052,0.2950855,0.98933923,-0.12491928,0.10682752,-0.16206142,-0.18159652,0.15596586,-0.32568362,0.008357849,-0.538483,-0.36694592,0.6783721,0.31191927,0.3495615,-0.09953919,0.034147825,0.04142029,-0.09091492,0.05570353,-0.04561977,0.11666518,0.072992,-0.5504892,-0.34437835,0.5055841,-0.06532898,0.12692206,0.07888764,-0.22539817,0.18870759,-0.22027653,-0.04210995,-0.18290392,-0.5318973,0.03132478,-0.18552159,-0.28295127,0.5262497,-0.17749622,0.3233898,0.20310813,0.06563277,-0.21978936,0.2230421,0.19041029,0.62619084,-0.032588415,-0.21408914,-0.472867,0.22954747,0.15391493,-0.27511707,-0.1315711,-0.31596246,0.19009389,-0.6848924,0.38245392,-0.08716407,-0.5213568,0.17517497,-0.22815812,-0.06770836,0.49026257,-0.25126272,-0.17583165,0.15216987,-0.30480233,-0.2291747,-0.10940147,-0.18034406,0.2493597,0.30998966,-0.03902881,0.005382385,-0.15190953,-0.14951646,0.33777392,0.24498925,0.31278482,0.22421804,0.1249685,-0.30859458,-0.09545286,0.2173795,0.40697664,-0.08183442,-0.1378187,-0.2580164,-0.6005149,-0.4086557,0.029701918,-0.12319707,0.3222139,0.104820296,-0.21874686,0.5731611,0.06774193,1.1194172,0.1991225,-0.3106449,-0.0021796227,0.56648034,0.07487551,-0.0068543926,-0.31647748,0.876312,0.60313743,-0.11676285,-0.10136025,-0.35224503,-0.21316135,0.17744221,-0.17429319,-0.019701302,0.0560328,-0.67438906,-0.4551433,0.23650779,0.13820365,0.15538698,0.021647688,-0.175314,0.15757264,0.03908001,0.13163304,-0.5745468,-0.107079566,0.27357668,0.16785114,0.087782204,0.17553346,-0.45778647,0.3570693,-0.42591417,-0.05598475,-0.050950065,0.13740586,0.0050539076,-0.16531193,0.2956715,0.05158279,0.41755253,-0.25826234,-0.57784635,-0.2878832,0.49145854,0.24025312,0.17600426,0.68497956,-0.28883967,0.121263504,0.04018811,0.57380563,1.2557987,-0.24885684,0.13773894,0.35749903,-0.28798476,-0.56150365,0.21174696,-0.16828889,0.082912475,-0.040160723,-0.3675414,-0.41365165,0.3119479,0.10826072,0.15100402,0.28019357,-0.67075515,-0.16347873,0.1611533,-0.32644102,-0.27197966,-0.31860778,0.2821845,0.8473047,-0.35527116,-0.20340696,0.18638559,0.22324865,-0.26996785,-0.63194555,-0.23896784,-0.27527896,0.22321978,0.14401925,-0.2472029,-0.01059968,0.17002967,-0.40277794,0.15742789,0.2497685,-0.3195174,0.08013634,-0.23404887,-0.12074922,0.8845496,-0.18116567,0.13289395,-0.5545087,-0.35928184,-0.83714926,-0.34024268,0.46864653,0.17166789,0.050673142,-0.52751905,-0.15651488,-0.078134276,0.10903581,-0.0034482717,-0.49015874,0.5418851,0.1170869,0.25669444,-0.040205576,-0.939049,0.07984248,0.009126237,-0.25298375,-0.5541346,0.5216428,-0.04483859,0.7436258,0.16108404,-0.04921398,0.32915756,-0.62196046,-0.053072296,-0.27049354,-0.13001694,-0.8422364,0.062261,717 -92,0.35732365,-0.026139062,-0.5672534,-0.040549207,-0.113085486,0.1552766,-0.09098762,0.41550335,0.31140137,-0.28606555,0.032018863,-0.08431023,0.11978653,0.3684144,-0.086631715,-0.49353835,0.010307603,0.083365306,-0.35554615,0.40184793,-0.50839084,0.24231723,-0.23529083,0.5019176,0.023756005,0.35034946,0.12995468,-0.08724341,-0.074530885,-0.07437833,0.008518428,0.567621,-0.30502224,0.1674026,0.054884814,-0.24390717,0.05243627,-0.28399152,-0.4359712,-0.6454474,0.2679549,-0.50045204,0.38104156,0.0707526,-0.30899256,0.17370239,-0.016948007,0.1754021,-0.21033615,-0.16506487,0.11232843,-0.16066635,-0.009710517,-0.30726874,-0.11740592,-0.3126475,-0.47364634,-0.0031144312,-0.43920648,-0.18623897,-0.25601906,0.10787457,-0.36432523,-0.09044704,-0.09617851,0.42524624,-0.4310317,0.14175113,0.13349116,-0.32453078,0.26983315,-0.60722864,-0.32674405,-0.012666517,0.15941107,-0.13290226,-0.2832082,0.30631912,0.32362524,0.47330663,-0.07641104,-0.044030942,-0.45774522,-0.16814783,0.114042975,0.44269326,-0.35405025,-0.5344311,-0.0375173,0.09751861,0.002522163,0.22114071,0.03753656,-0.22813134,-0.09624768,0.27838606,-0.21993536,0.41370997,0.48195988,-0.40673587,-0.28715998,0.32164523,0.4358676,0.22924009,-0.08412527,-0.009253945,-0.004267833,-0.46035498,-0.13529783,-0.117601044,-0.08027292,0.3823821,-0.10049106,0.29134938,0.6997025,-0.1826354,-0.08280133,0.045164455,0.059396237,-0.053289875,-0.1967386,-0.034793984,0.10315873,-0.26615676,0.21018589,-0.0794503,0.77811795,0.15738982,-0.62820625,0.42753455,-0.44297156,0.14977041,-0.11162058,0.51159394,0.6601743,0.2515529,0.34765995,0.7276654,-0.3629009,0.064773425,-0.093589,-0.43192416,0.13908191,-0.10540087,-0.08304352,-0.51157737,0.058634274,0.14735308,-0.08248537,0.21486032,0.38855976,-0.6264567,-0.14815672,0.1411949,0.79009265,-0.26597938,-0.14868197,0.43863878,1.001052,0.8480092,0.0016402714,0.9817393,0.10747879,-0.16935399,0.2544425,-0.4156564,-0.6432104,0.22232366,0.2690667,0.015910953,0.12909573,-0.018915124,-0.04307963,0.37969685,-0.17540479,-0.0053457525,-0.11686472,0.4595891,0.12558573,-0.065417066,-0.24046475,-0.28074118,-0.073601864,-0.13155292,0.077342525,0.3063256,-0.16208296,0.4266502,-0.028181992,1.7471281,-0.020990934,0.18199056,0.1310648,0.4687665,0.24604489,-0.13296072,0.004491331,0.37894818,0.1125447,0.11766871,-0.42934242,0.14677191,-0.2224131,-0.6159033,-0.020246062,-0.3637335,-0.080239415,0.21491337,-0.31117243,-0.14322181,-0.120640725,-0.26949987,0.50085104,-3.0222983,-0.14250016,-0.013662152,0.30532363,-0.24212146,-0.3056979,-0.153416,-0.4061711,0.2891896,0.31024924,0.47850686,-0.66884506,0.10927113,0.42521745,-0.4769271,-0.085353225,-0.43090293,-0.011983775,0.0018112808,0.3374477,0.027388796,-0.11294045,-0.11270696,0.19006646,0.48008043,-0.085030004,0.091578454,0.23316991,0.23176706,0.04923246,0.35087413,-0.08264198,0.47441697,-0.13939814,-0.2339096,0.47077733,-0.37775078,0.24855882,-0.089026764,0.019578673,0.3424895,-0.3019684,-0.8885838,-0.5087702,-0.06370035,1.1655545,-0.1387771,-0.37202287,0.33243707,-0.4380191,-0.22822267,-0.13210343,0.30145264,-0.044582695,-0.17070004,-0.73905665,0.17083013,-0.18146327,0.08767094,0.10538204,-0.046438277,-0.3337939,0.5279978,0.04297389,0.4370023,0.3407762,0.037029132,-0.25826484,-0.35955203,-0.026213208,0.66048366,0.35976595,0.242365,-0.22877583,-0.24336317,-0.21486801,-0.12829241,0.19971727,0.5864911,0.50254035,-0.044666387,0.13455148,0.3829325,-0.16076604,-0.045398694,-0.19500403,-0.22645943,0.082141615,0.008775903,0.61025786,0.6773898,-0.30457282,0.3925907,0.13276774,0.30749032,-0.10459327,-0.47511378,0.51505613,0.8775671,-0.17634383,-0.28030166,0.5384722,0.25129876,-0.34223714,0.2985403,-0.5323743,-0.22478227,0.5648818,-0.26180008,-0.37482524,0.15637535,-0.33627325,0.118947804,-0.79560757,0.2021968,-0.24338259,-0.40643343,-0.48882768,-0.14804007,-3.4264956,0.14564586,-0.3571902,-0.14792426,-0.06876867,0.0039301217,0.08312045,-0.6077744,-0.46977478,0.07754092,0.16131409,0.58479965,-0.13299981,0.09887751,-0.31980705,-0.3246501,-0.24697882,0.18231167,0.06566587,0.44429204,0.029313803,-0.4046164,0.11886388,-0.07768986,-0.36331546,0.11928174,-0.39240432,-0.59300053,-0.17329332,-0.5209592,-0.35792345,0.6209528,-0.22299623,-0.05506532,-0.14892396,-0.010169007,-0.1139375,0.24503732,0.19963324,0.024998877,0.12953368,0.012325537,-0.019145388,-0.3437646,0.1877369,-0.11759659,0.3339719,0.47656137,-0.011839494,0.0944033,0.5375449,0.58977216,-0.07929379,0.81763834,0.4279945,-0.04443063,0.2884303,-0.36632344,-0.13948685,-0.44817442,-0.31533596,-0.0040002055,-0.37647328,-0.48656204,-0.11058898,-0.3575734,-0.540346,0.51432914,-0.07868226,0.06669875,0.032465305,0.21791425,0.5578537,-0.16666336,-0.057455093,0.00891209,-0.09337655,-0.63499105,-0.2263872,-0.60359645,-0.5048915,0.31105265,0.78304183,-0.3288998,-0.05976732,-0.01738192,-0.18913133,-0.098046936,0.09788421,0.19981146,0.19645825,0.46902537,-0.11849493,-0.5324043,0.31368423,-0.11168607,-0.16483267,-0.664403,0.24734725,0.4644022,-0.5940852,0.67858136,0.21697244,0.17782936,-0.10031931,-0.5581757,-0.19788484,0.019047415,-0.25400907,0.43278983,0.1935682,-0.82895035,0.46303725,0.46278703,-0.2660372,-0.6382585,0.4636858,-0.111879095,-0.37954348,-0.15663831,0.27142403,0.1420581,-0.03209612,0.009922586,0.26614693,-0.47727314,0.24794026,0.16460836,-0.10951118,0.4675753,-0.14445965,-0.21203388,-0.68074054,-0.010281669,-0.50247246,-0.29588726,0.23859641,0.11340593,0.043989573,0.033785027,0.010602355,0.47433078,-0.32465038,0.044285163,-0.05199077,-0.10514218,0.31723687,0.38233268,0.48357517,-0.3809166,0.52607685,-0.06385268,0.006671207,0.034923043,0.080860555,0.36635756,0.090714544,0.32855347,0.05128371,-0.2865447,0.15838961,0.864527,0.057299428,0.4518198,-0.13840286,-0.18879548,0.17039709,-0.020513128,0.15848838,0.0016168281,-0.5105861,-0.063868694,-0.22263888,0.17102385,0.49766386,0.17802934,0.3088972,-0.08799396,-0.46568745,0.036912546,0.21028751,0.05166158,-1.0795594,0.24794206,0.19733453,0.77487093,0.41115302,0.07627713,0.02070231,0.575885,-0.21875621,0.12670802,0.32501912,-0.016076542,-0.58622503,0.47229794,-0.85330343,0.5241847,-0.039573908,-0.08951948,0.022879824,-0.08229889,0.30978212,0.7414005,-0.16377562,-0.043005995,0.13302107,-0.30006492,0.11759814,-0.30854413,0.025997698,-0.6098192,-0.26605222,0.5116436,0.6201022,0.26088357,-0.2575112,-0.0766379,0.09851636,0.0043527335,0.10398434,-0.034693725,0.17944996,-0.043247677,-0.5810064,-0.32547426,0.52225614,0.23657736,0.19916266,-0.04709123,-0.10648926,0.39870396,-0.10214038,-0.013162948,-0.08623233,-0.3537125,0.07013654,-0.17402616,-0.48235375,0.66471463,-0.10538012,0.35012147,0.16163696,0.108391136,-0.2657999,0.44250038,-0.039814703,0.7265091,-0.05656147,-0.053298168,-0.5125309,0.13409176,0.16025102,-0.12143731,-0.28974622,-0.2520854,-0.06793952,-0.42931363,0.4315548,-0.027452506,-0.16870195,-0.045486305,-0.15987487,0.03569731,0.43293554,0.004947275,-0.23205717,-0.14765038,-0.14714286,-0.37279084,-0.122994065,-0.039721474,0.1587058,0.14580801,-0.12520902,-0.11939211,-0.2331021,-0.09917767,0.24211745,0.015406871,0.13596842,0.33550793,0.075777724,-0.31878906,-0.13557878,0.2534835,0.44921488,0.014206018,-0.058186524,-0.18291461,-0.46509922,-0.38591918,0.10361661,-0.11711612,0.33265066,0.18445197,-0.42195585,0.5308758,-0.10786329,1.0003331,0.08316881,-0.11744978,0.033148885,0.43814716,0.019176364,0.004620157,-0.31001604,0.77368605,0.55814743,-0.11162899,-0.27212077,-0.35145822,0.015192484,0.16150527,-0.21569845,-0.10224634,-0.038979776,-0.6646232,-0.11994191,0.22480294,0.25629526,0.22325844,-0.111326426,-0.05747713,0.1203163,0.1981605,0.30604306,-0.2427635,-0.26494348,0.21908653,0.30534947,0.086219095,0.15159898,-0.40836993,0.34493637,-0.4706799,0.16856831,-0.21817867,0.14615327,-0.2386366,-0.30357617,0.17510164,-0.02895322,0.35289767,-0.23761863,-0.2944337,-0.16615045,0.26763162,0.18492849,0.06734273,0.6892475,-0.23730704,-0.06228092,0.17781958,0.4038899,1.1629257,-0.20282036,-0.14440918,0.40330285,-0.20982115,-0.6096068,0.3209344,-0.29431874,0.13035946,-0.095066175,-0.11786996,-0.5590638,0.17732057,0.19559628,-0.008251039,-0.08185841,-0.5696739,-0.14261547,0.10192462,-0.46183878,-0.09622325,-0.31697536,0.043103583,0.7243905,-0.22932842,-0.197938,0.112475246,0.33375573,-0.15645836,-0.578295,0.09040095,-0.23812039,0.35776913,0.0014884621,-0.25940478,-0.031367064,0.2147274,-0.43957824,0.12128091,0.2490935,-0.45352754,0.12329248,-0.30732682,0.0139381215,0.8680115,-0.25394425,0.33434713,-0.35092938,-0.34957558,-0.6969127,-0.20265135,0.47027212,-0.110474534,-0.017051425,-0.6589132,-0.11690049,-0.055848762,-0.29362085,-0.16113025,-0.39301637,0.4879225,-0.029805379,0.23545802,-0.11331456,-0.5854847,0.12722957,0.1353397,-0.055875298,-0.55106974,0.566871,-0.21800052,0.80774486,0.11312467,-0.006722551,0.38703018,-0.40034854,0.04407945,-0.2225119,-0.24549799,-0.58723444,-0.019007836,718 -93,0.5649487,0.019036116,-0.38470602,-0.18134469,-0.48623654,0.20612307,-0.27557743,0.055221446,0.14107129,-0.14602587,0.0025923513,0.0027708411,-0.1858235,0.22363268,-0.25312153,-0.6961601,-0.06692585,-0.0004905015,-0.6473788,0.55288476,-0.4764463,0.3705744,0.073650464,0.23663683,0.17396387,0.32255566,0.25911456,-0.05278857,-0.025952738,-0.1844051,-0.22221142,0.1087196,-0.8071845,0.38233095,-0.18724072,-0.3152445,-0.06097091,-0.34969097,-0.37591296,-0.6886885,0.27991927,-0.7555648,0.4676901,-0.22147655,-0.32454237,0.14913204,0.12493876,0.33568388,-0.27432883,0.0707466,0.30135238,-0.23599169,0.01425045,-0.07672488,-0.26046118,-0.4054786,-0.55880886,-0.073784634,-0.76522225,-0.012945805,-0.37102968,0.31374112,-0.27662095,0.06164114,-0.32789204,0.27168578,-0.37817442,0.15113005,0.16124362,-0.09376159,0.03671881,-0.42021978,0.034185603,-0.08989783,0.2657021,0.22671866,-0.07529274,0.29411036,0.24787322,0.35409003,0.2706821,-0.47816914,-0.2320638,-0.08739271,0.12187172,0.2908064,0.04350543,-0.07638344,-0.31325364,-0.046236165,0.51812696,0.41493675,-0.0024202839,-0.27432758,0.0898817,-0.11081876,-0.19770545,0.5041966,0.56568205,-0.36760983,-0.16796085,0.46346533,0.44966692,0.16500223,-0.29033542,0.17912652,-0.14899994,-0.3526364,-0.16867402,0.3337195,-0.07275012,0.38312334,-0.13771357,0.05834872,0.6745288,-0.15548795,0.030545242,-0.017933778,-0.21466163,-0.0037584752,-0.17448488,-0.0646658,0.10249594,-0.63106215,-0.039941482,-0.20792279,0.6596775,0.0727808,-0.87271696,0.2868302,-0.5036537,0.11904208,-0.094275385,0.6159462,0.78350616,0.66180235,0.011059681,0.80874056,-0.37804842,0.058567017,-0.300793,-0.34791708,0.15007117,-0.07823895,0.16527161,-0.48528558,0.020231895,-0.21754384,0.0037925597,-0.19178979,0.34016463,-0.2804259,-0.2502331,-0.105600014,0.6056276,-0.32977524,-0.0058151186,0.88556576,1.1224592,0.9901012,0.087418735,1.1138554,0.33720183,-0.009588569,-0.15609938,-0.27906597,-0.40143588,0.10194808,0.37063408,0.19582766,0.3420681,0.13336565,0.018135538,0.28612807,-0.15862526,-0.15286525,0.047394447,0.24860016,-0.050463296,-0.0007526167,-0.30734286,-0.32728374,0.329332,0.16757399,0.04496239,0.28136933,-0.1721361,0.42141834,0.24723026,1.1059468,0.10490363,0.10529882,0.024776518,0.4889136,0.26508513,-0.22790334,0.059869483,0.26351753,0.29303148,-0.11676639,-0.46740007,-0.020435093,-0.4041184,-0.27578962,-0.1495934,-0.45803025,-0.1400349,-0.040250108,-0.3536563,-0.11534679,0.04903427,-0.37806672,0.45236358,-2.6269588,-0.09358284,-0.1710214,0.2880965,-0.28910136,-0.21037419,-0.18864502,-0.54272383,0.37351882,0.27143645,0.34910262,-0.5660136,0.5642585,0.3745032,-0.54484135,-0.04475764,-0.6429056,0.04725551,-0.115097456,0.4786716,-0.10737981,-0.19409572,-0.20301697,0.23405103,0.7580404,0.28860897,0.1571751,0.33778912,0.45537436,-0.10416329,0.679407,0.057699114,0.43755478,-0.35714042,-0.033178028,0.53011966,-0.41662621,0.48310795,-0.027648225,0.13773525,0.3799464,-0.5499527,-0.76826775,-0.55786467,-0.40195808,1.3249686,-0.50944924,-0.5841,0.22562271,5.884096e-05,-0.14078824,0.23546386,0.38415217,0.008713022,0.14664288,-0.5168488,0.03673184,-0.15530956,0.11847115,-0.11143498,0.16959879,-0.41443682,0.7634179,-0.19985092,0.5030861,0.17564856,0.27753782,-0.11473106,-0.4135583,0.13861702,0.72558093,0.51517385,-0.08133374,-0.107028544,-0.23980872,-0.13833866,-0.24826494,0.15601546,0.7833089,0.4860356,-0.07826288,0.082698986,0.3884799,-0.20175497,-0.03703734,-0.20920101,-0.29463458,-0.09120535,0.0808208,0.45785448,0.64810896,0.0352773,0.2827438,-0.10242468,0.20536649,-0.10039875,-0.6849966,0.55095375,0.71838665,-0.085189216,-0.14615689,0.5022656,0.49707294,-0.1338493,0.49862912,-0.55167955,-0.41389334,0.5871562,0.025242712,-0.43648905,0.13139847,-0.28814963,-0.18992218,-0.6679511,0.19128154,-0.32294032,-0.6360723,-0.43287814,-0.09195216,-3.3591466,0.047268927,-0.07027433,-0.034428876,-0.14702839,-0.2860685,0.42898935,-0.45409447,-0.56085354,0.067824274,0.07749151,0.41540003,-0.14333452,0.20387274,-0.28782287,-0.25036013,-0.38646573,0.3472432,0.109660186,0.2435275,-0.1982795,-0.25350514,0.04474681,-0.18075615,-0.49459523,-0.116960876,-0.52324045,-0.35761806,-0.03283281,-0.35253903,-0.1765246,0.5820303,-0.3046022,0.00043409318,-0.21712103,-0.09788272,-0.07555015,0.2757977,0.13179646,0.20842865,0.15941922,-0.1509464,-0.13742076,-0.39135706,0.3820475,0.16893233,0.3443096,0.39937627,-0.0548569,0.090215385,0.3982172,0.5100508,-0.0743562,0.85372376,-0.01772771,-0.073293164,0.44692886,-0.16032179,-0.43560672,-0.7270353,-0.18944094,-0.34369603,-0.42651612,-0.39629945,-0.12685063,-0.3367982,-0.8993534,0.30128568,0.20390026,0.33968747,-0.3077824,0.20477405,0.42211553,-0.14374813,0.071116805,0.036794454,-0.33742374,-0.53091943,-0.52203614,-0.6717305,-0.55537355,0.14871758,0.9362077,-0.14805672,-0.039637834,-0.15056482,-0.19911642,0.16490935,0.06451235,0.16016577,0.0824047,0.3388176,-0.016017266,-0.5655748,0.47608608,-0.18176663,0.0072971135,-0.5001222,0.16898774,0.67253876,-0.5179667,0.51238734,0.30940598,0.1937407,-0.028509997,-0.7139653,-0.058785915,-0.0040514246,-0.17817196,0.6991632,0.34511963,-0.75829023,0.51939076,0.0595806,-0.1647985,-0.6816808,0.5487423,0.054073934,-0.13825338,-0.0008268878,0.35752785,0.205877,-0.07474749,0.023555234,0.22595982,-0.5216218,0.3067177,0.3452894,-0.0003500022,0.3579856,-0.05705962,-0.34398663,-0.5951282,-0.144532,-0.5388764,-0.28073558,0.13388264,0.0084069185,-0.009130582,0.1446821,0.01556731,0.4725564,-0.12128717,0.2912005,-0.121525556,-0.23308152,0.5815265,0.5476152,0.46349797,-0.45782676,0.54985774,0.19815229,-0.15089047,0.08241671,0.16076237,0.34079129,0.12568723,0.34491572,-0.06744801,0.007544631,0.109431714,0.46172404,0.2904148,0.29065827,0.06212599,-0.3343032,0.362377,0.07259102,0.19976115,-0.1840076,-0.5164693,-0.038204014,-0.034403298,0.15237355,0.4332032,0.03485913,0.3700495,-0.008302327,0.037828095,0.15679847,0.08025073,-0.2785405,-1.2192662,0.29149607,0.27863503,0.7889534,0.50850844,0.0862301,-0.06324131,0.5647098,-0.2626764,0.037905894,0.44705695,0.15564717,-0.24766468,0.44608447,-0.64290506,0.37531257,-0.046219334,0.013310136,0.2394107,0.22423878,0.4197309,1.0134276,-0.107671015,0.050423786,-0.07458858,-0.27660358,0.12161651,-0.1369253,0.18481393,-0.36134952,-0.44460875,0.6251592,0.26938915,0.3948393,-0.3981858,-0.15489201,-0.074822545,-0.17396078,-0.0126421,-0.096494086,-0.14876556,-0.15529302,-0.4115801,-0.35596913,0.5055376,-0.22826703,0.101956084,0.07586027,-0.20476875,0.21667227,0.016880883,0.017212667,0.047105078,-0.74165785,-0.031509332,-0.19102079,-0.26910773,0.25845155,-0.3808239,0.31794477,0.113025665,-0.088948384,-0.2618115,0.17311266,0.16907126,0.57438356,0.02653598,-0.061045248,-0.2846474,0.013776988,0.23854873,-0.29974484,0.030687876,-0.26964477,0.06513865,-0.65541905,0.27908117,-0.35642093,-0.304254,-0.002442291,-0.17816657,-0.06805365,0.4515891,-0.09284943,-0.12340194,0.23336534,0.11269209,-0.37021694,-0.19793466,-0.22618479,0.16558805,0.09301095,-0.1372897,0.12828079,-0.042018313,0.07147235,0.38046014,0.17745075,0.2395685,0.11957072,-0.11618352,-0.4785425,0.04561366,0.041985393,0.34589258,0.13942614,0.07749033,-0.2263556,-0.3873198,-0.37980497,0.48856223,-0.20979631,0.06843881,0.03707326,-0.23670247,0.73628336,0.04947714,1.0915347,0.049983438,-0.32090843,0.13180505,0.60288334,0.052124258,-0.020554608,-0.292628,0.9210286,0.6286846,-0.08430448,-0.048727088,-0.48217967,-0.26518768,0.0898331,-0.33212724,-0.3123806,-0.020512734,-0.5853983,-0.051569715,-0.048368856,0.25545514,0.019352026,-0.082146145,-0.2308653,0.26914245,0.2036978,0.60626006,-0.43530408,-0.27737427,0.37154225,0.028521124,-0.11858416,0.10403617,-0.33475527,0.42074543,-0.7218345,0.103881076,-0.3329321,0.045475796,-0.21841313,-0.2847513,0.18750836,-0.05003531,0.30789846,-0.25050324,-0.46552452,-0.17306826,0.47600362,0.29285818,0.28063577,0.6863394,-0.16552152,-0.03561819,0.05313839,0.54182744,1.0972434,-0.12580833,-0.04055597,0.27757472,-0.35200208,-0.6018586,0.06400202,-0.40168685,0.062362682,0.013763359,-0.4708184,-0.1507689,0.30226085,-0.0011880286,0.06820931,0.12385947,-0.76123375,-0.07222003,0.17008667,-0.17761284,-0.25025585,-0.20661594,0.29195276,0.81614137,-0.3302969,-0.4015357,-0.0076912753,0.28765556,-0.19171861,-0.6365529,-0.018587057,-0.22267896,0.22496155,-0.06931076,-0.27536082,0.06412883,0.3907432,-0.44332775,-0.018005982,0.12542617,-0.31971008,0.10268772,-0.12637183,-0.03134636,0.758015,-0.0009882152,0.026986867,-0.5090433,-0.53573054,-0.74280775,-0.40784308,-0.14881247,0.2827766,-0.026786998,-0.39231277,-0.11685343,-0.2747449,0.035791762,0.031420317,-0.6089236,0.3946244,0.17141825,0.4786522,-0.12067965,-0.90588844,0.078218274,0.14931384,-0.14845762,-0.4539277,0.66179496,-0.3387617,0.5978068,0.14126222,-0.06361267,-0.11631495,-0.7047264,0.22521463,-0.36159685,-0.14893138,-0.6807573,0.20608449,721 -94,0.53554374,-0.07275382,-0.55666065,-0.13828397,-0.38622624,-0.030850977,-0.13727228,0.38698405,0.1807832,-0.31815943,0.030212529,-0.049591064,-0.100306466,0.41675508,-0.14175679,-0.7048691,0.0951727,0.09350742,-0.5273644,0.6811823,-0.41134852,0.34732747,0.0032308754,0.24751404,0.18201642,0.15528733,0.14133264,-0.034391858,0.06366676,-0.08139378,-0.11190364,0.25987756,-0.46130782,0.083926596,0.09032766,-0.17778793,0.042133294,-0.37059152,-0.3091329,-0.66063464,0.227333,-0.66553247,0.49240726,0.0049619526,-0.3590607,0.14705843,0.14429998,0.30431196,-0.26062268,0.02269034,0.21999387,0.02343461,-0.1048823,-0.0033878312,-0.08999918,-0.51271874,-0.515785,-0.0884356,-0.5475311,-0.3199761,-0.371983,0.11441767,-0.39591247,-0.06345566,-0.14742035,0.5585909,-0.43004763,-0.14159521,0.15119153,-0.14272183,0.19466186,-0.6591457,-0.007422358,-0.082040526,0.07123922,-0.035333917,-0.15677723,0.32035744,0.21126497,0.5543075,0.018244991,-0.2126956,-0.2174329,-0.18384323,0.12728715,0.41616637,-0.27236184,-0.35634455,-0.11484262,0.08414819,0.21443307,0.012520131,0.054314725,-0.3943672,-0.04866772,0.1042956,-0.21821846,0.27437174,0.4938884,-0.37708727,-0.098123536,0.41560802,0.41108146,0.22031598,-0.027312614,0.11531988,-0.08944097,-0.510638,-0.114121795,0.0073911343,-0.25498962,0.29862136,-0.12180383,0.16228715,0.6292677,-0.14183648,0.04893534,0.0061546825,0.098317884,0.14333871,-0.25290743,-0.2721408,0.15883228,-0.6724042,0.1550487,-0.07346339,0.74957645,0.16863188,-0.56432486,0.28015593,-0.46612862,0.1372977,-0.13014334,0.43910515,0.7959042,0.3495526,0.1427845,0.71802676,-0.40736535,0.1210147,-0.15673004,-0.22284426,0.16545804,-0.039092593,0.08988405,-0.47408795,0.08632084,-0.06571817,-0.15763386,0.0027776216,0.36684924,-0.61303353,-0.21286163,0.21703334,0.68696356,-0.313472,0.06813881,0.53234273,0.9476842,0.91109866,0.088580295,0.96786314,0.2572341,-0.10810031,0.213391,-0.23174122,-0.5451733,0.23344886,0.40839,-0.06995082,0.19281666,0.027001828,-0.06811693,0.48315006,-0.24177164,-0.112777874,-0.33021793,0.54245126,0.09422707,-0.1996117,-0.3634094,-0.22738022,-0.011397094,0.12775902,-0.09451627,0.34878266,-0.30404565,0.07779468,-0.1289377,1.4286278,-0.12969662,0.16863474,0.18021193,0.3792048,0.36604232,-0.18615957,0.030948825,0.32857448,0.37080473,0.096246496,-0.5815942,0.08153157,-0.38783687,-0.42635012,-0.119378656,-0.3514502,-0.021098852,0.077415615,-0.4918041,-0.06761656,0.052033905,-0.17573729,0.48949775,-2.5236933,-0.24052642,-0.10889343,0.2506198,-0.2873619,-0.3146315,-0.21012223,-0.27396578,0.4015724,0.3074762,0.5388967,-0.5489554,0.4021589,0.37451023,-0.54709387,0.0397881,-0.5233518,-0.07409908,-0.05868603,0.36726424,-0.11769895,-0.19116029,-0.021484613,0.28463042,0.5933952,0.018256359,0.15183266,0.3864107,0.26317635,0.05119914,0.38731274,-0.058276072,0.3980174,-0.22021244,-0.16038886,0.33077076,-0.22835755,0.18664204,-0.03253159,0.1843484,0.40256688,-0.40252396,-1.008834,-0.4594567,-0.17692685,1.1841372,-0.3340547,-0.39847553,0.40264708,-0.1653719,-0.20094624,0.06272628,0.3949149,-0.028336948,-0.008821823,-0.77012795,0.26581898,-0.042327356,0.18358856,0.051894233,-0.066999204,-0.29162842,0.5648129,-0.1693247,0.48445553,0.33138835,0.30971295,-0.18022662,-0.42627326,-0.076422766,0.9816953,0.5776096,0.07351285,-0.19402634,-0.10569162,-0.23808394,-0.102347,0.14935246,0.37282318,0.70004404,-0.0037698261,0.058124892,0.18487833,-0.04472921,0.02330849,-0.17933379,-0.37642717,0.026985275,0.10609,0.43071947,0.44109544,-0.14220242,0.4713997,0.011319375,0.041400522,-0.10914014,-0.6018377,0.3985059,0.9182261,-0.2238093,-0.22348899,0.5931636,0.33131346,-0.15046616,0.4172666,-0.57385963,-0.25817394,0.47014648,-0.2524555,-0.37847987,0.27907532,-0.34519494,0.21813688,-0.7475356,0.37628478,-0.346376,-0.48473346,-0.5450465,-0.16744974,-3.437225,0.24606499,-0.3209773,-0.12897123,-0.13632108,-0.11805886,0.30099696,-0.5945749,-0.46988446,0.19574001,0.038117446,0.7554457,-0.031908058,0.04194369,-0.22781458,-0.392224,-0.2258251,0.12345359,0.035775125,0.26432887,0.049116187,-0.3737008,-0.09980889,-0.0317723,-0.49202263,0.13106015,-0.6187986,-0.48872152,-0.21957707,-0.5178107,-0.117019296,0.68307483,-0.18598765,0.07206261,-0.09081198,0.037656844,0.00309241,0.19912183,0.20158228,0.18317239,0.1306823,-0.07418702,-0.1260795,-0.29320508,0.12625706,0.09869453,0.28832912,0.35854936,-0.0305957,0.03693051,0.6425071,0.6147453,-0.10247957,0.82734025,0.42170525,-0.1664383,0.29342347,-0.2969393,-0.18653388,-0.5134444,-0.40402272,-0.19249323,-0.3748784,-0.44078696,-0.014335319,-0.3321572,-0.7022705,0.48563224,-0.16469295,0.20741451,-0.13226563,0.25326073,0.4462673,-0.13746658,-0.10176789,-0.09279431,-0.17592065,-0.4234971,-0.24832311,-0.5725821,-0.385633,0.18573484,1.1255168,-0.395644,-0.07045852,-0.14520276,-0.031638402,-0.030276759,-0.17523104,0.14605825,0.21314208,0.19268951,-0.051885277,-0.52664846,0.32652625,-0.13843223,-0.04730863,-0.45254987,0.1427331,0.5788943,-0.5040629,0.5091491,0.21060255,0.10495393,-0.04745479,-0.6718769,-0.11623296,0.27935368,-0.2920202,0.4396009,0.1817947,-0.73394895,0.4951496,0.4331918,-0.38216677,-0.74908185,0.41223913,0.009771908,-0.25550848,-0.048944395,0.39068854,0.23759133,0.026274804,-0.17775042,0.35057902,-0.4808018,0.2866646,0.28293386,-0.16555543,0.29541355,-0.25639084,-0.29851854,-0.6704431,-0.036957256,-0.4724017,-0.3019934,0.07938366,-6.485917e-05,0.023763765,0.098788545,0.035809778,0.5129018,-0.37019536,0.1376484,-0.11618997,-0.2868867,0.5963491,0.5310807,0.38390625,-0.21410048,0.47997707,-0.06587763,-0.09907397,-0.02330548,0.073543034,0.4288761,0.04868956,0.2952093,-0.09202597,-0.0956163,0.22931524,0.8181969,0.005960215,0.3207163,0.070847675,-0.14622962,0.17105497,0.025391757,0.039370887,-0.01628143,-0.32678854,-0.052893147,0.10334412,0.2958085,0.48646632,0.23398802,0.22613637,-0.07072738,-0.21597728,0.07027246,0.19617021,0.11339549,-1.1939778,0.40621796,0.021553911,0.6490176,0.4437114,0.08514972,-0.086440116,0.55506015,-0.108211964,0.06927363,0.26827106,-0.19938056,-0.42879915,0.5616485,-0.6110075,0.30682823,-0.08881154,0.07820057,0.047995318,0.17685942,0.3757587,0.70498306,-0.044153377,-0.06866823,-0.0153586175,-0.30175406,0.086568676,-0.21480362,0.07583347,-0.41586515,-0.44670445,0.5499776,0.33502617,0.16152492,-0.28848755,-0.07713996,0.058481183,-0.20605332,0.17479984,-0.021486402,0.055691645,-0.10508536,-0.44630516,-0.38106614,0.42104694,-0.06902467,0.15990008,-0.13994041,0.0074386187,0.141977,-0.070888825,-0.022257874,0.048347134,-0.6206559,-0.059481606,-0.39898336,-0.2884015,0.35470933,-0.23713839,0.19972277,0.07418709,-0.032120906,-0.30248135,0.4091218,0.11883522,0.65156317,-0.15489066,-0.17502102,-0.21791032,0.09990129,-0.040183026,-0.12126963,0.020253565,-0.21745597,0.0903361,-0.7684438,0.36020574,-0.09962626,-0.2113396,0.18973151,-0.21811934,0.020978881,0.4285401,-0.1898059,-0.19942336,-0.2154394,-0.25954717,-0.18704972,-0.3726924,-0.10202039,0.16472045,0.028053194,-0.031098284,-0.07527667,-0.20740946,-0.09602077,0.52518505,0.060268894,0.2496633,0.3031549,0.20508766,-0.36265075,-0.010513738,0.2561341,0.42336556,0.011538196,0.06998344,-0.30304986,-0.30810067,-0.34203482,-0.025700394,-0.23002176,0.31459847,0.057500675,-0.3862499,0.8770118,0.11365881,1.1111484,-0.15126815,-0.3508254,-0.0715933,0.43811628,-0.0808751,-0.057296507,-0.07980702,0.71323556,0.67683554,0.033700075,-0.08130878,-0.39894488,-0.22847115,0.2097139,-0.3265003,-0.040485516,-0.0022651441,-0.49167597,-0.29450932,0.20244056,0.25430226,0.06823109,-0.22582012,-0.08757959,0.17189273,0.14884093,0.274161,-0.5985311,0.011766374,0.17867623,0.25272927,0.13774638,0.2515302,-0.45450297,0.40884075,-0.6696589,0.23559783,-0.18225509,0.14431441,-0.06882042,-0.14322817,0.124893434,0.09550248,0.35679898,-0.2576897,-0.35976768,-0.1457054,0.5377156,0.0014199875,0.032425873,0.68573016,-0.22758558,0.10664062,0.062372353,0.50552166,1.0543505,-0.17509815,-0.026014829,0.2703645,-0.26749033,-0.7718133,0.23556718,-0.2905469,0.10952597,-0.0449137,-0.30438977,-0.43451488,0.2387731,0.28364125,0.15207992,-0.09119892,-0.5239353,-0.23680776,0.30045104,-0.23791538,-0.15071838,-0.22747003,0.20685232,0.7226739,-0.29273883,-0.26481467,0.007769555,0.35271406,-0.12311257,-0.63112557,-0.013234675,-0.34213462,0.36887044,0.2589171,-0.26072526,0.045819543,0.065127544,-0.49859446,-0.06607242,0.13558257,-0.26920864,0.120043926,-0.27556914,0.115200184,0.7851385,-0.050316587,0.10780145,-0.578799,-0.50861573,-0.84638953,-0.335238,0.47549772,0.11934604,0.12559715,-0.7061857,0.07500547,-0.17126974,0.057961937,-0.07909626,-0.3468098,0.38314372,0.13784856,0.28703567,-0.19610164,-0.7606748,0.054009512,0.041013803,-0.08862783,-0.4953694,0.44542533,-0.019770965,0.8398397,0.0221354,-0.026098456,0.070501156,-0.4038512,0.060120646,-0.34575668,-0.21504204,-0.61775947,0.08344785,724 -95,0.36258447,-0.11464862,-0.5024982,-0.04190451,-0.099017024,0.22180404,-0.21615565,0.22785242,0.21422726,-0.3614136,0.047709353,-0.1280095,0.063796274,0.3340906,-0.14689216,-0.49082664,-0.10332355,0.20956515,-0.5028967,0.29337567,-0.53293765,0.3466461,-0.19309883,0.19673999,-0.118144765,0.22287774,0.2212692,-0.17353337,-0.19661468,-0.141526,0.053495824,0.27075237,-0.35501856,0.13846585,0.007794981,-0.21830168,0.044457477,-0.36708027,-0.40418985,-0.58642733,0.3662802,-0.6858058,0.4783616,0.02478015,-0.21396323,0.32787812,0.1742586,0.25408468,-0.25596148,0.04205592,0.12692747,-0.2650125,-0.13807562,-0.27458537,-0.15305176,-0.25683942,-0.49126416,0.031693824,-0.4573927,-0.18707737,-0.28452685,0.13283554,-0.34718612,0.12371183,-0.21940742,0.42909533,-0.3499167,-0.04489816,0.23271868,-0.18455438,0.2064264,-0.43729308,-0.04412358,0.0146089755,0.16785097,-0.15188342,-0.058462456,0.2733236,0.043856025,0.4155084,-0.10485272,-0.16808303,-0.36019188,-0.18836293,0.21102688,0.5389224,-0.17711516,-0.46795455,-0.16009167,-0.030930206,-0.0034930836,0.09848653,-0.11007081,-0.22270155,-0.034714166,0.13301848,-0.25612986,0.28445846,0.5677743,-0.23381825,-0.13085568,0.42136562,0.54479384,-0.027430639,-0.030593675,0.020622998,0.06983255,-0.49276596,-0.1792372,0.044207282,-0.12164806,0.47086048,-0.13365895,0.26617694,0.56682426,-0.25184825,-0.07481022,-0.047209986,0.07754127,-0.07210282,-0.23349264,-0.155909,0.19522056,-0.48438144,0.039744873,-0.0956745,0.80815613,0.097847104,-0.6527358,0.42271203,-0.5017703,0.11647101,-0.025706835,0.5865934,0.5403841,0.4284451,0.24402204,0.7797773,-0.5569497,0.022491898,-0.2279123,-0.5188371,0.13185392,-0.06997572,-0.014731139,-0.38314107,0.0695779,0.20727761,-0.08070971,0.047780953,0.3799745,-0.39223632,0.013160117,0.0815521,0.708735,-0.37358713,-0.020405848,0.56566775,1.1060317,0.8747457,0.051434133,1.1727968,0.19155174,-0.27808398,-0.017633624,-0.25563836,-0.79099643,0.2418029,0.27982482,-0.24899387,0.2667447,0.1339825,-0.06296151,0.4304887,-0.46734333,-0.064362384,-0.0663043,0.3310695,0.025993086,-0.010983184,-0.42809322,-0.2270722,0.14955205,-0.08064841,0.3078837,0.30296624,-0.3044169,0.32554388,0.014998062,1.4628258,-0.04092304,0.26450202,0.16849187,0.29045054,0.07398987,-0.048705865,-0.14945026,0.28662133,0.3416103,0.23793685,-0.52362025,0.07027573,-0.15962943,-0.5215588,-0.11609167,-0.23485407,0.07310052,-0.1292015,-0.3989291,-0.06771161,-0.09160374,-0.41939163,0.42820692,-2.8553782,-0.07929464,-0.09380491,0.18158591,-0.2975747,-0.2694133,-0.081645265,-0.45272368,0.3001485,0.35792768,0.3606742,-0.59222656,0.35123682,0.3242905,-0.4047491,-0.11643581,-0.5421474,-0.04021212,-0.14700145,0.33835799,0.087818086,-0.18525478,-0.09501085,0.1796569,0.38299733,-0.25265062,0.07627121,0.29006165,0.30853012,0.10333177,0.3797135,-0.028556813,0.49033934,-0.41595256,-0.21944527,0.35983393,-0.45602274,0.13638338,-0.059043128,0.118081585,0.2699354,-0.3299283,-0.80601007,-0.4729015,-0.18427166,1.3443655,-0.36933312,-0.32305932,0.23040336,-0.21521927,-0.3628033,0.018261783,0.3125431,-0.21838364,-0.04465523,-0.80649525,0.20608896,-0.13169886,0.33834592,-0.0008546561,0.105451286,-0.42037684,0.55775857,-0.08822672,0.5972513,0.35374624,0.1613212,-0.37984744,-0.37180638,0.032675594,1.0296865,0.29963908,0.21843986,-0.1437583,-0.19352493,-0.19420089,-0.15235054,0.13923626,0.52361125,0.6923109,0.005411636,0.11092953,0.2898079,-0.06660865,0.013341678,-0.0475368,-0.18994881,0.0105933435,-0.06982234,0.58226186,0.4589858,-0.17624871,0.33696055,-0.016531656,0.3163629,-0.33918488,-0.36205608,0.4065383,0.81051385,-0.12418695,-0.28126442,0.6062896,0.62071824,-0.21554443,0.40727857,-0.5839012,-0.41968584,0.38008392,-0.3289147,-0.3526399,0.31706944,-0.23855552,0.095210895,-0.8620663,0.21435626,-0.21705341,-0.59351116,-0.60219926,-0.2343935,-3.8691654,0.10483592,-0.20768997,-0.225285,0.009221531,-0.023289923,0.23331046,-0.51332253,-0.49721274,0.05293488,0.1326924,0.56977904,0.0021073706,0.069747895,-0.23197383,-0.11185953,-0.20763099,0.09686608,0.17711547,0.20892903,0.06923705,-0.4665324,-0.048924588,-0.18584852,-0.41320294,0.06606531,-0.49822804,-0.34927064,-0.17268701,-0.4686708,-0.35045892,0.60119355,-0.39643395,0.08847548,-0.27131286,-0.018447544,-0.04792878,0.37114513,0.023842797,0.1478831,0.09701282,-0.16012739,0.027429044,-0.30087322,0.43986163,0.017794348,0.31552836,0.47964332,-0.22443484,-0.024379358,0.48843104,0.611042,-0.029234253,0.81626326,0.40761322,-0.15702857,0.33696055,-0.29885384,-0.13085939,-0.46687016,-0.3736835,0.05831581,-0.43127528,-0.3660932,-0.23326427,-0.30401248,-0.7069802,0.5652013,-0.0025435463,0.061172105,-0.09150137,0.29494956,0.33347416,-0.16502932,-0.10480157,-0.07718566,-0.1421934,-0.3193241,-0.25728816,-0.64537394,-0.3477597,-0.023686051,0.9672823,-0.077635005,0.03546987,0.040192135,-0.123904936,-0.059912227,0.044606,0.24411961,0.34350184,0.33299297,-0.018676933,-0.5744221,0.40609065,-0.30824065,-0.15777296,-0.5637599,0.05122842,0.6196518,-0.6014483,0.5198861,0.4900849,0.20099224,-0.09274689,-0.52552384,-0.17519939,0.1343238,-0.20786974,0.5096478,0.3056058,-0.82443833,0.5290935,0.41811597,-0.3628178,-0.67683965,0.44012323,0.012534592,-0.20665386,-0.019014973,0.42262256,0.0035012513,0.052898034,-0.21208993,0.14570649,-0.4200118,0.30107972,0.17681508,-0.02694943,0.4935886,-0.28519952,-0.032625377,-0.59309363,-0.11187727,-0.42338684,-0.20549852,0.000291273,-0.022846285,-0.016720504,0.20670925,-0.19872895,0.39642805,-0.36217052,0.020236155,0.029042557,-0.22446704,0.41593122,0.4013825,0.344132,-0.34028125,0.6370628,0.010100308,0.014067357,-0.25256005,-0.06622734,0.50775695,-0.009291876,0.4340055,-0.028400542,-0.095131874,0.46535003,0.7618692,0.17980444,0.41162902,0.18082954,-0.20402247,0.116810784,0.076679125,0.0639397,0.17469001,-0.41545752,-0.08516353,-0.20670253,0.22722022,0.43602908,0.17011482,0.58919203,-0.12057815,-0.30530113,0.07735092,0.1826347,-0.22410615,-1.1768008,0.4412809,0.14113836,0.6629701,0.40485808,0.10702508,0.1901334,0.5402955,-0.3004852,0.1338978,0.28543395,-0.06915792,-0.45558053,0.5493067,-0.729393,0.41179994,-0.060923945,0.017221928,0.06509212,-0.029651731,0.45323598,0.6970856,-0.00834734,0.15511869,0.005682148,-0.28418976,0.18708733,-0.24202615,0.17923605,-0.5295847,-0.17357105,0.5828157,0.35602304,0.42303643,-0.16317205,-0.1085751,0.16879725,-0.07432316,0.14869824,-0.00061010197,0.12596376,-0.074330755,-0.67222226,-0.37268102,0.5256017,0.25730956,0.13448738,-0.0594409,-0.13865748,0.2614243,-0.19149972,-0.13361621,-0.032381274,-0.39641583,0.015848873,-0.20209625,-0.45142692,0.2920051,-0.27070612,0.31792772,0.16805974,0.086452454,-0.5026787,0.20993112,0.17978086,0.77198446,-0.00441825,-0.21231861,-0.25725833,0.12633786,0.28157502,-0.09649895,-0.1418293,-0.4004107,0.07621914,-0.57267433,0.3912992,-0.22646247,-0.37473792,0.20885259,-0.2175886,0.029156143,0.57152694,-0.19898568,-0.21821116,0.039117184,-0.119739205,-0.24922685,-0.28755245,-0.26712173,0.16816474,0.100970075,-0.027746372,-0.025345653,-0.057205975,-0.15796094,0.3591733,0.0058539524,0.16069664,0.3965206,0.19477034,-0.30379865,-0.08881931,0.011846807,0.49560228,-0.008992932,-0.11929109,-0.4000967,-0.4463379,-0.28615656,0.1352242,-0.12916432,0.22387023,0.13500759,-0.308556,0.64851177,-0.035641607,0.9601319,0.09695819,-0.30827975,0.017587304,0.5002872,0.09514587,0.036577065,-0.33164927,0.94079244,0.5603367,-0.110426426,-0.21244165,-0.4166749,0.049838997,0.07857554,-0.22435978,-0.32423365,-0.0430489,-0.6323348,-0.2221707,0.29803374,0.34715793,0.10634862,-0.04811766,-0.017063107,0.18799147,0.11513614,0.29834804,-0.4333071,0.044426084,0.46240565,0.27539825,0.043920875,0.16205692,-0.41493073,0.36830646,-0.5933588,0.09233597,-0.1671164,0.10779722,-0.13934487,-0.24820429,0.27766627,0.069769494,0.27830023,-0.31877095,-0.28112912,-0.0038851053,0.39625537,0.08550016,0.08625763,0.7159241,-0.13361719,0.02121607,0.08727352,0.52823615,0.97911745,-0.30343264,0.08495772,0.3563731,-0.23835905,-0.7148569,0.17614749,-0.22471175,0.11104971,-0.11463264,-0.30798274,-0.4900782,0.34892803,0.16334742,0.016428363,0.07233192,-0.35438958,-0.16616152,0.35618132,-0.2801862,-0.30178294,-0.26134187,0.11241,0.5159351,-0.24214119,-0.320136,0.1005635,0.3911119,-0.28464645,-0.49645764,-0.1091029,-0.32335222,0.26157802,0.13169391,-0.1837214,-0.054146014,0.042131055,-0.4206738,0.24262258,0.22809726,-0.31470945,0.03151896,-0.21258692,-0.048515268,0.6733775,-0.23423654,0.1742864,-0.6486812,-0.47907424,-0.9681382,-0.2571109,0.46752685,0.027610932,-0.002342131,-0.5229809,-0.037014425,0.007796295,-0.19434972,-0.09171801,-0.51243246,0.34238502,0.118766464,0.32294077,-0.12267835,-0.6166117,-0.043100722,0.108436495,-0.28221962,-0.42943197,0.6335532,-0.11220798,0.68141687,0.018276436,0.19204685,0.45822123,-0.5227153,0.1216844,-0.19554973,-0.15238982,-0.6959627,0.07442662,750 -96,0.6793936,-0.2915211,-0.6372118,-0.15873557,-0.489976,0.07594736,-0.19162042,0.5110923,0.14286372,-0.48000348,-0.07176316,-0.10243988,-0.122075565,0.07049103,-0.09615502,-0.44966614,0.005231466,0.26359913,-0.607435,0.56067765,-0.25505143,0.28678113,0.06988132,0.33717775,0.37369123,0.11823568,-0.01022014,0.19278295,-0.021678675,-0.4093748,-0.26898348,0.36151215,-0.54249746,0.19826598,-0.09823547,-0.42056084,-0.14298339,-0.5779503,-0.32801566,-0.8098856,0.17976156,-0.87797505,0.5640793,0.026221722,-0.30854917,0.047746167,0.4255566,0.32025206,-0.017093163,0.07462819,0.22654994,-0.29778928,-0.066709384,-0.24413154,-0.13904968,-0.4797725,-0.6828843,-0.15466505,-0.44803447,-0.11592217,-0.26652488,0.27999043,-0.23818026,0.057526164,-0.21854584,0.7641783,-0.26190418,0.05275892,0.30089822,-0.09849569,0.17695157,-0.7306114,-0.11919056,-0.19232324,0.25420055,-0.06972416,-0.24915719,0.19897789,0.20829926,0.36344388,0.099571116,-0.37066805,-0.3667102,-0.094996616,-0.01221271,0.5387517,-0.14928263,-0.26771602,-0.07883831,0.025693778,0.37085912,0.34538352,0.30161577,-0.23626053,-0.12845814,-0.09093637,-0.19087717,0.44155857,0.44876352,-0.37558094,0.028558772,0.417631,0.55581784,0.1522309,-0.3561923,0.00027468055,-0.17757154,-0.50991446,-0.044765573,0.20788065,-0.25097173,0.4110956,-0.11768535,0.14471245,0.5841483,-0.09827996,-0.10666104,0.18492201,0.16392282,0.057301544,-0.37855673,-0.3418315,0.35263962,-0.36375856,0.23351929,-0.15738434,0.7874182,0.017049106,-0.6058553,0.3211119,-0.58112144,0.12287693,-0.028594691,0.39304242,0.7632587,0.48754752,0.2216738,0.71962255,-0.12512705,0.07441926,-0.053378224,-0.3003174,-0.21970244,-0.072069764,0.26140964,-0.5617151,-0.0037358124,-0.30696207,-0.086065575,0.086441144,0.86117786,-0.5471016,-0.3151215,0.32826445,0.86867136,-0.26918477,-0.08239026,0.89105725,0.9878063,1.1579432,0.106522135,0.7903512,0.108654164,-0.16259813,-0.08952261,-0.085500404,-0.43389964,0.29121655,0.40613124,0.12618287,0.20409176,0.16389298,-0.038439594,0.52423626,-0.32281628,-0.062901914,-0.08032586,0.14429158,0.047560543,-0.091348946,-0.401493,-0.2969423,0.032068603,0.14339097,0.07595331,0.2102955,-0.32832125,0.34374863,0.0014541708,1.4704139,-0.100394204,0.038874686,0.18876362,0.30752146,0.27085,-0.2176342,0.076254964,0.317543,0.32278246,0.11529057,-0.48095825,0.12052687,-0.33111244,-0.46130666,-0.2223314,-0.32620424,-0.26708117,0.06938532,-0.6178184,-0.23831233,-0.10983856,-0.3487591,0.26845896,-2.5544455,-0.15245944,-0.21527773,0.3619679,-0.235872,-0.47512603,-0.006162282,-0.46598256,0.32241404,0.29625392,0.43915218,-0.63101304,0.4773959,0.37022373,-0.5775416,0.07036298,-0.70630586,-0.1349186,-0.08691688,0.21947804,-0.06723827,-0.15378965,0.03577882,0.34652033,0.6200297,-0.04158635,0.01452038,0.3316608,0.37045503,-0.21379176,0.6710971,0.025511514,0.5372327,-0.24016613,-0.19272709,0.47862297,-0.47615635,0.06268568,0.040163923,0.12246229,0.68302166,-0.36303186,-0.84109026,-0.6903547,0.05191129,1.0539441,-0.31049916,-0.42942894,0.20753276,-0.41302884,-0.25067052,0.055176526,0.5691142,-0.011110984,0.032723695,-0.8153493,0.029483087,-0.21785273,0.12898459,-0.1650059,-0.15094823,-0.59289885,0.8553574,-0.04204417,0.7395558,0.1734389,0.25923488,-0.45083392,-0.43491423,0.03315556,0.9509406,0.49658513,0.0160971,-0.2140666,-0.08207676,-0.3685437,-0.08521231,0.27977026,0.6732668,0.4544338,-0.12020461,0.09024192,0.308541,-0.106860965,0.01083892,-0.23915778,-0.275052,-0.1636655,-0.067910545,0.5931457,0.49279726,0.09598877,0.67396,-0.081960015,0.38263083,-0.15535896,-0.47100377,0.2267618,1.180225,-0.24592757,-0.5475084,0.6047137,0.42622462,-0.235862,0.29806784,-0.65833044,-0.35058498,0.3530302,-0.13241212,-0.4609117,0.17467712,-0.3945691,0.3048194,-0.7502621,0.1372088,-0.46858537,-0.6167969,-0.7023709,-0.31790355,-2.8005865,0.32301006,-0.3619188,-0.13110827,-0.043688245,-0.3456608,0.18533996,-0.6810268,-0.47481403,0.04075419,0.10692154,0.65320677,-0.12900817,0.08421527,-0.26868108,-0.4689853,-0.19507444,0.28277224,0.16486445,0.4536185,-0.08919434,-0.2777586,0.13967231,-0.013513958,-0.334795,-0.13627118,-0.6406816,-0.56180143,-0.13880643,-0.6271131,-0.37442118,0.54384184,-0.33035654,0.23195307,-0.16680601,0.04482498,0.04749609,0.12259811,0.14721583,0.14977908,0.07464416,-0.12107941,0.11244887,-0.35936034,0.11631912,-0.04681178,0.29436445,0.11470928,-0.038898863,0.259008,0.43255597,0.59874105,-0.0794966,0.985569,0.41687465,-0.09405615,0.25971663,-0.13309954,-0.25458178,-0.71109015,-0.36895692,0.15699029,-0.46893716,-0.4017837,-0.014769092,-0.3738748,-0.8635628,0.6030845,-0.028334996,0.14262746,0.09167545,0.52960277,0.6180429,-0.31213957,-0.09110013,0.084258035,-0.2506743,-0.38557935,-0.3032935,-0.6454908,-0.504507,-0.02589921,1.1756094,-0.33569396,0.010464085,0.09135066,-0.19677222,0.038354587,0.22603033,0.06637062,0.04664711,0.56355363,-0.15096147,-0.443648,0.3735198,-0.28143585,-0.022331733,-0.65272224,0.40551966,0.5809747,-0.656301,0.5779964,0.3163767,0.21025269,-0.33271396,-0.6972709,0.15215433,0.18323863,-0.28231624,0.49295354,0.44209564,-0.72154546,0.43942153,0.23531356,-0.07073684,-0.8973468,0.6565963,-0.100374915,-0.5316868,-0.20397627,0.43255022,0.2484473,-0.018806677,-0.23416947,0.23229653,-0.46115267,0.3241109,0.17445898,-0.070111714,0.00022079796,-0.2713159,0.0002438277,-0.69590235,0.095139444,-0.5706951,-0.41781288,0.26895678,-0.016754005,0.14984703,0.419594,-0.035924196,0.39679968,-0.33984017,0.053174693,-0.26546976,-0.30631688,0.4732174,0.4483785,0.48112726,-0.4077025,0.6536698,0.10103172,-0.16417554,-0.16697663,0.15415303,0.4133696,0.07736508,0.5431078,0.036722437,-0.061255388,0.26396322,0.6894238,0.10850836,0.5106497,0.063390456,-0.117877185,-0.02095437,0.054393113,0.28831872,-0.10046477,-0.6732869,-0.055235438,-0.30223942,0.3168164,0.5102142,0.08754847,0.2753125,-0.07114662,-0.30076796,0.07130084,0.12647253,-0.15463209,-1.240557,0.31028995,0.25831863,0.914112,0.41384172,0.109416425,-0.11001046,0.6869211,-0.27438387,0.051078625,0.27964786,-0.036593407,-0.10752516,0.47803935,-0.85816646,0.43521738,-0.11041506,-0.047713477,-0.07947936,-0.1023299,0.5341565,0.710538,-0.16341574,0.032306112,-0.0037961788,-0.35427907,0.10669607,-0.40392506,0.051218748,-0.5560395,-0.34546375,0.69809544,0.4699961,0.46562126,-0.28400758,0.024103243,0.04645554,-0.21643719,0.083888456,0.05523538,-0.022171015,-0.031679712,-0.5894773,-0.15215373,0.45904198,-0.06829827,0.08382876,0.08617781,-0.109985664,0.27348536,0.15772332,0.110823415,-0.048943654,-0.59505355,-0.040811077,-0.30500162,-0.42475444,0.34025276,-0.13322607,0.17714024,0.3112275,0.024838455,-0.05178809,0.337321,0.19512649,0.8890895,0.049638137,-0.067369245,-0.42098022,0.22173662,-0.026982263,-0.16740564,-0.16565323,-0.28877896,0.39070404,-0.71879876,0.39822984,-0.10460586,-0.51098555,0.16752075,-0.12011276,-0.07537475,0.48907074,-0.15953024,-0.19013558,0.024236768,-0.02802093,-0.19053894,-0.200832,-0.09511168,0.1849938,-0.066034004,-0.06885788,-0.16844197,-0.053535365,-0.1299709,0.4371274,0.03976133,0.41821337,0.46939963,-0.014108898,-0.38076162,0.03464622,0.24473938,0.49988902,-0.28352672,-0.13866217,-0.30334073,-0.4136569,-0.3715238,0.40671095,-0.026132096,0.27235276,0.05171214,-0.0767961,0.93898463,-0.20834374,1.1613626,-0.08586429,-0.41460308,-0.029766805,0.45410538,-0.04734283,-0.03797891,-0.34123108,0.9120605,0.60381746,0.002991356,-0.08176769,-0.30935848,-0.011494286,0.26598457,-0.17722166,-0.06500327,-0.012615588,-0.5335614,-0.18704885,0.119025216,0.18931195,0.209174,-0.14216705,0.12918904,0.5266802,-0.06751922,0.18802129,-0.48991916,-0.08930521,0.16551112,0.33929873,-0.20610933,0.05311167,-0.4874565,0.39404353,-0.57894987,0.07487373,-0.34063503,0.22675614,-0.171872,-0.23837087,0.36017188,-0.007966122,0.32789353,-0.4926937,-0.26152426,-0.05183044,0.47553802,0.11712387,0.07570258,0.58319503,-0.24826086,0.0052741095,0.15278691,0.56234264,1.1257885,-0.1738621,0.003384512,0.13968919,-0.46380723,-0.6269052,0.30626452,-0.28585804,-0.0008498803,0.24408208,-0.26767057,-0.38216716,0.40776274,0.32770723,0.12846205,0.061811663,-0.6490872,0.0026106834,0.31298622,-0.4216439,-0.061625823,-0.24805225,0.18957436,0.5609739,-0.17987125,-0.35473126,-0.029292837,0.37585643,-0.0027475134,-0.55377716,-0.012320252,-0.48760262,0.25250596,-0.052163713,-0.37927812,-0.20263892,-0.025423147,-0.490289,0.061056904,0.24320437,-0.20118272,0.071608976,-0.22721237,0.050559282,0.80895686,-0.16196485,-0.117627,-0.4658339,-0.5312624,-0.71108574,-0.3123958,0.23489872,0.079982705,0.024281848,-0.6609429,-0.17609185,-0.37313238,-0.2240793,-0.1126634,-0.3908462,0.3569767,0.19062719,0.5478113,-0.082727976,-0.87045276,0.29538253,-0.02256567,-0.13086455,-0.47295237,0.49011642,-0.047046266,0.8396146,0.017453056,0.16921388,0.22919084,-0.41824642,0.100889005,-0.26540864,-0.09455019,-0.73015237,-0.13864863,757 -97,0.42374402,-0.33724806,-0.24028756,-0.09289405,-0.41463968,0.10973984,-0.29759604,0.1534936,0.22734848,-0.37090698,-0.09624693,-0.09664257,0.0005299803,0.32942313,-0.19704278,-0.5337596,-0.094299376,0.08093535,-0.66120493,0.5674571,-0.53193855,0.3930897,0.1576555,0.18024242,0.17796157,0.39349097,0.3403284,0.04048255,-0.2937675,-0.095124826,-0.13305397,0.21684587,-0.51654446,0.18200383,-0.22326303,-0.4571577,0.04674176,-0.42048508,-0.1394408,-0.64583516,0.15822057,-1.0091436,0.47316957,-0.19373831,-0.052087437,0.14913712,0.32927543,0.40483394,-0.27216995,0.1102418,0.1875475,-0.118539676,-0.1980435,-0.29370332,-0.07689838,-0.39463073,-0.40362743,0.0011087973,-0.5765499,-0.37397864,-0.21709028,0.17733867,-0.24005702,0.118093275,-0.032783233,0.34718904,-0.29235798,-0.036531102,0.27966046,-0.11941153,0.27561188,-0.63390535,-0.12686327,-0.10352731,0.39563733,-0.11558264,-0.1295849,0.47371203,0.30282086,0.42611948,0.22700895,-0.3304297,-0.25598323,-0.1641425,0.11975559,0.33861452,-0.26043212,-0.3022997,-0.26199576,0.08179395,0.34687102,0.33907276,0.16684501,-0.17378142,0.11346856,0.017923016,-0.17614552,0.48748165,0.43883893,-0.27420235,-0.30049896,0.2869016,0.48342866,-0.052700613,-0.24068363,-0.13233076,-0.05028647,-0.4760866,-0.19629338,0.24741004,0.018534916,0.43917704,-0.092117146,0.10491943,0.6906216,-0.20419076,0.00587406,-0.18132384,0.036053345,-0.20501226,-0.20100647,-0.18747431,0.24516328,-0.5970209,-0.044897582,-0.35440257,0.6142515,0.115596786,-0.8106011,0.3528819,-0.48546553,0.11165319,-0.067961566,0.3673016,0.646703,0.41947982,0.19862698,0.6719162,-0.2539404,0.11514275,-0.21244314,-0.29410803,-0.12052308,-0.338182,0.16572772,-0.51394856,0.18961884,-0.048608672,0.045389183,0.07296538,0.31328914,-0.44730702,-0.19078963,0.24065067,0.72209686,-0.32293332,-0.045750126,0.7599362,1.0713757,1.0376842,0.021065919,1.1160469,0.47245333,-0.115832634,0.071026474,-0.21237186,-0.44386834,0.1267513,0.47860932,-0.05097551,0.22371255,-0.10076207,-0.054385718,0.18120094,-0.33930728,-0.017933026,-0.052358042,0.33781487,0.2219925,-0.025153747,-0.4104002,-0.13566221,-0.06235785,-0.06742299,0.13110106,0.17444763,-0.12169234,0.40310246,0.06240488,1.3351392,-0.10090707,0.09110129,0.032690097,0.42565632,0.27918437,-0.21467894,0.025768656,0.18243098,0.19232346,-0.080239154,-0.4918107,0.056015793,-0.32529068,-0.4108293,-0.123048745,-0.335899,-0.1187326,0.1238881,-0.327924,-0.16262683,-0.04761466,-0.24794376,0.41671035,-2.8563137,-0.28796363,-0.109047554,0.25218153,-0.38056067,-0.26435435,-0.060359843,-0.61452204,0.425224,0.27430022,0.425098,-0.5551115,0.4201274,0.436422,-0.5927364,-0.11549136,-0.66132027,-0.03143712,-0.113527566,0.45710197,-0.083151676,-0.17921811,-0.058046773,0.21592125,0.58268553,0.09833524,0.10122498,0.5035273,0.3291,0.15750267,0.5762065,0.061172392,0.51444423,-0.44549033,-0.23558041,0.43915832,-0.24600495,0.11787951,-0.028025016,0.11992933,0.5529824,-0.45753494,-0.7844405,-0.6816264,-0.37233254,1.0898095,-0.24999237,-0.4681107,0.04725443,-0.020390056,-0.106075205,0.052577093,0.3603952,-0.0709258,0.22329083,-0.6461626,0.18651898,-0.021816142,0.0321387,-0.032127935,0.007541241,-0.46543086,0.49380827,-0.06169644,0.44929767,0.2763321,0.31631988,-0.27655652,-0.32348478,0.049657457,1.0042722,0.402073,-0.009449717,-0.076395795,-0.32589805,-0.18358429,-0.21664721,0.17565167,0.27502435,0.6276857,-0.0061983354,0.11876917,0.35596332,-0.16491969,0.11155309,-0.0121173505,-0.19617036,-0.111066364,0.19091594,0.4709991,0.53212345,0.007492763,0.511117,-0.2563667,0.27546215,0.024909452,-0.4874944,0.63960266,0.6135269,-0.13428223,-0.094821885,0.50309235,0.58188915,-0.33025107,0.48244053,-0.6050942,-0.31601676,0.608774,-0.27694425,-0.41836968,0.08321513,-0.2782333,0.1809418,-0.8072115,0.27476665,-0.29179865,-0.25055397,-0.5557133,-0.10836944,-3.2652805,0.1651677,-0.031056218,-0.17156783,-0.08438415,-0.21401499,0.26464775,-0.6575124,-0.5110687,0.23989335,0.04525316,0.6226266,-0.03044631,0.15735567,-0.2111516,-0.10402419,-0.1340001,0.30874014,-0.017538056,0.19052395,-0.20516175,-0.4260016,0.061704524,-0.1338616,-0.57249045,0.16845363,-0.47199357,-0.40568423,-0.116286226,-0.5161707,-0.3427304,0.50212693,-0.31783617,0.031466573,-0.23359591,0.056530833,-0.15776254,0.11820026,0.11068213,0.2306764,0.2733058,-0.11416215,0.047111712,-0.37378052,0.39880317,0.08511551,0.26367617,0.26976413,-0.08654095,0.16118383,0.38518435,0.54898024,-0.11718655,0.8461824,0.2832049,-0.056310564,0.24601814,-0.28514054,-0.19776925,-0.68340987,-0.34446636,-0.146895,-0.33517757,-0.4910104,0.049437806,-0.25829425,-0.713604,0.7160468,-0.026712835,0.40881482,-0.11655891,0.24206743,0.36223292,-0.23252124,0.002390515,-0.08569841,-0.082271434,-0.482938,-0.36237407,-0.7025631,-0.52593946,0.042122114,0.7919017,-0.18108311,0.058585607,-0.048139464,-0.17069137,0.1258632,0.087148614,0.0001342725,0.2602934,0.3940134,0.09778757,-0.6774614,0.34273988,0.023374423,-0.043434687,-0.3961077,0.20299588,0.66479564,-0.49617767,0.431762,0.37848625,-0.0032242257,-0.09858569,-0.53475475,-0.17085794,-0.0131099,-0.27913898,0.42442796,0.15612583,-0.8072314,0.5886347,0.21988826,-0.49113497,-0.735403,0.33899707,0.16785796,-0.17287245,0.03669767,0.23452096,0.3008383,-0.10130944,-0.17253229,0.18707526,-0.4777997,0.26876742,0.08180911,0.08103188,0.3817511,-0.07729533,-0.44301778,-0.6837723,-0.048415985,-0.38672993,-0.22689506,0.29034567,-0.076851904,-0.07044285,0.28117234,-0.058349706,0.4179901,-0.23862174,0.14800197,0.0710326,-0.34430906,0.23409186,0.39918208,0.40827942,-0.38524073,0.53221256,0.035597414,-0.13429624,-0.01577083,-0.10849781,0.3926818,0.15737838,0.122160874,0.0059954785,-0.26011288,0.35389066,0.4407273,0.1949311,0.35379684,0.19496365,-0.20277315,0.50312024,0.029349314,0.074749984,0.0100018345,-0.36796725,-0.061409995,-0.06565364,0.011894245,0.36832547,0.24155812,0.40859544,0.055850707,-0.14651126,-0.061255924,0.039025024,-0.14708437,-0.9991597,0.21435344,0.12648654,0.8197746,0.5580829,-0.008662611,-0.065035395,0.6736506,-0.36416432,0.07701499,0.42739317,-0.08535384,-0.42537352,0.7319307,-0.5164988,0.37238735,-0.121891215,-0.04661129,-0.024353694,0.15472296,0.31719327,0.79968476,-0.17513856,0.14037271,0.015376842,-0.19139026,0.04929713,-0.2323321,0.07672152,-0.3027618,-0.3220005,0.63705325,0.18687803,0.37868682,-0.11871248,-0.07276867,0.0751602,-0.2237936,0.21437278,0.03549964,-0.014946334,0.02593942,-0.4079786,-0.32243955,0.49200606,0.14965217,0.3391117,-0.13470548,-0.25599042,-0.014218569,-0.046328887,-0.097885445,0.056804657,-0.6013063,0.07846662,-0.15624188,-0.3848335,0.4558913,-0.2281291,0.03402859,0.12156916,0.043717057,-0.090206906,0.031231739,0.2803988,0.6918062,0.006901134,-0.32801217,-0.13654424,-0.017919669,0.25848264,-0.19832101,0.19379014,-0.17820598,0.04083294,-0.7490116,0.6435014,-0.14959015,-0.33730033,0.31097934,-0.17189795,-0.036106072,0.5069144,-0.07915853,-0.0021528602,0.1615148,-0.029571164,-0.4098786,-0.1657367,-0.23098992,0.1802575,0.23530744,0.020286262,-0.07566948,-0.17497623,-0.014036983,0.5859479,0.033851966,0.31577605,0.14085525,0.099355295,-0.3267467,0.17137754,0.18170226,0.31552416,0.07376561,0.052053057,-0.3849415,-0.32733864,-0.3000908,0.17127241,-0.00884771,0.12003994,-0.019470394,-0.50141644,0.8277486,-0.21531434,1.0706545,0.030562578,-0.3900048,-0.03119966,0.43896025,-0.23230758,-0.015474964,-0.30716935,0.84623444,0.6098928,0.029081374,0.008359853,-0.52641886,-0.16591746,0.3307246,-0.3559427,-0.118170455,-0.07820937,-0.40831023,-0.58717334,0.16349413,0.17967632,0.06962771,-0.10987899,0.0037461668,0.117739454,0.14252606,0.4130914,-0.54521465,-0.2857371,0.2901808,0.29715815,-0.12720284,0.21850227,-0.413601,0.35311872,-0.6946279,0.17480311,-0.2805779,0.07717449,-0.16996628,-0.21877387,0.08577429,-0.003580939,0.3341937,-0.23026316,-0.5704889,-0.043076515,0.46159655,-0.054434493,0.062634826,0.5862301,-0.22939274,0.078559786,0.015019428,0.46136683,1.1987906,-0.2747512,0.047236778,0.320604,-0.37371248,-0.52814984,0.42682582,-0.21369983,0.052919406,-0.07772009,-0.31969735,-0.38164425,0.19500704,0.30452377,0.111973464,0.015610501,-0.43285096,-0.11263037,0.29945797,-0.32369882,-0.26086697,-0.20176776,0.27226624,0.62465787,-0.31169108,-0.13016227,0.019081771,0.40632045,-0.26083878,-0.39642787,-0.14089292,-0.10862355,0.37993655,0.22204143,-0.14215225,-0.15010172,0.15332863,-0.45683208,-0.12528908,0.15132296,-0.40419042,-0.058639813,-0.28266728,-0.014021274,0.81299824,-0.064900145,0.077445745,-0.56736124,-0.4350809,-0.84394896,-0.4863636,0.19715719,0.13607636,0.077600084,-0.36849558,0.0600182,-0.13039558,-0.20256555,0.14422141,-0.45623106,0.3173564,0.17703766,0.41510788,-0.30116707,-0.6931578,0.08027474,0.17970784,-0.007320989,-0.41388413,0.6375737,-0.066583484,0.8325795,0.095526814,-0.105980456,0.09779638,-0.4253137,0.12163213,-0.29866248,-0.16244392,-0.6376736,0.09525204,762 -98,0.5672341,-0.2983851,-0.5373297,-0.10221484,-0.3632428,0.0955929,-0.3089487,0.31318432,0.10205476,-0.33767658,-0.12055896,-0.1909724,-0.02827271,0.5312784,-0.15709135,-0.4363236,0.066887304,0.11235017,-0.73035413,0.67692316,-0.42963594,0.41648006,0.061761126,0.33278877,0.24083722,0.28788853,0.17739186,0.028677832,-0.03806028,0.034069657,-0.08491469,0.38379216,-0.5964687,0.026758507,-0.106498845,-0.26234782,-0.096683905,-0.22745377,-0.30155155,-0.80498874,0.23276019,-0.9557712,0.52578855,-0.08839202,-0.56492734,0.18829878,0.21250002,0.26055714,-0.27918565,-0.024648272,0.14093071,-0.09373397,-0.030431954,-0.13056475,-0.16552676,-0.64532876,-0.5989192,0.0017947983,-0.791034,-0.28770536,-0.35218143,0.2661686,-0.32546782,-0.1065692,-0.15267915,0.26691306,-0.56258607,0.06359686,0.07637148,-0.0733656,0.24776888,-0.5377679,-0.08790204,-0.12160365,0.11497302,-0.18751833,-0.29008055,0.23738207,0.35974896,0.5137715,0.04317598,-0.20551358,-0.31888703,0.06504077,-0.002199214,0.37383646,-0.1493954,-0.39528352,-0.27524525,0.048555862,0.3748786,0.18603519,0.23325223,-0.3594094,-0.14071429,0.07570773,-0.0799029,0.3783698,0.47043446,-0.43668866,-0.34737533,0.42685568,0.5989054,0.14766121,-0.16016735,0.1071801,-0.04472728,-0.5980593,-0.05543507,0.08155966,-0.07736162,0.66498846,-0.17789377,0.21293396,0.64326864,-0.24415319,0.014926992,0.017638654,0.008047618,-0.07063685,-0.078425854,-0.104342304,0.16747971,-0.5494344,-0.05905138,-0.20362122,0.53523237,0.09329167,-0.6139404,0.23079935,-0.49502832,0.18503508,-0.1498367,0.500883,0.79763734,0.55919194,0.12861042,0.7125327,-0.35981405,0.082543865,-0.09502675,-0.25671557,0.28742242,-0.32355657,-0.07462494,-0.5188989,-0.06900343,-0.053140096,-0.16758674,-0.022531785,0.84844655,-0.72017473,-0.096706316,0.04750365,0.68717647,-0.3604005,-0.078027464,0.6725317,0.83374053,1.0229756,0.08021049,1.1355236,0.36638558,-0.06893543,0.16069855,-0.25651428,-0.68983227,0.25378874,0.40163195,-0.082019545,0.42560363,-0.07147277,-0.1551831,0.48627973,-0.2819481,-0.11717304,-0.26635298,0.27117312,-0.029016692,-0.08809101,-0.49259996,-0.22665259,-0.062469188,0.28139573,-0.030366154,0.30403513,-0.33795863,0.26126933,0.03920235,1.8974643,-0.14348906,0.046532765,0.02128957,0.44827107,0.27282387,-0.19880515,-0.05493648,0.4345014,0.32441455,0.15161516,-0.5920365,0.0036564283,-0.22785252,-0.46729678,-0.19437064,-0.39981532,-0.0717876,-0.24883533,-0.6372913,-0.12514135,0.0529558,-0.23461595,0.4115255,-2.405588,-0.17512222,-0.077025615,0.44257617,-0.2909447,-0.3862583,-0.14139149,-0.3531331,0.36351836,0.43891498,0.40774447,-0.62967694,0.35271382,0.4157189,-0.48666844,-0.09827785,-0.5872085,-0.14249143,-0.07594578,0.5918436,-0.11482782,-0.14216152,0.17192197,0.2921936,0.52279663,-0.20952016,0.17544812,0.32758394,0.503523,-0.028754875,0.47600952,0.1110743,0.47162658,-0.08870375,-0.29368675,0.4642135,-0.22495683,0.27312106,-0.008348137,0.22617465,0.44020292,-0.46383968,-1.062527,-0.49642092,0.029139606,1.1370127,-0.47109497,-0.40469337,0.25544482,-0.27525607,-0.15643656,-0.012922386,0.38834348,-0.06843341,0.1589363,-0.8615206,0.13856085,-0.0043039694,0.17250642,-0.00921811,0.050721124,-0.3214344,0.60999703,-0.10286245,0.35486448,0.24902542,0.33136126,-0.34094268,-0.7356411,0.111382544,1.0462443,0.52908397,0.03757681,-0.28132743,-0.3490129,-0.30260554,-0.024630088,0.16416235,0.34287742,0.7756629,0.014107933,0.29947647,0.24743551,-0.13966176,0.02911003,-0.28434345,-0.2534846,0.05156803,0.17287926,0.42522785,0.74696463,-0.13877925,0.5772687,-0.051617842,0.37287706,-0.082594186,-0.6212899,0.44385362,1.214914,-0.2604971,-0.19554815,0.5652048,0.49385643,-0.2926596,0.4786839,-0.6466344,-0.42477804,0.5053442,-0.26332515,-0.38458723,0.42889056,-0.38053352,0.2030987,-0.95284057,0.4444723,-0.052327584,-0.23687603,-0.54893786,-0.058080643,-3.5952175,0.15404767,-0.25822982,-0.23572893,-0.0370066,-0.2940068,0.38492125,-0.79285514,-0.5186486,0.00907957,-0.0063909963,0.68947315,-0.11327971,0.08119336,-0.20915341,-0.36255288,-0.12788546,0.30289182,0.059511527,0.356638,-0.07827854,-0.58725935,-0.05035018,-0.121708214,-0.46343553,0.049562763,-0.6162491,-0.6165472,-0.23517522,-0.5939767,-0.099346325,0.68694067,-0.030558635,-0.014068885,-0.22972842,0.022511113,0.13375589,0.22894731,0.2938635,0.07757928,0.21836436,0.02167321,0.0176855,-0.35178393,0.059045304,0.0048690652,0.19647123,0.4810602,-0.1548624,0.29811496,0.63865536,0.46444547,-0.3307411,0.82007533,0.5784859,-0.07574016,0.26598406,-0.16486034,-0.34159994,-0.659781,-0.3842535,-0.3153619,-0.47085032,-0.30262744,-0.03337648,-0.31046832,-0.7291055,0.65531546,-0.09819521,0.37357455,-0.16415119,0.37869152,0.6187285,-0.18453833,-0.16114864,-0.16115908,-0.31128258,-0.54992455,-0.33277637,-0.7614078,-0.7069408,0.11820638,1.0851392,-0.21101496,-0.058149084,0.0921603,-0.02386517,0.016729483,0.04039877,0.030426037,0.23234618,0.35020256,-0.028348029,-0.7809055,0.5205004,-0.049963593,-0.007864825,-0.4458042,0.14853132,0.5741799,-0.60311157,0.36998296,0.37853405,0.16157866,-0.014134532,-0.6810777,-0.08577773,0.19516838,-0.26601452,0.60448444,0.30249247,-0.9104161,0.4655379,0.29518026,-0.4965421,-0.7044697,0.60582155,-0.009678859,-0.29841024,-0.14806741,0.3727138,0.11227569,0.037135277,-0.30112913,0.30531627,-0.5136925,0.2846499,0.37411544,-0.10817293,0.37430525,-0.22473912,-0.17912029,-0.7084408,0.13049126,-0.43661514,-0.4214532,0.20147389,-0.02293012,0.053867374,0.1219862,-0.002656147,0.5121752,-0.31134212,0.07295361,-0.0010742247,-0.313438,0.5364028,0.6128694,0.6159803,-0.3352607,0.53009397,0.031668484,-0.15919363,-0.0038049147,-0.03227581,0.5366999,-0.02084335,0.31938154,0.089033425,-0.101098314,0.41153675,0.74252397,0.15734011,0.5017951,0.15057711,-0.2971973,0.09199845,0.16939552,0.12610751,-0.11431656,-0.458889,-0.06810707,-0.076665916,0.30139506,0.6152822,0.14752817,0.20557891,-0.12709975,-0.21423283,0.19707158,0.1114425,0.11036289,-1.2784387,0.12965865,0.3534576,0.66791916,0.48894614,0.053580113,-0.0319932,0.43772805,-0.2713525,0.0506171,0.36693746,0.00964573,-0.6326121,0.6003662,-0.7812854,0.45019227,-0.13838202,0.027175415,0.05442271,0.056307852,0.41609862,0.8884418,-0.11399542,0.031964466,-0.015467927,-0.3282755,0.12301763,-0.4265024,0.10637997,-0.52131116,-0.36178985,0.67753696,0.39566764,0.293421,-0.18136886,-0.010816246,0.1571789,-0.3151494,0.26389572,-0.00631465,0.15821072,-0.23051555,-0.55795217,-0.25372884,0.49087623,0.026416011,0.11328722,-0.0012004524,-0.17624879,0.15522398,-0.27760255,-0.0033641271,0.023777252,-0.68818814,-0.093715236,-0.47823632,-0.4068223,0.5888066,-0.21072693,0.12710263,0.21723866,0.020799352,-0.43161833,0.20191005,0.097706154,0.77056515,-0.06588146,-0.20151004,-0.22704822,0.17160484,0.17032288,-0.17541865,-0.10045455,-0.20560762,0.15050747,-0.66436005,0.45200175,-0.1503089,-0.40059808,0.03757986,-0.1015286,0.014911963,0.4593842,0.002392225,-0.27319157,-0.08523971,-0.051579837,-0.33654368,-0.26095948,-0.0440225,0.27566618,0.206571,-0.17607588,-0.13430876,-0.03712678,0.16579095,0.57025796,-0.027970638,0.3624065,0.4911334,0.053468935,-0.40338588,0.05881487,0.46139592,0.53086656,0.027787,0.058627956,-0.40001732,-0.48930866,-0.40934378,0.111210786,-0.26841283,0.3643373,0.15863827,-0.37926868,1.0222127,0.082447335,1.2704743,-0.06418168,-0.47033548,0.20795622,0.5849072,0.021937799,-0.10833749,-0.37889254,1.0474901,0.6918787,-0.10767538,-0.16867487,-0.39107096,-0.29530275,0.25503567,-0.40226108,-0.17861971,-0.10445538,-0.6977282,-0.27191952,0.13999644,0.30020618,0.030272849,-0.14493278,0.1250311,0.3736089,0.03381569,0.2697361,-0.562538,-0.22852814,0.2596018,0.26137847,-0.1256023,0.14469063,-0.54907274,0.46249846,-0.45843834,0.11988342,-0.28347448,0.22335215,0.032305297,-0.3541008,0.29861522,0.018951813,0.27664942,-0.35273272,-0.36424926,-0.2677486,0.63333136,0.022915695,0.069831006,0.62546754,-0.45250478,0.17028593,-0.10737236,0.38994572,1.1956587,-0.2568825,-0.07380667,0.3691269,-0.34561282,-0.87994695,0.38657004,-0.40920287,0.33003995,-0.02850142,-0.4354785,-0.4920322,0.33136857,0.15993074,0.06438683,-0.031472526,-0.5335946,-0.04612232,0.23211357,-0.23625264,-0.17378458,-0.24459916,0.07078704,0.55158997,-0.40545934,-0.22493853,0.03776423,0.35206822,-0.18126145,-0.5595815,-0.076557875,-0.29923114,0.28543994,0.1402492,-0.40177503,0.030036628,0.09457649,-0.41781422,0.06381884,0.37793514,-0.32158262,0.081187785,-0.3476982,0.08171351,1.1164181,-0.13669834,-0.11519736,-0.57640314,-0.54580927,-0.9646907,-0.3540288,0.38044667,0.16686018,0.12826353,-0.81618917,0.10766579,-0.22710547,-0.081123255,-0.023462016,-0.47692233,0.5671501,0.15238316,0.33340302,-0.05511871,-0.7820326,0.12799446,0.12873542,-0.21026951,-0.6265911,0.64752185,-0.27057588,0.7624937,0.19557935,0.15743843,0.23658265,-0.6185665,0.013023124,-0.22539173,-0.08243113,-0.74311167,-0.0054957196,769 -99,0.5639065,-0.16277117,-0.30357248,-0.1713871,-0.18104869,0.12521723,-0.26577193,0.31054914,0.17806864,-0.69121623,-0.11860378,-0.3784804,0.012841351,0.4339648,-0.13642932,-0.6566811,0.0033351108,0.12010488,-0.48809728,0.61430615,-0.45568246,0.3950454,0.25239098,0.33280718,0.15597409,0.2202919,0.46233684,-0.21895811,-0.059931345,-0.26931745,-0.04553462,0.052705973,-0.70268816,0.13146211,-0.10714644,-0.44511837,-0.025948592,-0.332677,-0.22994475,-0.75040114,0.32292098,-0.7138007,0.45590258,0.19527733,-0.21329702,0.38995832,0.10937457,0.23017383,-0.1897916,0.13008407,0.1679615,-0.11069776,0.06281829,-0.11568502,0.014567107,-0.4744409,-0.5617441,0.16010165,-0.37502053,-0.29451054,-0.41039371,0.15508424,-0.3229169,-0.03882597,-0.11054444,0.46124464,-0.28873545,0.012580663,0.18857023,-0.2208059,0.4815085,-0.467756,-0.17134376,-0.18071076,0.1847144,-0.2375655,-0.14834404,0.1971391,0.18127377,0.6911264,0.053484626,-0.18099624,-0.3517025,-0.07642929,0.019317182,0.52883,-0.1617683,-0.6021344,-0.12778223,0.03719812,0.1497156,-0.0049977656,0.10585131,-0.28694034,-0.22227667,-0.016675599,-0.22731945,0.39863402,0.42329216,-0.33234707,-0.33759248,0.37550405,0.34860408,-0.0053078905,-0.062396683,-0.069582015,-0.030455327,-0.542317,-0.10357724,0.117551215,-0.24420431,0.55427563,-0.16482985,0.34247208,0.6524725,-0.112798475,-0.043055233,0.024271015,-0.119619764,-0.050869387,-0.086530864,-0.21481189,0.25208616,-0.49754223,0.029927962,-0.30875772,0.82650346,0.1054789,-0.9048643,0.38204762,-0.42781365,0.1451987,-0.025139267,0.5466462,0.6808795,0.33524513,0.31223038,0.6491381,-0.5336967,0.0234458,-0.17904635,-0.34995508,0.07183185,-0.09096012,-0.10648583,-0.52033603,-0.08043797,0.049373858,-0.010347933,-0.015947372,0.43819773,-0.59815043,0.010573328,0.19925842,0.7935079,-0.3222955,-0.04565213,0.65992004,0.9886138,1.0250962,-0.017473638,1.1604671,0.17408207,-0.29492682,0.22139408,-0.35305077,-0.6178812,0.34869564,0.3925236,0.21031079,0.21819207,0.024050951,-0.01398664,0.31140348,-0.3366635,-0.008861326,-0.2292694,0.15035553,-0.012747418,-0.036737643,-0.34934282,-0.23424608,-0.043420695,0.043007545,0.1053752,0.105987236,-0.15302366,0.29056603,0.025130246,1.661054,-0.13727468,0.12415118,0.047481954,0.4000657,0.17890558,-0.25021,-0.10703621,0.16386873,0.29860967,0.09116827,-0.5367596,0.0821362,-0.14104739,-0.5411555,-0.15862238,-0.22822401,0.014865013,-0.04814908,-0.45943838,-0.035643272,-0.1623159,-0.45511293,0.39267048,-2.6834183,-0.1963575,-0.07044255,0.35051882,-0.31443584,-0.29558235,-0.123016246,-0.4953437,0.4574728,0.43640774,0.4249623,-0.7392415,0.24530242,0.34707072,-0.4581605,-0.16732442,-0.6725942,-0.02189996,-0.10740794,0.45551747,0.068646856,-0.10444197,-0.09328596,0.34677693,0.59342885,-0.10126327,0.08114745,0.10246873,0.39734733,0.17344895,0.50178444,0.034639657,0.4837267,-0.21642902,-0.16697045,0.41400218,-0.35668653,0.086212225,-0.17109874,0.14789696,0.24311087,-0.41848785,-0.8100852,-0.72450364,-0.35019252,1.1579574,-0.14050214,-0.3830479,0.21554108,0.06760037,-0.20092633,-0.035494704,0.35962865,-0.104987025,0.021975826,-0.8926431,0.116748385,-0.020620666,0.09376999,0.09217121,0.007982742,-0.48466134,0.6938097,-0.0020744745,0.3727784,0.4384768,0.31157216,-0.2976604,-0.5181745,0.17444387,1.1068693,0.32213894,0.09772473,-0.200923,-0.174686,-0.41449982,0.049151167,0.06042748,0.3594753,0.7585662,0.030712485,0.10647471,0.28326878,0.037692983,0.11721198,-0.11789046,-0.28377378,-0.059292234,-0.053235695,0.6897053,0.5544634,-0.081811786,0.34705478,-0.13977066,0.2913978,-0.18788394,-0.39188948,0.6484789,1.1158838,-0.11565591,-0.1255154,0.52742374,0.45722502,-0.107138544,0.3919731,-0.6276972,-0.4138588,0.408014,-0.16618973,-0.36437687,0.25744766,-0.3316553,0.15151897,-0.97309375,0.34239724,-0.28210646,-0.3489762,-0.6149497,-0.12390934,-3.676321,0.22933605,-0.23470932,-0.24077487,-0.069790885,-0.043746967,0.30416572,-0.5533111,-0.37677616,0.08807389,0.063494995,0.75270975,0.035535913,0.22544521,-0.20798534,-0.16929457,-0.29704806,0.19352019,0.014695063,0.19603461,0.100325614,-0.43592665,0.02734984,-0.20568906,-0.34555537,0.10448639,-0.44048488,-0.54747,-0.25448212,-0.47815502,-0.41866738,0.51115155,-0.32500705,0.10539162,-0.23020253,-0.11058511,-0.022915218,0.40983486,0.12221353,0.053807758,0.043943834,-0.09083596,-0.017576102,-0.31748316,0.18302146,0.1709872,0.24102522,0.48490703,-0.33456478,0.19534498,0.43319353,0.53187764,-0.1282,0.7503979,0.5039236,0.03929939,0.24219987,-0.27684233,-0.19392332,-0.5634294,-0.3419401,-0.09966287,-0.38489252,-0.41018832,0.010120355,-0.27844876,-0.7250558,0.4895132,-0.031274613,0.0839768,-0.18940297,0.26595956,0.46087387,-0.2507149,-0.010602064,-0.12544805,-0.16955394,-0.5391164,-0.30324072,-0.6303243,-0.51393163,-0.022802442,0.84690225,-0.07018535,0.030868486,-0.013133828,0.0059779957,0.036268577,-0.013518421,-0.05804248,0.15251218,0.32420653,-0.018177275,-0.77761626,0.60117126,0.012643725,-0.10662519,-0.53092736,0.23450229,0.49292317,-0.40536675,0.35780537,0.430639,0.10665712,0.03366179,-0.53906655,-0.059483528,-0.029245242,-0.28282577,0.39798582,0.13901532,-0.62000686,0.49565876,0.3283788,-0.21115336,-0.7865615,0.49495625,0.14561602,-0.3876236,-0.004920967,0.2337093,0.06687239,0.09382036,-0.27792466,0.29538053,-0.5327153,0.22871761,0.15448532,0.052271783,0.41627756,-0.23533158,-0.1679624,-0.7766925,-0.10457523,-0.4675374,-0.2882975,0.088103324,0.18522866,0.039527886,0.3589189,-0.03743399,0.4538297,-0.1550507,0.076467276,-0.087752976,-0.16776589,0.28800258,0.49814442,0.3839691,-0.3737467,0.5810747,0.033365637,-0.0477798,-0.19872032,0.04345603,0.50692046,0.07962615,0.31267935,-0.040204722,-0.26545027,0.40910214,0.6014856,0.15992919,0.36204797,0.067088716,-0.19052505,0.42487007,0.107700996,0.14542553,0.026158981,-0.44697458,-0.10966289,-0.19284934,0.13037828,0.46447715,0.088690236,0.3205779,-0.075301394,-0.32910278,0.04690075,0.08212554,-0.12191852,-1.1359521,0.35860947,0.21104035,0.7612622,0.63557756,-0.055345993,0.16355598,0.72705895,-0.22879265,0.14657193,0.25936428,0.011234917,-0.5628128,0.5343915,-0.6938225,0.30096853,-0.089573234,-0.08336606,0.032338616,-0.014796771,0.35072148,0.6937812,-0.13568212,0.18404122,-0.11984548,-0.2852254,0.13028368,-0.36652794,0.33584088,-0.49658686,-0.20870468,0.7512667,0.43733323,0.2168184,-0.10226948,0.0029070936,0.092984974,-0.10074219,0.15210426,0.118469104,0.046828896,0.029685419,-0.64399314,-0.115726575,0.554014,0.13476819,0.22220695,-0.041178025,-0.31584835,0.11467008,-0.19129725,-0.16566873,-0.101133704,-0.5503845,-0.020034444,-0.2825716,-0.1928046,0.52912486,-0.34121913,0.37832475,0.13380328,0.15395069,-0.1983254,-0.02041322,0.25690195,0.5580636,0.20647213,-0.12146708,-0.3617986,0.09612323,0.15307,-0.22725548,-0.21792074,-0.2571268,0.0047280416,-0.72613555,0.41636822,0.025299236,-0.24864784,0.26545405,-0.14247411,0.06550917,0.6110195,-0.061884575,-0.13430263,0.18444723,-0.21696287,-0.24394834,-0.06026436,-0.03049763,0.37107167,0.12723285,-0.09944482,0.03615384,-0.034595408,-0.14071849,0.39555016,0.1861934,0.36218852,0.20083839,0.05133648,-0.39621666,-0.03350451,0.14711404,0.39576918,0.11411585,-0.09101341,-0.2164115,-0.41345716,-0.3781464,-0.008720182,-0.07918607,0.20710646,0.059976146,-0.28333554,0.7564849,0.10507107,1.095574,0.008077577,-0.35685027,0.060599744,0.4270835,-0.052529614,-0.025779147,-0.38051862,0.91706324,0.6018763,-0.07077293,-0.12945563,-0.20142333,0.021013735,0.061920643,-0.25113055,-0.11158034,-0.049608216,-0.666098,-0.40053686,0.227235,0.30223057,-0.0011251196,-0.13469036,-0.050433025,0.18591814,-0.1277073,0.46312335,-0.46228328,-0.1771791,0.22702831,0.36641157,0.055476576,0.026138395,-0.43993965,0.47817376,-0.6311592,-0.019001067,-0.24117406,0.15021731,-0.20001513,-0.23457041,0.3244289,0.017961502,0.32141426,-0.25993937,-0.4887845,-0.2744575,0.36665967,0.09338969,0.19620019,0.62552357,-0.22912405,0.09789668,0.057970278,0.46050212,1.2442317,-0.33602566,0.033500835,0.40155107,-0.33197954,-0.59061015,0.2480294,-0.26266652,0.09894309,-0.05428273,-0.23484406,-0.40043497,0.30591366,0.14987952,0.07454504,0.058691658,-0.64727867,-0.25333697,0.35155618,-0.2909923,-0.25857285,-0.2768163,0.11093261,0.5003526,-0.32008696,-0.30477995,-0.013228414,0.3720277,-0.3100692,-0.6598462,-0.14684066,-0.34269315,0.38978043,0.26728326,-0.2541932,-0.09414004,0.069962025,-0.38372493,0.008635564,0.17784262,-0.4244889,-0.038370825,-0.44576946,-0.020322932,0.8044224,-0.10096002,0.12310401,-0.5688598,-0.31068325,-1.0124481,-0.36328316,0.6052097,0.1329654,0.079579696,-0.44753382,-0.043484956,-0.17570685,-0.10952635,0.006428484,-0.4068455,0.32661515,0.16534087,0.495942,-0.038988836,-0.66349363,-0.0071122795,0.24892105,-0.19589303,-0.52015203,0.48548666,0.07035484,0.8294222,0.074558005,0.070803076,0.39451486,-0.6298714,-0.012802672,-0.07543717,-0.19086269,-0.7124172,0.117714055,780 -100,0.41489154,-0.28921166,-0.3833222,-0.09523822,-0.325296,0.13222052,-0.28805178,0.52091867,0.101646684,-0.33987692,-0.1169752,-0.2657524,0.10633237,0.4625784,-0.21417737,-0.6063879,0.109062694,0.20453149,-0.51446176,0.43986145,-0.44687036,0.4309812,0.16375631,0.23687826,0.11597324,0.18698505,0.26484153,-0.12519632,-0.10158102,-0.22580458,-0.22043523,0.24396521,-0.4486579,0.16367984,-0.26023307,-0.43917146,0.15014143,-0.4816699,-0.37401867,-0.68842155,0.094283506,-0.6767873,0.5972425,-0.029527545,-0.3152001,0.14206873,0.05776772,0.4447217,-0.18097715,0.11068806,-0.005860187,-0.13415994,-0.08888066,-0.18194894,-0.24924111,-0.48017645,-0.48227048,0.08731894,-0.5308914,-0.30450705,-0.08566253,0.15427223,-0.18409652,0.11059341,-0.11729019,0.45510936,-0.4789196,-0.038880944,0.2607348,-0.18073334,0.19324027,-0.53156203,-0.022959277,-0.07608764,0.28088647,-0.22236541,-0.30534348,0.089762315,0.33431834,0.45439392,0.018002553,-0.2249097,-0.20577969,-0.21789563,0.027405094,0.65835524,-0.10912271,-0.6156086,-0.28995723,0.015417685,0.3359147,0.1686042,0.069732025,-0.41469774,-0.14930585,-0.052475847,-0.38613302,0.2963287,0.45560837,-0.5585467,-0.23742092,0.30500597,0.5618114,0.11601229,-0.13166477,0.2503369,0.020546732,-0.4873861,-0.041599162,0.16639005,-0.1259679,0.5816256,-0.13575439,0.22348407,0.600853,-0.0840428,-0.027473103,0.039595753,-0.041202668,-0.09338707,-0.19551343,-0.19113666,0.30698153,-0.4551875,-0.0011128336,-0.33925903,0.8131945,0.19281492,-0.6383775,0.37228587,-0.5812083,0.15170157,-0.024946153,0.5940583,0.6400423,0.34305197,0.16963425,0.61675733,-0.41970566,0.13075286,-0.27072713,-0.34462982,-0.006481895,-0.08997071,0.05179608,-0.49552274,0.12128067,0.027551785,-0.03193891,0.19488236,0.34841385,-0.63454294,-0.11429771,0.04034745,0.71876013,-0.3095686,-0.09663148,0.79197747,0.9404379,0.8052958,0.0056522917,1.2814988,0.31062657,-0.1260804,-0.057523627,-0.29277316,-0.33381507,0.21809071,0.3573642,0.13257264,0.2858572,0.09454629,-0.030770496,0.46909028,-0.29443088,-0.006198406,-0.17434637,0.046375237,0.047425695,-0.011917364,-0.52057135,-0.17648514,0.111344025,0.038434684,0.25399953,0.32859123,-0.22181909,0.48890227,0.12917931,1.3198001,-0.04055175,0.09803897,0.09511553,0.32329258,0.2957834,-0.015401404,-0.031003498,0.31053036,0.3677889,0.03349956,-0.46593097,0.123708665,-0.21382043,-0.41035408,-0.09145737,-0.26346272,-0.16608828,-0.010018872,-0.5324988,0.014653716,0.08834213,-0.20350468,0.5252407,-2.804213,-0.34510583,-0.14677018,0.3138674,-0.24558815,-0.40557408,-0.09584764,-0.47598213,0.4085952,0.37687874,0.48493567,-0.685772,0.46759275,0.38752785,-0.35925382,-0.21347697,-0.64407665,-0.10358382,-0.023103558,0.43817532,0.05941665,-0.10368827,0.042624444,0.16080269,0.5737518,-0.08712177,0.09470466,0.07726047,0.28692034,0.14720517,0.4376366,0.15528002,0.5835788,-0.21515155,-0.21466058,0.3623916,-0.26379323,0.2932186,0.022386566,0.18384609,0.34238705,-0.2988563,-0.84640765,-0.68714863,-0.31783348,0.88392305,-0.19502267,-0.46358642,0.107317336,-0.09070654,-0.283165,-0.03588619,0.4092096,-0.08809514,0.08376394,-0.7442136,0.018160032,0.04749155,0.24923177,-0.061966285,-0.060900513,-0.38434476,0.5352226,-0.19701134,0.355392,0.38647395,0.2515996,-0.18884411,-0.47156072,-0.020525236,0.97932696,0.3826713,0.18390842,-0.14186658,-0.21144474,-0.30290785,0.010221951,-0.01654067,0.64622575,0.73271257,-0.026006669,0.096178174,0.23965992,0.04947351,0.06195891,-0.21340679,-0.31295073,0.023008365,0.055064823,0.5886235,0.491234,-0.06711812,0.58164454,-0.091468714,0.39457506,-0.20636833,-0.5302958,0.5137793,0.8086971,-0.34118375,-0.24471134,0.6084025,0.45558387,-0.21827789,0.35838613,-0.76590496,-0.33761004,0.40055615,-0.1902294,-0.4865457,0.36953336,-0.20270942,0.17018962,-0.87024295,0.30468592,-0.14724639,-0.48985088,-0.52073234,-0.09179017,-3.638503,0.19794184,-0.07245327,-0.14388311,0.032657534,-0.27356035,0.13650912,-0.4433405,-0.38306803,0.1729928,0.1211117,0.5459125,-0.05648867,0.050172426,-0.36080942,-0.34773493,-0.10048803,0.27740788,0.025457941,0.27981973,-0.18821482,-0.39826894,0.1385577,-0.23790154,-0.4781058,0.14269693,-0.69029725,-0.4175826,-0.15605228,-0.48284113,-0.28724918,0.6497687,-0.53717035,0.16374905,-0.27504873,0.10902497,-0.14847404,0.32155985,0.1581781,0.08428637,0.049568437,0.025858521,0.0460895,-0.38498583,0.24532044,0.13187715,0.10149163,0.30212712,-0.036211118,0.19042721,0.48983198,0.5852039,0.042507365,0.7293284,0.33304152,-0.0022993265,0.28826505,-0.19425225,-0.3841195,-0.48316494,-0.3714931,-0.14986677,-0.45490253,-0.42635965,-0.20704821,-0.25965655,-0.6835227,0.661279,0.079161346,-0.081359945,-0.1840648,0.4246099,0.48578128,-0.38065043,0.019062918,-0.0016075,-0.06951469,-0.48260337,-0.3852647,-0.7031079,-0.48230854,0.06496173,0.8452559,-0.188196,0.039505154,-0.025890611,-0.032966226,-0.05732097,0.2010085,0.21910019,0.22280192,0.45013055,-0.35984153,-0.67273986,0.4897518,-0.3117975,-0.44840676,-0.58914244,0.23075733,0.6649603,-0.6308621,0.4245214,0.42433563,0.08607298,-0.14606823,-0.42304644,-0.19416116,0.13247955,-0.26602143,0.49530783,0.08985448,-0.74072254,0.5069396,0.28607333,-0.20663482,-0.68632805,0.5872117,0.01696056,-0.321985,0.1241216,0.36947817,0.19302337,0.044178784,-0.16242056,0.044544186,-0.4177068,0.23162118,0.34596947,-0.044836156,0.47103667,-0.277239,-0.10135223,-0.7883715,-0.21490327,-0.5308448,-0.2054712,0.06754934,0.077761166,0.12465774,0.12117117,-0.091376245,0.39476043,-0.38202688,0.13406436,-0.12280846,-0.23842412,0.3796098,0.48212963,0.26830548,-0.23401123,0.59987473,-0.013942296,-0.074379005,-0.19335642,0.03145225,0.5331439,0.14105684,0.43172607,-0.14612705,-0.2034831,0.3532593,0.6938019,0.26132676,0.31818447,0.18601999,-0.09373574,0.22260854,0.15732893,0.14719273,0.08337092,-0.36952066,-0.113251075,-0.21520472,0.123507485,0.4877729,0.09532962,0.40859455,-0.04416489,-0.38187066,0.09517685,-0.061082195,0.09002426,-1.2163013,0.19579147,0.17415136,0.6644647,0.36219496,0.1912309,0.020787347,0.5189883,-0.2637261,0.0116333775,0.25878733,0.055091716,-0.3550352,0.5858137,-0.7555504,0.5287497,-0.21347293,0.012680472,0.098050565,-0.09675534,0.39153203,0.9344466,-0.14915633,0.07345813,0.0055169035,-0.19811156,0.08435064,-0.38835302,0.09201314,-0.48642737,-0.30003083,0.7133609,0.44019514,0.40561998,-0.20730346,0.0075403955,0.22385918,-0.12948951,-0.00013307482,-0.01582532,0.22697936,-0.14283016,-0.5016991,-0.24724552,0.6003587,-0.09061898,0.06964953,-0.008391801,-0.23827049,0.22660941,-0.0794934,-0.042451985,-0.076026574,-0.6459723,-0.06544575,-0.3177713,-0.47464973,0.47070518,-0.2662516,0.20924145,0.10052812,0.06608186,-0.33165154,0.5132811,0.20756263,0.86072624,0.1056356,-0.10471879,-0.20270357,0.08619109,0.30688664,-0.18368086,-0.17257635,-0.27104115,0.13143606,-0.6573467,0.3353851,-0.13173115,-0.29561055,0.07541364,-0.045628995,0.029462788,0.39774013,-0.091845736,-0.2909457,0.29140517,-0.10051116,-0.17218713,-0.12981926,-0.1908727,0.25300655,0.24603364,0.02116875,0.004510559,-0.124423675,-0.22195956,0.35435525,0.06459697,0.40944973,0.31257075,0.13929829,-0.36405012,0.08178699,0.0116150305,0.3733068,-0.12128095,-0.10624411,-0.19427155,-0.5441491,-0.35448056,0.006317094,-0.047837675,0.2995219,0.04409621,-0.2739235,0.9010659,0.011928827,1.201954,0.015967399,-0.46261835,0.16636795,0.5133096,0.045359403,0.06398073,-0.2664657,1.0001338,0.4454161,0.026377779,-0.11010928,-0.29186016,-0.035354055,0.15892659,-0.16354552,-0.2069763,-0.019205863,-0.46268928,-0.2343073,0.3255293,0.28272766,0.23382388,-0.011810057,0.15783714,0.23996285,-0.015472699,0.35910913,-0.5639085,-0.005985856,0.31702965,0.37710842,-0.13654989,0.07362668,-0.32776836,0.5007202,-0.58546287,0.06932199,-0.5148592,0.08963892,-0.13569969,-0.25232804,0.1359631,-0.009434,0.31311178,-0.4183327,-0.36478102,-0.30590975,0.5168811,0.15037334,0.072905436,0.6856164,-0.14182597,-0.035481352,-0.036642298,0.5160688,1.0947224,-0.52011096,-0.06886022,0.44745174,-0.28690773,-0.50426304,0.23306942,-0.44874564,0.20113553,-0.04486981,-0.16177511,-0.41997212,0.32429016,0.20688239,0.027892802,0.035041645,-0.51036906,-0.042355932,0.46804035,-0.33647072,-0.27512032,-0.3609946,0.37535825,0.5781735,-0.25162965,-0.49557054,-0.028485958,0.3214203,-0.30034703,-0.6470588,-0.020175144,-0.25176698,0.3275437,0.19929886,-0.21347591,-0.073170915,0.04401159,-0.44723475,-0.04791934,0.24606374,-0.30326337,0.21072364,-0.24860041,0.0023859143,0.8301906,-0.11329587,0.21204558,-0.7871852,-0.55752325,-0.88777906,-0.42339337,0.5591908,0.28199142,0.023966433,-0.5786773,0.0070029683,-0.16542114,-0.14376229,-0.022198267,-0.21770072,0.46008196,0.16349204,0.507769,-0.11963627,-0.8483323,0.03123407,-0.038103916,-0.2066577,-0.50425935,0.43277818,0.10234642,0.84089005,0.1063672,0.10128541,0.37798598,-0.5043859,0.044355728,-0.4265206,-0.15375946,-0.8455329,0.13134426,804 -101,0.6410558,0.01479511,-0.38276285,-0.29914925,-0.25740653,0.11903036,-0.17073373,0.22601658,0.14499772,-0.6220098,-0.12812112,-0.2522732,0.021564547,0.21688008,-0.21437104,-0.7557901,0.06766296,-0.022648904,-0.6440797,0.42873374,-0.494946,0.21610555,0.17615561,0.29346812,0.069421664,0.22234455,0.3575115,-0.3035791,-0.095320046,-0.2617588,-0.0075181536,-0.059492454,-0.842407,0.095373414,-0.106109805,-0.19979583,0.07122405,-0.47844034,-0.5175148,-0.68287873,0.28432596,-0.90598637,0.5615456,0.15775417,-0.17025301,0.2664749,-0.008156322,0.20524655,-0.17996131,0.23607162,0.16973814,-0.23397559,-0.07308179,-0.063230395,-0.2070785,-0.5539893,-0.6907726,-0.05260491,-0.45738596,-0.21911533,-0.29433933,0.003184985,-0.35568088,-0.10392513,-0.192787,0.567395,-0.34241122,0.03635758,0.08435478,-0.02724195,0.3575095,-0.552431,-0.18497667,-0.053232975,0.21122648,-0.13298866,-0.13920662,0.27747607,0.38906616,0.5693339,0.10269447,-0.29040033,-0.1415402,-0.088529184,0.2910303,0.42348778,-0.12484918,-0.44730735,-0.10609022,-0.02471285,0.1789619,0.27485722,0.028809808,-0.46084318,-0.0703851,0.075608544,-0.2663939,0.47712687,0.7137265,-0.36060354,-0.2544296,0.3412937,0.31275457,0.091515526,-0.022806,0.15040456,0.0013671331,-0.6189822,-0.20936286,0.34022993,-0.26250264,0.6341669,-0.21765897,0.1663519,0.64532346,-0.20599452,0.06106712,-0.021039572,-0.06349635,-0.0032036705,-0.14516604,-0.19838719,0.26208127,-0.59454274,0.102212586,-0.44860622,0.77785903,0.27370316,-0.8475226,0.24658656,-0.6006532,0.069219396,0.051801585,0.58886075,0.69789904,0.3276429,0.08548593,0.6201507,-0.5637162,0.07106763,0.030711703,-0.46945179,0.13116552,-0.095865905,0.10732864,-0.46026865,-0.20571646,-0.012877867,0.061044186,-0.098879166,0.32850134,-0.31322694,-0.09796343,0.11160734,0.8106191,-0.23496994,0.15296587,0.6262953,1.1300862,1.028536,0.24415483,1.402042,0.2878477,-0.12646426,0.11024065,-0.0950704,-0.8425051,0.29607195,0.39012444,-0.032459036,0.26005167,-0.027018355,-0.0678636,0.1536358,-0.4946093,0.10223453,-0.2120376,0.41913155,0.042642776,-0.19811586,-0.3077212,-0.17433031,0.031632893,-0.08994235,0.14557493,0.18508068,-0.12349369,0.33016294,0.28518045,1.0767388,-0.0883241,0.18938811,0.16460416,0.4344457,0.20450178,0.009776223,0.054040015,0.19426273,0.5451424,0.06642699,-0.5479399,-0.032135777,-0.29688382,-0.4097649,-0.28468424,-0.26953703,0.06555042,-0.042455915,-0.3601846,-0.18062854,-0.07469775,-0.34612566,0.50911987,-2.7216096,-0.15690061,-0.29776192,0.2729302,-0.31298214,-0.29441547,-0.073822245,-0.6275199,0.63365626,0.34631333,0.3394125,-0.67290735,0.3934813,0.50693256,-0.33376712,-0.055937473,-0.7463411,-0.1425304,-0.06498279,0.38667965,-0.012666468,-0.1515818,-0.10658551,0.3468275,0.46906918,0.035869114,0.10653153,0.16511384,0.35682032,0.17777239,0.4731648,-0.0016056821,0.54806125,-0.1831255,-0.09050986,0.35022038,-0.17341101,0.058769587,-0.15792131,0.16892672,0.4151767,-0.38447195,-0.58630073,-0.5821482,-0.45616025,1.1365172,-0.28527397,-0.40420568,0.28394833,0.13807082,-0.1610889,-0.08949312,0.32221115,-0.080776416,0.18550354,-0.7199113,-0.03964422,-0.030788004,0.21294099,-0.05665438,0.12916222,-0.45115593,0.6912575,-0.11089812,0.29370385,0.40358153,0.31161493,-0.2078757,-0.5868252,0.10422224,0.98208773,0.3757825,0.18846118,-0.26078582,-0.16774945,-0.192924,-0.19255649,0.051479403,0.44918865,0.9313377,-0.16215095,0.09427115,0.27284172,-0.01571193,0.12920739,-0.107289106,-0.3063416,-0.10974108,-0.1432035,0.49842995,0.4917228,-0.20384504,0.40140128,-0.22956605,0.27574492,-0.22532049,-0.34255123,0.67479575,1.0011718,-0.16674504,-0.278892,0.56451523,0.3540523,-0.24980888,0.5016815,-0.5190961,-0.3186953,0.6180194,-0.07480971,-0.49318618,0.19722134,-0.40693724,0.1867978,-0.8534267,0.5009079,-0.3421197,-0.28868487,-0.54250354,-0.20776433,-3.751399,0.12910926,-0.38060987,-0.14816396,-0.14466666,-0.07847275,0.3883054,-0.54662025,-0.4961534,0.17887045,-0.04509683,0.7379495,-0.04268143,0.23656294,-0.2572221,-0.051192723,-0.52330434,0.16666178,0.190108,0.14959513,0.041318275,-0.2590994,0.08310814,-0.1725124,-0.4310078,0.13138676,-0.46390313,-0.4994537,-0.14408547,-0.32842752,-0.49435994,0.65099496,-0.23051167,-0.06829095,-0.2931747,-0.062816896,-0.2588527,0.3979922,0.15853721,0.22562066,-0.07811335,-0.007891214,-0.10852073,-0.32546717,0.33692595,0.08443734,0.26679483,0.34428513,-0.21701872,0.07675529,0.33172208,0.5546627,-0.0038057119,0.73159444,0.25843626,-0.03519654,0.31215277,-0.27556244,-0.29418653,-0.58400536,-0.40066886,-0.13199255,-0.33038574,-0.5085949,-0.142378,-0.32691675,-0.65189403,0.31490153,-0.058936022,0.2197124,-0.118655294,0.07933089,0.33030576,-0.12954523,-0.06100022,0.013114202,-0.1848064,-0.3870284,-0.32719386,-0.760196,-0.4036995,0.01170741,0.74527174,0.059411865,-0.17657855,0.020547211,-0.24713428,0.15695068,0.028159713,0.023053342,0.1569039,0.43315235,0.054487795,-0.79757476,0.59184337,-0.07594992,-0.1400566,-0.73750806,-0.026971415,0.7477247,-0.6178227,0.6073685,0.31749383,0.09855239,-0.19888002,-0.57051766,-0.35812807,0.09126088,-0.2784846,0.47746345,0.046431907,-0.76887214,0.53897774,0.27037197,-0.2320674,-0.6971418,0.5994455,0.11975581,-0.20920636,0.15654112,0.39000225,-0.107189596,0.012410323,0.029899552,0.3834811,-0.42171633,0.38114795,0.38963693,-0.00016929954,0.37837696,-0.10342793,-0.14588821,-0.6345109,-0.17800348,-0.4339612,-0.25118262,0.08470996,0.05319208,0.059502542,0.12741193,-0.05493031,0.39756402,-0.20244396,0.29180002,0.12810919,-0.26224965,0.32406262,0.44367176,0.37775773,-0.26101044,0.63559365,0.039874643,-0.043662503,-0.14394896,0.15676115,0.39894828,0.22930263,0.24809039,0.058521196,-0.14964479,0.3340271,0.7139487,0.18784937,0.4592327,0.41406864,-0.01677576,0.5226687,0.06160474,0.13142598,0.073492445,-0.5794014,-0.211368,-0.08753937,0.15024634,0.3641406,0.082064524,0.33722496,-0.1474477,-0.069290236,-0.038716674,0.16215958,-0.008777708,-1.550822,0.13990408,0.18151224,0.69833934,0.5817855,-0.08555159,-0.0053480044,0.46104863,-0.16751328,0.06934833,0.35526907,0.1337007,-0.43106806,0.5864666,-0.62068903,0.3024727,-0.143943,-0.075644314,-0.14316107,0.12666154,0.2192365,0.8533484,-0.15384376,0.11140515,-0.14394183,-0.20148173,0.34729773,-0.37535864,0.2065166,-0.2998526,-0.2700349,0.62858295,0.43001992,0.2210716,-0.25426638,-0.0128824,0.059154287,-0.16369484,0.15966426,0.09145677,-0.100612365,-0.0789162,-0.6492003,-0.32794252,0.45350093,0.089067355,0.08958479,0.10661931,-0.12960193,0.061365437,-0.19547234,-0.016176939,-0.061870046,-0.8603263,-0.22180477,-0.21952473,-0.38514596,0.33254904,-0.3574554,0.23856184,0.22390978,0.062327057,-0.25409353,0.011823349,0.27665576,0.57659197,-0.04926666,-0.185037,-0.4007435,-0.08899169,0.17313373,-0.21528442,0.08506336,-0.2629319,0.0012491755,-0.53059065,0.36473313,-0.1628165,-0.14914401,0.18915975,-0.24232918,-0.009580206,0.5565323,-0.24166366,-0.09817971,0.14456718,-0.0069017187,-0.18909982,-0.08532357,-0.06460081,0.2669169,0.19181651,-0.03442438,-0.006596897,-0.05848021,-0.149815,0.26024055,0.22672662,0.4358065,0.44356632,0.08397298,-0.40329713,-0.28692377,0.07094163,0.5065097,0.15471181,-0.17938061,-0.2647096,-0.5235907,-0.114507906,0.20499587,-0.12916014,0.15258178,-0.06499996,-0.38264245,0.6968237,0.07256731,0.98322153,0.17180385,-0.3690208,-0.10688148,0.4294814,-0.020978846,-0.12795392,-0.41870177,0.9666958,0.552662,-0.096064836,-0.14339511,-0.36872327,-0.021140397,0.1510193,-0.20630375,-0.21202499,-0.012595445,-0.57740635,-0.17192027,0.18210112,0.22459027,0.03958516,-0.03779934,-0.0918823,0.3141253,0.1290726,0.60072845,-0.55821705,0.014330182,0.24145733,0.09393957,0.17191005,0.32721192,-0.27955258,0.26648998,-0.45099932,0.067316584,-0.16925064,0.071953855,0.04631702,-0.20015725,0.17379245,0.012083158,0.48424184,-0.31380102,-0.43347508,-0.05310159,0.4436187,0.12748384,0.3058097,0.72715974,-0.13933498,0.20272574,-0.0359564,0.5249131,1.2789971,-0.100094385,0.15133277,0.32034656,-0.40634868,-0.6463748,0.37425488,-0.41354114,0.2745818,-0.13921902,-0.34461394,-0.30899647,0.23933353,0.009532239,0.06272744,0.21711664,-0.55024344,-0.47506708,0.5587206,-0.3004153,-0.31710067,-0.30498517,0.15641728,0.6379595,-0.32518318,-0.04937117,-0.07489544,0.24753165,-0.2548018,-0.5789886,-0.072523035,-0.26987746,0.27310127,0.12449508,-0.18934402,0.10765512,0.10343076,-0.43382117,0.1987718,0.1081465,-0.3645276,-0.06848828,-0.20278142,-0.12248264,0.7665962,-0.19363004,0.019618027,-0.65606946,-0.5484861,-0.8935076,-0.4364741,0.36300042,0.07577236,0.035772342,-0.41718867,-0.10210203,0.019426934,0.2711384,0.07938208,-0.48704326,0.42909247,0.09696446,0.5237675,0.05240188,-0.67259073,-0.004967615,0.069482595,-0.14135322,-0.5498646,0.7081603,-0.033722185,0.64547426,0.078998595,0.07901579,-0.023895219,-0.5591863,0.1676472,-0.2696729,-0.21373081,-0.72674197,0.1968888,810 -102,0.42539883,-0.11868656,-0.33777207,-0.13093115,-0.33237296,0.2133002,-0.22732715,0.28106812,0.20873587,-0.25322336,-0.15703505,-0.06075434,0.04580999,0.36378193,-0.037437405,-0.6428803,-0.073393166,0.05523497,-0.8261413,0.3464579,-0.64921385,0.37679517,0.11698264,0.32460123,0.059560984,0.51744634,0.34125966,-0.19661152,-0.12645163,0.0015392564,-0.11349207,0.14161713,-0.5729518,0.10169597,-0.17086402,-0.26134723,0.13187891,-0.44475746,-0.16370364,-0.60443485,0.08546472,-0.81705534,0.4168187,-0.10160632,-0.05581535,0.054275025,0.011228561,0.31640065,-0.44592392,0.21917054,0.1470488,-0.19422975,-0.06662584,-0.3215388,-0.0847156,-0.34182662,-0.36370856,0.060730595,-0.5449153,-0.39625132,-0.13847108,0.16297999,-0.34554833,0.07628311,-0.10554904,0.09938111,-0.42546132,0.027371211,0.2734536,-0.29894155,-0.0022700205,-0.42253125,0.17174992,-0.076741606,0.5422605,-0.12846455,-0.16584304,0.33852524,0.31356114,0.49399814,0.24902219,-0.22469741,-0.036998373,-0.22342071,0.17460617,0.50929934,-0.17772454,-0.18736608,-0.26884663,-0.022085499,0.19021899,0.26692396,-0.0023478698,-0.25920594,-0.08263756,-0.109940775,-0.1553813,0.25435245,0.46630186,-0.40338433,-0.3479849,0.376166,0.58231354,0.12902199,-0.12043083,0.06599213,0.032041647,-0.50522804,-0.144974,0.12872165,0.025649415,0.42354065,-0.1388539,0.17331053,0.85417444,-0.21261248,0.07810931,-0.2006955,-0.117432974,-0.10120295,-0.25062978,-0.08400174,0.13698983,-0.4055211,-0.0567931,-0.18630075,0.699516,0.3185149,-0.67575574,0.46222192,-0.48668814,0.11806388,-0.106298886,0.69566923,0.6584005,0.3144536,0.20363209,0.8253819,-0.35982636,0.3483674,-0.19601087,-0.39504445,0.034778535,-0.20061536,0.012609009,-0.44107175,0.28542444,-0.106152885,0.10751754,0.15371594,0.22856861,-0.5624112,-0.04466591,0.20692481,0.68710667,-0.3608317,-0.093755394,0.69149435,0.95540094,0.7260324,-0.076661915,1.2027583,0.51577604,-0.27075154,0.1047689,-0.3157501,-0.63729215,0.1679855,0.38124102,0.23264563,0.27081826,0.030991279,-0.10915092,0.19422741,-0.30653808,0.0013903305,-0.094571516,0.2510988,0.03273807,0.0852866,-0.38842303,-0.11945513,0.004222829,-0.1747113,0.13926849,0.25230187,-0.16393338,0.36980987,0.016499497,1.5565495,-0.07825282,0.049693078,0.12274867,0.5087435,0.30415362,-0.15925707,-0.14688721,0.47586152,0.36368316,-0.16258352,-0.6131965,0.19429442,-0.29113302,-0.59617627,-0.042983714,-0.36081785,-0.07671534,0.013556272,-0.33086216,-0.1616683,0.037213914,-0.23704648,0.5088314,-2.8507075,-0.26914302,-0.050838556,0.3158658,-0.4181286,-0.23031348,-0.26781872,-0.4268815,0.16802588,0.27865964,0.4303275,-0.5849792,0.4250155,0.3379152,-0.37672725,-0.22037151,-0.6132187,0.025591984,-0.014675738,0.44690633,-0.04579316,-0.14560492,-0.24095832,0.026846558,0.63118064,-0.027055766,0.13858804,0.3789987,0.3811931,0.3159352,0.4723735,0.053315908,0.6244072,-0.36894834,-0.27843446,0.45615438,-0.22618645,0.321602,-0.11211361,0.18467247,0.38455293,-0.41852242,-0.82325953,-0.60963273,-0.38513887,1.0602635,-0.4266636,-0.37210965,0.15225756,0.116534635,-0.042403296,0.14229594,0.4073022,-0.16315949,-0.0053817155,-0.6511532,0.17660698,0.061119784,0.2561745,0.06851205,0.019947097,-0.23331589,0.561604,-0.21255246,0.6103228,0.18168384,0.1526204,0.065768585,-0.2631477,0.11338255,0.9453566,0.24512182,-0.039871093,-0.096363544,-0.3142675,-0.09026012,-0.2562681,-0.016898744,0.4162519,0.793456,0.09368798,0.04923463,0.26324445,-0.06027136,-0.013162419,-0.11345107,-0.17126358,0.005925037,0.029282998,0.4941638,0.51359797,-0.1030321,0.4241857,-0.18265226,0.36685586,-0.0803185,-0.45780933,0.5823362,0.42728642,-0.2162975,-0.041170754,0.37063336,0.36757857,-0.45875224,0.45134538,-0.6737037,-0.27707046,0.64773875,-0.15992686,-0.3452431,0.24760923,-0.112250455,0.15744835,-0.81955564,0.2683919,-0.18079741,-0.23447302,-0.36094087,-0.1840653,-3.305131,0.087217584,-0.076384075,-0.12680964,-0.16272025,0.0049770083,0.23571923,-0.5861998,-0.41096628,0.12661257,0.122571915,0.5017207,0.025306301,0.1495772,-0.34889308,-0.19770879,-0.12115578,0.13218065,0.053001486,0.27256218,-0.11749895,-0.36737338,-0.053602625,-0.1384836,-0.47768563,0.1745366,-0.65049076,-0.4219525,-0.0989358,-0.45153475,-0.16739517,0.6373312,-0.44380984,0.010480832,-0.2222836,0.07550449,-0.4036387,0.116503365,0.22857271,0.20128761,0.18405622,-0.04769756,-0.008077584,-0.41377458,0.4948206,0.05838971,0.38157165,0.20624113,-0.011882234,-0.033763345,0.3705169,0.47423756,-0.13710877,0.8551024,0.20991698,-0.102311805,0.23967102,-0.3004473,-0.16899616,-0.536245,-0.43780503,-0.14130099,-0.36868855,-0.5811453,0.028654855,-0.3581097,-0.8108634,0.5317662,0.061882198,0.26140553,-0.0637408,0.36924154,0.47159258,-0.21901149,0.03192593,-0.04657487,-0.09073763,-0.5075275,-0.34222808,-0.6166827,-0.52727246,0.20929277,0.90039384,-0.30053276,-0.06322916,-0.19586743,-0.19602758,-0.07216987,-0.05582376,0.11516777,0.35419115,0.53516865,-0.07620561,-0.5639105,0.4597179,-0.13455114,-0.20740694,-0.4970423,0.017412243,0.5724218,-0.7686093,0.52060217,0.2731513,0.14633928,0.27716333,-0.43566227,-0.19293033,-0.016040307,-0.18470494,0.3804263,0.035445746,-0.7515699,0.5861634,0.23215306,-0.35621116,-0.6570254,0.2591286,0.10677542,-0.29236937,0.110938266,0.29605526,0.08380024,-0.2316238,-0.25077647,0.16126831,-0.510278,0.23990755,0.22826841,-0.029925363,0.3581638,-0.11425988,-0.49370754,-0.6125909,-0.073806055,-0.4740929,-0.2715494,0.30124632,-0.05739933,0.07023006,0.092785135,0.07596971,0.4396779,-0.37146658,0.08754934,0.03870228,-0.24280897,0.16135159,0.3141566,0.25171974,-0.3878485,0.4296425,0.08823821,-0.090515524,0.22976921,-0.07881284,0.47500902,0.052458636,0.2049959,-0.20008942,-0.20353158,0.3492087,0.77932966,0.21686059,0.3290612,0.0011768341,-0.2047055,0.5516677,0.065363966,0.093292385,0.08047208,-0.34558576,-0.030224964,0.18005179,0.12327503,0.4322285,0.43301424,0.41353935,0.047177896,-0.1714503,0.07265602,0.10184809,-0.059203625,-0.70043933,0.16245154,0.13641824,0.6988267,0.34008655,0.067824036,-0.11449071,0.516457,-0.3006673,0.17810163,0.28183177,-0.19811659,-0.50158983,0.607585,-0.44869223,0.3799998,-0.14078648,-0.09785128,0.2613753,0.13034101,0.3318767,0.80649143,-0.15319628,0.02270146,-0.01967405,-0.1026438,-0.008366564,-0.22895245,-0.027230866,-0.3267364,-0.2728842,0.6742587,0.33957246,0.2554667,-0.21696962,-0.038154293,0.0268125,-0.12220001,0.116820365,-0.035435814,0.12706527,0.22300671,-0.4105134,-0.37321466,0.6192251,0.055006247,0.06691663,-0.090215564,-0.35589808,0.15749323,-0.24238636,-0.04273086,-0.10084943,-0.5088185,0.0911667,-0.21697968,-0.5043533,0.20976372,-0.009010479,0.14485373,0.15983579,-0.013311885,-0.19458197,0.3096893,0.10365349,0.95593256,0.040368445,-0.4035102,-0.3952001,0.08296221,0.33388558,-0.2962911,0.043693896,-0.412669,0.032431744,-0.61670494,0.55375874,-0.17243989,-0.3237045,0.26800942,-0.20963609,-0.11296271,0.4971839,-0.058722727,-0.04569775,0.059452347,-0.11215425,-0.46228257,0.10950923,-0.40112358,0.14309707,0.2598241,-0.06798719,-0.10262041,-0.18266343,-0.13568321,0.48821387,0.13762504,0.36319232,0.21369042,-0.04971265,-0.14349222,0.08797096,0.20595704,0.36123163,0.0558733,0.0064061657,-0.19433185,-0.45730013,-0.24046767,0.28144646,-0.15530476,0.2527451,0.10391773,-0.31765378,0.76664627,0.030692901,1.0230694,0.06949716,-0.276769,0.07344928,0.51396084,-0.025314342,0.06804544,-0.43577874,0.85516685,0.5774386,-0.018704973,-0.04366698,-0.29398522,-0.2307772,0.2814028,-0.36907881,-0.04972417,-0.07472975,-0.5808923,-0.5348854,0.31217763,0.041677624,0.2094175,0.057813335,0.010371489,-0.008650815,0.13001417,0.33682483,-0.6238061,-0.3833077,0.22164342,0.23164237,-0.044845093,0.18907398,-0.38087258,0.48300183,-0.71333784,0.10452164,-0.45823675,0.07757168,-0.072883576,-0.2399593,0.10095192,-0.030181006,0.37948394,-0.35173273,-0.5246853,-0.04232402,0.32992804,0.07987078,0.26360795,0.6210622,-0.27419752,0.05534777,0.11649259,0.53466254,1.090034,-0.32189092,0.15071966,0.39940625,-0.25356615,-0.5112688,0.26792413,-0.33317578,-0.0007567033,-0.1979152,-0.36616763,-0.35544083,0.3950214,0.17838016,-0.021225099,0.08351693,-0.5594808,0.010440424,0.33276552,-0.2279147,-0.30610126,-0.25244212,0.38590258,0.9563575,-0.3160799,-0.2706975,0.15507933,0.26886106,-0.43650997,-0.55316687,-0.072950795,-0.24687853,0.30496785,0.13983937,-0.17962569,0.03109717,0.1136675,-0.3822685,0.1027253,0.2636761,-0.35590565,0.06136597,-0.12582096,0.0786904,0.82030857,-0.10096664,0.0025468543,-0.6919892,-0.42543307,-0.9102224,-0.62110764,0.39591384,0.14355947,0.06427489,-0.24987683,0.08243938,-0.12572153,-0.2984651,0.14933282,-0.5631642,0.3710916,0.119253404,0.45116282,-0.29029253,-0.8719558,0.11797008,0.11193742,-0.24991074,-0.61173546,0.46947414,-0.12822779,0.90437174,0.045978814,-0.2010035,0.09139241,-0.4996184,0.10508945,-0.49704075,-0.0033506379,-0.809886,0.1820975,818 -103,0.6541018,-0.21968713,-0.5107881,-0.15398355,-0.2663571,0.24696185,-0.20778185,0.60876465,0.1475476,-0.5604508,-0.05432493,-0.12490168,0.015094146,0.27080673,-0.10271591,-0.41598257,0.11863413,0.1943863,-0.7231202,0.5739327,-0.52970093,0.2521486,0.005938273,0.44361097,0.16779228,0.29577574,-0.007546097,-0.11418471,-0.24832267,-0.20236337,0.052831694,0.32778752,-0.5518873,0.13547999,-0.2765451,-0.2531402,-0.06871591,-0.54149455,-0.2678809,-0.7262068,0.1286824,-0.85047126,0.4796096,-0.06198481,-0.32705778,0.3322934,0.08708027,0.22136872,-0.2531677,0.08762482,0.13853638,-0.11744621,-0.13544811,-0.23506263,-0.18074581,-0.36712658,-0.5876632,0.10331866,-0.39939058,-0.07285651,-0.16665816,0.12502886,-0.18886876,0.022416428,-0.039207336,0.4135444,-0.32682657,0.13958365,0.06321473,-0.05753613,0.087039776,-0.5530472,-0.099669725,-0.14897391,0.3591038,-0.22729234,-0.19748148,0.18648142,0.24936458,0.53481233,0.009242337,-0.09768118,-0.24099624,0.015435703,-0.010125563,0.5279285,-0.13137534,-0.40367514,-0.112235725,0.009420721,0.32361495,0.050632525,0.25030926,-0.1826496,-0.20536579,-0.22733395,-0.22897457,0.33963636,0.4723028,-0.3513404,-0.23576745,0.36869097,0.51908696,0.14738436,-0.24724287,-0.011152549,-0.111941375,-0.5450516,-0.10436094,0.12393278,-0.14903863,0.46617815,-0.17458007,0.14744253,0.5369996,-0.16874416,-0.08260846,0.20378646,0.07630622,0.11011581,-0.11735602,-0.23196733,0.15907985,-0.31175733,-0.020813938,-0.25495636,0.5792715,0.20060924,-0.7428951,0.29734287,-0.44859946,-0.06768134,-0.028035454,0.4708507,0.69692564,0.57000685,0.15488361,0.49902308,-0.2539453,0.14648604,-0.19895165,-0.2742371,0.13247424,-0.21496233,-0.09285267,-0.43408072,0.14934108,-0.109244704,-0.21084778,0.07312644,0.46064785,-0.44318694,-0.16454706,0.20533457,0.82101154,-0.28932852,-0.21761657,0.87099135,0.88678646,0.8699677,0.035117116,1.0487971,0.22470373,-0.12234917,0.16598049,-0.27364573,-0.60629475,0.34705472,0.3431216,-0.027302235,0.27552956,0.07936905,-0.12707072,0.26952186,-0.2593834,-0.04346863,-0.17465125,0.08925878,0.06013915,-0.030194461,-0.2986235,-0.30778205,-0.023622958,-0.009594407,0.16375159,0.20691153,-0.28901345,0.43135625,0.0057770107,1.7552388,0.033306282,0.04109387,0.052071206,0.50187004,0.18228774,-0.23520342,-0.13787144,0.39745784,0.2765667,0.072479,-0.3862611,0.072748005,-0.10062008,-0.43315935,-0.09177329,-0.45351613,-0.11573864,-0.0986177,-0.58691233,-0.1367512,-0.07139419,-0.21588212,0.4064551,-2.681942,-0.19143073,0.040981114,0.34841403,-0.33449495,-0.41430467,-0.25622272,-0.47218698,0.24148649,0.2759674,0.49361783,-0.6277401,0.5368138,0.19308172,-0.5442016,-0.2132847,-0.51211256,-0.1150403,-0.018341742,0.36357766,-0.09741457,0.03534059,0.12144899,0.08165072,0.57720673,-0.102624625,0.099476464,0.286786,0.41489425,0.19993375,0.42413172,-0.12675792,0.5277511,-0.30685365,-0.26172927,0.37496686,-0.43691733,0.22199154,-0.0068517476,0.19246562,0.38151842,-0.523551,-0.89052814,-0.7154664,-0.015072003,1.2517762,-0.15694737,-0.2707518,0.05609677,-0.28238547,-0.3154015,0.029710837,0.45277065,-0.07836126,-0.09875543,-0.7577566,-0.10292578,-0.02411431,0.33139402,-0.012524655,-0.01815151,-0.4170949,0.42720017,0.013491403,0.49512362,0.13062492,0.18398611,-0.15717584,-0.45244795,0.061465364,0.97429585,0.27241856,0.19399731,-0.2807381,-0.28264117,-0.36775634,0.14853281,0.01441347,0.56407905,0.517573,0.044188224,0.13945358,0.19835737,-0.032317556,0.108062245,-0.14292406,-0.22175775,-0.2525317,0.11898869,0.4753037,0.4861041,-0.10265741,0.5313288,-0.17146474,0.35912022,-0.07834373,-0.40983397,0.3876515,0.91601354,-0.22518066,-0.18737204,0.5098989,0.4687329,-0.20771956,0.49063605,-0.53533727,-0.46204185,0.31553692,-0.18086961,-0.20852065,0.39716265,-0.22470772,0.22831583,-0.8853565,0.3068524,-0.32875076,-0.35112762,-0.49536344,-0.023127437,-2.7339342,0.17235279,0.010259673,-0.29083455,-0.06903369,-0.2004476,0.1393044,-0.53430986,-0.41722378,0.085668705,0.08342473,0.7224754,-0.045084976,0.062435534,-0.2938376,-0.4211092,-0.34662968,0.15101233,0.1873096,0.44514686,-0.11424271,-0.4482909,-0.062159754,-0.27563205,-0.21563108,0.046499602,-0.6918578,-0.51271904,-0.15400332,-0.44410223,-0.19886903,0.60638535,-0.29012656,0.07316408,-0.11712061,-0.007935593,-0.043132517,0.17193045,0.047146082,0.13696194,0.18661666,-0.13802482,0.065770194,-0.2582008,0.250432,0.18710022,0.17546317,0.46061543,-0.102234185,0.18982922,0.5682908,0.61220455,-0.23778419,0.78363395,0.40477464,-0.03531269,0.34081918,-0.2755904,-0.28144422,-0.453652,-0.14730169,-0.078422636,-0.41694084,-0.32664305,-0.019565128,-0.3498039,-0.8335277,0.5294834,-0.113375805,-0.019070387,-0.08292483,0.4008155,0.5962893,-0.23290345,0.0019191131,-0.13966708,-0.11368188,-0.48479906,-0.39260507,-0.5108473,-0.4080039,-0.07571017,1.1257038,-0.2311548,0.08997683,-0.006199777,-0.036372315,0.0069699567,0.087493435,-0.04060833,0.058292355,0.498991,-0.19405335,-0.62744457,0.40101314,-0.29325232,-0.16498384,-0.36604437,0.3361779,0.51101184,-0.6290765,0.52368456,0.35145998,0.08667436,-0.21531266,-0.5357698,-0.18545017,-0.00044609606,-0.12290272,0.3623834,0.16667077,-0.8329589,0.44533658,0.21579303,-0.26338658,-0.69748926,0.52076,0.02594095,-0.36567372,-0.027071308,0.32321554,0.12852949,0.016936505,-0.40034923,0.14687505,-0.5183642,0.25739378,0.24373618,-0.016983032,0.1790188,-0.26716134,-0.1408388,-0.6689546,-0.024672993,-0.42066792,-0.39669633,0.25390187,0.073173195,0.14920075,0.17034051,0.05049386,0.31547713,-0.39434037,0.06450375,-0.06819604,-0.20099412,0.27887475,0.37770498,0.5266674,-0.41192916,0.48797947,0.07590019,-0.14797552,0.06528226,0.12491106,0.44713888,0.06787443,0.21576245,0.043205455,-0.14462036,0.18618527,0.6879628,0.2528902,0.43065116,0.00023195893,-0.28170335,0.24828902,0.05497385,0.20796475,0.007923812,-0.4657665,-0.0540161,-0.2136661,0.114467375,0.4684744,0.12654968,0.36328903,-0.08172445,-0.30536336,0.02866603,0.15995795,0.026850354,-1.1507199,0.20682195,0.12287993,0.8028129,0.302063,0.06098792,0.0006108731,0.7355128,-0.2581183,0.16643614,0.33110029,-0.15489513,-0.5393885,0.506535,-0.58785075,0.38463128,0.023495857,-0.027957736,0.08673536,-0.16590394,0.5032429,0.78369164,-0.13660723,0.16823706,0.13907045,-0.34118682,0.055755537,-0.46772313,0.0038892347,-0.56872654,-0.13666698,0.6381011,0.35573348,0.38170928,-0.17770961,0.070002206,0.033878252,-0.1383288,0.067455344,0.19975172,0.1928524,0.05271142,-0.5445639,-0.1368584,0.57484907,-0.055852182,0.092160046,0.12606476,-0.22865367,0.27069208,-0.0552955,-0.028057784,-0.14410748,-0.6014015,-0.13884741,-0.4173411,-0.27702048,0.34771448,-0.1029896,0.1713317,0.24905324,0.036563326,-0.309437,0.46989796,0.22304979,0.7508426,-0.018675782,-0.28000546,-0.41972232,0.25591803,0.2135003,-0.23533112,-0.12401558,-0.31779677,0.108121954,-0.5847166,0.37768477,-0.07013999,-0.24768107,-0.014885947,0.034656577,0.10998137,0.4199006,-0.018989526,-0.020491377,0.025137432,-0.034519155,-0.39625305,-0.06258191,-0.09053819,0.20628372,0.43098807,-0.25175607,-0.12918848,0.030804954,0.046702523,0.44761103,0.0147769675,0.42385116,0.33126053,0.08639587,-0.24719478,-0.004369594,0.27356225,0.4674477,-0.016508602,-0.13380858,-0.37300053,-0.31260163,-0.29189593,0.20812374,-0.10192607,0.26911142,0.19945739,-0.14720066,0.78065187,0.0057423897,1.0319219,-0.04887678,-0.3042451,0.17132244,0.4439131,-0.015214473,-0.011114296,-0.37531,0.96962965,0.44885197,0.056217343,-0.02157192,-0.3209491,-0.1538907,0.045957923,-0.2452062,-0.23458743,-0.094980754,-0.56650573,-0.35056105,0.2532425,0.22164175,0.27478603,-0.15689626,0.21055071,0.20302054,0.035399705,0.070166565,-0.48858958,-0.24357921,0.20664778,0.36981156,-0.034245986,0.05174354,-0.47885486,0.34966695,-0.5777326,0.0054173674,-0.16445932,0.15541896,-0.05139462,-0.41362908,0.19789419,0.09165498,0.3506148,-0.43944055,-0.43258002,-0.3286823,0.45891985,0.04898594,0.15634696,0.49177018,-0.23822775,0.08141133,0.09286061,0.47968757,0.90276873,-0.1601554,0.021339782,0.4045539,-0.31508633,-0.6502138,0.22375916,-0.29258275,0.3929177,-0.1257654,-0.11131695,-0.57425034,0.38434502,0.17701936,0.11193045,0.0003447011,-0.4623374,-0.07076221,0.44243187,-0.22217661,-0.26047498,-0.32708588,0.18731606,0.5591531,-0.23543756,-0.3050786,0.1581645,0.3036921,-0.31286794,-0.5223404,-0.24604023,-0.4239165,0.18518683,0.022523453,-0.24114615,-0.18457063,-0.08894286,-0.39071593,0.24037172,0.28627974,-0.3173495,0.081878275,-0.43194765,0.018592887,0.8806103,-0.14752847,0.1071725,-0.47471887,-0.46952504,-0.8070438,-0.4431574,0.3895465,0.15615892,-0.041397307,-0.6599279,0.016559623,-0.21563879,-0.42735565,-0.018264377,-0.40845746,0.46232796,0.10090193,0.16639888,-0.15292753,-0.83251226,0.21534817,0.1531495,-0.33795372,-0.5644792,0.364312,-0.009413816,0.988335,0.10930303,0.13417056,0.34611535,-0.48508054,-0.13902542,-0.2660752,0.09334901,-0.5890738,0.07664703,858 -104,0.58812827,-0.12775876,-0.44466925,-0.0774823,-0.3554784,0.27181,-0.23136866,0.23933715,0.32915872,-0.16784894,-0.124166235,-0.14798585,-0.18948634,0.20581464,-0.1606798,-0.54456484,-0.24249229,0.081674114,-0.5731441,0.742947,-0.34088293,0.43806198,-0.030153438,0.2909158,0.46536222,0.2689349,0.028982326,0.018468149,-0.19522637,-0.3142919,-0.16385508,0.22062987,-0.58060825,0.23820774,-0.27278274,-0.27803633,-0.13905989,-0.48750585,-0.40677628,-0.78175646,0.20320252,-0.74843,0.52261895,-0.044281084,-0.20709875,0.14501868,0.23757151,0.2806676,-0.041803055,-0.006389519,0.1596854,-0.27134514,-0.12616874,-0.096215695,-0.36424837,-0.5328293,-0.6432231,-0.02280489,-0.5357187,-0.19807231,-0.34139156,0.21745837,-0.33630192,-0.13272941,-0.030222565,0.6013216,-0.50494564,0.26062262,0.04928175,-0.11913951,0.021296237,-0.634555,-0.15596266,-0.10921042,0.20245662,-0.013013443,-0.13194466,0.2202661,0.25434497,0.40446943,0.12316422,-0.22903442,-0.56162846,-0.015822858,0.2510219,0.4329419,0.015774881,-0.24359174,-0.19657958,-0.12378688,0.25084943,0.2599443,0.18374473,-0.3699869,-0.111326754,-0.071244225,-0.23209864,0.5844508,0.48372787,-0.20370461,-0.2079261,0.3287568,0.4993152,0.34348553,-0.35829717,0.16506763,-0.14249769,-0.31981722,-0.011361621,0.15386868,-0.11831193,0.544976,-0.05434861,0.18871991,0.63681483,-0.069253564,-0.16562714,0.033058915,0.07201585,-0.092812665,-0.08148308,-0.14511248,0.27785942,-0.32562706,0.18983474,-0.10409304,0.6774007,0.089542694,-0.7135254,0.27622014,-0.5592301,0.09214661,0.13135016,0.5815232,0.71638846,0.4702698,0.2985849,0.6440659,-0.22779605,0.11699411,-0.12263481,-0.23789775,-0.109592564,-0.25698853,0.09471743,-0.5399883,-0.01667314,-0.11480665,-0.018238246,0.057077814,0.70844823,-0.4535922,-0.15863274,0.14317155,0.7778896,-0.20589061,-0.18902948,0.90713686,1.0453787,1.1790994,-0.0020965654,1.0234652,0.21948817,-0.20846868,-0.06046358,-0.41500992,-0.56720495,0.2480546,0.13969234,-0.42973885,0.3315871,0.12778413,0.084946595,0.4598759,-0.37313318,0.10454822,-0.052096628,0.11597434,0.24887887,-0.12816791,-0.3538173,-0.22920415,0.12428428,0.13692102,0.13779192,0.21541281,-0.3076273,0.3604995,0.11591561,1.3802695,0.06405687,-0.08071697,0.07889178,0.47050858,0.14829211,-0.21894355,0.004107021,0.27474332,0.39976096,0.01873234,-0.5339502,0.07585354,-0.23616476,-0.43253204,-0.20897317,-0.30704665,-0.26751184,-0.035713755,-0.28123388,-0.28015187,-0.14109083,-0.5573642,0.45956954,-2.6747444,0.042559993,-0.14298683,0.18373623,-0.20794468,-0.30782714,-0.038154654,-0.59120244,0.26497644,0.260865,0.36429274,-0.5821587,0.4145006,0.45544738,-0.6684066,-0.13397576,-0.51985717,-0.021281306,-0.008606303,0.5768263,-0.06116588,-0.018620778,0.030519865,0.13888215,0.56615436,0.09988888,0.19602296,0.38887393,0.43901402,-0.18071738,0.5528281,0.030726755,0.542827,-0.219877,-0.20696324,0.5624935,-0.42835295,0.25322497,-0.28080317,0.08975373,0.43511337,-0.36313856,-0.855569,-0.6059754,-0.3408087,1.2189881,-0.301441,-0.61292106,0.21429887,-0.25149626,-0.19148266,-0.07936469,0.55800825,-0.10605586,0.0029549114,-0.683535,-0.020383198,-0.11935154,0.16257937,-0.099780254,0.029081132,-0.37953657,0.73969716,-0.028530348,0.5370716,0.22122778,0.3659576,-0.38516104,-0.5209319,0.1959804,0.88605577,0.41067198,0.0973403,-0.37313384,-0.12082407,-0.23154718,-0.18950136,0.05605744,0.7194114,0.6291835,-0.1351638,0.14233807,0.23741056,-0.09407012,0.09028731,-0.28329867,-0.24411003,-0.14814644,0.061996378,0.5068819,0.67418957,0.028866611,0.5477464,-0.07587123,0.32397017,-0.076331064,-0.36886474,0.44208765,0.81396693,-0.22263388,-0.39645994,0.5019695,0.54837185,-0.25783932,0.4889415,-0.5574395,-0.39669302,0.5164605,-0.12922353,-0.55505544,0.20778035,-0.3855788,0.04302606,-0.77891415,0.13573027,-0.21722384,-0.59821314,-0.46704423,-0.22478661,-3.063589,0.05045008,-0.15952902,-0.21980323,-0.115745604,-0.16789451,0.10694479,-0.52391344,-0.56175476,0.03913343,0.18026656,0.5867936,-0.06526787,0.07980977,-0.26844263,-0.3992361,-0.32474643,0.30656448,0.06470237,0.5006744,-0.2807629,-0.52776325,-0.08821604,-0.14883305,-0.31358933,-0.19547305,-0.50472915,-0.33525276,-0.06014369,-0.5212026,-0.19781259,0.5606669,-0.5275663,0.05934532,-0.27305692,-0.014809534,-0.0046450347,0.18433142,0.14151429,0.22041453,0.14204428,-0.1635142,0.03357096,-0.24722238,0.377204,0.031957548,0.33961034,0.43449754,-0.023805052,0.29736727,0.37311208,0.5773455,-0.2207575,1.1034956,0.4391381,-0.13447538,0.4024793,-0.21574047,-0.2980214,-0.7035338,-0.15044057,0.08225542,-0.4839698,-0.51649845,-0.12881327,-0.20501801,-0.86071444,0.44289038,0.029148648,0.45719525,-0.12563491,0.121831566,0.5080962,-0.10576803,-0.06036387,-0.09463308,-0.14656915,-0.2786057,-0.50587326,-0.60126114,-0.59984845,-0.025194734,0.96122825,-0.07374351,-0.07780422,0.24314044,-0.38561034,-0.06150953,0.23089716,0.19161287,0.11115428,0.509347,0.04710031,-0.6284565,0.42911625,-0.23898253,0.13030864,-0.5643142,0.12554157,0.48106512,-0.5956098,0.477149,0.17077088,0.1913878,-0.21169373,-0.63864684,-0.14580452,-0.050237108,-0.2282151,0.48882684,0.36845034,-0.68771183,0.42562518,0.1334478,-0.12965868,-0.7161169,0.5153803,-0.12138371,-0.22599036,-0.05950305,0.50791097,0.19264527,-0.0162692,-0.124682605,0.23091327,-0.3236879,0.3015837,0.13098186,-0.15365359,0.23325782,-0.2089715,-0.25479484,-0.79641366,0.14815092,-0.32011816,-0.4365111,0.19195724,0.08076924,0.1587605,0.32407165,0.020939223,0.31411645,-0.16430245,0.13183323,-0.22853903,-0.17538625,0.34282213,0.4692681,0.66146326,-0.4499301,0.54937387,0.11000916,-0.11464988,0.11578793,0.11528007,0.39530274,-0.093713894,0.40695578,0.18727304,-0.2701365,0.21263269,0.76581866,0.31563014,0.5205246,-0.107402876,-0.32711667,0.27553955,0.11991364,0.21752867,-0.14034867,-0.6268362,-0.092992,-0.2970225,0.21922565,0.4795628,0.040731844,0.46567905,-0.1222716,-0.100928806,0.13862345,0.14386205,-0.051870324,-1.2023263,0.19358256,0.23772955,1.0081828,0.4370237,0.065045245,0.008040518,0.5758407,-0.2361058,0.07937819,0.5236043,0.05506747,-0.40560424,0.52574986,-0.74658716,0.5896616,-0.06633451,-0.04174667,0.2144011,4.0266663e-05,0.46432343,0.7443783,-0.2825951,-0.045007214,-0.021165587,-0.41806716,0.06857444,-0.3156833,0.2830441,-0.5407581,-0.26792282,0.7628062,0.6581696,0.31440133,-0.25059244,0.023889484,-0.0035440773,-0.20575511,0.062320184,0.0698785,0.01284273,-0.25502515,-0.6008708,-0.11192246,0.55598515,-0.16958621,-0.071725,0.16370265,-0.19222024,0.19276053,-0.11064319,0.024045322,-0.051142357,-0.6846517,-0.12992665,-0.19004093,-0.45275438,0.45989636,-0.19319203,0.30111557,0.18737604,-0.020317925,-0.3581281,0.42292055,0.23453012,0.69674575,0.038222868,0.046793655,-0.29411912,0.08482614,0.23019521,-0.1857355,-0.20717452,-0.19278774,0.17317818,-0.61775845,0.2998767,-0.27526507,-0.38054383,0.027940858,-0.16394201,-0.04445718,0.6255308,0.088282846,-0.10137054,0.20524141,-0.06667968,-0.2758277,-0.1436696,-0.15348618,0.28764522,0.08061458,-0.2727039,-0.11110856,-0.11029232,0.011189379,0.1609177,-0.11725498,0.38634053,0.31554383,-0.076769084,-0.34266794,0.06990287,0.17540172,0.5184508,-0.018538307,-0.0032030493,-0.16865575,-0.2666138,-0.47841305,0.29769772,-0.100778416,0.34542343,0.09350271,-0.3829837,0.77454746,0.07538439,1.2026343,0.08170263,-0.51012987,0.16082269,0.50595933,0.0023755096,-0.04215586,-0.23518695,0.95601904,0.5195142,-0.03351897,-0.14728962,-0.260037,0.08388785,0.17742468,-0.28187448,-0.1552006,-0.041219007,-0.60164094,-0.030939326,0.16261303,0.1356484,0.03580328,-0.063644916,-0.1167583,0.26201868,0.17089501,0.3619384,-0.4571335,-0.14803278,0.21938702,0.22933596,-0.050607916,0.06860021,-0.44439226,0.38339087,-0.6736665,-0.034407254,-0.23297039,0.24685983,-0.4141497,-0.1589452,0.32841635,0.05630163,0.3707587,-0.3506001,-0.44402704,-0.38224792,0.3838401,0.032391146,0.15487158,0.5406257,-0.30168858,0.08286802,0.017345004,0.42939433,0.95785517,-0.29773915,-0.10926575,0.23999438,-0.51729095,-0.6449422,0.2605083,-0.490132,0.15260762,0.07740872,-0.2552133,-0.32503924,0.3139645,0.12568448,0.05097347,0.07293315,-0.54969704,-0.0046864785,0.18226147,-0.30536214,-0.18927911,-0.18641388,0.11251762,0.6195189,-0.28623503,-0.38593698,-0.031458817,0.35647246,-0.2250824,-0.56624895,0.07458049,-0.18609788,0.36110088,-0.044600785,-0.36586112,-0.17798084,0.081953086,-0.5086868,-0.04798849,0.44137967,-0.29776245,-0.080298826,-0.26036388,0.055347126,0.8397384,-0.22826463,0.27606085,-0.50106335,-0.5184541,-0.8670707,-0.4277777,0.10271616,0.31319016,-0.12071779,-0.5841864,-0.09237002,-0.33461213,-0.06378932,0.09026867,-0.50080216,0.33959448,0.23282677,0.38008288,-0.17142908,-0.8962599,0.044453293,0.17260309,-0.11834764,-0.5428775,0.51393306,-0.087383136,0.71964586,0.09765517,0.12408381,0.18454073,-0.74518335,0.098056614,-0.10924809,-0.10810253,-0.717994,0.1213667,878 -105,0.5107329,-0.13539843,-0.5319476,-0.08501698,-0.124541044,0.2175976,-0.06978446,0.32060173,0.08958614,-0.4724169,-0.16125149,-0.20870382,-0.092332006,0.4248525,-0.11703147,-0.72653055,0.012310764,0.16687301,-0.6518675,0.64627683,-0.39609897,0.4362917,0.03612752,0.21118027,0.037375465,0.29482776,0.15909842,-0.19323787,-0.22056298,-0.08821448,-0.271123,0.061802965,-0.3548799,0.043183148,-0.15129878,-0.26408184,-0.07111021,-0.28788492,-0.5440009,-0.67852527,0.36123365,-0.69928545,0.42324865,-0.14147165,-0.20360795,0.3147033,0.2813695,0.46539456,-0.18247783,0.11003925,0.10680251,0.008272596,-0.107127324,-0.19893508,-0.3372671,-0.708817,-0.5657043,0.13600282,-0.44589004,-0.28439435,-0.21900368,0.11699886,-0.41663525,-0.079610854,-0.12896301,0.38064522,-0.32836515,-0.1238724,0.24929771,-0.068344444,0.17341232,-0.60729545,-0.15729979,-0.19211113,0.25475988,-0.107704826,-0.011317344,0.38258886,0.35404137,0.49731863,0.038005218,-0.12896624,-0.33115268,-0.054489344,0.33359995,0.42063507,-0.1490507,-0.5590548,-0.06496885,0.033636868,0.11226672,-0.043863453,0.13642627,-0.14134906,-0.11861779,0.027542949,-0.292127,0.37900022,0.40584737,-0.375734,-0.40836614,0.42266804,0.50035435,0.039083913,-0.15651584,-0.082176216,-0.073366635,-0.4072877,-0.10196379,0.24490455,-0.21436365,0.36191267,-0.24600725,0.23099177,0.65547144,-0.21660925,0.044582948,-0.039231174,-0.14372009,-0.1234471,-0.04946331,-0.06296441,-0.026633471,-0.39059263,-0.067804694,-0.2896671,0.60803634,0.26601118,-0.6913855,0.33237717,-0.55578035,0.29484874,0.021564102,0.42933875,0.72142005,0.26761883,0.07260594,0.64627385,-0.35470992,0.085965246,-0.011159979,-0.4284356,0.024988063,-0.2745236,-0.03509041,-0.61373395,0.07209097,0.110301,-0.09871582,-0.047127094,0.40601283,-0.5368399,-0.14344236,0.011884697,0.89702576,-0.25226,-0.16824584,0.69093275,0.9421092,0.88679767,-0.039268892,1.3964926,0.25110593,-0.3558698,0.31344852,-0.6941551,-0.5737319,0.28035074,0.17801207,-0.2293511,0.48242968,-0.039756663,-0.10543206,0.33556074,-0.28801054,0.14892614,-0.27083993,0.022092849,0.13001546,-0.20965855,-0.25725752,-0.27801812,-0.13067278,0.02649012,0.2818855,0.17747468,-0.13066974,0.4302904,0.031691153,1.5490279,-0.062435392,0.023003854,0.013918519,0.3588093,0.14911148,0.007907497,0.14662647,0.23703673,0.41244537,0.003238365,-0.5417961,0.06000659,-0.39531428,-0.4648785,-0.23323755,-0.27841276,-0.013678908,0.08816591,-0.36837053,-0.17940673,-0.124896646,-0.25944847,0.3673071,-2.535391,-0.24916846,-0.22824776,0.31598848,-0.31553724,-0.34853128,-0.23968367,-0.4613103,0.323272,0.283201,0.44139606,-0.58248365,0.5017608,0.3253976,-0.53294206,-0.09559634,-0.49647942,-0.047055833,-0.0074731074,0.45507717,-0.112203605,-0.006049146,0.27037102,0.08845209,0.40831256,-0.1550877,0.02964732,0.24402267,0.39711106,0.08643097,0.5160356,0.14931864,0.63445973,-0.1646322,-0.21869652,0.28937858,-0.34304103,0.16636091,0.035680555,0.103164844,0.43012375,-0.3769435,-0.79936266,-0.5346132,-0.21574007,1.0755806,-0.13760436,-0.23167661,0.23916432,-0.18117765,-0.27386382,-0.114723414,0.34670368,-0.09543851,-0.10737606,-0.72088873,0.13429724,-0.07695518,0.07266622,-0.05100709,-0.13139012,-0.37173027,0.7890875,-0.0899287,0.35302317,0.22209887,0.23960137,-0.25963297,-0.52156377,0.06576674,1.0166116,0.38466686,0.06399995,-0.18422458,-0.24039188,-0.49354383,-0.1578188,0.09362295,0.3914611,0.62127686,0.03441548,0.028331505,0.29013214,-0.056351885,0.18848108,-0.14504346,-0.3207178,-0.166527,-0.028909955,0.672704,0.44419208,-0.29142103,0.6703146,-0.10617575,0.2533412,-0.12925836,-0.45344028,0.70945656,1.0769767,-0.22307882,-0.24883938,0.37584454,0.3716426,-0.32855082,0.32207757,-0.5443606,-0.4066456,0.46389252,-0.24506152,-0.22910185,0.3164351,-0.3057773,0.06549273,-1.0126384,0.2311592,-0.2826926,-0.37170613,-0.5129073,-0.057899192,-3.1557162,0.22615007,-0.3175951,-0.152146,-0.114709586,0.16613407,0.10716525,-0.61523736,-0.38329464,0.05126818,0.09471637,0.59843206,-0.030951915,0.085939094,-0.20005359,-0.22130936,-0.2920161,0.16487263,0.1251181,0.32285985,0.011087112,-0.45046374,0.09549728,-0.21378535,-0.3062187,0.03878904,-0.64900917,-0.46284193,-0.29039282,-0.50664616,-0.38154796,0.7228466,-0.24818403,0.054849476,-0.23922244,0.10042976,-0.02422762,0.35869694,0.027853657,0.12325008,0.11799314,-0.040617317,0.1382612,-0.2260968,0.21033578,0.039827697,0.47149444,0.42899796,-0.12547836,0.13844268,0.3673768,0.6848629,-0.06344209,0.6284587,0.4801961,-0.15175468,0.35007298,-0.26958615,0.028441843,-0.50209206,-0.29015577,-0.089711785,-0.23461877,-0.646513,-0.18881495,-0.42729273,-0.760758,0.2739128,-0.055123262,0.10376102,-0.11563157,0.36297414,0.51427066,-0.018702133,0.16480905,-0.1221763,-0.16580203,-0.38025528,-0.34729552,-0.5757308,-0.46857703,0.16397192,1.0632788,-0.099536955,-0.10858859,-0.08866338,-0.2601301,-0.023601536,0.06260737,0.12520681,0.13055758,0.34664452,-0.2328982,-0.69702935,0.44632325,-0.179964,-0.22157973,-0.47985393,0.21383819,0.55798423,-0.44312438,0.61511654,0.31875142,0.012834851,0.08610497,-0.37575388,-0.0035933293,0.048527323,-0.22381252,0.28596702,0.11348394,-0.5454696,0.4054001,0.24312171,-0.30750877,-0.6154437,0.57715124,0.19619988,-0.27412716,-0.10071475,0.3754819,0.10425331,-0.045565248,-0.31763887,0.27765113,-0.42979282,0.18724611,0.26451728,0.053040784,0.2525111,-0.13623363,-0.2805906,-0.71835005,0.10617715,-0.4052335,-0.13149013,0.18677385,0.22216883,0.37006307,0.036558613,-0.14231367,0.28940657,-0.38343543,0.13521187,-0.024005745,-0.25720966,0.2484743,0.23312032,0.27290457,-0.5609065,0.5019815,-0.0054565035,-0.15545225,0.021637037,0.12627348,0.52537113,0.27382076,0.39756438,0.18681103,-0.25912362,0.36384925,0.7203005,0.24851051,0.480769,0.21793815,-0.2860448,0.20765045,0.07371035,0.07906738,-0.044256963,-0.37567765,-0.18269035,0.13777852,0.2352646,0.4143044,0.05017308,0.3905698,-0.15827104,-0.28340796,-0.02246404,0.24429794,-0.0055469275,-1.2789797,0.47974676,0.3252394,0.85137045,0.3191889,-0.14090315,-0.010006268,0.6641782,-0.20851892,0.13624462,0.30244613,-0.16167015,-0.5440105,0.41584998,-0.5955521,0.36514008,-0.047925536,-0.022756508,-0.023462212,0.009211287,0.29576862,0.88720876,-0.24959616,0.018240862,-0.10469536,-0.364982,0.19548707,-0.15145183,0.1450395,-0.4727345,-0.26909083,0.6027376,0.30635542,0.16422729,-0.13029057,0.024503723,0.1392076,-0.10593657,0.15775406,0.020720422,0.2068337,-0.14430992,-0.7030549,-0.22815195,0.3904519,-0.19255602,0.1850728,0.36409461,-0.20300175,0.20848078,0.017765157,0.013871169,-0.12445854,-0.43868995,0.012622171,-0.076047026,-0.3151797,0.4898469,-0.27025193,0.26333994,0.27178156,0.017373038,-0.36679572,0.35935315,0.0828592,0.5578161,-0.10876543,-0.33410448,-0.4104327,0.18728074,0.11205082,-0.28282982,-0.008445933,-0.12006241,0.13381577,-0.532897,0.44006014,-0.0064201653,-0.2512501,0.03100498,-0.23041219,-0.029829517,0.4293626,-0.24126607,-0.07756983,0.08099085,0.003872024,-0.16036975,-0.049012348,-0.052427597,0.2915682,0.16389641,-0.091601916,-0.1120312,-0.026828066,-0.004627362,0.43078944,0.044099182,0.31175685,0.38012418,0.23772608,-0.40806285,-0.097096,0.38130403,0.32920057,0.030995652,-0.020979697,-0.31134385,-0.33292812,-0.3837692,0.14431548,-0.04905177,0.27295542,0.18585068,-0.37711853,0.6913655,0.03120472,1.3385266,-0.050516088,-0.2934553,-0.005241558,0.5860714,0.15042943,0.058246326,-0.2879097,0.8766666,0.57700413,-0.08692186,-0.13528886,-0.3503749,-0.044073258,0.10440861,-0.259829,-0.20229657,0.14186181,-0.58289754,-0.5472629,0.20810293,0.12293928,0.22513251,-0.0629628,0.1302229,0.24421221,0.042239606,0.38649833,-0.5483637,-0.40345946,0.13014089,0.18971746,-0.020033479,0.22741961,-0.44743377,0.30776033,-0.58161163,0.08293394,0.0047439337,0.19133857,0.030166484,-0.2229146,0.25902283,-0.051910643,0.4001264,-0.28081995,-0.33977827,-0.30571574,0.55371493,0.007773401,0.1489948,0.62973326,-0.2816981,0.024402011,0.16079903,0.60420144,1.2924244,-0.16725759,0.06753758,0.3053261,-0.31179503,-0.68253064,0.33886462,-0.1983547,0.20617454,-0.11249997,-0.34141827,-0.47862643,0.43296826,0.11512633,0.11040968,0.017655825,-0.4981171,-0.32506847,0.39986032,-0.38332087,-0.24245472,-0.31499195,0.2000882,0.61217386,-0.30550027,-0.2423485,0.17221501,0.2712014,-0.29242933,-0.5954195,-0.046305653,-0.26586884,0.33672398,0.17216137,-0.16085061,-0.055261604,0.06390799,-0.35940263,0.26455536,0.28901738,-0.3857232,0.03472265,-0.30178636,-0.28834426,0.8483459,-0.26127777,0.22477223,-0.63292503,-0.41764674,-0.744998,-0.5977081,0.37536797,0.11122017,-0.15292734,-0.59607834,-0.1836682,0.08947627,-0.15419814,-0.010855425,-0.2583772,0.34257433,0.05894001,0.2506348,-0.13563669,-0.8418362,0.016799927,0.15724,-0.119813174,-0.7016533,0.4169967,-0.01760216,0.9702605,0.17536101,0.124995306,0.43698505,-0.4679845,-0.07568658,-0.179683,-0.16405669,-0.7017271,0.007145051,888 -106,0.45747355,0.026348911,-0.5914605,-0.07351533,-0.36724204,0.043908328,-0.20476288,0.5179207,0.22619572,-0.33225095,-0.16697252,0.075641975,-0.05905582,0.31490213,-0.17286211,-0.59990776,0.17168203,0.16795897,-0.49143034,0.5339091,-0.30693236,0.27264127,-0.08967416,0.41336048,0.13680406,0.3729481,-0.03575934,-0.013168499,0.0022901632,-0.15259337,-0.077417485,0.37544778,-0.4926339,0.27447343,-0.14289096,-0.26018938,-0.010860451,-0.41636503,-0.27380872,-0.80407774,0.22620556,-0.5664542,0.4407174,-0.1039857,-0.29285002,0.0754085,0.22736324,0.38912293,-0.057379045,-0.18857297,0.08819914,-0.090799056,-0.24048328,-0.10511932,-0.0946723,-0.39318395,-0.43319058,-0.050127223,-0.47842395,-0.07705183,-0.28656688,0.17742686,-0.27155244,0.027749453,0.0101523325,0.5772876,-0.279083,0.08544034,0.30529732,-0.1094504,0.1471873,-0.6663695,-0.009941161,-0.055348024,0.41857067,-0.05150838,-0.20731577,0.24178712,0.23748769,0.4742716,-0.02727335,-0.16213426,-0.35717154,-0.18485856,-0.044786274,0.47445494,-0.19178832,-0.3619205,-0.09695126,0.086290374,0.08727199,0.21157198,-0.080294624,-0.1464984,-0.10452979,-0.10650865,-0.20273821,0.29089138,0.48203215,-0.2362915,-0.14767465,0.4695593,0.5375413,0.16417786,-0.15101159,-0.01992755,0.03813467,-0.55034673,-0.23945326,-0.23415022,-0.118499935,0.3316061,-0.049328662,0.29459888,0.6161633,0.056240812,-0.15595992,0.20879796,0.08088439,0.013398722,-0.29541636,-0.107433766,0.19433045,-0.37164322,0.089291856,-0.06600109,0.6503186,0.1395216,-0.6910949,0.21126965,-0.5228811,0.073510095,-0.005867712,0.38097963,0.74298424,0.47471166,0.22822098,0.6760502,-0.21124339,0.18399584,-0.14950714,-0.2776733,0.041815262,0.036812067,0.057577036,-0.48119274,0.09741908,0.032982253,-0.055451326,0.15853015,0.21750489,-0.52194184,-0.14343908,0.08292958,0.8494768,-0.20415391,-0.18507576,0.66219217,0.82937384,0.80496216,-0.015262338,0.9127476,0.064341836,-0.101453885,0.19442548,-0.24073651,-0.6021998,0.2947566,0.33353263,0.114119604,0.17907748,0.02752304,-0.11757584,0.4871999,-0.20508534,-0.12950827,-0.013329864,0.30562848,0.18164068,-0.10749158,-0.41753018,-0.2682635,-0.041000668,0.0040863194,0.25220457,0.21552555,-0.19348414,0.35329384,0.027208453,1.6082268,-0.024753299,0.108369306,0.18817607,0.39421967,0.2894612,-0.3228891,-0.16173933,0.23710728,0.086773,0.12254355,-0.46625155,0.19375148,-0.15359041,-0.41274002,-0.119181536,-0.28588945,-0.23641384,-0.008021265,-0.41429335,-0.15457863,-0.19037211,-0.25856924,0.42883426,-2.8396645,-0.12186143,-0.10712076,0.36104348,-0.22914985,-0.36596566,-0.18335393,-0.44958377,0.33934164,0.2898582,0.43409806,-0.5170654,0.5003472,0.46092528,-0.602725,-0.06475713,-0.49263567,-0.057657346,0.13853687,0.26367235,0.022894183,-0.09518716,-0.14128678,0.14993042,0.45722198,0.0022168718,0.0913111,0.4016865,0.4029178,0.0153004825,0.34043503,-0.17086057,0.55849785,-0.29512936,-0.16053298,0.22941676,-0.50949633,0.1677104,-0.23929241,0.0858553,0.56283295,-0.46959853,-0.97096795,-0.6636185,-0.045621857,1.1393082,-0.1028291,-0.27563542,0.29931778,-0.63110334,-0.27522618,0.13343409,0.53964466,-0.049471818,-0.13570166,-0.6958209,-0.012528179,-0.21364823,0.16849945,0.0016136672,-0.07570421,-0.429414,0.54960376,-0.05750085,0.5603268,0.17747119,0.21448112,-0.22574073,-0.39354962,-0.087008506,0.72077143,0.45597965,0.22896853,-0.22612837,-0.19021688,-0.50960624,0.012243915,0.07413,0.6945579,0.47248387,0.013660569,0.063362285,0.19234703,0.01310401,-0.047038957,-0.14233814,-0.24515678,-0.068786286,0.013219528,0.55431044,0.57541484,-0.199384,0.33002272,0.040562935,0.24392964,-0.28919804,-0.44206718,0.48138964,0.77555805,-0.25951487,-0.3011726,0.6489267,0.38709712,-0.098957114,0.338077,-0.60763216,-0.4537813,0.31527114,-0.122363195,-0.38781935,0.09618971,-0.22208689,0.095795594,-0.7547854,0.15348871,-0.38249856,-0.7190883,-0.45931616,0.05033986,-3.042919,0.25781035,-0.058558144,-0.17875537,-0.23549213,0.005162807,0.15104863,-0.52288157,-0.6252665,0.1968976,0.06092049,0.7199702,-0.12999243,0.18352748,-0.11415103,-0.33964097,-0.21970563,0.22895616,0.07952289,0.33778837,0.012013659,-0.47532484,-0.107813776,-0.051068164,-0.43998763,0.1858619,-0.5958664,-0.38766423,-0.120461926,-0.45956805,-0.059969902,0.5914375,-0.37546033,0.12751435,-0.2675339,0.063411,-0.22931737,0.22626972,0.01075092,0.07494187,0.14358672,-0.17921408,-0.01589556,-0.2577666,0.27655092,-0.011331074,0.4612048,0.2411339,0.08631033,0.19295955,0.56357497,0.6020253,-0.12165765,0.9711814,0.33286005,0.018294161,0.34464154,-0.23764461,-0.3240751,-0.18717921,-0.19400373,0.019512605,-0.31516048,-0.2355586,0.021010332,-0.51422095,-0.7774055,0.23000796,0.020644765,-0.012020588,-0.0020201355,0.21773562,0.5903495,-0.28491387,-0.0496513,-0.07074393,-0.075650945,-0.57806355,-0.32031462,-0.40571636,-0.43077686,0.0044455808,1.0226232,-0.30528122,0.08659883,-0.08305234,-0.08581583,-0.13407601,0.13216826,-0.016814847,0.11115106,0.48567128,-0.21080865,-0.5489608,0.3657297,-0.30970818,-0.22298187,-0.56922907,0.3104071,0.4592563,-0.5967388,0.5774852,0.37461698,0.11525978,-0.22778964,-0.59781396,-0.09411108,0.008028418,-0.2928596,0.3865239,0.41339862,-0.7662774,0.35710907,0.18797636,-0.14059359,-0.73304933,0.590964,0.03501842,-0.32096514,-0.09926401,0.3691874,0.14102882,-0.025727505,-0.17698184,0.07630798,-0.21499225,0.1678506,0.08535334,-0.059556082,0.3458653,-0.37638444,-0.001460962,-0.7052005,-0.05451052,-0.47871897,-0.2363566,0.1795274,0.059115656,0.1894977,0.12214787,0.03475345,0.3534882,-0.31708404,0.056618135,-0.25885916,-0.2680834,0.36190864,0.40333486,0.4835429,-0.37598813,0.50931865,0.018987272,-0.1011492,0.056280732,0.16367021,0.40142602,-0.15559268,0.5020086,0.009138092,-0.11273829,0.15971455,0.6624024,0.09646033,0.23016913,-0.012689643,-0.14000499,0.22329089,-0.028503746,0.12228216,0.028532773,-0.6071321,-0.071734145,-0.2944382,0.09121861,0.6081543,0.18500061,0.24213514,0.055649057,-0.30700326,0.058989048,0.12864284,0.022261709,-1.1776694,0.45984793,0.14095944,0.9132205,0.31687424,0.04562293,0.0023130067,0.708338,-0.017473646,0.20799327,0.3777922,0.05851637,-0.34786063,0.49640912,-0.68279755,0.47431493,0.0041966066,-0.07785287,0.074680924,-0.1559494,0.47729397,0.8948903,-0.13952264,0.02405868,0.05227966,-0.32162237,0.11931093,-0.2177114,-0.14099567,-0.681107,-0.28905475,0.59093815,0.49926257,0.26782256,-0.2387187,-0.028409194,0.13335136,-0.015484711,-0.0016410276,-0.010112375,0.05325541,-0.0328354,-0.5341391,-0.19312769,0.5076761,0.046568416,0.15094396,0.109648034,-0.09182175,0.29459363,0.0060117543,-0.057791013,-0.091072775,-0.5789322,-0.052136064,-0.3032164,-0.45856363,0.46400416,-0.21864703,0.17031932,0.1687672,0.1066445,-0.3150087,0.50742316,-0.03414715,0.7441751,-0.012907121,0.05388402,-0.29547027,0.21102288,0.19025436,-0.22290403,-0.22641745,-0.38819084,0.0058697127,-0.62208253,0.30238873,-0.09496167,-0.28671286,0.13211557,-0.058564078,0.13924086,0.4052366,-0.035122678,-0.2003061,-0.08955413,-0.014355395,-0.27836683,-0.19472343,-0.1351865,0.23301056,0.029398516,-0.04991202,-0.1530079,-0.17232808,-0.12002881,0.33002624,-0.067741096,0.34679466,0.32638484,0.14909558,-0.1971334,0.0023195446,0.30411378,0.52116966,0.041069545,-0.1298739,-0.22799146,-0.3568318,-0.34808868,0.33134902,-0.05479329,0.28640866,0.23460928,-0.1556302,0.6063442,-0.02089042,0.93570995,-0.011889387,-0.25015214,0.10681336,0.29584634,0.0843576,-0.06631429,-0.40965706,0.8202207,0.4177197,-0.075825356,-0.06796805,-0.34685785,0.07210271,0.20829585,-0.16449058,-0.08882919,-0.12600496,-0.565065,-0.16734362,0.15889823,0.2312384,0.13768338,-0.07206915,-0.056313936,0.23799182,0.0890712,0.23809457,-0.4115174,-0.1268329,0.28498366,0.2612093,0.112787545,0.09823411,-0.6000584,0.344993,-0.6031339,-0.03288819,-0.25784832,0.22355554,-0.3144239,-0.29199785,0.18781757,-0.042521425,0.35971147,-0.2146149,-0.30724958,-0.33117667,0.38588178,0.19562072,0.07356019,0.4674217,-0.20589563,-0.009330589,0.12082314,0.6444086,0.71868926,-0.29703403,0.016012296,0.33089817,-0.22480665,-0.53231907,0.23885527,-0.37412232,0.07368391,0.09035696,-0.17626968,-0.4252201,0.3698387,0.12713408,0.123812445,-0.073801085,-0.6235257,-0.10906974,0.16822168,-0.22956046,-0.15871672,-0.25931475,0.13461919,0.6369064,-0.14013329,-0.25616056,0.1001492,0.31211296,-0.04137935,-0.64283717,0.037360046,-0.31621987,0.27799457,0.06486307,-0.2750461,-0.29032063,0.018733032,-0.48588437,0.30309188,0.065541066,-0.29935277,0.083836354,-0.32484215,-0.024219006,0.8081848,-0.10799736,0.2625788,-0.4385458,-0.37672335,-0.68373615,-0.31483987,0.20330188,0.21654408,-0.052888915,-0.6298293,-0.061038222,-0.1202032,-0.18084171,-0.043163344,-0.35931057,0.36244178,0.07949662,0.22512555,-0.04255961,-0.870602,0.09529353,0.062381424,-0.2368324,-0.44023612,0.3644915,-0.045696173,0.94768405,0.08890608,0.120878376,0.23962314,-0.4205675,-0.121769354,-0.1255005,-0.082018614,-0.62985605,0.05974281,894 -107,0.4445941,-0.020583943,-0.44573116,-0.25293738,-0.22213547,0.31820124,-0.041952,0.15376186,0.054009013,-0.37119472,-0.081513494,-0.10839027,-0.04796224,0.32001588,-0.18012181,-0.81311893,-0.10227914,-0.017658988,-0.56583166,0.2993807,-0.52770895,0.5866385,0.18295473,0.239763,0.082503505,0.47558922,0.34307706,-0.29505634,-0.21043421,0.06448434,-0.22288091,0.13125072,-0.5738756,0.15479627,-0.0018064259,-0.2964877,0.21457762,-0.2668905,-0.22462675,-0.6047083,0.4065375,-0.68692774,0.3628555,-0.08183009,-0.25453764,0.20041406,-0.07424699,0.21578829,-0.45542827,0.24166691,0.25825375,-0.34664625,0.0426338,-0.19442898,-0.27307934,-0.52276033,-0.47098365,0.03662534,-0.57874525,-0.2943843,-0.36712202,0.19973004,-0.30181757,0.027902015,-0.18326038,0.17757595,-0.4720093,-0.1428445,0.14951384,-0.18060683,-0.0020835027,-0.31269068,-0.14351812,-0.14278668,0.22963068,-0.067248456,-0.0011675917,0.27738255,0.38239723,0.5479146,0.12973313,-0.27892286,-0.2302564,-0.13572975,0.117421255,0.45229882,-0.13953668,-0.386928,-0.11556859,0.019491524,0.08341023,0.11793019,-0.04539959,-0.29957736,-0.0024147741,0.09182823,-0.16024402,0.09919131,0.54429805,-0.3744816,-0.2176373,0.38532427,0.42451924,-0.0753374,-0.036944486,0.056687385,-0.059106965,-0.4096655,-0.26279145,0.2423065,-0.12938944,0.4813882,-0.05219543,0.10893889,0.86137235,-0.16532041,0.13593897,-0.34913194,-0.09251901,-0.14485586,-0.076050185,-0.091518015,0.040829614,-0.364734,-0.026121587,-0.3466136,1.0139867,0.16289772,-0.7926556,0.31692344,-0.40154728,0.18585996,-0.14271882,0.6632134,0.5680396,0.2800274,0.13464746,0.83722484,-0.64834785,0.16671066,-0.047307476,-0.40770817,0.081722915,-0.10864487,-0.041931063,-0.36049864,0.18454522,0.08279894,0.017006129,-0.033396497,0.19158918,-0.37853447,0.12793991,-0.08612217,0.6061555,-0.56380916,0.081911206,0.59767693,0.9107627,0.7717167,0.1475232,1.3876377,0.5039196,-0.24585094,0.02521548,-0.46561393,-0.48114833,0.1415791,0.48618338,0.37189418,0.120010436,0.1469991,0.14017454,0.34263396,-0.29142672,0.09764831,-0.17187813,0.26755133,-0.059553165,0.057948016,-0.39650577,-0.23858811,0.091413796,0.103908435,0.030380573,0.21242207,-0.10560578,0.41177836,0.08683108,1.5919887,0.09660062,0.17532477,-0.067376226,0.33064717,0.14617549,-0.054370396,-0.051443055,0.37942597,0.36420393,-0.2371966,-0.6004245,-0.14921167,-0.32910612,-0.49857008,-0.19761416,-0.3457812,0.0153028965,0.031617295,-0.35219753,-0.10877965,0.13712876,-0.28443807,0.47001934,-2.3686638,0.03507065,-0.12921573,0.29210594,-0.25354552,-0.3802527,-0.1838989,-0.41675746,0.33586788,0.4667215,0.31089723,-0.55482143,0.20353056,0.120269775,-0.13487941,-0.18277784,-0.70487344,0.04787222,-0.15107292,0.3493589,-0.1894786,-0.06408207,-0.24792127,0.09596688,0.5732832,-0.01461691,-0.09593412,0.20388934,0.39259398,0.22284321,0.4663941,0.36603197,0.53461945,-0.0880679,-0.11694313,0.3617751,-0.41478044,0.42258978,0.073550925,0.16968377,0.25445136,-0.58713156,-0.7807879,-0.6972853,-0.37111554,1.3317268,-0.3614765,-0.2648844,0.30744496,0.12806946,-0.1965021,-0.012976021,0.30241007,-0.19063948,-0.07006025,-0.6461295,0.03140288,0.040384695,0.12543844,-0.0066300295,0.2253344,-0.1670368,0.6667427,-0.31097794,0.3116175,0.36685574,0.22553368,0.13095705,-0.53143245,0.0362067,1.0031664,0.30006042,0.10243912,-0.06798701,-0.3172187,-0.09952085,-0.283813,0.33911476,0.24001202,0.9302318,0.15812713,0.02065771,0.26684445,-0.23501371,0.021576738,-0.0173739,-0.37855232,0.05458522,-0.019198023,0.48506898,0.35731253,-0.1821022,0.32850692,-0.20614548,0.30845028,-0.090160176,-0.4263121,0.5346419,0.83571684,-0.10756309,-0.1395455,0.49926713,0.4721899,-0.39950815,0.33139855,-0.5680701,-0.18272349,0.7128922,-0.20489791,-0.36090985,-0.07821247,-0.341191,-0.023200244,-1.0263826,0.35544014,0.14301568,-0.44483668,-0.53861445,-0.20364933,-3.7191358,0.0014697537,-0.26411352,-0.14637543,0.12255095,-0.15074499,0.22871724,-0.59617615,-0.38732716,0.072225675,-0.083396986,0.3950216,0.07968916,0.23554237,-0.2552309,-0.0064010248,-0.26480222,0.14979911,0.116800666,0.23791327,-2.1964312e-05,-0.30239636,0.21514937,-0.41070998,-0.38121474,0.10938333,-0.31100523,-0.51838994,-0.29357362,-0.39429507,-0.21028718,0.7130394,-0.4942984,-0.15686347,-0.1739288,-0.06755301,-0.38034564,0.40019488,0.35544184,0.20944126,0.092704095,0.030990096,-0.22947896,-0.52043855,0.3727629,0.1626848,0.25310895,0.42376962,-0.066207305,0.060320772,0.4897777,0.50557554,-0.0006311387,0.5428238,0.2314409,-0.10001251,0.26754087,-0.54785156,-0.2575631,-0.8194872,-0.51454395,-0.4071911,-0.33234644,-0.456668,-0.20360959,-0.47984803,-0.8117603,0.251552,-0.02830907,0.07434274,-0.14218365,0.22608292,0.31228203,-0.047515273,0.028499164,-0.19765297,-0.06384802,-0.52258086,-0.39770183,-0.6032603,-0.6046251,0.30114833,1.0712764,-0.092218645,-0.22671357,-0.14267704,-0.2199179,0.19986387,-0.13751546,0.17386203,0.28065443,0.37001908,-0.14875926,-0.7256259,0.59970725,-0.04962285,-0.12941796,-0.6151974,-0.14125054,0.58051956,-0.8048673,0.39124334,0.35457513,0.2521511,0.38628542,-0.44234288,-0.48591557,0.0034595653,-0.18966283,0.4551317,-0.0010668337,-0.43217593,0.43749565,0.24274546,-0.06785227,-0.6750505,0.35665333,0.007271873,-0.23335108,0.2843501,0.28861785,0.02475715,-0.23363732,-0.18805137,0.19916365,-0.5408929,0.3793307,0.5105945,0.10224047,0.37515008,-0.1714643,-0.35918707,-0.5375492,0.04381077,-0.50233984,-0.200174,0.0008786041,0.16664046,0.14743851,0.036477357,-0.055951297,0.5452368,-0.38401175,0.15842591,-0.008890744,-0.12095632,0.3267769,0.43860793,0.25601506,-0.53749144,0.6214859,0.03868745,-0.0005640909,-0.2607139,0.06237259,0.5562244,0.34347147,0.047174558,0.01668182,-0.21192893,0.2708531,0.59715796,0.2679076,0.4235764,0.14206691,-0.3264767,0.48560876,0.27065653,-0.037164737,0.1375747,-0.072944894,-0.048319325,0.18826684,0.17707388,0.32421514,0.04110109,0.4751413,-0.11677545,-0.123047665,0.36081803,0.08591452,-0.14726898,-0.6797803,0.18808123,0.11454459,0.49443692,0.4728499,-0.12019625,0.06508822,0.38187325,-0.467452,0.13562469,0.29677033,0.0019039661,-0.60360694,0.54567724,-0.58334416,0.37963942,-0.29046294,-0.011533417,0.0330598,0.16445735,0.27938217,0.9143697,-0.06841311,0.1018249,-0.061614014,-0.19650649,0.050939303,-0.28712443,0.097292244,-0.48916075,-0.24796976,0.50185764,0.2255897,0.26762843,-0.22213529,-0.12723157,0.0651779,-0.04271829,0.21238245,-0.08625467,0.07774007,0.003941793,-0.5163619,-0.6558697,0.5431001,0.0263599,0.048858505,0.10360734,-0.3773979,0.39440164,-0.21703087,0.009745399,-0.004961093,-0.44199145,0.09278579,-0.21749021,-0.48620373,0.20647056,-0.30871105,0.4989591,0.17198049,0.09158291,-0.39451167,0.031525284,0.31875175,0.7984162,-0.05999627,-0.2622144,-0.46501333,0.1349294,0.4777128,-0.32164198,0.090133354,-0.19355075,-0.013115462,-0.647395,0.3982209,-0.23565441,-0.17891705,-0.026617624,-0.24788463,-0.14023633,0.36335194,-0.24475838,-0.05662354,0.2888971,0.14274082,-0.2295343,0.019116025,-0.38015312,0.21745479,0.0073112547,-0.012801394,-0.055832554,-0.14296474,-0.06172707,0.36412776,0.05169297,0.15828611,0.052364796,-0.19888791,-0.43547577,-0.12844008,-0.07462977,0.11800335,0.13931097,-0.08011765,-0.31338853,-0.3748446,-0.17214456,0.12279943,-0.30433196,0.14954527,0.16538975,-0.5601809,0.71870697,0.069721974,1.1365069,0.20754978,-0.2582686,0.06513263,0.58147824,0.18577239,0.16283609,-0.28678265,0.9350039,0.6569213,-0.12516917,-0.2860502,-0.33494946,-0.28717694,0.32910773,-0.19678888,-0.14149499,-0.12554014,-0.6533543,-0.40791833,0.15592125,0.23261108,0.08550559,0.13333154,-0.118709125,0.053737663,0.19200203,0.66399145,-0.32408777,-0.12470397,0.25751132,-0.029277433,0.21368569,0.2524914,-0.32769907,0.45540297,-0.68788517,0.09632219,-0.29033518,0.07202945,0.013777584,-0.24571571,0.12559944,0.012391772,0.38296038,-0.2670167,-0.41416055,-0.17930387,0.67940545,0.19598208,0.34242317,0.6777733,-0.27738214,-0.036870692,0.0043291952,0.3586033,1.353288,-0.024670012,0.18697704,0.37338996,-0.25534078,-0.47335324,0.27696478,-0.19509114,0.026508585,-0.20600563,-0.4562291,-0.31268045,0.32243258,0.20772317,-0.20659433,0.103004366,-0.37168586,-0.2513039,0.48729193,-0.25835937,-0.40046456,-0.28538626,0.40549368,0.6530541,-0.532282,-0.3630474,0.12839067,0.22914802,-0.3232106,-0.5147107,-0.124657646,-0.19070509,0.41367358,0.11971394,-0.21612954,0.0577953,0.31682244,-0.2273244,0.23496512,0.309931,-0.4241072,-0.12459254,-0.12902093,0.028146207,0.99395204,0.17935738,-0.049558714,-0.76055115,-0.29996282,-1.0452198,-0.46394357,0.57806516,0.17316656,0.013537422,-0.47338802,-0.009003293,0.12752448,0.17324449,0.114893265,-0.6369548,0.3778038,0.20816916,0.38837987,-0.08399151,-0.75715625,-0.12558176,0.032431334,-0.18127136,-0.50532424,0.4859259,-0.185591,0.58910584,0.059529766,-0.00017412007,0.19835764,-0.5374476,0.2890065,-0.45187682,-0.20942056,-0.6328902,0.1665717,900 -108,0.5696894,-0.104166426,-0.45902437,-0.20375082,-0.2081976,0.16756018,-0.26366198,0.3074698,-0.008937718,-0.55873054,0.10840875,-0.19234526,0.014032442,0.2969747,-0.19240965,-0.5680977,0.035553474,0.034309767,-0.39968514,0.17965332,-0.5667265,0.41837433,0.07365588,0.20133798,0.012343392,0.3149978,0.2895831,-0.19676256,-0.33020616,-0.24671495,-0.1412426,-0.034308773,-0.549792,0.064842336,-0.15256637,-0.2832023,0.16664651,-0.5490678,-0.41121906,-0.4856262,0.10354004,-0.70471513,0.5277822,-0.023511693,-0.17845106,0.3103072,0.026848076,0.3325299,-0.091658495,0.2108859,0.2814327,-0.261841,0.012059946,-0.1963822,-0.4452377,-0.46822757,-0.5238046,0.0009282725,-0.44839638,-0.20601656,-0.21882643,0.12526669,-0.26923072,-0.054335695,-0.07802271,0.28649244,-0.36032674,-0.023950212,0.11960095,-0.12744352,0.35678446,-0.37868464,-0.19539505,-0.11805181,0.22224608,-0.3575043,-0.16850081,0.38515395,0.31010067,0.45049852,-0.11198455,-0.22870497,-0.43315154,-0.049450077,0.09830298,0.67373514,-0.24780338,-0.25962487,-0.24429357,-0.13162842,0.23599261,0.25045076,0.032404333,-0.33519173,-0.14418793,0.06570572,-0.38863632,0.24860667,0.5210402,-0.40680876,-0.16778843,0.43624127,0.3468461,-0.014754292,-0.1576126,0.04909871,-0.0074700955,-0.45991918,-0.15933216,0.33440042,-0.11004554,0.44366854,-0.0758081,0.3031799,0.7380496,-0.25105178,0.052891456,-0.014768696,0.029213898,-0.0026194043,-0.12870929,-0.20756729,0.21021059,-0.5823359,0.009248257,-0.10106501,0.8259181,0.25758755,-0.9025638,0.4359845,-0.42774448,-0.010675598,-0.064706765,0.45695525,0.5526618,0.5219017,0.089852534,0.6292512,-0.61300516,0.13821876,-0.13450508,-0.3890026,0.11196976,-0.068317644,0.02597797,-0.45083973,-0.13323304,0.14051428,-0.070948325,0.092873186,0.2849747,-0.3331637,-0.004211411,0.22648892,0.7089226,-0.3273642,-0.018262662,0.52470887,0.98557204,0.8544556,0.04120443,1.1179434,0.2719807,-0.27434584,0.15976855,-0.37680444,-0.6442312,0.19700065,0.4046995,-0.165664,0.25453442,0.14583118,0.03754292,0.29817852,-0.26971707,-0.025296554,-0.18829614,0.110927016,0.009764416,-0.053609796,-0.3907831,-0.28212202,-0.054685622,-0.17040838,0.032823578,0.23815009,-0.194853,0.36875495,0.14796335,1.6848522,-0.026859213,0.13160181,0.05643513,0.5321318,0.17662537,-0.11894405,-0.097433135,0.27472472,0.26599863,0.1148983,-0.4031333,0.019658606,-0.04999444,-0.512962,-0.12897089,-0.29228503,0.051915772,-0.10875599,-0.47830367,-0.15206857,0.06921016,-0.33409205,0.6034362,-2.8171325,-0.12170677,-0.11202711,0.36702657,-0.31473136,-0.48655406,-0.13820371,-0.4993839,0.5159024,0.32186916,0.4262566,-0.5724348,0.27662623,0.4277713,-0.2593844,-0.14079654,-0.71524596,-0.086693585,-0.19621775,0.16754821,-0.022919912,-0.0985616,-0.039474927,0.18694581,0.42750326,-0.20167023,0.11247407,0.05577488,0.21858412,0.23529914,0.492702,0.0173518,0.55782074,-0.30187175,-0.21949852,0.22005536,-0.38200387,0.057863526,0.08798872,0.18757096,0.3579663,-0.31523013,-0.78635055,-0.5657988,-0.29428267,1.0700951,-0.30436552,-0.28889516,0.28963494,0.12770298,-0.42073622,-0.0743986,0.28115025,-0.04959832,0.025373623,-0.68024445,0.01497306,-0.085180014,0.13884832,0.0033785552,0.10012158,-0.32506037,0.50722,-0.17964849,0.4756504,0.35885888,0.13617146,-0.15479334,-0.26952735,-0.006852068,1.0271318,0.27416357,0.21154605,-0.18744224,-0.21811163,-0.16546741,-0.22116223,0.16449493,0.27461696,0.73904413,-0.0062263794,0.11418369,0.25871885,-0.12441853,0.07101846,0.019000486,-0.34056097,-0.015608951,-0.09968544,0.55852556,0.44825357,-0.028539836,0.4561897,-0.1316153,0.26127696,-0.29444614,-0.36122826,0.4973414,0.75397384,-0.1273987,-0.18411407,0.5272502,0.47644395,-0.2637292,0.3693649,-0.6569759,-0.28802267,0.45847455,-0.17890829,-0.39028412,0.17966413,-0.27589968,0.113070585,-0.8252589,0.40197018,-0.19678631,-0.43151963,-0.4003155,-0.22492987,-3.5428991,0.07515568,-0.247358,-0.34324986,0.20827194,-0.12820557,0.2712298,-0.58572423,-0.24230304,0.17039678,0.037992742,0.68389565,0.08449887,0.08591621,-0.3421689,-0.18817014,-0.47702694,0.2157236,0.07662979,0.26348183,0.0472862,-0.40639293,0.08376537,-0.30403417,-0.5244993,0.10956888,-0.6454617,-0.39302734,-0.22350346,-0.47175562,-0.5006198,0.6949234,-0.47116628,0.05514108,-0.16958906,-0.034663048,-0.25222045,0.5095249,0.19756705,0.16132103,-0.07340126,-0.035237536,-0.05404769,-0.41011304,0.33093694,0.19139056,0.24722777,0.3788308,-0.14395326,0.08210837,0.53631175,0.58891153,0.03968519,0.68875027,0.35555175,-0.14275832,0.3185193,-0.3752094,-0.1372301,-0.42794722,-0.44563293,-0.0867528,-0.33035585,-0.413378,-0.1528586,-0.3156827,-0.73183703,0.52337945,-0.003182359,0.022471119,-0.08731498,0.16744252,0.2686286,-0.28460634,-0.12727626,-0.015028402,-0.12961161,-0.3647909,-0.3193433,-0.5769944,-0.51013476,0.1638664,1.0346891,-0.007422015,-0.07196942,0.06967397,-0.16081417,0.021492667,0.0038183294,0.022996001,0.21195617,0.34598783,-0.034899905,-0.6478044,0.43774086,-0.20027666,-0.18989877,-0.5984447,0.14651018,0.70213044,-0.5351442,0.4559011,0.41581583,0.24228193,-0.056980718,-0.5659049,-0.2539681,-0.008454651,-0.2858505,0.39567855,0.049932104,-0.782738,0.5485985,0.42236272,-0.38107055,-0.54598993,0.49943987,0.0629652,-0.22392611,0.17095174,0.26481742,0.013431888,-0.04298333,0.032734107,0.29055434,-0.50322837,0.31655484,0.46287137,0.07800083,0.47330886,-0.13754013,-0.044568487,-0.5429956,-0.105299816,-0.24562413,-0.297042,0.11966469,0.0040179268,0.1640487,0.22340861,0.059057746,0.3444962,-0.3812481,0.0862035,-0.046479516,-0.13040942,0.2629935,0.36930338,0.45407012,-0.3927325,0.55235803,-0.053318866,-0.013817221,-0.24794249,0.00033948943,0.4949865,0.24669844,0.1759846,-0.11699475,-0.33946717,0.19816263,0.6284243,0.30713174,0.45952997,0.18201,-0.14300567,0.1575452,0.17983893,0.041818436,0.28346652,-0.3560133,-0.07771765,-0.056804247,0.17797995,0.3907097,0.004262425,0.35421923,-0.25918132,-0.1250217,0.11339479,0.06380226,-0.19483909,-1.2120042,0.3189647,0.15598094,0.62743926,0.27656567,0.040884417,-0.011461921,0.66735315,-0.28761047,0.087703556,0.13256584,-0.0722858,-0.39313895,0.57204336,-0.60728884,0.4424612,-0.050243415,-0.018042916,-0.028477013,0.019405544,0.39753157,0.83130014,-0.084932625,0.1868965,0.042263135,-0.3870769,0.20840345,-0.21610728,0.20164967,-0.4938746,-0.15517597,0.6458576,0.24468523,0.32828525,-0.08009709,0.020222604,0.020805644,-0.08662196,0.1392425,0.07369283,0.07539363,0.105360545,-0.56134844,-0.34583881,0.60473174,0.02189097,0.08473013,0.067012504,-0.2067649,0.2889698,-0.16831261,-0.026904546,-0.038034387,-0.55568206,0.019387597,-0.3414473,-0.40967488,0.22589815,-0.17846364,0.31582597,0.16746804,0.014429372,-0.20006827,0.545375,0.44002777,0.8277758,-0.11871658,-0.22079271,-0.3492418,0.03287793,0.26877218,-0.18421927,0.009616416,-0.32191423,-0.08294554,-0.5511361,0.21696654,-0.10696236,-0.21445161,0.15999633,-0.099999435,0.064085685,0.5233847,-0.21339491,0.033489488,0.02036034,0.0055134017,-0.3203243,-0.1326389,-0.13316229,0.19343613,0.12258677,-0.060840257,-0.010697246,-0.116113536,-0.052643955,0.31232446,0.18108194,0.36159766,0.34392452,0.16623704,-0.35780603,-0.14517897,-0.09273154,0.40028262,-0.060375713,-0.08529326,-0.38653165,-0.3482187,-0.14545575,0.14767708,-0.18114334,0.22428273,0.06592414,-0.25187606,0.7717334,-0.24313504,1.0326176,0.08344102,-0.31740743,-0.015054956,0.34341356,-0.019828197,0.1505368,-0.36308533,0.89995694,0.4753083,-0.015295692,-0.1263341,-0.2950331,-0.2348561,0.12526847,-0.2091039,-0.24607202,-0.015889484,-0.57149196,-0.32385737,0.2377083,0.040237635,0.19151369,-0.017862529,0.10094908,0.34515017,0.22610591,0.4523562,-0.41593572,0.006684959,0.34739596,0.36028367,0.07082122,0.22777233,-0.38812548,0.35583246,-0.4772907,0.090423636,-0.30178005,0.16501729,0.0010344274,-0.20055868,0.22426675,-0.027868073,0.39760494,-0.16929865,-0.31156635,-0.047112368,0.5638283,0.11294228,0.35509562,0.66425925,-0.17011245,0.09638988,-0.027593197,0.36910367,1.0779295,-0.312788,0.015964106,0.615526,-0.21242827,-0.6458473,0.25289416,-0.24588762,0.13988349,-0.16989292,-0.24612336,-0.27768055,0.27411306,0.19323146,0.038344894,0.11512795,-0.37879318,-0.15864842,0.45947897,-0.30700037,-0.4158023,-0.33955437,0.21445006,0.72064453,-0.35015565,-0.24567494,0.015651949,0.33862007,-0.23089212,-0.34457114,0.024026502,-0.27416182,0.24087185,0.18605956,-0.2690757,0.03800022,0.0012807772,-0.25658488,0.1976593,0.19774082,-0.36825898,-0.030755648,-0.22764774,-0.05829452,0.8217265,-0.070888735,0.024039686,-0.64788485,-0.5437082,-0.92448545,-0.46613613,0.44367915,0.15767837,-0.04096578,-0.34358445,-0.06647642,-0.05578964,-0.08914698,-0.078674875,-0.4634562,0.38233984,0.14188139,0.3447227,-0.04588419,-0.5996304,-0.0011420287,0.09345427,-0.19670668,-0.55145675,0.49591962,-0.21352394,0.87471,0.100774854,0.04778491,0.14863652,-0.3833906,0.10956474,-0.26370755,-0.28858516,-0.72482413,0.1357871,916 -109,0.22104187,-0.13258417,-0.3760966,-0.20005402,-0.36723492,0.042041034,-0.24832115,0.2509107,0.18323992,-0.26643392,-0.074571095,0.06279805,0.024777897,0.37835386,-0.14262146,-0.53068435,-0.13177802,0.2175312,-0.6189476,0.44812787,-0.5708064,0.38715026,0.06965755,0.4097324,-0.058298394,0.43774122,0.18560886,-0.13290738,-0.08769935,-0.049848877,-0.1472123,0.35160345,-0.46350113,-0.00542517,-0.18063201,-0.28748718,0.057640817,-0.25913718,-0.2064633,-0.75434124,0.11129986,-0.7278481,0.4914682,-0.12818223,-0.23579493,0.098982245,0.3554474,0.4282481,-0.3471842,-0.004426023,0.19673914,-0.26502043,-0.09556091,-0.34735024,-0.07146154,-0.36443448,-0.45837063,-0.039905254,-0.67022705,-0.38601515,-0.2131377,0.24054109,-0.3179718,-0.05506617,-0.12159078,0.24341205,-0.40769607,-0.08132815,0.1971676,-0.2287114,0.2581088,-0.5018652,-0.019662548,-0.058443263,0.3461571,0.038785897,-0.21956727,0.45955276,0.21550126,0.36549738,0.1833689,-0.22874844,-0.297746,-0.1934798,0.23034966,0.3501364,-0.18338445,-0.25397378,-0.22255337,0.067397065,0.1545944,0.35681102,0.0010926574,-0.16137631,-0.042761303,0.01426206,-0.22019741,0.4153405,0.43408704,-0.21253744,-0.28538474,0.24876666,0.63568366,0.20636858,-0.41183335,0.035073422,-0.08857962,-0.5293324,-0.15088128,-0.049680673,-0.056331616,0.45426783,-0.07613075,0.054897416,0.8521899,-0.18858027,-0.11198081,-0.15633376,0.024265684,-0.050169274,-0.26223892,-0.13541985,0.10551162,-0.47814274,-0.04112211,-0.23496512,0.5141193,0.03876034,-0.6906905,0.3656147,-0.5429662,0.09198865,-0.014200762,0.5453399,0.67998403,0.51280963,0.29256144,0.7645125,-0.28305387,0.13393137,-0.09712562,-0.41849273,0.16221116,-0.27106196,0.015518181,-0.52129096,0.18390763,-0.12149683,0.07116703,0.15569858,0.45105398,-0.5495255,-0.03131334,0.18305646,0.698425,-0.39227712,-0.0046731587,0.6057273,1.0719273,0.97361314,-0.046325073,1.0035284,0.28573957,-0.21428813,0.19376759,-0.358072,-0.5239254,0.18379125,0.4184221,-0.031527273,0.37653828,-0.1316788,0.03598483,0.48134303,-0.34845912,0.01421231,0.0401094,0.38439307,0.18530281,-0.115454495,-0.5288378,-0.059226513,0.093104675,0.021914896,0.2509997,0.2329451,-0.25073984,0.35405177,-0.05957647,1.5334194,-0.020521875,0.086867884,0.07558117,0.4958005,0.35026628,-0.0710046,-0.06083726,0.5955106,0.33924997,0.013688166,-0.4738604,0.20666447,-0.30074787,-0.48358136,-0.034573145,-0.46733493,-0.16420406,-0.06433683,-0.46142703,-0.08973868,0.016550265,-0.31502125,0.37728912,-2.8074172,-0.29558703,-0.034427106,0.325444,-0.2513898,-0.23947567,-0.059178215,-0.44587946,0.355847,0.29845437,0.39556283,-0.54111123,0.5699698,0.61302805,-0.3966345,-0.19327028,-0.53208554,-0.19999737,-0.14201668,0.5624684,0.124044664,-0.08759618,-0.13969576,0.26250577,0.6409874,-0.075887926,0.1759477,0.43447214,0.29728973,0.0348097,0.57547456,-0.08430165,0.54249614,-0.1526711,-0.17456861,0.39438617,-0.31569064,0.07574165,-0.10655229,0.09467684,0.49918813,-0.33022082,-1.0117056,-0.5941537,-0.19751672,1.0561506,-0.44350964,-0.36991775,0.30258566,-0.2743551,-0.18648116,0.09557843,0.52970165,-0.03770484,0.33776143,-0.66264653,0.2226614,-0.08320419,0.10784227,0.007359432,0.055399485,-0.35505664,0.5723724,-0.078089595,0.5567186,0.29741848,0.23763597,-0.21944267,-0.2787451,0.12142731,0.65829754,0.29790068,-0.049951937,-0.033072483,-0.34561116,-0.017837986,-0.19211999,0.06479168,0.5248543,0.70854604,0.003929306,0.13398437,0.18639272,-0.10370883,-0.013560783,-0.22378156,-0.1337841,0.13738212,0.12742722,0.45332372,0.75979483,-0.21433714,0.3812092,-0.15329848,0.4204298,-0.05151207,-0.6488435,0.5115732,0.5212569,-0.22073235,-0.06824006,0.54750454,0.50132656,-0.3931572,0.43850684,-0.66833377,-0.23368579,0.71884763,-0.20907182,-0.38220835,0.2908433,-0.19661973,0.15693915,-0.7874524,0.2131499,-0.22074138,-0.28627223,-0.49467683,-0.19736427,-3.74024,0.101430625,-0.085188285,-0.14586264,-0.15239693,0.05198519,0.3603288,-0.7069524,-0.51196283,0.03989251,0.17075521,0.5368632,-0.14506154,-0.004904203,-0.32653588,-0.27550685,-0.03199721,0.3520293,-0.037814554,0.21040845,-0.27330878,-0.45901608,-0.10851304,-0.1840086,-0.72905314,0.1421888,-0.5029163,-0.4713733,-0.08234553,-0.46170515,-0.13114104,0.67075604,-0.34718046,-0.001948107,-0.19665754,0.04433568,-0.11882031,0.16103373,0.26001713,0.25391674,0.23789823,-0.008777883,0.16219237,-0.3727894,0.35589638,0.0073095113,0.23544265,0.10265003,0.023350772,0.12617192,0.48630694,0.7295331,-0.18992169,0.9599861,0.33613572,-0.16160497,0.2788656,-0.3734162,-0.27241603,-0.6084956,-0.36800304,-0.1481939,-0.40417868,-0.46515068,-0.035057418,-0.36611027,-0.712372,0.67065245,-0.009228483,0.3034219,-0.09967684,0.28119135,0.34271663,-0.18076184,-0.07971243,-0.09744718,-0.24681436,-0.48490432,-0.29919338,-0.68492085,-0.6107948,-0.023561198,0.9028691,-0.22652072,0.024534605,-0.17328197,-0.1667434,0.006495975,0.1085563,0.12784518,0.34341794,0.36256734,-0.016446665,-0.69359773,0.43459818,-0.015745025,-0.17204405,-0.49820927,0.04771624,0.53317994,-0.6760758,0.6111502,0.29972526,-0.0016305409,0.002495531,-0.5709877,-0.13668916,0.024608314,-0.2570097,0.5703814,0.10004715,-0.8146696,0.5351864,0.24255937,-0.49327934,-0.58964497,0.35586736,-0.2279345,-0.27433097,-0.2201798,0.33878204,0.1300366,-0.011667791,-0.25566685,0.21413058,-0.41821992,0.21261929,0.23098174,-0.10228505,0.3976629,-0.077566914,-0.15326424,-0.8045027,-0.04659919,-0.46364146,-0.30657318,0.24143638,-0.0011176076,-0.014409616,0.18863061,0.06836511,0.37955242,-0.2781932,0.07183711,0.06519721,-0.35223928,0.21342745,0.54296815,0.32181078,-0.3560846,0.5326177,0.10613463,-0.20197871,-0.01095178,0.0042371564,0.41150808,-0.06601819,0.3873635,-0.19496211,-0.15337244,0.43849155,0.66342,0.19899394,0.41946107,0.07769913,-0.25204363,0.344518,-0.04653491,0.080928355,0.03755364,-0.45768723,0.08721231,-0.07805847,0.1823546,0.5574641,0.3834755,0.3460922,0.18715434,-0.18411757,0.062469155,0.32029852,-0.080112174,-1.267316,0.33595932,0.36861068,0.8790759,0.3849638,0.23326081,-0.05571967,0.5767222,-0.40149724,0.059869096,0.3918721,-0.04764407,-0.43222988,0.7340878,-0.74740237,0.389265,-0.12073299,-0.080796115,0.15474387,0.030355634,0.4566003,0.7976831,-0.13245706,0.04278186,0.13557258,-0.1264829,0.07261377,-0.197337,-0.03082485,-0.30764133,-0.3284105,0.4872592,0.43709248,0.37155965,-0.20249632,0.019385412,0.198784,-0.20257394,0.23455022,-0.08268532,0.074058816,0.10058071,-0.44011346,-0.24846162,0.4370878,0.108167626,0.22881263,-0.036617476,-0.25638944,0.11510345,-0.085087895,-0.09808227,0.06685874,-0.46854526,-0.034442917,-0.13581084,-0.49412045,0.6270281,-0.29473758,0.17630379,0.13537341,0.01370215,-0.24021327,0.14979264,0.0164209,0.7163748,0.08268696,-0.1680093,-0.22583356,0.025771871,0.044217337,-0.2549243,-0.0069153085,-0.39831176,0.11539726,-0.5363827,0.5144967,-0.184401,-0.34370252,0.12750486,-0.2861957,-0.0781658,0.46965626,-0.07490802,-0.29495203,-0.04981734,-0.009157769,-0.37317985,-0.08855837,-0.2883242,0.24764983,0.10925998,-0.09568279,-0.016676098,-0.1534349,-0.15306616,0.69542694,-0.035748143,0.4703808,0.2633663,-0.16708031,-0.25586814,0.093088716,0.34873226,0.30381253,0.08895537,0.115602136,-0.28034413,-0.41920397,-0.39793456,0.2430343,-0.22294214,0.2395936,0.08712895,-0.26857796,0.91139966,-0.042432997,1.1561253,0.0075649098,-0.41113073,0.19267693,0.5585066,-0.059795007,0.13340658,-0.4531984,0.8348719,0.56146157,-0.1896185,-0.12086217,-0.48714107,-0.04960672,0.3027426,-0.4558743,-0.13971247,-0.1445072,-0.6322966,-0.4744858,0.15336254,0.16360703,0.28433084,-0.032681286,-0.1052438,0.05577688,0.110498175,0.32083094,-0.5184386,-0.26615497,0.31877854,0.292513,-0.24451283,0.063555166,-0.36225542,0.48859897,-0.3973998,0.13113892,-0.40817595,0.10350711,-0.2909239,-0.28073755,0.14452492,-0.044470716,0.2047784,-0.14789343,-0.3737833,-0.061515927,0.3419801,-0.055028174,0.10686902,0.6169755,-0.2576424,0.11173195,0.08839859,0.4501239,1.1491249,-0.41396382,0.009706631,0.420269,-0.41366833,-0.60794795,0.32820618,-0.28904504,0.0075200424,0.023104195,-0.49482137,-0.49834162,0.21339445,0.046738666,0.016406953,0.044118233,-0.41416904,-0.043557398,0.4061264,-0.26399153,-0.11153664,-0.09942213,0.30795887,0.73154306,-0.341306,-0.3639122,0.039157063,0.31835717,-0.2614797,-0.46673822,-0.052255243,-0.13962643,0.48530686,0.15316261,-0.333382,-0.032679893,0.23953462,-0.49926177,0.09896672,0.39270288,-0.34422538,0.13475631,-0.18303333,-0.028634254,0.8925899,-0.2215828,-0.08729808,-0.62280464,-0.48523575,-0.9442431,-0.4108209,0.22564334,0.15818092,-0.11863479,-0.4486669,0.09311427,-0.14164197,-0.23842563,0.03888827,-0.4841021,0.28820226,0.20038444,0.51474565,-0.25748855,-0.7959789,0.060325664,0.12461272,-0.15430662,-0.60814744,0.747574,-0.24324231,0.75831944,0.019857313,-0.0059736874,0.15241255,-0.3226406,0.14592153,-0.3168915,-0.063085794,-0.7995783,0.002300948,923 -110,0.4837763,-0.13054276,-0.3743717,-0.13382354,-0.29302353,0.16380695,-0.16888033,0.6013732,0.1814766,-0.37420857,-0.17026988,-0.23926635,0.019219436,0.35273108,-0.032173585,-0.33183512,0.050993297,0.22549678,-0.46360287,0.3862008,-0.45676926,0.15342137,-0.08670674,0.42371833,0.19240507,0.14132404,0.038051926,-0.004904514,-0.10650194,-0.09729461,-0.058635414,0.2830956,-0.4305432,0.14364499,-0.25267255,-0.29217336,-0.1173728,-0.49576262,-0.32179356,-0.6624674,0.19654302,-0.7384462,0.43573475,-0.0390983,-0.30723113,0.39477283,-0.045273088,0.24552736,-0.22498682,-0.013012344,0.08588587,-0.14545986,-0.1175538,-0.11422994,-0.2588223,-0.30639338,-0.44422373,0.124834105,-0.3889733,-0.06022218,-0.24232034,0.072634414,-0.2161494,0.01862111,0.044157855,0.29645255,-0.4123922,-0.037363566,0.13718727,-0.00076510385,0.21881592,-0.52948666,-0.08291741,-0.18473217,0.31572035,-0.15111654,-0.35746157,0.24146491,0.26496124,0.49774027,-0.12156439,-0.091993354,-0.2788075,-0.013011668,0.040025786,0.4263227,-0.12589295,-0.38411522,-0.15579903,-0.0861917,0.33566988,0.20368838,0.15877414,-0.10797426,-0.26020437,-0.08276709,-0.20316592,0.29682022,0.5304754,-0.3801867,-0.22849096,0.35639971,0.5823481,0.34651554,-0.13616088,0.12322593,0.025002135,-0.5753614,-0.12454966,-0.06233402,-0.23323269,0.45309117,-0.19166611,0.24936157,0.5582199,-0.13319296,-0.040193357,0.12779233,0.036611613,-0.110354856,-0.21220909,-0.16371915,0.23020361,-0.4090333,0.12207153,-0.10307327,0.6105331,0.1755456,-0.656602,0.31452763,-0.53932416,0.14753272,-0.0801152,0.57265675,0.85549283,0.40521842,0.2847488,0.68556535,-0.30019748,0.05918112,-0.14235993,-0.18562846,0.060177848,-0.21772462,-0.11803693,-0.5105171,0.052153032,0.042624816,-0.14664856,0.17809224,0.42321724,-0.5001931,-0.11751489,0.20304601,0.6220741,-0.2731465,-0.1681836,0.8008867,0.96488714,0.9079512,0.07092089,1.0246873,0.0918611,-0.1382167,0.2641712,-0.22572741,-0.6514147,0.28071105,0.31672874,0.2764951,0.17621744,0.2199004,0.005213218,0.36843675,-0.50202864,0.0036742054,-0.12638003,0.036191493,0.11487744,-0.02753672,-0.35972947,-0.2555259,-0.11609025,0.09219764,0.0056869164,0.2432936,-0.21868551,0.38851398,-0.053786583,1.5622597,0.052592784,-0.013744265,0.051871255,0.47897637,0.125523,-0.16320439,-0.18229729,0.36106777,0.3193438,-0.081430756,-0.48964188,0.11505164,-0.14920811,-0.50405717,-0.016559795,-0.36160907,-0.21182992,-0.090427525,-0.54256845,-0.14194097,0.01493502,-0.40424287,0.5427287,-2.9295983,-0.2376806,-0.026809815,0.3224451,-0.14377472,-0.25038505,-0.16717106,-0.33536124,0.2722362,0.4143067,0.41292274,-0.5994443,0.33298782,0.30852836,-0.5190536,-0.09505069,-0.5866907,-0.13539267,-0.022835888,0.22517408,0.08338265,-0.027637228,0.06210123,0.17707063,0.5529734,0.06665928,0.12769374,0.2929169,0.36310345,0.023004971,0.34415647,-0.07618599,0.450733,-0.24487999,-0.26757136,0.3076927,-0.29564255,0.23802334,-0.088938996,0.1361633,0.45255774,-0.42487353,-0.8710928,-0.63953805,-0.17709704,1.1696779,-0.2588591,-0.35450906,0.23662388,-0.5437482,-0.19657081,-0.13656265,0.5491578,0.008963279,-0.054778755,-0.7465188,-0.04153043,-0.04072128,0.14772068,-0.10605361,-0.0064500384,-0.32907498,0.72637594,-0.15855631,0.43584302,0.31079432,0.097917125,-0.09450726,-0.39952064,0.0441083,0.735585,0.3409452,0.14686428,-0.28681248,-0.22673124,-0.44565544,0.053932518,0.15240176,0.4144777,0.56327426,-0.027958162,0.19938844,0.22881809,0.012668377,-0.08045549,-0.16625322,-0.076699644,-0.073398404,-0.037298903,0.5134498,0.62708765,-0.13737251,0.47145584,-0.08941637,0.14212868,-0.2161436,-0.44714782,0.46677163,0.7175052,-0.2587725,-0.14882198,0.53005975,0.55816257,-0.21404156,0.36694196,-0.6750507,-0.3211152,0.46354568,-0.09697704,-0.3519322,0.25788414,-0.3104447,0.17375831,-0.8407056,0.22294955,-0.02562689,-0.5063428,-0.5287409,-0.05706361,-3.0447953,0.18383585,-0.08664709,-0.27469704,-0.025788926,-0.26207703,0.25212583,-0.4568206,-0.5227566,0.054973163,0.0215308,0.7724054,-0.09925931,-0.019831747,-0.22914715,-0.434955,-0.36996523,0.113554165,0.072774164,0.47498876,-0.07750878,-0.38824433,-0.02304846,-0.23741856,-0.27864796,-0.070002615,-0.5502839,-0.4181043,-0.21479826,-0.38477823,-0.18978493,0.51422596,-0.3953754,0.030928934,-0.28516757,-0.08251702,-0.057409607,0.29187047,0.07869114,0.012058027,0.09284272,-0.094699875,0.014675744,-0.24990648,0.25184992,0.036669023,0.07544512,0.43745267,-0.07720066,0.28223416,0.61990047,0.60809934,-0.22352338,0.87796366,0.4738622,-0.021205202,0.30591556,-0.20741974,-0.21641842,-0.43333498,-0.19137843,-0.037920088,-0.52410173,-0.4251744,-0.07659709,-0.3208692,-0.7911659,0.4678989,-0.13289931,0.1307941,0.071693614,0.23908396,0.5950781,-0.23790303,0.020127438,-0.1112065,-0.08113138,-0.45606017,-0.4262659,-0.5933192,-0.4258847,0.1093759,1.0607263,-0.17639409,0.060782194,0.091034174,-0.16393133,0.013075485,0.06593953,0.077984594,0.08614348,0.36925545,-0.16474694,-0.4743475,0.4016956,-0.13513134,-0.19541362,-0.56378007,0.12653768,0.49173486,-0.5860842,0.4390688,0.36379075,0.07627508,-0.1475734,-0.61332834,-0.16374701,-0.16982548,-0.28078133,0.36952183,0.23000523,-0.83155626,0.49432364,0.306513,-0.15724567,-0.7591249,0.5414626,-0.10005529,-0.21883765,0.03804161,0.2625816,0.13410784,0.014547138,-0.17786992,0.18016328,-0.41841766,0.3457772,0.27342194,-0.037410907,0.29572928,-0.3169787,-0.038734414,-0.5823355,-0.17605463,-0.48567232,-0.2247521,0.18534923,0.12068936,0.18967852,0.13854803,0.13624862,0.34495735,-0.3337397,0.09407629,-0.10190093,-0.21618034,0.2751428,0.42581326,0.5637073,-0.3378356,0.5915611,0.0030845087,-0.07846172,-0.046696108,-0.04461203,0.3091375,-0.050505012,0.3641544,0.018752575,-0.2468719,0.116419226,0.7688757,0.2209444,0.34621796,-0.004088726,-0.25192153,0.23419727,0.11218052,0.260941,-0.08651738,-0.4788695,0.018278878,-0.34313804,0.1647267,0.3559572,0.1521256,0.27791882,-0.02556058,-0.20481163,0.02710819,0.062966794,-0.05235767,-1.2534649,0.24226655,0.20774326,0.81076247,0.40290633,-0.025813192,0.0879869,0.58812165,-0.14247172,0.10103309,0.3905856,0.0134532675,-0.4983071,0.42616892,-0.7310687,0.5385201,-0.13534391,-0.064566635,0.12313878,-0.074712396,0.47713482,0.7054833,-0.14020197,0.0066036787,0.19848399,-0.3324036,0.17786041,-0.37385178,0.032463737,-0.6670412,-0.19089778,0.6097052,0.44042927,0.32584733,-0.24860084,0.026504826,0.01886399,-0.13321595,0.029474005,0.09599243,0.14180104,-0.14415888,-0.66385716,-0.103483126,0.44637045,-0.023194429,0.13522053,0.07355725,-0.29975906,0.15002963,-0.15140006,-0.10506934,-0.04555869,-0.51297677,-0.18336125,-0.2939423,-0.44468912,0.45330408,-0.175338,0.40137938,0.23573893,-0.0061554024,-0.24076712,0.44181332,0.12994328,0.7496761,0.07671708,-0.13064069,-0.2973569,0.2543014,0.2516809,-0.19862492,-0.20076191,-0.20519568,-0.06341762,-0.43568677,0.34870684,-0.14754659,-0.36462083,0.16471413,-0.0684125,0.017759815,0.4396885,0.02345189,-0.102084376,-0.07884568,-0.194363,-0.27053738,-0.06922804,-0.10123651,0.35225955,0.056550752,-0.15905568,-0.1189484,0.013143782,0.09483361,0.3581669,-0.00044236332,0.30377376,0.33022806,0.065971315,-0.2924561,-0.019101862,0.049699232,0.49629405,-0.004331207,-0.20689277,-0.2764871,-0.35561067,-0.31007868,0.14562541,-0.13306151,0.37122053,0.17673963,-0.10333543,0.7120188,-0.011741411,0.9529859,0.08311955,-0.27470943,0.20926788,0.4414964,0.06039977,-0.08067811,-0.3346842,0.69386184,0.31944853,-0.056757595,-0.16293767,-0.20038,-0.019465808,0.2072185,-0.19342232,-0.23409511,-0.08843161,-0.61988723,-0.17011392,0.23183854,0.23633943,0.30522862,-0.14199816,0.10371652,0.31201112,-0.068130456,0.28230935,-0.26099277,-0.15156537,0.3983692,0.29894045,-0.056828175,0.07512303,-0.30545086,0.4467715,-0.5685471,-0.18064252,-0.2319034,0.18905029,-0.24515012,-0.40195906,0.20713395,0.14965303,0.35621667,-0.18733773,-0.23212244,-0.34927988,0.46576437,0.12415297,0.20375068,0.35169613,-0.18950999,-0.022995822,0.076257266,0.3361108,0.9644681,-0.2701202,-0.03204511,0.3669685,-0.21893972,-0.5241178,0.4219696,-0.5009935,0.3904143,-0.018966418,-0.14226963,-0.5309374,0.30935642,0.19904079,0.10439494,0.072050154,-0.5523756,-0.09168984,0.27846968,-0.16944773,-0.17835297,-0.32318193,0.07974889,0.5277694,-0.1487049,-0.35128158,0.030019121,0.31736705,-0.18396182,-0.5224314,0.12793148,-0.36257416,0.21895266,-0.0955152,-0.34049943,-0.027228922,0.0008947626,-0.41844627,0.15333602,0.116385415,-0.28015646,0.12809674,-0.449223,0.19852851,0.94257057,-0.1929034,0.22998884,-0.45061272,-0.51905715,-0.85150063,-0.2578541,0.45257717,0.26557463,-0.027523696,-0.53196925,0.08519125,-0.12808189,-0.28992805,-0.09436465,-0.25480273,0.41277534,0.15730974,0.34056503,-0.024546735,-0.68769455,0.14773437,-0.07156797,-0.28328064,-0.43774408,0.48446718,0.012321252,0.8608335,0.1562739,0.11305862,0.15567179,-0.4835959,0.057414167,-0.15900533,-0.0014420673,-0.5004947,0.08435792,925 -111,0.31983894,-0.27042472,-0.5075626,-0.12465503,-0.35954788,0.09869696,-0.3303897,0.10534353,0.20134914,-0.26136208,-0.22644475,-0.016307535,0.028895535,0.25044337,-0.064970866,-0.60111874,-0.2038604,0.17776519,-0.78895974,0.5079206,-0.49001357,0.2949051,0.16899104,0.3312953,0.036869492,0.22208858,0.18219566,-0.10614971,-0.13509084,0.0033445433,0.02141187,0.21684647,-0.6938772,0.1453424,-0.23795952,-0.17244789,-0.04021634,-0.2824129,-0.3148242,-0.7019167,0.18647799,-0.8661084,0.5593778,-0.28260306,-0.15918696,-0.051421426,0.24205814,0.5548228,-0.23881087,0.0769552,0.25408664,-0.1712609,-0.18212414,-0.26922965,0.18362837,-0.38908768,-0.36976248,-0.003994273,-0.53512406,-0.25727624,-0.18173225,0.2765878,-0.18712464,-0.0013066158,-0.22316955,0.450945,-0.4384751,-0.12360604,0.4270401,-0.12309641,0.3763596,-0.5859213,0.04407473,-0.10175629,0.49581486,0.00767339,-0.18594365,0.30803555,0.24081406,0.33104414,0.22496691,-0.27806216,-0.14213765,-0.15426277,0.3477748,0.2642458,-0.019820103,-0.18567374,-0.27714488,0.10512224,0.2382245,0.16255926,0.13007873,-0.43708834,0.04969331,-0.035555765,-0.23308653,0.55857927,0.42302918,-0.20378432,-0.22186781,0.24728823,0.7111295,0.35886046,-0.27322918,0.07909805,-0.03754144,-0.46525282,-0.12519991,0.23142457,-0.07788132,0.4745166,-0.14778034,0.036527492,0.75797856,-0.12110113,-0.056182973,-0.00024680048,-0.07595666,-0.19497457,-0.2492256,-0.13698475,0.066268094,-0.53456795,0.04995409,-0.19851428,0.64583766,0.112668365,-0.69669676,0.3818117,-0.54661745,0.17015117,-0.05633856,0.5984517,0.7700349,0.4305593,0.20565033,0.8745997,-0.27937883,0.17024225,-0.0023241192,-0.48706424,0.12329867,-0.31660366,-0.0027842075,-0.45413637,0.09832656,-0.24653432,0.062516466,-0.13682567,0.25905657,-0.49929965,-0.047738083,0.16495147,0.72722083,-0.30346903,-0.05464936,0.5596145,1.0893341,0.9992981,0.10869864,1.3033595,0.3649241,-0.25994876,-0.021549962,-0.31199408,-0.6778451,0.2097232,0.3012322,0.04327894,0.39681476,-0.07095243,0.05457641,0.37062147,-0.5101906,0.12008125,-0.051603258,0.40569225,0.14598596,-0.02397278,-0.36318082,-0.05889275,0.1611194,-0.062018573,0.13993496,0.053926215,-0.16018288,0.3167167,0.112350196,1.3335308,-0.2377177,-0.009924087,0.044164844,0.45235574,0.294388,-0.13773303,-0.0034397785,0.40765908,0.49787632,-0.14004654,-0.5531076,0.30379465,-0.26528206,-0.45232555,-0.21770196,-0.33490476,-0.06198132,0.12310371,-0.3369611,-0.18980908,0.112795874,-0.20349105,0.4359616,-2.7459726,-0.3390294,-0.07347818,0.21805483,-0.40082198,-0.23836085,0.0044630505,-0.48280883,0.27898094,0.21443,0.38907528,-0.64842975,0.622262,0.4805569,-0.4706427,-0.05226788,-0.6054236,-0.1636257,-0.050036445,0.50343233,0.09013684,-0.094152115,-0.19067493,0.28365755,0.5482343,-0.16262828,0.15778627,0.5226587,0.17831144,0.10529906,0.59731996,0.07380624,0.601766,-0.18680406,-0.07689103,0.5060271,-0.2038742,0.15600911,-0.10269608,0.03327017,0.5216794,-0.37460247,-0.78632814,-0.7410159,-0.40102607,1.0206379,-0.4311206,-0.56111586,0.08961724,-0.14483961,-0.064680636,0.122629,0.4662427,-0.015889332,0.14175919,-0.8300841,-0.008957267,0.0130710825,0.29366264,0.016001325,-0.13039345,-0.41104746,0.7112738,-0.020430364,0.5807885,0.26655322,0.33487004,-0.083887875,-0.53546983,0.14195691,0.89976454,0.35456076,-0.067253515,-0.3168478,-0.2590527,-0.06965564,-0.08176144,-0.040813822,0.54527456,0.65090215,0.016665127,0.059513666,0.25786594,-0.19159397,0.02879756,-0.22707126,-0.2637129,0.037852004,-0.10910171,0.48321813,0.6760801,-0.15336566,0.51497674,-0.30656523,0.3384043,0.027470194,-0.61097795,0.7545452,0.63956,-0.19918095,-0.113527045,0.43427038,0.40275848,-0.37576538,0.38527417,-0.6384742,-0.22633074,0.7050106,-0.1373766,-0.4212531,0.26106763,-0.28282475,0.24922784,-0.8904846,0.31384423,-0.37291878,-0.3078479,-0.504694,-0.13131201,-3.0650485,0.14947414,-0.10463761,-0.1566425,-0.37375528,-0.08511549,0.31790116,-0.4746703,-0.58700466,0.15872082,0.20368454,0.5874915,-0.029276682,0.10570623,-0.2874932,-0.19440109,-0.13808882,0.20434615,0.08312563,0.20408219,-0.15135492,-0.39023638,-0.08276993,-0.21639216,-0.43393993,0.20130411,-0.53361195,-0.45617637,-0.07470347,-0.3983306,-0.33294386,0.639272,-0.35497376,-0.049559303,-0.22372131,0.084328264,-0.08667193,0.25343305,0.091111675,0.3099163,0.22290722,-0.0053441226,-0.05390977,-0.36567265,0.401618,0.016593974,0.22489566,0.1546687,0.0067924,0.17031014,0.39767936,0.65407485,-0.24361101,0.7887286,0.49389997,-0.007970192,0.21608415,-0.24547103,-0.29739588,-0.5531235,-0.2750129,-0.10723184,-0.439829,-0.50087106,-0.06892122,-0.33513874,-0.7585257,0.5758559,0.04384002,0.3088824,0.056163512,0.21701935,0.40264416,-0.126289,0.031541575,-0.12670636,-0.15785521,-0.5444206,-0.39636,-0.61182046,-0.4997099,-0.1285716,0.9948765,-0.26022425,0.06098059,-0.08692337,-0.5050355,0.08145652,0.18713588,0.067411646,0.35025352,0.5569475,-0.010410806,-0.6630987,0.31455088,-0.011452582,-0.071286574,-0.47117925,0.16195777,0.7251797,-0.67877364,0.58720946,0.35145706,-0.023742229,-0.1381575,-0.46801206,-0.20054695,0.01803632,-0.3949078,0.5313129,0.07320753,-0.7110412,0.4272664,0.16675323,-0.38449,-0.70508945,0.39486,-0.09311649,-0.2455434,-0.024212278,0.28920674,-0.05065487,-0.0024215113,-0.22526535,0.15324098,-0.4296446,0.22074105,0.21539445,-0.024362028,0.22416419,-0.12475215,-0.2900634,-0.6595659,0.025782283,-0.52108896,-0.25915006,0.28896883,0.08353533,0.00016170368,0.092068516,0.16882177,0.4783729,-0.2237907,0.13843995,0.005627744,-0.331727,0.23651159,0.5300233,0.2230367,-0.36158082,0.4689889,0.093163446,-0.12511204,-0.096506536,0.10510512,0.40715033,0.12691996,0.2683519,-0.022375971,-0.011218168,0.37139538,0.64143485,0.098337874,0.5060915,-0.023033544,-0.22683056,0.4543826,-0.075491294,0.2838642,0.030175216,-0.4485067,0.015486177,-0.06281382,0.30640015,0.44740272,0.34575975,0.29038975,0.07916332,-0.2646099,-0.024487793,0.24284597,-0.12337829,-1.2151436,0.48019904,0.3726914,0.86198306,0.48736048,-0.036444858,0.035439868,0.64659023,-0.27773744,0.13926068,0.34350464,0.040277347,-0.4468277,0.6221854,-0.7098468,0.25420952,-0.17106539,-0.08968103,0.1299396,0.1334985,0.26458526,0.84725124,-0.28327566,0.046868242,-0.07356002,-0.04509095,-0.07888903,-0.25193614,-0.0045601428,-0.33407164,-0.48998243,0.61454445,0.45410693,0.3418192,-0.33316278,0.042527832,0.024397023,-0.23275828,0.28739747,-0.057181433,-0.012532325,0.15055981,-0.49816507,-0.33482343,0.5041864,-0.14365959,0.08576816,-0.105221584,-0.1861261,-0.013714317,-0.1570096,0.033996657,-0.028716898,-0.6369704,-0.06449175,-0.15150347,-0.3367569,0.46750477,-0.28735888,0.10941644,0.20512046,-0.019140545,-0.14115912,0.32034877,0.009653829,0.65904444,0.24444722,-0.22051385,-0.31874985,-0.03081774,0.23014833,-0.28816566,0.032385997,-0.39415184,0.09006047,-0.52311116,0.629568,-0.06485973,-0.38379484,0.27389574,-0.23196863,-0.12567443,0.56893134,-0.17258349,-0.14171791,0.23982213,-0.10404374,-0.25357357,-0.08645759,-0.31873435,0.20365776,0.36209488,-0.02199231,-0.05327199,-0.29156244,-0.15268773,0.60264117,0.07619102,0.4483645,0.41178596,-0.095220685,-0.37127683,-0.027585324,0.3392338,0.5077565,0.20794468,-0.0025231577,-0.23356415,-0.37330788,-0.2777443,0.2931673,-0.09382407,0.104757875,-0.04122395,-0.3283974,0.8259741,0.14342439,1.1525353,0.08035718,-0.30483055,0.12287155,0.46702862,-0.04444751,0.1281414,-0.54593575,0.59403324,0.5568951,-0.039688863,0.01960583,-0.44653487,-0.13874738,0.19129968,-0.2603051,0.08518029,-0.14068322,-0.669133,-0.46503258,0.24157676,0.1775154,0.07114927,0.048437484,-0.11678936,0.039592177,0.049498864,0.42753312,-0.58070284,-0.11542799,0.14590898,0.15735039,-0.11376025,0.09964562,-0.41822836,0.42301297,-0.6884365,0.01212775,-0.3002667,-0.010542594,-0.18852665,-0.26787543,0.08316225,0.004797671,0.27944133,-0.40942287,-0.44098422,-0.14283356,0.4837083,-0.026259296,0.22975197,0.7402185,-0.19411208,0.21170445,0.14205027,0.41599783,1.144747,-0.40066147,0.05046332,0.20951733,-0.40162832,-0.5496966,0.34055302,-0.28974164,0.097899094,-0.083672896,-0.4943345,-0.55751395,0.23314646,0.0072180256,0.06984766,-0.007860031,-0.62893367,-0.09104942,0.46321142,-0.3745718,-0.16275221,-0.25339228,0.29113337,0.60890466,-0.35002965,-0.33450836,0.0005160123,0.2733901,-0.32745773,-0.38644055,-0.082365885,-0.2599169,0.40807363,0.12925352,-0.17199625,-0.13598202,0.25370258,-0.5066824,0.08283764,0.28704804,-0.3051819,0.07986401,-0.013609223,-0.035666406,0.8830726,-0.17990881,-0.17432061,-0.6634737,-0.44994462,-0.9348224,-0.38062447,0.19667313,0.18079042,0.022829514,-0.5591184,-0.029018506,-0.18469554,-0.01913376,0.11263969,-0.57280445,0.37264025,0.1271202,0.5693084,-0.20100127,-0.95707804,0.06391373,0.0624849,-0.055186197,-0.66371226,0.6539918,-0.05986209,0.79838866,0.013028016,-0.032453034,-0.09450997,-0.39877933,0.18907185,-0.35125208,-0.11516915,-0.82964486,0.102341466,929 -112,0.40242302,-0.18462116,-0.5417799,-0.11530328,-0.1772289,0.3679883,-0.18074472,0.49735114,-0.032984044,-0.5438507,-0.16636294,-0.023585683,-0.03489162,0.37296087,-0.20749979,-0.43615356,0.1088513,0.16295876,-0.5632918,0.68031895,-0.4707954,0.1964277,-0.064971834,0.38028508,0.26922405,0.1081929,0.14057106,-0.04359507,-0.42317492,-0.14247513,-0.18592276,0.5424858,-0.37878662,0.08252042,-0.19870216,-0.30108228,-0.12087944,-0.33007324,-0.37408853,-0.6909313,0.08504571,-0.85150623,0.53202677,-0.17529248,-0.2880252,0.2837058,0.40414214,0.29088122,-0.28458,-0.016864553,0.083071455,-0.19987726,-0.12434755,-0.28623918,-0.2569784,-0.54844093,-0.58750254,0.14205611,-0.534014,-0.095369466,-0.19898425,0.26871908,-0.20544152,-0.05620254,-0.13458574,0.5915925,-0.5161108,0.08337018,0.12588286,-0.014238773,-0.02265086,-0.70828766,-0.18847118,-0.24763264,0.20458487,-0.06942861,-0.20856543,0.19922492,0.47894555,0.518975,-0.017536711,-0.13022396,-0.43325743,-0.041607566,0.032436296,0.40808818,-0.21925163,-0.5200486,-0.22156502,0.010295193,0.3060264,0.03982424,0.14088571,-0.28580377,-0.051218778,-0.01822155,-0.37230778,0.26829687,0.4590108,-0.49940854,-0.30393064,0.39050865,0.43401578,0.15387204,-0.37389848,-0.0386918,-0.0653016,-0.6008194,-0.025307052,0.24445802,-0.1592918,0.60729235,-0.21051605,0.083377175,0.5269328,0.0209452,-0.04547743,0.10376642,0.1611786,0.07326546,-0.2251432,-0.2486106,0.061800346,-0.21969475,-0.04263508,-0.15064561,0.7198249,0.108560525,-0.6196657,0.34798586,-0.5340852,0.08491323,-0.032057695,0.44453347,0.6055735,0.5211297,0.16867042,0.6064865,-0.13662457,0.072717845,0.028472152,-0.17973572,0.023383765,-0.28643852,-0.10652168,-0.47517893,0.2600266,0.014293544,-0.10965012,0.031909764,0.7518529,-0.56092125,-0.17936185,0.09717731,0.845088,-0.2640609,-0.3202141,0.8430639,0.91765094,1.0113564,0.01705388,1.2058277,0.28669655,-0.15856351,0.12659675,-0.3971418,-0.5154924,0.2652866,0.34014216,-0.29888713,0.32873756,0.098165624,-0.15609603,0.52147794,-0.37064117,-2.4815556e-05,-0.3037773,0.1441822,0.21204486,0.07683663,-0.4179057,-0.37913987,0.056345068,-0.031973653,0.23154718,0.23945433,-0.30692294,0.34170386,0.022942195,1.5940062,-0.10069591,0.00091801956,0.023550991,0.49615258,0.21612793,-0.028776187,0.09061247,0.2912568,0.30397704,0.02446721,-0.39026952,0.12438811,-0.2779294,-0.61074054,-0.110293515,-0.35987377,-0.18790528,-0.07461649,-0.6428648,-0.16661763,-0.020470709,-0.21637666,0.48606676,-2.7145705,-0.18461159,-0.116671205,0.2973389,-0.2801693,-0.39514512,-0.23230475,-0.41863436,0.377728,0.29142386,0.4849968,-0.573619,0.5179254,0.26268905,-0.40702522,-0.12148993,-0.6222937,-0.14069033,-0.04415942,0.51979005,-0.0040026773,-0.021972332,0.19726206,-0.001957573,0.6164951,-0.2794295,0.18893184,0.26173162,0.21151444,0.02946715,0.4922341,0.046549514,0.6449663,-0.35107732,-0.26401424,0.42956227,-0.55944973,0.35922456,-0.045847178,0.1422254,0.45864147,-0.45494533,-0.9120235,-0.6703683,0.003714189,1.1641713,-0.25927755,-0.40109408,0.012752992,-0.28088126,-0.1823314,-0.06784764,0.4617027,-0.14354558,0.0063009635,-0.82220185,0.051768616,0.033580672,0.24614006,-0.14800131,0.14117467,-0.33169055,0.5983242,-0.09331496,0.44682318,0.27145973,0.24284416,-0.37518215,-0.4265048,-0.07005943,0.9417832,0.4216826,0.124942034,-0.1978567,-0.33841556,-0.37660685,-0.09088791,0.094541505,0.6367806,0.41727608,0.07068263,0.09275706,0.2994001,-0.09058697,0.07887293,-0.2945669,-0.2745813,-0.111361764,0.20726873,0.5571118,0.5304824,-0.14093268,0.5961425,-0.1604013,0.41454598,-0.11559586,-0.39749533,0.47588438,1.0595093,-0.27965948,-0.30819756,0.5630086,0.619316,-0.24837163,0.315758,-0.66610175,-0.44698614,0.5578182,-0.18094245,-0.26041302,0.22619997,-0.32894862,0.12557968,-0.87579465,0.43905243,-0.3249041,-0.35291183,-0.6921656,-0.106055975,-3.3440423,0.17876357,-0.17667243,-0.05558096,-0.09325495,-0.25866756,0.19297922,-0.58942705,-0.41815683,0.06795146,0.1766774,0.50287414,-0.12601656,0.085339405,-0.2644282,-0.3190291,-0.19639999,0.26683784,0.17587428,0.3929807,-0.17547122,-0.54682297,0.059688777,-0.2668855,-0.29603118,0.026635978,-0.81248826,-0.53533113,-0.06674227,-0.58835703,-0.36775166,0.7056657,-0.51213604,0.023859773,-0.1617581,0.10721865,-0.051792584,0.23002483,0.043381028,0.10925375,0.07674845,-0.17760865,0.102890104,-0.3520003,0.18729377,-0.02053029,0.16234016,0.48687577,-0.01941111,0.21895431,0.60328346,0.5633619,-0.016098648,0.8721205,0.5683435,-0.11371462,0.38845757,-0.20387265,-0.16737014,-0.46482155,-0.28985828,-0.046704322,-0.3865962,-0.44044796,-0.043032788,-0.34967864,-0.79870105,0.5523062,-0.12258166,0.07851653,-0.131437,0.47349873,0.5989216,-0.1809797,-0.02738195,-0.07048525,-0.15433201,-0.42737526,-0.5708316,-0.6067896,-0.5033155,-0.02441288,1.10373,-0.21657121,-0.08279635,-0.06592082,-0.22711605,-0.18892853,0.2641228,0.09028428,0.13476303,0.5755825,-0.2947744,-0.7209252,0.4003001,-0.3025373,-0.117963,-0.29312062,0.34487885,0.6053741,-0.6385223,0.5800094,0.52809477,0.1616509,-0.13926497,-0.55066276,-0.21796523,0.025152067,-0.19222534,0.41006312,0.20560518,-0.75892377,0.44617707,0.15115492,-0.34129477,-0.7436404,0.6010866,-0.04178299,-0.24521208,-0.08985743,0.43257448,0.19005159,0.06911984,-0.22612411,0.087283365,-0.5495982,0.25877038,0.18737094,-0.044087976,0.3514899,-0.31449044,-0.13956623,-0.77759826,0.011357361,-0.46685028,-0.35277927,0.2953071,0.051264793,0.2280578,0.1162737,-0.09098675,0.301023,-0.37597287,0.07642388,-0.1202314,-0.17186785,0.22608797,0.4940678,0.42255116,-0.46103546,0.55358726,0.06474902,0.03566431,0.024177298,0.028160501,0.34581798,0.118202746,0.529281,0.09830113,-0.073750734,0.3614386,0.74554586,0.33322176,0.46400377,-0.0029605068,-0.3606152,0.19204536,-0.05795455,0.14054577,-0.043948554,-0.41530454,-0.20167309,-0.19001144,0.2211106,0.47198984,0.13227305,0.44842255,-0.059738167,-0.23558864,0.079611376,0.18080392,0.03886585,-1.1461134,0.24651513,0.23263133,0.7506721,0.31372303,0.0792395,-0.019994818,0.73297364,-0.35722214,0.04890466,0.45926332,-0.05313733,-0.42924312,0.5780592,-0.67702675,0.5074686,-0.19747749,0.07326476,-0.045657266,0.06419947,0.3596064,0.86622536,-0.16256133,0.07120566,0.1331685,-0.3745636,0.20328227,-0.30317217,0.21705985,-0.46447948,-0.2642018,0.6742748,0.56051826,0.40174317,-0.17133412,0.0028734393,0.17283471,-0.29169655,0.15890846,0.09198372,0.23980916,-0.12127069,-0.777915,-0.1781047,0.54862976,-0.1583983,0.12758055,0.25430992,-0.28098172,0.3367493,-0.13056585,-0.023354873,-0.08128904,-0.55766726,-0.14199454,-0.26113954,-0.4863826,0.44371003,-0.36972022,0.21364574,0.21987587,0.0017911792,-0.40944272,0.41070455,0.043049853,0.7331504,-0.0008786097,-0.20202585,-0.30730698,0.07136183,0.17920823,-0.21197805,-0.13300212,-0.29384738,0.19562204,-0.5278317,0.39504302,-0.13044271,-0.24215099,-0.12973794,-0.070144325,-0.07817976,0.45874506,-0.08531863,-0.15192452,0.018115401,-0.052607544,-0.32995307,0.0055698305,-0.0822219,0.31318274,0.121913075,-0.018103339,-0.12408148,-0.13651808,-0.16070509,0.4638637,-0.06566677,0.31577858,0.58150434,0.17308037,-0.37506038,-0.03404326,0.18001877,0.647701,-0.02787067,-0.124383874,-0.25791058,-0.32504016,-0.37169167,0.21803683,-0.11192712,0.34757808,0.2344164,-0.4325282,0.7943982,-0.21381733,1.2623725,0.03611803,-0.38424605,0.07852663,0.51036596,0.02051972,0.13039672,-0.29929486,0.9055266,0.52178717,0.03413497,-0.08182672,-0.4212868,-0.04932051,0.12989591,-0.18307677,-0.21724299,-0.07175556,-0.56700397,-0.27161342,0.117998905,0.1735421,0.3228849,-0.052203443,0.14619473,0.3412238,0.10959137,0.29714692,-0.4367604,-0.12009598,0.31400493,0.449749,-0.1490944,0.1253747,-0.46862757,0.34737715,-0.5548192,0.014013981,-0.17828418,0.18785506,-0.13406388,-0.2682133,0.30333143,0.035325453,0.28922135,-0.43320715,-0.22157365,-0.25739264,0.562186,0.0020396076,0.12646139,0.64748096,-0.26914793,-0.0114575755,0.062488105,0.5566342,1.0774429,-0.35743043,-0.0059940666,0.26470196,-0.34081775,-0.70926654,0.27428842,-0.37142214,0.25395083,0.028563257,-0.21866359,-0.6034772,0.3795808,0.25853956,0.1132977,-0.02202096,-0.5562933,-0.08955148,0.36412323,-0.21250689,-0.11938405,-0.19768925,0.23387432,0.4935586,-0.36919898,-0.37703916,-0.0070575066,0.37501535,-0.21285671,-0.49982524,-0.016105227,-0.4901441,0.2964344,0.20641649,-0.2503709,-0.10796035,-0.03001244,-0.44482815,0.14937437,0.45093122,-0.33587915,0.11146884,-0.30028656,-0.025826186,0.8973738,-0.085306376,0.21350376,-0.48310837,-0.45977458,-0.8759657,-0.22481152,0.32182977,0.11209595,-0.105818465,-0.77288306,-0.040184475,-0.09556769,-0.52869815,-0.011493518,-0.49170244,0.54933774,0.082995646,0.26916343,-0.018772922,-0.71541697,0.0914528,0.06899957,-0.038750514,-0.45277828,0.36527383,-0.11756915,0.96894425,0.11649243,0.1297459,0.29222718,-0.44237006,-0.00077021867,-0.27247608,-0.013129715,-0.72234374,-0.004358884,942 -113,0.59180146,-0.27840123,-0.47444126,-0.10622961,-0.32704818,-0.049511705,-0.3474144,0.5110451,0.23978218,-0.60467815,-0.19455577,-0.080216445,-0.1404771,0.46353582,-0.21208546,-0.6800362,0.07910412,0.16949959,-0.7342745,0.6799032,-0.30974352,0.20289746,0.27339068,0.4595487,0.36095655,0.1613492,0.19089374,0.004081942,-0.20873757,-0.2590977,0.10128409,0.106068715,-0.91592973,0.1918703,-0.35564688,-0.44863665,-0.118245006,-0.48489165,-0.33452183,-0.88145995,0.3144905,-0.9291366,0.62877756,-0.10917449,-0.30838782,0.1294382,0.165649,0.44133687,-0.18121791,0.030128343,0.1949676,-0.2540572,-0.13923399,-0.08761746,-0.097954094,-0.34127888,-0.6227752,0.20661014,-0.5084579,0.026500199,-0.24818148,0.23948675,-0.41272908,0.20416236,-0.04595919,0.58476865,-0.46293372,0.1699448,0.39508396,0.006134415,0.20351171,-0.51227665,-0.18516488,-0.25652626,0.16878058,-0.16065551,-0.30130717,0.27992994,0.30240998,0.5768184,0.25388867,-0.40590322,-0.32678908,-0.07147432,0.21310435,0.33807483,-0.03627178,-0.42257768,-0.32068762,0.03507353,0.3924486,0.09306334,0.253319,-0.22856876,-0.069818035,0.09389539,-0.34607786,0.5922258,0.54721004,-0.3165423,-0.25274676,0.16517869,0.6944125,0.2711762,-0.119028986,0.115443714,0.049128506,-0.693465,-0.2118769,0.15418361,-0.20407966,0.6097879,-0.35482123,0.2259103,0.6623153,-0.34697056,-0.004018029,0.2020019,-0.04313966,-0.15314673,-0.2470064,-0.33364496,0.32236853,-0.5630251,0.13097167,-0.34247613,0.8348512,0.24606824,-0.7066164,0.17304872,-0.6607805,0.26035944,-0.10940454,0.6146549,0.8304612,0.48231322,0.37779307,0.7382642,-0.32791913,0.15133125,-0.15638861,-0.40139276,-0.0037622694,-0.339762,-0.0011485927,-0.4103205,-0.09626454,-0.22352034,-0.058736615,-0.060649306,0.49631757,-0.5675669,-0.20543608,-0.01399526,0.99529177,-0.28709227,-0.11833275,1.0893457,0.8607613,1.3024325,0.15197694,1.3557558,0.28836977,-0.12512305,0.09112474,-0.08134657,-0.7853854,0.4652079,0.32663572,-0.30129486,0.44122803,-0.059428185,-0.006178662,0.44958472,-0.5567322,0.15850659,-0.39585197,0.40108806,0.073461175,-0.18858638,-0.2693711,-0.14755645,0.0703041,-0.035493296,0.07410959,0.26992297,0.025640791,0.60998344,0.058346048,1.4446485,-0.1383492,-0.042885847,0.08902752,0.44849348,0.19499835,-0.073448524,-0.07388066,-0.06251034,0.39774793,0.10213722,-0.6269356,-0.02064544,-0.37643105,-0.3270588,-0.3673399,-0.25681126,-0.050997518,-0.16144924,-0.376948,-0.26716322,-0.17381172,-0.12954137,0.35637984,-2.1345992,-0.40011424,-0.19513687,0.2914223,-0.305247,-0.3276557,-0.071113646,-0.68251574,0.5539475,0.31966162,0.51763266,-0.7126419,0.4716061,0.4325788,-0.5055,-0.13772418,-0.76024115,-0.20011461,0.04573132,0.43502837,0.0047126096,-0.13445087,0.011435531,0.17140189,0.5740751,-0.11766809,0.044368193,0.3106303,0.45162976,-0.062582806,0.5257413,0.06837334,0.51492006,-0.49160826,-0.1833959,0.4791821,-0.3450899,0.32246277,-0.12071042,0.07030486,0.58311677,-0.5738965,-0.89317715,-0.69284,-0.24113092,1.1816692,-0.13639528,-0.45105252,8.875504e-05,-0.2149524,-0.0749148,-0.03195773,0.29073778,-0.22015539,0.023487007,-0.8273039,-0.15802205,0.0005371338,0.1174048,-0.028427815,0.005493216,-0.43161714,0.6543514,-0.13421309,0.24027136,0.5281199,0.29266927,-0.28495866,-0.6435089,0.18848693,1.0637097,0.49678114,0.16872853,-0.5754047,-0.22829947,-0.38811338,-0.15153196,-0.052674852,0.5229546,0.86402315,-0.15651362,0.17532383,0.379021,-0.00842143,0.07630128,-0.14930013,-0.44861364,-0.27580264,-0.08240806,0.5459959,0.7791536,-0.15000877,0.47452736,-0.12178371,0.36674535,-0.07588708,-0.48082083,0.62768126,1.0190372,-0.42522705,-0.39574757,0.5480705,0.31022355,-0.27843404,0.66104144,-0.5385436,-0.36600533,0.46737894,0.031526297,-0.33049685,0.1768938,-0.45345667,0.18309148,-1.0981483,0.37155363,-0.40956342,-0.2177127,-0.707269,-0.3023317,-2.2658448,0.20795491,-0.20399994,-0.040503547,-0.31342983,-0.29779214,0.15880832,-0.38659823,-0.8981596,0.16845332,0.1339554,0.6892921,-0.12751603,0.26450256,-0.1367382,-0.264983,-0.55933267,0.035066508,0.3986181,0.3739614,-0.06395082,-0.49598932,-0.013429865,-0.2885219,-0.42711022,0.10656558,-0.70258313,-0.6584838,-0.17016259,-0.4405114,-0.32832283,0.6407025,-0.2891727,-0.035559244,-0.32102823,-0.021171743,-0.03400767,0.4401667,0.1422469,0.085370034,0.17738515,-0.13390853,0.0020054579,-0.35076568,0.12525246,0.19658408,0.26853442,0.34538954,-0.16986817,0.44021007,0.499221,0.8777789,-0.08370039,0.7995478,0.52677304,-0.10812821,0.3037535,-0.24133092,-0.6070254,-0.5700208,-0.2138561,0.029582407,-0.4898944,-0.36037064,0.18002185,-0.34953392,-0.87911284,0.5608116,0.016741427,0.07200119,-0.0848194,0.3318045,0.40106452,-0.15599528,-0.08902033,-0.074603714,-0.18491873,-0.63966036,-0.41501784,-0.7335957,-0.68750846,-0.14209878,1.1996204,-0.09810747,-0.12875873,0.1641525,-0.29998663,0.19474804,0.1905206,-0.20327778,0.0126309,0.4340779,-0.08381075,-0.78228146,0.4468894,-0.07901987,-0.08958031,-0.61359775,0.24291475,0.66495657,-0.64795357,0.35270935,0.41613972,0.068993434,-0.09172096,-0.6249169,-0.110510565,-0.09682478,-0.14373153,0.45941365,0.28176692,-0.6195332,0.53023744,0.39732665,-0.31775576,-0.91373783,0.49670166,0.15043975,-0.10527521,0.094673365,0.3697101,0.17582566,0.006906094,-0.25880653,0.16231206,-0.35795426,0.21813276,0.25113863,-0.14426248,0.102954045,-0.27837515,-0.4500049,-0.8100194,0.020597514,-0.57522154,-0.2982995,0.20239542,0.044468127,0.0060687214,0.050300065,0.21463436,0.27261454,-0.18284465,0.055210885,-0.2228487,-0.35896593,0.37319118,0.5092265,0.5859017,-0.45220172,0.62424755,0.123170905,-0.115623206,0.13916215,0.029606376,0.53181803,0.0025520474,0.34332186,0.39034602,0.027287211,0.08570671,0.80190396,0.0617027,0.504725,0.20567313,-0.2772444,0.28346503,0.20647025,0.2929367,0.01699806,-0.48678228,0.055515237,-0.1262107,0.072822966,0.57833016,0.14035699,0.37985116,0.040935874,-0.16139302,-0.099953964,-0.01297234,-0.009259839,-1.8169652,0.3615967,0.2190745,0.7844446,0.43829703,-0.056989945,0.22720616,0.6574025,-0.19759493,0.15314132,0.44625592,0.06257636,-0.369819,0.5549683,-0.6421752,0.49372625,-0.12711391,0.15753943,0.02142984,0.18236282,0.52321005,0.7782336,-0.2021394,0.06917556,-0.10279188,-0.26525283,0.18406206,-0.52466536,0.09124665,-0.3389228,-0.29036802,0.8574879,0.46874595,0.2841533,-0.3176923,0.041444506,0.08490094,-0.1847637,0.3553558,-0.16598518,0.08717266,-0.15297067,-0.53353333,-0.1710821,0.5027878,0.004765872,0.18615927,-0.06414866,-0.18465903,0.20516388,-0.14492235,-0.034159787,-0.13236511,-0.9943404,-0.18345967,-0.42295665,-0.3381226,0.20281586,-0.17081581,0.07953213,0.2636036,0.088519394,-0.5863343,0.33977318,-0.2945161,0.65616745,-0.011939526,-0.24710819,-0.16755012,0.14693028,0.46616104,-0.33753118,0.13739537,-0.13223673,0.22815147,-0.5437102,0.50728816,-0.124686,-0.471831,0.21123149,-0.1365096,-0.09306769,0.53414357,-0.22739932,-0.066206545,0.22055179,-0.1632696,-0.14633575,-0.2635411,-0.0077159554,0.28991845,0.38711208,-0.124280356,-0.13333504,-0.23155446,-0.035999157,0.6111039,0.010208018,0.43145213,0.38729995,0.12340379,-0.50657517,-0.23578513,0.18411158,0.5768885,0.022563133,-0.29038036,-0.41190997,-0.43278378,-0.32475892,0.43983778,-0.20866635,0.21167535,0.071391806,-0.47421402,0.8593562,0.26975754,1.4160789,0.13505691,-0.4568271,0.22645739,0.4902152,-0.10688029,-0.078228384,-0.4498348,0.87486845,0.44978598,-0.33514103,-0.09982136,-0.536545,0.042389728,0.010516442,-0.22841269,-0.22492264,-0.093437836,-0.46837234,-0.30827817,0.2682398,0.289558,-0.0739862,-0.21746433,-0.0049886573,0.2552459,-0.0646256,0.37602496,-0.57930434,-0.05780518,0.29237926,0.21718639,-0.048741966,0.18308623,-0.51957273,0.33243388,-0.5228232,0.06468368,-0.2674045,0.23188497,0.0025539417,-0.4398086,0.35244763,0.04381621,0.3381713,-0.5612452,-0.4420265,-0.29443115,0.48603427,0.33141345,0.1929391,0.70746607,-0.27129012,-0.09406473,-0.040131144,0.53602886,1.1400076,-0.29551584,0.107994795,0.2409741,-0.20020269,-0.46317452,0.4688054,-0.3095972,0.22671227,-0.11388037,-0.315861,-0.7315153,0.23202172,0.17939287,0.092819646,0.068503015,-0.75596553,-0.19512865,0.37389153,-0.26430708,-0.20499292,-0.47641033,0.03495381,0.5840631,-0.25475988,-0.2590471,0.16496518,0.2723284,-0.18156368,-0.40029007,-0.17517811,-0.22439846,0.23935379,0.22265095,-0.26052386,-0.19763213,0.13854957,-0.57586336,0.12399718,0.1825589,-0.2789987,-0.053194955,-0.15895307,-0.05830446,0.8435354,-0.23244268,0.34161857,-0.5068058,-0.47061038,-0.83665437,-0.23281746,0.4213434,0.24033651,0.03141217,-0.7226349,-0.24831173,-0.1379615,-0.07550301,0.14192232,-0.5390041,0.5084095,0.13254952,0.44902337,-0.028507536,-0.84765875,0.10663619,0.092399165,-0.23262775,-0.57532585,0.5263679,-0.027400665,0.7322838,0.14359984,0.16829988,0.24456576,-0.6156867,-0.07206385,-0.14461035,-0.09565587,-0.6536739,0.03996311,959 -114,0.4064182,-0.2933477,-0.5860152,-0.12124261,-0.39680654,0.10615057,-0.13438132,0.4360577,0.33956942,-0.46041358,-0.121060506,-0.08894793,-0.09919895,0.18425103,-0.2082035,-0.59080917,-0.12129366,0.14047986,-0.43108997,0.50284815,-0.19495444,0.25350857,0.011717796,0.2734193,0.28878456,0.33948544,0.016571235,-0.14671747,-0.0319748,-0.07394822,-0.089464396,0.28588158,-0.3241368,0.07088973,0.04161642,-0.21579486,-0.07942595,-0.324573,-0.3769095,-0.71867985,0.42033952,-0.7550283,0.4664392,-0.02509392,-0.19801386,0.27344316,0.19676101,0.3282335,-0.10911913,0.038794205,0.2897663,-0.14105745,-0.109805256,-0.04889612,-0.2476151,-0.38833776,-0.5202609,-0.05713588,-0.4154516,-0.3030051,-0.30737633,0.19364643,-0.35052603,-0.10271571,-0.07579662,0.5633356,-0.47420272,0.14892082,0.35818115,-0.10765165,0.3265357,-0.65703624,-0.06798213,-0.020845216,0.24223538,-0.04706425,-0.08282563,0.09148969,0.31324452,0.45106372,0.10680409,-0.21386664,-0.42613852,-0.10254373,0.3003739,0.32553476,-0.16704302,-0.29972407,-0.09517886,0.24449037,0.2502609,0.22336972,0.19001774,-0.2580524,-0.16535811,0.06324133,-0.17661312,0.36872518,0.4433334,-0.2779906,-0.26663777,0.4209419,0.5376423,0.12838316,-0.16680503,0.10712147,-0.10382652,-0.4208283,-0.17842674,0.0073629245,-0.24478969,0.2876925,-0.1040186,0.18819547,0.6651733,-0.07247149,0.0353449,-0.03717694,-0.008458957,-0.0357325,-0.33144137,-0.05398125,0.10470419,-0.5163961,0.10110414,0.0009124521,0.7261754,0.036823563,-0.6417808,0.23061135,-0.4548747,0.21429026,-0.054401547,0.46765488,0.67076474,0.36603427,0.23128816,0.78045344,-0.43645322,0.07264647,-0.07310022,-0.46935633,0.05325766,-0.0950482,0.03188491,-0.6005871,0.13603464,-0.04130134,-0.0065854834,0.07001573,0.37795413,-0.5690043,-0.14096093,0.18085673,0.83042336,-0.26645076,-0.08448195,0.6855978,0.9196512,0.9698654,-0.04524557,1.1035311,0.14218776,-0.30052525,0.11763894,-0.46124822,-0.57573265,0.31856033,0.4462527,-0.12752593,0.24480449,0.0076289885,0.029354826,0.42152536,-0.26717335,-0.011235873,-0.24657944,0.1476008,0.20617774,-0.26325828,-0.39846152,-0.054320715,0.08899374,0.05245591,0.1581643,0.119626075,-0.1694323,0.29279685,4.1881576e-05,1.5723028,-0.25590572,0.08394274,0.18378055,0.26005787,0.157018,-0.045726016,0.10928276,0.42458367,0.31695157,0.13660686,-0.5712166,0.07847085,-0.36845624,-0.42133063,-0.2483259,-0.3312717,-0.1820636,0.103352666,-0.31994322,-0.16529575,-0.21720974,-0.45252234,0.42254767,-2.7706745,-0.088413745,-0.27503896,0.2070084,-0.31014973,-0.3600231,-0.07541241,-0.46407712,0.3338892,0.36682123,0.5046831,-0.60585797,0.45273128,0.4570592,-0.61112434,0.00095754117,-0.51814425,-0.11146286,-0.08803108,0.3357215,0.07245109,-0.21184008,0.02790777,0.14094417,0.48758638,0.0020312965,0.09681247,0.49519575,0.4944628,-0.11876507,0.57914495,0.014889408,0.54299736,-0.06522988,-0.18733057,0.33505976,-0.22366795,0.20946571,-0.0057890583,0.1640531,0.42779374,-0.2873638,-0.89131886,-0.59554774,-0.120662235,1.2481319,-0.16156694,-0.40452236,0.35197437,-0.3994286,-0.28526133,-0.057460204,0.46695185,-0.051802102,-0.06291206,-0.8348386,0.13123491,-0.18245038,0.07317912,0.029554531,-0.25579095,-0.48305318,0.9277872,-0.11051804,0.56124,0.3681294,0.16737139,-0.23060952,-0.35480797,0.01572664,0.8592268,0.46408623,0.07465108,-0.116567604,-0.13990411,-0.29933667,-0.18230893,0.11731723,0.6271858,0.5499909,0.024185264,0.052218236,0.30943963,0.020327296,0.070455216,-0.21114156,-0.3397033,-0.13117056,-0.06867002,0.45985365,0.4409375,-0.31252733,0.43011236,-0.0134584345,0.35580924,-0.07238506,-0.53323215,0.38264504,0.9282612,-0.20828547,-0.57848173,0.6623839,0.3777851,-0.18151972,0.39048076,-0.5249279,-0.22547406,0.44979763,-0.3189643,-0.4943852,0.20681916,-0.4084581,0.032355905,-0.8379876,0.19464417,-0.41264564,-0.5593405,-0.44637772,-0.15279822,-3.3864257,0.24922074,-0.40069282,-0.14905187,-0.28435266,-0.024253398,0.102016866,-0.6140888,-0.63804185,0.1357381,0.106981054,0.6058998,-0.061356593,0.064580634,-0.18360622,-0.2627224,-0.19222762,0.20862326,0.009428933,0.25401443,-0.034914084,-0.4034399,-0.08336714,0.07856851,-0.37335318,0.027887894,-0.4581466,-0.40394866,-0.08475749,-0.3946276,-0.12002372,0.59169674,-0.36839318,0.077400886,-0.31184202,0.13949485,-0.11538032,0.26677567,-0.09352059,0.17358142,0.091988504,-0.16349922,0.09216514,-0.2922033,0.38407886,0.013741048,0.38007078,0.3217068,-0.25595742,0.18285824,0.3762589,0.5848685,-0.12611097,0.81965554,0.46388426,-0.18095799,0.29067624,-0.18353574,-0.23426262,-0.6220823,-0.34469903,0.107100844,-0.481802,-0.4621116,-0.13825727,-0.3969264,-0.8300233,0.39203906,-0.00093064085,0.3707643,-0.021099817,0.3235443,0.5902066,-0.10696185,0.08137154,0.053017784,-0.22916959,-0.37513155,-0.20688802,-0.5338565,-0.42393464,0.22205935,1.0649776,-0.23223808,0.07865903,-0.032830667,-0.21665558,-0.033214584,0.19590002,0.09466135,0.16627356,0.48414418,-0.20002674,-0.62582684,0.44478327,-0.18629295,-0.14712788,-0.6616469,0.20871125,0.4791137,-0.4859397,0.68200946,0.24393737,0.05156375,-0.19138485,-0.4839995,0.009154798,-0.02879512,-0.29926792,0.52055126,0.2703391,-0.5827381,0.40889645,0.36946413,-0.13978672,-0.68121797,0.36775088,-0.019060588,-0.2912864,-0.014266142,0.38967174,0.18641458,-0.06125136,-0.13600577,0.1929587,-0.3547244,0.3338468,0.14641897,-0.24068864,0.2326996,-0.17265779,-0.17980841,-0.8027721,-0.016706478,-0.59081376,-0.15315333,0.24675782,0.13681652,0.13686657,0.087622136,-0.013411138,0.54074484,-0.17703086,0.057454214,-0.16613226,-0.29494599,0.36647528,0.4676578,0.26931906,-0.51162225,0.45023325,0.009949427,-0.2483731,-0.103048205,0.1891675,0.57702553,-0.022920012,0.44373932,0.0069740303,-0.2094479,0.34224653,0.73048997,0.13196054,0.4877563,0.06854789,-0.16314615,0.20832409,0.0658747,0.11133899,-0.1756413,-0.68724525,-0.051407337,-0.17728558,0.13079217,0.5013795,0.11051548,0.32672513,-0.08490202,-0.25779137,0.010664726,0.23888776,0.14180529,-1.0107691,0.27036947,0.13870986,0.93467855,0.41004455,-0.026442863,0.08182454,0.5989278,-0.05807625,0.085109755,0.39787516,0.03193447,-0.5043301,0.5240655,-0.7026541,0.31054068,-0.008442506,-0.052397475,0.020336539,0.058484524,0.26395243,0.74717534,-0.14788127,-0.048948698,-0.12922615,-0.2850989,0.24406117,-0.24135113,0.11820577,-0.46912214,-0.36682713,0.4954814,0.52138484,0.33665127,-0.15186682,-0.009192839,0.10464928,-0.101861596,0.17585856,0.027783558,0.13988608,-0.067076504,-0.59933895,-0.239458,0.31296122,0.18177488,0.17918098,0.051348157,-0.16338314,0.17925349,-0.101550356,-0.088262096,-0.036765624,-0.49395585,-0.06093584,-0.14361237,-0.6063417,0.4965148,0.0065271296,0.2372951,0.083057284,-0.014124431,-0.23591232,0.23999178,-0.004303448,0.7152087,-0.043957237,0.05747187,-0.40160775,0.19786139,0.053480722,-0.16826306,-0.09636183,-0.2149595,0.11223338,-0.7228577,0.4612842,-0.015328247,-0.42540282,0.34850693,-0.18800935,-0.04939132,0.5158503,-0.24179469,-0.12019587,-0.033593636,-0.104184225,-0.20146498,-0.31106633,-0.101542786,0.2041113,-0.016347822,0.031617075,-0.15431191,-0.09401933,-0.13605586,0.3103649,-0.05356795,0.31538424,0.3992797,0.06271469,-0.42979816,-0.16624576,0.31842238,0.42173383,0.023975689,-0.06285076,-0.26597512,-0.66404283,-0.4754229,0.15183873,-0.012144178,0.36136568,0.070848435,-0.21140753,0.8182583,-0.0018502772,1.1813338,-0.011702588,-0.3755283,0.06488483,0.6330726,0.067220934,0.031833407,-0.2539928,0.81936765,0.6943285,0.035697125,-0.06270175,-0.4785939,0.07779922,0.13930508,-0.21826792,0.054388702,0.011398777,-0.6282766,-0.439419,0.23979871,0.18648893,0.1766366,-0.06556267,0.059431136,0.15261243,0.017891914,0.30684,-0.48051035,-0.32355055,0.1684795,0.20735754,0.035314687,0.04144188,-0.59797776,0.37155858,-0.56171185,0.07454693,-0.16082793,0.1861644,-0.22626828,-0.1568473,0.28559163,-0.07582211,0.3722461,-0.34665298,-0.3584336,-0.15260187,0.47585592,0.15546677,0.121719696,0.5822012,-0.28397173,0.07057454,0.17380214,0.54625094,0.994593,-0.14583424,0.121777326,0.4740103,-0.3283577,-0.65746284,0.35877895,-0.32727158,0.10925574,0.06348464,-0.3107473,-0.2779346,0.28053933,0.09493813,-0.067139216,0.021577138,-0.5270268,-0.27626175,0.3087562,-0.37528348,-0.04750513,-0.21835798,0.10404915,0.62976503,-0.32470852,-0.30724496,0.0028348248,0.3350393,-0.09491858,-0.53987145,-0.0213357,-0.2530264,0.42047656,0.14141397,-0.28149068,-0.097413845,0.008785162,-0.41636568,0.13865541,0.1504956,-0.32805887,0.07436145,-0.34127223,-0.1343163,0.73934245,-0.17538163,0.1412836,-0.6160394,-0.29791075,-0.8106645,-0.3023525,0.23622686,0.10019519,-0.041710287,-0.6481717,-0.0027752146,-0.26700485,0.02977838,-0.042731322,-0.3131598,0.40697014,0.10544817,0.461646,-0.22278829,-0.7120141,0.14470136,-0.016393786,-0.22006035,-0.66022724,0.65788585,-0.11743288,0.7533348,0.017904274,0.12930396,0.25770134,-0.50478077,-0.028718814,-0.26021016,-0.30725563,-0.7117869,-0.06954589,961 -115,0.62822723,-0.15782242,-0.6649213,-0.20935602,-0.31550258,-0.24327034,-0.19607222,0.5376768,0.38081634,-0.49771756,0.035125356,-0.139507,0.008765788,0.47617477,-0.15044059,-0.7709718,-0.04044871,0.06817202,-0.5361202,0.5956649,-0.46400627,0.29498592,0.024158817,0.46321136,0.1914598,0.29775575,0.10818705,-0.10281262,0.0002874732,-0.14251491,0.080480315,0.292207,-0.73723006,0.04093898,-0.087463096,-0.504169,-0.09821437,-0.5317951,-0.34854966,-0.7600142,0.3066698,-0.763631,0.4770882,-0.020301677,-0.24990712,0.14073749,0.20621803,0.4108318,-0.3106289,-0.07734954,0.056351446,-0.013927415,-0.06107662,-0.14015117,-0.3667115,-0.4287867,-0.7535801,-0.0036081448,-0.45764273,-0.12018862,-0.33719528,0.1489082,-0.40621272,0.14961389,-0.16654134,0.46891662,-0.37671527,-0.13710809,0.50829107,-0.07949525,0.30468583,-0.3800446,-0.14129427,-0.21493185,0.12826659,-0.058041636,-0.31779182,0.3744832,0.28939068,0.58657205,0.09129805,-0.34563142,-0.384592,-0.029885463,0.091150805,0.40462542,-0.29076442,-0.48784864,-0.22435147,-0.043675065,0.282403,0.33239567,0.17130792,-0.27593154,0.025620492,0.241423,-0.36718088,0.46916053,0.4924127,-0.29197207,-0.2623673,0.17712703,0.49629936,0.2153798,-0.21461779,0.27592266,0.06567225,-0.6053172,-0.20229259,0.07382087,-0.09120293,0.41631645,-0.10874877,0.20211971,0.78733087,-0.24435103,0.019806504,0.034941345,-0.023173492,-0.15110122,-0.46860495,-0.2854038,0.28103936,-0.5538073,0.2762677,-0.21782973,0.8921767,0.2004194,-0.6835436,0.31743115,-0.67630625,0.2872401,-0.18041536,0.5117353,0.8281985,0.46270424,0.40052515,0.67944425,-0.40584219,0.15600336,-0.12018195,-0.39663458,0.11676513,-0.26637942,0.083455876,-0.37714058,0.03428662,0.073874,-0.103644595,0.2071031,0.37853456,-0.6344107,-0.18176568,-0.03837145,0.8904521,-0.18581223,-0.038891785,0.8413008,0.83922446,0.9950519,0.093084484,1.178985,0.30125612,-0.19172297,0.3844356,-0.15343308,-0.8191961,0.26903826,0.36652732,-0.43100047,0.28515035,-0.013074335,-0.045706272,0.55677205,-0.32807148,0.053900316,-0.15447414,0.21528503,0.025444701,-0.30098987,-0.3104828,-0.27462542,-0.028206388,-0.11584419,0.086291336,0.34947777,-0.08479488,0.40408695,0.049287617,1.7501659,0.0137970075,0.119148,0.12821555,0.55649173,0.30438802,-0.07616247,-0.06374029,0.13118842,0.3827362,0.1314538,-0.5883952,0.037040446,-0.23879626,-0.43161115,-0.113881454,-0.40302992,-0.03866972,-0.2554686,-0.65362453,-0.07670953,-0.25233755,-0.15344128,0.39976817,-2.428814,-0.35045847,-0.16819586,0.2265491,-0.27580255,-0.33761495,-0.105228,-0.5605098,0.49258918,0.30092517,0.43570575,-0.73279536,0.44304734,0.45356813,-0.5425452,-0.020273648,-0.7129352,-0.17057994,-0.058854304,0.28480196,0.012278663,-0.10391208,0.053437933,0.24727339,0.47561544,-0.11604929,0.062102277,0.17235778,0.4241936,-0.029691573,0.69628894,-0.10905154,0.54374254,-0.43242252,-0.22644475,0.36038572,-0.480553,0.17353109,0.021357443,0.110632084,0.48866686,-0.5281621,-1.0369425,-0.6175946,-0.19447085,1.0767376,-0.27850685,-0.33209616,0.33561766,-0.40211907,-0.17631555,-0.0480508,0.48457107,-0.073516525,0.035615806,-0.8680788,0.14289346,-0.1456841,0.078448005,0.0039196396,-0.012403095,-0.2004161,0.51560533,-0.06485799,0.41207874,0.29467905,0.13691059,-0.33541957,-0.54838455,0.12159836,0.9092668,0.3392274,0.20144625,-0.25667468,-0.18754238,-0.4133766,-0.099460036,0.049685005,0.47405952,0.79476196,-0.12165073,0.1842777,0.3049664,-0.07416554,0.041404843,-0.19376709,-0.3832705,-0.15734132,-0.059988625,0.5267053,0.77225614,-0.2474225,0.41868007,-0.06903673,0.3539633,-0.17982264,-0.4967327,0.6560937,1.0190364,-0.2576151,-0.32695347,0.6055456,0.50630665,-0.3180644,0.57286686,-0.55799973,-0.2659123,0.50026894,-0.023228474,-0.38710696,0.17983572,-0.3969205,0.09719667,-0.9039082,0.22095424,-0.33198956,-0.21243584,-0.50945234,-0.19872895,-3.7556899,0.16667563,-0.24406675,-0.09139208,-0.22662109,-0.09215015,0.3632796,-0.71622384,-0.7406298,0.17896667,0.17104387,0.8002736,-0.0738452,0.1144368,-0.2619689,-0.3222125,-0.34928823,0.013515206,0.26381892,0.3571096,0.049862415,-0.47824782,-0.21088319,-0.1081815,-0.5537642,0.12632959,-0.6494652,-0.58852303,-0.19852829,-0.6708528,-0.4216273,0.754992,-0.21937269,0.021622919,-0.13817066,-0.13092364,-0.19385673,0.36189,0.13952683,0.08981933,0.061533153,-0.06864788,0.06566588,-0.26752892,0.036691613,0.061187483,0.33713913,0.20883611,-0.13871756,0.33214164,0.59782714,0.90786755,0.0021507144,0.8520944,0.5784459,-0.04133424,0.47769845,-0.37356073,-0.3054294,-0.6493156,-0.2570976,-0.22144711,-0.4049665,-0.38024256,0.04766324,-0.3501037,-0.8253529,0.68980634,-0.0069052055,0.22947538,-0.084679514,0.079092205,0.56062365,-0.1117621,-0.13184842,0.06983642,-0.1817396,-0.5668918,-0.16393185,-0.67347956,-0.545313,0.25436392,1.0701195,-0.06923561,-0.046731587,0.06535129,-0.1512534,0.012089731,0.16431116,0.031029947,0.15197875,0.41408414,-0.035956845,-0.6364173,0.4039643,-0.18908553,-0.24800582,-0.6678492,0.1536868,0.71757936,-0.7605361,0.52427924,0.2433222,0.061824095,-0.03201905,-0.5282463,-0.1002924,0.073574185,-0.06544938,0.463572,0.35759953,-0.90989006,0.46024597,0.48070717,-0.2308711,-0.6758495,0.5184755,0.007159941,-0.15452345,-0.10969687,0.26694277,0.29942882,0.13038805,-0.13425392,0.23013955,-0.49715847,0.12223327,0.32288444,-0.15287994,0.3523267,-0.13980645,-0.036713243,-0.7351352,-0.002512537,-0.5689005,-0.26722828,0.30172962,0.00094651803,0.08602997,0.0040338524,-0.005626019,0.16185178,-0.28816357,0.10672785,-0.04580726,-0.26188684,0.38999188,0.5605081,0.40974927,-0.42672735,0.68287927,0.10882595,-0.016321117,0.2234649,0.13891333,0.484423,0.067915946,0.5165635,0.02532012,-0.27510104,0.11870171,0.79504526,0.043847464,0.34045196,0.06863135,-0.07798211,0.1879996,0.20579745,0.027422402,0.10452069,-0.48520637,-0.025241202,-0.024621965,0.17157638,0.67245984,0.19131757,0.32595572,0.056540154,-0.34544587,0.018711282,0.16233465,-0.18350902,-1.7068434,0.44120145,0.2108295,0.7913575,0.51201177,0.1306391,-0.084787175,0.615426,-0.14667343,0.22432755,0.507936,-0.064576566,-0.4515593,0.6197538,-0.609685,0.6436068,-0.036374353,0.15187068,0.02090247,0.20026927,0.48138925,0.72948,-0.045640536,0.08136714,0.036446977,-0.35246378,0.1797665,-0.36810756,-0.13344088,-0.40846485,-0.17136487,0.6764787,0.52793205,0.39559764,-0.2588639,0.021848312,0.1041347,-0.17571896,0.07305889,-0.13664165,0.0270366,-0.03607633,-0.5805511,-0.32154426,0.5997758,0.03978353,0.21828228,-0.07802432,-0.22451818,0.30568644,-0.14029141,-0.07895419,-0.124150135,-0.7395797,-0.05687523,-0.4822784,-0.4538534,0.46601883,-0.05475322,0.26239502,0.23185807,0.09047059,-0.40351465,0.5125828,-0.05613576,0.71930385,-0.34196493,-0.33936524,-0.34893286,0.2187906,0.25590682,-0.3508495,-0.14710224,-0.4014404,0.06126486,-0.49348205,0.30551904,-0.07316496,-0.40558052,-0.027356211,-0.06696265,0.087819554,0.4600886,-0.20463194,-0.1500659,-0.036195256,-0.14893566,-0.24111277,-0.40411398,-0.059043452,0.30094656,0.1209638,0.050478853,-0.047091134,-0.2740678,0.07346916,0.51262635,-0.04518423,0.28284097,0.46202177,0.20947534,-0.27507535,-0.15946984,0.38551855,0.491904,-0.016578078,-0.1285362,-0.39397752,-0.39733443,-0.4305302,0.21073829,-0.10515325,0.44712615,0.06284056,-0.48732954,0.9547097,0.048086822,1.1625868,-0.05856823,-0.48961657,0.17368266,0.3900371,-0.07598146,-0.059603494,-0.30974787,0.86987764,0.40505147,-0.19505352,-0.30660984,-0.40292588,-0.12522101,0.099878095,-0.30404365,-0.21646772,-0.009482866,-0.58947176,-0.16342288,0.13464274,0.299264,0.27437845,-0.2630761,0.15030403,0.18639287,-0.024516374,0.45284155,-0.4323855,-0.1590257,0.20904492,0.4098432,-0.08748841,0.07281891,-0.548614,0.41482276,-0.38665193,0.15982476,-0.37179244,0.2489146,-0.12540516,-0.39260888,0.2515563,-0.013503879,0.34618357,-0.31125346,-0.28826576,-0.2754316,0.5750967,0.13839158,0.08633121,0.803134,-0.3314907,-0.012225833,0.026309885,0.6138638,1.1225736,-0.1934612,-0.032171264,0.31885183,-0.30451137,-0.59640753,0.1871935,-0.24199048,0.25304613,-0.0172977,-0.32695395,-0.57288116,0.19064276,0.12168009,0.09007824,0.14448746,-0.5921083,-0.28324115,0.24112272,-0.2900591,-0.31798926,-0.40829945,0.09210515,0.5853722,-0.32565516,-0.25810236,0.20185313,0.17962392,0.066672005,-0.49839693,-0.21090047,-0.32694966,0.30220467,0.20729075,-0.41838512,0.08534558,0.07650766,-0.48748565,0.07950283,0.23003778,-0.37449154,0.09148594,-0.33316913,-0.18302022,1.1092901,-0.24813825,0.2783825,-0.52377284,-0.51572436,-0.8875346,-0.41338024,0.58835536,0.2015608,0.1390002,-0.5991997,-0.039217904,0.06038425,-0.066012315,-0.0183663,-0.3492658,0.43120837,0.1553494,0.46912813,-0.060014293,-0.725796,0.06434891,0.11395125,-0.18440326,-0.63534415,0.6122285,-0.15892658,0.8315011,0.1482543,0.09817002,0.28392175,-0.47683284,-0.22309136,-0.2656595,-0.23176204,-0.7527137,0.093165874,968 -116,0.46535596,-0.12843364,-0.36825734,-0.058634065,-0.18821764,0.21602109,-0.0980313,0.47524428,0.14915827,-0.42198497,-0.17176163,-0.31471485,0.024635242,0.27504617,-0.14662921,-0.48618782,-0.037155513,0.13290915,-0.52527845,0.38227695,-0.5387503,0.36989063,-0.038180076,0.4011774,0.098126896,0.2048592,0.04443828,-0.17417923,-0.14043672,-0.109332025,-0.12296387,0.35961476,-0.4624965,0.06934184,-0.18429229,-0.36140004,-0.0019754842,-0.49689013,-0.31029332,-0.5919192,0.26702508,-0.7137115,0.38834125,0.05171172,-0.24369158,0.3957706,-0.08574559,0.18151855,-0.17793316,0.048621655,0.18975136,-0.04873196,0.036372125,-0.13404319,-0.17075348,-0.26918098,-0.5035406,0.1813498,-0.4084496,-0.22239777,-0.16659328,0.17119852,-0.17552137,-0.033261325,-0.055014268,0.36470369,-0.4244822,0.08609224,0.12546831,-0.052345075,0.25150493,-0.44805858,-0.19325784,-0.07204568,0.28119057,-0.2742911,-0.09542726,0.14027332,0.28387195,0.5399127,-0.08464044,-0.018212542,-0.33691877,0.03875722,0.017569043,0.6073943,-0.2036607,-0.4992825,-0.1729944,-0.10743672,0.026926778,0.19271159,0.12967494,-0.28370094,-0.21124965,-0.0209538,-0.23011412,0.24569725,0.43947488,-0.38175035,-0.26370177,0.37458387,0.5009997,0.19965458,-0.010650227,0.013593819,0.012750456,-0.5109745,-0.10795961,-0.017670564,-0.15998434,0.532383,-0.030506724,0.3032903,0.6071396,-0.06267306,0.09591143,-0.05342307,-0.023660466,-0.056717083,-0.232658,-0.06258462,0.16677965,-0.28108,0.13310613,-0.093029365,0.82549036,0.0929416,-0.8120718,0.38462242,-0.5416728,0.07827151,0.006527112,0.5214353,0.62463635,0.28003818,0.28692517,0.55659723,-0.49441856,0.06843373,-0.12872574,-0.26601675,-0.10786661,-0.051787615,-0.08621923,-0.45085698,0.12293563,0.09277597,-0.06598161,0.079887606,0.37875262,-0.57448953,0.02536951,0.12883475,0.6986498,-0.38017693,-0.08677244,0.66278815,1.0076728,0.8504966,0.06335537,1.1320279,0.3184463,-0.32966444,0.29493105,-0.38204852,-0.7122218,0.23090163,0.34373936,0.06883356,0.28131735,0.1521129,-0.057083774,0.41992453,-0.34836027,-0.018092906,-0.1349168,0.05970044,0.0795984,0.038761333,-0.34285045,-0.29322895,-0.03983274,-0.011524631,0.13744621,0.18566051,-0.21494913,0.23338558,0.07707841,1.8668416,-0.078900665,0.15597177,0.06161301,0.37914363,0.10921867,-0.15273057,-0.13028328,0.44000253,0.28933805,-0.058527283,-0.58420515,0.047163326,-0.10272128,-0.5603635,-0.1302631,-0.2535048,-0.14901923,0.045514762,-0.47789097,-0.1491437,-0.19547294,-0.24741474,0.51184255,-2.8523371,-0.10697953,-0.10571495,0.30546468,-0.32376155,-0.3713365,-0.178058,-0.38824174,0.31756184,0.39452118,0.34715885,-0.6485988,0.31167203,0.2858342,-0.381077,-0.1543695,-0.54650813,-0.067857444,0.04741963,0.24559945,-0.07650566,-0.042369492,-0.04546075,0.025198907,0.38187853,-0.07980175,0.14616886,0.2673834,0.44265613,0.19039683,0.33491224,0.05452903,0.5113318,-0.18609197,-0.16393866,0.35889333,-0.34294164,0.2827426,-0.09428195,0.15459818,0.28575352,-0.5065819,-0.738785,-0.58045816,-0.37246948,1.1838044,-0.2570645,-0.34542626,0.26451916,-0.062134877,-0.08323218,-0.047162466,0.43383315,-0.11163111,-0.18519656,-0.8398678,0.104125306,-0.04345583,0.2129226,-0.008927185,0.033289626,-0.39732957,0.6045128,-0.12156424,0.44373876,0.35131878,0.16559425,-0.17641899,-0.36237356,0.008630259,0.8892689,0.3135147,0.18288587,-0.19129916,-0.2655133,-0.32976547,-0.049508855,0.06916892,0.38341802,0.6427894,0.098105654,0.18356626,0.2580824,0.08779086,0.0912839,-0.16292214,-0.15802911,-0.02828518,-0.10228371,0.5984934,0.5419074,-0.24040678,0.38781458,-0.13754043,0.21483341,-0.22306193,-0.32735643,0.39335087,0.7782698,-0.14270698,-0.1643461,0.5699061,0.5449201,-0.24318282,0.27171722,-0.55881435,-0.2778639,0.5954732,-0.23337531,-0.46299222,0.22926775,-0.2693812,0.08540631,-0.9127517,0.31346697,-0.10311661,-0.3303001,-0.5385643,-0.11364018,-3.2962446,0.19006242,-0.19630606,-0.20948653,-0.012895971,-0.10097217,0.14871907,-0.56776226,-0.49105218,0.10780568,-0.0325325,0.48314825,0.016221356,0.28105494,-0.23688689,-0.16565007,-0.23869711,0.08505279,0.08782674,0.358051,-0.031613115,-0.35697806,-0.030189462,-0.17691204,-0.2696287,0.040806115,-0.52065194,-0.46292913,-0.05764519,-0.5375001,-0.28924263,0.5221035,-0.44047695,-0.027990822,-0.24693069,-0.08674425,-0.23016022,0.35343817,0.14121963,0.14418828,0.06593452,-0.09891433,-0.07544531,-0.28322014,0.30584773,0.06909118,0.067562215,0.47184628,-0.10971542,0.1523731,0.35279363,0.57128006,-0.13756165,0.7230378,0.45794252,-0.05830715,0.32256165,-0.32390183,-0.065256454,-0.56796956,-0.30289704,-0.10145499,-0.38916215,-0.5095582,-0.17271854,-0.3411914,-0.7026284,0.4222283,-0.030999802,0.20548898,0.004051313,0.17909828,0.527047,-0.15665242,-0.10067327,-0.07582857,-0.020188924,-0.463862,-0.38408947,-0.6152394,-0.42047957,0.2042197,0.944489,-0.045300275,-0.034811337,0.07762292,-0.16149661,-0.05191135,0.06276648,0.0852727,0.13678294,0.37290022,-0.12557922,-0.60526156,0.5489218,-0.0740906,-0.29959577,-0.5141155,0.07512837,0.4985331,-0.5563702,0.539384,0.33786878,0.23622131,0.18538012,-0.5145922,-0.15349135,-0.015924647,-0.27500477,0.32030773,0.18842417,-0.70209646,0.44862372,0.4015773,-0.16347931,-0.84675795,0.3959408,-0.028044777,-0.34442997,0.06644911,0.32031137,0.1791012,0.012709511,-0.17613474,0.16722704,-0.53623736,0.31555632,0.27050593,-0.04505923,0.3717513,-0.23381832,-0.05739575,-0.63259053,0.021843772,-0.4980091,-0.29441363,0.138081,0.035390213,0.11126596,0.18445265,0.07935582,0.38683683,-0.38151994,0.10589954,0.0010680575,0.0003818227,0.03230141,0.43097705,0.45033717,-0.426878,0.5366324,0.004760919,-0.0071222186,-0.13612792,0.09295746,0.4923249,0.010558389,0.23758036,-0.06589796,-0.3204953,0.3817162,0.69338703,0.22463092,0.39929166,0.020856928,-0.23351121,0.29815036,0.06105004,0.12961344,-0.020841599,-0.4911482,-0.091862716,-0.024255872,0.20991297,0.4299165,0.1812048,0.39394352,-0.11249772,-0.2724148,0.0886872,0.2880641,-0.13467391,-0.9156875,0.26052612,0.11003068,0.84039676,0.558227,0.0015235133,0.1563718,0.4161672,-0.23284343,0.13856511,0.27959856,-0.049605604,-0.5892929,0.55386716,-0.540836,0.36476088,-0.23576495,-0.019347817,0.07600516,-0.07635725,0.38693142,0.7160222,-0.09874706,0.052810945,0.05147071,-0.23561706,0.007862149,-0.361203,0.10160847,-0.5855957,-0.10165672,0.6193265,0.48286933,0.2741345,-0.2341469,0.03649459,0.06283032,-0.09187311,-0.033155862,0.12738362,0.098395616,0.041814998,-0.6360512,-0.29029375,0.6069035,-0.055193253,0.14118972,0.038851157,-0.39750493,0.24092767,-0.22072731,-0.12134373,0.04392697,-0.5626604,-0.039342754,-0.32640362,-0.45420158,0.29499212,0.012144739,0.23796074,0.15539196,0.042044334,-0.35076132,0.29020625,0.14146967,0.7580557,0.03034481,-0.15078902,-0.4507854,0.19827372,0.32394314,-0.13733001,-0.260783,-0.2014049,-0.059219547,-0.5073395,0.44148934,0.054865416,-0.2229971,0.16276902,-0.12090817,0.025532223,0.565225,-0.05451349,-0.08035075,0.050278433,-0.20726347,-0.36063406,-0.022302097,-0.15065937,0.2735511,0.22342703,-0.07388242,0.009448387,-0.042109903,-0.12687898,0.43777388,0.0885928,0.3720988,0.43345052,0.037185192,-0.33994395,-0.09355975,0.09836613,0.41688412,-0.05498686,-0.10252804,-0.19681698,-0.4388673,-0.34411585,0.16160363,-0.22171238,0.33212748,0.10251992,-0.2999102,0.6774209,0.06335456,0.9271981,0.092960596,-0.23580536,0.06225696,0.36151493,-0.0019214638,-0.037260085,-0.46236446,0.91093403,0.5176146,0.0061684344,-0.17479077,-0.08439386,-0.08844786,0.1911522,-0.17418955,-0.15872589,-0.14404662,-0.62098163,-0.3380009,0.1535839,0.24021238,0.09036383,-0.014256563,0.025323022,0.15793839,0.024139825,0.39357477,-0.44077083,-0.31924105,0.26388752,0.24606706,0.005979128,0.114988774,-0.34716964,0.5206971,-0.5345995,-0.015978541,-0.2794457,0.11375003,-0.21431825,-0.21568075,0.12334866,-0.04489266,0.36022916,-0.2870163,-0.35130683,-0.29287308,0.42360675,0.061896987,0.17209919,0.47985375,-0.24753065,0.0513442,-0.022313688,0.51096976,1.0618674,-0.20282778,0.012003288,0.43110412,-0.2291235,-0.50231475,0.27889144,-0.29899728,0.13871726,-0.03439826,-0.15602675,-0.44437498,0.33169025,0.13752842,-0.03187842,0.021115083,-0.5536253,-0.11516313,0.37074733,-0.2729136,-0.25753397,-0.20794587,0.1663053,0.7686631,-0.32725346,-0.22718048,0.07240467,0.25469837,-0.27870026,-0.59844494,0.048419107,-0.4080312,0.35531485,0.10925409,-0.24547738,-0.19796285,0.026955865,-0.286306,-0.031895492,0.13010694,-0.32581717,0.06871616,-0.40887848,0.053638864,1.0208018,-0.056514733,0.17094362,-0.6136695,-0.44371203,-0.9848304,-0.39671236,0.541069,0.12874982,-0.0014150441,-0.39571714,0.041813172,-0.10868581,-0.20772806,-0.05465272,-0.3579085,0.48593628,0.14432421,0.40701526,-0.16929135,-0.6140789,-0.011143088,0.11365907,-0.2654459,-0.47711244,0.46951362,0.033997204,0.8164887,0.01964582,0.021296173,0.30488434,-0.48919666,0.06493799,-0.28273654,-0.07994406,-0.7717218,0.09319469,981 -117,0.4802388,-0.0914431,-0.57846844,-0.08633191,-0.57933915,0.08526304,-0.14699666,0.24884814,0.2653952,-0.17026256,-0.32440543,-0.1392046,0.23041706,0.37469664,-0.13691252,-0.80478513,-0.08293371,0.18498385,-0.79734075,0.48920733,-0.55058736,0.34772044,0.080954626,0.45047265,0.18279281,0.34141934,0.2433458,-0.11862131,-0.12197102,0.068379655,-0.060049444,0.16330753,-0.60489154,0.14960198,-0.1711525,-0.3373746,0.10367816,-0.45990545,-0.24441157,-0.6641208,0.20712547,-0.99186724,0.5175505,-0.17264566,-0.08090626,-0.03986414,0.26865453,0.33477277,-0.37959743,0.15389258,0.20590496,-0.27925804,-0.18389145,-0.23441441,-0.101839185,-0.5022702,-0.4834724,-0.05561912,-0.55950177,-0.31631577,-0.21827386,0.22087495,-0.30645952,0.15552536,-0.073966056,0.24579129,-0.4450099,0.06756349,0.35083556,-0.21403523,0.12157008,-0.47798002,-0.0019180477,-0.030886032,0.45548636,-0.012368336,-0.19142552,0.37594754,0.3813506,0.45447317,0.30397758,-0.36719233,-0.16902484,-0.25559196,0.2401762,0.5075206,-0.11375884,-0.30014104,-0.17437808,0.06916592,0.27548122,0.33774418,-0.056705974,-0.21832743,-0.046933915,-0.13620889,-0.13039671,0.38081023,0.5306399,-0.31123,-0.30204582,0.43362382,0.66444534,0.19943914,-0.14987922,0.119717926,0.050888535,-0.624552,-0.1515484,0.15727076,-0.062473454,0.44981253,-0.18514487,0.12160571,0.9366107,-0.08936228,0.042638276,-0.14177673,-0.04323145,-0.2416605,-0.26760986,-0.078873456,0.16322826,-0.5809504,0.0011615027,-0.30600667,0.81835103,0.19761837,-0.6267351,0.41296166,-0.54231894,0.22876024,-0.11661891,0.5969704,0.65246505,0.33919436,0.2897778,0.7577852,-0.30185276,0.33617184,-0.104676604,-0.5153757,0.050057575,-0.26865342,0.085734904,-0.4069925,0.28390557,-0.22234696,0.060250755,0.07500565,0.51014584,-0.51718616,-0.18172352,0.115676425,0.79631317,-0.3980274,-0.1350937,0.66738486,0.85886663,1.0363319,-0.028070368,1.394921,0.40441525,-0.17846125,0.008570276,-0.28262487,-0.613713,0.18075672,0.36503887,0.013373271,0.29110977,-0.061095573,-0.09744913,0.36509112,-0.32572064,-0.1489736,-0.07081179,0.38980693,0.16606325,0.058545396,-0.42759883,-0.21248117,0.022270307,-0.03957393,0.22266886,0.32876623,-0.22777149,0.38681638,-0.07259846,1.4296672,-0.068518944,0.12248092,0.09603618,0.45562685,0.27528954,-0.035673283,-0.085069865,0.41844344,0.37945092,-0.017119274,-0.6071039,0.20862691,-0.35749063,-0.45351142,-0.14604762,-0.33021596,-0.18705727,0.085892364,-0.46587607,-0.20065258,-0.10983813,-0.17785186,0.4281835,-2.5458353,-0.30603793,-0.11848354,0.3574337,-0.2586139,-0.2350387,-0.20665747,-0.5912653,0.20862766,0.21195707,0.40041563,-0.7176031,0.51554364,0.5106733,-0.49891508,-0.13152885,-0.6803051,-0.08267022,0.015634663,0.43053892,-0.14932832,-0.04507058,-0.26789635,0.2189116,0.60749173,-0.0042252243,0.23311661,0.5379242,0.383284,0.20715556,0.53620964,-0.028932098,0.54238045,-0.26256222,-0.16612086,0.4011346,-0.25386652,0.35556757,-0.27961513,0.12721929,0.51177174,-0.44109285,-0.9563654,-0.6285664,-0.2815048,0.93739045,-0.48133898,-0.46650654,0.20819287,-0.056221254,0.019674286,0.14766008,0.44833136,-0.10319883,0.04636982,-0.7525137,0.032984056,0.026305437,0.13781255,0.043956894,0.02750948,-0.21204041,0.67741245,-0.151573,0.52737045,0.14105871,0.34304142,-0.01658979,-0.4233387,0.09103799,0.8012366,0.2923622,0.10362893,-0.26152742,-0.2951633,-0.13043985,-0.22639188,-0.031914525,0.5680582,0.786831,0.025318976,0.15098207,0.21067563,-0.07856552,0.057237096,-0.18574996,-0.22504899,0.067317866,-0.061798133,0.40170288,0.74891466,-0.24851242,0.4696106,-0.32348996,0.37499094,-0.12206185,-0.68936163,0.63456464,0.70232576,-0.26483965,-0.05568111,0.52010554,0.4535637,-0.5101566,0.47040147,-0.7158358,-0.27890706,0.7535863,-0.19640982,-0.4606759,0.1505476,-0.21718107,0.04757414,-0.79025435,0.3090335,-0.1937603,-0.4017567,-0.40779698,-0.0604269,-3.4237494,0.2670291,-0.18581499,-0.04617957,-0.23422994,-0.058439165,0.23565419,-0.5848941,-0.6941365,0.17132398,0.18787631,0.6915277,-0.12274042,0.2644961,-0.26146972,-0.1463452,-0.11422644,0.11426304,0.12086065,0.24828458,-0.077994555,-0.45054764,0.09295751,-0.048306078,-0.473419,0.26607695,-0.58781075,-0.50949466,-0.07533839,-0.3969276,-0.2192881,0.53686965,-0.44788072,-0.070090644,-0.25898582,0.108710185,-0.33205092,0.14366746,0.15175718,0.27831644,0.19513312,-0.005220769,0.091920644,-0.32788536,0.56445175,-0.09235443,0.26256996,0.03552985,0.054014623,0.07882344,0.42028773,0.57050085,-0.23311782,1.0154824,0.26034683,-0.022378776,0.19316818,-0.19470692,-0.3163008,-0.5536652,-0.3729983,-0.2326079,-0.45167476,-0.49936712,-0.028447598,-0.38496014,-0.8156212,0.47423047,0.047441587,0.32287148,-0.18495242,0.24753013,0.55485624,-0.34192088,-0.010689035,-0.061260503,-0.15747893,-0.6321125,-0.35223526,-0.6620868,-0.5218324,0.10126758,0.99844134,-0.32108888,-0.0031373724,-0.18086791,-0.28739098,0.008447422,0.09499267,0.05972769,0.28027552,0.6255685,-0.12864345,-0.7189586,0.48269552,-0.17985646,-0.13242553,-0.59248906,0.010254921,0.57227945,-0.7592336,0.6315105,0.46620739,0.12142283,0.12776558,-0.6055823,-0.26641876,-0.06557763,-0.19665746,0.48465765,0.088045835,-0.7566191,0.5798053,0.30578196,-0.43057078,-0.8448231,0.30399853,-0.02513786,-0.34433278,0.03264251,0.31092837,0.13761847,-0.100213915,-0.25989187,0.15021059,-0.526566,0.3301631,0.23671344,-0.049235642,0.31286836,-0.16439112,-0.4189031,-0.69979894,-0.13104711,-0.44199845,-0.23756948,0.19416974,-0.11150162,0.0011738464,0.08508977,0.096961856,0.47171804,-0.32346523,0.102172144,-0.006106943,-0.34049946,0.27870914,0.39141473,0.32113373,-0.3419452,0.5280722,0.036139168,-0.2482062,0.14761838,0.14245483,0.4317522,0.15138,0.38400257,-0.09317055,-0.18500063,0.3755203,0.74977946,0.08882616,0.35288116,0.033923365,-0.25116348,0.47279269,0.013052233,0.12063978,0.024812594,-0.36634612,-0.021120735,-0.04360196,0.19607206,0.5073179,0.3651313,0.43959028,0.055443034,-0.15990594,0.12078561,0.09360903,-0.005108457,-1.1052333,0.21975607,0.17360166,0.89016044,0.44253284,0.08976433,-0.098269895,0.562934,-0.21027279,0.13400108,0.46873295,0.095906556,-0.43155292,0.8109376,-0.60143936,0.3213501,-0.31652898,-0.08392052,0.14907217,0.22578266,0.29680738,0.8831969,-0.17586401,-0.027590683,-0.108577006,-0.1940816,0.010820888,-0.2906368,-0.06476776,-0.56323755,-0.3318394,0.692944,0.44570422,0.34191945,-0.27198416,-0.13160197,-0.038088154,-0.11619849,0.09493819,-0.015766248,0.06426707,0.15035829,-0.5051259,-0.3512005,0.5944318,0.09274772,0.16819197,-0.22543761,-0.35372245,0.066904195,-0.34651124,0.0211261,0.017231582,-0.68561983,-0.10244935,-0.16616213,-0.62206733,0.3964094,-0.17928296,0.11326994,0.18030584,-0.017324418,-0.278781,0.1814054,0.097095996,0.9880911,0.03459598,-0.22952096,-0.33257943,0.12514234,0.38497788,-0.25547534,0.095054224,-0.34393904,0.12908052,-0.5141619,0.7116699,-0.1633895,-0.3356232,0.35693023,-0.29902294,-0.026835157,0.59984916,-0.053299397,-0.14565288,0.15740252,-0.047059506,-0.5273715,0.0037677437,-0.34289986,0.19707955,0.24163772,-0.14691876,-0.106772065,-0.18250239,-0.08405334,0.5595967,0.040216513,0.5007518,0.27594346,0.0073678754,-0.22150172,-0.039393652,0.17378023,0.51751655,0.12584297,-0.13949162,-0.391136,-0.44022813,-0.2320678,0.23332268,-0.15701483,0.13601165,0.10838136,-0.22346567,1.0198187,0.013773007,1.149577,0.16787145,-0.3047545,0.09033914,0.51273584,-0.07787043,0.0038836487,-0.36700267,0.7799482,0.48841774,-0.13325179,-0.051164094,-0.36882877,-0.054840825,0.36981916,-0.36450624,-0.022429623,-0.090215445,-0.51498675,-0.4866112,0.32276106,0.23737606,0.12815426,-0.06581099,0.008755298,0.027625374,0.085123256,0.5391444,-0.6969952,-0.23935911,0.17525625,0.25191182,0.027113743,0.3030158,-0.3539327,0.4377398,-0.7390499,0.08847487,-0.51911557,0.14551486,-0.13158603,-0.3331179,0.11823679,0.027215783,0.39914343,-0.30278623,-0.44398808,-0.18427198,0.46940833,0.08584265,0.13028832,0.62917113,-0.28757793,0.059161104,0.1366253,0.5725733,1.2605054,-0.42600554,0.114304066,0.4497881,-0.3153246,-0.5865693,0.44434744,-0.3732832,-0.09964397,-0.10456035,-0.45183548,-0.46183696,0.3215006,0.2434303,0.06724337,0.09374989,-0.57462215,0.021372177,0.37863427,-0.2559,-0.22143818,-0.18512549,0.3190413,0.7899303,-0.29353172,-0.29142213,0.05899367,0.3466212,-0.25369564,-0.49979302,-0.08339012,-0.30103528,0.39820856,0.101444304,-0.0863261,-0.075160295,0.17165986,-0.4286206,0.106161624,0.16000623,-0.37829956,0.12796566,-0.26210642,0.19018644,0.84714675,-0.17953134,-0.1472,-0.83843625,-0.36178055,-0.93511117,-0.454464,0.1670638,0.15021744,0.026117451,-0.37996265,0.06925832,-0.10584938,-0.15100886,0.06313166,-0.4935661,0.40392816,0.08684096,0.49834287,-0.26446676,-0.9745467,0.040179014,0.042077623,-0.26907116,-0.6626394,0.5985699,-0.13347608,0.8479388,0.036669362,-0.0978611,-0.008369185,-0.34554374,0.3061211,-0.47477466,-0.08504635,-0.8760117,0.12199935,994 -118,0.35852987,-0.21421257,-0.5082455,-0.07557819,-0.2717296,-0.046913315,-0.17160329,0.62672967,0.20821519,-0.36085624,-0.12240076,-0.2373073,-0.019471364,0.4476611,-0.13190477,-0.52289677,0.005088069,0.045875534,-0.62035394,0.49004474,-0.36717847,0.043673873,0.033167396,0.5337162,0.23451903,0.23550662,0.027586734,-0.07896665,-0.22919114,-0.1494146,-0.0018862442,0.32234845,-0.6470248,0.061529923,-0.24004515,-0.27710667,-0.11289547,-0.62836283,-0.31815663,-0.75342643,0.245698,-0.8391985,0.4552621,0.010651823,-0.17050849,0.25619063,0.14882308,0.37925386,-0.23864624,-0.2619833,0.18028742,-0.19878775,-0.11678218,-0.03336237,-0.23164108,-0.16154546,-0.6375107,0.22528999,-0.45815718,-0.16676314,-0.27613074,0.09936805,-0.2935198,0.04353342,-0.043522518,0.49668935,-0.42555183,0.05965003,0.3732496,-0.18043153,0.18441351,-0.47438297,-0.07960652,-0.20799018,0.19148259,-0.31335515,-0.27983984,0.37289268,0.23708674,0.498062,0.0053665796,-0.20504813,-0.35923514,0.100230776,0.04818035,0.46448332,-0.17679529,-0.4236625,-0.13040404,0.092667505,0.14605764,0.1974096,0.11294488,-0.25068817,-0.19547294,0.004709697,-0.098300196,0.40639353,0.48354676,-0.24269746,-0.16598988,0.16089405,0.59455466,0.31644538,-0.04994458,-0.025399057,0.09972062,-0.61006,-0.15458116,-0.0065665683,-0.034901712,0.50248617,-0.07909846,0.20163707,0.6307613,-0.21504714,-0.06680083,0.08555327,-0.02965091,0.012216274,-0.31239203,-0.15491556,0.3178152,-0.39461213,0.27747044,-0.14101951,0.609749,0.2713639,-0.7044452,0.36484382,-0.5113159,0.21385041,-0.07900966,0.44957986,0.7336626,0.5395524,0.45989183,0.69219166,-0.32560363,0.2340628,-0.14737228,-0.35397214,0.17151575,-0.32719615,-0.10907666,-0.43921915,-0.0473968,-0.2244622,-0.14761224,0.2212726,0.16717274,-0.58418745,-0.0054649794,0.12265134,0.9429278,-0.14444304,-0.14620765,0.91213775,0.8948079,0.9774156,0.0037960252,0.9995383,0.081382275,-0.17344688,0.40148753,-0.09241107,-0.79748493,0.31779397,0.32477218,-0.21265142,0.20961386,0.040076826,-0.14884557,0.6139469,-0.47081614,0.051973917,-0.19269432,0.019845966,0.1443173,-0.09972604,-0.38984865,-0.22869545,-0.13827747,-0.058908843,-0.07361946,0.25611866,-0.08374249,0.5349876,-0.19572869,1.7083514,0.025058,0.17300579,0.031277053,0.65828586,0.10424292,-0.14710875,-0.2447,0.12289012,0.23619753,0.22018744,-0.45184323,0.09286175,-0.20013529,-0.36202106,-0.082233764,-0.39810884,-0.07018452,-0.12834066,-0.4743538,-0.18727106,-0.1573364,-0.16054052,0.3973789,-2.7825809,-0.092058815,-0.013196579,0.3101617,-0.27401587,-0.31114605,-0.11416725,-0.50616115,0.46389845,0.28244987,0.5251516,-0.58482647,0.36139956,0.30665252,-0.6003221,-0.086744264,-0.7000169,-0.10933725,-0.01479598,0.3320495,0.015918072,-0.08760296,0.13040014,0.06615327,0.56667995,-0.087042,-0.004855325,0.17492229,0.4330656,0.10184202,0.48262602,-0.18056388,0.58637756,-0.47347298,-0.32545233,0.28539184,-0.2888145,0.30409607,-0.042861264,0.089299455,0.4913608,-0.42636955,-1.0284902,-0.59471184,-0.13036293,1.2141595,-0.17197777,-0.38714778,0.34882036,-0.45084083,-0.14364815,-0.03551638,0.46654767,0.07671605,0.030774005,-0.720837,-0.09302758,-0.13598947,0.10146491,0.007747714,0.01731683,-0.40135625,0.5053133,-0.121768,0.23985912,0.5059706,0.1595287,-0.24236774,-0.53446895,0.1494827,0.79186237,0.26832575,0.10851414,-0.28202647,-0.27767146,-0.3613736,-0.17143092,0.037914556,0.4694675,0.68648976,-0.052590836,0.17062464,0.2531895,0.08111814,0.0382788,-0.17824148,-0.32133728,-0.20401856,-0.021328917,0.6257246,0.80285454,-0.105349384,0.41095,0.047955237,0.38351974,-0.051984992,-0.44472092,0.4790865,0.8772223,-0.16575052,-0.28938618,0.4838157,0.3671135,-0.24646215,0.5163334,-0.4409481,-0.2431758,0.38901138,-0.1139733,-0.5280659,0.19975744,-0.28189963,0.14150691,-0.9138864,0.27700704,-0.28932628,-0.3520334,-0.6507911,-0.11114371,-3.4041317,0.120884575,-0.23811089,-0.13886738,-0.0743052,-0.09185222,0.081783056,-0.5932658,-0.61430067,0.09286586,0.07068177,0.7767568,-0.19323087,0.049549613,-0.22185214,-0.24845484,-0.38043737,0.08895346,0.37542483,0.38326886,-0.005172634,-0.45754296,-0.20460661,-0.26314986,-0.5001597,-0.03282799,-0.6741115,-0.40062162,-0.25400332,-0.5342658,-0.2824158,0.69047797,-0.29233736,0.06557308,-0.18126278,0.050960336,0.037184358,0.30677027,0.16409205,0.15415065,0.15115315,-0.095216274,0.05301695,-0.21964723,0.20766197,0.12271638,0.34695354,0.37042445,-0.03922855,0.3481186,0.592852,0.943667,-0.190412,0.9222148,0.55266094,-0.027792875,0.28178132,-0.38056836,-0.32257426,-0.43975416,-0.16236138,0.085030146,-0.4773971,-0.41665205,0.18615976,-0.36009684,-0.8747397,0.7054073,-0.063724145,0.03603877,-0.0037498316,0.16089328,0.60294527,-0.3460886,-0.11095394,-0.09118026,-0.0009955327,-0.61761665,-0.24611518,-0.43359548,-0.72620416,-0.07509403,1.0168316,-0.17809702,0.06655235,0.05907832,-0.1759964,0.03699513,0.052764136,-0.061231267,0.19844891,0.373784,-0.07748253,-0.6683351,0.47742695,-0.1639878,-0.17212394,-0.6045584,0.3409216,0.5497869,-0.659094,0.61943126,0.33630842,0.021004265,-0.19195591,-0.510083,-0.23516132,-0.13777253,-0.11043296,0.3327506,0.05850791,-0.7888833,0.39423743,0.45495814,-0.37217343,-0.8074238,0.37709108,0.020798746,-0.16944711,0.04934748,0.32254758,0.106690526,0.00015028616,-0.23220351,0.18133564,-0.38203785,0.122186586,0.28788692,-0.08237784,0.27877337,-0.31383547,-0.18468246,-0.67998254,0.1741653,-0.4154375,-0.30663013,0.3813524,0.12199309,0.062004115,0.070637256,0.1714645,0.3027863,-0.16997705,-0.0088823475,-0.16431178,-0.3208644,0.2669779,0.49267966,0.5397101,-0.595609,0.60183454,0.06571566,-0.1055074,0.179281,-0.042728543,0.4557767,-0.08248653,0.32163286,0.105355404,-0.21827014,0.1016039,0.8252695,0.06995479,0.4673477,-0.067154504,-0.0742215,0.18488051,0.15958166,0.13638894,0.143151,-0.6354755,0.16438083,-0.17437261,0.24007517,0.42747465,0.15334447,0.36577553,-0.06719879,-0.2691957,-0.014763415,0.06846536,0.048051015,-1.4080641,0.35846463,0.23364757,1.0019648,0.3265723,0.12563682,0.0810319,0.8120348,-0.17307596,0.15462966,0.4351671,-0.1322731,-0.5567985,0.54807395,-0.79945105,0.639084,0.1918897,0.008680028,0.11918228,-0.0460124,0.5832197,0.6354703,-0.21541895,-0.057069197,0.040169977,-0.26770326,0.2396595,-0.53309786,0.08523631,-0.45573866,-0.23262297,0.6415722,0.5761653,0.26325536,-0.17267331,0.0071468037,0.15268575,-0.07668133,0.21462587,-0.033202093,0.084191516,0.009145307,-0.61840236,-0.13346218,0.5679427,-0.10728487,0.2562238,-0.113128796,-0.12978461,0.2310974,-0.199944,-0.17744945,-0.2352448,-0.6812897,0.013974544,-0.47269756,-0.43848523,0.36247593,-0.047327466,0.3421239,0.24038619,0.06623384,-0.49062756,0.687019,-0.1809069,0.9047827,-0.16180745,-0.21918978,-0.38831574,0.34008986,0.2938174,-0.17228581,-0.04639437,-0.2888412,0.06793148,-0.36442515,0.32349622,-0.15648825,-0.50942284,-0.020611579,-0.021472719,0.08055806,0.5464415,-0.12836768,-0.01086684,-0.012343312,-0.23510142,-0.36434492,-0.1504065,-0.06422248,0.23340505,0.25427434,-0.08527276,-0.14148301,-0.15394889,-0.0998307,0.53896934,-0.017387072,0.41646135,0.31230685,0.06183513,-0.28754112,-0.18952173,0.2348617,0.6611923,-0.069020085,-0.25605613,-0.4023421,-0.27018687,-0.36251366,0.18637225,-0.13660458,0.45235723,0.117809914,-0.32946962,0.7018991,-0.0072814464,1.312881,-0.0272875,-0.43670556,0.20735115,0.43930048,-0.04821741,-0.052693352,-0.4937976,0.92010766,0.37839037,-0.11609553,-0.1286872,-0.37324366,0.006963118,0.21791612,-0.24265017,-0.20653799,-0.056381416,-0.5087669,-0.10627768,0.24754736,0.3141065,0.3445758,-0.23729374,0.009225086,0.17463459,0.021976693,0.140202,-0.373257,-0.19914576,0.3033414,0.36478695,-0.07949176,0.08514978,-0.48346218,0.4048394,-0.3114684,0.059049044,-0.29273346,0.22590917,-0.21693373,-0.30564144,0.28749526,-0.08790091,0.4115722,-0.33975124,-0.29543468,-0.3283071,0.4218214,0.29033664,0.19630763,0.6041275,-0.28623375,-0.03346907,0.062205095,0.52246976,0.81114185,-0.28170225,0.014253521,0.32024786,-0.06964619,-0.48870242,0.45309952,-0.27832964,0.2576748,-0.108006,-0.10356839,-0.6856925,0.1344535,0.14155337,-0.034988485,-0.06935929,-0.64306694,-0.13577406,0.20815231,-0.22202414,-0.284648,-0.5276857,0.008372796,0.61967,-0.13961855,-0.26854992,0.24165884,0.19226973,0.007988667,-0.40381482,-0.082041375,-0.22282659,0.10700525,0.08978513,-0.5643037,-0.07328473,0.0608361,-0.5252878,0.15786196,0.050977714,-0.2911066,0.049716983,-0.10921212,-0.019390147,0.9387369,-0.28561345,0.35513973,-0.47478575,-0.513146,-0.9543426,-0.3046104,0.4822649,0.070447475,0.043781407,-0.6678965,-0.03710165,-0.20288242,-0.30677977,-0.052346405,-0.49166667,0.35474586,0.061244022,0.36213705,-0.19351985,-0.6305058,0.24790902,0.10619981,-0.12269654,-0.5704042,0.4904651,0.076360054,0.81617224,0.10733033,0.16438945,0.44852144,-0.38379413,-0.24986883,-0.18403314,-0.102278,-0.5122573,-0.049635526,0 -119,0.2614745,-0.019233406,-0.4816751,-0.17611119,-0.4058563,0.05030082,-0.1432229,0.34655297,0.26998806,-0.26255795,0.042727087,0.025702557,-0.08578718,0.2822681,-0.24314703,-0.7273008,0.10097357,0.18101378,-0.64158577,0.45926154,-0.4560178,0.3666661,-0.17002758,0.33771974,0.056437366,0.26373088,0.0270614,-0.026515337,0.112497345,-0.0022240798,-0.056592267,0.3613356,-0.35828632,0.26579055,-0.058456652,-0.22962376,0.01900121,-0.35952178,-0.3639269,-0.71530116,0.30659446,-0.4800077,0.4924711,-0.055463124,-0.43110314,0.16968913,-0.032255847,0.24125203,-0.3865387,0.043007154,0.21241342,-0.10809307,-0.0995102,-0.13355714,-0.26588517,-0.36231232,-0.44275787,0.0007608533,-0.5890309,0.03047468,-0.30556306,0.19323209,-0.29861984,-0.063718654,-0.20399147,0.31584024,-0.43280366,0.13839397,0.18128252,-0.09193397,0.037704013,-0.37234247,-0.051885962,-0.15575224,0.2059889,-0.085029505,-0.2553067,0.17164713,0.23321387,0.47729868,-0.00086783565,-0.2106313,-0.25328973,-0.06264532,0.04099586,0.3506392,-0.07948939,-0.23927797,-0.24201012,0.13785173,0.14779015,0.20943451,-0.15529843,-0.3311453,-0.07286808,-0.021281762,-0.2996376,0.45318255,0.44055864,-0.33413282,-0.1721828,0.4267359,0.415767,0.26270744,-0.31106707,0.17116234,-0.07231627,-0.4174778,-0.35286316,0.073432036,-0.031842414,0.46991542,-0.11838558,0.21016067,0.7247673,-0.09563212,-0.1376819,-0.004275358,-0.050291784,0.035421956,-0.16752367,-0.18246533,0.09200333,-0.4790884,0.151925,-0.07938907,0.7512686,0.10423642,-0.92836565,0.36946216,-0.480591,0.118290424,-0.19159393,0.58911353,0.7963949,0.4572611,0.2501185,0.7112891,-0.52755195,0.18069264,-0.0057518193,-0.4169346,-0.037979424,0.02367603,-0.099520594,-0.5587928,0.10406659,0.008430858,-0.03513803,0.021174384,0.039778177,-0.32610255,-0.13972804,-0.04876465,0.6774286,-0.3859658,-0.17918916,0.790322,1.0147442,0.9630978,0.14426921,1.1490155,0.27417478,-0.007697324,0.05161092,-0.33505592,-0.52834785,0.2245244,0.2600673,0.03113741,0.29089403,0.1590814,0.1947953,0.39829192,-0.11790419,-0.041117348,-0.159743,0.29503992,-0.06514258,-0.11608158,-0.3612185,-0.33499625,0.17193025,0.15636039,-0.09932906,0.27726173,-0.13904886,0.23170286,0.2147941,1.1864792,0.2471635,0.010272447,0.0057058604,0.3670517,0.16100264,-0.20751701,-0.16043131,0.31610367,0.3802332,-0.025459746,-0.55264354,-0.00980356,-0.2028797,-0.31597266,-0.10617172,-0.30618703,-0.0015515486,-0.19009088,-0.479777,-0.07667664,0.07314251,-0.21936356,0.62024856,-2.7876215,-0.19995397,-0.08217765,0.28379086,-0.16837575,-0.26417577,-0.14425404,-0.38986906,0.33842182,0.35763356,0.3453034,-0.5410777,0.664888,0.19555712,-0.484398,-0.03951401,-0.6522667,-0.056706633,0.08866228,0.4073414,0.0449277,-0.03859785,-0.07189242,0.21952061,0.5990268,-0.067425765,0.049246173,0.21717685,0.57654214,-0.054329615,0.509487,0.10701715,0.4780031,-0.21335743,-0.06792057,0.27496856,-0.3573809,0.4242534,0.12992501,0.08180979,0.37199974,-0.5314234,-0.83270717,-0.4966736,-0.29581484,1.2316278,-0.25912935,-0.3402875,0.24845845,-0.2315448,-0.28809512,-0.05977034,0.2971103,-0.049555056,-0.21968536,-0.6441591,-0.0011980097,-0.030537626,0.2035265,-0.100813374,0.083512135,-0.16618824,0.6435806,-0.083978646,0.5234764,0.3727168,0.14875844,-0.11661012,-0.27780235,0.10260795,0.6719054,0.3636926,0.07049696,-0.22815691,-0.19967543,-0.15913172,-0.038797993,0.16891202,0.6078766,0.5127609,-0.029509788,0.02948929,0.2928339,-0.23638959,-0.028391456,-0.25072357,-0.18729596,-0.07266151,0.11017154,0.59975743,0.64522624,-0.19097398,0.37903377,-0.035879437,0.07868735,-0.09182561,-0.49622682,0.3614865,0.7075972,-0.052532636,-0.30375227,0.42978248,0.3970309,-0.19429107,0.27968213,-0.3369902,-0.18262705,0.5667051,-0.15816341,-0.29180616,0.119846135,-0.2663084,-0.004069664,-0.8928093,0.3104889,-0.1513072,-0.7525931,-0.47842348,-0.08462096,-3.6526225,0.2191454,-0.122886226,-0.11187038,-0.07422548,-0.161158,0.2336915,-0.49316132,-0.56073,0.14945807,0.14402008,0.4770789,-0.07426117,0.06113232,-0.2490388,-0.2748272,-0.24080744,0.16636893,0.0777619,0.3239434,-0.0621381,-0.30405658,-0.05180835,-0.23355117,-0.48622847,-0.01485218,-0.5078429,-0.4122289,-0.031647436,-0.495657,-0.2426874,0.6924291,-0.35787004,-0.0625684,-0.23150365,-0.06658487,-0.18561764,0.44479617,0.17129119,0.25449958,0.010633477,0.06947096,-0.12518726,-0.38397697,0.26239213,0.04183501,0.25612625,0.25129324,0.060169145,0.19685036,0.6502847,0.6644952,0.069839224,0.7237222,0.26879027,-0.19964738,0.35867387,-0.26358077,-0.34733158,-0.66391724,-0.3190215,-0.30452737,-0.359999,-0.32120705,-0.099031165,-0.36934012,-0.71445876,0.29328203,0.05645379,-0.00028645992,-0.00809013,0.24071662,0.3756517,-0.05623389,0.12790239,-0.049209427,-0.24395357,-0.42255655,-0.4542335,-0.57031566,-0.4267812,0.11960385,1.0485082,-0.17608815,-0.014540854,-0.014419059,-0.21035652,0.03417957,0.07621252,0.25102845,0.37179253,0.14987792,-0.24164733,-0.6345416,0.34696394,-0.15513021,-0.09745132,-0.66611874,0.015427237,0.7189175,-0.5574824,0.61224717,0.28073877,0.17241427,0.17060016,-0.63188666,-0.31575045,0.06699525,-0.17529391,0.5019864,0.23323473,-0.7396581,0.5639065,0.30287477,-0.04144264,-0.58975893,0.5671395,-0.112914704,-0.16470976,0.06709163,0.3125801,0.18266755,-0.12026267,-0.016851481,0.19957511,-0.3304803,0.22663762,0.25104302,-0.04143041,0.20324716,-0.034336742,-0.030521575,-0.62845695,-0.23347549,-0.58745897,-0.20644093,0.021875659,-0.022739407,0.13969104,-0.056677066,-0.06611706,0.3439668,-0.29809675,0.16371511,-0.11698716,-0.25520262,0.1868997,0.48216388,0.31771645,-0.41425693,0.57022405,0.072223835,0.25843498,-0.043097593,0.1566762,0.48004463,0.08738379,0.41059884,-0.07481752,-0.095634565,0.12023094,0.82952225,0.21029158,0.34654012,0.06989882,-0.11515341,0.25176626,0.17040174,0.21777931,-0.10576652,-0.14567712,0.07222292,0.04379309,0.22959144,0.37107405,0.07686894,0.1879954,-0.14008935,-0.18252526,0.12257622,0.18708633,-0.02864658,-1.2194474,0.4851181,0.34823975,0.68275577,0.35881606,0.0784479,-0.02932239,0.56955975,-0.25721496,0.10623164,0.39809716,0.0019583304,-0.4468547,0.4324323,-0.59613186,0.6021314,-0.0761158,-0.078921966,0.18911959,0.18573815,0.29700607,0.82202834,-0.15709712,0.04507649,0.077624485,-0.2903558,-0.031104548,-0.36882514,-0.017187564,-0.4351142,-0.31722406,0.65710145,0.5276803,0.3109209,-0.33272398,0.026463313,0.07793355,-0.19236925,-0.0057121227,-0.14049648,-0.091670066,-0.1086485,-0.5393189,-0.20104338,0.5037462,-0.095415436,0.07812011,0.08485301,-0.20603329,0.4129096,-0.06862155,0.014325524,-0.08050695,-0.57888234,0.0029744825,-0.22767061,-0.38523716,0.36496308,-0.22817558,0.33179802,0.15993387,0.11840836,-0.34190413,0.35753518,0.051257778,0.68174094,-0.07695828,-0.081604384,-0.3204523,0.055252638,0.23459087,-0.16331914,-0.19628827,-0.38279405,0.039743524,-0.62770766,0.30135906,-0.26501527,-0.31144714,-0.112025246,-0.08980713,0.13043055,0.3786008,-0.20790829,-0.193892,-0.01391023,5.697409e-05,-0.21850702,-0.16796298,-0.2737106,0.32172993,0.09596279,-0.051598854,0.0058604437,-0.12809321,-0.106222026,0.3228467,0.12480737,0.22420844,0.2449417,0.11409235,-0.22040175,-0.06400223,-0.097779274,0.39505985,0.041348603,-0.06317089,-0.24366896,-0.14945579,-0.2376148,0.28365326,-0.22210354,0.10892406,-0.009854897,-0.33305493,0.6507034,0.049474455,1.0527943,0.04605975,-0.17896062,0.16361451,0.44670343,0.16983981,0.042898912,-0.22637312,0.621824,0.5223324,-0.06374326,-0.16435996,-0.37343132,-0.14857669,0.06739534,-0.22290736,-0.2561747,0.031014534,-0.6514892,-0.14423925,0.14989635,0.109302536,0.16743039,-0.03950615,-0.18304911,0.10853601,0.23164542,0.38357577,-0.4433958,-0.017770013,0.21411571,0.14797375,-0.012373046,0.08028645,-0.3900587,0.44032922,-0.5946699,0.13580994,-0.3187812,0.14585534,-0.1969571,-0.18405816,0.15632153,-0.018468857,0.2859576,-0.20285913,-0.22122113,-0.31783444,0.63087326,0.1903836,0.119468644,0.6224887,-0.18940134,-0.063636504,0.10865031,0.4461202,0.8957405,-0.114280194,-0.19656743,0.3234583,-0.19975628,-0.44815916,-0.0046316665,-0.43946293,0.08436589,-0.0056629223,-0.18528035,-0.32838613,0.32209522,0.13197741,0.068271965,0.014978703,-0.61536825,-0.07237422,0.3615173,-0.26820722,-0.3191881,-0.29362896,0.3189296,0.6814874,-0.31478375,-0.3620897,0.012705215,0.2129392,-0.20267104,-0.5120423,0.12996478,-0.28321847,0.31684828,0.07964298,-0.41042143,0.019816926,0.22444372,-0.38358232,-0.0137834465,0.3599991,-0.30521375,0.0977031,-0.14038672,-0.081337884,0.90768397,-0.13741986,0.33967456,-0.5926396,-0.54138094,-0.75110084,-0.30960763,0.19592044,0.27482083,-0.13315532,-0.58662087,-0.04310361,0.037700024,-0.15451345,0.013576265,-0.48747382,0.4698569,0.08888401,0.27274826,-0.045464396,-0.94036496,-0.08376514,0.04303968,-0.34706828,-0.42316172,0.57697177,-0.32146898,0.6227722,0.008546743,0.16528249,0.0046624583,-0.40173733,0.32574162,-0.47390455,-0.16696411,-0.54716706,0.08912746,7 -120,0.44488475,-0.25743976,-0.5159148,-0.0924605,-0.33708933,-0.1578853,-0.22091955,0.1717604,0.18874766,-0.059151586,-0.19924363,-0.1609756,0.2139729,0.5024792,-0.12988383,-0.7563636,-0.103032134,0.16504161,-0.8180517,0.5290792,-0.5772398,0.15623781,0.16872048,0.45626247,0.15885755,0.4627964,0.43618077,-0.17189834,-0.065994054,-0.03917748,-0.12686405,0.30873892,-0.65183514,0.017021,-0.24162439,-0.3001286,0.11559164,-0.51059324,-0.23736218,-0.77736795,0.112789676,-0.97569686,0.48854688,0.055306066,-0.06470038,-0.10284632,0.2816316,0.3544372,-0.4329535,-0.043381818,0.20634297,-0.26804593,-0.13552722,-0.3153532,0.06297776,-0.5137368,-0.52577275,0.0035678367,-0.5254624,-0.3062913,-0.26507047,0.16590089,-0.35872206,0.058769148,-0.12187108,0.4156165,-0.45966625,-0.04136545,0.41700116,-0.24738552,0.21534367,-0.44792625,-0.05388614,-0.09824133,0.46306476,0.0631884,-0.19781561,0.4604408,0.3085706,0.38818875,0.31659746,-0.38857454,-0.25077063,-0.19133233,0.24674839,0.45778263,-0.1533126,-0.4853353,-0.1890519,0.057254013,0.24670582,0.39139727,0.0143709285,-0.19291404,0.030550273,-0.016749699,-0.10034949,0.4644925,0.5596006,-0.24079739,-0.36265284,0.20599145,0.5036919,0.20895928,-0.13510971,-0.17640899,0.031490874,-0.55324763,-0.19267918,0.10960892,-0.02360731,0.62762886,-0.1333949,0.027437815,1.0398839,-0.26239523,0.06274049,-0.28302664,-0.08335173,-0.3046785,-0.3022504,-0.14006743,0.19627823,-0.6183519,0.07944288,-0.30987433,0.79093075,0.19245474,-0.6609511,0.3682669,-0.53412145,0.20058806,-0.07817704,0.6101855,0.67737365,0.34367672,0.53818107,0.6372023,-0.30648342,0.26166365,-0.064141944,-0.5892427,0.1706055,-0.3096679,0.17359611,-0.4263458,0.01781152,-0.15735605,0.112726875,0.012736698,0.48570016,-0.60669106,-0.005460207,0.2929358,0.702979,-0.35912234,0.012733754,0.70561284,1.107064,0.9923254,0.027231162,1.2280993,0.42603454,-0.2284515,0.14954518,-0.27011764,-0.71690696,0.16650121,0.39915022,-0.124428354,0.28439584,-0.08664869,-0.08909921,0.3879238,-0.55161864,-0.012015752,-0.07305443,0.2646555,0.121153265,-0.017152289,-0.48689488,-0.18608329,-0.04570628,-0.07898912,0.1176319,0.29853287,-0.20007804,0.52934676,-0.13683988,1.3766366,-0.0068005524,0.073868655,-0.009255541,0.568177,0.26040405,0.0026366392,-0.035174575,0.39200726,0.4026481,0.13684267,-0.5231424,0.22857358,-0.40316808,-0.475019,-0.1835238,-0.41298848,0.061408963,0.25234684,-0.38628796,-0.08485183,-0.03996931,-0.0951642,0.37159857,-2.5546448,-0.12691669,-0.13249286,0.19963779,-0.2068949,-0.16674389,-0.032150585,-0.5793542,0.26953787,0.21870072,0.5312027,-0.6559433,0.4268551,0.4106553,-0.58555454,-0.09300017,-0.8039849,-0.06959612,-0.13299103,0.6044838,-0.05164906,-0.1448571,-0.09168479,0.1069509,0.85149926,0.084741496,0.22956705,0.38782835,0.3199676,0.21193251,0.6247614,0.14312604,0.5815474,-0.35852814,-0.24812476,0.4202637,-0.11390481,0.41060412,-0.29349527,0.108704545,0.5574036,-0.48468742,-1.0515413,-0.60974866,-0.39721304,0.98651886,-0.44617072,-0.5077446,0.218474,0.009410492,0.102068596,0.02176289,0.4861995,-0.20878226,0.16418676,-0.70587504,0.18593264,0.019250603,0.11318811,0.14739823,-0.002465728,-0.33694735,0.71653205,-0.008019726,0.42489105,0.2839547,0.31171212,-0.12889996,-0.55296,0.18505754,0.84515846,0.3034834,-0.03178374,-0.17563719,-0.34450895,-0.07614377,-0.30190912,0.0522206,0.4852788,0.8988369,-0.07112694,0.17277388,0.26496196,-0.0064680814,-0.00052698754,-0.12432917,-0.22197244,-0.048534114,0.07176395,0.52738565,0.8362961,-0.1807759,0.33371094,-0.28624943,0.46777326,0.18290654,-0.5754454,0.68832886,0.88079035,-0.14985721,-0.00070737995,0.55308443,0.5606731,-0.45886272,0.5240081,-0.6351825,-0.29540828,0.73628783,-0.13761382,-0.37867984,0.1514124,-0.31079742,0.16523856,-0.90300155,0.4032478,-0.27040762,-0.36796603,-0.5035728,-0.17590724,-3.8938599,0.22536455,-0.34000522,-0.11128793,-0.3058875,-0.13866791,0.35806936,-0.76292163,-0.3834504,0.16408774,0.1850019,0.6711964,-0.043699574,0.15727705,-0.25238526,-0.17217344,-0.10920241,0.21128988,0.29019126,0.2737299,-0.17692584,-0.42113164,0.10113869,-0.062504455,-0.5126633,0.18453234,-0.56468827,-0.4754337,-0.20287876,-0.47168928,-0.39883816,0.53887963,-0.331773,0.051765125,-0.19914196,0.056065816,-0.27541223,0.23627901,0.16917048,0.24134251,0.05151392,0.006482768,0.11410583,-0.3443995,0.43702164,-0.047271665,0.41378388,0.11555826,0.06353695,0.13867925,0.42299953,0.5671052,-0.23999065,0.9787634,0.5357228,-0.0046091946,0.081523724,-0.31183517,-0.20714691,-0.7559919,-0.5453406,-0.15732126,-0.42841104,-0.5748001,0.03349606,-0.30667964,-0.84784317,0.6996171,-0.108504444,0.39017102,-0.15573022,0.13165241,0.46092662,-0.2610367,-0.09629267,-0.065165654,-0.1484395,-0.70096916,-0.2225306,-0.7155596,-0.6599166,-0.003128322,0.7761211,-0.28638813,-0.06799737,-0.10643298,-0.32470486,0.046144538,0.11410675,-0.03716719,0.3136436,0.5368561,0.054282445,-0.7633909,0.66550434,-0.020476889,-0.042407107,-0.5112448,0.12314057,0.518061,-0.8512961,0.62072456,0.46568674,0.11384462,0.10708384,-0.4869002,-0.40718967,-0.05175806,-0.07447931,0.5451528,0.15855926,-0.8039342,0.60912377,0.30736452,-0.5725624,-0.7643468,0.29959214,-0.049017157,-0.28221413,0.16298488,0.23845963,0.07028384,-0.07695839,-0.35710976,0.19629882,-0.5395705,0.26649016,0.30070382,-0.032410458,0.28397655,-0.10711949,-0.35126528,-0.70849055,0.045016542,-0.53808033,-0.2018741,0.35685,-0.027101435,-0.18098345,0.05287822,0.08233958,0.386959,-0.2880789,0.16415943,0.05175185,-0.37590796,0.25336775,0.5005967,0.34962818,-0.54315394,0.6503928,0.14798476,-0.32212448,0.062372565,-0.0268941,0.36447638,0.09790412,0.38735646,-0.12418597,-0.195715,0.30931646,0.6622786,0.062363822,0.50393033,-0.0048015704,-0.031579886,0.57510847,0.08882242,0.08302238,0.0721008,-0.42689505,0.014273056,0.06947092,0.14977394,0.5266523,0.33883196,0.36682206,0.09920411,-0.07705409,0.05763266,0.2542652,-0.0016808748,-1.1416361,0.44197452,0.21771163,0.7544033,0.5260322,0.04388769,-0.2667018,0.77918065,-0.31839314,0.025025893,0.43096873,0.11228547,-0.518973,0.7707107,-0.6476638,0.29613924,-0.25143096,-0.03828914,0.09784428,0.1702088,0.24872202,0.77336746,-0.24397454,0.07181382,-0.06374551,-0.1960351,0.08804111,-0.4089522,-0.013400348,-0.34880155,-0.41357175,0.8278906,0.40102616,0.34461215,-0.1682817,-0.17818438,0.05845988,-0.25291535,0.32638586,-0.058243923,0.04688618,0.19511083,-0.61639,-0.17684866,0.60440046,-0.11571162,0.31103882,-0.19937862,-0.3236834,0.03085432,-0.30044705,-0.12897159,-0.030488063,-0.7207041,0.008514969,-0.24413334,-0.58153033,0.57774377,-0.34768817,0.20212583,0.2759469,-0.002958265,-0.29291922,0.2086744,-0.010632225,0.86611927,-0.0297036,-0.32471484,-0.38714072,0.172698,0.36574447,-0.27868405,0.12653707,-0.4157843,-0.072160676,-0.4687947,0.6733204,-0.22747017,-0.49327543,0.074265644,-0.25663778,-0.09561456,0.63530326,-0.09481926,-0.1972831,0.11857352,-0.12910552,-0.3661119,-0.18719734,-0.2648484,0.22307713,0.18358265,0.040123906,-0.117796466,-0.20860699,-0.1327017,0.6016828,0.017990736,0.5610987,0.2052018,0.033947244,-0.19328226,0.029768197,0.14954476,0.43419102,0.19078234,-0.14493658,-0.47978336,-0.43833402,-0.37498823,-0.17385517,-0.115672275,0.1900445,0.11967729,-0.23148426,0.892514,0.006158336,1.3582842,0.08774768,-0.41884467,0.13996206,0.6643744,-0.18369956,0.09953223,-0.4518243,1.0107684,0.55579084,-0.18036844,-0.11392665,-0.5004913,-0.02297307,0.39936525,-0.3825984,-0.10735285,-0.0431636,-0.4889595,-0.47089368,0.22315498,0.31368148,0.17574312,-0.055790298,0.013273632,-0.0094692055,0.13048619,0.6050332,-0.6619469,-0.3177495,0.19390598,0.2814942,-0.12554498,0.264306,-0.34783784,0.49321336,-0.57294464,0.114028454,-0.54865974,0.122082405,-0.24117388,-0.45911723,0.08063619,-0.08147655,0.39502177,-0.3113902,-0.36937076,-0.016848309,0.5493138,0.07302175,0.18948461,0.77495843,-0.29604232,-0.048687767,0.085322134,0.59006685,1.3576273,-0.5854671,0.04436978,0.26266637,-0.37453616,-0.5682282,0.50053954,-0.32683647,-0.17760153,-0.24697353,-0.5711933,-0.58739305,0.17063332,0.16310981,-0.098650776,0.10116312,-0.5642483,-0.08777164,0.31934845,-0.27304617,-0.29256713,-0.23538975,0.4519913,0.66352737,-0.38516852,-0.30513573,0.15289684,0.181524,-0.17046307,-0.5154508,-0.2653232,-0.22470754,0.36122748,0.1827969,-0.3305601,-0.04370706,0.21172696,-0.46203053,0.1337159,0.085835524,-0.34376088,0.16878082,-0.12497196,0.0072327494,1.020096,-0.31676042,-0.04598902,-0.75599074,-0.44852227,-0.99039626,-0.5175731,0.49984464,0.08635678,0.15585874,-0.3757055,-0.011848986,0.03339591,-0.024246557,-0.028152537,-0.6345339,0.2998174,0.047980685,0.6354549,-0.2436607,-0.8657661,0.0057941596,0.2240677,-0.009880892,-0.6480777,0.62058896,-0.10280671,0.92372906,0.063602105,-0.03676086,0.16372545,-0.37532052,-0.025440868,-0.46542442,-0.18305343,-0.8467359,0.070683666,12 -121,0.3198788,-0.19417654,-0.4986742,-0.08629727,0.06717421,0.18904835,-0.21208255,0.45551637,-0.0483187,-0.50172293,-0.1523055,-0.14000437,0.0035159588,0.44135463,-0.2011985,-0.60555667,-0.05489007,0.0082280915,-0.6001049,0.62348384,-0.37048462,0.22039102,0.027487239,0.2587578,0.12330296,0.2221988,0.13214001,-0.27925083,-0.12791394,-0.1524468,-0.12808195,0.12908222,-0.41570064,0.015508238,-0.17540668,-0.2946559,0.005652241,-0.27832767,-0.31444862,-0.6122084,0.22671299,-0.74808186,0.38008195,-0.04719033,-0.23295327,0.39820778,0.057704728,0.32535598,-0.3498222,0.025343394,0.1390975,0.014108608,-0.04974084,-0.2059831,-0.18690605,-0.6013342,-0.50909984,0.0400625,-0.4137721,-0.27023897,-0.078600995,0.06572318,-0.33839452,0.055806138,-0.19441456,0.34573066,-0.46297905,0.0014737527,0.17678365,-0.07680668,0.21931116,-0.5087257,-0.16834621,-0.1259884,0.16602132,-0.0687434,-0.032690205,0.0927135,0.2557449,0.46058014,-0.13560478,-0.014227142,-0.21685524,-0.15316598,0.18209341,0.4408484,-0.12454093,-0.51331335,-0.07222232,-0.024909882,0.09007635,0.01987787,0.053364564,-0.24318632,-0.15008251,0.03881859,-0.48401126,0.19269113,0.37198958,-0.41757762,-0.40106937,0.38314274,0.52468365,0.20396192,-0.25938594,-0.08581369,-0.041325387,-0.33076143,0.0027825653,0.13931176,-0.19407402,0.546876,-0.15215711,0.29681996,0.59550995,-0.1055706,0.17615186,-0.13366453,-0.09899041,-0.1460504,-0.16321276,-0.2363843,0.04623631,-0.29929075,0.15346405,-0.27080873,0.78143597,0.12325084,-0.6679508,0.40132958,-0.5115648,0.13305148,-0.052130125,0.5201157,0.5341777,0.21568419,0.10053166,0.45666617,-0.34053293,-0.016897658,-0.20599064,-0.24498844,0.0921711,-0.0021839063,-0.117964156,-0.45460054,0.056758635,0.15671021,-0.061415125,-0.1100833,0.2615641,-0.47197065,-0.06391165,0.046858814,0.8266601,-0.3117367,-0.10573185,0.4965247,0.9784086,0.91606075,-0.0011165519,1.1608853,0.27662036,-0.16470481,0.19770685,-0.42357513,-0.68287003,0.1898324,0.305145,0.24034677,0.33014092,-0.0020275393,-0.1326659,0.33643487,-0.18998334,0.15659158,-0.24262549,0.13431133,0.12194671,-0.0035122077,-0.22712652,-0.24559307,-0.003228267,-0.087746225,0.17534615,0.13230355,-0.19942814,0.3102941,0.088155,1.6130577,-0.037675697,0.17915006,0.113829605,0.31215012,0.11737779,-0.017569592,-0.0011415859,0.41953245,0.45468348,0.061734613,-0.6046523,0.21568036,-0.264816,-0.5427122,-0.05523952,-0.34357452,-0.08279102,-0.050373513,-0.54192734,0.043245576,-0.074551776,-0.20075569,0.25659508,-2.8392174,-0.12814112,-0.25927132,0.28510344,-0.29442388,-0.23879178,-0.1503384,-0.37125635,0.36051783,0.33225593,0.42664182,-0.526264,0.507636,0.3136881,-0.3248888,-0.15353197,-0.5574481,-0.109641805,-0.046208,0.45231828,-0.077957734,0.20822906,0.1549895,0.09281559,0.38919845,-0.16060568,0.12514456,0.26989573,0.33168158,0.12125471,0.38520148,0.16834341,0.49315214,-0.2370534,-0.03551706,0.19683637,-0.3207588,0.34523338,0.026228232,0.18058003,0.28856558,-0.32034317,-0.7791784,-0.5625126,-0.30632147,1.372309,-0.29063126,-0.30178487,0.18935302,-0.07146287,-0.28735548,-0.20801684,0.338592,-0.1315329,-0.13071926,-0.780971,0.06555054,-0.16617028,0.3018905,-0.046475198,0.053883534,-0.2555286,0.608131,-0.050941482,0.57990867,0.2659551,0.17168456,-0.046491094,-0.29959202,0.016579533,0.9199593,0.25796056,-0.0025888581,-0.14307426,-0.23455541,-0.37235874,0.04946392,0.1681791,0.47273323,0.6171993,0.17021443,0.08032982,0.21161605,-0.07532653,0.06621288,-0.1627254,-0.24274397,-0.046099346,-0.017991876,0.4777171,0.44147488,-0.31385696,0.40596676,-0.13032085,0.3980829,-0.13672939,-0.3994037,0.47770527,0.7858726,-0.20861572,-0.19496945,0.46148932,0.52905023,-0.32869437,0.28722987,-0.53193015,-0.15557528,0.5409275,-0.3082144,-0.27461237,0.33512956,-0.289513,0.12336743,-0.8778821,0.23620449,-0.39683193,-0.3172711,-0.50828356,-0.083366,-3.5039008,0.18178706,-0.17357586,-0.32589638,-0.14594685,-0.11486697,0.31526136,-0.6323186,-0.4952674,0.04878855,0.11773224,0.57298654,0.07542947,0.15630884,-0.30531913,-0.19160177,-0.22796462,0.1916372,0.08110919,0.27473944,-0.101570144,-0.3983437,-0.050600607,-0.16610084,-0.34900683,0.19364037,-0.45947647,-0.4411726,-0.10059675,-0.35602078,-0.25789794,0.5226535,-0.2660514,-0.01172753,-0.11161211,0.0025584758,-0.20801185,0.3204366,0.15956523,0.16326143,-0.0529096,-0.03960871,0.026459916,-0.3185798,0.18648027,0.10640058,0.31431085,0.44476852,-0.03341911,0.15809868,0.41347134,0.47256014,0.09686084,0.5742873,0.45849302,-0.1062037,0.2946035,-0.25523916,-0.12957482,-0.5021688,-0.22777684,-0.14760056,-0.25103143,-0.56771374,-0.17816207,-0.1892126,-0.7075043,0.35286856,-0.08949513,0.05692625,-0.08883443,0.28209314,0.50371623,0.012378327,0.066122375,-0.002522107,-0.0145034455,-0.396996,-0.3315918,-0.6944379,-0.25218773,0.13319555,0.88763416,-0.10425309,-0.0105694095,-0.17068808,-0.22338311,-0.07711876,0.14400987,0.14659153,0.21497099,0.39214125,-0.2208967,-0.67598456,0.5788792,-0.2215306,-0.29857597,-0.3991476,0.061188944,0.6007776,-0.5937668,0.48969823,0.3651559,0.033803765,-0.078925356,-0.34751147,-0.12801714,-0.026816837,-0.2776014,0.22258335,0.095839165,-0.6068529,0.32320398,0.33840364,-0.085509375,-0.5734405,0.55989265,0.007190585,-0.36786416,0.06600528,0.34251055,-0.045596395,0.030121772,-0.17691013,0.17046623,-0.4475333,0.15683974,0.2587559,-0.06554194,0.24877523,-0.14937435,-0.028692741,-0.560579,0.027747747,-0.4500585,-0.25175035,0.27823278,0.09896158,0.25543123,0.11483299,-0.121701084,0.34575084,-0.21731596,0.12900464,-0.048239328,-0.06609645,0.32849228,0.4002855,0.32528323,-0.34306228,0.5739524,0.030110836,-0.031381197,0.10850022,0.12328284,0.44962117,0.17544495,0.39543998,-0.010566241,-0.2680356,0.38634452,0.6111692,0.3263012,0.52648413,0.06472851,-0.27250674,0.30032045,0.04457348,0.022297764,-0.065838,-0.3288972,-0.17656495,0.05589432,0.16351512,0.49988994,0.05326241,0.3840316,-0.17975336,-0.15475447,0.04294251,0.18825081,-0.084512584,-0.96247476,0.40443358,0.16962455,0.7667815,0.45385557,-0.085955426,0.046393726,0.5072585,-0.2663927,0.1322554,0.29829445,0.06872388,-0.67245495,0.62388366,-0.57054245,0.3779896,-0.05228417,0.06743904,-0.022728026,-0.050099183,0.24634865,0.8605329,-0.19378288,-0.008047589,0.014903605,-0.3573264,0.18250911,-0.277353,0.08167578,-0.39828107,-0.31055892,0.46998712,0.5019227,0.2788439,-0.20217682,-0.013505117,0.045168247,-0.029928211,0.15179081,0.0847934,0.23766646,-0.04598208,-0.62987316,-0.34457552,0.53020155,-0.25620395,0.1958311,0.11631309,-0.35557225,0.35824347,-0.110610805,0.012683709,-0.053665005,-0.48499906,0.05603586,-0.18874653,-0.41718665,0.28617537,-0.329897,0.3352806,0.14782408,0.024164625,-0.34030125,0.14787951,-0.07589148,0.52784187,-0.13249503,-0.21197873,-0.40102056,0.10462185,0.1891567,-0.1687941,-0.015957618,-0.25344452,0.009809987,-0.5626239,0.35084254,0.04170188,-0.27248082,-0.06481852,-0.2460861,0.028617399,0.49894232,-0.094932646,-0.065710686,-0.09558902,-0.116669826,-0.2519803,-0.09186164,-0.08046678,0.23782413,0.108498685,0.017479248,-0.077295795,0.06575046,-0.015770905,0.38513675,0.009084032,0.42015913,0.48817018,0.21193634,-0.32762393,-0.2853741,0.15631543,0.30563042,0.13512418,-0.1645916,-0.2576763,-0.553381,-0.21743569,0.22330745,-0.18901409,0.4751735,0.1857592,-0.32720953,0.64263064,0.0020121078,1.0125827,0.023533825,-0.294009,0.050413005,0.47096145,0.09873622,0.013335536,-0.30556583,0.7262442,0.42421642,0.03502292,-0.1346852,-0.21476147,-0.20405611,0.0072209197,-0.19155025,-0.23395425,-0.0525218,-0.5217144,-0.3493515,0.11541,0.23281187,0.26473796,-0.025077263,0.06813196,0.1750814,0.078895845,0.4150256,-0.4101347,-0.18684149,0.21734628,0.05136644,-0.083149165,0.15035538,-0.47974166,0.39504534,-0.5933692,0.043911893,-0.16781959,0.09583733,-0.055455558,-0.27272326,0.19931942,0.0028597831,0.3166249,-0.3541092,-0.37144855,-0.279796,0.5194033,0.18672441,0.15726538,0.6660484,-0.14019425,0.053572915,0.12775527,0.57545364,1.0146929,-0.18571065,-0.02257696,0.3256857,-0.402417,-0.6788909,0.13022436,-0.2111169,0.33735552,-0.011585397,-0.15437286,-0.43392113,0.40140316,0.12798026,-0.07986718,0.06938246,-0.4715458,-0.31649482,0.35847953,-0.34239623,-0.25882584,-0.26691303,0.15901822,0.578222,-0.40179294,-0.257582,-0.04344273,0.21371046,-0.27907765,-0.5256373,-0.11934164,-0.40066913,0.35441336,0.23687705,-0.18239406,0.030587226,0.06943067,-0.3785891,0.26241344,0.21907955,-0.37242144,-0.029289505,-0.27142805,-0.1457338,0.8680205,-0.19411321,0.05961592,-0.48772278,-0.4570479,-0.6917952,-0.5255402,0.5845014,0.05191343,0.04260341,-0.4448881,0.0748748,0.020713652,-0.12286744,-0.046719182,-0.31560162,0.41729245,0.14590408,0.23160006,0.046613455,-0.6902648,0.08346748,0.0038633824,-0.12118823,-0.5909443,0.51043415,-0.070747286,0.68621975,0.07484631,0.11501215,0.32074103,-0.40448716,-0.08747773,-0.26058605,-0.13608098,-0.6938697,0.13439764,18 -122,0.49934393,-0.24427715,-0.48407307,-0.13663301,-0.31459793,0.09762552,-0.034383837,0.44843483,0.20333113,-0.36280823,-0.10205736,-0.17418839,0.11372471,0.22912833,-0.061342772,-0.6171644,0.0007729848,0.2806286,-0.55661964,0.5708997,-0.39249548,0.17925741,-0.094573826,0.33800286,0.21387464,0.25607887,-0.014277484,-0.19128257,0.008534614,-0.1760221,-0.23256704,0.3535759,-0.4756271,0.15528342,-0.1097965,-0.19397432,-0.021895504,-0.46819407,-0.36677277,-0.67494017,0.31959412,-0.7362362,0.3829651,0.0072054765,-0.19209853,0.33360374,0.056861408,0.30657816,-0.28915083,-0.19903418,0.30101174,0.019796813,-0.09326508,-0.15499742,-0.014600659,-0.35623488,-0.4729762,-0.08553798,-0.267994,-0.3003747,-0.28146908,0.07534426,-0.3371333,0.011294151,-0.09457766,0.5757571,-0.36254227,0.2445034,0.2241221,-0.14228147,0.17010808,-0.46894428,-0.027804732,-0.065028,0.36075455,-0.13769995,-0.22918826,0.26508325,0.32564843,0.24875611,-0.054332517,-0.12373107,-0.17763217,-0.113232456,0.12678733,0.5058903,-0.16787083,-0.60460526,-0.07196563,0.060193446,-0.2278787,0.123276636,0.10152816,-0.4264369,-0.1532639,0.10786767,-0.23162499,0.39968678,0.33420303,-0.29052612,-0.24791886,0.2673677,0.49146912,0.29016745,-0.15532757,-0.025597285,0.040878184,-0.5193821,-0.1458231,0.050728396,-0.1497869,0.46412545,-0.1419565,0.256332,0.7673575,-0.07272816,-0.09642687,0.09187795,0.030646654,-0.13348296,-0.3068692,-0.1719842,0.23365006,-0.4324536,0.24192439,-0.06890071,0.8181616,0.18551685,-0.67973244,0.4796297,-0.63788426,0.112927094,-0.17274208,0.36409894,0.65727526,0.22377287,0.2740354,0.55003047,-0.37670368,0.02701974,-0.060254447,-0.53805834,0.02498549,-0.06984422,0.059754364,-0.5453366,0.05621044,-0.06099016,-0.07015848,0.03832485,0.20027654,-0.47369638,-0.13768029,0.16283208,0.8733495,-0.31348902,-0.09790143,0.6238001,0.9472589,0.9147831,0.06330079,1.0415642,0.13613933,-0.26814553,0.31436,-0.17315441,-0.70796984,0.2486976,0.3717992,0.25798485,0.07699146,0.13882619,0.083073325,0.40512857,-0.23343469,0.06530869,-0.09093008,0.19945058,0.1782704,-0.07976565,-0.4108872,-0.30114725,-0.118173435,0.0660602,0.08135428,0.06753309,-0.13435178,0.39227197,0.15597199,1.7972214,0.026430022,0.09483054,0.068842314,0.42517567,0.24857451,-0.09707325,-0.18919493,0.3919583,0.35916778,0.14126389,-0.5030265,0.23542842,-0.14488322,-0.3978677,-0.08688914,-0.38963285,-0.2283273,0.0079068085,-0.39028803,-0.07432961,-0.0915701,-0.1968058,0.5025045,-3.0476847,-0.14847693,-0.09101035,0.3224796,-0.18663651,-0.31502578,0.004050644,-0.47458532,0.17701915,0.22848926,0.48101857,-0.6683172,0.48061758,0.3337983,-0.47235993,-0.12219674,-0.50473505,-0.19203101,0.055936288,0.34503806,0.061413623,0.13202816,0.026462412,0.1953208,0.41882223,-0.015480348,0.07675091,0.20072085,0.38112718,0.031513803,0.67889404,-0.07436053,0.5233504,-0.14575757,-0.108318835,0.2201144,-0.16860224,0.28599027,-0.044221725,0.09358867,0.48944762,-0.30478272,-0.7949871,-0.68086076,-0.14423308,1.0191139,-0.3169271,-0.18214951,0.3125825,-0.44191977,-0.2863356,-0.039501783,0.28429997,0.036113795,-0.09881829,-0.7149521,0.11854647,-0.032388855,0.08590526,0.029737763,-0.22042471,-0.3983008,0.765242,0.03999366,0.62027997,0.3325343,0.07767601,-0.1965642,-0.34902754,0.021569984,0.65054226,0.23754305,0.1290677,-0.10823827,-0.14899065,-0.35238793,-0.006589047,0.044363983,0.60458356,0.5197752,-0.023698013,0.16852301,0.26622808,-0.020972256,0.09178685,-0.15528044,-0.23607127,-0.030702667,-0.18714496,0.44948405,0.5913916,-0.20783368,0.4341051,-0.00537453,0.3324602,-0.12840863,-0.3836816,0.44687164,1.0449755,-0.14261273,-0.28199005,0.4147101,0.4216736,-0.21901368,0.25423986,-0.41939524,-0.076831646,0.5070244,-0.24724182,-0.3524895,0.28068373,-0.24843471,0.09501317,-0.7564596,0.21777739,-0.17987885,-0.58394724,-0.40369755,-0.15324338,-3.6047814,0.21508186,-0.2579797,-0.1708245,-0.14727905,-0.014432192,0.1271228,-0.6021435,-0.49148354,0.13864939,0.069275804,0.6235747,-0.07716436,0.11549722,-0.24441138,-0.20518301,-0.11349057,0.13949837,0.057624795,0.3272508,-0.10940192,-0.36482346,-0.04054036,-0.024132859,-0.34107175,0.09539615,-0.66328996,-0.4666614,0.021179114,-0.5705617,-0.3163084,0.65848416,-0.27290446,-0.004457585,-0.16854505,-0.039460946,-0.26537272,0.267889,0.14359413,0.1338083,-0.13837,0.0758395,0.033937182,-0.3438241,0.26253337,0.0072219926,0.31404725,0.16033024,0.023353685,0.16685675,0.46651882,0.5686603,-0.06172518,0.8530512,0.40245745,-0.10239053,0.24074928,-0.2567711,-0.34777293,-0.46270669,-0.31340683,0.06639685,-0.32288128,-0.43259132,-0.1365511,-0.3223943,-0.55656904,0.44508654,0.068734966,0.060161058,0.07500865,0.049123503,0.53365654,-0.23358454,-0.011302781,0.084558085,-0.14598857,-0.64516234,-0.17828801,-0.59136933,-0.4410496,0.14215101,0.8486653,-0.27007934,-0.004024756,0.0068309624,-0.40892914,0.06459867,0.18481807,0.033558853,0.3474908,0.47789133,-0.22680269,-0.57153165,0.57552254,-0.2508095,-0.2737545,-0.49128118,0.19702314,0.53948253,-0.64337605,0.69264114,0.24377593,0.06417422,-0.1509709,-0.3653179,-0.22688685,-0.034718625,-0.18796507,0.3552135,0.19240595,-0.7350663,0.33511153,0.3295868,-0.18672186,-0.70476574,0.56174904,-0.074164,-0.32644606,0.024921954,0.2536823,0.066348255,-0.039120186,-0.14810117,0.211555,-0.4284078,0.18838494,0.11972187,-0.076868944,-0.034563884,-0.16771518,0.06458,-0.66276425,-0.09922574,-0.3392233,-0.26358944,0.20705785,0.036895037,0.20581453,0.09067372,0.006557043,0.26603714,-0.2938156,0.096598595,0.03152058,-0.24110462,0.31412193,0.39095,0.36283714,-0.40967765,0.50861824,0.0027420481,-0.043430746,0.06125581,0.11997219,0.37184462,0.102654226,0.50158876,-0.06644145,-0.16999076,0.26431724,0.9759799,0.14089979,0.46025142,-0.021970289,-0.064748526,0.18347563,0.02430105,0.25955757,0.14093822,-0.6746541,0.08971027,-0.17673787,0.2125333,0.45671108,0.09820579,0.15058818,-0.038293686,-0.5014722,-0.023171136,0.1908867,0.15809312,-1.2361608,0.42525586,0.21970135,0.86134875,0.39697257,0.056659207,-0.02370927,0.66374004,-0.11930822,0.1587626,0.26905313,-0.10226463,-0.5523234,0.5429697,-0.66946316,0.4261478,-0.11798501,-0.106873125,0.047096837,-0.09300869,0.27030322,0.6599649,-0.22131577,-0.017949639,0.055862196,-0.37269497,0.18321104,-0.46102905,0.008579151,-0.44998068,-0.28077686,0.49758127,0.73619807,0.3198661,-0.23262952,0.11712638,0.07543667,-0.09351514,-0.0031460572,0.08292511,0.030044874,0.06051967,-0.8113947,-0.15603603,0.5832161,-0.15636286,0.24448316,-0.123297736,-0.17727624,0.396865,-0.11661736,-0.076049194,-0.14376254,-0.6718409,0.09653784,-0.3041262,-0.527731,0.62029725,-0.020283593,0.21040146,0.21672545,0.022382034,-0.12756224,0.51388085,0.15274352,0.83862877,-0.061548505,-0.012773623,-0.5464276,0.017667007,0.059107468,-0.12051259,-0.19391544,-0.46474534,0.008923433,-0.4928517,0.40157136,0.09124366,-0.32549718,0.014938775,-0.08706519,0.08742947,0.5618622,-0.08992537,-0.12930945,-0.12261728,-0.051448833,-0.26365432,-0.15687118,-0.03842419,0.23822628,0.22368692,0.04084234,-0.12483266,-0.14123283,-0.2192104,0.37143925,0.06067891,0.5975997,0.35983706,-0.02203521,-0.096811466,-0.18233956,0.38369685,0.43311882,-0.080911845,-0.1567595,-0.30915037,-0.38102484,-0.35503998,0.1990477,-0.025306635,0.40710175,0.04043339,-0.17372634,0.6815123,-0.19445318,1.0256037,0.112455435,-0.2852526,0.30086434,0.46005222,0.0514297,-0.00080904167,-0.29315588,0.765527,0.37849432,0.048005316,-0.20028931,-0.27770615,0.012357394,0.097588986,-0.17031911,-0.07703201,-0.030167166,-0.5049436,-0.16261019,0.1478142,0.199021,0.32266998,-0.08445403,-0.028772546,0.2764102,-0.07161629,0.19131282,-0.4077402,-0.23782478,0.23959915,0.18870682,0.02265507,0.09904304,-0.4170955,0.4586439,-0.33896658,0.12910937,-0.37633508,0.22077808,-0.3556987,-0.11818988,0.10172693,-0.020731179,0.33754244,-0.29163456,-0.23223399,-0.29082388,0.43806833,0.25149032,0.06830673,0.52288383,-0.20412925,0.016338617,0.1582748,0.52485335,0.6638498,-0.2400917,-0.10832871,0.41031533,-0.4394721,-0.41805345,0.31058356,-0.14876722,0.11259452,0.11502588,-0.09171927,-0.5550405,0.2933883,0.23411971,0.065542586,0.007212817,-0.6397281,-0.13714303,0.41552356,-0.35024825,-0.24377419,-0.24091782,0.16558628,0.5831726,-0.32934913,-0.28153664,0.08082798,0.0039171698,-0.06551151,-0.567663,-0.077371866,-0.43149564,0.3371636,0.025925461,-0.25101763,-0.15085249,0.061973877,-0.39845005,0.1909776,0.024168829,-0.35915887,0.13270408,-0.19847417,-0.1444604,1.0285596,-0.12090548,-0.044867888,-0.64656574,-0.41351902,-0.6364575,-0.4495893,0.45757928,0.050934814,0.080087475,-0.43595663,-0.06949656,0.07146356,-0.1542703,-0.1605366,-0.34942433,0.43868962,0.063559376,0.36923018,-0.06801726,-0.9099571,0.21453151,0.08351581,-0.16669875,-0.6254645,0.4111751,-0.15123698,0.7197518,0.023112353,0.086867616,0.251341,-0.25441763,-0.19775629,-0.3358477,-0.17990804,-0.74797785,0.05878628,19 -123,0.4338906,0.051807947,-0.4702287,-0.27103922,-0.3137801,0.19133355,-0.12325311,0.29022613,0.24990477,-0.27922854,0.037046064,-0.15964788,-0.12528887,0.3298804,-0.088876724,-0.70420104,0.07620961,0.1482368,-0.74648625,0.5479071,-0.49603906,0.36717898,0.06042134,0.39337394,0.08178457,0.23849702,0.17835213,0.02580815,-0.008586345,0.024136733,-0.09608332,0.29300788,-0.5899709,0.07227706,-0.05809217,-0.17321555,-0.09886539,-0.37281367,-0.20547199,-0.6616285,0.27109078,-0.5167661,0.49974987,-0.056766413,-0.4467596,0.05236034,0.1703694,0.30361468,-0.37400818,0.020328857,0.25118208,-0.10364438,-0.040384125,0.014397414,-0.31889427,-0.50117385,-0.6149228,0.07762458,-0.64386165,-0.14854379,-0.22451262,0.24437688,-0.2762899,-0.01247677,-0.080150284,0.58528453,-0.3260054,-0.05242671,0.21860169,-0.24099398,0.04712295,-0.4082994,-0.14328419,-0.11681488,0.27609128,0.097992115,-0.16751757,0.13391739,0.35556442,0.5707358,-0.041054536,-0.2439709,-0.20701462,0.0046735923,-0.013078707,0.48919147,0.020569468,-0.2078679,-0.24357082,-0.012921802,0.035691563,0.13996467,0.070754,-0.39661723,-0.0155816395,0.053127903,-0.27253225,0.3184388,0.3691759,-0.5347761,-0.27830693,0.39682052,0.44068477,0.11156297,-0.2328508,0.23255159,-0.041212924,-0.51058215,-0.28495756,0.22870718,-0.084348015,0.43375188,-0.107095085,0.21000578,0.70858544,0.009111341,-0.16127163,-0.07533574,-0.068995886,0.04599803,-0.19255129,-0.043426637,0.112118796,-0.41224056,-0.06690697,-0.21915977,0.6784995,0.02046762,-0.871139,0.31807798,-0.48348716,0.099149905,-0.11712532,0.5122997,0.90316325,0.30249855,0.11339567,0.8821097,-0.59907895,0.06193317,-0.03439846,-0.21461463,0.08121907,-0.07906803,0.093465194,-0.6201557,0.05100545,0.15246235,0.012275314,0.06453484,0.24838762,-0.4181467,-0.1826378,0.05989917,0.7696509,-0.33172074,-0.22429729,0.63624597,0.9457268,0.9184831,0.14530583,1.1460437,0.26548904,-0.12464909,0.17438148,-0.4879035,-0.5639431,0.18771172,0.26206815,0.24104628,0.3337455,0.056838002,0.10361778,0.4546381,-0.21840464,0.20715979,0.02130353,0.11784594,0.09232577,-0.06651523,-0.28071153,-0.3161622,0.20790288,0.007615002,0.08308949,0.21046829,-0.20056547,0.33882496,0.030712893,1.468513,0.2302053,0.09832232,0.099617735,0.37794188,0.280311,-0.22071438,-0.23233318,0.32452267,0.36393294,-0.050715048,-0.44909292,0.029118475,-0.2527369,-0.35627607,-0.17653595,-0.3703241,-0.001088957,-0.089572094,-0.50049865,-0.108442426,0.007150857,-0.41899034,0.5273892,-2.8549702,-0.18557432,-0.11411392,0.22916263,-0.20502461,-0.27681255,-0.34468162,-0.46571797,0.26176178,0.5038226,0.3104045,-0.50497127,0.55907834,0.24202485,-0.28624976,-0.1381962,-0.5967162,-0.16342306,0.0064513367,0.29290977,-0.1286783,-0.043089908,-0.29069665,0.45511264,0.60781914,-0.008149131,-0.0053703943,0.2885293,0.47792026,0.012194046,0.6664358,0.15065292,0.45932972,-0.11349082,-0.13211507,0.29489428,-0.52574736,0.29331398,0.21857847,0.14866383,0.4115199,-0.49508223,-0.871287,-0.51841414,-0.12035124,1.1361165,-0.3843996,-0.20345983,0.28207678,-0.14571482,-0.28964177,-0.02091033,0.52691317,-0.10100018,-0.00847114,-0.68983203,0.041234683,0.075467266,0.20843248,-0.10463951,-0.03198417,-0.29923192,0.532687,-0.08635307,0.6163873,0.26851645,0.09248861,-0.24742985,-0.47599757,0.035688963,0.9948482,0.31414187,0.101526015,-0.08441749,-0.1546749,-0.44726995,-0.07736925,0.18407895,0.44432607,0.5748178,0.114122435,0.26707643,0.3717151,-0.30092934,-0.0039062263,-0.107157424,-0.3018275,0.011516932,0.12322311,0.4818569,0.53046095,-0.16959123,0.48076713,-0.08203336,0.12513617,-0.18650764,-0.5021463,0.60732114,0.6386022,-0.108305715,-0.25612342,0.50255007,0.4030272,-0.23048037,0.35831723,-0.45557246,-0.38137582,0.6373789,-0.099500194,-0.32004443,0.16341661,-0.28152326,-0.037412483,-0.9331961,0.12422535,-0.030327085,-0.41238168,-0.43871263,-0.18819278,-3.8195298,0.14285837,-0.045612846,-0.15377112,-0.083569504,-0.08491972,0.31097594,-0.44063658,-0.60407764,-0.028389424,0.0888103,0.60495496,-0.06588823,0.1834387,-0.2826851,-0.21582103,-0.2975523,0.27962592,0.100609474,0.40488386,0.07477582,-0.3670625,0.06929481,-0.3407014,-0.4692749,0.026185745,-0.45917228,-0.47680098,-0.12493615,-0.4647643,-0.30563885,0.6686936,-0.29069197,-0.06577525,-0.32097894,-0.052101653,-0.026861278,0.42787254,0.26473853,0.18100283,0.062682025,-0.057397183,-0.18808013,-0.39763227,0.15545471,0.07598397,0.2638612,0.3900252,0.088860795,0.289637,0.58223337,0.5558999,-0.08295819,0.6287974,0.2653876,-0.001913621,0.376123,-0.3071643,-0.20114341,-0.57410353,-0.28141725,-0.3821558,-0.3721444,-0.44748524,-0.18414326,-0.35894945,-0.7606689,0.3675696,0.034022503,0.016120426,-0.14916314,0.26975983,0.2523066,-0.19911154,0.101942025,-0.17448902,-0.2623502,-0.37570113,-0.43757847,-0.5821102,-0.47967216,0.23763178,1.0509928,-0.20926188,-0.1149325,-0.032204263,-0.21061464,0.044349257,0.0056381305,0.24260876,0.28473213,0.2973464,-0.14782855,-0.6346676,0.37361035,-0.32430524,-0.05393018,-0.677012,0.043096147,0.5517389,-0.5233511,0.58631855,0.1514864,0.23058596,0.04824637,-0.5633937,-0.25425944,0.06843867,-0.23692776,0.6330464,0.15139292,-0.7115134,0.44135872,0.19106695,-0.05441595,-0.6517069,0.49830163,-0.09913016,-0.23657842,0.046672072,0.26799685,0.07102583,0.005560676,-0.18719152,0.17621242,-0.5202905,0.20157054,0.34441814,0.0667747,0.578102,-0.14503,-0.20040412,-0.445873,-0.17120221,-0.51990813,-0.280407,-0.0073770084,0.16341977,0.14759427,0.10129873,-0.23599045,0.31215325,-0.28264531,0.25462034,-0.0046503665,-0.047685616,0.41345394,0.41234866,0.34180918,-0.48314747,0.50365,0.010980191,0.09781129,-0.056871925,0.087278605,0.4632858,0.268024,0.30485058,-0.055181384,-0.13711776,0.33827603,0.46701035,0.17398764,0.2756349,0.2211299,-0.1947845,0.29188472,0.0314889,-0.0036427935,-0.12905052,-0.30141976,-0.06367359,-0.011910828,0.27339944,0.43575,0.025763962,0.3103448,-0.03251312,-0.11341495,0.2058484,0.13945937,-0.15732583,-1.0013882,0.33815235,0.28567028,0.6902062,0.5461469,-0.036907606,-0.026631586,0.5328463,-0.3211692,0.13097441,0.34672928,-0.00803421,-0.52154183,0.52940124,-0.5576636,0.6077582,-0.25470823,-0.08129372,0.13763046,0.22712873,0.4145234,0.89494973,-0.082941025,0.07559211,0.050254412,-0.26690245,0.12731591,-0.23176594,0.09746565,-0.6011865,-0.26444763,0.5864831,0.35621834,0.27635399,-0.44826317,-0.033843696,0.02739818,-0.19635971,-0.024754087,-0.13133635,-0.042413816,-0.112614885,-0.6811142,-0.35761124,0.54885685,-0.04393526,0.021263557,0.19791289,-0.286112,0.2802611,-0.13634859,0.058612093,-0.044055,-0.59325475,-0.13740005,-0.24149552,-0.47001076,0.425943,-0.4493876,0.21230377,0.12684079,0.024418075,-0.4717024,0.38579097,0.15662827,0.64886814,-0.029616006,-0.06636254,-0.2841758,0.06722423,0.19249259,-0.26361433,-0.1732531,-0.49342868,0.12075461,-0.5961355,0.39173222,-0.07787393,-0.38166755,-0.09964445,-0.028616067,0.072613545,0.40485066,-0.14994152,-0.029825438,0.069319114,-0.037742306,-0.16521598,-0.057108257,-0.3335676,0.4547465,-0.039600305,-0.1451068,0.079887435,-0.010209775,0.029140918,0.29564768,0.06282929,0.2118393,0.23044942,0.081716396,-0.32768393,0.19424771,-0.005620424,0.30718374,0.17641261,-0.12322463,-0.26144063,-0.20520161,-0.3162135,0.3232006,-0.1777573,0.12421603,0.029375887,-0.43687692,0.7174226,0.15006964,1.1324288,0.109969266,-0.24470308,0.06574383,0.49375495,0.23928563,0.15407705,-0.24678166,0.66298175,0.53763396,-0.12455692,-0.2381294,-0.32579595,-0.25298458,0.0970322,-0.29737064,-0.30033153,-0.12987722,-0.651262,-0.15376125,0.0420161,0.12311623,0.27343372,-0.07433859,-0.13210776,0.1524424,0.11144527,0.3156147,-0.40879303,0.044972625,0.29549995,0.1861586,-0.015004602,0.16735741,-0.37968558,0.43522352,-0.7679848,0.17656676,-0.2354301,0.12297762,-0.05252901,-0.28843084,0.17908487,0.08986779,0.2631557,-0.21030453,-0.26319462,-0.2505992,0.7230033,0.30363116,0.29523292,0.78495544,-0.2629486,-0.10814573,0.06551425,0.42523864,1.2237877,-0.036182903,-0.1745115,0.19865973,-0.21239202,-0.67591393,0.06465976,-0.39976606,0.1996106,-0.067018114,-0.32380947,-0.23366883,0.2744204,0.122534506,0.073077045,0.0126287555,-0.46173713,-0.19766006,0.43851689,-0.15003671,-0.2434234,-0.2914025,0.23355412,0.5966156,-0.27196106,-0.33066884,-0.010748538,0.30353132,-0.139838,-0.6854161,0.0722493,-0.3007884,0.36643675,0.16870792,-0.28936067,0.014214584,0.21915239,-0.48689678,0.16539463,0.34627628,-0.34312525,0.014832628,-0.2896642,-0.25907734,1.0938861,0.08588246,0.21627754,-0.5030659,-0.5654923,-0.9055271,-0.295177,0.3547378,0.014043275,-0.10641421,-0.53633523,-0.17490552,-0.13843568,-0.056183744,0.10994838,-0.47433552,0.3786318,0.089498475,0.31664744,-0.043583773,-0.8498983,-0.09138629,0.07302448,-0.26493147,-0.49506253,0.54342556,-0.060690485,0.65232044,0.06771652,0.120875806,0.262364,-0.6365645,0.29245102,-0.44556606,-0.047268603,-0.5123792,0.11337895,36 -124,0.62143964,-0.3350552,-0.5960008,-0.22986771,-0.3550237,-0.0045161527,-0.26430294,0.4151058,0.3776929,-0.20709899,-0.19622803,-0.02805177,0.05044423,0.19057173,-0.014975027,-0.6870808,-0.2303135,0.15409063,-0.79443055,0.67258847,-0.5091475,0.436252,0.091781445,0.3213896,0.08224033,0.45627248,0.10483287,-0.15431292,-0.028689865,0.020079294,0.0496969,0.2764552,-0.66246045,0.1845458,-0.27091596,-0.29990435,-0.087417535,-0.41900447,-0.16683592,-0.7486799,0.051820096,-0.80588704,0.5603972,-0.027244793,-0.3130039,-0.26179254,0.105592534,0.25547698,-0.47977975,0.22755517,0.34262273,-0.15102163,-0.14020115,-0.40088564,0.08304475,-0.41195196,-0.49465513,-0.12355761,-0.6022206,-0.12539752,0.123038664,0.25569624,-0.2411816,-0.050662503,-0.22955483,0.51435685,-0.3049202,-0.13536906,0.4046192,-0.24607582,0.20867148,-0.5131555,-0.103297494,-0.083344474,0.42705384,-0.0613456,-0.37857252,0.22945309,0.25428626,0.5321206,0.3219402,-0.35011995,-0.2617994,-0.042813446,0.03486991,0.4242703,-0.20042601,-0.44549465,-0.30394953,-0.0483531,0.33495933,0.19785075,0.024560101,-0.30441168,0.034723934,-0.23742418,-0.017587502,0.48668987,0.5132667,-0.22078887,-0.3431271,0.2932966,0.61327165,0.09062997,-0.20743337,0.04768711,0.062906936,-0.6209659,-0.14234,0.11064633,0.011176491,0.3915068,-0.14350528,0.13400552,0.7937707,-0.054232128,-0.12755696,0.25979045,0.01868829,-0.080472946,-0.36199272,-0.26400745,0.36419615,-0.5549276,-0.10953461,-0.44353676,0.57716095,0.11747307,-0.62889165,0.27302733,-0.6325906,0.09637017,0.009730196,0.6067397,0.8490554,0.45164955,0.168809,0.724761,-0.30528754,0.29927355,-0.044316847,-0.31143856,0.22545895,-0.34482506,0.20811656,-0.54908365,0.064405724,-0.20709495,-0.079758406,-0.018995745,0.42235714,-0.73607326,-0.31389058,0.151723,0.62675804,-0.33438683,0.058067463,0.81617534,1.0585299,1.0291016,0.067967504,1.2401391,0.37538165,-0.25608116,0.08386923,-0.3707673,-0.7472941,0.25718933,0.24425074,-0.38823527,0.45218465,-0.17749567,0.03169233,0.44564325,-0.31247255,-0.0002861917,-0.0035566508,0.35923845,-0.017643448,-0.06261805,-0.4749397,-0.20488809,-0.022312645,0.12708135,0.15132608,0.28139544,-0.33059344,0.37066433,-0.012535469,1.4066354,-0.24900836,0.020297615,0.21587129,0.27911004,0.3249523,-0.3287096,-0.08908713,0.3784009,0.42468292,-0.020758374,-0.55003697,0.18649188,-0.34371933,-0.3449899,-0.19024706,-0.24850437,0.0026014566,-0.056911103,-0.46209776,-0.29801512,-0.11344058,-0.24840806,0.27590066,-2.5385556,-0.17580488,-0.1739521,0.4415547,-0.22264622,-0.22647084,-0.11217675,-0.589065,0.13491563,0.26840925,0.5426959,-0.6412946,0.5037772,0.49873483,-0.6553108,-0.17014013,-0.709635,-0.016934363,-0.07866117,0.44146416,0.08420734,-0.17849198,-0.052139316,0.07834714,0.6763079,0.0097979065,0.16162989,0.48876914,0.46830347,-0.01568861,0.49320975,0.096094675,0.52909595,-0.49072006,-0.2443301,0.4903761,-0.46970713,0.07035268,-0.036911443,0.025392795,0.6337288,-0.59636706,-0.86309075,-0.59706384,-0.114421144,0.9327455,-0.23848043,-0.38571262,0.036218714,-0.28441906,-0.15155473,0.09326684,0.65673614,-0.15998046,0.09304491,-0.83182347,0.01836579,-0.07428732,0.035660427,0.018425675,-0.012653013,-0.42137954,0.729143,0.0068470975,0.650304,0.2806811,0.23539132,-0.24058232,-0.49799487,0.1460569,0.99733967,0.24717757,0.04044082,-0.1011589,-0.13837348,-0.13939044,-0.016873768,0.08338134,0.61545855,0.7526855,-0.12554543,0.2329511,0.39833164,-0.07023592,0.122063115,-0.1237589,-0.25990373,-0.18524192,0.12458239,0.4240715,0.8563042,-0.14334147,0.40571797,-0.22109309,0.46522102,-0.22379328,-0.6287734,0.6451972,0.79723984,-0.17309189,-0.09756681,0.54210377,0.38264874,-0.2778631,0.5925311,-0.5966539,-0.39095995,0.43742827,-0.250575,-0.3120537,0.23808466,-0.26529855,0.4086992,-0.8933464,0.42390478,-0.3065651,-0.45780748,-0.6520193,-0.21827322,-2.1372688,0.28831494,-0.15019022,-0.0034802516,-0.24505034,0.03727464,0.30354616,-0.7700342,-0.47523358,0.19995897,0.1384916,0.5918621,-0.06551547,0.12547249,-0.338467,-0.4481706,-0.023498476,0.399673,0.18469064,0.35278335,-0.07810931,-0.5027589,-0.08064114,0.17228346,-0.36687815,0.07896237,-0.67848974,-0.5820486,-0.09251603,-0.7196214,-0.16879974,0.6014522,-0.3099089,-0.0036347706,-0.14973643,0.06308763,-0.07851391,0.1859929,0.07398565,0.22300304,0.1768343,-0.022890864,0.12847543,-0.29202828,0.35420552,-0.022810929,0.40269852,0.21895227,-0.20655116,0.17824522,0.394879,0.6000767,-0.27261418,0.96687895,0.41921458,-0.014791974,0.1734607,-0.22004405,-0.35230145,-0.5983285,-0.35166016,-0.04149721,-0.4070779,-0.40592623,0.082152285,-0.39149094,-0.938732,0.64263153,-0.009966512,0.31843528,0.022580694,0.29314983,0.5359431,-0.18939233,0.023885412,-0.1278917,-0.15513282,-0.37880903,-0.1521075,-0.6393462,-0.5198908,0.17896797,1.1892235,-0.31537044,0.15126151,0.006506443,-0.27603132,0.060411762,0.008102084,0.03383491,0.26198563,0.51691467,0.035159994,-0.53701246,0.33514568,0.029302763,-0.23348661,-0.40281528,0.1632845,0.6489678,-0.7720444,0.5955908,0.34013134,0.10742305,-0.035468895,-0.6173098,-0.12409798,0.11263338,-0.09568455,0.5570193,0.23089026,-0.59116036,0.46696466,0.3348879,-0.47068462,-0.7507032,0.25606713,-0.11294373,-0.2948407,-0.10292575,0.35045657,-0.020493574,-0.013211266,-0.3250627,0.40635923,-0.31385952,0.17965229,0.16266403,-0.24826522,0.21216281,-0.10589231,-0.36385927,-0.70978814,0.062119007,-0.6736304,-0.34047106,0.4222422,0.022477308,0.06882242,0.1115865,0.11235343,0.42449632,-0.21697448,0.14791937,-0.06837756,-0.38268307,0.3833926,0.39458376,0.3075053,-0.4486155,0.52737695,0.16922398,-0.27026206,0.01352868,0.07207843,0.49993172,-0.016639639,0.43437043,-0.12281554,-0.072634205,0.42120215,0.72277284,0.15013386,0.4771258,-0.031538233,-0.15503229,0.21181978,0.11445143,0.16605572,-0.14601578,-0.3467364,0.058872335,0.13149936,0.28385633,0.3968049,0.17400824,0.4010174,-0.06149297,-0.25970128,0.07937326,0.25504777,0.009394288,-1.4706782,0.23609018,0.25973803,0.9081755,0.4906456,0.11175438,-0.19539504,0.49467078,-0.30152404,0.14048596,0.35157463,-0.24694349,-0.40999857,0.6834148,-0.5727239,0.36375856,-0.16613026,0.019732405,-0.029536294,-0.025044588,0.36943546,0.7530524,-0.14366703,0.07422034,-0.06566128,-0.11289532,-0.1201114,-0.3127044,0.1338219,-0.42079327,-0.36597088,0.8324163,0.29330254,0.4228436,-0.29187518,-0.07898403,0.10547098,-0.1565163,0.23194641,-0.052612655,0.11397584,0.17272407,-0.5078906,-0.14814693,0.4713805,-0.05602307,0.088511564,-0.17930956,-0.26449886,0.04884022,-0.19613126,0.03077642,-0.19887587,-0.5791991,0.038919926,-0.47450674,-0.31595516,0.57611126,-0.075614564,0.065800056,0.1886542,0.16808105,-0.26846436,0.30138296,0.03469278,0.82178843,-0.015569659,-0.2952447,-0.39225656,0.18470407,0.2294484,-0.3627887,0.026318677,-0.4368309,0.12676579,-0.67715347,0.58820045,0.062805675,-0.5528698,0.16065326,-0.20506458,-0.022836851,0.5632716,-0.1357401,-0.22819091,0.2392478,-0.042076197,-0.39327067,-0.071495056,-0.25889015,0.20854491,0.38644442,-0.0025010894,-0.21591626,-0.19002466,-0.1466534,0.5698915,0.13708551,0.4445582,0.47668132,-0.0107930815,-0.2510871,0.30527985,0.4175059,0.34677848,0.2547782,-0.13431473,-0.5748584,-0.44825605,-0.46433467,0.12870163,-0.20404425,0.27932397,0.01290125,-0.24678494,0.988017,0.022099193,1.3217678,-0.0135932285,-0.31961256,0.076570906,0.60451293,0.049597654,-0.035322133,-0.33604828,1.1185604,0.662522,-0.15008834,0.07668404,-0.31046295,-0.19894879,0.2757625,-0.34329197,-0.07649358,-0.16052474,-0.702196,-0.46684197,0.2927949,0.22968188,0.07621584,-0.2892903,-0.018785112,0.056049936,0.12153916,0.19375175,-0.66308963,-0.17353593,0.005317517,0.24923848,-0.09810551,0.26312816,-0.50837547,0.3247835,-0.6660457,0.22790423,-0.38766572,0.16602169,-0.11006138,-0.33487275,0.17186455,-0.07378467,0.34270012,-0.49898586,-0.48595467,-0.16064088,0.4401728,-0.019731427,0.10065057,0.63386256,-0.34870175,-0.08857418,0.30211937,0.5873029,1.2866591,-0.31325132,0.009571489,0.3081134,-0.41528037,-0.7383433,0.2498239,-0.25662902,0.013227582,-0.22329564,-0.561246,-0.3872626,0.28661245,0.1602269,0.13866547,-0.0001301368,-0.62074596,-0.10386656,0.4070495,-0.42160797,-0.14265203,-0.19842029,0.31168938,0.75726444,-0.23951456,-0.4150031,0.030781103,0.19633135,-0.23280483,-0.49465102,-0.1812182,-0.42174488,0.25193915,0.22380885,-0.22978266,-0.040938556,-0.010360805,-0.4748195,0.2334571,0.28752595,-0.37866578,0.06079173,-0.2677742,-0.16660962,0.9652784,-0.00920995,0.11691144,-0.53565526,-0.47304398,-1.0137919,-0.4130462,0.24037936,0.08205433,0.09496399,-0.4991239,0.10367739,-0.15761957,-0.14608483,-0.0016576211,-0.41363904,0.43532068,0.22486739,0.4456014,-0.34393126,-1.024131,0.12338947,0.35351762,-0.21699238,-0.68334043,0.48803347,0.032758556,0.89577,0.09427833,-0.0005524556,0.20185103,-0.58223844,0.061218563,-0.3135763,-0.10366019,-0.7988654,-0.08438061,37 -125,0.413376,-0.14857484,-0.6249626,-0.08067673,-0.27434894,0.3011815,-0.34049076,0.18195432,0.11729793,-0.58347756,-0.06263754,-0.27754936,-0.15766248,0.14473629,-0.005999746,-0.4768649,-0.20599246,0.32515845,-0.7272269,0.6701456,-0.38489768,0.31170025,0.384423,0.12084119,-0.15381879,0.10335718,0.06813598,-0.24982058,-0.17196336,-0.26222837,0.023602527,-0.12749639,-0.5704857,0.38818333,-0.20847043,-0.3293338,0.05729505,-0.4129996,-0.24571368,-0.70445544,0.14150688,-0.68105406,0.656024,0.120544754,-0.26214826,0.21168967,-0.0044153533,0.19876562,0.0054591657,0.092424266,0.36775443,-0.3272216,-0.5142849,-0.39015993,-0.25076494,-0.46602026,-0.60734075,-0.04977119,-0.5118874,0.06733085,-0.015814686,0.3067742,-0.17173344,-0.13198796,-0.25232258,0.45675427,-0.32780755,0.07883005,0.109292954,-0.20336641,0.19196956,-0.63423496,-0.0060288827,-0.15540284,0.11509702,-0.020933663,-0.17248923,0.038779147,0.039915085,0.7204437,0.07066861,-0.18602389,-0.18799524,0.047241457,0.09819751,0.44578373,-0.12915944,-0.0030053179,-0.03742265,-0.08932042,0.38052103,0.08190542,0.11522787,-0.41801167,0.028685471,-0.2993529,-0.35337517,0.24214874,0.53940797,-0.24043986,0.059058126,0.50579655,0.3636512,0.10967031,-0.16357055,0.006796849,-0.13458495,-0.3669229,-0.049519096,0.4041652,-0.09630955,0.5552509,-0.096734494,0.27443942,0.38527665,0.033062946,-0.20884858,0.17325792,0.016338404,0.122635484,0.05351611,-0.16431107,0.37909192,-0.52511215,-0.118849024,-0.52583957,0.59092206,-0.13861097,-0.872079,0.5044424,-0.4879331,0.022415435,-0.024247544,0.66227967,0.8184837,0.62812793,-0.120480545,0.9144691,-0.47584164,0.106742226,-0.3950875,-0.18579645,0.16991572,0.16963218,0.29726785,-0.49030384,-0.17733099,-0.09558453,-0.25263304,-0.2362686,0.59693706,-0.42623833,-0.2303895,0.08939753,0.5857198,-0.26211402,-0.0818921,0.71324146,1.0287077,0.7774819,0.21834736,1.2638278,0.36599082,-0.27560467,-0.13420935,-0.29981807,-0.7357848,0.21930799,0.20514724,0.41444293,0.1457118,0.10659705,0.0058532753,0.35501882,-0.24999198,-0.07135677,-0.27151746,0.16529217,-0.2545374,-0.0047251624,-0.1510564,-0.12472468,0.09132719,0.019712625,0.22913279,0.16089468,-0.24147715,0.23097517,0.28979272,1.6130854,-0.18916525,0.08900125,0.1103884,-0.16217308,0.19748695,-0.072099015,-0.11391496,0.31191623,0.2288638,-0.09296041,-0.47673368,0.036997434,-0.12738517,-0.56672865,-0.20456208,-0.06676216,-0.058315415,-0.34536484,-0.30683085,-0.2674685,0.07286739,-0.72259176,0.2822859,-2.5638433,-0.29953247,-0.0069368044,0.39873627,-0.273828,-0.36523122,-0.10151943,-0.3546976,0.6175198,0.2466813,0.3461159,-0.63249534,0.58554935,0.38532767,-0.455608,-0.1958674,-0.6922683,0.06384544,-0.05486016,0.32572138,0.029258879,-0.2609758,-0.09518298,-0.122089,0.30274254,-0.29596668,0.049939577,0.5199244,0.488906,0.1371,0.30468163,0.03857545,0.55018616,-0.2954304,-0.22545023,0.4765879,-0.32591993,0.18399422,-0.09898294,0.20471402,0.36331895,-0.4133938,-0.43885198,-0.64799684,-0.16557841,1.069258,-0.23513293,-0.44240066,-0.0061418414,-0.10450063,-0.33562738,0.06788694,0.51556736,-0.09688158,-0.17524926,-0.8313593,-0.25289127,-0.038725205,0.5373198,-0.036179364,0.17654,-0.4321427,0.6308157,-0.057623707,0.5668249,0.59733754,0.24560761,-0.2751585,-0.17716233,0.29326996,1.0545155,0.3177155,0.034891985,-0.18997717,-0.2510184,-0.14774169,0.02078158,-0.040022936,0.48155054,0.6435843,-0.016251957,-0.10957443,0.43972003,-0.23245764,-0.051098086,-0.28709528,-0.3856006,-0.17637137,-0.06245214,0.42269418,0.5819566,0.18702255,0.593813,-0.08719449,0.3830342,-0.15961371,-0.44902766,0.49440953,0.7198656,-0.16747381,-0.1316023,0.33928666,0.38539746,-0.19266978,0.53148913,-0.57514584,-0.38301545,0.15730263,0.025647538,-0.4138257,0.35743856,-0.31585345,0.28247336,-0.9307655,0.32207662,-0.191066,-0.42515135,-0.76753384,-0.032871805,-2.0610325,0.16322406,-0.18196693,-0.026897682,0.037252847,-0.117327906,0.13901494,-0.4217782,-0.5466736,0.016491093,0.28698698,0.5301441,0.12716623,0.20241459,-0.14510079,-0.36681122,-0.10376366,0.4346646,-0.039388258,0.10006794,-0.13157503,-0.2622749,-0.072182626,-0.34097573,0.0082706455,-0.09799077,-0.6574036,-0.28562132,-0.110398814,-0.43019262,-0.31603733,0.64095116,-0.3942413,-0.06341062,-0.32288638,-0.0038428982,0.27897814,0.25840554,0.20421867,0.14660266,0.07693814,-0.10723664,-0.1427138,-0.3260642,0.10961895,0.06819215,0.04059536,0.65500957,-0.072580844,0.28144532,0.32034752,0.6147998,-0.048401874,0.833178,0.47628433,-0.081939556,0.25083658,-0.19367531,-0.083772354,-0.59517354,-0.1185311,-0.2361395,-0.49718508,-0.31002468,0.04634412,-0.28651094,-0.78173983,0.42823952,0.22915736,-0.15110208,0.246128,0.5823449,0.50743496,-0.14227177,0.088034734,-0.24391665,-0.31376833,-0.27086937,-0.4905129,-0.8144675,-0.33836094,-0.047811642,1.2467494,-0.0075916806,-0.030003624,0.26426914,-0.14478976,0.040579233,0.0043649874,0.13064082,0.13097566,0.4111565,0.103767544,-0.5464493,0.40394866,-0.085838586,0.031065647,-0.5302916,0.30022362,0.8138849,-0.6522861,0.12578799,0.38845742,0.13617381,-0.12281907,-0.5530636,-0.115979545,0.20849821,-0.3037821,0.26158813,0.09974139,-0.52519184,0.5561374,0.28888226,0.007852221,-0.9257418,0.17509769,0.06582164,-0.38267213,-0.058264744,0.38520387,-0.024370614,0.06600979,-0.31371212,0.21677954,-0.37150404,0.2860994,0.10805824,-0.24463387,-0.00597713,-0.28929153,-0.26781633,-0.76460016,0.105558716,-0.40132982,-0.4094416,0.2764554,0.1366644,0.24940303,0.34561634,0.26003075,0.45869344,-0.46220866,0.15866414,-0.24267322,-0.17082281,0.33125067,0.41860715,0.28344563,-0.3382761,0.5067865,-0.19970217,-0.10862505,-0.3303272,-0.012260823,0.37465218,0.0904829,0.05108246,0.13313475,-0.07690627,0.29815826,0.7191954,0.067658335,0.24133795,0.06212611,-0.34426436,0.3483496,0.040884245,0.23349787,-0.36051908,-0.55020535,-0.19784327,0.08552793,0.27506843,0.30670148,0.088576764,0.5254816,-0.24944833,-0.18335561,-0.03951982,0.09098593,0.14286773,-0.67571044,0.34308738,0.10672331,0.6810876,0.59835696,0.039337937,0.2011966,0.4869259,-0.43830472,0.14994213,0.18819806,-0.30047545,-0.32664916,0.38765654,-0.62571126,0.027110223,-0.14161082,0.029561218,0.16362089,-0.11959832,0.39877266,0.9267667,-0.16617304,0.17018503,-0.14538637,-0.16380736,0.023762917,-0.273058,0.042306535,-0.46085003,-0.49775326,0.70408595,0.22028814,0.459268,-0.2898831,0.052073166,0.24989204,-0.21750031,0.46825328,0.14399341,0.18326643,0.12344432,-0.3683451,-0.11023987,0.70373756,0.03395335,0.06263211,0.15456657,-0.27494666,0.1782233,0.0031189919,-0.12892127,-0.20916656,-0.61605436,0.07963668,-0.46998724,-0.32964543,0.44524983,0.027781157,0.19222072,0.12772006,0.030221997,-0.2056537,0.27318203,0.4131679,0.6998933,0.22279827,-0.09683361,-0.02585449,0.08867404,0.099951714,-0.20939788,-0.13681994,0.04240203,0.25830173,-0.7827785,0.44224054,-0.15594174,-0.39064282,0.247932,-0.22080322,0.02779669,0.5276866,-0.09160972,0.022035027,0.26810473,-0.0854999,-0.330175,-0.16783524,-0.28133726,0.23146158,0.04340807,0.06533502,-0.2449475,-0.031606443,-0.21667005,0.3094076,0.26838976,0.22373642,0.40094578,0.1519131,-0.59417397,-0.032961804,0.23626325,0.32112586,0.06377344,-0.045463137,-0.2288376,-0.15498392,-0.382491,0.2805603,0.0039135017,0.12011936,0.06277221,-0.46954188,0.8830468,0.22836466,0.9634525,0.060786407,-0.16279931,0.05871037,0.42230323,-0.0308091,-0.002748706,-0.4475097,0.9152925,0.66316473,0.08179114,-0.047477294,-0.3060794,-0.17860538,0.27819145,-0.18750323,-0.016172325,0.022582889,-0.85584044,-0.4539736,0.1791367,0.16397946,-0.16760737,-0.21329369,0.12337422,0.07855361,0.016938707,0.12080871,-0.5324659,0.0040099104,0.3428398,0.10994939,-0.09706931,0.23347855,-0.40386397,0.33438027,-0.62629354,0.12281652,-0.26864088,-0.03434328,0.19188581,-0.016670406,0.12947878,0.11581969,0.08955755,-0.33799475,-0.45194754,-0.16880642,0.4816305,0.1561025,0.36285383,0.75750446,-0.23688337,0.14318071,-0.027227037,0.5234141,1.1980236,-0.28565073,0.08062816,0.27926704,-0.39009687,-0.5697366,0.15048738,-0.30779588,-0.019149622,-0.11840861,-0.33028564,-0.273777,0.3695195,0.03712214,-0.14446887,-0.052213132,-0.5516816,0.0069094617,0.37183225,-0.27596474,-0.19664374,-0.18025367,-0.04698873,0.7372761,-0.24537954,-0.32747617,0.007554738,0.24299963,-0.49601373,-0.44887882,0.12739493,-0.5358283,0.16168621,0.35279453,-0.20494716,0.17184952,0.069814526,-0.5682572,-0.036935624,0.27256182,-0.38068804,-0.1898714,-0.40672773,0.13930371,0.792683,0.04972617,-0.09242266,-0.28808162,-0.5909963,-0.63143003,-0.44329053,0.035941817,0.1371975,-0.037618365,-0.668382,-0.0172986,-0.31558648,-0.17478769,0.043341443,-0.45167258,0.502457,0.22245973,0.4686756,-0.37347183,-0.96709454,0.15317583,0.1533308,-0.2709246,-0.39849085,0.42555434,-0.0012384971,0.8762586,0.007814201,-0.067971475,0.37788773,-0.8934408,0.2643746,-0.3705288,-0.10388199,-0.67069954,-0.006134029,40 -126,0.30627352,-0.043116566,-0.33100098,-0.053793266,-0.28461856,0.04609751,-0.26120287,0.39876178,0.44908,-0.44317016,-0.23894851,0.055116873,-0.24816862,0.06222776,-0.17813037,-0.38801256,-0.17260145,0.19433776,-0.4397054,0.6934008,-0.14720373,0.35638663,-0.06266519,0.46590143,0.30551574,0.24698909,-0.06565168,0.08130797,-0.09238041,-0.24797669,0.086807,0.4093992,-0.38841325,0.40124714,-0.30683258,-0.28666115,-0.23270124,-0.41721076,-0.43957654,-0.68126553,0.34761974,-0.65759355,0.5142193,0.10189501,-0.2329908,0.11966543,0.22268346,0.17407335,0.1520405,-0.14356147,0.22811402,-0.13024318,-0.14712858,-0.026274903,-0.23560296,-0.2606288,-0.5842339,0.04535586,-0.22197956,0.017061833,-0.34936488,0.2516977,-0.29675835,-0.13056022,-0.2195219,0.50789636,-0.29336765,0.2568702,0.069161214,-0.12224485,0.07136513,-0.7399624,-0.25474355,-0.13357218,0.12544605,-0.052838985,-0.31777006,0.26523212,0.15532564,0.4486037,-0.033898782,-0.0738272,-0.40651566,-0.106145136,0.4018821,0.4559359,-0.28302774,-0.1147581,-0.15940197,-0.02380214,0.3997418,0.0839997,0.20678349,-0.34398863,0.03023214,-0.23044197,-0.07326705,0.45185998,0.47088447,-0.0382574,-0.23559366,0.28233328,0.49619156,0.43700466,-0.1514039,0.049756296,-0.02718337,-0.39129856,-0.14232685,-0.053925574,-0.19333082,0.30951664,-0.041373584,0.19565222,0.41223797,-0.105389915,-0.038422085,0.25185484,0.23754995,0.26252285,-0.37013796,-0.29021472,0.2115603,-0.50571513,0.12688424,-0.14657487,0.44945663,-0.1089359,-0.70348996,0.21907265,-0.41868418,0.07652285,0.077184685,0.4814237,0.7657777,0.31718922,0.31045455,0.7401074,-0.20298567,0.034311574,-0.076588474,-0.090124324,-0.16344735,-0.13299698,-0.0033673446,-0.565164,-0.016234191,-0.11098026,-0.021755258,0.23716202,0.3960013,-0.4400453,-0.19708684,0.040827338,0.8530125,-0.24936546,0.09847789,0.84742934,1.0871445,1.0649273,0.0086742975,1.1237869,-0.1258625,-0.23800911,-0.18653376,-0.2325334,-0.6347974,0.21254285,0.26495236,-0.5420757,0.25749108,0.090857975,0.103009015,0.37156552,-0.60494155,-0.06760617,-0.22308461,0.24436454,0.11830975,0.0074923993,-0.49042982,-0.20516004,0.035843257,0.11335306,0.13082947,0.22993088,-0.35718346,0.32551414,0.12496354,1.096388,-0.26585308,-0.11616667,0.09759654,0.26890805,0.12875898,-0.22514562,-0.06301195,0.21221349,0.29532826,-0.09887937,-0.5197939,0.03390943,-0.17048179,-0.34718683,-0.150269,-0.25655746,-0.27586707,0.11360867,-0.18436207,-0.296241,-0.1616314,-0.5374299,0.37974727,-2.646433,-0.14488922,-0.05468116,0.28277197,-0.13335861,-0.3967296,-0.20315436,-0.36294395,0.4359183,0.13028206,0.3252133,-0.41429865,0.114504896,0.5483452,-0.66458714,-0.06354854,-0.45013797,-0.16444781,0.1449499,0.37585768,0.058565173,0.018385053,0.02559684,0.29074377,0.45265847,0.041636396,0.15319155,0.4529548,0.3599642,-0.18102725,0.25045022,-0.069655046,0.57872146,-0.24766363,-0.31417137,0.42446855,-0.32751846,0.39102507,-0.36046895,0.13032106,0.49449137,-0.37591317,-0.6119108,-0.50215137,-0.24515818,1.324808,-0.14535774,-0.53583294,0.34076846,-0.60711974,-0.31088632,-0.102977276,0.5588243,-0.059474207,-0.19005994,-0.809292,-0.09802411,-0.15477744,0.15322366,-0.08062123,-0.070714764,-0.4084657,0.7693157,-0.061083414,0.44827315,0.43341067,0.2823489,-0.2758149,-0.387296,0.13301058,0.88870895,0.5643308,0.17054577,-0.29732984,-0.047723975,-0.3794621,-0.1573855,0.14264984,0.67647135,0.50624007,-0.076219074,0.11310287,0.21190688,0.11466101,0.057538867,-0.27778193,-0.21142527,-0.22460492,-0.031717993,0.62480515,0.49079177,-0.10724934,0.31356442,0.01013865,-0.010925209,-0.1711248,-0.35199115,0.36725122,1.0090852,-0.1862956,-0.27897003,0.72055167,0.5055345,-0.19561033,0.41878426,-0.57882375,-0.21716127,0.32204068,-0.20911665,-0.5322636,0.13487908,-0.4708121,0.112201706,-0.5342415,0.42899734,-0.23903182,-0.7141063,-0.66609395,-0.050150625,-1.3417706,0.23157038,-0.23592205,-0.32219726,-0.34031364,-0.30621716,0.11070783,-0.32146123,-0.63886416,0.18147346,0.114263244,0.608574,-0.20690003,-0.052728023,-0.039749563,-0.3255332,-0.11024491,0.07342794,0.21284457,0.34145203,-0.0563041,-0.30533472,-0.11019523,0.012884617,-0.30746225,-0.06991593,-0.50358117,-0.52338535,-0.03775382,-0.3364707,-0.008789794,0.5087278,-0.430168,0.15174145,-0.24300058,-0.06964093,0.08504249,0.20116739,0.020492097,0.30954486,0.24162553,-0.049439646,-0.0067611537,-0.10260787,0.45109397,0.21853386,0.17970015,0.4835453,-0.24958639,0.3588073,0.35476866,0.7650675,-0.20450278,1.1134591,0.48541743,-0.1464365,0.24857815,-0.33612448,-0.45917422,-0.528194,-0.056352545,0.29370695,-0.464821,-0.45865422,-0.045259126,-0.365373,-0.89074385,0.5056917,0.109213986,0.3310931,-0.08488334,0.07331034,0.40390062,-0.17715864,-0.088698596,-0.15644884,-0.19606324,-0.40894032,-0.47765917,-0.61892533,-0.34541813,0.044938304,0.9616597,-0.18305172,0.22207238,0.3481218,-0.30437666,0.044332344,0.1163233,0.0029610514,-0.014079953,0.36852297,0.12476822,-0.5046178,0.28960714,0.25415114,-0.057108387,-0.60541284,0.31824142,0.61653227,-0.4276348,0.61198807,0.2751153,-0.095401436,-0.37139156,-0.56050915,-0.12259412,-0.10150129,-0.35097083,0.4846005,0.30863073,-0.5341491,0.29828778,0.30662164,-0.07688831,-0.8376411,0.534614,-0.08032758,-0.097093254,-0.043042652,0.32590115,-0.029895388,0.096060134,0.07472624,0.34427235,-0.17148672,0.44734573,0.10794627,-0.24466802,0.05552252,-0.35894948,-0.20119594,-0.8226815,0.18174897,-0.5509679,-0.36112732,0.2608981,0.107304506,0.15562579,0.21374363,0.38881522,0.36314365,-0.19112794,0.11114118,-0.16681556,-0.3335022,0.3069546,0.48943818,0.61276406,-0.260974,0.43761384,0.087057255,-0.1941403,0.0777798,0.078857906,0.38081446,-0.13541906,0.31647682,-0.096918024,-0.14007886,0.052884348,0.8126085,0.1707657,0.24053438,-0.16098261,-0.121090695,0.2412021,-0.006252253,0.2849913,-0.19977368,-0.56970406,-0.04399862,-0.25940016,0.09755857,0.43604267,0.23423865,0.29250136,-0.1802969,-0.28188393,0.035681535,0.2189202,0.15169002,-1.4025807,0.3844199,0.1839705,0.88190824,0.5452101,0.049801327,0.058810096,0.6079804,-0.09156416,0.0585148,0.36766377,-0.050227888,-0.40402555,0.34142077,-0.59393495,0.4344874,-0.012434109,0.074991144,0.07781092,-0.04414573,0.3561798,0.72359806,-0.15284517,0.023654845,-0.1193852,-0.32360736,-0.026252694,-0.32545847,0.28265542,-0.52150285,-0.5037673,0.8019353,0.59402287,0.40338135,-0.20663062,0.14319319,0.097875066,-0.28237584,0.2107249,0.024305034,0.04808825,-0.14271119,-0.64523864,0.13363391,0.36200082,-0.2548628,-0.007330513,0.056896646,-0.08944915,0.15564589,-0.07705341,-0.04246847,0.03150144,-0.72331375,0.0061000665,-0.3906559,-0.40624455,0.14639853,-0.1316176,0.056111224,0.22730064,0.06698847,-0.22827731,0.41384214,0.07538676,0.6596029,0.22639205,-0.028160302,-0.25096554,0.30822226,0.06790774,-0.15256907,-0.048727263,-0.057440255,0.22235762,-0.5223125,0.41669023,-0.12031722,-0.29620335,0.05659126,-0.16110821,-0.014461575,0.40047815,-0.11576518,-0.12557362,-0.001821818,-0.29515857,-0.22671922,-0.14500266,-0.10416611,0.25948244,0.06908082,-0.007710485,-0.17270833,-0.19474138,-0.3572373,0.21577041,0.12083317,0.47158045,0.44160348,-0.0010428886,-0.47334728,0.011891093,0.15384741,0.4905875,-0.011467448,-0.013030112,-0.097859465,-0.30980244,-0.4148505,0.42198005,-0.08387796,0.35724643,0.024159312,-0.1749791,0.7615215,0.06564616,0.938864,0.04856996,-0.3593726,0.10281278,0.40981495,-0.24316429,-0.028747419,-0.2650627,0.7512464,0.447069,-0.013225059,-0.09953999,-0.3648825,0.1503727,0.121118404,-0.3058279,-0.08449976,-0.086821176,-0.71180505,-0.240501,0.1991848,0.2499287,0.104277685,-0.14486006,0.017556107,0.17939356,-0.015638288,0.25350204,-0.46735084,-0.17810497,0.39750078,0.21192105,-0.06679438,0.14913863,-0.4673823,0.2809143,-0.51789457,-0.0059472444,-0.17878982,0.097180806,-0.2774375,-0.21397154,0.24770994,-0.05718835,0.2395406,-0.44788647,-0.29911616,-0.2959579,0.13373896,-0.1139567,0.12830108,0.40195253,-0.25077853,0.089007534,0.16467936,0.42492214,0.923914,-0.11510291,0.0634182,0.24047278,-0.28493398,-0.44099554,0.11054794,-0.44886714,0.052814793,0.08621083,-0.26931858,-0.35710385,0.21288998,0.15050745,0.124712594,-0.05641387,-0.7590853,-0.29862908,0.15608904,-0.23527445,-0.040189352,-0.18690498,-0.23366259,0.48517936,-0.2205469,-0.46441677,-0.13867603,0.16906688,-0.2849759,-0.5659678,0.16709684,-0.39630964,0.23995237,0.014543023,-0.42614633,-0.3066289,-0.11600171,-0.44969577,-0.009707753,0.15539163,-0.2727537,-0.12478404,-0.25767273,0.14847237,0.71789664,-0.15477699,0.21678504,-0.20740029,-0.51562405,-0.8580771,-0.21149012,-0.027525838,0.2467378,-0.14599714,-0.7271723,-0.0026164493,-0.33342808,-0.0766112,0.114230916,-0.39140752,0.4800845,0.25393507,0.45637867,-0.28236446,-0.8280791,0.25343645,0.19202343,-0.08567691,-0.37423363,0.44791558,0.23367205,0.67634517,0.07293361,0.028907565,-0.05646843,-0.69398725,0.10981165,-0.09201441,-0.17559218,-0.6201982,0.12084886,46 -127,0.17429887,-0.1163907,-0.59167117,-0.11103848,-0.5052698,0.30496776,-0.27702528,0.20677558,0.2848991,-0.19608553,0.08082401,-0.03735217,-0.099011,0.40854868,-0.11130874,-0.69871706,0.048250403,0.049727358,-0.6275833,0.41925424,-0.46723643,0.38102537,-0.14969839,0.30664384,-0.03468459,0.31640166,0.1678885,-0.074987136,-0.1595512,0.044868566,-0.109636806,0.23562516,-0.39086735,0.30252022,0.0018921773,-0.2826695,0.12517922,-0.23590758,-0.2159292,-0.6346518,0.21093775,-0.6000852,0.5449637,-0.18930298,-0.36947602,0.16647013,0.08252777,0.18784557,-0.39375037,0.22461154,0.22279033,-0.32556874,-0.04401983,-0.22506717,-0.4224106,-0.3585848,-0.45313638,-0.08206957,-0.65060717,-0.12394769,-0.44903573,0.21185288,-0.31414267,-0.08825132,-0.11896797,0.3181182,-0.5024811,0.25318065,0.12820044,-0.22875047,0.00974656,-0.37466142,-0.08799744,-0.114241205,0.23811011,-0.14372139,-0.12619835,0.25525978,0.36665118,0.41554847,0.07485558,-0.17780972,-0.4265067,-0.28730693,0.10351089,0.44917774,-0.077916384,-0.16200906,-0.21213506,0.01191563,0.18533972,0.19733019,-0.19338837,-0.28021926,-0.11505701,-0.028974025,-0.2814459,0.2977716,0.35127392,-0.34906617,-0.33831885,0.46136317,0.3332229,0.10747347,-0.2500037,0.14571358,-0.05101295,-0.48392615,-0.26763895,0.16399378,0.05026672,0.3911719,-0.16384563,0.2593077,0.78129005,-0.23566397,-0.06307974,-0.11651622,0.017192988,0.013909829,-0.111798964,-0.032427955,-0.022753673,-0.47789466,0.034043215,-0.031631146,0.7737604,0.16417055,-0.7776301,0.41681108,-0.48838893,0.0745784,-0.14117709,0.55151486,0.65304756,0.45967656,0.26369697,0.73348725,-0.4461993,0.1910934,-0.089017734,-0.4420183,-0.002430745,-0.086678766,-0.11179271,-0.6021789,0.08388528,0.06147367,0.030022684,0.09852416,0.33081084,-0.36104038,-0.018340738,0.00032008888,0.7304881,-0.47221085,-0.1461162,0.74078995,0.8405463,1.0073036,0.067157626,1.2084678,0.45436847,-0.16229981,0.016138045,-0.460991,-0.3991069,0.21108942,0.2391773,-0.0712041,0.265664,0.09050679,0.20450354,0.3369466,-0.14190848,-0.055337746,-0.10581191,0.15842065,0.089706846,0.026995596,-0.33326414,-0.37809277,0.19133161,0.14844607,-0.10343455,0.27885884,-0.12384972,0.5462619,0.08506464,1.3708723,0.1493537,0.069611296,-0.054192886,0.47563058,0.12114572,-0.04854236,-0.19848761,0.32337567,0.25817573,0.04325221,-0.49529916,-0.042372838,-0.26058975,-0.46440107,-0.18984792,-0.3235853,-0.111539505,-0.113271005,-0.44913545,-0.18798093,0.07255828,-0.30454203,0.54007924,-2.597684,-0.016685423,-0.08343173,0.23294166,-0.25021487,-0.27064458,-0.28090557,-0.4609343,0.35895893,0.37640777,0.361635,-0.5509829,0.3391562,0.24549408,-0.37915748,-0.20482177,-0.58521265,-0.017467786,0.0093922615,0.400818,-0.10986004,-0.059774686,-0.16054313,0.20545608,0.68076533,-0.12119352,0.0062539726,0.26044992,0.47688484,0.150482,0.4650947,0.14711209,0.5612335,-0.26501426,-0.19792645,0.37371844,-0.40166292,0.26690742,0.10740994,0.07872453,0.3090657,-0.5057214,-0.913509,-0.4791737,-0.2794261,1.2698814,-0.34458488,-0.42593375,0.28309652,-0.07846589,-0.23817004,-0.05084507,0.2695894,-0.070488766,0.014790579,-0.6578076,0.11280301,0.03199509,0.27243963,-0.054378342,0.10459757,-0.11667165,0.5730837,-0.1965258,0.24897432,0.34089717,0.19915509,-0.16518854,-0.4289466,0.17599529,0.7630985,0.3083231,0.19526066,-0.10228927,-0.32452482,-0.049430825,-0.16059802,0.16102797,0.40189826,0.56242764,0.0015001575,0.09262911,0.21565025,-0.1996433,0.037539463,-0.24366918,-0.17673373,0.051178657,0.23639719,0.6082403,0.47427636,-0.031199064,0.5405689,-0.09061939,0.13546795,-0.088689126,-0.4979661,0.41099685,0.71849257,-0.12189417,-0.32945257,0.41260803,0.41641808,-0.3084672,0.28469932,-0.398757,-0.27490765,0.6690586,-0.22810355,-0.4165563,-0.062469974,-0.3049803,0.036494356,-0.7857509,0.3236619,0.064550206,-0.6446651,-0.39781135,-0.04685844,-3.8293793,0.108620614,-0.0970109,-0.20858416,0.05223821,-0.12149355,0.23996834,-0.45756105,-0.45232975,0.061348617,0.04229496,0.40858132,0.010299174,0.026592681,-0.38788185,-0.15746766,-0.22000167,0.16759,0.11041651,0.3457717,0.02680232,-0.46389902,0.21118212,-0.3698234,-0.41307074,-0.076998614,-0.4561982,-0.44606417,-0.14834195,-0.41859138,-0.25769827,0.6934415,-0.4354175,-0.060833104,-0.34007356,0.019278144,-0.21923904,0.37128556,0.2863264,0.12838921,0.076343514,-0.008002839,-0.027655868,-0.35576156,0.33201686,0.09723774,0.13149092,0.38604316,0.10890439,0.15205428,0.61634284,0.52503514,0.080900736,0.773725,0.17247295,-0.25263664,0.38118905,-0.39001054,-0.23952717,-0.58592457,-0.39902,-0.23059654,-0.34286982,-0.32346275,-0.17510279,-0.2517067,-0.74061185,0.41530597,0.06625598,0.051451884,-0.114141256,0.28376713,0.41029695,-0.1664907,0.090451024,-0.14844078,-0.1903955,-0.44738388,-0.5458412,-0.5737025,-0.5575448,0.18424867,1.1639247,-0.16824672,-0.049012166,-0.013633204,-0.37173328,0.07215953,0.18282904,0.25005263,0.37030372,0.2873111,-0.31983286,-0.804151,0.37841496,-0.12178327,-0.072303146,-0.6958839,-0.002027917,0.7738402,-0.60735184,0.48848775,0.36046633,0.21024556,0.20674016,-0.49807227,-0.3267966,-0.031291876,-0.22475295,0.41391844,0.16198519,-0.5810465,0.4890191,0.16391712,-0.09680447,-0.58499837,0.48683387,0.0056776386,-0.18690355,0.17298898,0.31885654,0.06756004,-0.14807115,-0.10108447,0.101536684,-0.41691455,0.301322,0.3222939,-0.00413723,0.3483674,-0.11510752,-0.26462686,-0.6377566,-0.2481964,-0.37202078,-0.2987094,0.08163554,0.13315906,0.09018124,0.037233073,-0.1356873,0.2988222,-0.29448977,0.12743,-0.14608864,-0.22663304,0.35797736,0.42973444,0.3272901,-0.37582558,0.67102844,0.013000308,0.17003898,0.031738773,-0.009161774,0.5548583,0.13579074,0.34889477,0.04409958,-0.2851811,0.21690449,0.7064812,0.20949619,0.3192969,-0.059571937,-0.26329646,0.25095838,0.23705961,-0.02597962,0.008052302,-0.13330647,-0.13344367,-0.077604026,0.22040667,0.3309466,0.12553142,0.38723692,-0.0798316,-0.118636236,0.23972815,0.108780734,0.059186306,-0.9159688,0.32712844,0.29224116,0.6281645,0.35863554,0.037238255,0.04769081,0.5711599,-0.39322785,0.08862916,0.36163837,0.015573612,-0.43363363,0.54732746,-0.58597827,0.64590055,-0.1398199,0.009719477,0.20875788,0.30921295,0.21262102,1.0049356,-0.049130987,0.088801354,0.15778597,-0.4586443,-0.066263214,-0.2782528,0.05739981,-0.5571537,-0.2576014,0.56329745,0.36629608,0.36428082,-0.21886034,-0.060009804,0.030737253,-0.18722035,0.07762405,-0.058033988,0.041591667,-0.25397265,-0.5593509,-0.23974864,0.52343047,0.004071331,0.090723425,0.14877428,-0.1582036,0.42781168,-0.13555865,0.1060421,0.008231733,-0.47467473,-0.0013782163,-0.23533353,-0.5226185,0.35589293,-0.31345186,0.37955624,0.12926218,0.112076506,-0.39460343,0.42007104,0.19795386,0.81460506,-0.023687402,-0.1458761,-0.23251818,-0.04137175,0.45409337,-0.19674173,-0.14334354,-0.24487773,0.011752495,-0.68482685,0.3725433,-0.3803299,-0.22583914,0.008851325,-0.1594979,-0.023397235,0.36820152,-0.021570412,-0.19699179,0.108984604,-0.03181511,-0.38186303,-0.08825339,-0.32170165,0.31265974,0.041304287,-0.05579056,-0.037053797,-0.15687984,-0.06474383,0.2870817,-0.05723371,0.15727425,0.29525605,-0.009889993,-0.3110103,-0.020823289,-0.2022718,0.48028478,0.023118058,0.083111875,-0.35436487,-0.27277035,-0.16990294,0.3042476,-0.19653775,0.0571738,0.06000651,-0.49267736,0.7278105,-0.093828194,1.1216412,0.14735457,-0.27255613,0.21800311,0.36361423,0.08239526,0.16636024,-0.22844492,0.79314476,0.6763506,-0.00903581,-0.25817892,-0.35908586,-0.20125917,0.19095679,-0.24839382,-0.24145718,-0.08018382,-0.76485956,-0.23866129,0.19479771,0.05137136,0.22415636,-0.020141652,-0.13812631,0.014634379,0.26217258,0.38590133,-0.40411758,-0.045465723,0.26173753,0.29242665,-0.05258455,0.21949151,-0.3196612,0.3753778,-0.59557396,0.0880425,-0.2943181,0.126884,-0.2734769,-0.09425743,0.2625139,0.13362764,0.28397045,-0.17150955,-0.18326299,-0.31129995,0.6499879,0.20364293,0.18795453,0.64386076,-0.2454617,-0.11088085,0.054873686,0.2935497,1.0609502,-0.04729231,-0.13178729,0.48130152,-0.26321548,-0.46814415,0.12926474,-0.43336332,0.054874066,0.0421044,-0.28748578,-0.25271592,0.35634908,0.14977892,0.036841463,0.045999166,-0.42173475,-0.029323291,0.31057447,-0.31316745,-0.38417143,-0.3614961,0.33129212,0.50853115,-0.33146775,-0.22514343,0.034999624,0.2963403,-0.28638014,-0.49822482,0.09306348,-0.20374246,0.37287876,0.16073723,-0.38805586,-0.013187373,0.2723732,-0.33837345,0.020673864,0.4685508,-0.39503482,-0.020162709,-0.1234584,-0.072341524,0.8797568,-0.09176738,0.14119273,-0.6684171,-0.43346146,-0.91726,-0.2675858,0.39621326,0.15220252,-0.097013615,-0.5939035,-0.15319616,0.0029683898,-0.16219063,0.07944539,-0.624729,0.44207317,0.12929943,0.31658605,-0.0634849,-0.9146553,-0.023312101,0.083717115,-0.24303073,-0.51418775,0.53839153,-0.35911953,0.681053,0.16413455,0.0018986384,0.3543597,-0.485497,0.32769248,-0.34404805,-0.25538388,-0.55854803,0.093943976,49 -128,0.28685078,-0.39526346,-0.3884238,-0.13334154,-0.2920922,-0.016077522,-0.21555033,0.2888182,0.07395701,-0.27343404,-0.013020675,-0.07572562,-0.025001016,0.5754737,-0.27342337,-0.46021926,-0.038000073,0.075700834,-0.5485213,0.59300894,-0.42708954,0.2692341,0.1548992,0.26164004,0.14944357,0.26413092,0.33917528,-0.04324373,0.09618592,-0.12056052,-0.18215632,0.035038438,-0.62032473,0.14973022,-0.15476957,-0.21282345,0.11203965,-0.38448557,-0.42189714,-0.82266575,0.30424505,-0.9267262,0.4952931,-0.102638245,-0.35296863,0.2596148,0.26789948,0.31631917,-0.2599631,-0.11750293,0.014494141,0.027123522,-0.04611716,-0.023816643,-0.023984171,-0.58006024,-0.61070687,-0.017914172,-0.6769462,-0.2383845,-0.19893813,0.2252636,-0.41778275,0.1544021,-0.055902053,0.24424869,-0.64707893,-0.1180099,0.11117969,-0.05453641,0.2763476,-0.50153285,0.0618174,-0.14769588,0.068764605,0.07332284,-0.15541026,0.4341265,0.25775024,0.46035516,0.019449595,-0.19555968,-0.27275786,-0.13615172,0.15009555,0.5420085,-0.05495241,-0.39198554,-0.18945843,0.13918869,0.34058988,0.2444312,0.004559857,-0.3464061,-0.041457474,0.047161944,-0.2544471,0.2896752,0.4965285,-0.48290572,-0.22030528,0.41825417,0.49385053,0.08735586,-0.11501883,0.106023826,0.07998412,-0.4302127,-0.119811945,0.051809255,-0.30281603,0.53741175,-0.122085854,0.23996234,0.5889692,-0.17425938,0.11855357,-0.13109542,-0.07303621,-0.22417308,-0.12899365,-0.21555932,0.26694232,-0.50755775,0.09657257,-0.26346523,0.7604753,0.1558222,-0.74675524,0.4398659,-0.5415732,0.1784942,-0.2051906,0.546469,0.72092557,0.5114429,0.4443897,0.68080926,-0.39878267,0.19049333,-0.16929144,-0.4574421,0.32360396,-0.32329997,-0.118592106,-0.5063041,0.034544658,-0.03067699,-0.2018808,-0.13129959,0.60991204,-0.5155413,-0.09968939,0.15990658,0.7528218,-0.27154383,0.0006998221,0.6104146,0.9428444,0.9080203,0.08151637,1.054066,0.33405793,-0.097993694,0.321408,-0.19890901,-0.79377186,0.17247804,0.51246566,0.26943526,0.32051474,0.048937462,-0.048038714,0.42923006,-0.44384277,0.026062457,-0.26510054,0.32930642,0.014989758,-0.005512659,-0.58669126,-0.23664941,-0.029214382,0.080393694,0.0581606,0.41211674,-0.20616178,0.34339613,0.15366767,1.8499669,-0.10160119,0.1217514,0.12332594,0.5776695,0.32161513,-0.16875727,-0.13378982,0.3452048,0.34480536,0.13807537,-0.6971147,0.050093032,-0.28313118,-0.5105618,-0.1405323,-0.3508396,0.025782831,-0.08895135,-0.4125993,-0.1548408,0.08503838,-0.28395668,0.4092209,-2.6546204,-0.3184829,-0.20827007,0.32272086,-0.40317944,-0.1639965,0.045828227,-0.4151086,0.406606,0.51252675,0.43864766,-0.8073827,0.34279194,0.50940114,-0.5365847,0.051703777,-0.53320175,-0.098570354,-0.16635966,0.47846496,0.024818812,-0.13146874,-0.06394937,0.28182966,0.45015904,-0.034615286,0.19299498,0.22091092,0.36052355,0.105323076,0.46492395,-0.13395959,0.35158223,-0.2237517,-0.15350062,0.27886146,-0.17802261,0.28207767,-0.18343358,0.29198134,0.3867923,-0.57090074,-0.978488,-0.67563576,-0.25394443,1.0351756,-0.46657073,-0.454099,0.40331328,-0.20141464,-0.15979157,-0.1176807,0.44902474,-0.10255333,0.05424736,-0.7752069,0.12695919,-0.09633205,0.21007721,0.069755554,-0.035744432,-0.31966373,0.69691354,-0.07354767,0.46569294,0.24919319,0.24132136,-0.29079637,-0.54145217,0.08437606,0.63817734,0.52314645,0.015373109,-0.25223437,-0.26015943,-0.2658912,-0.20373774,-0.04063557,0.306787,0.84362376,0.01497995,0.018475449,0.18765728,-0.18980853,-0.014951827,-0.16476244,-0.29297596,0.17154182,0.12087433,0.52936035,0.67048776,-0.156275,0.37372816,-0.116994865,0.36735472,-0.04205131,-0.5673252,0.37271053,0.8525204,-0.1688555,-0.099284045,0.6385587,0.5669573,-0.24064086,0.49888936,-0.84774095,-0.27998784,0.43145695,-0.12950322,-0.48044616,0.19430058,-0.31694666,0.22252879,-0.92792267,0.27675733,-0.16097178,-0.26341453,-0.46529517,-0.10093747,-3.4912784,0.18535589,-0.11306999,-0.2814844,-0.04918806,-0.088700935,0.38048273,-0.63495815,-0.56367475,0.21355596,0.15819235,0.6302063,0.043762937,0.11611349,-0.23569621,-0.25529677,-0.31383467,0.15625991,0.12420229,0.26745415,-0.036270738,-0.56191766,-0.10072328,-0.23344631,-0.42898288,0.12546325,-0.52711165,-0.5808135,-0.32310277,-0.5869304,-0.2959462,0.6186711,0.033010434,-0.045725662,-0.24610005,-0.08565232,-0.12593165,0.21880178,0.24281749,0.11609624,0.0560608,-0.06354213,0.071324095,-0.3459617,0.31504026,-0.028787991,0.31165588,0.29824325,-0.012534376,0.13482748,0.7129212,0.48818392,-0.2506997,0.74494284,0.5456689,-0.2206003,0.27343407,-0.16193445,-0.36564952,-0.5118978,-0.3896,-0.039646868,-0.35569265,-0.42682812,-0.1388978,-0.37193742,-0.68068874,0.63045406,0.013482833,0.3207447,-0.046267945,0.07680619,0.46621564,-0.27224132,-0.088713855,-0.011978944,-0.22091784,-0.6267044,-0.27337354,-0.73059684,-0.57172763,0.17470242,1.0498703,-0.1295672,-0.18791252,-0.025361124,-0.10999731,-0.0328033,-0.13827609,0.096112415,0.3180106,0.25166065,-0.10503641,-0.69643515,0.62985414,-0.025956415,-0.02187888,-0.48866695,0.1737428,0.5480467,-0.636568,0.2883106,0.30134133,0.13545182,-0.07491554,-0.68375,-0.11829373,0.12432664,-0.23469567,0.51617134,0.24872802,-0.95299035,0.51593024,0.34273925,-0.53826827,-0.7240775,0.42968494,-0.05171144,-0.16540521,-0.14437583,0.2583994,0.13240282,0.15217055,-0.32961908,0.2094519,-0.5438154,0.23448168,0.27255976,-0.027556412,0.5245819,-0.29299116,-0.1590107,-0.72001475,-0.047945023,-0.40164483,-0.19582206,0.30609563,-0.063722864,0.018919945,0.13724288,-0.063645825,0.44005686,-0.34259567,0.038769018,0.06830276,-0.27015477,0.4159211,0.52609646,0.48640183,-0.30464202,0.57760465,0.08526566,-0.20128901,-0.29550454,-0.08016833,0.3919966,0.07047716,0.27122292,0.026191195,-0.10724185,0.37692702,1.0008615,0.17564948,0.41472498,0.15108043,-0.11773865,0.32444426,0.14866288,0.016513716,0.13206305,-0.4646107,-0.016576346,-0.07417485,0.13222554,0.525068,0.16018753,0.27026495,-0.11855043,-0.26401392,0.10951423,0.12613653,0.020906942,-1.1664472,0.1804743,0.18793103,0.65525234,0.59061855,0.11358977,0.006538429,0.83344215,-0.27395627,0.11484539,0.38301215,0.094877526,-0.6250298,0.63010585,-0.7465584,0.4589633,-0.14689855,0.023128737,0.0941288,0.113615476,0.42036095,0.7609429,0.0151892165,-0.0028937638,0.030465994,-0.23144425,0.16120085,-0.29184785,0.046270195,-0.45857874,-0.32449514,0.5043977,0.455793,0.32788506,0.07693054,-0.083026804,0.0209934,-0.12589274,0.20914207,-0.024995657,-0.0040774546,-0.09517152,-0.52308387,-0.31944352,0.5882606,0.17459212,0.2520987,-0.053495463,-0.1095174,0.20577969,-0.28303015,-0.3224811,0.05607847,-0.6503738,0.0016536037,-0.19897062,-0.35863537,0.5694193,-0.24723713,0.16426389,0.037889365,-0.027950244,-0.38861644,0.09624427,0.20916262,0.7753511,0.020342572,-0.08492286,-0.3018845,0.0011021435,0.09590803,-0.24243544,-0.015693339,-0.28393546,-0.005023265,-0.6898842,0.5141593,-0.10540943,-0.40920302,0.11911438,-0.17486435,0.063324496,0.5293434,-0.14261991,-0.3203288,-0.250426,-0.14034662,-0.32637468,-0.3121025,-0.17158209,0.23382123,0.1554799,-0.02628049,0.008874027,-0.12880136,-0.011911013,0.6243891,-0.060487114,0.33530417,0.24630694,0.023812912,-0.30465692,-0.06705804,0.2509065,0.52017015,-0.079210505,0.06106478,-0.23696072,-0.36209235,-0.34070867,0.010515611,-0.14565489,0.42264965,0.08912357,-0.3199169,0.8039152,0.078197524,1.2191144,-0.048740033,-0.37029594,0.09999132,0.52136177,0.053571437,-0.06536689,-0.3053056,0.7561128,0.68498445,-0.06701362,-0.26601306,-0.51713276,-0.24359147,0.3019916,-0.38821086,-0.032345723,0.030394332,-0.6501621,-0.19546476,0.28162205,0.32360083,0.051376175,-0.07420287,0.0694808,0.04855535,0.076646335,0.46672902,-0.4206517,-0.11268742,0.48962066,0.24845514,0.10235052,0.048712384,-0.4058539,0.38857687,-0.44969097,0.174824,-0.4242926,0.187198,-0.15109585,-0.35551974,0.16585231,-0.05306218,0.43677706,-0.25671566,-0.3856558,-0.17872804,0.6739511,0.17703448,0.10687075,0.6908839,-0.31991962,0.22656567,-0.013436405,0.49803412,1.1111194,-0.3833383,-0.07578133,0.1425843,-0.42627907,-0.81727946,0.503292,-0.35988885,0.22410098,0.044869732,-0.2520384,-0.55735993,0.25842634,0.22900857,0.014856379,-0.11076798,-0.53786224,-0.18738781,0.30029956,-0.2517656,-0.15557891,-0.39814332,0.19011761,0.63587976,-0.274301,-0.31387547,0.054156985,0.343366,-0.15420492,-0.64517707,-0.12041115,-0.17874524,0.2816384,0.1019234,-0.33786604,0.09193317,0.20281693,-0.44610664,0.018812204,0.2060914,-0.29552326,0.22040603,-0.37279287,0.13145958,0.95710456,-0.24979632,-0.22268884,-0.740071,-0.56256795,-1.0108356,-0.26125237,0.49522337,0.24445473,0.10173962,-0.62003064,0.15377998,-0.10439651,0.08725599,0.015887456,-0.49153316,0.42827034,0.08592234,0.42338556,-0.00069210527,-0.67048967,0.1357885,0.14663094,0.008636163,-0.4812908,0.64028347,-0.20690452,0.9391332,0.15032583,0.09135569,0.060129058,-0.4806911,0.03055059,-0.29884973,-0.3328349,-0.7311766,0.11447498,56 -129,0.38770667,-0.17467284,-0.36466056,-0.10973857,-0.257936,0.046727262,-0.118279405,0.32179412,-0.019640263,-0.5856597,-0.10341387,-0.186314,-0.051161338,0.26067787,-0.20974378,-0.47621268,-0.0056144614,0.13600668,-0.5679086,0.46819973,-0.43501815,0.30915436,0.02631747,0.28517833,0.1199913,0.2729126,0.28419024,-0.2293126,-0.13592836,-0.17453457,-0.23964642,0.28062412,-0.5447045,0.1769277,-0.13186775,-0.4661897,-0.09313785,-0.28566703,-0.3017635,-0.6103886,0.2610199,-0.9413199,0.4138316,-0.052959103,-0.21340695,0.45707375,0.07518433,0.20158498,-0.23794998,0.06471183,0.1633633,-0.13337547,-0.032996412,-0.19981034,-0.058012765,-0.3455599,-0.5329593,0.02892969,-0.40894222,-0.12670381,-0.44012558,0.13583097,-0.38439238,0.07155234,-0.029733606,0.32512486,-0.54320693,0.09119662,0.07639661,-0.018181378,0.1703065,-0.53178346,-0.12677865,-0.157243,0.27701727,-0.26010215,-0.13285205,0.3057338,0.22591524,0.44317073,0.02786278,-0.12955984,-0.4848166,-0.022032412,0.21691205,0.4627538,-0.11477466,-0.48834077,-0.07763241,-0.053838618,0.07012628,0.15259638,0.043185767,-0.19138244,-0.17973527,0.014445762,-0.2969819,0.3432396,0.464755,-0.38657883,-0.41573665,0.35088885,0.5315564,0.14079277,-0.11906523,0.069520615,-0.00023901476,-0.5258093,-0.11683462,0.16810973,-0.048698295,0.42664725,-0.19610366,0.28721878,0.6348247,-0.28109312,0.15000394,-0.06766057,-0.111346476,-0.11339712,-0.03659866,-0.12917021,0.107485496,-0.39450026,0.22768702,-0.20193294,0.8506429,0.1046418,-0.77129716,0.29189867,-0.44307575,0.15647332,-0.10395427,0.54773355,0.5940468,0.38757324,0.251615,0.67117196,-0.5083723,0.011796347,-0.070370294,-0.3578033,-0.037183158,-0.15250073,-0.08038235,-0.4933039,-0.027771497,0.07515376,0.08546788,-0.10225373,0.57528967,-0.50944704,-0.0039764643,0.10556404,0.7649081,-0.35767907,-0.1507681,0.8542191,0.9501487,1.0540407,0.06634775,1.0790372,0.2720812,-0.1896901,0.14719035,-0.30971155,-0.612372,0.26529336,0.30652383,0.47583458,0.08631527,0.17709391,-0.028710276,0.3207034,-0.48840916,0.068772286,-0.26753834,0.23691724,0.2091205,-0.05663437,-0.33372372,-0.27137533,0.02060676,-0.0034282326,0.049847268,0.28115088,-0.16201393,0.5543577,0.06090008,1.6842333,0.053905927,0.07999367,0.060623053,0.52150935,0.14639877,-0.053420193,0.07152822,0.15896021,0.38400322,0.03756455,-0.6356076,0.08924388,-0.21225674,-0.64362794,-0.13980278,-0.3249151,-0.26823625,0.033196885,-0.44231004,-0.19562855,0.018601365,-0.2627221,0.44557616,-2.7055323,-0.054267906,-0.05427613,0.41122997,-0.21151842,-0.27231616,-0.14863357,-0.4871755,0.53838116,0.36192656,0.4397246,-0.63136965,0.4183588,0.38082182,-0.40480897,-0.08858214,-0.7079691,-0.059250686,-0.020286,0.38352025,0.025634862,0.030794589,0.22822802,-0.05632581,0.5425039,-0.13217965,0.07458125,0.26939073,0.33917472,0.17336081,0.47921547,0.15978113,0.42153302,-0.33165747,-0.1738021,0.28712007,-0.29409352,0.32354453,-0.13525325,0.13695084,0.39229742,-0.49335188,-0.8858618,-0.7380028,-0.27484354,1.1300012,-0.09795877,-0.5178497,0.29721558,-0.15233812,-0.153099,-0.17571814,0.34486488,-0.19426626,-0.11480566,-0.80805993,-0.014323449,-0.051320706,0.15750284,-0.016349413,-0.009556774,-0.4752282,0.7532384,-0.15198472,0.43370068,0.3715291,0.3011534,-0.29995564,-0.5153362,0.0752117,0.78123075,0.31025124,0.12065478,-0.27786633,-0.3610077,-0.18607174,-0.19297172,0.1284752,0.45362607,0.610495,0.04864245,0.15545763,0.2769823,-0.058792952,-0.011590183,-0.23019654,-0.058415394,-0.20018728,-0.09094487,0.52011484,0.6316317,-0.12207505,0.46301273,-0.119351506,0.17082077,-0.18540548,-0.49389347,0.5561577,0.83767235,-0.17085738,-0.25950614,0.39196855,0.54778737,-0.18363555,0.29865333,-0.6300978,-0.33478925,0.48966655,-0.26481843,-0.47085467,0.10323114,-0.32269213,0.10965657,-0.7977278,0.36368647,-0.18643247,-0.58342093,-0.6871703,-0.25577018,-3.259529,0.023987412,-0.31374684,-0.25417018,0.023564536,-0.27652758,0.17305705,-0.5309339,-0.38402367,0.08325817,0.050021354,0.6633498,-0.0040908097,0.13987158,-0.2918956,-0.03940344,-0.35466197,0.112669155,0.14029923,0.37631854,0.030039867,-0.39729518,0.1614535,-0.15829378,-0.42727196,0.025641706,-0.4440642,-0.4805942,-0.15908685,-0.23458046,-0.40621606,0.65179926,-0.32190514,0.04386383,-0.24081166,-0.1461096,-0.13765262,0.4457305,0.22595392,0.08599326,-0.004676521,-0.0771711,-0.028989526,-0.3165387,0.23893422,0.011789187,0.20894319,0.54492354,-0.22942571,0.14130385,0.4230131,0.48975465,-0.076386675,0.7316662,0.48560145,-0.044234242,0.20380135,-0.26408392,-0.18073197,-0.64918226,-0.37426695,-0.0545639,-0.48547187,-0.58361727,-0.07819388,-0.32558337,-0.80505574,0.54186696,-0.063281216,0.116923064,-0.015626727,0.16998164,0.41483888,-0.036927395,-0.12564065,-0.13557999,-0.03554459,-0.5387475,-0.36771515,-0.69269717,-0.61510235,-0.030421695,1.0009196,-0.14208187,-0.1398577,-0.03140795,-0.25309202,-0.031509086,0.13067691,0.019624868,0.19856699,0.26415247,-0.07590936,-0.721806,0.66985667,-0.034697663,-0.16228475,-0.6562921,0.19011506,0.5416418,-0.63108885,0.33367315,0.38466543,0.029278401,0.035167854,-0.49309048,-0.19334488,-0.2745294,-0.2561911,0.3120526,0.07806769,-0.7435426,0.5082519,0.30047223,-0.21586418,-0.73458153,0.40044844,0.03647737,-0.27992696,0.2266409,0.13567121,0.20648041,0.017212663,-0.24109672,0.3000104,-0.5687655,0.3982579,0.23339829,-0.034204397,0.3785782,-0.2839312,-0.22480701,-0.53836304,-0.049215928,-0.4069783,-0.20860909,0.0866913,0.17566581,0.07491951,0.26114044,-0.016875684,0.3853569,-0.33660635,0.0647498,-0.03234084,-0.041811347,0.19327095,0.45162427,0.47507125,-0.45420474,0.6468984,0.016808415,0.01557157,-0.01547637,0.15498537,0.413863,0.1620706,0.36620057,0.05765698,-0.20042203,0.19809678,0.88356405,0.32460696,0.5325025,0.057168737,-0.3258528,0.4412733,0.1404212,0.29380804,0.011272267,-0.41234916,0.12552454,-0.25639826,0.15454724,0.3953563,0.050034616,0.32083148,-0.1271967,-0.07234049,-0.013256085,0.25209704,-0.12862161,-1.194033,0.3294768,0.2720505,0.7819906,0.56950074,-0.07877552,0.20885108,0.7523382,-0.33568904,0.09380349,0.22094783,0.046847396,-0.56744206,0.5392119,-0.79054433,0.48738256,-0.11577085,-0.046802703,-0.07239187,-0.00054207246,0.2542655,0.652605,-0.071154326,0.05004357,0.016257042,-0.4232982,0.13500647,-0.41400972,0.23941259,-0.42246592,-0.097385615,0.7323881,0.47940972,0.2310385,-0.07429824,-0.019171031,0.05599698,-0.123698264,0.10943165,0.091105126,0.21625344,-0.1499018,-0.6181147,-0.31321412,0.5201036,-0.17729633,0.20917384,0.15058888,-0.20651992,0.24718057,-0.10540571,-0.09150313,-0.023527227,-0.58428663,0.08985664,-0.20725296,-0.24535714,0.44486094,-0.20452811,0.4049326,0.2527541,-0.008624501,-0.2977456,0.16854094,0.11272624,0.5804374,0.06627846,-0.12743677,-0.42576578,0.07654328,0.3202883,-0.22946991,-0.02923565,-0.03952026,-0.059063017,-0.61159605,0.32321683,-0.19453688,-0.29581815,0.23743576,-0.08896984,-0.017009242,0.59933275,-0.023534672,-0.13362718,0.06914622,-0.078112446,-0.2124319,-0.056992058,-0.1407428,0.3050949,0.18780534,-0.08126152,0.008842975,-0.12704615,-0.007151119,0.44540805,-0.00034744342,0.40976092,0.1784912,0.08184651,-0.4712787,-0.18245652,0.04333461,0.5016629,0.03795872,0.04553135,-0.1918773,-0.457852,-0.35274085,0.1349384,-0.16842829,0.23095326,0.12429707,-0.39427534,0.62496454,-0.10911519,1.0291041,0.1964483,-0.31049022,0.31212413,0.45460021,0.1458872,0.108429626,-0.2679056,0.8566535,0.6163212,-0.07697377,-0.22864078,-0.19892809,-0.020748913,0.337894,-0.15934263,-0.24420443,0.068665154,-0.68690723,-0.2672511,0.18166032,0.15898667,0.09213582,-0.08649047,-0.057160676,0.20663957,0.06500676,0.39675325,-0.46103472,-0.18358491,0.40751123,0.22831532,0.050104015,0.13415937,-0.38186333,0.44052476,-0.42229065,0.042309705,-0.2441149,0.18238431,-0.1862999,-0.12202316,0.2774121,0.2452514,0.374443,-0.111753985,-0.37878513,-0.2824474,0.5590025,0.16388471,0.28175536,0.48839238,-0.17679438,0.075386606,-0.024158092,0.32087773,1.120285,-0.30192104,-0.08621569,0.37964574,-0.25171444,-0.5271262,0.473807,-0.25368285,0.13343982,-0.06331598,-0.25565115,-0.44304523,0.25169572,0.21321398,0.13152,0.19196707,-0.61637646,-0.25839314,0.31303388,-0.3404811,-0.24791946,-0.4212871,0.13730086,0.6145528,-0.3522144,-0.14186043,0.06438635,0.2852898,-0.24447638,-0.5420839,-0.0359989,-0.3531661,0.25297585,0.13022149,-0.3112063,-0.052503705,0.11850972,-0.35926333,0.083947055,0.16040659,-0.37149152,0.0596512,-0.34051606,0.067693755,0.9251279,-0.26318437,0.2480044,-0.70174146,-0.42562875,-0.9416148,-0.2606753,0.6060989,0.21442324,0.011534077,-0.6220862,-0.07539024,0.055042446,-0.13303,-0.111107096,-0.56535107,0.51317865,0.11940634,0.1655775,-0.034265127,-0.6768252,0.05517055,0.06654755,-0.17137368,-0.42232376,0.5793353,-0.048793532,0.78966194,0.08508768,0.10730336,0.23776884,-0.42859143,0.101578146,-0.25048333,-0.24261394,-0.67384034,-0.0048799873,59 -130,0.37557033,-0.2135964,-0.3732879,-0.041513562,-0.31169662,0.107008375,-0.15733142,0.40410605,0.21695091,-0.1588178,0.067710616,-0.26071808,0.016491735,0.44545308,-0.13581194,-0.49642292,-0.017470038,0.11059902,-0.5855616,0.5244207,-0.4150767,0.3461282,0.06509595,0.2686486,0.07827323,0.35625952,0.17103313,-0.1738704,-0.017967295,-0.09328982,-0.13945611,0.049150553,-0.53168243,0.18994491,-0.15435986,-0.22128677,0.12761812,-0.40469855,-0.5830422,-0.60406774,0.19856386,-0.71793693,0.5136686,0.064214796,-0.3488526,0.11302234,0.10445004,0.33154646,-0.27958456,0.057803813,0.21874245,0.085910335,0.10189188,-0.21779127,-0.21181574,-0.5224454,-0.5051592,0.05693915,-0.47852176,-0.35831052,-0.26457912,0.11279174,-0.35191888,-0.058103245,0.010786617,0.13747525,-0.49675387,0.013438066,0.19819777,-0.18109736,0.22639862,-0.5148138,0.07117624,-0.11407218,0.06810179,-0.13424876,-0.1970842,0.43829897,0.1493831,0.41755825,-0.07326209,-0.24302842,-0.09116761,-0.1665212,0.06376887,0.61708844,-0.20958687,-0.32073706,-0.10012167,0.11517797,0.2189085,0.14395823,0.009136768,-0.35864893,-0.18421431,-0.005123198,-0.11754228,0.18961151,0.53527826,-0.44448847,-0.24250145,0.33620635,0.42641562,0.23612125,-0.087688215,0.15692613,0.052165486,-0.44109097,-0.23626593,-0.033613794,-0.110499926,0.4751661,-0.06075756,0.2719621,0.7549618,-0.13637035,0.1023588,0.08484035,0.055999923,-0.13218635,-0.114780456,-0.16946128,0.13150303,-0.5267732,0.03182571,-0.04449602,0.76825535,0.22390018,-0.7881206,0.38634312,-0.48696482,0.16971461,-0.16553198,0.578319,0.69995654,0.3091793,0.14726028,0.6937498,-0.44047925,0.17285666,-0.08303892,-0.439398,0.35204214,-0.27354953,-0.15100147,-0.61702883,-0.02949036,0.23040935,-0.12446937,0.09315213,0.33678997,-0.5524261,-0.0063327234,0.13498238,0.9114918,-0.3043217,0.033764653,0.50466734,0.92311406,0.85350525,0.024846362,1.1212462,0.22799867,-0.22005746,0.2687545,-0.3004731,-0.766023,0.23996739,0.53799534,0.062076345,0.33636385,0.103664875,-0.12586696,0.27055177,-0.34284312,0.12686493,-0.2287721,0.21877345,-0.07954669,-0.11732507,-0.52554095,-0.28560045,-0.0821765,0.01826469,-0.089565404,0.29014003,-0.22619681,0.19745414,-0.056818493,1.8222587,0.0034228424,0.14016096,0.07819987,0.61652476,0.2679203,-0.12519571,-0.17046942,0.36364853,0.3256077,0.23250885,-0.5120898,0.06886309,-0.22423156,-0.50181365,-0.04272262,-0.32862714,-0.047961906,-0.08039301,-0.48876274,-0.14729498,0.05201125,-0.31593844,0.44412845,-2.8549845,-0.17363374,-0.05748868,0.25352466,-0.3382414,-0.2531339,-0.08756336,-0.3219894,0.27846605,0.4474456,0.49738273,-0.65076715,0.2150795,0.37544194,-0.46386567,-0.08002806,-0.5405253,-0.12772211,-0.0063905995,0.4479143,0.06478386,-0.046413638,-0.029797189,0.34930566,0.43465722,-0.043694057,0.09585786,0.16748291,0.27576897,0.13795567,0.2716758,0.0016682069,0.33727127,-0.15595356,-0.15570633,0.35875005,-0.22998644,0.27810678,0.10908993,0.1287058,0.29254398,-0.48604187,-0.8108785,-0.5367944,-0.2521597,1.0621936,-0.29730985,-0.32814223,0.3407325,-0.26849803,-0.23134737,-0.07888846,0.39754918,-0.15454279,0.110217534,-0.68013436,0.058890805,-0.046034522,0.18176799,0.07142995,-0.013450649,-0.27714416,0.5914477,-0.024868758,0.4076986,0.271318,0.057780758,-0.059904497,-0.34645244,0.1230354,0.8395378,0.42552254,0.15410942,-0.17983681,-0.17695138,-0.40252686,-0.15185724,0.07135644,0.40096915,0.8911899,-0.055840217,0.13742495,0.21859783,-0.106946446,-0.013041262,-0.06970975,-0.1890988,0.1121083,0.12096496,0.6041111,0.60362077,-0.22318234,0.44647518,-0.040628336,0.3481771,-0.12257694,-0.5899634,0.3736514,0.6897709,-0.080198035,-0.15359528,0.55205977,0.5909742,-0.30732745,0.4870202,-0.7494841,-0.33659998,0.4308076,-0.11059148,-0.4318302,0.37382972,-0.31568706,0.20897178,-0.88361,0.4541002,-0.04804219,-0.5229298,-0.3769077,-0.19194302,-3.206715,0.14976749,-0.20019145,-0.2027152,0.015679032,0.022690065,0.2756644,-0.5978182,-0.4308224,-0.062649295,0.07620303,0.6029625,-0.045575734,0.029637177,-0.15107034,-0.27528256,-0.38800544,0.093438216,0.029625837,0.31833592,-0.15375608,-0.48828572,-0.26351532,-0.28934386,-0.4176676,0.14294863,-0.70727146,-0.59864587,-0.23364411,-0.55601627,-0.09850582,0.7056097,-0.19868854,0.022054084,-0.21095704,-0.062196862,-0.09828078,0.26041257,0.38174045,0.019673228,0.03016566,0.028510321,-0.08043643,-0.37306756,0.27885154,0.10544314,0.49329337,0.39742532,-0.16937906,0.16670053,0.69070274,0.48209146,-0.238455,0.6621404,0.47010294,-0.20179044,0.36713532,-0.2508741,-0.21973367,-0.42235842,-0.4447922,-0.12840714,-0.38097742,-0.42890522,-0.10723033,-0.2598685,-0.68395925,0.52785873,-0.012579981,0.14503919,-0.039783493,0.06354611,0.4260926,-0.2172412,-0.13695082,-0.16409384,-0.18675347,-0.5216265,-0.28129885,-0.6675734,-0.54658335,0.32704675,1.1141158,-0.10889159,-0.039830673,0.04733016,-0.18787451,-0.15622555,-0.11296746,0.042508475,0.2321852,0.16892216,-0.11926762,-0.7452037,0.55065995,-0.03981127,-0.16025782,-0.49619693,0.074691966,0.583803,-0.62989336,0.30849412,0.20745015,0.25371683,0.07033278,-0.4401005,-0.20580424,0.05409984,-0.19703813,0.3762663,0.053163983,-0.71003395,0.3782338,0.3165829,-0.4679736,-0.50596005,0.52941656,-0.0373219,-0.26161784,-0.019405408,0.19570948,0.009809673,0.037946813,-0.17990296,0.33065143,-0.45623472,0.31721878,0.38644272,-0.013626901,0.43084186,-0.122948,-0.22219375,-0.57501763,0.027312227,-0.32663265,-0.40538797,0.24573027,0.15699151,-0.04826433,0.15239494,0.040588688,0.41390198,-0.25851253,0.0804142,-0.04159964,-0.31372565,0.5742391,0.37434572,0.599933,-0.3887609,0.5934571,-0.022907492,-0.03192932,-0.07143901,0.038250543,0.5007962,0.104208805,0.2230145,-0.08125693,-0.088181525,0.2974431,0.8480424,0.20831528,0.3780574,0.018668525,-0.108226135,0.18602315,0.14903836,0.0062239943,0.1613698,-0.47675118,0.07156692,-0.16308528,0.21824746,0.45581543,0.12797844,0.16573104,-0.09246082,-0.39768487,0.16830023,0.15236072,0.025694184,-1.2101874,0.27390102,0.3687705,0.5481983,0.5278442,0.03850937,0.016709214,0.7403246,-0.11714051,0.12712331,0.3004125,-0.10276301,-0.661684,0.5481752,-0.67539823,0.6253321,-0.06722266,-0.04685407,0.08154461,-0.025673095,0.45965356,0.74091756,-0.0910735,0.031869326,-0.026698468,-0.35565552,0.028903794,-0.39761466,0.17342891,-0.5469421,-0.33662874,0.57982534,0.43169373,0.16108608,0.00582968,0.009957645,-0.022662597,-0.14366254,0.39116108,-0.061713155,0.031175153,-0.12526281,-0.69025856,-0.32646745,0.57436043,0.015565348,0.09312453,-0.007546556,-0.09757121,0.25219184,-0.22953469,-0.033521175,-0.11364303,-0.5522897,0.17556486,-0.34361494,-0.3498033,0.5696805,-0.1599981,0.24692036,0.0943848,0.036567144,-0.285219,0.4359184,0.061441563,0.80481213,-0.058703262,-0.35855097,-0.24946244,0.14611825,0.09531123,-0.17303485,-0.1414826,-0.28057817,0.020948308,-0.67525035,0.37719414,-0.07714844,-0.40113556,0.16056685,-0.15709186,0.036709912,0.3876548,0.0364162,-0.29097444,-0.13939327,-0.04194224,-0.20973226,-0.1009484,-0.21566819,0.265986,0.22620104,-0.22692223,-0.057536583,-0.06183479,0.013895933,0.34358698,-0.113215655,0.37215316,0.24119194,0.13095562,-0.28009936,-0.027968628,0.22604793,0.42803898,0.06842181,0.25628737,-0.13516189,-0.27755147,-0.3769808,0.05350594,-0.22974648,0.3510879,0.21409747,-0.31365195,0.8222304,0.073492005,1.3035415,0.0076486627,-0.28752485,0.21792999,0.45949093,0.14081869,-0.019923735,-0.42661223,0.94206387,0.73819906,-0.037198577,-0.27164066,-0.33394396,-0.2262729,0.23680235,-0.24857181,-0.13716917,0.030592393,-0.6665659,-0.30612066,0.2238864,0.29796588,0.21061675,0.019243725,-0.039280057,0.09906553,-0.055337064,0.18648511,-0.42796558,-0.07090727,0.305863,0.1810856,-0.021916438,0.101368956,-0.5540146,0.45279422,-0.6773436,0.10769223,-0.26022956,0.12221162,-0.1329932,-0.42848533,0.191896,0.04571077,0.4703646,-0.33776695,-0.39757365,-0.12514548,0.539261,0.05934252,0.24299124,0.59174985,-0.3121223,0.08501988,-0.08333062,0.36414993,1.0570716,-0.30759144,-0.09230644,0.40784073,-0.36141053,-0.74107134,0.20625407,-0.32326302,0.235652,-0.119684376,-0.3265793,-0.4335082,0.22148976,0.2061327,-0.08132045,-0.12514123,-0.38439122,-0.09845674,0.16741033,-0.2026531,-0.3422135,-0.4490321,0.28759888,0.6700428,-0.29004878,-0.33872518,0.2114021,0.25974998,-0.23620272,-0.60973096,0.04151765,-0.23668191,0.20600182,0.0019112905,-0.30288723,0.019665726,0.0827549,-0.37286466,0.17452136,0.33911392,-0.4569719,0.098720625,-0.3746148,0.016023846,1.0159215,-0.14437841,-0.044267647,-0.80506516,-0.545407,-0.86702603,-0.4904322,0.5971111,0.22093193,0.04043488,-0.5064614,-0.010603666,-0.08641981,-0.014415939,-0.086151734,-0.37739494,0.4171006,0.066650435,0.31819013,-0.18008587,-0.8643821,0.17583853,0.033243444,-0.15254335,-0.670194,0.56550705,-0.113260955,0.7883692,0.17013595,0.043439202,0.33293766,-0.49787024,0.08237477,-0.25816032,-0.18947801,-0.6742688,0.20872869,61 -131,0.4148545,-0.13402742,-0.54694146,-0.22569968,-0.15257087,0.035973713,-0.178461,0.658877,0.2340012,-0.42058846,-0.023821604,-0.034615632,-0.008453162,0.39135602,-0.07643113,-0.68137795,-0.03636203,0.10279051,-0.2999903,0.40346763,-0.46003684,0.31680745,-0.056865755,0.48102006,0.20375668,0.3005389,0.030248333,0.04878049,-0.13763481,-0.13541053,0.16613021,0.22283153,-0.51107997,0.17783524,-0.055490986,-0.32297885,-0.04656483,-0.46058807,-0.27038527,-0.6882914,0.2422604,-0.67799383,0.5323916,0.12261663,-0.34856468,0.076698095,0.1937904,0.44058454,-0.18252043,-0.003548932,0.22951606,0.016686888,-0.03712694,-0.10816501,-0.2429428,-0.43434733,-0.5848694,0.13079017,-0.41073212,-0.18468451,-0.0780832,0.22417209,-0.2734951,0.019237367,-0.2293553,0.50018233,-0.36318198,-0.23426676,0.388607,-0.284221,0.3363443,-0.51237553,-0.08463747,-0.15189809,0.09739961,-0.1685236,-0.23550552,0.24378434,0.2630431,0.54720515,0.04347981,-0.31290835,-0.40185001,0.06109933,0.11959456,0.37005743,-0.2883969,-0.3962072,-0.19663745,-0.044279672,0.104724884,0.18623252,0.16958493,-0.32360637,0.0730337,0.19140495,-0.30287153,0.23955414,0.4541143,-0.33188757,-0.1400191,0.22112055,0.5558032,0.09279861,-0.10582374,0.10724922,0.080421835,-0.5326261,-0.25797865,0.031902943,-0.07425152,0.29975,-0.06696184,0.08108164,0.62602437,-0.14510186,0.04401578,0.066115595,-0.015617386,-0.012403492,-0.50323504,-0.3236789,0.21171592,-0.39145285,0.079245314,-0.26420647,0.78600043,0.19046292,-0.68759924,0.28537762,-0.59326583,0.13455711,-0.16457182,0.4190883,0.6822627,0.3663191,0.10682605,0.8045447,-0.42587292,0.090635434,-0.21063472,-0.2589634,0.21398811,-0.23355238,-0.067198,-0.40807584,0.07199694,0.006774314,-0.19961214,0.07141889,0.33719638,-0.5408774,-0.07198116,0.2114353,0.78655994,-0.2695154,-0.052276805,0.6811354,0.9531718,0.8794568,0.051449142,1.1738802,0.20343095,-0.18293165,0.31551132,-0.3060444,-0.64803535,0.37990707,0.34874874,-0.34987572,0.20489794,0.07375378,0.08944488,0.5020447,-0.35818425,0.13028885,-0.15497014,0.2310352,0.062557146,-0.16727714,-0.40530497,-0.17886448,0.06854816,-0.047092404,0.12300437,0.1946573,-0.23014012,0.23972252,-0.038424063,1.6659015,-0.109807536,0.04926068,0.09196308,0.38555536,0.27249318,-0.29699633,-0.08691704,0.17340733,0.16603222,-0.016641349,-0.5249328,0.1051582,-0.21305564,-0.49647802,-0.24355508,-0.29973856,0.040231194,-0.07110059,-0.46317083,-0.12526362,-0.12033205,-0.20620571,0.35490134,-2.6712415,-0.1719091,-0.032475147,0.21497343,-0.4218156,-0.47604284,-0.1506159,-0.3964912,0.4852899,0.37396345,0.39775798,-0.51956505,0.3340666,0.36129844,-0.4111378,-0.080742225,-0.63576114,-0.077057846,-0.076602526,0.18647505,0.08672233,-0.20657727,-0.1346472,0.15389816,0.51927716,-0.08262748,0.11133957,0.17496958,0.236629,0.026429527,0.5709951,0.0050026313,0.64479893,-0.369105,-0.28570908,0.4171137,-0.4511315,0.11068036,0.13527216,0.13423322,0.20533052,-0.5510494,-0.89151657,-0.67300606,-0.3552651,1.0383744,-0.032330886,-0.3067196,0.34290186,-0.32838544,-0.30927113,0.113109216,0.40322807,-0.120160505,0.020319683,-0.8539082,0.06072558,-0.16094078,0.18132073,-0.06842889,0.004906225,-0.4416045,0.58306754,-0.051340614,0.43690357,0.43234113,0.16994146,-0.26661408,-0.50903326,0.009089251,1.1313999,0.31280577,0.17761102,-0.17909,-0.21751404,-0.42522463,-0.062321123,0.1257467,0.45773113,0.7844954,-0.023605354,0.0028565517,0.2118423,-0.08653786,-0.036609933,0.0053906054,-0.47690922,-0.1261672,0.11812617,0.5719588,0.42274237,-0.16073026,0.42150083,-0.12371229,0.528228,-0.23436533,-0.45142803,0.51282746,0.7257965,-0.2288997,-0.28375185,0.66787493,0.3910564,-0.25018686,0.51880914,-0.5748014,-0.33744267,0.3031748,-0.15684825,-0.4258525,0.14839055,-0.34219116,0.1887899,-1.116729,0.1396776,-0.36476675,-0.29834053,-0.63357717,-0.34344122,-3.42674,0.1698774,-0.10934167,-0.111669466,-0.07988453,0.100156225,0.3635691,-0.55728644,-0.68793267,0.032315355,0.06949189,0.6718871,-0.032554932,0.05669033,-0.35574844,-0.16899493,-0.21129732,0.1833071,0.23147832,0.293611,0.04895379,-0.48718962,-0.20509548,-0.13943958,-0.5023753,0.112392664,-0.6963959,-0.488195,-0.2341068,-0.65040904,-0.2518399,0.7384604,-0.46388504,-0.035744485,-0.07514555,0.09088908,-0.021212898,0.41617328,0.13061275,0.16089767,0.2472602,-0.19305763,-0.043041993,-0.34144947,0.16496871,0.12832996,0.35325563,0.37957734,-0.12002052,0.28192344,0.65593916,0.7362937,-0.1075939,0.7271601,0.6442245,-0.091092564,0.41404018,-0.37658226,-0.20791511,-0.33751997,-0.29716057,-0.042248003,-0.39602864,-0.34125578,0.026023876,-0.3695402,-0.797405,0.5874094,-0.04737512,-0.11550415,0.01578787,0.12455379,0.32600743,-0.26450965,-0.14227404,-0.17834142,-0.081337325,-0.49019766,-0.4227204,-0.4901904,-0.5938548,0.11846992,1.1462299,-0.15769139,0.14168224,-0.0669103,-0.15420817,0.011424263,0.015524489,0.051925067,0.18977779,0.49033305,-0.09064446,-0.5969859,0.31874925,-0.08556002,-0.1844758,-0.49955654,0.286771,0.71178335,-0.6507407,0.6026183,0.24636616,0.25498575,0.015310508,-0.5051448,-0.045895945,0.14280063,-0.19123335,0.52413034,0.21279524,-0.73409873,0.4806232,0.48661882,-0.19585648,-0.7173922,0.35116705,0.0023292662,-0.09375518,-0.22848235,0.36260137,0.0778249,0.031351145,-0.13982083,0.23355907,-0.46156958,0.042554602,0.36207193,-0.06023748,0.51987094,-0.27729163,-0.1558044,-0.69420683,0.07541139,-0.6027455,-0.3779544,0.22145413,0.0033267934,0.060890984,0.27117568,0.10756355,0.38377082,-0.21577808,0.07359593,-0.10358407,-0.21204135,0.388966,0.40464973,0.42711315,-0.5364942,0.43443954,0.032740917,-0.031591695,-0.030843934,-0.09306963,0.6197925,-0.03766087,0.38332638,-0.09036447,-0.024551146,0.26692432,0.7168659,0.11643708,0.3131777,-0.0063527822,-0.22158664,0.027903546,0.08814451,-0.019416343,0.08262139,-0.5544337,0.037732687,0.008505662,0.19638588,0.4716151,0.2044533,0.3610683,-0.015250009,-0.31742173,0.08862107,0.09608089,-0.13637324,-1.2186702,0.50723296,0.12731676,0.7380329,0.5381816,0.09358147,0.16509934,0.54759574,-0.20026693,0.2601014,0.36564636,-0.19507615,-0.44665357,0.44985232,-0.704776,0.42784518,0.0057447064,0.061434448,-0.025447067,-0.08890771,0.6133419,0.8061342,0.0068609994,0.21493095,0.024824237,-0.16626193,0.13107662,-0.32609144,-0.017474007,-0.52280796,-0.21216975,0.7783093,0.37137288,0.32966283,-0.20144172,-0.16095276,0.22925347,-0.05594768,0.12384108,-0.19733232,0.0015315593,0.15654577,-0.54699445,-0.4121624,0.5553462,0.16532545,0.16233319,-0.06419364,-0.22767334,0.22219685,-0.004695344,-0.009464113,-0.09472411,-0.5702635,-0.031998143,-0.49425256,-0.31917003,0.36121902,-0.22301473,0.19544844,-0.0043171686,0.14798927,-0.38057706,0.5585975,0.0093244715,0.8119815,-0.114962436,-0.051714294,-0.31871903,0.25648203,0.18936959,-0.29867104,-0.2527268,-0.4557408,0.051215455,-0.5926673,0.36665574,-0.050016165,-0.41495958,0.11548117,0.09380791,0.044511557,0.5046269,-0.2267652,-0.0024620255,0.21253633,-0.17266487,-0.12112587,-0.21189107,-0.084880725,0.32497156,0.039949782,0.0048181536,-0.07855089,-0.15836082,-0.06497602,0.47331542,-0.10060071,0.31351152,0.45232385,0.07984359,-0.32208014,-0.028944714,0.19342707,0.41644987,0.016734008,0.0027117212,-0.25762656,-0.19712375,-0.3650442,0.20165655,-0.24732502,0.261013,0.14530036,-0.38114056,0.81625944,0.2030339,1.3950683,-0.014466391,-0.3792341,0.072916,0.38420704,-0.052813053,0.047124393,-0.57870966,0.8857718,0.54151696,-0.16509946,-0.07376704,-0.45900685,-0.114966735,0.1306589,-0.25076324,-0.14758635,-0.14157146,-0.73985046,-0.38403437,0.31832898,0.33420917,0.113581374,-0.102843,0.16796225,0.04931992,0.008044219,0.23915964,-0.40036044,0.038989704,0.24343345,0.43895614,0.011223308,0.14479169,-0.55291694,0.37022573,-0.6290896,0.09261338,-0.25149906,0.18318509,-0.09638414,-0.3981134,0.1691027,-0.08386977,0.31160983,-0.30729225,-0.33579686,-0.14685999,0.6102728,0.025894912,0.19635439,0.706843,-0.26086596,0.097947374,0.079857476,0.56301254,0.99656457,-0.21628462,-0.015213559,0.33942568,-0.09482349,-0.6749228,0.23440515,-0.30541566,0.14332566,-0.050411534,-0.40508258,-0.53534406,0.3691602,0.27549848,-0.14071473,0.013166046,-0.50971407,-0.19159333,0.24945755,-0.21733984,-0.33857286,-0.20382999,0.20830801,0.6490822,-0.23456435,-0.38539657,0.2317031,0.3520738,-0.22185971,-0.4016733,-0.11902857,-0.25746787,0.25457686,0.19900016,-0.27869797,-0.08087627,0.11166116,-0.4500981,0.12102308,0.22408298,-0.34790972,0.07228012,-0.23226914,-0.1311486,0.88575447,0.15705656,0.25877327,-0.58607465,-0.46112493,-0.9145735,-0.33558026,0.45418376,0.024214914,0.0062610805,-0.6408141,-0.080848485,-0.1477519,-0.15815446,0.09115179,-0.4581807,0.3848402,0.035434164,0.50557125,-0.1323215,-0.6084611,-0.01693519,0.28618792,-0.12666294,-0.63446915,0.38538736,-0.061534483,1.0020002,0.057617184,0.06786887,0.41278133,-0.52620834,0.0037786365,-0.29464823,-0.1337303,-0.7141778,0.074437335,65 -132,0.3525177,-0.2441336,-0.48671722,-0.04837264,-0.12587814,0.0005936265,-0.18468933,0.56269586,0.22624832,-0.47997445,-0.044181246,-0.075574376,-0.0304617,0.2745201,-0.14478257,-0.32670364,-0.116487026,0.09612672,-0.3726819,0.47130638,-0.40879616,0.32711315,-0.029487459,0.43162,-0.027884746,0.30520192,0.11064283,-0.00939382,-0.0526272,-0.3014988,-0.017330825,0.18550438,-0.52027136,0.24158533,-0.20809168,-0.32250258,-0.11352583,-0.5624888,-0.2502275,-0.6801079,0.27035162,-0.65019,0.51089835,-0.013335927,-0.3535153,0.51748383,0.05207844,0.19023943,-0.13533269,-0.05686548,0.16989699,-0.09478063,0.00702007,-0.23043147,-0.16461903,-0.22095805,-0.53462243,0.14094798,-0.3552171,-0.12678441,-0.22606832,0.17677635,-0.32131213,0.016914463,-0.06285901,0.5213672,-0.38049176,0.016255148,0.0050473986,-0.16244154,0.29384163,-0.47839603,-0.10553773,-0.098383136,0.22074464,-0.19821341,-0.23659874,0.18538012,0.16770318,0.4833232,-0.08703471,-0.1765075,-0.4467354,-0.039637692,-0.020808328,0.6515911,-0.23558024,-0.45343396,-0.026604425,-0.00045763652,0.15314485,0.11456443,0.054677453,-0.28407568,-0.23377761,-0.07162986,-0.27045295,0.3739821,0.5004187,-0.2630348,-0.27082497,0.37402254,0.49748394,0.07659287,-0.20711292,0.0017798861,-0.05454713,-0.44603464,-0.11736416,-0.12390296,-0.100125104,0.33860913,-0.1801592,0.30356905,0.5538526,-0.16785653,-0.127046,0.17351076,0.018758977,0.08551603,-0.22654037,-0.2955417,0.22840041,-0.37298355,0.096053,-0.12533355,0.66265166,0.03448329,-0.887123,0.45226023,-0.42768702,0.09960856,-0.016808918,0.4050174,0.7176024,0.47716826,0.25763565,0.6065126,-0.46293637,0.093253404,-0.0604441,-0.25723147,-0.0005254626,-0.10842376,-0.08331544,-0.43649864,0.05914645,0.14344215,-0.17534767,0.2101733,0.3436066,-0.45276794,-0.06434407,0.24472716,0.7805488,-0.17483447,-0.07673684,0.9013936,0.9906615,1.0719311,0.04690879,0.95293087,0.09578622,-0.14436848,0.15656473,-0.28827813,-0.6674882,0.2626096,0.33344522,0.22989464,0.24911398,0.100163236,0.051978193,0.42300937,-0.31872854,-0.10577682,-0.123867325,0.13831395,0.18056542,-0.15656625,-0.420953,-0.20033596,0.045416158,0.13029666,0.032162417,0.29264227,-0.24142273,0.40558013,0.060256157,1.6310399,-0.029572904,0.068970665,0.16454703,0.54726344,0.23646235,-0.22539042,0.029542888,0.26281795,0.25081405,0.041609026,-0.5383493,0.06474432,-0.035593294,-0.5522452,-0.116965406,-0.3110045,-0.13972554,-0.06438854,-0.44886765,-0.19762586,-0.17158021,-0.38070652,0.39496514,-2.9388504,-0.12176306,-0.0033277492,0.29809648,-0.2122189,-0.4670307,-0.03935578,-0.49514335,0.45365068,0.41868213,0.5012687,-0.660047,0.31353492,0.37193772,-0.44681492,-0.08773377,-0.61384004,-0.07981505,-0.14521307,0.37939993,0.08814227,-0.022888303,0.016734887,0.12085679,0.5144576,-0.01456825,0.017085552,0.20614424,0.37803715,-0.031829942,0.3634927,-0.05111083,0.44204178,-0.26862946,-0.21841595,0.36751625,-0.43888336,0.07705593,-0.17606796,0.16077305,0.2982019,-0.4291802,-0.9134712,-0.6297934,-0.077193975,1.2108915,-0.021034753,-0.37866887,0.33787888,-0.3706223,-0.3955552,-0.11108438,0.37127754,-0.096151404,-0.056898404,-0.7632765,-0.04531374,-0.18028322,0.110236205,0.0017521243,-0.11276755,-0.44047084,0.6483648,-0.06684447,0.48047745,0.42252582,0.11816316,-0.34015554,-0.33208716,0.03804854,0.86380696,0.33476657,0.18820728,-0.21604046,-0.118038006,-0.24302727,-0.08129915,0.13715753,0.4814581,0.47677782,-0.0015136977,0.06423629,0.19586508,-0.074364334,0.015966577,-0.2054433,-0.13121308,-0.14874405,0.053364046,0.588914,0.6823228,-0.1353084,0.4100141,-0.03953463,0.23087423,-0.21952893,-0.38810146,0.43349257,0.9256676,-0.03867478,-0.29926807,0.51645285,0.40188235,-0.20000571,0.40331656,-0.4390824,-0.26008925,0.24574909,-0.23908709,-0.4225741,0.2477452,-0.2444381,0.13566995,-0.7731752,0.20104104,-0.14828543,-0.56835914,-0.620959,-0.25180995,-3.17188,0.12648377,-0.11523536,-0.2831608,-0.12339724,-0.11518066,0.13153768,-0.46291882,-0.48766384,0.17119595,0.080785066,0.60776025,-0.053108033,0.12609854,-0.23613872,-0.30690968,-0.35551882,0.17855969,0.07406951,0.44866064,0.07079646,-0.3864909,-0.1997549,-0.08794702,-0.47197708,0.050202597,-0.4625587,-0.3747991,-0.08559697,-0.3976138,-0.2961052,0.58513474,-0.24988696,0.079749666,-0.17046402,-0.058845863,-0.12090419,0.32701504,0.19813119,0.021844236,0.031645205,-0.052005425,0.26919687,-0.2788051,0.29110956,0.043375604,0.24655409,0.39843366,-0.21754195,0.15410215,0.43124336,0.74728894,-0.1541693,0.8211578,0.43286768,-0.009687594,0.3812451,-0.27986193,-0.2697173,-0.47258633,-0.21243344,0.053488277,-0.3682715,-0.3896879,-0.06547548,-0.36781365,-0.78278834,0.49318543,0.033120938,-0.028751383,-0.027922846,0.4077929,0.47668368,-0.17081502,-0.026102142,-0.020501455,-0.12251624,-0.48410589,-0.3945895,-0.5399725,-0.48815447,-0.02376655,1.0227458,-0.083978005,0.060284223,0.013600274,-0.043161534,-0.06099337,0.091729134,0.07782174,0.1837602,0.27743772,-0.082333736,-0.6689129,0.4663199,-0.07832958,-0.26809806,-0.49550742,0.25873664,0.5980039,-0.42706954,0.43909723,0.22727123,0.12435781,-0.09583893,-0.52590376,-0.038121343,-0.08188841,-0.22841927,0.46647173,0.28868797,-0.8145489,0.55340654,0.34680158,-0.24837612,-0.65266776,0.31036994,0.0014181972,-0.2507379,-0.12342854,0.20743427,0.18974826,-0.032579243,-0.13801078,0.23813473,-0.42781022,0.18707378,0.13387513,-0.06699196,0.39350775,-0.2940984,-0.05172615,-0.6556328,-0.029972918,-0.43327585,-0.30123058,-0.00033837557,0.1772757,0.1683124,0.15042639,-0.1276699,0.45188376,-0.2591647,0.1525937,-0.19412346,-0.19424814,0.28840807,0.34168777,0.45704412,-0.4123923,0.57839787,0.04063863,-0.11753426,-0.070859864,0.029676756,0.48302066,0.029812038,0.26833975,-0.017461991,-0.17348196,0.25322777,0.62528527,0.28804246,0.36840346,-0.13925794,-0.22416976,0.29622442,0.06141629,0.1827297,0.016798638,-0.4841804,-0.0091766035,-0.18331668,0.15274662,0.46304348,0.019674782,0.33394632,-0.21831255,-0.312507,0.12227054,0.22648512,0.023690462,-1.1769584,0.34118113,0.15337975,0.8499882,0.42809227,0.03918883,0.12563802,0.7541654,-0.22406133,0.1273794,0.31184575,-0.028622884,-0.4822646,0.4461899,-0.7569701,0.49900156,0.0065931915,-0.033127174,0.0335783,-0.13011229,0.45143902,0.68032455,-0.107395284,0.042468708,0.047073435,-0.3108019,0.08801663,-0.37583894,0.056215063,-0.44529456,-0.17255244,0.67347693,0.39004248,0.35626984,-0.18278824,0.043247547,0.123330034,0.030400263,0.0028335412,0.018355023,0.08687553,-0.14152892,-0.5150626,-0.07807052,0.5436539,0.045114372,0.20120949,-0.0014835835,-0.23859288,0.3051049,0.01450518,-0.21838512,-0.09234789,-0.54010016,0.095227,-0.19569908,-0.3826913,0.49391755,-0.03473459,0.27649015,0.20461035,0.0841671,-0.20802742,0.28913447,0.20435375,0.75753933,0.037350908,-0.0099349655,-0.31518078,0.21038672,0.1435864,-0.21585824,-0.27659315,-0.24931815,-0.10088495,-0.55020565,0.29521072,-0.06681699,-0.3632229,0.12982264,-0.06755579,0.10376271,0.60475296,-0.048496947,-0.13383794,0.036459718,-0.16887191,-0.19980818,-0.27563617,-0.05194244,0.4375685,0.1926178,-0.124508634,-0.015998082,-0.13884374,-0.19287458,0.48060504,0.017926788,0.4221,0.24811037,0.05973679,-0.36082125,-0.033068195,0.047199264,0.39173558,0.0035874844,-0.06640796,-0.23961583,-0.45886004,-0.3281583,0.18799934,-0.085402995,0.283274,0.07174573,-0.18185572,0.67950344,0.011408852,0.9585617,-0.0023397484,-0.35063592,0.24985479,0.3698829,0.1421096,0.09026659,-0.40493634,0.8981264,0.43290466,-0.09892787,-0.11780499,-0.2729665,-0.006798776,0.107596315,-0.24326004,-0.1590929,0.033960093,-0.69705516,-0.19706208,0.28489247,0.21444088,0.1529497,-0.18698575,0.043506388,0.26292345,0.030123234,0.28384697,-0.37028074,-0.06696983,0.38023096,0.2898717,-0.06128168,-0.016057063,-0.53854877,0.34311572,-0.45160753,0.05238872,-0.27483168,0.13907434,-0.26997843,-0.19719873,0.27233636,0.07886292,0.29668623,-0.23575585,-0.38915756,-0.2292632,0.42003667,0.0048249485,0.1350424,0.3054939,-0.26206544,0.07135752,0.06486796,0.35974553,0.88963825,-0.26317364,-0.031982463,0.3755532,-0.29130232,-0.5565475,0.23992243,-0.22702573,0.19839881,-0.006040419,-0.08499873,-0.47998208,0.24638815,0.23022692,0.13336284,0.056257073,-0.55528176,-0.25259712,0.29464656,-0.4041127,-0.19626738,-0.22141026,-0.024067935,0.7054571,-0.22340089,-0.33672965,0.08557474,0.2568801,-0.23165788,-0.5872931,0.027573442,-0.3394228,0.27709055,0.118469715,-0.2871326,-0.113620475,0.08279478,-0.43867332,0.14349604,0.17974322,-0.36907476,0.017071025,-0.4593598,-0.05143971,0.90422666,-0.13211398,0.33987758,-0.46447575,-0.5085209,-0.8976633,-0.32462355,0.41822654,0.09958723,0.07657436,-0.62735176,-0.1155767,-0.19441031,-0.3047193,-0.017296592,-0.36349782,0.418454,0.16655967,0.25613144,-0.19526742,-0.69701725,0.040620767,0.06915136,-0.172819,-0.53516537,0.43557733,0.18518187,0.76985294,0.09921651,0.08073984,0.3550638,-0.49721658,0.003738316,-0.16963919,-0.25544694,-0.5741257,-0.002411906,67 -133,0.37101525,-0.020502785,-0.53490233,-0.12772962,-0.19635257,0.19145085,-0.24222046,0.43046984,0.22007892,-0.5211383,0.095621854,-0.09279136,-0.0018591901,0.44327742,-0.21956673,-0.57409453,0.12984496,0.07714869,-0.5077654,0.374839,-0.46688405,0.37078342,0.06825744,0.19113144,0.12726085,0.2939148,0.13248697,-0.08424008,-0.2911931,-0.14505889,-0.24223427,0.32906702,-0.3273424,0.1859448,-0.066311926,-0.2954233,-0.03918122,-0.4368561,-0.2236241,-0.61263794,0.011148437,-0.63192403,0.5644658,-0.07801566,-0.3094984,0.19409184,0.31298822,0.20466107,-0.10827555,-0.029888451,0.06432014,-0.21530904,-0.17110255,-0.120772734,-0.4910091,-0.53704673,-0.6739648,0.015768072,-0.54601645,-0.081350654,-0.23227192,0.22715896,-0.27218905,-0.08535776,-0.14582881,0.4651677,-0.3197841,0.12532924,0.20192423,-0.19644101,0.21916516,-0.5344561,-0.17619887,-0.027772542,0.16558048,-0.12104367,-0.28052947,0.25412753,0.6190622,0.44096965,0.031607643,-0.30067146,-0.62494737,-0.123687014,0.08795222,0.6181608,-0.24451208,-0.3136839,-0.18300408,-0.0029710373,0.33861917,0.3229355,0.12372543,-0.35414112,-0.12713844,-0.009748,-0.36800003,0.34185186,0.45683947,-0.46839035,-0.16138329,0.54474235,0.43279603,0.07587768,-0.25297776,0.12227387,-0.019685635,-0.5220006,-0.10172636,0.20691206,-0.070557676,0.55438703,-0.22144032,0.22080907,0.61652756,-0.12760527,-0.17371865,0.17040803,0.12316649,-0.06073342,-0.26896587,-0.14451598,0.10202589,-0.5483913,-0.040035024,-0.13883495,0.69557774,0.0847623,-0.8632221,0.43418396,-0.40737286,0.052926775,-0.04088383,0.3364172,0.720418,0.5740095,0.111060634,0.66946495,-0.43558538,-0.071561255,-0.18544057,-0.3714526,0.1143348,-0.042910475,0.11855466,-0.586607,0.12720187,0.08227228,-0.050309442,0.24363557,0.34175763,-0.46974772,-0.12789336,0.20735715,0.69659084,-0.33677313,-0.3737847,0.6324205,0.9603442,1.1025335,0.05314083,1.182592,0.17826988,-0.049236078,0.085524745,-0.40652484,-0.5097365,0.26064855,0.32505652,-0.50912565,0.37076822,0.05010831,0.07871596,0.43068376,-0.06803021,-0.09995704,-0.08323055,0.30739796,0.11356854,-0.11398151,-0.4568969,-0.37558308,0.013131659,-0.13069186,0.21576768,0.2601601,-0.24647102,0.44532034,0.1600578,1.5404153,-0.019654667,0.113994665,0.06624215,0.26423037,0.2054162,-0.1514713,-0.15495077,0.28994086,0.262015,0.14978312,-0.3277387,0.026139371,-0.20350692,-0.4434911,-0.11730375,-0.36048248,-0.025714926,-0.12634827,-0.4337816,-0.23071574,0.0036389192,-0.4413334,0.5942258,-2.8995295,-0.25515363,-0.15442571,0.27750906,-0.19793753,-0.52264094,-0.20240264,-0.56383353,0.42252558,0.18789044,0.45469007,-0.5415295,0.32724845,0.42295507,-0.40851766,-0.25337446,-0.6599182,-0.03735942,-0.12812334,0.25109702,0.0026408513,-0.07608129,0.023622382,0.18378463,0.5375501,-0.27984795,0.11232253,0.27611586,0.22947647,-0.02280782,0.4456019,-0.17166771,0.748472,-0.23152825,-0.21691494,0.24498695,-0.41848314,0.15895382,0.033627708,0.1984021,0.5464944,-0.33694676,-0.7530088,-0.62369156,-0.11890601,1.1328568,-0.23306488,-0.2671951,0.18527764,-0.24177796,-0.48510754,-0.064457946,0.3125524,-0.04506635,-0.05474937,-0.677344,-0.023535881,0.003982139,0.18033287,-0.16293465,0.013272727,-0.36210912,0.41716304,-0.06489244,0.4829685,0.41083214,0.20826094,-0.5176671,-0.40635172,-0.07442415,0.99060017,0.3916977,0.16421178,-0.22344695,-0.32378775,-0.31276506,-0.16204032,0.14953035,0.444269,0.5294551,-0.078459285,0.10764739,0.29240605,-0.032393508,0.037871905,-0.05912765,-0.24559921,-0.0138778025,0.16605493,0.45994645,0.51530796,-0.09601132,0.5125638,-0.12588574,0.2576236,-0.17366512,-0.54874665,0.47919783,0.9066271,-0.2899925,-0.4054604,0.73279977,0.26366073,-0.10846696,0.3908771,-0.45753238,-0.39204082,0.48398897,-0.22297613,-0.21597055,0.15058216,-0.2888983,0.1032096,-0.74528867,0.26806882,-0.17879131,-0.5517472,-0.33183414,-0.09523948,-3.505874,0.108418174,-0.113248155,-0.15428872,0.2001573,-0.14407247,0.25119895,-0.59907424,-0.4775446,0.17634328,0.18619499,0.61320883,-0.16382718,0.041461643,-0.19359586,-0.38958377,-0.26168102,0.23507933,0.011726729,0.36917722,0.027619096,-0.42564967,0.15202549,-0.25569004,-0.45693868,0.1510757,-0.69989944,-0.3474315,-0.14291443,-0.54055864,-0.45431468,0.7885024,-0.63324076,0.13922663,-0.24989511,0.071798034,0.00949926,0.30342808,0.012706162,0.17116866,0.05569329,0.08228385,0.07964326,-0.31877998,0.27503204,0.11553987,0.30497694,0.5881454,0.018078387,0.28267306,0.67343545,0.7056348,-0.03924467,0.83703077,0.41772595,-0.05901664,0.33819112,-0.29946545,-0.20150803,-0.4467165,-0.42995775,-0.044379424,-0.48993176,-0.32118353,-0.119752556,-0.25547704,-0.7330392,0.5232109,0.09117285,0.09874077,-0.16596128,0.25172073,0.40917575,-0.39073002,0.018365623,-0.09494252,-0.2202959,-0.35365131,-0.41756856,-0.65145326,-0.5155628,0.20488568,1.0248497,-0.23592159,0.07375622,0.040126063,-0.19985208,-0.07614001,0.20078899,0.11040783,0.24030592,0.3591185,-0.16615216,-0.59736484,0.2826333,-0.35303545,-0.15206917,-0.43883163,0.2880987,0.746899,-0.56042176,0.4834439,0.4200212,0.13849871,-0.31913197,-0.58677316,-0.24692927,-0.10800593,-0.32254475,0.523553,0.2294775,-0.84631604,0.47160968,0.369216,-0.37150756,-0.6626944,0.48108637,-0.057865195,-0.009409499,-0.07900108,0.37102494,0.23089613,0.07902112,-0.055816993,-0.003631417,-0.43482095,0.21609841,0.34962183,0.117748566,0.4374865,-0.2927449,-0.022709083,-0.7918611,-0.18524386,-0.30999464,-0.37119916,0.11350589,0.050327387,0.12082853,0.12498644,-0.1201427,0.31912547,-0.4175046,0.12079332,-0.09787287,-0.14622097,0.24632482,0.3994648,0.38757032,-0.24961041,0.57511646,0.023573864,0.04402118,-0.19601555,-0.0739693,0.5575567,0.18803024,0.28838715,-0.044987068,-0.27442577,0.29666469,0.5933163,0.13449948,0.22577305,0.14381342,-0.22296324,-0.06327006,0.034142174,0.2082071,0.12743346,-0.4153751,-0.12413774,-0.42266467,0.23042104,0.6455967,0.07693785,0.3144273,-0.09955765,-0.15646024,0.07206986,-0.020427385,0.0010577679,-1.313824,0.33596584,0.18124256,0.63746995,0.30610168,0.13244794,-0.06791653,0.64164263,-0.26458794,0.23251304,0.33343887,-0.11986225,-0.37698954,0.61250556,-0.8367987,0.44029772,-0.0052164514,0.05876945,0.013764886,0.041449904,0.3892681,1.0180379,-0.20537402,0.13383992,0.088266484,-0.38020712,0.17528082,-0.2882429,0.14047973,-0.4679154,-0.3592697,0.6826267,0.34082603,0.5397338,-0.115410954,0.0016006768,0.19195685,-0.20817299,0.12613282,-0.048632864,0.19260646,-0.19730534,-0.46968573,-0.18382506,0.5854216,0.1643975,0.2413936,0.19609271,-0.18682735,0.2818841,-0.19777413,0.0063765724,-0.08601473,-0.556836,-0.22716025,-0.24897034,-0.49515,0.35869014,-0.34348235,0.24097878,0.14256062,0.067352965,-0.23916815,0.5813853,0.3658851,0.7196676,-0.0898498,0.008073028,-0.15420333,0.16565183,0.18330942,-0.12883736,0.06143191,-0.39256462,0.007995278,-0.67407924,0.28132325,-0.12664035,-0.3036685,-0.05316545,-0.025504239,0.18929379,0.5287067,-0.19310325,-0.08187963,-0.009749196,-0.039114773,-0.31590697,-0.28386408,-0.07618405,0.24393658,0.15764324,-0.1096319,-0.086535245,-0.24687372,-0.1768262,0.059061933,0.052420378,0.23376893,0.26026058,0.13707513,-0.30734506,0.024970882,0.0853324,0.44472015,0.15450332,-0.16687225,-0.31821305,-0.23729691,-0.2805276,0.11583209,-0.105753325,0.28086412,0.005523029,-0.26588506,0.8238961,-0.21349144,1.283669,0.17319778,-0.48001805,-0.04830326,0.33723906,0.030435944,0.0813862,-0.20666392,0.9373702,0.5304961,-0.06899156,-0.025022693,-0.4480168,-0.11082913,0.21510509,-0.2207699,-0.21863437,0.034068756,-0.47437117,-0.26748174,0.21324149,-0.14652608,0.24866576,-0.12315379,0.022946903,0.31448337,0.122245386,0.4137994,-0.34366494,0.18144748,0.24285768,0.47488517,0.03479262,0.19118303,-0.47460416,0.4030538,-0.53042525,0.19389854,-0.24511118,0.24566428,-0.19973667,-0.17030858,0.28029355,0.051830392,0.2651776,-0.13907741,-0.40560332,-0.10111,0.6066002,0.039897513,0.10088525,0.83124375,-0.2112008,-0.0022537052,0.003049906,0.37312567,1.0060279,-0.33484256,-0.035449743,0.5453358,-0.24431856,-0.79363257,0.30643,-0.3836401,0.18816288,0.010983435,-0.27543196,-0.24148543,0.26960385,0.2631968,0.19330734,0.09790695,-0.34174284,-0.00020588239,0.23566955,-0.36199084,-0.22376095,-0.24900647,0.1211439,0.46792772,-0.36588493,-0.45637926,0.09061416,0.2317604,-0.13456567,-0.4665785,0.056119807,-0.25242862,0.23179425,0.22292253,-0.28208816,-0.0044079623,0.005695047,-0.3112373,0.02669816,0.17307287,-0.29881114,0.13968942,-0.31476307,-0.114739574,0.78886604,-0.1034111,0.18230683,-0.6224495,-0.55255467,-0.7741305,-0.2707066,0.20105648,0.08289316,-0.09913068,-0.5668132,-0.08780031,-0.10456062,-0.16757737,0.0025968591,-0.5149179,0.4851952,0.13469668,0.2344274,-0.07932099,-0.78191227,-0.048950814,0.19423176,0.02669354,-0.5329076,0.46740702,-0.2081274,0.9253798,0.20052518,0.10671527,0.33410168,-0.44967607,0.28893146,-0.24823596,-0.17636825,-0.55781925,-0.06939951,73 -134,0.47032753,-0.11759587,-0.57269514,-0.16626048,-0.35103017,0.06914552,-0.34301487,0.42992598,0.25647262,-0.46065274,-0.1484929,0.0017737865,-0.13151376,0.20699674,-0.20636441,-0.60537905,0.13386698,0.08299481,-0.61332107,0.72813183,-0.37246037,0.19727112,-0.06462465,0.42073718,0.098831706,0.18318614,0.26082507,0.023598926,0.12420856,-0.24669962,-0.012757829,0.07360046,-0.72270405,0.32239208,-0.35589364,-0.35260364,-0.10819815,-0.33771357,-0.31788152,-0.7049483,0.21603225,-0.5838982,0.5882387,0.08145067,-0.27695018,0.09243536,0.24346028,0.31113365,-0.41042617,-0.018357148,0.09406796,-0.026489075,-0.12444636,-0.2736182,-0.13100712,-0.4569835,-0.50173366,-0.0448843,-0.50068897,0.056807358,-0.4021552,0.26027068,-0.22349499,-0.09795867,-0.1751114,0.52557296,-0.44184512,0.18643656,0.10517391,-0.096113734,0.057896256,-0.7378671,-0.22085108,-0.20033558,0.2316355,-0.10026766,-0.30530894,0.34878984,0.041158922,0.41372254,0.012294718,-0.07771217,-0.37487024,-0.3991123,0.17857529,0.42559353,-0.15853916,-0.5533308,-0.08397651,-0.052137297,0.21176347,0.13591178,0.13548476,-0.2661928,0.015975513,-0.16718082,-0.24438709,0.563258,0.5655062,-0.3596734,-0.1770044,0.24725412,0.48525846,0.32655638,-0.17039016,-0.09178796,-0.1090611,-0.59218925,-0.31124544,0.027233744,-0.093971364,0.32257804,-0.10636543,0.29420766,0.4737803,-0.09665442,-0.091587394,0.23659006,-0.0030478477,0.15572308,-0.38553852,-0.36471623,0.31145033,-0.55091196,0.2355226,-0.31736055,0.5645647,0.026016312,-0.62782836,0.21640517,-0.5043663,0.094341345,0.08689353,0.40386,0.7157926,0.4273767,0.17378362,0.7786182,-0.21343355,-0.00061590475,-0.21998374,-0.12182077,-0.07711004,-0.003811717,-0.038778786,-0.4074177,0.19560575,-0.06617406,0.14863151,0.11808852,0.37486362,-0.444583,-0.19156332,0.14298931,0.7470562,-0.26545674,-0.0010873239,0.8084499,0.9738311,1.1126431,0.054046493,1.2195374,0.038644634,-0.22002539,-0.059042357,-0.041626748,-0.8518439,0.36262342,0.36375803,0.35136503,0.2508294,0.008696007,-0.090275005,0.34934866,-0.31287327,-0.13371976,-0.15486422,0.4290643,0.23298086,-0.12525497,-0.21815684,-0.32275078,-0.010977086,-0.11337146,0.1434111,0.25123367,-0.27523857,0.3344243,0.10782306,1.0979589,0.02131889,0.056557003,0.21428987,0.48072115,0.3519964,-0.025341064,-0.018755633,0.28335017,0.2803536,0.04131906,-0.6809255,0.10319196,-0.31985363,-0.5317377,-0.04453039,-0.41327018,-0.25740576,-0.09489851,-0.34437522,-0.22957897,-0.21519779,-0.047816213,0.4183674,-2.8018198,-0.20988266,-0.17306252,0.31692448,-0.1712756,-0.3029155,-0.20513152,-0.43288803,0.5900978,0.25274435,0.5342814,-0.31440872,0.40941325,0.49007398,-0.5458622,-0.1347917,-0.5999386,-0.13432546,0.031170337,0.4266582,7.398128e-05,-0.1455871,-0.07406274,0.22577928,0.58451754,-0.034796905,0.16714223,0.37645873,0.432682,-0.23071738,0.39986452,-0.03409246,0.45639712,-0.6054117,-0.16549262,0.28420264,-0.43801197,0.2887702,-0.1497085,0.01077347,0.61483514,-0.5680276,-0.8457795,-0.5420069,-0.00080729724,1.0536932,-0.21882465,-0.40719312,0.08348677,-0.47969347,-0.12556864,-0.124772385,0.46178803,0.026565393,0.01845913,-0.6377118,0.047680475,-0.1996112,0.28332248,-0.081941985,0.033147935,-0.49900427,0.7476699,-0.0782931,0.63060844,0.30214435,0.2952349,-0.4472414,-0.3485332,0.031956445,0.7370061,0.45184496,0.14847656,-0.24089012,-0.18043388,-0.2846693,-0.050337695,0.119263284,0.8917416,0.44404334,-0.060512803,0.14277267,0.228763,-0.001409785,0.14928064,-0.22172089,-0.20852539,-0.3630846,0.17461203,0.63329494,0.5986417,-0.15433922,0.16457735,0.08367648,0.24636817,-0.39350426,-0.34409297,0.4084821,0.99844784,-0.21232605,-0.35511974,0.6715939,0.54885864,-0.14715488,0.53312343,-0.6200651,-0.5118838,0.4912363,-0.12893362,-0.3795826,-0.0015791734,-0.40573707,0.06618095,-0.6930554,0.20409097,-0.59559476,-0.43524882,-0.64038813,-0.30578184,-2.4594946,0.26472872,-0.1897954,0.0037021567,-0.40091822,-0.32682723,0.100869745,-0.44993055,-0.58797896,0.21618152,0.08146208,0.717368,-0.19470246,0.14373024,-0.18496756,-0.45889047,-0.287761,0.18404497,0.25008506,0.34111196,0.0214758,-0.3006337,-0.058113057,0.0073777926,-0.3662817,0.0040410715,-0.41922003,-0.22647327,0.0038877726,-0.29527912,-0.07453026,0.5799888,-0.47867188,0.035097864,-0.22302924,-0.018230239,0.027912999,0.37508658,0.12335418,0.20807685,0.07268949,-0.15630819,0.012740948,-0.34376985,0.35380352,0.05610586,0.30279976,0.39495197,-0.21512724,0.10889213,0.36003366,0.64643747,-0.064465605,0.8004373,0.25604874,-0.098231696,0.5143186,-0.21163663,-0.4527523,-0.47641706,-0.19085261,0.112304725,-0.31858426,-0.38444236,0.009789085,-0.34307638,-0.71705663,0.4170315,0.06925653,0.07917735,-0.045538757,0.29619554,0.30270308,-0.17657185,-0.086386666,0.011287731,-0.098066375,-0.42286852,-0.32788676,-0.574644,-0.35645962,0.022143293,0.9581274,-0.20939814,-0.095300816,0.18296562,-0.13379021,0.047285784,0.34467107,0.027908,0.1926686,0.39044672,0.029015625,-0.52659696,0.53705883,-0.05538301,-0.31249923,-0.34795657,0.2924729,0.5673451,-0.5266803,0.48236644,0.38951525,0.11150352,-0.24738048,-0.66658485,-0.12611103,0.01957554,-0.25407222,0.3736413,0.2680434,-0.76274234,0.40465507,0.22903304,-0.1661752,-0.7545224,0.70124525,0.07136181,-0.31777808,-0.13259946,0.41680428,0.17863826,0.050352715,-0.12233973,0.25792065,-0.23577635,0.30403158,0.053218234,-0.069387235,0.14929408,-0.27104214,-0.25133058,-0.60694766,-0.017785458,-0.5482121,-0.34992653,0.37413007,0.007933792,0.01524488,0.14996545,0.07689378,0.3969289,-0.3665856,0.1157667,-0.28187543,-0.25741005,0.45053875,0.42226207,0.4914194,-0.41334736,0.64121765,0.05413951,-0.07422759,0.15748866,0.22123092,0.39774257,-0.13839394,0.63306075,-0.11824322,-0.06402684,0.13747868,0.6264323,0.23853374,0.16001874,0.041746773,-0.113556825,0.2475552,0.106067374,0.19982399,0.02801447,-0.4177756,-0.0127549255,-0.15397245,0.081884526,0.5016016,0.13230027,0.1805528,0.053756755,-0.03875002,-0.084695734,0.26283187,-0.13371538,-1.3903751,0.39170313,0.10029721,1.0099186,0.56479293,-0.036515824,-0.014037562,0.6834316,-0.019528683,-0.028218377,0.3341003,0.21364945,-0.24607235,0.45966613,-0.44958833,0.6331951,-0.16073847,0.048515785,-0.038441956,-0.043214306,0.38481387,0.85548997,-0.14569113,0.065316826,0.066126265,-0.30497786,0.2516925,-0.29516697,0.089687854,-0.38697988,-0.18139505,0.7414938,0.42170206,0.31114367,-0.21641919,0.044716205,0.06414331,-0.21065022,0.2502381,0.020653328,0.055207912,-0.104867786,-0.5591406,-0.12266689,0.4957905,-0.20573838,0.11230745,0.18099381,-0.16676189,0.2165263,-0.00011035601,0.08856638,-0.036743045,-0.62309843,0.046413645,-0.33691564,-0.15544036,0.37639138,-0.17664398,0.15165757,0.34362364,0.054147758,-0.24109888,0.35289803,-0.08895278,0.55015314,-0.026088795,0.026137726,-0.35249218,0.19666405,0.15487382,-0.18749984,0.12912875,-0.32118708,0.15384087,-0.7376384,0.37144566,0.0276516,-0.28414065,0.20934907,-0.056523934,-0.11116209,0.49689344,-0.07706961,-0.14176542,0.13479455,-0.09471583,-0.050067488,-0.26269656,-0.20657307,0.30509087,-0.020374736,0.1512492,-0.15877667,-0.10934635,-0.009309506,0.46668965,0.05060047,0.33284786,0.26962525,0.24523564,-0.4795088,0.10142108,0.097484805,0.61033314,0.025200808,-0.0006962299,-0.1519408,-0.5752188,-0.33535424,0.4431416,-0.19832392,0.2207735,0.19916992,-0.30758688,0.61170477,-0.046120394,1.0997175,-0.033510935,-0.43646497,0.09662148,0.63398486,-0.10888188,-0.051227402,-0.29981214,0.830408,0.427623,-0.12346018,-0.06363125,-0.21761416,0.033484712,-0.09541022,-0.3787385,-0.070162416,-0.06746515,-0.4040101,-0.19083674,0.06850844,0.0733263,0.11073809,-0.20723362,-0.18129879,0.244046,0.034885343,0.28692225,-0.5751064,-0.059766483,0.35271823,0.19664939,-0.044890147,0.08616907,-0.39815503,0.3308784,-0.6390615,0.04256626,-0.34787673,0.18297146,-0.29164925,-0.3415774,0.2602678,-0.048703022,0.26886457,-0.4144469,-0.39629364,-0.13542674,0.29340822,0.2190753,0.22788954,0.5499076,-0.20335627,-0.06846772,-0.052416228,0.5407275,0.80831605,-0.23977186,-0.1599371,0.22408561,-0.49737218,-0.5423208,0.0828121,-0.6073325,0.11463143,0.059098322,-0.14598729,-0.3970775,0.2945069,0.10911963,0.17848821,-0.055442892,-0.94369143,-0.28123638,0.26084295,-0.25195062,-0.18111339,-0.36530113,0.13583857,0.65505636,-0.23580487,-0.13615227,0.06759439,0.17642514,-0.14385012,-0.76546645,0.17345232,-0.43087548,0.36821467,0.21930571,-0.20509349,-0.16719942,-0.027606042,-0.58043534,0.16920887,0.1726778,-0.20121646,-0.02527628,-0.37018442,-0.022496456,0.7529263,-0.13048616,0.26116276,-0.23134686,-0.48646373,-0.8432947,-0.14151031,0.18910207,0.14518146,0.03898566,-0.70153433,-0.17388992,-0.10938809,-0.19926517,-0.051889036,-0.33207455,0.4166763,0.15805082,0.43184206,-0.10471546,-0.91560054,0.25713524,0.15103267,-0.21823867,-0.3913039,0.33319083,-0.034160785,0.7645814,0.18198211,-0.027785324,0.16900612,-0.7660204,0.12075761,-0.21486963,0.043703537,-0.5334193,0.17810939,77 -135,0.37189656,-0.036523532,-0.37717,-0.11445549,-0.15798381,0.22181176,-0.1258109,0.4033675,0.17264992,-0.30715314,0.0051971017,-0.05515442,-0.09521823,0.14846016,-0.06330712,-0.5789751,-0.055605005,-0.042321514,-0.35184753,0.47701535,-0.43084088,0.23838589,-0.26035193,0.28725937,-0.019834237,0.39640254,0.026089685,-0.054539,0.16400932,-0.0830456,-0.060090985,0.24181078,-0.40838608,0.27561292,-0.080734245,-0.09726562,0.09043495,-0.18129008,-0.31919172,-0.5176227,0.10364623,-0.6213406,0.4181438,0.0956831,-0.35812524,0.25541946,0.1274902,0.25369632,-0.2608705,0.10791136,-0.008650061,-0.014743058,-0.03601098,-0.21313287,-0.18563172,-0.6243211,-0.4400659,-0.025741922,-0.5232773,-0.1178887,-0.061683852,0.087701365,-0.16820237,-0.16155934,0.069616236,0.25316572,-0.4016843,0.11762188,0.27668953,-0.14278024,0.25955048,-0.5922006,0.03796668,-0.043771632,0.3048557,-0.05550553,-0.24297015,0.13969775,0.27953294,0.3800802,0.009165705,-0.14837855,-0.19415717,-0.23612073,0.19846849,0.3648814,-0.18237111,-0.31337687,-0.23373483,-0.05753108,0.02821186,0.38043112,-0.00402536,-0.2681999,-0.051143624,0.02685775,-0.07894714,0.2763032,0.41865477,-0.49289075,-0.347643,0.44640863,0.69932574,0.20560281,-0.110269055,-0.014132389,0.07042198,-0.41888908,-0.19098005,0.17290238,-0.069314815,0.3296874,-0.084900066,0.016830083,0.47593355,-0.24535123,0.08650472,-0.04550048,-0.05174845,-0.061012726,-0.44513923,-0.027263395,0.15416436,-0.4983031,0.09342659,-0.0534399,0.53264815,0.1126962,-0.5101927,0.22828466,-0.4558429,0.050219517,0.0051175593,0.47126848,0.71693027,0.36598718,0.029711245,0.8179493,-0.4024881,0.038573228,-0.27864262,-0.1119627,0.22866504,-0.13464294,-0.13856669,-0.50953496,0.21436208,0.19597705,0.032575678,0.07992547,0.1446118,-0.5705731,-0.10715068,0.28687662,0.6623438,-0.2894867,-0.08418026,0.506309,1.0956721,0.71309626,0.06894563,1.0811081,0.12924543,-0.1749486,0.24442454,-0.30668432,-0.6271551,0.13874987,0.32814917,0.11739953,0.28516787,0.1052214,0.036736917,0.2860632,-0.32278374,0.00993704,-0.09426441,0.4402111,0.16088845,0.0041090646,-0.28994936,-0.097746536,0.011478512,-0.07524475,0.2869296,0.1630295,-0.2952774,0.03650588,0.110107966,1.2686327,-0.17371848,0.29440174,0.11113507,0.28942245,0.29234067,-0.2275169,-0.017260032,0.47051606,0.21440691,0.17985101,-0.4981434,0.115830675,-0.15278696,-0.4774628,-0.18823105,-0.31553376,-0.079638295,0.002878221,-0.29098886,-0.09534,-0.027521668,-0.29559505,0.6439477,-3.0892668,-0.08853113,-0.26432207,0.2492533,-0.2917328,-0.2416375,-0.3063203,-0.31643328,0.36448574,0.41592205,0.31759357,-0.47265258,0.17896405,0.3876996,-0.48750558,-0.12762624,-0.49797752,0.010317111,-0.11456498,0.36585847,0.046369378,-0.123103715,-0.037834737,0.22396253,0.4119462,-0.0060552596,0.16150858,0.2045878,0.27371547,-0.08427843,0.35405844,-0.017570699,0.49296686,-0.21615893,-0.20534793,0.27643546,-0.38144016,0.39186576,-0.0141905835,0.1800388,0.3353657,-0.35239246,-0.8194996,-0.66424334,-0.26375613,1.174092,-0.24902073,-0.40508243,0.24272594,-0.48447368,-0.3177314,-0.12475642,0.47872868,-0.013562481,-0.05516074,-0.6920697,0.2154359,-0.13220273,0.23738521,0.0076972665,-0.002324291,-0.3868011,0.6141908,-0.059599835,0.43270662,0.2686061,0.09831098,-0.18330346,-0.3937231,-0.048552345,0.8094457,0.4621454,0.032286774,-0.034388937,-0.21530621,-0.31090742,-0.029310448,0.20669915,0.46427652,0.59355944,-0.07531044,0.07860977,0.21928644,-0.05012404,0.010185978,0.017872978,-0.21237797,-0.021028044,-0.051034555,0.598133,0.45399335,-0.19409929,0.2906465,-0.015852682,0.2177913,-0.24710867,-0.37677887,0.38395512,0.6367837,-0.20817754,-0.28447494,0.63402635,0.60215265,-0.17543408,0.29917446,-0.64825875,-0.21651742,0.3743245,-0.19613673,-0.32980317,0.07094383,-0.39167064,0.14062938,-0.70311075,0.2627016,-0.23518422,-0.4648637,-0.6369006,-0.24417813,-3.407092,0.14256497,-0.12418004,-0.083448984,-0.12723194,-0.018279335,0.44505933,-0.44176447,-0.42903718,0.2652916,0.025170539,0.52013665,-0.060323477,-0.032674875,-0.3467463,-0.28915274,-0.29336175,0.24244298,0.06566818,0.27142948,-0.09421737,-0.3003965,0.018260878,-0.016225075,-0.3051292,0.05980305,-0.4315646,-0.34337774,-0.12438424,-0.43967783,-0.038359635,0.7462973,-0.44676015,-0.002818356,-0.29581815,0.04055241,-0.012047456,0.18452969,0.13780592,-0.012778512,0.14693485,-0.02543525,-0.11904286,-0.40567076,0.32438692,0.14360356,0.22251335,0.3687048,-0.08756472,0.0982391,0.48840237,0.51480424,-0.08962444,0.85232806,0.4315106,-0.070174575,0.32076588,-0.24981579,-0.11676253,-0.3136333,-0.39068586,-0.12861498,-0.5124143,-0.48476335,-0.12596984,-0.25803378,-0.66570824,0.4039682,-0.003722304,0.24318549,-0.049656276,0.2945027,0.4506966,-0.22865997,0.06963302,-0.0012874941,-0.17956784,-0.36849442,-0.3286648,-0.40138072,-0.39976114,0.39086908,1.0056177,-0.3793253,0.0059524854,0.066764615,-0.21588595,-0.041677877,0.031156225,0.026972735,0.080257565,0.3416996,0.111924365,-0.41932875,0.41309774,-0.13511075,-0.27651122,-0.72527623,0.14364663,0.5783502,-0.63305324,0.51467925,0.3093342,0.13142772,-0.17241043,-0.48422182,-0.018934933,0.020035572,-0.29807433,0.3736314,0.23704529,-0.8041958,0.39744744,0.13366087,-0.11309963,-0.6246277,0.53204143,-0.10242108,-0.17170177,0.046386838,0.43854168,0.3188285,-0.011320984,-0.06953438,0.30769053,-0.484666,0.13890778,0.2576709,-0.050401963,0.6074726,-0.14453143,-0.18514639,-0.68475187,-0.25827974,-0.54237443,-0.2437764,0.3618893,0.01953658,0.069734015,0.23560013,-0.0032484294,0.42311615,-0.2722211,0.20145722,-0.041261606,-0.27681193,0.33367157,0.3537499,0.48539415,-0.27834496,0.44454306,0.052019987,0.0917841,-0.093615636,0.17734885,0.47968146,-0.09876121,0.4572285,-0.13838322,-0.110994495,0.24862213,0.7800658,0.062333364,0.22929072,0.01583012,-0.13716322,0.25267118,0.012837988,0.05213098,-0.007385417,-0.47180757,-0.022063788,-0.035909668,0.28676564,0.3214442,0.1800819,0.34400335,-0.027361117,-0.1460125,0.03087439,0.27889913,0.07214641,-1.0103801,0.30630353,0.12206628,0.67447007,0.40590763,0.10791885,0.09211705,0.43153623,-0.11384409,0.09516346,0.30421486,-0.011609729,-0.3368097,0.42638636,-0.7373856,0.6026351,-0.07627252,-0.059913658,0.046384733,-0.0091436105,0.5064321,0.9057966,-0.072598316,0.02449559,0.04142149,-0.21281268,0.1578998,-0.18270163,0.05073191,-0.4642772,-0.35554615,0.5532376,0.4343024,0.42863494,-0.2464769,-0.051246595,0.15769069,-0.066617504,0.074845165,-0.17795835,0.028010914,0.038626354,-0.599294,-0.27226707,0.37690338,-0.08705793,0.11219016,0.033567324,-0.23732719,0.1398213,-0.050601084,-0.0077869957,0.025909867,-0.4204392,-0.03592881,-0.17171447,-0.5534181,0.53139764,-0.36876336,0.21598521,0.15186474,0.022758195,-0.19589578,0.359463,0.018927677,0.7403373,-0.04685287,-0.11312071,-0.60931146,0.17241389,0.1335337,-0.2556941,-0.10942985,-0.3672672,0.18366759,-0.6744264,0.2793257,-0.1918518,-0.4249035,0.20765957,-0.25802982,0.06237878,0.49566936,-0.12684679,-0.17748566,-0.03482445,-0.4010093,-0.26288283,-0.14554143,-0.22229512,0.2550949,0.062773,0.050765578,-0.025432596,-0.26142484,-0.12535633,0.087793395,0.2727328,0.22754414,0.29090977,0.07288494,-0.15009204,-0.024210548,0.18950006,0.31732187,-0.16180044,-0.039596137,-0.05416423,-0.5132717,-0.45664874,0.11686865,-0.048567608,0.32901832,0.047803465,-0.27079573,0.5717132,-0.12296891,1.0304745,0.11621283,-0.27303654,-0.023714732,0.43272257,-0.031079466,-0.08165034,-0.305185,0.86345327,0.59128636,-0.07303017,-0.12919159,-0.13271487,-0.15540713,0.24147098,-0.19588709,-0.06327285,-0.034894533,-0.5675584,-0.24012633,0.16128871,0.20694415,0.20892814,-0.06944787,-0.11555693,0.0010278065,0.066167444,0.24253957,-0.45387703,0.006660406,0.3171893,0.34634525,0.028832415,0.19926907,-0.23928724,0.37977654,-0.54581136,0.025596919,-0.33415127,0.1536989,-0.20540968,-0.3044588,0.17604448,-0.12502177,0.39521995,-0.243356,-0.32585227,-0.20270042,0.3884385,0.17416523,0.10086049,0.5146193,-0.09867195,-0.01225971,0.042397548,0.5077364,0.92562383,-0.20427059,-0.062262848,0.21662779,-0.28009433,-0.54633975,0.21006083,-0.5398126,0.2149245,-0.007866081,-0.30804786,-0.222498,0.3324506,0.19796467,0.16936661,-0.08395108,-0.66492075,-0.11711743,-0.013408112,-0.22273152,-0.15944356,-0.123971954,0.18989778,0.77960575,-0.23654342,-0.28943932,0.06456258,0.32558793,-0.277404,-0.5868441,0.07466374,-0.37538254,0.19181521,0.1410443,-0.3022409,-0.03486669,-0.035267066,-0.39600593,0.028230023,-0.012580955,-0.3672376,0.065464936,-0.23819886,0.09444412,0.7266895,-0.07794738,0.25306568,-0.5382383,-0.38474366,-0.7454494,-0.29326248,0.20887747,0.23423281,0.042137288,-0.31792253,0.06451821,-0.15148121,0.03740643,0.021272827,-0.31419277,0.43687165,0.07886098,0.40739813,-0.1258544,-0.83020157,0.07940633,0.15161684,-0.18329641,-0.5383269,0.49410564,-0.18946268,0.77601755,0.102484606,0.011028956,0.27536204,-0.48410815,0.12293291,-0.28373623,-0.082322374,-0.8216193,0.08416775,79 -136,0.5072425,-0.3658976,-0.64852005,-0.08260037,-0.17938274,0.10638401,-0.26505342,0.5282467,0.19672921,-0.5412748,-0.10099265,-0.15182495,0.038702585,0.32294503,-0.19811009,-0.63170344,-0.10893496,0.08492153,-0.580549,0.45099753,-0.309923,0.3166247,0.09317418,0.36938503,0.33117387,0.3547723,0.03419962,-0.047948968,-0.4129705,-0.18412504,0.14297836,0.09317341,-0.524105,0.08416819,-0.18651004,-0.44048604,-0.09627066,-0.47050363,-0.27688026,-0.74570274,0.33804518,-0.8597698,0.44561407,-0.15685914,-0.37152883,0.14114851,0.016171329,0.56887156,-0.0761933,0.005113061,0.20120093,-0.12837164,-0.076891646,-0.12944108,-0.22953619,-0.3438613,-0.5287892,0.07440588,-0.34942982,-0.16113481,-0.039702095,0.09677089,-0.37274265,0.12453647,-0.07869032,0.4972306,-0.45778134,-0.11498766,0.28804848,-0.12645206,0.4156109,-0.5303722,-0.16330287,-0.17434289,0.17309402,-0.23111407,-0.15336984,0.2540749,0.28140843,0.41722926,0.049916252,-0.17497267,-0.42698878,0.01889968,0.2891911,0.43286297,-0.035268977,-0.3943302,-0.28124183,-0.0682253,0.22343014,0.09917943,0.23129956,-0.28578433,-0.061996676,0.0029292663,-0.34218243,0.34257305,0.43563515,-0.1637978,0.028915185,0.2734265,0.6302149,0.19552632,-0.19376603,-0.06673034,0.104940675,-0.42550707,-0.12253844,0.25626022,-0.13966073,0.4565531,-0.15312657,0.22613226,0.61570907,-0.2616186,0.043946497,0.062803246,0.0050840457,-0.17712711,-0.16491827,-0.30539715,0.28603932,-0.5499638,0.05887754,-0.39528206,0.67775697,0.19266771,-0.7178041,0.3240139,-0.5445248,0.08868041,-0.14445254,0.3814167,0.60621136,0.50893605,0.10307939,0.5817019,-0.43889868,0.0961697,-0.19416939,-0.31757122,0.05055189,-0.28303114,-0.024360832,-0.41924506,-0.015501508,-0.105911456,-0.19305891,0.02181549,0.35235834,-0.45294815,-0.068799295,-0.055391867,0.83004284,-0.27155158,0.0035300096,0.81852305,0.85657805,0.99492174,0.002729696,1.1940029,0.22044775,-0.29279646,0.15249316,-0.25841525,-0.59475887,0.4408355,0.2787405,-0.3230506,0.33912227,-0.09580953,0.13189307,0.5379572,-0.23107694,0.25724855,-0.23424838,0.03220507,0.085146815,-0.060841274,-0.37543276,-0.2478166,0.0030176998,0.03566587,0.049274944,0.20333262,-0.104118414,0.5925522,0.024345452,1.7004315,-0.15436932,0.11524057,0.04153878,0.30522472,0.101100355,-0.21489273,-0.1345346,0.03189771,0.19002597,0.08185882,-0.50364536,0.029987983,-0.15992735,-0.3528051,-0.22371219,-0.24825004,-0.0068080346,-0.20548026,-0.60799843,-0.04694934,-0.12728162,-0.2212297,0.31530765,-2.5300505,-0.31862104,-0.11909624,0.18893798,-0.46569103,-0.48763138,-0.118341684,-0.45028698,0.4433661,0.22760111,0.541659,-0.6307556,0.41761893,0.44809732,-0.51566887,-0.034365598,-0.54100484,-0.18932928,0.056384552,0.19998632,-0.006687464,-0.1362482,0.062574275,0.11597844,0.43214694,-0.23390089,0.060483873,0.20451637,0.2747825,0.013688871,0.5273493,0.051202282,0.5826609,-0.45878258,-0.23445514,0.3432954,-0.37711373,0.20617837,0.047183886,0.22837442,0.46717772,-0.48748866,-0.7839264,-0.7171425,-0.26846737,1.1636251,-0.042275675,-0.39760813,0.11870652,-0.31704488,-0.40428898,-0.044585396,0.3062881,0.024914093,0.08620796,-0.93866736,-0.08983936,-0.12900093,0.19630323,0.04752364,0.00090487796,-0.3752718,0.6266844,0.025762754,0.34757006,0.4675547,0.21372901,-0.19539131,-0.44002864,0.085620694,0.92678386,0.36129183,0.29317504,-0.35632852,-0.109264396,-0.5097916,0.07960745,0.08658595,0.37706995,0.64843714,0.016934125,0.010080402,0.1580988,-0.13157605,0.074732274,-0.13297293,-0.32963154,-0.18626592,0.052674692,0.5625979,0.5973806,0.050318763,0.5185701,-0.051495448,0.393227,-0.1611273,-0.5182066,0.558419,0.7914687,-0.21349287,-0.4055391,0.37927178,0.5510982,-0.28593573,0.4382948,-0.52889067,-0.3686674,0.30395275,-0.19168396,-0.55169296,0.33889157,-0.37927967,0.30461305,-1.0326478,0.1149378,-0.552579,-0.2552458,-0.5510197,-0.18441702,-3.0229297,0.23298006,-0.021725496,-0.32729116,-0.026024591,-0.11152277,0.2374796,-0.6217236,-0.7574618,0.10352993,0.0054808045,0.7734733,0.010190391,0.048367795,-0.22121117,-0.16547073,-0.15255155,0.10509269,0.230917,0.23150696,-0.02465625,-0.568146,-0.24205609,-0.28917977,-0.3776792,0.10776583,-0.69405776,-0.62935627,-0.24511696,-0.48171842,-0.38871416,0.5876125,-0.2704954,0.06420842,-0.007467063,0.07954638,-0.046441514,0.40290987,0.052555908,0.121059984,0.18560284,-0.17110136,0.12297765,-0.2362323,0.12446175,0.1808586,0.26019266,0.47233248,-0.21204092,0.3867175,0.5701662,0.9156893,-0.049210824,0.72973025,0.41297728,-0.15995461,0.2924289,-0.3408464,-0.40981787,-0.4608429,-0.14162804,-0.07190568,-0.3680322,-0.44131917,0.026153104,-0.3443286,-0.74268955,0.52595097,0.10163693,-0.11380062,0.065159515,0.12373927,0.4605281,-0.23369725,-0.07900395,-0.055514175,-0.024511179,-0.4519315,-0.39240277,-0.65104324,-0.6398218,-0.03237496,1.1563035,-0.014309003,0.09382558,0.11699698,-0.2889194,0.10044384,0.18484643,-0.038969286,0.023948852,0.3241404,-0.12005364,-0.56504,0.4276744,0.005807789,-0.13130717,-0.5729572,0.19327103,0.77403426,-0.5159824,0.42772827,0.40724862,-0.028913118,-0.18523884,-0.35957125,-0.008884132,-0.0032669762,-0.26468846,0.5098632,0.23671202,-0.5108791,0.27254283,0.3949318,-0.29790413,-0.6362429,0.47160402,0.11339652,-0.119591184,-0.21154395,0.36302418,0.004769639,0.05299944,-0.17480375,0.10173845,-0.41592553,0.09484294,0.40904713,0.012804175,0.24752387,-0.11736871,-0.14587396,-0.6805035,0.06382123,-0.45289657,-0.13568728,0.3312991,-0.034230795,0.22520797,0.16729297,0.17176437,0.2957491,-0.28423545,-0.009079565,-0.14359084,-0.2683855,0.3832021,0.41235092,0.46539465,-0.45790374,0.51111454,0.025450507,-0.00014967124,-0.008454565,0.036271587,0.65481925,0.21011995,0.29557213,0.13239056,-0.20983832,0.15739377,0.80043995,0.20518813,0.54994905,0.13449232,-0.22777349,0.061012696,0.16140166,0.18677801,-0.014951853,-0.48217806,0.03382788,-0.06721687,0.0985853,0.32886824,-0.06285413,0.34567377,-0.11222327,-0.3918541,-0.047521226,0.04083967,-0.07812985,-1.3287574,0.40442112,0.23376976,0.795781,0.42795798,0.023204792,0.14536624,0.586374,-0.13427737,0.25359538,0.3349096,-0.09387233,-0.62036884,0.4981926,-0.6965664,0.4270415,0.088625744,0.005567938,0.033393003,-0.10657228,0.5392724,0.70956075,-0.16201405,0.16997972,0.04538356,-0.3624749,0.025035,-0.36402112,-0.06896618,-0.48690188,-0.1922278,0.6744449,0.4618882,0.40516904,-0.17547435,-0.04048248,0.12965408,0.09710924,0.33864644,0.037518024,0.22781709,-0.0060620625,-0.5522302,-0.299826,0.44972458,0.09458634,0.3039333,-0.052699592,-0.22657588,0.22951807,-0.031130785,-0.09429259,-0.18393464,-0.6252383,0.0030503036,-0.5570484,-0.43227214,0.3161182,-0.059575345,0.28041095,0.12995681,0.111293904,-0.37387472,0.5712767,0.0386081,0.80445653,-0.086553015,-0.12991634,-0.19001588,0.27441072,0.32157248,-0.14941907,-0.10228153,-0.1371922,0.10287048,-0.6148891,0.4243618,-0.08129935,-0.39104816,0.14370935,0.051829856,0.10031017,0.511521,-0.26201195,-0.19392858,0.07529887,0.02296765,-0.24561481,-0.26353434,-0.075750336,0.27401552,0.2775559,0.012820447,-0.15792824,0.023685666,0.111251205,0.46325245,-0.045320194,0.47784868,0.49979815,0.09689527,-0.5323843,-0.1453902,0.23554903,0.4933667,-0.04580524,-0.18898776,-0.51564664,-0.36787456,-0.34952354,0.33569488,-0.07692431,0.2567685,0.12914307,-0.32620937,0.8050592,0.018094389,1.1632748,0.024339434,-0.3522152,0.18102542,0.34620205,-0.062874906,-0.07258192,-0.44222745,0.82058877,0.43523833,-0.2305317,-0.07659613,-0.5125516,-0.09347639,-0.037319183,-0.23107538,-0.06753676,-0.07093623,-0.6810207,-0.30785015,0.31855246,0.27655715,0.12804034,-0.2407692,0.17530337,0.22964579,0.018084597,0.213694,-0.47914132,-0.13609533,0.3392046,0.29544133,-0.00083449285,0.13987722,-0.52216494,0.3059961,-0.56236,0.06628557,-0.18760353,0.15112375,0.01726508,-0.3552036,0.2588197,0.018846836,0.21457966,-0.41557497,-0.3639004,-0.24802637,0.5518507,0.1056536,0.18080588,0.5999668,-0.18246715,0.09551463,0.09970123,0.5109788,0.91012585,-0.21988373,0.11909887,0.45116007,-0.19687265,-0.50608927,0.20873909,-0.26058832,0.38921946,-0.09224919,-0.22911477,-0.72230524,0.3197096,0.31698844,-0.085839584,0.041338906,-0.5472735,-0.08882883,0.352457,-0.41079172,-0.3107459,-0.37579003,0.015040477,0.33413452,-0.14033331,-0.32371446,0.14468527,0.31799105,-0.28077048,-0.08284375,-0.10104526,-0.23613328,0.22028944,0.20515491,-0.305579,-0.056315508,0.108307436,-0.47057608,0.098922096,0.08634936,-0.36736143,0.043305222,-0.29357296,-0.056811117,0.8360203,-0.16109058,0.2437091,-0.4693684,-0.47277963,-0.859556,-0.3131279,0.4635688,0.07360809,-0.045387816,-0.68547523,-0.0056704483,-0.09926948,-0.052879356,0.02515127,-0.41621482,0.48806825,0.06554785,0.37686282,-0.13896161,-0.6035864,0.16607997,0.20110743,-0.18423061,-0.56082326,0.4227293,-0.07680818,0.7561812,0.09220084,0.20187964,0.38098133,-0.45583278,-0.05697068,-0.20336924,-0.18725678,-0.5885179,0.0080142375,81 -137,0.41420874,-0.27974936,-0.5270966,-0.057577275,-0.39171666,0.0985528,-0.19486304,0.39386266,0.19371423,-0.48002625,-0.12322618,-0.1498421,0.036908828,0.30919358,-0.16196588,-0.280924,0.005011479,0.2451422,-0.687914,0.5856785,-0.2772897,0.1338412,0.03213586,0.4471649,0.1377876,0.2320089,0.11696403,-0.06075655,-0.15048355,-0.3925134,-0.28219545,0.11786326,-0.5091048,0.27575547,-0.2954382,-0.29038316,-0.035143804,-0.5463976,-0.34977368,-0.76048213,0.25673437,-0.9300169,0.5110521,-0.11139598,-0.27341336,0.17229366,0.2571739,0.32491493,-0.18672495,-0.12988307,0.1757348,-0.28134286,-0.12255171,-0.22646262,-0.18353829,-0.3374898,-0.47986448,-0.07119228,-0.45987898,-0.16519709,-0.3121072,0.146849,-0.32217818,0.10675765,-0.07690468,0.7236961,-0.36257985,0.391734,0.1698846,-0.16781718,0.20885484,-0.6989729,-0.04209428,-0.1677772,0.31321558,-0.090753086,-0.26568422,0.29440242,0.27194712,0.3731139,0.08016075,-0.14426297,-0.23678498,-0.22623186,0.14441161,0.40530598,-0.05719041,-0.5515172,-0.12642747,0.14911836,0.16574351,0.2414838,0.13665749,-0.27020276,-0.08547364,-0.15128438,-0.19502774,0.5254059,0.48100427,-0.20970216,-0.07711841,0.26361448,0.54570526,0.20948829,-0.14577805,-0.08990657,0.003951609,-0.5492927,-0.28384003,0.004749036,-0.16839574,0.48521087,-0.15336698,0.34923893,0.59215224,-0.19032685,-0.25770792,0.11398783,0.06659472,-0.14821154,-0.2190805,-0.21684858,0.19745229,-0.59369475,0.10110934,-0.12462359,0.7098525,0.10503985,-0.59493434,0.16947842,-0.6007277,0.094177015,-0.03751505,0.42607918,0.6712479,0.56815875,0.2056271,0.6573789,-0.26488116,0.13972493,-0.18614693,-0.37469414,-0.05105962,-0.20024982,-0.09726964,-0.5537936,0.019550836,-0.14172404,0.023969078,0.09489254,0.39593416,-0.4244004,-0.13318844,0.12650457,0.9392621,-0.25814256,-0.07322916,0.90723586,0.95564485,0.93041724,0.010380711,1.0741291,0.07854128,-0.24167165,0.010374213,-0.038443826,-0.69439113,0.37117118,0.38147795,-0.06445358,0.1604147,0.09015458,0.030513462,0.39565527,-0.49016038,-0.15246935,-0.22305141,0.115164265,0.19175181,-0.048464026,-0.42894545,-0.24996354,-0.0062009236,0.110805474,0.18591902,0.20287329,-0.0891911,0.70799994,0.04499708,1.4782046,-0.046760283,0.07704648,0.15270843,0.4093014,0.29379368,-0.1810015,-0.09931063,0.36237755,0.2938122,0.24356559,-0.5418756,0.1760184,-0.1714675,-0.44520998,-0.1986215,-0.31198442,-0.16841976,0.010870429,-0.36407477,-0.2755188,-0.2979592,-0.21778177,0.4416367,-2.6764894,-0.11187867,-0.10043941,0.3473264,-0.23461638,-0.2564901,0.07333433,-0.51076615,0.3733893,0.2366165,0.5199806,-0.5634556,0.36460343,0.43326098,-0.6738115,-0.12562199,-0.53675056,-0.1031287,-0.019928435,0.39985096,-0.07049287,-0.12854756,0.048628107,0.13368014,0.65035325,-0.051136248,0.19330803,0.4121248,0.45282847,-0.057902746,0.6349426,-0.06692327,0.4910401,-0.3376568,-0.19004913,0.24809471,-0.14280699,0.23016204,-0.069787405,0.118954286,0.6081974,-0.51391447,-0.8724981,-0.6959298,0.07572206,1.1889324,-0.31696793,-0.57351816,0.21979348,-0.38769487,-0.28368396,-0.06358978,0.47093016,-0.00127636,0.13276632,-0.6714306,0.08019101,0.005761524,0.2675327,0.018037712,-0.20537163,-0.5020725,0.78870517,-0.07493957,0.49518237,0.35864097,0.18892236,-0.38837475,-0.42196515,0.055517457,0.86305976,0.4285628,0.12466355,-0.20834762,-0.20790055,-0.34878814,-0.099271625,0.07813946,0.67005485,0.49780378,-0.074161485,0.24224962,0.269664,-0.04521371,0.11427932,-0.16806558,-0.20773599,-0.19123513,-0.13315918,0.52626723,0.6278713,-0.0044520735,0.60659343,-0.06312408,0.35278538,-0.1536257,-0.5944075,0.5661116,1.1793141,-0.29148388,-0.39774862,0.59524035,0.45392278,-0.11834066,0.31965357,-0.38514563,-0.4219335,0.51665014,-0.14764246,-0.6969513,0.19229737,-0.18891147,0.099532045,-0.8545329,0.17494407,-0.24774148,-0.6854637,-0.63568443,-0.11098453,-3.0415952,0.29714182,-0.3251955,-0.25824437,-0.3056582,-0.25856435,0.0919319,-0.472747,-0.4796931,0.19035257,0.11151654,0.80422235,-0.18876567,0.25153244,-0.23104115,-0.42100954,-0.26207468,0.07203736,0.1929758,0.26506868,-0.13791515,-0.4897352,-0.079101495,0.010605614,-0.42961273,0.00659058,-0.62900037,-0.31362528,-0.18754965,-0.42704365,-0.3024132,0.634934,-0.1736054,0.038235333,-0.22624503,0.12756103,-0.012824804,0.31674257,0.062283278,0.1542545,0.031854816,-0.05599251,0.11675139,-0.28857034,0.34594,0.01754173,0.28961307,0.17495495,-0.13536507,0.22197765,0.4281296,0.673067,-0.09848591,0.8946384,0.3557745,-0.051335033,0.25058717,-0.01298527,-0.4553166,-0.44845322,-0.13293554,0.11911713,-0.39544335,-0.41141206,0.012760725,-0.32273757,-0.8489985,0.6112314,0.06622154,0.06990971,-0.0065580765,0.342099,0.5887691,-0.38875973,-0.08074211,-0.11278479,-0.21602347,-0.51958853,-0.25735483,-0.59598273,-0.4104384,-0.1252279,1.0774473,-0.23108386,0.085431054,-0.043109704,-0.30394676,0.10816054,0.14022039,0.014452988,0.23401721,0.5182289,-0.18117765,-0.7362034,0.57735676,-0.23205242,-0.2140039,-0.6035227,0.43536958,0.66377485,-0.5731192,0.50176513,0.38952544,0.028106872,-0.34736067,-0.4624492,-0.05401847,-0.14525346,-0.2714283,0.3818237,0.2002335,-0.76276207,0.46954882,0.33183548,-0.19832698,-0.74874383,0.50577784,0.0022541105,-0.3464604,0.048843298,0.31777325,0.19817019,-0.084142014,-0.34921697,0.14347626,-0.353533,0.32995006,-0.041755475,-0.16725962,0.16475032,-0.24980752,-0.23037955,-0.7196614,0.016043102,-0.57029724,-0.2607694,0.3160217,0.10015877,-0.024508577,0.25669882,-0.0031227907,0.37574828,-0.31129602,0.034008123,-0.22737534,-0.22592792,0.33275133,0.4653874,0.44922963,-0.4562841,0.72742844,0.1033491,-0.15784496,0.022618754,0.17286949,0.38181964,0.14783154,0.6288766,-0.010391688,-0.11650387,0.25906983,0.6363865,0.14211649,0.4300732,0.055507865,-0.059926152,0.17453831,0.06094826,0.2894097,0.06658185,-0.7415937,0.030948253,-0.40560997,0.104990646,0.5036578,0.08897953,0.35140228,-0.026618497,-0.3684293,0.002396672,0.079239585,0.023105705,-1.4347513,0.3163578,0.28603584,0.94456404,0.30388457,0.07232679,0.005174885,0.9007786,-0.14821921,0.01673893,0.23103374,0.16541265,-0.29862526,0.5202902,-0.8547982,0.47544768,-0.010586963,-0.09476168,0.05211117,-0.13159695,0.35974684,0.9083798,-0.13435236,0.013691334,-0.020307887,-0.387651,0.19645816,-0.49770486,0.053088687,-0.54291713,-0.40148017,0.6223317,0.4539161,0.3913613,-0.28499362,0.0145843625,0.16821623,-0.19122744,0.12462668,0.18961708,0.13186435,-0.13049738,-0.7031642,-0.05353803,0.49712142,0.015390378,0.28726447,0.08366615,-0.07655967,0.28192568,-0.10357663,-0.060847513,-0.08006088,-0.596085,0.06684343,-0.28765365,-0.4501222,0.39023933,-0.2499447,0.16220742,0.21069056,0.0015061438,-0.22035758,0.40272808,-0.013576571,0.826267,0.16829588,-0.04577375,-0.29044282,0.13859108,0.06464608,-0.1718092,0.06588959,-0.2088144,-0.045055132,-0.5799816,0.4026559,-0.17306967,-0.29467052,0.17839834,-0.16376455,0.05626773,0.5042953,-0.060333345,-0.031225089,0.035273936,-0.062563956,-0.26209316,-0.3712675,-0.060565032,0.28469867,0.2339745,0.12382946,-0.05488003,-0.040360052,-0.23828039,0.41487673,-0.03385853,0.55105025,0.28482893,-0.01035914,-0.4102207,-0.15969871,0.050399594,0.60903764,-0.11549787,-0.10650538,-0.30834234,-0.45039564,-0.28427702,0.039619997,0.03380561,0.25689378,0.021686962,-0.07205956,0.801562,-0.12195086,1.1495228,-0.0439199,-0.43100995,0.20937008,0.4721336,0.03856606,-0.013737705,-0.2771076,0.8573398,0.45341483,-0.022125328,-0.05775019,-0.4032826,0.12594181,0.14417258,-0.1837595,-0.24836849,-0.023196196,-0.44728297,-0.3004497,0.24792224,0.28602618,0.23537788,-0.12565778,0.05258546,0.46021497,-0.09161997,0.30591747,-0.5218448,-0.20511553,0.32232597,0.19606476,-0.0063251695,0.10880898,-0.51008296,0.38486403,-0.42771757,0.023259556,-0.19832096,0.19886754,-0.2871012,-0.18849991,0.2820458,0.03307325,0.35132775,-0.40550163,-0.236864,-0.30465043,0.49167174,0.3282196,0.14105366,0.54772097,-0.27053124,-0.02569725,0.05245154,0.44384667,0.72985005,-0.30092752,-0.058909725,0.39397806,-0.40981025,-0.46787256,0.446612,-0.36849064,0.0115879215,0.2086599,-0.12812431,-0.47624117,0.3433089,0.16778159,0.18598029,-0.024001356,-0.80663884,-0.014405612,0.37111154,-0.30549178,-0.18133119,-0.2740737,0.18528138,0.41788048,-0.07893287,-0.29773846,-0.0048763594,0.19437763,-0.03188677,-0.5637887,-0.11992476,-0.37766477,0.18446802,-0.080462284,-0.2585135,-0.22481337,-0.0012317201,-0.52195424,0.09836986,-0.07553817,-0.24264212,0.087500885,-0.18552354,-0.061981745,0.76812184,-0.33646834,0.09798553,-0.47220427,-0.47390258,-0.67025703,-0.27627963,0.31948662,0.051161256,0.09978245,-0.74382234,-0.087960504,-0.20207328,-0.26813272,-0.10720413,-0.46525913,0.38522908,0.067466974,0.33028418,-0.054514907,-0.7219676,0.43506008,0.042653166,-0.0957123,-0.5911731,0.51907176,0.026214957,0.81361973,-0.004415713,0.14103016,0.2825853,-0.5116668,0.02824824,-0.20166971,-0.27784353,-0.6620684,-0.059356563,93 -138,0.36999068,-0.1884877,-0.43149695,-0.1429296,-0.27352878,0.015251493,-0.06810074,0.36876985,0.29973993,-0.18357147,-0.088573016,-0.21211568,0.049550377,0.30406502,-0.081771016,-0.66513973,-0.13488083,0.11061971,-0.4829978,0.42071632,-0.5750509,0.40348947,0.0012497246,0.3468278,0.04474179,0.3884086,0.17332943,-0.1804517,0.06836931,-0.106493406,-0.28666118,0.35398236,-0.4434133,0.039581284,-0.15743016,-0.2076524,0.17232084,-0.40119582,-0.32447207,-0.6751583,0.1346384,-0.8842767,0.5624692,-0.052570544,-0.068947665,0.08525896,0.16996232,0.2949328,-0.37334403,-0.018347597,0.2617075,-0.13732332,0.030469673,-0.33478266,-0.09142256,-0.32104194,-0.39245644,-0.013916981,-0.5025779,-0.32972223,-0.046332326,0.17440195,-0.3617964,-0.101058535,-0.101323344,0.2152061,-0.41233405,0.20344439,0.39832094,-0.27164608,0.26232764,-0.45957288,0.0046383156,-0.032576498,0.38761953,-0.13728014,-0.117573336,0.39008936,0.36531734,0.3237892,0.19848005,-0.2878502,-0.1347819,-0.2683681,-0.014083457,0.5478504,-0.19625948,-0.39286515,-0.1479955,0.18414968,0.20154282,0.33987448,0.05523892,-0.1325003,-0.20841318,-0.18384627,-0.24954475,0.47135028,0.46356755,-0.34006944,-0.27068108,0.2857388,0.5379885,0.31114239,-0.19017534,0.062566854,-0.012747826,-0.50834477,-0.14835475,-0.02107238,-0.11378813,0.553525,-0.10325429,0.18891732,0.9240283,-0.101354994,0.0919632,-0.040440954,0.029829752,-0.22362725,-0.32357553,-0.049265847,0.13740298,-0.5540549,0.122115724,-0.113836095,0.7744511,0.13835046,-0.6120059,0.3753482,-0.578725,0.14532545,-0.105144136,0.5798508,0.42557326,0.31289938,0.48815396,0.72400934,-0.432439,0.19816151,0.082151204,-0.51065755,0.1305139,-0.2586536,-0.06312737,-0.53140473,0.26006457,0.019747138,0.20263419,0.14361759,0.10242021,-0.6085482,-0.0090640765,0.25199273,0.82130057,-0.2918987,-0.038574696,0.5301163,1.030499,0.8273024,-0.103917226,1.0914344,0.18895045,-0.3114453,0.18932195,-0.21021827,-0.7037602,0.10430206,0.42269,-0.24152447,0.40449983,-0.0014791489,0.002462387,0.20450766,-0.2577019,-0.056861162,-0.013489747,0.2018705,0.09702692,-0.033248164,-0.5728578,-0.28303364,-0.07262693,-0.15690432,0.1681685,0.2367826,-0.123905025,0.40531114,-0.04629509,1.4850191,0.100635834,0.0735884,0.14015283,0.6372346,0.29412574,0.059455432,-0.123222,0.5664606,0.36955318,0.059491396,-0.45737317,0.24195835,-0.29458803,-0.43360576,-0.022611413,-0.42684683,-0.12388821,0.06252556,-0.39106777,-0.07431245,-0.13553284,-0.10656263,0.42893213,-3.0725484,-0.24701037,-0.071384296,0.21836019,-0.36111543,-0.07529904,0.0029771328,-0.4782532,0.121534966,0.3257324,0.45108038,-0.6944571,0.3926032,0.434208,-0.46577758,-0.22230142,-0.63710076,-0.17498134,-0.055750143,0.46757492,0.058115944,-0.035388894,-0.18114834,0.241769,0.6332114,0.0477102,0.16933234,0.3156051,0.44657287,0.07781908,0.5407165,-0.084652394,0.5752041,-0.16389653,-0.04296671,0.3262485,-0.2534507,0.39358208,-0.038921077,0.024364782,0.5356633,-0.3522519,-0.8281968,-0.40188402,-0.27426702,0.9985705,-0.42458805,-0.20647268,0.16105756,-0.3041867,-0.051024403,-0.010797208,0.49324596,-0.027005501,0.06468194,-0.578014,0.13634463,-0.051433966,0.037991684,0.05426274,-0.024398541,-0.2310706,0.6572177,-0.007555452,0.5563818,0.30853945,0.07973055,-0.12265184,-0.42582884,0.008982497,0.6833533,0.34004688,0.055458948,-0.17413053,-0.23794772,-0.23673758,-0.2119503,-0.001877597,0.4828553,0.78371876,-0.054048773,0.16164424,0.3248501,0.08195756,-0.0011208515,-0.110939935,-0.07727667,0.11943987,0.012961384,0.49117598,0.73711526,-0.17771152,0.44252217,-0.15075986,0.38765517,-0.1262771,-0.50195086,0.39813814,0.50131214,-0.23180436,-0.06750794,0.5003325,0.5089005,-0.4026488,0.44377992,-0.6048941,-0.18728119,0.7006181,-0.24906448,-0.42905694,0.3652045,-0.18990664,0.10299165,-0.9496602,0.21271311,-0.12765579,-0.25373703,-0.2952603,-0.08615817,-3.4796207,0.17271926,-0.18311314,-0.0990851,-0.29027253,0.032900997,0.23113184,-0.66601497,-0.5355475,0.12039192,0.180663,0.46459547,-0.098041855,0.17250305,-0.31827196,-0.16356412,-0.075806536,0.15667082,0.038753096,0.2797491,-0.33669084,-0.37416184,-0.09377648,-0.098945715,-0.47431868,0.21006751,-0.54966426,-0.4235721,-0.04472203,-0.5337502,-0.22488591,0.6166378,-0.29141548,-0.01800952,-0.2143455,0.013771033,-0.28489473,0.033926073,0.19424114,0.11225478,-0.07388054,0.08409492,0.101669416,-0.4019345,0.567126,-0.024848878,0.43951282,0.022899915,-0.015261799,0.03798121,0.55352265,0.45315394,-0.26630476,0.9595387,0.25446546,-0.07380208,0.3488788,-0.2743931,-0.30858153,-0.6533734,-0.43369657,-0.09490518,-0.368087,-0.4721517,-0.027802689,-0.328809,-0.68041915,0.7233881,-0.0010746042,0.37889385,-0.046276513,0.2405746,0.49182123,-0.29650414,0.0852201,0.06427566,-0.18180814,-0.5653427,-0.07643031,-0.69099534,-0.5194524,0.199456,0.81291664,-0.41956934,-0.0075482936,-0.14407982,-0.19787376,-0.08549523,0.03501405,0.18460126,0.36071804,0.4727813,-0.061823543,-0.58078545,0.57512337,-0.075982764,-0.21332608,-0.41532844,-0.12065307,0.55129755,-0.830622,0.5256742,0.28853977,0.010544691,0.04979964,-0.5221926,-0.20324616,-0.057700563,-0.20829588,0.47039083,0.08095515,-0.72754866,0.4224203,0.33903235,-0.4700752,-0.63603556,0.31115896,-0.16717033,-0.3118944,-0.07802848,0.27170315,0.21743473,-0.085862845,-0.06257992,0.13493125,-0.4577939,0.18693522,0.2908668,-0.060094845,0.26266426,0.03370654,-0.1662195,-0.7518526,0.051042598,-0.3853406,-0.3442439,0.31070134,-0.10592772,-0.0026562056,0.07608471,0.20368314,0.3417231,-0.3313133,0.10469704,0.14751354,-0.27207282,0.3121353,0.41893452,0.349618,-0.3724347,0.56462085,0.16309635,-0.08102355,0.14203878,0.0555176,0.49474794,-0.0074015735,0.27858356,-0.15023048,-0.20643435,0.3793402,0.81571734,0.15743461,0.36608607,0.015875021,0.08845603,0.35846946,0.01795326,0.08691718,0.26650122,-0.47219834,-0.05142502,-0.013249842,0.1486333,0.5099948,0.35306582,0.28660625,0.07390034,-0.25255802,0.057109367,0.23622447,-0.014853703,-0.9217336,0.24606265,0.32160175,0.767956,0.25933012,0.25104558,-0.12259261,0.68103623,-0.24813801,0.08687149,0.5263918,-0.085415006,-0.59798354,0.82700616,-0.5138717,0.47618893,-0.19322415,-0.06915736,0.14808664,0.13060229,0.3981676,0.7930959,-0.27594915,-0.07080719,-0.03352027,-0.2166508,-0.046029996,-0.44616738,-0.11058128,-0.35993645,-0.2491851,0.60861033,0.44230354,0.23909974,-0.19960709,-0.029459344,0.06688975,-0.06321707,0.2093164,0.0051645543,0.04482493,0.04534752,-0.49048546,-0.11555794,0.5395915,-0.0053581637,0.08982992,-0.33954963,-0.33759484,0.12008405,-0.23772821,0.03796401,-0.07010336,-0.60422325,0.049753617,-0.14496921,-0.6783749,0.5153526,-0.09191523,0.14612515,0.1721097,-0.085009225,-0.06476407,0.33627117,0.072808795,0.9032763,-0.0953423,-0.34450743,-0.3936109,0.1399126,0.100087926,-0.23301981,-0.025547974,-0.46059507,0.08030341,-0.38256982,0.56982845,-0.090453975,-0.37895766,0.03822239,-0.25448424,-0.046654653,0.47699255,-0.03361296,-0.11940331,-0.21662836,-0.20303787,-0.4002817,-0.09069085,-0.3032914,0.15127356,0.38528094,-0.16813152,-0.13509439,-0.24748841,-0.10581599,0.42667878,-0.05706995,0.44266683,0.15733248,-0.100021966,-0.14858052,-0.012212785,0.25135532,0.39548212,0.026058512,0.06427717,-0.35093826,-0.29287368,-0.24304155,0.18816304,-0.15545869,0.309912,0.052306235,-0.22457238,0.95919037,-0.06871939,1.151403,0.058168158,-0.35570228,0.0875901,0.62541693,-0.14835118,0.111513644,-0.365876,1.0230514,0.4399751,-0.0657754,-0.18588609,-0.37547243,0.02658665,0.30638486,-0.30809963,-0.03349367,-0.044793926,-0.42004877,-0.3260494,0.352297,0.19989564,0.220038,0.022526765,-0.09342639,0.016477482,0.056539785,0.46622765,-0.5167635,-0.35049975,0.14305474,0.21575658,-0.09640253,0.025808327,-0.4091687,0.5329996,-0.51597035,0.22792587,-0.53593856,0.027893197,-0.3196077,-0.3429815,0.09164463,-0.22509848,0.36287433,-0.39207813,-0.44151098,-0.10143585,0.2845049,-0.033247232,0.16851506,0.5163466,-0.31270495,0.037476517,0.09560121,0.49254435,1.0880073,-0.31906685,-0.055681884,0.41306925,-0.37091148,-0.6034813,0.24093586,-0.31058267,0.050713357,-0.16077493,-0.38323906,-0.3706274,0.24767913,0.25228876,0.23335028,0.075855225,-0.5502083,-0.074292704,0.39074644,-0.35052842,-0.24758412,-0.24135615,0.24285531,0.7431646,-0.24681406,-0.3607748,0.15826175,0.07948944,-0.26612344,-0.624167,-0.091879115,-0.16377552,0.36721796,0.037115995,-0.23873742,0.018788831,0.14550118,-0.38633516,0.2084842,0.29915842,-0.3989835,0.16529536,-0.2591407,0.014811167,0.93900114,-0.250407,-0.18876573,-0.6817008,-0.5480614,-0.8578813,-0.5769244,0.3632968,0.15501234,0.083837636,-0.37070853,0.08783371,-0.0086810505,-0.25782764,-0.01648277,-0.4315809,0.38523296,0.12841102,0.43670985,-0.25766137,-0.9550618,0.17763089,0.15932342,-0.19727145,-0.7297445,0.5998317,-0.15013824,0.7613591,0.0638347,-0.05074472,0.22619738,-0.28392172,0.05192965,-0.48057476,-0.06655253,-0.7550204,0.0431775,96 -139,0.4929952,-0.18481736,-0.33952615,-0.20867401,-0.40393645,0.11263321,-0.16672118,0.16677386,0.16183424,-0.40672323,-0.020091752,-0.24261154,-0.15277998,0.4288338,-0.048239633,-0.673239,0.020684281,0.3286672,-0.661403,0.47020695,-0.4409712,0.38002503,0.076287046,0.15749975,-0.059103083,0.17320271,0.2094793,-0.1917968,0.10654243,-0.08739415,0.073679015,0.2362118,-0.8069981,0.3419118,-0.11949955,-0.29356176,0.008251508,-0.4002123,-0.2849283,-0.6679459,0.11528864,-0.8443032,0.50441116,-0.013747018,-0.24985233,0.004851985,0.09664586,0.30458274,-0.0765803,0.15522145,0.24038598,-0.16389294,-0.2047166,-0.19998717,-0.14696041,-0.5104482,-0.5333168,0.06305274,-0.5657215,-0.24035425,-0.1970964,0.31301358,-0.21065111,0.017954325,-0.15478992,0.25259277,-0.4208046,-0.009001819,0.18879375,-0.09584311,0.10794664,-0.34163457,0.09674004,-0.19156145,0.2571512,-0.18531272,-0.21233365,0.35665196,0.12905475,0.6705092,0.10856455,-0.2586269,0.013030243,-0.086410455,0.091341875,0.589224,-0.26345697,-0.15515393,-0.18230368,0.03585542,0.2881463,0.14835416,-0.18730478,-0.49407595,0.05670972,-0.27237862,-0.053647414,0.21816641,0.4763498,-0.31408256,-0.359656,0.3265956,0.5284315,-0.00756406,0.08313818,0.13365822,0.11831937,-0.44093978,-0.2283251,0.091675915,-0.077264115,0.26076868,-0.07750782,0.11578439,0.7146353,-0.23590203,0.017731905,-0.33547804,-0.08212807,0.019663373,-0.18618935,-0.19088237,0.23197263,-0.5134666,0.069450095,-0.094882265,0.8934734,0.16689096,-0.7860901,0.3368177,-0.5515939,-0.04305897,-0.17362456,0.7116717,0.718888,0.4398592,0.12126485,0.7233645,-0.4686902,0.2979235,-0.22790615,-0.33508462,0.14786477,-0.23683195,0.0088220835,-0.44421566,-0.034529638,-0.1691938,-0.20649534,-0.14963935,0.55210775,-0.6994345,-0.0798938,0.16203332,0.7723702,-0.3947115,-0.022513894,0.6306342,0.95084286,0.6805705,0.06865602,1.1455904,0.55777997,-0.23126389,0.30301204,-0.35557613,-0.6928394,0.1522786,0.35523245,0.10507533,0.24213673,0.1811378,-0.13977285,0.35038617,-0.66818327,-0.12449266,-0.26329297,0.43004075,-0.11563819,0.1601259,-0.36898586,-0.12397762,0.052387707,0.037226714,0.07649387,0.29574126,-0.30493578,0.20106095,0.08814006,1.8682262,-0.18992311,0.1581721,0.10710217,0.33901468,0.0954511,-0.12371909,-0.23293753,0.29801205,0.3387574,-7.133782e-05,-0.54912966,0.0756004,-0.20966037,-0.35330755,-0.20786002,-0.20533457,0.07199694,-0.087476246,-0.32806295,-0.20855898,0.070737354,-0.41574863,0.5583767,-2.1173441,-0.24290547,-0.11723072,0.4383251,-0.35302293,-0.31795877,-0.20449091,-0.4164284,0.31356156,0.26960096,0.33723363,-0.51533633,0.3297974,0.26661345,-0.3422831,-0.1865396,-0.63860786,0.11657079,-0.06583272,0.35401028,-0.09980677,-0.14926839,-0.33351994,0.011679562,0.3950534,-0.10547559,0.10094198,0.48426118,0.36571944,0.30372268,0.30059677,0.026616283,0.5301425,-0.48137274,-0.33441296,0.46299198,-0.079396516,0.33040184,-0.21583357,0.14148773,0.27347583,-0.52575696,-0.79839694,-0.7875528,-0.6279054,1.1530346,-0.3812911,-0.35854158,0.19680409,0.08756115,-0.15155646,-0.034884166,0.5193745,-0.19125023,-0.089059465,-0.73811334,0.116699226,0.04550271,0.55418706,0.10284359,0.14090864,-0.36874723,0.43740508,-0.32701036,0.34430483,0.103942946,0.16969226,-0.07213754,-0.57857585,0.17048572,1.1097007,0.28032485,0.17754364,-0.070196725,-0.286496,-0.09881498,-0.10949838,-0.060070403,0.39514014,0.8907242,-0.018657224,-0.08369028,0.3025668,-0.1525667,0.010858874,-0.15510581,-0.4057253,0.034145728,0.095851764,0.46528834,0.43029004,-0.0443338,0.5152475,-0.1551524,0.25630543,-0.082278065,-0.37937143,0.34503424,0.95489216,-0.16014704,-0.017416466,0.5126381,0.44551224,-0.25759166,0.45448717,-0.8591675,-0.3816788,0.299854,-0.08126982,-0.44417632,0.058904756,-0.25627232,0.26367062,-0.93246007,0.59512925,-0.21711737,-0.5573341,-0.57073396,-0.12596998,-2.7120943,0.22611934,-0.13960548,-0.0070094983,0.12138793,-0.021213023,0.43657535,-0.4523494,-0.34071758,0.14390168,-0.07667408,0.46960917,0.0356048,0.23440716,-0.24402161,-0.17932715,-0.3262071,0.2225773,0.3341452,0.30378255,-0.046572812,-0.4416308,-0.03801779,-0.15362357,-0.27456015,0.048728652,-0.69442976,-0.53460306,-0.23096424,-0.62522894,-0.1415841,0.58508044,-0.463433,0.058130432,-0.2939629,-0.005797711,-0.10681333,0.2235379,0.1832446,0.17638792,0.14956218,-0.060829822,-0.40409425,-0.41013333,0.49284402,0.14598131,0.15477897,0.3702702,-0.10890153,0.14855064,0.50694734,0.41070673,-0.091270335,0.71035004,0.52766204,-0.13529684,0.20851438,-0.26843446,-0.12677036,-0.5667316,-0.4301511,-0.114437215,-0.43465894,-0.4058343,-0.04357439,-0.3657719,-0.7199298,0.60677946,-0.098389246,0.08270482,-0.044954784,0.15510836,0.36323625,-0.20865807,-0.06654294,-0.18677776,-0.082568265,-0.46976918,-0.5234335,-0.48539716,-0.45908058,0.23182228,1.2615587,-0.1809436,0.00494082,0.06976234,-0.12089059,0.0036387166,-0.082517706,-0.027320186,0.22455238,0.5436447,-0.08482536,-0.71289617,0.4023524,-0.054177787,0.027043879,-0.59247303,0.2737876,0.72996336,-0.82007915,0.40647963,0.2167916,0.25498608,0.17095551,-0.5293046,-0.25797614,0.13968617,-0.36748582,0.31469163,0.0268425,-0.771477,0.39913225,0.28051007,-0.41278112,-0.9670684,0.36102018,0.08397456,-0.20870753,0.12664738,0.30528215,0.003419292,-0.054730915,-0.3437058,0.2974147,-0.42816722,0.2799438,0.22467658,-0.20617023,0.3134154,-0.44580808,-0.2325346,-0.7039378,0.1785182,-0.38051113,-0.51444817,0.2587044,-0.043829367,-0.12545219,0.31712478,0.107329175,0.4808641,-0.2890704,0.013148176,0.009421948,-0.4429793,0.30101815,0.39268914,0.47126415,-0.3841006,0.57878095,-0.014907909,-0.17535807,-0.35257918,0.16676727,0.48793784,0.02250847,0.13318901,-0.063370176,-0.09719951,0.31171617,0.96774507,0.09886988,0.44848615,-0.040836506,-0.13914181,0.3376715,0.10055188,-0.065846495,-0.03530263,-0.50431055,-0.09794854,0.09265639,0.15629797,0.4599808,0.34277332,0.41852233,-0.19882672,-0.30799764,0.13432972,0.10999896,-0.07155298,-1.134959,0.17215084,0.09269044,0.48354325,0.41178164,0.021740552,0.051911842,0.5934001,-0.23584244,0.16284175,0.23461683,-0.14045967,-0.27682993,0.44496498,-0.5668909,0.28054288,-0.08344412,0.032995,0.23608671,0.0950984,0.32988942,0.83485997,-0.06331292,0.026713677,-0.09473276,-0.0981479,0.08170946,-0.23799072,0.31388825,-0.5703282,-0.37471765,0.65246683,0.38489464,0.31678116,-0.23691463,0.101807036,0.026040442,-0.16646454,0.21704435,-0.15325703,0.041514374,0.15397123,-0.4900976,-0.18759592,0.6849542,-0.008170835,-0.08466447,0.03638024,-0.118085146,0.15775324,-0.32932308,-0.030499639,-0.021529976,-0.78874844,-0.003822565,-0.42639053,-0.15338911,0.38892496,-0.048379652,0.12196508,0.08920033,0.05452372,-0.41175714,0.38202903,0.21482863,0.9186768,0.2712021,-0.38749892,-0.32433775,0.05656025,0.2057329,-0.30062813,0.11271583,-0.27137128,-0.026515242,-0.9814762,0.43099606,-0.091866985,-0.4383524,0.31896463,-0.15803674,-0.03978985,0.5348208,0.08623683,-0.13744654,0.08278165,-0.24078263,-0.39131442,-0.048945103,-0.15379746,0.13465187,0.17239067,-0.10979913,-0.09217633,-0.14650895,-0.26370227,0.500529,-0.005486802,0.28912702,0.3786565,0.257272,-0.18206576,0.12369563,0.19189246,0.44628417,-0.09839861,-0.0027818999,-0.048068162,-0.21451563,-0.23421344,0.19359574,-0.2147926,0.26197213,0.08872318,-0.47804603,0.685898,0.17273024,1.028927,-0.003345565,-0.062062275,0.11697124,0.47020566,0.10913337,0.03317588,-0.5364918,0.91364825,0.63045055,0.084862314,-0.12296372,-0.2263733,-0.39704043,0.32150453,-0.29651728,-0.05396462,-0.035321075,-0.78599703,-0.48134696,0.28474468,0.3825,-0.07762136,0.01723967,0.062814064,0.09278609,-0.0038740535,0.32844096,-0.5617745,0.064368345,0.20533156,0.42993248,0.12552989,0.3379136,-0.39976484,0.4405774,-0.65227485,0.06872663,-0.4356371,0.14294109,-0.124201946,-0.19450165,0.065472744,0.21332122,0.42060822,-0.23688574,-0.3356729,-0.13332413,0.6201278,0.17204998,0.14541821,0.81495005,-0.34320277,0.09004755,-0.049549382,0.35754362,1.1117278,-0.23205748,0.030463822,0.2970371,-0.27058607,-0.61928624,0.44472218,-0.33370835,0.100045905,-0.044072814,-0.35818842,-0.31356138,0.30349538,0.13577193,-0.14142428,-0.022939885,-0.56179124,0.105426766,0.28872842,-0.060221728,-0.30855876,-0.2891764,0.40103805,0.8371213,-0.2522228,-0.34346738,0.2385022,0.40721187,-0.33706096,-0.64564437,-0.22359306,-0.37583086,0.13367972,0.14721832,-0.3623387,-0.100292996,-0.06359235,-0.37582776,-0.025457343,0.29919627,-0.36786634,0.07649007,-0.06429486,0.15447798,0.7522245,-0.05784701,-0.1958418,-0.71642554,-0.4609951,-0.9536578,-0.39782205,0.55276465,0.44181928,0.075451694,-0.28473672,0.012007785,-0.112790816,-0.13401458,0.07249714,-0.5002272,0.22506599,0.22967336,0.4856836,-0.16917299,-0.91148895,0.14229815,0.05954368,-0.20154262,-0.55985737,0.39481634,-0.14361404,0.9430265,-0.057783507,-0.14053033,0.16674235,-0.5843526,0.05412275,-0.2683405,-0.05998717,-0.74318194,0.21884312,99 -140,0.43050632,-0.35756114,-0.45017096,-0.05259684,-0.4138343,0.067819566,-0.19522956,0.43175107,0.07597177,-0.1996551,-0.15980588,-0.25279796,-0.098347634,0.18612552,-0.17990844,-0.25595573,-0.22661673,0.10801487,-0.63551044,0.7859492,-0.114541784,0.17329635,-0.19333579,0.40750903,0.6699219,0.2799239,-0.017468708,0.13794647,0.050692257,-0.2598174,-0.10223068,0.14867194,-0.5562004,0.16713502,-0.3057003,-0.2904862,-0.09838409,-0.5672499,-0.5124342,-0.8937136,0.51506823,-0.9109114,0.63775504,-0.081366636,-0.18894596,0.2675409,0.3552523,0.34835732,-0.09641075,-0.17205943,0.30460903,-0.05734231,0.14833952,-0.12165737,-0.19900052,-0.39232546,-0.56713355,-0.14916016,-0.34579837,-0.11777388,-0.43464953,0.16007432,-0.34981802,0.008861834,-0.124121584,0.5154216,-0.47211334,0.30241317,0.050376393,-0.023180012,0.091979384,-0.7535526,-0.17093188,-0.16781346,0.27197742,-0.0034055968,-0.088020906,0.47381496,-0.029382467,0.17335497,0.0028023045,-0.11464407,-0.23740827,-0.22534736,0.0991894,0.39294547,-0.065882966,-0.4119294,0.012486744,-0.029953416,0.35727316,0.39018303,0.2530284,-0.0155326845,-0.118697405,-0.07341686,-0.05301883,0.5508322,0.43485376,-0.13855846,-0.106039256,0.38596967,0.654022,0.42303988,-0.28281578,-0.041305076,-0.026057513,-0.48046547,-0.09334751,0.12546234,-0.31823307,0.47766843,-0.08388813,0.19062825,0.49153376,-0.26402542,-0.08083644,0.046509456,0.13012925,-0.21346706,-0.1721184,-0.4849075,0.22804363,-0.45966494,0.44400704,-0.10574028,0.58089846,0.10488245,-0.47578755,0.29712355,-0.5592336,0.06831274,0.08019241,0.43827966,0.6190272,0.49224737,0.45392126,0.6965895,-0.079327255,0.044050142,-0.2779601,-0.2400803,-0.061929025,-0.21370599,0.00578324,-0.5345868,0.022823304,-0.2683297,-0.15872835,-0.11728747,0.53165287,-0.34785324,-0.08207002,0.15772335,0.78029543,-0.23183727,0.0779768,0.9267639,0.99480426,1.0420672,-0.044252116,0.7383511,0.041152883,-0.24350943,0.09234145,-0.17175789,-0.5903384,0.2469158,0.400717,-0.17772938,0.26668125,0.122868694,-0.0270276,0.2644265,-0.44396287,0.00783785,-0.13822807,0.13390191,0.24747582,0.00948142,-0.2445576,-0.32047358,-0.06912414,-0.021606298,0.18926017,0.17267223,-0.34321603,0.47993058,0.11274188,1.6394463,0.052011203,-0.041330244,0.22954664,0.66155124,0.15945822,-0.25278386,-0.09955431,0.35368195,0.29226175,0.14240228,-0.50555027,0.28795782,-0.32908112,-0.44381174,-0.09081788,-0.47736597,-0.3345478,0.07497803,-0.28873417,-0.27792174,-0.22142388,-0.26392597,0.43682683,-2.8937337,-0.04323519,-0.047019266,0.2692236,-0.22322688,-0.3103597,0.08532303,-0.48186225,0.47980702,0.29459155,0.38935238,-0.5898297,0.3984174,0.5065938,-0.81265694,-0.024527024,-0.52839476,-0.13839127,0.09401669,0.40851897,-0.142068,0.029673643,0.09502697,0.22104886,0.4880585,0.14801994,0.19569837,0.43846476,0.4771807,-0.13086277,0.7316858,-0.04156172,0.30615294,-0.35320562,-0.09702174,0.3541792,-0.3407313,0.40475884,-0.20121318,0.13533421,0.70381445,-0.5949495,-0.80561316,-0.55825436,0.003134227,1.1406398,-0.32188714,-0.5841,0.27082223,-0.65511006,-0.19883417,-0.16692823,0.5535983,-0.18177801,-0.1824991,-0.63739055,-0.115640126,-0.11902606,0.16250058,-0.068975136,-0.09003797,-0.33519086,0.79569125,0.009681842,0.5738317,0.19535996,0.14586423,-0.50057584,-0.48522785,0.14045633,0.4652696,0.51289743,-0.056135066,-0.24219488,-0.20296755,-0.23046805,-0.15724847,0.15309525,0.68260604,0.4202408,-0.081393816,0.18169887,0.30759516,-0.14767747,-0.01319348,-0.31807086,-0.17954479,-0.2726903,0.025322413,0.4184967,0.54616946,-0.0013481379,0.40493095,0.05730366,0.23026164,-0.094443895,-0.40209076,0.2912585,1.3067708,-0.19104078,-0.42297205,0.43135178,0.61270255,-0.102521464,0.40223604,-0.58952636,-0.12413238,0.5864084,-0.15324417,-0.598374,0.15182658,-0.28651997,-0.000835826,-0.57348055,0.0064060865,-0.35023588,-0.5762917,-0.65298235,-0.10680335,-2.344116,0.11272562,-0.270505,-0.40357703,-0.31220016,-0.4533437,0.083281964,-0.5878096,-0.6619403,0.054012474,0.122695416,0.7950709,-0.11543376,0.051542617,-0.2098589,-0.39357308,-0.50445324,0.15409508,0.18669564,0.44426012,-0.3093494,-0.42966253,-0.11310975,-0.018413937,-0.4028865,-0.08397756,-0.4769365,-0.195538,-0.19097425,-0.3860549,-0.2960109,0.5630687,-0.08831368,0.108252764,-0.17641239,-0.02177925,0.16886629,0.14622402,0.19671017,0.18339466,0.09472311,-0.14348684,0.13659705,-0.2280172,0.37116,0.10230395,0.34260482,0.20242341,-0.050832964,0.3454976,0.25253996,0.5456633,-0.09158243,0.95187414,0.3243947,-0.17929104,0.22439711,-0.15556605,-0.4285653,-0.571645,-0.084799044,0.1759792,-0.33649027,-0.47315815,-0.1701415,-0.28976128,-0.7556288,0.5161442,0.0874829,0.38589287,-0.08580847,0.23016055,0.59273434,-0.20043828,-0.030573677,0.011870116,-0.17669836,-0.54265046,-0.29733393,-0.53501666,-0.40907204,-0.0966591,0.7820292,-0.32491675,-0.07776562,0.16502886,-0.42773023,0.20810132,0.14951564,-0.077814296,0.18501247,0.44116667,-0.15998834,-0.539286,0.51463294,0.012665121,-0.13811922,-0.498511,0.4038202,0.5666482,-0.4747325,0.47928435,0.13016887,-0.10841465,-0.6287223,-0.53049475,0.05353231,-0.10359447,-0.19570981,0.4236275,0.33092722,-0.6267798,0.25492632,0.1507064,-0.098061636,-0.7572571,0.6788336,-0.1072106,-0.49736038,-0.096765585,0.28568214,0.13269183,-0.034717783,-0.26310956,0.2637963,-0.26838657,0.24647088,0.11971356,-0.116945855,0.06940239,-0.25772613,-0.14103228,-0.72936636,0.29113224,-0.43922815,-0.35173836,0.6245647,0.084360614,0.11129192,0.26764145,0.18572386,0.2930226,-0.11859878,0.13540149,-0.16068801,-0.17091939,0.29165477,0.45868096,0.5538884,-0.50929135,0.55786175,0.05108612,-0.18896362,0.34414068,0.11214828,0.23156968,-0.07434834,0.50008416,0.16744114,-0.27735576,0.18826962,0.6745849,0.35338804,0.43095404,0.010881785,-0.09913993,0.23779485,0.0021107257,0.34704602,-0.14376144,-0.776542,0.068835124,-0.2981811,0.012361637,0.5166468,0.107060246,0.16564779,-0.13639508,-0.1537932,-0.08519927,0.20925331,-0.16999808,-1.2693261,0.27991912,0.25586268,1.0307262,0.43542004,-0.015513022,-0.014968306,0.82214445,-0.12724827,-0.0067253886,0.3960036,0.33635393,-0.46750212,0.5173559,-0.64595044,0.49986824,0.129912,-0.08615173,0.04920498,0.03724472,0.3687088,0.6464775,-0.25483593,-0.12477231,0.058593947,-0.42728963,0.2915443,-0.25147676,0.021630196,-0.60301346,-0.3069127,0.52688986,0.49513385,0.35671705,-0.030004056,0.023517588,-0.057920326,-0.20527655,0.26894978,0.17935562,0.09685351,-0.17869872,-0.644392,-0.059509613,0.40663823,-0.21046111,0.17469269,-0.037822854,-0.17548294,0.23534289,-0.05067381,0.064383894,-0.023992918,-0.8432656,0.21258928,-0.20951174,-0.39116606,0.36273625,0.00068814756,0.2995485,0.25503346,-0.021843309,-0.24001122,0.34089622,0.052256178,0.85124564,-0.07421203,0.007933545,-0.3646919,0.039076556,0.080877416,-0.18196239,0.055360403,-0.10451202,0.068576306,-0.6437753,0.49829465,-0.025256956,-0.4262146,-0.03200615,-0.20476232,-0.07991194,0.6751991,-0.07405417,0.020596031,-0.24367903,-0.13009006,-0.38586813,-0.42974383,-0.07664239,0.21567903,0.14910068,0.16667223,-0.18348607,0.09808075,-0.05446697,0.6755247,-0.014685352,0.55619127,0.21446444,-0.031070638,-0.33007076,-0.14699247,0.05350534,0.533858,-0.053389426,-0.07117382,-0.24095565,-0.4704395,-0.38357538,0.36239997,-0.057410788,0.38494045,0.07553669,-0.14396615,0.75974196,-0.17035504,1.0830952,0.015359866,-0.4414237,0.25372687,0.72497046,-0.04989228,-0.19157617,-0.17634337,0.8289645,0.47933474,0.030427566,-0.069940425,-0.26791537,0.09826696,0.07594102,-0.22080462,-0.08111078,-0.041005716,-0.3845841,-0.05950997,0.023708662,0.26337558,0.26313564,-0.16339353,-0.0056584678,0.39273632,0.007916528,0.3142804,-0.2063531,-0.3818324,0.43323585,-0.16116253,-0.0860455,0.14356692,-0.53029525,0.48707512,-0.4368822,0.14247672,-0.3707579,0.2682094,-0.21730086,-0.23774382,0.22383328,-0.011245314,0.30546045,-0.34630954,-0.3189967,-0.28068867,0.40290153,0.30624276,0.1963664,0.4214885,-0.2629277,0.1821843,-0.04311819,0.49661943,0.6829263,-0.11926587,-0.107993856,0.11497608,-0.5508537,-0.61219496,0.39898428,-0.41796336,0.12226378,0.23634891,-0.044137876,-0.3950115,0.25086054,0.18105894,0.14650024,-0.18431044,-0.9444516,-0.23303229,0.23352194,-0.24341956,-0.074130535,-0.45247486,0.033378497,0.5435892,-0.14561097,-0.45565245,-0.056814853,0.07699327,-0.12424708,-0.469394,0.007309266,-0.34645826,0.3172284,-0.16806799,-0.32963118,-0.18406697,0.101369314,-0.46913016,0.19346514,-0.17884864,-0.38485387,-0.030006906,-0.28931317,0.08635326,0.9285328,-0.3475087,-0.011810561,-0.24430484,-0.44721782,-0.7804563,-0.30561402,0.17640203,0.21172547,0.013799476,-0.7140873,0.030547833,-0.29927272,-0.20772532,-0.1357317,-0.41985095,0.40589347,0.20557421,0.44809204,-0.030945698,-0.7413155,0.32728896,0.014831098,-0.16916306,-0.5098703,0.5125989,-0.029548867,0.6746667,0.048963226,0.20356035,0.05755024,-0.456675,-0.031305287,-0.15395187,-0.13131776,-0.5432929,-0.024695067,102 -141,0.46852416,-0.254902,-0.50880307,-0.06867841,-0.24178244,-0.059161894,-0.20330863,0.31526366,0.03319034,-0.55463195,0.0038989743,-0.09467247,-0.061073788,0.3725186,-0.04163393,-0.46803224,0.06346588,0.10275689,-0.5995094,0.61362976,-0.46882617,0.5729838,0.08358525,0.14327243,0.12437658,0.2617726,0.171425,-0.17814948,-0.061597597,-0.10220888,-0.1402181,0.07086175,-0.6363265,0.11700096,-0.08527161,-0.27444464,0.047059633,-0.2598549,-0.47354153,-0.76134384,0.2667581,-0.78171104,0.5483641,0.020830922,-0.36227816,0.22905287,0.0710739,0.40770522,-0.32807302,0.19444299,0.2510336,0.052360076,-0.07841082,-0.106019944,-0.18649003,-0.41091076,-0.3318741,0.05870485,-0.54564065,-0.28893834,-0.2890665,0.07918235,-0.36957252,-0.057908285,-0.1109854,0.38929468,-0.4682836,-0.092503,0.14610837,0.045638863,0.41567805,-0.5949144,-0.13584042,-0.17887166,0.16828851,-0.27956173,-0.25830013,0.19274275,0.30166826,0.55666006,-0.056138404,-0.14009425,-0.03661818,-0.23400784,0.22294982,0.50386924,-0.21500808,-0.3781168,-0.14584494,0.047999058,0.13873437,0.12799376,0.057340607,-0.58767444,-0.05329958,0.03943817,-0.16244155,0.3612653,0.4623982,-0.27786055,-0.2205365,0.2570626,0.4865965,0.1897512,-0.10556407,0.1588342,-0.07958356,-0.42621288,-0.1448334,0.25712398,-0.030328061,0.45133564,-0.11569587,0.22567515,0.5934983,-0.30774373,0.014342296,-0.0947104,-0.08978332,0.032200232,-0.08026443,-0.2579788,0.102790594,-0.7511336,0.12814708,-0.0833617,0.68401885,0.2929077,-0.62026405,0.3344421,-0.49848303,0.09842787,-0.14267983,0.54871327,0.7581004,0.25157434,0.07945495,0.6411743,-0.52697504,0.100354955,-0.142739,-0.35472116,0.010820214,-0.0641769,-0.13465138,-0.50524116,-0.18080507,-0.041957036,-0.18122448,-0.16239528,0.29420662,-0.4750087,-0.07529745,-0.0015071352,0.714935,-0.4149383,0.2125831,0.53935033,0.9569674,0.97995883,0.22709268,1.1770567,0.33780333,-0.23345058,0.20089372,-0.24568768,-0.57943267,0.29593173,0.5252915,0.0074862163,0.26296747,0.06612222,-0.014507727,0.33715278,-0.4033293,0.05363648,-0.32095787,0.33314782,-0.13348633,-0.07648869,-0.5255134,-0.20897272,-0.17509702,0.15736064,-0.20705411,0.20122732,-0.2058683,0.24548881,0.017252648,1.5720688,-0.31435612,0.09943029,0.07623433,0.40173274,0.2972763,-0.2157018,-0.16769536,0.3170988,0.56284446,0.097638056,-0.65790915,-0.11890065,-0.27818865,-0.44260475,-0.21128538,-0.30001816,0.14358075,-0.075608246,-0.4268071,-0.12429149,0.08641874,-0.3059916,0.45036545,-2.4360235,-0.18810035,-0.13687436,0.2587476,-0.37404123,-0.40819234,-0.15189332,-0.3120851,0.4897787,0.35060748,0.45660096,-0.6116406,0.2776932,0.36012083,-0.3758639,-0.07858208,-0.6133382,-0.20541707,-0.025460493,0.42013898,-0.07948576,-0.05657036,-0.094923034,0.28094465,0.534625,-0.23056291,0.14589652,0.2373972,0.3378988,0.19419487,0.4452965,0.063085936,0.39695817,-0.36732668,-0.1212686,0.50257534,-0.048866674,0.09696056,-0.025735727,0.2382532,0.28801128,-0.6826355,-0.85847396,-0.6915429,-0.42035744,1.1757678,-0.26229563,-0.36127385,0.3921379,-0.2220596,-0.064581014,-0.048533812,0.33347437,-0.0127188545,0.09147536,-0.87498164,0.10129659,0.0657453,0.32717642,0.039969143,0.013217317,-0.32766473,0.5019912,-0.12798044,0.3626145,0.4290088,0.1971119,-0.04683215,-0.44478068,0.008089149,1.1954906,0.61636835,0.10560325,-0.1740376,-0.16288586,-0.31253204,-0.042024788,0.060232718,0.31064042,0.94829094,0.013023038,0.092724256,0.15120104,-0.10635985,0.11751068,-0.13148476,-0.28962862,0.008916186,0.052976623,0.54644966,0.22847815,0.005729527,0.6798309,-0.0855181,0.205043,-0.08293072,-0.46195552,0.47850105,1.1750056,-0.18739033,-0.15755872,0.49125093,0.37642097,-0.2472899,0.48532087,-0.6105231,-0.22265908,0.5606481,-0.19423465,-0.3581641,0.37019813,-0.39807957,0.30162904,-0.91346645,0.3983924,-0.3544684,-0.49309024,-0.5009353,-0.066149235,-3.3998246,0.34385642,-0.2778235,-0.24491991,-0.08115216,-0.13550122,0.37438905,-0.44583756,-0.45478278,0.20341744,0.00910716,0.6759533,0.08718219,0.012172062,-0.15150227,-0.26448005,-0.2431597,0.16559687,0.09623463,0.26251376,-0.13701123,-0.44965905,-0.111660115,-0.16091423,-0.3633782,0.029681236,-0.63801354,-0.5341391,-0.27759722,-0.54129833,-0.21854462,0.7143285,-0.11510695,-0.022352306,-0.0728661,-0.035056163,-0.052767042,0.44482198,0.19941965,0.26957652,0.0048833448,0.0022149484,-0.109755345,-0.3732553,0.051065207,0.20582703,0.0006894509,0.15681858,-0.15088421,0.20737647,0.5737355,0.6471891,-0.18320686,0.6504934,0.54607177,-0.26342717,0.33461198,-0.3283611,-0.27854636,-0.5935093,-0.45766973,-0.26308414,-0.296027,-0.5701463,-0.10412004,-0.22375454,-0.72134,0.56014246,-0.11467586,0.08785994,0.05225002,0.23333834,0.24251257,-0.14702663,-0.056456055,-0.1704407,-0.14631675,-0.54658115,-0.37219632,-0.670607,-0.4756814,0.024096496,0.9390694,-0.13279885,-0.029638862,-0.054196056,-0.25437522,0.062418852,-0.1416922,0.12322542,0.33243197,0.23791961,0.0075992583,-0.7068213,0.49323183,0.110473685,-0.18167442,-0.5522813,0.10954912,0.8624303,-0.60123307,0.3747985,0.27967793,0.028299754,-0.058266558,-0.51889,-0.22520031,0.26387772,-0.34517825,0.4340542,0.08334771,-0.7359048,0.40924826,0.5104956,-0.2002683,-0.66046107,0.60551,0.12460901,-0.2409272,0.089416064,0.3843197,-0.06753839,0.03615818,-0.389681,0.37729505,-0.38838816,0.25999016,0.39706817,-0.04551924,0.19915661,-0.27863476,-0.3233234,-0.6046392,0.1007066,-0.481676,-0.26845998,0.19881119,0.08553182,-0.022748271,0.16222307,0.07658269,0.4819663,-0.3362424,0.19748831,-0.16023256,-0.35573843,0.41315538,0.60158,0.23646422,-0.20480302,0.6772125,-0.011478549,-0.18164031,-0.29184386,0.065688156,0.51226187,0.17637523,0.13329026,-0.14963205,-0.2096878,0.30900213,0.9028093,0.10271595,0.5574911,0.13913435,-0.11062297,0.121218376,0.23977564,0.090482585,0.12456958,-0.3185886,-0.161934,0.10846802,0.17810424,0.5294505,0.17176062,0.23374167,-0.13703388,-0.20935796,0.050931398,0.19069248,0.16454701,-0.927561,0.43633953,0.14063923,0.44144887,0.47818005,0.032756258,0.059422664,0.5283094,-0.27045164,0.011282754,0.15182263,-0.14440608,-0.56128126,0.5827612,-0.6910115,0.41682413,-0.16192737,0.0647734,0.18421732,0.08517942,0.40781415,0.92609394,-0.0056182267,0.0873127,0.025898771,-0.2246034,0.056834877,-0.50460446,0.041642744,-0.33423144,-0.48942935,0.6803132,0.32709092,0.2223105,-0.13754314,0.037277468,0.10538933,-0.24533278,0.31187427,-0.09140197,0.08909993,-0.08383053,-0.6578167,-0.22353134,0.4797549,0.09442518,0.080197066,-0.02394496,-0.050822034,0.27343607,-0.18883738,0.11580915,0.04528268,-0.7481496,-0.009110649,-0.563147,-0.347015,0.3121677,-0.34900725,0.28984484,0.14231735,0.015454841,-0.24465373,0.44362944,0.15033646,0.73686105,-0.09392166,-0.20862903,-0.29299074,0.16071187,0.24994291,-0.23134041,-0.09500354,-0.2294449,-0.011076559,-0.9241683,0.40637475,-0.09504456,-0.22668843,0.25094593,-0.24420261,-0.074292965,0.49641502,-0.15447743,-0.14582096,0.010745064,-0.2278828,-0.2329757,-0.38938552,-0.097803816,0.27276576,0.20260319,0.04373361,0.010462065,-0.050881427,-0.04889003,0.4016553,0.07890463,0.401559,0.30793616,0.24294825,-0.42971328,-0.016405089,0.22793137,0.36651236,0.12901868,0.1088271,-0.16765253,-0.42677206,-0.35607997,-0.045284316,-0.19323982,0.3391105,0.13315096,-0.29915053,0.85116214,0.14670862,1.0743276,-0.09590249,-0.39493397,0.069480814,0.35986227,-0.09747182,-0.11391631,-0.25976402,0.7596286,0.63136035,0.0048225084,-0.1541045,-0.3029877,-0.34059843,0.26809314,-0.26966208,-0.19190283,0.033585288,-0.48229104,-0.33525187,0.31146342,0.32270804,-0.06897624,-0.042049725,0.05523305,0.13281201,-0.015916191,0.23600282,-0.52599245,0.07131109,0.3479443,0.20921156,-0.0119353095,0.12454663,-0.3719712,0.43100154,-0.6283671,0.070120126,-0.19427428,0.1304947,0.030334089,-0.24619038,0.15180202,0.06603284,0.426603,-0.38279602,-0.33069882,-0.22691065,0.61284,0.032348227,0.06643841,0.6059568,-0.30144998,0.20059995,-0.03341531,0.36253992,1.0591751,-0.29394296,-0.04204044,0.33390793,-0.42526838,-0.5788709,0.33631468,-0.18204829,0.3249162,0.056361463,-0.40872923,-0.4400135,0.2442369,0.25728244,0.004150625,-0.047750007,-0.4272363,-0.19617344,0.39389038,-0.21977085,-0.33170566,-0.37275106,0.20802563,0.5584756,-0.44758552,-0.3370539,0.058653656,0.15240666,-0.2667948,-0.48265442,-0.024547163,-0.28024343,0.35391146,0.14884885,-0.17874718,0.06683065,0.037935965,-0.47038513,-0.03727995,0.105130814,-0.44658482,-0.041964874,-0.19225755,-0.08912333,0.80462223,-0.20576115,-0.21573871,-0.61649185,-0.5423244,-0.79805744,-0.47187513,0.747701,0.28418785,0.1797878,-0.51374555,0.10721526,0.0038870582,0.24475746,0.051370025,-0.32095224,0.4433085,0.19083643,0.41395494,-0.22846001,-0.75526136,0.23809446,0.10507368,-0.15761207,-0.55338776,0.48582605,0.021578046,0.7939673,0.08015032,-0.052399907,0.30202264,-0.5835106,0.025362289,-0.20081188,-0.24000295,-0.719097,0.0026064834,104 -142,0.3254008,-0.08864724,-0.45370927,-0.22267224,-0.040822204,0.113619246,-0.2233838,0.25848043,0.04372239,-0.52268046,0.17856668,-0.30619413,0.047079563,0.16408825,-0.010450216,-0.6211886,-0.021781301,0.07853089,-0.4217099,0.55866313,-0.59601474,0.18245234,0.2553,0.012008484,-0.28318936,0.27790567,0.34378067,-0.41754436,-0.16243683,-0.16955802,0.0010654847,0.013576537,-0.44179916,0.26326516,0.01536836,-0.12961191,0.27475637,-0.28777802,-0.24156919,-0.5034004,0.016665565,-0.6227681,0.2593793,0.093811244,-0.18298177,0.5442018,-0.028451996,0.059086647,-0.32785743,0.23268041,0.30949828,-0.05606358,-0.18756455,-0.2860144,-0.22363923,-0.6693995,-0.4752287,0.012128202,-0.41310012,-0.19759159,-0.16754727,0.091842294,-0.28262034,-0.036203794,-0.17716941,0.3464935,-0.3789598,-0.059051774,0.04829866,-0.2814809,0.31172848,-0.4382197,-0.01756403,-0.049957898,0.08147419,-0.01993124,-0.025805503,0.23015116,0.2447126,0.56433797,-0.045990236,-0.13163929,-0.20641035,-0.21407562,0.19104406,0.5708714,-0.17592797,-0.2879071,-0.09242327,-0.15206541,0.032685604,0.15807216,-0.15078464,-0.40497145,-0.17079973,-0.035662603,-0.4713343,0.07268823,0.46456024,-0.44621557,-0.073731296,0.44184396,0.21193293,-0.13734823,-0.12515314,-0.044875342,-0.12593275,-0.48224747,-0.073801346,0.26707545,-0.13908507,0.49321786,-0.13592686,0.18481432,0.5930402,0.019223355,0.08421775,-0.16892855,-0.101353124,0.123095036,-0.12903498,-0.13219346,0.18568334,-0.41753143,-0.1538022,-0.5005104,0.7492254,0.015229664,-1.0079987,0.45895508,-0.35268268,0.055820726,-0.13710405,0.62573737,0.55075765,0.49164113,-0.09485642,0.65656,-0.61312175,0.14641912,-0.21508284,-0.33369765,0.2676192,0.19798112,0.1418967,-0.4151804,-0.0190152,0.195755,-0.08378028,-0.15481399,0.51631206,-0.3187459,0.032766122,0.22551918,0.8132891,-0.3464857,-0.1375302,0.312838,1.015015,0.66318685,0.114173315,1.2511809,0.24576458,-0.2365109,0.08312974,-0.40001076,-0.7068607,0.13738172,0.3904587,0.7089004,-0.00403746,0.04784452,0.0068986733,0.2511042,-0.11167826,0.04074518,-0.30966637,0.21742164,-0.08501204,-0.11274357,-0.26462963,-0.26010418,0.065481916,0.036820985,-0.036741234,0.20305175,-0.0722007,0.26594034,0.009770107,1.7639561,0.004692069,0.24078181,0.14709324,0.22143364,0.23194058,0.06370536,-0.14323163,0.46237764,0.17763628,0.0045670867,-0.5326846,0.13974898,-0.076975,-0.5258915,-0.017294744,-0.27261728,0.12992376,-0.16215488,-0.35755584,-0.047174048,0.1557536,-0.47808304,0.3746157,-2.9010975,-0.11232246,-0.07503225,0.27316418,-0.34504643,-0.21915847,-0.123934455,-0.34443036,0.56118244,0.4977637,0.5295235,-0.5276206,0.32230723,0.36141637,-0.32856673,-0.08185489,-0.706425,-0.07043617,-0.1776088,0.34700906,0.028787227,-0.2402635,-0.09600724,0.06872937,0.37597263,-0.12975784,0.007938066,0.22939914,0.355734,0.3132355,0.4829704,-0.090492815,0.4114583,-0.18010888,-0.05951232,0.17041442,-0.28161913,0.21326965,-0.16578022,0.1691485,0.19979528,-0.41574365,-0.7223725,-0.40120354,-0.30884913,1.0839635,-0.425088,-0.32431895,0.31256884,0.3143126,-0.16534057,-0.019769816,0.35732853,0.04565634,-0.038911596,-0.6839033,0.037756708,0.10956605,0.37618366,0.049364574,0.0639275,-0.42260057,0.5415433,-0.021154102,0.6010429,0.50530326,0.087651186,-0.06952848,-0.2781134,0.070533484,1.0121472,0.18072456,0.06795716,-0.15823112,-0.17069921,-0.18109451,-0.03599174,0.060798433,0.2731064,0.71805155,0.003693829,-0.106525965,0.29067054,-0.21834224,-0.06491001,-0.07133394,-0.41475365,-0.062506154,0.015044719,0.5129666,0.41523492,-0.10712523,0.34192452,-0.09200491,0.35996014,-0.16534074,-0.4150651,0.4930846,0.5707716,-0.055493217,-0.07868501,0.39338773,0.54170775,-0.12371494,0.5050052,-0.43964085,-0.36960122,0.4565938,-0.1645965,-0.3767074,0.3009891,-0.36647186,0.09870554,-0.83649987,0.24027437,-0.20560694,-0.34357935,-0.68223757,-0.19290055,-3.7461517,0.08477443,-0.1846508,-0.2120126,0.14308873,0.2036005,0.28888685,-0.4965255,-0.34715107,0.14154243,0.13211872,0.37293586,0.05251611,0.03238927,-0.34035534,-0.06329301,-0.19027586,0.21797103,-0.049681004,0.11110748,0.019593898,-0.36688516,0.00059929094,-0.2997506,-0.19514342,0.1899321,-0.40911463,-0.2470769,-0.17220522,-0.4472314,-0.39394602,0.60304743,-0.44985035,-0.07475772,-0.011318179,0.10981985,-0.069287166,0.3498679,0.11929323,0.08227597,-0.11657481,-0.023517199,-0.17760251,-0.29062876,0.17583364,0.14941348,0.26854932,0.52545434,-0.0069364705,-0.08639989,0.6030361,0.3734586,0.055965822,0.6361892,0.3185902,-0.063044325,0.2640976,-0.29741192,0.08048013,-0.5548131,-0.37866166,-0.19316603,-0.33381793,-0.52738446,-0.038113903,-0.294198,-0.61170024,0.36657238,0.07045018,-0.27136832,0.087703705,0.29432604,0.25830093,-0.12479847,0.0933534,-0.15598835,-0.09822245,-0.39891848,-0.4042449,-0.76603675,-0.25729057,0.23388131,1.009113,-0.11887886,-0.19260073,-0.06458147,-0.1497949,-0.055001438,0.031787865,0.14467897,0.38407573,0.24053663,0.0748766,-0.6995237,0.5929432,-0.091563225,-0.054508153,-0.42547455,0.0830444,0.5115775,-0.6427794,0.38056132,0.41382778,0.21039674,0.04361581,-0.6049803,-0.33316162,0.16011666,-0.17893054,0.332881,-0.07651396,-0.7851283,0.56369245,0.1716585,-0.1926649,-0.6817268,0.29302117,-0.015133127,-0.29284626,0.10801172,0.2516308,0.056317296,0.14618246,-0.30185536,0.23543125,-0.6228193,0.25876835,0.2703796,-0.006371956,0.55383205,-0.14797106,-0.09379927,-0.6925518,-0.26375374,-0.37368613,-0.19714454,0.2479938,0.086946644,0.15182486,0.13619594,0.09192209,0.4163628,-0.26889068,0.13578998,-0.079652525,-0.10645345,0.42820483,0.3686412,0.26521537,-0.38190588,0.5194697,-0.18708213,0.12927642,-0.27982035,-0.023189541,0.3602994,0.29278243,0.050131038,-0.1310759,-0.20948291,0.36098063,0.82349885,0.26767528,0.26505572,0.16325574,-0.2271033,0.52800184,-0.023888005,-0.057565905,-0.04550391,-0.40587464,-0.17102545,0.0497928,0.23431195,0.29858118,0.05398543,0.49051145,-0.22886708,-0.010420748,0.12387704,0.3354643,0.21205507,-0.35462973,0.41445974,0.19750956,0.41861603,0.7597724,0.07499354,0.1190188,0.6450843,-0.37114462,0.17898317,0.19780949,-0.12120488,-0.48960128,0.46978396,-0.45862418,0.16312239,-0.106577285,0.026104778,0.110551566,-0.03952,0.3820041,0.84591806,-0.0796573,0.1187866,-0.10718904,-0.20749405,0.23854952,-0.24472739,0.06056916,-0.25775388,-0.37084204,0.60094553,0.18637675,0.25818595,-0.14475304,-0.10971388,0.24845745,-0.027064474,0.36364168,0.06256593,-0.003672115,0.06720904,-0.6253818,-0.39008054,0.64244425,0.06834696,0.08745486,0.12189037,-0.14985196,0.35307086,-0.21661608,-0.1225461,-0.13116173,-0.41444352,0.1293244,-0.21369672,-0.26629344,0.5220576,-0.19239578,0.48311552,0.04237687,0.05137586,-0.1967855,0.12885484,0.2717214,0.6394927,-0.03726946,-0.21808712,-0.17471525,-0.15753727,0.13766183,-0.2141015,-0.063158646,-0.18753828,-0.0405339,-0.87716484,0.4240238,-0.26828107,-0.19020618,0.108121954,-0.20515108,-0.014254824,0.46024564,-0.08847826,-0.032810338,-0.13351783,-0.010928352,-0.28274268,-0.17292567,-0.3087636,0.19842722,-0.15113392,0.033434074,-0.1179764,0.014948142,0.03706998,0.4762705,0.17519554,0.011437718,0.109663375,0.21740964,-0.3268434,-0.08202695,-0.0024462917,0.34352893,0.10237106,0.09163098,-0.20059963,-0.1759331,-0.24672155,-0.11767989,-0.13786754,0.25918406,0.0651377,-0.45238456,0.72243786,-0.10244837,0.97604483,0.043281615,-0.2872711,-0.019064816,0.4761617,0.088002905,0.16302581,-0.23544079,0.87359023,0.7007408,0.054102413,-0.18646862,-0.37369376,-0.1556041,0.16213721,-0.16660766,-0.22044353,-0.039763156,-0.6979687,-0.3681798,0.18744682,0.16632809,0.10878042,-0.110551,-0.03768123,-0.0013952652,0.25779104,0.26077145,-0.37864283,-0.17503525,0.27588445,0.17834829,0.1868538,0.16509885,-0.3567302,0.36968175,-0.57762605,0.15003926,-0.24144538,-0.014845666,0.09438055,-0.01413182,0.15575983,-0.047055103,0.2209163,-0.16145083,-0.4719497,-0.06061182,0.50896245,0.24754487,0.38731745,0.81855065,-0.12418081,0.0045220214,0.08607408,0.51852304,1.1787742,-0.21657269,-0.03061685,0.50982434,-0.30458677,-0.60704243,0.07986786,-0.29221788,0.11552784,-0.08317949,-0.41217008,-0.2863351,0.2281114,0.15313224,-0.20984697,0.04210667,-0.42266348,-0.14772321,0.27515224,-0.31529653,-0.25794348,-0.2446029,0.10742488,0.90546745,-0.3957802,-0.15698345,0.033881795,0.04670364,-0.45454022,-0.5619241,0.056578986,-0.39503956,0.23403342,0.41335827,-0.26027492,0.11540581,0.12610887,-0.4754074,0.20812537,0.21784891,-0.36482608,-0.032349158,-0.39203072,-0.1314523,0.8128221,0.041744456,0.007930631,-0.5640949,-0.6015827,-0.7694923,-0.33516228,0.5753182,-0.1222874,-0.060329914,-0.33801767,-0.049586535,0.00041104952,-0.08143347,-0.13251397,-0.43603817,0.40659764,0.07788013,0.343717,-0.16417271,-0.6893597,0.009758528,0.039634474,-0.16353355,-0.49013615,0.45748717,-0.17996755,0.8294674,-0.027205443,-0.03055528,0.45651606,-0.65350443,0.16156077,-0.47544098,-0.35391364,-0.47835132,-0.00321724,110 -143,0.22944444,-0.14716125,-0.44954574,-0.22527005,-0.29191858,0.24598888,-0.26972008,0.11945342,0.197892,-0.28476372,-0.007051901,-0.040800545,-0.02371537,0.39321455,-0.27125826,-0.7357791,0.06791997,0.0111742,-0.5287541,0.41714764,-0.5453153,0.36221406,0.18198928,0.38659403,0.03042117,0.24105667,0.24221903,0.009408823,-0.041067924,-0.12362967,-0.205081,0.29869837,-0.5008405,0.2596252,0.0053539197,-0.28809625,-0.08863881,-0.3332287,-0.3411892,-0.5559753,0.39608428,-0.74790895,0.46827573,-0.1961934,-0.45085353,0.0022438585,0.16869469,0.13236181,-0.34778303,0.104714714,0.18644889,-0.04016621,-0.060628764,-0.031027472,-0.23805997,-0.5181026,-0.5442946,-0.042364217,-0.6564888,-0.08039159,-0.25440195,0.29799318,-0.2981586,-0.0113388775,-0.1463427,0.3550731,-0.47175092,0.025645088,0.18100436,-0.33792564,-0.04303883,-0.52653944,-0.075996466,-0.023652753,0.26321232,0.0052757463,-0.14910175,0.20731598,0.3394064,0.5727499,0.008270327,-0.17398588,-0.30635548,-0.10915935,-0.0036823512,0.46446413,0.034951102,-0.3627827,-0.236281,-0.035366103,0.30707023,0.15763427,0.16387342,-0.45753926,-0.07176183,0.024234017,-0.26229432,0.43735436,0.46763736,-0.50311005,-0.22748694,0.48727384,0.17399193,0.073831625,-0.3265785,0.3253509,-0.04776625,-0.4249038,-0.17471609,-0.06032092,-0.022376243,0.55738664,-0.21610974,0.4115175,0.73790973,-0.022570593,-0.050556935,-0.008002695,-0.26842645,-0.17796096,-0.20553856,-0.039254084,-0.009213706,-0.3434882,-0.007568951,-0.114861704,0.77038264,0.030690176,-0.8838757,0.45609435,-0.403647,0.09669501,-0.099337064,0.5190242,0.75073487,0.4401438,0.12814909,0.8998806,-0.5230192,-0.07093584,-0.022638854,-0.34504014,0.07825644,-0.03913508,-0.021921257,-0.41374156,0.10501461,0.13482067,0.14538455,0.054058813,0.46819755,-0.3157666,-0.062293403,0.040899627,0.6063077,-0.4003256,-0.0922207,0.84348035,1.0297908,0.9981541,0.043517735,1.3224078,0.36491463,-0.02542273,-0.049478035,-0.196311,-0.5578087,0.059254605,0.35309803,0.34419262,0.23866738,0.086734734,0.025662163,0.51693624,-0.19650196,-0.069252826,-0.030819066,0.26082176,0.04089064,-0.12788825,-0.32876787,-0.15992837,0.28862846,0.1839475,0.09713903,0.15513723,-0.089969546,0.41453597,0.14901759,1.2477635,0.017945787,0.13881491,0.11467852,0.3431517,0.24424712,-0.15102744,-0.060771126,0.2186553,0.40440422,-0.211675,-0.5762993,-0.16508374,-0.27984017,-0.5469939,-0.19165084,-0.2795406,-0.38244823,-0.20213209,-0.51523983,-0.19217633,0.14054559,-0.42264795,0.42916107,-2.8400066,-0.20795706,-0.23146819,0.3161833,-0.10389149,-0.2624187,-0.33303645,-0.50907636,0.38144362,0.4715825,0.30194423,-0.5631253,0.50130725,0.346547,-0.2190757,-0.15866153,-0.59905,0.13184099,-0.1550274,0.42496306,0.027743736,-0.2796383,-0.13881192,0.18725896,0.7373194,0.10672193,0.02920594,0.16701649,0.46986195,-0.046754997,0.5634492,0.00401514,0.55722564,-0.06391199,-0.023820508,0.34241942,-0.43208057,0.352112,-0.10976018,0.15724331,0.44195968,-0.514693,-0.8016624,-0.59326166,-0.14903186,1.2067568,-0.34271702,-0.36628866,0.29998988,-0.1112337,-0.27854717,0.12381033,0.6081908,-0.10808773,0.047974978,-0.61573327,0.06846488,-0.16708805,0.16941322,-0.15043592,0.041340955,-0.43078664,0.76551276,-0.17267634,0.7073341,0.3701295,0.12051873,-0.17419931,-0.4317898,0.06778946,0.80243134,0.4346784,0.05767625,-0.09829109,-0.14506236,-0.27407163,-0.21060729,0.03898023,0.5588869,0.5012414,0.12124233,0.22103772,0.31724337,-0.08223912,0.06412949,-0.22245952,-0.18719843,-0.0062492937,0.13371833,0.5939617,0.67003703,-0.2249295,0.27745882,-0.092148624,0.21403141,-0.14218098,-0.62446374,0.5363495,0.52544576,-0.12742493,-0.34458447,0.53086275,0.3968693,-0.12555051,0.34504694,-0.4289612,-0.39654115,0.5707985,-0.17859516,-0.40920368,0.2863733,-0.38152346,-0.054391645,-0.80669785,0.27881438,0.037703946,-0.5304279,-0.4729344,-0.33902958,-3.7218072,0.052583836,-0.112285875,-0.07451946,-0.14100187,-0.2362299,0.34415257,-0.4486232,-0.5939275,0.029607004,0.012276453,0.4120991,-0.04976856,0.19263607,-0.311471,-0.10288529,-0.25865245,0.24133702,-0.031208845,0.31058884,-0.0075478544,-0.22320278,-9.389719e-06,-0.2755484,-0.51106924,-0.050873145,-0.45225802,-0.49027622,-0.0034074604,-0.36338228,-0.20386519,0.7389051,-0.37214157,0.027612654,-0.3279606,-0.071372695,-0.22498092,0.32625392,0.16023222,0.1312366,-0.033957217,0.019598132,0.004432758,-0.3033719,0.23517497,-0.026702853,0.22094968,0.43910658,-0.035748005,0.14000271,0.459367,0.45655626,-0.10082388,0.751526,0.17009373,-0.06479582,0.34694615,-0.105769664,-0.32775936,-0.6844808,-0.33615348,-0.10771204,-0.5227217,-0.34414235,-0.15879424,-0.37019303,-0.7140222,0.2832072,0.06434082,0.078240715,-0.17762785,0.22155164,0.28681037,-0.120900474,0.119128734,-0.007284735,-0.19586954,-0.49427655,-0.5302506,-0.6838478,-0.51005614,0.07684323,0.9488109,-0.0067285853,-0.24181484,0.03731884,-0.3102724,-0.04816269,0.03816318,0.294274,0.13949658,0.32220352,-0.15135759,-0.8103855,0.35342762,-0.35535127,-0.04310132,-0.4869383,-0.061532296,0.6500917,-0.57640433,0.48107302,0.33472034,0.31367937,0.060598683,-0.6888913,-0.2473754,-0.050542887,-0.23234573,0.60566545,0.24840961,-0.60026616,0.5032636,0.06638015,0.041300096,-0.60499424,0.37979242,-0.03493358,-0.1754718,0.06443238,0.33581296,0.10345759,-0.17243476,-0.10602747,0.15242891,-0.53443784,0.43276554,0.15120047,0.018248383,0.6066798,-0.14094314,-0.31308448,-0.42925853,-0.43759516,-0.49029616,-0.18106993,-0.1147943,0.048456024,0.18037266,-0.022375472,-0.16321565,0.45376894,-0.260129,0.2593231,-0.08122601,-0.08659109,0.34795666,0.54702777,0.32331365,-0.49805835,0.6510713,0.15470923,0.16248241,-0.10653354,0.08678417,0.53157043,0.25849754,0.39905772,-0.14222108,-0.11953269,0.13878931,0.7732323,0.2425985,0.3144305,0.17913848,-0.21992354,0.2942321,0.07409026,0.06437468,-0.072966255,-0.32084236,0.004340146,-0.18827482,0.23690033,0.34790167,0.19089845,0.358088,-0.110630766,-0.12250649,0.18561739,0.1374404,-0.13763371,-1.0485114,0.31419304,0.18865989,0.80988663,0.50431794,-0.00023171106,-0.040730134,0.47922954,-0.25828493,0.048794057,0.26857272,0.09034162,-0.40310135,0.57146806,-0.46597165,0.5201568,-0.22891946,-0.04796913,0.19086394,0.24231143,0.22675778,0.8144873,-0.018333126,0.15899569,0.019090036,-0.23537806,0.039697886,-0.24474487,0.11107974,-0.34612188,-0.25205192,0.6360222,0.48979503,0.24093321,-0.29735696,-0.09410203,0.026856385,-0.1925804,-0.083264954,-0.0358016,-0.102112435,-0.31700534,-0.6836534,-0.35324866,0.57861155,0.038554873,0.051607702,0.110791676,-0.35350165,0.2930113,-0.15255699,-0.004683336,-0.056944136,-0.46205133,-0.04153951,-0.3150056,-0.5958624,0.3317565,-0.37543476,0.3384346,0.19120164,-0.047988765,-0.1777834,0.124657445,0.08312643,0.679519,0.02926005,0.027644353,-0.2619466,-0.057171397,0.33953694,-0.30743307,-0.23707327,-0.35848525,0.26548102,-0.5718926,0.3723737,-0.25322077,-0.16438057,0.025851047,-0.057432517,0.023405302,0.35460657,-0.21871224,-0.04168664,0.27170306,0.12522939,-0.28790125,-0.03836223,-0.41190898,0.272429,0.04863548,0.14734305,0.14838387,-0.10363578,-0.14100756,0.2930086,0.13251194,0.23143464,0.3116,-0.02311549,-0.34310323,-0.018783135,-0.020061605,0.60142344,0.1883358,-0.061772957,-0.27384466,-0.52069753,-0.31148174,0.43540654,-0.10354342,0.14908934,0.15306526,-0.4544892,0.6494929,0.23513243,1.0007795,0.14048497,-0.39553615,0.13291796,0.53738827,0.12862696,0.16392459,-0.19083132,0.8945227,0.5517094,-0.15259504,-0.1745899,-0.35636237,-0.07421243,0.072820954,-0.29845485,-0.30550846,-0.18512985,-0.7198581,-0.09609617,0.050859764,0.1147444,0.13405772,-0.11309845,-0.08340044,0.1302471,0.1262115,0.4122009,-0.5889893,-0.093140386,0.41076177,0.18359655,-0.0810129,0.102449164,-0.39668694,0.38322696,-0.64344895,0.09360324,-0.42048606,0.15454635,-0.12406177,-0.14833114,0.22224905,0.047428623,0.3071394,-0.28945217,-0.40856358,-0.2873067,0.6231914,0.14416236,0.25254685,0.6926417,-0.18935475,-0.16414304,0.13372903,0.6428946,1.3879752,-0.051982697,0.14483753,0.3289338,-0.3302932,-0.57332367,0.050112557,-0.49933892,0.029670795,0.041681733,-0.29098442,-0.24966116,0.24654087,0.056673657,0.056559753,0.07068982,-0.52639973,-0.31490734,0.4431819,-0.15942399,-0.14202724,-0.27049887,0.1272776,0.60730165,-0.33446863,-0.23017938,0.0058375834,0.36639258,-0.24115436,-0.6813259,0.18191361,-0.24316676,0.37885496,0.22417274,-0.26883203,-0.01070774,0.23084368,-0.47670588,0.16693674,0.46901193,-0.33739442,0.03501801,-0.33824494,-0.14245996,1.0941939,-0.046118878,0.17551771,-0.5937051,-0.47454348,-0.955452,-0.27566254,0.13614918,0.15361811,-0.0635201,-0.57436097,-0.21326998,-0.16986027,0.120211564,0.10726121,-0.49195448,0.4326123,0.094214365,0.54285926,-0.096627496,-0.85412705,0.021158163,0.07584231,-0.24285723,-0.42234612,0.7143986,0.008975104,0.62804383,0.15022118,0.011964833,0.10672056,-0.6512127,0.31102535,-0.30768266,-0.05811371,-0.7239339,0.17736068,114 -144,0.31832233,-0.21892,-0.62400126,-0.19801927,-0.3776127,0.0022731542,-0.26042905,0.22368284,0.3176377,-0.13845085,-0.141268,0.11828928,0.025792992,0.27501872,-0.13023779,-0.6969563,-0.1100266,0.22600028,-0.6530656,0.46361637,-0.42534444,0.39760256,0.045019064,0.29849255,0.065184295,0.50413,0.20692001,0.06411991,-0.054634035,0.03816248,-0.37330168,0.25714725,-0.31665313,0.1738547,-0.02160375,-0.15527129,0.114722535,-0.22050259,-0.21542828,-0.72580063,0.07346888,-0.82969844,0.5844435,-0.23749372,-0.15263371,-0.11431443,0.25925204,0.22188243,-0.49438223,-0.068513565,0.1498871,-0.40277842,-0.34586126,-0.34403285,-0.14844385,-0.5475029,-0.37106225,-0.048010167,-0.71254885,-0.2886445,-0.22693641,0.21381909,-0.34222546,-0.015925828,-0.08927082,0.4348653,-0.4157533,-0.029963596,0.2247619,-0.3362606,0.020416351,-0.5885391,0.025522232,-0.119036056,0.43869838,0.1366238,-0.21583469,0.42757156,0.36721224,0.49262163,0.36790025,-0.3536113,-0.38994113,-0.25005037,0.102257475,0.28839296,-0.2489574,-0.29823872,-0.19080216,0.041310225,0.45234734,0.25196615,0.051230326,-0.049563654,0.01618111,-0.0773303,-0.15986103,0.57513887,0.522725,-0.42241427,-0.24933973,0.336088,0.51460904,0.15816508,-0.28011402,-0.034562565,-0.14108321,-0.44808128,-0.259515,0.00091495516,-0.12356926,0.43225244,-0.1875096,0.023475686,0.8624998,-0.18035312,-0.14512059,0.07358395,0.13987878,-0.16128306,-0.3021521,-0.14927877,0.07295559,-0.58744186,-0.060573895,-0.22961421,0.687179,0.14177507,-0.60828894,0.407729,-0.29226273,0.14504203,-0.060591187,0.73528653,0.7244216,0.62959075,0.3266212,0.9219414,-0.3262124,0.23931177,-0.12063868,-0.38747194,0.03196123,-0.19384626,0.19588003,-0.5147036,0.3594471,-0.13649948,-0.012252744,0.17765054,0.34541407,-0.5113795,-0.1314878,0.26777294,0.80697554,-0.31719667,-0.13551651,0.7516795,1.1382301,0.94867414,-0.046707053,1.1957285,0.23096615,-0.28159052,-0.100965925,-0.30810732,-0.5201086,0.25253758,0.38872418,0.076020986,0.32656002,0.038249586,-0.014752205,0.32456544,-0.43697172,-0.11438747,-0.12458888,0.32188728,0.057473682,0.03736542,-0.4939933,-0.0860658,0.1394594,-0.086859785,0.35636082,0.23298164,-0.3058909,0.45935905,-0.0017155528,1.1311307,-0.11969752,-0.0076191663,0.0033285082,0.57001686,0.38577572,0.09038511,0.010422013,0.5083059,0.38744944,-0.07681465,-0.5618798,0.124417976,-0.45760304,-0.34385964,-0.17259912,-0.3496757,0.0077142077,0.22083692,-0.27295843,-0.29685062,0.02367915,-0.32371286,0.32563254,-2.6043468,-0.27038434,-0.14837542,0.3112587,-0.3081052,-0.16577671,-0.08080271,-0.49731112,0.25194442,0.20165531,0.44977996,-0.53054935,0.48893943,0.54990673,-0.62653905,-0.23194546,-0.5733617,-0.07266704,-0.14072704,0.63407683,0.19925073,-0.19264857,-0.2755312,0.054925445,0.7732548,0.030955493,0.18588564,0.59130687,0.3757443,-0.08349053,0.41154978,0.13896093,0.727638,-0.32531983,-0.23389012,0.38287833,-0.24683245,0.2558158,-0.19824511,0.09805039,0.547641,-0.42909902,-0.87335175,-0.6428097,-0.051630434,1.1570399,-0.37418938,-0.5673615,0.18201618,-0.1752572,-0.15521677,0.097282626,0.6621731,-0.042764504,0.09308095,-0.62728924,0.22004388,-0.019542877,0.26460642,0.10560133,-0.06735599,-0.261382,0.71854234,-0.1009734,0.57962745,0.17773663,0.35148895,-0.21266046,-0.25966606,0.11606897,0.8891768,0.4054961,-0.06516843,-0.15977901,-0.2772828,-0.12137072,-0.2852599,-0.01878767,0.63287884,0.6990214,-0.02302425,0.07427252,0.25706565,-0.053844746,0.092895985,-0.24785855,-0.22963998,-0.07728282,0.15439363,0.33822325,0.6562099,-0.13244793,0.36315617,-0.19517629,0.35611555,0.0036788443,-0.6624985,0.6422282,0.6179782,-0.30794534,-0.15834488,0.7292337,0.45622733,-0.5077667,0.47192875,-0.69167423,-0.35030204,0.55801064,-0.29224452,-0.37340528,0.1005334,-0.23088999,0.16590884,-0.65606743,0.22492243,-0.23146054,-0.6032862,-0.38597074,-0.12306147,-3.675448,0.1669449,-0.32436916,0.024758132,-0.37146002,-0.121835686,0.3191484,-0.5877221,-0.48576388,0.17739964,0.2582442,0.6699118,-0.08719646,0.126845,-0.24700724,-0.35876408,-0.023051571,0.3003783,0.025035245,0.287329,-0.12767272,-0.39384562,0.017075742,0.062028386,-0.47689238,0.13456677,-0.55844,-0.38160405,-0.07890596,-0.56476665,-0.17725798,0.6707062,-0.33767125,0.031844594,-0.30184487,0.21004926,-0.11122282,0.063769415,0.045699697,0.15158863,0.10254605,-0.12664987,0.26087287,-0.30903018,0.44686157,-0.12783328,0.37764028,0.15089189,0.0126439575,0.031879943,0.5394743,0.64899814,-0.3195539,1.1437227,0.31330487,-0.18300582,0.32849413,-0.11657712,-0.49230713,-0.69465,-0.42610657,0.081629746,-0.5173517,-0.24922228,0.11645709,-0.36741525,-1.0724014,0.6644284,-0.052340522,0.48645872,-0.06029688,0.36257318,0.51335233,-0.26901817,-0.068061545,-0.13954026,-0.34312946,-0.49781743,-0.21552506,-0.75521725,-0.51668346,0.04086613,0.92664784,-0.41387874,-0.009922341,0.017519506,-0.2611614,-0.09289697,0.07788045,0.28802013,0.3001388,0.5479515,-0.057401516,-0.6320165,0.35318077,-0.13111669,-0.07484929,-0.57891756,0.22673334,0.5550589,-0.7700775,0.5411883,0.4052343,0.024491219,-0.012886198,-0.52267677,-0.1915959,-0.14356123,-0.090185374,0.589145,0.20398097,-0.8440098,0.6034712,0.27161464,-0.4178676,-0.6744406,0.19933383,-0.1657061,-0.10051472,-0.13466215,0.40971145,0.19159634,-0.110492304,-0.17925343,0.052956842,-0.3530017,0.31967112,0.16765124,-0.18411057,0.35425344,-0.13562395,-0.4372403,-0.77120847,-0.29619455,-0.5671661,-0.19363898,0.20797314,0.012478837,-0.03953176,0.050364025,-0.075627714,0.49386257,-0.3152536,0.12330442,0.02133882,-0.39334697,0.40992782,0.4896013,0.3360618,-0.39033195,0.52327895,0.074681364,-0.26658112,-0.09642749,-0.03216309,0.47084695,-0.02449801,0.43776256,-0.058953013,-0.06739426,0.28614452,0.8056242,0.08178456,0.43130007,0.045641087,-0.14247163,0.4303085,-0.005644691,0.10953428,0.031722177,-0.41442928,0.0035709182,-0.1641229,0.21336517,0.63784206,0.30957633,0.49591026,0.092191964,-0.11883953,-0.08270993,0.047661748,0.082625836,-1.228172,0.40353042,0.15779285,0.7808164,0.18200137,0.25449672,-0.3614765,0.7902553,-0.16174693,0.049188387,0.37365052,-0.0029598593,-0.31636536,0.65222424,-0.59560305,0.424537,-0.06324434,-0.020463474,0.23920168,0.10206497,0.2741763,0.95275855,-0.3024338,-0.074899785,-0.10194551,-0.18126851,0.050564885,-0.32976002,-0.031553924,-0.34727228,-0.576621,0.6379293,0.34074402,0.3900557,-0.17514925,-0.12332379,-0.005713743,-0.20032574,0.26307708,-0.2056031,0.0514886,-0.0021547575,-0.4272775,-0.17085448,0.49826214,0.19640249,0.14667231,-0.25704405,-0.101703316,0.05051147,-0.11079175,-0.09904739,-0.058018252,-0.4083905,-0.063219726,-0.09371303,-0.6663007,0.6553217,-0.20845231,0.089596584,0.20739351,-0.0840362,-0.17604272,0.29576027,0.1723569,0.68344134,0.12548266,-0.17599675,-0.41625118,0.076822236,0.16928656,-0.28494936,0.22317669,-0.42997894,0.13869114,-0.52415115,0.5683299,-0.3987728,-0.46189362,0.30480227,-0.3161582,0.009169014,0.4685299,-0.10810902,-0.1365222,0.16944557,-0.051520698,-0.36975572,-0.35249206,-0.30344766,0.21203999,0.06349607,-0.027920691,-0.26655358,-0.39963835,-0.14902487,0.41766325,0.04193201,0.18501256,0.17062283,-0.07646991,-0.08463119,0.19936164,0.20474546,0.5317085,0.16422053,-0.062055264,-0.33177522,-0.41831493,-0.42667913,0.050118633,-0.025520945,0.13412526,0.081338935,-0.22181793,1.0293208,-0.06766525,1.2471071,-0.018093575,-0.4272319,0.02098773,0.69093996,-0.060248177,0.14958976,-0.17133328,0.9150093,0.62748045,-0.08182047,0.027827676,-0.60254997,-0.058519244,0.46182722,-0.42391473,-0.057144213,-0.08881729,-0.6208815,-0.47443253,0.38419655,0.18797614,0.23052342,-0.08574751,0.12304915,-0.005052185,0.20802145,0.44577816,-0.6951259,-0.1217706,0.28126186,0.16593847,-0.19706102,0.25824812,-0.36589852,0.4735942,-0.7803919,0.08862403,-0.42599303,0.06745991,-0.21342368,-0.45514306,0.24157764,-0.060493287,0.42759424,-0.32477432,-0.4016115,-0.15787284,0.49472135,0.023755586,0.05388447,0.5436801,-0.31223163,-0.05427934,0.19452009,0.60425085,1.1314771,-0.32233682,0.14940305,0.33442557,-0.40702865,-0.58341193,0.40725186,-0.36694038,-0.04083344,-0.02729098,-0.40322247,-0.32426766,0.24398385,0.22716531,0.104468174,0.22891034,-0.547139,-0.19613902,0.1735108,-0.3438273,-0.05521198,-0.00981325,0.48133644,0.5691414,-0.3814642,-0.44866392,0.061065625,0.46831152,-0.21571782,-0.6366016,-0.0132173365,-0.17233673,0.41830376,0.28476277,-0.2844333,-0.020151345,0.024775958,-0.5542925,-0.035558917,0.34936234,-0.39596665,0.14178883,-0.3452795,0.15898687,0.6678867,-0.12846638,0.20190945,-0.72557384,-0.4874588,-0.91559154,-0.32764733,0.021511538,0.13931698,-0.06008307,-0.5599725,0.05277017,-0.27919844,-0.07678523,0.14879252,-0.62310326,0.42813158,0.14478633,0.4816633,-0.3829114,-0.9613726,-0.03169297,0.15533921,-0.15772398,-0.61594087,0.6283826,-0.15444864,1.0223446,0.104766764,-0.118423134,0.107117385,-0.53017706,0.1824154,-0.4782693,-0.2851641,-0.71396506,0.05099685,119 -145,0.5913151,-0.15718399,-0.5354785,-0.10436858,-0.38206002,-0.004946629,-0.117645785,0.6725362,0.23369758,-0.4064207,-0.21461795,-0.20940547,0.07891701,0.22817574,-0.2935401,-0.48706678,0.06600399,0.18506426,-0.28361544,0.56250507,-0.45021704,0.16516949,0.17129819,0.39226308,0.28025395,0.06250014,0.203888,0.036003962,-0.1983814,-0.38936612,-0.11422641,0.36620182,-0.41919076,0.092123434,-0.3576613,-0.4798451,-0.076610886,-0.46554774,-0.27186057,-0.80682176,0.30927074,-0.85539323,0.4268066,0.16874097,-0.43712643,0.27842045,0.08322358,0.046886586,-0.24573237,-0.1493296,0.118811555,-0.16361,-0.034090262,-0.21946952,-0.23867017,-0.31250852,-0.7215777,-0.019523537,-0.36896268,0.03875963,-0.4363294,0.23335934,-0.31619588,-0.13790129,-0.15854457,0.47514984,-0.476412,0.014835533,0.10110486,0.04717432,0.32240158,-0.6831888,-0.19271678,-0.17095052,-0.08004544,-0.1671219,-0.30046162,0.23058316,0.35887283,0.4604858,-0.041127797,-0.27298015,-0.442719,-0.00904704,0.08695283,0.28932223,-0.25268883,-0.66750205,-0.17082952,-0.104760066,0.31622174,0.44350657,0.29580525,-0.14801775,-0.13063209,-0.07001677,-0.22083575,0.44362402,0.5101915,-0.3819289,-0.15570368,0.1434877,0.4739652,0.19278048,-0.17661531,-0.045800947,-0.06915603,-0.6561288,-0.1477036,0.08523663,-0.30342236,0.68330395,-0.25045878,0.16019915,0.6198626,-0.1693962,-0.11266533,0.25960657,0.16039737,-0.13406661,-0.4360368,-0.34741777,0.32145154,-0.57969075,0.19110475,-0.25341243,0.78553796,-0.0060305875,-0.8521084,0.25356534,-0.5073102,0.09737036,-0.08587707,0.5564626,0.632965,0.40084967,0.49928647,0.7326572,-0.4030226,-0.037947673,-0.0649442,-0.24594314,0.098990925,-0.2483469,-0.101576895,-0.5104632,-0.017743273,-0.14525665,-0.09134711,0.11480085,0.67234623,-0.56216276,-0.120947234,0.38662058,0.6040401,-0.28330535,-0.19306657,0.9037369,1.0914683,1.1981671,0.059165172,1.0223373,0.14618705,-0.14639282,0.082296945,-0.12650378,-0.6228311,0.28220728,0.37183106,0.07299099,0.026930816,-0.007580175,-0.058299847,0.38223788,-0.48224875,-0.13124654,-0.16502641,0.07005135,0.025524434,-0.15169166,-0.4701051,-0.4484213,-0.050569043,0.17445844,-0.08035879,0.3367939,-0.22727016,0.48157737,0.014440354,1.3909612,-0.0145445345,-0.077151746,0.16462778,0.51116735,0.23728466,-0.06294597,-0.05867495,0.29905722,0.23393328,0.045882706,-0.4245844,0.07579504,-0.19668564,-0.591858,-0.017290263,-0.34098235,-0.18822289,-0.08105873,-0.6825705,-0.17450759,-0.079383664,-0.34846509,0.53512746,-2.5939841,-0.022063542,0.094167955,0.18551676,-0.09544707,-0.4061024,-0.014830065,-0.4586005,0.5095004,0.34209242,0.47905558,-0.7363378,0.3172273,0.5162347,-0.55850106,-0.060684778,-0.7835781,-0.3051736,-0.0987172,0.33696845,0.16876628,-0.124500595,0.11056207,0.06564529,0.7510275,-0.013699434,0.3057685,0.24527882,0.27361667,-0.28422675,0.41315466,0.08733454,0.4117104,-0.18497995,-0.30639592,0.41294083,-0.2602469,0.25650984,-0.048797164,0.09667882,0.5556084,-0.50459915,-1.0112945,-0.65709686,-0.15902151,1.0933543,-0.14777565,-0.4444918,0.31825176,-0.31722298,-0.21070156,-0.043334257,0.5113194,-0.009850685,0.01585466,-0.75809383,-0.0007271806,-0.103204004,0.17060277,-0.007508429,-0.069974236,-0.4346236,0.8915938,-0.101485215,0.41557753,0.4535796,0.17661761,-0.4351507,-0.5493229,-0.004143991,0.9436595,0.53778994,0.10986614,-0.31700078,-0.21065423,-0.3378074,0.030783566,0.14364132,0.5596804,0.66510874,-0.12412796,0.24008362,0.22918914,0.18725558,-0.045594964,-0.2078553,-0.2832785,-0.17761175,0.01291007,0.63126576,0.82548565,-0.09927807,0.3545613,-0.22839098,0.35102418,-0.0872607,-0.50888455,0.41629037,1.0039353,-0.134259,-0.20914431,0.73375076,0.5690227,-0.2416982,0.5890186,-0.61832464,-0.32305497,0.34104165,-0.09063207,-0.45029843,0.17386644,-0.33558255,0.036961447,-0.83897305,0.30702305,-0.3810961,-0.4670246,-0.74408287,-0.21120402,-2.8925936,0.41546422,-0.32849646,-0.1551742,-0.092151806,-0.28589928,0.23703724,-0.7582251,-0.5754984,-0.020837903,0.22562766,0.6551774,-0.045789238,-0.0068119722,-0.23682605,-0.43673566,-0.16287199,0.13554038,0.117511526,0.29255423,-0.19723015,-0.43119892,0.01733659,-0.195733,-0.40917167,-0.14228617,-0.72510046,-0.4680242,-0.22931947,-0.382934,-0.3079422,0.62449634,-0.33636132,0.09544166,-0.101237096,-0.033646878,-0.011419074,0.27917972,0.15177079,0.14869396,-0.100411095,-0.08593979,0.01949112,-0.2365995,0.07655667,0.03951614,0.21126483,0.5397553,-0.15356404,0.24945664,0.56585133,0.72826666,-0.17352526,1.0484849,0.49166,-0.044302765,0.22508939,-0.14131941,-0.32942227,-0.7500451,-0.24647838,-0.06592323,-0.508507,-0.3886552,0.04656783,-0.29120547,-0.8163549,0.6593993,-0.033141874,0.22604321,-0.06542554,0.30817774,0.57713675,-0.24300379,-0.11831471,-0.09804215,-0.12823455,-0.5614738,-0.4040905,-0.7748217,-0.5659779,-0.058011103,1.10131,-0.19505781,0.010339165,0.13485837,-0.07416981,0.01825677,0.16253895,-0.11579719,0.031606667,0.49672553,0.040189438,-0.57479197,0.47258663,0.11505261,-0.26060787,-0.41998816,0.27375826,0.5250329,-0.5845314,0.60427976,0.50257355,0.10670876,-0.16993837,-0.7910227,-0.17838506,-0.08716537,-0.17246428,0.66185445,0.43036583,-0.73833364,0.5281788,0.3922786,-0.23693706,-0.823715,0.6088035,-0.045151852,-0.42688695,-0.14192803,0.33044443,0.10372729,0.019482516,-0.14699337,0.38567993,-0.5469001,0.31065372,0.29834569,0.0071133403,0.13349219,-0.21837778,-0.12001392,-0.8036799,0.1497327,-0.57003886,-0.40742233,0.18282229,-0.0071812826,-0.14779444,0.2927475,0.16196373,0.4365185,-0.30838615,0.22013786,-0.1334753,-0.24143623,0.38146237,0.52981055,0.5288538,-0.34767506,0.64224935,0.030185735,-0.16495846,-0.20674556,0.11728051,0.43581396,-0.08049409,0.5370146,-0.19684838,-0.17122819,0.27565315,0.58513236,0.1973017,0.44132057,-0.09089152,-0.080246,0.2434517,0.09341981,0.398092,-0.13574713,-0.53017366,0.10452973,-0.30720586,0.10121034,0.5258822,-0.081736274,0.24501804,-0.017389575,-0.12710196,0.07260856,0.23381716,-0.029284218,-1.3072308,0.26720804,0.14097077,0.88545495,0.7263257,0.0389695,-0.047214072,0.7173216,-0.37539154,0.1342341,0.48858115,0.22937289,-0.53736496,0.63497424,-0.76643395,0.33911768,-0.16776152,0.021058861,-0.071408056,-0.12644917,0.46416202,0.6435848,-0.2524415,0.11248228,0.07529692,-0.35425168,0.18633531,-0.45758596,0.18865356,-0.49814045,-0.34309682,0.8030527,0.5516978,0.28692588,-0.19756825,-0.0027260084,0.18279535,-0.20772512,0.21803634,0.07870065,0.2402624,-0.12281105,-0.5737226,-0.026745073,0.5324895,-0.1128982,0.18872294,-0.04417863,-0.24308124,0.12886795,-0.10664971,-0.17843345,-0.058875374,-0.6474028,-0.027424676,-0.34219763,-0.33789834,0.52118576,-0.26046196,0.09259768,0.27302858,0.07708415,-0.25036684,0.13247178,0.20930843,0.5789205,0.03579456,0.047759794,-0.1865882,0.3069184,0.085898496,-0.1579038,-0.22239749,-0.19449523,0.093495674,-0.55654466,0.44171014,-0.08692939,-0.24438949,-0.040186584,-0.03714793,0.008368729,0.5767277,-0.035610422,-0.23758069,-0.18833777,-0.035138033,-0.21256344,-0.17953353,0.016009148,0.31607446,0.03798656,-0.054890957,-0.03943036,-0.0817262,-0.01572119,0.43234357,0.04669148,0.41629353,0.3353217,-0.035179242,-0.56756747,0.087864116,0.06911517,0.4952729,-4.17312e-05,-0.12993574,-0.3133408,-0.29612732,-0.31757793,0.033975918,-0.21160272,0.41396013,0.15529732,-0.14355901,1.1257404,0.017565079,1.335636,0.01949505,-0.39727888,0.011129225,0.6084085,-0.12688987,-0.05719234,-0.19795375,1.0486404,0.5272181,-0.11673551,-0.07304867,-0.26879558,0.181696,0.22312097,-0.16972929,-0.25834364,-0.0607448,-0.7012765,-0.052467417,0.14615451,0.3572419,0.25466424,-0.22790012,0.048771944,0.40076855,0.09352521,0.34260765,-0.3753069,-0.11198514,0.30915913,0.34717375,-0.11390791,0.09723795,-0.48147285,0.30028912,-0.5516138,0.074065015,-0.27215368,0.14335069,-0.32586783,-0.38639933,0.27363613,-0.056071043,0.32022947,-0.21785723,-0.2849281,-0.17215036,0.4422918,0.16499011,0.22297923,0.49688175,-0.33108187,0.18320863,0.06986804,0.38659772,1.2297264,-0.34226218,-0.26709116,0.2802962,-0.32408053,-0.65501595,0.4799363,-0.3066366,0.043441452,-0.13048851,-0.24839024,-0.55108356,0.23328498,0.2374246,0.018096328,0.13146813,-0.6481804,0.0026877462,0.32869062,-0.3211203,-0.2287472,-0.28500023,0.22474518,0.50279194,-0.2796753,-0.4102152,0.03246398,0.21793851,-0.21826394,-0.58069867,0.12666109,-0.3461875,0.32402602,0.03391267,-0.41437814,0.14207755,-0.024660131,-0.45306775,-0.03515749,0.24976379,-0.2447202,0.11711038,-0.48150718,0.15282568,1.0015521,-0.12857008,0.13343531,-0.42377317,-0.5948256,-0.8886601,-0.28505886,0.5676749,0.010678347,0.04810453,-0.7124144,-0.040727377,-0.26559705,-0.18404369,-0.124556385,-0.2769938,0.4869353,0.10998916,0.37262765,-0.11421537,-0.62164843,0.30795166,0.10016024,-0.012429872,-0.3830586,0.47313946,0.06279471,0.8400675,0.15529521,0.09112736,0.2490289,-0.5511939,0.13168913,-0.12836471,-0.20908216,-0.51487553,0.008059283,129 -146,0.57899964,-0.254408,-0.4403815,-0.22795591,-0.3783954,0.04255496,-0.31950843,0.39829364,0.18490626,-0.34953645,-0.16200699,-0.008658939,0.15420206,0.19378595,-0.056081023,-0.56152993,-0.23184414,0.11183705,-0.6711055,0.50216794,-0.6990206,0.3161582,0.11009004,0.38638097,0.1590608,0.3823725,0.21015568,-0.044618152,-0.11112021,-0.17100035,0.11888923,0.16523576,-0.77726746,0.12694976,-0.12671407,-0.28009805,-0.03123595,-0.47414044,-0.19361718,-0.5887331,0.14375782,-0.96667325,0.60218567,0.048508443,-0.2949332,-0.14738728,0.085678644,0.44020215,-0.35488778,0.2141665,0.25461248,-0.1913393,-0.19775018,-0.42617315,0.10406387,-0.30556822,-0.3616052,-0.11800213,-0.41226998,-0.30652878,-0.082844146,0.21954094,-0.18779445,0.12842825,-0.20726004,0.34638056,-0.3860688,-0.06824777,0.29224616,-0.07884194,0.11465978,-0.6191854,-0.18565607,-0.137548,0.33253005,-0.08810889,-0.31599835,0.3564643,0.19967887,0.5105377,0.2191156,-0.20903869,-0.13482735,-0.17039753,0.31691772,0.34571183,-0.17961879,-0.3503844,-0.24305204,-0.09980202,0.35883063,0.31037363,0.052492835,-0.4014289,0.11379107,-0.09175657,-0.28972623,0.37079984,0.40790814,-0.1365111,-0.26701078,0.08525119,0.5055639,0.22802635,-0.21103285,0.13583048,0.06330435,-0.5244586,-0.10167038,0.22628795,-0.07982979,0.40128088,-0.11138819,0.021964049,0.80992734,-0.14852224,0.12620941,-0.03384896,-0.084068015,-0.010669852,-0.47101894,-0.42387897,0.19718958,-0.5927778,0.013033446,-0.35891977,0.7451449,0.069563486,-0.66211694,0.31801832,-0.6391608,0.069061905,-0.03224641,0.5594493,0.6315393,0.2695457,0.26225317,0.67777944,-0.23355995,0.22781123,-0.08445003,-0.21827678,0.021231882,-0.23547453,0.23387127,-0.40306348,0.08784451,-0.2583405,-0.10293589,0.036052298,0.320062,-0.5007554,-0.062111076,0.2123811,0.5736841,-0.40738228,0.20565687,0.689024,1.2597691,1.0171098,0.20912078,1.3991708,0.40371668,-0.21060754,0.096163176,-0.25520265,-0.76948243,0.13554873,0.29981098,-0.14172462,0.33402213,-0.059407696,-0.035390116,0.3101996,-0.59648806,0.11515226,-0.031407904,0.4835388,0.0606184,0.055318642,-0.5093313,-0.18078989,0.11229359,-0.032187536,-0.0708785,0.16067924,-0.28043354,0.25975075,-0.005991407,1.2155054,-0.16894746,0.04439138,0.21490057,0.38276485,0.25514728,-0.23328279,-0.012860759,0.5103745,0.39031056,-0.13181238,-0.6146537,0.24664256,-0.16810416,-0.37753218,-0.19026984,-0.3261853,0.048816662,0.042582892,-0.39953068,-0.25876012,0.029774714,-0.22979045,0.42745012,-2.6819506,-0.2823926,-0.201378,0.34295234,-0.3077052,-0.34619623,-0.05532264,-0.45458123,0.25387323,0.15186581,0.44895527,-0.5394839,0.5188524,0.5721165,-0.45446682,-0.035610374,-0.732415,-0.2736268,-0.10098602,0.35075074,-0.043602277,-0.045202184,-0.22715114,0.19423126,0.6860623,0.021384196,0.18376619,0.47202176,0.2873051,0.14387533,0.71545565,0.14847909,0.4627666,-0.33023605,-0.2539527,0.34668007,-0.36089933,0.13071102,0.06965713,0.008406495,0.6632531,-0.5617074,-0.8078625,-0.6883533,-0.34081644,0.87306947,-0.32882956,-0.47007218,0.21484539,-0.25427046,-0.14560753,0.06866274,0.5354078,-0.052860137,0.08333394,-0.89651453,0.04687023,-0.06981392,0.25832084,0.10616123,0.01307499,-0.4159554,0.7886269,-0.17018507,0.5694004,0.3632376,0.2045259,-0.05879058,-0.302513,0.12393175,0.9568915,0.3354732,0.02273623,-0.16062692,-0.23485303,-0.09757422,-0.11694338,0.14795205,0.5895472,0.7698901,-0.05121986,0.20841798,0.23175332,-0.19414939,0.040840242,-0.14962603,-0.31000417,-0.06521168,0.043043472,0.542973,0.51583284,-0.12876816,0.4857705,-0.20394543,0.39442435,-0.12887014,-0.48985198,0.4403375,0.6110643,-0.056797322,-0.13264194,0.60293216,0.5322578,-0.362482,0.54182166,-0.64685947,-0.08928129,0.61615264,-0.14385039,-0.32893693,0.322579,-0.32135984,0.26379007,-0.8553564,0.4415264,-0.48372942,-0.39602703,-0.6273128,-0.34080097,-2.338206,0.3045067,-0.14740616,-0.15535322,-0.2168496,-0.11639986,0.38402602,-0.6525996,-0.58580714,0.20475508,0.09637358,0.5022421,0.014323316,-0.08302485,-0.16014916,-0.20856546,-0.19352403,0.23229013,0.1535415,0.2253091,-0.13699366,-0.37549305,-0.0541196,0.0076341727,-0.423946,0.163296,-0.5208203,-0.5435398,-0.038595524,-0.501453,-0.2994631,0.59934264,-0.35217813,0.007893983,-0.16963257,0.044810828,-0.23353066,0.24560528,0.12410058,0.338605,0.15659098,0.14257279,-0.029962642,-0.35301018,0.28711167,0.11556446,0.21396665,0.013726806,-0.022180812,0.13687126,0.30749118,0.66186744,-0.1178336,0.9119083,0.35145664,-0.11803723,0.16256768,-0.39272907,-0.3264485,-0.46688417,-0.31298593,-0.16221632,-0.35832492,-0.39875087,-0.02310938,-0.28510702,-0.7385401,0.6499279,-0.07614059,0.110742114,0.005328531,0.2688464,0.21385369,-0.06708182,-0.03154514,-0.16158618,-0.053972166,-0.58612984,-0.31176433,-0.60176146,-0.3655824,-0.03286668,0.9889934,-0.23575255,0.07608021,0.048940584,-0.4465313,0.121724494,0.028595822,0.028801512,0.31916744,0.6190871,0.06613911,-0.57615674,0.29404035,0.06271794,-0.22637607,-0.58687913,0.107535295,0.81053704,-0.77218884,0.70437986,0.37296453,0.116115205,-0.06518614,-0.57299614,-0.28855744,0.14003038,-0.3108609,0.53491604,0.13095835,-0.66284156,0.47557005,0.38613757,-0.3520648,-0.7141155,0.37931588,-0.08378104,-0.3437701,-0.034400955,0.41272274,-0.08262069,-0.011688403,-0.18561116,0.3527085,-0.27726704,0.27012596,0.27612197,-0.15673308,0.05405027,-0.14035584,-0.21794628,-0.64109313,0.060477886,-0.45381483,-0.3213104,0.28956464,-0.02649643,-0.008805931,0.2601254,0.25725392,0.4078456,-0.25362608,0.15964633,-0.15292495,-0.45732716,0.28965092,0.42958647,0.34428826,-0.28695068,0.55621994,0.06352497,-0.23656633,-0.079448156,-0.02749416,0.36501044,-0.11607038,0.28992593,-0.27150795,-0.07915301,0.39646772,0.74713504,0.083607644,0.59063566,0.05556265,-0.011648679,0.3868889,0.16519406,0.070648655,0.04780094,-0.38600424,-0.0020633459,0.1897234,0.3146507,0.27561206,0.25461343,0.4144989,-0.05426074,-0.21058944,0.048057146,0.2676421,-0.07063363,-1.3550745,0.2916285,0.09264626,0.7101721,0.5931815,0.028650722,-0.11710841,0.4688195,-0.26021922,-0.010387715,0.2458507,0.05449655,-0.3760257,0.6004308,-0.4575938,0.29326648,-0.2516827,-0.017719146,0.045426447,-0.01698055,0.41765362,0.75343144,-0.22872922,0.002344334,0.0028070014,-0.09868849,-0.037642922,-0.3607407,0.019241165,-0.37351736,-0.40564558,0.8502982,0.3959033,0.41892752,-0.27712488,-0.03421002,0.109681636,-0.13058443,0.29004416,-0.059638355,-0.10968589,0.3655087,-0.5424406,-0.16745465,0.5006201,-0.1734806,0.031137427,-0.17536478,-0.27540305,0.061943196,-0.079284236,0.03527857,-0.019389426,-0.7344459,-0.09905257,-0.47550705,-0.40033397,0.32528883,-0.22960402,-0.014163422,0.15232088,0.03200487,-0.051548276,0.3532411,0.23344591,0.8310128,0.017187648,-0.28999418,-0.18969245,0.041598815,0.28093445,-0.19752893,0.19050385,-0.35492045,0.07972837,-0.7787115,0.58997524,-0.086700775,-0.43878275,0.25506353,-0.21807799,-0.09773424,0.44116828,-0.23520054,-0.17144366,0.15669769,-0.13438277,-0.31967866,-0.09040513,-0.24981858,0.17867626,0.2292082,0.0714675,-0.09706845,-0.23751426,-0.07794224,0.6005488,0.13594714,0.5799951,0.41162014,0.0061870576,-0.19246665,0.14028835,0.10827398,0.5110479,0.023756424,-0.052607495,-0.3336587,-0.3496152,-0.2072321,0.37274355,-0.11597809,0.25197697,-0.022171088,-0.3857834,1.0083978,-0.0051424345,1.0973632,-0.032650627,-0.4118077,0.112415716,0.5127893,-0.1416486,0.118638925,-0.4291207,0.83842653,0.52665544,-0.09017714,-0.036081478,-0.4890052,-0.16827805,0.27676165,-0.28539672,-0.013417474,-0.16632767,-0.5903574,-0.38965544,0.27998143,0.32817534,0.0022369584,-0.0043168487,0.21931152,0.11909935,0.10559769,0.37829238,-0.5739809,-0.032765977,0.08241025,0.20167603,-0.009172773,0.16881593,-0.4424071,0.33318824,-0.7196064,0.18462922,-0.425908,0.025114765,0.0013546825,-0.22152323,-0.010768275,0.013308684,0.32415974,-0.49498403,-0.4173644,-0.12069213,0.5735358,-0.097192496,0.17710397,0.5960301,-0.27915424,0.049100243,0.19810744,0.5051874,1.2561042,-0.29380828,0.04559292,0.15732011,-0.40333414,-0.5684893,0.41000348,-0.20634086,-0.020835916,-0.097288944,-0.43984905,-0.4877461,0.22205232,0.12375608,-0.11547132,-0.06312029,-0.46106845,-0.22977348,0.49617043,-0.29651177,-0.1885293,-0.13333702,0.19884844,0.7227151,-0.22796759,-0.3224972,-0.049728747,0.27141267,-0.39686865,-0.37514308,-0.17674485,-0.36977735,0.36364773,0.14928405,-0.1934019,-0.06838539,0.1650811,-0.44867584,-0.02601641,0.2285586,-0.28915182,-0.013687539,-0.10586984,-0.11149363,0.8824069,-0.084177844,-0.17137317,-0.6417104,-0.6274863,-0.90846163,-0.35124537,0.3527725,0.14022613,0.104562216,-0.47303772,0.1643569,-0.09001476,-0.030803705,0.19303522,-0.47541034,0.37270057,0.24713853,0.5885744,-0.27748907,-0.84765804,0.1322795,0.02889625,-0.119750835,-0.5961125,0.60940194,0.03254099,0.7737778,-0.005040602,-0.13734695,-0.15764444,-0.4249217,0.19873527,-0.29601723,-0.10191993,-0.8163555,0.045555606,131 -147,0.4186271,0.010670464,-0.51006985,-0.22406048,-0.37000704,-0.056813456,-0.2525877,0.31046587,0.24254204,0.12576427,-0.13622202,0.08323643,0.07349345,0.33430722,-0.09680704,-0.59982747,0.011824086,0.10698166,-0.8916646,0.5344527,-0.44673258,0.3687223,0.13556369,0.389164,0.120763876,0.35308826,0.25094727,0.014859096,-0.0050669513,-0.27304015,-0.20225868,0.16188209,-0.68525094,-0.048426572,-0.2128267,-0.34480304,0.045610547,-0.5782869,-0.12505665,-0.8165886,0.006685199,-0.78106755,0.4980536,-0.25546944,-0.22394636,-0.0020793756,0.38370374,0.4083026,-0.15411045,-0.17426355,0.26539814,-0.23153254,-0.12962207,-0.037757874,0.14185396,-0.4406966,-0.34450155,-0.11058629,-0.6630648,-0.4648317,-0.1219491,0.22859357,-0.42050323,0.07827627,-0.16788119,0.5032734,-0.45431295,0.0006184697,0.19717915,-0.3724797,0.23247099,-0.6001738,0.048332993,-0.017012913,0.5310647,0.08654733,-0.11214137,0.41197804,0.33567974,0.2698471,0.20516165,-0.42316195,-0.35464445,-0.22998247,-0.12621404,0.4937125,-0.18766494,-0.2652322,-0.116626434,0.13011733,0.50783485,0.3641735,0.021506993,-0.022582268,-0.05705761,-0.044800777,-0.17872384,0.5200373,0.5155298,-0.30484474,-0.263581,0.38032982,0.59123343,0.4360332,-0.37300274,0.013090539,-0.08789388,-0.4028658,-0.055587668,0.008671848,-0.0070682527,0.47537223,0.0012540062,0.19310637,0.91268176,-0.091632,-0.047683112,0.008514166,0.02018348,-0.051662333,-0.17499144,-0.24578705,0.32392976,-0.59753144,0.027640644,-0.24682721,0.8040053,0.033899385,-0.81632096,0.4231895,-0.47759506,0.03475744,-0.028201938,0.58613694,0.7466729,0.49516323,0.30789,0.7583665,-0.20239566,0.26291806,0.035056036,-0.39787108,0.04018817,-0.25937748,0.34861523,-0.47178793,0.1082171,-0.10436699,0.017548887,0.11683297,0.34986836,-0.5681897,-0.27482828,0.339588,0.7419529,-0.23715073,-0.045378827,0.7611317,1.1419206,0.8313016,-0.056528077,0.8415955,0.2993785,-0.07110928,0.0023656606,-0.06812153,-0.4379439,0.12782522,0.41743892,-0.05993082,0.26887667,-0.14199685,-0.09091387,0.35158202,-0.3132331,-0.0986943,0.12113943,0.28842768,0.20267431,-0.16643625,-0.46271846,-0.22555478,0.11656552,-0.02252737,0.12130717,0.29905388,-0.19028142,0.34552586,-0.14128917,1.2309285,0.13202974,-0.024633862,0.09571614,0.7177049,0.32837996,-0.016331278,-0.029800517,0.3033666,0.44712335,0.12521075,-0.4647816,0.3203002,-0.4550486,-0.45589736,-0.103355214,-0.49251893,-0.15215807,0.19710036,-0.48550063,-0.11216924,0.03920544,-0.02859996,0.38478768,-3.0245478,-0.16399956,-0.20681763,0.2382151,-0.2739108,-0.096846305,0.013797192,-0.58858454,0.14269009,0.36566597,0.5707914,-0.59914184,0.5552456,0.4654546,-0.5989903,-0.13870332,-0.6027235,-0.10063616,0.053829692,0.4158362,0.08944061,-0.15430087,-0.11334017,0.23864676,0.8104957,0.18242817,0.19605729,0.4562762,0.27561077,-0.062119834,0.5143896,0.024447449,0.51173896,-0.18677928,-0.1644456,0.38127372,-0.2991591,0.08555094,-0.114101216,0.1442359,0.63549644,-0.27338174,-1.122911,-0.5495176,0.018673293,1.0370191,-0.40876618,-0.6674954,0.29794776,0.017703025,-0.01583608,0.25186056,0.55478656,-0.05615167,0.18461952,-0.5420143,0.1719278,-0.09087442,0.12882607,-0.0092148585,-0.09163638,-0.269066,0.64243144,-0.01661017,0.65050435,0.010402141,0.27557862,-0.18497284,-0.22382946,0.15275508,0.54183376,0.4197273,-0.13360135,-0.17606834,-0.04196792,-0.18823245,-0.19240442,0.055755477,0.6622023,0.753315,-0.0682705,0.10644602,0.14059435,-0.15026616,0.057660937,-0.12876278,-0.2207623,-0.06604428,0.102782086,0.3548754,0.7041592,-0.05906807,0.55351543,-0.16486189,0.38143855,-0.053579163,-0.69619876,0.6463127,0.28737146,-0.1445726,-0.042543832,0.5039263,0.40420926,-0.38449854,0.43854016,-0.6459162,-0.29480207,0.70924175,-0.10264847,-0.547184,0.19678387,-0.19832931,0.060302675,-0.7411376,0.21905069,-0.3300519,-0.54537296,-0.2111219,-0.19055793,-3.353157,0.07067217,-0.19470753,-0.050013814,-0.351002,-0.17635606,0.19029637,-0.72587377,-0.5511386,0.14630422,0.26993865,0.7493572,-0.09676116,0.063709125,-0.26997992,-0.33424872,-0.11945172,0.31571385,0.09808926,0.294378,-0.083221525,-0.2279629,-0.18570192,0.043302134,-0.54621184,0.07949445,-0.45592672,-0.5113156,-0.14425927,-0.5429976,-0.28191045,0.5477633,-0.35389414,0.17086247,-0.2729862,0.12480313,-0.2027419,0.123675086,0.16867732,0.21046825,0.14893545,-0.032675948,0.34248954,-0.35787666,0.43220425,-0.04699838,0.5642074,0.045985598,0.178795,0.17096621,0.53881234,0.5660097,-0.16468343,1.0333463,0.2709802,-0.040966053,0.39778408,-0.22953597,-0.283269,-0.65540963,-0.37736756,-0.0853765,-0.36798993,-0.35409996,0.09538441,-0.2771902,-0.7844403,0.6616714,0.05961182,0.43545887,-0.190863,0.37633982,0.48682675,-0.33980456,-0.12055855,0.010584865,-0.0948912,-0.4886512,-0.13370642,-0.77224797,-0.53688836,-0.26323354,0.9401801,-0.3056006,0.01792102,-0.06883826,-0.066697374,0.13431427,0.039333586,0.28859073,0.13486482,0.38832152,-0.16066629,-0.7257849,0.4181305,-0.32862914,-0.035650633,-0.57961357,0.21292725,0.48173,-0.74960035,0.46450442,0.35542062,0.22244763,-0.08766465,-0.6677891,-0.10245622,0.078645386,-0.07193918,0.42345116,0.19374163,-0.87594664,0.5705957,0.17942508,-0.47440416,-0.6369002,0.37351105,-0.0805622,-0.4284314,-0.084501624,0.21254563,0.1612924,-0.12400341,-0.16655196,0.104548335,-0.587352,0.19773576,0.25453344,-0.00065755646,0.54887927,-0.03704698,-0.30616748,-0.64187926,-0.12902944,-0.53178287,-0.28213292,0.21522684,-0.028542582,-0.032401964,0.20854276,0.0024600823,0.3304383,-0.32851833,0.1511843,-0.02336954,-0.34745535,0.565297,0.49528104,0.37283725,-0.460001,0.5800293,0.1975126,-0.35217988,0.060361758,-0.06450994,0.43269265,-0.03749345,0.41078818,-0.07514488,-0.09539927,0.24122815,0.6041471,0.14346953,0.46519887,-0.13167734,-0.10139484,0.2264834,-0.11254451,0.17814003,-0.06297644,-0.528911,-0.017045472,-0.17763287,0.10074297,0.6024191,0.23661837,0.24240485,0.14313607,-0.15105256,0.11585034,0.12098304,-0.15534343,-1.1039776,0.4687557,0.32484356,0.9275443,0.18161726,0.19890356,-0.36160177,0.7993158,-0.28731963,0.12696391,0.27048984,0.19258317,-0.37000147,0.89143384,-0.785807,0.47847825,0.034779694,-0.20393296,0.1776258,0.14282349,0.3796082,0.6645711,-0.24112718,0.015930127,-0.04509486,-0.3694795,-0.05382582,-0.32116136,0.0025983015,-0.39557716,-0.38492423,0.6997233,0.30265632,0.1626312,-0.27915755,-0.17167336,-0.024208065,-0.21964,0.23778555,-0.28894314,-0.02456096,-0.009918304,-0.30727065,-0.2601579,0.54336286,0.044154517,0.15060069,-0.20665315,-0.1771298,0.053998854,-0.12602262,0.0075783334,0.1020445,-0.48770678,0.24944563,-0.15991129,-0.521537,0.6062134,-0.23197569,0.0643913,0.046034932,-0.06217873,-0.07123776,0.32852545,0.07372638,0.51185334,-0.10266983,-0.12620142,-0.31958935,0.017871412,0.17646447,-0.23229384,0.020856833,-0.44380477,0.005397594,-0.4666598,0.39098153,-0.28265926,-0.48117274,0.097897135,-0.1923969,0.036958378,0.44485343,-0.10816606,-0.04545768,0.015747648,-0.1438621,-0.3256773,-0.16937432,-0.36802286,0.16508563,0.16344959,-0.23325248,-0.07246323,-0.15439156,-0.05062938,0.5574143,-0.19507676,0.39259326,0.18441163,0.04074902,-0.21691173,0.15715891,0.14421953,0.4666352,0.024930825,0.0878813,-0.4685536,-0.41581073,-0.36530086,0.18276088,-0.05506824,0.25155613,0.20226757,-0.04848155,0.95669824,-0.029165141,1.1927212,-0.094750784,-0.3551572,0.10318418,0.53449523,-0.06806781,-0.025291242,-0.33652547,0.8839228,0.48600426,-0.07683183,-0.011207839,-0.43735823,-0.033396948,0.39879483,-0.32505903,-0.06555977,-0.1186354,-0.40575588,-0.39327765,0.22850448,0.15858062,0.15488611,-0.090052366,-0.07393642,0.18269889,0.17123808,0.40349862,-0.65934503,-0.21939185,0.16818987,0.21604042,-0.2064649,0.12793414,-0.48927963,0.39797333,-0.84309715,0.19805966,-0.5908921,0.12631789,-0.16857177,-0.35885775,0.06617601,-0.0042586285,0.45556277,-0.24865618,-0.46782067,-0.029078461,0.38303775,0.22680016,0.081422426,0.5837676,-0.27424043,-0.030849172,0.12710936,0.6115599,1.0668372,-0.5284922,-0.03664391,0.2299288,-0.3687462,-0.5832216,0.31070533,-0.39738473,0.012416196,-0.0018475612,-0.36348674,-0.39378548,0.27730313,0.30860424,-0.01455218,0.031234097,-0.5940418,-0.12665303,0.18497616,-0.30988026,-0.12684669,-0.34211415,0.39217234,0.7517465,-0.22751802,-0.383504,-0.08063046,0.41171777,-0.07204437,-0.5430172,0.17938513,-0.2043603,0.34119472,-0.045147248,-0.3596839,-0.13101204,0.16101478,-0.4562696,0.20045325,0.39038822,-0.33564535,0.10576062,-0.23896728,0.13824421,0.9043775,-0.12786599,-0.011929282,-0.6409127,-0.5566,-0.8249028,-0.44926357,0.08342831,0.17850795,-0.11642974,-0.43464926,-0.019695861,-0.27685907,-0.16123568,-0.08816314,-0.51185715,0.23142354,0.07669166,0.63468134,-0.31655654,-0.9239596,0.053791683,-0.027811201,-0.00035663147,-0.5093163,0.5321834,-0.11029053,0.76950145,0.06902258,-0.16663189,-0.028403334,-0.3765389,0.19720145,-0.40742016,-0.24715973,-0.6723176,0.11804345,133 -148,0.4621962,-0.15829991,-0.6310392,-0.04480741,-0.27720916,0.090683244,-0.19711892,0.42082995,-0.0047169393,-0.43096364,-0.09280891,-0.17060712,0.14478105,0.62864125,-0.1636549,-0.560962,0.08954671,0.2708251,-0.6630193,0.6235578,-0.42986935,0.3545283,0.02461424,0.3033649,0.24497825,0.38110343,0.3173886,-0.14001933,-0.4567443,-0.03942454,-0.2481921,0.34662858,-0.3831208,0.10689159,-0.16249941,-0.47057977,0.020106198,-0.28842914,-0.4216343,-0.6290533,0.2637574,-0.74772257,0.5164777,-0.18287936,-0.26386708,0.37231424,0.16303906,0.3395654,-0.23498726,0.016911779,0.21233936,0.009337576,-0.12625794,-0.27536538,-0.33064917,-0.70576286,-0.65526986,0.07115798,-0.5309726,-0.10641025,-0.15337227,0.22557673,-0.2783553,0.09063141,-0.12391046,0.28766248,-0.4115865,0.13813263,0.049561627,0.020817392,0.05377637,-0.6246207,-0.19291013,-0.099078044,0.3366423,-0.16804393,-0.043865077,0.277485,0.3658537,0.41390607,0.024061752,-0.07347237,-0.50243336,-0.15699682,0.16994019,0.4842414,-0.17781568,-0.66800225,-0.12098063,-0.10079284,0.14344423,0.04417683,0.17968483,-0.31595275,-0.005617716,0.015708063,-0.41400686,0.37135634,0.42303535,-0.385654,-0.27205226,0.38419983,0.37758845,0.107317306,-0.30641833,-0.13769831,-0.10936216,-0.51282,-0.09906808,0.08678802,-0.086345695,0.5991623,-0.16486059,0.28783655,0.648703,-0.16178213,0.021757105,-0.13182616,0.05408567,-0.10687171,-0.18826705,-0.25810036,-0.072185084,-0.4287701,-0.021489104,-0.18664879,0.6621835,0.108484454,-0.7695252,0.40526617,-0.5035267,0.07358561,-0.07571748,0.29384625,0.46045944,0.40132776,0.01601806,0.43166363,-0.2709622,0.10685606,-0.020467265,-0.42782184,0.0011433284,-0.17816085,-0.03850111,-0.5444842,0.21817115,0.10615686,0.09509935,0.0641736,0.6781398,-0.40046617,-0.14689158,0.06659395,0.86776924,-0.40890175,-0.3475706,0.79748183,0.9645954,0.9057571,-0.049904004,1.2164267,0.43724123,-0.27286023,0.113092475,-0.5255748,-0.4250973,0.22022337,0.32110006,-0.5842676,0.40510553,-0.044896398,0.0065709553,0.27400988,-0.1326073,-0.012759503,-0.2374637,0.024588697,0.075101614,-0.08056507,-0.4175501,-0.46772546,-0.068872936,-0.07931184,0.3663985,0.27137706,-0.20877008,0.5154181,0.024250556,1.7582295,0.02691562,0.07128198,-0.008631217,0.5640573,0.254477,-0.029266449,-0.04863266,0.20919253,0.2866651,0.018094143,-0.45941716,0.026149523,-0.34506613,-0.7373103,-0.1845444,-0.3572671,-0.16163568,0.031581707,-0.5431719,-0.17268385,0.039219264,-0.16792615,0.47993168,-2.596292,-0.17049885,-0.09082141,0.20717576,-0.28925365,-0.49423218,-0.22452496,-0.55978584,0.3856827,0.3004499,0.4622422,-0.55479234,0.49400192,0.14499375,-0.38727582,-0.21583763,-0.5077932,-0.06017733,-0.007078475,0.42912397,-0.22915998,0.0010216713,0.33352122,-0.030711882,0.5258627,-0.31583804,0.22198887,0.22831462,0.27535665,0.20206894,0.30571812,0.15623666,0.7052487,-0.28961647,-0.095615864,0.2921487,-0.238851,0.31257376,-0.008083761,0.2621218,0.37891304,-0.5656232,-0.86244416,-0.5708769,0.08842697,0.91492105,-0.16663228,-0.34838116,0.0814348,-0.011205258,-0.2930334,-0.016537355,0.25452825,-0.21385647,-0.09536268,-0.64923185,0.16651413,0.05691763,0.0725117,-0.03388577,-0.015678069,-0.36273542,0.45452452,0.023562526,0.37319443,0.26778713,0.30159912,-0.29098272,-0.38702488,0.14323868,0.97909915,0.24869967,0.09299729,-0.13864008,-0.32291794,-0.46506947,-0.12300345,0.08104927,0.317092,0.6484405,0.084481195,0.07827941,0.14728676,0.05317205,0.22702758,-0.1371962,-0.3041121,-0.11638995,0.08607678,0.4424728,0.40091127,-0.30478606,0.76034576,-0.23518369,0.3843737,-0.21447326,-0.5531699,0.5198587,1.2103516,-0.3722291,-0.31905934,0.5398808,0.5428328,-0.31785712,0.4837763,-0.6003843,-0.5098484,0.3946944,-0.20783396,-0.2180823,0.19404036,-0.27711418,0.08929722,-1.026464,0.25083762,-0.175043,-0.3613814,-0.47429374,-0.23376714,-3.1788995,0.16475579,-0.1952674,-0.11742976,-0.090878375,-0.16573884,0.14736944,-0.71191484,-0.43432555,0.20899422,0.11591845,0.66376746,0.085037805,0.17532682,-0.14927262,-0.2585602,-0.1738196,0.20205717,-0.028465938,0.42413428,-0.14229421,-0.5868562,0.116730295,-0.24653628,-0.39603272,0.18103585,-0.7619438,-0.36142084,-0.2545283,-0.4171374,-0.35373178,0.63743645,-0.41087982,0.1366175,-0.13697092,0.03889664,-0.22853623,0.39014664,0.03687573,0.16150917,0.16925389,-0.057805717,0.17761262,-0.3832975,0.1396399,0.057155732,0.3106238,0.3909405,0.05079531,0.11240273,0.42516175,0.758304,-0.02417531,0.60205597,0.43902862,-0.1369341,0.3446727,-0.2900406,-0.13829507,-0.6162673,-0.5393828,-0.1622203,-0.3053335,-0.5981442,-0.16087748,-0.30226135,-0.8010779,0.56443375,0.016698401,0.16781893,-0.050455835,0.36083058,0.5155193,-0.2553347,0.10801696,-0.1935208,-0.02365626,-0.52852476,-0.38752243,-0.6422407,-0.56666684,0.15818577,1.0163534,-0.066090144,-0.10953583,-0.08508418,-0.28511474,-0.074267484,0.22268501,0.05407067,0.16388416,0.381107,-0.36180356,-0.78195584,0.6106909,-0.24269418,-0.07385219,-0.37772503,0.15109298,0.5063938,-0.61761755,0.4519924,0.49952143,0.11070003,0.028483517,-0.39911416,-0.23621632,0.0024903854,-0.121966,0.24084704,0.19515392,-0.7395548,0.40496096,0.25834906,-0.431241,-0.67243457,0.64418125,0.13239102,-0.25951764,0.008005286,0.32540667,0.17576183,-0.0733594,-0.4540696,0.04985175,-0.5907179,0.2382696,0.3424628,0.12721263,0.2239689,-0.19787648,-0.17124526,-0.83884776,0.030230077,-0.3507003,-0.3026393,0.17098196,0.13392812,0.19522049,0.10058344,-0.045142688,0.18524638,-0.5638335,0.122692235,-0.07092737,-0.14876674,0.25748882,0.27687892,0.4092654,-0.54319745,0.55490315,-0.021806758,-0.13287821,-0.0048938077,0.09282429,0.4439768,0.3485668,0.36188632,0.13108188,-0.20068772,0.27477315,0.66957587,0.4031825,0.39643037,0.040004212,-0.3587357,0.03869435,0.029965715,0.16529351,0.20242946,-0.37089258,-0.19400647,-0.14659858,0.20720425,0.519039,-0.029634573,0.4368588,-0.13769016,-0.18292926,0.11948177,0.2191535,0.0023067317,-1.0730051,0.40063757,0.33658057,0.70872533,0.4536028,-0.019508313,-0.13017659,0.5392215,-0.2789858,0.23399618,0.30508435,-0.034888744,-0.5319405,0.5554951,-0.52460515,0.43126577,-0.07062997,-0.024087708,0.092453435,-0.024552306,0.28423887,0.89764047,0.021093901,0.20296624,0.1869266,-0.39646897,0.09613838,-0.24882384,0.107956015,-0.46772784,-0.16634327,0.72608924,0.37249956,0.24313341,-0.07644586,-0.030531203,0.13213055,-0.1445951,0.053327646,0.062663816,0.42799333,-0.07962563,-0.6518937,-0.3171948,0.47570992,-0.113044366,0.16053562,0.25423092,-0.39161465,0.3636828,-0.22860675,0.03811916,0.061663505,-0.58148915,0.033145484,-0.11805633,-0.37953243,0.59787184,-0.10637976,0.21603896,0.10846833,0.13577227,-0.32398352,0.26825005,0.070495635,0.63529754,-0.10847462,-0.25046727,-0.31289274,0.092558146,0.29145196,-0.25242022,0.043577645,-0.23626135,-0.003848056,-0.61423784,0.39650375,0.12665695,-0.073894374,-0.13717426,0.1046315,0.06648542,0.44681728,0.055009,-0.06922032,0.045279972,0.21128422,-0.22689693,-0.14601181,-0.22975942,0.18553384,0.35350913,-0.039020505,-0.15990856,0.08913011,0.030842697,0.4812018,-0.15459877,0.38636965,0.4766929,0.2853342,-0.37152308,-0.24918582,0.2944609,0.41271394,-0.02277902,0.056912854,-0.2720784,-0.38398078,-0.31538138,0.15782811,-0.2366646,0.14257704,0.27718243,-0.18036982,0.6834367,-0.020930227,1.321064,0.13033696,-0.41614312,0.223445,0.3975464,0.06912168,0.081288464,-0.33731925,1.1169002,0.541387,0.00088202057,-0.15869106,-0.33565292,-0.05168151,0.14834143,-0.17722674,-0.3107977,0.044708166,-0.5098161,-0.42654908,0.12454483,0.18673533,0.15651561,-0.065842636,0.30261716,0.24966846,0.11531162,0.46921977,-0.6026525,-0.3634028,0.29634494,0.3191298,-0.040731683,0.22788592,-0.46920884,0.3451471,-0.5416718,0.011872097,-0.26762974,0.18894038,-0.1120278,-0.31432602,0.24461743,0.23924668,0.35809168,-0.32351205,-0.4755888,-0.28846204,0.619771,0.112959765,0.17373848,0.5647181,-0.24049756,-0.06911313,-0.014983797,0.50030327,1.1095904,-0.23583731,-0.045192193,0.5206373,-0.30141523,-0.7519061,0.2565914,-0.24619992,0.25623655,-0.12827393,-0.2555648,-0.6087029,0.44764826,0.16226043,-0.07491754,0.1825065,-0.32366318,-0.049188197,0.3086954,-0.30193633,-0.30709544,-0.36927587,0.3113519,0.64505833,-0.47780216,-0.27782646,0.21977885,0.14580446,-0.17567705,-0.5173274,-0.06976864,-0.3732953,0.30306277,0.31188756,-0.23717336,-0.20962796,-0.051612202,-0.29089946,0.3115217,0.38155353,-0.31854364,0.07758602,-0.36817142,-0.2050538,0.88113856,-0.12708473,0.08440583,-0.58754224,-0.42112854,-0.8189115,-0.6440896,0.32537752,0.112173654,-0.0058540157,-0.70528394,0.07570149,-0.019557452,-0.21129689,-0.012465696,-0.25775355,0.42343086,0.0793691,0.18283042,-0.048386943,-0.83769566,0.0069286823,0.2330478,-0.13363433,-0.5030223,0.36354294,-0.25824058,1.0536879,0.19862957,0.17924565,0.501487,-0.44821283,-0.040065493,-0.37278283,-0.04989511,-0.6222198,0.12760171,143 -149,0.3699492,-0.275952,-0.40616563,-0.2005332,-0.19635622,0.044087514,-0.24760331,0.28301272,0.0815438,-0.21149454,0.14548141,-0.12566207,-0.005876259,0.37343916,-0.11921372,-0.69502205,0.058339316,-0.05985694,-0.5953142,0.622943,-0.5183297,0.37155494,-0.014162485,0.23071623,0.20835285,0.23007372,0.27907905,-0.16194871,0.08516929,-0.11722055,0.029305728,0.13941263,-0.52391154,0.067240685,0.0006125828,-0.2288563,0.18044814,-0.35273603,-0.45872936,-0.66436195,0.37086192,-0.6883004,0.36976293,0.038366366,-0.30784005,0.41107714,0.13173178,0.16306193,-0.4680112,0.12389055,0.26425222,0.05853866,-0.13458565,-0.019821556,-0.08263939,-0.4869028,-0.48230255,-0.03454487,-0.6205867,-0.31722698,-0.30131721,0.08658641,-0.45649898,-0.031746738,-0.13672216,0.36738002,-0.5186835,-0.17112793,0.17174414,-0.06556034,0.10115418,-0.6763801,-0.121105,-0.072958134,0.11770563,0.00024051666,-0.07718911,0.35882074,0.077806205,0.44329616,0.0020507337,-0.20291306,-0.11644185,-0.209924,0.07203374,0.5078478,-0.014298676,-0.47729784,-0.049987093,0.07104866,0.036595367,0.09159141,0.06299293,-0.3765753,-0.08245231,0.1312087,-0.31215155,0.42894152,0.51192725,-0.47732595,-0.25474185,0.36978802,0.27312288,0.24240543,-0.106489256,0.04094305,-0.022421423,-0.4519733,-0.19942349,0.07368458,-0.18380834,0.3505203,-0.14411178,0.30683613,0.6264971,-0.26321477,0.25417534,-0.21485431,-0.014168585,-0.0320405,-0.22418404,-0.23351245,0.05819885,-0.54154,0.17785892,-0.18987049,0.8204201,0.25190437,-0.5251221,0.42748302,-0.50644916,0.23734097,-0.26640457,0.52413094,0.69419616,0.18666169,0.188183,0.63716495,-0.36708266,0.0107239885,-0.18300287,-0.29988128,0.035561547,-0.06506116,0.04390637,-0.4220092,0.007537556,-0.025655985,0.027924633,-0.15602382,0.33194983,-0.3365928,-0.1298506,0.17957264,0.7691952,-0.32906246,0.07538285,0.46677577,1.1105502,1.1393756,-0.023490362,1.037086,0.401313,-0.14597054,0.16898133,-0.2565089,-0.6723376,0.18863559,0.48337987,0.3737612,0.19453147,-0.048110906,-0.18157434,0.3383834,-0.30254975,0.101985045,-0.19237943,0.35674363,0.20539497,-0.010367755,-0.28156742,-0.20162551,-0.025920248,0.050793204,-0.04382495,0.2267304,-0.25440487,0.025370734,-0.016722435,1.4935722,-0.13713409,0.030752541,0.11752718,0.59031093,0.3092307,-0.1597959,0.035489574,0.32659906,0.43161643,-0.005395758,-0.77238655,0.09454927,-0.36239627,-0.53047365,-0.10735701,-0.43720537,-0.077266,0.07477452,-0.5640192,-0.104956284,0.0896189,-0.042565588,0.35285404,-2.8191211,-0.21138777,-0.17578754,0.22706294,-0.3694913,-0.15967256,-0.04011829,-0.39847967,0.39687547,0.38664073,0.40108737,-0.51016265,0.40928832,0.44286925,-0.3371971,0.0019453525,-0.59455174,-0.16101068,-0.12860963,0.40292835,-0.14189486,-0.048201337,-0.030186953,0.31934682,0.40832424,0.12195576,0.14631078,0.20820932,0.42270547,-0.08489507,0.51321524,0.034553085,0.42667618,-0.30677712,0.03103177,0.24777564,-0.15732701,0.41182855,-0.24452704,0.14059542,0.37963995,-0.32493725,-0.81825924,-0.40527096,-0.1434124,1.2813154,-0.3542588,-0.41260764,0.45857683,-0.15934154,0.043403342,-0.12329151,0.3296569,-0.12958108,-0.1892955,-0.65172935,0.2806636,-0.16858958,0.028447725,-0.05146761,0.04142769,-0.333307,0.70511764,0.0017081122,0.45019785,0.22712955,0.24999163,-0.04886314,-0.36490855,0.04605735,0.75787,0.4577381,-0.019814169,-0.14367189,-0.121524066,-0.10725974,-0.26468262,0.073394105,0.45843267,0.7707419,-0.010423724,0.13514343,0.19841139,-0.15982011,0.02557383,-0.16703454,-0.25736216,-0.013978209,0.12885256,0.5382896,0.41304722,-0.15540546,0.3768457,-0.0273593,0.14523643,-0.09548697,-0.45124775,0.49266183,0.8952381,-0.09928851,-0.12280755,0.50897115,0.43486068,-0.20540756,0.40947622,-0.5604467,-0.25514778,0.661362,-0.31981906,-0.27282456,0.24082823,-0.32400945,-0.06345952,-0.6863243,0.25965828,-0.18224218,-0.1205844,-0.384576,-0.3622621,-3.4840307,0.07736845,-0.3165446,-0.15718381,-0.19541143,-0.08699347,0.32294223,-0.5523767,-0.47995156,0.2397046,0.03975918,0.58637583,0.027819643,0.18685175,-0.20253976,-0.1219318,-0.33336723,0.1662557,-0.08306922,0.29580173,0.10768004,-0.34924588,0.040133435,-0.07366478,-0.38076097,0.0724328,-0.33375937,-0.33378655,-0.08014056,-0.41154596,-0.15321928,0.62919647,0.08318231,0.019362746,-0.088782094,-0.124201626,-0.2289946,0.21169883,0.35362902,0.16175763,-0.10838069,-0.013704706,-0.05997766,-0.438438,0.16041018,0.076216035,0.3221946,0.28163528,0.061344266,-0.018730847,0.40905628,0.28821677,-0.18696101,0.6072573,0.39026397,-0.1359844,0.3065001,-0.19307002,-0.2111215,-0.5131436,-0.44298527,-0.0995343,-0.19992383,-0.4872699,-0.21523744,-0.23814084,-0.52821386,0.39682674,-0.06924947,0.31025714,-0.12398529,0.0787549,0.3839127,-0.025075102,-0.07899884,0.13715029,0.00788581,-0.45068482,-0.26937354,-0.6614918,-0.32294163,0.35180643,0.6908362,-0.2154008,-0.28340477,-0.033749692,-0.25699657,0.011869902,-0.16357057,0.09875271,0.26549068,0.2642519,0.06659749,-0.81263924,0.57657665,-0.14092216,0.014484886,-0.48974323,0.07222652,0.57100034,-0.53884053,0.42252052,0.20965837,0.16337821,-0.1294819,-0.567187,-0.21699633,0.19904785,-0.19095628,0.42697853,0.021760374,-0.9249907,0.48359737,0.2680619,-0.3313937,-0.6105358,0.5713164,0.11276663,-0.36189842,0.041981332,0.26551464,0.24966264,-0.0357257,-0.06645271,0.47848412,-0.39427775,0.29765618,0.11777938,-0.06462915,0.42027903,-0.10218152,-0.2011984,-0.44258577,-0.14676686,-0.35269883,-0.27262476,0.123666234,-0.05258749,0.10512693,0.096628174,-0.10338566,0.41023198,-0.25125945,0.17237902,-0.014417617,-0.23171231,0.5720853,0.41092294,0.4607256,-0.3562097,0.6627267,0.04866152,0.0019824624,0.19016589,0.10490843,0.38020623,0.21226306,0.33725327,-0.042119868,-0.10250894,0.3243721,0.9229861,0.20321701,0.41233778,0.20964536,-0.22605184,0.22912434,0.0629473,-0.1577234,-0.023463214,-0.36238882,-0.21021935,0.1050508,0.21508437,0.48396766,0.16670418,0.24581479,-0.12213325,-0.17429398,0.098248355,0.14364955,0.03770562,-0.8592578,0.32250893,0.18219467,0.68566,0.5384306,-0.15987562,0.017134951,0.49306062,-0.16644515,0.0051522334,0.30829823,0.0669087,-0.6186247,0.6367398,-0.34566143,0.48631355,-0.12717606,0.03611494,-0.017440828,0.19187975,0.2157567,0.6427078,-0.10120939,-0.05569188,0.034593813,-0.42467037,0.1275383,-0.26694056,0.048242632,-0.30844897,-0.34972122,0.37143898,0.5290601,0.055705108,-0.063948445,-0.0037682434,0.039918277,-0.15542455,0.08509307,-0.06848659,-0.1406482,-0.09585093,-0.58684915,-0.4471094,0.47490418,-0.06263721,0.14392158,-0.11704251,-0.028818829,0.19582961,-0.1627152,0.02524752,0.025457164,-0.7933866,0.083279625,-0.28476962,-0.46891,0.33567733,-0.29420713,0.22529243,0.15344046,0.0011590143,-0.24625088,0.21112983,-0.026227651,0.66573614,-0.34930435,-0.12210803,-0.45745894,-0.18751007,0.16915934,-0.1965196,-0.04845802,-0.358547,0.009367583,-0.68346626,0.43749097,-0.15973677,-0.23588301,-0.022019727,-0.2457224,-0.00580678,0.5959802,-0.1702364,-0.04557181,-0.11134045,-0.19089365,-0.2995611,-0.24278444,-0.08823899,0.18737262,0.20721494,-0.013781111,-0.13984972,-0.1981904,0.0514219,0.4227592,-0.057254504,0.23850158,0.23460308,0.22946812,-0.2951452,-0.14998646,0.30072367,0.47776857,0.08948124,0.04611505,-0.2778934,-0.37793228,-0.27596447,0.27041593,-0.25728294,0.25250852,0.05296006,-0.5254591,0.60303944,0.1527161,0.9121737,-0.023522113,-0.33059755,0.101587616,0.49126312,-0.037786108,-0.026133766,-0.19394632,0.7266556,0.58160347,-0.00021577279,-0.19494748,-0.34921217,-0.21808931,0.29511565,-0.23937923,-0.15569703,-0.011606906,-0.56171286,-0.20008211,0.19971257,0.17747049,0.057613946,-0.06375068,-0.123578355,0.081674434,0.13399357,0.4934944,-0.69399506,-0.11683848,0.17823538,0.102952376,0.021229377,0.2710332,-0.4372145,0.4172481,-0.63825506,0.23922281,-0.21716675,0.10656742,-0.10154716,-0.09023442,0.21288353,0.14812809,0.38382003,-0.29712045,-0.42177957,-0.1734218,0.5296425,0.1402517,0.20565608,0.54438347,-0.23900113,0.13274331,0.00885168,0.5341152,0.9307105,-0.044773053,-0.088382244,0.21310796,-0.46671757,-0.79500276,0.26597646,-0.2277005,0.093536176,0.039752845,-0.2198555,-0.51081944,0.2688303,0.18029398,0.01778889,0.029081067,-0.56448925,-0.3149285,0.24629827,-0.10091542,-0.3154988,-0.33676082,-0.012166947,0.7429572,-0.35277826,0.021712644,0.0064444146,0.2685469,-0.13722906,-0.64325327,0.03948056,-0.36675367,0.3193279,0.19860007,-0.074174486,-0.08226013,0.1606136,-0.4461839,0.14885542,0.12732951,-0.34858784,-0.0787112,-0.08825586,0.010488419,0.8871378,-0.15829493,0.013043157,-0.71061975,-0.4946965,-0.7637584,-0.4911685,0.5321319,0.091996625,0.1477988,-0.56472355,0.008582259,0.07862789,0.14684,-0.10144337,-0.53052825,0.4011369,0.08820523,0.2903412,-0.024976166,-0.69871014,0.04084339,0.030544555,-0.3204581,-0.42221466,0.55081487,-0.13229315,0.70343906,0.060590465,-0.032782458,0.05230488,-0.3289432,0.052038714,-0.31471118,-0.31712684,-0.6042992,0.20810659,146 -150,0.55100656,-0.22705153,-0.49212992,-0.1477224,-0.19321512,0.079308145,-0.27303642,0.24247234,0.20412411,-0.160392,0.0024179618,-0.17891306,-0.0315582,0.53771174,-0.030601645,-0.85570467,0.15934348,0.14702313,-0.7499373,0.7315104,-0.4244328,0.33089557,0.05496166,0.37705192,0.16379616,0.36279538,0.17314465,0.058290347,-0.11818876,0.047307666,-0.020714613,0.106173865,-0.39006796,0.030247223,-0.0005595525,-0.12810431,-0.1006727,-0.29358393,-0.68752223,-0.85588896,0.47175348,-0.76368546,0.45569128,0.0007174636,-0.36342824,0.19495812,0.092064336,0.30507547,-0.18753073,-0.034857433,0.16262923,-0.01079269,-0.05486893,-0.14643298,-0.30999887,-0.51476157,-0.57547224,0.069432534,-0.6520761,-0.2327923,-0.13205156,0.22049919,-0.2987663,0.016639471,0.013025403,0.5484933,-0.39768252,-0.20963581,0.22454509,-0.1966568,0.30859116,-0.50761396,0.058729645,-0.08367278,0.1192308,0.029911447,-0.10320864,0.27098504,0.31643423,0.43788862,-0.15196605,-0.17743771,-0.3070202,0.014072467,0.19519353,0.4827425,0.094510056,-0.45856148,-0.20062555,-0.086322665,-0.016511837,-0.0359394,0.16622598,-0.5340297,-0.007251954,-0.042354807,-0.15459234,0.473424,0.5653573,-0.39953393,-0.2608056,0.3747099,0.64911556,0.3155467,-0.21321113,0.09411669,0.046344817,-0.4502503,-0.042263523,0.102064386,-0.1437022,0.61946803,-0.199374,0.20231004,0.76535404,-0.04472929,0.0402325,-0.008932455,0.0070483955,-0.03220986,-0.090254545,-0.07404186,0.14626983,-0.4135626,-0.029255828,-0.15021181,0.56639427,0.23909172,-0.6989295,0.58598834,-0.567975,0.23505396,-0.17608695,0.564473,0.81884885,0.20512274,0.18036318,0.75499815,-0.3978485,0.15670122,0.028335758,-0.482299,0.224892,-0.281163,0.0060604215,-0.47373182,-0.07289458,-0.06548648,-0.31412986,-0.15400775,0.591622,-0.38879946,-0.10883905,-0.06141903,0.9118198,-0.271159,-0.06530313,0.5374887,0.9720079,0.9817702,-0.035942897,1.3295046,0.45516816,-0.19876881,0.16651706,-0.33758053,-0.86110646,0.3672309,0.34659827,0.3026862,0.40642223,-0.008622916,-0.18084624,0.5080811,-0.26135072,0.22586158,-0.24761412,0.1707633,0.07319765,-0.053568427,-0.39324456,-0.33041292,-0.057395935,0.1725505,0.22433624,0.25390774,-0.26003626,0.2682336,-0.07081056,1.7019871,-0.17624685,0.012782981,0.057932027,0.6273155,0.27601707,-0.18872544,-0.2755335,0.21460375,0.367274,0.17552723,-0.66351306,0.17201878,-0.2846094,-0.39250857,-0.30684438,-0.31627935,0.08960407,-0.08928711,-0.4973459,-0.22239247,0.048556082,-0.34747988,0.40098742,-2.4742343,-0.3095681,-0.0989411,0.3017491,-0.27637625,-0.13092057,-0.17459151,-0.389067,0.13492832,0.3876953,0.38367864,-0.7343002,0.41258472,0.58621544,-0.55668044,-0.0658417,-0.4521185,-0.121223286,-0.096246295,0.51337093,0.0758152,0.009859594,0.15397763,0.34299198,0.45957837,-0.014571837,0.07050008,0.27825457,0.40098366,0.07999453,0.29075828,0.046069782,0.32822853,-0.19117314,-0.15191078,0.55227077,-0.34246713,0.20306127,-0.20633163,0.18794355,0.37133116,-0.4313869,-1.0249221,-0.5809325,-0.13887706,1.0555241,-0.21632099,-0.48542833,0.23308973,-0.13252337,-0.120344095,0.16238953,0.53309083,-0.19012499,-0.008839977,-0.7282817,0.06579992,0.019462772,0.1233037,0.102070965,-0.021444304,-0.17491895,0.64849275,0.08120653,0.31778863,0.13974948,0.21451767,-0.17235288,-0.64744055,0.1650941,0.7994879,0.31798407,0.091729775,-0.24437854,-0.21066588,-0.21971768,-0.1584231,-0.108448856,0.53864926,0.8138535,0.022892412,0.14392617,0.2331158,-0.11025576,0.124936245,-0.073466055,-0.40326884,0.0383017,-0.011640931,0.61738217,0.75319725,-0.26794785,0.4908186,-0.11387836,0.26248387,-0.098911025,-0.5468918,0.7493015,1.1883887,-0.21286014,-0.23653191,0.4507949,0.2825919,-0.5960668,0.52787143,-0.7474544,-0.2883226,0.42020124,-0.22985475,-0.517782,0.33722064,-0.35969752,0.15482952,-0.79317486,0.46579126,-0.1294141,-0.27936605,-0.46366805,-0.19491506,-3.2211888,0.24689016,-0.27057594,-0.18454628,-0.13350445,0.00905015,0.34543663,-0.46174774,-0.5670496,-0.02902848,0.07396944,0.63279474,0.007049207,0.16958469,-0.24352273,-0.17130953,-0.37437266,0.13919987,0.06992638,0.49897975,-0.013062851,-0.4832941,-0.0039903116,-0.25053602,-0.40313718,0.03559917,-0.63899803,-0.47977498,-0.31968433,-0.5564832,-0.15598981,0.71325433,-0.06451914,0.031109689,-0.39291137,-0.06512204,-0.05313841,0.45400673,0.22084184,0.10722183,0.0045983354,-0.08724463,-0.11296857,-0.2255467,0.16420141,0.04129552,0.16253096,0.3758547,0.04354441,0.16401775,0.6055495,0.596975,-0.21041396,0.7084437,0.53929687,-0.098899916,0.28248695,-0.17595838,-0.255225,-0.40139922,-0.2989135,-0.0932401,-0.2715595,-0.5231829,-0.123707786,-0.29881003,-0.7568216,0.3792054,-0.03737875,0.2583901,0.11527575,-0.0032987655,0.4787866,-0.2130739,-0.008525149,-0.062402714,-0.22856998,-0.6235507,-0.19194907,-0.6310873,-0.6393274,0.29715374,0.95151967,-0.17352304,-0.28770223,-0.015816577,-0.3067626,-0.04383662,-0.09866876,0.050747856,0.19376816,0.14729333,-0.18483454,-0.7942322,0.5236817,-0.2424437,-0.06646612,-0.5323951,0.15746798,0.6330003,-0.64604867,0.5100505,0.26061466,0.19437939,-0.10025769,-0.49609426,-0.21132012,0.16849011,-0.15569307,0.42529434,0.055089645,-0.74594104,0.309368,0.2540561,-0.44720656,-0.65187246,0.52779233,0.02063423,-0.27866706,-0.112422675,0.44192138,-0.10239868,0.074898705,-0.44468486,0.32211637,-0.417652,-0.010743241,0.3378892,-0.0071200053,0.363125,-0.16548207,-0.26798993,-0.49500954,0.010758098,-0.42296678,-0.2320092,0.111137845,0.04601912,0.25163084,0.091307625,0.09414986,0.42708287,-0.1487643,0.087034464,0.035829213,-0.1774559,0.41939571,0.4179941,0.5267093,-0.41735718,0.59320885,-0.051828876,-0.12995996,0.101412326,0.025671769,0.36733907,0.25346938,0.41075793,0.24096963,-0.05986096,0.22096328,0.9794271,0.16125225,0.5211369,0.13655749,-0.43515724,0.21866134,0.175995,0.16979028,-0.19068678,-0.41005886,-0.07962906,-0.05982248,0.28031677,0.6008009,0.029397,0.36362,-0.24281482,-0.3222886,0.10366602,0.063473515,-0.06559405,-1.2062172,0.19787188,0.28719234,0.70048434,0.4386708,-0.06621412,0.015040438,0.6751985,-0.0826616,0.07423862,0.31027895,-0.16853327,-0.7966788,0.5035751,-0.6697196,0.38861594,-0.044844206,0.02607383,-0.02717793,0.13927275,0.33713347,0.593448,-0.026864938,0.019521141,-0.19033273,-0.3640673,0.061989706,-0.46319345,0.22574605,-0.50058275,-0.42705148,0.5843002,0.55614495,0.113448456,-0.1318451,-0.03204565,0.040847234,-0.07215559,0.31436622,-0.017799944,0.075937614,-0.12496285,-0.79858124,-0.3467371,0.5305789,0.02581857,-0.076387696,-0.05875387,-0.007912087,0.16641632,-0.23903988,-0.076435395,-0.018625975,-0.7314527,0.029639851,-0.1674725,-0.45590726,0.49771032,-0.12666668,0.21309748,0.19146426,0.06024669,-0.5629848,0.38520476,-0.073145986,0.7971219,-0.028043684,-0.07075058,-0.50556463,0.0071609337,0.17119905,-0.39247304,-0.14402583,-0.25872308,0.006475099,-0.56796455,0.59772784,-0.14677478,-0.48574024,0.15724261,-0.22261065,0.07418128,0.61705476,-0.31326896,-0.35492033,-0.08484575,-0.1611925,-0.37111333,-0.06700887,-0.03773021,0.29161218,0.19769892,-0.3515555,-0.12812498,-0.07094034,-0.02391543,0.43353325,-0.13141026,0.3676654,0.5905406,0.14690547,-0.3513724,-0.19278374,0.5024734,0.49582896,0.1937259,-0.009892309,-0.28613046,-0.38415134,-0.44130498,0.15568523,-0.1332549,0.2721973,0.23475364,-0.34270394,0.64247674,0.2777995,1.2291275,0.011186842,-0.31842795,0.35197824,0.43976688,0.11942907,-0.041135523,-0.4567223,0.802601,0.6086053,-0.22287346,-0.15323703,-0.4233921,-0.23955236,0.20004794,-0.297635,-0.03537531,-0.038776927,-0.7894246,-0.17964321,0.15612598,0.29044792,0.08243105,-0.077400714,0.13968608,0.066287465,0.026871169,0.32231167,-0.5119941,-0.18351027,0.3914285,0.15883487,-0.011825514,0.13195774,-0.41912922,0.3536296,-0.5659533,0.002779738,-0.26934248,0.25543863,-0.0475527,-0.4149125,0.2909377,0.18751912,0.48769256,-0.26957908,-0.35790315,-0.31369388,0.55041534,0.22720425,0.20903961,0.61205864,-0.3171892,0.075351976,0.1052182,0.58446693,1.0418471,-0.13138264,0.03425862,0.26360837,-0.34176233,-0.8726782,0.25529775,-0.30775642,0.3045922,-0.044861507,-0.31608185,-0.7431419,0.36373743,0.1355641,-0.08105931,-0.02032166,-0.5123511,-0.24868679,0.2585056,-0.13042577,-0.23957041,-0.47529367,0.108764805,0.57387507,-0.29177096,-0.29016125,0.06339469,0.22310549,-0.26689595,-0.5530693,-0.01389403,-0.42091042,0.28142014,0.17663503,-0.22289394,0.05716338,0.016861295,-0.5422647,0.3460649,0.19659314,-0.40190223,0.13528611,-0.24459015,-0.04928607,0.95200294,-0.17118575,-0.113567896,-0.78796744,-0.6284422,-0.9957064,-0.42180386,0.36411422,0.18527722,-0.016916681,-0.6973957,-0.012749986,-0.07478532,0.15738669,0.12993887,-0.49014917,0.39128512,0.03077008,0.3769976,-0.053126194,-0.8522158,-0.045763645,0.14341977,-0.34743282,-0.63613504,0.50142753,-0.10165976,0.82034457,0.16125135,0.10161686,0.26872304,-0.49348545,0.11277949,-0.31287184,-0.26826885,-0.62780696,0.17522274,151 -151,0.41067237,-0.17886254,-0.3188945,-0.046172556,-0.032509446,0.12294941,-0.04386028,0.5774397,0.38347968,-0.25299132,-0.03413601,-0.24793436,-0.0024882196,0.38808826,-0.16463143,-0.4568833,0.0028680107,-0.04916699,-0.31550473,0.411376,-0.42728034,0.23944798,-0.053829655,0.43778896,0.052114848,0.2858745,0.14391963,-0.0010587231,0.0036806504,-0.35928595,0.09222821,0.27329567,-0.43008342,0.36207977,-0.1011739,-0.27348298,0.13500817,-0.37584975,-0.4150187,-0.57853967,0.25626594,-0.7658723,0.37961102,0.105938554,-0.32943615,0.31096143,-0.0019842465,0.056518696,-0.21831466,-0.22657725,-0.011476469,-0.118976675,0.047084384,-0.36829883,0.0050747474,-0.31302553,-0.48464802,0.062497415,-0.38077182,-0.17579392,-0.20435092,0.06746397,-0.39074454,0.07601218,0.027708411,0.3553394,-0.41843817,0.067389876,0.17650741,-0.49823362,0.28381646,-0.46331966,-0.4013252,0.01342049,0.036636688,0.05566744,-0.21264845,0.35702375,0.22228377,0.4333955,-0.07342632,0.019662453,-0.258087,-0.22593804,-0.0283375,0.47111472,-0.17342654,-0.66480005,-0.101504765,-0.009676202,0.18004502,0.29825416,0.22169788,-0.1880708,-0.10336747,-0.059746277,-0.30967504,0.36963832,0.56387204,-0.47065294,-0.17643666,0.1763489,0.32832634,0.08827739,-0.10969068,0.01815974,0.040943112,-0.3999837,-0.13913298,-0.22354627,-0.1497119,0.61562574,-0.0352061,0.29779294,0.64320046,-0.24430612,-0.037374742,0.14337203,0.011792167,-0.16596857,-0.35449716,-0.13635658,0.23342183,-0.38495007,-0.02785557,-0.17931157,0.7407624,0.2453845,-0.5847019,0.45736006,-0.4067159,0.122042194,-0.07627289,0.42616892,0.5238091,0.46244192,0.4101139,0.7181238,-0.47135392,0.027670475,-0.1510014,-0.3131584,0.12739505,-0.21209757,0.032769695,-0.4082213,0.1418678,0.29253393,-0.12024472,0.19696029,0.26350683,-0.58802795,-0.06835189,0.24842885,0.7965883,-0.1581867,0.08365964,0.6965221,1.1978098,0.8748365,-0.088565424,1.1012236,0.106186114,-0.1411064,0.22934557,-0.040551994,-0.67086035,0.20078088,0.3947422,0.42821687,0.14372487,-0.025742983,-0.13242409,0.18794036,-0.35667306,-0.09172388,-0.03794967,0.53974617,0.2008016,-0.07628086,-0.46595606,-0.23626566,-0.033869956,-0.08387682,-0.055123903,0.3714153,-0.102359295,0.5020746,0.10762286,1.3789304,-0.06327768,0.21564822,0.15571906,0.6276465,0.25585574,-0.060612246,0.09995272,0.3770095,0.04109591,0.13957094,-0.4564274,0.13036017,-0.22112712,-0.545482,-0.040206466,-0.45282358,-0.14904574,0.006393955,-0.199106,-0.24461628,-0.19508205,-0.1739942,0.44610104,-3.1155128,-0.2655653,-0.16249469,0.40698892,-0.26431292,-0.13370724,0.05410393,-0.50959694,0.35594878,0.41857135,0.55137765,-0.7457907,0.01163743,0.49433124,-0.47388506,-0.24485523,-0.39652967,0.12135842,-0.0413156,0.46713373,0.08977779,-0.1344031,-0.12607957,0.08485783,0.46431604,0.1360367,0.18063752,0.13383797,0.24154581,-0.17361793,0.2785274,-0.2100078,0.39773268,-0.3338752,-0.12624942,0.29502916,-0.3060034,0.21842977,-0.17990062,0.12484125,0.361544,-0.35516366,-0.6815914,-0.49222583,-0.06744002,1.2149552,-0.12304654,-0.5748142,0.26275268,-0.2261334,-0.1996641,-0.2103974,0.30519256,-0.06013077,0.07084738,-0.5914665,0.13663785,-0.1485029,0.07834126,-0.01920319,-0.025245782,-0.3006319,0.6125693,-0.022010842,0.464137,0.34661147,-0.012713635,-0.33310005,-0.3217734,0.030567426,0.6533385,0.47926292,0.15103605,-0.04812336,-0.1610282,-0.20687939,-0.22506033,0.18957381,0.57495123,0.6466163,-0.099455446,0.105844006,0.24692592,-0.10408702,0.049082983,-0.056999862,-0.21087027,-0.041482512,0.018944569,0.70382893,0.8674537,-0.2710406,0.16923091,0.008684142,0.48855093,0.0012679974,-0.47149557,0.43250763,0.473378,-0.14617436,-0.24600936,0.62776524,0.4068778,-0.3987812,0.42775622,-0.52089095,-0.33802548,0.49355295,-0.18391755,-0.52120185,0.22093238,-0.22241668,0.20081304,-0.7190226,0.33684558,-0.31715345,-0.48654938,-0.35748306,-0.20611914,-3.3320098,0.028940747,-0.20210543,-0.15983772,-0.072680034,-0.013718891,0.09621651,-0.49813303,-0.50223905,0.1018354,0.12395593,0.48872626,-0.16361882,0.051624462,-0.30071354,-0.39368913,-0.30773756,0.088043176,-0.023511386,0.28483087,-0.049023114,-0.36805305,0.03520955,-0.0061376533,-0.39343566,0.18910703,-0.44951168,-0.59017843,-0.11718931,-0.35667884,-0.33065218,0.6282488,-0.15941662,-0.0018877983,-0.13539556,-0.042796418,-0.21563488,0.06516287,0.078709796,-0.026150966,0.018362029,0.022620555,0.097448856,-0.40336162,0.4215867,-0.02195955,0.39525408,0.39131784,-0.14122997,0.052055463,0.4804314,0.49160594,-0.0031590532,0.73254263,0.16660684,0.084625706,0.3680823,-0.23563963,-0.4284263,-0.3422111,-0.24902011,0.22006108,-0.37910375,-0.3565561,-0.0010847857,-0.35118935,-0.5421429,0.5246461,0.12568793,0.12735699,-0.0038780808,0.23138343,0.5747129,-0.11727073,-0.0441604,0.13153218,-0.10148797,-0.68029696,-0.2121482,-0.7980472,-0.46027228,0.4309859,0.8358734,-0.19399433,-0.13800973,0.10004519,-0.07822736,0.036932398,0.048958674,0.120141014,0.04554492,0.36932132,-0.09953095,-0.5771802,0.51878285,-0.11925688,-0.22373953,-0.548313,0.16545817,0.48060104,-0.7496256,0.4692394,0.25095508,0.18960755,-0.11842652,-0.4308232,-0.08889993,-0.109263934,-0.27740988,0.40123627,0.16070881,-0.8873422,0.43848476,0.36421412,-0.31188545,-0.65282136,0.39238003,-0.20168778,-0.19631371,-0.026346529,0.26954907,0.30498612,0.03551867,0.14962249,0.24672247,-0.5907906,0.20400721,0.2146136,-0.10387961,0.5801956,-0.05128059,-0.15693556,-0.68755907,-0.05019939,-0.49136537,-0.32924354,0.1973559,0.07274263,-0.11424454,0.14187342,0.1382346,0.46801618,-0.21842076,0.13185184,0.0026891152,-0.26579568,0.54873264,0.42156765,0.52425486,-0.27139613,0.6189379,-0.03201167,0.07269263,-0.005026833,-0.07277708,0.3985858,0.1559216,0.34790364,0.03355282,-0.27085337,0.22020476,0.79415095,0.075917915,0.29951128,0.06000614,-0.03291179,0.32278016,0.051411256,0.15506922,0.08034262,-0.5783676,-0.023156412,-0.2448905,0.07656379,0.46721077,0.26182434,0.26610646,-0.07154382,-0.41552156,-0.017657785,0.14494847,-0.082291834,-1.0298916,0.088423915,0.04393307,0.7072716,0.45306414,0.115423836,-0.07225417,0.70616794,-0.01040672,0.041067846,0.315204,0.107904986,-0.50007635,0.6262495,-0.75052875,0.63280475,-0.06954401,-0.10388566,0.049563352,0.046527732,0.42238057,0.69683194,-0.13110264,-0.047547985,0.04345011,-0.33125564,0.13508344,-0.5047247,-0.019703101,-0.46841115,-0.19866307,0.46482214,0.48935363,0.17543726,-0.20221461,-0.008599339,0.018198473,0.0197352,0.2865847,-0.10634089,0.071254686,-0.2586183,-0.51779884,-0.29194096,0.49053052,0.26115522,0.20797418,-0.07860483,-0.16079253,0.22508135,-0.11993896,-0.15451083,-0.06799965,-0.48640403,0.06165654,-0.22599673,-0.44265178,0.5395181,0.03168638,0.22798915,0.18355256,0.09071175,-0.18475491,0.08693772,0.03180053,0.73222566,-0.1401441,-0.21154103,-0.4714604,0.073804684,0.011718217,-0.17439789,-0.110049374,-0.2726994,-0.06971703,-0.45686817,0.45061275,-0.011732008,-0.12541169,0.04177862,-0.05899338,0.05230405,0.5058904,-0.047209572,-0.23458308,-0.1817587,-0.15826628,-0.31537172,-0.20993409,-0.07622293,0.20756501,0.2886586,-0.06480183,0.014233226,-0.2373591,0.07874129,0.2342818,0.06387322,0.18758075,0.29415295,0.024258045,-0.309018,-0.030342845,0.08167783,0.41381603,0.019190112,-0.0128291845,-0.24087477,-0.65748876,-0.30221102,0.13724534,-0.13038096,0.36897695,0.096437104,-0.3144469,0.58162624,-0.10397238,0.9665194,0.03984152,-0.21668261,0.07586238,0.5178093,-0.06873325,-0.054094456,-0.3438759,0.9366796,0.48263925,-0.18746836,-0.2121918,-0.3146403,0.0900856,0.1324372,-0.22194226,-0.13863066,-0.056895692,-0.65538484,-0.21836211,0.095916085,0.25589517,0.17850477,-0.0695594,-0.012040794,0.18137386,0.14740483,0.37337902,-0.3529548,-0.2608366,0.416819,0.3282472,0.030865382,0.005643487,-0.3646048,0.38370958,-0.43835393,0.14646187,-0.34950295,-0.016848018,-0.15653174,-0.3567502,0.16609646,-0.13086902,0.27469787,-0.38661188,-0.49087316,-0.17338923,0.27679184,0.17469257,0.10464708,0.48931867,-0.16269395,-0.2203314,0.05142991,0.51611155,1.1877595,-0.11744893,-0.067868225,0.29069182,-0.40022972,-0.685636,0.32264838,-0.2952133,0.21959244,-0.042243503,-0.051548775,-0.63286823,0.30133566,0.2962907,-0.10531706,0.037031632,-0.5958061,-0.21592937,0.16641425,-0.5963118,-0.22275673,-0.48274964,-0.044366125,0.6238552,-0.23020649,-0.10589568,0.06422316,0.29511088,-0.31063265,-0.6777693,0.017665796,-0.29783052,0.22982316,0.027314646,-0.32758158,-0.0816882,0.19736147,-0.39290014,0.12839912,0.037328433,-0.32750612,0.08743744,-0.4776438,0.0011860708,0.8106012,-0.20640984,0.26521316,-0.48373005,-0.47981834,-0.7893342,-0.30759874,0.48903617,-0.0166347,0.084369816,-0.46885017,-0.15908651,-0.07402539,-0.0671569,-0.16130671,-0.23774482,0.4135055,-0.000997906,0.4366488,-0.071004026,-0.67748445,0.1907052,0.13219751,-0.03284751,-0.57356465,0.47883078,-0.17054535,0.6413019,0.14047623,-0.07527199,0.36025587,-0.5372623,0.06709214,-0.1976419,-0.26685554,-0.4150363,0.21737428,152 -152,0.23687682,-0.09667566,-0.378951,-0.14454311,-0.10312773,0.19053331,-0.252075,0.39689958,0.07535601,-0.46837133,-0.031373344,-0.084992126,0.02196965,0.312847,-0.15047567,-0.31070936,-0.031061143,0.13384376,-0.46923262,0.33357576,-0.5137581,0.20371355,-0.16666685,0.35265148,0.074831076,0.14411166,0.26955512,-0.16262044,-0.22584584,-0.079324484,0.12013795,0.29293332,-0.42907178,0.081773415,-0.15053792,-0.21121426,0.0045315903,-0.4060425,-0.36269054,-0.670186,0.40496168,-0.83372587,0.5155566,-0.028922208,-0.15832256,0.4534912,0.20692119,0.17841342,-0.31064034,-0.080559365,0.19066574,-0.1536366,-0.20023006,-0.14803554,-0.14710857,-0.17549986,-0.5330295,0.0020253449,-0.46829847,-0.08464727,-0.42497838,0.17930566,-0.4316551,0.14724322,-0.11308555,0.48712686,-0.50163233,0.06697945,0.15377155,0.01883641,0.12700626,-0.5231051,-0.15820186,-0.1748895,0.1761447,-0.1920543,-0.13680834,0.29968792,0.28385475,0.345839,-0.15368499,-0.13574377,-0.19921143,-0.19647838,0.2169369,0.45584318,-0.12359738,-0.46534073,-0.052808207,-0.13031477,-0.000174431,0.10100394,0.07020203,-0.15899454,-0.16229957,0.21989952,-0.30091694,0.40528688,0.5580857,-0.2000584,-0.16925834,0.42369574,0.5537953,0.10263667,-0.14151339,-0.023168514,0.0057293405,-0.46948984,-0.16545674,0.12266258,-0.21135116,0.41341114,-0.17206486,0.2965435,0.5464731,-0.3629653,-0.105897784,0.0062603313,0.09630085,-0.115128525,-0.165763,-0.33174455,0.16835268,-0.48756945,0.21262598,-0.11138995,0.7895101,0.15156336,-0.6138567,0.40599492,-0.46533263,0.10869112,-0.039226346,0.6434035,0.68917847,0.42103624,0.41587335,0.6281436,-0.44916847,-0.07940213,-0.06274366,-0.45376956,0.07107598,-0.25343242,-0.11185549,-0.35550645,0.012727507,0.14173375,-0.06493629,-0.019750992,0.42813635,-0.33529514,-0.054400597,0.05845692,0.63853914,-0.368031,-0.025895732,0.69208187,0.99876773,0.9531554,0.14772859,0.9822067,0.15221487,-0.18752548,0.19228904,-0.10358023,-0.96961683,0.3966025,0.4135142,-0.06640527,0.22036219,0.2056622,-0.06482831,0.3376509,-0.67663884,-0.07398283,-0.1575142,0.259184,0.12148126,-0.11086636,-0.36881003,-0.22755095,0.0954432,-0.11198733,0.24827896,0.28375667,-0.23872952,0.3183233,0.041133378,1.4844464,0.0043253363,0.10568202,0.16470854,0.44184348,0.07835962,-0.08174243,-0.18223003,0.32013968,0.47518322,0.13285412,-0.5848971,0.07193274,-0.14617564,-0.46594015,-0.11529021,-0.3668329,-0.10011958,-0.081826404,-0.4176369,-0.078538656,-0.12591524,-0.39209014,0.33193773,-2.845687,-0.13897316,-0.16607523,0.26780626,-0.16378048,-0.25164667,-0.16254807,-0.52126,0.40564123,0.37541705,0.381798,-0.56843597,0.32607636,0.26560023,-0.50204223,-0.11534451,-0.64964044,-0.20506911,-0.13333152,0.3119792,0.06340305,-0.12151004,-0.0019264271,0.16071606,0.44953856,-0.12048144,0.084809415,0.33827162,0.4437055,0.08966373,0.43926525,0.008804556,0.4814181,-0.4103252,-0.17819366,0.214089,-0.4038436,0.26935247,-0.12310408,0.059827678,0.44671234,-0.4456908,-0.8673152,-0.51429504,-0.18380457,1.343322,-0.3507962,-0.26232362,0.2761301,-0.45264608,-0.27017358,-0.17484328,0.5220767,-0.2634832,-0.14507,-0.8449271,0.12318819,-0.12460788,0.30063948,-0.15187056,0.18600817,-0.42046502,0.50515777,-0.16893865,0.5795549,0.35323414,0.08696103,-0.40242413,-0.3977241,0.019246196,0.85644853,0.2526557,0.2088047,-0.3181049,-0.20284748,-0.25470743,-0.10796431,0.12744401,0.4333463,0.65846723,0.045986585,0.26889324,0.24824275,0.00041584572,0.0016123672,-0.20783505,-0.12197105,-0.10895452,0.036683034,0.59449667,0.4765067,-0.20578489,0.3751485,-0.054678954,0.17827241,-0.27521724,-0.38102227,0.37775022,0.8096676,-0.15152344,-0.2384551,0.6067456,0.5990368,-0.26797873,0.44646642,-0.6032636,-0.37751135,0.5136626,-0.20339155,-0.32734114,0.13684055,-0.31049052,0.13851538,-0.79284304,0.34800598,-0.21055922,-0.47371894,-0.55258155,-0.14003369,-3.0902221,-0.029324654,-0.21679412,-0.23931125,-0.14938878,-0.21919148,0.2692094,-0.5189141,-0.63471055,0.1549793,0.0044962484,0.7449744,-0.015846502,0.028306877,-0.21623239,-0.13490559,-0.3079632,0.021573609,0.26640627,0.34044826,-0.03943837,-0.5137151,0.060602717,-0.35533467,-0.3662735,0.018626519,-0.3509086,-0.3893866,-0.11722718,-0.40617618,-0.36522678,0.63782865,-0.30507267,0.025969068,-0.24383317,-0.09488266,-0.028669897,0.5010713,0.1111935,0.07837882,0.022804596,-0.12694551,0.088480584,-0.24838838,0.40492085,0.0019427468,0.21529852,0.4850773,-0.12731542,0.06639804,0.5278258,0.6239605,0.016752938,0.9688375,0.43810079,-0.03186737,0.2920259,-0.3173151,-0.20863742,-0.47484702,-0.28089148,0.16007169,-0.5232794,-0.3758458,-0.0467374,-0.25921413,-0.739395,0.5551758,-0.07517918,0.18510617,-0.09235541,0.25046647,0.32302767,-0.11528208,-0.040789746,0.013611825,-0.11362009,-0.4427561,-0.2629709,-0.72121185,-0.46423498,-0.14411524,1.0316367,-0.019603463,-0.009860579,-0.11783919,-0.2852392,0.048007987,-0.00043649177,0.1106744,0.4415832,0.4050785,-0.030184139,-0.63415533,0.5051858,-0.26561686,-0.17835228,-0.6605946,0.031479307,0.50058967,-0.60189915,0.43324196,0.54157454,0.09932851,-0.23603392,-0.62419474,-0.20048591,-0.009162708,-0.23396635,0.48285788,0.24164183,-0.95576286,0.5717567,0.34468836,-0.28440675,-0.6600888,0.5683979,0.035426967,-0.08139746,0.06160728,0.36788553,0.028579967,0.010774593,-0.23586608,0.26421317,-0.40301147,0.34557202,0.09964369,-0.0388273,0.58810717,-0.2853433,-0.104189016,-0.6149509,-0.1531076,-0.52892435,-0.19808222,0.043472864,0.024450807,0.11507929,0.2641886,-0.07685884,0.40801275,-0.3453311,-0.013064277,-0.042994857,-0.31331718,0.26127604,0.47629267,0.45775267,-0.30633646,0.73317975,0.037425168,-0.052309196,-0.21417756,-0.014123563,0.3895133,-0.039926697,0.40969416,0.051471844,-0.13209723,0.33328542,1.0035819,0.30329636,0.5262359,0.11782046,-0.20312552,0.22683129,0.098280884,0.2427153,0.15117575,-0.46282777,-0.0720046,-0.19442225,0.1948448,0.5212689,0.08428321,0.4485127,-0.1738692,-0.2946449,0.08499123,0.15806977,-0.057169072,-1.2980211,0.43605942,0.23302579,0.7602313,0.3932902,-0.09396728,0.16409925,0.5331899,-0.2785441,0.07821373,0.28323695,-0.044256404,-0.5165016,0.5858948,-0.6647036,0.47872683,-0.14756887,-0.017377261,0.036310203,-0.015560516,0.45637423,0.7536752,-0.05233781,0.1463617,0.12945439,-0.3066463,0.47055086,-0.38551372,0.099827565,-0.4701424,-0.13543962,0.55229264,0.357915,0.29300803,-0.16915454,-0.05289825,0.11382501,-0.235444,0.04279908,0.009818172,0.05683485,-0.17928293,-0.731972,-0.36278668,0.46662578,0.25336793,0.27009067,0.057227526,-0.17423995,0.28937203,-0.12263168,0.0055874386,-0.05988767,-0.59337866,-0.10229562,-0.21256848,-0.5052671,0.3537914,-0.3196939,0.39874935,0.33297,0.05675181,-0.5265959,0.21256307,0.2995692,0.60596377,-0.138479,-0.19699137,-0.337127,0.07010262,0.36329505,-0.14587447,-0.120564714,-0.38356754,-0.0016655525,-0.55218405,0.47304013,-0.3001719,-0.27863804,0.12735596,-0.16635732,-0.013445808,0.6101159,-0.09234175,-0.030153632,-0.19706097,-0.20805801,-0.22304909,-0.2034988,-0.113365434,0.18241526,0.27628818,0.008513419,-0.14301716,-0.115649536,-0.2367367,0.42027885,0.043219972,0.2562774,0.3093806,0.1401651,-0.3833395,-0.16490307,0.007971945,0.6749409,-0.020403298,-0.27122968,-0.3901211,-0.33876324,-0.18569992,0.3867422,-0.226852,0.25852427,0.06204747,-0.43637875,0.6020768,-0.15396073,0.8399387,0.117952116,-0.34458777,0.027334617,0.575819,0.011342378,-0.088594265,-0.29470003,0.7245753,0.36322778,-0.10103885,-0.2536151,-0.40904695,0.04366237,0.18073162,-0.24871597,-0.4661114,-0.09493187,-0.5388571,-0.15386659,0.21170416,0.25057167,0.09469107,-0.08797324,0.08907998,0.18330696,0.08661273,0.36667222,-0.38897422,-0.023930894,0.42886657,0.18362135,0.045324948,0.065685466,-0.40894744,0.4264281,-0.51975656,-0.03965707,-0.08645405,0.15800068,-0.18010564,-0.2852059,0.26440996,0.18062791,0.3830939,-0.16173694,-0.3050651,-0.18973367,0.39507398,0.18186906,0.23031229,0.56126183,-0.14256243,0.09317417,0.10964737,0.4340605,0.80072784,-0.14408083,0.11215841,0.26155204,-0.2234401,-0.6592176,0.42358744,-0.3210037,0.3190386,-0.04372167,-0.229409,-0.5258284,0.28725433,0.26245484,0.050866805,0.08633998,-0.47565377,-0.31047502,0.31591216,-0.21417001,-0.26203197,-0.36810723,-0.13742277,0.57720816,-0.24179235,-0.10319498,0.043553773,0.37212092,-0.16599983,-0.53486824,-0.1647944,-0.37598115,0.24917266,-0.020017935,-0.20810822,0.0065295976,0.103496306,-0.39236456,0.23315828,0.19784197,-0.32014084,-0.0076703173,-0.25424775,0.003360776,0.75293756,-0.27398828,0.1716297,-0.49598545,-0.45734024,-0.8887799,-0.1350287,0.510089,0.109829076,-0.010058873,-0.59460133,-0.013341288,0.0780759,-0.21119852,-0.07763468,-0.5379919,0.4104561,0.15241647,0.30717283,-0.0042828443,-0.58180845,-0.08069751,-0.09711816,-0.18901974,-0.3440026,0.5817548,0.07093235,0.72525465,0.16432227,0.19367911,0.26092243,-0.38628337,0.14259437,-0.13617347,-0.15713896,-0.5560366,0.10310198,155 -153,0.37274933,-0.14908953,-0.5775996,-0.2080876,-0.41959056,-0.036410023,-0.23649965,0.29752514,0.34050658,-0.118486054,-0.17378642,-0.077227004,0.08184986,0.4491599,-0.055149443,-0.72288173,0.0019783655,0.21359462,-0.832589,0.50875205,-0.537858,0.22941287,0.15197115,0.43927062,0.009764,0.34102675,0.13842623,-0.16038746,-0.048810072,-0.040802136,-0.17946644,0.21668513,-0.71096665,0.12546398,-0.12256646,-0.32212144,0.17468818,-0.4421705,-0.24365206,-0.83425176,0.072504684,-0.901887,0.6017763,-0.22323309,-0.15300614,-0.11592419,0.22211027,0.32534167,-0.39312667,-0.038723163,0.18524344,-0.39333412,-0.2515463,-0.33609626,0.057892848,-0.5874586,-0.36383173,-0.024092672,-0.6606666,-0.2183199,-0.2902668,0.13401847,-0.400225,-0.023560004,-0.195543,0.41650406,-0.43015158,0.04723733,0.22579987,-0.3309546,0.22325392,-0.54790086,0.03467679,-0.064230256,0.46342385,0.14441101,-0.29298154,0.52251786,0.38381317,0.4982598,0.4951653,-0.3991225,-0.06039604,-0.13739923,0.03481609,0.2726414,-0.25864202,-0.28623277,-0.16891113,0.04000724,0.33420002,0.34208614,0.011397393,-0.21765544,0.006054185,0.06644293,-0.26245815,0.58238155,0.64808196,-0.34200636,-0.31449062,0.27591762,0.6768416,0.29369158,-0.25155792,-0.03661292,-0.14235945,-0.52628386,-0.26520625,0.028568523,-0.17422025,0.47834387,-0.21844834,0.022157649,0.96169317,-0.14555593,-0.16438456,0.042682808,0.081331015,-0.20804304,-0.27648914,-0.09063656,0.21334597,-0.60997766,-0.0004402717,-0.27718046,0.7536373,0.16292973,-0.61503613,0.3273379,-0.6086479,0.12218742,-0.15152965,0.7089891,0.88888085,0.6232128,0.41805777,0.899465,-0.3272608,0.12615487,-0.13752271,-0.611536,0.16430274,-0.33550674,0.12720607,-0.48346832,0.1845607,-0.20362803,0.09781659,0.11953714,0.37922862,-0.7285076,-0.023963396,0.2943122,0.7124012,-0.3318713,-0.18829629,0.6812101,1.0075215,0.9034275,0.003513686,1.2987764,0.39700064,-0.21030119,0.26090264,-0.2712431,-0.6610968,0.23298594,0.42780444,0.25413826,0.23066439,0.050603013,-0.09120839,0.5473246,-0.4785066,-0.06432261,-0.058506127,0.40443859,0.11012946,-0.19699176,-0.50355947,-0.1432196,-0.035518385,-0.0034911314,0.19737393,0.30871058,-0.2860444,0.36660463,-0.043357987,1.1317179,-0.028835285,-0.034112427,-0.05282086,0.63364005,0.43255964,-0.024897592,0.032767225,0.56907773,0.512831,0.021904852,-0.647345,0.33416045,-0.3117715,-0.5178131,-0.15055594,-0.48044688,-0.115233816,0.058396712,-0.38791284,-0.17418927,-0.05830046,-0.14439702,0.43157896,-2.5463312,-0.29825532,-0.012312881,0.34039372,-0.21980648,-0.15268026,-0.05729335,-0.5353641,0.26976046,0.23831746,0.5822028,-0.6799374,0.60349154,0.56363857,-0.6523704,-0.16213408,-0.75787175,-0.013035615,-0.08256877,0.5798674,0.08819364,-0.14506386,-0.2992345,-0.08503929,0.85930187,0.016359108,0.18810923,0.4904629,0.30794507,-0.07292388,0.5471235,-0.00028525194,0.6708258,-0.23058882,-0.324958,0.41369435,-0.11580066,0.19069912,-0.16106577,0.03529925,0.65646243,-0.22111578,-1.0408913,-0.58384854,-0.24232174,1.0284861,-0.58604556,-0.6737699,0.22592953,-0.089385174,-0.06419449,0.14324807,0.53469175,-0.048454467,0.22544555,-0.6410485,0.22993034,0.06817318,0.2684765,0.0503831,0.0189009,-0.2823707,0.882841,-0.12431439,0.5620626,0.09973359,0.33997175,-0.18049425,-0.38722613,0.13916938,0.73022133,0.3710455,-0.028918149,-0.115272455,-0.40595996,-0.015262151,-0.21892545,-0.0319779,0.67603874,0.7346255,-0.06682642,0.10354088,0.35641566,-0.15613209,-0.026297962,-0.2079077,-0.32678694,-0.022274856,0.16801134,0.5892609,0.8050451,-0.11517207,0.5290553,-0.30291185,0.42835972,0.02402062,-0.83944577,0.7822807,0.72809863,-0.38838437,-0.060261257,0.6596127,0.48790935,-0.41978008,0.5114323,-0.72638476,-0.35323197,0.64955455,-0.12192817,-0.48412374,0.20501085,-0.07465884,0.14611872,-0.8573271,0.34783515,-0.25005153,-0.5034126,-0.36006296,-0.123306945,-3.6989005,0.13975126,-0.22953075,0.05294017,-0.4087011,-0.21164484,0.3284413,-0.552437,-0.45427603,0.04431827,0.34392738,0.60220283,-0.12620792,0.11390459,-0.26443446,-0.25965998,0.0001976808,0.254281,0.07997753,0.2259736,-0.2670893,-0.4951709,0.04829484,-0.0211285,-0.62546885,0.14254206,-0.73502594,-0.44047138,-0.15990232,-0.5842787,-0.2681374,0.6727334,-0.40577596,0.06040678,-0.38411236,0.2166162,-0.17318091,0.15559778,0.0035748442,0.20671003,0.20115252,-0.018611105,0.068971395,-0.34834108,0.35551548,-0.112283446,0.41097102,0.05054973,0.041173343,0.09212985,0.60350746,0.6248473,-0.3174299,1.1091641,0.47448316,-0.09770434,0.30629498,-0.20229219,-0.45123816,-0.76868427,-0.45944166,-0.13237487,-0.49271873,-0.39702594,0.07530734,-0.26276857,-0.8555114,0.7211924,0.028333457,0.36495855,-0.03171884,0.41125652,0.58829373,-0.26553473,-0.10565035,0.014836278,-0.29951864,-0.6107668,-0.2083522,-0.6400058,-0.56050473,-0.112458296,0.9008966,-0.31261098,0.033082105,-0.16008724,-0.22653061,0.06687162,0.066552736,0.11785095,0.33887103,0.6601624,-0.10480948,-0.6638501,0.44365862,-0.17177577,0.009340908,-0.4522437,0.26083508,0.5784171,-0.8819149,0.586183,0.32760426,0.079635754,0.0016408762,-0.46642736,-0.31149292,-0.09508297,-0.23598306,0.6637282,0.14490296,-1.0037733,0.72618455,0.29663345,-0.5218453,-0.7350513,0.28503808,-0.36015156,-0.13269857,-0.09495583,0.3128632,0.21170953,0.0034355521,-0.26731557,0.05883391,-0.43957472,0.30757946,0.24449587,-0.14410387,0.33144256,-0.11336157,-0.33169767,-0.87930095,-0.19017999,-0.5189182,-0.27764854,0.214976,-0.07229454,-0.15392184,0.18990894,0.1708964,0.40847617,-0.23961347,0.10767707,0.049840022,-0.38075924,0.39451855,0.6297013,0.2718465,-0.41671133,0.5550095,0.16337703,-0.21433279,0.029472891,-0.02018861,0.42769888,0.090504065,0.48296902,-0.13100514,-0.07736151,0.305799,0.78589857,0.085447386,0.518851,0.0037977297,-0.06409427,0.44638252,-0.019821225,0.2357314,-0.061787143,-0.5483247,-0.022869706,-0.15616061,0.10117838,0.6278104,0.38793486,0.25913402,0.20275244,-0.22424752,-0.006166192,0.08623998,0.02413707,-1.3924923,0.37490195,0.346104,0.87256926,0.27628013,0.13638227,-0.27206296,0.82863843,-0.19356129,0.07707569,0.3598575,0.03104372,-0.3969249,0.8234387,-0.82639694,0.3932566,-0.22208509,0.027689178,0.28593123,0.15837483,0.34079903,0.9821297,-0.39201647,0.06142044,-0.09481656,-0.14301507,0.11885885,-0.3898568,-0.08062411,-0.3622801,-0.50012326,0.5920729,0.27821887,0.3981253,-0.38296425,-0.058987655,0.029771296,-0.22875571,0.17786066,-0.05956485,-0.0597694,0.042844705,-0.504979,-0.19739936,0.60375625,0.0818652,0.29486814,-0.24412526,-0.20140958,0.14064822,-0.17482908,-0.1553785,-0.04857952,-0.55885863,-0.103194766,-0.099041745,-0.5972749,0.5850697,-0.23434146,0.09219447,0.19003859,0.026770897,-0.22254448,0.23828362,-0.013457409,0.8910802,0.08925327,-0.2896624,-0.43604693,0.0538595,0.20709231,-0.23741437,0.102180146,-0.40290934,-0.12464228,-0.4769886,0.55780387,-0.31117517,-0.48636863,0.33277923,-0.273754,-0.06441371,0.51049775,-0.049750637,-0.17741083,0.18474266,-0.1500454,-0.27356103,-0.1492397,-0.22962798,0.236086,0.13115364,-0.047117434,-0.14869693,-0.36777732,-0.046311595,0.5486811,-0.011543524,0.24664932,0.1565066,-0.027218437,-0.14784451,0.122634694,0.3520846,0.46531487,0.10096493,-0.023607353,-0.2621051,-0.445793,-0.30159757,-0.012070068,0.03801828,0.24295826,0.038595937,-0.28530064,0.9285523,0.11967882,1.3659271,-0.01082542,-0.4169716,0.07505606,0.5794016,-0.16781637,0.1351487,-0.34201142,0.7877351,0.4377203,-0.08668299,-0.01074725,-0.6219035,-0.097097225,0.38258642,-0.36748248,-0.04219156,-0.07638118,-0.6633011,-0.46851674,0.24823213,0.23269469,0.1862614,-0.0023047766,-0.034132473,0.12392252,0.003391695,0.44996542,-0.55945027,-0.3221485,0.26535898,0.27357668,-0.23922509,0.11408119,-0.3655591,0.5063908,-0.7517394,0.12886469,-0.44414538,0.07896564,-0.28739282,-0.21200013,0.08883904,-0.18093835,0.41814613,-0.28978428,-0.4350149,-0.048810005,0.5572536,0.08042122,0.04648783,0.7753915,-0.2744983,-0.052369613,0.2001011,0.46114308,1.206331,-0.46266204,0.033701602,0.30678454,-0.45980483,-0.5578488,0.5412219,-0.31877723,-0.021236528,0.0027895847,-0.47360352,-0.4411096,0.26197046,0.15145995,-0.0028424123,0.07261516,-0.6117382,0.009047016,0.40201828,-0.2507353,-0.10300309,-0.16390909,0.49956927,0.7006063,-0.29103354,-0.34467456,0.14384049,0.406487,-0.2969628,-0.55709594,-0.09609859,-0.29288405,0.41892055,0.11805216,-0.34362686,0.024171174,0.21358617,-0.5885324,0.07209239,0.27678353,-0.29319033,0.21512076,-0.16542183,0.023733588,0.8266936,-0.22218771,0.05706105,-0.6817038,-0.4796863,-0.9790184,-0.35182866,0.17098351,0.19668826,-0.002531286,-0.4807816,0.0071543334,-0.09195555,-0.22476664,-0.0063143414,-0.61499906,0.40345705,0.10407792,0.5357545,-0.32404187,-1.044505,0.21021229,0.12496236,-0.030297805,-0.669347,0.5939958,-0.20453276,0.83369243,0.10977246,0.067335576,-0.019205637,-0.33016667,0.14889288,-0.3609429,-0.18203184,-0.77507144,0.053614616,162 -154,0.4506901,-0.18685599,-0.5604207,-0.04072779,-0.2873871,0.08050411,-0.15121374,0.2895683,0.26725337,-0.298647,-0.28244624,-0.05244891,-0.16176,0.15843931,-0.2177053,-0.8569763,-0.06911363,0.2786169,-0.79661787,0.6774946,-0.28032112,0.37690818,-0.08777364,0.43194935,0.3507025,0.21355076,0.001934584,0.17686187,-0.10862188,-0.060578655,0.23834404,0.21042562,-0.3900215,0.30404207,0.024192035,-0.4214136,-0.13847241,-0.16217996,-0.54029936,-0.71971947,0.4014746,-0.5606444,0.6853284,-0.17508915,-0.2636565,0.11348777,0.07523993,0.2700611,-0.09112729,0.0798485,0.12198598,-0.08940484,-0.13268378,-0.20443055,-0.12185461,-0.32766995,-0.6285646,0.08618562,-0.21192113,0.10864104,-0.29342568,0.33014277,-0.26936227,-0.17843652,0.033262692,0.6838092,-0.4434037,0.24085078,0.09555736,-0.09736455,0.15554056,-0.7633921,-0.18589588,-0.05801362,0.14148246,-0.08925138,-0.24219428,0.35325202,0.23478957,0.3633885,-0.0026423573,-0.070223495,-0.38507944,0.027930005,0.31092775,0.51111394,-0.1918398,-0.27855533,-0.21848409,-0.081882715,0.18332878,-0.03944478,0.18000199,-0.46738866,-0.038921986,-0.16972104,-0.12590389,0.43315664,0.5875241,-0.22357877,-0.04643644,0.21109752,0.60645527,0.24850534,-0.31220895,0.19082107,-0.08414053,-0.47311223,-0.18617731,-0.020083357,-0.036733326,0.39810255,-0.26270455,0.17315458,0.41140467,-0.019855734,-0.09560133,0.15627146,0.14645134,0.1943868,-0.1419762,-0.27079707,0.28489748,-0.32062557,0.023594951,-0.21583627,0.5158904,-0.059835315,-0.73785627,0.3897819,-0.5035517,0.18882097,-0.03326698,0.42932364,0.89654756,0.5494087,0.2286916,0.7250782,-0.26758403,0.0932425,0.0070761126,-0.21001078,-0.0031593083,-0.18112348,-0.25899637,-0.5782595,0.10436353,-0.17630193,-0.11888883,0.18821925,0.68745875,-0.55058277,-0.09850205,0.13677579,0.7601775,-0.310329,-0.074626185,0.7556603,1.1051093,1.0355098,-0.018952202,1.2855303,0.32553163,-0.2164308,-0.116092876,-0.4470415,-0.76917493,0.2806236,0.20110124,0.00055090187,0.29139405,0.13544534,0.049175788,0.6438084,-0.5653442,0.09208746,-0.14379008,0.30190268,0.24238668,-0.18021907,-0.3286608,-0.02281042,0.1089977,-0.006359168,0.08473409,0.30473545,-0.18450995,0.52050364,0.05601406,1.4450259,0.045845076,-0.015575296,0.06527952,0.4226646,0.27754575,-0.21922256,0.037868787,0.14730212,0.3211914,-0.1058106,-0.38726914,0.05819267,-0.19803222,-0.46000487,-0.34151787,-0.15364598,-0.027979637,0.015986083,-0.3386606,-0.32140574,0.026031077,-0.34768203,0.42321813,-2.4974425,-0.12847215,-0.003623871,0.31916836,-0.17467387,-0.38162187,-0.1380207,-0.43972164,0.5028688,0.39787292,0.27831644,-0.5171347,0.42040318,0.54741615,-0.6069824,0.07856898,-0.48774394,-0.26062644,0.08481685,0.42706013,0.098836385,-0.0041149952,-0.004215779,0.27979797,0.3800414,-0.28748912,0.07848878,0.601245,0.32058278,-0.121856526,0.35534057,0.15422456,0.4860276,-0.23819119,-0.19211149,0.47830716,-0.4409538,-0.105399214,-0.09605323,0.16251473,0.4483897,-0.58759344,-0.81548405,-0.73099047,-0.010224919,1.0951059,-0.13024867,-0.44463772,0.2236522,-0.55422646,-0.4562655,0.12568586,0.390713,-0.28322694,-0.0908932,-0.93637884,-0.06346515,0.029551132,0.17700125,-0.058492444,-0.18201709,-0.52274925,0.7359908,-0.11982953,0.44627598,0.3476567,0.26720947,-0.41162536,-0.60595006,0.15665223,0.83628833,0.41904035,0.2230994,-0.34849685,0.0010137201,-0.2726112,-0.019432664,0.026403582,0.74037284,0.43505272,-0.07267036,0.17027004,0.20833167,-0.18333127,0.005258723,-0.32832068,-0.22452666,-0.16404864,0.15426487,0.59721947,0.80410826,-0.06844747,0.32882348,-0.05344161,0.27077356,-0.12859382,-0.5835431,0.4741358,1.2430363,-0.12483377,-0.41212857,0.57421315,0.32146734,-0.35730827,0.3666331,-0.5175871,-0.32930136,0.32918674,-0.20213555,-0.47285882,0.22981231,-0.47935548,0.27436596,-0.7373413,0.41184703,-0.27218515,-0.6829903,-0.7923965,-0.21927248,-2.699856,0.15785035,-0.16255121,-0.20543434,0.00027934313,-0.0985034,0.2366407,-0.4150655,-0.6181412,0.14528349,0.122177884,0.622366,-0.10339952,-0.006995074,-0.2228155,-0.24406092,-0.2725633,0.13439964,0.2674244,0.4036349,0.056387685,-0.5925653,-0.039211024,-0.21612908,-0.37842363,-0.018915253,-0.564956,-0.47112072,-0.12921134,-0.40524408,-0.3052059,0.5592724,-0.37072498,0.11208847,-0.38785505,-0.05816532,-0.041709915,0.29008913,-0.0015163899,0.3086788,0.09451454,-0.12964661,-0.016978212,-0.20032355,0.28149053,0.026752543,0.10862185,0.4007007,-0.24711232,0.23851338,0.4397593,0.79068834,-0.06549905,0.8568115,0.67456186,0.02826536,0.3594825,-0.2372317,-0.23631604,-0.45018852,-0.19460502,-0.03515742,-0.50945324,-0.38371196,-0.06016945,-0.41344678,-0.84317297,0.3907079,0.055344917,0.015063898,0.08259659,0.0263654,0.382095,-0.075689666,-0.07954613,0.0020101587,-0.16725999,-0.41272953,-0.38415283,-0.5758603,-0.63215446,-0.036934875,1.2350681,-0.069265254,0.049225695,0.0071793157,-0.37663117,0.06824842,0.45312753,0.070847146,0.18479179,0.2492188,-0.08154602,-0.6384016,0.30961242,0.0135345375,-0.18984821,-0.777889,0.33887655,0.6042546,-0.46626613,0.69694895,0.11869344,0.08285419,-0.17704137,-0.46636862,-0.08421458,-0.08212772,-0.36083743,0.65224373,0.27550218,-0.77470624,0.36081064,0.31997764,-0.14949757,-0.73283464,0.4649414,-0.070903346,-0.47909498,-0.03509056,0.36252648,-0.032214113,-0.06349039,-0.29502842,0.4163305,-0.31107077,0.3516021,-0.042323455,-0.017736562,0.26107332,-0.33133328,-0.21194172,-0.8050509,0.025396133,-0.7494355,-0.2248283,0.05966769,0.23025656,0.050499775,0.17675386,0.19481756,0.5336834,-0.14149386,0.08463161,-0.2653534,-0.35877183,0.13893466,0.42892864,0.3616918,-0.23500799,0.49012193,0.0066014924,-0.028554369,-0.13884738,0.21776411,0.4784952,-0.012263664,0.5181205,0.1537022,0.023031782,0.17031096,0.83130443,0.12611634,0.49257553,0.082682975,-0.42760515,0.12455165,-0.00700444,0.27135113,-0.24756306,-0.38327515,0.15350066,-0.07461263,0.28623885,0.48412952,0.038361542,0.34914058,-0.25886196,-0.54622036,0.044059515,0.22029267,0.13388465,-1.261864,0.22983462,0.2801719,0.9400834,0.64684,0.027047275,0.08961179,0.6291349,-0.20187952,0.1804912,0.28640863,-0.11329515,-0.36728752,0.18555275,-0.66877043,0.28636685,-0.06746138,-0.014270093,0.031055331,0.10027324,0.31833872,0.631292,-0.09854301,0.17540452,0.08904681,-0.3268339,-0.013286384,-0.30754316,0.2114182,-0.6242756,-0.29317617,0.7395276,0.6037123,0.31989262,-0.31604674,0.027946698,0.057233334,-0.16681808,0.21029395,0.08259661,0.037242077,-0.20331192,-0.62643343,-0.23005508,0.37851036,-0.09156459,-0.061961852,0.16362152,-0.16926424,0.11398499,-0.026688028,0.049055915,0.012015085,-0.6804343,0.030346863,-0.1864925,-0.2574615,0.56442845,-0.11210596,0.18563844,0.26699695,0.1679041,-0.5138957,0.43011147,-0.11713366,0.6114496,0.27219492,-0.08849514,-0.14207025,0.107627995,0.18377215,-0.23260196,-0.09380486,-0.25164768,0.12584561,-0.55757844,0.5309831,0.03310759,-0.33384547,0.21659908,-0.043361958,0.039273158,0.43714058,-0.17780396,-0.2628645,0.16558236,-0.103464685,-0.2474551,-0.07577847,-0.15524833,0.29874882,0.05131442,-0.08131029,0.022295343,-0.026784489,0.10558153,0.4613764,0.00034152268,0.37849107,0.52670556,-0.03772788,-0.6036997,-0.11438713,0.21525559,0.57973444,-0.13698754,-0.0061644954,-0.14344007,-0.5882972,-0.34572938,0.15779649,-0.093944296,0.24704543,0.09207668,-0.3661038,0.6556966,0.25008374,1.0688788,-0.046750896,-0.33697116,0.16613425,0.45791528,-0.00014923414,0.08698707,-0.4214288,0.78000844,0.6958944,-0.31163895,-0.185145,-0.2846941,0.07655837,0.093157984,-0.20489554,-0.09976683,-0.06588217,-0.672434,-0.25805634,0.14157702,0.19656359,-0.03871723,-0.08772082,0.07355436,0.19073036,-0.07378825,0.049348693,-0.38847452,0.15873255,0.267434,0.1951676,-0.06103829,0.17668322,-0.41632032,0.18028536,-0.4879065,0.0021709919,-0.095496856,0.078714505,-0.24255161,-0.4185961,0.293973,0.12201972,0.16584127,-0.38336653,-0.17423187,-0.3610702,0.4326425,0.08840346,0.18597198,0.51072115,-0.19039008,0.11441318,0.13521475,0.43326876,1.0859106,-0.23416182,-0.10237346,0.26725942,-0.4004678,-0.58639246,0.12634544,-0.34635586,0.1387234,-0.13652392,-0.2741197,-0.6542526,0.24527302,0.15756449,0.030239511,0.09337781,-0.6013168,-0.28061792,0.17244457,-0.3745204,-0.17293213,-0.22778429,-0.11988063,0.37898207,-0.30906853,-0.3158521,0.054941174,0.27652928,-0.34247595,-0.46846455,0.018247524,-0.47720322,0.341222,0.04674333,-0.39999703,-0.3096082,0.08834764,-0.4116589,-0.099053755,0.21115139,-0.38594002,0.05787366,-0.23337944,-0.14333053,0.7929717,-0.29346463,0.38455597,-0.4659541,-0.50202316,-1.146037,-0.26939213,0.41160545,0.33386937,-0.17528106,-0.9837298,-0.18107858,-0.28347814,-0.24125478,0.25101817,-0.32550174,0.5306778,0.119110845,0.35380393,-0.14242278,-0.8283419,0.05193255,0.23126838,-0.3977567,-0.5664772,0.4951262,0.07950557,0.87853485,0.03121459,0.17139983,0.12788756,-0.5959846,0.27665854,-0.1647136,-0.29797643,-0.3359446,0.07112409,168 -155,0.4525439,-0.18503271,-0.3472379,-0.08898704,-0.23806654,0.32467943,-0.1524414,0.67112666,0.12006932,-0.4173092,-0.26128113,-0.15260975,0.042759545,0.2970726,-0.18351673,-0.67510045,0.18117745,0.17496796,-0.54928195,0.46832898,-0.4579204,0.41291282,0.09978994,0.28464645,0.1341854,0.1869346,0.10921065,-0.0819697,-0.09084538,-0.17339844,-0.18376662,0.18901499,-0.5238197,0.22539784,-0.2812936,-0.26971915,0.120175295,-0.40510538,-0.1810936,-0.74532753,0.21338636,-0.67834693,0.5686485,-0.124370255,-0.19689558,0.17156808,-0.06575345,0.27376768,-0.15784372,0.07277761,-0.00839374,-0.15845019,-0.20716947,-0.18887405,-0.30417043,-0.53512204,-0.55640954,0.13491268,-0.4111374,-0.18965791,-0.13523944,0.08937171,-0.23557281,0.15911508,-0.1395395,0.2569726,-0.30167547,0.11651297,0.20733906,-0.102184966,-0.23065597,-0.74577385,-0.10607322,-0.049811974,0.26584396,-0.1461196,-0.2228054,0.13877612,0.36310846,0.4612587,0.07397759,-0.13236716,-0.0081062,-0.17306802,0.095706016,0.61094683,-0.030629775,-0.44031653,-0.18712208,-0.1075372,0.33592552,0.09892881,0.1469204,-0.24163179,-0.13982283,-0.11742379,-0.34477994,0.2666156,0.40991324,-0.4397446,-0.21438351,0.2734311,0.63830733,0.29021242,-0.03168384,0.0031448046,-0.13129447,-0.48009524,-0.17956069,0.0418643,-0.15202741,0.53495765,-0.19709176,0.24317147,0.5907186,-0.09011584,0.17675826,0.14376834,0.07750416,-0.057411637,-0.3000126,-0.17115821,0.24712703,-0.3912782,-0.025060771,-0.4724142,0.9019745,0.21316189,-0.48799363,0.35707876,-0.5603602,0.04896548,0.015507896,0.50274533,0.65089154,0.46483344,0.06117536,0.50863844,-0.36505777,0.04292108,-0.24080965,-0.19404347,0.00024227897,-0.035357837,0.13589843,-0.32766542,0.14807667,0.006854272,-0.04848568,0.14205717,0.401634,-0.55235267,-0.1910491,-0.020472368,0.6514463,-0.33745804,-0.19034459,0.8834745,0.7941045,0.59732246,0.022315009,1.4069767,0.35947686,-0.08462346,0.005822088,-0.11350438,-0.51757896,0.26431906,0.42756793,0.022713447,0.22622482,0.14655222,-0.22327873,0.51763356,-0.21201736,-0.10180179,-0.12750551,0.107972614,0.067582145,-0.0894554,-0.37560785,-0.4230939,0.05913692,-0.0010059715,0.36278751,0.31898782,-0.1735219,0.44171238,0.16351582,1.4495457,0.013160872,0.035938084,0.14866963,0.29707846,0.27217168,-0.103753544,0.014266928,0.32140905,0.4442538,-0.25395855,-0.6021399,0.09792228,-0.17613906,-0.49703866,-0.11284904,-0.20428766,-0.31278357,0.0014601827,-0.5201879,-0.16434774,0.0007189711,-0.0649047,0.52784705,-2.4599333,-0.29354334,-0.062108763,0.4353255,-0.24886084,-0.5680083,-0.1222645,-0.5111574,0.28528756,0.27298635,0.38851902,-0.55230534,0.41085273,0.3058426,-0.39802578,-0.30041817,-0.7667964,0.00017073154,0.07117708,0.18805012,-0.0077837706,-0.06738218,-0.12447158,-0.14831664,0.48938274,-0.1794279,0.041822795,0.27587345,0.35715994,-0.00027712385,0.19506977,0.10643341,0.72618896,-0.23613353,-0.20881669,0.35633776,-0.40930384,0.45464352,-0.11815001,0.20459713,0.43622005,-0.24067567,-0.69139045,-0.57609344,-0.43025622,1.0750155,-0.113414794,-0.29175052,0.07167921,-0.22856897,-0.28842923,-0.09675792,0.4871237,-0.28314874,-0.2691836,-0.71273464,0.0017261207,0.0017553369,0.33550936,-0.12675074,-0.007276883,-0.36850446,0.64435744,-0.21493435,0.42249668,0.21370506,0.25445303,-0.008424266,-0.24468024,0.03321358,0.79466313,0.5260352,0.23106645,-0.1602969,-0.097982734,-0.31758806,0.050068174,-0.08612495,0.58124864,0.61663973,0.17755626,-0.0581975,0.2547092,0.03989335,0.030286439,-0.1524305,-0.2986614,-0.073566005,0.061670747,0.56033605,0.47786275,-0.22998829,0.34071413,-0.18698753,0.41263524,-0.3244642,-0.4550351,0.4789568,0.6948748,-0.28800327,-0.019296153,0.5577128,0.38113564,-0.22307198,0.33827174,-0.74530286,-0.32018337,0.5387638,-0.13673906,-0.29691255,0.16934827,-0.14663629,0.1384127,-0.8224852,0.40484092,-0.25872996,-0.41010907,-0.53496754,-0.040070526,-2.618008,0.068026215,-0.06204713,-0.070130125,-0.15003738,-0.27883607,0.07998071,-0.512823,-0.3801632,0.29314363,0.09338166,0.45635766,-0.019897643,0.07708425,-0.20141338,-0.4501178,-0.16122116,0.09307518,0.06979516,0.2788862,-0.28089145,-0.25462693,0.0782294,-0.27561596,-0.30333626,0.16952032,-0.71832126,-0.45463786,-0.17804359,-0.42504057,-0.12340773,0.6573972,-0.5845034,0.08992529,-0.20179494,0.10979237,-0.34953466,0.33264214,0.13037892,0.09755047,0.085420646,-0.09055224,-0.011635484,-0.46751973,0.21219711,0.22880314,0.18285121,0.46322966,-0.0036645378,0.056523435,0.3689655,0.61386234,0.007840793,0.73662084,0.18483604,-0.034360293,0.405624,-0.10966839,-0.53377753,-0.34716925,-0.20140664,0.007682109,-0.31756112,-0.30117926,-0.13653943,-0.35908365,-0.74812675,0.27546486,0.10428996,-0.14905088,-0.02419851,0.40518734,0.6040396,-0.21652669,-0.02687343,0.009041618,0.032094136,-0.49558803,-0.51436573,-0.5847221,-0.46720472,0.085932605,0.97262055,-0.047942813,0.15796345,0.004653287,-0.08259026,-0.012020183,0.15628289,0.071169,-0.08097903,0.44823524,-0.3709027,-0.6069661,0.4570478,-0.2712016,-0.48726055,-0.58227,0.15310097,0.49741432,-0.71978927,0.4222133,0.4289027,0.058004163,0.0028246164,-0.34006944,-0.20983817,0.062339902,-0.2137373,0.2626778,0.17921986,-0.6502713,0.52772844,0.23817152,-0.08175181,-0.7207603,0.53063464,0.0018287738,-0.32013333,0.047929298,0.40373978,0.121440604,-0.02826624,-0.10259579,-0.055942442,-0.49510288,0.13951522,0.28471598,-0.033571906,0.33725885,-0.2521972,-0.1751338,-0.7548068,0.008334577,-0.5288091,-0.25689134,0.044509042,0.05653625,0.17125668,0.152851,0.13912927,0.39191854,-0.5523157,0.11419285,-0.14550234,-0.28161237,0.28777447,0.38676554,0.38874233,-0.22595257,0.53664523,0.04701083,0.11933729,0.054831985,0.1486609,0.5374812,0.16896589,0.3568602,-0.08537896,-0.10326908,0.10023331,1.0271884,0.2314652,0.34790403,0.1006653,-0.20336702,0.2646201,0.09033591,0.10735735,0.1096301,-0.41511333,-0.15589206,-0.022315582,-0.03494721,0.46005133,0.025992986,0.33752868,-0.06693339,-0.26696968,0.13770628,0.025466638,0.19000106,-1.033662,0.061348725,0.07433716,0.80808085,0.20432676,-0.008886472,-0.064918384,0.4548197,-0.19343932,0.18361476,0.22262605,-0.12244606,-0.42238364,0.56506544,-0.5089549,0.4470022,-0.06584363,-0.066216856,0.13328475,-0.22044982,0.33591065,0.85723764,-0.30193475,-0.04491489,0.048720676,-0.23861109,0.018874193,-0.45358744,0.07330037,-0.43712717,-0.21565422,0.6647464,0.40690467,0.46484593,-0.4151353,0.07200398,0.1483994,-0.17749706,0.0744925,-0.053361163,0.30299637,-0.04049944,-0.39816862,-0.35315707,0.5224839,-0.19181372,0.10878969,0.12823276,-0.34057158,0.27165574,-0.055910625,-0.027307475,-0.055760805,-0.6344349,0.053380765,-0.37118566,-0.6163384,0.27456906,0.033553276,0.12615032,0.23592854,0.09424333,-0.30800858,0.5499575,0.1272415,0.9146955,0.073523715,-0.14964506,-0.3119263,0.28058338,0.28598017,-0.2866602,-0.058508623,-0.1869369,0.19843756,-0.66759187,0.30251685,-0.12717049,-0.13418658,0.157505,-0.15395704,-0.08304038,0.4211679,-0.004532091,-0.10582411,0.15147223,-0.018535102,-0.14727035,-0.03264715,-0.10690786,0.22243194,0.22968587,0.02085084,-0.17744552,-0.12727664,-0.11748435,0.20263132,0.15816861,0.23893552,0.35462084,0.07612153,-0.3716699,-0.034997918,0.1624774,0.37869158,-0.2262492,-0.10607626,-0.24697885,-0.5597671,-0.36672878,0.39011934,-0.09080431,0.31495836,0.18977712,-0.3219943,0.76206714,0.09509117,0.9660771,-0.11864899,-0.3091095,0.18380693,0.56476784,-0.021178339,-0.12730499,-0.3098966,0.92012876,0.311165,0.0019645889,-0.009716607,-0.22213106,-0.100308985,0.3073781,-0.20587622,-0.025390824,-0.15017636,-0.52726924,-0.34212977,0.15304784,0.2788808,0.055631235,-0.023558687,0.11396589,0.3058402,0.018669112,0.27884886,-0.6159289,-0.20688955,0.28834996,0.11072138,-0.13524266,0.19232419,-0.3405364,0.4349529,-0.7907794,0.02280547,-0.4779773,0.031539567,-0.22082247,-0.13077272,0.12751733,0.10422931,0.34853998,-0.5824918,-0.39749843,-0.32714078,0.2645193,0.1803281,0.2651009,0.552033,-0.15088913,-0.123352766,0.0029479365,0.6751269,0.9354239,-0.18973373,0.11192412,0.4221384,-0.37058145,-0.45051008,0.23815598,-0.26866618,0.20289111,-0.052140277,-0.05315167,-0.42135778,0.32443377,0.32069167,0.00972751,-0.027072705,-0.5226381,-0.047422703,0.32434186,-0.36817056,-0.2763583,-0.34556285,0.26930764,0.7448715,-0.1880338,-0.22723755,0.058361277,0.34512624,-0.25744227,-0.58309716,-0.088789225,-0.40536082,0.42010477,0.1173307,-0.2174971,-0.16638559,-0.045648158,-0.34067762,0.062144008,0.22206952,-0.40978208,0.025589867,-0.16719837,-0.0154897375,0.7892291,0.04044574,0.14448747,-0.6450798,-0.5036155,-0.7148365,-0.47303823,0.4369173,0.30136982,-0.04165154,-0.5560462,-0.017407276,-0.050704908,-0.06348504,-0.024912722,-0.23219438,0.52437615,0.22880904,0.32633483,-0.08606981,-0.9581201,0.03012422,-0.041124523,-0.3834888,-0.32870165,0.27050686,0.013836277,0.7801342,0.12689832,-0.08279535,0.19378671,-0.51454014,0.11624393,-0.35683128,0.03898561,-0.7643561,0.1874184,170 -156,0.45106384,-0.19562773,-0.52528226,-0.052194696,-0.22866866,0.017123563,-0.08747257,0.31242526,0.18610677,-0.37552637,-0.05258345,-0.2098792,0.14251032,0.2641493,-0.085009694,-0.53981227,0.05681867,0.19805495,-0.6712932,0.5416213,-0.34740365,0.25755054,0.11051153,0.29750577,0.18952554,0.35585627,0.16817074,-0.18004872,-0.100505725,-0.05889829,-0.18908675,0.19903083,-0.30936226,0.129434,-0.08591037,-0.24811761,-0.019588945,-0.54152703,-0.3317976,-0.6550135,0.29061958,-0.7206459,0.5026483,0.046490766,-0.23896,0.31727803,0.17901258,0.3723268,-0.29529545,-0.06511405,0.14088835,-0.023985637,-0.10334534,-0.18502855,-0.1140886,-0.26965332,-0.48266146,-0.0234774,-0.32758978,-0.26127565,-0.25388822,0.053397182,-0.3085985,0.01570087,-0.055087972,0.5798144,-0.46761042,-0.02464795,0.26870528,-0.14990412,0.37176058,-0.37692323,-0.07755612,-0.092125244,0.3862456,-0.19944283,-0.22394663,0.23062387,0.4455829,0.32143128,-0.024101429,-0.07746328,-0.22944818,-0.10145887,0.14881532,0.49956158,-0.14265923,-0.59863484,-0.21643752,0.08082175,0.06190228,0.22609153,0.2067837,-0.3408242,-0.15446948,-0.04439223,-0.207755,0.39658636,0.32641804,-0.37641034,-0.18046378,0.34911105,0.5695372,0.1430893,-0.17968993,-0.0050895056,-0.019016627,-0.48808116,-0.15395851,0.0136907995,-0.16350812,0.3915446,-0.22354822,0.33954257,0.74020517,-0.10397987,-0.042765096,0.042434685,0.031003276,-0.20792867,-0.23232633,-0.083789915,0.20075607,-0.47917548,0.09656288,-0.108410135,0.74004465,0.20504488,-0.7527275,0.33114877,-0.5907025,0.19181944,-0.13473143,0.4395232,0.6274722,0.3604061,0.21880606,0.70929027,-0.42672288,0.0977421,-0.062363245,-0.57041353,-0.008809272,-0.059618436,-0.05825158,-0.62409997,-0.0001306971,0.036500625,-0.119159535,0.10980673,0.2713435,-0.55786437,-0.06558772,0.11662021,0.8645632,-0.2895099,-0.10148291,0.7234527,0.8871869,0.85841507,-0.012012828,1.1032488,0.12789568,-0.3507962,0.24591534,-0.39739674,-0.66376483,0.3425681,0.41073567,-0.06314931,0.27968222,-0.0005455772,0.056011844,0.2600573,-0.28217897,0.104678266,-0.12290194,-0.035071295,0.04182198,-0.16751817,-0.48099232,-0.22248538,-0.15422077,0.096252955,0.14369932,0.1666382,-0.15405057,0.4758397,0.08337248,1.8721431,-0.010948309,0.20154938,0.078195006,0.37147126,0.29254004,-0.08752079,-0.30618784,0.3731308,0.32239878,0.23647556,-0.5722458,0.14663666,-0.16206864,-0.4436946,-0.05595747,-0.37003443,-0.077139236,-0.052716855,-0.4055436,0.027368056,-0.17071374,-0.32476228,0.517956,-2.8049378,-0.20589256,-0.15265939,0.30543745,-0.24820639,-0.3033081,-0.17270564,-0.4005434,0.3436549,0.2529434,0.59745574,-0.66914016,0.38941413,0.3572507,-0.54590416,-0.11263214,-0.5352867,-0.12525043,0.02913606,0.32303482,0.0041109086,-0.027324302,0.042959657,0.23455146,0.44353855,-0.054181393,0.024388552,0.18082593,0.38649672,0.08103515,0.6215751,-0.005088502,0.56287456,-0.083256215,-0.23291254,0.18441005,-0.08630918,0.20718905,-0.05863534,0.13401915,0.45438066,-0.41746798,-1.0134037,-0.5756188,-0.11800282,1.1203955,-0.33937293,-0.26582754,0.2866275,-0.22964856,-0.27369064,-0.048427097,0.41488343,-0.04942871,-0.040959723,-0.8947779,0.18667746,0.030419815,0.12859555,0.10063485,-0.19669908,-0.41904885,0.7012522,-0.05681602,0.5886345,0.29605517,0.15622215,-0.20895582,-0.45361626,0.03475778,0.8919293,0.31127784,0.034795698,-0.0719032,-0.14325716,-0.44945458,-0.05985059,0.09755274,0.44012058,0.62987894,0.048435654,0.13471751,0.25680727,0.020506648,0.12576391,-0.13105187,-0.29163033,-0.04516422,-0.27187252,0.5134962,0.59296125,-0.28097495,0.5655441,-0.087709434,0.34605375,-0.05400844,-0.48033184,0.6684733,0.9816558,-0.16411386,-0.28349307,0.5542776,0.32971743,-0.23153336,0.30618593,-0.45284593,-0.17855495,0.52739024,-0.25782523,-0.41808274,0.32872972,-0.23947798,0.21476069,-0.98462963,0.2322616,-0.28861675,-0.42735514,-0.34408778,-0.048687458,-3.952385,0.28244755,-0.26939714,-0.21681118,-0.11199745,-0.025406213,0.08905055,-0.61274093,-0.55444646,0.16287763,0.06787556,0.7706092,-0.13128263,0.14580713,-0.13567342,-0.31199643,-0.13720137,0.13046339,0.07508776,0.31759483,0.004648348,-0.50221723,-0.14642055,-0.13037504,-0.5423978,0.13527584,-0.5372475,-0.4364497,-0.027046137,-0.55429655,-0.36065328,0.6641309,-0.16495101,0.097052075,-0.14738001,0.03109918,-0.0870043,0.32518002,0.03207779,0.14211187,-0.027040549,0.012678713,0.03832071,-0.17158821,0.23675396,0.024332397,0.28327072,0.1344154,-0.15489079,0.198944,0.44647223,0.605335,-0.07477036,0.77011734,0.46348056,-0.12367151,0.2255746,-0.33108202,-0.3107002,-0.5685962,-0.35442963,0.041991282,-0.39320186,-0.54268616,-0.17014939,-0.3369591,-0.646088,0.5172338,0.060865752,0.12417283,-0.14351885,0.2776982,0.57974035,-0.242831,0.020382594,0.02206804,-0.19977704,-0.6544421,-0.106360756,-0.6381089,-0.30107364,0.15777503,0.86381215,-0.394288,0.102521196,-0.089833856,-0.22536412,0.020568471,0.120629445,0.0069745937,0.35142803,0.34983456,-0.28813496,-0.6639465,0.48589426,-0.19235769,-0.27405745,-0.6029533,0.20206347,0.6264082,-0.58324444,0.5957635,0.36070883,0.00092144014,-0.16280572,-0.31395042,-0.11582612,0.03518106,-0.24587394,0.38731024,0.19549379,-0.6419699,0.3919382,0.38464698,-0.19158958,-0.67366105,0.57071626,0.08370916,-0.27707493,0.015072803,0.3720862,0.113082364,-0.04097213,-0.3163096,0.22549456,-0.39996994,0.2833272,0.16826425,-0.12593685,0.28996667,-0.18048471,-0.22659926,-0.79267716,-0.04834095,-0.53884834,-0.11645536,0.33980653,0.1060247,0.14879324,0.026496394,-0.12537655,0.4086198,-0.305424,0.08665418,-0.0683909,-0.116100535,0.32141045,0.4022052,0.33101833,-0.4841465,0.5119346,0.01260461,-0.14265724,-0.056781225,0.0016045967,0.53448564,0.100841016,0.39507905,0.0069571636,-0.33951578,0.3165787,0.53580743,0.16918232,0.3786159,0.048599817,-0.08120745,0.17771278,0.07847247,0.22413209,-0.0018886566,-0.53393155,-0.055104837,-0.20391063,0.12576382,0.55482584,0.19875094,0.16832368,-0.08981325,-0.46189472,0.012091081,0.20816495,0.08659364,-1.127425,0.4632033,0.20752405,0.7272738,0.45859095,0.0031526526,0.033826437,0.6807235,-0.22081047,0.23001482,0.3042936,-0.020967882,-0.5877766,0.5246349,-0.7910667,0.40002477,-0.02740494,-0.049081422,0.047919035,-0.10484738,0.277814,0.7937616,-0.14345405,0.03943404,-0.058192916,-0.27568674,0.18467309,-0.38411,-0.06995525,-0.6014028,-0.31031767,0.5666599,0.44792402,0.23335157,-0.11195367,0.09355626,0.20691109,-0.09101491,0.034258734,0.15630038,0.25678355,-0.006751569,-0.76760745,-0.19063811,0.5446055,-0.025358772,0.18601976,0.05283069,-0.05803639,0.28613326,-0.21033001,-0.036465097,-0.12163858,-0.5886716,-0.02104307,-0.25178745,-0.3857835,0.52028465,-0.15944582,0.32868242,0.19222252,0.038552012,-0.20832556,0.41114026,0.04054012,0.7485669,0.030373577,-0.14858148,-0.3273551,0.27007666,0.14729418,-0.15535502,-0.09738569,-0.31773666,0.008169945,-0.591716,0.56009537,0.047710158,-0.33762136,0.109997034,-0.051673483,0.010743683,0.6493565,-0.22892371,-0.14796396,-0.28963357,-0.18317989,-0.22836894,-0.2113278,-0.0787484,0.1752002,0.25404748,0.0091136955,-0.122724675,-0.018543398,-0.195739,0.37826687,-0.03866694,0.4851348,0.29706347,0.09379414,-0.34971154,-0.13058539,0.29834118,0.29769167,-0.026871895,-0.1471719,-0.32698965,-0.40435913,-0.3435213,-0.020983648,-0.02784007,0.34722176,0.05993259,-0.11643548,0.80200464,-0.017620603,1.0742421,0.020679263,-0.3710422,0.16045456,0.47381237,0.03369151,-0.09256204,-0.18463469,0.91010344,0.541026,-0.012733976,-0.12096286,-0.33611095,-0.036704656,0.054376435,-0.21047755,-0.16554357,0.04209288,-0.36377946,-0.37442464,0.25556463,0.18487328,0.3738364,-0.1012862,0.10241305,0.28653657,0.0116094705,0.20962134,-0.5008373,-0.3607622,0.2069379,0.31219986,0.045122743,0.081377715,-0.52101004,0.472447,-0.4161082,0.14119367,-0.23695841,0.23506472,-0.20577344,-0.18473047,0.22768387,0.0021353562,0.3524373,-0.27746412,-0.37497416,-0.3565872,0.47048128,0.18194826,0.033168085,0.65833133,-0.30050603,0.059712544,0.13023785,0.4486528,0.90374833,-0.2011551,-0.0072755176,0.4479986,-0.24616246,-0.5694179,0.3155325,-0.29578397,0.17468032,0.0078065195,-0.15202612,-0.5048801,0.26450777,0.15182638,0.095292106,-0.10969203,-0.6281174,-0.24247263,0.3678787,-0.26750806,-0.16627921,-0.31516322,0.12212266,0.51811635,-0.27668792,-0.4100856,0.117362596,0.03169792,-0.09478131,-0.63229185,-0.15806907,-0.28469685,0.29916194,0.10675279,-0.2694566,-0.11491091,-0.010980773,-0.42630526,0.24867126,-0.019155018,-0.30357975,0.17722975,-0.2731168,-0.18909405,0.9862487,-0.2510452,0.08243624,-0.47995836,-0.42502195,-0.7558313,-0.32128304,0.60054153,-0.09436749,0.03780435,-0.6080181,-0.0011211882,-0.057739962,-0.110298045,-0.08293686,-0.29573014,0.32776248,0.09662862,0.38020286,-0.047333352,-0.7616505,0.2511874,0.014834178,-0.17183742,-0.67176193,0.50555253,-0.03366893,0.7975538,0.080975294,0.044452142,0.446725,-0.47895563,-0.25373003,-0.22253805,-0.14742035,-0.6617591,0.026511775,175 -157,0.4732054,-0.075510584,-0.4607168,-0.26844698,-0.44428417,0.13926691,-0.17077413,0.24717188,0.3959371,-0.22229056,0.027085708,-0.055393465,-0.19411364,0.23730777,-0.030224644,-0.6551951,-0.035917155,-0.007412064,-0.79711795,0.45700115,-0.42299965,0.41057083,0.057454612,0.30331382,0.17437772,0.28857628,0.058740366,0.019486971,0.112981014,0.06757509,0.09371099,0.3210283,-0.7026338,0.26321426,0.05790925,-0.11870844,-0.11338169,-0.3032311,-0.31038317,-0.67072886,0.34624034,-0.6842243,0.5120582,-0.07345327,-0.3310868,0.1104925,0.0005040089,0.3023867,-0.38938624,0.0191774,0.28424028,-0.05989384,-0.119057454,-0.093920015,-0.07684286,-0.43597755,-0.42503273,-0.12274094,-0.5553926,-0.12924296,-0.38128132,0.20788552,-0.27271375,-0.08405161,-0.30314937,0.43452695,-0.39281464,-0.00069918635,0.16229422,-0.15933631,0.1286998,-0.5655378,-0.11622871,-0.09657214,0.29641932,0.09976776,-0.30727303,0.23977229,0.3458826,0.5534227,0.05302052,-0.2631787,-0.255056,-0.016647879,0.14519699,0.20355208,-0.07296237,-0.12658504,-0.22259238,-0.095224224,0.31313473,0.21770784,0.107161306,-0.4896828,0.0033560276,0.0050564865,-0.28329647,0.41966206,0.4126428,-0.44252464,-0.20212382,0.45510846,0.32639295,0.23324199,-0.22583394,0.336695,-0.09408423,-0.57915264,-0.17259793,0.20555124,-0.14154945,0.29313558,-0.19996853,0.07934256,0.78645843,-0.11961194,-0.021767247,-0.010116597,-0.08358463,-0.016274877,-0.25053352,-0.117530584,0.021423062,-0.5176666,0.038439807,-0.13894735,0.56552625,0.11529258,-0.7769191,0.19098881,-0.60479164,0.23041327,-0.16702005,0.65533614,1.0183353,0.50632566,0.082664095,0.834244,-0.5097626,0.019548703,-0.111921184,-0.3408666,0.31825367,-0.16477133,0.13293327,-0.5082964,-0.041831907,-0.01075511,-0.11935544,-0.057993457,0.23474184,-0.4182954,-0.09821767,-0.06326094,0.60368174,-0.30754852,0.020022018,0.757014,1.0214295,0.9640621,0.20411777,1.1959004,0.3506099,-0.14015785,0.16934615,-0.28075287,-0.47014865,0.15316923,0.20027876,0.3456233,0.20455927,0.087886326,0.14646003,0.430039,-0.37532791,0.086323455,-0.09558348,0.31312785,0.08142961,-0.117259376,-0.15891102,-0.24509929,0.2571209,0.1648806,-0.033589743,0.25500488,-0.20437129,0.3081872,0.19531849,1.206587,0.092138454,0.052481286,0.007756313,0.3809496,0.13606714,-0.25469452,0.0397421,0.19632544,0.43716323,-0.109441064,-0.6266482,0.08975767,-0.12543185,-0.33406022,-0.12114192,-0.38724157,-0.118581325,-0.18151289,-0.5167182,-0.15085433,0.07926633,-0.2977382,0.48034906,-2.6719716,-0.07813383,-0.21307598,0.22282399,-0.2092984,-0.32091287,-0.13792743,-0.40294966,0.15504669,0.44000873,0.2950353,-0.71368,0.55396515,0.34896216,-0.5828665,0.010346015,-0.6204354,-0.26494896,0.014286097,0.36986175,0.03398955,-0.08448829,-0.20773867,0.2901158,0.56788516,-0.03546734,0.059621114,0.26530543,0.4563188,-0.11080397,0.7352313,0.20273559,0.46139154,-0.13456412,-0.16790578,0.35900912,-0.38388512,0.22763847,0.17850263,0.14849153,0.45410842,-0.3377501,-0.90559775,-0.5727417,-0.30087247,1.3396761,-0.29628164,-0.3579401,0.36647734,-0.3164509,-0.23074453,0.04665576,0.5191933,-0.035818014,-0.0118746245,-0.87621015,-0.08214831,-0.10355287,0.2750091,-0.07562479,-0.04899496,-0.316707,0.79428697,-0.12127931,0.51904124,0.3468542,0.13013048,-0.21928556,-0.43832284,0.18623056,0.88084155,0.4609551,0.03023841,-0.11663079,-0.28876814,-0.23502813,-0.15618038,0.23754412,0.65501946,0.5117696,0.021577796,0.18686241,0.3244532,-0.34646288,0.00405733,-0.29271698,-0.21146466,-0.04909035,0.19239925,0.45395043,0.58498114,-0.041070547,0.31139466,-0.046345968,0.055640858,-0.09163641,-0.5906727,0.60971165,0.6377005,-0.10239608,-0.25689575,0.47842705,0.45308533,-0.16133446,0.35171482,-0.4932259,-0.26773173,0.43064702,-0.11196546,-0.29596406,0.16080648,-0.42915788,-0.032577045,-0.8023023,0.19222946,-0.26120025,-0.4929188,-0.5600048,-0.15542112,-3.8207564,0.035732973,-0.12215544,-0.15603706,-0.16079335,-0.12663391,0.5149003,-0.62165326,-0.6114422,0.053245958,0.04783243,0.53539056,-0.014106092,-0.005127104,-0.33858535,-0.26970962,-0.29233795,0.19061986,0.020173455,0.2855572,0.0024075985,-0.3951908,-0.037625425,-0.14515701,-0.41823712,-0.03233939,-0.51297677,-0.55346,-0.09602797,-0.28941804,-0.18482727,0.67889214,-0.34318432,-0.02281847,-0.2230595,-0.074517146,-0.2675621,0.3996297,0.13841057,0.17159843,0.17917214,0.02915721,-0.14999507,-0.27968067,0.104302675,0.022751851,0.32069823,0.25473008,-0.08095887,0.20278218,0.59464115,0.60176164,0.04936503,0.7992314,0.3725777,-0.150797,0.32404622,-0.21104668,-0.22284395,-0.62595236,-0.2795448,-0.28382656,-0.47268555,-0.28164488,-0.07035389,-0.23175077,-0.8437545,0.33625573,0.064792246,0.09493325,-0.12610257,0.1298871,0.38629824,-0.03916859,0.06634004,-0.10573987,-0.30999097,-0.47967598,-0.40990868,-0.5992439,-0.48529518,0.13441557,1.1039873,-0.17051284,-0.0098578455,0.061068997,-0.4064325,0.0561953,0.039321225,0.085043184,0.20256814,0.43578163,-0.09838476,-0.69014895,0.33711657,-0.21151683,0.011019905,-0.64277476,0.1556035,0.69954973,-0.48318806,0.5849718,0.19500016,0.21717073,-0.0283639,-0.63303393,-0.34604195,0.108623914,-0.22192314,0.6805034,0.3178205,-0.7450659,0.4764247,0.2421429,-0.10924883,-0.544048,0.49753347,-0.01756823,-0.100534916,0.06498174,0.2734174,0.06037675,-0.03448378,-0.05803955,0.3710211,-0.47425318,0.31170836,0.2461905,-0.08067416,0.20113333,-0.0352023,-0.23693468,-0.5210229,-0.15164341,-0.4528288,-0.27930996,0.00596594,0.04078392,0.22011025,0.0953299,0.04131031,0.35518783,-0.08416655,0.1390504,-0.14849503,-0.25324988,0.29669914,0.5690637,0.2918506,-0.37835437,0.51792514,0.18563196,0.072601505,0.06405539,0.14332168,0.44432652,0.18429658,0.3318676,-0.08544852,-0.115660265,0.28147027,0.76505923,0.21028213,0.26536596,0.034853436,-0.13622308,0.21366785,0.12442774,0.15695623,-0.15348764,-0.38734183,-0.068776496,0.10347142,0.31052628,0.40808195,0.070570625,0.3316393,-0.043506097,-0.16738628,0.16937979,0.09658658,-0.04241962,-1.4948367,0.3949924,0.2734532,0.6675998,0.6414637,0.018429905,0.10772686,0.5636717,-0.3087464,0.02266292,0.3840072,0.12789904,-0.38991103,0.45322755,-0.6012596,0.46656668,-0.011755091,-0.014807706,0.06028914,0.33324316,0.23986945,0.85061187,-0.043175116,0.027466599,0.098454,-0.4268734,0.07156302,-0.19391933,0.08370419,-0.5485535,-0.39783365,0.5635958,0.5063924,0.30429807,-0.43259087,-0.04205811,-0.076143645,-0.17550747,0.055598292,-0.18176532,-0.120368816,-0.0903889,-0.5121035,-0.28964087,0.52129596,-0.1194088,0.029200407,0.046369758,-0.3062472,0.16122212,0.008161163,-0.105001934,-0.08344503,-0.63902026,-0.1264638,-0.27864042,-0.3992752,0.37253904,-0.39352307,0.20537344,0.21655662,-0.0184182,-0.2846359,0.3314505,0.12470513,0.66957575,-0.11188045,-0.12934744,-0.30155295,0.027205944,0.2112344,-0.20505638,-0.22553764,-0.30204955,0.042347398,-0.4698437,0.21251363,-0.25587896,-0.21923868,0.024269713,-0.10110581,0.11396365,0.41464406,-0.36232993,-0.16047381,0.04061234,-0.05615461,-0.2656692,-0.18947905,-0.36461034,0.37703964,0.0050528925,0.13772698,0.04847791,-0.06533715,-0.00493433,0.3204206,0.13658153,0.2427763,0.383906,-0.14843439,-0.3663808,0.030319555,0.12409737,0.36023802,0.10714252,-0.12774993,-0.3611898,-0.25439742,-0.42887104,0.29942513,-0.19567819,0.2604383,-0.1364037,-0.5498634,0.8862841,0.10908776,1.111582,-0.06535081,-0.33447587,0.13560645,0.48681152,0.023484772,0.12884156,-0.18285272,0.67605346,0.6913182,-0.0861813,-0.17485228,-0.4249522,-0.22175445,0.20098099,-0.3620407,-0.120958716,-0.059690755,-0.7959368,-0.007691179,0.11897146,0.17106846,0.030559445,-0.060729977,-0.16604802,0.025984423,0.1359262,0.4400292,-0.512338,0.016852032,0.2859445,0.25656447,0.1007069,0.19072424,-0.3198379,0.4813644,-0.7713898,0.16113703,-0.33093604,0.16095515,-0.12800561,-0.173582,0.20855369,-0.0056592384,0.28081882,-0.2593222,-0.30969778,-0.33221486,0.6678256,0.124835685,0.3453239,0.7260943,-0.21352133,-0.05566364,0.073690526,0.5026234,1.0269805,-0.0742453,0.015438223,0.18326677,-0.2620147,-0.5335451,0.11158346,-0.3736089,0.20516062,0.037642565,-0.33614603,-0.25518253,0.34310374,0.006905945,0.26251742,0.039014243,-0.61779976,-0.32057875,0.36791033,-0.18244076,-0.2830177,-0.27192813,0.1936283,0.5862464,-0.36882764,-0.26722288,0.0174892,0.39530385,-0.23295332,-0.5878743,0.045681667,-0.38350964,0.37500033,0.021416528,-0.35935608,0.03667808,0.20782857,-0.4002533,0.036211696,0.26651317,-0.3298837,0.058206342,-0.2625161,-0.13911505,0.9716222,0.033312563,0.21191475,-0.6303209,-0.5753335,-0.83263755,-0.4113324,0.19334501,0.29453334,-0.20937076,-0.5864525,-0.11011826,-0.117305346,0.076593556,0.12352716,-0.5651128,0.50892055,0.16996725,0.41275817,0.0014289458,-0.9258161,-0.038587883,0.0961922,-0.031992387,-0.43371484,0.70382893,-0.11060925,0.7031826,-0.0021259547,0.09628475,-0.04625122,-0.5498432,0.28559703,-0.24164933,-0.18240151,-0.6556141,0.08586289,181 -158,0.5332194,-0.17541164,-0.5638955,0.032212507,-0.27670047,0.20769596,-0.09752878,0.582144,0.35436994,-0.29891506,-0.10830431,-0.29911247,0.081676446,0.37263525,-0.038718652,-0.37314546,0.034238618,0.17336304,-0.66366017,0.48653162,-0.43824244,0.20302315,-0.09770549,0.50440395,0.21473186,0.25322405,0.09494642,-0.0590814,-0.369895,-0.08740673,-0.01084601,0.25432196,-0.37895828,0.19615741,-0.25463933,-0.2950185,0.010687264,-0.33734515,-0.5149579,-0.735156,0.23606136,-0.6803256,0.43797302,-0.015523418,-0.27112886,0.033165727,-0.097007304,0.27954537,-0.23831314,-0.11594726,0.09219914,-0.22744282,0.035258885,-0.31292537,-0.1703109,-0.30686367,-0.5302004,0.076681264,-0.44952723,-0.06503047,-0.21727899,0.022119673,-0.3129502,-0.02045711,-0.14992565,0.4203597,-0.37922972,0.22176762,0.1438938,-0.1880634,0.13102031,-0.5439545,-0.39627922,-0.1428598,0.12033047,-0.008065741,-0.27735144,0.32499513,0.27921256,0.45745844,-0.06842678,-0.03147559,-0.4097807,-0.012549504,0.15578468,0.40373632,-0.027115269,-0.61777467,-0.0909512,0.052305307,0.1515419,0.21035753,0.15994792,-0.254027,-0.08431002,0.16072938,-0.2399862,0.4061755,0.4624272,-0.33730218,-0.27752697,0.23257956,0.514536,0.3198958,-0.13231616,-0.17187557,-0.021570347,-0.5465224,-0.16157971,0.09772827,-0.21845938,0.52484775,-0.10416,0.28771725,0.5497119,-0.2767288,-0.19422475,0.17879893,0.18723403,-0.22543672,-0.07840989,-0.16835742,0.05610522,-0.29456475,-0.011392339,-0.1335277,0.7073791,0.26116237,-0.5442665,0.4719799,-0.46011886,0.14903761,0.008744144,0.4491344,0.82041055,0.40864244,0.2840638,0.62979215,-0.30357736,0.13774423,-0.12223049,-0.34598282,0.13539146,-0.25648764,0.098588735,-0.5420181,-0.0794316,-0.0042766095,-0.23471731,0.14665954,0.60049146,-0.46928468,-0.10283062,-0.021839015,0.8192739,-0.1767748,-0.2273186,0.7588547,1.0140357,0.9995014,-0.028758418,1.0402544,0.21625815,-0.2668832,0.26662585,-0.44291726,-0.64726794,0.30489758,0.2983004,-0.20644815,0.29198965,-0.09673715,-0.024210183,0.354987,-0.2918679,0.11527564,-0.049199987,0.43046433,0.19566122,-0.046765093,-0.22789909,-0.4917221,-0.30799356,-0.07421093,0.014099987,0.36110884,-0.19690196,0.46864802,-0.013278937,1.7904385,0.04521578,-0.02393954,-0.0032539228,0.5941353,0.18925886,-0.23314826,-0.13720317,0.3363224,0.038584664,0.12118979,-0.45965403,0.13746499,-0.3354154,-0.50102913,-0.040912636,-0.3129793,-0.114074595,0.028541902,-0.34241125,-0.1883255,-0.22911923,-0.27010503,0.5200219,-2.7681706,-0.29069623,0.08505132,0.3441951,-0.25923702,-0.42957315,-0.15310912,-0.6433526,0.22858486,0.25649843,0.5209488,-0.68450165,0.25896803,0.29801372,-0.5770839,-0.19975229,-0.5564602,0.01491217,0.10111825,0.3009429,-0.114109725,-0.048854694,0.058040645,-0.008825199,0.4098592,-0.06402208,0.16027692,0.2727429,0.3107043,0.012717867,0.29554048,-0.0022906938,0.50104314,-0.39445394,-0.20299599,0.40997028,-0.29042226,0.3748614,-0.13091406,0.10070462,0.539819,-0.52196133,-0.7904555,-0.48767072,0.05558753,1.0908104,-0.04175888,-0.43189922,0.18711099,-0.4639354,-0.2447297,-0.19559485,0.45681494,-0.025978176,-0.261496,-0.70849377,0.052876648,0.02150451,0.16765377,-0.03472154,-0.07788291,-0.2072657,0.4959093,0.0073087197,0.37435862,0.21362711,0.15600252,-0.3458316,-0.38444906,0.2335628,0.8393098,0.34860185,0.19451576,-0.13223536,-0.22219066,-0.3322881,-0.1273882,0.08286907,0.5293716,0.5732303,-0.11479201,0.13969445,0.3457201,-0.0837905,0.0062574525,-0.19213094,-0.28312963,-0.04118763,0.013117365,0.5189014,0.78744584,-0.13293496,0.62408155,0.10876394,0.25698727,-0.13016137,-0.48847622,0.63071173,0.9590345,-0.24649957,-0.25138363,0.327463,0.30912924,-0.40481645,0.39146945,-0.43126494,-0.44684282,0.56248105,-0.15702066,-0.31584257,0.2792484,-0.26549464,0.1612639,-0.78119093,0.25021002,-0.3441872,-0.3874745,-0.6019464,0.0042422474,-2.6909912,0.11971808,-0.20649405,-0.16372052,-0.010544451,-0.003392746,-0.018163629,-0.53532064,-0.5732651,0.13446555,0.06219598,0.7026245,-0.15674825,0.07076167,-0.09409244,-0.4756792,-0.48554903,0.06516311,0.18126284,0.48551732,-0.0048574605,-0.5168149,0.12910102,-0.27128756,-0.30361897,0.22384787,-0.57983804,-0.5777725,-0.26366764,-0.4471701,-0.44174868,0.7022924,-0.22391237,-0.01304185,-0.18962161,0.027048893,-0.08270915,0.27278036,0.2555521,-0.10071906,0.07162693,-0.07472489,-0.012722071,-0.34125063,0.19136745,-0.012865741,0.35839197,0.60065675,0.05273201,0.3063268,0.44747263,0.7520921,-0.04017469,0.7657234,0.33292305,-0.13457718,0.30911806,-0.2610341,-0.2431714,-0.27353725,-0.16883107,0.063218996,-0.4369175,-0.45220688,-0.14499985,-0.39791057,-0.6210822,0.34839824,-0.028347118,0.13195144,0.1348204,0.2185743,0.68481064,-0.16480704,0.08588465,-0.057638135,-0.0955172,-0.62166774,-0.32881403,-0.64875954,-0.5534658,0.42849922,0.92653835,-0.20277414,-0.08564583,0.18162541,-0.40865618,-0.012039582,0.15640374,-0.1562706,0.096548416,0.3776835,-0.28616744,-0.56302774,0.39828855,-0.103023656,-0.15903395,-0.65715915,0.27296895,0.5091672,-0.6251948,0.567475,0.14262183,0.12424382,-0.15719274,-0.25320634,-0.15226358,-0.039539974,-0.15688327,0.26827872,0.19461349,-0.7134524,0.34883115,0.27533263,-0.3186289,-0.74505204,0.4065779,0.0573376,-0.26571515,-0.15968674,0.31159833,0.17360361,0.0812144,-0.26284927,0.23381422,-0.5599051,0.20265701,0.34948713,-0.12979664,0.16952713,-0.19402666,-0.33048075,-0.7286078,0.104336284,-0.31475037,-0.39302272,0.34674212,0.25715834,0.1479147,0.08335376,0.310906,0.27461365,-0.22778906,0.022107108,-0.081173405,-0.2106284,0.3332782,0.36644503,0.6927019,-0.37592882,0.55765456,-0.05527329,-0.12713313,0.118969776,-0.06521489,0.2149454,0.30112615,0.34869033,0.25628603,-0.392876,0.29771724,0.9202902,0.16711341,0.33496788,0.017127998,-0.09867242,0.093901746,0.029972378,0.2919091,-0.06524037,-0.46123308,-0.037632,-0.19300528,0.22280246,0.47115344,0.09424519,0.18989936,-0.07544113,-0.37638396,0.004247456,0.19492534,-0.044082206,-1.3192366,0.22050698,0.17254467,0.9288256,0.35671562,-0.079664245,-0.076688625,0.64174026,-0.079114266,0.24558942,0.32735208,-0.034123056,-0.56635284,0.5412848,-0.6613169,0.64885205,-0.09226668,-0.11984202,0.011274548,-0.042770814,0.44186884,0.7876454,-0.27554864,-0.12684569,0.15564094,-0.33671197,0.120571755,-0.3836991,0.04989999,-0.7983423,-0.3150315,0.56044847,0.49380144,0.30838126,-0.30802086,0.027214587,-0.03663576,-0.1726106,0.35898504,0.0021869282,0.25819537,-0.07192208,-0.74179107,-0.14490871,0.48302895,0.028387817,0.16148649,0.09763861,-0.14341412,0.26929808,-0.22038539,0.06962999,-0.08519756,-0.65721905,-0.09681503,-0.3538562,-0.44463247,0.5851586,0.07450728,0.29141885,0.1979783,0.11096198,-0.34219643,0.58130395,0.03031677,0.7646736,-0.02046522,-0.16861543,-0.4204698,0.29562154,0.21069473,-0.13711722,-0.053776145,-0.029874679,-0.057454947,-0.59571636,0.6187328,0.073697805,-0.1372992,-0.14892557,-0.04070956,0.068459764,0.6104864,-0.06499819,-0.23092836,-0.21806517,-0.0503378,-0.40178153,-0.06932445,-0.013092516,0.12874338,0.32546446,-0.115869455,-0.15119952,-0.09781049,0.049582534,0.23757778,-0.06731038,0.18098532,0.40325144,0.09278896,-0.25498104,-0.269114,0.12309548,0.48758304,0.2036964,-0.096539356,-0.41228327,-0.41873857,-0.40778986,0.14909202,-0.053861316,0.2876076,0.1356794,-0.36493126,0.4992669,-0.17482659,1.2603232,0.19609483,-0.17370155,0.16473608,0.46933904,-0.016871449,-0.10100613,-0.42761377,0.7895698,0.34379876,-0.096695326,-0.15682983,-0.28546527,0.057749636,0.26425594,-0.16637225,-0.180336,0.06128924,-0.63149375,-0.18467095,0.11352292,0.2599874,0.21099256,-0.21854171,0.0971649,0.38178927,0.13140236,0.20781389,-0.3027429,-0.35748413,0.3757248,0.2938451,0.05373001,0.14002614,-0.4088159,0.3980545,-0.5516637,0.10440031,-0.26803833,0.22091727,-0.11581003,-0.49088576,0.2747863,0.3422149,0.29014847,-0.36038718,-0.40379283,-0.39256886,0.50876933,0.2020436,0.13497472,0.5535219,-0.21010464,-0.2666043,0.16843575,0.459221,1.010648,-0.119999446,-0.19593008,0.5097457,-0.32222876,-0.57970184,0.63606805,-0.3097855,0.20765877,0.049298327,-0.11067939,-0.74680847,0.25861898,0.1096857,0.0061206063,-0.08620183,-0.621822,-0.049229957,0.11358822,-0.53081256,-0.18048327,-0.42554194,0.15239301,0.5497353,-0.26023343,-0.16236804,0.2147323,0.27673876,-0.3112148,-0.3744922,-0.032035436,-0.4054871,0.24171036,-0.00508246,-0.3276408,-0.17112592,0.10419245,-0.50958943,0.14246829,-0.009465826,-0.48824087,0.09252571,-0.30942917,-0.17410527,0.9439936,-0.2977281,0.31188747,-0.34135404,-0.4414445,-0.6574568,-0.26513174,0.45224863,-0.09208855,0.0121117495,-0.7100528,-0.09389321,-0.07242098,-0.2626598,-0.09908079,-0.38176146,0.4931888,0.0639259,0.12652859,0.019771155,-0.64017683,0.22020823,0.13584763,-0.14883812,-0.5820759,0.39589292,-0.24329406,0.77321804,0.06696624,0.014423555,0.5313326,-0.39944202,0.031972323,-0.16604449,-0.07194804,-0.49900708,0.1044954,183 -159,0.41420987,-0.23918213,-0.32930216,-0.06971731,-0.18286358,0.29265112,-0.09635864,0.58523077,0.07766321,-0.44238696,-0.27551603,-0.041241784,0.07253363,0.3230187,-0.250781,-0.46305415,-0.01585617,0.050505344,-0.3876313,0.45790017,-0.5412093,0.2613408,0.03498963,0.4018126,0.14747874,0.12590149,0.25102803,-0.05067915,-0.19507667,-0.23800558,-0.15543987,0.4520441,-0.6042226,0.166358,-0.12932165,-0.26937088,-0.050811313,-0.5583155,-0.25121668,-0.6496628,0.28530076,-0.7789884,0.46445873,-0.06368209,-0.229344,0.49598065,-0.0052919528,-0.058606192,-0.12179065,-0.05924661,0.06441837,-0.20332159,-0.034648154,-0.0928223,-0.12213968,-0.3170945,-0.61866057,0.1148371,-0.43669635,-0.11203795,-0.3350139,0.08574571,-0.32807282,0.057537686,-0.110987395,0.48067093,-0.3764064,0.0009258111,0.047341242,-0.090400726,0.0491824,-0.61867344,-0.26145914,-0.036503293,0.2710816,-0.11538347,-0.17402062,0.17424326,0.29849732,0.5432397,-0.020349931,-0.09246819,-0.4279059,0.05957579,0.121608034,0.5670967,-0.11716906,-0.6858408,-0.098432206,-0.04270451,0.12021073,0.10903878,0.09253428,-0.02749819,-0.20649152,0.14486523,-0.3019265,0.44657534,0.49023983,-0.3511048,-0.39922467,0.4005141,0.37547073,0.23127867,-0.02435749,-0.19040836,-0.0700318,-0.58269846,-0.16398092,-0.049755827,-0.29002488,0.51495826,-0.15159264,0.41855088,0.50786275,-0.11337362,0.07415802,0.1619907,-0.06772031,-0.038732663,-0.09866008,-0.08766027,0.13403651,-0.33548763,0.17954503,-0.2050705,0.8722111,0.079962,-0.6791201,0.3737827,-0.47328073,0.074193336,-0.020130428,0.47726968,0.7021142,0.42156354,0.286214,0.6453341,-0.4198651,-0.10200158,-0.1003431,-0.3346229,-0.022737702,-0.10180892,0.04286589,-0.39384538,0.08200232,0.10604878,0.06898657,0.12817605,0.5608681,-0.56416625,-0.09387871,0.02481692,0.7290066,-0.2622649,-0.22218233,0.89455277,0.9402153,0.94960773,0.059519656,1.0572107,0.14155678,-0.11796438,0.21139409,-0.21918765,-0.5755759,0.3140463,0.3857538,0.15693693,0.18440336,0.0917845,-0.1595253,0.47173017,-0.30525526,-0.16751833,-0.07208498,0.21072021,0.25217497,-0.056390632,-0.38670298,-0.3519038,-0.02164076,0.10472512,0.2434337,0.22192663,-0.19484147,0.33687654,0.095823675,1.552394,-0.048848193,0.11659489,0.03447113,0.34525642,0.20914944,-0.031804197,0.02998048,0.23668887,0.3346492,0.010565249,-0.6528094,0.124149166,-0.21751957,-0.5518653,-0.050520744,-0.31468162,-0.29041705,-0.039103612,-0.491034,-0.10525061,-0.1193148,-0.2377412,0.488905,-2.9253962,-0.26048508,-0.046831965,0.31927046,-0.24909626,-0.48015943,-0.1525245,-0.53390986,0.4072526,0.33264542,0.48577568,-0.6229182,0.30956066,0.2348834,-0.40848288,-0.19315606,-0.6162731,-0.036482908,0.060077768,0.35993442,0.07634943,-0.1079745,-0.004883909,-0.05805335,0.5885862,0.00012904406,0.07535495,0.26869413,0.4914509,-0.06172615,0.40638825,-0.11684013,0.58507305,-0.2383007,-0.14861819,0.3436327,-0.3979564,0.35840327,-0.29309532,0.18443368,0.44494307,-0.28699768,-0.86457705,-0.49820852,-0.24090174,1.2871678,-0.19780435,-0.35778192,0.14330466,-0.2782753,-0.31152573,-0.12444815,0.49861184,-0.26098996,-0.22264579,-0.6860691,0.1269556,-0.112499915,0.0676479,-0.16636235,0.07038728,-0.43905088,0.7386112,-0.040800128,0.5240365,0.21791814,0.30474842,-0.26420486,-0.32151535,-0.071173854,0.8439423,0.37057585,0.15968424,-0.24988954,-0.18684308,-0.25914487,-0.06755682,0.036153182,0.6624502,0.5221563,0.13526602,0.09225213,0.22698362,0.044104435,0.08129202,-0.1314405,-0.06583848,-0.1321259,-0.025775384,0.60976017,0.63446236,-0.21026926,0.4326714,-0.08789282,0.16878144,-0.16258536,-0.3519925,0.49236667,0.75324327,-0.20742801,-0.19548355,0.48308092,0.5010016,-0.10659196,0.29928395,-0.5867834,-0.42446104,0.535614,-0.28426677,-0.3752761,0.16375026,-0.19523385,0.038440417,-0.8289153,0.29138222,-0.17442027,-0.4600515,-0.5039925,-0.058006745,-3.3270414,0.0669393,-0.13278177,-0.1805922,-0.2593633,-0.30300385,0.16677752,-0.5703477,-0.4814917,0.09219332,-0.009462698,0.51567215,-0.08746579,0.16714977,-0.20664974,-0.28894633,-0.16270946,0.1496512,0.026846886,0.39270738,0.027395133,-0.2935948,0.02226631,-0.15403327,-0.36315867,0.10667197,-0.4746784,-0.6151492,-0.019874847,-0.30833155,-0.26782608,0.6223193,-0.483109,0.007474611,-0.14584453,0.086197615,-0.18028036,0.31389037,0.10991653,0.12012761,-0.026228424,-0.1486194,0.19286604,-0.30856693,0.38518712,0.065734625,0.2692383,0.60844064,-0.15362078,0.21103144,0.48504943,0.5591614,-0.09762935,0.82817155,0.40719935,0.007830739,0.3525941,-0.18710893,-0.3197905,-0.5556352,-0.23955025,0.095485896,-0.3823205,-0.38611418,-0.17921744,-0.36938986,-0.74723023,0.3114414,-0.011610732,0.25080603,-0.056030627,0.24811801,0.595305,-0.19314124,-0.025218975,0.018246295,-0.057035644,-0.43959147,-0.33002463,-0.64750856,-0.49507028,-0.0946735,0.80227494,-0.05259722,-0.09893995,-0.049373914,-0.09867646,-0.018947748,-0.032722507,0.10474005,0.0510382,0.26563555,-0.057856757,-0.7346317,0.5760037,-0.22972156,-0.22996777,-0.5652967,0.109288245,0.43202692,-0.50884384,0.3584981,0.44877282,0.11373221,0.061288845,-0.51976913,-0.06680657,-0.024488676,-0.17732406,0.3236066,0.28793088,-0.83183795,0.5566753,0.25023305,-0.22494844,-0.72198504,0.45149258,0.07538756,-0.16965644,-0.11034998,0.30210114,0.32396472,0.09347191,-0.017747637,0.11656908,-0.59116364,0.39906362,0.13201159,0.01985443,0.41539988,-0.16054249,-0.11982906,-0.57230973,-0.12532404,-0.50124276,-0.2723479,0.087557875,0.12138695,0.2870164,0.10891177,0.04297333,0.36158517,-0.4334673,0.04934062,0.041253287,-0.15016337,0.24473146,0.48169604,0.5669554,-0.3568767,0.51560116,0.06178799,0.16190426,0.24862458,0.043057982,0.3845001,0.100312285,0.29567164,-0.063447244,-0.19744794,0.1391044,0.8834461,0.23840341,0.37547317,-0.055678394,-0.31481716,0.33246696,0.046742365,0.2230352,-0.031352393,-0.6122277,-0.15654215,-0.19256112,0.10626039,0.46714813,0.12356582,0.17998078,-0.10705539,-0.17296289,0.088121146,0.2555482,-0.05543472,-1.0364147,0.27920407,0.19344027,0.91324943,0.2834501,-0.06850791,0.07115352,0.58038986,-0.24033132,0.10567277,0.36630157,0.05699227,-0.53472626,0.571344,-0.6520038,0.55335736,-0.11715807,-0.015306717,-0.026897056,-0.07954321,0.30780357,0.77115405,-0.25450552,0.0006524583,0.08268953,-0.3937095,0.16969274,-0.44948286,0.0824909,-0.54589856,-0.029741786,0.59952277,0.5434478,0.30473742,-0.27330476,0.0069072824,-0.001451395,-0.08608346,0.0029318014,0.072541475,0.16274667,-0.12268147,-0.71002513,-0.2420743,0.48482305,0.050571244,0.32234356,-0.010596156,-0.26855123,0.27238208,-0.19817773,-0.18266346,-0.046355452,-0.564189,-0.017090647,-0.30374387,-0.5853598,0.36155275,-0.055010047,0.21063311,0.20711762,0.07302446,-0.21017241,0.16223131,0.16231653,0.7920862,0.062244065,-0.096115634,-0.51451176,0.103352204,0.17832759,-0.19299483,-0.22285773,-0.09350217,0.029057674,-0.5162327,0.3740063,-0.16449372,-0.22665435,0.094114,-0.08249699,0.09302265,0.5252507,-0.026505915,0.009362808,-0.15647773,-0.07935378,-0.20593044,-0.04388469,-0.09064528,0.2385628,0.19052857,-0.022540176,-0.048428204,-0.17558612,-0.18534207,0.36191124,0.14682934,0.28882682,0.3619335,0.054625355,-0.29397902,-0.247707,0.17716935,0.49953845,-0.013319317,-0.18166028,-0.3492796,-0.4886817,-0.33840886,0.25964484,-0.055924814,0.25472578,0.13293569,-0.35665396,0.50561655,-0.12661512,0.905616,0.11120024,-0.29650465,0.118078716,0.50380933,0.08714385,-0.011684996,-0.3523311,0.8226284,0.30183136,-0.021873252,-0.119484216,-0.27918616,0.08425798,0.2185339,-0.2026886,-0.13879508,-0.12990193,-0.62332606,-0.26958883,0.18351428,0.1956861,0.12795903,-0.06212105,-0.05942136,0.31266102,0.05698339,0.4534694,-0.44658008,-0.30341086,0.37192777,0.2795461,-0.15723284,0.11879409,-0.44282252,0.36306018,-0.4860012,-0.010969511,-0.32032627,0.16793296,-0.25735566,-0.089802824,0.33949342,0.107224144,0.33911,-0.22490098,-0.5487507,-0.21930449,0.33712876,0.04916898,0.14647573,0.3369507,-0.16837,-0.096356824,0.08792852,0.55035007,1.1115577,-0.17540638,0.14085618,0.3381844,-0.31410474,-0.55112004,0.27281693,-0.24299502,0.27180016,-0.0565864,-0.09130522,-0.4490236,0.30322456,0.20264088,0.123560295,0.07226607,-0.56265384,-0.20896521,0.29387966,-0.36634895,-0.152731,-0.2500485,0.026795825,0.65820205,-0.36299124,-0.14109913,-0.010151442,0.5017855,-0.12767392,-0.56652564,-0.0019140482,-0.4117014,0.24012133,0.05998083,-0.28177464,-0.18587811,0.04068796,-0.4176071,0.11246881,0.14416851,-0.3845642,0.0633949,-0.28626218,0.022661678,0.96362215,-0.124986514,0.30022627,-0.56362,-0.42745832,-0.8464883,-0.41269022,0.315631,0.15635915,-0.026888167,-0.5838706,-0.03713386,0.017774506,-0.34275696,-0.28817663,-0.42009124,0.4775623,0.13812803,0.35386616,-0.03367974,-0.5821417,0.09429846,0.06260732,-0.14725937,-0.46604007,0.43676415,0.00030447444,0.71266454,0.08136273,0.12244506,0.18325877,-0.48816955,-0.008993049,-0.22886698,-0.096709736,-0.6981411,0.2044259,187 -160,0.4646342,-0.04437777,-0.4979896,-0.18633148,-0.06543896,0.15549706,-0.17087892,0.24042556,0.19074407,-0.54755515,-0.16757871,-0.18093023,-0.24208364,0.2708896,-0.16566405,-0.54048425,-0.021981018,0.15026101,-0.50349927,0.59966445,-0.3407866,0.37670425,0.096146815,0.25887007,0.14450563,0.16031787,0.37389278,-0.1504742,-0.21109098,-0.35728496,-0.007740748,0.04417349,-0.65578705,0.33564034,-0.18394855,-0.35888788,0.018435871,-0.39551753,-0.26156163,-0.7441645,0.2778515,-0.58433557,0.41575554,-0.0022215843,-0.24414445,0.348982,0.08578027,0.29456392,0.00128329,0.12027188,0.22021182,-0.10011948,-0.057597745,-0.168186,-0.0614415,-0.32373363,-0.45947692,0.16412371,-0.47376004,-0.21069089,-0.25856555,0.14530307,-0.116820835,-0.020579224,-0.08733613,0.56124187,-0.3908282,-0.21688488,0.06508298,-0.12779763,0.40505546,-0.70996255,-0.21414293,-0.23406789,0.17689916,-0.1908677,-0.032290615,0.24289055,0.104547344,0.4882789,0.032383848,-0.06632551,-0.22150196,0.0001268228,0.19411229,0.38371494,-0.10706248,-0.49716634,-0.120149136,-0.060185388,0.078435406,-0.025471708,0.122640505,-0.34035143,0.07408478,-0.09598248,-0.31050286,0.34933832,0.44794694,-0.4068874,-0.17533861,0.35624412,0.5001429,0.123895936,-0.063588984,-0.17321904,-0.1378269,-0.37690818,-0.20135012,0.19083777,-0.3020797,0.49480474,-0.10413826,0.063208334,0.5466154,-0.07617021,0.040462185,0.011339458,-0.05518115,-0.03246579,-0.09453821,-0.38524348,0.25044444,-0.34107652,0.031298723,-0.28006327,0.72274435,0.01702854,-0.8154455,0.31560987,-0.42691353,-0.041436505,0.038974382,0.5865501,0.6309446,0.39765438,0.07215298,0.6391603,-0.5803267,-0.0050610225,-0.14449981,-0.1476971,-0.12983474,-0.067258134,-0.08395866,-0.37174997,-0.0006227692,-0.14518099,-0.065762244,-0.1585842,0.3542158,-0.4438631,0.062196024,0.20734333,0.67018074,-0.337516,0.020453397,0.6200703,1.1352795,1.0608869,0.060142536,1.0904413,0.15282647,-0.33468783,0.04764648,-0.3469664,-0.4778701,0.33806357,0.36742306,0.20164505,0.2705611,0.026371403,0.07905664,0.23457566,-0.5167127,0.07740634,-0.0938712,0.29973385,0.006147609,0.07283378,-0.35279307,-0.15016773,0.09791269,0.026501548,0.115571454,0.12179149,-0.31498414,0.19627088,0.157502,1.3234268,-0.25028533,0.12495313,0.093948126,0.40132096,0.12937278,0.006821235,-0.026455022,0.35070404,0.20887226,-0.04303433,-0.57645875,0.006202555,-0.23307346,-0.4522794,-0.22836939,-0.2111591,0.0019478083,0.1997213,-0.35188216,-0.15236229,0.08542326,-0.37309137,0.39363977,-2.5045059,-0.14912869,-0.0983073,0.14358558,-0.39900872,-0.32462516,-0.031363532,-0.4448214,0.4973179,0.36558,0.3377601,-0.50156295,0.3238061,0.42833892,-0.24962266,-0.15070121,-0.47606048,-0.0771991,-0.14248523,0.45764965,-0.025480837,-0.18124014,-0.17907755,0.16737613,0.51044536,0.023317965,0.105729565,0.28767616,0.15876852,0.15766464,0.47820675,0.21027263,0.44146428,-0.38339564,-0.07519452,0.4787661,-0.32729045,0.068289004,-0.119628385,0.24981254,0.2591298,-0.44811094,-0.7259585,-0.7200594,-0.48655406,1.4104625,-0.217635,-0.51020795,0.21112885,0.2159393,-0.20548815,-0.0075787744,0.34261915,-0.064259626,0.12955979,-0.8185863,0.018212112,0.011243152,0.37727648,0.12052445,0.123078845,-0.57447755,0.80214053,0.020269912,0.38727713,0.35212967,0.18764468,-0.32705003,-0.48261395,0.11917303,1.130216,0.28361133,0.08948657,-0.15043072,-0.12028174,-0.2414164,-0.029857691,0.06589232,0.39967218,0.6912031,0.19168077,-0.038044,0.20667197,-0.0442851,0.11084884,-0.024005296,-0.41900292,-0.08426759,-0.012753804,0.6819657,0.48358366,-0.065709524,0.405907,-0.16272275,0.3507162,-0.29144517,-0.2861567,0.6680749,0.89776444,-0.22026032,-0.29400173,0.5939578,0.32539815,-0.20239092,0.44563445,-0.6771044,-0.44629818,0.4272558,-0.101701565,-0.42199993,0.16035582,-0.2982508,0.20635988,-0.8706638,0.25312388,-0.37555304,-0.34126827,-0.65738755,-0.2397836,-3.1036563,0.08299365,-0.14577508,-0.15565775,-0.02349952,-0.02252572,0.36063194,-0.42568594,-0.51069194,0.04594986,0.07257369,0.4094857,0.018399807,0.08630614,-0.17916927,-0.23447952,-0.31028333,0.3473056,0.02900018,0.3085743,0.06165552,-0.36528397,0.064648,-0.2399974,-0.2696707,-0.028897261,-0.3324817,-0.4030758,-0.26086265,-0.47126928,-0.20868526,0.6031161,-0.519204,0.042652864,-0.14559513,-0.06386829,-0.042696904,0.27858105,0.0919547,0.19568163,0.099877745,-0.12464268,-0.099071056,-0.2785282,0.19156359,0.120303825,0.10440481,0.3482086,-0.2586133,0.0710533,0.27655604,0.6515474,-0.048802376,0.7095299,0.5239943,-0.14180645,0.3366865,-0.3949413,-0.2841116,-0.5928348,-0.29947394,-0.07825057,-0.26825795,-0.49866256,-0.114237614,-0.31191936,-0.75886244,0.47978595,-0.11575195,0.0040867506,-0.00680664,0.24382986,0.2865015,-0.20120896,-0.09634992,-0.06251172,-0.05923141,-0.417863,-0.51874757,-0.6157111,-0.3130512,-0.15403047,0.8817282,0.011673407,-0.1165404,0.03927601,-0.09658767,0.06725984,-0.06709221,0.10783196,0.07300391,0.37340012,0.0072560706,-0.7452635,0.43910208,0.03417818,-0.0896046,-0.43448383,0.23264016,0.6302609,-0.4633334,0.33375266,0.37886876,0.22160727,-0.021226065,-0.3648124,-0.094968416,0.052808125,-0.2810549,0.47388136,0.11537445,-0.5221184,0.50338215,0.21395572,-0.25998613,-0.8364246,0.4156477,0.07716622,-0.3474268,-0.031017002,0.4334179,0.013734484,0.05240561,-0.2579914,0.115759894,-0.399186,0.15328914,0.22452177,-0.0026326617,0.3349585,-0.37783644,-0.19918042,-0.5875714,0.08233391,-0.4890655,-0.3618444,0.09161283,0.16227593,0.020255256,0.35170013,0.05907246,0.46208757,-0.09310169,0.11920931,-0.05078087,-0.06757442,0.39824504,0.50942004,0.36738667,-0.41080108,0.5575338,-0.057255555,-0.052556235,-0.3781008,-0.08121583,0.39506534,0.10403241,0.17700888,0.12863493,-0.106794916,0.3899606,0.5696576,0.33823153,0.4425834,0.052009776,-0.29148266,0.35725397,0.08583414,0.15370165,-0.051900085,-0.47713533,-0.31353378,-0.045133274,0.12024262,0.4346124,0.035126973,0.28121677,-0.1285496,-0.22848682,0.15290631,0.22717355,-0.1801851,-0.87319946,0.34631154,-0.036471948,0.7272389,0.7519648,-0.08891005,0.19604851,0.5201095,-0.3214834,0.02667748,0.24050157,0.012834114,-0.4989504,0.5560682,-0.5103623,0.147471,-0.09329999,-0.068040185,-0.090001345,-0.11580499,0.39575043,0.70962435,-0.0984689,0.12207968,-0.16711988,-0.21802354,0.06425594,-0.32003164,0.2519135,-0.32849413,-0.32383585,0.6660805,0.30251697,0.18268718,-0.29118168,-0.03699126,0.0380787,-0.13078174,0.12907949,0.006973505,0.03268514,0.011257187,-0.6031507,-0.14640306,0.564409,0.070046976,0.07141455,0.15462951,-0.19305994,0.14037088,0.04169518,-0.040894866,-0.025047312,-0.5417966,-0.016543923,-0.18542077,-0.2030943,0.3146269,-0.27566206,0.14936027,-0.051849015,0.08206101,-0.25221846,0.077360705,0.32728833,0.45825228,0.22128993,-0.0005054017,-0.3073412,0.06789789,0.057620473,-0.2217744,-0.19108966,-0.18927132,-0.007820525,-0.7756892,0.41407055,-0.03377563,-0.11993263,0.20234805,-0.12749097,-0.13003339,0.58435714,-0.12143598,-0.04002649,0.11434229,-0.11653273,-0.13559747,-0.12672876,-0.19731225,0.17929687,0.034621987,-0.06542656,-0.14706364,-0.051090915,-0.16467495,0.41856328,-0.008648085,0.28516635,0.36701483,-0.020131595,-0.50158185,-0.016237171,0.04394097,0.32235107,0.21596603,-0.025036184,-0.10676642,-0.47062367,-0.2773827,0.21593966,-0.07299686,0.010279298,0.09355285,-0.40375748,0.65924567,0.23404908,1.0877806,-0.021020496,-0.21335158,0.06697464,0.43905815,-0.06515878,0.08373379,-0.5018502,0.8876476,0.54865205,-0.103442386,-0.0764184,-0.2195895,-0.008792869,0.039866827,-0.2206733,-0.043294188,-0.18451329,-0.60682815,-0.4018655,0.16165139,0.43847308,-0.036319528,0.02145802,0.05232511,0.19791283,0.18686533,0.471636,-0.34327358,-0.16498128,0.40072346,0.18990657,0.091196395,0.06165645,-0.35107937,0.44298032,-0.70445824,0.032914985,-0.294011,0.082090825,-0.15401505,-0.21213351,0.16455957,0.11950685,0.29111746,-0.34965554,-0.4429218,-0.2227606,0.4415047,-0.063447535,0.20057036,0.5445131,-0.1645667,0.11135364,0.035417937,0.3960182,1.0046262,-0.13635118,0.07353211,0.22431828,-0.29725343,-0.5685409,0.34214437,-0.34128138,0.13681507,-0.07931468,-0.30401516,-0.45054615,0.2975998,0.1699149,-0.14750385,0.100856274,-0.671347,-0.2938056,0.36890113,-0.24591018,-0.17063546,-0.138051,0.0914888,0.6385369,-0.3616575,-0.36103812,0.010627699,0.33040914,-0.4335128,-0.6919836,-0.01884102,-0.3431537,0.46872357,0.17910792,-0.11616411,-0.14443442,0.22873203,-0.47402313,0.02058204,0.24823895,-0.38537353,-0.021673597,-0.32019126,0.107945964,0.63095635,0.08404164,0.051449105,-0.5430288,-0.41263285,-1.10588,-0.31231546,0.47694674,0.06678215,-0.035071515,-0.45456108,-0.02723704,-0.29815248,0.12055609,0.055745862,-0.32237053,0.32951364,0.13251397,0.5325596,-0.013604204,-0.65656245,0.036986303,0.16441602,-0.024226967,-0.4887481,0.31212938,-0.045351163,0.83498275,-0.016306795,-0.0015670061,0.18264948,-0.7382166,0.113923535,-0.18110244,-0.1225351,-0.54499966,0.23017989,193 -161,0.3726441,-0.17151119,-0.5182727,-0.13327213,-0.14324372,0.2238739,-0.16754754,0.5107438,0.18689916,-0.3892855,0.02261556,-0.050778843,0.034501616,0.3121921,-0.07762908,-0.23605089,-0.02094688,0.16219565,-0.52444303,0.3487952,-0.4921238,0.13547535,-0.18081352,0.38043037,0.0974314,0.19782718,0.112995654,0.041938182,-0.064032935,-0.07816785,0.27463153,0.19499446,-0.5270094,0.3362802,-0.052604057,-0.2612072,-0.052129947,-0.43128055,-0.5284465,-0.64410174,0.31389925,-0.7287706,0.508382,-0.01123184,-0.2767952,0.27768296,0.027728982,0.2311619,-0.32409707,-0.0780574,0.1712915,-0.2736011,-0.1514652,-0.2815461,-0.016835455,-0.20624126,-0.5943893,-0.05521275,-0.33173224,-0.05346175,-0.23771732,0.10907204,-0.3233256,0.10623012,-0.1948647,0.4655309,-0.3492573,-0.055012815,0.24520466,-0.19082455,0.12961608,-0.4496299,-0.049294338,-0.196647,0.017649932,-0.18947425,-0.29642504,0.37300667,0.12203864,0.41218537,-0.20206709,-0.1635007,-0.24952078,-0.042448215,0.08756633,0.45999032,-0.11216078,-0.19781446,-0.11762284,-0.17139158,0.019470979,-0.008613094,0.17324229,-0.19017725,-0.11083508,0.1090893,-0.097130425,0.17266324,0.5643528,-0.22512244,-0.16517867,0.3738308,0.552198,0.033416055,-0.0973537,0.00817554,0.04555458,-0.46753058,-0.28507236,0.033159576,-0.12374822,0.35736874,-0.17145315,0.23984274,0.5710407,-0.21881437,-0.17308998,0.16144091,0.13703902,-0.0720136,-0.32777375,-0.42915946,0.38426492,-0.42834812,0.04739081,-0.1495047,0.66133195,0.081142016,-0.66240793,0.46558207,-0.44349608,0.08100996,-0.09210883,0.60945374,0.74910945,0.57205445,0.22250347,0.71437186,-0.45063022,0.02864934,-0.098236196,-0.38660768,0.33090484,-0.30974045,-0.13183992,-0.39329872,0.013281957,0.09593535,-0.21627907,0.11233711,0.28189096,-0.450242,-0.07124602,0.20329401,0.5923065,-0.30848652,-0.13567463,0.5760165,1.0564307,0.92022055,0.14077258,1.0905414,0.23044392,-0.22373997,0.10357443,-0.09898237,-1.0465608,0.31601524,0.18230176,0.019029776,0.35975134,0.17785147,-0.13754386,0.45583567,-0.4966171,-0.015693905,0.005933392,0.20466708,-0.078811914,-0.10256858,-0.40744057,-0.34559923,-0.002924635,-0.03666823,0.060988765,0.30386573,-0.27573013,0.46037135,0.0538583,1.5318228,-0.060083143,0.16757338,0.08192532,0.4409916,0.14857663,-0.3202097,-0.15822144,0.32412973,0.37633255,0.14020576,-0.60683364,0.262944,-0.051809836,-0.5102446,-0.14803882,-0.39314547,0.12370028,-0.10366828,-0.38911262,-0.21202901,-0.089480385,-0.33334628,0.3025406,-2.836242,-0.075730324,0.025597665,0.32924142,-0.18583916,-0.20743744,-0.14719701,-0.38683745,0.19834258,0.4818265,0.40741497,-0.58919346,0.23240215,0.38053158,-0.47158653,0.011340334,-0.6121155,-0.09028225,-0.19400693,0.21607488,0.12939404,-0.0003833294,-0.029430874,0.1781228,0.4462308,-0.11602438,0.06085195,0.38228127,0.30054656,0.039930362,0.28691152,-0.0725912,0.53218216,-0.61600435,-0.2836356,0.31904832,-0.46010864,0.09702776,-0.077669874,0.0458414,0.49222252,-0.38708112,-0.8044881,-0.50880843,0.013879408,1.2945961,-0.36731094,-0.30736235,0.20295754,-0.37947407,-0.31081435,-0.04363676,0.5226663,-0.20531233,-0.09397089,-0.8509186,-0.022702677,-0.10349063,0.3951508,-0.11538364,-0.0008722971,-0.53165305,0.41003895,-0.010920745,0.81886166,0.23490904,0.14598091,-0.32298335,-0.40051225,0.15132436,0.76964927,0.3719088,0.21912184,-0.26257125,-0.11017649,-0.14991586,0.008441516,0.2148123,0.3446153,0.63166046,-0.046596702,0.24343124,0.37048146,-0.12773013,-0.036725935,-0.089969665,-0.2677607,-0.070320375,0.004401775,0.590546,0.607017,-0.089762464,0.17700025,0.0056025307,0.36242217,-0.23832792,-0.46279222,0.5101046,0.7475058,-0.111542635,-0.3227833,0.5434684,0.5626954,-0.38614804,0.54799616,-0.62475944,-0.31961742,0.2913066,-0.122997314,-0.32358477,0.09913222,-0.32516295,0.35561812,-0.90163004,0.25993913,-0.24288994,-0.5677554,-0.7146746,-0.13524573,-3.2347865,0.10276249,-0.19060372,-0.15893005,-0.021150347,-0.07756678,0.34565622,-0.5710799,-0.52443445,0.085827634,0.10887871,0.8310897,-0.08098748,-0.112217404,-0.25253648,-0.16570446,-0.323263,0.12016327,0.27138415,0.27361774,0.07822063,-0.5372154,-0.077480234,-0.32573128,-0.3936334,-0.054896362,-0.49517906,-0.35275564,-0.16875388,-0.5514552,-0.4159385,0.64388555,-0.23345232,0.07043249,-0.19528112,-0.009139457,-0.048906095,0.31519955,-0.04315717,0.1507611,0.095960654,-0.16642527,-0.07583752,-0.30556858,0.3155871,-0.048802756,0.28368133,0.47246465,-0.30287963,0.06982422,0.6116602,0.6570541,-0.06666609,0.82095516,0.5330126,-0.07501338,0.33797246,-0.32511488,-0.23903401,-0.3619255,-0.23571716,0.075784765,-0.42567843,-0.36526474,0.049525294,-0.35702318,-0.88729465,0.5185107,-0.018124921,0.108057186,0.046164073,0.07324826,0.37110838,-0.11014705,-0.12136122,-0.064014524,-0.15826939,-0.35331306,-0.29322782,-0.67364055,-0.49501926,-0.00016438166,1.1941863,-0.12796408,0.080672495,0.076177225,-0.16830818,0.09784448,0.12144636,0.012385603,0.2880712,0.4529986,-0.024701126,-0.45889595,0.47973064,-0.2833505,-0.112400025,-0.5585042,0.23306829,0.59719884,-0.6917204,0.557376,0.39654872,0.12750895,-0.20379387,-0.5613647,-0.1729478,-0.014932469,-0.10327251,0.5057782,0.22495387,-1.0477222,0.48589543,0.32949898,-0.39328244,-0.61026627,0.5335254,-0.087853715,-0.02234122,-0.08298257,0.3358552,-0.1887921,0.09751935,-0.09347508,0.24171104,-0.46525213,0.17687996,0.1688428,0.045013208,0.44665697,-0.2771527,0.052642304,-0.52442765,0.00087176956,-0.53031844,-0.22057372,0.2312691,-0.07825244,0.087862976,0.23239203,0.03508199,0.46997222,-0.2439401,0.04416548,-0.17097773,-0.4016618,0.5264511,0.48380718,0.37976927,-0.44145352,0.62782556,0.09691906,-0.025515573,-0.19748713,0.0701404,0.43205163,0.15477346,0.41767925,0.033745836,-0.10270805,0.28766283,0.77538884,0.20200102,0.44820797,-0.0046234867,-0.15915976,0.13064735,0.11045746,0.28826982,-0.022225956,-0.46556416,0.050362747,-0.28663474,0.29187208,0.40328518,0.11707792,0.4802415,-0.12177669,-0.32648626,0.08093975,0.07328283,-0.1385534,-1.2233694,0.46576443,0.17893918,0.77162266,0.41407904,0.067015804,0.0073883096,0.6806698,-0.22725226,0.1556334,0.25746724,-0.10336917,-0.52696764,0.61630315,-0.7230941,0.5498077,0.03373652,-0.14609787,0.00046030284,-0.099571295,0.5719113,0.67874146,-0.026587296,0.18201897,0.07592298,-0.31630102,0.33118942,-0.4054665,0.21408159,-0.505606,-0.2533388,0.6042717,0.37790257,0.4283064,-0.2681661,0.01227893,0.09743532,-0.11888276,0.15416647,0.033178087,0.050937857,-0.039289407,-0.7038315,-0.2744699,0.595341,0.032956645,0.13435875,0.017484797,-0.22476499,0.2868561,-0.12822504,0.039588485,-0.11238091,-0.63948846,0.028944766,-0.233671,-0.42441007,0.4249673,-0.23992391,0.23334795,0.28928992,0.09307729,-0.5106239,0.25424227,0.13091694,0.8129888,-0.105032995,-0.25232732,-0.28767484,0.17756388,0.2911369,-0.18444696,-0.081851214,-0.42757168,0.0054445346,-0.43017185,0.43796036,-0.16459955,-0.31242657,0.17293987,-0.0044781636,0.08015167,0.54647607,-0.05894263,-0.14211035,-0.10049095,-0.061451748,-0.3313085,-0.17692414,-0.29823142,0.2953434,0.12006271,0.09506766,-0.09679854,-0.042403024,-0.0012958527,0.361508,0.05299101,0.2568664,0.40417945,-0.03370153,-0.38200948,-0.030256223,0.019853437,0.57198906,-0.017038401,-0.17454402,-0.40909514,-0.36715558,-0.18817274,0.31486398,-0.07088666,0.39165848,0.17157339,-0.34150913,0.6582001,-0.15335639,0.9052705,-0.022743728,-0.35304424,0.0065261843,0.6242281,0.052306734,-0.073292926,-0.38830456,0.7977367,0.5789374,-0.21179336,-0.14660914,-0.34217918,-0.013867168,0.12482335,-0.22771831,-0.42488477,-0.07211065,-0.76448286,-0.015776088,0.19425812,0.33519128,0.19828911,-0.08674763,0.11441481,0.268363,0.026579281,0.04232967,-0.32439488,0.01977539,0.42490742,0.22207178,0.022478346,0.0970551,-0.4699068,0.32628676,-0.7093706,-0.017617736,-0.16354424,0.1414911,-0.09002273,-0.41549173,0.14057526,0.14916559,0.21552709,-0.22765426,-0.24948348,-0.10757203,0.48069173,0.12120442,0.23656917,0.78491217,-0.21505333,0.07874991,0.14960292,0.3196956,0.7161857,-0.21439253,-0.015687283,0.17103313,-0.33952814,-0.7743724,0.3829206,-0.19946247,0.36932942,-0.13275565,-0.21947856,-0.6040751,0.33682522,0.23678122,-0.11383231,0.13833876,-0.52911854,-0.12092878,0.16490409,-0.31206733,-0.30097902,-0.40559337,0.016068827,0.49842983,-0.25759238,-0.21067467,0.21129629,0.3463221,-0.18340452,-0.41326633,-0.024877954,-0.43009442,0.17635709,0.020182414,-0.38263687,-0.0053860624,0.04603003,-0.39470997,0.32499662,0.15228884,-0.23994742,0.024234716,-0.34902012,0.015447666,0.7335558,-0.20920998,0.018876815,-0.58549964,-0.5183055,-1.0088058,-0.25739333,0.45338383,0.18985398,-0.004201625,-0.65339446,-0.0010436655,-0.060168456,-0.13791877,-0.18703532,-0.3694291,0.40872812,0.049793504,0.21906129,0.06426519,-0.63597065,0.111225635,0.13050619,-0.12693511,-0.43164775,0.4594559,-0.1308501,0.82157606,0.16840567,0.21942666,0.23954262,-0.47645637,0.115916215,-0.23083371,-0.16738221,-0.50595146,0.05889022,200 -162,0.34002832,-0.1392932,-0.42897287,-0.24253611,-0.40378135,0.15094589,-0.15002786,0.2848047,0.198747,-0.09914551,-0.04774139,0.01700058,-0.06240758,0.4284896,-0.11652174,-0.59247553,0.09475579,0.16250962,-0.61519855,0.50189894,-0.5543615,0.3032395,-0.005392627,0.44652423,0.08474439,0.29314545,0.11692783,-0.08273004,-0.052106276,0.08367764,-0.26393604,0.49256524,-0.6387583,0.25791246,-0.039279032,-0.2504531,-0.022499848,-0.29231647,-0.26573756,-0.79704463,0.2337329,-0.76393646,0.602325,-0.22987062,-0.5652226,0.030224482,0.022091929,0.2852361,-0.48071155,0.05167299,0.17262223,-0.371787,-0.04083654,0.032046665,-0.15921251,-0.49521667,-0.58561385,-0.0026940028,-0.6574665,-0.06017851,-0.35178947,0.29247797,-0.33662325,-0.11827043,-0.1550691,0.38840428,-0.47105303,0.046522,0.11302395,-0.27977222,-0.13361889,-0.44750765,-0.07976561,-0.22935,0.35206792,0.1786918,-0.3676224,0.2613209,0.46809974,0.61122984,0.18718967,-0.29340553,-0.14159958,-0.07961673,-0.006776615,0.43392196,-0.06942242,-0.2945679,-0.35657215,-0.07321234,0.42355248,0.13543685,0.0170708,-0.32287508,-0.0276017,0.10140934,-0.16938716,0.20148224,0.45715252,-0.503959,-0.16982664,0.4766194,0.38019383,0.13969988,-0.20806971,0.2506737,-0.0523656,-0.563315,-0.2514656,0.025221338,-0.27629024,0.70000154,-0.30945188,0.15789996,0.8108237,-0.03543157,-0.07050384,-0.07718197,0.0039646546,-0.15345034,-0.18545885,-0.121776976,0.13563381,-0.39298946,0.06730875,-0.15108235,0.81185913,0.15034844,-0.73134726,0.29676488,-0.40466613,0.14371163,-0.1634151,0.70484746,0.8889398,0.52743214,0.31518036,0.9203299,-0.50011134,0.018341323,-0.00774229,-0.4157063,0.17805439,-0.1215124,-0.13058858,-0.48004895,0.14700013,0.019075366,-0.12932527,0.014541225,0.32119182,-0.5555722,-0.015446325,0.038929027,0.5927713,-0.42318204,-0.1889706,0.8810953,0.8570318,0.93038756,0.09154347,1.2821059,0.51023704,0.009048571,-0.027912179,-0.24367118,-0.58461285,0.15421449,0.28220126,-0.20858397,0.39877573,0.09894207,0.03096352,0.60426563,-0.37563723,-0.14678413,-0.09949671,0.26168758,-0.070340775,-0.03986759,-0.40729707,-0.22294803,0.21085761,0.14284918,0.030346008,0.30940124,-0.20928647,0.42983335,0.15514,1.1790805,0.112851284,-0.02320596,0.044809863,0.33477393,0.26442215,-0.14664268,-0.1227137,0.4002985,0.5293228,-0.09125962,-0.52086484,0.042344775,-0.223065,-0.3910328,-0.15243064,-0.37121093,-0.049933262,-0.10832238,-0.5270328,-0.24658367,0.07516514,-0.15142298,0.5167255,-2.5186472,-0.24884063,-0.13463023,0.30257624,-0.19048828,-0.19738674,-0.17866246,-0.4845692,0.10192595,0.4288645,0.36038944,-0.6918317,0.41550466,0.35598847,-0.3176255,-0.081647426,-0.75617915,-0.065709084,-0.039456986,0.5223692,-0.026876176,-0.14687033,-0.15278263,0.16021992,0.7222215,0.038663857,0.050908804,0.18351936,0.37147376,0.060717393,0.42291757,0.19504073,0.637355,-0.028478865,-0.23733774,0.35017195,-0.26787427,0.41990608,-0.0770703,0.116286755,0.46987706,-0.43217182,-0.7394491,-0.569437,-0.20442706,1.3640654,-0.5329086,-0.38418093,0.2887047,-0.22288005,-0.16000646,0.044579674,0.36094,-0.15051451,-0.068523616,-0.7655427,0.008145722,0.008356476,0.27250162,-0.13620834,0.13534984,-0.23876543,0.633296,-0.25418612,0.51054484,0.29792848,0.1957547,-0.06967713,-0.61290103,-0.005543701,0.8403041,0.51366794,0.060867593,-0.23603347,-0.28053677,-0.16735989,-0.16714849,0.09098841,0.4517349,0.6569134,-0.04017423,0.16840544,0.45220295,-0.19561876,0.05824953,-0.18763734,-0.28218955,0.029878315,0.26585826,0.512221,0.6803256,-0.22313112,0.39501008,-0.15586825,0.1483741,-0.041828547,-0.6124095,0.62704957,0.90984476,-0.31886086,-0.121783264,0.62901294,0.42274824,-0.29225084,0.4304336,-0.6046448,-0.24153982,0.6379106,-0.07484512,-0.39961192,0.08738567,-0.34071657,0.17500976,-0.9394372,0.3440452,0.051932976,-0.5725339,-0.5925649,-0.06498747,-3.8833833,0.010764897,-0.26850697,0.051952165,-0.058711912,-0.30560634,0.43701643,-0.6634682,-0.5848242,0.03717717,0.00647736,0.4252436,-0.18537733,0.16797858,-0.30969638,-0.24604629,-0.17019922,0.15025489,0.24101223,0.26608822,0.0651612,-0.50110435,0.15904805,-0.3420754,-0.52134115,-0.079203494,-0.5625997,-0.4745157,-0.084694885,-0.5308325,-0.20893723,0.7003094,-0.36308247,-0.02515821,-0.371442,0.15734854,-0.1930693,0.37280923,0.12373303,0.084829465,0.1449687,0.0029751768,-0.046394467,-0.29957053,0.21688122,-0.019942397,0.22568491,0.36033297,-0.11838419,0.2020842,0.719881,0.45536405,-0.11524274,0.8309296,0.45341274,-0.16043304,0.28259298,-0.24689484,-0.31193033,-0.77242416,-0.40206355,-0.28194237,-0.551783,-0.42091924,-0.05845565,-0.42678085,-1.0006865,0.5510448,-0.06494212,0.25516808,-0.15471862,0.29539993,0.48339263,-0.12261384,0.0176269,-0.11968951,-0.3102436,-0.5410472,-0.37180355,-0.68033767,-0.6083852,0.21509366,1.2451417,-0.19393124,-0.06701117,0.00439371,-0.42294532,0.014004576,0.033395566,0.23200445,0.08078794,0.48875496,-0.22472946,-0.8864314,0.23746487,-0.17897364,0.049006555,-0.63072246,0.06019962,0.7435261,-0.7304694,0.4786031,0.34290984,0.23360272,0.18392125,-0.6396138,-0.4348802,0.0040711025,-0.16719766,0.72799367,0.22113404,-0.6649406,0.5632085,0.07613609,-0.12985301,-0.70649713,0.46097633,-0.05636588,-0.1333215,0.21153472,0.31995738,0.031489596,-0.108094834,-0.15162244,0.07792072,-0.52443844,0.3847008,0.37099516,-0.07735089,0.38924757,-0.08458675,-0.19152944,-0.6740936,-0.30900887,-0.55661356,-0.22772972,0.037149955,0.039546967,0.1105519,-0.08749641,-0.05749213,0.4851773,-0.30382022,0.1561416,-0.007638097,-0.16385062,0.35618898,0.66137415,0.32784325,-0.50513965,0.56260663,0.27846017,0.052120566,-0.11479316,0.007914773,0.5243522,0.26334333,0.30502284,-0.124342285,-0.12282649,0.21094981,0.70959115,0.21351096,0.43882683,0.10994413,-0.21939524,0.37811512,0.18649617,0.20543604,-0.07160066,-0.2763572,-0.068047866,-0.12818381,0.2678054,0.46306664,0.24620104,0.30064493,0.00546901,-0.20258318,0.18550065,-0.05016367,0.08192292,-1.3152988,0.25184846,0.36648834,0.693294,0.45095855,0.03757026,-0.102355815,0.57751745,-0.39367524,0.04887594,0.42385143,0.0873599,-0.42656344,0.52848667,-0.5651903,0.5217524,-0.15101852,0.021967385,0.15624167,0.31762776,0.3160921,0.9459451,-0.10095168,0.08903592,0.029928977,-0.18964672,0.11612126,-0.31214207,0.025972184,-0.57704353,-0.30175447,0.59619236,0.3945462,0.30820045,-0.45336875,-0.09423647,0.054958977,-0.18059883,0.089806125,-0.1317596,0.039902013,-0.2124894,-0.54202086,-0.37554872,0.5836841,-0.022997973,-0.029997746,0.1559388,-0.39746544,0.23514776,-0.273427,-0.086592674,-0.054980494,-0.5562576,-0.16641569,-0.14428613,-0.502987,0.42458093,-0.28022015,0.23684701,0.15000549,-0.0049378444,-0.37100774,0.19487709,-0.01673859,0.85642815,0.075561814,-0.15884997,-0.31846383,0.08395639,0.4272942,-0.23907568,-0.12904571,-0.32514232,0.11389828,-0.41873607,0.3218017,-0.23143317,-0.23265523,-0.10665293,-0.18346387,-0.028250678,0.29954365,-0.13913544,-0.1672726,0.16382675,-0.007349523,-0.37696606,-0.070691325,-0.429689,0.27857724,0.013134222,0.025699567,-0.07819293,-0.16643168,-0.1655612,0.3539557,0.07185138,0.07638526,0.25685638,-0.19614048,-0.33204868,-0.051939677,0.017220037,0.446123,0.048720397,-0.16452986,-0.42103443,-0.4327608,-0.24038957,0.13187037,-0.16293167,0.21650632,0.036298558,-0.4747804,0.8263846,0.24132474,1.3243164,0.020367486,-0.40419868,0.08505821,0.58397925,0.15573867,0.180935,-0.21148485,0.8359917,0.5830282,-0.17439337,-0.13418867,-0.5420742,-0.28326264,0.25438398,-0.19615486,-0.249729,-0.17386644,-0.69904065,-0.19955005,0.19339949,0.1506185,0.19544369,0.06563297,-0.116129614,0.08890544,0.1537339,0.5116994,-0.41736782,-0.12005896,0.38102835,0.25919905,0.10459503,0.23546474,-0.36433893,0.41991657,-0.6163771,0.09956912,-0.44398087,0.2339236,-0.13898917,-0.3351822,0.23208074,0.0050174673,0.26442784,-0.35237905,-0.31096682,-0.28253847,0.7419484,0.055146847,0.1941374,0.7523106,-0.31435424,-0.10412304,0.009261757,0.46844706,1.1927189,0.007787147,0.12330667,0.26594955,-0.22773221,-0.6473295,0.17761421,-0.34979928,0.13742238,-0.04967792,-0.37877777,-0.445343,0.29886627,0.08740654,0.021404512,0.14106373,-0.52967876,-0.08834076,0.3811344,-0.100235544,-0.099943146,-0.19841106,0.32082793,0.73096883,-0.49753997,-0.43579394,0.011626538,0.354003,-0.17185721,-0.61976343,-0.058205914,-0.279185,0.35774645,0.20768921,-0.4308853,0.01787849,0.26825958,-0.35654557,0.07551685,0.452022,-0.23102671,0.21929434,-0.20993854,-0.011542678,1.0629791,0.033288237,0.20895842,-0.6041674,-0.44817537,-0.986754,-0.24250123,0.3021059,0.27112466,-0.13893233,-0.73494184,0.014847513,-0.12983283,-0.024543246,0.13996556,-0.64057136,0.59793186,0.2008147,0.44098964,0.025889253,-0.93036956,-0.0275268,0.11138198,-0.12644364,-0.4952509,0.6590238,-0.18536758,0.7276627,0.08313991,0.115825996,0.0037525257,-0.5624148,0.21566203,-0.41894636,-0.067666784,-0.6812068,0.067325346,201 -163,0.453046,-0.4275162,-0.4302573,-0.19760935,-0.3112756,0.091457605,-0.14072594,0.46974003,0.05790558,-0.5304038,-0.3313021,-0.08586759,-0.12208458,0.30420902,-0.31654498,-0.511633,0.0383429,0.21547338,-0.41004595,0.70343155,-0.21716751,0.20626463,-0.033536967,0.38299078,0.19052927,0.2909334,0.1559232,0.08673843,0.04502473,-0.18554233,-0.13813108,0.1164035,-0.5056419,0.36520436,-0.16361791,-0.35646313,-0.069291785,-0.40111887,-0.44587108,-0.71188533,0.33178014,-1.086738,0.5291373,-0.07517343,-0.3662791,0.04572707,0.23816657,0.2565095,-0.1259182,-0.05190297,0.21246156,-0.14209242,-0.041994195,-0.24520442,-0.08542654,-0.5109686,-0.5740563,-0.11712779,-0.37225047,-0.2662592,-0.3100389,0.22496991,-0.35983855,0.03588462,0.017387906,0.6651162,-0.54830164,0.040210705,0.19471182,-0.25400865,0.34880525,-0.7540294,-0.18369745,-0.07298536,0.20800212,0.014985586,-0.2003894,0.42236355,0.24938376,0.37643987,0.028018972,-0.12249605,-0.21220882,-0.2246788,0.1721313,0.44035038,-0.103630595,-0.46204135,-0.12344265,0.01945719,0.44058642,0.14129274,0.1435594,-0.36205906,-0.13583276,0.032976065,-0.11228687,0.25590613,0.439479,-0.25415033,-0.16855898,0.23517384,0.5551683,0.0010136605,-0.17473193,0.016831128,0.041007414,-0.5048775,-0.26000196,-0.08393803,-0.33287382,0.70307547,-0.14634006,0.34094942,0.7194032,-0.12074173,0.034268398,0.017576609,0.1324656,-0.21653582,-0.3314974,-0.40847847,0.29452446,-0.5082855,0.08127165,-0.17935899,0.6598287,0.07864257,-0.65983063,0.28400514,-0.5157317,0.050448775,-0.2512056,0.44273594,0.5868355,0.526993,0.2738651,0.6567281,-0.41206577,0.0015856823,0.06998567,-0.38088602,0.15062551,-0.2467403,-0.113749385,-0.5277147,0.13244696,-0.020647023,-0.008495816,0.0071605127,0.42726436,-0.5759815,-0.010667243,0.07940807,0.92387635,-0.27191857,0.054329235,0.74105287,1.0349841,0.9496862,0.06769268,1.214695,0.19815406,-0.2988509,0.094194874,-0.01065768,-0.588219,0.32493475,0.5704703,0.18775047,0.33237714,0.04731149,-0.038977496,0.49803203,-0.6137879,0.043242835,-0.2004918,0.20113018,0.10920458,-0.27388617,-0.67187405,-0.12429573,-0.041363906,0.18556486,-0.09294936,0.23147227,-0.09906432,0.5171788,0.12770037,1.6237446,-0.0693374,0.106677055,0.12709679,0.49136847,0.2181839,-0.050035145,0.18139137,0.2980607,0.34797546,0.2043241,-0.52972513,0.11338966,-0.21278234,-0.55608183,-0.2959533,-0.33952174,-0.010170124,-0.018163225,-0.49397075,-0.29978064,-0.22108875,-0.121388756,0.38161847,-2.52725,-0.24833158,-0.22899322,0.4404826,-0.24324688,-0.273569,0.047950387,-0.4050372,0.49542135,0.32719848,0.51422805,-0.6463871,0.351013,0.553251,-0.5093453,-0.0039883433,-0.53020275,-0.17794326,-0.065505914,0.47049612,0.078603745,-0.06277181,0.07184274,0.2655365,0.52659076,0.037431136,0.2510328,0.30144987,0.30891854,-0.061544277,0.41719908,0.04515337,0.44634473,-0.12098033,-0.14404713,0.3756976,-0.13562553,0.17102432,-0.20667644,0.110438414,0.60272294,-0.40857136,-0.76207376,-0.7426956,-0.20912789,1.0569241,-0.22264567,-0.64911824,0.27558842,-0.34816238,-0.33690056,-0.121932216,0.31825274,-0.18949126,0.13155073,-0.85056895,0.09043611,-0.09454983,0.124057665,0.06724195,-0.31989127,-0.5260268,0.8990743,0.004328839,0.6869477,0.41406578,0.2146709,-0.22386545,-0.52412575,0.061319828,0.9099478,0.6957606,0.13806845,-0.1188684,-0.16522053,-0.289637,-0.23722868,0.1032947,0.6704739,0.7085763,-0.055362903,0.1893123,0.3210875,-0.06574316,0.079889014,-0.10766776,-0.26981595,-0.09911958,0.13204953,0.57266504,0.6479223,-0.3211388,0.36766255,-0.120255515,0.46312842,-0.031607606,-0.49947435,0.41550004,1.2489123,-0.15699972,-0.34356204,0.6351256,0.48715505,-0.26843587,0.39270937,-0.6764701,-0.26524982,0.52087474,-0.15178446,-0.6173758,0.07291385,-0.37771633,0.2974416,-0.9340583,0.5070772,-0.31881645,-0.5294196,-0.67930186,-0.25891414,-2.959155,0.22565596,-0.3795458,-0.20489809,-0.21014756,-0.22244841,0.27535373,-0.8478346,-0.5537441,0.2555977,-0.008352569,0.67615974,-0.012159232,0.08108649,-0.13514087,-0.2715597,-0.15139817,0.1966063,0.13530983,0.19409065,-0.08470873,-0.5465787,-0.12765014,0.0026812155,-0.5819884,0.063348606,-0.5643636,-0.53861237,-0.18465854,-0.38667747,-0.17979915,0.6228219,-0.17935392,0.029945524,-0.21325396,0.05034597,-0.2759203,0.20377249,0.10853887,0.13396004,0.010123811,0.06296347,0.12183133,-0.3264881,0.28623873,0.021817287,0.29116675,0.21272229,-0.33733377,0.14580794,0.50765187,0.52438295,-0.26113978,0.7807677,0.5729025,-0.19225867,0.27324957,-0.1516101,-0.46962675,-0.59759146,-0.41912562,0.16491477,-0.33944243,-0.5116765,0.061346952,-0.5122463,-0.78858525,0.58459294,0.03205307,0.26037496,-0.04155677,0.11849259,0.48026937,-0.20173432,-0.20651695,-0.13710266,-0.21396485,-0.72291595,-0.29073736,-0.6948572,-0.547658,0.10777876,1.114806,-0.20661308,-0.0982337,0.1921536,-0.27873436,0.10134649,0.2092201,-0.106798425,0.07660783,0.4596714,-0.09151292,-0.858676,0.72324693,0.00038642288,-0.2539501,-0.58639026,0.23314661,0.5679853,-0.58380544,0.44013843,0.36524683,-0.05753565,-0.30516255,-0.51801586,-0.1303324,-0.12073352,-0.28995693,0.53743434,0.22809993,-0.622296,0.4033197,0.32829767,-0.26165986,-0.6454529,0.58428574,-0.082726814,-0.109749176,0.0064118784,0.3343037,0.10505251,-0.0629134,-0.16201636,0.2254224,-0.41838488,0.27966768,0.24784373,-0.10326967,0.2561135,-0.13244298,-0.0863805,-0.8905486,0.059077747,-0.61618805,-0.16519143,0.19248538,0.054068092,0.0018774271,0.12997332,0.053495254,0.4373806,-0.34177443,0.13487382,-0.04006684,-0.40185642,0.38623115,0.42226106,0.4474774,-0.39854917,0.63823205,0.069184095,-0.04698981,-0.18432458,0.10029197,0.46528444,0.3115922,0.38242766,-0.13110468,-0.056509387,0.28178364,0.7773565,0.24548873,0.5761081,0.20362036,-0.12775803,0.16095513,0.064563245,0.24320619,0.039755665,-0.6065734,0.11862502,-0.3008256,0.07993665,0.4903344,0.17143081,0.34859827,-0.147909,-0.2853404,0.055397447,0.21083476,0.06187986,-1.3529229,0.32040235,0.25904384,0.88112223,0.41149554,-0.012402195,-0.09630448,0.8270339,-0.24968567,0.07822418,0.3934321,0.06457528,-0.44229516,0.63027877,-0.79701066,0.35355645,0.075255364,-0.06123598,-0.014695374,0.0133598745,0.3743116,0.6361082,-0.17725547,0.02223223,-0.109455675,-0.35215914,0.2691604,-0.4507589,0.03686237,-0.3208699,-0.40202972,0.4845185,0.5156084,0.273519,-0.19080259,0.03762468,0.16883932,-0.13596068,0.40989706,0.10784616,0.15810294,-0.1471541,-0.54889,-0.21520062,0.33670625,-0.19341065,0.14674085,0.0144171,-0.25294787,0.18599683,-0.0007963896,0.050457828,0.08278819,-0.6814768,0.09941398,-0.30277306,-0.37922192,0.79841346,-0.09480264,0.06240068,0.1078958,0.04621507,-0.150809,0.09849677,-0.10981992,0.6637709,0.11488778,-0.1052636,-0.32267463,-0.035136435,0.09768207,-0.22583522,0.13896063,-0.23947829,0.057119705,-0.659502,0.49577186,0.013798495,-0.17238349,0.23297206,-0.19701344,-3.102521e-05,0.40904865,-0.158938,-0.21944161,0.022628082,0.041073825,-0.2172773,-0.36965382,-0.13722216,0.2981185,0.18885006,0.25181738,-0.08593924,-0.06763589,-0.20330861,0.4558323,0.04098087,0.3754368,0.43340963,-0.21379733,-0.3478585,-0.17864919,0.1779928,0.42684302,-0.042967748,-0.026899215,-0.18814434,-0.704218,-0.4219281,0.16714634,-2.7418136e-07,0.3858232,0.109148115,-0.13164929,0.7339811,-0.028939025,1.1928991,-0.07350979,-0.50664395,0.0029492616,0.65288544,-0.043044757,-0.025939941,-0.22053036,0.86978877,0.6337061,0.0010166843,-0.08413622,-0.4434925,0.15978645,0.27817708,-0.18929757,-0.06840428,-0.10082313,-0.721382,-0.3640044,0.13771963,0.36835155,0.15491082,-0.117234185,-0.03712217,0.34818718,-0.072286464,0.3431176,-0.47666183,-0.26624873,0.34987932,0.15679929,-0.06087606,0.08081085,-0.46279582,0.40042418,-0.49169704,0.07742454,-0.33645487,0.14150788,-0.15989567,-0.24587913,0.21855725,-0.107667446,0.35698488,-0.29292896,-0.37033895,-0.12682785,0.56816936,0.025990475,0.082554616,0.54266447,-0.32148442,0.012427056,-0.00023937225,0.41537586,1.085228,-0.2516545,0.07285724,0.27655098,-0.56174254,-0.64833003,0.34539354,-0.31413883,0.29886374,0.0479218,-0.25335172,-0.5801753,0.27445304,0.25919443,-0.08297394,0.055953186,-0.63053125,-0.27380353,0.25926766,-0.4506654,-0.114396505,-0.24184911,0.097934835,0.3654703,-0.28614858,-0.35297865,0.09953639,0.27669972,-0.1324914,-0.5110752,-0.093740866,-0.3057256,0.3019608,0.0890395,-0.43383917,-0.17213972,0.078719616,-0.4663885,0.1616163,0.24586363,-0.34981024,-0.001121537,-0.3929768,-0.11966381,0.9262174,-0.13989854,-0.01655357,-0.59611857,-0.35129136,-0.7546323,-0.47730356,0.375471,0.12141024,0.078675106,-0.6720902,0.0207334,-0.20623432,0.15695849,-0.30858225,-0.2439216,0.46164572,0.16114645,0.46396977,-0.09190105,-0.72262883,0.24297409,0.05385432,-0.09542151,-0.544172,0.64018005,-0.07439497,0.8461058,0.123382814,0.15502484,0.16703309,-0.5557675,0.05816109,-0.19109698,-0.3471404,-0.5929756,0.035244424,213 -164,0.27692732,-0.1817098,-0.34288037,-0.16793095,-0.3677078,-0.007027169,-0.23906921,0.16869803,0.1392662,-0.34280646,-0.22010233,-0.16386077,0.020888202,0.19059542,-0.13658123,-0.61908776,-0.18729696,0.07936623,-0.7471935,0.37550232,-0.6536644,0.29341313,0.10193381,0.24636889,0.06296376,0.5081788,0.27076778,-0.22097273,-0.06607088,-0.012409735,-0.020130659,0.26607487,-0.5553239,0.17129472,-0.19351631,-0.21793383,0.115828656,-0.48001093,-0.14731461,-0.6018149,0.0496165,-0.8981418,0.3503326,-0.07102206,-0.015883517,-0.02709269,0.19947545,0.4453945,-0.28451616,0.13278408,0.29255137,-0.058833424,-0.09452998,-0.11771469,0.03824828,-0.2346346,-0.42579022,-0.0032634235,-0.5564728,-0.4115534,-0.16589458,0.14238253,-0.3277979,0.032492816,-0.10124224,0.17781763,-0.46577656,-0.056417547,0.26994947,-0.085354604,0.13413845,-0.4886948,0.09326904,-0.08334357,0.60342664,-0.232891,-0.14451632,0.40615642,0.3257691,0.4940693,0.15879737,-0.17469111,-0.07663003,-0.14659634,0.2768171,0.4411662,-0.21032758,-0.2195112,-0.25705793,0.0762342,0.18050757,0.31502336,-0.16267487,-0.3136553,0.057062343,0.013527099,-0.22846852,0.31438032,0.40638745,-0.29191697,-0.34963915,0.41422734,0.66639304,0.09521658,-0.19552271,0.031502757,0.060357586,-0.39459804,-0.16797085,0.2501753,-0.031845536,0.3285233,-0.049530316,0.15941317,0.81991756,-0.24708387,0.23867832,-0.14626375,-0.15926532,-0.15636717,-0.19344464,-0.19076957,0.059074577,-0.50649124,-0.021290159,-0.20439954,0.77543867,0.25592625,-0.80926156,0.43829343,-0.5221158,0.1549236,-0.1854138,0.70205635,0.6926164,0.34184748,0.30176392,0.6944641,-0.31337157,0.31153256,-0.14379829,-0.42397913,0.008246173,-0.14810963,0.10184564,-0.5072421,0.036581263,-0.16778561,0.06738809,-0.16438206,0.14805445,-0.44013032,-0.071864076,0.17825685,0.69584924,-0.41169965,-0.009560029,0.5712688,1.0449733,0.752284,0.064725585,1.1900696,0.3941136,-0.18430024,0.31638488,-0.4528209,-0.72898513,0.14473473,0.43230876,0.0538022,0.17995586,0.005198876,0.035660036,0.25328645,-0.49574697,0.14052303,-0.16489673,0.38720903,0.053163204,0.07703406,-0.3686828,-0.14142394,0.01786324,-0.15056896,0.04204259,0.20692286,-0.14300108,0.21356061,0.053659108,1.4888222,-0.028884359,0.09510994,0.04872047,0.67590225,0.13306235,-0.17072885,-0.12355339,0.41193104,0.36287537,-0.011561958,-0.65031165,0.26018247,-0.16694276,-0.4766629,-0.1281102,-0.40029186,-0.038580798,-0.01109941,-0.33930337,-0.0028835137,-0.049430467,-0.30976903,0.48661086,-2.9017208,-0.1968705,-0.15813619,0.39670223,-0.3574001,-0.24441582,-0.154414,-0.5139481,0.30097884,0.27224264,0.43586546,-0.6660874,0.48394388,0.4898184,-0.36704776,-0.20281158,-0.6937465,0.01694297,-0.05233907,0.4218778,-0.0023180882,0.003285281,-0.11682339,0.13554034,0.46079293,-0.07200546,0.17833589,0.33600876,0.42969024,0.36516267,0.6739548,0.035118464,0.51217365,-0.256946,-0.17892084,0.29276016,-0.24729997,0.22282122,-0.09944449,0.1124959,0.41395283,-0.46035782,-0.85547346,-0.6853219,-0.65947926,1.0282423,-0.44558576,-0.30267483,0.19485371,-0.037376914,-0.037686165,-0.010539878,0.5053898,-0.12908743,0.015844854,-0.7720735,0.20929438,-0.1243398,0.26904544,0.11841056,0.07223471,-0.3861221,0.5301899,-0.16458705,0.5438348,0.22454363,0.17143679,-0.15669407,-0.3050968,0.104900055,0.8665837,0.1877485,-0.02244792,-0.06644421,-0.2923444,-0.1980823,-0.2857998,0.08066075,0.4106248,0.74804455,0.039287157,0.10745462,0.34982675,-0.16627948,-0.042757675,-0.14553611,-0.19309168,-0.01757998,0.1079918,0.4205241,0.49809277,-0.14995575,0.46935737,-0.25290975,0.219625,-0.11957628,-0.44078004,0.5813053,0.40809104,-0.09906245,0.15173079,0.3942383,0.58401936,-0.37367025,0.39636242,-0.62826824,-0.24974014,0.6103952,-0.13205321,-0.40688896,0.1038644,-0.2286531,0.20178786,-0.87255234,0.33783743,-0.35567346,-0.30081502,-0.440872,-0.11079853,-3.1400096,0.09918621,-0.050574865,-0.24911596,-0.10357324,-0.0071289632,0.30865496,-0.57734984,-0.45574963,0.12255974,0.09071951,0.47780335,0.10512107,0.074242085,-0.36676463,-0.032972835,-0.14995092,0.109773606,0.20215024,0.35097212,-0.14023009,-0.42802817,-0.03899342,-0.08153728,-0.40967166,0.16787975,-0.48557737,-0.36214718,-0.10018514,-0.5041557,-0.2831542,0.539461,-0.4069914,0.05598481,-0.19895144,-0.015233,-0.35177526,0.30304697,0.36107597,0.17797966,0.17035276,-0.004251802,-0.13292554,-0.3728289,0.4878403,0.02126997,0.22896951,0.12177207,0.11191269,0.049601115,0.43588176,0.5065309,-0.09147375,0.8978517,0.3174227,-0.19638804,0.23483442,-0.41933373,-0.07231809,-0.5572662,-0.33001855,-0.27106857,-0.2934192,-0.5644559,0.03029073,-0.3498748,-0.77855283,0.5382918,0.100348316,0.24669796,-0.084159516,0.20781283,0.34633324,-0.11570511,0.052082993,-0.08258877,-0.075674616,-0.5443615,-0.3694276,-0.5956503,-0.37952858,0.1959416,0.84664726,-0.2533216,-0.063742116,-0.19020642,-0.18900752,-0.045332566,-0.07015552,-0.014602933,0.43378776,0.40980986,-0.004832258,-0.55480564,0.39911497,0.042473484,-0.08296857,-0.5216589,0.08693042,0.6953599,-0.8260065,0.5828374,0.28284505,0.06350346,0.13823242,-0.43585116,-0.2548392,0.002610762,-0.23084244,0.28907296,-0.083018236,-0.7447205,0.48066753,0.27416354,-0.3024228,-0.69614923,0.4453501,0.05891057,-0.27124676,0.04492741,0.22458628,0.1572451,-0.06247319,-0.36094067,0.274296,-0.37368375,0.18388046,0.12813248,-0.0781944,0.46972913,-0.16237411,-0.3359803,-0.56006294,0.056180518,-0.5043927,-0.2550267,0.33921286,-0.057634767,0.014454526,0.21945086,0.047908712,0.31385326,-0.22345367,0.016023032,0.17873666,-0.22484156,0.01519142,0.37115628,0.28606382,-0.4567239,0.49781224,0.15322222,-0.14139183,0.05897317,0.01968823,0.38259596,0.096053384,0.18399721,-0.016932487,-0.20784539,0.34806904,0.8698236,0.20472272,0.46562448,0.0074098585,-0.09142733,0.510435,0.04903752,0.057965264,-0.002040418,-0.42363688,0.07470653,0.2773399,0.15157832,0.33008182,0.36726886,0.33097354,0.04651262,-0.11534659,0.008718469,0.21967824,-0.093957424,-0.85027176,0.2916042,0.17164822,0.7688885,0.49808258,-0.024287164,0.031523358,0.56593513,-0.4366913,0.17314552,0.34253642,-0.21369615,-0.48387066,0.6421207,-0.5549367,0.34598,-0.07595932,0.020172877,0.09103114,0.08667438,0.23013361,0.64980644,-0.1310173,0.0688365,0.017470049,-0.14575149,0.06781079,-0.26742062,0.07109559,-0.374101,-0.220657,0.6718674,0.3702186,0.27939934,-0.10420626,-0.012843478,0.017099626,-0.22470579,0.13331425,-0.08415541,0.014640258,0.3465388,-0.49497908,-0.3378057,0.7021546,-0.10467599,0.053414155,-0.06685292,-0.35997972,0.17928688,-0.16134173,0.0465971,0.020704322,-0.6746148,0.109669,-0.23362383,-0.24871483,0.3596581,-0.18856035,0.17662197,0.14921993,-0.06698877,-0.24292946,0.33195433,0.2580609,0.6732164,0.020768324,-0.28094998,-0.321338,-0.07340849,0.29678032,-0.29363295,-0.0435534,-0.38842452,0.01721071,-0.53746897,0.5414365,-0.051471017,-0.34774545,0.22843768,-0.27236184,-0.07421206,0.6606013,0.08223081,-0.06672358,0.09105183,-0.22482924,-0.47022927,0.08280266,-0.32127586,0.26762554,0.27422565,0.046559557,-0.08347368,-0.26957008,-0.23259714,0.6098746,0.063516386,0.4678552,0.19980131,0.027868723,-0.21256405,-0.018478941,0.20731373,0.3033772,0.046427734,0.09574381,-0.24932715,-0.19167048,-0.29167327,0.17194675,-0.21495344,0.22691627,-0.013951619,-0.43713775,0.7063058,-0.11494715,1.0846697,0.10016076,-0.2832627,0.055040836,0.44720206,-0.09956291,0.05635976,-0.40715045,0.775834,0.5909042,0.05871513,-0.08680759,-0.46377137,-0.31976274,0.23999391,-0.25368232,-0.11337783,-0.06164274,-0.50307244,-0.46773857,0.3050262,0.18882065,0.04722227,0.04550722,-0.09306741,-0.10584817,0.08928274,0.47386876,-0.6249927,-0.19552751,0.20047665,0.19227369,-0.001072673,0.17376593,-0.40000182,0.47468546,-0.59562,0.16559713,-0.38260263,0.10872249,-0.18265344,-0.20719437,0.06131177,-0.06508986,0.4103703,-0.1414725,-0.5036482,-0.08985733,0.4631912,-0.004686197,0.2376079,0.6425953,-0.19434084,0.15715493,0.038175385,0.55751395,1.0778888,-0.36427853,-0.08789599,0.28611076,-0.35512605,-0.5146166,0.33029646,-0.39111435,-0.1056601,-0.043684233,-0.33615762,-0.29693416,0.25243917,0.20926395,0.02187601,-0.009842966,-0.53182006,-0.061251976,0.21893086,-0.1962529,-0.25087395,-0.16895097,0.4132875,0.9288822,-0.40988192,-0.15391459,0.00688556,0.23902546,-0.25106138,-0.4446963,-0.14409715,-0.2266633,0.25451475,0.16671865,-0.19416457,-0.039424334,0.17952962,-0.3135471,0.07377473,0.2824224,-0.34577507,0.099878475,-0.03832803,0.03507317,0.8641666,-0.042942405,-0.16333039,-0.629095,-0.36266187,-0.8252491,-0.41294,0.34449422,0.2560697,0.037095904,-0.24355395,0.0823691,-0.081705585,-0.32550856,0.08009221,-0.6654307,0.3376028,0.08195004,0.40136483,-0.2135609,-0.8205396,-0.001492091,0.1434506,-0.08942084,-0.6472893,0.62345356,-0.14227273,0.9639463,0.027194027,-0.17009005,-0.045464437,-0.29819712,0.029364133,-0.40772197,-0.20187283,-0.7905384,0.115763,219 -165,0.46396032,-0.028424108,-0.4562451,-0.051207226,-0.3824275,0.23027182,-0.18673912,0.24976854,0.19311617,-0.5364796,-0.29557985,-0.036791388,-0.16514502,0.21314281,-0.33027703,-0.7521593,0.20611049,0.20647958,-0.49940977,0.8438704,-0.37680307,0.5845743,-0.01387341,0.28760165,0.28522858,0.3226347,0.232205,0.07175209,-0.24016924,-0.4993042,-0.1374301,0.03752614,-0.43841296,0.34004393,0.09513478,-0.2511351,-0.09069262,-0.22760174,-0.49757677,-0.83716893,0.24679498,-0.6804923,0.34254113,-0.25058097,-0.3232261,-0.14574821,0.25403014,0.18910481,-0.055010375,-0.021326503,0.083583914,-0.13831525,-0.097364545,-0.15647644,-0.370007,-0.49135888,-0.53059834,0.031048452,-0.30244774,-0.20656414,-0.34460795,0.32846153,-0.3970043,0.04826165,-0.020710716,0.55747145,-0.3148276,0.10327484,-0.11221932,-0.32782832,-0.03579246,-0.75195515,-0.22955796,-0.045157187,0.07717004,0.061691985,-0.18761393,0.19638237,0.35897085,0.36264464,0.08640884,-0.1062746,-0.3337642,-0.32699972,0.49737853,0.596503,-0.18082584,-0.42008108,-0.26568773,-0.20017451,0.33321348,-0.0031917205,0.2002224,-0.48958817,-0.040426604,-0.20094791,-0.30033252,0.29391935,0.6037951,-0.36191544,0.03850485,0.25160268,0.39159358,0.1596479,-0.4331468,0.20306748,-0.19121146,-0.31659186,-0.095261335,0.109802164,0.03554887,0.55732274,-0.15206808,0.17416093,0.40514043,-0.11196112,0.15670124,-0.09310099,-0.056950934,0.08831259,-0.24935447,-0.12143186,0.13710727,-0.37162825,0.037685324,-0.40271178,0.88637775,-0.04452447,-0.66217506,0.4965023,-0.39138192,0.14495154,0.014158007,0.5020971,0.59222144,0.372841,0.046733234,0.67676586,-0.19517273,0.062355343,0.05190242,-0.2659572,-0.13161702,-0.0861992,-0.098360375,-0.3536258,0.22976047,-0.06900223,0.03386752,-0.009414049,0.6650128,-0.41582102,-0.20395343,-0.04482764,0.83924854,-0.28898284,-0.029908499,0.86490536,1.0364833,1.0721986,0.011974999,1.1788409,0.28273648,-0.032271657,-0.33956414,-0.022040384,-0.5115187,0.19185203,0.36353308,0.36003006,0.135107,0.15362413,-0.13941802,0.5402834,-0.33455077,-0.081627205,-0.21694139,0.21119596,0.25172976,-0.04051151,-0.41416022,-0.13702084,0.3147799,0.025245396,0.21431182,0.24256007,-0.23451479,0.55898416,0.030521138,1.4154836,-0.099471234,0.017929252,0.15145025,0.4290207,0.20422077,-0.2951825,0.23666248,0.033383302,0.33576208,-0.18367842,-0.4829423,0.01994323,-0.2554227,-0.59677315,-0.15899996,-0.25831354,-0.30533588,0.08650506,-0.36545673,-0.22281574,0.0815387,-0.34159192,0.39986983,-2.523996,-0.047891498,-0.32621846,0.14067006,-0.16970558,-0.38761088,-0.060712464,-0.4338296,0.5937766,0.35883036,0.46333104,-0.498077,0.44226012,0.59235674,-0.35575658,-0.02683876,-0.6216879,-0.027382493,-0.043096583,0.61031914,6.0071547e-05,0.06342357,0.045838952,0.20108317,0.5436493,-0.06353197,0.11450221,0.4344255,0.27300066,-0.016475866,0.3642694,0.09206942,0.5234814,-0.11587699,-0.05716356,0.47281238,-0.4868822,0.22812858,-0.12336237,0.16174327,0.46065363,-0.53036976,-0.5936514,-0.67987376,-0.43090123,1.1714157,-0.21646614,-0.7049552,0.32375115,-0.086090155,-0.3458786,0.017319314,0.44110107,-0.26577497,-0.12388771,-0.5378908,-0.056916498,-0.15182854,0.25272515,-0.28390232,-0.0688962,-0.34072846,0.7352262,-0.21566851,0.50469536,0.35414663,0.39281768,-0.16523752,-0.5041554,0.021865701,0.94841933,0.4378827,0.09208783,-0.25712377,-0.15577438,-0.38353282,-0.25759855,0.019675342,0.78506786,0.5169181,0.03463012,0.06829764,0.30360717,-0.023859108,0.033368252,-0.23112823,-0.3543545,-0.24690233,-0.026789118,0.7272132,0.513147,0.050860036,0.48265335,-0.023776107,0.23548119,-0.3165582,-0.51084447,0.29878706,0.9431948,-0.26215446,-0.3947196,0.5611,0.40128183,-0.3743226,0.30309758,-0.6212482,-0.20207453,0.43787745,-0.20760845,-0.50412405,0.30305925,-0.3561716,0.069123395,-0.59426063,0.47565052,-0.31149086,-0.63136756,-0.5557764,-0.17913264,-3.1936357,0.21175243,-0.05851375,-0.28413442,-0.18031155,-0.25139344,0.3182369,-0.36313325,-0.43991432,0.1510975,0.08137922,0.5153588,-0.08689202,-0.01585528,-0.2704673,-0.14343664,-0.28141546,0.26306224,0.06806413,0.38998276,-0.3466732,-0.2624741,-0.07449032,-0.16806348,-0.50263554,0.024019,-0.49387679,-0.6427359,-0.08491732,-0.23868555,-0.19807339,0.72387534,-0.60874057,0.22646593,-0.32433003,-0.13406944,-0.32044798,0.113769926,0.15015243,0.37323385,-0.057046197,-0.10944681,-0.074098505,-0.34291127,0.16967297,0.13693167,0.16387157,0.47517517,-0.13192046,0.04047451,0.2418347,0.641035,0.04352938,0.93444085,0.23417552,-0.09082731,0.37894595,-0.14516692,-0.3929554,-0.46939686,-0.22324012,0.1079436,-0.35544804,-0.4175264,-0.23618123,-0.32823223,-0.679462,0.40597638,0.10992167,0.20729908,-0.057686437,0.24848267,0.29325646,-0.05956522,-0.09752851,0.088025205,-0.01715653,-0.4434906,-0.4106193,-0.66552734,-0.58014774,0.06056842,0.836591,0.035133798,-0.08469764,-0.019070577,-0.3888344,0.106584705,0.23799849,0.19587846,0.095654756,0.17208584,0.015826115,-0.8294353,0.6337312,-0.1870708,-0.09788031,-0.4896821,0.29865804,0.6483822,-0.43893433,0.37336165,0.23676194,0.17808002,-0.26086205,-0.7114157,-0.023729015,-0.0828359,-0.33894876,0.41253433,0.30124134,-0.8111394,0.4531155,0.23328832,0.10516513,-0.742473,0.4928769,0.06428067,-0.33841372,0.12339713,0.41469574,0.008608985,-0.12648405,-0.23282126,0.2262622,-0.39872205,0.25736544,0.1758324,-0.072345115,0.23239245,-0.243687,-0.42465687,-0.6508944,-0.045664653,-0.6314069,-0.28617442,0.0917052,0.1442242,0.13376872,0.19702831,-0.047798123,0.5256918,-0.24113274,0.18666926,-0.17559035,-0.17392384,0.4310541,0.46692345,0.41962153,-0.3529725,0.62998605,0.12566204,0.04171959,0.17221397,0.21892907,0.39937314,0.034258984,0.51193994,-0.08552892,-0.028797295,0.16903517,0.89337784,0.35187066,0.5967006,0.106850006,-0.4504982,0.24900793,0.09508861,0.35322112,-0.011770261,-0.5747279,0.018715767,-0.092794925,0.1424584,0.5143075,0.068277635,0.48589474,-0.15417223,-0.17758904,0.0750979,-0.016276104,-0.041404437,-1.1734607,0.25464714,0.09542256,1.0131663,0.4607317,-0.039547935,0.019612677,0.58645767,-0.183361,0.07346468,0.11893572,0.054233536,-0.33747754,0.41102177,-0.49404854,0.32616788,-0.04658664,0.09114682,0.17552516,-0.12325538,0.34196573,0.7304072,-0.17772852,0.12405857,0.029753463,-0.2958473,0.048192415,-0.35810655,0.33217773,-0.4500597,-0.43115997,0.5168864,0.47018102,0.3568362,-0.091199145,0.029922538,0.08287049,-0.1627594,0.10073226,0.044448037,0.09235919,-0.31513456,-0.49971488,-0.4306566,0.48584563,-0.2371776,0.01926751,0.22228962,-0.30731228,0.19809695,0.061302055,0.041526306,0.11311893,-0.54610544,0.13588518,-0.21637577,-0.4614345,0.25189397,-0.32507792,0.2662011,0.23542625,-0.049574018,-0.34166852,0.2690663,0.26655972,0.6008677,0.067927875,-0.043844353,-0.24501298,-0.052671585,0.22487508,-0.26936668,-0.16430697,-0.16097355,0.16730784,-0.6610492,0.1900451,-0.23021694,-0.25062054,0.15525128,-0.07151111,-0.121330306,0.4281966,-0.052298483,-0.11330464,0.21295144,0.1527729,-0.09196413,0.022189872,0.047758643,0.10897306,0.038913567,-0.14415956,0.16104473,0.03310571,0.046414737,0.16130893,-0.020700479,0.44625705,0.6172343,-0.07592199,-0.48563337,0.013269135,0.11436629,0.57572246,-0.020839827,0.15963253,0.04661649,-0.637397,-0.4153028,0.45225522,-0.11029549,0.34206852,0.04610199,-0.48005685,0.6366399,0.110754155,1.0192579,-0.06855216,-0.50447476,0.08107669,0.6047333,-0.032234237,0.16920573,-0.22410072,0.87675756,0.46474153,-0.23392633,-0.1281853,-0.33718804,0.031766172,0.15396217,-0.23872589,-0.21235725,-0.069123186,-0.5155709,-0.10468694,-0.08842018,0.18193588,0.010991494,-0.04819614,-0.00914348,0.3509306,0.08275927,0.45956993,-0.55616766,0.03618037,0.3943285,0.105873145,-0.1888812,0.05973722,-0.33994046,0.2010382,-0.6917195,0.19789605,-0.27047622,0.15666743,-0.09318926,-0.21243878,0.333212,0.008877691,0.35091415,-0.43768245,-0.25533807,-0.29836228,0.5259412,0.16165036,0.2675886,0.52776974,-0.11443115,0.17928581,0.16436462,0.5923042,1.2094007,-0.1640141,-0.021630954,0.32482332,-0.5319062,-0.4981705,-0.02344648,-0.3654054,0.1790871,0.01942294,-0.41301638,-0.4238739,0.22463042,0.36176726,-0.019869965,0.02903638,-0.60468185,-0.33376947,0.11181902,-0.26089233,-0.22994722,-0.28616437,0.072404996,0.5041385,-0.3203062,-0.33186787,-0.20613053,0.3181935,-0.36505497,-0.7453758,-0.029435333,-0.1874375,0.28659394,0.12917885,-0.46664187,-0.2033856,0.13944507,-0.44740772,-0.17666827,0.25380656,-0.36705574,0.019015452,-0.18145679,-0.02722718,0.7159968,-0.1352013,0.19624124,-0.70432156,-0.61596227,-0.72053665,-0.674204,0.22212261,0.21042894,-0.005197525,-0.5589374,-0.28713557,-0.47283158,0.03019685,0.08937943,-0.34137726,0.5490121,0.22800322,0.3599596,-0.17221406,-0.9394793,0.3061712,0.1634823,-0.19469446,-0.44902405,0.3855589,-0.0078666685,0.61774707,0.21751699,0.12049413,0.04097299,-0.5879008,0.3317226,-0.15541786,-0.29520464,-0.7218235,0.30168286,232 -166,0.28470543,-0.17640413,-0.78717494,-0.10878257,-0.1242002,0.29949385,-0.20407304,0.2783461,0.07747033,-0.38444453,0.034542553,0.006651016,-0.2533768,0.1968601,-0.12056172,-0.545797,-0.109665506,0.1657086,-0.46027118,0.24250032,-0.31212988,0.45271444,-0.13368247,0.12589069,0.08757774,0.19897082,0.13319692,-0.058261085,0.09274337,-0.16029955,0.11914904,0.20252892,-0.3206285,0.16996591,0.008266251,-0.4241691,0.04086044,-0.25639495,-0.43295607,-0.61574286,0.3991663,-0.6954459,0.5314446,-0.023583507,-0.21968265,0.17501268,0.17608365,0.27503058,-0.18689585,0.15712614,0.31201372,-0.33714467,-0.1135483,-0.26190895,-0.26484662,-0.5081204,-0.523797,-0.07156319,-0.6392745,-0.04008813,-0.29193485,0.18351766,-0.4579064,-0.10425165,-0.26690763,0.2853679,-0.40613118,-0.1985027,0.17601389,-0.20187894,0.048666842,-0.6184655,-0.091933556,-0.047763087,0.12230158,-0.14158902,0.027655888,0.29339898,0.04664019,0.54083335,0.010239506,-0.12395649,-0.45019096,-0.040569585,0.121298485,0.61607337,-0.14066587,-0.10225764,-0.13574658,0.06877355,0.38549182,0.24892338,0.032566447,-0.12874159,-0.16759318,0.08605189,-0.09392593,0.3406622,0.5052544,-0.3693022,-0.03263081,0.5337729,0.6024639,-0.027562078,-0.26099625,0.2355562,-0.13373007,-0.25998342,-0.099325806,0.022012753,-0.027097825,0.38378507,-0.0075699897,0.24604368,0.5297681,-0.23798244,-0.022236379,0.109838046,0.11143646,0.006300479,-0.07593964,-0.17296672,0.35841018,-0.37234345,0.11344695,-0.19537042,0.71794814,0.028202975,-0.6266512,0.30212632,-0.4272534,0.12569708,0.08587435,0.66569704,0.5905176,0.6076666,0.116565034,0.93255436,-0.44252843,0.09087376,-0.062053394,-0.35622215,0.055830535,-0.04600331,-0.22184815,-0.41541427,0.20798811,0.06594263,0.06812227,0.14808173,0.48584637,-0.41711158,-0.07192095,0.22744457,0.7023086,-0.37067643,-0.07204261,0.48845354,0.9358968,0.96095717,-0.06356453,0.83419734,0.14490916,-0.23886085,-0.13779025,-0.31525248,-0.62214744,0.23582825,0.39623636,0.22767237,0.33652133,0.09337652,-0.1272666,0.34551474,-0.43064645,-0.11161695,-0.04745508,0.15045601,-0.007960963,-0.21990258,-0.49004167,-0.06386747,0.22429778,-0.09274049,0.17419717,0.34339255,-0.33566156,0.15587799,0.008691891,1.2629489,-0.17579886,0.18778619,0.34045163,0.47994512,0.195024,-0.21834679,0.083028674,0.27357033,0.37468728,-0.05015668,-0.56870544,0.112356976,-0.40795848,-0.61186755,-0.24821006,-0.2717846,-0.27102834,-0.06079115,-0.46657932,-0.21170187,-0.10891546,-0.5020856,0.3128899,-2.6469307,-0.030651916,-0.13386227,0.31777295,-0.20219675,-0.29012725,-0.13292466,-0.44426885,0.276828,0.32714203,0.4394458,-0.4302454,0.45415947,0.55138546,-0.44220045,-0.057201665,-0.5349046,0.040012456,-0.15602039,0.30507725,0.08894225,-0.27398303,-0.028193004,0.16936609,0.4003772,-0.229133,-0.03822184,0.34719786,0.42638594,-0.02352916,0.38699895,0.12790416,0.5969822,-0.41468623,-0.15634441,0.45649242,-0.5911049,0.2139756,-0.20114276,0.087453336,0.36335322,-0.32328802,-0.8854818,-0.42485613,-0.080674075,1.5222336,-0.3075873,-0.3276116,0.13557082,-0.095839374,-0.21284883,-0.16956684,0.41978258,-0.16266803,-0.07195706,-0.69556147,-0.1027081,-0.23533298,0.37187776,-0.11050524,0.038091976,-0.5377122,0.53886694,-0.10175007,0.73407453,0.30493024,0.29571617,-0.23726253,-0.35180613,0.028943414,0.92052513,0.5136995,0.08713094,-0.22630152,-0.17183489,-0.15614451,-0.13943478,0.24243125,0.41301593,0.62480956,-0.0054199123,0.10228743,0.27642685,0.064233415,0.12560086,-0.22314383,-0.31001222,-0.13586134,0.20868868,0.49832523,0.31864217,-0.006627713,0.26707596,0.058639415,0.23329407,-0.3573057,-0.30193248,0.247746,0.84100837,-0.058919646,-0.41754228,0.5556891,0.4380516,-0.1627712,0.45523053,-0.74540955,-0.41936874,0.4551459,-0.34683415,-0.31213933,0.24120201,-0.4269868,0.05056459,-0.677991,0.1741016,-0.3087911,-0.62718886,-0.60787976,-0.2747405,-2.8905325,0.03916943,-0.21714352,-0.1114145,-0.03816106,-0.0069062533,0.2514939,-0.5233996,-0.5878378,0.0010829131,0.21700399,0.6338833,-0.061689522,0.06143129,-0.3438148,-0.3980709,-0.22069822,0.30939502,0.074171335,0.20788537,0.0875919,-0.42155656,0.0016326885,-0.17341705,-0.2587784,-0.054009233,-0.27672532,-0.20705755,-0.06992369,-0.3714512,-0.0971174,0.6334678,-0.44484407,0.10685594,-0.17639299,0.046583414,0.09585988,0.110300794,0.11808094,0.11909372,-0.018467171,-0.23812263,0.20500161,-0.3531114,0.3783953,-0.006331881,0.40163797,0.47078463,-0.23788638,-0.11498859,0.466931,0.5685599,-0.06166708,0.8479508,0.3387002,-0.036858402,0.34380785,-0.15144348,-0.23533887,-0.61020344,-0.29613742,0.08134689,-0.39258018,-0.51978344,-0.0021312237,-0.44365877,-0.99166477,0.41620165,-0.15535338,0.36327857,-0.15485384,0.5023037,0.41150194,-0.08290434,-0.11721253,0.031730868,-0.05497625,-0.116739325,-0.40188745,-0.77333367,-0.37595853,0.08935841,1.2602541,-0.2496658,-0.022957465,0.16767244,-0.051909957,0.05058919,0.20020464,0.29787543,0.22306105,0.4147608,0.03281695,-0.5711251,0.39308882,-0.35951844,-0.069789335,-0.58491653,-0.0039667767,0.44793063,-0.69250417,0.29134962,0.33002388,0.17271627,-0.08606405,-0.788256,0.112229064,0.15974645,-0.2025273,0.40022582,0.21142222,-0.6409208,0.4162982,0.11622175,-0.24647762,-0.6122019,0.46287313,-0.09925385,-0.21562876,-0.0009325504,0.3705515,-0.03898047,-0.16890854,-0.17334332,0.29882076,-0.32832256,0.3996257,0.20706984,-0.18793513,0.30839697,-0.3408651,-0.15590926,-0.52686465,0.11674559,-0.5631819,-0.20375958,0.22169909,0.037774023,0.17198819,0.21736088,-0.10054379,0.51940787,-0.23915316,0.026956078,-0.22818384,-0.3524937,0.58948547,0.40797287,0.32393977,-0.36557177,0.59098226,0.0658387,-0.26113755,-0.019426137,0.13454498,0.59709144,-0.073261306,0.3828718,-0.08657071,-0.119757615,0.30550918,0.8074688,0.38928756,0.34678805,0.03020835,-0.23601493,0.080371074,0.14000215,0.004744323,-0.24902971,-0.4707906,-0.1331247,-0.015623859,0.16867971,0.42966917,0.19561659,0.5549169,-0.16949062,-0.15530552,0.27806103,0.1417358,-0.24611592,-0.8873686,0.19522022,0.024691964,0.779863,0.32527217,0.22163287,0.057882324,0.39982608,-0.22831352,-0.077817634,0.37568787,0.016640948,-0.38033357,0.5036279,-0.5789039,0.54596794,0.07502739,-0.092303656,0.25543132,0.034667816,0.5041408,0.72613853,-0.025923936,0.06437311,-0.057249904,-0.2836676,0.12923978,-0.19736841,0.19354804,-0.48734948,-0.14683597,0.69395226,0.39129123,0.3011258,-0.096452355,-0.04257857,-0.0087764505,-0.17035231,0.09538791,-0.117324635,0.18366115,-0.22236064,-0.3554222,-0.1898771,0.43832314,0.17849536,-0.076493315,0.08263065,-0.26713523,0.26250848,-0.029705977,0.24424037,-0.021780616,-0.5063179,0.13725513,-0.23828974,-0.4917202,0.28830782,-0.07592388,0.3764449,0.2543287,-0.035131466,-0.33301672,0.24533674,0.16909125,0.7258821,-0.20998931,-0.08972193,-0.42560098,0.21111552,0.19605647,-0.16511849,-0.114026345,-0.31568825,0.33004034,-0.7116423,0.3383733,-0.27862585,-0.19299155,0.15149869,-0.25322422,-0.22684254,0.62103397,-0.1509829,-0.123029105,0.08227881,-0.086484484,-0.35167965,-0.20543489,-0.21447681,0.06039796,-0.08922829,-0.048791487,-0.23969859,-0.09697025,0.048285127,0.245631,-0.0070733787,0.05085997,0.3474668,0.006240467,-0.4811557,-0.019968254,-0.0038100402,0.54531705,0.0013861308,0.05180725,-0.35907593,-0.61348635,-0.28049672,0.37060836,-0.19765472,0.38731977,0.1320587,-0.29005557,0.77421683,0.041118015,0.99327344,0.016350541,-0.35042438,-0.021068756,0.7512263,0.094610214,-0.01565414,-0.2580741,0.9766262,0.772428,-0.06421723,-0.28555447,-0.21191254,-0.073317446,0.10109145,-0.27040094,-0.28219846,-0.0032770515,-0.7078964,-0.25040707,0.28193057,0.24213041,0.1379352,-0.17271315,0.069568366,0.33160397,0.13055517,0.21714608,-0.54948765,-0.3317905,0.24819939,0.13673387,-0.08069816,0.04328393,-0.5786897,0.29704645,-0.73753047,-0.15313,-0.12392448,0.16492696,-0.04490731,-0.25553012,0.3106332,0.0041222214,0.18708095,-0.35294256,-0.288384,-0.026357826,0.33891025,0.053086367,0.27803296,0.6269273,-0.25343728,0.032706253,-0.021721203,0.38397944,1.0172651,-0.17372999,-0.01353031,0.41952762,-0.45200184,-0.7740679,0.09170539,-0.5321132,0.17193201,-0.15405177,-0.42199183,-0.3842765,0.4152569,0.14403208,-0.05570082,0.14678206,-0.53982705,-0.121815644,0.10436908,-0.32016394,-0.26151913,-0.32759514,-0.077499524,0.78546894,-0.3548107,-0.22212045,0.06998459,0.5402527,-0.16267401,-0.69393665,0.16180474,-0.28725567,0.4164817,-0.04015435,-0.27937022,-0.104940034,0.011156362,-0.30902207,0.22382693,0.5389088,-0.29849568,-0.060391083,-0.3728206,0.10909427,0.62119967,-0.09402685,0.033281468,-0.5258259,-0.32962286,-0.99036723,-0.25443578,0.40436438,0.16673717,0.018084506,-0.6377302,0.05032695,-0.33985406,-0.1546653,-0.101490095,-0.406763,0.31692493,0.12750891,0.32090554,-0.27416185,-0.7619258,0.09872934,0.045970622,-0.4644876,-0.3788782,0.49603257,-0.1240226,0.7673367,0.1131797,0.022418195,0.27289248,-0.6572463,0.35386315,-0.21843545,-0.1376672,-0.6714496,0.01798438,233 -167,0.61866033,-0.23643894,-0.5249493,-0.18828715,-0.16143212,0.21911615,-0.25643674,0.54515004,0.14392227,-0.4555312,-0.096369475,-0.07253068,0.10592054,0.24619088,-0.26086476,-0.5677882,-0.020114804,0.22309045,-0.525815,0.53552055,-0.43271643,0.30569795,-0.044127353,0.30593273,0.177908,0.19448848,0.024898732,-0.123511225,-0.20986198,-0.29038128,-0.05221647,0.2677888,-0.6053692,0.10187168,-0.21027957,-0.33904532,-0.034426387,-0.5829216,-0.4143965,-0.71557045,0.31414637,-0.8820573,0.76781255,0.14617644,-0.22224715,0.17467256,0.16724467,0.3562125,-0.23023213,0.19060175,0.17862916,-0.046185143,-0.02103247,-0.260501,-0.1919982,-0.39535505,-0.57823485,0.0041970434,-0.48090312,-0.14852537,-0.08667914,0.0645525,-0.1653998,0.033263173,-0.12398626,0.4549844,-0.43045262,0.1364541,0.14380963,-0.10412644,0.2148394,-0.5447286,-0.18378049,-0.07118512,0.41960162,-0.27105415,-0.16188407,0.24448845,0.0863117,0.549591,-0.14022085,-0.09738455,-0.28185895,-0.107174166,0.015239843,0.6219837,-0.31559843,-0.5170764,-0.14534919,0.016498279,0.30871153,-0.0013207357,0.10716348,-0.22035953,-0.09386177,-0.06382571,-0.29405603,0.43046108,0.5928031,-0.43750387,-0.14581934,0.35002455,0.39033386,0.1268654,-0.092074774,0.03173187,0.077965036,-0.5897969,-0.19272622,0.1973797,-0.13195974,0.5114614,-0.0050898395,0.22046134,0.44533673,-0.17445211,0.1130179,0.14318416,-0.005980104,0.17306465,-0.1383806,-0.47889546,0.07346959,-0.44460496,0.014113605,-0.2520548,0.6979884,0.2682486,-0.7938414,0.43356723,-0.517764,0.0577883,-0.057190914,0.40985125,0.5245767,0.4744757,0.074623264,0.62818545,-0.31601664,0.09882038,-0.13382135,-0.23130907,0.08019764,-0.09323442,-0.03383577,-0.47293612,0.09523725,-0.029750992,-0.157027,0.2211106,0.4974221,-0.4943101,-0.110241644,0.11697518,0.873757,-0.25407463,0.010629114,0.7765165,1.1011833,0.8730004,-0.02020183,1.1754903,0.22823213,-0.26561812,0.10084381,-0.25485164,-0.6846463,0.27427927,0.30369872,-0.38235226,0.37123197,0.027645051,-0.1390786,0.25792256,-0.38268933,0.01745825,-0.11368405,0.09526213,0.08970984,-0.0700938,-0.3678437,-0.2510267,-0.17527314,-0.064472266,0.16392761,0.2167448,-0.4225991,0.2882281,0.090849005,1.6166921,-0.07533514,-0.027009146,0.0104905125,0.5272041,0.23673372,-0.0743037,-0.06733413,0.28061664,0.3981103,0.0633439,-0.60000324,0.06329742,-0.1229145,-0.34972534,-0.18013859,-0.2824699,-0.16464825,-0.018888699,-0.56347346,-0.13442205,-0.04535873,-0.16575636,0.36181983,-2.7221856,-0.15712382,0.042313766,0.5115306,-0.23132913,-0.44147202,-0.3093282,-0.46732056,0.438934,0.19469087,0.44671077,-0.5964454,0.5624899,0.37578917,-0.41611528,-0.17311668,-0.6201647,-0.12940629,-0.013847562,0.28542766,-0.0804085,-0.091518484,0.15300183,0.29343235,0.43160692,-0.06733228,0.13819432,0.19201145,0.4351157,0.12891617,0.42765948,-0.06144208,0.55676633,-0.2492525,-0.16293877,0.33754852,-0.37492234,0.17334741,0.012750228,0.091654494,0.3264826,-0.6191406,-0.9053707,-0.713116,0.051510468,0.97648466,-0.16169557,-0.38654816,0.1629596,-0.21086283,-0.4269187,-0.08290536,0.5356811,-0.08834114,-0.13203979,-0.775149,0.006759724,-0.019098807,0.15959153,-0.028297504,0.14722678,-0.4955214,0.5098363,-0.048457213,0.54732805,0.30169278,0.18836555,-0.12110582,-0.44071314,0.043616433,1.1340705,0.37500098,0.21963397,-0.15386073,-0.18584153,-0.37440175,0.051558517,-0.12064004,0.634612,0.6818334,0.0050596874,0.07680747,0.19482088,-0.046659242,0.22442462,-0.13024633,-0.34014866,-0.16339378,0.08497106,0.60993356,0.43420404,-0.14897838,0.46180135,-0.044081114,0.31764603,-0.2372341,-0.36405823,0.38631335,0.99856335,-0.21191,-0.20202726,0.58087504,0.43423113,-0.26739958,0.4194783,-0.59227806,-0.35131946,0.2709966,-0.2630729,-0.24918829,0.49157944,-0.2887705,0.21371849,-0.888188,0.32289934,-0.34211776,-0.30439112,-0.36212933,-0.17780064,-3.1089325,0.060730346,-0.082928665,-0.11750063,-0.15521605,-0.18762021,0.21428385,-0.55866605,-0.5284674,0.07713813,-0.009588377,0.6875174,-0.09528207,0.114756145,-0.27450284,-0.32679695,-0.30572554,0.22701469,0.07538711,0.42311853,-0.0052197594,-0.42035535,-0.08803382,-0.17227899,-0.24212892,0.09633031,-0.6482985,-0.45968297,0.019825177,-0.519037,-0.24493913,0.6349994,-0.27688923,0.08223891,-0.1730552,0.022769092,-0.14733616,0.27821338,0.065292105,0.16337961,0.039477088,-0.11952081,0.06046046,-0.25660738,0.34497344,0.09336219,0.22663005,0.37207827,-0.07916193,0.073766164,0.42396563,0.4801869,-0.10442998,0.81288683,0.44598275,-0.17471042,0.19979021,-0.3286112,-0.23618014,-0.37408683,-0.33775777,-0.04805025,-0.43252915,-0.48997343,-0.2211557,-0.4069986,-0.76393473,0.48751196,-0.14401348,0.046028648,0.024604466,0.35700002,0.48478395,-0.04415379,0.08783611,-0.057375953,-0.089620255,-0.4514361,-0.18334574,-0.5873229,-0.29792735,0.11761169,1.0055187,-0.17122044,-0.021048455,0.10501349,-0.16111363,0.021950781,0.08808816,0.02370129,0.090692185,0.5389925,-0.08502516,-0.62542796,0.3919841,-0.25014317,-0.33969882,-0.49372882,0.23128563,0.54366666,-0.6292665,0.5282636,0.418894,0.113701105,-0.12733412,-0.38720843,-0.12612054,0.14567041,-0.20912199,0.3498933,0.1462836,-0.7386618,0.4105533,0.27293926,-0.27706397,-0.65421677,0.60137546,0.0918033,-0.4233807,0.019251687,0.31922492,0.1413119,-0.04573626,-0.2112744,0.2536958,-0.5135774,0.3345559,0.1515612,-0.08733619,0.26838124,-0.2112573,-0.16712144,-0.7090793,-0.04355202,-0.46336308,-0.4167098,0.24906088,0.12296032,0.2018296,0.19577266,0.075647764,0.4493718,-0.4967752,0.07651194,-0.059885774,-0.24008557,0.4999646,0.28506088,0.47623184,-0.38092646,0.4507206,-0.13178448,-0.1384997,0.14261284,0.11629566,0.50007015,0.059629984,0.25285777,0.025124613,-0.19066706,0.36945036,0.665729,0.28447506,0.32603768,0.12256865,-0.18671516,0.21819106,0.088082895,-0.01599931,0.07729652,-0.40638202,-0.14473216,-0.051443946,0.1113993,0.38903373,0.21496102,0.2491142,-0.1593511,-0.275959,-0.024525246,0.19635044,-0.1530948,-1.230868,0.3678611,0.026734272,0.66754967,0.4502477,0.03363333,0.027487481,0.50906885,-0.17689861,0.09688163,0.29161713,0.028891897,-0.4261239,0.49150264,-0.45341733,0.45618263,-0.08967934,0.013583059,-0.04496712,-0.06841009,0.45060632,0.8118432,0.00088392023,0.18434699,0.09597126,-0.29890347,0.09476611,-0.36264548,0.012066706,-0.62029266,-0.13951588,0.73424894,0.407587,0.3847416,-0.17172284,-0.007073897,0.07477499,-0.15303564,0.117879786,0.18448733,0.11953318,0.01929662,-0.74519914,-0.11573254,0.60878533,-0.33175096,-0.054146387,-0.023556137,-0.32615665,0.30413148,-0.1777597,0.11699905,-0.08419573,-0.63691956,-0.07752557,-0.6194095,-0.31449005,0.4181698,-0.17048372,0.108140625,0.25294787,0.052541148,-0.33193308,0.3472646,0.20161733,0.6017775,-0.03152938,-0.22276989,-0.45647606,0.12058341,0.19085659,-0.24903777,-0.08959874,-0.3004772,0.2372642,-0.5964757,0.3371788,0.008439723,-0.23284525,0.020104071,0.013827366,0.1911499,0.5449535,-0.24408334,0.0040034573,0.12491004,-0.07126602,-0.32993424,-0.1741795,-0.27843124,0.109210625,0.36363927,-0.034177255,-0.034438156,-0.1200696,-0.08872043,0.44833165,0.11651315,0.6005971,0.5417922,0.24624777,-0.25842008,-0.1407709,0.09492746,0.549353,-0.003961722,0.015640628,-0.4719654,-0.4751159,-0.24692819,0.31027073,-0.26418427,0.22614048,0.1454491,-0.15182301,0.7931656,0.031764634,1.067427,0.034895133,-0.3348692,0.086341925,0.51791275,-0.042036705,-0.06596263,-0.41372985,1.0754244,0.5629017,0.03525187,-0.024590569,-0.25771052,-0.15496634,0.048159447,-0.18513349,-0.2115188,-0.12001983,-0.6156127,-0.4075777,0.20793696,0.25353935,0.25758517,-0.17172052,0.25683448,0.20788985,0.043062653,0.06994519,-0.55938953,-0.19116326,0.3516021,0.25837976,-0.014964261,0.12511542,-0.4679028,0.30370635,-0.4350301,0.0024847507,-0.23460563,0.122626886,0.10186215,-0.30854887,0.22194748,0.018534418,0.24012947,-0.4147787,-0.29204887,-0.15735964,0.41482002,0.020689217,0.13354158,0.6054203,-0.19182462,0.059335895,0.0031145096,0.644463,1.214638,-0.12586649,0.08132924,0.51271904,-0.3302084,-0.6241924,0.13926066,-0.30707338,0.11001615,-0.03376399,-0.12207409,-0.65317726,0.32599592,0.1246572,0.0103978515,0.0058217626,-0.5864367,-0.31691507,0.421744,-0.32559434,-0.25115865,-0.32678065,0.09715922,0.7796974,-0.28427985,-0.18433253,0.12600069,0.36812267,-0.24515203,-0.5866954,-0.006842742,-0.41515407,0.25513905,0.26670164,-0.15251406,-0.21583298,0.045049675,-0.35105243,0.17095813,0.26029807,-0.39671654,0.07695187,-0.41731772,-0.07158079,0.92536205,-0.20162134,0.039347198,-0.43850234,-0.48061046,-0.8837941,-0.34791845,0.33334407,0.22693805,0.05972944,-0.6455712,-0.0031017805,-0.17734791,-0.32097843,-0.18552312,-0.31973717,0.4800366,0.037848677,0.29577217,-0.19992712,-0.7862895,0.1881316,0.14608933,-0.46474984,-0.60608155,0.59654045,0.102050275,1.083023,0.07205329,0.034898933,0.45453408,-0.54487234,-0.099681094,-0.2512886,-0.051496625,-0.7591375,0.15119423,235 -168,0.44735798,-0.25732672,-0.39130914,-0.100416474,-0.29813108,0.16214289,-0.10766074,0.5601056,0.19205491,-0.24233967,0.012071016,-0.19015245,-0.05572181,0.43342447,-0.06404069,-0.4361613,-0.023567624,0.1426099,-0.6970082,0.5675093,-0.34939697,0.17754227,-0.13887402,0.4954254,0.349335,0.32220212,-0.07946491,-0.022714976,-0.23257798,-0.061257984,-0.1278387,0.34456035,-0.35775578,0.08854146,-0.26133594,-0.42964086,-0.032158628,-0.26396298,-0.4666573,-0.736981,0.26831385,-0.7420521,0.60004526,-0.20355974,-0.17160837,0.34348428,0.15809982,0.32211372,-0.30802545,-0.062074736,0.09375102,-0.04615152,0.12968537,-0.36341396,-0.30119422,-0.6626722,-0.46050262,-0.07394628,-0.5388757,-0.030974008,-0.23611802,0.14853846,-0.20373946,-0.012747431,-0.005554533,0.36661306,-0.4560091,0.32429492,0.10774195,-0.0021471104,-0.041071363,-0.57512605,-0.25177318,-0.22291884,0.32169282,-0.12583739,-0.17850766,0.4838031,0.23855747,0.29514658,-0.13737673,0.0019276103,-0.37611353,-0.026759284,-0.032835167,0.4460702,-0.12942368,-0.6838674,-0.13548127,-0.028538946,0.18857758,0.1347287,0.22843583,-0.284121,-0.003354299,-0.03203803,-0.289864,0.402085,0.4482848,-0.31363198,-0.1476752,0.43171158,0.46746796,0.29252094,-0.44346187,-0.11232183,-0.056193147,-0.508937,-0.060080927,0.17621464,-0.1960598,0.57670426,-0.1654267,0.23129316,0.6414931,-0.13290094,-0.13352245,0.0017071088,0.21429135,-0.15224266,-0.121001616,-0.3690948,0.0753336,-0.30149794,0.0826947,-0.12360503,0.55195224,0.13265024,-0.59559494,0.30552483,-0.5287363,0.08349835,-0.07883733,0.3567752,0.57935333,0.46500415,0.21471828,0.50667137,-0.16744156,0.11165988,-0.118955255,-0.26231262,0.013789757,-0.2814168,-0.12858953,-0.55168396,0.06056684,-0.10761418,-0.052025683,0.13892028,0.5209853,-0.33929288,-0.13196181,0.19703327,0.9118267,-0.3476867,-0.1362728,0.76817346,0.9821277,0.9667062,-0.019494932,0.92064553,0.27658048,-0.22497752,0.19347581,-0.24631919,-0.56676,0.27291533,0.2494841,-0.30453035,0.33421233,0.03268,0.059750628,0.32806906,-0.32344094,-0.04179888,-0.21545358,0.14409214,0.28067622,-0.0030940732,-0.2897837,-0.41235748,-0.15433955,-0.110011384,0.121636346,0.29702836,-0.29060465,0.51756155,0.16770688,1.6430535,0.25101683,-0.15693027,0.079470254,0.77846605,0.21502012,-0.05064253,-0.004777555,0.36363643,0.37464777,-0.022586528,-0.5154802,0.1816697,-0.2960287,-0.5705742,-0.15428953,-0.35254282,-0.23457308,-0.07813285,-0.68858147,-0.23455808,-0.09063517,-0.045867436,0.5282043,-2.6988504,-0.13140613,0.024254192,0.33972067,-0.18518186,-0.3709189,-0.1605583,-0.47620624,0.3051529,0.26514336,0.3477815,-0.6397768,0.49323374,0.2358359,-0.5181371,-0.08874061,-0.5583376,-0.1302153,-0.005301507,0.37649065,-0.15569551,0.22401644,0.2947076,0.04224764,0.49661005,-0.1850626,0.20616928,0.35178307,0.39097923,0.06871168,0.43860582,-0.0005806764,0.56516963,-0.49309433,-0.20936324,0.24812698,-0.44944063,0.25402826,-0.027956402,0.1730999,0.669612,-0.4525519,-0.8777004,-0.5219682,0.19154923,1.1212552,-0.21835785,-0.34603876,0.1717706,-0.47602987,-0.21328624,-0.28583625,0.46668682,-0.086367816,-0.10814626,-0.6904157,-0.05440625,-0.14309965,0.1572974,-0.11105351,-0.023240464,-0.13385563,0.5351948,0.09415556,0.37344787,0.11439483,0.09253227,-0.4508619,-0.43737376,0.0975002,0.5728839,0.31767327,0.09039366,-0.07662085,-0.21368937,-0.34659755,-0.008844582,0.16937596,0.4619552,0.33891147,-0.09811199,0.25664043,0.2761148,-0.09292765,0.03040662,-0.33947876,-0.17231007,-0.18197493,0.23892158,0.41234696,0.61950094,-0.12092093,0.6671478,-0.12623613,0.25840372,-0.22690922,-0.46206754,0.5029128,1.1289004,-0.32126006,-0.34517518,0.2967881,0.6050602,-0.24215478,0.43004546,-0.5120237,-0.36910644,0.53495663,-0.1897164,-0.24746437,0.22801541,-0.20429793,0.15669681,-0.82474834,0.13583972,-0.1919341,-0.3756057,-0.61073506,-0.08061618,-2.3015368,0.0038326106,-0.07577639,-0.27113017,-0.18563904,-0.21878259,0.13733934,-0.5878389,-0.48415202,0.14057866,0.14162272,0.65586096,-0.0092824185,0.10751451,-0.25940624,-0.24601607,-0.21235174,0.23099846,0.24534774,0.43191305,-0.1424613,-0.6294286,-0.102096766,-0.16903046,-0.33608344,0.17606421,-0.71422917,-0.22121023,-0.10443127,-0.5128731,-0.37586877,0.6151155,-0.31971112,0.042886034,-0.19438453,-0.0007687072,-0.09357419,0.22721392,0.16820611,0.025118904,0.009086991,-0.15645352,0.2835689,-0.25290605,0.12660375,-0.055165213,0.23183458,0.27543637,0.094686605,0.08594527,0.42366135,0.6672504,0.010711006,0.7605326,0.51663274,-0.14039704,0.3587707,-0.15355642,-0.24764344,-0.5038599,-0.22696355,-0.06605431,-0.31120014,-0.50326186,-0.0066856663,-0.4097891,-0.75869876,0.5142845,-0.012784744,0.11733851,0.0299487,0.37109888,0.67379695,-0.20915219,0.08851029,0.011350044,-0.21413985,-0.50090903,-0.38235474,-0.5883617,-0.3755309,0.18216224,1.0366666,-0.1239672,-0.056016695,0.13098624,-0.44748318,-0.04567446,0.35734928,-0.12713265,0.12559293,0.4573625,-0.29480234,-0.6414637,0.45075732,-0.18632504,-0.12763204,-0.49339014,0.2557394,0.4698596,-0.6745288,0.5640558,0.24089037,0.031676475,-0.20169163,-0.42843854,-0.124789946,-0.1598001,-0.048612054,0.2429326,0.25811833,-0.73156244,0.3443274,0.20009258,-0.33608347,-0.5537549,0.5996536,-0.022927126,-0.45767346,-0.1461498,0.30979264,0.2825412,-0.069956355,-0.427527,0.09172181,-0.44625384,0.20196104,0.30922166,-0.09245172,-0.014025155,-0.22271414,0.0009724339,-0.77918726,0.12469186,-0.24482517,-0.3646348,0.45866394,0.026916634,0.28840077,0.0486591,0.08034695,0.0701714,-0.30612713,0.075944744,-0.1919478,-0.1879188,0.23800698,0.31709856,0.52754027,-0.4441648,0.63575524,-0.026342718,-0.16530167,0.28916034,0.1767873,0.3537013,0.23438503,0.45685098,0.19877812,-0.33789295,0.25910613,0.74195385,0.35926315,0.32075742,-0.067836694,-0.22047657,0.20242848,0.052955586,0.18446021,-0.0142412335,-0.3900077,-0.1044633,-0.20186952,0.20360072,0.40213317,0.016758975,0.3014997,-0.0616106,-0.24722528,0.026001243,0.14274721,0.008144506,-1.3867753,0.30133066,0.43929434,0.8157419,0.23466915,0.08498004,0.021621577,0.75650686,-0.24125877,0.022354634,0.40339097,-0.026114384,-0.4562219,0.52607197,-0.6437439,0.53619474,0.013031068,-0.01865505,0.11022698,0.092011236,0.35408428,0.8094879,-0.0812678,0.03559963,0.306143,-0.5520529,0.026141118,-0.22224276,0.04264665,-0.59171146,-0.19322078,0.56504405,0.5181772,0.3803664,-0.2276075,0.034765556,0.059987027,-0.28143656,0.19773626,0.16832729,0.14219493,-0.20362554,-0.6353699,-0.11260243,0.5058974,-0.3427388,0.13952665,0.1810921,-0.28873616,0.39957097,-0.1862641,0.043108013,-0.106262565,-0.613697,-0.010669363,-0.26915345,-0.26732144,0.57965434,-0.036456402,0.20853661,0.32582155,0.059176326,-0.3698057,0.5278024,0.057257924,0.8389612,-0.23129943,-0.16429928,-0.38259953,0.060174424,0.15854833,-0.084082946,-0.053790748,-0.1736111,-0.097282045,-0.39566797,0.3274325,-0.017009199,-0.11146851,-0.33435497,-0.080648154,0.096174985,0.48511896,-0.018167783,-0.16966964,-0.2150779,0.06500601,-0.5103277,-0.14104173,-0.1378579,0.35969684,0.27765653,0.07886873,-0.17376706,-0.0719237,0.11483293,0.52489924,-0.20360462,0.44978732,0.3884496,0.10876741,-0.23305258,-0.24337721,0.13760425,0.5053768,-0.14812444,0.060891353,-0.35469463,-0.4241298,-0.40499833,0.08096872,-0.17603397,0.33564988,0.10665644,-0.31676248,0.84474456,-0.23907706,1.1618665,0.080533005,-0.3608435,0.31075108,0.4965506,0.04845098,0.08499601,-0.25714308,0.8283841,0.5473278,0.0626158,-0.18598649,-0.26904973,-0.02535392,0.13042913,-0.24955352,-0.20670602,0.09454679,-0.47772515,-0.21728082,0.15999022,0.13002762,0.38593563,-0.19666886,0.10908155,0.26903197,0.013505017,0.1859117,-0.43815288,-0.24864128,0.28542063,0.19302781,0.011779022,0.12694916,-0.50348914,0.3604207,-0.32269207,0.045354236,-0.29450962,0.24029793,-0.21233925,-0.29520482,0.21096215,0.0651357,0.23709042,-0.4203681,-0.2520559,-0.33522597,0.61305547,0.13833946,0.20577605,0.40233362,-0.24923255,0.014288461,-0.05166087,0.46667162,0.7914823,-0.3763029,-0.23076563,0.3400046,-0.3962768,-0.6637219,0.42289478,-0.26229504,0.24289991,0.1595222,-0.017370733,-0.6363665,0.5089609,0.14733076,0.19072977,-0.1251707,-0.58184946,-0.073718116,0.30583343,-0.21112005,-0.24106379,-0.4115809,0.11011613,0.4024144,-0.26381442,-0.26691502,0.15209478,0.21380405,-0.21460848,-0.34012598,-0.057827998,-0.5082249,0.29469877,0.13789797,-0.33072102,-0.22893658,-0.01850875,-0.37126678,0.2265363,0.1525586,-0.31673834,0.06460599,-0.28972948,0.010332723,0.9845997,-0.2980205,0.0977127,-0.49678987,-0.51019806,-0.81467086,-0.39546698,0.33482128,0.24666208,-0.12765594,-0.7189309,-0.0017770608,0.038192336,-0.4805241,-0.10434372,-0.41567275,0.5179883,0.0046740402,0.152361,-0.008966287,-0.80271786,0.22312604,0.07618957,-0.20700172,-0.6046472,0.3723832,-0.19878162,0.9491885,0.060024284,0.14093368,0.28001937,-0.27593288,-0.1891258,-0.27965516,-0.14380574,-0.46806195,0.053092785,241 -169,0.4264018,-0.14599422,-0.5056085,-0.15750943,-0.5833232,0.23597947,-0.07876619,0.47383815,0.16775128,-0.39313415,-0.09291779,-0.017180055,-0.29822448,0.19537278,-0.21822295,-0.5071131,-0.17371458,0.073879376,-0.5053392,0.44057292,-0.22256461,0.49729118,0.0838299,0.2116629,0.33407164,0.33987078,0.03911879,0.08923038,-0.09088285,-0.21650101,-0.14036831,0.20354877,-0.6552778,0.37379897,-0.27047148,-0.22150452,-0.11954447,-0.39077085,-0.41182137,-0.63333535,0.19117351,-0.70483154,0.5072839,-0.09072106,-0.3772831,-0.05633143,0.1891191,0.13076751,-0.20958894,0.07962343,0.27836603,-0.26037315,0.013513327,-0.23790644,-0.34426773,-0.6394975,-0.49122402,0.005715434,-0.6350517,-0.17418432,-0.1216133,0.28910872,-0.24436942,-0.32897505,-0.26926616,0.6293595,-0.50399965,0.06213473,0.12518619,-0.255411,-0.05299999,-0.7037388,-0.09085128,-0.046852548,0.13923143,0.11217589,-0.40307182,0.3486672,0.20546302,0.37514675,0.07767146,-0.294871,-0.34621084,0.037340652,0.17431983,0.30456057,-0.19697838,-0.18973015,-0.2148182,0.07004676,0.5133326,0.25357923,0.100284085,-0.538792,0.11944887,0.030976582,-0.14249134,0.48239955,0.49640647,-0.30662107,-0.15324934,0.51634383,0.2868726,0.10528884,-0.3098353,0.22779097,-0.27857602,-0.23996595,-0.05077752,0.35100815,-0.03257575,0.46330833,-0.0145272575,-0.07820749,0.6884804,-0.14445727,-0.15817331,-0.08987816,0.05510198,0.14919056,-0.35762474,-0.08952742,0.1956811,-0.46142504,-0.04608788,-0.16309519,0.6535849,-0.014263195,-0.77684146,0.24806625,-0.5096119,0.12563616,0.1244686,0.59188735,0.71326584,0.6202398,-0.07984245,0.9852964,-0.391211,0.0990524,-0.097517066,-0.23072259,0.03673684,-0.27492556,-0.0895033,-0.52666324,0.14584687,-0.02078549,-0.107966214,-0.12926994,0.36116657,-0.3596168,-0.17991774,0.2282427,0.7313826,-0.37141702,-0.09382819,0.6795232,1.0738999,0.9712422,-0.017434979,1.1377013,0.19580278,-0.30131474,-0.018480735,-0.31279907,-0.22903341,0.12837829,0.39388308,0.052194912,0.3135814,0.0347684,0.07095052,0.278439,-0.3372484,0.1002901,-0.22440828,0.25429147,0.11093359,-0.018269977,-0.57851344,-0.21651226,0.23473956,0.23993699,-0.12367021,0.2621922,-0.3263086,0.22756653,0.0083698435,1.1880835,-0.057683047,0.119048394,0.15333334,0.43364775,0.29972938,-0.27053347,0.073395886,0.3647719,0.3896863,-0.02086726,-0.4684491,0.05456787,-0.4117907,-0.5950336,-0.13830157,-0.36935183,-0.17827006,-0.09658445,-0.6246466,-0.24185899,0.15616846,-0.40132535,0.527208,-2.6958208,-0.062023185,-0.22496085,0.14601518,-0.29731143,-0.3310369,-0.22171284,-0.33043778,0.2534187,0.29546145,0.34327355,-0.37285596,0.3523802,0.42370507,-0.48599452,-0.098541416,-0.55639243,0.18856879,-0.07825271,0.50266707,-0.08806767,-0.053821035,-0.062483538,0.04418963,0.6931137,-0.0659971,-0.046418376,0.2568398,0.32280764,-0.23812327,0.57085514,0.18480381,0.54486,-0.22693443,-0.26173055,0.4831969,-0.2688832,0.3026358,0.27983195,0.18064907,0.4348081,-0.53623563,-0.8455785,-0.43996727,-0.35568175,1.086886,-0.42261568,-0.5251406,0.31602603,-0.16287138,-0.17780069,-0.10915389,0.50411224,-0.021751443,0.2799876,-0.61672395,-0.017487917,-0.054598678,0.33765575,-0.17031392,0.1607522,-0.25770673,0.77432936,-0.14453799,0.5548261,0.40844756,0.37261784,-0.337001,-0.4709921,0.061750796,0.94581795,0.4238772,-0.029270148,-0.031351324,-0.1645476,-0.18970864,-0.14208065,0.2807849,0.6177944,0.6508701,0.0047484916,-0.010043907,0.31355685,-0.074560724,0.043660395,-0.21739882,-0.32350904,-0.20417684,0.17907754,0.56105286,0.32830283,0.029345484,0.58221334,-0.061445948,0.13520914,-0.15208572,-0.4529589,0.32835892,0.6692384,-0.22106789,-0.41154847,0.5547955,0.5613579,-0.29395425,0.20785634,-0.5718857,-0.2747876,0.7868851,-0.2794402,-0.6531409,0.10023758,-0.34740475,0.0015830934,-0.7831744,0.2759189,-0.09078033,-0.7514843,-0.44867784,-0.36314055,-2.9452128,0.11643014,-0.18750285,-0.12031063,-0.049542554,-0.15933698,0.28178468,-0.5106461,-0.48600948,0.022164632,0.052906394,0.556413,-0.07859507,0.04088807,-0.32209823,-0.20286798,-0.15739895,0.47862008,0.08904551,0.2877313,-0.101900175,-0.25182456,0.032025043,-0.26782963,-0.5159695,-0.023331255,-0.6116381,-0.54089457,-0.014890115,-0.42032284,-0.22204815,0.732102,-0.5455284,-0.030019823,-0.15643162,0.07402395,0.1313598,0.19459747,0.17213562,0.35739887,0.20435463,-0.05329015,-0.15870096,-0.38714755,0.14192526,0.1128562,0.36108208,0.3732614,-0.044127163,0.2921308,0.6134771,0.56810176,-0.15131237,0.75245696,0.18093707,0.019600486,0.4125314,-0.20884201,-0.19304585,-0.82638896,-0.24921638,-0.11677701,-0.44445127,-0.49504834,0.06596963,-0.43248737,-0.9050531,0.47096723,0.08476726,0.34212416,-0.10284536,0.3077842,0.43443877,-0.19647399,0.09241929,-0.11444116,-0.23235235,-0.40371487,-0.6182128,-0.6410348,-0.6210239,-0.12431685,1.2070191,-0.112158984,-0.23872663,0.09235789,-0.36256018,0.10762383,0.11076258,0.048128042,0.117571115,0.22473985,0.14186952,-0.6990401,0.26264712,-0.112331934,0.0027953067,-0.5955447,0.24991804,0.7807766,-0.56964314,0.47770566,0.32166818,0.28489703,-0.36681727,-0.6003348,-0.22875828,0.24999943,-0.2791415,0.67518735,0.165547,-0.68404526,0.39276117,0.066290155,-0.24309935,-0.7427728,0.5823193,-0.040131114,-0.04785598,0.009089466,0.4417586,0.11667088,-0.27271062,0.11536413,0.4088766,-0.46932748,0.32380173,0.45330048,-0.045240067,0.29712063,-0.14786695,-0.29861858,-0.70004255,-0.0493205,-0.44684264,-0.44280174,0.3071248,0.18583809,0.05725852,0.13478492,-0.115970016,0.40748265,-0.09805981,0.32080728,-0.16387695,-0.30389982,0.5973171,0.56409526,0.40692806,-0.47149545,0.44991636,0.08317971,0.07778364,-0.07434872,0.26241887,0.4854848,0.26490504,0.34094456,-0.17024006,-0.07715328,0.35476837,0.5399087,0.2788464,0.40098202,0.108191624,-0.21365643,0.22277482,0.13822255,0.2529236,-0.32411328,-0.5322224,-0.11049101,-0.013001815,0.25111204,0.2683822,0.04218268,0.33431354,-0.066553876,0.17128362,0.32733873,0.104354054,0.013365896,-0.921408,0.33740786,0.15353629,0.8357702,0.30004823,0.08832448,-0.12032615,0.53098345,-0.3090906,-0.030062292,0.5117023,0.16364536,-0.19860189,0.4627441,-0.7154624,0.5625765,-0.16788591,-0.13614388,0.28927007,0.28189117,0.52054614,0.85049725,-0.16315477,0.035595406,-0.034734763,-0.22231029,0.13504563,-0.33817226,0.37312797,-0.4284121,-0.5936816,0.66899353,0.4455899,0.30503735,-0.35182306,-0.068059206,-0.0011555235,-0.17289816,0.3123861,-0.02207219,-0.21486421,-0.082739115,-0.53059363,-0.18758647,0.52052087,-0.22677091,0.015110842,0.09130336,-0.18735507,0.2066535,-0.14778604,0.057909552,0.07217686,-0.5674502,-0.059848532,-0.3657343,-0.39521486,0.31124446,-0.44111827,0.21509196,0.2089529,-0.08070101,-0.40704736,0.13275068,0.3469879,0.7321306,-0.009557154,-0.13664696,-0.1864753,0.099065766,0.14556958,-0.1870344,0.0021520695,-0.24866636,0.14732638,-0.7008819,0.25446007,-0.3901357,-0.3607346,-0.008936481,-0.14151007,-0.0732118,0.44712767,-0.19980523,-0.122088544,0.009360289,-0.0027685761,-0.14918216,-0.08739311,-0.25008497,0.35031798,-0.07453206,-0.08574429,-0.019826714,-0.13104999,-0.065525815,0.098768555,0.12829593,0.32507074,0.25167367,-0.035916094,-0.33436546,0.12789668,0.047793187,0.4450842,0.16434766,0.05326542,0.011807179,-0.14512302,-0.3205608,0.16278023,-0.027841423,0.2126676,0.16648157,-0.46546358,0.8016831,-0.0028544029,1.4394362,-0.023190683,-0.4623925,0.019251982,0.60888666,0.09491265,0.061765503,-0.34491453,0.9143808,0.72053695,0.09616713,-0.13868771,-0.24347362,-0.16558406,0.20179859,-0.24801607,-0.30101326,-0.08984851,-0.62049013,-0.03634228,0.096083246,0.17011096,0.08005413,0.04097241,-0.31673586,0.2559293,0.0606998,0.24718812,-0.4319369,-0.059167568,0.33969307,0.25352952,-0.04174507,0.11859134,-0.29629755,0.38654968,-0.76839906,0.41615793,-0.27721772,0.14484262,-0.2084814,-0.17964026,0.1837438,-0.088649385,0.43208733,-0.26117262,-0.38420737,-0.26400667,0.6708472,-0.12835254,0.23648426,0.60502654,-0.2551976,0.047819026,0.13234177,0.39619306,1.1967633,-0.26354602,0.02244386,0.1157877,-0.50607187,-0.5987755,0.14995815,-0.6158001,0.20107755,0.04495599,-0.31236935,-0.051273085,0.2536883,0.1457081,-0.0020970304,-0.05647739,-0.6253427,-0.060772676,0.41898692,-0.25979313,-0.18763046,-0.2196486,0.38758275,0.49643987,-0.3400423,-0.44982585,-0.061873965,0.2869293,-0.2243761,-0.58097357,0.28028026,-0.36478674,0.3136712,-0.017729385,-0.5491813,0.009730335,0.16056986,-0.48718372,0.04440924,0.306481,-0.3106284,-0.015884085,-0.105586834,0.009501401,0.76802504,0.17970683,0.17223446,-0.5052697,-0.5545388,-0.86773986,-0.25491723,0.09353826,0.17591253,-0.04594879,-0.58692765,-0.16233441,-0.3516281,-0.013765923,-0.12878834,-0.55356914,0.42429683,0.16747814,0.6653337,-0.3489671,-0.93669724,0.08737324,0.3366531,-0.07721005,-0.43049437,0.61272544,-0.16317432,0.6953299,-0.09162219,0.12598827,0.040627327,-0.7675386,0.40301687,-0.33169192,-0.107498266,-0.6712491,0.031209258,244 -170,0.47679836,0.10323671,-0.48943245,-0.12899408,-0.18518104,0.15684171,-0.21296264,0.5780267,0.19448045,-0.34815374,-0.012704613,0.1287192,-0.16542855,0.3369129,-0.20785287,-0.6265829,0.14117657,0.043556675,-0.42726773,0.72734183,-0.22844383,0.41622332,-0.13410343,0.35820848,0.01621577,0.308958,0.040437117,-0.0021081844,-0.16644688,-0.28462678,-0.058643855,0.40555865,-0.2998628,0.22840519,-0.3362777,-0.17539972,0.11210262,-0.23537603,-0.28358582,-0.6158897,0.22310552,-0.49041733,0.6019228,-0.09600555,-0.3304505,0.27524063,0.17056091,0.11904276,-0.109833315,-0.062538944,0.108317055,-0.16699222,-0.022496048,-0.28800938,-0.29634413,-0.6484408,-0.413943,0.059511784,-0.6115417,-0.10371034,-0.21139301,0.10769408,-0.3211132,-0.23756285,-0.06150837,0.58963203,-0.24587895,-0.009709605,0.09863846,-0.16784182,0.0371425,-0.65238434,-0.0669843,-0.09826791,0.2948355,-0.04158721,-0.06331354,0.31683254,0.21060649,0.47521606,-0.02947456,-0.24611704,-0.20037574,-0.22055952,-0.011745214,0.5297162,-0.24825104,-0.6098277,-0.16099742,0.059206836,0.366692,0.13963443,0.059568282,0.05061972,-0.038438782,-0.18567643,-0.18471093,0.48489323,0.5710935,-0.3022933,-0.27957404,0.3746681,0.42772585,0.3054131,-0.18377352,0.015676912,-0.17580003,-0.37780342,-0.24888317,-0.029902799,-0.15590738,0.3604224,-0.03611113,0.07068186,0.48948702,-0.03187697,0.01873455,0.1832677,0.15856785,0.24889097,-0.10809649,-0.27405387,0.11172389,-0.44345635,0.03189981,-0.25638872,0.6005032,0.1283543,-0.6077698,0.38801834,-0.4996226,0.016794449,0.05983105,0.42509848,0.76701033,0.5265917,-0.013579551,0.4421161,-0.29415673,0.0076065143,-0.11525919,-0.04496534,0.07883798,-0.1690376,-0.049790733,-0.45315424,0.10365799,0.07131323,0.018524365,0.010524813,0.2247055,-0.4720042,-0.21287575,0.27219832,0.9587011,-0.24257499,-0.087040745,0.6729928,1.0989513,0.8642101,-0.19731967,1.032594,-0.04160932,-0.23968671,-0.049123876,-0.27581358,-0.46328735,0.24275479,0.35671476,-0.1272846,0.45054597,-0.033940602,-0.03517895,0.24515657,-0.34844264,-0.19359079,-0.11093751,0.2654215,-0.038977616,-0.09163438,-0.64378315,-0.23096745,0.06504668,-0.092422724,0.390962,0.37832,-0.27685803,0.3664074,0.015696583,1.0833637,-0.03415807,0.16745837,0.12768912,0.45331416,0.2999677,0.07495507,0.031788494,0.30074447,0.2170073,0.16696505,-0.43200016,0.15775786,-0.42813867,-0.42512113,-0.19119018,-0.4000058,-0.09564459,0.06685986,-0.3178577,-0.05233831,-0.11631031,-0.2210465,0.29929563,-2.834272,-0.17632535,-0.13943468,0.30950755,-0.19164456,-0.24698572,-0.20156789,-0.34752738,0.35304958,0.25058705,0.51873475,-0.44723848,0.37787372,0.418742,-0.3870144,-0.114131615,-0.45840135,-0.16333331,-0.029218996,0.52807117,-0.025064796,0.012260421,0.008383397,0.30653408,0.5354039,0.10548345,0.13909218,0.17503026,0.357063,-0.0019317548,0.22228403,-0.070904285,0.5698277,-0.36407146,-0.1279746,0.22423881,-0.38513422,0.30991665,-0.21647169,0.11863315,0.39943498,-0.43556988,-0.78623265,-0.38141307,-0.12102105,1.2542989,-0.096341714,-0.34617534,0.11881173,-0.2918708,-0.414628,-0.0529506,0.40009594,-0.26644152,0.012535493,-0.58828104,0.010797119,-0.18796706,0.14941362,-0.07687471,0.04175232,-0.4978199,0.5135136,0.021018393,0.49821606,0.14832275,0.32347733,-0.27918664,-0.45168215,-0.09329255,1.0134287,0.54227865,0.005569467,0.045442414,-0.072467044,-0.4398709,-0.008061076,0.1155378,0.7688197,0.5812157,0.045296736,-0.017219376,0.1587119,-0.073587306,0.22215852,-0.0035640956,-0.39873683,-0.15697311,0.1497247,0.75213915,0.45021516,-0.26416728,0.37236717,0.065008484,0.3113722,-0.31086054,-0.36605012,0.41527098,0.7533279,-0.34235966,-0.24497885,0.8517862,0.5672886,-0.2714394,0.47178555,-0.5859689,-0.4223716,0.38705456,-0.23558007,-0.38206452,0.26186916,-0.25696567,0.111514874,-0.88176626,0.32365665,-0.39449462,-0.59297526,-0.58448166,-0.045620788,-2.525825,0.09665207,-0.1894266,-0.15145905,-0.30262348,-0.05074807,0.22060782,-0.6106826,-0.5583309,0.1549204,0.046261773,0.6604787,-0.12759143,0.13225041,-0.13339774,-0.5678099,-0.06397061,0.2627169,0.14065978,0.27481276,-0.0634703,-0.30335626,-0.04960868,0.0054352423,-0.3060713,0.18594737,-0.63721716,-0.3746626,-0.088844076,-0.47984594,0.008447377,0.73389184,-0.40316698,0.07687047,-0.33732903,0.1496595,0.027038552,0.010479387,0.0691971,0.26472318,0.16627645,-0.14275548,0.1751129,-0.38369653,0.39077446,0.13823134,0.41811296,0.24638405,-0.020893244,0.07336688,0.58457816,0.5266645,0.002682543,0.8217944,0.41668898,0.025304647,0.46093553,-0.35235196,-0.41421917,-0.4406432,-0.37027597,0.20249395,-0.29250896,-0.38507032,-0.19326153,-0.35617706,-0.85409147,0.5156886,-0.037407048,0.19172427,-0.3130027,0.381987,0.49549034,-0.17483005,-0.00918719,0.07107481,-0.2039405,-0.31858382,-0.21329302,-0.58113635,-0.3511743,-0.046257775,0.92117405,-0.23477322,0.17427951,0.10586234,-0.122375995,0.046618592,-0.017488206,0.19105162,0.08152383,0.34111068,-0.16881797,-0.6351804,0.4522947,-0.26720074,-0.16474588,-0.40337044,0.12963274,0.6739304,-0.6768544,0.40455613,0.4845515,-0.035826843,-0.46654797,-0.5982458,0.11663513,0.16547519,-0.09253015,0.3451524,0.19781122,-0.68666273,0.44193396,0.06854828,-0.32246467,-0.5539131,0.5869774,-0.07506575,-0.17465827,-0.049047675,0.41223633,0.16567153,-0.04744563,-0.09682218,0.22431011,-0.3169761,0.30162674,0.10581244,-0.04145768,0.32085997,-0.27923483,-0.040152393,-0.80576766,-0.110776804,-0.61075264,-0.31352666,0.3797062,0.067060195,0.06962381,0.061980892,-0.040174205,0.40898487,-0.5781742,0.27169782,-0.053035013,-0.38514364,0.5791353,0.3792555,0.6103321,-0.40172336,0.44683513,0.08648279,-0.14543985,0.097552575,0.112637535,0.5932267,-0.09198145,0.4148656,0.0010291178,-0.034163468,0.42731497,0.6030632,0.22212501,0.22428423,0.11980171,-0.11048685,0.1528439,-0.13557695,-0.00024303993,-0.01011979,-0.51886773,-0.31528,-0.02895565,0.094801195,0.45632058,0.022156062,0.32507217,-0.14128153,-0.28585583,0.070003465,0.08321252,0.10558109,-1.2353128,0.43424094,0.10943374,0.73678905,0.2017656,0.26054555,-0.04262627,0.57864743,-0.10654369,0.08719257,0.3603105,0.079088144,-0.35281822,0.48109695,-0.44631964,0.5085581,-0.053976603,-0.010353736,0.0064982893,-0.21382223,0.51312536,0.94916743,-0.12065349,0.07380919,-0.017448012,-0.35607657,0.077294864,-0.34140396,0.15867952,-0.438024,-0.2424744,0.4824739,0.42927864,0.32625037,-0.24664982,0.09573049,0.16503593,-0.06795283,0.17135127,-0.05126204,0.06950137,-0.21700725,-0.52090657,-0.21330051,0.45933193,0.064499795,0.11073726,0.022834023,-0.082467,0.38181642,-0.029217899,0.13225484,0.025378598,-0.47442302,0.061462745,-0.29629657,-0.38598424,0.4725359,-0.37636873,0.16806497,0.11262543,0.10717675,-0.36145872,0.28983432,0.1967584,0.44860622,-0.05659523,-0.2114175,-0.36301896,0.03621398,0.07315334,-0.3356333,-0.11394564,-0.31474915,0.27361843,-0.6355113,0.22320251,-0.13620186,-0.21308857,-0.18822473,-0.09458964,0.085464954,0.33227012,0.08241401,-0.07618641,0.0024735709,-0.15236174,-0.35158756,-0.2697598,-0.1103082,0.18295802,0.24427809,-0.047530454,-0.2713742,-0.18393181,-0.24757619,0.22955988,0.15481587,0.34833518,0.5422986,0.21702738,-0.12441412,-0.03998224,0.20886907,0.31808242,0.0140265785,-0.061252758,-0.34694073,-0.40120232,-0.2294188,0.3598314,-0.20067474,0.13621302,0.14322314,-0.1742866,0.68186986,-0.08110415,1.112326,0.048517488,-0.2726498,0.08709065,0.5053843,-0.05254441,0.035245404,-0.30610567,1.1541446,0.45873487,-0.060888037,-0.072917305,-0.34239656,0.06714129,0.050477777,-0.25407228,-0.26650426,-0.0758736,-0.49097267,-0.29569718,0.22856286,0.21785812,0.123236604,-0.12847129,-0.0688454,0.24074984,0.18393926,0.31132093,-0.50640386,-0.11812928,0.4798289,0.15083669,-0.010110521,0.23271841,-0.35981706,0.25991267,-0.6421318,0.05535392,-0.3295664,0.1276386,-0.21082108,-0.37175986,0.22933702,-0.17534946,0.37825212,-0.4575483,-0.3462891,-0.13243577,0.19975385,0.11505689,0.017198507,0.3675104,-0.23927797,-0.02402418,0.033086166,0.6176207,0.91779274,-0.099197835,-0.047123082,0.19416027,-0.3324395,-0.76643777,-0.07768098,-0.48507875,0.17974468,-0.23277998,-0.3782812,-0.46551913,0.37935147,0.1902086,0.047256526,-0.09127739,-0.4450579,-0.13224734,0.12827343,-0.26367226,-0.28631312,-0.10916353,0.08313993,0.58425635,-0.3112852,-0.3760581,-0.17275698,0.3175579,-0.28089577,-0.8120676,-0.023433903,-0.35091537,0.23308049,0.21931921,-0.39939874,-0.1072423,-0.10418404,-0.4013329,0.3316795,0.3461218,-0.31635866,-0.062388007,-0.3028083,0.0075489837,0.6618949,-0.05440666,0.09883855,-0.34329975,-0.44456893,-0.7747372,-0.42214966,0.17349362,0.1864171,-0.0011495233,-0.7062984,0.0016595046,-0.28169903,-0.06632716,-0.0134361265,-0.24036561,0.21160874,0.10189685,0.38797086,-0.25133514,-0.8926887,0.19149442,0.12522109,-0.2067865,-0.5977627,0.40905783,-0.07775011,0.8605484,0.06304104,0.07362123,0.21933511,-0.5443906,-0.07954507,-0.22035322,-0.028161226,-0.6254722,0.27432242,250 -171,0.41292012,-0.101495616,-0.5391875,-0.21292628,-0.28486925,0.24175768,-0.16624148,0.21390752,0.16045412,-0.25686872,0.04305535,-0.027055575,-0.056317028,0.52128613,-0.07800305,-0.596471,0.008437125,0.13452367,-0.6284382,0.30841967,-0.52039456,0.44254717,0.021137241,0.3825806,0.15851718,0.2528021,0.27668253,-0.079515316,-0.0685097,0.04408838,-0.07439155,0.23120262,-0.41256258,0.07171135,-0.09946613,-0.39774957,-0.08856138,-0.2619079,-0.3693352,-0.63225496,0.37782755,-0.6905125,0.64777726,-0.20263961,-0.44472912,-0.04376562,0.16411586,0.32754955,-0.3038027,0.08715653,0.26896903,-0.33077553,-0.09113694,-0.027550705,-0.23879966,-0.5050548,-0.6533639,-0.070508786,-0.6536586,-0.117215745,-0.26880127,0.3216847,-0.26885018,0.120448984,-0.09090201,0.39098927,-0.39825764,-0.01724875,0.339335,-0.26786727,-0.060386296,-0.42555848,-0.11911753,-0.15373841,0.29385966,0.0333823,-0.12712102,0.26912612,0.3881835,0.55565727,0.10160058,-0.31589895,-0.3970392,-0.0012056887,-0.09819758,0.463962,0.014772952,-0.087640665,-0.2879964,-0.042134847,0.26592025,0.16101615,-0.0766201,-0.34587395,0.08437823,0.048941597,-0.22876032,0.26177624,0.40890306,-0.4689991,-0.2613385,0.4252792,0.42540798,0.0991566,-0.3262767,0.23221776,0.02592172,-0.4721009,-0.19688445,0.10323983,-0.014101656,0.5487982,-0.07973313,0.30894366,0.8261463,0.034128092,-0.035073664,-0.33142614,0.01262506,-0.11804867,-0.13881375,-0.17787991,0.077143304,-0.4702216,0.05553943,-0.18114398,0.83244306,0.011586698,-0.886144,0.340487,-0.4412757,0.09794248,-0.14009437,0.5467417,0.7902781,0.23801854,0.18241268,0.9336507,-0.5006817,0.08442889,0.100739636,-0.355299,0.050569825,-0.10147654,0.034316156,-0.56218123,-0.005829831,0.06538092,-0.035129145,0.059642915,0.4839173,-0.44575864,-0.10114942,0.024698561,0.720008,-0.43797916,-0.033462953,0.6279452,1.0440905,1.0873324,-0.05014251,1.1650548,0.5605894,-0.19215909,-0.024009384,-0.47131506,-0.3774707,0.07315286,0.27886048,0.266828,0.4193527,0.12459127,-0.0022153775,0.6400324,-0.33347294,0.119149536,-0.013158628,0.045270704,0.02610411,0.019914245,-0.43725312,-0.20727445,0.18176661,0.08056331,0.0055048424,0.21286291,-0.24464045,0.54712933,0.010235993,1.4366294,0.12560727,-0.004622712,0.025872082,0.45420104,0.1489501,-0.20450787,-0.13411394,0.050611846,0.5408745,-0.13158153,-0.4474584,-0.06590726,-0.30597705,-0.36510983,-0.15666634,-0.3147128,-0.20890424,-0.06547296,-0.4997819,-0.12870404,0.14696842,-0.29006106,0.44208214,-2.7304206,-0.1550795,-0.18116061,0.2651692,-0.1803595,-0.28555366,-0.3578858,-0.4441088,0.17194389,0.4413224,0.2891931,-0.4886611,0.5488764,0.32187977,-0.3091849,0.006857689,-0.5836954,-0.058015894,-0.17409565,0.4218331,-0.07940199,-0.026811425,-0.12191294,0.35369554,0.73809135,-0.0025719563,-0.12425116,0.21049912,0.39845726,0.050001785,0.6405377,0.30188137,0.5106537,-0.18708389,-0.20161386,0.388027,-0.37894645,0.26886198,-0.035309147,0.13640927,0.48762766,-0.47317198,-0.8304152,-0.5624061,-0.16026781,1.1606239,-0.33799076,-0.2678703,0.33035353,-0.1960778,-0.24740781,-0.037999846,0.38977367,-0.034270123,-0.04135065,-0.620678,-0.08736167,0.022835545,0.11093194,-0.08802458,0.011063043,-0.25351372,0.60127014,-0.17003626,0.44890663,0.30873123,0.21445619,-0.026814366,-0.5504747,0.075352944,0.8301141,0.3198411,0.09310538,-0.22808191,-0.14995965,-0.24537092,-0.23612538,0.29303244,0.42325395,0.71965885,0.038312208,0.16088702,0.4022141,-0.28571668,0.07053093,-0.16470149,-0.27334967,-0.03570993,0.13173953,0.45850965,0.63995534,0.06257548,0.4642031,-0.11444263,0.18499759,-0.1892806,-0.5164805,0.60074073,0.66340446,-0.14977123,-0.3193725,0.42854413,0.47202837,-0.28557128,0.30185527,-0.58550876,-0.22425602,0.70600724,-0.12313175,-0.49221733,0.11763302,-0.3323951,0.017443664,-0.90295905,0.20584737,0.09334901,-0.60278016,-0.59219605,-0.31585237,-3.6110704,0.16824654,-0.26028046,-0.08066247,0.15534207,-0.14562072,0.34367195,-0.5972587,-0.44622675,0.0032675534,0.04776884,0.49975917,0.0164538,0.08493771,-0.35849953,-0.25783968,-0.19576028,0.2705822,0.1280955,0.2759519,0.09882604,-0.46786347,0.28327447,-0.39231429,-0.4948058,-0.13164072,-0.5237159,-0.49113306,-0.14330798,-0.42421192,-0.26913688,0.7782329,-0.3373466,0.013438393,-0.2675198,0.041430943,-0.15452157,0.3486869,0.26269764,0.15287279,0.09298238,-0.05641928,-0.10552476,-0.3401149,0.19842319,0.006063193,0.30096194,0.33747733,0.011550371,0.21738401,0.65809447,0.49790055,-0.089568056,0.72437257,0.45533314,-0.10814408,0.19739528,-0.24356577,-0.12278626,-0.7042501,-0.37895405,-0.25703418,-0.49156386,-0.51439315,-0.07831282,-0.3378078,-0.75867736,0.44704014,-0.06140182,0.19048375,-0.16610657,0.15610142,0.34854165,-0.13203096,-0.07412264,-0.08284853,-0.26337695,-0.4356404,-0.42057073,-0.6644679,-0.6833324,0.17167126,1.2766764,-0.17330101,-0.12529904,-0.023531647,-0.4817293,0.0006103754,0.20560592,0.25233746,0.123058595,0.37088266,-0.2086051,-0.82804,0.29001912,-0.31504205,0.07004359,-0.67463285,0.026643332,0.64008087,-0.6221952,0.5506127,0.28737774,0.29465273,0.06351754,-0.5626386,-0.3927598,0.015810886,-0.25135365,0.58006746,0.109278165,-0.45198855,0.4091747,0.114363916,-0.2072864,-0.57753146,0.47513995,-0.09695853,-0.22081527,0.16913512,0.2980215,0.050467264,-0.23255144,-0.040475927,0.2271999,-0.54276294,0.35092667,0.31959945,0.012798469,0.26762542,-0.10125647,-0.16654982,-0.46549973,-0.17091946,-0.34956595,-0.2038287,0.08426247,0.02844686,0.3181375,0.012909007,0.0152115105,0.33138606,-0.21013997,0.14989625,0.01571583,-0.17722124,0.3605934,0.5151211,0.24814327,-0.4747511,0.6086903,0.117172725,0.0796078,-0.08496686,0.04194146,0.44253832,0.26488775,0.46659973,-0.25562656,-0.18661971,0.2178679,0.6361524,0.3087413,0.37627974,0.14401048,-0.28762862,0.23761968,0.1520122,-0.022343896,-0.08417246,-0.19732125,-0.06975226,-0.13038819,0.3096805,0.3236749,-0.013181853,0.3728735,-0.17080845,-0.06487422,0.37845647,0.058193557,-0.22666168,-1.0814432,0.27861124,0.3563569,0.6512219,0.31825572,0.029735018,-0.15202609,0.5590843,-0.44146287,0.033026937,0.45029563,0.04153706,-0.4486192,0.5430679,-0.534012,0.64863586,-0.16792461,-0.05212771,0.09137691,0.26175278,0.2587718,0.82298857,-0.057691596,0.063906215,0.0300417,-0.41705656,-0.003239123,-0.2900596,0.28667447,-0.6606018,-0.3142794,0.6020186,0.47616732,0.28722247,-0.2958022,-0.0663854,0.042169657,-0.16415758,0.04581,-0.14094846,0.032199025,-0.20727675,-0.63763773,-0.294351,0.4258546,-0.10336793,0.020160066,0.21672998,-0.268755,0.27856186,-0.13236956,0.033540107,-0.015325276,-0.54442036,-0.13952662,-0.3182148,-0.44604474,0.47791654,-0.40535864,0.31955317,0.16175635,-0.0013820045,-0.397056,0.23997475,0.00057103235,0.74773,0.049310625,-0.16712876,-0.352329,-0.045413055,0.34869516,-0.3441539,0.0017115434,-0.35216615,0.18430212,-0.59838605,0.38255432,-0.25640982,-0.27630487,-0.16723956,-0.15602972,0.09073814,0.45843378,-0.19545817,-0.041340098,0.13231693,0.114892274,-0.38859496,0.019180438,-0.37588724,0.2284398,-0.16207436,0.034824133,0.005143126,-0.16333748,-0.0036336104,0.3418531,0.088997945,0.26657492,0.3550196,-0.19816308,-0.334191,-0.003017819,-0.0906301,0.40241823,0.16197045,-0.16188817,-0.4721252,-0.32663283,-0.25487113,0.33305973,-0.18481977,0.24761759,0.049550828,-0.45146644,0.87477916,0.015817214,1.2351178,0.06857178,-0.2914027,0.13511771,0.5859969,0.28668448,0.22975221,-0.2706141,0.76812994,0.69810814,-0.103682086,-0.2915139,-0.33877194,-0.08733358,0.31431058,-0.29907954,-0.25927603,-0.103194736,-0.8190428,-0.11693989,0.12706791,0.08372945,0.24711256,-0.057551403,0.011837488,0.080167055,0.19227062,0.56157285,-0.4082063,-0.13265832,0.35061774,0.29855058,-0.01234676,0.20200604,-0.45123765,0.37730476,-0.7281765,0.23082314,-0.34177908,0.06744167,-0.04007637,-0.27247286,0.29488784,0.07232735,0.27650103,-0.28638822,-0.19441566,-0.22449693,0.7957311,0.19976954,0.36233857,0.7675032,-0.2651489,-0.20233086,0.13562308,0.47312024,1.4530197,-0.17108747,-0.038211472,0.32309228,-0.21636009,-0.53693086,0.07971447,-0.3849778,0.1660951,-0.058257755,-0.4038804,-0.3203185,0.33502653,0.001844132,-0.18736641,0.21629265,-0.44748288,-0.18019606,0.30949274,-0.2057875,-0.20891313,-0.29863244,0.26725802,0.45635217,-0.3707548,-0.4056263,-0.06925393,0.44451326,-0.27108553,-0.53667796,0.20392856,-0.3504041,0.33203512,0.15648259,-0.43965304,-0.04605379,0.18491481,-0.43364245,0.14222449,0.5214497,-0.37997139,-0.059877753,-0.2334745,-0.14866233,1.0803173,0.010874287,0.023815095,-0.63257915,-0.37750867,-1.0371307,-0.31343353,0.32861057,0.25957707,-0.17101267,-0.5939546,-0.06123228,-0.043955017,-0.0044038137,0.09396397,-0.5342051,0.40950352,0.17222409,0.39077446,0.009776687,-0.80412936,-0.07538858,0.0646834,-0.3800683,-0.44233847,0.5423103,-0.16117662,0.790832,0.046615634,0.12095938,0.14953879,-0.4340178,0.40311807,-0.37257192,-0.13409756,-0.78325194,-0.04969425,253 -172,0.5297926,-0.39320326,-0.30155644,-0.23616692,-0.40553734,0.12971963,-0.16054896,0.16716646,0.078432,-0.4130813,0.09245221,-0.333456,-0.10759533,0.5974411,-0.21748479,-0.74002856,-0.03363157,0.13885638,-0.6388988,0.77824384,-0.50612575,0.4024804,0.24909408,0.12253585,0.11531002,0.22008358,0.5457506,-0.09666847,-0.03485333,-0.06482847,-0.2687903,0.047860365,-0.5839865,0.25924936,-0.078372546,-0.3222806,0.21168366,-0.26062337,-0.33436352,-0.74264234,0.31819314,-0.8101328,0.2877681,0.002209393,-0.22837254,0.17354517,0.28273302,0.23362452,-0.2984203,0.12892711,0.13837343,-0.05775421,-0.050442886,-0.19457437,-0.1033746,-0.62174153,-0.6351693,0.026219746,-0.6971704,-0.40617135,-0.2126972,0.23888998,-0.38320625,0.050081473,-0.0875962,0.30198008,-0.54351944,-0.27037314,0.11963834,-0.099549465,0.27360767,-0.5053811,-0.09049355,-0.14165993,-0.08903182,-0.074700475,-0.11068344,0.5007091,0.25388804,0.6196331,0.006766349,-0.25501618,-0.067986846,-0.1453943,0.24327587,0.47628078,-0.0400151,-0.59168476,-0.21299288,0.10474184,0.17503193,0.09353988,-0.025612107,-0.48350233,0.06629966,-0.08934751,-0.23359172,0.33922666,0.3913204,-0.59043056,-0.38732564,0.30415434,0.47065413,-0.047457345,-0.0713843,-0.007267769,0.051362786,-0.5353119,-0.1654796,0.20968373,-0.31743392,0.47593555,-0.11419327,0.07636307,0.67018783,-0.24014536,0.08482072,-0.15710713,-0.19783472,-0.070974335,-0.15664223,-0.24989699,0.24930611,-0.63731855,-0.09765477,-0.32136205,0.94743323,0.16292843,-0.7494296,0.44070423,-0.58725715,0.17492406,-0.22330584,0.5605636,0.61033744,0.41815022,0.21693341,0.66118866,-0.49161807,0.19496821,-0.18565793,-0.2758428,0.09301195,-0.2987107,-0.066418014,-0.48532152,0.20731153,-0.22286378,-0.067211755,-0.26997757,0.6893451,-0.42188618,-0.11482746,0.098947726,0.85665345,-0.34943742,0.096470095,0.4630956,0.9832065,1.0460378,0.017048614,1.3356841,0.4385018,-0.24024417,0.30270258,-0.28612718,-0.6629858,0.22520804,0.5589115,0.15710682,0.26153767,-0.046109986,-0.043189492,0.37660754,-0.41169697,0.09583404,-0.27995238,0.43708813,-0.08507636,0.076191425,-0.5104329,-0.26363453,0.20503168,0.039688643,-0.015644964,0.32107347,-0.21366934,0.32339013,0.07381814,1.8504033,-0.09029611,0.10164436,0.11881913,0.47172794,0.30777067,-0.05161656,-0.012732967,0.18631247,0.36154237,0.032847613,-0.5739847,0.15405568,-0.35698283,-0.5161717,-0.24560668,-0.32850513,0.10979004,0.024538422,-0.48585197,-0.18445499,0.13028792,-0.2281235,0.351814,-2.197806,-0.24662548,-0.15193515,0.22366813,-0.4838104,-0.1668573,-0.07000563,-0.4635507,0.4499102,0.39904684,0.44112968,-0.65706766,0.34959516,0.5024307,-0.42476097,-0.120164126,-0.57214135,-0.24674495,-0.20536384,0.54154867,-0.024772102,-0.2177978,-0.12820333,0.3918548,0.5515019,-0.08441327,0.047565516,0.20734742,0.38004932,0.26847556,0.5572641,-0.027022226,0.41147855,-0.28972402,-0.11434065,0.42939675,-0.1102859,0.28219005,-0.01828336,0.18874127,0.4532518,-0.5347857,-1.0558336,-0.6660318,-0.446519,1.0383066,-0.3415075,-0.38893113,0.32964867,0.11629277,-0.050527997,-0.09720966,0.27295098,-0.15484114,0.028202858,-0.7589375,0.1406551,0.11809845,0.20067905,0.20182547,-0.08594225,-0.37261614,0.69356626,-0.08309191,0.3867654,0.26190475,0.28268072,-0.39459673,-0.5593117,0.07194128,0.9891694,0.3545896,0.12284882,-0.21728805,-0.34312552,-0.22789794,-0.1244499,-0.032478895,0.22085923,0.9786838,0.11728677,0.0026513333,0.2709686,-0.2229639,0.03926117,-0.08029852,-0.46940345,0.093670815,0.16627,0.55259347,0.37824503,-0.054609403,0.40310028,-0.09410854,0.3659075,-0.18558726,-0.3914469,0.43131173,1.2562658,-0.1544052,-0.04478838,0.6112308,0.51608115,-0.3419002,0.5623907,-0.7483976,-0.40998656,0.40038058,-0.20189597,-0.45523682,0.10276497,-0.34944054,0.1375547,-0.9922364,0.47561854,-0.26451668,-0.21009883,-0.58349335,-0.20417236,-3.5459116,0.29020327,-0.0769948,-0.18245445,0.08779909,0.14341162,0.48983568,-0.6323688,-0.38097313,0.07724056,-0.0086354595,0.52198035,0.106531076,0.14905311,-0.32942536,-0.23014812,-0.31343117,0.2622516,0.030272087,0.2228349,-0.057785764,-0.5047094,-0.016866732,-0.2405836,-0.35579157,0.1363409,-0.50956976,-0.57117736,-0.34620506,-0.5603344,-0.29100138,0.5871115,-0.010507707,-0.03703084,-0.20649455,-0.015634926,-0.08362493,0.23666292,0.22348377,0.197269,0.06417625,-0.01637135,-0.19973193,-0.3365603,0.21656914,0.031961836,0.33842432,0.34636948,-0.04648392,0.10056552,0.6665976,0.40765557,-0.09147365,0.67470723,0.39612502,-0.13372149,0.10840513,-0.19152507,-0.26819718,-0.5508109,-0.44660416,-0.21433592,-0.26844713,-0.47640085,-0.03909482,-0.39841413,-0.49531552,0.5130961,0.011850127,0.24302383,-0.12896866,0.082609445,0.34872538,-0.25858715,0.03863287,-0.15630743,-0.17991409,-0.55381036,-0.3884724,-0.7792213,-0.5001136,0.27902314,1.1349355,-0.15053448,-0.31949717,-0.08092734,-0.03847262,-0.032239858,-0.15173873,0.032703478,0.40096524,0.2936327,0.009361709,-0.77254015,0.56239724,0.023293026,0.1531252,-0.35603502,0.08635699,0.6098661,-0.5315209,0.45986456,0.33437616,0.15017365,0.10888653,-0.6244012,-0.17508186,0.15521206,-0.22289094,0.4943131,0.017542306,-0.6851266,0.44864738,0.28756398,-0.46676537,-0.80126065,0.42827097,0.06582608,-0.32838666,-0.113874845,0.31761518,0.16534677,0.121199355,-0.3948328,0.33589306,-0.69616246,0.22984216,0.4107915,0.03305763,0.21121,-0.2669864,-0.24327418,-0.6509648,-0.032592334,-0.43433112,-0.3636359,0.20510769,0.025157582,-0.0077541512,0.24693307,-0.06627844,0.4278468,-0.23926687,0.039871193,0.057274386,-0.3496809,0.46059063,0.41065082,0.4299518,-0.34882274,0.5339417,-0.035748623,-0.1589083,-0.30391827,0.014526638,0.39538443,0.3011638,0.15245095,-0.08368886,-0.19251485,0.50471276,0.99617493,0.19217753,0.4131429,0.13380463,-0.24963541,0.35105982,0.17737837,-0.10447712,0.12837324,-0.36290187,-0.16839713,0.15214364,0.11851928,0.5338861,0.013698252,0.3425846,-0.14917001,-0.10823663,0.12915455,0.21932627,-0.2497308,-1.007891,0.18004617,0.14088406,0.5122829,0.75917774,0.032994263,0.03840162,0.6342684,-0.22430436,0.06024719,0.36079508,-0.03101492,-0.528127,0.6808502,-0.5254213,0.24011026,-0.098755315,0.024787346,-0.05897931,0.10592079,0.36696202,0.8264291,-0.04543382,-0.019168355,-0.15859823,-0.2948984,0.12985654,-0.3063478,0.11219385,-0.30296803,-0.42948115,0.48238292,0.36097425,0.29643187,-0.038878836,-0.023769835,0.0010875106,-0.1518295,0.30268192,-0.02172892,-0.03228421,0.03921352,-0.5886476,-0.16947125,0.62184775,0.08153211,0.09047437,-0.06383166,-0.20108649,0.09147615,-0.22833504,-0.100168295,0.03512957,-0.6972113,0.06227041,-0.32289234,-0.25074634,0.63080096,-0.30591348,0.054862782,-0.024274612,0.040046494,-0.4410102,-0.01091066,0.23423466,0.71636134,-0.014166713,-0.17511746,-0.2781207,-0.039983477,-0.034467865,-0.24491067,0.027919738,-0.20775244,0.07171789,-0.9199072,0.5755957,-0.110476576,-0.41677672,0.16658555,-0.24071436,-0.045337837,0.53876966,-0.20210437,-0.1605869,-0.24941333,0.08722975,-0.24728593,-0.11361006,-0.032414045,0.28177324,-0.03324697,-0.039977375,-0.14101572,-0.054773632,-0.04114557,0.6457282,-0.039673332,0.20684926,0.2644725,0.10352575,-0.3847102,0.050602555,0.13592583,0.37905237,1.6506512e-05,0.05252512,-0.27885076,-0.13307945,-0.17881645,-0.017596753,-0.22185837,0.22836241,0.14721091,-0.5458359,0.92856604,0.13874346,1.2870785,-0.13934107,-0.26646346,-0.038850937,0.5171282,0.030159319,0.06081534,-0.36721858,0.791654,0.69293034,-0.059015214,-0.21767057,-0.45635623,-0.19118932,0.30340517,-0.3362245,0.007470131,-0.0039724032,-0.7313364,-0.4218171,0.3585149,0.34832093,-0.002872006,-0.086250715,0.060495116,0.1488181,0.17023586,0.4675141,-0.5122624,-0.06829119,0.28730318,0.29518744,0.15257981,0.30556506,-0.38562834,0.33267596,-0.6360712,0.24906226,-0.31813425,0.061369006,-0.0061068316,-0.2390275,0.23299138,0.0920877,0.32189402,-0.22404514,-0.4037658,-0.15888856,0.7504141,0.14028242,0.15640745,0.82850796,-0.34027117,0.2634348,-0.007331657,0.40162498,1.348185,-0.27909726,-0.19851461,0.19411334,-0.3360841,-0.8486383,0.3635346,-0.3683447,-0.03722926,-0.038921107,-0.40521246,-0.43455046,0.38723055,0.23325583,0.026272485,0.018698825,-0.5118841,-0.11163608,0.4076491,-0.17637347,-0.2814701,-0.28882217,0.27654558,0.6732951,-0.3694587,-0.20578185,0.13664795,0.33170176,-0.32161278,-0.754857,-0.16128567,-0.32427362,0.32456237,0.29149267,-0.2426321,0.13182798,0.11478982,-0.46256238,0.07614635,0.3807603,-0.41366097,-0.0044246,-0.26355037,0.06929979,0.9464264,-0.14717975,-0.31384814,-0.7754325,-0.58264273,-0.95968366,-0.46793574,0.7804591,0.16643196,0.085128374,-0.4441748,0.04733282,-0.034660373,0.1184199,0.017237624,-0.39572772,0.34235942,0.046164427,0.49108627,-0.08332607,-0.70785177,0.13501875,0.14196925,-0.090093635,-0.48493597,0.5456013,-0.19083472,0.89847785,-0.013852691,-0.024036638,0.19534105,-0.5976385,0.100127816,-0.41443065,-0.29434383,-0.6158933,0.11946401,254 -173,0.43126258,-0.13585809,-0.4257569,0.06335115,-0.2550286,0.0507999,-0.30744174,0.3742226,0.15388899,-0.47740784,-0.20368789,-0.060720094,-0.048453305,0.32659304,-0.18435542,-0.4657543,-0.013303502,0.20415924,-0.38985696,0.5021861,-0.5273087,0.38717955,0.1253645,0.475502,0.41756445,0.21421733,0.22889256,-0.0029554884,-0.45160332,-0.34393084,-0.107311316,0.14259484,-0.64444184,0.12412182,-0.2409882,-0.56187016,0.013014157,-0.524972,-0.23896858,-0.6628919,0.35480016,-0.78176427,0.41611046,-0.06567789,-0.19974117,0.45904216,0.02436769,0.31022868,-0.1176329,0.036724616,0.20860028,-0.1982987,-0.061900113,-0.14368324,-0.20349471,-0.35449514,-0.5721003,0.10247755,-0.45754883,-0.076476365,-0.3195034,0.25329033,-0.24502137,0.040539138,0.019861178,0.40793067,-0.47531232,-0.028432036,-0.061410222,-0.0485298,0.13541082,-0.644068,-0.2832163,-0.18128611,0.22110115,-0.16151595,-0.019498121,0.20607704,0.27527517,0.46238092,0.11352547,-0.087991245,-0.5152248,-0.11513165,0.11204159,0.5807006,-0.15339717,-0.39869493,-0.2671461,-0.20604692,0.21790355,0.09902401,0.08233908,-0.22287239,-0.0027082243,0.077191345,-0.36759064,0.33908463,0.46012646,-0.39944613,-0.19936317,0.24717264,0.50026387,0.1526901,-0.26832741,-0.08724017,-0.043448463,-0.4216946,-0.054679092,0.027709298,-0.25631866,0.58625495,-0.14963718,0.26380542,0.59409904,-0.29080388,0.14115636,-0.046120502,0.14101201,-0.006006805,-0.23994645,-0.40607262,0.30115998,-0.45875162,0.086521946,-0.2492972,0.76870257,0.02945532,-0.6189358,0.3963713,-0.45135963,0.10356086,-0.12460669,0.47024447,0.6592901,0.30212355,0.28202254,0.53877777,-0.33167437,0.09541998,-0.16848901,-0.20820777,-0.07867361,-0.11348848,0.007904847,-0.40196773,0.050580185,-0.007926325,-0.043579835,0.040303692,0.7109773,-0.41460067,-0.021345044,0.2506524,0.7907918,-0.38380817,-0.06387708,0.79557383,1.1806389,1.110948,0.03685769,1.0977042,0.37282032,-0.26745334,-0.10318283,-0.2681317,-0.50866944,0.31717762,0.29652315,-0.26391342,0.25547928,0.2184426,-0.10325292,0.47421226,-0.44713384,-0.06004735,-0.16872889,0.06287171,-0.012704571,0.11454797,-0.46747875,-0.27389514,0.1180649,0.019795299,0.11826169,0.23268357,-0.3667205,0.4341142,0.0708014,1.5804235,-0.14948195,-0.029530885,0.033958793,0.53194064,0.12674962,-0.13947502,-0.0383143,0.19618894,0.30679837,-0.044149138,-0.6548861,0.06342946,-0.2116251,-0.5324234,-0.20633025,-0.18436813,-0.09156709,-0.0003181696,-0.5010014,-0.18205126,-0.07329561,-0.3830194,0.4078006,-2.458764,-0.18443775,-0.020528989,0.29938444,-0.1825541,-0.49900335,-0.11967387,-0.50502324,0.5354509,0.2905789,0.43936878,-0.56290114,0.34056744,0.39548805,-0.35089272,-0.20928608,-0.68162763,-0.14241862,-0.13186112,0.37717506,-0.09067767,-0.10936446,-0.09205224,0.026090177,0.5903366,-0.057636,0.21231559,0.26364908,0.4160177,-0.011875021,0.56044525,0.23000498,0.5226783,-0.240719,-0.24397913,0.4061809,-0.39033872,0.15766805,-0.20631899,0.2174684,0.41392252,-0.51856595,-0.8960898,-0.77594745,-0.24922088,1.1884679,-0.15970501,-0.47124654,0.1985597,-0.076938346,-0.20918499,0.05728546,0.35811523,-0.14282222,-0.1260794,-0.7944854,0.016886806,-0.079173714,0.13046417,0.029693643,0.14076042,-0.45233658,0.5973742,-0.13035342,0.35395315,0.39181045,0.29999033,-0.23926881,-0.38570756,0.113088466,1.046976,0.3930958,0.14578763,-0.3685561,-0.19067469,-0.2968825,-0.09913109,0.06915825,0.24549204,0.63675326,-0.029408865,0.20056792,0.21301848,-0.032167796,0.09699217,-0.17447345,-0.3596055,-0.11110418,0.12529753,0.6011569,0.57282627,0.0016348601,0.53681254,-0.19497925,0.28483087,-0.18208247,-0.41196075,0.46442646,1.041605,-0.21848182,-0.19060351,0.716134,0.5223007,-0.16834226,0.5383269,-0.7129045,-0.47654533,0.38111547,-0.11920455,-0.328472,0.16000737,-0.36868033,0.098183446,-0.86466515,0.22688879,-0.2214639,-0.4050639,-0.6750539,-0.29639927,-2.7767303,0.12930913,-0.19919838,-0.18702379,-0.05865179,-0.3113828,0.2939035,-0.5827297,-0.4760896,0.15812927,0.10859215,0.6987244,0.05359506,0.17685941,-0.181708,-0.2828048,-0.32598445,0.13393204,0.1947907,0.34483558,0.07808932,-0.5239571,0.16495495,-0.21489707,-0.30629,-0.017990053,-0.59646714,-0.39716607,-0.093714386,-0.43733463,-0.38160947,0.5562106,-0.49530783,0.1121449,-0.19906431,-0.049981836,-0.22148523,0.4490526,0.17838396,0.05570543,0.11274707,-0.013018344,0.16458158,-0.31229782,0.20478445,0.13443764,0.06883461,0.41288653,-0.0928582,0.11140355,0.32279414,0.5701303,-0.06662051,0.8664368,0.49729055,-0.14247103,0.31461176,-0.30021894,-0.2373538,-0.6507797,-0.35816357,-0.1285874,-0.34485185,-0.508814,-0.17814173,-0.3747298,-0.88745046,0.59393233,0.02022963,0.18799908,-0.028476708,0.4341429,0.36450827,-0.17539981,-0.117815815,-0.044902515,0.05141622,-0.49842772,-0.46539825,-0.7615461,-0.5481003,-0.060735624,0.9093951,-0.08499859,0.0733472,0.24093339,-0.2357723,0.03342007,0.17985658,-0.0044490416,0.010802575,0.57218176,0.029189937,-0.7635409,0.426118,-0.11194324,-0.018159024,-0.6061068,0.24477895,0.59276944,-0.6555846,0.3838157,0.5379479,0.18944512,0.097389,-0.43636557,-0.15742804,-0.029130781,-0.24798483,0.5717595,0.22454108,-0.75757676,0.51970226,0.29370472,-0.22237825,-0.7850094,0.5037407,0.018402208,-0.2800906,-0.036425155,0.35448366,0.26426965,0.03095835,-0.29429168,0.14749955,-0.46055585,0.3624359,0.19254753,-0.07822461,0.43824655,-0.34936836,-0.14798452,-0.69170153,0.07036751,-0.42848822,-0.37779087,-0.022494245,0.10657445,0.045878623,0.41018718,0.070658244,0.38063747,-0.36449412,0.056291714,-0.22173385,-0.17142281,0.22224538,0.48787642,0.47846004,-0.33232757,0.57911104,0.03318872,-0.25667673,-0.18483159,-0.09593385,0.4109781,0.016505377,0.36034492,0.08143564,-0.24536844,0.23620349,0.530935,0.36933786,0.5485528,-0.04462653,-0.31803066,0.26451492,0.10304349,0.15514094,-0.021231651,-0.44715548,-0.04389047,-0.26074445,0.19844776,0.54377455,0.17140321,0.40928763,-0.18011554,-0.12152607,0.18812567,-0.013264561,-0.09232447,-1.0830518,0.28588396,0.15089403,0.6756732,0.6828306,-0.15600489,0.13145618,0.5239626,-0.31780446,-0.013165257,0.27708334,0.1527105,-0.4023038,0.56570035,-0.69913065,0.3472156,-0.19185546,0.05885361,0.051548615,-0.1265309,0.45902306,0.6872266,-0.11475078,0.14201806,0.11117433,-0.33211413,0.038617577,-0.23370437,0.28640842,-0.5904075,-0.12604566,0.7681118,0.45737177,0.25975296,-0.10525449,-0.020780435,0.030893628,-0.13941264,0.1544198,0.016793652,0.08442474,-0.001874272,-0.5893938,-0.19947465,0.5627163,-0.012686332,0.07876971,0.1373537,-0.3489055,0.20557338,-0.06762676,-0.07237436,0.095301054,-0.61764896,-0.07125201,-0.31373593,-0.33619753,0.397351,-0.09434452,0.2833006,0.07230184,0.13538708,-0.32290548,0.17484656,0.35122678,0.68189424,0.061057623,-0.08613621,-0.27865866,0.14411655,0.34094766,-0.18366311,-0.18878946,-0.30763498,0.05557784,-0.74346584,0.4772175,-0.21118923,-0.099445485,0.1445288,-0.16919571,-0.029838638,0.5827498,0.0030842305,-0.013228234,0.07943283,0.040567648,-0.3330793,-0.1717867,-0.20528507,0.21484931,0.112337306,-0.12462615,-0.15473457,-0.14636944,-0.12066572,0.47746032,-0.027125878,0.3646738,0.3749239,0.019361693,-0.39651874,-0.12591368,0.062291715,0.45725223,-0.08126623,-0.13388042,-0.3203953,-0.4365261,-0.31890836,0.2629835,-0.2174677,0.21566884,0.11795187,-0.17035185,0.8346259,0.15504217,1.1818173,0.13269947,-0.43384492,0.18610962,0.44136757,-0.18752636,0.118563734,-0.39174575,0.94848365,0.4823101,-0.16362663,-0.18257561,-0.44992816,-0.16210744,0.27449158,-0.24670334,-0.30003765,-0.19317304,-0.5915625,-0.31806108,0.21307701,0.25918466,-0.06694648,-0.017112194,0.21997099,0.32686818,0.06714358,0.5871589,-0.47186106,-0.19739914,0.3691806,0.31906167,-0.15938321,0.24092104,-0.42572257,0.49490088,-0.60138327,-0.06905389,-0.34952697,0.119871214,-0.24745147,-0.35414702,0.25524154,0.2659945,0.3101938,-0.29552677,-0.3902588,-0.29511863,0.49690476,0.05319983,0.1654226,0.5050272,-0.2949602,0.01068303,-0.2080835,0.34826916,1.1596997,-0.39844388,0.0759656,0.41052943,-0.21861748,-0.5779503,0.28033364,-0.47762877,0.057766087,0.1265219,-0.35176697,-0.7224608,0.31903246,0.09019544,-0.10927277,0.17181908,-0.4752097,-0.0036741814,0.15710425,-0.11323618,-0.20571221,-0.20047964,0.07624592,0.604118,-0.3983985,-0.36583596,-0.057737943,0.40241414,-0.21814266,-0.5700075,-0.063190274,-0.43687853,0.45748994,0.21196182,-0.23813565,-0.1979235,0.08354017,-0.32345468,-0.08708436,0.24722879,-0.33267602,0.046953846,-0.42980173,0.11706385,0.8398001,0.061413623,0.24224739,-0.58429474,-0.35030687,-0.8670737,-0.36248964,0.41362318,0.20316945,0.059080463,-0.561016,0.06274257,-0.2666556,-0.13404371,0.062445972,-0.64167076,0.46064875,0.21772909,0.4417364,-0.14172767,-0.61113304,-0.040042855,0.15684147,-0.24428567,-0.43143144,0.45454037,-0.0008990049,0.9542457,0.15076715,0.05983252,0.25155714,-0.51944965,0.07338061,-0.2321234,-0.22474174,-0.6803742,-0.049368296,260 -174,0.39854515,-0.31949693,-0.42044643,-0.14191884,-0.40497205,-0.000634106,-0.20158483,0.24661213,0.20996977,-0.30999413,-0.04996912,-0.06920793,0.097448386,0.40844986,-0.07934694,-0.7383902,-0.14641377,0.06198007,-0.6467523,0.4960326,-0.6706474,0.3538545,0.15263276,0.28927884,0.05891486,0.51082784,0.2491085,-0.22560507,-0.06025963,-0.005205405,-0.09603398,0.3606638,-0.570053,0.111130565,-0.028584685,-0.22386725,0.13480815,-0.46473613,-0.24795231,-0.6143523,0.15125373,-0.86816853,0.57338274,0.044244643,-0.19123381,0.017971357,0.11152723,0.40639895,-0.4320567,0.17169945,0.20659722,-0.08899508,-0.09162657,-0.3069416,-0.02023822,-0.34751084,-0.515408,-0.0092617115,-0.5103817,-0.40971452,-0.10463403,0.13569646,-0.3785264,0.016137796,-0.31282654,0.44743448,-0.48267695,-0.06199322,0.267929,-0.30371305,0.39010704,-0.39437434,0.07997365,-0.07996635,0.31524172,-0.012299876,-0.14809947,0.31119257,0.34942093,0.47778416,0.23886786,-0.24603207,-0.073817745,-0.21157883,0.33872166,0.47439444,-0.1651937,-0.45606104,-0.22614613,0.110178456,0.07076116,0.38848764,-0.09846369,-0.37696373,0.060621522,0.07351746,-0.2510707,0.44969627,0.47515038,-0.40392634,-0.29637733,0.19380832,0.6198943,0.13313442,-0.10422173,0.15036227,-0.009155952,-0.611007,-0.1768125,0.25119108,-0.07431939,0.45581606,-0.11774435,0.18201739,0.81777686,-0.12375074,-0.032018688,-0.07254612,-0.14467593,-0.1390777,-0.40739816,-0.1098667,0.07851219,-0.5872488,0.11669038,-0.27329648,0.854009,0.15708086,-0.7049497,0.4404272,-0.5744122,0.1868453,-0.13492166,0.7261303,0.5647978,0.38757178,0.3095292,0.83102477,-0.5361153,0.27166355,-0.11994437,-0.5075179,0.0115268035,-0.14852606,0.15868522,-0.48623303,0.21213913,-0.07590186,0.12883858,-0.17852801,0.32769045,-0.60432035,-0.0154340705,0.054751907,0.8753109,-0.43559986,0.024404483,0.67953676,0.9738911,0.9597904,0.04036309,1.2832097,0.43689486,-0.25103888,0.1878315,-0.43502524,-0.4959845,0.23468615,0.52719665,0.26444247,0.19341113,-0.20466298,-0.09908625,0.39332676,-0.37321976,0.11797578,-0.20663741,0.44835573,0.045358393,-0.08007863,-0.5866963,-0.17350556,-0.025014741,-0.059399556,0.04111537,0.17525864,-0.25121942,0.48362917,-0.054388262,1.3569676,-0.1962942,0.18699868,0.08809892,0.4330614,0.3150807,-0.15319456,-0.07681171,0.3641344,0.53455025,-0.041267533,-0.68409336,0.31401262,-0.27532977,-0.5225836,-0.060763437,-0.41642532,0.028851612,-0.04159134,-0.5005731,-0.09223035,-0.070632935,-0.22929542,0.51425755,-2.7140532,-0.3153155,-0.13975674,0.29227963,-0.3852343,-0.21123835,-0.038709767,-0.49416643,0.21217808,0.30157182,0.4102649,-0.7274265,0.59450036,0.42603657,-0.3764444,-0.17390932,-0.7372965,-0.1208072,-0.09329275,0.49173915,-0.002510663,-0.11242931,-0.30821654,0.095826454,0.8068567,-0.05307043,0.18445832,0.25280422,0.33096966,0.22905843,0.55598414,0.10834336,0.5771697,-0.3093478,-0.11467317,0.40851575,-0.18950336,0.2082661,-0.10068067,0.11816137,0.35770568,-0.43791988,-0.9097879,-0.75963986,-0.5264984,0.9701687,-0.44450653,-0.4154989,0.25742745,0.03341557,-0.008791566,0.06764976,0.4697715,-0.05660772,0.16210356,-0.7310472,0.26002175,-0.051109347,0.15337464,0.086004406,0.0015265067,-0.24200168,0.7205941,-0.0762626,0.6046196,0.25942865,0.2616267,0.017306583,-0.35769564,0.029232617,0.96623063,0.273564,0.05485624,-0.05061458,-0.40061024,-0.012304576,-0.05693058,-0.078440115,0.4866993,0.8737714,0.07059536,0.1347123,0.24153176,-0.13675578,0.08315698,-0.13791667,-0.32946172,0.13272908,0.07357885,0.45402563,0.4940111,-0.19327591,0.5142883,-0.3026428,0.32044843,0.02202793,-0.58140075,0.6258773,0.5843903,-0.27928033,-0.041245136,0.62996083,0.5661051,-0.48083737,0.41452724,-0.7311747,-0.10852659,0.66162044,-0.22707336,-0.3820494,0.18928012,-0.16809079,0.23150438,-1.012798,0.40661258,-0.39933005,-0.4733734,-0.38428408,-0.12369867,-4.1747284,0.21918882,-0.19198272,-0.07464088,-0.16548415,-0.07791347,0.39217624,-0.51166093,-0.49577305,0.13538367,0.17298047,0.47271505,-0.031962488,0.13333513,-0.35198548,-0.031630132,-0.058909312,0.2493844,0.098283775,0.19203418,-0.21878944,-0.38938284,0.0072774114,-0.09061291,-0.5511878,0.2626852,-0.59466016,-0.5275249,-0.07585544,-0.51797915,-0.39512858,0.6713604,-0.20136149,-0.009604925,-0.20681266,0.15069094,-0.29697004,0.3111304,0.102071054,0.26414168,0.15736206,-0.07874925,-0.014716546,-0.41969025,0.3675269,-0.04271612,0.3107292,0.035124667,-0.0066097695,0.12972026,0.4828993,0.5342541,0.059911918,0.9066651,0.34919935,-0.10375222,0.3504372,-0.39478964,-0.26189727,-0.65042037,-0.4953268,-0.14933607,-0.3935006,-0.54528254,-0.04951217,-0.2503833,-0.6750714,0.5809757,0.06422237,0.39362773,-0.1353309,0.3640279,0.5181589,-0.06084277,0.016513169,-0.09614147,-0.21640362,-0.6303667,-0.1785819,-0.7667515,-0.5411535,0.17521726,0.8455888,-0.26131648,-0.023612222,-0.1848362,-0.30242613,-0.09706195,0.10407724,0.12669758,0.3771597,0.3972507,-0.15355596,-0.73481184,0.43552786,0.019319257,-0.15587749,-0.5605556,0.06656809,0.6945178,-0.80398625,0.6628278,0.21386303,0.13108706,0.06495144,-0.48035595,-0.32800153,0.04997618,-0.24481374,0.61271125,0.079529434,-0.75074744,0.5567357,0.53591543,-0.3012161,-0.66531694,0.240387,-0.03731274,-0.23329535,-0.0016895373,0.30346793,0.058050755,-0.020697793,-0.23368518,0.12402377,-0.57978034,0.2892488,0.25020173,-0.11719734,0.32643673,-0.13937221,-0.3277529,-0.76513875,-0.18181656,-0.6157177,-0.1758983,0.38546294,-0.06516182,-0.049209658,0.102656245,-0.1386885,0.47792515,-0.12295531,0.04938961,0.061178997,-0.32394427,0.28593618,0.56822,0.09724588,-0.3406374,0.56845725,0.1709805,-0.17927869,-0.0536055,0.035354007,0.41376957,0.12994194,0.39083487,-0.19877522,-0.24921791,0.49100134,0.8260119,0.16687569,0.60474765,0.032302998,-0.075594775,0.5529327,-0.022021206,0.008203125,0.14780398,-0.25950322,-0.121553,0.13667974,0.11644773,0.48407698,0.3151618,0.3327549,0.14040102,-0.2402638,0.03668656,0.20407058,-0.028532067,-0.9667418,0.45115373,0.2102764,0.7088937,0.5592057,0.059955187,-0.141882,0.65522015,-0.24727294,0.101416,0.35154217,-0.035312973,-0.57646066,0.7957733,-0.64806694,0.3678734,-0.282884,0.034055475,0.03734454,0.107336916,0.35821944,0.92260176,-0.1697898,0.022746328,-0.046497144,-0.11760255,0.100536846,-0.25391808,-0.020476786,-0.4391837,-0.32147706,0.6143013,0.37574694,0.452406,-0.16089305,-0.097701564,0.1386213,-0.12544027,0.3063038,-0.01211744,-0.016661191,0.13067771,-0.5189463,-0.41691485,0.59514415,0.12790872,0.15438583,-0.10721442,-0.38516587,0.22601178,-0.2800626,-0.13765772,0.03086558,-0.48872173,0.059472863,-0.19907953,-0.57638764,0.34279785,-0.2273313,0.07176189,0.059371818,0.044135787,-0.3147344,0.08728452,0.0463625,0.9267508,0.021447368,-0.42566597,-0.46085992,0.021329753,0.24927981,-0.27313823,-0.048897702,-0.2909146,-0.089854114,-0.6253672,0.5699436,-0.09930989,-0.46972162,0.22970441,-0.23726425,-0.10148693,0.5421199,-0.1537151,-0.2631288,0.034579873,-0.20038381,-0.47689798,-0.13489674,-0.15336657,0.24388286,0.2428347,0.040832724,-0.13511038,-0.26601413,-0.105613366,0.5870845,0.042711996,0.4256231,0.24524614,0.07617664,-0.2706221,-0.03276186,0.29923686,0.32237035,0.14082012,-0.014102356,-0.3442066,-0.43157712,-0.23365612,-0.04762449,-0.05764636,0.32549888,-0.12530217,-0.46219364,1.1343471,-0.011039957,1.3147517,0.0816832,-0.18253957,0.052665066,0.49060276,-0.046121337,0.032419704,-0.38227132,0.867643,0.5790993,-0.04679983,-0.08326141,-0.6106401,-0.14452332,0.2211021,-0.31996307,-0.078929946,-0.12904592,-0.6251211,-0.46294576,0.2749218,0.2517492,0.19971351,0.06310515,-0.050263762,-0.009624531,-0.013649178,0.46762612,-0.5929326,-0.1551886,0.16574804,0.24161483,-0.059145164,0.11111625,-0.37831873,0.30632198,-0.60827166,0.28771108,-0.40060434,0.060224686,-0.12670586,-0.26670286,0.09174678,-0.2120812,0.22105609,-0.22070451,-0.5143855,-0.03606973,0.56180054,0.09611294,0.064374164,0.9076698,-0.28811163,0.09321664,0.20848192,0.59742725,1.2591527,-0.333097,-0.0141376285,0.26976204,-0.3441072,-0.7044646,0.38439733,-0.16574217,-0.027584163,0.0061233956,-0.45420876,-0.37023297,0.26379895,0.23896927,-0.100680485,-0.064631976,-0.4757747,-0.22716874,0.4217528,-0.21565439,-0.23484391,-0.2856897,0.4605726,0.724259,-0.36010176,-0.2558837,0.072730176,0.25333473,-0.44898662,-0.565463,-0.15555845,-0.18552424,0.3857055,0.11377961,-0.25642413,0.1030643,0.21074966,-0.43945435,-0.06548255,0.23251635,-0.3773958,0.14912178,-0.07444978,-0.20020536,0.8685221,-0.21527927,-0.26849702,-0.6468773,-0.49238876,-1.0080402,-0.4962184,0.46042714,0.1020016,0.089964055,-0.45852533,0.16989355,0.047534164,-0.038736265,0.10206782,-0.6084553,0.37822732,0.046860162,0.622101,-0.20924921,-0.747234,0.05528978,0.20994097,0.031677485,-0.6085888,0.7547904,-0.09436391,0.8059397,0.027845317,0.011132193,0.00980165,-0.42127186,0.03354852,-0.46618184,-0.23757423,-0.929244,0.06694234,262 -175,0.4895142,-0.29338995,-0.43011734,-0.095764,-0.18130426,0.06746672,-0.12959118,0.2935025,0.21397495,-0.49913463,-0.120906845,-0.17982438,-0.065820865,0.2620794,-0.13221322,-0.7754059,-0.037267882,0.24317743,-0.5677815,0.6846857,-0.23149373,0.20405227,-0.011140802,0.28347367,0.047146685,0.17062584,0.23633619,-0.18140183,0.1024439,-0.16180502,0.00068882306,0.18450521,-0.56392616,0.37964672,-0.06794916,-0.26951945,0.071463235,-0.3681949,-0.24637628,-0.6834444,0.15395276,-0.7577144,0.42906672,0.11660405,-0.21433266,0.104009666,-0.0073500634,0.46680897,-0.3185916,0.15808342,0.19241302,-0.16901465,-0.09989525,-0.20178474,0.011924896,-0.4525749,-0.48541507,-0.057042904,-0.36651528,-0.28800467,-0.19582608,0.18268685,-0.3641605,-0.10609808,-0.01128706,0.5162176,-0.4290566,0.061918903,0.30354854,-0.3247864,0.40288442,-0.4682314,-0.1265811,-0.047158726,0.33651537,-0.16647683,-0.17802833,0.21434812,0.15847273,0.5757656,0.0966553,-0.13774627,-0.10466838,-0.08449886,0.20932989,0.5960692,-0.18970199,-0.5161407,-0.09592285,0.123860665,0.06675765,0.060558327,0.039786123,-0.46965653,-0.09256715,0.02236254,-0.058782935,0.32851246,0.471878,-0.34197867,-0.18786392,0.37526074,0.5883218,-0.02575525,0.0028774163,0.05186517,0.0864784,-0.4308423,-0.23135096,0.1270663,-0.23365659,0.48862365,-0.10982189,0.2858129,0.71035063,-0.13555638,0.08484833,0.03924937,-0.062248614,-0.1599753,-0.21310133,-0.24385315,0.4026647,-0.4202413,0.07110631,-0.18890204,0.80990803,0.20797463,-0.80622834,0.317107,-0.52360314,0.10636572,-0.21898133,0.4894146,0.59320647,0.36073345,0.13472532,0.7232396,-0.6034671,0.09419422,-0.053199515,-0.5027944,0.039192606,-0.097545594,-0.12823404,-0.55938214,-0.0346472,0.032444235,0.008783877,-0.07255669,0.1406393,-0.69873196,-0.09153329,0.08360965,0.80143356,-0.3157379,0.088105984,0.5662004,1.0382997,0.79493725,0.007740891,1.233806,0.16836277,-0.34838662,0.17811917,-0.23952405,-0.60802853,0.28788093,0.4914901,-0.050266195,0.20207071,0.06798521,-0.06542299,0.3591213,-0.3736896,0.0871129,-0.12892708,0.2091151,-0.084848635,-0.20912515,-0.5048595,-0.029320879,-0.027148671,0.07965973,-0.034141507,0.22361952,-0.14607984,0.2981707,0.117613725,1.6335355,-0.14051925,0.23887597,0.11142505,0.30436692,0.124728896,-0.047083296,-0.048821855,0.28577983,0.35031852,0.17317057,-0.55701935,0.09975269,-0.17887929,-0.40900266,-0.23118116,-0.17369734,0.05427031,0.0042212238,-0.42228448,-0.0025346293,-0.08516648,-0.24176066,0.47228673,-2.796074,-0.21380334,-0.24067035,0.43532684,-0.36784238,-0.29132345,-0.08732107,-0.38222736,0.34946424,0.35248235,0.48922437,-0.713931,0.42013866,0.3706726,-0.53444165,-0.13364854,-0.5018858,-0.1123082,-0.085258074,0.45583394,0.09157764,-0.15620977,-0.07731378,0.22672383,0.38926363,-0.12760444,0.15110752,0.2593682,0.36446163,0.14004064,0.48953468,0.03642518,0.40120652,-0.24207045,-0.1413386,0.37766474,-0.13981324,0.09625551,-0.028750174,0.10641294,0.287666,-0.41190383,-0.9101171,-0.8099467,-0.3015618,1.0545942,-0.19258496,-0.4558322,0.17784935,0.1267425,-0.24093446,-0.03575539,0.26912275,-0.016328914,0.07953824,-0.9619328,0.15796742,-0.046924625,0.2548037,0.1884324,-0.26751488,-0.5821126,0.6791751,-0.15438484,0.5649385,0.4699059,0.29640993,-0.009609517,-0.43074924,0.066007525,1.1014255,0.3610455,0.101264074,0.0023043274,-0.07245525,-0.21859337,0.03496428,0.093789004,0.5113827,0.7803335,-0.020476703,0.031403463,0.32878953,-0.0927852,0.13436331,-0.17413148,-0.37786,-0.06418859,0.029523714,0.50853074,0.53147626,-0.1680238,0.3503071,-0.008236822,0.39662617,0.028020648,-0.4095123,0.563509,1.1293701,-0.15785262,-0.21703236,0.48293772,0.3986792,-0.17064577,0.32663023,-0.63981134,-0.33301964,0.44950244,-0.20592831,-0.48906276,0.12711735,-0.3485961,0.33200276,-1.0084416,0.4822087,-0.48939437,-0.5152173,-0.56293887,-0.14377159,-3.3964076,0.22458868,-0.4233803,-0.16243865,-0.0026928266,0.048490364,0.289489,-0.74366283,-0.38233376,0.19624391,0.110147156,0.5101598,-0.054138638,0.23692387,-0.24729171,-0.11950539,-0.03637668,0.21833754,0.20551196,0.114072956,0.07244652,-0.47245967,-0.017226402,0.10164718,-0.28639096,0.13833833,-0.658465,-0.4916267,-0.19558096,-0.51441747,-0.25448734,0.6308563,-0.26624253,-0.11343262,-0.1414903,0.06755246,-0.20211795,0.30897844,0.06273147,0.11167472,-0.06443836,0.07499678,-0.14999872,-0.28579223,0.3083561,0.048184957,0.25594527,0.1456043,-0.3881819,0.088669695,0.5238076,0.46438962,-0.078230746,0.6799039,0.60678136,-0.11053631,0.30307674,-0.29946372,-0.28119615,-0.66184795,-0.46491712,-0.08898726,-0.35746524,-0.44955513,-0.056545086,-0.361028,-0.762071,0.56046736,0.006418407,0.098911,0.016338443,0.19083217,0.5231828,-0.14956443,-0.07146043,-0.06104723,-0.1859334,-0.5823805,-0.15671326,-0.59915024,-0.47919285,0.22348915,1.016384,-0.21472557,0.052518003,0.066442214,-0.11954965,0.058807354,0.18121888,-0.028044699,0.23147802,0.45162895,-0.1384271,-0.59058577,0.51244646,-0.0020618017,-0.18252203,-0.7220408,0.13921706,0.6006069,-0.567733,0.4586108,0.26846394,-0.0045870603,-0.0019462983,-0.38138026,-0.16696136,0.02401712,-0.22676796,0.3510769,0.010516198,-0.53880906,0.395717,0.34224945,-0.21329117,-0.7340061,0.5441916,0.0036883333,-0.23295586,0.09429432,0.25555056,0.041355554,-0.101726845,-0.23253827,0.29449335,-0.48768297,0.28150907,0.13457243,-0.15266106,0.33023897,-0.15395112,-0.121400826,-0.7816534,-0.08913364,-0.5940749,-0.25817338,0.25341722,0.12898225,-0.0015512545,0.18762429,-0.03481652,0.4415388,-0.294138,0.09197469,0.025312642,-0.3723974,0.34864643,0.49908352,0.28840795,-0.42281356,0.54738784,-0.009646916,-0.0626234,-0.32065102,0.12861022,0.5680496,0.21339935,0.3828612,-0.15905373,-0.14518149,0.391503,0.72381324,0.19875552,0.51210374,0.0856314,-0.064049475,0.24716514,0.12505263,0.12807468,-0.015067053,-0.5111853,0.11650833,0.078442015,0.17221245,0.43897778,0.22461838,0.3298325,-0.079856604,-0.54807156,-0.008352783,0.27254286,0.07580965,-1.047095,0.33553636,0.19191168,0.7011975,0.59280384,0.010207955,0.10984766,0.57947665,-0.16229996,0.11157452,0.30103353,-0.13792774,-0.45798743,0.5242257,-0.69136506,0.2656222,0.00019705296,-0.04789816,0.014143201,0.030337684,0.20894416,0.63422775,-0.07911084,0.10062941,-0.20469227,-0.20575762,0.0137912175,-0.3290691,0.083909295,-0.42280146,-0.3213023,0.6271253,0.5936279,0.32304943,-0.20368738,-0.01607216,0.061621238,-0.05862346,0.30982164,0.033732597,0.13947207,0.09899362,-0.649602,-0.25718084,0.62185895,-0.05212075,0.022457393,-0.04305704,-0.20353368,0.26417476,-0.11120951,-0.019332035,-0.07614072,-0.53002244,0.05056756,-0.2834736,-0.13672669,0.6702764,-0.09852599,0.1759963,0.11497666,0.07914033,-0.14238434,0.1857983,0.07801273,0.7112854,0.25613752,-0.23767538,-0.53840774,0.03487587,0.04575965,-0.124032624,-0.03445673,-0.3548455,-0.017507546,-0.70104736,0.43876973,0.089888334,-0.1840279,0.33570644,-0.1774189,-0.011128541,0.52226156,-0.08896633,-0.18708672,0.10386754,-0.04162865,-0.23789702,-0.3069515,-0.12071499,0.22838749,0.1668053,0.22782122,-0.058256205,-0.023033356,-0.324519,0.39605764,0.22499739,0.3601993,0.33293256,-0.0020681422,-0.30892804,-0.093519196,0.20089372,0.27811795,-0.05673066,-0.1107234,-0.18192582,-0.5893775,-0.38908243,-0.13616124,-0.1277634,0.2339062,0.03480949,-0.2336041,0.7567647,0.04448085,1.2322123,-0.04609133,-0.2644611,0.042163834,0.5380977,-0.0057967105,-0.07900141,-0.30357686,1.029341,0.79063237,0.08655501,-0.12622698,-0.28013203,-0.22021346,0.06651563,-0.22174476,0.036319353,0.026857398,-0.5640405,-0.4578345,0.25090817,0.27743536,0.1076491,-0.089009896,-0.06275676,0.17187439,0.0014627735,0.2038243,-0.5492824,-0.21006377,0.15288404,0.3188575,0.06753626,0.15280706,-0.45622918,0.4565792,-0.49742663,0.073463134,-0.40795314,0.08946298,-0.096798845,-0.14096016,0.13517761,-0.025012696,0.33480084,-0.29539493,-0.3417171,-0.10448189,0.47784021,0.16410993,0.056099143,0.7629337,-0.19295433,0.10947601,0.03940787,0.41585886,0.9365104,-0.37217146,0.028399674,0.42416313,-0.394293,-0.56222916,0.18229252,-0.26523402,0.18273804,-0.09064816,-0.35357246,-0.4583772,0.202368,0.13854745,-0.077139966,-0.0092355255,-0.71526206,-0.13791175,0.32774657,-0.49720412,-0.26497194,-0.2315618,0.25933683,0.6131727,-0.3820639,-0.42115057,0.13172922,0.19271186,-0.113201536,-0.65272605,-0.20351133,-0.3459418,0.29279107,0.2033396,-0.349616,-0.07901616,0.11533293,-0.30938584,0.048928134,0.15113804,-0.37352258,0.009298013,-0.3501752,-0.16533707,0.8249993,-0.03553211,0.031087661,-0.7273216,-0.20191832,-0.90169305,-0.48497888,0.5696574,0.16400889,0.095435,-0.54369354,0.022447824,-0.0043430687,0.013435232,-0.18583913,-0.30299494,0.39527795,0.13986634,0.58321923,-0.2297597,-0.8090556,0.1291871,0.2373676,-0.12473986,-0.6230248,0.42312035,0.0023653985,0.85093176,-0.041884884,0.075425915,0.2695066,-0.64803225,-0.1503539,-0.31771126,-0.22487068,-0.669873,-0.0033644119,264 -176,0.33543125,0.038509443,-0.5511783,-0.16154903,-0.4019458,0.2131656,-0.35244113,0.22591016,0.15751213,-0.12894495,-0.16564336,0.13520412,-0.10746977,0.10811976,-0.09343075,-0.6635283,-0.11273635,0.053083654,-0.70350367,0.44928932,-0.39858848,0.5150918,0.102440245,0.35850528,0.056185532,0.33362362,0.20259193,-0.03787496,-0.15623602,-0.22624655,-0.23858987,0.36246482,-0.5784988,0.16607372,-0.28399208,-0.2709213,0.20082751,-0.36910668,-0.18946394,-0.7251998,0.030153103,-0.8647067,0.53674465,-0.19487973,-0.17645384,-0.038083266,0.34306067,0.27273205,0.012407986,0.12851661,0.23046026,-0.2990268,-0.12001557,-0.37371275,-0.27787292,-0.6706305,-0.32626212,-0.07251504,-0.9007455,-0.2204381,-0.10238172,0.25976267,-0.3565553,-0.19005013,-0.19842486,0.2712668,-0.3279552,0.033059463,0.1930953,-0.35549292,0.19648038,-0.5857957,0.12253116,0.04838705,0.49117675,-0.08075917,-0.15545015,0.39436337,0.32871303,0.2215175,0.2585824,-0.31664678,-0.28446123,-0.1392918,0.104020044,0.44588688,-0.28305295,-0.10536039,-0.27353486,0.17291382,0.6992802,0.5527161,-0.002255853,-0.117531225,-0.0570062,-0.09550647,-0.12639502,0.6676417,0.499506,-0.31558636,-0.22796421,0.5628822,0.48600137,0.38726503,-0.29599288,0.06975685,-0.15641509,-0.39554846,-0.046724375,0.2620648,-0.038356196,0.2632372,-0.023431571,0.10959825,0.7083622,-0.06584742,0.086468935,0.0090948185,-0.038812567,-0.05701039,-0.21047926,0.058407284,0.17394583,-0.547393,0.07352491,-0.2128322,0.7429382,-0.12210369,-0.6467542,0.28712374,-0.6068653,0.08621485,0.037378073,0.55171925,0.6004361,0.6098369,0.047339376,0.84584314,-0.18792626,0.13041328,-0.116672404,-0.38986132,0.10543515,-0.17903751,-0.0048074285,-0.5729917,0.16254574,-0.17000344,0.17900531,0.07899931,0.5048089,-0.6085005,-0.2194124,0.23037829,0.9697094,-0.29339167,-0.2303742,0.633062,0.9991812,0.7586707,-0.16247742,0.8835355,0.19177602,-0.08505611,-0.23614877,-0.22106346,-0.44695517,0.19701909,0.48475143,-0.28398374,0.3872375,-0.16042088,0.022537705,0.07446912,-0.12503494,-0.29758316,-0.10114827,0.25537986,0.1442949,-0.14138147,-0.313969,-0.1253262,0.07566101,-0.1296441,0.26328644,0.26022843,-0.23864917,0.347635,0.011547514,1.0659124,-0.1498968,0.08222203,0.21403731,0.46816933,0.527325,-0.045296006,0.18232705,0.5190685,0.33726475,0.032241743,-0.5194307,0.32983908,-0.5567238,-0.48484918,-0.11843201,-0.325229,-0.29868945,0.33331266,-0.4883491,-0.03586537,0.07483346,-0.2131996,0.4780217,-2.7287874,-0.20778589,-0.22884917,0.26809612,-0.42836004,-0.286893,-0.099240765,-0.51313883,0.27965716,0.23861817,0.485424,-0.44104654,0.3397486,0.489248,-0.5781179,-0.20229721,-0.5907551,0.08774522,0.04618965,0.4724197,-0.01535734,-0.20449114,0.02181304,0.14395393,0.67859113,0.11048896,0.14033714,0.44562158,0.46682623,0.005144426,0.21460356,-0.06704881,0.63990176,-0.1727981,-0.3177033,0.44272587,-0.26285484,0.4191109,-0.10700419,0.10014396,0.5975621,-0.30936012,-0.95888436,-0.48527515,-0.27416843,1.1898066,-0.42531985,-0.49116218,0.014080023,0.17727938,-0.13734478,0.13102095,0.5723787,-0.16844593,0.21592961,-0.5181468,0.09251539,-0.21518707,0.27320015,-0.029799897,0.00032635828,-0.20499822,0.6592369,-0.101637006,0.4892215,0.10027279,0.398733,-0.19747883,-0.4030875,-0.04105842,0.80286014,0.52095264,-0.092387706,-0.24028735,-0.2681636,-0.07398916,-0.08113572,0.13750753,0.6594809,0.66844994,-0.0190599,0.07058319,0.37051854,0.051433675,0.09494688,-0.20177661,-0.33395353,-0.13095336,0.07984645,0.42965683,0.4891213,0.016143251,0.55504835,0.010834223,0.2610712,-0.20557672,-0.63507766,0.6631904,0.5964723,-0.39740813,-0.1916378,0.618882,0.27906463,-0.3627743,0.3797497,-0.70484585,-0.30251476,0.6867346,-0.30391905,-0.60965836,0.1725893,-0.18230067,0.080470696,-0.7324347,0.33101144,-0.3871259,-0.4862431,-0.3554818,-0.101147585,-3.006986,0.049614284,-0.071625695,-0.084347576,-0.4593368,-0.19580011,0.32251146,-0.59885734,-0.6215052,0.031180209,0.12102529,0.62020683,-0.30772915,0.14453574,-0.30433884,-0.30990374,-0.087700725,0.36918387,0.13129093,0.19790694,-0.21741958,-0.16152042,-0.028144391,-0.0036711171,-0.46885183,0.2300672,-0.4091257,-0.3139504,-0.051841043,-0.39987782,0.03243462,0.4754259,-0.57086974,0.1904602,-0.22253452,0.29559854,0.009829649,-0.021320796,0.29328367,0.2586501,0.23301926,-0.15201983,0.1334527,-0.39447954,0.58822507,0.03777269,0.45150813,0.1746022,0.10972321,0.1271058,0.49453157,0.46608987,-0.2890664,0.9509446,0.089457236,-0.028316578,0.26609218,-0.28616163,-0.3112919,-0.69388074,-0.3212714,0.0039833607,-0.4481277,-0.49943265,-0.05062817,-0.27826282,-0.8944204,0.528919,0.04406418,0.6372233,-0.18992598,0.5417085,0.49762794,-0.30077258,-0.06031398,-0.02064567,-0.16898872,-0.40446845,-0.3760393,-0.6518868,-0.54263824,0.14894484,0.8512155,-0.43078765,0.07061676,-0.026559195,-0.0035037498,0.0943905,-0.103010304,0.095114574,0.055546377,0.49318746,0.055221993,-0.5414438,0.24795116,-0.13193664,-0.055859998,-0.5192691,0.30980644,0.603246,-0.63198036,0.38020977,0.41657394,0.08541563,-0.19581155,-0.7128447,0.03516179,0.14846468,-0.20446211,0.46737602,0.19292638,-0.79826456,0.48665315,0.10378923,-0.48930866,-0.6559483,0.33356714,0.053075746,-0.30624437,-0.052323055,0.5057304,0.27564156,-0.23561001,-0.09844845,0.1349033,-0.41424516,0.37689108,0.21053235,-0.060056046,0.32778308,-0.20047794,-0.47685316,-0.77953035,0.07059983,-0.57462555,-0.356717,0.34519,-0.17522141,-0.06890944,0.156712,0.069325946,0.48182628,-0.23172814,0.18346022,0.030629901,-0.21773608,0.53088444,0.44359916,0.49480724,-0.37976456,0.4063438,0.21900596,-0.3297206,0.37784413,0.18442623,0.5189732,0.0025991797,0.23894499,0.0062931855,0.015091014,0.40569344,0.5611267,0.20652172,0.33582917,-0.10911742,-0.20798923,0.27956542,0.0061796904,0.22058773,-0.18528949,-0.508921,-0.16750146,0.0056036157,0.06702502,0.65625745,0.22703613,0.3211134,0.18473168,-0.042759765,0.17044057,0.21077044,0.021525541,-0.8962115,0.35356444,0.3229489,1.0132148,0.09610876,0.23270363,-0.13698448,0.63049203,-0.2693381,0.06883137,0.47645944,0.14808497,-0.35678375,0.68042094,-0.6282442,0.34277728,-0.08722082,-0.067125395,0.19484851,0.09399101,0.33486253,0.94895375,-0.2243475,-0.05598475,-0.122168384,-0.17258969,-0.10804725,-0.062399514,0.083642654,-0.35935575,-0.46629485,0.5629547,0.30126092,0.32842624,-0.39469126,-0.08674454,-0.018730603,-0.20982365,0.17923428,-0.07819184,0.1654236,-0.059038617,-0.14173113,-0.23445146,0.5891112,0.060344253,0.11305191,-0.13288172,-0.15390533,0.006543088,-0.17129874,0.16178355,0.100114614,-0.5490568,0.02159946,-0.15568762,-0.64273345,0.2989898,-0.41532275,-0.005283153,0.13717124,-0.102240734,-0.08364304,0.286652,0.20419486,0.6738803,-0.073088184,-0.2763922,-0.43195668,0.23094667,0.17019787,-0.22813776,0.10006025,-0.19885081,0.119339384,-0.591258,0.40872127,-0.33942205,-0.46602526,0.058411513,-0.35953325,-0.15763906,0.45093155,-0.009018417,-0.10719221,0.17640534,-0.19396333,-0.44545138,-0.0055844425,-0.3292614,0.07362769,0.12628485,-0.22129449,-0.313116,-0.28727785,-0.30086577,0.17086884,-0.009100312,0.3519711,0.24853177,0.057972386,-0.26377138,0.045879956,0.29166776,0.36902612,0.106064275,0.24172334,-0.279746,-0.49805304,-0.38943145,0.24105437,-0.17148,0.19336864,0.07475156,-0.3573119,0.92691296,-0.059492763,1.1421237,0.051532935,-0.32640526,-0.06905996,0.6387464,-0.032478757,-0.017193783,-0.42266136,1.0496633,0.5921971,0.025864696,0.013797951,-0.2605127,-0.11229912,0.112390995,-0.40254968,0.013923287,-0.009252536,-0.5479622,-0.36634558,0.2633103,0.21926981,0.03940038,-0.017419461,-0.16917577,0.26498458,0.14634648,0.31913802,-0.61943024,-0.37827295,0.22876242,0.15628345,-0.24314196,0.23773588,-0.38771507,0.3407012,-0.7793377,0.12259688,-0.5063927,0.17561351,-0.08553517,-0.3779815,0.17729661,-0.27462584,0.31980452,-0.23375298,-0.45545676,0.047503598,0.21327002,0.09589898,0.10660746,0.5125672,-0.24471322,0.1739366,0.1357047,0.5714054,1.2438492,-0.31559798,-0.02150717,0.2796621,-0.3708644,-0.5935123,0.2332439,-0.49017587,-0.007828562,-0.12626635,-0.45546728,-0.1258532,0.24487768,0.08600057,0.200725,-0.015120292,-0.6856648,0.16747841,0.14033459,-0.28933463,-0.11614492,-0.11918925,0.444698,0.89680964,-0.27814877,-0.351798,0.045781843,0.34794775,-0.2217103,-0.5377565,0.11107335,-0.12985498,0.23396228,0.1317945,-0.39595887,0.02568899,0.18287484,-0.47354606,0.16731198,0.26889223,-0.24022913,0.07901821,-0.0010414998,0.16081661,0.64336723,-0.34104827,-0.20272551,-0.600672,-0.49662146,-0.8616828,-0.51999414,-0.12416803,0.30463612,0.012962723,-0.55667424,0.041924775,-0.3974617,-0.2695165,0.0011483788,-0.5236296,0.2552316,0.16909094,0.7052005,-0.48375008,-0.97589177,0.2220786,0.062230572,-0.10222726,-0.7096885,0.5777778,-0.23208007,0.79673743,0.036858644,-0.21589524,0.12009928,-0.5521505,0.1633705,-0.4991145,-0.16155474,-0.92062706,0.24230862,276 -177,0.5132426,-0.20587578,-0.3901839,-0.2412356,-0.24393067,0.39925066,-0.25731725,0.29161617,0.28347427,-0.2237842,0.042324033,0.00796235,-0.17334096,0.30158898,-0.22034216,-0.8733032,-0.044877674,-0.106335245,-0.727639,0.55040646,-0.536184,0.4215876,0.05436675,0.24298699,0.063174464,0.24662942,0.29546687,-0.008082262,-0.09463754,-0.13092825,0.075741895,0.34293702,-0.6828794,0.20223314,0.06926853,-0.13060787,-0.09727914,-0.38909715,-0.2259853,-0.76032215,0.4649068,-0.6127435,0.4659317,0.05390032,-0.38728186,0.17444697,0.14786415,0.08607909,-0.3006141,0.025280707,0.24975269,-0.2467665,-0.010213274,-0.11135366,-0.1319678,-0.6110503,-0.6416544,-0.040125377,-0.76969075,-0.10681126,-0.25459424,0.25161105,-0.41886976,-0.17956187,-0.13852994,0.6892612,-0.3669843,-0.09188948,0.3473404,-0.30912212,0.044397715,-0.6944335,-0.10379167,-0.1292716,0.24683383,0.16167362,-0.18021949,0.38695845,0.29503724,0.535183,0.14452846,-0.48207992,-0.25937566,-0.2070062,0.14108585,0.36160058,-0.03160562,-0.43593714,-0.2560727,-0.03251125,0.29550898,0.20135999,0.12429092,-0.24531978,-0.012790878,0.016006334,-0.06621535,0.61221343,0.5640994,-0.387051,-0.34615728,0.42913282,0.5262897,0.1473206,-0.15154754,0.02895058,-0.14032859,-0.52704656,-0.19446765,0.34909722,-0.101721086,0.4523492,-0.18139654,0.096976675,0.77542037,-0.25458872,-0.008484292,0.09078132,-0.024049483,0.03733647,-0.10252043,-0.04893371,0.1647776,-0.45635742,-0.12939726,-0.34368333,0.75230044,0.1203841,-0.6927091,0.3537046,-0.3526699,0.18484922,0.071612395,0.7678453,0.9193726,0.38251457,0.17822312,0.946641,-0.3926426,-0.000978748,-0.019753141,-0.3224481,0.112134345,-0.17167841,0.23270443,-0.5566718,0.14183864,0.069354214,0.04813111,-0.031996045,0.42497545,-0.5611543,-0.23296185,-0.010238314,0.4793445,-0.3037173,-0.13534458,0.7630006,0.97525734,0.9795694,0.012947644,1.2053457,0.23352405,-0.015832882,-0.026243674,-0.4322437,-0.45202303,0.24137177,0.3137619,0.38520396,0.44438535,0.021034218,-0.029526567,0.46939087,-0.3312748,-0.071022585,-0.0264953,0.46918732,0.085844584,-0.10035101,-0.25377408,-0.17067783,0.22501001,0.08130493,0.13198854,0.31479844,-0.24192633,0.4161291,0.06829448,0.97594833,-0.07449393,0.13565117,-0.047887847,0.3214164,0.23118669,-0.03191447,0.023400612,0.4397331,0.2998662,-0.036961015,-0.6401757,-0.01880515,-0.457332,-0.4039549,-0.13655359,-0.41046378,-0.16823,-0.103345625,-0.3396191,-0.16209862,0.07606958,-0.33256614,0.45615566,-2.6572392,-0.16587977,-0.21225865,0.2813782,-0.21570824,-0.27806014,-0.2807869,-0.5573687,0.25697103,0.48155424,0.38563377,-0.6522633,0.26978585,0.37587655,-0.45114416,-0.015762258,-0.6695892,0.04987555,-0.13787104,0.5596818,-0.066107996,-0.1983503,-0.055582453,0.33930275,0.72405994,0.2550672,0.078760415,0.22717243,0.55605197,-0.27838224,0.4711117,0.0078393305,0.5136975,-0.3132081,-0.15201798,0.46184438,-0.5960289,0.49233726,-0.08831741,0.1466934,0.46444505,-0.19580005,-0.8545135,-0.46870872,-0.2874146,1.333673,-0.42085066,-0.43180797,0.1972736,0.05303342,-0.09780001,0.0027299703,0.57072324,-0.023710625,0.081436664,-0.62824,0.020608593,-0.14423643,0.028404547,-0.25283945,0.3158379,-0.35098475,0.7451233,-0.12275295,0.47222778,0.24566802,0.16337799,-0.37466052,-0.47009212,0.03464221,0.91788226,0.47718492,0.01657589,-0.13197379,-0.28237692,-0.20428911,-0.30742452,0.06220662,0.7105649,0.73922265,0.076974966,0.18953416,0.33062685,-0.23355958,0.12659429,-0.14891662,-0.3054681,-0.17716987,0.1363612,0.55385953,0.4752838,-0.28468698,0.33622074,-0.009770856,0.11494614,-0.09708508,-0.5608517,0.41417858,0.699519,-0.2834793,-0.16404317,0.41584572,0.3335398,-0.45121717,0.54796016,-0.54365546,-0.3932008,0.71455234,-0.11055014,-0.48109868,0.12316526,-0.3425978,-0.0123076625,-0.79703003,0.38817507,-0.1988403,-0.5236714,-0.5063587,-0.2820915,-3.331853,0.08064154,-0.27766138,0.037978698,-0.20509528,-0.13586071,0.2268392,-0.61930925,-0.513817,0.0138741415,0.07790586,0.5102366,-0.1789302,0.0184834,-0.2572586,-0.3141631,-0.2526747,0.31857154,0.035693742,0.2772145,-0.11749828,-0.2557749,0.32434577,-0.17018303,-0.40718,-0.05230306,-0.41587108,-0.65853083,-0.0011490623,-0.5184734,0.01192869,0.74394625,-0.35671866,-0.030122865,-0.24626032,0.07804727,-0.00026202004,0.2609492,0.18104966,0.19494042,0.12018696,-0.15321824,-0.11434846,-0.42171523,0.3421604,0.031583305,0.36047807,0.6110965,-0.09337635,0.304142,0.59849226,0.5835696,0.028246025,0.854369,-0.01091819,-0.13554773,0.37443766,-0.19709644,-0.2183368,-0.68523675,-0.4378171,0.015339887,-0.5122446,-0.4437746,-0.2666145,-0.38447347,-0.85098904,0.4159736,-0.06533666,0.4061047,-0.42533195,0.3966714,0.39035594,-0.1683461,0.08790496,0.01850239,-0.33836567,-0.45986626,-0.4007395,-0.6232507,-0.5488692,0.29567567,0.88755393,-0.34217393,-0.27772823,-0.11944563,-0.20459591,0.09571756,-0.008734749,0.3102327,0.10735848,0.2831952,0.118569754,-0.67955714,0.49569565,-0.27401918,0.07179336,-0.5452168,0.09754805,0.5681012,-0.57963437,0.5604995,0.44597244,0.08912226,-0.015874136,-0.67706126,-0.1200792,0.29654044,-0.16434231,0.5327744,0.20113815,-0.5368748,0.48498413,0.048200972,-0.25186262,-0.5629016,0.5145111,0.045202628,-0.14632536,0.07734146,0.530969,0.18993686,-0.06424959,-0.044612598,0.36971715,-0.57754415,0.38835323,0.19594008,0.062162016,0.47674438,-0.08119988,-0.5130247,-0.6801052,-0.18328567,-0.66725415,-0.2827238,0.19990936,0.06278723,0.13279694,0.13580634,0.09079407,0.5688021,-0.19664091,0.13163643,0.054525163,-0.30664256,0.68665427,0.59762025,0.4121626,-0.4478312,0.64102435,0.18883155,0.01683959,0.11263867,-0.07880899,0.5309664,0.1732941,0.3731361,-0.0074408976,-0.02134178,0.25544256,0.53518695,0.2658208,0.30992278,0.07551976,-0.3537544,0.25738394,0.0839535,0.17646927,-0.18010172,-0.31927994,-0.1211717,0.105960384,0.14130113,0.4943615,0.16256252,0.3095831,0.098240234,-0.04783873,0.19616003,0.13036211,-0.1799563,-1.1561196,0.30986378,0.2731009,0.70911,0.3820366,-0.03535957,0.060739633,0.4144227,-0.40574,0.023383278,0.54711056,0.048393328,-0.4921479,0.55603725,-0.45903784,0.6006287,-0.2928588,0.060450904,0.06523884,0.2469431,0.3841678,0.8371367,-0.1551505,-0.13161825,-0.09407434,-0.37745965,0.3070138,-0.30082285,0.2815529,-0.53809905,-0.23754588,0.5309729,0.4298221,0.24465384,-0.15604068,-0.14541125,-0.0050073387,-0.2624923,0.17966333,-0.26208237,-0.070440575,-0.24256884,-0.62370074,-0.31497005,0.37804762,-0.1987588,-0.003043727,0.07430612,-0.19203536,0.2469234,-0.09140722,-0.036367543,-0.07857403,-0.74862665,-0.13815647,-0.25521123,-0.66385144,0.3561737,-0.53617823,0.26559445,0.35749295,0.041519698,-0.46255904,-0.025266973,0.12219657,0.7569516,-0.0655088,-0.21550855,-0.4527476,0.08227395,0.23592806,-0.3791856,0.040995333,-0.23261572,0.31428868,-0.5093518,0.4422526,-0.38087174,-0.29162642,-0.11539249,-0.28892526,-0.15853582,0.53647345,-0.33733508,-0.103839144,0.01812039,-0.15026553,-0.1435112,0.10919941,-0.39763257,0.31951335,0.048328295,-0.0019010444,-0.08278193,-0.1690273,-0.009087475,0.29380593,0.08322593,0.0074851355,0.4125576,-0.036427684,-0.47089857,0.028511949,0.20993654,0.49234647,0.30072436,0.0037050168,-0.37684292,-0.38824204,-0.44761154,0.47376123,-0.19093736,0.15015984,0.11013939,-0.47826445,0.86020446,0.11699426,1.1934065,0.1334456,-0.3478367,-0.055123515,0.70976615,0.13382418,0.06970655,-0.31506407,0.97371763,0.5232597,-0.16681153,-0.12662353,-0.5190557,-0.034099396,0.24728544,-0.43375424,-0.18749514,-0.2576766,-0.6647925,-0.13663583,0.19539373,0.117346145,-0.005953312,-0.1429073,-0.3090266,0.11074201,0.21077436,0.5073777,-0.6357212,-0.13509555,0.27108485,0.059121355,-0.08224145,0.24405119,-0.39317033,0.42754677,-0.8660352,0.2708903,-0.33283654,0.119829245,-0.13466407,-0.29626915,0.27971324,-0.01632762,0.2503793,-0.2724839,-0.56911534,-0.09241776,0.54152095,0.35062817,0.2396258,0.7199857,-0.2642147,-0.12390446,0.09126508,0.5888625,1.3744768,0.03958664,0.021272313,0.18601039,-0.34689537,-0.8646332,0.12770186,-0.59652257,0.010106995,-0.19293782,-0.29120365,-0.36221126,0.3302971,0.09515678,0.050161894,0.09451272,-0.6354393,-0.30909175,0.23448631,-0.35691544,-0.17092495,-0.3008484,0.19812168,0.7429244,-0.53104204,-0.31238538,-0.12656608,0.38318792,-0.2792696,-0.7004627,0.1586097,-0.21531053,0.4545992,0.17403619,-0.26515144,-0.0036601503,0.3566698,-0.52788234,0.23942131,0.40489987,-0.2968222,-0.060632993,-0.14194365,0.033640996,0.85887057,0.09607807,0.19188179,-0.51263314,-0.34533086,-0.88017386,-0.32439786,0.15718533,0.039325994,-0.10180918,-0.5138111,-0.12431045,-0.1964569,0.08326359,0.061341826,-0.5514437,0.3236056,0.08981296,0.41788575,-0.09343829,-0.86895114,0.011692842,0.0325492,-0.11179741,-0.5515013,0.6029986,-0.19077459,0.64843017,0.18276101,0.019948727,0.078195095,-0.76706225,0.28184783,-0.3351192,-0.21785161,-0.53671646,0.2671424,277 -178,0.35682166,-0.08431549,-0.5117055,-0.05524942,-0.028130343,0.24226804,-0.026480397,0.55399734,0.14843208,-0.2741347,0.06808798,-0.19246672,0.13851953,0.5764382,-0.05446295,-0.5451375,0.05017261,0.20231156,-0.54498297,0.5638672,-0.41106194,0.3244153,-0.07977487,0.35276395,0.08353947,0.38651514,0.10081795,-0.23761123,-0.35757744,-0.05559682,-0.15749684,0.18627763,-0.2959924,0.04472113,-0.1332513,-0.22779022,0.025361378,-0.362456,-0.40784505,-0.5099183,0.21158367,-0.56435186,0.50434357,-0.08646546,-0.2147307,0.39094037,0.10357317,0.41241783,-0.36903068,-0.09367068,0.16336253,-0.037888743,-0.04743854,-0.27856585,-0.3008098,-0.54851025,-0.52652633,0.11367122,-0.45823854,-0.23371635,-0.16347538,-0.015706522,-0.24266586,-0.10174342,0.09229908,0.3203458,-0.41585132,0.07029692,0.11594384,-0.112787455,0.019612273,-0.45916313,-0.11455155,-0.04880055,0.40663406,-0.28045967,0.018128224,0.36922577,0.23697786,0.45079234,-0.10516045,0.016444704,-0.3864551,-0.066131525,0.032941926,0.6015422,-0.15835902,-0.6842012,-0.028195662,-0.017873289,0.02016686,-0.0005148093,0.11552186,-0.15198082,-0.14294602,0.012749481,-0.24944697,0.3863848,0.3443024,-0.4158294,-0.23789838,0.5122417,0.45544967,0.19683532,-0.16788228,-0.1989773,-0.021564452,-0.47867998,-0.13576266,0.04042323,-0.141018,0.503002,-0.075662054,0.27099672,0.60613173,-0.13088027,0.020917369,-0.04912177,0.02530812,-0.033829447,-0.040326696,-0.10670454,0.06799438,-0.34199312,-0.06570171,-0.113684975,0.6159346,0.21404597,-0.65024936,0.51054126,-0.47738683,0.08856066,0.014904837,0.34027764,0.50251675,0.35300273,0.14237629,0.43741935,-0.32415548,0.11854318,-0.10903911,-0.3973779,-0.009707161,-0.14165512,-0.09068293,-0.63933396,0.18568465,0.17273384,-0.027197909,0.18231727,0.3167015,-0.4946762,-0.0765145,0.1962114,0.9425849,-0.31322557,-0.22866316,0.63133657,0.96637666,0.69251126,-0.12013844,1.0734026,0.18658923,-0.31606388,0.24434285,-0.6017595,-0.5262156,0.1854268,0.29904038,-0.45147845,0.45002452,0.06076348,0.0046296436,0.3068332,-0.13704461,0.14825651,-0.08360573,0.05588681,0.09873216,0.0014418374,-0.40479133,-0.3646026,-0.12917764,-0.17497677,0.30892977,0.35234278,-0.22631897,0.4057823,-0.10590356,1.9072887,0.13967685,0.1421081,-0.021807408,0.53102654,0.16415091,0.026697647,-0.25401056,0.48314407,0.24069403,0.10153753,-0.42387295,0.12403634,-0.32702643,-0.6075827,-0.07196275,-0.3533704,-0.0692362,-0.1048559,-0.50611985,0.0026560624,0.024966994,-0.23279001,0.53587526,-2.9859436,-0.3499257,-0.120982744,0.26078472,-0.34807694,-0.38844416,-0.18831877,-0.36588657,0.25550753,0.2705674,0.45775017,-0.60082066,0.4506738,0.17229304,-0.39660186,-0.24625778,-0.44856384,-0.066102184,0.028962938,0.35536423,-0.22419192,-0.019552402,0.19509482,0.25723344,0.36145046,-0.23601566,0.032594852,0.24163647,0.31931293,0.2521818,0.31766054,-0.17065634,0.6150967,-0.22716975,-0.12519574,0.14833052,-0.29803494,0.28875872,-0.024229297,0.16131543,0.24498703,-0.3580082,-0.86483425,-0.4034142,-0.018969735,1.148719,-0.15724903,-0.1602753,0.16684748,-0.3382862,-0.23890771,-0.113807835,0.4006542,-0.012283627,-0.07588177,-0.59330285,0.15158369,-0.039690915,0.11237952,0.010257278,0.08130991,-0.33426479,0.44527677,-0.01176249,0.49248543,0.28205603,0.17415921,-0.23356776,-0.23708245,0.04818075,0.8373668,0.2053731,0.1305316,-0.09678423,-0.21528868,-0.49293435,-0.12951349,0.12958576,0.40558186,0.49612173,0.046094958,0.017351035,0.23840974,-0.0036772809,0.11550756,-0.12357731,-0.20368932,-0.058217604,0.023961056,0.46656975,0.49753806,-0.3730992,0.749132,-0.100977674,0.17866193,-0.26955223,-0.35823002,0.50902164,0.73023224,-0.2719951,-0.16099453,0.39900988,0.47824675,-0.3010636,0.33986396,-0.46234357,-0.27405798,0.54007596,-0.2883417,-0.22727808,0.3369307,-0.2130599,0.14630213,-0.96759623,0.14464168,-0.09072841,-0.38761607,-0.41943935,-0.048591223,-3.5219138,0.1187543,-0.14936489,-0.20890222,-0.027283179,0.013161222,0.01088083,-0.6172448,-0.38181254,0.15450433,0.10541025,0.5789402,-0.05495337,0.0930782,-0.24092008,-0.34671083,-0.15885776,0.12415637,0.002184546,0.43420845,0.0029427768,-0.51599824,-0.08673219,-0.24026394,-0.3412316,0.15910009,-0.6935844,-0.34406212,-0.12078501,-0.5706411,-0.27465147,0.7212412,-0.3938952,0.043950405,-0.17977743,0.09698747,-0.074236825,0.3146247,0.03718468,0.039157227,0.049027465,-0.100716814,0.19558683,-0.35952696,0.2164503,0.0964225,0.37520313,0.2935222,0.056729242,0.19072527,0.61099476,0.69849205,-0.04390152,0.6519087,0.3840918,-0.20107909,0.3625731,-0.41601476,0.015138475,-0.36728314,-0.5182315,-0.041024014,-0.3467291,-0.548448,-0.17320925,-0.34915859,-0.64463574,0.47745126,0.0010862033,0.010383886,-0.054366715,0.31911546,0.53701705,-0.31601626,0.12385186,-0.06329331,-0.10785052,-0.47918633,-0.22531518,-0.55528486,-0.39802495,0.27311847,0.8825386,-0.19930027,-0.015920162,-0.092912816,-0.34883007,-0.10155072,0.017399943,0.1868427,0.21104997,0.27553794,-0.39030063,-0.5998377,0.44242477,-0.3056982,-0.15135159,-0.45235318,0.10692315,0.53769416,-0.5030742,0.58024484,0.34798247,0.003673911,-0.015488625,-0.3102541,-0.12723936,0.11073933,-0.066262454,0.07187731,-0.03479139,-0.7853321,0.31050593,0.3103956,-0.37496078,-0.5974818,0.6137219,0.023335127,-0.30237898,-0.15870266,0.30188408,0.2776473,-0.06821828,-0.3505433,0.17063287,-0.5413786,0.18947825,0.28227144,0.030145725,0.35062402,-0.10557842,-0.17972231,-0.69926465,-0.0834619,-0.33481494,-0.2483823,0.24865483,0.19753863,0.27876347,-0.05055284,0.0055091144,0.17630528,-0.5061981,0.014771719,-0.005456372,-0.2450081,0.31234166,0.22423549,0.3787566,-0.5163826,0.5267118,-0.066563666,0.017195094,0.105884805,-0.06510362,0.53577316,0.17113806,0.2497882,0.05700772,-0.34555054,0.31541732,0.6985992,0.26644394,0.28010896,0.12981184,-0.24042676,0.12528335,0.076195754,-0.048200987,0.1327499,-0.37688047,0.010546748,0.023389084,0.1680536,0.43186733,0.19018342,0.31962177,-0.030456575,-0.38151786,0.06402751,0.13136058,0.050089043,-1.082048,0.39108133,0.2880675,0.69546735,0.2420811,0.055830274,0.04892093,0.5944933,-0.23062037,0.1892121,0.3325929,-0.22979529,-0.5521476,0.49610907,-0.63525,0.58107215,0.08767522,-0.08322924,0.18225734,-0.089025564,0.3219036,0.7837425,-0.16039696,0.07703808,0.18776314,-0.38452265,-0.030146424,-0.25850278,0.031119445,-0.6418406,-0.11809946,0.48697993,0.3898855,0.28486055,-0.099373385,0.044854205,0.15657431,-0.120416954,0.038755614,0.10125236,0.31235516,0.036741924,-0.71812755,-0.19222078,0.47739208,-0.070214346,0.15733074,0.1518886,-0.22523095,0.34492296,-0.26118988,-0.024124483,-0.018431846,-0.49452004,0.032819383,-0.23611546,-0.3957494,0.586051,-0.0726254,0.37537614,0.123838894,0.054902628,-0.24505372,0.6006085,0.020849522,0.7265232,-0.13528925,-0.3095253,-0.40151742,0.144121,0.19835348,-0.16102359,-0.008785526,-0.29311875,-0.04780736,-0.48836604,0.29996726,0.0006783962,-0.10482333,-0.16213067,-0.10684968,0.1522026,0.37469372,-0.024061957,-0.06854281,-0.17476615,-0.029352598,-0.21495943,-0.045568123,-0.1827227,0.26834244,0.40161842,-0.08524516,-0.17889513,-0.0942674,-0.025764827,0.4154161,-0.051287115,0.3168309,0.30750397,0.21508308,-0.026544753,-0.16810183,0.2554812,0.3025009,-0.032200906,-0.040760357,-0.39784083,-0.21147601,-0.28636837,0.13485247,-0.21866553,0.22936265,0.23959808,-0.21318096,0.64610636,-0.13446766,1.1534237,0.13889411,-0.26645273,0.07829612,0.43797845,0.11232731,0.09800069,-0.3156415,0.99724555,0.49132118,0.08189013,-0.23939537,-0.39368722,-0.14130355,0.19399491,-0.24724264,-0.27243978,0.10890748,-0.4359891,-0.39702842,0.3205486,0.06459442,0.41588366,-0.09508808,0.16612636,0.20515701,0.15169574,0.24280411,-0.47681573,-0.19457947,0.3618184,0.34487504,-0.00029233296,0.20914592,-0.44665578,0.41712603,-0.47870454,0.09543942,-0.23698281,0.12318972,-0.15280147,-0.3291832,0.22944085,0.11820392,0.2637566,-0.29025808,-0.40046594,-0.21782564,0.40854982,0.07009199,0.050722416,0.45994127,-0.2222731,-0.08108715,0.053039763,0.4876057,0.8880024,-0.24305582,-0.03892083,0.56054837,-0.21847671,-0.6506271,0.24641185,-0.17330573,0.28819996,-0.16656433,-0.08858991,-0.6039754,0.4174395,0.15258953,0.0037312687,-0.081811875,-0.34118965,-0.19483082,0.24028978,-0.309935,-0.29760277,-0.3201222,0.17915888,0.68638813,-0.31613356,-0.3185282,0.18814301,0.24723966,-0.20382638,-0.5625999,-0.034879874,-0.39129952,0.23190175,0.10833203,-0.28961554,-0.2228608,-0.0094291605,-0.28149897,0.3404952,0.34484679,-0.3985525,0.043578062,-0.32473382,-0.1563688,0.9505174,-0.1730562,0.33529076,-0.48057353,-0.42813063,-0.77333224,-0.625029,0.4424649,0.047300447,-0.16116263,-0.6037222,0.032185834,-0.009570781,-0.37966785,-0.05494895,-0.36163524,0.3489407,0.07257804,0.14478116,-0.14537692,-0.72146815,0.11391703,0.14978947,-0.33891094,-0.60966986,0.3364127,-0.11171642,0.9089728,0.03925944,0.13480473,0.47564444,-0.31072408,-0.2071205,-0.31813633,-0.002229474,-0.51562035,0.15356609,286 -179,0.38292173,-0.28614464,-0.37696794,-0.014990078,-0.23727332,0.1113466,-0.047057908,0.5063908,0.21125983,-0.40290174,-0.1610759,-0.30489957,-0.0024436892,0.3783602,-0.22549537,-0.4257449,-0.099076316,0.22281061,-0.5055714,0.49976826,-0.487062,0.16847102,0.09098374,0.40641102,0.19798294,0.036086004,0.199811,-0.17424652,-0.34460232,-0.19308329,-0.27111626,0.26914394,-0.5172828,0.17089953,-0.17912555,-0.32692146,0.022410832,-0.45999655,-0.25932708,-0.6974771,0.31259096,-0.6896164,0.32255659,0.07471355,-0.25267133,0.45718,-0.008002639,0.3292548,-0.283557,-0.13895202,0.11039068,-0.18510157,-0.04808885,-0.185865,-0.1088857,-0.14922899,-0.7318277,0.21491213,-0.30899173,-0.21450275,-0.39755613,0.26586196,-0.2647129,-0.07002356,-0.14982493,0.4770384,-0.41753674,0.14740826,0.03445879,-0.059493043,0.111468405,-0.5132446,-0.21516947,-0.033000838,-0.0020831784,-0.11732993,-0.08431087,0.24940348,0.26659867,0.57732195,-0.03653344,-0.14565611,-0.41771343,-0.0461244,0.053608913,0.4637202,-0.10895276,-0.64406306,-0.098416105,-0.010516803,0.07272582,0.060610987,0.088068455,-0.2023432,-0.22451067,-0.12372741,-0.25904953,0.29107162,0.4543305,-0.33477396,-0.38143715,0.3118197,0.51218265,0.10504245,-0.07178025,-0.13054334,-0.034913514,-0.6486637,-0.13023771,0.103421874,-0.18110034,0.55337334,-0.17558031,0.2171255,0.67973405,-0.2090324,-0.08752734,0.040941563,0.04485206,-0.05159665,-0.26148328,-0.24577647,0.17242931,-0.33045655,0.17354873,-0.25903234,0.94886845,0.0051161707,-0.85989445,0.347156,-0.49310488,0.2435678,0.05532845,0.5445198,0.50546134,0.38789508,0.49670085,0.5318683,-0.4097084,0.13261627,-0.10392303,-0.2715823,-0.07924709,-0.25237685,-0.0047151884,-0.43525633,0.113199905,-0.15709537,-0.14570114,0.024376867,0.42680356,-0.6218373,-0.050229263,0.15937765,0.7651337,-0.2591125,-0.12142076,0.7651177,0.95445925,1.1601541,0.0029825629,1.0980166,0.41009998,-0.31845322,0.16791034,-0.42174816,-0.6852711,0.27419332,0.2942271,0.13771346,0.13635498,0.022659509,-0.13102953,0.3275449,-0.47304657,-0.033806026,-0.25162974,0.16236454,0.1676,0.052374262,-0.38673294,-0.416708,-0.028139288,-0.030009143,0.049642883,0.27979326,-0.22545497,0.44449025,0.001328969,1.8045827,0.03167876,0.12527063,0.16972958,0.51249814,0.038651023,-0.11929958,-0.043476734,0.27918848,0.31940964,0.01898427,-0.56181353,-0.03138382,-0.28517812,-0.49979323,-0.092789896,-0.17541781,-0.13276027,0.06390868,-0.48564723,-0.23630132,-0.1423185,-0.262864,0.48879433,-2.6435065,0.077524275,0.013203204,0.28386518,-0.30875415,-0.39674366,-0.0029345988,-0.5531073,0.37870756,0.36347163,0.4184449,-0.7035629,0.3242056,0.2397008,-0.4877098,-0.07954062,-0.66565406,-0.14265057,-0.0432525,0.32781842,0.025636578,-0.05793653,-0.068444245,-0.06783767,0.5607775,-0.12401797,0.0805482,0.3436283,0.29807675,0.08767298,0.4140138,0.20959595,0.35597643,-0.28639802,-0.11584555,0.43631613,-0.43320644,0.2376595,0.005737555,0.08556327,0.4041784,-0.5327339,-0.8174076,-0.68271446,-0.15310937,1.2468317,-0.07742769,-0.32635644,0.2520444,-0.18224022,-0.17795865,-0.12808737,0.31197053,-0.15223384,-0.19854736,-0.75497067,0.043521926,-0.020085605,0.30280888,-0.009339013,0.0048346915,-0.36703163,0.70338744,-0.14779715,0.2505505,0.31742492,0.19920379,-0.41383582,-0.4514008,0.104663596,0.87165326,0.32038802,0.13877042,-0.23256226,-0.29999486,-0.3174736,-0.089665435,0.03820363,0.3781463,0.67004216,0.009829418,0.14135768,0.30156943,-0.04824029,0.10096017,-0.18353789,-0.22326796,-0.13843937,-0.011926616,0.65420777,0.690787,-0.1662013,0.3803927,-0.09195159,0.24354863,-0.0595475,-0.41753742,0.5301796,0.8214881,-0.038347792,-0.17071919,0.52082473,0.52657336,-0.25136802,0.36867124,-0.55594516,-0.3153165,0.587327,-0.1709533,-0.42309922,0.08638762,-0.29149562,-0.013691177,-0.80480456,0.35924146,-0.14863475,-0.43292174,-0.7861738,-0.14588885,-2.666061,0.27088395,-0.36328268,-0.15478767,-0.025748687,-0.06304407,-0.013247579,-0.6066354,-0.4020134,0.02797722,0.15345973,0.44646612,-0.007580894,0.19307038,-0.27261856,-0.23602708,-0.49923512,0.1176776,0.07981933,0.29160598,0.028315729,-0.39607996,0.08379304,-0.21564649,-0.3344622,0.06363108,-0.56015146,-0.55733496,-0.15817174,-0.43195215,-0.3819116,0.65051883,-0.3802633,-0.05245595,-0.15514204,-0.032761805,-0.050826807,0.3467695,0.15925704,0.11301262,0.07227779,-0.15039288,-0.015544945,-0.29352936,0.28834465,-0.0020017277,0.23393819,0.42496985,-0.16197824,0.18109417,0.3028446,0.6700653,-0.15793352,0.77625155,0.48889634,-0.09043649,0.25274733,-0.21453302,-0.16701375,-0.48087153,-0.21129146,0.008330652,-0.41022378,-0.40384388,0.045219526,-0.30530152,-0.6976567,0.4353753,-0.107909,0.10260806,0.006016135,0.31875992,0.56236136,-0.074837156,-0.07302942,-0.1415191,-0.027035965,-0.4797488,-0.43453434,-0.7136055,-0.4533602,0.08660597,1.0612683,-0.037080575,-0.05860363,0.017772608,-0.30364367,-0.1650245,0.06708612,-0.083533205,0.20100619,0.38603124,-0.20433696,-0.66039693,0.4971491,0.031700753,-0.23470841,-0.51891387,0.19638006,0.57344234,-0.46234852,0.48493055,0.30904242,0.111288644,0.1101508,-0.49507505,-0.22967501,-0.07863211,-0.1825586,0.32485187,0.2279089,-0.5742358,0.396308,0.28445616,-0.21146312,-0.87500066,0.2440755,0.08100302,-0.3517102,-0.06229552,0.28050846,0.18156436,0.100083224,-0.22843699,0.20783488,-0.56454164,0.37597302,0.22029908,0.00027012627,0.06576814,-0.31607014,-0.24225919,-0.6338464,0.019051163,-0.5154285,-0.34548122,0.2639521,0.15054925,0.0011654755,0.20037784,0.027595885,0.3153277,-0.21624945,0.01709064,-0.05402718,-0.08851888,0.21641888,0.42836288,0.4235454,-0.43122613,0.64051807,0.078556724,-0.112981,-0.18465458,-0.024912516,0.41862786,0.055436738,0.38975862,0.03657471,-0.261309,0.39968282,0.59296316,0.25697955,0.5240983,0.025177483,-0.2232974,0.39694202,0.041458424,0.15832955,0.04444973,-0.42073473,0.102965236,-0.20712735,0.14607774,0.43759176,-0.004261718,0.3884885,-0.10199157,-0.07974078,0.14782982,0.21218467,-0.16672882,-0.9753288,0.19303153,0.15384197,0.87257767,0.57980794,-0.10311658,0.14442499,0.82925016,-0.30983672,0.11344767,0.34667987,0.14438018,-0.59718525,0.7028158,-0.6442916,0.41446722,-0.24986942,0.00013910333,-0.0306003,-0.018801233,0.4384675,0.6284666,-0.17484428,-0.066179946,-0.040970586,-0.3218385,0.04876353,-0.3510264,0.33275643,-0.477315,-0.25261468,0.6125796,0.47602668,0.27351582,-0.11267241,-0.006776625,0.09182198,-0.15848665,0.17185242,0.024253365,0.10660351,0.13016947,-0.7340922,-0.18016765,0.5153489,-0.09659571,0.30661917,0.08080881,-0.22062367,0.29121315,-0.25200096,-0.22664127,-0.06854465,-0.5364304,-0.021243043,-0.17642498,-0.3172704,0.4419867,-0.19378062,0.27912143,0.1960001,0.13224427,-0.41770038,0.11064735,0.14185213,0.73761547,0.08290682,-0.061276145,-0.34019077,0.26473388,0.18684247,-0.13026637,-0.12179233,-0.12726338,-0.07536848,-0.6724422,0.41201574,-0.07410946,-0.35316727,0.0031536182,-0.17684291,-0.023418497,0.5856292,-0.025966056,-0.08506577,-0.027442273,-0.1306603,-0.19780664,-0.06307883,-0.043579288,0.33198205,0.14235406,-0.027478313,-0.020399518,-0.014012039,-0.13530813,0.44121674,0.0067160707,0.30030334,0.204957,0.003682526,-0.43299535,0.023375038,-0.09719003,0.45417908,0.14131026,-0.22008681,-0.24009632,-0.2854505,-0.2992047,0.18437344,-0.13865058,0.25973117,0.15835562,-0.34948015,0.89394796,0.036812544,1.289223,-0.016314339,-0.2685436,0.07110251,0.532343,0.099677406,0.10267544,-0.43487653,0.8628309,0.45960292,-0.109352276,-0.11560738,-0.25838566,0.025934378,0.2747617,-0.13332805,-0.15087897,0.006234765,-0.6066421,-0.27406844,0.17560135,0.23601188,0.1441443,-0.13247217,-0.030143023,0.22837208,0.05956584,0.5358328,-0.35430706,-0.16046849,0.24345109,0.26048303,0.009712419,0.20566498,-0.42555496,0.3759934,-0.5567153,0.08364597,-0.15371951,0.11699908,-0.2147418,-0.24380475,0.33902672,0.08686641,0.40227735,-0.37957504,-0.35972416,-0.3363514,0.5388971,0.29739565,0.2912126,0.52119815,-0.27601564,-0.01607675,0.114330605,0.4275055,1.0552431,-0.34404942,-0.06740257,0.42887953,-0.2043006,-0.58267194,0.5780276,-0.24770936,0.04536711,-0.03371113,-0.18967484,-0.48966405,0.28552437,0.24011306,-0.07973553,0.12033753,-0.5761227,-0.16157538,0.41796467,-0.3581499,-0.17191073,-0.28122482,0.2246469,0.59389025,-0.25063473,-0.4588381,0.10757386,0.2963896,-0.30175844,-0.46377414,0.016077287,-0.42527387,0.33171356,0.078233436,-0.20107926,-0.14135231,-0.0026090464,-0.44967598,-0.10724665,0.20563923,-0.34439373,0.04753085,-0.3145148,0.03218733,0.84411246,-0.17027153,0.27600333,-0.74556005,-0.37004614,-0.9820888,-0.36964804,0.6954146,0.014207919,0.029410101,-0.56658334,-0.1276737,-0.041772243,-0.21876757,0.0036806336,-0.4048242,0.45967242,0.13003309,0.29093245,-0.128732,-0.6331088,0.07179936,0.091274805,-0.23116796,-0.41723493,0.36630994,0.05138219,0.82600707,0.021578943,0.08312653,0.3571018,-0.5062371,0.12636925,-0.2175642,-0.27209318,-0.543523,0.08071737,295 -180,0.4107866,-0.120959066,-0.38764036,-0.3139099,-0.24118093,0.16504756,-0.07129126,0.052971967,-0.10080738,-0.50837594,-0.06261281,-0.355898,-0.07422261,0.39278996,-0.21528813,-0.8019488,-0.07425542,-0.06715285,-0.67197365,0.37355042,-0.34085885,0.54409474,0.41196945,0.13585107,-0.004820009,0.4170338,0.505253,-0.35863462,-0.1183664,-0.019745925,-0.36425698,0.07105209,-0.60040015,0.18475851,0.03859211,-0.22006406,0.21483313,-0.13283683,-0.12452148,-0.66447043,0.21597408,-0.68675244,0.27762452,-0.14947227,-0.2860384,0.21996066,-0.008747665,0.26675874,-0.42030728,0.32084975,0.18784116,-0.2593399,0.029089153,-0.25516555,-0.15643567,-0.71986616,-0.4370806,0.051705852,-0.69075763,-0.46043333,-0.19418249,0.17935874,-0.42151204,0.008300615,-0.21006687,0.3458357,-0.50204366,-0.2600065,0.20687547,-0.2574125,0.24708056,-0.3769914,-0.069532275,-0.17354509,0.3145399,-0.101334125,0.022827882,0.25559303,0.31130806,0.56160295,0.12265201,-0.28838763,-0.056937013,-0.20628387,0.20135851,0.4924892,0.10039593,-0.37967274,-0.11279329,-0.06838115,0.022554927,0.14779687,0.045932684,-0.4407526,-0.14165811,-0.018041346,-0.24948393,0.04847373,0.41657084,-0.49327287,-0.24859826,0.35906792,0.4618706,-0.039921187,-0.13784985,0.1768506,-0.06775317,-0.3938568,-0.1880676,0.36025375,-0.11870233,0.6193035,-0.22193798,0.39915392,0.80565834,-0.1897592,0.13233094,-0.36460164,-0.1557498,-0.26379135,0.09445497,-0.049977295,0.10839481,-0.48809358,-0.0781964,-0.33689168,0.959583,0.27643096,-0.81768066,0.34246552,-0.38791102,0.16914612,-0.14925997,0.7358917,0.538245,0.25124064,-0.021017324,0.8989185,-0.7533728,0.04314555,-0.06695627,-0.45018288,-0.06762164,-0.021139871,-0.17676021,-0.32290432,0.03597876,0.059028435,0.11040452,-0.25146356,0.20024985,-0.3206096,0.117536075,-0.18341926,0.58704287,-0.5366067,0.022938954,0.6257945,0.7997291,0.8251153,0.14705096,1.25641,0.30363,-0.2643718,-0.01594912,-0.5061048,-0.39946958,0.14761367,0.53839624,0.8262732,0.21461289,-0.10473388,0.1589478,0.25447312,-0.18386191,0.34653938,-0.16043012,0.13830678,-0.1583011,-0.10977482,-0.4898563,-0.23910291,0.11437569,0.08258801,-0.0124245845,0.1662188,-0.0062666973,0.5899491,0.19900386,1.3868673,0.014864048,0.27231604,0.063796714,0.25714934,0.22004248,-0.011084227,-0.010362832,0.30443674,0.4229633,0.03088859,-0.62615144,-0.11656507,-0.3162557,-0.57682955,-0.23295666,-0.44093412,0.048235066,-0.2512886,-0.5225908,-0.11479448,0.2303153,-0.42297295,0.4407193,-2.2317069,-0.080188945,-0.28675205,0.10739449,-0.3286247,-0.2296581,-0.18313299,-0.44745588,0.27936038,0.52865165,0.29730102,-0.65160346,0.46498823,0.36810434,-0.058594774,-0.10611248,-0.63939786,-0.06415839,-0.1501153,0.3298602,0.012078722,-0.11185614,-0.23917261,0.23760769,0.51691985,-0.10311505,-0.107428744,0.13023342,0.26340392,0.2053738,0.59717745,0.35207984,0.4177253,-0.1309497,0.07886526,0.30035114,-0.24114202,0.26183167,0.11586063,0.22650991,0.17201272,-0.52655786,-0.6770939,-0.75538504,-0.555362,1.3457942,-0.4757993,-0.32671705,0.33912495,0.4519591,-0.03476209,-0.056557167,0.31942934,-0.09451771,0.1376031,-0.587491,-0.0069356086,-0.060619414,0.27958617,-0.078581005,0.0864938,-0.31531373,0.67967147,-0.21760912,0.43133435,0.33553526,0.1598408,0.00022950968,-0.43378976,0.090637125,1.0352014,0.40531337,-0.030545216,-0.080635734,-0.23613057,-0.2218397,-0.186114,0.19780222,0.28051835,1.0476058,0.13755229,0.053359754,0.31126678,-0.15570848,0.13367106,-0.049368177,-0.3926253,0.1712245,-0.08305137,0.5569531,0.26024693,-0.022173261,0.52620596,-0.23542118,0.32046166,-0.12813747,-0.42949528,0.5609089,0.9527597,-0.06722034,-0.16725422,0.27503318,0.49915984,-0.3513715,0.31750727,-0.5994833,-0.27478266,0.71016556,-0.1684862,-0.36114654,0.25223455,-0.28430137,0.16581208,-1.0990585,0.31518564,-0.051857963,-0.51857656,-0.5020274,-0.2721648,-3.7585123,0.07440519,-0.20886359,-0.12749574,0.024912046,-0.1647127,0.2965979,-0.5411098,-0.4433006,-0.0093580745,0.011298043,0.38308805,0.12959558,0.16976404,-0.2753803,-0.12295782,-0.19950317,0.22819076,5.767743e-05,0.106104665,-0.032682482,-0.3706275,0.17951904,-0.51867974,-0.45080918,0.08672643,-0.3493597,-0.5588551,-0.20067602,-0.3139844,-0.35454184,0.6409057,-0.2625591,0.02726481,-0.050207656,-0.17056134,-0.22622661,0.37502295,0.32776347,0.16550587,-0.065114826,0.12778038,-0.25355566,-0.4032767,0.13271591,0.12993042,0.28733948,0.1983753,-0.15366787,0.11471868,0.5169391,0.45236614,0.008681039,0.5346143,0.18151031,-0.052009236,0.32255942,-0.4130837,-0.2319102,-0.8978432,-0.44913843,-0.33684736,-0.27234486,-0.63390166,-0.21615647,-0.27809206,-0.7303359,0.3435849,0.059100866,0.030855747,-0.1150127,0.22687915,0.27864918,-0.07479051,0.042132393,-0.221666,-0.16953367,-0.3969495,-0.42575905,-0.80925167,-0.47969982,0.009128618,1.1458708,-0.030424865,-0.29971847,-0.18043327,-0.08069416,0.15976031,-0.013556548,0.23399934,0.32381693,0.16081223,-0.2026871,-0.7989381,0.68195426,-0.09732521,-0.051608168,-0.4504453,-0.26321414,0.557838,-0.6845573,0.2769883,0.23877549,0.15840997,0.2048815,-0.3594776,-0.24001922,0.042708624,-0.4113867,0.47754195,-0.16135985,-0.3666006,0.47931406,0.17037357,-0.007102263,-0.5095661,0.48568952,0.0014938673,-0.30315056,0.28213176,0.29779705,-0.12178294,-0.07244488,-0.359399,0.1957095,-0.55543166,0.28545392,0.55883974,0.19062056,0.4918272,-0.050593268,-0.27330643,-0.4327144,-0.070862964,-0.40688488,-0.18909988,-0.037486542,0.15224075,0.02933073,0.13964857,-0.109822385,0.45459852,-0.29275692,0.14016485,-0.032041553,-0.1764882,0.31549862,0.42951176,0.10947888,-0.47770202,0.60690916,0.10073872,0.17978863,-0.42923254,0.045780182,0.48057163,0.43645498,0.11413193,-0.055735603,-0.19441637,0.389748,0.60474354,0.37657535,0.5846469,0.25226387,-0.23208526,0.39560446,0.3267637,0.13654889,0.046329632,-0.016485868,-0.1026824,0.14777945,0.094298534,0.34953752,0.037624303,0.4665166,-0.08454538,-0.1192721,0.22993013,0.23235169,-0.23236026,-0.62030154,0.25601894,0.26510966,0.4959617,0.6443921,-0.06089735,0.094046764,0.438712,-0.4876406,0.02380451,0.19435593,-0.08550353,-0.5756746,0.6969026,-0.4983862,0.26785624,-0.18094355,-0.08135775,0.00021966298,0.09965434,0.15161449,0.9803341,-0.03374195,0.03536759,-0.19634707,-0.1248493,0.19116454,-0.43722418,0.06839851,-0.3785802,-0.2514382,0.44342047,0.18752523,0.20697738,-0.1592096,-0.013546439,0.07495381,-0.055360503,0.2991243,-0.062644556,0.10437538,0.035014175,-0.60762984,-0.51659197,0.6050464,-0.0055812597,-0.06434899,0.15891522,-0.44734856,0.33958787,-0.043149408,0.040705126,-0.0976418,-0.52879274,0.1766402,-0.23029543,-0.45206496,0.20628233,-0.4032508,0.46714595,0.17767903,-0.055781167,-0.29154575,-0.09476297,0.30221575,0.6298736,0.060257673,-0.3261189,-0.30588505,0.07201909,0.3024431,-0.33305848,-0.044340845,-0.22121146,0.16094074,-0.6638473,0.41165224,-0.13382173,-0.21888746,0.113463685,-0.23516403,-0.2669603,0.38054556,-0.23504347,0.03739943,0.23195624,0.14803907,-0.092592366,0.012590122,-0.54673326,0.20262156,-0.13104104,-0.07242277,0.033465553,0.055861283,0.079838224,0.47060153,0.1037676,0.16384609,0.07174145,-0.26651084,-0.50725114,-0.0595447,-0.046106394,0.05558404,0.25049308,0.036010664,-0.18433918,-0.3360634,-0.1306685,0.091171585,-0.23197407,0.2387731,0.16510865,-0.48699242,0.76336175,0.18196869,1.1825736,0.13600343,-0.23678951,0.092411056,0.49386102,0.14041351,0.14678285,-0.30114183,0.9365297,0.67096907,-0.12690385,-0.2895703,-0.36503604,-0.22459704,0.2226394,-0.21788716,-0.23455101,-0.023019219,-0.70462596,-0.44379914,0.1315526,0.25861654,0.13267474,0.2644733,-0.14364372,0.09302883,0.114122964,0.68060726,-0.48986652,-0.17221576,0.19607824,-0.15469022,0.14249153,0.11978242,-0.3558261,0.52140707,-0.7624493,0.22229372,-0.3110161,0.027176348,0.079784654,-0.22310854,0.24914531,0.075983554,0.3330638,-0.18253565,-0.4903612,-0.24186048,0.69796556,0.16343711,0.41436857,0.831422,-0.30764753,0.17340933,0.16068454,0.34480318,1.3801098,-0.026707537,0.029454628,0.3741789,-0.42747563,-0.4994426,0.1715441,-0.13928947,0.049031537,-0.18164302,-0.4721151,-0.40749556,0.28266823,0.16240504,-0.09285418,0.18630147,-0.38169667,-0.31356958,0.57939136,-0.29794112,-0.41005623,-0.4235918,0.48127657,0.6139304,-0.5083078,-0.2563167,-0.012719504,0.10251251,-0.44799933,-0.6535881,-0.029134631,-0.21293001,0.5274301,0.08962237,-0.24605677,0.20205173,0.3825149,-0.31485873,0.21392968,0.524237,-0.38374797,0.016899245,-0.20958737,-0.078991696,0.96515214,0.015679391,-0.20637444,-0.6699258,-0.4877023,-0.9570667,-0.40669537,0.7105742,0.1710413,0.033035804,-0.43187994,-0.0923244,-0.051615253,0.131776,0.11461143,-0.49308267,0.2529902,0.17044678,0.45686534,0.060627177,-0.81811506,-0.008404231,-0.05295034,-0.21562035,-0.4280929,0.58303744,-0.21833521,0.4790557,0.05721204,0.009697842,0.17986849,-0.54455215,0.2877498,-0.30394492,-0.24274167,-0.58471227,0.12480111,297 -181,0.6393105,-0.18246624,-0.37171742,-0.24487281,-0.24911489,0.08691616,-0.13382003,0.31581777,0.16889471,-0.51164067,-0.047866862,-0.13106473,-0.011781728,0.0618152,-0.15431918,-0.632107,-0.06982843,0.043791953,-0.44868848,0.6135119,-0.4696961,0.33415425,0.03809944,0.21940564,0.07815065,0.27211052,0.25341454,-0.23972884,-0.08442716,-0.1345617,-0.13693745,0.26884133,-0.75430804,0.23501045,-0.056560345,-0.28437743,0.08267345,-0.377067,-0.23743361,-0.7362384,0.22316347,-0.8222725,0.448602,0.17420414,-0.21293579,0.17800957,-0.0014551163,0.21992142,-0.22143729,0.17278385,0.19870299,-0.039887913,-0.018104978,-0.08792356,-0.1464983,-0.5427493,-0.64089227,0.061044984,-0.26912376,-0.19880849,-0.27074164,0.19615623,-0.4386167,-0.09527189,-0.1478438,0.43475276,-0.46661994,0.018202562,0.12534267,-0.014557949,0.43710843,-0.5163767,-0.01573071,-0.228826,0.18100758,-0.4074707,-0.35369363,0.28448066,0.3633451,0.4879433,0.047382772,-0.23623377,-0.14539985,-0.15620235,0.15115087,0.50679916,-0.22464056,-0.7225025,-0.15856075,-0.06072219,0.14916421,0.31481284,-0.112262994,-0.37049323,-0.075703666,0.13875945,-0.2005765,0.42656523,0.5130474,-0.4736227,-0.35212347,0.4095572,0.5825471,0.0035927177,-0.031273015,-0.082998045,0.029987741,-0.7059739,-0.25045556,0.40094754,-0.089701176,0.4420525,-0.18187033,0.13944802,0.69278705,-0.40181553,-0.009624998,0.083358936,-0.061750628,-0.09721133,-0.19238384,-0.2872751,0.2962634,-0.56692123,0.108636394,-0.3041302,0.8296783,0.24874789,-0.7897293,0.27948567,-0.61748606,0.08006254,-0.19592553,0.6990119,0.6447432,0.43844232,0.2772536,0.70862466,-0.594968,0.06637668,-0.09982939,-0.44461983,0.06849618,-0.19669834,-0.118734546,-0.42892674,0.03469818,0.0982852,-0.058975074,-0.130491,0.32487094,-0.56259286,-0.006026429,0.049482964,0.6767981,-0.33311003,-0.09628735,0.68268573,0.8786162,0.9940103,0.12743443,1.375336,0.2829984,-0.3060687,0.15760067,-0.3431133,-0.7748938,0.36323196,0.47589752,-0.17172109,0.14073268,0.11213121,-0.0074196896,0.2158489,-0.46445948,-0.012055339,-0.3296181,0.38807684,-0.010383925,-0.07447591,-0.3587881,-0.23855686,-0.05152104,0.11261468,0.07272091,0.20401327,-0.18801309,0.22189511,0.19623114,1.4588293,-0.15443645,0.123160996,0.07779523,0.438361,0.17487288,-0.05232714,0.0155196665,0.23909898,0.45942086,0.30697164,-0.6358059,-0.0026572347,-0.17881685,-0.53414637,-0.15891787,-0.31411642,-0.009650937,-0.11963563,-0.38061967,-0.086321525,-0.09694249,-0.3246207,0.59400505,-2.6596472,-0.046130292,-0.12213627,0.2213158,-0.22297472,-0.44462246,-0.18859193,-0.6096813,0.57999164,0.35606316,0.5237407,-0.8454739,0.29308233,0.3510507,-0.5091794,-0.0035171588,-0.7973484,-0.13054515,-0.13135192,0.37423506,0.12452408,-0.07893312,-0.11236037,0.12888414,0.55011564,-0.051898915,0.077332124,0.07149175,0.43363747,0.08951412,0.56572545,0.10978497,0.47074717,-0.14490822,-0.18998304,0.3608562,-0.21367224,0.17803484,-0.08538864,0.13462861,0.2700641,-0.48929024,-0.9453514,-0.8995556,-0.55580443,1.0931647,-0.15318164,-0.45932496,0.09608832,-0.105907425,-0.2803803,-0.12240301,0.3520362,-0.2536705,0.040340174,-0.7871281,0.12017367,-0.08212344,0.21765785,0.012780446,0.06533016,-0.4859577,0.65394247,-0.12649216,0.32855955,0.44364044,0.08200519,-0.18646249,-0.5325617,0.03868766,1.0747845,0.37036735,0.1544592,-0.20567164,-0.298029,-0.34447905,-0.028028412,0.068936385,0.4556733,0.80213815,-0.085352525,0.083776735,0.2890472,-0.011476736,0.04719117,-0.11770203,-0.29879224,-0.09060684,-0.0985339,0.7187124,0.44063517,-0.19848566,0.46125117,-0.09951871,0.2523511,-0.05333807,-0.40659934,0.53455764,1.1147643,-0.11249338,-0.21750297,0.59530866,0.52574736,-0.26782706,0.42755452,-0.6315114,-0.261989,0.35719022,-0.08684642,-0.3546231,0.14609718,-0.38712797,0.15555556,-0.843778,0.4783663,-0.33921203,-0.44790548,-0.55017084,-0.1280928,-3.4078836,0.2685281,-0.26106533,-0.029335538,-0.05452142,-0.1453632,0.39052144,-0.55505884,-0.50967497,0.25022116,0.07145708,0.5313917,0.014770033,0.05658985,-0.24445347,-0.1408698,-0.40078315,0.122675546,0.16990574,0.2927161,-0.020360466,-0.41390106,0.053879693,-0.13630177,-0.43352118,0.1495864,-0.5386892,-0.5546323,-0.15340953,-0.48644918,-0.4199918,0.7061474,-0.3304338,0.008685636,-0.1428093,0.03807443,-0.018749733,0.41058862,0.08242985,0.15418799,-0.08399156,0.034633208,-0.14601931,-0.28851348,0.41107547,0.056851722,0.13978486,0.2446632,-0.2888585,0.2221055,0.49714005,0.5121374,0.053515732,0.85460013,0.56469333,-0.10456485,0.2131951,-0.33693543,-0.20309235,-0.59139705,-0.39819902,-0.13006775,-0.4956954,-0.40111464,-0.0325224,-0.31849682,-0.6789747,0.57938933,-0.020509934,0.062411405,-0.07347777,0.31926578,0.4437507,-0.1351437,0.053457346,-0.06910767,-0.13501061,-0.48020548,-0.3279033,-0.60795337,-0.40563032,0.046427142,1.1084296,-0.21578927,-0.11631214,-0.025612246,-0.1360374,0.0381995,0.086420186,-0.12823328,0.24278793,0.40712115,-0.07115258,-0.65352696,0.5554262,0.011477605,-0.12442374,-0.6328658,0.14020266,0.7010295,-0.74525917,0.39745525,0.34217831,0.068803065,-0.14219576,-0.6360661,-0.22900926,-0.0070027965,-0.30477574,0.44506976,0.075143225,-0.7290789,0.5185002,0.40122154,-0.18829349,-0.67241913,0.6174277,0.087176256,-0.34580985,0.07381989,0.27923623,0.10914949,0.046320796,-0.26348153,0.36960143,-0.46727234,0.33669502,0.20143436,-0.020794272,0.36975396,-0.026900165,-0.24706435,-0.6786927,-0.06215899,-0.45966783,-0.41453943,0.17752776,0.002983447,-0.0020871798,0.29981473,1.1384487e-05,0.4760085,-0.25352317,0.07856533,-0.0051113605,-0.3190165,0.2145744,0.3640708,0.40849483,-0.36846918,0.6004799,0.07952665,-0.11469371,-0.20575804,0.09375127,0.553701,0.055473544,0.31426874,-0.029794069,-0.21210852,0.3467819,0.8111164,0.22276379,0.40696305,0.002163454,-0.06650063,0.30009085,0.17469583,0.24862741,0.11255531,-0.50267845,-0.10418512,0.073727116,0.065527625,0.44997838,0.09289327,0.21771675,-0.1498971,-0.23151445,-0.006931625,0.105519265,-0.005344788,-1.1105224,0.41693535,0.11507681,0.76081437,0.59227026,-0.15581182,0.120275065,0.51288617,-0.23187973,0.08960069,0.35197785,0.0101041,-0.44590378,0.5541398,-0.7122868,0.41049644,-0.085455224,0.070766404,-0.12488367,-0.11561426,0.27412117,0.8991356,-0.10589345,0.10234995,-0.17863792,-0.15313165,0.2659041,-0.34454829,0.17741747,-0.486752,-0.20910312,0.7304084,0.41096625,0.3601204,-0.007719768,0.0004967143,0.17008963,-0.16061325,0.18015406,-0.053007953,0.080723494,0.13861546,-0.67028946,-0.18273766,0.66366667,0.021750959,0.05148022,-0.037361324,-0.22960217,0.27099115,-0.17229837,0.025241148,-0.15143725,-0.60014504,0.019288126,-0.33947155,-0.22441308,0.59148747,-0.3499071,0.24017677,0.14258115,0.0676421,-0.25273448,0.15963846,0.3128647,0.7203028,0.07309442,-0.21282692,-0.5079335,0.14531918,0.2598679,-0.23826136,-0.23569804,-0.1264078,0.0021606407,-0.74802554,0.35872588,-0.04898054,-0.44459817,0.12158929,-0.16875039,-0.06388941,0.5443228,-0.08896956,-0.20988598,0.061080147,-0.1570906,-0.1679116,0.024789575,-0.046120085,0.28843313,0.33903658,-0.0035297116,-0.079464935,-0.19523162,-0.25784427,0.34689087,0.088955574,0.29133272,0.3057889,0.1819145,-0.35244468,-0.080611125,0.15307999,0.47189704,-0.08822368,-0.09699499,-0.17533585,-0.38257393,-0.30724427,0.048115764,-0.13478334,0.34398985,0.006466232,-0.44083968,0.69398296,0.0044873,1.2605519,0.08418547,-0.29388618,-0.09205754,0.62275386,-0.0029224355,-0.0082065305,-0.333735,1.0000137,0.5810501,-0.07991912,-0.19921865,-0.31938314,-0.004863612,0.078756884,-0.11170983,-0.06135547,-0.1148526,-0.63583934,-0.351852,0.31922844,0.28547636,0.10451958,0.040488735,-0.120385595,0.18089399,0.029335694,0.45165926,-0.4720846,0.015143631,0.2578067,0.31660557,0.11751452,0.26893812,-0.30175045,0.29347858,-0.41409698,0.13917519,-0.23937927,0.20142303,-0.20482215,-0.1854023,0.21877323,-0.06679988,0.3193847,-0.21163623,-0.52987486,-0.2013374,0.46578124,0.22074983,0.23733707,0.68690556,-0.28094807,0.109623685,-0.01550986,0.4465226,1.1941757,-0.20039003,-0.004907753,0.44552884,-0.29492822,-0.5009129,0.4098484,-0.28757003,0.1305786,-0.022649534,-0.271727,-0.33607686,0.23046137,0.22673455,0.064220354,0.0035615643,-0.7106322,-0.22404978,0.21649498,-0.13818803,-0.26922646,-0.33404344,0.40063375,0.8114658,-0.41958258,-0.23429696,0.1561004,0.21912812,-0.24984239,-0.57909495,-0.05040783,-0.34728384,0.34891605,0.17544593,-0.30413455,0.05581182,0.061939288,-0.4135926,0.10193981,0.2050053,-0.41361302,0.087003864,-0.15369672,-0.079841964,0.9196076,-0.1709268,0.07359774,-0.5211588,-0.34097072,-0.8902516,-0.28843033,0.4937143,0.28899392,0.076660864,-0.42664844,-0.11337255,0.07314698,-0.08381469,-0.023271767,-0.45248803,0.4857231,0.049404096,0.44667664,-0.12441637,-0.8190632,0.14373295,0.10682169,-0.06325253,-0.5345546,0.5111104,-0.044282354,0.68676144,0.1245312,0.123272024,0.28612205,-0.49845296,-0.041309375,-0.1877428,-0.19903521,-0.8525836,0.13932624,299 -182,0.36163825,-0.046810247,-0.61625266,-0.019468885,-0.1818052,0.20118485,-0.18102854,0.32566687,0.048370916,-0.3701816,-0.11317137,-0.14331885,-0.0445402,0.2738493,-0.07938365,-0.457011,0.18331677,0.30939192,-0.67422193,0.29796034,-0.6129225,0.307842,0.12938768,0.14802171,-0.0048366864,0.10155188,0.15100819,-0.13011989,-0.16857041,-0.21726297,0.10020849,0.20433642,-0.5742833,0.36032104,-0.2209178,-0.36617094,-0.00323385,-0.39297697,-0.33133394,-0.66168976,0.33741465,-0.8309839,0.53423923,-0.05861933,-0.20840219,0.241226,-0.0069238027,0.29684365,-0.15078071,0.004208986,0.21166238,-0.27734312,-0.36573008,-0.2375542,-0.06620135,-0.16721033,-0.6032581,0.16448964,-0.40289077,-0.07027909,-0.27361807,0.17331395,-0.30708903,0.1445275,-0.21258454,0.34209213,-0.3152504,0.05914755,0.13796592,-0.054774318,-0.049504027,-0.429164,0.03280053,-0.10213721,0.18138261,-0.24180228,-0.21407168,0.37482437,0.21264675,0.5680881,-0.041213885,-0.25216138,-0.09569319,-0.101898246,0.24952747,0.5256731,-0.17855202,-0.26270077,-0.16865359,-0.01379594,0.15674023,0.07060062,-0.037575744,-0.27625483,-0.059455376,-0.016812626,-0.16017164,0.26581144,0.6275078,-0.3123172,-0.12664266,0.39923322,0.598785,-0.08651967,0.055737518,0.19518839,-0.027266322,-0.56353647,-0.25381315,-0.0071953437,-0.08638553,0.4135059,-0.26376393,0.23606917,0.60608333,-0.23702525,-0.07923159,0.27013922,0.05002516,0.031878628,-0.081093036,-0.19438525,0.27912292,-0.5971582,0.05627226,-0.13315503,0.84232014,0.055964794,-0.7705573,0.4283102,-0.457574,0.21460083,-0.09506987,0.7221143,0.6042113,0.49160793,0.18369508,0.6974894,-0.49683577,0.014788268,-0.14360286,-0.50000656,0.052503966,-0.09950983,-0.058254004,-0.3645237,0.039207794,0.03746446,-0.08363951,-0.05921,0.4217915,-0.42961088,-0.13407166,0.056960378,0.6512462,-0.3389186,-0.23023194,0.6990022,1.0423192,0.89491814,0.10843933,1.3248341,0.28093135,-0.12836222,-0.009235473,-0.19245,-0.8282789,0.3096033,0.22873197,0.0899452,0.22263929,0.13011327,-0.11171524,0.2880672,-0.54698485,-0.160113,-0.13897566,0.26724353,-0.13746092,-0.10091685,-0.2578534,-0.23475827,0.11041296,-0.0052800816,0.19543782,0.33749256,-0.2385713,0.34886262,0.053613,1.3930763,-0.12160633,0.110684596,0.17509522,0.3104138,0.09360654,-0.0449754,-0.25206614,0.17273133,0.32369605,0.08602691,-0.54195887,-0.05280367,-0.13507676,-0.55727,-0.17172202,-0.26181218,0.027136136,-0.19464222,-0.2771243,-0.22539902,-0.09879487,-0.46155566,0.458613,-2.592462,-0.16815533,0.023316797,0.28862748,-0.19674405,-0.3436773,-0.1743118,-0.49611762,0.27778885,0.30758104,0.4526509,-0.71270293,0.4210843,0.24444224,-0.477846,-0.08320774,-0.6953585,0.05333142,-0.1367241,0.1911246,0.14292265,-0.075260974,-0.12730628,-0.04893099,0.49836752,-0.14818574,0.0164479,0.4291424,0.30735767,0.11977706,0.39237675,0.15861405,0.57283014,-0.55760306,-0.205039,0.3215286,-0.4043435,0.18415053,-0.11025596,0.12818216,0.26679844,-0.5306652,-0.8273432,-0.6141098,-0.22745362,1.3993111,-0.25510767,-0.26696354,0.24451698,-0.19564022,-0.25105605,0.042808518,0.3010993,-0.24846824,-0.058872856,-0.68743175,-0.08625857,-0.00815615,0.32207572,-0.12190951,0.06566345,-0.5422756,0.5548955,-0.25267726,0.5004245,0.25243148,0.06353773,-0.24790679,-0.386627,0.20814465,1.087146,0.3774179,0.14873879,-0.28685912,-0.19134556,-0.22605342,-0.22537436,0.096101485,0.48193285,0.7413792,-0.057193503,0.06732382,0.31391475,0.018791573,-0.009296163,-0.11312294,-0.34984705,-0.04423354,-0.07894887,0.66934484,0.5541214,0.017434107,0.4248548,-0.057576362,0.3476269,-0.21591201,-0.38051364,0.38244084,0.7578986,-0.1512046,-0.28926933,0.5153835,0.40162987,-0.32570893,0.5411723,-0.58186734,-0.49471983,0.24843222,-0.05956086,-0.3612513,0.18779056,-0.3140594,0.2790733,-0.82683784,0.49040073,-0.21328573,-0.78446424,-0.5098368,-0.13597395,-3.1751266,0.1928559,-0.2401341,0.011675773,0.051539585,-0.054475196,0.15189633,-0.32343313,-0.48790655,0.049392637,0.1419819,0.60742164,-0.035142772,0.07576131,-0.20461674,-0.20234784,-0.39098224,0.14253631,0.23161833,0.29379424,-0.08548334,-0.4078268,0.053467236,-0.37854752,-0.18445063,0.02568603,-0.6244434,-0.3548879,-0.11051901,-0.46423873,-0.4437392,0.66027707,-0.46071473,0.08893763,-0.25687,-0.03752557,-0.039038192,0.36423102,-0.016040524,0.11996626,-0.019639738,-0.20788105,-0.07896469,-0.25711754,0.4686751,-0.020993253,0.31904286,0.43525994,-0.1924554,0.05423248,0.40986425,0.5859029,-0.07551499,0.8414833,0.4155545,-0.13918068,0.26618236,-0.21937315,-0.19906227,-0.43991262,-0.113713235,0.007542071,-0.51109743,-0.35917002,0.035411842,-0.35737005,-0.81164056,0.4330722,0.00022366842,-0.061862357,0.059448518,0.26626596,0.4204435,-0.058972858,-0.16063288,-0.15574828,-0.10363589,-0.36107787,-0.4181392,-0.6869845,-0.45887023,-0.09037046,1.2225376,-0.15468822,0.09652957,0.023397831,-0.006097833,-0.021613609,0.10807705,0.008114016,0.23010792,0.48914927,-0.22775911,-0.6835206,0.39962256,-0.35632026,-0.06853495,-0.47502348,0.17106707,0.6195286,-0.7347669,0.49599773,0.52642655,0.24456319,0.0547631,-0.43073395,-0.16872129,-0.037884887,-0.25028136,0.43379983,0.19932482,-0.825362,0.5657238,0.3350759,-0.25996524,-0.7255756,0.41952667,0.037120685,-0.14553474,0.080594294,0.45408615,-0.2408647,0.04463064,-0.24305029,0.11651781,-0.45235443,0.33561942,0.18809786,-0.01313416,0.27998617,-0.2969595,-0.16380975,-0.51199925,-0.028536336,-0.54836905,-0.2141018,0.04385136,0.010114895,0.006559952,0.19124795,0.027707068,0.4722083,-0.25266013,0.010445644,-0.1459478,-0.3818527,0.36340588,0.44939902,0.4093847,-0.4719581,0.5891525,0.033640783,-0.13093509,-0.26296547,0.037325628,0.49881133,0.009974873,0.35167176,0.13538282,0.07382121,0.35966307,0.8248952,0.34395722,0.4308936,0.079823,-0.17559321,0.18583514,0.11174571,0.2343212,0.040843032,-0.50163925,-0.05651284,-0.13347732,0.2474897,0.43234012,0.18072887,0.45896354,-0.12261789,-0.27443627,0.021232003,0.11959818,-0.17060384,-1.0978947,0.50343376,0.10196161,0.6640571,0.40255412,-0.00976156,0.15391512,0.5837294,-0.24320568,0.17805807,0.18555562,-0.17407961,-0.42720512,0.5149713,-0.6489345,0.37865102,-0.104971856,0.07031127,0.11311904,-0.10096182,0.3854989,0.74012595,-0.039093852,0.09447677,-0.082928784,-0.21654037,0.14646749,-0.27239367,0.23092912,-0.5498088,-0.2061408,0.87057596,0.40731353,0.29427412,-0.14776653,0.038990658,0.101848885,-0.1000217,0.13247329,-0.07678641,0.14351486,-0.11075284,-0.6607895,-0.19051811,0.6326515,-0.0054941694,0.04486813,0.21870661,-0.17538032,0.2852371,-0.19832405,-0.005432463,-0.18230009,-0.5725087,0.05788804,-0.20942189,-0.3101426,0.1856531,-0.23450874,0.2672461,0.24751513,0.017919242,-0.50617385,0.28934,0.15113363,0.6829425,0.059070427,-0.28178176,-0.20464729,0.31750822,0.27856398,-0.268081,-0.13481121,-0.32354957,0.043306645,-0.694638,0.41190326,-0.14473465,-0.36599004,0.24109954,-0.05945337,-0.13729325,0.5430154,-0.1296006,-0.11203582,0.094623595,-0.09191057,-0.20073493,-0.109348364,-0.20046636,0.24226615,0.2674686,-0.15004295,-0.11430906,-0.010342093,-0.122970834,0.25901967,-0.06204508,0.19282745,0.28539145,0.058945842,-0.41919568,-0.052594207,0.05342209,0.5673497,0.056613103,-0.04389646,-0.3454471,-0.13420776,-0.15654401,0.22420658,-0.07250131,0.33860305,0.075742476,-0.26543695,0.69998443,0.10802933,1.0750068,0.09035544,-0.13484271,0.02590247,0.54086,0.08891679,-0.0073646605,-0.46408173,0.98081106,0.5045383,-0.17204763,-0.11840652,-0.46037012,-0.02711939,-0.040745694,-0.12695798,-0.38628483,0.015003592,-0.59381294,-0.24229176,0.22988254,0.35570943,0.06429996,-0.008880373,0.13279395,0.29412544,0.04378282,0.16905709,-0.43156263,-0.12204134,0.26385218,0.24899887,0.015552954,0.016289007,-0.48724225,0.33636123,-0.7166957,0.07634302,-0.07044863,0.08752529,-0.05661653,-0.33797637,0.22179116,0.12346672,0.30466282,-0.32055664,-0.2837162,-0.10943259,0.43215185,0.20081404,0.269542,0.76108205,-0.23565388,-0.016122222,0.07133387,0.34160823,0.88309324,-0.14253075,-0.008306247,0.32503578,-0.15173677,-0.6358902,0.39240387,-0.25943896,0.21089935,-0.044763148,-0.39730313,-0.48756605,0.3522288,0.2056395,-0.115714245,0.15905997,-0.60121346,-0.07510088,0.22597863,-0.18860109,-0.32769224,-0.40186158,0.11158393,0.8038109,-0.21964483,-0.33473587,0.11870947,0.23092924,-0.3642346,-0.6183499,-0.016587906,-0.41780064,0.22471142,-0.055208027,-0.19869232,-0.04662868,0.08134411,-0.3989504,0.21471177,0.22568361,-0.1909948,0.14807187,-0.27587044,0.11145881,0.6423429,-0.15131325,0.039102428,-0.54532313,-0.43542007,-0.8591155,-0.19316754,0.3471249,0.14155169,-0.035292037,-0.4875473,-0.19399816,-0.08080182,-0.22067894,-0.024340717,-0.40440473,0.33429152,0.06668725,0.1883473,-0.0027890664,-0.78164923,0.11489034,0.059965387,-0.3009511,-0.39848354,0.46807998,-0.056680076,0.76904005,0.07735955,0.015545994,0.40691668,-0.56444424,0.15195277,-0.25796616,-0.049791433,-0.6027777,-0.0037390192,300 -183,0.34391734,-0.24701786,-0.61385053,-0.107481025,-0.05177248,0.18940642,-0.27397615,0.22550598,0.04047276,-0.53085905,0.028432822,-0.044953663,-0.12066711,0.358293,-0.11470342,-0.47156727,0.008449086,0.20114414,-0.50952303,0.24767794,-0.52037627,0.38254303,-0.10119032,0.17918661,-0.015829977,0.27312222,0.24049939,-0.0424001,-0.18664637,-0.1698312,0.1383495,0.015496961,-0.5666715,0.18450557,-0.037504364,-0.37184018,0.008534503,-0.40877715,-0.49464858,-0.5950306,0.41800994,-0.82690173,0.50986934,-0.002005905,-0.19691592,0.19943507,-0.0074485857,0.33533257,-0.30891982,0.19769557,0.2969848,-0.23835577,-0.2011898,-0.16953593,-0.020778792,-0.27409208,-0.5652874,0.057441313,-0.5387412,-0.019021956,-0.24262692,0.17454024,-0.40564385,0.18986899,-0.25051528,0.3928957,-0.46576625,-0.13225314,0.24619831,-0.0845576,0.25922057,-0.544039,-0.07978327,-0.070864595,-0.02423271,-0.14328259,-0.029244678,0.30517462,0.08872022,0.55974567,-0.054342173,-0.12671329,-0.30706814,-0.052145313,0.19289993,0.54812396,-0.046693016,-0.2984536,-0.16269454,-0.10581699,0.18714263,0.0011386137,-0.04622399,-0.20362444,-0.09808969,0.14005218,-0.24747133,0.2413849,0.59183,-0.25264254,-0.083228804,0.3884825,0.5089119,-0.07654204,-0.038309466,0.11863079,0.085902594,-0.5031365,-0.2290488,0.08512474,-0.18028669,0.45876935,-0.10497309,0.34164822,0.67883086,-0.3777396,-0.0148249185,0.0027043105,0.02314939,0.0065939864,-0.13783321,-0.4276261,0.26341766,-0.5278463,0.019988561,-0.13456751,0.82637316,0.05656079,-0.67076474,0.3244491,-0.38062745,0.16714239,-0.1763129,0.6826876,0.62077874,0.49311885,0.24462868,0.77877724,-0.6051379,0.13269511,-0.048738535,-0.3423009,0.060819853,-0.08160555,-0.10607276,-0.35556784,-0.036628954,0.07198462,-0.13002142,-0.06360081,0.6029746,-0.35668468,0.035306074,0.049680926,0.76269096,-0.39089808,-0.013806427,0.59202754,1.1693611,1.1143243,0.027629098,1.099994,0.36767516,-0.2585166,-0.07497408,-0.24964997,-0.7705814,0.22694692,0.33826917,0.07470643,0.29782063,0.10811874,-0.2600795,0.47309986,-0.5826463,0.113534756,-0.20012353,0.2746378,-0.10705019,-0.08546083,-0.4632269,-0.17645095,0.15129709,-0.025651967,0.085104465,0.29236725,-0.28520998,0.3606776,0.0310626,1.4515622,-0.12325177,0.17367464,0.12229053,0.40349242,0.11931164,-0.241436,0.012459715,0.09361281,0.5106384,0.044068154,-0.6893758,0.12107625,-0.19059515,-0.5385357,-0.2951449,-0.28967947,0.004645254,-0.19326659,-0.47254476,-0.13421187,0.015714558,-0.39481673,0.32482007,-2.4583323,-0.047141533,-0.06816233,0.34933648,-0.24767238,-0.24663876,-0.075377226,-0.39012858,0.39796504,0.39843675,0.4424835,-0.5857473,0.5031236,0.4204726,-0.28673553,0.0036333243,-0.5956407,-0.11349325,-0.16212752,0.31933302,0.14536722,-0.13082089,-0.15911415,0.168871,0.47748005,-0.20302178,0.076726325,0.2705182,0.35877132,0.029614445,0.42687738,0.1258489,0.5325626,-0.50140935,-0.18279769,0.4011962,-0.4724553,0.16923505,-0.21961358,0.15819123,0.32811287,-0.39840528,-0.8924299,-0.50273603,-0.17682041,1.3098052,-0.2314319,-0.43544897,0.27753788,-0.117512114,-0.2557751,-0.032531932,0.37971827,-0.21489404,-0.11684804,-0.8215631,0.004784129,-0.1737414,0.36093134,0.013030372,-0.03917018,-0.4377182,0.5764894,-0.17415498,0.646397,0.45972922,0.25775516,-0.20376574,-0.3609494,0.12628083,1.1232353,0.39789346,0.13624196,-0.32497516,-0.12515996,-0.16658163,-0.097872086,0.08050768,0.3688454,0.8029932,0.02038001,0.26994234,0.2087856,-0.11559876,-0.011601168,-0.07316845,-0.36199743,-0.1119325,0.030382443,0.5681343,0.5036156,-0.06383156,0.37351513,-0.08428459,0.2420805,-0.27065244,-0.34891504,0.4447728,0.77658623,-0.09982768,-0.33778164,0.65783656,0.5564558,-0.21976423,0.5390712,-0.65060556,-0.4429044,0.3455435,-0.20329306,-0.33907315,0.24708247,-0.3859708,0.18615104,-0.86564523,0.4371071,-0.23117904,-0.6408095,-0.69528073,-0.3179847,-3.5320303,0.13668247,-0.23685865,-0.19978468,0.07975599,-0.044978555,0.45877847,-0.5495415,-0.41872433,0.11628356,0.11020233,0.73362595,0.15409862,0.033859894,-0.26691115,-0.04638617,-0.31295058,0.19071582,0.24543591,0.109469794,0.15267378,-0.5598662,-0.0036216737,-0.3089458,-0.38454404,-0.00293233,-0.5194246,-0.40570801,-0.22982581,-0.35770556,-0.4199533,0.65966725,-0.17724514,0.10744369,-0.20814818,-0.014878035,-0.059351113,0.3549224,0.08364944,0.08256375,-0.03434056,-0.19123237,0.054018572,-0.30395228,0.28529578,0.030006595,0.3618142,0.43280545,-0.26943952,-0.08882683,0.57373375,0.5497986,-0.087854885,0.78049827,0.49339956,-0.16991459,0.29207906,-0.11925849,-0.22124015,-0.54554397,-0.4475893,-0.005435733,-0.43000373,-0.45569167,0.015235277,-0.39392596,-0.8906367,0.469094,-0.117366076,0.07019324,-0.05573795,0.32642406,0.28963217,-0.061036035,-0.09148957,-0.14573999,-0.03933945,-0.23249312,-0.3873004,-0.8206654,-0.40620956,-0.08308289,1.2947065,-0.08343945,-0.09973995,0.11531102,-0.15470281,0.025406739,0.0420848,-0.026918657,0.29800108,0.36914387,0.0043545086,-0.68430495,0.41112188,-0.37294313,-0.05557781,-0.6202145,-0.016737849,0.60574085,-0.63816184,0.34905466,0.56897175,0.09083076,-0.04565168,-0.64057475,-0.12913875,0.039557286,-0.11846731,0.506982,0.2697838,-0.8671764,0.59717464,0.22131203,-0.3320502,-0.6770782,0.40891466,-0.006095497,-0.22120409,0.0647543,0.22061148,-0.24800175,0.048853535,-0.31604055,0.2348984,-0.4247537,0.30191013,0.24977918,-0.11031337,0.36830807,-0.31548887,-0.09986598,-0.5647927,0.0111937765,-0.4704315,-0.12148152,0.01885738,-0.09524145,0.15651534,0.22606008,-0.10391235,0.44365633,-0.2721432,-0.0063639223,-0.13470855,-0.36423385,0.50393194,0.4720894,0.38180417,-0.41665572,0.6418592,0.037008468,-0.19047895,-0.31863552,0.13967901,0.5639319,0.091094084,0.3992583,-0.08451756,-0.09735911,0.37943682,0.82743806,0.26160097,0.59021837,0.08460506,-0.25084686,0.17360465,0.1772796,0.11643301,0.09961256,-0.32168669,-0.017378982,0.014552951,0.26308563,0.39796,0.03180116,0.66929185,-0.3071146,-0.11554934,0.12758031,0.13640691,-0.19016777,-1.0852166,0.48412788,0.120320335,0.7196886,0.3962712,0.08199768,0.09264999,0.5798567,-0.27812803,0.078187324,0.1452623,0.06668255,-0.4715183,0.43856105,-0.60637015,0.50840825,-0.06384384,0.041839607,0.07722619,-0.08867752,0.5329275,0.72309685,0.038255177,0.10745402,0.011771786,-0.3739082,0.1973235,-0.26554415,0.2906267,-0.568759,-0.24941184,0.7415592,0.38092086,0.30980262,-0.014471217,-0.051139764,0.05059727,-0.140022,0.1300924,-0.09533362,0.10070045,-0.08649418,-0.6620501,-0.23651727,0.43600973,0.057997808,0.039838385,0.058181588,-0.26362267,0.21514578,-0.056700207,0.043186706,-0.0013115645,-0.57905406,0.049358543,-0.42196593,-0.3483874,0.28923625,-0.2778589,0.26037264,0.11903458,0.053395506,-0.5496463,0.13271584,0.17161769,0.71765536,-0.06971156,-0.15844382,-0.31497845,0.035123207,0.3483656,-0.24891016,-0.10605195,-0.38495535,0.05875374,-0.69624215,0.43191424,-0.22447555,-0.27540907,0.28291592,-0.2274153,-0.06030084,0.6244572,-0.19353376,-0.119036116,0.17430934,-0.0797978,-0.28768677,-0.20504738,-0.16612735,0.21819381,0.1696043,0.03811558,-0.052090075,-0.024639416,0.004876717,0.41873127,0.1180346,0.17479496,0.43705386,0.11231289,-0.45830834,-0.16711944,-0.08283673,0.59045357,0.051703013,-0.11620351,-0.59830767,-0.54042083,-0.22523974,0.22377162,-0.20302843,0.3325315,-0.004581396,-0.32876435,0.8068558,0.006289673,0.99032336,0.08269252,-0.3729577,-0.020296521,0.68685085,0.05066008,0.14849451,-0.34247684,0.88843,0.5522837,-0.19016804,-0.25947514,-0.40620327,-0.08201651,0.087917134,-0.22515036,-0.456731,-0.103160314,-0.72402656,-0.20353095,0.27097014,0.37335718,0.03342045,-0.07074983,0.13511579,0.30113715,0.060824115,0.27263457,-0.5771014,0.0032299082,0.30402005,0.13689464,0.015366787,0.15620346,-0.52543366,0.30447283,-0.67330384,-0.012638374,-0.1480514,0.11248732,0.05013385,-0.3177691,0.37650305,0.15963641,0.276647,-0.36100194,-0.19787216,-0.098980315,0.52413744,0.17699386,0.27620646,0.81898713,-0.26787362,0.040157717,0.0052310484,0.45637995,1.1750598,-0.4059836,0.039867274,0.36320674,-0.2733321,-0.77252394,0.26341954,-0.3273196,0.052968018,-0.15082102,-0.46474373,-0.5649568,0.39633915,0.1460478,-0.14924821,0.20993003,-0.5389637,-0.19407202,0.24684331,-0.19994621,-0.2955775,-0.36954206,0.030989153,0.589241,-0.29549047,-0.2147296,0.077373356,0.52821565,-0.21139762,-0.48552817,-0.022760976,-0.4207159,0.30309325,0.015636198,-0.23878536,-0.0299129,0.0027119636,-0.36709887,0.24289624,0.34516615,-0.2931588,-0.07892458,-0.25045437,-0.070692405,0.7023014,-0.11529139,-0.038438026,-0.6204254,-0.430383,-0.99665505,-0.261881,0.6247443,0.1517916,-0.07906333,-0.5292574,0.020394385,-0.073290244,0.015833752,-0.2132307,-0.49587914,0.41417333,0.11227678,0.33521023,-0.02649742,-0.62118614,-0.043262184,0.09270062,-0.45778984,-0.40947983,0.59724116,-0.09339109,0.79686457,0.07220672,0.17406784,0.2689337,-0.60281,0.3133487,-0.27750772,-0.23651457,-0.69934094,-0.051427174,313 -184,0.51744205,-0.16557525,-0.5528868,-0.09729891,-0.16925281,0.22943935,-0.2023794,0.48433718,0.122084565,-0.3322768,-0.14316045,-0.07244648,-0.0017319262,0.36038506,-0.18100695,-0.47898322,0.04669307,0.14213,-0.57942444,0.71578914,-0.46716937,0.29169905,0.031010201,0.2577967,0.3154215,0.17075394,0.13102202,0.0016495108,-0.32129398,-0.3384474,-0.08444525,0.36022106,-0.33487147,0.06544135,-0.21022095,-0.42078984,-0.14278439,-0.5257675,-0.49824885,-0.70560354,0.15961011,-0.85435975,0.71089005,-0.11260154,-0.31224817,0.36282876,0.22819702,0.21136741,-0.104530334,0.0190754,0.19841976,-0.07840608,-0.088110246,-0.10006365,-0.33853424,-0.48872533,-0.58582157,0.07454508,-0.45471328,0.009687038,-0.2034455,0.11167769,-0.28783208,-0.0052770297,-0.19491173,0.44203052,-0.41783693,0.001041766,0.10074683,-0.09642465,0.12492573,-0.6600465,-0.21070054,-0.07886334,0.32790914,-0.15989906,-0.19320671,0.20593381,0.43848366,0.51642895,-0.03277523,-0.25172517,-0.5156785,0.046028927,-0.015085375,0.5484015,-0.21958661,-0.6790152,-0.25000608,0.11944227,0.42627946,0.076622844,0.15024033,-0.07878114,-0.073846854,-0.021179438,-0.3750072,0.51544654,0.5046983,-0.3181181,-0.18913631,0.4495278,0.34592003,0.23165278,-0.23927672,-0.06897535,-0.12491291,-0.5583083,-0.008057381,0.03237593,-0.13822171,0.5335271,-0.18223272,0.23925243,0.45845836,-0.10214748,-0.03189349,0.2850978,-0.012338148,0.033985488,-0.08757284,-0.26081258,0.12773632,-0.41013697,0.036723673,-0.15636362,0.61129296,0.12917192,-0.72642213,0.35976082,-0.42869893,0.12465086,-0.068438545,0.39454702,0.7316291,0.34697372,0.16843864,0.49212354,-0.13665828,0.09969356,0.0115889665,-0.23790474,-0.040726386,-0.18863821,0.09176038,-0.58138543,0.16206105,0.02854794,-0.06565003,0.22668839,0.645354,-0.5866548,-0.24688426,0.22306436,0.85628384,-0.22055271,-0.2598915,1.0531149,1.1361573,1.0095378,-0.015684856,1.0927861,0.25858894,-0.11803135,0.02233134,-0.37403706,-0.4356497,0.22398582,0.24414796,-0.41374665,0.35148957,6.52194e-05,-0.034152612,0.46845877,-0.33443704,-0.17452185,-0.19333169,0.14756495,0.21918215,-0.043046046,-0.4450086,-0.36732382,-0.10348528,0.017083919,0.33233845,0.29930368,-0.21419702,0.4788438,0.00922006,1.5501045,0.0060358844,-0.07048105,-0.04785627,0.44180438,0.21592139,-0.04788815,0.08058972,0.16016054,0.34803674,0.020778839,-0.41737074,0.13143054,-0.280384,-0.43897206,-0.10967251,-0.27319103,-0.2369971,-0.2237258,-0.50857854,0.04333599,-0.052605584,-0.39015463,0.42235318,-2.9672525,-0.3165742,-0.15515852,0.23420572,-0.19038185,-0.4760355,-0.12858397,-0.53164256,0.48270494,0.19605964,0.4981337,-0.6123926,0.55145717,0.1268805,-0.5391775,-0.12511608,-0.59449553,-0.13777004,0.048103355,0.5034164,-0.026829254,-0.17897949,0.3587351,0.19054209,0.5565561,-0.059652377,0.11878251,0.22057524,0.425856,-0.050794832,0.51381326,-0.07588155,0.7156165,-0.23139025,-0.20814888,0.41662043,-0.42972106,0.29136628,-0.17504255,0.21065791,0.4865863,-0.34096876,-1.0072689,-0.5062397,-0.0010006666,1.1635873,-0.09136148,-0.41749084,-0.0012241363,-0.21419811,-0.32397974,-0.025620075,0.39359412,-0.19712272,-0.15597378,-0.7799404,-0.0037683647,-0.1039552,0.015587095,-0.1816242,0.045154158,-0.51494336,0.5957534,0.044360843,0.46720654,0.18462642,0.251215,-0.36052674,-0.48116368,-0.035360314,1.037732,0.5261061,-0.003855145,-0.20526582,-0.024683062,-0.4049366,-0.039445713,0.102653295,0.74093235,0.5270256,0.050891154,0.004031984,0.23418067,-0.014346512,0.20883936,-0.22058313,-0.25796923,-0.2070041,0.18633427,0.65731084,0.6205649,-0.053418234,0.8033077,-0.20099878,0.33705392,-0.25566596,-0.43194532,0.49066934,0.9076718,-0.2305481,-0.39604002,0.3851382,0.469932,-0.09826081,0.34783062,-0.50417197,-0.50455827,0.27054802,-0.18014635,-0.28396347,0.42232165,-0.2887682,0.08352138,-0.93965966,0.30296925,-0.34757745,-0.5438355,-0.6069696,-0.15785584,-3.1164246,0.16314891,-0.13519141,-0.15462631,-0.0957314,-0.3505675,0.07816348,-0.5242754,-0.5703565,0.11302366,0.11115217,0.65868956,-0.14013529,0.087317176,-0.21611395,-0.24593128,-0.17120337,0.25771523,0.110564895,0.47096786,-0.09533162,-0.3760188,-0.10976664,-0.17611074,-0.40131664,0.07313967,-0.7829498,-0.44955307,-0.035664774,-0.5103843,-0.24407601,0.633489,-0.32721978,0.032608323,-0.17813975,0.13996972,-0.06537845,0.20857175,-0.057868395,0.22266549,0.04647668,-0.27474144,0.30525473,-0.19638102,0.21065713,0.041754737,0.3553728,0.43493894,-0.02197233,0.35559654,0.5395767,0.6837536,-0.07135911,0.8418858,0.36885244,-0.13668273,0.26993528,-0.29632515,-0.16387731,-0.51785904,-0.3226344,0.056618404,-0.45252475,-0.44837418,-0.22639489,-0.3472618,-0.80661243,0.57718873,0.0007567207,0.076657206,-0.15625069,0.52062595,0.6871433,-0.24549259,0.119879484,0.061517175,-0.06714392,-0.3959425,-0.33992642,-0.60661906,-0.44140413,-0.14189857,1.0567402,-0.08457085,0.110050544,-0.0120914085,-0.21781506,-0.09803454,0.14121781,0.107745506,0.039701767,0.37686604,-0.36025542,-0.68435895,0.2904105,-0.47215664,-0.12366312,-0.44707793,0.34325877,0.6174772,-0.43719786,0.47771472,0.5567977,0.15920617,-0.21877457,-0.48824355,-0.039836917,0.036790546,-0.044809863,0.35259566,0.21957022,-0.67899984,0.51615715,0.2385536,-0.28104627,-0.6093079,0.64816445,0.12486603,-0.20166321,-0.14574972,0.31366667,0.2831417,0.004740451,-0.36611795,0.23687503,-0.44515368,0.3670718,0.10904596,0.050159864,0.34366184,-0.2759882,-0.18711956,-0.6968675,-0.033756264,-0.48704067,-0.34025708,0.2571201,-0.0030698418,0.35913646,0.06847045,-0.025022106,0.23569378,-0.53315514,0.08261926,-0.112184756,-0.32739878,0.29372007,0.4598528,0.47556102,-0.4923379,0.55923325,0.11037622,-0.072529085,0.08566152,0.06898681,0.49033782,0.022164373,0.4146808,0.1086267,-0.06861701,0.34073144,0.8140741,0.24961667,0.3022122,-0.003861936,-0.24362607,-0.06348314,-0.13325769,0.1920138,-0.05670448,-0.553065,-0.11595914,-0.18644947,0.27896088,0.3936773,0.053831093,0.33480814,-0.12191612,-0.38278607,0.012477931,0.1760367,-0.016216304,-1.492558,0.4250844,0.13180414,0.9130396,0.17404357,0.0020255486,-0.032165386,0.61720335,-0.15081906,0.12190766,0.39014637,-0.016968815,-0.32611415,0.4567181,-0.7744652,0.48893872,0.07494051,0.07252038,-0.037962515,-0.038107388,0.35979825,0.8389107,-0.28942066,0.10049946,0.112653516,-0.3861073,0.10509275,-0.28702193,0.14378262,-0.5319474,-0.21051213,0.79617745,0.48727754,0.31329435,-0.119253196,-0.00089727045,0.16955797,-0.16732177,0.03552235,0.16767338,0.27780542,-0.26647818,-0.7143936,-0.08107621,0.39078015,0.004993822,0.17254023,0.14670639,-0.11581696,0.2588808,-0.16776428,0.0347496,-0.06876202,-0.47772694,-0.040695764,-0.41620082,-0.35514995,0.42192382,-0.33766985,0.19351864,0.18650071,0.06844523,-0.14295033,0.34850064,0.15204713,0.6358879,-0.07378616,-0.28526434,-0.29945153,0.07384478,0.16589643,-0.24083942,-0.12726882,-0.17421418,0.22111592,-0.607304,0.3619981,-0.1143739,-0.29285476,-0.049855214,-0.014048902,0.15128306,0.3724459,-0.07443539,-0.088414796,0.026478497,0.049413405,-0.2948267,-0.09300136,-0.09328873,0.288016,0.34659526,-0.12852195,-0.1282966,-0.028356755,-0.12611079,0.43252128,-0.03104511,0.44068673,0.5189806,0.26597616,-0.21509574,-0.123795554,0.21942899,0.63918203,-0.0969534,-0.13899599,-0.39129838,-0.3495423,-0.32848868,0.23780768,-0.11237014,0.32543358,0.10524429,-0.16046534,0.6223555,-0.13738789,1.3185252,0.07031636,-0.3643258,-0.015149092,0.5181554,0.032063182,-0.10139481,-0.24396655,1.1085514,0.40480295,0.08918524,-0.048661098,-0.42128196,0.050838448,0.12379177,-0.21776527,-0.2764435,0.047978632,-0.53429234,-0.32070586,0.27354035,0.10384249,0.2595289,-0.11905599,0.16563262,0.33319268,0.06263541,0.21392663,-0.5995305,-0.1293075,0.24465951,0.35103428,-0.20454772,0.1484944,-0.5587991,0.2319568,-0.56833977,-0.015649866,-0.23586008,0.17678134,-0.11093758,-0.21343108,0.37012327,0.009759876,0.34141967,-0.38973075,-0.3576264,-0.08593542,0.37794203,0.08103359,-0.02376879,0.4384529,-0.19799678,-0.043420196,0.21369031,0.50607413,1.1074661,-0.27873835,0.07857733,0.3396742,-0.29573902,-0.61062056,0.26449788,-0.28984702,0.3000824,-0.0045368117,-0.19220959,-0.58467066,0.40774506,0.13423282,0.14493296,0.03697891,-0.5041738,-0.0631438,0.32615376,-0.31019047,-0.17495257,-0.43483284,0.009862844,0.46569014,-0.31407708,-0.29371104,0.0011650622,0.3161537,-0.20582822,-0.5969833,-0.03121732,-0.37922922,0.21826838,0.094663545,-0.33478308,-0.2323651,-0.12077082,-0.41929403,0.33710524,0.3571147,-0.3016988,0.05009636,-0.22901908,-0.1942565,0.8857552,-0.31144392,0.32907328,-0.49644873,-0.4506749,-0.71655595,-0.39274412,0.07088551,0.20171942,-0.13533853,-0.7415056,-0.043720294,-0.26121953,-0.40248492,-0.090446115,-0.28289315,0.41008234,0.03678887,0.33322796,-0.19727807,-0.80232114,0.19397761,0.08172771,-0.13621339,-0.48183373,0.44078094,0.040148657,0.729481,0.1352846,0.23353964,0.34736043,-0.3985985,-0.092031755,-0.18197033,-0.06201394,-0.76837856,0.06631105,314 -185,0.27637112,0.023951054,-0.5398916,-0.22834097,-0.18711755,0.23905894,-0.089516066,0.32783088,0.105120614,-0.25269502,-0.07401112,-0.20183498,-0.09795244,0.44610775,-0.16400261,-0.6821953,-0.08488858,0.08763339,-0.6791917,0.4218079,-0.43688667,0.4541573,0.14273329,0.21977834,0.052722763,0.29072487,0.18419807,-0.1492073,-0.11919885,-0.006655089,-0.10919195,0.08360409,-0.7415913,0.20030206,-0.11983851,-0.17502002,-0.07910829,-0.35202128,-0.24438912,-0.634269,0.25518936,-0.5060592,0.53431004,-0.16133162,-0.286795,0.23955567,0.102790385,0.3201151,-0.35568133,0.110679895,0.20018722,-0.042938665,-0.02000411,0.011942136,-0.24121042,-0.4946982,-0.525312,0.13820557,-0.68297005,-0.20548348,-0.1452743,0.15593435,-0.23069498,0.0022336324,-0.30108708,0.51820356,-0.2949368,-0.012453111,0.28098863,-0.07331503,0.10547862,-0.4327944,-0.036467392,-0.08421547,0.30340087,0.028743673,-0.16673444,0.2441831,0.47505495,0.4961272,0.076099016,-0.21167493,-0.14207672,-0.07982264,0.075764224,0.3949534,0.054783646,-0.30855948,-0.15351412,-0.0025143793,0.005712239,0.0531534,0.056186642,-0.4989647,0.041426226,0.10748381,-0.22025135,0.1208769,0.3717256,-0.5061834,-0.35280636,0.49148336,0.4702169,0.121411934,-0.01008153,0.106069274,-0.12965956,-0.5124506,-0.18949093,0.15632278,-0.13649264,0.52368015,-0.11936585,0.15754665,0.66599476,0.009088699,-0.010683942,-0.13865875,-0.13889167,-0.006206083,-0.2816118,-0.12065583,0.0011341035,-0.41487247,-0.03926197,-0.23159203,0.65145713,0.08529976,-0.8431826,0.38623142,-0.5079842,0.121574424,0.06649841,0.5600599,0.8138802,0.30008143,0.029134028,0.7753601,-0.51677287,0.07485667,-0.037160814,-0.26548442,0.17091165,-0.08478082,-0.0057149846,-0.54920506,0.03683432,0.012269099,-0.04758834,-0.025708683,0.19905177,-0.4121589,-0.12341656,-0.053146433,0.63960344,-0.36439997,-0.19342889,0.650829,1.0271573,0.89335555,0.1650771,1.3993633,0.4096325,-0.17357877,0.16503666,-0.48833275,-0.5556707,0.123848654,0.32612145,-0.059785653,0.4030222,0.034261007,0.14300022,0.44939175,-0.23922315,0.2165101,-0.023650905,0.3015889,0.00945454,-0.18199347,-0.308004,-0.32803443,0.2048696,0.016987165,-0.03677392,0.2418315,-0.15860415,0.2508996,0.21928455,1.6789138,0.044193126,0.15034193,0.02573875,0.25079232,0.2818248,-0.26846156,-0.22455445,0.35131726,0.2954528,-0.19351403,-0.51759994,0.0010355373,-0.36156994,-0.4417529,-0.30585787,-0.3469698,-0.06941431,-0.064786784,-0.40798095,-0.14360915,0.10911908,-0.19024353,0.42209834,-2.6839554,-0.16889492,-0.1809265,0.2901039,-0.40396163,-0.26525253,-0.17457908,-0.3638523,0.3661204,0.5337388,0.26210308,-0.55046356,0.31387967,0.20231333,-0.2191825,-0.27447805,-0.6138904,0.09352113,0.04350712,0.19096276,-0.14596061,-0.0970812,-0.2657994,0.30792198,0.46587434,-0.048127748,0.0041082706,0.3237433,0.38920662,0.11223305,0.4941193,0.18894716,0.5967444,-0.10201553,-0.0008610646,0.346741,-0.3408573,0.27991194,0.1984405,0.19682404,0.25090164,-0.5784729,-0.70440537,-0.57224005,-0.45202008,1.0819682,-0.44722512,-0.14534134,0.3431465,-0.0063822987,-0.10746409,0.046484645,0.40114507,-0.014489416,-0.07295736,-0.68121326,0.042531855,0.07902051,0.22724155,-0.17587978,0.19960971,-0.32858175,0.6102369,-0.15151224,0.41194674,0.44112265,0.25302348,-0.09752867,-0.44211423,0.080784425,1.0522358,0.3897427,-0.019389952,-0.083657734,-0.1799273,-0.31494513,-0.1201673,0.10190209,0.3076495,0.6674052,0.057952385,0.024792464,0.22465476,-0.20508114,0.08733442,0.010088495,-0.3850865,0.010112792,0.042642936,0.44065768,0.40307578,-0.23866902,0.5125628,-0.3124139,0.06424239,-0.20545398,-0.52541584,0.5783214,0.66813314,-0.2804752,-0.14400567,0.3557798,0.27423176,-0.25540125,0.3342174,-0.43011743,-0.25400355,0.8660685,-0.07625889,-0.24846989,0.070058376,-0.17678586,-0.026866836,-1.0374949,0.25470605,0.036486506,-0.41556975,-0.48606256,-0.15242094,-3.4574857,0.006317691,-0.09726129,-0.0511046,-0.073624104,0.018321108,0.27174664,-0.4062077,-0.5797814,0.017884266,0.00465885,0.47252998,0.03121422,0.25302574,-0.22734256,-0.2718722,-0.37960473,0.2566372,0.10986091,0.31890425,0.060315236,-0.349263,0.03616357,-0.35700378,-0.508507,0.157877,-0.46768105,-0.50973195,-0.2850078,-0.4901801,-0.3087531,0.7836489,-0.41140115,-0.10049625,-0.19344988,-0.054891206,-0.13094112,0.30584472,0.24540213,0.20630045,0.14490597,-0.099499226,-0.17893621,-0.45602912,0.123404786,0.15974495,0.31536072,0.5245475,0.024641188,0.23608683,0.49193385,0.6178836,0.018115096,0.46115315,0.30637398,-0.088657565,0.39215106,-0.4769879,-0.03731779,-0.5164503,-0.3706877,-0.39242223,-0.364523,-0.545951,-0.20009695,-0.385258,-0.7275171,0.25673714,-0.028749045,0.10455561,-0.019460836,0.34160012,0.31835642,-0.14175068,0.12899399,-0.17842725,-0.24488409,-0.45096081,-0.48941866,-0.6301497,-0.551939,0.3136594,1.1339297,-0.086060904,-0.23565479,-0.16874106,-0.2567798,0.14310837,-0.093112245,0.16335149,0.19477436,0.30912966,-0.198443,-0.7040095,0.41681603,-0.07695875,-0.20158768,-0.61211866,0.050708905,0.6196811,-0.49144718,0.6087189,0.20981884,0.21883969,0.18235627,-0.4242665,-0.14808826,0.18152255,-0.37345186,0.48509243,0.056386754,-0.5121849,0.4267759,0.16482933,-0.058024373,-0.7316878,0.5016706,-0.037661053,-0.12341622,0.12707916,0.3209602,0.060468365,-0.11089712,-0.16111214,0.26171383,-0.53336984,0.17507932,0.50724995,0.08411773,0.52183855,-0.09707775,-0.23047099,-0.53671193,-0.12852535,-0.51414037,-0.32428977,0.025322147,0.28911898,0.17608611,0.029989148,0.07988623,0.41580006,-0.33858633,0.13942613,0.036697533,-0.12701124,0.36177245,0.38904637,0.21173,-0.46312115,0.44497046,0.052364595,0.11960588,-0.23613341,0.03630162,0.3893381,0.3115618,0.1413757,0.10583805,-0.07450256,0.2685934,0.5145698,0.18360707,0.27580172,0.114094764,-0.3499495,0.2617841,0.03965908,0.008618816,0.058918145,-0.17442198,-0.10599424,0.11918783,0.18297027,0.43739837,0.14708449,0.22179817,-0.06837585,-0.054762285,0.24718128,0.17770304,-0.11813385,-0.72927576,0.3933695,0.15837468,0.645591,0.6263954,-0.097218275,0.13913223,0.35737297,-0.37459183,0.18038744,0.42231864,-0.061057653,-0.48083484,0.55960727,-0.5724757,0.4853391,-0.2028955,-0.04235413,0.099750616,0.1817041,0.35351577,0.9839742,-0.07413532,0.035048567,-0.07674928,-0.19041291,0.08295608,-0.29077688,0.087670736,-0.5136526,-0.38208312,0.54492354,0.25014108,0.1951701,-0.4173317,-0.098216504,0.044474863,-0.2558634,0.1475378,-0.06735547,0.019612318,0.07276844,-0.5846067,-0.3881117,0.5164182,-0.22142996,0.039314512,0.17989327,-0.3835439,0.15978248,-0.25329834,0.027535273,0.02016145,-0.59751904,-0.07625417,-0.20135339,-0.29822698,0.23455499,-0.50721365,0.27262726,0.037858356,0.009228107,-0.43980408,0.20085236,0.22440015,0.68658614,-0.082600504,-0.10669644,-0.23568018,0.1436545,0.18733117,-0.28686687,0.028239029,-0.29083163,0.0933592,-0.60445184,0.35403615,-0.02259813,-0.23813261,-0.03302427,-0.11595364,0.036945507,0.45200157,-0.2472121,-0.05328027,-0.13523279,-0.113485605,-0.14080635,-0.016344389,-0.30618146,0.3244497,0.06352065,0.0140812555,0.08213026,-0.0029292027,-0.16040091,0.32275313,0.057431277,0.25415164,0.22081521,-0.0938596,-0.38077322,-0.07826676,-0.043285258,0.19666816,0.3785574,-0.120116234,-0.2576526,-0.15983275,-0.21383257,0.25782365,-0.22507551,0.09214359,0.09280626,-0.4450465,0.7538968,0.20327148,1.3212277,0.11449744,-0.22689615,0.081943415,0.462282,0.15497461,0.04239021,-0.40421066,0.778033,0.63588345,-0.05286323,-0.077109165,-0.25134027,-0.3579146,0.23682429,-0.13251427,-0.2471617,-0.057378672,-0.6888828,-0.31413278,0.035167076,0.18612243,0.03080529,-0.023950608,-0.1402326,0.13585849,0.06646338,0.46886063,-0.36311415,-0.023618404,0.32129008,0.10154204,0.17827721,0.27147463,-0.45143107,0.51390654,-0.8507633,0.27853045,-0.2518521,0.06156925,-0.05454619,-0.20504254,0.18651466,0.10677627,0.29447466,-0.18447962,-0.36551502,-0.26827767,0.7355654,0.20081417,0.28635377,0.83736795,-0.21587452,0.042808108,0.14994626,0.5297028,1.2746104,-0.021077517,-0.011378918,0.35726115,-0.39149603,-0.6679547,0.18718499,-0.3519697,0.11080701,-0.1799122,-0.28327474,-0.30686906,0.20810512,0.014587804,0.03356306,0.048298184,-0.5557206,-0.22453468,0.41035062,-0.34787768,-0.22946778,-0.28437367,0.2038077,0.80572575,-0.38184786,-0.38809732,0.032809965,0.21163766,-0.30402312,-0.6028587,-0.02957083,-0.2869406,0.38923758,0.24715143,-0.3507232,-0.019053075,0.35305846,-0.3935768,0.04690691,0.26746637,-0.4113444,0.014981764,-0.16736838,-0.14687966,0.9907744,0.15800166,0.014845294,-0.56399304,-0.5604551,-0.93632615,-0.28176087,0.30322972,0.004899152,-0.0060803136,-0.52066153,-0.090185925,-0.054950174,0.13665076,0.097818285,-0.48247048,0.33292028,0.15593942,0.35551465,0.015374438,-0.9307306,-0.13394363,0.20209001,-0.04430566,-0.5560987,0.5800101,-0.091999434,0.79486,0.049498238,0.005277113,0.17233251,-0.7147586,0.32796085,-0.36640593,-0.071166955,-0.5315115,0.124049075,318 -186,0.52310276,-0.42703003,-0.5961577,0.03673104,-0.23871638,0.14416271,-0.15245362,0.5798962,-0.030923175,-0.5472267,-0.13709027,-0.11724117,-0.021722184,0.41549942,-0.2031435,-0.42840806,-0.02571953,0.2628224,-0.55722815,0.66636074,-0.32955754,0.36016506,-0.062059656,0.28258374,0.06990194,0.26015824,0.057934113,-0.20309769,-0.25137243,-0.17949009,-0.093599245,0.23898774,-0.47287655,0.24656463,-0.15621424,-0.37115052,-0.012684196,-0.29828072,-0.3059241,-0.7350429,0.11797362,-0.69532937,0.5478477,0.016909337,-0.39263383,0.22727874,0.016143449,0.27952656,-0.300651,0.0984256,0.22805169,-0.11209526,-0.0952029,-0.3564201,-0.1461039,-0.6056294,-0.5759965,-0.060172644,-0.4424488,-0.12200346,-0.048913606,0.17343731,-0.25111204,-0.082351334,-0.20866942,0.41978264,-0.49191573,-0.08775309,0.104392275,-0.046926036,0.22910397,-0.56690764,-0.17753384,-0.24278474,0.14092864,-0.08311617,-0.19601656,0.24999097,0.1576345,0.4679952,0.0374187,-0.13910116,-0.24256773,-0.064103834,0.1306434,0.47655383,-0.15328328,-0.48356044,-0.07463925,-0.12439283,0.17131323,-0.1550634,0.16866861,-0.23081629,-0.116966836,-0.027160231,-0.20010163,0.045253012,0.39417896,-0.31954286,-0.3106845,0.31081465,0.60807437,0.1788179,-0.19806154,0.098807976,-0.10229264,-0.47975233,-0.20274459,0.14461273,-0.09017582,0.55767876,-0.18855406,0.20668268,0.5989758,-0.15215372,-0.005155579,0.0386849,0.029040484,-0.008553973,-0.08774614,-0.5720505,0.28740254,-0.35479593,0.069983535,-0.17439093,0.595887,0.22077826,-0.65165025,0.45148283,-0.5495004,0.0734504,0.03113846,0.4737145,0.63674664,0.563425,0.09781622,0.46050367,-0.24750371,0.10252774,-0.038250707,-0.16514407,0.09506176,-0.23786275,-0.21585006,-0.46892625,0.1530982,-0.029315216,-0.27387065,-0.17036384,0.46247387,-0.62086135,-0.06306268,0.038522944,0.7660087,-0.3127037,-0.04377246,0.6975596,0.87330955,1.0442315,0.08488052,1.1589549,0.30986804,-0.26269335,0.021451639,-0.2471378,-0.5695637,0.20418021,0.35641295,-0.027040299,0.45342207,0.015718056,-0.12195552,0.41054186,-0.29114178,0.086141184,-0.20248416,0.033315666,-0.06181719,-0.09529999,-0.5402002,-0.25584343,-0.16535291,-0.06958661,0.00835943,0.23184499,-0.20549656,0.32639486,0.17847417,1.6538677,-0.18044524,0.042091306,0.15405641,0.393065,0.14782909,-0.11163257,-0.021681791,0.29359967,0.4586993,0.14961602,-0.5061608,0.14058533,-0.16488314,-0.73564243,-0.20657319,-0.22836144,0.012932872,-0.14270423,-0.5673856,-0.18651204,0.08021774,-0.16493091,0.21301273,-2.346876,-0.056640673,-0.0761516,0.27527696,-0.17327932,-0.3994242,-0.05453237,-0.36952627,0.22641902,0.26217708,0.43258947,-0.6478617,0.47132936,0.34804776,-0.40564978,-0.06918209,-0.5919818,-0.17394096,-0.07521068,0.43627262,-0.0355804,-0.013290966,0.11643119,0.024037743,0.37603608,-0.30723172,0.12016271,0.20641705,0.20928858,0.1584817,0.29913706,0.12916976,0.5011204,-0.26853922,-0.13731797,0.39511287,-0.34318656,0.19027065,0.040771168,0.21862753,0.33559456,-0.45889142,-0.83862305,-0.680064,-0.22365803,1.1403441,-0.16380267,-0.2715074,0.096526615,-0.22374357,-0.3956149,-0.18570445,0.31973442,-0.1336976,0.05290666,-0.80887717,-0.025100885,-0.093647875,0.3746423,0.016547177,0.013230248,-0.48917803,0.576623,-0.043693133,0.63711506,0.4274505,0.1352925,-0.12551475,-0.4778959,-0.08809268,1.089281,0.4479298,0.14587098,-0.15496387,-0.21228412,-0.3489994,0.15548763,-0.04780054,0.42335203,0.74402404,-0.03918368,0.06387989,0.18137659,-0.024742085,0.22344495,-0.15296799,-0.3543943,-0.06690804,0.15711135,0.49989885,0.30555496,-0.14205052,0.5632799,-0.2738877,0.53359944,-0.15179352,-0.40879238,0.44754678,1.0957409,-0.2593504,-0.16297117,0.6145497,0.5084515,-0.31004295,0.3922924,-0.6560928,-0.2604373,0.326994,-0.2419743,-0.2432594,0.43561867,-0.23740013,0.36453208,-0.92256254,0.5205266,-0.32171923,-0.57395196,-0.626099,-0.14260203,-2.9557912,0.24866979,-0.118387274,-0.19739218,-0.027903585,-0.13352521,0.39451733,-0.6846342,-0.4559768,0.07220776,0.10952399,0.6023628,0.035981733,-0.086621955,-0.25324047,-0.50410736,-0.11179306,0.2816475,0.090291515,0.26067582,-0.17420883,-0.5293056,-0.081377186,-0.20695959,-0.34452406,0.06568911,-0.8383477,-0.5268383,-0.13691215,-0.52950484,-0.3229896,0.66399133,-0.20353632,0.1170143,-0.09400991,-0.06714587,-0.17593437,0.17342362,0.025362408,0.26092494,-0.015409513,-0.06880323,0.09900867,-0.20348406,0.0819592,0.15472294,0.2240403,0.35970503,-0.2611076,0.18964805,0.58555776,0.68323696,-0.110345356,0.82239515,0.62884253,-0.1810331,0.4301847,-0.17085412,-0.215472,-0.6414978,-0.48122412,-0.020225527,-0.36056516,-0.4695347,-0.046713065,-0.3044772,-0.81674933,0.64997464,-0.17769171,0.0011564374,0.086379446,0.38655424,0.51459366,-0.2019802,-0.06926703,-0.1106592,-0.17631921,-0.392026,-0.41969612,-0.75753754,-0.43002245,-0.020290295,1.3137499,-0.20265032,0.102445886,0.11910228,-0.23890118,0.040890694,0.13804907,0.0140869655,0.11323878,0.4156395,-0.22856797,-0.6999185,0.5260938,-0.10251741,-0.28134346,-0.18333356,0.27398655,0.74830043,-0.7420502,0.42677796,0.39903003,0.01959353,-0.24794383,-0.45325178,-0.22142096,0.096761584,-0.17791905,0.40523037,0.17879707,-0.6364259,0.40176657,0.3223625,-0.36337906,-0.674309,0.466035,-0.034596,-0.24624461,0.09229329,0.35890818,-0.2128289,0.058714136,-0.3728427,0.23585504,-0.48703936,0.19351467,0.37058797,-0.06062256,0.066548795,-0.24452001,0.006066235,-0.8277524,0.070992075,-0.3742927,-0.34809673,0.27575347,0.09067513,0.15379347,0.16030271,0.09234405,0.40889543,-0.4022886,0.1145716,-0.065352455,-0.30612585,0.4056926,0.40348282,0.21321869,-0.30048516,0.48067066,0.014155629,-0.09656267,-0.26822665,0.10614917,0.55329967,0.13995923,0.41759187,-0.07175066,-0.20809129,0.3414942,0.7960406,0.31075805,0.63572186,0.008313123,-0.13353406,0.18503883,0.10598922,0.23079924,0.094274126,-0.3302746,-0.049036987,0.08133186,0.20660114,0.50892043,0.051501267,0.38293898,-0.17100368,-0.24388734,0.040464696,0.21881573,0.035677005,-1.1121627,0.44952738,0.17801683,0.6300704,0.63427466,0.1635094,-0.1487482,0.57542026,-0.32316697,0.1152511,0.3423316,-0.034657247,-0.58375186,0.5372115,-0.64633286,0.33169693,-0.109656766,-0.052911762,0.041991796,-0.17266846,0.5426829,0.885586,-0.061672848,0.11909537,0.0026340366,-0.20194419,0.08360299,-0.34485015,0.05983253,-0.4133721,-0.365132,0.72632116,0.44687155,0.40450957,-0.16596515,0.057169702,0.11754587,-0.14681871,0.37333933,0.14159788,0.25827152,0.018147819,-0.61184394,-0.146302,0.5907497,-0.2443013,0.066687986,0.079526305,-0.5272512,0.2070147,-0.061287235,0.012469991,-0.02052462,-0.6342284,0.01956716,-0.39260644,-0.314178,0.56272304,-0.105340675,0.09672438,0.16362739,0.06874303,-0.2884674,0.29651174,0.13489887,0.62423015,0.12753966,-0.16645207,-0.18209185,0.28789333,0.16365999,-0.24058637,-0.11038415,-0.22937985,0.09673437,-0.60945046,0.3081116,0.11449493,-0.2470266,0.057097897,-0.053650375,-0.011761081,0.43658677,-0.026751598,-0.16964756,0.006404257,-0.011564628,-0.19327196,-0.2562915,-0.15231766,0.2831152,0.15324074,0.026573602,-0.067355424,0.08734996,-0.005008926,0.5697264,0.097411364,0.44382197,0.57593143,0.05398617,-0.4404455,-0.11826232,0.07837917,0.3688702,0.03857853,-0.030678503,-0.31638438,-0.42096606,-0.33231786,-0.023466023,-0.24987565,0.4095537,0.20375586,-0.24866565,0.962081,-0.012116241,1.2301676,-0.121592276,-0.33429763,0.06802109,0.41308016,0.05484677,0.0871844,-0.421737,1.0836129,0.45412222,-0.06312877,-0.097974844,-0.2605362,-0.22379008,0.09598141,-0.24343099,-0.22961079,-0.08146398,-0.6979023,-0.4134628,0.20855877,0.3279297,0.15414084,-0.10191556,0.17553124,0.2964163,-0.0066179195,0.12263704,-0.48660338,-0.025294764,0.38349375,0.2261432,-0.08421723,0.11654563,-0.5273925,0.3823045,-0.64266783,0.18934713,-0.20101975,0.08342401,-0.09682034,-0.43344232,0.21720524,0.11337616,0.23197907,-0.51437736,-0.37943316,-0.23735991,0.5510343,-0.048015416,0.12687606,0.60688645,-0.32748902,0.14510009,0.10743012,0.5069534,0.94957435,-0.3936566,0.006666009,0.42897612,-0.42128894,-0.63663447,0.11983841,-0.21399304,0.20996137,-0.13842313,-0.23002917,-0.66959256,0.2914076,0.27069017,-0.11239778,0.026939234,-0.47114295,-0.061672583,0.5208644,-0.44414523,-0.24871527,-0.30867442,0.3615519,0.593124,-0.5098935,-0.4924293,-0.037833255,0.23748241,-0.45958152,-0.50633705,-0.18309647,-0.43993872,0.46913016,0.23353806,-0.3241242,-0.015669862,0.04764737,-0.41171607,0.09243239,0.34146273,-0.3926268,0.11179863,-0.5221215,0.00039230386,0.8506596,-0.050069496,-0.10901987,-0.47792122,-0.4820458,-0.9157817,-0.5313889,0.49941388,0.25818282,0.0641017,-0.6132191,0.055982854,-0.12609883,-0.13868667,-0.026433144,-0.21720646,0.4602075,0.19764636,0.28624067,-0.10428422,-0.8474013,0.3317013,0.097263254,-0.11104898,-0.527386,0.39859515,-0.12938315,0.9752422,0.09650646,0.21941127,0.26768792,-0.56738085,-0.059617057,-0.1328104,-0.038040526,-0.74210376,0.094809085,320 -187,0.29698697,-0.1312197,-0.5290776,-0.14186904,-0.14783713,0.009669741,-0.0550677,0.5136228,0.30143368,-0.48306084,0.015035484,-0.2712678,-0.036011577,0.45326266,-0.15417649,-0.71418977,-0.0024420181,-0.023767956,-0.5827673,0.60227674,-0.40683264,0.21083085,0.040834162,0.4249318,0.16974616,0.40276322,0.14836663,-0.23817448,-0.09543573,0.044802036,0.01637366,0.07337324,-0.52315134,0.039404266,-0.12238096,-0.33000043,-0.011769978,-0.39965662,-0.43546358,-0.76371896,0.4292668,-0.8671814,0.42197558,-0.03351983,-0.21076539,0.18094331,0.19358058,0.399347,-0.40843385,-0.07906424,0.017588139,0.08363632,-0.06301466,0.011347562,-0.31549254,-0.3574501,-0.6588137,0.060170937,-0.52033114,-0.28284818,-0.26927146,0.13423195,-0.42989558,0.07212968,-0.06851807,0.6209894,-0.44065052,-0.12127422,0.44452408,-0.2961912,0.24589086,-0.505041,-0.10993055,-0.14604323,0.13294971,-0.11478119,-0.12846312,0.366265,0.34649178,0.60876995,0.07835164,-0.19888064,-0.284135,-0.027729336,0.22909811,0.3585931,-0.14594494,-0.58069366,-0.17093499,-0.029837433,0.0911674,0.112492934,0.18781781,-0.36188474,0.0043872753,0.24836569,-0.3269498,0.3603225,0.55414647,-0.362822,-0.36086586,0.28768703,0.51133525,0.19946721,-0.12953152,0.08648365,0.11021933,-0.5030527,-0.14343289,0.06573298,-0.30563673,0.573085,-0.12805699,0.19509216,0.79796416,-0.17465182,0.12569612,-0.11998752,-0.11224601,-0.09007053,-0.44523224,-0.18421389,0.10954188,-0.5253949,0.18904768,-0.2228291,0.76489335,0.36304656,-0.63318765,0.4394494,-0.55181146,0.31244084,-0.09807291,0.50637543,0.72540057,0.31880724,0.25768572,0.72795635,-0.5510689,0.05074553,-0.11583435,-0.38529152,0.048578754,-0.18980889,0.01325446,-0.34830335,-0.087542616,0.10296686,-0.1512958,-0.03888049,0.29801133,-0.54657096,-0.049018245,0.069006845,0.9885244,-0.25925556,-0.013709458,0.76379496,0.9359389,0.95454013,0.030502943,1.342596,0.28051758,-0.28414932,0.4029743,-0.31653196,-0.8493449,0.2691659,0.29401734,0.0074325404,0.2842969,0.0030645707,-0.016861347,0.4928772,-0.48338848,0.26023057,-0.30995938,0.29904082,0.17558047,-0.12217037,-0.17831063,-0.13086183,-0.008462427,-0.048204105,0.08632536,0.18569747,-0.082181826,0.30229637,0.08165085,1.6061499,-0.07871151,0.111398146,0.14022246,0.56435615,0.186387,-0.07312369,-0.11123467,0.14593501,0.4192011,0.11629652,-0.7274963,0.04971216,-0.43797252,-0.4685758,-0.13448569,-0.3797698,-0.035636153,-0.035189103,-0.49190533,-0.15683956,-0.17899282,-0.2893251,0.32986468,-2.6085994,-0.22949256,-0.30414644,0.2640111,-0.40345192,-0.1369698,-0.02715195,-0.5109246,0.33995527,0.46137053,0.38389668,-0.63124883,0.46215388,0.5407305,-0.45650056,0.068715975,-0.6539565,-0.13619515,-0.06972324,0.33672333,-0.0006851991,-0.05722006,-0.06484076,0.18645607,0.48198274,0.15412016,0.022718191,0.3068029,0.32234046,-0.0057476363,0.55967915,-0.03499668,0.5223196,-0.3291855,-0.08746922,0.33879617,-0.44596282,0.20211323,-0.087903984,0.12904464,0.45285237,-0.45429546,-0.81237435,-0.6899883,-0.31545863,1.1801566,-0.15960759,-0.32349735,0.45874995,-0.30440986,-0.030128289,-0.2026292,0.60688823,-0.045395803,0.04445599,-0.80696464,0.09106603,-0.18576585,0.11080552,0.04432227,-0.00837602,-0.27491638,0.6374967,-0.06311998,0.4753827,0.30556476,0.16623001,-0.22115326,-0.5407301,0.12906058,0.8850794,0.36308628,0.15572186,-0.14170009,-0.2328452,-0.5191447,-0.24839936,0.12037928,0.42806536,0.89376056,-0.04787011,0.1278602,0.29032263,-0.04218725,0.08474953,-0.09921816,-0.48899618,-0.12168992,-0.036642965,0.54221666,0.53396744,-0.31578743,0.3717041,-0.045565996,0.28241348,-0.113106474,-0.41838962,0.62176883,0.75851643,-0.2608507,-0.28329474,0.5469628,0.41464362,-0.43799093,0.5390726,-0.6318752,-0.21065448,0.6062374,-0.16927834,-0.519874,0.16768196,-0.35632902,0.15398791,-0.98024255,0.35836276,-0.34969962,-0.23652633,-0.43174335,-0.2275173,-3.505524,0.11975539,-0.3716231,-0.14787586,-0.22989407,0.0809614,0.35398722,-0.5104033,-0.81943244,0.19110604,0.122232914,0.6944678,-0.020615654,0.15682255,-0.25555724,-0.08130991,-0.40610334,0.07578453,0.22654991,0.25288305,0.09101704,-0.519071,-0.15912797,-0.13334863,-0.4279324,0.20484398,-0.48743805,-0.5366772,-0.2948496,-0.653308,-0.31652805,0.7764052,-0.18787499,0.07777799,-0.1988618,-0.0266994,-0.22557841,0.4078626,0.14971104,0.006911977,0.17004183,-0.04777142,-0.016460033,-0.33233774,0.22256298,0.06456546,0.46115315,0.15846367,-0.06076123,0.25009382,0.5310621,0.7525002,0.049703218,0.8119249,0.52127653,-0.06758852,0.42099735,-0.35946324,-0.28374636,-0.5122288,-0.37560362,0.09459473,-0.36657712,-0.41714963,0.06798346,-0.39822325,-0.77382183,0.5067781,-0.06269643,0.354783,0.03837693,-0.022989241,0.4482731,-0.1848488,0.008801904,-0.012682387,-0.1252703,-0.620231,-0.20077196,-0.80902064,-0.5563284,0.29124004,0.9808582,-0.14351459,-0.16206487,0.0012025714,-0.34813705,0.03720445,0.09745566,0.04994879,0.1337371,0.5151908,-0.120339386,-0.68155384,0.40985745,-0.07590679,-0.059004672,-0.6330746,0.07235694,0.5774775,-0.7062637,0.6338646,0.26554808,0.022985578,-0.07419659,-0.38167718,-0.1740933,-0.14196195,-0.17560284,0.3057157,0.104663275,-0.7801405,0.332111,0.3885072,-0.22990759,-0.73735034,0.43284073,-0.061232965,-0.044512432,-0.01737405,0.365241,0.18445136,0.012671795,-0.22170852,0.2133319,-0.47441503,0.16797143,0.28457227,-0.15278816,0.54668045,-0.1422653,-0.21580859,-0.7684298,-0.11727434,-0.5369257,-0.11060317,0.3369916,-0.01092482,0.058715828,0.03981335,0.10529861,0.40750802,-0.017587693,0.10032435,-0.0017610948,-0.37430537,0.47399652,0.49790946,0.5173289,-0.49857962,0.72142726,-0.01269172,-0.014450761,0.22758694,-0.04844657,0.4142085,0.09887255,0.41765437,0.24398027,-0.28565156,0.316291,0.89613056,0.1602632,0.48362893,0.18757702,-0.1885067,0.3270961,0.17474446,-0.0876064,0.112226315,-0.527672,-0.051179428,-0.075519085,0.18716845,0.5569112,0.25391656,0.37738293,0.019297687,-0.37467873,-0.06931231,0.0481617,-0.21209612,-1.1711959,0.3400134,0.18036911,0.85821146,0.5285708,-0.013400849,0.05734936,0.59441245,-0.060151923,0.23277698,0.41464508,-0.1279086,-0.609555,0.5904981,-0.6243956,0.59968114,0.06007266,0.06123052,0.048415717,0.14175917,0.4383759,0.8440571,-0.08625135,-0.034576975,-0.13680753,-0.32839668,0.3637256,-0.46455076,0.102508865,-0.38536942,-0.23541275,0.5049667,0.5181091,0.28244242,-0.13925554,-0.02895918,0.06156124,-0.13795559,0.26642254,-0.19158225,0.016070686,-0.07674362,-0.6638557,-0.43285182,0.46592906,0.036675826,0.2270209,-0.029040825,-0.15275009,0.23623611,-0.22331381,-0.1259159,-0.08209501,-0.67704004,-0.050515223,-0.21606283,-0.4760659,0.38731357,-0.18165499,0.25320584,0.1908764,-0.036414705,-0.55653507,0.28466827,-0.19973275,0.67036885,-0.30154905,-0.17113757,-0.4632634,0.036491513,0.26943907,-0.32998917,-0.021946399,-0.3163584,-0.053323988,-0.5039581,0.42133135,-0.06283551,-0.30502743,0.05053773,-0.29237232,-0.06366104,0.60618377,-0.26378748,0.031183934,0.0064475616,-0.19057609,-0.27561325,-0.24379632,-0.13469087,0.2744463,0.032910608,0.08362251,-0.10427605,-0.26003462,-0.0031120102,0.53510404,-0.07008565,0.22791621,0.44067618,0.086954765,-0.39860025,-0.2334054,0.3088226,0.50549406,0.18561126,-0.17158785,-0.34145638,-0.4548539,-0.26638734,0.23150733,-0.09162008,0.39215127,0.03555728,-0.6084437,0.7948479,0.13322715,1.1989778,0.14203358,-0.35905582,0.1076642,0.44220668,0.05050976,0.031455263,-0.39340344,0.83928424,0.5407241,-0.16143554,-0.21731396,-0.416859,-0.014059595,0.15403658,-0.22097112,-0.16632871,-0.08367739,-0.65892607,-0.28770846,0.2805441,0.26364312,0.20739444,-0.008266195,0.042959746,-0.05467499,0.010563604,0.4890671,-0.48945364,-0.19177777,0.29210943,0.18044242,0.16164133,0.19066219,-0.49637908,0.3876496,-0.52570903,0.003346302,-0.16086522,0.14717625,-0.06994665,-0.3212903,0.26891595,0.013482501,0.47295177,-0.32885453,-0.53121126,-0.33102164,0.6105784,0.23015226,0.17275056,0.7523673,-0.30936432,-0.082306094,0.13204946,0.6886537,1.0671084,-0.11674916,0.02254396,0.19180226,-0.28889912,-0.7089951,0.35529345,-0.4626295,0.24367872,-0.04116789,-0.18201491,-0.6110807,0.27121437,0.21356939,-0.23560658,0.1689573,-0.6064938,-0.5553919,0.09258018,-0.23795009,-0.23252596,-0.3656502,0.067963295,0.61641985,-0.37764266,-0.07499191,0.216781,0.2676915,-0.15103278,-0.6028975,-0.22422408,-0.3243784,0.28574792,0.18724193,-0.43418306,-0.040905822,0.098215036,-0.5438339,0.19597377,0.14449488,-0.46103022,-0.022367867,-0.18587667,-0.19401623,0.911659,-0.08712553,0.20571777,-0.581246,-0.45570728,-0.9140924,-0.3046865,0.5792324,0.018883113,-0.023733504,-0.53652585,-0.10121923,-0.019721666,0.19671442,0.18965897,-0.5306038,0.41246125,0.058767024,0.51899016,-0.021688597,-0.6243515,-0.0036898772,0.12148221,-0.07418752,-0.6016155,0.62358296,-0.046118923,0.89211655,0.1187881,0.07257424,0.2688045,-0.47107697,-0.16715236,-0.33350596,-0.36456245,-0.564738,0.14972264,323 -188,0.30228963,-0.067536615,-0.61117786,-0.035531808,-0.26573083,-0.064878546,-0.20360711,0.41646656,0.34674075,-0.1707299,-0.052368116,-0.06739779,-0.0369872,0.45779413,-0.060805257,-0.5448853,0.051436923,0.28298208,-0.678479,0.61842084,-0.32939288,0.18633138,-0.18126479,0.45332596,0.08117664,0.28183442,-0.14844713,0.13570844,0.037938762,0.07475125,0.034088325,0.51093554,-0.38199443,0.19786279,-0.08939607,-0.18409903,-0.10133674,-0.35674217,-0.43007407,-0.7697305,0.2869449,-0.6232589,0.49989498,0.09052244,-0.40948746,0.28862298,-0.012559128,0.3260685,-0.4290345,-0.1550901,0.16833948,0.013067499,-0.19217148,-0.33174202,-0.23090945,-0.13979167,-0.5448702,0.03431153,-0.52050143,-0.11474277,-0.15897094,0.11070768,-0.31495664,-0.020307425,-0.017535688,0.45668986,-0.34524456,0.12716693,0.3023847,-0.12252576,0.06515804,-0.6487952,0.015107163,-0.042767055,0.10445411,-0.09126687,-0.33939978,0.23666193,0.029105889,0.4395044,-0.10226436,-0.2213745,-0.24276228,-0.009153014,0.029072406,0.3374849,-0.35008967,-0.23278645,-0.07135718,0.21511024,0.18998788,0.1412939,0.013525034,-0.354053,-0.083169684,-0.09237435,0.088366196,0.26787478,0.5449074,-0.17912616,-0.34173062,0.22690304,0.72695804,0.2222189,-0.057153378,-0.0247034,0.08399193,-0.41532505,-0.2063442,-0.13534822,-0.10610564,0.3118169,-0.086852424,0.22403921,0.5891579,0.029212456,-0.2123461,0.0038327554,0.19201483,0.19492492,-0.43350798,-0.24577735,0.28595728,-0.46383277,0.15448877,-0.0016989231,0.57375133,0.06651761,-0.7327625,0.38686663,-0.5003886,0.15855104,-0.005205989,0.430751,0.92714757,0.38193414,0.20703378,0.6040738,-0.32562926,0.24594785,-0.18481292,-0.13955553,0.10732679,-0.10132345,0.12025955,-0.59033954,0.033474136,-0.17331609,-0.39014733,0.35158613,0.23833865,-0.5424963,-0.23690227,0.1913242,0.7063724,-0.2276927,-0.06586785,0.553786,0.9539655,0.78729707,-0.054502495,0.90898293,0.25671116,-0.014838946,0.3173351,-0.39216316,-0.770457,0.17852338,0.21864462,0.08720796,0.2819311,0.056348983,-0.018051052,0.42902225,-0.42213386,0.01341029,-0.14166951,0.3361045,0.08462833,-0.019277323,-0.44966698,-0.22266485,-0.059240714,0.12352817,-0.046742983,0.30809337,-0.2118712,0.2889603,-0.06541576,1.7343643,0.033648513,0.10360111,0.18804295,0.3086189,0.3963517,-0.25484577,-0.25522897,0.44530943,0.11500812,0.11061291,-0.4330023,0.1495758,-0.18887001,-0.304165,-0.14891529,-0.28006262,0.09174118,0.0047603846,-0.4627481,-0.22286303,-0.13000561,-0.2764262,0.5174356,-2.7613757,-0.13433895,0.043289464,0.40021452,-0.19839947,-0.3665157,-0.21308972,-0.3790944,0.31919482,0.15194508,0.45965427,-0.48397547,0.32196113,0.28646678,-0.67500025,-0.03843862,-0.47957578,-0.14392552,0.12050735,0.29861924,-0.03455289,-0.12226272,-0.13268822,0.18979038,0.31939638,-0.15125482,0.08527488,0.4838197,0.29604182,-0.034295257,0.15570845,-0.11928617,0.4404431,-0.3834409,-0.2999851,0.37763005,-0.3106095,0.29676917,-0.06596773,0.08001206,0.46133634,-0.36346725,-0.9426861,-0.5029944,0.16802908,1.0664839,-0.18455474,-0.41533342,0.29222503,-0.59776515,-0.27307388,-0.035794415,0.36568722,-0.0064921738,-0.16454814,-0.83585167,0.09181433,0.023353163,0.38336807,0.14099006,-0.11601322,-0.3752306,0.51778394,-0.06741055,0.3750178,0.32153803,0.20221825,-0.28988954,-0.32656878,0.06394223,0.72478133,0.40683848,0.1192498,-0.16845912,-0.25228,-0.28134027,-0.02442816,0.13915142,0.45887792,0.58154994,-0.10262265,0.15652958,0.28211316,-0.083547845,0.023711676,-0.21062762,-0.19310741,-0.016887184,0.21180178,0.49513426,0.7187721,-0.34184462,0.388716,0.047681674,0.20005375,-0.04578597,-0.6093611,0.3850073,1.0282813,-0.021898678,-0.28506863,0.6141826,0.21021661,-0.3197912,0.40851003,-0.44134542,-0.25156307,0.40500185,-0.16752394,-0.3751737,0.14147547,-0.21482168,0.16177021,-0.7170395,0.29513258,-0.15717758,-0.542775,-0.62511504,-0.108385324,-2.3310475,0.17890634,-0.19226268,-0.031430293,-0.07487663,-0.039363578,0.036404658,-0.6154147,-0.56045556,0.16364631,0.1801366,0.6873206,-0.13943352,0.071840115,-0.09185394,-0.38985437,-0.18717526,0.16047117,0.21837786,0.38584998,-0.04179628,-0.4792455,-0.26024652,-0.0077425283,-0.30595475,0.044015847,-0.6718754,-0.26601583,-0.17405178,-0.7337442,0.055885695,0.5700726,-0.1352825,-0.06756589,-0.2862086,0.0596783,0.0605548,0.16931339,0.23351519,0.2389027,0.2365024,-0.05199574,-0.0629208,-0.26854694,0.15175332,-0.036772713,0.25760084,0.32546112,0.0033570607,0.25704995,0.52810127,0.70700866,-0.3021717,0.6936047,0.618517,-0.069116354,0.3225636,-0.21404769,-0.27259102,-0.3123212,-0.25334257,-0.101382,-0.3812788,-0.22804989,-0.022612253,-0.40215114,-0.77884716,0.44121447,-0.108417444,0.010781018,0.07782133,0.14633113,0.55415,-0.32073134,-0.040023785,-0.16127115,-0.08546756,-0.47082293,-0.255841,-0.4163609,-0.46429595,0.28403023,1.1968576,-0.31525293,0.16986969,0.074276224,-0.21178801,-0.08164825,0.09749189,-0.03366215,0.29632422,0.48301938,0.04374529,-0.47119674,0.28959855,0.0028747718,-0.22019455,-0.6347248,0.23113492,0.51365334,-0.4827757,0.63967854,0.17113905,0.035748623,-0.04931965,-0.7560411,-0.20001793,0.10465148,-0.30151716,0.37049302,0.31510755,-0.77375257,0.35140908,0.40583757,-0.446959,-0.7825789,0.30045378,-0.10997973,-0.45133114,-0.1804676,0.29967013,-0.014694242,0.034748387,-0.21609305,0.36812544,-0.20262697,0.17739828,0.16376933,-0.20878181,0.25002244,-0.40545312,-0.23730436,-0.67384315,0.04706062,-0.39022824,-0.36227942,0.33600846,0.17452072,-0.053438485,-0.0429802,0.02190332,0.5042005,-0.34709466,0.13186951,-0.28792915,-0.43368715,0.31641278,0.3681293,0.496821,-0.37563187,0.45572993,-0.09833268,-0.1147048,-0.028960986,0.024042448,0.51128966,-0.15563901,0.33429334,-0.062230434,-0.10966372,0.16026713,0.70501,-0.05241013,0.3226122,-0.032059293,-0.08929922,0.08616205,0.037446473,-0.082123406,-0.15126638,-0.43642855,0.21594359,-0.12095537,0.27811736,0.385049,0.12948203,0.19584343,-0.08939627,-0.3807239,-0.0041997987,0.21974629,0.094834134,-1.2206252,0.3185463,0.1524811,0.78148043,0.4674832,0.23330647,-0.09889078,0.6745668,-0.019327195,0.13996795,0.22608009,-0.15837017,-0.4721294,0.5397867,-0.752425,0.554636,0.08672541,-0.057344563,0.20298934,0.095581226,0.45713273,0.5913858,-0.16888756,-0.104771785,0.07545719,-0.1763557,-0.04232893,-0.31654963,0.112333484,-0.5410715,-0.46742734,0.5807108,0.46051693,0.29874876,-0.3575401,-0.036635138,0.18750477,-0.13844071,0.19157551,-0.025072671,0.17855808,0.1330848,-0.5173091,-0.14329652,0.46878394,0.0789954,0.08571377,-0.10805825,0.009250458,0.23424596,-0.2052824,-0.01661256,-0.0855357,-0.5831078,0.070105806,-0.37781546,-0.3623718,0.69681627,-0.09770151,0.118723504,0.13901539,0.067796454,-0.35893136,0.6300167,-0.16197486,0.8463513,0.11525492,-0.04648091,-0.19696967,0.36865452,0.00961562,-0.12436746,0.11257656,-0.37151432,0.03604994,-0.6095677,0.5065494,-0.01876772,-0.42566153,0.1003985,-0.15145646,0.17008893,0.5058453,-0.05774231,-0.17250869,-0.30999756,-0.22775477,-0.4113706,-0.48216906,-0.07473314,0.21868242,0.16021475,-0.037062906,-0.1410472,-0.1725494,-0.04204632,0.5268556,0.0059990166,0.23895302,0.33699927,0.25939587,-0.254424,0.13867177,0.26910475,0.46907392,-0.023215326,-0.099207446,-0.20628701,-0.24300112,-0.49587372,0.16803265,-0.18039784,0.38720408,0.07317186,-0.12682821,0.6428217,0.08023332,1.1044323,-0.07253752,-0.17181972,0.25631434,0.36414236,0.048953712,-0.09096472,-0.21231535,0.645353,0.6662939,0.12233008,-0.04547813,-0.22868414,-0.09549061,0.16218792,-0.2848414,-0.074622676,-0.0053297984,-0.63537353,-0.27034104,0.24174531,0.2689431,0.2096817,-0.2154511,0.08517989,0.08617205,0.016866283,0.049416613,-0.38219124,0.015145751,0.26745874,0.29750377,0.09566087,0.13457307,-0.53010374,0.34917924,-0.47332343,0.10671651,-0.32298306,0.20989323,-0.1219024,-0.28150946,0.11029264,0.04863085,0.31164965,-0.38959947,-0.24253592,-0.28147164,0.47222036,0.3267432,-0.014203036,0.5353522,-0.27852443,0.06831012,0.012706797,0.35715064,0.7148693,-0.3073115,-0.19529176,0.2787083,-0.16714348,-0.6237618,0.3467333,-0.3353101,0.109748475,-0.092477165,-0.15727496,-0.5699256,0.10844255,0.11323867,-0.037762824,-0.16293094,-0.5588506,-0.015426401,0.03604005,-0.21567263,-0.01828601,-0.29998836,0.07342458,0.5737865,-0.11859384,-0.36773527,0.18430719,0.17616227,-0.121059135,-0.48084918,-0.044456173,-0.37872323,0.11842289,0.019968595,-0.4247591,-0.10566531,0.11604146,-0.40239194,-0.098468654,0.16977008,-0.261455,0.031774655,-0.28213492,0.05528536,0.9710909,-0.19515565,0.3115118,-0.3790244,-0.5105522,-0.8824994,-0.11772953,0.45233482,0.008860902,0.12042214,-0.8451001,-0.013149317,-0.20944138,-0.10632014,-0.025216661,-0.29609373,0.37122986,0.10640207,0.22084396,-0.3152853,-0.70551693,0.22983447,0.063714996,-0.21360445,-0.45779502,0.44635424,0.0009944042,0.9286452,-0.048393957,-0.0068104537,0.26962045,-0.48575154,0.0915556,-0.20636736,-0.16282424,-0.5044738,-0.08977772,324 -189,0.4723291,-0.2547022,-0.47536516,0.08065033,-0.28366867,0.060169544,-0.047948044,0.47721753,0.18480532,-0.56847125,-0.17736055,-0.20936012,-0.124511845,0.30531654,-0.08101569,-0.24994698,-0.0017548918,0.24749486,-0.42611688,0.6941175,-0.09531517,0.30543548,0.0025567054,0.29338866,0.23641892,0.37867916,-0.034761466,0.06319739,-0.1574215,-0.20094903,-0.1094171,0.18460563,-0.4541607,0.14993048,-0.18737489,-0.36180618,-0.112838596,-0.57257307,-0.5490733,-0.76919264,0.29778644,-0.9367761,0.38983127,0.025385005,-0.26454777,0.17300323,0.10985992,0.45668787,-0.09975708,-0.17342506,0.31732577,-0.14310595,-0.09044706,-0.3316051,-0.115977205,-0.37287915,-0.5800566,-0.06244169,-0.22185558,-0.41348585,-0.35875824,0.11669641,-0.37326902,0.024248285,-0.08029755,0.6673232,-0.41555417,0.06602389,0.28537455,-0.25259286,0.27902928,-0.70627606,-0.16360418,-0.151895,0.14405264,-0.048447687,-0.13748175,0.3589641,0.24748497,0.3436344,0.011446039,-0.15256971,-0.38388878,-0.10809504,0.24348503,0.4997485,-0.19721648,-0.39758456,0.044930972,0.24386498,0.031865645,0.07801144,0.25262734,-0.38695815,-0.11510923,0.20673521,-0.07367916,0.3305151,0.4285139,-0.15409604,-0.111573555,0.38352472,0.60536736,-0.004040897,-0.25002417,-0.05580793,-0.02839518,-0.35004845,-0.17358647,-0.11276891,-0.13248862,0.55797595,-0.030172165,0.22467543,0.6078592,-0.14002466,-0.12752149,0.04458981,0.089126445,-0.09172937,-0.2164128,-0.20992078,0.29290664,-0.29173842,0.21832515,-0.080212004,0.62818515,0.11289085,-0.7288749,0.34459266,-0.5754536,0.14103056,-0.008557232,0.2893296,0.55001014,0.48427543,0.4246254,0.698987,-0.43553144,0.15687281,-0.024313482,-0.3641063,-0.053702462,-0.27028802,-0.04690563,-0.44746578,0.040981594,0.004413291,-0.2950453,0.031073371,0.29405078,-0.5331144,-0.12714453,0.2394248,0.92105764,-0.24204789,-0.13151196,0.688864,0.9500899,0.98520976,0.042296685,0.91795605,0.14634007,-0.28923222,0.29820248,-0.24292472,-0.5461482,0.21929325,0.37860903,0.1898462,0.18918103,0.14677301,0.034550138,0.37345684,-0.3579529,0.08576138,-0.14661719,0.07126935,0.2297524,-0.37275764,-0.46686858,-0.1647282,-0.21966502,0.10183807,-0.11769251,0.25149095,-0.14624144,0.29891044,-0.06626165,2.00765,-0.05593392,0.13726778,0.257898,0.43044916,0.12626001,-0.22505979,-0.017239511,0.4112068,0.17519997,0.2635349,-0.4499188,0.064902455,-0.3159707,-0.50337803,-0.06314275,-0.28872144,-0.09144299,0.12529267,-0.47374108,-0.27272272,-0.22351967,-0.28860754,0.42070305,-2.6488168,-0.1575322,-0.17637922,0.43785042,-0.30641568,-0.4157794,0.016727941,-0.47168127,0.3468963,0.3934019,0.48457706,-0.6094207,0.2722675,0.334177,-0.60238534,-0.11183326,-0.4535068,0.01247524,-0.014491503,0.37257868,0.025032649,-0.089880094,0.21329263,0.12339899,0.4280724,0.03030668,0.13610642,0.56668437,0.3009082,-0.09470068,0.5618919,-0.045358546,0.4075088,-0.15901737,-0.15872374,0.34916306,-0.26115316,0.1805975,0.12009041,0.008678023,0.48872757,-0.46424752,-0.8138573,-0.75339264,-0.12619792,1.1632113,-0.16569906,-0.48503545,0.28792608,-0.42610738,-0.2648534,-0.21493016,0.45824078,0.053152062,0.072783664,-0.7621746,0.016644584,-0.11892208,0.12595224,0.05971255,-0.31495592,-0.48237407,0.82097596,-0.08317668,0.67869633,0.47342423,0.1723332,-0.17246047,-0.20730034,-0.017336603,0.9649051,0.50724,0.12820937,-0.15624015,-0.18893029,-0.3508984,-0.18490547,0.2332879,0.50724214,0.5329515,-0.08169326,0.13082156,0.31427008,0.029152978,0.038135115,-0.25142112,-0.22560187,-0.04042423,-0.03714227,0.39955267,0.6576601,-0.22476953,0.4805308,-0.04132544,0.35562545,0.031992026,-0.46009535,0.25085086,1.0762687,-0.14071731,-0.35163194,0.5150299,0.47965086,-0.2815054,0.34416446,-0.3713183,-0.13971536,0.48575374,-0.30001396,-0.5902592,0.3272319,-0.30439875,0.24626127,-0.71149373,0.34976253,-0.17139533,-0.77263796,-0.45553175,-0.16309436,-2.6473231,0.347349,-0.22272977,-0.28465226,-0.0061336635,-0.10901297,0.04831947,-0.6868431,-0.4599929,0.20003453,0.09324678,0.7301458,-0.06787912,0.16239497,-0.20240273,-0.28958318,-0.2571211,0.15255055,0.021514535,0.38522798,-0.0184846,-0.41227433,-0.17830276,0.013186238,-0.54587454,0.053100966,-0.602906,-0.36366397,-0.24317604,-0.56564516,-0.27617925,0.6190078,-0.22671334,0.11596611,-0.21628635,-0.06289543,-0.13569112,0.15850472,0.19129324,0.21243855,0.054904137,-0.053314067,0.069926135,-0.21808037,0.26302767,0.09671827,0.3810641,0.27231917,-0.19390622,0.2683634,0.46770763,0.7624412,-0.21144573,0.8237482,0.62028956,-0.15255126,0.32130024,-0.16878286,-0.31862208,-0.64545447,-0.42893,0.055599865,-0.32170093,-0.4872257,0.02314278,-0.36067238,-0.75487536,0.46949074,0.01235948,0.19022922,0.12017471,0.14756186,0.6217087,-0.37871793,-0.20951435,-0.102090515,-0.15252063,-0.64545697,-0.15503362,-0.53236747,-0.5713539,0.19662322,1.0364145,-0.28126532,-0.05711643,0.09413871,-0.22848246,0.081028484,0.23890418,-0.013044282,0.19216587,0.4487478,-0.19456737,-0.6645317,0.50355285,-0.1562646,-0.14468005,-0.58992016,0.44681653,0.5529603,-0.57761234,0.643856,0.10740736,0.090144224,-0.14902979,-0.5130397,-0.20542067,-0.15782118,-0.22034965,0.28658256,0.22266307,-0.84260076,0.10267196,0.4096647,-0.34945768,-0.69960076,0.47375372,-0.13232033,-0.25084302,0.007856925,0.22345072,0.1300305,-0.10480613,-0.18318875,0.14105417,-0.4493943,0.19614683,0.3714429,-0.108215824,0.07079767,-0.18906577,-0.15661792,-0.8374518,0.2674181,-0.5091919,-0.28240508,0.21994047,0.21204878,-0.028301688,0.050213184,0.07721977,0.3428585,-0.09112056,0.12353791,-0.16903457,-0.3639946,0.60154337,0.36508074,0.4232797,-0.51963156,0.53244966,-0.090890564,-0.20805451,-0.11003992,0.021455895,0.46184912,0.12165095,0.2715193,0.07717597,-0.20627454,0.079578094,0.7133779,0.1770051,0.62251943,0.18287176,-0.10085179,0.16483277,0.13113968,0.14531787,-0.12171183,-0.8062576,0.29546958,-0.23539262,0.02594301,0.4332219,0.18893504,0.18624893,-0.17085336,-0.3760701,-0.05957048,0.19011049,0.038276833,-1.2177265,0.3223618,0.076693535,0.8240401,0.39937526,0.028104996,-0.056720335,0.7220665,-0.06734367,0.16034046,0.28860274,-0.19587716,-0.6276171,0.53033596,-0.7782936,0.3335186,0.11471501,-0.057996396,0.11085018,0.051558793,0.31617793,0.6489128,-0.25585762,-0.049281012,-0.19006465,-0.24629848,0.07235555,-0.44526994,0.13153954,-0.5406434,-0.47813115,0.5536276,0.53426576,0.43694106,-0.1080052,0.053820685,0.05777408,-0.14941858,0.37595078,0.06645964,0.2279798,-0.045630198,-0.6068767,-0.12673348,0.48327446,-0.3293485,0.11633546,-0.021729605,-0.18066049,0.3501123,-0.067229524,-0.13187109,0.037211124,-0.72283375,0.16340517,-0.34770653,-0.46071714,0.45651072,0.13641001,0.24737677,0.09200916,0.03996973,-0.21603385,0.48804948,0.029506203,0.91164756,-0.09847755,-0.15986212,-0.24871324,0.27148834,0.028856762,-0.08505816,0.21296176,-0.22817022,0.050114747,-0.64378524,0.42444924,0.13820383,-0.3156619,0.151938,-0.117042504,-0.032763716,0.49303952,-0.1795776,-0.1190823,-0.080238216,-0.1076585,-0.14992896,-0.34995022,-0.038070116,0.2877734,0.053725775,-0.030454079,0.0059713842,-0.05039813,0.0047370433,0.4351378,-0.06834209,0.42037186,0.31359345,0.065158464,-0.34364647,-0.13429756,0.25670737,0.37492257,0.13497041,-0.06619314,-0.2650066,-0.5610638,-0.49104166,-0.07631086,-0.036016107,0.60052884,0.25184587,-0.19332825,0.7139051,-0.089031704,1.2503164,-0.052073773,-0.3622173,0.05002427,0.47997296,0.039963443,-0.15856618,-0.24003477,0.7954448,0.63982546,0.06989578,0.034006793,-0.37441558,-0.12818907,0.1286343,-0.19457152,-0.12844217,0.098442644,-0.6012152,-0.35876614,0.05733943,0.2625961,0.25979263,-0.20162317,0.09416116,0.39330015,-0.1109089,0.1753843,-0.26708806,-0.40518162,0.1649198,0.11084537,-0.009425639,-0.050739054,-0.5984067,0.41437906,-0.50979805,0.11279203,-0.15418468,0.1761934,-0.14861499,-0.19189182,0.14827207,0.03025968,0.45099443,-0.37704355,-0.31867638,-0.18972392,0.57710665,0.07283139,-0.030508721,0.64737517,-0.31506544,-0.028999066,-0.08430251,0.4444814,0.9103895,-0.26639184,0.05906919,0.46316865,-0.3554159,-0.51522267,0.36821344,-0.0430351,0.23999344,0.08935911,-0.16346772,-0.48366994,0.24319798,0.1941247,-0.22936437,-0.020259237,-0.5453734,-0.25707486,0.21278551,-0.5297031,-0.060692072,-0.3120054,0.2396579,0.55946136,-0.2995281,-0.56190515,0.052339476,0.0036607902,-0.031778064,-0.39706796,-0.06114849,-0.25108367,0.24962345,-0.013281242,-0.4500974,-0.22269353,0.051959336,-0.33806762,-0.029304655,-0.047011264,-0.37293187,0.025635328,-0.41309607,-0.21866633,1.0705001,-0.08882246,0.15264206,-0.4328967,-0.43453887,-0.7392463,-0.5024846,0.32497385,-0.09649567,0.023800876,-0.65500057,-0.042258725,-0.14232926,-0.061175458,-0.29068738,-0.17181474,0.35976642,0.13742885,0.3493262,-0.26888976,-0.7799364,0.26559407,0.11450817,-0.0038086057,-0.5804827,0.4214175,0.04899978,0.7470295,0.09154533,0.17035526,0.40974694,-0.56711066,-0.005136426,-0.16684608,-0.19427976,-0.5265363,-0.05009888,325 -190,0.49948055,-0.0238417,-0.49510527,-0.18442877,-0.31917864,0.1850405,-0.11134346,0.15927099,0.28020236,-0.15777375,-0.11095209,-0.0391907,0.07872755,0.44460022,-0.12500328,-0.9007195,-0.029822933,0.17536281,-0.7139922,0.464587,-0.5683752,0.36366922,0.24774402,0.49759254,0.07231165,0.35674983,0.24830088,-0.17015941,-0.061126452,0.17870186,-0.09765283,0.36131305,-0.74848396,0.029133331,0.023680124,-0.18835928,-0.02040246,-0.42126352,-0.23254254,-0.71098906,0.43083853,-0.7484582,0.5342744,0.058249593,-0.351613,0.07888095,0.037444744,0.16790184,-0.45387542,0.14696214,0.10622434,-0.29376698,-0.0647867,-0.09306329,-0.18804213,-0.52902853,-0.6287097,0.09736527,-0.6107714,-0.17115021,-0.37255606,0.1991292,-0.41438586,-0.014714555,-0.22945628,0.3845149,-0.43683174,-0.057779912,0.30062833,-0.24244003,0.052639093,-0.28775138,-0.1663778,-0.16380431,0.37639996,0.034767523,-0.29018593,0.2956792,0.38209572,0.64990765,0.2260503,-0.39173144,-0.25945312,-0.06585528,0.14019057,0.44351634,-0.113217086,-0.3384349,-0.29011658,-0.05455079,0.05709728,0.3118976,0.0118915085,-0.478007,0.054063305,0.19872884,-0.1200514,0.2451035,0.46700063,-0.45125076,-0.28175002,0.23250842,0.3502038,0.15059145,-0.015063594,0.21058041,-0.048277665,-0.6614115,-0.29878917,0.23863997,-0.1490669,0.712226,-0.15597068,0.19762047,0.84309655,-0.16371064,-0.03492662,-0.30067283,-0.18008766,-0.06922017,-0.29928502,0.0008493344,0.20869182,-0.49399635,0.09591801,-0.18678853,0.7099453,0.10823557,-0.7664251,0.27772963,-0.533394,0.35774204,-0.16536684,0.8379677,0.90221137,0.16106935,0.34648317,0.90029526,-0.6390377,0.012664795,-0.023935974,-0.50553185,0.10233824,-0.084755614,0.11507029,-0.42968094,0.08346113,0.11081131,-0.03406407,0.06518437,0.4035723,-0.46378598,0.022487683,0.027264543,0.666164,-0.40578508,0.021805359,0.92356753,0.9933132,0.9543418,0.15169482,1.4923335,0.4872247,-0.1758332,0.13936989,-0.25968233,-0.69414276,0.123121835,0.31230354,0.13673757,0.44415396,0.10970008,-0.0043967743,0.4776169,-0.34847754,0.016992813,-0.19142802,0.2065021,-0.04940219,-0.05567307,-0.43607506,-0.27762908,0.15663837,0.13931808,-0.02737159,0.33467987,-0.07538594,0.49990892,0.0680792,1.260116,0.11876961,0.034227468,-0.0838302,0.31342372,0.26655182,-0.03638698,-0.102884196,0.41633293,0.52233356,-0.0349287,-0.6532041,-0.019162042,-0.31689024,-0.4122698,-0.19434991,-0.43958086,0.08563808,-0.022566387,-0.4489584,-0.106506035,0.08814346,-0.25953805,0.5495641,-2.400758,-0.19986853,-0.10455809,0.22733113,-0.08077462,-0.25614586,-0.21220651,-0.5011194,0.26153833,0.43168932,0.36390507,-0.784508,0.2631586,0.3362954,-0.36319834,-0.11365615,-0.83447784,0.014071214,-0.06415357,0.3684545,-0.08340551,-0.21879046,-0.17850457,0.25525707,0.69354314,0.13218357,-0.036505654,0.15282473,0.5644503,-0.014262215,0.5309786,0.14077899,0.6044177,-0.10089723,-0.32139978,0.29802898,-0.15800816,0.33412346,-0.0051639318,0.048732653,0.32964212,-0.5302217,-0.9058869,-0.6089084,-0.373056,1.1766135,-0.51110035,-0.27434132,0.39483124,-0.044902787,-0.14825515,0.039660707,0.46783572,-0.19813886,0.033228587,-0.7203466,0.14320324,0.00012606382,-0.0514599,-0.1207849,0.1800198,-0.31114212,0.71856415,-0.26722792,0.22563228,0.40953732,0.20055602,0.011688495,-0.53784955,0.20702444,0.84226197,0.32266867,0.15215017,-0.16329359,-0.23782167,-0.025994655,-0.19522706,0.17481318,0.5451069,0.8739694,-0.04711087,0.11246427,0.33367553,-0.030240918,0.09277722,-0.055925608,-0.3394694,-0.06263842,0.0034157832,0.56259525,0.6432299,-0.21689312,0.36291492,-0.16550432,0.20909771,0.006385541,-0.4335219,0.57981426,1.1137475,-0.26058537,-0.13556172,0.65681106,0.4044057,-0.4610621,0.52575874,-0.56466764,-0.18436667,0.6404925,-0.10120936,-0.40988588,0.15780805,-0.32868734,0.106412396,-1.039757,0.3105683,0.11886751,-0.39337966,-0.35336825,-0.20460172,-4.4022994,0.2537042,-0.3649247,0.02852158,-0.17322172,-0.28348783,0.38807243,-0.58360696,-0.5846529,0.035820387,0.023674557,0.36610183,-0.1556784,0.14197312,-0.2804493,-0.18128125,-0.22804458,0.12225429,0.1870821,0.3519874,0.046532042,-0.4015194,0.067915276,-0.33061358,-0.43053395,0.03371417,-0.58685195,-0.5537695,-0.14879933,-0.4568923,-0.4029309,0.72789997,-0.28358543,-0.022600535,-0.4252864,0.013513636,-0.23006605,0.4200299,0.20021947,0.21211487,0.038516022,0.07809402,-0.17161311,-0.2520761,0.307121,-0.0741923,0.22185637,0.34121493,-0.15246789,0.20594081,0.42848566,0.6596243,-0.13649859,0.6673702,0.4304891,0.03456463,0.25143453,-0.426883,-0.2975184,-0.879798,-0.5314066,-0.39686537,-0.59545213,-0.6166818,-0.2514641,-0.4887715,-0.7702816,0.49894992,-0.0314278,0.21828127,-0.1765068,0.31788686,0.44888574,-0.18865451,0.043429073,-0.14030154,-0.3064002,-0.5940932,-0.3206621,-0.6925347,-0.6425,0.10985065,0.93094367,-0.17142604,-0.13529973,0.055545554,-0.21775962,0.0417499,0.094280444,0.22689384,0.2504137,0.45372915,-0.10278829,-0.71811366,0.57834667,-0.1923768,-0.09636014,-0.64512926,-0.0095822355,0.4979556,-0.7591904,0.7451633,0.28015646,0.30540943,0.32486856,-0.54157615,-0.56489843,0.10190721,-0.14557621,0.8056257,0.25508583,-0.6607451,0.5421261,0.25630754,-0.14443801,-0.66912925,0.43610764,-0.112409614,-0.27848503,0.23099136,0.46814394,0.04108292,-0.15517883,0.05259789,0.18085892,-0.49956653,0.2857262,0.4022393,0.024001244,0.3673208,-0.032979656,-0.28542846,-0.6755244,-0.054128442,-0.6363786,-0.23602703,-0.04031964,0.11763477,0.051667873,-0.08440514,-0.04251929,0.5444491,-0.38186672,0.17194055,-0.03352971,-0.28909287,0.19043182,0.57212335,0.29548985,-0.573667,0.5907428,0.03253649,-0.014921355,-0.107337624,0.0964335,0.42496452,0.19771881,0.30029255,-0.19439252,-0.061204202,0.17589182,0.5674646,0.094043575,0.36458912,0.15683158,-0.1768278,0.49771458,0.30079016,0.14583562,-0.063355334,-0.17178209,-0.023402708,0.10338337,0.1745366,0.5206099,0.25884372,0.20967847,-0.055232428,-0.060663916,0.23172718,0.17802098,-0.033605687,-1.0864605,0.29960454,0.2660243,0.4849339,0.6235098,-0.04516737,-0.044273805,0.3623868,-0.52544475,-0.021458486,0.44924963,0.03574002,-0.45413944,0.5299875,-0.5109438,0.43845272,-0.34470648,-0.031099562,0.13200285,0.33388013,0.30152136,0.87982917,-0.09697426,0.08119342,-0.09041022,-0.14911304,0.13161747,-0.33272496,0.042539306,-0.56709707,-0.33886585,0.57205695,0.35905057,0.30256706,-0.39109403,-0.14114743,0.12034723,-0.23700182,0.10947596,-0.14199035,0.063496456,-0.002356708,-0.69959706,-0.37785783,0.55322814,-0.120035924,0.026757594,-0.044138215,-0.4388811,0.2138605,-0.23559052,-0.20836864,-0.05834871,-0.72840106,-0.011680929,-0.3471817,-0.54170734,0.31618658,-0.40456468,0.27922973,0.25283882,0.082328714,-0.5189261,0.13724722,-0.08601221,0.9779654,0.0022576333,-0.1770582,-0.40222663,0.14699961,0.44679448,-0.27731675,-0.10544474,-0.3407692,0.02831205,-0.37532672,0.5068644,-0.18669844,-0.3169625,-0.07765029,-0.13920084,-0.1317784,0.48493508,-0.3831358,-0.1413864,0.06494078,-0.04707526,-0.12654632,-0.098068856,-0.41419023,0.3684516,-0.055257082,-0.08064639,0.02016554,-0.09144419,-0.110547535,0.4915934,0.11116589,0.22143812,0.25368986,-0.09070549,-0.3666384,-0.022143865,0.15642187,0.27876908,0.10873009,-0.07511111,-0.33854622,-0.38233665,-0.2244194,0.08513213,-0.20689222,0.23135278,0.14174551,-0.43038997,0.870089,0.35786757,1.2708677,0.20988645,-0.2981922,0.11990602,0.6169694,0.05483679,0.1471961,-0.29568174,0.98789763,0.6330881,-0.239393,-0.28308553,-0.43597373,-0.14734316,0.14233813,-0.347185,-0.11591119,-0.17388275,-0.6424859,-0.26403847,0.06200839,0.18582249,0.14565569,0.18722536,-0.10867388,0.08852612,0.05366207,0.5646869,-0.44459376,-0.20520471,0.31579885,0.1285554,0.10943912,0.28137258,-0.26742622,0.5213567,-0.54156476,0.07666031,-0.4383404,0.20235397,0.02302045,-0.32738787,0.17899236,-0.058621358,0.34426916,-0.33896485,-0.32034808,-0.24635926,0.6839836,0.17974804,0.25117669,0.8369539,-0.36201584,-0.04969826,0.11495766,0.5626796,1.4898168,-0.09099009,0.04405079,0.2160589,-0.2185669,-0.5322311,0.12504107,-0.42056084,-0.024899105,-0.2655228,-0.4026511,-0.5816069,0.27716866,-0.014846222,-0.09433182,0.14169723,-0.4670745,-0.26129943,0.43681648,-0.13213229,-0.22500545,-0.35575935,0.4938193,0.807699,-0.504997,-0.42010134,0.06783938,0.1768651,-0.19652194,-0.6558982,0.030211182,-0.28231862,0.39739957,0.18111563,-0.4395526,0.02239856,0.33064523,-0.35171717,0.15901938,0.51674896,-0.24588583,0.20479326,-0.22986431,-0.27515164,1.2042824,0.028249653,0.18572523,-0.7001457,-0.5413606,-1.1166465,-0.35630414,0.3698455,0.16265042,0.07955503,-0.5224015,-0.10615444,0.037380684,0.035267457,0.10512307,-0.47890696,0.44744027,0.054122407,0.45884064,-0.013144132,-0.7326835,-0.1496606,0.14609972,-0.15853293,-0.57196057,0.5951753,-0.111474425,0.58230966,0.15670384,0.079771645,0.09730562,-0.65971595,0.11279208,-0.355213,-0.18207069,-0.72834224,0.052255176,330 -191,0.3975237,-0.07150329,-0.37568504,-0.17809719,-0.08516022,0.18670535,0.051087786,0.20031443,0.1602347,-0.45328128,-0.14289382,-0.21793784,-0.037558928,0.23534212,-0.14112745,-0.71354216,0.026568813,0.044633094,-0.41519582,0.44458625,-0.3540242,0.46782735,0.06462173,0.17934126,0.015812986,0.30725697,0.22985741,-0.49139982,-0.0867916,-0.08409158,-0.43269774,0.24890684,-0.42088667,0.14007989,0.001689138,-0.14502475,0.17884614,-0.38792905,-0.5108391,-0.59667957,0.30653828,-0.6253421,0.31575212,0.12065748,0.006586945,0.11939819,0.098318234,0.2823253,-0.32164112,0.1523381,0.19872113,-0.10353247,-0.15182178,-0.16128829,-0.21652195,-0.344328,-0.4430938,-0.04866946,-0.31780046,-0.26655287,-0.2768013,0.12442238,-0.31546253,-0.17524938,-0.12115169,0.397554,-0.34848264,-0.047455527,0.31936958,-0.2514603,0.11615434,-0.42184526,-0.02101477,-0.10097873,0.31147778,-0.19795217,-0.12603761,0.26571727,0.24838065,0.4529963,0.03171306,-0.173752,-0.16398522,-0.304407,0.20489079,0.5969963,-0.06266329,-0.5789079,-0.010473662,0.121365465,-0.10984366,0.13604896,-0.108568475,-0.3364816,-0.15190485,0.060025472,-0.38158095,0.40159303,0.45884272,-0.29066047,-0.36023575,0.33574417,0.39253846,0.07251481,-0.044481795,-0.009118382,-0.012731711,-0.5398729,-0.17935453,0.3437721,-0.23159285,0.40782607,-0.15345572,0.2753436,0.7689363,-0.3058462,0.14415625,-0.0012309928,-0.042844772,-0.07293643,-0.12394075,-0.14703225,0.014772203,-0.41752538,0.209519,-0.06689657,0.998794,0.27970687,-0.6629678,0.34377778,-0.54973084,0.23854719,-0.1765074,0.5454281,0.42230785,0.27212146,0.21901588,0.6916106,-0.43693224,0.2224384,-0.059716955,-0.5578845,-0.13032986,0.026020868,-0.07770292,-0.374108,0.04962994,0.018472092,-0.046005096,-0.01468896,0.08569247,-0.53820693,-0.0074515264,-0.023530383,1.0374392,-0.32095584,-0.069071226,0.36184436,0.71391416,0.82548785,-0.0011953284,1.181196,0.28668445,-0.42269713,0.17707856,-0.5365856,-0.71328276,0.2718832,0.36155623,-0.15673567,0.15534566,0.05584713,-0.012856289,0.10051725,-0.40495187,0.1081155,-0.26754177,0.17307694,0.16506037,-0.038028765,-0.3283302,-0.2791872,-0.24216934,-0.1240214,0.206535,0.11766553,-0.2296668,0.23739551,0.10012891,1.675573,0.044113025,0.12332026,0.019814488,0.4560518,0.20502551,0.13200365,-0.12315815,0.3600029,0.43600863,-0.008005978,-0.53648674,0.12334321,-0.17931496,-0.45656356,-0.13598938,-0.3775288,0.017013526,0.09279288,-0.32188943,-0.052154724,-0.020876152,-0.2973751,0.55241126,-2.6325538,-0.03298125,-0.037020598,0.3186801,-0.27484924,-0.171335,-0.09547026,-0.47462866,0.23697582,0.32033947,0.46751276,-0.6826034,0.3226555,0.47157648,-0.37714037,-0.18995911,-0.5777642,-0.080811776,0.008450834,0.2915432,0.109573886,0.11114666,-0.11106954,0.05834182,0.3114722,-0.0715834,-0.091209635,0.1401679,0.41239733,0.36692566,0.48186558,0.12735294,0.54955167,-0.12175811,0.012547811,0.28683832,-0.30986813,0.33211645,-0.028948935,0.0055847485,0.24679992,-0.24552004,-0.7234194,-0.581801,-0.41732642,1.1776069,-0.30613512,-0.07914909,0.28485096,-0.08577294,-0.056112964,-0.15215294,0.36113983,-0.1469159,-0.25427708,-0.66530186,0.042702984,-0.04518908,0.31850746,0.037900444,0.0094304085,-0.29162318,0.60617983,0.009349815,0.48429304,0.19799541,0.14212793,-0.06593062,-0.4508133,0.04379253,0.883637,0.22115466,0.1974313,-0.12338282,-0.26862943,-0.3539821,-0.084052995,-0.013880565,0.5369209,0.78444785,0.018356405,-0.025568822,0.34196264,0.029801916,0.03357291,-0.17013659,-0.2999111,0.05516522,-0.13714235,0.5925187,0.2123818,-0.2088829,0.4063973,-0.048267324,0.351662,-0.17007415,-0.2683362,0.488107,1.0759902,-0.13462241,-0.14695859,0.36396107,0.51757604,-0.2836405,0.22050005,-0.6481441,-0.19269614,0.6327212,-0.22621472,-0.39225397,0.26566425,-0.2986227,0.18570973,-0.94653475,0.34290722,-0.122075066,-0.3348341,-0.44506106,0.012144616,-3.6819835,0.08839456,-0.22138461,-0.20880452,-0.002501905,0.19660306,0.059323795,-0.37822267,-0.40632802,0.13534297,0.06290306,0.5220281,0.026392397,0.27768275,-0.21144775,0.071772605,-0.3040108,0.23291093,-0.06277493,0.22332077,0.07305042,-0.36986414,0.06400825,-0.16562973,-0.3198239,0.27479073,-0.58733463,-0.46542695,-0.06617065,-0.5351183,-0.37080434,0.6928216,-0.4483175,0.011752057,-0.07613249,0.031693738,-0.21203865,0.29114106,0.24646486,0.071482845,-0.11904378,-0.00861674,-0.02023882,-0.29388937,0.4244088,0.08534301,0.4145659,0.27261314,0.16127832,0.051870964,0.4297633,0.46153912,0.1025851,0.6420562,0.363669,-0.1130003,0.26647747,-0.39692992,-0.21094173,-0.40250745,-0.4124436,0.030091293,-0.26377937,-0.4500021,-0.21599586,-0.32514736,-0.5887404,0.22428589,0.11226447,-0.02817371,0.025658352,0.16494998,0.4816853,-0.050605647,0.11728409,0.14182258,-0.08586432,-0.510521,-0.31656665,-0.513169,-0.26363727,0.25757644,0.93337035,-0.26227704,-0.18700117,-0.19504131,-0.23303379,-0.14570346,0.08531074,0.05980779,0.23867242,0.41495356,-0.2257769,-0.6997548,0.5673041,-0.21730119,-0.19195525,-0.56743824,-0.037663747,0.57754904,-0.78211904,0.40512192,0.36857426,0.11240221,0.19547011,-0.36199817,-0.39802292,-0.025835522,-0.17601785,0.113893285,-0.056319434,-0.42164436,0.367181,0.2821097,-0.21947546,-0.5960319,0.4770513,0.15542358,-0.4319893,0.1339811,0.24163246,0.035450887,-0.1114821,-0.19380389,0.1262134,-0.34632942,0.31411782,0.31175593,0.059396382,0.14493258,-0.24506398,-0.16014461,-0.68109876,0.08379965,-0.3633526,-0.23300692,0.24579613,0.230742,0.22502325,0.14159614,-0.029419461,0.33657983,-0.36455253,0.07162856,0.0046151797,-0.13163462,0.38838515,0.34555727,0.27791226,-0.38040054,0.53392094,-0.042781353,-0.02853196,0.010998908,0.16028409,0.41138807,0.11103609,0.2511174,0.039964788,-0.3678562,0.38990974,0.86274517,0.21306726,0.3313237,0.042774476,-0.122960836,0.4457725,0.07238314,0.019723928,0.2336883,-0.46466258,-0.21557833,-0.10874675,0.07065126,0.4874536,0.16815631,0.3199773,-0.03455817,-0.3110834,-0.031814363,0.26677552,0.10447655,-0.9341244,0.48411044,0.23674384,0.7600806,0.46869743,-0.11868728,0.14360644,0.53311574,-0.18253899,0.24027802,0.238111,-0.17049149,-0.68472517,0.43988875,-0.3653225,0.5461585,-0.056396443,0.00076292356,-0.02321763,-0.13214023,0.15452847,0.9475878,-0.2057382,-0.0076713553,0.019487357,-0.28259087,0.073850244,-0.45654404,0.028419351,-0.607928,-0.3392231,0.4665928,0.4290952,0.16951455,-0.010921833,0.036029406,0.06412108,-0.080479816,0.06234839,0.025004847,0.010472457,0.06465672,-0.6902135,-0.32182708,0.65806574,-0.13221832,0.012610569,0.0031197309,-0.087511525,0.32875144,-0.25577337,0.09095213,-0.18797868,-0.45684782,-0.033199914,-0.17702547,-0.39001957,0.29194048,-0.18181437,0.39573383,0.21759316,-0.04875592,-0.2773839,0.32426924,0.29472092,0.6320308,-0.18118666,-0.26158106,-0.59670395,0.056149125,0.13717183,-0.22187114,-0.14860535,-0.25819814,-0.009778794,-0.6039381,0.45549238,-0.06204732,-0.25154364,-0.028153025,-0.34514764,-0.13061567,0.50481254,-0.13361771,-0.06252658,-0.057099443,-0.0658498,-0.12000385,0.13971682,-0.2526024,0.20733318,0.20994309,-0.13297032,-0.106156535,-0.2306317,-0.19571649,0.24833424,0.050034363,0.34624067,0.30857268,0.14381236,-0.21626432,-0.20568012,0.08226196,0.41445115,0.13550635,0.007043918,-0.13325767,-0.23255037,-0.27571762,0.11659694,-0.22315863,0.22671907,0.1566094,-0.4721673,0.57474667,-0.076718934,1.0716474,0.08760688,-0.23611106,0.047427654,0.5275183,0.11874812,0.15121908,-0.3984333,0.93830216,0.48844433,0.045825697,-0.25039682,-0.2660496,0.09529778,0.09677962,-0.072721735,-0.17310412,0.11421348,-0.62831944,-0.367939,0.21994543,0.13643204,0.2790785,0.114222385,-0.19008414,0.065787464,0.0320928,0.4459314,-0.50148517,-0.18282346,0.21049976,0.13233203,0.22041076,0.11423716,-0.46321467,0.4945941,-0.43583393,-0.021165077,-0.2750939,0.18414968,-0.20047115,-0.14378026,0.2406968,0.03890345,0.42964602,-0.35379842,-0.40152943,-0.30248314,0.4431558,0.09147652,0.24237706,0.56848526,-0.20010081,0.009637054,0.0842899,0.6198083,1.0146875,-0.25327867,0.08759887,0.48497722,-0.4698731,-0.44453427,0.16440462,-0.23291269,-0.026082862,0.032066356,-0.21446246,-0.43643734,0.30872306,0.12942472,0.044661563,0.09863238,-0.53612036,-0.36292598,0.38699716,-0.3233553,-0.38994235,-0.4749742,0.33184892,0.7218378,-0.41806185,-0.12827642,0.15437719,0.077755995,-0.2704678,-0.57872033,-0.089424625,-0.27901152,0.40827364,0.17481579,-0.13009925,-0.13909617,0.04453582,-0.35950556,0.28253892,0.2638916,-0.45101956,0.060712203,-0.14730431,-0.17563751,0.8473063,-0.15242554,-0.104579575,-0.6619312,-0.2351457,-0.72675985,-0.44446403,0.7130831,0.11540447,-0.0880353,-0.41370928,-0.20715943,0.21622147,-0.13536559,-0.13466296,-0.46119526,0.4397359,0.06499594,0.3719184,-0.04648087,-0.83476216,0.021690782,-0.015681235,-0.40367392,-0.65445644,0.46063772,-0.14388633,0.8018017,0.043186136,-0.082368836,0.40404028,-0.3491331,-0.15317497,-0.3125758,-0.24046065,-0.7518081,0.28566635,334 -192,0.43767393,-0.18851957,-0.4614236,-0.11479755,-0.17811541,0.22396812,-0.136764,0.49045113,0.10598154,-0.34354478,-0.023857385,-0.20797464,0.077185705,0.31596893,-0.21087265,-0.49698687,-0.101775125,0.08584682,-0.6652114,0.7151217,-0.31009772,0.14730111,-0.042062078,0.34529305,0.11974076,0.20026328,0.064712755,-0.15000239,-0.13165034,-0.11294006,-0.08434602,0.29874244,-0.4340723,0.08906601,-0.15590353,-0.23281425,-0.015304166,-0.34654891,-0.33905077,-0.61561936,0.31203926,-0.74875146,0.47775328,-0.07691827,-0.30803272,0.42827517,0.07405898,0.2492374,-0.31087768,-0.05961521,0.02913766,0.08618286,0.015980184,-0.16527233,-0.15347125,-0.4667281,-0.50942916,0.026866976,-0.5595637,-0.17603892,-0.14782304,0.051156428,-0.28444082,-0.0019176344,-0.21228752,0.51163846,-0.48830637,0.100436226,0.25578827,-0.038952604,0.26261422,-0.5357437,-0.15979925,-0.116564356,0.24448167,-0.09289351,-0.09108417,0.18991505,0.2216048,0.44249195,-0.14481905,-0.084323026,-0.19113657,-0.18347944,0.2504221,0.41575,-0.098867096,-0.63967294,-0.09125898,-0.037445474,0.20692028,-0.0032466173,0.20273593,-0.14649585,-0.1086726,-0.082065105,-0.34728643,0.25424093,0.49181226,-0.37310725,-0.34587008,0.34047633,0.4219395,0.31369746,-0.19711263,-0.016707739,0.015916266,-0.41216856,-0.05284906,0.14699939,-0.23842134,0.577782,-0.14821632,0.18582651,0.5292842,-0.12007084,0.21218869,0.05176042,-0.0021712035,-0.17695716,-0.17565516,-0.26189452,-0.011951212,-0.35570046,0.10299258,-0.23011331,0.6840496,0.21893956,-0.5775907,0.34342533,-0.5316214,0.15071093,-0.015899578,0.40015686,0.7182178,0.34588483,0.04246491,0.48838702,-0.28902414,0.020217432,-0.16446663,-0.25179482,0.12844223,-0.16609669,-0.035696246,-0.49447268,-0.028577086,0.019802006,0.01959885,-0.08825298,0.23747487,-0.46091262,-0.1099569,0.085934035,0.78810734,-0.2651513,-0.020541092,0.70087606,0.98444706,0.9132181,0.07155803,1.101975,0.17095463,-0.17538397,0.2389364,-0.362663,-0.7561112,0.247201,0.33635345,0.1089453,0.32397926,0.01105392,-0.08112332,0.37292272,-0.3216487,0.13340402,-0.258794,0.23814802,0.15821487,-0.04407807,-0.258814,-0.31417337,-0.05917424,-0.09694603,0.14891773,0.2252362,-0.16932511,0.37112358,0.098354004,1.4971967,-0.104072444,0.05892353,0.12404805,0.444465,0.20269164,-0.08835268,-0.047942113,0.42137736,0.4895108,-0.026843674,-0.5933636,0.20540166,-0.25936648,-0.42821988,-0.07466326,-0.42686167,-0.10142939,-0.010525282,-0.52862746,-0.0820838,-0.059885275,-0.16663907,0.30652115,-2.9708142,-0.09433214,-0.2854406,0.27960998,-0.26334053,-0.2622164,-0.090617225,-0.5091805,0.31520233,0.32378152,0.4132808,-0.55660266,0.42495987,0.30644146,-0.37329456,-0.0667595,-0.6264649,-0.24018615,0.011399199,0.49371007,0.010503308,0.14600421,0.13083942,0.22809441,0.48013335,-0.012623,0.14520556,0.19384791,0.3833395,0.06882261,0.44800642,-0.016974585,0.50297886,-0.2620047,-0.09695121,0.25907758,-0.25149542,0.3840495,-0.038449354,0.16765776,0.37947956,-0.3219801,-0.7547292,-0.6445419,-0.20922917,1.2969418,-0.31050345,-0.37840596,0.19535516,-0.30682436,-0.2216823,-0.22462222,0.4550292,-0.08982829,-0.11167819,-0.7530247,0.039070394,-0.12008535,0.197287,-0.045885388,0.0212603,-0.36518496,0.574232,0.017847626,0.5217409,0.2504177,0.21092539,-0.06477269,-0.36674652,0.06391179,0.78226197,0.40891215,0.012827728,-0.16770044,-0.21953084,-0.39727643,0.10412083,0.033038627,0.5884663,0.5690346,0.07098036,0.24880429,0.17428027,-0.0953274,0.124058574,-0.14317152,-0.22518918,-0.10952354,-0.019964011,0.49341652,0.41650918,-0.20862731,0.4174127,-0.091743484,0.19096793,-0.19698375,-0.41422606,0.52649206,0.7297999,-0.28218663,-0.21480674,0.5548185,0.60942996,-0.24177149,0.32110876,-0.47318885,-0.1674437,0.48668867,-0.22595184,-0.29804856,0.40514573,-0.30762896,0.1618875,-0.92747974,0.28683713,-0.44477972,-0.41516685,-0.5096906,-0.04571787,-3.339766,0.15057656,-0.12502326,-0.287169,-0.21733147,-0.20324464,0.32662758,-0.5579146,-0.54911095,0.13774584,0.12890233,0.54561424,-0.08936463,0.0637551,-0.26154083,-0.26861763,-0.25427613,0.19586252,0.13405508,0.31278178,-0.24483185,-0.41369832,-0.048461094,-0.1774402,-0.33714828,0.27335224,-0.5122165,-0.47614193,-0.0007220864,-0.30374914,-0.14538069,0.57440263,-0.21557859,-0.007462136,-0.23485371,-0.008233384,-0.1638679,0.2967821,0.065121934,0.13357742,-0.029722046,-0.0940384,0.0066883406,-0.37588614,0.3095551,0.11176091,0.30118206,0.4116006,-0.042474423,0.18640015,0.47863188,0.48131707,0.031938866,0.6954267,0.3645749,-0.10855376,0.39709124,-0.29474327,-0.22953221,-0.413182,-0.2703633,-0.012661612,-0.3636423,-0.55523074,-0.19760253,-0.24728814,-0.6694165,0.3107804,-0.12263169,0.17021638,-0.095075004,0.28814277,0.55986476,-0.05255695,0.11997876,-0.045962468,-0.098322205,-0.47763452,-0.3322124,-0.6602648,-0.27320197,0.0768818,0.9138331,-0.12994167,-0.037267964,-0.1025134,-0.33723754,0.004224962,0.08836268,0.07356045,0.17033844,0.45078513,-0.12967499,-0.6749799,0.51415634,-0.12586758,-0.19932671,-0.44465536,0.06051325,0.47320554,-0.64453644,0.52952176,0.29351395,-0.05088065,-0.19522576,-0.4184559,-0.154373,0.048854243,-0.20925952,0.255575,0.1633247,-0.6810966,0.39700764,0.2285874,-0.08773146,-0.6228577,0.59498537,0.058794938,-0.22783445,0.039292786,0.3267496,0.07946911,0.015194968,-0.18483098,0.19192365,-0.4384925,0.3736744,0.21688794,-0.10172315,0.24578327,-0.17914847,-0.15040909,-0.64289004,-0.02459429,-0.4308388,-0.24739258,0.3327375,0.12981062,0.24810006,0.08110742,0.01816112,0.3320359,-0.27293473,0.11939357,0.08355964,-0.24009344,0.3940568,0.38401285,0.411711,-0.38994667,0.5693809,0.051236175,-0.03411209,0.16254495,0.14544001,0.38006964,0.1235008,0.4393015,0.03338454,-0.21238613,0.42013407,0.8042796,0.22993419,0.50652117,-0.0035183548,-0.18105721,0.33271375,-0.004460134,0.043657206,-0.028410705,-0.42923635,-0.18940312,-0.03539044,0.18370251,0.46610153,0.018586587,0.24472335,-0.07681508,-0.20611477,-0.003960214,0.14810508,-0.01882376,-1.1825124,0.34260792,0.16481295,0.8032974,0.48459345,-0.052451238,0.044830546,0.55028915,-0.16441225,0.17170402,0.4149601,0.0967809,-0.59702164,0.5071709,-0.58787465,0.511981,-0.06859347,-0.006176903,0.052865468,-0.07432213,0.29549798,0.8469745,-0.15812562,0.0195558,0.050318267,-0.42949444,0.16476998,-0.3680742,0.0031992078,-0.5059017,-0.31919843,0.45273086,0.4921037,0.30483344,-0.22852877,0.020083698,0.085735545,-0.08679732,0.15103129,0.11730973,0.13774973,-0.1391961,-0.74868387,-0.25544366,0.5345745,-0.21891508,0.1221232,0.019857932,-0.39447185,0.3163005,-0.107249804,0.003870197,-0.030315975,-0.53811383,-0.0068903924,-0.36598638,-0.43196288,0.37801203,-0.33525506,0.26977265,0.20280065,0.009776656,-0.3435275,0.1673039,-0.009883833,0.6213795,-0.177414,-0.08533613,-0.45334777,0.03327797,0.2185996,-0.17216896,-0.12500986,-0.23832907,0.09326647,-0.38767955,0.36051586,-0.04896612,-0.27592218,-0.101103514,-0.14832632,0.0775135,0.571794,-0.121272646,-0.13641852,-0.17421414,-0.103901416,-0.27473864,-0.10234269,-0.052707814,0.25708863,0.23504576,-0.005211988,-0.11863457,-0.025016626,-0.017312193,0.33341777,0.05455284,0.47463787,0.47596818,0.08949152,-0.26949224,-0.12624358,0.22251481,0.40152007,0.07314224,-0.17510267,-0.35399723,-0.5292823,-0.21574189,0.25586182,-0.18605731,0.34190333,0.06690173,-0.27568558,0.7157529,-0.046829525,0.98389626,0.09154307,-0.34325412,0.08259214,0.47539818,0.056706283,-0.08405523,-0.37991163,0.80370754,0.4037735,-0.0027016322,-0.08722856,-0.29634002,-0.011265167,0.081172936,-0.19351715,-0.20504329,-0.0138919195,-0.5032106,-0.15861502,0.06980161,0.23320173,0.27405655,-0.090560704,-0.0071029663,0.18301845,0.0984736,0.24233869,-0.49193516,-0.1306751,0.25327092,0.103286035,-0.0065878313,0.14096521,-0.49546322,0.36840877,-0.51542026,-0.007389015,-0.17318456,0.106492564,0.022035567,-0.25721243,0.19700514,-0.03493595,0.29023287,-0.333488,-0.3825347,-0.2985789,0.51908314,0.17956904,0.115784965,0.52334565,-0.101800434,0.1488211,0.15712425,0.6203283,0.9127201,-0.19863461,-0.034640305,0.2774267,-0.38364637,-0.7337869,0.17815803,-0.18347263,0.3672198,0.022575863,-0.11655728,-0.5411223,0.36351326,0.17436682,0.028543686,-0.03172827,-0.51623636,-0.3859812,0.34689555,-0.34531954,-0.27142397,-0.40116537,-0.026939223,0.5376133,-0.3303314,-0.20051503,0.0123399375,0.25168422,-0.25430048,-0.53981,-0.10244792,-0.38691863,0.25591284,0.12728146,-0.21397337,-0.09703191,0.10882543,-0.40052193,0.268599,0.13162519,-0.3246606,0.037361376,-0.24320237,-0.05844899,0.88144875,-0.28348646,-0.024074484,-0.4883639,-0.52340794,-0.6562853,-0.46444148,0.48790833,0.10102599,0.019630158,-0.48052704,0.032025542,0.04867036,0.10452989,-0.07500101,-0.37350503,0.3838847,0.06437329,0.29203746,0.035985876,-0.6821616,0.23333998,-0.017535504,-0.10983697,-0.54050004,0.55781144,-0.06253804,0.73209393,0.047668997,0.16995855,0.22880942,-0.35716563,-0.2411095,-0.16348222,-0.12196248,-0.66970056,0.23609652,335 -193,0.40046635,-0.29611793,-0.43515113,-0.12651391,-0.32314196,0.13380514,-0.05365324,0.4527579,0.004324162,-0.434975,-0.14728332,-0.20732751,0.023515757,0.24249165,-0.20611148,-0.26053327,-0.08316143,0.08572042,-0.37950802,0.38608357,-0.38276443,0.30341142,0.11209889,0.3177785,0.35547516,0.17742623,0.13059834,-0.12695666,-0.25266382,-0.2454278,-0.19937086,0.23704801,-0.43077463,0.025463272,-0.109436736,-0.39171547,0.14189568,-0.438504,-0.2265611,-0.73988056,0.3232184,-0.85144067,0.46815193,-0.019613886,-0.24194597,0.35941553,0.19653387,0.39641887,-0.116108425,-0.046398617,0.3079939,-0.0640673,0.050493225,-0.08475462,-0.21666002,-0.2910325,-0.6109409,-0.024374409,-0.29109356,-0.41840586,-0.3160663,0.17908683,-0.30778855,-0.09082045,-0.07153291,0.46571273,-0.5016591,0.022794493,0.123865046,-0.105928764,0.37328923,-0.55406946,-0.16832952,-0.10153398,0.2965265,-0.36056724,-0.10759247,0.25992572,0.29487383,0.30983728,-0.022834636,-0.051948734,-0.25558838,-0.032164913,0.0080191055,0.52754724,-0.13259163,-0.4119514,-0.027375123,-0.093549624,0.17585959,0.24626347,0.28434154,-0.21063623,-0.13410957,0.17542934,-0.1896183,0.17541109,0.3212923,-0.3747405,-0.18947157,0.3355984,0.46793574,0.17853485,-0.13975932,-0.052205037,-0.042812023,-0.44293994,-0.14786841,0.110873066,-0.21237826,0.5258386,-0.06334504,0.3776001,0.6860823,-0.17899346,0.05216407,-0.11819206,0.0828717,-0.09912767,-0.15160078,-0.45731533,0.2534879,-0.38558426,0.24154195,-0.10224419,0.7920825,0.05953571,-0.6718951,0.29386336,-0.6054991,0.04924531,-0.12750886,0.4067844,0.30693004,0.43072128,0.37881824,0.5285873,-0.36087695,-0.0289162,-0.077060275,-0.35052106,-0.051789172,-0.22524172,-0.13613988,-0.4721847,0.051450748,0.1229136,-0.24866737,0.06210895,0.3966631,-0.5681379,0.08726272,0.15743087,0.77382964,-0.3058869,-0.042065606,0.6221654,0.8880843,0.984106,0.06358103,0.9868037,0.21629544,-0.31329444,0.21297416,-0.22813259,-0.63266456,0.31064257,0.5927258,-0.2335873,0.2531647,0.1263339,-0.027036497,0.4451097,-0.278047,0.15094763,-0.2256468,-0.10095625,0.061108336,-0.15862423,-0.50917584,-0.37020874,-0.04938638,0.020857789,-0.08468494,0.23395105,-0.13118796,0.32232824,0.119662285,1.9688969,-0.06791282,0.109770946,0.24208847,0.4620702,0.092042685,-0.09412604,-0.10712268,0.38575995,0.35241038,0.24908027,-0.5227787,0.19405645,-0.08748506,-0.6187036,-0.079479344,-0.37424806,-0.16627173,-0.059126277,-0.51597023,-0.12358746,-0.18700285,-0.19341408,0.36498502,-2.672983,-0.09654823,-0.18876831,0.25768632,-0.27391684,-0.38289985,0.12292259,-0.40264907,0.34267157,0.33738682,0.4524155,-0.62611926,0.42648083,0.41361535,-0.49276194,-0.14628926,-0.60758555,-0.27082887,-0.049090233,0.33587176,-0.009204674,-0.07323958,0.014522191,0.22777636,0.3926406,-0.12837237,0.17128824,0.22758357,0.41588116,0.105650045,0.6906603,0.059640344,0.42614317,-0.03676741,-0.1463301,0.32437512,-0.24732344,0.10007767,0.16977088,0.035860937,0.2716487,-0.41535047,-0.89976907,-0.67085034,-0.31315678,1.2172122,-0.25215504,-0.29650915,0.246042,-0.32880655,-0.3133481,-0.21293004,0.33109474,-0.0569134,0.0007410367,-0.75033593,0.07443307,-0.11919294,0.12652457,0.03929508,-0.028463623,-0.5456204,0.6338524,-0.20553395,0.6057883,0.44897753,0.13190381,-0.21836866,-0.32210854,-0.06262345,0.84253097,0.38899535,0.088655554,-0.16376056,-0.21337366,-0.37740198,-0.07355556,0.163445,0.3892822,0.7406337,0.081703804,0.24288875,0.18639213,-0.07243704,0.013527954,-0.24488287,-0.22772394,0.013420531,-0.09035157,0.5718972,0.3666733,-0.11283444,0.43044835,-0.108482696,0.36867192,-0.16678123,-0.29758254,0.23096602,1.1359181,-0.11492788,-0.1511264,0.6641665,0.586974,-0.23587841,0.2672426,-0.6138167,-0.10343035,0.5148614,-0.27478102,-0.47053543,0.24037223,-0.2775089,0.13133007,-0.9064545,0.34983578,-0.26529,-0.3959637,-0.42313924,-0.122855596,-3.2364798,0.24480152,-0.21334332,-0.2661199,0.07613538,-0.2956587,0.19815023,-0.7387234,-0.53164184,0.12279787,0.03134687,0.6990193,-0.05306563,0.10193573,-0.23326883,-0.3458372,-0.2380729,0.093435206,0.02201535,0.3444739,-0.04830734,-0.512618,-0.03310759,-0.12662287,-0.46383366,-0.0034663677,-0.6010581,-0.57659394,-0.111356534,-0.4683434,-0.36625087,0.6733342,-0.29304504,0.075999305,-0.09570615,-0.075617306,-0.111320905,0.25324738,0.12150543,0.1579757,0.0031075676,0.040757354,0.05723177,-0.25523302,0.27591306,0.09426959,0.2389774,0.14831024,-0.22820717,0.26434663,0.49415347,0.5401745,-0.059348073,0.7809649,0.5047581,-0.06530861,0.2408687,-0.35641733,-0.2964426,-0.58654505,-0.33099923,0.00095472333,-0.31462604,-0.5154527,-0.06308801,-0.28823566,-0.60654575,0.6701781,-0.0743789,0.20619182,-0.022619164,0.2982717,0.49096072,-0.1634233,-0.24588814,-0.008324551,-0.08313721,-0.5675686,-0.18265982,-0.6666833,-0.5396178,0.038017575,1.0127645,-0.17667113,0.047964804,0.08998332,-0.20500985,0.06396565,0.07264104,-0.026914762,0.2788677,0.4141811,-0.21401453,-0.7473496,0.49779668,-0.037894793,-0.23521352,-0.37174675,0.18049444,0.5007043,-0.5354358,0.4666178,0.3295532,0.03207026,-0.122354425,-0.45624438,-0.14060755,0.027799582,-0.29548275,0.49542394,0.101450965,-0.66111284,0.37758276,0.4360899,-0.18002787,-0.6708588,0.65314037,-0.05960136,-0.36346987,0.036371898,0.3349212,0.14681278,-0.06666807,-0.17473902,0.2954942,-0.44489327,0.28267816,0.30443722,-0.06595583,0.13925193,-0.14401153,0.013131555,-0.7153785,0.2235255,-0.3777805,-0.3189895,0.20411935,0.062075797,0.01629385,0.36202627,0.06324732,0.39535555,-0.3409753,-0.0037783831,-0.07381531,-0.26684564,0.259505,0.42726517,0.34155405,-0.44507122,0.44228134,0.0039177737,-0.110329196,-0.16964442,0.00082787673,0.4023549,0.014277844,0.30091932,-0.19344275,-0.36003208,0.35055026,0.61493003,0.2841521,0.5634326,0.06968751,-0.09435537,0.15272477,0.16594766,0.19963886,0.11451829,-0.58810127,0.09702665,-0.08816158,0.069933176,0.5499059,0.105223194,0.19501363,-0.23462455,-0.27322644,0.12234197,0.18018298,-0.13997628,-0.9145532,0.33709043,0.17487271,0.70248944,0.514383,0.010088761,0.024055688,0.65814596,-0.34686285,-0.019341234,0.26105282,0.0974294,-0.63739777,0.6087839,-0.7247604,0.3707703,-0.055069264,-0.15848431,-0.10536273,-0.16237707,0.3898373,0.72398174,-0.121039055,0.008479576,-0.034410015,-0.3348876,0.1806135,-0.40519917,-0.0017433614,-0.5754557,-0.20902623,0.577516,0.50781304,0.2858676,-0.066278234,0.12206851,0.1438765,-0.2097988,0.25714105,0.15995534,0.20440845,0.085095175,-0.6755665,-0.26933232,0.52218217,-0.07561581,0.15350835,-0.07075429,-0.44562614,0.2102302,-0.1498688,0.012245939,0.03675606,-0.6045276,0.08080209,-0.3349255,-0.35921696,0.34089687,0.02440521,0.24680713,0.2602569,0.031108519,-0.23836742,0.253094,0.23879442,0.7360785,0.009419394,-0.15836842,-0.32177913,0.16912594,0.025767708,-0.12196846,-0.11590227,-0.17636849,0.16376956,-0.6057547,0.45099264,0.13969475,-0.26678643,0.07772398,-0.13464214,-0.048168804,0.5065054,-0.12952775,-0.051273797,-0.15906106,-0.024897305,-0.098537736,-0.16392215,-0.08909653,0.1316008,0.108847804,0.0084969485,-0.07972803,-0.05497734,-0.13523105,0.49752554,-0.047812603,0.4991998,0.42639428,-0.15111093,-0.41592252,-0.1656126,0.021012418,0.33235168,-0.1399392,-0.044081345,-0.3407455,-0.46177658,-0.19883336,0.23820165,-0.1998613,0.4333428,0.123317614,-0.20964885,0.9036594,-0.1576542,1.0633433,-0.08468358,-0.46359673,0.06672351,0.5572077,-0.07976565,-0.0369951,-0.34348643,0.9532369,0.5395448,-0.042738013,-0.12740742,-0.19203377,-0.15801862,0.203679,-0.1839287,-0.11739084,-0.07711852,-0.5310725,-0.31388396,0.19110204,0.19232298,0.21623777,0.008965522,0.18280727,0.2947774,-0.0574711,0.3610802,-0.31353873,-0.30611393,0.2676279,0.24149637,-0.11330747,0.025415638,-0.53015435,0.512746,-0.39623553,0.16390096,-0.282983,0.1488395,-0.14632334,-0.22323315,0.19715044,-0.049659926,0.31119674,-0.22961505,-0.30424735,-0.1555176,0.42142683,0.09741333,0.16937691,0.5628999,-0.35702297,0.1871245,-0.033394568,0.42714554,1.0218104,-0.17022495,-0.07886308,0.42943496,-0.37882176,-0.48942345,0.31514585,-0.1521856,0.04550556,0.1147724,-0.13730194,-0.55057794,0.20257115,0.37830353,-0.10823519,-0.0053409575,-0.45840284,-0.29380926,0.47373676,-0.43487135,-0.23902982,-0.3763387,0.2355557,0.55898654,-0.372389,-0.26749405,-0.058899116,0.22272769,-0.14021069,-0.40012157,-0.0037192504,-0.35682487,0.41263103,0.037983082,-0.43698987,-0.1870336,0.012513001,-0.2031848,0.03352081,0.2687942,-0.36606938,0.034551393,-0.44359234,-0.051131885,1.0145546,-0.02435572,-0.14561735,-0.44425467,-0.34102058,-0.8573493,-0.49588734,0.5157765,0.04717041,0.024280049,-0.46450168,0.008818846,-0.094912514,-0.26334506,-0.06319867,-0.319905,0.46681538,0.18009014,0.4459605,-0.042114932,-0.5808563,0.18804222,0.033014994,-0.19483137,-0.5246936,0.58699906,-0.05202734,0.7130435,0.09121455,0.052302487,0.22839497,-0.37013787,-0.04211882,-0.19430175,-0.23812689,-0.6865257,-0.045485854,336 -194,0.4687628,-0.3281843,-0.4725048,-0.15027617,-0.18062511,-0.057762668,-0.223626,0.33280116,0.18587913,-0.43860137,-0.09500602,-0.040475093,-0.05106326,-0.030915251,-0.1809824,-0.43369284,0.10727799,0.053138606,-0.60411286,0.69948906,-0.29810777,0.16688834,-0.14309457,0.30446026,0.2947935,0.36089882,0.019234793,-0.016676132,-0.0024307729,-0.15597501,-0.030444881,0.1864379,-0.60329837,0.29574716,-0.25993037,-0.23938291,-0.123692945,-0.40420607,-0.47139245,-0.7051559,0.28309664,-0.9683459,0.44411978,-0.020464692,-0.29681656,0.35403487,0.22191277,0.34601536,-0.352251,-0.11859382,0.30225104,0.058474064,-0.13322073,-0.09875346,-0.005396543,-0.5491055,-0.4609329,-0.08731417,-0.44480866,-0.07391011,-0.47633514,0.11745629,-0.3101513,-0.07194277,-0.08370013,0.5457489,-0.45911896,0.24174364,0.19296214,-0.05017334,0.42385852,-0.59317166,-0.10563245,-0.12133943,0.2476661,-0.049658395,-0.21540065,0.2794838,0.20244089,0.3674849,0.0496797,-0.12550016,-0.17143324,-0.041426104,0.23790549,0.31274095,-0.0892165,-0.4139043,-0.11738928,0.03154663,0.21082424,0.28941903,0.21880585,-0.27447692,-0.12445166,0.092570804,-0.17858028,0.5068439,0.55391884,-0.20414113,-0.15897904,0.24207298,0.58855796,0.21685217,-0.2591668,0.026306843,0.0044644177,-0.4523467,-0.23815782,0.11258361,-0.16987625,0.53395396,-0.12065781,0.31963062,0.6890326,-0.1119392,-0.0017122786,0.13062602,-0.0941708,-0.220395,-0.32410267,-0.25793213,0.18664159,-0.58939815,0.2591938,-0.26144382,0.6059846,-0.005992181,-0.65075225,0.3076864,-0.4771194,0.14761041,-0.066027716,0.43598855,0.74672866,0.41575634,0.31519204,0.7215342,-0.38326785,-0.027071023,-0.13440882,-0.3947887,0.18256949,-0.081414916,0.028120017,-0.5489145,-0.019126426,-0.08055345,0.023356851,-0.11376319,0.36426985,-0.412835,-0.13376373,0.03850349,0.87355906,-0.21091624,0.05364077,0.7922223,0.96540487,0.8973802,0.14524205,1.1422945,0.116558306,-0.13488293,0.15897848,-0.0919497,-0.6562579,0.2793357,0.40025902,0.38959312,0.17261718,0.072067834,-0.024875512,0.5366408,-0.42260978,0.19440313,-0.25351796,0.19054778,0.113410756,-0.23853837,-0.20949271,-0.16127442,-0.066218086,0.08248642,-0.032730475,0.15866056,-0.11205384,0.29216772,0.10753996,1.6272258,-0.0013842186,-0.0015032947,0.11530983,0.5484798,0.25029767,-0.21968238,-0.057647962,0.21503362,0.4431118,0.15485306,-0.5542688,0.076156855,-0.21507844,-0.43204376,-0.12192221,-0.4720308,-0.2073191,0.00066953304,-0.47226417,-0.16697854,-0.29797083,-0.27149898,0.39387882,-2.8977008,-0.17051032,-0.18153948,0.35997105,-0.29211503,-0.1369069,-0.045821097,-0.44591185,0.46286693,0.32014492,0.4811191,-0.6664444,0.5992278,0.4807186,-0.65425414,0.043310363,-0.59003574,-0.16473344,-0.021750612,0.46181148,0.0728723,-0.09227456,0.10264961,0.22208163,0.5078932,0.17815161,0.17002216,0.38347617,0.466299,-0.21766336,0.60569495,0.01948681,0.3330305,-0.19527133,-0.11256058,0.24354322,-0.2826334,0.34026095,-0.043988775,0.16312341,0.54236245,-0.45758292,-0.89573616,-0.7342344,-0.12786306,1.1113706,-0.22295618,-0.5066919,0.21691865,-0.65311515,-0.25687093,-0.1779725,0.49112102,0.056820434,0.029177273,-0.85079676,-0.011279043,-0.13173588,0.035125617,-0.015674481,-0.19780043,-0.5162259,0.91777253,-0.014104865,0.6474637,0.3268004,0.15443555,-0.27414244,-0.34193322,0.14357358,0.70631015,0.43112895,0.09044709,-0.24232762,-0.21838108,-0.41252902,-0.16210088,0.14064345,0.75407946,0.48800257,-0.06333819,0.22414859,0.2975609,-0.12799163,-0.057910506,-0.23591618,-0.2144401,-0.2473902,0.008473432,0.5074113,0.6414622,-0.10000534,0.29971507,-0.052918043,0.13238603,-0.17175181,-0.47650397,0.5311209,1.0137455,-0.14284915,-0.26763397,0.49218184,0.5368568,-0.124176756,0.36769983,-0.5301424,-0.2058545,0.45365307,-0.16459641,-0.41300339,0.21558285,-0.46286708,0.058742926,-0.74868655,0.19894356,-0.44052586,-0.50079125,-0.39608815,-0.16875622,-3.2097123,0.20895156,-0.25824133,-0.20169654,-0.28969696,-0.39545146,0.27768338,-0.5549205,-0.5603429,0.24457766,0.003165402,0.85911936,-0.043839335,0.05812169,-0.2557348,-0.24415572,-0.3470974,0.09088543,-0.0139958775,0.34257177,-0.22350441,-0.4378158,-0.27787125,0.043963615,-0.39330953,-0.020603104,-0.42675367,-0.31000963,-0.13089083,-0.32855988,-0.19470535,0.56790507,-0.033469193,0.076231904,-0.20973554,-0.13511978,-0.20805931,0.3368864,0.18925504,0.13364355,-0.04842615,-0.081096694,0.052139897,-0.31928736,0.26570505,0.059598207,0.3368906,0.24916294,-0.17545113,0.20195551,0.41814214,0.52205676,-0.18499668,0.8749448,0.3708984,-0.10044333,0.3615628,-0.07883553,-0.29784945,-0.6920341,-0.26887357,0.021181086,-0.39128277,-0.44383934,-0.038431942,-0.4247701,-0.71262157,0.39283946,0.06669632,0.28866374,-0.014845748,0.14977442,0.5051817,-0.16757545,-0.11259051,-0.01933812,-0.19339137,-0.55053383,-0.24959205,-0.5556438,-0.34712029,0.052552547,0.8220311,-0.20169732,-0.051761437,0.15194245,-0.2746727,0.16048694,0.23814347,-0.09945255,0.18273538,0.42254865,-0.12419179,-0.6279234,0.49075642,-0.06164359,-0.24706574,-0.5821294,0.37012964,0.53717405,-0.5367006,0.61601394,0.22849631,-0.052457564,-0.38114062,-0.54164505,-0.09909666,-0.22571668,-0.2648631,0.4848329,0.2232932,-0.8210824,0.31138983,0.4082944,-0.108616255,-0.6930645,0.7409591,-0.073177576,-0.2219548,-0.118687786,0.20881945,0.12297282,-0.058126487,-0.16554204,0.31889874,-0.34998885,0.30076462,0.16514018,-0.06966016,0.15873769,-0.09754713,-0.08523096,-0.6216429,-0.08510732,-0.48585236,-0.20250776,0.26383632,0.040481694,0.018535951,0.1715871,0.058168314,0.36576575,-0.20741664,0.14562657,-0.060228,-0.28666323,0.34553385,0.44785148,0.51333326,-0.51121527,0.6629575,0.05422377,-0.14328645,0.10659169,0.3264297,0.34580675,0.11172156,0.4754252,-0.0957869,-0.12604398,0.2925924,0.832792,0.22058381,0.57160693,0.14883518,-0.06482873,0.18118411,0.14014766,0.30255958,-0.0896167,-0.66655385,0.084613174,-0.2492945,0.2226332,0.37569234,0.124752834,0.20238107,-0.008891416,-0.2684445,-0.13233882,0.27500814,-0.03166524,-1.4423958,0.41652054,0.29315117,0.97676045,0.51733154,-0.052326616,-0.09374353,0.75044215,-0.080237225,0.085668534,0.33428568,0.13310577,-0.55485916,0.572112,-0.6792063,0.3584345,0.07156824,-0.040871415,-0.034924053,-0.013811214,0.33011016,0.6404198,-0.20562601,-0.015186922,-0.026225297,-0.3928007,0.35682997,-0.364007,0.029199896,-0.43794486,-0.39648244,0.6123014,0.5317743,0.3653495,-0.21894462,0.041092966,-0.014385984,-0.12316321,0.13543867,0.16339651,0.08282541,-0.16529551,-0.73965806,-0.17667468,0.35027292,-0.16128717,0.24500056,0.06067476,-0.2900335,0.21832663,-0.20746951,0.07909326,-0.04020884,-0.7609306,0.07073254,-0.2892564,-0.29190984,0.6454751,-0.08181168,0.20899901,0.25068825,-0.022139125,-0.14332813,0.33964863,-0.19718036,0.62720007,-0.031882126,0.01563133,-0.4988307,-0.037452046,0.1590168,-0.25248262,0.00115211,-0.26119873,0.061051305,-0.7622764,0.48422286,0.093593955,-0.3716849,0.21905638,-0.13234018,0.084513105,0.59011024,-0.2447359,-0.18087676,-0.010083048,-0.07000678,-0.32120425,-0.40751463,0.041635655,0.30876064,0.23184274,0.21405996,-0.15319782,-0.046117987,-0.031681787,0.38973218,0.050214496,0.38853297,0.33096626,0.07177385,-0.35944685,-0.14915232,0.28257892,0.518252,0.036589496,-0.09163788,-0.29701865,-0.60024315,-0.38309675,0.2242307,0.01867547,0.42583802,0.014094595,-0.062392283,0.6975423,-0.11732486,1.0197645,0.12902309,-0.31599107,0.16269821,0.6108441,-0.09260593,-0.17682473,-0.15072575,0.6116343,0.531632,-0.0591221,0.038429268,-0.40558204,0.038560238,0.14792575,-0.2120684,-0.018761761,-0.039379254,-0.6255956,-0.10896812,0.13068618,0.30398387,0.15848097,-0.19595107,-0.04102409,0.2700461,-0.06267782,0.24551259,-0.5269722,-0.28438577,0.24415062,0.07326908,-0.052286975,0.037336454,-0.46566582,0.41819477,-0.51031846,0.12510486,-0.23612252,0.079346165,-0.25802383,-0.28216925,0.2385785,-0.12529986,0.30449206,-0.34490356,-0.36114967,-0.24032177,0.39628226,0.3119818,0.18830504,0.58813375,-0.19734968,0.08408868,0.13204561,0.46677297,0.81874454,-0.22472446,-0.08903793,0.3444331,-0.5001552,-0.5834524,0.32456857,-0.3989612,0.279321,0.15340897,-0.21329546,-0.41636387,0.29230988,0.28328425,0.095613584,-0.0015440643,-0.87001127,-0.27639267,0.21579498,-0.1944306,-0.14926702,-0.3516593,0.011352476,0.49114722,-0.23121971,-0.20498565,-0.005252306,0.08144882,-0.095047645,-0.48783857,-0.035940815,-0.38478488,0.314102,-0.08470558,-0.37944126,-0.07279111,-0.014882803,-0.44085425,0.28032342,0.01123476,-0.32986048,0.043690007,-0.35896778,-0.18699507,0.90682274,-0.22433424,0.113049015,-0.3107951,-0.326753,-0.6691521,-0.33596832,0.14126155,0.1666996,0.061300613,-0.5332043,0.018122546,-0.08575228,0.09906602,-0.11206896,-0.4015292,0.50475687,0.102560475,0.4662598,0.0063608726,-0.7072627,0.25080433,0.10478377,-0.13692679,-0.5309251,0.6538452,-0.15686011,0.62460315,0.086376086,0.16498521,0.08225448,-0.53305346,-0.04317147,-0.23591797,-0.16151981,-0.5988088,-0.021895317,339 -195,0.48052213,-0.27074152,-0.2918791,-0.14550574,-0.14510989,0.12731616,-0.18336293,0.42999455,0.086671345,-0.68383294,-0.14744633,-0.16271451,-0.043289304,0.32964104,-0.1715467,-0.3971807,0.06297644,0.026983283,-0.36861095,0.60263187,-0.4769048,0.25158554,0.06837142,0.344808,0.08441551,0.15112615,0.28157577,0.0008603374,-0.13035049,-0.2143813,-0.11722051,0.10177865,-0.50855595,0.25065038,-0.18767451,-0.47627994,-0.13233514,-0.34684607,-0.3393364,-0.60305077,0.24385363,-0.95062983,0.36609456,-0.06318817,-0.28039023,0.2957359,0.07158895,0.22848208,-0.1935357,0.013671947,0.053134307,-0.13116162,-0.019673824,-0.15646133,-0.082388215,-0.30055264,-0.54553086,0.035411634,-0.47111928,-0.3104316,-0.23137161,0.11079902,-0.3264423,0.0045930822,-0.07864884,0.57240844,-0.46501598,-0.018028926,0.07346358,-0.10584025,0.44464093,-0.61355287,-0.21145764,-0.05400704,0.18954974,-0.217671,-0.17659998,0.23424062,0.22102931,0.5846326,-0.013058305,-0.010358155,-0.32696924,-0.10541784,0.36863008,0.52013695,-0.08944004,-0.5802901,-0.13946487,-0.047123518,0.15444928,0.14524259,0.18586715,-0.39489555,-0.09985914,0.15082748,-0.14594717,0.32595274,0.54373616,-0.24269815,-0.2884031,0.27041528,0.49687073,0.004033454,-0.1905048,0.07246321,-0.011074054,-0.38737065,-0.12813197,0.13772745,-0.09662395,0.62717235,-0.066229485,0.36300305,0.5351599,-0.1377395,0.06831352,-0.074467346,-0.12507653,-0.19888644,-0.1960284,-0.1427311,0.115063176,-0.32838717,0.19768329,-0.26201352,0.76379126,0.114707604,-0.8493197,0.38323852,-0.5002528,0.026799444,-0.15249684,0.51998615,0.572692,0.22417389,0.19792798,0.6561262,-0.48379526,0.014093908,-0.17118874,-0.303825,-0.22277944,-0.2039738,-0.054309767,-0.45548964,0.0302824,0.14352223,-0.09265398,-0.05245013,0.3190637,-0.3492737,-0.073588766,0.09318217,0.7065122,-0.31259543,0.04107576,0.8702184,1.0999074,0.9253338,0.15757184,1.1370374,0.2570473,-0.15609612,0.16532832,-0.11583435,-0.6039435,0.2831832,0.42814904,0.7416413,0.20684004,0.022126103,-0.035164777,0.38161576,-0.54678893,0.22130544,-0.16267477,0.18053386,0.18072207,-0.14307033,-0.43501338,-0.06999025,-0.025827928,-0.007933903,-0.0034642934,0.13531463,-0.13358536,0.41579714,0.13111863,1.5941002,-0.23863935,0.12622435,0.12375216,0.4980888,0.15287778,-0.19086987,0.059446868,0.17272186,0.41226763,-0.07156661,-0.6492233,0.14131418,-0.09856244,-0.59510124,-0.25003403,-0.40749672,-0.08931054,-0.018256597,-0.485828,-0.21432787,-0.07207635,-0.34087473,0.35058412,-2.815593,-0.267265,-0.23763375,0.3243133,-0.36669767,-0.2703664,-0.09271067,-0.38063413,0.56102914,0.37768987,0.36257085,-0.703538,0.38014665,0.47222665,-0.27938688,-0.11132552,-0.5850042,-0.06053656,-0.11340192,0.45691472,0.030031037,-0.13195035,0.08443182,0.1419876,0.5897711,-0.010106425,0.121686526,0.20810969,0.21072201,0.024136985,0.40923414,0.013061595,0.37113583,-0.2758199,-0.04355015,0.34828076,-0.18869391,0.049381927,-0.056300435,0.23367064,0.31223705,-0.45171908,-0.71587265,-0.78905886,-0.44161704,1.1639458,-0.19763409,-0.56168705,0.32469252,-0.22434518,-0.18386902,-0.17048715,0.3936676,-0.04195819,0.11875956,-0.8179649,0.037113864,-0.12304447,0.11028353,-0.04725292,0.0014828086,-0.4530421,0.70279574,-0.123443745,0.63942504,0.4401168,0.27609983,-0.14953762,-0.38449907,0.06701479,0.97803783,0.37030876,0.15689084,-0.2327866,-0.2298937,-0.231765,-0.23117615,0.15711123,0.55314624,0.777477,0.022162847,0.14017826,0.27076235,-0.08286739,0.04530982,-0.078019835,-0.10721703,-0.14449158,0.03594578,0.5790097,0.451449,-0.25461623,0.51586694,-0.25604114,0.16016175,-0.20198098,-0.35461038,0.50693595,0.6933365,-0.16601358,-0.18778501,0.52199066,0.4299246,-0.34441954,0.3432311,-0.6695031,-0.11543829,0.47697732,-0.23104769,-0.4134811,0.21177833,-0.36856386,0.20969804,-0.9332675,0.28314188,-0.28890905,-0.48874518,-0.55607253,-0.28628194,-3.085225,0.08678732,-0.13904287,-0.33104113,-0.050644774,-0.44620928,0.24549977,-0.50947964,-0.45476335,0.16558535,-0.007379615,0.64169717,0.07245319,0.15899605,-0.25620857,-0.023347605,-0.33003604,0.11935449,-0.026061527,0.36171043,-0.013716072,-0.31799445,0.026241994,-0.15706116,-0.54146546,0.044248056,-0.2815933,-0.47492105,-0.18759279,-0.19335529,-0.32928413,0.59198034,-0.30887446,0.09699813,-0.21195951,-0.17720196,-0.26815477,0.45828134,0.20869909,0.098320924,0.08799951,0.056772307,-0.037905287,-0.29364374,0.19860567,0.0030317504,0.054095365,0.50124556,-0.30126494,0.21431047,0.38353586,0.51179963,-0.013158763,0.5875932,0.50822467,0.008216079,0.2519575,-0.33145866,-0.26490888,-0.5055219,-0.33600956,-0.003940475,-0.34075013,-0.6496135,-0.109624006,-0.28655702,-0.7733482,0.4189207,0.05693727,0.20140384,0.0020941237,0.12612131,0.39548352,-0.13577121,-0.19049703,-0.09387687,-0.017237421,-0.64615077,-0.3794449,-0.6748828,-0.5682067,0.014492357,0.8479,-0.018604103,-0.25972694,0.068206824,-0.23693374,0.052023787,0.15039802,0.08270096,0.057197127,0.2632704,-0.088251665,-0.7190544,0.5760118,0.021981992,-0.37663138,-0.5930449,0.2210121,0.61352545,-0.44818884,0.30574292,0.22897871,0.06263246,-0.19075057,-0.4459748,-0.10817954,-0.073257364,-0.2387365,0.40710706,0.0864817,-0.80257,0.42826167,0.39827356,-0.015311357,-0.72386384,0.51822466,0.061210837,-0.12845252,0.013000679,0.23655492,0.15707614,-0.07292611,-0.22142018,0.20745936,-0.54233867,0.27736658,0.27252927,-0.00079010526,0.4153476,-0.19661659,-0.09662983,-0.58719355,-0.04797641,-0.5691312,-0.14322285,0.017271014,0.14985695,0.22415464,0.23115775,-0.09332095,0.45951283,-0.2701545,0.14789225,-0.00039553244,-0.18006277,0.2599482,0.34934938,0.3230667,-0.41332635,0.6610319,0.0035887936,-0.008486271,-0.10722084,0.12841225,0.43274525,0.35757577,0.23207475,-0.1340916,-0.20150532,0.231392,0.79001313,0.3388084,0.44762674,0.24200198,-0.2428843,0.40683854,0.10992948,0.23467611,-0.03459924,-0.40540114,0.004053529,-0.12670109,0.10704699,0.30995423,0.18026188,0.3963618,-0.06487935,-0.21968459,0.07471243,0.15935189,-0.20337994,-1.2711487,0.32948208,0.14875314,0.83250564,0.56625926,-0.18001814,0.12083855,0.5156434,-0.19333951,0.16117388,0.19819051,0.05826634,-0.43758056,0.58744645,-0.73098576,0.3211682,-0.058146976,-0.0463862,-0.08888904,0.06498407,0.31221396,0.5950682,-0.07903312,0.23910135,-0.04713749,-0.22714655,0.18694538,-0.432047,0.08209013,-0.36137098,-0.22236449,0.6353503,0.4812064,0.31235597,-0.13860893,-0.028019527,0.14575131,-0.012746771,0.11528868,0.044159673,0.14207046,-0.014434991,-0.56577873,-0.3134821,0.4435891,-0.20913297,0.13590689,0.020622082,-0.40207,0.22595833,0.075611316,-0.21132085,0.12774482,-0.64056194,0.07081828,-0.28500775,-0.35932383,0.46927422,-0.19538306,0.25674897,0.15524822,-0.03922019,-0.24184948,0.08154114,0.16449326,0.6226637,0.08642915,-0.08288664,-0.37506047,-0.045369364,0.282269,-0.16410877,-0.103578135,-0.065482266,-0.02465212,-0.57424283,0.41561934,-0.042877503,-0.16941299,0.4431538,-0.072440036,0.023165138,0.55436355,-0.11598543,-0.18042704,0.16111352,-0.2131978,-0.24972291,-0.25671995,-0.10120964,0.40709835,0.09776254,0.017426658,0.14641072,-0.028847916,-0.0072058914,0.33682072,0.030795176,0.44653985,0.3258429,0.011504211,-0.43426648,-0.17596012,0.20761506,0.34602165,0.124026604,0.021815216,-0.12938918,-0.5396291,-0.2746269,0.07094795,-0.10458803,0.22276637,0.10192892,-0.39022127,0.61810887,0.08784895,1.0000937,0.109140225,-0.33089092,0.15960269,0.26414543,-0.0012669245,0.016950488,-0.3489256,0.7236384,0.5127229,0.016351143,-0.07720127,-0.26517373,-0.079864964,0.2877472,-0.18874818,-0.096499905,-0.06318543,-0.7162091,-0.29595953,0.13290499,0.25003126,0.058135964,-0.07504853,0.045446537,0.15243517,-0.031590704,0.35697412,-0.39140034,-0.019384913,0.36923298,0.21070354,-0.0144627215,0.013459015,-0.38672465,0.3315182,-0.543151,0.02109514,-0.22062431,0.08441689,0.045379184,-0.17047843,0.15359548,0.05859352,0.3207196,-0.14694712,-0.3684526,-0.25273314,0.5399223,0.017455865,0.07267405,0.46429756,-0.20276956,0.21171974,0.009960502,0.3671357,1.1933692,-0.16486305,0.053805135,0.26585606,-0.3564938,-0.52135795,0.36132553,-0.2979352,0.36510518,-0.06774894,-0.16241506,-0.55578554,0.22995453,0.2808362,-0.12420606,0.13024533,-0.49144867,-0.41537017,0.4063018,-0.35108328,-0.18511483,-0.39550495,-0.07751196,0.5349821,-0.34354076,-0.08763536,0.042725336,0.29891363,-0.25010818,-0.4832881,0.03428379,-0.21927585,0.26417476,0.095889874,-0.32094306,-0.13057633,0.18089868,-0.40924984,0.05913566,0.07089578,-0.34270903,0.04404601,-0.3859041,-0.03529698,1.0152878,-0.08532162,0.1279557,-0.6329817,-0.49877983,-0.81529826,-0.52605844,0.45491728,0.14477031,0.04414517,-0.4566532,0.009453169,-0.056142807,0.0801009,-0.08869658,-0.37193853,0.4636336,0.12801678,0.38062245,0.023861255,-0.54885215,0.05957481,0.044545032,-0.10558395,-0.44503498,0.49715108,0.19193888,0.7139315,0.07376353,0.102287225,0.14477219,-0.53802204,0.04652055,-0.19179717,-0.2856247,-0.5828709,0.10268308,341 -196,0.4962234,-0.14468534,-0.479629,-0.114340924,-0.15230532,0.085745685,-0.13392492,0.6933918,0.23028654,-0.42883915,-0.13239685,-0.1161287,-0.017694967,0.20347986,-0.036814343,-0.3902947,-0.0040855366,0.062569804,-0.2571959,0.44139135,-0.40681738,0.29931137,-0.1297438,0.3681349,0.076479085,0.26621774,0.060061608,-0.075145215,0.06012819,-0.09746418,-0.08356936,0.35326517,-0.27341187,0.15411378,-0.14030442,-0.38073125,-0.12158562,-0.48233992,-0.40188345,-0.60674745,0.20219725,-0.70676386,0.46876556,0.1112403,-0.3406997,0.39032644,-0.12649965,0.19915822,-0.2645015,0.06408462,0.15052779,0.0128013035,0.035504896,-0.19931957,-0.27206853,-0.32562968,-0.4835284,0.05137682,-0.38236508,-0.070737645,-0.13972585,0.0199272,-0.23738606,-0.09456001,0.030511076,0.40124464,-0.50813127,-0.14376643,0.19661047,-0.14977987,0.39036465,-0.55569667,-0.16134192,-0.06722692,0.25711676,-0.2564804,-0.109283656,0.11299399,0.22027,0.58119166,-0.122622006,-0.07769735,-0.46894425,-0.029882776,-0.08717731,0.4665502,-0.19809107,-0.44311187,-0.120997615,0.008999053,0.28357276,0.26607472,0.09060762,-0.13976917,-0.1915168,-0.05883836,-0.23870324,0.2877402,0.53898925,-0.48867068,-0.21053381,0.39593357,0.61695707,0.17053191,-0.06700684,0.10078002,0.026568497,-0.46832076,-0.18848103,-0.039037473,-0.26611674,0.41563532,-0.13045062,0.28552186,0.57455915,-0.0040414156,0.07762418,0.20547329,0.08124872,-0.13933477,-0.24113505,-0.17201601,0.237447,-0.3430349,0.10577533,-0.08283626,0.59355795,0.021563845,-0.7580665,0.3550388,-0.47635266,0.08597764,-0.09302937,0.56551147,0.70685524,0.2586792,0.23808987,0.69581974,-0.5598784,0.061935145,-0.0890006,-0.23132303,0.04629232,-0.051346347,-0.16863866,-0.6121771,0.051501464,0.23577596,0.020021824,0.31962457,0.2550554,-0.5666939,-0.11278122,0.34167245,0.7198297,-0.25315112,-0.08216271,0.63797307,1.050216,0.9647111,-0.04372503,0.91328496,0.07425129,-0.2588076,0.3026385,-0.4654311,-0.6210898,0.24526644,0.39409503,0.10286393,0.3378499,0.18326506,0.061485585,0.3334288,-0.32663345,0.032373942,-0.11656036,-0.041676287,0.054940183,-0.094447,-0.51977694,-0.21762429,-0.11109093,0.13682117,0.04010438,0.30180654,-0.19607855,0.3206304,0.029036919,1.578001,-0.07727944,0.11207398,0.15168503,0.4012528,0.19097881,-0.13599531,-0.08491926,0.38184717,0.32947114,0.10468421,-0.5341985,0.14842325,-0.14068937,-0.47831973,-0.042195465,-0.27228668,-0.032061145,-0.024995176,-0.5166286,-0.025330318,-0.20272781,-0.43256676,0.4396198,-2.981584,-0.17362207,-0.090306655,0.24590905,-0.22550805,-0.33896488,-0.19883347,-0.35148653,0.42079535,0.37245145,0.4782093,-0.7241973,0.40966097,0.41617545,-0.42677397,-0.020513069,-0.57651544,-0.16857836,-0.0012811144,0.24544494,0.12539019,-0.026714247,0.056185022,0.24881262,0.43751732,-0.010683592,0.12519534,0.21124509,0.36559853,-0.023132626,0.36071503,-0.04766184,0.37382317,-0.26395485,-0.26276797,0.29909483,-0.32867423,0.2191658,-0.13451253,0.1159583,0.36389393,-0.4693244,-0.9148778,-0.5880563,-0.17725602,1.2011335,-0.112363,-0.49007824,0.29629403,-0.46761814,-0.3182081,-0.17010294,0.48336306,-0.1320009,-0.12114557,-0.830466,0.07193089,-0.11094549,0.09776711,-0.014899443,-0.074341096,-0.4249848,0.62731785,-0.071045436,0.64558995,0.47449714,0.10154462,-0.18614183,-0.36777824,-0.07672764,0.8898668,0.4114313,0.15768522,-0.26288334,-0.006373485,-0.3844353,0.14762452,0.17820488,0.391698,0.59003866,-0.012182137,0.18016103,0.2856752,0.059963275,-0.04770537,-0.1899592,-0.1378649,-0.051069524,0.07349988,0.58214176,0.64765954,-0.2380359,0.35059512,-0.027431717,0.08748203,-0.2747363,-0.42985743,0.4509388,0.6355756,-0.108001195,-0.26042938,0.619355,0.54241526,-0.22269617,0.40076026,-0.6284199,-0.37701324,0.26087976,-0.22405806,-0.40879574,0.23159274,-0.25572526,0.20381318,-0.8811623,0.10292506,-0.12582044,-0.53715146,-0.53318614,-0.09675675,-3.1131577,0.2115647,-0.18894343,-0.19141397,-0.11963852,-0.117349245,0.2278432,-0.5305765,-0.6082007,0.13789447,0.17701077,0.5953726,-0.0168058,0.07286237,-0.25155255,-0.32560942,-0.20314918,0.115098074,0.042322174,0.36983454,0.14057653,-0.54162925,-0.12620491,-0.07510712,-0.33961037,0.012974268,-0.49866858,-0.37885752,-0.07994396,-0.4948741,-0.24064894,0.53424954,-0.3041564,0.04437773,-0.22484487,0.009934378,-0.11457865,0.3098269,0.045582097,-0.00054191746,-0.082221,-0.009535178,0.11512097,-0.2959091,0.36038116,-0.00071409147,0.16667862,0.40508652,-0.2295331,0.14004658,0.5921795,0.6449732,-0.1414554,0.78730184,0.5504119,-0.026814636,0.29314086,-0.19367829,-0.2223235,-0.5430655,-0.39269397,-3.970663e-05,-0.439631,-0.4774874,-0.0338199,-0.3882392,-0.8396864,0.5085015,-0.14372008,0.21736728,0.054475196,0.18382269,0.5862261,-0.25498107,0.07080577,-0.052764867,-0.11831444,-0.434958,-0.28927457,-0.6015055,-0.3380038,0.20579425,1.0248423,-0.26469284,0.13694862,0.16029915,-0.124852404,-0.09470706,0.09288724,0.087877624,0.20181979,0.3658183,-0.0887522,-0.44384992,0.47099102,-0.098109215,-0.23836933,-0.51543504,-0.008315953,0.51342446,-0.5533572,0.39403853,0.25301307,0.004444812,-0.106692694,-0.6308626,-0.10056174,-0.124146394,-0.27532354,0.4620666,0.3391867,-0.7473278,0.4405406,0.3806691,-0.15603283,-0.5987217,0.52329564,-0.1341038,-0.31499568,-0.08107013,0.22781666,0.16527714,0.021290315,-0.06316658,0.18495055,-0.35925236,0.33417302,0.2316,-0.11076292,0.47685573,-0.2228845,0.031075787,-0.7406151,-0.19854283,-0.51263976,-0.235734,0.22352749,0.14829665,0.11242003,0.11101618,-0.0009087642,0.37883767,-0.37347215,0.12533079,-0.11127705,-0.20444325,0.36256486,0.34265217,0.4912522,-0.30597445,0.5156104,-0.020780701,-0.049839042,-0.18253177,0.03680711,0.4923256,-0.019546568,0.34404567,-0.18477722,-0.27450624,0.33153105,0.609662,0.23485817,0.1828319,-0.013909137,-0.14897971,0.20589216,0.07080366,0.09953003,-0.16415234,-0.41663468,0.11142365,-0.21107878,0.20370755,0.38017878,0.10238325,0.31005913,-0.13909313,-0.30830562,0.07296548,0.20293145,-0.035974845,-1.0602983,0.29104272,0.17937063,0.77660674,0.4292488,0.07802673,0.055873744,0.6391705,-0.157623,0.1618505,0.3979277,-0.008124963,-0.52789277,0.5319963,-0.76294005,0.5683877,-0.031180333,-0.019776108,0.071277305,-0.10168301,0.4549311,0.67469734,-0.047911175,-0.0076474985,0.050677154,-0.31513882,0.017728085,-0.33937067,0.0428459,-0.6409288,-0.1342748,0.6134359,0.564298,0.3509167,-0.17858155,0.004927536,0.06530822,-0.0102566965,0.051059864,0.060362037,0.16823182,-0.2538226,-0.6976332,-0.07384103,0.4101092,0.18704651,0.060731824,-0.101006284,-0.2727031,0.20230147,-0.06993909,-0.056706198,-0.023040036,-0.5030284,-0.017537037,-0.286843,-0.36105555,0.5243822,-0.115915984,0.3225184,0.0947208,0.09721365,-0.19628935,0.3837581,0.026221048,0.78856796,0.04437208,-0.040745094,-0.4242236,0.22521658,0.24330479,-0.14015831,-0.21756564,-0.32569078,0.0986353,-0.50628954,0.35862547,-0.050715342,-0.2304669,0.21019231,-0.084763214,0.1306047,0.49465993,-0.038863577,-0.19284123,-0.051283564,-0.1301896,-0.29277962,-0.20822026,-0.21250232,0.32892177,0.06798182,-0.12979904,-0.15187772,-0.028603133,-0.06934737,0.3313168,0.08268115,0.23265578,0.2800814,0.07542508,-0.3065593,-0.02588133,0.13144273,0.41885084,-0.009458935,-0.10432921,-0.24409577,-0.5369648,-0.27439675,-0.048579644,-0.10859116,0.37151212,0.062343836,-0.013823533,0.7505772,0.043818634,1.0845106,0.12300258,-0.30411768,0.04891061,0.42847264,0.023218174,-0.044469308,-0.27205163,0.91701305,0.544997,-0.11274474,-0.17074773,-0.17861785,-0.016147533,0.12256336,-0.1401124,-0.17575084,-0.017338676,-0.7052159,-0.21469766,0.33808202,0.20151688,0.2678105,-0.09519334,0.092302896,0.24453601,0.047907267,0.2438922,-0.39110184,-0.14937337,0.22006962,0.28181604,-0.049804326,0.09038602,-0.3917224,0.38911656,-0.54889846,-0.046907213,-0.28517812,0.1126585,-0.299869,-0.36211973,0.17302814,-0.08144187,0.33724988,-0.22787975,-0.36434734,-0.23140332,0.4641817,0.10026647,0.050233483,0.45062992,-0.24803773,0.08286516,-0.061680395,0.32638642,0.9994891,-0.22688462,-0.093979105,0.4443093,-0.20798007,-0.66026974,0.21615934,-0.4216599,0.29330933,-0.112416,-0.23557782,-0.39781153,0.40282497,0.19878118,0.037829813,0.050330188,-0.4540314,-0.023768242,0.16616192,-0.2693021,-0.23757878,-0.3205072,-0.017650675,0.5103837,-0.2822924,-0.44839928,0.11397799,0.36445883,-0.16097613,-0.5494176,0.1415437,-0.35754502,0.22267725,0.11688396,-0.3754289,-0.052179392,-0.04598715,-0.32714245,0.09042645,0.24537244,-0.3061537,0.024231173,-0.54249203,-0.012745134,0.9764422,-0.1636561,0.29547003,-0.48028532,-0.40934098,-0.89664894,-0.29568416,0.53411037,0.06775934,0.037180845,-0.5924737,0.17948388,-0.10167958,-0.103610545,-0.16651203,-0.16853961,0.5268773,0.16826579,0.35327882,-0.23203327,-0.692603,0.18553379,0.117580004,-0.18281381,-0.4941916,0.4728742,0.037601806,0.78360516,0.13198681,0.11660567,0.3193569,-0.53638816,-0.06710822,-0.22744921,-0.13671404,-0.6706341,-0.05014234,343 -197,0.44616517,-0.14449367,-0.29252276,-0.18168725,-0.16541788,0.0048882505,-0.2417605,0.04133111,0.006568694,-0.413503,-0.21533568,-0.3369967,0.105321854,0.44799423,-0.033806812,-0.8278377,-0.18994114,-0.03923719,-0.5670001,0.35371393,-0.612842,0.4564928,0.166988,0.20321368,-0.064801045,0.5040623,0.532264,-0.32387882,0.01031546,-0.015569266,-0.07436846,0.095159374,-0.54510313,0.024831617,-0.026843281,-0.29196018,0.23346823,-0.4104044,-0.13058765,-0.6203622,0.26252005,-0.9137323,0.33261913,0.04678842,0.13880107,0.108711496,0.13167842,0.3975995,-0.35701668,0.32940274,0.251441,-0.11524332,0.049445532,-0.20633171,-0.10609674,-0.58319795,-0.48693976,0.06162502,-0.4951387,-0.5738379,-0.17849591,0.16043955,-0.36809602,0.07269921,-0.05527101,0.07073073,-0.47008198,-0.24558268,0.4110047,-0.19032839,0.31374013,-0.44736186,0.029585933,-0.16571322,0.48371086,-0.26745114,0.08349781,0.36462346,0.32766733,0.48871118,0.1956254,-0.19594495,-0.11057205,-0.20758137,0.32553303,0.50224596,-0.17399518,-0.41670945,-0.2073129,0.17218398,0.092728786,0.34190375,-0.11406569,-0.20121019,-0.100282855,-0.0012811184,-0.25000617,0.3595496,0.40191928,-0.30688033,-0.46897155,0.2933193,0.5823609,0.03981423,-0.089815125,0.05203055,0.037606683,-0.48592886,-0.07262554,0.19822973,-0.10548909,0.40786844,-0.14590415,0.21922828,0.90285593,-0.22890197,0.17401846,-0.4937138,-0.32917106,-0.3238827,-0.101663575,-0.08563951,0.11217332,-0.5265156,0.039300125,-0.3077825,0.80203265,0.28768378,-0.805627,0.53633314,-0.52007204,0.17966703,-0.19782655,0.6579171,0.56136197,0.10838485,0.3449608,0.71581346,-0.48813584,0.20746498,-0.13648868,-0.47498766,0.025433961,-0.13465753,-0.039018217,-0.4255682,0.19532661,-0.0390927,0.13451153,-0.115325116,0.34640732,-0.5411535,0.10794135,0.1614059,0.71932465,-0.4500555,0.084615685,0.5245973,0.89537686,0.92619646,-0.019294607,1.2173561,0.40948448,-0.37190717,0.30066332,-0.5507145,-0.5953176,0.10778166,0.44556123,0.16854502,0.26428553,-0.1206609,0.065871574,0.2248407,-0.35625127,0.11579824,-0.106024735,0.1434203,0.15543102,0.0010670185,-0.5062017,-0.029791793,-0.043395314,-0.14597298,0.18398596,0.035814866,-0.16563664,0.26684147,0.0036870777,1.5359241,0.026900899,0.20610933,0.07571348,0.44050667,0.22949627,-0.10000787,-0.011044041,0.3905043,0.44197902,0.024920993,-0.6965422,0.19510235,-0.36112705,-0.55257213,-0.13550285,-0.2662153,0.041055318,0.16476305,-0.31487525,0.018660152,-0.005967033,-0.2939996,0.38427296,-2.6013923,-0.35276413,-0.2590957,0.21964373,-0.4387592,-0.120596066,-0.1869101,-0.5546572,0.235561,0.39500704,0.40707085,-0.6216473,0.47342938,0.3562636,-0.37313238,-0.1645615,-0.7363983,0.034610644,-0.14868774,0.3822828,0.02057594,-0.11000366,-0.16855282,0.24008457,0.554882,-0.03485244,0.041334048,0.21921295,0.48085496,0.43560895,0.5299329,-0.015659126,0.5048377,-0.17239295,-0.12600061,0.3495861,-0.24000007,0.28240934,-0.121401675,0.16215038,0.3162875,-0.4479753,-0.9010052,-0.68598115,-0.75840914,1.0505795,-0.39906433,-0.30898112,0.21136548,0.29485148,-0.050889395,-0.029140553,0.43119627,-0.14782508,0.106552266,-0.75517935,0.24235246,-0.09606181,0.18900456,0.14192274,0.1446894,-0.26933756,0.607925,-0.15931253,0.47324744,0.30509403,0.20270762,-0.021654272,-0.39616948,-0.0073135197,0.98015213,0.21517776,0.021619864,-0.110411644,-0.26875928,-0.18182757,-0.22140674,0.09838779,0.27709225,0.8133382,0.14118953,-0.030444784,0.2950217,-0.03589884,0.029096542,-0.17885806,-0.20329003,0.16876696,0.0030484677,0.5411011,0.38580963,-0.2432681,0.42660484,-0.24527904,0.29514554,-0.059808783,-0.36891893,0.6219111,0.6959356,-0.12361703,0.055056017,0.41812345,0.42124563,-0.4558784,0.38689712,-0.73656434,-0.19952099,0.6905421,-0.32753173,-0.3601949,0.19252107,-0.20029855,0.16181153,-0.94723296,0.3333617,-0.26629388,-0.06525235,-0.54630816,-0.17315309,-3.6506877,0.111037485,-0.06157828,-0.21292074,-0.069263235,0.0073028128,0.36132118,-0.66494066,-0.5153714,0.13749863,0.06362374,0.4886799,-0.0014607619,0.22311792,-0.35667378,0.0048831305,-0.19435872,0.14316693,0.13506134,0.18234383,-0.026167594,-0.40358338,0.15624724,-0.19144277,-0.53287876,0.29260197,-0.28617185,-0.3968999,-0.15930547,-0.44178954,-0.23812495,0.45166683,-0.409276,0.0700034,-0.13628358,0.08566442,-0.33574805,0.24600463,0.25173876,0.22273895,0.07084788,0.0007410437,-0.051654015,-0.28091526,0.57620883,-0.010875749,0.2859496,0.08328109,-0.102815054,-0.02346204,0.39195317,0.5196701,0.0052631935,0.8277747,0.44435918,-0.09844051,0.2248035,-0.43834192,0.007759585,-0.6342476,-0.5115868,-0.14652628,-0.3747296,-0.77581066,-0.08002725,-0.2782954,-0.68874043,0.50884163,-0.094739236,0.26506966,-0.054302763,0.24955977,0.2734424,-0.120499596,0.15113007,0.025790721,-0.11248701,-0.5271491,-0.23108469,-0.6664661,-0.434616,0.20430177,0.84795773,-0.20386644,-0.09325694,-0.27201587,-0.18521556,0.0022319714,-0.07823343,0.10179113,0.37521112,0.28460935,-0.01963609,-0.71069616,0.47965083,0.050188936,-0.106292926,-0.55190027,-0.09108288,0.6981279,-0.6505036,0.45649686,0.35642707,0.11086757,0.13577761,-0.4618997,-0.21252136,0.024666492,-0.2910245,0.36452276,-0.16673002,-0.5608927,0.5245535,0.33848614,-0.39003232,-0.69657135,0.35216933,0.114157066,-0.35108125,0.1435292,0.229642,0.12622096,-0.12446065,-0.4033639,0.24263597,-0.5248042,0.12765428,0.321318,0.012212296,0.4091643,-0.026978334,-0.2818213,-0.68502986,-0.09698143,-0.45111006,-0.21785736,0.28027007,-0.058428366,-0.030403875,0.13119714,-0.031209985,0.44631404,-0.18709596,0.023427697,0.13581893,-0.1631062,0.07296967,0.35465226,0.21519738,-0.39636675,0.55760765,0.11658872,-0.18330072,0.021884413,-0.084819235,0.38515237,0.11332866,0.17137638,-0.040266875,-0.31669158,0.4506045,0.77232325,0.28460553,0.39239785,0.2170777,-0.19409303,0.55140764,0.08865324,-0.004476134,0.12845169,-0.20939773,-0.17948365,0.23440695,0.05472506,0.47229415,0.2379389,0.43909076,-0.08487735,-0.20792398,0.08953323,0.28270036,-0.13482584,-0.66247994,0.28679785,0.17816506,0.65573823,0.54620284,-0.058866195,0.11013026,0.4924099,-0.3639124,0.11559009,0.3014767,-0.10493722,-0.5981628,0.7290708,-0.4195308,0.17638078,-0.13216928,-0.041269325,-0.012039872,0.17819414,0.25849673,0.7413592,-0.16775551,0.037313182,-0.15850057,-0.058619604,0.13941227,-0.30141914,0.075478554,-0.27787992,-0.22252975,0.6079418,0.3423564,0.2277016,-0.0924811,-0.09866483,-0.051945124,-0.11490408,0.2565631,0.0026488602,-0.006300187,0.124318294,-0.59415275,-0.35270888,0.61221045,0.15551935,0.1724187,-0.07540473,-0.46269524,0.14271961,-0.23248737,-0.028618613,0.040154193,-0.53241354,-0.03908988,-0.095299825,-0.5121017,0.37716025,-0.21495527,0.2912612,0.13476382,-0.049081776,-0.19795561,0.0432381,0.1678627,0.80480224,-0.05789369,-0.35874715,-0.41546288,0.06235748,0.36226088,-0.2742694,0.015978483,-0.2944249,-0.05682412,-0.58652663,0.66617674,-0.047625538,-0.3546901,0.24117793,-0.33737782,-0.16763096,0.6474054,-0.19070576,0.020446952,0.1375492,-0.23499289,-0.38868314,0.050420593,-0.3698272,0.10413658,0.19261116,-0.02928977,-0.1392161,-0.10426666,-0.09852992,0.6393786,0.11700698,0.3630771,0.19983597,0.16264696,-0.3599711,-0.05836458,0.1208581,0.19953363,0.1688107,-0.10002697,-0.31933758,-0.46845227,-0.10747778,0.0070235906,-0.10679086,0.24269359,-0.026592802,-0.5564787,0.7970666,0.03925343,1.1568758,0.1614098,-0.30543965,-0.017778581,0.536632,-0.111299396,0.11801769,-0.38005254,0.73789686,0.67481405,-0.017327627,-0.28206375,-0.2744494,-0.22635098,0.21971878,-0.29531974,-0.10380731,-0.058791224,-0.5658624,-0.6774409,0.35426196,0.18276826,0.076149516,-0.005501882,0.0025612593,-0.0886084,0.14761356,0.666407,-0.58546424,-0.40025845,0.18091844,0.17388138,0.06673231,0.12801242,-0.3045588,0.48476535,-0.6405217,0.18508612,-0.41454497,0.13564402,-0.1395318,-0.23968592,0.15801072,-0.022300832,0.3454427,-0.15813513,-0.5855286,0.039549835,0.48094568,-0.0021511943,0.242839,0.62686354,-0.29549783,0.2373092,0.08759121,0.60826993,1.4270257,-0.31635746,0.11239956,0.3658968,-0.3504214,-0.59223354,0.35535136,-0.30183318,-0.054019887,-0.15628938,-0.43188938,-0.2910428,0.3333632,0.21349713,-0.046198417,0.07712574,-0.4695473,-0.34258312,0.4048256,-0.31179163,-0.23022725,-0.17567171,0.36757222,0.879707,-0.41725168,-0.11488864,0.057167538,0.31183922,-0.46746242,-0.60780865,-0.26954967,-0.13075392,0.50148547,0.27742523,-0.13152494,0.17364591,0.26210505,-0.33407772,0.14766566,0.19134738,-0.49493933,-0.028999973,-0.16225019,-0.069578856,0.8219985,-0.1532094,-0.31877887,-0.8339099,-0.3157883,-1.0234797,-0.48521823,0.5962117,0.14699793,0.06326295,-0.23396635,0.15395358,0.041672014,-0.17417912,0.08115468,-0.5783249,0.2542755,0.17762426,0.6699304,-0.2727266,-0.6775827,-0.07008342,0.107891195,-0.06309291,-0.6613215,0.60787773,-0.022086136,0.8859657,-0.0056669414,-0.018914755,0.19410318,-0.3471468,0.13384908,-0.36111408,-0.18700816,-0.9036282,0.12871204,357 -198,0.22216204,-0.22317496,-0.50383073,-0.040160958,-0.30944487,0.2270812,-0.2862664,0.45623222,0.14483222,-0.4599017,-0.06886654,-0.09660527,-0.10218386,0.22105983,-0.12307542,-0.23468794,-0.042792883,0.23044515,-0.5540239,0.36706442,-0.37832636,0.23072772,-0.039099026,0.3311748,0.08660055,0.29080427,-0.095801316,-0.08717968,-0.04494264,-0.25713536,0.0051985225,0.22380342,-0.5859307,0.36502045,-0.27230728,-0.2708977,0.014948899,-0.31949326,-0.25054702,-0.65569717,0.10299856,-0.8029992,0.5569999,0.0020869474,-0.24610282,0.10277686,0.07471417,0.44651732,-0.1649966,0.0740466,0.31404248,-0.31522733,-0.25918275,-0.37936923,-0.0653685,-0.45286375,-0.48868412,-0.06397649,-0.50471336,-0.111052044,-0.15257612,0.28446656,-0.21730667,-0.06568535,0.04447,0.3025929,-0.36056077,0.307565,0.049966726,-0.15869074,0.15715507,-0.6940076,-0.06323972,-0.17989495,0.23304892,-0.2552327,-0.47573838,0.3170581,0.1642903,0.40541667,0.041424643,-0.10995094,-0.34789243,-0.12000222,0.0923398,0.44986832,-0.23506378,-0.22947365,-0.026214894,0.078066126,0.29466662,0.22707106,0.0135760745,-0.3985162,-0.13356471,0.012773673,-0.12187287,0.32437629,0.5307403,-0.14478745,-0.30972096,0.43727788,0.72816443,0.08876414,-0.14154339,0.049247734,-0.06637272,-0.5720207,-0.06138247,0.030472064,-0.07249069,0.37569442,-0.11176488,0.11043942,0.6917606,-0.36083743,-0.20444734,0.07772417,0.21227923,0.01067268,-0.2694486,-0.16928817,0.3432473,-0.48472112,0.12563623,-0.13220532,0.62030697,-0.03840377,-0.68988776,0.1743981,-0.5194414,0.0186328,-0.04253309,0.53714246,0.7930702,0.53032476,0.17240402,0.70476204,-0.3358764,0.1438573,-0.18341699,-0.21884535,0.1346971,-0.24328664,-0.13707122,-0.50582784,0.079280496,-0.072450414,-0.17025934,0.18494278,0.20739144,-0.6999544,-0.12682973,0.2503899,0.56842655,-0.36963928,-0.111485265,0.6556145,0.91719043,0.8512102,0.13378535,1.1963936,0.2214536,-0.16865346,0.16296639,-0.27603564,-0.7464993,0.17846803,0.20188037,-0.1437179,0.15605578,0.19180816,0.06797199,0.32918233,-0.5371425,-0.15796791,-0.20000052,0.52744216,0.13493109,-0.11414286,-0.23302348,-0.06532092,-0.031166304,0.02651426,0.097870745,0.23133118,-0.31463405,0.32971627,0.19146723,1.3586164,-0.039210625,0.0794646,0.12817478,0.24193494,0.190662,-0.1812384,-0.0342777,0.47236678,0.33102196,0.1951321,-0.40870178,0.060125407,-0.17134802,-0.5022064,-0.17442714,-0.1996967,-0.16501203,-0.087075315,-0.3718523,-0.29992172,-0.045919266,-0.193612,0.6096435,-2.8550622,0.021341983,-0.10296359,0.312697,-0.18191984,-0.4624747,-0.18835713,-0.39607298,0.33819792,0.17199828,0.4597025,-0.54268897,0.19672935,0.3280403,-0.65010893,-0.18556385,-0.6227841,-0.07502679,0.01577553,0.33459166,0.14784239,-0.03984654,-0.06596201,-0.1862279,0.54985446,-0.26852232,0.07478944,0.42824656,0.2639397,0.054002333,0.4050412,0.20031519,0.55866086,-0.29301116,-0.34916785,0.3917485,-0.4177009,0.29026607,0.070788704,0.03576598,0.49277037,-0.2785293,-0.8196776,-0.7702165,-0.025414975,1.1815034,-0.2627352,-0.38765225,0.14172377,-0.3448019,-0.3987519,-0.07593051,0.33528948,-0.102622405,0.06126604,-0.7791069,0.054319393,-0.14776094,0.4045959,-0.008854168,-0.019600682,-0.3902979,0.5840379,-0.20543763,0.35302174,0.45067436,0.18777351,-0.40695724,-0.3463363,-0.033228595,1.0194811,0.415109,0.08032766,-0.08586346,-0.28349826,-0.2862906,-0.12211146,0.21872982,0.6415091,0.41375384,-0.1344572,0.19161947,0.27095786,-0.16987279,0.113802314,-0.15281662,-0.18241236,-0.11214439,0.12717548,0.52628744,0.5910825,-0.008980027,0.57203656,-0.083496355,0.31180412,-0.09874127,-0.5400474,0.38794377,0.87033355,-0.19178829,-0.39820367,0.530991,0.37960353,-0.1814909,0.37915593,-0.55473113,-0.3272412,0.4350796,-0.16923732,-0.44938537,0.13907005,-0.24162285,0.24696249,-0.7753955,0.30731332,-0.22908685,-0.7429904,-0.71092093,-0.2699777,-2.0898414,0.14889066,-0.17240664,-0.103244044,-0.050968993,-0.19080044,0.21450645,-0.52929574,-0.34114343,0.12959987,0.10375834,0.5292409,-0.047922213,0.00059620343,-0.22403142,-0.32527918,-0.16687514,0.3207246,0.20717494,0.21963318,-0.113037795,-0.42427388,0.003177599,-0.016468795,-0.2941558,0.08712377,-0.6451189,-0.38826066,-0.07509635,-0.4566803,-0.26947448,0.7042674,-0.420549,-0.10170989,-0.1060807,0.11611153,0.121681325,0.088501826,0.22992903,0.16013367,0.12847368,0.013707325,-0.06815661,-0.31860194,0.3272642,0.025645072,0.2518446,0.48170286,-0.17222634,0.27163887,0.49465984,0.563835,-0.33717743,0.8483397,0.60356987,-0.10314844,0.2240209,-0.14041616,-0.21797727,-0.45806897,-0.300825,-0.14564157,-0.5608286,-0.26245517,0.021395126,-0.22064005,-0.73297024,0.64149475,0.02067559,-0.11892459,-0.03483819,0.46604246,0.4138198,-0.20951134,-0.17865008,-0.18715292,-0.09658448,-0.4419723,-0.4818316,-0.5324212,-0.50453967,0.008791673,1.3586421,-0.33703658,0.1841381,0.091607936,-0.22719435,-0.026802218,0.32026756,-0.100986265,0.14977883,0.5631723,-0.10465158,-0.5352615,0.3399308,-0.19026352,-0.22896232,-0.6982948,0.35306683,0.59973925,-0.7512999,0.43529573,0.23872373,0.057302628,-0.180759,-0.58846146,-0.13046496,-0.05550456,-0.4043117,0.30698243,0.25744256,-0.7594372,0.4233511,0.2928382,-0.24866104,-0.5863513,0.3427796,-0.059439663,-0.12221754,0.015122445,0.32833913,0.16678163,-0.03268489,-0.18883258,0.2573615,-0.28580314,0.37121534,0.06297266,-0.06562191,0.18125172,-0.24805681,-0.21221265,-0.6487226,0.044487,-0.3771318,-0.40875858,0.34416017,0.015680082,0.085702516,0.33163124,0.063826576,0.4268447,-0.27219963,0.07852785,-0.29939848,-0.2716824,0.20262337,0.40132916,0.42364243,-0.37639135,0.5396241,0.07094412,-0.26062095,-0.08472673,-0.0031827649,0.62213033,-0.1362337,0.39123717,-0.040725492,-0.110041395,0.18607426,0.67901117,0.13638707,0.49778822,-0.2377939,-0.16702232,-0.012300013,0.03599467,0.18384238,0.060078543,-0.6174462,0.10955949,-0.12142204,0.22078404,0.40210587,0.07979039,0.4897384,-0.09585734,-0.21341226,-0.048643567,0.20345102,0.21447198,-1.3725859,0.39636225,0.31401882,0.7843548,0.31131876,0.11321406,0.07080007,0.63120157,-0.23718172,0.11677875,0.23016709,-0.13025509,-0.2721791,0.372245,-0.90604085,0.56556714,-0.06981301,0.07124616,0.0661813,-0.09745179,0.44544584,0.9843871,-0.26955906,0.03700069,0.10355911,-0.27502537,0.1546088,-0.2840673,0.1737261,-0.57555085,-0.39751995,0.7104218,0.44941172,0.44320408,-0.15137953,-0.050033305,0.2890595,-0.11108819,0.23423032,-0.031065112,0.17681615,0.05133455,-0.3525236,-0.10212493,0.6320721,-0.21841711,0.16944881,0.11007878,-0.20157698,0.36750358,-0.036246035,0.014566581,-0.13319452,-0.42110118,0.025052028,-0.248049,-0.37399042,0.60495794,-0.3516179,0.15611272,0.20449717,0.090964206,-0.21350582,0.53644484,0.15644707,0.8579283,0.06983432,-0.19211505,-0.29654747,0.34225276,0.14929628,-0.16460893,0.020611163,-0.27645996,0.016169855,-0.6906857,0.18149765,-0.23647954,-0.43989143,0.01575404,-0.15288748,-0.0064271945,0.5036803,0.03880385,-0.12565298,0.14577295,-0.26543403,-0.25396684,-0.20621684,-0.2497699,0.2817539,0.29578844,0.023223843,-0.21635841,-0.22775349,-0.23330459,0.19938754,0.06240917,0.31252918,0.20071216,0.00872858,-0.19221278,0.08525823,0.13522281,0.4945388,-0.16354989,-0.12398208,0.003259448,-0.3293396,-0.46182826,0.19252902,-0.15552332,0.45473078,0.2271653,-0.26142147,0.8296173,-0.115653835,1.2195494,0.082483746,-0.2655707,0.14032486,0.5077652,0.14629236,0.07875439,-0.35871398,0.9049601,0.6516244,0.071372,-0.06369691,-0.2641744,-0.13058107,0.19586353,-0.18544601,-0.15323757,-0.035795353,-0.663433,-0.29597527,0.34505552,0.19239025,0.09365849,-0.12299867,-0.04614792,0.29342833,-0.09459269,0.16704121,-0.43272546,0.044960868,0.21841694,0.3883037,-0.10741396,0.19412167,-0.49720865,0.4289107,-0.4760249,0.028203432,-0.1383625,0.22449154,-0.18398218,-0.17843825,0.14215747,-0.025443697,0.3474765,-0.4150421,-0.31950453,-0.20280698,0.49240273,0.17440285,0.19805747,0.59101105,-0.3255631,0.02420566,-0.05645193,0.29312143,0.9671353,-0.578494,-0.08784457,0.4355393,-0.2395514,-0.404028,0.3753988,-0.40372494,0.19501638,-0.03475887,-0.2396904,-0.280235,0.28966597,0.18246517,0.08546179,-0.052402362,-0.6055954,0.102035746,0.15980321,-0.3120684,-0.108807944,-0.10467779,0.29116383,0.66676456,-0.26164332,-0.46576247,0.07932003,0.25465414,-0.267979,-0.37177786,-0.055089258,-0.32886928,0.19777207,0.0095748985,-0.37020403,-0.15390949,0.08545688,-0.42583594,-0.11436289,0.10971387,-0.2488313,0.046077285,-0.20357123,0.17759481,0.68413514,-0.19542636,0.21088044,-0.46860406,-0.37512106,-0.78105074,-0.011877577,0.21195449,0.19301298,0.006783644,-0.7364767,-0.12651552,-0.2045193,-0.3194889,-0.032367244,-0.5060594,0.5632467,0.15615335,0.1637352,-0.25485367,-0.9897414,0.25318652,0.13979381,-0.020005222,-0.64337975,0.51376766,-0.088404864,0.81685513,0.09452493,0.009782829,0.34948668,-0.49947014,0.2031475,-0.20017835,-0.071408816,-0.86050797,-0.1021341,362 -199,0.34625703,0.011339994,-0.45186532,-0.06357749,-0.33647975,0.1439781,-0.14301774,0.5106424,0.021718243,-0.40238163,-0.052542415,-0.08135971,0.07799088,0.36447963,-0.29952303,-0.5067516,0.08139011,0.11059241,-0.4766464,0.6143879,-0.32290748,0.39282146,-0.085792035,0.22202258,0.19191392,0.35712227,0.09886484,-0.22790964,-0.23860504,-0.091315016,-0.10200844,0.25110504,-0.5980235,0.10774582,-0.099495344,-0.3084139,-0.008114491,-0.1614287,-0.4829694,-0.60374933,0.3231529,-0.76086813,0.43092683,-0.06194804,-0.2764452,0.37650868,0.093374036,0.28669894,-0.19800492,0.010724926,0.115388766,-0.07770169,-0.0023732951,-0.19515152,-0.15454645,-0.6453065,-0.5473828,0.022967098,-0.5714461,-0.24513987,-0.32949135,0.14148931,-0.28942317,-0.12213791,-0.14814474,0.2962829,-0.6295029,0.09484087,0.09239789,0.037925895,0.11299636,-0.5597435,-0.13889913,-0.027553022,0.25272325,-0.17752409,-0.0023442705,0.3435832,0.20266335,0.2239077,0.011187092,-0.06158062,-0.42451972,-0.22707777,0.27392054,0.39430892,-0.18693647,-0.62627804,-0.00632481,0.0167053,0.078598686,0.10687326,0.15878065,-0.116819985,-0.15296885,-0.054475117,-0.31461304,0.37972873,0.48496065,-0.34882516,-0.29106063,0.33031458,0.41693336,0.26905122,-0.28916612,-0.020652508,-0.027599568,-0.47818673,-0.09914212,0.10885032,-0.06825996,0.54977226,-0.21201071,0.27111003,0.7345347,-0.3111338,0.17386265,-0.0052669784,0.06851465,-0.026435426,-0.10497127,-0.096409716,0.07668544,-0.46510497,0.08477166,-0.1999435,0.8060169,0.16057518,-0.6405551,0.3918521,-0.56791306,0.06405785,-0.10657035,0.4013554,0.3496138,0.466101,0.045717414,0.5242549,-0.3004633,0.07102857,-0.020059569,-0.42532244,0.18264885,-0.28031498,-0.22458868,-0.4548005,0.03751082,0.08128725,-0.062273636,-0.20554732,0.53113395,-0.49255827,-0.101056576,0.20041393,0.87687504,-0.36278695,-0.13630909,0.6993581,0.939062,0.9982803,-0.0673898,1.1177777,0.039297827,-0.22023672,0.054612365,-0.2998508,-0.6343184,0.19198507,0.251564,0.05903331,0.24140361,0.2355946,-0.041118186,0.20028739,-0.24385157,0.05031923,-0.33858433,0.16920932,0.1360089,-0.14923534,-0.3706164,-0.3221807,-0.040795684,0.02914212,0.13305138,0.3555441,-0.056664966,0.39253986,0.004890426,1.7328582,0.035142846,0.08651967,0.065274045,0.7043964,0.26506016,0.100986436,-0.02617168,0.29252827,0.39453512,0.3074362,-0.4445634,0.06269631,-0.27081886,-0.81073534,-0.011138278,-0.38331014,-0.23774593,-0.10314817,-0.6813461,-0.17881706,0.043181177,-0.076697126,0.3336774,-2.7456236,-0.07263397,-0.086063646,0.27712256,-0.19831398,-0.24262063,-0.06342059,-0.35082525,0.42061904,0.31340164,0.50593317,-0.65214443,0.56024474,0.4189638,-0.42778552,-0.02825353,-0.45047233,-0.1842115,-0.032655425,0.47324613,-0.07668244,0.07868758,0.28716508,-0.009785447,0.42777404,-0.30673778,0.18277659,0.11990775,0.21643446,0.060847457,0.39223462,0.11057327,0.4124886,-0.21018313,-0.09209382,0.28292984,-0.28382805,0.40101483,-0.18272498,0.14646628,0.2925234,-0.4417206,-0.9270445,-0.5879584,-0.12872571,1.016903,-0.14652057,-0.3469524,0.2095292,-0.31104368,-0.28822866,-0.19310807,0.25762552,-0.08223845,0.09564511,-0.7114715,0.06465534,-0.08682978,0.20383967,0.0018686026,0.017447893,-0.38020393,0.6690582,-0.014627339,0.34098053,0.29423296,0.14191738,-0.32809058,-0.57930094,-0.046594366,0.72854084,0.30485693,0.092249535,-0.33029085,-0.25748855,-0.30951527,-0.0822734,0.07232778,0.4128834,0.62407655,0.057893295,0.10858288,0.14159267,-0.030482966,0.09827403,-0.17096399,-0.35211584,-0.052813496,-0.09405272,0.54902387,0.5355928,-0.2929239,0.5819415,-0.22487248,0.30165687,-0.2813987,-0.38143572,0.4957334,1.1158336,-0.17956166,-0.21112356,0.5557832,0.6071977,-0.2712439,0.3398001,-0.4801531,-0.23635688,0.5123659,-0.26661,-0.35741326,0.25586027,-0.23809032,0.054843616,-0.8914215,0.4479212,-0.46967295,-0.418497,-0.52293694,-0.11379507,-3.6562617,0.093790166,-0.22322902,-0.2764099,-0.2014447,-0.15411803,0.08957682,-0.6933047,-0.4384352,0.056177862,0.1441392,0.6299116,-0.072294086,0.12682289,-0.25453153,-0.25514343,-0.2346795,0.21256499,0.13845731,0.2987667,-0.21624425,-0.43911165,-0.025899675,-0.26976597,-0.3884764,0.14158958,-0.61503154,-0.40227228,-0.12888719,-0.457853,-0.24277078,0.6677142,-0.17159237,0.027397713,-0.17476943,-0.012704237,-0.16738766,0.27325642,0.1188351,0.044381738,0.08420261,-0.05891432,0.10628676,-0.2806541,0.28940424,0.08790962,0.5285312,0.42570436,-0.08693843,0.005120615,0.55107003,0.45612544,-0.10015964,0.8296679,0.28900862,-0.17900136,0.34987456,-0.3074375,-0.18778893,-0.6604278,-0.35080966,0.028293813,-0.32098073,-0.59608215,-0.074154645,-0.3691368,-0.7232999,0.51421255,-0.19171901,0.024192674,-0.04934422,0.37263843,0.48824865,-0.11763317,-0.025021719,-0.0567679,-0.032234218,-0.5556141,-0.33758202,-0.5907221,-0.4256995,-0.094285876,0.94715756,-0.19101678,-0.08734188,-0.13913304,-0.27688536,-0.0031154433,0.116464406,0.07844202,0.17013845,0.26577204,-0.16483113,-0.7861604,0.7586412,-0.066630706,-0.23008905,-0.302354,0.05667751,0.48559472,-0.71656144,0.35977966,0.57062477,0.040749263,0.023745649,-0.534212,-0.2176027,0.055078007,-0.13917738,0.34047496,0.10828714,-0.71243644,0.41858897,0.2933257,-0.36598584,-0.54847604,0.7728352,-0.0030615865,-0.41282788,0.08047261,0.25507954,0.011737378,-0.016393578,-0.34958515,0.36067683,-0.5302937,0.18338004,0.19170551,-0.001347049,0.3597557,-0.14027707,-0.21666236,-0.6371692,0.11316438,-0.34501138,-0.30562735,0.28862724,0.13999985,0.009315117,0.13409847,0.07312472,0.37729225,-0.4395464,0.15682913,-0.019101245,-0.1268173,0.4338557,0.27870587,0.49802065,-0.4849645,0.5309385,-0.06878033,0.0010059933,0.15290171,0.18207581,0.48026648,0.086616434,0.47757953,0.23674649,-0.21535192,0.29566517,0.9264297,0.348108,0.5636119,0.034134816,-0.30685616,0.2991653,0.12551257,0.14170144,0.111704506,-0.37486073,-0.020329492,-0.12580012,0.14999662,0.42149353,0.054713666,0.25885847,-0.1627255,-0.19101177,-0.017967869,0.26816234,0.1444331,-1.023435,0.3479101,0.23612578,0.6269628,0.47518757,0.045207057,0.11946246,0.62270904,-0.32403982,0.1787091,0.37651315,0.114816226,-0.6358401,0.46941358,-0.65571827,0.4906164,-0.017139716,-0.031250868,0.12712398,-0.10503352,0.25770316,0.77401847,-0.017665587,0.06272714,0.05483863,-0.4514756,0.061286233,-0.47339553,0.12481126,-0.3717759,-0.091709524,0.63564163,0.49595654,0.20083402,-0.10801905,-0.00899879,0.19264267,-0.11120126,0.23746678,0.16458565,0.34389463,-0.029067885,-0.5392223,-0.373526,0.54755867,-0.31086066,0.104788676,0.04090522,-0.2252245,0.3781308,-0.20769806,-0.061443508,-0.01628549,-0.6789003,0.25640732,-0.15775868,-0.31321982,0.49988708,-0.28847477,0.2917824,0.22903657,0.0063494844,-0.42419142,0.2962614,0.016501259,0.6188666,-0.06678273,-0.14695288,-0.30812433,-0.020086054,0.19513565,-0.21001269,-0.06356262,-0.09021358,0.05927141,-0.47687542,0.34720075,-0.08433204,-0.18317658,-0.24568357,-0.13701344,-0.07648385,0.433672,-0.0033281366,-0.15177199,-0.073585376,0.14319763,-0.22868031,0.024621133,-0.033473715,0.15263878,0.27876794,-0.18552405,-0.10191794,-0.122834936,0.030838294,0.42599162,-0.09570774,0.44913784,0.3844163,0.07923215,-0.3431646,-0.20651852,0.24378088,0.44160125,-0.15028347,0.04449008,-0.25952426,-0.34420618,-0.26923132,0.19341087,-0.26246762,0.24854441,0.26180857,-0.3088577,0.8737447,-0.028508432,1.1484572,0.089377865,-0.43855894,0.27693036,0.5230077,0.10906188,0.063186795,-0.31198344,1.0853007,0.58836263,-0.13216445,-0.18872811,-0.16238949,-0.07335614,0.12311465,-0.20865989,-0.2532047,0.024530776,-0.43804953,-0.13056314,0.31454024,0.2583819,0.16542734,-0.017833322,-0.07324067,0.23185495,0.21139531,0.3096542,-0.58804536,-0.32623607,0.32613364,0.2271823,0.09646765,0.1677557,-0.5270259,0.36545002,-0.49027374,0.104332656,-0.23657991,0.14995432,-0.18952782,-0.3500437,0.15759894,0.13359115,0.3890583,-0.22647175,-0.33228862,-0.30987504,0.3455349,0.25400832,0.20550154,0.5330872,-0.14688705,0.20390965,0.057424523,0.43738803,0.8953884,-0.20164742,-0.27218536,0.4612565,-0.46674463,-0.710277,0.20685536,-0.38635787,0.22868395,-0.16068941,-0.18458632,-0.6480611,0.31632602,0.35866168,-0.06684127,-0.01249156,-0.5534698,-0.17880502,0.36078602,-0.3559494,-0.3502697,-0.3008958,0.1547416,0.7804083,-0.35874337,-0.2132256,-0.03429509,0.2365358,-0.17603621,-0.54875565,0.015154209,-0.40069744,0.3901413,0.09133746,-0.19262238,-0.049302123,0.002136596,-0.26478153,0.31244114,0.45880514,-0.3437182,0.14305966,-0.3327276,0.040950146,0.8026945,-0.2389306,-0.044885363,-0.53275084,-0.47913837,-0.81748736,-0.3942421,0.5035889,0.21978544,0.052388463,-0.6126614,-0.08476851,0.024979651,-0.30029002,-0.02042227,-0.39693558,0.50363314,0.113609955,0.0766874,-0.08123512,-0.81728643,0.08719869,0.09397229,-0.24221863,-0.5151111,0.53156376,-0.22674847,0.90204775,0.0609734,0.013365784,0.25419906,-0.34630394,0.046474654,-0.2071159,-0.19148885,-0.5316352,0.061536584,364 -200,0.26078454,-0.21409829,-0.39637342,-0.15190388,-0.3581217,0.17423071,-0.22757702,0.15576416,0.07971278,-0.38774088,-0.20025234,-0.04329093,0.07824548,0.27986094,-0.08047913,-0.5966879,-0.02079057,0.15933967,-0.798496,0.44301277,-0.6156396,0.35509402,0.11437754,0.33525088,0.0962731,0.4245097,0.12970257,-0.1492869,-0.055055395,-0.23688258,-0.07410271,0.15926674,-0.3881047,0.21771884,-0.16834728,-0.20212762,0.16640997,-0.3619074,-0.22614051,-0.61363804,0.09544352,-0.97322726,0.44337618,-0.13964802,-0.10620155,-0.089236304,0.18879806,0.4627786,-0.36524472,0.10633993,0.12273606,-0.2499825,-0.23500015,-0.38961565,-0.049104653,-0.20337561,-0.31525585,0.0939947,-0.47468823,-0.40971696,-0.044827603,0.23160559,-0.2083249,0.067680076,-0.18682022,0.18743657,-0.41349143,0.090997666,0.32506734,-0.32016128,-0.05583902,-0.51837593,-0.014587259,-0.026962193,0.56263787,-0.06600411,-0.114361,0.33969492,0.18026471,0.48728,0.24359483,-0.24008112,-0.0519435,-0.3496308,0.17219916,0.56083834,-0.061735388,-0.10774982,-0.22064851,-0.0077235224,0.29077825,0.37447268,-0.0037507752,-0.2642484,-0.102316804,-0.2800471,-0.17367649,0.2754194,0.44155154,-0.22158654,-0.31259635,0.35656688,0.50589013,0.038566433,-0.17965372,0.20639838,0.03977915,-0.40098047,-0.16428007,0.18702513,0.19386564,0.4323782,-0.13541085,0.21842629,0.75963646,-0.11415381,0.08887504,-0.05208335,-0.0155107975,-0.18735425,-0.28883377,-0.16467114,0.044074953,-0.547738,0.011488537,-0.30411884,0.8367037,0.19588155,-0.6441374,0.35882792,-0.47545975,0.072664656,-0.017136518,0.63399166,0.4841057,0.3852565,0.19842069,0.6718289,-0.3217208,0.22132412,-0.16566893,-0.34468976,-0.13347551,-0.13333826,0.044500813,-0.38465947,0.28628045,-0.030501945,0.120913714,-0.056213833,0.38141266,-0.5306789,-0.0020943086,0.14886467,0.7182036,-0.38244337,0.05395723,0.78875417,0.94940394,0.7064836,0.04125541,1.2026378,0.37890518,-0.185466,-0.0048307795,-0.24879931,-0.61962116,0.0782468,0.32482263,0.43572506,0.14110237,0.020882575,-0.061881885,0.3581707,-0.47593558,0.1599231,-0.19905697,0.30603963,-0.12719344,0.1686379,-0.44455853,-0.20625499,0.040243115,-0.16715784,0.25335506,0.23607992,-0.2580707,0.42515987,-0.05804495,1.299687,-0.119053885,0.09497897,0.18809037,0.44401243,0.09406173,-0.13475566,-0.15377375,0.42616826,0.46094647,-0.1906786,-0.6234113,0.0500684,-0.25034148,-0.4313713,-0.16130237,-0.38018006,-0.1302372,-0.04778831,-0.3870547,-0.26060975,-0.038971648,-0.32982534,0.41883758,-2.6781774,-0.22309606,-0.15371844,0.33521843,-0.39047292,-0.27708676,-0.1714845,-0.43278927,0.2193594,0.1790796,0.34038055,-0.5291366,0.47913292,0.4329911,-0.29271695,-0.28115177,-0.6532672,0.04643317,-0.10498902,0.34103858,-0.016854756,-0.092426635,-0.42129996,-0.14888027,0.5899093,-0.036154635,0.14665829,0.5429342,0.30211893,0.35209048,0.51297444,0.06642253,0.6384954,-0.39531168,-0.12805375,0.38857394,-0.24783958,0.37112096,-0.18772887,0.12586217,0.38966045,-0.6033309,-0.54861706,-0.5888482,-0.49311242,1.1724377,-0.45361117,-0.36465582,0.19692533,-0.16238587,-0.18837349,0.10736305,0.63993704,-0.1695173,0.02060825,-0.5798063,-0.009108181,-0.024741888,0.41066235,-0.0012954145,0.02953537,-0.31335393,0.5768949,-0.25442323,0.6751572,0.17495622,0.22179495,-0.085610196,-0.28015763,0.12152529,0.9310115,0.26329815,-0.0058270413,-0.10431349,-0.34195006,-0.19023076,-0.31209052,-0.045928497,0.585971,0.78269464,0.077538244,0.014546224,0.32217038,-0.16124485,-0.0051392196,-0.17841548,-0.1259211,-0.10651131,0.065584496,0.47621605,0.40757248,0.05188097,0.4859261,-0.28784496,0.46550223,-0.18826638,-0.4541903,0.4848846,0.2303296,-0.20806475,-0.1681637,0.5881158,0.6495533,-0.28608522,0.34120852,-0.6117423,-0.31920528,0.58222985,-0.18025322,-0.49624434,0.28698146,-0.1601731,0.31110534,-0.80783045,0.24961138,-0.23735647,-0.5041799,-0.41627845,-0.0690866,-2.5679312,0.10047575,-0.04429859,-0.13796361,-0.17020164,-0.11765487,0.16486746,-0.389213,-0.35756508,0.13670023,0.19929396,0.6251139,0.051176038,0.13009037,-0.2876239,-0.09960375,-0.02457467,0.13774046,0.061669096,0.2748896,-0.32981095,-0.23584965,0.06073548,-0.09055285,-0.36651233,0.17255399,-0.6611858,-0.524954,0.01263939,-0.5528019,-0.21540709,0.6172826,-0.54322463,0.024148563,-0.20322813,-0.0707432,-0.22512333,0.12126226,0.20870797,0.26845166,0.13609266,-0.13699798,-0.07335699,-0.49426338,0.4669577,0.031263687,0.22493187,0.084410325,0.02031706,0.13441661,0.22367963,0.50411284,-0.18582787,0.8959843,0.2170653,-0.07340159,0.24371475,-0.27589953,-0.29980054,-0.4383438,-0.22031341,-0.021592315,-0.3517024,-0.4639605,-0.052934263,-0.25254694,-0.777561,0.5937208,0.13243145,0.0633621,-0.09490714,0.31741938,0.4214652,-0.016754815,-0.026307741,-0.06595855,-0.08129821,-0.44850424,-0.41890207,-0.6208909,-0.36130196,0.027274013,0.97012067,-0.2571618,0.057430103,-0.027613753,-0.42303413,-0.044394914,0.066215925,0.13406317,0.37155056,0.60120636,-0.1273912,-0.60059524,0.47017315,-0.13481788,-0.15746687,-0.33290288,0.070514955,0.6557039,-0.8456002,0.49548784,0.25840327,0.114420764,-0.038860217,-0.32499543,-0.2231863,-0.02154702,-0.27299318,0.38873115,0.101634055,-0.7537338,0.47714177,0.1733673,-0.16666079,-0.85859406,0.18930095,-0.06164786,-0.30545172,0.16919045,0.43364894,0.027316237,-0.044855542,-0.25069648,-0.017398022,-0.36397296,0.26884183,0.21010993,-0.17534687,0.25906426,-0.3989379,-0.36198375,-0.59067225,-0.05571767,-0.5483111,-0.22203524,0.23120579,-0.06344338,-0.035590388,0.27065858,0.067856304,0.35075885,-0.33756146,0.097371385,0.025741274,-0.2994148,0.16916583,0.33967468,0.23173358,-0.41826317,0.520409,0.06370401,0.019129673,-0.08255809,0.08969094,0.42030498,0.042576227,0.28069574,-0.2478786,-0.14570875,0.36414775,0.91289276,0.1575451,0.5106428,0.2380445,-0.11951324,0.41168964,-0.011236661,0.05549644,0.07513544,-0.37727496,0.013850365,0.10566136,0.1277477,0.34047043,0.4647011,0.5344214,0.058992404,-0.21104528,0.048337374,0.1437411,-0.118990324,-0.83896744,0.20777269,0.13365431,0.7408908,0.29100844,0.11370536,-0.1358126,0.65164816,-0.35476333,0.14030625,0.22304174,-0.18436402,-0.41205174,0.66012514,-0.36550808,0.41815317,-0.20244715,-0.071593255,0.26696873,0.06917237,0.28259805,0.8286676,-0.110330366,0.03254462,-0.07320344,-0.056939777,-0.0827047,-0.2887432,-0.031856816,-0.44686705,-0.32509592,0.6720941,0.40276405,0.45707008,-0.14182329,-0.0077411523,0.13791077,-0.15034573,0.11325385,-0.011452576,0.053455822,0.1669914,-0.43901518,-0.2981793,0.5649043,0.022358995,0.09556745,0.03309323,-0.3168513,0.10849576,-0.2710796,0.039076988,-0.10238348,-0.60128444,0.124343604,-0.28321105,-0.57971513,0.09026919,-0.24966292,0.16536449,0.21326794,-0.06952039,-0.19729838,0.39590067,0.118555516,0.94266224,0.075689174,-0.3407055,-0.23955849,0.009090984,0.32007858,-0.34935957,0.0862895,-0.38274363,0.13852367,-0.7413871,0.5453549,-0.18379964,-0.37653401,0.21202949,-0.23834863,-0.13082753,0.49443752,-0.03276856,0.021352682,0.16400068,-0.20049745,-0.47076893,-0.010693184,-0.34295723,0.11759349,0.35185793,0.023090383,-0.047417905,-0.19312058,-0.11807697,0.47376072,0.09192371,0.5176554,0.20731373,-0.045172047,-0.14888467,0.16264413,0.15146914,0.42293134,-0.030842774,0.12175061,-0.19009107,-0.2714438,-0.08468618,0.44896066,-0.052549053,0.21229932,0.07571094,-0.25399983,0.9177036,0.0046973866,0.84604377,0.17174286,-0.2353391,0.07207643,0.46583515,-0.09271596,0.16984409,-0.3440316,0.9372579,0.3913007,-0.0293629,0.03378216,-0.42025438,-0.15252203,0.34918308,-0.29911658,-0.09303393,-0.09544309,-0.4742221,-0.45741794,0.21065207,0.20343964,0.15029334,-0.03858849,0.013376715,-0.05013104,-0.059298635,0.3455649,-0.6930243,-0.10376059,0.27127197,0.1489065,-0.06776159,0.14833859,-0.44048193,0.48385912,-0.77686983,0.1594425,-0.39537245,0.008244603,-0.07548496,-0.23491865,0.0109366635,-0.013304802,0.31461823,-0.5402927,-0.42482606,-0.2639967,0.47795212,0.09010527,0.20719963,0.65656036,-0.24994664,0.00038493623,0.13792108,0.54928905,1.049086,-0.22002943,0.14283167,0.23316115,-0.3492211,-0.5589991,0.27394742,-0.2705011,-0.053063378,0.0004831925,-0.4710416,-0.2999602,0.35610092,0.3444748,0.06718295,0.08074163,-0.51923823,-0.052627023,0.45625082,-0.14991353,-0.28954583,-0.16170861,0.29062968,0.63280475,-0.08255849,-0.3159736,-0.028590463,0.29708746,-0.43535712,-0.40816957,-0.075768456,-0.25486898,0.2697625,0.04061521,-0.2268051,-0.1959913,0.12984632,-0.39820918,0.008731453,0.33205974,-0.35198414,-0.008445493,-0.101672806,0.018445313,0.8199556,-0.14468478,-0.09160821,-0.68656045,-0.4788664,-0.7758052,-0.50439954,0.20407334,0.19005568,0.052122395,-0.27807814,0.04277234,-0.19181246,-0.17379607,0.2949224,-0.51039255,0.26831338,0.1856248,0.4235444,-0.2784732,-0.9192263,0.26044187,0.030636137,-0.3770655,-0.54464954,0.4909249,-0.09196527,0.701455,-0.006522368,-0.1397861,0.08986498,-0.53469825,0.13292977,-0.35815546,0.04927652,-0.8223669,0.1032072,372 -201,0.30533296,-0.1557929,-0.45070538,-0.14327288,0.026436014,0.17172475,-0.12622155,0.59860355,0.2076995,-0.4987909,-0.0007022659,-0.1831708,0.046967927,0.14595346,-0.18490297,-0.36560422,0.023356104,0.076920815,-0.20749687,0.35778967,-0.47839496,0.32301226,0.038577553,0.13743207,0.1365065,0.30769035,0.16408795,-0.20644644,-0.10054768,-0.11792863,-0.33979067,0.28875294,-0.37969428,0.07168415,-0.20157911,-0.20702095,0.14456293,-0.38528213,-0.4219096,-0.6554678,0.3808438,-0.75352466,0.4437741,0.07682007,-0.1596681,0.2252043,0.15739581,0.2670323,-0.18871447,0.022621969,0.24172309,-0.063716374,0.16432239,-0.16103655,-0.31740245,-0.392744,-0.37750638,0.040099356,-0.46526152,-0.21753529,-0.21292563,0.04060425,-0.31410822,-0.12686591,-0.22881489,0.29562318,-0.36541858,-0.1484953,0.17471059,-0.24093147,0.24261841,-0.5602502,-0.21320948,-0.028090527,0.19439448,-0.2929901,-0.15962233,0.22743554,0.19252181,0.471024,-0.23399611,-0.026536204,-0.13367341,-0.23242368,0.07873833,0.5570732,-0.23120798,-0.5863339,-0.010254057,0.0630858,0.2049256,0.17946178,0.06452129,-0.23084898,-0.1514408,-0.040392954,-0.33709174,0.3941611,0.6077772,-0.39613244,-0.109161824,0.29569873,0.46950716,0.257444,-0.1299276,0.03670273,-0.0672239,-0.57865214,-0.14097403,0.046825014,-0.2541858,0.62141794,-0.09485171,0.21535166,0.587941,-0.24309942,0.1533049,0.13868889,0.075991295,-0.06700942,-0.19475564,-0.25768584,0.058941957,-0.45797125,0.09087249,-0.10320867,0.76159453,0.14352895,-0.6225308,0.4078199,-0.36387083,0.109712124,-0.052882608,0.49592984,0.52639335,0.18545265,0.18084106,0.7168633,-0.62704563,0.12716162,-0.16577269,-0.34941146,0.12134813,-0.057358123,-0.023017133,-0.39254877,0.07587024,0.14929156,-0.06806908,0.10539199,0.28230342,-0.49445316,0.02463617,0.10609953,0.8903919,-0.25265136,-0.061192267,0.54811573,0.8397688,0.8259202,0.012694941,1.0125105,0.04601551,-0.3075151,0.053758804,-0.14730765,-0.76278913,0.24362427,0.2925935,-0.11263145,0.17369388,0.30270287,0.12984471,0.17025325,-0.29133466,-0.06391523,-0.18543476,0.21021064,0.17145385,0.009894192,-0.30190113,-0.2539841,-0.08822908,0.0727902,-0.008922827,0.18030605,-0.16499853,0.2252745,0.08775996,1.6135821,-0.031118723,0.11215185,0.12236268,0.42545998,0.27551612,-0.16594853,-0.08673313,0.43537548,0.45773628,0.005313532,-0.5351125,-0.07668374,-0.179564,-0.37057585,-0.08313959,-0.26209837,-0.08300929,0.011567845,-0.5180397,-0.08143958,-0.10178733,-0.27219915,0.48448464,-3.046693,-0.00020488998,0.0009623468,0.27928355,-0.31646767,-0.33299333,-0.13546751,-0.46432915,0.3241575,0.4124557,0.36553103,-0.650217,0.12191723,0.33299434,-0.26587746,-0.18296097,-0.62087756,-0.098828636,-0.06109423,0.30519918,0.120368384,0.00095648767,0.053301882,0.2285754,0.332145,-0.00015509129,0.0774678,0.025211167,0.4131465,0.2598568,0.38637343,0.0017443975,0.47908542,-0.18224488,-0.05924257,0.34003645,-0.3783055,0.18840833,-0.029307198,0.1729844,0.33767274,-0.26088235,-0.6806454,-0.48178998,-0.24484423,1.195819,-0.23786242,-0.3791579,0.2876152,-0.29329816,-0.31812173,-0.22355217,0.46833393,-0.12755887,-0.15591525,-0.73970824,0.0608697,-0.11701135,0.16964646,0.004339232,-0.043802906,-0.34375465,0.6227352,-0.00036295652,0.4362251,0.3889273,0.10998125,-0.17933348,-0.31037274,-0.05639263,0.8637066,0.37416857,0.11172963,-0.16272688,-0.08449728,-0.2983642,0.06241963,0.13085261,0.52177304,0.7466019,-0.008582128,0.05900377,0.25221127,0.106939115,-0.005878357,-0.08377197,-0.3022442,-0.0371245,-0.036040016,0.6093375,0.39002064,-0.14360599,0.38698027,-0.07923588,0.09776608,-0.305067,-0.3983929,0.28594717,0.64694905,-0.081129625,-0.1916019,0.41453227,0.44840494,-0.17705555,0.3886627,-0.5828855,-0.30555293,0.581516,-0.2554521,-0.35211104,0.3889032,-0.39333174,0.12104332,-0.74470216,0.20545253,-0.15377621,-0.46295077,-0.5315587,-0.17476243,-3.4071834,0.08662378,-0.13173482,-0.21794952,-0.098906115,-0.07615617,0.17457822,-0.5157689,-0.46905518,0.18880787,0.05401493,0.5530759,-0.018328506,0.008104726,-0.25828722,-0.28068334,-0.21976201,0.05718473,0.010581698,0.23654552,0.026852647,-0.3655501,-0.17012046,-0.21640588,-0.25516984,0.105470754,-0.44452965,-0.45455799,-0.10214718,-0.41314203,-0.27007198,0.6899281,-0.55707335,-0.08916328,-0.08131564,0.03843004,-0.13477524,0.27267888,0.23470858,0.08699468,-0.14298029,-0.049702052,0.087871484,-0.39277717,0.37642893,0.10043288,0.2786003,0.37454802,0.017539905,-0.06690764,0.402208,0.56270826,-0.0009917389,0.7931608,0.38130972,-0.15972723,0.317702,-0.31199995,-0.23696078,-0.39106795,-0.30159843,0.094526425,-0.4277326,-0.48108438,-0.19982852,-0.32062256,-0.641745,0.37806913,-0.08309554,0.21545258,0.025328994,0.41663283,0.41154426,-0.0264195,0.025178226,0.020570543,-0.0887426,-0.49107042,-0.4246675,-0.6539845,-0.30798087,0.19890782,0.91354907,-0.26475412,0.0042643705,-0.056204088,-0.19091728,-0.027646145,-0.04432801,0.07127709,0.14284308,0.35026667,-0.18067463,-0.64999163,0.4254928,-0.09461593,-0.3329741,-0.5529054,-0.1466958,0.55327696,-0.6092419,0.4220236,0.3508574,0.052242246,0.018616097,-0.45297417,-0.25355422,0.062187087,-0.3115793,0.32255235,0.107999116,-0.6007017,0.46902734,0.27871883,-0.27483788,-0.5154288,0.5648018,0.08551501,-0.2835341,-0.10295608,0.3193367,-0.007892545,0.056306206,-0.03294208,0.08399018,-0.48925695,0.18049082,0.43084806,-0.014914504,0.23565097,-0.1565154,-0.12927239,-0.637022,-0.014777863,-0.45602772,-0.2058796,0.21987718,0.09309204,0.2479584,0.16004784,0.0020145932,0.39272574,-0.4524497,0.18126695,-0.002542615,-0.084759474,0.45816612,0.31208494,0.4491429,-0.35245517,0.53133476,-0.058219545,-0.0712202,0.028401764,0.10438654,0.5266512,0.12363358,0.14614318,-0.05566888,-0.26669264,0.44208857,0.9547471,0.29192504,0.3643198,-0.07193861,-0.030645275,0.18479557,0.16097307,-0.0021189451,0.16496822,-0.46745518,-0.30232856,-0.15504879,0.1597632,0.41385904,0.07844747,0.3277014,-0.07469229,-0.28215143,0.12575656,0.2984465,0.08717772,-0.8998224,0.32733476,0.040333245,0.6975955,0.3737482,0.063598685,0.07846693,0.4645527,-0.19224565,0.17926727,0.25733286,-0.015149661,-0.45357457,0.3456398,-0.442328,0.4700638,-0.10330978,0.07327242,-0.014150337,-0.14007764,0.43018335,0.874807,-0.23799919,-0.009680662,0.1534685,-0.19228597,0.088577755,-0.4236193,-0.036662914,-0.5929243,-0.2720832,0.5172622,0.3419456,0.26332334,-0.11527563,-0.06583352,0.024363752,-0.08566954,0.06553067,-0.025103698,0.14281888,-0.10239677,-0.68666,-0.18755566,0.4610258,0.047325276,0.10064735,-0.086857796,-0.18470278,0.4006761,-0.1561608,-0.0037884174,-0.08691091,-0.4876327,0.015011223,-0.24850562,-0.43352416,0.38482884,-0.13583949,0.37660998,0.2533293,0.06730484,-0.16161658,0.29368046,0.20790315,0.7514372,-0.31096172,-0.18800099,-0.61106366,0.17357571,0.19213396,-0.08845285,-0.20144528,-0.29866472,0.072962776,-0.58872056,0.32105434,-0.057073448,0.05459921,0.05225769,-0.23093094,-0.0048825084,0.5885794,-0.020742588,-0.08645283,-0.08317283,-0.100758746,-0.14711457,-0.08610104,-0.23573735,0.21178001,0.16492996,-0.109227546,-0.15302554,-0.18668485,-0.2476826,0.12305519,0.05235732,0.3119798,0.24896751,0.16533802,-0.21653162,-0.06461155,0.012383123,0.34325856,0.11037354,-0.11819782,-0.31103337,-0.49809152,-0.24405281,0.2463975,-0.10996482,0.24620469,0.17886125,-0.18199791,0.7572294,-0.087789744,1.007559,0.022948762,-0.3112742,-0.0717827,0.58541584,0.015114715,-0.00040506918,-0.3755657,0.8724431,0.54972064,0.095295526,-0.058859065,-0.2010684,0.07255257,0.11703871,-0.12028349,-0.02020987,0.030763436,-0.50315076,-0.18937905,0.3196657,0.28337386,0.20931625,-0.06661579,-0.036983658,0.27752116,0.08677114,0.3170043,-0.4417904,-0.14682104,0.22715853,0.19160934,0.0640594,0.028159397,-0.41232854,0.44558823,-0.4752538,-0.08645323,-0.35374793,0.14589112,-0.15159303,-0.24760336,0.22300452,-0.17160273,0.42098555,-0.42121708,-0.3195386,-0.25711903,0.35556224,-0.03839528,0.2390385,0.3492549,-0.14617442,0.033702232,0.02140812,0.5732368,0.94989026,-0.13537152,-0.029812733,0.68857294,-0.2549566,-0.5661909,0.15010783,-0.35591316,0.17506583,-0.013930885,-0.08627291,-0.30162752,0.27372715,0.27607438,0.083492674,-0.02745952,-0.46329403,-0.28085086,0.31809404,-0.21561055,-0.3252183,-0.31375843,0.15696795,0.6358041,-0.3672064,-0.23864378,0.044271518,0.34673056,-0.27035624,-0.5637377,0.021663785,-0.26073655,0.4568182,0.19011268,-0.12813352,-0.07009271,0.01781358,-0.36121893,0.2540732,0.16108726,-0.3671921,0.04708788,-0.22169575,-0.027255036,0.823443,-0.08814091,0.0036639848,-0.49134776,-0.3551273,-0.72353005,-0.29634705,0.54182756,0.03266538,0.11369376,-0.50170475,0.004270758,-0.05276685,-0.048423495,-0.15216784,-0.24094613,0.5732204,0.11044283,0.3876224,-0.15733983,-0.69793725,-0.036491103,-0.018670047,-0.2976049,-0.5357084,0.5511742,-0.02871995,0.7084685,0.11949184,-0.017948382,0.37776554,-0.40112096,0.083816625,-0.26708603,-0.24737126,-0.70653665,0.10413548,377 -202,0.35054532,-0.10264499,-0.5272358,-0.07333874,-0.16091532,0.10645963,-0.25474313,0.37639564,0.20150734,-0.34510213,-0.061664246,-0.12174579,0.033146624,0.24955411,-0.07702443,-0.397134,-0.027573593,0.1226847,-0.42415184,0.39449513,-0.43000707,0.32834715,-0.15440567,0.4288754,0.18058538,0.36800358,0.004736149,-0.1092586,-0.089811794,-0.14568983,-0.19590937,0.3559081,-0.2652658,0.01577725,0.018813642,-0.24856058,0.09044311,-0.40090287,-0.3363863,-0.70859164,0.34314257,-0.7496962,0.46196193,0.037252538,-0.20002492,0.2831141,0.1937259,0.46467572,-0.25352198,0.035387866,0.26965034,-0.15879965,-0.057627454,-0.16506048,-0.18505353,-0.4110342,-0.47027284,-0.036600366,-0.43009868,-0.30844435,-0.30796713,0.14805211,-0.25091097,-0.1031963,-0.05059373,0.48680675,-0.5196947,0.03525501,0.21939228,-0.20243715,0.2741811,-0.56625557,-0.0964388,-0.053535905,0.38565928,-0.14950386,-0.06669666,0.1512584,0.34286746,0.32742792,-0.038457647,-0.1523943,-0.39774877,-0.1440349,0.08952022,0.47720978,-0.20183171,-0.41837952,0.0016966263,0.037274104,0.06405766,0.2754503,0.14060625,-0.21583636,-0.07901504,0.14235623,-0.2498469,0.24805422,0.33695304,-0.34456146,-0.14721942,0.3682311,0.5179056,0.16459551,-0.17935811,-0.030900208,0.03433485,-0.4505186,-0.11782119,0.033802677,-0.28534257,0.4257264,-0.08949568,0.3527119,0.716758,-0.14006427,0.070499904,-0.10613774,0.057268873,-0.14618436,-0.25651297,-0.24022214,0.087151185,-0.36400706,0.28078535,0.01643575,0.78013384,0.12285651,-0.5817878,0.293304,-0.56521314,0.10617157,-0.20868212,0.39149123,0.5243409,0.29789177,0.40437856,0.6175133,-0.349485,0.09199225,-0.07853539,-0.48667124,0.0008229415,0.0287156,-0.1006749,-0.5798434,0.06213408,0.001793023,-0.11749258,0.08339731,0.31378883,-0.5071814,0.06875264,0.17981987,0.8903796,-0.3216206,-0.13647394,0.54282135,0.97486454,0.8738857,-0.0012544801,0.9490939,0.20531943,-0.319548,0.18224287,-0.41855878,-0.52436936,0.276625,0.3753914,-0.33361977,0.23044287,0.15362087,-3.973643e-06,0.472133,-0.31629428,0.059344966,-0.120250106,-0.011817662,0.22352338,-0.07333107,-0.42703724,-0.21674512,0.0038902601,-0.068629436,0.16715011,0.23604487,-0.18697158,0.24293788,0.013006385,1.830352,-0.03727317,0.10301965,0.09750584,0.47163334,0.19026877,-0.11571153,-0.052975737,0.5305231,0.3724906,0.12594754,-0.5902086,0.20981078,-0.23447566,-0.5096455,-0.10098745,-0.3075482,0.012971576,0.12232354,-0.49505523,-0.0839714,-0.17815271,-0.26338112,0.38001385,-2.8320668,-0.06314812,-0.14290066,0.27943403,-0.25546712,-0.32150945,0.09364574,-0.3753722,0.36417338,0.28107145,0.39646706,-0.5892151,0.3919135,0.41398683,-0.47925416,-0.11491089,-0.54381585,-0.2102692,-0.06298981,0.24552082,0.019982386,-0.060504008,-0.035023235,0.19550835,0.38567588,-0.10311278,0.1464723,0.275641,0.40954506,0.14582056,0.6516895,0.055621095,0.5639441,-0.03741013,-0.22243829,0.25622594,-0.23852442,0.17559548,-0.020367904,0.058962647,0.3249181,-0.2688323,-0.85061705,-0.6874197,-0.1997569,1.2549099,-0.26529953,-0.36397055,0.28143886,-0.23758346,-0.31017172,-0.03607653,0.44604757,-0.08563115,-0.17948173,-0.7899802,0.17069206,-0.18567027,0.18678102,0.11884232,-0.039314706,-0.48874867,0.5753666,-0.03686055,0.5415268,0.34281683,0.20559318,-0.17392395,-0.28085816,-0.049745012,0.79206175,0.31189126,0.11962021,-0.14042439,-0.24425247,-0.28809386,-0.10148044,0.0962565,0.49083653,0.71228856,0.06310757,0.15292458,0.2323771,-0.11211609,0.039964907,-0.18552858,-0.26635417,0.07168518,-0.0179434,0.5184398,0.37979907,-0.19310942,0.48062798,-0.067789994,0.29610264,-0.18633755,-0.26987717,0.38451546,1.0421579,-0.22298566,-0.27477834,0.5494039,0.45389155,-0.2928957,0.25356534,-0.6256624,-0.10009327,0.57288325,-0.18064533,-0.49049786,0.1816954,-0.30287373,0.16222474,-0.91143507,0.19946954,-0.16332461,-0.44767115,-0.45894888,-0.09461192,-3.945421,0.15596907,-0.34319007,-0.22871044,-0.1257508,-0.119476505,0.1944508,-0.66150266,-0.4790016,0.103605986,0.07395646,0.6381131,-0.117190756,0.13529888,-0.26608953,-0.2102837,-0.2297246,0.13855341,0.031994537,0.35157612,0.009894282,-0.5197912,0.02266037,0.045963403,-0.47685614,0.11763408,-0.59953743,-0.3681907,-0.049890295,-0.5677608,-0.27232495,0.5665999,-0.2950427,0.011749911,-0.22844772,0.02833523,-0.14150563,0.34044167,0.18596111,0.10906125,0.022465134,-0.044698615,0.05026526,-0.314067,0.30618212,0.007608664,0.23679402,0.19347292,0.10466916,0.11093195,0.41736028,0.52559066,-0.07447281,0.7446156,0.47979668,-0.177395,0.26224577,-0.40129507,-0.21430959,-0.5015292,-0.39614055,0.00346333,-0.3665758,-0.5035895,-0.16292463,-0.44795334,-0.66953295,0.5411077,-0.01755611,0.15600829,0.029330263,0.33724433,0.49148986,-0.16932772,-0.058694147,0.062376186,-0.13397278,-0.5542718,-0.129957,-0.5183516,-0.34182945,0.18704656,0.77036494,-0.26924053,0.070990674,-0.011175762,-0.21682781,-0.108179025,0.0778688,0.13542554,0.286445,0.49835014,-0.22597955,-0.6727254,0.446607,-0.13158734,-0.1994366,-0.6055452,0.190448,0.5579836,-0.6184429,0.632984,0.30374378,0.16390972,-0.11440048,-0.5239149,-0.17629464,0.12093479,-0.21448784,0.37676004,0.19257364,-0.7011557,0.39794433,0.40680048,-0.12321411,-0.5580603,0.550619,-0.06239787,-0.39114487,-0.025230369,0.3606785,0.12564664,-0.033657014,-0.25644138,0.18520007,-0.4344537,0.24627382,0.2567091,-0.1529984,0.22555852,-0.2011017,-0.03398396,-0.6641907,-0.016473632,-0.42623004,-0.24496572,0.249546,0.109420255,0.13740817,0.22210635,-0.049879488,0.33603603,-0.32754388,0.023376746,-0.079992995,-0.0977825,0.19747901,0.40056565,0.39115104,-0.45098782,0.46448594,-0.019073619,-0.17360792,-0.06590239,0.052249327,0.44893512,-0.0028640905,0.41763538,-0.11593281,-0.26044744,0.37067363,0.7000836,0.19482677,0.5301026,-0.03392671,-0.09159856,0.14223951,0.07522189,0.055878386,0.08786937,-0.6305409,0.02745777,-0.17124303,0.19829673,0.5512608,0.21469767,0.32441458,-0.08703396,-0.36028376,0.051889736,0.20967683,-0.06958601,-1.0124122,0.48508373,0.24002157,0.7548285,0.34388754,0.013946267,0.0051740725,0.67706895,-0.2897205,0.10964758,0.34112868,0.062418986,-0.5163904,0.49062034,-0.7235332,0.3591175,-0.026425295,-0.055380117,0.029283376,-0.14725667,0.3162063,0.7604191,-0.15927163,0.018350072,0.116140015,-0.28771913,0.10482235,-0.35194317,-0.06088888,-0.56565875,-0.25290543,0.4223097,0.58792996,0.2870037,-0.13989156,0.033891257,0.17167212,-0.12239271,0.11547801,0.122858986,0.18166704,0.106281824,-0.73254913,-0.3441966,0.4947858,0.011656737,0.10467462,-0.12397125,-0.1933031,0.2625582,-0.19439714,0.0075804633,0.030373275,-0.48920193,0.0546261,-0.21291488,-0.43091437,0.41367343,-0.006259565,0.25099793,0.1275033,0.01354845,-0.24648994,0.49942556,0.10410605,0.6811656,0.09311078,-0.058856726,-0.5346511,0.08024497,0.067358874,-0.07465851,-0.23199923,-0.377255,0.044107176,-0.5973165,0.4011304,-0.003039509,-0.32766595,0.0032895803,-0.2053095,-0.016434517,0.5331936,-0.0925,-0.122750856,-0.026861038,-0.157538,-0.25218183,-0.24369009,-0.20206429,0.19430926,0.078582555,0.033083856,-0.20214829,-0.07590259,-0.2607598,0.4608614,-0.039015956,0.4274739,0.41627118,-0.048134945,-0.19344044,-0.25486425,0.11982748,0.38155222,-0.19024356,-0.11975444,-0.2579899,-0.5241549,-0.28921852,0.065537974,-0.07371151,0.46402544,0.16678311,-0.12799717,0.7709353,-0.0814358,1.0765901,-0.0059670787,-0.3938409,0.045896333,0.481946,0.028182097,0.07523389,-0.35904095,0.8383024,0.58195853,0.034294207,-0.13923441,-0.32421863,-0.046289004,0.1838792,-0.16445312,-0.08484397,-0.019216113,-0.588315,-0.2769989,0.242453,0.19834144,0.22688071,0.026443118,0.14398827,0.20376097,0.018519463,0.28923878,-0.39991772,-0.20084316,0.24868867,0.28168955,-0.030704807,0.082507625,-0.5322723,0.4793568,-0.3750554,0.03051082,-0.37493026,0.28152147,-0.16829756,-0.30601946,0.2264654,-0.08717983,0.35021332,-0.24217574,-0.27076906,-0.15204452,0.44799128,0.17058145,0.15261017,0.570757,-0.25992194,0.10984944,0.02590347,0.5573916,0.9365172,-0.22814696,-0.0035516818,0.3788628,-0.35148647,-0.5782388,0.24616845,-0.27975428,0.00012212197,0.1637369,-0.178942,-0.4475413,0.28853807,0.15992838,-0.020584345,-0.039637137,-0.47571176,-0.16690446,0.2847617,-0.27941486,-0.19783321,-0.21292101,0.20982952,0.5466768,-0.4138298,-0.37737432,-0.019203926,0.3098393,-0.041814215,-0.47273967,0.0046843886,-0.3244823,0.36585724,0.1529058,-0.3514547,-0.18261383,0.033127658,-0.2679709,0.13308571,0.24723364,-0.3423794,0.12214088,-0.34006804,-0.10154384,0.8124396,-0.123958975,-0.0039459704,-0.60366756,-0.26973626,-0.7304161,-0.376594,0.36050168,-0.028470643,0.006654664,-0.5256073,0.0012006343,-0.060855806,-0.15892357,-0.13944179,-0.38440618,0.4145142,0.07112969,0.46431234,-0.08589358,-0.6525227,0.06871036,0.04721675,-0.31683695,-0.6084433,0.6295541,-0.13840695,0.9053986,-0.035758425,0.074478164,0.3137696,-0.35082817,-0.047339685,-0.27535278,-0.2557747,-0.8845133,-0.07058258,385 -203,0.41594556,-0.13296951,-0.3204371,-0.15966667,-0.21045326,0.07181232,-0.14989659,0.42499512,0.16989331,-0.5347624,-0.1928748,-0.15376158,-0.0029024244,0.17147675,-0.1911599,-0.5196776,0.028058577,0.12482793,-0.3560848,0.53430426,-0.43751496,0.36469948,0.12007679,0.26359957,0.05852061,0.25529876,0.20991677,-0.109229706,-0.1399793,-0.32434005,-0.15136965,0.40868282,-0.5453009,0.2323025,-0.19262467,-0.31170815,-0.037789892,-0.36910588,-0.22316314,-0.71961915,0.09083494,-0.77178496,0.45933005,-0.049483284,-0.34288624,0.3248687,-0.014635078,0.24230008,-0.11425854,0.08979882,0.040911935,-0.21794817,-0.05486485,-0.14238901,-0.21301985,-0.35950738,-0.5046219,0.009033122,-0.4592945,-0.30154693,-0.3640509,0.11397512,-0.38444698,-0.12183733,-0.06987718,0.431091,-0.5405231,-0.055306792,0.14763273,-0.091979265,0.45352978,-0.4666266,-0.1132152,-0.17153336,0.14515145,-0.255562,-0.16060032,0.14172183,0.3501194,0.567052,0.018413862,-0.1314521,-0.3118601,-0.1762657,0.22264251,0.3997847,-0.13641602,-0.42380854,-0.06968624,-0.064902015,0.19613439,0.22762752,0.06632414,-0.14683929,-0.201508,0.08194106,-0.24613978,0.18007837,0.38876355,-0.40969542,-0.38009498,0.29443753,0.58350307,0.037221774,-0.08083737,0.10790315,0.00918089,-0.33942863,-0.15305933,0.14654599,-0.1789239,0.46963614,-0.12929705,0.24249345,0.61375266,-0.17470007,0.076602474,0.0132846115,0.048307776,-0.074672,-0.19493069,-0.15604901,0.2604189,-0.5030337,0.098997094,-0.2638388,0.8034667,-0.024760647,-0.7281082,0.24938484,-0.47779578,0.07399333,0.026740806,0.6150259,0.68428767,0.40655786,0.15723133,0.5413684,-0.39494503,0.027822841,-0.16543573,-0.29350388,-0.062754154,-0.13089362,-0.062464766,-0.4746733,-0.081832774,0.13796622,-0.07199289,0.024946062,0.24195029,-0.61019516,-0.016624684,0.2009244,0.79203606,-0.2832002,-0.04932135,0.774668,0.96134585,0.8649466,0.1144315,1.1461756,0.19425449,-0.13652338,0.0997798,-0.28787735,-0.45655537,0.33130094,0.4223794,-0.020097153,0.1857088,0.060906507,0.05782266,0.30243593,-0.4594631,0.10217301,-0.27956364,0.18391708,-0.05534608,-0.12685356,-0.4522172,-0.19235484,0.013757606,0.16806234,-0.08138911,0.26198906,-0.08408397,0.42134216,0.1061292,1.3180226,-0.08786054,0.17362577,0.114647865,0.32570994,0.15967911,-0.12988463,-0.018579157,0.21586189,0.3513905,0.17838106,-0.5132649,0.028704107,-0.14342676,-0.53492624,-0.18518162,-0.34041464,0.021371333,-0.053849675,-0.37904373,-0.076006666,-0.11384494,-0.42372462,0.42680883,-2.7206962,-0.09987227,-0.18260457,0.24062999,-0.2381669,-0.30739194,-0.06880648,-0.50424933,0.3950995,0.37933084,0.38766858,-0.6187813,0.3260612,0.44059163,-0.39140555,-0.0897368,-0.60665095,-0.109298825,-0.035197236,0.28274238,0.008033577,-0.10710009,-0.120003834,0.094365425,0.53771466,-0.053289067,0.09022608,0.2762057,0.18629424,0.10075995,0.365549,0.071102604,0.36270413,-0.15935706,-0.21445903,0.30761477,-0.34059185,0.1483066,-0.05496488,0.14948587,0.3167091,-0.4796295,-0.7829845,-0.8195981,-0.63004494,1.264008,-0.1783733,-0.4751976,0.31312266,-0.00068225263,-0.32720172,-0.16469221,0.41496876,-0.111683525,0.076289885,-0.7601215,0.024383353,-0.041005395,0.2661079,-0.027094936,-0.020249192,-0.4769167,0.5588715,-0.23328765,0.36237937,0.3645052,0.2211707,-0.17892818,-0.37952435,0.0008263747,1.1910596,0.4951006,0.11108374,-0.25602823,-0.2739064,-0.4019491,0.06551325,0.11936345,0.419048,0.81763685,0.010463031,0.14579882,0.2854602,-0.05150117,0.10030452,-0.20831315,-0.22989419,0.0004622698,0.091909125,0.5980291,0.3055004,-0.095192,0.58019453,-0.08335081,0.28092292,-0.17576183,-0.40829426,0.4282336,0.7862975,-0.13226499,-0.14162056,0.7034384,0.48266417,-0.29657415,0.4531147,-0.506622,-0.3541795,0.43437624,-0.19971961,-0.48018378,0.24630491,-0.32490075,0.17222641,-0.9147377,0.28955778,-0.23704694,-0.7366695,-0.5615462,-0.1618751,-3.380588,0.2537594,-0.020239519,-0.283528,-0.04663224,-0.14858767,0.350235,-0.54632014,-0.43991286,0.09831705,0.09452021,0.6487926,0.01462461,-0.03556273,-0.20060712,-0.3613247,-0.2382292,0.17540468,0.15759334,0.21852382,-0.12669009,-0.36111528,-0.06903078,-0.24645445,-0.38373536,0.0777805,-0.43555743,-0.62589926,-0.16123705,-0.5069151,-0.27669868,0.6498291,-0.3834883,0.0737636,-0.30801657,-0.019252146,-0.0476799,0.3192875,0.22816344,0.17678685,0.058724426,-0.040335394,-0.031580128,-0.32755485,0.26014823,0.122069165,0.15703064,0.41243747,-0.241531,0.31245264,0.5186102,0.473738,-0.017403984,0.856807,0.462115,-0.11866434,0.3508773,-0.32317728,-0.37063166,-0.6335533,-0.28331006,-0.016943391,-0.40248236,-0.45569313,-0.12672347,-0.23375884,-0.7871647,0.56425744,-0.069349386,0.18355693,-0.18656246,0.36658576,0.45399052,-0.16695681,-0.1281498,-0.11859117,-0.10647693,-0.3414603,-0.3016216,-0.710984,-0.4809658,0.004567965,0.99882203,-0.14952059,0.16105199,-0.0038503646,0.010727604,0.005578065,0.16540441,0.059182417,0.13103758,0.39524564,-0.09858761,-0.6094162,0.52160674,-0.014862915,-0.210951,-0.615884,0.0904781,0.68549925,-0.6532345,0.35814926,0.32396486,0.03221885,-0.10914184,-0.5186737,-0.09893311,-0.15643229,-0.2903989,0.36098856,0.15848778,-0.70709676,0.43834648,0.326867,-0.06489787,-0.69594246,0.41335824,-0.09082743,-0.2984223,0.08546508,0.33617082,0.04010666,0.13437177,-0.09045787,0.24634436,-0.3808187,0.28686634,0.3107072,-0.08122079,0.50376934,-0.23320647,-0.15725191,-0.6813475,-0.018338358,-0.519225,-0.2853617,0.097941525,0.17913832,-0.0415516,0.35416985,-0.03739055,0.5224773,-0.22317982,0.15936178,-0.045899443,-0.37200516,0.3009635,0.451762,0.39859912,-0.21896076,0.6751862,0.12822393,-0.12640935,-0.46585166,0.0576279,0.54345876,-0.0034350078,0.332901,-0.1169788,-0.2676206,0.3461065,0.6917357,0.23164259,0.5090379,-0.050575472,-0.012030824,0.30408138,0.08678306,0.07986673,0.011964065,-0.34713528,-0.044429254,-0.17370084,0.007167812,0.3896801,0.13204971,0.35079032,-0.09993304,-0.17357302,0.09882196,0.2307888,-0.01742334,-1.0066311,0.29301637,0.15040436,0.7606051,0.522234,0.05978655,0.040310595,0.55670816,-0.28508195,0.11596243,0.27885067,0.014765684,-0.49296457,0.6678163,-0.7615942,0.42043433,-0.084781185,-0.05024492,-0.016054261,-0.20110632,0.43771157,0.8691046,-0.11954939,0.027749471,-0.107801594,-0.19442698,0.1809129,-0.375341,0.17084293,-0.4496265,-0.28090188,0.6509941,0.47210297,0.39844096,-0.16201058,0.0059764427,0.07078223,-0.09785371,0.28106123,0.020086015,0.18911843,-0.06193797,-0.4891305,-0.22974135,0.498983,0.0005080859,0.06411428,0.06429502,-0.20825809,0.22920719,0.07555238,-0.038754035,0.029857853,-0.47710323,0.09117357,-0.45121643,-0.3338272,0.53133446,-0.31067377,0.26249102,0.102191545,0.08932131,-0.22913978,0.1831698,0.3165588,0.5607781,0.20850913,-0.15487507,-0.21291202,0.31475565,0.13979611,-0.23446044,-0.22412801,-0.18592699,0.04568858,-0.77043027,0.32239476,-0.21595459,-0.35011417,0.25269127,-0.13798553,0.0328324,0.4378482,0.041652255,-0.063623406,0.09362214,-0.22033216,-0.17202047,-0.0765935,-0.14803538,0.32064417,0.0459963,-0.08203794,-0.055430364,0.019994205,-0.091485016,0.3712122,-0.007907578,0.28469747,0.29614592,0.039541133,-0.415908,-0.06910234,0.034356005,0.3551419,0.06116717,0.1074605,-0.092802115,-0.39233997,-0.29355735,0.05577445,-0.17662868,0.33233315,0.053268544,-0.28717214,0.8034899,0.036377057,1.093768,0.05679721,-0.31096166,0.08298907,0.42836374,-0.097456194,-0.049269654,-0.32155052,1.0026821,0.4776229,-0.10603037,-0.16021754,-0.30885032,-0.01943006,0.22057393,-0.17770334,-0.27548236,-0.023185236,-0.761963,-0.2573922,0.20860034,0.2649979,0.099571474,0.0008533875,0.03231249,0.2861625,0.08693342,0.36547843,-0.4237084,-0.041308444,0.34991786,0.18965694,-0.03243132,0.046607964,-0.27778044,0.36710218,-0.6321786,0.01272641,-0.217658,0.08904905,-0.18278423,-0.35784185,0.18963096,0.092151746,0.30071816,-0.2087845,-0.41260117,-0.2641651,0.47520238,0.057420537,0.050246514,0.5395533,-0.24919994,0.15947656,-0.05703367,0.31877652,1.1318599,-0.12892571,-0.0813045,0.34442836,-0.3486254,-0.5570252,0.32082474,-0.44424364,0.21441337,-0.056202713,-0.37077323,-0.30745703,0.20200929,0.2663443,-0.048860736,0.10852325,-0.3434522,-0.07684005,0.1512335,-0.33388776,-0.21318905,-0.28469548,0.22343321,0.5887238,-0.3044287,-0.33400232,-0.029178618,0.22739644,-0.32293513,-0.53349847,-0.04959051,-0.111223124,0.29606083,0.09413422,-0.408918,0.1016867,0.08880569,-0.4004571,-0.13479067,0.2328782,-0.3447086,0.057078432,-0.37293705,0.07376787,0.81725335,-0.09197722,0.07960473,-0.52012926,-0.49018842,-0.7254082,-0.3247945,0.58375794,0.15998732,0.066846676,-0.4860592,0.106400646,-0.16711618,0.10260216,0.0043105492,-0.29812476,0.40877002,0.252035,0.40090057,-0.08472548,-0.7013746,0.14990835,0.066073306,0.010788933,-0.48629397,0.51005775,-0.08191409,0.63419133,0.11994402,0.052109934,0.27426043,-0.59945625,-0.09322729,-0.15632442,-0.13789517,-0.6341201,-0.0038097014,386 -204,0.35654536,-0.06485928,-0.79066414,-0.24005254,-0.03192277,0.0068301996,-0.10762326,0.40373623,0.28261402,-0.37000865,-0.014143586,0.25455797,-0.1955057,0.19364204,-0.15205055,-0.5562205,-0.016255863,0.020319592,-0.4939443,0.2800484,-0.4542789,0.19197692,-0.36648914,0.15560462,0.017358892,0.31025225,0.119111136,0.017184956,-0.11447981,0.036240306,0.24912484,0.25591853,-0.29986826,0.13620727,-0.1037495,-0.27013585,-0.14120045,-0.2264608,-0.4321452,-0.6362518,0.33164713,-0.6514152,0.4792793,-0.020872306,-0.2757368,0.41850278,0.118571214,0.13133475,-0.27897078,-0.07325692,0.24924894,-0.15776567,-0.1610412,-0.15685193,-0.2795786,-0.30310652,-0.5519689,-0.10811882,-0.5590034,-0.11889874,-0.14736047,0.15456559,-0.3641589,0.021264255,-0.3611232,0.5286515,-0.52890193,-0.18603091,0.20758416,-0.033546567,0.08469191,-0.66073775,-0.080345966,-0.07069322,0.0053219595,0.006303382,-0.11822862,0.2542449,0.06175859,0.42445576,-0.0658857,-0.14743844,-0.32705295,-0.20575644,0.2379951,0.27464485,-0.25436392,-0.22150977,-0.15809578,-0.0992023,0.27739677,-0.00032283267,-0.073437005,-0.2689109,0.0021933685,0.23600957,-0.1237737,0.41284835,0.57362497,-0.2313039,-0.09698777,0.40263417,0.68277234,0.06828005,-0.25281325,0.12334437,-0.13373287,-0.3074704,-0.24350366,0.07326892,-0.21698043,0.389946,-0.10114867,0.19645172,0.6331216,-0.17953545,-0.0547205,0.11456875,0.14737056,0.22032684,-0.25472218,-0.3639085,0.19824977,-0.3800978,0.17522596,-0.13151953,0.6420747,-0.050192676,-0.7853769,0.44689572,-0.33340162,0.008360745,-0.07828962,0.72743404,0.724342,0.431129,0.14297317,0.78837204,-0.51190484,0.087683804,0.055788763,-0.22137363,-0.05614723,-0.04734243,-0.15706037,-0.54396343,-0.102177285,0.0173433,-0.10789063,0.1667208,0.3555483,-0.37892446,-0.15335235,0.079881154,0.6630243,-0.37116736,-0.040196847,0.48892447,1.1252505,0.89578474,0.091344036,0.8080483,0.16569962,-0.19317141,0.023408405,-0.30829743,-0.78289723,0.30707577,0.26409185,0.029495923,0.28373823,0.10249522,0.028751219,0.39541048,-0.55840796,0.047986843,-0.16418737,0.36501116,0.029731035,-0.11241283,-0.3502126,-0.055093877,0.17421891,0.08670616,0.12204352,0.29702628,-0.32999766,0.14272544,0.1584669,1.104968,-0.14065188,0.018727712,0.2779332,0.526079,0.07536084,-0.25737748,-0.05876417,0.31405878,0.4600363,-0.14820108,-0.5984357,0.25010398,-0.1697914,-0.4514805,-0.25263315,-0.40436277,-0.05760888,-0.10615087,-0.2828437,-0.1094142,-0.07346424,-0.5927362,0.37556204,-2.5495882,-0.065560766,-0.20330374,0.32412216,-0.015666785,-0.15871711,-0.26850036,-0.4874224,0.25980428,0.32757363,0.3060938,-0.47986826,0.56782085,0.5371757,-0.5121965,0.082488336,-0.4576398,-0.019639753,-0.112848714,0.34911206,0.19624542,-0.022977514,0.070907906,0.3534614,0.49961954,-0.110035524,0.054447673,0.33860728,0.3043499,-0.10199913,0.32615843,0.04778398,0.51398563,-0.38720262,-0.14649798,0.32305688,-0.555034,0.051208623,-0.18415686,0.14977542,0.33715513,-0.3658067,-0.86866117,-0.46163902,-0.0111804325,1.4679056,-0.26569945,-0.42675573,0.3609171,-0.29484412,-0.3907291,-0.12677905,0.3404576,-0.1645243,-0.14066973,-0.80297256,0.069822975,-0.12075526,0.24799529,-0.06703396,0.07513857,-0.3319198,0.53234416,-0.15169829,0.7392737,0.2726874,0.2205589,-0.3407033,-0.3214214,0.025396006,0.78103215,0.42646745,0.03336924,-0.07396185,-0.06781671,-0.13317028,-0.10815818,0.18553811,0.49485716,0.7595943,0.05311857,0.03751523,0.23452981,-0.1087372,-0.019904347,-0.35685176,-0.248958,-0.14027418,0.21820864,0.507345,0.42715168,-0.14374685,0.16946366,-0.008207824,0.21191563,-0.27652475,-0.44482958,0.35206816,0.781415,-0.0970429,-0.3789228,0.5133398,0.4667641,-0.39188626,0.3829382,-0.7040061,-0.25142255,0.4665607,-0.22412848,-0.42552254,0.0024053256,-0.36402088,0.2791403,-0.71120346,0.372495,-0.3437961,-0.8526997,-0.4849084,-0.34093362,-2.44799,0.14377281,-0.25948018,-0.11369816,-0.021155033,-0.066524476,0.14746903,-0.51306695,-0.58135605,0.12742938,0.19748738,0.5853819,-0.026007008,-0.007103904,-0.20205253,-0.12755357,-0.16166073,0.25112826,0.047486283,0.28351125,-0.019011267,-0.43620098,0.0001654605,-0.07212099,-0.42626226,-0.1632208,-0.23559631,-0.32344255,-0.049897347,-0.45553645,-0.22602695,0.5349122,-0.27343467,0.0026611488,-0.2563918,0.062988825,0.0029175798,0.33413804,0.08110854,0.22129145,0.032763492,-0.16352002,0.09927165,-0.25924695,0.30856097,-0.06713942,0.4126581,0.5070637,-0.080785625,-0.06669752,0.7055215,0.54295784,0.16621895,0.9111015,0.3760416,-0.21323632,0.3281379,-0.15652773,-0.20450355,-0.5701017,-0.40064317,0.13800049,-0.34577492,-0.40127477,-0.030146532,-0.41304067,-0.9593108,0.31613114,-0.07542172,0.28798333,-0.06984527,0.31909055,0.4322424,0.041221175,0.02605377,-0.023448769,-0.15242004,-0.36391097,-0.27976283,-0.7796369,-0.3704755,-0.0027529956,1.2392342,-0.14605917,-0.057282034,-0.042184167,-0.15761699,0.14412193,0.2426105,0.19960366,0.2904901,0.3081328,-0.11941867,-0.4737256,0.22915031,-0.25384828,-0.078994796,-0.63622224,-0.03900421,0.62941843,-0.5007466,0.45235482,0.40868053,0.07196616,-0.19325706,-0.6938908,-0.09207222,-0.008836524,-0.17786957,0.52860236,0.14204028,-0.6888047,0.60311955,0.27335185,-0.1880634,-0.6194602,0.48955613,-0.13240685,-0.0846638,0.09592676,0.42170507,-0.15714502,-0.089614496,-0.27294922,0.21142563,-0.22538862,0.3072034,0.36206248,-0.08620939,0.32256016,-0.2415149,-0.14577015,-0.6630056,-0.14727716,-0.6762722,-0.15085353,0.1317394,-0.07887956,0.2425084,0.15969951,-0.19003071,0.5043309,-0.2950819,0.14619112,-0.121946484,-0.4580991,0.47812334,0.4965921,0.3117882,-0.17400303,0.596494,0.047615774,-0.13190705,-0.13583554,0.11019419,0.5366415,0.0665616,0.53561693,0.14648075,-0.09409812,0.33941734,0.878957,0.28762487,0.32622772,0.10828933,-0.27122015,0.17096946,0.014724095,0.16084167,-0.14947525,-0.3228435,-0.13709687,-0.04483781,0.29570764,0.25331157,0.10191258,0.45014015,-0.18336889,-0.18811907,0.08541216,0.22792539,-0.09795781,-1.0987631,0.35469052,0.10604923,0.6184019,0.32893407,0.10727375,-0.0851017,0.37910905,-0.17109908,0.18316112,0.2669753,0.058287546,-0.53206575,0.42776924,-0.5147961,0.53069764,-0.058573026,0.0401901,0.15296602,0.15668508,0.37268314,0.78733754,0.028784977,0.03353297,0.07850961,-0.2825406,0.31422532,-0.3203345,0.12479255,-0.46056375,-0.34777364,0.67376465,0.40335366,0.5122153,-0.08406736,-0.08435019,0.14564626,-0.13927175,0.24227594,-0.11649641,0.150374,-0.16146322,-0.6235944,-0.24068548,0.25221747,0.13491756,-0.02954427,0.04334496,-0.07812178,0.22145271,0.062190574,0.09872319,-0.04860317,-0.326369,0.026984401,-0.12259365,-0.5366033,0.2502333,-0.3315408,0.31421328,0.21532795,-0.018319169,-0.508191,0.12340274,0.16181454,0.5487149,-0.10958148,-0.17751502,-0.3838929,0.15160613,0.20899653,-0.17660576,0.057595145,-0.23486954,0.27356234,-0.7285912,0.49513647,-0.25675926,-0.30629954,0.22505818,-0.361095,0.024470834,0.57377994,-0.27502435,-0.27977422,0.0025709548,-0.119748406,-0.26519403,-0.25420746,-0.21142486,0.19841416,-0.26804808,-0.03826856,-0.14278106,-0.13112207,0.012443272,0.20842642,0.08164889,0.14476416,0.53176665,0.05202539,-0.5366374,-0.06769434,0.07844628,0.5171248,0.07114525,-0.09065304,-0.43364003,-0.50066423,-0.22621065,0.2490708,-0.114937395,0.36075222,0.16026513,-0.26980987,0.5405004,-0.12522195,0.95858425,0.14771791,-0.19011027,-0.05209761,0.5576604,0.16702352,-0.0684076,-0.09943358,0.6680057,0.62241113,-0.17385949,-0.21977429,-0.42765045,-0.02009002,0.08914534,-0.121755034,-0.2342353,0.020872243,-0.8085484,-0.16552404,0.29929227,0.1772839,0.0755871,-0.139615,0.13667414,0.16356733,0.0626228,0.22235754,-0.56598735,0.064098924,0.32492265,-0.002779166,0.029371109,0.01683733,-0.603898,0.18066235,-0.6205184,-0.034859236,0.096936375,0.010495835,-0.13067235,-0.22273202,0.19401623,0.09066629,0.21075375,-0.2921655,-0.22352795,-0.16365926,0.40496242,0.056588393,0.15793559,0.542236,-0.159045,0.16228113,0.17757194,0.46663603,1.0053177,0.017312765,0.067812555,0.26812407,-0.3529562,-0.74936575,0.11388652,-0.36649868,0.1663513,-0.12202971,-0.26124477,-0.5581609,0.35150903,0.19351088,-0.22598241,0.2679566,-0.54378206,-0.26210248,0.013831405,-0.31420806,-0.1348815,-0.32532135,-0.019504141,0.5656443,-0.37555832,-0.15419106,-0.07334766,0.41081354,-0.19176833,-0.5071817,0.096911795,-0.21753031,0.43097144,-0.0022945127,-0.30351028,-0.093182966,-0.05202907,-0.36096635,0.33194435,0.3507403,-0.25656736,0.021001266,-0.1750709,0.07549168,0.34599802,-0.061367907,-0.02344757,-0.28406557,-0.41441518,-0.9104944,-0.19912206,0.10724071,0.23974515,-0.19285719,-0.5783851,0.11655159,-0.08121009,0.14093709,-0.080751576,-0.41726094,0.5203275,0.020072717,0.28028256,-0.12439458,-0.7827395,-0.02287558,0.130272,-0.22086248,-0.25806746,0.58485,-0.1707608,0.7590119,-0.021068934,0.06773131,0.057690404,-0.52755105,0.33161354,-0.29700717,-0.22912888,-0.4721168,-0.041097745,388 -205,0.32289988,-0.12556121,-0.48344436,-0.11919715,-0.11715784,-0.08486343,-0.4242592,0.14449307,0.2505355,-0.30338013,-0.11079133,0.023541806,-0.0020101864,0.22054072,-0.10577072,-0.6733065,-0.112110995,-0.023905175,-0.7602676,0.5606467,-0.54654396,0.24910611,0.062316693,0.3207857,0.06717905,0.5324941,0.112100884,-0.13172476,-0.13685115,-0.1410263,0.010297598,0.27484253,-0.5515819,0.012209479,-0.18284117,-0.1763931,0.062085018,-0.36090603,-0.2655162,-0.75526524,0.08867852,-0.9442189,0.43981764,0.011575496,-0.10340985,-0.040658545,0.22838868,0.39060268,-0.3013912,0.07778315,0.08500417,-0.19378385,-0.23447946,-0.3554938,-0.07810337,-0.16566086,-0.43981287,0.051488977,-0.59117633,-0.29309127,-0.14164788,0.14202935,-0.32926,0.04010922,-0.20587334,0.40893134,-0.42210358,0.019008867,0.3675178,-0.14514272,0.23274466,-0.5337202,0.03723212,-0.069826715,0.5414139,-0.099285655,-0.12992273,0.26613972,0.27987128,0.48357543,0.23816255,-0.2086524,-0.22046873,-0.301128,0.34136003,0.35937673,-0.21453683,-0.2323306,-0.27157295,0.11242792,0.23451686,0.49970284,-0.077318385,-0.17042087,-0.03298696,-0.13859606,-0.12369546,0.44639847,0.5807483,-0.22999433,-0.3919515,0.24009782,0.68195546,0.31500596,-0.244198,-0.01772201,0.048276164,-0.45938635,-0.12351279,0.32082495,0.009003683,0.40293592,-0.1424763,0.057734456,0.7550017,-0.18741319,0.012331589,-0.12260855,-0.07907527,0.0055565196,-0.31058857,-0.15849301,0.19102041,-0.54208004,0.12314439,-0.22663012,0.55748993,0.10311618,-0.7048971,0.35460594,-0.5168836,0.17499687,0.02885836,0.72794735,0.7308481,0.34635967,0.40444103,0.6656733,-0.317221,0.20692724,-0.096758924,-0.37711114,-0.12018802,-0.14024504,0.120229684,-0.42325813,0.06108885,-0.19245267,0.057340417,0.04163103,0.20804933,-0.43722153,-0.01989568,0.21414515,0.6765331,-0.3302748,0.035389718,0.8461638,1.1073711,0.9466475,0.12147677,1.2232056,0.30547932,-0.22943231,0.036074936,-0.36523214,-0.7011231,0.1664731,0.31919473,0.26735938,0.25934255,-0.089045666,-0.0010880192,0.37667206,-0.54744774,0.05377047,-0.07165535,0.30143464,0.028173586,0.043208305,-0.5244595,-0.09093909,-0.053084966,-0.044784658,0.16464636,0.21791936,-0.018571654,0.42313534,-0.060012903,0.9447385,-0.15059566,0.1018786,0.22346057,0.43540427,0.20311442,-0.1835912,-0.084886186,0.4439258,0.39981282,-0.05871659,-0.6531688,0.14383316,-0.3322234,-0.2598708,-0.17682497,-0.40365335,0.03516126,0.10336068,-0.31931478,-0.12364454,-0.110476874,-0.25252277,0.34179935,-2.7989824,-0.1946859,-0.23515701,0.20178786,-0.31940612,-0.1679629,-0.1525794,-0.5155411,0.4029148,0.17428258,0.48404628,-0.5674068,0.48868167,0.45342407,-0.5540076,0.019100396,-0.72849935,-0.13040547,-0.09093905,0.47151688,-0.018886916,-0.031112226,-0.1354502,0.13358736,0.63980037,0.055194657,0.05464629,0.45551482,0.31238785,0.17081235,0.46462905,0.0020288667,0.5289667,-0.3166008,-0.2336015,0.36986867,-0.2748136,0.32084653,-0.18577024,0.15030378,0.5313833,-0.5444544,-0.82455766,-0.5454742,-0.5246635,1.225129,-0.3184901,-0.5559122,0.14050029,-0.18253721,-0.22283313,-0.011767631,0.54588765,-0.10895642,0.13178048,-0.7896651,0.12749575,-0.11822731,0.30593714,0.08252669,0.024275996,-0.35245085,0.5813529,-0.114818364,0.41926658,0.33019102,0.26208577,-0.13125362,-0.3983381,0.08233533,0.8832144,0.35205323,-0.030098354,-0.19524717,-0.33421904,-0.077033244,-0.26874813,0.0019432565,0.537551,0.75444204,-0.045125745,0.07624658,0.2610774,-0.08720069,0.13654779,-0.020376006,-0.22157662,-0.12310359,-0.0154864015,0.6143909,0.696471,-0.034794427,0.4128777,-0.1311995,0.31771263,-0.05693585,-0.4101854,0.68015504,0.46425977,-0.086079165,-0.19148375,0.672008,0.5371048,-0.46749237,0.4489515,-0.4652755,-0.11945235,0.5022027,-0.23986268,-0.48624197,0.2842771,-0.24542652,0.27034754,-0.88122445,0.28738865,-0.44311973,-0.3548148,-0.47829455,-0.01795601,-3.2186513,0.16553338,-0.21892601,-0.15247947,-0.28621334,-0.15384929,0.31291255,-0.45182547,-0.5660854,0.20017727,0.16773704,0.5845645,-0.11941109,0.020197034,-0.2018253,-0.18897404,-0.13902506,0.18120496,0.317282,0.304032,-0.20746405,-0.29760855,-0.016170789,0.0022043309,-0.37450403,0.13841693,-0.47230327,-0.42186794,-0.06550275,-0.5272404,-0.19967261,0.5783599,-0.3712173,0.01376735,-0.3215226,0.018702531,-0.19640532,0.22466844,0.27407932,0.47612536,0.19883302,-0.062380888,-0.019768571,-0.25680593,0.3761764,-0.0014948408,0.21529607,0.09362879,-0.010684959,0.24966905,0.2745543,0.64936715,-0.1701618,0.9820579,0.4985953,-0.13436407,0.17314707,-0.3607196,-0.29689848,-0.68817294,-0.29540852,-0.03159486,-0.37987489,-0.56478614,-0.08106141,-0.3399936,-0.790081,0.6393069,-0.025069462,0.3144722,-0.1177526,0.3445406,0.4137993,-0.12865312,-0.0021276711,-0.04260877,-0.13478637,-0.4588346,-0.19798318,-0.619697,-0.4700731,-0.041714672,0.62215483,-0.29729757,0.07509737,-0.10324917,-0.27160233,-0.10577025,0.17309189,0.14998421,0.35442343,0.4791754,0.1374913,-0.46532765,0.3785644,-0.012131163,-0.24264516,-0.67175126,0.11761902,0.7477786,-0.73682314,0.78011954,0.406704,-0.01800735,-0.07486208,-0.534199,-0.16362606,0.04512578,-0.2022855,0.45246804,0.19116965,-0.7649018,0.50504136,0.267278,-0.12509176,-0.74924093,0.39784303,0.027885545,-0.33958894,0.1047818,0.4024351,-0.10163123,-0.09568003,-0.18850523,0.17044643,-0.19415388,0.19054943,0.27469096,-0.15568878,0.31912068,-0.20035791,-0.389135,-0.67545664,0.057699773,-0.7301901,-0.13217872,0.42881697,-0.12581255,-0.028526342,0.08685548,0.10893535,0.41548756,-0.25002614,0.14017421,-0.06660469,-0.28677115,0.1851959,0.4513137,0.32729998,-0.38498262,0.60093063,0.24153452,-0.22732183,-0.031878915,0.18910232,0.5156273,-0.1651149,0.32079333,-0.12598167,-0.2651936,0.22091939,0.71513075,0.1342248,0.5272569,0.16787186,0.04734111,0.5429667,0.0706438,0.08054426,-0.12637119,-0.29912692,-0.026359256,0.040545084,0.1516977,0.38261938,0.30668148,0.36253154,-0.0027421354,-0.12987109,-0.097042,0.29983345,0.095158,-0.91410655,0.4558689,0.15568884,0.7267185,0.47475556,0.22833906,-0.22797646,0.63685673,-0.37397403,0.02464271,0.36922082,-0.07871953,-0.4631033,0.6951857,-0.5906766,0.42812806,-0.110205695,-0.042754356,0.115555845,0.07759144,0.36829293,0.80464005,-0.15408619,0.01818697,-0.13487272,-0.14134507,0.048762646,-0.35030535,-0.011246097,-0.18219924,-0.4298683,0.7238567,0.3022003,0.38744393,-0.18410078,-0.03821036,0.14832702,-0.16435018,0.2079129,-0.060707606,0.103676386,0.090222575,-0.46204826,-0.29996333,0.42064494,-0.0062516807,0.13400032,-0.12460505,-0.11945703,0.13770384,-0.12207987,-0.05200994,-0.032260813,-0.63707936,0.027218413,-0.29358834,-0.6167406,0.3083315,-0.3589709,0.10135272,0.20132115,0.025195079,-0.3178264,0.3314442,-0.030283865,0.7789776,0.054236572,-0.32414237,-0.25282428,0.033467844,0.32536,-0.26341054,0.08613958,-0.32239813,0.17467724,-0.6517953,0.5938518,-0.21813798,-0.4853081,0.08213628,-0.18862757,-0.10456476,0.55857795,-0.123998694,-0.17996383,0.12696384,-0.2670972,-0.49364802,-0.21229444,-0.21109088,0.18126336,0.38120988,0.03774694,-0.12768625,-0.28885585,-0.24753179,0.49278605,0.08947592,0.4644786,0.24317935,0.06788887,-0.20182504,0.11174633,0.33072913,0.3619369,0.072167605,-0.0011300087,-0.2962265,-0.52678496,-0.3303055,0.27079198,-0.0037584554,0.26258242,0.011563527,-0.21168108,0.8106173,-0.024414547,0.92327946,0.17645113,-0.327793,0.009324964,0.34843355,-0.17269519,0.0038964867,-0.29656747,0.8914797,0.6057797,-0.08651365,0.0034040094,-0.46959826,-0.072824515,0.082483195,-0.30531093,0.037844278,-0.032225892,-0.46036485,-0.29868758,0.24408573,0.23389739,0.16025697,-0.06087373,0.00055422384,-0.025972996,0.11986867,0.36743417,-0.7295486,-0.2430356,0.28250778,0.11846664,-0.08311354,0.19839059,-0.23100866,0.4589569,-0.63762325,0.1191809,-0.46539778,0.014714847,-0.021529967,-0.39816633,0.07651887,-0.1699853,0.36842838,-0.39803204,-0.37223947,-0.2195271,0.37200016,0.09049301,0.09995777,0.5884149,-0.20988682,0.15166728,0.24945377,0.5895698,1.1470497,-0.30985337,0.07007038,0.03240854,-0.17325017,-0.54779506,0.33266327,-0.49670753,0.08497702,-0.12145608,-0.39659792,-0.38438243,0.12322755,0.22312044,0.03727257,0.08021391,-0.50424105,-0.20361201,0.1568479,-0.25835094,-0.20721497,-0.18037295,0.26126713,0.68116534,-0.27892083,-0.28032127,0.0025363048,0.041425202,-0.32486945,-0.4004437,-0.07203179,-0.14830494,0.17154773,0.17651722,-0.3677761,-0.013455932,0.16334276,-0.5031246,-0.016127756,0.2722553,-0.2854442,-0.032764602,-0.15779853,-0.08775063,0.7705401,-0.42295468,-0.0014336269,-0.5743977,-0.5135069,-0.8780824,-0.37006032,0.28644735,0.06496947,0.17744279,-0.5095765,0.115443006,-0.19301656,0.048057437,0.25293967,-0.5941917,0.40641546,0.1613488,0.5066873,-0.30793694,-0.7735414,0.14205606,0.031849388,-0.17928578,-0.59080505,0.5840673,0.020544019,0.77427846,0.03486492,-0.12121141,0.055467412,-0.57716674,0.033782475,-0.33472964,-0.15504365,-0.88824826,-0.06047653,396 -206,0.52976876,-0.19649707,-0.459397,-0.045846265,-0.14595553,0.08074615,-0.19763584,0.47854295,0.18107596,-0.50196755,-0.19615676,-0.18836541,0.015833903,0.26128194,-0.2551295,-0.41051203,0.003817306,0.1657492,-0.4311748,0.62703425,-0.29861277,0.31165218,0.12815657,0.3921833,0.10796503,0.20346005,0.254619,-0.17381702,-0.17309867,-0.19300574,0.038965877,0.13346389,-0.58020204,0.17898442,-0.19074275,-0.35569525,0.03574149,-0.5303557,-0.39881754,-0.8250395,0.316938,-0.8267587,0.5158011,0.050736766,-0.33456382,0.22092326,0.093644574,0.22113724,-0.2049511,0.041582294,0.11884538,-0.024821432,-0.062200543,-0.13865168,-0.08225188,-0.20289294,-0.62096953,0.08328467,-0.3441343,-0.07002498,-0.33675286,0.11970064,-0.31299785,0.017224608,0.018995518,0.5642557,-0.45350105,0.08287273,0.07088461,-0.10062255,0.3602328,-0.5631781,-0.23644494,-0.06953239,0.2513217,-0.2221728,-0.17088011,0.24544828,0.24692623,0.5868855,-0.048833895,-0.09304547,-0.31664938,-0.038832687,0.1575183,0.5762023,-0.2170235,-0.5664686,0.046721254,-0.052815013,0.4010418,0.10276245,0.12102404,-0.33338442,-0.22126958,0.018878842,-0.2071098,0.286158,0.5629765,-0.29739103,-0.186925,0.3831445,0.48709956,0.090192094,-0.097185835,0.15776081,0.0022884437,-0.47023678,-0.17601998,0.052686416,-0.26028463,0.5264108,-0.10849902,0.35368773,0.5668123,-0.16457245,0.07013211,0.20717007,0.012338259,-0.15996285,-0.07523842,-0.3302695,0.14172271,-0.41937378,0.04044692,-0.17344595,0.83374393,0.16225317,-0.9803196,0.37718323,-0.41006973,0.13949206,-0.03186388,0.47110024,0.6371505,0.41317847,0.40924576,0.7237383,-0.5559218,0.035275765,-0.046956223,-0.32237238,-0.04026491,-0.12135164,-0.112623654,-0.50292075,-0.08789406,0.01230946,-0.21421584,0.12948318,0.3536705,-0.42972645,-0.024546228,0.06498469,0.8353911,-0.26450244,-0.004617548,0.7411902,1.0351918,1.0210091,0.11152507,1.1204245,0.104216725,-0.24526592,0.16196747,-0.22699696,-0.7392753,0.29001638,0.51707727,0.051249392,0.25454962,0.10956114,0.048371196,0.33962637,-0.4906594,0.11190781,-0.11657758,0.122286476,0.098978326,-0.12354017,-0.39192504,-0.25533408,-0.053929795,0.021068012,-0.06550304,0.1964943,-0.22780101,0.33973208,0.05577987,1.7597317,-0.058957685,0.055406317,0.11130783,0.5210611,0.16092794,-0.17196724,-0.08299808,0.19627616,0.23581554,0.06922005,-0.62505645,0.056230154,-0.13386443,-0.50964314,-0.1563974,-0.2804204,-0.058890525,-0.041174445,-0.4709925,-0.15605387,-0.20066194,-0.44400266,0.39822063,-2.714137,-0.1010317,-0.019903159,0.27347293,-0.28863952,-0.43236813,-0.08660402,-0.5236126,0.41088834,0.38846162,0.46276578,-0.7969884,0.24357125,0.38704026,-0.4598357,-0.08413753,-0.68877304,-0.20550285,-0.042368047,0.3480469,0.093968645,-0.123430364,0.014748935,0.28953037,0.426025,0.025121678,0.1079447,0.26954764,0.34184977,0.12346509,0.40308458,-0.104058504,0.37234756,-0.1444905,-0.1590252,0.46984187,-0.36897284,0.11777903,-0.18489258,0.17439477,0.29624787,-0.5222559,-0.8756341,-0.745681,-0.16858646,1.2020452,-0.0984571,-0.49138483,0.31324038,-0.20647262,-0.19016454,-0.09701999,0.48238316,-0.15355946,-0.059741892,-0.97113776,-0.059318606,-0.083751366,0.25131702,0.09790778,-0.028114738,-0.46488246,0.6234446,-0.04074482,0.523576,0.4142213,0.111068584,-0.16001572,-0.4197567,0.15995486,1.0612293,0.45738122,0.17639078,-0.22751443,-0.08683122,-0.4285287,-0.10339907,0.06333045,0.45450085,0.7207436,-0.029615736,0.06952303,0.22044028,0.024242532,0.07620443,-0.18142296,-0.29345942,-0.090416685,-0.02379055,0.5983091,0.6279678,-0.18040743,0.32554835,-0.09062519,0.09370062,-0.13756332,-0.39343926,0.68801016,0.84263235,-0.08283229,-0.25138462,0.4952221,0.4620808,-0.20633288,0.4500609,-0.64669687,-0.30537316,0.38662001,-0.13578863,-0.4011576,0.31996462,-0.37327746,0.21919979,-0.84545344,0.33729467,-0.31511128,-0.33160096,-0.43405816,-0.10376431,-3.0694964,0.12836502,-0.07821267,-0.25593868,-0.06776477,-0.15722667,0.15538135,-0.49727723,-0.6140104,0.12073799,0.09683609,0.669738,0.009795813,0.14046334,-0.095278345,-0.30593827,-0.43631747,0.04109179,0.04949951,0.36537328,0.1061863,-0.4721186,-0.16807511,-0.2522529,-0.360742,0.09600319,-0.4314043,-0.57210785,-0.18943828,-0.38533047,-0.35718054,0.54443747,-0.3706979,0.037376884,-0.19925527,-0.14827545,-0.22397973,0.39196032,0.11678008,0.030658606,-0.065835305,-0.05842892,0.033928044,-0.21451534,0.3118154,0.07813521,0.19600753,0.41876754,-0.20161152,0.24987835,0.5672712,0.6578522,-0.22329578,0.8022957,0.52267563,-0.07836791,0.24866231,-0.31463856,-0.33842298,-0.50623995,-0.24754842,-0.06642525,-0.40269655,-0.3253304,0.00819056,-0.40059254,-0.8032158,0.373656,-0.022434182,0.068140015,0.04954777,0.18776347,0.42075577,-0.12986878,-0.048026,-0.08746711,-0.19876143,-0.6499544,-0.35014597,-0.6945582,-0.39682716,0.07278232,0.97599906,-0.06638887,-0.07113098,0.09892905,-0.0669453,0.026385916,-0.026687698,-0.03772882,0.12577382,0.34917113,-0.009753371,-0.80714345,0.47335443,0.0109597575,-0.1817166,-0.50942767,0.10544138,0.4438599,-0.48455924,0.44576743,0.33274314,0.062810004,-0.015225093,-0.51460737,-0.1406071,-0.070317626,-0.16913743,0.38620594,0.21078709,-0.6911382,0.43692234,0.34473047,-0.14898206,-0.7160356,0.4117562,0.061325047,-0.27992913,-0.010981506,0.22673517,-0.058509476,0.08970035,-0.31244355,0.14259343,-0.5092652,0.4437637,0.24100211,-0.028495006,0.34164056,-0.24841285,-0.17975898,-0.6952287,-0.0946593,-0.544315,-0.28454092,0.09055993,0.24761786,0.046144985,0.0978313,0.10386734,0.44020203,-0.3371954,0.0965164,-0.081090145,-0.1377026,0.3371352,0.5016348,0.5574576,-0.35233447,0.5651195,0.011285651,-0.15325163,-0.22429675,0.11749674,0.40420702,0.17849824,0.10275779,0.033690277,-0.1817531,0.32187182,0.6952573,0.26463315,0.39475575,0.046081662,-0.25579172,0.34565926,0.099002674,0.21679632,-0.014192323,-0.5084172,0.018886006,-0.2960478,0.010797769,0.47744498,0.081200056,0.25253052,-0.11183665,-0.40636304,0.065674044,0.27354875,-0.13559261,-1.239652,0.31242904,0.09150105,0.7342079,0.700126,-0.16967802,0.17612417,0.79664266,-0.18753843,0.12231662,0.28794548,-0.022314962,-0.5386069,0.536116,-0.6807179,0.39440468,-0.038445108,0.039326645,0.044280298,-0.051341772,0.26381642,0.68059593,-0.015994826,0.1436225,-0.07294185,-0.22313994,0.0343608,-0.44437835,-0.029772973,-0.53068155,-0.17466873,0.7435346,0.40093428,0.32724002,-0.06361163,0.10527982,-0.0028393387,-0.062214017,0.15983225,0.103466555,0.092944145,-0.113754176,-0.69463736,-0.14446431,0.5504243,-0.0017282963,0.21219444,-0.021490533,-0.23591436,0.21167523,-0.20125748,-0.18832156,-0.08534415,-0.6555719,-0.09626627,-0.27428487,-0.2276695,0.50991696,-0.081188746,0.33923957,0.22958294,0.07588094,-0.2299296,0.17822023,0.27221808,0.602793,0.062695175,-0.11902766,-0.26993656,0.20371667,0.18230054,-0.17588903,-0.10522876,-0.113890775,-0.037732646,-0.5567686,0.38648835,0.03546167,-0.25897458,0.29242313,-0.10173321,0.061302237,0.68790764,-0.21264677,-0.13707842,0.04239161,-0.14300379,-0.15831779,-0.16258499,-0.18837173,0.30702743,0.2308979,-0.1232251,-0.026336042,0.013983035,-0.047955815,0.3827091,-0.0059030154,0.41495952,0.23393577,0.07498367,-0.47556442,-0.042323176,0.07339377,0.4729184,0.11628286,-0.0051728827,-0.3101577,-0.4415921,-0.34023672,0.03276826,-0.12982677,0.18511719,0.16761617,-0.21998765,0.7898578,0.19484912,1.0272759,0.050640773,-0.25460297,0.091832526,0.3999557,-0.05120166,0.0022180458,-0.3268608,0.8774847,0.5471751,-0.056995478,-0.100536965,-0.2636318,0.012541489,0.11494686,-0.16228692,-0.07273841,0.06710081,-0.6751119,-0.32562053,0.23404716,0.32529926,0.08754481,-0.12362529,0.011551324,0.1159351,-0.008235367,0.2986809,-0.39006907,-0.11096891,0.3756072,0.23282649,0.051237073,-0.07829022,-0.56823164,0.41199923,-0.58806485,-0.11100997,-0.2201319,0.17248051,-0.15743509,-0.35018736,0.24832286,0.1756636,0.39488247,-0.35827672,-0.39790204,-0.29220816,0.5123152,0.038567614,0.15068217,0.4047624,-0.25702164,0.1349316,0.03452134,0.4648,1.0939878,-0.22846317,0.13905926,0.4324016,-0.33303705,-0.5119873,0.2837119,-0.24949278,0.13193773,-0.06296237,-0.18424413,-0.6685308,0.122742586,0.26767066,0.078562655,0.016048301,-0.62082887,-0.40638226,0.34489354,-0.39270642,-0.25227723,-0.34502062,-0.11856289,0.608547,-0.38185367,-0.34096402,0.12999313,0.32056728,-0.15552655,-0.5247568,-0.10869319,-0.29761487,0.2579649,0.18569562,-0.28515682,-0.23526448,0.23003823,-0.37560174,0.02784777,0.1267394,-0.3641159,0.08791385,-0.52100956,0.0359743,0.9303596,-0.15780789,0.13258187,-0.4616299,-0.42956793,-0.932046,-0.2503609,0.6153645,0.10486197,-0.003759414,-0.68878245,0.029015103,-0.14544246,-0.006025954,-0.06416166,-0.36603323,0.49647114,0.13737385,0.37261721,-0.11457411,-0.593406,0.04905789,-0.008709189,-0.19351648,-0.4580024,0.5182722,0.2020058,0.8519713,0.010745904,0.043667484,0.30301368,-0.637086,-0.019635057,-0.13512109,-0.24875149,-0.55916125,0.15156236,402 -207,0.367461,-0.21981768,-0.5038935,-0.111332305,-0.14238863,0.20077865,-0.19544935,0.47295702,-0.043608896,-0.4872675,-0.1029324,-0.2506765,-0.022403877,0.32110158,-0.17540582,-0.34659493,-0.011594049,0.013662334,-0.54346824,0.4266126,-0.44326916,0.2327375,-0.023632389,0.35696134,0.10644266,0.21568385,0.022957452,-0.11434393,-0.18126613,-0.06775978,-0.20485996,0.14448309,-0.5194511,0.09574134,0.030538162,-0.16538976,-0.03920033,-0.33884355,-0.19152793,-0.63432103,0.3373241,-0.6670404,0.43056244,0.034813803,-0.33192864,0.27404925,0.20475931,0.3549022,-0.28028476,-0.06473755,0.21792142,-0.061678402,0.11290066,-0.14545903,-0.07846589,-0.41455773,-0.5321389,0.044260144,-0.47592303,-0.29978323,-0.016002767,0.16061303,-0.27922007,-0.037234895,-0.3003665,0.46119052,-0.4017784,0.010518197,0.25391552,-0.08749146,0.18486737,-0.5715264,-0.094501115,0.033321105,0.20284876,-0.2482739,-0.2340414,0.23179223,0.17204557,0.40952852,-0.21585874,-0.080896504,-0.24511315,-0.016257267,0.16292308,0.51369715,-0.19523495,-0.3972294,-0.113893226,0.013346998,0.091579325,0.017036764,0.21118815,-0.29295632,-0.25291613,0.09939063,-0.0917722,0.3135336,0.5370539,-0.20507552,-0.15783015,0.30051243,0.5508082,0.23922817,-0.14137593,0.05135901,-0.011537863,-0.5226255,-0.098955356,0.19096518,-0.17531066,0.44263062,-0.14386219,0.30288297,0.5416094,-0.21367364,0.016905967,0.084939696,-0.03385192,0.05092891,-0.13429448,-0.25211477,0.12545495,-0.36258385,0.0291265,-0.28239915,0.7199679,0.22223148,-0.7894282,0.4089378,-0.46649152,0.13774295,-0.03792332,0.53381133,0.75061774,0.42394117,0.22148259,0.7081104,-0.46049663,0.12162669,-0.101234816,-0.23528562,0.19417614,-0.20875986,-0.036674373,-0.5462449,-0.16897169,-0.06619263,-0.23581961,-0.1290126,0.23225409,-0.71000105,0.19055723,0.05298012,0.77387375,-0.26531556,-0.06587792,0.73758286,0.81365585,0.9291593,0.2331272,0.8892709,0.19273315,-0.27593547,0.20489372,-0.3129191,-0.7140667,0.26452354,0.3291529,0.47083881,0.31420258,0.097513564,-0.062136672,0.44692963,-0.41348988,0.16355298,-0.23787345,0.07554371,0.08468009,-0.12491291,-0.25276792,-0.19482599,-0.07022305,0.06717167,-0.068213105,0.25855508,-0.18005134,0.47058597,0.09425966,1.7330229,-0.06882762,0.07461745,0.09646846,0.3499726,0.07259084,-0.43764964,-0.061603583,0.33328068,0.59184074,0.0486472,-0.67765087,0.11276191,-0.03498784,-0.47086862,-0.16146661,-0.3310905,-0.0843996,-0.083746225,-0.54107744,-0.17591763,-0.007894035,-0.15178087,0.28633928,-2.93659,0.09085957,-0.06491298,0.30063048,-0.2476462,-0.3265873,-0.0060578664,-0.51382315,0.3253712,0.47316483,0.27764252,-0.6888317,0.3731474,0.24054378,-0.25590977,-0.00022776921,-0.6413133,-0.011508377,-0.06569636,0.28534365,-0.043547515,0.046951976,0.23886102,0.19254269,0.37316337,-0.16938373,0.11169119,0.055965893,0.41564742,0.11793114,0.3594993,0.09310956,0.35170257,-0.15899692,-0.10096536,0.28492278,-0.35892335,0.064273156,0.0102642495,0.13000327,0.31797445,-0.41903085,-0.6382814,-0.57406056,-0.13964488,1.0867658,-0.18564327,-0.4155825,0.26146916,-0.2798894,-0.3373122,-0.23886092,0.40660337,-0.06330566,-0.19329184,-0.80085284,0.010118812,-0.19281188,0.2504495,-0.042813636,-0.2067015,-0.38473067,0.71206325,-0.11663916,0.49419674,0.39134887,0.0573266,-0.21818991,-0.44149786,0.09008883,0.81648916,0.4522511,0.114847854,-0.16852763,-0.21206698,-0.29373276,0.10322032,0.17287797,0.47457585,0.74597394,-0.021031145,0.15075655,0.26160353,-0.117851235,0.050155062,-0.15309931,-0.2534685,-0.08571995,-0.008601157,0.62463486,0.5073669,-0.077402,0.56338084,-0.13522059,0.17414586,-0.19493799,-0.4355995,0.38961002,0.81525916,-0.06917436,-0.2639218,0.44742066,0.51808566,-0.18844433,0.2943207,-0.5151002,-0.22394064,0.5570269,-0.2672637,-0.34417427,0.29713294,-0.29735613,0.2530632,-0.7730109,0.41564313,-0.19169979,-0.547649,-0.714888,-0.13231167,-2.8350012,0.14030232,-0.29756597,-0.3414481,-0.08753727,-0.1354434,0.2635992,-0.5621025,-0.445324,0.203011,0.08001689,0.69285023,0.06929531,-0.027087457,-0.15638402,-0.20552193,-0.1729108,0.07780601,0.06448174,0.2080203,-0.0027337868,-0.37569797,-0.01537865,-0.19072972,-0.25820178,-0.015896667,-0.41821703,-0.5612315,-0.28449836,-0.49394158,-0.31578842,0.58679783,-0.36425093,0.020287514,-0.11879993,-0.03263028,0.011303683,0.4249741,0.23154637,0.107103474,-0.08727476,-0.059432086,0.086247444,-0.4198329,-0.053506553,0.067161724,0.30419743,0.3871794,0.103519715,0.28112862,0.46593297,0.5840398,0.02238344,0.5646282,0.5317341,-0.060330965,0.29441896,-0.29116902,-0.056533553,-0.40525237,-0.23124522,0.108620666,-0.4435288,-0.50431687,-0.03286253,-0.2680162,-0.72317535,0.32269913,-0.12864642,-0.027125163,-0.01048701,0.33931282,0.49300498,-0.10423223,-0.016277773,-0.18378963,-0.13368924,-0.46488407,-0.28503132,-0.6036977,-0.39795277,0.11695898,1.2009218,-0.13789102,-0.04552157,-0.0147486245,-0.21317865,0.06313405,0.14541057,-0.059649162,0.25115138,0.24879247,-0.23868078,-0.6745227,0.47409979,-0.08721169,-0.22296026,-0.56758726,0.07300392,0.4843398,-0.5908802,0.45146036,0.13547148,0.084544234,-0.13946003,-0.4871909,-0.08157874,0.11229508,-0.25193676,0.357006,0.08992003,-0.66107845,0.38021088,0.29904515,-0.24992698,-0.7087201,0.31917867,0.0055904468,-0.38247368,-0.0024502676,0.19162661,-0.18587752,0.060722537,-0.2698094,0.19835353,-0.46190643,0.037786223,0.45533744,0.004992529,-0.01841592,-0.24392039,-0.13532373,-0.56497395,0.032007955,-0.48512,-0.21298787,0.2599888,0.10743243,0.23017666,0.16460416,0.18513091,0.46368402,-0.3113567,0.11024661,-0.05191202,-0.2265308,0.20216791,0.45222276,0.34252298,-0.42317298,0.6139625,0.088051334,-0.0188262,-0.1414721,0.19894062,0.49437687,0.25131565,0.32820952,-0.07467187,-0.24285218,0.356261,1.0262887,0.22095136,0.6268417,0.031145748,-0.066335775,0.0711968,0.08463215,0.16232672,0.148226,-0.29893506,-0.01564238,0.052023195,0.15548955,0.38118833,0.03278928,0.32570016,-0.06138899,-0.2697787,0.12310977,0.19353513,-0.02957805,-1.1108493,0.3686928,0.23811728,0.7632121,0.4172987,0.028708482,0.060269114,0.53900707,-0.26180372,0.13940115,0.0519745,-0.022328673,-0.51819235,0.42640617,-0.7040742,0.40572065,-0.13704711,-0.036608703,-0.07327543,-0.13824573,0.45911068,0.770134,-0.22548018,0.077158354,0.050710548,-0.23830914,0.11735116,-0.4168972,0.09500847,-0.573964,-0.33072,0.59123045,0.40393803,0.4167847,-0.05867343,0.019905804,0.16715463,-0.117413335,0.060844418,0.026965864,0.13817693,0.060473602,-0.7097721,-0.31469238,0.47119176,-0.22527485,0.1733944,0.005198264,-0.23342076,0.11908435,-0.16920453,-0.10099704,-0.1176398,-0.59562546,0.17056532,-0.282061,-0.45316964,0.47483456,-0.19898368,0.26746044,0.34575734,0.111264326,-0.34861085,0.29289913,0.088977896,0.6673032,-0.15033881,-0.12841333,-0.48145428,0.25298294,0.21936525,-0.18567172,-0.15979847,-0.28532192,0.0854899,-0.5252124,0.41267532,-0.037381873,-0.25053385,0.08911301,-0.05856015,-0.027929919,0.6725292,-0.053463403,-0.17531122,0.07962136,-0.29600614,-0.20190257,-0.1693071,-0.11962009,0.21053505,0.17914085,-0.04013898,-0.023144472,0.046645183,-0.118555374,0.3141229,0.21730341,0.4165966,0.3673586,0.00093242526,-0.54282516,-0.018452918,0.03675862,0.4410724,0.08343046,-0.18688531,-0.43872327,-0.5389411,-0.3050437,0.26856306,-0.22405316,0.3879532,0.041553576,-0.31187242,0.79821575,-0.040128756,1.0574201,0.03172239,-0.396735,0.05970359,0.5073648,-0.004678599,-0.01703184,-0.38592407,0.70466536,0.47620448,0.0316525,0.03247955,-0.14267255,-0.0417823,0.3906893,-0.107030585,-0.17121309,-0.022083888,-0.5740545,-0.21355735,0.16777371,0.18663219,0.20563895,-0.067859426,0.06005149,0.2136075,-0.109783836,0.09241968,-0.4032943,0.0058688642,0.20804267,0.0530492,0.10280616,-0.03490566,-0.4391848,0.39993006,-0.3358887,-0.004657308,-0.23435402,0.069201365,0.10635857,-0.27433914,0.13014767,-0.068837866,0.17241293,-0.35604605,-0.192755,-0.32345596,0.59030557,0.2757822,0.3405619,0.5153291,-0.20917886,0.2066619,0.10336632,0.58930564,0.9374276,-0.2761325,-0.08641403,0.43060505,-0.31764647,-0.60711795,0.33947983,-0.15025851,0.09689628,0.010794019,-0.25063014,-0.46336097,0.24135561,0.26562348,0.0076382714,0.10459914,-0.5335681,-0.30198687,0.4071855,-0.35680917,-0.27977893,-0.26515368,0.24281837,0.56279725,-0.2908702,-0.1461203,-0.028551165,0.32576576,-0.2598425,-0.3179926,0.05081127,-0.33618298,0.22027776,0.004344233,-0.25195614,-0.17936026,0.18214951,-0.3303718,0.19847186,0.20150293,-0.34172696,-0.030933417,-0.24550638,-0.15630119,0.78326124,-0.23247531,-0.06531762,-0.6517099,-0.44980052,-0.82881814,-0.30236876,0.4537587,0.11184616,0.13472907,-0.724964,-0.05592393,0.0006737729,0.030239249,-0.14144494,-0.30816728,0.55910796,0.15613873,0.28802723,-0.029237783,-0.5909077,0.10543993,0.063435085,-0.17077859,-0.45175913,0.5028834,-0.006918065,0.79214096,0.036318116,0.11891481,0.23203048,-0.47642463,0.20414506,-0.23518935,-0.26146248,-0.69835436,0.09137197,409 -208,0.52283764,0.09304914,-0.45039216,-0.1428425,0.0061902544,0.15326853,0.055367716,0.4001071,0.025951883,-0.42767745,-0.26590905,-0.2740839,-0.039829448,0.12117514,-0.2284996,-0.7676305,0.22124025,0.039288078,-0.22039206,0.43160072,-0.38461608,0.45941284,-0.028603157,0.18800806,-0.029279169,0.2588734,0.32693002,-0.14874192,-0.14723186,-0.26957992,-0.12378929,0.17742811,-0.36494005,0.11939098,-0.021129966,-0.22471005,0.19751692,-0.20118432,-0.4131244,-0.6678596,0.2529684,-0.72773415,0.4850647,0.17964397,-0.26222843,0.3734186,0.07089503,0.02890436,-0.1089354,0.053741872,0.08698754,-0.1861005,0.09546973,-0.24623345,-0.3887069,-0.5356091,-0.41138873,0.06969901,-0.32589054,-0.3364889,-0.38275835,0.016410789,-0.37472022,-0.06887902,-0.13145241,0.2376318,-0.37766513,-0.21493965,0.30189535,-0.26389146,0.1662631,-0.6254852,-0.26536193,-0.09623721,0.03236529,-0.12229618,-0.10688848,0.24259697,0.24479225,0.60384315,-0.19977862,-0.05619428,-0.23071384,-0.12667035,0.14906244,0.7095319,-0.32786173,-0.4291588,-0.08430875,-0.030859835,0.23491758,0.15028967,0.21120737,-0.03370973,-0.07899599,0.06525811,-0.3089001,0.35430127,0.61040086,-0.50735825,-0.14520663,0.24629763,0.25955105,0.040812254,-0.13453798,0.06580592,-0.14379962,-0.43548742,-0.15025263,-0.09803764,-0.22893405,0.63224614,-0.035835396,0.09649493,0.5716578,-0.23197684,0.36982498,0.1671777,-0.10959067,0.01928867,-0.117662326,-0.03098003,0.24654022,-0.33647877,0.117118426,-0.33779955,0.80055493,0.13636313,-0.5043753,0.3971409,-0.35168043,0.14875335,-0.025341133,0.52233535,0.476525,0.401886,0.3114397,0.53202605,-0.48405424,-0.0221182,0.060962103,-0.34864834,0.2284955,0.010346635,-0.096241646,-0.32230753,0.08169716,0.26427725,-0.052132837,0.093581885,0.35236987,-0.49560753,-0.022982163,0.19665144,0.75282305,-0.28262872,-0.10924285,0.51706636,1.0832436,0.7194323,-0.13746206,1.0331539,0.3034378,0.006538208,0.0689652,-0.17238222,-0.5861487,0.14478454,0.46540272,-0.04643506,0.15953337,0.19184774,-0.21409898,0.437327,-0.28453574,-0.108427316,-0.16909365,0.33814463,0.060838383,-0.29462376,-0.36620352,-0.05573345,-0.00974462,-0.059943233,0.08784019,0.3407998,-0.21565093,0.36318552,-0.07755222,1.2898988,0.087490164,0.14061943,0.14465874,0.45982248,0.2772866,0.04780542,0.21618897,0.29190832,0.08601699,0.026902897,-0.34042504,0.0345769,-0.22193769,-0.5772652,-0.08560289,-0.3078983,-0.042908918,-0.0697873,-0.42878953,-0.03960887,0.068947755,-0.11463677,0.37342662,-2.8161366,-0.04207351,-0.19099328,0.24183662,-0.23912835,-0.362064,-0.031908862,-0.4005998,0.38603413,0.48615137,0.42814368,-0.59583294,0.3396962,0.524424,-0.3642171,-0.108058706,-0.6050802,-0.09758532,-0.007011022,0.48652583,0.20225506,-0.05378469,0.034131695,0.12665504,0.54888153,-0.016130947,0.055216774,0.05624924,0.38966593,0.000113449496,0.30427375,0.035812013,0.5047001,-0.11283945,-0.064957805,0.38499674,-0.25731647,0.31802285,-0.051958364,0.17274718,0.1381592,-0.24049264,-0.6961548,-0.48494962,-0.3382447,1.2099564,-0.12365355,-0.3415615,0.32237884,-0.1512052,-0.29896182,-0.049741283,0.37329972,-0.13996077,0.01216472,-0.60236764,0.14310452,-0.2964955,0.100711815,-0.07669083,0.069908954,-0.38498715,0.72324306,-0.15457843,0.31949413,0.26892012,0.27525526,-0.14678532,-0.3774751,-0.22155038,0.8997147,0.47128296,0.05145209,-0.15668355,-0.025060542,-0.23573385,0.035464182,0.071216986,0.6651359,0.58988833,0.07652767,-0.03685806,0.15770459,-0.06932637,-0.039965417,-0.23030806,-0.22861648,-0.014765438,-0.07100785,0.72049916,0.6179976,-0.29464513,0.29640785,-0.1295646,0.36602995,-0.32292783,-0.4436641,0.33772194,0.7457024,-0.110935606,-0.13351418,0.6156124,0.39901802,-0.3146289,0.3051553,-0.6914013,-0.36980808,0.66923565,-0.24465333,-0.42731893,0.31965736,-0.327755,0.11501764,-0.83330804,0.3420054,-0.27610627,-0.4071356,-0.50279707,-0.18296571,-3.8768773,0.19248359,-0.34517804,-0.16976248,0.053524084,-0.020272184,0.21199326,-0.6149426,-0.27087924,0.030103523,0.17109251,0.38701564,-0.045025207,0.11162362,-0.3597883,-0.34018666,-0.10644548,0.22045945,0.06581504,0.18793978,-0.15136531,-0.34364802,0.088800825,-0.115744375,-0.2846341,0.08356464,-0.47909608,-0.70789295,-0.2057216,-0.252829,-0.11185273,0.61202174,-0.38321838,0.005302509,-0.15458873,0.011255564,-0.182805,0.14466755,0.23175506,0.28398198,-0.24032643,-0.029094942,0.10586225,-0.39696506,0.35329434,0.22986834,0.43874177,0.6759091,-0.14104427,-0.080402546,0.54131925,0.3586611,0.12552403,0.6776193,0.2896112,-0.070120215,0.4477043,-0.24670911,-0.29793578,-0.54389215,-0.37134922,-0.14361137,-0.26056248,-0.39560926,-0.23536752,-0.37238902,-0.65420705,0.3693829,-0.11056917,0.10719409,-0.14921491,0.4203452,0.53816295,-0.15742601,-0.11718012,0.197221,-0.056652103,-0.44187263,-0.17101994,-0.6525412,-0.5124887,0.18761882,0.788906,-0.016586844,0.024925685,-0.0935534,0.05582576,0.06156148,-0.05675687,0.26309472,0.064780034,0.20245294,-0.1030351,-0.66325754,0.5992435,-0.11959146,-0.23762615,-0.66128945,0.023572851,0.57832944,-0.6511469,0.4169232,0.3471213,0.09183829,0.15698878,-0.660994,-0.036474444,-0.018932767,-0.279626,0.28775498,0.13324705,-0.85992336,0.46439174,0.34896657,-0.13810486,-0.51195484,0.56722033,-0.00024900833,-0.5370342,0.059361234,0.21024793,0.10122096,-0.109875254,-0.020165265,0.34282213,-0.49537718,0.2425525,0.33853632,0.11621458,0.439473,-0.046606172,-0.20496865,-0.64435035,-0.029431501,-0.5618912,-0.2692998,0.119457215,0.089727,0.10596076,0.2237211,0.033489242,0.44405457,-0.42658302,0.21701351,-0.06619807,-0.15820242,0.5192442,0.44632214,0.3579249,-0.31668308,0.60281265,0.040019307,0.051501174,-0.0009880265,0.15108554,0.52639294,0.005628689,0.31352738,-0.084778994,-0.19794671,0.20924307,0.833126,0.18478225,0.5076625,0.20851365,-0.20413306,0.26773676,0.032057635,-0.036899503,0.07507339,-0.4035043,-0.13892956,0.08647003,0.055190135,0.44917,0.096516415,0.26141033,-0.21668513,-0.25830165,0.14925636,0.24875066,0.3046395,-0.8119655,0.051149774,0.13067529,0.7267916,0.4006843,-0.0015083621,-0.035294782,0.4675662,-0.14449285,0.087982625,0.27666438,-0.082100585,-0.47621396,0.41910288,-0.3715992,0.41586077,-0.10819044,-0.03509685,-0.031687018,-0.18216094,0.18887094,0.79602635,-0.25250018,0.05892933,0.02965949,-0.32167676,0.06464692,-0.3387019,0.11428626,-0.48061463,-0.18032427,0.58008105,0.5242532,0.24431208,-0.11769616,-0.13579425,0.02462192,-0.1427702,0.031825088,-0.05048776,0.27406222,-0.29454023,-0.44700292,-0.38911754,0.5327881,0.039279427,0.022647794,-0.067418054,-0.20502059,0.23223835,-0.04340543,-0.17932421,-0.046982016,-0.30985066,0.21836276,-0.36540386,-0.5050207,0.42003092,-0.18653938,0.2943428,0.11131024,0.02407488,-0.13425669,0.26235893,0.17474109,0.51828617,-0.15042336,-0.16548277,-0.56476337,0.10321171,0.15398814,-0.23463821,-0.1264097,-0.23504472,0.24403878,-0.53290737,0.15491822,-0.16420422,-0.14370099,-0.24697772,-0.12130164,-0.07382346,0.40531236,-0.1160452,-0.24466613,0.015765835,-0.037138455,-0.23696709,0.09487367,-0.06042615,0.20106776,-0.07046097,-0.17309317,-0.0027420605,-0.0412822,0.047400434,0.22214463,0.16741136,0.10071906,0.48186558,-0.097290024,-0.36829805,-0.13829833,0.054363307,0.50756055,-0.15322207,0.050997846,-0.17869076,-0.7377819,-0.34612963,0.073915854,-0.2365684,0.32786974,0.1862063,-0.2239274,0.8385748,0.029615168,1.1454232,-0.09580227,-0.35487562,-0.11883228,0.6862202,-0.013626237,0.0045561027,-0.3072167,0.9999071,0.47244537,-0.11186908,-0.30044883,-0.17493644,-0.089871235,0.13423388,-0.21433218,-0.15500759,-0.067460746,-0.59892356,-0.08264002,0.18411712,0.34635752,0.20790972,-0.026550118,0.112799376,0.19342484,0.12252974,0.42773706,-0.5074566,-0.37423265,0.24773873,0.21122865,-0.20145969,0.08072082,-0.2929931,0.34125632,-0.58638245,0.042419,-0.36966255,-0.049344994,-0.079512216,-0.3152213,0.20492938,0.0051617185,0.41979793,-0.5079671,-0.30482197,-0.0969937,0.2242491,0.12090328,0.24420057,0.40516073,-0.035626166,-0.095996186,0.09917917,0.6350422,1.3700638,-0.13799831,-0.10273475,0.37730893,-0.43721846,-0.75080764,0.100186124,-0.2997326,0.21917786,-0.31593454,-0.3113245,-0.4170861,0.32826197,0.30422333,-0.10594097,-0.022786062,-0.46504503,-0.35511622,0.16364853,-0.47798604,-0.33373752,-0.33739147,0.18907033,0.67863065,-0.38176996,-0.12034545,-0.18764037,0.36610496,-0.30944297,-0.6651061,0.059948526,-0.10990637,0.3081958,0.19444755,-0.34270018,0.030274995,0.067115314,-0.36145398,0.15477876,0.3208405,-0.36696237,0.017581536,-0.3205982,0.049368836,0.7609135,-0.04447078,0.008420467,-0.51201886,-0.5032179,-0.8451882,-0.6048195,0.5096625,0.14843506,-0.062897764,-0.43395123,-0.12452352,-0.047709934,0.029923836,-0.1348395,-0.109974034,0.5203181,0.12913394,0.25645128,-0.057762615,-0.73862725,0.016824134,0.087775774,-0.19401169,-0.6286403,0.38501078,-0.1356708,0.7957096,0.17322809,0.02064865,0.30034986,-0.4039817,0.14634424,-0.23992898,-0.21483094,-0.57983685,0.16145308,413 -209,0.48849174,-0.1582443,-0.5711394,-0.11536427,-0.1928539,-0.020564714,-0.16477807,0.66031057,0.19423796,-0.48268303,-0.15477511,-0.07308455,-0.0012405157,0.32530233,-0.14254403,-0.55494726,-0.046647895,0.20112911,-0.6685674,0.50111234,-0.38989198,0.21504945,0.0035164037,0.6391394,0.1907023,0.2071252,-0.1185888,0.12942539,-0.0449241,-0.2568779,0.060327195,0.25286338,-0.6984786,0.08207383,-0.21540776,-0.37982234,-0.19765292,-0.4599577,-0.47496712,-0.8439314,0.33704415,-0.8856557,0.6252439,-0.123770975,-0.39631155,0.03228833,0.23971382,0.50514436,-0.14538689,-0.17660482,0.089247026,-0.07767153,-0.09279051,-0.15236838,-0.17003575,-0.35248852,-0.60965854,0.1769537,-0.32168496,0.0192847,-0.23477693,0.19305226,-0.35280353,0.18427688,-0.11143017,0.47450784,-0.30772454,0.0929966,0.40962836,-0.084133066,0.25501245,-0.5421083,-0.044007838,-0.093338825,0.26692593,-0.07678464,-0.34532252,0.29407808,0.14682418,0.4748637,0.05327636,-0.34618455,-0.24826832,0.041100193,-0.037462786,0.46313015,-0.1969797,-0.48575824,-0.16085263,0.054252733,0.43983504,0.22438224,0.11852822,-0.06697743,-0.12503307,0.040851276,-0.20252392,0.47161832,0.6082565,-0.08146591,-0.2998264,0.28501242,0.54885805,0.23477171,-0.059428032,0.09851417,0.08122445,-0.60560507,-0.20028053,0.0072871167,-0.19846793,0.40530396,-0.16529998,0.25321847,0.6996977,-0.19344202,-0.11126101,0.21251847,0.063244,-0.03515721,-0.4166459,-0.3190302,0.23557563,-0.53549314,0.23871265,-0.26021224,0.77471405,0.18346676,-0.68727505,0.22623353,-0.65968174,0.2306175,-0.045523856,0.47276226,0.74901325,0.50942165,0.25582466,0.74380493,-0.38792592,0.13312745,-0.10871067,-0.32744038,0.10889505,-0.28263727,0.10295877,-0.4195093,-0.010632523,-0.02993315,-0.1256003,0.14741129,0.38143805,-0.5695141,-0.21743637,0.03592142,0.89475477,-0.21013379,-0.06960059,0.98178655,0.82848895,0.9131826,0.04264941,1.1305851,0.14699398,-0.1427504,0.18743162,-0.09031366,-0.9175498,0.43799964,0.20275782,-0.37906292,0.31895414,-0.064024985,-0.080348685,0.48759925,-0.49406117,0.072917886,-0.18254468,0.3396697,0.058025733,-0.13233154,-0.4309254,-0.24066718,-0.054309145,-0.10603355,0.21860828,0.26651976,-0.026542332,0.56775594,-0.013014967,1.444268,-0.026728181,0.08623282,0.091234185,0.40101975,0.1760597,-0.12965855,-0.13583365,0.08291386,0.32071564,0.15649267,-0.5297826,0.079304345,-0.1670923,-0.32392102,-0.18493064,-0.21598014,-0.1864528,-0.20719372,-0.4556733,-0.3053821,-0.26809344,-0.18570815,0.38358715,-2.5995722,-0.2824978,-0.0406509,0.33926356,-0.3824855,-0.48695558,-0.14125462,-0.56109875,0.6067226,0.18164107,0.5517781,-0.67831737,0.27057555,0.28173155,-0.5672777,-0.013702829,-0.7967984,-0.16788565,0.17095011,0.21266563,0.06797599,-0.19852321,-0.051414188,0.11310158,0.47684056,-0.06473721,0.01131554,0.28210488,0.44554406,-0.13479567,0.5229011,-0.17865114,0.65980476,-0.45271817,-0.25859788,0.35460767,-0.45094463,0.28454313,-0.07443158,0.060933303,0.51742846,-0.5288344,-0.8625441,-0.5270812,-0.17618115,1.029627,-0.17942767,-0.34974283,0.20393215,-0.6468189,-0.24720025,0.05136131,0.4587631,-0.17900518,0.0021662554,-0.79284364,-0.13340817,-0.22289582,0.02667452,-0.057085764,-0.10497376,-0.3416725,0.6128043,-0.14556995,0.2710986,0.38281924,0.12684889,-0.4415935,-0.5588102,0.06984376,0.8517721,0.38063785,0.22564551,-0.29723296,-0.23292615,-0.52613986,-0.22536628,0.026735552,0.7256361,0.80106646,-0.14831872,0.119303614,0.2621383,-0.01665976,0.022216681,-0.08715749,-0.33349222,-0.2579365,-0.096976265,0.76002175,0.7784495,-0.19369285,0.5362405,-0.077129774,0.32869393,-0.24721578,-0.4931005,0.5968609,0.8074852,-0.24660672,-0.40079087,0.65487194,0.33797613,-0.14935762,0.4504071,-0.4869346,-0.4074168,0.43811128,-0.09256632,-0.5141057,0.2072209,-0.2582901,0.23012428,-1.0372955,0.12380169,-0.43798986,-0.44596758,-0.75323296,-0.13755803,-2.229101,0.09494659,-0.24914196,-0.032692518,-0.37877426,-0.18576954,0.18114506,-0.40288654,-0.73193586,0.16998489,0.07016155,0.8617972,-0.09659937,0.1266672,-0.22969145,-0.12757851,-0.4526744,0.08239431,0.49578354,0.3804615,0.0011137803,-0.44716138,-0.1860418,-0.15360567,-0.5847871,0.13768053,-0.77734035,-0.5689727,-0.16074546,-0.5368387,-0.233255,0.74214536,-0.23424792,0.017783105,-0.19204544,0.05231712,0.035766937,0.3782798,0.12154619,0.04483113,0.18852353,-0.13215347,0.1442743,-0.27506742,0.21670556,0.09130125,0.38845342,0.29421484,-0.12458382,0.405078,0.45422328,0.99846596,-0.16106264,0.8383485,0.51437134,-0.010065607,0.31566238,-0.29737896,-0.42660195,-0.36170083,-0.054076534,0.053628445,-0.402525,-0.20663856,0.059604295,-0.3959953,-0.80954564,0.5723365,0.08856324,0.021879641,-0.076352164,0.16580829,0.5120365,-0.3130991,-0.14379296,-0.120899886,-0.12674962,-0.551775,-0.2700464,-0.5066673,-0.7363354,-0.1822531,1.1294007,-0.07354965,0.11637257,0.040504653,-0.29154077,-0.015114402,0.0645244,-0.09427259,0.049014084,0.48094395,-0.055275,-0.5327397,0.35136178,-0.05711599,-0.24406256,-0.7508575,0.3474788,0.6766319,-0.5172223,0.4453047,0.24323566,0.014038042,-0.30802646,-0.5631917,0.031933777,0.020115407,-0.20719299,0.4785455,0.26532796,-0.736904,0.52732736,0.5203075,-0.20156728,-0.73635304,0.44802076,0.12502573,-0.18797217,-0.16957802,0.37112343,0.16439782,0.03463644,-0.11754663,0.27137575,-0.31809312,0.17222585,0.20240487,-0.14179869,0.4404958,-0.26079527,-0.17477076,-0.7801819,0.10707584,-0.62706643,-0.31572473,0.2843136,0.053973947,0.13376264,0.1168905,0.22677456,0.3534762,-0.37388146,0.00439415,-0.30308864,-0.3633054,0.3062954,0.39641348,0.555705,-0.559358,0.62449104,0.11101139,-0.058014736,0.1817243,0.0709255,0.57972616,-0.07152724,0.37282214,0.10838968,-0.05414347,0.03611536,0.81179726,0.06160659,0.4586765,0.11745076,-0.027146196,0.086563796,0.15163599,0.14750801,0.06321495,-0.6570298,0.006448972,-0.14579615,0.1560516,0.49915224,0.16325945,0.29139656,0.02732306,-0.32693556,-0.07199858,0.028003637,-0.036116008,-1.7327473,0.55293757,0.25097293,0.95014185,0.18783556,0.09106705,0.09623359,0.74588335,-0.15173618,0.17683949,0.37815616,-0.07786754,-0.3985255,0.49555746,-0.85220975,0.53565824,0.052270226,0.0940978,0.087545484,0.046803687,0.6611098,0.729487,-0.13381882,0.053560477,0.00560801,-0.31574726,0.22986865,-0.43248132,0.05840396,-0.5243917,-0.17528585,0.71778774,0.43458578,0.321054,-0.246574,-0.017258553,0.25557077,0.0064982893,0.10474647,-0.0558849,0.11973882,-0.0048884354,-0.5474136,-0.16711381,0.46329355,0.16894814,0.2953687,-0.008173669,-0.025436934,0.2585129,-0.15371905,-0.048963286,-0.21106839,-0.75230354,0.0031637151,-0.5348412,-0.41925618,0.34100544,-0.2618591,0.15753286,0.2489184,0.11176691,-0.29104292,0.484742,-0.21986805,0.9210394,-0.06566002,-0.2728363,-0.28195947,0.25748464,0.25378835,-0.3175612,-0.07393178,-0.21412976,0.053189833,-0.3924532,0.37120265,-0.16509561,-0.5235968,0.1314611,-0.0992703,0.04918351,0.3932182,-0.2563063,0.017537594,0.11857606,-0.30786282,-0.21176742,-0.32165977,-0.044725068,0.3799176,0.44643372,-0.018531067,-0.01773294,-0.12936859,-0.20213011,0.4236522,-0.010688647,0.4200283,0.4152942,0.0884991,-0.31338528,-0.11237788,0.35844672,0.55441767,-0.09097996,-0.11493899,-0.45926067,-0.2730573,-0.3303894,0.52839917,-0.1031254,0.39490405,0.042402517,-0.24917823,0.7350956,0.088157065,1.1476914,-0.00048511822,-0.36333174,0.19599281,0.4052098,-0.005121684,-0.1059532,-0.4845689,0.8981962,0.3025959,-0.2311531,-0.05916622,-0.41721928,0.17066711,0.25157234,-0.22372201,-0.20311387,-0.13306238,-0.45943356,-0.25685754,0.32513836,0.2853306,0.18361594,-0.18107751,-0.014666454,0.23435208,-0.15586305,0.29632145,-0.43477204,-0.07536217,0.24795447,0.3339321,-0.095074974,0.112579376,-0.54932976,0.3863458,-0.44413102,0.05996388,-0.3173283,0.25330672,-0.030666979,-0.39002207,0.29140842,-0.108933054,0.3254951,-0.4759856,-0.29003245,-0.19499715,0.39708424,0.2743267,0.18555768,0.5608271,-0.26420134,-0.101391315,0.12506422,0.5277761,0.86198145,-0.25314948,0.19002658,0.22305563,-0.13678926,-0.5183284,0.46612185,-0.18123141,0.37048098,-0.033739995,-0.22698107,-0.5394361,0.27637464,0.2914789,0.06376802,-0.034657877,-0.679359,-0.20416495,0.32846102,-0.24630699,-0.24731849,-0.3821694,-0.021668483,0.53303826,0.072743736,-0.28810644,0.16159014,0.2634384,-0.08511257,-0.39259586,-0.09986513,-0.37158218,0.044774555,-0.0072139422,-0.36523038,-0.109188475,0.04495422,-0.55901736,0.1565926,0.110674165,-0.3299826,-0.016402697,-0.20647025,-0.0929806,0.9153797,-0.29625174,0.4167905,-0.5096093,-0.44573736,-0.7280615,-0.36684996,0.35221425,0.16237657,0.022234468,-0.77738076,-0.2698173,-0.09949843,-0.17075586,0.0014130791,-0.32456413,0.404348,0.18881239,0.35607547,-0.13473195,-0.6106786,0.15295093,-0.015999347,-0.26164773,-0.5394319,0.57989115,0.10255278,0.7933654,0.02126753,0.2676819,0.3767917,-0.5966034,-0.21192688,-0.08939754,-0.13496017,-0.7216127,0.012478224,419 -210,0.22890776,0.113838054,-0.726351,-0.014920226,-0.20793132,0.14508858,-0.29825816,0.29427394,0.4277551,-0.3071332,0.10326342,-0.14745137,-0.24903795,0.23885968,-0.067348465,-0.5260765,-0.06296571,0.15431139,-0.50375676,0.6803718,-0.27586517,0.27324903,0.18862289,0.22179101,-0.05908961,0.16397518,0.1766296,-0.22392255,-0.09919466,-0.096514195,0.1661685,0.09046119,-0.39903364,0.24283062,-0.1376641,-0.18943158,0.14123696,-0.26302534,-0.4696635,-0.6782294,0.15125881,-0.6244184,0.57457006,0.042557884,-0.15412553,0.40811607,0.12402308,0.22523595,-0.11995847,-0.11314788,0.15218973,-0.20954747,-0.3079085,-0.3070159,-0.48377407,-0.26604262,-0.4000831,-0.08100773,-0.5615049,-0.011612189,-0.40130028,0.06741117,-0.25527748,-0.15627335,-0.2027476,0.20353231,-0.26547843,0.089939386,0.29772085,-0.0965453,0.23922403,-0.63377434,-0.038959287,-0.08402352,0.16928883,0.08115406,-0.049517743,0.39595076,0.18610694,0.6095949,-0.031310964,-0.07185222,-0.3511586,-0.17504174,0.10512379,0.46473533,-0.20657612,-0.14224361,-0.14915921,0.0015837859,0.5520822,0.3719977,0.1307023,-0.2787145,0.048307095,-0.07188226,-0.18350762,0.3020323,0.5044309,-0.33428344,-0.052351873,0.52466846,0.31672686,0.29699403,-0.12902492,0.027508607,-0.22501943,-0.3744598,-0.17551622,0.1608038,-0.09188145,0.36764425,0.10254885,0.16575782,0.6916969,0.06504164,0.06024118,-0.043996986,-0.034291316,0.009261827,-0.24978133,-0.08730625,0.15168367,-0.5862688,0.13414901,-0.014511275,0.49811956,-0.06512884,-0.78181267,0.36606464,-0.36101872,0.20474547,0.029951552,0.6316407,0.77882975,0.5474704,0.10656322,0.8978522,-0.5544024,0.061125115,-0.105668634,-0.33512396,0.31256238,0.12681109,0.26816306,-0.48722684,-0.038369153,0.12944229,-0.19203645,0.07119895,-0.0139803095,-0.47053796,-0.17907871,0.17256543,0.8947947,-0.19800244,-0.118854046,0.45112726,1.2768867,0.7274231,-0.06757558,1.3009094,0.22891493,-0.23206387,-0.039107542,-0.3505977,-0.77351326,0.09298487,0.25090137,-0.22877833,0.35880697,0.14332514,-0.09313824,0.2859073,-0.18978778,-0.27109843,-0.13104823,0.44056645,-0.05753749,-0.10779099,-0.1661109,-0.06454791,0.025161719,-0.030791827,0.23273952,0.3096971,-0.14502877,0.30771872,0.18770064,1.5357829,-0.19036181,0.12997915,0.12761433,0.26305813,0.273376,0.090298295,-0.018164646,0.49540985,0.1634461,-0.13645434,-0.4970522,0.14668792,-0.2509213,-0.50457025,-0.018501464,-0.29409772,-0.15203379,-0.03970992,-0.17102978,-0.11551415,-0.15585211,-0.4382066,0.38637635,-2.9689667,-0.110549435,-0.12393982,0.2057298,-0.24802695,-0.22876994,-0.18009202,-0.3103911,0.5033446,0.19983058,0.47726008,-0.5234115,0.3008793,0.5282852,-0.5472752,-0.16799626,-0.53587216,0.11929016,-0.0079902215,0.39978713,-0.044172406,-0.2098518,0.13754848,0.13936552,0.45697612,0.094547346,0.1171628,0.4774646,0.5934395,-0.10002806,0.27235654,-0.20023298,0.50368494,-0.31339988,-0.109166175,0.22815919,-0.2049594,0.43924174,-0.27839762,0.25054324,0.42811403,-0.23763014,-0.51068634,-0.29703802,-0.08250424,1.1073252,-0.3431595,-0.46785438,0.19443278,-0.20726448,-0.18595624,-0.04937346,0.5382601,-0.015557552,-0.08303365,-0.61952174,-0.12805618,-0.18159316,0.2150801,-0.009318471,0.18128294,-0.32751036,0.6266106,-0.0153368395,0.4996066,0.45854917,0.18044071,-0.16909109,-0.26087785,0.113807105,0.75429136,0.33238715,-0.022061443,-0.1780634,-0.17741826,-0.141429,-0.2750777,0.08961095,0.44364834,0.53618675,-0.1281035,-0.022296278,0.32387677,-0.1837913,-0.081378214,-0.20986666,-0.40662175,-0.09774186,-0.026259832,0.40016097,0.6705741,-0.17428096,0.41581133,0.06856454,0.09589963,-0.3579468,-0.5229023,0.6578665,0.31284174,-0.29662704,-0.07184775,0.58334947,0.38360873,-0.12806289,0.557346,-0.6327267,-0.36890188,0.594999,-0.04919074,-0.4265007,0.15054967,-0.23494552,-0.119535886,-0.86548007,0.15471181,-0.44587475,-0.46556967,-0.47279274,0.10814484,-2.3724353,0.031755447,-0.39415067,-0.014994486,-0.22395103,0.13286643,0.25013438,-0.38337848,-0.5504758,0.19499278,0.362691,0.4296408,-0.06506552,0.03348671,-0.23938936,-0.35194892,-0.24634762,0.20906706,-0.00026640893,0.17962469,-0.099152654,-0.36270398,-0.1839331,-0.041577592,-0.2571309,0.0711047,-0.3370008,-0.12603292,-0.1593087,-0.36459127,-0.21466415,0.56849873,-0.54107183,-0.08225942,-0.2546664,0.04755064,0.08617924,0.28944224,-0.028966289,0.05842612,0.023564806,-0.09671029,-0.054406084,-0.32952687,0.3325786,0.051859036,0.3617263,0.47286728,-0.16813228,-0.049936797,0.41906032,0.6248903,0.0058599473,0.7485023,0.31774598,-0.19068378,0.37667704,-0.32118714,-0.004237652,-0.5579833,-0.28585884,-0.16262144,-0.296595,-0.58110327,-0.12642314,-0.37954485,-0.8381029,0.4469569,0.23810394,0.14387183,-0.090183325,0.30566877,0.5548378,-0.17953806,0.12507522,-0.15921314,-0.2910629,-0.39179212,-0.2652301,-0.87755865,-0.3503523,0.5222293,0.8544327,-0.26466256,-0.15394899,0.1515792,-0.29573867,-0.05365008,0.09408396,0.15035537,0.12397049,0.34473324,0.13195014,-0.52731746,0.45213005,0.057692744,-0.06738159,-0.7044532,0.21826465,0.6654265,-0.5872316,0.3693251,0.46931702,0.08218567,-0.17380746,-0.6644253,-0.054193776,0.18520352,-0.23852943,0.28532708,0.14040388,-0.6882277,0.44685698,0.3343517,-0.16561309,-0.78480583,0.34491715,0.16862385,-0.09007836,0.10108875,0.32198623,0.031354982,0.07392362,-0.29518095,0.17220011,-0.35657227,0.41368935,0.16582607,-0.12856512,0.32052407,-0.107827865,-0.23254314,-0.7805831,0.123113185,-0.40577847,-0.16837496,0.42662138,0.13396019,0.1520883,0.026988832,0.22891696,0.34384057,-0.32354805,0.18740006,-0.22438008,-0.25136676,0.515781,0.55562234,0.25222084,-0.40071282,0.6673427,-0.06885321,-0.29777083,0.03071196,0.14219205,0.38021147,0.16506688,0.2584687,0.10068491,-0.2695879,0.12405389,0.6471809,0.13100664,0.044908356,0.16940166,-0.08746397,0.40421662,0.06759008,0.0875672,-0.15538415,-0.563626,-0.13575138,-0.16064388,0.13723952,0.44679463,0.3400531,0.3980517,0.06093015,-0.25327745,-0.028173085,0.1053332,0.115367845,-0.8375688,0.46594226,0.16987206,0.65953165,0.570939,0.106842354,0.14643161,0.5828202,-0.07042783,0.10484045,0.3932972,-0.03334059,-0.35905072,0.5838154,-0.57537276,0.31141302,-0.08522335,0.017512536,0.24077241,0.18655568,0.36648044,0.9639761,-0.15008315,0.03594102,-0.17460544,-0.23110642,-0.00587025,-0.007126081,0.07880423,-0.38099244,-0.58931977,0.5347649,0.30405876,0.37919888,-0.1711858,-0.107284896,0.14248435,-0.20526408,0.37851867,0.033715144,0.12980859,0.0132676605,-0.3386527,-0.22397962,0.55309504,-0.11984274,0.08600429,-0.024961213,-0.109854,0.18612695,-0.28565767,-0.11013316,-0.03590669,-0.55845696,0.036426138,-0.15485662,-0.5133899,0.5041661,0.012286535,0.359526,0.075850055,-0.01621206,-0.018711202,0.46842894,0.06640463,0.4904012,-0.057856336,-0.30837405,-0.14135262,-0.012730726,0.057698734,-0.2849242,0.03225072,-0.08566627,-0.00061005354,-0.68322647,0.37308267,-0.18614711,-0.23202582,0.031010918,-0.3281175,-0.044587784,0.4339975,-0.19380663,-0.16533785,-0.14246625,-0.36800098,-0.33006334,-0.3485776,-0.21952267,0.13698778,-0.061413877,0.056338437,-0.18869153,-0.05572145,-0.075664744,0.040196516,-0.033205613,0.022633553,0.3150209,0.20072612,-0.48706922,-0.06288936,0.21830685,0.35209975,0.17148025,-0.07554807,-0.33275324,-0.34769276,-0.4765615,0.20792542,-0.14072795,0.23608643,0.07297416,-0.38175312,0.8141281,0.0039866883,1.0262221,-0.042264473,-0.23308048,0.08889755,0.51380664,-0.017783856,0.017978204,-0.35491225,0.90865886,0.6511509,0.03969964,-0.04952654,-0.34223023,-0.119283326,0.27837244,-0.32714817,-3.491044e-05,0.09920255,-0.60126716,-0.3572537,0.20529579,0.08747165,0.0009474476,-0.23690931,0.060525026,0.02949744,0.24948207,0.37049854,-0.5247696,-0.35342023,0.2641982,0.17946202,0.07398669,0.15803401,-0.42426312,0.32009622,-0.56898874,0.13690825,-0.37044343,0.018042084,-0.1523655,-0.22639808,0.16187154,-0.026690014,0.32965487,-0.32334888,-0.32625416,-0.0798214,0.38323727,0.20993692,0.21527386,0.66332275,-0.19954354,0.03687733,-0.035219852,0.5209374,1.060847,-0.24287723,0.0073129814,0.3777389,-0.37939173,-0.6958938,0.045037482,-0.521109,0.07695913,-0.11718504,-0.45692894,-0.26813787,0.31527558,-0.11605081,-0.02897408,-0.04002986,-0.7010838,-0.16187264,0.065476425,-0.33148602,-0.18232365,-0.3055558,-0.06717383,0.9336037,-0.38376188,-0.26572987,0.097251095,0.2120176,-0.28610387,-0.57553905,0.14574848,-0.3733658,0.2325146,0.17380041,-0.33640486,-0.040990938,0.12566955,-0.584885,0.09647396,0.055051804,-0.23178886,-0.03357211,-0.2954207,0.22017466,0.65970117,-0.08598492,-0.097331986,-0.38318422,-0.5248578,-0.7260253,-0.4929593,0.11713578,0.1522529,0.022386499,-0.4804512,-0.009057776,-0.154811,0.06430543,-0.09069826,-0.39520797,0.3235712,0.14656208,0.15850927,-0.4398072,-1.0068375,0.010323493,0.119161285,-0.0393149,-0.5900343,0.54466766,-0.13485104,1.0220003,0.085511945,-0.14307556,0.2733593,-0.6313299,0.2514868,-0.43660113,-0.1964243,-0.6587722,0.23057882,431 -211,0.21671604,-0.14576726,-0.4396658,-0.16615231,-0.03888813,0.13179046,0.010855798,0.44126204,0.21987823,-0.2924538,-0.07857022,-0.01784355,-0.07286522,0.28354672,-0.0836324,-0.4618145,-0.09194422,0.0064898254,-0.42765176,0.50929075,-0.3743372,0.33982697,-0.18169667,0.23905872,0.049272887,0.46335572,0.012584706,-0.23936138,-0.021453539,0.07232802,-0.13762389,0.07590981,-0.29754364,0.10422266,-0.008360481,-0.11948124,0.13518767,-0.14684643,-0.3642183,-0.5459616,0.31392956,-0.6115729,0.27617797,-0.052643344,-0.1600217,0.19264896,-0.009103866,0.26677302,-0.4197208,0.040180467,0.1247025,0.06780619,0.029970497,-0.07900189,-0.103924975,-0.3441148,-0.42463753,-0.051598325,-0.4384201,-0.16416411,-0.2241871,0.013276321,-0.3011873,-0.1275461,-0.052097205,0.30120182,-0.4744174,0.04054548,0.20979223,-0.123676576,0.17381884,-0.60366035,0.0032758713,-0.0791308,0.23745912,-0.12826405,-0.14021303,0.35379118,0.16701144,0.37537375,-0.01469383,-0.052730188,-0.23532481,-0.1460355,0.18426739,0.30107197,-0.074536756,-0.3569177,-0.06515055,0.038869165,-0.0070711565,0.14990367,-0.07133912,-0.26534688,-0.15075992,0.119175814,-0.21445383,0.13722964,0.38960043,-0.33176154,-0.28597492,0.5190667,0.680513,0.17194414,-0.1823098,-0.01662411,0.021543443,-0.34315094,-0.1665469,0.06437426,-0.16690359,0.4661752,-0.09998706,0.15844399,0.6870021,-0.2684001,0.2293706,-0.13386269,-0.00436124,-0.25857064,-0.18341725,-0.15374002,-0.023888268,-0.32417208,0.14468366,-0.0547477,0.6937138,0.19648512,-0.58449817,0.2839811,-0.39253342,0.16074158,-0.15580127,0.5660306,0.6590254,0.33114845,0.13573319,0.7046505,-0.54580694,0.15045461,-0.08017949,-0.39604595,0.23726,-0.1813377,-0.32754505,-0.5365011,0.014508668,0.18478104,-0.21864031,-0.095114104,0.011015827,-0.46738005,-0.01781035,0.0939517,0.6784943,-0.3083974,-0.02219191,0.30949125,0.97391254,0.8350811,0.020585299,1.158613,0.14033826,-0.2910104,0.39471313,-0.45877746,-0.7630686,0.21048026,0.37029874,0.08544178,0.29185003,0.17290844,0.09058203,0.32351542,-0.49232545,0.19856617,-0.21886893,0.36122695,0.151572,0.01251254,-0.30302677,-0.13059801,-0.041908544,0.033733074,0.035066646,0.24454387,-0.21232969,0.061489318,0.110588886,1.7823108,0.052308485,0.1689474,0.12798722,0.53809226,0.118555546,-0.1522459,-0.13559748,0.44925976,0.46297294,0.07505036,-0.6441526,0.1346902,-0.2959094,-0.5015023,-0.12682232,-0.40157983,-0.03287922,-0.019244047,-0.46223825,-0.07590027,-0.050374962,-0.19912843,0.44254604,-2.9483306,0.0070397565,-0.16159429,0.3562898,-0.37102565,-0.19121294,-0.08123185,-0.36290917,0.2881422,0.44043052,0.36445385,-0.5542254,0.23783468,0.4662331,-0.45513442,-0.0872135,-0.4791398,0.0019133012,0.01845998,0.40692264,0.022045493,0.087355055,-0.061258364,0.13331005,0.22835064,0.048625812,0.060216565,0.26823145,0.21728247,0.18082261,0.48613197,0.053706225,0.38416958,-0.11945343,-0.011623895,0.17045905,-0.26085472,0.40607125,-0.1067913,0.1393225,0.31817374,-0.32393128,-0.68387806,-0.6388418,-0.28693503,1.3607057,-0.30874628,-0.24896882,0.33741978,-0.3727109,-0.16730683,-0.2867817,0.4785406,-0.119139,-0.15166196,-0.7367063,0.18783692,-0.06626064,0.3471678,0.06695916,-0.0455721,-0.36661634,0.61689365,-0.002055033,0.5730497,0.3193015,0.045879528,0.0058399043,-0.40037423,0.025608849,0.6210888,0.34710154,0.08710531,-0.10710421,-0.13604528,-0.36149016,0.009469772,0.22075869,0.33526003,0.6252335,0.008230916,0.06959353,0.19871108,-0.071488775,-0.07708063,-0.13250032,-0.18792349,-0.006543659,-0.10030716,0.45465457,0.54527944,-0.29055503,0.2841566,-0.11607465,0.062239435,-0.21564975,-0.3629527,0.5978395,0.62002295,-0.16411476,-0.086486764,0.4334891,0.5570151,-0.23883823,0.30714625,-0.6174333,-0.04127473,0.5491756,-0.23076038,-0.26102734,0.10766511,-0.31696665,0.15162945,-0.8218279,0.15785922,-0.16343832,-0.2980885,-0.5737121,-0.16934608,-3.3325572,0.042349003,-0.16205554,-0.2605029,-0.0828259,0.056550495,0.32536164,-0.6897012,-0.4595345,0.18965912,0.055038232,0.5262267,0.04969844,0.01598804,-0.3245679,-0.1466196,-0.37346593,0.07014597,-0.0024300218,0.27305043,0.041909643,-0.47299936,-0.109424844,-0.024960598,-0.36665618,0.13384151,-0.36002052,-0.2999925,-0.18223931,-0.42586327,-0.260024,0.7166376,-0.22954842,-0.0021113951,-0.09062126,-0.050525267,-0.15278901,0.21508007,0.2129133,0.007687326,0.064969555,0.046053533,-0.055427518,-0.33734688,0.29560757,0.040894914,0.3251477,0.2602902,-0.02660156,-0.0086691575,0.5189021,0.45828596,-0.16011448,0.6712143,0.6384984,-0.1630168,0.2550631,-0.36852664,-0.027341468,-0.39473048,-0.33807555,-0.13182727,-0.30834988,-0.56339556,-0.09560881,-0.37580347,-0.7760876,0.32945263,-0.042556245,0.15349859,0.10896052,0.09364555,0.48124236,-0.032833498,0.12664399,0.09611745,-0.07135823,-0.50775516,-0.39750162,-0.5455232,-0.24052949,0.30076537,1.0902883,-0.32639298,-0.13519984,-0.06618771,-0.37313882,0.004219826,-0.0072148363,0.028621078,0.16849962,0.24726114,-0.06792227,-0.6091313,0.43709722,-0.017021434,-0.08778828,-0.66561204,0.02364157,0.43106174,-0.63699263,0.4579838,0.2605518,-0.023154374,0.043534692,-0.4438421,-0.22758952,-0.10779837,-0.14940977,0.25490692,0.07651344,-0.6794967,0.31475708,0.18555507,-0.15830651,-0.58056194,0.4991583,-0.09853282,-0.32719097,0.020676693,0.20717087,0.13003652,-0.01550856,-0.21166459,0.24639037,-0.44356278,0.12748006,0.42521688,-0.07021981,0.2477306,-0.12399988,0.015274067,-0.6066941,-0.038204525,-0.41775474,-0.10341255,0.2541662,0.15292324,0.18272908,0.089502946,0.12034129,0.31366682,-0.20497343,0.07347346,0.10702494,-0.19965261,0.3779542,0.31968567,0.3859581,-0.34343272,0.46561342,-0.038560223,0.051954433,-0.00574344,0.13364072,0.4407967,0.18596435,0.3075722,0.048951097,-0.3463679,0.28430682,0.7986853,0.21051452,0.3934277,-0.068278536,-0.24559633,0.2673949,0.12800585,0.17417835,0.085407324,-0.46954945,0.030054754,0.013262113,0.23162948,0.32382366,0.15022011,0.3079481,-0.09642685,-0.20055334,0.054462608,0.20303354,-0.031259645,-1.0029397,0.40816358,0.18350394,0.67130876,0.46352944,0.018331798,0.019446472,0.48546496,-0.16320726,0.2275845,0.33024853,-0.096323684,-0.58229154,0.3852275,-0.6264004,0.5840561,0.113491155,-0.07295361,-0.020507058,-0.024147844,0.16360421,0.82153064,-0.09210971,-0.098566435,-0.018686993,-0.32773176,0.074931994,-0.34864298,0.015067903,-0.5514472,-0.30133867,0.39712662,0.47135913,0.3410447,-0.10495426,-0.050739136,0.020395812,-0.0693795,0.14316039,-0.083783254,0.061367355,0.12681721,-0.63511956,-0.3395219,0.4249563,-0.28700778,0.10149581,-0.071227506,-0.22346841,0.23920618,-0.1033251,0.010728343,0.025924172,-0.52210957,0.056682013,-0.074695274,-0.24813621,0.3950179,-0.27451906,0.41199857,0.10037688,0.013862564,-0.33591393,0.38533834,-0.020052908,0.6693495,-0.22722481,-0.19083251,-0.5346642,0.07277249,0.16938621,-0.1303918,-0.04014063,-0.30327466,0.0061375815,-0.4641075,0.28829896,-0.01358366,-0.21925873,0.0027469953,-0.42330703,0.0017667651,0.56995314,-0.07197411,-0.16179824,-0.20255576,-0.14647485,-0.21535069,-0.15157579,-0.19534935,0.22805944,0.12389514,0.050383464,-0.07950313,-0.19611983,-0.06504185,0.29202473,0.11248014,0.24736144,0.30554187,-0.076203935,-0.21822467,-0.2381794,0.16769163,0.3070661,-0.04379758,-0.04476245,-0.2708465,-0.47001684,-0.3661137,0.08024383,-0.17543958,0.35475904,0.13223521,-0.30714092,0.48759657,0.011817753,0.9113588,0.039677605,-0.2528636,0.08582635,0.5415299,0.21325938,0.08358096,-0.21477972,0.7505774,0.6734455,-0.07114153,-0.22415896,-0.1771622,-0.17757146,0.16575721,-0.14455391,-0.06463777,0.046382997,-0.6542391,-0.1836599,0.28419396,0.11795798,0.22568344,0.09287238,-0.17377645,-0.034693576,0.14598796,0.36854658,-0.3911542,-0.12819725,0.30685318,0.08170034,0.26641655,0.21860339,-0.4629658,0.46206513,-0.47680372,0.024260055,-0.13578254,0.19439769,-0.20031887,-0.18354866,0.1674544,0.030734815,0.39302924,-0.21933015,-0.4391592,-0.32970962,0.54749453,0.011952051,0.19544159,0.5171263,-0.16265719,0.04936694,0.008568951,0.49962854,0.9119591,-0.20154507,0.0009536902,0.46204728,-0.37854657,-0.50593936,0.16725609,-0.2920121,0.15788864,0.07046212,-0.15697552,-0.44947675,0.24530627,0.13210125,0.012314472,0.09863009,-0.58322006,-0.34042248,0.09716579,-0.24534711,-0.1924074,-0.28697115,0.13400911,0.7511403,-0.40267423,-0.2351015,0.0774147,0.28048542,-0.17725264,-0.5122897,-0.08462319,-0.4179181,0.31514102,0.12427257,-0.2377796,-0.14533135,0.11651703,-0.30649242,0.19851759,0.115937695,-0.37711382,0.11717607,-0.26452413,-0.020178366,0.8249945,-0.08616725,0.0063017607,-0.48747364,-0.2576827,-0.7886088,-0.28097102,0.47415748,0.10135265,-0.07762957,-0.4028873,0.09501315,-0.022526132,0.15968429,-0.08344632,-0.51045203,0.5730475,0.049417216,0.14697787,0.021907179,-0.84351563,0.040999316,-0.023006618,-0.17663051,-0.5046573,0.593779,-0.18847513,0.8374857,0.033021983,-0.037884165,0.1427634,-0.3807205,0.07094689,-0.29019117,-0.2837387,-0.62560266,0.11276896,434 -212,0.54258764,-0.246599,-0.46401307,-0.13401093,-0.23087756,0.33900234,-0.19774412,0.4323172,0.07745938,-0.44695294,-0.2027361,-0.20601763,0.14375392,0.48310146,-0.10974585,-0.5436607,0.16666655,0.2056728,-0.6124276,0.5778428,-0.47652674,0.36915454,0.046293817,0.33489358,0.081287034,0.36173362,0.15480514,-0.16628161,-0.3700551,-0.06235798,-0.037182026,0.16004378,-0.6095801,0.17580867,-0.16989027,-0.36857402,0.02451755,-0.48926392,-0.3591847,-0.6062968,0.120374694,-0.8361033,0.511467,-0.1235226,-0.23244566,0.41910014,0.14600195,0.33504808,-0.2837632,0.22173792,-0.0054142238,-0.020636294,-0.14695519,-0.30070373,-0.31365326,-0.5924426,-0.56829375,0.11092871,-0.45248488,-0.14528807,-0.014842431,0.048243944,-0.2570726,0.05330439,0.06740985,0.24948801,-0.39528444,0.04430207,0.19848748,-0.04453396,0.03505746,-0.36297145,-0.14525911,-0.13400497,0.4020987,-0.23488232,-0.13320352,0.27216455,0.43645996,0.54901284,-0.026727477,-0.16254619,-0.27825782,-0.014095739,0.2122889,0.6137908,-0.077269174,-0.54938114,-0.18329215,-0.0077323597,0.21121988,0.17964587,0.28528097,-0.2359538,-0.07375403,-0.14743312,-0.22815384,0.21732108,0.45957267,-0.4930841,-0.38013253,0.45482698,0.5532552,0.09782275,-0.10976561,0.11978779,-0.017978309,-0.43797973,-0.1772668,0.20328368,-0.1514101,0.5633674,-0.13491735,0.1678804,0.61902887,-0.25562224,0.08201766,-0.0033390084,-0.110295005,-0.091699705,-0.061091807,-0.2320419,0.08939996,-0.3240333,-0.013932964,-0.21036403,0.6205794,0.35103816,-0.6755302,0.39798632,-0.48208427,0.0988045,-0.12210252,0.45347995,0.61614996,0.37281168,0.081294656,0.52368087,-0.3634514,0.10820875,-0.184863,-0.2886688,-0.008437932,-0.27934203,-0.15199734,-0.5326592,0.2850355,0.036243536,-0.11862152,0.11756339,0.44532606,-0.42860827,-0.07200251,0.10442243,0.833314,-0.32861263,-0.19108939,0.79677075,0.96087736,0.8435312,0.0016756833,1.348993,0.49221423,-0.20223993,0.04956076,-0.3878952,-0.6142731,0.28427663,0.40187228,-0.44220915,0.54344505,0.08724427,-0.029447485,0.29993975,-0.24911736,0.015019019,-0.11161947,0.1019698,0.08391218,-0.14289276,-0.28745282,-0.2345747,-0.078258514,-0.16583358,0.30500597,0.26041034,-0.19057003,0.39915147,-0.031629372,1.8752548,0.040943615,0.03747534,-0.13110633,0.4498315,0.23708993,-0.08249641,-0.11400983,0.35421208,0.2884801,0.026578037,-0.5188796,0.08299964,-0.20541224,-0.59688514,-0.2394378,-0.3317428,-0.008548474,-0.03466981,-0.39279366,-0.13415232,-0.063403204,-0.14731741,0.51349026,-2.6517127,-0.34108797,-0.070747495,0.37187654,-0.4182478,-0.33380902,-0.38154152,-0.40985182,0.28428108,0.2590248,0.44057867,-0.68755364,0.47225678,0.21441571,-0.44226745,-0.2365254,-0.513542,-0.076155625,-0.08498539,0.31080717,-0.1657067,0.009996502,0.26832542,0.12820335,0.45628703,-0.12606026,0.07549556,0.22494617,0.40996578,0.28942686,0.3243815,-0.008741426,0.59564763,-0.3014874,-0.20149669,0.3634239,-0.29265928,0.32135952,0.01248302,0.16869082,0.25096285,-0.48932686,-0.7750902,-0.7087298,-0.21423617,1.0531418,-0.22631845,-0.3593408,0.03906629,-0.028267376,-0.19052012,-0.026879616,0.32058176,-0.07386096,-0.11975361,-0.7372945,-0.022608537,0.11945069,0.1481922,-0.05721822,0.18237475,-0.31587043,0.3703621,-0.10194448,0.43701306,0.15163739,0.31785482,-0.024401283,-0.42644787,0.15652078,1.0125328,0.34499472,0.14390928,-0.11637686,-0.32805404,-0.32101497,-0.051946647,0.09460737,0.3802245,0.65683836,0.020830495,0.037974156,0.24672154,0.017987955,0.17073599,-0.09993162,-0.27245033,-0.07735274,-0.047657795,0.48388854,0.39937577,-0.18051535,0.67496514,-0.25289413,0.29175237,-0.20795529,-0.4494821,0.53913915,1.0019157,-0.33376735,-0.24458064,0.42603728,0.35966504,-0.43224427,0.4507558,-0.6991294,-0.31597424,0.42237297,-0.1664591,-0.25338027,0.3574713,-0.17791338,0.17506264,-1.0693185,0.3679979,-0.1899597,-0.17132495,-0.43563712,-0.062702574,-3.2227342,0.066092394,-0.040225253,-0.16019192,0.03475038,-0.1408365,0.11083523,-0.58151424,-0.51178247,0.2986674,0.0038854082,0.7310871,-0.04056799,0.26405704,-0.2514762,-0.3101538,-0.34757754,0.19291785,-0.0060998024,0.37737125,-0.022320224,-0.4502615,0.019323412,-0.25585315,-0.25741893,0.17451675,-0.6670097,-0.46235836,-0.25638145,-0.40900338,-0.22289354,0.65209305,-0.35746473,0.018889105,-0.1992314,-0.055638324,-0.23042892,0.27066436,-0.033362944,0.15081628,0.14475702,-0.11176095,0.06402339,-0.2776836,0.3695555,0.15503411,0.20560858,0.43853536,-0.12603109,0.16790657,0.44772884,0.58048266,-0.08577065,0.5125495,0.47374538,-0.07678084,0.3377079,-0.46367767,-0.07555329,-0.38831088,-0.48258334,-0.16018876,-0.3864924,-0.6321208,-0.15208188,-0.329776,-0.7021175,0.5141173,0.003766038,0.022452127,-0.111103006,0.2626227,0.54378307,-0.26450628,0.04852248,-0.12926526,-0.12970784,-0.4869663,-0.3595077,-0.5105622,-0.43615732,0.31937847,0.9920201,-0.17012501,-0.052555274,-0.06791529,-0.11428172,-0.024013495,0.009915622,-0.041200817,0.037825234,0.46115965,-0.15694954,-0.6996648,0.43461025,-0.28368086,-0.2988215,-0.5214639,0.21178092,0.5905887,-0.6606477,0.64221054,0.40765172,0.09706895,0.1966252,-0.44738185,-0.1383627,-0.03511095,-0.21861553,0.18695065,0.0932414,-0.8054771,0.40595484,0.3215481,-0.44416216,-0.7132168,0.5830423,0.1186728,-0.21363279,0.08076416,0.2909115,0.24410187,-0.02382751,-0.5604923,0.19445625,-0.66911775,0.31675848,0.31546992,0.027116705,0.28964078,-0.072192825,-0.15808302,-0.74587923,-0.08747649,-0.46305454,-0.35790947,0.20057635,0.11210565,0.17480174,0.08205695,0.10724218,0.39606762,-0.6099175,0.14762478,0.10346263,-0.20729944,0.24740645,0.28549603,0.381563,-0.5131807,0.52725726,-0.00058473746,-0.12495572,0.0894841,0.11759755,0.46579638,0.34700042,0.18868503,0.26072434,-0.186756,0.24005897,0.66816705,0.24375452,0.30175036,0.2272722,-0.36456245,0.24374917,0.090440944,0.12907812,0.0027718623,-0.3012351,-0.13956502,-0.040932346,0.18311307,0.42047137,0.20260862,0.35313976,-0.05787495,-0.34933102,0.007861304,0.08514786,-0.0054852883,-1.0656213,0.23820442,0.11349078,0.6664224,0.41911134,-0.023586726,0.20498905,0.44156516,-0.24150859,0.12224308,0.36889064,-0.17298803,-0.44861552,0.5030336,-0.4920578,0.28536034,0.05518001,0.007999997,0.00022753874,0.04559327,0.3229922,0.9028693,-0.07651775,0.23616555,-0.005730599,-0.27374077,0.034801364,-0.39636356,-0.00096779066,-0.5380755,-0.17908049,0.6172632,0.33895886,0.3072711,-0.19728504,0.053539746,0.13079314,-0.14280109,0.09450755,0.23394568,0.34462267,-0.026597448,-0.68141437,-0.34765238,0.63073605,-0.097551316,0.052611776,0.10765692,-0.34678748,0.26546347,-0.26180103,-0.011825574,0.017166765,-0.677912,-0.19970235,-0.36127606,-0.33879337,0.3581785,-0.08292107,0.1628036,0.14587332,-0.008879966,-0.31011766,0.44574445,0.19027726,0.7204104,-0.026409928,-0.2773321,-0.42002872,0.2181824,0.3106645,-0.29849556,0.13669871,-0.101392195,0.060039394,-0.57267386,0.49597415,-0.043093577,-0.3028344,-0.03873811,0.038906302,0.049558412,0.53552544,-0.17950107,-0.08775881,0.10883788,-0.16448234,-0.3925625,-0.014114467,-0.19883868,0.15412425,0.32007235,-0.1898789,-0.087926574,-0.027650945,0.06926866,0.42873606,-0.0773761,0.35017845,0.3835308,0.14394219,-0.19057178,-0.10603556,0.20524979,0.3795796,-0.076050065,-0.08878129,-0.35871843,-0.36172524,-0.1931923,0.049968217,-0.25606287,0.23798886,0.11504405,-0.26644817,0.70056623,0.086210646,1.1687354,0.05942201,-0.36025506,0.1784232,0.33303395,0.041339274,0.004345547,-0.41601345,1.0146118,0.50752366,0.047177568,-0.057082076,-0.36628598,-0.2324564,0.14045782,-0.27126077,-0.38328457,0.03296543,-0.56882876,-0.5512951,0.19593503,0.14858662,0.22459255,-0.14378884,0.3432783,0.22644135,0.13860424,0.21858393,-0.5196174,-0.3648825,0.35473308,0.42648742,0.030439286,0.14779054,-0.36938506,0.37528738,-0.55711675,-0.010562325,-0.18242179,0.15871212,0.034374077,-0.34023717,0.21866134,0.2517031,0.299453,-0.30141178,-0.48631537,-0.22066413,0.49570426,0.06818002,0.09919355,0.57644683,-0.24831632,0.044598326,0.04498228,0.4964048,1.117864,-0.19712307,-0.00046124856,0.5643606,-0.32714233,-0.6646773,0.48886257,-0.22877187,0.28949896,-0.15140961,-0.23124415,-0.77685916,0.4423909,0.17291957,0.024645964,0.0590206,-0.414726,-0.16215661,0.3790531,-0.35398942,-0.3139948,-0.41654146,0.17150228,0.8208316,-0.3186822,-0.19564942,0.18871015,0.2891473,-0.34261626,-0.49375254,-0.21978179,-0.31975135,0.22588444,0.1661231,-0.29761654,-0.16053371,-0.044655148,-0.31017417,0.23268427,0.2598872,-0.29461777,0.1397079,-0.47095382,-0.052488703,0.8847717,-0.26345423,0.082155354,-0.66112083,-0.38306874,-0.89893925,-0.4200601,0.36022398,0.10069712,-0.08323581,-0.53106284,0.09862742,-0.03225647,-0.26637247,0.0033065677,-0.3643113,0.41694865,0.025268465,0.23570086,-0.098072104,-0.79159826,0.16295354,0.21235624,-0.31791788,-0.6028276,0.43177864,-0.083440565,1.1171308,0.09403975,-0.0116063235,0.4929827,-0.49372515,-0.09552369,-0.31784764,0.04910079,-0.649571,0.13056569,439 -213,0.26896745,-0.10740343,-0.5708771,-0.12883179,-0.3833991,0.16756882,-0.18735124,0.1541665,0.15284277,-0.2363693,0.09495448,0.067301616,0.05699042,0.5198067,0.03781362,-0.5249085,0.10475676,0.06934023,-0.53529716,0.6135422,-0.3958758,0.45458496,-0.14533135,0.3236686,-0.092351526,0.40553412,0.22465502,-0.009378354,0.071164705,0.07112017,-0.14542475,0.21984115,-0.3323936,0.13824199,0.22496305,-0.14825891,-0.062958434,-0.16412076,-0.51194483,-0.57234484,0.43711206,-0.71423745,0.45763084,-0.002926926,-0.3227035,0.20764692,0.14938416,0.28228563,-0.26616022,-0.024733407,0.17929812,-0.0102407215,-0.006647726,-0.19501378,-0.21296965,-0.6044502,-0.46010673,0.017689547,-0.67959684,-0.42818195,-0.40006727,0.19206928,-0.37383428,-0.09431238,0.0047375243,0.24779858,-0.5199214,-0.04898065,0.21555112,-0.3324429,0.13040875,-0.5620043,0.03398638,-0.059587978,0.13816282,-0.0077008805,-0.11005703,0.3226699,0.34056658,0.54076993,0.06858475,-0.28663716,-0.3375582,-0.2549183,0.16087481,0.4890705,-0.16464345,-0.38150012,-0.21576685,0.011812897,0.09412577,0.07167559,0.041501537,-0.45957634,-0.13478562,0.11491553,-0.18840875,0.30770475,0.37445953,-0.46590653,-0.2682778,0.49724343,0.42559382,0.16733167,-0.32981396,0.13754915,0.03674818,-0.35051352,-0.16508318,-0.06950946,-0.13324882,0.47388694,-0.18504009,0.3467134,0.7636854,-0.11768742,0.11831937,-0.055057224,0.008131657,-0.14134921,-0.1107031,-0.004125754,-0.05282827,-0.38633636,0.115316026,0.0039026698,0.72335804,0.10539201,-0.5853477,0.52782935,-0.440945,0.20001386,-0.17089157,0.52365357,0.7796266,0.29917967,0.13796881,0.7649247,-0.35849476,0.12116823,-0.03691281,-0.4463678,0.20851485,-0.20237708,-0.14234997,-0.5210846,0.14052705,0.21510503,-0.09196282,0.03044182,0.47134152,-0.50790435,-0.07454698,0.17267632,0.8146736,-0.2986413,-0.09089853,0.38032082,0.9480196,0.7728804,-0.017269773,0.93897754,0.3023557,-0.18798889,0.17592493,-0.35434955,-0.6940746,0.16871881,0.43652865,0.465964,0.39010665,0.07835189,-0.037259087,0.4290642,-0.28744125,0.056267783,-0.11729201,0.27144825,0.14204147,-0.17514782,-0.44891873,0.05252371,0.10194211,0.074892215,0.0632107,0.2126976,-0.28326887,0.20576015,-0.0025974275,1.6608016,-0.087926544,0.13413247,0.037911654,0.614199,0.381332,-0.1250746,-0.047601882,0.39843225,0.2636474,0.03722073,-0.65760416,0.17302996,-0.2883279,-0.59213704,-0.21397178,-0.34386963,-0.10762766,0.08921233,-0.5705139,-0.114803426,0.15151149,-0.21851291,0.32618293,-2.8045163,-0.18918997,-0.1880236,0.3438596,-0.36039332,-0.17524824,-0.16743985,-0.2689048,0.29393238,0.45491067,0.40634638,-0.6712808,0.31573817,0.54525936,-0.38775623,-0.045670215,-0.4319671,0.051530045,-0.1908882,0.5960019,0.05245511,-0.17646663,-0.07344203,0.34207574,0.42825297,-0.08551493,0.059865322,0.2764784,0.22092246,0.03338178,0.36629677,-0.013264817,0.4971295,-0.115885355,-0.2170908,0.25451177,-0.20726734,0.11201512,-0.16538692,0.1165984,0.3390215,-0.27908713,-0.88370097,-0.55210805,-0.17983995,1.0947748,-0.3310657,-0.46956456,0.4315707,-0.43523982,-0.0973777,0.100488216,0.44388637,-0.04046567,-0.013532472,-0.7058899,0.36357656,-0.15080157,0.14913702,0.063169256,-0.044321317,-0.28319255,0.6760188,-0.09129922,0.5561408,0.25162166,0.22978045,-0.15307373,-0.38177168,0.13094571,0.6316496,0.40605417,0.10840314,-0.20145728,-0.17551139,-0.1428574,-0.34476584,0.17013834,0.38601393,0.63775223,0.0616539,0.10716956,0.06919976,-0.16583137,-0.08660764,-0.18582882,-0.23035093,0.12896803,0.1650863,0.4773941,0.53852,-0.36018926,0.43757012,-0.050545827,0.15110968,-0.16830514,-0.63582575,0.5789191,0.7971772,-0.18277289,-0.21716096,0.6579115,0.3105469,-0.42388472,0.33995023,-0.81151426,-0.23992325,0.52070916,-0.2497082,-0.31183183,0.18566367,-0.35106486,0.12765911,-0.73617005,0.23396407,-0.036958773,-0.47527802,-0.34565744,-0.34756836,-3.8936741,0.13104327,-0.2960149,-0.050230518,-0.041519817,0.06416848,0.29321855,-0.5741328,-0.48469648,0.17279415,0.018194227,0.57376534,0.034800522,0.086347915,-0.25821432,-0.09164173,-0.13774936,0.25452718,-0.07217509,0.37501648,-0.07894461,-0.5468122,-0.04434751,-0.073152415,-0.46483982,-0.0026819468,-0.6028709,-0.36557525,-0.24490817,-0.49806774,0.05291619,0.66724396,-0.16134758,0.022204872,-0.29236275,0.024899192,-0.22110555,0.37459272,0.2208115,0.05469084,0.14157984,0.08474771,0.017691517,-0.43621635,0.2476093,-0.012706732,0.30462307,0.3981675,0.006018609,0.061840605,0.5992919,0.52079654,-0.19418456,0.72728896,0.6033174,-0.21242818,0.35037655,-0.24721844,-0.12458932,-0.4750307,-0.5333065,-0.10113835,-0.3281584,-0.52455634,-0.11312131,-0.31058592,-0.7175875,0.3816784,-0.0010423899,0.2727101,0.10005762,0.075788274,0.38608322,-0.10474817,-0.096909,-0.025091164,-0.22675554,-0.6288399,-0.34932372,-0.4032225,-0.5185267,0.27987766,0.8358333,-0.17551391,-0.093036786,-0.10851801,-0.22802779,-0.32125142,0.027116176,0.22041363,0.26270905,0.2142795,-0.13751528,-0.62509435,0.43654177,-0.18082194,-0.11906057,-0.54809725,0.081680365,0.4132194,-0.5474838,0.44234422,0.24213572,0.2238848,-0.04788577,-0.4955767,-0.2765025,0.12833615,-0.21978925,0.42129698,0.03024272,-0.86823326,0.50874865,0.29243782,-0.32312804,-0.57018214,0.4565446,-0.11328093,-0.37374324,-0.13589387,0.33708572,0.10707751,-0.030177813,-0.3628707,0.19397749,-0.55107814,0.21306553,0.22434494,-0.15647568,0.54402834,-0.17041518,-0.24066612,-0.50323164,-0.07935725,-0.46113694,-0.23898989,0.04084819,0.0795825,0.09182118,0.08884533,-0.1488354,0.4427676,-0.22887649,0.097714804,-0.07276132,-0.31200975,0.30932277,0.42069384,0.3707404,-0.40015844,0.6449216,0.00030736823,0.040377658,0.017215466,0.057153787,0.5802938,0.19377418,0.43529505,-0.09274291,-0.0449601,0.33002174,0.9661921,0.20209248,0.4064799,0.14292297,-0.32311738,0.17935805,0.09430125,0.03482069,-0.0054808715,-0.37548053,-0.051774185,-0.13686393,0.27683115,0.47991142,0.31690514,0.2694192,-0.061973203,-0.29378784,0.2783443,0.13182975,0.082124546,-1.2095453,0.31369972,0.32401893,0.5442698,0.34032905,0.05759793,-0.094610244,0.69811004,-0.21496609,0.07416689,0.40925542,-0.18939985,-0.5943126,0.49025312,-0.70051485,0.4917439,-0.11258684,-0.0844049,0.17221728,0.15998983,0.23794064,0.7721849,-0.0026563844,0.006779309,0.022849003,-0.30439535,-0.002625068,-0.2438187,0.0021559636,-0.45909664,-0.359191,0.49837723,0.50849086,0.11784434,-0.10509611,-0.024316497,0.07885714,-0.03951012,0.08244583,-0.19198619,0.09573933,-0.17589077,-0.5968185,-0.38269183,0.46668735,0.3034379,0.20328824,-0.04783971,-0.09281362,0.25748524,-0.15859774,-0.12175682,0.015975077,-0.5793485,0.08849721,-0.1798217,-0.5619081,0.6776878,-0.24465476,0.3624044,0.08518101,-0.027204253,-0.3008861,0.49090147,-0.033371396,0.68873,-0.067001335,-0.017703746,-0.3377456,0.016614746,0.13794388,-0.17546077,-0.13212852,-0.30311787,0.03736017,-0.5934557,0.43529007,-0.18022205,-0.25083753,0.20256549,-0.32748285,0.09207278,0.442316,-0.014954076,-0.34564635,0.0141388895,-0.15446499,-0.31981885,-0.2237486,-0.19658905,0.29799044,-0.0058306833,-0.119568996,-0.13019241,-0.210242,-0.059074398,0.37980828,-0.084992565,0.31735742,0.30063623,-0.031850565,-0.20085564,-0.09626408,0.484767,0.44096896,0.0017415951,0.2734982,-0.027083572,-0.43807703,-0.43063775,-0.010915989,-0.14972925,0.32199106,0.22113034,-0.3800053,0.71380776,0.08724819,1.1106781,0.061417706,-0.3586419,0.24715382,0.46916518,0.15893093,0.119806886,-0.30532557,0.76708233,0.73395634,0.052263778,-0.23849179,-0.35839856,-0.21668401,0.33387795,-0.33371383,-0.038075868,-0.024761982,-0.7924507,-0.2502575,0.24864857,0.10085547,0.060595706,0.022208298,-0.04697315,-0.12125597,0.06626714,0.21898752,-0.5893863,-0.00405768,0.38346985,0.27153763,0.0723032,0.17977871,-0.5141306,0.5500243,-0.6467965,0.15044023,-0.2918003,0.19742697,-0.17986913,-0.22456628,0.2078016,0.083568424,0.38711017,-0.10566518,-0.28548527,-0.24956438,0.51999533,0.048101746,0.19634227,0.58110774,-0.27111292,0.13370919,-0.08407815,0.44529706,0.9449735,-0.29026952,0.039987557,0.30539054,-0.28707945,-0.80723757,0.35417932,-0.21888584,0.23573822,0.027368577,-0.28032753,-0.525173,0.23300551,0.09721539,-0.11278558,-0.014257888,-0.3427703,-0.26415756,0.068954244,-0.20220213,-0.15614696,-0.25614497,0.17007726,0.74278235,-0.32125765,-0.19015694,0.16854759,0.44349414,-0.1577391,-0.6474791,0.17400764,-0.1254169,0.41743007,0.1980445,-0.3721631,0.04961645,0.16579764,-0.45960334,0.15325975,0.3689147,-0.45030123,0.119898655,-0.26531383,-0.005699877,0.96503794,-0.07169805,-0.010397641,-0.75520396,-0.525858,-0.8381596,-0.39594123,0.2953061,0.23393002,-0.039777283,-0.5375771,0.0021755616,-0.13506956,0.10671555,-0.026974298,-0.6294441,0.43780333,0.008076872,0.35136992,-0.086061254,-0.78362113,-0.13163637,0.03828531,-0.1654337,-0.6300059,0.57936215,-0.2786627,0.879501,0.10346565,-0.04794926,0.20527667,-0.40244955,0.10821877,-0.29419273,-0.28694314,-0.6682914,0.039246812,441 -214,0.38652596,-0.1133988,-0.43247327,-0.06558145,-0.63056165,-0.026060645,-0.33389422,-0.096490026,0.50690854,-0.25420934,-0.34419835,0.01879453,0.019440738,0.21473464,0.0039238823,-0.44042426,0.013180369,0.36495963,-0.88250595,0.89232033,-0.38906452,0.22646569,0.18968433,0.48295468,0.18807422,0.23334843,0.27069312,-0.007845449,-0.3127365,-0.30909756,0.07389222,0.116916664,-0.694039,0.36475143,-0.420042,-0.370707,-0.07980586,-0.50207955,-0.18911679,-0.8320009,0.1422134,-0.9297409,0.5759879,-0.07918256,-0.11708448,-0.17255592,0.5546504,0.26055,-0.15617207,-0.18205366,0.28587386,-0.25173357,-0.4895119,-0.29203066,0.021211147,-0.28550455,-0.43374854,-0.10370984,-0.26422197,-0.008601991,-0.33217117,0.36791816,-0.20344052,-0.022109063,-0.2688122,0.55105126,-0.30566394,0.2720514,0.23731002,-0.19287401,0.073717274,-0.60679,-0.13889907,-0.1778646,0.35832042,0.21083452,-0.21147195,0.495286,0.40106142,0.53795695,0.3408164,-0.47206408,-0.2684901,-0.080507725,0.4007216,0.36167976,-0.18101178,-0.040123034,-0.25364912,-0.04082379,0.4591597,0.26187554,0.29850572,-0.42543405,0.06174077,-0.35111418,-0.02168812,0.53213567,0.42198056,-0.124843486,-0.03900575,0.18015558,0.53115904,0.40823942,-0.3306226,-0.081713244,-0.12092821,-0.5878302,-0.07687654,0.105725765,-0.028895162,0.43601266,-0.1598515,-0.030007469,0.70035523,0.0793887,-0.23991491,0.2453995,0.26001254,0.06888007,-0.30750006,-0.3720241,0.42030653,-0.56433874,0.067885734,-0.38536358,0.43833357,-0.022205738,-0.6355809,0.2645694,-0.6578093,0.30608985,0.028476255,0.52502835,0.7936027,0.52977484,0.4105033,0.8689445,-0.2190189,0.08479243,0.0045452835,-0.31189603,0.10762138,-0.44900268,0.19295746,-0.49784133,0.10126633,-0.36381906,-0.016796289,0.07097337,0.45759362,-0.5413605,-0.32386035,0.10601783,0.6921484,-0.21718672,-0.035334524,0.9243816,1.072231,1.4094803,0.08938178,1.279983,0.244484,-0.25098553,-0.34091997,-0.087018356,-0.7072143,0.2192064,0.33378616,-0.24851583,0.22139817,-0.094682805,0.04607869,0.40582636,-0.4532601,-0.25372612,-0.13737251,0.39184555,0.09304322,-0.11331882,-0.4375989,-0.24678345,0.10931419,-0.06517453,0.31697482,0.31215662,-0.22859277,0.40508226,-0.0260191,0.9255529,-0.20852627,-0.077297546,0.10696873,0.19640996,0.2551257,-0.25036505,-0.07031714,0.10456176,0.18813096,-0.12823766,-0.40284425,0.09531482,-0.34946424,-0.42603272,-0.086089745,-0.25505528,-0.35249588,0.14723593,-0.20282291,-0.3243208,-0.1508369,-0.16980682,0.4138034,-2.2841098,-0.16088858,-0.30812663,0.32139647,-0.35062736,-0.06631526,-0.07076599,-0.50174624,0.3148499,-0.0010163427,0.5645255,-0.48278695,0.5000686,0.5473841,-0.9068156,-0.18240331,-0.68904465,-0.12850715,0.15915368,0.50743103,0.006696681,-0.1835006,-0.009951339,0.20392206,0.6202642,0.174062,0.3062073,0.7792459,0.39736283,-0.06612911,0.41798934,0.14258222,0.6096933,-0.4216255,-0.25409478,0.47023946,-0.36427832,0.61544406,-0.17413782,-0.03101296,0.847046,-0.49687755,-0.7911469,-0.5688103,-0.15815005,1.0385529,-0.28002194,-0.5835322,0.0429224,-0.2389362,-0.03937678,0.22372094,0.59433067,0.011128727,0.09625486,-0.81570536,-0.09314318,0.123022035,0.21377611,-0.05787731,-0.047937755,-0.37075073,0.96035314,-0.08946707,0.48087198,0.33159408,0.3555049,-0.34925476,-0.2906875,0.23877177,0.6491576,0.48643726,-0.018074095,-0.34123522,-0.28447813,-0.16510585,-0.36246613,0.06146807,0.7095738,0.35329637,-0.26567513,0.106397554,0.27672347,-0.07173597,-0.00036301216,-0.36763304,-0.35486168,-0.21904966,-0.06703076,0.67550385,0.9411007,0.092963606,0.4350154,-0.12364534,0.24711244,-0.024580842,-0.74072593,0.6736853,0.77851105,-0.25962368,-0.1139773,0.5919392,0.4823923,-0.32264194,0.5985718,-0.5546407,-0.45569292,0.31354347,0.057697255,-0.44880906,-0.04750829,-0.3449964,0.2073965,-0.53158647,0.49833643,-0.5553144,-0.34472924,-0.5029566,-0.12392581,-1.2863462,0.39275083,-0.19431487,-0.049033143,-0.38676843,-0.08334788,0.13909088,-0.5070597,-0.85883194,0.178924,0.14450374,0.6453213,-0.15656191,0.20513707,-0.12674192,-0.45085984,-0.061176267,0.07917584,0.20445539,0.30557278,-0.20479682,-0.32990646,-0.001207606,-0.07368041,-0.33990914,0.01728791,-0.66590947,-0.68740237,-0.08556107,-0.43614033,-0.2604451,0.48796022,-0.57347757,0.15781109,-0.381406,0.00046070566,-0.0016563535,0.1197519,-9.4572704e-07,0.4577108,0.262424,-0.09025813,0.039898,-0.02923197,0.48055094,0.09355715,0.23180316,0.34400436,-0.15454578,0.2339471,0.31891313,0.9114038,-0.2568232,1.1464275,0.27994823,-0.06547157,0.14097808,-0.17046283,-0.49817386,-0.6692442,-0.1427642,0.13108698,-0.49088925,-0.33885816,0.12743202,-0.2615112,-0.90415394,0.73049664,0.11362118,0.2918469,-0.053355694,0.014899,0.40521082,-0.2106887,-0.14203697,-0.06589849,-0.19210745,-0.5373783,-0.38445032,-0.6580792,-0.42037347,-0.088582516,0.9794144,-0.27830786,0.098095275,0.2627443,-0.40393466,0.13460384,0.094811045,-0.23756412,-0.012197224,0.5341122,0.34607905,-0.67324984,0.33989325,0.17882991,0.11660053,-0.3247728,0.5808104,0.62590504,-0.50811756,0.6441533,0.51204675,-0.00087016023,-0.2314268,-0.70831907,-0.23502807,0.024419168,-0.32251033,0.55680645,0.33069086,-0.72041285,0.33843046,0.3017244,-0.5747073,-0.8465564,0.3929339,-0.09759892,-0.21381894,-0.07659977,0.41535056,0.125344,-0.011871616,-0.1852276,0.2302927,-0.3453175,0.4507321,-0.020308161,-0.15066192,0.029226955,-0.32234222,-0.45638102,-0.93234575,0.058690075,-0.5590398,-0.41846704,0.2923414,-0.065263845,-0.19282189,0.16344097,0.4837122,0.29213133,-0.1642301,-0.015654929,-0.29868945,-0.3750435,0.30699807,0.55320895,0.5381958,-0.3697337,0.553862,0.18142526,-0.21716604,0.10934145,-0.0825383,0.19299902,0.08310738,0.45043847,0.008629203,0.06881566,0.115263104,0.67241395,0.049600624,0.23479728,-0.0385655,-0.23239651,0.42131862,-0.16439062,0.4168226,-0.2739455,-0.45671165,-0.07575991,-0.11344138,0.030472675,0.530389,0.23019342,0.25360912,0.10093,-0.21570028,0.012304133,0.051719714,-0.06899258,-1.593081,0.40461487,0.20801617,1.0149279,0.69866055,-0.053101975,-0.14291154,0.89041406,-0.2801481,-0.0492872,0.3854216,-0.09967646,-0.37107357,0.61103326,-0.6159976,0.28246826,-0.32794517,0.019518351,0.04812826,0.2370192,0.25282595,0.78026354,-0.2241903,0.13127324,-0.32507998,-0.19453172,-0.020947166,-0.19318612,0.20054843,-0.2812566,-0.6332639,0.86534894,0.44544113,0.57615906,-0.39930883,0.047249626,0.04390707,-0.2785343,0.24097733,0.12416215,-0.09997587,0.04096062,-0.4932173,0.09701422,0.5753681,-0.37142316,0.0992013,-0.06285833,-0.17981052,-0.056032136,-0.22862308,-0.14758164,-0.10736946,-0.88449633,-0.108752996,-0.2642151,-0.32111886,0.21971779,-0.13510567,-0.11353455,0.14012466,0.014114801,-0.20446461,0.41404662,0.13786131,0.74664766,0.15236965,-0.10717675,-0.0073180515,0.28936383,0.16495815,-0.0827305,0.31649157,-0.099392384,0.2182552,-0.49873984,0.64888775,-0.13773306,-0.55058473,0.10990674,-0.09060254,-0.04770026,0.3939112,-0.19397224,-0.27014688,0.11903678,-0.17264065,-0.40158752,-0.025476066,-0.16436726,0.19714803,0.25611123,-0.09863881,-0.20758978,-0.24625872,-0.29887754,0.6009659,-0.041824803,0.46043497,0.4638656,0.013036823,-0.5718468,0.2384078,0.24756359,0.6328245,0.13555962,-0.2009621,-0.42613807,-0.25378305,-0.5075559,0.54099655,-0.101689555,0.12748829,-0.13891909,-0.25083652,0.9948016,0.008753519,1.2379973,-0.031522807,-0.32789642,0.07156811,0.5213665,-0.2195357,-0.021284968,-0.39894918,0.729767,0.50289375,-0.23387899,0.10067525,-0.59302765,-0.006963515,0.27043793,-0.44612178,-0.047198612,0.0069193305,-0.5783959,-0.2610239,0.031638123,0.20184389,-0.08135513,-0.20207088,0.06001658,0.19334932,0.15496905,0.45608252,-0.7229534,-0.3634826,0.25727904,0.376427,-0.15984543,0.079179175,-0.31032807,0.2351946,-0.7162055,0.20509095,-0.27493516,0.076440066,-0.28076553,-0.403029,0.06491148,-0.04917332,0.27678463,-0.5277999,-0.31326225,-0.19575523,0.41238514,0.17242132,0.07078169,0.69682604,-0.2727445,-0.00039522848,0.36512512,0.47927582,1.0335171,-0.37659565,0.01806319,0.280091,-0.40432614,-0.5286092,0.45819512,-0.34260422,-0.11101629,-0.008958801,-0.4917565,-0.5543863,0.12511404,0.22615841,0.16935375,-0.027552279,-0.7796648,-0.008251055,0.44229928,-0.2054121,-0.12864801,-0.18535402,0.113758534,0.41845804,0.038027413,-0.39849514,-0.029646715,0.18527724,-0.3010287,-0.54849946,-0.013045875,-0.55582017,0.3379396,0.0201564,-0.34006253,-0.20995663,-0.07626111,-0.6285207,-0.056808893,0.06504829,-0.24976209,0.17004985,-0.19323249,0.14032888,0.79273385,-0.24766506,0.17427997,-0.42405784,-0.5978081,-0.8487944,-0.2043115,-0.15940197,0.14562576,-0.073762745,-0.55543005,-0.11514707,-0.16200349,-0.30290714,0.21576889,-0.58707654,0.22720197,0.3512079,0.36743814,-0.30646998,-0.94601417,0.13474433,0.17408974,0.071185656,-0.38154075,0.4283121,0.06555453,0.7962765,0.12006923,-0.16156629,-0.16575459,-0.4238098,0.23145825,-0.28775874,-0.028972857,-0.5623402,0.0934923,456 -215,0.39893162,-0.27513134,-0.45944378,-0.033637475,-0.31174165,0.26648477,-0.224493,0.356489,0.21880385,-0.3677296,-0.18778022,-0.21917261,-0.015666299,0.2634962,-0.09231173,-0.4774355,-0.047826655,0.21653247,-0.5173281,0.4515332,-0.44078532,0.26600334,-0.063328214,0.412376,0.15309456,0.2570921,-0.008792253,-0.055902123,-0.05362066,-0.26638168,-0.2749125,0.2430659,-0.3473919,0.20338202,-0.1015409,-0.22325799,0.0652197,-0.422354,-0.40777,-0.68820816,0.22725011,-0.81209755,0.45772177,-0.04377501,-0.22556782,0.35324818,0.13568054,0.3632331,-0.16736025,-0.04956247,0.16705759,-0.18558596,-0.13328846,-0.1917452,-0.270501,-0.3576294,-0.44992113,0.09795694,-0.23023123,-0.16067824,-0.2355189,0.15160926,-0.2705509,0.018761834,-0.05412874,0.46874878,-0.30601978,0.27451274,0.31221452,-0.25124106,0.17435858,-0.49771416,-0.1186413,-0.048015308,0.38550365,-0.08570119,-0.11730423,0.17389669,0.30146295,0.4209674,0.0010551374,-0.17523393,-0.2591251,-0.102130145,0.045324706,0.5942576,-0.14265624,-0.21648288,-0.13628465,0.114829145,0.05810138,0.21948798,0.14486483,-0.22331055,-0.2449949,-0.08368589,-0.2674711,0.254949,0.34777805,-0.33047402,-0.16487056,0.3526753,0.5571198,0.23977055,-0.08728221,-0.0048523825,0.0716531,-0.50284415,-0.10649813,-0.004790632,-0.15850039,0.37719557,-0.17662899,0.3691246,0.72300684,-0.045431886,-0.049658794,0.058448814,0.06803334,-0.26643065,-0.27382573,-0.04959711,0.23008355,-0.35425338,0.23677579,0.030770082,0.7963149,0.13846442,-0.51164335,0.3559539,-0.5712607,0.21987948,-0.10773623,0.4822587,0.53590864,0.30366567,0.37139353,0.6759819,-0.33707675,0.11717863,-0.1794326,-0.47165075,-0.0365356,-0.08367948,-0.06046052,-0.52629334,0.2065585,0.06907559,-0.04102192,0.1264525,0.2719045,-0.53060853,0.008700303,0.1396578,0.91147447,-0.18850726,-0.22712971,0.72831833,0.83475804,0.81854415,-0.00662694,1.0660021,0.17482957,-0.24149957,0.07873664,-0.19690758,-0.66232646,0.32864732,0.38586494,-0.20422669,0.38650098,0.19956166,-0.06644816,0.43603453,-0.18984611,-0.06167204,-0.14852484,-0.028109057,0.07856913,-0.037909616,-0.5198077,-0.27372512,-0.050104942,-0.089382716,0.24605672,0.22143345,-0.036076196,0.4230078,0.018669853,1.799132,-0.05780097,0.09997327,0.11988466,0.33573535,0.17625989,-0.05208937,-0.13261737,0.45580044,0.27893108,0.14215712,-0.46542466,0.15939544,-0.17809767,-0.3679531,-0.054945447,-0.26906845,-0.14674467,-0.011225927,-0.33044305,-0.14661138,-0.22202727,-0.2811415,0.44051018,-2.9048626,-0.114695095,-0.14808077,0.22074631,-0.36624253,-0.32018915,-0.0496231,-0.39814112,0.25225842,0.26704434,0.40527192,-0.61520976,0.36392567,0.35251692,-0.5718573,-0.15775792,-0.5717426,-0.0729386,0.018649915,0.32428256,0.049137402,-0.034372076,-0.13838957,0.13248776,0.39441517,-0.0038037659,0.11595071,0.3449112,0.5279821,0.09504504,0.59190166,0.025965648,0.56188065,-0.18313059,-0.2122495,0.3508387,-0.25417817,0.41484064,-0.072116375,0.0296793,0.48722488,-0.37714463,-0.73803,-0.57176113,-0.20356987,1.2802218,-0.3405231,-0.39932775,0.14847206,-0.3305619,-0.22720289,0.04911542,0.36255082,-0.010599622,-0.1707747,-0.76806366,0.060309667,-0.0564972,0.14581588,-0.006008125,-0.15665272,-0.37109908,0.6903752,-0.051935576,0.5137524,0.27937967,0.1252403,-0.08957222,-0.26003167,-0.016127653,0.7371719,0.27461308,0.12980086,-0.2579992,-0.2489021,-0.40590897,-0.09828579,0.017798722,0.5672098,0.48952636,0.01285923,0.12920184,0.3028025,0.0856834,-0.017013645,-0.13327073,-0.1601449,-0.03469352,-0.14009802,0.55043024,0.60079676,-0.09728865,0.41562927,-0.004469522,0.35397857,-0.2046654,-0.41727942,0.36247647,0.8591955,-0.23617058,-0.29616565,0.5967297,0.45168218,-0.2656794,0.3099942,-0.5671007,-0.25499952,0.5312514,-0.123385,-0.3985906,0.22719416,-0.25162137,0.08263216,-0.84370273,0.15135676,-0.037137613,-0.45539805,-0.48404625,-0.05503636,-3.2090352,0.30708873,-0.23538037,-0.16736175,-0.13031547,-0.09521333,0.09416116,-0.5377744,-0.51578724,0.16059269,0.060392603,0.64026713,-0.15504518,0.18217164,-0.2527408,-0.23603755,-0.20915255,0.054963693,0.050098095,0.39482927,-0.16155007,-0.40006378,-0.040258866,-0.08711263,-0.2034186,0.05908637,-0.69939816,-0.47384608,-0.07847778,-0.59376115,-0.14721926,0.5510239,-0.28366405,0.04086101,-0.35878527,0.08169736,-0.23140584,0.18566613,0.05924351,0.0628555,0.01735398,-0.12132611,-0.03577683,-0.3254023,0.4026366,0.055012453,0.22655062,0.29084238,-0.10110746,0.1583989,0.36701238,0.6141685,-0.19294651,0.8114223,0.24473481,-0.108378075,0.2366868,-0.17659302,-0.2640036,-0.46747112,-0.2339651,0.0289984,-0.40519634,-0.5026208,-0.12572983,-0.3801171,-0.76402867,0.6103604,0.117247604,0.14931637,-0.06878074,0.28094947,0.6695011,-0.28130147,-0.0140015045,0.055956457,-0.16695718,-0.6156227,-0.25512788,-0.45694366,-0.29306838,0.19684696,0.8300785,-0.2801218,0.22451775,0.09034217,-0.38190684,-0.13054398,0.13537754,0.07461043,0.23391794,0.54984784,-0.1619323,-0.60564154,0.46174648,-0.24171187,-0.20488653,-0.50666124,0.17323564,0.5820857,-0.52922153,0.59021324,0.33588943,0.15899648,-0.04839502,-0.35985374,-0.18324202,-0.034226045,-0.24212125,0.33989725,0.29207394,-0.62531906,0.4116582,0.30437702,-0.07651488,-0.6494156,0.48401892,-0.08080585,-0.26448333,0.047655176,0.36993924,0.091836944,0.03672589,-0.10922213,0.06900466,-0.35913655,0.22178431,0.13003689,-0.096956864,0.16240555,-0.1367619,-0.0970874,-0.7089643,-0.04980938,-0.39079005,-0.3133087,0.1969718,0.058527194,0.06956775,0.14922647,0.09333031,0.32499954,-0.34554005,0.05793226,-0.09470393,-0.11205448,0.2883033,0.38767383,0.4385476,-0.4968958,0.59612614,0.09129074,-0.05996274,-0.031376578,0.01465379,0.40363452,0.01602726,0.42093906,-0.06018173,-0.21803604,0.25312933,0.7583265,0.101977155,0.42397854,0.019528484,-0.10915195,0.13003162,0.04310181,0.19717026,-0.09299179,-0.657623,0.06692357,-0.31019884,0.15070547,0.4350446,0.23953056,0.22007415,0.026894707,-0.39289463,0.033966172,0.055071868,0.009214874,-1.1022936,0.23403695,0.30982897,0.78558296,0.22168787,0.04225823,0.06260369,0.72273606,-0.23424512,0.057163604,0.34929028,-0.056265958,-0.45841452,0.45411018,-0.67973113,0.3916281,-0.090275005,-0.105162166,0.047478918,-0.07759573,0.36992353,0.76011974,-0.2517627,-0.063261345,-0.047101703,-0.29026002,0.03946118,-0.34358725,-0.01769081,-0.53949946,-0.30555883,0.5031242,0.6251201,0.41828716,-0.3122365,0.08994175,0.1255159,-0.05968712,0.06841978,0.1687198,0.042720035,-0.048429232,-0.698019,-0.030292857,0.4844853,0.05638198,0.16091548,-0.06465828,-0.24664369,0.3319135,-0.20422623,0.044570826,-0.1448844,-0.58275586,-0.06316691,-0.2785248,-0.5959435,0.27302346,0.010974821,0.24294277,0.2041748,-0.036586415,-0.18411733,0.4450825,-0.03411734,0.91232115,0.16219282,-0.15009643,-0.4391629,0.14359075,0.06881847,-0.14392696,-0.20295925,-0.37342948,0.07828246,-0.49417406,0.41015598,-0.00035152436,-0.44509727,-0.020900821,-0.10173389,-0.029982623,0.47202882,-0.09233283,-0.0775934,-0.07992127,-0.08524019,-0.31726468,-0.12874936,-0.119358525,0.24641673,0.17717521,-0.114004225,-0.17716551,0.02581381,-0.21816446,0.23543282,0.021883544,0.28908473,0.37721482,-0.028215058,-0.21923088,-0.11608362,0.09406569,0.5070717,-0.1546141,-0.19708855,-0.13187961,-0.44535434,-0.3014229,0.38252315,0.059480906,0.43438992,0.11873278,-0.08081896,0.65931576,-0.050016057,0.98457664,0.004440093,-0.29194355,0.057613246,0.44175225,0.0059262295,-0.062467977,-0.37255624,0.78833014,0.38859072,-0.026158221,-0.117158055,-0.4122087,-0.028936421,0.17094453,-0.13716987,0.06590886,-0.0012632052,-0.54495996,-0.3028504,0.22191606,0.1398873,0.31142533,-0.10148773,0.059711024,0.25849804,-0.05350331,0.377543,-0.36319768,-0.35844183,0.2126334,0.17757,-0.09338929,0.046696,-0.4691342,0.49632883,-0.5018467,0.11532046,-0.38710606,0.1572878,-0.26165643,-0.14244431,0.23678038,-0.14933348,0.43886903,-0.50001985,-0.2716451,-0.2880069,0.3627557,0.20421878,0.05490222,0.4884616,-0.30744162,-0.021608679,0.20551856,0.55646193,0.7610827,-0.18325427,0.17084439,0.4101085,-0.24469115,-0.44920558,0.31044826,-0.3394708,0.15677755,0.07482872,-0.17599398,-0.41126797,0.3702116,0.2308498,0.20239243,0.03328601,-0.5778696,-0.036837403,0.36554432,-0.24240042,-0.2126797,-0.2144662,0.0370155,0.5094787,-0.1490786,-0.43032658,0.050224468,0.06307737,-0.12970187,-0.45565835,-0.02391095,-0.2903218,0.3290081,0.02243137,-0.29006794,-0.18963,-0.0950929,-0.3865117,0.1462397,0.18085746,-0.33501577,0.09060943,-0.33784738,-0.09531889,0.8641667,-0.26351127,0.17074485,-0.5911338,-0.3106005,-0.6669511,-0.42356452,0.3000766,0.01137735,0.031152477,-0.42108622,-0.011915958,-0.16520678,-0.3302016,-0.050793275,-0.35648057,0.42547634,0.12137343,0.4616556,-0.07721111,-0.7750032,0.25263876,-0.027598495,-0.31900755,-0.5814077,0.463561,-0.12984724,0.66560155,0.049179256,0.07936774,0.30803075,-0.4521705,0.01691585,-0.24321891,-0.0626752,-0.80516076,-0.047899667,464 -216,0.5694362,-0.045545444,-0.6567918,-0.16152166,-0.39166275,0.0018534542,-0.2025833,0.534766,0.03863627,-0.58068836,-0.20792815,-0.3717796,0.06981537,0.47408772,-0.3724737,-0.8340614,0.11061323,0.10622995,-0.39202365,0.50145584,-0.44730175,0.47078595,0.18634887,0.32501885,0.26200092,0.15653175,0.3311375,-0.13024692,-0.34398207,-0.1911309,-0.108324386,0.32078496,-0.72230214,0.1393197,-0.32934442,-0.5654846,0.07851417,-0.32270595,-0.29330513,-0.84005517,0.30694386,-0.91152483,0.51341325,-0.15923618,-0.23596317,0.14728983,0.2834655,0.40178096,-0.20904014,0.06443634,0.11716759,-0.16554922,-0.13095458,-0.008097989,-0.39184144,-0.55909073,-0.6347715,0.1329393,-0.5670653,-0.24730816,-0.19617723,0.24799798,-0.3398357,0.05089439,0.0935219,0.4527336,-0.49371782,-0.03655938,0.38852826,-0.13805647,0.4887022,-0.53734726,-0.1574557,-0.24303418,0.24079219,-0.3143063,-0.16126718,0.31307808,0.41961893,0.43285763,0.058459684,-0.33690426,-0.27176344,-0.21016781,0.18493634,0.494751,-0.18826623,-0.56379014,-0.20818153,-0.016517513,0.30653659,0.37329707,0.29713675,-0.3158129,-0.07903948,0.0325079,-0.26331785,0.4756122,0.52664477,-0.23032397,-0.1417218,0.22359155,0.45854428,0.22639732,-0.17914693,0.16905712,0.07562078,-0.7192885,-0.1778873,0.19281892,-0.121832736,0.697498,-0.22266191,0.25773308,0.9327785,-0.2724339,0.15420313,0.015427204,0.021237902,-0.18667905,-0.30387154,-0.13220374,0.26376787,-0.74570835,0.054934446,-0.26093423,0.8243821,0.23680855,-0.60221225,0.25497615,-0.62610155,0.15484299,-0.22279929,0.49917072,0.5152369,0.36380064,0.23158789,0.59554917,-0.5169226,0.094676815,-0.0061039287,-0.55615354,0.024587043,-0.2585487,-0.1709692,-0.26491964,0.050577387,-0.07545142,0.12366561,0.064256035,0.61806995,-0.5330256,-0.11496716,-0.14558731,0.9690666,-0.42834598,-0.16172476,0.8795845,0.81578314,1.1187946,0.013124556,1.5365936,0.36042482,-0.13002534,0.087107584,0.051697426,-0.750873,0.36151406,0.3703942,-0.71594584,0.39005703,-0.09079264,-0.027910419,0.38555342,-0.3546127,0.100117035,-0.32270682,0.22854996,0.06073568,-0.16054402,-0.4601846,-0.28247404,-0.0245358,0.057271685,0.038846295,0.2606992,0.08761713,0.5411055,-0.06802724,1.5880955,-0.08125904,0.13467526,0.099474095,0.415061,0.3249755,0.048425045,-0.08574625,0.11099127,0.29650113,0.28552723,-0.45852357,-0.1320109,-0.29333696,-0.6580312,-0.30955347,-0.33189562,-0.118848085,-0.18446025,-0.6329572,-0.063443676,-0.1789582,-0.13315052,0.40237454,-2.2036738,-0.26487154,-0.22669211,0.29827932,-0.30443236,-0.3790379,-0.25211227,-0.6146263,0.6847127,0.3280901,0.53863335,-0.6835512,0.28991327,0.5407935,-0.39009902,-0.14215222,-0.6779359,-0.19242784,-0.05570994,0.107545115,-0.12406877,-0.22959423,0.13553128,0.1530127,0.6526268,-0.09071956,0.1306795,0.10841612,0.38031873,-0.030167906,0.5533865,-0.023380661,0.4938306,-0.38116512,-0.14643027,0.4494171,-0.26113644,0.22982273,-0.1011976,0.13486129,0.40130553,-0.5657818,-0.90987647,-0.7154313,-0.47931245,0.96021706,-0.0851903,-0.36519533,0.22734267,-0.11186109,-0.07209642,0.0027656397,0.34960216,-0.061800797,0.29029667,-0.7543672,0.02354443,-0.051277813,-0.061154533,0.053558,0.1165133,-0.3637019,0.58580405,-0.098105565,0.21500629,0.5473404,0.30110174,-0.4090695,-0.6384815,-0.0034111936,1.1455867,0.47410074,0.21043733,-0.394033,-0.25384638,-0.6328111,-0.18580763,0.006926947,0.45213747,1.0388315,-0.12356716,0.21587181,0.2820144,0.1511597,0.1824902,-0.14172688,-0.39611655,-0.057936795,-0.07209533,0.5374087,0.5290193,-0.12880313,0.6246079,-0.1743706,0.4996091,-0.14563355,-0.5275067,0.5137852,1.0851667,-0.25813758,-0.33103976,0.5569635,0.5536142,-0.32755914,0.5742542,-0.5823851,-0.44722813,0.62234956,-0.15531859,-0.5955569,0.30225095,-0.31492862,0.064557865,-1.0704379,0.38066757,-0.37314954,-0.25716257,-0.49047655,-0.3308787,-3.4224653,0.20862335,-0.25060907,-0.024794834,-0.24585867,-0.18734269,0.23903729,-0.6177775,-0.7722081,0.10074129,-0.0906843,0.7663236,-0.0066243648,0.28899378,-0.26008508,-0.2656857,-0.20333356,0.21012473,0.1969313,0.15820608,-0.09857491,-0.57334936,-0.023481274,-0.33546653,-0.563549,0.10508467,-0.66605085,-0.71694237,-0.21032622,-0.60977185,-0.41091475,0.75702184,-0.45806524,0.021797976,0.011723267,-0.045442645,-0.042591907,0.3876433,0.17269984,0.20082276,0.08146052,0.033284757,-0.028113969,-0.27631226,0.25965393,0.14084278,0.33432138,0.19251941,-0.17234534,0.3617272,0.5884174,0.78149915,-0.14923705,0.82120425,0.28184345,-0.028897293,0.33643007,-0.33393392,-0.45530263,-0.6963509,-0.31716177,-0.08062904,-0.45691442,-0.5209208,0.051162466,-0.38278368,-0.8395326,0.8080013,0.05453224,0.17349972,-0.15566581,0.19670945,0.34018523,-0.15582912,-0.1887927,-0.039628897,-0.07984843,-0.5691029,-0.2493794,-0.8363539,-0.7310105,0.02135911,1.1448365,-0.15287393,-0.12880261,0.00047286352,-0.07172527,0.10442982,0.110671885,0.0020067215,-0.046139017,0.34964854,0.020575562,-0.7822373,0.6030692,-0.05616985,-0.28616545,-0.584144,-0.029994993,0.74244773,-0.79164207,0.5150002,0.5590571,-0.024475146,0.021805732,-0.6554764,-0.014583544,-0.030517658,-0.29271114,0.59870833,0.08644864,-0.64893526,0.45745564,0.52890515,-0.34850532,-0.7322605,0.628178,0.076029174,-0.10696439,0.0806115,0.3802415,0.12152807,0.0021896164,-0.2655089,0.23153356,-0.5780228,0.1678379,0.47986373,-0.04138851,0.59878933,-0.12956911,-0.22104102,-0.9099701,0.13185428,-0.36196476,-0.2062635,0.1542663,-0.14435396,-0.16171265,0.25299913,0.06997255,0.3978914,-0.33267644,0.14926572,-0.219002,-0.21294504,0.39335486,0.47041887,0.51469547,-0.5206653,0.73330265,-0.08476596,-0.16304734,0.035882663,0.16385338,0.5520488,0.1185403,0.38841802,0.11244586,-0.16676359,0.19792883,0.8489735,0.10552221,0.5963798,0.19092256,-0.15851332,0.06372576,0.19248514,0.13121895,0.19728324,-0.48614424,-0.16688581,-0.12501852,0.059115663,0.5892159,0.105067015,0.48116416,0.0059654335,-0.33459935,0.0009852102,0.080878004,0.07515598,-1.3566903,0.30285266,0.22764717,0.8920843,0.40222946,0.091073014,0.048583522,0.3775204,-0.19113146,0.18655281,0.39360335,-0.11856291,-0.50294566,0.6919609,-0.57635915,0.5024783,-0.1783759,0.0110368375,-0.0037930012,-0.05435969,0.6135474,0.89854866,0.010507288,0.1140223,0.05447936,-0.23004971,0.30336332,-0.6266911,-0.10918453,-0.29183453,-0.11162158,0.73773444,0.49698284,0.18333739,-0.17900151,-0.045455106,0.1434399,-0.13051495,0.2667118,-0.09862111,0.18023509,-0.17006269,-0.48324153,-0.4592799,0.6445926,0.112227425,0.2215218,-0.06930779,-0.2679171,0.33825633,-0.10253001,0.22151624,-0.09406375,-0.73859125,-0.10993918,-0.5388996,-0.51947576,0.40642068,-0.06620653,0.2266729,0.21116644,0.030445836,-0.5238965,0.34703663,0.0012410044,0.6720889,-0.2766537,-0.36506838,-0.34387502,0.24630737,0.29574403,-0.43736014,-0.08887484,-0.23353502,0.073640704,-0.54015976,0.48328,-0.039863057,-0.36647052,0.07674026,-0.117581606,-0.20248102,0.54289925,-0.21788451,-0.10414974,0.16442111,-0.029093647,-0.25249073,-0.15226151,-0.11789094,0.18268143,0.23407531,-0.08502472,-0.09266079,-0.025917102,0.014579328,0.4339548,-0.13475773,0.43891767,0.44292685,0.07244816,-0.59632,-0.15169027,0.22511454,0.5440343,0.020658651,-0.069149986,-0.32812515,-0.3908347,-0.18009663,0.1944123,-0.17861442,0.2687419,0.2702864,-0.3332638,0.9500536,0.1831935,1.3382818,0.16496107,-0.4837237,0.057945617,0.44196382,-0.007693823,-0.11990871,-0.40256557,1.0953541,0.48434475,-0.3166872,-0.24361286,-0.42650408,0.08375989,0.18295123,-0.2508431,-0.37046131,-0.13178165,-0.6161125,-0.38914502,0.26980764,0.30756366,0.06765128,-0.21959805,0.045868803,0.22361161,0.06671004,0.475627,-0.6937468,-0.1336626,0.2703088,0.4327648,-0.07898669,0.045054156,-0.38731676,0.4192975,-0.46221238,0.033195946,-0.35589954,0.21616293,-0.20653062,-0.47860065,0.22097236,0.015150745,0.31411144,-0.23792733,-0.3243026,-0.26388216,0.39152676,0.115569495,0.1841967,0.67150855,-0.33367026,0.063769914,-0.047513787,0.62710446,1.309365,-0.29785246,-0.042742293,0.4945941,-0.30562392,-0.5963565,0.34882644,-0.49564323,0.21501279,-0.10385745,-0.3882588,-0.59803975,0.17356734,0.21764903,-0.06481422,0.20525083,-0.52402794,-0.07124679,0.37868994,-0.32311156,-0.37154058,-0.4894406,0.12808558,0.6414986,-0.2765657,-0.19058684,0.1702247,0.24600692,-0.21476075,-0.52790517,-0.06553994,-0.109370895,0.42539462,0.15812577,-0.25552,0.05898606,0.058731247,-0.4665165,0.26971608,0.31672874,-0.27228454,0.14687923,-0.17677666,0.050093874,0.9403122,-0.14880241,0.010554866,-0.4226775,-0.53928924,-0.90770394,-0.35637558,0.6093209,0.35292488,0.14260936,-0.5655623,-0.029381497,-0.12859195,0.06150277,0.09396294,-0.23745887,0.36145183,0.09000961,0.5220073,-0.15203851,-0.7947434,0.0057942867,0.16839121,-0.3035725,-0.6018902,0.5762491,-0.20163898,0.8294765,0.12866051,0.03559098,0.48364004,-0.48182756,-0.10671293,-0.20616667,-0.13502903,-0.69442344,0.014549955,468 -217,0.40264237,-0.1679899,-0.4802995,-0.16587515,-0.3385637,-0.122598335,-0.17884423,0.15004854,0.4015525,-0.098975085,-0.122951716,0.10523403,0.108599186,0.41238675,-0.036142685,-0.8389684,0.06586108,0.18451773,-0.7927752,0.62938124,-0.6026385,0.30705795,0.050622907,0.3586607,-0.13338585,0.3384333,0.2470652,-0.12651502,0.15894248,0.06733705,-0.037348356,0.40742412,-0.6940885,0.16403697,-0.15072492,-0.29120797,0.0013699974,-0.31999704,-0.35883293,-0.65369827,0.052788757,-0.83779615,0.61086464,-0.10236256,-0.27847534,-0.030789483,0.31547043,0.3263547,-0.39821205,0.03977517,0.14430091,-0.16071323,-0.2845145,-0.27838293,-0.0748302,-0.5678392,-0.52975965,-0.15292598,-0.7378346,-0.32457206,-0.37417176,0.15698227,-0.40398923,-0.034340993,-0.1590193,0.49490058,-0.467993,0.0693861,0.42905357,-0.13018341,0.33153114,-0.46483555,0.103470564,-0.034271635,0.36299297,0.08515073,-0.33168876,0.4535913,0.46132988,0.49434987,0.40377745,-0.46179172,-0.15472965,-0.2620904,0.19504209,0.14637883,-0.1289727,-0.47534427,-0.22798967,0.20194012,0.43463197,0.37168255,0.06701417,-0.37030327,0.058213223,0.04651204,-0.08579958,0.76853645,0.6561216,-0.3148426,-0.4586521,0.28744113,0.5400926,0.2352219,-0.26615295,0.08903926,-0.09365411,-0.5974342,-0.16592295,0.08152588,-0.09793986,0.5435093,-0.1489741,-0.066526,0.9434576,-0.26292762,-0.17151895,-0.014344088,-0.12173598,-0.16984482,-0.41598448,-0.090555936,0.17037673,-0.7166803,0.023040874,-0.3468689,0.5286281,0.22024134,-0.6375852,0.38217577,-0.6225869,0.18510556,-0.11241291,0.79707325,0.86218005,0.5771703,0.43639365,0.7727119,-0.2516052,0.217182,0.050815653,-0.56935245,0.10150441,-0.3254128,0.20252076,-0.4329255,0.14347376,-0.11034744,0.0734012,0.085888796,0.27662626,-0.55712295,-0.19565961,0.1894011,0.79215276,-0.251946,-0.08477225,0.74282825,1.1983415,0.98072374,0.017142685,1.3027227,0.4314759,-0.20012216,0.16040663,-0.3643107,-0.6324326,0.10922242,0.36723772,-0.027771624,0.4173622,-0.12919718,-0.10553925,0.27690157,-0.42829916,-0.054744843,0.03645568,0.69203764,0.15345676,-0.23056652,-0.4603467,-0.008741983,-0.017277567,-0.015804755,0.17543039,0.2086896,-0.21341361,0.37641633,0.053131886,0.9020494,-0.062506035,0.030403731,-0.1152656,0.60998845,0.3912758,-0.052451935,0.002091988,0.40899217,0.43053246,0.03163508,-0.63821244,0.21744363,-0.50723493,-0.3547179,-0.19217713,-0.46288604,0.0886047,0.05282236,-0.16833964,-0.122076795,-0.07247559,-0.18829711,0.487346,-2.7271113,-0.43160036,-0.15277363,0.32974333,-0.20026925,0.05458251,-0.04628582,-0.6105356,0.31303596,0.24420676,0.4496746,-0.5878092,0.559889,0.56634414,-0.7042741,-0.20820251,-0.7237227,0.008749434,-0.079438224,0.57016903,-0.065462366,-0.13022466,-0.092350975,0.28175557,0.74576443,0.14566132,0.1824383,0.48860988,0.3137966,-0.010853142,0.46728972,-0.013269965,0.61667764,-0.1638158,-0.1360174,0.3738917,-0.0631612,0.23167762,-0.24796392,0.025450626,0.7373124,-0.37363407,-1.0226855,-0.57299334,-0.25294617,0.99691457,-0.4323025,-0.5981588,0.20805521,-0.31898823,0.02989483,0.08152571,0.51482016,-0.031195957,0.20846108,-0.6984798,0.2817214,0.019241596,0.059979416,-0.0008292834,0.061655216,-0.29306775,0.70791173,0.0027418255,0.48814824,0.21141897,0.30796114,-0.20194016,-0.4094245,0.19896351,0.7243965,0.4610249,-0.14198421,-0.23805697,-0.29160976,-0.08953678,-0.09012641,-0.1162019,0.62386364,0.82184345,-0.2543752,0.051061127,0.3409057,-0.15528393,0.048176885,-0.23208478,-0.20457897,-0.09700008,0.15830947,0.41666165,0.80857646,-0.32378516,0.44817743,-0.25571215,0.2758323,0.2320409,-0.7453896,0.86601156,0.66774625,-0.23892625,-0.009428555,0.45488185,0.39534423,-0.48612964,0.623642,-0.6771604,-0.06891642,0.6992304,-0.1966953,-0.32750842,0.06889579,-0.26192525,0.1353365,-0.8691903,0.3266271,-0.39943114,-0.4998302,-0.34504732,-0.12775302,-3.6425161,0.30892035,-0.2862628,0.05915526,-0.38295072,-0.04279165,0.25471914,-0.6611821,-0.5877094,0.26642668,0.36803037,0.6639195,-0.18796274,0.15095739,-0.22626643,-0.3324293,-0.2104165,0.19815639,0.10099713,0.2077355,-0.17053273,-0.41506454,-0.01403478,0.11509439,-0.6910662,0.16829161,-0.43747824,-0.23969136,-0.12183391,-0.5644625,-0.24282815,0.5909234,-0.21675219,0.10820128,-0.33073172,0.13363484,-0.17158455,0.26759666,-0.026994854,0.23135492,0.29034585,0.034865927,0.14056556,-0.1978089,0.36183196,-0.17650212,0.48780957,-0.0007567763,-0.052789416,0.13261048,0.5345865,0.59983814,-0.066914655,0.8796711,0.4554692,-0.051919222,0.30856806,-0.29004657,-0.44903424,-0.7918664,-0.4638548,-0.1577936,-0.4680774,-0.43184605,0.07549201,-0.3712273,-0.83562976,0.6444734,0.0029356799,0.5948388,-0.1306425,0.35062495,0.50715554,-0.22746609,-0.020211438,-0.028579751,-0.27126104,-0.56844103,-0.16707583,-0.75737417,-0.48937505,0.17597456,0.797004,-0.48038006,0.06113341,-0.22747265,-0.17231701,0.019535951,0.19578744,0.098189086,0.2937029,0.5372142,0.03540136,-0.5914997,0.31664032,-0.055628855,-0.13960162,-0.61754143,0.26761684,0.7195384,-0.7770387,0.6353987,0.2705665,0.014424769,-0.06322281,-0.6677824,-0.21808268,0.03931054,-0.13507421,0.56758285,0.13026549,-0.9313913,0.6034678,0.27021593,-0.49770212,-0.5794212,0.35773066,-0.10855148,-0.2663315,-0.2126008,0.2784246,0.27975038,-0.019800669,-0.3955657,0.21825118,-0.4911017,0.27191678,0.1166403,-0.19984072,0.37733242,-0.0017712235,-0.34880814,-0.9019867,-0.18262109,-0.52948093,-0.2096619,0.242797,-0.14585882,-0.07349178,0.053852383,0.070988625,0.4181868,-0.20659043,0.23330545,0.015437833,-0.39694998,0.30882367,0.52060676,0.2341966,-0.30035153,0.581251,0.18466516,-0.27055562,-0.0729872,0.05937369,0.38695866,0.030509952,0.459898,-0.10667605,-0.15272735,0.33822125,0.62538356,0.076241724,0.38628012,0.14242738,-0.018508645,0.42223194,-0.012086492,0.18580872,-0.067156784,-0.35046992,-0.08083158,-0.15711002,0.1707714,0.60828024,0.5481842,0.27994165,0.13695367,-0.30547562,-0.033413336,0.26602995,-0.018843746,-1.3407369,0.5025725,0.30432996,0.8258727,0.4634705,0.14890303,-0.2510684,0.6962435,-0.1755028,0.08142104,0.60119706,0.050164707,-0.33969113,0.8420652,-0.6600982,0.29359716,-0.09641974,-0.033273146,0.15300956,0.19201978,0.2941261,0.9414423,-0.26637694,-0.0009395043,-0.19296323,0.031890508,0.16091847,-0.30636585,-0.10357095,-0.28125197,-0.43055546,0.6232706,0.32930854,0.2822669,-0.27511173,-0.08919775,0.1605299,-0.29356524,0.14910358,-0.17360216,-0.05493941,0.026408393,-0.38974056,-0.16568565,0.42394632,0.14332575,0.10950978,-0.21883012,-0.1299108,-0.10316682,-0.24408515,-0.21685001,0.012423986,-0.77624476,-0.06440873,0.033205662,-0.36507982,0.8470451,-0.31291613,0.097918384,0.15519004,0.036392026,-0.08737563,0.25788847,-0.0009627501,0.50689656,0.0663882,-0.3147925,-0.2345365,0.09990947,0.13711183,-0.27160576,0.18044646,-0.2926778,0.01966494,-0.51048726,0.57023895,-0.10606127,-0.2820379,0.16576494,-0.3169913,-0.00088473357,0.47804725,-0.1461518,-0.19200061,0.14841466,-0.25599733,-0.34453616,-0.24292348,-0.17681411,0.31818995,0.11786975,-0.11687513,-0.023234315,-0.18918686,-0.09051234,0.6321447,0.006842812,0.22169085,0.035454035,0.012289532,-0.13913621,-0.024021022,0.29861557,0.38044676,0.22473916,-0.011205125,-0.22849837,-0.321861,-0.3987836,-0.05001629,-0.019317485,0.13575663,-0.031625975,-0.30479184,0.93475723,0.26358253,1.2906178,0.017313337,-0.4342965,0.05821686,0.60550994,-0.10493471,-0.0013019105,-0.36613658,0.83893734,0.5547371,-0.14328977,-0.003948768,-0.57559264,-0.07534344,0.3483943,-0.47379225,-0.1374268,-0.110899635,-0.5551668,-0.447746,0.261144,0.18661141,0.04721183,-0.024330325,-0.053635262,0.00513889,0.054393817,0.51995367,-0.65040535,-0.15834548,0.09016817,0.26446426,-0.02076137,0.15654446,-0.29633945,0.40986907,-0.7441176,0.123767495,-0.2691026,0.097788915,-0.3343062,-0.4758188,0.18294725,0.040220723,0.2543623,-0.22073312,-0.48605564,-0.16058478,0.42471427,0.04549056,0.0036770504,0.710548,-0.29306373,-0.028941998,0.23719932,0.57139564,1.3411558,-0.34187216,-0.04408992,0.2913475,-0.5639336,-0.67906183,0.40670022,-0.47291362,0.015020418,-0.15354668,-0.42358112,-0.42419356,0.16900189,0.015539757,0.05446518,0.15059544,-0.6204142,-0.16018179,0.25396922,-0.24390006,-0.1122199,-0.28971785,0.3620259,0.81081414,-0.23847413,-0.36359996,0.17661034,0.30815956,-0.17797399,-0.60271555,-0.12922941,-0.18960471,0.33357424,-0.018445302,-0.34076518,0.06560121,0.2830579,-0.5635571,0.020346701,0.28085878,-0.2849933,0.18086338,-0.28658238,-0.0942934,0.8416429,-0.2508003,0.0146010835,-0.6066969,-0.48557863,-0.8587854,-0.4075348,0.07379707,0.17893726,-0.012194244,-0.48366338,0.06092388,-0.06576065,0.082846574,0.076963425,-0.53676605,0.25551307,0.04144881,0.58008575,-0.1678303,-1.1045245,0.00042969186,0.16893476,-0.0089258235,-0.77357864,0.7295714,-0.19708322,0.8021853,0.06801106,-0.09513078,-0.09980035,-0.3896207,0.08362843,-0.4190507,-0.15520318,-0.6910627,0.016965771,471 -218,0.47030336,-0.12382321,-0.43200123,-0.10787996,-0.31666964,-0.045495573,-0.29886252,-0.0057393215,0.28539732,-0.23917821,-0.1138192,0.032287005,0.005490287,0.18215059,-0.13292313,-0.65306973,-0.11636744,0.1447219,-0.6805506,0.8408645,-0.34412882,0.2941564,0.086771436,0.41297176,0.14035244,0.37761247,0.33090955,0.05532503,-0.058240794,-0.13951156,-0.04737824,0.1496028,-0.50030726,0.30747518,-0.13254887,-0.24069716,0.059921097,-0.3627982,-0.1941293,-0.75907934,0.15999056,-0.78499794,0.3869626,0.023792572,-0.14516428,-0.029927218,0.41226277,0.22549309,-0.32532245,-0.16217443,0.28483158,-0.22040492,-0.28885555,-0.27228928,0.110194854,-0.19554469,-0.37378946,-0.11044302,-0.48025802,-0.3023078,-0.23055,0.22586387,-0.33574283,-0.09194414,-0.102435365,0.48875037,-0.30935657,0.039108045,0.37999153,-0.34704426,0.09757417,-0.73246455,-0.17117085,-0.02953732,0.27428162,0.10828622,-0.09495786,0.45223674,0.119314566,0.33957565,0.31951702,-0.38803795,-0.18008515,-0.21238898,0.24219012,0.33937117,-0.17177013,-0.22086522,-0.19188349,0.093322195,0.21242398,0.3151699,0.25175476,-0.3252796,0.081558384,-0.3074439,-0.015702466,0.53585374,0.53082293,-0.11487128,-0.25159654,0.16666521,0.41710955,0.31224123,-0.20522642,-0.17757617,-0.13089126,-0.43956295,-0.23153816,0.09465303,0.084501535,0.30879217,-0.04399096,0.08179938,0.68984693,-0.046490442,-0.067063875,0.059866015,0.065924205,-0.021964995,-0.45074564,-0.17786215,0.39382643,-0.48979932,0.02538972,-0.34409046,0.59683824,0.03236767,-0.6288564,0.3225623,-0.4654854,0.1155677,-0.01711152,0.54116285,0.63873786,0.32638073,0.2344422,0.8358296,-0.2980549,0.073835246,-0.07781514,-0.2864107,-0.07788048,-0.06616335,0.31570658,-0.45035902,0.21842507,-0.16205911,0.26817912,0.052548204,0.09569286,-0.3689413,-0.18923952,0.26485267,0.7982805,-0.25392732,0.026975425,0.58984894,1.2129834,1.0012575,0.0003303965,0.9605588,0.0858284,-0.14907299,-0.21320334,-0.18485136,-0.6409288,0.19263858,0.39822438,0.2994529,0.25292623,-0.19229083,-0.14724661,0.30881223,-0.22752836,-0.18335511,0.013963699,0.38049185,0.16831703,-0.017850947,-0.41433632,-0.11954306,0.028140258,-0.15870208,0.2125004,0.19946294,-0.24939913,0.17895705,0.006854109,1.2886649,-0.29690397,0.1544307,0.2513698,0.38195366,0.29637802,-0.064860485,0.046371922,0.4045496,0.30369377,0.038386367,-0.39843026,0.23978344,-0.38048786,-0.5190824,0.0063522756,-0.3915844,-0.16208294,0.26756752,-0.35068992,-0.11032726,-0.10739317,-0.12030192,0.27758357,-2.9376643,-0.10380237,-0.16189797,0.24158047,-0.33441848,-0.103581905,0.045619685,-0.41782892,0.4191181,0.16285749,0.48837617,-0.47192398,0.37869474,0.5534115,-0.6130695,-0.0994754,-0.50511754,-0.035105307,0.03381056,0.57454795,-0.006147424,-0.23159024,-0.09327661,0.32564506,0.53936744,0.2717692,0.12019763,0.5253094,0.37321794,-0.13043651,0.53590786,0.025582092,0.4707106,-0.41828945,-0.15935649,0.37404498,-0.27766985,0.4952207,-0.21099456,0.06511244,0.6093656,-0.26741073,-0.77248496,-0.37330583,-0.31275722,1.0384653,-0.40115225,-0.6547409,0.19970585,-0.07321348,-0.04142379,0.0048542065,0.46735448,0.0287352,0.22637078,-0.67256665,0.18632777,-0.19419362,0.25391018,-0.028424911,-0.045752898,-0.5811668,0.83850235,0.036520947,0.6724111,0.30365753,0.33806622,-0.2530914,-0.2921957,0.14048833,0.6794681,0.34818634,-0.08094124,-0.084546454,-0.14727281,0.096137956,-0.29252782,0.09165815,0.71714425,0.5451957,-0.080865875,0.13629359,0.28111008,-0.0014202555,0.0393824,-0.030639656,-0.24427687,-0.22061807,0.021524465,0.4547795,0.7199711,-0.11166605,0.2989497,-0.04100675,0.354047,-0.009013606,-0.51691926,0.54293483,0.42437935,-0.18236552,-0.10180202,0.61028737,0.46645936,-0.3818508,0.46439382,-0.5938354,-0.2577843,0.5333914,-0.20111643,-0.39023834,0.13437746,-0.33438575,0.06354568,-0.6771197,0.25497347,-0.3282618,-0.15515219,-0.47706768,-0.17354825,-2.8039384,0.13186206,-0.26118222,-0.07980277,-0.40595323,-0.11011651,0.14879677,-0.51034164,-0.6257267,0.28858036,0.20343968,0.56465054,-0.1392574,0.17549817,-0.2110906,-0.19576403,0.10569927,0.33166885,0.004492915,0.24676204,-0.09773184,-0.24426739,-0.13837244,0.15881017,-0.42587057,0.14581485,-0.42331377,-0.44050542,-0.090379745,-0.4728394,-0.14113645,0.55961055,-0.2815408,0.02760228,-0.24617685,-0.02961019,-0.13426287,0.012797316,0.16607136,0.41780454,0.13309114,-0.0055924216,0.0133326845,-0.2553809,0.40099776,0.09869549,0.27054068,0.2710856,0.0067336964,0.11159813,0.08274969,0.5941608,-0.1989284,0.80283934,0.15692739,-0.030454764,0.33128726,-0.278935,-0.36638066,-0.68152267,-0.22147924,0.09644888,-0.28583616,-0.53466445,-0.12384317,-0.26952636,-0.723726,0.56330806,0.018342761,0.42829463,-0.13614883,0.14142103,0.40419525,-0.18961406,-0.14288162,0.08609458,-0.1363856,-0.38276762,-0.20161219,-0.66264313,-0.38842118,0.042569347,0.59465504,-0.34669897,0.063829824,0.16208805,-0.28983596,0.042587135,0.05615646,0.11304732,0.14866382,0.53490514,0.3787939,-0.56459373,0.55026984,-0.034878317,-0.10549453,-0.3415631,0.26898178,0.5184943,-0.46782383,0.6232356,0.29802486,0.009802962,-0.23468809,-0.55343753,-0.21195044,0.1728758,-0.20560642,0.57113236,0.22781888,-0.7315177,0.46654415,0.25922376,-0.38590783,-0.692561,0.28727564,0.041224837,-0.45729315,0.026143724,0.35880896,-0.03680621,0.021831274,-0.039615728,0.25768363,-0.32829374,0.22524339,-0.02661035,-0.064226195,0.2302323,-0.07636175,-0.3981028,-0.5385476,0.14268026,-0.5128967,-0.38191268,0.43933782,-0.1663895,-0.24006179,0.16179769,0.12841697,0.45186406,-0.18896645,0.2358978,-0.07054364,-0.27432343,0.34671846,0.52014846,0.43073317,-0.5410951,0.42240062,0.17932945,-0.18451977,0.30551916,0.08912828,0.41089332,0.06353755,0.22521213,-0.2824908,0.093319535,0.22239552,0.47275847,0.11956131,0.24117169,-0.03295285,-0.17114744,0.42410502,-0.08698741,0.17637524,-0.10285983,-0.5775597,-0.053677734,0.08866464,0.11050888,0.40767708,0.39131305,0.29940793,0.19047739,-0.23478274,0.0256391,0.25271493,-0.12852639,-1.0528485,0.50462836,0.11280503,1.0054989,0.48177993,0.07846915,-0.15995571,0.60223866,-0.13273205,-0.014953659,0.31004703,-0.09144094,-0.46465594,0.83458066,-0.19363855,0.24718536,-0.14867072,-0.047913425,0.018456837,0.05020195,0.22127247,0.6428595,-0.29292932,0.06353542,-0.23844801,-0.056788135,-0.099622406,-0.2565548,0.021396257,-0.12123122,-0.60265654,0.550267,0.401275,0.4201867,-0.29050907,0.054774225,0.012377064,-0.23867856,0.103356205,0.060058594,-0.107949145,0.1811686,-0.40326855,-0.16319723,0.6731566,-0.29047737,0.13636188,-0.17894024,-0.18244092,-0.09232155,-0.04122754,0.07138678,-1.9425153e-05,-0.76484436,0.17513342,-0.21104869,-0.46381262,0.32010728,-0.32179075,-0.017126737,0.18861757,0.032146133,-0.13840438,0.28038058,0.13554975,0.72477186,-0.042426016,-0.14977105,-0.3147482,-0.0408451,0.03850789,-0.15080936,0.177581,-0.25458524,0.20394757,-0.6047825,0.6816853,-0.10510604,-0.38074145,0.07370193,-0.24582325,-0.06092384,0.5309495,-0.13157865,-0.13862595,0.051736522,-0.22265993,-0.41893435,-0.14890173,-0.2975327,0.19590974,0.3068139,0.042323697,-0.10705698,-0.2705095,-0.23052618,0.43632132,0.04117399,0.4118611,0.24608612,0.08545904,-0.30646548,0.22496013,0.22636904,0.46816912,0.11845934,0.0035791874,-0.3174936,-0.42486572,-0.41038027,0.47694066,-0.103052236,0.07016414,-0.12733015,-0.32926908,0.9294547,0.08182379,0.9798088,-0.029839583,-0.2829137,-0.01267459,0.41821158,-0.38664955,0.0014038205,-0.3021614,0.92593056,0.53017545,0.026752762,0.063498065,-0.43599644,-0.040578965,0.27317008,-0.47614065,0.1083906,-0.14000839,-0.38277033,-0.454651,0.1047108,0.20991118,0.035671305,-0.2523863,-0.13136911,0.050349046,0.22235523,0.405712,-0.6843719,-0.28448927,0.066416614,-0.012993407,-0.17843069,0.22112706,-0.40248844,0.4811987,-0.70605177,0.3352693,-0.62764823,-0.03971332,-0.14437507,-0.2290132,0.019431893,-0.17385188,0.30895475,-0.5501502,-0.3465805,-0.08776433,0.16470076,0.14932217,-0.0019922291,0.6394512,-0.18697913,0.2084384,0.22602068,0.60304046,0.9122563,-0.27982897,0.0050390563,0.024264129,-0.43281466,-0.5782881,0.2209219,-0.23682334,-0.19622773,-0.20594765,-0.45337477,-0.42305267,0.10870511,0.18522808,0.12343751,-0.0001959006,-0.7729304,-0.20786247,0.27740154,-0.22727199,-0.25421098,-0.24691932,0.11886832,0.69378656,-0.10741542,-0.20928262,0.03261651,0.08752545,-0.12952584,-0.61705554,-0.0052858195,-0.30612105,0.36797503,0.006764652,-0.14068452,-0.32526004,0.1156328,-0.5311716,0.11612766,0.12631108,-0.25387356,0.0077846926,-0.06559841,0.010169395,0.8510865,-0.08765635,-0.0126039665,-0.6141083,-0.46034253,-0.77730817,-0.43219388,-0.15997785,0.046831507,0.063703306,-0.40754193,0.01719188,-0.309379,0.026767237,-0.0659427,-0.3925048,0.15180531,0.15214032,0.5109432,-0.43177038,-0.8273869,0.21565224,0.15370144,-0.042857815,-0.38572964,0.53017956,-0.0594554,0.65357345,0.05928616,-0.15313295,-0.01051596,-0.46236676,0.15513134,-0.32522982,-0.10407261,-0.7575789,0.13852435,478 -219,0.5565596,0.001014638,-0.39452943,-0.10205022,-0.2806684,0.2514066,-0.24811004,0.3062008,0.22566423,-0.3634821,-0.024679966,-0.10519368,0.06715044,0.13678767,-0.10071471,-0.4392462,0.012023584,0.20153719,-0.6624418,0.78134364,-0.20048006,0.31373346,-0.0863777,0.2886173,0.26701933,0.3751425,-0.0018278281,-0.109060444,0.08950884,-0.17216259,-0.21932332,0.12284465,-0.5530083,0.26651025,-0.20567025,-0.14571913,-0.044920865,-0.29647195,-0.31605455,-0.772935,0.23730183,-0.83639544,0.4961613,0.002967002,-0.30208358,0.15355358,0.39226705,0.2700983,-0.16980138,-0.039603658,0.14487073,-0.2311276,-0.05442745,-0.14529628,-0.17175217,-0.4834022,-0.5478736,-0.16690132,-0.562111,-0.16771163,-0.48308524,0.21976046,-0.229923,-0.06839485,-0.10650604,0.45634142,-0.40165532,0.3422474,0.26433203,-0.19517508,0.22845072,-0.46133268,0.032179203,-0.20071827,0.4602693,0.077383325,-0.09353827,0.33593082,0.16309503,0.2966157,0.20231646,-0.17203331,-0.36772,-0.17743604,0.16726777,0.386844,-0.13259348,-0.22328593,-0.13034287,-0.041871503,0.19496737,0.28850573,0.14811665,-0.17132749,-0.13695696,-0.18250886,-0.12455538,0.5237429,0.4143058,-0.2733456,-0.16397524,0.464641,0.6814518,0.28583857,-0.27510312,0.17140417,0.07979922,-0.3765202,-0.1404794,0.2069309,-0.1441841,0.38116995,-0.10828586,0.20025219,0.7454322,-0.08242383,0.003189977,0.016902555,0.028587364,-0.076067075,-0.14237013,-0.2207287,0.2776535,-0.55504376,0.28471035,-0.20622204,0.6982969,0.1722763,-0.47217277,0.27559844,-0.6603091,0.13191028,0.058897413,0.50102746,0.6900408,0.58794576,0.277227,0.8420978,-0.29676828,-0.015329782,-0.18593569,-0.2936049,0.13896431,-0.28373146,0.104763635,-0.40610632,0.13544385,-0.14360183,-0.05176534,-0.04187589,0.35587972,-0.47548848,-0.14097333,0.053512465,0.9155363,-0.24317786,-0.07727809,0.7919911,0.9625138,0.98141986,-0.021779247,0.8720299,0.11247955,-0.31919867,-0.037246782,-0.27294254,-0.5120315,0.2988402,0.25200033,0.17004435,0.3131504,0.16637413,-0.023090772,0.26101035,-0.4458696,0.0017499209,-0.054721642,-0.0002966881,0.13476764,-0.026597532,-0.31129983,-0.24380137,-0.04900132,-0.023709033,0.33241406,0.09723968,-0.22426198,0.4231661,0.18082695,1.6020249,-0.0547217,0.15313055,0.18412256,0.51544094,0.23042901,-0.043775834,-0.17784038,0.5068665,0.23921238,0.2522454,-0.5319441,0.26436108,-0.33466884,-0.36099002,-0.042726222,-0.4251827,-0.16288668,0.03358221,-0.28307423,-0.11823023,-0.092441835,-0.405771,0.43041328,-2.8306253,-0.07392807,-0.1145712,0.44754502,-0.217266,-0.081353836,-0.081167124,-0.48721343,0.21003816,0.2673691,0.39298025,-0.5746794,0.40002587,0.5803181,-0.7053322,-0.09355271,-0.48051426,-0.12873097,-0.06602333,0.4449786,-0.003792413,0.021664698,-0.051151354,0.25068027,0.4888807,0.0905791,0.15790042,0.43314478,0.33533624,-0.18184546,0.6439336,-0.056554716,0.41554984,-0.22596039,-0.22199942,0.3070428,-0.40896252,0.35123,-0.15150723,0.05218337,0.57322043,-0.37014818,-0.9044865,-0.5964401,-0.06167831,1.0840732,-0.3701391,-0.5276752,0.19910583,-0.42822555,-0.25000075,-0.040012337,0.5978554,0.039152972,0.02140624,-0.692407,0.05445837,-0.12935044,0.34284163,0.047389325,-0.039191406,-0.4067235,0.7551787,-0.022685679,0.64650434,0.06633422,0.15584382,-0.31677362,-0.5512352,0.052156396,0.68443215,0.32999796,0.018397637,-0.32295278,-0.19650653,-0.30369613,-0.0824622,0.061167736,0.7001484,0.439401,-0.15422884,0.15945773,0.34338838,-0.14527005,0.095101476,-0.2655562,-0.34933332,-0.07440605,-0.15720804,0.3919157,0.66076505,0.013529015,0.3315768,0.10575512,0.4154255,-0.12153879,-0.49202988,0.45450088,0.7359192,-0.24859677,-0.2780832,0.66113824,0.46690273,-0.10077245,0.50858814,-0.66406316,-0.27397364,0.543147,-0.1228115,-0.54515076,0.14235385,-0.3079553,0.16386385,-0.69163394,0.12923545,-0.3975081,-0.5556571,-0.26057488,0.087407865,-3.3762577,0.12447238,-0.21019082,-0.19468693,-0.2502053,-0.10398283,0.1742851,-0.5340776,-0.6259345,0.040173195,0.0991522,0.70143026,-0.25923645,0.07641177,-0.31579062,-0.41359165,-0.28982598,0.31573611,0.029007895,0.40743822,-0.24325815,-0.41231102,-0.08611085,-0.004247512,-0.31361067,-0.10143534,-0.5348637,-0.30053625,-0.115518026,-0.48985875,-0.2635148,0.6198047,-0.24485391,0.11988519,-0.3054697,-0.06875708,0.014686712,0.2813327,0.17083628,0.11297465,0.096010916,-0.07539725,-0.09969567,-0.20441015,0.38780203,-0.05072358,0.2258125,0.294024,-0.09015414,0.18772344,0.45011356,0.50179106,-0.17580834,1.0423039,0.2971355,-0.14233555,0.3757504,-0.18318197,-0.3706164,-0.6034339,-0.16539663,0.066200264,-0.3955898,-0.4234204,-0.21054031,-0.36241144,-0.86686337,0.56962806,0.07732786,0.34917447,-0.06137536,0.2368003,0.63127786,-0.29724208,-0.07930647,0.1097428,-0.22851999,-0.5608085,-0.06558181,-0.5648476,-0.42144352,0.15351343,0.76937795,-0.5304941,0.080068834,0.17058153,-0.30259132,0.027632337,0.2256319,0.07996328,0.19740209,0.593881,-0.079950385,-0.50300467,0.5649126,-0.25457147,-0.12995185,-0.569021,0.34534058,0.6686257,-0.728349,0.48995253,0.25716186,0.00034776528,-0.41193613,-0.5337886,-0.076362155,-0.18756442,-0.19862194,0.38194525,0.20623474,-0.8936212,0.18158813,-0.0128142275,-0.19752786,-0.7382225,0.5942086,-0.1641398,-0.3466717,0.031827632,0.43952453,0.11489895,-0.014067594,-0.20384963,0.09091962,-0.42569244,0.24528852,0.20657666,-0.12523662,0.2956799,-0.22260815,-0.20744921,-0.7358882,0.09697333,-0.48084825,-0.26980317,0.47813836,0.091024645,-0.09443197,0.3397319,0.087874934,0.3648707,-0.1629006,0.105427906,-0.104829066,-0.0859797,0.50651646,0.5087295,0.40387884,-0.53560066,0.663229,0.087092526,-0.18985817,0.19209221,0.13020107,0.31715918,-0.11710718,0.6547695,0.0895999,-0.21247967,0.29330498,0.6103923,0.22144876,0.2858406,-0.0035787423,-0.15542601,0.17794551,0.12123504,0.30031157,-0.040972367,-0.73878765,0.084267505,-0.350545,0.106483124,0.43828896,0.1315311,0.23272608,0.023804126,-0.36880767,0.020903386,0.1505939,-0.17040902,-1.2632378,0.29644737,0.30662337,0.94967043,0.3770173,0.07921381,0.019584406,0.8563141,-0.17099245,0.0741104,0.34174082,0.14633815,-0.44162452,0.62062305,-0.85102785,0.4239444,0.04819463,-0.08636169,0.11984114,0.018904828,0.4140892,0.76016915,-0.2510807,-0.081790365,-0.105447024,-0.39056093,0.270441,-0.3479864,0.10570372,-0.52056056,-0.4715854,0.48564994,0.50990295,0.4731695,-0.1972195,0.05594609,-0.07918159,-0.12327822,0.23353821,0.15017897,0.054240204,-0.19241914,-0.56382245,-0.1481204,0.57486284,-0.3003273,0.10146518,0.032356147,-0.16381626,0.28990656,-0.08787267,0.07811465,-0.14074747,-0.6749861,0.049375717,-0.14588541,-0.3829723,0.54236156,-0.07821553,0.32192785,0.20241661,-0.061381463,-0.15369691,0.59076345,0.06567837,0.57159495,0.08319429,-0.042405583,-0.37434617,0.2084994,0.15771252,-0.21933502,0.04690043,-0.15954584,0.17712136,-0.5717495,0.4328825,-0.22294684,-0.43317923,0.0067470195,-0.18518928,-0.006211537,0.63330495,-0.05425,-0.227042,-0.16825113,-0.12905437,-0.357712,-0.29674903,-0.12548338,0.07270065,0.21549359,-0.13365367,-0.20918849,-0.119295925,-0.16186818,0.26028237,0.069605194,0.49336928,0.22844149,-0.067051075,-0.3090594,0.09382091,0.3175434,0.46209946,-0.022948574,-0.019369427,-0.12738104,-0.56994045,-0.5597131,0.22794189,0.037833616,0.2962376,0.13320015,-0.14221494,0.81448555,-0.20014653,1.0671436,0.13923642,-0.35873163,0.24475415,0.5818163,-0.036068074,-0.11772822,-0.33370668,0.90548426,0.54589725,-0.07942363,-0.06478038,-0.28817686,-0.096708044,0.08135331,-0.273225,-0.06489112,-0.008814188,-0.50204283,-0.010261583,0.15584472,0.23855467,0.24352536,-0.17741965,-0.09196485,0.2610336,0.0347062,0.23413117,-0.42212582,-0.3583519,0.37200195,0.13065995,0.041174565,0.075345956,-0.3684381,0.51740175,-0.44131315,0.1036541,-0.44811124,0.18957087,-0.3058061,-0.29408118,0.26651117,-0.01684734,0.3719679,-0.37931675,-0.35730037,-0.27596468,0.36024266,0.3236111,0.14777349,0.6046576,-0.23734204,-0.005022588,0.031690706,0.5036472,0.6563694,-0.29987144,0.0042250515,0.2826678,-0.4143149,-0.6429402,0.26464683,-0.44847286,0.07655353,0.1636629,-0.23060669,-0.31237724,0.24221581,0.073820226,0.064866945,-0.00035971802,-0.8087186,-0.16521874,0.08795827,-0.18909802,-0.17043617,-0.26678938,0.1771544,0.52459,-0.27464774,-0.41073525,0.08429897,0.1124145,-0.10537586,-0.74380016,-0.180296,-0.28389937,0.31253582,0.002023856,-0.32355502,-0.0919795,0.21620461,-0.57038474,0.1961173,-0.03952004,-0.29273683,0.04299965,-0.28345966,0.020231605,0.787958,-0.31959313,-0.123534456,-0.46743917,-0.4127839,-0.8110569,-0.2859067,0.15664919,0.2228241,-0.021096965,-0.45638457,-0.125491,-0.22584338,-0.067909926,0.012375092,-0.57798386,0.40289906,0.14047,0.4398155,-0.105975464,-1.0128057,0.2804725,0.009341021,-0.19815612,-0.7327353,0.43498433,-0.21123073,0.7607819,0.11017787,0.07734346,0.21936718,-0.53031856,-0.034036182,-0.24109516,-0.039126635,-0.6918738,0.011636992,480 -220,0.41734442,0.032107465,-0.364383,-0.25434116,-0.31611258,0.13663131,-0.14266853,0.20950963,0.23545246,-0.24931218,0.04150709,-0.098652475,-0.08477325,0.3182973,-0.12393169,-0.8945287,0.01030964,0.077589706,-0.6556323,0.3013976,-0.65162724,0.44278318,-0.008824845,0.38407022,0.06356993,0.17263816,0.21055596,-0.15930709,-0.012525376,0.12156153,-0.2265851,0.2817343,-0.29606524,0.15154846,0.10988108,-0.2612451,0.117799595,-0.28944728,-0.28138685,-0.6335317,0.41919738,-0.59597605,0.45109928,-0.043896746,-0.30002818,0.037377674,0.10064909,0.3188865,-0.33438513,0.079246715,0.17226568,-0.24693012,0.036236834,-0.2021506,-0.35478926,-0.45924333,-0.5644122,-0.038965657,-0.56108195,-0.23079206,-0.33412108,0.2533205,-0.34071064,-0.006980101,-0.15593949,0.394797,-0.2764689,-0.00031154155,0.40935323,-0.11275485,-0.03064653,-0.31782553,-0.13119921,-0.1074595,0.1820878,0.09629426,-0.22312202,0.27598968,0.40000474,0.5128987,0.018037518,-0.35320896,-0.17016882,-0.099013075,0.009405152,0.58429044,-0.16730422,-0.20264015,-0.23394765,0.042656757,0.06903614,0.22369912,-0.032147296,-0.3537906,0.076079085,0.15081613,-0.30502367,0.36943296,0.46556023,-0.44589356,-0.2599653,0.2909275,0.4285552,0.04843103,-0.21173699,0.13990706,0.04079827,-0.51403135,-0.22921304,0.37316486,-0.056392193,0.48360792,-0.119490676,0.1432643,0.7523906,-0.1556934,0.05249833,-0.22229895,-0.009507533,0.08328617,-0.43152,-0.15951003,0.052070513,-0.5091399,0.039126977,-0.2727074,1.0884264,0.21335483,-0.81835014,0.43780506,-0.54061186,0.15408255,-0.21127032,0.6040577,0.8256864,0.2185546,0.2610691,0.875517,-0.56027275,0.015749995,-0.05623114,-0.3301946,0.042662553,-0.040633313,0.13845341,-0.39705893,0.19201492,-0.07857264,0.06858122,0.025433216,0.2089569,-0.37709013,-0.14044315,0.015652705,0.787912,-0.45706284,-0.058766555,0.5977118,0.93756014,0.83390737,0.06613851,1.3614888,0.48435095,-0.22961117,0.12218382,-0.50305927,-0.4409407,0.17012812,0.2721626,0.111680046,0.28193656,0.11574253,0.0031500577,0.49559408,-0.32864246,0.055018116,-0.068747304,0.17546192,0.10336504,0.030275583,-0.4112853,-0.26887062,0.14286469,-0.084532954,0.14306515,0.24072647,-0.23894222,0.18229917,0.022856057,1.5050857,0.13544154,0.093968056,-0.016281486,0.3972023,0.21210776,-0.06153575,-0.013180212,0.24651736,0.39821658,-0.17159064,-0.6285613,0.037964236,-0.33896497,-0.34201044,-0.22458461,-0.36216062,0.054853033,0.038762208,-0.4830969,-0.071849465,0.04667924,-0.19025213,0.42786208,-2.532677,-0.27716866,-0.116141416,0.28226337,-0.1711639,-0.35799122,-0.37980384,-0.45411274,0.26665574,0.27959195,0.26275122,-0.6068007,0.48750687,0.2220682,-0.16410685,-0.066993594,-0.7362683,-0.08484002,-0.1522462,0.22386935,-0.09782956,-0.01778605,-0.2926633,0.2512123,0.75370353,0.061484497,-0.0899707,0.08758545,0.4522552,0.093020044,0.66067594,0.1293091,0.60016507,-0.05754958,-0.092567235,0.2649162,-0.4075515,0.3799878,0.20254189,0.16841109,0.3717327,-0.44961846,-0.726921,-0.5960909,-0.4339878,1.0390383,-0.40740526,-0.24107066,0.28296635,-0.07704559,-0.19402638,-0.020713849,0.42234933,-0.14451388,-0.23190306,-0.6283511,0.09828969,0.02107157,0.20252508,-0.09448437,0.08679313,-0.10352895,0.70317096,-0.28252926,0.3904838,0.16417433,0.21957922,-0.09767883,-0.4848143,-0.07313397,0.7652919,0.25604862,0.11287297,-0.14044835,-0.30667064,-0.1672428,-0.22066982,0.13055287,0.58363265,0.76009476,0.08679023,0.0115874745,0.42756268,-0.34846336,-0.012623112,-0.020344911,-0.36720958,0.012905631,0.040615592,0.6027014,0.37206486,-0.18184786,0.39373034,-0.046638586,0.12509362,-0.245399,-0.46883938,0.50530994,0.8539597,-0.16142759,-0.21921794,0.5235124,0.3104758,-0.42077243,0.21107379,-0.56436086,-0.1335812,0.75665843,-0.06970928,-0.3385124,0.03481854,-0.3463318,-0.08473335,-0.85969085,0.27324483,0.0099931145,-0.514117,-0.43520844,-0.16013509,-3.8147469,0.09146308,-0.29556212,-0.007866031,0.023433836,-0.026441677,0.2630406,-0.495179,-0.4125681,0.025029985,0.046881445,0.43023345,-0.003936555,0.1441969,-0.33647403,-0.12908359,-0.23005971,0.15543595,0.085037455,0.27734974,0.07832193,-0.24219665,0.37715694,-0.31150502,-0.44736817,0.115591414,-0.46324876,-0.5403146,-0.088277325,-0.45755556,-0.34975323,0.7564452,-0.42429674,-0.047129493,-0.26793945,0.031721175,-0.21011919,0.45941082,0.35338357,0.25768253,0.08743162,-0.055250842,-0.27718097,-0.4331547,0.24377945,0.07554488,0.2767014,0.31518194,0.119532585,0.08073091,0.48033306,0.5672486,0.10911797,0.5876024,0.26323518,-0.061717037,0.28166348,-0.42445284,-0.108327605,-0.54162794,-0.3906819,-0.29524803,-0.40904674,-0.51528126,-0.208848,-0.36067614,-0.74762714,0.31928506,0.026361426,0.07090931,-0.18029475,0.34679997,0.45874307,0.054783616,0.07167601,-0.018900782,-0.22496991,-0.5105425,-0.46083322,-0.61477774,-0.49397048,0.42092884,1.1265072,-0.18893534,-0.07641395,-0.17274904,-0.28365517,-0.024145277,0.1020317,0.2752439,0.36716402,0.35295677,-0.3010811,-0.5739882,0.31315392,-0.2081193,-0.18537287,-0.6826966,-0.029155118,0.75428444,-0.72874093,0.77448493,0.24664919,0.2939429,0.013815471,-0.5788707,-0.36805838,0.21889606,-0.27550495,0.5825959,0.0635544,-0.57834435,0.47076142,0.22512633,-0.0022233527,-0.65895665,0.429067,-0.06988521,-0.31060722,0.1130606,0.3421274,0.13303287,0.007185646,-0.07076802,0.20943078,-0.571334,0.19036002,0.3325674,0.14691098,0.41206276,-0.17317909,-0.15373367,-0.5162937,-0.12890056,-0.6233116,-0.24935442,-0.048186406,0.07178435,0.18147253,0.20885865,-0.06618293,0.4545835,-0.32149774,0.2188624,-0.010577491,-0.06893722,0.19121447,0.42364174,0.08485958,-0.44303137,0.5151211,0.08743424,0.083336,-0.024008267,0.14659627,0.46846783,0.23571663,0.40200812,-0.33853918,-0.10871223,0.17022607,0.7598021,0.13255502,0.27384704,0.23178443,-0.14711234,0.38509548,0.09758519,-0.048868276,0.07964332,-0.098074645,-0.22285321,0.11020344,0.2754385,0.4251478,0.09269862,0.31811893,-0.05204374,-0.22775091,0.26474205,0.14661631,-0.21563976,-1.0023925,0.33279592,0.25577906,0.66456765,0.41931295,-0.037953105,-0.06526154,0.40740055,-0.32925713,0.16976805,0.2945205,-0.06253786,-0.43783873,0.6196474,-0.49415386,0.499644,-0.2541005,0.006472842,0.040018365,0.29276946,0.3870161,0.80553985,-0.06775699,0.08509946,0.009347041,-0.28879306,0.107281,-0.24164991,0.15329823,-0.5164315,-0.2756891,0.47277874,0.40139726,0.24459137,-0.34180614,-0.10453653,0.08460323,-0.10603401,-0.005828138,-0.20270552,-0.14028719,0.017357413,-0.57911646,-0.503255,0.58712757,-0.24893516,0.0874513,0.07068627,-0.17406961,0.24178529,-0.038649686,-0.024918763,0.0026033083,-0.561291,-0.08994734,-0.18726215,-0.5737962,0.28748688,-0.5075052,0.2339295,0.26989654,0.06692989,-0.43340454,0.30448493,0.3243407,0.6614228,-0.12367081,-0.15968212,-0.51209515,0.06352102,0.14876227,-0.33155948,-0.10855395,-0.40736675,0.17962167,-0.6534311,0.47129157,-0.15407015,-0.25289476,-0.18321608,-0.13068983,-0.027925126,0.52726364,-0.36096197,-0.08142764,-0.0648442,-0.13352497,-0.2721487,-0.06926647,-0.27861246,0.27020866,-0.0055104415,-0.03432359,0.059763264,-0.26674092,-0.15950152,0.36276403,0.16736998,0.2048799,0.24189927,0.059514545,-0.2914439,-0.074749134,-0.12058282,0.2713597,0.057712745,-0.12537216,-0.32051694,-0.22349897,-0.19530776,0.4612986,-0.17352858,0.18869925,0.07940967,-0.5393043,0.75172776,0.08511984,1.1027681,0.15248843,-0.23096053,0.014046828,0.5569145,0.13602854,0.1951108,-0.2785739,0.7277736,0.55787903,-0.07992129,-0.2507455,-0.35367343,-0.1342503,0.26938984,-0.2592941,-0.23165806,-0.15565583,-0.6946861,-0.28206483,0.066675834,0.09330918,0.2253451,0.05201825,-0.15040486,0.06697524,0.10416536,0.63713515,-0.3698373,0.0869663,0.21915096,0.26948187,0.16278794,0.3706822,-0.23830882,0.3860996,-0.69539225,0.25482374,-0.4823139,0.09530724,-0.058513213,-0.19434121,0.19961151,-0.021228233,0.3125321,-0.120600715,-0.19782962,-0.21318303,0.6860308,0.24947461,0.32659626,0.7552935,-0.18872125,-0.046473976,0.19864415,0.5684659,1.5070076,-0.027800512,-0.029433267,0.18967454,-0.2282456,-0.6585687,0.17065343,-0.2865457,-0.054248538,-0.10678712,-0.39579725,-0.42084616,0.30868977,0.15467754,0.055920806,0.17788093,-0.46760628,-0.34359607,0.44427374,-0.28246453,-0.3020274,-0.3155184,0.40644592,0.74221367,-0.29820454,-0.30469558,-0.09209277,0.38524598,-0.2722197,-0.61173195,0.058447346,-0.44128215,0.47654375,0.1317241,-0.23229375,0.03223694,0.30961615,-0.4004135,0.11975608,0.42019045,-0.37301016,0.17179851,-0.015747407,-0.20799974,1.086701,0.12731074,0.061620545,-0.8432789,-0.45463958,-0.9356426,-0.39365166,0.5035292,0.23634954,0.0050926646,-0.47499448,-0.19861937,0.12664746,-0.07207707,0.10397796,-0.591059,0.25285357,0.07724382,0.37943587,-0.05154522,-0.8984446,-0.28088242,0.023083298,-0.37018028,-0.5068994,0.5617437,-0.29495364,0.80422443,0.050915506,-0.012605276,0.078231014,-0.36268967,0.4015505,-0.5249638,-0.21818975,-0.84573936,0.10090483,485 -221,0.6771746,-0.18933274,-0.35046014,-0.05649352,-0.36075774,0.10477588,-0.19909556,0.3502059,0.1511701,-0.40327558,-0.22858474,-0.022732342,-0.13549575,0.27908677,-0.27986035,-0.5649878,-0.08505822,0.13310114,-0.33396482,0.5751959,-0.48205584,0.2867801,-0.0066894847,0.42658952,0.34199473,0.31065693,0.11051672,0.032303445,-0.36654967,-0.42728347,-0.047742512,0.16548967,-0.5887235,0.3017563,-0.18076913,-0.46149865,-0.11210847,-0.3648793,-0.39678589,-0.5994063,0.27214274,-0.9023823,0.47575814,0.060282245,-0.15304647,0.16812068,-0.025315214,0.23988806,-0.19203043,0.16134879,0.13532989,-0.25775552,-0.11956618,-0.29031697,-0.16755982,-0.35004807,-0.57640666,-0.019232472,-0.38065752,-0.017346315,-0.35187447,0.29141957,-0.21815224,-0.030994643,-0.11323437,0.33759016,-0.6065396,0.20912905,0.100333974,-0.14950228,0.0916238,-0.68038255,-0.26354447,-0.1672933,0.10668508,-0.22189312,-0.2853414,0.2482424,0.22576329,0.54188144,0.1196741,-0.09702485,-0.42292354,-0.14398794,0.19425553,0.44488445,-0.21314666,-0.47284317,-0.18174477,-0.20908254,0.46924534,0.24428104,0.1342668,-0.30162686,-0.011187295,0.007120947,-0.28434753,0.43732733,0.5616703,-0.321261,-0.13360998,0.288598,0.44810066,0.0773484,-0.17565988,0.09523428,0.006875506,-0.40525302,-0.13641357,0.105656095,-0.2592502,0.5543644,-0.15134883,0.1600632,0.693194,-0.30793306,0.15786695,0.078978695,0.0665052,-0.05154059,-0.28215355,-0.41192505,0.2209549,-0.47997102,0.13502121,-0.17666125,0.84916705,-0.0128371315,-0.7453364,0.29941642,-0.47816986,0.030485954,-0.2056121,0.57805127,0.50318563,0.3736557,0.3648634,0.7553074,-0.4003002,0.074360386,-0.16151695,-0.24841572,-0.14258316,-0.104590885,-0.05500184,-0.44591948,0.067093804,-0.052993543,-0.032732103,0.13473774,0.6146399,-0.49073225,0.007925693,0.19440025,0.6908632,-0.48728865,0.10243584,0.8745335,1.180151,1.0878825,0.044613454,1.271089,0.4183136,-0.20075141,-0.104546115,-0.318875,-0.41936073,0.20354423,0.35335335,-0.2995311,0.24957825,0.17654237,0.016491778,0.34075877,-0.5320472,-0.02437845,-0.23410797,0.27983925,0.025118995,0.07119671,-0.4166675,-0.23422691,0.09387562,0.022904355,0.083964795,0.28655598,-0.4053819,0.32457176,0.10832551,1.4089652,-0.096554294,-0.06704379,-0.039492354,0.59283066,0.16580805,-0.10813924,0.15186939,0.121707715,0.3530808,-0.22234297,-0.6457811,-0.034408636,-0.23630738,-0.57692087,-0.17085025,-0.21944171,-0.14422426,-0.10842579,-0.35567385,-0.21518761,0.09292955,-0.3405832,0.49253052,-2.3453827,-0.15417449,-0.041341417,0.26105016,-0.11117775,-0.3976975,-0.118645445,-0.38870084,0.47038767,0.15315394,0.32384047,-0.63806117,0.46862787,0.57426864,-0.44279012,-0.12331005,-0.7231334,-0.056766447,-0.1609589,0.31495324,-0.03134869,-0.029871194,0.05493563,0.00048578184,0.70556706,-0.12097355,0.2558536,0.20976128,0.1970041,0.08248244,0.43027946,0.33640262,0.51399004,-0.24876696,-0.35432243,0.3878237,-0.36165914,0.19344038,-0.10307266,0.061248444,0.39714354,-0.51585495,-0.88288593,-0.71442914,-0.35918558,1.0962906,-0.20980929,-0.602327,0.25262558,-0.14209819,-0.37027842,0.031746723,0.3583205,-0.23171923,-0.094765306,-0.8288881,-0.041521255,-0.0672808,0.18095544,0.022436267,0.12643424,-0.41544935,0.6220386,-0.27612934,0.3795333,0.4524755,0.28281823,-0.2379993,-0.44060317,0.08905805,1.1049416,0.53098416,0.13687344,-0.31308013,-0.20664595,-0.07493031,-0.11120499,0.09692171,0.47841948,0.6173541,-0.06035509,0.113743134,0.16701236,0.05537912,-0.05743698,-0.28781447,-0.35662174,-0.11819984,0.1352391,0.7631451,0.59948194,0.06603796,0.5624069,-0.10389139,0.29336932,-0.19041462,-0.48007196,0.5404078,0.8783299,-0.16469781,-0.32846695,0.8155115,0.48105183,-0.30179256,0.5062186,-0.7979796,-0.27750364,0.30358955,-0.124956205,-0.4051711,0.13849793,-0.27556956,0.107378915,-0.8400603,0.4226179,-0.21264455,-0.62219876,-0.5787697,-0.38136283,-2.4211605,0.13844348,-0.30861017,-0.20985392,0.01841074,-0.3774509,0.25032836,-0.6468754,-0.5730569,0.12809776,0.08841979,0.5102208,0.028514652,0.15078214,-0.063489534,-0.16042337,-0.20913473,0.19829664,0.070886105,0.34469602,-0.01123902,-0.40256062,0.18634507,-0.0508185,-0.37321767,0.009624811,-0.63791883,-0.43901184,-0.079959854,-0.3847197,-0.2003992,0.57745343,-0.51871437,0.026467387,-0.35262316,0.013233998,-0.20647839,0.34112284,0.1376742,0.17545962,0.08667817,0.06156163,0.026630938,-0.25045437,0.1924443,0.108870655,0.084136315,0.32683536,-0.19434375,0.07235206,0.37776697,0.56683564,-0.07597058,0.9358022,0.54800767,-0.20420215,0.107009284,-0.18384266,-0.23547395,-0.66753083,-0.45165017,-0.082845695,-0.46687385,-0.48713174,-0.011206611,-0.3535175,-0.89888597,0.6628106,0.010451762,0.09786172,-0.015606379,0.2525505,0.3667843,-0.15482183,-0.056796867,-0.08644628,-0.0759247,-0.54595834,-0.43646047,-0.7149159,-0.35182026,0.031312272,1.0667329,-0.09673167,-0.06427263,0.3159858,-0.42426687,-0.040393054,0.10159678,-0.08248145,-0.021087121,0.5643266,-0.0041656257,-0.59736407,0.31190178,-0.036322888,-0.11972645,-0.5688087,0.1866845,0.72845197,-0.6460865,0.46045917,0.40505296,0.2166061,0.010672923,-0.54083425,-0.19058944,-0.12940179,-0.2403757,0.55036914,0.28571197,-0.71133727,0.5277549,0.33050898,-0.15967195,-0.726697,0.4924107,0.019214239,-0.2534804,0.006036838,0.23934379,0.24597129,-0.0036033874,-0.20968013,0.25268048,-0.40616304,0.3929337,0.28432903,-0.12536997,0.25092345,-0.32323965,-0.22712317,-0.75341034,0.034405947,-0.322361,-0.46381328,-0.013262633,0.09814789,0.11519162,0.3078801,0.21554963,0.3823654,-0.35012978,0.08848371,-0.14336236,-0.24726157,0.336981,0.5122333,0.5622838,-0.22202516,0.60152066,0.07110792,-0.15503922,-0.09034422,-0.097560376,0.48515707,-0.07631029,0.3263676,0.009240075,-0.20296517,0.37912115,0.70439947,0.25831065,0.39637628,0.011729197,-0.16120577,0.2816576,0.14317992,0.2858573,-0.018229397,-0.4464708,0.061396692,-0.030487688,0.18676478,0.34390822,0.2741631,0.42646676,-0.1186914,-0.2121481,0.06305133,0.03853774,-0.1500923,-1.4222913,0.26606888,0.06550066,0.75597084,0.637896,-0.057857372,0.06675088,0.60481197,-0.31257483,-0.074588105,0.34316596,0.07199159,-0.24900834,0.41155356,-0.6356558,0.436155,-0.08990897,0.091215506,0.038313277,-0.0010289471,0.36119977,0.74574834,-0.13283505,0.1012098,0.037832838,-0.33377087,0.026758019,-0.27272728,0.23158069,-0.57807237,-0.22675394,0.9531425,0.52224845,0.4400533,-0.10721293,0.00073380274,0.0672494,-0.10275384,0.1927108,0.13642098,0.013657181,-0.10947332,-0.51248604,-0.27077886,0.571066,-0.17701085,-0.012303487,0.053581335,-0.23612888,0.13779251,-0.052274924,-0.16176215,0.00060118735,-0.6144115,-0.08898397,-0.2498189,-0.27419585,0.21879816,-0.1292091,0.11944027,0.18357004,-0.050114784,-0.19495322,0.25906336,0.24731025,0.713437,0.18018939,-0.16577168,-0.08902285,0.22261162,0.2871929,-0.030041456,-0.06295838,-0.21000935,0.15763777,-0.7705932,0.36718887,-0.19699351,-0.38165298,0.16229142,-0.12645693,0.037955347,0.4502388,-0.12260506,-0.16067918,0.21896096,-0.09880975,-0.35289034,-0.15283523,-0.32844552,0.18857603,0.12393144,-0.062001027,-0.13002926,-0.1471182,-0.12977225,0.5286256,0.19084409,0.42009798,0.40014294,0.017278433,-0.46612567,-0.16052395,-0.034653846,0.513057,-0.2006602,-0.029803399,-0.23055588,-0.41102222,-0.3197821,0.23653339,-0.23990028,0.28175375,-0.016161462,-0.32399222,0.90125376,0.052914597,1.3135465,0.10912595,-0.4120038,0.17575432,0.5487168,-0.19654875,0.15280072,-0.23745598,0.95695007,0.5910067,-0.08944195,-0.23922281,-0.41537267,-0.039260093,0.23831914,-0.21172322,-0.29219633,-0.07069206,-0.7357147,-0.31062654,0.23059402,0.17080829,-0.036665265,0.061089672,0.247465,0.3813226,0.011893004,0.46293864,-0.5195523,-0.12714791,0.42705435,0.2709461,-0.042189114,0.09854113,-0.4083598,0.29110846,-0.5243744,-0.109641396,-0.25563952,0.1437818,-0.17147087,-0.2575832,0.21807583,0.107029915,0.41226283,-0.3528772,-0.29003084,-0.17408305,0.5778283,-0.09777316,0.10349556,0.44606146,-0.32782146,0.22029829,-0.11003087,0.37876967,1.178648,-0.3685544,0.13370892,0.33300468,-0.26712272,-0.49916515,0.33983314,-0.42795965,-0.08252878,0.11208407,-0.36291638,-0.54557407,0.3074264,0.14404781,-0.03958591,0.20212097,-0.61723965,-0.082830526,0.32404977,-0.11057563,-0.18169644,-0.1972575,0.12096931,0.6433605,-0.40482223,-0.3704136,0.029718788,0.37057763,-0.29868275,-0.43946043,-0.020743124,-0.32860625,0.41806367,0.11147587,-0.30863044,-0.1747557,0.11615745,-0.3912564,-0.14885044,0.37310597,-0.24738249,0.075691275,-0.34225675,0.21175508,0.6856361,-0.11162198,0.20146951,-0.68213195,-0.4450857,-0.9199956,-0.24465127,0.32154617,0.2025326,-0.10825407,-0.6672765,0.08664866,-0.21333763,-0.1722345,0.012691768,-0.5022673,0.49649277,0.19681378,0.45751247,-0.0494985,-0.81673527,0.056115076,0.04499763,-0.21449505,-0.5520179,0.5441961,0.059564088,0.889512,0.103809625,-0.012824378,0.005857573,-0.6393315,0.070208795,-0.21486661,-0.21427448,-0.83237904,0.14279476,488 -222,0.4260507,-0.041456725,-0.57330424,-0.2416503,-0.31320113,0.16769218,-0.19609343,0.18106298,0.13703378,-0.45384318,0.0017665704,-0.21759002,-0.025797209,0.32230815,-0.17708327,-0.72591287,0.13467021,0.0061785253,-0.5420479,0.30295345,-0.6630065,0.48324487,0.1730757,0.24568774,-0.047355246,0.35019392,0.28674078,-0.25544426,-0.1414086,0.019312883,-0.12425909,0.1569486,-0.7356097,0.14125894,0.018959641,-0.32273108,-0.0008977016,-0.23604779,-0.307885,-0.59959817,0.45597032,-0.7535713,0.46501198,-0.1340874,-0.3554589,0.16910018,0.06546009,0.29539862,-0.38109028,0.24689461,0.2594168,-0.086204566,-0.048384834,-0.067582436,-0.2622359,-0.60133857,-0.52892435,0.010396512,-0.5815715,-0.2360063,-0.31796482,0.17645188,-0.31688184,0.010985064,-0.21507107,0.33281243,-0.43673864,0.03725346,0.16184555,-0.114866875,0.23731384,-0.48175696,-0.1327474,-0.07752385,0.29368958,-0.13112608,-0.117987424,0.24477428,0.33107367,0.5439813,0.05747135,-0.1662654,-0.24056283,-0.17266493,0.19129829,0.53176206,-0.04300858,-0.29053155,-0.2880593,-0.12522583,0.029031456,0.21845552,0.06240581,-0.5766298,-0.013478746,0.14009279,-0.24189289,0.3908036,0.4782076,-0.48234737,-0.2346391,0.4256676,0.3700802,0.116852984,-0.14483516,0.29996485,-0.07708069,-0.6045606,-0.21645936,0.20782763,-0.08397301,0.5800007,-0.20554574,0.2121243,0.7957056,-0.13162464,0.078204624,-0.23360306,-0.24338265,-0.08227086,-0.1859596,-0.0064813453,0.13373835,-0.5107894,-0.022922348,-0.11848413,0.6765725,0.1777051,-0.74761045,0.41901118,-0.473689,0.01599839,-0.18269673,0.5875699,0.72766346,0.23120533,-0.0032277545,0.8247843,-0.65174663,-0.0013365905,-0.055017337,-0.55222255,0.17912436,-0.05262318,-0.033997003,-0.41375324,0.0011123011,0.19308046,0.09119236,-0.15103714,0.30023772,-0.38154152,0.06584989,-0.101963416,0.5656914,-0.51589495,-0.08358307,0.70466894,0.93820226,0.89442724,0.26276892,1.4216658,0.42328778,-0.15274204,0.20638159,-0.29092553,-0.52444977,0.13866693,0.29855412,0.13614163,0.24921721,0.14916325,0.08864615,0.32656005,-0.11687945,0.06780216,-0.05321157,0.23145603,-0.05424579,-0.17291114,-0.3546139,-0.1749223,0.1631808,0.0942302,-0.00086769264,0.110730365,-0.07789004,0.31636333,0.21879432,1.3762795,0.04159168,0.20756012,-0.02273035,0.2978897,0.21879171,-0.1373148,-0.10923188,0.34217697,0.28667516,0.007970643,-0.60958415,-0.024692647,-0.23538907,-0.46525815,-0.15139347,-0.35108584,-0.11632361,-0.15620016,-0.58988065,-0.08702615,0.1884466,-0.26338878,0.60235536,-2.5126905,-0.2872066,-0.2444885,0.23230022,-0.3045491,-0.30871376,-0.26542625,-0.49109048,0.33880728,0.46991724,0.34536391,-0.67147917,0.40334728,0.34200498,-0.12593421,-0.18836823,-0.6176599,-0.046559326,-0.0720977,0.33602676,-0.17696005,-0.10517728,-0.17257455,0.19691268,0.58153224,-0.121819325,0.054937758,-0.04055547,0.5046529,0.18958613,0.5877725,0.19550864,0.5742586,-0.23986258,-0.0040692864,0.3247896,-0.28191903,0.35523808,0.034908675,0.2712956,0.28698498,-0.42339668,-0.7539161,-0.6444075,-0.5209481,1.1312039,-0.38193005,-0.30122143,0.26143792,0.12088397,-0.19171911,0.0754156,0.35185447,0.044007346,0.074268706,-0.7406698,0.052376118,-0.12886047,0.11556726,-0.09724119,0.14255136,-0.28382534,0.67653006,-0.14048252,0.44832295,0.4404712,0.14394946,-0.0074288687,-0.5201291,0.029718745,0.9160059,0.34660515,0.09921103,-0.17751905,-0.18659058,-0.116777726,-0.23079745,0.16938387,0.4509724,0.746144,0.14421508,0.118416555,0.23800442,-0.07412307,0.11960276,-0.041490827,-0.26755682,0.05649643,-0.019839263,0.49990425,0.4775711,-0.3004927,0.40445417,-0.15791057,0.02969169,-0.23049614,-0.49824747,0.5841517,0.8621031,-0.17751579,-0.1526309,0.40965033,0.45110422,-0.39290848,0.40979636,-0.55596274,-0.2257886,0.6999373,-0.13433628,-0.33755988,0.08151173,-0.3120584,0.013600239,-1.0323287,0.34016842,-0.10856249,-0.409393,-0.41542754,-0.34969458,-4.389174,0.19443472,-0.2662714,-0.06757997,-0.13485391,-0.09176891,0.42584118,-0.5757305,-0.52625185,0.14487596,-0.09407184,0.45977706,0.02969556,0.25653225,-0.3719373,0.039164003,-0.17368388,0.23828726,0.045060694,0.1877448,-0.004050636,-0.40154073,0.15344462,-0.3298525,-0.5120347,-0.0048387805,-0.49545118,-0.60669845,-0.16421948,-0.43540546,-0.25449896,0.7973221,-0.49280944,-0.046071984,-0.1932977,-0.070183605,-0.39026827,0.493025,0.15549608,0.16151592,0.08764076,0.11984439,-0.2662701,-0.41061285,0.10419414,0.11869314,0.18012573,0.37139443,-0.21686259,0.1003991,0.4518965,0.5667928,0.021673024,0.62257695,0.11553285,-0.09339795,0.45376363,-0.3774943,-0.14032741,-0.7970993,-0.58032584,-0.4317385,-0.37714043,-0.72344244,-0.25961643,-0.32019052,-0.6930588,0.4172084,0.04666374,0.17583065,-0.1406435,0.13732506,0.24478808,-0.11363016,0.10373313,-0.1111063,-0.1540301,-0.52088714,-0.52449167,-0.61337173,-0.64965326,0.20800617,0.9400947,-0.068108864,-0.26268145,-0.00056989194,-0.27011248,0.012023994,-0.007306075,0.29198435,0.1757852,0.30857712,-0.14737895,-0.7113407,0.59444034,-0.18152998,-0.12790585,-0.5567494,-0.1807567,0.83793217,-0.60300606,0.5151582,0.45566064,0.25856888,0.2786433,-0.56340444,-0.33000082,0.08990244,-0.35037887,0.5935021,0.061965328,-0.5869939,0.50400364,0.28888848,-0.07437956,-0.5983354,0.70820206,0.078223705,-0.17251012,0.1793667,0.3773742,0.05947916,-0.10515296,-0.19270252,0.2962204,-0.6337755,0.23755787,0.44433117,0.078158885,0.52905285,0.009628359,-0.19615754,-0.6312147,-0.27077582,-0.3984486,-0.14443718,-0.04514854,-0.044935085,0.13769743,0.079850316,0.076608226,0.43296665,-0.44077697,0.23778777,-0.0349999,-0.11104055,0.17848912,0.5098152,0.2765442,-0.5091335,0.61410695,0.1092033,0.12787305,-0.10165558,0.08139895,0.47126517,0.38931766,0.32216308,-0.10376118,-0.15385208,0.11808273,0.7869704,0.341024,0.49576625,0.31365407,-0.30107126,0.34818122,0.26754457,0.2421952,0.06313331,-0.1836128,-0.072151676,0.017230935,0.20488717,0.35460442,0.123448804,0.34721455,-0.14326088,-0.046367295,0.1846247,0.22929786,-0.09777414,-0.9206468,0.3287646,0.30349013,0.49715182,0.58207417,-0.06377684,0.22208364,0.27470973,-0.3450295,0.10734818,0.34152743,0.02637427,-0.5648502,0.492406,-0.49852848,0.4060406,-0.34346077,-0.09362197,0.13707685,0.22748218,0.27158463,0.878912,0.07349127,0.20128404,0.12911256,-0.2414151,0.18022276,-0.3208228,0.068411775,-0.31157053,-0.13152732,0.621413,0.47892615,0.21963838,-0.28288367,-0.0751801,0.0115781985,-0.035841055,-0.02219599,-0.059721943,0.04660797,-0.035336114,-0.6682852,-0.4585522,0.5452604,0.006535061,0.029895313,0.13732593,-0.48070225,0.34666,-0.1961594,0.076739505,-0.036853734,-0.6701098,-0.058627892,-0.23477596,-0.48220712,0.2656652,-0.27452666,0.34083155,0.109840594,0.006385394,-0.3136595,0.10133372,0.12376644,0.7541223,-0.04470478,-0.22178572,-0.41152763,-0.12625211,0.5089019,-0.34954742,-0.17381331,-0.30586892,0.10661181,-0.46614513,0.33438358,-0.059254117,-0.058231276,0.07409743,-0.12812495,-0.011560345,0.43342283,-0.29820105,-0.10683085,0.21965216,0.0690607,-0.20388646,-0.020467173,-0.32373917,0.25798622,0.008836976,0.019799419,0.06094823,-0.052609634,-0.1317051,0.34384248,0.2418812,0.21376519,0.35426006,-0.055689495,-0.37276125,-0.12752435,0.027770517,0.3475291,0.071630575,-0.044812597,-0.12209376,-0.41415194,-0.25611743,0.34851483,-0.1403029,0.07074283,0.115758575,-0.42110613,0.63908696,0.14902648,1.1201528,0.15606856,-0.3779395,0.086231455,0.38689807,0.01554087,0.10874043,-0.35835248,0.92182696,0.70270467,-0.20342067,-0.28211066,-0.2790842,-0.27059403,0.1858035,-0.36377433,-0.23813592,-0.0694303,-0.6645744,-0.15208088,0.11750902,0.18753293,0.0057435534,0.092028625,-0.097098134,0.008972061,0.12656517,0.5603694,-0.65790784,-0.20419003,0.30605787,0.2762751,0.061420243,0.11290951,-0.23522994,0.4968618,-0.5844204,0.1212689,-0.4988243,0.09149123,-0.15528414,-0.1994429,0.14003812,0.06933274,0.29857475,-0.1305348,-0.36116028,-0.32710397,0.62028044,0.13004914,0.32014477,0.7553169,-0.21481527,-0.0070501724,0.0751962,0.5422491,1.2426059,-0.12069538,0.041498695,0.44873014,-0.39638695,-0.557943,0.14902149,-0.46525446,0.15981577,-0.19185804,-0.36623254,-0.3263475,0.3332563,0.1288301,-0.0050262213,0.11822633,-0.5171491,-0.30509266,0.5290843,-0.21043536,-0.38300574,-0.19316076,0.43420035,0.81521255,-0.5827686,-0.21522847,0.015696477,0.2751899,-0.27452743,-0.6045921,0.114308454,-0.2576196,0.4751105,0.18653539,-0.23896506,0.081379585,0.3081492,-0.28220752,0.20599073,0.44591448,-0.30017498,0.08806753,-0.3675541,-0.20242685,0.9789877,0.08075064,0.08367419,-0.7365542,-0.4814342,-0.9995377,-0.37939575,0.3524249,0.21287781,0.0186713,-0.36968583,0.04270952,-0.04074514,0.04208542,0.09797328,-0.49883178,0.44904894,0.115536585,0.45145407,0.02384944,-0.794624,-0.16266823,0.21865317,-0.26878262,-0.45658287,0.6429067,-0.2168968,0.62854886,0.15819179,0.06840715,0.11454192,-0.6022984,0.34847978,-0.4304603,-0.12515752,-0.79392934,0.07304946,496 -223,0.47934106,-0.1596756,-0.26435047,-0.13674746,-0.14446059,0.24349762,-0.014144784,0.51497906,0.21576613,-0.44875783,-0.0713023,-0.33221695,0.015919244,0.35741183,-0.11036571,-0.37945196,-0.04062205,0.085865445,-0.5029161,0.40101779,-0.44267836,0.3111629,0.063042775,0.37267935,0.08086705,0.25478926,0.17371774,-0.28873765,-0.20144895,-0.13535866,-0.15672608,0.07375113,-0.38369435,0.09307286,-0.13260351,-0.23443845,0.049991485,-0.41248983,-0.29493922,-0.66740566,0.19982651,-0.5720454,0.37882122,0.10658465,-0.1706007,0.4192859,0.031324517,0.2053292,-0.3392344,0.0030265688,0.23765244,-0.13244122,-0.025834598,-0.12782493,-0.12717612,-0.17495842,-0.4226179,0.022790283,-0.38319722,-0.28897622,-0.2784859,0.08576926,-0.23604693,-0.05465922,0.008835968,0.3702113,-0.40517557,0.020120287,0.12744065,-0.2197395,0.2629408,-0.3936269,-0.20476636,-0.088859685,0.30568713,-0.19949108,-0.09188767,0.3057283,0.12688252,0.5358114,-0.10491757,-0.1031264,-0.37604204,-0.10303364,0.07091076,0.53363436,-0.1167702,-0.56543595,-0.014011327,-0.10291125,0.03013722,0.09075793,0.11971423,-0.20556055,-0.20960355,0.022504533,-0.2880661,0.26348045,0.394829,-0.29730338,-0.28639558,0.38997838,0.47623986,0.041374613,-0.053792093,-0.12228927,-0.030720767,-0.51360697,-0.17936471,0.03875346,-0.2568685,0.3950164,-0.064293586,0.3385393,0.5763129,-0.15138507,0.05498759,0.04919665,-0.0075206677,-0.07824227,-0.049294513,-0.12256401,0.10559084,-0.29080874,0.11006028,-0.20335884,0.79926187,0.18851084,-0.72487414,0.3849027,-0.50068134,0.11796041,0.010367441,0.53870976,0.661992,0.32933146,0.32099822,0.6742644,-0.47833315,0.071744636,-0.1584395,-0.23890625,-0.03444445,-0.16834857,0.04645842,-0.46300977,0.032674022,0.18449458,-0.06854502,0.108107835,0.28789172,-0.5202123,0.004352021,0.17686574,0.7977058,-0.28511104,-0.033376567,0.59298044,0.95016503,0.79225427,0.010243264,0.94188476,0.21471867,-0.3670662,0.36471745,-0.4521349,-0.62638414,0.2943888,0.3099366,0.24831854,0.1630781,0.15866566,-0.013069505,0.26907107,-0.46876648,0.0983198,-0.11589846,0.114703946,0.170151,0.016611164,-0.27699262,-0.2909492,-0.13469583,-0.016810572,0.19469234,0.23527312,-0.21776484,0.30036786,-0.108137034,1.8105998,0.03500437,0.13166337,0.03184895,0.5121337,0.02210259,-0.019783003,-0.2107032,0.42102548,0.25478905,-0.031801384,-0.60793394,0.1885922,-0.14122869,-0.41360804,0.013239511,-0.3762879,-0.118795514,-0.030731698,-0.36402103,-0.0810068,-0.035013195,-0.4230321,0.48479268,-2.9111395,-0.18792789,-0.07084112,0.2277339,-0.25252813,-0.18919782,-0.15817288,-0.45269832,0.35824803,0.4488002,0.41411713,-0.60153395,0.2389153,0.29458395,-0.4093034,-0.21882716,-0.48219642,-0.058170192,0.04155537,0.3289896,0.06986656,-0.072275795,-0.07499752,0.11937588,0.36843392,0.019017844,0.055076923,0.23066787,0.40351954,0.09023321,0.4252113,0.022840777,0.42504492,-0.32553264,-0.12449643,0.22262189,-0.36308333,0.1967899,-0.11397317,0.120418265,0.2685916,-0.40558255,-0.8222036,-0.5626514,-0.21052662,1.2997204,-0.19722243,-0.28278822,0.3350393,-0.22568811,-0.116558574,-0.09175444,0.5139975,-0.018941225,-0.038652293,-0.79184353,0.1158224,-0.09791071,0.2916661,0.013910353,0.054633576,-0.4206083,0.67146236,-0.10959189,0.5158792,0.24554816,0.08451322,-0.26048645,-0.29246178,0.08997456,0.82248205,0.20637421,0.1516894,-0.054605056,-0.15831108,-0.30688605,-0.13942362,0.07510129,0.4302192,0.69035065,0.12708707,0.12929483,0.21979144,-0.021554856,0.030138314,-0.13058794,-0.1620778,-0.06056327,0.008128715,0.5460397,0.48446214,-0.19781272,0.40849712,-0.12107571,0.260068,-0.17506786,-0.35225576,0.52280045,0.52622265,-0.17110582,-0.1078285,0.48306274,0.5027574,-0.19196387,0.3880382,-0.5828667,-0.44320595,0.5921567,-0.23987235,-0.4617477,0.1697637,-0.27209333,0.16248061,-0.90433615,0.19779243,-0.092228316,-0.39398205,-0.4784432,-0.07382973,-3.4486873,0.03736379,-0.1185052,-0.28509533,0.08362018,0.0039408705,0.041916132,-0.56301063,-0.42461735,0.06494415,0.0046516676,0.5717274,0.010382014,0.14627688,-0.24368502,-0.23527925,-0.32381842,0.083201304,-0.09264967,0.36870325,0.04336308,-0.44927654,-0.0689442,-0.22106291,-0.34748375,0.04575577,-0.42850438,-0.4287627,-0.14829901,-0.4807476,-0.2592807,0.53705764,-0.3875402,0.0104044415,-0.20200695,-0.06160388,-0.1340401,0.41032505,0.20237058,0.1005133,-0.023796504,-0.039056037,-0.01745177,-0.2849882,0.28112152,0.09029015,0.1620295,0.503353,-0.051007506,0.15533727,0.44599405,0.63399637,-0.094303645,0.69889313,0.34122074,-0.11119275,0.2877049,-0.3583912,-0.1721176,-0.40814447,-0.2971381,0.030920785,-0.32101068,-0.38291562,-0.18318193,-0.3240513,-0.67985284,0.37898487,-0.0374472,0.12420061,0.043589063,0.15977392,0.4924708,-0.23210208,0.04330326,-0.117521666,0.009895444,-0.538906,-0.31560585,-0.6173624,-0.36629662,0.18522042,0.9179873,-0.11860275,-0.031933084,0.088500604,-0.174207,0.01795212,0.0049612005,0.080724865,0.16627066,0.36044046,-0.063482635,-0.6624907,0.5888884,-0.18924928,-0.13467093,-0.5744103,0.14002581,0.42489475,-0.55588967,0.39847437,0.29386997,0.16026898,0.019645441,-0.36050823,-0.19188073,-0.16229773,-0.1579803,0.18094209,0.03366091,-0.6006492,0.40661365,0.3179493,-0.24977309,-0.7432251,0.34186834,0.01672398,-0.4045687,0.053638794,0.26856562,0.21312396,0.052792773,-0.12974145,0.10229861,-0.45986488,0.383584,0.19167209,0.03222287,0.42825952,-0.21842642,-0.18123169,-0.5668695,-0.05904075,-0.39567268,-0.26509446,0.14850076,0.20830488,0.14868547,0.1935654,-0.038270786,0.29767832,-0.25784758,0.02939715,0.01197522,-0.12671374,0.2748081,0.37773094,0.47499588,-0.45261115,0.60513365,-0.020475268,0.021202154,-0.10617325,-0.11598126,0.37572908,0.07116546,0.27480513,-0.093989305,-0.3429353,0.3473114,0.6590141,0.23510985,0.28685942,0.035116866,-0.22555949,0.31072798,0.14757027,0.10765807,0.07095248,-0.42571828,0.014426375,-0.1593711,0.13292116,0.36754766,0.11240664,0.33507204,-0.024839604,-0.26051086,0.038339652,0.22332273,-0.21485281,-1.16645,0.30556786,0.10751455,0.8176301,0.49056482,-0.058963794,0.15096132,0.6678404,-0.22259562,0.13041261,0.19847076,-0.08573287,-0.6760368,0.58013,-0.56158733,0.48682755,-0.14626673,-0.024599869,0.006257677,-0.04520084,0.32114217,0.6496513,-0.14281705,0.017117003,0.094561115,-0.2677738,0.060284723,-0.35596138,0.15436387,-0.62164783,-0.189905,0.41371816,0.3473665,0.26520675,-0.17791346,0.05414849,-0.009258425,-0.06666002,-0.020357788,0.053581495,0.14501959,-0.027932383,-0.76135796,-0.15002309,0.5196544,0.00076028507,0.18483013,0.10076413,-0.25844678,0.15720078,-0.20808302,-0.10711077,-0.13265486,-0.451731,-0.057078507,-0.2809909,-0.3091249,0.3223864,-0.11607633,0.3785782,0.16961072,0.03504878,-0.26312014,0.33136776,0.2367527,0.6350434,-0.002236581,-0.15304706,-0.36731353,0.16106315,0.19100532,-0.14436038,-0.14873329,-0.16844334,-0.14407928,-0.49205893,0.4597715,-0.026609052,-0.16743806,0.18988337,-0.22368802,0.042327013,0.54639333,-0.054528333,-0.037367,-0.14363585,-0.2337556,-0.22067611,0.020677272,-0.1958432,0.28148574,0.13375495,-0.070136756,-0.05317998,-0.028933508,-0.07675794,0.40718687,0.04587681,0.251277,0.2458478,0.047864117,-0.30083483,-0.03098611,-0.006275928,0.3458983,0.06585122,-0.050879758,-0.27897498,-0.37383544,-0.36201757,0.094852366,-0.15044095,0.2694983,0.14536117,-0.33382872,0.6107499,-0.0016957521,0.96920913,0.05276328,-0.24637909,0.12446022,0.46308577,0.043644957,0.064442776,-0.4019514,0.75253814,0.46583265,0.016071744,-0.15143734,-0.19513386,-0.059775088,0.26152197,-0.19983643,-0.20583579,-0.06905233,-0.55679476,-0.36358684,0.28092724,0.20982693,0.22459193,-0.065380365,-0.03309358,0.1315197,0.054903116,0.37199852,-0.3859194,-0.2556311,0.34136513,0.17131875,0.11082614,-0.0076861638,-0.3611298,0.5042296,-0.57205606,-0.033677638,-0.13700955,0.09342549,-0.3181222,-0.19590276,0.2060601,0.19618651,0.3550865,-0.25679624,-0.36000004,-0.32593113,0.4484766,0.10376713,0.18462618,0.4345466,-0.1848118,-0.03027785,0.12891522,0.46240488,0.9416462,-0.26153857,0.05239524,0.47730866,-0.21378371,-0.5346909,0.35333374,-0.22992104,0.11896697,-0.05431315,-0.12646773,-0.46116582,0.29498917,0.18630543,0.08766388,0.037404962,-0.50992244,-0.24115713,0.40411982,-0.27383354,-0.26914513,-0.3378278,0.14699058,0.57543725,-0.28580686,-0.16993122,0.16046809,0.3159179,-0.24724385,-0.5816995,-0.019254986,-0.26391527,0.25992802,0.10192467,-0.25639048,-0.232995,0.093012385,-0.35149416,0.09335995,0.05950465,-0.45183438,0.022173723,-0.40594965,0.025595158,0.93114054,-0.08345785,0.26461002,-0.6177657,-0.38855875,-0.8689812,-0.33530897,0.72004396,-0.023254562,-0.17269227,-0.40391633,-0.08570218,-0.0750818,-0.15006648,-0.09361201,-0.31389925,0.39172748,0.14495216,0.3042969,-0.02125732,-0.60768783,0.075360455,0.017005173,-0.21266934,-0.4917694,0.4431333,0.06913815,0.74396497,0.059622664,0.0030501762,0.3748806,-0.47613484,-0.00314341,-0.17185974,-0.13038643,-0.52440447,0.16448304,500 -224,0.37973613,-0.24020703,-0.29820785,-0.10328083,-0.31426185,0.05764691,-0.17165308,0.56068057,0.108654805,-0.40981343,-0.19682193,-0.05067043,-0.005895086,0.22199017,-0.2422795,-0.3936381,0.109445676,0.07518103,-0.35367793,0.6106816,-0.37531388,0.20349605,-0.12284434,0.47238198,0.12139759,0.20807672,0.010169997,0.11443151,-0.031389546,-0.23657608,-0.04176379,0.4970083,-0.51438075,0.353245,-0.21401855,-0.2999906,-0.044518422,-0.47874394,-0.31198072,-0.8349547,0.19803686,-0.78211224,0.5351187,-0.15934245,-0.32784307,0.2914609,0.11563102,0.20660701,0.10794115,-0.18829863,0.06157569,-0.19227849,-0.0062109153,-0.15855023,-0.097897336,-0.3750442,-0.5351309,0.06260281,-0.46735686,-0.09771497,-0.33960503,0.169304,-0.30242622,-0.01721739,-0.0678194,0.53148913,-0.4745431,-0.043821275,0.13405846,-0.099488616,0.26835594,-0.6874162,-0.1159246,0.005892376,0.20629008,0.015419803,-0.24939826,0.2862381,0.3122508,0.46488082,-0.020059535,-0.16897802,-0.21618271,-0.05007823,0.1919642,0.6330119,-0.06287813,-0.47108567,-0.16283207,-0.11746909,0.3066507,0.18381189,0.14516404,-0.08106061,-0.2616255,0.056730725,-0.16361256,0.29720607,0.5128968,-0.26762497,-0.22676441,0.34229377,0.39488128,0.2984504,-0.09561868,0.08105477,0.016536148,-0.5009095,-0.16655357,-0.11443313,-0.23378533,0.56349903,-0.18428424,0.361596,0.55234057,-0.10134997,0.0025708356,0.22818293,0.07163432,-0.10046904,-0.33371836,-0.17605038,0.24926546,-0.55474406,0.1656505,-0.15807503,0.82301843,0.007219887,-0.6557226,0.27381974,-0.4450339,0.0015749614,-0.037498925,0.49771836,0.71959186,0.45521376,0.37322176,0.60853094,-0.2685891,-0.08225613,-0.13839136,-0.25929397,-0.083056614,-0.29005238,0.034299936,-0.53669757,0.0032261333,0.0830861,0.080503955,-0.048758525,0.3656708,-0.5535281,-0.06598093,0.09378286,0.72081053,-0.2438718,0.0025913268,0.93111813,0.9930488,0.9053267,0.19597673,0.9080839,-0.0022179803,-0.011110131,0.1242067,0.027402673,-0.5026949,0.29376423,0.35973495,0.43682507,0.12708068,0.015943909,-0.05157837,0.57461804,-0.33370203,-0.14042886,-0.16814466,0.2697968,0.09930487,-0.13774611,-0.5212557,-0.37077686,-0.0074839336,0.06616263,0.045540452,0.31322414,-0.19509272,0.41694075,0.13830169,1.3766351,-0.18481812,0.029330527,0.16449252,0.4403226,0.25117788,-0.20843367,-0.004635143,0.2643428,0.31050456,0.111523725,-0.5842211,0.22338744,-0.11074621,-0.50874895,-0.1167892,-0.3792626,-0.28068072,-0.027381087,-0.6063121,-0.15285152,-0.17332618,-0.24939051,0.41038808,-2.864657,-0.18219529,-0.04261452,0.29441112,-0.1639276,-0.4027771,0.10188819,-0.4762491,0.48605672,0.39394653,0.41799232,-0.5601625,0.3911373,0.4117007,-0.5316478,-0.10455168,-0.5650858,-0.18887635,0.06346748,0.3532258,0.21836516,-0.07848155,-0.029403877,0.021886593,0.5633897,-0.07938683,0.19745257,0.1822912,0.2550251,-0.21511021,0.31341723,-0.11097832,0.41641834,-0.14643352,-0.14857803,0.38433376,-0.3088727,0.29011604,-0.18222356,0.1829568,0.564395,-0.37894627,-0.8023671,-0.73622704,-0.38085017,1.2613108,-0.114979476,-0.45295924,0.2944755,-0.4996432,-0.34360075,-0.11667332,0.38442072,-0.17254296,-0.0095051015,-0.6409668,0.033645667,-0.17795709,0.005804288,-0.028688876,-0.08885148,-0.43791136,0.7016046,0.028424565,0.59725696,0.29865912,0.28048858,-0.26318267,-0.36941722,-0.07872556,0.6875697,0.64137596,0.18300216,-0.43164933,-0.18353605,-0.36353332,-0.06279787,0.14798495,0.57775635,0.6520315,0.010302013,0.18392883,0.21228646,-0.0034802635,0.051420704,-0.16730374,-0.16618367,-0.07180928,0.1642976,0.6816036,0.5754817,-0.15602855,0.37299076,-0.07747989,0.1788516,-0.26503322,-0.49039212,0.39737085,0.9095213,-0.20064835,-0.24372987,0.72528225,0.58796024,-0.078009404,0.33900625,-0.60296375,-0.34360605,0.38474637,-0.17165047,-0.437938,0.12968679,-0.31237248,0.21776079,-0.84571916,0.35046303,-0.34852192,-0.7759292,-0.5617236,-0.026347978,-2.9023771,0.24746071,-0.09669791,-0.26422295,-0.24112305,-0.48073474,0.23035595,-0.5785645,-0.5592143,0.15158479,0.04116533,0.72107065,-0.075413816,0.050355904,-0.23493095,-0.37774652,-0.20974083,0.11725021,-0.03213637,0.272597,-0.17732912,-0.2732924,-0.06729995,-0.15092497,-0.46394333,0.096385695,-0.4029547,-0.5767908,-0.17282775,-0.27685538,-0.27986276,0.49670985,-0.25148335,0.10742987,-0.23071188,-0.06045395,-0.09863225,0.35223112,0.11019232,0.22369304,0.12362803,-0.100492135,0.13199158,-0.29898226,0.17286961,0.023051314,0.22688776,0.52049047,-0.1005676,0.3285905,0.5916316,0.47557268,-0.20089836,1.0503544,0.43616676,-0.008764724,0.35480973,-0.14545682,-0.4418293,-0.46686694,-0.20785376,0.122204505,-0.42750493,-0.38651326,-0.029577564,-0.3198695,-0.78175324,0.5104903,0.093056805,0.29585725,-0.07268151,0.105200835,0.47922,-0.25145784,-0.14489584,-0.05454852,-0.08486382,-0.5706237,-0.4024487,-0.7510216,-0.63237965,-0.110246256,0.96357137,-0.15121704,-0.02483238,0.052031223,-0.17127705,0.028095761,0.10410966,0.010375985,-0.08288085,0.29895976,-0.108957544,-0.7255261,0.56193715,-0.009024119,-0.29379666,-0.3687577,0.2572913,0.58077115,-0.53113365,0.37254927,0.3919956,0.15925191,-0.225838,-0.64002967,-0.026658202,-0.16317873,-0.23310052,0.54279655,0.36821836,-0.8031657,0.4874629,0.28451353,-0.10840105,-0.76015157,0.46296754,-0.06009863,-0.21451406,-0.103446074,0.25488433,0.2418711,0.120006606,-0.12554003,0.19867174,-0.48395106,0.22778368,0.24575557,0.009767375,0.35537624,-0.25915366,-0.042005744,-0.67448497,-0.14208578,-0.60350454,-0.25264397,0.11792461,-0.026532345,0.088171616,0.23454615,0.12613818,0.3747514,-0.35734546,0.17222439,-0.058133963,-0.24731295,0.27197757,0.555292,0.54286104,-0.23670082,0.6125339,0.14811231,-0.012461766,-0.038427927,0.19300191,0.45436624,0.08428168,0.4716276,-0.23808217,-0.08743334,0.068941675,0.98420143,0.14480996,0.49381608,-0.101661175,-0.09863148,0.23069206,0.025737613,0.42481238,-1.9598006e-05,-0.53872234,-0.032794528,-0.3890207,0.07261038,0.5270915,0.087148994,0.24196924,-0.00085702934,-0.23571876,0.092689484,0.12128583,-0.07540814,-1.327005,0.3627529,0.29320842,0.8807564,0.47875676,0.053721204,0.071154036,0.7385511,-0.19133136,0.18036614,0.27926254,0.15882272,-0.4811956,0.5599805,-0.94487244,0.3787279,-0.051614273,-0.08802879,-0.040950757,-0.12418036,0.401093,0.59777015,-0.2049621,0.03439321,0.019441886,-0.41512254,0.2096034,-0.46419683,-0.041474994,-0.47371835,-0.23466955,0.72477204,0.56981176,0.3337148,-0.28087014,0.005231581,0.21057497,-0.07983933,0.110242404,0.038777165,0.08534687,-0.12972438,-0.45540947,-0.1430529,0.5506068,-0.059667077,0.29720017,-0.055576514,-0.26672336,0.19912027,-0.005748419,-0.23455824,-0.010383767,-0.6496974,0.10546659,-0.37993076,-0.55973727,0.45646408,-0.15257473,0.06886645,0.18303236,0.07571146,-0.12730366,0.18514591,0.07801485,0.64098495,0.052273862,-0.019520227,-0.31852925,0.13213506,0.1904097,-0.23632553,-0.20547065,-0.2291488,0.08304896,-0.45685995,0.28935555,-0.0937659,-0.19815236,0.12499056,-0.036672514,0.094604746,0.39467195,0.03949051,-0.12382393,-0.009866301,-0.20524146,-0.33218077,-0.20857283,-0.03720599,0.2989403,0.055330165,-0.08751013,-0.1035573,-0.12270708,-0.120934404,0.34755218,-0.0023668776,0.33427987,0.26274812,-0.17224601,-0.28908926,-0.047518842,0.19140667,0.51718545,-0.08931386,-0.09372511,-0.20590973,-0.42785487,-0.31051922,0.15531185,-0.032263644,0.31690255,0.09882224,-0.19139466,0.82096,0.0143622635,0.9008208,-0.012421777,-0.41067976,0.17797548,0.3346867,-0.01893372,-0.09597003,-0.33236548,0.78266186,0.29083106,-0.026694138,-0.11425122,-0.32833788,0.1184999,0.22305365,-0.14538176,-0.019383287,-0.066076554,-0.7319768,-0.17031386,0.27159357,0.29236957,0.015788956,-0.12562472,-0.14658995,0.31923616,-0.05214445,0.30544126,-0.44252524,-0.19162253,0.3708223,0.10593996,-0.091690384,0.12071596,-0.43916938,0.26910952,-0.6003021,0.07183839,-0.2266719,0.142945,-0.3562879,-0.23904593,0.27755642,0.021654343,0.36707643,-0.19188677,-0.35630074,-0.2825428,0.37505576,-0.0075883707,-0.00038990827,0.34129706,-0.223327,0.055246938,0.058829468,0.41291746,1.0220274,-0.30748194,0.108687945,0.2557109,-0.36895084,-0.54801,0.23808673,-0.30554885,0.19203204,0.072718844,-0.1957152,-0.53845036,0.16896993,0.38908184,0.17486241,0.007005318,-0.61534745,-0.15595001,0.13424608,-0.32238284,-0.1852909,-0.2580567,-0.015746208,0.56714183,-0.2571089,-0.23196311,0.032609895,0.3362004,-0.16384955,-0.512843,0.08768209,-0.3012399,0.23550098,-0.11773858,-0.41922912,-0.1376799,0.03422577,-0.39961174,0.08374774,0.18444853,-0.2661365,0.08093724,-0.4826073,0.22713418,0.9551332,-0.15906072,0.18432857,-0.46059695,-0.549822,-0.6649315,-0.39104903,0.22009425,0.28170303,-0.033032183,-0.5124953,0.07786395,-0.098496065,-0.08353775,-0.14138618,-0.35067004,0.4947073,0.17333221,0.34105304,0.010438045,-0.71524084,0.2810153,0.061013527,0.040848512,-0.41594493,0.39104757,-0.031287562,0.71633023,0.08763389,0.15330939,-0.022410464,-0.48342305,0.10272276,-0.20603244,-0.21885824,-0.6371656,0.042993255,501 -225,0.47078818,-0.16959016,-0.43959963,-0.19772743,-0.28984544,0.17583479,-0.25424224,0.106228605,0.25042415,-0.0836203,-0.0003531933,0.07959489,-0.19837332,0.30148897,-0.10391138,-0.6412183,-0.0053943973,0.06189034,-0.6731709,0.6042294,-0.3466716,0.3799207,-0.10622565,0.36984184,0.056904666,0.46662918,0.06265338,0.0972615,0.07527294,-0.049315352,-0.122472264,-0.005011038,-0.685783,0.3513983,-0.18633865,-0.3466702,-0.1378856,-0.3524424,-0.27425116,-0.72669256,0.32801867,-0.71254843,0.4779557,-0.22398624,-0.4170572,-0.08348176,0.16730952,0.3099147,-0.37385038,-0.115548834,0.13404961,-0.18760593,0.013581167,-0.11783629,-0.16076094,-0.6188792,-0.48782757,-0.11207645,-0.5590894,-0.037715618,-0.21282199,0.28102133,-0.30330345,0.017782044,-0.1810047,0.33166963,-0.40255097,0.033433095,0.27332312,-0.3057905,-0.15036091,-0.40459552,0.022757845,-0.14226022,0.2837972,0.27845183,-0.10723553,0.33074033,0.23162319,0.5637292,0.30540064,-0.30567947,-0.26410097,-0.17145504,-0.037131857,0.4285456,0.034030396,-0.19832917,-0.3156757,-0.20218521,0.5882446,0.13517745,0.097867414,-0.3169811,0.06378483,-0.17858212,-0.11586938,0.35974583,0.57002985,-0.29560956,-0.16842517,0.4363893,0.40864372,0.08409428,-0.33706146,0.27692947,-0.095046975,-0.22199488,-0.1925252,0.06529094,-0.07861824,0.46260878,-0.033400305,0.19749339,0.69350946,-0.04075213,-0.011591085,-0.0945696,-0.12282631,-0.07890694,-0.32686502,-0.19126488,0.19776143,-0.45283228,0.021864064,-0.28618547,0.60789263,0.058126587,-0.88998026,0.36044753,-0.44425672,0.07933437,0.034379017,0.6511932,0.79303956,0.5854669,0.17825945,0.8232966,-0.34639597,0.10717309,-0.0507854,-0.18796453,0.14033447,-0.20463659,0.14098732,-0.45737132,0.26521018,0.078127116,-0.072514854,-0.062329803,0.23114513,-0.43491375,-0.15263334,0.039187655,0.61328727,-0.3564087,0.016919034,0.8977121,1.0204091,1.0001845,0.070126645,1.1875837,0.4001156,-0.09054337,-0.093353905,-0.22734803,-0.43112096,0.053077593,0.32472813,0.31819,0.48235947,0.084059514,-0.07538209,0.49042332,-0.26890835,-0.0336048,0.047571026,0.26773027,-0.053869966,-0.023829728,-0.43020073,-0.2604762,0.32001698,0.1528768,0.0113118645,0.39928564,-0.22277983,0.55896974,0.1815949,1.1570085,0.17255625,0.10131014,0.09174042,0.44319162,0.15109368,-0.3699838,-0.048404567,0.25959048,0.29711086,-0.19444065,-0.51621443,-0.0901705,-0.34294024,-0.37633628,-0.21737316,-0.413964,-0.22433634,-0.10851264,-0.31201327,-0.26691416,-0.0005960822,-0.29033864,0.43940315,-2.4993908,-0.09806886,-0.25322142,0.2946105,-0.3290776,-0.15705791,-0.18439502,-0.50646263,0.13953243,0.35673636,0.31530195,-0.6007674,0.45049953,0.36098224,-0.51752186,-0.035520125,-0.6019681,0.18329407,-0.06298067,0.45381248,-0.078538746,-0.209047,-0.22472224,0.2730123,0.72282284,0.3886042,0.054959483,0.31793195,0.37624472,-0.07523026,0.3991932,0.08397557,0.44190425,-0.34725994,-0.110217944,0.43032664,-0.54275364,0.37833968,-0.06763103,0.19073887,0.47057286,-0.56730336,-0.64612454,-0.55737895,-0.26484433,1.3748542,-0.48656946,-0.53225404,0.27357972,-0.088858895,-0.21474247,0.062648825,0.5362236,-0.13824943,0.0989989,-0.48550975,-0.07573934,-0.10364883,0.22809839,-0.0903356,0.07766868,-0.3196179,0.7309775,-0.23707788,0.53600526,0.24856658,0.23910576,-0.1248514,-0.46110305,0.14378087,0.7123608,0.61396325,0.055498164,-0.074848175,-0.12601008,-0.22824939,-0.35471237,0.09567787,0.66062903,0.5786549,-0.09954928,0.07887055,0.33532888,-0.2650199,0.1397493,-0.13826875,-0.29051667,-0.1997463,0.17880633,0.5969414,0.6278963,-0.107069425,0.13517164,-0.12553866,0.16236594,-0.12240375,-0.60368407,0.5205523,0.5835295,-0.21658655,-0.14519024,0.5747841,0.47219247,-0.3622423,0.47366798,-0.62916696,-0.3697137,0.53706586,0.0029649993,-0.46906677,0.10137481,-0.3370965,0.058787894,-0.7064143,0.24366006,-0.13224284,-0.67323047,-0.42695218,-0.11644344,-2.8689017,0.115013756,-0.035312593,-0.11677567,-0.120356135,-0.11522511,0.42865425,-0.55951744,-0.5637369,0.20698342,0.062480614,0.43018153,-0.034608047,0.12389679,-0.29281434,-0.24345447,-0.4118797,0.25573274,0.10481093,0.2830097,-0.1445265,-0.357662,-0.0810739,-0.110865235,-0.5041584,-0.08195067,-0.65035075,-0.39926496,-0.19097878,-0.4818357,-0.18288682,0.6100058,-0.3433716,0.09331739,-0.34599647,-0.121699266,-0.2384107,0.23922087,0.22239408,0.16667245,0.14368607,-0.12464102,0.035099737,-0.2964404,0.29228547,0.055106103,0.32857648,0.41517422,-0.18506838,0.108320154,0.5188413,0.6022464,-0.01554536,0.7857017,0.07448629,-0.07300145,0.5422216,-0.19992606,-0.4019932,-0.61828697,-0.3142205,-0.13028578,-0.45282713,-0.3724334,-0.020886092,-0.2942103,-0.8571589,0.3468485,0.12726162,0.3441753,-0.1881868,0.13133296,0.45212355,-0.14691353,0.0873461,-0.09710515,-0.21223497,-0.5035948,-0.40999004,-0.65676516,-0.6037548,0.28938434,1.0585825,-0.100962594,-0.009290362,0.037373934,-0.3888879,0.0779617,0.10041855,0.21049014,0.057953235,0.31370825,-0.075140916,-0.628587,0.4186882,-0.17904653,-0.041752737,-0.48823044,0.21586703,0.6300146,-0.5939914,0.51003045,0.24273029,0.18233518,-0.14931351,-0.7652298,-0.15303864,0.005486107,-0.10808496,0.5803907,0.34802625,-0.6498818,0.38916004,-0.005467121,-0.1402888,-0.6347091,0.37950525,-0.082730226,-0.06603432,0.014764738,0.43993774,0.058834195,-0.20072702,-0.14250953,0.14007153,-0.5756965,0.2590576,0.39960727,0.027512755,0.43209597,-0.037211105,-0.33461085,-0.63977164,-0.17405656,-0.56369674,-0.20594254,0.09123346,0.046129253,0.023654552,0.022905236,-0.034796778,0.41065267,-0.21330027,0.21484426,-0.10073986,-0.284957,0.58776295,0.508003,0.47278252,-0.44728792,0.6766785,0.24964467,-0.043639265,-0.12957197,0.058331575,0.48121887,0.2242212,0.3588497,-0.07351885,-0.017601904,0.012746751,0.53635937,0.3406104,0.40694264,0.08009555,-0.29071534,0.33209208,0.14829364,0.1076866,-0.10493448,-0.31019703,-0.037237186,-0.14515024,0.17659439,0.411279,0.06808378,0.47717178,-0.10826111,-0.035353877,0.2435017,0.01520447,-0.31545582,-1.1771249,0.29579464,0.3091425,0.8082207,0.45086887,0.15383783,-0.15351573,0.6646829,-0.29941443,0.06304648,0.3900101,0.0077313026,-0.39505714,0.58997667,-0.44986698,0.41992807,-0.018658495,-0.011639134,0.3504486,0.2687287,0.45519385,0.8079949,-0.101371594,0.026122864,-0.115607545,-0.26687425,-0.007088356,-0.2253042,0.26510292,-0.4664851,-0.45108128,0.58221537,0.32669073,0.35677797,-0.3091245,-0.09619379,-0.010383652,-0.1708481,0.11161712,-0.15635708,-0.021924365,-0.24634014,-0.53244287,-0.3704396,0.5265905,-0.2861474,-0.057678837,0.13432887,-0.3273163,0.15344815,-0.13930945,-0.03730391,0.04354048,-0.63320345,0.14448781,-0.23426278,-0.33513588,0.3932673,-0.29867032,0.2511179,0.14070779,-0.040786274,-0.36464444,0.06473133,0.07482691,0.7454719,-0.014653317,-0.19208957,-0.2606706,-0.02277985,0.32015565,-0.38232043,0.10607801,-0.3391598,0.054487552,-0.6106317,0.32054654,-0.2389432,-0.22203453,0.052068885,-0.13024895,0.011159425,0.38450032,-0.1982844,-0.16203478,0.22971365,0.03697184,-0.4944211,-0.25036728,-0.3430194,0.28787374,0.101358004,0.06838725,0.07120703,-0.08351316,0.07929257,0.35855597,0.09825872,0.13068579,0.29981664,-0.18698259,-0.46072626,0.24790828,-0.0093858,0.34441042,0.21706527,0.031570774,-0.32015827,-0.37585753,-0.36161432,0.3243226,-0.22943905,0.19179024,-0.06699875,-0.2657576,0.8389632,0.08063242,1.1422323,0.08566458,-0.42219195,0.18950576,0.59679484,0.007348754,0.084843226,-0.30621612,1.0158727,0.62803155,-0.177215,-0.18494233,-0.4284724,-0.26156232,0.21936226,-0.36831194,-0.27675804,-0.014772505,-0.6586495,-0.11794748,0.017680092,0.17894863,0.033971462,-0.057630047,-0.13158354,0.22462621,0.127537,0.5353279,-0.4981984,-0.17048544,0.32518804,0.020447278,0.06641692,0.17964908,-0.3808858,0.3858639,-0.82052684,0.12153331,-0.45020404,0.0432832,-0.100096814,-0.4184206,0.16404481,0.039735034,0.3590731,-0.39517292,-0.51610595,-0.17813708,0.6464522,0.24218264,0.20806861,0.67336756,-0.27401263,-0.15241215,0.118727475,0.53367865,1.1535027,-0.13901709,0.09852834,0.18621698,-0.3403856,-0.7053595,0.11636943,-0.35639194,0.093617685,-0.00654765,-0.44449535,-0.2731891,0.30371687,0.11919567,-0.14636315,0.19484776,-0.5612856,-0.15462217,0.14505482,-0.24870926,-0.18550208,-0.33834794,0.20864144,0.6852292,-0.33725864,-0.502464,0.0026091218,0.22241758,-0.24838775,-0.7015769,0.04131611,-0.24420626,0.31017044,0.0006816864,-0.49213573,-0.099748135,0.29169372,-0.42491737,0.043673143,0.36015892,-0.37152913,-0.0031460046,-0.29898208,-0.118331686,0.9559891,0.20549883,0.14686604,-0.64772666,-0.40780053,-0.8605577,-0.44120774,0.0569125,0.27079687,-0.051351972,-0.5060028,-0.03326165,-0.30878222,0.21530391,0.116863504,-0.5192934,0.31598425,0.21828909,0.5714489,-0.13957296,-0.94697213,0.12607187,0.20519136,-0.1275159,-0.41974264,0.5192279,-0.12995404,0.74565226,0.210361,-0.012354863,-0.061585434,-0.6951185,0.228117,-0.3165492,-0.17665698,-0.6166454,0.2218052,503 -226,0.34947008,-0.037415575,-0.5401853,-0.25259864,-0.41191542,0.1494754,-0.27967772,0.1658052,0.16032194,-0.3358309,-0.00020453334,-0.06613841,-0.110926986,0.28264672,-0.0932029,-0.5621502,0.1405038,0.11705259,-0.67848855,0.48192212,-0.6309001,0.3160143,0.044101954,0.3205712,-0.034660317,0.24073629,0.13894,-0.08834412,0.023835996,-0.07328084,-0.13924718,0.36494955,-0.76529515,0.2560805,-0.109521486,-0.31699154,-0.0032312472,-0.23791961,-0.21647525,-0.696727,0.18521948,-0.7012474,0.5452983,-0.10672405,-0.4418848,0.027408374,0.059812233,0.29901823,-0.30516112,0.15635599,0.31280607,-0.14205557,-0.13682999,-0.09219635,-0.10068042,-0.41617125,-0.5071201,-0.026027216,-0.6717859,-0.08151453,-0.27493662,0.23977095,-0.34104434,0.006991601,-0.3718139,0.4172579,-0.37461442,0.057042487,0.013666423,-0.13551189,0.04543812,-0.43251938,0.0017121792,-0.09721469,0.3594937,0.022327201,-0.23912078,0.056593616,0.32582673,0.673204,-0.0035496673,-0.2244497,-0.16678225,-0.24049574,0.21544844,0.33704773,0.03381252,-0.18659994,-0.22451226,-0.080966264,0.22486286,0.2407053,-0.06365953,-0.47215202,0.12103991,0.05665218,-0.25138897,0.24639218,0.4118077,-0.4176186,-0.2354566,0.4053322,0.45070824,0.12564509,-0.26300147,0.3090626,-0.07560987,-0.44713694,-0.29580015,0.2803383,-0.03182378,0.31537655,-0.19800942,0.23819488,0.77033347,-0.08287461,-0.028406302,-0.05821781,-0.14771049,-0.0862445,-0.2575934,-0.07602237,0.04333668,-0.5147659,0.11626462,-0.2622347,0.7658812,0.04502745,-0.8742846,0.31491116,-0.55377674,0.06870469,-0.13744614,0.71501356,0.85898966,0.3054727,0.10673485,0.7151481,-0.49766046,0.07611248,-0.11032586,-0.39927092,0.018364366,-0.09346934,0.15816246,-0.47076994,-0.05825435,0.015767861,0.028918136,-0.22259732,0.17513438,-0.3926097,-0.16522236,0.04084378,0.5615256,-0.41922665,0.005677076,0.7426283,0.89717776,0.95109934,0.17499945,1.3631443,0.35381094,0.007837304,0.024793236,-0.27064294,-0.5445505,0.086006634,0.30260774,0.23688792,0.16841622,0.07497723,0.15437654,0.58597565,-0.30386174,0.07180907,-0.06713063,0.2894865,-0.059268963,-0.114638805,-0.24835481,-0.14672539,0.34108385,0.091942295,-0.0944716,0.38451284,-0.13863716,0.3426472,0.28570208,1.2385406,-0.03867278,0.0866679,0.09930624,0.27781916,0.12962858,-0.31207985,-0.092601046,0.33378547,0.45151833,-0.12459662,-0.539864,-0.026621092,-0.22722344,-0.32300287,-0.21734768,-0.33514988,-0.1409127,-0.16766702,-0.4603242,-0.14592272,0.009320175,-0.25673702,0.49855837,-2.6803937,-0.16127406,-0.116202496,0.22463153,-0.22706273,-0.2976301,-0.33538043,-0.47528553,0.3264701,0.30524987,0.34593168,-0.6221701,0.6002011,0.38497737,-0.2730389,-0.17443953,-0.74076235,-0.12372797,-0.027772052,0.42647,-0.052658953,-0.13876642,-0.24530564,0.18365638,0.64205575,-0.048691437,0.1484153,0.15136878,0.57838815,0.07086606,0.7033161,0.2412108,0.5571063,-0.25580895,-0.115103595,0.32977343,-0.30899844,0.41301683,0.07101323,0.18164212,0.36914328,-0.42502794,-0.68006855,-0.6213518,-0.4432951,1.2329772,-0.48599538,-0.35217422,0.27608618,-0.10814789,-0.27044323,0.13022453,0.47187233,-0.026007365,0.042371426,-0.70753545,0.011715635,-0.09138338,0.32213518,-0.16298757,0.1944469,-0.345864,0.6967152,-0.1307335,0.55269307,0.42681,0.1883829,-0.048614264,-0.34081814,0.043687582,0.9798616,0.4237226,0.096959956,-0.17219235,-0.2549332,-0.22252528,-0.117662676,0.116424054,0.5850916,0.5049745,-0.02334974,0.27389982,0.35729876,-0.27241242,-0.029979836,-0.25849682,-0.3414784,-0.031916093,0.20878454,0.40535837,0.5182329,-0.16404766,0.45468143,-0.16370554,-0.055561606,-0.18797049,-0.56169546,0.46609047,0.52902716,-0.24478269,-0.099182114,0.51626337,0.45489326,-0.26000458,0.36910564,-0.4460624,-0.3335067,0.62808496,-0.06589348,-0.40283865,0.2352562,-0.312113,-0.0067774337,-0.8981773,0.27580884,-0.29842246,-0.6840631,-0.6073467,-0.19512925,-3.5629687,0.13347314,-0.04222304,-0.016676713,-0.16032162,-0.2440505,0.41376358,-0.45115831,-0.54360956,0.05541509,0.0077474616,0.40790537,-0.09502018,0.19608015,-0.39514834,-0.27568468,-0.27999896,0.2997509,0.14260027,0.24804758,-0.06578065,-0.40698782,-0.021268262,-0.17175461,-0.35179582,-0.04879084,-0.5452899,-0.46166018,-0.070140496,-0.33135378,-0.18539077,0.72128415,-0.36259288,-0.01936612,-0.32187563,-0.1041173,-0.2285299,0.43359053,0.2946287,0.2053197,0.014455278,0.01978915,-0.28781626,-0.3845103,0.02793723,0.053752553,0.22730058,0.40487856,-0.017714404,0.11946774,0.38102975,0.48617393,0.025194407,0.7278254,0.20994386,-0.15488516,0.4665345,-0.30500704,-0.3158473,-0.70447034,-0.3412094,-0.3617207,-0.444096,-0.479031,-0.13568586,-0.23961735,-0.78996634,0.40624025,0.14008994,0.06526665,-0.26717025,0.27019483,0.4024107,-0.040314034,0.030472837,-0.11919613,-0.27236593,-0.49212188,-0.58212173,-0.7211332,-0.51569366,0.17339522,1.0852114,-0.22496475,-0.16778582,-0.037157293,-0.2689392,0.037166674,0.10206654,0.15101784,0.21553849,0.4702845,-0.08972012,-0.7286608,0.39089635,-0.1192526,-0.075145,-0.585874,-0.031114427,0.8971062,-0.7309656,0.5787468,0.17650573,0.16490243,0.10469149,-0.68143934,-0.24794243,0.07061409,-0.28801638,0.66822433,0.15757132,-0.6665975,0.5169859,0.22416018,0.16068366,-0.6237503,0.5127439,0.06925983,-0.035714213,0.14069079,0.3631991,0.026523607,-0.02849264,-0.06692353,0.25838587,-0.38231087,0.3839706,0.3794154,-0.15277322,0.2630684,-0.067080356,-0.26014766,-0.47052592,-0.16603208,-0.5256061,-0.23494077,-0.020125242,0.030133603,0.1267203,0.11608707,-0.0643459,0.39511806,-0.24677357,0.21009485,-0.009150382,-0.15126596,0.32674465,0.5060927,0.26217684,-0.4669406,0.57245654,0.18096629,-0.06439016,-0.059821185,0.14042705,0.4237993,0.26720753,0.40694058,-0.19403562,-0.1221652,0.22839823,0.7718093,0.2216153,0.5044104,0.07799064,-0.09444402,0.21970682,0.18657748,0.13172239,-0.1274938,-0.3108692,-0.058141377,0.05811154,0.26447293,0.4433282,0.19016916,0.37967265,-0.059408147,0.043068595,0.20741338,0.115572624,-0.11723181,-1.192817,0.39120582,0.23779099,0.6380126,0.5420091,-0.00535237,0.14265281,0.38767853,-0.41918564,0.068656534,0.31928667,0.114356056,-0.40550023,0.5624226,-0.53873163,0.42840147,-0.18128523,0.06652691,0.07341895,0.07123765,0.3251556,0.95956486,-0.11330571,0.14183985,-0.009267681,-0.20225026,0.16597085,-0.22567043,0.040514637,-0.47848836,-0.33494103,0.621949,0.50840396,0.25693858,-0.48997843,-0.10495486,0.021398136,-0.16884102,-0.034680095,-0.09044244,-0.0250472,-0.041526258,-0.4736602,-0.27477887,0.65786564,-0.10678108,-0.08601298,0.1242656,-0.42708784,0.39081162,-0.027914755,0.12085328,-0.03299934,-0.5573375,-0.061951797,-0.36193618,-0.4526181,0.27919734,-0.3561111,0.32004228,0.19339152,-0.041098427,-0.24734996,0.28048027,0.06529272,0.694488,-0.008546948,-0.005823815,-0.15305836,-0.01301932,0.33504456,-0.2560396,-0.24791694,-0.43964192,0.113516964,-0.557836,0.21957661,-0.16207296,-0.31748745,-0.08570672,-0.103960626,0.04936601,0.44592407,-0.113518916,-0.11185603,0.18667619,0.022657549,-0.34198064,-0.110417694,-0.3012872,0.2802612,-0.0058322507,0.1665424,0.020076983,-0.10134433,-0.052640155,0.22964798,0.10329192,0.1740181,0.30499655,-0.009320561,-0.34308872,0.04875172,-0.02367781,0.29121864,0.18068711,-0.16696633,-0.17996763,-0.32259098,-0.25217277,0.41232428,-0.17228647,0.16825533,0.005019593,-0.4211788,0.8270014,0.18838876,1.0747948,0.13839908,-0.40298328,0.11901602,0.47521192,0.09262927,0.19861427,-0.20101728,0.725662,0.56358224,-0.10090234,-0.050162863,-0.37486744,-0.28733787,0.20811826,-0.28906327,-0.309953,-0.08362282,-0.6606472,0.024310084,0.07119907,0.2145705,0.073858365,-0.08892129,-0.13186292,0.14005966,0.12620457,0.5459231,-0.6123091,-0.08467414,0.30626944,0.1675542,-0.0020335119,0.16510716,-0.33512318,0.47246546,-0.7551639,0.17424825,-0.43287563,0.12792546,-0.12580553,-0.23397176,0.09669127,0.015966212,0.28076893,-0.2523824,-0.3452019,-0.28428742,0.64891624,0.23467524,0.34040126,0.82760406,-0.21253271,-0.033090122,0.110265814,0.44822198,1.129997,-0.07540289,-0.19587891,0.268262,-0.28149548,-0.6558182,0.117896,-0.48345944,0.1622316,0.007694801,-0.50545573,-0.12880345,0.2822836,0.045217037,0.07446216,-0.103905566,-0.57868195,-0.05623637,0.44733208,-0.06317298,-0.19320989,-0.16995606,0.1838262,0.8207055,-0.39749396,-0.29436162,-0.10573004,0.217073,-0.32906947,-0.51168597,0.038720217,-0.31275573,0.36664453,0.24053457,-0.32472762,0.10085012,0.29451123,-0.4658117,-0.018503796,0.38163865,-0.3166495,0.07431031,-0.23397213,-0.07319231,1.0651536,0.02268556,0.087398715,-0.42912945,-0.50278324,-0.685559,-0.20910087,0.20566256,0.2679666,-0.056068107,-0.45789957,-0.021263702,-0.17129542,-0.03979141,0.1723031,-0.5781847,0.46364367,0.19091773,0.40762377,-0.0042109014,-0.87440324,0.07426281,0.15031637,-0.007358742,-0.47500473,0.6472823,-0.17938073,0.7030401,0.040423695,0.051119283,-0.038817402,-0.58162993,0.22655058,-0.33153498,-0.083903044,-0.8124988,0.06356659,504 -227,0.20839795,-0.23320669,-0.27750412,-0.04980665,-0.18748668,0.055032555,-0.06227998,0.29266256,0.1639896,-0.21177272,-0.22720115,-0.13077432,0.122595504,0.51428556,-0.1438552,-0.6003743,-0.1773817,0.053184763,-0.7050668,0.39590275,-0.6086069,0.22855447,0.052104782,0.38749468,0.089229725,0.3958674,0.33624285,-0.33034974,-0.038188815,-0.00874265,-0.23820741,0.06611471,-0.46945572,0.15981182,-0.073936544,-0.2302358,0.18852122,-0.5036356,-0.3205728,-0.6207835,0.2419629,-0.79980177,0.41477972,-0.08368016,0.022315998,0.1517894,0.22836414,0.30916864,-0.54370755,0.0060100695,0.1673507,-0.13305551,-0.06994187,-0.2710195,0.10055666,-0.37678066,-0.3653343,-0.013991123,-0.5194181,-0.3997281,-0.1611868,0.08979817,-0.35782018,0.07012733,-0.0904293,0.2678831,-0.37236091,-0.050727885,0.2674165,-0.25884256,-0.010002887,-0.46436444,0.036662403,0.046198267,0.48913842,0.038891055,-0.057374246,0.41782808,0.24387763,0.36066395,0.1364927,-0.18038104,-0.16360071,-0.2470551,0.11827299,0.4955911,-0.07534606,-0.5710203,-0.03743149,0.26970273,0.03373424,0.32503065,-0.031631026,-0.20782048,0.010159182,-0.07733572,-0.2173833,0.36621937,0.5810435,-0.31397438,-0.30379498,0.39764553,0.5666706,0.2321152,-0.11119384,-0.11216596,0.02879507,-0.4752715,-0.10426514,0.044573452,-0.14516118,0.5159735,-0.04959281,0.25480476,0.8805731,-0.14999028,0.06975384,-0.029953847,-0.070353515,-0.2051437,-0.1547232,-0.13674076,0.06360181,-0.41977125,0.03948715,-0.31875798,0.7702372,0.23827794,-0.66416717,0.45041835,-0.5116927,0.16042216,-0.0275418,0.58020717,0.46578053,0.39802685,0.3841069,0.6971602,-0.44998223,0.2127112,-0.14229806,-0.5316585,0.010969766,-0.20471616,0.06775243,-0.42824575,0.16859215,-0.122657865,0.10875727,0.053225335,0.15869766,-0.48015058,-0.042655006,0.17679039,0.89434296,-0.35091242,0.049605347,0.7387804,1.052665,0.95692027,-0.06810602,1.096569,0.35503095,-0.2759077,0.18909487,-0.35015264,-0.7133649,0.20246018,0.4262921,0.10074175,0.18186472,-0.05648321,-0.047233775,0.2458559,-0.4369094,0.03354633,-0.088084176,0.40625817,0.23921426,0.0069398223,-0.44216108,-0.16312605,0.011547157,-0.10910844,0.15703987,0.26126608,-0.26586926,0.38057986,-0.029813834,1.5497915,0.07182158,0.19633128,0.08472312,0.6411896,0.18148498,0.060799997,-0.2095695,0.44616386,0.45691592,-0.08926323,-0.61614645,0.21047634,-0.382286,-0.4640936,-0.10250981,-0.40365422,-0.11133407,0.05314288,-0.30793524,-0.10434841,-0.04011968,-0.16628547,0.36191216,-3.0749674,-0.2583524,-0.04691015,0.2740029,-0.4123543,-0.041827958,-0.035196066,-0.56119734,0.24517842,0.23645741,0.47178724,-0.6819917,0.5082113,0.35597423,-0.41326487,-0.2399642,-0.57066065,-0.091552615,-0.022821682,0.5277411,-0.02290957,-0.08598062,-0.23876637,0.088137306,0.6431096,0.008476222,0.12092975,0.36383066,0.44280016,0.26654023,0.5831228,-0.01291406,0.5544596,-0.4441959,0.022135073,0.26708892,-0.21151753,0.29444394,-0.19012037,0.07324306,0.4004845,-0.4730144,-0.7996073,-0.53986275,-0.22314148,1.0690863,-0.45345482,-0.31310543,0.17817098,-0.09113694,0.055129964,-0.074682444,0.52140063,-0.18120816,0.00072346925,-0.64170057,0.19855699,-0.037251554,0.16203955,0.02145792,0.07729039,-0.26647803,0.612851,-0.06269524,0.6137769,0.25697377,0.26548257,-0.14306569,-0.12861617,0.105325244,0.7395187,0.18780541,0.015139715,0.039813768,-0.23960909,-0.007055072,-0.2518522,-0.053980887,0.5303297,0.7304611,0.06820318,0.09529962,0.22569595,-0.089351445,-0.02165415,-0.15829936,-0.124389075,-0.01912738,0.0051570544,0.41668993,0.70881444,-0.2420039,0.47696218,-0.22367702,0.25765598,-0.01352064,-0.47084185,0.56833816,0.29707372,-0.20589164,0.034228943,0.3490315,0.53448826,-0.36384937,0.35548952,-0.55056036,-0.24288599,0.80232847,-0.24763156,-0.44734085,0.20435794,-0.12481297,0.11353137,-0.7913501,0.27229118,-0.18913594,-0.40545088,-0.5004558,-0.06992841,-3.4078085,0.049801525,-0.14979678,-0.16734466,-0.23197703,0.023737805,0.13882573,-0.63004786,-0.4997985,0.14695533,0.20479712,0.46078414,0.029173354,0.19426364,-0.3316216,-0.07571193,-0.2821493,0.07650148,-0.020092558,0.16488044,0.0037822365,-0.4331816,-0.065908246,-0.070711754,-0.46980843,0.3106557,-0.48416424,-0.33258632,-0.07550541,-0.45034778,-0.3005513,0.6201936,-0.34847316,-0.02811767,-0.19596092,0.013378571,-0.23241732,0.12555437,0.2390733,0.12045538,0.04843549,-0.110753424,0.17247722,-0.39617643,0.5144502,-0.057102904,0.3602637,0.17197797,0.17037304,-0.028372265,0.3579535,0.6469074,0.0012759328,0.85182387,0.28165582,-0.11215033,0.28517768,-0.42840183,-0.29204655,-0.39734328,-0.38868216,0.07822945,-0.33372396,-0.52150315,-0.0737362,-0.33275935,-0.6164905,0.4778062,0.056864142,0.29943052,-0.09426728,0.24004501,0.48201567,-0.18861346,0.05746245,0.034541164,-0.035441402,-0.6338628,-0.25615594,-0.68101275,-0.48094234,0.0912857,0.80958164,-0.2509604,-0.13571982,-0.2574697,-0.30659547,0.011363983,-0.09425783,0.057255816,0.4353219,0.38961878,-0.11752563,-0.75688773,0.6063356,-0.1646851,-0.14404087,-0.50294393,-0.03364609,0.5429381,-0.7923281,0.4646396,0.26130265,0.06894981,0.085501246,-0.42884588,-0.21538846,0.0148402015,-0.04262594,0.19443093,0.003464663,-0.7475923,0.50215834,0.3155751,-0.50843626,-0.6796672,0.14713958,-0.024417615,-0.389388,0.042213973,0.24534872,0.29833105,-0.086186394,-0.23765449,0.08675163,-0.5208524,0.36465406,0.120590284,-0.035075285,0.39880288,-0.15015851,-0.3509518,-0.61410147,-0.13649149,-0.37729114,-0.121116035,0.34097666,0.11279712,0.042892918,0.07226248,-0.046709027,0.37337816,-0.32652834,0.050248936,0.06262281,-0.25056642,0.1961977,0.35190842,0.32426804,-0.47776878,0.54540455,0.105317675,-0.11327278,0.20266373,-0.015762066,0.3106225,0.1296676,0.29394072,-0.11297576,-0.22048712,0.47677276,0.7471686,0.14858226,0.29153264,0.02340018,-0.17456481,0.5044922,0.04349832,-0.04062321,0.20919634,-0.39088258,0.060083885,0.021342056,0.110790364,0.4506606,0.34082305,0.37306765,0.12187294,-0.21260755,-0.0077311792,0.25242084,-0.10807726,-0.99494344,0.3898706,0.18738794,0.85920936,0.34764448,0.10305931,-0.04751265,0.6591494,-0.20833853,0.07726297,0.32604933,-0.027611073,-0.53769857,0.76106566,-0.54628557,0.5096291,-0.14135045,-0.09010019,0.08005655,0.14824532,0.22023821,0.79537845,-0.21662147,0.010202727,0.025147093,-0.14722899,-0.036445554,-0.3421126,-0.04020146,-0.4163221,-0.30746603,0.41317406,0.3452093,0.1940438,-0.13853852,-0.07013928,-0.04059168,-0.1731722,0.17404468,-0.047544356,0.02659425,0.07827243,-0.66422355,-0.3382024,0.54838365,-0.03807079,0.22371654,-0.21210937,-0.23217858,0.17735665,-0.32955158,-0.14616974,-0.0005591651,-0.49233797,0.1673562,-0.1367045,-0.46099937,0.29351494,-0.18337385,0.27548367,0.1403826,-0.04404513,-0.23636302,0.23062481,0.07609712,0.8932096,-0.107576095,-0.3001852,-0.48724887,-0.07873292,0.21253572,-0.1446023,0.10306371,-0.38947037,-0.050744805,-0.44966692,0.6175711,-0.1723141,-0.2696219,0.14666374,-0.35738984,-0.018506024,0.6130837,-0.08078194,-0.08468275,-0.18496396,-0.15866007,-0.4553086,-0.051194,-0.3607294,0.17377545,0.30147108,0.06749033,0.03134951,-0.2381488,-0.23098345,0.64429206,0.052484546,0.48885968,0.16680704,0.032432318,-0.07077717,-0.082979426,0.07639112,0.38752773,0.21132298,-0.03225182,-0.40512225,-0.32806763,-0.30944923,0.21456775,-0.20168668,0.18709926,0.020672692,-0.31849864,0.7369372,-0.010077574,1.1888893,0.1415722,-0.24943513,0.13204564,0.5863121,-0.06802692,0.06485756,-0.4306335,0.81594646,0.5474809,0.021629453,-0.0027074656,-0.37101367,-0.089971304,0.37857386,-0.34131902,-0.18305579,-0.02299652,-0.30568233,-0.43412405,0.19655643,0.2177692,0.24572173,0.032668784,-0.2167448,-0.065462664,0.16652988,0.49474207,-0.5181627,-0.2517432,0.26983958,0.1365966,-0.03679619,0.09916702,-0.39485553,0.5084354,-0.48146492,0.18993454,-0.4001261,0.06785533,-0.14014135,-0.2210931,0.13707668,0.0020803988,0.41797325,-0.32763547,-0.53455395,-0.0196409,0.362101,0.07432036,0.20666704,0.56917155,-0.1668588,-0.0457383,0.11482366,0.5756724,0.93623084,-0.4000294,0.11484321,0.37344503,-0.37916392,-0.55875415,0.4432464,-0.2523752,-0.08712778,-0.07450824,-0.24464537,-0.4987177,0.3309341,0.23246117,0.015201994,-0.05468239,-0.45960584,-0.24078865,0.48327824,-0.2995408,-0.32160708,-0.2878685,0.28138766,0.75479543,-0.35262054,-0.16076487,0.09951404,0.26154423,-0.24667886,-0.51935166,-0.14093632,-0.30760816,0.33769673,0.16104965,-0.106294125,-0.14407301,0.19411786,-0.4365902,0.13406903,0.08673752,-0.37980232,0.09441535,-0.078465395,-0.032174803,0.8800115,-0.27224478,0.03377303,-0.87254006,-0.31522706,-0.8543139,-0.44105855,0.49436945,0.08839854,-0.028785255,-0.38387024,-0.046300914,0.10581711,-0.1387763,0.0038062194,-0.5287147,0.31793335,0.020916771,0.49384117,-0.21031275,-0.74347967,0.07708573,0.035511136,-0.1761414,-0.564087,0.68760693,0.044524226,0.7202451,-0.05151031,-0.09010072,0.107418604,-0.34851846,-0.032090366,-0.45176107,-0.17366965,-0.7371662,0.22641271,508 -228,0.26272914,-0.22772,-0.2882349,-0.18136737,-0.08938908,0.1180809,-0.117764875,0.22091235,0.21253271,-0.38571966,-0.11939384,-0.337305,-0.0011851862,0.42762125,-0.09626112,-0.7196283,-0.076490365,0.091663666,-0.66235346,0.54872555,-0.32902604,0.22925673,0.023229357,0.2337921,0.08864347,0.1367702,0.2714266,-0.19314842,-0.15497287,-0.113766156,-0.14321056,0.17152436,-0.7658842,0.19136581,-0.032089923,-0.34764752,0.0046402137,-0.39441463,-0.35132405,-0.7142977,0.3762662,-0.71282065,0.40152732,0.07000971,-0.14995964,0.55017763,-0.054090023,0.2557897,-0.27093303,0.047016144,0.13097808,-0.13116166,-0.012028182,-0.03552265,-0.07167603,-0.272339,-0.64984494,0.11347102,-0.28447706,-0.3427164,-0.29687998,0.120672636,-0.312708,0.0065006656,-0.11615406,0.46382242,-0.3948094,-0.09167648,0.20548235,-0.04405747,0.28424263,-0.4589403,-0.093868814,-0.06865978,0.30458668,-0.20978801,-0.081710644,0.30186087,0.28168952,0.5369276,0.031864144,-0.204218,-0.28152573,-0.074324444,0.15806171,0.4383387,-0.06813073,-0.65194887,0.10504044,-0.020877134,0.028677246,0.07662519,0.14101614,-0.30057475,-0.23392671,0.11218336,-0.23146074,0.32905665,0.46733978,-0.22544833,-0.44344914,0.31022835,0.4427262,0.106851354,0.069589265,-0.022969551,0.060504936,-0.5323748,-0.20963697,0.229115,-0.39103386,0.49533924,-0.16211747,0.21496339,0.61603475,-0.21436258,0.05379103,-0.059510984,-0.16307707,-0.007656606,-0.011927973,-0.21081534,0.19835587,-0.36303812,0.24924086,-0.2646294,0.8649432,0.162245,-0.89449674,0.38050455,-0.5232171,0.24066798,-0.105506524,0.49822286,0.65308756,0.25285822,0.25862497,0.5836324,-0.5308531,0.0629567,-0.069975615,-0.29822385,-0.121720634,-0.18939777,-0.1644682,-0.4549017,-0.09969446,-0.012921901,-0.05085804,0.06572349,0.19211751,-0.57700235,0.18534318,-0.0054733157,0.8073563,-0.30679855,-0.05346987,0.7006249,0.94292957,1.0887277,0.108090386,1.1634543,0.36098003,-0.32139906,0.3392576,-0.44263572,-0.7386344,0.24885885,0.3902038,-0.1385574,0.2047191,-0.061083894,0.07248007,0.25868964,-0.48272312,0.14958216,-0.19290206,0.2722599,0.14010467,-0.18587698,-0.23837239,-0.25160363,-0.12621944,-0.030781623,0.08441942,0.24780017,-0.06936366,0.35322964,0.101213306,1.4887097,0.020894436,0.006390067,-0.059412036,0.43372378,0.09904029,-0.12413964,-0.103471026,0.21746582,0.3396921,-0.028025659,-0.6982956,0.13495913,-0.11533766,-0.4182248,-0.22199167,-0.23857592,0.09598257,0.09602179,-0.28377303,-0.1688214,-0.13693123,-0.27469215,0.5622471,-2.576571,-0.17165892,-0.08564626,0.21916114,-0.29266223,-0.25108743,-0.015995828,-0.64459056,0.44355857,0.30030766,0.35338017,-0.69153404,0.24955139,0.31805187,-0.4881281,-0.12288265,-0.6132826,-0.19568771,0.05132554,0.3502865,0.038194895,0.012275894,0.05704986,0.22743526,0.41302612,0.055626296,0.027003247,0.20132042,0.34167856,0.23298305,0.39650324,0.066622294,0.53066397,-0.16761066,-0.059077222,0.35267073,-0.30868948,0.23768239,-0.1388858,0.11996408,0.35183373,-0.44724062,-0.7829474,-0.6400465,-0.37521067,1.2226056,-0.09353139,-0.42193028,0.3009426,0.08001487,-0.0024428288,-0.12997141,0.37340164,-0.1952499,-0.09766063,-0.7134703,0.028019872,-0.0077770553,0.15567869,0.06677984,-0.037070647,-0.4499844,0.5085554,-0.08032047,0.30347204,0.42972305,0.2583783,-0.22081408,-0.5977986,0.109716006,0.8856382,0.35757312,0.09480477,-0.11803708,-0.19845985,-0.340968,-0.15606576,-0.016955966,0.2912427,0.8143424,-0.03285544,0.03376417,0.21733321,-0.012667712,0.18091859,-0.17152539,-0.2906529,-0.0334222,-0.026013525,0.46797886,0.4847224,-0.18899265,0.36680204,-0.0147957895,0.15212923,-0.042386137,-0.3309167,0.7006709,1.3575647,-0.017212989,-0.17121647,0.4324191,0.39182574,-0.16164121,0.3781279,-0.53186935,-0.17965606,0.6221391,-0.280218,-0.3997142,0.17265339,-0.2769605,0.12418392,-1.007046,0.3132887,-0.2829351,-0.33772194,-0.65126693,-0.001200223,-3.0645423,0.04380722,-0.30655634,-0.21301118,-0.02367088,-0.09458869,0.08973112,-0.45734197,-0.5407464,0.27906764,0.09651407,0.56182694,-0.012659138,0.35498697,-0.09509715,0.031973567,-0.44231603,0.1981473,0.124345556,0.20708415,-0.032713007,-0.43339488,0.022765178,-0.2215793,-0.48638743,0.22244257,-0.40087324,-0.41803405,-0.23522167,-0.47663593,-0.36833936,0.59611624,-0.33059838,-0.01021936,-0.24066891,-0.05995293,-0.15854478,0.387584,0.12931268,0.09344888,0.024804382,-0.101024665,-0.09204681,-0.27926216,0.28872287,0.12128422,0.23047495,0.38978302,-0.10995151,0.102583535,0.4011485,0.6098389,0.08671908,0.5474687,0.5908371,-0.043690324,0.27697966,-0.37254006,-0.24498574,-0.45885712,-0.4157354,-0.0011982997,-0.295866,-0.5665907,-0.12919278,-0.3086084,-0.62121975,0.28898916,0.036809493,0.07656355,-0.0070573133,0.08290111,0.3265619,-0.12716934,0.04659176,-0.11674614,-0.07184649,-0.456147,-0.22945307,-0.6175939,-0.44147837,0.18568398,0.8867477,-0.03209604,-0.17577177,-0.01836118,-0.12626705,0.033013273,0.046896324,-0.20812137,0.25854266,0.19033581,0.020348763,-0.76214516,0.6457659,0.07979665,-0.13794184,-0.558737,0.09331919,0.4049556,-0.43902656,0.38583076,0.23315702,-0.085117795,0.051193174,-0.36695406,-0.14285374,-0.10936601,-0.25590506,0.20197791,0.07818357,-0.5480642,0.45733076,0.28725776,-0.27291048,-0.79722524,0.32626218,0.16018803,-0.26132205,0.09747161,0.2587148,0.026752282,0.04991246,-0.3267152,0.23086244,-0.48172697,0.32004008,0.21201201,0.024275146,0.23774086,-0.13180296,-0.19293927,-0.7525907,0.045402322,-0.46492118,-0.20714083,0.07984998,0.21246459,0.05433546,0.20977508,0.07825799,0.38336438,-0.20099173,0.1288967,0.041512366,-0.28745395,0.15834092,0.399498,0.3900248,-0.39860395,0.552031,0.0017957409,-0.09128548,-0.09488596,0.0016855558,0.44564942,0.1671148,0.14013998,0.16420645,-0.26614273,0.3677538,0.7564139,0.12940189,0.33536866,0.008056871,-0.23411082,0.43406755,0.10461093,0.19296604,0.116316035,-0.42422396,0.0008361022,-0.119509,0.13213173,0.41809246,0.037199296,0.31624985,-0.093885705,-0.37174782,-0.076425195,0.23789713,-0.1614096,-1.016524,0.30638137,0.17908505,0.94460857,0.8238256,-0.08782514,0.23204234,0.52083385,-0.21517912,0.11755691,0.32421646,-0.08713479,-0.64063376,0.5913946,-0.6301206,0.313612,-0.06034905,0.0034137985,0.0088522965,-0.0076362095,0.17827211,0.6338132,-0.22377568,0.04718038,-0.16425091,-0.2525712,0.23124212,-0.43352994,0.2140688,-0.4166778,-0.2426332,0.5612537,0.35721365,0.21545695,-0.05729365,0.051584173,0.23985939,-0.1489441,0.26179653,0.1142228,0.03909627,0.06483532,-0.6634812,-0.25209945,0.52723885,-0.08420698,0.08155822,-0.08737927,-0.28472334,0.09968879,-0.42227095,-0.19037716,-0.12894902,-0.68332297,9.498596e-05,-0.21895865,-0.1486847,0.44417006,-0.17398281,0.23930341,0.16419882,0.18591736,-0.27569738,0.052870393,0.21475355,0.5819769,0.10250326,-0.14494728,-0.33569032,0.034988206,0.14846367,-0.17111482,0.01948135,0.1504675,-0.1528835,-0.6229642,0.50438,-0.06584834,-0.12464678,0.14994453,-0.20758574,0.013166964,0.50012016,-0.21436192,-0.0060241045,0.14620931,-0.14924075,-0.11655847,-0.03332882,-0.08645291,0.332601,0.29287827,-0.017214911,-0.048599277,-0.0366614,-0.18571551,0.44615474,0.052891497,0.30917376,0.16183032,-0.072371416,-0.37708017,-0.25679672,0.026221566,0.24623537,0.06467515,-0.018111292,-0.25193715,-0.3547802,-0.32600358,-0.030068127,-0.14878526,0.3051328,-0.093837894,-0.44031996,0.52645105,0.12605573,1.0852422,0.10216353,-0.2916269,0.15040687,0.36433417,0.038842823,-0.004660055,-0.45567068,0.822652,0.47202045,0.026310543,-0.110913925,-0.22489296,-0.0043310644,0.18842998,-0.06354765,-0.08591063,0.063114755,-0.5938486,-0.45208848,0.25393337,0.22208157,0.069097914,-0.120456584,-0.088596344,0.18548624,-0.040275138,0.31125742,-0.45408437,-0.12398497,0.3052936,0.10438809,0.1928017,0.090650894,-0.3919554,0.3504078,-0.52111864,0.13222086,-0.12525758,0.17089316,-0.16013715,-0.0846031,0.28729126,0.25267273,0.2210057,-0.2037785,-0.4437577,-0.22634731,0.5125012,0.070867464,0.22211751,0.60527116,-0.28190258,0.045457896,0.02053577,0.4764558,1.0072715,-0.14421968,0.060379528,0.35957465,-0.33412874,-0.3978451,0.61505926,-0.083790526,0.039798904,-0.0880369,-0.21131748,-0.6069762,0.15451466,0.21859767,0.08710385,0.16869506,-0.64940166,-0.42917055,0.3063716,-0.40160066,-0.2786021,-0.32520702,0.15225662,0.643203,-0.43403354,-0.1626127,0.2537452,0.17524013,-0.29071432,-0.5314435,-0.081955805,-0.32939416,0.20484404,0.09512374,-0.39983746,-0.17790177,0.2877397,-0.30925676,0.09598958,0.07062583,-0.39021462,-0.04513091,-0.22967942,-0.04676125,0.89194554,-0.3201835,0.14420582,-0.6394674,-0.4332433,-0.9492042,-0.3584102,0.67319924,0.12594979,-0.01068548,-0.6278858,-0.008193183,0.0036655266,-0.021850187,0.05628791,-0.40073958,0.436264,0.18061113,0.35720718,-0.049773466,-0.5318665,-0.0065409304,0.09311843,-0.12950203,-0.47046325,0.4969228,0.05737768,0.7089646,-0.011083547,0.008345628,0.34942624,-0.49267128,-0.036855314,-0.17115323,-0.21269657,-0.5187098,0.10314908,511 -229,0.39425248,-0.27943,-0.38352886,-0.09607843,-0.44737053,-0.19187959,-0.27445135,0.26668027,0.25711608,-0.17982292,-0.17666334,-0.18041697,0.04206842,0.3558868,-0.107024334,-0.6331807,-0.17019469,0.27525896,-0.69889504,0.46406925,-0.61390215,0.25239742,0.1168876,0.4776715,0.18482862,0.28370997,0.13229635,-0.05084498,0.124335684,-0.086127594,-0.16056857,0.27174857,-0.59606564,-0.07169138,-0.07407079,-0.36844397,0.0063325227,-0.5155333,-0.27099383,-0.8616423,0.3166615,-0.97003555,0.51267207,0.0073908814,-0.1360838,0.02898761,0.25344315,0.48356286,-0.32856452,-0.034765862,0.27119815,-0.2302112,-0.09990709,-0.19508545,0.044650827,-0.3159238,-0.5857594,-0.035406444,-0.49548826,-0.28236568,-0.287948,0.18573989,-0.35233793,-0.01185532,-0.23180467,0.39277184,-0.34774825,-0.0065742093,0.29843855,-0.15853548,0.3740297,-0.53095526,0.045960825,-0.05174681,0.38953227,-0.12450516,-0.29762274,0.38717115,0.25888613,0.35502508,0.2577149,-0.32396993,-0.24255733,-0.12111986,-0.052272234,0.45078033,-0.20006628,-0.33362392,-0.17311688,0.28174958,0.4400085,0.4614755,-0.115555204,-0.28185034,-0.076972276,-0.0069587547,-0.13641547,0.596915,0.5872042,-0.124745734,-0.2993246,0.2417874,0.5183824,0.24573107,-0.1878232,0.025510598,0.01934358,-0.64249015,-0.08463354,0.08935259,-0.039246965,0.44609097,-0.16222474,0.12925224,0.72964346,-0.15715204,-0.068879366,0.02739763,-0.07539643,-0.041196954,-0.31629503,-0.28939238,0.27889648,-0.5529308,0.22854522,-0.18911871,0.69313556,0.11464217,-0.8274912,0.44628233,-0.6512623,0.26352343,-0.08769759,0.6480729,0.70578307,0.47227922,0.554936,0.8153793,-0.22917941,0.38711005,-0.12007497,-0.54654026,0.15033947,-0.19253989,-0.10945201,-0.55421895,-0.0037634731,-0.3499098,-0.11210441,0.15601276,0.2739062,-0.6402837,-0.03611044,0.22486895,0.80695724,-0.33258888,-0.08499904,0.6417342,0.99844956,1.0936404,0.025664996,1.024837,0.2363756,-0.19054644,0.3344604,-0.3851976,-0.7403592,0.19478863,0.19719206,-0.1629586,0.32965755,-0.13605139,-0.11980493,0.40966207,-0.2516808,-0.14144418,-0.054500673,0.16362165,0.16831616,-0.026499128,-0.56190807,-0.14985567,-0.027123865,-0.113935016,0.11353779,0.16330314,-0.2637261,0.2896947,-0.080792114,1.5230082,-0.021756949,0.00041204592,0.12026083,0.6394543,0.23425764,-0.23695119,-0.09104692,0.46396178,0.46889514,0.05551688,-0.6614171,0.33024204,-0.20627907,-0.43069133,-0.034106452,-0.34782833,0.005320144,0.10125827,-0.4573421,-0.20110345,-0.25073162,-0.24602102,0.48590326,-2.7997935,-0.16068786,0.061953876,0.35531884,-0.3303852,-0.23091078,0.020018332,-0.5354753,0.27211544,0.19686121,0.5673133,-0.7382107,0.52548873,0.46717384,-0.6252556,-0.10292755,-0.84496224,-0.13979739,-0.01882077,0.47952306,-0.010684212,-0.08510297,-0.05681509,0.1518769,0.6476096,0.039772447,0.09278619,0.3580974,0.48887846,0.3075186,0.6178802,-0.12999049,0.5683026,-0.20964536,-0.18046458,0.31240207,-0.28629822,0.17225844,-0.024168214,0.014205563,0.49200794,-0.4929064,-1.0476972,-0.5195132,-0.085963845,1.0043538,-0.40719688,-0.46464807,0.2092286,-0.1838623,-0.054906268,0.024131322,0.5414,-0.11795199,-0.08916895,-0.67866236,0.046419326,-0.045572057,0.17876813,0.15644178,-0.03807719,-0.29982477,0.59548825,-0.070882685,0.37286848,0.31674317,0.28670698,-0.28102097,-0.51387495,0.06942495,0.6330758,0.1687788,-0.021429634,-0.14313854,-0.3602406,-0.09612155,-0.14904073,0.07289528,0.6180406,0.78663915,-0.033544905,0.13690136,0.36192238,-0.089968406,0.07585524,-0.14352337,-0.21886571,-0.09220155,0.013603886,0.5206219,0.71632135,-0.14861843,0.58472514,-0.110718,0.21305908,0.06955732,-0.5212205,0.6100155,0.89795506,-0.18433352,-0.0700809,0.40688947,0.42712873,-0.3237,0.4036145,-0.5845422,-0.05268787,0.63303494,-0.19650245,-0.45307997,0.22729507,-0.16498251,0.15660448,-0.91847324,0.31274906,-0.3240844,-0.43099013,-0.5449096,-0.037921224,-3.3201709,0.25478002,-0.28309804,-0.18824038,-0.30989558,-0.095819905,0.26313114,-0.6283938,-0.53329164,0.1047244,0.24193197,0.6431878,-0.075832285,0.09405122,-0.33973604,-0.13607319,-0.25743675,0.15934464,0.21657303,0.40078792,-0.09754014,-0.46231553,-0.006373045,-0.036307946,-0.66470563,0.1839198,-0.56218135,-0.40253586,-0.03585791,-0.59191185,-0.26860157,0.54673505,-0.1900775,-0.0049006464,-0.30025098,0.15079568,-0.11054646,0.29729167,0.17625245,0.15728538,0.14146711,-0.014219081,0.12340326,-0.26880226,0.3987742,-0.02625528,0.31011182,-0.0050750654,0.055025026,0.1226837,0.4663458,0.7596209,-0.12791568,1.0220008,0.46544078,-0.082923315,0.23265703,-0.43038622,-0.21761635,-0.5011789,-0.36211297,-0.13619779,-0.37604234,-0.45570073,-0.009007406,-0.35562038,-0.75497615,0.65616804,-0.15178797,0.34887904,-0.06589797,0.33134988,0.5892731,-0.15064378,0.0809,-0.1449062,-0.23948641,-0.58015263,-0.15809545,-0.47517186,-0.49893874,-0.07782105,0.86399096,-0.3931545,0.12722407,-0.123050645,-0.26470006,-0.020696245,0.086950764,-0.055823293,0.5092772,0.37643963,-0.10611746,-0.681502,0.3860528,-0.035555795,-0.15204898,-0.60601336,0.27867705,0.6112429,-0.6346226,0.6186135,0.25136754,0.07847901,-0.11090063,-0.65543044,-0.2387092,0.2103696,-0.20485207,0.5085061,0.19133997,-0.783501,0.59209126,0.43820542,-0.4020433,-0.64448965,0.31074855,-0.0066532535,-0.42702103,-0.10887669,0.25472027,0.125956,-0.016388515,-0.2283197,0.29009697,-0.46167767,0.19354844,0.13803138,-0.113350056,0.28554687,-0.07589895,-0.20223165,-0.6966664,0.10321706,-0.5015205,-0.23210093,0.36426327,0.086859226,0.0070874733,0.13898157,0.053819664,0.4888981,-0.18689609,0.08185795,-0.13928773,-0.274174,0.06230533,0.60320276,0.2799866,-0.5594224,0.4609294,0.14374089,-0.4169774,0.11906708,-0.033139847,0.38902676,-0.07536792,0.32140845,-0.18732995,-0.22743489,0.27069905,0.613176,0.105798535,0.523062,-0.09609128,0.08766178,0.40912306,0.015807267,0.14521977,0.029210063,-0.5261582,0.030238628,-0.06077874,0.21401009,0.58906347,0.27276745,0.31832436,0.10100543,-0.26380432,0.02350189,0.16089109,-0.11215386,-1.278216,0.45013097,0.37577337,0.837688,0.4374314,0.14519085,-0.12014118,0.7240542,-0.38437536,0.06657267,0.4586747,0.14960645,-0.5346369,0.71578497,-0.74875504,0.41631052,-0.17464621,0.0076550017,0.2180817,0.20861807,0.38707766,0.8045995,-0.23724985,0.048845522,0.048035275,-0.13413051,0.0802928,-0.32131797,0.0036497752,-0.46915832,-0.3062687,0.63624364,0.3847966,0.32944977,-0.16030383,-0.053786017,0.20048866,-0.14303586,0.21011229,-0.010519874,-0.0668918,0.14910553,-0.5226456,-0.16175808,0.5596455,-0.024107965,0.15383552,-0.28142297,-0.17615916,0.09483667,-0.27062437,-0.1106424,-0.07260578,-0.736985,0.08135627,-0.17190836,-0.42282364,0.4896909,-0.25144556,0.18530267,0.2467943,0.08956682,-0.24836417,0.21674234,0.08519812,0.8154827,-0.020613719,-0.15946075,-0.458496,0.0059734504,0.27034596,-0.2097784,-0.07088627,-0.27620974,-0.012735617,-0.40163666,0.54242,-0.05131664,-0.4696728,0.10912969,-0.1148663,-0.0016056955,0.65697724,-0.19682044,-0.12836792,0.10556396,-0.26373658,-0.47444934,-0.14656787,-0.1379829,0.24417894,0.37605187,-0.15811189,-0.12406637,-0.18559602,-0.1566062,0.6982773,0.020637074,0.55401766,0.17627941,0.09175287,-0.17806835,-0.052524447,0.19064805,0.5284837,0.120976426,-0.036863282,-0.46541438,-0.24945217,-0.29878145,0.06189642,-0.03778087,0.3146885,0.015218946,-0.28710252,0.9606058,0.10255634,1.2306828,-0.09393989,-0.37121338,0.12721759,0.5158751,-0.0633123,-0.002784427,-0.4549825,0.83001,0.6103017,-0.04727642,-0.093755476,-0.3659332,-0.14847043,0.3455719,-0.34916884,-0.03215027,-0.005395317,-0.4383582,-0.30632845,0.30701303,0.19887818,0.087316945,-0.093950406,-0.08969578,0.0030283094,0.019830205,0.3136141,-0.46717706,-0.092353545,0.0762571,0.33411366,-0.035201486,0.1582346,-0.5631902,0.36035052,-0.46379706,0.21045771,-0.5016899,0.18127844,-0.10568517,-0.32818794,0.14526659,-0.099661335,0.22755848,-0.24066485,-0.33776492,-0.075023256,0.41139805,0.11198393,0.22215533,0.69748706,-0.32533875,0.16517782,0.13069758,0.5072856,1.1970555,-0.4308309,-0.120995365,0.23161678,-0.40188587,-0.6495561,0.4318821,-0.3676644,-0.22162676,-0.1214726,-0.23814635,-0.56149393,0.18861505,0.15965652,0.17446679,-0.004602305,-0.57100016,-0.15336673,0.39140835,-0.31114933,-0.22052911,-0.25100726,0.4212127,0.7487372,-0.22291903,-0.3788242,-0.013641062,0.21032873,-0.08342394,-0.42863828,-0.00803113,-0.24539852,0.38575575,0.035332028,-0.32598412,-0.11239885,0.1891232,-0.48903838,0.03143607,0.060275912,-0.30630052,0.20413749,-0.18297866,-0.031582892,0.90987813,-0.38859683,-0.12704968,-0.6833017,-0.4690488,-0.92000836,-0.38521203,0.24550171,0.120307714,0.10143101,-0.5594992,0.11842752,-0.10493803,-0.48873252,0.033478413,-0.50358623,0.40043926,0.12582757,0.4122029,-0.3315261,-0.7757549,0.08248493,0.10288853,-0.23520802,-0.6713839,0.7177364,-0.007792393,0.8148325,0.0466549,0.10843302,0.06694411,-0.298591,0.14666967,-0.25982454,-0.2572915,-0.8552096,-0.12186468,529 -230,0.5707178,-0.22915268,-0.32688242,-0.16969909,-0.10958416,0.14510226,-0.085622676,0.6179935,0.30128056,-0.4015501,-0.030157885,-0.11614748,-0.025386512,0.23091312,-0.14179191,-0.34386343,-0.18930407,-0.0033661823,-0.32094488,0.41928136,-0.48330557,0.37185755,0.04447672,0.3319605,0.10848842,0.35190347,0.114974484,-0.08978895,-0.31066892,-0.06865385,-0.029613016,0.36245593,-0.4402831,0.11104924,-0.076711155,-0.2736133,-0.09284257,-0.4556368,-0.25022015,-0.6385911,0.34541863,-0.76406294,0.36364162,0.04793903,-0.26354995,0.51054335,-0.21962428,0.2304453,-0.3258892,-0.012602258,0.13238995,0.020368882,0.1076292,-0.30949312,-0.12310596,-0.10736658,-0.54240835,0.06825514,-0.34231907,-0.20631857,-0.22807267,0.031145705,-0.28273928,-0.12076382,-0.061801057,0.424043,-0.55109847,-0.015984686,0.0929405,-0.12279649,0.35534278,-0.4728735,-0.17223594,-0.13416764,0.17312641,-0.32651553,-0.1910461,0.26749372,0.2891282,0.4890186,-0.18076637,-0.075268276,-0.42362192,0.03603119,0.10864694,0.44806066,-0.14184949,-0.5496952,0.008433302,-0.119901165,0.2117529,0.105342075,0.22078072,-0.19726877,-0.12136277,0.10461128,-0.23307796,0.32930967,0.44025618,-0.37106958,-0.3502039,0.39069477,0.6016716,0.10853281,-0.05819233,-0.12614778,-0.0019349098,-0.4786247,-0.15421107,0.13470554,-0.22356321,0.4366851,-0.048849624,0.14086252,0.68320984,-0.29604965,0.1563502,0.027212283,-0.050698176,-0.050993647,-0.22578636,-0.36251214,0.14544824,-0.33589974,0.065204695,-0.1832161,0.7138172,0.14724733,-0.8198378,0.46879488,-0.4440986,0.1249767,-0.073789276,0.5416035,0.6212524,0.48710364,0.2951107,0.52571255,-0.52907366,0.06452446,-0.10788288,-0.33512545,0.16181925,-0.1947449,-0.008943256,-0.48847097,-0.021962786,0.19723123,-0.27144778,0.21262808,0.26985252,-0.55114746,-0.034477178,0.05838022,0.7066914,-0.31954917,-0.04004299,0.66080266,0.9858348,0.80964255,0.02136246,0.9933701,0.29769897,-0.30462012,0.35576832,-0.5580161,-0.698203,0.24706252,0.3904193,-0.26935062,0.43841752,0.076874286,0.010457941,0.24860236,-0.22937585,0.08254752,-0.14400263,0.086887866,0.046514224,-0.133624,-0.33516148,-0.31429157,-0.09308198,0.025322856,0.102646686,0.2948164,-0.2654885,0.29528993,0.07593642,1.8958958,-0.06904671,0.10139693,0.026158722,0.5268253,0.13384432,-0.18134978,-0.0865307,0.40415943,0.3231854,-0.010674343,-0.6228542,0.21934459,-0.07288299,-0.556397,-0.043346517,-0.38523585,0.019675542,-0.027056165,-0.41233927,-0.032556485,-0.08574215,-0.34345138,0.43928662,-2.8515074,-0.12323789,-0.0416488,0.31227702,-0.36972153,-0.38756612,-0.12817578,-0.41586643,0.22304726,0.37859645,0.4526693,-0.76413804,0.1770911,0.41950214,-0.43952566,-0.10412369,-0.51305807,-0.18949969,-0.030587418,0.20911212,0.047697432,-0.0694903,0.08604036,0.07768781,0.47292697,-0.018267225,0.040081467,0.15063897,0.39656964,0.057039283,0.42102614,-0.0456809,0.35478225,-0.18005866,-0.12886314,0.3785879,-0.46068648,0.1912765,-0.011549822,0.110718586,0.2949603,-0.37153092,-0.8887024,-0.68053406,-0.23378658,1.2096263,-0.22687913,-0.43649295,0.2281425,-0.2401919,-0.32768828,-0.15670091,0.46191165,-0.038370993,-0.17155242,-0.86915547,0.086669795,-0.12872487,0.2091406,0.09268635,0.087758206,-0.32843882,0.59178865,-0.0064039226,0.55023277,0.30981934,0.12551233,-0.2541566,-0.32094273,0.062150232,0.8494743,0.2411541,0.18245491,-0.2353941,-0.16443253,-0.23996633,-0.013250749,0.1107543,0.36907223,0.59659934,0.053862497,0.107991055,0.23920579,-0.09740862,0.013748421,-0.21041423,-0.25294894,-0.053573046,0.035827875,0.59602445,0.5933854,-0.3012532,0.38963354,-0.032155316,0.13472182,-0.17153317,-0.44816077,0.5391309,0.8053616,-0.08506659,-0.1963992,0.55528206,0.44084072,-0.39432374,0.42507216,-0.65163887,-0.15227176,0.5065031,-0.26818287,-0.3483668,0.17429687,-0.3020786,0.20581713,-0.85906225,0.20632957,-0.22026332,-0.19233035,-0.47896814,-0.04962462,-2.965305,0.05129439,-0.07322886,-0.32431927,-0.014939936,-0.0457824,0.15137815,-0.68463117,-0.46489826,0.13480756,0.07220246,0.55156296,0.012217129,0.092368215,-0.29555458,-0.2915633,-0.27511975,0.104854375,0.016350504,0.39299732,0.07951956,-0.42081764,-0.14246188,-0.108864926,-0.31891492,0.06751914,-0.41592675,-0.5899133,-0.09564883,-0.50621736,-0.255864,0.59413797,-0.28655714,0.009639531,-0.072628975,-0.022543278,-0.19964594,0.30569503,0.13805081,0.10827314,0.0320297,-0.045498528,0.08143756,-0.33154428,0.4031804,0.06924748,0.23276795,0.37519833,-0.20527712,0.17261535,0.52013934,0.71375257,0.021798754,0.7164875,0.48248863,-0.10608717,0.24552749,-0.4388315,-0.15046555,-0.54838455,-0.31679666,-0.121491216,-0.33414438,-0.4837471,-0.124422185,-0.3776301,-0.726588,0.4088782,-0.13094571,0.20405401,-0.024301311,0.30326098,0.5595557,-0.11283469,0.010339325,-0.03657768,-0.13136502,-0.5749846,-0.27084216,-0.6403155,-0.45148343,0.34983927,0.89844704,-0.10943446,-0.03422386,0.048128698,-0.11439856,-0.0011019906,-0.05137334,0.023596514,0.14585263,0.34451395,-0.096857786,-0.50850165,0.44908032,0.12059531,-0.25907248,-0.5734663,0.1285597,0.55150425,-0.5317703,0.5158151,0.20015389,0.03150216,0.089614086,-0.44086948,-0.2714061,-0.0040705204,-0.13388847,0.3916257,0.2095671,-0.677525,0.3703944,0.44112974,-0.23860508,-0.5648707,0.48113325,-0.02293874,-0.2774019,-0.1619166,0.32382807,0.12834075,-0.0023869157,-0.023925578,0.2041594,-0.54179597,0.17244036,0.2787438,-0.03196903,0.3491226,-0.09051822,-0.05593811,-0.71163666,0.0996035,-0.40220478,-0.2484058,0.26816496,0.12416907,0.27319184,0.15000436,0.15516454,0.41006953,-0.28535542,0.010998539,0.09272087,-0.1385835,0.34066164,0.3875204,0.420029,-0.3761884,0.44330847,-0.034874253,-0.0111031495,-0.01842045,-0.016221635,0.48170382,0.14484215,0.19667652,0.105635785,-0.42231804,0.33641207,0.6547386,0.28344172,0.33345142,-0.001035738,-0.18430886,0.27906454,0.13341744,0.1496511,-0.0051676035,-0.43642232,-0.022709308,0.07051318,0.09876918,0.32199726,0.067667454,0.2649804,-0.17863421,-0.29242542,0.12327651,0.31808227,-0.10045255,-0.93599254,0.23425776,0.1562151,0.7555878,0.49484053,-0.03266505,0.035049286,0.5972716,-0.24334869,0.16219005,0.35407597,-0.043177128,-0.7165413,0.5067681,-0.54792005,0.5169957,-0.0065203826,0.0074227136,-0.06776716,-0.18704662,0.3580536,0.5959286,-0.1504757,0.02472644,0.006539178,-0.27095243,0.103219636,-0.3929966,0.12283961,-0.5437423,-0.08406026,0.6536373,0.34421575,0.36520654,-0.09422276,0.006038326,0.12332212,-0.062225834,0.10689971,0.044822566,0.20134917,0.077294014,-0.6021036,-0.15229605,0.47273,-0.009209394,0.10788686,-0.0569961,-0.2670164,0.25569206,-0.15071446,-0.2818903,-0.09768221,-0.56059974,-0.023100447,-0.26617864,-0.32331836,0.44421807,0.100439675,0.22323425,0.1706738,0.04912295,-0.26497024,0.33274317,0.28326443,0.79783064,-0.083492175,-0.21239497,-0.4713663,0.2650766,0.20714131,-0.15323777,-0.21676664,-0.12170402,-0.10031442,-0.43519402,0.36867175,0.031295374,-0.28016788,-0.044076275,-0.10434297,0.1442537,0.53345853,-0.18839951,-0.2605895,-0.25447407,-0.17215373,-0.27854052,-0.1791634,-0.12011981,0.31184137,0.21592419,-0.049311146,-0.14167532,-0.035982568,-0.0008346081,0.33349985,0.047715798,0.37798107,0.3763321,0.066698484,-0.32023576,-0.14285943,0.19795264,0.34616655,-0.033790655,-0.11227246,-0.40990308,-0.44001496,-0.33699366,0.25497884,-0.1252696,0.31565,0.064853534,-0.3775427,0.72050244,-0.053696092,0.9948027,-0.053009074,-0.28090152,0.121537425,0.4756259,0.068905085,-0.044904593,-0.34651458,0.92783296,0.51368433,-0.0366678,-0.1529705,-0.25817767,-0.110162355,0.075323865,-0.2356347,-0.05516041,-0.034571268,-0.78669876,-0.15999158,0.28282663,0.2980397,0.17384318,-0.04506452,0.12180747,0.15639986,0.10746429,0.33753502,-0.3282423,-0.21614113,0.31817982,0.24238695,0.13277534,0.086729005,-0.4183219,0.29783782,-0.5180337,0.06259544,-0.28141063,0.0790802,-0.12648931,-0.36072528,0.2306808,0.037944753,0.25941747,-0.28866777,-0.4467501,-0.30332428,0.46037,0.008887267,0.22014008,0.45645636,-0.25223827,0.13175668,0.069509335,0.4720781,0.9956886,-0.117507316,0.030500496,0.3938716,-0.31295094,-0.6513949,0.3646858,-0.22425693,0.31771106,-0.08651468,-0.07520021,-0.5512536,0.21877731,0.2193312,-0.019239118,0.04533035,-0.5307178,-0.32937375,0.24804278,-0.46261463,-0.19790073,-0.3373027,0.048713025,0.701821,-0.36205283,-0.21694906,0.0666547,0.26562884,-0.23956896,-0.43559054,-0.08179858,-0.30307397,0.269322,0.14234802,-0.30875942,-0.038898468,0.095926724,-0.24818635,0.1873394,0.15291952,-0.4443043,0.04734587,-0.3886613,0.050016984,0.8912079,-0.09153037,0.11909221,-0.51233697,-0.45615712,-0.9934617,-0.3432814,0.5646578,-0.0379322,-0.03880613,-0.5737598,0.054364145,-0.076579615,-0.11517052,-0.07355148,-0.39419183,0.49051887,0.10474825,0.28039372,-0.048863087,-0.66173774,0.026420971,0.13896376,-0.12531088,-0.6393932,0.45866823,0.0053327004,0.8580247,0.06922313,0.1480309,0.31805116,-0.54064,-0.13214971,-0.27012682,-0.30176607,-0.5454509,0.12671691,530 -231,0.38451442,-0.22912131,-0.4120676,0.0051033497,-0.2723107,0.13728738,-0.19350107,0.40037158,0.04868893,-0.3271786,-0.34832254,-0.23117682,-0.09249425,0.24982065,-0.1796277,-0.24556652,-0.14195497,0.1116268,-0.6133363,0.7772437,-0.24150953,0.1846226,0.07845459,0.349026,0.56231105,0.34712696,0.0128827095,0.059888594,-0.07190984,-0.18036194,-0.09029868,-0.01263423,-0.44660476,0.23007794,-0.33327484,-0.30468968,-0.14790025,-0.5534443,-0.40368646,-0.7879623,0.48768583,-0.92217076,0.5127223,-0.10249814,-0.18971278,0.32237193,0.3239916,0.4580649,-0.083050504,-0.23808973,0.23107643,0.027887743,0.0027758598,-0.11063998,-0.23291388,-0.29357606,-0.65329,-0.015784467,-0.3513617,-0.1585705,-0.3213494,0.15791318,-0.2371966,0.09429715,-0.08900988,0.49959967,-0.48798472,0.1884696,0.16794991,-0.05903607,0.19499345,-0.640777,-0.10629061,-0.1002954,0.26984656,-0.051415052,-0.050530538,0.3901178,0.18022975,0.27815625,0.036095854,-0.07292471,-0.22216678,-0.08569781,0.20174739,0.42404234,-0.032930065,-0.20695862,-0.09234211,0.077451356,0.3120233,0.2554724,0.2464438,-0.172723,-0.16765413,-0.10271914,-0.09351371,0.3872866,0.40154165,-0.31774828,-0.2304986,0.45623732,0.72181094,0.39027327,-0.16579264,-0.10262781,-0.06291194,-0.45813975,-0.05991841,0.07526692,-0.23052505,0.47358528,-0.08395777,0.30078313,0.59150547,-0.08884787,0.023949917,0.055674236,0.07297225,-0.28517953,-0.18394588,-0.2988308,0.16285841,-0.32093576,0.23305477,-0.11778324,0.61356276,0.0822988,-0.6274124,0.30112842,-0.6376893,0.17141543,0.0750531,0.39646137,0.65647,0.41235942,0.31366622,0.6864847,-0.21286711,-0.04079107,-0.1812328,-0.27811202,0.027899317,-0.16279088,-0.078411244,-0.50289226,0.06568034,-0.027447548,-0.17758434,-0.060001127,0.46927872,-0.47269762,0.027250059,-0.033060454,0.83157176,-0.19608808,-0.05357278,0.8610446,0.9617091,1.0754783,0.01436369,0.95875156,0.0469486,-0.18247803,0.24227217,-0.3113976,-0.61949635,0.29477307,0.48204416,-0.2649053,0.4323608,0.03799783,0.04403523,0.19794528,-0.37173712,0.04947981,-0.16647092,0.028147634,0.17591238,0.021013642,-0.40264797,-0.3262515,-0.033806585,0.045617413,0.15317042,0.15543877,-0.18876056,0.3559432,0.11196886,1.6745857,-0.03979645,0.11393415,0.22075526,0.43005645,0.105262965,-0.186132,-0.19604556,0.31178606,0.2801737,0.13101022,-0.5844612,0.12249541,-0.31034496,-0.3619117,-0.07157412,-0.41892287,-0.18456681,0.005860158,-0.28783026,-0.124327324,-0.29698378,-0.40665302,0.37768242,-2.9048107,-0.075870804,-0.20348834,0.31973222,-0.31551287,-0.31430808,-0.032212805,-0.46881694,0.44148862,0.28853193,0.4446188,-0.44643804,0.33669567,0.4594274,-0.7862787,-0.010174662,-0.603855,-0.027886685,0.059227057,0.4355834,-0.15318875,0.066711895,0.05476357,0.13083455,0.39279196,0.16304497,0.15319188,0.44971055,0.3585196,-0.0040305974,0.59054416,-0.05489309,0.35447592,-0.21688086,-0.06942418,0.35026494,-0.29762954,0.45189843,-0.18581297,0.08939649,0.5156509,-0.6395427,-0.67733186,-0.52971715,-0.34373215,1.2153848,-0.3202256,-0.42416012,0.21689695,-0.38366997,-0.23293614,-0.14829381,0.49061933,-0.14367057,-0.15152134,-0.6724691,-0.06322834,-0.08915739,0.08473872,-0.06740678,-0.04401844,-0.44527277,0.7851099,-0.02760812,0.5066779,0.2341895,0.1766328,-0.24354927,-0.44941577,0.102180496,0.6145531,0.52308816,-0.07819516,-0.2202219,-0.2025365,-0.46440184,-0.1383834,0.1481191,0.53451,0.44442898,-0.10079051,0.12089523,0.23293978,-0.016107695,0.09864157,-0.27301127,-0.17270856,-0.18966807,-0.12246934,0.5278772,0.55546534,-0.043973286,0.3915366,-0.0076789046,0.19903399,-0.05155929,-0.43649408,0.38285998,1.0291483,-0.20663717,-0.28937122,0.4997246,0.49922836,-0.095501885,0.39583486,-0.4485025,-0.1297204,0.49762994,-0.18491836,-0.52593637,0.14369126,-0.2733965,0.092975505,-0.6816719,0.07090418,-0.32890046,-0.4489938,-0.49198705,-0.03244262,-2.6909902,0.1997114,-0.22223641,-0.31593996,-0.20429493,-0.26784247,0.13346083,-0.5205931,-0.74022734,0.10459896,-0.024469035,0.7476031,-0.16572623,0.09893784,-0.111353904,-0.3171551,-0.5040371,0.10292607,0.17270851,0.48149505,-0.22569636,-0.35260668,-0.0066010356,-0.12445373,-0.431714,-0.05453132,-0.4908375,-0.27331343,-0.2070567,-0.45266002,-0.27862123,0.5405051,-0.22694273,0.12836237,-0.20043509,-0.05750947,-0.002043438,0.2409798,0.1117202,0.15200955,0.16745421,-0.07785211,0.033529177,-0.23591141,0.4084547,0.06536665,0.2705221,0.29206753,-0.14563054,0.48662817,0.22913072,0.5650631,-0.13740991,0.8830263,0.37351578,-0.10385704,0.24951622,-0.12688692,-0.25191846,-0.5284082,-0.040019803,0.011422913,-0.3194125,-0.60701066,-0.21646158,-0.32319462,-0.7339354,0.46559212,0.04856634,0.42129382,-0.081453085,0.14398544,0.60104537,-0.14321724,-0.028732311,0.027421588,-0.10309114,-0.5271026,-0.26925468,-0.5593267,-0.47169542,0.090848155,0.9813882,-0.21768995,-0.026257379,0.016415948,-0.42336166,0.05209573,0.16524537,-0.13155,0.15371273,0.3635093,-0.12223085,-0.6444117,0.5266067,0.11497761,-0.11250194,-0.4972655,0.27900696,0.5274279,-0.45685798,0.41580746,0.17517394,-0.06449894,-0.40586936,-0.36833766,0.04687099,-0.14631823,-0.38576502,0.3478075,0.27996063,-0.6333738,0.23965698,0.13048328,-0.11530604,-0.8057335,0.62500274,0.009913338,-0.1747816,-0.06194573,0.33888534,0.17114067,0.07321683,-0.29240692,0.24184094,-0.39979076,0.2253155,0.14373954,-0.07702633,0.09824824,-0.22005422,-0.06316783,-0.6976134,0.20292956,-0.45248362,-0.20674899,0.39956748,0.17946559,0.07429843,0.1312234,0.26357633,0.3531495,-0.18251851,0.12516245,-0.10049868,-0.14223416,0.2752106,0.4562359,0.52110124,-0.51189405,0.5667346,0.10875599,-0.12073615,0.15855257,-0.022304932,0.31598994,-0.040910535,0.36689964,0.1587916,-0.26399043,0.19379759,0.44476023,0.25127524,0.40785334,0.12711893,-0.22519556,0.2424851,-0.020004774,0.29757357,-0.1726962,-0.7760048,0.050790954,-0.17576332,-0.006689489,0.42528522,0.11089594,0.17642742,-0.12565418,-0.27486506,-0.017784135,0.08790623,-0.181703,-1.0172242,0.32748762,0.2226622,0.8344374,0.48944822,-0.101404294,-0.040087834,0.80652505,-0.2187006,0.020347845,0.38919735,0.08359609,-0.58448434,0.53354865,-0.65446216,0.54141337,0.039652992,-0.16201933,0.015926171,0.06324487,0.38182485,0.74555135,-0.25340423,-0.07361223,-0.079375155,-0.3132626,0.23029505,-0.26296356,0.07688745,-0.6536752,-0.3476806,0.5483973,0.48380837,0.39077646,-0.061434396,0.04457328,-0.022792079,-0.1858681,0.31598055,0.22343366,0.024894655,-0.11084868,-0.6988575,-0.14787151,0.35394594,-0.20464954,0.18131712,0.10738205,-0.21078472,0.16569851,-0.10784519,0.103019305,-0.06464643,-0.81658643,0.016178926,-0.18445517,-0.34890592,0.25828475,-0.081935935,0.39278945,0.21244766,-0.018164687,-0.2400628,0.25497472,0.025861586,0.7073709,-0.04221126,-0.13598819,-0.26175842,0.24756299,0.10224519,-0.15095115,0.03117278,-0.0689624,-0.0007068356,-0.6774488,0.55143625,0.008313179,-0.37234586,0.009211158,-0.12858982,4.972418e-05,0.59941155,-0.036438607,-0.11054944,-0.20705572,-0.2339974,-0.34996003,-0.31474656,-0.067489006,0.175283,0.19735752,-0.049004447,-0.16428988,0.029407978,-0.08460761,0.46499607,-0.023872351,0.49352965,0.3061215,-0.036170542,-0.3475081,-0.17768279,0.098134756,0.4048987,0.059972513,-0.055605765,-0.23762989,-0.43664104,-0.3536788,0.3588949,0.004201887,0.4808551,0.12513512,-0.11964246,0.58591205,-0.1444568,1.1316231,0.10280406,-0.35380822,0.10504864,0.5876607,-0.013239384,-0.28377548,-0.25179768,0.80796224,0.40503556,-0.00087288616,-0.117676,-0.40212968,0.01493994,0.12426688,-0.2035357,-0.07804171,-0.036323536,-0.48826426,-0.23250729,0.04283445,0.22397305,0.24732514,-0.14636874,0.004423173,0.30178696,-0.103850685,0.43613917,-0.18742631,-0.41840804,0.4386085,0.035810925,-0.0692958,0.09319995,-0.51575166,0.48729312,-0.47365946,0.115238756,-0.106589414,0.22913964,-0.23238482,-0.30520502,0.24321993,-0.04464469,0.42439142,-0.31290588,-0.48680156,-0.34980997,0.44748682,0.16248083,0.14563455,0.53684276,-0.29701152,0.031181427,0.019898552,0.50678796,0.8139259,-0.051488716,0.08310942,0.2954849,-0.45821625,-0.6089315,0.4165226,-0.38458893,0.2633879,0.12832968,-0.06863859,-0.39638153,0.203774,0.21044649,0.075928465,-0.04332743,-0.7302349,-0.30885828,0.19578432,-0.1608621,-0.06998941,-0.3616597,0.009835561,0.5704781,-0.23210195,-0.38824043,0.036449306,-0.022930019,-0.06552999,-0.53935397,-0.07670857,-0.317154,0.29138896,-0.19466496,-0.27331442,-0.2229313,0.18580271,-0.41869804,0.136691,-0.13269398,-0.35596895,0.027184209,-0.36177298,-0.02116838,0.8405291,-0.3194846,0.032440808,-0.27421156,-0.46384528,-0.7114867,-0.32290745,0.13345142,0.13243014,0.11171617,-0.4940538,0.038499847,-0.293056,-0.057788435,-0.026607621,-0.4219708,0.37301022,0.1628065,0.32832012,-0.030159187,-0.6851539,0.32519934,0.011662317,-0.07488518,-0.5273293,0.48555508,-0.029389897,0.5605408,0.11073222,0.1386485,0.110132344,-0.50503916,-0.10811723,-0.07964236,-0.04905549,-0.5525917,0.12518866,531 -232,0.3820969,-0.088073574,-0.5793608,-0.061827358,-0.07225851,-0.0077517508,-0.22685553,0.55981505,0.2183953,-0.42226565,-0.053866245,-0.18005185,-0.18630987,0.4918951,-0.18309686,-0.6819814,-0.046354655,0.000118923184,-0.47278067,0.6597842,-0.2700864,0.23608041,-0.11788319,0.34120214,0.33288518,0.44748646,0.09532474,-0.07130203,-0.15068556,0.0029317776,-0.021108676,-0.02608375,-0.6153705,0.09977843,-0.2295256,-0.22400256,-0.050035994,-0.4024643,-0.4424393,-0.8104376,0.52382624,-0.70431507,0.4950709,-0.15628478,-0.1504769,0.12414264,0.3255392,0.49455833,-0.2737632,-0.11674843,0.18192032,-0.031295024,0.0146857025,-0.11750098,-0.27755865,-0.3047283,-0.5072533,-0.0009602785,-0.5466208,-0.17661135,-0.28514707,0.06883911,-0.39540675,0.114421606,-0.21815681,0.44285005,-0.42073393,-0.095839135,0.25549558,-0.20718518,0.16723807,-0.6482728,-0.07781479,-0.06180749,0.23090926,-0.06203403,0.083808206,0.58721095,0.012009605,0.35661882,0.11605073,-0.11943548,-0.34603855,-0.13197869,0.08850599,0.39985734,-0.07481059,-0.4996216,-0.021753248,0.13548718,0.22002415,0.24361105,0.07467014,-0.18781596,-0.050393123,0.03232095,-0.16029003,0.35801136,0.563551,-0.17030008,-0.17071046,0.23872334,0.6787743,0.43174362,-0.104217194,0.025018184,-0.047067594,-0.38032562,-0.20982672,0.14769341,-0.09427571,0.42851058,0.00016978482,0.21944323,0.71355814,-0.23413788,0.14414598,-0.20520504,-0.059119105,-0.038411703,-0.3585287,-0.15289226,0.14613758,-0.45715123,0.3526107,-0.16634175,0.6950501,0.23994507,-0.53510827,0.40430278,-0.5594606,0.10749598,0.17022328,0.47987634,0.54426986,0.44859582,0.2782686,0.7751447,-0.41850427,0.15921988,-0.24349871,-0.3879226,-0.011316367,-0.12286695,0.111426815,-0.3382489,0.11908548,-0.008582557,-0.1503625,-0.0071307025,0.25147727,-0.37522376,0.02502543,-0.12974282,1.0481355,-0.23483826,0.020733627,0.78575253,0.92751163,1.0326531,-0.054846484,1.0307711,0.19428025,-0.31395277,0.30006334,-0.29519948,-0.7715538,0.26649016,0.30754262,-0.13241759,0.38712266,0.10561561,-0.07168508,0.28576082,-0.39084443,0.11797669,-0.17114058,0.3278052,0.22556342,-0.054772984,-0.27769443,-0.26203385,-0.07248165,-0.098583184,0.17468247,0.15893528,-0.06114203,0.36190504,-0.04117233,1.9271721,-0.007333215,0.1013124,0.23950627,0.7627947,0.20731324,0.09763401,-0.20125493,0.21726602,0.32251665,0.0977752,-0.56655705,0.10397147,-0.4253206,-0.5007806,0.006588155,-0.3507413,-0.11417234,-0.18944542,-0.37426907,-0.113614894,-0.16675453,-0.21670271,0.3806774,-2.613446,-0.097498335,-0.042102143,0.28172618,-0.46553692,-0.33406267,-0.13802367,-0.49364248,0.51440394,0.27026272,0.45515078,-0.5351471,0.36551753,0.45648187,-0.5096778,-0.13438174,-0.47891137,-0.002643445,0.049485724,0.41791207,-0.18385817,-0.05464101,-0.022782546,0.18188652,0.47651485,0.046780646,-0.06535123,0.3511774,0.32622442,-0.03752717,0.5079734,-0.07828857,0.36292145,-0.47280538,0.027952898,0.3427032,-0.44402263,0.360635,-0.14414527,0.105669476,0.35953072,-0.54527056,-0.78206384,-0.46743843,-0.21676953,1.1784885,-0.22487354,-0.30451897,0.21800779,-0.36192197,-0.046034332,-0.21124716,0.51495147,-0.13596712,-0.08614957,-0.5979719,-0.04183153,-0.17316829,0.20204605,0.057443567,0.13780187,-0.29921913,0.68660843,-0.09003343,0.4302542,0.31010565,0.14729923,-0.20162958,-0.50862163,0.18648429,0.6715842,0.33636686,0.06196626,-0.14622228,-0.1874018,-0.33580476,-0.3218861,0.09482949,0.56253356,0.79877734,-0.0043620467,-0.062318258,0.28457502,-0.11226422,0.07622392,-0.109895155,-0.3512202,-0.19582948,-0.07375871,0.51641905,0.52362806,-0.2535986,0.42565066,-0.11973627,0.27377662,-0.15914348,-0.25122064,0.44206536,0.7170327,-0.26482168,-0.21526346,0.21818672,0.378814,-0.24867047,0.45722216,-0.622829,-0.25389516,0.6418078,-0.15459843,-0.5006903,0.20698348,-0.21701524,-0.03631486,-0.7693129,0.08759741,-0.46674055,-0.1977021,-0.56180024,-0.22519669,-3.0392113,-0.040971972,-0.297244,-0.2731575,-0.27030477,-0.014659218,0.098073706,-0.62313306,-0.7338054,0.058029197,0.030712523,0.63632333,-0.06509123,0.13224591,-0.23815273,-0.14945598,-0.49708667,0.05319996,0.18101232,0.4135119,-0.01582137,-0.35032994,-0.17168526,-0.21654005,-0.53750294,0.14006029,-0.4298349,-0.26629573,-0.31108874,-0.63414055,-0.2502905,0.7016183,-0.30720875,0.07201998,-0.08891097,-0.040722728,-0.04396362,0.3550963,0.27765483,0.102863386,0.1411747,-0.13969061,0.1192691,-0.27154133,0.29723972,0.13968916,0.51709825,0.2761596,-0.16963361,0.18372224,0.42964408,0.8804442,0.036601044,0.64014524,0.23475161,-0.07592262,0.5130797,-0.50005466,-0.33799165,-0.45593512,-0.26932546,0.12306671,-0.15099595,-0.5585602,-0.23700124,-0.48176,-0.7462581,0.46115252,-0.0043763616,0.2716374,0.058381774,0.0690809,0.49016997,-0.079750456,0.06465104,0.13119473,-0.0035997361,-0.5577,-0.22890504,-0.59340125,-0.6508402,0.153274,0.90268695,-0.18648118,-0.25484648,0.04441581,-0.37903562,0.11838824,0.011986201,-0.05062574,0.08374482,0.33430877,0.00957065,-0.64219356,0.5637011,-0.041872792,-0.25807568,-0.5285435,0.18775466,0.5760157,-0.7129056,0.3940607,0.14004748,0.078977264,-0.15778205,-0.4184922,0.019470425,-0.078218736,-0.09684394,0.20080137,0.024698235,-0.5522025,0.30556193,0.28827986,-0.35755688,-0.713233,0.421725,0.012685581,-0.20837933,-0.06698772,0.36359635,0.21068461,-0.022601627,-0.3008121,0.14557037,-0.46998948,0.12084135,0.2915612,-0.050676566,0.36922127,-0.092262894,-0.21689278,-0.6737157,0.2585283,-0.4484783,-0.27880973,0.40904495,0.1616672,-0.0073615075,-0.10671607,0.12608194,0.28587568,-0.24610987,0.09708818,-0.05743162,-0.19064493,0.44186744,0.35789368,0.5322842,-0.5377003,0.6228058,-0.06907807,0.031368382,0.4014665,0.04474932,0.3475141,0.04098988,0.2603094,0.18062595,-0.28351593,0.11008488,0.6662636,0.2548567,0.35202286,0.08443562,-0.25186926,0.297135,0.16477509,0.056221765,0.19482626,-0.561824,0.08793828,0.126157,0.052371185,0.5437838,0.2052543,0.26731464,0.016517902,-0.30709985,0.012947952,0.30655816,-0.40731537,-1.2751864,0.43072632,0.11093124,0.83036524,0.4258531,0.03373867,0.1573413,0.67917067,-0.0065622567,0.13793232,0.42718518,-0.0048842034,-0.57419115,0.5725982,-0.5209876,0.6065622,0.17998269,0.031422924,0.06525864,0.22921608,0.46780547,0.6805441,-0.19295806,-0.1697097,-0.120248675,-0.1861339,0.012291924,-0.4342782,0.064116694,-0.3632597,-0.3653317,0.35991818,0.4000184,0.23075594,-0.098808765,0.01794465,-0.00609897,-0.1463447,0.32876962,-0.1712978,0.041318152,-0.0070347786,-0.5538344,-0.4868167,0.445443,-0.18788053,0.20153375,-0.07968361,-0.11169513,0.33745876,-0.046024267,0.09320072,-0.113003224,-0.6936963,0.2614745,-0.3218431,-0.32302862,0.19921528,-0.033113636,0.4500661,0.21437404,-0.014674308,-0.46797925,0.51511383,-0.012887995,0.7504503,-0.37626633,-0.4037213,-0.5068785,0.12855585,0.27132717,-0.28908154,0.07717698,-0.17067914,-0.12955269,-0.4628006,0.38633072,-0.16821732,-0.18118912,0.06711295,-0.3358088,-0.13518216,0.63206214,-0.28103822,-0.08110391,-0.20826991,-0.19390734,-0.13198216,-0.39454982,-0.12383927,0.17311804,0.22282681,-0.10514658,-0.124366425,-0.11611791,0.06523564,0.56015,-0.04311881,0.32845223,0.26432112,0.11791755,-0.4128771,-0.19005278,0.23507851,0.4219301,0.28608173,0.01644746,-0.3757218,-0.42240956,-0.3344118,0.37025866,-0.21193379,0.3051134,0.2151231,-0.38955978,0.6589552,0.12878689,1.1655457,0.108304895,-0.30248848,0.21932861,0.5868586,0.049500704,-0.022223437,-0.45700207,0.93555486,0.4629549,-0.16279794,-0.12695633,-0.25552592,-0.08329641,0.14215094,-0.3086677,-0.029412726,-0.09530118,-0.4916124,-0.26942444,0.21116047,0.21083727,0.103882395,-0.13219768,-0.2322052,0.037856262,0.044379298,0.53589493,-0.32608262,-0.31605992,0.3830363,-0.044404354,0.02039365,0.05739343,-0.5534676,0.52220565,-0.48405486,0.18834049,-0.31982085,0.17598289,-0.13486268,-0.26979822,0.22872803,-0.046627782,0.43483263,-0.37327424,-0.42812642,-0.32306376,0.38762406,0.18447848,0.22726528,0.620107,-0.24429867,-0.0076429048,0.011424422,0.58880603,0.8177354,-0.063547954,-0.019198166,0.31170732,-0.3435845,-0.548966,0.2871248,-0.2630906,0.17524329,-0.13267362,-0.106529795,-0.56463695,0.25890106,0.1520353,-0.15789977,-0.08487972,-0.7837884,-0.3781883,0.10068281,-0.27274936,-0.314779,-0.5165736,0.03857998,0.7668648,-0.29353616,-0.3221098,0.27986076,0.10168077,-0.05915629,-0.56283927,-0.131665,-0.2383309,0.33403715,0.10050027,-0.27659643,-0.13550477,0.27968735,-0.48661545,0.1551917,-0.024632962,-0.43903705,-0.115376435,-0.114144914,-0.0904587,0.81964505,-0.13357607,0.051888693,-0.5166939,-0.3922862,-0.90544796,-0.36296654,0.45018014,0.074843384,0.057582345,-0.66141814,-0.058127474,-0.14651212,0.11077838,-0.0067781,-0.4801492,0.32140383,0.19365433,0.36860266,-0.30881748,-0.6791235,0.21328619,0.19444942,-0.1990111,-0.57437515,0.47803268,-0.067816906,0.7500679,0.05433382,-0.048538376,0.27566776,-0.4439266,0.0071169455,-0.23932555,-0.16818307,-0.47740585,0.27210522,532 -233,0.40442163,-0.08123167,-0.6056547,-0.16819912,-0.11548204,0.12582904,-0.16457354,0.3861938,0.24139209,-0.57544583,0.019221505,-0.1380443,0.15153152,0.35569292,-0.1725809,-0.5044201,0.032734226,0.12909347,-0.49027568,0.3221062,-0.41953653,0.12741166,-0.0722337,0.31730187,-0.025165025,0.29910722,0.1485233,-0.1865643,-0.22512512,0.0025541463,-0.038138323,0.21283272,-0.42616904,0.0195658,-0.21043468,-0.21442154,0.047116317,-0.50392365,-0.55756444,-0.4750412,0.2697921,-0.7512556,0.5374317,0.20556338,-0.2236019,0.29409888,0.12256398,0.1643001,-0.1419254,0.007970095,0.25140652,-0.19135343,-0.050286707,-0.30701068,-0.50710374,-0.4173355,-0.63686424,0.016453655,-0.46704683,-0.084633775,-0.28034678,0.050777555,-0.20386457,-0.13815099,-0.061498247,0.41751137,-0.31999677,-0.12563531,0.2391749,-0.10615802,0.38456213,-0.41537544,-0.15988533,0.03483314,0.2089818,-0.31056228,-0.14790876,0.29693907,0.24335714,0.5252275,-0.13660456,-0.16799815,-0.49529022,0.021595526,0.12631041,0.5223433,-0.36398697,-0.23947555,-0.12432846,-0.06540878,0.012418326,0.20017369,0.083569564,-0.38193217,-0.050902344,0.12088564,-0.16640557,0.35349256,0.5921717,-0.33706185,-0.27352592,0.32733336,0.4129138,0.09023586,-0.2085221,0.04619504,0.047906827,-0.6035566,-0.22602458,0.23460184,-0.08471303,0.55065984,-0.04001383,0.24688905,0.6699047,-0.06407554,0.042376336,0.04506607,0.12215665,0.080776915,-0.27913803,-0.051217444,0.16142768,-0.5390567,0.091703154,-0.11036103,0.60023665,0.13714263,-1.0163794,0.4236026,-0.45667565,0.11891305,0.034049317,0.39704028,0.66087306,0.32645336,0.17437236,0.6410806,-0.5883756,0.10671806,0.01634549,-0.43908235,0.21797352,-0.023597471,0.04411515,-0.63107437,-0.21807712,0.18461987,-0.016700847,0.20308219,0.37512964,-0.4023948,-0.0581223,0.3933917,0.9511436,-0.25813672,-0.13609505,0.53107285,1.0509137,0.8122865,0.06987946,1.2067205,0.032219205,-0.21678302,0.4146429,-0.45112324,-0.827004,0.20578642,0.27369243,-0.08732664,0.31386292,0.20336756,0.122685194,0.36846834,-0.40719974,0.12969166,-0.11589073,0.09763624,0.041723046,-0.08073279,-0.33485857,-0.2897376,-0.06616119,-0.15018041,0.036390748,0.2623325,-0.15099292,0.23953393,0.06812994,1.5751191,-0.044978146,0.16620535,0.14277591,0.52211124,0.15894076,-0.066616274,-0.2391009,0.34549272,0.3071578,0.124911405,-0.3346106,0.037237413,-0.23078607,-0.42013216,-0.13482854,-0.40814734,-0.09584619,-0.012111904,-0.6387438,-0.03787052,-0.0138065135,-0.5877527,0.5923494,-3.0001588,-0.055710666,-0.028506227,0.39885297,-0.20607813,-0.36721045,-0.1978909,-0.45700464,0.50227153,0.3463092,0.35671017,-0.6097113,0.44118786,0.43691355,-0.37586215,-0.034354124,-0.677391,-0.113170385,-0.16064616,0.21741988,0.035387453,-0.078068495,0.08108146,0.32282346,0.4208648,-0.08580421,0.035527576,0.15323423,0.24251394,0.13158907,0.40061933,-0.079218976,0.48492584,-0.31268248,-0.22301564,0.28247052,-0.43069908,0.04721039,0.048336107,0.15924694,0.38467172,-0.40704778,-0.8663333,-0.54176676,-0.19924137,0.9437541,-0.194537,-0.19839248,0.4505013,-0.35510364,-0.5248245,-0.12968987,0.46366245,-0.0020316492,0.06141912,-0.769205,-0.04386504,-0.061893288,0.06710594,-0.043087896,0.087775186,-0.3732501,0.51766104,-0.0759377,0.5568269,0.3699414,0.15465643,-0.34759566,-0.31850478,0.051756285,0.8571453,0.14962134,0.22531568,-0.07673324,-0.18938926,-0.220764,-0.14189383,0.09203492,0.42089608,0.65293825,-0.08021048,0.040816884,0.29334864,0.0035381773,-0.0006641666,-0.09007309,-0.30919763,-0.061366737,-0.013069626,0.49385267,0.5815024,-0.17614664,0.33075988,-0.1071584,0.20826514,-0.29130477,-0.34214363,0.5047706,0.7822544,-0.11923668,-0.24404725,0.52258575,0.48718387,-0.36659,0.42352235,-0.54432815,-0.21703626,0.3677247,-0.17232116,-0.5281635,0.1376244,-0.27621493,0.10931907,-0.70345145,0.36138353,-0.08928741,-0.5565757,-0.3606208,-0.21342705,-3.7484941,0.1135875,-0.31698242,-0.24421015,0.09917816,-0.03562154,0.24850792,-0.59363014,-0.33293897,0.17227268,0.0637794,0.68085986,-0.02270337,-0.0008588314,-0.32792467,-0.22862455,-0.42714664,0.2260301,0.12128305,0.33607987,0.03148444,-0.38862106,-0.006755646,-0.30501387,-0.438517,0.07882186,-0.66919124,-0.32066664,-0.20059116,-0.547961,-0.49754703,0.65296835,-0.38147697,0.028314868,-0.32191196,-0.026321758,-0.20739625,0.50367796,0.1882268,0.22023672,-0.08353199,0.022636019,-0.09661916,-0.32451364,0.3380394,0.058313694,0.27293503,0.48422757,-0.014656887,0.15795197,0.5427446,0.69297576,-0.030803012,0.853639,0.5277909,-0.033244465,0.36326542,-0.322524,-0.15621088,-0.5241208,-0.43398544,-0.04119315,-0.42947558,-0.495792,-0.14891683,-0.3748618,-0.6685139,0.51758903,0.028504014,0.13673791,0.04017908,0.059303537,0.37930673,-0.38779387,-0.07347205,-0.07014886,-0.17408492,-0.43505695,-0.22757745,-0.6495183,-0.6232826,0.17880979,0.86824787,0.015522566,0.00090084475,0.13434651,-0.24151418,0.070069045,0.26332188,0.09174445,0.27602798,0.41884714,-0.08565818,-0.5779466,0.4876122,-0.17686033,-0.25464457,-0.6716124,0.12808451,0.46908206,-0.60537255,0.8255456,0.31517,0.15126783,-0.22277735,-0.53462297,-0.3979751,-0.09821275,-0.19146729,0.48231933,0.16739537,-0.9301793,0.3937098,0.3373383,-0.34159335,-0.5795872,0.558829,-0.014851188,-0.109344214,0.06788782,0.30000108,-0.08848643,-0.081091516,0.08003749,0.23117085,-0.42254582,0.32893947,0.41800186,0.11903105,0.4891686,-0.20488565,-0.066349275,-0.6359942,-0.13484058,-0.56312734,-0.22317266,0.27112296,0.05607494,0.14985372,0.13754426,-0.06564642,0.30620968,-0.38096467,0.19468366,0.019565642,-0.31898203,0.3046161,0.36035487,0.4621755,-0.29839134,0.5416137,-0.15273425,-0.098465726,-0.06086874,0.09621586,0.4874147,0.20681718,0.3490301,-0.12259617,-0.26881352,0.19579177,0.79427874,0.14219648,0.3755613,0.14067243,-0.120031714,0.21268173,0.093881935,0.0012795528,0.047250643,-0.42937025,0.012777378,-0.17561558,0.3116453,0.31051067,-0.0079833465,0.30803692,-0.20127797,-0.22180298,0.043738764,0.23398356,-0.030399524,-1.3152848,0.2956077,0.23801205,0.7509679,0.4224254,0.07035017,-0.13400714,0.5786928,-0.10242233,0.19551611,0.26652965,-0.19185114,-0.56209296,0.510366,-0.5671568,0.54265076,-0.02613899,-0.10114645,0.06784757,-0.0018281654,0.3587522,0.796125,-0.08298149,0.15065564,0.08630352,-0.27999762,0.26481918,-0.38603157,0.23687258,-0.48718184,-0.24056077,0.64144015,0.5472791,0.4944003,-0.11693453,-0.034229632,0.04051752,-0.16217558,0.09168022,0.047263548,0.12365634,-0.020405002,-0.71955925,-0.3245416,0.45217654,0.04864826,0.1321517,0.13598041,-0.17268063,0.25681317,-0.20383257,-0.01584537,-0.09850068,-0.5945017,0.027962986,-0.1898621,-0.45659977,0.5162639,-0.2811966,0.32828522,0.2232822,0.15022616,-0.34753767,0.5945737,0.1983313,0.8142888,-0.045667242,-0.11127166,-0.49163967,0.047867797,0.22743173,-0.1737002,-0.013891022,-0.5312694,-0.022971185,-0.5422159,0.3342931,-0.018096784,-0.19324191,0.028737184,-0.071358405,0.20080802,0.6096227,-0.13091625,-0.25469705,-0.0903944,0.11084136,-0.29966697,-0.09073779,-0.10668739,0.28700578,0.06199495,-0.046238128,-0.025146667,-0.15466881,-0.007247631,0.21321079,0.1324916,0.3790287,0.40678692,0.11657388,-0.3118717,-0.032521542,0.19699615,0.47502175,0.05605821,-0.024291592,-0.27082887,-0.35342452,-0.25867656,0.102861516,-0.12632567,0.2869629,0.136403,-0.117317446,0.69344574,-0.15268378,1.0766796,0.18151958,-0.22733116,0.031913195,0.38966998,0.023252197,0.040859576,-0.41025078,0.8226144,0.59307647,0.008558678,-0.20109305,-0.26692465,0.0042661824,0.2006708,-0.19508366,-0.14069447,-0.032011967,-0.75411165,-0.08047335,0.10235042,0.16435657,0.3971958,-0.11050156,0.036255524,0.20979944,0.04455695,0.22672892,-0.4517458,-0.0069828867,0.2908512,0.42140776,0.0395617,0.21158628,-0.3776851,0.41965505,-0.38485998,-0.093783125,-0.19425559,0.0975925,-0.16897024,-0.33387688,0.16578704,-0.008538397,0.44770786,-0.100067444,-0.22681968,-0.16833471,0.51851207,0.20240897,0.2940588,0.68809336,-0.15999451,0.013917879,0.049218122,0.42281106,0.99714625,-0.19708459,-0.093996815,0.46524334,-0.2780272,-0.74622154,0.09917723,-0.373542,0.31131217,-0.13772412,-0.22201914,-0.33909687,0.22100642,0.10379359,-0.13873006,0.19520734,-0.44082865,-0.21902353,0.19778076,-0.3126455,-0.32414767,-0.36091194,0.14009267,0.60273683,-0.31638357,-0.13549486,0.13123444,0.17295106,-0.07792045,-0.46240193,0.08883119,-0.33221582,0.13732024,0.11511079,-0.45836112,0.05942426,-0.081147425,-0.26828042,0.24951321,0.23565947,-0.34520617,0.059329167,-0.22124977,-0.23362795,0.9004616,-0.1340279,0.10930226,-0.5446579,-0.5124388,-1.0169582,-0.42726192,0.39859846,0.028733628,0.015436019,-0.49476385,-0.053150535,0.034338497,0.019477606,-0.06376112,-0.37611148,0.3985359,0.085941225,0.3751416,-0.10830288,-0.6069002,-0.03569002,0.17906937,-0.22445525,-0.58518684,0.57297903,-0.116414025,0.89877665,0.12657101,0.094147034,0.34858236,-0.41948527,0.060816135,-0.38234884,-0.12912926,-0.61778045,0.059449792,542 -234,0.38085282,-0.06742072,-0.6622934,-0.003776749,-0.13768879,0.022629745,-0.33199197,0.17981215,0.06288911,-0.3519815,0.007963999,-0.046364315,-0.122743614,0.16838057,-0.2904321,-0.52923626,-0.09409551,0.13104846,-0.52770865,0.47922948,-0.32938612,0.3362265,-0.06240447,0.23100458,0.07442028,0.18141259,0.29000875,0.0005567044,-0.107144274,-0.18461789,0.23481931,0.09131852,-0.77262574,0.14758497,-0.23612516,-0.47944212,0.04406679,-0.26523092,-0.4384953,-0.66859794,0.2482704,-0.8046566,0.57475203,0.12262327,-0.23926172,0.28903654,0.10351919,0.28008977,-0.21973675,0.15315269,0.23735365,-0.32709485,-0.08287631,-0.34200275,-0.13263087,-0.3304279,-0.54807186,-0.11756631,-0.6931213,0.08809606,-0.3053312,0.17567548,-0.2607134,0.093248576,-0.2706481,0.30454636,-0.46712402,-0.07673081,0.12575296,-0.026095828,0.3759283,-0.53968453,-0.13346152,-0.06470242,-0.1367651,-0.10751936,-0.1048664,0.35849756,-0.020451205,0.4049601,0.048439067,-0.17126186,-0.24719235,-0.13213101,0.23657556,0.34888414,-0.20615426,-0.14390947,-0.20595078,-0.16496179,0.25407898,0.1813497,-0.060438737,-0.098493144,0.10035305,0.047753986,-0.20361385,0.40361753,0.65204227,-0.3246089,0.0045952797,0.18809018,0.44110346,0.06175473,-0.12322358,0.06060213,-0.11791734,-0.43611953,-0.27758518,0.06644075,-0.2720316,0.49949735,-0.091269,0.2027557,0.43912405,-0.33951387,-0.011350846,0.1372371,0.09207355,0.1370598,-0.15849236,-0.49874866,0.57459235,-0.57801217,0.032246955,-0.29287606,0.5049907,-0.031085866,-0.5587758,0.23209305,-0.5042239,0.08130336,-0.057360753,0.69872475,0.5054218,0.58191323,0.27781633,0.8283847,-0.55166835,0.02096682,-0.075489394,-0.2660562,0.1360973,-0.14036743,0.025471712,-0.33178654,-0.093660325,0.05753582,0.020738553,0.120336026,0.29772326,-0.44747767,-0.07154789,0.18494767,0.68669194,-0.31122106,0.19347157,0.6289354,1.4027661,1.0020355,0.0035467674,0.95931077,0.15043738,-0.30657575,-0.23318271,0.022521181,-0.62820154,0.25460228,0.31969458,-0.2831789,0.42821723,0.054086674,-0.096415974,0.25201675,-0.64979976,-0.21743444,-0.08780745,0.25889763,-0.095466964,-0.09167417,-0.44471312,-0.08136437,-0.004915043,-0.031072017,0.06929579,0.3875248,-0.30202702,0.26729432,0.19583626,0.9870445,-0.07629483,0.08110363,0.27080372,0.3699103,0.23301719,-0.039864812,0.025248932,0.15696262,0.29938897,0.31262824,-0.5251324,0.0068505467,-0.2716777,-0.5687384,-0.16641887,-0.2203429,0.080154024,-0.1820921,-0.37706232,-0.22637695,-0.07737621,-0.41057274,0.31142634,-2.6098611,-0.102013074,-0.088024266,0.38352603,-0.083543025,-0.23268987,-0.063654594,-0.42132905,0.4982763,0.40045193,0.32200253,-0.47078377,0.45437717,0.40280122,-0.45244822,0.052549638,-0.49933738,-0.14588745,-0.14282684,0.37425143,0.113080226,-0.23908481,-0.060131736,0.3169605,0.45137584,-0.13194618,0.19683306,0.24054457,0.2992185,-0.30353013,0.43890905,0.15731785,0.31443512,-0.57841337,-0.23095515,0.4088674,-0.3919253,0.14916301,-0.17386168,0.18973789,0.3617139,-0.46805292,-0.862383,-0.47963476,-0.0881536,1.3286211,-0.27212816,-0.64651895,0.22325936,-0.03733109,-0.3546123,-0.050072454,0.38838488,-0.17776951,0.1249919,-0.7589956,0.09227796,-0.30697075,0.31830266,0.035648186,0.12979192,-0.5226502,0.59936583,-0.14276142,0.5617913,0.45482367,0.25011736,-0.25528148,-0.48167408,0.24445662,0.9828824,0.5997791,0.07706203,-0.28886947,-0.0331567,0.036678042,-0.007856385,0.12122477,0.49367222,0.83524907,-0.12669522,0.21700595,0.28170907,-0.0010722796,0.014364633,-0.10132802,-0.3351351,-0.045301307,0.091669835,0.6195389,0.6805573,-0.024725394,0.14967784,-0.025698483,0.46403047,-0.16895537,-0.3481918,0.36689675,0.9599725,-0.02211872,-0.23062156,0.7803937,0.604684,-0.14610146,0.70008713,-0.7239791,-0.70066553,0.32022515,-0.030507123,-0.37787977,0.27241156,-0.4499317,0.18548091,-0.7467474,0.34706864,-0.38207757,-0.39079836,-0.6099111,-0.39910582,-2.8782275,0.17958327,-0.33713597,-0.058017183,-0.19590253,-0.11645138,0.32501113,-0.48029292,-0.5411405,0.101280466,0.1494408,0.5354773,-0.14201389,0.09926745,-0.12895775,-0.35209405,-0.24984874,0.24297498,0.35692108,0.12503272,0.01613551,-0.49234095,-0.09780507,-0.2018138,-0.37347463,-0.011788062,-0.4502084,-0.32763594,-0.18962656,-0.3826763,-0.35445538,0.6008343,-0.15079173,0.052409936,-0.29244575,-0.074298516,0.07773861,0.25269774,0.17463306,0.29031688,-0.08269518,-0.09684177,0.13717273,-0.15560946,0.2515342,0.12982906,0.4081664,0.4446005,-0.31143722,-0.08567799,0.39706662,0.48445675,-0.1183207,0.8111588,0.38278225,-0.15358521,0.36463684,-0.089845344,-0.40342888,-0.7822042,-0.3908352,-0.035743006,-0.33310872,-0.29986477,-0.041810084,-0.35919935,-0.83798367,0.73922706,-0.16821143,0.23783194,-0.07365048,0.42046693,0.37343618,-0.20268092,-0.24247552,0.019263554,-0.18031724,-0.28273484,-0.3169267,-0.83112663,-0.33892834,-0.25107828,1.0463289,-0.06357371,-0.09897058,0.34239703,0.055915967,0.13006428,0.2764975,0.023793833,0.123577155,0.65724087,0.26194373,-0.66680235,0.48892814,-0.18517107,-0.17532755,-0.6329596,0.103517085,0.5756907,-0.64483553,0.36323005,0.55555147,0.22181155,-0.082196824,-0.64098656,-0.033305444,-0.008945823,-0.15150131,0.6122438,0.32096916,-0.76052296,0.5064967,0.19586569,-0.37090188,-0.5962995,0.63024837,-0.052563332,-0.3279423,0.00473272,0.35796925,-0.13628553,0.05394325,-0.08550278,0.31787097,-0.30622584,0.3434721,0.28139746,-0.09353294,0.39416325,-0.25512996,-0.22606961,-0.6980599,0.074782595,-0.5763193,-0.19775729,0.14603554,-0.11291588,-0.22238792,0.26399252,0.008804563,0.4561617,-0.25326154,0.0631837,-0.22074887,-0.42813867,0.6348725,0.59308344,0.3749585,-0.35427365,0.6805219,0.10789795,-0.1655676,-0.39929682,0.047552798,0.49795854,-0.16218852,0.420251,-0.02733791,0.17962806,0.31960356,0.5054219,0.30528548,0.4281852,0.1995259,-0.04018317,0.19078507,0.10910257,0.06189302,0.03316226,-0.3711131,0.034517385,-0.24366716,0.12790868,0.44329178,0.105023764,0.5355392,-0.22202425,-0.124828674,0.021900574,0.22251698,-0.14991666,-1.3082211,0.45245978,0.026171435,0.5840672,0.55428386,0.10031603,0.09745834,0.5128736,-0.2728076,-0.08293841,0.23679747,0.24401169,-0.25757587,0.64180017,-0.6100843,0.4293394,-0.104146,0.031119756,-0.060810376,0.0535744,0.5254248,0.7684837,-0.09931672,0.139361,-0.023588214,-0.21447489,0.24311881,-0.26233086,0.27276048,-0.37760115,-0.34656507,0.7707445,0.29229945,0.35035527,-0.24543397,-0.012219445,0.06398235,-0.25582752,0.363079,-0.027225064,0.016646456,-0.16028315,-0.4807031,-0.12353815,0.46423975,-0.018679181,-0.015328783,0.048331086,-0.18206218,0.06107629,0.088633224,-0.07900517,-0.02057057,-0.5473176,0.13008352,-0.37351754,-0.2840495,0.44616783,-0.27458265,0.2210633,0.18711877,0.0112432195,-0.45125884,-0.030655837,0.11038222,0.5069636,0.06355749,-0.2868786,-0.18669862,0.10594635,0.22249483,-0.26345226,-0.020551106,-0.33459902,0.28303945,-0.673499,0.5144113,-0.22747014,-0.20967585,0.16958629,-0.1993397,-0.12573777,0.51247954,-0.17112255,-0.11948948,0.059301242,-0.08954889,-0.25865477,-0.4513925,-0.2441248,0.11118793,0.08510963,-0.021042172,-0.029714258,0.065019704,-0.040016912,0.43441695,0.11763813,0.24301949,0.26511353,0.03526608,-0.5560729,0.022890644,-0.11795983,0.55806464,-0.08627278,0.0044699153,-0.36429018,-0.666914,-0.1865752,0.29858023,-0.17118959,0.21158719,0.13188712,-0.13042517,0.99426675,0.10241256,1.124645,0.00016543269,-0.3042805,-0.052823428,0.66059506,-0.29284108,-0.16934289,-0.29251912,0.9553387,0.64598536,-0.21458639,-0.20996472,-0.2615507,0.09732737,-0.084271,-0.23015015,-0.37144747,-0.11765353,-0.67371136,-0.25097418,0.14633636,0.42349702,-0.07067951,-0.15167457,0.11168614,0.4194153,0.12723742,0.20251945,-0.48325342,-0.15840606,0.51012284,0.0481289,-0.058917332,0.060952947,-0.36317107,0.33948454,-0.49654335,-0.13892053,-0.31559098,-0.009617325,-0.038629737,-0.4533949,0.31140384,-0.07545767,0.20653722,-0.39664462,-0.099163555,0.005616051,0.2236309,0.25625405,0.14785086,0.6567015,-0.2036461,0.11356856,-0.041363187,0.40345758,1.1276792,-0.32447538,0.041131597,0.2187164,-0.4176595,-0.6982502,0.11639709,-0.45607063,0.02179912,-0.14323992,-0.46005338,-0.5079647,0.31309286,-0.033646364,-0.06493278,0.18642655,-0.6745778,-0.21971565,0.22848286,-0.27326262,-0.2526653,-0.32372823,0.013526329,0.6238477,-0.20959559,-0.32390803,0.039225213,0.3949589,-0.26610553,-0.55498695,0.14935793,-0.3265373,0.3338007,-0.04117986,-0.1929101,0.080613956,0.11652549,-0.46032482,0.07573087,0.4086596,-0.29285005,-0.04254302,-0.34720847,0.019710895,0.5440957,-0.13144879,0.12020759,-0.45180404,-0.5036585,-1.0523045,-0.16497359,0.28229797,0.10331485,0.07719709,-0.5027674,-0.041934133,-0.18126637,-0.06855796,-0.11763299,-0.34467852,0.3160899,0.13775437,0.48270544,-0.20216209,-0.7537028,0.08309902,0.17428796,-0.27273458,-0.19223714,0.5382902,-0.10736386,0.62550056,0.0489605,0.1005478,0.10990753,-0.7065081,0.2677641,-0.086807065,-0.23371443,-0.58776206,0.00092234614,549 -235,0.56727403,-0.12481538,-0.43146855,-0.20822519,-0.50135154,0.40555078,-0.29213637,0.2421826,0.2464297,-0.28281966,-0.13450126,-0.095183305,0.015861064,0.26749057,-0.21287332,-0.6822195,0.048578434,0.22013858,-0.56974274,0.33567613,-0.65639114,0.44318697,0.05640333,0.47950593,0.08746459,0.29339233,0.14108501,0.025046114,-0.38796335,-0.00036678315,-0.10822281,0.22450924,-0.5917366,0.17296098,-0.30070984,-0.4033574,-0.10553963,-0.32545072,-0.22086586,-0.6501015,0.23973446,-0.81548345,0.6128777,-0.18482867,-0.33887926,0.08934984,0.10223846,0.1520443,-0.2399882,0.13439171,0.08549156,-0.1672654,-0.043954246,-0.32802135,-0.45433372,-0.53159344,-0.5342778,0.15312289,-0.6218744,0.027624415,-0.19414823,0.2694983,-0.1990131,0.082173735,-0.13291289,0.2890135,-0.27536616,0.20844455,0.257805,-0.32760695,-0.2693151,-0.48304942,-0.16257595,-0.13679132,0.2871653,0.056739345,-0.32037848,0.010900433,0.39470783,0.60354435,0.047036003,-0.27520955,-0.3616527,-0.11101837,0.102894165,0.5240526,-0.09580162,-0.17245798,-0.32435018,-0.1359165,0.4806487,0.18569802,0.15370008,-0.29007742,0.09688307,-0.12145162,-0.22379327,0.20339727,0.52044547,-0.4521801,-0.23895298,0.35701334,0.4281578,0.04625477,-0.17635117,0.24647234,-0.006215787,-0.546353,-0.1833722,0.10473275,0.110263556,0.618239,-0.26905116,0.23589562,0.69393057,-0.1487575,0.021891275,-0.044619314,0.052203346,-0.08864071,-0.31960583,-0.025896946,0.06436207,-0.49589494,-0.1600399,-0.25789824,0.58371407,0.09575831,-0.70080525,0.40813535,-0.5246556,0.04266713,-0.03755563,0.40206805,0.864165,0.348852,0.032459434,0.7361423,-0.3373222,0.047689836,-0.16706075,-0.27137044,0.07522988,-0.19173536,0.13684374,-0.39325052,0.18170029,0.10509084,-0.10090377,0.043959476,0.7141277,-0.41668376,-0.15838803,-0.05016174,0.51681656,-0.4792013,-0.15632248,1.0176435,0.8724085,0.9390427,0.09736322,1.5357877,0.5096198,0.08540311,-0.015741842,-0.22229414,-0.5119764,0.16475365,0.14943895,-0.1826182,0.42344257,0.19161278,0.014607605,0.52362186,-0.17312293,-0.08192758,-0.038530577,0.24569298,0.049370475,0.0622188,-0.25500524,-0.3980158,0.25301117,-0.0012744387,0.121528655,0.39860016,-0.14436322,0.4409514,0.12407123,1.5283009,0.061158106,0.033625,0.07232623,0.23937152,0.30350497,-0.24982338,-0.079799175,0.292605,0.1925602,-0.19058962,-0.4857159,-0.16061245,-0.30561975,-0.4010881,-0.20024997,-0.3280564,-0.25094935,-0.15862392,-0.50968474,-0.23215698,-0.01312817,-0.3310658,0.536103,-2.3184354,-0.403927,-0.14943291,0.35978475,-0.20755723,-0.54225093,-0.44727585,-0.5074083,0.16323242,0.21047395,0.25124398,-0.5389917,0.27833304,0.35955334,-0.40707532,-0.34142062,-0.6905005,0.07377585,-0.08370028,0.22758977,-0.2698059,-0.1476719,-0.19672656,0.07876566,0.75477415,-0.04606665,0.10551087,0.4051337,0.64346117,0.10241225,0.45756587,0.23504385,0.6768011,-0.35903102,-0.2858071,0.43115357,-0.48945245,0.44848397,0.05711017,0.19983073,0.5639633,-0.4773473,-0.7480174,-0.65294427,-0.24157873,1.1765608,-0.3108965,-0.29068616,0.027263952,-0.31399265,-0.3728834,0.05064655,0.43054417,-0.08882164,-0.07493441,-0.65166456,-0.040620573,-0.03195894,0.112881966,-0.19421917,0.25877127,-0.27765718,0.6010891,-0.115802355,0.35771438,0.264385,0.2453617,-0.028111223,-0.32333967,0.0755358,0.8655415,0.35556135,0.124871686,-0.26550442,-0.22875471,-0.23839352,-0.11882378,0.060418606,0.5465897,0.53914666,0.024548301,0.22602259,0.34971103,0.0035081585,0.05147322,-0.17027596,-0.1988895,-0.14439838,0.17822386,0.5745005,0.71836495,-0.1867494,0.45388713,-0.21771608,0.16988198,-0.27690214,-0.6471827,0.42240143,0.69723946,-0.23171256,-0.20286518,0.57344383,0.32897452,-0.43825683,0.38972962,-0.49664548,-0.3931764,0.51601005,-0.10833274,-0.45778498,0.19136031,-0.34049806,0.005897848,-0.82025784,0.33802155,0.043286443,-0.47070345,-0.4780835,-0.27628785,-2.9935496,0.22262995,-0.03209548,0.0060936767,-0.041236177,-0.35852635,0.23836157,-0.5559828,-0.5343907,0.16117303,-0.040715978,0.4873455,-0.12623009,0.26724443,-0.30192414,-0.28779763,-0.28287876,0.2315011,0.13717842,0.35182497,-0.13498668,-0.3230597,0.08267941,-0.31713742,-0.3240924,0.053908005,-0.73252815,-0.5347895,-0.055471875,-0.3474442,-0.20534325,0.7452291,-0.5407766,-0.11176041,-0.33756238,0.0115068,-0.2168711,0.4061838,0.13923311,0.11831167,0.21586803,0.07148765,-0.1315278,-0.4225482,0.2613912,0.047653675,0.2310854,0.59429157,-0.14687027,0.22801049,0.4064904,0.65990853,-0.08061635,0.73586977,0.11061563,-0.012068317,0.4109951,-0.19405165,-0.24799137,-0.62845254,-0.2891408,-0.27777404,-0.5521938,-0.4527993,-0.06289946,-0.42425162,-0.77817714,0.52026635,0.074081905,0.12612817,-0.16009255,0.36418253,0.5752248,-0.22200276,0.018060315,-0.107268535,-0.26575077,-0.4192305,-0.5800033,-0.50686496,-0.67181337,0.41523272,1.3229403,-0.09553901,-0.0147778215,0.0676144,-0.2514172,0.058892895,0.14438525,0.1804469,0.0017173251,0.5385254,-0.12148021,-0.65616506,0.28934756,-0.22519697,-0.19116801,-0.5987785,0.031254236,0.788602,-0.6801443,0.5892449,0.48678023,0.2953555,0.21852341,-0.63530284,-0.19464913,-0.005095767,-0.21716617,0.569232,0.3780209,-0.59640694,0.49929056,0.17451094,-0.14692971,-0.6881111,0.43455064,0.050119884,-0.10027452,-0.087004855,0.45915973,0.18565963,-0.08919444,-0.028182156,0.11595039,-0.5717894,0.22127104,0.37718853,-0.04604406,0.44921103,-0.06535982,-0.3159003,-0.7255037,-0.13533194,-0.32620484,-0.3879042,0.049295582,0.08711221,0.21003075,0.20424767,0.112680584,0.32978344,-0.5421477,0.08298545,-0.06930241,-0.15695214,0.28235683,0.33235958,0.43877605,-0.49168795,0.569102,0.015319387,0.04261225,0.12214902,0.018638404,0.42270857,0.15780085,0.3270225,-0.020047562,-0.06824487,0.126022,0.70662075,0.1354088,0.34160557,0.19115622,-0.4235726,0.2732752,0.20542759,0.15845184,-0.15178935,-0.2846747,-0.087898664,-0.10436814,0.31674522,0.37458208,0.15640524,0.36563593,-0.092206575,-0.15455057,0.22297017,0.031209907,-0.066507444,-1.2201155,0.05786802,0.25178203,0.69730973,0.3163953,-0.012878434,0.0046813986,0.3146243,-0.35505995,0.12420644,0.4025282,-0.13588074,-0.26704788,0.44235426,-0.48557532,0.46577016,-0.24127795,-0.00034626125,0.0811659,0.18899943,0.39624876,1.0071167,0.0055744736,0.019326758,0.09908161,-0.31981897,-0.0040541687,-0.30193803,0.019343495,-0.6087712,-0.19971623,0.9017436,0.41389903,0.36142403,-0.4728137,-0.13709646,0.009063214,-0.17991628,0.034334492,0.042054903,0.062404417,-0.20909758,-0.5612968,-0.2509382,0.5838764,0.060267814,0.06679074,0.15272127,-0.43990287,0.30163166,-0.21009302,0.0562974,-0.010078947,-0.6536223,-0.17947952,-0.40555525,-0.69550437,0.25047365,-0.15839347,0.06675645,0.19098625,0.03462953,-0.33844927,0.28183562,0.10595486,0.95299995,-0.048466526,-0.06092206,-0.23118776,0.20321494,0.43851286,-0.26185554,0.002549267,-0.25457516,0.2751522,-0.504059,0.42476672,-0.20203556,-0.23050229,-0.13480766,0.017385293,0.07282066,0.43344697,-0.19716215,-0.09284285,0.124129586,0.03189729,-0.40739474,0.049492143,-0.33671626,0.2784592,0.065059915,-0.19705442,0.017383516,-0.1666243,0.017401194,0.2512616,0.106949694,0.14511853,0.4267255,-0.055035256,-0.27203313,0.0712651,0.04707354,0.5066331,0.0036918442,-0.16465409,-0.3425127,-0.30660385,-0.39668533,0.6303471,-0.14758253,0.065913506,0.106203645,-0.28404462,0.83958435,0.14529055,1.143694,0.14059053,-0.3739188,0.06383536,0.5500459,0.05653548,0.054383874,-0.29652923,0.90937793,0.5863754,-0.1525034,-0.16186357,-0.25401223,-0.2355916,0.20424777,-0.38778496,-0.20249948,-0.14680801,-0.7158914,-0.09589977,-0.017340787,0.10698258,0.07362993,-0.19510178,0.1629569,0.16305518,0.0909694,0.5646487,-0.5423963,-0.17045334,0.27383092,0.3983542,-0.08279003,0.31409442,-0.30962792,0.38726285,-0.72994643,0.09629773,-0.4991097,0.19745909,0.0020874818,-0.37263072,0.13684319,0.18456106,0.3200221,-0.3685347,-0.3872393,-0.42537835,0.5371334,0.08696316,0.29713824,0.6153201,-0.24770811,-0.29406464,0.08369085,0.5509334,1.3157476,0.100147806,-0.019859107,0.4567221,-0.2437081,-0.68844205,0.2614221,-0.50183207,0.15235479,-0.08463655,-0.33311552,-0.3923903,0.39393845,0.2663725,0.11299028,0.05108243,-0.51728016,-0.028441422,0.38974422,-0.20753309,-0.21433306,-0.19269043,0.17741175,0.76378757,-0.32525048,-0.36634833,-0.03698719,0.33490238,-0.3665529,-0.51091427,-0.017443193,-0.44794658,0.4321817,0.24695061,-0.25038633,-0.055706702,0.1519514,-0.45672318,0.035845652,0.23903266,-0.26713672,0.06781195,-0.3384449,0.0017240762,1.0637202,0.053908728,0.2749742,-0.5306082,-0.5554558,-0.96386313,-0.28265908,-0.008623147,0.11067511,-0.023619385,-0.53208464,-0.0543794,-0.11689366,-0.21574463,0.08331716,-0.4113993,0.47148132,0.24519315,0.47153717,-0.014758078,-0.9569566,-0.089314505,0.1113029,-0.43659985,-0.4659949,0.5318812,-0.18082409,0.72448623,0.19170062,0.0020286718,0.13078572,-0.61543834,0.36115253,-0.35310224,0.03533729,-0.69640833,0.0006256302,550 -236,0.5231232,-0.12859257,-0.64393955,-0.13116202,-0.36419985,0.07118392,-0.23158875,0.291925,0.22980876,-0.25192967,0.02600876,-0.03667025,0.02464954,0.49523336,-0.14858887,-0.66793483,0.13657375,0.18753041,-0.6244656,0.63483995,-0.3700618,0.47672012,0.022559313,0.14657965,0.13887516,0.2081555,0.16525884,0.091315046,0.038594473,-0.02346781,-0.18675537,0.28334576,-0.35622045,0.13524845,0.0076338965,-0.35560176,0.027687455,-0.34613147,-0.37948143,-0.6998665,0.33709848,-0.61959547,0.5746588,0.045071658,-0.43605843,0.22024806,0.2168052,0.31749025,-0.29450846,0.125299,0.0830722,-0.10627078,-0.10572662,-0.14896022,-0.29239064,-0.42289844,-0.50270474,-0.025481287,-0.68230987,-0.1556967,-0.37097472,0.13699916,-0.39446798,-0.007681374,-0.07480159,0.28574145,-0.3176388,-0.10818894,0.27038255,-0.17099148,0.10118716,-0.44504398,-0.0358599,-0.060530424,0.30560604,-0.09501466,-0.1278849,0.3022971,0.18126135,0.56001174,0.07711325,-0.37260762,-0.23726879,-0.09890812,-0.06544405,0.45626932,-0.118359946,-0.3492109,-0.24741589,0.1774843,0.26510993,0.107509516,-0.017494153,-0.13582477,-0.14488885,-0.0539562,-0.21077985,0.47198993,0.5188158,-0.4002781,-0.18112227,0.5493483,0.4518078,0.19077645,-0.13356066,0.19027558,0.0007732401,-0.5353672,-0.1372807,-0.028171273,-0.17781456,0.36492836,-0.09188501,0.30156633,0.58175963,-0.12254991,-0.104952306,0.057370868,-0.019172285,-0.045856792,-0.1274414,-0.12733258,0.028701417,-0.37298357,0.1492856,-0.05417065,0.8361653,0.116759695,-0.62685513,0.3856958,-0.43921047,0.26550233,-0.11190287,0.51168233,0.8375316,0.43844718,0.123561874,0.84323883,-0.3704788,0.10561382,-0.23315448,-0.3737577,0.014138941,-0.14708243,0.13169977,-0.53234124,0.071464285,-0.067645654,-0.1368293,0.15394051,0.58120275,-0.43486422,-0.25230452,0.109146126,0.75182766,-0.3064631,-0.07993293,0.66615766,0.92156464,1.0027006,-0.0018806055,0.76088744,0.30610988,-0.0654056,-0.05043803,-0.4070348,-0.7201308,0.19594769,0.37487411,0.45177123,0.29900745,0.055351317,-0.050269112,0.428436,-0.30663487,-0.16039939,-0.19491081,0.41589954,-0.056784756,-0.062898465,-0.55662125,-0.13553809,0.012970909,0.20381455,0.19684026,0.23087373,-0.19460759,0.29819667,-0.035472084,1.6784686,-0.048207883,0.09536989,0.07233653,0.4912983,0.448484,-0.05810443,-0.25524554,0.24103852,0.33832118,-0.03583692,-0.5157947,0.101495914,-0.26306075,-0.29231185,-0.14639802,-0.28537807,-0.0104904175,-0.14727086,-0.4484768,-0.04432101,0.091654256,-0.46414793,0.41310832,-2.700026,-0.30518296,-0.12763551,0.28246024,-0.15937856,-0.4006553,-0.19250916,-0.36511704,0.4566427,0.32202095,0.42647305,-0.6146914,0.43604413,0.4213787,-0.44435042,0.0005974571,-0.5038999,-0.07082532,-0.10142656,0.4065529,0.064034134,-0.26872227,-0.07717453,0.37826833,0.52797973,-0.07475567,-0.026038243,0.31772283,0.35642356,-0.008034702,0.44354972,-0.034285896,0.47739035,-0.24813436,-0.23092394,0.32861704,-0.29650882,0.15045999,-0.1986882,0.204904,0.43334395,-0.43806374,-1.0249839,-0.5590572,-0.008193628,1.207764,-0.30278575,-0.34219706,0.36457685,-0.38127887,-0.19948098,0.06069537,0.4436424,-0.104773805,-0.11028341,-0.6387839,0.18061538,-0.086252026,0.13367759,0.004606986,-0.047526613,-0.34194073,0.6001358,-0.09769623,0.4688384,0.110392906,0.2750215,-0.16976161,-0.34877726,0.07950388,1.0302824,0.40122074,0.049852673,-0.23210277,-0.17489572,-0.17514539,-0.1279516,0.11885583,0.45742184,0.7030415,-0.035607394,-0.042281713,0.21765958,-0.05331141,0.10799181,-0.13102956,-0.21415631,0.011359187,0.007841102,0.4970463,0.60420895,-0.12031083,0.59022826,-0.060522676,0.07604453,-0.22140035,-0.5618675,0.54354423,0.7229703,-0.24851461,-0.29617283,0.6312847,0.39167327,-0.18705197,0.33790478,-0.6538058,-0.40212414,0.2997832,-0.25698513,-0.23934577,0.30553952,-0.39113188,0.20487493,-0.8801196,0.18790086,-0.050722852,-0.5240816,-0.35056457,-0.06926332,-3.9511385,0.19958846,-0.15363489,-0.09070078,-0.026072232,-0.103528515,0.30025136,-0.55353826,-0.48436996,0.1683362,0.062249493,0.81924033,0.014074045,0.11639272,-0.12184366,-0.36110285,-0.25727195,0.17361537,-0.09892505,0.4417332,0.09203396,-0.36407518,-0.11259945,-0.18921496,-0.44123894,0.033941984,-0.6223396,-0.39951804,-0.19107153,-0.5678105,-0.036442574,0.6027919,-0.08391881,0.13871908,-0.28569892,0.083389044,-0.08389093,0.22517961,0.20392114,0.08022277,0.12972993,-0.17600441,0.077983506,-0.34613413,0.20606461,-0.038910184,0.25612313,0.2951016,-0.015795963,0.16629696,0.65011185,0.5863866,-0.15033658,0.86274517,0.5083535,-0.20507322,0.17866516,-0.20907608,-0.18080963,-0.5002485,-0.296872,-0.11397173,-0.42843544,-0.20817086,-0.15770626,-0.35278186,-0.71966046,0.49299917,0.05962891,0.16921046,-0.0764284,0.20753461,0.5192737,-0.31144476,-0.119667806,0.07908109,-0.30507764,-0.40413687,-0.21547228,-0.5614064,-0.41179127,0.15464257,0.9774601,-0.30963215,0.040988002,-0.04349215,-0.14617775,-0.11217635,-0.1444967,0.29827192,0.2332203,0.25356615,-0.15031618,-0.60667443,0.34298575,-0.3292828,-0.03928556,-0.64903533,0.09214832,0.5168863,-0.3644543,0.37546647,0.30452558,0.17085974,0.01020441,-0.55870885,-0.101462506,0.19736522,-0.21477845,0.3319084,0.2258945,-0.87289244,0.5686916,0.26867348,-0.28070578,-0.65874773,0.39816177,0.045662288,-0.49687767,-0.07613926,0.29834175,0.19930081,0.008240665,-0.28610376,0.1682411,-0.3669163,0.3316868,0.19470552,-0.16165046,0.31625107,-0.21452469,-0.25323817,-0.4455144,-0.2465037,-0.53628254,-0.24469146,0.14104484,0.077091806,0.19287175,-0.11797794,-0.07393029,0.4338583,-0.46999824,0.05398655,-0.17700471,-0.3279416,0.47033855,0.54622597,0.5334091,-0.31750235,0.6576119,0.010115937,-0.066328116,0.01259985,0.07081353,0.50490624,0.03982846,0.36103624,0.0078092893,-0.20620997,0.3271875,0.8363047,0.1154202,0.3460929,0.14121626,-0.23264049,0.12884328,0.16238065,-0.058353074,-0.05774383,-0.3031614,-0.15640083,-0.15953301,0.21336919,0.4385461,0.18769567,0.28254217,-0.075213976,-0.2308344,0.07337927,0.14497979,-0.0150806345,-1.3648635,0.3142329,0.17892711,0.6614063,0.27005088,0.09549462,-0.1568193,0.6783528,-0.07604752,0.12056758,0.15698496,-0.17819971,-0.26773602,0.4319611,-0.6481364,0.48019654,-0.03480258,-0.056412484,0.107211575,0.13697058,0.35806847,0.7800763,-0.17054524,0.040777795,-0.004252843,-0.357707,0.004098622,-0.25241476,-0.012511905,-0.5912846,-0.4015083,0.4846919,0.35754645,0.27780324,-0.15103026,-0.04547311,-0.031933706,-0.076823905,0.01297737,-0.09074841,-0.043191552,-0.16180977,-0.6341726,-0.227665,0.45226675,0.29315484,0.11440294,-0.124010086,-0.04253633,0.3111491,-0.106883936,-0.030997988,-0.06316717,-0.47247913,0.004508386,-0.31421995,-0.47838935,0.5148578,-0.28394014,0.3329549,0.16119899,0.008154458,-0.14966656,0.39553973,0.05672457,0.7704004,-0.003603669,-0.22726487,-0.35172838,0.080219135,0.14093575,-0.24436656,-0.15540941,-0.20497891,0.18140364,-0.69607157,0.43742695,-0.18265633,-0.3976164,0.25013894,-0.22833596,0.12448178,0.42989242,-0.19318034,-0.19489272,-0.14613435,-0.112393826,-0.3067486,-0.26653707,-0.24377877,0.22189131,0.017476344,-0.21648918,-0.09643997,-0.14357014,0.055982057,0.42794818,0.029332126,0.30038968,0.32054773,0.25411466,-0.24848346,-0.014458688,0.32899207,0.5845104,-0.029146316,-0.053717352,-0.34901798,-0.36199564,-0.4286743,0.032853793,-0.16211359,0.150396,0.102615766,-0.23934005,0.717348,0.14807771,1.0445675,0.050293807,-0.18808122,0.18722682,0.4269345,0.07881052,0.053885635,-0.25469792,0.7571197,0.54923654,-0.020255422,-0.106080174,-0.4625599,-0.13846299,0.2841875,-0.2876152,-0.08905725,0.024383456,-0.67777526,-0.2880047,0.27445835,0.17635952,0.25285876,-0.15938003,0.0398279,0.17037576,0.17587443,0.2500834,-0.58359617,-0.043326266,0.31681487,0.19206555,0.024152882,0.15637036,-0.531399,0.30654252,-0.57102245,0.0023103633,-0.2909202,0.22794327,-0.058340088,-0.20042671,0.31559902,0.069112726,0.37509066,-0.32265148,-0.2934243,-0.20351115,0.48437583,0.07730486,-0.04439706,0.47993818,-0.23704052,-0.060928702,0.11765577,0.46775967,0.9501611,-0.25155357,0.15357432,0.4091164,-0.21670562,-0.7289324,0.1999404,-0.26494005,0.1682218,0.016824782,-0.27160046,-0.49641177,0.36357826,0.075799,0.17210573,0.08479066,-0.3816815,-0.10450387,0.21069282,-0.12700732,-0.1835892,-0.24532379,0.18797515,0.5804034,-0.19526537,-0.19284493,0.15437026,0.37483528,-0.09625348,-0.7331923,-0.07370634,-0.24755621,0.22957294,0.17282228,-0.37481314,-0.16486053,0.012523921,-0.5281898,-0.020178216,0.27696648,-0.3518396,0.05009177,-0.22368288,0.005479932,0.9924231,-0.31076622,0.23512448,-0.6588127,-0.55603313,-0.8444702,-0.3508932,0.49004108,0.14745755,0.081712656,-0.6536259,0.0136347795,-0.17839164,-0.015769117,-0.0069754003,-0.43048885,0.4039981,0.10462917,0.25299364,-0.07542806,-0.8570001,0.101442575,-0.043939274,-0.39074278,-0.5736855,0.57694435,-0.056939546,0.7498642,0.0519833,0.08660765,0.20253663,-0.5748933,0.15915559,-0.27349404,-0.16557099,-0.68365747,0.06471855,554 -237,0.45958945,-0.19606574,-0.5577052,-0.05877566,-0.24110681,0.12363316,-0.3175939,0.53653437,0.10907821,-0.32848728,0.0156101845,0.066459656,-0.0032308102,0.34562454,-0.18205564,-0.5936393,0.018985678,0.17682639,-0.528781,0.80895025,-0.2771897,0.28711665,-0.12466164,0.40976366,0.090167075,0.254827,0.013152564,0.094349906,-0.114746295,-0.20972206,-0.11806537,0.43070236,-0.46498662,0.23546444,-0.24869372,-0.3075401,-0.21297082,-0.31533092,-0.24546142,-0.7219662,0.16495477,-0.61816823,0.7586414,-0.024492817,-0.341825,0.3114971,0.1942608,0.2706769,-0.18460362,-0.12435038,-0.10002234,0.036067255,-0.07719423,-0.36706492,-0.1741036,-0.6039542,-0.48041782,0.12024286,-0.48897424,-0.027353797,-0.14486672,0.18179981,-0.2507781,0.045641523,-0.059882537,0.6282299,-0.4193812,0.22481449,0.10222268,-0.06669179,0.1278224,-0.5914308,-0.23793742,-0.1272239,0.33368716,-0.075672396,-0.2011428,0.2396669,0.28681746,0.43723568,-0.11230316,-0.1907425,-0.3720679,-0.06239485,-0.07516796,0.57828486,-0.21376872,-0.70755947,-0.07835512,-0.00013400316,0.33929715,-0.006162079,0.11576936,-0.21768573,-0.1492703,-0.16739267,-0.31118578,0.4341532,0.44156024,-0.33226737,-0.19842982,0.36013195,0.45798105,0.20478414,-0.3119054,0.045265384,-0.114926144,-0.51098764,-0.044494875,-0.06680488,0.043604884,0.5437257,-0.024336267,0.22065468,0.39512312,-0.026141029,-0.17807111,0.2638131,0.13527387,0.076842695,-0.15135323,-0.45113465,0.13998564,-0.35772145,-0.059300892,-0.15942238,0.5673264,0.18101545,-0.8341564,0.362659,-0.51387304,-0.032857917,0.06320009,0.3090766,0.5989262,0.6391497,0.10017134,0.51591736,-0.1604152,0.11602541,0.010851971,-0.181817,-0.057635617,-0.17106208,-0.06686461,-0.54630417,0.20462781,0.043874893,-0.20198376,0.12273507,0.523347,-0.4573776,-0.15822071,0.21541044,0.8778921,-0.21002407,-0.20819543,0.87978786,1.062631,0.9780338,0.0013433754,0.92726153,0.15379958,-0.010077273,0.07851042,-0.23239683,-0.53057814,0.25551698,0.31027368,-0.01422046,0.49299017,-0.024225838,-0.11329705,0.508004,-0.20631447,-0.14611647,-0.16956648,0.2599679,0.2193628,-0.22807594,-0.42013988,-0.31532848,0.06976802,-0.028351005,0.13443097,0.31567708,-0.28115055,0.4007993,0.14837942,1.5535325,0.06637454,-0.021877158,0.13749853,0.59727025,0.31544885,-0.096915655,-0.042069033,0.29758245,0.3313542,0.19448109,-0.44687924,0.1360945,-0.12931539,-0.67448425,-0.15760438,-0.26957098,-0.28519633,-0.14679922,-0.5355455,-0.23105296,-0.02781954,-0.15338892,0.4200467,-2.8771424,-0.2411206,-0.14178897,0.34357175,-0.2333983,-0.43788326,-0.1950545,-0.3974508,0.3386203,0.3602347,0.39630705,-0.5800818,0.52838016,0.2038741,-0.4227099,-0.25204164,-0.5264961,-0.14200625,0.066215605,0.4882252,-0.094802395,0.022189057,0.24807006,0.27282438,0.5056428,-0.3073964,0.14813955,0.18618308,0.38595912,-0.054169003,0.19566625,-0.10614399,0.5209496,-0.33202046,-0.2515208,0.299593,-0.41714236,0.19998123,0.012354664,0.2736065,0.39237574,-0.47762814,-1.0006566,-0.6631976,0.19543648,1.0805668,-0.13782552,-0.4377604,0.18523748,-0.4598035,-0.31380215,-0.16508356,0.26344392,-0.034567177,0.06522953,-0.74623674,-0.022955071,-0.106921785,0.23915397,0.01552701,-0.05248255,-0.40354404,0.63995206,0.058628395,0.48136446,0.31482455,0.15137571,-0.36868545,-0.3643123,0.03499805,0.80107635,0.44012558,0.10955084,-0.17558643,-0.10890021,-0.34464186,0.06111722,0.13678819,0.6250569,0.38420096,0.004549648,0.066499546,0.13194658,-0.06512021,0.23056565,-0.19603613,-0.2352512,-0.16702603,0.19451226,0.58410925,0.5340755,-0.21842387,0.5476144,-0.19616267,0.3750954,-0.23737653,-0.48728544,0.47953522,1.0045561,-0.2461768,-0.40895334,0.51609474,0.6413906,-0.19869159,0.3528079,-0.60139114,-0.48203737,0.3149727,-0.13712282,-0.2255495,0.43780953,-0.24113229,0.12263738,-0.7759498,0.23360246,-0.3280436,-0.5745705,-0.52794164,-0.17486337,-3.0769136,0.14272575,0.011482364,-0.2986069,-0.16937011,-0.23434238,0.19941305,-0.5619802,-0.55074996,0.18604541,0.14265461,0.6137105,-0.0751094,0.064050056,-0.11042783,-0.44150034,-0.102006435,0.30142874,0.14659233,0.3524548,0.008438964,-0.43846866,-0.2020792,-0.05568659,-0.36800626,0.13146216,-0.69031805,-0.4055056,-0.09805245,-0.49434063,-0.109294765,0.592436,-0.3704017,0.09671524,-0.32176763,-0.009939786,-0.087002255,0.19530989,-0.010386833,0.15620655,0.017081618,-0.086020015,0.36537415,-0.29734153,0.095315315,0.044798527,0.23878089,0.2574827,-0.016071307,0.250168,0.5469818,0.6968432,-0.041365854,0.83272934,0.4521155,-0.098848276,0.5142229,-0.19802389,-0.37162945,-0.46994123,-0.21308164,0.1232722,-0.35658902,-0.26006517,-0.09755953,-0.39675942,-0.76783055,0.5108147,-0.1367925,-0.04871136,-0.07601299,0.50504583,0.48190948,-0.29341877,-0.042743396,-0.103368185,-0.15735689,-0.43122074,-0.3747157,-0.47915748,-0.33843276,-0.16400142,1.1490228,-0.1438245,0.109375335,0.11887971,-0.13534243,0.0105538685,0.10886776,0.22139329,0.21638498,0.3916865,-0.31217453,-0.7538079,0.29848567,-0.47869352,-0.34171745,-0.40491208,0.34673753,0.5132654,-0.53279257,0.51219565,0.39551678,0.18859448,-0.24402888,-0.58494735,0.008847507,0.095198125,-0.10997211,0.32754225,0.38159555,-0.76214325,0.43444118,0.20436755,-0.23419547,-0.6164407,0.5844959,-0.045080144,-0.35419628,-0.14847226,0.3705476,0.11779742,-0.016560066,-0.39933178,0.10985046,-0.3624605,0.2143376,0.21560645,-0.032375872,0.21323465,-0.2803149,-0.05890554,-0.8264164,-0.09939567,-0.43036085,-0.3662584,0.24319439,0.13553505,0.2531024,-0.039365865,-0.19245876,0.31624526,-0.4893368,0.07816424,-0.16837433,-0.30764377,0.3785467,0.42103234,0.49855912,-0.40791193,0.59612626,0.05320258,-0.11101643,0.018232886,0.06375011,0.50389045,-0.0016509652,0.43003038,0.07294654,-0.055589374,0.30368042,0.7626123,0.32235858,0.4696914,0.03199095,-0.19671048,0.15050605,-0.06126475,0.06686627,0.04046996,-0.4025249,-0.08085908,-0.16114902,0.16391598,0.5534805,0.030089557,0.2549048,-0.18088475,-0.30149874,0.017564217,0.2686836,0.20573823,-1.4088341,0.35394853,0.26525262,0.853532,0.28751287,0.17855325,-0.084476165,0.67985976,-0.20341443,0.08834286,0.34707165,0.043085624,-0.34734488,0.5230878,-0.7229337,0.49840593,-0.029065423,0.042157125,0.1128382,-0.120438114,0.41550192,0.8593216,-0.16091475,0.075081386,0.19242607,-0.44341898,-0.066845894,-0.4074874,-0.0065947217,-0.46631202,-0.33495277,0.71370953,0.5003739,0.32797593,-0.31473213,0.09098938,0.23177221,-0.20870405,0.081562504,-0.06146614,0.22422384,-0.23036174,-0.6237098,-0.032790173,0.54484534,-0.100907214,0.11681144,0.15695053,-0.26607138,0.35947335,-0.07480167,-0.1078685,-0.036953326,-0.60368574,0.1221201,-0.3907032,-0.35753575,0.5321472,-0.118205,0.17694591,0.2683539,0.073630445,-0.27894074,0.31887773,0.12096044,0.71554095,0.112051584,-0.1069614,-0.34756497,0.063015535,0.21300672,-0.2413304,-0.14270109,-0.3559559,0.23150559,-0.55923146,0.32127494,0.0061988872,-0.20479284,-0.03410878,0.050650276,0.20486934,0.46603358,-0.11160033,-0.15025039,0.0601253,-0.01974115,-0.2771879,-0.2566584,0.0030336916,0.33862174,0.3582411,-0.027466757,-0.085726574,-0.10048518,-0.07751923,0.48329931,-0.045610707,0.47172812,0.42709932,0.30373916,-0.1401796,0.021024322,0.11393426,0.5586754,-0.097791605,-0.045924846,-0.44432184,-0.4485224,-0.34260324,0.25818646,-0.07805329,0.21815774,0.012243467,-0.23432723,0.92816955,-0.11588133,1.2254771,0.04793947,-0.31998122,0.25264892,0.35689962,-0.02334731,0.023429113,-0.3331745,0.992923,0.5412272,0.044701416,-0.10962621,-0.29183018,-0.034160554,-0.008851469,-0.3025333,-0.199177,-0.0035203537,-0.5255617,-0.24602506,0.1390751,0.12239507,0.21831764,-0.1393986,0.20137429,0.22956604,0.11270256,0.09424799,-0.53712016,0.024073545,0.24582288,0.25323156,-0.14255933,0.016174944,-0.5116388,0.3165125,-0.44852582,0.051979072,-0.43655378,0.0978017,-0.08689462,-0.28322777,0.21118087,-0.018087456,0.21684061,-0.4805237,-0.26891893,-0.253342,0.44780204,0.15107483,-0.10341184,0.42251545,-0.21119471,0.033602238,0.14106274,0.51286715,0.7585771,-0.3718356,-0.083925836,0.19180273,-0.42226657,-0.64643204,0.12042059,-0.31137726,0.30238736,0.028142087,-0.07105914,-0.5592748,0.4052323,0.25467494,0.03777332,-0.13754044,-0.6177708,-0.2128243,0.33300534,-0.3943418,-0.15503149,-0.25854766,0.05527232,0.5715926,-0.1967496,-0.34105858,0.037506722,0.29325977,-0.18617767,-0.6352075,0.070996374,-0.46264973,0.29187316,0.13031644,-0.2801833,-0.29191875,-0.016541522,-0.4925579,0.15315291,0.35616115,-0.32759652,-0.004547191,-0.42189312,-0.16294406,0.9301117,-0.276521,0.20996337,-0.45862094,-0.47397438,-0.7783136,-0.2987391,0.21075013,0.27477086,-0.019663302,-0.7744001,-0.047428664,-0.16955954,-0.38766772,-0.06825711,-0.2689365,0.39595497,0.056644235,0.3795716,-0.10057692,-0.8918037,0.1980513,0.06339217,-0.19782512,-0.49892077,0.4322452,0.079017624,0.8769404,0.05309499,0.16864702,0.3443044,-0.51382583,-0.12349081,-0.1534524,-0.11472774,-0.5959007,0.046753414,560 -238,0.35435542,-0.1462607,-0.45163387,-0.24254361,-0.5028902,0.1704154,-0.23484713,0.05119779,0.31342506,-0.34420618,0.13936171,-0.15484504,-0.24674334,0.2515337,-0.23536427,-0.70520216,0.07085291,-0.124779984,-0.5068377,0.4510277,-0.48763162,0.43153873,0.068298,0.25690812,-0.030120404,0.33287093,0.33048448,0.14773805,-0.0647446,-0.062088497,-0.06850605,0.34470317,-0.72574335,0.34789357,-0.0064169886,-0.30244386,-0.09493359,-0.22951081,-0.0688245,-0.7100759,0.31349525,-0.7881526,0.5208934,-0.16395801,-0.49100736,0.0632316,0.15120967,0.123247415,-0.271555,0.13205777,0.22820117,-0.29315045,-0.07179305,-0.11904163,-0.30414996,-0.761979,-0.5985184,0.012200324,-0.82044214,-0.31732187,-0.39114323,0.38246298,-0.2661902,-0.10432815,-0.12505351,0.4280772,-0.4124463,-0.28480536,0.17450692,-0.30905762,0.15333249,-0.6395538,-0.28354925,-0.06489451,-0.0021592935,0.14583606,-0.20785104,0.30370578,0.38363138,0.47833213,0.25191584,-0.32532686,-0.19085118,-0.081466086,0.020116825,0.39058086,-0.14649002,-0.07639435,-0.30768272,-0.14798781,0.4455324,0.2564912,0.3074102,-0.34008962,-0.01830007,0.17294559,-0.29387322,0.39053348,0.43531215,-0.50862145,-0.00021384557,0.5031102,0.3576829,-0.10315771,-0.2873769,0.3510642,-0.1336216,-0.51838356,-0.049006727,0.21390297,0.10577204,0.5110592,-0.2612847,0.14922021,0.9501125,-0.13907222,0.042871952,0.030096408,-0.08819164,0.001647532,-0.22955424,0.03947406,0.04964378,-0.41264036,0.009911886,-0.23248713,0.70570433,-0.124049865,-0.8227518,0.26532713,-0.25151762,0.09224413,-0.11445982,0.7770021,0.8657124,0.48407573,0.14172636,1.0142857,-0.4507136,0.011004941,-0.02147088,-0.27193478,0.18936706,-0.31189153,0.15562251,-0.53637683,0.15915601,0.033807453,-0.08704905,-0.087087184,0.52377164,-0.44807854,-0.06660952,0.09560533,0.69385445,-0.36985224,-0.081272475,0.8869465,1.0467454,0.92434627,0.18070559,0.98814785,0.33985174,-0.081563,-0.029045796,-0.23565468,-0.36061546,0.13024937,0.41872284,0.6799294,0.32299826,0.00398312,0.10682622,0.52270484,-0.15324678,-0.097182594,-0.07527276,0.49267244,0.105380274,-0.19805814,-0.3721572,-0.13526647,0.34896797,0.081834085,-0.011946333,0.20965144,-0.12497715,0.58032995,0.046444193,1.0396222,-0.08563482,0.028965004,-0.029633407,0.41775644,0.22547366,-0.20861006,0.18359917,0.30960616,0.14848259,-0.020685066,-0.31482193,-0.043042026,-0.17384084,-0.57952225,-0.21748003,-0.43135512,-0.14506228,-0.23065631,-0.5145521,-0.30803725,0.06980114,-0.33253917,0.34835613,-2.6163538,-0.14616285,-0.31917545,0.2551576,-0.16023134,-0.30073547,-0.0547181,-0.32324252,0.265212,0.53221005,0.19879174,-0.5358828,0.42254302,0.42249578,-0.3536251,-0.11627956,-0.6249531,0.036737658,-0.19057992,0.5823335,0.020898392,-0.26643416,-0.28505573,0.2545582,0.7784961,0.082823925,0.13836078,0.1999341,0.42158312,-0.17884605,0.43068016,0.3062678,0.5310557,-0.07610122,-0.19932428,0.25990337,-0.54770285,0.2036417,0.15903144,0.23740667,0.5434534,-0.25886124,-0.80597293,-0.6379057,-0.24025042,1.2399695,-0.33397147,-0.60526574,0.41199186,0.0033650736,-0.22597663,0.15489633,0.45520878,-0.0559214,0.26189873,-0.6433791,0.0625219,-0.101327136,0.14884223,-0.16093054,0.03771458,-0.35075542,0.8266652,-0.17189468,0.5283663,0.21552172,0.25524816,-0.3973266,-0.39117908,-0.03570768,0.9960617,0.4923585,-0.038607527,0.010000661,-0.36430404,-0.06742151,-0.377831,0.24092102,0.5311903,0.63210195,0.10349788,0.117117316,0.43094525,-0.34976822,0.053193223,-0.09550622,-0.23179549,-0.06440564,0.24772255,0.49318582,0.46384463,0.0057844897,0.4491561,-0.07744698,0.28561988,-0.13671932,-0.61308473,0.34093413,0.7187309,-0.12554666,-0.33441156,0.5326583,0.42877325,-0.39164612,0.38297474,-0.53544223,-0.2805161,0.59465104,-0.024169782,-0.50326955,-0.05231948,-0.54621035,0.1501054,-0.9065393,0.3576623,0.008505607,-0.7318884,-0.60827154,-0.26447934,-3.6557648,0.0042307614,-0.203335,-0.061694372,-0.20265464,-0.33637774,0.42783433,-0.5717858,-0.53427875,-0.024519157,0.015307239,0.44785497,-0.008672926,0.055893794,-0.29866266,-0.16914211,-0.18138024,0.42065084,-0.09288413,0.28311664,-0.035729457,-0.23835881,0.23443724,-0.39188388,-0.60479325,-0.13298078,-0.7087609,-0.6987389,-0.22645052,-0.4280306,-0.26400116,0.8114517,-0.2810863,-0.06429257,-0.3663797,0.03685314,-0.10443991,0.18794788,0.26635718,0.25617695,0.13888513,-0.04041406,-0.16001266,-0.4111746,0.123888575,-0.11158633,0.33239728,0.46791974,-0.2537554,0.27769554,0.6221929,0.57060444,-0.1114785,0.72368395,0.043246053,-0.24006936,0.31810838,-0.17614494,-0.2549251,-0.9378487,-0.5304355,-0.044132028,-0.4133364,-0.26884282,-0.019708999,-0.3252761,-0.7243467,0.53925127,0.12742145,0.2604564,-0.2836989,0.2984767,0.35437763,-0.08291393,-0.085580096,-0.07549377,-0.2988538,-0.56168216,-0.4125387,-0.7697381,-0.7058314,0.13358083,1.1993835,-0.11297125,-0.2542866,0.14168753,-0.22849773,0.0609811,0.09030754,0.20803656,-0.07055274,0.20222838,-0.020573227,-0.80884856,0.4285675,-0.1869952,0.15112057,-0.5324621,0.10937419,0.5174893,-0.5726724,0.52521724,0.39091483,0.37677708,-0.010665706,-0.6452283,-0.2779685,0.08255081,-0.2542702,0.7046677,0.22154528,-0.6561582,0.548758,0.24628364,-0.15655854,-0.4721011,0.38050044,-0.16699073,0.010790697,0.08768614,0.4488898,0.09893182,-0.16375871,-0.2602853,0.23077658,-0.6874902,0.29297146,0.40607494,0.07155673,0.58824176,-0.04075802,-0.428844,-0.4827741,-0.22451633,-0.4936901,-0.22202441,-0.12755989,-0.21936753,0.011237814,0.26822436,-0.10378289,0.5062012,-0.22861893,0.15184374,-0.14023033,-0.22248815,0.4508561,0.6476728,0.38706318,-0.4536084,0.6171927,0.2045383,0.069433816,-0.33479887,0.05933113,0.47794956,0.3029272,0.3728652,-0.04437103,-0.012385893,0.14469393,0.6993711,0.1718801,0.50607324,0.092135735,-0.30546817,0.280742,0.029445698,0.21709763,-0.075369,-0.40346375,0.04320952,-0.07122061,0.15175001,0.32805336,0.12375314,0.4529499,0.04455786,-0.049058355,0.19897255,0.07923562,-0.08167546,-1.0960622,0.23632114,0.42243257,0.6328765,0.4536108,0.011854249,-0.095229074,0.6458395,-0.3213357,-0.012727507,0.2951911,0.04279786,-0.23525839,0.5671622,-0.67018324,0.3141064,-0.21484843,0.008664075,-0.01882404,0.21404448,0.34488487,0.82464314,-0.1136591,0.025876194,-0.069897525,-0.39960945,0.23627977,-0.22518164,0.15348862,-0.27662787,-0.4106323,0.4071914,0.3115521,0.37684673,-0.23540117,-0.12783183,0.20375344,-0.17926897,0.17841448,-0.1733902,-0.16131729,-0.14685781,-0.3721415,-0.38497165,0.53441197,0.033020787,0.109948955,0.10115156,-0.38432404,0.2936734,0.012923128,-0.17166023,0.025710799,-0.38292426,0.14747518,-0.27133605,-0.61219275,0.37577575,-0.40039566,0.1164531,0.22592543,-0.018486502,-0.29978856,-0.08643694,0.22464786,0.69500506,0.021354247,-0.25798884,-0.25219283,-0.18285333,0.21038131,-0.41062313,0.015493075,-0.218188,0.3033206,-0.5664767,0.39699242,-0.39528382,-0.44800264,-0.0072102766,-0.26108572,-0.029799158,0.24839993,-0.36296698,-0.1253315,0.2451051,0.2245222,-0.18828864,-0.087755635,-0.38087958,0.38935086,-0.21620117,0.011342022,0.074053034,-0.14061484,0.031565916,0.47923133,0.023518134,0.09928955,0.20943291,-0.21128944,-0.50517017,0.0032942852,-0.07888683,0.42998883,0.044564597,-0.01494506,-0.12707566,-0.32154274,-0.4008213,0.22281784,-0.08164136,0.24586128,0.14698394,-0.5783966,0.9462674,0.09828379,1.2838274,-0.017935833,-0.49567014,0.0346806,0.56045943,0.096081115,0.26283208,-0.13359462,0.9379114,0.6808201,-0.27916196,-0.020026127,-0.64912224,-0.17179747,0.34065145,-0.34974608,-0.22306643,-0.1817498,-0.7797735,-0.23464803,0.11458915,0.22234073,0.021148456,-0.056920603,0.0055683134,0.09153171,0.1576931,0.39803684,-0.56940514,0.058823235,0.33088204,0.16635567,-0.038078804,0.11037924,-0.397844,0.40941617,-0.7764844,0.30946797,-0.3024572,0.16291536,-0.08399442,-0.21881549,0.30127624,-0.024011532,0.3378027,-0.22232369,-0.4434493,-0.2130064,0.6582862,0.20058504,0.30660802,0.7161846,-0.3478241,0.014593633,0.058280326,0.5474024,1.504583,0.08388853,0.09936838,0.13709322,-0.36106578,-0.6655074,0.2124055,-0.3733775,0.034640465,-0.098616436,-0.54820645,-0.25920194,0.3337444,0.29842046,-0.045849785,0.13907671,-0.37084305,-0.22060725,0.32392475,-0.37267387,-0.13422565,-0.22944044,0.2886752,0.56608796,-0.39307663,-0.2261684,-0.09877264,0.4890838,-0.3637196,-0.6646551,0.066764735,-0.106784925,0.5630525,0.053142134,-0.49939862,-0.07075324,0.23094505,-0.35744056,0.21609946,0.4291816,-0.28641197,0.1549553,-0.33589298,0.081567176,0.83239996,0.2024588,0.26156673,-0.7969281,-0.55648816,-0.9588612,-0.41025537,0.044505335,0.22099079,-0.13874534,-0.58663946,-0.17743091,-0.29949224,0.14043556,0.25126943,-0.6423988,0.42381725,0.030921,0.5478589,-0.12010103,-0.8214352,0.063290246,0.23797123,0.026705258,-0.363597,0.5920423,-0.19166085,0.7702138,0.1942907,0.10935552,-0.06761069,-0.5962745,0.50509155,-0.26001012,-0.14831024,-0.63575476,0.010188254,566 -239,0.3641321,-0.3285671,-0.35682657,-0.21263316,-0.5039266,0.05022504,-0.21996902,0.18514076,0.26444852,-0.36629567,-0.13569121,-0.09672479,-0.008604686,0.21889101,-0.12611692,-0.5200489,-0.04627991,0.1461642,-0.7488537,0.7993514,-0.3393734,0.37211215,0.11768467,0.2611485,0.14068036,0.41942436,0.37991142,-0.10097677,-0.16394208,-0.21952356,-0.27672774,0.0012908935,-0.6496217,0.20861267,-0.3169335,-0.2122912,0.07512303,-0.47120172,-0.28861713,-0.8804579,0.21166022,-1.0203367,0.48197386,-0.1934226,-0.13656689,-0.21963324,0.35533407,0.34371504,-0.322828,0.058267854,0.30499068,-0.34520617,-0.122949675,-0.3445749,-0.02572898,-0.42291513,-0.45129016,-0.22761402,-0.626691,-0.3434494,-0.19386178,0.27435032,-0.30410698,-0.042659897,-0.17313436,0.5237314,-0.37489325,0.11976406,0.24313325,-0.34343496,0.12532593,-0.62180007,-0.04355411,-0.15605496,0.40569314,0.1269729,-0.09002589,0.6041773,0.31160393,0.33645666,0.3107978,-0.4197004,-0.22129837,-0.36225006,0.21389112,0.42544323,0.034250334,-0.3982314,-0.15853831,-0.045161773,0.40464917,0.30201992,0.12425981,-0.30565968,0.0062713763,-0.10413166,-0.15885516,0.7144512,0.5122957,-0.107031696,-0.12537524,0.30673105,0.49659303,0.13953774,-0.44811118,-0.064401165,-0.027559854,-0.48751697,-0.15469994,0.1762635,-0.13208738,0.60697234,-0.19877511,-0.009872913,0.8507101,-0.14994155,0.036003835,-0.004506453,0.090918384,-0.07631996,-0.291083,-0.20668949,0.31135547,-0.60938513,-0.03079561,-0.41854763,0.6501118,0.21346189,-0.6494017,0.3872102,-0.47537115,0.18890275,0.013193854,0.577453,0.62254936,0.47652712,0.30449554,0.9363898,-0.24153806,0.18250212,0.1566568,-0.38840657,-0.03957881,-0.4954738,0.26809624,-0.48336825,0.23397227,-0.16260144,0.14380446,-0.13474597,0.22964549,-0.48244056,-0.21609767,0.22295992,0.9772962,-0.1919055,0.0041131377,0.64507604,1.0511853,1.0466714,-0.038626824,1.2999233,0.17570136,-0.3440141,-0.089428745,-0.16935296,-0.7080832,0.13977721,0.32438743,0.25779477,0.22792374,-0.036752183,0.02129347,0.20566836,-0.61507,0.062568694,0.042220403,0.3746187,0.26505348,-0.03684734,-0.36996228,-0.08680533,-0.10754511,-0.035973463,0.23144293,0.18715003,-0.21846946,0.36841002,0.04363124,1.2290133,-0.014793754,0.041388948,0.08726541,0.6471624,0.29543063,0.08855548,0.1532031,0.48011068,0.26714382,-0.031894207,-0.5222762,0.22694871,-0.53883725,-0.30670747,-0.19927764,-0.4251871,-0.12112724,0.2075066,-0.29730108,-0.36888617,-0.002911369,-0.22615772,0.32663617,-2.6676803,-0.14813347,-0.26315132,0.36988193,-0.29601014,-0.04066263,-0.03505075,-0.6621048,0.2418177,0.19527674,0.52976125,-0.7751942,0.3319262,0.66953063,-0.5854046,-0.18231644,-0.64647686,-0.11365585,-0.05224856,0.69378203,0.08941492,-0.048905145,-0.042408943,0.10947279,0.7128298,0.26133016,0.20471615,0.5783303,0.38802597,0.03166808,0.5696246,0.07106163,0.52944064,-0.28222275,-0.04509231,0.36696878,-0.39727613,0.25862065,-0.18762103,-0.025692936,0.7306542,-0.38045043,-0.5335823,-0.6413263,-0.17223097,0.9341436,-0.35637024,-0.7125582,0.19681492,-0.1074732,-0.045744386,0.04648535,0.5575601,-0.11538657,0.21427733,-0.5537389,0.012985389,-0.11662857,0.23415309,0.07248449,-0.11941208,-0.27558726,0.90596163,0.09632568,0.5719964,0.17239004,0.23731305,-0.28984383,-0.36236274,0.091282286,0.80400026,0.532253,0.053832103,-0.1314494,-0.060227867,-0.1603299,-0.6037113,-0.07855738,0.7606438,0.6574279,-0.19284527,0.19938287,0.46425906,-0.11425508,0.10297977,-0.0802101,-0.3493698,-0.13990904,0.078597315,0.44776458,0.7679093,-0.14643103,0.37535134,-0.12077667,0.26754874,-0.0011869312,-0.6499405,0.6591117,0.7614895,-0.24260622,0.052153196,0.41364032,0.47709498,-0.63690734,0.5333834,-0.68900084,-0.30243582,0.75456804,-0.14237432,-0.59990335,-0.0022268295,-0.23628874,0.20958205,-0.58349407,0.341005,-0.2811488,-0.3756922,-0.38416356,-0.3397959,-1.9740218,0.03674039,-0.20477623,-0.04734815,-0.4396884,-0.020685546,0.11182441,-0.52566606,-0.51191825,0.18888174,0.13240515,0.50352967,-0.115604326,0.272895,-0.34336546,-0.09339151,-0.22667769,0.37346885,-0.04863662,0.31177744,-0.2820482,-0.40082836,0.0029091756,0.006413386,-0.52855927,0.17256495,-0.5658705,-0.3824298,-0.19083725,-0.5747724,-0.3083354,0.7040043,-0.26144922,0.02001127,-0.16400975,0.09503756,-0.19429448,0.053570922,0.19160758,0.31777972,0.15601581,-0.0641595,0.19743271,-0.303302,0.6114956,0.0044459878,0.48656806,0.15508038,0.034557827,0.1500268,0.35429573,0.62498194,-0.20000006,1.0000417,0.2172888,-0.14128007,0.38200328,-0.18481693,-0.38311478,-0.6517994,-0.30580223,0.04467637,-0.37471676,-0.4332328,0.21283515,-0.33226985,-0.8099347,0.54243886,0.09684706,0.46002865,0.05551302,0.12002659,0.3742269,-0.25325832,0.04144834,-0.014346933,-0.09018274,-0.70005155,-0.31235087,-0.7861122,-0.44724306,0.07536242,0.65593916,-0.34037545,-0.27736828,0.011013743,-0.39981797,0.025877276,0.20241846,0.09239651,0.0946454,0.5318432,0.1325818,-0.74803466,0.42044842,0.02710503,-0.020003073,-0.44123694,0.30898598,0.5802061,-0.7776014,0.5783506,0.33160874,-0.038559604,-0.38255522,-0.46196187,-0.31160408,-0.18176833,-0.16323169,0.4674209,0.04368053,-0.7625694,0.41098925,0.0017051081,-0.61776066,-0.6806218,0.33433536,-0.13004467,-0.22074638,-0.09519466,0.38357636,0.172194,-0.2009775,-0.17208077,0.13924882,-0.5781222,0.29805005,0.18725868,-0.06119453,0.47908038,0.034669578,-0.43830553,-0.771079,0.1520669,-0.5614123,-0.29389983,0.3786644,-0.12740763,-0.2676845,0.27597985,0.21984059,0.3381454,-0.1243494,0.21209428,0.044690423,-0.37517598,0.46842286,0.37180784,0.35760215,-0.49435076,0.70479834,0.13314925,-0.20314242,0.13508174,0.07974544,0.27709243,0.16146736,0.5181093,0.040147346,0.02894694,0.2653887,0.72946984,0.28287944,0.51233375,0.15317671,-0.13257648,0.500842,-0.102383375,0.24087909,-0.060525376,-0.6623304,-0.028768318,-0.07094992,0.051225565,0.46735352,0.25855598,0.4986534,0.16856454,-0.059423678,-0.0004626145,0.19051288,-0.23637499,-1.3739879,0.2284677,0.32069397,0.9973787,0.33196065,-0.049310006,-0.17287436,0.8621825,-0.22764848,0.16295208,0.6041407,0.004271587,-0.4403295,0.69718134,-0.49203044,0.43093884,-0.15384261,-0.016192315,0.14942776,0.31786874,0.28858602,0.6303491,-0.32771423,-0.019255666,-0.04481964,-0.3412935,0.050742574,-0.27499375,0.09402681,-0.2731863,-0.49049565,0.47584993,0.40274462,0.33976144,-0.27611035,-0.008416953,0.07019319,-0.18236771,0.33157927,-0.06355398,-0.078546844,0.068328135,-0.3706499,-0.1039175,0.56332743,-0.33152974,0.024584595,-0.1677683,-0.11457889,0.039635357,-0.16983004,-0.031425767,-0.029094284,-0.81819916,0.18888727,0.027628891,-0.608297,0.5614644,-0.10793498,0.017259272,0.17907038,-0.07306447,-0.12158,0.27252772,0.17530109,0.6321194,-0.12959339,-0.27945554,-0.4240147,-0.0094324825,0.13065542,-0.23581006,0.47810397,-0.24746062,0.0055268924,-0.52827483,0.74424005,-0.28806433,-0.34656104,0.068133384,-0.3933448,-0.1415426,0.56365114,-0.0218809,-0.15521407,0.10802335,-0.030878386,-0.26023924,-0.087768316,-0.2672923,0.22262529,0.25226477,0.004317244,-0.26674047,-0.21488495,-0.07943072,0.4231449,-0.16733544,0.28155598,0.0683637,-0.14984967,-0.42000538,0.070972696,0.22804554,0.54492706,0.12941407,0.13875593,-0.14168479,-0.302069,-0.414793,0.31620863,-0.12763375,0.21572362,0.12940264,-0.37185585,0.94383174,0.0021973252,1.3164895,0.020028802,-0.46469143,0.10251974,0.6622167,-0.050942913,0.09733684,-0.39706612,0.9020149,0.51260227,-0.030256204,0.028058134,-0.63954365,0.1721451,0.3558018,-0.2669862,-0.050660912,0.041408118,-0.52038336,-0.42948034,0.18728583,0.1556042,0.031761114,-0.09213452,-0.1371996,0.1786526,0.23627666,0.39874384,-0.66385466,-0.24208961,0.2065316,-0.0010568897,-0.01742882,0.2126641,-0.34200695,0.37667438,-0.68686223,0.19005574,-0.3452926,0.090514965,-0.3473204,-0.3167935,0.10449055,-0.038559176,0.41843495,-0.45838922,-0.5493399,-0.17848697,0.49592808,0.020135792,0.23118702,0.61227334,-0.25584498,0.094325766,0.12445645,0.5194317,1.2596889,-0.35903865,-0.0075487616,0.21676204,-0.6154334,-0.73728526,0.43793997,-0.26675007,-0.030551014,-0.034832932,-0.46771476,-0.5590524,0.13472089,0.035796497,0.0061530173,0.08754317,-0.7119642,-0.29482454,0.2331019,-0.40177876,-0.20604853,-0.28260693,0.3319538,0.6489395,-0.14532205,-0.40472013,0.007869756,0.2993811,-0.29238066,-0.59241366,-0.10279522,-0.2282471,0.3379036,0.09504031,-0.17836891,-0.07436594,0.23019193,-0.5920989,0.19385347,0.18102527,-0.5105027,0.059882306,-0.10584095,0.006713335,0.7910615,-0.108235255,-0.08666917,-0.589751,-0.52667385,-0.80214906,-0.42225644,0.14461002,0.10310993,0.05074548,-0.5001203,-0.17029883,-0.24376345,-0.071851835,-0.017451946,-0.70412236,0.35420173,0.12141626,0.4917303,-0.34697464,-1.017238,-0.0041816873,0.12867244,0.06958206,-0.63441736,0.4692049,-0.090555295,0.85463446,0.1541002,-0.23027416,0.0011676193,-0.42285055,0.115395114,-0.32610196,-0.35037878,-0.51081157,0.19651002,567 -240,0.5006606,-0.25961414,-0.5240752,-0.056626327,-0.23433152,0.15749949,-0.107389465,0.6796223,0.2761033,-0.32230985,0.077705465,0.024711637,0.09817162,0.31645557,-0.0028074423,-0.44939473,-0.06979203,0.22158486,-0.6071957,0.6022241,-0.40353385,0.18486646,-0.35847643,0.4884574,0.12831527,0.21206091,-0.25012463,0.062248126,-0.27246696,0.03200829,0.006370461,0.44860554,-0.4659213,0.057360865,-0.16926602,-0.22064021,-0.17838502,-0.5247781,-0.4442753,-0.6595623,0.32888243,-0.67794174,0.7379744,0.010212461,-0.28369018,0.34059417,0.024101803,0.37370238,-0.30116877,0.014605761,0.048122283,0.07170975,0.001727581,-0.33934155,-0.37301296,-0.41046843,-0.5867977,0.025302999,-0.48452613,-0.03152045,-0.09183402,0.07221315,-0.25324437,-0.0731518,-0.020882536,0.36442864,-0.3853302,0.275889,0.18899213,0.009985507,0.05062515,-0.41426745,-0.18899727,-0.06760672,0.33191568,-0.14953996,-0.27136087,0.24829264,0.17459822,0.46135673,-0.18061294,-0.08807078,-0.43210283,0.026734918,0.020104464,0.5183916,-0.21904193,-0.57348055,-0.16134477,0.1788752,0.14990336,0.12609433,0.30491808,-0.13267614,-0.15537545,-0.1037017,-0.05747788,0.559192,0.45023003,-0.21258894,-0.40366426,0.34960416,0.5362339,0.21432127,-0.19379999,0.0048309355,-0.02588975,-0.5001625,-0.14212903,0.08007899,-0.045754734,0.3716877,-0.041058324,0.12714086,0.51770806,-0.23018363,-0.11648313,0.09850369,0.016128344,0.082224704,-0.26848486,-0.3185573,0.13317086,-0.32326335,0.11373464,-0.08561468,0.38108188,0.28641257,-0.7807414,0.39748433,-0.605478,0.13223317,-0.07848992,0.2751975,0.71447194,0.54763734,0.08714008,0.47226098,-0.17171358,0.16581678,-0.105687335,-0.2175849,0.11738633,-0.22497813,-0.02960213,-0.5881624,0.13135825,-0.0082943,-0.34094125,0.23864196,0.38407034,-0.47265425,-0.15765801,0.2699614,0.8988931,-0.18254974,-0.18552177,0.83494085,0.9405527,0.7618702,-0.0223927,1.13966,0.11838944,-0.15699619,0.32784075,-0.50359327,-0.759417,0.21817048,0.25201884,-0.36197954,0.43442598,0.08993748,-0.08692812,0.27303174,-0.16524991,0.0029353618,-0.03447945,0.15249167,0.11322458,-0.28985348,-0.30574715,-0.2711893,-0.22658665,-0.031031013,0.21883895,0.3406152,-0.3171756,0.36174324,-0.044257026,1.6852793,0.13892668,0.033017,-0.0025770883,0.5918613,0.26960513,-0.20462093,-0.10021695,0.43492883,0.27669558,0.06229322,-0.47039464,0.16745311,-0.1885887,-0.3535352,-0.18149312,-0.3326316,-0.14778668,-0.045990277,-0.47009456,-0.1369348,-0.19183418,-0.124876045,0.48488668,-2.9932106,-0.21770564,0.11415353,0.4576374,-0.2664091,-0.34840363,-0.29201716,-0.27986696,0.3339721,0.21414056,0.52632403,-0.64827514,0.54784936,0.26283824,-0.6501302,-0.09023798,-0.52433604,-0.20719984,0.048019424,0.29959196,-0.23414065,0.071697995,0.24386056,0.14745475,0.42466772,-0.10601049,0.003981911,0.13409534,0.46044606,-0.026745152,0.32090428,-0.2025437,0.5570109,-0.22982503,-0.25449207,0.23189951,-0.38788784,0.3506969,0.0890974,0.014797565,0.45823115,-0.53358525,-0.9977098,-0.5573134,0.17783774,0.8854498,-0.05269508,-0.19004603,0.15673354,-0.6958836,-0.3959988,-0.13521235,0.39615032,0.04306459,-0.14995058,-0.7254612,-0.10892328,-0.027114134,0.16807798,-0.03330284,0.005041945,-0.40127698,0.5003588,0.06640768,0.53576595,0.17615816,0.20143972,-0.33101988,-0.40625748,0.041447315,0.6758836,0.30348113,0.24097122,-0.17613868,-0.3224393,-0.42562836,0.06644392,0.041639652,0.5472773,0.34725094,-0.12228368,0.121573366,0.23037656,-0.11299963,0.18714698,-0.21469888,-0.13464335,-0.16178958,0.13369684,0.41943353,0.6123227,-0.32495376,0.6197213,0.08275963,0.1879388,-0.106572844,-0.47725347,0.46277714,0.94941366,-0.21262957,-0.36041343,0.46901718,0.3456403,-0.38110998,0.3757365,-0.3953397,-0.12101404,0.3613158,-0.25539103,-0.19125421,0.37225267,-0.26089296,0.12946406,-0.93927777,0.11267917,-0.36253643,-0.40589502,-0.45467994,-0.021824146,-2.881691,0.11747139,-0.13827486,-0.25139967,-0.041377697,-0.17657147,-0.00942719,-0.5855881,-0.6216715,0.20597032,0.1097881,0.63895303,-0.23816517,0.09324622,-0.21373224,-0.47588578,-0.3162769,0.18179348,0.12944838,0.45536867,-0.09721026,-0.40233144,-0.21065302,-0.04917985,-0.32074106,0.11341592,-0.6699475,-0.29016453,-0.00784614,-0.6000897,-0.10036565,0.6691532,-0.105919704,-0.09703148,-0.2743403,0.07802331,0.0013272663,0.36150363,0.034150913,0.083680466,0.17147468,-0.17183848,0.26619974,-0.21967635,0.31599486,0.007199474,0.40324834,0.27102646,-0.115931034,0.2697263,0.5047473,0.6958299,-0.21672513,0.7171003,0.476488,-0.16286659,0.39438412,-0.36606655,-0.18167333,-0.28905922,-0.2225805,-0.04459794,-0.37128833,-0.48038217,-0.16780567,-0.5076272,-0.75458807,0.33025983,-0.09366167,0.023705535,0.027919639,0.3997172,0.56078184,-0.16036221,0.120933644,-0.15975904,-0.096089505,-0.4496151,-0.1973864,-0.3625758,-0.39527225,0.28773022,1.0650331,-0.24241509,0.059833124,0.011020255,-0.24941495,-0.012974804,0.22405796,0.0013275543,0.21671699,0.4558635,-0.22600624,-0.46066505,0.28452492,-0.23359694,-0.27408168,-0.57632995,0.2247288,0.4377044,-0.5344559,0.7446907,0.14432955,-0.01586655,-0.15396217,-0.50087935,-0.07000611,0.10275326,-0.048697527,0.38434836,0.2903757,-0.8325312,0.3441344,0.3700574,-0.3613144,-0.53553325,0.5191575,-0.038724996,-0.29703405,-0.23701124,0.24213105,0.19149654,0.006472103,-0.28358445,0.31035408,-0.44200188,0.20281066,0.14503196,-0.0352662,0.11064932,-0.07934506,-0.0836021,-0.698403,0.11373178,-0.42137825,-0.29710862,0.38723361,0.16011125,0.3905789,0.022041567,0.17584206,0.3335109,-0.3821382,0.09777422,-0.14345774,-0.28504127,0.24308306,0.29839668,0.4841814,-0.41993657,0.45284763,-0.030481331,-0.21672124,0.19312605,0.11402374,0.56348723,0.06502745,0.3065399,0.1933266,-0.21847717,0.19532868,0.74456954,0.11755524,0.2502471,0.04999138,-0.13125639,0.14247578,0.051033672,0.06766767,-0.03178037,-0.40338343,-0.014801939,-0.053909462,0.21975794,0.48925215,0.20586497,0.08564221,-0.11156736,-0.33113077,-0.099793464,0.29460236,0.11602401,-1.2505143,0.15403825,0.27745456,0.9055178,0.28729236,0.2304533,0.028198648,0.60363764,-0.15105598,0.111420855,0.40327775,-0.10117383,-0.5309659,0.42336363,-0.6001348,0.5946718,0.018664801,-0.019376997,0.08499145,-0.06255037,0.5766258,0.78902835,-0.21294431,0.06484076,0.21463113,-0.31612253,-0.034135077,-0.31252104,-0.050138894,-0.61532396,-0.09340311,0.6873812,0.5097269,0.33836433,-0.27588713,0.011802284,0.17632367,-0.05536023,0.044506624,0.028396158,0.22568849,-0.09133125,-0.6307638,-0.0609621,0.48000768,-0.21489027,0.13400745,0.085080214,-0.2015963,0.30259565,-0.13450035,-0.0023644646,-0.09672858,-0.62706757,-0.044764794,-0.27712855,-0.4460399,0.5988179,0.100126125,0.20892903,0.27484226,0.14594612,-0.23770376,0.6165127,-0.08469663,0.88898945,-0.07180524,-0.11570468,-0.3977752,0.33062333,0.116472326,-0.17170094,-0.008474678,-0.1926515,0.07927586,-0.5268002,0.4020127,-0.010655775,-0.33474118,-0.2166804,0.13355793,0.24224092,0.49837196,-0.19657736,-0.08606003,-0.14189714,-0.09766543,-0.4450623,-0.23571996,-0.12645449,0.23915638,0.38606843,-0.08776864,-0.12913801,-0.08735583,0.035305507,0.48553407,0.01000617,0.41024116,0.33162048,0.308051,-0.12800014,-0.18848723,0.2651948,0.48533854,-0.19617991,-0.040594485,-0.39145535,-0.29511163,-0.37435958,0.19790834,-0.14506763,0.20601068,0.08964939,-0.21925129,0.66884106,0.039346743,1.1467788,0.014751214,-0.32731897,0.32768723,0.5085181,0.0054034987,-0.08064154,-0.40227714,0.9443909,0.47154018,0.08359763,-0.08730695,-0.31955096,-0.08188731,0.044021018,-0.3027215,-0.15966898,-0.0016890158,-0.48766613,-0.2368173,0.22589056,0.108159386,0.383557,-0.14610118,0.22707288,0.26102468,0.029199414,-0.03703354,-0.3831485,-0.2384106,0.31446177,0.3457858,0.05467875,0.073525116,-0.5371855,0.23204233,-0.32044092,0.0348113,-0.08135283,0.18131629,-0.074691296,-0.40056127,0.1660385,0.06821055,0.16205388,-0.33554265,-0.31867948,-0.2449232,0.46390757,0.04272323,0.16960287,0.48622614,-0.23362605,0.035530843,0.016385874,0.43245298,0.7750298,-0.072004944,-0.19903533,0.35299334,-0.36198565,-0.71535516,0.37633342,-0.29422575,0.38167953,-0.0073692403,-0.024767602,-0.6930942,0.3670459,0.1249996,0.15696642,-0.14456578,-0.51286757,-0.2172031,0.21933335,-0.3036217,-0.19803722,-0.34388515,0.06950227,0.7523178,-0.1282812,-0.36704937,0.23534168,0.1769794,-0.16810846,-0.41745955,0.013675002,-0.3205599,0.17698327,-0.048205253,-0.25704828,-0.18578409,0.0645942,-0.38622802,0.21242332,0.17765428,-0.3371642,0.18202646,-0.4497424,-0.17664744,0.9224277,-0.41920644,0.25366965,-0.42290586,-0.60232747,-0.77972263,-0.32997528,0.26155016,0.10651714,-0.004260143,-0.8536705,-0.026763098,0.027003828,-0.42732003,-0.065493815,-0.26454836,0.4166674,-0.013134926,0.12547265,-0.27394718,-0.74309707,0.12667139,0.16410327,-0.28424683,-0.70739245,0.45013174,0.029465223,1.0548929,0.124105774,0.20655139,0.4354268,-0.37501425,-0.2899537,-0.20021291,0.012329833,-0.46477515,0.02028904,570 -241,0.5224451,-0.047031958,-0.44421396,-0.1864995,-0.16978732,0.40513012,-0.25297838,0.26531568,0.028388454,-0.6132866,0.021265788,-0.17909281,0.011620011,0.3868324,-0.23113884,-0.36343488,0.17093176,0.08931694,-0.65100676,0.26999074,-0.5355743,0.32417393,0.15473114,0.3691081,0.0030104062,0.28307056,0.27861586,-0.25274804,-0.309902,-0.1929904,-0.06337869,0.17094643,-0.44290516,0.17167993,-0.08517329,-0.18684532,0.07068012,-0.49767333,-0.4405645,-0.58144164,0.17237854,-0.72366977,0.57776314,0.0011381785,-0.26175755,0.20831044,0.1623822,0.14700694,-0.2599726,0.20010398,0.2922535,-0.2915611,-0.14931077,-0.17291185,-0.25172666,-0.48389062,-0.5866512,-0.009603286,-0.47420415,-0.08415368,-0.30429772,0.21266463,-0.17532791,-0.10599982,0.015752135,0.38904244,-0.34066898,-0.013660725,0.12078652,-0.22658561,0.29765594,-0.40327626,-0.15440693,-0.07937584,0.33685315,-0.21985474,-0.09354218,0.2703946,0.33173898,0.6038457,-0.08439991,-0.15778227,-0.37691438,-0.027528524,0.09325544,0.6284865,-0.19854759,-0.33034265,-0.16150597,-0.18023223,0.25103733,0.1812467,0.043353695,-0.38340035,-0.14805248,-0.07644019,-0.21633889,0.262238,0.53808117,-0.34771279,-0.10380961,0.43853617,0.41887036,0.1029789,-0.034542013,0.054737933,-0.04003373,-0.63325447,-0.07932186,0.15609632,-0.16606222,0.5071785,-0.079555385,0.3083932,0.6646206,0.020251626,0.0641969,0.10865645,-0.038906164,0.060581706,0.050611265,-0.20160584,0.08768323,-0.38266832,0.020544343,-0.19688514,0.7070785,0.20960419,-0.836113,0.4247324,-0.3824136,0.0058583557,0.09118397,0.44062436,0.61594945,0.48082075,0.058703978,0.6740806,-0.62403065,0.047782738,-0.09702415,-0.19157773,0.1856001,-0.07522358,-0.05535758,-0.4339756,-0.06904725,0.12349219,-0.042152245,0.015815457,0.5499211,-0.48589858,-0.05833499,0.14502707,0.785004,-0.3897782,-0.102513045,0.5424384,0.9574438,0.87822837,0.18097457,1.2170523,0.19561863,-0.2469045,-0.0579171,-0.30198467,-0.7117303,0.37289292,0.34289125,-0.071920395,0.2140546,0.08383064,0.15390159,0.31916556,-0.40017202,0.030311614,-0.14804891,0.23391019,0.03296589,-0.10307236,-0.25475287,-0.36587796,0.11168361,-0.11418295,0.2383143,0.17375062,-0.28156045,0.39364627,0.061501287,1.6480045,-0.15638395,0.14553435,0.09268238,0.31750625,0.09758907,-0.061665963,-0.29900995,0.31870854,0.4176019,0.024966013,-0.38163444,0.057814598,-0.05390147,-0.44176954,-0.15007724,-0.28557584,-0.065802984,-0.13835853,-0.35940698,-0.2035223,0.062052887,-0.55754006,0.5370311,-2.7160466,0.003979687,-0.1687679,0.35352185,-0.2366176,-0.3337931,-0.26419055,-0.33217642,0.48763937,0.32474425,0.40330994,-0.52806515,0.24712548,0.5028074,-0.29459903,-0.2074798,-0.6639337,-0.09833144,-0.09973565,0.16436972,0.085565016,-0.22073063,-0.08909533,0.28355885,0.43180412,-0.0923529,0.05092508,0.24839242,0.34672794,0.18785079,0.553189,-0.031971682,0.5758975,-0.35658818,-0.19675128,0.41445905,-0.51204294,0.09471902,-0.0811731,0.18821338,0.30116174,-0.42541257,-0.87991357,-0.6123194,-0.21654627,1.1922917,-0.28781632,-0.3102872,0.26946113,-0.0848192,-0.32745373,0.0856652,0.47516373,-0.20205852,0.035482265,-0.8388599,-0.2289849,0.060812343,0.23787326,-0.05159596,0.14727163,-0.5578096,0.52156025,-0.09943889,0.52909094,0.26105767,0.19477554,-0.29448217,-0.4434986,0.032166917,1.0662419,0.25925806,0.17697135,-0.042115886,-0.20413612,-0.21178809,-0.11900077,0.09465538,0.47165993,0.6867829,0.07044759,0.13137487,0.2051389,-0.09639111,0.1340845,-0.10335101,-0.28746685,-0.07007933,-0.042818505,0.63216007,0.5238801,0.0614851,0.29503757,-0.18528071,0.41366416,-0.2857824,-0.41057727,0.54348207,0.6544597,-0.16819136,-0.22521444,0.55777895,0.40926445,-0.14366011,0.42181173,-0.6580868,-0.52189875,0.44410887,-0.15992025,-0.49776122,0.18964604,-0.3175656,0.22456887,-0.8838994,0.40704647,-0.19227982,-0.49588776,-0.37495145,-0.16125849,-3.2722707,-0.036334895,-0.11598958,-0.25774205,0.03006797,-0.10487337,0.25673607,-0.49146774,-0.53066516,0.010023328,-0.046419796,0.6222628,0.05933215,0.10701488,-0.25900927,-0.22922663,-0.37251198,0.16362496,0.09740921,0.37384102,0.112950474,-0.4253654,0.09406948,-0.37484044,-0.36860752,0.035145402,-0.5853288,-0.3839733,-0.17467766,-0.5087718,-0.38929388,0.67185825,-0.5627609,0.036861587,-0.28453013,-0.0046939086,-0.18148802,0.4743388,0.16107579,0.22101511,0.06394946,-0.1377921,-0.012342525,-0.2993536,0.39625087,0.15634796,0.0742983,0.4735195,-0.12748876,0.034327615,0.46572012,0.65863717,-0.17422631,0.7979795,0.3622036,-0.0005505463,0.2459167,-0.44230923,-0.24474801,-0.33952445,-0.35071835,0.14877467,-0.46182406,-0.33908427,-0.18050562,-0.38796934,-0.7882345,0.41945267,-0.017580334,-0.028620923,-0.094314665,0.06879738,0.25917363,-0.33860463,-0.12391424,-0.07358755,-0.17955235,-0.39328024,-0.23663655,-0.68226403,-0.4910415,0.03727142,1.0441136,-0.027919794,0.07958845,0.14618723,-0.21490759,0.15157877,0.01906387,0.027745305,0.120474555,0.41744772,-0.0040395022,-0.720064,0.44403797,-0.3156032,-0.15939471,-0.5421064,0.11107337,0.6605601,-0.6480845,0.5747563,0.4246529,0.19018348,-0.11767374,-0.57921976,-0.26572883,-0.04276758,-0.16648947,0.42921,0.03138961,-0.75989693,0.45208836,0.38857812,-0.32211092,-0.67728955,0.45445532,0.032440722,-0.18968712,0.19179344,0.42480087,-0.07945347,-0.042904545,-0.12985834,0.1275539,-0.545646,0.5073857,0.38082156,0.14237247,0.5255622,-0.29513696,-0.17724878,-0.6030971,-0.2498091,-0.35199413,-0.30634278,0.21285366,0.04219293,0.086547464,0.05698005,-0.012657539,0.4470596,-0.4281204,0.0846506,-0.06539377,-0.049985472,0.29366982,0.41605076,0.5465117,-0.38607958,0.51361483,0.013523049,0.014592187,-0.19985265,-0.004727801,0.45663765,0.16603893,0.23912263,-0.14974493,-0.23097645,0.35712808,0.76028264,0.19622664,0.27383164,0.13980666,-0.23620072,0.18074672,0.12670039,0.03501611,0.023573522,-0.41986927,-0.04988803,-0.20975567,0.2183244,0.386685,0.063050225,0.35297072,-0.096608,-0.22913978,0.06383018,0.1412859,-0.22556669,-1.2847666,0.38335133,0.097033866,0.73778504,0.35835323,0.115452655,0.0547543,0.68284744,-0.19790499,0.11704424,0.174903,-0.11855011,-0.4618103,0.52170527,-0.591325,0.45808688,-0.05553918,-0.04064334,0.052945904,-0.032376822,0.44124064,0.9416718,0.0045679966,0.19414479,0.030540466,-0.2137554,0.16339915,-0.41942933,0.12587492,-0.49740806,-0.21063732,0.6169039,0.33561373,0.47318015,-0.20665579,-0.013695671,0.043869212,-0.09706295,0.124671966,0.09940703,0.093587995,-0.06882987,-0.7309643,-0.2892603,0.49270904,0.25531587,0.055507954,0.28466704,-0.24917978,0.28637192,-0.30380905,0.02218558,-0.12097571,-0.5557481,-0.119919926,-0.35053444,-0.38292435,0.12589398,-0.16444975,0.20480485,0.23623861,0.0506639,-0.25028193,0.46678856,0.19996771,0.805632,0.09515565,-0.21533434,-0.30722836,0.1504527,0.23761554,-0.31048048,-0.036413774,-0.32528704,0.031163542,-0.5583528,0.32559842,-0.12380998,-0.25098905,0.22555071,-0.15430956,0.07092441,0.5856655,-0.1575366,-0.14127731,0.107841626,-0.048460793,-0.32708842,-0.015072337,-0.25862628,0.14941053,0.17110465,-0.05545714,-0.031271797,-0.030505124,-0.118965864,0.30146188,0.10038648,0.38776174,0.43447775,0.11243789,-0.37985098,-0.026614534,0.025919229,0.5777784,0.10058122,-0.07992576,-0.39853585,-0.44701046,-0.29683545,0.19213282,-0.23115657,0.19118781,0.13479419,-0.24744138,0.6927752,-0.09913506,0.9451109,0.14376312,-0.16706578,0.014996481,0.53268886,0.062238872,0.06580356,-0.4026175,0.92988235,0.48197392,-0.089588165,-0.015826812,-0.31009927,-0.126008,0.16182733,-0.3095075,-0.23278685,-0.1691873,-0.7166492,-0.25973746,0.25475928,0.14822143,0.15180111,-0.07681397,0.009576384,0.23309317,0.21551155,0.3269625,-0.50571305,0.054045167,0.37468037,0.27900952,0.031089,0.15073945,-0.4061847,0.33891147,-0.47134268,-0.10597244,-0.20573916,0.056514557,-0.13360725,-0.37211317,0.23999093,0.1231886,0.2947468,-0.32320487,-0.33022922,-0.09506545,0.51314056,0.24896431,0.31044436,0.6895101,-0.14125128,0.0075441045,0.11222887,0.48535258,0.98572904,-0.31221122,0.15886612,0.47857606,-0.2285202,-0.6043856,0.15767035,-0.40756765,0.17189075,-0.09216664,-0.3531311,-0.320107,0.2745458,0.13678065,0.049650054,0.065334894,-0.49611512,-0.18846492,0.41849905,-0.24836697,-0.35549667,-0.40737343,0.10331139,0.47841305,-0.29646155,-0.17352007,0.044528715,0.40157095,-0.28304335,-0.59928674,-0.054527353,-0.37392583,0.19241224,0.14824514,-0.38100052,-0.124549694,-0.07806506,-0.3777774,0.2377237,0.06993671,-0.39574626,-0.016292643,-0.31519505,-0.018305413,0.7961962,-0.08642362,0.08280401,-0.62380725,-0.4332067,-0.9953911,-0.16473958,0.42617878,0.07268967,-0.18072367,-0.46644458,-0.122220606,-0.06717821,0.06570373,0.04321674,-0.38549504,0.34508565,0.07358564,0.43591484,-0.07079722,-0.6632857,0.01995836,0.052818228,-0.26807708,-0.5253557,0.5958974,0.03175115,0.7309402,0.13431937,0.040322885,0.2548259,-0.6026603,0.13937096,-0.23028262,-0.05817449,-0.7062992,0.22257467,571 -242,0.30875695,-0.23732068,-0.5509156,0.020380475,-0.07775757,0.21573271,-0.16042471,0.2370437,0.33943087,-0.3140556,-0.2869775,-0.24967133,0.03108962,0.14938688,-0.12839308,-0.6080162,-0.039513987,0.3841324,-0.69723874,0.6247476,-0.20017453,0.38167328,0.16987307,0.28259277,-0.19308577,0.10899686,0.17674303,-0.19754337,-0.011069997,-0.1752719,0.033462103,0.16042128,-0.72617173,0.29803532,-0.55062807,-0.41371223,0.02395503,-0.41389358,-0.35791743,-0.8616202,0.31479168,-0.6057746,0.78389,0.2430554,-0.22076088,0.091235444,-0.059791572,0.35040754,-0.14591067,-0.021778408,0.19737607,-0.084534526,-0.19315046,-0.29950133,-0.10122065,-0.24640599,-0.5931551,0.17386627,-0.42783633,0.10735299,0.047664046,0.25248474,-0.09782236,0.15672965,-0.23033835,0.41490257,-0.4346089,0.12325244,0.31824362,-0.089824006,0.1259662,-0.55042994,-0.04118338,-0.07855174,0.341714,-0.2064736,-0.17626145,0.17746201,0.007232261,0.727817,-0.012938603,-0.2820123,-0.0062082605,0.10427625,-0.18095607,0.60239285,-0.16800708,-0.22115935,0.05349541,0.016097583,0.3254129,-0.004092155,0.029667366,-0.3274515,-0.083820485,-0.45719415,0.02122105,0.13025256,0.6856677,-0.37393227,-0.16089816,0.19962679,0.5914565,0.115316786,0.13804054,0.016613288,-0.022812216,-0.5253016,-0.21190023,-0.19139606,-0.3077919,0.6490657,-0.11219948,0.17853087,0.3760678,0.071468815,-0.106693715,0.18272549,0.048611864,0.046948437,-0.093550205,-0.5131338,0.47397944,-0.38039038,0.055988837,-0.29459298,0.48457634,0.11313565,-0.65314454,0.4204368,-0.50095284,0.13493507,0.24736223,0.6549016,0.6768552,0.57801753,0.14272204,0.5982813,-0.5261807,0.11637611,0.04330199,-0.10527272,-0.009147707,-0.09028278,0.015975833,-0.43576905,-0.04664735,-0.18043266,-0.18382664,0.07660591,0.2611586,-0.7334806,-0.18833233,0.044510677,0.73411644,-0.22130762,0.042583276,0.8984998,1.0798584,0.8608481,0.02389109,1.2696856,0.35108408,-0.30779395,-0.09423815,-0.21001281,-0.77169216,0.05849112,0.22792415,-0.15362176,0.50610274,0.13599914,-0.19531833,0.50256336,-0.78869647,-0.07847865,-0.08912552,0.15883023,-0.16515715,-0.059592508,-0.41019338,-0.13379188,-0.05173064,0.007262202,0.22321743,0.2765981,-0.29152817,0.2918953,0.23864177,1.278384,0.006237356,0.07697312,0.19608341,0.08385578,0.2279497,0.02895184,-0.14303507,0.28020057,0.26842928,-0.1354166,-0.37022933,-8.608699e-05,-0.31450573,-0.22217448,-0.3069296,0.099292345,-0.09240966,0.093743704,-0.3874832,-0.3612576,-0.15477608,-0.18208441,0.267108,-2.3976054,-0.27875438,-0.092753544,0.5635427,-0.356765,-0.30749854,-0.10918541,-0.5103745,0.42617834,0.29942995,0.18837102,-0.62550175,0.31059062,0.34749037,-0.6133396,-0.22478034,-0.49930948,-0.05378728,0.118503965,0.19512777,0.05648091,-0.14491293,-0.03789967,0.01841266,0.21220715,-0.18633607,0.0014980823,0.40300083,0.39017183,-0.016731199,-0.019689139,0.11694424,0.49014297,-0.4409235,-0.110989414,0.41778454,-0.36657575,0.30880007,-0.30414227,0.09712258,0.35038173,-0.40890482,-0.48978838,-0.54311466,-0.19212088,1.0349672,0.0325796,-0.4342481,-0.058551725,-0.19449463,-0.27344942,-0.061776917,0.6247255,-0.1961574,0.08984327,-0.8809312,-0.2067225,-0.07276475,0.5115566,0.123275846,0.06224127,-0.69402605,0.5784663,-0.15292431,0.41871956,0.5958113,0.32212335,-0.23970181,-0.5746766,0.15561633,0.96350783,0.53127116,0.12405588,-0.19219358,-0.00824819,-0.19522366,-0.02106743,-0.1908659,0.7129907,0.60977674,-0.17959747,-0.0647892,0.244464,0.21213225,0.120977394,-0.26786283,-0.37305415,-0.14142475,0.03266246,0.61546886,0.84394735,-0.34202766,0.045256678,-0.094921626,0.56654644,-0.14931239,-0.48324922,0.5028548,1.0408088,-0.21037538,-0.042978983,0.6573549,0.23960139,-0.2664522,0.44006214,-0.82553935,-0.5124615,0.4101244,-0.06327049,-0.48992112,0.22749239,-0.2622321,0.22017483,-0.8569752,0.6063887,-0.1553784,-0.1040317,-0.80795187,-0.11754202,-1.7949547,0.18372704,-0.41390812,0.1504069,-0.06970821,-0.06851111,-0.0030867895,-0.48137733,-0.6394722,0.23777552,0.08460213,0.3375456,-0.13112755,0.25302154,-0.09203663,-0.49118474,-0.1403241,0.31054,0.34065354,0.16872296,-0.09279574,-0.3018907,-0.06052347,-0.0913714,-0.13878576,-0.020103374,-0.6487025,-0.37958303,-0.24560426,-0.668917,-0.083635256,0.5057735,-0.35868347,-0.005371928,-0.2941141,-0.02213604,-0.038024902,0.17478947,0.15418641,0.2821516,0.040797565,-0.10983152,0.026413647,-0.29576862,0.29928428,0.14535053,0.069769576,0.3680803,-0.19705552,0.113422886,0.12998027,0.90153337,-0.14946267,0.66935617,0.46311855,-0.10061861,0.2982648,-0.17156452,-0.45906308,-0.51935947,-0.24597107,0.031469658,-0.33074743,-0.3378603,-0.103685535,-0.5065046,-0.74955446,0.4218085,-0.121585384,-0.16824761,0.16536249,0.27098784,0.5265313,-0.36835453,-0.062271748,-0.05080213,-0.027995484,-0.3616832,-0.2864399,-0.41252604,-0.42568982,0.053158727,1.10739,-0.022471985,0.23603389,0.2801949,0.01955978,0.014550511,0.12491504,0.09873848,0.08163194,0.62078315,-0.08539912,-0.64751357,0.35280043,0.011757779,-0.4533725,-0.6553782,0.3733365,0.5216087,-0.6952555,0.5120479,0.5170691,0.0073513826,-0.08218776,-0.4939698,-0.19926356,0.11182262,-0.27727333,0.36368644,0.14704797,-0.28926516,0.2632314,0.2562749,-0.3290424,-0.91848904,0.44327745,-0.0027703205,-0.605399,0.10542736,0.46940354,-0.21654813,0.038193814,-0.09217066,0.08316677,-0.1413496,0.20373707,0.0956423,-0.22902384,0.2545434,-0.4542141,-0.115322046,-0.96887964,0.23813233,-0.6237573,-0.37991816,0.22129545,0.1206876,-0.10253919,0.15845622,0.2943081,0.5194014,-0.36697206,0.14784545,-0.16895501,-0.3008422,0.38052547,0.38049126,0.39451092,-0.29214084,0.58353215,-0.094728105,-0.011761779,-0.38824856,0.08526671,0.4528677,-0.114576206,0.27624387,0.12290964,0.10837509,0.19101359,0.61310446,0.14635988,0.35444894,0.24401043,-0.100552,0.21011576,0.05251195,0.024707533,-0.077834256,-0.4529288,0.06840513,-0.12758408,0.010935041,0.42934623,0.23878829,0.4577758,-0.19628035,-0.48049024,-0.0065149567,0.2901959,0.24794634,-0.9537984,0.12679379,0.07089831,0.70068604,0.5220641,0.27551812,0.036733177,0.4603505,-0.13396484,0.038553525,0.3857851,-0.06865587,-0.21791573,0.4684265,-0.45935196,0.41354102,-0.020807164,-0.01751829,0.056545556,-0.17880109,0.18695037,0.8107521,-0.13789962,-0.056508437,-0.17901729,-0.06897602,-0.03999362,-0.44022855,0.2707835,-0.43183377,-0.46157494,0.7736176,0.36928004,0.33497033,-0.3155926,0.13001898,0.081611685,-0.17881319,0.22933514,-0.023690943,0.20620058,0.08597153,-0.502122,0.036384534,0.50316554,-0.07522722,-0.09394882,-0.049317397,-0.22909828,0.11315915,-0.27450985,0.0014397621,-0.04451101,-0.9394423,0.027865108,-0.40045387,-0.16432495,0.58292603,0.05311271,0.18829659,0.07964978,0.10609916,-0.46332327,0.36529955,-0.1273016,0.8426796,0.40358713,-0.07492551,-0.16536264,0.46132082,0.27768594,-0.2598599,0.30697045,-0.2377331,0.25238138,-0.5684318,0.41875497,0.17453334,-0.10912761,0.073705226,-0.19498275,-0.025232488,0.51378137,-0.17941692,-0.22885376,0.28252602,-0.1233543,-0.21183176,-0.28609765,-0.23318526,0.15376534,0.4254139,0.08984542,-0.077321865,-0.122767575,-0.44337854,0.5232205,0.1873321,0.29044473,0.46696955,-0.026965046,-0.47554347,0.10007569,0.0028649806,0.37434858,-0.10908322,-0.23592915,-0.22526945,-0.66028976,-0.3063315,0.2589693,-0.15772691,-0.008799124,-0.019013064,0.0843839,0.8461443,0.3204705,1.1517533,-0.018695457,-0.16455005,0.0952424,0.51884925,-0.018593272,-0.10142032,-0.5231334,1.2538445,0.5636701,-0.013622617,-0.07398537,-0.06948369,0.047553502,0.07240848,-0.08541016,0.008189702,-0.025112264,-0.58271855,-0.29062957,0.11233744,0.42498967,-0.17274027,-0.08711884,0.11478182,0.10815137,-0.056793258,0.27125868,-0.5304956,-0.14045702,0.40189824,0.12559931,0.013859517,0.21315853,-0.36363462,0.5007908,-0.44936934,-0.10480785,-0.4702214,-0.11083461,-0.17330518,-0.31109968,0.22652458,0.1301097,0.2486796,-0.69730747,-0.31212664,-0.38920414,0.21399908,0.25107196,0.043890648,0.58270395,-0.14461906,-0.09121613,0.053301208,0.5714465,0.9181402,-0.48418587,0.13768409,0.35253653,-0.44745195,-0.49675757,0.22122195,-0.17225622,-0.09647258,-0.22898223,-0.21614389,-0.5533932,0.15586954,-0.04637867,-0.07601942,0.07173834,-0.82869405,-0.03693197,0.3402783,-0.35844052,-0.090085946,-0.27146503,0.23696774,0.7532984,-0.119608484,-0.44930997,0.04372888,0.19328038,-0.3652681,-0.8128728,0.0046399315,-0.44282493,0.21353486,0.19771074,-0.22662917,-0.27527043,0.24351908,-0.5549062,-0.004639558,0.31504872,-0.4154654,-0.062618025,-0.35130814,-0.06409898,0.7001963,-0.09384561,0.13737965,-0.5197547,-0.39380997,-1.2113746,-0.2642487,0.46410522,0.28296965,0.10271514,-0.8266974,-0.087110676,-0.27232197,-0.108240195,0.041815814,-0.0629107,0.37401542,0.35214588,0.64689696,-0.34437168,-0.88213295,0.08856284,0.036660507,-0.38638318,-0.34303126,0.2020476,0.3800115,0.8403492,-0.055757858,-0.023849169,0.40861008,-0.825923,0.13935511,-0.16004257,-0.115079165,-0.663573,0.0068027335,577 -243,0.23074225,-0.16917458,-0.44086844,-0.17449304,-0.4133629,0.097096995,-0.18025057,0.33731174,0.08206504,-0.36256757,-0.38152507,-0.11038833,0.0986633,0.44965115,-0.18175073,-0.35140306,-0.19739777,0.18346332,-0.741018,0.43209362,-0.6612651,0.2680188,0.1564812,0.41351536,0.20365888,0.30821383,0.16692454,-0.1791237,-0.16839796,-0.00040225982,-0.06134678,0.20606674,-0.49287593,0.0499261,-0.15722783,-0.29058412,0.013378477,-0.4469358,-0.1243748,-0.7764898,0.2819663,-1.0093015,0.43317455,-0.16132168,-0.11600022,-0.0048076073,0.31988776,0.30836505,-0.3738095,-0.046674944,0.27374706,-0.20920762,-0.27546167,-0.25182092,0.059088252,-0.33517954,-0.51921886,-0.035729602,-0.42364654,-0.27164757,-0.22263767,0.27935326,-0.39305368,0.10248285,-0.13613774,0.38555345,-0.36838678,-0.064383455,0.22779803,-0.15717982,0.10457348,-0.5756063,-0.018047087,-0.08053408,0.53931767,-0.16027841,-0.1427925,0.36798328,0.29847747,0.36694938,0.15216129,-0.30369392,-0.21102455,-0.06040474,0.15485582,0.51292413,-0.17189728,-0.4233757,-0.04206724,0.1287557,0.26374528,0.33952764,-0.016916787,-0.2025004,-0.028111044,0.0031658174,-0.26461986,0.33659703,0.5052601,-0.20359488,-0.34779993,0.37015226,0.61309177,0.20998819,-0.14062041,-0.10239234,-0.05827687,-0.613658,-0.12802796,0.21346456,-0.19431664,0.44537324,-0.1912067,0.15719248,0.9476353,-0.11372997,0.047382012,-0.12129662,0.039686084,-0.25407004,-0.24680918,-0.31215745,0.17922713,-0.5278517,0.20854566,-0.31067926,0.7496801,0.15406232,-0.6541331,0.44278854,-0.6231754,0.14320016,-0.059974615,0.4765772,0.62804615,0.3789411,0.4207622,0.77742326,-0.31339934,0.09639835,-0.09288405,-0.46454015,0.08056275,-0.27324137,0.16887306,-0.3987565,0.12465104,-0.050496563,0.045582645,-0.07494116,0.49589223,-0.5546652,-0.0145327095,0.1561912,0.6667818,-0.43198618,0.018205702,0.7247301,0.9199523,0.98019487,0.06131159,1.3077227,0.3472561,-0.29684466,0.28628653,-0.34907717,-0.7723357,0.246864,0.41997853,0.0329784,0.16612665,-0.08175947,-0.07517039,0.35421115,-0.5295598,0.1548596,-0.2180904,0.25492442,0.21647103,0.02936128,-0.30525,-0.30754608,-0.033202957,-0.028387718,0.18049479,0.21380149,-0.13602096,0.30888262,-0.058914192,1.5308797,-0.07293069,0.13342156,0.13137907,0.5612568,0.15297715,-0.033297766,-0.0890987,0.4056177,0.4619827,0.00058075984,-0.6312781,0.14584714,-0.3173476,-0.5199144,-0.12549384,-0.3281903,-0.1236489,0.064072944,-0.39716852,-0.15444653,-0.06743403,-0.23234291,0.38144717,-2.4568353,-0.26295874,-0.2440771,0.20297144,-0.37693086,-0.25960347,-0.15724376,-0.60397404,0.3520679,0.2560097,0.48900068,-0.67197865,0.3783924,0.46537766,-0.5325653,-0.17536621,-0.6971541,-0.1663473,-0.034981888,0.36525622,0.049978342,-0.1234238,-0.09052333,-0.024526788,0.55853355,-0.02058833,0.08925946,0.542369,0.37413892,0.32291374,0.64435416,-0.032791223,0.5558621,-0.41978988,-0.1290116,0.34632245,-0.40782923,0.23924835,-0.23229091,0.12302836,0.61835897,-0.49460623,-0.8753127,-0.7329632,-0.5158769,1.170493,-0.39607614,-0.24702635,0.15924215,-0.17102149,-0.093852095,-0.08235944,0.59243333,-0.2967537,-0.010507242,-0.7702005,0.0814054,-0.06334107,0.20190634,0.026151182,0.020984828,-0.3224537,0.7741004,-0.0044942102,0.5270795,0.13370875,0.24206422,-0.31415188,-0.28376085,0.025631579,0.712321,0.33115408,0.032765638,-0.1325201,-0.2523459,-0.13801241,-0.28669646,0.09548267,0.41369545,0.7161519,0.058553528,0.149827,0.32234284,-0.14292243,0.08053441,-0.23508266,-0.18322514,-0.13847715,0.08036724,0.4906502,0.5281603,-0.19392985,0.45808926,-0.2896418,0.31130803,-0.049135853,-0.4762565,0.64018536,0.69126624,-0.114219256,0.0049569765,0.42051303,0.44779846,-0.34435323,0.36586615,-0.61393505,-0.24120691,0.6352136,-0.2273993,-0.52675235,-0.037517525,-0.1842666,0.15013562,-0.72287387,0.33964863,-0.30515766,-0.3063639,-0.5541534,-0.064909466,-2.7569745,0.07189151,-0.12177071,-0.19373897,-0.24321966,-0.1712829,0.21539026,-0.61803764,-0.5896324,0.12686366,0.15107985,0.7190353,0.08673039,0.11243283,-0.18701926,-0.09564762,-0.25424197,0.05043493,0.08148603,0.4333679,-0.114308745,-0.43949,0.061174907,-0.07715417,-0.5082985,0.20427187,-0.595356,-0.44544217,-0.11392412,-0.48404172,-0.313643,0.7001475,-0.40940478,0.051496264,-0.14085127,-0.0019255658,-0.14576587,0.18931536,0.122096285,0.15750843,0.1533487,-0.16367538,0.16926341,-0.37995148,0.49217907,-0.03184072,0.21067733,0.1768759,0.009687743,0.18746682,0.41512483,0.6912514,-0.2486172,1.0563133,0.38854265,-0.06325543,0.19438003,-0.31128272,-0.16515972,-0.5412516,-0.32575914,0.0043308614,-0.3957087,-0.49597982,0.050534718,-0.31285396,-0.78068477,0.59496117,-0.049519148,0.14369647,0.04455708,0.08438774,0.36630192,-0.101868644,-0.003205966,-0.066622436,-0.020004986,-0.5514048,-0.3193739,-0.5872931,-0.49239418,-0.14014368,1.0411092,-0.24935918,-0.07547612,-0.20279479,-0.33738396,0.17168532,-0.04876779,-0.011379191,0.23904733,0.3822837,-0.12691687,-0.71355635,0.46624434,0.025372537,-0.09272274,-0.50006115,0.16251177,0.7067243,-0.685278,0.52382714,0.41033867,0.008672972,-0.09439308,-0.5736253,-0.32413942,-0.023055848,-0.24988429,0.3039934,0.030355828,-0.73698837,0.4689402,0.26852846,-0.40715352,-0.85444605,0.25536418,-0.057300154,-0.1660481,-0.0070773046,0.33038175,0.13136344,-0.059618935,-0.28587675,0.104809366,-0.51498514,0.22161235,0.1478755,0.02935756,0.32501474,-0.19691685,-0.2876248,-0.7196888,-0.036995992,-0.48179528,-0.26411837,0.29421136,0.036112152,-0.07232593,0.22230892,0.13591798,0.3508266,-0.3510626,0.061955556,0.028412338,-0.35970086,0.06550005,0.2978192,0.3671223,-0.47708252,0.57778126,0.1166848,-0.11653956,0.07019434,0.017744351,0.36927617,0.124149404,0.29919985,-0.04831738,-0.21809816,0.49726525,0.8791581,0.13733517,0.420821,0.09920211,-0.23975468,0.39384323,-0.025962751,0.12028502,-0.0133930445,-0.4739935,0.025260432,0.057370193,0.17792101,0.48578098,0.18394853,0.3531839,0.11035563,-0.16216323,-0.0836902,0.29627857,-0.120130755,-1.0174198,0.36151236,0.13971077,0.97461253,0.36649796,-0.14373416,-0.03087471,0.71880215,-0.32758993,0.09753864,0.35301107,-0.022470491,-0.5500666,0.72405684,-0.6547417,0.4579105,-0.13690901,-0.040544935,-0.07080852,0.2483415,0.2302261,0.7177996,-0.28267136,0.06674145,-0.022516282,-0.18738289,0.16829354,-0.2913182,-0.006496815,-0.4641322,-0.31976193,0.63447446,0.32527256,0.42296782,-0.13490602,-0.037860632,0.045904133,-0.19703825,0.1696097,0.021029977,0.10466609,0.12539405,-0.6678532,-0.26959276,0.5899235,0.122213386,0.31255305,-0.124863274,-0.35173956,0.084805496,-0.44128796,-0.01899929,-0.0657998,-0.71914697,0.021417666,-0.10756472,-0.4645366,0.34866327,-0.31567702,0.17478284,0.30021116,-0.028541524,-0.14823008,0.11154868,0.22369242,0.87017477,-0.045958687,-0.352896,-0.39332378,0.070946015,0.21813542,-0.3214244,0.13958563,-0.29250866,-0.07340749,-0.49121848,0.5944146,-0.1226029,-0.47641808,0.27259687,-0.24265797,-0.16481964,0.74163324,-0.064415045,-0.13513966,-0.058992926,-0.22750066,-0.28118554,0.11585344,-0.3225012,0.22630817,0.38072428,0.12037758,-0.14312674,-0.23335908,-0.15623567,0.73978657,0.009956232,0.43908748,0.25436193,0.01532778,-0.23253275,0.002711336,0.18841147,0.56513053,0.13782969,-0.07837649,-0.38696793,-0.2809978,-0.24219412,0.29883066,-0.1463576,0.22673538,0.079209924,-0.44487062,0.7409276,-0.14877698,0.9771273,0.21632756,-0.29176486,0.021691317,0.5014581,-0.020386267,0.041481458,-0.30832818,0.8257956,0.53963566,0.0256594,-0.04554824,-0.466418,0.0033420145,0.4445914,-0.26912117,-0.05354605,-0.06394349,-0.6382196,-0.447209,0.31097764,0.24637146,0.04169651,-0.12990227,-0.10908831,0.027646963,0.20929588,0.6369187,-0.6466772,-0.18001561,0.2589862,0.20562313,-0.0077835363,0.18312168,-0.38744342,0.43107027,-0.59515166,0.14868559,-0.40712088,0.13144945,-0.23946108,-0.2185469,0.12260587,0.07703014,0.37013918,-0.18254386,-0.46977323,-0.058122966,0.57548255,0.1273698,0.19992656,0.64808905,-0.28483146,0.034969825,0.11318039,0.49980485,1.1442245,-0.3457269,0.15857707,0.24815035,-0.44225204,-0.5612089,0.459639,-0.16470619,-0.056288537,-0.0049832244,-0.3733925,-0.4569252,0.28167468,0.29567686,0.03971409,0.011538267,-0.46686167,-0.10425741,0.5176386,-0.24915497,-0.23961495,-0.2303522,0.40804693,0.684702,-0.26534173,-0.18226251,0.063865475,0.37199512,-0.34381956,-0.4809093,-0.1377462,-0.35485947,0.34575972,0.018282449,-0.34655163,0.011670351,0.11397826,-0.4262626,0.061771646,0.08030771,-0.39414728,0.07599974,-0.19944797,-0.0076553533,0.98785746,-0.21635865,-0.026211198,-0.7070024,-0.36576137,-0.95227367,-0.28688166,0.3826334,0.17117338,0.07067547,-0.5079538,-0.027605545,-0.044684105,-0.2827545,0.12473631,-0.47871667,0.29347903,0.20877382,0.42007938,-0.21788594,-0.647153,0.1264178,-0.06334232,-0.052511968,-0.44933903,0.5764424,-0.053854965,0.76393443,0.05722519,-0.043155216,-0.07326435,-0.31069365,0.06519773,-0.2897983,-0.1718185,-0.86862206,0.10234918,581 -244,0.47202674,-0.23228772,-0.39951912,-0.16698663,-0.30991045,0.2960037,-0.06965855,0.3517452,0.05222285,-0.5525894,-0.19045869,-0.14385366,-0.025770307,0.15513521,-0.29101974,-0.6253093,0.007368342,0.120987035,-0.6009108,0.4231989,-0.35054073,0.37235555,0.19859122,0.16837367,0.10311723,0.2558642,0.23907879,-0.16933168,-0.14374427,-0.06694104,-0.31272003,0.27883157,-0.30274335,0.026368601,-0.102330774,-0.2774104,0.04857983,-0.27204964,-0.23719718,-0.7972656,0.44164425,-0.937021,0.4780162,-0.029631257,-0.18695101,0.35430977,0.25557762,0.23646943,-0.14257841,-0.0308838,0.20827709,-0.18465304,0.013082111,-0.19983703,-0.2249889,-0.41308796,-0.64697,-0.043306954,-0.49782264,-0.35478768,-0.30058452,0.21509491,-0.4511054,-0.028942198,-0.042324014,0.5887791,-0.49415225,-0.043874763,0.23999475,-0.24802235,0.4300744,-0.57399046,-0.11699225,-0.14173698,0.263813,-0.085456975,-0.13875957,0.18265969,0.6661656,0.32267815,0.16078833,-0.25462273,-0.31058887,-0.20526679,0.17514333,0.46336725,-0.1342768,-0.4465388,-0.0009892096,-0.0011203368,0.022494277,0.12297375,0.18769696,-0.1957539,-0.11843569,0.13721342,-0.32349172,0.44211873,0.34302202,-0.5050382,-0.31827068,0.30349067,0.7197066,0.05088819,-0.24900037,-0.018062355,0.0060859364,-0.5095652,-0.15741847,0.31523433,-0.45084304,0.4866179,-0.2809659,0.35291588,0.8536202,-0.30188343,0.07248685,0.06246282,0.14819407,-0.14577344,-0.02026999,-0.27028242,0.21664156,-0.54915774,0.012616428,-0.15856081,0.87504876,0.101189695,-0.52393264,0.25364527,-0.54540855,0.13092214,-0.17917477,0.49436253,0.5443306,0.39133433,0.25326675,0.59543735,-0.38527432,-0.029301144,0.0011762499,-0.51007915,-0.020644013,-0.15492342,-0.014974267,-0.44777113,0.048774384,0.002891604,-0.11051116,-0.0865757,0.3926911,-0.57764554,-0.016175512,-0.07375984,0.94395983,-0.34765294,-0.19042349,0.6060383,0.7916749,0.9143606,0.02682749,1.0326321,0.21799564,-0.30806714,0.23198624,-0.31802076,-0.6145544,0.3666951,0.54607636,0.04975563,0.3447299,-0.00016637643,0.0343724,0.32765844,-0.27206257,-0.026738537,-0.2324461,0.02253639,0.19499683,-0.108347625,-0.37714154,-0.19593053,-0.12346136,0.016196135,0.24551232,0.16349666,0.03064368,0.5506319,0.16592652,1.5040698,-0.080822594,0.06356669,0.111400574,0.39302158,0.13353696,0.19326021,0.016903529,0.33006427,0.31137162,0.27919742,-0.610572,0.19270635,-0.26139945,-0.48586807,-0.18044402,-0.3560912,-0.03089773,0.04725154,-0.4137074,-0.11957288,-0.13091938,-0.30633277,0.34894297,-2.55455,-0.23292154,-0.18012358,0.3057866,-0.2654637,-0.3211278,0.015379838,-0.60999274,0.24186295,0.37934926,0.4798922,-0.7431002,0.33443508,0.5478598,-0.56719553,-0.060940918,-0.5054442,-0.25125358,-0.005575676,0.37109944,0.075216256,0.10938821,0.061413784,0.20070513,0.38864127,-0.06771668,0.078073256,0.34088045,0.34665692,0.09362257,0.52725136,0.1544993,0.5440573,-0.16773905,-0.22215833,0.24979731,-0.2467358,0.20989195,-0.07966051,0.14470002,0.5728932,-0.37821475,-0.8510227,-0.7113367,-0.34943286,1.2171074,-0.2507926,-0.28513435,0.29335383,-0.12841728,-0.2669926,-0.22592995,0.38330114,-0.15143612,0.036394645,-0.8167892,0.16635129,0.02175126,0.1708204,0.0737084,-0.11916375,-0.25201258,0.65171474,-0.15277758,0.40767345,0.18495132,0.14090061,-0.26312864,-0.49712875,-0.0068490584,0.97253263,0.4197621,0.075529404,-0.18855028,-0.21704215,-0.33253595,-0.05246083,-0.05553661,0.46289164,0.8330261,0.12785572,0.110140465,0.2287285,0.048640266,0.16795747,-0.1842668,-0.38211295,-0.027680075,-0.16038185,0.44968066,0.35460874,-0.26012477,0.49823382,-0.03384932,0.4702205,-0.030926703,-0.33762997,0.4432266,1.2704374,-0.13324806,-0.21692052,0.63298666,0.38199174,-0.44328746,0.35573304,-0.619077,-0.12397669,0.6488792,-0.26575002,-0.4710166,0.22257735,-0.20148008,0.1092114,-0.92721546,0.34587038,-0.27725354,-0.34954602,-0.4350443,-0.085091144,-3.6230948,0.16148822,-0.33493772,-0.19034514,-0.1818091,-0.121968955,0.13465811,-0.6488909,-0.51600546,0.14491065,-0.012898978,0.68812335,-0.1507948,0.071867734,-0.18263075,-0.31997186,-0.093004584,0.18919444,0.1561452,0.24391551,-0.13962255,-0.50613946,0.18612562,-0.19288881,-0.526818,0.15793973,-0.65157306,-0.6466232,-0.15258238,-0.48954043,-0.36377114,0.73028946,-0.2777424,0.17824885,-0.16224675,0.11691415,-0.024187375,0.40968233,0.20697631,0.16651613,-0.039711017,-0.0037981232,0.0582698,-0.26864916,0.40783167,0.042080924,0.27018455,0.4267903,-0.113044314,0.24178746,0.53258055,0.5602745,0.0411706,0.7812627,0.38863292,-0.13805182,0.28012505,-0.26447666,-0.41177404,-0.65990716,-0.26085815,0.13920921,-0.27450278,-0.55476725,-0.09471791,-0.36066246,-0.7985525,0.66041183,-0.14258647,0.31352842,-0.06626071,0.49934095,0.49315903,-0.18453947,0.05994429,-0.07231752,-0.23875459,-0.54380745,-0.15007058,-0.61342007,-0.48462868,0.041442562,0.8893077,-0.30468744,0.025722418,-0.10174997,-0.13393988,-0.0052583655,0.20046954,0.10152226,0.27260956,0.41812247,-0.28023782,-0.75766957,0.71566355,-0.18342964,-0.21493766,-0.46867016,0.08924584,0.55296695,-0.6216265,0.40736184,0.47366273,-0.07934133,-0.15668172,-0.34736538,-0.20345174,0.047140457,-0.27094308,0.37402567,0.17203626,-0.57792795,0.40135828,0.26531485,-0.227747,-0.64723486,0.5325337,-0.016690802,-0.31338996,0.033000655,0.4622461,0.10629297,0.042903543,-0.23010804,0.07358484,-0.48147246,0.10617245,0.16584438,-0.11718659,0.31804118,-0.13626595,-0.18435484,-0.7916469,0.22835726,-0.51724875,-0.164695,0.27353942,0.14948575,0.10014132,0.37551606,0.0066941422,0.4626112,-0.30910435,0.04482736,0.11247684,-0.2814662,0.30698967,0.42642802,0.32249013,-0.36329252,0.56976825,-0.0766885,-0.056348898,-0.077644266,-0.022279564,0.47162673,0.176648,0.39506996,0.17355463,-0.22849351,0.46410483,0.864132,0.25181872,0.5398257,0.07707798,-0.1360099,0.2909228,0.11638379,0.31089357,-0.052122217,-0.55323523,-0.10514763,-0.08979716,-0.0008128246,0.5934808,0.025642468,0.3205442,-0.13693346,-0.2795471,0.021760348,0.20454231,0.06904079,-1.1156152,0.26540026,0.27416155,0.7896225,0.29558083,-0.035129946,-0.011587981,0.69470495,-0.33842617,0.13937016,0.4574596,-0.05930271,-0.57320213,0.578989,-0.5888754,0.3480608,-0.19187155,-0.109561995,-0.17314106,-0.13975565,0.25696552,0.8775881,-0.16861738,-0.13682012,-0.05873863,-0.44322842,0.43145573,-0.5376517,0.17723534,-0.47547004,-0.2503924,0.44592345,0.48230088,0.20945077,-0.19193476,0.07598429,0.14153977,-0.094631225,0.3857117,-0.012120808,0.31061178,-0.22795948,-0.62680143,-0.24751134,0.503455,0.14026332,0.20089598,0.010419607,-0.13235149,0.24557708,0.012475936,-0.024340017,-0.12212079,-0.67014325,0.029438037,-0.19779049,-0.5355248,0.5056563,-0.23731253,0.21813364,0.28372064,-0.07837834,-0.42549154,0.2390705,0.286205,0.553955,0.067603454,-0.13894388,-0.44727528,0.13870248,0.01899803,-0.19310299,0.013305368,-0.16092807,0.24295466,-0.5524036,0.5313538,-0.17218262,-0.30476096,-0.12693852,-0.31112248,-0.19598223,0.44965628,-0.17576481,-0.023504445,-0.22726847,-0.24462959,-0.15379024,-0.16464478,-0.12087048,0.30876577,0.07165483,-0.03982625,-0.28168944,-0.13718969,-0.18180059,0.5266619,0.026662353,0.3903291,0.39649242,-0.17526245,-0.43250746,-0.3128358,0.19477396,0.26255566,-0.03494245,-0.09349657,-0.3004661,-0.4444744,-0.30014834,0.2263159,-0.09582674,0.40748814,0.12180066,-0.33854902,0.9119918,-0.19208571,1.1346234,0.02643961,-0.45613912,0.049306694,0.5568924,0.020387711,-0.03930801,-0.3271314,0.8649788,0.51127666,-0.094897375,-0.1808671,-0.32995227,0.10221443,0.11096909,-0.1862039,-0.07763586,-0.10993551,-0.59162647,-0.36662847,0.18941936,0.28164816,0.16301021,-0.0051347017,0.117969066,0.26904958,-0.04863688,0.47893903,-0.46862203,-0.2602806,0.31572774,0.14415012,-0.0020481804,0.14327663,-0.30760145,0.52099025,-0.5524349,0.07025719,-0.2932255,0.21836407,-0.17948692,-0.24568525,0.23548716,0.06879491,0.38865787,-0.07701254,-0.40555236,-0.30363783,0.4618659,0.18517222,0.09569177,0.502448,-0.32395998,0.08305397,0.10820269,0.5899438,1.0598322,-0.09650794,0.05784304,0.25657812,-0.44385013,-0.5662398,0.402413,-0.2516511,0.23826465,0.015784483,-0.13744931,-0.5271092,0.2381663,0.34193116,-0.0025023976,0.027370019,-0.44487488,-0.3376071,0.275659,-0.51384884,-0.18129928,-0.2519486,0.29859892,0.5119432,-0.49280325,-0.26728252,-0.054519016,0.2598635,-0.20008598,-0.48451698,-0.116539076,-0.32142004,0.38305032,0.14981395,-0.25360447,0.07397763,0.020374505,-0.38952792,0.21735425,0.34758216,-0.4080958,0.040648345,-0.30202147,-0.03055753,0.8041172,-0.10527817,-0.14241266,-0.57714343,-0.42837283,-0.8425741,-0.44212157,0.5168429,-0.014672681,-0.014004037,-0.5589718,-0.02862059,-0.12471655,-0.13022172,0.023819815,-0.335581,0.44071358,0.1571602,0.36496148,0.060386017,-0.72789484,0.08311394,-0.0531931,-0.05489241,-0.66817486,0.41325867,-0.16460484,0.6567106,0.07060887,0.00039658943,0.3739587,-0.3213285,-0.115211025,-0.23639698,-0.2879031,-0.7200161,0.010268376,588 -245,0.5819588,-0.35381025,-0.58260304,-0.17441562,-0.37265432,0.15305416,-0.28181523,0.5732736,0.24795471,-0.44701704,-0.15212949,0.023882378,-0.20158793,0.29497993,-0.16176668,-0.6918157,-0.20351785,0.20950331,-0.34223363,0.55105466,-0.19786784,0.35724884,0.02213928,0.3373343,0.26328713,0.1410398,0.097925216,0.14604497,-0.0030670166,-0.2389702,-0.063574456,0.24668407,-0.56207526,0.28551483,-0.13021241,-0.42123452,-0.18766664,-0.4677392,-0.2836549,-0.6629578,0.33563504,-0.6442095,0.5557955,0.069054924,-0.29751346,0.078368455,0.099709615,0.14803928,-0.1547222,0.10875796,0.13985477,-0.24677612,-0.10156237,-0.08554586,-0.23372942,-0.41150185,-0.69619006,-0.04048349,-0.47763354,0.19314446,-0.22576073,0.17497005,-0.24090108,-0.17593254,-0.089537635,0.31988242,-0.3450699,-0.028658938,0.17618227,-0.12828286,0.053798072,-0.634722,-0.10530976,-0.07304662,0.32593364,-0.10469899,-0.08566042,0.099793874,0.12644514,0.6475936,0.15409769,-0.29682067,-0.53541696,-0.037194252,0.09788162,0.49037647,-0.16060123,-0.40446457,-0.29064575,0.025348442,0.6323414,0.30681705,0.24846472,-0.15857859,-0.26043257,-0.15794465,-0.044351105,0.4310949,0.52958375,-0.3638396,-0.24910542,0.42665908,0.4785561,0.23206235,-0.15507193,0.13981433,-0.12715119,-0.33601603,-0.14662847,0.03148022,-0.11521641,0.38311455,0.0010329088,0.17480369,0.4498131,-0.05477283,-0.09389117,0.07184769,-9.867946e-05,-0.014588186,-0.23211238,-0.32111126,0.30929556,-0.38674462,0.18029672,-0.15384337,0.60218817,0.12026398,-0.84677035,0.2963958,-0.4324439,0.13074428,0.1486953,0.5712308,0.9357942,0.5201828,0.11863515,0.89824986,-0.2753146,0.05415953,-0.0794868,-0.09528592,0.023272276,-0.18746136,-0.092850715,-0.5903521,0.3274409,-0.091488376,0.06896769,0.34852213,0.77635205,-0.49277174,-0.17680477,0.3418569,0.7856542,-0.21681556,-0.030681849,0.8987375,1.0129852,1.2177459,-0.17101495,1.1045331,0.026188342,-0.2373433,-0.14015077,-0.2907539,-0.5829379,0.2802462,0.5180072,0.42969054,0.42059258,0.14649025,0.023997474,0.50925964,-0.46537897,-0.079680204,-0.018571412,0.2069582,0.05194282,-0.19377075,-0.64704335,-0.062285103,0.19311555,0.16162284,0.13211612,0.3868857,-0.3006074,0.31385675,0.0070169866,1.4337852,-0.16189222,0.14934267,0.19415101,0.40125751,0.18772517,-0.20953242,0.09267058,0.20897703,0.37115964,-0.1463871,-0.48478064,0.032525476,-0.30390644,-0.64343345,-0.2436003,-0.380054,-0.50583285,-0.036891945,-0.49839216,-0.09228386,-0.094358556,-0.52899843,0.39611098,-2.6095622,-0.14483494,-0.18639691,0.22294623,-0.30485725,-0.47377643,-0.07536614,-0.41800305,0.513967,0.30900452,0.5021305,-0.56116027,0.45012555,0.42962533,-0.47099534,-0.0032586337,-0.56949705,-0.07861858,-0.05852269,0.37696254,-0.008935706,-0.2517302,0.16815996,0.2888293,0.6124885,0.12869464,-0.01756538,0.3432713,0.51369846,-0.23835386,0.34110153,-0.09893894,0.5659022,-0.20876889,-0.24845283,0.61695135,-0.38646445,0.3032092,-0.3180793,0.076073475,0.48416653,-0.45565,-0.8507244,-0.5435221,-0.1626166,1.1195073,-0.25356632,-0.5413179,0.14675279,-0.44725487,-0.28917122,-0.11924884,0.54749167,-0.16740614,-0.053510223,-0.81473917,-0.11075671,-0.21845365,0.21856947,-0.07682768,-0.08638108,-0.71503943,0.9379065,-0.16728139,0.75025004,0.41406932,0.28881237,-0.17341365,-0.4995758,0.15640862,1.0444953,0.6411213,0.14635131,-0.25256258,-0.082353,-0.3462502,-0.118789196,0.13962321,0.6739689,0.38270518,-0.013842376,0.14633235,0.17755455,0.056083832,0.07413897,-0.16818462,-0.25078806,-0.3696437,0.11190621,0.684653,0.6189486,-0.25349322,0.49760073,-0.11975662,0.24230203,-0.24847764,-0.43886283,0.43078595,0.86124706,-0.14419535,-0.39776105,0.7608926,0.53634745,-0.076645404,0.505434,-0.79884326,-0.49197164,0.2733059,-0.30234435,-0.302462,0.25676787,-0.41566902,0.044716112,-0.7990728,0.08556015,-0.29187632,-0.49849537,-0.7082194,-0.34662265,-2.1166735,0.09944725,-0.16381855,-0.16072473,-0.199761,-0.2978187,0.18143915,-0.71462,-0.7515438,0.074413665,0.088859506,0.61726266,-0.12131779,0.10245753,-0.20280312,-0.4922292,-0.20547362,0.28184325,0.021076966,0.4019537,-0.0054551642,-0.29953533,-0.118902855,0.01701619,-0.31803194,-0.11370726,-0.56675446,-0.3455185,-0.038213536,-0.31005794,0.02499679,0.47658208,-0.5272639,0.21715263,-0.18165363,-0.010808176,-0.08602517,0.14722954,0.015452814,0.15118681,0.14134607,-0.131059,0.32865006,-0.25848904,0.3819482,0.11461168,0.32701138,0.50619113,-0.43999752,0.1436921,0.39999014,0.7267916,-0.22501704,0.8621981,0.49725264,-0.04728015,0.3157124,-0.13642383,-0.29818228,-0.79933614,-0.25630733,0.16129671,-0.52753365,-0.5662702,-0.09711158,-0.45096052,-1.0055256,0.37578884,-0.044876255,0.4444204,-0.05380209,0.3030457,0.49615872,-0.3398486,-0.019065937,-0.03617018,-0.19079943,-0.22101746,-0.44280666,-0.64049774,-0.3870379,0.010982219,1.0983238,-0.12731622,-0.045316387,0.29688233,-0.24444307,-0.013485988,0.1522567,0.19134818,-0.043541923,0.42731062,0.10839893,-0.58508366,0.45913538,-0.0734582,-0.09018994,-0.62297934,0.029396327,0.39512235,-0.5875878,0.39828664,0.32172108,0.127983,-0.18106899,-0.76859623,0.111923255,0.0386273,-0.25083822,0.5579762,0.46791738,-0.60554004,0.50492305,0.16574755,-0.05637783,-0.7695001,0.5039973,-0.07734014,-0.26093197,-0.17813176,0.34948376,0.24702993,-0.028259583,-0.08445047,0.32038075,-0.3852471,0.55453014,0.19745575,-0.076235294,0.1792007,-0.33333254,-0.1356558,-0.7665676,0.039858986,-0.60438997,-0.35391483,0.19436213,0.14948015,0.15408495,0.070677646,0.1239622,0.4852667,-0.41093433,0.12098909,-0.22253557,-0.3779764,0.3850773,0.45891002,0.54641277,-0.3066178,0.58919024,0.094253816,-0.06007428,0.015766017,0.09098479,0.60283005,-0.07634382,0.3971695,-0.20120987,-0.24763708,0.21077092,0.6082746,0.29192176,0.1710198,0.12269419,-0.2952254,0.16663803,0.031455275,0.23118706,-0.42461586,-0.7088445,-0.040351965,-0.13096832,0.124814786,0.55457497,0.20264298,0.28741214,-0.17329496,-0.10131775,0.22236386,0.10997324,-0.14312346,-1.3898506,0.09754586,0.10804375,1.0849317,0.49671328,0.08990409,0.1238555,0.35770264,-0.2356752,-0.027057577,0.51124513,-0.018164175,-0.3200899,0.57804054,-0.7145961,0.6074193,-0.041054785,-0.0850678,0.13342564,-0.032798897,0.49799955,0.6632455,-0.18532333,0.053739317,-0.014964944,-0.3450978,-0.01428685,-0.19624081,0.22308968,-0.5706581,-0.19123703,0.6735745,0.5004891,0.4294836,-0.31629857,0.033545688,0.0375764,-0.079972185,0.044917576,0.0489722,0.09277475,-0.16417177,-0.42610395,-0.09854712,0.5518702,0.1320433,3.889998e-05,0.06742611,-0.37366548,0.09531019,-0.03768833,-0.09582813,-0.033178553,-0.75838596,-0.08161707,-0.32212478,-0.4252132,0.4962888,0.0626491,0.18699218,0.24083069,0.061696876,-0.046604104,0.2122467,0.17604803,0.7677167,0.16988777,-0.021269469,-0.37198195,0.22106434,0.12874563,-0.13578868,-0.18780628,-0.19192001,0.23579757,-0.5669207,0.30361614,-0.19586897,-0.26789,0.3791995,-0.07688079,-0.033922117,0.4799333,0.02468791,-0.17627482,0.16854505,-0.026364386,-0.29762587,-0.21936424,-0.24926455,0.2452773,-0.012674888,0.041956846,-0.19266169,-0.049857315,-0.09410146,0.24959017,0.20450796,0.16702554,0.5132788,0.039882217,-0.3939075,0.13020958,0.25976974,0.46911559,0.015745541,-0.05263155,-0.2829691,-0.62221986,-0.5362018,0.43594798,-0.2431763,0.17427632,-0.019640334,-0.12558196,0.76224315,0.07715804,1.1025914,0.14202172,-0.4872647,0.18154259,0.5847503,-0.14264776,-0.021353725,-0.33085296,0.9173613,0.57706463,-0.029806597,-0.1939853,-0.24908637,0.07600013,0.17161724,-0.31192556,-0.14732313,-0.02821639,-0.6375679,-0.22532384,0.23434004,0.11384286,0.1356379,-0.1363744,-0.122769736,0.42737192,0.18373619,0.22029302,-0.5710577,-0.2971705,0.31391653,0.23454566,-0.17991005,-0.029284775,-0.5238584,0.31816447,-0.6404119,-0.14557393,-0.3286968,0.11920099,-0.30283123,-0.29713663,0.38612115,-0.031120753,0.3201266,-0.3988385,-0.4190243,-0.14829166,0.37011668,-0.07897116,0.11559645,0.40934435,-0.23437992,0.03360438,0.16224292,0.32200998,1.1149751,-0.3179037,0.02910217,0.35859904,-0.48806313,-0.69234186,0.19455619,-0.5993653,0.2127122,0.067011766,-0.3545149,-0.49228212,0.28939596,0.116532356,0.00855192,0.12116429,-0.6041695,-0.09527213,0.21180902,-0.3631701,-0.1203888,-0.22539635,-0.11255752,0.74478275,-0.28632325,-0.36500016,0.13041104,0.5175491,-0.18523987,-0.71128774,0.22971661,-0.46687278,0.19039494,0.0044667004,-0.44638252,-0.23938422,0.014519558,-0.47901386,-0.024387725,0.46344578,-0.39337045,-0.066163786,-0.45414898,0.048260268,0.8934868,-0.048377797,0.27742,-0.56745946,-0.37658137,-0.92611945,-0.32911777,0.3225023,0.22151566,-0.081448466,-0.8102808,0.04106372,-0.50771344,-0.11467915,-0.13120854,-0.30950433,0.3638491,0.26213613,0.42863977,-0.17059812,-0.79442036,0.2516201,0.010773889,-0.25063282,-0.43324873,0.6101057,0.14750372,0.9271496,0.055072036,0.14559723,0.13883205,-0.81895036,0.15798095,-0.09174582,-0.077040024,-0.7288821,0.13590166,593 -246,0.29488343,-0.0839818,-0.37943363,-0.0503967,-0.31755733,0.13379732,-0.17399146,0.23044126,0.059045833,-0.15114151,-0.24072352,-0.08657117,0.034130774,0.4447789,-0.11829192,-0.64918154,-0.09033705,0.051401954,-0.7904042,0.36422715,-0.6491703,0.43107647,0.2066147,0.25611737,0.1830809,0.43251944,0.35326093,-0.1918229,-0.21735807,-0.13684694,-0.23272687,0.10744957,-0.48201382,0.013324722,-0.16611412,-0.27492344,0.14652859,-0.549133,-0.19038206,-0.5491845,0.21936385,-0.7112754,0.52227855,-0.045102775,-0.04242364,0.08394243,0.28712603,0.38909766,-0.3673788,0.053332545,0.23621836,-0.22940935,-0.19339012,-0.18207884,-0.11546338,-0.27715233,-0.5408062,-0.024474198,-0.65783244,-0.40854582,-0.17915486,0.096352115,-0.3165618,0.09299024,-0.03309761,0.22134545,-0.38061315,-0.09006845,0.30987003,-0.19929151,0.043349646,-0.5375431,0.061516885,-0.04252638,0.5305898,-0.13057083,-0.018116355,0.52533036,0.40545043,0.3809683,0.21462926,-0.2473451,-0.20841618,-0.20175555,0.14800106,0.6331329,-0.07460156,-0.2650581,-0.13885693,0.20969139,0.25970837,0.41939119,0.02158513,-0.10248574,-0.09796073,-0.046183977,-0.26007923,0.48630148,0.48257127,-0.37185898,-0.38505256,0.37111428,0.5359856,0.24788567,-0.12168854,-0.06038696,0.032755386,-0.584709,-0.1543571,0.19250251,-0.07995381,0.41265315,-0.117943965,0.2801634,0.89760745,-0.14843982,0.13847505,-0.17768496,-0.048774634,-0.1770367,-0.15968564,-0.12718067,0.060690038,-0.630038,-0.041457653,-0.2293515,0.8106357,0.13739389,-0.62388635,0.39784306,-0.60339355,0.16499226,-0.13254008,0.547004,0.6506879,0.34734294,0.2850993,0.8314856,-0.33837596,0.21265084,-0.12323252,-0.4766217,0.071552604,-0.25784692,0.1654924,-0.53935945,0.09886362,-0.043950733,0.09372368,0.116472,0.38160005,-0.56869614,0.0059956987,0.15824296,0.8441749,-0.37442163,-0.05339745,0.7378532,1.0545496,1.0295368,-0.032219633,1.129912,0.26944277,-0.29095644,0.119752556,-0.4138867,-0.52306217,0.13722774,0.47751603,0.01948676,0.2583407,-0.091425516,-0.10661518,0.2849137,-0.40579832,0.05636598,0.025644522,0.14910768,0.1681708,0.00643275,-0.41240093,-0.27209988,-0.12688926,-0.12920764,0.14537162,0.29144388,-0.24499099,0.42441592,-0.121830896,1.3247473,0.03550807,0.11426064,-0.042970065,0.5858477,0.23319595,-0.03468395,-0.1648058,0.31657973,0.3934965,-0.051925343,-0.60908395,0.097290434,-0.37843937,-0.3640073,-0.15183122,-0.4710817,-0.123243175,0.24038042,-0.30107602,-0.14872108,-0.05387088,-0.17934538,0.52113944,-2.9893079,-0.25491494,-0.14640836,0.3080548,-0.3017774,-0.1632038,-0.075310625,-0.59895664,0.33756363,0.22563334,0.53153014,-0.57441217,0.4083281,0.3386118,-0.54031295,-0.24478467,-0.61122406,-0.09412306,-0.025918337,0.33935544,-0.04477132,-0.12701221,-0.16015564,0.086890906,0.6437277,0.044480268,0.08797784,0.4631637,0.38845837,0.21292546,0.5634989,0.06498785,0.6271592,-0.34452474,-0.14636989,0.17508216,-0.1920649,0.23579264,-0.2527354,0.089667894,0.42948645,-0.50496423,-0.8071393,-0.53527325,-0.2487132,1.0079005,-0.33955115,-0.2761738,0.2046945,-0.024015069,-0.06757452,-0.0034634033,0.52913225,-0.07797205,-0.12506856,-0.5174111,0.072766274,0.009907433,0.022760129,0.040173132,-0.050010018,-0.3079299,0.66361046,-0.032952357,0.5110683,0.1363618,0.2999819,-0.043632977,-0.25139728,0.095389225,0.80411875,0.34680375,0.008866966,-0.05600367,-0.3001121,-0.19755459,-0.3813019,0.11083407,0.4281386,0.7873367,0.041988928,0.123625085,0.3486801,-0.1529009,0.12041439,-0.030783387,-0.16394752,-0.055803917,-0.12661497,0.45682037,0.566595,-0.07620622,0.55635315,-0.16386493,0.2787081,-0.082560584,-0.5551096,0.62364274,0.5068953,-0.10627951,-0.016264567,0.44743994,0.4352358,-0.3068752,0.389414,-0.5151509,-0.3127981,0.8188913,-0.19413309,-0.35402176,0.16730806,-0.21357228,0.02097311,-0.789428,0.24142446,-0.27129593,-0.4103136,-0.31571046,-0.10387595,-3.6597874,0.1675354,-0.25945616,-0.047650453,-0.1873767,-0.06365936,0.22786897,-0.5972183,-0.41286838,0.11694689,0.20702836,0.7171094,-0.060670424,0.17568977,-0.14676805,-0.18053599,-0.22767141,0.10534657,0.121640645,0.37171414,-0.119597845,-0.367005,0.11558143,-0.13289729,-0.5484579,0.23122635,-0.48442045,-0.49533704,-0.12936531,-0.43521208,-0.30653858,0.7058082,-0.3618434,0.07154314,-0.19713923,0.11378738,-0.17716761,0.14080639,0.22702734,0.13111417,0.15627508,-0.09455838,0.24711587,-0.41259366,0.59322476,0.0211905,0.49041727,0.16305646,0.10837873,0.16473071,0.45688835,0.46186352,-0.053005293,0.86646074,0.37496102,-0.059710924,0.18703605,-0.30585152,-0.15702848,-0.44373456,-0.4635249,-0.0657466,-0.37817448,-0.5463613,-0.04731202,-0.2787107,-0.7244977,0.4958891,0.020454288,0.29336298,-0.12129576,0.29004827,0.3756407,-0.24340127,-0.030127414,-0.07012064,-0.0949661,-0.46557257,-0.086102225,-0.65567327,-0.5384731,0.078770466,0.9138721,-0.33172086,-0.0032513738,-0.19309014,-0.2994355,0.05000124,-0.03701224,0.085212216,0.31574965,0.334125,-0.16464584,-0.7018989,0.5192978,-0.20124926,-0.12759487,-0.59496796,0.13060075,0.6528405,-0.66629183,0.39681756,0.40341467,0.13031253,0.043082602,-0.40458933,-0.10351409,-0.0025041462,-0.24837317,0.23602626,-0.03814588,-0.7794787,0.5479357,0.17808685,-0.5704862,-0.7721046,0.30398598,0.038690805,-0.15897103,0.11392535,0.13095716,0.320468,-0.1498514,-0.25449857,0.14956303,-0.49612704,0.40436876,0.12993297,0.02190001,0.48059738,-0.23017076,-0.46427324,-0.5327782,-0.022112114,-0.44197935,-0.1819335,0.32041207,0.06171785,0.13606542,0.22314903,0.1457787,0.36286172,-0.3038524,0.101931326,0.07105077,-0.3934039,0.21567944,0.35357,0.30734903,-0.4384478,0.573114,0.047362883,-0.100995556,0.15219595,0.04064354,0.3672029,0.12208394,0.27281368,-0.05496413,-0.2773216,0.37894562,0.66697973,0.11555941,0.26972967,0.19936053,-0.17913835,0.4127599,-0.053459708,-0.06093549,0.141968,-0.45653707,-0.07200775,-0.018715095,0.12371567,0.50717384,0.32044983,0.30655092,0.09984978,-0.23521715,-5.133152e-05,0.07652119,-0.13429819,-1.0460893,0.45135975,0.20324954,0.76834756,0.30366942,0.05199762,-0.15781261,0.6728846,-0.30456698,0.111179605,0.28774288,0.100790076,-0.45504013,0.69930434,-0.63265485,0.6004194,-0.09570292,-0.13364857,0.038923644,0.06894483,0.27221066,0.8628132,-0.21874084,0.079518594,0.020293497,-0.31489375,0.1019863,-0.33031178,-0.013712795,-0.570067,-0.23639944,0.6189438,0.20945987,0.3092513,0.00496736,-0.088145,0.068776324,-0.19090529,0.23278162,-0.08962553,0.081715256,0.059216063,-0.611544,-0.27191454,0.53731334,0.02172875,0.25076503,-0.15268023,-0.17567042,0.10223239,-0.28463498,-0.0027381857,-0.026147366,-0.60478663,0.09253664,-0.2129206,-0.539684,0.34291902,-0.25186506,0.31453678,0.16014925,-0.047148585,-0.091930404,0.34486714,0.20913826,0.78066176,-0.11326858,-0.36717728,-0.40575734,0.02605455,0.2837312,-0.28546494,0.20962617,-0.29472378,0.004669098,-0.62817967,0.6816519,-0.2624523,-0.3907875,0.13292967,-0.17420143,-0.022239225,0.48254043,-0.14338307,0.038285635,-0.03562665,-0.21731663,-0.37003607,-0.0015901128,-0.35872588,0.11227064,0.39097685,-0.025205966,-0.17047115,-0.2788156,-0.118072085,0.5308839,-0.058713153,0.38002524,0.1057508,0.12558047,-0.21506211,-0.067940675,0.08727001,0.3444685,0.10956735,-0.060384545,-0.53264886,-0.28401974,-0.2344261,0.25900936,-0.1226817,0.20559852,0.035930283,-0.3011579,0.8461488,-0.17611521,1.175496,0.22924945,-0.30909395,0.12551314,0.51129997,-0.05045111,0.10784253,-0.37675682,0.9117538,0.4994023,-0.014896512,-0.1158464,-0.46603182,-0.010002805,0.43176657,-0.40751088,-0.1767949,-0.04114,-0.4564594,-0.5349247,0.2684514,0.11983533,0.22273558,-0.035254605,0.020687493,0.094931886,0.14586487,0.44816166,-0.5788576,-0.27912152,0.24682035,0.21382026,-0.094268255,0.2783343,-0.45381922,0.5209512,-0.7081283,0.15712725,-0.338193,0.095625795,-0.16022852,-0.30514362,0.21272214,0.11788514,0.38668105,-0.13192275,-0.53895867,-0.055864,0.37945536,0.05180305,0.1964014,0.6619046,-0.3276393,-0.10657134,0.015760962,0.56294566,1.3320968,-0.32798836,0.018721374,0.33007586,-0.33871594,-0.587126,0.39842197,-0.3038393,-0.1516392,-0.09720114,-0.34604466,-0.3669419,0.22389951,0.19184358,-0.00013680458,0.09390853,-0.39261538,-0.26541576,0.2084581,-0.28340694,-0.314979,-0.31630066,0.41590947,0.70587784,-0.25991836,-0.23313943,0.11504397,0.45791194,-0.20595632,-0.4334393,0.035115823,-0.19095668,0.25734892,0.08374974,-0.18413812,-0.06153838,0.21762456,-0.3836598,0.04288676,0.08940036,-0.43690532,0.033496227,-0.19423264,-0.05370059,0.8049417,-0.23070015,0.023223173,-0.6893364,-0.43110326,-0.84725267,-0.5087226,0.26534125,0.13706213,0.015024042,-0.4058573,-0.018918466,-0.022970628,-0.16179578,0.10389112,-0.55480444,0.3460224,0.0978614,0.35145804,-0.25868368,-0.73769295,0.079297796,0.04488025,-0.1828567,-0.6274019,0.5134451,-0.030611511,0.8379816,0.09063903,-0.17283204,0.10065718,-0.25024214,0.22567914,-0.424101,-0.23021092,-0.7852128,0.11188378,602 -247,0.18314333,0.044883262,-0.55512786,0.039179694,-0.22525376,0.080632806,-0.46231157,0.16205476,0.2140639,-0.25465485,-0.008410319,-0.22902806,-0.04951597,0.15052581,-0.088487975,-0.45072982,0.12540506,0.20959102,-0.37347397,0.545221,-0.38809857,0.17292675,0.044813965,0.1845308,-0.086717494,0.154881,0.1611772,-0.27074367,-0.2675797,-0.2432926,0.06319669,-0.15089336,-0.57997626,0.24417087,-0.2775875,-0.27601892,0.23692968,-0.3434566,-0.2544607,-0.6953933,0.10104186,-0.7586677,0.59586596,-0.031933475,-0.2369798,0.3552906,0.026671505,0.26584926,-0.0066525927,0.042935863,0.26012608,-0.41114527,-0.37439856,-0.31060046,-0.21171857,-0.5973332,-0.3645474,-0.09496091,-0.5518297,0.05745393,-0.3730186,0.19158857,-0.1833355,-0.0010294318,-0.18441056,0.04541006,-0.46349043,-0.040721145,0.01888921,-0.13389052,0.29142687,-0.63258404,-0.00769184,-0.09001377,0.18914787,0.0656063,-0.043704152,0.31367674,0.037977256,0.50950307,0.012232034,-0.19570924,-0.3109969,-0.033155885,0.21503644,0.44730484,-0.16461423,-0.08710025,-0.08869307,0.0053275744,0.38597953,0.28541282,-0.026670128,-0.14507768,0.05460624,-0.06079584,-0.39471462,0.20941935,0.55915457,-0.38089937,0.09321865,0.37306896,0.37182453,0.21974693,-0.15950347,0.010108224,-0.18538705,-0.29653543,-0.16705497,0.06395175,-0.12575896,0.4455324,0.050576616,0.27442545,0.53626764,-0.085131265,0.026234364,-0.03375099,0.037305478,-0.018201383,-0.1231771,-0.3341907,0.42319766,-0.6017072,0.20913054,-0.33227822,0.7014212,-0.1417943,-0.7285113,0.40791157,-0.47004,0.06716944,-0.073472485,0.5698001,0.6131398,0.704387,0.06862321,0.82608986,-0.4465231,0.17398554,-0.24074225,-0.26220593,0.29819554,-0.052219152,0.2019773,-0.36599398,0.09028513,0.06075028,-0.19822682,-0.0032718678,0.49837527,-0.24858944,-0.031288482,0.15066034,0.79913074,-0.34634888,0.00536505,0.56493443,1.2405133,0.8079319,0.08730305,1.0747126,0.3980169,-0.20264393,-0.23357268,-0.025877886,-0.7620503,0.15081856,0.36102283,0.46790612,0.23214208,0.32269815,-0.10948517,0.4310449,-0.31176573,-0.18946761,-0.0953736,0.39290288,-0.04199747,-0.15478344,-0.3645057,-0.18858686,0.047726665,-0.039222315,0.17214839,0.3481627,-0.05592036,0.33874854,0.28478992,1.2123824,-0.055496287,0.05870615,0.120379426,0.40538916,0.26222274,0.088242546,-0.047132514,0.31175616,0.26530325,-0.09686344,-0.47541693,0.010812728,-0.28116313,-0.5005068,-0.15184641,-0.11143732,-0.09275588,0.070783176,-0.16485293,-0.21799609,-0.0012084802,-0.2699788,0.39935434,-2.609571,-0.09227784,-0.072454676,0.28814873,-0.13756727,-0.2136844,0.03989865,-0.41283175,0.56722766,0.3770844,0.44946367,-0.36642903,0.34377426,0.53601104,-0.46131018,-0.17494644,-0.61885846,-0.0339315,-0.10177703,0.42917404,0.0032896379,-0.4051884,-0.0073889634,-0.0013832311,0.43544072,-0.1524639,0.048391636,0.3589164,0.34613362,0.051002536,0.26636967,-0.05108142,0.4073372,-0.21618174,-0.16455938,0.15955833,-0.203306,0.3178674,-0.2946044,0.14214364,0.41727692,-0.3095601,-0.59935975,-0.37010622,-0.11885161,1.1775795,-0.37767002,-0.56998515,0.07998326,0.1131525,-0.21256343,0.017546553,0.27482292,-0.13013007,-0.0049732206,-0.60076237,-0.04981121,-0.12840691,0.30395225,0.029579228,0.29824537,-0.49369362,0.6049197,-0.13263175,0.5571349,0.579181,0.32542938,-0.023259068,-0.3499776,0.0812596,0.725858,0.41966,0.07541403,-0.42506483,-0.093569644,-0.06956761,-0.18149047,0.083455555,0.34567055,0.6879031,-0.13451102,-0.0492183,0.30164737,-0.30917743,-0.03538042,-0.1698008,-0.56698,-0.09971943,0.05482482,0.58741075,0.6571619,0.13448524,0.37784874,0.012846595,0.34961718,-0.18262869,-0.43745938,0.48026696,0.5315902,-0.31063065,-0.0025051276,0.4967814,0.38445812,-0.017039236,0.59704006,-0.68752944,-0.480672,0.38845786,-0.044439428,-0.4597701,0.24943966,-0.3049182,0.105972975,-0.8063487,0.28510398,-0.31686,-0.47633988,-0.6349041,-0.16309601,-2.7991018,0.071608044,-0.26041484,-0.08937048,-0.10730676,-0.21548763,0.2972792,-0.397348,-0.53095126,0.17641796,0.24440017,0.44667244,-0.14195254,0.06898997,-0.3123334,-0.34085995,-0.34831378,0.25557908,0.1435364,0.13829231,-0.07543548,-0.37872142,0.020514298,-0.2657542,-0.18928877,-0.012691419,-0.41440022,-0.10377731,-0.14218877,-0.29935703,-0.33107713,0.54639477,-0.57483464,0.029653357,-0.36873874,0.024598125,0.04044699,0.23632996,0.10668852,0.013193329,0.034226917,-0.06523093,0.010569283,-0.29244003,0.2253437,0.077587076,0.16670339,0.5286381,0.012689368,-0.14926411,0.5397699,0.53365403,-0.071996205,0.69322455,0.3208535,-0.20754458,0.3256096,-0.3464392,-0.2454498,-0.553408,-0.3046131,-0.09376653,-0.36749992,-0.4907456,0.02448951,-0.4049717,-0.6919417,0.4888955,-0.012500461,-0.003110981,0.09815897,0.37700567,0.34186268,-0.13444465,-0.16624774,-0.039548494,-0.102336876,-0.45052615,-0.28007218,-0.77049154,-0.46136227,0.05734026,0.93189144,-0.10430661,-0.15593475,0.20441805,-0.21448347,0.115846895,0.1393903,0.12211858,0.044912383,0.3442106,0.15820974,-0.7374559,0.48145455,-0.08119032,-0.08413775,-0.5362635,0.1117208,0.52475905,-0.75955856,0.17932549,0.65448844,0.14850432,-0.04686343,-0.68949217,-0.13945885,0.1702332,-0.28246728,0.3699665,0.13976401,-0.7303499,0.54787916,0.25684443,-0.23075749,-0.7831018,0.42183283,0.014597821,-0.2761084,0.16222978,0.33228588,0.01318973,0.043854818,-0.19567902,0.031991623,-0.46158618,0.37221786,0.114599325,-0.076819114,0.28320757,-0.06588822,-0.20405331,-0.70044214,-0.0014444907,-0.2983762,-0.22319722,0.28704894,0.05679748,0.1418853,0.105624884,0.31582505,0.48406157,-0.4455174,0.031870827,-0.29128316,-0.21328649,0.5346326,0.4560897,0.2954923,-0.38030484,0.52229595,-0.1876222,-0.25439698,-0.14690831,-0.037458822,0.41070825,0.056364644,0.19158818,0.14904837,-0.15821509,0.009452152,0.7123601,0.24213071,0.3454066,0.13636507,-0.17766532,0.4049874,0.04239284,0.098788835,0.01163974,-0.41054535,-0.08995741,-0.189785,0.12147128,0.48795688,0.19749445,0.4723614,-0.16101037,0.013902182,-0.026582178,0.09468152,0.03395693,-0.8052272,0.45303217,0.2794767,0.5146543,0.54448235,0.027689831,0.15044793,0.682715,-0.2772269,0.050666634,0.15387405,0.20558539,-0.33043873,0.46752718,-0.65452695,0.3080296,-0.11227489,-0.019032348,0.22740622,0.1391463,0.4472128,0.93359596,-0.22112392,0.19815466,-0.06325925,-0.20435208,-0.08701532,-0.03503773,-0.05307359,-0.2331583,-0.33288956,0.6961917,0.122120425,0.38929957,-0.2354133,-0.07008365,0.07308496,-0.14958045,0.4524397,0.12956508,0.06169072,-0.029831704,-0.39951175,-0.38776004,0.6210415,-0.08557557,-0.048361473,0.0070121605,-0.16371344,0.2868062,-0.22812204,-0.13466252,0.10734491,-0.51088333,0.14039607,-0.19023448,-0.3420254,0.44744185,-0.0042121173,0.25707728,0.08939854,0.028807975,-0.025013363,0.21908948,0.19533968,0.5641703,0.16511059,-0.28889674,-0.16993706,-0.13843025,0.19660597,-0.19958784,0.07115836,-0.104073524,0.14310627,-0.7581303,0.38658583,-0.35341066,-0.123943046,0.20411886,-0.24362227,-0.082458116,0.46884033,-0.13982953,-0.11808254,0.25122243,0.056263138,-0.31175864,-0.31364334,-0.43902493,-0.050145563,-0.1401713,-0.06745919,-0.20768498,-0.18765642,-0.040563866,0.4105271,-0.026782295,0.040372077,0.18267384,0.1311776,-0.41054222,-0.14009437,-0.024202159,0.4315168,0.08201752,-0.016815368,-0.33966205,-0.47433826,-0.26470527,0.11649735,-0.14561796,0.09058874,0.12063715,-0.37563345,0.7907696,-0.042789616,0.91931194,0.056733925,-0.3772585,0.061032124,0.53004426,-0.083846785,0.03083526,-0.42060414,0.90943235,0.7340375,-0.10916384,-0.04479919,-0.43347564,-0.15513308,0.24180062,-0.30426946,-0.080620065,-0.06308498,-0.6137665,-0.16260096,0.20725688,0.21616806,-0.17129402,-0.022620846,0.18816859,0.11645555,0.32632193,0.3049914,-0.373155,-0.18388812,0.4288794,0.12878606,-0.0008723736,0.170018,-0.29752177,0.33701834,-0.5583567,-0.029692058,-0.47760868,-0.024255145,0.13938524,-0.2093893,0.19798766,0.045066647,0.23277523,-0.34950963,-0.43788877,0.02728039,0.37244365,0.17840888,0.3294769,0.6110871,-0.10993667,-0.07963608,-0.17534284,0.4771953,1.0776832,-0.33389643,0.037931655,0.40116355,-0.32949543,-0.5440445,0.14007153,-0.40294975,-0.03460294,-0.082727164,-0.32612264,-0.40810287,0.16564229,-0.034593843,-0.26361868,0.003585148,-0.59601325,-0.06278421,0.17117378,-0.23771524,-0.23547353,-0.32052153,0.12326436,0.84195554,-0.25355747,-0.17071627,0.011737387,0.35206622,-0.32806018,-0.48238719,0.15768765,-0.32764307,0.24681202,0.3831281,-0.2979239,0.10586543,0.24243027,-0.6443303,-0.044818286,0.27215198,-0.26607144,0.0035837034,-0.3306468,0.3239562,0.601891,-0.07641398,-0.017992584,-0.52974606,-0.510564,-0.84860027,-0.32191274,0.099426076,0.31664628,0.09023097,-0.43604767,-0.0729212,-0.21660021,-0.028302781,-0.09064115,-0.5463733,0.40812626,0.06345753,0.39916092,-0.24581881,-0.9097115,0.15181132,0.106942646,-0.31601527,-0.41873607,0.323032,-0.26180828,0.94704187,0.085523605,-0.02051572,0.10000362,-0.7003442,0.356855,-0.3186423,-0.2501949,-0.6525107,-0.0091790315,616 -248,0.37536266,-0.1973221,-0.46019194,-0.101468526,-0.1992835,0.07548509,-0.25159281,0.43898794,0.22907019,-0.5314903,-0.18401413,-0.074924804,-0.039862435,0.056838408,-0.065069415,-0.42160904,-0.113642804,0.25519365,-0.67532504,0.5327428,-0.32046467,0.3400945,0.020863349,0.31456396,0.116312064,0.2889209,0.03605129,-0.09982594,-0.11480681,-0.21798143,-0.11265612,0.39930186,-0.47056803,0.27941555,-0.25459307,-0.34343165,-0.12390378,-0.48130384,-0.27015096,-0.72123826,0.29667395,-0.87176174,0.48311242,-0.021076052,-0.39076385,0.360548,-0.1339077,0.2634115,-0.2443268,0.156096,0.11222176,-0.048225477,-0.06482691,-0.23032314,-0.24512862,-0.12098387,-0.53054696,0.05192936,-0.3806534,-0.09841079,-0.17734991,0.14243765,-0.26548818,-0.064402066,-0.12951678,0.49010435,-0.39352837,0.010425838,0.15579513,-0.1136383,0.29475135,-0.473416,-0.08240621,-0.087076694,0.4349178,-0.21127532,-0.16676407,0.09780543,0.18770742,0.63594854,-0.054597154,-0.11392684,-0.251675,-0.07968509,0.070427194,0.5124067,-0.020027854,-0.34980354,-0.17188683,-0.18729587,0.20907034,0.20191129,0.15224794,-0.2443444,-0.1662209,-0.09554425,-0.20952167,0.30461863,0.47760457,-0.24237731,-0.22591752,0.34914356,0.6291068,0.091689676,-0.120691866,0.15331273,-0.016900443,-0.4632298,-0.15057604,0.22684582,-0.12966503,0.3933058,-0.18910335,0.2477861,0.4899002,-0.11202196,0.04958266,0.122027546,-0.037021946,-0.055730265,-0.27349907,-0.23673025,0.26417503,-0.41125074,0.09930981,-0.19830285,0.6476692,0.01743696,-0.7393198,0.36556512,-0.47182855,0.13205172,0.0046433806,0.5535185,0.79342777,0.38219157,0.30150318,0.74728733,-0.37194532,0.011956883,-0.26009688,-0.21673264,-0.12742686,-0.060921546,0.028323699,-0.4965053,-0.012171479,-0.044811495,-0.06504005,0.027427305,0.42822984,-0.54491025,-0.11763633,0.16643515,0.607621,-0.34130058,-0.056795683,0.99245626,0.8405916,0.970793,0.07531802,1.0940167,0.2586159,-0.2292672,0.12572584,-0.38435853,-0.6772637,0.22402716,0.30014598,0.2952071,0.1905122,-0.023899388,0.080115035,0.4547296,-0.32682973,0.016240673,-0.34107396,0.06706677,-0.102732226,0.020107124,-0.47143957,-0.29307207,-0.068432875,0.06488789,0.23233542,0.20461161,-0.24096562,0.38497385,0.12009176,1.5516843,-0.19612621,0.0120963855,0.1594699,0.28583065,0.20672144,-0.16365299,-0.12058925,0.3307378,0.38527644,-0.12425954,-0.6752443,0.02601823,-0.08100876,-0.40029004,-0.114993595,-0.27832133,0.042328477,-0.08274021,-0.46507788,-0.19003741,-0.0990049,-0.550757,0.45512372,-2.6973042,-0.24108331,-0.07147029,0.33554,-0.22222322,-0.3312052,-0.25832394,-0.49551436,0.466162,0.28894073,0.39525393,-0.5654566,0.3843009,0.35396805,-0.49624655,-0.098036304,-0.66830313,0.053473905,-0.06835021,0.21338752,0.040640034,-0.14219491,-0.14843622,-0.070367835,0.4519205,-0.0403401,0.14458431,0.3049382,0.3057913,0.076962106,0.40163344,0.04287853,0.4741566,-0.27542928,-0.24951348,0.4247338,-0.44070756,0.14029689,-0.17986314,0.14708821,0.39731488,-0.6474264,-0.6589283,-0.84141695,-0.33823156,1.234319,-0.16999337,-0.40892062,0.24446699,-0.41605288,-0.31242654,-0.032629583,0.6585056,-0.049397763,-0.21853147,-0.8823784,-0.05682111,-0.09364642,0.24938303,-0.029875942,-0.052006938,-0.43277058,0.57952046,-0.14074616,0.5224628,0.33998507,0.14538316,-0.2587512,-0.32836634,0.11945719,1.0045781,0.36714092,0.112444736,-0.2726105,-0.33029854,-0.3821726,-0.077954665,0.04819746,0.5915304,0.68173766,-0.060772788,0.11300321,0.32374227,-0.06494267,0.17046985,-0.2144041,-0.115789846,-0.2192316,0.15299352,0.6080906,0.44011512,0.08470273,0.34662062,-0.08395929,0.2732558,-0.33100653,-0.41177544,0.43687412,0.6236028,-0.1371067,-0.28709218,0.60041165,0.48353326,-0.21896304,0.45242015,-0.5302019,-0.38195893,0.28308257,-0.21589006,-0.43367508,0.32604012,-0.32754198,0.35679913,-0.81243,0.15945038,-0.23221473,-0.5693188,-0.51240754,-0.081842996,-2.5446181,0.17020513,-0.05178182,-0.22853677,-0.065506674,-0.31519264,0.20496972,-0.4207951,-0.54463536,0.2806085,0.065937005,0.7366932,0.038926557,0.024331857,-0.2790203,-0.36569336,-0.25314456,0.13006988,0.051603515,0.42606163,-0.04408147,-0.43416303,-0.024014238,-0.22502436,-0.24751942,-0.06419475,-0.55904937,-0.3744171,-0.13574147,-0.57949334,-0.25985807,0.580207,-0.19321957,0.16216765,-0.23382814,-0.11990328,-0.08895361,0.341921,0.10648702,0.19381009,0.084994264,-0.064884745,0.008741438,-0.23659854,0.2561562,-0.049335826,0.06459939,0.31113145,-0.21331953,0.3076575,0.26211554,0.5960658,-0.22825132,0.93246335,0.51309246,-0.039276306,0.2824097,-0.2083246,-0.3054231,-0.49363798,-0.1406447,-0.06627622,-0.5072547,-0.40718612,-0.1598161,-0.31518108,-0.8287634,0.5423152,0.0818062,0.104676686,0.090471536,0.27928156,0.48624125,-0.14333434,-0.05955317,-0.10057276,-0.20127775,-0.3347135,-0.29763442,-0.69366723,-0.40287766,0.10883059,0.9033987,-0.078147314,0.08111335,0.13773756,-0.1746727,-0.044300873,0.18868664,0.13801913,0.11418344,0.42555457,-0.017188024,-0.4315552,0.38694632,-0.013590292,-0.23721132,-0.5039378,0.21453829,0.6518614,-0.62757736,0.50512564,0.28727046,0.08480382,-0.26071897,-0.43485162,-0.115336545,-0.0656834,-0.26771316,0.41859168,0.29529998,-0.7272542,0.48204497,0.28204864,0.0765173,-0.8166883,0.40801865,-0.10281323,-0.25674143,-0.082727864,0.34910524,0.03999935,0.089698344,-0.14874265,0.13671471,-0.38966134,0.25951424,0.19459601,-0.08555288,0.30520508,-0.34937745,-0.107768856,-0.6566134,-0.09174911,-0.65718323,-0.27065217,0.19083446,0.014533409,0.090027615,0.2562266,0.03126589,0.41601464,-0.23411258,0.16966924,-0.19270486,-0.14025125,0.20715848,0.4007888,0.40010923,-0.3024601,0.5443955,0.013900566,-0.0049984497,-0.3042521,0.1161058,0.47031122,-0.015225601,0.36220646,-0.23938313,-0.28441018,0.30269846,0.73494756,0.18349454,0.39104107,-0.05288375,-0.09933507,0.13408467,0.11435863,0.21232122,-0.11096382,-0.4000648,-0.076506525,-0.11740685,0.1629614,0.3606612,0.13807923,0.31173995,-0.0660026,-0.24302131,-0.0013064008,0.20373826,-0.073931485,-1.1029805,0.3357286,0.16819604,0.8289646,0.5062657,0.046648867,0.013504203,0.5905031,-0.2664738,0.15617935,0.11010682,-0.24328159,-0.48353058,0.49661523,-0.6388442,0.4862621,0.0018866042,-0.1052374,0.085747465,-0.11743234,0.42347464,0.6412566,0.001815094,0.19969511,-0.01149627,-0.20568632,0.20858835,-0.23376665,0.024876198,-0.57225853,-0.17905858,0.7085101,0.44574395,0.5011183,-0.14017268,0.012435959,0.11335037,-0.06932737,-0.067754336,0.1221522,0.14900045,-0.010422317,-0.57309544,-0.13098152,0.42291203,0.073538564,0.15633461,0.1092931,-0.35763088,0.25930747,-0.010423259,-0.008924794,-0.20420672,-0.6305505,-0.04029832,-0.39622876,-0.25094542,0.34110022,-0.084720835,0.19781929,0.2104848,0.049827315,-0.26135683,0.27485606,0.20561586,0.77084476,0.11638485,-0.09163891,-0.3145247,0.29874986,0.18346772,-0.2960687,-0.20485137,-0.2679482,0.11822103,-0.830982,0.36853272,0.0010757287,-0.37953588,0.301017,-0.10878766,-0.005998097,0.57532316,-0.049701564,-0.079069644,0.116388604,-0.24776857,-0.46025866,-0.22193673,-0.19871496,0.28664348,0.2919943,0.06341725,-0.045498516,-0.018981857,-0.078886524,0.5304911,0.19132586,0.35926044,0.27864066,0.08914766,-0.38465407,0.06820424,0.20623995,0.4567626,-0.009910003,-0.038707145,-0.19868775,-0.36949998,-0.4144725,0.31272516,-0.0044918936,0.3523964,0.084822804,-0.17650019,0.684582,0.12574233,0.930143,0.07065005,-0.21187381,0.12442339,0.4274053,-0.043891024,-0.066200204,-0.2564216,0.886896,0.45612806,-0.09425742,-0.034193534,-0.22099677,-0.12503797,0.090522006,-0.2381882,-0.024017723,-0.035031445,-0.6581466,-0.3407716,0.24747628,0.2552943,0.20056944,-0.119706884,0.13856557,0.12663232,-0.103183046,0.22843644,-0.34539005,-0.077095814,0.3396818,0.18631741,-0.06248762,0.10599964,-0.4081769,0.3609658,-0.55703837,0.041955885,-0.19698669,0.12284196,-0.15287669,-0.2652048,0.26563513,0.020386934,0.2076666,-0.31018433,-0.4222756,-0.30506238,0.45029142,0.049656637,0.1383621,0.45477298,-0.2712597,0.11493647,0.13135,0.54985803,0.97114605,-0.08628836,0.09325884,0.35479742,-0.22984396,-0.6429249,0.20653628,-0.2703523,0.20934287,0.0042999107,-0.21711129,-0.30608165,0.2973272,0.21375299,0.13336226,0.074442126,-0.5881755,-0.10966412,0.22974978,-0.22601365,-0.15409942,-0.24235554,0.05171334,0.50844616,-0.19883344,-0.41233584,0.043806024,0.17056678,-0.36811438,-0.5413893,0.026814302,-0.31635472,0.21370731,0.072509654,-0.40512934,0.039651383,0.07314472,-0.39865354,0.0068496587,0.121455215,-0.33178583,-0.0037174146,-0.46030605,0.01565855,0.9085693,-0.15968555,0.22318605,-0.3611756,-0.5723245,-0.88121927,-0.25481686,0.4436052,0.10762175,0.06314586,-0.6064824,0.12176439,-0.23547548,-0.094518505,0.14430732,-0.29665157,0.529287,0.19736856,0.43145102,-0.093771234,-0.7880681,0.193917,0.07587214,-0.336922,-0.5010169,0.51892483,0.11675592,0.8245411,0.086861916,0.12243393,0.23839357,-0.6256374,0.0039269426,-0.22200139,-0.10294779,-0.7329848,-0.07516609,623 -249,0.2904502,-0.3165589,-0.53093475,-0.0662539,-0.14361387,0.078852415,-0.19175711,0.6095651,0.02630756,-0.5570209,-0.19405699,-0.14220962,-0.15474294,0.48818693,-0.19571276,-0.4171916,-0.029428221,0.13199177,-0.5871408,0.38159263,-0.3764495,0.18607266,0.14786305,0.37539965,0.22776279,0.24186891,0.02505224,-0.13256739,-0.20627238,-0.15358576,-0.005339511,0.010919412,-0.4026509,0.2021622,-0.2922783,-0.4665387,0.027742933,-0.51034456,-0.31853598,-0.6434328,0.29659483,-0.7895091,0.3509817,-0.09845608,-0.2881897,0.09828053,0.038715005,0.52216953,-0.2359912,-0.054881383,0.25073466,0.0013668507,-0.066839695,-0.037674554,-0.12914346,-0.15088981,-0.565383,0.12040582,-0.36845416,-0.0883179,-0.019408436,0.17690843,-0.21284072,0.24919571,-0.15013565,0.34403104,-0.41602358,-0.11797997,0.28644258,-0.17456831,0.2243398,-0.5548193,-0.12333485,-0.11953448,0.13585609,-0.1199862,-0.15080906,0.24836329,0.16153145,0.48813117,0.017642727,-0.10021494,-0.22087125,-0.03835624,0.16288432,0.4581882,-0.12601754,-0.260039,-0.18399122,0.022612007,0.20013857,0.04089727,0.088947564,-0.2529494,-0.07520342,0.050907824,-0.30969143,0.10841491,0.45263752,-0.23268099,-0.11673382,0.26452625,0.65763986,0.2084692,-0.013886535,-0.04859586,0.07178781,-0.50935,-0.19772668,0.11122796,-0.04420028,0.48132858,-0.053692717,0.4172313,0.580097,-0.12042307,0.18342969,0.033779487,0.004070576,-0.1813972,-0.23313233,-0.43687773,0.15048046,-0.43998832,0.11080349,-0.23294432,0.8127509,0.16157468,-0.6723269,0.29387745,-0.52799433,0.15230848,-0.0745358,0.43107638,0.5715104,0.40846846,0.115938805,0.6649238,-0.37541458,0.18404177,-0.25290626,-0.22679947,-0.014677223,-0.120386496,-0.12557557,-0.41981477,0.028967874,-0.035485104,-0.0040624538,-0.049225435,0.22333759,-0.51424825,-0.021694621,-0.051866394,0.94829625,-0.25075978,-0.008168308,0.7871548,0.88625234,1.0365129,0.048887838,1.0488236,0.17187856,-0.2880902,0.21582586,-0.12582594,-0.6559582,0.33616766,0.42757738,0.18267232,0.23204105,-0.00060644647,-0.11148253,0.5899616,-0.41202527,0.16382237,-0.18842728,0.039214745,0.018147258,0.02953566,-0.41575778,-0.21468046,-0.031514574,-0.12576425,-0.10169789,0.2101916,-0.12347669,0.5242504,-0.06652361,1.6952689,-0.12956183,0.11893128,0.104798965,0.39318937,-0.05667072,-0.19137505,-0.1577807,0.02766941,0.39578775,0.033066537,-0.5895589,0.023897585,-0.1967939,-0.5065024,-0.11254191,-0.20728382,-0.12570444,-0.23725262,-0.5754019,-0.15594912,-0.08014397,-0.1708902,0.22245234,-2.6998632,-0.17388473,-0.1349918,0.24339609,-0.4329268,-0.38049158,-0.056383174,-0.4382871,0.4679794,0.301926,0.44261697,-0.47470963,0.41145024,0.24601483,-0.39253718,0.08274464,-0.57030666,-0.13341741,0.12399001,0.20343977,-0.0078206975,0.010615524,-0.09297594,-0.023665512,0.34171835,-0.17980215,0.050843105,0.31740913,0.19301824,0.16090514,0.42148903,0.013756807,0.5182525,-0.5995629,-0.070859484,0.25436527,-0.37391743,0.3394193,0.010181123,0.207886,0.35102004,-0.6206807,-0.6160085,-0.6777142,-0.35182163,1.3564552,-0.14781195,-0.23314008,0.23424673,-0.3212797,-0.14222375,-0.16551773,0.34819156,-0.04951315,-0.09560454,-0.81891507,-0.1290964,-0.10960458,0.22174712,-0.08035286,-0.027858075,-0.3622195,0.44393793,-0.0961753,0.4309519,0.4710181,0.09367504,-0.0136858625,-0.2644405,0.07039289,0.8155136,0.37944025,0.18537627,-0.16430311,-0.14532262,-0.4321007,-0.072766624,0.11497499,0.35835648,0.8217861,0.024714308,0.06643116,0.20612982,0.08239158,0.08459512,-0.037560407,-0.34575072,-0.20470276,0.0145737585,0.5243334,0.49383557,0.011011684,0.28390285,-0.1690485,0.42285264,-0.17018977,-0.4314607,0.3884374,0.551349,-0.19305754,-0.22350378,0.46620873,0.5382251,-0.20973179,0.3600189,-0.5224124,-0.32437167,0.3714328,-0.04878163,-0.4533264,0.14330824,-0.32112834,0.24268907,-1.0032122,0.2581662,-0.353295,-0.5142638,-0.67134017,-0.22560316,-2.7017577,0.17392002,-0.14891906,-0.25520656,-0.037227567,-0.16315596,0.26749247,-0.48258194,-0.63886577,0.07078549,-0.027948497,0.63170177,0.06823274,0.057040673,-0.17308593,-0.15558039,-0.3078114,-0.00983843,0.22764811,0.2543742,-0.04928356,-0.45948464,-0.20493793,-0.30711606,-0.33217338,0.16888686,-0.738483,-0.5175155,-0.19616805,-0.4240431,-0.2863801,0.607102,-0.20829383,-0.022598736,-0.018131668,-0.041173052,-0.12648644,0.35813078,0.17457335,0.14940673,0.080876574,-0.12698464,0.0054169972,-0.3493868,0.09071604,0.25822812,0.37327096,0.34820464,-0.13351995,0.41452745,0.5072764,0.85859716,-0.13742433,0.59151554,0.4815573,-0.09754009,0.34006223,-0.3023846,-0.35861352,-0.38721988,-0.07395278,0.007951061,-0.28767028,-0.45644352,0.19771534,-0.3057393,-0.8468474,0.43264267,0.03617354,-0.12479803,0.11292134,-0.008237457,0.45639974,-0.13296872,-0.11980049,-0.07663584,0.040876262,-0.4894843,-0.42328456,-0.7489327,-0.5223872,-0.04223576,1.3630874,0.011065443,0.046934437,0.09019751,-0.3468529,0.13975643,0.0700297,-0.08339591,0.081896394,0.29246762,-0.21541208,-0.67442113,0.5298322,-0.014408008,-0.19598252,-0.41290137,0.14823659,0.7288467,-0.584539,0.33591557,0.31048012,0.06840896,-0.14821224,-0.29901227,-0.07961833,-0.105933495,-0.21014659,0.2855983,0.12094722,-0.47902745,0.30724603,0.45364726,-0.083613046,-0.78868777,0.28190458,-0.015093449,-0.06228801,0.08638625,0.26478508,0.0036401947,0.03366723,-0.12727384,0.14714356,-0.34017503,0.2498825,0.3669831,-0.011317895,0.2519835,-0.2822887,-0.102309495,-0.514241,0.12123908,-0.6034391,-0.15672669,0.3616641,0.08118736,0.1256086,0.049831867,0.22241111,0.30769023,-0.21546176,0.06016217,-0.077807315,-0.29779068,0.3050131,0.42520416,0.4075717,-0.45802963,0.54815686,0.12548807,0.009961366,-0.11391498,0.030040229,0.4477302,0.08744578,0.3383867,-0.13075437,-0.16929068,0.22459364,0.76004666,0.23973863,0.4519453,-0.031111335,-0.15325664,0.10559617,0.09967926,0.067673445,0.11089823,-0.5673944,0.10783421,-0.030556956,0.15996546,0.41731542,0.11078338,0.36187106,-0.028943997,-0.21515647,-0.013945715,-0.008984173,-0.10432002,-1.2100587,0.5238769,0.17473133,0.75234574,0.4259262,0.021481814,0.010864735,0.5984242,-0.16085257,0.20386294,0.29957166,-0.0767278,-0.56845593,0.58750147,-0.64462346,0.56125104,-0.008600926,0.051209185,0.079345554,-0.11046269,0.59575397,0.65675825,-0.046909347,0.044771235,0.0010009249,-0.25612536,0.035769723,-0.43995243,0.09257517,-0.5408847,-0.22545858,0.62485284,0.44297943,0.2692827,-0.09309553,0.007730353,0.21650933,-0.044934914,0.32907507,-0.14046855,0.14819917,-0.057350747,-0.62728626,-0.25536975,0.47697675,-0.07218053,0.2682265,0.07271004,-0.3226163,0.20527752,-0.025023896,0.120805055,-0.1267413,-0.66097337,0.118719436,-0.4569455,-0.32071027,0.17687778,-0.048639577,0.35168302,0.15274803,0.05668562,-0.37378624,0.48833448,-0.24342528,0.8212997,-0.17795406,-0.2609625,-0.24672018,0.21066742,0.24975446,-0.21892901,0.0026916584,-0.29295272,-0.07162481,-0.54617494,0.40281782,0.004835347,-0.28194442,0.20853141,-0.116383865,0.0075300178,0.40653923,-0.06847247,0.05467209,0.05548208,-0.066977166,-0.28508118,-0.19296335,-0.14925165,0.28030816,0.2462209,0.19924851,-0.054545403,-0.05979585,0.029700283,0.52835685,0.011841858,0.3891446,0.41250318,-0.008477831,-0.44683692,-0.21852306,0.08343257,0.4246684,0.119433776,-0.15192227,-0.3826458,-0.25025457,-0.2369073,0.3165458,-0.22748613,0.45886612,0.14581458,-0.28270525,0.6998319,0.06472142,1.1637421,0.053162042,-0.32838318,0.08991159,0.39641604,0.0069181044,-0.07637381,-0.4927443,0.738817,0.38134795,-0.22488925,-0.14950113,-0.41471666,-0.06043589,0.07433537,-0.12729599,-0.20989677,-0.17748652,-0.6469271,-0.31937382,0.13311547,0.28858554,0.20228948,-0.09750752,0.02060715,0.1462157,-0.08108582,0.3613196,-0.40812337,-0.22024888,0.2811835,0.14133495,-0.10152958,0.09731229,-0.6155832,0.41450033,-0.54484177,0.09223843,-0.07564565,0.036604602,-0.119437374,-0.3480517,0.24145566,-0.04662756,0.32957318,-0.394295,-0.37488744,-0.25653937,0.53202397,0.165883,0.2153608,0.6249525,-0.24065581,-0.09204557,0.084198155,0.40909684,0.8258144,-0.3449782,0.1375468,0.32973498,-0.15027046,-0.43143126,0.2633707,-0.21816893,0.2519742,0.04488183,-0.22536527,-0.59175324,0.33269483,0.25265703,-0.22482738,0.10367792,-0.5418016,-0.12844516,0.25324383,-0.26189274,-0.32674038,-0.45376617,0.059504524,0.4709376,-0.28127763,-0.32279924,0.15127233,0.28014565,-0.16188951,-0.2917057,-0.033872955,-0.3496643,0.10820497,0.07317102,-0.3119885,-0.14862277,0.06464036,-0.35120112,0.07561759,0.04472708,-0.4075232,-0.0891216,-0.27371058,-0.1003414,0.80743504,-0.010554981,0.16724046,-0.523872,-0.33806744,-0.73790437,-0.45569414,0.5408433,0.20443045,0.041670203,-0.56518805,-0.053949654,-0.0695444,-0.09422334,-0.0052305977,-0.30050468,0.46012205,0.15831563,0.31582877,-0.08337115,-0.5544863,0.22657888,0.06474561,-0.1712493,-0.36034578,0.43291584,0.06760752,0.75680864,0.020529483,0.14858921,0.23612452,-0.45980608,-0.006360998,-0.20784335,-0.20840953,-0.5145379,0.0034323453,628 -250,0.39726117,-0.16520433,-0.47310308,-0.1309802,-0.3053003,0.067909434,-0.07420781,0.67216164,0.31355268,-0.2966989,-0.21808667,0.0011788766,-0.053188723,0.33006632,-0.18066102,-0.5912941,-0.01493779,0.17534848,-0.47195008,0.639658,-0.40834844,0.32219175,-0.11401783,0.5249088,0.23620541,0.19843367,-0.065896295,0.12086687,0.08225297,-0.13464017,-0.03865131,0.41979367,-0.4230652,0.112414084,-0.23714057,-0.5075053,-0.07477486,-0.30441415,-0.46562907,-0.79786164,0.21032105,-0.702286,0.6696624,0.11442685,-0.34859154,0.0034318487,0.08598648,0.3311971,-0.21938697,0.10247866,0.013156891,0.00653464,0.008995243,-0.1657487,-0.3041757,-0.42132,-0.6364392,-0.13909858,-0.45911497,5.3115687e-05,-0.2071211,0.23904501,-0.20496108,-0.08389605,-0.13743526,0.43330383,-0.45260936,0.15776621,0.17132936,-0.12768047,0.17467573,-0.660396,-0.25053322,-0.021919187,0.18323661,-0.15336227,-0.39338362,0.31657556,0.28595093,0.33862844,-0.094522685,-0.16199562,-0.32085755,0.0025031886,-0.13212924,0.5477765,-0.3002498,-0.3936639,-0.22621666,-0.036565542,0.6082316,0.39317593,0.053233847,-0.27488562,-0.14938353,-0.14419055,-0.20120424,0.4561947,0.61475253,-0.2340162,-0.13411781,0.365998,0.4234652,0.3112182,-0.19493242,0.13620707,0.0076241693,-0.55879223,-0.07848236,-0.052568123,-0.1853742,0.4476761,-0.051234167,0.12979253,0.5694436,0.06066062,-0.108911596,0.0854489,0.1510546,-0.09384167,-0.2854931,-0.45652482,0.27972144,-0.42914313,0.24225393,-0.23582767,0.55828947,0.0038625677,-0.59908885,0.27978358,-0.63485724,0.15117577,0.010934212,0.47380894,0.72109073,0.53414243,0.19824249,0.6012452,-0.26177981,-0.014566281,-0.014359653,-0.09890429,0.09449165,-0.105110124,-0.14205363,-0.48988917,0.108824536,0.008333746,-0.14836644,0.4688109,0.47005495,-0.6793636,-0.14388223,0.08997836,0.758949,-0.26639274,-0.025102245,1.0157987,1.071088,0.8214255,0.020634007,1.0913824,0.23438995,-0.13816354,0.00817159,-0.3110687,-0.55293053,0.22917806,0.36042213,-0.5276057,0.38886756,-0.018372476,-0.21734434,0.4406783,-0.34817427,-0.14886348,-0.025949454,0.14121029,0.022779686,-0.21896854,-0.5028854,-0.2405719,-0.0048982026,0.06912418,0.24619684,0.25514513,-0.32764232,0.445387,0.02643436,1.2137372,0.049462628,0.040634807,0.14907509,0.43252957,0.3819373,-0.17128102,0.10052731,0.32384792,0.41846457,0.042268105,-0.431971,0.15611926,-0.29788834,-0.38804358,-0.037531033,-0.23012085,-0.25327283,0.03088777,-0.53021806,-0.13994876,-0.08038766,-0.051711988,0.41791305,-2.682457,-0.14214583,-0.19104776,0.32249445,-0.092055336,-0.32681638,-0.18033455,-0.43689096,0.44370562,0.35851878,0.5429398,-0.6752401,0.30615157,0.5507483,-0.6639446,-0.08421873,-0.6409323,-0.1373652,0.08368524,0.286996,0.020250598,0.031182019,0.2305327,0.28398302,0.5611101,0.019275943,0.16080703,0.32347742,0.42700014,-0.16912119,0.2999045,-0.0067353803,0.4814464,-0.33244964,-0.23277475,0.23699465,-0.40216252,0.19912784,-0.111539155,0.0723867,0.61465085,-0.47556323,-0.946331,-0.5308522,-0.04013828,1.0820119,-0.09192223,-0.47252136,0.14165297,-0.5060995,-0.23945837,-0.025563657,0.70475703,-0.20848042,-0.05005936,-0.7977955,-0.17005304,-0.12566815,0.22454993,-0.059913475,-0.03325016,-0.31495684,0.6104049,0.0064688763,0.5159347,0.32822233,0.22610618,-0.47263825,-0.61914426,0.14278479,0.669953,0.4906783,0.18236575,-0.22690244,-0.15176338,-0.21375038,0.10679865,0.116523035,0.6981525,0.49825478,-0.18423288,0.09790707,0.38079152,0.1573518,-0.02285531,-0.2836137,-0.21924902,-0.12178678,0.13888314,0.47157162,0.7934592,-0.229776,0.23498288,0.039194677,0.49832222,-0.27924067,-0.6126227,0.52028656,0.9550449,-0.31068102,-0.34534746,0.66296834,0.44746882,-0.10368948,0.45630664,-0.6907886,-0.24523668,0.461924,-0.08288921,-0.3847769,0.31940186,-0.3136597,0.20670967,-0.8668682,0.32436725,-0.30625707,-0.4856733,-0.6915904,-0.064758375,-3.066731,0.13299546,-0.2957771,-0.093972854,-0.20579518,-0.2902922,0.13775311,-0.7041094,-0.65050215,0.27211842,0.13546576,0.5110199,-0.16652432,-0.06277123,-0.18192773,-0.45540985,-0.18640545,0.24281836,0.24921481,0.45844734,-0.002728053,-0.5013157,-0.14798322,0.029730698,-0.5546979,0.0046076537,-0.6811066,-0.33065587,-0.1308563,-0.7121946,-0.02007701,0.55348724,-0.29409784,0.06839609,-0.26166067,0.050372664,0.05172531,0.20379446,0.19606747,0.14741199,0.07640572,-0.035142995,0.14767697,-0.21424434,0.31092727,0.067969844,0.054644473,0.2753091,-0.1433701,0.10858714,0.46686193,0.7182707,-0.24328277,0.8674924,0.47617996,-0.023835966,0.3546173,-0.23907448,-0.34353825,-0.657628,-0.26487634,-0.12515888,-0.36976737,-0.34933627,-0.16286182,-0.4483041,-0.8226003,0.5328671,-0.021058798,0.15877174,-0.03961622,0.120696194,0.51663935,-0.20188825,0.00011705359,-0.08861299,-0.16504751,-0.42606142,-0.29575032,-0.6093385,-0.3820228,0.14218503,1.0770032,-0.23208697,0.123142466,0.12320239,-0.14487438,0.019165868,0.20918776,0.0385882,0.09174187,0.37487835,-0.19125026,-0.5314751,0.22685733,-0.13000947,-0.46690625,-0.73651904,0.3211713,0.6555946,-0.6109558,0.610908,0.30363002,-0.026942601,-0.41830853,-0.5500255,-0.099932656,0.1760857,-0.11742959,0.5798927,0.24926968,-0.6856402,0.39775607,0.29440364,-0.32072908,-0.59137255,0.7169183,-0.14422578,-0.4217214,-0.099706315,0.42510286,0.18887584,-0.028778942,-0.10599975,0.1449944,-0.21475694,0.28592205,0.1138362,-0.24251503,0.4076093,-0.24543364,0.03181033,-0.973694,0.07669076,-0.49550676,-0.3169255,0.17909907,-0.14348151,0.05491804,0.04327261,-0.06486222,0.33142328,-0.26405576,0.14498994,-0.18962282,-0.2934722,0.3445774,0.45624098,0.50322723,-0.18971176,0.61046356,0.09347414,-0.06489953,0.07531055,0.24749976,0.42155218,0.029259972,0.47315773,-0.07458775,-0.09609414,0.29659215,0.68099827,0.21340998,0.20505565,0.17005157,-0.08797164,0.041298963,0.10510759,0.18131796,-0.21914127,-0.38406125,-0.02781384,-0.37880757,0.13503557,0.5185644,0.16704628,0.21742053,-0.041883405,-0.43144545,0.1290858,0.25042465,0.22235806,-1.5677516,0.23126908,0.22631389,0.79640985,0.38277638,0.2692026,-0.089314856,0.53049165,-0.2827644,0.04443095,0.4945995,0.19902293,-0.2738652,0.4838075,-0.6815518,0.54385465,0.06570435,0.046291836,-0.00926607,-0.0075271446,0.38601276,0.8453864,-0.067692,0.009899169,0.0355961,-0.2973457,-0.029974291,-0.27114168,0.115935184,-0.4586225,-0.3741179,0.77302235,0.4738535,0.35689735,-0.38129446,0.015718063,0.19035082,-0.07518109,0.0010928154,0.039056357,0.08742965,-0.27621138,-0.448922,-0.09507959,0.50776094,-0.039936464,0.07132555,0.090563945,-0.2953915,0.23028952,-0.12634462,0.14872204,0.036569778,-0.79605335,-0.14473157,-0.42233965,-0.39889345,0.54424226,-0.23751375,0.2321596,0.14688455,-0.0016347875,-0.37489128,0.4235206,-0.005775825,0.84483504,-0.0042652288,-0.055680156,-0.14563586,0.30441916,0.2672684,-0.1436034,-0.068656646,-0.27384678,0.176554,-0.44883394,0.31537044,-0.006238719,-0.3112174,0.025129234,-0.083041996,0.10373106,0.40521508,-0.20486537,-0.31067994,0.060589958,-0.06585918,-0.38183555,-0.3290079,-0.07387926,0.23331733,0.27281436,0.122773886,-0.024277082,-0.103054814,-0.1387664,0.42804858,0.029496344,0.37058428,0.43015358,0.08617425,-0.33701578,-0.005719348,0.1404043,0.47186995,-0.11655851,-0.13040449,-0.2262318,-0.5034668,-0.42130062,-0.0048424243,-0.15582074,0.31922573,0.060652874,-0.18851444,0.7258452,-0.061866794,1.0756735,-0.05432574,-0.50188017,0.16791086,0.49727,-0.023430578,-0.052844565,-0.18090588,1.0853488,0.64845186,-0.16111515,-0.09384956,-0.24672303,0.00056595803,0.2579182,-0.29149714,-0.13161065,-0.033435706,-0.58333904,-0.12396488,0.2012652,0.24713477,0.1337303,-0.11195612,0.03427411,0.24423712,0.063467376,0.23323509,-0.55299383,-0.0947735,0.22307625,0.33104923,0.048489504,0.083781525,-0.53513646,0.38999605,-0.3677948,0.08613469,-0.43506292,0.18762502,-0.2894099,-0.2604848,0.17383493,-0.116949014,0.33792263,-0.4606443,-0.33035436,-0.35380083,0.50559366,0.053079892,0.023138108,0.56881607,-0.27075627,0.089458995,0.09184766,0.54682773,0.98276806,-0.36677748,-0.13473186,0.3924907,-0.56699646,-0.5100653,0.20415539,-0.40926012,0.2322885,0.03266646,-0.14034203,-0.42997158,0.2313268,0.012486505,0.19225614,0.017822884,-0.6596762,-0.11116299,0.29062775,-0.26121363,-0.16964197,-0.45023742,0.23539896,0.5248598,-0.15927607,-0.52190703,-0.0041175503,0.15565933,-0.15242335,-0.60826,0.0939789,-0.23699537,0.3376522,0.06995846,-0.39596665,-0.11012853,0.036698792,-0.44839725,0.08754091,0.14211613,-0.29865283,0.08215151,-0.3389359,-0.08837329,0.938244,-0.31656298,0.19374943,-0.59628326,-0.44516098,-0.8136533,-0.40586898,0.35821375,0.4505817,-0.07940022,-0.9404711,0.080317855,-0.17063905,-0.2446169,-0.047803592,-0.18311357,0.5602112,0.17979033,0.4474598,-0.127402,-0.8037171,0.19407915,0.00025314986,-0.22436129,-0.5669787,0.554042,0.09164186,0.8280819,0.10502681,0.14181353,0.21068859,-0.6427778,0.07224801,-0.25831494,-0.20234558,-0.676339,0.10719843,634 -251,0.3504816,-0.07303807,-0.40722477,-0.20314376,-0.2006864,0.15821233,-0.11497805,0.3669505,0.13731225,-0.24981457,0.012765076,-0.22190234,0.13488741,0.6721775,-0.012102008,-0.5904887,0.10195456,0.15158473,-0.8352787,0.5546844,-0.38923132,0.36233297,-0.11151869,0.26149094,0.32846877,0.3314904,0.19871648,-0.209513,0.048407905,0.14808871,-0.24031736,-0.04792816,-0.3099719,0.07849414,0.00087274314,-0.14371465,0.030643377,-0.27977654,-0.53557473,-0.5738238,0.39756647,-0.69115144,0.36936647,-0.098290585,-0.22428153,0.19453265,0.07826892,0.3405865,-0.50875103,-0.095887296,0.1951547,-0.017288122,-0.04114093,-0.056419495,-0.26481408,-0.43309647,-0.4532443,0.002185446,-0.58861274,-0.2798215,-0.4194803,-0.025536507,-0.20286302,0.11262372,-0.031235533,0.15671529,-0.5353186,0.101655915,0.23266383,-0.1466821,0.00039422512,-0.43392906,0.06709518,-0.18123564,0.25941885,-0.056847926,-0.22592312,0.4782178,0.2032974,0.42826444,-0.06354942,-0.08925438,-0.18294708,-0.14556,0.087666854,0.46947682,-0.07614349,-0.37937087,-0.21089397,0.030106226,0.058006503,0.06801758,0.13657634,-0.39375365,-0.16939044,0.04134915,-0.19363464,0.3235745,0.35877848,-0.44907156,-0.27020633,0.43000492,0.48718452,0.2639955,-0.21773002,0.017916627,-0.010465604,-0.44315085,-0.18061092,0.034225073,-0.24916273,0.41285288,-0.15565768,0.30170307,0.74336225,-0.16036408,0.04272052,-0.16953005,-0.010932378,-0.19395371,-0.08660641,-0.09845731,0.012858014,-0.51276815,0.13252485,-0.014459219,0.7315299,0.29135817,-0.5946755,0.3929757,-0.49234003,0.29652965,-0.17179486,0.42965105,0.74428374,0.3648972,0.14363939,0.744421,-0.43708992,0.25814825,-0.04622727,-0.34513098,0.19572182,-0.2581462,-0.20471288,-0.56126994,0.056038175,-0.010692918,-0.22969219,0.10061563,0.42670146,-0.481083,-0.03319818,0.016598014,0.86245453,-0.37260374,-0.090678446,0.45282844,0.9073418,0.89823127,-0.03269718,1.0351179,0.39090756,-0.32940954,0.33846596,-0.42082658,-0.78052014,0.19132608,0.39361137,0.088475086,0.4347126,0.09469342,-0.088427976,0.26916316,-0.37343916,0.18850523,-0.096569456,0.10852562,0.008746815,0.033349574,-0.3402232,-0.2905055,-0.18175086,0.008975772,0.03390765,0.3050537,-0.2824625,0.33881563,-0.0126137175,1.9636328,0.10487851,0.046681907,0.023769872,0.68969893,0.21436383,-0.20714998,-0.31539997,0.30924928,0.46878487,0.0103849415,-0.66237885,0.09887376,-0.38021082,-0.5296989,-0.13714634,-0.42475623,-0.14095683,-0.040102843,-0.442245,-0.14838435,0.08701747,-0.28708154,0.4339603,-2.607593,-0.1769917,-0.18499568,0.3090142,-0.31816784,-0.19343136,-0.08610009,-0.35429776,0.2531615,0.34863707,0.44370562,-0.56387514,0.25536963,0.36965322,-0.46500534,-0.08329718,-0.4786927,-0.10819169,0.04845406,0.43404868,-0.1932156,0.019977119,0.04338658,0.2593884,0.4009512,-0.06402106,0.090185665,0.393164,0.26022428,0.19562343,0.37179402,-0.036430456,0.592485,-0.20178613,-0.059427164,0.268713,-0.08805973,0.4151839,-0.12062499,0.14203005,0.4133759,-0.4102301,-0.76311195,-0.42634103,-0.08016873,1.1346785,-0.43878788,-0.3565087,0.44535998,-0.37240615,0.032035075,-0.06288031,0.46546465,0.034548007,-0.21249555,-0.6201969,0.22920778,0.034642596,0.23753554,0.032045767,-0.06450457,-0.1565322,0.5350141,-0.0031896431,0.45606592,0.13597552,0.1823913,-0.09491901,-0.4720768,0.18941155,0.6931214,0.3201433,0.12586714,-0.23588692,-0.24554482,-0.4615366,-0.2743029,0.11844444,0.15071808,0.70241916,0.02056128,0.14767118,0.24384148,-0.18245293,-0.055346973,-0.15495259,-0.19098409,0.0943089,-0.052927677,0.54195696,0.61441004,-0.22254059,0.5662758,-0.060761612,0.16432601,-0.17090276,-0.57499224,0.6062519,1.0240626,-0.21684675,-0.16193867,0.40217772,0.3549988,-0.23373458,0.3508534,-0.65620685,-0.24615857,0.6576944,-0.1577051,-0.20407018,0.18473975,-0.3017363,0.20474097,-0.87634605,0.21113226,0.030168597,-0.34613788,-0.35577255,0.04436193,-3.50692,0.105254956,-0.24113068,-0.23246846,-0.062109884,0.07328663,0.17606662,-0.5155255,-0.46973857,0.008565799,-0.023121532,0.7218099,0.008230422,0.117839895,-0.21954621,-0.1594076,-0.37597984,0.077377446,-0.03839225,0.5073489,-0.12418263,-0.5384016,-0.058955573,-0.28182566,-0.41856855,0.09911003,-0.58539546,-0.36311504,-0.25646397,-0.49574533,-0.14745493,0.6882393,-0.171077,0.021516452,-0.12570596,-0.031562585,-0.14006376,0.20597915,0.40873927,-0.101963416,0.16583748,-0.053347457,-0.058380134,-0.39947847,0.14467905,0.054143712,0.37171063,0.27451965,0.18150528,0.1459261,0.5898483,0.6112299,-0.2594101,0.6616263,0.5672789,-0.19492008,0.26620954,-0.2814003,-0.13342252,-0.45445913,-0.31150976,-0.1709564,-0.32157108,-0.49925557,-0.07681116,-0.3008167,-0.7323334,0.30006245,-0.036001332,0.21283038,0.1410167,0.005063474,0.5089319,-0.17633067,-0.051089365,-0.026081506,-0.1886525,-0.6340471,-0.32173556,-0.6020876,-0.4233838,0.46109614,0.9550887,-0.22878869,-0.18216291,-0.12958662,-0.42172012,-0.05480821,-0.05908515,0.10423645,0.35405913,0.18285497,-0.30613154,-0.6902761,0.5993997,-0.048428137,-0.019556988,-0.5260588,0.18897662,0.44734007,-0.5493679,0.29962903,0.15478247,0.08508914,0.00881677,-0.40446022,-0.19408928,0.020528976,-0.21626496,0.19058858,0.059109014,-0.77270925,0.382726,0.23665349,-0.33505884,-0.59005344,0.58462125,0.02337148,-0.2612418,-0.08945877,0.21712098,0.031017026,-0.013396515,-0.36879832,0.21618465,-0.49948126,0.16360101,0.42022085,-0.025187327,0.19913778,-0.2307251,-0.20522282,-0.5459173,0.0963713,-0.33466357,-0.1516163,0.30205745,0.13191058,0.26837888,-0.013831234,0.10513585,0.2909952,-0.2595399,0.067054294,-0.10769639,-0.26056832,0.40580067,0.3738032,0.43971106,-0.41871223,0.65580404,-0.035897203,-0.04512273,0.22156614,0.09901209,0.3559621,0.2136085,0.29312977,0.15314965,-0.32524616,0.20437975,0.81203765,0.24758036,0.2990547,0.14280897,-0.21731052,0.18984228,0.20581502,-0.012306277,0.13167606,-0.42217973,-0.03303796,-0.08120367,0.24826027,0.49667463,0.27875277,0.3051701,-0.08257052,-0.315118,0.13039808,-0.019488156,-0.0016610732,-1.1898152,0.35653332,0.33411005,0.68939376,0.404441,-0.076431125,-0.086213425,0.6791161,-0.20352246,0.19397837,0.29914796,-0.15630384,-0.67646575,0.46793044,-0.66679865,0.7353858,0.035512112,-0.06184123,0.21002646,0.16980919,0.34191182,0.86585313,-0.08601846,-0.022065278,0.17184807,-0.46320418,0.15064472,-0.32302198,-0.07627754,-0.64272666,-0.3015328,0.48725665,0.34161976,0.15377162,-0.060367584,0.022547007,-0.0749983,-0.12994348,0.19379744,0.053899918,0.086326376,-0.13259038,-0.67332804,-0.40197012,0.36204472,-0.17903699,0.19992112,0.089702256,-0.13206309,0.23408593,-0.34189814,0.07538306,-0.09664823,-0.7279827,-0.076212145,-0.1835832,-0.39518872,0.4324533,-0.1935427,0.34380162,0.2108841,-0.045821052,-0.42483404,0.60053164,-0.05197023,0.76862943,-0.05247918,-0.27252138,-0.34331653,0.05255765,0.19610319,-0.22008501,-0.009803942,-0.24179745,-0.12802707,-0.6093487,0.4587237,-0.06368529,-0.33738598,0.020029861,-0.25954875,0.038791608,0.47651222,0.01320533,-0.18877332,-0.28191125,-0.09493734,-0.34483892,-0.14925458,-0.2373853,0.16427174,0.21637438,-0.08770941,-0.1836884,-0.14359777,0.12037905,0.44426215,-0.1672397,0.31713885,0.29168376,0.023669569,-0.26621592,-0.07041741,0.3382306,0.40861845,0.12680452,0.072989546,-0.21355037,-0.24191615,-0.3770974,0.009767797,-0.30755132,0.4395213,0.20778519,-0.36130095,0.59366226,-0.036306974,0.9789753,0.024435032,-0.3097078,0.22447284,0.45720062,0.21883075,0.029752195,-0.25729647,0.63519096,0.5270795,-0.0008054495,-0.31856394,-0.27534875,-0.17807296,0.34031785,-0.19159652,-0.25817126,0.15830572,-0.5577787,-0.16996805,0.27908656,0.22355537,0.38694528,0.019609679,0.044040862,0.09604392,0.049658872,0.25130945,-0.49872807,-0.25747606,0.36347607,0.098454475,0.11096361,0.21441874,-0.5531344,0.49379966,-0.5707846,0.021291407,-0.1817749,0.19792716,-0.17532913,-0.29976714,0.17549922,0.25775954,0.40336174,-0.212183,-0.25714433,-0.37846687,0.62287134,0.11258901,0.31349373,0.5723888,-0.28990003,0.089805536,0.06928773,0.39977136,0.9001842,-0.18542665,-0.009936238,0.29776153,-0.4302866,-0.6805439,0.39969188,-0.20019652,0.27579114,0.1505616,-0.14566593,-0.53825754,0.29418147,0.06394841,0.01386133,0.13937512,-0.5389932,-0.31924668,0.14185153,-0.224127,-0.29130167,-0.44721496,0.2321701,0.5187827,-0.40744117,-0.1596804,0.28085992,0.20972449,-0.13181558,-0.5848323,0.0067233485,-0.31489882,0.26885027,0.026109286,-0.34323806,-0.0087239025,0.08139253,-0.3845258,0.20349453,0.14470722,-0.49231455,0.10500751,-0.2713147,-0.030396223,0.9508837,-0.21333481,-0.0882893,-0.6592599,-0.4975963,-0.83807766,-0.45841178,0.560607,0.12118738,-0.004578018,-0.6272779,-0.03988618,0.010488713,0.013942933,0.012511814,-0.5065364,0.4568043,0.12275749,0.10562064,0.13739906,-0.8494444,0.11100402,-0.016293326,-0.25500706,-0.638765,0.45339096,-0.20229015,0.94212466,0.097714946,0.035642624,0.30201092,-0.4169827,0.03996394,-0.28642413,-0.20313992,-0.47415054,0.18742326,635 -252,0.23373637,-0.11119105,-0.8064963,-0.1622205,-0.043835465,0.14870103,-0.29180533,0.4692216,0.066827096,-0.49479562,-0.004626743,0.054386433,-0.012531215,0.26963463,-0.18764271,-0.35529262,0.0329816,0.08927201,-0.38271993,0.19039913,-0.55970174,0.21741603,-0.17577103,0.18971786,0.095617756,0.23136188,0.13441375,-0.024236504,-0.0068829614,-0.111761846,0.037562147,0.27255386,-0.24924575,0.09243985,0.0057570967,-0.43033087,-0.036564317,-0.21793881,-0.31540143,-0.60683566,0.2818842,-0.778253,0.56022716,-0.0037289797,-0.32566306,0.3722894,0.16389063,0.26068237,-0.2638863,0.10843173,0.20005217,-0.16657871,-0.2151062,-0.22269824,-0.29097527,-0.38683885,-0.463016,-0.08601133,-0.63611615,-0.07264217,-0.21841356,0.11216947,-0.3777825,0.10812716,-0.23315959,0.30310857,-0.5713909,-0.23531123,0.101028904,-0.07134298,0.379964,-0.6440209,-0.09596327,-0.050697263,0.059636824,-0.22555657,-0.15621774,0.13579631,0.23061895,0.47820014,-0.2267396,0.008559628,-0.39879778,-0.23700094,0.13339303,0.4230107,-0.20062378,-0.14587861,-0.1097929,0.0063485145,0.30741057,0.20060396,-0.021276807,-0.25739264,-0.07701515,0.14224945,-0.3480746,0.36082098,0.4193961,-0.3599493,-0.0060899355,0.47333393,0.7663354,0.122641094,-0.15847518,0.18967065,-0.02247866,-0.41958475,-0.113592975,0.07644009,-0.121337146,0.4437444,-0.08481705,0.21196231,0.44832265,-0.19400644,0.0053655743,0.12676229,-0.016133659,0.008820017,-0.1871448,-0.33022594,0.23209222,-0.44784245,0.12918642,-0.17944679,0.5157948,-0.12152891,-0.6451245,0.382858,-0.38819188,0.006937305,-0.10725749,0.64853233,0.4883227,0.3959419,0.110820755,0.71813774,-0.5062193,-0.021321813,-0.19171034,-0.1770237,-0.012069776,0.05050745,-0.16387717,-0.53817886,0.14287186,0.086075395,-0.01884952,0.12999016,0.4376175,-0.36625734,-0.1309046,0.09474613,0.5805329,-0.38859144,0.0040871543,0.64596593,0.9970697,0.81683695,0.13305062,0.91043574,0.11036628,-0.082079805,-0.1697925,-0.2318769,-0.54203075,0.28128865,0.358109,0.18767296,0.29824975,0.020034425,-0.05407292,0.39118376,-0.25489426,-0.027086275,-0.12208672,0.22731556,0.10211792,-0.08588961,-0.36904728,-0.11302063,0.13591419,0.057074852,0.11446905,0.24330401,-0.3339558,0.27315038,0.16275647,1.3690184,-0.22009148,0.09182276,0.30401915,0.19698833,0.13268219,-0.14346318,-0.08368928,0.34688547,0.3613651,0.022398563,-0.5781333,0.16498083,-0.13792627,-0.5259388,-0.19604133,-0.22446674,-0.10776196,-0.1964936,-0.4093312,0.017850686,-0.008058772,-0.5276507,0.30663636,-2.68038,-0.124001615,-0.18531965,0.26498255,-0.1330474,-0.30344263,-0.2682267,-0.32942057,0.38376236,0.30710942,0.42225856,-0.4420571,0.50259936,0.38626784,-0.38642988,-0.041084584,-0.5860302,-0.09671186,-0.04639249,0.104262285,0.0883861,-0.12278464,0.0574208,0.24635765,0.4111152,-0.36546573,0.10016284,0.33799732,0.29430228,-0.052362658,0.40994212,-0.027783029,0.49977157,-0.3340513,-0.13525422,0.4265019,-0.48209566,0.1289427,0.0038139583,0.21362881,0.22489381,-0.4007072,-0.81527495,-0.5012244,-0.09312646,1.4837703,-0.27687544,-0.51748127,0.30817303,-0.2707587,-0.45873037,-0.12646596,0.24867281,-0.12620181,0.0017100573,-0.98226535,0.07151936,-0.14596996,0.21184571,-0.07818949,0.07391457,-0.32849953,0.5267761,-0.14921556,0.7000261,0.48056683,0.13097115,-0.22342435,-0.21546318,-0.005930436,0.9032206,0.490352,0.07647392,-0.17907412,-0.086527385,-0.24811006,0.058017243,0.21366218,0.42992508,0.6625802,0.15016674,0.12048667,0.184788,0.009490865,-0.12549166,-0.30898762,-0.16857061,0.0011813422,0.2359808,0.5217763,0.2591285,-0.021417115,0.26080456,0.028442772,0.2262914,-0.3647317,-0.44906166,0.2073762,0.54563904,-0.13389438,-0.46110523,0.46169117,0.5844288,-0.29073825,0.3617061,-0.6096029,-0.20100711,0.34713286,-0.21457838,-0.2908308,0.32714972,-0.39456895,0.21582481,-0.814506,0.13223968,-0.30098712,-0.64757603,-0.45008463,-0.27757996,-2.8108678,0.22531776,-0.05802496,-0.32572788,-0.09110592,-0.17580384,0.281147,-0.53604496,-0.6661802,0.04675772,0.18349715,0.60972965,-0.026441518,-0.1430948,-0.18507954,-0.25056532,-0.10805195,0.16559619,-0.030888954,0.2208913,0.036435183,-0.40550226,-0.049344547,-0.19338094,-0.42619643,-0.093071304,-0.31963605,-0.245933,-0.06956749,-0.35023242,-0.28201562,0.43230665,-0.35678664,0.03629562,-0.16981807,0.041172046,0.06718822,0.38629368,0.0913661,0.21554977,0.051435683,-0.10802333,0.112125136,-0.25530705,0.21819182,-0.06457241,0.059032638,0.48002142,-0.15655433,0.060130898,0.51085407,0.57991403,0.0040939967,0.8538983,0.37644798,-0.06598376,0.28304812,-0.27858546,-0.1780592,-0.53304404,-0.33712062,-0.05777284,-0.41265613,-0.34675902,-0.17601487,-0.24656935,-0.82748586,0.45514402,-0.07923798,-0.0052078883,-0.02611285,0.5094367,0.37920707,-0.09616761,0.032846164,-0.075956464,-0.08382143,-0.41213065,-0.4310332,-0.7936339,-0.370688,-0.05002795,1.1225841,-0.25027826,0.1526362,-0.03091797,-0.06990631,0.1475496,0.24089807,0.23887223,0.2983874,0.3061396,-0.17382394,-0.40255538,0.18224907,-0.26197392,-0.3187541,-0.54056853,-0.08802946,0.71022093,-0.50444925,0.3847571,0.37092534,0.13425204,-0.20779295,-0.71502185,-0.08402238,0.06994106,-0.34181297,0.52963006,0.23479046,-0.717638,0.50424606,0.48909563,-0.15979004,-0.5534821,0.54318464,-0.08043229,-0.16915156,0.009755262,0.41493618,-0.12513906,-0.03776231,-0.095839985,0.084015064,-0.27462018,0.32357973,0.31448123,-0.085771315,0.3987686,-0.28885612,-0.100657985,-0.5857813,-0.11933395,-0.5273272,-0.05986322,0.062154245,-0.06034371,0.2278414,0.12855399,-0.1858615,0.5031783,-0.39092138,0.105412215,-0.17764664,-0.28090575,0.3904579,0.39990625,0.23012023,-0.16463266,0.54892665,-0.0020360232,-0.09902855,-0.2582459,0.04492841,0.5722187,-0.10931762,0.3356353,-0.092776366,-0.10184079,0.36103046,0.78199756,0.20679717,0.36824608,0.10041297,-0.12519392,0.004908538,0.092119314,0.095364265,-0.14620413,-0.20851408,-0.031871542,-0.15575717,0.26247156,0.41522676,0.08764361,0.4966563,-0.23218828,-0.16788206,0.116283335,0.27306074,-0.074282095,-1.0254263,0.5180987,0.09773316,0.6291425,0.38395092,0.13383129,0.112568535,0.26813662,-0.28356877,0.15934786,0.2490237,0.07278033,-0.44638956,0.51077676,-0.7496049,0.43317512,-0.05345988,-0.0014849722,0.10003412,-0.09545564,0.51169235,0.738357,-0.02273594,0.089225724,0.09776099,-0.2580013,0.09824032,-0.27402508,0.0069564003,-0.48671228,-0.30918443,0.7624653,0.3708032,0.5209099,-0.18026362,-0.12106535,0.20807232,-0.03597646,0.16119164,0.011425578,0.2259595,-0.26417,-0.45453995,-0.20428361,0.37089244,0.28319937,0.058248147,0.009631491,-0.27921936,0.27205503,0.18771712,0.11274822,-0.027506063,-0.35734957,0.016998636,-0.30881086,-0.46239126,0.20089954,-0.36088118,0.31701508,0.17910023,0.0027333458,-0.36291105,0.16738652,0.15204997,0.673124,-0.060997445,-0.018143304,-0.24850026,0.33362377,0.25143233,-0.09265051,-0.071243055,-0.33257502,0.2331842,-0.814985,0.413849,-0.27557665,-0.20124461,0.32741445,-0.21307752,-0.02860415,0.5166111,-0.29862097,-0.20096417,-0.0036023974,-0.15365845,-0.2920895,-0.36437482,-0.22011565,0.19985205,-0.18495996,0.0139850695,-0.073483974,0.017305119,-0.0010223439,0.34153178,0.14523506,0.22926976,0.41818014,0.12923531,-0.49496096,-0.14713724,-0.033442743,0.5545874,0.05383458,-0.09196828,-0.36353073,-0.5273441,-0.061172,0.2768199,-0.22854978,0.33490688,0.21181759,-0.19112797,0.7473288,0.043490514,0.9404691,0.060806338,-0.2721893,-0.079573125,0.56230736,0.04701121,-0.1280323,-0.029175462,0.73475134,0.62014866,-0.12863325,-0.15372403,-0.27236858,-0.09566649,0.090098515,-0.2270293,-0.23510796,-0.042019766,-0.6756321,-0.25576648,0.24334823,0.2340719,0.087381996,-0.190049,0.15645863,0.22255538,0.051112656,0.23226894,-0.42146912,0.07105193,0.33414605,0.17777973,-0.063773505,-0.02209441,-0.40292627,0.27582887,-0.5965527,-0.0676235,-0.14808026,0.02820613,0.11429872,-0.2269412,0.22525182,0.098878354,0.13604932,-0.2572096,-0.16531162,-0.05545406,0.45729104,0.04662594,0.03998114,0.55912524,-0.23652233,0.23339967,0.06834064,0.42101562,0.95421976,-0.16303584,0.10431926,0.35098323,-0.30928773,-0.6654156,0.2176781,-0.4828481,0.25529632,-0.10505922,-0.3306545,-0.44552097,0.43915552,0.2339612,-0.1485203,0.062256765,-0.46577686,-0.19209363,0.1323963,-0.3610962,-0.20162414,-0.3463531,-0.05663785,0.5114938,-0.2125115,-0.2940258,0.022040566,0.44080874,-0.21260531,-0.5148324,0.15244718,-0.23595163,0.33428532,0.06513297,-0.1877669,0.057041008,0.13404134,-0.32106173,0.11733713,0.22390781,-0.21502675,0.12476646,-0.39973372,0.1347327,0.54438686,-0.17757468,0.007894198,-0.41740167,-0.46417326,-0.7862555,-0.20462802,0.4878958,0.050769772,0.044204537,-0.7163063,0.19243962,-0.11097527,-0.05980582,-0.10742843,-0.303989,0.5355595,0.06771715,0.21467218,-0.17886183,-0.54914564,0.09600291,0.05302957,-0.28855532,-0.2605597,0.5531893,-0.09442686,0.60334474,0.11261557,0.115090095,0.18363602,-0.5273864,0.25060445,-0.20680186,-0.24413384,-0.6372088,-0.13855381,649 -253,0.4289663,-0.13479218,-0.3926398,-0.27146724,-0.31060982,0.004435416,-0.3364519,0.2612747,0.15561636,-0.3834211,-0.1663123,-0.035442233,0.09034064,0.1360518,-0.2130798,-0.570129,-0.012069599,-0.023907185,-0.58685505,0.41251305,-0.7179983,0.3568812,0.22828321,0.33526185,-0.00014818709,0.4212244,0.33757746,-0.07415819,0.064935096,-0.28716776,-0.09486665,0.20342146,-0.7416406,0.19737439,-0.27264395,-0.39921048,0.24774376,-0.38510925,-0.13877495,-0.73369294,0.028515462,-0.79955137,0.5674021,-0.06385661,-0.16297604,0.027688185,0.24294244,0.20711282,-0.21973896,0.08837017,0.13777588,-0.33657047,-0.1848889,-0.33589315,-0.026558178,-0.43319663,-0.36692467,-0.10983956,-0.69905597,-0.4398724,-0.34309432,0.10952078,-0.3542505,-0.05151182,-0.051785264,0.4139318,-0.4234977,-0.040037934,0.11830079,-0.13855925,0.26838693,-0.64093107,-0.07306793,-0.039399873,0.40397316,-0.09518466,-0.21078244,0.47459957,0.19790195,0.4705246,0.24581064,-0.34648708,-0.12116071,-0.2895838,0.019302214,0.34733686,-0.1709246,-0.19159609,-0.20721382,0.006816423,0.47400424,0.32670355,0.04102846,-0.15910354,0.07110869,0.06290331,-0.24200307,0.41987938,0.5396487,-0.33787993,-0.24534187,0.13898939,0.388068,0.13215126,-0.27442732,0.047899302,-0.051077664,-0.45796445,-0.26702002,0.13572124,0.041425582,0.49099195,-0.12452723,0.20911366,0.72749037,-0.26672888,0.21688057,0.02787068,-0.042297598,0.06682379,-0.24865372,-0.18801574,0.27474517,-0.78178596,0.008587769,-0.37396985,0.805171,-0.06181448,-0.70551044,0.34387198,-0.5005092,-0.07292448,-0.11556519,0.54197377,0.52039915,0.5065881,0.29381102,0.6829675,-0.32883447,0.031685997,-0.1763804,-0.3461486,0.08575225,-0.13238102,0.09476324,-0.40092754,0.08591442,-0.07158612,0.34371865,0.04085656,0.28707033,-0.42582083,-0.10808675,0.3973953,0.7186757,-0.36094543,0.021688167,0.5243688,1.118931,0.9088667,0.16802081,1.1155219,0.23679323,-0.10043247,0.07021884,0.1016465,-0.57035285,0.11658896,0.47830683,0.1772139,0.21251346,-0.08617334,-0.104569025,0.32044992,-0.4015437,-0.08777119,0.067123204,0.469572,0.06239898,-0.07864547,-0.42646414,-0.2402251,0.14249246,-0.01273435,0.013460887,0.18135415,-0.08023181,0.22055937,-0.14345647,1.0569988,-0.05146645,0.026648585,0.1187489,0.7084466,0.30342185,-0.012920211,0.055827238,0.39600766,0.3153049,0.033365346,-0.572691,0.124574885,-0.23683856,-0.4176543,-0.13402185,-0.4699122,-0.052700736,0.1594802,-0.42647296,-0.2523424,-0.059274364,-0.22319777,0.38277492,-2.6928911,-0.22770517,-0.015403358,0.35441652,-0.29540202,-0.21701965,-0.04461074,-0.4819025,0.4262455,0.2969713,0.48559648,-0.5523015,0.5674747,0.5710299,-0.47736838,-0.2518657,-0.70013046,-0.17533283,-0.19500594,0.38372287,0.09893155,-0.2524403,-0.26912072,0.3494758,0.7761096,0.09691576,0.0639765,0.38558477,0.26851097,0.12733354,0.70613104,0.06251016,0.51770693,-0.28344142,-0.1738255,0.36720866,-0.22668491,0.05696117,-0.0779028,0.12910034,0.52916056,-0.52790046,-0.88666415,-0.5952689,-0.2736353,1.169394,-0.30420992,-0.4532118,0.2618808,-0.2074912,-0.0083280485,0.058416333,0.4036237,-0.20989409,0.2461234,-0.49859196,0.09201776,0.007365751,0.1288238,0.1307171,0.019712178,-0.40523052,0.5930134,-0.03454806,0.54785347,0.21190561,0.29041937,-0.15145212,-0.22921272,0.035487518,0.8073101,0.49782485,0.09172874,-0.18853426,-0.21345097,-0.12754373,-0.103697844,0.032445572,0.5331268,0.8058954,-0.030436138,0.21397765,0.30024692,-0.1376898,0.101803206,-0.01121343,-0.23144086,-0.070096746,0.15987997,0.47031304,0.51562554,-0.016751265,0.30949906,-0.14291033,0.47242975,-0.13551779,-0.5361858,0.43182054,0.6295039,-0.1697559,-0.00075741607,0.39724848,0.61178374,-0.24389662,0.5269254,-0.71979296,-0.40916577,0.8079712,-0.14958371,-0.4146146,0.11794346,-0.3370383,0.25179893,-0.791281,0.37782013,-0.4932782,-0.4519375,-0.3283167,-0.22425994,-3.417561,0.25469258,-0.28771874,-0.038037974,-0.40763468,-0.09234814,0.3619873,-0.70075357,-0.30113092,0.11824706,0.09764249,0.6374999,0.032216653,0.008211673,-0.2867877,-0.3961027,-0.18777823,0.27633724,0.053491354,0.21211107,-0.20413758,-0.40712646,-0.00691092,-0.19239695,-0.6217672,0.18653971,-0.28594112,-0.5385217,-0.08601802,-0.36442757,-0.33895254,0.5403557,-0.30012634,0.08579196,-0.2219639,0.064957276,-0.18440874,0.17305152,0.15968561,0.18135194,-0.027372304,-0.08587645,0.123871975,-0.42085811,0.4113084,0.119546175,0.3521909,0.17076536,0.025327237,-0.07741685,0.49922195,0.26085022,-0.2094689,0.96380156,0.15082149,-0.13599163,0.43197373,-0.30929983,-0.3923584,-0.6848981,-0.33168668,-0.10055793,-0.32008424,-0.31811434,0.23945265,-0.2102272,-0.65839523,0.65028274,0.04649379,0.29310316,-0.057595085,0.4208337,0.29659843,-0.12789539,-0.10797582,-0.06174554,-0.1753296,-0.5721083,-0.20133935,-0.8316465,-0.56074345,-0.12755585,0.7104967,-0.36955854,-0.019256568,-0.07397811,0.09711096,0.25977793,-0.018723078,0.21872775,0.29129657,0.5240019,0.05619747,-0.78877753,0.49289,-0.08826074,-0.119111694,-0.32833844,0.09053114,0.72736466,-0.8339827,0.4462206,0.48667076,0.2008381,0.08442586,-0.58655995,-0.1480262,0.024294829,-0.2972924,0.50577486,0.041652348,-1.0127928,0.6036783,0.20132616,-0.5262352,-0.6360338,0.47165537,0.049163282,-0.30515918,-0.04306143,0.46798187,0.2276413,-0.11733349,-0.10392257,0.15435892,-0.45149505,0.27156755,0.08479207,0.0287442,0.31235012,-0.12861007,-0.29275027,-0.6646198,-0.08244907,-0.42946255,-0.33617514,0.26794007,-0.242594,-0.20276718,0.33105502,0.0770723,0.43795586,-0.19452216,0.21689129,0.044453774,-0.31929928,0.47185734,0.5422817,0.4002078,-0.1795499,0.5654492,0.16450728,-0.17049283,-0.060582053,0.13593982,0.3846864,0.015555634,0.1890488,-0.18055184,-0.10385474,0.30901492,0.5963162,0.13591178,0.37455222,-0.03475406,-0.0018832723,0.4800328,0.1074222,-0.061443005,0.17180488,-0.3644756,-0.17965321,-0.037415132,0.097530685,0.41176698,0.3011006,0.3119381,0.09774792,-0.011841488,0.027585652,0.250436,-0.21339846,-0.86428076,0.27919406,0.20684604,0.69074214,0.36640316,0.1490754,-0.18424836,0.53505886,-0.17362562,0.057509635,0.2813225,0.13760458,-0.4156458,0.8879794,-0.45780727,0.39162847,-0.15920912,-0.01119436,0.07823197,-0.031010246,0.42996594,0.8134372,-0.21299307,0.037055712,0.02753403,-0.25167522,0.02313181,-0.32568607,0.026622891,-0.19855998,-0.25484836,0.74887764,0.2715674,0.30125967,-0.1450429,-0.12865254,0.11723863,-0.31171453,0.30957514,-0.12210365,0.05069582,0.013656406,-0.3731275,-0.19712375,0.51063615,0.10773452,0.15042774,-0.1675034,-0.106600456,0.11998519,-0.06327012,0.027945422,0.066452004,-0.52065,0.12703386,-0.34115702,-0.38346207,0.28577596,-0.36185497,0.02351586,0.17856796,-0.009642205,0.101601,0.16683748,0.19100924,0.4202077,-0.04967761,-0.3731964,-0.20810606,-0.07065846,0.18235935,-0.3542497,0.076773964,-0.35056365,0.11857421,-0.7002332,0.52025425,-0.2496477,-0.2862214,0.2561574,-0.2104085,-0.08818695,0.4349783,-0.06288062,-0.023201609,0.045743488,-0.07460741,-0.25038013,-0.22276981,-0.2071679,0.23197956,0.23661228,-0.08604535,-0.052907754,-0.3258684,-0.056464456,0.47150898,0.11393762,0.36869487,0.015187953,-0.0542053,-0.28433815,0.19975635,0.09321377,0.48340425,-0.040679898,0.16019286,-0.35043913,-0.2620869,-0.26853094,0.14972034,-0.049519897,0.10770108,0.042235073,-0.33017674,1.0777923,0.005887747,0.9429344,-0.0339838,-0.40780935,-0.047767714,0.4986534,-0.38272363,-0.014004374,-0.24679573,1.0025291,0.4947492,-0.08472453,-0.11944286,-0.41989794,-0.15068635,0.18279003,-0.35171992,-0.08821173,-0.2779242,-0.49850896,-0.41139355,0.24205051,0.4156323,-0.038639527,-0.0862521,-0.007904598,0.16271864,0.06561486,0.41748697,-0.7410937,-0.19301382,0.04373916,0.1650712,-0.120246775,0.11471084,-0.40614155,0.37081555,-0.7879234,0.15528466,-0.46345004,0.00874091,-0.23203772,-0.3087881,0.17344116,0.022700815,0.3880687,-0.30043668,-0.47784293,0.02833473,0.34128505,-0.08863554,0.28124088,0.5403069,-0.22150952,0.04722876,0.009698454,0.4733843,1.2504011,-0.19827083,0.002442825,0.2592229,-0.5306395,-0.5061664,0.121798225,-0.33850348,-0.10238907,-0.066055246,-0.50058585,-0.34649405,0.1835386,0.21556838,0.06989957,0.09953998,-0.6094152,-0.09960626,0.26899275,-0.29590896,-0.27208164,-0.13223961,0.40702954,0.7258729,-0.27368033,-0.09186549,-0.067293376,0.36649817,-0.27822083,-0.62117755,-0.038758796,-0.11827057,0.37166864,0.14757948,-0.2169986,-0.050358735,0.13842653,-0.47896495,0.024186246,0.37603623,-0.34502938,-0.037454773,-0.3054593,0.16927962,0.78802234,-0.085428044,-0.23393068,-0.5192022,-0.5326592,-0.71586263,-0.46088237,0.3220242,0.22766064,0.17057939,-0.2663447,0.061475817,-0.2480591,-0.255252,0.0214863,-0.39194113,0.1969915,0.20283106,0.46699038,-0.30858517,-0.87315446,0.17734988,0.1513662,-0.0630994,-0.53316224,0.6269455,-0.12224881,0.7361259,0.17315629,-0.1583819,0.010455473,-0.43296522,0.280259,-0.45208263,-0.024039317,-0.65666616,0.024549492,653 -254,0.35025918,-0.025794657,-0.60905975,-0.118137985,-0.29021356,-0.046083212,-0.09947359,0.7099356,0.23697548,-0.463528,-0.11800668,-0.19347422,-0.017660085,0.47491592,-0.20617162,-0.6460915,0.018881131,0.09503922,-0.5474217,0.48313364,-0.4306121,0.25366265,-0.03587164,0.49962685,0.23152259,0.33090273,0.0030964613,-0.114629425,-0.055729866,-0.05625413,0.055923607,0.2519682,-0.44079632,0.049720388,-0.14421526,-0.44286442,-0.038974244,-0.50611204,-0.49858177,-0.7429616,0.40037587,-0.7583683,0.53151333,-0.021016125,-0.26936358,0.17527257,0.07017351,0.4984766,-0.29567906,-0.1390099,0.17476524,-0.018784208,-0.000976928,-0.1395133,-0.24957542,-0.2594012,-0.5853999,0.10320205,-0.3815774,-0.10000847,-0.12189449,0.100085475,-0.3528481,0.07178419,-0.0015630882,0.4536342,-0.47267035,0.16604476,0.39594507,-0.089016914,0.20271058,-0.48716298,-0.085673206,-0.106947936,0.19492897,-0.21312316,-0.19547114,0.34404355,0.14190511,0.50454557,-0.05389149,-0.18044357,-0.3231278,-0.028801981,0.15577644,0.42446044,-0.08360776,-0.34613687,-0.08692767,0.090196736,0.07268155,0.23932165,0.13704656,-0.25285095,-0.12287234,0.09522298,-0.25375536,0.37233478,0.5183045,-0.15097462,-0.3543924,0.29939932,0.6790793,0.28043452,-0.16097,0.11748373,0.13433436,-0.6205221,-0.24368593,-0.09355715,-0.07162208,0.31318015,-0.14669509,0.2638334,0.79188716,-0.25771937,-0.0073088724,-0.009260092,0.07439019,-0.13163179,-0.41342905,-0.22878957,0.21863751,-0.37528038,0.20107001,-0.07718827,0.78537065,0.23793726,-0.77535135,0.33934078,-0.6355318,0.20203659,-0.20352824,0.49338195,0.6497243,0.28668144,0.29627952,0.6588841,-0.40690506,0.23627116,-0.11396948,-0.4418602,0.015140462,-0.08395405,-0.098301634,-0.42768928,-0.078901894,-0.012830808,-0.12393189,0.13785677,0.19382069,-0.53673714,-0.09943379,0.022740789,1.0598671,-0.26264608,-0.046188306,0.8034826,0.8467137,1.0176213,0.0396937,1.1335909,0.115320675,-0.14642748,0.38227844,-0.28926787,-0.94059193,0.26642233,0.25781724,-0.34450918,0.31688005,0.045531336,0.05065489,0.4740696,-0.37266314,0.23266178,-0.2500209,0.32691038,0.21887064,-0.15450983,-0.3041647,-0.16816331,-0.09019842,-0.07630623,0.091711566,0.28654233,-0.07643082,0.31524608,-0.057828825,1.8704605,0.069881774,0.1603933,0.16889769,0.50061303,0.21625787,-0.16427927,-0.21885148,0.14572264,0.32379553,0.09986956,-0.5827206,0.14965868,-0.19768676,-0.50359994,-0.13192289,-0.34385693,-0.08861857,-0.18392318,-0.5530043,-0.062090017,-0.23522896,-0.13025513,0.34130594,-2.8487062,-0.2767697,-0.051629502,0.28280258,-0.2504028,-0.34779307,-0.16525014,-0.51582515,0.4732519,0.33480853,0.41975778,-0.63154566,0.5791881,0.5163837,-0.49271443,0.0014716308,-0.5691574,-0.18814953,0.099399365,0.23390856,0.0038110039,0.10659243,0.05870251,0.21379992,0.3483923,-0.11292747,0.04424652,0.2339399,0.38289878,0.085303865,0.53437287,-0.10115388,0.47387567,-0.3879593,-0.15670992,0.26670063,-0.37837332,0.24291866,-0.043653116,0.09931047,0.4709978,-0.4304218,-0.9349083,-0.5762192,-0.048590314,0.9187107,-0.121423274,-0.18285833,0.34823462,-0.5552403,-0.17961082,-0.1745138,0.4178637,-0.007509933,-0.072500914,-0.80873114,-0.025743825,-0.1818884,0.08126872,0.0103435125,-0.014213289,-0.28936723,0.5308857,-0.10853446,0.47127402,0.47642478,0.113522895,-0.28323612,-0.43101725,0.12222782,0.74727416,0.2877844,0.17810258,-0.28516117,-0.16865434,-0.4479588,-0.15119903,0.06720612,0.43789265,0.7453877,-0.071974,0.18384501,0.2795015,-0.082543306,-0.039330173,-0.21478513,-0.32764664,-0.04570113,-0.10098771,0.46536568,0.7624629,-0.33063668,0.5126589,-0.017037315,0.34758037,-0.1759614,-0.45054314,0.4815017,0.7458907,-0.12350074,-0.32163525,0.5149053,0.38163516,-0.34137955,0.39740276,-0.4471507,-0.11292241,0.5030389,-0.19762713,-0.40088478,0.21468456,-0.20346285,0.14398007,-0.9009739,0.16195272,-0.22675003,-0.34088272,-0.6585997,-0.24264774,-3.031837,0.18074383,-0.30715173,-0.13258407,-0.18582487,-0.09467028,0.118732736,-0.4964038,-0.77583706,0.14377241,0.17068976,0.79623806,-0.14068381,0.3001595,-0.20407145,-0.15808369,-0.3768606,0.028436057,0.27892116,0.38739356,0.05595935,-0.51431304,-0.2745759,-0.089356475,-0.48488387,0.17637397,-0.6143435,-0.43106654,-0.0778343,-0.5385639,-0.33827505,0.7399138,-0.16523786,-0.045894813,-0.065228276,-0.039963085,-0.05450364,0.4359722,0.22205715,0.012285951,0.06933089,0.011124802,0.08198715,-0.29586428,0.22255754,-0.031095915,0.4605407,0.17202304,0.040554922,0.30573362,0.62124753,0.81984544,0.038014427,0.70116514,0.5224456,-0.04598577,0.24654368,-0.32656848,-0.32072407,-0.43978086,-0.23245601,-0.033100303,-0.35686997,-0.3920099,0.0235901,-0.49461898,-0.80414426,0.565082,0.024426349,-0.014085412,0.016801301,-0.0068074744,0.43958288,-0.16976303,-0.089719005,-0.009512258,-0.12275549,-0.5632297,-0.2835035,-0.6312144,-0.50441235,0.11704487,1.1623079,-0.24163426,-0.041638456,-0.0972468,-0.35434428,-0.0032358367,0.10485215,-0.072084285,0.20953134,0.39241955,-0.15359503,-0.49792495,0.41100731,-0.18078,-0.27325955,-0.73126036,0.0424757,0.5841124,-0.6023499,0.5535322,0.119511805,-0.049767334,-0.10593362,-0.47678703,-0.032824438,-0.02875787,-0.1713168,0.41494453,0.13992931,-0.71840006,0.34516576,0.47359148,-0.3055494,-0.73634434,0.48167622,-0.06927612,-0.28613317,-0.055801343,0.20583569,0.16257364,0.012789364,-0.12792236,0.18155083,-0.3086086,0.10451214,0.18672152,-0.11826967,0.42702055,-0.15891081,-0.0785241,-0.6794137,-0.060323995,-0.49720466,-0.21869682,0.2549919,0.082107894,0.1659175,0.013394797,0.14058058,0.25265232,-0.1834505,0.066784956,-0.17907128,-0.26334462,0.24698694,0.38542357,0.5313728,-0.5171064,0.5635472,-0.09156968,0.027313745,0.35013762,0.08815338,0.49701503,-0.039796926,0.3906979,0.13436459,-0.14986466,0.14334495,0.8092252,0.17281656,0.40364093,0.18543836,-0.17231707,0.22526464,0.06741891,0.08606164,0.009996072,-0.549441,0.15915179,-0.026684029,0.22035795,0.5052564,0.2148387,0.30655447,0.03876512,-0.44954398,-0.026433332,0.22266334,-0.03511103,-1.4182326,0.40837157,0.23667549,0.85847276,0.45456907,0.04248091,0.10164185,0.57094735,0.006484133,0.26705176,0.3597915,-0.17095527,-0.56549865,0.538081,-0.6381544,0.68822366,0.041431,-0.025352666,-0.0068092705,0.07198815,0.48801643,0.62897307,-0.14423303,-0.01017938,0.120144114,-0.28521413,0.14712693,-0.45076686,-0.06212034,-0.5277355,-0.1373673,0.57574844,0.6657075,0.25969994,-0.17563495,0.0343627,0.15101002,0.042489126,0.07741846,-0.123354144,0.067410454,0.01499783,-0.6450881,-0.31348875,0.5021438,-0.016019186,0.27414224,-0.15209651,-0.16466323,0.3004933,-0.19044682,-0.046287537,-0.15096465,-0.7929246,0.013436121,-0.24538682,-0.5039218,0.4012102,-0.06793973,0.28796205,0.2137975,0.041598383,-0.5058105,0.61189234,-0.24268775,0.8191404,-0.17165668,-0.1046458,-0.42920798,0.20867552,0.28592083,-0.25850117,-0.055936765,-0.4077681,0.0145962555,-0.39948168,0.3961352,-0.045284107,-0.3892195,-0.027931651,-0.123726696,0.07666488,0.5285828,-0.1472766,-0.03290461,-0.09173442,-0.24673183,-0.2605656,-0.20673747,-0.1278239,0.3062211,0.22680883,-0.12749878,-0.039325323,-0.15832242,0.005399712,0.5742933,-0.06624419,0.39754933,0.39291415,0.14774117,-0.3312203,-0.27826732,0.29550895,0.549267,-0.072721526,-0.17932507,-0.28069118,-0.27990946,-0.18813422,0.41737098,-0.20321348,0.43392783,0.19638552,-0.4063496,0.7229925,0.15086031,1.2092719,0.1989584,-0.2360136,0.25627056,0.2743213,0.24641551,-0.026429506,-0.44675484,0.7954523,0.4067581,-0.24886338,-0.25819042,-0.34836018,0.030479161,0.13649629,-0.2185188,-0.24840464,-0.05178638,-0.52500176,-0.2001814,0.26307952,0.1538166,0.27851948,-0.2000486,0.015718492,0.16796394,0.02361389,0.29185686,-0.4161321,-0.09258743,0.21122427,0.18751803,0.078215316,0.15335388,-0.57142997,0.47018448,-0.31010872,0.09716976,-0.23624277,0.24605195,-0.17943877,-0.29231656,0.17429967,-0.046982523,0.34129998,-0.30375704,-0.34994984,-0.3249858,0.45617262,0.30557293,0.1454459,0.649338,-0.22849755,0.006126078,-0.09038708,0.52270323,0.9010708,-0.21389268,-0.05706546,0.40596068,-0.17479163,-0.5655801,0.25149223,-0.31544086,0.24822807,-0.056886435,-0.1523903,-0.63875586,0.3200149,0.16533737,-0.08683718,0.0022122422,-0.5635695,-0.21832228,0.24407345,-0.2627616,-0.26607984,-0.4815336,-0.00528841,0.6990979,-0.20281038,-0.26885536,0.18933378,0.22448741,-0.0795538,-0.38507873,-0.048944857,-0.3655578,0.15156792,0.051156737,-0.31838128,-0.11591266,0.12976803,-0.4505852,0.12718958,0.05855481,-0.29299963,0.040726803,-0.14372721,-0.18733703,1.037566,-0.19676854,0.31516054,-0.48605162,-0.45226058,-0.9446981,-0.3036233,0.47155535,0.060820658,-0.025466101,-0.7209531,-0.10955323,0.09200151,-0.20469585,0.045660544,-0.38852566,0.45649922,0.09223577,0.27923024,-0.03818306,-0.7620295,0.0197045,0.057788026,-0.39087293,-0.6834913,0.55568177,-0.023995828,0.8003351,0.096847944,0.10285403,0.27891913,-0.27124774,-0.056807652,-0.26958057,-0.2253346,-0.6146301,0.023188595,656 -255,0.4290002,0.060879357,-0.6088136,-0.16219707,-0.4040094,0.28322127,-0.36580944,0.015973942,0.12170868,-0.12315795,0.00064495404,-0.15100119,-0.13934453,0.12523134,-0.1539381,-0.6434662,-0.089058526,0.09321513,-0.57860404,0.5173633,-0.28631648,0.5463685,0.026410162,0.31927636,0.14194275,0.2968868,0.08204297,0.049351517,-0.11989972,-0.21459804,-0.14221893,-0.0013642868,-0.8265588,0.27413094,-0.25474605,-0.5038436,0.0058113574,-0.4835238,-0.30340636,-0.804801,0.41723114,-0.820531,0.6747228,-0.1452541,-0.2157465,0.1518576,0.10516901,0.34102446,-0.029143138,0.10423193,0.25270697,-0.34804848,0.19056985,-0.19445881,-0.445385,-0.41791758,-0.5063577,-0.08771232,-0.571962,-0.0985391,-0.31132418,0.25311488,-0.2551619,-0.02865488,-0.30859944,0.28501564,-0.46331802,0.25688753,0.2011879,-0.17692865,0.13577652,-0.41315317,-0.05051275,-0.04901378,0.14091831,0.0042277058,-0.03738087,0.46946633,0.12871727,0.4580983,0.08627799,-0.35964116,-0.21071061,-0.01636635,0.080334894,0.5352919,-0.074902676,-0.0030941823,-0.3097819,-0.090486735,0.3650505,0.40819538,-0.033399787,-0.31547448,0.10167485,-0.10615573,-0.0898622,0.34879074,0.5142769,-0.25761816,-0.17789707,0.39513725,0.37374052,0.21590348,-0.19245939,0.20627116,-0.058112014,-0.20869154,-0.27782768,0.2758628,0.008505523,0.47454646,0.039908525,0.22376157,0.6470034,-0.05400704,0.09799678,-0.17404133,-0.1390042,0.12166706,-0.21033175,-0.19884886,0.29025447,-0.6136577,0.31707063,-0.32307616,0.6660992,0.0635602,-0.7868197,0.46747124,-0.6731068,0.073121324,0.05874029,0.533627,0.7237274,0.34203503,0.124601625,0.8447618,-0.40505555,0.05793066,0.006351109,-0.23395279,-0.0089456,-0.04452495,0.28579348,-0.39422527,0.029208086,0.026175125,0.07087483,0.0099593615,0.15804654,-0.3070197,-0.16175617,-0.068779744,0.9104201,-0.38076273,0.14194942,0.77950203,1.0878596,1.0401891,0.039532725,1.0927178,0.4413841,-0.13955246,-0.23793112,-0.12069317,-0.55105424,0.06665746,0.27378252,-0.24373645,0.4240008,0.080029406,0.0562697,0.2199789,-0.33615786,0.002308023,0.0038962364,0.07894535,-0.028733563,0.019003788,-0.33860746,-0.35385895,0.26453012,0.040252943,0.032444704,0.21411654,-0.119520105,0.5204549,0.23075072,1.3717512,0.14221628,0.07059316,0.14342766,0.40984538,0.30223656,-0.22632709,-0.03051323,0.21114479,0.34757137,-0.16853254,-0.40531227,-0.07198849,-0.37868032,-0.37734511,-0.12579593,-0.24788044,-0.22017367,0.049287975,-0.32243344,-0.13407867,-0.033778332,-0.21192572,0.5102731,-2.5466573,-0.020154722,-0.10432343,0.31910762,-0.3104334,-0.339506,-0.28638417,-0.5147241,0.45810255,0.32618108,0.28363004,-0.4945933,0.25650698,0.31472194,-0.3475284,-0.09440635,-0.51998085,-0.01589806,0.055568818,0.33297953,-0.073391676,-0.10789003,-0.13182531,0.38342422,0.68403804,0.20899253,-0.033291332,0.24987626,0.4894431,0.011034416,0.46585813,0.04850816,0.42242166,-0.23621029,-0.04307606,0.37598294,-0.47426337,0.39190826,0.03574477,0.09014044,0.44022152,-0.49304008,-0.485771,-0.4996323,-0.42750898,1.0849993,-0.40626174,-0.5233732,0.056603335,0.018792009,-0.31716168,0.022082604,0.46650124,-0.071401134,-0.05830338,-0.49274316,-0.2427478,-0.22969007,0.25890133,-0.11870938,0.33483002,-0.34232038,0.68969864,-0.22141911,0.44805133,0.28914785,0.32690084,0.020900298,-0.52402467,0.17615369,0.7311982,0.55130655,0.083963946,-0.29653293,-0.029221041,-0.24083287,-0.25927913,0.17688115,0.6685868,0.7758329,-0.19736196,0.050461452,0.39056,-0.24091305,0.045597322,-0.2342041,-0.3482259,-0.06286865,-0.12327909,0.5147348,0.5520379,0.06298113,0.36102232,-0.12210253,0.24563815,-0.22482434,-0.53275806,0.3528652,0.80467,-0.16897002,-0.06566851,0.35353333,0.26307485,-0.29554385,0.46968782,-0.6304367,-0.21426617,0.7553987,-0.06234089,-0.5774832,0.13847485,-0.34211627,-0.04620951,-0.6791715,0.2947444,-0.10834742,-0.52608716,-0.37958574,-0.17389797,-2.6288233,0.13732879,-0.068715654,-0.11971932,-0.22719833,-0.26852134,0.2583925,-0.33469594,-0.58000016,0.083876595,-0.07780012,0.49194175,-0.113290526,0.21276046,-0.31753796,-0.18412203,-0.46144035,0.39053088,0.23169534,0.36632946,-0.22243427,-0.14183265,0.05475437,-0.2616906,-0.4705339,-0.113973975,-0.5312083,-0.47338298,-0.11498154,-0.3586488,-0.33417657,0.6842222,-0.44406065,0.054125335,-0.2531295,-0.18288173,-0.117755495,0.2320487,0.4174877,0.2697282,0.09440497,-0.04538668,0.0419638,-0.38094643,0.2949784,0.21512231,0.18694726,0.31353277,-0.15329923,0.1538041,0.20900747,0.5818072,0.029314915,0.68049395,0.0037733992,-0.14730236,0.44477683,-0.3958586,-0.33341405,-0.7842567,-0.27355662,-0.20307621,-0.35181898,-0.5034193,-0.38796183,-0.35691944,-0.7692112,0.2896064,0.029436048,0.27674815,-0.061480183,0.26253736,0.30435887,-0.16077703,0.032784637,-0.036472637,-0.120099045,-0.3292038,-0.46237713,-0.56512755,-0.599007,0.26249164,0.8450737,-0.027048282,-0.14441384,0.07184069,-0.23591249,0.3303657,0.06908312,0.21590203,0.13128264,0.43128645,-0.056443017,-0.610566,0.43365923,0.13205631,-0.22027816,-0.59016484,0.14097564,0.77745444,-0.58910525,0.45098087,0.2853926,0.089703746,-0.040763173,-0.6796294,-0.16592999,0.011243319,-0.38446045,0.4917335,0.11225626,-0.5202516,0.37436688,0.122866,-0.14298806,-0.69244564,0.5227799,0.06747859,-0.19062679,0.10315207,0.3915941,-0.050395343,-0.11595405,0.017230893,0.19462793,-0.58295757,0.3119732,0.31276074,0.0005677541,0.25735277,0.016279252,-0.22325398,-0.6217382,0.2194349,-0.44631827,-0.3852529,0.15534046,-0.032238007,0.0075543346,0.16952369,0.11756395,0.43426016,-0.26036376,0.16477603,-0.1229896,-0.1772087,0.44605675,0.38857403,0.37085298,-0.5369865,0.65094167,0.020103944,-0.02334513,0.14370689,0.18800904,0.41154402,0.1672441,0.20711635,-0.028590774,-0.04870313,-0.10032224,0.39062577,0.33070093,0.38256747,0.06735563,-0.13018718,0.25730836,0.1613643,0.08164097,0.050793096,-0.3009096,-0.06023591,-0.1041504,0.09385994,0.44795576,0.044904225,0.2971668,-0.16472428,0.027077658,0.19400224,0.069721855,-0.4081361,-0.97685486,0.2982008,0.22405703,0.7828447,0.3432236,0.0086830575,0.06769172,0.3521474,-0.31844813,0.09062205,0.37779045,0.17178987,-0.29086012,0.5527389,-0.4931259,0.48985526,-0.21379955,0.047954775,0.12070298,0.2759101,0.4976944,0.94742876,-0.22827773,-0.014293408,-0.13952312,-0.1256829,0.036998652,-0.117608555,0.23226343,-0.47893664,-0.42027628,0.6573338,0.2932947,0.30732533,-0.3789506,-0.06395517,-0.13129231,-0.21027909,0.11350867,0.05977336,-0.12024285,-0.047579683,-0.45224053,-0.3070939,0.5737651,-0.44484097,-0.17034331,0.10555269,-0.18270953,0.1961926,-0.13915405,0.1948411,0.08622788,-0.7819621,0.11260581,-0.4161857,-0.28181273,0.28242722,-0.2922118,0.22979209,0.16759533,-0.04737858,-0.1495747,0.12581335,0.271206,0.645356,-0.02703857,-0.23111923,-0.37893218,0.17921387,0.22393031,-0.35449925,0.025495926,-0.11191776,0.1450612,-0.6087852,0.3301902,-0.27077204,-0.113372244,0.0039070905,-0.11524908,-0.106514215,0.5509976,-0.20761754,-0.047478326,0.07158641,-0.0072588366,-0.3580944,-0.11235328,-0.36543268,0.09244076,0.2280129,-0.14660366,0.053746726,-0.1216111,-0.16543035,0.31380108,0.05101729,0.26446888,0.3079552,-0.15432315,-0.5259535,0.012649401,-0.16701724,0.30698434,0.21014592,0.118602104,-0.20602375,-0.24903034,-0.19281963,0.7217707,-0.26569876,0.05675864,0.01889392,-0.36582634,0.72472745,-0.022977997,0.97930336,0.10225118,-0.2784334,0.12187788,0.4927998,-0.02873327,0.014036208,-0.3905827,0.9520337,0.57629937,-0.13268067,-0.21945456,-0.09852167,-0.09224562,0.10424901,-0.3220947,-0.23399848,-0.05740637,-0.6339172,-0.2154462,0.108562425,0.23279817,-0.0016857306,-0.07643879,-0.12591152,0.2054077,0.1351438,0.5185886,-0.3135464,-0.109907664,0.4029392,0.027490314,0.012722512,0.17894958,-0.31387794,0.41243947,-0.6270121,0.20891355,-0.6090053,0.0005726218,0.012483048,-0.24241696,0.18855742,-0.014582853,0.31621817,-0.43357334,-0.29250857,-0.19191244,0.31432533,0.33613074,0.33387583,0.589384,-0.18379623,-0.08637169,0.051101282,0.449746,1.3621446,-0.12977757,-0.013374341,0.36636862,-0.46426705,-0.6063476,0.105282955,-0.32862917,0.043461885,-0.078866325,-0.36627942,-0.1838203,0.15468684,-0.0017737945,-0.09767472,-0.004357771,-0.77387327,-0.21398903,0.42161793,-0.19419597,-0.19779472,-0.40590099,0.28456607,0.814088,-0.08059489,-0.34869757,-0.0083478885,0.2386747,-0.35252276,-0.6644338,0.2659471,-0.2658448,0.34609595,-0.0034364401,-0.43751508,0.106965356,0.5222667,-0.5016956,0.008521343,0.24803871,-0.37028447,-0.14986187,-0.07208641,-0.0070768753,0.9236008,-0.21856557,-0.29271457,-0.5762945,-0.50183254,-0.99040705,-0.38697436,-0.10494309,0.4381099,0.100805424,-0.4701043,-0.15965743,-0.3938015,0.031385515,0.04067666,-0.412036,0.2861132,0.32524493,0.53700405,-0.22971855,-0.858081,0.18347412,0.09023578,-0.36716875,-0.55160224,0.5010252,-0.19919124,0.622965,0.11965987,0.0070933145,0.08110832,-0.643363,0.4121474,-0.3216574,-0.09951219,-0.73909307,0.16878785,663 -256,0.47269052,-0.22824039,-0.5679608,0.01104153,-0.25473133,0.038296256,-0.06878693,0.43270496,0.26868522,-0.18918008,-0.036463935,-0.034076516,-0.0010792792,0.4073604,-0.0648742,-0.6097501,-0.0036741237,0.28542358,-0.47066918,0.60649335,-0.31712478,0.31456974,-0.1814704,0.3138318,0.11559696,0.3589783,0.01870458,0.05705792,-0.003258451,-0.16858354,-0.13225129,0.13309714,-0.6709279,0.18544081,0.05436492,-0.37599462,-0.020536648,-0.37683198,-0.29389158,-0.6591125,0.12650494,-0.63115853,0.507044,-0.07407863,-0.1870456,0.26647606,0.01361535,0.43629816,-0.33348742,-0.055581234,0.07400623,-0.09066449,-0.1870971,-0.2581993,-0.12220856,-0.35635427,-0.58832645,-0.108487435,-0.34193856,-0.07254211,-0.2818496,0.045381553,-0.31458786,0.092718534,-0.083311245,0.18177894,-0.3874424,0.21802491,0.17871097,-0.060246382,0.06015314,-0.47012964,-0.07092619,-0.18629417,0.17929484,-0.12027338,-0.36920163,0.39243242,0.26906237,0.49927595,0.029805478,-0.2521033,-0.39772588,-0.082244106,-0.0084773265,0.540683,-0.13953158,-0.46963245,-0.12089243,0.053208694,0.1677383,0.15550655,-0.012307016,-0.3087106,-0.15933016,0.012930874,-0.16822211,0.17190455,0.45636144,-0.41267362,-0.36825868,0.45724094,0.57960683,0.0881057,-0.092592806,-0.06548499,0.009154649,-0.49860427,-0.14325161,0.0024545987,-0.16083482,0.4205708,-0.069299415,0.093929626,0.5946573,-0.28780687,-0.23522146,0.09337139,0.09700453,-0.2565714,-0.35472524,-0.16915265,0.25643045,-0.50935024,0.24474011,-0.09094749,0.73190427,0.27509862,-0.70951056,0.31526738,-0.577029,0.15748002,-0.043832365,0.400681,0.83799875,0.47765478,0.27478126,0.74235535,-0.42626646,0.2439157,-0.19838342,-0.36102235,0.1465326,-0.20699936,-0.16091026,-0.5583725,0.15208575,0.032670386,-0.21133855,0.20407389,0.29876888,-0.6120946,-0.1663391,0.09785677,0.6009268,-0.2623895,-0.18993117,0.82130265,0.91363066,0.99249876,0.13843912,1.3011981,0.26972187,-0.17027394,0.27575725,-0.27664128,-0.80197704,0.08012246,0.24835603,-0.15923484,0.25288385,0.19817807,0.038274314,0.40233308,-0.29832298,-0.11055115,-0.12364704,0.46179307,0.13606621,-0.08061008,-0.30251133,-0.3254081,-0.04862457,0.11383863,0.029816087,0.3955895,-0.21465947,0.39492786,0.24324268,1.9157016,0.066184714,0.06888259,0.0404909,0.40271005,0.28497902,-0.17947906,-0.19221902,0.39777952,0.33065385,0.15780273,-0.56272984,0.044309914,-0.2873176,-0.4566854,-0.09254303,-0.20771742,-0.07595405,-0.05287889,-0.2868101,-0.27771506,-0.10857229,-0.12541704,0.68382484,-2.6268773,-0.059192088,-0.103896335,0.26848856,-0.20345125,-0.45597294,-0.1710054,-0.5150437,0.36479396,0.22120282,0.45244732,-0.7450556,0.15159419,0.17200771,-0.636403,-0.075060695,-0.55947345,0.067004286,0.007897596,0.37054473,-0.007835722,-0.07578955,-0.02274508,0.08579907,0.50672716,-0.046288777,-0.010219868,0.4059106,0.24988864,0.053392433,0.46445316,0.023301125,0.61822456,-0.2011807,-0.22320619,0.17549734,-0.26635063,0.34645066,-0.075402394,0.12019822,0.3796153,-0.40819576,-0.9893996,-0.6859252,-0.012459334,1.11318,-0.27928188,-0.27320537,0.16106988,-0.426461,-0.23246793,-0.10238234,0.27496508,-0.1620331,-0.23137777,-0.6460475,0.14393112,-0.011363459,0.16900772,0.021478632,-0.07176404,-0.31701103,0.6237241,-0.10079037,0.5018843,0.38903323,0.1540242,-0.24718456,-0.4093118,-0.0226846,0.9441766,0.36012107,0.113185085,-0.22641774,-0.18618873,-0.34390953,-0.16453688,0.16832104,0.49815932,0.6140714,-0.15984634,0.074234344,0.29007912,-0.038476784,-0.00585227,-0.053653732,-0.18692422,-0.12131341,-0.06553787,0.49123377,0.77430266,-0.20360085,0.5424491,-0.07208611,0.15113202,-0.014199084,-0.5632919,0.48414117,1.0233731,-0.27281886,-0.32503644,0.5366055,0.2666021,-0.13842262,0.39803436,-0.45394155,-0.20004924,0.4083328,-0.13222943,-0.15458076,0.25752622,-0.22600065,0.13165437,-0.7234783,0.28789806,-0.13872832,-0.52312833,-0.4249764,-0.043665536,-3.340913,0.24954563,-0.15767124,-0.1301674,-0.008833925,-0.1600543,0.11786986,-0.7079693,-0.516783,0.22470036,0.16449365,0.7008446,-0.10068997,0.10596313,-0.18218152,-0.38995135,-0.40743876,0.17434934,0.091585845,0.32517204,-0.038475353,-0.4289191,-0.12920696,-0.03935292,-0.4884714,0.08691471,-0.5993641,-0.35550973,-0.14784926,-0.6034388,-0.3479478,0.6760632,-0.36952278,0.04596261,-0.16260107,0.008185331,-0.13612798,0.2114922,0.040100645,-0.060541395,0.037225507,0.011818016,0.16221146,-0.3168258,0.23409702,0.008200661,0.30155268,0.24610633,-0.13893393,0.25163776,0.5542017,0.7661438,-0.06691597,0.8515121,0.59315914,-0.22575952,0.20180772,-0.2131777,-0.18933201,-0.51395154,-0.42883292,-0.27471927,-0.50671893,-0.26234713,-0.048231263,-0.3473095,-0.724903,0.5918144,0.0659373,0.094725356,-0.06116195,0.3170304,0.6563497,-0.28763884,0.057153285,-0.09352746,-0.21452062,-0.47854328,-0.30503985,-0.41981235,-0.37601635,0.29098588,1.1647003,-0.29081127,0.07624544,0.00805815,-0.19930668,0.039756205,0.15262744,-0.050063808,0.28572443,0.40579593,-0.11796183,-0.52940404,0.43840915,-0.21567973,-0.098867856,-0.70191205,0.31333888,0.43791047,-0.6026276,0.39711592,0.123086885,0.058216497,0.035977606,-0.47655323,-0.0701536,-0.031990457,-0.2534217,0.17752567,0.2782227,-0.8113916,0.47457275,0.33006394,-0.3041565,-0.6397961,0.34512085,0.019818107,-0.13695529,-0.16270615,0.30617124,0.25895256,-0.024675969,-0.25144187,0.12744027,-0.5209132,0.14356853,0.15253353,-0.1591306,0.0547245,-0.15199055,-0.09335966,-0.7562763,-0.020872978,-0.37214914,-0.25459972,0.18562569,0.033570867,0.12086606,0.054079466,0.12267784,0.28365618,-0.40929472,-0.009707288,-0.09463553,-0.28123915,0.39440262,0.39774838,0.42459282,-0.327045,0.5434278,0.040969722,-0.03433196,-0.0230212,-0.015791623,0.4343936,0.09392568,0.35870406,0.11010479,-0.32658064,0.103498474,0.60156083,0.115614876,0.2792118,-0.14041536,-0.20346247,0.06395561,0.21934494,0.20302372,0.22640347,-0.49180794,0.18661591,-0.052844547,0.17091316,0.57563585,0.30745375,0.27989423,-0.09938874,-0.3424838,-0.014613295,0.03568204,0.016904572,-1.4462178,0.4296816,0.11752389,0.62923753,0.4835148,0.07076706,-0.03496055,0.50370425,-0.18988873,0.14569794,0.25336698,-0.08589457,-0.28825948,0.40343916,-0.84733546,0.625379,0.048925325,0.107182674,0.18477133,0.059005324,0.34115276,0.96351105,-0.18480119,0.0030530235,-0.118484996,-0.16505343,-0.008981645,-0.21610473,-0.030078253,-0.58116686,-0.28987953,0.76120603,0.3699114,0.5150783,-0.13912776,0.042904284,0.03526454,-0.08027964,0.09504672,0.040179577,0.18094246,0.02392605,-0.48123428,-0.1578446,0.5241911,-0.21933344,0.2189046,-0.010307407,-0.25407878,0.25135177,-0.14622012,-0.09453098,-0.100545436,-0.60353535,0.082262844,-0.18355204,-0.31887168,0.5156355,-0.106493786,0.23996799,0.12187203,0.10836136,-0.23262383,0.53632516,0.13064648,0.8657166,-0.14696135,-0.15643898,-0.33301857,0.32402596,0.18196945,-0.10854898,0.061919946,-0.18328924,0.041625056,-0.7428884,0.29892334,-0.0080504,-0.33759987,0.026864307,-0.032140113,0.13038266,0.47434852,-0.15907107,-0.20728295,-0.07787654,-0.16414236,-0.22113441,-0.3395612,-0.1937071,0.19440009,0.15044785,-0.12223689,0.005583076,-0.16748434,-0.149098,0.2863625,-0.015134039,0.25991142,0.17121716,0.13887967,-0.24282546,-0.15136978,0.14606307,0.4244814,-0.20194696,-0.19084325,-0.35853344,-0.44554564,-0.4608773,-0.07218776,-0.060253564,0.4569277,0.0693895,-0.21742012,0.6486521,-0.14529648,1.2388898,0.06107042,-0.34597892,0.034527924,0.5917868,0.0031830608,-0.02097209,-0.22389501,0.9244394,0.5061362,-0.087017074,-0.16315457,-0.3435776,-0.18447113,0.31221274,-0.20729613,-0.051268164,0.12967077,-0.41510406,-0.35914257,0.23869543,0.16171685,0.26028454,-0.11290305,0.035410874,0.27998176,0.05850909,0.32289535,-0.36429104,-0.07964139,0.21982482,0.34745753,0.045958392,0.23614828,-0.5134162,0.35350686,-0.4552478,0.11985205,-0.187218,0.26261264,-0.15129648,-0.21868873,0.17736252,0.057369538,0.3151921,-0.3577382,-0.42422915,-0.3290058,0.5641951,0.06627091,0.09390498,0.714438,-0.27847973,-0.019069765,-0.04315224,0.36666882,0.8042182,-0.2887341,-0.08277931,0.44969302,-0.28437895,-0.45751816,0.32925892,-0.1455535,0.1842341,-0.014656766,-0.135163,-0.61072236,0.24018942,0.16659169,0.25142977,0.10895918,-0.6542269,-0.06552117,0.14460969,-0.29278955,-0.14229351,-0.29734373,0.31141287,0.8562523,-0.31586686,-0.4552309,0.24213082,0.109365895,-0.044150844,-0.46682194,-0.20373257,-0.36672604,0.28809866,0.14992762,-0.37531674,-0.2565233,0.17610492,-0.4555108,-0.07930057,0.00519768,-0.27747548,0.20956783,-0.33802578,0.07460002,0.8779185,-0.29340187,0.39376706,-0.6102035,-0.42261544,-0.76769865,-0.42770398,0.38884857,0.2317815,0.005668199,-0.6728313,-0.02954746,-0.03360861,-0.2576497,-0.1204459,-0.3387678,0.52024543,0.1344643,0.13586353,-0.044869944,-1.0381173,0.15123558,0.029630836,-0.05436116,-0.5216558,0.45278436,-0.06586985,0.77176934,0.10941192,0.04808288,0.39558786,-0.49197966,0.08033741,-0.2657732,-0.07446591,-0.734165,0.038720965,665 -257,0.4649627,-0.14424019,-0.25574306,-0.19279346,-0.065725416,0.18122222,-0.2668769,0.25321755,-0.036386646,-0.7151142,-0.041864205,-0.13781068,-0.14317635,0.26783144,-0.29609507,-0.59104276,0.10097025,-0.045217913,-0.42627743,0.3854821,-0.5281813,0.30421117,0.017417066,0.2263483,-0.04743313,0.24251582,0.32936102,-0.1825977,-0.09523523,-0.31704083,-0.013117338,-0.064669736,-0.69609743,0.29137945,-0.18529285,-0.095159486,0.15729895,-0.26685682,-0.39791265,-0.75667036,0.1283816,-0.8272438,0.57874554,-0.01122247,-0.24123478,0.27892196,0.18819669,0.22264093,-0.056279443,0.16841434,0.25577423,-0.20012568,-0.08716108,-0.14524387,-0.19208299,-0.569501,-0.4890656,0.043091904,-0.5463828,-0.18906316,-0.2847411,0.1601159,-0.19401836,-0.053481363,-0.15198961,0.23888204,-0.38681647,-0.2852856,0.06712677,-0.053878743,0.5697245,-0.5508265,-0.17230506,-0.035043094,0.23258524,-0.23147479,0.011514981,0.33309624,0.23219971,0.6119149,0.036883626,-0.21552975,-0.105095714,-0.03914128,0.29003412,0.5359907,-0.12960164,-0.41808748,-0.15321355,-0.06656252,0.31924435,0.24797407,0.054389365,-0.2812173,-0.033617888,0.10502488,-0.24764125,0.3095419,0.49642518,-0.33810297,-0.18280992,0.3032878,0.4653753,0.094425045,0.04855164,0.12525222,-0.11892463,-0.39191768,-0.20281631,0.33303195,-0.23685022,0.48693216,-0.16588996,0.08833159,0.6324159,-0.16493997,0.16426642,0.04957718,-0.14481966,-0.017471392,0.0051325005,-0.31373823,0.25553703,-0.6174141,-0.01962661,-0.36528063,0.6595953,0.15630269,-0.86024296,0.33078164,-0.31193706,0.019074548,-0.02306795,0.54726195,0.5141691,0.52475965,0.021868484,0.6418123,-0.628532,0.04759663,-0.039789166,-0.26314667,0.31888375,-0.114737555,-0.09376058,-0.42522082,-0.13117878,0.12749588,-0.053455185,-0.32267913,0.37547177,-0.432599,0.04460164,0.18754801,0.76823515,-0.29871145,0.11318286,0.49159113,1.145695,0.88468176,0.18025216,1.4033867,0.18506432,-0.04185612,-0.0758856,-0.09853532,-0.5343253,0.31922206,0.49182194,0.04052113,0.2665242,0.07815136,-0.016210798,0.29211435,-0.46350718,0.027551524,-0.17800286,0.47437117,-0.18974775,-0.19104144,-0.3538293,-0.1339715,0.066762276,-0.05782569,0.051012915,0.118738666,-0.12434735,0.26217613,0.34386343,1.112286,-0.13839151,0.08727031,0.044197142,0.45861593,0.17342472,0.03896831,-0.023718016,0.11334219,0.32041678,0.14912865,-0.47745374,-0.10578234,-0.13451792,-0.5176428,-0.2571871,-0.22279303,0.10260472,-0.19926304,-0.3752077,-0.19833408,0.097279355,-0.47959492,0.61203617,-2.5302238,-0.07966073,-0.2051842,0.3362706,-0.26703793,-0.3554366,-0.09930303,-0.29909566,0.7443642,0.35165003,0.29991224,-0.60192937,0.31397775,0.5149652,-0.3589669,-0.13483588,-0.62801427,-0.2240295,-0.12850122,0.2751405,0.20417304,-0.24040836,-0.027053293,0.3533239,0.45113793,-0.017818226,0.2372516,0.06301982,0.24994276,0.12959051,0.5375132,0.13211018,0.37882206,-0.12189903,-0.11078999,0.35835633,-0.33238176,0.17581314,-0.15009445,0.2461276,0.23125155,-0.34203035,-0.6914409,-0.7483648,-0.7464342,1.2454839,-0.11111555,-0.48091182,0.24435069,0.3582013,-0.36284712,0.014341005,0.16357447,-0.21818368,0.29234546,-0.83993685,-0.10911266,-0.0792461,0.29679716,0.017807515,0.18829006,-0.6982037,0.8250196,-0.19429229,0.30394623,0.35663348,0.2535269,-0.26331937,-0.49197495,-0.027745781,1.0877397,0.5694672,0.09058328,-0.074562915,-0.20386797,-0.2192783,-0.12367658,0.13435854,0.49600163,0.86319906,0.06817875,-0.009133068,0.15117815,-0.16881807,0.084400795,0.037370212,-0.49253097,-0.020751726,0.043136034,0.7195106,0.38005018,-0.026888061,0.24739692,-0.26918513,0.47175634,-0.34159136,-0.33212483,0.39845422,0.8922218,-0.055456802,-0.1255198,0.5642052,0.50862896,-0.07857503,0.4996667,-0.8211145,-0.47357798,0.46097654,-0.09260397,-0.53516835,0.10901858,-0.4478099,0.19071595,-1.0302285,0.6354714,-0.4693903,-0.48879787,-0.61669475,-0.2578694,-3.5280344,0.041628923,-0.13436057,-0.16258882,-0.1074427,-0.11161261,0.4451018,-0.5513131,-0.55820554,0.07868358,-0.124301985,0.566307,0.08696244,-0.027328348,-0.2690128,-0.24018316,-0.39629346,0.29968372,0.1345347,0.15950125,-0.017757716,-0.30028203,0.05154192,-0.24745026,-0.35810485,0.049952473,-0.47585753,-0.603678,-0.31004646,-0.3474323,-0.36919078,0.6668781,-0.51768744,-0.04662814,-0.2780428,-0.08026687,-0.1756913,0.44909582,0.20349385,0.22573577,0.02894926,-0.098829255,-0.11933194,-0.31248277,0.2809691,0.28165254,0.20850739,0.588355,-0.42345726,-0.011977946,0.52852136,0.56134677,-0.16374734,0.7549379,0.2675356,-0.21814175,0.35378945,-0.39895618,-0.33144596,-0.65848696,-0.44453964,0.000459522,-0.28330448,-0.38531414,-0.2071466,-0.35982195,-0.5592242,0.3878668,-0.077930085,0.1201288,-0.22804348,0.09420769,0.15283845,-0.1199627,-0.14873974,-0.22397813,-0.12625399,-0.40128735,-0.45902947,-0.6821793,-0.49838716,-0.07800952,0.94191974,0.030974708,-0.052430373,0.13344349,-0.054341864,0.27625197,-0.07094897,-0.008442541,-0.03856223,0.33740103,0.117588736,-0.80340856,0.5446081,0.098671265,-0.14436838,-0.6312452,0.072583295,0.7964079,-0.5766506,0.49556363,0.52537656,0.2797666,0.017320672,-0.62136936,-0.19795412,-0.05005571,-0.23115996,0.52178603,-0.0063985665,-0.66348964,0.584026,0.30359226,-0.24473748,-0.61872864,0.52920234,0.16664305,0.008313139,0.17201376,0.42574462,-0.15976349,0.15844259,-0.16456701,0.35421354,-0.55133057,0.30599728,0.5347469,0.17475878,0.48711535,-0.11329909,-0.101583034,-0.65352225,-0.14036521,-0.36003432,-0.2461637,0.033699498,-0.07461694,-0.14447239,0.24455729,0.13017064,0.5124061,-0.37881812,0.2238722,0.040235937,-0.18688576,0.33736488,0.5229272,0.43741494,-0.23840077,0.52071404,0.052155767,0.006414843,-0.40289542,-0.075134024,0.59207404,0.20900351,0.028895969,-0.016705235,-0.029505014,0.25933975,0.7981721,0.225595,0.49709672,0.20276783,-0.23368083,0.2800799,0.10967987,0.2262142,0.14045042,-0.4138924,-0.031249285,0.09529763,0.01910888,0.3559604,0.052962855,0.2517094,-0.15679057,-0.08320268,-0.037942667,0.25042737,-0.17437837,-1.2601397,0.27222475,0.090425104,0.58918995,0.5566126,0.020520309,0.25582737,0.5747213,-0.29946336,0.004523017,0.17158382,0.13928379,-0.47568384,0.5713944,-0.7047082,0.1463442,0.028545309,0.030355254,-0.073878236,-0.05490638,0.3951298,0.92698413,-0.12412433,0.20018095,-0.21966822,-0.13507317,0.2291728,-0.40987903,0.26038292,-0.08503728,-0.32562825,0.69479,0.34709322,0.37605414,-0.18816496,-0.052167878,-0.017555548,-0.24512811,0.4279761,-0.030059163,0.065652154,-0.10891635,-0.49953744,-0.2584443,0.55278534,0.2354215,0.048739847,0.17044087,-0.24426048,0.12459438,-0.07254051,0.04036902,0.0585796,-0.6552284,-0.09894629,-0.36815608,-0.11854222,0.30840072,-0.34163418,0.22474185,0.12156944,0.016431984,-0.048110053,-0.06606674,0.2757206,0.5537519,0.05685216,-0.29244167,-0.31593296,0.027407646,0.136651,-0.3001765,-0.0057157637,-0.11747643,0.07871817,-0.64040637,0.28942338,-0.17641382,-0.25196096,0.29285082,-0.22787406,-0.110826895,0.46496072,-0.25698367,-0.19526409,0.28212148,0.10329983,-0.099079214,-0.22383802,-0.13838777,0.14884433,0.04556621,0.053773895,-0.033058524,-0.097487584,-0.179906,0.28957322,0.3018751,0.32225507,0.43129045,0.017609786,-0.55282694,-0.018661553,-0.12983966,0.40287367,0.095439635,0.13148984,-0.18378903,-0.5651054,-0.22548793,0.08197553,-0.16697706,0.019595511,0.035937462,-0.2969361,0.7012299,-0.04569117,1.1324977,0.10155045,-0.351666,-0.033359934,0.5997686,-0.2097854,0.07564224,-0.43785447,0.9362001,0.5775959,-0.07485842,-0.07830074,-0.3978346,-0.17674579,0.18411891,-0.24648166,-0.12630521,-0.17321748,-0.73063976,-0.45356998,0.28073385,0.35368901,-0.18866633,-0.06551294,-0.13064757,0.29587686,0.18040167,0.57267416,-0.56775975,-0.05651772,0.44953212,0.14270899,0.08211745,0.13459876,-0.38232443,0.34173617,-0.602814,0.012782192,-0.3147791,0.020584222,-0.12694108,-0.37780446,0.270541,-0.013655281,0.36237112,-0.24771783,-0.4226481,0.04229511,0.5937184,0.017652897,0.19843467,0.67116207,-0.10766955,0.1388352,0.082432814,0.36787796,1.2630498,-0.25322905,0.058603603,0.37186086,-0.39033574,-0.54224366,0.15813152,-0.4912628,0.12645142,-0.18525761,-0.55991733,-0.36058342,0.24540864,0.120830104,0.004619167,0.0014853278,-0.5428472,-0.20835829,0.44125786,-0.31944245,-0.2789856,-0.20030124,0.16238222,0.58902514,-0.3873711,-0.2461618,-0.04520176,0.34533313,-0.49017048,-0.6415783,-0.05080839,-0.14923069,0.38297608,0.23923911,-0.29272652,0.07678752,0.1249466,-0.3450819,0.15355307,0.3073212,-0.40386805,-0.06854298,-0.2550248,0.13826014,0.5430645,-0.1145661,-0.1757277,-0.66326725,-0.4528399,-0.908785,-0.21949962,0.3391856,0.24192613,-0.041614167,-0.48899034,-0.0044507016,-0.31086364,0.18139632,0.07150894,-0.33254057,0.2770704,0.14843103,0.5663688,-0.16906661,-0.5924099,0.10957824,0.14186579,0.020769298,-0.5050946,0.5873665,-0.13553332,0.6723849,0.105190806,0.022994395,-0.032006975,-0.74646604,0.27931362,-0.12812008,-0.057583846,-0.7869147,0.17000024,667 -258,0.32282168,0.108474165,-0.54485226,-0.0934892,-0.33070508,0.2910417,-0.09881132,0.3979107,0.040471133,-0.36293423,-0.14521484,0.0013975183,-0.061587743,0.21683568,-0.29382852,-0.66457206,0.02754519,0.100612305,-0.38289502,0.6234613,-0.22867736,0.37806046,-0.15968649,0.32307,0.050633755,0.26718,0.041903015,-0.08254631,-0.23238163,-0.37896717,-0.030589644,0.4801157,-0.5404757,0.26388136,-0.27416342,-0.29190394,0.06780182,-0.16587988,-0.29538605,-0.6121867,0.14573464,-0.69727963,0.4657318,0.013593872,-0.32124764,0.39322928,0.24899785,0.25823665,-0.114219524,-0.18299443,0.09020432,-0.13552436,-0.1394349,-0.117497,-0.3081597,-0.6544,-0.49148378,0.013289111,-0.6953995,-0.12136351,-0.34546646,0.18660246,-0.2814791,-0.23444726,-0.05123951,0.31688443,-0.42655212,0.099300414,0.10041436,-0.06742149,0.014879113,-0.59435403,-0.25043735,-0.02033062,0.3072629,-0.14274889,0.0023160523,0.39527148,0.21167092,0.26753533,-0.097410046,-0.18394502,-0.3166128,-0.23100267,0.28919566,0.42011076,-0.25358135,-0.5452276,-0.11854239,0.003862071,0.3354009,0.08372211,0.1850281,0.071897425,-0.1069824,-0.12815683,-0.24198292,0.49512473,0.47821978,-0.27084717,-0.13980049,0.41402608,0.41432172,0.32886487,-0.3292559,-0.015215083,-0.12896243,-0.34618908,-0.086941704,0.08512562,-0.18269888,0.42248756,-0.14791963,0.11830533,0.58201027,-0.15413791,0.17388102,0.34059444,0.07113203,0.05935324,-0.10054054,-0.13341513,0.20179921,-0.45441234,0.089804046,-0.1581563,0.67146707,0.040902145,-0.6460806,0.37053508,-0.46280512,0.042348266,0.013196787,0.48530683,0.53890324,0.4201165,0.15921356,0.5167259,-0.1584617,0.07015799,0.07451042,-0.18733619,0.08498099,-0.24628887,-0.12295297,-0.59141374,0.10303561,0.06605264,0.005872764,0.08054771,0.29017815,-0.6017794,-0.18330842,0.33812103,0.87381285,-0.26904842,-0.22691904,0.6885716,1.2127756,0.81244785,-0.09706949,0.9457653,0.034769274,-0.15185013,-0.111396566,-0.24657494,-0.50878537,0.21781786,0.278284,-0.3093437,0.41777536,0.10013746,-0.050287113,0.26721665,-0.36996529,-0.050622594,-0.11474905,0.15838291,0.087468654,-0.13596572,-0.3811804,-0.12137135,0.067316815,-0.18859625,0.27464804,0.37371552,-0.12318801,0.46044046,0.111515015,1.0184022,0.02003903,0.015853997,0.031794123,0.5570357,0.23682234,0.035393763,0.09431769,0.43157122,0.2868419,0.0825973,-0.34878966,0.1991703,-0.32312626,-0.46255314,-0.097253315,-0.43072417,-0.31744924,0.0013684749,-0.28715807,-0.146116,-0.06773005,-0.11681732,0.48047486,-2.9712784,-0.054872133,-0.16177578,0.18117975,-0.17765903,-0.21481194,-0.107134014,-0.39350414,0.4169315,0.19933671,0.43110648,-0.45363697,0.4680945,0.51038384,-0.56474817,-0.12404572,-0.4828092,-0.21707802,0.032510586,0.5940843,0.05382734,0.04431146,0.15963934,0.14752193,0.35674942,0.0014484386,0.22848566,0.20572893,0.39204535,-0.12816413,0.3321663,0.1315084,0.55886775,-0.15340878,-0.12039966,0.196231,-0.4033988,0.571822,-0.27533028,0.14374845,0.43620464,-0.21973476,-0.87284905,-0.46730775,-0.18086027,1.2173538,-0.19500937,-0.47103876,0.012580617,-0.14873947,-0.22787127,-0.17409293,0.28031817,-0.035892416,0.0016931216,-0.71160924,0.057707336,-0.14900179,0.14977413,-0.06462434,0.03463949,-0.37686148,0.5889405,-0.033247408,0.34551278,0.11817579,0.22460026,-0.277564,-0.37689802,-0.098219365,0.82249886,0.52365667,0.055011995,-0.2378436,-0.2766574,-0.23727447,-0.078040965,0.05516185,0.6966893,0.41033,0.003248759,0.013541034,0.27904892,-0.060268793,0.14891905,-0.19698845,-0.30706748,-0.10832148,-0.013803627,0.515725,0.50920224,-0.23807886,0.5618993,-0.045438286,0.30352753,-0.17677085,-0.38037783,0.45985258,0.90552074,-0.12468453,-0.20926319,0.6270889,0.56605786,-0.27024323,0.3703066,-0.6121134,-0.4189094,0.69249207,-0.14916427,-0.36980656,0.2158342,-0.25553194,0.0476325,-0.8876886,0.41188267,-0.42609066,-0.53316426,-0.5799014,-0.0831803,-2.6425896,0.07372572,-0.24036461,0.0052558375,-0.32473907,-0.12191305,0.14585875,-0.5970501,-0.53458875,0.11505285,0.17193203,0.5678722,-0.216763,0.16102369,-0.18191151,-0.47459304,-0.19461554,0.3496873,0.14121976,0.30357963,-0.27661622,-0.40051118,-0.049540076,-0.17950727,-0.24175905,0.024557492,-0.49542814,-0.4538741,-0.0034240887,-0.37279186,0.07111192,0.70997316,-0.44834214,-0.08931887,-0.25866416,0.19161744,-0.0108864205,0.06708256,0.117790684,0.13700776,-0.04110245,-0.057204295,0.22052614,-0.29093304,0.41025174,0.09464538,0.5596024,0.41780165,-0.007268536,0.1589485,0.60758364,0.42368242,0.013794208,0.7891607,0.19932102,-0.21319045,0.44760615,-0.24814537,-0.33578598,-0.6610983,-0.27641466,0.0102031315,-0.30264938,-0.5072228,-0.114443555,-0.3851659,-0.7634642,0.51802707,-0.0013631076,0.12918977,-0.31110284,0.4066135,0.4786038,-0.086531825,-0.020784238,0.029813528,-0.10707534,-0.3771387,-0.28964993,-0.6285306,-0.25392944,-0.058747362,0.8001849,-0.32658926,-0.029616702,0.084519535,-0.21255408,-0.00016220212,0.1440591,0.23426558,-0.04501039,0.40625885,-0.00064970256,-0.64251876,0.545921,-0.25093284,-0.099367514,-0.48104948,0.0901025,0.5808199,-0.6580051,0.4291343,0.5810612,-0.0020472289,-0.07715461,-0.5073511,0.0367255,-0.11253546,-0.07118395,0.28234985,0.15982819,-0.69346035,0.4726492,0.17585628,-0.2919526,-0.5637458,0.6727837,-0.099208914,-0.14409202,-0.021830281,0.33463976,0.1644697,-0.06133263,-0.13182563,0.28103384,-0.3685016,0.2355542,0.20374122,-0.09444893,0.30930945,-0.106676914,-0.19733284,-0.74081063,0.09035245,-0.48942634,-0.4126339,0.28019303,0.044179853,0.022325043,0.18195404,0.08636184,0.3109275,-0.4366017,0.13211766,-0.015930805,-0.25053912,0.42194924,0.417359,0.58785313,-0.43564478,0.5337731,0.1639298,-0.03658596,0.22632653,0.236849,0.45455125,-0.014206942,0.4302135,0.22485924,-0.09839131,0.14501095,0.8294596,0.22833599,0.48111248,0.06974947,-0.17079201,0.21110773,-0.12595479,0.15323453,-0.025564544,-0.49920905,-0.1194218,-0.17449076,0.09598883,0.44060785,0.1229554,0.25917688,-0.015110815,-0.19040324,0.028831655,0.23374073,0.1679745,-1.1947474,0.40815285,0.2686342,0.7735558,0.23448,0.18950893,0.1447783,0.61610454,-0.25198388,-0.01234924,0.4106642,0.14821647,-0.40156573,0.55110127,-0.58957255,0.53200525,0.015962517,0.03989807,0.09081988,-0.16071059,0.33393624,0.953818,-0.306079,-0.015325018,0.092536,-0.39052826,0.06751089,-0.2754864,0.22524881,-0.32830694,-0.11438746,0.61718684,0.46453685,0.26681396,-0.1726266,0.06222099,0.145047,-0.10606457,0.27477992,0.026248941,0.16475934,-0.23620237,-0.4679259,-0.212864,0.58143216,-0.16156048,0.11652961,0.09592186,-0.23183292,0.3161355,-0.05637263,0.08127256,-0.0343043,-0.52433974,0.06929403,-0.23823072,-0.6332291,0.54345477,-0.19970451,0.2954989,0.17790708,0.012924107,-0.21104339,0.2746253,0.081383355,0.43812725,-0.033594802,-0.2270691,-0.3022499,-0.070321865,0.08913716,-0.21860217,-0.13212228,-0.18353195,0.31930718,-0.41734186,0.31464294,-0.35291258,-0.2898692,-0.33779982,-0.23981507,-0.006575678,0.35681438,0.061426003,-0.06642036,-0.05454973,-0.03122689,-0.20250443,-0.085590534,-0.1390503,0.21761574,0.21571915,-0.1669946,-0.24489127,-0.25385374,-0.10356067,0.20773314,-0.17400257,0.30057663,0.43185717,0.057600737,-0.42821473,-0.10966582,0.17144705,0.46225947,-0.14904281,0.057508014,-0.15639304,-0.32986137,-0.36555448,0.43075627,-0.17456418,0.19676328,0.24933057,-0.25645834,0.76569974,-0.16353913,1.07732,-0.038257916,-0.3678365,0.15385096,0.60073245,0.026435941,0.062710285,-0.26513553,1.0179361,0.45402405,-0.044664316,-0.1305106,-0.4866981,0.11203162,0.06855282,-0.21486136,-0.22963889,-0.0121485405,-0.50860643,-0.16559677,0.2625829,0.26111534,0.21627945,-0.11149402,0.013855829,0.076600745,0.18503074,0.31277493,-0.7184637,-0.30206698,0.36835,0.16769746,-0.14463663,0.048657212,-0.49529627,0.38449237,-0.5839213,0.059207097,-0.24614629,-0.023852384,-0.33696058,-0.32092437,0.17810918,-0.09496787,0.32388645,-0.39510432,-0.37320688,-0.18653244,0.24307282,0.15611893,0.13363428,0.44908416,-0.25086373,0.08760038,0.07393177,0.53232163,0.91569626,-0.16540848,-0.23888272,0.22265793,-0.40542543,-0.5405191,0.0030404688,-0.6555421,0.2949485,-0.13380317,-0.28581557,-0.56402355,0.24242176,0.13422857,0.031193098,0.06352346,-0.647523,-0.21201095,0.025108445,-0.373935,-0.24171498,-0.18950352,-0.05035226,0.695172,-0.28837928,-0.25392294,-0.10246798,0.28513038,-0.13405564,-0.6022963,0.097832195,-0.22399664,0.3692028,0.06780192,-0.3758252,-0.10995126,0.09653353,-0.34065017,0.33715293,0.5065319,-0.3018593,-0.02494781,-0.2622008,0.25767183,0.5895464,-0.21119958,0.16583541,-0.3934638,-0.48653373,-0.7953247,-0.42159298,0.1270837,0.2996783,-0.10828666,-0.65385145,0.037963066,-0.11621799,-0.16859147,-0.05659007,-0.479377,0.40293732,0.15049578,0.26183698,-0.1322694,-0.923482,0.14085229,-0.024466125,-0.08652816,-0.4927946,0.5360991,-0.27968127,0.98354214,0.07491244,0.046505746,0.089290716,-0.49266136,0.0753501,-0.19146945,-0.06670467,-0.541611,0.11642969,668 -259,0.56410116,-0.016412174,-0.5153356,-0.23932125,-0.46093136,0.018931214,-0.18543069,0.3739763,0.14326724,-0.42415148,-0.17499821,-0.08181775,0.10084657,0.20518659,-0.26644853,-0.8145761,0.20896451,0.29494604,-0.58781093,0.49940795,-0.4216362,0.37312093,0.10141768,0.24976285,0.122886024,0.16018006,0.039509527,-0.20534904,0.08032009,-0.21435684,-0.13508354,0.21020895,-0.5425693,0.25514036,-0.07495508,-0.39332718,0.08001146,-0.42528403,-0.34482422,-0.8015016,0.3095787,-0.6873095,0.38951188,-0.029156184,-0.31482288,0.06312888,0.13122818,0.3792303,-0.16188233,-0.05294822,0.16999766,0.037041284,-0.23044315,-0.1711133,-0.083564915,-0.383249,-0.5249041,-0.037825115,-0.41902816,-0.050127827,-0.25729454,0.3466062,-0.24484232,0.056017257,-0.08401559,0.5163246,-0.3144475,0.119963154,0.17281793,-0.015896678,0.23499765,-0.5401038,-0.1761947,-0.0909629,0.30619106,-0.13135591,-0.21359923,0.23400876,0.27063826,0.48472354,-0.049905304,-0.19656657,-0.1636525,-0.10634673,-0.07851609,0.5222801,-0.22255553,-0.53776866,-0.12728648,0.0056753317,0.17392007,0.18582286,-0.015208653,-0.37254232,-0.070270866,-0.048048712,-0.31314513,0.4177632,0.48819277,-0.33560726,-0.103859186,0.29111764,0.5257919,0.13959844,-0.16187534,-0.016441973,0.026407318,-0.592899,-0.1807149,0.059154965,-0.083345555,0.44238758,-0.05311706,0.1837851,0.6250114,0.07024705,-0.17321044,0.29268026,0.118365794,0.13517049,-0.33599263,-0.28261486,0.30594027,-0.608409,0.12108081,-0.2874916,0.96267253,0.13241068,-0.8201504,0.34705552,-0.6231373,0.096181616,-0.16103569,0.49751252,0.6947212,0.38567334,0.09873683,0.79736507,-0.3362644,0.091527544,-0.14897887,-0.20279908,-0.143669,0.13301697,0.04711968,-0.37235552,0.040167253,-0.027227696,-0.122186966,0.1431362,0.4696387,-0.5517824,-0.19449612,0.062684804,0.8177306,-0.3913697,-0.029147653,0.7313641,0.9547516,0.91614825,0.21381995,1.2143422,0.11103864,-0.21421334,0.22728196,-0.2525076,-0.6171556,0.31345174,0.15750773,0.32821372,-0.012248425,0.1093853,-0.11333475,0.49149245,-0.3947658,-0.121292375,-0.20021077,0.35732222,0.026689975,-0.058835927,-0.44895637,-0.44699973,-0.026639942,0.053383265,0.18212779,0.32674417,-0.18942569,0.19613811,0.095914036,1.2976533,-0.03880249,-0.071077846,0.08027847,0.35772142,0.23445408,-0.15696165,-0.14731473,0.14780721,0.31253627,-0.10656044,-0.5862668,0.061958887,-0.20239936,-0.42295256,-0.11074962,-0.233589,-0.08651934,-0.11136138,-0.5084617,-0.19221668,-0.16768523,-0.22995214,0.6361771,-2.5185304,-0.23396537,-0.120040774,0.3427065,-0.17245644,-0.3406594,-0.24386209,-0.5265173,0.3513884,0.2246285,0.5214799,-0.5370519,0.5028409,0.48737124,-0.5868114,-0.1218236,-0.7219624,-0.19341014,0.09040915,0.20003922,0.027467234,-0.08672641,-0.19639267,0.027116528,0.4956171,-0.0023272634,0.1689174,0.27414662,0.37521246,0.22893776,0.4798148,0.04893841,0.5298169,-0.19813338,-0.18339655,0.23730367,-0.4354512,0.14402646,-0.14598246,0.10552817,0.4341814,-0.46634188,-0.90230364,-0.7681914,-0.17159966,1.0233966,-0.23995055,-0.27562818,0.24407291,-0.20576945,-0.111599125,0.065154895,0.35838452,-0.064823754,-0.1259342,-0.78873724,-0.030096956,-0.016221832,0.12789598,-0.030816555,-0.0069310027,-0.44405666,0.5837822,-0.22123283,0.47631747,0.2047944,0.2529476,-0.24858353,-0.38270444,-0.06705808,0.87755203,0.31198862,0.13924655,-0.20767239,-0.24291068,-0.38911697,-0.0059574763,0.027617406,0.8183878,0.7823869,0.009733921,0.006619479,0.25445455,-0.11343682,0.22533941,-0.07614126,-0.4259824,-0.17850171,0.03361269,0.6706486,0.5502772,-0.025450388,0.41152197,-0.075054914,0.3734998,-0.209613,-0.3756628,0.30114478,1.1261616,-0.19753736,-0.32282227,0.6249119,0.46106184,-0.14897482,0.329972,-0.6134882,-0.2950111,0.39603454,-0.08027926,-0.39422643,0.11630742,-0.30481803,0.17510948,-0.8732847,0.46461257,-0.36602482,-0.6867831,-0.57128197,-0.033512753,-3.0318124,0.25394005,-0.19819692,0.010588443,-0.03255612,-0.24201465,0.11031411,-0.53785765,-0.5589693,0.17121486,0.11159542,0.71067333,0.03897635,0.18023954,-0.16237967,-0.23337488,-0.2032844,0.14845029,0.17936532,0.2977494,-0.008296593,-0.31973833,-0.0026163498,-0.15344475,-0.19063708,0.08560503,-0.7306349,-0.5152409,-0.054537296,-0.6894877,-0.3211288,0.6359962,-0.38764337,0.06489909,-0.16461112,0.029397372,-0.16658612,0.34291688,0.02809913,0.18104331,0.043623853,-0.03464006,0.008368178,-0.3145246,0.29182035,0.03451266,0.16753261,0.20259206,-0.057202753,0.1778447,0.5296787,0.61573344,0.06971003,0.91362846,0.4085,-0.06803922,0.21128663,-0.21892847,-0.35053188,-0.4248485,-0.251763,-0.17256811,-0.34323725,-0.17854537,-0.01270233,-0.44492656,-0.7545498,0.34566554,0.015831172,-0.095321335,-0.038386837,0.22327934,0.5188382,-0.16470951,-0.008977779,-0.095692106,-0.102706894,-0.50184584,-0.28942147,-0.6158339,-0.30938253,-0.08101165,1.2815837,-0.23136505,0.033046473,0.023111764,0.03372811,0.016842287,0.24723712,0.032965057,0.08578487,0.45921192,-0.23815084,-0.6130112,0.3596711,-0.34525186,-0.3053603,-0.42376506,0.22587523,0.5188638,-0.6994145,0.61889154,0.47762635,0.24466829,0.0046574315,-0.61174375,-0.14328766,0.20813212,-0.21616516,0.4253035,0.29708233,-0.6850331,0.45448926,0.4050141,-0.105863504,-0.79005605,0.67096776,-0.0032978335,-0.53092206,-0.018997543,0.4631835,0.12207584,-0.04664629,-0.16871732,0.15526418,-0.3501628,0.3433257,0.14669108,-0.11885726,0.17707604,-0.2907619,-0.09118579,-0.74201286,-0.12121112,-0.5414687,-0.18794495,0.1680689,0.032736354,0.1406636,0.20239028,0.06829012,0.44359824,-0.42116448,-0.02435375,-0.22512788,-0.34098524,0.2338619,0.40343374,0.3418516,-0.28351066,0.55228275,-0.040471938,-0.0930808,-0.03814327,0.20414644,0.4416647,-0.10855198,0.44018108,-0.18504126,-0.14041434,0.17490414,0.76323444,0.06554221,0.22368366,-0.011822252,-0.08483636,0.16384073,0.048979025,0.19363807,0.07520129,-0.39027175,-0.16574144,-0.010023657,0.16082273,0.4616457,0.081177324,0.19054222,-0.021552997,-0.39670286,-0.0808197,0.0852901,-0.033752322,-1.3386445,0.5013584,0.13761194,0.7429618,0.53584135,0.057410683,0.036014404,0.5358528,-0.13245764,0.23125419,0.25792873,0.030829886,-0.30347994,0.42902026,-0.55167377,0.48442954,-0.11382588,0.052367035,-0.0030180286,-0.06490412,0.39254302,0.8693623,-0.076610334,0.07649764,0.027171874,-0.35128078,0.11241969,-0.36273918,-0.027234187,-0.699032,-0.2392783,0.7328607,0.5230653,0.3081213,-0.23134069,0.011631336,0.2495661,-0.15444054,0.08561221,0.04722782,0.044218883,0.096720494,-0.6140996,-0.27046162,0.56990206,-0.046885926,0.005809466,0.11086297,-0.05856086,0.18666236,-0.055022765,0.0012528162,-0.11203382,-0.5724067,-0.079026245,-0.43845117,-0.25927657,0.28348938,-0.14329238,0.08943518,0.25781357,0.12665756,-0.34559387,0.32230908,0.22758304,0.694418,-0.030280987,-0.13850416,-0.46983972,0.017402602,0.14239782,-0.109178655,-0.2269493,-0.34625447,0.107766315,-0.7940777,0.4893215,-0.024131905,-0.101127245,0.24319759,-0.16122098,-0.012824509,0.4343022,-0.14796314,-0.030519357,0.039092746,0.0068763136,-0.2596602,-0.08508695,-0.17273325,0.18763135,0.12111876,-0.12353799,-0.055394206,-0.22610046,-0.02904675,0.5483477,0.083162345,0.43561748,0.41448778,0.16773619,-0.2678874,-0.05369157,0.1471393,0.47467226,-0.17824177,-0.11528173,-0.35843506,-0.2854032,-0.3256195,0.36343843,-0.1368403,0.32575414,0.039472796,-0.18526818,0.75242406,-0.12058592,1.0757172,-0.033445347,-0.2562485,9.925763e-05,0.47718036,-0.15688248,-0.04602954,-0.30152592,0.9248332,0.53228384,-0.067596205,-0.090683974,-0.3681492,0.124698356,0.12980635,-0.23202161,-0.063737586,-0.021508664,-0.51276916,-0.26633286,0.16093431,0.24592991,0.08970265,-0.13485575,-0.005534202,0.10946532,0.01565644,0.32983488,-0.56166255,0.03737143,0.15458912,0.33184776,0.14023225,0.2761915,-0.4570901,0.33926696,-0.5461713,0.08449745,-0.2738941,0.13893496,-0.120785676,-0.2936798,0.18850638,-0.0020066262,0.30217865,-0.21686636,-0.28505316,-0.29294735,0.4858436,0.20800544,0.054976486,0.6691763,-0.19667858,-0.05492665,0.08806925,0.60807526,1.0143505,-0.23380308,-0.16310625,0.3404798,-0.26821595,-0.5406672,0.07647655,-0.38777244,0.03124804,0.057947516,-0.006091555,-0.69344217,0.3894822,0.22663717,0.11026519,-0.03600351,-0.73745453,-0.11842706,0.36730835,-0.23474477,-0.2399771,-0.25058794,0.26235926,0.6231047,-0.1826715,-0.117852844,-0.03475635,0.30069238,-0.25591213,-0.6667146,0.099913664,-0.61574596,0.3093159,0.1557552,-0.30936927,-0.27289167,0.06756417,-0.3202099,0.04029002,0.22841467,-0.26428512,0.090521365,-0.33497038,0.05803812,0.85752463,-0.04047116,0.18454114,-0.48134628,-0.46110356,-0.73710746,-0.15345153,0.41448978,0.23780641,0.019752575,-0.70875424,-0.16357075,0.04604915,-0.20213757,-0.013545283,-0.27290127,0.4806849,0.13713373,0.38137287,-0.06594478,-0.8588267,-0.035033867,0.06302726,-0.42265072,-0.45236677,0.44750577,-0.0045578717,0.88539,0.12882249,0.032921154,0.2575391,-0.39406613,0.12920569,-0.26873052,-0.10344521,-0.7401232,0.06261982,671 -260,0.19442262,-0.04108442,-0.46688086,-0.23837854,-0.37609437,0.16089624,-0.40442947,0.17799619,0.31556076,-0.3273568,-0.0031775713,0.02117629,-0.13898396,0.41605887,-0.15197569,-0.72523504,0.01266247,0.063675635,-0.7174006,0.48305163,-0.6087035,0.25644264,0.06431642,0.3814479,-0.017456468,0.3111042,0.15002395,-0.039230395,-0.035772227,-0.14404014,0.03718304,0.286758,-0.6715116,0.39396682,-0.067792386,-0.17471406,-0.14250818,-0.41229534,-0.141736,-0.7204637,0.13045149,-0.49822107,0.4389864,-0.23357473,-0.388328,-0.061971966,0.07350621,0.26949698,-0.11672942,0.049958125,0.26369023,-0.20180123,-0.14906403,-0.10979537,-0.1945533,-0.5052434,-0.42205185,0.011472656,-0.57151115,-0.24244808,-0.15228271,0.26963457,-0.29383805,-0.009032655,-0.17499058,0.50990546,-0.31037953,0.035658,0.19595848,-0.21424897,0.06961419,-0.732293,-0.16809177,-0.0068101725,0.42918387,-0.035749946,-0.15254502,0.18927594,0.32184246,0.55464846,0.1511905,-0.26810265,-0.2549478,-0.15480609,0.24330981,0.38437885,0.040464036,-0.1743372,-0.2795873,-0.17685445,0.15917717,0.08596417,0.041361444,-0.41515055,0.022349544,-0.019746363,-0.21007039,0.34117106,0.39446145,-0.3292002,-0.10961743,0.39962843,0.44503802,0.2816692,-0.27424133,0.26372054,-0.08895067,-0.43130475,-0.28992364,0.13836965,0.057386145,0.33942622,-0.17478006,0.35789356,0.63233936,0.022993365,0.06911289,-0.09788821,-0.09531277,0.013741557,-0.30221787,-0.08928373,0.09599959,-0.40582693,0.00707377,-0.21957538,0.66149414,0.0061332346,-0.84119886,0.32859632,-0.53170496,0.0973049,-0.09427958,0.6137621,0.9921881,0.35570204,0.06464706,0.73567706,-0.39288533,0.09500327,-0.099144086,-0.31010216,0.08085516,-0.1206235,0.20779486,-0.549707,0.014584827,0.047683287,0.06694857,-0.045823462,0.23250893,-0.44829655,-0.11120386,0.10911974,0.6605381,-0.2821742,-0.051517718,0.84141815,1.0094937,0.9915642,0.18558213,1.3864677,0.3125214,-0.0471244,-0.032625604,-0.28822625,-0.49521083,0.249082,0.3408526,0.5955475,0.3270481,0.031800892,0.071644105,0.52150625,-0.21417984,-0.07169638,-0.11850597,0.30415666,0.04251059,-0.22608414,-0.33380127,-0.21283303,0.3032909,0.1119344,-0.041405465,0.16047126,-0.1391231,0.5018103,0.042931836,1.0262861,-0.031686652,0.036279995,0.010637876,0.21274894,0.19264367,-0.3499821,0.05231651,0.1816616,0.28931668,-0.1319879,-0.5668871,0.06539105,-0.170925,-0.39892083,-0.32415077,-0.32515088,-0.11681285,-0.08643951,-0.38664392,-0.10958092,-0.053466566,-0.37980887,0.3900744,-2.611053,-0.15725301,-0.2888025,0.35079804,-0.14570373,-0.25680637,-0.27314433,-0.40926898,0.43296465,0.43106073,0.39607456,-0.48352817,0.6320403,0.36687547,-0.40439615,-0.14221129,-0.49774224,0.109319046,-0.07198923,0.3584219,-0.016313655,-0.26133853,-0.2820649,0.18876152,0.64765006,-0.01861255,0.0012461026,0.31945255,0.41078243,-0.16414663,0.5004825,0.06023687,0.48393407,-0.16386844,-0.21334635,0.35991484,-0.49477306,0.28871024,-0.041593466,0.2146654,0.49505073,-0.46205485,-0.7742795,-0.71328014,-0.49680343,1.3742346,-0.20762579,-0.48558363,0.2470382,-0.05582513,-0.39942616,0.17792214,0.49156567,-0.13093014,-0.03171677,-0.74994403,-0.0028931135,-0.090720676,0.20652269,-0.1313661,0.070430376,-0.38629517,0.63497216,-0.14993377,0.5220463,0.35194096,0.24040382,-0.12911484,-0.3136192,-0.016670467,0.86058146,0.4678463,0.036806922,-0.15640475,-0.2545166,-0.23456077,-0.17038608,0.13085623,0.6584943,0.47387266,0.037975363,0.14162509,0.31466478,-0.31283653,0.08217872,-0.15506588,-0.23308976,-0.0971152,0.29649225,0.56111085,0.54623234,-0.029046146,0.40992215,-0.08797281,0.14784479,-0.18995453,-0.58226615,0.4394491,0.59094363,-0.21091717,-0.23117529,0.51061386,0.41341978,-0.30087027,0.38823164,-0.37558654,-0.34220937,0.43443707,-0.027927602,-0.4388604,0.04160107,-0.41917315,0.0469815,-0.88773763,0.253216,-0.30069986,-0.7328301,-0.5687991,-0.2492471,-3.16758,0.23605631,-0.09401487,-0.09046699,-0.22362843,-0.1542478,0.46120924,-0.47440994,-0.59947956,-0.012358767,0.017636554,0.6029295,-0.09654482,0.030882759,-0.3189765,-0.2724565,-0.1342335,0.19919129,0.083863385,0.28681836,0.06221634,-0.2573621,0.08786621,-0.26704133,-0.4382814,-0.07286242,-0.568847,-0.51335025,-0.26642838,-0.3935269,-0.13448647,0.68801945,-0.56553245,-0.035751645,-0.35510254,-0.028466217,-0.13998713,0.39644006,0.20097525,0.16182755,0.31228462,-0.0020753741,-0.28813094,-0.3105579,0.03096244,0.06434766,0.22906014,0.42025426,-0.06913407,0.25276995,0.56724,0.52137107,-0.0013805032,0.7990628,0.21234964,-0.05416997,0.4366802,-0.23330587,-0.22675459,-0.576998,-0.351773,-0.08494072,-0.45285702,-0.48599836,-0.08792755,-0.29353043,-0.73234266,0.31685665,0.16162226,-0.009617758,-0.13298628,0.25195992,0.36719003,0.06283293,0.011187434,-0.026111007,-0.2052522,-0.4563385,-0.48655817,-0.65707296,-0.6192235,0.029140584,1.2001472,-0.078450225,0.0036605755,0.08934315,-0.24557829,0.053967126,0.17210627,0.14509048,0.0292278,0.3058822,-0.0713124,-0.7427406,0.22769256,-0.25715265,-0.09017709,-0.6061766,0.009011551,0.827273,-0.50288117,0.5539125,0.3866023,0.33794945,0.049562264,-0.5914386,-0.14438556,0.15601633,-0.33643574,0.6389395,0.296944,-0.6958189,0.5617388,0.15262583,0.017302616,-0.7346879,0.49272823,-0.015981544,0.041712444,0.13883041,0.38978052,0.054367255,-0.06507353,-0.14030828,0.25958598,-0.37714908,0.28767577,0.27604085,0.023189982,0.4644044,-0.06340795,-0.2813821,-0.47371617,-0.26492897,-0.5418877,-0.18434265,-0.11588202,-0.08223956,0.018552292,0.12513493,0.0047667227,0.43752283,-0.15186734,0.19144711,-0.14249577,-0.22412007,0.28419378,0.5694676,0.33713046,-0.4031983,0.5580762,0.17195159,0.11732607,-0.32314828,0.1356692,0.4818168,0.29418704,0.46560037,-0.19105896,-0.08875907,0.09466247,0.81731975,0.19135128,0.46114406,0.02555612,-0.37134907,0.2973963,0.08039499,0.23946899,-0.19731806,-0.18336102,-0.021631204,-0.10820801,0.23771225,0.3796275,0.056005057,0.32358217,-0.050604302,-0.11955008,0.25708923,0.08658333,-0.07621109,-1.1144536,0.4426839,0.3221997,0.68302655,0.4378473,-0.052247558,0.13798815,0.4930486,-0.26268402,-0.027758574,0.19742277,0.091364734,-0.41057938,0.5529197,-0.6429599,0.36658195,-0.15230264,-0.0007906437,0.110255785,0.199303,0.41594297,0.808839,-0.18590838,0.1976046,-0.06279168,-0.26651365,0.030358862,-0.17890498,0.15091263,-0.4383014,-0.3107565,0.6124117,0.42863286,0.39733407,-0.42860517,-0.08423347,0.14245544,-0.17345542,0.11560392,-0.26568672,-0.15591334,-0.113550946,-0.5692046,-0.29407248,0.5320395,0.007960105,0.11756849,0.14364907,-0.4164602,0.2709719,0.13345914,-0.015503184,0.074542016,-0.46190757,-0.08042376,-0.24321601,-0.46756908,0.28069907,-0.45826727,0.2393898,0.16415204,0.016316913,-0.3166307,0.19994284,0.076759726,0.7273503,0.05713958,0.004163885,-0.036620412,0.0120734535,0.3186752,-0.32537684,-0.14316653,-0.44345924,0.13026337,-0.6334931,0.32913667,-0.27349862,-0.26181394,0.2614888,-0.0054546595,0.042525537,0.33259323,-0.16742381,-0.08104412,0.15613694,-0.03073702,-0.23167762,-0.12821609,-0.33179057,0.28700906,-0.064358376,0.12201746,0.03604184,-0.05514543,-0.14368679,0.32199094,0.11679853,0.24783559,0.35357887,-0.01773431,-0.4142803,0.028045952,0.039403837,0.34355494,0.2128494,-0.16769084,-0.20052037,-0.3973894,-0.3576558,0.44095916,-0.15737012,0.054346662,0.08949935,-0.47249776,0.6248224,0.17737307,1.1252111,-0.071658984,-0.37822726,0.15896502,0.33878967,0.05203151,0.077747256,-0.25416118,0.76878524,0.5884337,-0.17548493,-0.0008442163,-0.53130734,-0.25183693,0.16059461,-0.29272625,-0.15131272,-0.25935227,-0.7475013,-0.19123432,0.04937656,0.11367906,-0.1185296,-0.12922363,-0.067746304,0.033433247,0.10106587,0.35019347,-0.5405258,0.055154514,0.3540899,0.22617769,-0.05400304,0.12745555,-0.398445,0.40821832,-0.8804813,0.20272343,-0.4070526,0.056278214,-0.09114747,-0.1998852,0.14103311,-0.055174172,0.32085836,-0.13935891,-0.3545383,-0.36158523,0.61758435,0.2619985,0.17102163,0.72611755,-0.21974698,0.0042099315,0.13958699,0.5896371,1.2449639,-0.13772836,0.11562524,0.21212082,-0.3027694,-0.392778,-0.049891602,-0.4863469,0.014358664,-0.052164417,-0.32446238,-0.28859094,0.2649052,0.16088027,0.020578442,0.02365206,-0.44977185,-0.0907604,0.25284594,-0.26461053,-0.24837925,-0.27302852,0.14383973,0.58716506,-0.2743594,-0.30367073,-0.11893005,0.42620337,-0.3433244,-0.52124906,0.12009639,-0.19358549,0.4131743,-0.025068734,-0.39570016,-0.034438275,0.22539443,-0.47786272,0.07481345,0.27866998,-0.3331632,0.035683047,-0.32799193,-0.10119326,0.90014845,0.03859301,0.34603196,-0.5457269,-0.56206286,-0.7484022,-0.19828402,0.112092905,0.32940662,-0.13130035,-0.48189482,-0.11308085,-0.16187133,-0.047717396,0.17278813,-0.4959952,0.31433246,0.15279737,0.54991895,-0.17829841,-0.92563915,0.032157354,0.18977748,-0.06777822,-0.43384734,0.43816593,-0.07482397,0.70249003,0.13848025,0.04325699,-0.09858798,-0.5652513,0.35922113,-0.20509571,-0.1591414,-0.60563856,0.07815067,677 -261,0.36379716,-0.08677257,-0.44468206,-0.1932685,-0.21619706,0.1792096,-0.163879,0.29938576,0.0234431,-0.5987073,0.042967662,-0.17656788,-0.04687306,0.1895514,-0.16827662,-0.48167303,-0.01584303,0.08347375,-0.48323828,0.34448138,-0.5019508,0.311119,-0.041318145,0.2012542,0.019096248,0.28482527,0.13284601,-0.29576385,-0.10273626,-0.13619089,-0.064959675,0.11975453,-0.62391776,0.25033197,-0.14734016,-0.25530356,0.037663594,-0.5443243,-0.437045,-0.5593245,0.25076273,-0.8581537,0.48740134,0.06760715,-0.21008965,0.17058346,0.07803971,0.3151024,-0.15023075,0.16282736,0.37865013,-0.17097521,-0.0127453925,-0.057267014,-0.36965007,-0.42075044,-0.63678104,0.03857906,-0.46067274,-0.085587114,-0.23862472,0.13852234,-0.3216978,-0.0651094,-0.21312346,0.27389222,-0.34808117,-0.108066015,0.14608914,-0.07749307,0.44130078,-0.50553954,-0.16775852,-0.029825322,0.30922645,-0.33167478,-0.24397795,0.2732057,0.32835457,0.51092106,-0.07373224,-0.21824677,-0.22891754,0.04272921,0.13002197,0.59609497,-0.28504086,-0.18671922,-0.12146731,-0.09783768,0.19005616,0.26083645,-0.062617704,-0.40798855,-0.09747289,0.080458924,-0.22196104,0.25293323,0.5188579,-0.34843382,-0.20837663,0.49810168,0.41466597,0.023723206,-0.037650634,0.13526802,0.021698171,-0.50787425,-0.2621744,0.34503826,-0.20439835,0.2827078,-0.12355326,0.24878803,0.7059648,-0.18518223,0.12100177,0.044572964,-0.07415969,-0.08102625,-0.114004575,-0.2214579,0.15752879,-0.48145884,0.19900028,-0.17497867,0.784686,0.11461801,-0.83273786,0.31426674,-0.5767483,0.06972302,-0.05304202,0.5247141,0.6698429,0.49726212,0.066009074,0.6697733,-0.46515042,0.068737596,-0.10827256,-0.35482496,0.16356643,-0.056351732,0.06687792,-0.57020074,-0.20051469,0.16503842,-0.10473232,-0.18431233,0.24076572,-0.3704602,-0.019614339,0.22856191,0.664091,-0.29621062,0.021368371,0.5539357,0.98881537,0.83703834,0.22295976,1.2450886,0.20784816,-0.17686749,0.332219,-0.34465224,-0.7634431,0.30527732,0.4336374,-0.21947663,0.25312442,0.16181806,0.06323322,0.34106782,-0.36514485,0.141363,-0.2606544,0.18466221,-0.01312278,-0.19899304,-0.23058268,-0.2955233,-0.11700983,-0.10815497,0.07577446,0.12912722,-0.15937993,0.23353876,0.30878386,1.5756571,-0.10981611,0.16358271,0.09925144,0.44417796,0.07176827,-0.12542923,-0.063504286,0.19055225,0.35001788,0.00620472,-0.5144522,0.1852013,-0.0033797543,-0.5224363,-0.197082,-0.25017524,-0.08197026,-0.19127628,-0.51779544,-0.10886397,-0.03276558,-0.49350408,0.5391434,-2.8049664,-0.006987846,-0.13717522,0.32738367,-0.24710955,-0.44209772,-0.14355555,-0.5493632,0.5583861,0.3294684,0.28376108,-0.6501872,0.44846794,0.5203244,-0.41875654,-0.094095364,-0.7475975,-0.06537708,-0.093807705,0.19780311,0.078885116,-0.07917835,0.08269648,0.10214357,0.29308042,-0.1638382,0.08596646,0.119688444,0.3505888,0.15317969,0.5663673,0.026086338,0.49663603,-0.20337066,-0.17386736,0.3052268,-0.5086877,0.1035148,0.002579838,0.0984176,0.3295897,-0.42834365,-0.6629895,-0.69727224,-0.5948406,1.0534476,-0.17171167,-0.2140357,0.28551057,-0.1464355,-0.39163372,-0.14388663,0.44578227,-0.18448156,-0.028929355,-0.86258537,-0.10764567,-0.21724139,0.2012021,-0.094060056,0.17588663,-0.46288702,0.602545,-0.15002246,0.5562857,0.39853412,0.092583574,-0.25851974,-0.50542533,0.0053931098,0.91477406,0.2801097,0.1871613,-0.1624692,-0.17478633,-0.14412013,-0.16342786,0.1894452,0.44994193,0.70237225,0.009285119,0.06617616,0.32778522,-0.19774373,-0.01711626,-0.119116224,-0.27140188,-0.087532945,-0.02931402,0.6111702,0.45757088,-0.11750074,0.35662296,-0.20812711,0.2938913,-0.3514985,-0.28421706,0.45930764,0.97377515,-0.05224434,-0.11029984,0.56599975,0.52794313,-0.18653342,0.38490677,-0.62671,-0.25188953,0.36512548,-0.17011023,-0.39707133,0.18250021,-0.33413234,0.13998877,-0.9212078,0.40682715,-0.25066468,-0.4550907,-0.62246436,-0.19358705,-3.138829,0.09236178,-0.18358769,-0.27326533,0.047521677,-0.06301801,0.42901286,-0.49937612,-0.40262336,0.17431848,-0.026920859,0.6289332,0.01978137,0.08844026,-0.3793191,-0.119875096,-0.39763218,0.19627914,0.14677675,0.31642544,-0.0060502966,-0.34836575,0.053022638,-0.18739359,-0.33189481,0.0354444,-0.54756373,-0.40522465,-0.2597045,-0.45233494,-0.3979605,0.655511,-0.3710726,-0.023569465,-0.21460634,-0.10576909,-0.24687529,0.5416578,0.16889296,0.13939057,0.052391138,-0.03761929,-0.13705096,-0.3379146,0.3728971,0.12914316,0.30772784,0.48565325,-0.19036205,0.07935726,0.477033,0.57612735,-0.10162655,0.7874576,0.42950493,-0.090642974,0.26241723,-0.38470206,-0.14503488,-0.45340344,-0.266606,-0.1279359,-0.3444924,-0.486453,-0.06768341,-0.39075762,-0.7285911,0.4207179,0.014543188,0.009302386,0.03222414,0.043188144,0.26117384,-0.18869866,-0.03657901,-0.07105247,-0.087755404,-0.33698738,-0.3830392,-0.621505,-0.47589388,0.10417637,1.080403,0.07858775,-0.095689654,0.14330932,-0.20696217,-0.05558931,0.036573693,0.026627218,0.20467375,0.36338857,-0.038385995,-0.6593843,0.45769775,-0.062166754,-0.1689298,-0.5657376,0.08821117,0.7441336,-0.6107677,0.52110916,0.36791623,0.17294382,-0.13791402,-0.51824075,-0.25861254,-0.11808947,-0.2564963,0.3846539,0.07499354,-0.8191348,0.5519619,0.38553748,-0.2126246,-0.682738,0.5436394,-0.012861667,-0.11416065,0.1563387,0.29675615,-0.07825098,-0.09250566,0.0032073536,0.4324826,-0.39391148,0.34355015,0.36121878,0.04021803,0.37383214,-0.15181245,-0.035290543,-0.56512356,-0.00101704,-0.44122654,-0.28190118,0.19717066,-0.005267165,0.1559268,0.3515729,0.009176167,0.4440015,-0.31141138,0.100665174,0.025580715,-0.15135378,0.09642057,0.3185682,0.418769,-0.44922912,0.5413328,-0.019221537,0.030568767,-0.15937297,0.15067016,0.5196825,0.21131532,0.2757893,-0.1421772,-0.2731334,0.25323325,0.98404604,0.24782439,0.42983285,0.100574374,-0.098366,0.2599072,0.14367095,0.1445642,0.08851083,-0.5251012,0.051613934,0.030405056,0.20250513,0.28465432,-0.067016974,0.32121527,-0.2753066,-0.09355038,0.06791535,0.22779463,-0.09204414,-1.2502121,0.40374583,0.18460792,0.6915974,0.41763702,-0.009154518,0.15792504,0.57430196,-0.3618773,0.13245513,0.18119606,-0.10317755,-0.46413192,0.4168631,-0.65103745,0.34331423,-0.010377248,0.010611536,-0.11250503,-0.0066385665,0.2898248,0.8311755,-0.20965903,0.16325384,0.005817009,-0.3037696,0.24563058,-0.2617757,0.21116786,-0.39431342,-0.26620725,0.66890115,0.39793822,0.41072622,-0.095991634,0.0019662397,0.049308382,-0.07140774,0.08538568,0.06362916,0.0097376425,0.09438797,-0.5613684,-0.30775818,0.5358997,-0.04501478,0.123977356,0.1357504,-0.41402408,0.25401145,-0.13574213,0.010477757,-0.1519392,-0.7038922,0.048449364,-0.29434714,-0.33500946,0.24984637,-0.22564699,0.33416378,0.24195382,0.031568244,-0.19370916,0.3166484,0.38689837,0.72692627,-0.09100459,-0.22385262,-0.33166486,-0.035833556,0.19562912,-0.282235,-0.2307757,-0.27944195,0.04166285,-0.54895794,0.21997903,-0.0116781015,-0.3292586,0.26041698,-0.23804665,0.021857878,0.56834525,-0.12353991,-0.06610341,0.102719694,-0.009943156,-0.26237568,-0.047863647,-0.14171664,0.22749257,0.20308262,0.0386761,-0.00031790734,-0.13485213,-0.2239819,0.36278465,0.20859082,0.35440648,0.41592875,0.13329509,-0.38220575,-0.0924547,0.0445146,0.4147892,-0.011603173,-0.05232781,-0.12418681,-0.31172302,-0.20851429,0.21499196,-0.2062289,0.24283329,-0.01924533,-0.42785034,0.65465486,-0.11486411,0.99697596,0.030032456,-0.24120347,0.014690403,0.39175436,0.05183385,0.04524374,-0.43568465,0.8269752,0.55197835,0.0034285465,-0.12720145,-0.25553468,-0.124385625,0.15383963,-0.14397192,-0.18941052,0.05330663,-0.66446215,-0.23688975,0.23086458,0.08509455,0.11897564,-0.008672174,-0.06695504,0.18876056,0.13932103,0.32887426,-0.4926279,-0.04034505,0.28351694,0.20647584,0.079658754,0.19678405,-0.4126458,0.35709858,-0.47172755,0.05188322,-0.269123,0.08649233,-0.15432271,-0.13356952,0.14606395,-0.12385771,0.47188765,-0.025389822,-0.2854331,-0.043872286,0.49580896,0.06059846,0.3098311,0.680477,-0.13988549,0.17859802,-0.049369644,0.46769932,0.9937176,-0.18045285,0.07547428,0.47613737,-0.28474954,-0.5273321,0.24922398,-0.33410484,0.14149366,-0.044698503,-0.30585682,-0.13979241,0.25042707,0.21950005,0.18005037,0.014976239,-0.57823277,-0.2066247,0.4120606,-0.33421603,-0.30195916,-0.2502539,0.21680054,0.7906888,-0.35206407,-0.14646062,0.12645319,0.28668505,-0.2656458,-0.4642484,0.0752235,-0.339274,0.25213513,0.07914478,-0.31271705,0.09297844,0.04465274,-0.18305571,0.1580029,0.20032553,-0.44095916,-0.0064718085,-0.29869595,-0.03321769,0.7866212,-0.0303171,0.052625697,-0.6041908,-0.5203206,-0.89062524,-0.3459959,0.3447434,0.1550527,-0.09106341,-0.39968178,-0.09019574,0.04379654,-0.08762045,-0.056436736,-0.4346933,0.46649864,0.14876175,0.37671012,-0.103754476,-0.67183226,0.0576449,0.17831701,-0.025835713,-0.5816563,0.5791055,-0.08371501,0.8598302,0.105491675,0.045026883,0.067421846,-0.43704683,0.14362165,-0.20993277,-0.18215594,-0.86583763,0.09000324,687 -262,0.45903504,-0.07321759,-0.5413797,-0.29147804,-0.4354489,0.22130416,-0.2882725,0.30725977,0.20185456,-0.30065206,-0.10138456,-0.20324661,0.011190907,0.39231825,-0.26653826,-0.65538406,0.01938535,0.14405483,-0.5935719,0.43965924,-0.4862114,0.48661485,0.14692,0.3541403,0.09947974,0.17945746,0.2975553,-0.15450808,-0.025438095,-0.14583369,-0.20563167,0.19821472,-0.6395379,0.13149421,-0.17899609,-0.3708054,0.07636836,-0.31097433,-0.18983306,-0.78633875,0.3173785,-0.7595593,0.46509236,-0.09595048,-0.5801948,0.15012875,0.053961825,0.18899533,-0.42927104,0.06907357,0.14904372,-0.25700042,-0.07559462,-0.015270321,-0.2865815,-0.4830492,-0.57034796,-0.038850505,-0.6268869,-0.029660035,-0.34965965,0.1755949,-0.42511985,0.030136157,-0.11019125,0.22744168,-0.49872485,0.025085043,0.24518204,-0.10320676,0.1821122,-0.51777565,-0.10253262,-0.21331562,0.15227175,-0.008990095,-0.16624232,0.26939926,0.5526448,0.5733965,0.092395775,-0.21980919,-0.25586015,-0.09494076,-0.0004492442,0.39985934,-0.031314813,-0.24326243,-0.3069185,-0.14964248,0.4505158,0.33237487,0.112722255,-0.32799625,-0.11876193,-0.012381045,-0.22846527,0.24799408,0.44138354,-0.29972267,-0.11487899,0.32773525,0.43997887,0.14765514,-0.22484137,0.22233672,-0.10145433,-0.49910164,-0.30768794,0.18902546,-0.2719448,0.7261208,-0.24204716,0.10873718,0.85982144,-0.23593864,0.14484027,-0.025967928,-0.051777266,-0.18953197,-0.1574052,-0.19760732,0.19791451,-0.6692129,-0.007917182,-0.30191502,0.75018984,0.1238004,-0.7614021,0.24018876,-0.5644797,0.09010113,-0.120776534,0.63704836,0.66262275,0.4232909,0.34314442,0.79169154,-0.62258667,0.15141258,0.15360199,-0.4716903,0.17198895,-0.13726848,-0.12180453,-0.5284995,0.02133684,0.047898,0.02614353,-0.005154763,0.37286028,-0.37221634,-0.09149014,0.038713954,0.503461,-0.44869938,-0.056588944,0.8879143,0.9649327,1.0584427,0.1021489,1.3911033,0.41443205,-0.1083289,-0.058397315,-0.08710874,-0.6169671,0.13118842,0.38645014,0.027819792,0.39066166,0.08356602,0.13776293,0.33808503,-0.310307,0.017668447,-0.09205595,0.14749984,-0.111117005,-0.1299382,-0.5001107,-0.32392406,0.17179175,0.13217928,-0.13867426,0.33674908,-0.09064792,0.51504785,0.3058017,1.3706973,0.11018344,-0.04708289,0.023300027,0.39085108,0.2846817,-0.106484495,0.02039125,0.35926086,0.43129224,0.0024987618,-0.5640886,-0.03585357,-0.26261586,-0.49412715,-0.18091637,-0.40071237,-0.055259883,-0.17855327,-0.54699975,-0.055108167,0.028405737,-0.28789657,0.539689,-2.2409987,-0.082034096,-0.19704247,0.25652403,-0.15574749,-0.35168654,-0.07529009,-0.469973,0.33967066,0.4825528,0.33318704,-0.7941459,0.3969997,0.41604185,-0.36187753,0.024730781,-0.7083142,-0.28955117,-0.111850806,0.2536301,0.014910042,-0.19231687,-0.14816995,0.30200374,0.7307096,0.04974601,0.19928388,0.19856922,0.5176837,-0.19768976,0.53259635,0.3062481,0.4275487,-0.054887403,-0.09018393,0.49296045,-0.36814365,0.4077135,0.091680735,0.15524639,0.5467609,-0.5211451,-0.9017869,-0.71333325,-0.3771001,1.3083638,-0.46222645,-0.4260578,0.28937632,-0.028537147,-0.19462165,0.032940842,0.3336156,-0.06626412,0.004939771,-0.7447528,-0.03507758,-0.02748785,0.15294646,-0.05029377,0.14927863,-0.16065194,0.8238289,-0.15726264,0.42863712,0.44912502,0.2333393,-0.121082105,-0.55958694,0.053530708,0.86909384,0.568655,0.104122505,-0.32679966,-0.29028141,-0.3959816,-0.18739273,0.22586374,0.3991831,0.94912827,-0.11054172,0.2574463,0.36321577,-0.11921706,0.1042218,-0.19715622,-0.30083725,-0.020831335,0.033523116,0.44172376,0.6293421,-0.16599153,0.23858775,-0.11000356,0.21016976,-0.15526453,-0.62104344,0.58004683,0.94247454,-0.1535479,-0.21390034,0.47424403,0.43664438,-0.4104642,0.52297616,-0.6267761,-0.28367186,0.68614906,0.015388664,-0.41002935,0.15041856,-0.33096218,0.0936759,-1.0226521,0.29923692,-0.11268649,-0.36628452,-0.5171822,-0.17947651,-3.5538132,0.33167872,-0.23742689,-0.13680975,-0.24379158,-0.24817139,0.39734998,-0.6617831,-0.7190739,-0.018228084,0.11952789,0.470173,0.049873408,0.13260947,-0.3697325,-0.3351136,-0.30876014,0.061670642,0.1609492,0.16895586,-0.09454884,-0.49792907,-0.0009655078,-0.31230816,-0.53874505,-0.06804308,-0.42850742,-0.6332761,-0.27517623,-0.40009576,-0.22643998,0.66033,-0.2702982,-0.051301833,-0.17955288,-0.09383463,-0.30878857,0.24518636,0.2426313,0.0224847,-0.06361755,-0.08651878,-0.11721958,-0.36542508,0.21554384,0.081472844,0.18654849,0.3246488,-0.12905641,0.22863945,0.5750698,0.50791776,-0.22533447,0.72458947,0.25241342,-0.07818968,0.37719938,-0.2730582,-0.3496994,-0.8153913,-0.32562578,-0.2603716,-0.5038311,-0.34092304,-0.089682505,-0.30741614,-0.87972337,0.48672846,0.020974496,0.16726504,-0.17301752,0.24443568,0.3873225,-0.07134744,-0.04029846,-0.10576951,-0.31149325,-0.54311866,-0.39843643,-0.8791846,-0.5430262,0.21048333,1.1565824,-0.13139184,-0.1768033,0.045338314,-0.2553809,0.15928847,0.049934186,0.06580409,0.15702511,0.42241958,-0.17208408,-0.66481876,0.47656077,0.049764793,-0.242464,-0.6157444,-0.04720751,0.71102244,-0.62596875,0.46793193,0.48164693,0.21349491,0.2738898,-0.81484044,-0.2215232,0.04511008,-0.22526713,0.65623766,0.23532668,-0.64305234,0.493914,0.2416568,-0.11056862,-0.5832389,0.69185174,-0.056177225,-0.20635587,0.032402374,0.4106742,0.04961502,-0.0690199,-0.21286829,0.32120934,-0.54937536,0.296948,0.47795582,0.056261174,0.3148555,-0.025142085,-0.3048269,-0.75474775,-0.072686315,-0.49077323,-0.2680847,0.01384837,-0.12827216,-0.017070325,0.049850725,0.16575518,0.39564058,-0.42979103,0.2824054,-0.052151687,-0.18139216,0.49561068,0.48639104,0.37829372,-0.4840733,0.63943,0.16534287,-0.014273754,-0.1259294,0.16130391,0.5173777,0.26998535,0.30480283,-0.018128244,-0.12750103,0.25605196,0.57481945,0.22247478,0.38076714,0.12928417,-0.21470329,0.38883048,0.34320393,0.26169693,-0.07842166,-0.18807663,-0.017185736,-0.028954856,0.09347865,0.5517062,-0.0595502,0.33238086,-0.02285273,-0.07202547,0.25500515,-0.0057169916,-0.175936,-1.1278836,0.24796599,0.3327912,0.6604801,0.6447883,-0.07025306,0.122817606,0.39868063,-0.48352325,0.060333412,0.40699875,0.22478488,-0.5170001,0.67137593,-0.5727038,0.3997775,-0.19272873,-0.03150161,0.053777967,0.21586771,0.39982283,0.9574255,-0.027419781,0.10001683,0.025591435,-0.2744055,0.16469233,-0.41897476,-0.15966901,-0.4604877,-0.27654928,0.61151236,0.28201216,0.3019132,-0.35173032,-0.08326099,0.03776678,-0.2430647,0.121468656,-0.016905423,0.10457529,-0.16598746,-0.54030436,-0.4071285,0.5032996,0.002828765,0.21360709,0.053932294,-0.44379997,0.26904064,-0.15926792,0.0064333896,0.0132215945,-0.79953766,-0.27135488,-0.4141025,-0.43890578,0.4106566,-0.32504115,0.24730924,0.28188497,0.009372877,-0.3661984,-0.0043658414,0.13519904,0.6801895,-0.0017460823,-0.17119433,-0.32074744,0.13474652,0.37981033,-0.35883966,-0.13703914,-0.23176867,0.02255704,-0.46317366,0.37731287,-0.16534548,-0.15678683,0.042943876,-0.24934019,-0.06917875,0.41220525,-0.28390515,-0.23394288,0.04115226,0.10339138,-0.23067309,-0.15798695,-0.37178838,0.3195823,0.020907573,0.00657293,0.035265755,0.03582615,0.103834175,0.3903311,0.020252688,0.22674058,0.32428944,-0.25023922,-0.5454512,0.036599226,0.007694368,0.31210974,0.11357821,-0.15473737,-0.41645876,-0.37842384,-0.1432381,0.265895,-0.3065057,0.13884388,0.12322705,-0.3277003,1.0235279,0.17276707,1.182949,0.0011324048,-0.3852417,-0.022406483,0.6471523,0.1254868,0.01219778,-0.14419289,0.90711683,0.5730558,-0.25530943,-0.2915616,-0.38040334,-0.15767814,0.27838644,-0.3237153,-0.24980998,-0.1209177,-0.7018777,-0.20690428,0.1970353,0.29979178,0.07970301,-0.1021009,-0.01120676,0.1294671,0.08821329,0.5978629,-0.5856126,-0.16347331,0.1850073,0.068627246,-0.041296482,0.23479111,-0.36490837,0.45484325,-0.72770566,0.14242609,-0.4055386,0.1411849,-0.030208332,-0.37802884,0.26244205,-0.042402513,0.28956828,-0.26353326,-0.26540443,-0.25540286,0.6927195,0.29845408,0.37262148,0.67126304,-0.41287762,0.17114843,0.112087995,0.44253096,1.21502,0.00441657,-0.100571364,0.27993375,-0.4534968,-0.5284496,0.20974766,-0.45286602,0.22269095,-0.08408711,-0.44266698,-0.44932845,0.36412156,0.09671789,0.03514901,0.20514728,-0.5672176,-0.124966875,0.45214733,-0.32420164,-0.36032167,-0.3674873,0.3317633,0.5785081,-0.45190346,-0.34515715,-0.02627761,0.16838983,-0.23720306,-0.63123375,0.02594902,-0.33160317,0.5129252,0.12698215,-0.36873716,0.20123596,0.2188141,-0.3798568,0.13160114,0.43438688,-0.20658146,0.056714978,-0.30640805,0.017502926,1.1105212,0.016823407,-0.086732835,-0.62917495,-0.5040964,-0.9061526,-0.22762822,0.48207816,0.24226722,0.11074786,-0.71087265,0.027521402,-0.09024658,0.10176777,0.09574803,-0.35921022,0.4783165,0.2275467,0.42274627,0.08717049,-0.8141019,-0.00022959709,-0.01996191,-0.19651197,-0.5096669,0.6271301,-0.2024044,0.6592794,0.21898556,0.16574523,0.119566426,-0.61262447,0.4367736,-0.3319343,-0.21202205,-0.551399,0.07137896,689 -263,0.3993946,-0.03318861,-0.533976,-0.20810248,-0.044109892,0.18967621,-0.15915647,0.33633006,0.26797837,-0.34516805,0.17286414,-0.1434252,0.07688522,0.37243402,-0.052752327,-0.58965796,0.081708945,0.06402601,-0.58514583,0.41653526,-0.44129738,0.3255106,-0.07769367,0.3277493,0.10740528,0.39979565,0.062471587,-0.21670158,-0.17024548,-0.11709908,-0.036716573,0.31591874,-0.41953954,0.0497001,-0.10010301,-0.121836856,-0.025358839,-0.57262534,-0.4790742,-0.5661042,0.18042414,-0.6542842,0.5646738,0.03587774,-0.25301644,0.18314435,0.08045449,0.40460542,-0.21414098,0.018588196,0.21299015,-0.17816016,-0.16153736,-0.14164202,-0.42487925,-0.3932678,-0.6165173,-0.0846199,-0.45818582,-0.12442859,-0.16696571,0.037540156,-0.24845298,-0.118681066,-0.03641749,0.39634424,-0.38516682,0.08472295,0.25457713,-0.13777107,0.33742863,-0.35182074,-0.08957007,0.025551649,0.39070866,-0.348143,-0.30335286,0.34632212,0.4055549,0.49560156,-0.14754811,-0.13682295,-0.38508123,-0.047380414,0.18487379,0.572743,-0.1326677,-0.15542528,-0.11025537,-0.11877053,-0.07938997,0.241706,0.11624861,-0.4468092,-0.10782344,0.03182251,-0.14368787,0.31266335,0.46942958,-0.27865583,-0.27096847,0.4358198,0.5091787,0.15514913,-0.10340352,0.21699612,0.11423961,-0.538625,-0.24202694,0.18230668,-0.116507836,0.40682298,-0.115013674,0.1451809,0.6874083,-0.13041846,-0.12758611,0.0030481378,0.059250075,-0.035870228,-0.12685972,-0.22138597,0.14493865,-0.5074144,0.091253586,-0.15972696,0.6053865,0.27805075,-0.9060594,0.3758448,-0.57873064,0.05248473,-0.09539841,0.4644519,0.7618605,0.37236327,0.12860768,0.62767816,-0.5172555,0.1018269,0.06297764,-0.4011525,0.25302377,-0.19129744,0.053350445,-0.622408,-0.16441432,0.11820336,-0.21343921,0.18720134,0.26122984,-0.438338,-0.013565993,0.21639806,0.8108107,-0.30977085,-0.108802006,0.50242466,0.96564865,0.8496811,0.1007587,1.254437,0.25572616,-0.2323214,0.19931863,-0.48212644,-0.8131382,0.22484025,0.27278197,-0.49467376,0.39168024,0.07839811,0.20382245,0.39250737,-0.32081807,0.1875066,0.009037296,0.18593508,0.0105217,-0.24262816,-0.28162846,-0.32324547,-0.115673795,-0.18480207,0.16845852,0.18539098,-0.20092613,0.5171387,0.14081489,1.7400563,-0.004502646,0.08824187,-0.071276374,0.40084973,0.19448663,-0.2628525,-0.3141109,0.31064272,0.33194414,0.036736585,-0.45902115,0.121543,-0.07605421,-0.26246908,-0.16092473,-0.38066,-0.088929795,-0.09680059,-0.26277882,-0.1374869,-0.10793088,-0.39854226,0.5849276,-3.023872,-0.006978452,-0.030218316,0.33042985,-0.22117122,-0.29121217,-0.25682172,-0.46919647,0.3559032,0.24569453,0.32916167,-0.6350521,0.3124152,0.5334757,-0.43263033,-0.08110286,-0.5852574,-0.09100862,-0.07443695,0.10137863,-0.02993645,-0.025883686,0.045319963,0.3293757,0.30316618,-0.061916992,0.09416893,0.31058234,0.26746368,0.20607668,0.4323092,-0.08375134,0.55815595,-0.15312785,-0.22236364,0.2595252,-0.49124062,0.123958796,-0.07557213,0.048732467,0.45388234,-0.4003009,-0.7998811,-0.551223,-0.18290223,0.89479977,-0.2688839,-0.21483079,0.3062152,-0.33570883,-0.46404248,-0.08815421,0.41807774,-0.07095734,-0.05965056,-0.7623812,-0.106129244,0.0009154995,0.08238127,-0.064046234,0.09441519,-0.39060935,0.4379631,-0.04258154,0.5010896,0.31470367,0.122349225,-0.3323581,-0.4851081,0.027477067,0.8979608,0.21083583,0.18481013,-0.12909523,-0.20634982,-0.4234513,-0.2125544,0.1476368,0.43342957,0.6623061,-0.17856854,0.02136922,0.28024682,-0.12545052,0.11066095,-0.10283136,-0.28016427,0.011726006,0.016459115,0.42455038,0.49745157,-0.13923359,0.40589073,0.05683499,0.2732226,-0.2611255,-0.42059582,0.58670706,0.95282614,-0.06127627,-0.28040484,0.5977634,0.21338533,-0.32971337,0.39881402,-0.502509,-0.14514068,0.5270907,-0.23007044,-0.3247282,0.19190614,-0.29170498,0.19120911,-0.9078883,0.25546032,-0.10020499,-0.3755435,-0.45224217,-0.05374845,-3.3339279,-0.0013299624,-0.10068269,-0.26451647,0.05896906,0.08139958,0.26108307,-0.47768295,-0.59303534,0.19908904,0.007331117,0.7134334,-0.075847976,0.09727082,-0.22590555,-0.21288712,-0.40717506,0.260227,0.07179386,0.42738184,0.17062669,-0.42024192,-0.019673208,-0.17306627,-0.45603126,0.08802513,-0.48085544,-0.3765548,-0.1653111,-0.62197196,-0.37477607,0.74914175,-0.385505,-0.048922,-0.21530847,-0.0438473,-0.13147406,0.37846768,0.23878917,0.114293166,0.054247744,0.042997662,-0.118030414,-0.2623059,0.30930007,-0.017038472,0.30874956,0.35276496,0.045417126,0.15220632,0.47646147,0.70727473,-0.17276074,0.6895621,0.44483927,-0.055579003,0.2020699,-0.41334876,-0.065884136,-0.32517517,-0.3394933,-0.13246174,-0.3930697,-0.5506523,-0.22046204,-0.38671222,-0.6280758,0.3469204,0.03843008,0.09407358,-0.025799783,-0.05351062,0.33518293,-0.2208538,-0.002702681,-0.15294968,-0.16936915,-0.3619283,-0.18161072,-0.5459722,-0.5203162,0.41178754,0.95940053,-0.12096803,-0.009852576,0.18648693,-0.3201889,-0.07832704,0.1722472,0.03628923,0.30004132,0.36657375,-0.023477597,-0.55335784,0.37702703,-0.15873791,-0.09002021,-0.7268587,0.052327063,0.5407042,-0.5614455,0.8232787,0.1723752,0.07777373,-0.19492677,-0.4707025,-0.29160255,-0.023970384,-0.29768503,0.44257587,0.044634257,-0.7654068,0.33453095,0.39858082,-0.37138847,-0.5828015,0.5246372,-0.04768382,-0.074044734,0.028374728,0.36954013,0.0069699567,0.025831353,-0.054695543,0.33535567,-0.45722765,0.21390647,0.367114,0.081180006,0.43509606,-0.13772328,-0.09224569,-0.6773581,-0.11770348,-0.4115395,-0.26444346,0.20214391,0.013257573,0.2330562,0.15353912,0.12247309,0.30886668,-0.3104658,0.1439998,0.023624193,-0.22030991,0.24783126,0.34915766,0.5029081,-0.4142169,0.52972835,-0.039483063,-0.05339881,-0.16730331,0.039804544,0.47677955,0.23605004,0.31229508,0.12856098,-0.34633932,0.28573984,0.7778417,0.1592118,0.30099156,0.13926452,-0.16765109,0.110071614,0.06771063,0.02910668,0.10508717,-0.45881322,-0.10165655,-0.12803654,0.2806474,0.4070517,0.12249258,0.27653906,-0.15394224,-0.36485195,0.023435032,0.15839761,-0.06116547,-1.2047131,0.3052639,0.28444403,0.75752425,0.4003561,0.07318668,0.04821803,0.5743168,-0.21040897,0.18803905,0.30085087,-0.24221395,-0.5275904,0.52650946,-0.6521458,0.4897377,0.069866106,-0.0064320187,0.027818711,-0.048975814,0.3930705,0.8446218,-0.13220383,0.15443121,0.043951835,-0.25588292,0.20766178,-0.27439344,0.103530526,-0.48674712,-0.23942937,0.57823455,0.42370033,0.3874911,-0.14736871,0.013114605,0.15658386,-0.07392707,0.0910164,0.07503746,0.06998316,-0.08607888,-0.5981753,-0.32992265,0.47103107,-0.06656582,0.122084364,0.06973945,-0.16796511,0.2691482,-0.20053701,0.054556273,-0.13492146,-0.6953781,-0.08184074,-0.22322181,-0.4016234,0.5360554,-0.16706926,0.25158215,0.20746475,0.091986455,-0.31946546,0.65039134,0.19362968,0.77528894,-0.1243924,-0.14602517,-0.23796962,0.105769664,0.17630866,-0.19820169,-0.03665879,-0.29927412,0.010590827,-0.48464426,0.31227186,-0.050893273,-0.42309695,-0.06703425,-0.054554693,0.18067531,0.56753695,-0.21905161,-0.11156731,-0.060233597,-0.07730916,-0.3134833,-0.1517778,-0.15328452,0.23470852,0.19297092,-0.13115993,-0.12474189,-0.09785014,-0.15838553,0.20047957,0.043325625,0.39062682,0.4407296,0.10948763,-0.29221758,-0.109918036,0.1726498,0.42024264,0.02858281,-0.10092076,-0.28997624,-0.2666251,-0.3300813,0.30254993,-0.20748827,0.35719168,0.07729098,-0.37651044,0.6293052,-0.12356785,1.0877804,0.072882086,-0.22696489,0.10509089,0.34836337,0.09673349,-0.051178813,-0.37852955,0.82756305,0.5440096,-0.06763455,-0.115982704,-0.33760256,-0.14421944,0.20210825,-0.19302951,-0.19422702,0.03308755,-0.633185,-0.20855123,0.26887065,0.018208535,0.34733137,-0.033673447,0.045645952,0.24547288,0.06774931,0.2253418,-0.36665872,-0.030294705,0.3802773,0.2840189,0.18698683,0.24691455,-0.39240265,0.31293485,-0.41972554,0.07401595,-0.15675476,0.17108808,-0.19189288,-0.21113703,0.19760005,0.091822185,0.2554076,-0.112900004,-0.36108658,-0.20731045,0.61249536,0.07409106,0.18491766,0.80698115,-0.21804956,0.06826731,0.02222335,0.44202882,0.87475723,-0.20367436,0.019346794,0.51311344,-0.22537944,-0.6684999,0.3347762,-0.37386325,0.3063887,-0.05940973,-0.27934092,-0.41629994,0.16310717,0.14234123,0.14197668,0.13383324,-0.4078967,-0.17163534,0.28974143,-0.29203695,-0.25320566,-0.35219595,0.01982019,0.64670813,-0.31818232,-0.20883518,0.14754209,0.16594301,-0.27756786,-0.4939731,-0.0023320755,-0.20612577,0.2018236,0.09501384,-0.3687292,0.015029786,0.023379147,-0.30171347,0.31394774,0.29068297,-0.3664584,0.012197244,-0.29173055,-0.15033753,0.79990107,-0.26101208,0.11934159,-0.5753926,-0.5397526,-0.91998076,-0.2478912,0.31758296,0.030058486,-0.09255908,-0.54680413,-0.072670735,-0.00028102397,-0.008607197,0.05152111,-0.40403566,0.40545782,0.08284431,0.27260703,-0.02859406,-0.7358944,-0.0875542,0.14318146,-0.21452291,-0.69958526,0.6102236,-0.10504959,0.9258606,0.113832556,0.09261852,0.31592697,-0.37717193,0.08415702,-0.20994253,-0.15727344,-0.5909452,0.024294369,694 -264,0.36285278,-0.09693371,-0.51073456,-0.012629977,-0.386963,0.15105395,-0.16725782,0.6341955,0.28306878,-0.44039422,-0.08796734,-0.11507416,-0.06461161,0.33969548,-0.15946627,-0.64457715,0.1765104,0.09292653,-0.44351566,0.40185288,-0.37822953,0.19559015,0.059310652,0.31227922,0.24804972,0.27225092,0.06227974,-0.024764262,-0.14998557,-0.15165819,-0.068344384,0.29268262,-0.52017635,0.31124985,-0.17911027,-0.2864915,-0.047823828,-0.51531255,-0.18866806,-0.7485177,0.23642035,-0.60837644,0.41936907,-0.17221442,-0.22540624,0.120306626,0.38533905,0.31270593,-0.103076465,-0.2086902,0.031135518,-0.13796285,-0.15748583,0.0013158282,-0.2405556,-0.34743482,-0.54219836,0.18822162,-0.4417339,-0.11607153,-0.24702902,0.17477793,-0.3606868,0.055717263,-0.05288779,0.63253856,-0.35987937,0.025443252,0.38752514,-0.2558152,0.07900389,-0.62655574,0.007028538,-0.05156312,0.23258725,-0.106177896,-0.15841755,0.41473484,0.22240692,0.5449965,0.15191263,-0.22213466,-0.32589403,-0.08629232,0.05564968,0.4457231,-0.08355428,-0.22585687,-0.20385166,0.1614439,0.06358026,0.14268093,0.13409382,-0.20324959,-0.11374807,-0.002049919,-0.27822155,0.43131942,0.36470416,-0.38334864,-0.14701429,0.28139463,0.45035106,0.23801918,-0.052503824,0.012425963,0.10858056,-0.62198216,-0.22017066,-0.023443008,-0.12387622,0.34510577,-0.22907877,0.282,0.64210165,-0.14478339,-0.073390566,0.17823417,0.084029004,-0.04127337,-0.46172917,-0.17798789,0.17709698,-0.58995277,0.1063502,-0.11078929,0.8340016,0.1798537,-0.5301712,0.26511267,-0.522282,0.15309791,-0.051421765,0.46116096,0.71552557,0.50933874,0.27914152,0.8721307,-0.25338775,0.09914156,-0.2868504,-0.3708869,0.08446756,-0.27395254,0.107600465,-0.42762837,0.115220994,-0.08049516,0.119817905,0.18770319,0.25163284,-0.51102805,-0.07727801,0.03460384,0.8454095,-0.16601987,-0.26326582,0.7230732,0.7885348,0.9389232,-0.06654535,0.86606795,-0.015882012,-0.10491791,0.36148167,-0.053186905,-0.59440285,0.38170677,0.3084305,-0.088833176,0.13857335,0.014873552,-0.113137595,0.59366757,-0.25976914,-0.020413645,-0.16253829,0.21600777,0.23008998,-0.16346982,-0.31625497,-0.34264386,-0.0019270977,-0.09375438,0.25060236,0.28925303,0.015445092,0.40528235,-0.1404438,1.6350137,-0.0971214,0.11433489,0.17308213,0.56940407,0.23020093,-0.122740634,-0.10884139,0.120204836,0.18565139,0.16169286,-0.49338874,0.033699997,-0.23669483,-0.44595304,-0.08744513,-0.40074462,-0.2613768,-0.07559357,-0.46567857,-0.18671761,-0.13266358,-0.282288,0.37352264,-2.7920609,-0.24032523,-0.03879835,0.28300825,-0.38933504,-0.3746033,-0.19909383,-0.5395692,0.44031212,0.25611824,0.539416,-0.49856472,0.46826518,0.4021199,-0.5735001,-0.2952679,-0.56105465,-0.021475013,0.027908945,0.17888047,0.05481583,-0.27538958,-0.12876718,0.030104568,0.60442126,-0.19789392,0.04272805,0.21105677,0.30778947,-0.11497231,0.53041756,-0.14053904,0.67638123,-0.44621378,-0.17777282,0.3669802,-0.40339667,0.18536706,-0.17738108,0.0765588,0.5411809,-0.3688636,-0.93866533,-0.62070805,-0.10314365,1.2746369,-0.14570867,-0.2604576,0.2480871,-0.56554514,-0.21133308,0.056361835,0.50258577,-0.037009936,-0.027983883,-0.6010436,0.13971713,-0.07104299,0.11690092,-0.045802604,-0.07981045,-0.40118155,0.63442534,-0.046857443,0.47937432,0.25225142,0.09684492,-0.3108714,-0.3927413,0.008530843,0.8178273,0.36454332,0.12093418,-0.26979285,-0.13194914,-0.45927575,-0.081654556,0.065139465,0.63727486,0.59011334,0.03608695,0.09074233,0.32969135,0.02246209,0.0068795364,-0.093880795,-0.35307276,-0.15663436,0.1525441,0.6491131,0.57128984,-0.0042828103,0.38671616,-0.0062349993,0.25642353,-0.23685338,-0.5488604,0.5665236,0.77495855,-0.30704385,-0.33066645,0.5345,0.40115213,-0.07985683,0.4005424,-0.48286203,-0.54462504,0.41171065,-0.20332602,-0.41480806,0.06976178,-0.29081243,-0.012730245,-0.7766145,0.06833863,-0.38986915,-0.40494806,-0.41257355,-0.21290684,-3.3967414,0.118541084,-0.14182444,-0.033519913,-0.23600677,0.017685851,0.11008124,-0.49689618,-0.5539667,0.06234397,0.14051183,0.7881373,-0.106544204,0.12628888,-0.2596167,-0.31369457,-0.23962641,0.1078412,0.07377904,0.28204188,-0.0061670938,-0.42600614,-0.034112968,-0.2531638,-0.41353598,0.12365316,-0.7009758,-0.47486475,-0.2274499,-0.5063851,-0.3011029,0.71812844,-0.45370737,0.14785744,-0.12869594,0.020943923,0.028103836,0.26579648,-0.01948353,0.071217105,0.2202793,-0.21061316,0.072853185,-0.29744747,0.23811173,0.08662355,0.47471988,0.52507824,0.05273328,0.24598725,0.6692665,0.74531853,-0.11243617,0.956249,0.39252454,0.040341582,0.41242692,-0.1792777,-0.37308806,-0.39451975,-0.16222008,0.074309595,-0.42705896,-0.27432138,0.11858987,-0.3734541,-0.8320558,0.48741198,0.10947944,-0.011718655,0.0060715834,0.21631822,0.56600827,-0.32716158,-0.044789508,0.05349068,-0.027064772,-0.48341015,-0.33018735,-0.52679276,-0.6076283,0.0047070426,1.0489258,-0.23901659,0.114018604,-0.037064426,-0.07935374,-0.0032004078,0.016882312,0.08711205,0.14699936,0.38578776,-0.10904904,-0.6705491,0.37981662,-0.31515837,-0.11638527,-0.3179622,0.349691,0.6187985,-0.6134156,0.4346693,0.360267,0.10712172,-0.16374843,-0.41593367,-0.001464661,-0.12335965,-0.23434427,0.45313555,0.24758561,-0.837051,0.5002178,0.2372415,-0.31399447,-0.82017845,0.46215135,-0.10054906,-0.15142919,-0.14015462,0.2901244,0.26223895,0.032106917,-0.13564178,0.049431562,-0.48833808,0.10174502,0.124121666,-0.0317657,0.47790068,-0.33196127,-0.15742391,-0.67937905,-0.05669709,-0.5633209,-0.36572066,0.22355196,0.05663738,0.03368377,0.15063757,0.032953892,0.3091072,-0.1496048,0.07668516,-0.1302851,-0.1729639,0.36377886,0.43001726,0.43584165,-0.49568197,0.54484725,0.0045363386,0.075040855,0.17709474,0.021676807,0.4234298,0.0433904,0.4879267,-0.08128379,-0.037814897,0.18590587,0.91524607,0.061411362,0.32109383,-0.09298995,-0.112296455,0.046582546,-0.009208189,0.085435964,0.065333344,-0.6378221,-0.06625404,-0.2969275,0.095591314,0.6059704,0.2209877,0.34476137,0.10103511,-0.25747645,0.057492983,0.04011744,-0.19070311,-1.2648023,0.4553194,0.16237777,0.9282224,0.2916757,0.10725509,0.057898674,0.751963,-0.12567817,0.27501455,0.32353362,-0.09998963,-0.47894922,0.5697869,-0.7772318,0.6260464,-0.04603602,0.014503989,0.019370833,0.047789834,0.5367873,0.7152533,-0.20437908,0.0040591042,0.008510208,-0.34156358,0.139859,-0.36454195,-0.010706242,-0.5403087,-0.24915822,0.6089311,0.5039541,0.30874988,-0.23474984,-0.03620955,0.118760996,-0.008886886,0.01416018,-0.13732377,0.067226164,0.0035517374,-0.4963831,-0.15247229,0.55262923,0.11608431,0.41096073,0.07397099,-0.15545997,0.36871016,-0.09953592,0.0049091023,-0.27701095,-0.53568584,0.02222445,-0.41079333,-0.5360292,0.2980124,-0.14552283,0.20746756,0.20038871,0.068911046,-0.37980992,0.6389214,0.00057648815,0.679706,-0.2269496,-0.059975546,-0.27697214,0.2428606,0.12944874,-0.2556558,-0.14030688,-0.32616657,0.11900215,-0.4547357,0.28322202,-0.20257396,-0.3732729,0.07753337,-0.062797666,0.028974835,0.44071054,-0.07766732,0.11424231,-0.007754715,-0.28539544,-0.238737,-0.2040916,-0.10075007,0.26839694,0.1161977,-0.0207798,-0.14950211,-0.30536795,-0.044381544,0.34484118,-0.043964703,0.19801578,0.17174283,0.080691546,-0.3538356,-0.1090108,0.26029947,0.67127836,0.05361325,-0.17283545,-0.3104145,-0.14762364,-0.3515774,0.30809408,-0.057801537,0.31547537,0.08177049,-0.35942253,0.78445053,0.01678389,1.1199546,-0.004060324,-0.35265654,0.09242683,0.35016638,-0.021913346,-0.03933498,-0.3894561,0.8074233,0.31354657,-0.14314343,-0.13474582,-0.53755414,-0.052067775,0.117594905,-0.21817939,-0.18108366,-0.13846582,-0.50943524,-0.24094565,0.30520517,0.17355792,0.24835548,-0.27264178,-0.053664435,0.1639623,0.03589372,0.24452958,-0.40680832,-0.16748479,0.28791627,0.36907348,0.016865684,0.049001858,-0.6363304,0.36878023,-0.6283915,0.14477918,-0.14079767,0.19086663,-0.3368471,-0.13063966,0.31063554,-0.005456078,0.40391308,-0.28026277,-0.36188754,-0.25763908,0.4208957,0.19074361,0.18743989,0.6926294,-0.2400845,-0.080240086,0.121232525,0.57618076,0.8464034,-0.24885936,0.07130409,0.337921,-0.21512851,-0.6110773,0.24829584,-0.34636515,0.0763518,0.058925357,-0.20907284,-0.43057373,0.2920663,0.21887162,0.15671635,-0.046287518,-0.6676773,-0.13832338,0.24049743,-0.24123976,-0.30464205,-0.36759427,0.044198193,0.5979615,-0.0760517,-0.27342397,0.23769291,0.41235003,0.05543498,-0.53797317,-0.050470013,-0.19978271,0.19590214,0.07143852,-0.32435894,-0.14789881,-0.02624592,-0.58458865,0.16804013,0.11512882,-0.27056873,0.05466731,-0.14627819,-0.01756064,0.85017854,-0.082657345,0.25970775,-0.40748733,-0.40607157,-0.7956303,-0.2402199,0.31236416,0.040507186,-0.08743234,-0.64700425,-0.14953406,-0.20949885,-0.31302178,-0.07503862,-0.51381546,0.39105874,0.034198873,0.3195112,-0.08444551,-0.7182895,0.26600358,0.19686483,-0.122604705,-0.4804805,0.2587287,-0.11277563,0.80025375,0.158818,-9.9460285e-06,0.3249451,-0.35167176,0.032634266,-0.20304102,-0.1410965,-0.6457087,0.032176804,695 -265,0.3967573,-0.24948764,-0.32817185,-0.12868842,-0.14943627,0.11660636,-0.12029131,0.42600402,0.10276326,-0.59104,-0.23615113,-0.28160724,0.05814995,0.25055614,-0.22522208,-0.3866977,-0.1417504,0.11663183,-0.41991663,0.49485356,-0.4280363,0.2921622,0.13704477,0.32006633,0.12616755,0.22301522,0.17632142,-0.16844644,-0.20565067,-0.08586691,-0.0376954,0.3493151,-0.56616527,0.18898301,-0.09523416,-0.22268134,0.018675907,-0.5012041,-0.23175591,-0.6726695,0.30672783,-0.8965753,0.4303015,-0.0078685405,-0.27748024,0.3806982,0.14853859,0.3744508,-0.1976203,0.034693424,0.20141207,-0.020227907,0.013482632,-0.08062972,-0.1629695,-0.20199344,-0.45274842,-0.008820363,-0.29556262,-0.32236132,-0.24000715,0.15137263,-0.23576126,-0.09864752,-0.037374936,0.50832677,-0.5181424,0.03769857,0.17543554,-0.14853121,0.56771064,-0.48817793,-0.17209128,-0.1360877,0.31985578,-0.4006811,-0.12687099,0.2422239,0.33933517,0.36243457,-0.1243677,-0.025559548,-0.28672716,-0.113502346,0.25199208,0.46240738,-0.16648369,-0.33821017,-0.029193325,0.017873466,0.0935342,0.27998063,0.13133065,-0.45302302,-0.18100923,0.040786315,-0.22979791,0.24429254,0.34053108,-0.26394328,-0.20901148,0.34645227,0.57124,0.1529524,-0.109064676,-0.041210644,0.029434893,-0.46087918,-0.113480724,0.23082593,-0.2572711,0.45205238,-0.07367256,0.32086667,0.65832895,-0.20356542,0.11885821,-0.062052026,0.047215454,-0.17429088,-0.25251713,-0.2925221,0.17109999,-0.28625268,0.12941171,-0.09748415,0.801848,0.10104133,-0.8038744,0.2930836,-0.5165025,0.013277769,-0.26483208,0.44950676,0.51698124,0.33334592,0.25641873,0.6144482,-0.5357105,0.06746542,-0.12528023,-0.42169583,-0.06384375,-0.14503448,-0.19560155,-0.48293063,-0.02453399,0.046398737,-0.17324758,-0.017476348,0.34817538,-0.5678232,0.08061897,0.054975275,0.787881,-0.37132177,-0.024971664,0.64290833,0.8456126,0.76037765,0.15928072,1.1212736,0.24226311,-0.24244124,0.22058997,-0.3451561,-0.6880674,0.3595582,0.5051221,-0.21304312,0.23924749,0.13890605,0.051113572,0.27074528,-0.3534511,0.06810966,-0.28854913,0.08315535,0.0815029,-0.10390661,-0.36691532,-0.21623237,0.04146533,0.11999877,-0.033403777,0.03504371,-0.11658607,0.26372442,0.05509995,1.923001,-0.11605821,0.17945187,0.08158198,0.31231335,0.1660159,-0.082705036,-0.15532635,0.5363867,0.39160267,0.15612802,-0.59634274,0.13757,0.0138266,-0.52066857,-0.04967784,-0.3639138,-0.006521976,0.099558935,-0.4086853,-0.015143188,-0.0743889,-0.31354257,0.45335075,-2.8279433,-0.16442999,-0.20590499,0.33894637,-0.39120114,-0.35602838,-0.14788038,-0.33664542,0.47146118,0.43172055,0.49901152,-0.6227388,0.25681823,0.36409935,-0.39490938,-0.18236068,-0.56913936,-0.13096647,-0.044221256,0.23842672,-0.01422052,-0.004610913,0.11569198,0.12191688,0.30455983,-0.09705923,0.08065614,0.23983759,0.44104663,0.19322665,0.56739247,-0.050860923,0.39985052,-0.11221086,-0.23921145,0.32340842,-0.18397301,0.08014568,0.08776913,0.10535767,0.35201824,-0.5693432,-0.7621257,-0.8012151,-0.5938843,1.1982198,-0.31142017,-0.3863777,0.23448084,-0.06389972,-0.3273961,-0.12215878,0.34728405,-0.05205008,-0.035426904,-1.0129465,0.063257046,-0.06271106,0.2641844,0.006932826,-0.100227885,-0.46939275,0.5592426,-0.16560772,0.4997681,0.44489905,0.16857077,-0.27472255,-0.4116124,-3.1801064e-05,0.9963951,0.27835843,0.10730407,-0.113488086,-0.1946606,-0.31830925,0.032049824,0.15754332,0.45758376,0.62833124,0.09506085,0.051846437,0.31414208,-0.122523084,0.064901926,-0.17513646,-0.339591,-0.024145855,-0.07506548,0.5649487,0.33414173,-0.09784659,0.60956883,-0.10262474,0.28215653,-0.080860056,-0.33816224,0.33327857,0.93156785,-0.06635965,-0.30359662,0.5683735,0.5343305,-0.28713742,0.31995338,-0.58438784,-0.13380781,0.511436,-0.28802642,-0.50016195,0.22510916,-0.30266324,0.20068334,-0.90954906,0.30829096,-0.26183417,-0.36797392,-0.4898451,-0.10495052,-3.2128754,0.21751185,-0.15594779,-0.4016485,0.041695215,-0.19956261,0.14714582,-0.67270625,-0.5487938,0.2006525,-0.036219705,0.545977,-0.007907082,0.12929301,-0.21309032,-0.12451419,-0.12326231,0.0863046,0.13918318,0.29191488,-0.016045209,-0.4971692,-0.02357179,-0.1056897,-0.38069913,0.117982104,-0.5613221,-0.5723589,-0.104956545,-0.53107035,-0.32593015,0.52085155,-0.4136424,-0.039831296,-0.1001816,0.05273723,-0.13577032,0.42503375,0.17194845,0.24011554,0.07462954,0.04564909,-0.046981886,-0.34789905,0.40093726,0.10495916,0.022271864,0.2792505,-0.21224254,0.26395687,0.42269787,0.5611067,-0.027339268,0.6570816,0.5027103,-0.10412904,0.16100861,-0.39799517,-0.17401081,-0.56481296,-0.31943846,-0.01676262,-0.37328276,-0.54766923,-0.12602493,-0.36238515,-0.72908986,0.6224774,-0.07633391,0.09740227,0.042052887,0.27387002,0.43022645,-0.14414819,-0.04235702,-0.033641532,-0.15572974,-0.587847,-0.23349476,-0.60115373,-0.41232577,0.0650691,0.9867775,-0.12622514,0.06098427,-0.020689623,-0.16655995,0.007578186,-0.010016266,-0.04505893,0.25514597,0.35720667,-0.15344897,-0.63140875,0.4005795,0.036787868,-0.2375381,-0.5680575,0.23368892,0.6354734,-0.49299,0.55066764,0.2831666,0.024060579,-0.17047733,-0.4321771,-0.18347086,0.0027647733,-0.3473416,0.43390572,0.09705796,-0.58000076,0.38674164,0.45860627,-0.18392196,-0.7909352,0.67312837,-0.043219294,-0.35021153,0.10324125,0.25859845,-0.038712755,-0.036126796,-0.19015703,0.2561522,-0.40617433,0.25758216,0.26385072,-0.04816739,0.3830887,-0.20140807,-0.020890625,-0.7194626,0.10755878,-0.42126682,-0.2550672,0.26634178,0.088563785,0.0342846,0.28293812,-0.06020533,0.5451669,-0.3050253,0.045416195,-0.014040482,-0.10269907,0.19083683,0.40287802,0.3014396,-0.4402565,0.4745162,-0.03674323,-0.04816235,-0.20854715,0.15042645,0.45299104,0.1894486,0.23027721,-0.17415714,-0.27700698,0.454801,0.6297062,0.28898507,0.5297166,-0.063362375,-0.1460841,0.21764088,0.17036308,0.23003188,-0.07812152,-0.48681286,0.039326303,-0.06258187,0.08410979,0.3784459,0.11252644,0.28799313,-0.16505273,-0.40051848,0.087540515,0.23861167,0.078160286,-0.88664407,0.3211712,0.12631553,0.7250073,0.45181364,-0.060955223,0.13550459,0.57754093,-0.3117959,0.095957085,0.18783443,-0.04202226,-0.5884016,0.46203688,-0.6400986,0.3664159,-0.110973574,-0.053418454,-0.021696357,-0.06647357,0.31986412,0.72046703,-0.0968224,0.13690199,-0.023522858,-0.30881685,0.17565466,-0.4555783,0.03243999,-0.53738433,-0.29335573,0.44871882,0.47911826,0.35217416,-0.14908075,0.019089127,0.0532231,-0.088720456,0.24468714,0.20350641,0.26175067,0.107309625,-0.767679,-0.27265355,0.55234927,0.06727597,0.16091134,-0.04797023,-0.2225645,0.34304124,-0.12715572,-0.058838297,-0.024752226,-0.60793597,-0.07137024,-0.24860138,-0.28599957,0.25083384,-0.09120684,0.19529477,0.13789259,-0.037230253,-0.33551896,0.34416077,0.34322146,0.85689074,-0.0043634274,-0.17962632,-0.43710807,0.06799411,0.19168898,-0.074046746,-0.07699124,-0.25334823,-0.03237115,-0.6682479,0.44924575,0.13636576,-0.33922693,0.2094231,-0.12189693,-0.062304392,0.6201639,-0.041752305,-0.06232914,-0.11748377,-0.21929915,-0.23637746,-0.12880678,-0.15320864,0.21699168,0.19309138,0.087044835,-0.09569867,0.025792273,-0.17969933,0.52553266,0.029001491,0.48904946,0.3847538,0.12321555,-0.4071611,-0.10523241,0.022200465,0.36648285,-0.057970013,-0.10248712,-0.23329654,-0.46305677,-0.19998479,0.08655287,-0.15447603,0.339145,0.12251267,-0.36846307,0.7445261,-0.16733749,1.0509304,0.01702307,-0.33867794,0.015641121,0.39706105,-0.017719602,-0.038401406,-0.27741373,0.74226516,0.6651323,0.042394377,-0.0684005,-0.21716264,-0.15820861,-0.003473107,-0.1310681,-0.062273216,0.008860846,-0.5207698,-0.4233538,0.18005086,0.20735316,0.14174007,0.020590307,0.09989584,0.1594147,0.008517893,0.31124586,-0.35804263,-0.058449157,0.25380918,0.2922146,0.13109413,0.03372767,-0.5041564,0.46261552,-0.43882734,0.11929051,-0.3361852,0.12333949,-0.121588595,-0.20398359,0.1495296,-0.07303406,0.32762542,-0.19953838,-0.3104316,-0.15716007,0.5631305,0.075875886,0.11876752,0.54666257,-0.25302097,0.28508773,0.00429256,0.5182138,1.0398362,-0.22101326,-0.03479847,0.3660288,-0.3230391,-0.5021446,0.33092833,-0.2018892,0.19785486,-0.020762937,-0.10645464,-0.45091644,0.24143271,0.20454977,-0.052856095,-0.15064386,-0.48785704,-0.18596411,0.46873653,-0.31614298,-0.23118271,-0.35812977,0.2391352,0.55275595,-0.3056551,-0.24110843,0.0342657,0.17553638,-0.31251702,-0.35738784,-0.15910527,-0.32429683,0.26523945,0.119101234,-0.34824544,-0.09301956,0.11057476,-0.20112786,0.06742794,0.12818351,-0.3488596,0.023300687,-0.22478531,-0.16676967,0.94042754,-0.14296725,-0.110198975,-0.53458613,-0.32518873,-0.88653743,-0.2550169,0.6113777,0.01781019,0.0714374,-0.44673258,0.06095345,0.0086921295,-0.17235593,-0.12661436,-0.2906078,0.41934347,0.15887684,0.5113621,-0.14096175,-0.5626905,0.11919455,0.078513525,-0.07900419,-0.6534836,0.5175762,0.050625358,0.7367973,0.027466945,0.08045812,0.3413433,-0.48278138,-0.15884325,-0.17936927,-0.3259133,-0.7544917,0.003610313,696 -266,0.35902724,0.014307332,-0.552769,-0.24525578,-0.21466878,0.14539021,-0.00038337708,0.13369599,0.3418349,-0.23526439,0.012772886,-0.19282836,-0.06007326,0.320908,-0.027927483,-0.7999412,0.012331597,0.13751419,-0.6240381,0.29588583,-0.46371275,0.37628117,0.08048273,0.34064025,-0.07168169,0.3528362,0.1460479,-0.040972244,-0.015015451,0.24377565,-0.15523832,0.4008418,-0.47036102,-0.010036623,0.077701725,-0.19046974,-0.062313534,-0.1398816,-0.3943275,-0.6067628,0.40762872,-0.7329472,0.57605493,0.056518793,-0.34449294,0.093806,-0.031154899,0.1707962,-0.3614921,0.18160218,0.19835024,-0.42321938,0.0017944734,-0.20176545,-0.34174487,-0.48181972,-0.61719716,0.010291195,-0.5890778,-0.1291729,-0.3867577,0.21933489,-0.37821472,-0.05418959,-0.2481265,0.4718302,-0.41558537,-0.037796482,0.30390173,-0.27290183,0.08397531,-0.33380842,-0.12421873,-0.117820665,0.1655407,0.09288066,-0.15695445,0.18119174,0.22890984,0.6673114,0.1309148,-0.29627874,-0.31077754,0.06545638,0.17977487,0.4931348,-0.1727998,-0.023113318,-0.1634566,0.0199404,0.05409594,0.18647008,0.02867585,-0.44453558,-0.013075964,0.16083114,-0.16293383,0.30254802,0.50114197,-0.38886273,-0.35709414,0.39101753,0.60647935,-0.053862974,-0.22789812,0.20021804,-0.09532539,-0.51519394,-0.22579572,0.22555457,-0.13841525,0.4416855,-0.13750812,0.043369096,0.81956077,-0.04982497,-0.09078487,-0.15741786,-0.031230653,0.053106047,-0.24769284,0.1976817,0.051727258,-0.36909968,0.03055751,-0.15664954,0.6293369,0.120020896,-0.7665573,0.36463764,-0.43922198,0.2722643,-0.19971503,0.6743679,0.81138176,0.27765444,0.25959834,1.008182,-0.6722642,0.012895632,0.038557578,-0.5297272,0.16154371,-0.07586579,0.015783977,-0.5436708,0.0021486084,-0.05752654,-0.0950188,0.026295569,0.2820771,-0.48424876,-0.077359535,0.10526252,0.7898903,-0.39581493,-0.046590727,0.59603435,0.9345469,0.7928911,0.028106613,1.2203257,0.36410674,-0.2501927,0.266545,-0.6353189,-0.5979413,0.072955005,0.30088148,0.34113923,0.36951447,0.16585486,0.20752423,0.53940517,-0.19210714,0.1634584,-0.14872281,0.16252628,0.15720414,-0.11339356,-0.3610202,-0.056153603,0.08816745,0.052188482,-0.010654183,0.29926366,-0.20333236,0.3752176,0.03744111,1.4376653,0.071369745,0.013177981,-0.00932701,0.44278902,0.21402553,-0.09098606,-0.10801354,0.4613468,0.3270859,-0.12014947,-0.4840632,-0.022271313,-0.32880458,-0.39123005,-0.2506538,-0.35852292,0.09541778,-0.07635892,-0.45430824,-0.04874928,0.13809238,-0.4713786,0.4311766,-2.511801,-0.24115425,-0.06829734,0.32279506,-0.08073168,-0.285792,-0.27830508,-0.3540324,0.12614484,0.4435391,0.31036323,-0.6468786,0.4375316,0.29385525,-0.26568404,-0.057401035,-0.6239767,0.033818703,-0.14465924,0.3639335,0.030776305,-0.022768853,-0.20184407,0.214221,0.61673576,0.0109882,-0.18486357,0.23755908,0.49438593,-0.014738449,0.5527382,0.18204361,0.61730045,-0.10666873,-0.27001044,0.38587007,-0.35152644,0.19735463,0.08353929,0.1301743,0.26159313,-0.32764402,-0.9451285,-0.547572,-0.24802813,1.2516583,-0.43040007,-0.29706797,0.44404775,-0.18775311,-0.2505732,-0.0718569,0.42676684,-0.1821511,-0.01320647,-0.71866363,0.08632912,-0.014693125,0.114401355,-0.11806648,0.022904182,-0.2386408,0.669186,-0.24666776,0.42158425,0.2922067,0.20466174,-0.077569865,-0.3839059,0.119936,0.82282853,0.2377208,0.10630536,-0.015900172,-0.20927788,-0.028608743,-0.19288747,0.14820448,0.50135285,0.6870105,-0.023867518,0.11216261,0.43268624,-0.09469588,-0.09473293,-0.14875866,-0.3810136,0.064849086,0.031268213,0.420332,0.5388031,-0.21790634,0.3457785,-0.06950581,0.11194351,0.032491494,-0.540523,0.44553173,0.93421006,-0.20170236,-0.26136258,0.50598884,0.3360958,-0.519448,0.33150494,-0.5533965,-0.13353075,0.625949,-0.11934029,-0.32908306,0.17239238,-0.3221955,0.06525445,-0.80158585,0.17136,0.12945895,-0.5142671,-0.4007146,-0.20267805,-4.2683196,0.20555793,-0.30396944,-0.0058311066,-0.002412041,-0.06405371,0.22609052,-0.45134556,-0.40048265,0.054762147,0.087743774,0.35464317,-0.10472742,0.09078921,-0.3171922,-0.0473451,-0.22356786,0.29014072,0.04448817,0.33847058,0.107252926,-0.46422967,0.120752454,-0.3489877,-0.4937598,-0.05722107,-0.53030986,-0.47535673,-0.13182408,-0.54920477,-0.28399912,0.6736505,-0.25108063,-0.099740855,-0.4497381,0.094642,-0.1793848,0.35604864,0.16552998,0.20507075,0.029366931,-0.00012088418,-0.24435237,-0.37705368,0.29279456,0.0012047251,0.28060308,0.42982626,0.013498697,0.054872945,0.6217517,0.5908772,-0.08517089,0.6765999,0.41297576,-0.120860204,0.3149773,-0.33277386,-0.16087681,-0.8420849,-0.48492968,-0.16225226,-0.52184486,-0.54428077,-0.22484387,-0.43264997,-0.8160587,0.40974715,0.10167252,0.1684324,-0.07745215,0.33672157,0.4797637,-0.06132086,-0.07422844,-0.16691509,-0.3565094,-0.55231816,-0.4009387,-0.56911343,-0.5879336,0.24289536,1.0685622,-0.19366333,-0.15281974,-0.15438445,-0.2894195,-0.0014724369,0.19799653,0.24687523,0.32207137,0.43557295,-0.17171535,-0.59761745,0.33565372,-0.25620577,0.016211966,-0.8124621,-0.047544148,0.4145568,-0.66355693,0.7677518,0.062302094,0.22459303,0.32339293,-0.49996266,-0.40386364,0.045393027,-0.20024149,0.64997727,0.15254335,-0.63487947,0.49537715,0.18098399,-0.19256891,-0.53807425,0.27335554,-0.17092994,-0.13121904,0.17585403,0.3174175,-0.009460875,-0.079493016,-0.03767085,0.15320657,-0.4088075,0.381964,0.46132654,0.019681076,0.35425404,-0.021056572,-0.26944837,-0.66344845,-0.14673088,-0.44442147,-0.18167622,-0.029156374,0.12427548,0.1628591,0.032815654,-0.048088755,0.44278663,-0.22461002,0.13081613,-0.00051786104,-0.25898907,0.34012693,0.4573973,0.19909407,-0.5137421,0.56178206,0.03464389,-0.09535083,-0.0061616194,0.058349054,0.5371798,0.19692917,0.29165056,-0.07008072,-0.10297224,0.28295764,0.70284176,0.14769289,0.33671921,0.10001555,-0.22585087,0.4226575,0.21979414,0.008937913,-0.1646206,-0.27028647,-0.034260314,0.060884405,0.2803178,0.3581794,0.21728602,0.34976667,-0.08578385,-0.2087269,0.21835227,0.26598924,-0.048827816,-1.0786278,0.16784103,0.23905869,0.6658233,0.48011738,0.0036180813,-0.103075944,0.46361706,-0.38954356,0.034757845,0.4002471,-0.25924888,-0.5271394,0.45696086,-0.561035,0.47048348,-0.13726307,-0.022955526,0.23414157,0.32446787,0.313996,0.9417175,-0.113401085,-0.027597459,-0.07704127,-0.18181057,0.06350816,-0.23083301,0.07907859,-0.5268534,-0.33975327,0.535258,0.4778647,0.39803272,-0.32744515,-0.13872576,0.008555128,-0.16276246,0.028811578,-0.09569033,0.003681012,-0.10033953,-0.6216346,-0.3425464,0.4860054,-0.124693826,0.017083477,0.062763184,-0.29871172,0.27491018,-0.18902801,-0.20710939,-0.10414658,-0.5489651,-0.033984024,-0.12334275,-0.5773442,0.3802751,-0.34458977,0.36029133,0.12264525,0.020446133,-0.4704316,0.35428485,0.012188069,0.8342515,0.018395582,-0.092446946,-0.46306458,0.12556845,0.26408863,-0.25218993,-0.07959594,-0.47850525,0.007462009,-0.52530855,0.51959985,-0.19044434,-0.3263582,-0.068009146,-0.21885449,-0.040335704,0.49758187,-0.31006497,-0.2950839,0.10838976,-0.011494366,-0.28180033,-0.023418497,-0.3455293,0.3614724,-0.07285497,-0.12475454,0.0662915,-0.13140143,-0.06461633,0.46418506,0.13893366,0.18025117,0.16402096,-0.07489826,-0.36272565,0.0010309478,0.042908352,0.3433232,0.07079336,-0.026959987,-0.1848465,-0.3741836,-0.36946163,0.12280004,-0.16108519,0.2547422,0.14216511,-0.5472843,0.6920875,0.18809503,1.2737421,0.13326111,-0.24176201,0.059660707,0.58528596,0.1608078,0.22671695,-0.31578958,0.69387585,0.6820286,-0.068688475,-0.25024942,-0.37153327,-0.10659849,0.22667168,-0.24500042,-0.082037784,-0.15050046,-0.79854697,-0.28646132,0.11141828,0.19365409,0.3349435,0.047706485,-0.04040695,0.040169008,0.14289255,0.4012209,-0.3274669,-0.19834706,0.3052005,0.19464381,-0.04278985,0.17284101,-0.28644297,0.4823455,-0.48426196,0.1075151,-0.26371464,0.11173437,-0.13072453,-0.2105512,0.1918114,-0.08225208,0.36537263,-0.23669395,-0.17666548,-0.3078789,0.6994003,0.14293966,0.28785232,0.7847399,-0.22993803,-0.03752679,0.18687353,0.4693585,1.3794725,-0.072283044,0.09694384,0.34540835,-0.16840668,-0.5954414,0.18655245,-0.2761761,0.011306226,-0.19850641,-0.41592312,-0.31956986,0.29731655,0.000527668,-0.03169466,0.20121983,-0.427043,-0.26020196,0.31962076,-0.32372558,-0.15044855,-0.31905353,0.2585107,0.7125938,-0.46525273,-0.42450315,0.21909936,0.20108952,-0.2583909,-0.48965752,0.0076257386,-0.28709194,0.41362697,0.25335267,-0.3870969,0.07371522,0.3128942,-0.42190498,0.105052784,0.45105615,-0.3040544,0.15336211,-0.040922213,-0.29060745,1.0718662,0.031056453,0.17654042,-0.68960166,-0.48392355,-1.0584022,-0.29830724,0.47599214,0.11901689,-0.072902955,-0.46734902,-0.16319104,-0.06876647,-0.12364184,0.03290637,-0.55282795,0.3921805,0.011452913,0.4691199,-0.07008458,-0.88581604,-0.13287146,0.14090344,-0.20135571,-0.61511785,0.61718243,-0.13172048,0.7053767,0.09578631,0.078156255,0.26780567,-0.47189465,0.22092867,-0.38716882,-0.12999015,-0.71668017,-0.040503982,701 -267,0.23793477,-0.2978302,-0.3655396,-0.2060988,-0.30797598,-0.11384609,-0.14689589,0.47778973,0.18826987,-0.08994768,-0.15265249,-0.028209042,0.05026316,0.39591807,-0.19251312,-0.48020718,-0.17902015,0.04042634,-0.55150634,0.46197766,-0.54085666,0.22362041,0.07137367,0.40224773,0.05923197,0.45574766,0.21733013,-0.07931493,-0.04330205,-0.13583122,-0.15449204,0.14546442,-0.36655,0.16550438,-0.2573838,-0.26044595,0.12255852,-0.49820906,-0.22656193,-0.6437905,0.025909,-0.77393156,0.38823843,-0.09485766,-0.19589844,-0.0798724,0.15296635,0.26506796,-0.32682475,-0.02462686,0.22963199,-0.014898593,0.03749827,-0.230538,0.06044113,-0.37597707,-0.37270373,-0.050333582,-0.5073904,-0.33749813,0.07030428,0.16155224,-0.29427117,-0.013776746,-0.07248811,0.2988866,-0.5180055,-0.20075302,0.2963378,-0.31875262,0.413076,-0.44289705,0.039573677,-0.093494035,0.41192514,-0.044136986,-0.15689631,0.34498787,0.22913498,0.24422485,0.13373451,-0.16066235,-0.19939454,-0.16876332,0.009563979,0.5186345,-0.1425458,-0.34042376,-0.20822407,0.08281089,0.23547283,0.29914215,-0.003358364,-0.15973479,-0.07081521,-0.22081415,-0.25377294,0.24855289,0.40831712,-0.19416425,-0.1708271,0.28830895,0.44508445,0.24543849,-0.23913865,0.006968995,0.029299699,-0.43676335,-0.19783612,-0.06843474,4.3241183e-05,0.5727365,-0.0745803,0.23718157,0.82445335,0.004358999,0.07088869,-0.03829509,0.037777748,-0.2737251,-0.2290174,-0.18314981,0.12717214,-0.4280952,-0.0023462295,-0.15326767,0.620599,0.1385965,-0.7497031,0.38785404,-0.47466433,0.0570656,-0.14641415,0.48108524,0.41219845,0.45386398,0.28918427,0.6973169,-0.22353704,0.22193232,0.03642823,-0.4013344,0.16188702,-0.26692703,-0.07146694,-0.5231914,0.09770228,0.01828771,-0.0029339015,0.048993647,0.07476115,-0.5693115,0.017014734,0.26385203,0.69891185,-0.2523588,0.0006720185,0.6856804,1.1661084,0.932326,-0.08137739,0.9448731,0.21361008,-0.14205144,0.14459713,-0.2366205,-0.61723554,0.14574696,0.48551998,0.08388639,0.31219858,-0.10625922,-0.08163151,0.3331056,-0.37238416,0.15197872,-0.031427823,0.21464255,0.061274584,-0.08507123,-0.6256055,-0.2534028,-0.01568189,-0.03024354,-0.025231838,0.22124979,-0.14252421,0.4575841,-0.07721744,1.3683665,0.04441126,0.101260886,0.12429353,0.6678206,0.24239798,-0.11069355,-0.0911409,0.45749295,0.32669163,0.07356727,-0.46088448,0.27137095,-0.21519896,-0.48457572,-0.091399916,-0.35517344,-0.05215629,0.016221225,-0.5080875,-0.07620093,-0.019836264,-0.1694295,0.36255616,-3.1404216,-0.16976443,-0.14876355,0.2480655,-0.31256148,-0.067394845,0.07233342,-0.38766614,0.15537475,0.40634745,0.49935195,-0.6248957,0.43963477,0.47745928,-0.45413637,-0.15656003,-0.6483045,-0.11239942,0.0055248877,0.49055487,0.21145551,-0.012914258,-0.09545849,0.2292674,0.5500408,-0.0052716257,0.23104955,0.26023203,0.2771389,0.17437474,0.4129291,-0.025852561,0.5266641,-0.25795856,-0.059994545,0.25460684,-0.31984475,0.18534428,-0.042962693,0.13084717,0.42079926,-0.41611168,-0.81953883,-0.5231504,-0.23858973,1.1005569,-0.2621988,-0.3476296,0.26053545,-0.08221087,-0.1324737,0.045682847,0.42808226,-0.08663012,0.26943004,-0.6003067,0.047074936,-0.046940327,0.09727899,0.02936886,-0.088833876,-0.3680359,0.58382404,0.037558675,0.627534,0.3782392,0.22894846,-0.13704659,-0.44378802,0.0096980175,0.6068022,0.3679971,-0.016245993,-0.09139827,-0.08087607,-0.13353808,-0.1445988,0.074172825,0.44063243,0.7886329,-0.030330746,0.20931609,0.22805396,-0.06619803,-0.03766795,0.011963457,-0.15538791,0.0780693,0.15321033,0.41583106,0.7366775,-0.13966434,0.37156144,-0.25191107,0.5384905,-0.13412446,-0.5272364,0.49267787,0.34339148,-0.18698606,0.022707429,0.49307984,0.533502,-0.37529135,0.45357043,-0.5985474,-0.25046477,0.5658896,-0.08227156,-0.50131375,0.24069694,-0.1777183,0.2647502,-0.94067025,0.42860425,-0.19081637,-0.503857,-0.4207656,-0.16856335,-3.331393,0.10820345,-0.113601066,-0.31773463,-0.16630952,-0.100077525,0.2740826,-0.753852,-0.57544935,0.14415391,0.21359688,0.45276424,-0.0782467,0.09662101,-0.30996737,-0.037352163,-0.103683926,0.2567443,0.016061282,0.24799684,-0.20222244,-0.48289046,-0.22873798,-0.12943381,-0.56985855,0.23128933,-0.5684865,-0.4416134,-0.08335241,-0.5426847,-0.30311388,0.52663475,-0.21783844,-0.0015186071,-0.15436457,0.06720631,-0.23042059,0.18158156,0.15134212,0.16167404,0.050728373,0.0539516,0.19290093,-0.3321659,0.43067196,0.09925048,0.4520925,0.12702154,-0.013174681,0.17516966,0.6694689,0.5058075,-0.22132029,0.83425105,0.38901773,-0.16199675,0.31603327,-0.32883006,-0.24939059,-0.4707529,-0.4525741,0.020199755,-0.3129429,-0.5722443,0.030697938,-0.31637323,-0.70741767,0.5671177,0.010318637,0.24586469,0.011114661,-0.02115932,0.34373203,-0.25068215,0.03841049,-0.007576847,-0.06057871,-0.53085285,-0.22522071,-0.6644772,-0.5185447,-0.024846554,0.9288973,-0.24787532,0.07780741,-0.067658044,-0.318294,0.026176574,-0.06142307,0.116121426,0.3117648,0.20226319,-0.12194004,-0.6765203,0.449142,0.007867475,-0.07783943,-0.2761911,0.029753255,0.65250504,-0.7083649,0.40205663,0.4320304,0.0590822,-0.08447259,-0.4648837,-0.24620768,-0.14250214,-0.087862454,0.5644321,0.06565532,-0.68623126,0.51176465,0.20664324,-0.50633705,-0.588569,0.37934774,-0.17664273,-0.13549943,-0.06093847,0.2179109,-0.041865848,-0.15078357,-0.21571757,0.1751043,-0.4118578,0.2886864,0.25522268,0.06442637,0.47152632,-0.053666994,-0.12487765,-0.6503207,-0.1261934,-0.48534736,-0.18569228,0.33277708,-0.034555867,-0.043387644,0.07520156,-0.013738632,0.29717445,-0.3163851,0.041378837,0.17832834,-0.31900558,0.32582673,0.43426034,0.38999864,-0.39136145,0.49117577,0.13654606,-0.08674031,0.040579736,-0.110405,0.361389,0.029076863,0.31978887,-0.1922055,-0.0860887,0.39277795,0.6566204,0.2292323,0.3630254,0.02029155,-0.16834483,0.37442666,-0.020819085,0.19625483,0.12344352,-0.39213684,0.0794984,-0.17401733,0.17860132,0.38609028,0.2741877,0.29057586,0.06295325,-0.25077638,0.09326114,0.26750273,-0.11814501,-1.0923055,0.4195502,0.32042268,0.6943073,0.37281996,0.2361022,-0.17277762,0.8330742,-0.27462435,0.08642847,0.46259883,0.10863238,-0.58462864,0.72872823,-0.6352965,0.5123861,-0.09813051,-0.14706819,0.15127906,0.03826561,0.4234742,0.6414758,-0.085553214,0.036432333,-0.0770853,-0.23786946,-0.094312504,-0.3579262,-0.017106665,-0.40930966,-0.28096533,0.66216093,0.38831243,0.29163787,-0.07591912,-0.01208152,0.13675158,-0.032130435,0.32412472,-0.031890605,0.031100333,0.0250765,-0.51680225,-0.27219746,0.5775246,0.013039694,0.13724677,-0.21826704,-0.33014542,0.02258555,-0.22387631,-0.083906285,0.026589947,-0.5543786,0.17492512,-0.12503447,-0.34882373,0.47227702,-0.31718883,0.17314757,0.0116795935,-0.06887092,-0.11279834,0.08124984,0.010263809,0.75573903,-0.06869482,-0.24642546,-0.29535723,0.06545138,0.20409432,-0.21490236,-0.037215054,-0.4916774,0.0045722644,-0.44905415,0.5251303,-0.017236432,-0.42057997,0.16840288,-0.16168836,-0.01127015,0.46881562,0.023359282,-0.19230385,-0.12178023,0.058254745,-0.40425694,0.041349567,-0.36995474,0.2800477,0.4123902,-0.07899479,-0.005551553,-0.12679024,-0.0020229022,0.56006646,0.0021698454,0.52424365,0.1728956,-0.14442594,-0.30340013,0.03318247,0.03847972,0.37996933,0.15159398,0.12345989,-0.3858249,-0.32973588,-0.222013,0.033625007,-0.1663861,0.23832722,0.083905704,-0.082177326,0.8240543,-0.047305703,1.2667607,0.015614617,-0.37679163,0.11386483,0.46610492,0.033441897,0.09888799,-0.4289061,1.0029887,0.5996069,-0.18938036,-0.1276219,-0.42768273,-0.15648855,0.28921586,-0.27156743,-0.16222209,-0.033521056,-0.61114806,-0.28009272,0.2829885,0.10125878,0.18345697,0.037101578,0.0052063465,0.034986593,0.14752078,0.2801746,-0.52255493,-0.18604419,0.29562065,0.25956902,-0.06535555,-0.0076437513,-0.5528849,0.41892183,-0.5341741,0.21278086,-0.42340043,0.13978793,-0.28508556,-0.3976794,0.030481128,-0.11410994,0.40016273,-0.30937874,-0.47795781,-0.013568107,0.47627822,-0.024730342,0.118995205,0.53349584,-0.23821998,0.096938476,0.023488993,0.47053063,1.0410255,-0.48056936,0.008765173,0.4117119,-0.35334054,-0.6610399,0.27158397,-0.23329268,0.030910682,-0.17315902,-0.40057033,-0.57400876,0.3279995,0.25278002,-0.0046439585,-0.0034665545,-0.42578843,-0.08338138,0.2926783,-0.3531212,-0.3192983,-0.38823375,0.3084935,0.57581717,-0.32146925,-0.4956177,0.04737904,0.24951905,-0.24862902,-0.43365568,-0.038491275,-0.10829022,0.30432796,0.13745359,-0.34474528,-0.1017722,0.12897785,-0.32530835,0.17332926,0.24634714,-0.3188991,0.15173998,-0.26792696,-0.03710859,0.93661475,-0.17714325,-0.1886551,-0.6360249,-0.48023865,-0.87326556,-0.5804106,0.2893248,0.2572122,-0.07889876,-0.3687776,0.056411073,-0.09053046,-0.16284439,-0.12413833,-0.40312836,0.41151544,0.095059805,0.49370018,-0.27872363,-0.7398558,0.17724332,0.20026551,-0.058807336,-0.54892653,0.57225317,-0.056961436,0.7678428,0.0770229,-0.0099396445,0.08047212,-0.25765976,0.06181907,-0.33295745,-0.14376752,-0.6214222,0.086626105,710 -268,0.2897386,-0.0653636,-0.54967886,-0.25778183,-0.40396816,0.013098713,-0.19694011,0.34753057,0.22445768,-0.23619352,-0.11045224,0.07190839,0.06276489,0.38980496,-0.20935099,-0.8052607,0.082830645,0.072436616,-0.5653654,0.46320355,-0.47947294,0.3131791,-0.008450489,0.4304869,0.22326075,0.21500164,0.20691933,0.15393299,-0.08001904,-0.043919053,-0.15558296,0.48023728,-0.50485367,0.083000325,-0.007978062,-0.39869696,-0.1757149,-0.31929424,-0.34383425,-0.7046009,0.43602467,-0.81158423,0.52750033,-0.12079469,-0.3205334,-0.08883139,0.18447603,0.15800427,-0.32733217,0.07998301,0.13808122,-0.30682638,-0.09550492,-0.1220111,-0.21896298,-0.42686376,-0.63600945,-0.08343957,-0.5665807,-0.14742592,-0.2800012,0.21307555,-0.4037848,0.036817018,-0.17116645,0.63217056,-0.43435898,0.09824646,0.16066526,-0.27168533,-0.10228803,-0.59647995,-0.23696381,-0.12083681,0.16462107,0.089339875,-0.24038784,0.3121069,0.43826592,0.46203312,-0.025575329,-0.26638553,-0.42416576,-0.06918519,0.13892923,0.42538872,-0.08825013,-0.45577902,-0.15933374,-0.049228933,0.22969583,0.1861779,0.036584813,-0.3306406,-0.033592995,0.051463228,-0.17807145,0.4174821,0.50431746,-0.3584257,-0.06592277,0.31454846,0.14448422,0.22263649,-0.37763363,0.22139683,-0.07047705,-0.5846532,-0.21525456,-0.09027299,-0.12730871,0.65013015,-0.20268965,0.249736,0.691708,0.07996753,0.024007542,-0.18757467,-0.09022756,0.056446988,-0.28185967,-0.20377465,0.1374052,-0.2926493,0.26173845,-0.062294208,0.65568894,0.14628497,-0.7620009,0.46203777,-0.47636002,0.099197164,-0.14817214,0.513959,0.87386996,0.27470347,0.34516498,0.9056622,-0.38140506,-0.019765079,0.17898388,-0.44700432,0.09100677,-0.09119916,0.08360731,-0.4612787,0.10865496,0.014956625,0.015959,0.22417802,0.5867621,-0.30274722,-0.09844808,0.05208103,0.7666557,-0.33265242,-0.13233691,0.94314575,1.0323488,1.0641057,0.1283441,1.1751659,0.26391765,-0.07788725,-0.027911352,-0.16959292,-0.5882334,0.1416653,0.3490856,0.19202614,0.24881032,0.16420145,0.04554647,0.55806834,-0.2540409,-0.11623521,-0.096415475,0.20434093,0.16105442,-0.15012044,-0.47623655,-0.29578528,0.16019152,0.17852671,-0.04354047,0.21654695,-0.08296106,0.5669591,0.0012631745,1.2130847,0.13561843,-0.0112983985,0.11819215,0.35193202,0.31519106,-0.15598541,-0.087375514,0.16564165,0.4085204,-0.011057655,-0.58537745,0.059946127,-0.3552496,-0.5267847,-0.12523317,-0.380866,-0.17300081,-0.012506338,-0.6042769,-0.2129086,0.1700396,-0.28637755,0.51581854,-2.5979736,-0.1568395,-0.26460177,0.26630288,-0.048077844,-0.31186196,-0.26208606,-0.44967762,0.2903394,0.4210593,0.3709134,-0.6344248,0.3579745,0.30227214,-0.3269016,0.023463488,-0.64112014,-0.019081729,-0.086558685,0.38384208,0.014193598,-0.11224453,0.056811936,0.31255102,0.8066134,0.04194794,0.053609755,0.17666534,0.4011664,-0.25497988,0.60283214,-0.044156563,0.59208876,-0.16146396,-0.24397373,0.32599458,-0.44299355,0.1924931,-0.075417005,0.22502504,0.539895,-0.4460763,-1.0084684,-0.5068258,-0.25752822,1.1448784,-0.32481652,-0.4892594,0.3864303,-0.26110238,-0.35697454,-0.017581582,0.7015046,-0.24510354,-0.028250601,-0.71292096,0.02671923,-0.17733675,0.081181064,-0.13518336,0.06639557,-0.36410508,0.81564623,-0.11607455,0.46907482,0.32554963,0.1798907,-0.21002518,-0.40624803,0.11390838,0.61553943,0.48798034,0.035001025,-0.24947108,-0.10593479,-0.04106764,-0.27092502,0.118644826,0.78436667,0.5560085,-0.013544449,0.11142946,0.23234764,-0.059159495,-0.01689709,-0.17838846,-0.2609621,-0.055803392,0.12302125,0.5708927,0.6921869,-0.20234394,0.35288522,-0.06614355,0.37269047,-0.088185444,-0.62985843,0.39877102,1.0163645,-0.11232189,-0.35009727,0.534923,0.35659775,-0.37296686,0.30553743,-0.4941832,-0.2354365,0.5226953,-0.11762035,-0.45812744,0.15289481,-0.43925196,0.05066753,-0.82313824,0.33534202,-0.012561751,-0.59512407,-0.6007176,-0.4399862,-3.8608592,0.10150755,-0.2770025,-0.08555014,-0.19545715,-0.3569852,0.3399099,-0.6634296,-0.70006317,0.108250536,0.10642416,0.43550044,-0.15564696,0.07856002,-0.25322327,-0.22319008,-0.104737476,0.27357042,0.19240499,0.43784288,0.058784895,-0.30929363,0.047362726,-0.19387381,-0.6689642,-0.13223259,-0.47063676,-0.5672404,-0.080484085,-0.45575818,-0.29707673,0.7663378,-0.47164762,-0.009278384,-0.2740495,-0.028165009,-0.27667373,0.3328536,0.23026298,0.24238399,0.02250442,0.059647758,0.003700161,-0.29089886,0.16971566,-0.079089165,0.28754237,0.32209155,-0.05220167,0.18698241,0.58112276,0.6351767,-0.06458604,0.88619137,0.34586778,-0.08623656,0.23779544,-0.2718651,-0.33837318,-0.75666237,-0.39887196,-0.07036889,-0.50213104,-0.40570387,-0.21432592,-0.42715454,-0.78811365,0.42917755,-0.04480408,0.1280192,-0.099438936,0.22913337,0.34633687,-0.05643362,-0.020577295,0.06700679,-0.21402387,-0.534886,-0.43186495,-0.5836246,-0.6535275,-0.07725009,1.1526109,-0.10071612,-0.20244838,0.024514139,-0.4900299,0.054013718,0.12584296,0.24600464,0.20607004,0.32689103,-0.097403474,-0.7318233,0.4089815,-0.40415016,-0.052964304,-0.6754719,-0.0543164,0.5455472,-0.51145387,0.6864483,0.38275704,0.28357792,-0.020530695,-0.7548855,-0.35062358,0.17489369,-0.15922333,0.6003925,0.41082364,-0.6801397,0.58536667,0.11453178,-0.060508028,-0.5241709,0.48597828,-0.099839404,-0.10491757,0.11206242,0.36726868,0.019207733,-0.12756878,0.0032202562,0.25142297,-0.40561897,0.2724244,0.29983565,0.05426283,0.40812632,-0.05645915,-0.099351026,-0.61003524,-0.23857364,-0.5240139,-0.16435668,0.0066658426,-0.0135211265,0.307634,-0.050336376,-0.122304216,0.3587382,-0.29003558,0.16536382,-0.2782959,-0.2666486,0.22752933,0.59629184,0.35367012,-0.5303993,0.64873576,0.114875644,0.12978026,0.05244534,0.073032506,0.43398476,0.19070151,0.42345592,-0.10761595,-0.044424765,0.035144422,1.0112257,0.21876322,0.39576072,0.11008462,-0.24432391,0.25628197,0.11505675,0.16909051,-0.09480178,-0.30794188,-0.03763008,-0.19047277,0.25405172,0.44010168,0.13013035,0.31127134,-0.19847043,-0.15131623,0.24393772,0.24985774,0.059436195,-1.3092924,0.4715,0.17980017,0.8844213,0.45486307,0.11710019,-0.093825296,0.56711835,-0.23293659,0.04333271,0.34391662,0.11361725,-0.29195195,0.49779433,-0.59928954,0.49238098,-0.16617543,-0.018137034,-0.049502358,0.27252692,0.30234355,0.7299057,-0.10645377,0.06222037,0.17465569,-0.29629317,0.151496,-0.31181708,0.05407759,-0.45064184,-0.3032568,0.660389,0.63281983,0.2918604,-0.322198,-0.096317194,0.0066708815,-0.14124115,-0.02471133,-0.11619703,-0.0244807,-0.19970234,-0.71188384,-0.32800108,0.5323339,-0.14427319,0.116230965,0.14325333,-0.34794855,0.27845272,0.017912006,-0.13042563,-0.04690129,-0.5890653,-4.4938923e-05,-0.3416727,-0.6797621,0.3947479,-0.38258466,0.28582546,0.22073095,-0.022224482,-0.374548,0.13859306,0.06224273,0.8547576,-0.06941126,0.019635221,-0.27330506,-0.014842844,0.30653107,-0.27982613,-0.19099051,-0.3476316,0.2177495,-0.42447293,0.47001404,-0.33361468,-0.19050281,0.018603818,-0.089549445,0.07671353,0.4010768,-0.31596234,-0.16134503,0.14492317,0.093743995,-0.20832644,-0.1414601,-0.30994895,0.39077312,-0.084594496,0.021882867,0.042260442,-0.11567351,-0.18810008,0.37244514,-0.07658618,0.34171587,0.45711097,0.013676023,-0.2462823,-0.11136018,0.0392578,0.6664131,0.093442775,-0.15260759,-0.39004454,-0.50171626,-0.3596603,0.33508268,-0.094378114,0.17120765,0.15333547,-0.4834397,0.54512703,0.08171678,1.1194483,0.0027727922,-0.41128302,0.11880549,0.50860703,0.056456804,0.12893194,-0.092045434,0.80014557,0.48043364,-0.23996204,-0.18650159,-0.36710814,0.03431317,0.19002037,-0.21740466,-0.2346818,-0.08773976,-0.70606554,-0.015758378,0.010289001,0.14585224,0.1185557,-0.03778388,-0.017237466,0.036660895,0.15097809,0.38700932,-0.45378983,0.036296036,0.36365932,0.19310719,-0.026949601,0.18217334,-0.37111273,0.34081313,-0.48592153,0.09456203,-0.6380366,0.27865633,-0.023902185,-0.25263652,0.23001696,-0.052615087,0.36726734,-0.25848493,-0.18079129,-0.31238016,0.65302366,0.10752421,0.16578348,0.60923386,-0.19349292,-0.022797693,0.21218435,0.61533844,1.3386607,-0.13072087,0.13043483,0.2218323,-0.3374993,-0.40412286,0.17916107,-0.4327674,-0.016726399,-0.046843525,-0.2196986,-0.520138,0.21629225,0.1361194,0.019627212,0.14756654,-0.44306576,-0.34478325,0.3528391,-0.3665268,-0.21891592,-0.41249722,0.18332635,0.55845565,-0.406498,-0.25688335,0.020432424,0.34458444,-0.16223142,-0.54658926,0.23551607,-0.29999307,0.42014542,0.048590794,-0.4677696,-0.13935548,0.3177562,-0.49230105,0.19327576,0.32324824,-0.28428096,0.16281945,-0.19743136,-0.11188594,1.1492939,-0.09541233,0.2377834,-0.6511364,-0.57300854,-1.0542147,-0.145693,0.1471956,0.19217834,-0.023208933,-0.69174206,-0.09571821,-0.04189396,0.047092248,0.07195749,-0.4892763,0.4661784,0.08043828,0.49777123,-0.02969786,-0.81627476,-0.068846986,0.015154132,-0.16080777,-0.3169295,0.58343035,0.03823326,0.7192385,0.13802646,0.08868788,-0.0017478188,-0.47654328,0.33346215,-0.281307,-0.23741843,-0.6799423,0.08802663,713 -269,0.40683353,-0.21876904,-0.46031412,0.01887957,-0.24530634,-0.0802124,-0.06437411,0.56107616,0.18276642,-0.52993554,-0.16747269,-0.22498778,-0.067110315,-0.052514687,-0.11298546,-0.12918091,-0.2501574,0.1921174,-0.58499223,0.5322774,-0.18578896,0.20597742,-0.12201762,0.4689408,0.25934747,0.3134685,-0.2732447,0.023822824,-0.06937267,-0.07692011,0.0076141558,0.2772489,-0.4005303,0.08261912,-0.30106992,-0.19404976,-0.012867729,-0.43475306,-0.52217805,-0.7779156,0.48982716,-0.9399992,0.501103,-0.0852774,-0.2978703,0.23893915,0.030280761,0.4566965,-0.08830762,-0.2098556,0.3061191,0.12588435,0.046819642,-0.28240842,-0.14503789,-0.15694325,-0.32535738,-0.030460278,-0.25520137,-0.13477196,-0.30926892,0.17384627,-0.25687084,0.0067334813,-0.2232149,0.47435218,-0.45812595,0.21675797,0.13698117,0.09656208,0.32172123,-0.7122032,0.0005766471,-0.12523407,0.29524553,-0.12797515,-0.18633057,0.38534412,0.130551,0.33707312,-0.072525196,-0.14410262,-0.27077523,-0.094950266,0.04735701,0.3711836,-0.061435726,-0.3540952,-0.036131073,0.1939644,0.20888847,0.22954768,0.23946737,-0.28499234,-0.1325146,-0.035295416,-0.0909976,0.33166772,0.4917617,-0.04266643,-0.2646032,0.394056,0.75549775,0.24716376,-0.1218503,0.01858058,-0.045084,-0.33564594,-0.11950113,0.11964499,-0.29430234,0.41209108,-0.0950201,0.22493608,0.6378671,-0.06704928,-0.10470011,-0.030508567,0.20107795,-0.051263634,-0.43365324,-0.33883685,0.26073587,-0.39088967,0.27612683,-0.15262581,0.52903193,-0.13414222,-0.6407103,0.32276532,-0.48925045,0.11233031,-0.016447019,0.48929033,0.6509815,0.51059747,0.38782233,0.74646896,-0.41190988,0.077119984,-0.093359515,-0.28444746,0.0050126235,-0.15898865,0.06828157,-0.5170136,0.044992615,-0.12466971,-0.24465153,-0.022247698,0.2522844,-0.551203,-0.03845117,0.0994898,0.7855672,-0.2622159,0.01757377,0.8226786,0.95105845,0.8238395,0.015022679,1.0311301,0.19429211,-0.2634835,0.36156285,-0.3180127,-0.8241623,0.28334656,0.32341364,-0.0018006325,0.078924544,0.18974194,0.06843278,0.3385908,-0.47415236,0.07560286,-0.368323,0.24407788,0.16149427,-0.13492846,-0.33954278,-0.16359068,-0.13830867,0.01231703,0.100927226,0.04300935,-0.11791515,0.26288977,0.09606108,1.7806938,0.029613772,-0.009064915,0.18367685,0.51706845,0.16366476,-0.14135237,-0.014642565,0.48076043,0.2666644,0.11576626,-0.46992207,0.16330501,-0.30456728,-0.46376994,-0.018129226,-0.3032838,-0.09825562,-0.08940366,-0.3531723,-0.28682888,-0.28134224,-0.23806559,0.38756993,-2.8093731,-0.14170137,-0.10717404,0.4080951,-0.25977522,-0.41432795,0.05078224,-0.4082963,0.45838925,0.2843303,0.47594425,-0.6454944,0.36549366,0.39977896,-0.67230314,-0.013915825,-0.49519315,-0.009391392,0.04295245,0.2438546,-0.035673864,-0.035285246,0.030678485,-0.099320166,0.2776372,-0.012365224,0.060356133,0.54434496,0.44187894,-0.1425612,0.47916096,-0.008703496,0.30293626,-0.1822302,-0.14705056,0.2670932,-0.38056928,0.20703994,-0.0031997522,0.10522234,0.64765644,-0.5112648,-0.5890762,-0.6329062,-0.035573922,1.035497,-0.14976192,-0.4898313,0.17318605,-0.7444255,-0.34085232,-0.19600677,0.38864392,-0.05764105,-0.19818987,-0.82197994,-0.093277946,-0.2348515,0.1964044,0.0100915,-0.11706074,-0.31116915,0.8821962,-0.030349966,0.44189873,0.31458697,0.042496584,-0.4179959,-0.46694252,0.08792843,0.4839281,0.40772742,0.09364059,-0.12526232,-0.12867992,-0.32186285,-0.13279326,0.13447906,0.5799904,0.52201134,-0.019466126,0.10880509,0.26781884,-0.06491937,-0.19739696,-0.29102296,-0.15626948,-0.26997548,-0.018540334,0.47610456,0.6215461,-0.22799015,0.54095775,-0.08192643,0.18723239,-0.1244623,-0.45066687,0.2996535,1.1086327,-0.1447875,-0.37645453,0.51686776,0.40326974,-0.20619266,0.17848586,-0.46021718,-0.12904763,0.3353211,-0.1898992,-0.58405095,0.18574366,-0.25376466,0.14492589,-0.7850087,0.1403547,-0.23342124,-0.5395828,-0.7350386,-0.16957888,-1.482545,0.16873704,-0.28581184,-0.2869356,-0.1915265,-0.31284454,-0.06903374,-0.4427472,-0.6189736,0.254053,0.05596728,0.61836964,-0.025695043,0.010517282,-0.09495649,-0.29369724,-0.32472864,0.022174882,0.17812586,0.37524593,-0.13418564,-0.45228285,-0.25384453,0.051662307,-0.4377241,-0.007926324,-0.59087765,-0.35656685,-0.25105408,-0.65117735,-0.24776907,0.58735025,-0.15454385,0.15336958,-0.30888444,-0.11563141,-0.027640974,0.3299738,0.2202246,0.13118556,0.02183506,-0.13170034,0.1111418,-0.31356984,0.31772676,0.08842351,0.23669662,0.26875427,-0.18976903,0.21177301,0.25529268,0.76731414,-0.122732684,0.7551697,0.39710706,-0.27117908,0.28371415,-0.1936628,-0.23543753,-0.63907814,-0.24621993,0.059340835,-0.34159496,-0.44031155,-0.041691344,-0.68536955,-0.6475407,0.38887766,0.0448092,0.27558622,0.18121609,0.32260698,0.7661442,-0.10283776,-0.0037210325,-0.0035274108,-0.13887677,-0.57976663,-0.35036284,-0.42922026,-0.45806614,0.11636121,1.0361266,-0.11527252,0.06619308,0.12864618,-0.31130245,0.10903134,0.22518735,-0.21204045,0.13830519,0.57910836,-0.2737543,-0.42164835,0.36524904,0.09238558,-0.2847047,-0.5335481,0.39654955,0.5545319,-0.6071187,0.61509895,0.07201643,0.019730715,-0.4370171,-0.41365287,-0.14787927,-0.09817489,-0.31722233,0.43413195,0.25913632,-0.5773224,0.30480438,0.45541638,-0.014856775,-0.7853854,0.48856,-0.08115433,-0.4988923,-0.13691886,0.31370524,0.028409036,-0.008195448,-0.23529972,0.16607441,-0.23562703,0.16768536,0.13701601,-0.21146026,0.17669459,-0.27028614,-0.089727364,-0.7226635,0.18192074,-0.44031468,-0.34266013,0.42484748,0.079213865,0.08370866,0.18382019,0.23815903,0.45622545,-0.20285602,0.09950977,-0.11896763,-0.1608248,0.1450477,0.28417274,0.3463178,-0.53499234,0.5400413,0.0128301345,-0.060576905,-0.056651544,0.17261654,0.38844368,0.013330706,0.36601976,0.18898787,-0.13464877,0.19217806,0.7286929,0.18331404,0.48528078,0.0213338,-0.033080317,0.15704575,0.016829658,0.28365996,-0.114454225,-0.5498379,0.23342839,-0.17014737,0.10522232,0.24626549,0.08161866,0.16085725,-0.07673914,-0.32852963,-0.084079675,0.31290898,0.04586621,-1.1694521,0.30207545,0.272972,0.95390284,0.3133845,-0.0863565,-0.08040685,0.7079653,-0.077993155,0.12397087,0.32124513,-0.032838725,-0.45402193,0.45644963,-0.7020659,0.35254017,0.08986898,-0.06497223,-0.034937665,0.07794914,0.34849727,0.5052044,-0.27386627,-0.087921314,-0.12166026,-0.2904734,0.23807222,-0.19928344,0.11851339,-0.51205224,-0.34162328,0.55027884,0.5155775,0.41066387,-0.123663925,0.12974426,0.03896885,-0.21623173,0.15154773,0.21627182,0.18307592,0.012768948,-0.58242303,-0.25196514,0.37848446,-0.06900661,0.14515252,0.07806565,-0.104203366,0.24335076,0.035743974,0.0029687562,-0.03911257,-0.7134933,0.1528528,-0.17288622,-0.3356558,0.3416522,0.035694797,0.18828735,0.24312311,0.06477292,-0.22644693,0.3904695,-0.0065439385,0.88151234,-0.099970154,-0.06613713,-0.36540762,0.26605278,0.061707206,-0.1858794,0.043668643,-0.12502654,0.06657026,-0.4959955,0.49108014,0.17193763,-0.43175468,0.09922438,-0.17095374,0.019492196,0.45701212,-0.16489138,-0.16792485,-0.24433514,-0.2096455,-0.30503413,-0.34213087,-0.006874108,0.33013093,0.29659727,0.14185467,-0.13163915,-0.01268009,-0.2308435,0.69845015,0.10152168,0.34207198,0.26997578,0.02641371,-0.450906,-0.10335418,0.22653048,0.57985485,-0.12167219,-0.08976105,-0.20200808,-0.39385504,-0.38861874,0.39286044,0.0384381,0.47977033,0.0883057,-0.16172868,0.87619036,-0.0015497326,1.090993,0.036919508,-0.26208875,0.25629777,0.51664937,0.01478939,-0.094886295,-0.28938296,0.7804963,0.5946128,-0.01979425,-0.056077283,-0.23582178,0.04029831,0.20884076,-0.12210285,0.06577063,-0.032986302,-0.58260626,-0.28142515,0.18981145,0.24327537,0.11973829,-0.103546776,0.009929753,0.2665648,-0.2714939,0.27332237,-0.26122397,-0.3088738,0.22663115,0.010591591,0.04342859,-0.0010998845,-0.51449007,0.36850756,-0.43922055,0.1633452,-0.23892762,0.0954425,-0.25475705,-0.30946547,0.15883642,-0.15853062,0.31463572,-0.38142967,-0.2866424,-0.341719,0.4084627,0.18834448,0.16160752,0.43530267,-0.22380687,0.117025055,0.0952914,0.37846997,0.7320855,-0.046621453,0.033835538,0.13974711,-0.40725696,-0.526634,0.421279,-0.1680611,0.20632549,0.106253624,0.0101107955,-0.39705458,0.23051174,0.19490932,0.0081886845,-0.11677338,-0.68018913,-0.11881779,0.4548711,-0.2494809,-0.008802546,-0.24598742,0.08391085,0.54192287,-0.043554712,-0.38765594,0.06193952,0.005915753,-0.18578751,-0.4185039,-0.10177796,-0.5398484,0.26664704,-0.13291188,-0.3035027,-0.12994649,0.07450678,-0.3933553,0.15530099,0.037620448,-0.32248676,0.065469585,-0.3058589,-0.103162654,0.8778469,-0.16803287,0.05661963,-0.39926183,-0.3344803,-0.7426358,-0.14747307,0.19009273,0.12021902,0.0740575,-0.80021435,-0.043235183,-0.20409489,-0.18037136,-0.11815181,-0.32873815,0.42656654,0.2073954,0.4065243,-0.16332476,-0.8908859,0.16456856,0.11133846,-0.095191754,-0.561661,0.56057805,0.042485736,0.6056234,0.072599836,0.2535928,0.12327259,-0.53648263,-0.12828715,-0.19300492,-0.19289757,-0.6111241,-0.065272555,715 -270,0.4849853,-0.25346002,-0.35963935,-0.19191371,-0.17371015,-0.11548181,-0.17653094,0.46490845,0.2428511,-0.5564327,-0.058887053,-0.17447251,0.032535903,0.20658894,-0.09040096,-0.47768152,-0.13413645,0.05064199,-0.25611442,0.5077241,-0.52524394,0.2574869,0.118051164,0.3414893,0.108565524,0.20547454,0.01078138,-0.1882691,-0.17592843,-0.4309799,0.016727606,0.3317868,-0.74236876,0.11500933,-0.23325856,-0.411688,0.00698572,-0.6731871,-0.44401264,-0.6778781,0.1255236,-0.8793353,0.6222032,0.24536748,-0.273685,0.3518791,-0.08331337,0.23242909,-0.098077744,0.26056778,0.30151463,-0.24287432,-0.026667984,-0.22611602,-0.17437264,-0.25735146,-0.68781847,0.021633275,-0.40403742,-0.14137405,-0.21615823,0.17274718,-0.2758458,-0.12384868,-0.13191563,0.5110462,-0.5157913,-0.05294307,0.067368336,-0.104596384,0.54649895,-0.47691256,-0.20870362,-0.18844722,0.07458762,-0.3443524,-0.2890815,0.20642015,0.34157532,0.55571216,-0.103846215,-0.21817899,-0.2666392,0.010601035,0.063702315,0.5924067,-0.33177227,-0.5198823,-0.04860949,0.0066105765,0.13822389,0.30532712,-0.0022833527,-0.3615256,-0.109367274,0.047148418,-0.2762827,0.45086688,0.61504614,-0.297622,-0.2542683,0.33084953,0.3746573,0.1925575,-0.065042995,0.087656066,0.045384504,-0.53058815,-0.09094412,0.13037233,-0.23778364,0.4470135,-0.14307265,0.14352491,0.66955745,-0.2516831,0.123892024,0.048548352,0.04469355,0.11516073,-0.32352048,-0.42192233,0.38934305,-0.449999,0.29415414,-0.3368905,0.795374,0.05319444,-0.79235953,0.3596737,-0.6028265,0.13929805,-0.111042164,0.5232414,0.649778,0.44680455,0.40266857,0.52683836,-0.45893222,0.013663213,-0.09266402,-0.2990292,0.031455103,-0.124111705,0.021283384,-0.4369174,-0.22083572,-0.03268981,-0.19195679,0.056109484,0.44321314,-0.5553175,0.03557188,0.20953862,0.7386186,-0.28217372,-0.059659854,0.74532104,1.0804552,1.1899608,0.12674268,1.1169887,0.29224974,-0.22982709,0.087778546,-0.26538146,-0.60577506,0.27368692,0.43148127,-0.40033564,0.24817796,0.12792368,-0.0932077,0.34017155,-0.46770313,-0.02589001,-0.18749589,0.119388424,0.013102754,-0.17019258,-0.56238216,-0.23435529,-0.17990912,0.14811435,-0.13681498,0.18421237,-0.34682757,0.2214256,0.07827628,1.3942839,-0.14890122,0.03773178,0.11292145,0.35608858,0.14390446,-0.15880993,0.03829132,0.26543295,0.4143063,0.15004882,-0.58288383,-0.00092918077,-0.09212642,-0.47893858,-0.14288963,-0.21366678,0.06570628,-0.015562396,-0.47992638,-0.14068098,-0.073467456,-0.38763008,0.42559782,-2.5936656,-0.04933991,0.02521509,0.2953212,-0.24185963,-0.44525445,-0.058541544,-0.4465391,0.45211563,0.32089552,0.44609526,-0.78451836,0.3159369,0.5889285,-0.50310475,-0.046709932,-0.6861763,-0.17822622,-0.20149708,0.16919567,0.08801613,-0.082780026,0.025906188,0.036596093,0.60107076,-0.022225944,0.092975564,0.09671483,0.32895386,0.024577921,0.5125691,-0.069424786,0.33071375,-0.09587756,-0.21321939,0.44853547,-0.3276903,0.026568595,-0.21622747,0.08860925,0.36702028,-0.46013445,-0.8818991,-0.8347397,-0.4527399,1.0294667,-0.072769925,-0.46364465,0.24483916,-0.17214528,-0.40021783,-0.06375999,0.48856765,-0.2112031,0.0027968765,-0.8533704,-0.03719648,-0.13005562,0.1451176,0.04202688,0.15275975,-0.5096819,0.66662675,-0.066502,0.25384453,0.4416728,0.17440042,-0.18588361,-0.52444595,-0.01042498,1.1887963,0.3825979,0.2458383,-0.29980353,-0.1392011,-0.15225098,0.010360623,0.043211274,0.5279869,0.8289893,-0.16812934,0.08064338,0.26386064,0.0030529697,-0.029102925,-0.21008743,-0.27887732,-0.01921969,-0.007801843,0.6561508,0.5491206,-0.12715818,0.49627194,-0.08551042,0.32996368,-0.06766896,-0.37704608,0.3680071,1.244323,0.028068017,-0.17431921,0.74184906,0.43019715,-0.21118206,0.45530292,-0.5641889,-0.2798738,0.37958017,-0.22556283,-0.5057795,0.2874142,-0.36482173,0.1764501,-0.792709,0.39874125,-0.2198793,-0.49571148,-0.6074434,-0.17583132,-2.9688542,0.16262229,-0.24858409,-0.13684921,-0.024122901,-0.11645509,0.38964698,-0.537911,-0.4965595,0.1861368,0.10403991,0.6050933,-0.1257815,0.11637105,-0.21487838,-0.32674015,-0.34341347,0.28381565,0.25905767,0.25645056,0.07509109,-0.3557654,0.002196479,-0.087278135,-0.45881227,0.035749402,-0.5381641,-0.55172545,-0.11574774,-0.5858495,-0.39659366,0.6432941,-0.30632892,0.037777904,-0.06903954,-0.055000346,-0.09765038,0.31775042,0.18263982,0.23950952,-0.14333548,0.063051835,0.025933178,-0.19926138,0.406356,0.14167179,0.12517871,0.2660912,-0.20557146,0.15023294,0.40164343,0.5534563,-0.13251804,0.9279039,0.63442266,-0.20393406,0.22562477,-0.36293834,-0.20708741,-0.71538085,-0.39311722,-0.07506867,-0.44824114,-0.43766505,-0.046652492,-0.31686336,-0.7728332,0.5640703,-0.20098588,0.09382634,0.037209574,0.26578134,0.4610942,-0.17782217,-0.12532547,-0.06732093,-0.023897976,-0.47524735,-0.30348274,-0.59377706,-0.3866997,-0.09119206,1.0325276,0.027126933,-0.015732052,0.09727053,-0.038595088,-0.13448673,0.032132458,-0.051637404,0.053409252,0.527248,0.12259051,-0.7764614,0.33719265,0.12381611,-0.26601467,-0.62834513,0.20610823,0.76594865,-0.7436642,0.58440465,0.3499342,0.12804689,-0.098493546,-0.6073831,-0.26764926,0.0044595064,-0.3046164,0.47803238,0.1771427,-0.73670715,0.48675606,0.40664583,-0.30573368,-0.64710784,0.46287218,0.013390208,-0.287032,0.048477344,0.3270846,0.008334466,0.045513462,0.02102882,0.43805584,-0.398358,0.38097614,0.17372346,-0.07075863,0.19564451,-0.20644751,-0.0495915,-0.80580163,0.13083147,-0.4129747,-0.4614604,0.1928115,0.082942866,0.043528054,0.37697217,0.04258313,0.4686907,-0.16859435,0.18313853,-0.18402365,-0.25128296,0.35661107,0.44882903,0.35799858,-0.23523615,0.6388442,0.03196133,-0.21178512,-0.27342588,0.012144718,0.43562952,-0.07987773,0.24039663,-0.093157485,-0.35190046,0.30335313,0.7368052,0.20774263,0.51269084,0.028938023,0.016622094,0.32889426,0.124024816,0.1257977,-0.033257585,-0.55391693,-0.058056895,-0.21855173,0.08888449,0.43926907,0.03514215,0.25482285,-0.23293622,-0.24207889,0.06516462,0.31658542,0.08019268,-1.0949038,0.2513415,0.075330265,0.7562923,0.69606835,0.03717316,0.08836532,0.54743034,-0.21539411,0.0014911215,0.39109808,0.04908436,-0.48043993,0.54414976,-0.62039924,0.33762792,-0.123397924,0.057675235,-0.062501624,-0.18408702,0.49163282,0.7348454,-0.20484467,0.0834875,-0.10614346,-0.20140058,0.09721597,-0.38616282,0.16412023,-0.49781975,-0.29932186,0.86181986,0.47755915,0.4071525,-0.099485666,0.038981874,0.18902826,-0.17119846,0.12752678,0.13171582,-0.08861747,0.020820547,-0.6133592,-0.07063546,0.575605,-0.06206713,-0.03195803,0.022088906,-0.12597632,0.22544187,-0.16087487,-0.16217397,-0.051866803,-0.68501776,-0.15663789,-0.53313977,-0.30301097,0.41909426,-0.18814255,0.22106315,0.12319995,0.10982883,-0.13059987,0.2730662,0.45010024,0.73727816,0.09303641,-0.14564759,-0.2758445,0.29609698,0.16229476,-0.18826002,-0.29821724,-0.20307897,0.007256613,-0.77590746,0.4847642,-0.15954538,-0.34394008,0.07892931,-0.1262765,0.016296651,0.5546798,-0.11208933,-0.18867384,0.12076936,-0.19988003,-0.26473486,-0.1933664,-0.029476548,0.32138374,0.17371985,-0.14721805,-0.041245777,-0.16786472,-0.22122549,0.44248533,0.08379684,0.40661937,0.3734935,0.14050558,-0.29957336,-0.14437151,0.059516303,0.5440398,0.00781037,-0.11484166,-0.26441747,-0.45705798,-0.32079417,0.040691536,-0.09038119,0.43520927,0.043925628,-0.26442292,0.9326965,0.094724625,1.1821717,-0.009455553,-0.37608355,0.07118059,0.41594505,-0.038685106,-0.04403697,-0.4118695,1.0371146,0.4920475,-0.022829017,-0.17296009,-0.2966689,0.050497618,0.12814052,-0.12359267,-0.1689062,0.0037234703,-0.8195999,-0.24453881,0.26757306,0.35004833,0.06407262,-0.045060236,0.08097174,0.32491115,0.064303525,0.4274564,-0.30833352,-0.021797132,0.27927488,0.35688803,0.050212324,0.08235184,-0.33345643,0.30089724,-0.31563056,0.04890763,-0.29664353,0.031152206,-0.1847523,-0.20725875,0.28500387,0.04581774,0.3533706,-0.36047336,-0.31315696,-0.15136568,0.4782766,-0.13899316,0.15461239,0.53616995,-0.23039623,0.0982032,-0.07037655,0.48630422,1.3282875,-0.24656792,0.0757104,0.3922456,-0.4239226,-0.52288276,0.40679118,-0.19642277,0.060444474,0.12854654,-0.34785128,-0.37069127,0.12976772,0.066284545,-0.094712585,0.1686687,-0.5291265,-0.11428849,0.281634,-0.2866455,-0.17570609,-0.27174148,0.20668025,0.6561184,-0.31696087,-0.3900739,0.012735488,0.21419808,-0.31573963,-0.4476081,-0.0042028488,-0.348807,0.27796325,0.16342601,-0.31362662,0.03506795,0.054101583,-0.4428929,-0.013601263,0.2338596,-0.38124266,0.046898343,-0.3177529,-0.062069252,0.91130435,-0.1607268,0.090651825,-0.5363056,-0.531824,-0.95610875,-0.23604757,0.5039329,0.24688932,0.08788254,-0.4801311,0.018778384,-0.036356173,-0.09325927,-0.083189294,-0.3488086,0.44567534,0.265356,0.46472532,-0.21522021,-0.6534106,0.10712186,0.19426909,-0.1925966,-0.561259,0.5076681,0.1507526,0.83050215,0.09327011,0.077773355,0.25880387,-0.5080689,-0.012297982,-0.1289908,-0.25060144,-0.7761153,-0.024527617,722 -271,0.43240514,-0.30906746,-0.640646,-0.09567275,-0.30226168,-0.04289004,-0.25014547,0.53046507,0.18247941,-0.5226704,-0.14843203,-0.04297157,-0.20240913,0.32582194,-0.2114329,-0.80913854,0.06113704,0.2805866,-0.4213561,0.56178385,-0.30657375,0.4602032,0.14545886,0.3685705,0.19484869,0.29775086,0.16899967,-0.1185104,-0.25151005,-0.29512045,-0.091397114,0.17146799,-0.56713164,0.35001144,-0.20434865,-0.67551446,0.088483006,-0.47902718,-0.20501865,-0.7270306,0.23175809,-0.76167685,0.5502422,0.015472579,-0.2554016,0.008141572,0.054271538,0.43196157,-0.20067386,0.16642587,0.2267463,-0.14629586,-0.1880408,-0.2063407,-0.12044831,-0.2925385,-0.5993649,0.1594479,-0.37827128,-0.006695096,-0.143429,0.29618138,-0.29035485,0.14973873,-0.059663884,0.43667957,-0.43342015,-0.031089561,0.26557696,-0.22255264,0.09687687,-0.5720852,-0.111620925,-0.23002593,0.1701536,-0.18842815,-0.22925605,0.23265417,0.14033045,0.6692188,0.23107834,-0.24187095,-0.36281157,-0.102281846,-0.014983284,0.4430613,-0.31229898,-0.40720966,-0.36357805,0.094364956,0.45839584,-0.11045871,0.013307985,-0.3180169,0.048173357,-0.107596345,-0.117587596,0.30621433,0.56346947,-0.35464063,0.021467963,0.21625881,0.41326818,0.10888568,-0.032052927,0.065104336,0.02106705,-0.4192052,-0.18122582,-0.09278157,-0.23373348,0.5323953,-0.11224493,0.21940373,0.6530417,-0.118995205,-0.09014654,0.22332273,0.17670931,-0.050903298,-0.19146124,-0.3654796,0.37003025,-0.48447838,0.089520924,-0.21961696,0.8731879,0.29049042,-0.7721397,0.28924856,-0.5097311,0.12721433,-0.17465922,0.4803793,0.6140285,0.5928081,0.07109566,0.8545209,-0.42246768,0.15610486,-0.11645999,-0.2628226,-0.034865092,-0.10638247,-0.23927562,-0.4017363,0.16161035,-0.17834719,-0.07864542,0.1601771,0.4293467,-0.67700166,-0.04915809,0.10897023,0.87284845,-0.3360424,0.07258325,0.89238304,0.92049384,1.0001644,-0.07257504,1.2049007,0.26795736,-0.2555035,-0.031637833,-0.1979266,-0.70475197,0.36202246,0.46078774,-0.40501258,0.22666149,0.15884003,0.06647251,0.4821707,-0.61763877,-0.06053426,-0.35736427,0.16078186,-0.042476363,-0.14535874,-0.4923779,-0.12889244,0.13026185,0.027907355,0.07657048,0.29990783,-0.20087688,0.5366239,0.0054246862,1.4732891,-0.1532375,0.04898896,0.13510609,0.2599751,0.23866244,-0.012450549,-0.05394078,-0.058658697,0.23975572,-0.03966352,-0.50240535,-0.08762984,-0.34168097,-0.51779306,-0.30325028,-0.015439403,-0.06569704,-0.046971507,-0.48215103,-0.46447563,-0.053254806,-0.16496821,0.42487285,-2.1716635,-0.3833119,-0.18600222,0.38113114,-0.36083698,-0.31989688,-0.27206472,-0.4626512,0.5066278,0.27511245,0.60714656,-0.59976614,0.29409292,0.26736724,-0.5261499,-0.09007533,-0.4727397,0.008297976,-0.035819635,0.23723647,0.047599528,-0.4250916,-0.13719943,-0.15854543,0.57094324,-0.23254162,0.017651059,0.30206993,0.28915754,-0.023607709,0.3018783,-0.0023105005,0.6462804,-0.56568813,-0.2650635,0.4597591,-0.35593513,0.15842031,-0.036816288,0.14598781,0.42920294,-0.68286884,-0.8504115,-0.74556375,-0.14817868,1.0640937,0.051832195,-0.45632982,0.120224856,-0.049718626,-0.23772793,0.19383578,0.3308335,-0.22516109,-0.061272956,-0.9170476,0.024250774,-0.030192323,0.24411485,0.0042082765,0.012183747,-0.44976565,0.6960889,-0.110881135,0.38594133,0.5005758,0.30520794,-0.13696414,-0.5561991,0.13418517,1.1885295,0.6181078,0.2290143,-0.25860295,-0.11372416,-0.2993571,-0.18299729,0.060714837,0.45871624,0.8293603,-0.123396,0.030412946,0.40229332,0.064492434,0.0060444474,-0.069848746,-0.39021003,-0.16442534,0.17748347,0.620658,0.6298167,-0.024500433,0.29798788,-0.13320766,0.5331442,-0.0077081365,-0.540871,0.65999377,1.0270302,-0.20637982,-0.41921955,0.627856,0.34032622,-0.23023602,0.5175837,-0.6619064,-0.5372369,0.3661628,-0.12799221,-0.39761102,0.14398018,-0.29542777,0.34327903,-1.0843118,0.44180056,-0.34667656,-0.37790042,-0.71961623,-0.2951872,-2.5422018,0.09494304,-0.29456344,0.10534782,-0.09248285,-0.08700214,0.18392138,-0.6271826,-0.65834737,0.05449309,0.104517914,0.7102602,-0.008852345,0.3077011,0.019289367,-0.34298486,-0.2830825,0.3057238,0.36863706,0.12932499,0.028036261,-0.5287935,-0.20185119,-0.2969213,-0.44017366,0.033931408,-0.77679086,-0.42191285,-0.1631249,-0.7797129,-0.26249757,0.6976202,-0.45015696,0.10313532,-0.14415649,-2.1278859e-06,-0.19269317,0.22153114,-0.0036388675,0.042257715,0.24862213,-0.19811319,0.13850234,-0.30811718,0.2581615,0.14004634,0.31797284,0.35912514,-0.26550415,0.343297,0.5580307,0.7612855,-0.10150218,0.81971157,0.7315578,-0.12320913,0.31327853,-0.37310055,-0.4720265,-0.60254353,-0.34769502,-0.016866613,-0.53635603,-0.32886708,0.22534631,-0.47262347,-1.053355,0.68724304,0.027895192,-0.11412796,-0.070418954,0.32076958,0.56073016,-0.27068362,-0.14873353,-0.0012240649,-0.14924732,-0.2830132,-0.28988126,-0.64319736,-0.545189,-0.045225818,1.3592814,-0.061921302,0.23778318,0.21475458,-0.06107717,0.17842343,0.047875836,-0.060545206,0.094277844,0.55673134,0.042271353,-0.7347954,0.28316483,-0.14535864,-0.14081812,-0.44631153,0.19409579,0.57139,-0.7509356,0.2774839,0.40790874,0.11015748,0.15128212,-0.42476752,0.09389147,-0.06171054,-0.20681377,0.45277247,0.2200275,-0.4199456,0.57358795,0.41549957,-0.26215547,-0.9100397,0.20047401,0.06669596,-0.23973995,-0.005625717,0.33866748,0.11116378,-0.17144985,-0.22332166,0.22972725,-0.39159602,0.3263652,0.14253363,-0.23810202,0.38246924,-0.4358398,-0.3466902,-0.90852875,0.08170926,-0.6318611,-0.41951227,0.14499661,0.12686032,-0.025693337,0.11015132,0.18613917,0.5701862,-0.4379701,0.062241707,-0.29342413,-0.31716698,0.30331284,0.44072926,0.28149623,-0.4596052,0.5558339,0.052639615,-0.01874618,-0.19126673,-0.014419456,0.5421639,-0.0737971,0.31737646,0.21262246,-0.038883287,0.14456859,0.69452,0.05089799,0.30137077,0.07686964,-0.23128945,0.08901063,0.15517603,0.04767711,0.04550423,-0.4841331,0.063039206,-0.088769324,0.0089671295,0.56383055,0.34411776,0.50186926,-0.14373611,-0.44237605,0.11585913,0.015702484,-0.045123745,-1.4730792,0.37077042,0.056180183,0.7649351,0.4979789,0.16796707,0.11980198,0.54350644,-0.19254738,0.17011985,0.2922828,-0.2301163,-0.26355407,0.3372265,-0.5371088,0.37477753,0.009226129,0.1327921,0.10815053,-0.03990734,0.5495706,0.6839319,0.008670315,0.16431211,-0.047651015,-0.30595157,0.15312307,-0.31613302,0.13364492,-0.47598383,-0.23451896,0.78668994,0.3278775,0.24650103,-0.21004918,0.083107516,0.24446082,-0.05409598,0.2508708,-0.03883846,0.16668017,-0.08042336,-0.32719746,-0.23496395,0.59124094,0.19697447,0.1446865,0.0138786,-0.26396307,0.29853874,-0.021620654,-0.007932635,-0.17228287,-0.6059622,0.09218765,-0.604032,-0.22065058,0.32301658,0.026163416,0.17178164,0.13901626,0.14045355,-0.4521444,0.45698628,0.0916996,0.7647262,0.022334564,-0.32439592,-0.12409815,0.3563775,0.26926038,-0.32380468,-0.06558448,-0.25011146,0.16098426,-0.62724966,0.44107106,-0.1603408,-0.2390736,0.26488307,-0.05033427,-0.027468324,0.4200293,-0.24451528,-0.008128361,0.37561074,-0.013064167,-0.25823757,-0.3368313,-0.2879307,0.12430179,0.23632117,0.11161419,-0.23961653,-0.2575668,-0.24305132,0.59555364,-0.035816543,0.2576007,0.33304596,0.14321288,-0.53675723,-0.06968382,0.16684559,0.4736399,-0.05145121,-0.10889673,-0.3109554,-0.38604906,-0.38542423,0.119132906,-0.3128821,0.25485066,0.12081604,-0.30070046,0.9240407,0.25204745,1.4225043,-0.004262316,-0.3797614,0.04735491,0.545349,-0.16378213,0.004929924,-0.38636363,1.1427872,0.62915486,-0.23383333,-0.11720694,-0.4658706,-0.10404582,0.095931076,-0.30975035,-0.25921682,-0.14729008,-0.58225816,-0.5830485,0.29369444,0.36625624,0.009665994,-0.19802316,0.08360412,0.09898653,0.026541227,0.28314546,-0.5123508,-0.16388859,0.2903024,0.27761135,-0.008400933,0.20352969,-0.5469317,0.36794186,-0.60331786,-0.028362194,-0.26705396,0.21469969,-0.06484872,-0.37871805,0.22690175,-0.08292742,0.24143276,-0.50408137,-0.3710983,-0.23572485,0.49456814,0.105781935,0.18787293,0.8214043,-0.310295,0.030347431,-0.05235533,0.5129967,1.0071504,-0.2491017,0.13123904,0.39979133,-0.07041033,-0.5008868,0.323799,-0.40157306,-0.01774749,-0.083556384,-0.38516983,-0.69582856,0.2971452,0.14159232,-0.03660493,0.02806615,-0.71936214,-0.10607012,0.3635,-0.27021936,-0.21513265,-0.3122694,0.11269951,0.6415914,-0.24134466,-0.45920393,0.28137615,0.37384185,-0.1582367,-0.60931385,-0.2186545,-0.3428369,0.29513073,0.3687978,-0.34662044,-0.11699668,0.12807709,-0.4596537,-0.1216233,0.2915062,-0.28983152,-0.024711788,-0.29213095,0.032803316,0.8684495,-0.08887779,0.49729842,-0.5044582,-0.29472515,-0.9767895,-0.26473114,0.5730753,0.26867503,0.02398682,-0.8695137,-0.032590874,-0.20488782,-0.3330075,0.07171164,-0.41240826,0.4703542,0.1574224,0.6771546,-0.23989652,-0.7541341,0.23738617,0.06918396,-0.26065853,-0.35538933,0.4060025,0.16950485,0.9918764,0.10488712,-0.0915499,0.4655447,-0.7045081,-0.04958969,-0.2585672,-0.16627067,-0.5610052,0.03939351,730 -272,0.5197055,-0.048222788,-0.63859737,-0.2116534,-0.5356265,0.060522366,-0.4249972,0.0035241067,0.29352772,-0.05508206,-0.10322312,0.12535314,-0.036590338,0.29799047,-0.0029994666,-0.77107376,-0.19722739,0.028964804,-0.6886181,0.64439934,-0.5188924,0.4307975,0.099467635,0.34448674,0.2792594,0.6311134,0.3515856,-0.12154889,-0.11192934,-0.22271098,-0.019872995,0.072836444,-0.62244874,0.16043372,-0.1556,-0.29335383,0.09200131,-0.31231025,-0.2711323,-0.68904406,0.20814976,-0.84178984,0.4647564,-0.12046102,-0.0953054,-0.07381402,0.41901362,0.47592297,-0.22305125,0.20319465,0.39394343,-0.36625835,-0.06070818,-0.333526,-0.22030328,-0.5240821,-0.47527298,-0.18401319,-0.722265,-0.35442123,-0.18502258,0.36200097,-0.37447378,-0.15353672,-0.3818381,0.41530555,-0.53836197,0.086667866,0.31201527,-0.3555356,0.14420687,-0.5513845,0.04116733,-0.08484998,0.3555204,0.12209473,-0.048262615,0.40698496,0.23933354,0.23422639,0.44745746,-0.3033169,-0.31355584,-0.34911457,0.27073675,0.24076131,-0.1150069,-0.015620943,-0.3827351,-0.0020471097,0.44812715,0.505585,-0.028774943,-0.226128,0.18085681,-0.16670564,-0.13288471,0.6920818,0.4535113,-0.21787609,-0.34611192,0.28594026,0.6558274,0.39222622,-0.401353,0.120008774,-0.12921953,-0.3998575,-0.12943348,0.3255995,0.00032556852,0.31257057,-0.10993149,-0.13403533,0.92471445,-0.27617756,-0.08749445,-0.034985766,-0.061603125,-0.115937226,-0.3000864,-0.03351093,0.07307192,-0.5905624,0.01635615,-0.24342051,0.6383533,0.06263598,-0.61101073,0.22411436,-0.6016478,0.11731974,0.008813282,0.82084453,0.54256463,0.49586505,0.18831617,0.92308044,-0.16852917,0.30957517,-0.12289667,-0.49431515,0.042045757,-0.16865057,0.072232835,-0.42548788,0.052646384,-0.2475374,0.08033702,-0.033175975,0.44899923,-0.49296027,-0.06175488,0.21572909,0.79174006,-0.31639203,0.023092814,0.6286525,1.1471533,1.1542505,-0.04422262,1.1139598,0.25849405,-0.20119585,-0.18524928,-0.33457372,-0.36979848,0.2076176,0.28334746,-0.2807309,0.33726588,-0.09846368,0.059973013,0.13651837,-0.4072937,-0.1562309,0.0039052328,0.3029223,0.17066303,-0.09852286,-0.40955493,-0.037708394,0.13773571,-0.013770322,0.43566388,0.16858108,-0.35092562,0.4506751,0.1131849,1.1253276,-0.20049238,-0.06738283,0.12725013,0.638746,0.31575802,-0.019294595,0.18288618,0.5062369,0.3892214,-0.06656513,-0.63256866,0.14155029,-0.44184178,-0.5073049,-0.23014809,-0.41363898,-0.10621413,0.078542836,-0.19635348,-0.19811915,-0.026005093,-0.46377614,0.2643336,-2.6189835,-0.08657534,-0.14957665,0.20703273,-0.33580482,-0.10477509,-0.05175761,-0.5158518,0.17195651,0.2120734,0.45671967,-0.48505822,0.552983,0.64531773,-0.7521147,-0.09692513,-0.61402506,-0.011821127,-0.17465903,0.7217159,0.03862993,-0.12872326,-0.27397695,0.24005146,0.8639377,0.18065457,0.20666961,0.46303883,0.36479998,0.10334562,0.594504,0.21288897,0.5522962,-0.22677016,-0.27177918,0.61904925,-0.23403747,0.31689367,-0.328413,-0.017735517,0.56711954,-0.3027692,-0.9960547,-0.5957302,-0.41013852,1.055281,-0.3538875,-0.70056474,0.2410823,0.09044675,-0.11331234,0.2473228,0.48375815,-0.27900073,0.3276989,-0.62463874,0.061312053,-0.10019366,0.21459773,0.03513289,0.14923614,-0.41585165,0.76288474,0.012496587,0.52478707,0.045940813,0.36738962,-0.2308226,-0.4155835,0.24286468,0.84412855,0.33178502,-0.119637236,-0.18390583,-0.2866805,0.025005238,-0.2683616,0.020945247,0.60183376,0.7580307,-0.11307535,0.09704831,0.45333585,-0.21384366,-0.033028543,-0.2108221,-0.2591806,-0.052663542,0.15561226,0.4061436,0.6278728,0.04260601,0.3863144,-0.11916296,0.41991705,0.0021852255,-0.6515452,0.66279185,0.61580575,-0.14014481,-0.19042677,0.6123389,0.6065562,-0.5089439,0.6553604,-0.733357,-0.2832208,0.7267762,-0.14602557,-0.4602166,0.10172649,-0.33300024,0.12209036,-0.6143702,0.30004254,-0.37893286,-0.4974558,-0.27177793,-0.32289034,-2.8897283,0.08559479,-0.1980347,-0.09123495,-0.30045393,-0.052557696,0.2667955,-0.6313133,-0.616001,0.017272206,0.2993213,0.51719034,-0.10434196,0.16466689,-0.28038108,-0.26149917,-0.11076201,0.3235718,-0.007999166,0.32572752,-0.36578533,-0.4060982,-0.016889345,0.09813359,-0.53280085,-0.11901739,-0.5045383,-0.31293714,-0.080149375,-0.57956433,-0.11900857,0.59912956,-0.45999274,0.05219273,-0.19406714,0.19233288,-0.044648413,0.19326086,0.08472489,0.29889545,0.30041477,-0.05937099,0.14297791,-0.23633352,0.6019604,-0.067158416,0.4246186,0.100769825,0.0386495,0.13396902,0.32433647,0.4816204,-0.1441624,1.0647696,0.33826604,-0.13120484,0.16668911,-0.1885714,-0.29628438,-0.8514069,-0.3931887,-0.05473652,-0.455417,-0.59671366,-0.07550495,-0.25324312,-1.0296537,0.6841198,0.10288534,0.5551352,-0.19744284,0.18149446,0.39573872,-0.13496393,-0.05097469,-0.08144402,-0.29718688,-0.50324196,-0.34113282,-0.6856166,-0.45164663,-0.036997985,0.7504997,-0.41328368,-0.035341825,-0.050521135,-0.3625767,0.067474864,0.27914402,0.08371015,0.22739553,0.5088728,0.024158502,-0.57597286,0.3485479,-0.013299036,0.07349236,-0.4376512,0.14662844,0.76860434,-0.67029923,0.49968275,0.36939478,0.14859524,-0.057475507,-0.5692562,-0.07219445,-0.016915027,-0.110360734,0.64132816,0.12661682,-0.60294366,0.58114696,0.104695335,-0.46703592,-0.69914716,0.35046533,-0.15575078,-0.25788423,-0.023531241,0.458634,0.037863698,-0.19460097,-0.25566527,0.24082139,-0.3250247,0.2556957,0.21431394,-0.20513557,0.37407824,-0.058140516,-0.5968545,-0.7870682,0.10817765,-0.6127608,-0.44854486,0.3405476,-0.056578122,-0.1627572,0.26976788,0.036008656,0.49194005,-0.02551386,0.17014946,-0.10231642,-0.31985697,0.5353028,0.46733588,0.42216906,-0.41348046,0.63162196,0.24338083,-0.32613665,0.23979422,0.081663765,0.44640264,-0.16174367,0.46990782,-0.07431626,-0.025014384,0.31333226,0.53755,0.30534393,0.32600278,0.015377204,-0.30459067,0.40499738,-0.056404848,0.2267324,-0.2181152,-0.5605721,-0.06358621,-0.11061117,0.11172,0.5409747,0.32776088,0.46933395,0.18240485,-0.119780056,0.19432203,0.076758854,-0.22195244,-1.2252191,0.41312867,0.3389496,0.850548,0.45126137,0.15892978,-0.11323962,0.6875135,-0.3809442,0.0080279205,0.42432135,0.18924035,-0.37805635,0.61707395,-0.5491756,0.43363056,-0.1173257,-0.08059406,0.1982219,0.19193612,0.3805843,0.97124046,-0.18583088,0.036702927,-0.15544605,-0.17820935,0.054742895,-0.19281435,0.17655714,-0.31120437,-0.6224786,0.8425508,0.35023788,0.44437045,-0.17201549,-0.12987122,0.019160667,-0.19061197,0.33180568,-0.08578567,-0.039380398,0.014813975,-0.4504955,-0.23595819,0.44978312,-0.0040340167,0.1576562,-0.15477525,-0.16104126,0.057929516,-0.108437076,0.1759881,-0.049894776,-0.639093,-0.07322515,-0.020703603,-0.66265315,0.3874169,-0.2883395,0.15481445,0.19822434,-0.020919975,-0.27206448,0.26569402,0.14999726,0.71687794,0.07964425,-0.16760786,-0.29633716,-0.03444797,0.37680656,-0.26046714,0.04225093,-0.18878566,0.15739061,-0.6772057,0.5858518,-0.42315733,-0.5697022,0.14423576,-0.3757639,-0.23119283,0.58130336,-0.01934777,-0.3092818,0.2631625,-0.22051707,-0.49437344,-0.06696662,-0.30177394,0.14420289,0.15196122,-0.30720437,-0.2737567,-0.19491486,-0.022717113,0.41899535,-0.08552253,0.38504377,0.1945354,0.056569636,-0.37363803,0.07053157,0.25892818,0.4957239,0.09861391,0.21161006,-0.12210885,-0.44861645,-0.35474518,0.33217105,-0.22207883,0.17934665,0.1322987,-0.31945798,0.91126984,0.12069264,1.2695149,0.11994768,-0.40944576,0.12470393,0.55749923,-0.16798595,0.03229607,-0.4061068,0.93764764,0.73631924,-0.24372362,-0.06135348,-0.5938247,-0.1128675,0.25707242,-0.44878143,-0.06188701,-0.11605896,-0.58172023,-0.42527926,0.26253477,0.22162701,0.116364524,-0.10081741,-0.08307899,0.07734437,0.22893684,0.5770891,-0.5852082,-0.20202678,0.22038203,0.064828716,-0.18932088,0.20755579,-0.4149543,0.45800218,-0.6932067,0.12777556,-0.37414762,0.13301152,-0.3925998,-0.3522483,0.15930255,-0.13347429,0.26279113,-0.37507918,-0.401706,-0.14193088,0.3938444,0.19436897,0.12215748,0.7617327,-0.30413997,0.18853383,-0.022668425,0.48571664,1.3044194,-0.36687124,0.061382,0.26599315,-0.47973067,-0.64657044,0.23202787,-0.49442163,-0.10554349,-0.08413899,-0.72410756,-0.2765604,0.35715276,-0.03807675,-0.03616861,0.18628651,-0.5540792,-0.057827696,0.2992473,-0.14150284,-0.30469337,-0.13664788,0.5144417,0.7010062,-0.29619807,-0.5549993,0.048323113,0.36438486,-0.30775577,-0.58455485,-0.00719349,-0.06547228,0.5170483,0.019026216,-0.28069016,-0.013242599,0.22395156,-0.51209414,0.04706765,0.434241,-0.37195817,-0.019252324,-0.14857486,0.06624504,0.5884003,-0.24484149,-0.22383918,-0.6015269,-0.3794025,-0.97472584,-0.41156197,-0.13212581,0.15008458,-0.052467134,-0.43494567,-0.03561036,-0.39423046,0.01223585,0.10499375,-0.73431647,0.40437204,0.17195155,0.6323232,-0.4074563,-1.092459,0.1556792,0.19398665,-0.013494615,-0.8012236,0.71823174,-0.16452803,0.6244165,0.093893856,-0.141359,-0.018281957,-0.5477262,0.20390616,-0.34888917,-0.23117876,-0.9714276,0.12698461,731 -273,0.34918535,-0.25905916,-0.22553015,-0.1241322,-0.029021958,0.1305069,-0.007671662,0.47864878,0.16959375,-0.39835778,-0.036878694,-0.2716249,-0.06547102,0.26619333,-0.10870656,-0.3732659,-0.093544774,-0.023055386,-0.27200592,0.4647779,-0.37728244,0.27983665,-0.03995471,0.27365834,0.10366591,0.4272,0.17381558,-0.23454939,-0.15216973,-0.036530435,-0.18337406,0.028710842,-0.3298289,0.10324836,-0.055189822,-0.19463135,0.083942555,-0.38803083,-0.40248102,-0.6237198,0.3649584,-0.69929326,0.35121924,0.07687224,-0.11619018,0.38988227,0.15601072,0.20909338,-0.2618394,-0.025912741,0.20292208,-0.06661714,0.09255467,-0.10732662,-0.14483163,-0.3473087,-0.4382165,0.058623545,-0.34464198,-0.3739974,-0.17122047,0.08081238,-0.30709508,-0.05912656,-0.09444852,0.35660633,-0.4318981,-0.08473091,0.20654045,-0.18923526,0.2832519,-0.6005973,-0.21975492,-0.06205826,0.093741655,-0.079877816,0.031901788,0.2903683,0.13616012,0.55528843,-0.048767544,-0.08933,-0.35128358,-0.06561109,0.07900991,0.6174442,-0.19923367,-0.41583902,-0.010727893,-0.0091331545,-0.04845206,0.057260934,0.12411644,-0.2567778,-0.11099278,0.13439804,-0.3600828,0.25257623,0.502923,-0.32730916,-0.33699045,0.40160617,0.49164486,0.027187813,-0.057690136,-0.014505418,-0.0059698313,-0.31257722,-0.13641433,0.08243248,-0.2024226,0.46943796,-0.047656476,0.3486728,0.63565063,-0.11626152,0.19550024,-0.11955893,-0.055736914,-0.13499467,-0.23919158,-0.014725964,0.03556144,-0.34717792,0.14958015,-0.12888704,0.7586463,0.20716476,-0.6871988,0.40951696,-0.42728043,0.20244838,-0.031364985,0.53526217,0.6035501,0.2527404,0.44593716,0.72337353,-0.5744555,0.060578074,-0.11724987,-0.28041336,0.033211127,-0.14377625,0.123433,-0.52742785,0.059429787,0.28619274,-0.06574095,0.031694904,0.08493171,-0.44689506,0.038420938,0.18150823,0.9145345,-0.2511015,-0.013086494,0.56719947,1.0090109,0.8050468,-0.013760265,0.97943693,0.25915584,-0.31088,0.42917383,-0.5696251,-0.66448057,0.20865795,0.394847,0.28932565,0.21765977,0.1588358,-0.15304136,0.35816422,-0.31852058,0.1756561,-0.1694532,0.124942236,0.24673837,-0.07321129,-0.2716875,-0.21873516,-0.047427047,-0.07697896,0.12109441,0.076123744,-0.23097517,0.26609546,-0.071631305,1.823526,-0.032912232,0.11010553,0.108825095,0.597058,-0.017615676,-0.10992236,0.061932847,0.32442302,0.27524787,0.026650174,-0.56163913,0.15087697,-0.20640889,-0.6498244,0.0023158053,-0.28787506,-0.100401506,0.11685885,-0.35097754,-0.15955935,-0.11141023,-0.41052696,0.38964385,-3.0776362,-0.051559664,-0.14681396,0.25389114,-0.3497931,-0.24235025,0.048193377,-0.41840145,0.34342733,0.49487457,0.3532938,-0.6936053,0.30434987,0.34455904,-0.3606715,-0.13502264,-0.45870337,0.036115628,-0.04807867,0.3720393,0.07302208,-0.0010829886,0.050924517,0.1021965,0.47001383,0.08218517,0.06675752,0.23596579,0.34217975,-0.014515189,0.3403396,0.08748882,0.28570583,-0.22255547,-0.043210194,0.26623046,-0.48679954,0.20045458,-0.039284103,0.13433671,0.29995015,-0.3463685,-0.6768641,-0.6192961,-0.35403225,1.209684,-0.11222375,-0.3880294,0.362473,-0.24015704,-0.124068655,-0.20934094,0.53350025,-0.01845214,-0.09378008,-0.68035597,0.080728054,-0.19104192,0.12176467,0.018217294,-0.005656928,-0.30483666,0.7924898,-0.07754677,0.48889586,0.29131165,0.12382409,-0.23280239,-0.34212115,0.043916572,0.7580868,0.31293526,0.2049941,-0.117862575,-0.17066444,-0.21285,-0.36035067,0.19221371,0.41333738,0.6965912,0.062453374,0.022378743,0.29221362,-0.08928955,-0.06633155,-0.10588424,-0.17408413,-0.052761916,-0.020849245,0.5578578,0.4439977,-0.25701243,0.3635083,-0.15831761,0.18315004,-0.25724176,-0.27559415,0.48463795,0.5875752,-0.14705025,-0.14939585,0.44876188,0.5374863,-0.23626514,0.33317837,-0.70269024,-0.27735192,0.5292445,-0.23447494,-0.47311267,0.19009332,-0.27584416,0.028688025,-0.8596485,0.25507966,-0.14515291,-0.3547931,-0.49032933,-0.17026153,-3.6517186,0.059476018,-0.25407147,-0.355502,0.033765092,-0.010874846,0.085947014,-0.5701305,-0.32381096,0.11765852,0.08244047,0.4198282,0.06511524,0.21389176,-0.2902559,-0.020579377,-0.40083373,0.09209351,-0.16138652,0.34956676,0.016470302,-0.34928444,-0.027227584,-0.12542689,-0.43633264,0.08073106,-0.45080593,-0.4567754,-0.23891553,-0.494839,-0.2901138,0.48081133,-0.31575468,0.05487918,-0.30715656,-0.12903902,-0.3106969,0.5065776,0.27835146,0.034711536,-0.035889722,-0.03437408,-0.009578451,-0.27727768,0.31474912,0.09945595,0.34521917,0.50326914,-0.15452169,0.12125133,0.3932558,0.5025936,-0.07260398,0.6264198,0.49554533,-0.12302092,0.37507787,-0.3682255,-0.054034676,-0.43765274,-0.41770178,0.02168837,-0.24879055,-0.5417028,-0.13172589,-0.36762625,-0.6208511,0.26128837,-0.016517822,0.27083302,0.05544615,0.11169203,0.50866866,-0.17480157,0.009065,-0.06137659,-0.036147308,-0.53797495,-0.32072407,-0.6142972,-0.494492,0.37656707,0.699639,-0.023127705,-0.15584327,0.07727446,-0.20750594,-0.09763273,-0.028220566,0.065810435,0.11861483,0.25418863,-0.159985,-0.7060681,0.5632892,-0.021430492,-0.14020434,-0.5202548,0.11673265,0.3880361,-0.46636885,0.47382832,0.18280019,0.14265035,0.022930412,-0.37730238,-0.20852135,-0.22915027,-0.24693726,0.24948241,0.070159145,-0.734388,0.349243,0.4195878,-0.21642962,-0.6533716,0.29885438,-0.076430164,-0.23883708,0.03675265,0.18934996,0.2208271,-0.06189562,-0.09313171,0.13823217,-0.5795525,0.29031822,0.2206843,0.014950673,0.6201607,-0.13698368,-0.054666005,-0.523713,0.046509687,-0.43133876,-0.18809167,0.10778861,0.24324687,0.16468897,0.15413103,-0.029869238,0.27651492,-0.23203358,0.049288753,0.13585995,-0.13286562,0.26263994,0.3712179,0.3971399,-0.46679133,0.5552487,-0.053005952,0.021152882,0.016172664,0.027120909,0.3822998,0.30809107,0.16341534,-0.025165845,-0.2846541,0.25479838,0.7444217,0.256861,0.4463161,0.149628,-0.2105367,0.43464246,0.12031043,0.059464026,0.17921953,-0.4351827,-0.028465481,-0.024406286,0.18670817,0.31545818,0.14641532,0.39659408,-0.11334955,-0.1750656,0.080066115,0.27055794,-0.21019493,-1.0039773,0.3408137,0.19078375,0.8443958,0.39188558,-0.10898658,0.087367386,0.75719506,-0.1806189,0.13189413,0.2626799,-0.03817146,-0.68744725,0.56214154,-0.5691334,0.42789137,-0.08249162,0.010747842,-0.0040780944,0.027882295,0.25274172,0.64641196,-0.15170044,-0.032354712,-0.074231006,-0.30992526,0.034462113,-0.3656858,0.19937988,-0.43157336,-0.19292071,0.4101492,0.4492094,0.30328825,-0.063941166,0.048944093,-0.03405114,0.010760697,0.096222445,-0.0713493,0.09152575,-0.053014774,-0.6996004,-0.39374268,0.54913026,-0.16256335,0.18178539,0.0028837363,-0.2976382,0.1509433,-0.20767546,-0.23788227,0.016671048,-0.5158084,0.14431757,-0.06984733,-0.51295125,0.39471185,-0.04421852,0.323877,0.12896603,-0.031119687,-0.32890242,0.21156982,0.24146602,0.6472938,-0.094292216,-0.15254396,-0.5619518,-0.024361206,0.23931172,-0.18664898,-0.15082596,-0.14844766,-0.17697152,-0.46925774,0.49781972,-0.013008428,-0.2415021,0.20475006,-0.34324723,0.07149525,0.5845782,-0.14085157,-0.17706467,-0.0394907,-0.17576678,-0.24459155,-0.14671612,-0.112806894,0.34548673,0.019929329,-0.031928357,-0.023768846,-0.1530485,-0.060976434,0.37175843,0.035826366,0.21906981,0.27068186,0.027854117,-0.3421604,-0.10957773,0.054986462,0.32331327,0.1528631,-0.031156382,-0.12829177,-0.47811407,-0.37451172,0.04862581,-0.14310855,0.31988317,0.13713522,-0.44895688,0.58730114,-0.004160869,1.104069,0.10535052,-0.23558156,0.06913895,0.39610085,0.03493266,0.16098176,-0.40826562,0.74818,0.6076444,0.032134578,-0.111571975,-0.20392844,-0.060989298,0.30853614,-0.15286002,-0.053101156,-0.033987515,-0.735162,-0.30934498,0.26548505,0.18752974,0.115293466,0.02576712,-0.0049145618,0.09377555,0.015777986,0.5194736,-0.33879864,-0.23138633,0.32738164,0.08408761,0.040901612,-0.001977853,-0.41048592,0.42479667,-0.58152705,0.024028294,-0.19446,0.07206576,-0.2102044,-0.15039444,0.1839568,-0.021697856,0.5141984,-0.20441963,-0.4306011,-0.18403496,0.45902634,0.04318799,0.20959447,0.41809922,-0.12336413,0.0031945885,0.05853315,0.50510544,1.0475157,-0.25968674,0.099914946,0.3280683,-0.30829257,-0.6519499,0.37095305,-0.07305385,0.15266676,-0.045345705,-0.17247842,-0.38709623,0.25993544,0.26410773,0.013809673,0.03132235,-0.5310397,-0.4329758,0.18368691,-0.38243008,-0.24215785,-0.3218076,0.14195725,0.70969504,-0.3754296,-0.1582616,0.15233189,0.30008832,-0.23205057,-0.5207138,-0.023924852,-0.23008223,0.37117666,0.13912408,-0.28987184,-0.24649283,0.05959637,-0.24845701,0.1642169,0.0720313,-0.48325503,0.049739305,-0.29210493,-0.026551057,0.81238914,-0.020432035,0.13573691,-0.72777903,-0.38344756,-0.8767997,-0.5431651,0.44955906,0.09782311,-0.12493273,-0.33612877,-0.042740162,0.06597749,0.05080672,-0.14551285,-0.45853743,0.4697127,0.16682409,0.3198585,-0.07189352,-0.5393313,-0.014484787,0.19319959,0.007437865,-0.54939705,0.48049697,0.034008447,0.87146676,0.01885294,0.07699192,0.31536216,-0.42361882,0.007621312,-0.25769886,-0.3540627,-0.6059086,0.18219967,736 -274,0.4234263,-0.17035034,-0.663369,-0.107421964,-0.3407318,-0.035459004,-0.19977093,0.6911924,0.1427249,-0.49053803,-0.13083972,0.0018070459,-0.06692688,0.534785,-0.17514093,-0.70430756,0.015568308,0.09684982,-0.41707852,0.52326167,-0.36941054,0.32082814,0.030259622,0.3533986,0.16596791,0.33719692,0.09958399,-0.10241208,-0.120687164,-0.10042238,-0.06024409,0.3164621,-0.533779,0.28549525,-0.22783054,-0.4453513,-0.020442689,-0.39604598,-0.3102477,-0.63246995,0.2965415,-0.6871193,0.44698793,-0.20219073,-0.3424958,0.20083642,0.04265289,0.38852087,-0.28082457,-0.040422622,0.09519367,0.04878277,-0.12673847,-0.11385587,-0.13352858,-0.34854352,-0.49194005,0.19990383,-0.5050107,-0.030598955,-0.14412716,0.15807836,-0.44087467,0.1139905,-0.08627207,0.42404416,-0.46709055,-0.05851133,0.35006294,-0.20478716,0.08505047,-0.6380855,-0.02559789,-0.08325432,0.25974697,-0.09899386,-0.06701653,0.33338413,0.20790777,0.54826474,0.164258,-0.26526582,-0.3087096,0.002800552,0.078184225,0.53607994,-0.2187797,-0.43939593,-0.2350792,-0.034960277,0.3061398,0.15861756,0.0853,-0.17796895,-0.0664667,0.0910897,-0.2576461,0.28038776,0.4282896,-0.28480235,-0.14728622,0.21676491,0.6191661,0.24035987,-0.084480904,-0.0052210093,0.12830615,-0.5023797,-0.24510165,0.019489478,-0.17904289,0.39261714,-0.12607294,0.3183685,0.76887375,-0.21482484,0.15128572,0.11852051,0.016414348,-0.18423165,-0.38622743,-0.24785297,0.25610095,-0.53712064,0.06502739,-0.113258585,1.0069392,0.14059442,-0.6559252,0.28129327,-0.52232134,0.1737948,-0.21085861,0.56998825,0.7498774,0.40469846,0.13825302,0.82546157,-0.42841163,0.15998799,-0.08179452,-0.504258,-0.0129185,-0.10838081,-0.07913576,-0.47952995,-0.028693784,0.09026216,0.031341977,0.09800044,0.33743945,-0.6258103,-0.072036244,0.01651992,0.89683354,-0.30044428,-0.112501845,0.8149427,0.9180353,0.99766105,-0.12087878,1.1410258,0.29234868,-0.19406764,0.2385216,-0.29357386,-0.64170563,0.2921986,0.5314007,-0.18968649,0.2923941,0.03264092,-0.016321806,0.65271103,-0.3585885,0.15279561,-0.27427247,0.24194805,0.047408298,-0.25947773,-0.554568,-0.17061119,0.018274406,-0.053164966,0.006989805,0.335911,-0.11497311,0.5177106,0.032675937,1.6375324,-0.063642934,0.16494404,0.13007966,0.4957789,0.2071758,-0.21343452,-0.053146135,0.015371005,0.42172125,-0.061476786,-0.5628136,-0.0025064112,-0.30276024,-0.61700946,-0.2892926,-0.3250187,-0.05583527,-0.07520788,-0.5142643,-0.18080519,-0.11594292,-0.11257914,0.44810677,-2.5658312,-0.23953795,-0.20452248,0.13646139,-0.43764782,-0.4264518,-0.17456697,-0.559756,0.44969225,0.31825295,0.5921487,-0.4670638,0.53437483,0.4077746,-0.4900331,-0.09203994,-0.60425895,-0.099130236,0.018423678,0.30668512,0.090060234,-0.20932245,-0.11756988,0.038055968,0.54024255,-0.24110514,0.08980124,0.17645182,0.24152806,-0.028859966,0.47984487,0.094693884,0.5549554,-0.47423235,-0.3673447,0.4318616,-0.1766644,0.26690808,-0.19489251,0.15396528,0.35516948,-0.392726,-1.038999,-0.74350095,-0.22389202,1.1453184,-0.122718245,-0.39300582,0.34985936,-0.073802955,-0.1026352,0.029189177,0.2686426,-0.10110974,-0.09627311,-0.7484389,0.1324519,-0.12528819,0.057372916,0.051402688,-0.16337095,-0.39548352,0.558615,-0.11915506,0.35013387,0.4737023,0.22038746,-0.06496113,-0.35716012,0.03159689,1.0872122,0.48848936,0.1745992,-0.28169888,-0.21313958,-0.28110474,-0.13141476,0.06612139,0.44856745,0.7710387,0.057810165,0.19780447,0.1881276,0.076639935,0.0544273,-0.017446153,-0.45954037,-0.190933,0.08750465,0.59268445,0.52541536,-0.10340886,0.41806015,-0.1281853,0.33265713,-0.08792669,-0.5142323,0.6081918,0.64589715,-0.27536508,-0.32543322,0.69024074,0.44198498,-0.17232952,0.4476798,-0.5706117,-0.41734436,0.4711873,-0.1828513,-0.40745768,0.07447515,-0.18915187,0.08688988,-1.0329695,0.10686171,-0.40830666,-0.4204153,-0.53218406,-0.35870874,-3.3480568,0.16930181,-0.24468149,-0.0726459,-0.11384197,-0.078771256,0.2587144,-0.7029527,-0.6158249,0.19226743,0.11170414,0.6919539,0.037060335,0.21429211,-0.18832545,-0.22295591,-0.18665093,0.07299469,0.24248883,0.20783332,-0.011709136,-0.61979043,-0.1448434,-0.112907395,-0.43611935,0.12938806,-0.761845,-0.48235533,-0.32356185,-0.554968,-0.18005668,0.80095655,-0.36458716,-0.0019076546,-0.1771843,0.119077,-0.1208855,0.29542622,0.035976384,0.045402132,0.12273395,-0.14874893,0.16248983,-0.4386086,0.238606,0.19252697,0.5539265,0.34756377,-0.18987218,0.31180942,0.7659063,0.7999087,-0.15740258,0.7874139,0.54379845,-0.117825605,0.3511367,-0.16411562,-0.3167149,-0.61448187,-0.46343967,-0.09861887,-0.4227466,-0.41380423,0.09988515,-0.4233637,-0.9551865,0.6240692,0.043205883,0.2075008,0.008698591,0.27131045,0.44750702,-0.2657004,-0.15044312,-0.090193614,-0.04577681,-0.54785955,-0.36898836,-0.6417329,-0.5681948,0.01798133,1.3400985,-0.19301318,-0.012065713,0.047118597,-0.26560572,-0.031934105,-0.007227234,0.0066515086,0.124822125,0.43082136,-0.115449294,-0.6940385,0.46495238,-0.1707428,-0.21060807,-0.51793426,0.025195312,0.5496685,-0.62224096,0.3085047,0.33084354,0.108282804,0.16108796,-0.505427,-0.12051882,-0.07235732,-0.087881476,0.43896765,0.28785127,-0.7569851,0.5999808,0.40430126,-0.3087551,-0.8004978,0.30782902,0.0016516368,-0.09409786,-0.07214544,0.22512527,0.28524467,-0.079753764,-0.1667101,0.10502598,-0.3884678,0.32955977,0.2789348,-0.13560422,0.44356412,-0.2972077,-0.1973636,-0.79589516,-0.10900601,-0.53763264,-0.2432975,0.18630156,-0.030735135,0.030643739,0.014279672,0.15956756,0.32745117,-0.30082408,0.09433807,-0.06527322,-0.32419714,0.37383315,0.3988921,0.49418122,-0.48255265,0.5213651,0.117058985,0.020977871,0.0057053566,0.07872149,0.58112216,0.006271867,0.35099104,-0.1298334,-0.19028965,0.30244294,0.86420316,0.07018098,0.39861426,-0.00039885045,-0.21320601,0.06270576,0.091326475,0.025449192,0.11700957,-0.5336325,0.092848584,-0.009123294,0.1977196,0.67422545,0.16959913,0.41397256,-0.012879023,-0.24353638,0.15116136,0.055420827,0.036942873,-1.2780203,0.45667452,0.18607269,0.8451899,0.30291212,0.108505875,-0.11091081,0.657753,-0.22072172,0.16975716,0.42412922,-0.047024094,-0.5277655,0.58341104,-0.6938857,0.66874295,-0.023573844,0.03490139,0.09238207,-0.054745514,0.50856787,0.8155622,-0.1418101,0.01055046,-0.008153359,-0.38461182,0.032879394,-0.33733633,-0.023870716,-0.48840863,-0.19383913,0.73803616,0.5306311,0.2887253,-0.12317339,-0.10528404,0.16683461,0.018949818,0.21636425,-0.23693973,0.19467165,-0.09832606,-0.5401794,-0.20273873,0.5947745,0.27859566,0.27927315,0.006303795,-0.25780478,0.30690292,-0.15718648,-0.0073812,-0.114904605,-0.63909245,-0.0055360156,-0.41752586,-0.38834932,0.36778578,-0.061089277,0.23181792,0.07920984,0.1330416,-0.47333214,0.4712195,-0.2051195,0.84120595,-0.22529773,-0.2365654,-0.33206236,0.2696814,0.3750494,-0.28387988,-0.10491598,-0.41618,-0.03165548,-0.5905991,0.29891452,-0.18739475,-0.3643151,0.15213431,-0.1650805,0.020465728,0.4519834,-0.089149885,0.006423326,0.025825357,-0.046535805,-0.23409595,-0.26889998,-0.15967952,0.19316538,0.24597533,0.09658452,-0.12147759,-0.31632563,-0.08381152,0.37743747,0.010422114,0.18909976,0.32728177,0.06023473,-0.3954552,-0.20839219,0.2493649,0.5052676,-0.06155291,-0.13366638,-0.4838721,-0.36472327,-0.26132557,0.1783209,-0.16130209,0.3217798,0.101391144,-0.24446417,0.85627365,0.10872808,1.3196816,0.21582727,-0.36538965,0.10601142,0.45306188,0.022111956,0.044929262,-0.35845244,0.9552183,0.5226977,-0.11323481,-0.20537631,-0.5119877,-0.072502896,0.16892567,-0.27251822,-0.2291381,-0.14312126,-0.635805,-0.3925647,0.36459142,0.2034683,0.15187697,-0.13373956,-0.07788149,0.14757185,0.08689329,0.41125223,-0.51510227,-0.16222158,0.27476135,0.29373324,-0.1598679,0.24881724,-0.67880875,0.46447846,-0.61637217,0.11547522,-0.31512466,0.20288907,-0.19534184,-0.29357353,0.24372266,-0.09867811,0.41680384,-0.31394902,-0.39106825,-0.19390675,0.6052549,0.23824094,0.17718396,0.69336736,-0.36385617,-0.07368309,-0.04974809,0.5521037,1.0016117,-0.43430457,0.025314363,0.40963826,-0.13698411,-0.47639456,0.2123409,-0.25763187,0.1785842,-0.11367126,-0.31312707,-0.5393379,0.3144352,0.18253666,-0.036093004,0.050038613,-0.533499,-0.09309939,0.24442455,-0.24453542,-0.28037682,-0.33066407,0.17838229,0.64944166,-0.32850266,-0.41025606,0.25271636,0.3725173,-0.0315949,-0.3963063,-0.04493339,-0.20979027,0.2172695,0.20177814,-0.38057813,-0.09650838,0.046635844,-0.48796046,0.1401449,0.32591572,-0.3868977,-0.03764119,-0.16361447,-0.061501577,0.90969294,0.0032951555,0.38422468,-0.5725404,-0.3696372,-0.88570637,-0.45684427,0.5809008,0.2809827,-0.03070793,-0.6086978,-0.04705327,-0.18136701,-0.054311045,-0.07215386,-0.47810376,0.3905442,0.06649408,0.51368153,-0.11475237,-0.6798437,0.07643737,0.021467602,-0.17409934,-0.5339107,0.49118462,-0.1410899,0.9075671,0.08165436,0.0871028,0.35460302,-0.51034963,-0.06023197,-0.32478848,-0.266018,-0.75280035,0.042087328,742 -275,0.41101953,-0.1600624,-0.52038914,-0.24874665,-0.53520983,0.15085188,-0.33944836,0.16710173,0.38253075,-0.064133905,0.11281354,0.008674415,-0.14675786,0.31837988,-0.061118226,-0.9282154,0.04745873,0.14633137,-0.9151649,0.67787725,-0.551618,0.2925495,-0.032022804,0.3812074,0.071490906,0.23558542,0.14192085,0.10161045,0.119742244,-0.071674675,-0.12492997,0.3366876,-0.76622844,0.31519762,-0.07088871,-0.40395823,-0.18848558,-0.3155245,-0.22516437,-0.8635896,0.18034598,-0.6625396,0.55319977,-0.120951414,-0.41451892,0.052054867,0.21608277,0.18671365,-0.45417222,-0.01852026,0.24682803,-0.29051575,-0.05152947,-0.14067787,-0.27256432,-0.64539146,-0.70616204,-0.14685632,-0.6093203,-0.04555595,-0.271691,0.32186463,-0.32499272,-0.011690727,-0.2950891,0.53090364,-0.39859396,0.30623558,0.21566036,-0.09795844,-0.14179304,-0.50194126,-0.112579264,-0.22335774,0.17803794,0.20305915,-0.49394143,0.3910457,0.2895772,0.5225077,0.16574624,-0.3842095,-0.2403782,-0.18390802,0.031542048,0.2570149,-0.021300245,-0.2645914,-0.3035482,-0.12532578,0.2814385,0.18603471,-0.0007865747,-0.43387935,0.12997137,0.053923607,-0.21084017,0.5572487,0.4974816,-0.48225313,-0.24656908,0.34781793,0.33361584,0.19447078,-0.33206698,0.15888736,-0.20025365,-0.576541,-0.277196,0.17678826,-0.1584399,0.46459717,-0.26585487,0.18368196,0.65659803,-0.16489886,-0.25917035,-0.15533139,-0.15828043,-0.042747602,-0.3815622,-0.2431244,0.18995121,-0.45952746,0.07540203,-0.23551254,0.6791864,0.15418638,-0.7704011,0.37106678,-0.50023514,0.21613033,0.01868397,0.72629446,1.0252882,0.578161,0.2783313,0.8309527,-0.33637348,0.17708614,-0.07383587,-0.2390172,0.16822317,-0.18379103,0.21654588,-0.5104975,0.08884754,-0.19622914,-0.007446353,0.028486164,0.33563682,-0.4407721,-0.17848545,0.012581221,0.6702425,-0.3514058,-0.121673346,1.0038493,0.9637493,1.194854,0.12099807,1.3248672,0.4969622,-0.053262763,-0.0011924505,-0.24177901,-0.5720852,0.16192633,0.1817685,-0.05119562,0.40071395,-0.0028883626,0.097620435,0.52790314,-0.15272434,-0.1498437,-0.06735681,0.42176017,0.060366828,-0.075622946,-0.36522022,-0.18183464,0.32206494,0.010140959,0.047489356,0.292116,-0.1678745,0.56918997,0.24179849,0.9495757,0.15004085,-0.03642059,-0.03002658,0.33610705,0.3001011,-0.06524597,-0.06531138,0.42899427,0.29043186,-0.047097787,-0.66720515,0.15288535,-0.2902578,-0.269504,-0.095916554,-0.41622055,-0.14848252,-0.24673657,-0.41228184,-0.28917658,0.074980065,-0.15623339,0.37309378,-2.5021758,-0.28768378,-0.1571452,0.2356417,-0.054662053,-0.1866615,-0.28308985,-0.64338213,0.31652603,0.25981814,0.3354432,-0.63374454,0.4910724,0.38353235,-0.4659364,-0.041093167,-0.75693494,-0.07673734,0.020081019,0.5390323,-0.12845351,-0.113978736,-0.09824496,0.34682605,0.64915216,0.06337539,0.14832738,0.3150835,0.6018151,-0.23016077,0.5455264,-0.022543767,0.54069763,-0.40932685,-0.18496017,0.35404426,-0.4893824,0.29735145,0.08321726,0.053005304,0.630936,-0.4383363,-0.8226116,-0.40017426,-0.20450966,1.2281964,-0.43733814,-0.5085427,0.21128117,-0.3723017,-0.13870303,0.02593375,0.5080715,-0.073688515,0.07058823,-0.6398612,0.09607602,-0.07362064,0.25369284,-0.07078457,0.1882702,-0.313165,0.7822534,-0.1716869,0.45510018,0.23748595,0.13118847,-0.45920584,-0.42479017,0.19355272,0.6588505,0.4215709,0.06345127,-0.13956538,-0.18588321,-0.11441925,-0.1391634,0.11732049,0.8488996,0.5355142,-0.16748998,0.13070379,0.39418977,-0.24668601,0.012366221,-0.32441965,-0.18621513,-0.14171849,0.20987006,0.50451607,0.66708344,-0.09971626,0.38538778,0.0093891965,0.13441299,-0.09251644,-0.7278113,0.58666164,1.0378376,-0.2403418,-0.29429653,0.5205983,0.31070462,-0.2685658,0.5514303,-0.46674526,-0.33852905,0.6336221,-0.06000773,-0.32992417,0.021115335,-0.41774347,-0.035132047,-0.73574865,0.21713702,-0.1505082,-0.55832225,-0.62413234,-0.19243078,-3.7843668,0.0871264,-0.22165878,-0.029133867,-0.28607425,-0.215157,0.31137362,-0.45779344,-0.5760156,0.1533194,0.15060404,0.57431096,-0.18118931,0.022711407,-0.2406343,-0.3730702,-0.31117618,0.28446472,0.20913549,0.3900576,-0.10026292,-0.4291989,0.13298467,-0.08378224,-0.63959616,-0.13606426,-0.47770283,-0.37788755,-0.021241792,-0.557226,-0.1756952,0.7680714,-0.4155582,0.05186391,-0.4379173,-0.07924068,-0.08022236,0.37791625,0.22450556,0.3392902,0.11636581,-0.062021114,-0.10916842,-0.25116614,0.0688973,-0.028077023,0.24092415,0.40079027,-0.058181874,0.2371829,0.47654393,0.76817435,0.015635999,0.8442289,0.25932634,-0.07327114,0.4637872,-0.20600122,-0.45576763,-0.7554549,-0.305724,-0.2605097,-0.5807075,-0.2834254,-0.123539604,-0.33055213,-0.80316335,0.44733185,0.077096716,0.20195137,-0.18188111,0.37019876,0.32015628,-0.16203651,0.17946558,-0.10210812,-0.3585541,-0.49336052,-0.49064484,-0.7049658,-0.6072089,0.10918031,1.0808845,-0.21020131,-0.12330005,0.015798545,-0.29375997,-0.00049668155,0.2612233,0.1272235,0.36711347,0.34078106,-0.050782394,-0.603414,0.37550554,-0.29280987,-0.008240922,-0.56533104,0.20335105,0.7329501,-0.64573187,0.6906699,0.24361828,0.22400567,-0.068421155,-0.81924087,-0.23518986,0.055447046,-0.15772796,0.6932031,0.19562604,-0.7415455,0.5513524,0.13786507,-0.10127514,-0.6533171,0.5174986,-0.03622836,-0.20087123,0.03824865,0.4338641,0.055443525,0.06311831,-0.17613119,0.26514885,-0.41544047,0.18318966,0.24776244,-0.060688734,0.24520597,0.011023879,-0.33429262,-0.6345288,-0.18521163,-0.6137919,-0.3658719,0.011206158,0.019518418,0.08279295,0.03134494,-0.027750429,0.45410213,-0.06417717,0.20918976,-0.20636891,-0.23628892,0.37881562,0.5835609,0.26703233,-0.5026515,0.70187545,0.19044465,0.04140166,0.037045836,0.21104911,0.4270959,0.20582996,0.529382,-0.12049435,-0.040588345,0.10034522,0.72832936,0.30266038,0.4175846,0.070981026,-0.18847509,0.30896014,0.20112629,0.22488405,-0.13375439,-0.18323082,-0.06664188,0.01519897,0.24965988,0.5788767,0.1148108,0.23333387,0.029321011,-0.042779963,0.14834,0.20352182,-0.13199857,-1.3786318,0.40069145,0.3032769,0.875366,0.5535528,0.15440606,-0.10050483,0.54805726,-0.40175265,0.10006788,0.46821457,0.13186787,-0.19955117,0.5721111,-0.6000258,0.5144504,-0.225874,0.03689225,0.17979002,0.39956537,0.32182086,0.94184905,-0.22725701,0.04962299,0.088747114,-0.36028117,0.21796933,-0.2755635,0.14740744,-0.30330095,-0.4934454,0.5950347,0.32790998,0.2812336,-0.5074988,0.013189351,-0.04200251,-0.3194064,-0.09046472,-0.20521545,-0.11076014,-0.32341403,-0.53257555,-0.22414847,0.5552895,-0.23643999,0.031680856,0.13974412,-0.24954864,0.22535153,0.057477474,-0.030653726,-0.04571012,-0.7258929,0.003541108,-0.2705099,-0.4088237,0.52449685,-0.41950467,0.20018277,0.27123362,0.00528965,-0.42060566,0.0955685,-0.07581861,0.5939805,-0.05096764,0.117308885,-0.22772208,0.16692428,0.32526273,-0.30733642,-0.009174154,-0.30113658,0.1543171,-0.50811344,0.3911005,-0.17897707,-0.31954852,-0.13857724,-0.037218366,0.07563302,0.500001,-0.26328447,-0.12297556,0.06381521,-0.07612122,-0.28474203,-0.07761175,-0.2918516,0.37191495,-0.00808141,0.029146457,0.073299386,-0.0672212,-0.096332416,0.4354753,0.05814867,0.2766298,0.28658614,0.023254784,-0.37511957,0.09453573,-0.04653143,0.4900264,0.13546467,-0.18031497,-0.19958043,-0.27073908,-0.3706059,0.5651741,-0.187498,0.20767511,-0.008323681,-0.5923355,0.8148718,0.15322113,1.1979343,0.04403867,-0.478659,0.23094486,0.5942208,0.03860347,0.14091192,-0.19717155,0.74537987,0.45756322,-0.11247776,-0.037211016,-0.41461736,-0.19282022,0.22167896,-0.3306553,-0.30102208,-0.20561023,-0.59202015,-0.05459,0.11171333,0.117706805,0.038077705,-0.11598794,-0.22227465,0.06647255,0.17352262,0.45085132,-0.51076365,0.0039563975,0.2970594,0.20136267,0.008161215,0.23279457,-0.22879079,0.44330472,-0.7886063,0.2033345,-0.45237106,0.2295755,-0.22615026,-0.1904563,0.2668617,-0.020772243,0.18283671,-0.31998792,-0.37144792,-0.38828275,0.57571095,0.25787103,0.29088286,0.7695911,-0.22766834,-0.09405139,0.27834156,0.56721705,1.229881,-0.13878243,-0.19475037,0.12231682,-0.3571314,-0.69772506,0.18216091,-0.45482874,0.022618787,-0.05757971,-0.28964567,-0.2383323,0.27127263,0.13586593,0.20130914,0.16996115,-0.7911538,-0.1283543,0.37500146,-0.16198769,-0.1914155,-0.3323769,0.35772666,0.8574479,-0.4265309,-0.25491938,0.027545908,0.31005684,-0.23272142,-0.7195003,0.019171638,-0.4351615,0.46821868,0.2090881,-0.34617248,0.07180526,0.16313511,-0.53828174,0.13573973,0.37560308,-0.2383412,0.06185895,-0.22762628,-0.23491907,0.95790267,-0.016546436,0.2676696,-0.50424415,-0.69160306,-0.88751453,-0.26677272,0.113429755,0.28324345,-0.04946455,-0.6410191,-0.19470379,-0.12489117,-0.07949984,0.16213019,-0.5880282,0.3850541,0.15059431,0.33161318,-0.09516238,-1.0463408,0.008972434,0.2728203,-0.11294333,-0.4712965,0.5625127,-0.25121763,0.55842245,0.1782363,0.09407863,0.010870756,-0.6443769,0.2689031,-0.33338967,-0.18383965,-0.5742181,0.065526225,746 -276,0.50942934,0.019318359,-0.60782164,-0.13861862,-0.39507753,0.20063451,-0.15017928,0.28047293,0.3774451,-0.29606673,-0.011223269,-0.18480334,-0.061925102,0.38046682,-0.06193827,-0.74301684,0.023032099,0.20147607,-0.53884953,0.5022748,-0.4156852,0.4610948,0.096184686,0.29819742,0.13624234,0.2703656,0.11331388,-0.02824432,-0.2047539,-0.02856555,-0.15779667,0.108628005,-0.5525368,0.17129186,-0.076057695,-0.37587485,-0.13127846,-0.36209768,-0.37529576,-0.6886646,0.3259905,-0.74152005,0.5664107,-0.14068015,-0.41589567,0.12751041,0.00886499,0.43701044,-0.3369418,0.17715038,0.15189452,-0.2471495,0.022128884,-0.173563,-0.43847057,-0.57426834,-0.5409663,-0.011317642,-0.45319405,-0.16757292,-0.34620297,0.12561303,-0.26191157,0.04461926,-0.22873639,0.35586208,-0.29770973,0.065634295,0.31337327,-0.18392485,0.16144505,-0.34552872,-0.10319487,-0.23508541,0.13755654,0.101584956,-0.24510197,0.29349,0.27451736,0.63909507,0.053875733,-0.3339379,-0.2490503,-0.03666405,0.115020104,0.41758296,-0.111025356,-0.18111448,-0.28693485,-0.02702374,0.167095,0.1994658,0.02709759,-0.36964428,0.13992205,0.17827083,-0.29573923,0.32478532,0.48561656,-0.46791986,-0.1886848,0.40895417,0.5192498,-0.084919356,-0.1225826,0.3443618,-0.04176166,-0.37061974,-0.26968125,0.19168667,-0.14962712,0.4886829,-0.19498882,0.060623836,0.73306304,-0.0758628,-0.23935951,-0.17257224,0.059815347,-0.22024496,-0.3439429,-0.13902995,0.12950438,-0.502618,0.0321122,-0.25418496,0.7437756,0.24648456,-0.67114794,0.37458456,-0.51724344,0.26355907,-0.025572412,0.52229565,0.9026495,0.4627097,0.1776857,0.90527725,-0.64296776,0.1398048,-0.05485792,-0.42090517,0.1410344,-0.1797563,0.14689957,-0.5038253,0.13497636,0.016341472,-0.3088098,0.04425727,0.30842793,-0.42644033,-0.07609275,0.0019986948,0.789277,-0.370542,-0.122118436,0.8728853,0.9244639,1.0396502,0.05178315,1.248894,0.54638135,-0.21830413,0.1701656,-0.4270534,-0.56685674,0.10227684,0.30577025,-0.08458988,0.44572893,0.06799653,0.19682151,0.39403647,-0.3835163,0.10333236,-0.083610535,0.19985695,0.033996064,-0.09742338,-0.41187188,-0.25318676,0.042377345,0.115815714,0.09660866,0.39205292,-0.20739564,0.53605485,0.1271966,1.5749379,0.068869196,0.01969883,0.016012844,0.39435512,0.27743056,-0.24825653,-0.10733568,0.20932594,0.3166166,-0.013646251,-0.4725344,-0.054696035,-0.29870144,-0.34379753,-0.07186334,-0.288731,-0.06653572,-0.10882006,-0.37774274,-0.28705186,0.019620111,-0.24807829,0.50533384,-2.3210871,-0.17250396,-0.07742832,0.27644908,-0.21744142,-0.40466934,-0.18179628,-0.5790473,0.15419897,0.37384102,0.29547605,-0.70778155,0.47624967,0.34447682,-0.38507134,-0.049430236,-0.67665786,-0.026031367,-0.10012261,0.33867964,-0.028979294,-0.07178678,-0.19480225,0.26235357,0.61625606,0.112135366,-0.031229505,0.37132752,0.4275286,-0.06937406,0.5489283,0.21576554,0.62173617,-0.2809167,-0.10513889,0.45402202,-0.40391147,0.25838894,0.11973767,0.031284284,0.4114718,-0.52809936,-0.6748769,-0.7049819,-0.27792987,1.2268369,-0.3402192,-0.33228275,0.254288,-0.2908184,-0.29204115,-0.024129288,0.43506086,0.0409269,-0.11760219,-0.6912263,-0.07722089,0.058061805,0.12957893,-0.11867604,0.08036855,-0.20247647,0.6854688,-0.22742373,0.45242193,0.29764605,0.09780086,-0.028735256,-0.42684773,0.08125946,0.9698861,0.42206678,0.18659626,-0.23561566,-0.21751787,-0.31184295,-0.23546258,0.2089334,0.41297093,0.6651178,-0.12697114,0.01589846,0.44190896,-0.22522265,-0.015675366,-0.10370956,-0.2731993,0.010596251,0.023544231,0.5736525,0.63511026,-0.14671794,0.40305603,-0.19878162,0.16095063,-0.24452491,-0.57230383,0.5604127,0.94557154,-0.25769493,-0.2745009,0.448176,0.20477314,-0.36512554,0.4192295,-0.56875175,-0.21398497,0.5299843,0.01612429,-0.36978108,0.1956489,-0.32772896,0.03398065,-0.8941747,0.2787821,0.061586317,-0.6114111,-0.5001264,-0.15900135,-3.6136487,0.18815206,-0.042724952,-0.0019622266,0.010434775,-0.12321673,0.2355283,-0.38855103,-0.68300074,-0.018610211,0.007324028,0.56198335,-0.039849766,0.15568408,-0.2742,-0.24066572,-0.3993421,0.21394838,0.17230281,0.3288993,0.0070054135,-0.429383,0.00075695117,-0.38544872,-0.589776,-0.00032924017,-0.7077743,-0.5458822,-0.220865,-0.45132935,-0.3156839,0.7323963,-0.38404387,0.14805055,-0.27587265,-0.09963843,-0.2396272,0.22490744,0.16670308,0.064475276,0.14777066,-0.007311756,-0.17550482,-0.34356126,0.16593818,0.022775432,0.4875724,0.2777451,-0.13780193,0.19190677,0.59759617,0.75134903,0.058319356,0.69672054,0.35226756,-0.11296875,0.31207123,-0.28410447,-0.24588074,-0.62346214,-0.36052254,-0.31193054,-0.4903358,-0.4022296,-0.070881516,-0.39488515,-0.8189895,0.28107616,0.056202404,0.17999537,0.030915765,0.22921322,0.46015242,-0.2004056,0.0017198682,-0.102697365,-0.37194046,-0.5746613,-0.40928304,-0.49437886,-0.5408037,0.42540413,1.0863273,0.03085851,-0.038447015,-0.00048220655,-0.4785117,0.08851256,0.13639013,0.22725388,0.13675962,0.48397082,-0.27058476,-0.68674386,0.24013215,-0.14352593,0.019412171,-0.61528766,0.14208494,0.71316916,-0.58285546,0.6315175,0.19577383,0.17056863,-0.041946776,-0.42504272,-0.34861448,0.031896606,-0.25399834,0.522164,0.1721099,-0.6314701,0.39939174,0.23820281,-0.095834136,-0.55167335,0.36878997,-0.051155075,0.019691626,0.10123428,0.3060112,0.030402204,-0.113299295,-0.07291579,0.24316998,-0.57715726,0.20147318,0.4196719,0.044138543,0.16714954,-0.01655526,-0.25221345,-0.6481376,-0.14165415,-0.5163103,-0.27977544,0.015268834,0.15284637,0.0076061566,0.03848261,0.1341868,0.37414584,-0.09224656,0.11889498,-0.10748145,-0.2509351,0.5489315,0.44559005,0.3660694,-0.53718513,0.601342,0.059776854,0.066703714,-0.15017205,-0.021982232,0.45091045,0.26920682,0.32741058,0.18417826,-0.1910144,0.15428044,0.6201337,0.29927343,0.38193512,0.23560819,-0.21152133,0.34019825,0.23981364,0.1434451,-0.01965495,-0.328271,-0.059782267,-0.109286174,0.14380004,0.3726254,0.12178716,0.31821892,-0.1226263,-0.23958911,0.14950228,-0.041222513,-0.25025284,-1.4397664,0.24388427,0.3203129,0.65832484,0.46013227,-0.10494322,0.03492171,0.56000316,-0.3284746,0.08424017,0.4090571,-0.06477172,-0.4306895,0.49790102,-0.663015,0.44233054,-0.0661448,-0.007817407,0.07646527,0.3094922,0.32962385,0.8685526,-0.21755193,0.07792469,-0.1850263,-0.25875747,0.10039644,-0.30895722,0.056342993,-0.57621354,-0.38645205,0.58991724,0.3079418,0.33632526,-0.35554722,-0.0820992,0.036786664,-0.11285928,0.10147167,-0.021080494,-0.08945248,-0.14221528,-0.6164599,-0.44014516,0.5134559,-0.16760688,0.03246956,0.11616753,-0.372068,0.2898114,-0.20173383,-0.097599074,-0.0020671934,-0.70177674,-0.19659296,-0.27370042,-0.4044675,0.3818448,-0.25388873,0.27597693,0.13158785,0.035623133,-0.3935364,0.16386694,0.057413872,0.7221932,-0.021085612,-0.25058585,-0.31045097,0.15806088,0.20713122,-0.4052028,0.05624255,-0.15693349,0.07440771,-0.65775406,0.3539608,-0.0432816,-0.3120285,0.027002892,-0.052173078,0.045130346,0.45269424,-0.2960517,-0.15276274,0.09516153,0.042511966,-0.19397528,-0.13364868,-0.34077957,0.31370443,-0.09657957,-0.065964006,0.069692366,-0.10682387,0.010927987,0.34232166,-0.004165383,0.09913446,0.2945394,-0.010307642,-0.39206448,-0.024056189,0.061174612,0.2916036,0.2351958,-0.13241196,-0.1047801,-0.1949726,-0.3165359,0.24206585,-0.1628597,0.31224483,0.09535091,-0.45613036,0.8100924,0.11585858,1.3086625,0.017763274,-0.32138336,0.03231069,0.47643098,0.08389228,0.1331608,-0.19690171,0.7826628,0.657568,-0.23577406,-0.20209758,-0.39158276,-0.22184435,0.23239133,-0.16681805,-0.246995,0.0154219065,-0.8264958,-0.16199212,0.15846008,0.16290864,0.33297673,-0.012096719,0.061653692,0.09926822,0.02601579,0.46038514,-0.22027531,-0.19957542,0.40827465,0.20280984,0.0995818,0.15665501,-0.40859988,0.34877446,-0.6931865,0.1826952,-0.3159423,0.18348558,-0.054644544,-0.30835086,0.23087174,0.08693171,0.2753971,-0.36002007,-0.41200265,-0.259889,0.75666326,0.19292322,0.24955407,0.8088554,-0.269251,-0.23434213,0.18936986,0.38415784,1.1002922,0.08694601,0.06395148,0.44569412,-0.30660743,-0.6219019,0.3311072,-0.24078368,0.1747321,0.048283003,-0.35432383,-0.39144248,0.27303237,0.04968775,-0.061619498,0.20457621,-0.45026055,-0.1708781,0.34943163,-0.3323607,-0.17559499,-0.36454925,0.27425385,0.66368616,-0.35808957,-0.39594182,0.12319983,0.28155136,-0.36569986,-0.43607277,-0.03197382,-0.24558067,0.32511434,0.18722096,-0.36554986,0.054690283,0.27389267,-0.42333615,0.07387734,0.2245428,-0.46666875,0.14529726,-0.29721984,-0.18691012,1.0790098,0.051973905,0.23490156,-0.66126955,-0.5067619,-0.9616811,-0.41123953,0.2722245,0.08573437,-0.06979283,-0.55330443,-0.15576045,0.050463866,-0.081641294,0.11707776,-0.52131116,0.450232,0.22464861,0.30777687,-0.040752485,-0.96167904,-0.015019466,0.16692415,-0.100310616,-0.61635596,0.60632384,-0.10780772,0.8232952,0.09163979,0.15241699,0.17956857,-0.53750414,0.3005017,-0.24301721,-0.1432392,-0.6151408,-0.006869042,747 -277,0.3394726,-0.33307946,-0.38147762,-0.08203058,-0.11145649,0.083773874,-0.047972515,0.5471657,0.15304343,-0.5414025,-0.111060806,-0.14384441,0.027146053,0.21344016,-0.10705078,-0.24559736,-0.069989584,0.13652687,-0.33971253,0.5498269,-0.4417412,0.26726896,-0.042068172,0.37128595,0.30610272,0.2597369,0.07988434,-0.13169254,-0.12070988,-0.079531595,-0.17974363,0.3431227,-0.25702533,0.087076694,-0.15107499,-0.40695077,-0.1541419,-0.39121738,-0.37380567,-0.71712935,0.3333665,-0.8049386,0.4178985,0.025029715,-0.3473303,0.2049195,0.04264263,0.31498164,-0.19294204,-0.035554662,0.15870187,-0.0743955,0.068254925,-0.09304324,-0.032651007,-0.21817707,-0.51894206,-0.036147125,-0.33563626,-0.17549601,-0.25635183,0.093257904,-0.34137833,-0.17020066,-0.15257385,0.5221917,-0.4871145,-0.08217371,0.10455183,-0.10766014,0.4588713,-0.60089,-0.1756224,-0.21794683,0.22303048,-0.23721406,-0.24130405,0.18697494,0.22135574,0.53603214,-0.1266053,-0.03433369,-0.3854176,-0.049857076,0.15528835,0.44402975,-0.13283294,-0.6373336,-0.15383212,-0.072384626,0.120750055,0.18765903,0.10309938,-0.28886953,-0.15326498,0.13048308,-0.115081795,0.2823264,0.46813205,-0.2485062,-0.26857364,0.31209728,0.60234207,0.23413001,-0.1461632,-0.034942403,0.030535694,-0.45641536,-0.1625824,0.14844751,-0.2092883,0.61753297,-0.16811605,0.359565,0.5936043,-0.12384684,0.05924565,-0.03087441,0.09985154,-0.18287936,-0.18324305,-0.3559784,0.23423032,-0.4266552,0.21946517,-0.15309629,0.71633893,0.097341895,-0.689224,0.37443718,-0.44975337,0.15848252,-0.08443864,0.5715918,0.66307676,0.411692,0.32152328,0.6562418,-0.4191486,-0.028891644,-0.08975817,-0.3185135,-0.014095124,-0.21235783,-0.19627689,-0.53429955,-0.041209746,0.11665843,-0.11141316,-0.034731664,0.3741286,-0.48005214,-0.088200614,0.12842427,0.7020966,-0.31219482,0.015333863,0.73772264,0.9230911,0.9483661,0.028339257,0.9996204,0.15171455,-0.3162753,0.26584086,-0.25700644,-0.6515293,0.28862238,0.26202792,0.09654724,0.19992584,0.035906974,-0.031364586,0.51945806,-0.5153311,0.09104689,-0.20756157,0.008475749,0.08919103,0.010874561,-0.56047094,-0.3591957,-0.14178881,0.098502226,0.0061705154,0.23734312,-0.11146875,0.44482782,0.1025257,1.6674988,-0.17339776,0.037320413,0.10531519,0.5865695,0.11536848,-0.21372023,-0.106488965,0.26523307,0.42374668,0.119414225,-0.70048946,0.1503684,-0.08841349,-0.5787955,-0.03871565,-0.3571231,-0.104640014,-0.072834715,-0.55935645,-0.21901992,-0.18363973,-0.4011248,0.4684566,-2.7920532,-0.13977829,-0.035030298,0.28130645,-0.3252413,-0.3531944,-0.019005807,-0.4526227,0.3685798,0.3510868,0.46423307,-0.7581943,0.2600868,0.44668216,-0.45753497,-0.03383534,-0.6905472,-0.2505179,-0.032237314,0.37210143,0.07676303,-0.017152196,0.12739679,0.1616605,0.42580023,-0.08461715,0.15553118,0.17352238,0.27352402,0.06213341,0.43225864,0.031029869,0.481738,-0.34155792,-0.090109915,0.2917143,-0.29051894,0.27146962,-0.15413903,0.15545546,0.4555626,-0.47248438,-0.72320205,-0.6451272,-0.18460827,1.2229415,-0.16219787,-0.37634954,0.3252388,-0.5814182,-0.17978756,-0.21319538,0.49403378,-0.09074841,-0.1161007,-0.8810362,0.07465679,-0.046062436,0.19523789,0.02289433,-0.033514563,-0.4675142,0.5906988,0.03037755,0.58433706,0.39736286,0.16953732,-0.2379872,-0.43154857,-0.016366394,0.654894,0.3939486,0.19504446,-0.27752528,-0.14448912,-0.35005042,0.033976696,0.14084749,0.40164745,0.7481436,0.006648602,0.136084,0.3226118,-0.07615272,0.103331454,-0.13857602,-0.15559836,-0.12028196,0.10490321,0.5754287,0.4694711,-0.23073071,0.32396305,-0.09251117,0.08567743,-0.28456753,-0.38207582,0.47411355,1.0209334,-0.18106376,-0.19405746,0.5338783,0.622765,-0.21537997,0.38893336,-0.5655326,-0.23379454,0.4916706,-0.24145953,-0.48962206,0.1661715,-0.37886295,0.29151928,-0.9897953,0.11276639,-0.28652334,-0.49407384,-0.6502755,-0.01863947,-3.2652674,0.20446101,-0.21678586,-0.2550267,-0.10927185,-0.28132448,0.2544212,-0.57605404,-0.5697993,0.12370038,0.029502546,0.6313114,-0.0073859273,-0.0022999009,-0.25311747,-0.18362573,-0.25658575,0.12681325,0.011701573,0.380951,0.036924418,-0.5868582,-0.13062741,-0.1952687,-0.42214572,-0.012001623,-0.48170388,-0.42792574,-0.12997109,-0.47371438,-0.41777375,0.5896011,-0.20075181,0.121764265,-0.090614125,-0.088594146,-0.11168289,0.39375284,0.15774086,0.14565918,0.021658007,-0.08388689,0.010474082,-0.24848393,0.041017834,-0.0243675,0.13656618,0.35185432,-0.17886305,0.29134876,0.51918554,0.7241021,-0.18493955,0.87264186,0.63555616,-0.09253856,0.23504499,-0.26689497,-0.30994275,-0.590516,-0.27872112,-0.006981925,-0.39557347,-0.5717294,-0.037364826,-0.39214936,-0.83846486,0.48101088,0.04246425,0.25230408,0.040439587,0.121569365,0.52218276,-0.18059789,-0.007693978,-0.096683346,-0.11823122,-0.5896717,-0.29599926,-0.6686297,-0.453508,0.04980995,0.8664793,-0.14712913,0.030127525,0.08239596,-0.3606737,-0.04637979,0.17647572,0.060650762,0.1721565,0.26894516,-0.11210782,-0.57083064,0.5464391,0.19673397,-0.22340626,-0.44987094,0.20804842,0.6616288,-0.54593253,0.4894807,0.3569709,-0.043389093,-0.2664037,-0.5379448,-0.20371482,-0.076178946,-0.22177893,0.4616272,0.23774627,-0.60209113,0.37892908,0.38275275,0.019341938,-0.67763615,0.6480556,0.028306147,-0.27521533,-0.070499815,0.27538246,0.012296307,0.082381934,-0.19474147,0.23744363,-0.3922622,0.2306918,0.33701515,-0.044169817,0.31033248,-0.31262714,-0.005733947,-0.7733099,0.043749016,-0.61590505,-0.1088193,0.379315,0.11130129,0.18492483,0.13217518,-0.0053516603,0.3869845,-0.2712392,0.035140414,-0.011464177,-0.14926535,0.29214996,0.42990592,0.3496302,-0.35722435,0.5760914,0.08504953,-0.058943342,-0.22098345,0.17642733,0.39798504,0.19678293,0.47562045,-0.13139787,-0.3465024,0.29609478,0.7716927,0.32310575,0.4633208,-0.03509398,-0.08193713,0.18667544,0.15349767,0.28712568,-0.05568594,-0.4182059,0.04053526,-0.3187441,0.16794059,0.31284526,0.08213509,0.36964634,-0.11953879,-0.27151924,0.042626698,0.17492667,-0.06265618,-1.2309611,0.40659493,0.29171926,0.7922062,0.5912371,-0.0027169187,0.01929822,0.62460935,-0.31394258,0.23368448,0.3631438,0.096952505,-0.66010755,0.5654493,-0.70940155,0.4737913,0.0028323769,-0.011297343,-0.0170479,-0.15172829,0.39365262,0.5798363,-0.0760104,0.09659798,0.053485863,-0.3692392,0.19760492,-0.42371947,0.06010169,-0.60050905,-0.1740625,0.6909743,0.5025584,0.3189956,-0.108962454,-0.018281309,0.15365666,-0.04218942,0.13813943,0.14334269,0.25453535,-0.058357835,-0.6991648,-0.15856224,0.4593455,-0.14984252,0.11299092,-0.036582135,-0.35997763,0.1799706,-0.122879915,-0.087056905,0.010665317,-0.6207623,0.021195613,-0.36713403,-0.38653183,0.5560711,-0.18237415,0.38392118,0.18732451,0.07753684,-0.3088678,0.23266493,-0.03827254,0.7158343,0.045687616,-0.06985251,-0.3553747,0.06637398,0.28731441,-0.17349741,-0.24509244,-0.11676475,-0.03557644,-0.5129576,0.40389672,0.029648328,-0.19426791,0.14930053,-0.098203324,0.048290756,0.5792331,-0.12406028,-0.17829686,-0.1488792,-0.18247484,-0.26953995,-0.18337949,-0.09034846,0.3874565,0.16585916,0.16449963,-0.10128926,-0.030251812,-0.10897134,0.5064463,0.094107196,0.3161439,0.32749227,-0.0361305,-0.46448657,-0.15770514,0.11797992,0.41262665,0.016146215,-0.007951629,-0.26073295,-0.40797815,-0.39259896,0.027539037,-0.15555467,0.40613517,0.07979093,-0.18717547,0.76681083,0.03374,0.9943297,0.008467048,-0.51053333,0.09338024,0.39402038,0.021808961,-0.05357649,-0.22618197,0.8250708,0.4534645,-0.110442035,-0.15755913,-0.23603398,-0.008795198,0.21404587,-0.1716835,-0.1334984,0.03507607,-0.6593864,-0.16876109,0.334416,0.27237567,0.23733552,-0.08589229,0.036483373,0.26411054,-0.044778977,0.3149394,-0.37367153,-0.20440832,0.32679737,0.14918596,0.12832403,-0.009846922,-0.5028024,0.4518358,-0.459393,0.0615925,-0.3150024,0.21355338,-0.28900656,-0.3575765,0.23384236,0.07866649,0.24938585,-0.23427686,-0.36988685,-0.3311127,0.48509884,-0.0055318694,0.08665946,0.54302,-0.23032999,0.121531315,0.06166937,0.37602472,0.9065207,-0.20875266,-0.07419669,0.3973417,-0.3115118,-0.60799193,0.25364348,-0.2569277,0.31683448,0.043904506,-0.12093045,-0.55610615,0.27266896,0.31488124,0.048419658,0.0285403,-0.585943,-0.24596079,0.31299144,-0.2745004,-0.11806672,-0.34865734,0.03467786,0.48693556,-0.39492697,-0.3426226,0.011096318,0.26281136,-0.2242464,-0.48065987,0.11818876,-0.33598724,0.21691774,0.07660378,-0.44260547,-0.0628622,0.033557646,-0.38478014,0.050785862,0.19723047,-0.37368146,0.09834702,-0.47754675,-0.0462188,1.0585377,-0.17468613,0.15254433,-0.39915898,-0.36920798,-0.8317781,-0.3389865,0.5993336,0.10244039,0.046596054,-0.6763344,0.15576597,-0.02557292,-0.012320701,-0.112161286,-0.32703957,0.5619535,0.19026977,0.1830429,0.049125247,-0.49798658,0.20611082,0.07206223,-0.096905835,-0.36903864,0.57675827,0.084097706,0.8509246,0.1119433,0.22006546,0.2061351,-0.5504721,-0.043293573,-0.11098814,-0.26764545,-0.68844193,-0.11544419,753 -278,0.3778707,-0.15871754,-0.6709458,-0.07328148,-0.3772824,0.0460575,-0.33163396,0.053203724,0.17960325,-0.4664475,-0.14927734,0.027161406,-0.09564758,0.35277632,-0.113068946,-0.5379216,-0.07375953,0.2512415,-0.7635174,0.50361043,-0.5214734,0.5491418,0.2494294,0.02863052,0.033117108,0.3511492,0.21257785,-0.16254981,-0.14526705,-0.20587537,-0.030865274,0.03441251,-0.6577789,0.37140134,-0.14991131,-0.30903143,0.012998064,-0.37557632,-0.11299683,-0.61274993,0.07102485,-0.77796,0.64798605,-0.12384483,-0.17386886,-0.11217962,0.23691478,0.59259945,-0.15560126,0.13494733,0.30727294,-0.2905901,-0.36220092,-0.32105687,0.04121417,-0.4791095,-0.31675583,0.0075172065,-0.6095658,-0.30522987,-0.22452192,0.18504912,-0.27188128,0.16966392,-0.25129727,0.26923832,-0.35838038,-0.031329967,0.2159432,-0.18211715,0.17285423,-0.58525246,-0.028215801,-0.12634979,0.48014754,-0.21306644,-0.13941796,0.41002673,0.154849,0.4437806,0.29022038,-0.19618791,-0.100643605,-0.17911546,0.3562221,0.47584453,-0.06554054,-0.11736291,-0.29156455,0.16439782,0.3655189,0.219543,-0.02257237,-0.4232883,-0.00070827606,-0.1620031,-0.20168537,0.4398848,0.4458352,-0.2207703,-0.13685127,0.3272189,0.63239807,0.22678232,-0.16732128,-0.039250787,-0.08037493,-0.45582497,-0.13809477,0.14117017,0.006621011,0.4127958,-0.025705464,-0.082789116,0.7243303,-0.17377321,-0.24024442,-0.10864168,-0.12178983,-0.06333911,-0.07518915,-0.15322636,0.1709749,-0.5865659,0.0288349,-0.24465677,0.7030743,0.029155228,-0.8237584,0.45808133,-0.5654511,0.0763549,-0.014684669,0.59314823,0.6367477,0.6021425,0.097559914,0.8428872,-0.40318954,0.24502282,-0.14487743,-0.33590543,-0.03701845,-0.2587753,-0.057105422,-0.5038045,0.21932122,-0.29178315,-0.16331866,0.0020887058,0.34879047,-0.5987494,0.021437468,0.07494165,0.57019585,-0.39787596,-0.0019899209,0.8128604,1.1221429,1.1167086,0.12941304,1.218682,0.34326324,-0.23002486,-0.1029143,-0.24988894,-0.4943913,0.11582323,0.4229112,0.088410236,0.3141389,0.09019567,0.043743413,0.2732567,-0.3777325,-0.09621708,-0.06291676,0.51182663,-0.03590107,-0.16389206,-0.46807015,-0.12367686,0.06951387,-0.010538488,0.1022953,0.1883381,-0.24031843,0.4840067,0.18336535,1.1455623,-0.149741,0.041131187,0.04773272,0.29486626,0.25524244,-0.2190927,-0.09038889,0.33107388,0.34891096,-0.07123182,-0.5871437,0.0012761832,-0.21994954,-0.41679534,-0.19204634,-0.23102006,-0.06802171,0.08918942,-0.2206328,-0.2571444,0.1218092,-0.27824748,0.53659564,-2.5888393,-0.32984465,-0.13363175,0.29831356,-0.24741918,-0.346973,0.060061503,-0.49172133,0.303085,0.18324377,0.4380096,-0.41847217,0.51193625,0.339677,-0.5742117,-0.26138458,-0.6247008,-0.09575968,-0.041343953,0.5417947,0.014927904,-0.0793416,-0.18902527,0.048419356,0.5485944,-0.2341511,0.12849563,0.5177464,0.24729083,0.15743867,0.52726024,0.1819569,0.7135185,-0.32553482,-0.19430608,0.430368,-0.09068162,0.26220924,-0.11116816,0.08142976,0.34854168,-0.5053643,-0.7679344,-0.6875047,-0.39138755,1.2114996,-0.3090203,-0.4705576,0.09103588,0.025471417,-0.27555114,0.15540072,0.24709289,-0.015901994,0.19787937,-0.7515806,0.071457826,0.051259425,0.2849488,0.029328605,-0.0509042,-0.40838465,0.63406295,-0.12096879,0.4689506,0.37712708,0.36574465,-0.072622634,-0.28957456,0.05113099,1.1452998,0.3833354,-0.06810843,-0.17538263,-0.25851548,-0.08254308,-0.23690735,0.14406538,0.40232432,0.651435,0.029114582,-0.0369444,0.29039338,-0.19128896,0.14623706,-0.12092553,-0.2503695,-0.021604897,-0.034315016,0.4957568,0.56273013,0.027278988,0.5088924,-0.31749147,0.17858587,0.08906571,-0.5863811,0.64953345,0.7367642,-0.1589149,-0.17257811,0.4625166,0.5154815,-0.19426432,0.4928559,-0.5656761,-0.25530612,0.64930266,-0.14674991,-0.28916585,0.17044209,-0.35501158,0.31540635,-0.8870379,0.37912592,-0.42979506,-0.5151804,-0.43741027,-0.12546542,-3.1614876,0.23460366,-0.041683067,-0.075330764,-0.08398498,-0.02545995,0.2960098,-0.62800366,-0.58316994,0.16265137,0.1505797,0.5829724,-0.075007565,0.087440886,-0.11744837,-0.32869157,-0.031443875,0.29324505,0.103357986,0.22154911,-0.23198605,-0.29784578,-0.042152897,-0.20666467,-0.45648518,0.16662283,-0.55704653,-0.42187154,-0.11767108,-0.4455606,-0.22870782,0.6111071,-0.4735694,-0.003672413,-0.1973584,0.16511315,-0.072377086,0.045704387,0.033976782,0.30742946,0.32840785,-0.0908779,0.06916897,-0.32643622,0.3576061,0.0754871,0.24578173,0.15182234,-0.13021971,0.106836714,0.5127237,0.74758285,-0.13373022,0.944069,0.35654208,-0.18253602,0.10515575,-0.31910995,-0.34129232,-0.72752607,-0.37602216,-0.15000932,-0.4219941,-0.5902882,0.027722955,-0.24687259,-0.80977607,0.697837,0.0062143086,0.1735805,-0.06693546,0.40608898,0.2668232,-0.18538332,-0.12386646,-0.16204514,-0.18864837,-0.47289863,-0.38651377,-0.69085157,-0.46391764,-0.09114919,1.0686257,-0.25666317,0.23526828,-0.005038901,-0.3473963,0.17603867,-0.008398276,0.10427725,0.21058917,0.32263032,-0.09281765,-0.6869999,0.29721406,-0.084585115,-0.11477669,-0.49204782,0.36013952,0.7498857,-0.5328576,0.39585048,0.3966706,0.032628346,0.15824004,-0.442891,0.02424738,0.13873404,-0.31138358,0.45243445,0.122192636,-0.5625728,0.58837724,0.2920281,-0.50104487,-0.74641776,0.25447965,0.020993296,-0.06478606,0.109233595,0.2207763,0.08286096,-0.08917427,-0.29298943,0.21242078,-0.46683055,0.24531892,0.21190275,-0.014201411,0.071776256,-0.19161406,-0.40592727,-0.73467904,-0.03535746,-0.43355435,-0.17500047,0.15623775,0.032703713,0.0005681713,0.12609723,0.19126634,0.46743882,-0.26945516,0.05432333,-0.12254812,-0.35257822,0.2745088,0.46558437,0.36539367,-0.31127888,0.5407177,0.106185146,-0.11840451,-0.11023797,-0.031638715,0.4887744,0.13179626,0.20502742,-0.03343458,-0.07362366,0.25892088,0.6206649,0.22266702,0.39911932,0.06283593,-0.29475754,0.29536614,0.13468795,0.2222036,0.05535693,-0.29077065,0.07542704,0.0847189,0.07086169,0.47211885,0.30664024,0.38064176,-0.05692112,-0.20853806,-0.04714934,0.233558,-0.029165229,-1.1682382,0.5215,0.24359019,0.5995296,0.47743642,0.14824621,0.037221666,0.6773145,-0.56830055,0.06237403,0.2226598,-0.05558948,-0.41508818,0.48650685,-0.67997754,0.33881897,-0.11412017,-0.08284521,0.21571206,-0.004030359,0.29344738,1.0313565,-0.238848,0.04646069,-0.093775585,-0.17212638,-0.10524482,-0.2970802,-0.102411866,-0.37154076,-0.49883813,0.86219317,0.13916032,0.44440323,-0.20727839,-0.011621227,0.059331045,-0.26510468,0.30986273,-0.0689297,0.16537851,0.18115582,-0.37675148,-0.19257998,0.5321877,0.0061843633,0.21062975,-0.070519,-0.21498355,0.15073654,-0.18863538,-0.03993829,-0.0012145141,-0.5755898,0.033694983,-0.1845368,-0.34256735,0.25084648,-0.17987975,0.07993296,0.08914623,0.025521036,-0.13517304,0.2524441,0.13685423,0.7472418,0.20197228,-0.319168,-0.1811356,0.15721117,0.2936922,-0.2110171,0.31561154,-0.20533891,0.08963464,-0.7552317,0.46479315,-0.174593,-0.3651152,0.33132017,-0.14878224,-0.0128388945,0.49900946,-0.21694441,-0.1397231,0.21335761,0.015766962,-0.35198778,-0.2571109,-0.29919186,0.122163296,0.26380014,0.015822165,-0.10726168,-0.22102816,-0.13731517,0.48877925,0.055758562,0.460024,0.08632342,0.014429339,-0.3958421,0.030974556,0.10284608,0.2848104,0.11994408,0.023767225,-0.32284343,-0.39710867,-0.34605682,0.2034468,-0.10849745,0.12140497,0.034360904,-0.38840848,0.85601646,-0.10709658,1.2286073,0.024809768,-0.33382314,0.13417415,0.50496143,-0.10259797,0.15014566,-0.3965709,0.8664322,0.6331841,-0.02045794,0.056354802,-0.58886594,-0.20535745,0.20437972,-0.43269715,-0.11218414,-0.035262402,-0.47773615,-0.49504787,0.2137194,0.2298573,0.005849107,-0.0409482,0.11970353,0.12837979,0.18504384,0.2758903,-0.457395,-0.13563803,0.27390924,0.2940129,-0.07984293,0.057793543,-0.54721606,0.45844582,-0.7824752,0.25000668,-0.34594434,-0.019522572,-0.12492952,-0.24984951,0.16922374,0.06738681,0.1679164,-0.35971037,-0.47058123,-0.06619035,0.3930763,-0.09853938,0.0044672964,0.71172804,-0.30373028,0.12805924,0.14861518,0.36794376,1.0083503,-0.3518574,0.008714271,0.22758254,-0.35440403,-0.407639,0.33937094,-0.22145097,-0.08129082,-0.15173848,-0.35709578,-0.5474048,0.21146813,0.083381735,0.029210232,0.071988784,-0.70162374,-0.047928073,0.33652028,-0.3789705,-0.2305391,-0.074954264,0.3595181,0.681554,-0.38251907,-0.44138342,0.068505205,0.24463351,-0.35781604,-0.44541714,-0.17210414,-0.14137472,0.4096431,0.23090558,-0.21153723,-0.11461356,0.3926653,-0.45947707,-0.13247146,0.23463967,-0.39754587,-0.01496769,-0.2312901,0.053901818,0.66701716,-0.14233573,0.038475685,-0.62981665,-0.4690344,-0.9302027,-0.33938232,0.24945575,0.342378,0.033544675,-0.55887926,-0.0013309459,-0.13966538,-0.11217154,0.11740756,-0.6345919,0.37453502,0.18594739,0.35498267,-0.32594016,-0.95076144,0.13420364,0.16554716,-0.047349215,-0.5892812,0.49938953,0.0012121598,0.9450086,0.11392002,-0.15764411,0.03273218,-0.62107223,0.29267254,-0.21150139,-0.095760144,-0.78403175,0.04664435,758 -279,0.47987297,-0.19524996,-0.60297495,-0.03620205,-0.28220594,0.17882295,-0.15346892,0.33189815,0.2425011,-0.5094523,-0.018471133,-0.047603536,-0.022975245,0.2135574,-0.23638763,-0.42293072,0.008873892,0.26709816,-0.43628967,0.75463337,-0.32098567,0.30688444,0.076997206,0.33974394,0.21244475,0.13867597,-0.042477574,0.0011730035,-0.25825325,-0.2638766,-0.12207576,0.52761424,-0.511964,0.14755462,-0.1479324,-0.38920775,-0.21260346,-0.4109662,-0.36010388,-0.7431561,0.10147527,-0.81098926,0.76523125,-0.011424061,-0.2876291,0.113703914,0.31408152,0.2108943,0.019014176,0.027074507,0.15835322,-0.119163975,-0.22129335,-0.12603225,-0.28900927,-0.6861664,-0.58153176,0.09811003,-0.5213006,0.030321991,-0.1401572,0.23383507,-0.30067554,-0.12607284,-0.14296237,0.48847237,-0.34563172,0.06950908,0.15178952,-0.0100582875,0.32795423,-0.64283943,-0.33278638,-0.23737437,0.2343347,-0.26450914,-0.34128192,0.08547594,0.384895,0.5864278,-0.011988549,-0.21761456,-0.3675909,0.032506984,0.012441155,0.46774432,-0.3363896,-0.5835427,-0.29060143,0.07640763,0.38413492,0.1895488,0.17633496,-0.27904707,-0.046521854,0.07911162,-0.38518256,0.6012688,0.3812806,-0.3603045,-0.169513,0.3449808,0.4664891,0.25170457,-0.26162174,0.021779176,-0.027180629,-0.5673207,-0.06440846,0.1943361,-0.07119739,0.52168685,-0.11329453,0.1860487,0.551733,-0.18113764,-0.11033848,0.2468438,0.14995568,-0.072068825,-0.16431384,-0.3051611,0.21165337,-0.3468629,0.05873063,-0.13750297,0.5885667,0.03126143,-0.8621157,0.22341973,-0.59529024,0.038087867,0.001953121,0.44926172,0.857658,0.5235482,0.13868055,0.6296136,-0.05748148,0.0037983814,-0.13377878,-0.27987832,0.04890887,-0.1813983,-0.07517919,-0.64083636,0.027084565,-0.04529883,-0.098217405,0.007862822,0.6317833,-0.5876252,-0.27799118,0.14977652,0.78270465,-0.27521974,-0.2785507,0.8813344,1.0257397,0.9280604,0.063053206,1.1737069,0.11283802,-0.12455138,0.07735084,-0.21057227,-0.57586926,0.35843557,0.2677967,-0.6205236,0.49169573,0.12469843,-0.09414151,0.3267485,-0.2652729,-0.12907115,-0.27825218,0.06308099,0.067838974,-0.23302498,-0.4580178,-0.3177644,-0.051694617,0.07259272,0.27441457,0.21976,-0.315882,0.35184595,0.20818032,1.5683591,-0.17878573,0.031891096,0.032393683,0.30304602,0.26376548,-0.102820076,-0.016257819,0.26078907,0.42614236,0.21296878,-0.4490219,0.06320394,-0.039240297,-0.47497457,-0.14319451,-0.31055024,-0.21247672,-0.11700806,-0.51983064,-0.15974264,-0.143606,-0.433348,0.3995566,-2.6049116,-0.18616103,-0.12559639,0.24190561,-0.21281853,-0.49769384,-0.16524902,-0.42323634,0.3165636,0.22341092,0.41378647,-0.6448855,0.58659446,0.3569269,-0.50077474,-0.2542457,-0.73908406,-0.1652386,-0.09507763,0.37347898,-0.07154628,0.00090606016,0.25390288,0.118834905,0.5268779,-0.27570564,0.113647535,0.24025649,0.5070005,-0.02095533,0.5444527,-0.093081,0.62333554,-0.21326551,-0.29347888,0.33713996,-0.39016807,0.16230133,0.12389339,0.13040237,0.41884565,-0.44528115,-0.9849668,-0.6510957,-0.23979534,1.1643369,-0.23513412,-0.4234277,0.08777244,-0.40078926,-0.3211235,-0.022446474,0.36146036,-0.10650061,-0.054448724,-0.89646524,0.0035167236,-0.12781836,0.20729843,-0.06877585,0.05881296,-0.546507,0.61261976,-0.07685992,0.5042448,0.35723847,0.26975816,-0.4299009,-0.53060424,-0.016976114,1.1345893,0.25197086,0.07053579,-0.26593864,-0.1392683,-0.32768357,0.12918511,0.1184258,0.6657753,0.48306096,0.05540268,0.107932284,0.26517937,-0.069061086,0.2593754,-0.20435932,-0.30500183,-0.31365436,0.11040215,0.6330138,0.45250568,-0.19831726,0.7169195,-0.27551147,0.3490719,-0.14429024,-0.54138446,0.5047322,1.3432348,-0.23730066,-0.36926895,0.73106754,0.60054785,-0.15715382,0.40034863,-0.5576411,-0.39659417,0.34722343,-0.110467404,-0.29238886,0.36956283,-0.34974307,0.13342057,-1.0586199,0.19794068,-0.2673465,-0.4607426,-0.51068485,-0.013366175,-2.7346983,0.24454863,-0.22485806,-0.20837337,-0.15886627,-0.31381035,0.32485324,-0.5834599,-0.5023268,-0.05356931,0.10991665,0.5967855,-0.020694971,0.076783724,-0.18061088,-0.30413634,-0.054497175,0.29807746,0.21927474,0.3435932,-0.1666995,-0.5325587,-0.11146196,-0.15728466,-0.35632372,0.0764905,-0.92701846,-0.46299455,0.0424963,-0.6049392,-0.3154358,0.6714146,-0.4317412,0.016504461,-0.21825273,0.08238124,0.023646919,0.28049004,-0.17366035,0.1588147,0.0657286,-0.08657244,0.11977736,-0.17853278,0.15027437,0.045102764,0.1855815,0.37569815,-0.14025357,0.3817143,0.52142966,0.66954315,-0.06828354,1.0066656,0.69307,-0.1227932,0.30805442,-0.25152212,-0.29630694,-0.6765776,-0.2154028,0.008743343,-0.49862468,-0.40912566,-0.08312189,-0.3171508,-0.79589003,0.7277146,-0.13277107,0.08404722,-0.10666296,0.5029052,0.6062929,-0.2388685,0.08607981,-0.09326111,-0.31527895,-0.3508399,-0.41012943,-0.52347225,-0.40868804,-0.23566565,1.2153277,-0.14731644,0.30803537,0.06216348,-0.10879292,-0.020053057,0.18210858,0.15233196,0.18561544,0.5578755,-0.16571093,-0.56627023,0.31961504,-0.46865818,-0.1838617,-0.44295946,0.2889667,0.7067015,-0.66143495,0.5218373,0.51520145,0.11653531,-0.2618177,-0.5290044,-0.018263848,0.11341213,-0.18836921,0.5866948,0.42750224,-0.6949941,0.49088722,0.38958022,-0.18054308,-0.64191014,0.6913508,0.014593359,-0.2522023,-0.15274435,0.37870455,0.12528743,0.10444999,-0.1538927,0.16334298,-0.37276286,0.19409296,0.107211165,-0.11553028,0.25271386,-0.22038509,-0.09110903,-0.8525042,0.086391576,-0.48600838,-0.3830745,0.2574436,0.0943122,0.15425867,0.25170815,-0.11297996,0.3395622,-0.5265145,0.038021706,-0.21250175,-0.2486083,0.24080181,0.47559488,0.48415774,-0.44390953,0.53453594,0.018796988,-0.17171784,-0.11154649,0.16618699,0.5737249,0.0055325585,0.41027144,-0.003907001,-0.2376083,0.36823446,0.6749944,0.15071917,0.40302497,-0.045310702,-0.108493365,0.106292404,-0.0052607963,0.2734661,-0.08055006,-0.54738873,-0.21819392,-0.08500104,0.20849879,0.5911065,0.049079496,0.27355957,-0.17653571,-0.31660467,-0.01728758,0.23622866,0.19299284,-1.4379852,0.2754263,0.1815779,0.8198911,0.28848785,0.041419905,0.05314517,0.5719211,-0.40085548,0.08827103,0.34358922,0.014381547,-0.32012406,0.5016746,-0.7394964,0.45957863,-0.11332882,0.13681485,0.014937762,-0.105842926,0.45847988,1.0031916,-0.16193987,0.12138762,0.08664814,-0.32399607,-0.00055322226,-0.40292662,0.115269616,-0.5754814,-0.29947045,0.7367827,0.52213246,0.51293933,-0.3093107,0.047174808,0.16783933,-0.15139027,0.14516804,0.14417848,0.1674431,-0.26778615,-0.75529695,-0.10698898,0.6758029,0.22108306,0.14383604,0.15402037,-0.28847918,0.36058277,-0.04441903,-0.032515153,-0.07306182,-0.58600366,-0.1286314,-0.52201235,-0.41205204,0.44774595,-0.27789986,0.07994052,0.23783775,0.05255331,-0.24765202,0.32560647,0.23445095,0.6733462,0.10307732,-0.04554956,-0.3824956,0.10826389,0.15790328,-0.20760213,-0.3487224,-0.18401247,0.24698299,-0.59382474,0.25868335,-0.12919734,-0.28644818,0.051073942,0.0015762687,0.13808337,0.4939422,-0.038424633,-0.033892337,0.07788617,-0.12477328,-0.29930007,-0.10807807,0.03987032,0.2689786,0.26466724,-0.17090143,-0.10441758,-0.1879666,-0.21208252,0.34901682,0.056816358,0.48771033,0.61887383,0.309487,-0.2781607,-0.036902048,0.3353618,0.6075217,-0.19399418,-0.0542952,-0.31237447,-0.32393357,-0.22861685,0.17644635,-0.11325122,0.23991632,0.08458308,-0.38545695,0.9568274,-0.067372575,1.2773402,-0.023804452,-0.42951155,0.027930435,0.37183216,-0.12244091,0.014511967,-0.33105117,0.98434705,0.5063817,0.042331148,-0.10472382,-0.39883745,-0.04506452,0.03572259,-0.29114512,-0.16661929,-0.0750432,-0.513033,-0.23811641,0.1393902,0.17258306,0.08787656,-0.06664595,0.18151648,0.24960075,0.025400344,0.17618497,-0.54718024,0.007841524,0.13418885,0.49632505,-0.067813314,0.11318391,-0.49982542,0.40694767,-0.48856595,-0.0033245205,-0.2786744,0.2440645,-0.11778244,-0.1752638,0.2656808,-0.16863617,0.3138806,-0.4159251,-0.19746472,-0.26557893,0.4832675,-0.07942849,-0.15535119,0.5170497,-0.24541087,0.11900927,0.07926772,0.48967022,1.0704771,-0.32441208,0.00668298,0.22108212,-0.3406685,-0.6534247,0.24099733,-0.4218236,0.22603635,-0.002916641,-0.15713698,-0.4332369,0.39571106,0.17098404,0.23846075,-0.030878842,-0.50561434,-0.04633189,0.29431263,-0.32682896,-0.16032107,-0.19794963,0.2392995,0.4923296,-0.29426283,-0.39124677,-0.049452607,0.41742185,-0.10751017,-0.54185766,-0.018852798,-0.42865822,0.27710325,0.14145678,-0.36472923,-0.08299112,-0.10293861,-0.4552888,0.03154315,0.40306422,-0.27876323,0.03409876,-0.3221835,-0.32064036,0.9550243,-0.21897475,0.28012067,-0.48391145,-0.538034,-0.7825328,-0.33292875,0.1327269,0.24256249,-0.050371516,-0.5951418,-0.042940576,-0.09753812,-0.510817,-0.0024527828,-0.37629744,0.52118737,0.113751456,0.36723274,-0.18841067,-0.77401733,0.2393838,0.06625556,-0.11916794,-0.59431994,0.5048526,0.06647858,0.9353604,0.22311006,0.26231685,0.3027766,-0.51800394,-0.21000725,-0.0025713763,-0.07461105,-0.95414704,-0.176524,761 -280,0.29015228,-0.098057285,-0.55431783,0.0002502203,-0.12413079,0.04092424,-0.13742177,0.39552116,0.32730952,-0.23131265,0.028428646,-0.09097253,-0.036870304,0.17633584,-0.06375677,-0.4267107,0.099412076,-0.008301882,-0.46355093,0.5675625,-0.38046157,0.23592854,-0.17916924,0.46064356,0.117386274,0.19998361,0.048100058,0.13607444,0.030026145,-0.30000624,0.03629938,0.40716758,-0.5884124,0.31807432,-0.10036784,-0.16832985,-0.034030672,-0.41061264,-0.45513546,-0.78501713,0.18792123,-0.5403168,0.48151907,0.0006123225,-0.29714185,0.09895758,0.11796986,0.108710974,-0.11606029,-0.14185813,0.08188723,-0.18060312,-0.04690492,-0.3113571,-0.1688229,-0.33468053,-0.5257917,-0.03678316,-0.45950565,-0.033188716,-0.41398796,0.20501947,-0.41032627,-0.1416108,-0.19149698,0.5523471,-0.3770823,0.27504072,0.1379746,-0.15964495,0.15408853,-0.6965708,-0.243433,-0.09439442,0.13381548,-0.094474874,-0.38653752,0.35959733,0.31659207,0.30383044,-0.0035506983,-0.07977023,-0.32517463,-0.057658445,0.02017091,0.4207157,-0.18305896,-0.54875827,-0.14272645,-0.0014905533,0.11378999,0.29259196,0.019810796,-0.30796215,-0.100312196,0.10467809,-0.23009835,0.59036624,0.6050937,-0.21848351,-0.2715685,0.22867604,0.342972,0.38844126,-0.13013862,0.019282715,-0.01375914,-0.6155969,-0.2144884,0.048386525,-0.040108766,0.43118432,-0.042492915,0.28724143,0.69613254,-0.15824512,-0.31295034,0.20371078,0.0847472,0.097190656,-0.33739492,-0.07672512,0.13265502,-0.3686313,0.18683742,-0.045778133,0.7123635,0.14721319,-0.62126607,0.3553115,-0.48913682,0.10251915,0.018281123,0.58906764,0.8225356,0.4888167,0.40626782,0.73921984,-0.25065547,0.08560468,-0.13236217,-0.33128172,0.013016661,-0.15073362,-0.010790308,-0.41939458,-0.11094194,-0.07249306,-0.01241682,0.17552692,0.5518401,-0.56962144,-0.21473286,0.074920624,0.81910974,-0.13436626,-0.08037555,0.6723823,0.9949828,0.975515,0.025343288,1.0449262,0.013613205,-0.06885772,0.13713087,-0.13336986,-0.6973599,0.3410037,0.20461203,0.07355166,0.05828185,0.008720288,-0.18379946,0.386375,-0.23420066,-0.22873642,-0.08477557,0.5054743,0.20067517,-0.17749906,-0.14937371,-0.27485868,-0.0442195,0.108570956,-0.0076775867,0.24028839,-0.21999566,0.39180842,0.06339627,1.5273678,-0.013536179,0.10428653,0.09557042,0.62215006,0.35015932,-0.1974249,0.09158022,0.27611256,0.13787904,0.20840819,-0.4814939,0.14324889,-0.21251869,-0.43615964,-0.08063305,-0.34494808,-0.1985775,0.03545412,-0.36482006,-0.13478817,-0.1728933,-0.22965214,0.5170704,-2.8786025,-0.1657407,-0.0072148284,0.40528324,-0.11470444,-0.31646326,-0.13240817,-0.48916575,0.47276175,0.19789194,0.5696768,-0.624305,0.16969019,0.48987758,-0.50557655,-0.17660253,-0.4468184,0.03353445,0.11073799,0.36398092,-0.03742973,-0.06883524,-0.062057503,0.01329213,0.4933922,0.037810914,0.17748626,0.33144102,0.33399716,-0.18567546,0.38935286,-0.07555493,0.44932187,-0.1920241,-0.26123294,0.4001365,-0.3893989,0.3581058,-0.16941123,0.024454674,0.539288,-0.39740834,-0.9571127,-0.39893335,-0.12366519,1.188652,-0.06079391,-0.6242247,0.27395782,-0.5987143,-0.24065046,-0.21312192,0.52354884,-0.14750977,-0.13667418,-0.52861285,0.08535733,-0.104075685,0.24433313,-0.048656963,-0.13143508,-0.3592269,0.64008975,-0.051652785,0.3219995,0.30638275,0.09479694,-0.5580473,-0.5350145,0.05199313,0.70243365,0.5247703,0.09893857,-0.18601684,-0.1544453,-0.18658523,-0.13618492,0.095954165,0.9154707,0.44729412,-0.07927014,0.2268412,0.32571873,-0.008060757,-0.015347784,-0.33856937,-0.17660001,-0.27858916,0.1462185,0.690922,0.6555888,-0.06397737,0.52540296,0.1116313,0.04840299,-0.14347933,-0.6016535,0.44698474,1.1973112,-0.20992248,-0.2939249,0.4075309,0.22760276,-0.24541989,0.24723658,-0.3682963,-0.3452961,0.5051296,-0.18270487,-0.47915572,0.26928127,-0.26825047,-0.10129724,-0.4390727,0.25317734,-0.4377135,-0.75631684,-0.5435316,-0.14594698,-3.3582451,0.18400006,-0.35007972,-0.14471093,-0.2930661,-0.13055709,0.07821624,-0.4156738,-0.45813674,0.116638586,0.21604054,0.6564297,-0.24858488,-0.0347023,-0.28340298,-0.3777613,-0.32905433,0.2013902,0.30725285,0.39825335,-0.087318495,-0.31086853,-0.05426156,0.092282996,-0.51160145,0.04370486,-0.36974335,-0.530616,-0.15500452,-0.5378733,-0.35838884,0.7742111,-0.24548493,0.032609668,-0.253263,0.03378775,0.01767181,0.24088942,0.11358503,0.1839829,0.013427396,-0.15177883,0.026688462,-0.24219881,0.1561415,-0.07993818,0.41695264,0.3500748,-0.016895274,0.1891525,0.39980558,0.5858869,-0.022167752,0.95543313,0.3388464,0.0040438,0.36600035,-0.19735989,-0.3599538,-0.47680703,-0.2402456,0.14196303,-0.41381836,-0.33162132,-0.0579507,-0.27541772,-0.66340166,0.48706284,-0.0126345875,0.08329092,-0.016972471,0.32966477,0.6073074,-0.17689155,-0.07743318,-0.11248942,-0.08784902,-0.44976488,-0.32556495,-0.62948394,-0.6035737,0.09037523,0.75597095,-0.3860441,0.026623344,0.043591198,-0.247601,-0.085073106,0.12435754,0.03407344,0.09660545,0.3467944,-0.08564312,-0.5427338,0.40619868,-0.22345985,-0.16345866,-0.64557356,0.44910938,0.6870011,-0.6104729,0.68123394,0.24595243,0.114257984,-0.28594366,-0.62689346,-0.04162926,-0.09626205,-0.2690071,0.45168132,0.2244311,-0.96039677,0.48508367,0.30939806,-0.24940707,-0.62362653,0.49937162,-0.16671322,-0.33604228,-0.09997185,0.37505844,0.25413835,-0.04104079,-0.09201605,0.4553612,-0.29774055,0.31994683,0.080834195,-0.20137654,0.3347597,-0.1429046,-0.2314539,-0.65659744,0.005930543,-0.4553042,-0.4934026,0.20643844,0.12230252,-0.0580951,0.10671366,0.05138322,0.47001114,-0.21154627,0.18586062,-0.1227953,-0.29293868,0.27588025,0.54661757,0.6594443,-0.238525,0.61100316,0.026888167,0.008368538,0.2177942,0.24593481,0.35583168,0.012131312,0.5158058,-0.019552104,-0.114663266,0.15123263,0.9222438,0.09967308,0.4953776,-0.2662774,0.024198364,0.1819658,0.018366843,0.28370634,-0.12408399,-0.48662332,-0.006913664,-0.24681582,0.18109293,0.53093415,0.19465177,0.19249602,-0.1292359,-0.26820955,0.019929789,0.38347426,0.020680774,-1.1284859,0.33594677,0.22508997,0.9779171,0.32609117,0.17079467,-0.035302155,0.59229416,-0.040258374,0.019343829,0.2394791,0.20270975,-0.44267273,0.44571155,-0.81133705,0.5369737,0.015727313,-0.07445569,0.10835513,-0.0818081,0.40813664,0.83377445,-0.23996454,-0.18651262,-0.017766993,-0.3183069,0.18548292,-0.4600479,0.113496535,-0.47317684,-0.47238427,0.60999554,0.73338324,0.19443804,-0.32995,-0.04717796,0.016248971,-0.24557748,0.1008022,-0.15994032,0.10531134,-0.27099138,-0.5784684,-0.1479873,0.5077072,-0.02533744,0.21237157,0.044504162,0.07224546,0.28890312,-0.051637784,0.09996616,-0.14457822,-0.5903103,0.18384483,-0.3696615,-0.4158421,0.48227355,-0.32556075,0.21811524,0.27129757,0.12557247,-0.26367277,0.55115664,0.016074507,0.64394075,-0.22988968,0.016817868,-0.5093262,0.09440296,0.107599325,-0.2167075,-0.10314191,-0.15707825,-0.08195244,-0.58732694,0.28422752,-0.14768693,-0.18631461,-0.015675513,-0.06225698,-0.026597623,0.51004946,0.02160577,-0.15167433,0.04714985,-0.30150303,-0.27141014,-0.08408436,0.09603048,0.2567685,0.18125218,-0.111306354,-0.029027754,-0.21227033,-0.12946399,0.15670888,0.009334342,0.21920513,0.3384201,0.31405583,-0.27461687,-0.07326223,0.2162775,0.7629421,0.048932675,0.006470688,-0.24315509,-0.48007146,-0.39787763,0.08154648,-0.12185051,0.34451038,-0.06408707,-0.40118954,0.59963745,-0.11602078,0.97930205,-0.010652618,-0.25410885,0.09195529,0.4938093,-0.10577822,-0.048091736,-0.32481003,0.8433141,0.38592193,-0.11067135,-0.104930624,-0.17253295,0.057529174,0.29212043,-0.22546549,-0.17717332,-0.1038547,-0.6375032,-0.027831614,0.15155132,0.25258896,-0.04216801,-0.17207582,-0.17916109,0.3790593,0.06468817,0.19014685,-0.49933988,-0.08318333,0.23768291,0.23249243,-0.045972038,0.14758058,-0.3851091,0.31888255,-0.48117974,0.14978644,-0.13224837,0.26344237,-0.31892815,-0.24158093,0.3001939,-0.00538282,0.34603444,-0.2219155,-0.23566471,-0.28925756,0.19985715,0.2580609,0.13584958,0.5335985,-0.28656903,-0.06570644,0.15984544,0.4800962,1.0255929,-0.236378,-0.29232755,0.25131798,-0.44933563,-0.58143604,0.29824695,-0.42549384,-0.018772315,-0.021267109,0.026360543,-0.37387636,0.26485935,0.17181106,0.14258105,0.025824431,-0.8194277,-0.07337894,0.039404657,-0.2958154,-0.20366076,-0.36758476,0.11995812,0.7774258,-0.22506665,-0.2787698,0.14848597,0.31935802,-0.09961296,-0.5340411,0.10922933,-0.4294313,0.21049172,-0.13568671,-0.40832633,-0.11177407,-0.025100088,-0.54362935,0.09215507,0.053133387,-0.39278793,0.04498995,-0.020897234,-0.107347526,0.778061,-0.4114533,0.4584116,-0.29020363,-0.5314594,-0.554508,-0.17829838,0.36854538,0.07782138,-0.022330364,-0.6076481,-0.16579638,-0.10064163,-0.28790295,-0.1556744,-0.40802008,0.35298872,0.0025118133,0.20095305,-0.21146645,-0.84148777,0.28174174,0.12876157,-0.005317418,-0.557069,0.53678215,-0.17519374,0.58803004,0.14237906,-0.03815764,0.23536192,-0.39876634,0.047657855,-0.15829028,-0.19490398,-0.54403526,0.06711792,763 -281,0.46861845,-0.19180854,-0.63707364,-0.03736381,-0.4164275,0.21097773,-0.13354634,0.46692294,0.113481075,-0.5575023,-0.04788346,-0.1990131,-0.07880941,0.15944293,-0.15582167,-0.3218234,0.083845094,0.12753367,-0.45931855,0.50203705,-0.24768807,0.31507066,-0.07868001,0.32923162,0.13070604,0.19436601,0.046708267,0.09755404,0.011048715,-0.23250628,-0.3034231,0.2596021,-0.54389805,0.14276543,-0.17008492,-0.5228211,-0.06215555,-0.4199389,-0.39101407,-0.74432945,0.28975445,-0.87895674,0.5517558,0.059345298,-0.27673975,0.2372664,0.13559645,0.21462847,0.01733312,-0.015425629,0.18050656,-0.26158872,0.05205166,-0.27750537,-0.41405448,-0.52949315,-0.5835634,-0.14057738,-0.48769042,-0.38271746,-0.31719297,0.14677662,-0.3898316,0.010637855,-0.13293213,0.58231133,-0.3609695,0.049800713,0.11299267,-0.17954822,0.28905302,-0.71633923,-0.15171903,-0.11227087,0.21537799,-0.078417696,-0.16653152,0.2091989,0.35046715,0.4133393,-0.003240635,-0.17783003,-0.38332298,-0.21082239,0.14998509,0.5277661,-0.09794435,-0.37558678,-0.034052767,0.00921069,0.2258576,0.32790643,0.23288448,-0.2796417,-0.117007844,-0.034730066,-0.14964004,0.42959344,0.49819964,-0.35050818,-0.12300678,0.43149886,0.5631753,0.03440344,-0.24344839,0.017276963,0.04156093,-0.45813066,-0.17488691,0.1351328,-0.17565294,0.5143932,-0.13696042,0.29703477,0.6237153,-0.2163666,-0.118765034,0.035352517,0.03841918,-0.07914595,-0.21999225,-0.26274785,0.21893519,-0.41019338,0.25673226,-0.02460771,0.6214646,0.14217676,-0.6462023,0.3290505,-0.62323004,0.06736448,-0.06364905,0.40861714,0.4375568,0.5169326,0.13869973,0.7237184,-0.3750655,0.07918346,-0.21802144,-0.29892227,-0.19623835,-0.12765984,0.021988312,-0.48225516,0.24266356,-0.18809134,-0.039750617,0.06161543,0.5479576,-0.42856747,-0.23455532,0.26517335,1.0253799,-0.25728714,-0.07313718,0.7672961,1.0169045,1.0916212,-0.056446575,0.7814246,0.07799112,-0.15872212,-0.042701196,-0.024117386,-0.5919931,0.217081,0.41801584,0.33795187,0.24865736,0.035960678,-0.1398025,0.30172077,-0.24863504,-0.14015247,-0.07272539,0.034031846,0.288783,-0.19444303,-0.30764666,-0.06593748,-0.04283578,-0.020626338,0.0485651,0.16037205,-0.21406698,0.55667454,-0.03239932,1.7420503,-0.016822604,0.135503,0.25210688,0.554945,0.30152595,-0.07628185,0.18361908,0.45409462,0.17722073,0.26262105,-0.5424783,0.18687543,-0.31788638,-0.56028974,-0.113465264,-0.303898,-0.19871397,0.007849199,-0.5719099,-0.25198087,-0.23850533,-0.16803381,0.31231746,-2.786616,-0.16722725,-0.11595054,0.3102202,-0.30310932,-0.37566993,0.02505066,-0.45734218,0.39495414,0.31253177,0.42295626,-0.56021667,0.42551246,0.43551093,-0.4655103,-0.010745446,-0.47350138,-0.083953,-0.028029747,0.348112,-0.10398863,-0.09222839,0.14606844,0.25266168,0.5730832,-0.08333293,0.18233222,0.3607857,0.43068796,-0.11282524,0.53008866,-0.06929941,0.51813436,-0.35775205,-0.11933031,0.40820995,-0.2589595,0.09933772,0.0073841144,0.16541249,0.56669563,-0.33653557,-0.80719185,-0.6157946,-0.0888934,1.091173,-0.25726,-0.44008356,0.33889255,-0.37777779,-0.22788127,-0.16800313,0.33062682,-0.025064703,0.15778749,-0.6722248,0.07138335,-0.09956684,0.123478964,-0.044647653,-0.26133102,-0.4644409,0.7921456,-0.027898168,0.6925758,0.31748617,0.20973495,-0.25805092,-0.33666474,-0.056245126,0.70728076,0.51769376,0.075180374,-0.23901877,-0.13079363,-0.20299007,-0.15471052,0.16377679,0.5938442,0.56190205,-0.09500228,0.15468654,0.2787002,0.052658938,0.016712755,-0.26555902,-0.22179018,-0.12336399,-0.06587251,0.42036822,0.393223,-0.16680317,0.5230215,-0.04199226,0.36558902,-0.20998494,-0.5341057,0.28495285,1.094508,-0.23187794,-0.3540401,0.4429461,0.5198011,-0.39181805,0.36111802,-0.6512241,-0.22361074,0.59474057,-0.21501984,-0.6057425,0.18470879,-0.24902716,0.060056217,-0.71961325,0.07827785,-0.3496128,-0.6694774,-0.45307475,-0.26960984,-3.2397637,0.25599253,-0.30934048,-0.18561307,-0.22359781,-0.29315096,0.14238523,-0.59873605,-0.51072794,0.13972454,0.1533211,0.684774,-0.15120412,0.23408805,-0.31529143,-0.2743276,-0.32306105,0.25001866,-0.04112451,0.24449869,-0.005833022,-0.38086995,-0.074393384,0.04071772,-0.55506885,0.037146732,-0.60726625,-0.30306986,-0.18657385,-0.4077778,-0.2155671,0.588624,-0.17138188,0.11552106,-0.12178189,0.05535788,-0.081995696,0.13485543,0.13675101,0.19900729,-0.031355616,-0.13359302,0.14300162,-0.323889,0.31445324,0.01033895,0.31103155,0.28733668,-0.15230675,0.14663056,0.3371881,0.64259803,0.009278092,0.7805868,0.19644833,-0.04541147,0.39036652,-0.21409354,-0.3858867,-0.61351585,-0.24355394,0.0051344396,-0.2694039,-0.5599479,0.022771506,-0.38758227,-0.7983635,0.49050218,0.050057523,0.31254292,0.03871282,0.44531742,0.54541713,-0.37244764,-0.082495384,0.015718456,-0.17462976,-0.49923953,-0.27669188,-0.62343144,-0.51876384,-0.055122428,0.9974148,-0.2975415,-0.06681143,-0.019107573,-0.21123566,0.057778914,0.27788576,0.071060084,0.15789041,0.364539,-0.22631818,-0.6470411,0.5132467,-0.25729933,-0.21529914,-0.6026525,0.35742864,0.5973085,-0.50435644,0.4981397,0.15470725,-0.007920707,-0.30229074,-0.6068179,0.08165518,0.10929743,-0.27181414,0.38323316,0.20445964,-0.8433303,0.3678285,0.37070128,-0.30791336,-0.63341117,0.59793645,-0.014855694,-0.45785204,-0.04192482,0.29210672,0.25704247,-0.02238152,-0.26257154,0.16979179,-0.45515636,0.24924845,0.14948861,-0.06241912,0.22861543,-0.16406988,-0.18161471,-0.7278834,0.097614355,-0.5099951,-0.26590663,0.27436608,0.028469233,0.09846255,0.304537,-0.08797975,0.42743185,-0.2534888,0.13908549,-0.16518332,-0.31912476,0.45281202,0.32940808,0.46153527,-0.44661584,0.61339056,-0.06514561,-0.17465273,0.22257423,0.2237784,0.41514257,0.08263974,0.5974506,0.1197368,-0.080841355,0.235378,0.748535,0.29105324,0.503437,0.1699958,-0.14582056,0.21402483,0.08090976,0.1435431,-0.16300204,-0.72606605,0.07843062,-0.2022379,0.12521264,0.51620644,0.09878356,0.29600772,-0.08104446,-0.24599648,-0.037641518,0.22714137,-0.005429999,-1.1153615,0.20641838,0.2104184,0.97297287,0.33165416,0.08925786,-0.058133624,0.6463783,-0.1960717,0.10870702,0.3331138,0.061032064,-0.29377303,0.48837578,-0.7293488,0.3320478,0.031780478,-0.080572,0.03186832,0.024108248,0.4566706,0.7791637,-0.2035419,-0.06631483,-0.03568724,-0.39749628,0.21133408,-0.401153,-0.040903527,-0.4742429,-0.2990491,0.64099485,0.56073564,0.2782498,-0.12911488,-0.05312518,0.14762904,-0.11062886,0.15270193,0.1301695,0.1698603,-0.2213621,-0.45741087,-0.16118182,0.5844326,-0.019786898,0.20070337,-0.011326099,-0.2481969,0.35169747,0.12444289,-0.06033257,0.11511395,-0.7131873,0.2882227,-0.114662476,-0.5244457,0.5018109,0.0026793887,0.19467661,0.19276515,-0.03827102,-0.21281198,0.32514656,0.032621942,0.7693672,-0.0026893716,0.011149391,-0.44168904,0.16961169,0.061769024,-0.11340996,0.1319964,-0.13026284,0.059838276,-0.55317986,0.38178608,-0.03865772,-0.2642524,0.16868307,-0.11739189,-0.07513359,0.6046088,-0.03563996,-0.081191145,-0.07934804,-0.059900362,-0.4101315,-0.2807876,-0.08821608,0.35545728,-0.1834289,-0.01962932,-0.07456658,-0.023456259,-0.01917628,0.5025995,-0.011442971,0.39629236,0.2979768,0.029197915,-0.37207937,-0.23957682,0.14809056,0.49540344,-0.13719563,-0.1091235,-0.1027986,-0.6069459,-0.27895197,0.06910562,-0.09460758,0.3390093,0.13062952,-0.18175223,0.848136,-0.05769264,1.1936958,-0.087496504,-0.42530048,0.18094164,0.48991156,0.0940583,-0.044597846,-0.3203284,0.8897397,0.6161854,0.006345566,-0.04121948,-0.22634608,-0.0836952,0.15960123,-0.24293223,-0.15984099,-0.045868676,-0.49134806,-0.16330013,0.14385074,0.19392492,0.275133,-0.18261027,0.1347681,0.45881966,-0.02746576,0.33649895,-0.3900212,-0.2842045,0.15702678,0.22285496,-0.18684754,-0.033810508,-0.54147977,0.39960766,-0.5155343,0.10827838,-0.26199833,0.19568676,-0.20601176,-0.21935578,0.19685599,0.053675912,0.28909656,-0.30556843,-0.34702298,-0.15539663,0.33217546,0.17989995,0.16553767,0.48690754,-0.25673774,0.13115865,0.010531169,0.55267155,0.84568685,-0.11843551,-0.18774933,0.36749622,-0.5451107,-0.6642862,0.44292104,-0.29920986,0.20651226,0.0055518625,-0.12235713,-0.411605,0.38870457,0.19806989,-0.11790619,0.03924316,-0.66362244,-0.099750124,0.23039508,-0.41180867,-0.20496152,-0.30770734,0.24898574,0.644317,-0.17201729,-0.35947746,-0.052295547,0.28865847,-0.027104793,-0.62697303,0.027200263,-0.27861983,0.32797563,-0.0017457604,-0.27382317,-0.106195346,0.0780588,-0.50888574,0.103363246,0.08220858,-0.2712001,0.09550716,-0.3703285,-0.05966057,0.7887388,-0.15364479,-0.036015693,-0.46837023,-0.52841485,-0.6703525,-0.41313305,0.3129216,0.15618062,0.019780643,-0.63227683,-0.03526933,-0.18018545,-0.26176232,-0.17273669,-0.27821854,0.4664244,0.07917248,0.370635,-0.06085762,-0.6932274,0.32045904,0.055684883,-0.13857989,-0.56078744,0.50907916,-0.07290916,0.75130236,0.122888036,0.023398865,0.25924256,-0.4605503,0.12770692,-0.3190492,-0.2243743,-0.48481274,-0.14145519,766 -282,0.29001752,-0.08994159,-0.42257127,-0.0938155,-0.37609947,0.07443057,-0.21875161,0.21691914,0.37138784,-0.09694553,-0.225887,-0.11826951,0.108559705,0.35150555,0.03203111,-0.44129562,-0.20495878,0.2170224,-0.75279117,0.4911323,-0.34545746,0.17690822,0.14539592,0.38578436,0.14514843,0.45667693,0.15668078,-0.10276644,-0.2207381,-0.08808974,-0.1368583,0.2705111,-0.6221586,0.115608215,-0.31982237,-0.09654401,-0.004598508,-0.44866836,-0.30800486,-0.6894008,0.13339837,-0.9610344,0.5370365,-0.03845843,-0.06508641,-0.09711706,0.28806007,0.43899664,-0.34414577,-0.05841336,0.30183837,-0.32437718,-0.16776404,-0.26500964,-0.14143859,-0.27942482,-0.45517164,-0.024003554,-0.48996463,-0.2254143,-0.23885472,0.20404616,-0.22934793,0.05008568,-0.26992464,0.35934025,-0.4949586,0.26346907,0.32555643,-0.38213494,0.19670011,-0.54837626,0.04270537,-0.11367879,0.5028627,-0.03924279,-0.13426976,0.44927642,0.34175923,0.32242128,0.21369047,-0.28945082,-0.33099225,-0.15152234,0.17291863,0.4478576,-0.17612414,-0.08720985,-0.087378025,0.050518822,0.22864528,0.3725681,-0.037736516,-0.24414572,-0.0832134,-0.18138841,-0.041681994,0.3409591,0.51940334,-0.13837478,-0.28556103,0.22034883,0.56197894,0.35565978,-0.19495958,-0.13637947,0.16926551,-0.58947027,-0.18051845,0.1861421,-0.16384524,0.47584587,-0.081747875,0.07597459,0.85185,-0.10951522,-0.023769386,-0.004708717,0.07573899,-0.100864194,-0.28130564,-0.11447572,0.20383462,-0.48899958,0.095378995,-0.15377448,0.4815627,0.096617885,-0.57865494,0.36780408,-0.5173378,0.15581258,-0.021099854,0.5748959,0.6878617,0.45366144,0.41277283,0.7779373,-0.23556513,0.25048807,-0.047440443,-0.43634212,0.107178055,-0.26127577,0.14048417,-0.4533922,0.013440629,-0.2580084,-0.011722887,0.2114803,0.35155818,-0.5001203,0.03558793,0.2302576,0.8411077,-0.2938067,-0.13122633,0.59834564,0.8997795,0.95731443,-0.06710192,1.2259542,0.27612954,-0.19623643,0.08085724,-0.36486652,-0.61949503,0.16517247,0.27091795,-0.38116294,0.2381166,0.032388844,-0.10606343,0.33790737,-0.46380398,0.046329517,-0.044583656,0.2012457,0.16257457,0.050663617,-0.42283386,-0.22598137,-0.13327795,-0.05118101,0.18779792,0.15313229,-0.27457902,0.37742278,-0.013663655,1.5514927,-0.14159815,0.088182315,0.15184627,0.4748241,0.21524532,-0.06602881,-0.117270015,0.53455526,0.36854127,0.13273805,-0.5010834,0.26444504,-0.33564535,-0.2708324,-0.098195754,-0.3542773,-0.13241376,0.10386065,-0.41093495,-0.20514666,-0.08938649,-0.29904696,0.4558747,-2.7112174,-0.0520417,-0.089844055,0.30874762,-0.3024928,-0.19711949,-0.13976988,-0.5756864,0.15982622,0.14149778,0.42402542,-0.59535813,0.33290112,0.6073132,-0.5748433,-0.22341429,-0.600289,-0.14489365,0.0048195124,0.40296504,-0.020014977,-0.100539684,-0.17356713,0.07742079,0.64734966,-0.013251388,0.102466606,0.6249578,0.3747823,0.122702904,0.55847764,-0.1053695,0.53895813,-0.28650168,-0.3051171,0.43928593,-0.17612536,0.34208646,-0.24796233,-0.022083174,0.6136237,-0.31988323,-0.9258196,-0.55950755,-0.3907334,1.0927448,-0.45090058,-0.45653552,0.29739067,-0.22759806,-0.12831935,0.06496118,0.6580325,-0.053555593,0.21604805,-0.68331504,0.06643772,-0.09235663,0.33147132,0.07586838,-0.0055279294,-0.41412708,0.6627223,-0.016788708,0.49804202,0.29753235,0.2661821,-0.17428215,-0.3874449,0.0900929,0.84285873,0.25643617,0.019378673,-0.23774534,-0.24979332,-0.04757476,-0.27894595,-0.094774775,0.5688276,0.6360776,-0.14366356,0.26874766,0.36618167,-0.062267315,0.0037539005,-0.16312627,-0.24077216,0.02029117,0.0813467,0.40285823,0.84835523,-0.084187664,0.42446697,-0.15674025,0.42561978,0.0053239744,-0.6292671,0.55863005,0.5209612,-0.18939768,-0.03559204,0.59023225,0.4415864,-0.37914625,0.46462536,-0.6289591,-0.28719193,0.56774867,-0.13135788,-0.5376971,0.20926234,-0.275077,0.10720158,-0.6357259,0.20851423,-0.15302019,-0.43127203,-0.42981917,-0.13050194,-3.118583,0.06291041,-0.15454316,-0.14918827,-0.22757357,-0.049547207,0.13434511,-0.5463131,-0.5408183,0.11475933,0.20680033,0.5327357,-0.22172932,0.13823907,-0.21824023,-0.21615525,-0.006078772,0.27977672,0.2856459,0.266522,-0.29011753,-0.5306185,-0.04484507,0.04027501,-0.48317435,0.09788196,-0.7274255,-0.36230844,-0.135657,-0.47674066,-0.11260858,0.6074644,-0.5113294,0.010148968,-0.2768889,0.14487915,-0.15184338,0.10982046,0.20068304,0.20918804,0.11646875,-0.12072428,0.04382774,-0.25344408,0.6539992,-0.0011067609,0.3530858,0.19131048,0.09664181,0.22652826,0.32014382,0.62533087,-0.27386525,1.1235547,0.4707037,-0.14793505,0.18415976,-0.30281287,-0.26521453,-0.5495169,-0.3526608,0.0465068,-0.49410772,-0.5045076,-0.018367283,-0.34887248,-0.8546095,0.66780186,-0.047387674,0.29060432,0.013813529,0.12264036,0.49768314,-0.3517937,-0.071562834,-0.06358489,-0.16079743,-0.55512446,-0.4116343,-0.46880907,-0.53562087,0.037232287,0.8864166,-0.24179773,0.13334762,0.07463025,-0.4082181,-0.075848095,0.09988402,0.08141567,0.2767466,0.57351303,0.008868626,-0.68293244,0.42958656,-0.08515566,-0.07447275,-0.55901605,0.18118167,0.54032975,-0.7832579,0.6398079,0.34400374,-0.009969121,-0.09849312,-0.49778736,-0.37720948,-0.1937841,-0.2290694,0.4228931,0.18303326,-0.7325552,0.42057282,0.17994373,-0.56202066,-0.7010194,0.300289,-0.18146499,-0.2497115,0.028222298,0.33056095,0.02327261,0.025109768,-0.12698385,0.09062955,-0.31529644,0.25465956,0.18866095,-0.10125761,0.22153817,-0.13542205,-0.29211745,-0.7449449,0.0822338,-0.34123388,-0.35270587,0.4191725,-0.00088158844,-0.103025004,0.16672802,0.20061558,0.34100896,-0.20561793,0.019254185,-0.024804652,-0.41274256,0.26932594,0.422877,0.49737692,-0.42174694,0.5244064,0.12989505,-0.2916418,0.20564,-0.066141024,0.41724935,-0.07301838,0.3365802,-0.1467136,-0.21411456,0.32256317,0.6826353,0.0660112,0.4126559,-0.021407219,-0.04383322,0.41303098,-0.05589126,0.08564196,-0.045063607,-0.5798218,0.08867402,-0.24354738,0.20332263,0.42204106,0.33860663,0.32118237,0.048725504,-0.19904393,-0.0011965175,0.21574052,0.082656816,-1.103346,0.28722343,0.23238793,0.9089296,0.30813774,0.16547337,-0.16613144,0.79750454,-0.3164932,0.06413128,0.4828195,-0.018910503,-0.44670093,0.69650155,-0.70493436,0.4867597,-0.04315492,-0.13334854,0.19464025,0.106828734,0.28287336,0.85713905,-0.24022745,-0.057100292,-0.0068328218,-0.22007778,-0.040430486,-0.33739153,0.047818545,-0.487867,-0.53678834,0.71169215,0.48927307,0.4653186,-0.1954288,-0.028679034,0.012270133,-0.14742361,0.26886636,-0.01892987,0.023291077,0.120407104,-0.6008734,-0.057066273,0.53694737,-0.09019037,0.21763651,-0.17158595,-0.18646558,0.07424924,-0.32901686,-0.050975885,-0.12921818,-0.7477351,-0.016737998,-0.24597628,-0.579392,0.43353865,-0.21489881,0.12419625,0.09065009,-0.019158464,-0.3682594,0.54669166,0.11729352,1.0132476,0.11705206,-0.11987344,-0.2734458,0.26167494,0.31296137,-0.16477394,0.089715004,-0.3407516,0.063812114,-0.5010401,0.487312,-0.22957903,-0.5438206,0.15395437,-0.29448065,0.01580152,0.58541614,0.0382888,-0.22707005,0.096490115,-0.21470541,-0.48443472,-0.035679482,-0.35840708,0.17210193,0.35637924,-0.10330942,-0.19913386,-0.26616654,-0.22303744,0.42302927,-0.0062950533,0.5069277,0.18433596,-0.024471045,-0.12055306,0.07241281,0.19599985,0.5998106,0.12555367,0.029711533,-0.36182252,-0.34063625,-0.31742898,0.29489657,-0.046069875,0.33494335,0.10587387,-0.23579751,0.95374614,-0.07260491,1.1378331,0.20820478,-0.32905084,0.10403445,0.49622294,-0.110935815,0.044039138,-0.49124017,0.8359036,0.53425574,-0.088352345,-0.03271071,-0.39775068,0.021572892,0.30313075,-0.25884894,-0.05169229,-0.07359989,-0.6246642,-0.2927625,0.23483324,0.17531551,0.21116771,-0.067097254,-0.022511395,0.02718827,0.10308177,0.27397996,-0.5224161,-0.23557867,0.34848064,0.2264499,-0.1396902,0.216793,-0.404613,0.5080441,-0.46744785,0.05372499,-0.43282166,0.14401156,-0.27233198,-0.2411582,0.15559775,-0.13279998,0.42629325,-0.41572914,-0.31921807,-0.16347288,0.3939351,0.11781071,0.16427006,0.65311825,-0.29531226,-0.0136852665,0.050650127,0.52569556,1.0132042,-0.67069143,0.14459139,0.29957736,-0.33470136,-0.57158375,0.5036437,-0.3925132,-0.13311414,-0.03888039,-0.43888515,-0.3625334,0.21604629,0.014797342,0.023162642,0.04485617,-0.5303133,0.08861614,0.24607341,-0.19812424,-0.23200265,-0.22506168,0.34621087,0.65632427,-0.19634666,-0.45049986,0.14543562,0.28319514,-0.23667262,-0.3401717,-0.065766424,-0.20132956,0.22081253,0.05707341,-0.35574672,-0.15635015,0.2100081,-0.44879645,0.021849366,0.18882614,-0.33358517,0.07951818,-0.14041929,0.0022131046,0.87794036,-0.3162483,-0.07776901,-0.6325977,-0.47101584,-0.9347286,-0.26697075,0.10090902,0.13218251,-0.084954314,-0.3817827,-0.02939125,-0.22455493,-0.104382135,0.009120408,-0.65365815,0.3923741,0.1355349,0.48828635,-0.35965207,-0.8799227,0.19009878,0.1213162,-0.12517168,-0.63758785,0.49524397,-0.10713894,0.84237665,0.034718223,-0.07300186,0.14217782,-0.38715044,0.010438337,-0.22171663,-0.18455805,-0.80560917,0.00069941086,770 -283,0.5211235,-0.3992587,-0.46883443,-0.1558355,-0.35569632,0.12476073,-0.15536168,0.44289902,0.27220634,-0.31184122,-0.25648507,-0.12540689,0.039891783,0.14594318,-0.16190863,-0.36712602,-0.0915808,0.27028745,-0.48557422,0.5411143,-0.28050512,0.16520956,-0.042607155,0.54968303,0.50593907,0.2555206,-0.13264748,0.10593479,-0.37352848,-0.15977964,-0.10785434,0.47509155,-0.37477174,0.13070388,-0.32337344,-0.41995582,-0.10443342,-0.54058945,-0.3803218,-0.7715092,0.33536503,-1.017032,0.41684443,-0.1556236,-0.20436683,0.31727347,0.1312205,0.2590178,-0.15069482,-0.2675012,0.1434614,-0.06432067,0.0018341024,-0.22603868,-0.15130834,-0.33221248,-0.5046569,-0.04096215,-0.2771133,-0.15080658,-0.24023348,0.14129864,-0.3694442,0.111916415,-0.06111935,0.5768804,-0.34542125,0.27394643,0.118719086,-0.013919203,-0.0602513,-0.5598418,-0.2502767,-0.1421064,0.30129382,-0.11543568,-0.30289152,0.18116048,0.3511568,0.3033161,-0.075455524,-0.1436601,-0.2634159,-0.15711895,0.12115458,0.43753687,-0.0755351,-0.58000404,-0.111993484,-0.09702743,0.29511005,0.17684828,0.2092985,-0.18206114,-0.049908575,0.02531937,-0.15849042,0.4297619,0.33420599,-0.26485518,-0.14376669,0.34154806,0.63620096,0.18806419,-0.25382012,-0.12516889,0.11692132,-0.47933456,-0.08086433,0.060818672,-0.23535194,0.5555065,-0.20925765,0.31923977,0.6201069,-0.14992423,-0.059947174,0.15225035,0.25672966,-0.23969157,-0.36854273,-0.37222627,0.23109867,-0.40941355,0.17111367,-0.077187695,0.73482376,0.07566918,-0.61219734,0.29364434,-0.5801333,0.08585392,-0.13407081,0.3411008,0.6525354,0.38107646,0.38429406,0.4562441,-0.097414814,0.006289963,-0.11150702,-0.34250444,-0.07423084,-0.30114093,0.1557079,-0.52267677,0.19469897,-0.042954393,-0.08672234,0.04551616,0.56738335,-0.45061773,-0.24872415,0.09414453,0.8519555,-0.23589896,-0.20776151,0.90930927,0.8453512,0.9105578,0.014028264,1.0782878,0.24719481,-0.182648,0.19060197,-0.10515717,-0.7063933,0.3026083,0.28695902,-0.5761464,0.14566582,0.15637615,-0.022317994,0.36561298,-0.34879366,-0.011913562,-0.22411428,0.03480329,0.25850427,0.09295643,-0.49228904,-0.34732533,-0.08820998,0.07466542,0.24882135,0.33699974,-0.18151014,0.59005654,0.17370214,1.8506645,-0.032207627,-0.056475934,0.073018864,0.39375973,0.20835926,-0.09080072,-0.08875202,0.31293935,0.21437334,0.11322559,-0.519342,0.1540014,-0.20726813,-0.34473982,-0.10792492,-0.32392284,-0.26629916,-0.05438498,-0.4903077,-0.20576066,-0.22299442,-0.20859668,0.4416796,-2.6436338,-0.28696615,-0.072411746,0.35666853,-0.2158468,-0.50247794,-0.10479465,-0.5355648,0.21675079,0.13822083,0.4770535,-0.6358856,0.32459763,0.37080058,-0.55675864,-0.11234759,-0.6282555,-0.11377866,0.105772525,0.31474158,-0.103676654,0.10052738,0.06065723,0.06040412,0.4131499,0.040836263,0.1701388,0.42198727,0.5266508,0.02472388,0.5407112,0.017894976,0.5879718,-0.28133357,-0.25487456,0.23654053,-0.357851,0.37340096,0.04125317,0.16963056,0.73529613,-0.4198348,-0.81194305,-0.64651436,-0.038755417,1.0525668,-0.17305598,-0.2646176,0.18125153,-0.69028777,-0.42906228,-0.11644738,0.41246262,-0.16465025,-0.17057627,-0.73255855,-0.03904232,-0.07297086,0.07319272,-0.08284851,-0.15248771,-0.28005153,0.6393987,-0.05870308,0.39747897,0.2021735,0.09827236,-0.41466695,-0.38099813,0.072911896,0.7888494,0.37143502,0.16509822,-0.33662862,-0.20040491,-0.38104898,0.046066225,-0.0028926888,0.5151518,0.41122797,-0.018989762,0.23769657,0.25689855,0.015401523,0.049757708,-0.20997801,-0.21058968,-0.23857574,0.034274396,0.48800448,0.6881931,-0.27488473,0.51733553,-0.014990461,0.30401453,-0.18167748,-0.4448517,0.40270194,1.2742392,-0.21816775,-0.35564366,0.59805036,0.4163974,-0.37376294,0.32089013,-0.39231542,-0.123434804,0.44189784,-0.16868176,-0.3610094,0.19471769,-0.19918491,0.10987641,-0.7282004,0.14546537,-0.13102381,-0.509419,-0.6155034,-0.016066253,-2.1894083,0.16956359,-0.14170519,-0.2706462,-0.17954494,-0.3911713,0.044619583,-0.6033792,-0.6045255,0.25624302,0.018037356,0.7691175,-0.12261644,0.15920338,-0.14202219,-0.39822164,-0.14505209,0.0124605335,0.22598937,0.41488346,-0.1763743,-0.49143648,-0.05579621,-0.059343044,-0.293474,0.07354415,-0.7276757,-0.42451584,0.004914863,-0.48156986,-0.34231958,0.5779035,-0.24748753,0.06736117,-0.23894729,0.047205463,-0.18933088,0.28228536,0.121375,0.06979839,0.0144041935,-0.045863427,0.10116578,-0.2449259,0.28385288,-0.050665442,0.24998528,0.29735947,-0.091428325,0.34363365,0.3507835,0.63668144,0.098211765,0.9939721,0.365516,-0.09786458,0.22581233,-0.1678679,-0.4600811,-0.4875058,-0.13419059,0.010627154,-0.3899598,-0.36240134,0.0031357158,-0.40496433,-0.7148114,0.5984195,0.123966284,0.24778178,-0.073307626,0.29798093,0.7073828,-0.2375265,0.0130647635,0.034092322,-0.13603435,-0.60478467,-0.32807985,-0.4615811,-0.39678097,0.13259219,0.9387747,-0.19874886,0.15842442,0.14858514,-0.3448649,0.025403349,0.32043648,-0.16272901,0.24658802,0.6310979,-0.17716329,-0.5674495,0.45273933,-0.1663899,-0.16057298,-0.48916203,0.19789413,0.5838458,-0.59792686,0.59088033,0.33925048,-0.072550416,-0.35842165,-0.38530737,-0.19008937,-0.05100312,-0.20105238,0.46237728,0.5326576,-0.7317476,0.35585508,0.34525502,-0.04430666,-0.7231271,0.59684,0.036701627,-0.31003532,-0.20180504,0.39442495,0.11907441,0.04158145,-0.19382903,0.10461531,-0.3099025,0.13799092,0.19193181,-0.1701094,0.05177733,-0.25571552,-0.043026783,-0.8358863,0.08613288,-0.38426057,-0.34788603,0.30063665,0.076820396,0.22142741,0.20588979,0.030517336,0.26851442,-0.4763703,-0.058097973,-0.07492956,-0.30507824,0.17432019,0.32922184,0.55602574,-0.43071505,0.505201,0.039634928,-0.15025991,0.12008731,-0.011897703,0.31996688,0.034385834,0.38067594,0.16187567,-0.26821855,0.2633809,0.82980853,0.19241887,0.45824584,0.042729493,-0.08079119,0.1133802,0.068499975,0.31097344,-0.1323767,-0.6441886,0.010416778,-0.32779834,0.15458846,0.4346127,0.06095556,0.2689491,-0.18879344,-0.39527225,0.049952812,0.03537709,0.14342956,-1.3213449,0.15477377,0.22068745,0.8963934,0.26986802,-0.095872514,0.0027820945,0.7332633,-0.15672064,0.1630216,0.41402212,-0.047167525,-0.37209684,0.5422917,-0.59764206,0.3994699,-0.010001675,0.02486351,0.047907013,-0.10522416,0.36164063,0.6524361,-0.20519193,-0.09867979,0.0034217695,-0.43726358,0.24289683,-0.29912683,0.1033355,-0.6628955,-0.22180715,0.63883466,0.6775972,0.3859084,-0.20265332,0.09643699,0.08888157,-0.12768093,0.11383525,0.22171289,0.1914681,-0.054275937,-0.66998315,-0.10253094,0.5181892,-0.013125523,0.12146703,-0.08429206,-0.23432942,0.2743486,-0.14123438,-0.0381934,-0.13581507,-0.7954763,-0.0023510912,-0.35745135,-0.6203133,0.5487059,0.03355721,0.10390985,0.28029197,0.053366605,-0.31395656,0.44068107,0.15726124,0.8780201,-0.07893206,-0.039002478,-0.3264024,0.18422012,0.16333933,-0.08630572,-0.0939196,-0.29899204,0.16556734,-0.58671314,0.48329532,0.032707963,-0.30328065,-0.10953982,-0.020725794,0.15265585,0.5017868,-0.103073746,-0.07909818,-0.26366892,-0.0032355348,-0.3874816,-0.24042305,0.00037253698,0.2786312,0.31712404,-0.055157457,-0.23418209,-0.11530966,-0.23534513,0.39819214,-0.06475287,0.44204682,0.40939057,0.037514795,-0.12141455,-0.24372046,0.1736351,0.52277434,-0.13615409,-0.2773898,-0.45077404,-0.41646424,-0.28736782,0.40206012,-0.03257174,0.42851016,0.09648605,-0.1129458,0.7171053,-0.22107531,1.0185763,0.189599,-0.45694426,0.17429806,0.50417054,-0.016366469,-0.092771366,-0.27413982,0.7810157,0.27351773,-0.041930206,-0.07091103,-0.4624957,0.04957626,0.149298,-0.13120922,0.009743405,0.010084798,-0.39858976,-0.14986318,0.1017114,0.19461162,0.25206113,-0.168742,0.2597609,0.43248796,-0.09986495,0.28876102,-0.40495166,-0.30661213,0.22445086,0.16025297,-0.0758466,0.16787106,-0.4788813,0.3416621,-0.40922567,0.12205728,-0.46575245,0.39300337,-0.22136976,-0.23993383,0.17171934,0.06774591,0.3280266,-0.37333757,-0.29320037,-0.3745344,0.46467036,0.1549135,0.032402582,0.3436788,-0.2866744,0.060336407,0.042888608,0.48095754,0.78335726,-0.07346727,0.025293421,0.3768271,-0.31239697,-0.5076281,0.48556137,-0.3592077,0.26820654,0.16850781,-0.0043112594,-0.5795981,0.3178909,0.37067768,0.22805516,-0.12669925,-0.5793207,-0.056946468,0.36040682,-0.24102254,-0.026068926,-0.29285464,-0.064119786,0.37212533,-0.20579453,-0.43780568,-0.08407758,0.14194518,-0.010314123,-0.36534277,-0.0529413,-0.5874231,0.19220097,-0.022231314,-0.31040466,-0.23651405,-0.01430438,-0.37026516,0.15105219,0.11926952,-0.2924915,0.07598337,-0.3088891,-0.028618196,1.0875385,-0.13807186,0.2699415,-0.4290032,-0.4024666,-0.6422506,-0.39192924,0.13902508,0.0030201117,0.08251297,-0.5945688,0.002705423,-0.04083799,-0.33867547,-0.03508098,-0.42448512,0.50949216,0.2053046,0.4138027,-0.019158633,-0.81290424,0.07519207,-0.10608336,-0.27100855,-0.531898,0.4957291,-0.07109428,0.7201626,0.026393913,0.09197923,0.23146078,-0.32370135,-0.2293055,-0.21189149,-0.11276941,-0.6359995,-0.07482154,773 -284,0.45625195,-0.07115267,-0.35207596,-0.14023682,-0.10871456,0.09073532,-0.04681259,0.45364964,0.1055172,-0.60529864,-0.21454903,-0.3070744,0.01878377,0.33214733,-0.18908949,-0.5587503,0.0007857402,0.1291339,-0.5606633,0.52204883,-0.477363,0.4836534,0.25496122,0.21520051,0.093116775,0.12822086,0.3259414,-0.19170755,-0.23090328,-0.13669746,-0.19611254,0.1746119,-0.5775306,0.1507387,-0.15320517,-0.3310247,-0.016710559,-0.50448954,-0.27831295,-0.62773377,0.4198588,-0.76675594,0.47133118,0.029875906,-0.13452111,0.31282407,-0.01334339,0.20906585,-0.17366244,0.1127587,0.14911215,-0.0018757939,-0.0415584,-0.15088797,-0.2175943,-0.124595515,-0.578477,0.20377229,-0.32192034,-0.25438944,-0.26820964,0.13122241,-0.22413507,-0.0005539417,-0.11538197,0.39152774,-0.35827473,-0.058660425,0.07116727,-0.037506785,0.23422362,-0.43354633,-0.13582492,-0.013678058,0.34074992,-0.28611508,-0.11600716,0.19096234,0.2944607,0.52755195,0.006291314,-0.08501108,-0.18912026,-0.032985672,0.09050557,0.5871134,-0.11255162,-0.5451603,-0.033521745,0.032924976,0.10571272,0.16823012,0.17559035,-0.32280126,-0.1979787,-0.092434295,-0.23984157,0.26604247,0.48080203,-0.3977696,-0.28293693,0.369749,0.4553617,0.0927078,0.054511998,0.040344622,-0.07025649,-0.5921061,-0.1229562,0.05715014,-0.19123074,0.47548616,-0.107101046,0.32486668,0.50450915,-0.03949189,0.14451808,0.04712362,-0.09419438,-0.08772727,-0.1029668,-0.08798058,0.13614912,-0.37830475,0.04907583,-0.19000956,0.90637803,0.14163631,-0.81607693,0.38772804,-0.4961546,0.15613686,-0.14330529,0.45849898,0.55707496,0.28209648,0.16724087,0.72687596,-0.6292358,0.02810906,-0.12732689,-0.4023527,-0.11570158,-0.0060500302,-0.09190054,-0.40032443,-0.00349315,0.07811343,-0.1343803,0.06917094,0.38238347,-0.5070533,0.021594027,-0.00784467,0.7935098,-0.32215622,-0.1014587,0.8409469,0.9423465,1.0074657,0.067712046,1.2290086,0.2159684,-0.2637045,0.2125683,-0.38351637,-0.7365749,0.29852238,0.41232982,-0.010225971,0.124994844,0.08120096,0.0396556,0.24262129,-0.383333,0.062557474,-0.29865837,0.12841359,-0.0006413956,-0.053538468,-0.36787495,-0.389234,-0.007345168,0.13657,0.1856331,0.19455911,-0.14691299,0.35178912,-0.031179862,1.8385483,-0.11024887,0.10382655,0.076908395,0.36155406,0.106901914,-0.07195619,-0.17659405,0.095172875,0.39809936,-0.11913007,-0.6112039,-0.010654918,-0.15571886,-0.6013847,-0.12583733,-0.29785728,-0.016329484,-0.016153626,-0.39900824,-0.07840306,-0.12675633,-0.4142238,0.4970508,-2.7145376,-0.19165614,-0.015496365,0.3280764,-0.3132911,-0.4213111,-0.1798482,-0.4398418,0.5178842,0.3290201,0.44644248,-0.6653314,0.250516,0.31357715,-0.35927403,-0.21661074,-0.60809976,-0.005378341,0.010394326,0.24738453,-0.008661223,-0.029099278,-0.0197975,-0.0047328393,0.39046904,0.040863108,-0.05816124,0.21207471,0.3685633,0.2792502,0.41699657,-0.0012953976,0.5194567,-0.25461558,-0.0821118,0.32405895,-0.24509309,0.22985093,-0.17332552,0.18057474,0.25787267,-0.6962551,-0.66670525,-0.69444853,-0.42304382,1.1835265,-0.18987224,-0.29834118,0.33701193,-0.040504385,-0.12117648,-0.04789959,0.41245,-0.098211184,-0.21227296,-0.83212495,0.014731844,0.02419637,0.15852426,-0.052662056,-0.0031386793,-0.49328703,0.5884655,-0.15786597,0.46894237,0.417353,0.27651247,-0.21724835,-0.49325994,0.08851981,0.9850407,0.26243493,0.11474289,-0.14397702,-0.21461897,-0.4573679,-0.16248547,0.08554187,0.4234124,0.73386663,0.09880168,-0.023991307,0.27549312,0.09806584,0.1229338,-0.104669526,-0.23735377,-0.053309064,-0.24602705,0.6170415,0.4972526,-0.14606644,0.5271423,-0.15469606,0.22793786,-0.20196384,-0.34138379,0.6083829,0.94738305,-0.19215895,-0.18829724,0.48506913,0.3183853,-0.12984154,0.3321513,-0.5436571,-0.37072417,0.4283881,-0.21042281,-0.41178113,0.27653366,-0.22243191,0.16789177,-0.95202523,0.28580895,-0.17942308,-0.39593947,-0.52138513,-0.052195843,-3.4749231,0.20366052,-0.24922152,-0.14369376,-0.01439412,-0.19496292,0.07019744,-0.43082723,-0.5500726,0.15441471,-0.022639839,0.5887221,0.025404314,0.20868441,-0.11037493,-0.117139176,-0.379603,0.001929613,0.021060936,0.42981502,0.091564365,-0.29345807,0.047664404,-0.28661683,-0.30296284,0.11670721,-0.50058156,-0.4425092,-0.10444219,-0.45868096,-0.49905688,0.59972674,-0.3696962,0.08786701,-0.17527609,-0.08681636,-0.13688096,0.36981854,0.12092655,0.088954546,-0.0011808673,-0.07277172,-0.022203803,-0.26120707,0.31392393,0.086916454,0.24357633,0.38204834,-0.22055885,0.175732,0.32018635,0.63985926,-0.1137811,0.6253565,0.47599584,-0.0037767887,0.1673021,-0.38243428,-0.19044556,-0.4213145,-0.21104999,-0.039521456,-0.31132895,-0.5132561,-0.24026492,-0.36146247,-0.6864909,0.35905167,0.07501138,0.0822978,0.038041577,0.17720659,0.47336516,-0.060852703,-0.064285114,-0.06565661,-0.04298084,-0.5375189,-0.3219783,-0.6943808,-0.46462366,0.14369589,0.9552839,-0.06344042,-0.14843087,-0.047521845,-0.103088126,0.02909871,-0.09878878,0.05383567,0.19979014,0.23248751,-0.23688565,-0.68975234,0.58998966,-0.03207166,-0.18362284,-0.47867987,0.10754881,0.5610419,-0.50046194,0.39025486,0.2745552,0.06713845,-0.0028476894,-0.4099603,-0.15427037,-0.07511355,-0.30756214,0.2885308,0.1533903,-0.5937237,0.51367486,0.38551039,-0.1200345,-0.7932114,0.39266524,0.09139497,-0.3115968,0.09471523,0.24218938,0.098242775,0.016423864,-0.18900019,0.1499673,-0.5060796,0.3044404,0.283713,0.07182338,0.36256012,-0.3217258,-0.17310807,-0.6022036,-0.019577423,-0.4358548,-0.19405028,0.078581415,0.25980094,0.15575643,0.19106491,0.05305376,0.42757732,-0.37099272,0.11950788,0.007050693,-0.03450508,0.111523785,0.35783002,0.4272046,-0.44857633,0.5117683,-0.076949544,0.021523757,-0.035201702,0.091208555,0.41609016,0.22102898,0.15895501,-0.06325867,-0.2660147,0.3912159,0.63471997,0.25678065,0.2502769,0.045841683,-0.19573647,0.31171784,0.14085731,0.1960444,0.12291457,-0.46850863,-0.15028295,-0.05432995,0.14351149,0.42691076,0.15820552,0.2741407,-0.14587924,-0.34104583,-0.024857473,0.18083248,-0.18146402,-0.93064886,0.40639502,0.04036609,0.7720379,0.5524191,-0.08796813,0.15908527,0.51483655,-0.17764536,0.18390125,0.103604525,-0.1830844,-0.5787614,0.50699335,-0.50617343,0.38452902,-0.16011645,-0.031041794,-0.047181595,-0.031730648,0.22226861,0.7108489,-0.022432996,0.13368253,-0.07559015,-0.21273094,0.09656899,-0.3446863,0.049777787,-0.583662,-0.13770333,0.676514,0.3350142,0.23378153,-0.06909054,-0.009579371,0.06999323,-0.08442095,0.0112498365,0.09335824,0.15164062,0.032865968,-0.68919474,-0.21250455,0.54884243,-0.061176028,0.1740882,0.073198445,-0.26200452,0.17151445,-0.19516018,-0.08072346,-0.11484348,-0.6140906,0.046455503,-0.25210547,-0.17194834,0.14145261,-0.12322937,0.32054272,0.18791069,0.061231732,-0.3139709,0.20855837,0.22573985,0.6229843,0.05340781,-0.24145755,-0.4015973,0.21691671,0.16219424,-0.2709138,-0.15991111,-0.120181195,-0.12752707,-0.6232773,0.49864644,0.10666637,-0.17774205,0.27864772,-0.08415913,-0.034114633,0.57956976,-0.12704621,-0.0026294058,0.05893828,-0.18571101,-0.20527242,-0.057854272,-0.0920076,0.25149632,0.35950485,-0.1092674,0.0114335455,-0.0034982404,-0.18793505,0.42198625,0.005100472,0.4134164,0.22224979,0.058639433,-0.3147867,-0.15098874,0.15504369,0.38814867,0.060898382,-0.053253807,-0.25670663,-0.3510731,-0.30361897,0.13002147,-0.108431615,0.25986463,0.07378821,-0.36479542,0.52517194,0.16062321,1.0257016,0.08793918,-0.18072931,0.03257775,0.40258196,0.09853248,-0.06628684,-0.30301204,0.92703253,0.5165417,-0.03109204,-0.12364403,-0.20288877,0.013173556,0.12916881,-0.14953902,-0.12079342,0.032266337,-0.5935004,-0.3841047,0.17562827,0.22787756,0.117244035,0.022666087,-0.018839415,0.18458839,-0.018686257,0.3952731,-0.3847817,-0.22611329,0.30222955,0.2538996,0.0852963,0.12012248,-0.46449855,0.4484878,-0.5387325,0.044322725,-0.21618973,0.17213963,-0.109569594,-0.18788522,0.21577409,0.06130693,0.35219234,-0.25871602,-0.42051882,-0.3655242,0.46561915,-0.016412096,0.24600853,0.55572534,-0.2443028,0.06132504,0.069094785,0.4793838,1.1691836,-0.050616242,0.0729415,0.4511488,-0.2350824,-0.4922672,0.33431014,-0.07887065,0.095548496,-0.051752858,-0.21471985,-0.4425338,0.25692263,0.22279228,0.12364856,0.1236366,-0.5539558,-0.35436586,0.3868268,-0.2917345,-0.27837053,-0.36576784,0.110908076,0.65665525,-0.24719205,-0.25429478,0.12090502,0.17563917,-0.2654583,-0.68356925,-0.021326678,-0.34774104,0.26443812,0.13924605,-0.24023199,-0.16320759,0.11097854,-0.33261403,0.10256028,0.03548588,-0.36794898,0.0930892,-0.35244998,-0.08037112,0.9590791,-0.16824888,0.08531718,-0.53112835,-0.4847974,-0.94279397,-0.34511662,0.6699345,0.046276197,0.061666396,-0.55461484,-0.01221648,-0.006239272,-0.13464828,-0.005224368,-0.26058236,0.39591354,0.2394482,0.289107,-0.07658042,-0.6387269,0.059828598,0.033797882,-0.31471857,-0.497725,0.50791824,0.19172047,0.73469734,0.015702864,-0.027812727,0.33264098,-0.533815,-0.041611113,-0.21672058,-0.13758765,-0.62754923,0.084756546,775 -285,0.43594095,-0.074578166,-0.7128564,-0.11267841,-0.18953282,0.17307447,-0.099803455,0.47777957,0.12142553,-0.347134,-0.11997768,-0.10344785,-0.063890256,0.33706596,-0.19168001,-0.46167114,-0.0059306384,0.30920023,-0.6353115,0.43426946,-0.41555828,0.33404523,-0.10302393,0.3542601,0.14864054,0.22227234,0.09215511,0.068813354,-0.10081734,-0.203252,0.17613411,0.20458402,-0.6019873,0.14594378,-0.1311945,-0.49099085,-0.25403038,-0.1364142,-0.43644756,-0.76566666,0.37611353,-0.89572084,0.59088284,-0.15073042,-0.3304493,0.120796315,0.21183695,0.32492855,-0.26385608,0.02523377,0.19698851,-0.18502222,-0.26096952,-0.32862297,-0.16945969,-0.3619509,-0.6754773,-0.09751863,-0.56103766,0.03587069,-0.27927452,0.09486173,-0.2310812,0.13720801,-0.2855352,0.42086282,-0.5457325,0.1846556,0.0983894,-0.019163664,0.29116994,-0.49237147,-0.067951314,-0.11189985,0.017747637,-0.22866812,-0.22716722,0.42470178,0.15298922,0.35338166,-0.08643843,-0.12359618,-0.29456007,-0.15553513,0.16015312,0.37129697,-0.023037655,-0.2774287,-0.16336128,-0.21143016,0.17196526,0.17658624,0.22128788,-0.29800704,-0.12177055,-0.001590391,-0.19726308,0.3494607,0.49409908,-0.20856148,-0.08076952,0.3885208,0.6250471,0.00026405652,-0.19257717,0.13559012,-0.06282165,-0.5011442,-0.26153407,-0.042589054,-0.22741048,0.47637615,-0.19220941,0.11969712,0.6589951,-0.30801666,-0.14455816,0.14104462,0.21251544,-0.09488301,-0.24851425,-0.43106976,0.272631,-0.5138568,0.041967522,-0.14986442,0.6227085,-0.041241836,-0.693566,0.36326668,-0.5426596,0.101571396,-0.12909606,0.53122693,0.54898494,0.62754697,0.20228651,0.75121564,-0.51835865,0.059080455,-0.036107443,-0.43040282,0.24716881,-0.18982,-0.22017698,-0.49707413,-0.055648718,0.03359851,-0.23971625,0.13312414,0.73960495,-0.4458181,-0.08573521,-0.067196295,0.6485382,-0.43586478,-0.06126925,0.75663084,1.1394743,1.1000972,0.14973396,1.3459498,0.31177536,-0.24661776,-0.09115704,-0.1283672,-0.9367937,0.30186722,0.2932259,-0.6864525,0.48567474,0.04354002,0.041244738,0.41622135,-0.52035356,0.012421361,-0.008793608,0.3525585,-0.059564956,-0.23071283,-0.32368526,-0.3660569,0.17049707,0.13882037,0.080142856,0.4192878,-0.31466204,0.3896586,0.3007515,1.7580162,-0.023907132,0.072508864,0.15757324,0.37058437,0.21739964,-0.33146223,-0.12557703,0.19900027,0.32481986,0.10854072,-0.61724687,0.11376707,-0.19092107,-0.6535026,-0.25338426,-0.31501636,-0.054091293,-0.32486618,-0.46814635,-0.20796388,-0.11412002,-0.30779418,0.38325202,-2.339621,-0.06306133,0.025308365,0.42388502,-0.11431328,-0.349384,-0.14427452,-0.41512343,0.3971449,0.3073396,0.36962226,-0.61252284,0.49597386,0.51007885,-0.3932921,-0.0051562586,-0.58262044,-0.085613325,-0.073896594,0.17310353,-0.041006718,-0.04345804,0.0685809,0.20753193,0.39637476,-0.26437792,0.22317433,0.4264719,0.27965623,-0.06521077,0.37918118,0.07082077,0.54197097,-0.3411983,-0.22591229,0.39216024,-0.48831144,0.16336985,-0.07362223,0.08630168,0.43908426,-0.5989937,-0.90174395,-0.5750822,-0.080952935,1.1612602,-0.3503946,-0.49152204,0.2731569,-0.2701774,-0.43425778,-0.047949534,0.40609586,-0.32836914,-0.08096862,-0.92183304,0.073598176,-0.14583506,0.36590278,-0.13985437,0.0679672,-0.3927068,0.64001375,-0.14803703,0.7937568,0.35052955,0.07263541,-0.5140174,-0.4992812,0.28445628,1.0588565,0.46046555,0.16195379,-0.296063,-0.15184124,-0.35727978,-0.16825882,0.15677668,0.43711016,0.7590359,-0.049005207,0.27366388,0.2970886,-0.15335727,-0.05974476,-0.21760778,-0.23317903,-0.010079929,0.10516075,0.52440727,0.71272343,-0.10497648,0.31836447,-0.16467953,0.42335737,-0.28852528,-0.54611564,0.39503953,1.0176246,-0.18178461,-0.4570116,0.7237432,0.50634444,-0.3466818,0.5731744,-0.5729989,-0.42836073,0.37987816,-0.20589565,-0.23761334,0.23933381,-0.38109222,0.1966143,-0.895689,0.30233967,-0.21502842,-0.61853224,-0.54627585,-0.31116602,-2.7773485,0.15084067,-0.11519899,-0.08814984,-0.051920794,-0.15024342,0.26879942,-0.5697394,-0.7808083,-0.03642149,0.07289169,0.74117523,-0.052477922,0.061519198,-0.016938629,-0.28884166,-0.26476923,0.22107908,0.19831158,0.3033441,0.005187885,-0.56242555,-0.24309969,-0.2580513,-0.4923751,-0.08512191,-0.58590615,-0.41968098,-0.10391167,-0.542969,-0.42367133,0.6456216,-0.2986177,0.030367848,-0.14151461,-0.17227383,0.07839101,0.28446242,0.12155012,0.073559664,0.1739089,-0.050942548,0.046899386,-0.2590236,0.20189857,-0.07414281,0.4243864,0.4055415,-0.34035996,0.11408375,0.514363,0.6573252,-0.11973241,0.88312924,0.39818656,-0.19250272,0.23015572,-0.1394496,-0.19596688,-0.7233234,-0.26950833,-0.088758424,-0.49514496,-0.39001182,-0.053033907,-0.41327906,-0.86477745,0.5207984,0.018873373,0.1445884,-0.040476702,0.3012594,0.32854193,0.010894307,-0.16760752,-0.16703197,-0.26919758,-0.40729147,-0.38618863,-0.8055843,-0.3976298,0.0743232,1.4350226,-0.09892178,-0.069298886,0.12687829,-0.11898362,0.09363358,0.24530151,-0.02686197,0.18396382,0.38126945,-0.09242539,-0.5365462,0.3478674,-0.1764595,-0.18137462,-0.5439775,0.123711236,0.585186,-0.59767646,0.4886357,0.3354882,0.14997765,-0.12211398,-0.6096489,-0.024885314,-0.022132972,-0.23722474,0.6768739,0.47312418,-0.82691216,0.46438402,0.28292397,-0.2735913,-0.6894463,0.56901157,-0.10572492,-0.06589977,-0.1488629,0.4345049,-0.17357369,0.037677016,-0.29154772,0.2941485,-0.50170654,0.20486178,0.35391796,-0.06536631,0.21897008,-0.2291834,-0.080350645,-0.64291763,0.15147434,-0.45789063,-0.21778421,0.016470402,-0.16618,0.0032726128,0.3320783,-0.008397595,0.45611864,-0.2628503,0.08968136,-0.1623136,-0.35396358,0.45144087,0.47456428,0.50392824,-0.3754691,0.60469764,0.0013684878,-0.13092493,-0.30037746,0.0859964,0.607981,0.023740428,0.48377952,0.18832748,-0.022254093,0.36803788,0.68566793,0.3187384,0.37792367,0.19382875,-0.17150177,0.032866932,0.077372104,0.3392512,-0.009429199,-0.36616024,0.10261463,-0.2880429,0.23476245,0.5673755,0.12601152,0.5278094,-0.20594975,-0.24100742,0.07798068,0.20308056,-0.30321294,-1.4180112,0.5486593,0.23051117,0.71926945,0.61028,0.042129453,0.04721477,0.36106065,-0.37458864,0.13334753,0.3629621,0.09742072,-0.4675497,0.55994445,-0.80661494,0.49163166,-0.030978967,-0.0664779,0.020193629,-0.010644643,0.5122122,0.869019,0.11908867,0.1923984,0.058509894,-0.31466225,0.32205138,-0.28028068,-0.057986222,-0.57578045,-0.26959726,0.83338755,0.32529646,0.43321133,-0.21663101,-0.027319558,0.14287992,-0.13857628,0.24675478,0.088580765,0.17514524,-0.19197765,-0.44227117,-0.38342765,0.4705222,-0.04491019,0.08035377,0.1954309,-0.31608912,0.10788863,-0.06365387,0.049857866,-0.005248038,-0.687815,-0.032508858,-0.25428388,-0.26989564,0.38048384,-0.2869075,0.09188767,0.25963703,0.13152845,-0.64591175,0.12622313,0.08946004,0.59572697,0.031630352,-0.1554768,-0.03696317,0.39719403,0.24094184,-0.19052666,0.028903008,-0.30216026,0.08797498,-0.6932685,0.4455243,-0.096047334,-0.51946896,0.25195843,-0.08271268,-0.0042136996,0.46794993,-0.20483162,-0.31523076,-0.027232965,-0.056964457,-0.04772608,-0.43302536,-0.33044896,0.27715877,0.0023620685,-0.0068445546,-0.12661369,0.14356874,0.13378868,0.41328195,-0.10255461,0.29420367,0.39655975,0.039596718,-0.485982,-0.060717873,0.069186315,0.6235218,-0.09672778,0.03141965,-0.4456902,-0.4670331,-0.21373813,0.34848803,-0.2405356,0.37439355,0.26454094,-0.30190125,0.8661709,0.10654531,1.0860463,0.111969374,-0.37082538,0.10075889,0.61669225,0.12784229,-0.1246712,-0.24855633,1.0417217,0.6250092,-0.3342611,-0.24594508,-0.37072363,-0.049997743,0.12552539,-0.23844749,-0.4608106,-0.089765936,-0.8885592,-0.12570247,0.1663489,0.29286125,0.10184539,-0.09052838,0.16029769,0.3963505,0.028019989,0.10349843,-0.43998623,0.10448097,0.40487668,0.16632725,0.03151412,0.12206626,-0.5100687,0.3008094,-0.59943396,0.015594957,-0.08781183,0.17606702,-0.046698775,-0.4972703,0.22944765,0.12901682,0.16216472,-0.1719257,-0.211227,-0.13708034,0.54197574,0.037120376,0.21974562,0.81789243,-0.3394371,0.252486,0.039619677,0.40648735,1.0436316,-0.12185017,0.014193607,0.28255442,-0.45717412,-0.81528026,0.37398928,-0.30319685,0.27293307,-0.08111915,-0.39794558,-0.57972604,0.31151035,-0.023476323,-0.10083364,0.20746382,-0.5767359,-0.07926161,0.25879416,-0.28729963,-0.21509758,-0.4507588,-0.04837947,0.5270723,-0.25805557,-0.2456543,0.2346353,0.29956654,-0.3017252,-0.47655186,-0.023235938,-0.36028466,0.39875028,-0.06826743,-0.39846408,0.021640055,0.06953153,-0.35502657,0.35379097,0.3536874,-0.24910556,0.10894863,-0.5048784,0.067971565,0.73616815,-0.24180561,0.03230935,-0.44146723,-0.56335205,-1.0462126,-0.13986248,0.37601745,0.066791825,-0.0081153475,-0.742572,-0.029933952,-0.21365868,-0.059792962,-0.090205915,-0.32868367,0.5234348,0.13942601,0.18000084,0.024372686,-0.9511988,0.07156529,0.19289519,-0.27158442,-0.422886,0.69195247,-0.24775502,0.74988765,0.1829106,0.15945436,0.30240658,-0.75410634,0.2951031,-0.105513334,-0.028376158,-0.5418987,0.027230136,788 -286,0.44202513,-0.04855464,-0.3188884,-0.076084696,-0.29362062,-0.0040655453,-0.06195363,0.64058125,0.30707866,-0.42682016,-0.14270087,-0.28232372,0.0012177308,0.26553425,-0.18567017,-0.49279985,-0.064370975,0.20318063,-0.42669767,0.6211332,-0.38760787,0.21828797,-0.20875931,0.5798873,0.20273337,0.15310618,-0.22207779,-0.016814897,-0.0889786,-0.22095877,0.121303655,0.45597392,-0.6285252,0.3085928,-0.34992725,-0.31232056,-0.08631379,-0.5127965,-0.38887635,-0.73903406,0.13734558,-0.6326126,0.5052004,0.028237538,-0.2753135,0.28648463,0.12697484,0.22785707,-0.07459848,-0.09939145,0.08903249,-0.15521964,-0.0661299,-0.07173804,-0.24535331,-0.43538395,-0.6288598,0.09835617,-0.35027364,-0.16522358,-0.39047325,0.19046834,-0.25022224,-0.16574197,-0.017889122,0.74760175,-0.35567003,0.41170794,0.03503104,-0.06372378,0.16306202,-0.5551161,-0.30792338,-0.11141108,0.13416943,-0.11543688,-0.2307628,0.29181522,0.24793117,0.46333253,-0.10741079,-0.12599894,-0.287842,-0.08727605,0.028834868,0.4466662,-0.17808905,-0.49434885,-0.13638887,-0.19039334,-0.0074569704,0.21567902,0.10248581,-0.34462187,-0.12742826,-0.06963326,-0.15898919,0.4479171,0.46828747,-0.21507452,-0.33882475,0.2922019,0.4258124,0.26955092,-0.15820523,-0.06451262,0.05480361,-0.54265714,-0.18984991,-0.08646755,-0.1692477,0.39572996,-0.1777926,0.20795898,0.5414987,-0.119992934,-0.105506554,0.15125567,0.19669971,0.07486102,-0.5091255,-0.25549296,0.31077382,-0.45352542,0.189255,-0.1822594,0.7915831,-0.044046696,-0.6870392,0.26022184,-0.7276939,0.020778123,-0.02046468,0.4370804,0.8707737,0.3600358,0.35763592,0.5027586,-0.26689968,-0.041530084,-0.06646042,-0.18012191,0.0041115363,-0.24197994,0.039427646,-0.494425,-0.08368492,-0.017374119,-0.018062932,0.1669323,0.48455667,-0.57384276,-0.26350984,0.19107418,0.8784823,-0.1589529,-0.17840013,0.8340595,1.0492456,0.9183852,0.117132775,1.1566758,0.10037205,-0.06490619,0.32271093,-0.21348897,-0.70975524,0.3049963,0.19036739,-0.28425485,0.06647522,0.08788295,-0.07035182,0.44642723,-0.41818857,-0.0598252,-0.080588564,0.2822197,0.19552739,-0.12174176,-0.41950843,-0.39908263,-0.05918156,-0.0071133096,0.07470495,0.3276623,-0.24454096,0.22413112,0.05334955,1.390941,0.010754275,0.1745256,0.13460378,0.4128796,0.20029224,-0.34372386,-0.057063762,0.3791944,0.20373078,0.16095664,-0.5222776,0.22220586,-0.23400894,-0.49367848,-0.20032111,-0.34129837,-0.24378566,0.0116207795,-0.5491379,-0.10956588,-0.31031293,-0.32094547,0.49615824,-2.7640243,-0.0723349,-0.012728228,0.36972407,-0.17719091,-0.3804092,-0.14151724,-0.40206692,0.4806169,0.23356189,0.41196933,-0.4806235,0.36583862,0.5639379,-0.5593909,-0.17017554,-0.5360328,-0.10415799,0.06906317,0.20296524,-0.09083545,0.025033744,-0.1103394,0.05830074,0.51986146,0.007520139,0.1849473,0.30646417,0.31710783,-0.14697677,0.3378491,-0.14017242,0.3926836,-0.2704939,-0.324726,0.31905377,-0.47858995,0.22132091,-0.16946648,0.09490518,0.6162653,-0.35790983,-0.86375314,-0.59238106,-0.3299574,0.99721587,-0.12695384,-0.37097284,0.36376476,-0.54890645,-0.30015743,-0.036822062,0.64359653,-0.109108694,0.0018944263,-0.7965952,0.07782738,-0.13730718,0.10565543,-0.047973342,0.05823928,-0.3500014,0.64723945,-0.023763895,0.41798356,0.25907594,0.21281596,-0.4367906,-0.4804069,0.03735526,0.81127155,0.3623048,0.2633341,-0.3118156,-0.19930544,-0.43704027,0.036290266,0.092355296,0.5728695,0.45451102,-0.055544075,0.25178775,0.27522564,-0.08344574,0.025861528,-0.16159607,-0.17863843,-0.13586332,0.086525455,0.53782594,0.64647985,-0.198805,0.45480198,-0.03172593,0.17083389,-0.38932067,-0.3308873,0.35210186,1.0531908,-0.14690323,-0.23129031,0.74474263,0.54984754,-0.23221493,0.3850786,-0.43326944,-0.2829693,0.49200153,-0.1355318,-0.57955617,0.07327265,-0.245645,0.014243478,-0.7426954,0.25120357,-0.26579708,-0.6010431,-0.67847186,-0.11791901,-2.507951,0.22608614,-0.13831486,-0.15338445,-0.28593028,-0.16857529,0.21625979,-0.49262416,-0.5191727,0.09248825,0.07234683,0.77570236,-0.21046476,0.09980129,-0.196719,-0.46539605,-0.31751397,0.14861624,0.20097406,0.39734623,-0.07194018,-0.41010943,-0.08734528,-0.04468045,-0.3512033,0.09535766,-0.5767469,-0.35057056,-0.12331252,-0.55195045,-0.24823374,0.60651463,-0.5342262,0.04496838,-0.27365237,-0.08208837,-0.024312908,0.29286358,0.18646035,0.22969188,0.16885649,-0.08563845,-0.2251324,-0.3010228,0.226723,0.016419789,0.24466142,0.49249744,-0.13549991,0.1916489,0.42935085,0.6061841,-0.18281461,1.1346437,0.40628958,0.0136231305,0.33471653,-0.20546691,-0.24960412,-0.5547141,-0.16793089,-0.11745334,-0.35201302,-0.44772428,-0.009719708,-0.29667717,-0.72086066,0.48209172,0.021804065,0.17372312,-0.02971226,0.25098416,0.431434,-0.28732547,-0.18595098,-0.15195054,-0.08518279,-0.45034128,-0.42510337,-0.47865057,-0.44252452,0.05661068,1.0157057,-0.11951179,0.047344446,0.14958698,-0.12742257,-0.0782208,0.17707552,-0.08027231,0.048350323,0.47553954,0.091289885,-0.5527201,0.4629764,-0.06236232,-0.24445026,-0.6040491,0.21651255,0.60805017,-0.5646951,0.7289561,0.27233347,0.1129978,-0.32115203,-0.5817389,-0.18092728,-0.05313667,-0.25597948,0.41741735,0.38047135,-1.0154152,0.36500874,0.26234895,-0.120830975,-0.8346637,0.6495173,-0.12988333,-0.2661899,-0.14527646,0.39472592,0.30834863,0.1601916,0.025871418,0.3791787,-0.40290606,0.27119547,0.07836318,-0.0985395,0.2606913,-0.31305254,-0.020798227,-0.7403567,0.07859927,-0.39837134,-0.4631254,0.21973915,0.07886904,-0.0516322,0.4717851,0.047298886,0.2102311,-0.13416074,0.1540986,-0.15404136,-0.18656348,0.10624614,0.44026324,0.6682035,-0.3206426,0.5631675,0.011285246,0.05387789,0.08372586,0.23800702,0.3927532,-0.118320815,0.49328622,-0.089637116,-0.25359744,0.12314231,0.8269623,0.073264666,0.45732123,0.0117743965,-0.11239548,0.33826342,-0.027809108,0.2473204,-0.15046462,-0.58118397,-0.033007145,-0.3870828,0.17487277,0.4791558,0.019946678,0.2520611,-0.057956997,-0.27562922,0.121194586,0.32703057,0.042397335,-1.2816863,0.25916117,0.21248539,0.982376,0.6111743,0.028433912,0.029259134,0.65303224,-0.05357295,0.11367965,0.49345696,0.10969602,-0.34371248,0.6712398,-0.78082585,0.42424586,-0.18067789,-0.056263827,0.06342063,-0.07669677,0.5454621,0.6202213,-0.26219082,-0.042121604,0.09352977,-0.3578942,0.18250345,-0.30612653,0.36466232,-0.57812333,-0.1690068,0.64557064,0.63001406,0.20201987,-0.4280468,0.021214155,0.18468666,-0.19296926,-0.113873266,0.117005914,-0.040403042,0.031612374,-0.6152233,-0.070503905,0.55538994,-0.14704068,0.1642521,0.23306085,-0.16781443,0.22908308,-0.1851912,-0.012551299,0.016730586,-0.7425746,-0.004389854,-0.33675548,-0.477716,0.5915299,-0.27037928,0.16060719,0.17273808,0.16040583,-0.41154984,0.45073614,0.15661551,0.72173274,0.003735594,0.017075209,-0.18409231,0.2331036,0.15189774,-0.10873033,-0.32459018,-0.25714904,0.06186111,-0.5682285,0.3123327,-0.08596174,-0.23514186,0.06797441,0.0508846,0.15659949,0.5539894,0.14187111,-0.084933564,-0.097811304,-0.26375973,-0.2342911,-0.04969977,0.043090962,0.43098822,0.10322212,-0.08440176,-0.14869766,-0.16131619,-0.16703944,0.18665595,-0.03926945,0.35989225,0.32113543,0.098816715,-0.12984295,-0.11721573,0.2097697,0.45591784,-0.067537,-0.10765056,-0.035720687,-0.15994868,-0.38351542,0.24753386,-0.10314587,0.3359417,0.12987134,-0.31715336,0.78853834,0.02497797,0.9986258,0.02572167,-0.37265903,0.19356567,0.34429875,-0.070883065,-0.13432191,-0.40520397,0.8320811,0.4068363,-0.07567827,-0.11496242,-0.26663363,0.097649194,0.2374527,-0.19697888,-0.22012344,-0.100017056,-0.65839446,-0.050209817,0.15121086,0.3039047,0.1362811,-0.13748519,-0.15898173,0.3818336,0.02849091,0.33770636,-0.46149758,-0.008887663,0.23117638,0.46235448,0.012570222,0.2642706,-0.3427439,0.357389,-0.618552,0.12199791,-0.23944433,0.17404312,-0.4545439,-0.19530617,0.17911582,0.016926428,0.4512584,-0.16829965,-0.21601738,-0.45156962,0.41340753,0.13532218,0.050922584,0.4757473,-0.2724104,0.042090006,0.029497236,0.47273904,0.96219116,-0.27379686,-0.16376556,0.22471686,-0.28787142,-0.5804961,0.30706823,-0.528221,0.23916276,0.031075776,-0.12861536,-0.31175995,0.135348,0.13889398,0.11813274,-0.05020185,-0.6259645,-0.0123847285,0.3364102,-0.16156001,-0.13630834,-0.07451092,-0.027087089,0.60357857,-0.12699823,-0.26338303,-0.00015590191,0.2966427,-0.13752957,-0.5137193,0.059258748,-0.50425035,0.22817916,-0.102282636,-0.3950676,-0.22221106,0.03852091,-0.5306456,0.065993644,0.0891478,-0.28684238,-0.045765232,-0.25143582,0.03695599,0.982202,-0.1479768,0.28458825,-0.3144433,-0.5772661,-0.7320319,-0.2746011,0.24349502,0.22003323,0.022901217,-0.47343877,0.05988311,-0.17529611,-0.26902017,-0.050484877,-0.38059673,0.29572734,0.2987547,0.3597088,-0.04811332,-0.87763304,0.025413342,0.09974122,-0.19089967,-0.63144284,0.38341042,-0.050495766,0.85589474,-0.014622187,0.13575338,0.1153817,-0.45384198,0.021131793,-0.10122724,-0.10032703,-0.5697118,0.08109105,789 -287,0.35128206,-0.35259262,-0.30392164,-0.10132961,-0.21642487,0.028410358,-0.2935532,0.3140229,0.19212379,-0.4004237,-0.21420279,-0.24627332,-0.087442845,0.37384588,-0.19479132,-0.42819685,0.019444285,0.04539102,-0.59049004,0.7161303,-0.32949582,0.1800862,0.12182975,0.37550774,0.42336676,0.12854871,0.20845374,-0.07409059,-0.09774239,-0.2490818,-0.085743636,0.05543193,-0.4766248,0.14934745,-0.20882562,-0.35649788,-0.07960692,-0.4519491,-0.31113622,-0.90354645,0.37220833,-0.82502234,0.4156518,-0.07782791,-0.29786718,0.3642606,0.15767305,0.41413757,-0.10047618,-0.06892372,0.16744089,-0.1357006,-0.017992616,0.075297005,0.04079963,-0.25228608,-0.59407395,0.0765799,-0.4076509,-0.18002471,-0.25975654,0.17142442,-0.40047595,-0.00085221924,0.018406475,0.5833256,-0.39093438,-0.07948282,0.097434774,-0.028200952,0.434418,-0.6366449,-0.2726925,-0.098459825,0.28205392,-0.121297516,-0.16874322,0.18118066,0.34915817,0.3969073,-0.027606212,-0.12190895,-0.2557842,-0.09825303,0.25295454,0.49379054,0.032691393,-0.5165228,-0.08507983,-0.18257971,0.31467286,0.058409214,0.2017324,-0.33136162,-0.119621545,0.070589624,-0.2555342,0.3335477,0.46667525,-0.22450629,-0.18614179,0.37050077,0.52537155,0.33201954,-0.16390572,0.11326961,-0.010836997,-0.44143716,-0.055402327,0.20548905,-0.2552804,0.6180912,-0.27205437,0.31533167,0.5466881,-0.06188034,0.15720142,0.012663971,-0.05443012,-0.22553632,-0.16040818,-0.25189006,0.15081838,-0.4655084,0.17993411,-0.3029531,0.7765693,0.12502596,-0.6874561,0.30841503,-0.5034186,0.2107077,-0.055004086,0.5558016,0.73434806,0.24848244,0.36785635,0.66479623,-0.2810306,0.07285475,-0.07454537,-0.29604387,-0.028014509,-0.24026486,-0.019140037,-0.48947042,-0.04316378,0.06358167,-0.031551257,-0.060567677,0.37864476,-0.41282168,-0.03882749,0.15563494,0.7278492,-0.17264089,-0.0056637325,0.93424803,1.0142769,1.0324944,0.2327535,1.0870864,0.13920663,-0.17658718,0.15932664,-0.22136301,-0.70673794,0.32236564,0.28707185,0.3617015,0.15761106,0.06815561,-0.119864464,0.4674025,-0.5219481,0.1562252,-0.20016654,0.032362446,0.18059094,-0.08400955,-0.32746518,-0.20978314,0.021200204,-0.031064553,0.08886998,0.17937501,-0.19960798,0.41705927,0.09177467,1.3873342,-0.1080053,-0.08608093,0.07278811,0.489733,0.06892673,-0.25728923,0.015453053,0.16737908,0.48847646,-0.0077149393,-0.6225891,0.26609126,-0.106094345,-0.5140203,-0.14098135,-0.23129721,-0.057360515,-0.0042974055,-0.44047913,-0.08994781,-0.1603114,-0.40306523,0.38536522,-2.761569,-0.19944303,-0.19794306,0.2158875,-0.23293108,-0.14195783,-0.06374032,-0.44118387,0.46828553,0.37865883,0.4343668,-0.7678472,0.3182958,0.47966784,-0.55644125,-0.03868488,-0.7334551,-0.22608744,0.07136362,0.5107374,0.057550065,-0.027873604,0.06350438,0.28056005,0.50710183,0.061008446,0.14337297,0.28239077,0.26801127,-0.008684399,0.4109722,0.06749236,0.3970796,-0.1405294,-0.09478856,0.41490793,-0.34887388,0.29537338,-0.09859465,0.23671053,0.46405533,-0.38232243,-0.81440765,-0.70201045,-0.34602642,1.2641796,-0.17696385,-0.5808385,0.2843745,-0.24607745,-0.1548165,-0.09970277,0.55057085,-0.2152778,-0.041876968,-0.9137201,-0.08649881,-0.12562597,0.21585886,-0.030691423,-0.088435106,-0.3681379,0.7433549,-0.03933387,0.4628237,0.34382707,0.31642583,-0.34168562,-0.5365696,0.12072647,0.88951796,0.4583822,0.098592825,-0.33239153,-0.21179147,-0.3916996,-0.21097402,0.092817314,0.42619947,0.73531526,-0.008150447,0.24071772,0.25670427,-0.0053935605,-0.043720208,-0.121517144,-0.19312544,-0.15642487,0.0144699095,0.5867189,0.5949821,-0.117933035,0.40772387,-0.15677975,0.1687424,-0.13536571,-0.40472183,0.65373385,1.1065958,-0.210874,-0.2197049,0.5244526,0.36942944,-0.2641142,0.44210097,-0.5768743,-0.1911168,0.41170552,-0.073138684,-0.5253514,0.28838545,-0.36076683,0.25020573,-0.899771,0.31020433,-0.3386069,-0.34596673,-0.6371351,-0.043428563,-3.171425,0.0892776,-0.19664618,-0.4399777,-0.3019576,-0.29729068,0.28309524,-0.46559468,-0.57574636,0.14539878,0.13315052,0.6503266,-0.035504103,0.08090326,-0.2855385,-0.07750866,-0.34493002,0.08680454,-0.027320711,0.41217864,-0.15897699,-0.41322958,-0.076072134,-0.23985846,-0.43542254,-0.043204315,-0.38817674,-0.5087848,-0.14461944,-0.32647964,-0.3546363,0.5163266,-0.22092745,0.033790335,-0.34149742,-0.11697957,-0.1538923,0.55829865,0.22144733,0.07868929,-0.03305561,-0.0760012,-0.012364873,-0.23656088,0.08094723,0.06809939,0.08813857,0.42397258,-0.13641429,0.40114415,0.4085409,0.5625301,-0.20848827,0.8294089,0.5666079,-0.027724396,0.20263754,-0.21473083,-0.2644809,-0.46563762,-0.24950129,-0.0112530785,-0.35631177,-0.5268618,-0.034294147,-0.26394367,-0.7879563,0.41794366,-0.015944896,0.20724894,0.050195765,0.1029524,0.37958708,-0.075424574,0.0055395365,-0.0001818498,-0.057465434,-0.6318239,-0.3359967,-0.7406558,-0.55259055,0.0095628975,0.7577921,-0.16883428,-0.09382392,0.14355221,-0.32447782,0.07941284,0.17853202,0.01813991,0.042080607,0.30047673,0.015540898,-0.7661136,0.5561911,-0.015622632,-0.16579133,-0.4512763,0.1278711,0.4959067,-0.42663854,0.40984944,0.33966428,0.015089726,-0.28532636,-0.5051588,-0.19031283,-0.109950304,-0.22971973,0.42998123,0.20924084,-0.6311773,0.46944943,0.27825895,-0.10750394,-0.7476912,0.47000244,0.040809676,-0.16050074,0.0022384485,0.34324515,0.07506725,0.05776692,-0.2005673,0.25575623,-0.41259113,0.20854998,0.24517685,-0.019500662,0.24803303,-0.24193183,-0.19237547,-0.536093,0.055423684,-0.5192446,-0.19196859,0.13146576,0.08074595,0.13700292,0.16074055,0.06018373,0.36213627,-0.20316286,0.18442051,-0.009238513,-0.14100622,0.16692461,0.5418661,0.40591103,-0.38630307,0.62150264,0.061456773,-0.2264576,-0.009105782,-0.007910581,0.37410805,0.21971372,0.27385706,-0.016667146,-0.1668197,0.19908278,0.6879269,0.2537778,0.5053148,0.06419368,-0.16467346,0.4551619,0.106042765,0.415193,-0.16141647,-0.52091604,-0.103398435,-0.26653954,0.09190996,0.54302955,0.07005574,0.29630885,-0.027356565,-0.24614884,0.0054249484,0.022282563,-0.1275918,-1.3769149,0.3851004,0.28881648,0.8369662,0.6369241,-0.22408663,0.22792435,0.6401506,-0.21280275,0.12023282,0.2838785,0.15188381,-0.6282731,0.49327004,-0.8074048,0.32810986,-0.0448848,0.029753506,-0.005288494,0.03627532,0.36807507,0.5631169,-0.22610556,0.051134888,-0.06198067,-0.30780157,0.19225867,-0.39890158,0.08042465,-0.4645527,-0.26974156,0.5836881,0.5102366,0.26051968,-0.23877957,0.021702262,0.09859329,-0.07388503,0.13783345,-0.003694431,0.07476855,-0.14883514,-0.63664263,-0.19093516,0.49812835,-0.23909579,0.13460293,-0.021606838,-0.27483132,0.041608762,-0.13416515,-0.12767698,-0.05660402,-0.79504627,-0.059666764,-0.2361051,-0.3898938,0.3680607,-0.30848485,0.27107805,0.28305155,0.0031597754,-0.27343616,0.10905086,0.08517061,0.6090144,0.010251713,-0.08538588,-0.35167205,-0.0025664528,0.29683372,-0.15215617,-0.1886438,-0.13803454,-0.046325993,-0.5279494,0.5207021,-0.07965045,-0.2406324,0.24373375,-0.13983777,-0.030257886,0.57931775,-0.20135394,-0.15936807,0.022550609,-0.15196756,-0.1305552,-0.18000862,-0.12716044,0.36367854,0.2436327,-0.043211997,-0.08833534,-0.005210964,-0.0017219861,0.45925054,0.010643598,0.45706692,0.44056505,-0.04826211,-0.5562385,-0.065856665,0.21105734,0.37626177,0.10557257,-0.20870902,-0.25529203,-0.4565726,-0.3278932,0.25554457,-0.13739343,0.29652387,0.013082592,-0.28370982,0.6875423,0.16785179,1.011442,0.0371497,-0.49026278,0.16169351,0.4378437,-0.07681978,-0.06757429,-0.34154448,0.6627875,0.39910182,-0.08444183,-0.039325114,-0.33644047,0.010055805,0.2709888,-0.10847092,0.024650939,-0.037387643,-0.6482965,-0.24310054,0.15639868,0.23102781,-0.029921258,-0.17643413,0.0016691685,0.21410204,0.0077655236,0.42573765,-0.5248938,-0.0060706614,0.3514859,0.05979762,-0.03502233,0.050416075,-0.4231061,0.3448824,-0.5660192,-0.013447412,-0.18014218,0.1748691,-0.02306794,-0.20003088,0.2320834,0.0535167,0.39391166,-0.3578924,-0.35639107,-0.33293456,0.5298932,0.2001802,0.17154616,0.49737498,-0.25764066,0.27270824,0.039148543,0.5234944,1.08163,-0.29551503,0.02484407,0.16174269,-0.3708455,-0.5287719,0.36585337,-0.3042882,0.2955218,-0.026240153,-0.26848742,-0.67918515,0.24911973,0.3294263,0.16416268,0.009919643,-0.6003535,-0.39446634,0.31997263,-0.3376523,-0.268462,-0.39382136,-0.08568074,0.46830457,-0.22804162,-0.2998828,0.0034891048,0.2591986,-0.1636495,-0.4374656,-0.0013043284,-0.30769876,0.28955948,0.06471618,-0.32423046,-0.18708111,0.106349364,-0.48882666,0.112614915,0.06562255,-0.26869604,0.017894184,-0.27287674,-0.004286136,0.92685664,-0.28324836,0.122630954,-0.55230165,-0.5160314,-0.677756,-0.42629465,0.5037497,0.17276584,0.045712035,-0.595635,0.019309647,-0.16338307,0.08162999,0.022955727,-0.43911526,0.5007801,0.18952905,0.31946337,-0.048279054,-0.5880509,0.08577394,0.033776946,0.013879089,-0.4442365,0.47944835,0.18141378,0.7150395,0.1229305,0.16960558,0.064360335,-0.3820441,0.054882843,-0.106791504,-0.28236225,-0.61605376,0.17659582,797 -288,0.22927949,-0.052323453,-0.5379839,-0.031738855,-0.3023486,0.20630829,-0.16224848,0.527103,0.26516363,-0.39215487,-0.123413436,0.07847997,-0.001525708,0.30901212,-0.24846938,-0.5157761,0.00912948,0.107450314,-0.5006758,0.6201536,-0.19189243,0.35195458,-0.22503762,0.39061075,0.09676406,0.28410393,-0.20009808,-0.07340859,-0.108619206,-0.1450744,0.04739584,0.46850535,-0.3389391,0.2400344,-0.1980631,-0.23376203,-0.014565659,-0.26016223,-0.2676781,-0.6125861,0.17166437,-0.62560546,0.5777622,-0.11298561,-0.2139813,0.32846263,0.1623474,0.17304207,-0.005444638,-0.05267114,0.015725097,-0.07968,-0.16385593,-0.17965667,-0.33872762,-0.48209584,-0.39982942,0.0950785,-0.6633625,-0.101542465,-0.28168455,0.114409335,-0.2905541,-0.2690677,-0.15212436,0.5884939,-0.39628956,0.10300016,0.101527475,-0.09989519,0.17820075,-0.7112503,-0.15608858,0.1185696,0.20202011,-0.14602715,-0.14059561,0.15315655,0.18310843,0.26166305,-0.054515895,-0.085351184,-0.33291814,-0.15724207,0.23125719,0.45229504,-0.23992032,-0.40161234,-0.01518953,0.12260889,0.30115092,0.118350476,0.035129085,-0.17748071,-0.1252856,-0.090308025,-0.18556222,0.4193929,0.41745198,-0.15047589,-0.09635404,0.3870042,0.35230085,0.4108281,-0.30561626,-0.025622992,-0.066662855,-0.4136904,-0.09987744,-0.05981741,-0.065741554,0.3142105,-0.027492631,0.3777998,0.42422274,-0.09597489,0.09025577,0.18615296,0.16726826,0.13047498,-0.2865674,-0.17135672,0.049259353,-0.4186687,0.12078169,-0.12859713,0.57640064,-0.018074011,-0.61299706,0.2645726,-0.5017818,-0.06656027,-0.038846023,0.40791026,0.61593527,0.40317425,0.002231117,0.4537673,-0.18921824,0.0767448,-0.2506217,-0.31452313,-0.06040545,-0.07377962,-0.07410468,-0.5699598,-0.022357965,0.011805908,0.0072053513,0.028620731,0.25731713,-0.5305187,-0.24583955,0.12549436,0.8222555,-0.25753337,-0.20094888,0.69443774,1.0060023,0.82503223,0.02123388,0.9822429,-0.010055762,-0.09003895,0.026021147,-0.2179109,-0.3597652,0.28471968,0.3086913,-0.19952746,0.22967005,-0.032031965,-0.024486113,0.384987,-0.2024593,-0.18738371,-0.24919577,0.21947743,0.17028005,-0.12826699,-0.4234934,-0.35970452,-0.041471347,-0.06592396,0.17762761,0.2400514,-0.22267532,0.19978768,0.1357211,1.3447192,-0.056110643,0.08711682,0.13479927,0.35790065,0.20737974,-0.145926,0.015365283,0.2629683,0.33128807,0.11996942,-0.4988821,0.21273561,-0.26430067,-0.5608977,-0.14133151,-0.2951934,-0.20470734,0.11448323,-0.54955375,-0.14473106,-0.09519026,-0.31423888,0.4249641,-2.8555207,-0.07654881,-0.12418158,0.3284405,-0.16403745,-0.39206874,-0.15031537,-0.2385537,0.43152067,0.26668847,0.39173687,-0.3379118,0.37846002,0.40582624,-0.47656775,-0.12947045,-0.4756772,-0.018991232,0.06668411,0.33633736,0.048896957,0.026746767,0.1377947,0.124537125,0.49368522,-0.23473327,0.18338524,0.38180745,0.29643244,-0.14337239,0.29679972,-0.09214748,0.51090366,-0.23697615,-0.20535952,0.25219718,-0.35335127,0.33223617,-0.107075535,0.19656667,0.4163255,-0.2778336,-0.8830785,-0.5973783,-0.22089437,1.3480428,-0.12601295,-0.44553432,0.23905331,-0.47326833,-0.3675563,-0.061642207,0.58587074,-0.018047057,-0.0760986,-0.7136114,0.08072099,-0.22491659,0.13184713,-0.04269589,-0.032524426,-0.32372415,0.49820346,0.001889962,0.5269926,0.32560202,0.29239362,-0.14943932,-0.16809551,-0.03995894,0.81624836,0.4850693,0.14689782,-0.17261226,-0.18295673,-0.30058897,0.14542082,0.16550423,0.7443984,0.45533973,0.09528872,0.08982927,0.12676768,-0.016999686,0.1900945,-0.2257042,-0.21692394,-0.15186124,0.19653276,0.48540884,0.30525526,-0.052232992,0.49209425,-0.055867385,0.12166293,-0.29981574,-0.34902993,0.31631014,0.7406553,-0.3109857,-0.2717924,0.6772242,0.5756894,-0.0917765,0.27827558,-0.47742635,-0.3445668,0.47150522,-0.26302537,-0.42948905,0.2448483,-0.20734362,0.103558294,-0.8056787,0.2349111,-0.45366043,-0.75399595,-0.3107516,0.055416804,-2.7426538,0.26412192,-0.06247314,-0.22905125,-0.39244118,-0.3778251,0.26463792,-0.442982,-0.49950492,0.1729679,0.17254938,0.6541882,-0.0966649,0.037349768,-0.070859164,-0.5257246,0.008694676,0.18546207,0.0033007383,0.3026841,-0.14548606,-0.36436287,-0.16405007,-0.08175039,-0.28591824,0.24316864,-0.60306007,-0.3579391,-0.13380541,-0.3395014,-0.107943505,0.5393271,-0.40713108,0.074441925,-0.2394877,0.12349025,0.028486552,0.2335535,0.009502458,0.23358856,0.18045072,-0.12357764,0.10519341,-0.2691959,0.33880875,0.111918606,0.3380608,0.4177123,0.005668628,0.28553885,0.5682495,0.53875047,-0.14632295,0.89409834,0.44860688,-0.13134469,0.4526724,-0.27657527,-0.32100013,-0.51007015,-0.30282986,0.089292854,-0.30883026,-0.40407333,-0.15604872,-0.25408775,-0.80245715,0.38109627,0.025068697,0.16758803,-0.14345863,0.42891833,0.5179885,-0.2845786,-0.028850278,0.025321294,-0.11046573,-0.45262465,-0.4412205,-0.46921286,-0.29084927,-0.10617367,0.9856186,-0.3526378,0.18989068,0.029569022,-0.1676636,0.1079367,0.11177159,0.15757395,0.00883534,0.3429498,-0.21440312,-0.5390742,0.3642008,-0.25474364,-0.35097557,-0.36590227,0.28705558,0.60560775,-0.5284042,0.5594019,0.40107816,0.031542625,-0.35257304,-0.5441827,-0.0032302777,0.030879887,-0.20311946,0.34124753,0.33938265,-0.79993504,0.4298418,0.33390376,-0.15489912,-0.6596266,0.5564188,-0.036385886,-0.23033114,-0.06866026,0.37233618,0.22033496,-0.05609112,-0.15489677,0.112256326,-0.3285888,0.2936309,0.048675075,-0.05409197,0.107288845,-0.25404042,-0.076408125,-0.79638666,0.12062152,-0.5224857,-0.32501468,0.20063375,0.055723634,0.08386178,0.1753313,-0.06300618,0.4274325,-0.3948726,0.1252988,-0.20351811,-0.36201152,0.31970844,0.40638047,0.45408556,-0.25396368,0.45969293,0.024477687,0.010373417,0.14917387,0.32903484,0.5547861,-0.057169817,0.42130736,-0.11714174,-0.12371103,0.1685045,0.9027814,0.120730214,0.34026057,-0.1760833,-0.11685285,0.10520943,-0.03872281,0.19892082,-0.13240616,-0.4635562,-0.17764126,-0.15731691,0.10884153,0.5341556,0.11546697,0.2968511,0.037405197,-0.2523271,0.083399914,0.24148948,0.2212464,-1.0870527,0.4960483,0.1617903,0.92456234,0.26317608,0.17915885,-0.016661981,0.5242236,-0.09134241,0.15286914,0.32380515,0.13164547,-0.37066713,0.48058853,-0.73064435,0.37748975,-0.04870228,-0.0836118,0.20598593,-0.07569904,0.38891214,0.9732009,-0.11071637,-0.0065820417,0.17172761,-0.326056,-0.027627159,-0.280505,0.03333467,-0.5589743,-0.40566507,0.4934687,0.50063264,0.35416138,-0.29668367,0.03373726,0.22994992,-0.16778244,0.18020032,-0.020210888,0.16907889,-0.18691431,-0.5247773,-0.023920683,0.4402486,-0.07716034,0.16788305,0.019298172,-0.20832013,0.27946967,-0.028464073,0.08677264,0.098391995,-0.4425111,0.060825665,-0.32965988,-0.535846,0.3098286,-0.36784008,0.14950933,0.12694672,0.06375593,-0.23960342,0.48647115,0.08112018,0.6724204,-0.05995616,-0.08161715,-0.35059607,0.2359926,0.13119346,-0.17877959,-0.372649,-0.23517092,0.13409376,-0.60090005,0.20557325,-0.11953964,-0.20787768,0.004799811,-0.16024822,0.10996438,0.44870389,0.03479351,-0.07456608,-0.0899317,-0.18397634,-0.26250207,-0.28950235,-0.053294133,0.24460869,0.13331051,-0.11781699,-0.15578942,-0.20316489,-0.12171273,0.12416184,-0.07367863,0.40048558,0.37654468,0.11598428,-0.22922039,-0.13187684,0.23723711,0.3816222,0.09435888,0.040569685,-0.23876895,-0.29128966,-0.31880692,0.1678869,-0.059686456,0.26035723,0.1880217,-0.13972887,0.81317306,-0.03416736,0.8980115,0.023309557,-0.29062545,0.14479654,0.32379,-0.048826497,-0.11459513,-0.32059276,0.8810184,0.5097789,0.10207121,0.037436638,-0.26774997,-0.059866983,0.106449686,-0.30018738,-0.03856527,-0.083768226,-0.5564068,-0.24453305,0.14815153,0.2553409,0.08724635,-0.09380832,-0.08050476,0.19679056,0.105021186,0.27304247,-0.57912046,0.026092486,0.19534732,0.182665,-0.049472213,0.2077886,-0.53833604,0.29348904,-0.66280097,0.04933371,-0.14176394,0.13639113,-0.2207845,-0.21221043,0.22859049,-0.13284974,0.30469552,-0.19684741,-0.33448157,-0.27150005,0.27108255,0.0055060824,-0.012107027,0.43050736,-0.2537474,0.12520337,0.08406616,0.5659405,0.8550219,-0.31218046,-0.11051404,0.39212522,-0.3124245,-0.64674276,-0.029246824,-0.36563578,0.26309493,-0.07751229,-0.14190388,-0.30420738,0.2917247,0.21471491,0.08810704,-0.26593328,-0.544401,-0.076041065,0.18000863,-0.27355868,-0.15956697,-0.24770029,0.09138762,0.47993502,-0.26188576,-0.349315,-0.03728238,0.39044392,-0.11870227,-0.45844352,0.17335974,-0.3079351,0.22764692,0.0015388657,-0.3990378,-0.2516769,-0.06494177,-0.44427153,0.14157814,0.20285603,-0.25545517,-0.04641006,-0.19700988,0.1138157,0.7797075,-0.17439884,0.1386889,-0.33831054,-0.51852214,-0.6320784,-0.45010293,-0.020721562,0.22038002,-0.026829457,-0.6582146,0.18843985,-0.09936193,-0.23909266,-0.13345261,-0.31165215,0.39849824,0.11860555,0.327102,-0.27371678,-1.0297939,0.25049463,0.063447185,-0.12975246,-0.4718079,0.41375786,-0.06940265,0.747016,0.07147392,0.05031174,0.13323665,-0.41847852,0.0025104205,-0.11759078,-0.18563214,-0.60802346,0.11481762,802 -289,0.34318736,-0.27103525,-0.39401805,-0.2307658,-0.4946808,0.07314162,-0.26071227,0.27596658,0.20994486,-0.20808646,-0.08673687,-0.18276523,0.17012902,0.42854393,-0.1192443,-0.42957038,-0.18096027,0.15491554,-0.685414,0.41645834,-0.5722118,0.22465,0.011965976,0.41277176,0.32759184,0.312582,0.22933817,-0.14023446,-0.120562695,-0.074425586,-0.10555253,0.14388627,-0.48896644,-0.06737145,-0.33582053,-0.42921266,0.011368092,-0.51191586,-0.35743332,-0.7048228,0.22156271,-1.0211717,0.5309301,-0.023235826,-0.16788091,0.023037024,0.3524852,0.49945858,-0.25627363,-0.002573953,0.22460191,-0.26475787,0.0011193037,-0.30939192,-0.17713787,-0.4621812,-0.4957305,-0.11743757,-0.5494555,-0.32500032,-0.18944782,0.15631385,-0.34600773,0.097371705,-0.03778855,0.34516972,-0.4896355,-0.052696418,0.3289536,-0.103294276,0.39162007,-0.56111634,-0.045206666,-0.076324716,0.4402743,-0.14741446,-0.1735203,0.42919382,0.29023057,0.3239603,0.12278979,-0.27122116,-0.2434204,-0.24424836,0.03197024,0.45328683,-0.22540665,-0.30028275,-0.28244892,0.08493328,0.38388702,0.42016315,-0.054565366,-0.12067456,0.051236566,-0.026795868,-0.17385925,0.68977666,0.52139765,-0.25322008,-0.30727196,0.22067179,0.6368576,0.16882038,-0.36596283,-0.052398905,0.08465631,-0.5655596,-0.13269371,0.34361544,-0.13063379,0.4487791,-0.13948096,0.18289126,0.8200339,-0.2805241,0.0042171003,-0.033254094,0.060644064,-0.18830611,-0.29059485,-0.23413175,0.15887421,-0.6591099,0.078303955,-0.25930297,0.81645256,0.21283096,-0.5864466,0.31687418,-0.5944561,0.14515877,-0.12937601,0.6081366,0.6395451,0.44785872,0.41546974,0.7613698,-0.13254124,0.20908624,-0.07132299,-0.37253258,0.101577,-0.34171695,0.08015212,-0.5280749,0.029918721,-0.15241675,0.055948567,0.110452555,0.39993802,-0.47199187,-0.061868787,0.38656935,0.77916247,-0.35955924,0.06190403,0.6600164,1.042177,1.1129733,-0.054352257,0.95670354,0.31117585,-0.31930724,0.26725823,-0.3547087,-0.5350534,0.28751782,0.330326,-0.2857395,0.35117444,-0.17438796,0.035730798,0.23380123,-0.5034028,0.10738705,-0.010799583,0.12793891,0.2760661,0.050186913,-0.5531477,-0.27640477,-0.08677461,-0.011612987,0.12054016,0.22041841,-0.19583829,0.40757665,-0.07127164,1.3098485,-0.018725451,-0.062023066,0.08402087,0.79860604,0.10464776,-0.15277249,-0.047931314,0.2084232,0.35851136,0.13023497,-0.59611255,0.2626688,-0.29598764,-0.46976092,-0.15676075,-0.39326122,-0.104210965,0.053342912,-0.48759058,-0.17646986,-0.08318793,-0.301859,0.47161618,-2.8238194,-0.36309084,-0.16739413,0.287333,-0.29082564,-0.17543603,-0.0710727,-0.56422925,0.26705208,0.25644866,0.42784217,-0.74703103,0.46663585,0.5599249,-0.64668167,-0.07733314,-0.83792305,-0.18852457,-0.07503058,0.48182064,0.05491712,-0.100724116,-0.0027069966,0.3068138,0.6784205,-0.015807109,0.10115003,0.31681803,0.3157002,0.112864524,0.6840303,0.017557537,0.44581586,-0.45419624,-0.1590635,0.3572869,-0.25135818,0.11421759,-0.14305201,0.10671625,0.6933796,-0.50531375,-0.90763825,-0.6680334,-0.19914058,0.94338876,-0.21083497,-0.42924303,0.1241158,-0.4015566,-0.053094156,-0.09574518,0.5632964,-0.052634694,0.06582423,-0.72460943,0.08388826,0.051367037,0.09236577,0.030230427,0.08526314,-0.31169832,0.6608219,-0.06329804,0.4394795,0.20802674,0.20029452,-0.31362307,-0.43305486,0.08076707,0.6911747,0.30344453,0.075536124,-0.25922424,-0.2506208,-0.18876831,-0.12595436,0.012859727,0.3501379,0.83437866,-0.13173869,0.14983188,0.36485884,-0.23910908,-0.029197773,-0.07620626,-0.14476135,-0.070174426,0.110864334,0.52956694,0.64322084,-0.017577933,0.57578623,-0.25339535,0.26817667,-0.09250318,-0.48142242,0.5785803,0.73123056,-0.1581125,-0.087118484,0.40221688,0.61117804,-0.41125157,0.47705778,-0.73667806,-0.27117628,0.6389529,-0.2545469,-0.4231983,0.10904615,-0.27526447,0.25019333,-0.74934113,0.21160068,-0.31535068,-0.41309536,-0.5161328,-0.11463437,-3.0852325,0.23129629,-0.19618085,-0.13321787,-0.18464263,-0.13159606,0.22201808,-0.5548271,-0.49391803,0.10986953,0.20993513,0.76575905,0.0028727034,0.105013646,-0.33101216,-0.205367,-0.2533865,0.179792,0.2600765,0.36741763,-0.22698593,-0.55248034,0.12481771,-0.2024044,-0.58517176,0.11204211,-0.6155007,-0.46360067,-0.10941831,-0.46627495,-0.42051035,0.60530627,-0.21820995,0.13228218,-0.23577677,0.06511662,-0.052067433,0.2913807,0.20949061,0.036907706,0.18408576,0.024608443,0.20969859,-0.3806867,0.48344374,-0.050463226,0.35065565,0.13221806,0.13505861,0.19386335,0.59428346,0.5560535,-0.11762689,1.0683535,0.47205594,-0.07964557,0.115357645,-0.24022684,-0.2342946,-0.5492505,-0.25801596,-0.11148872,-0.38243192,-0.4423343,0.06955169,-0.2909716,-0.78112036,0.7489905,-0.093729086,0.37362102,-0.024086865,0.3093017,0.4668942,-0.22405557,-0.018314803,-0.082849815,-0.14282036,-0.560216,-0.3314196,-0.76904964,-0.5677839,-0.05114871,0.91126096,-0.21772483,-0.026279194,-0.088662274,-0.3882487,0.09764036,0.15745075,0.013716682,0.3352952,0.43691844,-0.13257284,-0.67357296,0.34040722,0.013981384,-0.047737937,-0.46191397,0.087530166,0.7557266,-0.71076113,0.38859692,0.4194013,0.027123729,-0.2550518,-0.39940056,-0.19313517,-0.086877,-0.27179196,0.4291473,0.037365373,-0.8201024,0.57647926,0.21984035,-0.3969421,-0.6251123,0.54108846,0.036106307,-0.36873704,-0.016451376,0.2527251,0.20233384,-0.10377059,-0.3188076,0.27203855,-0.38001233,0.12431939,0.15396854,0.04698939,0.41875026,-0.10589967,-0.32883018,-0.81428707,-0.06696986,-0.51089793,-0.27412257,0.4642512,-0.016323008,0.08638279,0.28530967,0.08955768,0.26534402,-0.14284854,-0.0019576787,-0.091958396,-0.3396958,0.22894292,0.39090812,0.38925993,-0.42345238,0.6321736,0.031951945,-0.156085,0.16670975,-0.12538883,0.32154432,-0.010870639,0.42164344,-0.048841946,-0.34904262,0.38806096,0.7040717,0.32720798,0.37596464,0.09168053,-0.05931994,0.4110457,0.034287624,0.055549916,-0.08346065,-0.3119632,0.0016815146,-0.18436308,0.08850875,0.38795602,0.16395648,0.38535246,0.026124204,-0.23181503,0.016959775,0.049849495,-0.20647888,-1.3445653,0.31365153,0.29424208,0.80757946,0.4680276,-0.04457366,-0.089758,0.79432106,-0.38537148,0.02065614,0.5325512,0.13326642,-0.38505515,0.7509677,-0.6787972,0.6209474,-0.07601248,-0.07660923,-0.02856534,0.2084888,0.43271643,0.72721726,-0.269311,0.08219035,0.043570068,-0.28993362,0.20449467,-0.35827368,0.05326031,-0.5342576,-0.19353785,0.7746521,0.31504318,0.4009673,-0.024672087,-0.084838025,0.035406776,-0.13217108,0.36373004,-0.030498499,-0.062114216,0.084848605,-0.67847,-0.09420528,0.3944723,0.053406548,0.18540137,-0.10269764,-0.24786541,0.04645878,-0.1874155,-0.019129975,-0.034296367,-0.6651861,-0.024879638,-0.2508955,-0.56881267,0.64225525,-0.35946184,0.25258464,0.20948371,-0.011100087,-0.12647639,0.28615758,0.18558206,0.72245824,0.008194466,-0.30692673,-0.21624465,-0.08671189,0.26430452,-0.24227375,0.04519825,-0.29944327,0.09367654,-0.59554344,0.7041931,-0.2033222,-0.47868174,0.22467525,-0.23173405,-0.009685371,0.64524424,0.023036735,-0.14787968,-0.00973742,-0.05398054,-0.39048386,-0.06924704,-0.2601974,0.22780535,0.30082405,-0.16063659,-0.18226375,-0.30475992,0.021102227,0.7713181,-0.1069187,0.5567034,0.24644595,0.06166797,-0.27397224,0.041085593,0.17212589,0.53868765,0.06425382,-0.14116327,-0.45554596,-0.22163065,-0.16292956,0.17998429,-0.008960876,0.22121437,0.073448926,-0.29529735,1.009282,-0.30674335,1.1513332,0.19747019,-0.43245456,0.105131425,0.45397434,-0.009177323,0.032973718,-0.34007156,0.70402324,0.5317229,-0.1648451,-0.20611885,-0.47117516,0.03457533,0.30040407,-0.26823112,-0.16336296,-0.11577416,-0.45656377,-0.47817463,0.34405422,0.17946145,0.3477294,-0.15089433,0.117993005,0.10830916,-0.002126319,0.49080485,-0.50844437,-0.10299315,0.22183532,0.24988016,-0.17000195,0.18471608,-0.44491875,0.40674585,-0.60084045,0.13426861,-0.47163385,0.17740634,-0.3189747,-0.39295524,0.17790715,0.07009606,0.32788607,-0.12700614,-0.3635081,-0.12636675,0.5018266,0.14325537,0.23892972,0.5996723,-0.23920444,0.03223199,0.009182858,0.42606455,1.3176156,-0.39528254,-0.07253957,0.27651054,-0.39514574,-0.5771896,0.4440071,-0.40109977,0.011153865,0.17597976,-0.29077855,-0.4125798,0.2370916,0.17880899,0.050822895,0.007537667,-0.4732666,-0.19853334,0.3175965,-0.2666511,-0.25174955,-0.27674678,0.36835966,0.5013701,-0.22101846,-0.2143773,-0.013102007,0.4691606,-0.22963336,-0.31690484,0.039902084,-0.2287757,0.34004173,0.036338918,-0.37334722,0.038492545,0.089647815,-0.48944128,0.029442945,0.25686526,-0.5360761,-0.00028773546,-0.18948016,-0.002678911,0.96529377,-0.20986165,-0.063639075,-0.45466486,-0.3613471,-0.9628987,-0.33238068,0.27638522,0.22392067,0.08147766,-0.33788723,0.060348526,0.00083349546,-0.39256898,0.102373786,-0.57839656,0.39869386,0.17574787,0.41138455,-0.15846096,-0.8020822,0.023206003,0.11254452,-0.19219635,-0.5292599,0.7318963,-0.07773391,0.87654465,0.10302995,0.02353651,0.055030167,-0.216553,0.18226989,-0.35794646,-0.23559086,-0.881901,0.00025084714,803 -290,0.6397513,-0.1925478,-0.6394624,-0.13253285,-0.18386579,-0.0506765,-0.07943866,0.5500529,0.29349405,-0.64426625,-0.24893217,-0.16929288,0.038024154,0.24330422,-0.21172324,-0.90777653,0.019678343,0.101854675,-0.41400516,0.48858172,-0.5238981,0.15914546,0.14918557,0.31621554,0.1145769,0.15679796,0.17339937,-0.15515523,-0.220431,0.15904906,-0.052893516,0.34435257,-0.4449689,0.008110234,-0.19610396,-0.39612186,-0.039683245,-0.41634274,-0.3377496,-0.8119191,0.39009055,-0.89988583,0.46319786,0.100383736,-0.259008,0.15577087,0.07559391,0.18482473,-0.28248534,-0.03201451,0.0048166136,-0.027990716,-0.13718908,-0.067832515,-0.2632564,-0.2833899,-0.6739281,0.23138694,-0.49296823,-0.01125524,-0.14440875,0.19310676,-0.5582263,0.0846487,-0.21059607,0.5744089,-0.41198462,-0.09565539,0.4815438,-0.11527365,0.28593984,-0.48169705,-0.13338086,-0.09826419,0.1269318,-0.11802564,-0.29981753,0.25474963,0.3637487,0.7158663,0.121351495,-0.3990277,-0.25296482,0.123257294,0.19369298,0.31089637,-0.24398878,-0.57979196,-0.24966772,0.06828785,0.23844305,0.18973643,0.17974791,-0.34477317,-0.017804436,0.2307203,-0.32932988,0.4011488,0.6056649,-0.26591682,-0.20503712,0.20439093,0.60028493,0.09597756,-0.08728657,0.1267934,0.09307252,-0.5882061,-0.14994603,0.1730149,-0.14148831,0.5289558,-0.29527685,0.28912786,0.7713898,-0.28147545,0.19416723,0.27224734,0.022414036,-0.13856617,-0.516409,-0.058504377,0.15601824,-0.58923477,0.1214632,-0.29268953,0.9933127,0.23579322,-0.6846933,0.40143055,-0.51925504,0.30357736,-0.2296832,0.6708489,0.77749044,0.15696052,0.31003705,0.7925084,-0.5228052,0.11451757,-0.024189869,-0.6304676,0.15596591,-0.14385504,0.11053729,-0.43802866,-0.11387808,-0.0036423604,-0.07765339,-0.038858574,0.5204655,-0.7086157,-0.14517456,-0.12600651,0.917509,-0.28804323,-0.18263814,0.8792539,0.9098247,0.93393415,0.10366658,1.4395896,0.30139002,-0.100318335,0.46489823,-0.27384982,-0.936887,0.43677795,0.25359443,-0.15933505,0.38675892,0.121554345,-0.16103724,0.484581,-0.4271548,0.17528556,-0.32440808,0.2570719,0.07150297,-0.17085983,-0.3049732,-0.19987416,-0.14103238,-0.047378436,0.15558584,0.21685733,-0.10526297,0.40142113,-0.08813461,1.5840077,-0.061498124,-0.015490618,-0.060403887,0.40456626,0.15377471,0.03431309,-0.14960118,0.12999828,0.38632402,0.094753094,-0.62642395,-0.017520476,-0.28814313,-0.33719632,-0.20006806,-0.4243396,0.07695239,-0.23176907,-0.4773407,-0.06288588,-0.2090154,-0.36418667,0.31130967,-2.4638865,-0.32267982,-0.09823253,0.34075263,-0.2528311,-0.35637662,-0.2644889,-0.49698406,0.494909,0.37192237,0.5985902,-0.81811714,0.43098736,0.38834682,-0.521788,-0.04562516,-0.79510754,-0.029057272,-0.06189454,0.27343848,0.11328895,-0.07059178,-0.027640764,-0.028317602,0.55942893,0.019881908,-0.031177778,0.15033999,0.5807911,-0.05696676,0.48754498,0.020345919,0.5919374,-0.35022208,-0.27034932,0.46065938,-0.39173585,0.08367144,0.031698152,0.1287324,0.30363178,-0.44280225,-0.94066966,-0.6853496,-0.2993785,1.0633646,-0.14643306,-0.3478923,0.24259405,-0.35823834,-0.13004483,0.010282384,0.4399947,0.035357706,-0.15026382,-0.8806847,0.10058071,-0.11423857,-0.07360129,-0.013190571,0.122769825,-0.23254591,0.73846996,-0.21047087,0.34056395,0.34251913,0.24864605,-0.05757366,-0.5568693,0.13490151,1.0150714,0.31480154,0.107924014,-0.2513894,-0.15905015,-0.3208281,-0.07309377,-0.0045375586,0.50085956,0.9286406,-0.0857354,0.07449481,0.3906927,0.030739052,0.057819378,-0.09518662,-0.536932,-0.27152735,-0.15208952,0.6272304,0.7582799,-0.3599399,0.4822094,-0.27075258,0.33416176,-0.1703277,-0.4967559,0.6743587,0.76315296,-0.27805585,-0.27326688,0.52967775,0.27682522,-0.5513007,0.5702163,-0.6090388,-0.33123386,0.42592993,-0.029092463,-0.4467614,0.17364772,-0.37335286,0.113068596,-1.1343311,0.4006581,-0.27444884,-0.33291104,-0.49632037,-0.23045512,-3.349815,0.32057962,-0.48977575,0.020680465,-0.29369366,-0.03214224,0.18798068,-0.52446634,-0.5166492,0.060426496,0.08259972,0.60627943,-0.0019184321,0.22096743,-0.19179052,-0.106140785,-0.32829028,-0.016548323,0.34486768,0.30977216,-0.04477602,-0.52533984,-0.007337948,-0.2660035,-0.44005165,0.20895083,-0.69137573,-0.6254644,-0.17602222,-0.56812626,-0.453843,0.7022629,-0.12018517,-0.052733652,-0.19754514,0.085725196,-0.06630463,0.56127906,0.013983178,-0.00669926,-0.024201171,-0.04139286,-0.018934738,-0.27688625,0.2890974,0.109054536,0.4156171,0.5585315,-0.12060104,0.34508833,0.73273695,0.7510788,0.13414793,0.8147239,0.526348,-0.048509363,0.43895632,-0.28509077,-0.27448854,-0.565396,-0.34593752,-0.0008872489,-0.48673046,-0.4475898,0.1605875,-0.41590834,-0.8649542,0.5746048,0.052362032,0.09547488,-0.0011463523,0.29377216,0.6486333,-0.082456045,0.015384648,0.014647541,-0.24081174,-0.55253595,-0.26596943,-0.76286274,-0.607517,0.13769862,1.1330692,-0.23252156,-0.03315097,-0.20681871,-0.10589786,-0.05629078,0.05583452,-0.057219096,0.18360089,0.47043553,-0.22938874,-0.5666882,0.36147353,-0.109890655,-0.29921043,-0.6560166,0.07605632,0.6959087,-0.8448416,0.5927278,0.25628364,0.1016675,0.10238459,-0.44516143,-0.071938604,-0.07053541,-0.20846625,0.5384961,0.18187632,-0.68548065,0.5575021,0.5784842,-0.18805647,-0.7757974,0.34536093,0.052801,-0.06023817,-0.03774259,0.31192583,0.07264931,0.0017555038,-0.11792168,0.12038253,-0.5793394,0.27073118,0.29819858,-0.13735496,0.5318641,-0.056926467,-0.31571776,-0.6936871,-0.09739974,-0.6685852,-0.19948034,0.19840255,0.03254175,0.15065698,0.0493747,0.13807242,0.3934364,-0.25993145,-0.028656261,0.07869927,-0.2598799,0.36986405,0.44203153,0.40852016,-0.49950662,0.5079211,0.114813454,-0.044834554,0.047690716,0.06835289,0.50530916,0.11727516,0.43726984,0.17306449,-0.10074709,0.26188505,0.9105829,-0.057937942,0.53163874,0.13397165,-0.24619694,0.26889133,0.12614565,0.110894434,-0.026159262,-0.48172256,0.008957374,0.04953738,0.18481493,0.4964128,0.15289809,0.35113162,-0.015017399,-0.27520078,-0.052794285,0.16484143,0.04179589,-1.4779187,0.35467437,0.14109588,0.7475351,0.32288456,-0.06398301,-0.031575195,0.5649534,-0.11534551,0.23173735,0.39583302,-0.2937729,-0.5746986,0.5963897,-0.5972912,0.43869412,-0.24510358,0.16632967,0.010623964,0.0374644,0.3867602,0.80259234,-0.11072319,-0.0028145392,-0.11369067,-0.3326398,0.22047745,-0.4514445,0.018145593,-0.49152353,-0.18849872,0.61133057,0.55026066,0.3070736,-0.1891649,-0.00446827,0.16466124,-0.09610653,0.13972296,-0.111629374,0.11324549,-0.04158203,-0.8082568,-0.37568125,0.60473543,0.20022544,0.23701732,-0.14974737,-0.15936747,0.36165798,-0.16516814,-0.09011082,-0.19917564,-0.6171734,-0.06839926,-0.36484486,-0.51114583,0.33092958,-0.014044237,0.26523983,0.31979865,0.044064768,-0.5840637,0.27373865,-0.14223453,0.7002626,-0.2510999,-0.2691686,-0.6158011,0.1576596,0.32316488,-0.39205724,-0.21265174,-0.30879444,0.023764484,-0.45665994,0.48269603,-0.046868358,-0.43881556,0.07662679,-0.17711164,-0.09794291,0.5952534,-0.3391884,-0.09408285,-0.08561024,-0.1719293,-0.26639375,-0.115010105,0.05595523,0.315924,0.25686178,-0.05332945,-0.066174015,-0.27987784,-0.099344686,0.580375,0.0936281,0.24509509,0.5340782,0.16626433,-0.56767565,-0.18361516,0.40963253,0.5813293,0.10588814,-0.30591506,-0.4535297,-0.2972992,-0.29517308,0.12904559,-0.17189646,0.30423912,0.14015375,-0.4126114,0.9451467,0.16491319,1.528936,0.21435098,-0.24743174,-0.019819466,0.40641928,0.10468447,0.005112308,-0.46086198,0.90905285,0.40274733,-0.2458127,-0.18287908,-0.6245627,-0.06347557,0.13991961,-0.25824684,-0.19234586,-0.13003808,-0.6558567,-0.32657653,0.30125004,0.28011405,0.2228303,-0.043428533,0.16977195,0.046033226,-0.06182216,0.38475215,-0.5683544,-0.20997098,0.18001667,0.2461054,-0.017213367,0.19495983,-0.4943091,0.44089845,-0.5072632,0.08827075,-0.1657103,0.23770276,-0.029887253,-0.27417392,0.31278354,-0.10246951,0.5594153,-0.26728705,-0.39027792,-0.2272015,0.5317591,0.23391443,0.1582461,0.76327044,-0.28226084,-0.103438534,0.22655442,0.7623436,1.3336688,-0.02353441,0.08453046,0.3845313,-0.19700813,-0.6873885,0.34377617,-0.32107118,0.21210091,-0.15156819,-0.23913367,-0.68476766,0.3950051,0.249047,-0.0016200702,0.15496652,-0.52716625,-0.41706187,0.25226775,-0.42629263,-0.15845607,-0.4169842,0.11572145,0.6304461,-0.2811957,-0.2096162,0.083842345,0.28317204,-0.054133423,-0.50211895,-0.16594864,-0.39851865,0.27456468,0.16570005,-0.2505087,0.1622308,0.113084316,-0.512803,0.18353319,0.29305613,-0.30743983,0.13271478,-0.06606481,-0.23987289,0.9164809,-0.038474116,0.29386955,-0.6250492,-0.39793062,-0.85572,-0.23907508,0.4964259,0.08628324,0.036531903,-0.62040406,-0.20340595,0.04022583,-0.17205901,0.022138739,-0.45441642,0.38798997,-0.014677079,0.4609417,-0.02379988,-0.78712183,0.017280681,0.1241933,-0.20484327,-0.6808331,0.54986674,-0.008210365,0.8296909,0.2093325,0.06927101,0.40228686,-0.48424643,-0.21644363,-0.27581698,-0.3451153,-0.70869076,-0.08003251,807 -291,0.5633462,-0.14589658,-0.42627433,-0.002549519,-0.26109558,0.12422337,-0.18385348,0.42414558,0.06277744,-0.3405882,0.024133377,-0.13242272,-0.11022984,0.4497238,-0.007756229,-0.36516127,-0.11832078,0.13431367,-0.62252253,0.62801385,-0.22320814,0.5527212,-0.09505429,0.10226734,0.21080977,0.3361672,0.18105647,0.0398662,0.08559671,0.025905354,-0.21910019,0.018095005,-0.53644025,0.13929802,-0.19654353,-0.3962593,0.057503182,-0.3725812,-0.3054624,-0.58428806,0.2619527,-0.7207353,0.44477373,-0.04024585,-0.3026179,0.331756,0.045047108,0.3672207,-0.15262525,-0.018303405,0.24972647,0.13143066,0.060798857,-0.16692732,-0.34203804,-0.44020087,-0.3602288,-0.045151073,-0.6317881,-0.30194187,-0.23419315,0.016647374,-0.21322824,0.037933238,-0.098661214,-0.010535425,-0.44612914,-0.01689121,0.19500382,-0.09665392,0.021884056,-0.53167146,0.054374825,-0.17113318,0.15379576,-0.15026417,-0.014238707,0.3700074,-2.4843215e-05,0.610766,-0.07446145,-0.14260782,-0.36940065,-0.00445415,0.027334848,0.58271354,-0.12274216,-0.23299383,-0.19954203,0.09243254,0.48139527,0.11490917,0.19405642,-0.33003613,-0.05613989,-0.20176245,-0.08143511,0.11416594,0.47559804,-0.36508274,-0.20586419,0.45210603,0.6726601,0.23741809,-0.0949132,0.12275803,-0.1333721,-0.13468044,-0.09925256,0.09458574,-0.035462856,0.36482114,0.14048983,0.112586364,0.46251628,-0.06502768,0.15682653,-0.24143444,-0.045238264,-0.03721235,-0.08777078,-0.15216285,0.21355715,-0.4463417,0.1161537,0.04165747,0.62777036,0.21483597,-0.6743536,0.4544352,-0.50235724,0.08512618,0.07430129,0.4822153,0.7088653,0.3166633,-0.015718961,0.7843859,-0.43787417,0.19336839,-0.29070634,-0.07042704,0.044260915,-0.063714266,-0.19208069,-0.55432665,0.21313591,0.011840105,-0.21497415,0.000500532,0.24628608,-0.5025499,-0.12207047,0.1434546,0.62230796,-0.3352539,0.08563873,0.60469204,0.9657204,0.85072136,0.009587924,0.9214344,0.42843023,-0.20731017,0.25325188,-0.38982236,-0.66597134,0.0713813,0.4811244,0.09510841,0.5349491,0.21014205,-0.035088904,0.10911956,-0.21372837,-0.037799757,-0.20243026,0.18219014,-0.11246114,-0.09442627,-0.41048807,-0.2856335,-0.012102409,-0.042514425,-0.15326966,0.26765868,-0.34404278,0.059417047,0.028325973,2.0978744,-0.15261811,0.058393158,0.22705463,0.4037688,0.264242,-0.26656076,-0.25804052,0.5009562,0.22960772,-0.09494962,-0.51979035,-0.056840427,-0.46850032,-0.5425117,-0.10228176,-0.22870809,0.034167346,0.08153725,-0.23031005,-0.027449878,0.004836319,-0.32710248,0.5757577,-2.5461571,-0.010459868,-0.250411,0.40208182,-0.46920258,-0.35037506,-0.13306051,-0.3719641,0.21881159,0.36684886,0.37584588,-0.38073736,0.13017918,0.26899526,-0.5119746,-0.05330508,-0.40158367,0.0468496,0.03895336,0.43750313,-0.18610492,-0.12586845,-0.025285117,0.3150816,0.3098463,0.073948935,0.013701713,0.46561924,0.37968695,0.20371994,0.37702954,-0.033946447,0.45286375,-0.34157932,-0.12537389,0.48062235,-0.15352558,0.41428968,0.11730103,0.16566296,0.24260214,-0.5371911,-0.7031719,-0.46084586,-0.27813417,1.2779251,-0.3423364,-0.5209143,0.23781976,-0.028955908,0.013596831,-0.109592184,0.2880534,0.007887337,-0.17118043,-0.6308596,0.13450594,-0.08923409,0.25203875,-0.019094871,0.07383514,-0.31386244,0.6002112,-0.18102942,0.4476324,0.22469288,0.2642895,0.13340588,-0.2753743,0.08102226,0.83438694,0.62385863,0.018978298,-0.13956009,-0.18533345,-0.30748716,-0.19962683,0.20896666,0.24778964,0.7769602,-0.10887918,0.06572777,0.15508555,0.10604184,0.009162426,-0.25976145,-0.1995891,-0.07600171,0.0040748836,0.39124793,0.27095285,-0.08876587,0.4011493,-0.06845948,0.14468066,-0.021493157,-0.46677113,0.20553504,0.80239564,-0.17736216,-0.116104,0.2831708,0.31866366,-0.23421909,0.4457621,-0.7372654,-0.17693287,0.5206473,-0.17590226,-0.3376102,0.29773048,-0.26547584,0.14436308,-0.7685871,0.15666695,-0.13218562,-0.30603415,-0.39955157,0.01299055,-2.3265254,0.23176734,-0.15120035,-0.24415062,0.061837126,-0.058069088,0.15777685,-0.60430527,-0.6005895,0.08061751,-0.05287246,0.48591107,-0.0023847828,0.12379262,-0.15702374,-0.42997634,-0.46295515,0.11910029,-0.08812305,0.45855123,-0.10854114,-0.42402825,-0.28590745,-0.14353116,-0.35884228,0.039202143,-0.5280311,-0.3226558,-0.36015052,-0.6115492,-0.001067102,0.35973808,-0.276804,0.04065285,-0.26824126,-0.17588392,-0.09502956,0.14665408,0.39015093,-0.02501487,0.19308288,-0.11293201,-0.1557478,-0.39712727,0.3056392,0.2624037,0.17243855,0.5384386,-0.2227319,0.10467092,0.4438153,0.57556236,-0.15589193,0.5789314,0.39773586,-0.20310688,0.4937563,-0.4001327,-0.07803763,-0.55677056,-0.36495504,-0.27993983,-0.34059513,-0.6154212,-0.23734947,-0.24918127,-0.81642026,0.36471558,-0.09728792,0.5221072,0.0023466826,0.21672662,0.48408064,-0.09040482,0.04376587,-0.14315987,-0.11128878,-0.35569322,-0.34669238,-0.5510166,-0.45770296,0.5465105,1.0023614,-0.30315405,-0.033519436,0.024616074,-0.11417176,0.13747658,-0.22962767,0.10117631,0.25858742,0.34189528,-0.028729033,-0.42698643,0.43080413,0.092419006,-0.18115555,-0.37791806,0.17924744,0.50391287,-0.55399865,0.19877638,-0.04421986,0.17582816,0.20181277,-0.5928562,0.019883724,0.15716317,-0.35416353,0.21440196,0.093701206,-0.66486585,0.31833714,0.32899973,-0.38786522,-0.71730983,0.337595,0.073222876,-0.18534455,-0.06684613,0.27786142,0.15831362,-0.0721424,-0.2951498,0.19977123,-0.48292738,0.24097236,0.42654052,-0.051840533,0.10091804,-0.22171383,-0.3909891,-0.6257366,0.31191313,-0.24576457,-0.33790687,0.27028608,0.06456994,-0.07872903,0.08035085,0.28085503,0.45101658,-0.42889813,0.06357897,0.0056440514,-0.07891973,0.564113,0.36149392,0.47693843,-0.34837008,0.4349887,-0.00582629,-0.1671162,-0.0029156366,-0.044010002,0.37872064,0.009300923,-0.08072063,0.12507953,-0.24228184,0.25456527,0.607921,0.14800873,0.16274653,-0.057977922,-0.38611406,0.23027177,0.18643743,0.013035988,-0.007958579,-0.44845423,0.19077483,0.22795588,0.20680887,0.45620158,0.2102453,0.35768726,-0.08542792,-0.14783145,0.14367437,0.0826562,-0.3478746,-0.81916314,0.06426132,-0.008910267,0.64165527,0.5773989,0.10366074,0.122049294,0.3088463,-0.2667418,0.06811237,0.2432685,-0.33791062,-0.55721766,0.37478644,-0.49812478,0.3827819,0.0051702023,0.021138089,0.28594476,0.23999147,0.46154097,0.7680584,-0.16878447,-0.035248462,-0.1303026,-0.1835605,-0.09560517,-0.19905433,0.10670516,-0.4651216,-0.4467777,0.5714181,0.21329184,0.3353902,-0.089464165,-0.045548096,-0.14283021,-0.27132574,0.3185377,-0.033439707,0.14311066,0.012153341,-0.47085768,-0.24237712,0.5324324,-0.06090192,-0.05277362,-0.10400133,-0.32448336,0.10885704,-0.041803457,0.1784033,0.11587652,-0.814804,0.12047363,-0.43824863,-0.07259158,0.15517794,0.13543472,0.30571386,0.1990164,-0.20028464,-0.32528448,0.45232913,0.12023911,0.85083324,-0.16515033,-0.24309541,-0.31509006,0.425731,0.22294578,-0.21144085,0.1860446,-0.08860292,0.007286574,-0.7748441,0.3607728,0.05190418,-0.22345492,0.2785966,-0.27357593,-0.016785054,0.50650644,-0.08378541,-0.11967273,-0.17760356,-0.07083536,-0.36409742,-0.4185905,-0.2651241,0.0005649368,0.106798925,-0.31554598,-0.015855122,0.045533966,0.14700799,0.39588374,0.16238832,0.2722542,0.27386725,-0.025191855,-0.6141999,0.11880736,0.22525415,0.22528572,0.09287388,0.21329024,-0.25709704,-0.34146404,-0.531113,0.0016071082,-0.36058474,0.27715254,0.21109296,-0.26728976,0.6967018,0.16810772,1.1861786,-0.082727164,-0.26008713,0.14878497,0.59172827,0.033860404,-0.19011976,-0.419504,0.9173077,0.74251187,0.2015556,-0.10501415,-0.13012038,-0.47469413,0.15833603,-0.34565124,-0.040295348,0.1533076,-0.52746207,-0.47335052,0.16808052,0.15106262,0.064759836,-0.092880204,-0.00833331,0.08284863,0.015842235,0.30418447,-0.33165583,-0.42185098,0.20001557,0.027801633,-0.03820645,0.14297956,-0.54685044,0.49194357,-0.71080005,0.11047885,-0.27966172,0.087064415,-0.0103368405,-0.23022029,0.061910346,0.14073977,0.39294577,-0.39198163,-0.48151478,-0.15570812,0.5614318,-0.067068815,0.29873726,0.50098723,-0.38770846,0.19281489,-0.108585685,0.37968063,0.88848555,-0.09513199,0.092485696,0.43325692,-0.33569416,-0.56923693,0.28318787,-0.116929606,0.27303445,-0.12299915,-0.16819222,-0.3734614,0.31910628,0.18841888,0.015502961,-0.045271013,-0.5601876,-0.17899421,0.22590624,-0.30800623,-0.1896254,-0.340176,0.124021605,0.8365309,-0.41788405,-0.5613615,0.29181793,0.1423967,-0.2298849,-0.7181727,-0.16052207,-0.11698761,0.27923992,0.16552702,-0.25407845,-0.096472934,0.22384262,-0.23860675,-0.11896665,0.12990186,-0.35805655,-0.094109535,-0.30200195,0.08081366,1.0025796,-0.103890814,-0.2536638,-0.5892376,-0.50322205,-0.84514034,-0.5550851,0.5107924,0.1874675,0.12755762,-0.48803368,0.110517025,-0.33361614,0.009396525,0.0047168075,-0.27369687,0.35364008,0.21134852,0.34742388,-0.33188882,-0.90055287,0.34375298,0.17966303,-0.11645247,-0.57107145,0.40908188,-0.037929248,0.75484157,0.13229598,-0.19879293,0.32624415,-0.6720568,0.108974196,-0.31141388,0.023859631,-0.5644963,0.11454337,813 -292,0.6182696,-0.3665927,-0.51652884,-0.122461036,-0.1968417,-0.05918902,-0.22244428,0.37156308,0.21103582,-0.26605386,-0.008100685,-0.13129126,0.12888947,0.26021755,0.014581194,-0.61311686,-0.1476811,0.076131634,-0.54655325,0.59912866,-0.4756178,0.2791456,0.009427372,0.32196656,0.1209741,0.3382235,0.1617026,-0.08899673,-0.21518707,0.058040045,0.017756168,0.36540464,-0.5921699,-0.06307198,-0.09008492,-0.15835658,0.008842823,-0.47018,-0.47749582,-0.6957385,0.30734158,-0.7917946,0.5220757,0.28753313,-0.3229145,0.34376106,-0.2931285,0.17405245,-0.48821336,0.056890227,0.18910465,0.1244346,0.05366284,-0.33812132,-0.24156179,-0.22297321,-0.5847846,0.08080121,-0.42983967,-0.14365965,-0.17522237,0.012637633,-0.39800444,-0.1475619,-0.19942841,0.42627466,-0.5569382,-0.059159823,0.22348258,-0.14683256,0.3103051,-0.4771045,-0.031230021,-0.20282075,0.10602673,-0.23003927,-0.31136042,0.3075562,0.2456693,0.5232769,-0.21657595,-0.24803765,-0.30686906,0.06928657,0.20882161,0.47808117,-0.21859162,-0.5539045,-0.090090655,-0.026399272,0.064666845,0.14125602,0.057846826,-0.35953322,-0.12681843,0.13858633,-0.10970118,0.3070853,0.6095656,-0.24031995,-0.31563875,0.2558712,0.5024452,0.27962843,0.014544756,-0.08178024,-0.05236369,-0.5961821,-0.2323697,0.22557351,-0.20774092,0.4917132,-0.10534296,0.12763582,0.7093615,-0.23526964,0.06489478,0.0012088879,0.014082662,0.050885815,-0.19111177,-0.28107184,0.28035346,-0.3920329,0.1880512,-0.17302874,0.6218299,0.33401114,-0.7417675,0.5032749,-0.5004713,0.24292201,-0.18005046,0.6497783,0.77163047,0.29393518,0.31554076,0.63978976,-0.4997632,0.1733015,0.022000305,-0.5088385,0.31078023,-0.25371745,0.0035447676,-0.47985357,-0.018277781,-0.035219207,-0.43570465,0.07531762,0.4234374,-0.6204662,-0.04388747,-0.022957655,0.6782123,-0.2901841,0.07487547,0.5142761,0.8151281,0.8684773,0.048260197,1.2836492,0.47880584,-0.30855605,0.4001103,-0.41340664,-0.88800937,0.27066162,0.46217102,-0.19540414,0.44262382,0.032653376,-0.06414137,0.2914743,-0.2598919,0.042997725,-0.25790885,0.19830507,-0.081645645,-0.17704153,-0.52942914,-0.29427752,-0.22580265,0.13248098,-0.10717068,0.3707808,-0.270639,0.24080355,-0.042068187,1.9142456,-0.069246165,0.07163542,0.02396973,0.45292738,0.37239596,-0.1919884,-0.117595576,0.47786775,0.41015306,0.20622028,-0.6096684,0.18385741,-0.25218225,-0.3738808,-0.1446375,-0.40647727,0.22923613,-0.009966125,-0.52624995,-0.019178264,0.09515169,-0.188663,0.40277413,-2.5630667,-0.1681255,-0.008055154,0.37531292,-0.34592864,-0.33905286,-0.20656642,-0.41047776,0.19987266,0.33147162,0.62857014,-0.8096808,0.1565989,0.31122848,-0.6172663,-0.005484295,-0.58889735,-0.21082617,-0.021908836,0.356624,0.037425954,-0.06826664,0.09003866,0.1173432,0.43104953,-0.038081456,-0.019634854,0.17890781,0.515123,-0.023703353,0.3764456,-0.023118136,0.4036557,-0.23936857,-0.25054818,0.4775371,-0.10629713,0.35029012,-0.044386968,0.08078587,0.35589775,-0.4660935,-1.0291765,-0.5511385,-0.31726977,1.0815136,-0.33543694,-0.4278583,0.2949094,-0.23235713,-0.24744138,-0.068827,0.40692914,-0.05845158,-0.04002923,-0.8680824,0.11977695,-0.09196858,0.24093764,0.13121195,0.07630251,-0.26913851,0.6599743,0.09815747,0.27516013,0.32049987,0.19400167,-0.020090075,-0.49380207,0.09890898,0.9379556,0.34415987,0.14463827,-0.23821948,-0.3434759,-0.14325117,-0.011860083,0.09924831,0.27567044,0.7566321,-0.11354802,0.17900614,0.3301591,-0.023107609,0.025224857,-0.18900448,-0.27773055,-0.022249846,0.12771796,0.60029995,0.7498853,-0.42353833,0.34378645,-0.025909903,0.18615426,0.06598408,-0.6239764,0.59235096,1.1139375,-0.06647535,-0.13071783,0.5256255,0.39200392,-0.55904084,0.50973254,-0.6993692,-0.20575878,0.45727602,-0.18477379,-0.33922353,0.37428632,-0.3397182,0.16571735,-0.84252363,0.47016934,-0.09734807,-0.0436098,-0.49342746,-0.08470132,-3.415916,0.18169333,-0.2605622,-0.11814178,0.030699369,-0.062164124,0.16846469,-0.66249686,-0.4762154,0.13459225,0.04004591,0.5926038,-0.12821661,0.060666375,-0.29999223,-0.2682761,-0.2484712,0.11113735,0.22544739,0.37458244,-0.081565164,-0.493552,-0.17984551,-0.17194717,-0.38194147,0.11282509,-0.5662706,-0.6116743,-0.25967824,-0.62613136,-0.10075163,0.64522016,0.00084811647,-0.0032565554,-0.082778245,0.012421368,-0.10417046,0.33878803,0.21432044,0.25863475,-0.006662623,0.029161096,-0.06835617,-0.30693686,0.16989683,0.106365606,0.21768065,0.3775341,-0.13249251,0.19113204,0.61880416,0.6994196,-0.25922528,0.6559574,0.617427,-0.17879295,0.31052732,-0.2568084,-0.23136066,-0.58570164,-0.49974886,-0.17642848,-0.45045456,-0.48058337,-0.0565533,-0.29665676,-0.7530136,0.5901673,-0.22086261,0.22975138,0.01726391,0.26093674,0.5534846,-0.17674188,-0.07267884,-0.12425916,-0.198136,-0.6342143,-0.18087047,-0.60405296,-0.4552925,0.3825489,0.9237559,-0.22277316,-0.08097113,-0.0020157655,-0.15432048,0.0006338179,-0.021271592,-0.010315853,0.25696197,0.35869077,0.08361296,-0.57957613,0.5275472,0.12704082,-0.28664225,-0.50093645,0.16932504,0.6559494,-0.6647561,0.6013275,0.18978061,0.0787981,0.06487443,-0.5972594,-0.3544525,0.23486169,-0.10740692,0.50117546,0.15701011,-0.6698214,0.37787607,0.42505318,-0.43589827,-0.58567977,0.5144814,0.028261418,-0.31362945,-0.10850315,0.28948396,-0.13370527,0.031789258,-0.27383602,0.37118015,-0.47972453,0.2257993,0.36893782,-0.1309989,0.27410474,-0.084037654,-0.085841425,-0.7401562,0.19939607,-0.44083515,-0.2999762,0.39122242,-0.007866998,0.11918186,-0.036659077,0.24233504,0.4643866,-0.37070057,0.041438125,0.050919738,-0.22572449,0.45973963,0.44820926,0.4630464,-0.49920267,0.5423051,0.07846675,-0.14025046,0.05947881,0.054161116,0.46267796,0.062475268,0.20886709,0.03252902,-0.123907246,0.23420592,0.7642067,0.13550569,0.45669946,0.11221372,-0.07115548,0.23506108,0.14582524,0.07937594,0.029821761,-0.33326846,0.10915132,0.12678514,0.16174024,0.48723957,0.12116725,0.15849158,-0.24237403,-0.2632467,0.09741091,0.35917372,0.26720414,-1.023034,0.26076782,0.16651265,0.55344826,0.4930377,0.00802224,-0.06698311,0.57050824,-0.20458624,0.058306124,0.31456107,-0.13605182,-0.7257395,0.48859727,-0.56945217,0.48844716,0.06123861,0.08374748,0.026962487,-0.11356958,0.403273,0.6540291,-0.18538637,0.015770188,-0.111828126,-0.25351763,0.12066535,-0.4116515,0.02213616,-0.5146402,-0.37671185,0.691156,0.43709114,0.23290281,-0.11653732,-0.012667591,0.09426191,-0.15835194,0.29184347,0.015825959,0.1581573,0.09914656,-0.6691311,-0.18867974,0.54736865,0.010459972,0.051396217,-0.17523116,-0.04731573,0.29827785,-0.21262655,-0.15767299,-0.093034856,-0.7106663,-0.034386445,-0.5248817,-0.35945946,0.47137263,0.02902795,0.29579732,0.14847764,0.059707996,-0.5150827,0.49176985,0.13167778,1.0325434,-0.071298085,-0.25150073,-0.47680053,0.37401864,0.2799569,-0.19896123,-0.04691654,-0.26166168,0.0022196213,-0.62687385,0.4903005,0.003820457,-0.41935265,-0.1339107,-0.15203695,0.035507433,0.5654054,-0.2150634,-0.40788022,-0.34289277,-0.22522335,-0.32941258,-0.2713588,-0.07483921,0.25464326,0.35528252,-0.09213281,-0.17819983,0.018644663,-0.024942096,0.5977033,0.064962685,0.29356816,0.34020513,0.19225238,-0.2988421,-0.07578136,0.3345712,0.4454418,0.059461955,-0.08224867,-0.37149525,-0.3783578,-0.5129729,-0.04309629,-0.18706419,0.36381283,0.113992974,-0.2314787,0.74084765,0.020748658,1.2127961,-0.03977151,-0.21657285,0.16123687,0.48629662,0.041149992,-0.13801403,-0.34709856,0.94745576,0.5987722,0.00036536256,-0.25569797,-0.42450187,-0.26896307,-0.028745301,-0.30275142,0.024334261,0.043458503,-0.65193754,-0.18356775,0.18779056,0.3130926,0.21570404,-0.17836304,0.16909479,0.09355699,0.10356105,0.15776096,-0.42830753,-0.24341209,0.31552032,0.11227616,-0.024501598,0.14256404,-0.42620012,0.39591077,-0.3426574,0.12478412,-0.29401895,0.2289883,-0.0930581,-0.41789868,0.18415497,-0.002651294,0.3925687,-0.491211,-0.30497476,-0.29601175,0.6005169,0.14551128,0.11552981,0.59788346,-0.32055697,0.26242492,0.08906155,0.4737247,0.98941207,-0.25414377,-0.005699766,0.38250732,-0.2672804,-0.78358275,0.31827253,-0.27799985,0.2855608,-0.23255688,-0.24873313,-0.6807691,0.1387324,0.07344159,-0.04198079,-0.10115154,-0.5761784,-0.2811404,0.20798859,-0.28566828,-0.1840816,-0.4258831,0.15346092,0.7229857,-0.30706918,-0.37235624,0.25991732,0.030915074,-0.26889107,-0.30795446,-0.11872114,-0.3362252,0.16000834,0.13624318,-0.35589445,0.068924576,0.20625658,-0.37583452,0.16535456,0.23487465,-0.3953179,0.11481981,-0.25400674,-0.061337344,1.1792663,-0.21808335,0.09321249,-0.5572049,-0.508693,-0.97105974,-0.3564073,0.707063,0.010192194,0.14251073,-0.74138725,0.10491263,0.0024689515,0.07496799,-0.18635021,-0.40799478,0.37057683,-0.011377936,0.27797276,-0.21931177,-0.71197295,0.14052992,0.20573893,-0.17647181,-0.64511275,0.5342875,-0.055129852,0.8281072,0.07481011,0.18725796,0.39446747,-0.5398314,-0.23782967,-0.3078615,-0.24135186,-0.6832775,0.048120696,815 -293,0.49729776,-0.062331736,-0.4469263,-0.049727537,-0.15550034,0.13513874,4.7616162e-05,0.30432948,0.23390989,-0.2458979,0.023195982,-0.28873578,0.093032375,0.33851725,-0.02907511,-0.3702184,0.14633733,0.07356426,-0.37060174,0.40365437,-0.5015128,0.39816162,-0.05378359,0.3662895,0.1355889,0.40390143,0.08635921,-0.14783755,-0.17023437,-0.22604637,-0.009514181,0.26079348,-0.2818209,0.12009207,-0.025793497,-0.24043995,0.226021,-0.27526054,-0.56456274,-0.6812651,0.20406437,-0.5384537,0.38604227,0.0780144,-0.29472393,0.07089089,0.11043025,0.34305993,-0.1902873,0.062396713,0.0908053,-0.08911111,0.10143582,-0.15049793,-0.19432598,-0.3496347,-0.5102071,-0.025025487,-0.4970205,-0.2820196,-0.29943708,0.13048722,-0.39728543,0.0211977,-0.1858356,0.30499604,-0.35137045,-0.0125659825,0.25546625,-0.32416984,0.3772462,-0.52123386,-0.36892018,-0.09203253,0.1245981,0.008137858,-0.15193571,0.30817503,0.342236,0.52489257,-0.079365715,-0.116662286,-0.40740266,-0.20650199,0.12173423,0.57165617,-0.19950962,-0.36284527,-0.08647739,-0.013906781,0.07503237,0.26782566,0.18308207,-0.15587501,-0.17433244,0.18013713,-0.35248998,0.3539659,0.4480158,-0.4314069,-0.2573753,0.25208434,0.5169552,0.17676727,-0.20020714,0.009518128,0.044064537,-0.42684162,-0.15860456,-0.020605547,-0.24798152,0.5254497,-0.022159314,0.3358293,0.642963,-0.3331198,-0.012120629,0.079626,7.4676675e-05,-0.0996735,-0.21162967,-0.055378743,0.022711,-0.47256836,0.1248851,-0.12538394,0.82816195,0.21396147,-0.49943054,0.40488073,-0.51682794,0.18462859,-0.09251823,0.6202043,0.52337635,0.20249541,0.4043141,0.7295098,-0.4605245,0.1464243,-0.10416565,-0.34572715,0.1435948,-0.18076818,0.030126158,-0.49077258,-0.13127501,0.16732751,-0.22527952,0.07729368,0.49917832,-0.58402723,0.0045604506,0.1535764,1.0197202,-0.25161952,-0.14842337,0.46093458,1.0843273,1.099361,-0.048695423,0.9174406,0.06997242,-0.2970667,0.06262656,-0.49883613,-0.47399327,0.26623642,0.3008302,-0.097047284,0.13086724,0.097563885,-0.12311847,0.30000076,-0.32072958,0.17758808,0.0013180136,0.4135022,0.14976718,-0.15227264,-0.35380515,-0.4073508,-0.14951095,-0.13357286,-0.07272052,0.24396664,-0.15765099,0.36870047,0.040690962,1.8699199,-0.0041229087,0.1618298,0.041449606,0.62958986,0.1231307,-0.079716764,-0.02324481,0.3030413,0.15291835,0.12992916,-0.5124975,0.12064644,-0.3396428,-0.45809796,-0.03889582,-0.30774593,0.035721183,-0.012601606,-0.2797998,-0.10335231,-0.13972153,-0.2682687,0.54926705,-2.9100504,-0.23081066,-0.0047534425,0.30590108,-0.31031978,-0.2681603,0.13648054,-0.5304814,0.28295767,0.33065018,0.4325376,-0.7674768,0.20945159,0.37581095,-0.40489545,-0.12561359,-0.5572347,-0.1058543,-0.01965017,0.281184,0.06460729,-0.077340394,-0.20584883,0.21281004,0.362683,-0.05400416,0.13590318,0.17042981,0.19862337,-0.041568454,0.61733216,0.13791241,0.38990483,-0.087654024,-0.17206019,0.37565988,-0.36915323,0.31197658,-0.09726106,0.07084966,0.32949066,-0.29363874,-0.7618713,-0.4760231,-0.22111975,1.0833782,-0.11424669,-0.45986685,0.37452558,-0.31388837,-0.23359604,-0.27768025,0.23272099,-0.06092314,-0.15390567,-0.703885,0.099617146,-0.21011998,0.11226021,-0.0023190817,-0.038101386,-0.25517792,0.50524825,-0.027526425,0.34714633,0.3345261,0.074533686,-0.16282399,-0.39076793,-0.072785005,0.93832153,0.36623535,0.062854014,-0.24168499,-0.1917849,-0.38175946,-0.119640574,0.16747037,0.31787452,0.884608,-0.105508804,0.08112347,0.31524482,-0.15108132,-0.048987497,-0.1632947,-0.3503744,0.055264726,-0.09683546,0.5829834,0.70520395,-0.17290716,0.52972776,0.063427955,0.27335045,-0.123424836,-0.5070113,0.4043066,0.7504462,-0.19998884,-0.15490489,0.4951648,0.305306,-0.29684785,0.40838468,-0.58930016,-0.26869395,0.64887446,-0.1581394,-0.36168307,0.19502865,-0.3468598,0.122080974,-0.8964247,0.2952771,-0.30644342,-0.37439504,-0.38044664,-0.15084396,-3.4585688,0.17809342,-0.2725296,-0.10315571,0.09628783,0.086485155,0.030459361,-0.6145376,-0.5597276,-0.0016762415,0.122608736,0.585884,-0.09842127,-0.03385737,-0.21142456,-0.39753762,-0.4353104,0.062119085,0.07237347,0.32804123,-0.066859536,-0.5839053,0.11745637,-0.2248083,-0.38111588,0.16917218,-0.42111814,-0.65168345,-0.23039979,-0.53831744,-0.55114645,0.6866493,0.02353251,0.0050646705,-0.23239109,0.032114454,-0.0051734843,0.24519138,0.35945338,-0.02808094,0.027601827,-0.07630305,0.0046156724,-0.2971279,0.1872992,0.10305121,0.41662022,0.48794279,0.049383536,0.110964365,0.55850166,0.5093715,-0.077572875,0.6505984,0.36161533,-0.21556942,0.24037817,-0.3118461,-0.21208654,-0.45476887,-0.4027458,0.15119581,-0.38484204,-0.5945447,-0.1834475,-0.33819208,-0.5407461,0.49144372,-0.1010485,0.22106323,-0.10171754,0.22891913,0.53355545,-0.1986243,-0.05755852,0.044373773,-0.12588924,-0.6000528,-0.29739565,-0.73382354,-0.44006878,0.38563955,0.95519274,-0.32896167,-0.029727273,0.09918716,-0.2332082,-0.096319236,0.12641697,0.10080168,0.1785031,0.42597437,-0.2089426,-0.6274002,0.3724791,-0.027321182,-0.0027121543,-0.5101422,0.16068362,0.6742347,-0.6636091,0.43813002,0.28320202,0.15984255,0.004028956,-0.5200781,-0.1332062,0.01539061,-0.24562794,0.2919757,0.056037184,-0.7200176,0.37523678,0.39589152,-0.29944047,-0.5432897,0.40036935,-0.09992402,-0.37081638,-0.103713766,0.33039078,0.19205222,0.039633904,-0.18016784,0.30408484,-0.6510794,0.22465783,0.36460575,-0.18293849,0.41151252,-0.16275209,-0.37798885,-0.7158646,0.11138416,-0.36124462,-0.3524621,0.18777452,0.18908615,-0.015401987,0.30140597,0.23404527,0.43003848,-0.2660973,0.027460726,0.035881504,-0.17710678,0.47314498,0.41423938,0.58547425,-0.41452187,0.5315801,0.01274844,-0.055970266,-0.13286464,-0.14033763,0.3809285,0.1636377,0.3148695,0.07940651,-0.3055082,0.3561456,0.8262055,0.11962257,0.33786294,-0.039868046,-0.09436902,0.18341926,0.0654247,0.03389454,0.09435343,-0.47365287,0.0009849886,-0.20496769,0.15391892,0.44624147,0.24757512,0.32974762,-0.023371927,-0.37427363,0.06492296,0.18830647,-0.2007095,-1.1155579,0.36360824,0.30249366,0.72390664,0.521015,0.09060478,-0.012019594,0.6117371,-0.27117833,0.0576276,0.3284856,-0.0062872567,-0.51303273,0.51780045,-0.7802691,0.6263257,-0.0051573594,0.030147342,-0.012876483,-0.17334563,0.44119796,0.87926847,-0.19578454,-0.12247222,0.023540573,-0.2702134,0.17693993,-0.36857447,0.009312018,-0.7820812,-0.35121137,0.5628423,0.43114832,0.27596018,-0.060471795,0.0047979974,0.051504184,-0.08997461,0.377934,-0.15135124,0.19335519,-0.1136542,-0.5891765,-0.23111755,0.46918467,0.021678584,0.09158481,0.005411709,-0.013004073,0.18359923,-0.15073833,0.082308546,-0.078213215,-0.46353644,0.045781307,-0.27126318,-0.31698084,0.4935597,-0.17022231,0.43121225,0.082586095,0.11252297,-0.19856735,0.42859346,0.098715656,0.58125657,-0.18827966,-0.18383828,-0.37703022,0.121020995,0.107334964,-0.15030135,-0.024156412,-0.08353995,-0.029348552,-0.53535527,0.6080047,-0.05913277,-0.18525237,-0.12521711,-0.31660333,-0.053895872,0.5329851,-0.12607735,-0.16276747,-0.23877287,-0.19127195,-0.2553035,0.0020876725,0.06912535,0.21285707,0.219039,-0.19916703,-0.07596661,-0.15217583,0.06477603,0.29518536,-0.09303102,0.1430301,0.3450404,0.023043258,-0.41629794,-0.18706504,0.023334129,0.37663373,0.054323316,0.031712424,-0.24548699,-0.47824746,-0.3750765,0.096485026,-0.20167086,0.41503504,0.10306986,-0.29105744,0.86830485,-0.006879298,1.2909596,0.06392775,-0.20575319,0.005447905,0.5988424,-0.065675825,0.05349519,-0.33150303,0.9551467,0.46229443,-0.22276191,-0.30790278,-0.28901175,-0.037972696,0.21760647,-0.19842958,-0.16702004,-0.014060676,-0.5738575,-0.25248167,0.30095768,0.3212854,0.27039638,-0.102362,0.036739636,0.26927528,0.14231864,0.4549978,-0.34917042,-0.39334965,0.27415878,0.25939935,0.050541975,0.19987275,-0.3736257,0.46163628,-0.53454876,0.18371709,-0.12867583,0.1284315,-0.11804444,-0.4013939,0.33701533,0.13350746,0.3406102,-0.26949614,-0.3603519,-0.254846,0.31963402,0.15865047,0.106979094,0.65057105,-0.23468596,-0.16011709,0.048282783,0.41235542,1.2456328,-0.17743969,-0.22116588,0.4326846,-0.26805693,-0.6976601,0.32499427,-0.31062278,0.045438394,-0.041849803,-0.28078476,-0.6157093,0.25815803,0.16545795,-0.11533426,0.100778796,-0.4727933,-0.15889594,0.09921374,-0.51681733,-0.21801755,-0.39300343,0.15357941,0.6524267,-0.2881561,-0.2288557,0.109932944,0.40489468,-0.37118423,-0.5013113,0.018024525,-0.21917433,0.3891234,0.019578703,-0.34066904,-0.03799689,0.1376839,-0.39738396,0.09636998,0.24561928,-0.40420622,0.17651701,-0.3771162,-0.13904543,0.7992793,-0.22667487,0.18950026,-0.40073395,-0.31658688,-0.6797436,-0.23482749,0.5457746,-0.085012645,-0.16499586,-0.42327386,-0.10046838,-0.005862373,-0.13260579,-0.09712776,-0.3667898,0.45524564,0.058709975,0.20587845,-0.073121436,-0.6189887,0.09134217,0.097942576,-0.032804377,-0.60098916,0.5773645,-0.2587648,0.67031723,0.19931473,-0.045019668,0.4189574,-0.3899818,0.17602184,-0.18763585,-0.2797573,-0.6572166,-0.067034416,820 -294,0.54643697,-0.12385285,-0.35530657,-0.1288866,-0.33544445,0.017316934,-0.13600722,0.4826475,0.26161188,-0.43300685,-0.23066317,-0.15849946,0.11002822,0.22149642,-0.18623258,-0.6901322,0.0063298387,0.25784424,-0.44898424,0.5388582,-0.4575489,0.38014907,0.04147782,0.4634411,0.26013845,0.133245,0.107679494,-0.15684667,-0.21645807,-0.3010183,-0.18693513,0.18832289,-0.5833115,-0.008415767,-0.24287233,-0.45570797,0.087360695,-0.37777594,-0.30696473,-0.88660836,0.314464,-0.81589997,0.4742804,0.014894839,-0.39247978,0.43708408,0.1503858,0.27252212,-0.16787641,-0.01666095,0.19438605,-0.29655233,-0.04582261,-0.1662618,-0.18344478,-0.32390505,-0.7453708,-0.05278258,-0.40323392,-0.14416462,-0.33649793,0.19395377,-0.35873756,0.040475406,0.036684927,0.43558976,-0.5192747,0.04385972,0.0838625,-0.056044366,0.4074292,-0.5326877,-0.23536743,-0.15095685,0.1332442,-0.22754717,-0.14354388,0.35263225,0.22119817,0.50261146,0.014685563,-0.17764759,-0.33998218,-0.06175112,0.028248783,0.47660726,-0.14316492,-0.36507553,-0.083679065,-0.26422456,0.22830983,0.27295342,0.14658332,-0.07045869,-0.14182884,0.08726244,-0.28909627,0.3227767,0.4219314,-0.32835135,-0.22772694,0.20609638,0.45293438,0.18082447,-0.17840746,0.007856132,-0.02342559,-0.41538367,-0.14892946,0.13554935,-0.41494668,0.61356264,-0.1742613,0.16811222,0.75254875,-0.2635943,0.06295149,-0.0068427236,0.2362354,-0.0824398,-0.18725412,-0.47588545,0.38042703,-0.6015923,0.2345448,-0.37689173,0.81216615,0.1299464,-0.5323142,0.27983126,-0.5749552,0.101952426,-0.06390608,0.6242888,0.6569721,0.44474158,0.6059986,0.5647041,-0.42343494,0.05765708,0.04888134,-0.25115603,0.06900694,-0.2595201,0.015646007,-0.4128546,-0.029373277,-0.0035128572,-0.12647733,0.13356143,0.49227557,-0.43582186,0.0009606083,0.17871422,0.83791643,-0.33694986,-0.029331561,0.74071467,1.0756986,1.2317961,0.0530216,1.0502932,0.3685158,-0.34654742,0.09789798,-0.1546064,-0.73689336,0.26138178,0.41465905,-0.17754309,0.28719658,0.1126026,-0.01762367,0.3467135,-0.54559124,-0.040252965,-0.091672756,0.19766179,0.034374185,-0.008478564,-0.4621622,-0.4051153,-0.08567135,0.06773742,0.02645183,0.4138902,-0.26522636,0.3998991,0.11394746,1.3880925,0.049002655,-0.05425523,0.11063144,0.5360288,0.1099926,-0.04760021,-0.08213285,0.30042705,0.2889106,0.13059977,-0.61287653,0.0563726,-0.2304153,-0.5215404,-0.15194324,-0.2780417,0.014156242,-0.018743277,-0.44964248,-0.20987205,-0.21583463,-0.24208142,0.29902261,-2.330948,-0.13704364,-0.014176186,0.29469487,-0.051597398,-0.3545804,-0.061174892,-0.6412676,0.45193297,0.3257754,0.41893488,-0.72718126,0.3297796,0.57015765,-0.4576546,-0.033894274,-0.71085995,-0.36991304,-0.08601999,0.23401734,0.01979233,0.0059294244,0.02188657,0.20586398,0.6024098,-0.03814483,0.20763893,0.2792811,0.38851917,-0.06596211,0.5012694,0.12442468,0.37219065,-0.083883986,-0.17733,0.3512908,-0.4351811,0.09632499,-0.07473009,0.08309816,0.5917647,-0.4003237,-0.9147071,-0.69132143,-0.2667497,1.1689402,-0.19969171,-0.4349531,0.30474675,-0.13049427,-0.17285083,-0.10162761,0.4941934,-0.2074772,-0.16749707,-0.76571107,0.08689152,-0.1427281,0.23980048,0.099418335,0.15492493,-0.31689772,0.71631265,-0.12615922,0.38659295,0.2166024,0.13966218,-0.27491787,-0.4630446,0.053604856,0.9059971,0.47320068,0.2121062,-0.41156763,-0.23590912,-0.34396917,-0.13270006,-0.030558832,0.37638855,0.82949865,-0.19245963,0.3109695,0.18571226,-0.0759399,0.0056619355,-0.27897456,-0.3399913,0.003373448,-0.00973327,0.45865005,0.6446257,-0.23929809,0.34985772,-0.07313039,0.35608444,-0.17855237,-0.45436636,0.5050513,0.9985936,-0.105777994,-0.14401963,0.71995354,0.55059236,-0.30510318,0.57466125,-0.71813774,-0.3897936,0.5216614,-0.21642421,-0.4066822,0.22046648,-0.39321646,0.19515231,-0.8054721,0.3088293,-0.30998728,-0.37712204,-0.5955666,-0.121357664,-2.921958,0.20756988,-0.2810849,-0.24440406,-0.18490794,-0.12712494,0.26835242,-0.57458556,-0.62845296,0.087089226,0.19590665,0.75035733,-0.019060267,0.055623434,-0.19284262,-0.4349359,-0.4131469,0.08460066,0.10934689,0.37655538,0.018247226,-0.50743204,0.040399607,-0.10405459,-0.5398143,-0.08249357,-0.5358026,-0.5531975,-0.14982322,-0.503138,-0.47489765,0.64518505,-0.23744322,0.18218456,-0.23088929,-0.19859606,-0.09827092,0.39578125,0.26849362,0.118635535,-0.17072107,0.050194826,0.08271285,-0.26263452,0.30224195,0.06696304,0.057862453,0.3567873,-0.09784564,0.13985313,0.42755535,0.64540505,-0.08029253,0.99675196,0.4279529,-0.07849083,0.37450036,-0.3039023,-0.3155471,-0.728469,-0.33375546,-0.12896572,-0.38479128,-0.31561956,-0.059614666,-0.4470759,-0.8817463,0.5686668,-0.10122129,0.2630104,0.005112167,0.24419406,0.40220705,-0.13014063,-0.14225462,-0.017154884,-0.109467775,-0.4796997,-0.19555204,-0.9120692,-0.46990332,0.10513899,0.912417,-0.1934479,-0.057614293,0.14168148,-0.1434391,0.0503698,0.18508309,-0.026108623,0.045324184,0.6233948,-0.04340531,-0.75642926,0.54691035,0.0959654,-0.1970082,-0.61916465,0.12954491,0.5569342,-0.8080969,0.52447164,0.45320836,0.033417635,0.006611681,-0.50581974,-0.19449173,-0.19069567,-0.23357563,0.41706246,0.23525228,-0.78645504,0.4140212,0.32099465,-0.2628539,-0.69479805,0.47283044,-0.032532953,-0.48419222,0.03503012,0.4017849,0.06105341,0.13560778,-0.16967468,0.21158499,-0.5649877,0.2716575,0.36469883,-0.10974614,0.27996936,-0.1172711,-0.07700697,-0.91420335,0.11978502,-0.4512511,-0.33439973,0.030416556,0.05525303,-0.06652919,0.44378337,0.21462873,0.42378566,-0.18286228,0.027394557,-0.15836348,-0.27208838,0.3302479,0.49469158,0.50597537,-0.2968167,0.7034286,0.04443674,-0.2965848,-0.23048131,0.015364041,0.47590813,0.033136822,0.44334075,0.094507985,-0.38210008,0.26787055,0.6428425,0.27168044,0.56438583,0.03486294,-0.052402664,0.31765303,0.18691197,0.25309426,-0.021681882,-0.4041581,0.07265676,-0.28173837,-0.00082768203,0.67209816,0.07096968,0.3327482,-0.099895,-0.1784837,0.06337019,0.106242865,-0.18175848,-1.3369062,0.25689137,0.191768,0.8470448,0.6484141,-0.036681794,0.053013172,0.6046168,-0.394496,0.00516787,0.3595732,0.13448158,-0.5036003,0.7141711,-0.7263513,0.3766915,-0.19825855,-0.029439835,-0.022877185,-0.09859301,0.4694551,0.81857,-0.15338324,-0.09558703,-0.021651864,-0.38423213,0.28445432,-0.4570244,0.032742493,-0.5592807,-0.21191566,0.71835047,0.46098194,0.27577457,-0.25142318,0.1258704,0.017538596,-0.19716834,0.2515882,0.079067275,0.08421299,-0.071054235,-0.5377699,-0.21989599,0.6280154,-0.18762307,0.105168454,0.0053507825,-0.17723867,0.11781541,-0.073994994,-0.060678102,0.019995935,-0.77913207,-0.16698869,-0.33279338,-0.31950104,0.56305146,-0.0027269283,0.2608537,0.26328692,0.087887056,-0.41040233,0.21122466,0.38604638,0.45317274,0.0499161,-0.15433301,-0.26145503,0.26930633,0.20842189,-0.1619168,-0.10331441,-0.089526795,-0.0049479483,-0.43913758,0.48498344,-0.14411242,-0.1352727,0.02329553,-0.18973422,0.013031805,0.521592,-0.18450099,-0.13225554,-0.14324659,-0.13971648,-0.18614931,-0.16610645,-0.14506121,0.20440865,0.052441232,-0.15596841,-0.14247985,-0.033063583,-0.07970905,0.4484616,-0.11925158,0.34367856,0.4292352,-0.07914814,-0.4423764,-0.12927128,0.083912134,0.51196784,-0.090727255,-0.108296596,-0.33147132,-0.5004543,-0.29468247,0.2619986,-0.20017196,0.35959095,0.07721696,-0.26227537,0.9623578,0.068032645,0.9587101,0.022869598,-0.44419545,0.12695572,0.5087237,-0.18515907,-0.031664014,-0.357099,0.96079624,0.35975924,-0.23448196,-0.17191921,-0.32917148,0.043494917,0.26517177,-0.1446279,-0.23084001,-0.043659315,-0.6831817,-0.30481973,0.25922173,0.3300148,0.047806263,-0.0958859,0.10638562,0.28266746,0.15925832,0.4426533,-0.5434632,-0.12134402,0.38372105,0.15114494,0.06904211,0.26116008,-0.30779496,0.40851307,-0.43131134,0.012225393,-0.31654125,0.12627035,-0.2479151,-0.45579034,0.30268288,0.27058172,0.33101243,-0.30160853,-0.39284325,-0.29818347,0.3906848,-0.0007582823,0.1542124,0.49851927,-0.3409072,0.12238469,0.006254093,0.484574,1.196656,-0.18469034,0.0014105876,0.3138142,-0.52092725,-0.6177797,0.42843083,-0.27936834,-0.023260422,0.044930812,-0.24967271,-0.67126286,0.14646748,0.17532654,-0.023639647,0.25600353,-0.47601998,-0.2446659,0.3335368,-0.33775792,-0.27532005,-0.23796898,0.16363375,0.54361904,-0.3308564,-0.23332097,0.05382123,0.20354429,-0.24301116,-0.50610834,-0.09423717,-0.43015465,0.53165656,0.15299001,-0.3676397,0.1101227,0.16852376,-0.4243511,-0.037679173,0.2740712,-0.35560125,0.095990315,-0.47276866,0.105706915,0.94231623,-0.10451182,0.05437055,-0.5260674,-0.47331774,-0.8530933,-0.41452536,0.6342898,0.226122,0.061384298,-0.55373794,-0.032924294,-0.12951052,-0.03688928,0.021673901,-0.46551672,0.446879,0.2966143,0.2501926,0.0015987594,-0.8089186,0.014331385,0.043485533,-0.28121156,-0.5012971,0.51960737,-0.1151674,0.7964476,0.15078205,0.068708055,0.21482521,-0.37386268,0.08624579,-0.15276909,-0.16822895,-0.60752404,0.0069794934,828 -295,0.42923623,-0.27426142,-0.4594677,-0.13930877,-0.09435058,0.08589523,-0.15908219,0.6050778,0.06937013,-0.25259382,-0.090601206,-0.058118675,-0.114530705,0.31149858,-0.082405165,-0.47502878,0.055510897,0.16002303,-0.5206989,0.69853187,-0.2612626,0.19147748,-0.19806251,0.40678012,0.03710349,0.35510913,-0.03211439,-0.097579926,-0.1870621,-0.029262984,0.029547326,0.10894832,-0.4056432,0.19305064,-0.29212534,-0.23253495,-0.027285617,-0.3516695,-0.48321623,-0.67128366,0.10691937,-0.7048761,0.5366459,0.037419114,-0.33492962,0.1685461,0.09269322,0.29316086,-0.3416026,0.026475005,0.02773666,0.09981179,0.006310725,-0.18158713,-0.1428237,-0.5610924,-0.4402869,0.07115669,-0.4962915,-0.007066866,-0.10029469,0.115644895,-0.25491858,-0.16349323,-0.09494761,0.42024007,-0.3525453,0.07559864,0.23713274,-0.03669137,0.16463844,-0.5649618,-0.194851,-0.16585799,0.31496096,0.033824015,-0.12547724,0.35851792,0.20945151,0.50003487,-0.15227339,-0.082206555,-0.27922657,-0.09412669,0.036556292,0.429986,-0.18452603,-0.5949304,-0.09851883,-0.0473298,0.21036711,-0.033493917,0.11894799,-0.1173089,-0.081864096,-0.07637002,-0.26657346,0.29067937,0.6015867,-0.31304333,-0.24958465,0.42934614,0.5833741,0.23720144,-0.28560933,0.005618453,0.053510185,-0.352174,-0.118667714,-0.0025845964,-0.12169734,0.53477836,-0.046009973,0.2697758,0.59686565,-0.074827924,0.0856346,0.101893775,-0.018838238,-0.12947337,-0.10117933,-0.27954668,0.045836236,-0.27965963,0.05007933,-0.21061204,0.4477113,0.15109086,-0.71768,0.35165918,-0.49524632,0.14849177,0.052205857,0.4677077,0.75264496,0.3960546,0.2322771,0.5226307,-0.19059747,0.12211009,0.039208665,-0.21512906,0.13357712,-0.21229763,-0.06605049,-0.5742931,0.07770593,0.16812979,-0.23916319,-0.015807223,0.2092247,-0.48149928,-0.12071821,0.28716904,0.89507073,-0.2130194,-0.103509516,0.63322383,1.0339812,0.9603551,0.06305425,1.0327448,0.30350295,-0.24701948,0.3578419,-0.38897222,-0.6490101,0.23258752,0.35249048,-0.111623146,0.51569855,0.034035444,-0.19246082,0.4573761,-0.4016923,0.06447964,-0.2626316,0.057214793,0.086246885,-0.12053121,-0.42304662,-0.27215344,-0.20338467,-0.055705156,0.17039165,0.3215536,-0.22192033,0.35917524,0.0017093023,1.7401701,0.059506185,-0.0061769485,0.06628115,0.65205,0.1417258,-0.17816792,-0.016107686,0.33631885,0.3627461,0.07214319,-0.523603,0.24186355,-0.2551038,-0.5465459,-0.15520388,-0.3053061,-0.07377145,-0.13940836,-0.48690504,-0.1388395,-0.022357576,-0.19961093,0.330242,-2.928391,-0.15528962,-0.18624324,0.34272906,-0.22671418,-0.2123436,-0.18694565,-0.3515905,0.28660247,0.4292799,0.43135312,-0.6225943,0.49526584,0.32458866,-0.52938724,-0.064443514,-0.5599538,-0.06251896,-0.090789795,0.4567551,0.0283004,0.048696622,0.25882852,0.26061717,0.41358414,-0.1056631,0.034157835,0.19483967,0.35260475,-0.01747034,0.30799478,-0.093405694,0.37332132,-0.24959993,-0.16580422,0.23619206,-0.43517786,0.26678935,-0.06302509,0.1406314,0.44941092,-0.47499287,-0.8922129,-0.6620258,-0.04866406,1.108721,-0.20884241,-0.35993546,0.117077984,-0.51545364,-0.20755298,-0.16505295,0.5924748,-0.1277503,-0.035177425,-0.7638493,-0.01364156,-0.21488781,0.1687429,-0.019874116,-0.0009692709,-0.3853096,0.6625644,-0.048886735,0.6129805,0.18282524,0.15323094,-0.17267182,-0.44453132,0.15230341,0.67217326,0.37556687,0.05665303,-0.18351912,-0.24989888,-0.3418701,0.11106823,0.15634972,0.5003624,0.4974778,-0.0643085,0.16538332,0.16609268,-0.11191262,0.047845285,-0.1621104,-0.2156784,-0.11912294,0.11029541,0.6059218,0.73083574,-0.35425663,0.52207434,-0.1658071,0.21459743,-0.25031477,-0.45057878,0.63452953,0.75577337,-0.27883017,-0.19042355,0.55558646,0.6089027,-0.3230737,0.39887658,-0.7086872,-0.2983019,0.39602214,-0.16359352,-0.21660924,0.30545643,-0.29397318,0.24585596,-0.9889027,0.37200114,-0.25440624,-0.3679415,-0.65812624,-0.04403523,-2.9730365,0.13560958,-0.09752546,-0.3124963,-0.06527646,-0.13265795,0.3660444,-0.6180059,-0.4052847,0.14283219,0.1169048,0.5855643,0.032514673,0.01090413,-0.2680151,-0.321064,-0.287416,0.13763301,0.17066093,0.37087262,-0.08188281,-0.47820526,-0.20310524,-0.105482735,-0.25877383,0.094128385,-0.6165931,-0.3289419,-0.23719199,-0.4935962,-0.14908774,0.6079952,-0.12948106,0.06559126,-0.27151647,-0.018717997,-0.24811038,0.355597,0.11319787,0.014152909,-0.047509782,-0.09024815,0.15504226,-0.25565705,0.27674758,0.112130016,0.36730927,0.29724884,-0.12618665,0.205559,0.63340354,0.5878958,-0.1469581,0.6378111,0.579438,-0.12837899,0.46309173,-0.27056494,-0.10962944,-0.39270625,-0.3062604,0.06271212,-0.29878932,-0.5186597,-0.08793643,-0.49550867,-0.7769403,0.40323672,-0.17338131,0.063529395,-0.009188638,0.2018815,0.61211264,-0.15785065,0.056519426,0.051696405,-0.13849674,-0.4255656,-0.3407493,-0.5162793,-0.35549542,0.11817146,1.0718484,-0.202622,0.0041472437,0.031811003,-0.2983782,0.018030886,0.049045697,0.06520005,0.11487662,0.32913885,-0.2508647,-0.6267044,0.39726242,-0.2515617,-0.22136383,-0.43831107,0.17872575,0.5784513,-0.60157776,0.5299016,0.3177687,0.05047638,-0.17995715,-0.5009394,-0.11334933,-0.010540309,-0.105722,0.25006017,0.14321586,-0.75688666,0.3233453,0.22082734,-0.2507436,-0.52612555,0.4661377,-0.007296749,-0.27342588,-0.013919136,0.27128708,-0.048891257,-0.03437174,-0.43572202,0.20875518,-0.30810255,0.1605435,0.24730653,-0.083521485,0.33233395,-0.112663776,0.03792775,-0.6930524,0.020963876,-0.4347064,-0.32263774,0.346683,0.18245094,0.29618508,-0.060399756,0.009329834,0.30161896,-0.31820887,0.08886186,-0.030545648,-0.26560524,0.35021025,0.4108743,0.4554231,-0.5022188,0.663011,0.07832204,-0.15009648,0.0010846456,0.11575878,0.40422815,0.10755715,0.37418506,0.04206003,-0.22929856,0.25206554,0.7549129,0.2544612,0.55075055,0.11199136,-0.216394,0.25220543,0.0029627234,0.09337525,-0.062005077,-0.3668854,-0.063084885,-0.13313611,0.2563291,0.3780424,0.08566983,0.27529636,-0.11484971,-0.22761948,0.10791291,0.22197492,0.099624306,-1.398056,0.39771894,0.36519712,0.86322796,0.30044603,0.026915153,-0.03415346,0.7190328,-0.13427046,0.084579594,0.33599758,-0.07114235,-0.5425006,0.57252187,-0.6499938,0.4951795,0.06887771,-0.06487568,-0.049853735,-0.040225983,0.3920171,0.7756139,-0.09578156,0.051809654,0.013258268,-0.39862388,0.0016704401,-0.192199,0.2032335,-0.5269853,-0.2476894,0.5447694,0.51451075,0.33963272,-0.17262818,0.051913165,0.06673282,-0.14388786,0.20248026,-0.053880833,0.05547433,-0.15647787,-0.7868622,-0.15975729,0.5071334,-0.3247246,0.10541272,0.11612868,-0.32318908,0.21289498,-0.06622876,0.0855314,-0.006562466,-0.51084554,0.07568259,-0.2144502,-0.3066499,0.6567116,-0.22188698,0.29586658,0.15436253,0.05211418,-0.24070397,0.33837086,-0.01742936,0.6656847,-0.07940354,-0.22537549,-0.47152394,0.09138673,0.16197734,-0.2914094,-0.1516687,-0.38282776,0.038534716,-0.37224418,0.3881748,0.038381875,-0.20993294,-0.03918559,-0.16070274,0.08559019,0.45141086,-0.12262215,-0.22268753,-0.13192298,-0.096114956,-0.39973357,-0.098251946,-0.053082235,0.40332317,0.31185248,0.0022021015,-0.07050255,0.038818408,0.007901589,0.46654433,0.06821724,0.33038273,0.53080595,0.20017181,-0.27784312,-0.087209396,0.18584386,0.47936672,0.14324825,-0.021338169,-0.4264074,-0.42026728,-0.35151199,0.10361527,-0.1933007,0.28136608,0.17592779,-0.21289629,0.6744888,-0.0075253886,1.219989,0.07327895,-0.3570534,0.22702004,0.4196025,0.04271159,0.10875646,-0.43048677,0.9017306,0.5274294,-0.04818901,-0.13523698,-0.30451828,-0.1675542,0.11364821,-0.2305473,-0.23338103,0.013900518,-0.67015964,-0.2548037,0.16976981,0.19132315,0.25528303,-0.054805472,0.06419982,0.11337788,0.05858608,0.23168853,-0.4628889,-0.20561878,0.23914689,0.18727295,-0.01529309,0.10934622,-0.4420389,0.40031892,-0.5396146,-0.03790439,-0.33562025,0.14593953,-0.07835782,-0.36131805,0.17800769,-0.065692864,0.3862235,-0.34977537,-0.31192285,-0.23144825,0.5680167,0.07548874,0.1386172,0.45441914,-0.21585956,-0.04420321,0.094195195,0.53069264,1.0003542,-0.36737728,0.04103655,0.45968926,-0.3311935,-0.70723534,0.22915097,-0.30366543,0.34701443,-0.04541498,-0.22481495,-0.5432361,0.3818217,0.17513323,0.078611486,-0.14314954,-0.5162886,-0.26056042,0.22789502,-0.32356614,-0.22193053,-0.36935493,-0.005982741,0.54824907,-0.21588193,-0.32878482,0.059134007,0.20217942,-0.19282463,-0.51930964,0.010950676,-0.39974988,0.2450171,0.11161731,-0.31219962,-0.16388282,-0.04278775,-0.42511025,0.33434853,0.11138891,-0.38078254,0.07926916,-0.4319994,-0.15688889,0.9854403,-0.23011294,0.10094659,-0.5257037,-0.4806474,-0.71870863,-0.5430361,0.35282496,0.19997902,-0.061972,-0.582812,0.09172379,0.061414722,-0.026845535,-0.15934692,-0.28936476,0.38854158,0.14731869,0.35025206,-0.10549291,-0.79020816,0.2030252,0.025552472,-0.15332174,-0.5620048,0.47563255,-0.0015444278,1.0056552,0.124306366,0.2266745,0.24743108,-0.43937486,-0.17378168,-0.18623243,-0.15736605,-0.6476566,0.045214638,836 -296,0.669592,-0.34641063,-0.7271357,-0.1275101,-0.26873365,0.025583168,-0.3524104,0.50998753,0.14044212,-0.65467244,-0.034407355,-0.119208016,-0.06731855,0.3430974,-0.21991827,-0.5795744,-0.16084446,0.03592288,-0.45662433,0.5407147,-0.3647407,0.44008607,0.16869444,0.23454955,0.3082456,0.19083765,0.11063661,0.09227052,-0.38770422,-0.038855445,0.10622738,0.34657466,-0.70853096,0.19300124,-0.22902104,-0.4799595,-0.12884897,-0.38539633,-0.21624742,-0.7735082,0.3287337,-0.8678305,0.6047758,-0.2100868,-0.4257701,0.09556146,0.06565127,0.4766958,-0.029803833,0.026392126,0.16270116,0.16508299,-0.1193153,-0.012209777,-0.36958936,-0.47571805,-0.69836354,0.15083465,-0.55792046,-0.20021087,-0.114914276,0.17788313,-0.29565457,0.15030266,-0.13891767,0.6443157,-0.3333193,-0.17991835,0.3303395,-0.03439878,0.44094238,-0.7352382,-0.115374394,-0.24697559,0.19322583,-0.33853278,-0.23332705,0.23244376,0.42980728,0.5834984,-0.010813673,-0.2158057,-0.5141912,0.049022183,0.12712562,0.29802322,-0.2132385,-0.49260846,-0.16081175,0.086265296,0.38352653,0.15196864,0.28856608,-0.2549095,0.0668036,0.29299483,-0.27659282,0.6670541,0.42766494,-0.381868,-0.14760898,0.25668967,0.85484916,0.31587225,-0.1271005,0.14759092,0.00616077,-0.6082571,-0.087756775,0.35156882,-0.03522028,0.53088343,-0.026088757,0.17758504,0.63518196,-0.2794715,0.018564982,0.10003617,-0.08508174,-0.04097583,-0.3100782,-0.33609766,0.26162413,-0.4880425,0.04970503,-0.2970923,0.71919096,0.07069834,-0.852019,0.39321703,-0.5194089,0.017892996,-0.05040942,0.4930268,0.73897195,0.5951816,0.11495917,0.7094233,-0.48510304,0.008742278,-0.17418247,-0.3526969,0.06274212,-0.3264844,0.07503714,-0.50752515,-0.15834387,-0.10119298,-0.15254799,-0.014230998,0.6097632,-0.5421148,-0.08075058,-0.10782124,0.8391276,-0.3160702,-0.3089114,0.82518643,0.88644004,1.0112196,0.011938763,1.1152512,0.2493221,-0.19990733,0.30987814,-0.31043437,-0.61354727,0.47587445,0.45324865,-0.24497007,0.52166647,-0.027882012,0.118833385,0.5021731,-0.18817554,0.189543,-0.114351384,0.10200084,0.12562804,-0.22657862,-0.50101537,-0.12041424,0.059747245,0.020585267,0.058763556,0.1491923,-0.053923734,0.5755784,0.1963098,1.8063494,-0.2918981,0.139125,0.20074296,0.30794588,0.06339044,-0.21513796,0.022003952,-0.13057879,0.35912275,0.18049018,-0.52291846,0.12863263,-0.1747348,-0.49696288,-0.23463097,-0.33070418,0.021238025,-0.25282514,-0.5451707,-0.007329782,-0.008539303,-0.35232344,0.38654354,-2.3151398,-0.29908782,-0.18882759,0.24108757,-0.42026168,-0.7298743,-0.115505666,-0.55417407,0.44144967,0.30462503,0.44707,-0.6344278,0.4362782,0.36778107,-0.4307493,-0.05451586,-0.70693517,-0.1543866,0.010975056,0.19179782,0.003932174,-0.35584685,0.12147843,0.30013874,0.52150935,-0.29432485,0.018241467,0.26650095,0.40910423,-0.018718235,0.8527225,-0.0077308617,0.45757625,-0.29418212,-0.24036105,0.59726703,-0.2616936,-0.008013376,0.17409338,0.16811457,0.30625808,-0.5191476,-1.024796,-0.82669437,-0.45165253,0.97115046,-0.14749558,-0.5122689,0.10481666,-0.25670582,-0.41116586,-0.18032952,0.33177403,-0.008516264,0.07192176,-0.9240663,-0.04641246,-0.23528567,0.17908607,-0.09109688,0.060143176,-0.5051476,0.65200603,-0.034384917,0.34532794,0.49592736,0.19342607,-0.3564834,-0.64025664,0.07802798,1.3295354,0.3663022,0.1548211,-0.41490397,-0.18594806,-0.5295524,0.20301326,0.085292846,0.390532,0.7867129,0.09918801,0.027545197,0.16106148,-0.06514553,0.07945175,-0.11985739,-0.39009696,-0.2880622,-0.001344798,0.6621448,0.5444676,-0.096150555,0.69151247,-0.2481537,0.21532099,-0.15317683,-0.52636814,0.60317135,0.8960082,-0.19401798,-0.44987634,0.5525122,0.3420237,-0.24665152,0.48609826,-0.5671257,-0.2820954,0.35032266,-0.13714142,-0.43125382,0.3570505,-0.3829931,0.13116117,-1.1665803,0.19773522,-0.48130867,-0.2709055,-0.60041153,-0.2966643,-2.588324,0.27371246,0.01144858,-0.18702799,-0.05839807,-0.3022623,0.31731427,-0.6937626,-0.7600307,0.05671514,0.134833,0.7270659,0.084884755,0.002418955,-0.2312936,-0.24042276,-0.11382365,0.22756772,0.38580576,0.23033364,0.14013423,-0.52806306,-0.18209018,-0.32058683,-0.4468881,0.06396424,-0.6938204,-0.8001957,-0.20669954,-0.5323594,-0.43883452,0.72854704,-0.47594208,0.042777415,-0.07536702,0.0063642543,0.14371566,0.42357937,-0.053053323,0.20345488,0.13419929,-0.14161198,-0.016288936,-0.26227686,0.09928382,0.22374524,0.3674759,0.35437545,-0.44863757,0.50242454,0.68916,0.9826847,0.107456304,0.7370672,0.6632916,-0.040777273,0.37439433,-0.23703726,-0.19812982,-0.6940721,-0.12551534,-0.07886618,-0.48414987,-0.39075103,6.447633e-05,-0.43750185,-0.8517071,0.79612947,-0.1668388,0.05658018,-0.06549735,0.38959986,0.460186,-0.2444838,-0.049680028,-0.13776724,-0.18308856,-0.49067897,-0.5288582,-0.5888729,-0.8197971,-0.06745457,1.3007965,0.0253738,0.03939011,0.06348678,-0.11347934,0.08198336,0.18148318,0.016197715,0.170379,0.48167303,-0.11375085,-0.63029975,0.32828522,-0.12802269,-0.18335861,-0.57909447,0.12179411,0.7524199,-0.54568875,0.24225283,0.28996927,0.06345891,-0.20581953,-0.57158965,-0.016090421,0.12921208,-0.3470702,0.52725416,0.19986653,-0.6365868,0.40720552,0.39546436,-0.23003021,-0.69372165,0.65297717,0.20257537,-0.10291322,-0.06507945,0.39068764,0.12189637,0.0442759,-0.29246932,0.22713037,-0.454907,0.09231586,0.37926522,-0.068095095,0.36253324,-0.23207916,-0.17261927,-0.72902656,0.1544447,-0.45994267,-0.41285577,0.24479093,0.08673759,0.23170736,0.2824778,0.10168428,0.46078864,-0.34664047,0.045814347,-0.12268143,-0.26397568,0.35719696,0.46088588,0.38549456,-0.4881587,0.40259698,0.011026112,0.030751593,-0.12421752,-0.021059068,0.53569347,0.039210018,0.2310904,0.110144466,-0.14561293,0.2580286,0.7930927,0.19414835,0.49938947,0.053561892,-0.2625757,0.05828586,0.050099365,0.22541708,0.020208208,-0.5700009,-0.005057462,0.08971299,0.11968325,0.57428837,-0.05527153,0.23022327,-0.3066101,-0.40531,0.048903372,0.17424367,-0.13576443,-1.4576592,0.39103082,0.20339395,0.79143035,0.38683465,0.017863575,0.16129923,0.49431324,-0.27488622,0.2174251,0.38250795,-0.053321667,-0.46070063,0.5686958,-0.70883334,0.4319376,0.031880658,0.13989298,-0.07984562,-0.102348454,0.540471,0.80861783,-0.11415787,0.14666146,-0.13069418,-0.11547623,0.0660304,-0.3916314,0.12424843,-0.4290657,-0.12744644,0.85381,0.4126487,0.4103885,-0.035884786,0.015131899,0.17733027,-0.24015665,0.18048249,-0.25097033,0.07333896,-0.035429064,-0.53326833,-0.23327151,0.5550378,0.37809297,0.042051084,-0.033948023,-0.27552015,0.17433567,0.078076705,0.017786857,-0.13533898,-0.7037134,-0.1072572,-0.6499317,-0.3488169,0.43184298,-0.10009925,0.116359755,0.19244266,0.07512197,-0.38164252,0.46523038,0.1464325,0.7106848,0.004074947,-0.19309276,-0.3687589,0.11026597,0.25589272,-0.3342956,-0.16678019,-0.24552996,0.2856811,-0.7058881,0.28344026,-0.00060403347,-0.4776924,0.037260536,0.05627064,0.034136925,0.44848588,-0.35390118,-0.039139587,0.104571424,-0.03147314,-0.025413794,-0.33050504,0.055394463,0.27664375,0.12411176,-0.039793238,-0.08309914,-0.11515465,0.010572505,0.39458168,0.14690647,0.31695664,0.59632176,0.2465442,-0.5121371,-0.008160353,0.37251064,0.60029846,-0.006435162,-0.16787173,-0.5094922,-0.317508,-0.32815933,0.43449694,-0.12084527,0.27645028,0.057936404,-0.481464,0.8960108,0.098167725,1.4258448,0.019264508,-0.5024432,0.17416124,0.42134923,-0.039173607,-0.07630291,-0.5442328,0.918186,0.49275112,-0.05945375,-0.12796474,-0.4286548,-0.05364519,-0.046803202,-0.24056624,-0.15453915,-0.24849387,-0.6606293,-0.30251357,0.2955344,0.30752736,0.08606086,-0.1789705,0.23656793,0.17479089,-0.12082607,0.38582236,-0.44083956,0.014677814,0.13062814,0.37327814,-0.1447301,-0.054141838,-0.49574706,0.32972315,-0.66976535,0.10292261,-0.41881835,0.21229228,0.048871074,-0.36523777,0.27990285,-0.095658936,0.30677974,-0.32998678,-0.45420888,-0.2996859,0.59668165,0.0337153,0.14633827,0.7053918,-0.19797726,0.22686593,0.013201336,0.4516633,1.2480983,-0.16438745,-0.035469815,0.27833888,-0.23474291,-0.4956574,0.2891599,-0.3788193,0.52452177,-0.16156875,-0.22091551,-0.47870985,0.19227448,0.18849452,-0.037074026,-0.04318484,-0.44151497,-0.20591617,0.2900856,-0.41523784,-0.24670427,-0.3088114,0.052089628,0.5350366,-0.37224838,-0.33035153,0.019142976,0.44616222,-0.14405702,-0.28988448,-0.11991276,-0.2791932,0.26091647,0.2156746,-0.318797,-0.07344155,0.06863586,-0.48927882,0.09289854,0.49227524,-0.40093157,0.025467504,-0.22734505,-0.13450575,0.9346519,0.07109773,0.118304715,-0.46210563,-0.46410143,-0.9811869,-0.27497196,0.27026546,0.14328569,-0.029633526,-0.7943733,-0.014514113,-0.29195347,-0.0053412276,0.062841214,-0.33873805,0.4229645,0.1355825,0.6225846,-0.24926907,-0.71403843,0.07293034,0.16893181,-0.10634224,-0.5485572,0.5626784,0.016595948,0.82827026,0.049568407,0.26085898,0.33470994,-0.6881837,-0.09980893,-0.23767088,-0.11094477,-0.7657524,0.004652397,837 -297,0.36219198,-0.21507937,-0.5592786,-0.2156264,-0.5001799,0.018489378,-0.33104813,0.3096626,0.1758578,-0.077002525,-0.17149182,0.0015302419,0.01935914,0.28297985,-0.16377096,-0.5166024,-0.26105198,0.09016748,-0.83997226,0.52258664,-0.5649702,0.38612023,0.1446734,0.38983983,0.16394173,0.3365627,0.2593523,-0.031505845,-0.040009014,-0.1244607,-0.30662537,0.48060516,-0.61198616,-0.06886565,-0.2160287,-0.47322312,0.078396685,-0.4725704,-0.12219,-0.7446917,0.2850557,-0.87509596,0.50488466,-0.1328724,-0.15164988,0.12893274,0.41781524,0.30058974,-0.25423557,0.040283673,0.2357281,-0.16234377,-0.19057284,-0.20383173,-0.007731144,-0.31963834,-0.49198106,0.024913156,-0.72422194,-0.29824826,-0.20355007,0.21503447,-0.3194018,-0.02733643,-0.2881316,0.41787246,-0.4370273,-0.13526684,0.18385293,-0.18377584,0.31267786,-0.53820825,0.02101024,-0.057088867,0.5522793,-0.11580256,-0.075736314,0.29589936,0.4367291,0.33554846,0.14875898,-0.37113714,-0.297036,-0.16142327,-0.072990194,0.41431364,-0.21179001,-0.433589,-0.14642794,0.03512024,0.4606213,0.4948543,0.026738051,-0.112396464,0.12740551,-0.005602678,-0.2531633,0.64361674,0.5322478,-0.37190965,-0.33051598,0.35261616,0.54212576,0.33802396,-0.27473876,-0.04262611,-0.121479064,-0.58940184,-0.06974074,0.15940121,-0.10479137,0.41979548,-0.088134885,0.16806443,0.8081053,-0.04401796,0.038709242,-0.062292982,-0.16174826,-0.20451434,-0.23930927,-0.23075622,0.18571374,-0.5731669,0.06851129,-0.2016876,0.6294171,-0.038858533,-0.8064407,0.36621732,-0.6151112,0.16660471,-0.05642585,0.6499867,0.7264702,0.46609437,0.44233656,0.7307452,-0.105146475,0.13889058,0.055547215,-0.5342349,-0.015209361,-0.25793532,0.18728907,-0.51373726,0.14006968,-0.1193423,0.10360878,0.072042175,0.49434727,-0.6371983,-0.22321157,0.18559885,0.6648079,-0.3512731,-0.036326077,0.8415693,1.0457247,1.0531617,0.051692333,1.0420139,0.32448578,-0.27595624,0.14427117,-0.3343474,-0.49080876,0.17669319,0.58745027,-0.31646302,0.41699016,-0.20733309,0.01663487,0.44555002,-0.32552192,-0.10343884,-0.11191751,0.113703564,0.12559332,-0.031616993,-0.45810884,-0.21836124,0.1204573,0.024300823,0.19319911,0.17711093,-0.19076777,0.36497495,0.017777124,1.2511953,-0.20637137,-0.00076272886,0.067437455,0.67216957,0.37845972,-0.11496773,-0.14349853,0.3546688,0.5339462,0.0013146003,-0.6295035,0.24385111,-0.34534168,-0.37946936,-0.13545926,-0.38689443,-0.10477028,0.089219816,-0.43279764,-0.1781778,-0.049107805,-0.26110354,0.31224298,-2.8273213,-0.18107647,-0.26905283,0.17123856,-0.25186422,-0.23035164,-0.007639444,-0.5985067,0.2882042,0.2898437,0.4469051,-0.58966315,0.4341393,0.53126824,-0.58735424,-0.23236948,-0.8094401,-0.15586121,-0.07082202,0.47370064,0.07339612,-0.2322425,-0.11128799,0.26044723,0.74352276,0.08010943,0.32919157,0.4219474,0.45362574,0.026325772,0.6689464,0.11360483,0.615145,-0.3051866,-0.2591677,0.41567802,-0.22813769,0.017547766,-0.14492597,0.14242499,0.57562536,-0.47156844,-1.0799564,-0.5755571,-0.14767198,1.1005807,-0.44288498,-0.51069415,0.20374899,-0.13193497,-0.018856283,0.11316417,0.62956655,-0.18701203,0.12187091,-0.7773225,0.2545291,-0.13638276,0.09129489,0.018464351,0.010989074,-0.44655022,0.6053103,0.033927638,0.5352924,0.21808773,0.29724458,-0.34280145,-0.35938877,0.13826412,0.77322096,0.33007115,-0.1709018,-0.17611767,-0.2146742,0.016448831,-0.10898379,0.013442864,0.4894944,0.72874695,0.028622894,0.16330053,0.28499117,-0.028648678,0.08544803,-0.1792085,-0.10595504,-0.08804102,-0.0020408442,0.5018595,0.5819508,-0.090443,0.5867579,-0.23954555,0.31699732,-0.05521712,-0.645181,0.7223526,0.6296858,-0.14520551,-0.049586426,0.6574374,0.54937446,-0.36872548,0.5294387,-0.6864159,-0.29651314,0.71572274,-0.1771606,-0.5179456,0.21023335,-0.2599797,0.09766881,-0.8246969,0.18049598,-0.3385395,-0.27565053,-0.33246562,-0.12278892,-3.5222838,0.15890451,-0.099631555,-0.016067911,-0.44566235,-0.31591886,0.3124953,-0.64415276,-0.6133997,0.18974614,0.30978405,0.48815188,-0.09793904,0.08953234,-0.21865977,-0.35314068,-0.11387246,0.27419516,0.17238222,0.30149782,-0.16870521,-0.42957047,-0.06684429,-0.048233192,-0.61859024,0.03164677,-0.55521363,-0.43349034,-0.09612013,-0.66675746,-0.2605857,0.6281651,-0.2623521,0.046780664,-0.30633262,0.060977172,-0.11401327,0.23209412,-0.008259235,0.3202428,0.12884519,-0.08532294,0.31422234,-0.35638434,0.5006484,-0.18370722,0.2976504,0.054667473,0.11302934,0.18231492,0.48423067,0.66562265,-0.26587403,1.0924901,0.48624033,-0.074350476,0.26639432,-0.27234942,-0.25829864,-0.7732032,-0.35460085,-0.07545492,-0.44560087,-0.40463334,0.073207565,-0.26179802,-0.76246643,0.7736103,-0.067321524,0.4618916,-0.1676876,0.4582052,0.476704,-0.20061421,-0.0452893,-0.06784412,-0.18372707,-0.5293362,-0.1542655,-0.7728236,-0.53919095,-0.1254756,0.80629563,-0.3095212,0.041707266,-0.004900551,-0.23091513,0.17065087,-0.04515934,0.26364282,0.36724204,0.55663097,-0.030512368,-0.72503054,0.3527984,-0.1429534,-0.09575259,-0.42155704,0.1366238,0.5692308,-0.74385446,0.53142154,0.43538272,0.0754873,-0.03960784,-0.6288923,-0.16255197,0.13175891,-0.06528727,0.62205833,0.2722061,-0.95084727,0.6437185,0.349123,-0.3382447,-0.7317918,0.42084143,-0.0878941,-0.26300237,-0.18206714,0.40075362,0.16442433,-0.03266265,-0.20641455,0.08753227,-0.45270061,0.33468243,0.12151361,-0.07110984,0.44765165,-0.20629518,-0.36228102,-0.7440566,-0.044885796,-0.52009785,-0.24984995,0.3516194,-0.11845536,0.04311035,0.08876876,-0.14314625,0.4061308,-0.26865852,0.104021624,0.035017796,-0.2217848,0.19458859,0.46956977,0.2672343,-0.47814587,0.53800815,0.18846127,-0.33415908,-0.011527745,-0.12465904,0.38232562,-0.052189376,0.33977816,-0.113742925,-0.23252697,0.5359992,0.7426568,0.07193645,0.31228212,0.0075208903,-0.06586416,0.22115707,-0.093715474,0.121485546,-0.0061853607,-0.52546585,-0.043102752,0.0032016437,0.08998382,0.5996972,0.19988911,0.23714705,0.03206235,-0.072559595,0.0071748258,0.22297798,-0.11456927,-1.1979042,0.4588241,0.26560208,0.87872046,0.40986255,0.14782906,-0.32734522,0.77514845,-0.3629772,0.02410254,0.42437682,0.083222546,-0.3256134,0.8373975,-0.5579818,0.46234623,-0.15932241,0.020364229,0.12056814,0.05739056,0.31853637,0.8493522,-0.2241558,0.13726804,-0.042425822,-0.15617847,0.06106062,-0.22155084,-0.010647939,-0.32079795,-0.3071868,0.72096264,0.31220993,0.37394655,-0.11131713,-0.12521982,0.08109037,-0.26162997,0.04411243,-0.03477392,0.056352485,0.04990814,-0.42198527,-0.17043658,0.52816755,0.2486425,0.13231887,-0.23432612,-0.44539034,0.1245007,-0.23156387,-0.052340522,0.018005379,-0.56670535,0.02363205,-0.18077567,-0.54595274,0.37348804,-0.19562048,0.049408857,0.16660999,-0.045160074,-0.14479247,0.04858832,0.12025118,0.712781,-0.14822595,-0.1520752,-0.36761722,0.053739604,0.22480913,-0.30417636,-0.07198153,-0.37116376,0.09186005,-0.43275923,0.4859641,-0.13081771,-0.55781865,0.120150395,-0.18350625,-0.052320264,0.56856346,-0.112509094,-0.16750367,0.0490304,-0.0834112,-0.29288083,-0.15516827,-0.22861342,0.22479148,0.2951029,0.009931811,-0.19008127,-0.23679426,-0.13525635,0.75847083,-0.082680896,0.42469272,0.23331842,0.08224315,-0.296835,0.10084224,0.22340806,0.49892253,0.024722386,-0.038695358,-0.46661967,-0.33165532,-0.31122863,0.25777185,-0.071198426,0.28373224,0.035482798,-0.23711914,0.93413097,-0.13117506,1.1433924,0.014755046,-0.33297342,0.04510756,0.5218541,-0.13377501,6.2354404e-05,-0.3100481,0.9654337,0.5720554,-0.06360341,-0.039993167,-0.44779682,-0.103216454,0.29535076,-0.40900624,-0.047667366,-0.1338113,-0.5132626,-0.4197335,0.23664598,0.16968209,0.10806577,-0.10553227,0.033901647,0.08388804,0.10000069,0.5899496,-0.63293076,-0.1643741,0.20068502,0.2396498,-0.23031302,0.092123136,-0.45224997,0.2684105,-0.5949923,0.046138227,-0.587043,0.16511232,-0.15696245,-0.34938082,0.12671433,-0.26182196,0.33486012,-0.21985118,-0.52076584,-0.018784622,0.36567682,0.051559765,0.08071248,0.593919,-0.34003633,0.1475482,0.1044047,0.64373267,1.1651782,-0.31628102,-0.060156632,0.2515486,-0.32105523,-0.49299297,0.29386625,-0.3020275,-0.01444507,0.044000383,-0.35403425,-0.27972305,0.31845385,0.2958081,0.045525137,0.023307411,-0.53628963,-0.09876774,0.3256316,-0.20201497,-0.14408681,-0.25214043,0.38160807,0.7982036,-0.32179922,-0.36857548,-0.020817813,0.39562008,-0.2150417,-0.5307579,0.088474736,-0.20849799,0.39313018,0.1394435,-0.353693,-0.063462704,0.21502116,-0.53664756,0.098283425,0.34758648,-0.25247306,0.11369118,-0.20944066,-0.042094756,1.0306194,-0.2459507,-0.046123397,-0.47375435,-0.49408016,-0.91627043,-0.29856485,0.15070018,0.14714128,-0.007167842,-0.48767197,0.13483343,-0.108606584,-0.21054827,0.14297272,-0.4235716,0.23221229,0.036467187,0.7746445,-0.29380527,-0.84334356,0.043414656,0.10016771,-0.027245605,-0.52056676,0.7436656,0.03719501,0.8438852,0.123765804,-0.002014033,-0.07362147,-0.35674435,0.0011690517,-0.38504776,-0.08432615,-1.0025814,0.12852944,841 -298,0.25112456,-0.1707499,-0.62795943,-0.21233673,-0.24133626,0.1898924,-0.2836021,0.3036408,0.34423408,-0.34987625,0.16686513,-0.16689657,-0.180966,0.205321,-0.13068087,-0.62588763,-0.03029509,0.08701162,-0.5487622,0.72492546,-0.39797032,0.13804647,0.19243807,0.22198275,-0.06566175,0.18584344,0.18613991,-0.016386917,-0.058415387,-0.07766104,0.08211314,0.09651189,-0.5746707,0.23487666,-0.086076684,-0.1700355,-0.065243445,-0.4078436,-0.38213286,-0.7691084,0.28764787,-0.86368614,0.378866,-0.16816537,-0.31315765,0.35592717,0.2789683,0.13986328,-0.17692235,-0.04698718,0.20971729,-0.2726873,-0.375696,-0.19871467,-0.22100456,-0.66177624,-0.63098973,-0.1899276,-0.4904371,-0.06103572,-0.34062186,0.3696242,-0.3574896,-0.05943867,-0.2712464,0.53459543,-0.4740872,-0.013406133,0.1280195,-0.3354123,0.26642796,-0.7295458,-0.06863455,-0.08036164,-0.041956846,0.320447,-0.124317214,0.31564778,0.3141913,0.5627835,0.066110656,-0.28275728,-0.37271678,-0.07455478,0.123394854,0.3593254,-0.057180054,-0.1302236,-0.24289863,-0.25796,0.3460352,0.30824807,0.13801059,-0.44025126,0.057943407,0.03163359,-0.4055114,0.3663914,0.65149444,-0.28196174,0.08448933,0.4816725,0.19109704,0.064521745,-0.2602119,-0.009342543,-0.13122211,-0.4027522,-0.050029222,0.24003719,-0.0797218,0.39328516,-0.097838365,0.14409056,0.6358423,0.015054222,-0.11774484,0.045844197,0.06768955,-0.004089308,-0.34746546,-0.1722161,0.33430418,-0.49651968,0.023617543,-0.42436168,0.50653833,-0.08962814,-0.7660334,0.38230038,-0.40481982,0.1431671,-0.05290258,0.6585884,0.846142,0.6893384,0.06753746,0.8728296,-0.46745273,0.055033915,-0.19973604,-0.26729128,0.39321312,-0.16662367,0.464455,-0.42387512,-0.014278392,0.14227095,-0.31157348,-0.24300125,0.5827431,-0.421508,-0.13537231,0.14617254,0.81881577,-0.25457734,0.047120187,0.6488249,1.2051165,0.83682466,0.18649544,1.1578023,0.38550836,-0.15679796,0.07731475,-0.18055372,-0.8549804,0.14278623,0.3054191,0.62917435,0.12994552,0.13337517,-0.12965769,0.4858062,-0.2538899,-0.17746022,-0.12702405,0.43508634,0.05201947,-0.21980454,-0.15681754,-0.04871219,0.18764348,0.08769127,0.17838378,0.27405325,-0.15536962,0.46682683,0.24841903,1.1858679,-0.16247909,0.0513763,0.17823175,0.2866472,0.2525493,-0.06856774,0.14804946,0.47866544,0.2775484,0.036060352,-0.6308197,0.095275275,-0.28428504,-0.6115768,-0.14693779,-0.3585058,-0.11886828,-0.10691533,-0.25958213,-0.29768315,-0.045086488,-0.45749778,0.28656438,-2.678666,-0.028938549,-0.28346878,0.35518318,-0.22499922,-0.20197217,0.0032586337,-0.43939108,0.6620289,0.4621605,0.35343012,-0.53474826,0.42448124,0.56343853,-0.41396275,-0.078035444,-0.58840525,-0.010842484,-0.16507973,0.40691847,0.033531442,-0.14070259,0.03324397,0.036906496,0.5540834,0.1389126,0.26306996,0.55365545,0.38147488,-0.21334024,0.33446446,-0.10724964,0.5107085,-0.20685539,-0.15539294,0.20993474,-0.40651688,0.18838891,-0.4282336,0.12264678,0.48022074,-0.26165372,-0.6487679,-0.48487148,-0.11714269,1.1509969,-0.44000453,-0.80535614,0.29657814,-0.06741772,-0.16723223,-0.010193551,0.64743984,-0.20364346,0.020241976,-0.7262361,0.033655588,-0.13602488,0.21731186,-0.03738566,0.107306905,-0.4952176,0.8454289,-0.07225568,0.67458606,0.35811737,0.26817805,-0.3387165,-0.41494617,0.2290419,0.6059683,0.44373524,-0.08149723,-0.1355949,-0.0646264,-0.0031958183,-0.50414205,0.041212924,0.604911,0.61762846,-0.06657463,0.15845488,0.3565974,-0.37601024,-0.03378435,-0.20400448,-0.4801222,-0.19766252,0.12697819,0.53779566,0.5576999,-0.007797746,0.2932104,0.0067973137,0.3180245,-0.097652,-0.62253416,0.5975693,0.76659477,-0.27379358,-0.1953256,0.608039,0.37550873,-0.17202319,0.583618,-0.5636997,-0.34803918,0.46886393,-0.08946406,-0.6668995,0.13395652,-0.3479294,-0.06917027,-0.69738644,0.23958942,-0.28399065,-0.54899776,-0.5817239,-0.15727066,-3.1034653,0.057252433,-0.35968405,-0.053492896,-0.25371516,-0.10448802,0.37842962,-0.44430053,-0.5554364,0.08419037,0.24373354,0.54653084,0.020949619,0.006641543,-0.33390102,-0.13017623,-0.25210366,0.26794147,0.033093326,0.16468498,-0.019685904,-0.3387739,0.04093449,-0.044529814,-0.47699445,-0.066807896,-0.37350997,-0.15062107,-0.24626707,-0.54296416,-0.28101256,0.6547944,-0.3129266,-0.0017700712,-0.219513,-0.018455155,-5.9843063e-05,0.26724353,-0.17001057,0.13519193,0.109287776,-0.13685659,0.12967332,-0.30574447,0.18097101,0.03205847,0.24661608,0.47794572,-0.09504012,0.056667347,0.52025247,0.49163,-0.06777514,0.906271,0.44186324,-0.11068177,0.30342,-0.19627689,-0.10488801,-0.63902193,-0.2595205,0.053928677,-0.46111834,-0.31454843,0.0015035153,-0.30141506,-0.7509797,0.5062727,0.20161597,0.19058791,-0.04043053,0.22555634,0.4559103,-0.050882086,-0.047092836,-0.18180151,-0.28231993,-0.40186733,-0.30620182,-0.8995864,-0.5025099,0.13776316,0.9862805,-0.012135583,-0.31692922,0.031799804,-0.31150958,-0.07403538,0.26727262,0.09286952,0.17837474,0.2895723,0.1825604,-0.6561368,0.5636423,-0.18599549,0.12920459,-0.68699646,0.33111253,0.60197663,-0.7601626,0.3846315,0.51802766,0.14407349,-0.3519953,-0.6935087,-0.22100598,0.14259575,-0.15384957,0.46089852,0.1860115,-0.96836597,0.61337703,0.24484344,-0.11806385,-0.770502,0.34788582,-0.11423306,-0.0481676,0.029098598,0.36599067,0.011683106,0.03788174,-0.43990737,0.32496426,-0.5126694,0.38658464,0.058851235,-0.077317625,0.62807184,-0.12456319,-0.118148245,-0.68474454,-0.0031556129,-0.60621387,-0.17923522,0.36058342,-0.066997655,0.11749959,0.26044324,0.039039295,0.4116435,-0.19887027,0.2073672,-0.29359293,-0.35968915,0.5223492,0.49674,0.30032367,-0.37543482,0.64901006,-0.09113177,-0.13562702,-0.07010567,0.02276504,0.41980976,0.4150233,0.49341288,-0.05089082,-0.11958528,0.25498688,0.78901976,0.22869028,0.35263953,0.1342232,-0.24777056,0.45112774,-0.094378375,0.17746669,-0.29995984,-0.67773724,-0.07715216,-0.089928724,0.19736649,0.47232774,0.23102154,0.5746551,-0.05238486,-0.074495584,-0.013935382,0.0467769,0.084462926,-0.98040223,0.5679583,0.13039376,0.8054648,0.63410175,0.0030193487,-0.05947963,0.7320078,-0.18228558,0.11006198,0.3327801,0.12618075,-0.32255438,0.5179168,-0.69993937,0.2577154,-0.21055181,0.014101684,0.21696557,0.27867785,0.38394088,0.82958335,-0.11774877,0.17382994,-0.17344795,-0.2935129,0.28028247,-0.12115153,0.033254992,-0.31263256,-0.5256209,0.51264584,0.2827914,0.4383742,-0.15997113,-0.11073812,0.28538427,-0.18109795,0.3371419,0.0046532433,-0.022897968,-0.15937187,-0.35306248,-0.31302804,0.5508191,-0.039943337,0.12261277,0.029116098,-0.19907881,0.17950805,-0.1330199,-0.26282737,-0.029372342,-0.5210947,-0.0023720027,-0.11979667,-0.6123174,0.5355658,-0.0409226,0.19191082,0.14113252,0.044719346,-0.22153883,0.002148219,0.1228813,0.7010837,-0.12476602,-0.14024666,-0.08427341,-0.38068774,0.2016717,-0.45372778,0.02077839,-0.07879347,0.03470475,-0.61822855,0.46055907,-0.40940332,-0.21677707,0.2966232,-0.29580316,-0.03668022,0.37015158,-0.2217553,-0.09750184,0.35001463,-0.09569185,-0.1791548,-0.32772624,-0.4353953,0.20959902,-0.3046814,0.14545316,-0.10972427,-0.06726625,0.063745104,0.45171496,-0.047616314,-0.041235533,0.4093949,0.19132312,-0.48414075,-0.056472264,0.28686368,0.5792298,0.16242535,-0.04178626,-0.27078387,-0.58109564,-0.49711582,0.05005326,-0.014726581,0.31373075,0.07759879,-0.54296124,0.8527008,0.073784575,0.91499484,-0.077658094,-0.47659153,0.14033508,0.5020365,0.07629255,0.073861316,-0.3665713,0.7471679,0.64824706,0.0109192645,-0.019130388,-0.5958618,-0.06475211,0.36624315,-0.3227758,-0.15640923,-0.11551697,-0.818998,-0.32015452,0.1598002,0.14203708,-0.005511,-0.217007,0.07966821,0.10720791,0.2723309,0.33237737,-0.61517614,-0.02659789,0.3897252,0.15213394,-0.020682871,0.2748789,-0.3955998,0.21349189,-0.6265372,0.1960956,-0.32856923,0.013585834,0.13307835,-0.1801462,0.1301417,-0.022768259,0.255286,-0.094055384,-0.45414677,-0.056730893,0.62007767,0.18512551,0.25481576,0.6981713,-0.23573099,-0.05020783,-0.056565132,0.6310418,1.3087566,-0.20080306,0.06743797,0.19692999,-0.5131712,-0.8054645,0.20208625,-0.19231455,0.15419598,0.059489932,-0.5012797,-0.33489713,0.30909768,0.012196159,-0.33321992,0.10670808,-0.4374043,-0.33055678,0.07936594,-0.31960624,-0.16988783,-0.2769815,0.18274498,0.7562711,-0.3707547,-0.16493227,0.09405037,0.446041,-0.2983394,-0.5344149,0.10237062,-0.4844294,0.27023354,0.107115,-0.45178622,-0.0050689974,0.041904733,-0.6320713,0.22667035,0.092489175,-0.25548658,0.03533767,-0.41949654,0.070003524,0.76103747,0.080374844,0.046302173,-0.5214204,-0.62414145,-0.72778356,-0.32143268,-0.022119995,0.14006333,-0.054033283,-0.53752416,-0.08907154,-0.17734505,0.14271532,-0.070188336,-0.5699741,0.38214198,0.07480528,0.4088171,-0.19354023,-0.9219256,0.1615494,0.12812836,0.058240637,-0.49411926,0.57631236,-0.2533808,0.91052467,0.14862923,0.029766629,0.011211141,-0.6979409,0.348641,-0.35806334,-0.4206774,-0.57152706,0.07641746,847 -299,0.49333584,0.028870607,-0.5150374,-0.26337707,-0.27123877,0.18153468,-0.16788621,0.2573046,0.30739257,-0.21370132,0.10601602,-0.15512963,0.004840851,0.27055538,-0.115638375,-0.7813519,0.115493745,0.11610683,-0.56781226,0.34033865,-0.608558,0.37710294,-0.07763532,0.485025,0.033004034,0.19986235,0.042999182,-0.044768404,0.14567824,0.011157012,-0.11781483,0.37866586,-0.5028354,-0.07639173,-0.07623233,-0.42326215,0.026249409,-0.43500358,-0.3457032,-0.66055554,0.4308636,-0.7866302,0.6999436,-0.003608934,-0.39705727,0.03730898,0.034208857,0.3290412,-0.2146819,0.15229225,0.20035034,-0.2309406,0.11651464,-0.057378683,-0.39961877,-0.5172641,-0.6318309,-0.050041497,-0.6106322,-0.077901125,-0.21644033,0.19377069,-0.31434727,0.1266242,-0.17455629,0.22167778,-0.39678904,0.028767021,0.33410245,-0.165288,0.22494555,-0.39410433,-0.19753298,-0.06598457,0.21429922,-0.03991908,-0.30506474,0.20405705,0.36168402,0.6281056,0.0029455603,-0.33971518,-0.18066573,-0.057000782,-0.18395182,0.6463482,-0.17941645,-0.21140727,-0.3776905,0.10470566,0.26096877,0.3170002,-0.05211516,-0.34120286,0.007910528,0.17967662,-0.25881326,0.5060908,0.49084672,-0.4630852,-0.16685957,0.36437258,0.37812474,0.18406907,-0.2446429,0.32406563,0.03636875,-0.57049817,-0.25531667,0.20212828,-0.056904204,0.61445224,-0.06870329,0.32774577,0.7434506,-0.13882929,-0.0021417935,-0.20983483,-0.014029053,-0.11674375,-0.37900335,-0.08929797,0.18521132,-0.5100949,0.09662126,-0.21909009,0.7813927,-0.0015133321,-0.86496025,0.3527152,-0.48992598,0.07963831,-0.1999125,0.5591593,0.7518724,0.19442965,0.23721617,0.91128147,-0.5380156,0.04071857,-0.032561246,-0.37863013,-0.008921814,-0.050625872,0.056133263,-0.52893007,0.1122891,0.10025048,0.10065003,0.14409153,0.3656235,-0.48141482,-0.11979631,0.050452568,0.7139184,-0.39766943,-0.09982227,0.7279829,1.0808221,0.94337004,0.01589156,1.2454158,0.39242607,-0.08830063,0.15306225,-0.26553747,-0.5747879,0.15379387,0.25007096,0.14516835,0.5263668,0.14583157,0.025218537,0.5104466,-0.20239598,-0.044535246,0.056891643,0.11709983,0.057531636,-0.031110378,-0.38407812,-0.14350456,0.10692103,0.048585616,0.07725751,0.21172749,-0.21930936,0.27534416,0.086682476,1.426702,0.054634545,0.055511378,0.019586546,0.41916215,0.24533471,-0.18839332,-0.04816353,0.4233051,0.4007484,-0.12530325,-0.5522481,0.020046715,-0.3247802,-0.2924694,-0.18439339,-0.33824062,-0.13394973,-0.116117746,-0.6483599,-0.054863382,0.028490478,-0.30944258,0.5515249,-2.791334,-0.4506105,-0.17343491,0.33290243,-0.18582827,-0.4315557,-0.27866685,-0.42043462,0.23012608,0.40578616,0.17900735,-0.67265546,0.5294333,0.29752254,-0.2477281,-0.02189248,-0.70325,-0.011095236,-0.017724684,0.3041472,-0.07882502,-0.13885787,-0.14080885,0.38692966,0.6412071,0.0926691,-0.079140075,0.18411806,0.61429876,0.00021076799,0.5571028,-0.024511762,0.6221928,-0.10926531,-0.12426147,0.2205023,-0.45364726,0.4088482,0.045714352,0.16391428,0.5260651,-0.4457367,-0.727455,-0.5430731,-0.27320722,1.0651666,-0.33044222,-0.328086,0.27413553,-0.1832451,-0.35236874,-0.033476595,0.5060855,-0.034972973,-0.1275609,-0.6607915,-0.005363091,-0.20206456,0.06629363,-0.105403915,0.07745286,-0.22217618,0.6150644,-0.14438578,0.45857292,0.2885458,0.085008666,-0.01818281,-0.39158547,-0.046057478,0.7360201,0.36515048,0.11074432,-0.2139851,-0.12775049,-0.2970256,-0.017818423,0.2461117,0.4879999,0.71178305,0.0008321126,0.18638381,0.38033766,-0.13524535,-0.0767454,-0.14146751,-0.26952592,0.039008226,0.026256824,0.62121284,0.6546975,-0.16016258,0.3796711,-0.0766907,0.05065524,-0.28815016,-0.4257309,0.38165185,0.7711961,-0.09150695,-0.29442474,0.49956074,0.3449559,-0.40402666,0.30714485,-0.5248388,-0.23514546,0.6103279,-0.06388781,-0.36579385,0.20461355,-0.39362222,0.042931534,-0.93487906,0.24940191,0.0827047,-0.5253474,-0.47593004,-0.23380008,-3.6384761,0.31341165,-0.14928511,-0.10221405,-0.07122567,-0.20930998,0.39549872,-0.41323072,-0.54034126,-0.014608222,0.013465294,0.5345014,-0.19470347,0.15503028,-0.27673626,-0.2114357,-0.25033662,0.14355749,0.11145519,0.35115308,0.020592371,-0.35125116,0.10582698,-0.43497568,-0.50429845,0.04040498,-0.51245636,-0.5396863,0.024650717,-0.49162117,-0.26966885,0.7300653,-0.34203765,-0.036888804,-0.34933674,0.017481979,-0.19804545,0.37407348,0.2161477,0.10039458,-0.031372413,0.06482811,-0.1626798,-0.4183382,0.26502576,0.037390504,0.26848406,0.3126564,-0.090585425,0.19866781,0.5066985,0.5375871,0.032006986,0.72209007,0.26082927,-0.09210316,0.30501765,-0.26220247,-0.17117333,-0.68571776,-0.4356488,-0.3134521,-0.53889835,-0.5811243,-0.186483,-0.4307726,-0.7603397,0.41463926,-0.035598412,0.23005264,-0.07280493,0.34852177,0.4657063,-0.12608644,0.06929956,0.09970665,-0.20514171,-0.41298914,-0.48309988,-0.57405865,-0.5845062,0.3337688,1.0354898,-0.14779407,-0.029616157,-0.025930671,-0.2444517,-0.03406318,0.086477965,0.25797924,0.17423268,0.3596743,-0.23990592,-0.65520644,0.33756587,-0.35038662,-0.13832477,-0.7084722,-0.06533756,0.7342318,-0.6501081,0.63646513,0.31345013,0.34029892,0.1247867,-0.58448315,-0.19353575,0.105187796,-0.255555,0.646699,0.11127653,-0.61912745,0.52886397,0.18250784,-0.021321988,-0.53441715,0.55920166,-0.008356363,-0.29630482,0.022461792,0.32759178,0.107630126,-0.048452612,0.020561423,0.1818518,-0.55316883,0.23451693,0.37816468,0.010065351,0.43275693,0.05193993,-0.063276984,-0.60512865,-0.13971591,-0.6245217,-0.18348269,0.12509184,-0.030202786,0.28214934,0.13565235,-0.049550287,0.4232658,-0.2878214,0.20365137,-0.13463216,-0.198935,0.26175848,0.5379617,0.31629544,-0.46218222,0.61759835,0.16251868,0.046979062,0.047125872,0.09217729,0.53983414,0.12148719,0.4072013,-0.20414396,-0.12891603,0.12380914,0.6732606,0.23382097,0.3132805,0.16533476,-0.113592535,0.32106704,0.18990682,0.120076574,0.0058503468,-0.27108762,-0.14794059,-0.027053483,0.2406388,0.4409432,0.10037366,0.26249173,-0.09080486,-0.30357036,0.21865048,0.1787272,-0.26852894,-1.1368717,0.25919616,0.33250982,0.67021114,0.3403339,0.01982805,0.018411461,0.30579287,-0.2958196,0.14926942,0.43400818,0.03881668,-0.30252334,0.5721692,-0.4459976,0.5692459,-0.23385814,-0.05531193,0.124166206,0.2683613,0.48024288,0.89676034,-0.22068046,0.093161605,0.10380769,-0.27028883,0.031188695,-0.3008849,0.035694115,-0.6239523,-0.19992714,0.659699,0.5121674,0.36002713,-0.36899593,-0.09172003,0.100994796,-0.10454562,-0.11494153,-0.08564864,-0.07528353,-0.15509464,-0.6029441,-0.26499757,0.5079215,-0.12277065,-0.007024753,0.06551313,-0.4068058,0.36168692,-0.05335852,0.08780269,-0.037325405,-0.70570374,-0.09981319,-0.33151785,-0.6695313,0.3749007,-0.26095426,0.28334427,0.24594419,0.047211494,-0.2540723,0.29791322,0.0073586465,0.9111205,-0.07418612,-0.1823313,-0.47655466,0.0799803,0.3921135,-0.25803712,-0.26498982,-0.37803468,0.18628503,-0.46664792,0.4408992,-0.13386866,-0.21331163,-0.1544107,-0.054078802,0.10109512,0.42835993,-0.35169253,-0.11427966,0.06528094,0.005701232,-0.342279,0.034002766,-0.37196657,0.3430656,0.058085244,-0.214212,0.014519564,-0.14585702,-0.0669839,0.2535463,0.16086738,0.32199678,0.3711519,0.043579895,-0.2599472,-0.047253434,-0.030369313,0.45295516,0.025546242,-0.16814902,-0.25252396,-0.36236593,-0.2771582,0.45279923,-0.08898373,0.23975162,0.08311772,-0.42440483,0.81833595,0.22123982,1.1014687,0.19484545,-0.2499241,-0.01749334,0.55785644,0.06026583,0.08491516,-0.3870813,0.81595427,0.51915324,-0.16059345,-0.28360155,-0.31510565,-0.14565912,0.21283184,-0.23660626,-0.21835701,-0.1352927,-0.663851,-0.1536141,0.055765565,0.18052933,0.2573861,-0.037575986,-0.029363541,0.12086827,0.04879453,0.39285952,-0.4673123,-0.19556087,0.19197513,0.22641467,0.00045597155,0.16176002,-0.36048114,0.4105315,-0.6220866,0.13534208,-0.52384925,0.07246469,-0.02008415,-0.2752355,0.19635774,-0.14547446,0.19944061,-0.2954732,-0.1776424,-0.17397125,0.61933875,0.25282294,0.23284689,0.69300187,-0.23898093,-0.19831626,0.082854815,0.43383014,1.4463822,-0.030557616,-0.052339975,0.36647862,-0.2001925,-0.59423804,0.07083787,-0.44713634,0.16364981,-0.061432347,-0.36431935,-0.31800312,0.3603085,0.08903287,-0.1286263,0.059060797,-0.5129558,-0.1713095,0.4414077,-0.20570993,-0.2877954,-0.29496226,0.19788964,0.71944934,-0.35225525,-0.3641327,0.057059485,0.29503644,-0.23563062,-0.7026982,0.20153627,-0.41410396,0.4582798,0.10275699,-0.32560167,0.028377049,0.26548776,-0.45525,0.16166799,0.44314042,-0.3713606,0.02949155,-0.3146024,-0.2620631,1.1756583,-0.116165414,0.06973644,-0.6911789,-0.45265907,-0.8742425,-0.37479874,0.12374028,0.23932716,0.0052527944,-0.496065,-0.065161444,-0.04150938,-0.191288,0.0786521,-0.28717244,0.48668778,0.10870515,0.5379101,-0.069159046,-0.90749544,-0.06948202,0.050427914,-0.51737773,-0.51389116,0.6253186,-0.13783501,0.6388051,0.08195619,0.18074553,0.12086115,-0.40026134,0.35012558,-0.45310405,-0.110787354,-0.8348592,0.057655487,849 -300,0.48677528,-0.06345556,-0.46041372,-0.17268537,-0.18817806,0.11407456,-0.20443615,0.33439273,0.15772413,-0.43991184,-0.23620605,-0.20309101,0.04979752,0.17217398,-0.21426651,-0.6285652,0.043422047,0.18886271,-0.55364203,0.60928446,-0.40951034,0.34093496,0.08798704,0.2743783,0.08460593,0.36048147,0.24426429,-0.083604015,-0.21548843,-0.2037305,-0.2597287,0.25840503,-0.34229025,0.23088703,-0.02385759,-0.25901464,0.032340683,-0.51392996,-0.34730807,-0.69667965,0.3542573,-0.8591255,0.42427924,0.074837215,-0.17435288,0.021394523,0.05083545,0.23777173,-0.27727172,0.091231905,0.19265383,-0.15516132,-0.031225158,-0.24383575,-0.22936964,-0.40437824,-0.52338505,0.07409045,-0.3642181,-0.32516995,-0.23637995,0.12837046,-0.35011387,-0.081161626,-0.07704765,0.48394045,-0.42668897,-0.010187407,0.25130185,-0.18326566,0.1630601,-0.53892773,-0.09084048,-0.08208933,0.42179316,-0.21406865,-0.2044508,0.21107957,0.22992517,0.43675557,0.105156064,-0.12091891,-0.18096685,-0.10735747,0.23739965,0.4076765,-0.20007183,-0.6037119,-0.10114026,0.017882291,0.046284746,0.27527887,0.20570177,-0.2934572,-0.014364868,0.0743465,-0.20927395,0.3053112,0.44066957,-0.3216977,-0.17696618,0.31977603,0.5425538,-0.03285209,-0.04129667,0.07122557,0.015465775,-0.47846,-0.29065514,0.07127042,-0.16653575,0.46135813,-0.23808956,0.33252227,0.7343843,-0.10872241,0.11910984,-0.015359493,-0.002237626,-0.2993125,-0.14158015,-0.2233958,0.16117379,-0.55417854,0.11689635,-0.16120355,0.88642937,0.2655001,-0.72525024,0.40021095,-0.5592058,0.19877847,-0.15900968,0.41806877,0.59952635,0.31197494,0.29994538,0.6535844,-0.53181344,0.09014389,-0.12218589,-0.61214334,-0.011355376,-0.19597879,-0.03650565,-0.5118445,0.1096439,-0.06825289,-0.018529622,0.09890556,0.3757216,-0.51936424,-0.065057114,0.081513554,0.8530865,-0.31923512,-0.026873805,0.7526728,0.87149835,0.87976545,0.029321222,1.2019441,0.21707875,-0.35958067,0.13436921,-0.22360341,-0.686658,0.38958085,0.5626154,-0.27217472,0.17888395,-0.053367782,0.07422112,0.37272802,-0.5322926,0.1395709,-0.3451076,-0.064234875,-0.015084698,-0.23072913,-0.46517482,-0.1404477,-0.019745596,0.09655924,0.26108843,0.2563501,-0.057930037,0.42110506,0.018370062,1.7374268,-0.006216545,0.13321778,0.15001543,0.45552328,0.3712064,-0.12739928,-0.037863288,0.35372135,0.4772032,0.17687607,-0.54248154,0.00018807252,-0.19613156,-0.4321395,-0.12343979,-0.35050088,0.07635641,0.049799208,-0.32422715,-0.18478878,-0.19052456,-0.17582992,0.35864666,-2.541066,-0.2119361,-0.106397845,0.23692746,-0.21019681,-0.3677086,-0.08390829,-0.4715161,0.47834638,0.26713875,0.46811607,-0.5657566,0.31667554,0.38586748,-0.57440865,-0.02752573,-0.60484827,-0.08266681,-0.14281315,0.38460293,0.12641917,-0.17738564,-0.06771027,0.10525974,0.45038968,0.050749913,-0.016867701,0.29739258,0.41132864,0.15005025,0.5336997,0.082604565,0.590943,-0.23140259,-0.27396536,0.31275186,-0.17092578,0.170741,-0.07660203,-0.0022950668,0.4474704,-0.561243,-0.84197897,-0.74429387,-0.10451517,1.1653118,-0.14399117,-0.28447857,0.2982261,-0.3237542,-0.38628095,0.01620401,0.42193386,-0.15256055,-0.13711266,-0.815108,0.12236679,0.07457815,0.09252816,0.121236295,-0.15664896,-0.5151128,0.66416895,-0.057762824,0.5255505,0.38837257,0.05887116,-0.19851622,-0.39139673,0.13025875,1.0374824,0.40605128,0.1832025,-0.21984178,-0.15651041,-0.40189654,-0.087145425,0.056649048,0.5534672,0.6746625,0.0020168582,0.009324161,0.3496118,0.013790691,0.16959527,-0.2491031,-0.26650238,-0.12186952,-0.13863608,0.56038827,0.355639,-0.1914306,0.40188172,-0.045656506,0.41432124,-0.16495852,-0.44765082,0.55033803,1.2522732,-0.14288126,-0.27647611,0.5411254,0.4011983,-0.27290627,0.43381646,-0.4963568,-0.21499868,0.35138556,-0.19929554,-0.43018773,0.2668831,-0.2706642,0.32668743,-0.87001735,0.20209453,-0.15813272,-0.42848557,-0.6140672,-0.14661217,-3.340074,0.3477062,-0.34499532,-0.13091925,-0.10758254,-0.05419886,0.1774892,-0.6264856,-0.5298384,0.19929792,0.00040343005,0.6441008,-0.13499545,0.20097932,-0.1264929,-0.2653725,-0.3918939,0.01470451,-0.042874236,0.35040963,-0.032927107,-0.41929725,0.030203843,-0.143264,-0.4093799,0.07578694,-0.61059475,-0.38685167,-0.03007602,-0.4766633,-0.3793557,0.5909496,-0.23517199,0.1266418,-0.16652164,0.05395903,-0.18863358,0.28185704,0.052432355,0.21083102,-0.028920677,-0.0448449,0.054960553,-0.18622568,0.36449844,-0.040513862,0.33536652,0.08822925,-0.1290674,0.18092896,0.47196355,0.60994136,-0.1129188,0.76413864,0.49245507,-0.06616213,0.20803764,-0.3641258,-0.35345787,-0.49322647,-0.25803944,0.042814493,-0.46430582,-0.5006761,-0.034564216,-0.40500987,-0.69057006,0.42646268,0.15384038,0.088829786,0.038897526,0.3349713,0.478486,-0.160847,-0.098180726,0.049006145,-0.23157805,-0.54895324,-0.09089025,-0.55715144,-0.24861653,0.05257704,0.7584512,-0.19978319,0.03170817,0.023636645,-0.304544,0.019280616,0.04876473,0.022433167,0.21167536,0.48027703,-0.20868793,-0.7557332,0.5181414,-0.09723541,-0.21832286,-0.44177416,0.14878578,0.5456794,-0.64268297,0.661454,0.29295427,0.037426364,-0.118485995,-0.47080278,-0.20606723,0.03833815,-0.23093963,0.4596772,0.24804874,-0.687573,0.4408164,0.47556007,-0.08771423,-0.66714853,0.49414787,0.00073926174,-0.3931865,0.032921486,0.26479378,0.102201924,-0.04729266,-0.18396142,0.16804227,-0.41368544,0.30630997,0.19279103,-0.028913014,0.13913618,-0.24351099,-0.20004317,-0.74536306,-0.08048447,-0.52052426,-0.29555115,0.27308702,0.180432,-0.009461054,0.15585098,-0.06615954,0.42235747,-0.23064457,0.13081391,-0.06535657,-0.18079026,0.15840666,0.32184324,0.46229115,-0.55670494,0.5972169,-0.06198889,-0.062384848,-0.07192055,0.1867809,0.53566706,0.11924383,0.42638868,-0.13608353,-0.1718412,0.44938385,0.7093192,0.14737524,0.39324218,0.055224366,-0.0525218,0.17220964,0.15456274,0.14919107,0.055683102,-0.57226294,-0.035662785,-0.08935722,0.1322821,0.41132602,0.095047936,0.255167,-0.12369546,-0.45159414,0.042314768,0.30827948,0.035485145,-1.1947764,0.42998892,0.31196985,0.8170602,0.3935613,-0.044416178,-0.09273453,0.67267644,-0.26843557,0.18793239,0.24282615,-0.13018897,-0.5582059,0.44580314,-0.5579408,0.26365945,0.041082732,-0.09030577,-0.056639757,-0.084296055,0.2669477,0.7363946,-0.14282465,0.08182834,-0.07565998,-0.2755162,0.2319972,-0.47324327,-0.0361626,-0.49451128,-0.23047218,0.5489991,0.48956713,0.22166958,-0.12997654,0.0017866492,0.098653905,-0.036735713,0.09409796,0.17773595,0.14210536,0.11455908,-0.80428517,-0.28983638,0.53928083,0.038719576,0.12537439,-0.049666572,-0.19775377,0.35803956,-0.1634642,0.047230568,-0.14884076,-0.6556117,0.06491744,-0.28060904,-0.40452066,0.4943093,-0.011101389,0.2430122,0.30650786,0.116046175,-0.14901492,0.32882363,-0.063376196,0.6698538,-0.015815897,-0.21077958,-0.4322175,0.21576735,0.08798441,-0.16150062,-0.110623345,-0.35212022,0.0808159,-0.5256355,0.5115307,0.07635639,-0.38597667,0.077948086,-0.0699388,-0.05149827,0.6114169,-0.2832747,-0.10221154,-0.1090728,-0.052162185,-0.25395954,-0.25964972,-0.13075139,0.1929098,0.21705653,0.10768581,-0.21553339,-0.099531375,-0.2864547,0.5286054,0.05911347,0.39794186,0.2419962,-0.06260959,-0.2531754,-0.24290253,0.24933563,0.37561283,-0.048259456,-0.09662446,-0.24408069,-0.3752066,-0.3910825,0.047284428,-0.0775274,0.3096492,0.069005825,-0.23115973,0.63740605,0.05347435,1.1069324,-0.017499505,-0.2711858,0.0097622555,0.55305314,0.016627865,-0.048727512,-0.3122985,0.9040947,0.52397037,-0.092258066,-0.11657736,-0.43504888,0.097815715,0.064298645,-0.20168298,-0.1234345,0.05089278,-0.6271598,-0.34851295,0.19580859,0.29554632,0.2620065,0.053875167,0.018524608,0.19358449,0.03234973,0.28145626,-0.3368265,-0.39534596,0.21033539,0.25860965,-0.035029802,0.011067399,-0.5861115,0.47803867,-0.45928496,0.09989568,-0.29824108,0.23263218,-0.19065814,-0.21040587,0.19577041,-0.15871416,0.39606997,-0.32481894,-0.43021616,-0.18128204,0.47274932,0.13962875,0.12938349,0.5622768,-0.2542508,0.18158682,0.109287344,0.5064414,1.0039546,-0.03532452,-0.057030328,0.39506516,-0.3159632,-0.5870637,0.26416096,-0.21955542,0.064033955,0.114210844,-0.18150386,-0.50693333,0.15869655,0.27208695,0.06953755,-0.019599888,-0.6088058,-0.3258047,0.407432,-0.21779206,-0.18043016,-0.34175408,0.18412605,0.63071847,-0.36489245,-0.24629949,0.056416217,0.1325455,-0.12518242,-0.63048685,-0.060071047,-0.3173279,0.3129992,0.15470928,-0.17782208,-0.11631829,0.040911,-0.35983017,0.24188247,0.14880733,-0.37098587,0.13103537,-0.33647072,-0.21959648,0.9286017,-0.24426644,0.036577232,-0.41799122,-0.35258102,-0.7844826,-0.3623013,0.5128575,-0.0006894047,0.11971168,-0.7166769,0.032882195,0.0030480544,0.012817621,0.008606155,-0.36956042,0.4340013,0.057943378,0.561935,-0.04336964,-0.78404003,0.17125791,0.009018882,-0.23618962,-0.60126436,0.5957416,0.0496524,0.7975441,-0.06843264,0.054135937,0.37327442,-0.5206583,-0.077891044,-0.26728466,-0.17792124,-0.71318775,-0.009322175,851 -301,0.50057536,-0.1779395,-0.3641876,-0.032079455,-0.0876007,0.2208223,-0.10320978,0.56549436,0.25918826,-0.45198205,-0.04198456,-0.16926222,0.05614864,0.16666514,-0.057855774,-0.30517304,-0.078686796,0.09808556,-0.34413105,0.42742664,-0.45013285,0.29274097,-0.1485823,0.39057893,0.2432439,0.22170548,-0.04497256,-0.028128266,-0.31957734,-0.08531357,-0.0173294,0.42734247,-0.41615242,0.06005339,-0.168405,-0.25668365,-0.15026368,-0.5058814,-0.35108012,-0.5808924,0.30442658,-0.80363506,0.442826,0.067493066,-0.19253445,0.28449494,-0.07203413,0.219726,-0.13583957,0.045179587,0.17518093,-0.09722463,0.11639048,-0.27887422,-0.22842613,-0.34881675,-0.5839643,0.02388477,-0.4316444,-0.24476574,-0.19852005,0.07087191,-0.22719269,-0.16931157,-0.0034920932,0.42136344,-0.4615041,0.11885877,0.0033458709,-0.1300785,0.26481727,-0.5509665,-0.25601944,-0.10382846,0.16908105,-0.35255146,-0.24783462,0.1877487,0.36495653,0.4255984,-0.19853243,-0.00838207,-0.44033566,0.044365097,0.1753582,0.5330016,-0.16968141,-0.46578243,-0.11211596,-0.11268813,0.1156637,0.19916874,0.2454908,-0.28220168,-0.09079606,0.13728848,-0.1775993,0.34573632,0.45495024,-0.23381361,-0.33393508,0.3686804,0.43790907,0.10897651,-0.20056461,-0.021828305,0.13257667,-0.42503306,-0.07343161,0.19535713,-0.14844047,0.43865883,-0.05418419,0.22235098,0.7212357,-0.24666366,0.18121262,0.069090284,0.08183015,-0.008556604,-0.32778344,-0.16103938,0.13705191,-0.30243346,0.040842507,-0.1286747,0.6349447,0.11402109,-0.7633524,0.3648309,-0.5652443,-0.011869232,-0.06100222,0.47532475,0.6771229,0.34357098,0.16943502,0.57662416,-0.49496073,0.041325286,-0.12470471,-0.31190726,0.10370897,-0.15742975,-0.039737273,-0.57445884,-0.12386885,0.07892404,-0.15533394,0.17503858,0.4692183,-0.517356,-0.08052293,0.14924075,0.7264658,-0.34372848,-0.09799065,0.6478193,1.0060073,0.7955092,0.0010948499,1.1147219,0.16732137,-0.24456267,0.2945102,-0.4756433,-0.63956106,0.26816404,0.21314116,-0.5396149,0.22784847,0.18071245,0.051956084,0.25016788,-0.31920236,0.19409145,0.00037088591,0.08438513,0.16536392,-0.123418316,-0.35478508,-0.2360032,-0.111653425,0.017545613,0.22064358,0.1844057,-0.38650227,0.28831813,0.036083363,1.8204712,-0.07019744,0.07769622,-0.011564398,0.53440773,0.22670634,-0.169772,-0.06945111,0.37804216,0.35913235,0.16631751,-0.48946258,0.23946206,-0.056099303,-0.55984837,-0.14599688,-0.30146867,-0.041195568,-0.10865311,-0.4773586,-0.023037039,-0.028939685,-0.43023592,0.5021763,-2.9525898,-0.12098031,0.044562623,0.43842617,-0.2482086,-0.45628685,-0.20279603,-0.32207882,0.30074167,0.24435012,0.32480913,-0.73864615,0.26031962,0.38663957,-0.38336402,-0.18583317,-0.5676103,-0.11594965,-0.04340237,0.30253828,0.036113914,0.1271884,0.14279753,0.052503094,0.40542045,-0.15989177,0.08117518,0.16792749,0.39726225,0.047057103,0.35790044,-0.011752844,0.41733652,-0.12768003,-0.3041935,0.43161544,-0.42420012,0.13688973,0.054289237,0.11686046,0.26660398,-0.3346298,-0.86378396,-0.57782364,-0.27857798,0.8869494,-0.06243239,-0.42684233,0.14265354,-0.33370543,-0.43867296,-0.15619056,0.6146762,-0.063020356,-0.04751269,-0.81476444,-0.019854447,-0.118756,0.2442119,-0.024227906,0.08402289,-0.4493208,0.49035132,0.052872743,0.54148805,0.2815549,0.27322847,-0.43318143,-0.40027168,0.09139096,1.0635521,0.20753692,0.21604483,-0.19746889,-0.19828129,-0.35030904,-0.025008619,0.13219851,0.46189806,0.6049297,-0.0075136027,0.17690264,0.21978259,-0.04281891,-0.010890861,-0.13700853,-0.15779518,-0.035590596,-0.015109499,0.4476197,0.63180155,-0.20464253,0.5733262,-0.03167433,0.26030725,-0.28010413,-0.3734475,0.47290435,0.90589267,-0.03601337,-0.14266011,0.5092173,0.44153678,-0.37692577,0.3064032,-0.54897404,-0.18330275,0.46471703,-0.3196038,-0.38283703,0.2866907,-0.27642593,0.0835754,-0.7517128,0.26179802,-0.12093765,-0.42704624,-0.5715283,-0.12452714,-2.996372,-0.0116881095,-0.083351456,-0.3040287,-0.047253035,-0.13909031,0.2403086,-0.561467,-0.4140981,0.11701026,0.08009013,0.6661524,-0.01681473,0.14088123,-0.35151207,-0.18486087,-0.12290866,0.2317751,0.13264796,0.42422917,-0.017564505,-0.44030088,-0.036496248,-0.21289721,-0.42041972,0.03868746,-0.5515349,-0.53914887,0.042327296,-0.4973642,-0.27774265,0.673053,-0.4724393,-0.09199823,-0.21733424,-0.006709075,-0.06601805,0.43339217,0.2393257,0.032741666,0.11039801,0.011644451,0.16247691,-0.28444937,0.32795128,0.13357893,0.2258949,0.53000945,-0.19189262,0.23676684,0.4936856,0.52769876,-0.15468355,0.8415652,0.5235395,-0.09523079,0.25650123,-0.33660218,-0.17847419,-0.40294603,-0.33731404,-0.04554574,-0.43695346,-0.5284431,-0.16105871,-0.3257586,-0.73035604,0.4944187,-0.08886981,0.17549331,0.00048740706,0.2982321,0.3960381,-0.23903689,-0.08782193,-0.08445378,-0.07766083,-0.37071314,-0.34563407,-0.47427088,-0.5523115,0.2116655,0.8951508,-0.05213665,-0.06512467,0.13871177,-0.25935373,-0.17399031,0.0944755,0.041865803,0.16509075,0.33286604,-0.043409534,-0.5337851,0.514475,-0.14510399,-0.2693238,-0.6300519,0.084908165,0.53549063,-0.55381984,0.4729296,0.2350626,0.029257825,-0.07625663,-0.41095275,-0.13392392,-0.036243223,-0.26720157,0.37657887,0.20859297,-0.79204756,0.33989456,0.40299207,-0.18246607,-0.5729734,0.613932,-0.0072410624,-0.23093277,-0.15190563,0.30346832,0.09364649,0.07259267,-0.1613533,0.3676166,-0.48317176,0.24919622,0.254229,-0.080578186,0.44628105,-0.19375253,-0.011666664,-0.61838907,0.09421039,-0.36714035,-0.3783561,0.22117114,0.19220413,0.3081295,0.3726368,0.037363324,0.2965274,-0.39875886,0.04186427,0.025864935,-0.14742258,0.1471764,0.32803452,0.58467585,-0.30280337,0.39962476,-0.045134235,-0.15665512,0.1708772,0.03778986,0.54632205,0.041165058,0.22948305,0.046107598,-0.30380994,0.28143308,0.78163135,0.2284001,0.41749892,-0.08138098,-0.30333537,0.22950938,0.0902662,0.15356036,0.024330476,-0.47425807,0.07670217,-0.093069,0.29166266,0.33870846,0.08940576,0.23419978,-0.1668505,-0.31507123,0.099993825,0.2757554,0.07565243,-1.1102054,0.2178949,0.20710783,0.86115295,0.3477146,0.057859052,0.1624785,0.5260789,-0.17678595,0.17765898,0.3839316,-0.09139981,-0.5489495,0.4097423,-0.6929955,0.5086927,-0.007240995,-0.038322337,0.103709236,-0.16800766,0.40648803,0.7346409,-0.111773744,0.13375045,0.17329894,-0.3236836,0.06485734,-0.4144055,0.21146229,-0.5051081,-0.11443688,0.7029181,0.5783503,0.26623568,-0.092958,0.09257483,0.09581016,-0.056583975,0.06157782,0.082230024,0.14950673,0.05503818,-0.72940356,-0.20495602,0.5354713,-0.08968623,0.0841011,0.05214229,-0.16383317,0.247381,-0.15343386,-0.10843559,-0.018965002,-0.55443156,-0.033095207,-0.40664163,-0.44389778,0.5033571,-0.13969837,0.19693515,0.097238526,0.054462623,-0.32803118,0.6038812,0.40703604,0.7757618,0.0066709123,-0.017818714,-0.49698824,0.24122629,0.26456597,-0.1551577,-0.2411547,-0.18187538,0.07577126,-0.6126497,0.39433855,-0.10809632,-0.32469743,-0.039135836,-0.07788856,0.13982671,0.5859756,-0.024920551,-0.19758897,0.08231985,-0.12764332,-0.27578297,-0.030237682,-0.12290124,0.35736355,0.21307291,-0.18668963,-0.1325725,-0.11234462,-0.18651359,0.21682747,0.07105329,0.4725933,0.40316644,0.056455,-0.22407694,-0.091519915,0.2024935,0.5084046,-0.025295012,-0.041214,-0.23750132,-0.4340923,-0.46244308,0.123567395,-0.17891368,0.32085854,0.17379402,-0.22371012,0.6510704,-0.06270027,1.1429011,0.12188562,-0.4182272,0.19037032,0.3387805,-0.039441034,-0.022987366,-0.4692156,0.9166105,0.47384897,-0.009624271,-0.12681353,-0.14233045,-0.09027414,0.1564234,-0.25496244,-0.12750107,-0.0510767,-0.888582,-0.24091016,0.29468742,0.13027994,0.12278352,-0.09684428,0.09070969,0.2772555,0.0011292577,0.08840792,-0.48192015,-0.020139417,0.31625602,0.46366635,-0.08667387,0.13929006,-0.43417302,0.46689084,-0.42275515,-0.046059486,-0.27975196,0.22050944,-0.16244635,-0.22845195,0.23053494,0.031962626,0.3831482,-0.20190239,-0.37692454,-0.34522107,0.45809457,-0.007284403,0.17111781,0.43372294,-0.16987896,0.032601044,-0.12288224,0.38159016,1.0997943,-0.27465945,-0.066357,0.45179325,-0.34734884,-0.6043311,0.31219637,-0.3223973,0.33756065,-0.03924911,-0.18850361,-0.3841527,0.2787709,0.11311435,0.120400876,-0.08964431,-0.36333308,-0.107308306,0.26678616,-0.30211815,-0.23351765,-0.31021774,0.044117555,0.5818278,-0.31091017,-0.3458513,0.06211877,0.45609188,-0.29543036,-0.45987457,0.021520229,-0.35963136,0.24590717,0.038809877,-0.31082937,-0.15996884,-0.036566958,-0.35542354,0.11310242,0.27163494,-0.40762976,0.06818436,-0.27904573,-0.022229493,0.96405756,-0.06262677,0.078210756,-0.6055715,-0.4979712,-0.9136812,-0.4012241,0.27475178,0.11886649,-0.096430376,-0.5026561,0.051729176,-0.10327758,-0.14216799,-0.09425936,-0.3985539,0.53582174,0.13231811,0.39681426,-0.24050976,-0.79077035,-0.054572053,0.21698986,-0.26631048,-0.72357863,0.5352436,-0.02037193,0.8885732,0.016248163,0.07084828,0.51331955,-0.49081117,-0.122034654,-0.2893356,-0.12430645,-0.7471775,0.09150651,852 -302,0.45254552,-0.18693565,-0.45254663,-0.029503938,-0.23849832,0.10684161,-0.15500559,0.23380238,0.19069824,-0.18120833,-0.027435783,-0.30051464,-0.123053804,0.425962,-0.15392627,-0.8316274,0.09696908,0.08634396,-0.6344783,0.5669347,-0.4997763,0.35580114,0.02702213,0.2632131,0.23411223,0.23011777,0.05046714,-0.10622153,-0.10138048,-0.10709575,-0.060555633,-0.03480893,-0.30491087,0.1335023,-0.061364617,-0.22289668,0.08961495,-0.3935522,-0.64121634,-0.6923039,0.4288096,-0.63394994,0.44532663,0.09679421,-0.35249397,0.22650413,0.0055679684,0.36886832,-0.19087152,0.025358481,0.2380269,-0.041193254,0.0061059236,-0.19456568,-0.35653725,-0.48643672,-0.51523525,0.011867809,-0.56517875,-0.24775495,-0.15643731,0.19133803,-0.3015122,-0.056665998,-0.04606223,0.4342446,-0.36500606,0.0121042095,0.13414034,-0.16255757,0.1725557,-0.7273553,-0.03169621,-0.035264887,0.03935057,-0.0391357,-0.05432999,0.32048672,0.07882503,0.5875539,-0.13828373,-0.17574237,-0.20011069,-0.07499714,0.034998186,0.60944444,-0.16039209,-0.3637194,-0.25556743,0.10383258,0.1626949,-0.047571875,0.03649598,-0.44197357,0.05746603,-0.0063744825,-0.19312094,0.52797765,0.57680714,-0.34582663,-0.12118732,0.4634015,0.4390721,0.2418721,-0.15409732,-0.050094463,0.02616017,-0.39158016,-0.08344888,0.021821562,-0.21569236,0.47882524,-0.051392507,0.20161505,0.62376726,-0.1339055,0.21603785,0.040556364,0.054475542,0.052691367,-0.1670844,-0.1899196,0.083338656,-0.6506034,-0.01674867,-0.11809838,0.81322885,0.14029646,-0.7031425,0.44749567,-0.4590611,0.15441275,-0.07835509,0.51939446,0.67891216,0.25333682,0.12683243,0.6130412,-0.46884155,0.13025379,-0.1278849,-0.30786416,0.06990299,-0.033749588,-0.013099208,-0.49816865,-0.14781901,-0.14918788,-0.20146377,-0.110349864,0.40404025,-0.49205172,-0.116775505,0.10741865,0.87247974,-0.28762084,0.07599206,0.5624302,1.1204349,1.000906,-0.15134208,1.2076898,0.41384232,-0.25264192,0.18644872,-0.4495188,-0.53697056,0.1963639,0.19064164,-0.10348531,0.33140355,0.008707987,-0.1977012,0.38619265,-0.25698572,0.07168942,-0.26436365,0.22958946,0.058307048,0.1699623,-0.45055544,-0.17065118,-0.08813106,0.06634081,0.15583625,0.23124482,-0.43259412,0.10901441,-0.052285466,1.3387617,-0.17151216,0.06358584,0.14129482,0.40739653,0.17473766,-0.08775855,-0.07856147,0.30988905,0.29507986,-0.018290233,-0.6588414,0.12666246,-0.3846889,-0.2699517,-0.2375068,-0.21127152,0.046073318,0.028185256,-0.54827887,-0.015038872,0.015243749,-0.29117623,0.3548582,-2.538549,-0.30502707,-0.14913172,0.33396232,-0.29024023,-0.29912046,-0.041912794,-0.41767704,0.22949126,0.23997803,0.4005038,-0.57511955,0.46069056,0.5443067,-0.50388026,-0.086311296,-0.5533711,-0.04689985,-0.04404622,0.4889157,-0.07978383,-0.05309051,0.036267605,0.17951289,0.4187683,-0.07889153,0.02507356,0.13512401,0.41375935,0.17061685,0.2887181,0.034865145,0.51063615,-0.17414893,-0.07761846,0.38461724,-0.22017686,0.23137014,-0.13970785,0.19448961,0.40649846,-0.28207913,-0.72959876,-0.45605972,-0.2751361,1.123407,-0.120757736,-0.315054,0.2711059,-0.07751121,-0.28584358,-0.051081996,0.34207964,-0.16081892,-0.15790643,-0.7250582,0.078150764,-0.105064504,0.11989885,0.06311809,0.03293346,-0.1407985,0.62815547,-0.061191894,0.26719385,0.25162306,0.30093822,-0.2103237,-0.5146957,0.032730047,0.9426105,0.458865,0.11294599,-0.13782705,-0.053066406,-0.23158933,-0.122309715,0.047863446,0.4713316,0.7658733,0.016527604,-0.040758602,0.25518674,-0.051161908,0.0010240813,-0.09545929,-0.47114745,0.025818646,0.060357157,0.6233955,0.51461416,-0.17573373,0.5026808,-0.059738897,0.18873902,-0.14803734,-0.44446963,0.44742167,1.1389848,-0.19435722,-0.21366324,0.423068,0.35646975,-0.3879704,0.3697633,-0.7081672,-0.3499346,0.42188033,-0.23440641,-0.41102168,0.2993864,-0.27783176,0.13769008,-0.76152194,0.48204482,-0.20226263,-0.38796246,-0.5972392,-0.19244671,-3.0895772,0.28630385,-0.40033013,-0.09848271,0.05147912,0.14707316,0.346535,-0.54734695,-0.32299617,0.07839187,0.074009486,0.5551411,-0.03730248,0.19078757,-0.2826079,-0.2509379,-0.2874656,0.16539474,0.06301758,0.25376338,-0.01888814,-0.38464838,0.12226049,-0.19743614,-0.2551325,0.06222249,-0.6014101,-0.39982802,-0.20044574,-0.57159317,-0.15925822,0.6420352,-0.11425196,0.036174655,-0.24709912,0.09738564,-0.07245882,0.3229366,0.1423124,0.11901127,0.0014089068,-0.10524474,-0.029040666,-0.4214309,0.19884841,0.19237147,0.20058684,0.36594123,0.044718243,0.08760479,0.491495,0.51359516,0.010456066,0.7270816,0.38206652,-0.22493592,0.16541965,-0.22711784,-0.05712471,-0.38918933,-0.37469503,-0.11902856,-0.2856103,-0.49210018,-0.027445536,-0.35653916,-0.6610185,0.36579373,-0.05964059,0.23004942,-0.049394675,0.20898345,0.552034,-0.088264026,-0.023061363,-0.0011659622,-0.070556745,-0.45821908,-0.33824152,-0.6814431,-0.41095278,0.2439506,1.0107775,-0.16497438,-0.122212715,-0.030112863,-0.16466519,-0.09894987,-0.07717737,0.05109055,0.10047796,0.26529625,-0.11875595,-0.7517328,0.25605145,-0.20435448,-0.01976343,-0.53204286,0.116557755,0.81243783,-0.46061376,0.45325273,0.30552903,0.1645192,-0.08445721,-0.4739362,-0.019724805,0.26817894,-0.17519578,0.40993232,0.05855579,-0.59466285,0.45134562,0.31118125,-0.3862548,-0.7235864,0.4535986,0.11967537,-0.39685443,-0.12387432,0.4599067,0.01703916,0.029669015,-0.19743657,0.24587458,-0.36759052,0.16909344,0.23701486,-0.08376589,0.29248756,-0.19916473,-0.23091806,-0.5789945,-0.02100556,-0.35521296,-0.31408826,0.1875503,-0.0022565683,0.27163425,0.22464132,0.09915401,0.4581719,-0.16547722,0.080990344,-0.038163647,-0.25982898,0.39184174,0.46765748,0.46811944,-0.36507437,0.52176344,-0.11186188,-0.10244525,0.15403691,0.116971515,0.48209828,0.13425355,0.33464807,0.062170934,-0.11248841,0.2996841,0.8526331,0.13604695,0.5067589,0.21101539,-0.20651771,0.14294161,0.08430954,-0.03127385,-0.030061336,-0.4182634,-0.23650716,0.1397688,0.31434786,0.4903979,0.06536952,0.28498065,-0.2365486,-0.44086236,0.06904822,0.18658939,0.033345807,-1.0491091,0.25539634,0.115044385,0.66249645,0.30225736,0.044221774,-0.0271046,0.63826007,-0.01305263,0.07170785,0.2755776,-0.06807125,-0.49011666,0.423118,-0.4917155,0.33948287,-0.06651558,0.051480327,0.01948673,0.042807285,0.31911424,0.69416994,-0.19221324,-0.09358528,-0.057331014,-0.49667606,0.01581167,-0.29316777,0.2295476,-0.45102605,-0.42211863,0.52157545,0.49442163,0.034973644,-0.13991079,-0.02003318,0.106681585,-0.1014864,0.2038043,0.053224605,-0.00015678405,-0.048398316,-0.7729158,-0.2673886,0.4726499,0.027773228,0.09092539,-0.07824952,0.12594546,0.1979067,-0.14902616,-0.040357348,0.074969515,-0.6768199,4.118681e-06,-0.21536238,-0.4495717,0.3605756,-0.20569785,0.10173566,0.13167943,0.04927033,-0.46161366,0.36003938,0.14575009,0.74224925,-0.099594705,-0.12065744,-0.43070713,0.046488382,0.13788481,-0.1637076,-0.16426715,-0.35235798,0.19878295,-0.7723629,0.538883,-0.24377231,-0.08226062,0.035260875,-0.22977604,0.04748256,0.6359216,-0.28337437,-0.20652333,-0.13276173,-0.12341698,-0.41135797,-0.13124737,-0.042665474,0.039183505,0.32205066,-0.14740205,-0.1667256,-0.20012274,-0.16758709,0.4532039,0.11275788,0.46238774,0.51042765,0.21178222,-0.3521866,-0.2004346,0.2875904,0.43669993,0.008336087,0.0006097585,-0.33037072,-0.35264224,-0.33131662,0.21837376,-0.13726787,0.21971032,0.15417913,-0.3793748,0.8194723,0.13329715,1.157995,0.016240379,-0.2040513,0.016778532,0.45197445,0.0008740425,-0.030595759,-0.30956897,0.91735816,0.66610426,0.04374096,-0.20242088,-0.4624113,-0.1483443,0.20442696,-0.27213457,-0.05171337,-0.00830282,-0.5293482,-0.31371766,0.28336823,0.36926398,-0.014260014,-0.11564215,0.096585065,0.10984368,0.13588126,0.38800022,-0.58822256,-0.09221865,0.26528332,0.3199084,0.023185443,0.32523346,-0.47904444,0.40761954,-0.54754865,0.14130303,-0.2854192,0.057888854,-0.032789227,-0.17172946,0.20253135,0.07163832,0.37819836,-0.45435074,-0.3400599,-0.34228393,0.4865295,0.17521136,0.08021502,0.63244545,-0.19189858,0.038050603,0.09217159,0.6610435,1.1153785,-0.20930977,0.0032360156,0.2592909,-0.2276747,-0.75669795,0.23177657,-0.35857764,-0.011947608,-0.15781473,-0.23738183,-0.51729244,0.3928235,0.12474416,-0.05112653,-0.06089425,-0.6019675,-0.123451166,0.29043534,-0.13106982,-0.2657868,-0.20808966,0.18046986,0.5672502,-0.21140145,-0.18951966,-0.029938417,0.39763063,-0.26404002,-0.6402055,-0.0044539175,-0.419543,0.33421478,0.17190494,-0.11071076,0.043172013,0.03833847,-0.42722124,0.11608265,0.24030909,-0.41749662,-0.01052442,-0.04546793,-0.054335993,0.62387156,-0.091110125,-0.076292366,-0.71033204,-0.52995056,-0.8572683,-0.5364411,0.35841694,0.19196798,0.057704028,-0.6139717,-0.12660514,-0.13329794,0.04277458,0.027101906,-0.45161435,0.28933567,0.11559992,0.49586546,-0.23531073,-0.7539308,-0.018179102,0.19720906,-0.33232555,-0.6688101,0.4542714,-0.053040553,0.86041933,0.009533477,0.07294698,0.18991981,-0.41395956,0.030226143,-0.3457351,-0.32491022,-0.7371412,0.15337652,854 -303,0.48856574,-0.12861958,-0.4809274,-0.29935357,-0.3469301,0.07614346,-0.024981173,0.37619033,0.30824515,-0.069881655,0.015600121,-0.016395878,-0.066761844,0.33930746,-0.103694946,-0.7685868,-0.013124879,0.19570097,-0.72581726,0.5016242,-0.48323682,0.22029641,0.020521877,0.45913228,-0.009295068,0.15393749,0.091037326,-0.0506379,0.24573769,0.050051816,-0.16645911,0.39143255,-0.56358474,0.23044325,-0.015101238,-0.2887376,-0.053804856,-0.45092723,-0.2553873,-0.7450154,0.22482869,-0.4736505,0.488339,-0.009413779,-0.44371846,0.07614906,-0.014777003,0.18490951,-0.50613135,-0.10394599,0.22551225,-0.15698113,-0.05920696,0.0075955074,-0.0863795,-0.5010034,-0.56321037,0.04106462,-0.5599031,0.065188244,-0.15252519,0.2587823,-0.3583455,-0.033025615,-0.24888496,0.5436161,-0.29159883,0.11237972,0.33574572,-0.16069207,0.057178833,-0.47461516,-0.031581126,-0.19702172,0.13042277,0.18983725,-0.4718753,0.28661606,0.29164273,0.56720346,0.16495389,-0.3847956,-0.10515107,-0.0879531,-0.1274448,0.43908864,-0.07047791,-0.25771588,-0.3405856,0.013892661,0.16438468,0.14313276,-0.020029431,-0.39425746,-0.027392868,0.036668744,-0.20826192,0.3830348,0.45198673,-0.3979465,-0.24621437,0.37801597,0.41604844,0.1995991,-0.14152808,0.08842978,-0.0054940786,-0.49717873,-0.2528706,0.18397169,-0.24741171,0.5202063,-0.23832074,0.1311616,0.79778576,0.03282458,-0.16918868,-0.04345095,-0.04403688,-0.15077254,-0.44364482,-0.22076963,0.21469606,-0.4412859,0.014441864,-0.2750418,0.8091522,0.11166259,-0.794301,0.33271018,-0.5152908,0.14726502,-0.17503242,0.62227046,0.94235015,0.38968435,0.27276766,0.795969,-0.42746708,0.11065611,-0.03607944,-0.3706319,0.08742653,0.023676623,-0.023156779,-0.58571905,0.055062428,-0.09160206,0.03089809,0.0011031429,0.24744318,-0.48517466,-0.19070068,0.02365485,0.49494407,-0.35007092,-0.24582681,0.6786121,0.9629153,0.98599803,0.106322415,1.3490093,0.3935275,-0.06420505,0.26629242,-0.22986409,-0.574401,0.1956579,0.2586079,0.019759575,0.37938213,0.059058554,0.020565737,0.61505973,-0.16673276,-0.085548475,-0.05434789,0.31581274,-0.08556159,-0.07055945,-0.4873523,-0.33918908,0.102561116,0.07213648,-0.016533708,0.24096869,-0.18464692,0.37464622,0.16785881,1.3284042,0.08554564,0.024022246,0.0058467686,0.2963883,0.28838202,-0.21769215,-0.11188093,0.49350175,0.48005256,-0.033707205,-0.57255274,0.06504335,-0.28432772,-0.3146421,-0.16849433,-0.44803995,0.009734503,-0.12864147,-0.5187843,-0.1456991,0.00046207904,-0.28379124,0.4686441,-2.548469,-0.2119184,-0.088987954,0.25368622,-0.207538,-0.25248796,-0.24076536,-0.43094763,0.17780632,0.39320734,0.36594343,-0.7628898,0.44158763,0.22584032,-0.47397742,0.047549296,-0.76128423,-0.13694954,0.028970854,0.2546664,-0.024770236,-0.07693974,-0.15681799,0.28165236,0.7190773,0.099938616,0.018302595,0.31146753,0.4859365,-0.06394485,0.4805799,-0.03166501,0.5940496,-0.19540481,-0.21268012,0.33864024,-0.37233588,0.39072856,0.04536024,0.13284941,0.43903312,-0.41826117,-0.7674728,-0.5626762,-0.2757246,1.2970554,-0.5006708,-0.28905037,0.24836151,-0.18513934,-0.18060614,0.022354417,0.3614026,-0.101444095,-0.100063205,-0.63957673,0.09592828,0.006695183,0.18982212,-0.113493934,0.024454182,-0.2629924,0.7781729,-0.107188635,0.60905826,0.34159282,0.20611419,-0.085036844,-0.44080302,0.037493195,0.73588204,0.39965862,0.15296513,-0.14310206,-0.17940484,-0.15763263,0.009872059,0.22221223,0.575385,0.679191,-0.06838436,0.1618981,0.44973794,-0.09295297,0.037329357,-0.07908769,-0.2743923,-0.099673636,0.18256739,0.5709964,0.60512775,-0.21940883,0.25226912,-0.045824982,0.15485974,-0.00916184,-0.65200335,0.517862,0.9375034,-0.23741984,-0.2927886,0.52981144,0.30880082,-0.30554426,0.35126755,-0.42614567,-0.13089617,0.65027547,-0.0647574,-0.30516738,-0.03649964,-0.33528703,0.033748396,-0.96685964,0.22422913,-0.10947275,-0.47982737,-0.49631956,-0.101931326,-3.8203897,0.25878927,-0.25423318,-0.02026283,-0.1183481,-0.16376534,0.35316867,-0.6555631,-0.48083752,0.004554741,0.15697022,0.50451434,-0.037342,0.08792314,-0.29328918,-0.25233498,-0.15411814,0.16639213,0.11121976,0.35933718,-0.05825365,-0.42832386,0.089710936,-0.15374802,-0.5486136,0.113232724,-0.5325226,-0.46866652,-0.11563269,-0.6449191,-0.14772733,0.68315876,-0.331638,-0.08988852,-0.21663547,0.020801445,-0.11384037,0.335487,-0.013768627,0.22691366,0.07959081,-0.05709939,-0.22051714,-0.3015751,0.21582647,0.06399007,0.21301462,0.33431903,-0.03276104,0.2701069,0.6189462,0.5609564,-0.17202981,0.7605051,0.44510868,-0.12789544,0.29698136,-0.16031434,-0.22308272,-0.66820073,-0.39952987,-0.21526875,-0.5838832,-0.31483182,-0.009158325,-0.28416288,-0.8103894,0.44497076,-0.011604418,0.10623741,-0.114673145,0.28602663,0.5234773,-0.13390276,0.08890283,-0.13670151,-0.35421005,-0.5560393,-0.42604163,-0.62000793,-0.46719617,0.20020567,1.2679474,-0.23745249,0.015127023,-0.064857654,-0.28965855,-0.010860655,0.07542556,0.15081148,0.33431348,0.2854231,-0.23368911,-0.57684267,0.3787126,-0.15765788,-0.100236535,-0.5419001,0.19916269,0.62525123,-0.58386433,0.7469799,0.18398285,0.18897668,0.047756776,-0.8132902,-0.34968203,0.051938254,-0.120176144,0.6325013,0.19308418,-0.6531678,0.5112914,0.20825782,-0.10543251,-0.67530227,0.41409302,-0.13267754,-0.20872371,0.07428311,0.32136965,0.028532168,-0.06525429,-0.10791675,0.20580257,-0.51354456,0.26902738,0.28370732,-0.024575753,0.2687416,0.052469514,-0.08631881,-0.5870745,-0.16919796,-0.694679,-0.30980694,0.043664772,0.05704792,0.11138471,0.014942042,-0.12832822,0.4984288,-0.19657382,0.21692772,0.011716732,-0.21324523,0.3438141,0.5374583,0.34019384,-0.43724844,0.54472214,0.21689838,0.13115749,-0.21547483,0.19597301,0.48069364,0.24166006,0.38349903,-0.28597164,-0.100521944,0.19728793,0.71050256,0.08342903,0.31239542,0.06052321,-0.13737132,0.33799526,0.10547615,0.18687122,-0.10661183,-0.26140407,-0.080208585,0.040721297,0.28416064,0.56033355,0.13173114,0.25786045,-0.0017693341,-0.1538554,0.1672,0.18425322,-0.080476455,-1.1836855,0.36223108,0.38429445,0.7037925,0.4468896,0.09304301,-0.19282117,0.46613827,-0.38087484,0.1644973,0.43729553,0.039061252,-0.35564324,0.60263044,-0.5661132,0.52436864,-0.2023348,-0.007871754,0.19071296,0.248677,0.3165406,0.7965918,-0.1938795,0.047278095,-0.004010822,-0.27794668,0.10787465,-0.41005686,0.01729778,-0.48322895,-0.3437114,0.564268,0.30654132,0.34825364,-0.47960702,-0.07204076,0.082072355,-0.25510815,-0.0074779154,-0.15382442,-0.17229234,-0.104471,-0.5445814,-0.26811612,0.59480727,-0.22244057,0.09441779,0.058672205,-0.26286253,0.19291146,-0.12577015,-0.037623484,-0.03691317,-0.605246,-0.14037332,-0.20912334,-0.4603985,0.4374201,-0.51822996,0.18479082,0.1747901,0.007721913,-0.3206044,0.15043277,-0.039621364,0.8380461,-0.01832386,0.03344651,-0.45333594,0.16199459,0.27390066,-0.24184676,-0.1468537,-0.40447664,0.0484051,-0.47055718,0.37415415,-0.06823001,-0.32614857,-0.068854995,-0.0921321,0.043519568,0.40011796,-0.31185117,-0.13566495,-0.020978697,-0.11203027,-0.2992133,-0.070498735,-0.30131045,0.37740105,0.02886879,0.035172407,0.04681743,-0.19180274,-0.109154195,0.29809535,0.21442427,0.14563881,0.23005977,-0.06120235,-0.30442494,0.06688091,-0.020032218,0.27314612,0.07730367,-0.15891483,-0.33377874,-0.24376386,-0.28415972,0.16928066,-0.13191415,0.25483036,0.07600225,-0.37375352,0.76946336,0.17132276,1.1617913,0.11178456,-0.33197483,0.002735893,0.48211232,0.053401813,0.14606138,-0.2563688,0.69967526,0.49959552,0.001698474,-0.2548168,-0.49545148,-0.17759539,0.26408392,-0.19709176,-0.22446842,-0.1468927,-0.6564959,-0.20399657,0.15987758,0.12106506,0.16388384,-0.045889888,-0.2991812,0.098530784,0.05867869,0.39461097,-0.4349219,-0.0076393425,0.1346553,0.15753649,0.080693744,0.34181204,-0.3383443,0.40617263,-0.7167075,0.19780059,-0.34252167,0.1725619,-0.1187089,-0.17534341,0.1812895,-0.13242714,0.31004137,-0.2328137,-0.30081898,-0.22475986,0.7663218,0.2098804,0.20585817,0.80170596,-0.32878664,-0.10081578,0.23151137,0.49013633,1.232009,-0.22062284,-0.10004182,0.21435122,-0.22345637,-0.61490285,0.14085473,-0.38130257,0.04054837,-0.1049857,-0.3714895,-0.2813086,0.2582699,0.1034349,-0.014770261,0.23468997,-0.64185333,0.005170661,0.3926934,-0.28853524,-0.12809198,-0.26887226,0.3507782,0.6945964,-0.3836724,-0.49871406,0.16352607,0.23901053,-0.1685227,-0.60754293,0.004916233,-0.41312295,0.32956362,0.17417055,-0.33737367,0.016548479,0.21805115,-0.4624929,0.10046008,0.35878855,-0.22601625,0.12970726,-0.18788424,-0.23709835,1.0771407,0.074337445,0.18864031,-0.7103439,-0.44347966,-0.85576034,-0.33142662,0.27116236,0.24468349,-0.0072084307,-0.6821896,-0.114948355,-0.10540657,-0.025244607,-0.03254385,-0.43145046,0.4940701,0.17259319,0.31271738,0.005410055,-0.88587326,0.09141397,0.08153005,-0.09780238,-0.4738713,0.5066583,-0.21430226,0.68434256,0.09995737,0.10170799,0.059174895,-0.55746704,0.16405681,-0.44716927,-0.2320893,-0.6464494,0.0716685,859 -304,0.37732226,-0.15449992,-0.3321305,-0.12448481,-0.1068647,0.103229545,-0.024104571,0.5734209,0.14895503,-0.504751,0.029562326,-0.22316223,0.06264444,0.2815103,-0.06630949,-0.49586895,-0.03624008,0.13485615,-0.48474944,0.509993,-0.488303,0.33381498,0.02828118,0.26575282,0.26397333,0.20860928,0.12561846,-0.13995737,-0.246934,-0.0615976,-0.31526738,0.32061195,-0.47995523,0.16564946,-0.057320442,-0.3106404,-0.06401326,-0.55463207,-0.20790361,-0.65660894,0.30789524,-0.6124359,0.43126264,0.036058195,-0.21689697,0.3374955,0.008631373,0.1590491,-0.3113985,-0.09712601,0.18547535,-0.019055089,0.007077658,-0.10737061,-0.17975232,-0.20403562,-0.5902064,0.12735534,-0.29641125,-0.25505072,-0.28225276,0.047529187,-0.2977031,-0.10760081,-0.15250021,0.50546914,-0.3698246,-0.017686915,0.046982713,-0.07665453,0.05970394,-0.49101022,-0.23035182,-0.07774822,0.20991282,-0.24899103,-0.2005843,0.26257768,0.367488,0.50136936,-0.10547017,-0.12153492,-0.3801693,-0.019443242,0.061498545,0.57669884,-0.12536792,-0.6716853,-0.042709947,-0.0024716535,-0.15508097,0.16465467,0.2743009,-0.23258692,-0.16387297,0.065997854,-0.3007611,0.38938776,0.3794625,-0.48236087,-0.3808761,0.38271073,0.43503234,0.12371781,-0.0591717,-0.14568385,-0.022130368,-0.59538114,-0.1420618,0.101151034,-0.18712394,0.45609373,-0.16002989,0.27097625,0.5962435,-0.14531264,0.05006246,0.027253648,-0.05671579,-0.039916683,-0.36872247,-0.15703563,0.18112141,-0.33457738,0.17761129,-0.12183056,0.7725229,0.19668274,-0.722856,0.51763624,-0.49570695,0.15177727,-0.04151574,0.38227132,0.6957261,0.2920016,0.3065429,0.5523375,-0.43865815,-0.037275426,-0.063161,-0.31507406,-0.051872294,-0.044121996,0.022272553,-0.49512693,0.11086254,0.0438121,-0.024640007,0.14999872,0.29750916,-0.40610445,-0.08405883,0.1724961,0.7604783,-0.27607772,-0.22087076,0.7238228,0.87696284,1.0552889,0.035396837,1.0358241,0.18220784,-0.280075,0.39712203,-0.35903245,-0.64577705,0.19746122,0.40541232,0.10746796,0.113906674,0.03787331,-0.007315016,0.34259796,-0.1995655,0.058934078,-0.08401272,0.14253949,0.1470339,-0.09652397,-0.43416703,-0.49942937,-0.18795976,-0.027748276,0.066569015,0.30244446,-0.24850784,0.3369802,-0.047321703,2.0108435,0.004782454,0.09658645,0.08804653,0.4886375,0.22004355,-0.2307642,-0.18079755,0.27923006,0.24733518,-0.0026493957,-0.5388474,0.11563837,-0.23422667,-0.6074949,0.059155066,-0.37960613,-0.13330847,-0.023784108,-0.47941926,-0.0990794,-0.13391142,-0.3672354,0.5209648,-3.0469725,-0.14285825,0.0254169,0.18832384,-0.2983506,-0.48194,-0.15092808,-0.46055374,0.36307934,0.3057798,0.50102425,-0.61356246,0.18381637,0.23107924,-0.46290758,-0.2145281,-0.6270303,-0.13832341,-0.0138402935,0.275464,-0.09969415,-0.04228876,0.028575102,0.048999313,0.5137946,-0.018847188,0.08528846,0.19954552,0.3277324,0.17655952,0.45740747,-0.13187356,0.56867826,-0.22454758,-0.14483605,0.2789821,-0.39407656,0.3249419,-0.007354625,0.15148465,0.37823913,-0.49299622,-0.82512933,-0.5381921,-0.24176502,1.0435655,-0.14694303,-0.15561105,0.34815323,-0.2818466,-0.1522225,-0.17855145,0.5018718,-0.020776387,-0.29724774,-0.691515,0.13644613,0.0039060514,0.13033745,-0.055430364,-0.018257419,-0.38906538,0.5696105,0.0408858,0.5586758,0.27145472,0.18890648,-0.27302417,-0.23972934,-0.022429649,0.89561284,0.29077587,0.16201001,-0.2240062,-0.19103931,-0.41800302,-0.122660674,0.11357477,0.34109706,0.6290143,0.03143013,0.10582427,0.29319677,0.08798542,0.109793626,-0.11482821,-0.059562135,-0.07281915,0.009488362,0.5792958,0.421143,-0.2327467,0.47094733,-0.08050545,0.14467312,-0.31043273,-0.3296139,0.46626326,0.9580134,-0.054501165,-0.18334967,0.45817477,0.36917952,-0.18692374,0.35201707,-0.37233528,-0.1630438,0.5898736,-0.30083752,-0.25182876,0.1809339,-0.28933793,-0.057614047,-0.87915325,0.16792342,-0.17413248,-0.34859288,-0.4630476,-0.09182421,-3.374348,0.0680168,-0.13958764,-0.20089422,0.012409095,-0.13236684,-0.00012604991,-0.6112135,-0.45213282,0.13864268,0.04016675,0.6849725,-0.09653075,0.15171617,-0.18622822,-0.29367062,-0.34277,0.07959486,-0.1319844,0.47657683,0.038202595,-0.28728145,0.012230714,-0.23907389,-0.45641506,0.13283819,-0.5897522,-0.43727365,-0.099334195,-0.48358935,-0.36101112,0.7086967,-0.31113398,0.10048011,-0.053070687,-0.10477562,-0.15360378,0.33666545,0.19927782,0.189509,-0.0070155244,-0.09914363,0.050860144,-0.27234378,0.23303024,0.107166134,0.3446263,0.44807443,-0.09934259,0.22795108,0.45160285,0.71777445,-0.08931392,0.7678224,0.4867874,-0.030379724,0.37558338,-0.37184814,-0.10335181,-0.43061748,-0.29787335,-0.011620279,-0.3389204,-0.5291501,-0.14136918,-0.25009623,-0.6577136,0.38583887,0.0118062375,0.20421417,0.020873448,0.2190079,0.43014425,-0.24270166,0.037847422,-0.052696787,0.056482118,-0.442426,-0.33683893,-0.62445694,-0.47335765,0.29621795,0.83744526,-0.077627465,-0.06908617,-0.044560794,-0.18016014,-0.08276778,-0.01369695,0.030243825,0.27784172,0.19956136,-0.1719771,-0.59465843,0.5936117,-0.026907882,-0.1689635,-0.3400817,0.1297323,0.4219897,-0.5082214,0.59161884,0.17396468,0.0755105,-0.05096256,-0.44431794,-0.28795394,0.038661227,-0.16553144,0.23844472,0.16859058,-0.7901437,0.4682471,0.3784352,-0.20529903,-0.718371,0.41178292,0.0944132,-0.2125519,-0.1153676,0.27081713,0.19753313,0.026249062,-0.20008124,0.23332341,-0.6832984,0.17849459,0.29525745,0.09650986,0.24046403,-0.19456895,-0.07652096,-0.6375628,0.06529151,-0.3783372,-0.30603835,0.17789094,0.1821412,0.28423527,0.19172274,0.035239324,0.29231352,-0.2806568,0.13943498,0.03979416,-0.096698694,0.19864586,0.351535,0.48424965,-0.42728817,0.4743385,-0.016687235,0.05729603,0.04212234,-0.00019108455,0.38966453,0.18199606,0.20605898,-0.14689513,-0.40854728,0.29260164,0.73108286,0.21127126,0.25402597,-0.012278446,-0.14279968,0.22579846,0.031662673,0.16049775,0.13654651,-0.48498264,-0.046191134,-0.12027777,0.19193846,0.50572544,0.08688512,0.13866095,-0.09099913,-0.25967363,0.036514767,0.24996522,-0.087379836,-0.8704876,0.4010163,0.16142997,0.91102046,0.57276285,0.0011014044,0.036067046,0.49157518,-0.29432717,0.29636902,0.29423878,-0.22948837,-0.65950596,0.61886954,-0.52221984,0.56273854,-0.05739812,-0.07101289,-0.049577367,-0.16747539,0.39340517,0.6344353,-0.12704642,0.072098844,0.13089237,-0.2661235,0.18952103,-0.45087665,0.056456827,-0.49048957,-0.124090545,0.61185324,0.38716874,0.21689698,-0.17883086,0.058578346,0.12773082,-0.13654235,-0.010144048,0.066813104,0.1398001,0.051290978,-0.6801096,-0.19303949,0.59215057,-0.1964058,0.20697512,0.039081734,-0.27025563,0.23843017,-0.17079595,-0.14133777,-0.07293726,-0.64001614,0.07139484,-0.25747365,-0.37236974,0.4126487,0.0018298845,0.2501608,0.17877603,0.13654871,-0.20698068,0.3682023,0.2855503,0.65783936,-0.12960312,-0.058919672,-0.47250333,0.23050953,0.058240555,-0.15541181,-0.22411104,-0.16881299,-0.07814606,-0.5343491,0.46850902,0.1333854,-0.20685154,0.020299705,0.020672591,0.10316456,0.58440423,-0.05597693,-0.012274522,-0.29386365,-0.14660718,-0.23254791,-0.03213717,0.0079404395,0.3836684,0.21779624,-0.03567543,-0.06064946,-0.08827477,-0.13391079,0.3427868,-0.018152798,0.294932,0.1911071,0.05963367,-0.30277395,-0.19738065,0.1525836,0.3795424,0.06582654,-0.11393515,-0.26871625,-0.15079759,-0.3645789,0.1354625,-0.16055562,0.42685625,0.08090841,-0.31671053,0.5576723,-0.058478158,1.059921,0.093358286,-0.31622875,0.11815127,0.37994167,-0.011331473,-0.05013098,-0.36134478,0.8946127,0.34294617,0.061760657,-0.17287332,-0.20418897,-0.03624557,0.21468982,-0.20541245,-0.18130998,0.062505,-0.61874694,-0.19332081,0.15183932,0.14729208,0.28867435,-0.11618611,0.007255578,0.26469213,0.061806742,0.31420344,-0.3166406,-0.17906652,0.2771078,0.38533637,0.012873038,0.098658696,-0.46657792,0.37537596,-0.5715866,0.14324252,-0.17813797,0.2110311,-0.24759445,-0.17140833,0.25407347,0.11844928,0.38201895,-0.14134435,-0.49028358,-0.24603394,0.44735253,-0.02167649,0.20455636,0.47806272,-0.23186168,0.027827501,0.08747374,0.46175542,0.95583737,-0.07759803,-0.11252569,0.38853613,-0.25962844,-0.6184899,0.42741734,-0.13275392,0.21809216,-0.03102016,-0.002035904,-0.50620174,0.12285399,0.31643003,0.12629543,0.06084319,-0.5273685,-0.34343317,0.23324195,-0.30988413,-0.2996798,-0.3593721,0.095792435,0.7402247,-0.32890823,-0.30546954,0.11768512,0.12150005,-0.19616313,-0.6774628,0.0914011,-0.43129092,0.33044365,0.057678156,-0.30296388,-0.121933214,0.011505851,-0.33363527,0.22969453,0.048464265,-0.3762643,0.026379049,-0.3352757,-0.11057509,1.0903447,-0.05863334,0.27844945,-0.41281828,-0.53117585,-0.81715703,-0.509176,0.5895261,-0.07499387,0.034758568,-0.5547825,-0.031320095,0.041366525,-0.20502757,-0.06106888,-0.39699116,0.49156523,0.10416451,0.14163052,-0.12756577,-0.65862066,0.05148317,0.1128246,-0.17524809,-0.46410248,0.38052395,0.02150519,0.84287965,0.018835751,-0.049142443,0.3866495,-0.32497707,-0.09600336,-0.30658305,-0.122237,-0.5179888,0.16789061,868 -305,0.3612019,-0.3794754,-0.49244398,-0.23780611,-0.38185838,0.2932698,-0.19617644,0.204926,0.21012588,-0.33365917,-0.11840384,-0.10143815,-0.097650595,0.2519011,-0.16669479,-0.6974842,-0.0073494315,0.13124256,-0.6519798,0.37783384,-0.62222517,0.31471935,0.08482721,0.30763358,0.02648755,0.39774007,0.108518705,-0.08809121,-0.25067723,0.09895039,-0.061648242,0.3630113,-0.7058405,0.2567466,-0.14254338,-0.25758678,-0.08990537,-0.4375884,-0.2790089,-0.7286488,0.25206983,-0.8763594,0.64157027,-0.19859764,-0.41154665,0.15753298,-0.042377293,0.13722639,-0.4053636,0.17311195,0.11617478,-0.28963515,-0.1140617,-0.16467169,-0.28019089,-0.44964993,-0.5614072,0.085313715,-0.69390565,-0.13969776,-0.28475598,0.27305165,-0.3116068,-0.033867225,-0.19447695,0.4303236,-0.49739826,0.13622363,0.1547307,-0.27199697,-0.072382405,-0.49885464,-0.112537794,-0.13525292,0.18072285,0.0067910594,-0.42941815,0.15307905,0.34533247,0.6520481,0.13963166,-0.2851534,-0.17198128,0.019405905,0.1794359,0.4411234,-0.06686536,-0.18503284,-0.40316167,-0.11510129,0.44870603,0.07930143,0.07377424,-0.44232872,0.033061292,0.1418026,-0.17057416,0.34689146,0.5904737,-0.46475682,-0.23741649,0.42176056,0.40661043,0.05948829,-0.1256896,0.15580983,-0.096821025,-0.5615421,-0.23330039,0.1836765,-0.09450171,0.6578804,-0.2393788,0.11908182,0.7993828,-0.26509267,0.04728296,-0.019525561,-0.09731437,-0.03388693,-0.25493482,0.06509214,0.05368433,-0.45526168,-0.16387396,-0.21322997,0.6396026,0.2042906,-0.6933425,0.4308252,-0.32980585,0.17691714,-0.07661389,0.7156531,0.8456679,0.5529001,0.22100379,0.7624762,-0.4258372,0.14975777,-0.11491369,-0.40012646,0.2709547,-0.26204062,-0.007115436,-0.43829352,0.09564037,0.040448487,-0.07383386,-0.09878132,0.41875374,-0.52801144,-0.03478328,-0.051063314,0.5882568,-0.46038678,-0.2289376,0.982537,0.8786898,0.89456266,0.13354515,1.5375848,0.55764693,0.047247674,0.05827781,-0.349865,-0.55047303,0.14046016,0.31767684,-0.010572227,0.4327907,0.18011954,0.06564278,0.5343723,-0.36861342,-0.06931522,-0.13650389,0.39212334,0.038111653,-0.01745144,-0.33488634,-0.16159157,0.27639225,0.11325482,0.02684116,0.22951078,-0.28722066,0.441479,0.10459292,1.3097876,0.0044035157,-0.042587463,-0.04952372,0.3806015,0.23057862,-0.09764312,-0.025762456,0.37936977,0.31983224,-0.13493237,-0.5844866,-0.052753367,-0.17870817,-0.37334946,-0.20783901,-0.4373928,-0.09728932,-0.30745548,-0.4750012,-0.19208437,0.09677842,-0.34463766,0.53369105,-2.3397174,-0.32174933,-0.11724392,0.4275456,-0.19251664,-0.40697297,-0.2492876,-0.4723306,0.12717363,0.40572277,0.3089634,-0.7095758,0.45521635,0.36433056,-0.28618437,-0.18485017,-0.7496712,0.09914236,-0.1112651,0.50232285,-0.023152268,-0.21021077,-0.14100905,0.025562637,0.71474046,0.026203323,0.043961048,0.25103524,0.5313181,-0.048213903,0.4298018,0.16014789,0.60622126,-0.14103927,-0.22730403,0.48952726,-0.35729307,0.34532508,-0.013321028,0.17534736,0.4311809,-0.48709646,-0.8068478,-0.6412132,-0.18593706,1.3144208,-0.44948426,-0.50803894,0.14168268,-0.2592277,-0.23535937,0.08331296,0.37034076,-0.112821564,0.036243808,-0.706369,-0.035384815,-0.008542311,0.22179273,-0.1284663,0.26822558,-0.27143613,0.6696491,-0.2580529,0.4371067,0.2720116,0.2497368,0.0006229401,-0.5219857,0.10965785,1.0041093,0.4669313,0.07484484,-0.113097,-0.27536574,-0.09217679,-0.20096307,0.047826912,0.5838397,0.6908315,0.05316413,0.08737807,0.48761642,-0.14393303,0.010325523,-0.23294483,-0.26106295,-0.12224846,0.23973401,0.5649859,0.59960705,-0.22187993,0.43887225,-0.19034186,0.23951057,-0.0038198412,-0.6430787,0.5246662,0.79024345,-0.2710274,-0.13902552,0.5042885,0.35093102,-0.47897014,0.45786476,-0.56966454,-0.27921954,0.6266413,-0.16405174,-0.40893167,0.14767967,-0.33727124,0.098919824,-0.91624427,0.4683601,0.13794515,-0.5467948,-0.47566277,-0.24052317,-3.7031791,0.050581302,-0.16316275,-0.017350078,-0.115461215,-0.23173693,0.33917183,-0.48870823,-0.5005133,0.029516084,-0.004944662,0.4684121,-0.177275,0.090345345,-0.34137586,-0.1930811,-0.24666883,0.19670771,0.13751379,0.2695932,-0.050009314,-0.36804062,0.14121482,-0.4257487,-0.46021497,0.018528657,-0.6286095,-0.57486165,-0.053235266,-0.43505254,-0.25199553,0.69308007,-0.3881754,-0.034897838,-0.40625226,0.082602195,-0.21348858,0.47783464,0.10413191,0.108411506,0.18982433,0.008031368,0.015317949,-0.28866196,0.26470527,0.06506743,0.309146,0.5381903,-0.19003925,0.17545849,0.6326247,0.49944422,-0.103972316,0.82774514,0.26107877,-0.17445685,0.36622837,-0.22290757,-0.31249905,-0.76408845,-0.43912098,-0.12819055,-0.5417202,-0.41355613,-0.03987938,-0.4163727,-0.99248415,0.52443117,0.026410531,0.23674959,-0.13874832,0.5334911,0.53361714,-0.06428554,0.1205971,-0.15360655,-0.33157313,-0.5317781,-0.5285009,-0.6788577,-0.60585856,0.26533833,1.1657618,-0.12044347,-0.122370295,0.05954395,-0.2679883,0.004872036,0.025608802,0.13224736,0.120013334,0.43847695,-0.15021636,-0.81165856,0.25055018,-0.19897659,-0.05155853,-0.65697396,0.097493514,0.8241308,-0.71425843,0.63989806,0.39581004,0.2883527,0.2174143,-0.4509646,-0.29872516,0.010716279,-0.20126596,0.622226,0.2271431,-0.73558587,0.5902535,0.16079617,-0.1390496,-0.7205916,0.4230592,-0.018653555,0.033235263,0.06969704,0.41639563,0.11937353,-0.13443114,-0.13193905,0.12015821,-0.60808676,0.35656324,0.41800037,0.00499415,0.49090534,-0.07788303,-0.37720743,-0.74240327,-0.24426524,-0.5335833,-0.29716232,-0.0044457037,0.0645661,0.17172074,0.0876288,0.07432509,0.5707162,-0.30226675,0.08056893,-0.009891268,-0.23793712,0.39362237,0.6679032,0.3081853,-0.44089714,0.5735357,0.13169344,0.118055,-0.049726546,-0.032046963,0.45339915,0.26075587,0.3251921,0.070683055,-0.060055036,0.15580289,0.75559956,0.26133192,0.5013904,0.12896381,-0.3758803,0.4255605,0.23419565,0.25677806,-0.18896598,-0.25206974,0.07615705,0.019973235,0.27423713,0.37087432,0.2707995,0.347091,-0.069243096,-0.10052952,0.13419007,-0.0021312158,0.03817359,-1.1495037,0.074465275,0.30830634,0.6244047,0.4045275,-0.07299106,0.060022224,0.43244895,-0.3661154,0.06643618,0.40530345,-0.0017443498,-0.38505313,0.44406313,-0.5947744,0.5139302,-0.2683608,0.094434425,0.13278441,0.38634837,0.32125956,1.0015963,-0.07442712,0.007107506,-0.0515107,-0.16735314,0.18282191,-0.41534302,0.08096797,-0.47143373,-0.29427388,0.72792435,0.40532506,0.37558678,-0.33446413,-0.09194859,0.0043834904,-0.24892071,0.25772035,-0.12499378,-0.021537812,-0.22287728,-0.56809837,-0.40154666,0.4466693,-0.06480965,-0.03440772,0.107112154,-0.39667082,0.29297304,-0.2649807,-0.13978292,-0.043818224,-0.63251466,-0.18224014,-0.24758355,-0.70788616,0.31583348,-0.17321688,0.13827366,0.23430684,-0.03476264,-0.42938992,0.1393011,0.024019908,0.793209,0.16823177,-0.23716916,-0.31567627,0.07475091,0.46451092,-0.39941806,-0.047859598,-0.29139945,0.23489143,-0.43825704,0.43593505,-0.2533181,-0.34061283,0.022176782,-0.07005746,-0.04217837,0.4178297,-0.21653035,-0.21463647,0.18119873,-0.0017633438,-0.3517452,-0.039223652,-0.40515786,0.23316672,0.0355335,-0.06294889,0.0054436405,-0.25104058,-0.079574265,0.4240199,0.1134919,0.12276159,0.37912673,-0.11064114,-0.44338125,-0.12212517,0.05022413,0.5373523,0.1077059,-0.11434433,-0.30970442,-0.4076619,-0.33532685,0.38919133,-0.13802633,0.16821764,0.1437458,-0.48823798,0.8667739,0.21797766,1.3215357,0.06366827,-0.37534952,0.12940067,0.57315814,0.094245195,0.12514938,-0.3986541,0.89608234,0.6204722,-0.1822811,-0.13389844,-0.52982014,-0.27583537,0.29168335,-0.30099133,-0.20876391,-0.2524828,-0.84453315,-0.2946308,0.184646,0.10141299,0.097190715,0.07122096,0.051491704,0.09308157,0.09821494,0.43430054,-0.53104717,-0.11737699,0.36571977,0.24826019,-0.042390432,0.23291384,-0.3174499,0.46460012,-0.6569523,0.15622562,-0.35955673,0.112845235,0.0027732134,-0.24982496,0.29578787,0.1292957,0.32471687,-0.37698373,-0.41765416,-0.36765185,0.7062417,0.023070227,0.25063145,0.7027285,-0.2798294,-0.16272245,0.054515436,0.5330996,1.4083598,0.0772551,0.23331784,0.38641292,-0.34679887,-0.62277377,0.22972336,-0.35562402,0.1322594,0.0030284086,-0.37087566,-0.4546273,0.34796107,0.15652488,0.014658654,0.13177072,-0.6428427,-0.2091836,0.34009182,-0.23612596,-0.15277033,-0.20297363,0.2741905,0.74601537,-0.541328,-0.19993828,0.0035762151,0.44612128,-0.3377482,-0.55491865,-0.08517415,-0.32722777,0.4398815,0.16905056,-0.40848133,-0.010690415,0.20262617,-0.43278953,0.012992438,0.43903923,-0.2707873,0.11567987,-0.091167815,-0.071531154,0.9175331,0.11891675,0.19446942,-0.6472777,-0.5340815,-1.0162246,-0.27057108,0.1368098,0.19301417,-0.0997413,-0.66266185,-0.08444094,-0.14555046,-0.17548452,0.14432281,-0.7942862,0.51188993,0.11446615,0.5608269,-0.022638949,-0.91020447,-0.059924714,0.19589217,-0.17246488,-0.54999185,0.67992646,-0.1623113,0.7235034,0.115970105,0.08563945,0.014147094,-0.6090732,0.20091139,-0.40080777,-0.1282662,-0.6879057,0.08289606,870 -306,0.5680411,-0.19688314,-0.41512102,-0.066310905,-0.49773362,0.16393623,-0.19031854,0.46010488,0.11544874,-0.4761122,0.039388377,-0.13505717,-0.15292683,0.34939173,-0.16376439,-0.48678476,-0.14998601,0.22589396,-0.5313652,0.6089529,-0.32581264,0.34912592,0.12103322,0.3140534,-0.06422081,0.102420315,0.15727152,0.0076728244,0.07606388,-0.2068576,0.059790563,0.28772718,-0.86129916,0.413524,-0.12449778,-0.48603502,0.052444085,-0.2834709,-0.30991086,-0.5870945,0.18849787,-0.7595752,0.5487263,0.07594151,-0.4240001,0.20280066,-0.06436578,0.22824964,-0.1317885,0.112694494,0.29199058,-0.0018737555,0.014403498,-0.3635168,-0.10394732,-0.3704037,-0.41993085,-0.08190677,-0.5580529,-0.10812133,-0.24288477,0.2718279,-0.17811184,0.06486772,-0.3363575,0.0065888762,-0.53647506,-0.12766708,0.11668787,-0.01355772,0.33900833,-0.52024025,-0.084430836,-0.20038176,0.02260511,-0.17389409,-0.17955644,0.40786943,0.16700153,0.6706957,-0.10777933,-0.08356847,-0.18435195,0.024966065,0.16215111,0.5338221,-0.37987173,-0.063485265,-0.21146835,-0.009627084,0.32856527,0.070068456,0.2145913,-0.3806778,0.011282965,-0.23898531,-0.13670436,0.24858217,0.41355646,-0.35724714,-0.21197675,0.3407089,0.43908718,0.20047079,0.021682035,0.13567641,-0.05735837,-0.4067019,-0.18545303,0.06493382,-0.27540204,0.18691579,-0.0030661125,0.040064834,0.5787484,-0.08427949,0.18668184,0.06518114,0.0039853095,-0.11622012,-0.19468516,-0.40003374,0.34211075,-0.6100576,0.030794632,-0.15886977,0.6369562,-0.011235169,-0.67441446,0.22129984,-0.63158786,0.14172226,-0.15171137,0.5410971,0.6725498,0.49099594,-0.06942879,0.7740886,-0.5458095,0.07720291,-0.21037786,-0.06761102,0.3358222,-0.19534524,-0.06627132,-0.53551686,0.019847551,-0.058505006,-0.087615155,-0.013416698,0.45543292,-0.5863407,-0.149054,0.12620397,0.67248195,-0.36385208,0.08267657,0.53638905,1.2605488,0.98190373,0.12314167,1.1415963,0.43662232,-0.27750918,0.07030772,-0.068501085,-0.7713857,0.17756104,0.6185226,0.23000176,0.34167126,0.18475416,0.13015474,0.28216502,-0.5069859,-0.032656822,-0.26738957,0.27568057,-0.23248409,-0.23708752,-0.31792322,-0.18246746,-0.023715062,0.10745175,-0.27338836,0.29739633,-0.3034172,0.16740383,0.24877796,1.5154127,-0.12181493,0.02959993,0.19542034,0.2516588,0.24217527,-0.10528013,0.03498514,0.22680052,0.24213137,0.040417958,-0.40316072,0.14749005,-0.18511565,-0.6005216,-0.1491622,-0.089359194,-0.065832935,-0.11151751,-0.39009234,-0.31783003,0.094222754,-0.20708999,0.43489882,-2.1600602,-0.031380393,-0.11890054,0.36367163,-0.22352889,-0.2680465,-0.15586837,-0.16111882,0.4278766,0.47037715,0.3388935,-0.50334793,0.25317305,0.4503238,-0.41775197,0.029523535,-0.4888608,-0.19619678,0.0073732287,0.37129375,0.13404298,-0.16413823,0.060296293,0.21999055,0.38898516,-0.10473878,0.14400618,0.2809887,0.33369058,-0.11100796,0.3868317,0.1582912,0.34179497,-0.23592286,-0.32202616,0.54077494,-0.2519459,0.2949703,0.19860874,0.1211554,0.37917534,-0.5439407,-0.79315454,-0.737481,-0.35997263,1.1702014,-0.2850946,-0.46680102,0.21888217,-0.029728157,-0.29223326,0.02995737,0.3063044,-0.09453591,0.023647865,-0.9284942,-0.060099375,-0.17211995,0.44564793,0.093358494,-0.11204632,-0.46024925,0.7847068,-0.12437517,0.47234187,0.4324613,0.23332907,-0.033796422,-0.39775386,0.044910487,0.96281177,0.5770891,0.1400313,-0.2518295,-0.096978165,-0.07331805,0.110622235,0.13852948,0.35453606,0.70594394,-0.16596557,0.102970004,0.24225296,-0.035085298,-0.09736948,-0.19213514,-0.39301142,0.08441803,0.20234753,0.53615874,0.7675634,0.029678106,0.2286095,-0.2696523,0.37306085,-0.029251782,-0.623351,0.28493086,0.9170113,-0.055987738,-0.20826659,0.7596409,0.50500786,-0.26195818,0.61774695,-0.7710296,-0.46322414,0.19412568,-0.122854635,-0.3593216,0.21283212,-0.3277235,0.14469312,-0.8800701,0.53350157,-0.30298325,-0.31358275,-0.5522832,-0.23395291,-1.8796829,0.17704575,-0.11987273,-0.0677527,-0.029084992,-0.12483342,0.4866915,-0.57386947,-0.6216012,-0.0323112,0.09512458,0.39281404,0.05829878,0.08030366,-0.09790948,-0.4290307,-0.15952845,0.3500837,0.20765132,0.21872291,-0.07937377,-0.43850031,-0.19537713,-0.13298532,-0.13824868,-0.0683533,-0.6770202,-0.5499952,-0.23690867,-0.31046903,-0.0100399135,0.5311629,-0.24881154,-0.08659135,-0.23577046,-0.13497172,-0.07129042,0.20666978,0.1849278,0.1899952,-0.018025469,-0.093825705,-0.30469158,-0.41783687,0.16549852,0.26387534,0.13862447,0.45078027,-0.36844304,0.03013765,0.5987881,0.5184024,-0.29242194,0.7362215,0.52875763,-0.35797495,0.25623938,-0.15059671,-0.31486833,-0.68310285,-0.37752718,-0.22793409,-0.37842697,-0.3133547,0.10307108,-0.3458637,-0.6884594,0.66102093,-0.13408206,0.10289162,0.13340326,0.168682,0.35281327,-0.15884785,-0.22952054,-0.24280144,-0.20211914,-0.49586505,-0.50712794,-0.65601027,-0.42160282,0.11649551,1.3881528,-0.1690165,0.18084703,0.3340175,-0.07726245,0.09312126,-0.017264394,-0.032554496,0.031126218,0.49702698,0.15308465,-0.65677124,0.38936803,0.129575,-0.038907092,-0.5166342,0.19638488,0.5405532,-0.6785067,0.2964768,0.2018465,0.22468756,0.14611222,-0.7170103,-0.096593544,0.053780403,-0.28980047,0.41931456,0.23185153,-0.7313459,0.40672508,0.43171388,-0.43356067,-0.6581811,0.37251434,-0.02002013,-0.16617484,-0.027449373,0.21010621,-0.014426947,0.05704047,-0.0072805206,0.41271183,-0.47231016,0.42869598,0.24423742,-0.1156242,-0.040903017,-0.3076309,-0.29654709,-0.70748174,0.36886698,-0.29912513,-0.48016423,0.19464898,-0.08021784,-0.2787995,0.3237933,0.4034167,0.4939747,-0.27493572,0.115865715,-0.13952175,-0.31556764,0.5655081,0.44909233,0.5591492,-0.27620333,0.4580372,0.024953267,-0.08913699,-0.3752623,-0.02731278,0.4998174,-0.07216326,0.0812559,-0.11203248,-0.027317159,0.34991413,0.9319933,0.09029231,0.13072957,-0.15387456,-0.1922863,0.19686618,0.16350287,0.07394292,-0.22364657,-0.530015,0.21183547,0.08574549,0.13051568,0.5042151,0.14588708,0.19177668,-0.21060398,-0.23619793,0.12795761,0.25025237,0.08393821,-1.3529953,0.13368313,0.034732666,0.56229395,0.68082964,-0.016545385,0.11261659,0.59341234,-0.2353305,-0.013777216,0.31166044,-0.17365967,-0.38673264,0.36402422,-0.65976244,0.14337324,-0.025627578,0.14426604,0.10485992,0.06753692,0.342666,0.8199456,-0.11816623,0.1418181,-0.096274935,-0.2783249,-0.094200835,-0.16422853,0.10007751,-0.2982351,-0.51580733,0.6639974,0.40695208,0.4469203,-0.31240806,0.058405634,0.07022057,-0.33212775,0.42303428,0.050320227,-0.030622933,-0.10667532,-0.28490517,-0.057650175,0.56845206,-0.077550456,-0.14609824,-0.026858052,-0.2660289,0.24286526,-0.05833737,-0.06654722,0.03550096,-0.67379695,-0.04067099,-0.58953726,-0.003925604,0.24586357,0.031031083,-0.066557534,0.109595194,-0.015204533,-0.17385677,0.29635122,0.06001755,0.7393478,0.1420234,-0.24519081,-0.13214894,0.30146477,0.06002393,-0.1776201,0.07237884,-0.084357776,0.15316424,-0.92026335,0.34943777,-0.09581215,-0.33128828,0.33000755,-0.14757603,0.051127788,0.275981,-0.072168924,-0.3280524,-0.022642668,0.07917192,-0.2642864,-0.27997574,-0.27211106,0.15060812,-0.015975079,-0.063390575,-0.111697085,-0.15849486,-0.08700765,0.37120253,0.09472397,0.3415217,0.3042606,0.036311913,-0.6340377,0.28228986,0.2188111,0.32604036,-0.09110559,0.19017534,-0.1546093,-0.49229005,-0.34183377,0.18349305,-0.3416972,0.3299128,0.0032244197,-0.33079422,1.0069797,0.18384887,1.0956672,-0.08214942,-0.17609318,-0.012480755,0.48837966,-0.16872144,-0.07479371,-0.3850858,0.90811324,0.85499996,0.02529356,-0.12604076,-0.20907094,-0.32429692,0.06879817,-0.23982498,0.017627554,-0.008147617,-0.91810477,-0.31326997,0.065455906,0.3796955,-0.027176203,-0.09944666,0.12123701,0.16264275,0.0573586,0.19867441,-0.4768886,-0.22714853,0.15229374,0.26705283,-0.092168175,0.029357016,-0.52218366,0.34497464,-0.6975244,0.12902507,-0.327445,-0.0054258504,-0.04311331,-0.2639261,0.003195871,-0.09260075,0.20798354,-0.36354002,-0.3767878,-0.005093187,0.59701216,-0.045297764,0.23239236,0.7351988,-0.31549045,0.29343128,-0.07832333,0.27332714,1.0831767,-0.27504748,-0.12362609,0.26639682,-0.3743571,-0.50583655,0.25766888,-0.18415897,-0.007139985,-0.12311951,-0.49167413,-0.33445802,0.28832075,0.07479049,-0.08989021,-0.07303046,-0.5526548,0.09875013,0.30114526,-0.2869778,-0.3146407,-0.20907858,0.23975655,0.6097273,-0.24423131,-0.5189925,0.3130263,0.28595543,-0.4384913,-0.57511765,-0.1130795,-0.4443508,0.19825183,0.15077731,-0.47004816,0.141745,0.17552185,-0.44596064,-0.10659612,0.4011687,-0.26053426,-0.064927794,-0.33602434,0.1826023,0.88452977,-0.12070358,-0.16523646,-0.6165832,-0.58025753,-0.9736678,-0.385236,0.4584602,0.3954583,0.06721805,-0.56485844,-0.056945514,-0.22518247,-0.0076714554,0.13217247,-0.28734502,0.41159683,0.23764655,0.45983836,-0.30521202,-0.7752045,0.15322612,0.10268914,0.021486538,-0.46812385,0.408604,-0.016251108,0.7913013,0.07356674,-0.16585997,0.12542258,-0.78055024,0.16129698,-0.15401635,-0.13322026,-0.7239151,0.13517125,872 -307,0.5057654,-0.3038157,-0.27332747,-0.09040812,-0.09202275,-0.04808254,-0.040411897,0.5698465,0.22431406,-0.41248834,-0.05611364,-0.17852037,-0.017323613,0.1489906,-0.1923771,-0.45462126,-0.094193906,0.08949855,-0.20010056,0.571689,-0.30026707,0.33174106,-0.061953723,0.324421,0.1473205,0.30810434,0.112970464,0.0034713666,-0.2559662,-0.12779325,-0.075393334,0.31466103,-0.38243192,0.18828283,-0.22187051,-0.34789288,0.08809838,-0.42855608,-0.35918573,-0.7075765,0.24779662,-0.7343878,0.41064036,0.091651164,-0.2936135,0.432126,-0.047632296,0.16011347,-0.22804521,-0.06894554,0.12305413,-0.12035029,0.056847285,-0.3163869,-0.04528815,-0.17946434,-0.41236734,-0.024175556,-0.24181433,-0.20150666,-0.27171147,0.07616757,-0.278004,-0.1781982,-0.04958178,0.51402485,-0.47063726,-0.059992496,0.12814869,-0.11425828,0.3651578,-0.60790664,-0.25321096,-0.12564152,0.113118865,-0.23731026,-0.1026757,0.43573084,0.15157671,0.4742223,-0.13586667,-0.15247406,-0.4488674,0.024365246,0.010575998,0.39888513,-0.2165796,-0.3798209,-0.0083494885,-0.06942605,0.012989683,0.12511857,0.23284216,-0.093274,-0.1430033,-0.0843937,-0.07228195,0.09259401,0.46723735,-0.2807863,-0.2685326,0.2863491,0.51149726,0.03838666,-0.094820775,-0.18618196,0.0029854467,-0.32450053,-0.2668077,-0.02275596,-0.26383877,0.5797681,-0.013043621,0.21381591,0.6118256,-0.09675423,0.084577575,-0.07457033,0.13884555,-0.069303595,-0.36589357,-0.25621027,0.3729077,-0.38366044,0.08992834,-0.11604377,0.62396467,0.073731415,-0.69005257,0.28428176,-0.3873143,0.080566175,-0.06669508,0.4109268,0.581718,0.44217154,0.33889467,0.5613009,-0.5670554,0.02069544,0.029546378,-0.28580576,0.058746424,-0.22220829,0.0008482615,-0.5033857,-0.04370873,0.12765485,-0.09168613,0.18572263,0.25255638,-0.41041374,-0.0033650121,0.33509833,0.7368434,-0.21022496,0.0017513196,0.58181113,1.0456487,0.95209086,0.011054758,0.958844,0.1476299,-0.24612331,0.38165146,-0.2550666,-0.6038867,0.16418651,0.4280357,0.00045019787,0.21691899,0.13248596,-0.024633206,0.46045983,-0.32928675,0.036574602,-0.1255553,0.11983571,0.05174936,-0.045867383,-0.5990145,-0.31461135,-0.19644454,0.117843,-0.12428498,0.26410112,-0.077965096,0.3177955,-0.0025933743,1.5547388,0.008703819,0.08448691,0.14206983,0.5014868,0.13004535,-0.08472336,-0.059677385,0.26253366,0.07138697,0.14877822,-0.45238906,0.089571044,-0.13858394,-0.5562297,-0.05930036,-0.3063065,-0.013190311,0.06524301,-0.514656,-0.23083314,-0.16425568,-0.19793501,0.35558942,-2.7979085,-0.033845283,-0.053829256,0.23985483,-0.2704565,-0.37315553,0.012427783,-0.40238392,0.39967576,0.4538647,0.48297614,-0.6288707,0.051571485,0.46789116,-0.43077672,-0.045540713,-0.48307458,-0.14408621,-0.080524065,0.39253324,0.09897906,-0.090846494,0.11465263,0.10519159,0.47084206,0.05278855,0.12962581,0.10193911,0.24203883,-0.14744285,0.32553452,-0.035605453,0.36210716,-0.2851427,-0.19330594,0.35449687,-0.32163355,0.16819698,-0.1818209,0.1777378,0.4381893,-0.3508288,-0.8429958,-0.52938104,-0.2361443,1.2096614,-0.063488565,-0.39096564,0.33710277,-0.23968147,-0.17998074,-0.1547919,0.40402266,-0.042408314,0.027729634,-0.73231214,0.057573866,-0.15304986,0.08249684,0.025679478,-0.093803026,-0.54319596,0.69796443,0.054850195,0.49943474,0.45596403,0.11764345,-0.2437714,-0.44011393,-0.031579774,0.73612744,0.46621454,0.23111637,-0.20781142,-0.10574827,-0.19608463,-0.058975816,0.13703528,0.38840705,0.65359306,-0.06848069,0.16116728,0.2263965,-0.003995295,0.008481589,-0.052445617,-0.2500406,-0.030549072,0.20478335,0.53539544,0.66542643,-0.17238021,0.28458756,-0.072839566,0.2854791,-0.2329662,-0.3793005,0.38709736,0.8750947,-0.09491159,-0.16913038,0.6546484,0.6054478,-0.21904305,0.5064773,-0.62882733,-0.38177413,0.38272712,-0.29851672,-0.42324173,0.13529132,-0.30358344,0.09235556,-0.9331811,0.21291906,-0.2355162,-0.34895363,-0.7664631,-0.10326044,-3.3603005,0.2528596,-0.28448874,-0.2288943,0.10669913,-0.04571619,0.15331322,-0.7781529,-0.38167733,0.20166369,0.061816026,0.5274164,0.038729955,0.033157777,-0.23345593,-0.36337286,-0.10953555,0.09905606,-0.00058907666,0.2964861,0.0069265882,-0.5813342,-0.029981613,-0.2012857,-0.43485656,-0.06583522,-0.45512435,-0.44303587,-0.19750914,-0.5979946,-0.3399671,0.5611474,-0.17599243,0.08572211,-0.16390464,-0.09392168,-0.17179285,0.30945206,0.14044362,0.28410295,-0.035490878,-0.054344997,0.062280156,-0.3593887,0.2008793,0.12165357,0.18446651,0.46738335,-0.28456995,0.10980951,0.5011756,0.5458237,-0.26305592,0.80259573,0.5379999,-0.13504806,0.29787332,-0.23945752,-0.19526939,-0.597277,-0.4663285,-0.027861131,-0.27015778,-0.48221725,-0.019872237,-0.47179964,-0.7845583,0.60460293,-0.12455965,0.27795142,0.07712283,0.044534422,0.435572,-0.3581743,-0.13696764,-0.16509032,-0.01964375,-0.42440593,-0.38098326,-0.6837891,-0.5222782,0.10174273,0.94836634,-0.0735697,0.045244697,0.17261118,-0.02649991,-0.05940281,0.06986799,-0.022813955,0.03505489,0.3273409,0.073816665,-0.5915638,0.5747809,0.14124323,-0.09608718,-0.36573508,0.13902976,0.43202418,-0.5385065,0.5067489,0.33602324,-0.023001682,-0.121815905,-0.62375295,-0.19152887,-0.15979896,-0.21826427,0.4897534,0.2612097,-0.6961155,0.39574495,0.40603238,-0.32604995,-0.68188494,0.46103013,-0.1106332,-0.40861186,-0.077169426,0.28492022,0.027394764,0.079403974,-0.038973983,0.25332218,-0.37987363,0.255329,0.29217115,-0.0115648,0.23124808,-0.11800638,0.11686855,-0.77536166,0.14856276,-0.3607457,-0.25165623,0.2230094,0.024601463,-0.012569949,0.27199915,0.086000904,0.43918782,-0.1633372,0.078780174,-0.045590267,-0.23510893,0.34724802,0.3286419,0.47375125,-0.36987135,0.49977887,-0.004132966,-0.13282199,-0.2839972,-0.021575456,0.45408365,0.17819424,0.21478367,-0.15849856,-0.278499,0.1606012,0.71095186,0.18883643,0.4198931,-0.029935332,-0.11385676,0.27956593,0.18442564,0.21494861,0.036128085,-0.4036016,0.113103025,-0.2155982,0.080177315,0.37575468,0.09661339,0.29855072,-0.17758451,-0.15408143,0.15404418,0.250029,0.1021132,-0.9468092,0.175822,0.10407445,0.8194772,0.57417005,0.17730041,-0.09695102,0.7162348,-0.17811607,0.075179696,0.4042513,-0.0974401,-0.6250392,0.6070283,-0.5999788,0.3958811,-0.029609716,-0.083813,-0.10527388,-0.13448715,0.40392467,0.5654198,-0.11002719,0.051476184,0.029527454,-0.3450939,0.047808178,-0.3247519,0.18511118,-0.4666006,-0.17957065,0.5603283,0.5474573,0.28920242,-0.13961239,0.020871429,0.11567863,-0.088842295,0.18139571,0.094178386,0.1314995,0.01760232,-0.60087395,-0.08959249,0.4590977,-0.004708918,0.09907386,-0.17400599,-0.25236097,0.10864403,-0.14396405,-0.22526485,0.08918246,-0.5932593,0.061834164,-0.33596885,-0.3501976,0.5294831,-0.04033872,0.30319235,0.054330714,0.20528159,-0.30499873,0.25887343,0.15453042,0.7256073,-0.03622191,-0.10032733,-0.2887026,0.18718325,0.1572745,-0.11701386,-0.15342909,-0.14863601,-0.014014379,-0.516898,0.40632036,0.05175327,-0.12964235,0.09264056,-0.2132861,0.06520204,0.48589644,-0.05084084,-0.27745205,-0.13601342,-0.091534585,-0.34812444,-0.25213906,-0.06707653,0.3930683,0.03600224,0.043291457,-0.12644884,-0.06344538,0.066613145,0.4931065,0.054979857,0.25333744,0.22376558,-0.10902412,-0.3820595,0.048911702,0.025376145,0.3400089,-0.09637952,0.066501126,-0.3139777,-0.40684927,-0.36781532,-0.08711567,-0.09385112,0.33414263,0.11113548,-0.17222244,0.7570363,-0.057997484,1.0466605,0.030326229,-0.4116738,0.0136237545,0.38751385,-0.17879263,-0.039278213,-0.33938658,0.97585493,0.5680923,-0.05157918,-0.11057455,-0.2441747,0.032852016,0.22742733,-0.14241362,-0.08461639,-0.053130787,-0.682544,-0.24241824,0.29826936,0.37980407,0.13390215,-0.05996644,0.10203626,0.24798249,0.14065424,0.33364442,-0.3882299,-0.17490754,0.40310812,0.23298746,0.09286005,0.15035671,-0.3869322,0.36305434,-0.55347353,0.07792829,-0.31325808,0.04389535,-0.37465802,-0.28466195,0.17176743,-0.0846323,0.3257355,-0.29906318,-0.35172728,-0.24000041,0.4982597,-0.08006497,0.10842634,0.4822779,-0.20806056,0.11758087,0.015876558,0.3973922,0.9509267,-0.31038803,-0.080339685,0.3566993,-0.26873606,-0.6438258,0.33487853,-0.092308216,0.085450396,-0.2197581,-0.2063126,-0.52403754,0.20269182,0.25030667,0.05643065,0.0038997093,-0.48779732,-0.046713956,0.21279217,-0.3456175,-0.2234588,-0.24761301,0.064407855,0.5321877,-0.21811499,-0.3297127,0.110611014,0.27179235,-0.24709328,-0.46387526,-0.024590492,-0.32397875,0.28251678,0.14856115,-0.41199917,-0.08232947,0.06661664,-0.3051468,0.05356912,0.2192578,-0.3038913,-0.014228014,-0.47806397,0.08772079,0.9162663,-0.050561003,0.19206749,-0.46526897,-0.51843613,-0.937617,-0.40680638,0.59924495,0.11059824,0.040317945,-0.5469716,0.19110054,-0.23390834,-0.0066408715,-0.1259518,-0.22192436,0.38395292,0.1861046,0.31167927,-0.16100611,-0.45259243,0.07152782,0.19467758,0.0012652775,-0.39342734,0.40209255,-0.043887593,0.8411717,-0.017259778,0.10885319,0.2949908,-0.4746605,-0.07450464,-0.1816758,-0.33685666,-0.44551653,-0.066282235,879 -308,0.2923384,-0.11301792,-0.49708357,-0.111555584,-0.21593182,0.11484976,-0.2605073,0.5026204,0.26645947,-0.36109835,-0.23131858,-0.23067532,0.25409544,0.33358055,-0.25236467,-0.8645584,0.12600984,0.2629562,-0.568722,0.6902016,-0.4496588,0.30026838,0.10021825,0.35896412,0.009058193,0.17506908,0.29683307,-0.057259664,0.03896667,-0.12309063,-0.1945689,0.46123543,-0.51391166,0.09826026,-0.32670546,-0.36553708,0.19246987,-0.5192653,-0.25383168,-0.8759127,0.25251144,-0.7300452,0.584236,0.24198528,-0.31146267,0.10573179,0.18182203,0.33459428,-0.1583299,0.0025852919,0.10035506,-0.21954934,-0.2414825,-0.1686509,-0.33020213,-0.4496962,-0.637809,0.08855634,-0.49987376,-0.27595934,-0.09809788,0.1533834,-0.25226218,0.09787674,-0.15025857,0.5013646,-0.3520744,0.009450054,0.36657265,-0.28585884,-0.0040866635,-0.54984784,-0.06933065,-0.05519541,0.36248758,-0.29308027,-0.24460696,0.14403114,0.33941975,0.66236854,0.019579776,-0.35179117,-0.08282008,-0.17249231,0.041270185,0.5671949,-0.09567412,-0.65670574,-0.20341277,-0.038161375,0.1599488,0.23250872,0.08653025,-0.39553443,-0.11720113,-0.19097929,-0.12791143,0.34944457,0.574323,-0.5058825,-0.19195332,0.16783875,0.5366385,0.13421527,-0.027689664,0.21443692,-0.013110464,-0.66636753,-0.14160372,-0.030688198,-0.18197322,0.6979614,-0.0887115,0.1494287,0.5197212,0.021023529,-0.050187778,-0.018349953,-0.01168586,0.020568753,-0.40726897,-0.3238137,0.35591614,-0.37923667,0.046111904,-0.40008172,0.7268762,0.31302077,-0.68707395,0.36900347,-0.5371896,0.20483539,0.05174261,0.62117463,0.62195325,0.16513464,0.23922561,0.5110237,-0.45910767,0.17679971,-0.099321805,-0.26766062,-0.116395496,-0.027115524,0.1785052,-0.46590754,0.17550255,-0.11126713,-0.108404875,0.21916993,0.4273416,-0.596648,-0.19958267,0.011780123,0.7751077,-0.27195075,-0.060455646,0.8581284,1.0439551,0.76870006,0.019660855,1.3551742,0.3107047,-0.1086053,-0.12715761,-0.06883349,-0.60231787,0.17894514,0.33813682,0.034088697,0.22904018,0.027498087,-0.10055837,0.4152184,-0.47300574,0.010254946,-0.119437546,0.045703888,-0.13421996,-0.06287113,-0.4916729,-0.21339503,0.05829538,0.099490404,0.2791507,0.29455438,-0.086636096,0.47657776,0.06692168,1.232953,-0.06417396,-0.018386213,0.1654609,0.15786281,0.35208175,0.039310392,-0.086913235,0.25089204,0.322014,-0.090178296,-0.54333806,0.026558459,-0.25256914,-0.30075693,-0.23054789,-0.24367593,-0.12715146,-0.049097486,-0.45848504,-0.018793143,-0.10085633,-0.25833246,0.3800889,-2.5769105,-0.15713316,-0.21608743,0.41538522,-0.021582939,-0.344946,-0.12976888,-0.5134672,0.44421288,0.28078917,0.38738194,-0.6224168,0.38540363,0.5171384,-0.5117256,-0.1907716,-0.74671495,-0.076882556,-0.04288521,0.38916484,0.05408722,-0.045228533,-0.026529752,0.2421748,0.53723675,0.117182106,0.08331548,0.12212377,0.43568262,0.04649352,0.2950283,0.14913139,0.5992065,-0.18899703,-0.18609837,0.36663297,-0.35419273,0.3232109,-0.13767897,0.09650158,0.32562292,-0.37945935,-0.5846975,-0.6190031,-0.33432662,0.8941136,-0.04638288,-0.49861392,0.21996339,-0.23072007,-0.28097692,-0.022937234,0.6301452,-0.15654565,-0.010274136,-0.70562965,-0.033564948,-0.045035712,0.16828986,-0.019154586,-0.041617975,-0.5753502,0.639889,-0.1644322,0.3194558,0.4397624,0.29009402,-0.08674895,-0.49828818,0.09264679,0.9159906,0.33061838,0.061572675,-0.21014255,-0.17766477,-0.31469855,-0.10716538,-0.10344132,0.7727676,0.6987831,-0.14932217,-0.029751837,0.2648365,0.20480813,0.19581455,-0.26243037,-0.32984537,-0.05213367,0.026327515,0.65189177,0.6789958,-0.347836,0.25358215,0.005031247,0.47284,-0.1970777,-0.3925036,0.432303,0.8877891,-0.12817009,-0.22522703,0.712382,0.41881225,-0.3084207,0.44408455,-0.6647174,-0.3116105,0.45513883,-0.1541109,-0.47428513,0.30315652,-0.25635812,0.17533779,-0.8749019,0.32808846,-0.21777773,-0.30843338,-0.58269554,-0.11259169,-3.1565118,0.19663455,-0.2641452,0.010112105,-0.22795358,-0.15713467,0.043127354,-0.48207322,-0.5798303,0.29628676,0.056753684,0.43992805,-0.1859445,0.13454607,-0.31018317,-0.29420382,-0.055480354,0.21699378,0.14169882,0.31375918,-0.18922012,-0.25474304,0.09755937,-0.21651922,-0.38741615,0.09285491,-0.7824835,-0.36670426,-0.076248236,-0.6583815,-0.2151599,0.6566154,-0.4545862,0.05460159,-0.27671164,0.09917007,-0.20820884,0.21524051,0.21676469,0.2500182,0.115619466,0.07113611,-0.0105191935,-0.34150383,0.10111448,0.028675178,0.21380393,0.2755013,0.0077302675,0.12950605,0.1904702,0.6439442,-0.004687828,0.7665415,0.34426668,0.037733767,0.2057728,-0.1829259,-0.43027624,-0.42228037,-0.2450656,-0.1160304,-0.40884224,-0.4482617,-0.16833092,-0.36305946,-0.7250993,0.5137355,0.077418834,-0.12438986,-0.01955506,0.3141152,0.47891173,-0.21571493,0.04051238,0.030692337,-0.03194441,-0.44683567,-0.28739932,-0.60425955,-0.4898936,0.10378386,0.7524651,-0.15262823,0.11361076,-0.03336418,-0.08153724,-0.08167512,0.38519993,0.19520721,0.13029875,0.6586305,-0.10760568,-0.6762698,0.49262798,-0.1004175,-0.51586145,-0.6547021,0.16290052,0.42764983,-0.7485876,0.6896999,0.45085213,0.09846275,-0.030356407,-0.5065178,-0.14798893,0.16241245,-0.23194847,0.46639988,0.18857667,-0.60119474,0.43398973,0.15288241,-0.09247183,-0.80811924,0.6313803,0.005775717,-0.4975406,0.12978873,0.4935107,-0.035417754,0.032042682,-0.203039,0.07793459,-0.341345,0.15899521,0.29351628,-0.1526558,0.36428306,-0.3431782,-0.12871735,-0.8131805,-0.065714575,-0.6290601,-0.10250134,0.10057592,-0.0136183975,0.038333558,0.063334376,-0.08513538,0.3638095,-0.504342,0.18767732,-0.1370552,-0.38651243,0.34662881,0.4342124,0.29146296,-0.2586932,0.6758363,-0.021331983,-0.09164902,-0.1938847,0.10480079,0.517874,-0.02519737,0.46116862,-0.17920011,-0.034629773,0.3147302,0.74881554,0.15023175,0.32549557,0.28338525,-0.00054153,0.34098542,0.05897916,0.08835128,-0.0898685,-0.40539196,-0.010130993,-0.21660581,0.043706916,0.42193168,0.083635755,0.51855004,-0.05091369,-0.45408118,0.10119703,0.14780317,0.17275171,-1.0557331,0.14642797,0.04558382,0.77593744,0.46167526,0.13737066,-0.029490102,0.4102932,-0.15098219,0.06610004,0.22395284,-0.041780163,-0.28576502,0.5569593,-0.4843827,0.44445375,-0.13555534,0.013355406,0.10161494,-0.15665706,0.29695866,0.77471226,-0.22752495,0.026250707,-0.13795604,-0.026489517,0.06277183,-0.38863915,0.099380866,-0.3516657,-0.3771891,0.6507766,0.5594736,0.29739907,-0.41153127,0.021583123,0.3269428,-0.1347566,0.023370566,0.035491552,0.099018894,0.08055758,-0.43919283,-0.1548014,0.5810758,-0.021770652,-0.05632758,0.019134903,-0.3825592,0.20711541,-0.021688279,0.048640687,-0.1843967,-0.73561317,0.111550696,-0.3511201,-0.45473334,0.5297409,-0.23003308,0.14363307,0.23833063,0.116896264,-0.41238025,0.40741378,0.00019777616,0.81761914,0.121842824,-0.058021978,-0.297834,0.13688318,0.2691557,-0.25289413,-0.089065835,-0.41910717,0.2581628,-0.59088016,0.32655352,-0.019793903,-0.2413173,0.0006680012,-0.061016615,-0.0036659082,0.42795867,-0.020733245,-0.17039837,0.22416793,-0.03478628,-0.1894411,-0.16229934,-0.12504223,0.3146209,0.18693566,-0.046548475,-0.11445756,-0.06562253,-0.28838742,0.37311095,0.090949945,0.30886352,0.38746324,0.08336905,-0.23440309,0.12485723,0.10065891,0.47064018,-0.13010393,-0.23185202,-0.12766744,-0.53482527,-0.36745414,0.1275555,-0.14793777,0.30612087,0.08364369,-0.09683082,0.72936696,0.18132421,1.1375222,0.01406045,-0.42542973,0.13582514,0.5474586,-0.016440192,-0.068022266,-0.28489387,1.1318582,0.5115249,0.04373208,-0.06663999,-0.30025962,0.12334199,0.10442993,-0.09760318,-0.07156099,0.0027228743,-0.5950801,-0.17390993,0.18554208,0.24644928,0.21055399,-0.11944902,0.21444543,0.1404533,-0.04338282,0.31667346,-0.6486177,-0.13336603,0.23573135,0.10175896,-0.020710047,0.10396166,-0.38847283,0.47182962,-0.43350145,0.0719119,-0.5592727,-0.0019601742,-0.2552363,-0.1663435,0.18064903,-0.17199683,0.3184058,-0.47553375,-0.27171603,-0.36705488,0.35055372,0.32920587,0.09365876,0.59773487,-0.14389415,-0.10084961,0.13538428,0.7550234,1.1417961,-0.27417532,0.062192682,0.3964689,-0.314805,-0.5099682,0.13758487,-0.40298575,0.038385555,0.021797316,-0.14078316,-0.52517307,0.120396785,0.09120711,0.009555042,0.095794536,-0.6235412,-0.21524054,0.35160968,-0.23437214,-0.27718323,-0.36006394,0.25013202,0.8326332,-0.10937481,-0.38650444,0.040924683,0.09425284,-0.2257963,-0.9155411,0.060519684,-0.3224922,0.2947201,0.1806369,-0.2894997,-0.17798987,0.1471425,-0.4086284,0.15410501,0.34804145,-0.31842643,0.09556586,-0.24117932,-0.11155169,1.0192429,-0.19989444,0.20249636,-0.5659936,-0.5461355,-0.8463057,-0.4004469,0.5272225,0.16198722,0.042741936,-0.544961,-0.12133904,-0.23945396,-0.031314038,0.11505556,-0.19657764,0.40951115,0.17424823,0.55824214,-0.15758051,-0.91329485,0.043949984,0.08377288,-0.4511124,-0.46124583,0.3505911,0.21819133,0.75618136,0.037886772,0.02631849,0.3325408,-0.44727203,0.05422617,-0.3284434,-0.02016342,-0.6943435,0.07316233,880 -309,0.48121977,-0.11508049,-0.42146847,-0.103425376,-0.4943889,0.23144172,-0.24792029,0.1681826,0.2737748,-0.3599821,0.13266174,-0.10281504,-0.11610104,0.3243913,-0.24425754,-0.80046815,0.07177873,0.019855082,-0.5324984,0.28519243,-0.5621892,0.47651097,-0.029537043,0.4142095,-0.029915733,0.24070354,0.25992742,0.11567319,-0.06992249,-0.19188207,-0.13530105,0.025955152,-0.6006712,0.14667135,-0.06715553,-0.36712578,-0.054841485,-0.36751637,-0.30351964,-0.7044461,0.40367746,-0.940135,0.57692266,-0.096731946,-0.41491273,-0.04992493,0.0957388,0.23614031,-0.19274357,0.15870538,0.22427347,-0.40989923,0.16910067,-0.15310988,-0.5090777,-0.6996142,-0.574763,-0.032313026,-0.66676813,-0.22425547,-0.3624607,0.2717339,-0.37726027,-0.066412136,-0.28033578,0.47527474,-0.39359862,-0.008569344,0.1669715,-0.23470823,0.18194199,-0.5711727,-0.11079832,-0.1126352,-0.0029996932,0.14010294,-0.1236534,0.29875213,0.37502548,0.42373943,0.14758778,-0.3028473,-0.30012003,-0.07495246,-0.010398475,0.5874294,-0.06251868,-0.23702659,-0.40223625,-0.1562406,0.3820008,0.2597822,0.11237492,-0.4321364,0.11101257,0.103561334,-0.16322559,0.54004645,0.47919428,-0.35394132,0.011207272,0.36897156,0.25944793,-0.10930265,-0.3538981,0.2058831,0.002478508,-0.4356208,-0.14302363,0.2252991,-0.004859956,0.6423425,-0.11295045,0.1845801,0.71480304,-0.2703906,0.014908884,-0.088560246,-0.082932755,0.017624822,-0.27232292,-0.18576808,0.15180779,-0.4123906,0.08968518,-0.32515943,0.82807356,0.096334,-0.7973579,0.42982262,-0.39165443,0.027251076,-0.11842755,0.57539344,0.5735802,0.5356728,0.039352212,0.99146754,-0.5275178,0.07185147,-0.02190977,-0.30746958,-0.011866986,-0.06483842,0.0917833,-0.4238564,0.21768942,0.039170988,-0.083368786,-0.089603744,0.48091713,-0.32961968,-0.06470237,-0.12661846,0.8008235,-0.35863858,-0.046871733,0.83504385,1.1865833,1.0127517,0.068530075,1.2036074,0.38567713,-0.011293888,-0.1266085,-0.17346048,-0.3397527,0.16584603,0.33959386,0.36328205,0.23815322,0.015310908,-0.17841785,0.38345394,-0.27297685,-0.15765862,0.04592947,0.25505146,0.10856644,-0.09725811,-0.41433045,-0.12871295,0.2365536,0.17535795,-0.037279837,0.2126253,-0.3380419,0.44591275,-0.007658739,1.1239927,0.028950674,0.10776677,0.02012817,0.59589595,0.23553285,-0.15201446,0.15863937,0.17957227,0.2645361,-0.068795465,-0.5515538,0.06492121,-0.41621742,-0.47538865,-0.1999584,-0.2984052,-0.07052694,-0.1015131,-0.49220237,-0.19079074,0.08654149,-0.3186194,0.39546907,-2.4226053,-0.08728354,-0.2723908,0.40054676,-0.14442901,-0.34999937,-0.080035694,-0.5059008,0.39495334,0.37703496,0.30008525,-0.52153957,0.49550763,0.3933616,-0.17657022,-0.12678835,-0.7803792,0.13137835,-0.16205102,0.44229972,-0.04392337,-0.045015845,-0.18174252,0.25439805,0.8767712,0.14748304,0.043867633,-0.000980091,0.34355316,-0.058554288,0.46603107,0.036905702,0.604427,-0.20123383,-0.106011204,0.37741014,-0.49927014,0.11918948,0.05485781,0.14673895,0.41219488,-0.50136876,-0.74850553,-0.71037036,-0.44835818,1.1762011,-0.28226516,-0.6796532,0.34502488,0.08969545,-0.28038022,0.112980984,0.54209954,-0.031131828,0.044618748,-0.5524233,0.0269847,-0.12816483,0.13943094,-0.12516023,0.11537569,-0.32054678,0.610377,-0.2671413,0.54179174,0.31332567,0.3700972,-0.07795703,-0.44913763,-0.041630115,0.7777967,0.45599794,0.06932425,-0.061176784,-0.18693008,-0.18865229,-0.35865778,0.13808052,0.606045,0.75489354,-0.09074764,0.07411003,0.28073025,-0.3211773,0.08855322,-0.09388146,-0.30280045,-0.034193587,0.11239186,0.47579974,0.5082037,-0.05288623,0.35147968,-0.13162552,0.32206523,-0.3011376,-0.47216472,0.35215673,0.81592155,-0.21283413,-0.25874218,0.5429339,0.42130682,-0.36172745,0.35665885,-0.6337516,-0.24378143,0.6956398,-0.03419874,-0.5538854,0.024886219,-0.3363062,0.0058642407,-0.8357342,0.49184448,-0.19238065,-0.8907705,-0.31445286,-0.36947525,-3.944397,0.14269431,-0.16875495,-0.11686203,-0.13322796,-0.22788659,0.37509042,-0.47252065,-0.40663752,-0.028279563,-0.042228572,0.5893208,-0.02503015,0.14516108,-0.35892043,0.0736904,-0.42025727,0.27231064,0.09513649,0.34904996,-0.022225471,-0.3118662,0.21273856,-0.31941244,-0.6664704,0.021514352,-0.5828743,-0.44716942,-0.034967635,-0.41059628,-0.35301098,0.75012225,-0.33722576,0.057310667,-0.3238613,-0.008418918,-0.18040864,0.3620272,0.2568,0.17400007,0.06421211,0.006668721,-0.010101765,-0.419707,0.26290044,0.11057527,0.17317854,0.3943754,-0.20027441,0.10564751,0.52432615,0.59053534,0.02466956,0.8426784,0.070056185,-0.13725875,0.42343426,-0.21610479,-0.36278698,-0.70686305,-0.39634302,-0.08231417,-0.34419802,-0.426705,-0.05409276,-0.3814506,-0.6988983,0.3778072,0.09274556,0.2728645,-0.25048432,0.27971184,0.2536043,-0.070712924,-0.027326887,-0.0453106,-0.18566313,-0.44176844,-0.44998777,-0.6943596,-0.66815025,0.08977448,1.204407,-0.02444277,-0.20683426,0.03369802,-0.23937458,0.03336014,0.08914301,0.18905191,0.081027985,0.15472552,-0.19363254,-0.63943493,0.32291454,-0.28494263,0.02319427,-0.64138705,0.16115545,0.8357372,-0.53125226,0.5064319,0.3116523,0.40313625,-0.123732015,-0.6467584,-0.20803247,0.11270311,-0.20819692,0.6431826,0.11195275,-0.8383981,0.49216643,0.071569435,-0.2369261,-0.47939762,0.50088185,0.040478174,-0.16638453,-0.022488762,0.41229212,0.107391916,-0.13567199,-0.21742694,0.2535265,-0.61857265,0.33578172,0.31227016,0.07577231,0.64902,-0.1559846,-0.25924143,-0.6254145,-0.23852828,-0.50673497,-0.2159235,-0.031366125,-0.050737858,0.032148484,0.25453126,-0.13186227,0.503673,-0.20816647,0.17618027,-0.14147083,-0.30076572,0.499746,0.51972514,0.39670992,-0.417116,0.62546796,0.1877868,0.021561272,-0.042126402,0.04943009,0.56824094,0.23157352,0.42762983,-0.093534395,0.0014007569,0.041181922,0.6197632,0.23375721,0.5233971,0.18912888,-0.3874863,0.40891916,0.19889268,0.18818855,-0.0806571,-0.40127423,-0.05382425,-0.09289937,0.12611136,0.38678408,0.16440298,0.37610167,0.024074525,-0.08977743,0.16310813,-0.11836215,-0.2594367,-1.2049505,0.3065403,0.075424165,0.6977587,0.3138354,0.01801874,-0.14075002,0.6161377,-0.21480182,0.025723653,0.43808368,0.21017425,-0.21987745,0.55708086,-0.55072284,0.41114154,-0.21318194,-0.0014267584,0.3004885,0.27583688,0.534004,0.8888238,-0.06123205,0.06526708,-0.0503801,-0.27107814,0.14888248,-0.26704362,0.1692157,-0.5687035,-0.33313382,0.57274014,0.32793966,0.27334315,-0.3140968,-0.16513415,0.22794005,-0.07612273,0.14060077,-0.108410336,-0.23068355,-0.15468079,-0.5982465,-0.38866603,0.46853366,-0.1298994,-0.031858746,0.033894364,-0.31587118,0.22651638,0.0077221077,-0.17549516,0.19571029,-0.70490354,0.014089218,-0.25465143,-0.48804146,0.25713456,-0.4468289,0.3239299,0.11331404,-0.052665677,-0.31089336,-0.037709173,0.34366998,0.73027617,0.08413971,-0.20895618,-0.36572233,-0.15662776,0.25896823,-0.36591414,0.00025792918,-0.20564528,0.16273932,-0.5973638,0.39380944,-0.3812264,-0.23288694,0.1933159,0.024090698,-0.005400477,0.4298469,-0.15468654,-0.111259274,0.34157822,0.058399566,-0.3817207,-0.08905554,-0.18912227,0.35847715,-0.12385731,-0.15998705,0.13392839,-0.14027892,0.07895445,0.45628846,0.05933067,0.28082338,0.1804839,-0.04923497,-0.43328384,-0.058054145,-0.12434907,0.45403624,0.015699107,0.09662322,-0.13790008,-0.36479136,-0.24107264,0.21374823,-0.16673121,0.15569665,0.09680922,-0.563587,0.7963266,0.0672227,1.2538645,0.05177756,-0.4278901,0.044894416,0.52806103,0.07864303,0.19570342,-0.4304218,1.0969234,0.64099586,-0.21080138,-0.1259624,-0.48153773,-0.19956547,0.17736273,-0.29926005,-0.36149815,-0.17378059,-0.71728694,-0.10144978,0.024579203,0.1800669,0.08582971,0.013067188,0.03546129,0.3328412,0.096130274,0.51403195,-0.5297774,0.0901169,0.39478716,0.3115764,0.040175352,0.2029448,-0.29685658,0.36102527,-0.6969189,0.33698788,-0.31632197,0.10596783,-0.025246393,-0.25170952,0.22926396,0.094972655,0.2742274,-0.1447112,-0.3455982,-0.22458553,0.7174608,0.09250859,0.23937885,0.7349577,-0.30144176,-0.05536653,-0.05297972,0.5773641,1.4427732,-0.03252901,0.19964409,0.3073079,-0.40239665,-0.5969454,0.17023157,-0.33738062,0.052366663,-0.09923526,-0.26350418,-0.36520997,0.30322775,0.06458644,-0.17439607,0.16624708,-0.36153716,-0.24280551,0.34811732,-0.3092292,-0.28751394,-0.32532462,0.39212477,0.6394806,-0.31160024,-0.3900256,-0.13118668,0.41932952,-0.26995933,-0.6703257,0.12964204,-0.08327751,0.3925553,-0.021478152,-0.39904305,0.07987178,0.29995677,-0.47870934,0.022576664,0.2885819,-0.3482996,0.04397663,-0.28861842,-0.0717728,0.9519195,0.13962673,0.100604534,-0.9073789,-0.5529059,-0.8850478,-0.47737873,0.06902874,0.25753254,0.004293116,-0.45650995,-0.28667578,-0.17354201,0.010413806,0.04404258,-0.6495303,0.27907082,0.00458618,0.6011074,-0.082705975,-0.79282963,-0.07105125,0.18188994,-0.267969,-0.53165585,0.6144562,-0.1272859,0.75058675,0.23445949,0.08145467,0.07798492,-0.6110079,0.42513084,-0.22244157,-0.3063611,-0.61401874,0.1512228,882 -310,0.3746295,-0.21929921,-0.38911,-0.11615025,-0.34140953,0.019816482,-0.27775592,0.16225168,0.111195534,-0.3146471,-0.23523998,-0.22413895,0.11071185,0.36736277,-0.15288094,-0.45417926,-0.1713407,0.12303754,-0.7064795,0.5669357,-0.46439523,0.2596282,0.27014425,0.34815156,0.20115662,0.29973373,0.28496125,-0.11962218,-0.06457934,-0.042106006,-0.23725745,0.26843432,-0.47479802,0.008473166,-0.2325844,-0.35789022,-0.0022846023,-0.51581055,-0.21953163,-0.7778922,0.12638964,-1.0365984,0.5225988,-0.18510373,-0.1148418,-0.006918212,0.46489257,0.39710993,-0.32290685,0.050702307,0.25002053,-0.24241194,-0.17808262,-0.14967483,-0.093894765,-0.46116728,-0.54619825,-0.14132604,-0.55343276,-0.22501612,-0.24064597,0.25357136,-0.36695632,0.20542185,-0.17203985,0.27897316,-0.417296,0.005563863,0.23747009,-0.18279251,0.3764178,-0.4110438,-0.09324602,-0.13368362,0.39400595,-0.13126615,-0.14441092,0.39772895,0.4736751,0.32597697,0.22463973,-0.27764598,-0.1905941,-0.08658841,0.020285996,0.45456424,-0.19189784,-0.35495093,-0.2783276,0.11987901,0.4030776,0.5114996,-0.16183211,-0.2767512,-0.01839203,-0.054442894,-0.31337947,0.42794037,0.4617768,-0.2512916,-0.4268403,0.28487322,0.49376792,0.27479705,-0.28967744,0.011499208,0.029087523,-0.53187525,-0.03429906,0.23325114,-0.09203838,0.47113392,-0.08965022,0.2362938,0.85007364,-0.18662685,-0.04632016,-0.14028384,-0.057592113,-0.35304296,-0.13200411,-0.13240921,0.10500419,-0.58452237,0.17322813,-0.21470429,0.8368566,0.06522241,-0.72754586,0.35311046,-0.5771259,0.14039093,-0.11291831,0.57958335,0.67800623,0.40716985,0.47809163,0.74862504,-0.27407694,0.13420828,-0.21779858,-0.5016672,0.056974426,-0.2032372,0.046556495,-0.4916638,0.09376454,-0.102685735,0.061212752,-0.0067098695,0.5283541,-0.5949572,-0.023097014,0.14457512,0.70513713,-0.36214346,-0.14404605,0.620945,0.8991192,0.943465,0.08275631,1.1108052,0.36060652,-0.11381319,0.20054294,-0.2320209,-0.55039495,0.29426584,0.38342467,-0.23219861,0.27681926,0.011134211,-0.08810774,0.24195524,-0.37501258,-0.13830566,-0.1309652,0.19694008,0.19753362,0.06835124,-0.40230128,-0.22615552,-0.0035256227,0.013187417,0.21183817,0.09633315,-0.24355036,0.3915041,0.039232884,1.5847396,-0.094433315,0.027588714,0.080737874,0.56812835,0.21707319,-0.075443864,-0.06628785,0.32861608,0.4239903,0.10992956,-0.61082006,0.23217662,-0.22336563,-0.3956774,-0.06116837,-0.33523542,-0.15159123,0.056301516,-0.447513,-0.08098116,-0.040081654,-0.33771196,0.51423544,-2.7970197,-0.18306813,-0.13830265,0.25375712,-0.32499796,-0.2189786,-0.16472048,-0.5645491,0.28646618,0.26542002,0.45653504,-0.6772099,0.41780555,0.45931107,-0.594403,-0.16638885,-0.7296316,-0.124234505,-0.07031821,0.572056,0.048312187,-0.08564035,-0.07504098,0.17285486,0.775096,-0.04732355,0.15445969,0.4891936,0.43607247,0.26147023,0.68099415,0.009046904,0.56798327,-0.16697177,-0.19239344,0.36335963,-0.1813161,0.20220512,-0.10481403,0.12458265,0.55718005,-0.4294466,-1.029463,-0.62505496,-0.41945547,1.0964977,-0.42387664,-0.42307916,0.15698287,0.05986441,-0.07133008,0.0032446801,0.5135108,-0.14717034,0.15192226,-0.79148126,0.12965769,0.014793268,0.20826861,0.061910223,-0.014658515,-0.20857035,0.5337462,-0.0512109,0.5655158,0.17727576,0.28540096,-0.24625991,-0.5218477,0.15798025,0.99078625,0.2630252,-0.09882782,-0.2030905,-0.35783488,-0.10783771,-0.18431212,0.089211814,0.4208967,0.7198939,-0.0024921,0.27523884,0.31499022,-0.053647574,0.012234942,-0.19468495,-0.1397252,-0.016665148,0.0740087,0.41348654,0.65903765,-0.07920552,0.5690449,-0.25343046,0.32722104,0.04686446,-0.5904463,0.5473663,0.74343,-0.1984549,-0.015199521,0.45825914,0.5467464,-0.30651176,0.40153462,-0.5938881,-0.26891625,0.73814666,-0.22180405,-0.5222572,0.19807047,-0.25134057,0.13939491,-0.681259,0.27720463,-0.18412977,-0.37754056,-0.4150718,-0.07207512,-3.5018952,0.09497962,-0.08637406,-0.3030981,-0.14528018,-0.21499012,0.3136699,-0.6042445,-0.5767974,0.14163874,0.1851066,0.5967444,-0.02937352,0.118865974,-0.3615322,-0.052084222,-0.15580828,0.2040475,0.24995764,0.2955075,-0.19049937,-0.5072521,-0.06653456,-0.088947885,-0.54587185,0.17413191,-0.5913335,-0.5428088,-0.13377602,-0.47647658,-0.3295053,0.6595859,-0.38970488,-0.03521538,-0.20201524,0.08826248,-0.14644758,0.27746737,0.25076446,0.16848032,0.068125516,-0.085244775,0.16123213,-0.325402,0.5563287,-0.0060127634,0.2433626,0.16853577,0.034899067,0.20521055,0.48504636,0.47986308,-0.09378583,1.0332302,0.4198254,-0.1396938,0.13963714,-0.16585748,-0.24097201,-0.7193672,-0.28633782,-0.17190515,-0.4442395,-0.39781716,-0.008551554,-0.10259921,-0.7903814,0.7528919,-0.080170244,0.36841312,-0.2139192,0.23307739,0.49996343,-0.24056247,0.044416595,-0.0983425,-0.15510593,-0.5767949,-0.35384735,-0.65485954,-0.5062534,-0.084437594,0.9505721,-0.20460816,0.048396565,-0.23427247,-0.27751482,-0.005345305,0.055410538,0.11656905,0.45454502,0.48487774,-0.12764834,-0.7470447,0.43365797,-0.06997214,-0.016111247,-0.4532682,0.1390134,0.63658375,-0.6676146,0.41640207,0.35279146,0.046869673,-0.0695345,-0.49814305,-0.22490664,-0.104434915,-0.2673134,0.38592988,0.13029866,-0.77194554,0.6023438,0.30767447,-0.39762852,-0.68023044,0.30945295,-0.086033806,-0.21222325,0.033840816,0.28503484,0.1053953,-0.029303452,-0.28316143,0.16681358,-0.48460928,0.36794314,0.071084835,-0.082446694,0.28770933,-0.0657925,-0.3225851,-0.68054414,-0.0077749095,-0.46279764,-0.30159226,0.3656186,0.007726272,-0.0718205,0.26564452,-0.14255017,0.39956087,-0.29556432,0.03363284,0.071889795,-0.27485308,0.17001489,0.5372136,0.36780244,-0.26595703,0.64354825,0.20533694,-0.2762184,0.12369339,-0.022772022,0.30636072,0.11856018,0.28332138,-0.211935,-0.30808315,0.4509608,0.70259374,0.21816212,0.38525823,-0.03017563,-0.12735607,0.39014068,0.05007743,0.13730189,0.024577688,-0.45484325,-0.07069402,-0.16685492,0.12126514,0.5505817,0.23000653,0.33189258,0.052293718,-0.17690511,-0.01379682,0.1059754,-0.08926835,-1.1837689,0.2673874,0.28411955,0.7858798,0.34933499,-0.05133791,-0.081106834,0.7138805,-0.34101868,0.07408897,0.417922,0.14767303,-0.50366366,0.79507935,-0.6420943,0.40060574,-0.14867307,0.062233943,0.12571405,0.17324701,0.25344476,0.94057304,-0.2291366,0.0890882,-0.030858431,-0.14212853,0.019535892,-0.29215857,0.013953598,-0.3872077,-0.428701,0.68556756,0.41426122,0.36073595,-0.089726135,-0.061504208,-0.048515517,-0.17904441,0.17796387,0.049394023,0.07613933,-0.007840745,-0.49995688,-0.16847862,0.62685907,0.051355407,0.19247082,-0.15105106,-0.23545766,0.039084468,-0.21826053,-0.0048856577,-0.03294946,-0.62736547,-0.09408851,-0.20637833,-0.5288003,0.3975506,-0.3583291,0.18234862,0.1912284,0.008325587,-0.22980891,0.14908828,0.34288165,0.7092443,-0.006904459,-0.22422782,-0.31135783,-0.01734158,0.26264173,-0.2280213,0.03136294,-0.2941274,-0.03495338,-0.5695949,0.57137996,-0.18601926,-0.523594,0.21075559,-0.22038978,-0.04610254,0.6185001,0.05178133,-0.08231844,0.0063257418,-0.15276863,-0.5056797,-0.05660294,-0.19106713,0.15771522,0.32352364,-0.1312264,-0.00788023,-0.25746307,-0.123657845,0.52709955,-0.007456557,0.46697518,0.19316782,0.1477457,-0.15739037,-0.0084404545,0.059738763,0.5810247,0.15747906,-0.030278882,-0.36268944,-0.35484168,-0.3332982,-0.02483364,-0.0795378,0.276507,0.03209006,-0.4132258,0.9703932,-0.16420099,1.082162,0.12141968,-0.33471614,-0.02019528,0.49575183,-0.09320875,0.028141024,-0.36382866,0.7821275,0.5668486,0.032811895,-0.06475744,-0.38833156,-0.12812681,0.36366075,-0.38482377,-0.1121833,-0.007950662,-0.47754386,-0.5147678,0.26317,0.16576557,0.17064747,-0.10356713,-0.04662907,0.19533709,0.07454429,0.55870247,-0.562368,-0.14457826,0.16661192,0.34479424,-0.2387963,0.23009995,-0.44443658,0.47954497,-0.5166576,0.0988662,-0.4433077,0.14963984,-0.24550724,-0.25436068,0.20400119,-0.11025881,0.40697625,-0.12361858,-0.35333693,-0.12589242,0.5590455,0.07267412,0.13327919,0.6866909,-0.25657907,0.0405872,0.10144235,0.45677373,1.2816342,-0.55119956,0.014045522,0.34918007,-0.3650962,-0.52607334,0.4449436,-0.32031953,-0.063139424,0.053250365,-0.42127043,-0.27708513,0.32188034,0.11429892,0.1311474,0.070132665,-0.4936083,-0.026014829,0.36238468,-0.21357098,-0.22260837,-0.24742442,0.43290636,0.6311772,-0.30180973,-0.34392816,0.034473643,0.32653823,-0.27894017,-0.45894966,-0.12864819,-0.21406314,0.31053796,0.1177382,-0.29770166,-0.0848163,0.14925343,-0.4511822,0.017759927,0.12230361,-0.3934325,0.08862854,-0.1164337,-0.09519137,0.9816253,-0.32515624,-0.15431643,-0.74064183,-0.42432785,-0.8332954,-0.31461728,0.24580905,0.20790474,0.017665435,-0.39376628,-0.038241826,-0.13386743,-0.32375655,-0.03955915,-0.5236104,0.3583861,0.13931337,0.48569164,-0.26302198,-0.82708615,0.07749192,0.057753857,-0.07228044,-0.66769546,0.61120516,-0.077499576,0.6963548,0.14969735,-0.024621995,0.19529413,-0.31059715,0.087704726,-0.40253365,-0.1879551,-0.88688856,0.073640995,895 -311,0.43566558,-0.2431108,-0.39669093,-0.22390749,-0.45980427,0.092998825,-0.35254145,0.118964836,0.21514018,-0.43564096,-0.34222063,-0.036465533,0.11345542,0.1838386,-0.05603278,-0.44699574,-0.14081314,0.19557603,-0.819011,0.6653328,-0.5586863,0.25393316,0.24340357,0.4327942,0.21919307,0.20508452,0.2703716,-0.046835575,-0.24091859,-0.095792055,-0.13637975,0.3590722,-0.6295545,0.13082467,-0.43167534,-0.4550708,-0.043471113,-0.47841582,-0.2605839,-0.7492135,0.1676921,-1.1596655,0.6422404,-0.050910536,-0.15292536,-0.02084407,0.4250751,0.37996146,-0.4111732,0.18395089,0.2649197,-0.37704363,-0.3347527,-0.3902034,-0.07465574,-0.45007583,-0.45315665,-0.16644545,-0.4724558,-0.17580418,-0.21398582,0.30373,-0.25331786,-0.0006669124,-0.17580375,0.21670693,-0.42726845,0.13664478,0.3237765,-0.14752005,0.13202222,-0.6198768,-0.10929668,-0.20173556,0.44466692,-0.25145537,-0.31038114,0.41247287,0.4316377,0.5877083,0.27183646,-0.37963027,-0.19842218,-0.13544334,0.097359896,0.3480693,-0.12323896,-0.24889706,-0.2708766,-0.05750541,0.7119198,0.509861,0.09361245,-0.19089988,-0.017306866,-0.10698928,-0.08434423,0.5151968,0.52975184,-0.27593726,-0.27704614,0.29263318,0.5887203,0.2810784,-0.25530714,0.084735356,0.031195465,-0.54981196,-0.13811143,0.32443807,-0.12818713,0.5659465,-0.14808486,0.10712366,0.92138034,-0.21928936,0.14434077,-0.04867076,0.059310492,-0.24437799,-0.2759096,-0.29842803,0.31356248,-0.63420856,0.10096862,-0.33163413,0.58496666,0.08392895,-0.4944671,0.28928986,-0.599304,0.22957537,-0.025543002,0.66020423,0.8466493,0.5000788,0.39265746,0.85886323,-0.18992944,0.10970647,-0.11643016,-0.23965602,0.057607923,-0.38394526,0.20957702,-0.53768337,0.23427357,-0.24778228,0.20604032,0.0026280223,0.53693104,-0.5347973,-0.2488018,0.27840036,0.6177046,-0.30611742,-0.033186376,0.75667167,0.924161,1.14076,0.15963207,1.4743347,0.40308937,-0.23410884,-0.1313304,-0.061979108,-0.7567922,0.14599438,0.33751306,-0.2940789,0.28922,0.023120228,0.005034588,0.26217172,-0.56783897,-0.1027944,-0.10783191,0.4205888,0.10655069,0.023827774,-0.45357513,-0.11763995,0.05774734,-0.10354454,0.27881375,0.15833633,-0.24217448,0.4531754,0.09860848,1.1861306,-0.21875216,-0.03149869,0.15132459,0.47987857,0.27511224,-0.11130068,0.11616118,0.34929508,0.36387062,-0.1677825,-0.58326244,0.15532354,-0.33405325,-0.4483419,-0.24152726,-0.3733063,-0.108818136,0.055276886,-0.25113994,-0.27142817,-0.04800636,-0.289452,0.39648777,-2.4514127,-0.36674196,-0.23703827,0.3082659,-0.31498134,-0.13656737,-0.22499725,-0.49445602,0.3871902,0.124228954,0.48201656,-0.7220487,0.41905484,0.5613347,-0.7204774,-0.23138943,-0.83048606,-0.19060951,-0.03623716,0.45104715,-0.0015577237,-0.3073183,-0.011565459,0.10986592,0.5927744,0.030016867,0.16956252,0.6248848,0.5645614,0.1736474,0.5806369,0.07099282,0.55881554,-0.45057216,-0.2886339,0.5276869,-0.30962875,0.42006597,-0.04990573,0.0009841959,0.8911823,-0.5059131,-0.8610723,-0.6370356,-0.34090438,1.0106465,-0.42336842,-0.59751534,-0.07100798,-0.25106937,-0.00010727246,0.10130043,0.6305617,-0.064987056,0.08463143,-0.81341225,-0.11590746,0.035212055,0.30189267,0.0062321844,0.104236,-0.3205916,0.74215597,-0.118029244,0.5463038,0.2347285,0.2499889,-0.3375871,-0.32868093,0.0909468,0.9413422,0.5391313,0.0038730581,-0.21824466,-0.4007825,-0.06659089,-0.37564963,0.14788987,0.5198729,0.6327056,-0.19379419,0.2795941,0.41677237,-0.081542745,-0.06330714,-0.26955014,-0.19862694,-0.22645426,0.1400946,0.5809882,0.7895761,-0.095396556,0.4328806,-0.19777231,0.22809115,-0.04274989,-0.6920397,0.6379351,0.7699097,-0.23344222,-0.017560558,0.6159913,0.42751697,-0.3949151,0.57684153,-0.90611637,-0.4273087,0.6296104,-0.0526117,-0.39808705,0.20903036,-0.36978674,0.33076075,-0.7736556,0.30640805,-0.3356851,-0.18756254,-0.7436393,-0.19597177,-2.1044037,0.19675829,-0.1538683,0.018494058,-0.2935084,-0.30935088,0.27354452,-0.5446607,-0.71310276,0.23723075,0.24395518,0.6017975,-0.11490227,0.20267348,-0.3054416,-0.26945078,-0.16875926,0.085951716,0.1803902,0.37581077,-0.34275827,-0.49404076,0.14119108,0.039371595,-0.42536557,0.024480926,-0.6642631,-0.5235519,-0.10860471,-0.457544,-0.12406889,0.5380712,-0.42026997,-0.08975906,-0.29541877,0.09600224,-0.17327504,0.22176416,0.23968604,0.25956756,0.16103347,-0.010827907,0.016837064,-0.3151695,0.43653807,0.07394389,0.07828307,0.19298248,-0.18241237,0.15919027,0.32900327,0.6502809,-0.22224118,1.0195796,0.36918923,-0.07854999,0.20427844,-0.19722632,-0.37770388,-0.6372031,-0.28919408,-0.11803947,-0.48655555,-0.4169362,0.11768116,-0.23853773,-0.9241276,0.80356234,0.03254377,0.35401735,-0.121213,0.36629993,0.40319303,-0.25901538,-0.04435229,-0.128684,-0.17004925,-0.6380542,-0.45667562,-0.6983277,-0.539675,-0.06941121,0.9359146,-0.28638372,-0.07715271,0.19557902,-0.25450075,0.051640145,0.19822183,-0.03721826,0.21104045,0.83168894,0.11921004,-0.68664944,0.32471904,0.10886813,-0.06002748,-0.45322078,0.28353357,0.7344115,-0.7166327,0.5198799,0.4703152,-0.0003204445,-0.19373296,-0.71521163,-0.29558876,-0.08801436,-0.30364063,0.42162478,0.17470023,-0.7682941,0.624856,0.24312331,-0.48740903,-0.79632694,0.43252233,0.015820106,-0.17125796,0.037252314,0.38088715,0.14109057,-0.10774895,-0.2190343,0.2146412,-0.4003062,0.44228745,0.13265485,-0.22447321,0.3735512,-0.2818072,-0.46072057,-0.7257097,0.14895684,-0.5476604,-0.41191956,0.3956498,-0.2103268,-0.14483525,0.25935715,0.23954654,0.3795393,-0.29285592,0.082652345,-0.13896374,-0.3378886,0.18706447,0.5015228,0.37325853,-0.41216984,0.65842783,0.2005733,-0.227952,0.049915593,0.017573027,0.26138923,0.063110195,0.33517262,-0.07842552,-0.10357942,0.34791216,0.7693451,0.1392772,0.34688404,0.08159067,-0.04620591,0.44818163,0.1417858,0.23877643,-0.2210308,-0.4957391,0.00086874166,-0.04305507,0.118978456,0.41551888,0.35404977,0.45482534,0.076332375,-0.015429346,0.01021534,-0.00275867,-0.11135582,-1.4716724,0.17823535,0.23194082,1.0134984,0.353704,-0.09788094,-0.017795514,0.7417725,-0.38000074,-0.07750996,0.47338971,-0.0179691,-0.39295822,0.7375731,-0.48209122,0.3318263,-0.22992416,0.016833926,-0.014744214,0.26171538,0.32636452,0.8459311,-0.326109,0.076360434,-0.13958177,-0.16987874,0.13303424,-0.3088073,0.026466783,-0.32905072,-0.46252352,0.84992474,0.2896606,0.5195598,-0.3278771,0.005958991,0.008739058,-0.4174601,0.35564035,0.077428095,0.057292573,0.019550657,-0.46154568,0.006172792,0.6104594,-0.0018140514,0.11000768,-0.10068093,-0.34290615,0.04875196,-0.14098077,0.09130122,-0.08843788,-0.8803481,-0.22206113,-0.32733917,-0.49780864,0.37359306,-0.21625061,0.050095674,0.3021495,-0.15502222,-0.012252049,0.21621838,0.13074799,0.8917405,0.009048632,-0.27992752,-0.213296,0.098782524,0.3498949,-0.2372755,0.27592108,-0.23659866,0.15095451,-0.6453093,0.725491,-0.211879,-0.36129892,0.25777498,-0.29394048,-0.13368812,0.47504744,-0.108819254,-0.105262056,0.20738854,-0.27755424,-0.48251858,-0.086605765,-0.32100648,0.19419065,0.23345663,-0.009864855,-0.2088107,-0.24798161,-0.180607,0.54181665,0.08533212,0.3416269,0.30901316,0.012108758,-0.35860077,0.20737258,0.2081919,0.5728742,0.002740526,-0.114573866,-0.37093106,-0.32954985,-0.39727554,0.49814066,-0.13902913,0.11756849,-0.040292837,-0.41885886,1.1223243,-0.12613389,1.0878847,0.14446236,-0.45454183,-0.008940725,0.61400473,-0.22751638,0.009695862,-0.31187984,0.81961197,0.5500986,0.111695684,0.054496113,-0.48296234,-0.016907986,0.3759867,-0.3232231,-0.07851331,0.011163687,-0.49699333,-0.483365,0.20091729,0.24092038,-0.00039726097,-0.23048376,0.13354205,0.2729936,0.19347195,0.5088606,-0.7327109,-0.38345852,0.19699098,0.22109279,-0.2331859,0.123076715,-0.34335652,0.39012605,-0.7076261,0.03455559,-0.47297812,0.13753779,-0.1293108,-0.3585243,0.13385324,-0.04107511,0.50326276,-0.3809101,-0.36297086,-0.04809644,0.40647826,-0.016782364,0.29461068,0.5832868,-0.29181883,0.106226996,0.15403867,0.5275935,1.390788,-0.45605093,0.07331131,0.20684896,-0.42579275,-0.5601738,0.5979361,-0.4623101,0.023693789,0.009077754,-0.5977846,-0.44911024,0.16214797,0.16081998,0.24405782,-0.011156738,-0.64980835,-0.1055286,0.338304,-0.16591737,-0.13825972,-0.19429536,0.17685065,0.667904,-0.124492936,-0.3023395,0.21232468,0.3495374,-0.29828224,-0.4725744,-0.02559828,-0.34773844,0.3109675,0.09603559,-0.21091647,-0.032225464,0.14332604,-0.5725234,-0.0040290356,0.22017032,-0.3834424,-0.062470004,-0.33702984,0.18227917,0.8966802,-0.18430549,-0.062089674,-0.68562496,-0.4723083,-0.7978726,-0.27090833,0.045325447,0.2001745,0.034689996,-0.43440205,0.07904007,-0.16265737,-0.22283827,0.07180546,-0.6110048,0.44026098,0.25809368,0.46654847,-0.33961102,-0.8222202,0.089468814,-0.04561961,-0.04962224,-0.44131476,0.6061138,-0.00044635136,0.8460493,0.12779206,-0.13857044,-0.029879777,-0.5027419,0.19212158,-0.35642478,-0.056956165,-0.9003493,0.05068251,902 -312,0.54192483,-0.030685091,-0.5764431,-0.2908648,-0.537059,0.30094382,-0.2031496,0.093077496,0.33821085,-0.54752797,-0.004661226,-0.24849838,0.017093142,0.32993582,-0.2399912,-0.781687,-0.076310806,0.20471643,-0.8187647,0.3736517,-0.5047611,0.2614647,0.34182236,0.20538919,0.008158405,0.095688865,0.36230263,-0.2841379,-0.046923064,-0.040767793,-0.084099725,-0.015824588,-0.6491453,0.24171062,-0.03030402,-0.2914565,0.118561104,-0.55762076,-0.27253017,-0.6250225,0.42513427,-0.8886685,0.5094984,0.12529033,-0.30420026,0.1694616,0.07948599,0.05895153,-0.22600213,0.187178,0.23653345,-0.35510123,-0.07886316,-0.2211056,-0.40024486,-0.50355536,-0.71995354,0.048967652,-0.5155455,-0.14283963,-0.24044393,0.34405002,-0.3579659,0.05117063,-0.17711058,0.50087917,-0.33683863,-0.20193067,0.30105674,-0.14087254,0.2420353,-0.29217184,-0.09189239,-0.13730222,0.3543183,-0.06928148,-0.19563408,0.2834434,0.20346895,0.6820504,0.121910855,-0.34181356,-0.16835466,-0.0034987747,0.15018898,0.45739862,-0.13314953,-0.30486247,-0.1800423,-0.046241723,0.19126533,0.3733794,-0.10484408,-0.51329035,0.19380666,-0.006174376,-0.28470185,0.5830946,0.47523198,-0.4020475,-0.2644289,0.34732327,0.3658642,-0.076163486,-0.15790823,0.2102731,-0.023391414,-0.74047977,-0.3837916,0.43725014,-0.16430695,0.43504816,-0.1366244,0.1256402,0.7077506,-0.24165162,-0.09421498,-0.22553441,-0.24808636,-0.03160281,-0.20367408,-0.063744076,0.2534989,-0.49148777,0.07539431,-0.24259607,0.772459,0.17067634,-0.86936975,0.33017606,-0.64533067,0.14095777,-0.13019958,0.7341791,0.72315484,0.44366685,0.23707017,0.88893014,-0.5050781,0.16778356,-0.11776102,-0.48199502,0.070733376,-0.13232549,0.050629403,-0.34616163,-0.012968847,-0.07756449,-0.054079853,-0.048635982,0.40301362,-0.29004547,-0.042772055,0.122832134,0.80159265,-0.43951365,0.039730072,0.7960863,1.0102227,0.9950787,0.24663289,1.3965787,0.31864282,-0.28359598,0.2640377,-0.29239246,-0.61036843,0.25828177,0.27849016,0.25699216,0.24537824,-0.022165664,0.23716854,0.22283569,-0.4541277,0.049199007,-0.16034608,0.2459115,-0.12614818,0.053133298,-0.35859364,-0.2005925,0.19354303,0.078739755,0.19275421,0.24253106,-0.13815102,0.32819065,0.1375398,1.2008529,0.0027552366,0.09143095,0.12954897,0.24854082,0.13302273,-0.020824132,-0.10869873,0.1680616,0.3979459,-0.12193462,-0.6047306,0.07906205,-0.18997209,-0.4012125,-0.2555819,-0.3366159,0.067636326,-0.22606859,-0.35758382,-0.10733227,-0.060915664,-0.49701983,0.40779305,-2.1433032,-0.23280214,-0.08941674,0.25321364,-0.099933036,-0.1755672,-0.24643424,-0.6617726,0.32305956,0.3824569,0.13563462,-0.6943208,0.4912281,0.5071791,-0.38600025,-0.14176852,-0.7358582,0.004134738,-0.18821809,0.32935795,-0.02354435,-0.08976357,-0.26356688,0.3296295,0.5459856,0.054495223,-0.029171837,0.275242,0.52645695,0.12847821,0.62961024,0.06548722,0.4875435,-0.27851027,-0.10023619,0.4126314,-0.28695658,0.1651856,-0.10381269,0.14241293,0.38245627,-0.6243836,-0.79014677,-0.8011058,-0.5618717,1.2000078,-0.39090315,-0.33599466,0.3573631,0.04326578,-0.23953384,-0.06558585,0.67378575,-0.20434299,-0.004692586,-0.832142,0.0788861,-0.012095753,0.32459348,-0.08922239,0.14713345,-0.32804725,0.70912004,-0.21573646,0.4537667,0.29477674,0.18605956,-0.25254568,-0.61395705,0.22411938,0.78092754,0.19007546,0.16723152,-0.16073303,-0.22915119,-0.11710063,-0.043819115,-0.04863809,0.6562088,0.899186,-0.06180663,-0.032456484,0.39857838,-0.23620863,0.08621585,-0.19347951,-0.1992639,-0.06767988,-0.19982842,0.5102319,0.43959954,-0.05822129,0.272227,-0.19620337,0.30869785,-0.09776052,-0.31171086,0.5399744,0.91103935,-0.13463287,-0.17280097,0.6217293,0.44807476,-0.41976082,0.4577448,-0.6589151,-0.26388618,0.51157254,-0.072128944,-0.5201309,0.034407828,-0.37277177,0.24480274,-0.9926548,0.24850713,-0.09403233,-0.27423766,-0.46557614,-0.11935776,-3.391061,0.27629754,-0.21464327,-0.12729293,-0.023015173,-0.11296378,0.425796,-0.43081257,-0.56442314,0.06424549,0.13382936,0.59397244,0.11943304,0.31496456,-0.34983078,-0.022765987,-0.40944293,0.26432416,0.20498927,0.33294785,-0.063559495,-0.32748693,0.1171952,-0.42125705,-0.36487728,0.05374695,-0.52014846,-0.4246684,-0.11279591,-0.4822286,-0.5263806,0.634577,-0.333974,-0.074453436,-0.26642707,-0.1056364,-0.103355266,0.33021268,0.1568638,0.18792282,0.101004094,0.0012269417,-0.41829368,-0.33650583,0.41695154,0.0056000757,0.03488435,0.31188312,-0.08118746,0.17514418,0.41827643,0.6420739,0.031362407,0.661659,0.2997409,0.03468151,0.18866174,-0.21478496,-0.25958434,-0.7144438,-0.3684644,-0.20229062,-0.4386219,-0.51261693,-0.16458052,-0.41092443,-0.6848441,0.45300472,0.017472532,-0.048473537,0.047608327,0.21117888,0.39811435,-0.22090231,0.09255557,-0.10287763,-0.293838,-0.4371771,-0.5028398,-0.73854226,-0.47859663,-0.0440296,1.1490887,0.08850228,-0.22467962,0.08221673,-0.2125581,0.0900316,0.15615489,0.18552552,0.31805903,0.47060373,-0.073700264,-0.7399834,0.48016852,-0.14085811,-0.05050334,-0.49421296,-0.061140757,0.65446866,-0.7803427,0.49922213,0.35448,0.25460014,0.024550326,-0.49334112,-0.3434357,0.057208017,-0.32991478,0.5488265,0.19581749,-0.8111228,0.54347825,0.12627394,-0.18265842,-0.85882765,0.41435987,-0.007966483,-0.26166606,0.14447246,0.3735419,0.10017802,0.018758286,-0.23706862,0.19656035,-0.4789386,0.33335668,0.29463524,0.15368779,0.20682101,-0.20012732,-0.23172377,-0.68793094,-0.15812463,-0.5473948,-0.30278128,0.011532871,-0.010902,0.053253498,0.30960777,0.019477399,0.5677903,-0.23495206,0.19477873,-0.063833624,-0.1436504,0.27293137,0.4378923,0.3250065,-0.43385988,0.6763373,-0.09183297,-0.0024716496,-0.29330504,0.07103374,0.4078329,0.29713246,0.27607667,0.077987336,-0.19425729,0.3267752,0.7449057,0.120092794,0.20927258,0.2922167,-0.21508071,0.62870395,0.13619655,0.052353814,-0.14991468,-0.3872062,-0.20215897,-0.10439415,0.08991165,0.34554484,0.08797489,0.37743157,-0.24515685,-0.14229414,0.038718197,0.14898005,-0.15309744,-1.2372214,0.19356513,0.10445123,0.5889758,0.71147096,-0.12664615,0.045809943,0.4955136,-0.39390162,0.06652651,0.33817157,0.04567136,-0.34758726,0.50977886,-0.44982103,0.40640754,-0.25507018,-0.019260915,0.11531691,0.23417664,0.17427383,0.9464256,-0.115322836,0.17189893,-0.02692854,-0.062121574,0.19371358,-0.20171168,0.00029409726,-0.5377277,-0.30434796,0.52157146,0.409144,0.43028456,-0.21805473,-0.0803469,0.021228075,-0.05816621,0.11850647,-0.060435858,-0.22788183,0.019682396,-0.69426537,-0.38626382,0.5137708,0.11670328,-0.10121267,0.091085106,-0.44824183,0.07283446,-0.2332894,-0.087699875,-0.075569026,-0.8360008,-0.2799674,-0.2836743,-0.3099601,0.304016,-0.49532095,0.21563047,0.2710702,0.12500577,-0.43968967,0.023393568,0.34728736,0.77047336,0.29414636,-0.18926443,-0.2534331,-0.10777907,0.2679946,-0.3744286,-0.07137001,-0.21020408,0.09859344,-0.63643986,0.55256176,-0.14591485,-0.23488545,0.12990305,-0.16692927,0.043388605,0.6065484,-0.20884885,-0.15686846,0.22018607,0.05935177,-0.28723857,0.012115654,-0.38846645,0.20611338,0.010262104,-0.08314959,0.17717728,-0.14519924,-0.07940347,0.5492588,0.17424814,0.26314676,0.274794,-0.021591851,-0.45964247,0.05943521,-0.03183419,0.36747676,0.048516948,-0.14939308,-0.17311811,-0.21390606,-0.044561885,0.384622,-0.056606147,0.035075076,-0.0038954178,-0.4660661,0.70817256,0.24720176,0.94376177,0.11245433,-0.24763387,0.09293128,0.3933563,0.0113349315,0.036265675,-0.45770514,0.78763074,0.55253655,-0.13075767,-0.2333323,-0.288329,-0.069796845,0.072728,-0.24735619,-0.11676058,-0.1341788,-0.73988414,-0.20459214,0.18319622,0.15435365,0.05882012,-0.035337042,0.064933814,-0.10023255,0.123881534,0.5427362,-0.5406968,0.13589005,0.33416566,0.22912768,0.18878593,0.3030739,-0.20572822,0.45204756,-0.5295596,0.09648431,-0.37336445,0.013266404,0.08477804,-0.25470403,0.15945901,0.1741756,0.29090044,-0.17748356,-0.40267697,-0.30011493,0.7342219,0.19519158,0.36521205,0.88798535,-0.25897226,-0.049050268,0.018046143,0.5402719,1.397414,-0.06899228,0.113930956,0.20083085,-0.40544194,-0.5105902,0.19444904,-0.40333694,-0.10137328,-0.028352363,-0.33841762,-0.2541288,0.27031484,0.19217342,0.0016911536,0.14687344,-0.47106597,-0.19019909,0.61390185,-0.21111366,-0.31602713,-0.23590907,0.41514242,0.66273254,-0.28843105,-0.09760632,0.009470335,0.34389526,-0.39807913,-0.5938805,-0.06190612,-0.4131996,0.35198295,0.15996481,-0.26047722,-0.01533702,0.23730367,-0.54675114,0.08691261,0.3523096,-0.37956494,0.040386725,-0.27393532,-0.23224252,1.0105815,0.048747897,-0.064612076,-0.63671434,-0.5404411,-1.1353438,-0.15854983,0.2358767,0.13196914,0.1537152,-0.33228907,-0.19420834,0.01697042,-0.01027772,0.14107679,-0.5311212,0.36336097,0.12201994,0.5692638,0.033425096,-0.8847056,-0.012794344,0.061752852,-0.2988679,-0.3790699,0.6115208,-0.021743003,0.7057543,0.044947673,0.029065708,0.0782754,-0.56143355,0.3619424,-0.34519157,-0.10577468,-0.75071925,0.056920953,907 -313,0.3914947,-0.0005084654,-0.5771539,-0.25257775,-0.40222237,0.20976757,-0.23338595,0.30205795,0.16567424,-0.31136286,-0.07726911,-0.19146772,0.035982337,0.43778342,-0.20043206,-0.5870478,0.09031113,0.20488396,-0.678222,0.39856955,-0.49979246,0.53886235,0.17655651,0.2663946,0.07895973,0.3007885,0.23395139,-0.10817913,-0.12445438,-0.052955467,-0.26836383,0.11312354,-0.52493614,0.11710676,-0.08562342,-0.43130067,0.035653543,-0.2724698,-0.16803366,-0.69406855,0.3366019,-0.6602418,0.57736355,-0.20015483,-0.49504757,0.10106458,0.15025075,0.25339988,-0.41757476,0.09672856,0.15762672,-0.15102205,-0.09748306,0.0011595567,-0.36259568,-0.5238685,-0.5924519,-0.0429519,-0.6477353,-0.017819338,-0.3173913,0.18894199,-0.3240956,0.04256721,-0.12329321,0.19372539,-0.42711818,0.19649439,0.23922096,-0.07875206,0.011579039,-0.50536215,-0.079753235,-0.2293634,0.2344731,-0.023466619,-0.20143175,0.28566712,0.47794074,0.5377721,0.19070567,-0.20572034,-0.24487482,-0.14325891,0.06060748,0.5272857,0.03303099,-0.24318141,-0.30759728,-0.102182284,0.3666162,0.30125856,0.20224431,-0.29866913,-0.1707106,-0.03888126,-0.2637977,0.15173657,0.37175027,-0.41271657,-0.16249938,0.3858249,0.42136872,0.22558804,-0.201057,0.20588785,-0.16605061,-0.58204556,-0.32007405,0.11256678,-0.24281667,0.69904745,-0.3057762,0.16766484,0.79542565,-0.24391419,0.035660505,-0.059381556,-0.0035063506,-0.16235487,-0.19013043,-0.09192327,0.10531025,-0.68874437,-0.0045845984,-0.19316708,0.6236135,0.14133316,-0.68315434,0.2548134,-0.6009051,0.09692596,-0.12718551,0.56691,0.6901178,0.3988478,0.17850733,0.813156,-0.49430105,0.048330713,0.028172426,-0.48107806,0.19059071,-0.0678476,-0.13255493,-0.5577259,0.119573995,0.12936693,0.065603524,0.018709425,0.592558,-0.34867638,-0.038234726,-0.027929159,0.55118966,-0.51123327,-0.20991325,1.0237583,0.8919235,1.0636526,0.07137633,1.5053042,0.3465435,-0.1564538,-0.11792543,-0.18366149,-0.5271233,0.14646251,0.3729502,-0.2292971,0.43636817,0.1377971,0.1176475,0.32734782,-0.18905894,-0.024245998,-0.059933696,0.14402577,-0.08434876,-0.15671875,-0.466138,-0.40220687,0.120071,0.15829442,-0.052964535,0.23200426,-0.17833099,0.5633557,0.28026947,1.4102815,0.06435248,-0.0015101354,-0.02156703,0.23753086,0.28252715,-0.13360843,-0.081116796,0.3710283,0.3524173,-0.113864705,-0.506956,-0.13760084,-0.2747798,-0.5398993,-0.19534983,-0.4398137,-0.13752998,-0.2060589,-0.5469043,-0.111237556,0.025772823,-0.28520334,0.5518405,-2.2506943,-0.2626609,-0.16608879,0.20950325,-0.06733464,-0.42345524,-0.15537481,-0.43555877,0.32524586,0.3490134,0.38276663,-0.72445834,0.46481228,0.33128902,-0.32092476,-0.14416596,-0.6701762,-0.11952656,0.014407042,0.1324378,-0.14468159,-0.1774232,-0.05959632,0.22436514,0.62241787,-0.110159345,0.13306388,0.22119543,0.53612465,-0.07641447,0.4524916,0.21806015,0.610062,-0.057985943,-0.12934473,0.3735949,-0.32214394,0.45883432,-0.021652972,0.19653693,0.49432328,-0.57266563,-0.70675474,-0.5866464,-0.3899601,1.1309572,-0.48108846,-0.28158972,0.25102738,-0.11101626,-0.23046072,0.020469775,0.33052608,-0.11947308,-0.052045025,-0.64146733,0.06302709,-0.080141544,0.08984573,-0.16965084,0.13426492,-0.2638115,0.76659995,-0.15345396,0.41812918,0.41274354,0.18409103,-0.16691443,-0.5335388,0.08489837,0.89661777,0.55916727,0.107933834,-0.26820412,-0.30264091,-0.40592167,-0.22643954,0.2577193,0.36483726,0.8732054,-0.013920593,0.27535996,0.24182446,-0.0654628,0.09260432,-0.10712433,-0.26272377,-0.072529025,0.11060189,0.48917267,0.5432833,-0.21254416,0.41268215,-0.19227234,0.17429802,-0.13299689,-0.6268148,0.5547472,0.9622872,-0.2783838,-0.27974126,0.5849702,0.36158445,-0.35121796,0.47003797,-0.5104875,-0.25682306,0.6423633,0.013464605,-0.28542712,0.18799806,-0.37076157,0.1444643,-1.042979,0.29092818,0.0019960701,-0.4210282,-0.42414722,-0.17376389,-3.4953115,0.24756628,-0.21287753,-0.047143485,-0.26318878,-0.27600744,0.28439635,-0.6298374,-0.7256669,-0.054641984,0.097766735,0.530039,0.03646294,0.102027215,-0.1635416,-0.3089032,-0.2100988,0.071814395,0.12233531,0.32337815,-0.16264063,-0.46046215,0.012448975,-0.32103178,-0.63364714,0.00599985,-0.54887015,-0.53420335,-0.24133264,-0.39395115,-0.24507283,0.7947763,-0.36319974,0.015969245,-0.21968254,-0.046564255,-0.13436551,0.3026098,0.22902784,0.025653223,0.038557988,0.019618355,-0.10748853,-0.31627545,0.1267538,0.09552339,0.22744936,0.42478055,-0.1355968,0.3411559,0.45096868,0.6466733,-0.23956251,0.67178756,0.20724156,-0.11352155,0.33856723,-0.19407521,-0.21296111,-0.7760885,-0.45893785,-0.2723916,-0.4404698,-0.525272,-0.16716225,-0.3483301,-0.7983147,0.4769527,0.07294553,0.12453575,-0.16868898,0.30079448,0.38707057,-0.12361956,-0.0027786712,-0.12314778,-0.39450794,-0.49942806,-0.44483417,-0.8126892,-0.632349,0.30663618,1.2319789,-0.19882815,-0.09497695,0.07090249,-0.31291616,0.13027547,0.12784937,0.09630593,0.124699466,0.29698557,-0.21861567,-0.6475231,0.45552734,0.00028734206,-0.23610254,-0.4894822,-0.040527113,0.6466446,-0.6355232,0.47600496,0.44904187,0.20477766,0.34141642,-0.75442064,-0.17631496,-0.01625703,-0.2368035,0.60802495,0.24973354,-0.632325,0.5640676,0.19753304,-0.1253841,-0.61456066,0.6359082,-0.046026517,-0.035318978,0.029826827,0.42737764,0.13734804,-0.12395992,-0.22888225,0.25535384,-0.66998374,0.34685573,0.46065152,0.025493646,0.32556188,0.021076437,-0.31886834,-0.75421077,-0.040623505,-0.46284917,-0.24550866,-0.029426038,-0.04488889,0.061184302,0.05003725,0.19638087,0.38020632,-0.56132334,0.25624987,-0.044940464,-0.2180263,0.27148667,0.43090808,0.39227265,-0.53976923,0.65019554,0.08736609,0.08439889,-0.19090563,0.14240414,0.5482747,0.2488624,0.4011032,0.0025384664,-0.108263984,0.17002591,0.5705995,0.2500932,0.28265032,0.20947185,-0.35475406,0.23991458,0.29219514,0.26974198,0.054012578,-0.24159305,-0.050353896,0.00064953166,0.12773888,0.5628928,0.11799177,0.293602,-0.009580167,-0.06399769,0.20652732,0.057209358,-0.09745343,-1.0936904,0.32976073,0.39194945,0.6262334,0.5887154,-0.10757581,0.014088909,0.2910071,-0.42949098,0.14650036,0.41266456,0.08269116,-0.4476381,0.55062604,-0.5790157,0.4783668,-0.23796794,-0.018962674,0.16091706,0.13948114,0.4077044,1.0844659,-0.035944246,0.07862579,0.09757759,-0.24926071,0.17955083,-0.36840656,-0.18036233,-0.5020702,-0.22494347,0.7252428,0.25890163,0.31333098,-0.35473812,-0.06448893,0.13923182,-0.26986268,0.08731222,-0.05342593,0.2037606,-0.26318958,-0.522158,-0.42868367,0.51816195,0.044885162,0.18910775,0.20576695,-0.4563374,0.2182203,-0.22592698,0.09524062,-0.014560719,-0.7380827,-0.20935301,-0.4283653,-0.49506015,0.30996996,-0.31612638,0.19349208,0.27181542,0.0016993016,-0.33605126,0.15360206,0.04270015,0.7682063,0.0059494297,-0.14030679,-0.17382526,0.22879656,0.42022997,-0.34935218,-0.010720015,-0.17303154,0.07512269,-0.5840014,0.43364382,-0.2025282,-0.23645042,-0.04036922,-0.19253176,-0.12560397,0.3149575,-0.2340969,-0.10300549,0.06057132,0.10293487,-0.11806286,-0.074131645,-0.32576188,0.2917624,0.09603622,-0.083129644,-0.0028027415,0.020339267,0.05330558,0.31393856,0.0043026805,0.2617151,0.26105767,-0.18886575,-0.5362143,-0.010572311,-0.0026665807,0.30331823,0.08996331,-0.08465083,-0.35953006,-0.30534345,-0.21343999,0.36389032,-0.27656403,0.1333766,0.13576256,-0.3092688,0.9664382,0.22143151,1.2618039,0.067103975,-0.45179042,0.1064637,0.62497455,0.06592298,0.077609636,-0.16655083,1.0095992,0.5194058,-0.24605481,-0.3134455,-0.43697298,-0.1825893,0.323227,-0.29977852,-0.30119297,-0.04607087,-0.627607,-0.2837278,0.140002,0.1412506,0.08599376,-0.05496688,0.018718084,0.24498925,0.008793314,0.51634765,-0.6590354,-0.22825877,0.33263773,0.13346274,-0.023418833,0.2779213,-0.40819073,0.46878484,-0.6749185,0.13255873,-0.31482744,0.22994347,-0.08932856,-0.404928,0.3249246,0.09194905,0.27823868,-0.24543566,-0.40621197,-0.30497476,0.65910244,0.16300695,0.35010856,0.7197922,-0.4550033,0.0001356562,0.05168114,0.38375384,1.2479386,0.002664264,-0.053532466,0.37109518,-0.497666,-0.5617785,0.24958754,-0.46833482,0.06290949,-0.045072135,-0.39382485,-0.42781302,0.38619334,0.13552262,0.04446052,0.17344971,-0.5027557,-0.046630684,0.44712356,-0.28912517,-0.29311022,-0.21757819,0.34437895,0.70695037,-0.4811825,-0.2498634,0.1295701,0.16246456,-0.34319904,-0.58362406,0.033909123,-0.21739888,0.47834143,0.1424224,-0.41253415,0.1382583,0.12159009,-0.34964007,0.13345197,0.4516911,-0.269893,0.1517574,-0.4719928,-0.11280953,1.0876796,0.0231992,0.030779809,-0.52651113,-0.55880445,-0.8929155,-0.3337998,0.36489508,0.1601107,0.006004508,-0.6778744,-0.03430762,-0.028103793,-0.014753413,0.16876765,-0.30885682,0.5091714,0.20451385,0.29498836,0.052587025,-0.829835,-0.021766532,0.09704599,-0.22242394,-0.5279173,0.61370826,-0.21227366,0.70954037,0.291453,0.06790323,0.13437101,-0.64122325,0.37231153,-0.3649422,-0.009998099,-0.588946,0.0040578763,911 -314,0.5461697,-0.15191945,-0.5140974,-0.18947887,-0.2358374,-0.051792305,-0.15176493,0.62085044,0.39061993,-0.38488752,-0.021052549,0.007456714,0.01906894,0.23744065,-0.081969246,-0.53257805,-0.043971382,0.052260593,-0.47088286,0.48586324,-0.4190933,0.12029708,-0.047257744,0.52299356,0.28220555,0.28149813,0.03661823,0.098413564,0.23432606,-0.15512332,-0.08625349,0.19021635,-0.50326204,0.17732236,-0.12661804,-0.28823474,-0.14155747,-0.44529203,-0.4649225,-0.7172491,0.29950804,-0.74528384,0.46637636,0.17135069,-0.34924918,0.10462556,0.041136026,0.32005203,-0.2605708,-0.043415498,0.12352231,0.09476403,0.11199827,-0.13489762,-0.10735448,-0.4117439,-0.6223746,-0.06527054,-0.39223406,0.05730902,-0.053328015,0.1352846,-0.26654708,0.0096192015,-0.24377137,0.53330874,-0.32182008,-0.13864955,0.30854586,-0.14902434,0.34337202,-0.48970816,-0.07448661,-0.12736157,0.062570095,-0.0042408826,-0.39814222,0.29409835,0.11692055,0.49464607,-0.11393342,-0.20465198,-0.12523694,-0.02784944,-0.09059321,0.36941057,-0.30369663,-0.41102278,-0.24077779,0.059989236,0.2898923,0.1468236,0.17611718,-0.2004283,-0.07834457,-0.103254505,-0.19257379,0.5082581,0.56430036,-0.32053417,-0.024617994,0.32508028,0.58432823,0.20293792,-0.18799977,0.19258973,0.06964709,-0.5868543,-0.19308145,0.048898693,-0.24369924,0.47107786,-0.2135817,0.18405746,0.6104965,-0.08703486,-0.116206504,0.15291448,0.108599626,-0.20389311,-0.37266174,-0.35514438,0.29539934,-0.5391223,0.17228974,-0.20086288,0.6664961,0.024930593,-0.6886072,0.27549997,-0.43896154,0.15972966,-0.0615365,0.5807535,0.8858525,0.4630215,0.27573863,0.7342965,-0.44870573,0.08481819,-0.18574017,-0.29605535,0.24048139,-0.037230413,0.02175167,-0.5188839,-0.101093024,0.09606234,-0.21215786,0.084993824,0.41114953,-0.51670164,-0.16963911,0.21914326,0.7206909,-0.27150154,-0.11983574,0.7176627,1.1126832,1.0950882,0.07732142,0.74940175,0.168423,-0.1694055,0.13320763,-0.138935,-0.716327,0.29659516,0.29802597,0.119331904,0.38679287,0.037798747,-0.05304002,0.43569374,-0.40348127,0.004632303,-0.10308352,0.28681216,-0.12298846,-0.1005425,-0.4159118,-0.28571433,-0.06810286,0.2008291,0.057286687,0.3042958,-0.19283281,0.46554857,0.124048166,1.3643512,-0.0582193,0.034956537,0.14798598,0.547535,0.23170558,-0.39248177,-0.075658955,0.18003792,0.56165135,0.19511957,-0.53911805,0.046996344,-0.16545086,-0.35951653,-0.008861291,-0.27001145,0.04056486,-0.20954087,-0.5084266,-0.19173342,-0.086771816,-0.2687902,0.32106268,-2.9839926,-0.0478919,-0.09119473,0.24813756,-0.12226309,-0.30229935,-0.0866749,-0.5602287,0.31873074,0.39056966,0.37648267,-0.75637335,0.41915867,0.41450822,-0.5179175,0.22498445,-0.7354376,-0.121119455,-0.06378093,0.33373216,0.22456817,0.1490543,0.047347236,0.41745123,0.49926618,0.06903503,0.15491441,0.15714592,0.29708233,-0.033470247,0.3947448,-0.0050365687,0.3713586,-0.22805697,-0.15421107,0.33745518,-0.40729484,0.03008001,-0.27151337,0.06531737,0.4897855,-0.406711,-0.82357603,-0.5520018,-0.018765355,1.188503,-0.2336962,-0.4481516,0.18782537,-0.5151275,-0.31980115,0.02327659,0.47853968,-0.28054518,-0.13172899,-0.7969318,-0.017465984,-0.27756616,0.1361346,-0.09607395,-0.16239962,-0.38076115,0.66708773,-0.04682361,0.52472097,0.2930422,0.11580326,-0.25528643,-0.5694904,0.08121841,0.77395535,0.416824,0.094218105,-0.2431405,-0.100486,-0.29613608,0.26101887,0.24503393,0.6847514,0.8198745,-0.1467784,0.23658866,0.4467802,-0.022035237,-0.04753947,-0.10021539,-0.29455474,-0.112656325,0.041141577,0.6760312,0.8082898,0.0047622123,0.27016357,-0.11464167,0.29416484,-0.19908592,-0.5589798,0.44827923,0.8135975,-0.09833015,-0.33809033,0.664107,0.5298982,-0.06171549,0.46668246,-0.57770103,-0.3644663,0.19692558,-0.046942737,-0.23618223,0.23768473,-0.37765697,0.2776355,-0.7544497,0.17998126,-0.24249245,-0.6455626,-0.6437895,-0.17574221,-2.9849477,0.27745253,-0.23149848,-0.20343456,-0.06591799,-0.19937316,0.37372166,-0.6027105,-0.5608822,0.12563911,0.12724322,0.71910274,-0.047306027,-0.029238295,-0.24044566,-0.27477008,-0.31792918,0.037640683,0.27531275,0.30965558,0.084317684,-0.47069508,-0.1396746,-0.22748362,-0.33697775,-0.01314273,-0.5784855,-0.47296908,-0.12134685,-0.5940802,-0.28482345,0.61677945,-0.11183548,0.11541703,-0.2616104,-0.051439404,0.034615453,0.28167227,0.01739512,0.041861605,-0.09422293,-0.0015963119,0.04761599,-0.22944307,0.17422818,0.009167449,0.27922556,0.20820658,-0.14403374,0.11654483,0.54586196,0.66590023,-0.14804384,0.8189526,0.56271374,-0.12646647,0.23310633,-0.06626304,-0.21385437,-0.4688235,-0.29078844,0.016380815,-0.42633644,-0.31368592,-0.054191317,-0.4048252,-0.8162417,0.45019862,0.01320254,0.32883435,0.019130968,0.12972671,0.5238944,-0.013098885,0.00054690044,-0.0076106032,-0.19680697,-0.4887823,-0.2553046,-0.7105988,-0.3007794,0.20136467,1.1025233,-0.2160622,0.0444301,0.09081017,-0.2756609,0.04799215,0.1714504,-0.117581464,0.1094624,0.4072205,-0.20865259,-0.5620556,0.29847756,-0.16345319,-0.1976557,-0.51067454,0.10021059,0.60345244,-0.6713569,0.5670597,0.21629328,0.109667875,-0.32925686,-0.68543684,-0.16641411,-0.018563956,-0.29792678,0.58666766,0.30320606,-0.7533375,0.500527,0.19753443,-0.20036982,-0.5813536,0.5942206,-0.06458602,-0.26917467,-0.23065908,0.27973473,-0.0889324,0.040839028,-0.15949298,0.20839046,-0.28597823,0.16410042,0.20290604,-0.11857471,0.16615249,-0.12815024,0.1286224,-0.59466624,-0.15720204,-0.71337545,-0.37864876,0.21087751,-0.054317586,0.21425529,0.03152496,-0.09485587,0.37083167,-0.24890079,0.1860947,-0.13594641,-0.3074545,0.41586855,0.48874733,0.45351237,-0.35563153,0.66399944,0.12998387,-0.030546643,-0.08118699,0.14691636,0.34810767,-0.04518243,0.41010875,-0.15275885,-0.17827506,0.31470266,0.8195478,0.17559026,0.3194481,-0.08895986,-0.041978635,0.105288,0.019656528,0.23331761,-0.088323444,-0.4765565,-0.08052858,-0.31991467,0.15113595,0.38556436,0.07864834,0.28456464,-0.03542041,-0.30878717,0.053488564,0.08398811,-0.011932389,-1.5895138,0.34762046,0.290022,0.72537774,0.5682392,0.0076915105,-0.18728223,0.6746553,-0.25555325,0.12111558,0.36303428,0.14695594,-0.39951465,0.490864,-0.68068326,0.56723,-0.0053238473,-0.006915214,-0.14494221,-0.06341433,0.4510717,0.7620413,-0.16377974,0.1591265,0.0067848503,-0.25190467,0.07640519,-0.33051687,0.037408534,-0.69855195,-0.30116028,0.6649892,0.473988,0.5032396,-0.09779151,-0.090350404,0.089822784,-0.09223119,-0.0043720445,-0.08035647,-0.05814799,-0.1825718,-0.6685166,-0.26852486,0.43279248,-0.03208723,0.061585806,0.06448696,-0.16305253,0.12949483,-0.021673806,-0.040089615,-0.12075604,-0.6777219,-0.09076259,-0.28690025,-0.23812298,0.60563487,-0.3782791,0.18780512,0.23074862,0.14171857,-0.18617351,0.054215178,-0.029550398,0.7588137,-0.07766433,-0.12729253,-0.42126766,0.17923437,0.1884158,-0.15410659,-0.27870834,-0.3356207,0.09975152,-0.57211655,0.30378526,0.027265104,-0.30319482,0.13100106,-0.13078122,0.0894626,0.4687537,-0.12406371,-0.22901174,-0.012921095,-0.06659362,-0.23648925,-0.20893249,-0.15459304,0.3626427,0.09691081,-0.0101031745,0.02955673,-0.078589104,-0.018674692,0.30131328,0.1925568,0.29101536,0.36985353,0.0135580385,-0.40229687,0.028004888,0.22917925,0.5623917,0.05845158,-0.2527799,-0.34953907,-0.46141407,-0.36201292,0.11713273,-0.0115176635,0.3934656,-0.013256271,0.015638147,0.8167068,0.03965881,1.1002787,-0.028019099,-0.44634208,-0.009166143,0.4521879,-0.053998265,0.007638291,-0.2998129,0.91360813,0.46300173,-0.20192862,-0.16062933,-0.3993337,0.105019145,0.16923085,-0.1257182,-0.2208269,-0.105788745,-0.63454694,0.02402544,0.32696092,0.26360562,0.31565654,-0.049990334,0.03533645,0.21795647,-0.0781645,0.32739064,-0.45792967,-0.008119106,0.19453113,0.19281273,0.08989143,0.08978045,-0.41191167,0.2632028,-0.528426,0.0805056,-0.25072697,0.16261435,-0.12162067,-0.42119226,0.23368265,-0.14648557,0.3930875,-0.45288196,-0.3255969,-0.17087327,0.59543324,0.12031088,0.20172651,0.5764755,-0.31446058,0.04293289,0.04649327,0.44334584,0.92600334,-0.22203176,-0.012721514,0.3541242,-0.27665812,-0.7340645,0.17781143,-0.26418775,0.27330187,0.018728307,-0.26817957,-0.41293296,0.32797006,0.12928452,0.041309293,0.10371711,-0.6240647,-0.1529554,0.27177116,-0.14196669,-0.31994587,-0.3877656,0.16468695,0.42312005,-0.24948142,-0.39454424,0.07301654,0.32169622,-0.0495797,-0.533247,-0.062057387,-0.3767533,0.2859914,0.17925933,-0.29454195,-0.07493493,-0.09938048,-0.40678832,0.18292229,0.22429164,-0.24451932,0.12538293,-0.294115,-0.09597182,0.8558966,-0.20725252,0.10897642,-0.52474946,-0.40564117,-0.6957699,-0.31047317,0.30402228,0.07826466,0.0020406723,-0.7552049,-0.07433078,-0.07947232,-0.032458283,-0.11634214,-0.21879418,0.599448,0.14488348,0.3131708,0.068676315,-0.7849358,0.23831207,0.09122174,-0.11496596,-0.4887461,0.53063214,0.03360359,0.73469555,0.1447256,0.22481711,0.1470408,-0.5023841,0.1290802,-0.22877616,-0.18585502,-0.6613239,0.09506822,913 -315,0.3677995,-0.20270914,-0.7358462,-0.11849105,-0.11465642,0.09756983,-0.26647398,0.26688033,0.060742054,-0.58052915,0.13968796,0.02723244,-0.09971419,0.19802967,-0.03567486,-0.47556677,-0.032692753,0.1833528,-0.5217727,0.5251777,-0.61626834,0.4207745,-0.10180949,0.19422837,0.051430877,0.31167284,0.010629456,0.19159164,-0.13865267,-0.09241365,0.17817558,0.303864,-0.43016022,0.20322101,0.08332356,-0.45760533,-0.2198122,-0.26284713,-0.33935675,-0.5212791,0.2178501,-0.74731326,0.55764514,0.015188352,-0.20271476,0.17187375,0.2577762,0.29084784,-0.3020987,0.13858399,0.14853004,-0.29034567,-0.20585082,-0.34352043,-0.16981909,-0.22055626,-0.585923,0.048620462,-0.5828988,0.04157429,-0.24202043,0.17382485,-0.3658611,0.0883971,-0.35582626,0.43865046,-0.49866873,-0.07994409,0.19355613,-0.07960708,0.2901947,-0.5427962,-0.13343999,-0.11420823,0.0059760334,-0.35107213,-0.34721556,0.22418477,0.22958733,0.48051327,-0.01488416,-0.15043242,-0.4033914,-0.23945467,0.31314194,0.43561035,-0.13961665,-0.190211,-0.32235643,-0.09604652,0.18776041,0.15645064,0.0082511185,-0.32399192,-0.08459498,0.055546466,-0.23164867,0.3428227,0.55411124,-0.26969114,-0.16707209,0.43692267,0.665614,-0.024958221,-0.22472961,0.23181272,-0.019025998,-0.4273424,-0.26111788,0.1644137,0.023404999,0.4435654,-0.21089596,0.2143274,0.503955,-0.31146362,-0.13689372,0.31326395,0.13295165,-0.008872652,-0.3465896,-0.2734405,0.1913347,-0.580578,-0.01046611,-0.20016076,0.56717485,-0.04906068,-0.73304206,0.38614905,-0.48073986,0.13751313,-0.11090568,0.610693,0.7289838,0.50096565,0.13797612,0.66670674,-0.37866768,0.06482918,-0.12084573,-0.32086167,0.06475191,-0.010323143,-0.056766566,-0.69151664,0.10421093,0.07301482,0.022587113,0.034705576,0.66782266,-0.37541825,-0.14627251,-0.01233238,0.6126472,-0.40187803,-0.00092287065,0.7128988,1.0341232,1.1168945,0.14840953,1.1465067,0.23521128,-0.13610823,-0.081484206,-0.23841757,-0.6994077,0.3199033,0.28822067,-0.16163383,0.3800996,0.010313044,-0.0035391252,0.5452509,-0.29834,0.15702938,-0.08892848,0.2891102,-0.11368539,-0.15744396,-0.3058788,-0.24301186,0.06290891,0.1140258,0.12636882,0.29941547,-0.35666314,0.43379492,0.23399691,1.5246087,-0.0885131,0.20885691,0.08476225,0.24662304,0.19713154,-0.3047963,-0.051215615,0.1616282,0.3682508,0.09286092,-0.5820065,0.03596312,-0.07366764,-0.6056729,-0.2765811,-0.33079913,0.030607883,-0.4006497,-0.50697744,-0.067114964,-0.031196969,-0.5235334,0.3359266,-2.588998,-0.19321045,-0.121130206,0.24127324,-0.13678977,-0.46844834,-0.2096139,-0.39750415,0.47530332,0.23731993,0.3916645,-0.58468944,0.467333,0.44286278,-0.33052203,-0.02781679,-0.60072714,-0.106267855,-0.1666206,0.14421968,0.06474505,-0.12248561,0.016587079,0.22723444,0.45994198,-0.47546548,0.12832077,0.28029364,0.28450242,-0.014399076,0.39128685,0.02338467,0.5396577,-0.38812727,-0.3343963,0.42264616,-0.4641779,0.07926867,-0.046029624,0.16319631,0.27040577,-0.5466496,-0.89424896,-0.5939969,-0.11977456,1.1825782,-0.293133,-0.37560555,0.16662788,-0.4568644,-0.566519,-0.021478863,0.25446558,-0.29657206,-0.011199995,-0.9147073,0.17148843,-0.21674706,0.19474907,-0.1034119,0.07431717,-0.41904965,0.48207793,-0.022371883,0.70309937,0.5384033,0.1529683,-0.46895558,-0.31172153,0.11762928,1.0911019,0.42427,0.12759286,-0.27915376,-0.12302272,-0.24533828,-0.005984763,0.27254397,0.36851442,0.5961661,0.0887657,0.2039538,0.28559726,-0.038665485,-0.07636959,-0.29937324,-0.26589176,-0.01478279,0.19837971,0.6152417,0.4751396,-0.11822455,0.3839708,-0.07727257,0.19474371,-0.29774156,-0.5621525,0.41487166,0.86902547,-0.09918329,-0.44483358,0.6865143,0.5789999,-0.35862365,0.5187564,-0.5230914,-0.31107318,0.20804943,-0.22366025,-0.22468857,0.24035184,-0.4461324,0.21536082,-0.89774555,0.19830431,-0.30640706,-0.6435193,-0.55006194,-0.27873343,-3.1193593,0.1695525,-0.122893825,-0.13781983,0.038169798,-0.2024157,0.33663946,-0.5861359,-0.61744434,0.06855782,0.14025424,0.74153084,-0.043813042,-0.09467627,-0.13685554,-0.18998976,-0.17116831,0.17283176,0.07948094,0.2205781,-0.043511476,-0.54433435,-0.13113423,-0.24052788,-0.48338223,-0.117778346,-0.53433865,-0.34118265,-0.07694904,-0.43057054,-0.4973999,0.5940207,-0.30809453,0.033461574,-0.22073932,-0.028104817,0.08824679,0.48030108,0.033892397,0.30662748,0.099458024,-0.083449624,0.13563754,-0.31376126,0.07022424,-0.035706267,0.08186164,0.5688824,-0.17067403,0.1723334,0.50842136,0.7141233,0.05818517,0.88823,0.5096426,-0.13879697,0.32303265,-0.35616022,-0.15176061,-0.5648878,-0.37362975,-0.12975805,-0.51596457,-0.42081082,-0.0030136586,-0.31051537,-0.9038721,0.53836465,0.08010103,-0.006410527,-0.086571105,0.3515833,0.29621252,-0.106187776,-0.084924854,-0.21838503,-0.19703637,-0.29797044,-0.41582984,-0.72194993,-0.53050876,-0.030285845,1.2522156,-0.15550508,0.061507735,0.04361816,-0.0829316,-0.029879402,0.38175932,0.17162517,0.32272342,0.29368085,-0.10678436,-0.48104572,0.24824886,-0.17777987,-0.32384953,-0.67486596,0.105514556,0.74707806,-0.5802856,0.53396946,0.3880588,0.16358696,-0.19435903,-0.6828172,-0.03721048,0.13133423,-0.2650431,0.6470636,0.35001394,-0.88406175,0.52650094,0.4172889,-0.21755616,-0.6954004,0.56704277,0.0022679965,-0.07173126,-0.15091158,0.37900004,-0.18296392,0.011069016,-0.21990551,0.16166203,-0.3530463,0.25716284,0.32806972,-0.028608467,0.3380237,-0.36273292,-0.15241887,-0.6186336,-0.10781917,-0.53735435,-0.13101342,0.15756266,-0.029613435,0.2254902,0.308579,-0.19329469,0.4548815,-0.3850802,0.030646503,-0.07781218,-0.36686122,0.27459425,0.4482271,0.23897089,-0.28853875,0.6604528,0.010281102,0.0025819181,-0.33628574,0.108146794,0.6023937,0.05470585,0.5027226,-0.0060555856,-0.12989661,0.40207958,0.8278439,0.2491712,0.37140286,0.24237886,-0.15564531,-0.0020888646,0.11580858,0.26960003,-0.062028266,-0.27603582,0.052601464,-0.053931538,0.32459226,0.52111495,0.0416319,0.6284491,-0.18349586,-0.18925115,0.057099115,0.22465767,-0.13467526,-1.4402139,0.5687138,0.15571252,0.63905805,0.62351793,0.10574996,0.13380685,0.35261768,-0.42756864,0.14902586,0.2603316,-0.14803705,-0.3845951,0.520416,-0.78499275,0.5126977,0.040426724,0.109570056,0.02749091,-0.107375145,0.62233794,0.87554806,0.020632155,0.23645642,0.11042306,-0.30957374,0.2075319,-0.26463482,0.05254955,-0.4950154,-0.26540294,0.9418915,0.27992868,0.5099422,-0.138256,-0.04510965,0.22588424,-0.09502697,0.15611601,0.044671185,0.23013668,-0.1465907,-0.5556785,-0.23421392,0.49545687,0.17501512,0.12168304,0.23902825,-0.26777062,0.27625504,0.08975924,5.741914e-05,-0.012667402,-0.48312765,0.037647106,-0.3628358,-0.53175366,0.2722967,-0.40844128,0.22997561,0.20905113,0.090477385,-0.4108728,0.29691112,0.18623374,0.6461595,-0.07863327,-0.08885152,-0.09128233,0.29980385,0.28561553,-0.0960028,-0.18829224,-0.2758141,0.24147753,-0.8086258,0.36816946,-0.1662912,-0.46644288,0.34467018,0.006483223,0.0074733696,0.49395484,-0.28679687,-0.32067972,0.1806293,-0.14105406,-0.30581027,-0.43304306,-0.16792887,0.32812914,0.018065779,0.0006468296,-0.08448648,-0.028622698,-0.08056946,0.28758752,0.19647928,0.2755538,0.42205957,0.14216277,-0.5252786,-0.061222915,0.20177121,0.4832873,-0.06414883,-0.01249302,-0.32806903,-0.42207292,-0.16096407,0.23489715,-0.14272591,0.22856261,0.055617783,-0.31595346,0.90111697,-0.1563371,1.0856537,0.120582424,-0.3887793,0.13137044,0.36585945,0.025171006,-0.1459918,-0.17684917,0.9317866,0.58842593,-0.12600479,-0.23600303,-0.44425452,-0.068977885,0.10622649,-0.23849821,-0.36399633,-0.019978713,-0.73570454,-0.23843284,0.2167642,0.18545713,0.097232595,-0.15135893,0.19633046,0.32042155,0.019132806,0.025952585,-0.5282822,0.1428327,0.34866175,0.2336021,-0.06620562,0.011261312,-0.46373138,0.3095969,-0.6294411,0.109144025,-0.033054825,0.09440837,0.04914736,-0.19770902,0.318665,0.09084125,0.054167334,-0.22453594,-0.21278232,-0.1814656,0.51559275,0.008776586,0.09221731,0.8150585,-0.27180442,0.24208139,0.07062044,0.400329,1.0885146,-0.19334705,0.02138151,0.324034,-0.26292342,-0.770274,0.25252792,-0.34136245,0.2201534,-0.02945995,-0.37305185,-0.49357042,0.285412,0.09224645,0.03246329,0.18303002,-0.37847763,-0.1178297,0.24303026,-0.29095522,-0.1888972,-0.3598776,-0.11462583,0.57219964,-0.20622468,-0.29108107,0.07828101,0.4164322,-0.2510456,-0.43003088,0.03638145,-0.34182325,0.25497857,0.12927598,-0.2453948,0.0811427,0.17103125,-0.3890503,0.1063554,0.43294924,-0.22157246,0.06768618,-0.34137923,-0.13604549,0.7573759,-0.34910393,0.10155233,-0.4441842,-0.60261357,-0.8178428,-0.19276682,0.41881326,0.052629273,-0.11108477,-0.70650953,-0.0020315489,-0.010873961,-0.13300519,0.005606691,-0.41090053,0.5146722,0.07835876,0.13818555,-0.0242686,-0.61997205,0.091017984,0.12937325,-0.1482181,-0.42328194,0.56219697,-0.10547383,0.6887853,0.1614324,0.107003726,0.34975183,-0.7420813,0.23481494,-0.14566745,-0.116588,-0.7366069,-0.15770312,917 -316,0.3205113,-0.026752114,-0.5194866,-0.24391694,-0.32181498,0.20523065,-0.17016196,0.21809898,0.19795407,-0.1586272,0.07600939,-0.29117325,-0.010020864,0.4307704,-0.13873056,-0.7234407,0.11541431,-0.01057239,-0.50525063,0.24011286,-0.5029926,0.4500457,0.18621962,0.2414662,-0.10139048,0.32884076,0.39275798,-0.10684649,0.02503117,-0.15297024,-0.17864746,0.10895432,-0.5500275,0.20513092,-0.13464758,-0.25568634,0.07842432,-0.38649377,-0.26600358,-0.5991876,0.39979604,-0.7170725,0.4228116,-0.050664887,-0.40113768,0.07149574,0.08541247,0.25624982,-0.3186218,0.10865656,0.22291976,-0.279552,0.01241103,0.038245663,-0.40145794,-0.75830185,-0.5136675,0.042891487,-0.6632336,-0.21710531,-0.20793091,0.2914639,-0.31606892,0.079973854,-0.038614783,0.21239503,-0.43011087,-0.18094851,0.24613155,-0.2800569,0.20382147,-0.39252272,-0.047885336,-0.09932385,0.16138433,0.019247206,-0.109983176,0.2300231,0.5261437,0.5005413,-0.0019517422,-0.28996086,-0.19099003,-0.2357159,-0.054231778,0.63270444,-0.0037103256,-0.35845163,-0.2501717,-0.10816596,0.2670436,0.17272943,0.14262572,-0.18554927,-0.18777646,-0.013241311,-0.32376412,0.23931023,0.37832114,-0.5366256,-0.18086673,0.42421785,0.43245134,0.10755723,-0.1571113,0.27846205,0.047114063,-0.4669112,-0.10351137,0.123092525,-0.25362694,0.6661854,-0.22348192,0.3025451,0.8826389,-0.18201883,0.054822557,-0.03149397,-0.1651617,-0.2829437,-0.09384306,0.064080484,0.10028173,-0.5944196,-0.0121258,-0.20667553,0.812462,0.20660584,-0.7041666,0.38665736,-0.39581135,0.14763226,-0.13956961,0.66859156,0.70855147,0.25061926,0.12830104,0.8153875,-0.48057,0.052049406,0.05578501,-0.38361648,0.1293252,-0.14035171,-0.13355139,-0.57035935,0.14327782,0.21244714,0.04813821,0.00053094624,0.2735822,-0.43337065,-0.03162145,0.101060264,0.6685689,-0.39555684,-0.18653803,0.72906786,1.0797212,0.86551434,0.04514184,1.266026,0.27282375,-0.22905485,-0.044914637,-0.25674686,-0.46876898,0.14288399,0.46632302,0.5092022,0.37663853,0.110752575,0.095939316,0.3297536,-0.12762053,0.0015674352,0.04142266,0.13838951,-0.00017338296,-0.14462872,-0.44935513,-0.25493944,0.2373833,0.08468636,0.008883119,0.253726,-0.084886596,0.6153673,0.18835531,1.1687022,0.049370274,0.14842777,-0.085329674,0.5313145,0.20894289,-0.02678315,-0.06217424,0.37993297,0.1511218,-0.021281008,-0.43200856,-0.028194094,-0.31905186,-0.5286129,-0.20089273,-0.3146499,-0.14002034,-0.1729276,-0.45952708,-0.11585279,0.08464783,-0.30971894,0.50917745,-2.6702266,-0.1989655,-0.2542022,0.21241789,-0.22580214,-0.21431176,-0.10000873,-0.4449068,0.2747535,0.57012594,0.37774727,-0.67744166,0.44495448,0.4071654,-0.3029501,-0.12371798,-0.57723045,-0.09199303,-0.1675039,0.38258514,0.10029045,-0.23668177,-0.14604948,0.42807382,0.7500206,0.08371095,0.03549832,0.05934493,0.46968612,-0.023426192,0.45079342,0.19016938,0.5739979,-0.07171165,-0.1382774,0.2940373,-0.43422958,0.4314786,0.07039812,0.1964896,0.2996189,-0.389944,-0.86168766,-0.6214834,-0.346188,1.1701847,-0.39876458,-0.3607751,0.39778525,0.10141737,-0.22993396,0.112525225,0.311512,-0.038043402,0.21048266,-0.5599372,0.11264919,-0.09812068,0.058906198,-0.03279034,0.07022217,-0.20759518,0.794444,-0.18897197,0.40799332,0.29540417,0.15668415,-0.037105083,-0.3773016,-0.060266323,0.8920453,0.497352,-0.032109458,-0.17246242,-0.1985109,-0.27402648,-0.26353118,0.11283756,0.41444713,0.8431406,0.08530211,0.13977996,0.26228523,-0.07563378,0.042191695,-0.035429176,-0.37871906,0.0531754,0.020144071,0.65238434,0.59541184,-0.27972087,0.34762466,-0.082001574,0.29560232,-0.15929084,-0.53749436,0.4204041,0.7690146,-0.13548893,-0.17740999,0.4755799,0.47117087,-0.44977856,0.40055072,-0.5702196,-0.2874547,0.79126203,0.022497552,-0.4009505,0.11541759,-0.3389464,0.052147318,-1.0391107,0.35415137,0.05779384,-0.5963938,-0.4325684,-0.25105676,-3.8212533,0.16915105,-0.14612597,-0.14858979,-0.15062039,-0.043794874,0.37410468,-0.56059664,-0.51902527,0.043743897,-0.0017651637,0.468879,-0.08946754,0.22017889,-0.30994102,-0.14178102,-0.2495318,0.34005347,-0.019098138,0.22266573,-0.14100687,-0.35870656,0.11624008,-0.47412872,-0.4934155,-0.05152433,-0.58694553,-0.6824415,-0.18358779,-0.4514441,-0.13059899,0.68657976,-0.27479416,-0.072584026,-0.30623195,0.06436941,-0.28114453,0.30706793,0.25907242,0.076958254,-0.067848094,0.0039566117,-0.044096116,-0.4048346,0.18367305,0.1666224,0.45475343,0.38686383,-0.15181224,0.15048231,0.6847989,0.52275145,-0.0038554072,0.7158403,0.08032681,-0.11566994,0.41894644,-0.26671284,-0.36817247,-0.7314751,-0.4284816,-0.13574524,-0.44059753,-0.52789503,-0.15693049,-0.23378025,-0.6813982,0.33455405,0.07335984,0.104361095,-0.2302486,0.30342662,0.34770048,-0.2237433,-0.013587522,-0.22214638,-0.2175868,-0.5632064,-0.3995881,-0.6821721,-0.5831651,0.19803964,1.0552088,-0.0047594863,-0.09108629,-0.09438817,-0.24142942,0.014835682,0.005146257,0.36858636,0.21391988,0.16442555,-0.25790575,-0.68753207,0.58812654,-0.15782382,-0.08897182,-0.62039363,-0.19270691,0.52142656,-0.5787892,0.43686435,0.47832006,0.31453797,0.32453588,-0.604709,-0.18265705,0.018688878,-0.1783217,0.5183457,0.11844384,-0.5057917,0.5656137,0.10865342,-0.15064004,-0.49491692,0.46196216,-0.010049725,-0.0756506,0.09332126,0.40169278,0.0687918,-0.19335862,-0.2230943,0.2207301,-0.6349918,0.27885777,0.47029406,0.054836046,0.7342228,-0.07916436,-0.26409912,-0.59149206,-0.22038676,-0.45504147,-0.08486835,-0.050301157,-0.023661708,0.055342697,0.08963833,-0.0008862654,0.42241913,-0.45921087,0.20985264,-0.011815751,-0.28002402,0.51707804,0.50052065,0.414591,-0.4657243,0.6905206,0.13257693,-0.017327992,-0.21089515,-0.07037613,0.55628186,0.22123197,0.32466802,0.016278887,-0.14402083,0.1623883,0.78009915,0.25571266,0.39546824,0.12176197,-0.18253137,0.32886323,0.1813207,0.09366183,0.026399724,-0.32642186,-0.04052667,0.05272003,0.089471355,0.44533527,0.07015261,0.4635538,0.021001657,-0.19281092,0.23066075,0.009445178,-0.11498109,-1.0244625,0.23880698,0.47427782,0.628409,0.3603583,-0.10373085,0.06784188,0.5895568,-0.38081345,0.05088779,0.3175163,0.10417778,-0.5405127,0.61565477,-0.5755156,0.5333794,-0.26514775,-0.016377326,0.23260188,0.06948315,0.3295143,0.8799018,-0.08447354,-0.024724016,0.01181827,-0.3896079,0.15855001,-0.40363467,0.10670081,-0.44970518,-0.22929968,0.6541987,0.31069186,0.16391736,-0.1896081,-0.11411929,0.14834571,-0.064632885,0.17394222,-0.16786991,0.06782161,-0.32381615,-0.59767246,-0.4408376,0.577928,0.19881423,0.09340563,0.07918482,-0.45967835,0.3379684,-0.119034655,-0.025520165,-0.023863683,-0.49299172,0.091970414,-0.24853906,-0.62043214,0.38166025,-0.32919744,0.4147391,0.15187578,-0.02762446,-0.23742637,0.015885433,0.15510072,0.6575038,0.045615498,-0.17187235,-0.36042964,-0.0954247,0.29471138,-0.35889047,-0.23684005,-0.40298596,0.12104106,-0.370289,0.45753974,-0.2800454,-0.34261158,-0.105029486,-0.3234866,-0.040129606,0.16250178,-0.23607506,-0.12338409,0.24235229,0.14257248,-0.22549443,-0.0024683713,-0.36759573,0.36765653,0.029907418,-0.22280788,0.008283397,-0.039039858,0.022268414,0.2769899,-0.031027054,0.11685183,0.1746886,-0.24511372,-0.4229994,-0.08262802,-0.060709614,0.28342324,0.0011181514,-0.033184282,-0.22435111,-0.3957607,-0.2069287,0.13906308,-0.16372363,0.18191756,0.1443591,-0.26307958,0.8841148,0.10090601,1.2557317,0.12069712,-0.4676738,0.0965806,0.6531067,0.1077478,0.12646145,-0.3017926,0.9471212,0.6065758,-0.2359222,-0.38957748,-0.4752899,-0.08932594,0.24290092,-0.2701977,-0.37235054,-0.1171256,-0.6624931,-0.17162038,0.2331199,0.2362302,0.25427327,-0.010155131,-0.031230783,0.12679672,0.10962487,0.5660753,-0.53269285,-0.21660344,0.38543478,0.06506636,-0.11602398,0.039596852,-0.289118,0.47441348,-0.69028693,0.018339077,-0.48070872,0.11720917,-0.17072369,-0.41386953,0.23625693,-0.08118732,0.43076655,-0.177661,-0.30274704,-0.17696747,0.6115049,0.34429625,0.38227966,0.63862354,-0.2490357,-0.12482932,0.057608422,0.436283,1.4034973,-0.13098381,-0.030753434,0.34674293,-0.38381493,-0.55403876,0.15930894,-0.5063389,0.14673106,-0.1337783,-0.4778657,-0.4462663,0.37108943,0.15863006,-0.023871029,0.18248068,-0.36565638,-0.20588198,0.32641163,-0.47558537,-0.37484682,-0.31289062,0.36035812,0.7484831,-0.3466709,-0.34654891,0.028267639,0.3116785,-0.3018773,-0.69115025,0.16054961,-0.16071758,0.44840446,0.04306786,-0.4084192,0.13711624,0.28120574,-0.2599652,0.35178146,0.35871306,-0.35048994,0.099072106,-0.29885188,-0.018967453,0.9407337,0.08475057,0.06895426,-0.9198694,-0.50622904,-0.959784,-0.42459583,0.44316503,0.11261358,-0.10474115,-0.38413396,-0.21899526,-0.13091293,0.061771832,0.16456315,-0.43755278,0.35933763,0.1221124,0.574401,-0.008505297,-0.8307111,-0.07833711,0.06386331,-0.17733309,-0.5502411,0.51702964,-0.24145669,0.66832584,0.18320395,0.0042817434,0.16130833,-0.52767074,0.3273648,-0.31944835,-0.18928975,-0.7477504,0.1282694,920 -317,0.26562786,-0.13274398,-0.5441418,-0.18539406,-0.3403359,0.1350943,-0.31093884,0.21328121,0.24431969,-0.14541778,-0.14053842,0.017885549,0.15125707,0.39441967,-0.03480705,-0.5492435,-0.17659406,0.24669951,-0.75791156,0.47920057,-0.5295413,0.17549807,-0.06945189,0.41328558,0.086157545,0.4280515,0.12645046,-0.116577946,0.08249054,0.092588395,0.12448208,0.37031254,-0.5048067,0.08370818,-0.3034775,-0.28989857,-0.029451102,-0.3540607,-0.24542148,-0.5552689,0.089106515,-0.86506504,0.51380044,0.016272092,-0.096244484,-0.09548143,0.3416446,0.43953452,-0.42987156,0.05157364,0.2611427,-0.1948731,-0.26212022,-0.27729052,0.059144113,-0.43889445,-0.37190762,-0.17051788,-0.60729146,-0.26638705,-0.13709575,0.20947978,-0.20142587,0.026968349,-0.03197955,0.15111846,-0.44324842,0.11901607,0.3737969,-0.25118938,0.30933297,-0.47490484,0.09574903,-0.023721447,0.5757153,-0.054627817,-0.29512313,0.2943986,0.37143892,0.43318108,0.14807853,-0.2366643,-0.21282856,-0.10862262,0.22985204,0.38463193,-0.24946503,-0.22749491,-0.3095823,0.042003527,0.23551822,0.36506203,-0.14216366,-0.3360934,-0.045650378,-0.08164633,-0.072892085,0.52284664,0.48501188,-0.27676162,-0.32704705,0.31260636,0.6205225,0.41934937,-0.2836773,0.13603884,0.04070456,-0.51334226,-0.20366168,0.14946489,-0.010516314,0.37623802,-0.050835248,0.1648047,0.89269364,-0.054700416,-0.020480545,-0.030559985,-0.09578513,-0.12066985,-0.35260984,-0.035002638,0.110316284,-0.62791985,0.03722047,-0.1663523,0.4443892,0.08157025,-0.6082465,0.34083685,-0.66040957,0.19366251,-0.15092486,0.5587051,0.7486219,0.35853094,0.10233439,0.8908678,-0.28750336,0.23203398,-0.17909555,-0.39836523,0.18092278,-0.1449628,0.018098664,-0.547,0.14976342,-0.056424387,0.19509767,0.117227726,0.18093039,-0.4744216,-0.08010847,0.25588593,0.7856756,-0.32322782,0.012613845,0.62244934,1.1266754,0.8053728,0.007451356,1.379546,0.2280166,-0.2758127,0.14675385,-0.33468124,-0.6165777,0.16234563,0.25925684,-0.081258155,0.3810465,-0.07834586,-0.0007926861,0.31883845,-0.47394568,0.10254093,0.05706764,0.29604885,0.23364069,-0.015893197,-0.2942913,-0.031856764,-0.068700075,0.015374522,0.20698503,0.104730085,-0.18124202,0.24296379,-0.08877761,1.2128168,-0.028250337,0.083823204,0.09974046,0.5422306,0.32719073,-0.15941516,-0.063957445,0.37205628,0.41689217,0.04813564,-0.51691383,0.36517614,-0.28313032,-0.49563885,-0.14501013,-0.39983064,-0.1311045,-0.019744894,-0.42999324,-0.0959089,-0.025038607,-0.26453876,0.50839746,-2.8963048,-0.3959001,-0.12836787,0.35182992,-0.25471097,-0.044471093,-0.30858505,-0.3177091,0.27218753,0.25960314,0.41509277,-0.6059444,0.6572764,0.55008894,-0.6090475,-0.14540532,-0.605812,-0.067384236,-0.027241392,0.35104376,0.049089488,-0.15866493,-0.017058562,0.2918039,0.5911621,-0.0405504,0.10008457,0.49026135,0.3397821,0.09828419,0.5377864,-0.09701063,0.4567966,-0.33145177,-0.22679025,0.30901414,-0.21552268,0.31275496,-0.08960194,0.085009925,0.51430345,-0.34055698,-1.0479771,-0.60116756,-0.23270592,0.9255086,-0.39944693,-0.42373574,0.1667738,-0.36239448,-0.09267297,0.05902395,0.60852146,0.1094579,0.19236201,-0.82627416,0.04986108,-0.074243836,0.15457913,0.08261168,-0.055743407,-0.36515948,0.70451504,-0.07277528,0.6046888,0.27721345,0.24132068,-0.13843086,-0.36282158,0.15990295,0.67957217,0.24114297,0.038474225,-0.09887548,-0.37354177,-0.0481979,-0.12044287,0.05497688,0.57319844,0.59239346,-0.026848102,0.2911783,0.31727275,-0.13526948,-0.05843303,-0.15639077,-0.21502915,0.08865254,0.02086896,0.44344074,0.8168077,-0.18829697,0.42255163,-0.07996351,0.31628257,-0.083099976,-0.56438506,0.67618,0.5067331,-0.24275804,-0.12521262,0.5453246,0.42048123,-0.41064292,0.43583584,-0.690131,-0.2999781,0.63880414,-0.19320276,-0.38385174,0.2146903,-0.24132703,0.12147362,-0.76389974,0.23625289,-0.24176067,-0.38243258,-0.38078243,-0.1283446,-3.595056,0.18533717,-0.25108334,-0.110985234,-0.20423062,0.0456153,0.36832038,-0.5230549,-0.5289663,0.15010996,0.2601387,0.70124775,-0.20969187,0.10562334,-0.3361743,-0.14132434,-0.031385597,0.24754563,0.035467483,0.25763372,-0.2186246,-0.43083516,-0.04487284,0.08006746,-0.5031571,0.16122827,-0.47344044,-0.3225511,-2.5167068e-05,-0.41806832,-0.12060252,0.49613872,-0.44210586,-0.05573703,-0.20549828,0.105850205,-0.18689035,0.35898802,0.23010717,0.06593166,0.24077418,0.09092019,0.038370274,-0.27899852,0.52473295,-0.055417538,0.24478902,0.091150954,0.08243534,0.17911103,0.53780645,0.4642802,-0.29213136,0.9741469,0.46286392,0.044108517,0.2628275,-0.21893282,-0.16710907,-0.44922325,-0.37350228,-0.20840994,-0.45048842,-0.48211095,-0.019344259,-0.3216757,-0.8965558,0.59071666,0.039500967,0.24179251,-0.054300148,0.14137986,0.4208596,-0.23738469,0.018539647,-0.095868744,-0.21935783,-0.4396787,-0.2146554,-0.60608786,-0.47703138,0.065291405,0.7320915,-0.4388574,0.08514541,-0.056883223,-0.16964166,-0.05980493,0.24008724,0.16146068,0.25743577,0.52022475,-0.046675943,-0.6032075,0.36079174,-0.19642605,-0.28953025,-0.5528095,0.08043289,0.6836465,-0.71545565,0.6782229,0.42653763,0.10531128,-0.11795204,-0.5058319,-0.24316192,-0.15426971,-0.33621007,0.48295376,0.0003029724,-0.9147962,0.47238472,0.34499237,-0.37832043,-0.64571327,0.6128751,-0.13115266,-0.17991526,-0.009657814,0.24783128,0.1205071,-0.10213779,-0.20194343,0.25011066,-0.38988507,0.25811937,0.09151384,-0.16975528,0.33784828,-0.091290794,-0.19060917,-0.699109,-0.10863107,-0.48116198,-0.23243402,0.32848218,-0.057569947,-0.035277963,0.12622084,0.12054639,0.37688828,-0.32308277,0.038145524,-0.023116564,-0.38548073,0.14688653,0.45195532,0.35498458,-0.37590617,0.51655865,0.03217819,-0.23347534,0.24481522,0.031172175,0.4118205,0.07932541,0.51383597,-0.16638009,-0.08833912,0.40846023,0.718397,0.079174265,0.3015341,0.037602566,-0.13713501,0.3526722,0.054600988,0.09814164,-0.10757174,-0.40228876,0.020654429,-0.089565545,0.32782033,0.4194253,0.4026708,0.3516229,0.061116442,-0.28830677,0.050997607,0.21573664,0.087942936,-1.2391528,0.53052837,0.38511318,0.84047073,0.45420042,0.056869064,-0.057100985,0.6006407,-0.08235722,0.06814628,0.37507424,0.006794813,-0.45577753,0.66174805,-0.72261304,0.4520976,-0.18366064,-0.05310034,0.19614728,0.16588174,0.33214703,0.8392719,-0.12709858,0.075293295,0.053643312,-0.21645913,-0.023066262,-0.21856192,-0.0044558444,-0.46676287,-0.35436946,0.749992,0.55645484,0.4365855,-0.31255886,-0.0012837887,0.052384786,-0.076928824,0.27496794,-0.065004416,-0.066863194,0.060655307,-0.63577896,-0.208113,0.52532446,-0.041124996,0.12800859,-0.12415015,-0.29756805,0.029145433,-0.30262563,0.06462714,-0.07772374,-0.59445924,-0.20084603,-0.26705456,-0.5922732,0.57421696,-0.33045813,0.13885458,0.24241191,-0.11749982,-0.15542914,0.5312442,-0.15245867,0.84342307,0.06769975,-0.22439721,-0.31660047,-0.0101181185,0.2176447,-0.26304382,-0.056199297,-0.5285324,0.10234591,-0.5523263,0.6053922,-0.14178784,-0.40511286,0.27392796,-0.2575224,0.03307705,0.51522595,-0.120307714,-0.20898002,0.22944178,-0.25399318,-0.44704342,-0.1328656,-0.39689848,0.24587448,0.24755883,0.036377627,-0.1640797,-0.29092872,-0.16276315,0.48255503,0.080455825,0.48740232,0.3520757,0.0045064925,-0.11511149,0.10458102,0.33303005,0.4396233,0.13070677,-0.029846955,-0.2969824,-0.44935745,-0.28863162,0.093084596,-0.059158955,0.099046014,-0.017301567,-0.13899827,0.8649834,-0.080561645,1.0672916,0.17132218,-0.28379026,0.27649483,0.4264049,-0.09638456,0.017025867,-0.5345589,0.64742166,0.5471163,-0.07125926,-0.04938456,-0.39837372,-0.1340157,0.25203934,-0.27186114,-0.008019733,-0.070318066,-0.7063172,-0.42918122,0.22856542,0.12732647,0.095747404,-0.09641695,0.0028609396,-9.4203155e-05,0.10721842,0.2440122,-0.797751,-0.2302168,0.21815631,0.40951595,-0.14501935,0.07950505,-0.34047934,0.55464995,-0.5549084,0.037441,-0.47269443,0.08498474,-0.3249568,-0.41686803,0.0322661,-0.0914348,0.29314074,-0.113803014,-0.31871936,-0.15377872,0.44615206,0.09248458,0.1468462,0.59442556,-0.2951088,-0.009694659,0.064681634,0.47183022,1.0628611,-0.5387293,-0.05378078,0.38144416,-0.39862823,-0.5397218,0.34375745,-0.55181247,0.05128118,0.068687424,-0.4604214,-0.3282846,0.33040276,-0.009534216,0.10817378,-0.006409148,-0.6319635,0.0035378614,0.24693625,-0.21945204,-0.28451934,-0.1123977,0.29474354,0.7953609,-0.2568668,-0.2536178,0.15145943,0.40300426,-0.28972495,-0.47394735,0.11464475,-0.39424637,0.31003076,-0.032231938,-0.22978726,-0.039678466,0.0614041,-0.5122024,0.091793306,0.2381447,-0.2919281,0.0649726,-0.17195085,-0.0150435055,0.90498793,-0.21670322,-0.066716895,-0.65565324,-0.49537036,-0.9260235,-0.33264914,-0.006851077,0.30312178,0.027747143,-0.33048505,0.19433993,0.004980727,-0.2138939,0.017658047,-0.59118706,0.38363966,0.1410489,0.4863268,-0.27393538,-0.8373142,0.056477413,0.12655385,-0.22530036,-0.6476961,0.6715348,-0.21942507,0.96159416,0.005015405,-0.08462314,0.03981743,-0.34897676,0.13870929,-0.37024722,-0.12942053,-0.9103289,-0.017505236,921 -318,0.3699265,-0.22251728,-0.5186301,-0.11755448,-0.37733832,0.032716695,-0.2267933,0.2991309,0.2858762,-0.06250026,-0.07261853,0.017734867,-0.02673192,0.34165993,-0.06265273,-0.7126887,-0.1853259,0.04986305,-0.69764215,0.6260531,-0.5118337,0.31968784,0.014786609,0.2824974,0.25158936,0.443207,0.13787816,-0.022966592,-0.0040599983,-0.12864277,0.017490761,0.055579428,-0.5308374,0.10571987,-0.123876065,-0.1877362,0.1238441,-0.5259392,-0.25513577,-0.711405,0.21556225,-0.7606494,0.46780917,-0.0142852785,-0.0804036,0.0143634,0.37019163,0.43925825,-0.39658266,0.060289722,0.26146019,-0.11921905,-0.030823343,-0.25804478,-0.099538915,-0.4067053,-0.5203336,-0.11959657,-0.57060224,-0.36331412,-0.16970721,0.21310264,-0.4450311,-0.12895906,-0.2450842,0.5010421,-0.4546782,0.022278527,0.3742793,-0.26977202,0.12320385,-0.627157,0.051198322,-0.053715143,0.35430786,0.18823287,-0.01467585,0.44228002,0.22730848,0.28366855,0.29353243,-0.27297968,-0.3194348,-0.30122226,0.23647998,0.3169063,-0.026917513,-0.20520717,-0.2871915,0.09153225,0.12299423,0.40654185,0.06758405,-0.23289065,-0.008017356,-0.120843634,-0.1365618,0.5478509,0.41343752,-0.3215795,-0.2773227,0.37655488,0.63296795,0.35951632,-0.26510027,-0.01318031,0.013573945,-0.5084627,-0.13942567,0.20582469,-0.11761041,0.335024,-0.10133292,-0.03398713,0.8191611,-0.09952119,-0.064241454,-0.09076178,0.07132488,-0.06218081,-0.41909477,-0.19575033,0.13879925,-0.5033678,0.099198006,-0.24108194,0.5965115,0.06067639,-0.5367031,0.39558524,-0.61779046,0.17947327,0.07031429,0.59983313,0.5918744,0.44006735,0.2870451,0.77925354,-0.17701264,0.22707237,-0.18641993,-0.38441658,0.0063316664,-0.23221086,0.2660196,-0.49334943,0.17557599,-0.27353013,-0.012718749,-0.00016378959,0.48670676,-0.33982506,-0.1833498,0.19542669,0.8519247,-0.23325354,0.02610873,0.57024276,1.1209447,1.200313,-0.061533794,1.090952,0.34709084,-0.27839378,0.013514793,-0.46202812,-0.5059319,0.16205902,0.30137333,-0.19962288,0.3085772,-0.12683062,-0.037271254,0.3310814,-0.29632598,0.14477305,-0.030724132,0.3946698,0.23142001,-0.1172618,-0.3683415,-0.21556288,0.09842985,-0.059468213,0.32366735,0.22762285,-0.25083432,0.24973746,-0.08412245,1.4753329,-0.13259819,0.16769552,0.23908043,0.51365507,0.29536715,-0.09029971,0.13534644,0.4455698,0.29572985,-0.106441185,-0.5988134,0.20890446,-0.4364303,-0.47968197,-0.14745459,-0.41197142,-0.12120966,0.0322428,-0.4037126,-0.03200116,-0.17724963,-0.2874384,0.35537368,-2.8116407,-0.24318132,-0.17427053,0.17567466,-0.4094663,-0.18296903,-0.09393532,-0.5195438,0.26986626,0.19173008,0.48577294,-0.54994625,0.623094,0.6073119,-0.62676454,-0.09506295,-0.53187996,-0.037508305,-0.06442366,0.54020566,-0.093292855,-0.03306057,-0.20624371,0.33697426,0.73040193,0.1069661,0.2310897,0.56230724,0.37439093,0.060923316,0.65575194,-0.061362464,0.5210761,-0.23097295,-0.10208122,0.41272166,-0.43026435,0.3450117,-0.16569014,0.08982936,0.570995,-0.4482943,-1.022909,-0.48752123,-0.24956328,1.0355618,-0.33001506,-0.31361687,0.21350752,-0.19998471,-0.045793854,0.14379859,0.6165758,-0.07372991,0.22898254,-0.6425673,0.12115073,-0.080323264,0.18372692,-0.013072848,0.13607332,-0.39723217,0.7929749,-0.05479383,0.64931446,0.18735223,0.18764432,-0.26686928,-0.29793707,0.09994831,0.7485482,0.34019387,-0.005798443,-0.13569328,-0.25755286,-0.1203094,-0.30926672,0.0013072013,0.64095634,0.5479603,-0.11081233,0.050009627,0.25816327,-0.24285384,-0.07644346,-0.18507555,-0.18624298,0.017242007,0.15819506,0.37602776,0.7055187,-0.13142785,0.42874792,-0.15741642,0.24242344,-0.18665963,-0.48326743,0.5514864,0.32472107,-0.22298256,-0.119680725,0.4956535,0.55168456,-0.39307016,0.50805193,-0.5527302,-0.21167488,0.7214047,-0.20353886,-0.3918366,0.13413684,-0.2819248,0.05370067,-0.650765,0.22951819,-0.45950946,-0.40496764,-0.37181345,-0.22669436,-3.111444,0.14999132,-0.09434835,-0.07502292,-0.27669147,0.15967141,0.24159019,-0.65510803,-0.6590291,0.051498644,0.26175317,0.56393445,-0.08434471,0.12578562,-0.31106982,-0.30277082,-0.1652746,0.37262172,-0.035161726,0.30790615,-0.11047939,-0.39226323,-0.08152019,0.04654561,-0.54848975,0.16593006,-0.5848275,-0.29470024,-0.057633925,-0.5669275,-0.27017584,0.5780599,-0.342696,0.053476207,-0.19428179,0.18566291,-0.16870634,0.13645266,0.12527274,0.33904442,0.24172857,-0.15662387,0.033816196,-0.2256928,0.4615488,-0.123217575,0.43475887,0.10266947,0.0060662627,0.09012949,0.42949754,0.6313442,-0.14749101,0.98644763,0.2384111,-0.093973376,0.2114101,-0.28607437,-0.10069768,-0.56478655,-0.35473964,-0.13232672,-0.35505596,-0.62403655,-0.056588396,-0.32672247,-0.8130631,0.48879424,0.08361907,0.40663978,-0.062131397,0.13616052,0.42236817,-0.2103413,0.076835275,-0.0025623043,-0.2049907,-0.39140838,-0.337241,-0.6326962,-0.4334779,0.22122052,0.85476,-0.3731355,-0.11224529,-0.07863082,-0.41347295,-0.090501174,0.13459225,0.09730757,0.1818637,0.42481005,0.046850406,-0.5674463,0.32605517,-0.07331495,-0.048999112,-0.5232815,0.054204885,0.67605907,-0.5968867,0.8021396,0.19908793,0.097344205,-0.12543415,-0.55778855,-0.07757539,0.16265754,-0.12008883,0.49145663,0.13638568,-0.68841326,0.50780445,0.27266437,-0.51976925,-0.7414108,0.27539623,-0.1196714,-0.3653205,-0.11024721,0.4390124,0.26068494,-0.10204231,-0.20922464,0.32456475,-0.44973728,0.16200621,0.18990655,-0.13102494,0.24798988,-0.05851132,-0.34498432,-0.66648215,-0.026229315,-0.4747664,-0.36500123,0.3182336,0.031286605,-0.030963112,0.05332939,0.15571485,0.36443135,-0.11018955,0.119669184,-0.03409465,-0.27746227,0.36568552,0.40469447,0.30939734,-0.36018175,0.49990645,0.049826406,-0.17407869,0.25587136,-0.0031101704,0.31672075,-0.10425242,0.46116525,-0.12149183,-0.07820247,0.30078545,0.56364,0.13306023,0.37660375,0.13394378,-0.25167748,0.41436154,-0.04875768,0.09739049,-0.039013322,-0.49133414,0.028188689,-0.055540666,0.102883704,0.4979741,0.31039074,0.3691243,0.16733232,-0.09924902,0.01699179,0.34734604,-0.22632709,-1.1155899,0.4008452,0.2208379,0.8633792,0.50560963,0.13748339,-0.09347364,0.6527768,-0.26225215,0.025546651,0.48712233,0.013371173,-0.44576672,0.7348583,-0.46622533,0.38409767,-0.13563937,-0.041510526,0.15804595,0.22854939,0.44534963,0.71796477,-0.20806089,-0.110299475,-0.12583429,-0.30169737,-0.0697389,-0.17808393,0.12800984,-0.39315757,-0.49516523,0.625301,0.46233204,0.36981493,-0.19989727,-0.07953484,0.003776137,-0.15078443,0.19054519,-0.10226035,-0.13614392,0.17207576,-0.51896393,-0.18933342,0.48944432,-0.23248434,0.08577843,-0.13074884,-0.22812273,0.07946544,-0.20182732,0.061761204,-0.0018022418,-0.64449626,-0.060188137,-0.121969305,-0.50230783,0.328088,-0.35671458,0.11774373,0.109901555,-0.10261329,-0.21476263,0.29462087,0.21822634,0.7265235,-0.08245202,-0.18376677,-0.19526339,0.059121784,0.090290986,-0.20890018,0.079663,-0.295819,0.18523155,-0.65155655,0.5951434,-0.24059817,-0.41134006,0.14736663,-0.3775093,-0.14467649,0.6199792,-0.25711837,-0.20666571,-0.23911457,-0.29561657,-0.3381514,-0.13297245,-0.24678881,0.29108688,0.12693056,-0.16182941,-0.21108386,-0.16033596,0.029197948,0.52827865,0.012161183,0.37021175,0.2733947,0.022065377,-0.20807794,0.055763755,0.2106015,0.42235547,0.26984933,0.08136201,-0.40638068,-0.31791005,-0.36015847,0.2903754,-0.16790959,0.13233124,0.08448288,-0.32170245,0.9668711,0.1672991,1.315436,0.077479795,-0.33207363,0.07761677,0.5920252,-0.022030327,0.1065885,-0.35991648,0.896097,0.6718025,-0.10172675,-0.0010349273,-0.58023554,-0.11520496,0.28357932,-0.43943414,-0.03898859,0.033677094,-0.5383216,-0.25472465,0.31355855,0.13620093,0.121791236,-0.11736969,-0.13915053,0.051626846,0.1891535,0.5092426,-0.5340763,-0.11757029,0.23256369,0.12853321,0.0413957,0.17406705,-0.40860102,0.40165988,-0.74515915,0.30556098,-0.26566938,0.14419153,-0.3511853,-0.26015913,0.1900402,-0.04738652,0.31558397,-0.3758396,-0.48135632,-0.020242717,0.48945385,0.12466601,0.08838512,0.66483194,-0.24052446,-0.037011225,0.079617135,0.6995389,1.1551279,-0.3954529,0.021248898,0.3384212,-0.42924973,-0.7478214,0.19890937,-0.48295787,-0.10336539,-0.14149158,-0.4758048,-0.4744944,0.30759734,0.044155844,0.113692306,0.03644073,-0.4850759,-0.14288808,0.38413402,-0.291714,-0.25129816,-0.15228263,0.26606524,0.75972724,-0.237257,-0.5406031,-0.009883819,0.25984457,-0.28912607,-0.5201627,-0.040089138,-0.19119915,0.4092762,0.07498181,-0.2405595,-0.11641216,0.17147046,-0.52342683,-0.048143197,0.17457695,-0.32440063,0.080049135,-0.27660954,0.020575635,0.8142541,-0.18553688,-0.0024813334,-0.6186408,-0.4490112,-0.89657676,-0.38231406,0.19600162,-0.031197349,-0.11399449,-0.3970506,0.0266289,-0.109858446,-0.092226334,0.11685894,-0.57037646,0.33482516,0.07265296,0.39286157,-0.36525434,-0.8727095,0.052516267,0.20122974,-0.14174183,-0.65487653,0.680666,-0.15255089,0.8292531,0.036987297,-0.1309577,-0.064234234,-0.49884665,0.14449635,-0.43514225,-0.14098868,-0.7449858,0.143699,934 -319,0.46273917,-0.29182288,-0.45028454,-0.08733147,-0.1841925,0.18616535,-0.2585213,0.19652018,0.13182455,-0.5493837,-0.2519035,-0.26715484,-0.1445841,0.19142374,-0.31154898,-0.3880592,-0.011637574,0.09041137,-0.5450066,0.66569495,-0.3070584,0.28147966,0.017733283,0.4014352,0.3801422,0.28172672,0.18087251,-0.020372782,-0.13131881,-0.21728568,0.029085254,0.13220419,-0.47295868,0.15890867,-0.15005726,-0.36915448,-0.07041331,-0.50511616,-0.4115733,-0.75892043,0.60524964,-0.9748847,0.4494077,-0.006930973,-0.086579494,0.4101705,0.26021037,0.32485065,-0.013779318,0.054229103,0.23235507,-0.006362951,-0.0646726,-0.07396479,-0.18801834,-0.42250755,-0.6087896,-0.02536863,-0.36792284,-0.26110387,-0.32624835,0.07984034,-0.2566855,0.052517235,0.028490828,0.53490955,-0.5184317,-0.02445283,0.29477394,-0.06764849,0.36493355,-0.6873163,-0.1799316,-0.05672555,0.3151514,-0.18001652,-0.042495854,0.17506084,0.4065933,0.43389755,0.0040531876,-0.06528283,-0.1631197,-0.14520258,0.29379576,0.44857693,0.055782694,-0.4212007,-0.13650776,-0.0062236628,0.03504176,0.22174147,0.289828,-0.37567902,-0.07095482,-0.014980395,-0.19480418,0.45006078,0.4520742,-0.2714489,-0.20130183,0.38955593,0.5321857,0.25722253,-0.16735746,0.106854245,-0.0011191656,-0.46446568,-0.2093894,0.19465494,-0.31616527,0.5151026,-0.15077774,0.31808186,0.62632245,-0.14634606,0.09078227,-0.093853526,-0.022357604,-0.27364957,-0.16122031,-0.2816981,0.17712678,-0.438226,0.2013344,-0.088924475,0.5887911,0.06932937,-0.59241384,0.28690663,-0.6167393,0.08498381,-0.034357212,0.40617597,0.60047597,0.28099722,0.29996583,0.6550202,-0.41267604,0.011849572,-0.056531016,-0.32873458,-0.15663792,-0.26569608,-0.19608977,-0.44243953,0.04932966,-0.15609707,-0.019084198,-0.21076061,0.4558856,-0.44684705,0.072755866,0.08380071,0.84901595,-0.29688987,0.09248652,0.82595736,0.9343371,1.1595598,0.070006825,1.1114589,0.21135053,-0.25999126,0.07056336,-0.1163411,-0.64432263,0.4007422,0.5060083,-0.045372963,0.2864373,0.0105017405,0.057811085,0.36932898,-0.38053676,0.15850426,-0.22790347,-0.03637246,0.26533267,-0.17992662,-0.3802995,-0.116450794,0.0022183578,0.11787126,0.17782547,0.051047906,-0.13135622,0.27738848,0.12982465,1.663981,-0.22296311,0.06403316,0.16085966,0.4128755,0.1956198,-0.090683684,-0.052823164,0.22802661,0.42965552,0.19703561,-0.70234716,-0.008813039,-0.22860269,-0.42620805,-0.24989833,-0.28074473,-0.11186516,0.016380707,-0.41800764,-0.1103449,-0.16157001,-0.32932752,0.2911293,-2.6327379,-0.19017714,-0.2971634,0.2789232,-0.24147873,-0.29367474,-0.09644384,-0.45167747,0.44158646,0.37135622,0.3162753,-0.56828713,0.45839468,0.52590495,-0.63720447,0.0988282,-0.5159236,-0.14361598,-0.16674218,0.3584706,0.00518647,-0.05369464,0.027167527,0.2544854,0.42697194,0.04054207,0.15983649,0.2792253,0.5289487,0.030127065,0.7153918,0.08624945,0.4130106,-0.15401167,-0.10793027,0.47295916,-0.23699099,0.23345819,-0.20742477,0.17946504,0.51920843,-0.56497353,-0.76484746,-0.7322272,-0.45914474,1.1551269,-0.10473302,-0.49991047,0.19716473,-0.27710336,-0.37088865,-0.11287144,0.48108146,-0.170274,0.07367614,-0.86647856,-0.058484543,-0.10511125,0.023191115,0.024236642,-0.06630785,-0.5908002,0.8742635,-0.00436654,0.44210348,0.38719627,0.18230239,-0.25845602,-0.55956477,0.01075691,0.9060107,0.41584688,0.0561742,-0.30638358,-0.063458495,-0.38727352,-0.06742199,0.06824408,0.4404034,0.521251,0.08704669,0.32415923,0.17357874,0.12886259,-0.00255211,-0.26476592,-0.27998617,-0.14836088,-0.200969,0.5688404,0.47345677,-0.15434612,0.39398214,-0.113413796,0.26035082,-0.19148661,-0.37639427,0.52013373,1.2456322,-0.11744625,-0.39331397,0.65191805,0.5007726,-0.24778026,0.3696214,-0.59216464,-0.1189444,0.47507858,-0.23807958,-0.63826203,0.20345595,-0.35269102,0.14221264,-0.7664815,0.26221102,-0.26529783,-0.22582892,-0.5780899,-0.23856299,-3.2590566,0.22576895,-0.2449104,-0.30168438,-0.21824677,-0.15074508,0.33052558,-0.53729784,-0.7617527,0.22588132,-0.05567893,0.7607185,-0.1347396,0.18762134,-0.24805762,-0.2196374,-0.34744692,0.09736263,0.037764803,0.2849042,-0.08879458,-0.44403014,0.044537067,-0.19600715,-0.39539808,-0.072735,-0.4230275,-0.32823163,-0.11138312,-0.34711888,-0.13551188,0.5284648,-0.13415508,0.06990639,-0.28844318,-0.10566036,-0.17040545,0.3991303,0.042120498,0.13715991,0.041621756,-0.042373728,0.048975762,-0.13805558,0.35921153,0.08890341,-0.015332184,0.24374828,-0.21823142,0.1903974,0.20842266,0.5232939,-0.20840149,0.9745003,0.44628382,-0.19200477,0.20965725,-0.25215536,-0.2606991,-0.6046961,-0.26667807,0.047899343,-0.37520954,-0.6788265,-0.094664305,-0.38749695,-0.7495716,0.49102765,-0.044461012,0.26377392,0.0441326,0.1457676,0.39946404,-0.1523612,0.0020399885,0.05141227,-0.12056171,-0.46437347,-0.34229487,-0.59733444,-0.44866365,-0.114906915,0.7892836,-0.07256161,-0.031747773,0.054130338,-0.39824674,0.028484814,0.100476734,-0.054461244,0.119438216,0.4788242,-0.039468586,-0.8047992,0.636137,-0.09917059,-0.12721808,-0.56994915,0.055826202,0.69629514,-0.48721224,0.50713444,0.37883335,0.048638288,-0.3268634,-0.5536299,-0.04792857,-0.043550868,-0.42624515,0.49347046,0.18817511,-0.69932395,0.42977035,0.2989129,-0.08327319,-0.7884682,0.7008012,0.041086633,-0.2603517,0.10449113,0.41895548,0.068967596,0.03425627,-0.33897686,0.37798825,-0.40510017,0.2288163,0.17935556,-0.031495906,0.12902966,-0.23275234,-0.18328704,-0.74077994,-0.037886743,-0.4183356,-0.18130098,0.16993073,0.0291284,0.124701895,0.33945405,0.07731342,0.4220193,-0.26865843,0.1528246,-0.050142195,-0.104004234,0.16268112,0.46355247,0.43395093,-0.47430936,0.60219926,-0.08284744,-0.099047825,0.049824316,0.099764094,0.38252643,0.08510737,0.4147974,0.08325343,-0.23778439,0.33237138,0.9250479,0.28364435,0.5067671,0.18528631,-0.27859232,0.33458558,0.16654024,0.26845512,-0.19005917,-0.6063555,-0.034940876,-0.17107895,0.11997322,0.4290895,-0.013405728,0.3314467,-0.1384888,-0.3456541,0.029439304,0.21508123,0.009362936,-0.9570981,0.26249334,0.14597687,0.8429854,0.6363734,-0.13261575,0.17361975,0.5211839,-0.22210178,-0.03149983,0.34726027,0.0062325993,-0.56049705,0.5584311,-0.5418285,0.27221885,-0.048804738,-0.12335,-0.014723198,0.01607566,0.34084627,0.68233526,-0.1825876,0.060738266,-0.101927675,-0.24654119,0.32608312,-0.4545606,0.035901286,-0.31511062,-0.33107814,0.6262014,0.709973,0.2574168,-0.17907931,0.052871864,-0.015889298,-0.12187259,0.15095349,0.23129518,0.03144711,-0.11001976,-0.8258289,-0.19550224,0.41236755,0.104311906,0.048727855,0.023652514,-0.32092616,0.21274458,-0.08713259,0.11856638,-0.00022383133,-0.86372113,-0.041444458,-0.22827253,-0.5231827,0.27455208,-0.11246125,0.23224078,0.18767291,-0.021772925,-0.23362732,0.122287504,-0.031196324,0.6914622,0.03918906,0.05597109,-0.39695632,0.100554705,0.21114448,-0.24635312,-0.028940868,-0.23287068,0.20723964,-0.67940956,0.59504914,0.0041499296,-0.38513005,0.27357107,-0.12658696,-0.03383764,0.62887114,-0.23641191,-0.09139465,0.017191362,-0.07852013,-0.23801522,-0.22451115,-0.19424623,0.1616734,0.0451291,0.076748535,-0.14446935,0.037429877,-0.16708751,0.5289911,0.08246682,0.57510126,0.5163524,-0.07137259,-0.42697594,-0.17861703,0.12292094,0.58220613,0.0026349684,-0.26828435,-0.19947377,-0.71790737,-0.25976807,0.37951893,-0.003995208,0.26770192,0.09563082,-0.25575116,0.64807165,0.073665924,1.108727,0.087502845,-0.4201003,0.13002777,0.5308783,-0.10621198,-0.122408204,-0.4064712,0.71564656,0.517648,-0.11571254,-0.10079129,-0.2661439,0.060555495,0.041688986,-0.23535372,-0.02546997,-0.117809944,-0.5976317,-0.3366061,0.1299239,0.29794952,0.08644954,-0.16547719,0.07400249,0.26362792,-0.012856803,0.4828482,-0.4924278,-0.3701529,0.3621787,0.22075881,-0.080510974,0.028823873,-0.4040593,0.4984828,-0.4913648,0.012215288,-0.3149472,0.20496269,-0.25191295,-0.16096298,0.24798916,-0.046552304,0.4183202,-0.31146634,-0.42368928,-0.25972927,0.37909344,0.17717877,0.17096029,0.3818106,-0.30093306,0.20769338,0.08554586,0.6707784,0.9804865,-0.08872902,0.21874695,0.33405632,-0.46004078,-0.48152003,0.37676254,-0.32247528,0.21855585,0.17631201,-0.21019433,-0.4016975,0.2818,0.23463562,-0.051770397,-0.09984178,-0.6131318,-0.34766954,0.4686185,-0.2146844,-0.21414907,-0.2475449,-0.017591167,0.5437738,-0.31985968,-0.24650837,-0.0914233,0.2525178,-0.21757771,-0.530073,-0.029990379,-0.41087925,0.49076447,-0.0017231822,-0.15367675,-0.11942472,-0.011199077,-0.51368356,0.12658842,0.113352746,-0.41986293,-0.024209926,-0.35103557,-0.10591132,0.8582573,-0.27818996,-0.072730295,-0.4972293,-0.41908118,-0.9554698,-0.3028756,0.35796434,0.1881965,0.07103432,-0.38639486,0.07016388,-0.21736985,0.111480094,-0.0043638507,-0.3309863,0.4141744,0.13411142,0.56769174,-0.09019251,-0.67126137,0.121274024,0.08421509,-0.35570708,-0.39595845,0.699506,0.05405364,0.65874636,0.022770038,0.11566793,0.121533036,-0.5437451,0.065712914,-0.107159846,-0.15478143,-0.8463147,0.07150658,941 -320,0.3803607,-0.06775567,-0.4678684,-0.22729257,-0.3536853,0.19868138,-0.29477695,0.31428346,0.20043173,-0.20180117,0.015397242,0.050102644,0.016486255,0.379182,-0.15573637,-0.8503293,-0.1334642,0.106992245,-0.6540567,0.48305723,-0.6672258,0.33934626,0.038276274,0.44637984,0.06157055,0.39888075,0.2802614,0.00026130278,-0.13131402,-0.01896456,-0.10961322,0.30718118,-0.6185592,0.25423178,0.06621412,-0.28728786,-0.047596563,-0.22104813,-0.15102135,-0.6977411,0.44861305,-0.7190283,0.6447594,-0.124882534,-0.37670955,0.131447,0.076853275,0.21255232,-0.42663953,0.077470824,0.20355348,-0.30870515,-0.07141587,-0.2217914,-0.19971307,-0.5137542,-0.5512554,0.0005599737,-0.6322852,-0.05434188,-0.36348602,0.32122725,-0.36438498,0.088831134,-0.24559215,0.2800635,-0.4499298,0.01816969,0.21542686,-0.30860347,-0.049415182,-0.4682457,-0.062718466,-0.06943393,0.289299,0.026165415,-0.25747705,0.36945647,0.45947704,0.5521546,0.18304497,-0.33554876,-0.28969344,-0.22127463,0.071614124,0.45805544,-0.03244008,-0.3814815,-0.29932526,-0.16042084,0.37336472,0.10304227,-0.030740635,-0.2968907,0.0070377835,0.15770492,-0.25338426,0.41261345,0.46477804,-0.44941244,-0.23244719,0.48352143,0.26827228,0.10303116,-0.23664197,0.16067877,-0.0788108,-0.57210904,-0.27930558,0.19118021,-0.030448226,0.57957196,-0.21001182,0.3022019,0.8807415,-0.12622765,-0.034755714,-0.23394164,-0.077470936,-0.11564218,-0.32391614,-0.1342298,0.09618759,-0.46982506,-0.04546656,-0.2866326,0.6517255,0.08461379,-0.67702186,0.4611532,-0.36795536,0.07725637,-0.1475307,0.5545528,0.7826558,0.3620168,0.124146715,0.890612,-0.48816428,0.018927645,-0.09522398,-0.41514772,0.07783176,-0.042099245,0.08873115,-0.4431612,0.17664576,0.1852532,0.13071959,0.059195265,0.5432269,-0.32520467,-0.00011690061,-0.106604554,0.60567576,-0.5300144,-0.062880285,0.8149707,1.0045959,0.9744616,0.09075148,1.54921,0.44473106,-0.16141963,-0.054282483,-0.3603964,-0.46743584,0.17987484,0.3120983,0.034369603,0.309935,0.13989218,0.09904202,0.4848566,-0.2872874,0.01936646,0.04343251,0.38866493,-0.057243254,-0.028529266,-0.41693214,-0.19801006,0.26836166,0.10772672,0.19363552,0.21770912,-0.14751019,0.5802948,0.11791651,1.3549324,0.091360085,0.1395767,-0.06913119,0.39791143,0.2503976,-0.11699248,-0.0018117984,0.31782627,0.4081332,-0.15800701,-0.552582,-0.09597266,-0.3308293,-0.4779524,-0.21973825,-0.4163911,-0.12017486,-0.17792784,-0.53255755,-0.19406566,0.21910222,-0.34441885,0.46041948,-2.4640365,-0.29725733,-0.18044062,0.27650893,-0.2374538,-0.42095497,-0.31452,-0.52915263,0.3978589,0.4028251,0.29765975,-0.6148841,0.40871716,0.1631061,-0.2656555,-0.120648585,-0.6382187,0.058037616,-0.08612707,0.3243184,-0.13794042,-0.2751116,-0.20079057,0.37171927,0.7546866,0.009464261,0.0062215566,0.19982728,0.39702475,0.05742709,0.41949692,0.09391734,0.6447815,-0.17922185,-0.21287568,0.36320487,-0.36904037,0.33820972,-0.12595144,0.22131395,0.4428894,-0.44978663,-0.8616781,-0.57714516,-0.26005825,1.241311,-0.52487946,-0.2905267,0.26324084,-0.012831344,-0.4280352,0.1062791,0.4288216,-0.121083654,0.010862191,-0.65373796,0.09501017,-0.12601997,0.058567785,-0.1430413,0.17767684,-0.3935271,0.72373885,-0.18604858,0.43807456,0.26870868,0.19210836,-0.19238958,-0.3760528,0.16894726,0.95756316,0.4668507,0.092120245,-0.20656279,-0.22974457,-0.19513588,-0.2990869,0.14641318,0.46608517,0.63557357,0.105411716,0.039468333,0.23980786,-0.24286224,0.01908356,-0.162717,-0.23303203,0.007013754,0.19740972,0.64596635,0.5082425,-0.15639298,0.345025,-0.13635965,0.27209574,-0.12714148,-0.62904,0.59058994,0.93193346,-0.18378338,-0.23305541,0.63281167,0.3666732,-0.30429426,0.46781215,-0.5203979,-0.3428118,0.5838621,-0.105442636,-0.3781013,0.0077281715,-0.41192892,0.022270624,-0.88090914,0.14979598,0.08745527,-0.54263645,-0.5281479,-0.35853082,-3.9633024,0.11219672,-0.13833341,-0.051108,-0.15360758,-0.14219707,0.39198455,-0.6046608,-0.5321624,0.041822754,0.009763764,0.5336074,0.007600214,0.057480074,-0.34431714,-0.121045165,-0.14970183,0.22237124,0.0812414,0.33279812,0.04870766,-0.433031,0.18872756,-0.28603795,-0.5526735,-0.01572204,-0.53904223,-0.529441,-0.1157217,-0.41107827,-0.2061886,0.78055465,-0.49369252,-0.018166257,-0.33934605,0.056376226,-0.15501124,0.34309393,0.15872523,0.15074328,0.14366253,-0.0054199696,0.013061108,-0.3713256,0.28511715,0.059609756,0.20778356,0.3994066,-0.115283966,0.094170205,0.5238617,0.58601594,-0.02408723,0.77789426,0.25398466,-0.16701674,0.3247061,-0.25657845,-0.19485016,-0.6929625,-0.5180593,-0.21164745,-0.5310995,-0.35118905,-0.25265375,-0.34603298,-0.8098676,0.43238556,0.035683665,0.139868,-0.14215918,0.3168763,0.23312302,-0.1353116,0.061097104,-0.20192581,-0.25278157,-0.51803154,-0.4739715,-0.57575357,-0.7863309,0.14627317,1.0487701,-0.07420857,-0.1286308,-0.02635364,-0.44198212,0.013468113,0.12301384,0.29753286,0.20516707,0.39352146,-0.16587119,-0.8004099,0.45640504,-0.23854281,0.00017623504,-0.66758895,-0.0009500027,0.6730248,-0.56803113,0.6050756,0.37863243,0.30056885,0.13805062,-0.56661326,-0.36109668,0.056235928,-0.20787846,0.6383284,0.23236337,-0.6815478,0.5742673,0.14967361,0.006053972,-0.6428029,0.37311676,-0.01838925,-0.0759083,0.040070694,0.47808504,-0.0035233179,-0.052407168,-0.20080084,0.17521645,-0.61279875,0.36351818,0.34982777,0.05898962,0.6046858,-0.16248034,-0.23749918,-0.599084,-0.28895518,-0.4533025,-0.27657261,-0.07601202,0.08098399,0.15923171,0.054457027,-0.04210764,0.42020315,-0.4552125,0.2518877,-0.014034939,-0.23086254,0.23352757,0.47928277,0.37747997,-0.42891693,0.63423866,0.1321959,0.1451032,-0.23365508,-0.077228814,0.64767724,0.304829,0.35114732,-0.10066263,-0.04219357,0.17234357,0.67481196,0.26339397,0.2955877,0.18095782,-0.4012991,0.21239741,0.19934775,0.087865904,0.16134745,-0.19636983,-0.0689764,0.049176533,0.21098456,0.4685864,0.14670192,0.33504957,-0.07868865,-0.07386656,0.21396714,0.000512747,-0.14297087,-1.2216036,0.36809602,0.40671635,0.65997595,0.45742923,-0.07198559,-0.077409625,0.40978095,-0.38150278,0.10011617,0.27369928,0.026596665,-0.3714084,0.47050014,-0.51581496,0.410584,-0.18368608,-0.006785055,0.16808577,0.26601946,0.2787209,0.9724542,-0.070480905,0.13724872,0.031681444,-0.24054727,0.10436224,-0.23806255,0.060484104,-0.47377166,-0.19933653,0.68562526,0.34251553,0.31899646,-0.3218831,-0.15228347,0.03213265,-0.20676543,-0.02038575,-0.23673369,0.036957387,-0.2208683,-0.62108415,-0.43897125,0.48242512,0.09992336,0.0807249,0.19921906,-0.31263825,0.21413249,-0.128802,-0.012187115,0.0049475688,-0.62521046,-0.13025092,-0.29138234,-0.50340825,0.3526397,-0.4945589,0.28870708,0.1351584,-0.0011393627,-0.27158412,0.10073192,0.01950678,0.8936855,0.16659291,-0.21917194,-0.33639365,0.022865137,0.41887248,-0.31748194,-0.014386904,-0.35358742,0.1561604,-0.66456187,0.39902732,-0.19058882,-0.21755303,-0.019826094,-0.12219436,0.035775073,0.31166205,-0.2582569,-0.123564705,0.24665712,0.045176443,-0.20891055,-0.009379443,-0.45304745,0.22691528,0.026239984,0.06550118,0.024639638,-0.13512158,-0.08871954,0.3863689,0.18013982,0.09393061,0.37580976,-0.13723405,-0.2583453,-0.022957662,0.0616418,0.4285178,0.041002322,-0.072814696,-0.29745665,-0.356029,-0.34030974,0.46121475,-0.19527817,0.08105808,0.045045655,-0.39059135,0.7755772,0.16012941,1.1548634,0.24281839,-0.48558745,0.17381598,0.56744736,0.05686346,0.22797562,-0.3347617,0.9173673,0.513683,-0.13005784,-0.20120601,-0.4882724,-0.14626162,0.4100551,-0.31437317,-0.26954034,-0.20902564,-0.86600566,-0.23660527,0.15049744,0.16558804,0.04615346,-0.0013060133,-0.05163819,0.07493714,0.2129693,0.5577625,-0.6574127,0.06976562,0.35400283,0.12335037,-0.00053155026,0.31071168,-0.31756166,0.42760772,-0.626646,0.07271811,-0.48842552,0.072086245,-0.10270427,-0.34612,0.33429784,0.10267151,0.31049454,-0.29822552,-0.43654925,-0.34302756,0.66165763,0.16062139,0.3173664,0.7094316,-0.2957895,-0.17425194,0.20143504,0.4600359,1.3567768,-0.093499415,0.16416082,0.32157117,-0.3036503,-0.55133885,0.14684726,-0.32735044,0.09315595,-0.076755114,-0.43506482,-0.33186924,0.3265707,-0.001168402,-0.09136102,0.24222428,-0.4051213,-0.17788129,0.39412734,-0.24372788,-0.28678867,-0.18337736,0.21059676,0.6917915,-0.48234636,-0.4376817,0.076058164,0.397323,-0.23039314,-0.6870635,-0.017364703,-0.21785754,0.40319186,0.21258545,-0.32400075,-0.01950218,0.23973995,-0.44377413,0.16419329,0.5194899,-0.3244979,0.046890274,-0.34459114,-0.069509044,1.0484296,0.013996554,0.23021029,-0.7174975,-0.4226209,-0.987264,-0.28742212,0.18881908,0.18296099,-0.065817,-0.63224643,-0.075026475,-0.15394042,0.058385808,0.18956086,-0.53315383,0.45084903,0.15619789,0.5090294,0.033341184,-0.85372716,-0.15165932,0.10654981,-0.18384987,-0.5024601,0.59337896,-0.22387908,0.61619836,0.1406702,0.13782834,0.1211135,-0.7345177,0.29024214,-0.36372524,-0.09462919,-0.82209116,0.10185639,951 -321,0.4513486,-0.14587778,-0.34646243,-0.12917866,-0.12393882,0.17846778,-0.06855411,0.5022686,0.1854937,-0.47845283,-0.16418943,-0.3480958,0.040712792,0.2322263,-0.12479301,-0.5446547,-0.014307813,0.13695581,-0.44697377,0.46826264,-0.49436158,0.39404824,0.05571755,0.26865676,0.16001359,0.15998454,0.11734805,-0.20030728,-0.14490236,-0.07532121,-0.21912864,0.38792256,-0.4147399,0.018246006,-0.16167411,-0.4023511,0.02433048,-0.5609378,-0.30585542,-0.6833466,0.3910557,-0.73278373,0.42657655,0.08119078,-0.08486922,0.50575674,-0.024199529,0.15444466,-0.20952867,-0.042257033,0.19738343,-0.045829106,-0.07913545,-0.057612345,-0.19430605,-0.19173983,-0.48010424,0.20611373,-0.36031994,-0.2661211,-0.26563385,0.107799076,-0.29641667,-0.092662744,-0.04520565,0.2839405,-0.35760885,-0.14115666,0.19656678,-0.07941944,0.19842307,-0.5168197,-0.11134396,-0.090663545,0.28667596,-0.27595314,-0.14014056,0.26868948,0.33747044,0.52956647,-0.080481224,-0.10457598,-0.33264384,0.018408157,0.05218569,0.53425413,-0.12989971,-0.665294,-0.12061204,0.035486143,0.035038486,0.23762086,0.10826824,-0.24769929,-0.2588062,0.09639135,-0.22757544,0.3010196,0.5148986,-0.41096961,-0.30227324,0.3197888,0.42682925,0.23219447,0.034897383,-0.07819333,0.018878993,-0.63819534,-0.17932197,0.0045907893,-0.30247375,0.57614154,-0.13543704,0.31132403,0.627637,-0.08666453,0.10652331,0.06026144,0.017874742,-0.18787406,-0.21391967,-0.058505867,0.24554276,-0.44305375,0.17124377,-0.098903984,0.8226109,0.16407855,-0.7445128,0.4146347,-0.57577497,0.16003847,-0.11077603,0.51072365,0.6634696,0.14784619,0.31450403,0.6909673,-0.46358097,0.017492931,-0.020652592,-0.32267338,-0.04974232,-0.08148768,-0.084416315,-0.49005452,0.058160704,0.062039662,0.071477786,0.23574845,0.28189617,-0.52497554,0.06790439,0.06985225,0.7522793,-0.32030603,-0.10504634,0.6969894,0.94612986,0.9229604,0.08081817,1.1379523,0.25125077,-0.33895218,0.39714953,-0.3797894,-0.8054994,0.27574918,0.3818473,-0.22909918,0.15131289,0.055105988,0.0025546232,0.32095855,-0.4266091,0.055949364,-0.16794518,0.019809615,0.16284527,-0.0775036,-0.33600965,-0.3960833,-0.12997541,0.055539463,0.117571,0.13984817,-0.092445344,0.29678687,0.026791608,1.645123,0.0025797328,0.044709153,-0.010035505,0.33598778,0.16783224,-0.14736368,-0.14516668,0.31176943,0.36454585,-0.12407615,-0.622629,-0.0076392093,-0.20579888,-0.5688488,-0.116192944,-0.302033,-0.07418494,0.11862721,-0.41765875,-0.1253785,-0.26404336,-0.34293205,0.5754792,-2.8485084,-0.1759902,-0.07081303,0.23855916,-0.29695842,-0.34427544,-0.20749852,-0.5058991,0.37140414,0.34450766,0.37377346,-0.70173454,0.2878667,0.26561514,-0.48370603,-0.20818433,-0.6480108,-0.1521097,-0.013702019,0.19259222,0.032525077,0.04467586,-0.0024019252,0.026709715,0.5278496,0.0169077,0.074774876,0.18338054,0.48719424,0.14743476,0.42908594,0.0007085085,0.5420999,-0.24758703,-0.16620475,0.28509772,-0.30876148,0.38329926,-0.11707163,0.17407854,0.4566405,-0.5036705,-0.78880346,-0.61241096,-0.25832912,1.1399375,-0.111956365,-0.37666512,0.33343562,-0.255982,-0.14731674,-0.08847865,0.5325224,-0.11794958,-0.29631293,-0.7237107,0.14701763,-0.04446669,0.030168863,-0.0066241594,-0.015269001,-0.32453647,0.69788337,0.00310449,0.3551601,0.34868157,0.20992373,-0.20608804,-0.35126406,0.06443709,0.79877543,0.3547439,0.11503809,-0.14141934,-0.13565664,-0.5290775,-0.16663344,0.10700934,0.3555021,0.65378445,0.028177548,0.15474854,0.23981346,0.15781651,0.13009971,-0.14355071,-0.13928016,-0.0030157885,-0.1474281,0.5329924,0.51167256,-0.3245793,0.4623591,-0.051665656,0.06624493,-0.22194415,-0.32192847,0.6124794,0.92284584,-0.11512195,-0.16835362,0.49887234,0.5564889,-0.2020933,0.3278623,-0.52172935,-0.3470273,0.5373554,-0.2523305,-0.36451134,0.15752842,-0.25096828,0.09519629,-0.98315793,0.12057528,-0.08755762,-0.3293982,-0.5462427,0.0044073584,-3.3518507,0.18543002,-0.2504019,-0.11598359,-0.15122975,-0.062972516,0.10883116,-0.54800916,-0.5483671,0.16647361,0.09241721,0.5501157,-0.0074679903,0.19678882,-0.12986192,-0.17384191,-0.33394703,0.0597643,-0.017237728,0.346134,-0.037575983,-0.34689358,-0.06206368,-0.1879529,-0.37994033,0.22302571,-0.4739956,-0.4593534,-0.11797522,-0.4101572,-0.40211174,0.58504707,-0.31133252,-0.025697764,-0.1684838,-0.05174052,-0.1822963,0.40798417,0.1697082,0.15774536,-0.051485315,-0.095688805,0.03875791,-0.25670013,0.3680863,0.042101145,0.22640571,0.43960112,-0.121717386,0.2060178,0.41299242,0.6715483,-0.10950293,0.79386926,0.49749422,-0.008979678,0.35773978,-0.3245906,-0.17747141,-0.45399222,-0.3436194,-0.05760845,-0.38418624,-0.5456342,-0.16405906,-0.32845148,-0.6661093,0.37122247,0.082496814,0.25429735,-0.016845124,0.18597753,0.52834725,-0.1878426,0.07714612,-0.13262938,-0.020001112,-0.45773208,-0.25636736,-0.63782203,-0.44163397,0.23138243,0.8561739,-0.14457774,-0.053131808,0.010836617,-0.18429524,-0.03035974,-0.037572972,-0.015873363,0.20734888,0.3249251,-0.1918196,-0.6226371,0.63081044,-0.05528359,-0.25314674,-0.5486333,-0.008043701,0.42343807,-0.55852824,0.49130693,0.28408474,0.073955804,0.07343605,-0.55032593,-0.12822773,-0.075437896,-0.2806497,0.24792649,0.21147776,-0.6961098,0.42563412,0.43356666,-0.19061552,-0.76599944,0.45455638,0.14141631,-0.2754987,-0.046218563,0.2832051,0.15150674,0.041541036,-0.167903,0.23686,-0.61764866,0.3180333,0.2582215,0.022285929,0.3404404,-0.22616397,-0.16535746,-0.6794527,-0.021185001,-0.4212014,-0.13829279,0.15071742,0.12658195,0.18948358,0.11989654,0.08568857,0.30455992,-0.3538691,0.117799215,0.042989198,-0.0820064,0.073729664,0.3379992,0.4399089,-0.41600463,0.54263693,0.020686632,-0.119285375,-0.008395191,0.049337283,0.41585156,0.14868109,0.24353771,0.001690197,-0.37943947,0.34731472,0.79163176,0.115362234,0.21715865,0.025980059,-0.11399908,0.30625898,0.084337376,0.1334857,0.01917297,-0.50009507,-0.054378923,-0.09195655,0.1883171,0.5121658,0.076141074,0.3819014,-0.09829165,-0.2769845,-0.007745569,0.1943533,-0.015087571,-1.0167664,0.37804016,0.122355856,0.9518851,0.53369987,-0.14223841,0.14669363,0.45246062,-0.23816343,0.20046441,0.32084313,-0.15204464,-0.6487877,0.57585335,-0.52746606,0.41841215,-0.105677366,-0.075498395,0.07452507,-0.054875817,0.37703127,0.6585882,-0.10793206,-0.0034784903,0.004440659,-0.32275856,0.21269733,-0.42717937,-0.0026856998,-0.6191351,-0.08221755,0.6059582,0.48903835,0.20337968,-0.1736017,0.010650474,0.09923419,-0.11563014,0.08783158,0.062384132,0.2037964,-0.066748016,-0.7102904,-0.15741493,0.49191672,0.03337485,0.13615254,-0.051978365,-0.38291046,0.23599206,-0.26719195,-0.060949944,-0.13797244,-0.58968,0.0011247,-0.33041015,-0.53136116,0.4440048,0.05458116,0.321547,0.2180304,0.103614494,-0.2057159,0.31218383,0.10057027,0.6531225,-0.10970233,-0.16572815,-0.4767782,0.20643067,0.25225246,-0.19538814,-0.23803116,-0.18859936,-0.1298901,-0.45569217,0.5142464,0.0111409025,-0.1831763,0.08762466,-0.12933786,0.05196435,0.56925964,-0.16882023,-0.0052238065,-0.038718063,-0.21111248,-0.2645685,-0.0679173,-0.10142081,0.28730106,0.2706475,0.016359873,-0.101681836,-0.05799316,-0.11137425,0.40395632,-0.07680444,0.28911012,0.28210852,0.01386549,-0.324467,-0.14774638,0.27649716,0.3298261,-0.03292316,-0.19889377,-0.33684048,-0.30920166,-0.32032305,0.041081455,-0.1085254,0.3884215,0.006672327,-0.250069,0.68041146,0.051716764,1.0475689,0.18664907,-0.19063607,0.10065181,0.4842401,-0.05207918,-0.11495206,-0.39994824,0.84417635,0.46676284,0.038884778,-0.12758149,-0.18581666,0.08124237,0.21398859,-0.18968935,-0.14981203,0.0028312574,-0.6016473,-0.3781896,0.13557822,0.21692044,0.16753353,-0.13664259,-0.047725335,0.21615417,0.025446767,0.3674841,-0.4824509,-0.37586302,0.2287139,0.27244234,0.07312796,0.17284323,-0.39080873,0.4434058,-0.5617497,0.068607144,-0.24737689,0.22322689,-0.2250467,-0.18742082,0.20514804,0.09944115,0.30701873,-0.15849243,-0.43741366,-0.29362872,0.40859857,0.05279918,0.24774815,0.42852613,-0.28284344,-0.011863158,0.08833623,0.5337241,1.0777322,-0.09099916,-0.082974955,0.4015147,-0.26694572,-0.5284962,0.44011602,-0.2630791,0.15582535,0.026299192,-0.059469428,-0.512933,0.2965374,0.21422324,0.10426867,0.013282704,-0.5235104,-0.326307,0.31355426,-0.23521836,-0.26216546,-0.2783805,0.13711463,0.6197403,-0.31238815,-0.2628683,0.18190016,0.1624282,-0.2886596,-0.637326,0.103872985,-0.3841359,0.3703573,0.07668751,-0.2660213,-0.06220858,0.095644616,-0.3697162,0.16825584,0.055872105,-0.3271405,0.014548878,-0.3555028,-0.0131109,1.1547652,-0.20845424,0.2552594,-0.5517179,-0.4727545,-0.8641575,-0.43375862,0.58041435,0.05882504,0.046312407,-0.4645931,0.032572877,0.053045567,-0.0976651,-0.03073579,-0.29541942,0.44769,0.09047054,0.28932858,-0.077980414,-0.49237207,0.008017207,0.06513787,-0.22420137,-0.42341378,0.42794907,0.064829655,0.82926005,0.09711293,0.03290835,0.3971787,-0.3739558,-0.028680343,-0.21159036,-0.06627618,-0.65148515,0.11625032,952 -322,0.40141532,-0.012814947,-0.5077764,-0.12137041,-0.5222083,-0.23824188,-0.34106776,0.2580197,0.2949437,0.13232315,-0.13330835,0.04549216,0.007666232,0.36572346,-0.07969342,-0.58781445,-0.06293165,0.16386293,-0.6722861,0.7207995,-0.402219,0.34739524,0.06912546,0.4436141,0.30304042,0.47116005,0.24084152,-0.028167235,-0.19843785,-0.26492605,-0.110859156,0.2671472,-0.6162988,0.15387411,-0.28977013,-0.19345988,0.16460611,-0.49376795,-0.3052458,-0.7819533,0.075924866,-0.8730672,0.59967905,-0.0414232,-0.16892794,-0.34843102,0.37274686,0.47652918,-0.14734752,-0.12197819,0.19893561,-0.2097339,-0.039481856,-0.29608047,-0.09410552,-0.5230671,-0.45519403,-0.1183203,-0.6944485,-0.32882854,-0.10553673,0.24815884,-0.32146582,-0.14862578,-0.110501416,0.34974825,-0.4427754,0.10592575,0.3085822,-0.32550982,0.13875446,-0.4802508,0.10105205,-0.15083943,0.45148817,0.14451195,-0.18437141,0.48039505,0.31221685,0.26243088,0.31856543,-0.31983465,-0.28224766,-0.28029212,0.088850565,0.45958474,-0.08488833,-0.29124436,-0.24930115,0.07413446,0.44655818,0.40356445,0.15023085,-0.23170276,-0.00044786633,-0.17973325,-0.124316595,0.5875694,0.5209821,-0.20810984,-0.22919096,0.38362643,0.5633902,0.47163406,-0.39067748,0.018612433,-0.0052631935,-0.41091117,-0.1081946,0.06939346,-0.09252004,0.46704474,0.053852383,0.051050637,0.92775714,-0.1093703,-0.06744887,-0.05648991,0.0700433,-0.27696648,-0.3462716,-0.27156177,0.1026816,-0.48860106,0.09037938,-0.09273883,0.7050486,0.016686382,-0.64707834,0.38984188,-0.61335003,0.05095723,0.07706401,0.5985509,0.5393103,0.55464214,0.37437811,0.76699054,-0.0800765,0.1869932,0.04115486,-0.46254203,0.06424984,-0.32275453,0.12773325,-0.43928587,0.16897339,-0.23514095,0.025979655,-0.04135853,0.30170584,-0.4886898,-0.098085046,0.24843232,0.9414831,-0.2533981,-0.12395013,0.69335157,1.1884694,1.0205187,-0.1281294,0.9252003,0.31444913,-0.07520612,0.037255716,-0.30413258,-0.6437443,0.15872963,0.39733556,-0.17155658,0.38863862,-0.09062889,-0.017564291,0.3158715,-0.32564554,-0.018929236,0.07886546,0.32243195,0.25280657,-0.11932931,-0.4768282,-0.13386355,-0.0017995059,-0.05177258,0.22423717,0.26785785,-0.33596742,0.35356203,-0.015579009,1.4197466,-0.12950587,0.019453986,0.107063726,0.7481805,0.31644645,-0.061176196,0.1265785,0.60576874,0.26335734,-0.0008766373,-0.47397357,0.30278152,-0.44531468,-0.44615567,-0.12611534,-0.42682716,-0.23012343,0.25136614,-0.42333668,-0.09019225,-0.07647743,-0.0601295,0.30786875,-2.869967,-0.18896116,-0.18077183,0.2181086,-0.28017,-0.079344206,0.11324307,-0.47120172,0.1274767,0.23735365,0.47181037,-0.5652725,0.5154606,0.661685,-0.583909,-0.12817906,-0.54830587,0.0015408879,-0.114735246,0.6548959,-0.08197626,-0.055170693,-0.040867794,0.18959482,0.7320618,0.16138935,0.1437048,0.549954,0.29265213,0.12850991,0.41852984,0.03743816,0.5942117,-0.25208184,-0.1980202,0.3675854,-0.27832267,0.37592855,-0.10785346,0.044629924,0.7003163,-0.38649604,-0.8255026,-0.56451225,-0.24622396,0.91055787,-0.37569454,-0.5351817,0.21926285,-0.06772767,-0.1566102,0.13484727,0.5895745,-0.17785527,0.22506733,-0.47351533,0.04029595,-0.12375625,0.1801199,-0.014603762,0.09609644,-0.23923212,0.6737144,0.030155638,0.5709091,0.15067562,0.36615983,-0.24308255,-0.44478995,0.15747426,0.65612435,0.38328376,-0.09657116,-0.17510095,-0.3352415,-0.091768965,-0.29798564,0.07909444,0.5347376,0.6974144,-0.21930529,0.18348779,0.35470232,-0.15730104,-0.04647367,-0.16398826,-0.24346001,0.021411275,0.24334595,0.3215838,0.9056591,-0.19881783,0.52245706,-0.14078905,0.28086922,-0.17904623,-0.5740605,0.6835144,0.4298605,-0.2822744,-0.14174148,0.4980188,0.5013183,-0.4965564,0.4689246,-0.71914315,-0.12925915,0.6310537,-0.029776571,-0.5796397,0.18310149,-0.16823894,0.11438214,-0.8115701,0.41389766,-0.32809633,-0.39620343,-0.4242368,-0.12571612,-3.000859,0.058832176,-0.16368762,-0.19081208,-0.28661266,0.012261708,0.310437,-0.74392813,-0.5374633,0.08529913,0.19276902,0.4436344,-0.14063278,0.16218771,-0.24676369,-0.2741134,-0.23322651,0.36895135,0.016408818,0.39330614,-0.31702718,-0.50533956,-0.067789696,0.043278582,-0.57966036,0.18764171,-0.5504522,-0.26739985,-0.054293178,-0.5791709,-0.18032025,0.591879,-0.42607778,0.0874873,-0.30515727,0.073672704,-0.25921458,0.113406196,0.18165855,0.1383431,0.18718295,-0.04109342,0.0359932,-0.37803954,0.45004413,-0.11663588,0.4782768,0.10771645,0.016515834,0.17901243,0.41804692,0.51900965,-0.26542795,0.9906814,0.42299905,-0.113419905,0.29985395,-0.30121383,-0.239805,-0.57845396,-0.3804573,-0.080871984,-0.3785944,-0.6058572,0.009917382,-0.31639975,-0.7978998,0.6307917,0.026420541,0.49472174,-0.05506646,0.09176664,0.36716846,-0.30289987,-0.06990995,0.014152744,-0.18447587,-0.5635558,-0.18287887,-0.59011406,-0.5467417,0.14093521,0.83300215,-0.25871423,-0.09885854,0.014218315,-0.4106097,-0.004402415,0.10218067,0.02499186,0.22695789,0.390944,-0.05559944,-0.62456065,0.35735467,-0.058556914,0.030733492,-0.42468703,0.053933375,0.6524128,-0.71735775,0.58392876,0.18453808,0.12799856,-0.32630718,-0.5221498,-0.23678038,0.040337894,-0.1483984,0.5439355,0.18561956,-0.7639044,0.4131208,0.09450214,-0.58519214,-0.62984747,0.2727127,-0.17708646,-0.2616803,-0.011553421,0.28021222,0.08379211,-0.1039481,-0.21327439,0.18802384,-0.33373126,0.18248424,0.25300664,-0.13360296,0.33650842,-0.087225564,-0.34759447,-0.73395294,0.08046477,-0.46540177,-0.39450333,0.4099455,0.01947598,-0.09096625,0.1294933,0.22843264,0.28491715,-0.16098467,0.19588928,0.027372463,-0.27997914,0.37663487,0.49285692,0.4636612,-0.43916368,0.58946365,0.190266,-0.2463286,0.1491999,0.0023770968,0.28756636,-0.101930246,0.40548703,0.02349492,-0.012792424,0.24542548,0.5908248,0.21766533,0.51588196,0.084314324,-0.19378565,0.45353362,0.007471303,0.25945583,-0.02715169,-0.57983655,-0.103673205,-0.14224765,0.09403561,0.5966498,0.39728495,0.30657133,0.2004293,-0.20275797,0.049351268,0.12877005,-0.21456629,-1.3102206,0.34587842,0.46306974,0.8885706,0.21512532,0.09527337,-0.22529055,0.88660043,-0.3001756,0.029488983,0.4805226,0.17419952,-0.48301098,0.76422274,-0.48320666,0.48739108,-0.08888361,-0.1311418,0.21253294,0.10351087,0.45502275,0.7913429,-0.20831053,0.003731745,-0.09605595,-0.28268987,-0.06962264,-0.24644178,0.084324405,-0.35512313,-0.50648886,0.69354814,0.3879492,0.38026258,-0.19209573,-0.04311318,0.08282873,-0.106614254,0.18894388,-0.10261683,-0.08961343,0.073198214,-0.44442362,-0.2590353,0.666612,-0.10869967,0.10951779,-0.19753994,-0.28299457,0.13074522,-0.19609417,0.019720905,0.006471747,-0.72069705,0.08484366,0.025047142,-0.57622916,0.54040974,-0.22437574,0.091250926,0.05797694,-0.06283893,-0.08829351,0.49142107,0.15697818,0.68927413,0.0024461427,-0.1826084,-0.21708962,0.16169003,0.19528215,-0.18808177,0.057132967,-0.35497406,0.008109748,-0.6133795,0.48297527,-0.28508556,-0.495565,-0.07795849,-0.21375646,-0.06831939,0.6035853,0.06305849,-0.24037625,0.065758,-0.32919723,-0.5047765,-0.07456876,-0.2859974,0.18277435,0.21148112,-0.21239875,-0.1253904,-0.1796995,0.019557988,0.42952365,-0.14407201,0.46487018,0.20837453,-0.04738502,-0.12525027,0.040071834,0.23426907,0.45833904,0.14852749,0.24421152,-0.19940208,-0.35381338,-0.41100147,0.17161182,-0.15844369,0.24341415,0.14233463,-0.33351427,0.96321684,0.058912117,1.4405264,0.14499193,-0.39522925,0.2599389,0.63346696,-0.072578765,0.15552145,-0.49187028,1.0385053,0.4851994,-0.10203872,-0.08463363,-0.49811667,-0.13243727,0.23666434,-0.44627762,-0.022992253,0.0059492867,-0.4980273,-0.19190216,0.07083922,0.1871377,0.09750896,-0.03528247,-0.12573327,0.1158086,0.17004225,0.43262067,-0.52953506,-0.25553763,0.3360385,0.24289718,-0.09267889,0.062861994,-0.46018606,0.47133234,-0.64646053,0.21461192,-0.5326523,0.23908158,-0.42771754,-0.47411174,0.08322595,-0.10104696,0.4362231,-0.39827445,-0.36841905,-0.09736852,0.48751342,0.123718545,0.098698,0.6655989,-0.24295211,0.015959991,-0.009055972,0.5620363,0.967701,-0.46610996,-0.086782865,0.2809029,-0.42957896,-0.6177054,0.34109876,-0.48345956,-0.10217737,-0.15841705,-0.57832927,-0.51892775,0.2144329,0.03969615,-0.039290976,0.0030179957,-0.5649429,-0.08504152,0.24244754,-0.20408373,-0.23228207,-0.15099214,0.30851337,0.86465925,-0.21804349,-0.5861193,0.031042771,0.20485362,-0.20458262,-0.5073563,-0.05969082,0.009299827,0.35492522,0.078998104,-0.37696713,-0.09865988,0.3356228,-0.54447967,0.015372385,0.23845543,-0.38700894,0.16870697,-0.23360504,-0.004049599,0.9232488,-0.28156143,-0.22556092,-0.6756163,-0.5777178,-0.92730844,-0.62892526,0.012157611,0.23256403,0.001338172,-0.43019444,0.07072794,-0.20102951,-0.100541785,0.03639013,-0.6898978,0.30325925,0.08379528,0.57003814,-0.32095775,-1.0723782,0.17321578,0.13110504,0.03933462,-0.7715848,0.53770036,-0.1887575,0.89245784,0.14031525,-0.0689608,-0.040815074,-0.42215523,0.09500973,-0.3841919,-0.21253824,-0.8252143,0.22505918,956 -323,0.29536846,-0.118660115,-0.53096265,-0.15542385,-0.1785058,-0.018501054,-0.20091654,0.39106885,0.2733552,-0.4492233,0.13282105,-0.26096082,-0.12578185,0.29284236,-0.12993294,-0.51583177,-0.084798194,0.1447448,-0.43319115,0.6398618,-0.27799764,0.37930638,0.18011627,0.15656339,-0.07968607,0.21327108,0.013627452,-0.31239644,-0.21391399,-0.13566808,0.065936856,-0.089230046,-0.45667067,0.27630848,-0.16128387,-0.11405204,0.32829237,-0.40872812,-0.3624719,-0.7132227,-0.001911517,-0.6173021,0.59885186,-0.087685436,-0.38915634,0.18259296,0.09525943,0.448293,-0.12817518,0.007298716,0.3064852,-0.19096948,-0.37240067,-0.18409759,-0.15710758,-0.74083537,-0.49334157,-0.17667982,-0.49491844,-0.088235594,-0.1374871,0.14352408,-0.2955712,-0.077496305,-0.19750796,0.51750475,-0.5051565,-0.050167456,0.18345903,0.001344047,0.36654717,-0.7175581,-0.06928373,-0.13486038,-0.016227182,0.16768508,-0.15617864,0.43398234,0.14867815,0.47666305,0.0133771105,-0.18503945,-0.16658582,-0.07579071,0.02589488,0.46029,-0.06698964,-0.19967943,-0.15983428,0.044632927,0.29940468,0.12948725,0.009401942,-0.30937952,-0.0010716438,-0.05863281,-0.24711452,0.076558575,0.42782438,-0.269934,0.034567934,0.32094613,0.445375,0.0144677125,-0.1743798,0.04789681,-0.10791347,-0.33777675,-0.12905726,0.09643005,-0.2483098,0.6830845,0.057895865,-0.02027055,0.52645326,-0.021715725,-0.19201827,-0.08247637,0.1592625,0.20843272,-0.101290576,-0.45779073,0.43385154,-0.64244235,-0.108782955,-0.37716597,0.63148534,-0.011452467,-0.8040733,0.3020266,-0.38596752,-0.049035,-0.043674525,0.58373535,0.7352213,0.7196739,0.21067469,0.7413521,-0.5694441,0.23125288,-0.0661804,-0.2303872,0.30156028,-0.21001436,0.16926704,-0.5147377,-0.060155496,-0.07736127,-0.36943468,-0.2088113,0.52627546,-0.53650963,-0.019178033,0.20632274,0.7666205,-0.3350701,0.0056339423,0.43104497,1.258846,0.94710934,0.06471099,1.121565,0.305411,-0.3642939,0.06929627,-0.2700814,-0.65166646,0.10643967,0.26446673,0.17937002,0.22354235,0.12015783,-0.028296877,0.3994374,-0.45658502,-0.033511054,-0.10182328,0.4567625,-0.087800905,-0.07203279,-0.5060412,-0.21203701,0.021799732,0.0043567717,-0.055262424,0.34498698,-0.1223295,0.18852669,0.21602353,1.6508541,-0.021283276,0.09361874,0.12465799,0.38324806,0.27150917,-0.0056189536,-0.0871153,0.44060346,0.18961395,-0.023876278,-0.52380955,0.05719315,-0.26248416,-0.4626756,-0.059509195,-0.21192689,0.10675998,-0.029672926,-0.35177523,-0.29912406,0.03238114,-0.38479635,0.40134534,-2.5422385,-0.088002,-0.03729737,0.24992853,-0.23770224,-0.20274608,0.1909315,-0.44272748,0.47908497,0.47251382,0.43352112,-0.41507998,0.35442206,0.52882975,-0.5111034,0.0036516427,-0.5587591,-0.19065943,-0.09990141,0.3709373,-0.005489552,-0.27328074,-0.024102287,0.11886705,0.4317756,-0.10003908,0.15013833,0.33535206,0.2124616,0.11012689,0.5505319,-0.041076496,0.45641795,-0.11061306,-0.10020471,0.19609255,-0.31102127,0.19465011,-0.13916782,0.14525083,0.4082573,-0.44685262,-0.5849925,-0.44780126,-0.15455645,1.0389372,-0.31868693,-0.28081942,0.24439855,-0.08888688,-0.17011113,-0.05984757,0.43180427,0.13027126,0.046527896,-0.7523726,-0.15549085,0.08627454,0.30889103,0.12028202,0.18998857,-0.5393806,0.50667936,-0.13941827,0.5211203,0.56873447,0.1923296,-0.11141488,-0.43860015,0.030347006,0.9174346,0.36178696,0.12662011,-0.3210804,-0.17692462,-0.2796368,-0.0421403,0.11886131,0.2788499,0.9728498,-0.037029553,0.01475668,0.16589783,-0.3376262,0.07305967,-0.16936317,-0.54988,-0.007862846,0.22607845,0.47924736,0.49268454,-0.0396265,0.44042876,0.0446976,0.3548651,-0.1770841,-0.44888848,0.40905267,0.75048554,-0.21320054,-0.15785433,0.5459006,0.5424932,-0.08485827,0.564483,-0.5538854,-0.28591305,0.56594557,-0.097022034,-0.5655225,0.3994833,-0.36937475,0.1890514,-0.98485595,0.40862548,-0.3272011,-0.59968823,-0.7603912,-0.055001445,-2.854246,0.11923776,-0.08000584,-0.062490877,0.16718842,0.08308521,0.35404682,-0.5456645,-0.4920279,0.17732042,0.1735848,0.5210296,-0.09566368,-0.16778873,-0.2708702,-0.4367553,-0.25296444,0.3439636,0.084428996,0.13407968,-0.028670693,-0.4535472,-0.10317491,-0.3458377,-0.28907546,0.07811725,-0.38598284,-0.32414615,-0.29959857,-0.5430442,-0.39830902,0.7278649,-0.2817045,0.012846342,-0.15595451,0.15497223,0.19022647,0.13930242,0.0751039,0.16281897,0.04492145,-0.23958655,-0.10922192,-0.35107702,0.062004957,0.22593822,0.34663072,0.4368716,-0.045488257,-0.007520147,0.76193744,0.6169062,-0.12962739,0.8633663,0.43632373,-0.18986616,0.30884135,-0.32555294,-0.08988441,-0.600352,-0.28674462,-0.24498034,-0.3297787,-0.53341997,0.13660628,-0.41228607,-0.71915424,0.54617345,-0.0026583513,0.057641767,0.08430295,0.35919735,0.36021185,-0.25403827,0.01650198,-0.19085269,-0.15950142,-0.42838523,-0.3585471,-0.8228342,-0.40429673,0.10632982,1.3851174,-0.11981848,-0.052220926,0.0778056,-0.19466709,0.1371386,0.08619301,0.09466713,0.22306539,0.27914906,0.07209525,-0.71040165,0.41457018,0.08223219,0.06280099,-0.6144098,0.28255934,0.6045402,-0.7337349,0.31895626,0.42522573,0.12309634,-0.108811475,-0.7934159,-0.2163716,0.23498778,-0.32573482,0.53170955,0.0870814,-0.8387588,0.4163699,0.18468894,-0.40489167,-0.76503485,0.33541495,-0.17787284,-0.3541149,0.13513324,0.28909054,-0.015515101,0.20957416,-0.3611801,0.3183157,-0.59089667,0.2019844,0.3325523,-0.14554492,0.28294075,-0.14973,-0.13993683,-0.94006413,0.054598577,-0.49517733,-0.3125345,0.33190632,0.16990407,0.1102574,0.255408,0.43793297,0.4882905,-0.1963234,0.029418338,-0.18004127,-0.3878171,0.6203251,0.53485674,0.26678663,-0.26074567,0.4629244,-0.18650156,-0.12295561,-0.4081081,-0.061442815,0.41601732,0.14956191,0.22236411,0.1063105,-0.2501237,0.21896692,0.8420875,0.24021381,0.42241102,0.13153519,-0.20129801,0.4116384,0.05497475,0.02169054,0.08691667,-0.41070995,-0.15102257,-0.09846322,0.20299965,0.4441333,0.073999576,0.35162476,-0.21485327,-0.15678073,0.13449337,0.27746832,0.07953194,-0.6886452,0.39201418,0.12731217,0.46626556,0.78356177,0.24708344,0.019447485,0.61313325,-0.38435906,0.09376994,0.3823728,0.051687438,-0.47246268,0.53027344,-0.6014704,0.20801535,-0.09416248,-0.07192173,0.10334095,-0.018922806,0.6151609,1.0098951,-0.11915894,-0.01072858,-0.15542327,-0.16583437,0.12904762,-0.21899655,-0.03924079,-0.4497428,-0.47253147,0.65074855,0.11389948,0.35023987,-0.17071442,-0.087517194,0.113047674,-0.20684865,0.6477864,-0.059731547,-0.06710566,-0.017520426,-0.4202018,-0.28368047,0.49771544,-0.16291808,-0.07305115,0.008274981,-0.055999495,0.111464776,-0.124098174,-0.10399015,0.065760344,-0.6313362,0.042522863,-0.27870825,-0.3935977,0.79257596,-0.2116566,0.26168177,-0.013413885,0.14841549,-0.24921367,0.17086174,0.32423654,0.47952235,0.024541872,-0.26919147,-0.100370996,-0.025062036,-0.05135084,-0.26016316,0.08282091,-0.1857172,0.10593966,-0.9255012,0.47706094,-0.18856254,-0.26937154,0.09312506,-0.29946962,-0.06432044,0.45676774,-0.31426987,-0.14591575,-0.06704315,-0.08293249,-0.09712229,-0.34110248,-0.32967553,0.122830436,-0.32646352,-0.11323927,-0.10545143,-0.10431321,0.11939258,0.5919026,0.035853114,0.12591968,0.32632405,0.12157784,-0.5893135,-0.08790441,-0.05928444,0.34182847,0.03476806,-0.06949141,-0.41426358,-0.21219444,-0.2833766,-0.04927995,-0.1653164,0.37028015,0.14362644,-0.42588785,1.0499082,0.07605871,1.1227727,-0.1122384,-0.41170442,0.029995164,0.6577949,-0.058930643,0.09878157,-0.5082035,0.96325517,0.8055116,-0.021297531,-0.13200079,-0.38400352,-0.18074577,0.32109845,-0.3093508,-0.20996994,-0.043717857,-0.7612623,-0.30015832,0.28299806,0.27999738,0.017028606,-0.028601121,0.11884419,0.16106328,0.26170295,0.36165053,-0.39922792,0.046049904,0.2970943,0.16549882,0.2340947,0.17441593,-0.40137917,0.26118276,-0.6824586,0.18235478,-0.19267167,-0.09700391,0.029022912,-0.34937844,0.2141443,0.20267907,0.17621501,-0.19363806,-0.3472889,-0.012470475,0.4771293,-0.015830679,0.28096953,0.76469773,-0.2884956,0.023260562,-0.017445628,0.5330051,1.233279,-0.33149508,-0.20070873,0.38051245,-0.44839278,-0.69243336,0.1983211,-0.4296959,0.12277635,-0.09808251,-0.42318276,-0.5751283,0.14106597,0.20654258,-0.36079803,-0.08993778,-0.5470332,-0.19271103,0.29770395,-0.3941002,-0.1728598,-0.20953685,0.14521068,0.7826661,-0.35971165,-0.31237394,-0.11193201,0.24345157,-0.31915388,-0.5453338,-0.023453835,-0.41498503,0.33951774,0.27303854,-0.43852898,0.18825859,0.13693672,-0.5594715,0.056761947,0.3527289,-0.3437442,-0.018740714,-0.4802688,0.13512519,0.78525543,0.15146758,-0.05254821,-0.46858475,-0.5549255,-0.9529359,-0.33052355,0.35625294,0.113721415,-0.041423857,-0.5111347,0.036568277,-0.19080795,0.09105278,-0.07165313,-0.4902879,0.32514918,0.14726393,0.29058826,-0.2323792,-0.99570197,0.031714074,0.08807537,-0.24082583,-0.40907958,0.5795946,-0.22483024,1.0933571,0.13922344,0.0017157674,0.15677196,-0.70487684,0.44780445,-0.3683664,-0.28911132,-0.45091873,-0.107090846,960 -324,0.55741185,-0.33680478,-0.64766234,0.10777437,-0.21382897,0.27318686,-0.25027615,0.41550013,0.21908598,-0.31870493,-0.03862896,0.07805692,-0.2058791,0.25918528,-0.19750248,-0.41656098,-0.19604947,0.19234271,-0.5530268,0.5944375,-0.26046842,0.3061919,-0.044562336,0.23658967,0.18827142,0.2585225,0.13362952,0.07601842,0.031776372,-0.22121356,0.15862055,-0.034858204,-0.5747207,0.40397742,-0.16233951,-0.34956497,-0.14339916,-0.398994,-0.5062777,-0.7008273,0.3744282,-0.7907089,0.7011768,0.027729876,-0.26218763,0.121904746,0.05620592,0.28920606,-0.14033756,-0.0078822635,0.14244534,-0.305325,-0.21517245,-0.29982966,0.10058684,-0.2878606,-0.58409715,-0.07489775,-0.4986983,0.12271985,-0.17426945,0.23064639,-0.34595406,0.16981028,-0.2707925,0.41963425,-0.3702518,0.089673445,0.19649929,-0.27350202,0.09746163,-0.6299448,-0.14175676,-0.05093863,0.021835614,0.089682005,-0.12911561,0.3779013,0.00053551694,0.49138933,0.0113096535,-0.19712634,-0.2833725,-0.049034,0.09678085,0.5573486,-0.13223614,-0.26786646,-0.19062267,-0.124306455,0.51224816,0.040798917,0.013392468,-0.19053274,-0.085149124,-0.04795498,-0.105669394,0.3946868,0.687411,-0.23188414,-0.00967687,0.5155752,0.51517755,0.05126454,-0.08519289,0.14176792,0.028678037,-0.42624655,-0.17095979,-0.0043145576,-0.10471826,0.45314842,-0.04963743,0.27994603,0.51591873,-0.20027263,-0.16070077,0.35815617,0.20035999,0.020765606,-0.18821615,-0.41614336,0.3314996,-0.53501374,0.0041411477,-0.28658372,0.7377978,0.0768808,-0.805026,0.35561892,-0.4962212,0.13315837,0.10188233,0.6080294,0.7040547,0.7555509,0.10451921,0.949131,-0.31556785,0.026182063,-0.18734483,-0.19411272,0.20595399,-0.19173782,-0.18678282,-0.42716706,0.06242293,0.21051426,-0.11986046,0.026184147,0.41472623,-0.5302934,-0.16094805,0.05778903,0.5851933,-0.18011338,-0.010644937,0.7319637,1.1382977,1.0428402,0.13831984,1.0720307,0.11821849,-0.23886682,-0.22975269,-0.059802365,-0.89271283,0.26849568,0.292849,-0.05702222,0.46724054,0.23136427,-0.19522545,0.2730843,-0.43738422,-0.2138193,-0.00078320305,0.26282752,-0.11695831,-0.097003095,-0.45905125,-0.27455655,0.17072757,0.00896964,0.20295961,0.35503516,-0.36931908,0.34077966,0.22020763,1.3402735,-0.17355026,0.24084933,0.24070698,0.21127678,0.2192553,-0.24843259,0.022898054,0.16237898,0.3519076,0.09717175,-0.527845,0.08548386,-0.2578381,-0.51924247,-0.1474155,-0.13998128,-0.061655626,-0.074980214,-0.32940352,-0.30669972,-0.21093361,-0.4339927,0.35288665,-2.7557485,-0.08702073,-0.0371576,0.45428506,-0.29995856,-0.28567156,-0.095467806,-0.43917826,0.22762717,0.38778582,0.4107055,-0.71709865,0.3585066,0.29651308,-0.62379223,-0.004064353,-0.5235198,0.047746256,-0.013599229,0.3922959,0.020523317,-0.2297011,-0.069185734,0.2039717,0.5041787,-0.10174009,0.054714017,0.5310576,0.21442667,-0.084701434,0.18943663,-0.10231174,0.36566767,-0.6078361,-0.14543651,0.5197674,-0.5357813,0.13084665,0.05650049,0.16262752,0.374289,-0.5309592,-0.7484547,-0.5110661,0.08740017,1.2671674,-0.36286935,-0.55193686,0.15489273,-0.24895146,-0.26073858,-0.0018570344,0.37843385,-0.19778535,-0.015845085,-0.75190735,-0.057808835,-0.23175262,0.52161235,-0.03353823,-0.036317382,-0.4675468,0.72836214,-0.06970822,0.79658955,0.36708146,0.2899813,-0.29457524,-0.3851886,0.13203308,1.0465015,0.66179657,0.13634679,-0.17325646,-0.114592396,-0.17637606,-0.22404672,0.20775266,0.50945055,0.6808618,-0.07446251,0.07275368,0.30792704,-0.020821193,0.076758124,-0.1178955,-0.31592572,-0.16617365,0.12673847,0.623865,0.6314242,-0.047828726,0.18298377,0.021626746,0.36944488,-0.11923501,-0.47023758,0.50909656,0.8313894,-0.08004829,-0.36414996,0.57010436,0.5362178,-0.13458855,0.5687149,-0.70511067,-0.5362429,0.37078175,-0.09745021,-0.4154618,0.21429329,-0.4240293,0.34735197,-0.7950452,0.32226288,-0.30553025,-0.6081347,-0.6192389,-0.08422346,-2.39254,0.13589214,-0.22254118,-0.13510625,-0.1170701,-0.022617765,0.30974367,-0.6451293,-0.61335,0.07073701,0.23678665,0.71627337,-0.08955499,0.052736863,-0.06528587,-0.3423171,-0.35932344,0.28147534,0.24061346,0.19230522,-0.009657886,-0.40405422,-0.325183,-0.08717598,-0.28492206,-0.007612284,-0.5764578,-0.38439363,-0.22398901,-0.548599,-0.36480534,0.5824747,-0.25503746,0.042545877,-0.18187237,0.046765573,-0.016493503,0.2320986,0.08471996,0.043297514,-0.0053239665,-0.27842033,0.21485463,-0.23814252,0.3349969,0.04468373,0.32109728,0.56413007,-0.41139203,0.03497996,0.57231134,0.5939675,-0.087049514,0.90048355,0.37029108,-0.13115351,0.3482271,-0.16670386,-0.39520136,-0.49258024,-0.17543812,0.13301133,-0.36565363,-0.15530199,0.0022892356,-0.35803196,-1.0517813,0.5254356,-0.012257229,0.31790236,-0.010192005,0.27933136,0.42561644,-0.12477218,-0.08910371,-0.12824765,-0.19752744,-0.37637505,-0.23726897,-0.777325,-0.38433582,-0.06780286,1.2452781,-0.2167341,0.043488692,0.20354916,-0.19227777,0.1556366,0.047696017,0.10995649,0.18247119,0.4747172,0.089376904,-0.6127705,0.39516535,-0.3281795,-0.12360768,-0.48396543,0.3057666,0.6136917,-0.61542284,0.1950025,0.42841306,0.1190938,-0.1963462,-0.5563147,0.041702125,-0.035130765,-0.044077992,0.42375356,0.31918827,-0.649743,0.4701956,0.23048477,-0.38619518,-0.6140908,0.3030285,0.020438232,-0.10861357,-0.22425842,0.39316073,-0.07365771,-0.06024054,-0.09949481,0.22565109,-0.34502402,0.2640777,0.022157626,-0.1340119,0.39578724,-0.21998173,-0.23616856,-0.73144466,0.16000906,-0.58217496,-0.031397093,0.20062661,0.09175407,-0.032962088,0.023347182,0.10543569,0.5553449,-0.36238137,0.10276006,-0.18434347,-0.43535078,0.7168143,0.54505235,0.40407073,-0.31673563,0.681035,0.10389069,-0.15093909,-0.30946502,-0.0358534,0.46030518,-0.100328766,0.23533122,0.09230308,0.025966985,0.18771015,0.5976266,0.31068316,0.33016744,0.04623843,-0.14564934,0.17070833,0.08904065,0.15610763,-0.061772473,-0.5960548,-0.0356123,-0.12997597,0.106281996,0.48031372,0.11184058,0.45570466,-0.23653625,-0.2794687,0.006932547,0.08882939,-0.22765633,-1.3182654,0.37222087,0.04845656,0.70805764,0.56845295,-0.006080453,0.08193707,0.60149246,-0.10428222,0.1223021,0.25911447,-0.07508305,-0.49189076,0.48917547,-0.65876216,0.47042802,-0.0010143698,0.05763537,0.21053143,-0.031892285,0.58513266,0.6975914,-0.103741266,0.085873984,-0.08239495,-0.24786739,-0.011606244,-0.29941204,0.29482153,-0.557295,-0.34651247,0.8506152,0.26652673,0.56936735,-0.1231683,-0.025313172,0.014715477,-0.056408104,0.44741535,-0.06905317,0.1982546,-0.31713867,-0.4437669,-0.15353881,0.6025835,-0.02651995,0.059384745,0.061985515,-0.049386393,0.18349367,0.048313525,0.03085317,-0.11815819,-0.75995904,0.2509847,-0.32945728,-0.31007177,0.407254,-0.14367771,0.26722303,0.22942352,-0.053703323,-0.46506754,0.14345707,0.24889842,0.7050867,-0.04444305,-0.20815805,-0.27447975,0.2357801,0.27193674,-0.13976015,-0.020988517,-0.24413,0.11071571,-0.6603591,0.40591577,-0.2923248,-0.1322443,0.27944717,-0.2046371,0.045701265,0.6336071,-0.13438453,-0.29109195,0.16344094,0.0666948,-0.42798913,-0.4371494,-0.17324859,0.12755015,0.30818376,-0.00571121,-0.00419329,-0.0804447,-0.10825967,0.1256677,0.22035189,0.29519284,0.42977244,-0.012486305,-0.48783648,0.02880807,0.05234183,0.4519303,0.10673719,-0.031774886,-0.57626635,-0.550997,-0.3957478,0.2874085,-0.08491267,0.25514457,-0.003436593,-0.25194627,0.8569947,-0.008006537,1.0045756,-0.07924595,-0.34362444,-0.024786567,0.62176126,-0.09108117,-0.255627,-0.2930772,1.085271,0.72181755,-0.15388092,-0.18198314,-0.4334378,-0.12251528,0.13291174,-0.26896477,-0.24981835,-0.009457541,-0.70574963,-0.15305571,0.12896657,0.31964558,-0.04389124,-0.2594096,-0.10793132,0.33741218,0.015246149,0.090945736,-0.3967091,-0.12031745,0.3988217,-0.05379802,0.06759788,0.060571976,-0.5731378,0.24141155,-0.65474445,-0.040699124,-0.120507255,0.05628412,-0.058464646,-0.42753965,0.25779358,0.084218055,0.2715929,-0.49171218,-0.30957678,-0.069025725,0.37213284,0.1122802,0.017281642,0.66041946,-0.27653632,0.06979144,0.11726384,0.40169346,0.91901386,-0.34844977,0.045077696,0.16393709,-0.40526995,-0.66342735,0.2262645,-0.21300684,0.10600813,-0.15732187,-0.31736958,-0.57413864,0.25118533,0.20379482,-0.03395583,0.07223602,-0.75456995,-0.20605206,-0.015575093,-0.4375618,-0.16029969,-0.36498165,-0.058313467,0.6625057,-0.27839717,-0.42751387,0.08638822,0.28888804,-0.039481737,-0.5466746,-0.03252347,-0.28351432,0.14526619,0.07720725,-0.2378296,-0.12421873,0.28184384,-0.43713725,0.008091664,0.13948928,-0.2866942,-0.05496026,-0.43992093,0.031593632,0.6086391,-0.16468102,0.10795841,-0.54423153,-0.41778043,-0.9666721,-0.41713634,0.20496076,0.21756043,0.093697906,-0.7430513,0.0115690585,-0.29586282,-0.06371928,-0.28328317,-0.33915812,0.50271493,0.19182311,0.30678627,-0.1707571,-0.803735,0.12199715,0.09547686,-0.12111128,-0.347869,0.4705432,0.08579052,0.8439579,0.1748629,0.13936397,0.25368342,-0.8518754,0.030839555,-0.15567915,-0.1959836,-0.5564766,0.13353835,965 -325,0.4087749,-0.22904398,-0.44175628,-0.13983645,-0.038673755,0.14900889,-0.17578131,0.27197078,0.21551809,-0.3298087,0.036498364,-0.2644142,0.097872205,0.6099893,-0.04113434,-0.72457445,0.04320344,0.088028856,-0.6362991,0.53754437,-0.5382833,0.45543632,-0.03432191,0.2521385,0.06794907,0.30964443,0.31681558,-0.041815527,0.07749915,0.13756618,-0.11783478,0.24167247,-0.4673065,0.04797089,0.054405928,-0.23809052,0.03960739,-0.2559386,-0.45038864,-0.5944964,0.4574247,-0.8289807,0.35206586,0.00807209,-0.30074602,0.2863072,-0.008788959,0.2819266,-0.47201544,0.1344154,0.14555407,0.08716265,0.123650424,-0.2509284,-0.28091842,-0.4429565,-0.4181711,0.053115495,-0.5520106,-0.32052284,-0.3527263,-0.0043530692,-0.2776529,0.11242846,0.07846756,0.12197009,-0.45283964,-0.15960671,0.318961,-0.14755912,0.24555609,-0.41610622,-0.017730366,-0.113383666,0.19145839,-0.18431863,-0.068165585,0.32766178,0.31370527,0.6165856,-0.1160253,-0.12531206,-0.23997055,-0.022902194,0.16649812,0.5109056,-0.13365313,-0.41968346,-0.21924217,-0.0002698342,-0.015119372,0.09997352,0.09552849,-0.40017214,-0.13080646,-0.004166009,-0.2560506,0.2077119,0.41818315,-0.539192,-0.34547082,0.44277066,0.53674287,0.14296831,-0.068668954,0.16736993,0.08621917,-0.38912874,-0.21949701,0.16251026,-0.13207386,0.45229033,-0.04679559,0.17844509,0.7311372,-0.10740985,0.25275466,-0.29298756,-0.07756364,-0.17360494,-0.19463377,-0.09895641,-0.0035913626,-0.39495018,0.07886494,-0.07293519,0.711264,0.3980743,-0.6977326,0.4991564,-0.4110047,0.19522569,-0.23160455,0.5112735,0.70379746,0.19998795,0.09007803,0.7362678,-0.6899211,0.22171097,-0.10604331,-0.33461717,0.21646541,-0.21689647,-0.12813509,-0.46280432,0.2256252,0.042799808,-0.091650866,0.08531426,0.36860764,-0.47850454,-0.09636062,0.09218972,0.85673946,-0.3927541,0.13312714,0.4291537,0.9328537,0.79041004,-0.039079923,1.1780131,0.52135116,-0.2867154,0.32867062,-0.31927332,-0.8919671,0.19507305,0.46688753,0.34303847,0.34849584,0.14301893,-0.071170345,0.33532298,-0.28589243,0.089712635,-0.22670938,0.23695531,-0.062942185,-0.09886886,-0.29954544,-0.098674245,-0.06845915,-0.082848474,0.061893653,0.23552631,-0.1755394,0.16357186,-0.025255863,2.1433313,-0.069530085,0.14296539,-0.032689225,0.522812,0.3871399,-0.19691725,-0.1433881,0.40162858,0.461903,-0.00016543866,-0.6409866,0.13990976,-0.2327914,-0.4494639,-0.19547231,-0.37690264,0.12944376,0.04432681,-0.43240547,-0.0337217,0.105981596,-0.16029647,0.4046292,-2.6968586,-0.24179225,-0.1553558,0.34802607,-0.4400913,-0.25029817,-0.26381722,-0.2975528,0.36360237,0.42874068,0.35136604,-0.5899354,0.26747885,0.3865063,-0.22288388,-0.08525203,-0.4624693,-0.08133759,-0.02421943,0.3889908,-0.14928149,-0.05656739,-0.107711144,0.43260768,0.24614035,-0.0025804916,0.08202468,0.19580337,0.38153654,0.23263402,0.3781971,-0.08699172,0.474853,-0.20725074,-0.08916044,0.38137683,-0.24432285,0.29629248,-0.026865752,0.18076853,0.308132,-0.52780414,-0.8637699,-0.5661508,-0.33607417,1.0394187,-0.48138365,-0.40362296,0.3561582,-0.0460766,-0.10707422,-0.03864516,0.37405765,-0.053149324,-0.15691002,-0.7767811,0.12587072,0.0057750545,0.22895975,0.104725614,-0.052703302,-0.20777453,0.589686,-0.0270528,0.4999141,0.17789786,0.12284245,-0.0062810103,-0.49081337,0.032131378,0.92936146,0.2752846,0.14932175,-0.2322416,-0.21742915,-0.37056336,-0.20350914,0.018449286,0.2800114,0.8086423,0.07216406,0.054948073,0.14571117,-0.097411595,-0.023599874,-0.13108633,-0.29174784,0.10196145,-0.05685656,0.5747969,0.47726172,-0.24651732,0.40657315,-0.0849439,0.1379727,-0.219415,-0.5325397,0.62236077,0.89682317,-0.097949974,-0.16890712,0.4748791,0.2923197,-0.49356046,0.45219025,-0.7691447,-0.27440515,0.5325862,-0.19752179,-0.20794494,0.2894078,-0.32097182,0.036553454,-0.88150024,0.23839286,-0.048574354,-0.09895756,-0.42102763,-0.20236264,-3.9476228,0.12724473,-0.112598605,-0.22914465,-0.01914099,0.10278257,0.44779283,-0.4777389,-0.54675865,0.19856307,0.023474602,0.6092905,0.07757078,0.15084948,-0.31707278,-0.04332478,-0.3996769,0.07693798,0.011815739,0.3504605,0.11143355,-0.4407673,-0.13551484,-0.20067532,-0.28988025,0.10821117,-0.56069815,-0.49338427,-0.28293973,-0.49408022,-0.07620538,0.6035427,-0.18571559,0.01940697,-0.19776887,-0.0658355,-0.26322645,0.24079694,0.33321652,0.12829922,0.0026431403,0.028552098,-0.19031286,-0.4151774,0.2576014,0.10810096,0.17168468,0.21646087,-0.092480294,-0.07226661,0.51229304,0.50833756,-0.08329894,0.5269031,0.4606734,-0.11650049,0.35884288,-0.33815295,-0.1497495,-0.4063149,-0.40612087,-0.37207383,-0.32094017,-0.5839612,-0.22235708,-0.36386314,-0.6853179,0.42924914,-0.018220885,0.21403077,0.05184611,0.012773291,0.37965205,-0.11072119,0.020946454,0.0026500304,-0.16634029,-0.583278,-0.3146291,-0.52859324,-0.4341087,0.5770019,0.74018425,-0.188226,-0.09927518,-0.102321126,-0.19764659,-0.08447062,-0.14456327,0.13994072,0.3434995,0.23501904,-0.0057039578,-0.6618559,0.57952416,-0.102359615,-0.16788967,-0.66331476,0.04240296,0.49551374,-0.6111914,0.49962905,0.19833134,0.13356961,0.108814865,-0.5131633,-0.2865483,0.121026285,-0.31684712,0.30516356,0.08621963,-0.7935003,0.42025247,0.36817744,-0.3363003,-0.6359913,0.4989057,0.062135782,-0.29579982,-0.005176838,0.20454058,0.07220398,0.067675866,-0.3611213,0.2752016,-0.5504468,0.16234857,0.38463885,-0.0032382766,0.48535767,-0.2091931,-0.18303034,-0.48888168,-0.08786637,-0.44389126,-0.19643511,0.15830915,0.03936646,0.10450796,0.08307055,0.03720242,0.48388252,-0.33521852,0.12347977,0.07353062,-0.24255511,0.38995764,0.31515417,0.39580122,-0.38644817,0.52701837,-0.121307276,-0.050901175,0.16425762,0.15171047,0.5006129,0.3347746,0.2535754,-0.01889108,-0.12625259,0.312523,0.97178334,0.16723728,0.33308294,0.078007124,-0.3161709,0.3068691,0.31516713,-0.086098716,0.11477332,-0.24182819,-0.04110626,0.069348216,0.24280366,0.46104705,0.23862979,0.40471998,-0.19049732,-0.36518365,0.23065752,0.12530084,-0.11889755,-0.90151304,0.15002725,0.16077217,0.6391335,0.4380024,-0.055915017,0.033225276,0.49800733,-0.14535974,0.12024256,0.23851411,-0.3615327,-0.62432206,0.4671251,-0.5079142,0.39153254,-0.023468876,-0.0009250204,0.17847608,0.24584867,0.4046981,0.75146025,-0.04389962,0.039827537,0.0040107574,-0.33971536,0.0862892,-0.36998957,-0.044281904,-0.39174265,-0.33844355,0.41398317,0.49829295,0.14195411,-0.17130886,0.017413475,-0.061720897,-0.06903253,-0.016567957,-0.0014236092,0.0141538065,-0.0003452162,-0.63300234,-0.5168182,0.5638112,0.07525524,0.044418987,-0.13062903,-0.19271101,0.3446124,-0.21716523,-0.04626796,-0.00072878995,-0.72793096,0.033237617,-0.3160811,-0.36007226,0.39518562,-0.063265614,0.30604535,0.1818902,-0.05683732,-0.41383797,0.50091517,0.07256092,0.7930256,-0.13918298,-0.26952678,-0.5729501,0.074995175,0.23256254,-0.2504614,0.04505384,-0.4043844,0.024563653,-0.61480993,0.41236985,-0.03285829,-0.24132726,0.2599451,-0.18480536,0.11591778,0.5998395,-0.17364769,-0.09635391,-0.0979601,-0.10681146,-0.40819848,-0.13242024,-0.20373863,0.1575245,0.18927626,-0.052966464,-0.04569535,-0.02779053,0.016771387,0.5378242,0.07393408,0.28715655,0.35012484,0.17406763,-0.1908911,-0.047789223,0.3108804,0.38615724,0.044112835,-0.014947414,-0.15827225,-0.5123835,-0.33340946,0.14078365,-0.29930764,0.26420525,0.028665576,-0.49447364,0.5788107,0.19481274,0.9313743,-0.056941807,-0.2707048,0.13851628,0.43515775,0.083749995,-0.00083635055,-0.39619097,0.73559123,0.6998424,-0.018737268,-0.2111371,-0.14072233,-0.329133,0.17187183,-0.31468195,-0.05868918,0.04485691,-0.75577897,-0.3552694,0.22478408,0.23822525,0.1586017,0.0077036787,0.14632784,-0.045786526,0.13516359,0.1999065,-0.5506264,-0.20167576,0.2307918,0.26304936,0.06535337,0.123793945,-0.40518913,0.46636054,-0.5749727,-0.023280596,-0.3208209,0.08687093,-0.04868504,-0.33697805,0.14414898,-0.0031085291,0.40402335,-0.2812477,-0.42738324,-0.26057255,0.53542405,0.12997997,0.20843436,0.5193536,-0.27349344,0.21977672,0.02052327,0.51744664,1.0492976,-0.16035,0.05459078,0.37461615,-0.35591373,-0.73955536,0.2608952,-0.14966129,0.37075037,-0.100078546,-0.23078531,-0.48066732,0.37140945,0.1160719,-0.015637506,0.1568866,-0.48801824,-0.31973192,0.20576063,-0.22435686,-0.3702921,-0.36862957,0.13047522,0.69396025,-0.38491747,-0.074879475,0.32108566,0.32260847,-0.2891202,-0.64314884,-0.10136898,-0.35703278,0.27598447,0.20473905,-0.18828265,0.065336876,0.07443203,-0.3502352,0.20261791,0.18498723,-0.4283403,0.06353277,-0.27206215,-0.012932336,1.0562031,-0.1267526,-0.16073951,-0.8467057,-0.46472454,-0.98560447,-0.45811862,0.7640251,0.19804677,0.15043591,-0.37977973,0.08012681,-0.02395571,0.20572135,0.05638667,-0.4087917,0.47704232,0.0059770485,0.36928767,-0.055544693,-0.7859222,-0.05089558,0.06769652,-0.38845035,-0.6848595,0.61488223,-0.18151544,0.92424786,0.058512203,-0.020483602,0.3313375,-0.5199215,0.057707954,-0.45104286,-0.2715828,-0.7051353,0.24770196,975 -326,0.3982685,-0.144484,-0.40462664,-0.08448599,-0.4926092,0.028954139,-0.25145453,0.349569,0.11449406,-0.53198516,-0.22137976,-0.10910788,-0.18525033,0.22079895,-0.34982687,-0.6055648,-0.14069968,0.14688972,-0.3768922,0.6502996,-0.3142768,0.3253451,-0.04142259,0.3391022,0.32957616,0.25907287,0.06930339,0.063253514,-0.25182492,-0.2409337,-0.018674381,0.37465635,-0.5782726,0.4219125,-0.23826806,-0.4175184,-0.034039076,-0.19361769,-0.26756495,-0.7370645,0.27511603,-0.69879663,0.3705174,0.06011087,-0.29911548,0.28210405,0.22096042,0.21887058,-0.11359766,-0.06868376,0.29481634,-0.35639578,-0.16164355,-0.29879275,-0.10217042,-0.51596946,-0.6170228,-0.07689953,-0.6107328,-0.07542931,-0.37942708,0.3169982,-0.20414338,-0.23343998,0.022347527,0.47504872,-0.5826461,0.09995034,-0.029192882,-0.03219801,0.10608136,-0.7746698,-0.3156779,-0.083432205,0.06580573,-0.233758,-0.19729635,0.49827015,0.19450471,0.27055213,0.08637221,-0.22636978,-0.44448853,-0.1879639,0.31497034,0.30359983,-0.112167746,-0.30341938,-0.11447802,-0.17771132,0.2977962,0.14187036,0.2574656,-0.2548906,-0.049948607,-0.028585505,-0.04453116,0.51789916,0.5298959,-0.15736358,-0.12776023,0.3523182,0.541096,0.28451476,-0.25977728,-0.08943978,-0.077843584,-0.46280453,-0.20399816,0.061066907,-0.2307673,0.43738303,-0.22234458,0.09807921,0.62035865,-0.31610888,-0.07810835,0.3478131,0.13774358,0.08201202,-0.2086811,-0.39820766,0.37700266,-0.5547291,0.20913388,-0.22266912,0.62380713,-0.04628497,-0.6862524,0.22002862,-0.5167317,0.05099032,-0.04808576,0.5424305,0.65006727,0.5615116,0.19379391,0.65773416,-0.2499744,-0.03502263,-0.08613226,-0.08397394,-0.057153497,-0.29407114,-0.09206584,-0.49789917,0.02132097,-0.19020958,0.03336982,-0.017569019,0.7012221,-0.43695176,-0.1599413,0.26191205,0.7501133,-0.3736814,-0.059329048,0.8366663,1.1839906,1.1521696,0.03442837,0.93942237,0.04101607,-0.20564705,-0.21849814,-0.14096712,-0.5939377,0.28687006,0.3010715,-0.048168946,0.23067354,0.09839142,0.1792949,0.3274296,-0.440826,-0.06587182,-0.12352446,0.4471677,0.13867375,-0.07471366,-0.42077655,-0.17224686,0.0771805,-0.0011639356,0.039969124,0.34628236,-0.22127305,0.39122778,0.26131588,1.082678,-0.11643241,-0.0010418018,0.12322856,0.34768158,0.16845815,-0.1457211,0.15971063,0.18672197,0.16218285,0.04488502,-0.48611337,0.114686266,-0.19908835,-0.8321183,-0.2069958,-0.36025164,-0.33101985,-0.14366342,-0.45627585,-0.3038827,-0.014962955,-0.38050738,0.31219217,-2.4355774,-0.034388423,-0.016990393,0.22841379,-0.081804276,-0.30726153,-0.05980174,-0.37123024,0.45776692,0.20812796,0.33682021,-0.5630576,0.417394,0.6118056,-0.6735743,-0.016349716,-0.4925416,-0.3159666,-0.074832,0.44327152,0.15214425,0.0855951,0.12104319,0.17903796,0.54171675,-0.1819704,0.2348998,0.38634166,0.26000646,-0.36056262,0.36149248,0.11781763,0.39723846,-0.37379107,-0.19898921,0.3372255,-0.45722115,0.18437554,-0.2942462,0.18314695,0.5483211,-0.35772425,-0.84287226,-0.63796055,-0.29373905,1.1228722,-0.12917025,-0.54805535,0.21485749,-0.40369284,-0.1710029,-0.08992615,0.43750325,-0.10817536,0.1688511,-0.79182756,-0.041621335,-0.1515601,0.18574938,0.024249554,-0.003345426,-0.49899042,0.83099186,0.013341739,0.55429834,0.2931491,0.18149099,-0.57822776,-0.36352095,0.17091869,0.8365958,0.53917867,0.11040933,-0.32189465,-0.22868973,-0.15300639,-0.05237641,0.18001264,0.542566,0.4733838,-0.06085515,0.19718422,0.32741806,-0.054545633,-0.024749829,-0.2562283,-0.2763103,-0.038993932,0.15652093,0.52636635,0.6312033,-0.06833305,0.3545316,-0.012247867,0.383421,-0.15706758,-0.42763025,0.44920903,1.1590827,-0.08395329,-0.2866181,0.6827376,0.63984853,-0.14648703,0.525966,-0.63288665,-0.4899334,0.39550576,-0.18360798,-0.4201036,0.036269557,-0.49258813,0.14904006,-0.8206959,0.42098823,-0.41791627,-0.6055518,-0.8326304,-0.24549879,-2.1507115,0.12420993,-0.2655476,-0.13425492,-0.26598656,-0.33160347,0.20240158,-0.6814617,-0.5734455,0.1661167,0.117700115,0.684308,-0.13049883,0.08212512,-0.1383795,-0.51040524,-0.12623206,0.3569171,0.11697386,0.32167965,-0.09142505,-0.50736785,0.053235196,-0.1385254,-0.3974511,-0.11452479,-0.44309482,-0.48272476,0.0328095,-0.48822066,-0.17418739,0.53612006,-0.33469242,0.0053141834,-0.2165827,-0.040204022,0.09810493,0.13627084,0.19586952,0.28877696,0.16543382,-0.03373834,0.061361782,-0.23268642,0.2115169,0.08438316,0.16269328,0.43194097,-0.24194965,0.22339122,0.52819467,0.62420595,-0.21132779,1.0438339,0.32349423,-0.17427908,0.2684884,-0.14526865,-0.40916008,-0.795933,-0.25346097,0.040765595,-0.37469977,-0.36129978,0.0354263,-0.3009188,-0.916755,0.61086863,0.08122668,0.27812394,-0.20851234,0.110214934,0.30797827,-0.22128274,-0.25918403,-0.20753017,-0.18817312,-0.417822,-0.5466865,-0.81357676,-0.51792204,-0.23361182,1.155337,-0.15976185,-0.09709411,0.33445215,-0.21558772,0.17556445,0.26550725,-0.04347234,-0.019722959,0.3854394,0.2032699,-0.6820021,0.58335763,0.07127387,0.025283856,-0.43342903,0.2849449,0.6485157,-0.51905113,0.5154149,0.38991496,0.109902315,-0.23624645,-0.64094484,-0.111760065,-0.016140314,-0.18552676,0.61188215,0.3395621,-0.71907365,0.42328006,0.30335748,-0.25728896,-0.71957695,0.6227581,-0.1199652,-0.20241387,-0.15646034,0.4511988,0.20456934,0.03419715,-0.09596373,0.37255877,-0.3731932,0.36203226,0.09708872,-0.09160115,0.26113158,-0.23472793,-0.26983938,-0.83368134,0.1721439,-0.41887042,-0.41956788,0.15012684,-0.060747106,0.010484687,0.39327848,0.1699424,0.38677788,-0.20200314,0.053490084,-0.26375473,-0.37427798,0.28153363,0.5384397,0.64453715,-0.2576165,0.60536736,0.0660855,-0.04172098,-0.0448756,0.121630095,0.39280522,0.050348155,0.486853,0.13749021,-0.05030604,0.10050028,0.90247923,0.33816406,0.44310322,0.044802666,-0.25044337,0.21136396,0.06625026,0.3518532,-0.17504126,-0.5175737,0.1353484,-0.22220026,0.08918308,0.44238764,-0.0025598684,0.36848724,-0.06747982,-0.23871626,0.040537395,0.28126758,0.067111164,-1.4513913,0.36176726,0.28322002,0.871182,0.6814263,0.007239278,0.13349614,0.7079172,-0.2788425,0.012770853,0.40178803,-0.014381996,-0.23251206,0.51878047,-0.7182458,0.3810434,-0.11832716,-0.02516017,-0.03105462,-0.1907359,0.43902925,0.6112978,-0.14614174,-0.06150627,0.09032164,-0.4724956,0.06730988,-0.24714242,0.30096486,-0.4544726,-0.28642857,0.8964587,0.6648811,0.3636142,-0.21211687,0.08933219,0.20213537,-0.21524341,0.24798134,0.0472114,-0.04878814,-0.1647119,-0.4868636,-0.0954872,0.601773,-0.24726054,0.16165991,0.23780721,-0.27725112,0.22335264,0.056925345,-0.08506694,0.07959293,-0.6611661,0.103202924,-0.1924359,-0.42775318,0.44448084,-0.15231654,0.07914587,0.2483388,0.09191673,-0.34547758,0.15281467,0.22851284,0.470442,0.29069492,-0.117985286,-0.112765945,0.02778819,0.07724414,-0.17843238,-0.07110008,-0.09813628,0.2539217,-0.62422466,0.3963186,-0.33001164,-0.27492836,0.110002674,-0.1653166,-0.075482845,0.4753786,0.04265295,-0.15401891,0.0013992072,-0.03007806,-0.18965976,-0.12770624,-0.26176873,0.3561462,0.03494156,-0.13497326,-0.29126447,-0.11097753,0.046540365,0.35570326,-0.07972662,0.36482152,0.29041627,-0.12309071,-0.52613705,-0.10828851,0.16722314,0.423899,-0.13783607,-0.0100233015,-0.049778588,-0.34685168,-0.38822445,0.4166327,-0.22045879,0.24451296,0.24245648,-0.26585186,0.8855133,-0.042435106,1.0373465,0.021319767,-0.47904435,0.18199134,0.4254546,-0.20311347,0.053123962,-0.18609516,0.888753,0.5292862,-0.12998515,-0.17798242,-0.4361821,0.13255304,0.1992569,-0.22607592,-0.1931444,-0.093634844,-0.7089659,-0.16176656,0.2479868,0.2886595,-0.025017397,-0.1981557,-0.13072017,0.3561971,0.165874,0.25045964,-0.61246663,-0.066555835,0.3545681,0.20653267,-0.020739028,0.09544577,-0.45293978,0.3608324,-0.628821,0.10193411,-0.2599172,0.08651734,-0.45888212,-0.24225079,0.2613673,0.043678515,0.2892966,-0.30495986,-0.33320275,-0.34456074,0.33228976,-0.035185926,0.07561218,0.4464992,-0.21043396,0.25710958,0.03251189,0.40875643,0.9112647,-0.3172551,-0.14819835,0.21394612,-0.45695952,-0.5050746,0.21326399,-0.51436913,0.023772478,0.061417803,-0.33208066,-0.56602824,0.13866755,0.253882,0.16966647,0.21531206,-0.76588184,-0.036783043,0.09618094,-0.38301584,-0.15473007,-0.033954754,-0.017965471,0.5422764,-0.2717894,-0.23581526,-0.058477297,0.32381397,-0.21272853,-0.5117774,0.15108699,-0.46871364,0.62097585,-0.112865366,-0.2972116,-0.13062558,0.18779704,-0.36181527,0.076869056,0.34014118,-0.27670112,0.059892796,-0.4460969,0.3334182,0.74475497,-0.1661674,0.2620285,-0.3279751,-0.48690546,-0.9072327,-0.16328256,0.14430949,0.34972423,-0.042940136,-0.74199295,0.07060905,-0.27849618,-0.18647838,0.06351026,-0.5168852,0.36103883,0.23108418,0.2834741,0.031380005,-0.75563306,0.15622021,0.14168283,-0.08929645,-0.3645702,0.5872861,-0.09143041,0.8605821,0.06355955,0.06450602,-0.05005261,-0.59248054,0.23303343,-0.14299701,-0.21241659,-0.49788058,-0.02789078,977 -327,0.5434789,-0.30833596,-0.39678448,-0.19152498,-0.18237822,0.098339245,-0.029525291,0.45840007,0.20488285,-0.5556831,-0.11397794,-0.22334825,-0.029510802,0.24730472,-0.105967715,-0.5646544,-0.013873784,0.24064139,-0.314167,0.53278804,-0.37853724,0.26934797,0.045093257,0.10566685,0.20175165,0.31698933,0.07463585,-0.14204556,-0.16129433,-0.08589562,-0.2913622,0.392818,-0.38445434,0.24120273,-0.043952823,-0.1978305,0.13634293,-0.34893754,-0.3218383,-0.76257527,0.20916119,-0.8246887,0.43816236,0.116211854,-0.35364142,0.19082707,0.16316923,0.23916174,-0.32561862,0.058034584,0.20344955,-0.10855439,0.010366154,-0.28814155,-0.12507918,-0.5555621,-0.603566,-0.09265005,-0.36631104,-0.41574556,-0.23957577,0.17049116,-0.42017207,-0.08246336,-0.12890096,0.59646434,-0.43049082,-0.07682438,0.3222018,-0.26143292,0.30081853,-0.5734979,-0.13421725,-0.13930903,0.13359842,-0.070474006,-0.2521012,0.35733548,0.34433162,0.38849917,0.16126917,-0.23538595,-0.20195284,-0.19504313,0.23907413,0.35237274,-0.24699463,-0.42245868,-0.022856925,-0.05392546,0.07148412,0.07373972,0.205134,-0.32622916,-0.097778045,0.12851599,-0.24943566,0.11428965,0.45775414,-0.44583416,-0.24798872,0.19137748,0.6320457,-0.048304312,-0.15935825,0.054815516,-0.027845778,-0.44442713,-0.2214791,0.18294822,-0.42683658,0.6089235,-0.28772175,0.095425166,0.7467031,-0.24501085,0.06135742,-0.013611182,0.10819542,-0.19704345,-0.35402337,-0.30179062,0.2742573,-0.47054246,0.0937837,-0.2123366,0.82574534,0.20351307,-0.58520234,0.22949964,-0.5351335,0.1769647,-0.1380538,0.5502961,0.54926574,0.4363236,0.44581664,0.7041837,-0.5525852,0.10246987,-0.004028614,-0.40561453,0.035538595,-0.28007525,0.02607224,-0.48791054,0.06666388,0.000844427,-0.13265406,-0.044975556,0.44338658,-0.61784625,0.06293624,0.2716321,0.9421267,-0.35651195,-0.047851156,0.5023611,0.87871295,1.0010206,0.06544987,1.1440489,0.23931926,-0.45671195,0.23699832,-0.35201028,-0.65059096,0.35898563,0.4800316,0.09755268,0.26955858,0.19839546,0.053700127,0.44597968,-0.45614845,0.20890754,-0.31845137,0.07467139,0.03535467,-0.21574211,-0.52183,-0.20462637,-0.046704125,-0.014574176,-0.051756572,0.17227142,-0.07958024,0.42586222,0.16187352,1.637851,-0.087237194,0.11238697,0.21717528,0.28711906,0.1353599,0.027867882,0.07552585,0.49174002,0.40892887,0.2729844,-0.6027562,0.071462385,-0.28964424,-0.5942671,-0.12169317,-0.4106913,0.11683043,-0.014925893,-0.42066428,-0.24846512,-0.07700452,-0.28585437,0.37676218,-2.4726355,-0.1617567,-0.14825444,0.29362747,-0.29634386,-0.26732928,0.014684609,-0.43048158,0.2741256,0.39066452,0.5164162,-0.7251767,0.3282965,0.37190315,-0.5251351,-0.066283725,-0.69794285,-0.16030906,-0.2274675,0.42837772,0.09158792,-0.12852216,-0.0460253,0.1280502,0.54056585,-0.050550114,0.15511368,0.30878884,0.35193413,-0.025653696,0.5780894,0.20932195,0.48971808,-0.14843331,-0.22065766,0.34892574,-0.39842358,0.10540032,0.22450806,0.07327137,0.47404563,-0.41922563,-0.72401625,-0.7658053,-0.34217256,1.1847409,-0.29476312,-0.40515748,0.31875274,-0.24199146,-0.2204681,-0.2011625,0.3746074,-0.14619808,0.11633862,-0.81329167,0.14960961,-0.004811748,0.10240673,0.07099418,-0.11813721,-0.4004926,0.84008133,-0.12920779,0.48955613,0.3486044,0.010736863,-0.20450374,-0.4759121,-0.044861976,1.0712761,0.38249487,0.09188767,-0.1312887,-0.26072434,-0.34777313,-0.009191746,0.14719014,0.4014851,0.78584063,-0.05726842,0.09632788,0.3216399,-0.08334216,0.05033177,-0.18083952,-0.35329762,-0.02511903,0.042957187,0.52272534,0.42213643,-0.20353898,0.38041818,-0.16244666,0.38753414,-0.075257055,-0.40850896,0.3705768,1.2223495,-0.15415512,-0.3734764,0.68298995,0.50339985,-0.38740525,0.3774627,-0.6265991,-0.18850961,0.5169235,-0.2424817,-0.44924864,0.2521321,-0.32181606,0.33282602,-0.95628196,0.4330409,-0.17153034,-0.47820696,-0.6427046,-0.22314952,-3.4423232,0.3493934,-0.3992234,-0.16170785,-0.071093366,0.004342393,0.24901406,-0.6997591,-0.39089516,0.09090136,0.09202387,0.47707638,-0.057964835,-0.028914869,-0.2293854,-0.36009553,-0.22046481,0.12007931,-0.0024895906,0.34935844,-0.038145844,-0.60520864,0.122160785,-0.1560702,-0.40898257,0.09376183,-0.6178861,-0.63394386,-0.13294406,-0.61946833,-0.39187872,0.68134946,-0.29436308,0.04717374,-0.261432,0.10384975,-0.1352143,0.3089512,0.16045932,0.19225626,-0.106349535,-0.11009264,-0.12341583,-0.20338407,0.33870602,0.012730131,0.33821577,0.30731916,-0.24599458,0.11398795,0.6473287,0.49648622,-0.045861986,0.7936102,0.60852545,-0.21576566,0.40003031,-0.28165588,-0.2942212,-0.6885728,-0.5070503,0.15778498,-0.46666285,-0.4567619,0.015637927,-0.30892706,-0.76280516,0.62357277,-0.05949638,0.13822219,-0.005461854,0.36514166,0.58697766,-0.16965288,-0.13636084,-0.046274487,-0.29772064,-0.5435,-0.2695144,-0.7464217,-0.36537144,0.19181451,1.0744724,-0.32255584,-0.0057660798,0.0074064294,-0.23007129,-0.05725895,0.20664883,-0.021686776,0.21797676,0.4458429,-0.16464974,-0.70390075,0.48532823,0.029597282,-0.1787233,-0.39758065,0.2031504,0.6142118,-0.7290327,0.59740716,0.2982178,0.11739022,-0.12792176,-0.48670733,-0.2633315,-0.0050234753,-0.31036952,0.5634333,0.077141486,-0.5932003,0.3102537,0.41352862,-0.25736907,-0.6730708,0.44144773,-0.19066451,-0.19416396,0.051100858,0.38355932,0.024589412,-0.040452026,-0.117021784,0.1878059,-0.4810097,0.2321843,0.43455568,-0.033272725,0.13514711,-0.1109565,-0.18530622,-0.8780824,-0.0027882585,-0.6164195,-0.28326342,0.23756517,0.1619784,-0.091202945,0.25131467,0.020126553,0.5493822,-0.11965755,0.046938498,0.059371658,-0.2695465,0.3917512,0.40509492,0.38374117,-0.49997738,0.5280693,0.074363984,-0.0007801056,-0.35650268,0.014933451,0.48037246,0.19251792,0.4418243,-0.05779074,-0.10842577,0.50990134,0.78138524,0.25723064,0.66074395,0.091528304,-0.13760087,0.25540084,0.14132538,0.096716605,0.039916866,-0.5109171,0.012949119,-0.16939102,0.17545493,0.42758623,0.106883846,0.31186977,-0.09893061,-0.27548236,0.074305125,0.31618297,0.035967097,-1.2297794,0.35824987,0.2117521,0.7089106,0.4686494,0.035121474,-0.005478233,0.70792234,-0.3274511,-0.017173132,0.324777,-0.14912656,-0.5717499,0.6014248,-0.68967015,0.32433203,-0.18666817,0.08360254,-0.14169268,-0.05474234,0.39688402,0.7852902,-0.21398821,-0.09849296,-0.18725356,-0.24911347,0.30789602,-0.51339823,0.1293187,-0.47939193,-0.41536328,0.5727743,0.4192334,0.38984197,-0.12743543,0.015059826,0.08818459,-0.108737595,0.4491494,0.044815052,0.08155999,-0.025734095,-0.73771805,-0.30161625,0.543601,-0.083093755,0.18291791,-0.047871027,-0.28404993,0.26443043,-0.13128355,-0.037471436,-0.104593724,-0.4805932,0.0003145536,-0.21419887,-0.5366875,0.60476154,-0.06774863,0.22854719,0.28150794,0.0350556,-0.35039595,0.15623544,0.11720207,0.73742336,0.042932596,-0.27776718,-0.34015292,0.17234106,0.055479933,-0.1745441,0.09225427,-0.2688094,0.12830609,-0.60673624,0.52067286,-0.036906395,-0.45395538,0.13686396,-0.2976366,-0.18148454,0.6127836,-0.27388102,-0.194354,-0.188866,-0.15318309,-0.05220753,-0.22317483,-0.127232,0.38475153,0.020506088,0.12019841,-0.20901343,-0.09546079,-0.14876303,0.4684336,-0.050776657,0.31937793,0.3731617,-0.089732185,-0.35859627,-0.06969871,0.1282515,0.22041884,0.10248903,-0.13948537,-0.18836226,-0.46516693,-0.33460903,-0.02471644,-0.08458875,0.40760466,0.1507879,-0.33737323,0.96563286,-0.08864697,1.3629959,0.028803695,-0.4296785,-0.065155976,0.6577621,0.10015909,0.03770963,-0.26634857,0.8964277,0.6958425,-0.07764999,-0.086200476,-0.52491117,-0.056290884,0.12042342,-0.09389849,-0.029820379,-0.04744831,-0.63892597,-0.35902423,0.25498858,0.33054003,0.27492186,0.058286276,0.019721007,0.24523124,-0.05902167,0.39156094,-0.4449484,-0.2488355,0.23734376,0.094926275,0.11538312,0.017011559,-0.41989523,0.4979831,-0.58589727,0.21455981,-0.2082602,0.177325,-0.16268635,-0.26053685,0.25112048,-0.07113802,0.36647403,-0.39673942,-0.34840646,-0.07803106,0.62452924,-0.019770758,0.13791582,0.6688909,-0.31972593,0.05889593,0.14625059,0.4600941,1.0926694,-0.17695656,0.012634845,0.3434719,-0.39027968,-0.6418782,0.42070445,-0.2747266,0.17022477,0.10605325,-0.34083423,-0.45378348,0.23975843,0.33854178,-0.0870519,0.11998006,-0.48868093,-0.23508812,0.2884084,-0.4572152,-0.106145725,-0.15385227,0.34237513,0.5451716,-0.43565398,-0.41086245,0.05338178,0.12689029,-0.27907145,-0.5739291,-0.13260633,-0.4170416,0.48395392,0.14942688,-0.26469892,0.07818184,0.04289383,-0.3845468,0.16826157,0.28943756,-0.32950908,0.16533987,-0.34934884,-0.08881381,0.8241012,0.016177274,-0.0025496124,-0.61697143,-0.37571,-0.96989155,-0.3234429,0.6161973,-0.05554498,0.08105988,-0.5472186,0.010996705,-0.08120861,-0.008129756,-0.083404645,-0.3543705,0.4700813,0.23180503,0.46537763,-0.03277661,-0.71427256,0.13992712,0.09205605,0.08521628,-0.65881234,0.509666,-0.1884566,0.78073287,0.061366074,0.11520462,0.27884758,-0.47564828,-0.08510888,-0.18489191,-0.36891305,-0.62406313,-0.15649357,983 -328,0.22217377,-0.054297082,-0.50184155,-0.30723894,-0.17531389,0.2763573,-0.13675924,0.1927761,0.22222668,-0.31465608,0.06619386,-0.095406294,-0.01324029,0.31968564,-0.11640385,-0.79561865,0.033771586,-0.016143618,-0.4341714,0.32463768,-0.55788004,0.41086993,-0.067409605,0.22880487,0.028506236,0.3558789,0.16520938,-0.1223786,-0.29146507,0.1445335,-0.12307911,0.26390913,-0.47301576,0.08892681,0.05225932,-0.2395633,-0.07044692,-0.086360246,-0.33694452,-0.625535,0.4974144,-0.7444011,0.47254798,-0.14562875,-0.27485815,0.10952983,0.1539409,0.040418442,-0.46683818,0.20006701,0.28918114,-0.27815863,-0.03563172,-0.22432177,-0.49645883,-0.61012024,-0.49656644,-0.10946431,-0.6354639,-0.27174446,-0.3663107,0.1167601,-0.3460678,-0.18106954,-0.17081808,0.49520424,-0.4638283,0.07459632,0.13023838,-0.25483766,0.06809261,-0.57569325,-0.058909077,-0.01661098,0.21496095,-0.21787669,-0.15671812,0.3222151,0.42874053,0.4893524,0.061505575,-0.21870929,-0.37241307,-0.2965145,0.2915528,0.2650093,-0.14412111,-0.38414747,-0.23131943,-0.14036293,-0.02582785,0.1675911,-0.11239187,-0.4794297,-0.007502869,0.14435528,-0.28504485,0.4514597,0.5126612,-0.4454216,-0.34454426,0.48443985,0.25529033,0.051241588,-0.3687931,0.2509123,-0.07900032,-0.44658425,-0.2598516,0.23373525,-0.044287167,0.43110177,-0.2650329,0.17381832,0.90355873,-0.1425454,0.13304941,-0.3107639,-0.03718579,0.019965608,-0.2654493,-0.0030125936,-0.05939739,-0.49737844,0.0033100646,-0.15952666,0.7460124,0.19394991,-0.7717112,0.48415735,-0.4813804,0.12160521,-0.20081054,0.5961483,0.74058455,0.21107109,0.10419533,0.9224729,-0.5266356,0.026331697,0.13502799,-0.44764382,0.014907909,-0.05853423,-0.06787477,-0.555289,0.047138993,0.10532609,0.14728647,-0.005657041,0.45624593,-0.29132968,-0.11638017,-0.05469161,0.7898053,-0.47414085,-0.12940557,0.61333764,0.9575482,0.8928226,0.07514604,1.4472206,0.38399556,-0.36677548,0.085893355,-0.44023672,-0.51132315,0.22875477,0.25130823,0.16885045,0.17150281,0.15848118,0.26796767,0.37088457,-0.27801475,0.12804745,-0.14755744,0.09803685,0.15233392,-0.046737917,-0.23661254,-0.16510831,0.17058454,0.118109494,0.046322998,0.15963419,-0.10943284,0.4397597,0.15750425,1.379452,0.09460351,0.0963229,0.054535493,0.47561446,0.17364904,0.019650843,0.04851051,0.42251265,0.44261724,-0.15421836,-0.592149,-0.09327511,-0.41174456,-0.4791455,-0.18736966,-0.5033432,-0.1357359,-0.15581726,-0.482897,-0.15523705,0.26038346,-0.49378625,0.48952076,-2.553802,-0.1453469,-0.18511747,0.2676756,-0.12980504,-0.19675618,-0.34067744,-0.43020716,0.4138613,0.3790596,0.34627932,-0.5483328,0.31320807,0.4299193,-0.25774875,-0.1278611,-0.6351351,-0.025150243,-0.14428599,0.36208865,-0.14249673,-0.10720397,-0.114668496,0.30915007,0.6265725,0.077558346,0.011138932,0.20233001,0.3799216,-0.005365336,0.57204264,0.1245371,0.55128723,-0.16373512,-0.09227261,0.34234092,-0.5342341,0.1608269,0.012899884,0.10203668,0.4467425,-0.41221693,-0.8232795,-0.4925871,-0.5315985,1.1312754,-0.41207677,-0.37374514,0.49737352,-0.11344344,-0.24735934,-0.12819067,0.61339253,-0.0820905,0.11042507,-0.6338305,0.1583245,-0.011492522,0.122150525,-0.13752955,0.25931174,-0.17685999,0.675992,-0.21144888,0.44660392,0.34532917,0.099971615,-0.13670704,-0.48978272,0.19760075,0.83539236,0.31991976,0.14297122,-0.0065015606,-0.14930302,-0.09756332,-0.24415255,0.19229653,0.5050722,0.6491432,0.02820151,0.07439516,0.29716405,-0.23846711,-0.024434486,-0.15261461,-0.31618494,-0.067651555,0.13298145,0.55194646,0.34588432,-0.12644762,0.48242944,-0.15264153,0.11850431,-0.18042584,-0.47011223,0.48241174,0.76091474,-0.11423675,-0.30482104,0.37220207,0.35532582,-0.48412502,0.36929077,-0.53722155,-0.11240803,0.71779424,-0.20425901,-0.4977411,0.037433214,-0.29821044,8.531411e-06,-0.72538453,0.23670997,0.13824314,-0.5446437,-0.41726044,-0.34052023,-4.20832,0.029013237,-0.24126638,-0.079047285,-0.115357675,-0.038829673,0.30331144,-0.38104656,-0.5268286,0.07626246,0.02757124,0.39161283,0.019777842,0.04926484,-0.36075178,0.021756839,-0.19144906,0.33159584,0.05983276,0.2954675,-0.069392234,-0.4672018,0.17269151,-0.2550225,-0.49660772,-0.06833899,-0.36285633,-0.49945408,-0.02897838,-0.5248716,-0.2518346,0.8226831,-0.51483065,-0.053229917,-0.22498836,-0.10262544,-0.2522269,0.39125368,0.31291124,0.21545418,-0.026976151,0.061401024,-0.08584515,-0.31389394,0.27525064,0.026869576,0.21136598,0.40418923,0.08102239,0.06440058,0.63639855,0.52387255,0.16038512,0.80065626,0.20539059,-0.19435804,0.37688312,-0.40654835,-0.112979576,-0.733271,-0.46816826,-0.19066098,-0.49790817,-0.48556647,-0.19889155,-0.33664414,-0.7029924,0.26411512,0.040244307,0.21403961,-0.06485055,0.25244147,0.2844474,0.023827812,0.07838849,-0.054438855,-0.22751208,-0.5303173,-0.51548994,-0.6462923,-0.5990614,0.26760426,0.905947,-0.12920944,-0.26268727,-0.09315934,-0.47689554,0.023674471,0.31500185,0.33311638,0.3556746,0.34724128,-0.07897801,-0.72234327,0.39129364,-0.082642436,-0.07195088,-0.7383002,-0.14172691,0.7378833,-0.6489016,0.6934618,0.32733673,0.15725844,-0.025606966,-0.54184896,-0.37593156,-0.012205227,-0.2837667,0.5843588,0.1035871,-0.58150417,0.47656643,0.07082883,-0.008168107,-0.5409671,0.69090325,-0.014460687,-0.008214549,0.18250927,0.49488506,0.0090356525,-0.26524484,-0.022537133,0.26762536,-0.50357664,0.26771688,0.38848785,0.04023737,0.55286044,-0.059384298,-0.3596358,-0.5601422,-0.29897135,-0.50736195,-0.21724635,0.08947131,0.03778183,0.27208087,0.18909764,-0.121214606,0.3946122,-0.17972408,0.21302813,-0.04445343,-0.30050117,0.28843725,0.42225745,0.31847,-0.4252353,0.59978986,-0.041313816,0.14589567,0.074747466,0.12825315,0.53902787,0.35242766,0.43381044,0.016207544,-0.24234973,0.19133091,0.9352067,0.35605055,0.33067253,0.13461278,-0.34231105,0.31047305,0.16973586,0.0402341,0.016876992,-0.23805517,-0.10834845,-0.03856008,0.2979929,0.17816064,0.07154587,0.36657187,-0.1745247,-0.10321544,0.26181164,0.26517817,-0.03570824,-0.9592425,0.31490198,0.23092686,0.701582,0.47158486,0.022968376,-0.04062936,0.37499866,-0.32457215,0.13208932,0.3969632,-0.15326306,-0.3980035,0.59138834,-0.45882702,0.5632673,-0.085288286,0.075655125,0.031313557,0.36502287,0.1448779,0.98202693,-0.05092647,0.13468274,0.1689751,-0.3213039,0.20347074,-0.39202443,0.16764641,-0.37008584,-0.31981796,0.543956,0.3835882,0.25241497,-0.24191381,-0.103673026,-0.048271544,-0.22557124,0.005874149,-0.037633963,-0.031041432,-0.19922136,-0.74424493,-0.4489924,0.45352557,-0.07796623,0.061938237,0.22703509,-0.2194904,0.3603059,-0.04091778,0.1002546,0.012075436,-0.4042312,-0.10200969,-0.21555752,-0.6135198,0.38702807,-0.492833,0.44368297,0.22254448,-0.01932805,-0.5097118,0.24905883,0.2434798,0.6538098,-0.18086578,-0.18484624,-0.39411253,-0.1916741,0.3624667,-0.31562623,-0.12813248,-0.35551903,0.079262204,-0.67091054,0.46718928,-0.36100432,-0.23884602,0.0013253053,-0.29274434,-0.056849338,0.4132227,-0.15949339,-0.24041119,0.07690565,0.04086244,-0.20173727,-0.022122724,-0.32961982,0.32618925,-0.16912028,0.04965349,-0.12692277,-0.21599077,-0.1317531,0.31236184,0.029835744,0.18543202,0.3579999,-0.0786474,-0.3322832,-0.08832167,0.07256386,0.44309106,0.19603129,0.08107027,-0.10176599,-0.3429419,-0.21352682,0.28020704,-0.1539248,0.14772826,0.20217842,-0.62639344,0.52929443,-0.093893655,1.0744176,0.12506773,-0.32860318,0.019264491,0.5055214,0.11061556,0.22254562,-0.117316626,0.84874266,0.6766659,-0.029320668,-0.26064977,-0.423254,-0.09543955,0.27518278,-0.20637517,-0.19168854,-0.051734436,-0.853076,-0.16179107,0.18716805,0.088497356,0.24880725,0.04571871,-0.13436985,-0.027576517,0.26420382,0.49145934,-0.54844743,-0.0005403241,0.28247368,0.17512235,0.11206148,0.19138826,-0.27643767,0.4094006,-0.63584554,0.029285403,-0.22810052,0.053253293,-0.26815668,-0.1127347,0.2528823,0.044666924,0.37931496,-0.008210794,-0.3064967,-0.36656204,0.6601395,0.07365176,0.3050519,0.6877417,-0.14145163,0.10669522,0.22284572,0.5003994,1.3503679,0.08829692,-0.13218941,0.41775778,-0.37471825,-0.5635124,0.10612702,-0.54251456,0.09274821,-0.0007646799,-0.29940927,-0.21412212,0.22188608,0.029881235,-0.07215646,0.21547692,-0.46924388,-0.32807758,0.22518227,-0.22984968,-0.27978218,-0.2744538,0.20470414,0.69719696,-0.44353968,-0.015668424,0.040338263,0.39134732,-0.38955742,-0.70131,0.20993157,-0.34781083,0.5400156,0.12398153,-0.4001171,0.21956368,0.21218675,-0.37263057,0.23635897,0.53227305,-0.43769443,0.0056849956,-0.060591806,-0.228668,0.94428116,0.082935944,0.06053245,-0.59974194,-0.39402562,-0.93339765,-0.27363193,0.29991373,0.19381934,-0.11229394,-0.44499797,-0.11698964,0.05613052,0.13206841,0.1682797,-0.61421496,0.41946346,0.114028625,0.43573177,-0.042829983,-0.8371432,-0.079243295,0.09945599,-0.24784301,-0.49377784,0.64325297,-0.3176197,0.70638466,0.15161711,0.038391154,0.25437415,-0.53317285,0.30787188,-0.30336294,-0.30764675,-0.6314999,0.08982877,984 -329,0.3830308,-0.2402277,-0.39379904,-0.10161166,-0.11658681,0.28056946,-0.21423906,0.40391216,0.081086546,-0.537955,-0.105117135,-0.21911027,0.08475978,0.1884912,-0.14662036,-0.3183106,-0.06488561,0.01340969,-0.36538634,0.44457817,-0.50374407,0.35291252,0.007907931,0.29693902,0.03858277,0.26759642,0.11784415,-0.15542434,-0.10317465,-0.19269486,-0.09489056,0.24448475,-0.5279676,0.0743845,-0.03939437,-0.44333866,-0.027695093,-0.34692335,-0.24881443,-0.6397265,0.2388154,-0.83784527,0.4393197,-0.039189484,-0.3642797,0.38039646,0.05333836,0.2614914,-0.14740492,0.14047095,0.08291634,-0.04298396,0.10405208,-0.15618624,-0.2113892,-0.3447343,-0.46335372,0.06898805,-0.38165912,-0.28733814,-0.31066892,0.12375732,-0.20397814,-0.100991055,-0.20951214,0.31554773,-0.47909755,-0.15371329,0.15691207,-0.1393571,0.46872905,-0.5239621,-0.122350074,-0.11317326,0.23741181,-0.30026215,-0.11807129,0.12986735,0.35732555,0.62578464,-0.017501397,-0.089948885,-0.4009126,-0.17207566,0.25268656,0.5318076,-0.16676296,-0.4378995,-0.16381119,-0.18853919,0.14530881,0.22138509,0.19219233,-0.26915994,-0.20303702,0.015426965,-0.25561953,0.20725378,0.39842212,-0.53174734,-0.28837445,0.45021963,0.62285143,0.1324008,-0.11121461,0.08217167,0.013705698,-0.47513956,-0.09004931,0.2042822,-0.24579991,0.4661247,-0.17328721,0.4425245,0.62349147,-0.17600146,0.26218495,-0.08716298,-0.09030331,-0.22732137,-0.33586627,-0.07366989,0.12584946,-0.42272797,0.12933974,-0.12102806,0.7786063,0.063046336,-0.6762438,0.2847895,-0.44946298,0.08685227,0.009132042,0.5236649,0.50986063,0.26988497,0.06678878,0.6664324,-0.48108107,-0.05562187,-0.18118839,-0.2715043,-0.046907265,-0.14756137,-0.17785852,-0.5146356,0.043729782,0.14423366,0.057108086,-0.021870099,0.4276919,-0.49924868,0.07118588,0.25882703,0.7334184,-0.356887,0.028001927,0.7215551,0.94574195,0.8139768,0.09009228,1.1431915,0.107648656,-0.2509695,0.050122377,-0.28678587,-0.5999438,0.24331442,0.39362818,0.22244658,0.28619796,0.115124725,0.04787539,0.4961484,-0.34233564,0.119150236,-0.30542564,-0.033424582,0.08290566,0.0018125275,-0.3133836,-0.1730395,-0.024876047,0.07880596,0.035213236,0.09183478,-0.103536315,0.33509028,0.16970548,1.599958,-0.27554992,0.14800853,0.12945811,0.2938502,0.13222066,-0.16037968,-0.0152573865,0.3009969,0.37631425,-0.0022958438,-0.68476415,0.059487212,-0.014084742,-0.6684681,-0.070342146,-0.22087376,-0.14986263,0.034156818,-0.5700913,-0.1080213,-0.10691998,-0.3662446,0.42502105,-2.7392523,-0.11257233,-0.14454421,0.23808652,-0.4091978,-0.4228398,-0.0723687,-0.30439007,0.40098667,0.41799715,0.38283804,-0.67009485,0.32674226,0.41104117,-0.3664276,-0.056427427,-0.5953755,-0.14686552,-0.06857276,0.211509,0.11700862,-0.15700084,-0.027066758,0.116673864,0.5281678,-0.15698808,0.15953684,0.15848774,0.31065604,0.01794659,0.48839122,0.07527541,0.4790677,-0.13918611,-0.179311,0.43212783,-0.3205286,0.2858544,-0.17393889,0.2925797,0.2867286,-0.42519173,-0.70130134,-0.76575077,-0.5017779,1.2508546,-0.17506891,-0.49026912,0.2858394,-0.15534489,-0.30663,-0.14429967,0.49566588,-0.08173752,0.0019035756,-0.90095365,0.095632546,-0.15633088,0.23931226,0.04251555,-0.08060091,-0.47411555,0.7817963,-0.09795485,0.4220352,0.50281113,0.18904074,-0.11822391,-0.3129083,-0.04835119,0.96750987,0.41688505,0.16244248,-0.3449202,-0.19864792,-0.38858667,0.034080394,0.16068506,0.34185454,0.65772766,0.14099239,0.10775706,0.17079805,0.038155124,0.01237992,-0.2136888,-0.17906351,-0.051634975,-0.00080677035,0.60597724,0.3610539,-0.143317,0.40100545,-0.21489696,0.08349681,-0.34257957,-0.3527746,0.46620065,0.8058564,-0.111686975,-0.26092562,0.66351414,0.4961502,-0.14309914,0.28586853,-0.6676459,-0.2908021,0.46144903,-0.28614137,-0.42031854,0.2577599,-0.3438218,0.12801541,-0.99083745,0.18626341,-0.34404537,-0.3536916,-0.59169203,-0.099274635,-3.674952,0.29881617,-0.16001002,-0.25244483,-0.105558865,-0.16763267,0.32176036,-0.5121381,-0.47042185,0.093460076,0.015897488,0.57916296,0.030210635,0.13427138,-0.3052841,-0.10544917,-0.1722745,0.09732445,-0.019479247,0.25827515,-0.071107745,-0.36934468,-0.05917236,-0.2135604,-0.4316933,0.04195725,-0.55422246,-0.4962916,-0.122181654,-0.40346438,-0.35253394,0.5441415,-0.40712035,0.09281321,-0.20183489,-0.021946777,-0.14091945,0.53205746,0.097555384,0.09590387,0.07755682,-0.07527315,-0.0443661,-0.2840576,0.22820751,0.11308516,0.10677667,0.4699231,-0.2977738,0.14723797,0.36711776,0.58902985,-0.09264032,0.76491624,0.46622407,-0.09373151,0.33773813,-0.26805285,-0.09458018,-0.5825816,-0.36671507,-0.01710475,-0.43116486,-0.5464634,-0.17615543,-0.26649988,-0.7407611,0.51811296,-0.015144187,0.06072516,-0.005344367,0.34786388,0.4204678,-0.16394919,-0.020457966,-0.122223265,-0.11162026,-0.44113076,-0.4732973,-0.64083743,-0.414723,0.038537983,0.9593367,-0.11018076,0.026375743,0.021429906,-0.2244562,-0.08695468,0.10324585,0.059264883,0.027202837,0.33813968,-0.09642872,-0.5837561,0.5629359,0.15787435,-0.29966533,-0.39340064,0.05745846,0.63862044,-0.5174438,0.43074882,0.3656145,0.16129272,-0.057061806,-0.521563,-0.077713124,-0.019052673,-0.4429089,0.38704246,0.12741968,-0.64345235,0.45094478,0.32253087,-0.034876592,-0.7479626,0.5208099,0.07088302,-0.34212646,-0.017572252,0.33898935,0.0423412,0.054407243,-0.17043567,0.19211811,-0.48301208,0.31623918,0.31015167,-0.007945853,0.45496145,-0.26826993,-0.12745479,-0.64341813,-0.08843562,-0.5097816,-0.148381,0.23592523,0.037783884,0.12927896,0.22048807,-0.0056250324,0.48488358,-0.32625172,0.11745012,-0.040044893,-0.08632629,0.23570721,0.3717591,0.37239748,-0.3144054,0.54546094,0.045052335,-0.0491841,-0.33896098,0.09680527,0.5980395,0.15300076,0.3689884,-0.22660962,-0.28642073,0.34646204,0.7507678,0.29397967,0.48831138,0.0018862922,-0.2090606,0.29326516,0.1502845,0.19647093,-0.012214144,-0.434291,-0.054867107,-0.1695169,0.16519937,0.36748356,0.15039852,0.403712,-0.14912222,-0.24522339,0.117808774,0.23022223,-0.027664065,-0.8645437,0.28401005,0.1832474,0.8096597,0.52375096,-0.06079326,0.19676752,0.4801161,-0.30082414,0.17980808,0.26765165,-0.044240177,-0.63830936,0.5493024,-0.69449496,0.28225663,-0.11516263,0.025628047,0.05029563,-0.12864558,0.43173906,0.71400654,-0.07574723,0.063845515,-0.027566437,-0.26480195,0.089683756,-0.35220852,0.050615497,-0.47553858,-0.18239947,0.6688275,0.4547933,0.390894,-0.1707575,-0.024904259,0.13555439,0.044712212,0.15492629,0.09522917,0.24357158,-0.08199759,-0.65921104,-0.20906813,0.50937396,0.049820997,0.15650608,-0.020996286,-0.4626301,0.21918194,-0.15350844,-0.12859143,-0.0063172937,-0.4794127,0.050033484,-0.38989204,-0.45071557,0.24721415,-0.19166994,0.3330874,0.1739001,0.02719969,-0.15740258,0.19117762,0.14352886,0.81676203,0.2008555,-0.03539602,-0.34321925,0.16617815,0.2304197,-0.20008871,-0.16317685,-0.07281471,0.0033859808,-0.6230414,0.3098795,-0.095939875,-0.22600527,0.37417275,-0.2038427,-0.041316655,0.58142024,-0.09961832,-0.10575182,0.055705857,-0.240089,-0.28871354,-0.10349835,-0.10304864,0.35810977,0.12518689,0.0041294335,-0.0833309,-0.005106,-0.14182152,0.39480686,0.07867101,0.32993716,0.399305,0.007350842,-0.46562564,-0.10998719,0.07109246,0.44418532,-0.110627435,-0.023635881,-0.17979303,-0.55701005,-0.24725148,0.09516661,-0.111988276,0.26980278,0.0037976583,-0.2682163,0.93399674,0.06950095,0.99044764,0.15692319,-0.3680954,0.072575144,0.37233633,-0.050199825,0.06962701,-0.3912702,0.87903583,0.48415142,-0.055570085,-0.08404495,-0.10051642,-0.005028105,0.14236291,-0.1511225,0.018654617,-0.027161557,-0.6311216,-0.29900455,0.35977632,0.28555474,0.11822461,-0.02062681,0.041533988,0.14042921,0.004068293,0.41944045,-0.57282007,-0.2544224,0.298707,0.20730048,-0.008154541,0.045836058,-0.42815268,0.42281142,-0.64075094,0.04841632,-0.39524496,0.07898281,-0.16216221,-0.15380627,0.17871103,-0.01883442,0.30799204,-0.23703952,-0.39168045,-0.23657149,0.48467636,-0.015788866,0.18078308,0.49990463,-0.20685855,0.20540908,0.057106175,0.4506107,1.0720526,-0.22440399,0.097627446,0.39806053,-0.2844126,-0.495026,0.31255212,-0.32216474,0.16824177,-0.029114878,-0.25832993,-0.3324284,0.30142227,0.29517096,0.07960311,0.011722807,-0.5022685,-0.19719627,0.34485805,-0.3514125,-0.15753499,-0.1904501,0.084855095,0.6325415,-0.2998048,-0.34348062,0.03903424,0.37500435,-0.4152796,-0.5287396,0.1726408,-0.34330565,0.3091311,0.07426767,-0.31521785,-0.052937172,0.075998895,-0.39461422,0.060239248,0.15249448,-0.37453517,0.07084853,-0.4342108,0.11245051,0.8505976,-0.14506432,0.09397468,-0.57534283,-0.50325614,-0.9235022,-0.2896038,0.5951508,0.115379356,0.09739698,-0.396814,0.122974426,-0.17526652,-0.035659187,0.08559125,-0.31924495,0.50747484,0.23159665,0.43314227,-0.18724874,-0.4788147,0.1122943,0.13094127,-0.1220143,-0.41921768,0.48833954,0.04905438,0.8206844,0.005936263,0.043536477,0.26312765,-0.66668797,0.03486778,-0.14666584,-0.18313904,-0.8684446,-0.016606128,996 -330,0.39863238,-0.273572,-0.42505965,-0.11031544,-0.27156526,0.101832494,-0.20953748,0.25599176,0.0735204,-0.25725704,-0.38905454,0.034310006,0.14080906,0.38182884,-0.11651803,-0.6582459,-0.14412515,0.11437214,-0.7206662,0.41838297,-0.46793494,0.33624718,0.18360958,0.36085218,0.058530863,0.49295953,0.2939244,-0.13946961,-0.09398083,0.07988773,-0.14484712,0.07990845,-0.5958654,0.27426735,-0.25857994,-0.24809732,0.03778364,-0.34441242,-0.21278521,-0.5799447,0.10596241,-0.92089003,0.52403736,-0.12014156,-0.09864149,-0.009881432,0.09525741,0.25663617,-0.5241462,0.106645,0.14450379,-0.15791616,-0.13395524,-0.3170874,0.08455301,-0.34772086,-0.32250282,-0.050496202,-0.61618835,-0.18679254,-0.11205334,0.103072986,-0.2572232,0.0650766,0.0062198364,0.35349473,-0.4084323,-0.031195292,0.28595987,-0.30284542,0.10200938,-0.565977,0.05794124,-0.026037479,0.5874664,0.023080194,-0.10455578,0.33172697,0.2051337,0.41156387,0.26905197,-0.19210696,-0.20366849,-0.13563575,0.21251605,0.47049326,0.0148717975,-0.36838287,-0.26557276,-0.011147612,0.32647038,0.18432386,0.048443522,-0.11826121,-0.11634935,-0.19896473,-0.11999158,0.31393155,0.44855022,-0.29480156,-0.2669064,0.34810874,0.6103649,0.129971,-0.097051725,-0.094815016,0.07621501,-0.49358264,-0.14199486,0.12987591,0.046100616,0.48321372,-0.047904797,0.33472136,0.75186926,-0.18038456,0.11413305,0.0045523155,-0.021730449,-0.32089493,-0.14823672,-0.02444466,-0.0020016644,-0.37669072,-0.16173391,-0.2100315,0.7620962,0.07616083,-0.70379597,0.32236218,-0.46695226,0.083896734,-0.08417434,0.6051133,0.49964944,0.49440724,0.14528778,0.72121716,-0.34452063,0.14090618,-0.092549086,-0.48010784,0.039230082,-0.17453055,-0.06546699,-0.3987902,0.079596885,-0.07906985,0.08877273,0.013417418,0.3990512,-0.42906982,-0.051273953,0.09747814,0.75955975,-0.3758587,-0.12964238,0.689465,1.0566626,0.772982,-0.092140086,1.2017707,0.37730592,-0.16798313,-0.033106446,-0.36822933,-0.57471514,0.20465146,0.40810183,0.063385494,0.37460586,-0.076419316,-0.14665079,0.34552303,-0.33885768,0.07757723,-0.055272777,0.2934052,0.10272702,0.12080987,-0.5184246,-0.1900593,0.012227918,0.015246908,0.25436562,0.21886618,-0.21253444,0.49377728,-0.062074807,1.3679742,0.05158615,0.20647292,0.038395245,0.4963732,0.31431785,-0.052498724,-0.16143224,0.31632662,0.38964605,-0.16270778,-0.69629616,0.19307253,-0.33801252,-0.4474519,-0.22947769,-0.38627824,-0.15094557,0.11476708,-0.3934181,-0.2002336,-0.0009247192,-0.2830493,0.4120572,-2.7252414,-0.26094064,-0.093524896,0.45402694,-0.45901588,-0.17605159,-0.2457351,-0.5360395,0.20952356,0.2599654,0.50232565,-0.581574,0.5530147,0.4764922,-0.43541998,-0.3266969,-0.5540187,0.066010356,0.020786704,0.3591047,0.037934158,-0.22196914,-0.19977765,0.009962671,0.6160224,-0.10317315,0.12913968,0.5355776,0.30861267,0.26683316,0.38089746,0.012689642,0.5366942,-0.37470087,-0.10298324,0.3129706,-0.23323472,0.38050112,-0.1937075,0.098536395,0.4451365,-0.45682186,-0.82651436,-0.6941822,-0.32661125,1.1738796,-0.3294461,-0.38902798,0.10354824,0.018784964,-0.07075448,0.12900276,0.5237667,-0.12322923,0.11742433,-0.6832886,0.11019652,0.066030025,0.3343757,0.087332025,-0.08958254,-0.3190084,0.67188084,-0.12252311,0.66563046,0.18309177,0.47498518,-0.030713337,-0.37129858,0.1299567,0.93101263,0.28415674,0.005734759,-0.088219866,-0.28191283,-0.1842836,-0.09677468,-0.08488757,0.5051986,0.69774735,0.010340861,0.14355433,0.374723,-0.098613635,0.060089912,-0.07550158,-0.19249527,-0.15453193,0.07447947,0.3819777,0.7071749,-0.11309153,0.4432704,-0.33154193,0.36844066,-0.14843157,-0.55292994,0.85531723,0.42675072,-0.2550969,0.0073331213,0.5010447,0.4258632,-0.44336128,0.42692414,-0.67816025,-0.46588558,0.6039832,-0.22894728,-0.37513873,0.18527818,-0.21073452,0.22772013,-0.8728197,0.38515335,-0.23026255,-0.34457412,-0.41628566,-0.14606336,-3.2181013,0.14401378,-0.1251834,-0.1474211,-0.24243827,-0.08840787,0.24148941,-0.6891543,-0.4037507,0.16652568,0.20595993,0.63180786,0.056931585,0.2535019,-0.24696364,-0.115579024,-0.1083133,0.10623516,0.12892742,0.26600507,-0.096060276,-0.4594736,0.07318372,-0.07608005,-0.4560105,0.2634405,-0.43546417,-0.44803503,-0.12792107,-0.39133862,-0.23549329,0.5848063,-0.31934997,0.12124391,-0.25273934,0.1980678,-0.24381016,0.22877277,0.028401505,0.11243452,0.16886221,-0.13144265,0.15272914,-0.34563354,0.621865,-0.05069574,0.31341076,0.28720507,-0.092982925,0.030901859,0.54471385,0.4114196,-0.17622042,0.811729,0.29505768,-0.04371155,0.27994013,-0.20197354,-0.34126097,-0.5109938,-0.3343093,0.05492851,-0.34880516,-0.47205025,0.06377335,-0.33123994,-0.9645378,0.52603185,0.021226542,0.2195997,-0.056871917,0.30024657,0.48717877,-0.17014728,-0.041902985,-0.06818432,-0.14388704,-0.529167,-0.35292712,-0.66708046,-0.39871696,0.018313587,0.9396835,-0.36785072,-0.021541098,-0.18414159,-0.317799,0.011198674,-0.02548188,0.058711164,0.25200042,0.28447887,-0.06678581,-0.68493235,0.49177504,-0.11485696,-0.15217409,-0.46842614,0.085379325,0.6322929,-0.7945195,0.2873058,0.44131353,-0.038109463,0.06372365,-0.3770337,-0.123567946,-0.1750791,-0.07259835,0.3297348,0.15717523,-0.72945976,0.51500076,0.16313522,-0.380114,-0.7500424,0.20918791,0.059118625,-0.2296047,-0.022874832,0.21908714,0.08072265,-0.19067241,-0.35237426,0.009315951,-0.4730385,0.33187804,0.12184818,-0.10663712,0.5398627,-0.16918112,-0.24370594,-0.63230485,-0.1272938,-0.5146562,-0.08681435,0.309403,0.12752487,-0.021614019,0.03693318,0.0028613487,0.4712279,-0.3723752,-0.019839333,0.13703701,-0.22610752,0.24216366,0.34347448,0.46168542,-0.35919255,0.50823957,0.078575775,-0.14699332,0.1567595,0.09030235,0.3777633,0.22052003,0.29022846,-0.09441755,-0.07298078,0.34743777,0.604705,0.08778469,0.4534213,0.114877686,-0.28536394,0.421078,0.009987741,0.10364906,-0.017109636,-0.33769864,-0.0083570825,-0.027576884,0.08808332,0.4821219,0.42442703,0.37268564,-0.00870119,-0.21343589,0.047270656,0.12924226,-0.03613037,-0.93544525,0.3482452,0.2337579,0.8055239,0.3524537,0.046263523,-0.19568014,0.6633674,-0.2804518,0.19162318,0.23482691,-0.005626274,-0.48028,0.6468097,-0.5015535,0.46044272,-0.14480723,-0.17153557,0.11799973,0.054707963,0.14046787,0.8974284,0.033896882,0.07101183,-0.0029541627,-0.18515565,-0.07153869,-0.34202388,0.04920596,-0.55535764,-0.263445,0.73163444,0.24515724,0.3534101,-0.12585457,-0.14438382,0.028631046,-0.15315612,0.2999727,-0.08054719,0.15228336,0.09204694,-0.5688541,-0.36075693,0.49706745,-0.027756363,0.17443576,-0.16106476,-0.25330988,0.06694684,-0.2320318,-0.020995455,-0.04844915,-0.56774473,0.0152695095,-0.28339434,-0.37441233,0.32032737,-0.2049969,0.1694571,0.15424134,-0.0855899,-0.25397205,0.25446948,0.14490283,0.794293,0.19527404,-0.31977087,-0.45333418,0.03745153,0.41127983,-0.32542756,0.13229147,-0.39991835,-0.05741722,-0.50500786,0.63630533,-0.11891121,-0.23297584,0.20903768,-0.29012045,-0.038238984,0.5491907,-0.0022294351,-0.15821746,0.08565588,-0.041894894,-0.49846077,-0.02707845,-0.44117805,0.14354646,0.34196573,-0.034552317,-0.06413106,-0.22104444,-0.0331235,0.53215986,0.08276609,0.41740724,0.29825434,0.0067322636,-0.26845992,0.034786787,0.22243692,0.44717938,0.19558798,0.028362658,-0.5754324,-0.47277483,-0.30559975,0.0126961125,-0.14893699,0.030104158,0.074027516,-0.20547625,0.7962743,0.039269477,1.0507278,0.18043056,-0.21381375,0.1175412,0.5485863,0.042171873,0.12317855,-0.4240849,1.0732104,0.59503144,-0.11544638,-0.087404355,-0.39427176,-0.23584107,0.28041354,-0.3715736,-0.16411391,-0.14312407,-0.5909063,-0.48613772,0.19580677,0.1578883,0.035135113,0.009452651,-0.021253254,0.020187667,0.15484874,0.33478686,-0.7095265,-0.19996567,0.2865085,0.15706892,-0.03421034,0.29016808,-0.44716167,0.5292513,-0.6843303,0.06879928,-0.38548556,0.176074,-0.09269256,-0.4120596,0.14334224,0.1954236,0.42219567,-0.36425966,-0.52593803,-0.19510259,0.5417152,0.020358844,0.19843303,0.58386344,-0.24453963,0.033554655,0.0453755,0.592228,1.1737021,-0.29348373,0.087489046,0.4026915,-0.4205799,-0.6431249,0.31259054,-0.36196858,-0.012643673,-0.25700757,-0.45634767,-0.49202308,0.39114258,0.18833189,0.068895526,0.111725844,-0.5813592,-0.14203937,0.26197177,-0.2904956,-0.15354612,-0.11730518,0.29819116,0.62841976,-0.2942416,-0.16540751,0.12560149,0.31059012,-0.2222412,-0.4225962,-0.2299392,-0.30343676,0.20487905,0.17325208,-0.18054414,-0.20313573,0.088970505,-0.32933873,0.059311543,0.1391996,-0.37769574,0.03747895,-0.16315429,0.12021746,0.74775493,-0.07230694,-0.010242773,-0.6974209,-0.3749446,-0.91243464,-0.49316505,0.31000543,0.2095644,-0.053366426,-0.50644714,0.037978493,-0.09508221,-0.09680111,-0.013643826,-0.55864155,0.38252956,0.07884494,0.40918282,-0.25449824,-0.8724977,0.09124816,0.10228886,-0.30167308,-0.558204,0.5847507,-0.08737576,0.8607982,0.031209975,-0.14745148,0.12705623,-0.57622576,0.035543535,-0.41525427,-0.100697145,-0.6432126,0.008452156,1 -331,0.6058696,-0.009347899,-0.4321522,-0.2778716,-0.4641142,0.10259865,-0.26650864,0.041819137,0.3296782,-0.31691402,0.05357182,-0.12753187,0.04816172,0.47952223,-0.16366217,-0.89477795,0.15055166,0.20957755,-0.5828438,0.27973944,-0.6167325,0.44676757,0.1707107,0.25276133,-0.0026590307,0.18589664,0.2976239,-0.12498249,-0.04399254,-0.17766021,0.034133818,-0.015106456,-0.71695536,0.21853903,-0.07112758,-0.4644014,0.087096535,-0.51121473,-0.31716534,-0.55303365,0.2575709,-0.74899113,0.49272925,-0.038294595,-0.26377302,0.062666014,0.07556074,0.42242455,-0.22579943,0.14509614,0.12895793,-0.36270857,-0.14331634,-0.11443852,-0.29654366,-0.43314308,-0.5981704,0.020032806,-0.6367579,-0.13232312,-0.40689155,0.25573877,-0.33340475,-0.017483745,-0.043848872,0.30814758,-0.337405,0.046029065,0.35300255,-0.23724361,0.16714568,-0.23420255,-0.20025346,-0.12169246,0.36477962,-0.09264479,-0.26437017,0.30106753,0.42017168,0.48096004,0.18562365,-0.34954458,-0.18005213,-0.15728116,0.053531613,0.7063565,-0.13030766,-0.21553648,-0.35147232,-0.07631575,0.23772693,0.21784154,0.0045473897,-0.41856378,0.06711047,0.16207044,-0.31266308,0.49723414,0.5065364,-0.46855968,-0.14937124,0.34303817,0.35594827,0.04868049,-0.045856792,0.22214219,0.047861207,-0.554923,-0.2830707,0.24258433,0.09554179,0.58515835,-0.12129136,0.21967933,0.73157847,-0.32890722,-0.06365546,-0.069624424,-0.16916369,-0.0016648769,-0.25780421,-0.08029228,0.24360107,-0.6254301,-0.08911024,-0.27707335,0.9158169,0.2409736,-0.8644987,0.46708798,-0.58155745,0.15988946,-0.19371161,0.600539,0.77207977,0.35706946,0.19870755,0.70074147,-0.57827675,0.21828726,-0.08878745,-0.48045376,0.13940258,-0.13212009,0.18710746,-0.39658356,0.08043645,0.027782751,0.016771723,0.10801971,0.3502481,-0.4049662,-0.08374568,-0.08714269,0.6763302,-0.43132344,-0.09369848,0.9592141,1.0378834,1.04538,0.16817716,1.4176282,0.52499473,-0.15380771,0.07904478,-0.21547095,-0.48874903,0.12602101,0.30350593,0.101585336,0.1837945,0.20709093,0.0039469856,0.3384116,-0.22036695,-0.12051221,0.020325964,0.30790487,-0.15407589,-0.049719453,-0.597122,-0.30993956,0.10279751,0.026790997,-0.06291335,0.41003373,-0.18336432,0.4553278,0.09394076,1.2691069,0.095551565,0.06158424,-0.20191118,0.36540487,0.2601638,-0.22558202,-0.22420819,0.09122044,0.27537194,-0.09419246,-0.53876495,-0.08685016,-0.2822464,-0.25510678,-0.28144854,-0.39864334,0.035987176,-0.16779526,-0.3202398,-0.07636547,0.08532877,-0.33594507,0.64707464,-2.4839623,-0.39178148,-0.032300033,0.36402926,-0.14189097,-0.29678735,-0.14689626,-0.58607864,0.3145531,0.31673452,0.38609666,-0.61973864,0.40841824,0.33554527,-0.31859833,-0.29528496,-0.8650318,0.021730209,-0.15197983,0.25232446,-0.12951235,-0.09080408,-0.194465,0.23211493,0.731883,0.034944944,-0.004106351,0.07223939,0.40262723,0.07815493,0.6047388,0.10031142,0.62653786,-0.24593702,-0.18630205,0.25710306,-0.23847923,0.28358465,-0.1046604,0.15911542,0.3600463,-0.5246393,-0.8908878,-0.69227105,-0.4119127,1.1373062,-0.3740855,-0.37420934,0.26454934,0.081883736,-0.1345432,0.041574784,0.4053122,0.043766737,0.047517896,-0.54418224,0.11693765,0.04053119,-0.025614215,-0.05674381,0.18405195,-0.31982136,0.59746784,-0.3394391,0.29842123,0.32217264,0.30482492,0.014622961,-0.3827674,0.19591066,0.9613424,0.2435437,0.109278746,-0.23284487,-0.33919182,-0.2052856,-0.21969448,0.06801047,0.45814487,0.8955759,-0.05141469,0.11134652,0.40011173,-0.190479,0.22399881,0.0791984,-0.3495531,-0.022552509,-0.1304113,0.62365,0.5669912,0.024299424,0.43628582,-0.11325619,0.10559923,-0.15687779,-0.4774545,0.4798334,0.7309656,-0.23588453,-0.16666918,0.54366314,0.2761338,-0.30614814,0.46698257,-0.5120188,-0.23533256,0.5911297,-0.0012787239,-0.34650594,0.06605207,-0.32394943,-0.0049598366,-0.9403515,0.46841264,-0.09290565,-0.6516567,-0.22360162,-0.0993471,-4.110858,0.26071742,-0.12931035,-0.06484168,0.061586864,-0.2142789,0.35365412,-0.46051043,-0.4389952,0.12620626,-0.03548629,0.65761715,-0.15716438,0.21372442,-0.34363338,-0.16541053,-0.4109021,0.17566037,0.12234897,0.28187853,0.008517759,-0.2225789,0.2362539,-0.45510128,-0.51984435,0.099872656,-0.5881262,-0.5109607,-0.09412212,-0.44524235,-0.5308894,0.88494444,-0.3839329,0.025682671,-0.36654577,-0.03913958,-0.27849963,0.46770597,0.12509911,0.12701748,0.055699773,0.061546665,-0.30134597,-0.39134064,0.39010996,0.14463556,0.27672836,0.34561083,-0.20788436,0.1601458,0.60557836,0.5467708,0.09592239,0.6861225,0.19451205,-0.048899166,0.2340421,-0.3985992,-0.19469701,-0.591638,-0.44085482,-0.36284587,-0.47928572,-0.4905899,-0.20056894,-0.3319673,-0.7295739,0.4638939,0.06756426,0.06518081,-0.2331749,0.21885101,0.29864857,-0.19846983,0.0006002709,-0.09758147,-0.19667901,-0.5746228,-0.35803133,-0.6665255,-0.62891257,0.25816777,1.0454596,-0.1851646,-0.011277258,-0.095529266,-0.19058728,0.18298987,0.09110524,0.21605645,0.14802702,0.39930704,-0.1555917,-0.70597744,0.29330984,-0.32887602,-0.11481087,-0.6372591,0.12773229,0.7364628,-0.62526006,0.54788125,0.4234031,0.27957642,0.21688983,-0.46697998,-0.3004391,0.078637876,-0.218151,0.50983447,0.05874557,-0.8613127,0.5391927,0.23454131,-0.19919078,-0.6515202,0.5922617,0.077211894,-0.08083155,0.1447164,0.3516027,0.22006524,-0.07712083,-0.11485882,0.20544638,-0.65816116,0.35409886,0.33817106,0.10146532,0.41515952,-0.06556462,-0.24324942,-0.5801662,-0.264133,-0.4672512,-0.2743983,-0.034710407,0.06340194,0.14360197,0.1854309,0.20364197,0.43455526,-0.5005383,0.06838802,-0.06431467,-0.32159665,0.3613116,0.5561839,0.45724827,-0.43352905,0.57251376,0.053223945,0.059800923,-0.21649064,-0.0040938174,0.5013285,0.20538066,0.27074176,-0.033663657,-0.18256414,0.013988967,0.59631336,0.16037811,0.34362602,0.24005553,-0.13588418,0.33072644,0.24714826,0.13675308,0.2188627,-0.13847755,0.0058937436,-0.0675426,0.13450916,0.4314348,0.18787266,0.27840862,-0.09384819,-0.2087345,0.13851455,-0.0674175,-0.16856413,-1.2893698,0.29761034,0.20731282,0.49788707,0.4506409,-0.022370653,0.05018026,0.49845535,-0.25650954,0.06355916,0.34222487,0.057354588,-0.21813305,0.5495305,-0.69751227,0.5879601,-0.15414338,0.08104162,0.18799217,0.15719306,0.35929725,0.92797893,-0.090038255,0.1752443,-0.13789542,-0.2509735,0.057208598,-0.35362878,0.102136016,-0.55143464,-0.15700367,0.79454523,0.30858088,0.27251473,-0.20995538,-0.06861709,0.1282069,-0.13077743,0.11828072,-0.00083202124,-0.08210676,-0.039197564,-0.635747,-0.34237072,0.60045844,-0.19093339,0.04949125,0.11823023,-0.2024389,0.26984218,-0.21454038,-0.01033995,-0.013996713,-0.70227224,-0.1605133,-0.44294325,-0.35180554,0.2536095,-0.45764595,0.2652179,0.15812835,0.023884399,-0.25616974,0.2180551,0.2673659,0.847562,0.030383144,-0.34427366,-0.32117224,-0.002326199,0.38309446,-0.3184627,0.021069279,-0.24169922,0.10534392,-0.6655798,0.43869135,-0.21534903,-0.17470002,0.021002522,-0.031181829,-0.011149533,0.42826837,-0.3015971,0.040957756,0.13448516,0.022611966,-0.24556038,-0.016756508,-0.22872151,0.14171639,0.07276417,-0.1896606,0.15948413,-0.21605618,0.08625839,0.27401203,0.08982624,0.23331083,0.113304295,-0.014072333,-0.18611611,0.01366485,-0.14114435,0.27839497,0.008689796,-0.121088155,-0.47368807,-0.12563726,-0.11916561,0.3148063,-0.08006348,0.020851118,0.08265139,-0.31987593,0.7830105,0.032673534,1.1971253,0.1993912,-0.369333,0.17857711,0.4502643,-0.04887302,0.03124699,-0.35173398,1.0005686,0.52815735,-0.12775892,-0.2606216,-0.54387885,-0.37865475,0.24390122,-0.3256057,-0.35348126,-0.0074995374,-0.59051543,-0.21671762,0.08036523,0.09975498,0.117169745,-0.049094982,0.076998435,0.26603064,0.13297643,0.48065025,-0.60920376,-0.036063068,0.2981895,0.41926318,0.061356064,0.3238778,-0.27591652,0.38233835,-0.6869167,0.18450868,-0.44684213,0.09647701,0.00608535,-0.29146072,0.25221404,0.2359551,0.29717645,-0.092423156,-0.31642607,-0.12275352,0.60062164,0.16933462,0.19067006,0.81819314,-0.32799673,-0.25112882,-0.020434638,0.34801355,1.3149902,-0.09313183,0.060946804,0.45374757,-0.2763275,-0.50880444,0.26151183,-0.36193228,-0.028983181,-0.09146146,-0.23558652,-0.5026846,0.24524136,0.12818092,-0.054249592,0.19760896,-0.49179977,-0.20973442,0.2892101,-0.25421298,-0.4045295,-0.30977988,0.3858181,0.69094497,-0.43679208,-0.33809352,0.011986213,0.22278294,-0.21605322,-0.5595956,-0.01569954,-0.16383922,0.30756027,0.105479375,-0.37828058,-0.12688133,0.26330703,-0.30604914,0.02740957,0.36275476,-0.22953586,0.12961617,-0.17371735,-0.069198325,1.0799098,-0.045971334,0.22802809,-0.7377202,-0.60977757,-0.892965,-0.39836296,0.16624829,0.28300807,0.03250331,-0.35056072,-0.09748063,0.11821677,-0.029464126,0.13022436,-0.61687976,0.2824559,0.093301274,0.36517993,-0.02775045,-0.9698428,-0.054793037,0.16464235,-0.26231256,-0.6715189,0.55214655,-0.21007837,0.79930156,0.15312438,0.07471643,0.09206115,-0.47041157,0.2962641,-0.38619575,-0.14542988,-0.6445386,0.014669026,2 -332,0.443805,-0.34984604,-0.54177845,-0.06778514,-0.27440813,-0.11081444,-0.12182994,0.3305448,0.29875264,-0.11133403,-0.2566531,0.12255074,-0.09610592,0.39969245,-0.07567973,-0.8430162,-0.17277773,0.29881606,-0.86845046,0.71823037,-0.46147698,0.42229584,0.13321398,0.29390123,0.050285775,0.23266728,0.13634065,-0.006304992,-0.07020875,-0.15676372,0.06180271,0.04473565,-0.5691623,0.28014472,-0.14184144,-0.37519678,-0.1100512,-0.4237049,-0.22344258,-0.8374856,0.27180356,-0.8200102,0.64240706,-0.08338689,-0.24555305,-0.13026036,0.13184047,0.3712981,-0.371233,0.051845312,0.32611975,-0.16653886,-0.36976427,-0.23032644,0.20553434,-0.41138932,-0.5427596,-0.06969359,-0.51779,0.0010761534,-0.0859079,0.25807497,-0.29705933,0.098973885,-0.27871862,0.3830647,-0.41412732,0.019718958,0.28170872,-0.023502022,0.07402492,-0.602893,0.10621558,-0.15522698,0.45561734,0.03815582,-0.33355328,0.37159246,0.35511497,0.4286047,0.29019094,-0.31144714,-0.14404488,-0.0014536828,0.066486515,0.40297982,-0.2199349,-0.36242983,-0.119782925,0.21014749,0.5984382,0.25225335,0.14258696,-0.22795267,-0.076743565,-0.2326762,-0.03271074,0.55003947,0.58834964,-0.19605374,-0.2214805,0.4501691,0.46894404,0.29352826,-0.024978569,-0.058901787,-0.09023634,-0.5828511,-0.19319889,0.10826712,-0.104528345,0.54783297,-0.16866057,0.111732736,0.6484114,-0.107587084,-0.2695861,0.15797327,-0.06562201,-0.08454609,-0.20329584,-0.3471754,0.29218724,-0.5325661,0.025861373,-0.39933035,0.61998624,0.109855704,-0.85222197,0.3285591,-0.5743141,0.15787195,-0.072961636,0.7082239,0.88614464,0.6828915,0.22784315,0.7880622,-0.294738,0.24210857,0.02706028,-0.38045582,0.073178925,-0.18402256,-0.100740485,-0.5264953,-0.002819108,-0.34117118,-0.17481089,0.13269503,0.40256187,-0.63014877,-0.24085544,-0.032928802,0.56868106,-0.2862704,-0.12139385,0.9871036,1.0004605,1.1294343,0.16095679,1.2061098,0.3500951,-0.19267742,0.01369427,-0.3705395,-0.7738549,0.2442974,0.30876145,-0.2568684,0.4333658,-0.06481352,-0.08307685,0.341933,-0.34887984,-0.17424473,-0.11504738,0.39878908,-0.069177516,-0.3073032,-0.30677494,-0.12961076,-0.008476696,0.03852127,0.039171,0.29004636,-0.23086762,0.45745808,0.07498254,1.1061089,-0.14231822,0.029344933,-0.010160087,0.25021598,0.30151907,-0.30377755,-0.111590885,0.2726334,0.522056,-0.08630676,-0.6736482,0.16819918,-0.4594654,-0.46997574,-0.19832458,-0.108115815,-0.11633842,0.09549241,-0.35069826,-0.29796377,0.033423793,-0.09951433,0.4451916,-2.5015354,-0.33423635,-0.16556264,0.44993386,-0.26811495,-0.20010647,-0.010703291,-0.51596016,0.39288568,0.104738355,0.5087324,-0.7920107,0.65259606,0.2791245,-0.66975003,-0.15672931,-0.7654982,-0.03416651,0.094401546,0.40901068,-0.016987631,-0.026216421,-0.00168487,0.06272137,0.59416705,-0.061773565,0.13834395,0.6321763,0.5074381,0.035867453,0.3712024,-0.034863625,0.72371644,-0.42826286,-0.14785452,0.3098099,-0.34767637,0.42741606,-0.03742242,0.05644747,0.6133181,-0.6284753,-0.85346174,-0.5582698,-0.16236508,1.0060656,-0.26545617,-0.38456264,0.19026934,-0.30393776,-0.1596829,0.04579727,0.46827865,-0.22690476,-0.07079869,-0.7541572,-0.045364566,-0.018130269,0.2714828,-0.07034213,-0.11076845,-0.35748497,0.7467829,-0.099259056,0.5718921,0.33574295,0.3498251,-0.39020494,-0.4222642,0.079427205,0.7131228,0.503769,-0.076153465,-0.10404278,-0.16301452,-0.13341692,-0.05185161,0.088136606,0.6601719,0.55423695,-0.11295331,-0.008274888,0.28558564,-0.11690613,0.07004479,-0.14802177,-0.1513255,-0.20707515,0.032407966,0.42078575,0.88867337,-0.12300219,0.59330255,-0.17023274,0.27492923,0.07143646,-0.6929162,0.7156364,0.6184121,-0.26168764,-0.13093407,0.5164632,0.2107376,-0.10355925,0.5180438,-0.5234146,-0.22663581,0.49983093,-0.1386724,-0.3343521,0.16958252,-0.22518349,0.17792661,-0.77211887,0.50330174,-0.53876036,-0.55489415,-0.60097635,0.07017262,-2.6001112,0.25826505,-0.27349487,-0.083470725,-0.31553108,-0.0927739,0.26450196,-0.7636122,-0.738392,0.24156703,0.3583424,0.6129457,-0.08064033,0.13914669,0.025762673,-0.40394992,-0.13296916,0.29298028,0.1846977,0.232828,-0.07946717,-0.39290807,-0.19324888,0.07659681,-0.47717986,0.120551236,-0.56251436,-0.5254292,-0.05596701,-0.6376395,-0.19569243,0.68047297,-0.30164057,-0.00693469,-0.18094337,0.0601029,-0.09495652,0.118199505,-0.028866228,0.277654,0.14134802,-0.23565693,0.24395251,-0.12955837,0.30692333,0.011686106,0.40741116,0.1503642,-0.15094323,0.31403086,0.5154998,0.7808313,-0.2695805,0.80210066,0.6227214,-0.121198654,0.18430576,-0.11629016,-0.42369124,-0.64350086,-0.41531903,0.0926775,-0.45421267,-0.42362887,0.15356341,-0.3898379,-1.0410691,0.4479272,-0.04249386,0.21535842,-0.017238757,0.18531151,0.4412234,-0.15126263,0.087814845,-0.15176125,-0.2593333,-0.3587081,-0.27063277,-0.6450558,-0.4540944,-0.038212955,1.2795953,-0.25989124,0.20198894,-0.08859669,-0.27570575,0.13967228,-0.06255867,-0.08786757,0.22347607,0.24070178,-0.12576017,-0.60335416,0.31581494,-0.15586302,-0.09243335,-0.5075313,0.37047818,0.7016533,-0.57023394,0.52127236,0.2980523,-0.106865235,-0.15213081,-0.7405649,-0.084700994,0.17545196,-0.1592904,0.4465477,0.27910945,-0.73694927,0.49806675,0.32727972,-0.52650285,-0.78304845,0.280278,0.10417851,-0.26904464,-0.1287641,0.34633487,0.117014065,-0.15383725,-0.3330875,0.4601243,-0.30448455,0.35383043,-0.01307869,-0.24611366,0.060608607,-0.17497213,-0.3744204,-0.81201756,0.17642792,-0.6165136,-0.20291097,0.32465944,-0.0038312376,0.1547073,-0.052376866,0.25509536,0.54592806,-0.4706702,0.18157108,-0.0051161177,-0.47427914,0.23001477,0.5670287,0.37311822,-0.3005516,0.32727858,0.19161479,-0.19090499,0.026528835,0.10308372,0.54807556,0.071742766,0.29748058,-0.010844682,0.043303855,0.34004933,0.8853909,0.08302448,0.27866465,-0.06814565,-0.25239035,0.23265973,0.015655216,0.38076234,-0.15768838,-0.37046078,0.052901182,0.26907524,0.11668988,0.5823587,0.29479617,0.23699905,-0.051146444,-0.32045624,-0.07644721,0.11991747,0.101686105,-1.2979718,0.5842966,0.18131621,0.9551102,0.51301473,0.21114753,-0.1212132,0.67791575,-0.29966733,0.062195394,0.33296177,-0.119092636,-0.37875694,0.4451711,-0.71322757,0.32087448,-0.02380016,-0.019052727,0.2639361,-0.035284333,0.22063425,0.77948666,-0.15839954,0.03369807,-0.044766936,-0.052744243,-0.10960772,-0.33690712,0.016899185,-0.44392422,-0.4384663,0.92937285,0.28964043,0.30032095,-0.14418276,0.0332584,0.1675214,-0.19620578,0.18508814,-0.099334136,0.071898736,-0.0054119057,-0.341708,-0.10090289,0.52372986,-0.03810731,0.12292739,-0.2267796,-0.22137806,-0.06952502,-0.2535611,0.0075555616,-0.10726238,-0.8463529,0.17313814,-0.37218043,-0.2293082,0.31048536,-0.21321766,0.088132516,0.22345768,0.102892585,-0.23755537,0.3497928,0.0796419,0.7728265,0.07517525,-0.12176384,-0.22211795,0.34777644,0.20057906,-0.27152342,0.34279045,-0.3496355,0.009224913,-0.5664443,0.65254515,0.00016906964,-0.4334434,0.18990946,-0.16037385,0.04341719,0.40618414,-0.3782036,-0.24227452,0.17526361,-0.11647829,-0.36593026,-0.16227196,-0.2508697,0.18099825,0.5311183,0.21092646,-0.1063142,-0.19333093,-0.18278392,0.5473571,0.21859516,0.5151671,0.37459165,0.051107194,-0.3724193,0.08041128,0.2638936,0.46366912,0.30436698,-0.06633722,-0.685136,-0.34771913,-0.36413142,0.0902553,-0.140324,0.19567822,-0.17709926,-0.25689435,0.8081736,0.18239631,1.2307364,-0.030685663,-0.30388644,0.01817195,0.61100894,-0.09693252,-0.1062436,-0.30500767,1.0182246,0.68443435,-0.088824384,0.055744763,-0.463902,-0.20794581,0.35683814,-0.43451783,-0.08644681,0.050032623,-0.59088707,-0.3486466,0.25604126,0.06494629,-0.10756616,-0.10833331,-0.06897782,0.15748262,0.08190302,0.13850185,-0.67062104,-0.10537064,0.13181427,0.21070156,0.0022293436,0.14740226,-0.5462312,0.2675479,-0.7330137,0.225153,-0.32957488,0.19734608,-0.069005154,-0.38126424,0.13495263,0.07396597,0.17872773,-0.4089467,-0.42832035,-0.057321697,0.49323848,0.043619495,0.16359986,0.6182462,-0.303749,0.0684078,0.21678652,0.5194877,1.1007833,-0.3724619,-0.08675154,0.1829268,-0.46326947,-0.6570412,0.3918376,-0.20602994,-0.06398616,-0.28748205,-0.3253974,-0.5596893,0.3526829,0.17831981,0.24417876,0.0024694162,-0.7928308,0.04796159,0.34304303,-0.2992638,-0.1821288,-0.23594114,0.28462905,0.77682245,-0.32165766,-0.45245823,0.20555942,0.3094984,-0.21649145,-0.44526622,-0.12213495,-0.30806133,0.18840013,0.15620883,-0.3639696,-0.19573666,0.049523983,-0.40255922,0.10070071,0.1304345,-0.30025196,0.15617552,-0.21871595,-0.0115100015,0.78570575,-0.2904952,0.06460782,-0.5708436,-0.47880608,-0.9408618,-0.39549622,0.18807529,0.31303352,-0.10072415,-0.883708,0.08857863,0.011623106,-0.15469371,-0.004784039,-0.41578564,0.44603077,0.17173086,0.39325833,-0.33132964,-0.94656056,0.17708293,0.22396556,-0.12578312,-0.47332913,0.5937339,0.04902684,0.8797048,0.044125598,-0.027305828,-0.028502371,-0.5740775,0.09125571,-0.33544612,-0.13294557,-0.60683197,0.023256037,4 -333,0.31714576,-0.43155608,-0.46576712,0.086364046,-0.3016712,-0.038225446,-0.2300445,0.5779172,0.11410383,-0.42458767,-0.09172891,-0.074535064,-0.123573594,0.23337854,-0.17535369,-0.18052292,-0.05302074,0.104425244,-0.3948682,0.6745303,-0.23508765,0.20835455,0.012003465,0.25712565,0.37904248,0.3600784,-0.15778926,0.17149165,-0.12028874,-0.32010144,-0.089165516,0.22163367,-0.5790292,0.35300273,-0.23081267,-0.34219438,-0.19491413,-0.51651806,-0.31728145,-0.78533494,0.19134752,-0.8946587,0.3914852,-0.0037710879,-0.39218324,0.28013638,0.4218712,0.42427644,-0.09746992,-0.229954,0.2761093,-0.10576582,-0.060778163,-0.26726478,0.06378076,-0.31293622,-0.5887328,-0.09538489,-0.35549554,-0.18563756,-0.2695599,0.27426362,-0.24842772,0.04350457,-0.155954,0.6144373,-0.43839625,0.18691264,0.11326326,-0.28354684,0.184046,-0.78417504,-0.10511349,-0.12634064,0.24754153,0.033212516,-0.1838944,0.26545128,0.20682122,0.14706406,0.06840467,-0.097120956,-0.5018339,-0.0974857,0.0906526,0.37331167,-0.27033174,-0.23596695,-0.049742687,-0.022326436,0.28286394,0.17472135,0.14747462,-0.3758103,-0.09452839,-0.030682411,-0.2798365,0.27255177,0.30244967,-0.21531369,-0.084955685,0.44594368,0.63834465,0.27027804,-0.2894613,-0.13491742,0.004511595,-0.47772264,-0.056378838,0.15299176,-0.15650925,0.41475087,-0.08462608,0.15941298,0.61916673,-0.08445094,-0.10573781,0.10931814,0.18501379,-0.009171703,-0.38591626,-0.3340363,0.33514723,-0.33782315,0.19600675,-0.07007997,0.61939514,-0.016232815,-0.598979,0.27429575,-0.56485385,0.12958314,0.07180722,0.1855643,0.6513747,0.7290779,0.25537327,0.7530603,-0.22226684,0.042525,-0.2129632,-0.22808647,0.24982429,-0.23371305,-0.059101902,-0.5023325,0.16077553,-0.05449118,-0.09695416,0.10233839,0.50648606,-0.53655505,-0.0674669,0.14493199,0.66684014,-0.14582877,-0.057282828,0.74189717,0.97822464,1.1179867,0.15679826,0.8633527,0.12922202,-0.18633434,0.1472583,-0.0023355144,-0.6058286,0.2797106,0.45078823,0.23486741,0.19589719,0.1358085,0.06816288,0.50398815,-0.14281748,-0.015010067,-0.14630008,0.16447116,0.26492476,-0.13442434,-0.43665972,-0.3579722,0.025700977,0.16418777,-0.00517241,0.1620355,-0.15130118,0.3261387,0.20896891,1.7060678,-0.21921417,0.10721244,0.29102594,0.34179473,0.28533673,-0.354676,0.061427824,0.39913845,0.17776132,0.27944854,-0.483588,0.15850504,-0.19097662,-0.5704674,0.009800447,-0.29759732,-0.18346946,-0.07163615,-0.50779265,-0.2807525,-0.095101036,-0.23398484,0.5049038,-2.818238,0.053610187,-0.14408755,0.3362181,-0.23260233,-0.501998,-0.021184755,-0.36572486,0.4293268,0.30538195,0.51699936,-0.5630106,0.31044367,0.34641132,-0.79861695,-0.08985378,-0.51537424,-0.09476638,-0.07059489,0.46139663,0.0779562,0.035494383,0.10593749,0.032854836,0.49222305,-0.09794382,0.0941274,0.46075338,0.30356565,-0.26300594,0.62845993,-0.096094534,0.42083067,-0.29116985,-0.30140296,0.3356406,-0.5218905,0.16376117,0.09667999,0.21696244,0.5896469,-0.45567125,-0.9402154,-0.6906595,-0.04826176,1.1566248,-0.2145553,-0.51624644,0.2622581,-0.5469524,-0.35979488,0.0017924862,0.4869081,-0.03556416,0.062176134,-0.7402128,0.024619818,-0.17198081,0.21337965,0.06833445,-0.27005726,-0.5112459,0.9390984,-0.07012393,0.65742594,0.30412254,0.089258656,-0.4126313,-0.32037416,-0.10079213,0.7619628,0.6148675,0.10262394,-0.1431844,-0.1394407,-0.25721213,-0.17792848,0.2616168,0.58675396,0.23365399,-0.119622394,0.15215805,0.23027405,-0.14277048,0.08989101,-0.23469,-0.22935227,-0.11927999,0.11928214,0.5542039,0.67014503,0.04106965,0.28203297,-0.01635042,0.35666314,-0.0030744672,-0.56952286,0.3923466,1.0543458,-0.07694234,-0.38310838,0.52514666,0.5362763,0.043218546,0.28228483,-0.41144544,-0.30740026,0.33799788,-0.21886896,-0.4802024,0.1825992,-0.32938766,0.0049928767,-0.6532683,0.19146135,-0.46162024,-0.604132,-0.5900217,-0.11367637,-2.9442163,0.2663868,-0.17388384,-0.24472697,-0.20975325,-0.2704623,0.19222103,-0.70301855,-0.53905505,0.16114543,0.14453878,0.6092259,-0.21066524,-0.04236603,-0.24583735,-0.370578,-0.22268924,0.33835584,0.0067074415,0.42317486,-0.10052388,-0.3686044,-0.09510959,-0.010096763,-0.50841415,0.032315336,-0.7269035,-0.356212,-0.120965,-0.5691306,-0.41652146,0.6237801,-0.41774654,0.06530895,-0.12704088,0.07316768,-0.15516257,0.2320226,0.046750765,0.05306673,0.15288533,-0.07601828,0.075305395,-0.18424733,0.2217244,0.09640823,0.25197005,0.26344076,-0.20786092,0.20371415,0.59705245,0.73798895,-0.2952266,1.0460193,0.4154974,-0.16770904,0.35089377,-0.15006445,-0.33021697,-0.5530446,-0.24033895,0.03644851,-0.29912868,-0.25719625,0.031270705,-0.378519,-0.776815,0.5855737,0.06479722,0.07333504,0.015996844,0.32621628,0.53411645,-0.28527737,-0.13659067,-0.042663064,-0.15765938,-0.59123456,-0.31553817,-0.47263846,-0.5272227,-0.025179787,0.96959984,-0.33641738,0.05589944,0.15168153,-0.34894985,-0.034795184,0.22743322,-0.07600359,0.13285819,0.44742227,-0.05394117,-0.52401626,0.4808292,-0.18747523,-0.17874555,-0.3806119,0.56869495,0.5728749,-0.5579144,0.5742647,0.2924471,0.08238018,-0.29836974,-0.4864017,-0.013031299,-0.085946,-0.23965904,0.42546034,0.42978913,-0.79111284,0.3325453,0.33746275,-0.29634613,-0.7026597,0.49385062,-0.1402139,-0.19724157,-0.29065758,0.42064553,0.25955877,-0.026920905,-0.06292076,0.17877732,-0.45202824,0.25413743,0.17007165,-0.082904875,0.1380168,-0.18090487,0.032248583,-0.82124525,0.10926153,-0.4220101,-0.32683378,0.44492513,0.061568327,-0.022296263,0.08862978,0.041248415,0.33199096,-0.15754081,0.07883129,-0.2927813,-0.20551758,0.44029266,0.5163329,0.43858173,-0.40553957,0.5655693,0.12105986,-0.06997942,-0.014978937,-0.051927984,0.34409872,-0.015486794,0.4551676,-0.114085265,-0.100119,0.18233685,0.5086986,0.17032878,0.44464293,-0.10846214,-0.07415305,0.072143115,0.047884528,0.2717549,-0.12184841,-0.7725791,0.23596723,-0.3445925,0.073765345,0.5975974,0.0973679,0.25671038,-0.10438486,-0.28041193,-0.089454785,0.21550988,-0.026701884,-1.232432,0.38671142,0.1789439,0.8500829,0.49551013,0.048689958,0.075548686,0.89622396,-0.09416838,0.026805477,0.2942347,0.09880285,-0.51391345,0.51359516,-1.0669981,0.482665,-0.04403966,-0.049424924,0.07946213,0.02918108,0.5115513,0.5853072,-0.19916987,-0.0019261794,-0.007892771,-0.4160905,0.13688584,-0.34229988,0.14552154,-0.42337054,-0.4503966,0.67529184,0.52426875,0.63003075,-0.21048461,0.03534099,0.053844247,-0.17815824,0.33257082,-0.012850476,0.07433315,-0.071533374,-0.66425455,-0.022053609,0.5622686,-0.15161593,0.23842978,0.051726613,-0.26643416,0.4707233,-0.07102812,-0.0069483006,-0.021048317,-0.6372984,0.20363565,-0.26525837,-0.380078,0.39448363,-0.04555721,0.2297199,0.15185936,-0.035322066,-0.13418834,0.43115404,0.16327524,0.9411685,-0.054294676,-0.013089836,-0.28259543,0.22118865,-0.05235952,-0.082787886,-0.07036749,-0.27367276,0.036471065,-0.71898025,0.2707531,-0.085644566,-0.24641684,0.16150853,-0.091914766,0.0679482,0.5564949,-0.15267392,-0.25188044,-0.15910485,0.043492027,-0.16786766,-0.5003033,-0.16186722,0.2303284,0.027699133,0.09710554,-0.07957214,-0.18086179,-0.15027264,0.34099862,-0.048195276,0.47546488,0.31875148,-0.027654698,-0.31749764,-0.07380321,0.21130796,0.3857554,0.02197728,-0.0536622,-0.22401486,-0.5719101,-0.5402334,0.16643748,0.06385705,0.53155947,0.14454257,-0.114300095,0.79077095,-0.36371025,1.1854073,-0.03173283,-0.47036806,0.15737215,0.51042193,-0.10483465,-0.10212309,-0.29675633,0.76649135,0.59571457,0.0031271833,0.041451115,-0.5266045,-0.09702883,0.15291417,-0.18302895,0.0120517565,0.053175468,-0.6287617,-0.21211784,0.069155805,0.17368683,0.09751817,-0.16827162,-0.024066355,0.40214294,-0.000740096,0.20863383,-0.29669496,-0.2891709,0.31872076,0.26915088,-0.12194721,0.008462305,-0.60289,0.4574468,-0.5703443,0.20553185,-0.36583376,0.18670973,-0.31068134,-0.14291045,0.2310441,-0.15347192,0.37900993,-0.34464693,-0.3095952,-0.081888676,0.6157452,0.052040916,0.098539814,0.6108057,-0.31231576,0.07888239,0.021224977,0.45172125,0.63795036,-0.47920308,-0.05648934,0.30930543,-0.42346737,-0.48910233,0.3607923,-0.17166682,0.19301333,0.28377536,-0.09616625,-0.44373345,0.27151722,0.28298992,0.09402078,-0.1674609,-0.6861587,-0.019720068,0.21174791,-0.45369497,0.009531056,-0.25068027,0.17742583,0.39740378,-0.37306002,-0.6117384,0.057118744,0.066492096,0.049481962,-0.41456434,0.023326298,-0.3616343,0.29551333,0.022445632,-0.34605113,-0.2839084,0.22464588,-0.48144108,-0.085596904,-0.105852224,-0.24164116,0.10150809,-0.4051458,0.043394912,0.8134718,-0.21456274,0.1643608,-0.45271495,-0.506907,-0.7577738,-0.3211477,0.24695535,0.08820223,0.13623442,-0.75093967,-0.006675226,-0.2612001,-0.29947147,-0.193397,-0.4627238,0.49695584,0.14241247,0.37993884,-0.24225426,-0.7329482,0.31884226,0.15737705,0.14343692,-0.4556783,0.43715218,-0.09208427,0.7808298,0.10483885,0.116614185,0.1794674,-0.49684262,-0.082777955,-0.102780424,-0.21784137,-0.6429008,-0.08427716,14 -334,0.56892955,0.1350213,-0.46374968,-0.13639,-0.11054366,0.09072101,0.000116212024,0.32999703,-0.004201307,-0.5944929,-0.3824834,-0.29351565,0.016282989,0.2683215,-0.23223297,-0.6955685,0.16895346,0.14786026,-0.3820137,0.5305149,-0.4155392,0.37787884,-0.027857082,0.34019402,0.1137057,0.31412807,0.32123327,-0.19617535,-0.1424446,-0.19439149,-0.03491452,0.050203674,-0.39276102,0.2527608,0.112313576,-0.30127224,0.10914983,-0.23918223,-0.41130766,-0.59204197,0.21341157,-0.84476936,0.40248108,0.067666225,-0.23932043,0.14667754,0.07738708,0.15716253,-0.24844769,0.073203646,0.24182712,-0.13976294,-0.11442014,-0.34579253,-0.13045712,-0.6888705,-0.45507288,0.09429144,-0.17512076,-0.21899037,-0.46282735,0.09793736,-0.28414547,0.024069538,-0.10432471,0.15695181,-0.566454,-0.055820566,0.2088467,-0.28002435,0.10337145,-0.61292976,-0.2789621,-0.13878812,0.18601152,-0.1298024,-0.13689393,0.31008306,0.24156776,0.5248965,-0.003000268,-0.089651294,-0.26833695,-0.14865066,0.29730862,0.6414723,-0.3325386,-0.5100714,-0.08393768,-0.15031807,0.1394008,0.06010936,0.12454226,-0.3154852,-0.07647039,-0.13334383,-0.29054716,0.1492252,0.57371986,-0.5881528,0.0012585266,0.3333164,0.3481769,-0.052791696,-0.19979899,0.04759511,-0.09020006,-0.45217636,-0.15715715,-0.07215339,-0.100043125,0.6685848,-0.07127948,0.11387082,0.5925108,-0.22705813,0.2557784,-0.021003842,-0.27898672,-0.104421414,-0.055150826,-0.09373379,0.17168392,-0.2930347,0.13459715,-0.35276327,0.87154645,0.027340727,-0.58932686,0.48257288,-0.42661697,0.15303119,-0.06109818,0.50788885,0.42462203,0.38680807,0.23380078,0.6240493,-0.4893559,0.02067693,-0.03520986,-0.31584764,0.13820006,0.061313383,-0.20076588,-0.44368228,0.102300406,0.12792705,0.003863573,0.027927289,0.4785542,-0.3939776,0.045874152,0.28731364,0.74655837,-0.35594797,-0.055771105,0.5443873,1.1975515,0.8190598,-0.020052183,1.1866003,0.3941059,-0.13933805,0.06361329,-0.2838651,-0.5622828,0.17439799,0.49005148,0.5192898,0.10702284,0.27397078,-0.015780734,0.5096382,-0.53858316,0.17930757,-0.25033626,0.31437507,0.08815998,-0.19665071,-0.4636399,0.008065628,0.077991046,-0.061137665,0.053408258,0.39040524,-0.20062985,0.37218115,0.04468041,1.6091472,0.09526156,0.15015057,0.028468292,0.5510273,0.1313027,-0.06679227,0.12103746,0.25819546,0.17175332,-0.061263647,-0.3725792,0.1011801,-0.16489804,-0.76935357,-0.19845316,-0.30053124,-0.18365529,0.037488528,-0.44033045,-0.082590856,0.13135733,-0.19807352,0.38416934,-2.7049332,-0.057563275,-0.23647371,0.2015824,-0.165071,-0.34595403,0.057148844,-0.3514905,0.5846033,0.4913873,0.46540788,-0.56928587,0.44822937,0.5157832,-0.37026945,-0.058589865,-0.58184874,0.016425593,-0.11324561,0.49576405,0.16351168,0.020692255,0.03129523,0.02430345,0.47814777,-0.20226799,0.09117676,0.1543381,0.27570492,0.17004827,0.36313948,0.09917307,0.52561,-0.1517552,-0.14743532,0.24818501,-0.18861532,0.41708905,-0.10072448,0.14344963,0.15487285,-0.52825147,-0.67629826,-0.7914174,-0.43161985,1.0831891,-0.11294309,-0.49071804,0.36362672,-0.14199577,-0.25492284,-0.058455456,0.42524645,-0.21531653,-0.0017673586,-0.77256924,0.0661354,-0.25868288,0.13786876,-0.0061206827,-0.008654682,-0.48221564,0.80682147,-0.14920832,0.42811912,0.44328675,0.111050494,-0.19184354,-0.3273851,0.06039675,0.92059815,0.3276814,0.1970038,-0.3213231,-0.21922286,-0.24214864,-0.12982707,0.15557651,0.59688646,0.51739645,0.072515965,0.00978307,0.16720466,-0.14846244,-0.21838714,-0.22176707,-0.13140376,0.030020222,0.07138585,0.73236996,0.76965463,-0.15979011,0.2812369,-0.26117036,0.4021461,-0.35249344,-0.44691247,0.32985234,0.70921856,-0.053063303,-0.16514124,0.66341126,0.7098554,-0.2627643,0.29442978,-0.6197077,-0.33189312,0.44423106,-0.25599533,-0.3791513,0.12664032,-0.44256237,0.16482092,-0.88691217,0.4687485,-0.21813877,-0.5850411,-0.5534109,-0.19448635,-3.6989517,0.19026123,-0.27520308,-0.22466215,0.07622935,-0.15139921,0.35859627,-0.51727057,-0.3248248,0.0705858,0.067031436,0.51756185,0.06861819,0.07992101,-0.37444067,-0.19261374,-0.111627094,0.26397964,0.0611575,0.3440453,-0.14226736,-0.4177665,0.08133868,-0.15605508,-0.2597198,0.033078495,-0.6201512,-0.6197672,-0.22195257,-0.14310057,-0.20373188,0.55491364,-0.52908814,0.027870229,-0.24964054,-0.08310629,-0.27670264,0.2031022,0.25949588,0.24229898,-0.11952187,0.060680747,-0.13982163,-0.44593415,0.4022191,0.114977516,0.41319245,0.5387212,-0.15980099,-0.024253467,0.48010403,0.44390795,0.03292556,0.749515,0.42276272,-0.08159985,0.25540167,-0.1984583,-0.23532286,-0.54484946,-0.43316582,-0.116224535,-0.43992022,-0.49685213,-0.16145362,-0.3553398,-0.69746333,0.40453586,-0.046272993,-0.102915846,0.0017550843,0.06290086,0.28472838,-0.22275506,-0.1470807,-0.0025359818,-0.009042384,-0.59190696,-0.41366318,-0.57970476,-0.454181,0.083241716,0.99444485,0.032315936,-0.04971404,0.006272137,-0.26217276,-0.03664904,0.11083094,0.09513172,0.067319855,0.24669722,-0.056973524,-0.75322247,0.66616535,-0.045030493,-0.16369703,-0.64183027,0.26200372,0.5420367,-0.6384672,0.48965573,0.43205568,0.121326685,0.14089522,-0.52217597,-0.3432083,-0.175599,-0.36404905,0.30987564,0.16386828,-0.9771338,0.36786416,0.32297662,-0.11179062,-0.7149089,0.49087292,-0.13006267,-0.5402121,0.21154396,0.15675534,0.07623272,-0.17038655,-0.25067922,0.3241434,-0.50318664,0.28170317,0.3262324,0.038602542,0.35900375,-0.16615649,-0.0048682177,-0.67269695,-0.079649016,-0.47836477,-0.184973,0.07005952,0.111316696,-0.030908018,0.1777338,0.11169165,0.4048615,-0.23183282,0.15905164,-0.107250094,-0.22033134,0.32996845,0.46145126,0.49584875,-0.4377966,0.6990423,-0.048281822,0.18159561,-0.20843199,0.15814283,0.553238,0.004632843,0.41982475,-0.19080465,-0.051908594,0.2075051,0.95503384,0.297749,0.58717114,0.21782207,-0.27791792,0.39354473,0.05561175,0.13677435,0.10924651,-0.4624415,0.05299694,0.003567636,0.17958744,0.3587089,0.012504752,0.43557867,-0.20846261,-0.26401544,0.05356008,0.2771508,0.1841379,-0.9322285,0.30711904,0.23725376,0.71292645,0.52163666,-0.08540291,-0.040770292,0.7030236,-0.3074802,0.07011159,0.23377919,-0.06468409,-0.45933595,0.34288105,-0.5310339,0.3665704,-0.116650395,-0.07462597,0.081201084,-0.07384839,0.22731447,0.7257619,-0.2031634,0.107728735,0.19081722,-0.41666397,0.024460793,-0.28682128,0.06846343,-0.5973191,-0.28682604,0.6760874,0.60573775,0.24641491,-0.026614785,-0.06866842,0.035946164,-0.0818808,0.074746445,0.035960555,0.19786794,-0.06969569,-0.6159506,-0.39519256,0.5121541,-0.123448715,0.17406437,0.06273622,-0.35595927,0.16151057,-0.24026452,-0.11355793,0.045680404,-0.40652266,0.15554273,-0.3668995,-0.31444073,0.4406628,-0.27004224,0.42163792,0.12206297,0.05889403,-0.15881048,0.3611305,-0.043910086,0.6122225,0.13754496,-0.272535,-0.44903582,0.015529045,0.29013896,-0.24751791,-0.10962743,-0.283545,0.09776646,-0.6545001,0.23860715,-0.1323525,-0.26000857,0.09408192,-0.14083074,-0.0130909635,0.5696548,-0.017511921,-0.25449377,0.18690325,0.055254787,-0.23382087,0.19023636,-0.15736385,0.30162886,0.002061316,-0.029137237,0.011905764,0.022171235,0.100154586,0.23341165,0.08062359,0.2644819,0.39898777,-0.09452778,-0.2544872,-0.14158313,-0.004774528,0.63546455,-0.10740267,0.124778666,-0.00511258,-0.71660703,-0.3824328,-0.054096997,-0.26937205,0.2603465,0.23101674,-0.2277061,0.658584,0.030317709,1.1443865,0.13062759,-0.3731777,0.10171192,0.59753144,0.032263048,0.16553028,-0.39096698,1.0863196,0.6133667,-0.17553453,-0.19529592,-0.20681348,0.010039636,0.26179373,-0.14834605,-0.27195635,0.05199799,-0.7321731,-0.05025851,0.15080322,0.40757936,0.16669962,0.02996317,0.06949369,0.071446225,0.17919533,0.32772484,-0.43751764,-0.19585061,0.36886352,0.22071366,-0.15322421,0.07531287,-0.29754663,0.39518723,-0.61460286,-0.0344161,-0.36327904,-0.11356183,-0.23347063,-0.34713477,0.18543205,0.082765855,0.3813835,-0.31890178,-0.15429795,-0.115878046,0.5527052,0.15303512,0.25595573,0.501466,-0.069486454,-0.053773012,0.0066392412,0.37812668,1.1618674,-0.31244496,-0.00081574917,0.48909074,-0.44638607,-0.5606986,0.24473305,-0.31383422,0.07995169,-0.09497522,-0.4613605,-0.49614826,0.30334356,0.23243997,-0.25168493,0.081790075,-0.5693612,-0.20522316,0.24319763,-0.3484199,-0.3940745,-0.29378912,0.2439973,0.61205655,-0.3690087,-0.22341573,0.0021971804,0.34923843,-0.38239056,-0.6119588,0.05078081,-0.26477024,0.27811044,0.24884759,-0.45438364,-0.14974536,0.1095177,-0.27230987,0.09581368,0.19788125,-0.4482978,0.13220993,-0.5169011,0.09152417,0.76326686,-0.036948353,0.22958732,-0.66854125,-0.44319528,-0.9346401,-0.57295287,0.69231755,0.22015102,-0.10699259,-0.40963188,-0.21035211,-0.08299322,-0.008413153,-0.065077536,-0.28327134,0.57919216,0.10383898,0.3196617,-0.03622498,-0.82739,-0.00962994,0.14739858,-0.22776733,-0.59970313,0.48482826,-0.1608218,0.9677691,0.03766436,0.1513406,0.28500548,-0.44267854,0.23123002,-0.3378945,-0.2225432,-0.63142234,0.13474317,15 -335,0.48036602,-0.06444775,-0.40228122,-0.06683991,-0.42656282,0.40786928,-0.032705452,0.24565366,0.027458416,-0.7044058,-0.0037058082,-0.073839866,-0.32939267,0.035550233,-0.16433868,-0.063515514,-0.10851226,0.04035761,-0.52682096,0.6808529,-0.20817201,0.43725199,0.08647963,0.11219144,0.0032195193,0.14063881,0.20059694,-0.05130094,0.13989484,-0.40835407,-0.2219541,0.023147073,-0.70020837,0.43233484,-0.094505236,-0.4270733,-0.009917698,-0.3986516,-0.2515073,-0.67718846,0.3103471,-0.83070606,0.59476703,0.11124999,-0.25727743,0.24117999,0.1515613,0.056888323,0.23213185,-0.08965521,0.3511133,-0.12059974,-0.034521926,0.05253648,-0.16702214,-0.3963682,-0.47802034,-0.034927584,-0.39706865,-0.3079365,-0.25636786,0.18723217,-0.33063132,-0.15793364,-0.30669212,0.48031187,-0.34588665,0.0054860157,0.05834424,-0.2292168,0.21095255,-0.79128695,-0.03493582,-0.102749825,0.23041753,-0.16751823,-0.106789224,0.36934635,0.17735077,0.5331785,0.09335234,-0.18868038,-0.24581262,-0.24370703,0.069367595,0.470006,-0.12861547,-0.20090629,-0.15523812,0.009610886,0.24517448,0.16734518,0.1826628,-0.23949933,-0.024769796,-0.03682779,-0.060795337,0.49950835,0.42964298,-0.27322632,-0.093246974,0.4210265,0.62067735,0.050821297,-0.08707635,-0.08278109,-0.16705711,-0.335463,-0.20347843,0.25730827,0.02074637,0.371458,-0.09134163,0.3327932,0.38236737,-0.28761992,0.02525219,0.039284077,-0.027313564,0.083467014,-0.24788018,-0.09421761,0.3669301,-0.56874144,0.23934783,-0.29878882,0.6621459,-0.092020445,-0.6450018,0.30517343,-0.33232307,0.0041992166,0.07082748,0.584434,0.51100934,0.46956566,-0.15151678,0.85277325,-0.37261432,0.0018793835,-0.11368458,-0.08743326,-0.12423082,-0.16029692,-0.027148928,-0.48141828,0.15816288,-0.024070919,0.10405094,-0.21399236,0.14532366,-0.5643319,-0.23011588,0.30169934,0.7378339,-0.24592996,0.07696312,0.72382516,1.1007978,0.98428667,0.022459146,1.012087,-0.076391995,-0.2799634,-0.09743452,-0.05652135,-0.5509473,0.18139507,0.41073474,0.716526,0.20373347,0.11358235,-0.08812516,0.2756808,-0.5162805,-0.17496654,-0.35926682,0.24782059,0.07710572,0.026092228,-0.37146768,-0.0534966,0.047111697,0.09691287,0.15932007,0.14166866,-0.44349527,0.19336574,0.06434439,1.3289312,-0.31875578,0.12004024,0.1557939,0.3325824,0.021719748,-0.12898953,0.1215258,0.32402086,0.4126537,0.14391597,-0.4347305,0.122026205,-0.32044855,-0.44321457,-0.09409245,-0.29172674,-0.2460021,-0.03887636,-0.47946027,-0.3248429,-0.023941278,-0.40728372,0.37404567,-2.8302367,-0.109058216,-0.2841081,0.23561628,-0.27340135,-0.36352983,0.0032073047,-0.50604624,0.5482279,0.350144,0.32383636,-0.40155554,0.28084424,0.47805935,-0.47812486,-0.07420193,-0.50070715,-0.13832991,0.020860776,0.39291725,0.057618827,-0.13208227,-0.04554112,0.056792967,0.469492,0.028672848,0.18816675,0.33611584,0.3516226,-0.06738845,0.50218296,0.04996497,0.50472873,-0.3760702,-0.07158842,0.4273024,-0.19724382,0.25309947,-0.25118804,0.16700587,0.47497758,-0.3548569,-0.5984107,-0.7803994,-0.33703724,1.2875016,-0.24133375,-0.6531445,0.19532108,-0.3072738,-0.19694436,-0.17594686,0.40886375,0.03354038,0.00036352448,-0.6007331,0.1263344,-0.15453747,0.3821017,-0.15950008,-0.0016522834,-0.57744503,0.6961945,-0.028235441,0.7635689,0.3111603,0.29558393,-0.17985483,-0.27549985,-0.07291226,0.8965796,0.5390054,-0.016907582,-0.22932829,-0.004803302,-0.1953471,-0.06665097,0.19144788,0.70069313,0.6473629,0.03390533,0.029053988,0.31597376,0.11256818,0.12347344,-0.1776624,-0.23850237,-0.31367353,-0.14265019,0.49208114,0.17444743,0.07401057,0.3657871,-0.20075662,0.17670573,-0.2603019,-0.4372192,0.29826188,0.6218103,-0.21408783,-0.15540214,0.6216812,0.6203004,-0.22759965,0.32938427,-0.7047239,-0.37617916,0.5305287,-0.22729649,-0.5901109,-0.005133229,-0.3361187,0.040382095,-0.58617336,0.26160648,-0.35681304,-0.81576115,-0.44211105,-0.29264477,-1.8470947,0.16956179,-0.1898042,-0.093485795,-0.15822324,-0.3736647,0.20507608,-0.41642475,-0.44714123,0.10859471,0.055623926,0.6529166,-0.12597622,0.03142823,-0.2197862,-0.15269925,-0.27694795,0.24665406,-0.02906766,0.07038129,-0.22505224,-0.21361254,-0.028103765,0.0669062,-0.3198773,0.012469081,-0.5168854,-0.3243011,-0.20723674,-0.27507356,-0.20807956,0.68654215,-0.22576581,0.13723196,-0.10596831,0.05392744,0.120695814,0.15043034,0.06626544,0.34296033,-0.003456352,-0.19236127,-0.08359613,-0.37535587,0.53753155,0.12924449,0.3731784,0.3700932,-0.28203943,0.24035719,0.30481228,0.49922228,0.0040119207,0.9112266,0.2502387,-0.21566632,0.38193926,-0.13293378,-0.21024255,-0.65180075,-0.14552762,0.21216333,-0.42499426,-0.44750902,0.23366912,-0.2530803,-0.7898793,0.5016587,0.10000972,0.29912207,-0.09821986,0.3288626,0.34085098,-0.36489055,-0.00051122904,-0.07866453,0.011946963,-0.43690416,-0.50877464,-0.58655703,-0.4049559,-0.17940095,0.96372044,-0.3112441,-0.016039042,0.26307243,-0.121426806,0.2862853,0.08031506,0.14368305,0.025515398,0.37091964,0.0860707,-0.65759385,0.55907536,-0.11958325,0.043571718,-0.41067314,0.4684372,0.53654134,-0.56114364,0.1740284,0.21404004,0.10310999,-0.49815232,-0.6002378,-0.024000833,-0.13869835,-0.30661038,0.3630834,0.08467746,-0.68880135,0.28023976,0.18382256,0.05214978,-0.6972002,0.46022397,0.03830157,-0.15580858,0.12856843,0.31487268,0.19258933,-0.054050658,-0.031300236,0.18816186,-0.4866946,0.41182116,0.16372585,0.00022099273,0.5012332,-0.19848163,-0.39565444,-0.58235747,0.1446367,-0.5839639,-0.2766319,0.33172584,-0.023984393,-0.09955346,0.59802806,0.10171865,0.5071346,-0.17024468,0.20522235,-0.006624644,-0.2804161,0.49187544,0.31520918,0.41791898,-0.4546998,0.51012313,0.0142409885,-0.07940512,0.0051313853,0.1779463,0.48269272,0.10461482,0.42598447,-0.2380532,-0.012061334,0.17947778,0.9142457,0.16924135,0.23863442,-0.07392544,-0.12169148,0.23435004,-0.07459366,0.23904587,-0.0317235,-0.79746336,0.036797054,-0.07404983,-0.03997228,0.39103884,0.1421022,0.20067246,-0.09142069,-0.033595417,-0.041407205,0.0059600896,-0.06281936,-1.1526123,0.32061052,0.13147643,0.9557758,0.29518658,0.04549346,-0.053261578,0.56559396,-0.19127516,0.122216165,0.19527595,-0.022276146,-0.19320825,0.4659454,-0.5401966,0.32978612,0.061662424,-0.09290082,0.13107291,-0.10829973,0.35083437,0.7869572,-0.28255743,-0.084651746,-0.15564044,-0.3066798,0.17794192,-0.26783496,0.289864,-0.49754325,-0.38601765,0.5202028,0.41976005,0.3609459,-0.1326145,0.016011545,0.09966334,-0.19880772,0.27998605,-0.031104283,0.052771725,-0.11028481,-0.29533443,-0.045469724,0.43132845,-0.2321666,0.035170574,-0.08705177,-0.27987558,0.1187192,0.16558564,-0.023954209,0.048095576,-0.7334911,0.32587066,-0.19951597,-0.26443097,0.28153983,-0.2113191,0.09513936,0.07865308,-0.028670518,-0.11420329,0.22639577,0.21318659,0.5110319,0.0406175,-0.008406528,-0.60130703,0.0843019,-0.08691069,-0.2023875,0.21530756,-0.055693183,0.17479645,-0.64234257,0.3098844,-0.15673327,-0.2745376,0.23953056,-0.20145763,-0.016330734,0.42064252,0.07574218,0.031989705,0.062881395,-0.21123222,-0.2527555,-0.16530772,-0.1366533,0.14343716,-0.005978855,0.03292845,-0.13336007,-0.18283142,-0.17318203,0.27624053,0.26896128,0.2891747,0.1253651,-0.093717635,-0.5971255,0.1316684,0.05103162,0.44356918,-0.26017237,0.015699944,-0.012122785,-0.40867382,-0.39167842,0.44502625,-0.092688836,0.37310615,0.07827906,-0.14932404,0.8092105,0.099891864,1.1928848,-0.10039253,-0.42530414,-0.18134348,0.6470726,0.010940467,-0.036289267,-0.30161676,0.8750542,0.5236119,0.054198246,-0.08409185,-0.21478668,-0.0117164,0.18898189,-0.19754133,-0.028392341,-0.091535866,-0.63370603,-0.2985157,0.1151913,0.24460462,0.023610856,-0.09580984,-0.13312724,0.25419152,-0.023514763,0.30498633,-0.4287935,-0.09119392,0.2314599,0.09459227,-0.027411034,0.21797027,-0.42182437,0.27650607,-0.6576363,0.113894515,-0.026561435,0.05952559,-0.091965795,-0.09697242,0.17615478,-0.11908823,0.38610086,-0.21593383,-0.41447887,-0.062026374,0.28143817,0.1864051,0.17171207,0.6058281,-0.21330966,0.14614865,-0.101574115,0.38487062,0.99793303,-0.073712185,0.06609257,0.13579126,-0.47321182,-0.562116,0.12623715,-0.24011748,0.13395841,0.08466125,-0.20835122,-0.13287722,0.24425714,0.30636707,-0.09026696,0.08997451,-0.8477666,-0.1200287,0.037482075,-0.3513871,-0.19038437,-0.3624929,0.25062642,0.5459742,-0.12805362,-0.35606068,-0.014964961,0.4126298,-0.25125003,-0.718886,0.14004637,-0.4731155,0.18477334,-0.1118841,-0.41193908,-0.29067364,0.09710407,-0.47919878,0.06110862,0.121763825,-0.34190375,-0.124932356,-0.20990051,0.093296945,0.71842766,0.056218024,-0.016668703,-0.2771408,-0.47227806,-0.7546398,-0.4483294,-0.0036519233,0.2932088,-0.09017519,-0.4911093,-0.14548661,-0.4033362,0.056785088,-0.14923702,-0.25348768,0.37597114,0.20151663,0.36566767,-0.24463908,-1.0451344,0.18884012,0.13174547,-0.05910366,-0.29378623,0.32791477,0.11328191,0.6376712,0.15219712,-0.027116682,0.10694678,-0.5744621,0.2639939,-0.20515724,-0.01758129,-0.75566965,0.08970086,16 -336,0.49253038,-0.16972096,-0.5960495,-0.07489516,-0.1556792,-0.07462828,-0.19572523,0.11783446,0.31340268,-0.24126188,-0.2840167,-0.10911455,0.17723492,0.43294504,-0.07303596,-0.7499197,-0.14997058,0.08250829,-0.63047355,0.41397768,-0.5055087,0.27921948,0.17155372,0.3258745,-0.08039764,0.32995746,0.365078,-0.24561715,-0.1583617,-0.031623524,-0.09463649,0.2849043,-0.7631375,-0.06765951,-0.22272184,-0.24500637,0.003871773,-0.5493052,-0.25861087,-0.8206218,0.1709287,-0.94407475,0.55664444,0.09883787,-0.00047209646,0.06288817,0.2113364,0.18063717,-0.4351764,-0.014267357,0.15697126,-0.20999844,-0.25430393,-0.26716632,0.0067550326,-0.46309325,-0.49022698,0.04159059,-0.6184891,-0.21580303,-0.16603932,0.016920881,-0.33694598,-0.006286059,-0.21939568,0.27408618,-0.4004261,-0.13841905,0.543898,-0.18937972,0.36019215,-0.5815468,0.022790814,-0.07185344,0.515149,-0.11192808,-0.21610959,0.2745742,0.4440954,0.48009995,0.22666316,-0.29979283,-0.15549989,0.045762528,0.30454922,0.45487818,-0.07035019,-0.5224815,-0.11371891,0.25386614,0.248638,0.45169216,0.0056029386,-0.2505459,-0.028999703,0.0010443628,-0.113681994,0.42467895,0.6342862,-0.28797707,-0.40109068,0.20508845,0.61395884,0.36538687,-0.016247954,-0.11495148,-0.016039586,-0.5819634,-0.16882363,0.23455755,-0.11506621,0.53782004,-0.16094236,0.13821656,0.7365204,-0.24396196,0.02294517,-0.17069766,-0.18833026,-0.20243053,-0.18813358,-0.06330804,0.28660032,-0.527751,0.12000734,-0.27675933,0.5610699,0.28801987,-0.76829845,0.38233715,-0.5908136,0.27587566,-0.07425231,0.662131,0.733047,0.3030519,0.47263446,0.7713582,-0.38540787,0.22066459,-0.0074761934,-0.61216956,0.13584743,-0.2603481,0.09760381,-0.38545138,-0.03843521,-0.172774,0.033639822,0.10689462,0.14352128,-0.63550615,-0.04951519,0.101719655,0.71210295,-0.27448997,-0.09364348,0.6920027,1.0412453,0.8821532,0.14995153,1.3353785,0.36809096,-0.2603244,0.17516506,-0.21632075,-0.76791745,0.18081965,0.33569542,-0.4250795,0.45994785,-0.08284272,-0.09325925,0.28209606,-0.39336067,0.011272061,-0.033548538,0.28392068,0.056748264,-0.15299408,-0.49869353,-0.106572516,-0.28011853,-0.056259092,0.17389798,0.21018577,-0.09532908,0.23755524,-0.017415812,1.2578346,-0.14471309,0.06979154,0.042658336,0.36041853,0.37032205,-0.11095136,-0.059444718,0.43485817,0.43417758,0.029053982,-0.63261986,0.16912426,-0.300328,-0.34633946,-0.15750647,-0.33791938,0.018771097,0.15426017,-0.25037178,-0.06994524,-0.09070698,-0.223018,0.5111483,-2.6100218,-0.2113944,-0.088275656,0.361294,-0.3775434,-0.16389307,-0.08510469,-0.5501525,0.2447214,0.22409277,0.4857628,-0.7458307,0.40037957,0.36340243,-0.6099796,-0.2503743,-0.6863733,-0.014244122,-0.027543932,0.4159041,0.040758975,-0.19717304,0.039683666,0.17647734,0.6715961,0.11896274,0.021632893,0.44068697,0.60115,0.15987237,0.44125006,-0.08147137,0.58310986,-0.2709696,-0.11451352,0.4418592,-0.19875881,0.42643073,-0.23124962,0.12861963,0.41727582,-0.4215243,-0.9642162,-0.5043237,-0.40179357,1.1820599,-0.35319433,-0.45446354,0.02266683,-0.19221582,0.0027929246,0.018360475,0.627503,0.057873935,0.17020439,-0.7268318,0.09351083,-0.14100268,0.13294473,0.10460862,0.08081194,-0.35653517,0.6676408,-0.0723796,0.4402363,0.37396044,0.3686637,-0.058019944,-0.5397336,0.09825994,0.9134794,0.2724996,0.032981258,-0.08522467,-0.26705784,-0.06908318,-0.14350079,-0.026570728,0.5915136,0.82515866,-0.030642483,0.0026084238,0.26892346,0.10468609,0.11610822,-0.066787355,-0.22780745,-0.009869904,-0.12168191,0.47618967,0.886094,-0.38283497,0.46473816,-0.24058442,0.3183813,0.0260278,-0.4602151,0.81995755,0.8511185,-0.1896954,0.042323563,0.39428854,0.31519392,-0.49217933,0.50234044,-0.6969204,-0.2342376,0.70342463,-0.24668762,-0.3867696,0.30357623,-0.25917897,0.11265943,-0.98681253,0.39193973,-0.21384238,-0.007784975,-0.37000003,-0.01971428,-3.7167568,0.23370545,-0.24221835,0.00052416325,-0.3956788,-0.074096985,0.2717367,-0.6400073,-0.5845901,0.26524764,0.15105353,0.5691857,-0.094016075,0.2653926,-0.3173022,-0.23883487,-0.12517147,0.226204,0.27264145,0.30040446,-0.18166177,-0.28130624,-0.010838368,0.028832078,-0.3743321,0.16897996,-0.47203898,-0.49934652,-0.19349764,-0.52021325,-0.13073178,0.62541664,-0.36119694,-0.05357639,-0.11989103,0.16835307,-0.2699936,0.20499031,0.05470591,0.32466236,0.10144089,-0.04211023,0.15893354,-0.30860576,0.5243741,0.049835954,0.376046,0.115792416,-0.03830498,0.18890503,0.41778058,0.7262215,-0.17286769,0.9074725,0.4523031,0.044573706,0.23550925,-0.34654242,-0.2784225,-0.72326756,-0.4525263,-0.10683833,-0.37163192,-0.6158119,-0.08066195,-0.34036604,-0.8454677,0.5155571,-0.06054776,0.47260216,0.052308265,0.376381,0.58864623,-0.27980354,0.068127625,-0.06581952,-0.16286151,-0.662684,-0.14959428,-0.5761204,-0.45457023,0.12950823,0.6217928,-0.2762418,0.08513789,-0.026737468,-0.16853103,0.060313217,-0.14256564,0.08614421,0.24950658,0.4550216,0.0799555,-0.64977646,0.5143457,-0.0068871165,-0.33787712,-0.6392153,0.24603201,0.58033746,-0.76239395,0.6843318,0.5116435,-0.0315736,0.1967992,-0.57616013,-0.32619673,-0.0026862642,-0.17201121,0.34231362,0.13719152,-0.74852145,0.4623972,0.42219463,-0.43766448,-0.74473464,0.43199316,-0.015218316,-0.338376,-0.036373843,0.276677,0.19170544,-0.03897931,-0.29324105,0.0919741,-0.4714458,0.16226389,0.21575907,-0.07553581,0.33368686,0.017904034,-0.3014972,-0.8179632,0.17135003,-0.5666057,-0.13514948,0.45304376,-0.0031665307,0.066914394,-0.06331489,0.16925195,0.3753578,-0.35393882,0.13797672,0.06612826,-0.39306363,0.32928365,0.503118,0.34890392,-0.48048243,0.57887775,0.11883877,-0.30128697,0.22119316,0.103448555,0.39121294,0.09534804,0.16805784,0.065265074,-0.23618643,0.21412516,0.7001633,0.024151871,0.43569332,0.1500238,-0.010877303,0.58008,0.088602625,0.20961936,0.009579122,-0.5152114,-0.07385691,0.102655604,0.1461281,0.50568354,0.4495094,0.22198008,-0.046927657,-0.134534,-0.0025762224,0.38236123,0.11918924,-0.9228524,0.36735684,0.17425565,0.80356437,0.44316006,0.030919354,-0.11848868,0.49849734,-0.21152022,0.14262573,0.41575125,-0.0956494,-0.6654971,0.6765545,-0.5714329,0.25390476,-0.18170218,-0.031283595,0.040833056,0.18922925,0.18476997,0.89854324,-0.21484646,-0.057254408,-0.1494789,-0.03577515,0.088853054,-0.46797237,-0.12212087,-0.3161199,-0.41708627,0.72379273,0.3063723,0.42856744,-0.26649705,0.022585707,0.021185394,-0.16897866,0.20990397,-0.07868494,0.119891934,0.15127787,-0.6331377,-0.29799077,0.46209773,0.09629988,0.20639467,-0.35697514,-0.23988266,0.09632911,-0.46087292,-0.1265038,-0.093912646,-0.767018,-0.07343221,-0.29701993,-0.67327434,0.49031082,-0.10531547,0.21033196,0.27235636,-0.008747603,-0.16580893,0.319728,-0.079702154,0.9726805,0.09276468,-0.33750686,-0.5174434,0.16140267,0.30625278,-0.24165212,0.08139815,-0.32645717,0.08152239,-0.38332716,0.6804229,-0.13014857,-0.43440464,-0.0031725976,-0.28170517,-0.08589206,0.6724939,-0.28888366,-0.13480417,0.19081815,-0.29998374,-0.4093757,-0.16138391,-0.23263457,0.1620239,0.35413912,-0.02413204,-0.08663169,-0.22992513,-0.25936526,0.47427052,0.11440805,0.46798983,0.3293496,0.03269647,-0.15332055,-0.18251553,0.31204686,0.318664,0.22236733,-0.16658743,-0.52343154,-0.60851675,-0.38944206,0.024263365,-0.035981886,0.16305898,0.11014564,-0.20616539,0.7422949,0.070786364,1.1284145,0.09542946,-0.26731217,-0.013808795,0.45379168,-0.057128463,-0.09296537,-0.5032955,0.86186,0.56160516,-0.06597159,0.052053485,-0.36260816,-0.1676627,0.35370278,-0.3658994,0.0936022,0.0757403,-0.57149637,-0.465077,0.19085442,0.23502465,0.019956188,-0.080113694,0.07130364,-0.019573927,0.11917887,0.3902135,-0.66193587,-0.4350075,0.29862124,0.17106213,-0.13068779,0.06874844,-0.33721343,0.4828669,-0.48078585,-0.01562242,-0.49715975,0.10486446,-0.13589749,-0.30881357,0.1591943,0.047161132,0.39504054,-0.42999068,-0.39988178,-0.12591729,0.3292666,0.102830954,0.13305183,0.57815,-0.28345293,0.019395564,0.1843495,0.7438255,1.2713159,-0.43597388,0.055465367,0.33738247,-0.3791303,-0.5576811,0.4595633,-0.3698573,0.017501265,-0.32084867,-0.45302194,-0.62336147,0.22228377,0.1911445,0.058265563,0.1577367,-0.6437971,-0.25283742,0.2645703,-0.48607048,-0.20505682,-0.2801766,0.4409721,0.91938627,-0.41489717,-0.276299,0.08624612,0.12267412,-0.058274705,-0.47243088,-0.09358377,-0.19564463,0.2209497,0.22563004,-0.2611209,0.01689929,0.16380027,-0.50728756,0.20896003,0.12498748,-0.34274715,0.0615325,-0.09361004,-0.11588214,0.8688094,-0.30059996,-0.17381072,-0.64781684,-0.50954944,-0.9911994,-0.5442143,0.22400095,0.029849734,0.22029757,-0.41025558,0.16625288,-0.04611981,-0.10524634,-0.026339918,-0.55998,0.3215806,0.114374585,0.6124913,-0.24254291,-0.8205843,0.03438466,0.16732796,-0.16285524,-0.6541515,0.55350006,-0.07224131,0.85867697,0.03912809,-0.12494596,0.14871527,-0.48725557,-0.06562923,-0.3873143,-0.13135086,-0.8687913,0.07946745,21 -337,0.29131007,-0.21512082,-0.5725359,-0.15163204,-0.027232977,0.15923594,-0.21887194,0.20112197,0.033616878,-0.60983866,-0.024663601,-0.23103304,0.1326638,0.30406013,-0.06732305,-0.43337297,0.16992232,0.101699114,-0.586698,0.38791737,-0.42363247,0.26183435,0.12684889,0.18987608,-0.051132876,0.23791811,0.26366642,-0.19542177,-0.24006774,-0.16411869,-0.07989009,0.057877295,-0.5226545,0.0434767,-0.1963081,-0.25571436,0.043831524,-0.5224975,-0.41517848,-0.69537765,0.12522073,-0.7346826,0.46906948,0.19283088,-0.20588587,0.13559304,0.007388166,0.3892133,-0.123707935,0.25928122,0.28434035,-0.24320719,-0.05485732,-0.17104626,-0.45649752,-0.3869464,-0.5930281,-0.0032752412,-0.50448596,-0.18415453,-0.02548016,-0.006315925,-0.26774755,-0.051983375,-0.14428475,0.26018023,-0.36911228,-0.28778037,0.33040622,-0.08464081,0.57074565,-0.4770288,-0.19879344,-0.10549467,0.38744804,-0.38614607,-0.16114971,0.251896,0.4641593,0.57291275,-0.108175956,-0.09567867,-0.24801339,0.07609891,0.40664005,0.6133999,-0.20343985,-0.20737909,-0.06781238,-0.08276187,0.14721425,0.2360126,0.13131735,-0.44594568,-0.14046314,-0.031630587,-0.14047047,0.043063443,0.4342548,-0.20822416,-0.11533417,0.28531665,0.5242271,0.07105052,0.0032390314,0.07206285,0.001413473,-0.5231027,-0.20808871,0.4688172,-0.23576662,0.5255357,-0.05117471,0.16377462,0.5400394,-0.074151956,0.039954126,-0.02585512,-0.10466944,0.004050008,-0.06892211,-0.2557648,0.21887828,-0.49075207,0.10212143,-0.27914688,0.6469664,0.2837161,-0.9833268,0.3701052,-0.4099796,0.13082628,0.030148562,0.57128066,0.6165191,0.3840819,0.1007669,0.6619279,-0.70381695,0.2064519,-0.081009425,-0.3389834,0.09927455,-0.07075667,-0.036791276,-0.6047468,-0.23289105,0.028793769,-0.1645033,0.13541028,0.26306686,-0.38181928,0.050799314,0.19947553,0.733895,-0.30543151,0.09352072,0.5766307,1.0375214,0.83702594,0.24168447,1.3168577,0.22035062,-0.30522582,0.13969137,-0.28768352,-0.79232186,0.26344505,0.4491612,-0.31625715,0.38317207,0.049370952,0.10911749,0.27566957,-0.38714293,0.11824596,-0.09597127,0.07245497,-0.19254376,-0.34855253,-0.25776547,-0.26929477,-0.13055293,-0.036038365,-0.09755975,0.1171297,-0.13028052,0.44312456,0.17332672,1.5895269,-0.26434493,0.108810626,0.013409346,0.22676659,0.14548512,-0.18396132,-0.21001045,0.2674525,0.38212064,-0.049675547,-0.47147068,0.07284402,-0.09064127,-0.34660706,-0.23773777,-0.10012347,0.15531075,-0.064720534,-0.35165638,-0.071919486,0.017510245,-0.48038,0.5726829,-2.698784,-0.04868916,-0.17457989,0.3072627,-0.3005611,-0.4117295,-0.18092255,-0.36443976,0.56014615,0.35777277,0.313031,-0.6596206,0.23303832,0.30454877,-0.35278028,-0.117582254,-0.66983616,-0.08464199,-0.06217709,0.13753597,0.09050308,-0.16807568,0.03870857,0.2315894,0.27160698,-0.25728178,0.09219786,0.20733516,0.26629514,0.31640694,0.38133714,0.047054905,0.62588733,-0.21317005,-0.22620836,0.2934871,-0.3634696,0.26070395,0.08670628,0.15406778,0.3391838,-0.44730344,-0.6299409,-0.74746627,-0.643551,0.97713745,-0.18545581,-0.23903862,0.29329437,-0.038891222,-0.46235064,-0.10561466,0.45093852,-0.17301962,0.057348114,-0.90719384,-0.22856402,-0.011068001,0.23033024,-0.055228025,-0.007526372,-0.51698405,0.62063164,-0.12204639,0.4586568,0.39961383,0.117111936,-0.11745872,-0.43898082,0.041013148,1.1732818,0.31589285,0.1818004,-0.12725113,-0.20811962,-0.3625109,-0.16882779,0.0856633,0.31855273,0.86772025,-0.15215956,-0.0686685,0.19307634,0.05459941,0.06074477,-0.13869998,-0.35180134,0.020039946,0.0057805693,0.54266405,0.37919027,-0.11537952,0.31498814,-0.1407014,0.25601953,-0.1079881,-0.39223334,0.4722238,0.9406509,-0.06295136,-0.16595681,0.42281502,0.39385104,-0.29820147,0.42532563,-0.54682714,-0.3035273,0.36662412,-0.09770187,-0.39220074,0.2817363,-0.39183447,0.3449483,-1.0304967,0.4024822,-0.47282034,-0.28958994,-0.49335235,-0.07081627,-3.0776672,0.093202315,-0.15045728,-0.2811508,0.105678424,0.026669042,0.27393577,-0.55018,-0.59508944,0.12396811,-0.017162824,0.6467244,0.030962829,0.0427211,-0.25590393,-0.15015353,-0.43632588,0.18782316,0.20756963,0.18214022,0.044158988,-0.3156273,-0.06605579,-0.33835366,-0.3657227,0.026580598,-0.6677943,-0.43030962,-0.4064202,-0.41085306,-0.47801003,0.6060151,-0.45302233,-0.053298358,-0.1669608,-0.009334244,-0.17488196,0.43465716,0.2426631,0.31336397,-0.030196896,-0.08271207,-0.22778787,-0.26776394,0.15171352,0.1888688,0.08663607,0.4713659,-0.20292799,0.16557476,0.29755026,0.8019829,-0.19974642,0.49046227,0.5813594,-0.16394292,0.2719383,-0.36200616,-0.09620051,-0.49258777,-0.42144457,-0.11074356,-0.2917544,-0.65390664,-0.21884982,-0.38686696,-0.7383041,0.31099775,0.043695636,-0.02442059,0.09189786,0.19015901,0.24988492,-0.207032,0.025340637,-0.090046726,-0.09984876,-0.40344232,-0.2865863,-0.62247914,-0.5997343,0.1627338,0.96153057,0.026752995,-0.019392302,0.21603906,-0.17653587,0.12899812,0.12367393,-0.04253826,0.18239887,0.35266623,0.15890782,-0.5539065,0.46022484,0.09319278,-0.27780437,-0.60693234,0.14194238,0.600697,-0.6139446,0.6620881,0.36349177,0.033215918,0.01256881,-0.4901576,-0.21639405,-0.0004525355,-0.29757124,0.3216085,0.046222057,-0.5746419,0.38989535,0.38134,-0.24841152,-0.6305437,0.4058098,0.16425829,-0.17917821,0.19102395,0.38776568,-0.21966071,-0.037828974,-0.13808589,0.2679145,-0.48549768,0.22444497,0.60478413,0.04188289,0.13087355,-0.15602186,-0.16897629,-0.64873505,0.10783814,-0.4902269,-0.19863984,0.3284348,0.11072836,0.07134609,0.117121145,0.15578778,0.45401597,-0.31999347,0.22176398,-0.015115485,-0.24122646,0.2325988,0.33893475,0.23694675,-0.36287627,0.52071637,-0.12301683,-0.14259246,-0.3270549,0.012960915,0.6033087,0.33141088,0.12681624,-0.048928805,-0.28827974,0.28424782,0.74769306,0.17659566,0.305597,0.14378573,-0.035543256,0.15392895,0.12060239,0.09951569,0.10084695,-0.378756,-0.03703379,0.065186374,0.17269155,0.26717743,0.06077073,0.35060793,-0.17336228,-0.24987973,0.019367056,0.18962823,-0.020025095,-1.0115567,0.4613774,0.105486594,0.5722677,0.56671035,-0.00837312,0.11156445,0.39983112,-0.37438157,0.15198374,0.15910986,-0.25451842,-0.5327343,0.38564175,-0.61181885,0.29218993,0.08319887,0.03523946,-0.0012963371,-0.0950168,0.39499897,0.853502,-0.22386004,0.16177824,-0.17495047,-0.078277126,0.16425623,-0.42175156,0.021243999,-0.33368567,-0.41697735,0.7160301,0.2894983,0.43787208,-0.11284928,-0.029302862,0.16661759,-0.09885388,0.23169544,-0.039935265,0.17973658,0.05537021,-0.46314272,-0.2466103,0.5186096,-0.08309943,0.0020000297,0.17937489,-0.2944878,0.19880593,-0.13974033,0.109099016,-0.15663637,-0.6782557,0.094435,-0.48146445,-0.1605121,0.33985776,-0.1149841,0.30318007,0.20382066,0.152757,-0.20000675,0.59538025,0.21366735,0.7916374,0.040785793,-0.1572164,-0.21114771,0.31685108,0.26196438,-0.14868796,0.1310027,-0.21683703,0.038513083,-0.65877575,0.4857102,0.044908535,-0.21519719,0.1914467,-0.14979675,-0.035423644,0.58307976,-0.3709207,-0.11683494,0.10538059,-0.012295784,-0.17009263,-0.1597366,-0.2363878,0.2338203,0.19757119,0.06408841,-0.042485457,0.13922589,-0.07304727,0.3567801,0.20102295,0.38635287,0.3841063,0.09144179,-0.52184623,-0.048868384,0.086064056,0.3999412,0.15747866,-0.0685995,-0.25222358,-0.40064678,-0.29289976,0.047503505,-0.25047207,0.2865491,0.062715635,-0.21179911,0.64831954,0.13934702,1.1694745,0.018220663,-0.35801145,-0.11976539,0.41609496,-0.07476408,-0.083866276,-0.39320678,0.8718928,0.6338674,0.0059928596,0.06820194,-0.13811858,-0.21763363,0.13194628,-0.04317325,0.018189413,0.053933356,-0.6742162,-0.45117992,0.22790487,0.16182603,0.05958566,-0.09070511,0.07146601,0.1835544,0.0035609582,0.18150887,-0.46300474,-0.119038865,0.35817042,0.11854325,0.04780111,0.2325799,-0.40878457,0.35256514,-0.55499953,-7.257717e-05,-0.19571106,0.070803806,0.089412555,-0.29036322,0.17267916,-0.03514717,0.23389919,-0.29703587,-0.1745453,-0.05067681,0.66238296,0.16915934,0.35401177,0.7949602,-0.19952528,0.2402605,0.046755787,0.447882,1.0711596,-0.2669212,0.06186823,0.38060278,-0.21840413,-0.5593452,0.26245612,-0.30097562,0.197098,-0.20992719,-0.44203267,-0.41803822,0.26472768,0.17936563,-0.01683529,0.07837621,-0.44977078,-0.17369692,0.3428324,-0.4503205,-0.3588803,-0.33224416,0.25949886,0.6423017,-0.2937041,-0.30240855,0.2490131,0.11637233,-0.4429976,-0.3323094,-0.003495408,-0.14082232,0.17801584,0.22730747,-0.34547213,0.031646438,0.058805842,-0.2625894,0.12575646,0.17490593,-0.38730797,0.019492017,-0.20905267,-0.11023019,0.7914476,-0.26857314,-0.10820718,-0.56879574,-0.5198088,-0.71227294,-0.395605,0.5980937,0.03927883,-0.02626239,-0.4930999,-0.008063857,0.027268235,0.14654562,-0.062016908,-0.20507479,0.4444749,0.107795276,0.42619377,-0.24986376,-0.5824348,0.10977312,0.13559708,-0.14947526,-0.5626962,0.46461496,0.084954664,0.7701383,-0.01172332,0.020087805,0.37694058,-0.52697027,0.12506679,-0.2985008,-0.05235077,-0.699772,0.06524434,23 -338,0.6006928,-0.10688633,-0.49413982,-0.06441079,-0.2945624,0.23441546,-0.07499377,0.28999996,0.15501894,-0.43251368,-0.081774354,-0.45338133,0.07418711,0.36142144,-0.11166052,-0.7536372,0.07599913,0.0011825593,-0.444402,0.29084983,-0.63772386,0.5179695,0.16554287,0.3566663,0.025081413,0.32188708,0.4146717,-0.14041202,-0.32087135,-0.03074945,-0.24004248,-0.012706531,-0.6421525,0.16519149,-0.09945739,-0.34491467,0.19587454,-0.29967874,-0.32430577,-0.65329593,0.3294694,-0.90428257,0.54820544,-0.11558525,-0.3484826,0.14694177,-0.0052029747,0.20319669,-0.255848,0.221103,0.21439679,-0.19143997,0.17848735,-0.2498167,-0.38367516,-0.81618446,-0.52388316,0.089355685,-0.5869852,-0.3002959,-0.20958737,0.13558571,-0.29581514,0.07253994,-0.2571884,0.20091756,-0.39902538,-0.07161212,0.28828502,-0.20783755,0.27687374,-0.47189403,-0.2728022,-0.15162088,0.11615318,-0.031227171,-0.11398705,0.23153333,0.39818463,0.57821476,0.022366693,-0.1272694,-0.3307299,0.066077836,0.0904338,0.5266958,-0.090655975,-0.23578055,-0.27665013,-0.025320102,0.06713048,0.23206258,0.15965824,-0.27546674,0.061942883,0.13165227,-0.16853735,0.25188166,0.44468045,-0.4729219,-0.34927347,0.31871754,0.42123017,-0.004200446,-0.125487,0.1896862,-0.052557807,-0.39450374,-0.22506222,0.10213431,0.038832102,0.69498813,-0.23461042,0.28719667,0.8836273,-0.15312505,0.09019459,-0.26758868,-0.09658863,-0.18391813,-0.20024745,-0.024651978,0.16077396,-0.5030282,-0.12475014,-0.24545029,0.68647194,0.27441138,-0.73432785,0.53136504,-0.41952613,0.078395806,0.017163265,0.5310008,0.6038702,0.28276962,-0.03189529,0.82426065,-0.69061035,0.037281815,0.019663854,-0.5006337,0.16170362,-0.15836655,0.011091626,-0.4478652,0.016609043,0.35902682,-0.08262955,-0.102249615,0.5083223,-0.43159994,0.05451485,0.009801371,0.7443829,-0.45299658,-0.039199267,0.69291633,1.0230974,0.93979305,0.04366644,1.4686047,0.3801988,-0.2715945,0.2550426,-0.32173678,-0.4899893,0.13860722,0.35663518,0.06445738,0.5150198,0.20298174,0.063416526,0.3613663,-0.03294858,0.18117552,0.019543082,0.10386232,-0.09164281,-0.20596576,-0.5265542,-0.22363193,0.08608309,0.07203746,-0.025351439,0.21320646,-0.07692466,0.43142954,0.04702591,1.6320819,0.021734532,0.1364189,-0.025437614,0.43305963,0.24961351,-0.119973324,0.03914719,0.3060997,0.25772378,0.20343426,-0.44062838,0.040909015,-0.34271878,-0.670788,-0.19818117,-0.3717751,-0.07878236,-0.3037128,-0.44902828,-0.119261675,0.14976296,-0.26172093,0.35031253,-2.4059575,-0.24781418,-0.19305588,0.27042264,-0.25850406,-0.3598462,-0.15349343,-0.4226834,0.23829386,0.555472,0.30440548,-0.6397658,0.32650405,0.42332092,-0.25248918,-0.12596463,-0.5753387,0.10080033,-0.09730746,0.52283037,-0.10307374,-0.29117158,-0.16229096,0.19791731,0.5911671,-0.07074937,0.029045863,0.051700424,0.56853646,0.10534304,0.49198195,0.21443565,0.5830361,-0.13726558,-0.027040413,0.45099968,-0.43579182,0.3790421,0.19118237,0.31082115,0.39597702,-0.47671032,-0.7733465,-0.62054175,-0.44294786,0.98146206,-0.24391924,-0.2539113,0.24177636,0.1384701,-0.31729418,0.006091501,0.34863234,-0.016410617,0.16404614,-0.69865125,-0.044793207,-0.0091720475,0.10890127,-0.068491675,0.15432368,-0.32806876,0.84437543,-0.084585674,0.33667263,0.33621174,0.14872313,-0.1645688,-0.4373564,0.06477077,0.95180935,0.3659865,0.16422436,-0.09416355,-0.16981871,-0.27923837,-0.19994502,0.15802662,0.3996969,0.91016906,0.07704631,0.06120686,0.2177564,-0.047386955,-0.000105016996,-0.049376708,-0.25141332,0.12403696,0.047732983,0.5455161,0.5990757,-0.32711536,0.57530296,-0.2726638,0.38551715,-0.25924832,-0.48589203,0.5045668,0.826435,-0.13701849,-0.15479292,0.43820468,0.34961602,-0.5911363,0.408305,-0.67115974,-0.32669702,0.5824762,-0.0548835,-0.4048303,0.23474261,-0.3329951,0.08600301,-1.0271772,0.35276487,0.077532835,-0.4609875,-0.5610291,-0.40432927,-4.1246705,0.2703495,-0.14269552,-0.0680794,0.019121503,-0.091437526,0.4091352,-0.63010776,-0.48075143,0.021647532,0.013825849,0.46166798,0.028751865,0.304882,-0.32123303,-0.23593284,-0.30224958,0.28580198,0.085752174,0.19836392,-0.02115637,-0.4712453,0.08438688,-0.42580646,-0.46904278,-0.05010116,-0.63487667,-0.6722849,-0.23773922,-0.45917624,-0.33896974,0.78195524,-0.28552586,-0.0013313422,-0.20256522,-0.10260092,-0.33591548,0.45201278,0.20700522,0.010908501,0.013826191,0.07922374,-0.16530713,-0.42869553,0.08727193,0.133198,0.4529598,0.5254869,-0.2883322,0.11863935,0.5245459,0.63460255,0.07172942,0.6094863,0.02503115,-0.12136246,0.54059595,-0.26256764,-0.15094145,-0.8923129,-0.45611617,-0.2795362,-0.46454543,-0.67501587,-0.17228372,-0.44664547,-0.6639053,0.38937193,-0.011159931,0.21346429,-0.1225301,0.33621305,0.3638453,-0.25459695,0.027441934,-0.13799122,-0.20675816,-0.56917673,-0.6061548,-0.71527374,-0.7184211,0.27873355,1.045796,0.14293922,-0.24383494,-0.021313688,-0.21181181,0.03997113,0.03396118,0.21457945,0.054972004,0.21182741,-0.18006866,-0.80496204,0.56448233,-0.1533042,-0.08515438,-0.49469835,-0.16623004,0.73662347,-0.67119884,0.48063496,0.38970646,0.32166514,0.21992,-0.3936875,-0.256219,0.06829495,-0.3106053,0.60545814,0.110839896,-0.5749394,0.40883902,0.29162937,-0.18398547,-0.5372733,0.5374187,0.018655747,-0.14791791,-0.032980423,0.28607056,0.08738078,6.75789e-05,-0.21324894,0.21139245,-0.70897704,0.11317098,0.599266,0.20798732,0.47680953,0.064144276,-0.22059014,-0.7145678,-0.10327201,-0.30089423,-0.27577248,0.073959045,0.114038095,0.081774995,0.18465273,0.12675597,0.41558543,-0.31956932,0.1483845,-0.03135899,-0.2204094,0.30464193,0.43746594,0.24111702,-0.56324947,0.51355237,0.025010195,-0.00048179287,0.008112745,-0.070702784,0.40945253,0.4590457,0.26128218,0.1351373,-0.18648104,0.268766,0.8487711,0.23471001,0.5942424,0.36526388,-0.35763255,0.32085112,0.2613184,0.16742636,0.043285284,-0.33405206,-0.0578238,0.13464276,0.14404763,0.37106514,0.006159625,0.22204264,-0.14101999,-0.052662116,0.29728666,0.2531406,-0.05037439,-0.7785197,0.15709604,0.34784827,0.55381215,0.46545115,-0.0501476,0.016198397,0.30153367,-0.3640799,-0.0044020116,0.32592422,0.0047573745,-0.60852915,0.61241245,-0.5079355,0.28935385,-0.2595999,-0.085712746,0.075257145,0.13403033,0.381243,0.9763192,-0.092093,0.111764774,-0.029221764,-0.22070177,0.050676007,-0.36787072,0.19032525,-0.31926784,-0.15190646,0.71175236,0.4169676,0.19513796,-0.26824397,-0.0875288,-0.10228548,-0.19570288,0.21899302,-0.050325412,0.02776211,-0.079481244,-0.7414235,-0.41717646,0.51341057,0.09745181,0.08739101,0.120162725,-0.56235397,0.28337446,-0.11674092,-0.022633774,0.10247086,-0.69303674,-0.006231887,-0.29170135,-0.746191,0.46117878,-0.037358005,0.27225068,0.20569253,0.056840513,-0.31894502,0.07732073,0.15462759,0.7523497,0.118064865,-0.21500123,-0.3332835,0.08337886,0.37893677,-0.41075334,-0.13566348,-0.2841982,0.25491706,-0.5260012,0.5534271,-0.018343465,-0.19192187,-0.052622862,-0.09465032,-0.0039540743,0.38201657,-0.30945402,-0.20192309,0.07442601,0.22828959,-0.18192804,0.037938815,-0.40327936,0.2526668,-0.07681892,-0.21099462,0.113866374,-0.017918918,0.07582295,0.35976407,0.17752664,0.1283574,0.36080816,-0.09332293,-0.5738565,-0.02577568,-0.067412145,0.40150753,0.13718398,0.0182227,-0.19785751,-0.48970526,-0.31420583,0.29128674,-0.10812374,0.06794979,0.2097074,-0.49230507,0.8347894,0.1563326,1.3359861,-0.0043760412,-0.3595415,0.010013374,0.52335155,-0.023577392,0.04733525,-0.5014896,1.111799,0.73496526,-0.26971865,-0.28771666,-0.25297302,-0.3001716,0.29070514,-0.3739784,-0.21293034,-0.1474093,-0.87252873,-0.15369532,0.106773816,0.27148834,0.0821531,0.094385706,0.19515644,0.094957605,0.081167884,0.5274069,-0.5070572,-0.3660093,0.30957475,0.24706706,-0.05299244,0.07400077,-0.36553958,0.5613612,-0.67820674,0.23547387,-0.46326584,0.0008402414,-0.07905274,-0.34257698,0.17781855,0.089306906,0.28978327,-0.3388324,-0.44426018,-0.37962002,0.5623307,0.14693488,0.3655715,0.66714907,-0.22680569,-0.108647786,0.1264594,0.43993086,1.4901068,0.11463,0.01524743,0.43982127,-0.42348367,-0.7125142,0.21760818,-0.40923148,0.17579456,-0.23471282,-0.48534697,-0.44744393,0.3787591,0.19227907,-0.13117419,0.08477032,-0.40279183,-0.18935399,0.46396634,-0.39492205,-0.38923666,-0.26267532,0.34842375,0.7439321,-0.489652,-0.20433614,0.007574635,0.32951242,-0.520696,-0.5563797,0.0138520645,-0.2565636,0.6762414,0.14472191,-0.3162977,0.11682414,0.1773746,-0.36733222,0.183864,0.46850678,-0.50354934,0.10321976,-0.3790032,-0.28443798,0.94433147,0.18197997,-0.08689395,-0.77566147,-0.52479017,-1.0790188,-0.500684,0.24289453,0.14445837,0.044576194,-0.39137763,-0.08832477,-0.08532737,0.07760058,0.069234185,-0.47476482,0.38672796,0.09852003,0.6502868,0.0031604257,-0.9152109,-0.10120205,0.24372236,-0.26621392,-0.58806133,0.64473474,-0.24310233,0.63515484,0.11592587,0.15889981,0.24848118,-0.6396095,0.3294828,-0.34989622,-0.08213004,-0.7257305,0.05420339,30 -339,0.47101194,-0.12984045,-0.612298,0.049877048,-0.4224376,0.052932203,-0.14775448,0.24579516,0.33359152,-0.34713975,-0.20072137,-0.17349789,-0.23309115,0.13713342,-0.006745326,-0.2661282,-0.20437048,0.26154688,-0.565204,0.7981492,-0.12034104,0.22184119,0.017916467,0.46101812,0.48272514,0.2787254,-0.17921111,0.1030078,-0.30370268,-0.36911133,0.10940377,0.13236739,-0.4655632,0.28719926,-0.3395273,-0.27793244,-0.10835887,-0.6707857,-0.36546883,-0.7930302,0.28231376,-0.7952768,0.54575527,-0.015166367,-0.22670613,0.28733495,0.2725113,0.50017965,-0.07462959,-0.18942854,0.23362719,-0.1429155,-0.123178735,-0.08265029,-0.21505019,0.049727183,-0.55620444,-0.003770635,-0.101536274,-0.112040214,-0.24112606,0.26681736,-0.23226117,-0.021380117,-0.16362654,0.72949463,-0.47996825,0.38847956,0.1842694,-0.175267,0.11055051,-0.75585383,-0.20030467,-0.08003216,0.17945066,-0.08726978,-0.018517597,0.23582087,0.022956612,0.35658628,-0.057560198,-0.13519153,-0.4447001,-0.04527792,0.16629067,0.42666164,-0.15757108,0.089593895,-0.17950316,0.014536926,0.22467725,0.25468284,0.39724016,-0.31280828,0.014221023,-0.18372713,-0.02761442,0.26648527,0.33220538,-0.15371601,-0.1298329,0.2877731,0.6480841,0.34766364,-0.13734417,-0.15590183,-0.03618396,-0.362169,-0.05085198,0.13080284,-0.31388023,0.4625319,-0.0076829004,0.0085583795,0.36960414,-0.07713564,0.001446013,0.10055447,0.22289379,0.17027661,-0.35131058,-0.38360167,0.39708784,-0.3973774,0.23532237,-0.0346367,0.48541063,-0.044869576,-0.5202659,0.30730763,-0.5803274,0.19047582,0.05496897,0.384938,0.6087157,0.40285823,0.42399308,0.7458514,-0.29531723,0.1271393,-0.13708015,-0.12405174,-0.07860953,0.011447327,0.111721836,-0.532354,-0.06640391,-0.20102921,-0.27262586,-0.023185713,0.32601577,-0.57568437,-0.11858863,0.26586142,0.85427135,-0.16901648,-0.06773401,0.8302547,1.1448901,1.2502767,-0.011611492,1.012438,0.19585778,-0.26668182,-0.044872105,-0.3355225,-0.5509206,0.23942494,0.2503148,-0.33562157,0.22621843,0.20100005,0.025168985,0.5641356,-0.39371076,0.12351852,-0.22795847,0.05482644,0.23240876,0.0077504343,-0.46149492,-0.2602814,0.057804324,0.07850672,0.057009798,0.21907274,-0.30604506,0.115467854,0.04541381,1.7772037,-0.17969295,0.03646088,0.21531089,0.15598263,0.024309134,-0.2462778,-0.15575147,0.39160588,0.14370176,0.033010066,-0.43638155,0.05749952,-0.33454427,-0.31199536,-0.14141883,-0.20149328,-0.046480715,0.04249016,-0.3031557,-0.24404344,-0.22405782,-0.48722556,0.5205149,-2.5972083,0.01675084,-0.16451046,0.37433085,-0.39144257,-0.4758787,0.046782825,-0.3292944,0.22996128,0.24538934,0.4395143,-0.49829102,0.31550732,0.4234583,-0.8606809,-0.15215047,-0.503213,-0.15934911,0.05764442,0.1995398,-0.10407216,-0.048240032,0.048102967,0.11117671,0.34852242,0.07591987,0.11235924,0.5854678,0.38190514,-0.056232695,0.5275408,0.09558851,0.44991803,-0.21088015,-0.2968838,0.4855394,-0.37261456,0.349242,-0.05652654,0.041499022,0.48145366,-0.404521,-0.69419277,-0.5787558,-0.16160242,1.1550319,-0.19508424,-0.575777,0.12322911,-0.4028586,-0.34156278,-0.058074296,0.40591654,-0.026522292,-0.08247666,-0.91850656,-0.088386424,-0.11304806,0.2672073,0.024272455,-0.03256433,-0.57563084,0.82389927,-0.14046161,0.58099425,0.4821685,0.3074054,-0.1790211,-0.181723,0.06700646,0.8207676,0.45375314,0.020944582,-0.2749537,-0.07886578,-0.3913595,-0.15592349,0.14972866,0.419906,0.5013062,-0.16400051,0.041191068,0.20830038,-0.15449773,-0.010921882,-0.14880398,-0.3022662,-0.18355381,-0.045238633,0.5275982,0.68834877,-0.022956202,0.49617547,-0.001159106,0.3065248,0.0019838607,-0.43058687,0.21225548,0.94871587,-0.19744848,-0.43200538,0.55452365,0.54786557,-0.31722015,0.48808333,-0.45495012,-0.14130726,0.30996472,-0.10371423,-0.63090485,0.032750938,-0.38137534,0.17158297,-0.59285146,0.34627756,-0.36472774,-0.38198885,-0.55313694,-0.12140234,-1.1327454,0.35341576,-0.3288034,-0.1607995,-0.033800192,-0.08304857,-0.15428136,-0.6081019,-0.75457895,0.055050384,0.13855052,0.59590495,-0.19504848,0.063429154,-0.058964185,-0.4998307,-0.283309,0.14637382,-0.0025215617,0.42053747,-0.10871059,-0.39447597,-0.09238189,0.024769792,-0.21238327,-0.11170574,-0.75694275,-0.3484649,-0.17605188,-0.5248889,-0.19955744,0.51409686,-0.39501768,0.058004033,-0.31907782,0.022861669,0.092356004,0.1370897,0.06598562,0.29100385,0.2111678,-0.09401516,-0.03063098,-0.15787573,0.4055288,0.17461887,0.20010865,0.37025326,-0.08841901,0.24479768,0.344003,0.7817263,-0.18344262,0.80995667,0.45946127,-0.27338353,0.23893392,-0.24539039,-0.28903183,-0.6308467,-0.13919008,0.11044786,-0.39689246,-0.3876783,-0.06723706,-0.3253002,-0.82611984,0.58947754,-0.03866508,0.24045062,0.051114175,0.20116128,0.602615,-0.26397696,-0.08505731,0.031745218,-0.11852231,-0.46103683,-0.28230458,-0.5232606,-0.37932736,0.14983328,1.1229382,-0.3069022,0.13363637,0.35156327,-0.41752976,0.0081282435,0.14548601,-0.1373771,0.01494731,0.65598327,0.07782427,-0.45892826,0.21230245,0.17618808,0.0969921,-0.4844854,0.45076194,0.6741366,-0.37120277,0.70657814,0.2196766,0.14247933,-0.15259124,-0.658649,-0.18716863,0.06747981,-0.3555853,0.34998187,0.3727126,-0.50793463,0.15202749,0.22316715,-0.2174901,-0.8720131,0.47333136,-0.078208394,-0.2738809,-0.16818237,0.48196444,0.036739368,0.070294484,-0.055228945,0.24177107,-0.32329515,0.24340104,0.25906795,-0.18156125,-0.06817927,-0.3462627,-0.18086906,-0.864231,0.30627707,-0.30059186,-0.5152983,0.3818771,0.12264921,-0.15158984,0.25368887,0.44407114,0.38725454,-0.17000905,0.10016068,-0.2990966,-0.20245668,0.43916592,0.5019081,0.544967,-0.54627657,0.46916822,-0.08808445,-0.06732028,-0.1471512,-0.08522917,0.37838045,-0.12027305,0.20470843,-0.0130366,-0.15047039,0.035839222,0.3946421,0.13036661,0.35049847,-0.064458266,-0.11571678,0.10020246,-0.007847599,0.16151358,-0.3596812,-0.7000422,0.28998914,-0.16700909,0.0783213,0.34999678,0.04186042,0.19961308,-0.07729211,-0.43059593,-0.062048238,0.07966728,-0.16607061,-0.9657144,0.25778666,0.010833348,0.87151057,0.6046356,0.03600469,0.03719443,0.551627,-0.11510229,0.014481604,0.37718242,-0.065328054,-0.51451147,0.34158984,-0.63575965,0.44042438,-0.01504973,0.008830019,0.034897212,0.006944354,0.52800477,0.6313338,-0.32006767,-0.08065096,-0.22157438,-0.28974676,-0.007996516,-0.31175217,0.3468027,-0.60939616,-0.51014435,0.5732006,0.60360146,0.49895635,-0.26709694,0.06521984,0.076954536,-0.39767307,0.41260865,0.099884555,0.07780344,0.25138494,-0.600712,0.016452849,0.36479682,-0.32276806,-0.13332355,-0.01520685,-0.03863396,0.0665531,-0.16283394,0.009099648,0.030117946,-0.8369675,-0.007019094,-0.28712773,-0.31047532,0.06784348,0.07630567,0.08174503,0.05214841,0.027527815,-0.19938925,0.5720061,0.04648694,0.9622137,0.017625403,0.05706817,-0.16502981,0.35443968,-0.04670987,0.03671264,0.12569429,-0.13543303,0.19872892,-0.7091719,0.58570755,0.062085163,-0.37105784,-0.09636482,-0.1423601,-0.11823427,0.5889596,-0.20600541,-0.2121625,-0.20780401,-0.2127924,-0.13001418,-0.24349035,-0.038541835,0.12302961,0.10712288,-0.20582353,-0.20419025,-0.08336093,-0.215468,0.3821451,-0.03533861,0.44849578,0.34104252,-0.04156961,-0.6090603,-0.047043223,0.11505188,0.42072052,-0.15815076,-0.19411412,-0.21261056,-0.40165517,-0.40728608,0.5451525,-0.07218842,0.37102562,0.059361525,-0.08327688,0.90056515,0.16014782,1.3736877,-0.08240997,-0.29640964,0.06149528,0.5653969,-0.021920191,-0.10685668,-0.3702968,0.80658585,0.5205631,0.022298558,-0.0204945,-0.40503576,-0.18941103,0.17041814,-0.14779806,0.068631716,0.03471023,-0.40486726,-0.30766663,0.04891894,0.30824882,0.06650164,-0.19982664,0.09352247,0.37011766,0.016106347,0.25384417,-0.29281634,-0.37461478,0.27627143,0.2600749,-0.011816606,0.14834473,-0.4871431,0.41032162,-0.6479539,0.21863239,-0.16437767,0.16615292,-0.23933281,-0.24155259,0.21792495,-0.007650622,0.42125535,-0.55538535,-0.19261768,-0.26406017,0.39567438,0.27502897,0.03474876,0.6462735,-0.25755078,0.024274658,-0.0023527571,0.48922652,0.88530403,-0.15615681,0.029814979,0.19604433,-0.38682795,-0.52796793,0.23627909,-0.29773265,0.02762616,0.027257511,-0.2291347,-0.5869527,0.19715115,0.12763603,-0.199645,-0.17681481,-0.6692441,-0.18040118,0.33137995,-0.3464665,-0.044845056,-0.22540368,0.0066695595,0.5324019,-0.0034012794,-0.5990181,-0.060436692,0.023707883,-0.14250137,-0.38134116,0.056983147,-0.4758349,0.27440092,-0.0802238,-0.31590346,-0.34431186,0.12424577,-0.39439914,-0.1263131,0.04889064,-0.1912948,0.047335207,-0.32238072,0.03351766,0.8339033,-0.12395441,0.16707675,-0.3310769,-0.43693605,-0.8079649,-0.20476332,0.1077688,-0.11021091,-0.017548975,-0.6634332,0.0149855865,-0.45625868,-0.11651259,0.005298241,-0.28347835,0.3664779,0.24672952,0.34064072,-0.49486452,-0.8182419,0.23762633,0.11630335,-0.1414133,-0.43386826,0.3715732,0.12013261,0.7383543,0.0171572,0.036053803,0.1354463,-0.5748348,0.16425346,-0.11140002,-0.09764765,-0.53502417,-0.024128338,38 -340,0.5811227,-0.08411075,-0.5846306,-0.08817162,-0.48351565,0.2234381,-0.47091478,0.23104432,0.26361206,-0.5776421,0.18241633,-0.19601238,-0.025480857,0.23299721,-0.15667245,-0.39610004,-0.16065969,0.28628948,-0.45872444,0.5637519,-0.34104863,0.3766318,0.3682559,0.1976588,-0.13119704,0.09866396,0.11089875,-0.20091464,-0.2672312,-0.38431007,0.06622707,-0.0016729023,-0.7832717,0.37454754,-0.15088366,-0.47978354,0.18772367,-0.45849642,-0.17855693,-0.60192066,0.12387973,-0.7134856,0.7102269,0.058462795,-0.292761,0.13681646,0.035770535,0.31147408,0.0097378325,0.13237958,0.42456707,-0.4316372,-0.55983204,-0.2247615,-0.2465167,-0.52945715,-0.7815998,-0.1423479,-0.52658373,0.15959065,-0.2670045,0.38454315,-0.21348725,0.024314959,-0.074265204,0.34570557,-0.39675036,0.15094396,-0.03590225,-0.19973119,0.20834541,-0.54380643,-0.13894032,-0.14572784,0.14202721,-0.032129187,-0.20738773,0.11911235,0.15333362,0.61483425,-0.015053781,-0.2765027,-0.44834048,0.16414738,-0.19832124,0.67579347,-0.32582965,-0.19996105,-0.16870432,-0.123451635,0.46109053,-0.03686903,-0.11082784,-0.36757833,0.068296656,-0.2277235,-0.46795985,0.41254774,0.45797554,-0.57547,0.049381487,0.39698032,0.30842718,0.036241233,-0.16737427,0.027678678,-0.076978005,-0.3968512,-0.08999936,0.21447192,-0.1433564,0.3818131,0.015611148,0.34999147,0.39210632,-0.16356413,-0.24456279,0.15939876,0.020502005,0.1456827,-0.09521789,-0.318371,0.46625522,-0.6845669,-0.08620871,-0.3912876,0.82519203,-0.14133999,-0.89939827,0.4257064,-0.5340403,-0.097125545,-0.00077113084,0.5949542,0.66096836,0.8060413,0.0063787997,0.7318443,-0.36947876,0.01653853,-0.26153827,-0.16599713,0.30991346,-0.11623105,0.39275867,-0.5153019,-0.19866082,-0.024916185,-0.22812937,-0.12214763,0.8151662,-0.4386064,-0.09800279,0.261484,0.6374735,-0.2914517,-0.02850707,0.6681914,1.2497804,0.88791066,0.16310592,1.1648835,0.31511274,-0.16003653,-0.16337924,-0.16749355,-0.6919652,0.2216867,0.36341313,0.24347307,0.18539901,0.3179805,0.032686375,0.3907318,-0.1317211,-0.23718973,0.035791814,0.2071537,-0.15260006,-0.11755566,-0.34746012,-0.33424452,0.15703149,0.035804085,0.06902424,0.35281923,-0.23656127,0.28169006,0.31650236,1.5151561,-0.086988285,0.083752215,0.21794327,0.04370431,0.13021,0.06400629,-0.14692894,0.058476992,0.22914015,0.09886117,-0.35268298,0.10063387,-0.0756901,-0.50864166,-0.27249482,-0.08720426,-0.085089885,-0.25139382,-0.29699844,-0.25571457,0.08265841,-0.5899274,0.38524628,-2.4716713,-0.118087426,0.03753469,0.3801618,-0.06897292,-0.44791487,-0.12193557,-0.46909338,0.60413045,0.33994988,0.42545968,-0.44563502,0.5546735,0.37787572,-0.54825425,-0.2115535,-0.7774462,-0.12553188,-0.21568179,0.33731428,0.073064156,-0.4192166,-0.12640703,-0.12515043,0.494138,-0.17231815,0.1441534,0.3500858,0.47578675,-0.09804142,0.49484703,-0.051975224,0.44189262,-0.32370955,-0.26534012,0.35307533,-0.35361257,0.11122321,-0.18703006,0.20963791,0.36337477,-0.53471357,-0.801864,-0.5165913,-0.06325088,1.1640831,-0.19151543,-0.49870178,-0.01941264,-0.07430101,-0.2830514,0.08421921,0.42660615,-0.07280823,-0.07240329,-0.69637537,-0.101544276,-0.08650703,0.38525248,0.048004832,0.21279773,-0.52764714,0.6266222,-0.09103311,0.49905533,0.608084,0.2708703,-0.10052284,-0.2376983,0.19456284,1.0174363,0.24324778,0.14579637,-0.42757422,-0.046213515,-0.047151804,0.05487935,-0.09584594,0.42549962,0.65944165,-0.077801205,0.089203015,0.23309733,-0.26526585,0.06370037,-0.19753326,-0.5912929,-0.20679061,0.12974024,0.46173373,0.61842585,0.13565512,0.45211172,-0.008961767,0.26257452,-0.16499875,-0.36410132,0.31211188,0.7345832,-0.26517183,-0.18485777,0.6583316,0.42309684,-0.1075695,0.5398679,-0.51493436,-0.5532066,0.10723361,-0.09007762,-0.41271064,0.32878748,-0.38432756,0.05836469,-0.87429523,0.3324173,-0.30768946,-0.5887702,-0.57800865,-0.07268483,-2.816734,0.25889477,-0.12149508,0.06786771,0.21907432,-0.08775164,0.28916174,-0.47915488,-0.5127123,0.08470913,0.28200006,0.537095,-0.07805194,-0.0029995102,-0.23901343,-0.3549729,-0.2377309,0.44743136,0.29655537,0.12233966,-0.024319844,-0.42298296,0.07655619,-0.3549006,-0.011956667,-0.0450096,-0.62445897,-0.33954945,-0.08628031,-0.5593935,-0.5099233,0.7371046,-0.5395032,-0.027633611,-0.28814158,0.0641801,0.06842728,0.3029907,-0.081536576,0.089180455,-0.07010071,-0.12912746,-0.017182916,-0.25024372,0.22629526,0.10343188,0.23828371,0.6125668,0.0011947921,0.13309231,0.66602296,0.5364849,0.035453174,1.0288004,0.4263246,-0.17103328,0.19106688,-0.20391048,-0.12174188,-0.66550446,-0.105827585,-0.22550747,-0.45994133,-0.273735,0.21575542,-0.42851618,-0.721628,0.80359995,-0.01477428,-0.18833365,0.06255372,0.52326936,0.4091461,-0.13450499,-0.12411525,-0.19737312,-0.19906773,-0.33309722,-0.40639827,-0.732662,-0.42425272,-0.03851882,1.3574126,-0.09055682,0.08949132,0.2975892,0.09477185,0.021278087,0.1719186,0.08814509,0.13118707,0.45771456,0.1212813,-0.8259935,0.24707642,-0.37453824,0.0912105,-0.62869614,0.25200728,0.5804626,-0.85251236,0.22100653,0.5120749,0.28223148,0.07634057,-0.6398743,-0.18869507,0.2277231,-0.20784283,0.37942335,0.10255982,-0.75967664,0.5715334,0.19820921,-0.33054426,-0.8558693,0.29632086,0.051632743,-0.416892,-0.02613539,0.40793875,0.20698656,0.0151882935,-0.35621598,0.22168557,-0.4575964,0.39985976,-0.019326286,-0.19442545,0.20908165,-0.26155892,-0.13611706,-0.82061976,-0.093955286,-0.34651414,-0.45674995,0.29794982,0.035883926,0.120290935,0.30907127,0.30278116,0.41990978,-0.47642162,-0.058917176,-0.32205683,-0.37100902,0.4634928,0.47371227,0.43750742,-0.30777022,0.542008,-0.05087201,-0.09583996,-0.3738862,-0.07934179,0.39389873,0.010873233,0.19841845,0.015600922,-0.23466134,0.23936327,0.87414706,0.20311442,0.39242363,0.059051733,-0.17611396,0.36593717,0.03332947,0.1033992,-0.107572965,-0.51986015,-0.036609925,-0.16193059,0.12368883,0.5073019,0.07291559,0.45647022,-0.3616628,-0.038440865,0.07331922,0.034267433,0.20841901,-0.84027106,0.2919561,0.02846708,0.45683196,0.58929473,-0.042317364,0.16859093,0.62936634,-0.30627272,-0.051841445,0.27604952,-0.039487924,-0.11950655,0.5579761,-0.66833067,0.2448838,-0.089286104,0.08946766,0.20628868,-0.17632754,0.42911905,0.8702988,-0.1350505,0.14395788,-0.057546325,-0.17377517,-0.16526319,-0.2031988,0.12411375,-0.44738445,-0.21941973,1.0009338,0.25082916,0.51309305,-0.06290748,0.0062818727,0.1780578,-0.110689774,0.49816546,0.09787024,-0.07108712,-0.062249362,-0.44842842,0.030999307,0.7390581,0.1572664,-0.025100576,0.09632693,-0.20520756,0.2986016,-0.051047828,-0.14769995,-0.09349823,-0.6156501,-0.034495987,-0.5943138,-0.34953716,0.5581897,0.2233021,0.15666449,0.022821337,0.20685951,-0.13330282,0.31917286,0.3830453,0.63935727,0.22858457,-0.27527592,-0.0059384448,-0.07178978,0.11230801,-0.25196293,-0.23940587,-0.1847264,0.26253107,-0.9122119,0.29472575,-0.41548815,-0.31991595,0.21958672,-0.05447477,0.07623429,0.4726049,-0.013017123,-0.015864128,0.25340983,0.15181829,-0.2337574,-0.361696,-0.3005568,0.055883314,-0.17543332,-0.20395045,-0.17873856,-0.23490612,-0.19475737,0.2871108,0.14197436,0.21290484,0.2576645,0.258626,-0.4437658,0.05380669,0.102873825,0.6044097,-0.19072923,-0.14651854,-0.48604462,-0.3106138,-0.2439141,0.21238957,-0.027237777,0.12609053,0.031059269,-0.47979718,1.0569326,-0.06915361,1.008042,0.0452871,-0.3138698,0.07766708,0.45406774,-0.19945757,0.04591121,-0.39783546,1.0860401,0.7041481,0.06569444,-0.17623556,-0.49460474,-0.18090336,0.17356446,-0.28580338,-0.100998364,-0.012170716,-0.73876953,-0.1659724,0.16808738,0.20964508,-0.0032457155,-0.21064912,0.27029374,0.21005403,0.13802265,0.13167405,-0.4904882,0.0025895494,0.36028177,0.3304887,-0.06820123,0.27284056,-0.4104487,0.27711424,-0.66828763,0.18838933,-0.49200985,-0.08283799,0.024037179,-0.0987697,0.21375425,0.105039455,0.16186787,-0.16666238,-0.40582314,-0.025231192,0.40789747,0.18761823,0.32668668,0.757081,-0.21791315,-0.07703585,-0.15376301,0.51811093,1.1183078,-0.3677828,0.027029216,0.41728163,-0.16908273,-0.5046237,0.1534041,-0.3675585,-0.13134931,0.09780234,-0.3835557,-0.36999655,0.21751358,0.14987634,-0.18515117,0.0048238295,-0.35840103,0.05781189,0.13621213,-0.3278099,-0.21154247,0.021177325,0.2826796,0.8687011,-0.2659403,-0.31151262,-0.10701893,0.39178294,-0.3017464,-0.46180412,0.07922787,-0.47089845,0.15273319,0.39691707,-0.3453082,0.09051623,0.15534796,-0.57195586,-0.1564463,0.45761052,-0.29539818,-0.14448728,-0.48767415,0.1136113,0.8910765,0.11161227,0.21803036,-0.37472555,-0.5901775,-0.86089367,-0.21935405,0.13511232,0.17824806,0.0030181408,-0.46843788,-0.053202663,-0.22345173,-0.3588811,-0.07690204,-0.7034527,0.364811,0.11382886,0.56527257,-0.33364275,-0.9662183,0.0017671521,0.103141464,-0.31147,-0.3869706,0.3109146,-0.12444075,0.9793528,0.12057314,-0.05123239,0.21630774,-0.7147767,0.24369718,-0.4385752,-0.15410955,-0.6999898,-0.08496384,41 -341,0.40876773,-0.15474746,-0.37351674,-0.04067662,-0.21825457,0.019393597,-0.20223927,0.41422248,0.3567364,-0.35744986,-0.28213048,-0.09792084,-0.03952216,0.22951135,-0.13665847,-0.64486057,-0.0075790966,0.21896696,-0.36801916,0.5666695,-0.4645361,0.1361765,0.012995177,0.5200774,0.12891817,0.2264336,0.034795668,-0.13777846,-0.16207351,-0.27950737,-0.14983709,0.47622496,-0.62028223,0.14376345,-0.27003947,-0.29357988,0.036315616,-0.50643605,-0.39458352,-0.78336966,0.19787383,-0.91922253,0.39358664,0.05575963,-0.25073835,0.50989586,-0.067325674,0.13433035,-0.24855934,-0.18475242,0.08774092,-0.42194223,-0.20135441,-0.27579713,-0.10813464,-0.054429762,-0.66727006,0.10398177,-0.31846252,-0.015279151,-0.36655086,0.11432094,-0.41292688,-0.041932743,-0.1197692,0.41797805,-0.44158432,0.18070766,0.12993753,-0.09306786,-0.0136780655,-0.51056325,-0.2237463,-0.08207194,0.27472076,-0.097187504,-0.2779141,0.27351972,0.20889378,0.48633242,-0.05815186,-0.28880507,-0.3097631,-0.017183075,0.17633082,0.6001538,-0.19259359,-0.37605557,-0.048612546,0.04959459,0.15164737,0.07610061,0.03791928,-0.20979641,-0.2022434,0.0024896434,-0.14269538,0.35530645,0.5124232,-0.34343863,-0.22957532,0.29281193,0.5126802,0.19358835,-0.15917967,-0.04349586,-0.011471155,-0.5410176,-0.089652725,-0.004313805,-0.2984974,0.5224884,-0.19552128,0.22534278,0.54073316,-0.22513464,-0.085640095,0.112922035,0.08468865,-0.028610706,-0.22846206,-0.19480477,0.40154666,-0.41754657,0.25177732,-0.16499789,0.72563046,0.18060683,-0.7004389,0.38775396,-0.42415974,0.14937718,-0.10425961,0.7196117,0.7360405,0.50009567,0.6102487,0.6972936,-0.5139583,-0.010543262,-0.044124145,-0.42029113,-0.003910303,-0.25275162,0.007583834,-0.42163882,0.058709867,-0.025173187,-0.0882364,0.2159364,0.3418264,-0.46148446,-0.014269204,0.2425029,0.68984556,-0.20052384,-0.18663181,0.88944584,1.024355,1.0159643,0.09702889,1.0699114,0.30687883,-0.12998246,0.15308782,-0.06752894,-0.8009639,0.23133084,0.27772918,-0.14813817,0.18681076,0.24274996,-0.00884495,0.38002834,-0.5291361,-0.09948603,-0.18939571,0.079358004,0.15186858,-0.009802469,-0.4838591,-0.32197857,-0.0947713,0.017161252,0.11404206,0.39628962,-0.14093584,0.3736373,0.13003068,1.4457047,0.051483486,-0.065155685,0.10319667,0.50001645,0.12775585,-0.054089915,-0.032364327,0.28328997,0.31001925,0.019076195,-0.50773543,0.026511282,-0.12919433,-0.34334892,-0.14318612,-0.28068855,0.0065162564,0.066570595,-0.23101377,-0.23655592,-0.18331018,-0.4242042,0.5440701,-2.741384,-0.105914645,0.07380389,0.3099363,-0.16911738,-0.44808203,-0.23137988,-0.62030643,0.30782655,0.22710183,0.5025098,-0.7229719,0.26297322,0.44383088,-0.73999256,-0.19909541,-0.7031404,-0.05050497,-0.0145570785,0.3973308,0.15249261,-0.0065407073,-0.021367213,-0.0105282795,0.57379776,0.04511026,0.018030658,0.33064204,0.45584494,-0.032120787,0.44812435,0.0060191792,0.52745265,-0.21146242,-0.23233439,0.39299697,-0.36460677,0.43855405,-0.32663092,0.06923589,0.44785994,-0.34919074,-0.8282003,-0.5781058,-0.18182243,1.4305432,-0.24300684,-0.47123393,0.20563279,-0.30983162,-0.25913998,-0.05302846,0.38400692,-0.20139933,-0.22385934,-0.7256535,-0.04578959,-0.090488926,0.1752055,0.013783854,-0.024806052,-0.36846596,0.69426674,-0.060977716,0.3876516,0.26236978,0.114157595,-0.14622037,-0.3488267,0.026034802,0.7956315,0.271904,0.20638366,-0.40535858,-0.3321059,-0.13611574,-0.12631926,-0.059022266,0.7305665,0.47896576,-0.116658784,0.051250767,0.38105884,0.11140076,-0.05507288,-0.23401383,-0.22201948,-0.1880689,0.07549579,0.62883556,0.9728359,-0.18048628,0.30078393,0.012335024,0.21900313,0.08930527,-0.4366396,0.43859297,1.1729578,-0.09725591,-0.15326282,0.58161366,0.40070343,-0.3157124,0.4762403,-0.41173336,-0.40320778,0.37671375,-0.16013262,-0.41495863,0.14611901,-0.29022747,0.1301389,-0.5666877,0.31580582,-0.20049635,-0.43743998,-0.5491223,0.08480867,-3.0454822,0.1609155,-0.33209187,-0.08522243,-0.20383964,-0.18341394,0.12728342,-0.56219554,-0.49943298,0.1991472,0.19005454,0.66706115,-0.13367128,0.12065782,-0.28049684,-0.35095838,-0.33536536,0.028500037,0.18199942,0.41285592,0.037380956,-0.38081354,-0.09318153,-0.18624273,-0.13655509,-0.011938883,-0.5781447,-0.4580495,-0.015544499,-0.52560765,-0.3152074,0.5558379,-0.4688253,-0.02114783,-0.2824137,-0.0262063,-0.18881719,0.25912428,0.04210003,0.13552484,-0.06817257,-0.019558737,0.06133174,-0.23150457,0.48945075,0.06268067,0.26464114,0.38983235,-0.057255507,0.120234005,0.4386455,0.6917778,-0.19267988,1.0284272,0.49772614,-0.17269762,0.16378157,-0.16996238,-0.42547506,-0.6429463,-0.20308504,-0.037977014,-0.530944,-0.32731667,0.0793478,-0.43337584,-0.90789765,0.6635279,0.025335586,0.13400985,0.036313612,0.23012365,0.68922937,-0.2126189,0.008773642,-0.053471662,-0.044612404,-0.55338985,-0.31069437,-0.5661872,-0.4029479,0.010695279,0.8996356,-0.26277137,0.10188425,0.14506845,-0.21716818,-0.091744065,0.21093634,0.026974099,0.040441036,0.5937172,0.17804043,-0.728433,0.50056523,-0.06820915,-0.11731429,-0.5638043,0.24940637,0.5566205,-0.72973925,0.6634223,0.39511782,-0.057705276,0.068134256,-0.45862398,-0.42363325,-0.27015552,-0.21392246,0.4212167,0.34954795,-0.8670112,0.48456433,0.39432073,-0.31457973,-0.7712175,0.30679032,-0.17299278,-0.25847098,-0.02834438,0.3371091,0.017668469,0.0985611,-0.040851586,0.075571254,-0.35686594,0.20551236,0.09089871,-0.1041006,0.016678343,-0.25347432,-0.11560978,-0.8692961,0.080870725,-0.41412428,-0.3653181,0.12713052,0.13957481,-0.054101102,0.1318681,0.17036441,0.39121804,-0.29426852,0.09029142,-0.03183822,-0.20517874,0.16696301,0.4664471,0.6259223,-0.34806377,0.6080703,0.083914496,-0.06604619,-0.15941657,-0.053780045,0.31158134,-0.061201237,0.3832521,0.049258787,-0.2488112,0.14080502,0.9016991,0.15874724,0.500881,-0.05301706,-0.07194127,0.43037114,0.028651342,0.3947253,-0.09730276,-0.6399617,0.13468507,-0.34832004,0.087105446,0.48635468,0.2580579,0.2527955,-0.116311625,-0.28081065,-0.012800894,0.10538465,0.1411211,-1.1367159,0.25186604,0.121058926,0.8269784,0.43844858,0.014907269,0.1546898,0.7098242,-0.18291001,0.1687232,0.37125757,-0.14184047,-0.481781,0.48289272,-0.7043003,0.4681881,-0.0426034,0.048428647,0.049739473,-0.0033991507,0.35342786,0.6258215,-0.31004634,0.010967029,-0.0810201,-0.2531874,0.040397882,-0.43715075,0.05891183,-0.5493403,-0.2295924,0.6834818,0.7000022,0.48434862,-0.21203841,0.13647583,0.07547068,-0.08021032,0.035101425,0.07203873,0.0521077,-0.011780714,-0.5441863,0.08506613,0.5919581,0.005727989,0.08224196,-0.1352179,-0.12114631,0.3076923,-0.21577121,-0.25932807,-0.17209773,-0.7306722,0.03915835,-0.28269953,-0.5953177,0.4283281,0.081928566,0.20319168,0.36731687,0.010382156,-0.25440145,0.30068678,0.17004956,0.7186462,-0.015355719,-0.19556196,-0.38597637,0.17135085,0.20281048,-0.13704874,-0.14266686,-0.27991152,0.071272895,-0.41976812,0.47746322,-0.19737534,-0.2723044,-0.078307636,-0.07968306,0.09540241,0.66138935,-0.076984115,-0.22771184,-0.09906835,-0.12089062,-0.3635938,-0.21328175,-0.15901113,0.21611965,0.2765383,-0.27828446,-0.17908181,-0.3245438,-0.24752109,0.312044,-0.056043033,0.2889232,0.19213687,-0.03464162,-0.24596593,-0.12981613,0.19378379,0.5393241,-0.08487612,-0.26955387,-0.26968023,-0.30236676,-0.3676432,0.38138607,0.013449048,0.40177855,0.042848136,-0.15842684,0.62068886,-0.014476129,0.9178581,0.08718199,-0.2811246,0.042596698,0.44460455,-0.043194328,-0.072326526,-0.27943665,0.87170607,0.35941002,-0.02158245,-0.12574282,-0.5391051,0.11055011,0.1685121,-0.15097746,-0.023170033,0.073299184,-0.55297995,-0.05906262,0.21496248,0.29503748,0.2771881,-0.14838001,0.027935952,0.1877517,0.17453411,0.34042332,-0.3327667,-0.2380379,0.3244462,0.20710528,0.013043498,0.049335323,-0.2755695,0.3983407,-0.37625504,0.063446954,-0.37126866,0.10302435,-0.32744431,-0.17117624,0.30686402,0.10694794,0.39623925,-0.37789312,-0.33650732,-0.34145644,0.30527645,0.15345906,0.07967953,0.36516446,-0.2610789,0.02556062,0.0317025,0.56672174,0.86234504,-0.20177746,0.099232875,0.30065775,-0.2732896,-0.42922974,0.39923865,-0.25174,0.071245566,-0.04008097,-0.17092946,-0.65113926,0.13679744,0.2658731,0.2093045,0.103133105,-0.661933,-0.22184451,0.2016327,-0.34696832,-0.18060456,-0.21373424,-0.063149065,0.74255097,-0.2286768,-0.43934488,0.06669426,0.1144338,-0.113892786,-0.4952586,-0.06744876,-0.37949666,0.22516415,0.10583047,-0.31690672,-0.12621437,0.23888579,-0.48492977,0.056162704,0.24049532,-0.3680144,0.12025933,-0.2951574,0.21936533,0.91147375,-0.32218996,0.5172648,-0.36742005,-0.501994,-0.7859825,-0.2734771,0.5020823,0.17087947,0.060431268,-0.50603807,0.012490885,-0.15702125,-0.43767014,-0.10315352,-0.49407867,0.43937418,0.13447021,0.32837147,-0.067847975,-0.7504503,0.1324531,0.040065356,-0.16962394,-0.473733,0.3302355,-0.033383507,0.86435086,0.037216026,0.03215869,0.10620529,-0.35852623,0.0092374,-0.2154695,-0.14505328,-0.5707903,-0.033443492,42 -342,0.45722008,0.057105433,-0.7758052,-0.106416546,-0.3589942,0.022297919,-0.49524587,0.281331,0.45172438,-0.49474788,0.15228714,-0.0030619672,-0.12306913,0.26151985,-0.12247325,-0.5970048,0.010370761,0.26877505,-0.5169884,0.7994527,-0.2905565,0.2807779,0.24252568,0.25443512,-0.004207083,0.11644427,0.24883758,-0.16648427,-0.066621885,-0.23179783,0.08995993,0.09531438,-0.6157362,0.4603779,-0.14565238,-0.34387115,0.0058413083,-0.3165062,-0.15900822,-0.78289944,0.2116264,-0.6505551,0.6588384,-0.053299926,-0.35021162,0.049475305,0.25306773,0.21023552,-0.040417314,-0.13375314,0.3860886,-0.37646058,-0.76513344,-0.3194128,-0.28561217,-0.7415795,-0.5231939,-0.009480889,-0.5161208,0.26304552,-0.43359417,0.39201736,-0.2424909,-0.06918531,-0.37194762,0.54773706,-0.30293855,-0.016220149,0.05262935,-0.20539641,0.32472062,-0.7419283,-0.20643504,-0.113661766,0.2587838,0.16628562,-0.26349625,0.24267755,0.34973145,0.6765714,0.23556364,-0.38525957,-0.38723823,-0.0072355526,0.10515768,0.3448172,-0.30210352,-0.19670916,-0.21387164,-0.13759138,0.45860833,0.17582235,0.0024219474,-0.44102913,0.15391333,-0.23266019,-0.47242466,0.52791196,0.57732356,-0.3890701,0.25324586,0.42692524,0.39416417,0.20634003,-0.1816165,0.069765635,-0.4378922,-0.5788827,-0.09115992,0.1296297,-0.10390326,0.21113084,-0.04408566,0.096527226,0.52463573,0.0029193333,-0.39557052,0.48872253,0.13551262,0.24729262,-0.29721123,-0.13132925,0.37807965,-0.60775024,-0.029272005,-0.49706835,0.5423628,-0.29257885,-0.8807883,0.36639276,-0.58563775,0.06538495,-0.069969624,0.71947,0.9895678,0.7574901,0.009161545,1.0638767,-0.4315538,0.12556244,-0.20176111,-0.23800609,0.3073892,-0.05978718,0.3761353,-0.5056265,0.058171514,-0.13875909,-0.11923113,-0.10124801,0.63679165,-0.37658367,-0.2902741,0.11578815,0.64079285,-0.17960158,-0.15237167,0.7878176,1.1118096,1.0477475,0.29255214,1.2656072,0.13280718,-0.16766767,-0.24588092,-0.13930182,-0.788258,0.2912922,0.26426575,0.28536147,0.047254287,0.2523046,0.018357944,0.4541056,-0.12205632,-0.36621687,-0.03796625,0.45929834,-0.22160092,-0.28718922,-0.28181213,-0.28708807,0.26838064,0.012666523,0.19209419,0.32217574,-0.20120956,0.3344213,0.24176642,0.96535647,-0.24161063,0.015490515,0.05434808,0.043119192,0.2680741,-0.124657206,-0.10530726,0.23927143,0.16843002,-0.08814691,-0.6107747,0.0683943,-0.22841081,-0.5126637,-0.1842176,-0.24828969,-0.20939367,-0.08046273,-0.010820811,-0.20923178,-0.019168045,-0.5363042,0.23601225,-2.36911,-0.08423158,-0.105782345,0.24617474,-0.07813729,-0.32876593,-0.11851575,-0.4723286,0.61496,0.2603971,0.5878069,-0.4858825,0.5516087,0.53937614,-0.82740754,-0.20725544,-0.72946423,-0.1557844,-0.09345094,0.4823249,0.0634433,-0.52966386,-0.14852966,-0.029555062,0.5993204,-0.040316027,0.28607878,0.6166462,0.4711431,-0.198429,0.3717164,-0.061344083,0.63497025,-0.3623269,-0.27014312,0.4181631,-0.34134886,0.29795995,-0.35183695,-0.009711868,0.5122518,-0.4478657,-0.9077764,-0.59094965,-0.017316494,1.1434869,-0.27316722,-0.61103284,0.13115668,0.010984318,-0.17321105,0.3916363,0.4984786,-0.011535917,0.011068813,-0.75436753,-0.011590617,-0.13541563,0.26217717,-0.055654448,0.1079249,-0.51021093,0.7877795,-0.047941677,0.5534589,0.61428976,0.38613898,-0.37122893,-0.27050826,0.0734362,1.0381602,0.26478133,0.030973032,-0.21854137,-0.1611813,-0.22055964,-0.23036762,0.022118535,0.66771114,0.51946837,0.004319969,-0.00088466064,0.30323213,-0.41814026,0.04396022,-0.21096955,-0.67598695,-0.34673077,0.090792574,0.56820285,0.6237136,0.29643658,0.3654952,0.12298121,0.31246704,-0.16669199,-0.5940862,0.5877822,0.88492763,-0.34039405,-0.14340259,0.72528607,0.35016856,0.057282973,0.7713245,-0.51702654,-0.59966576,0.1896814,0.04482826,-0.3330253,0.07474574,-0.4018658,0.061226454,-0.853707,0.16327307,-0.5487097,-0.5773495,-0.53421724,-0.014058075,-2.4375358,0.35906085,-0.30918732,0.15637228,-0.21167292,-0.027725508,0.34262827,-0.344014,-0.7009944,0.11678727,0.29004782,0.53476447,-0.15304722,-0.008711793,-0.28388855,-0.48678344,-0.06064449,0.34186682,0.032295536,0.22223224,-0.04617399,-0.4468327,0.13355742,-0.20660421,-0.03179231,-0.12796311,-0.6378415,-0.17839131,-0.19136424,-0.5682312,-0.3578054,0.60282326,-0.7443466,0.024248125,-0.26937422,0.16089375,0.25985083,0.309038,-0.14277911,0.15796463,0.14942002,-0.13297132,-0.18892254,-0.22567005,0.16579325,0.0343936,0.23763372,0.55513257,-0.065926634,0.05585238,0.5723813,0.75727,-0.045850344,1.0168688,0.35007286,-0.05432019,0.2511075,-0.08004868,-0.20839788,-0.7095982,-0.2406216,-0.14239182,-0.49020714,-0.321863,0.13498281,-0.40643543,-0.88382626,0.6888171,0.21766813,0.040421374,0.04643861,0.4672026,0.332105,-0.1837995,-0.040419452,-0.282101,-0.35552692,-0.42961377,-0.41394916,-0.7923029,-0.47211573,-0.056399923,1.251531,-0.29923043,0.05245793,0.1923853,-0.020966675,0.06927454,0.36364213,0.08166189,0.26128894,0.50299835,0.29875025,-0.69828,0.4335578,-0.12804149,0.21906824,-0.420067,0.33045778,0.5367163,-0.6673485,0.2700669,0.55755144,0.09299814,-0.08086024,-0.9083222,-0.15443458,0.33117467,-0.2647436,0.43323824,0.22575422,-0.749794,0.75536436,0.2910224,-0.09486654,-0.9146975,0.30766916,-0.09700351,-0.17390242,-0.08255275,0.56172943,0.090043746,0.11643185,-0.50853616,0.1345636,-0.38493818,0.37332132,-0.1317282,-0.23724954,0.2539702,-0.23063834,-0.22160591,-0.8701935,-0.116707034,-0.61406213,-0.32043698,0.31704316,-0.013633383,0.009228306,0.20138367,0.24874017,0.515007,-0.50745094,0.15403797,-0.47686332,-0.2742973,0.63815814,0.60022795,0.35996976,-0.43788716,0.5283775,-0.060034446,-0.29255506,-0.43770456,-0.03309346,0.4494721,0.08071404,0.38990453,0.04390498,0.005114662,0.08008875,0.63313866,0.19553505,0.17019582,-0.12386109,-0.20295909,0.25502095,-0.14995769,0.31049684,-0.11239628,-0.49773577,-0.098827615,-0.1956791,0.059360065,0.5449318,0.115480796,0.5907194,-0.18167949,-0.11996176,-0.0048086387,0.0611822,0.20560566,-0.91081494,0.68394214,0.18688183,0.49656877,0.69692284,-0.022019032,-0.017546896,0.8267911,-0.16424918,0.019484181,0.3595992,-0.107680984,-0.13097753,0.49394724,-0.93689835,0.14794348,-0.30495438,0.116500005,0.26909178,0.030418694,0.4326971,1.0815636,-0.14109685,0.22778866,-0.08195209,-0.2878301,0.026854783,-0.12693234,0.04187239,-0.26164114,-0.5176884,0.7898334,0.19922526,0.5017759,-0.36564916,-0.069984995,0.12682919,-0.33416218,0.38421297,0.008211182,-0.014045843,-0.11107389,-0.33659866,-0.10032383,0.6043563,0.12052607,0.11848908,0.05205549,-0.11858869,0.27929282,-0.034226324,-0.08260427,-0.07435612,-0.4634436,-0.036003742,-0.41436037,-0.25634128,0.4096858,-0.092788935,0.18798567,0.12077787,0.2543437,-0.2100792,0.21387611,0.28033867,0.59960335,0.09187589,-0.13438234,0.041822433,-0.037035115,0.08675189,-0.34925523,-0.1453804,-0.17220959,0.24783505,-0.9572487,0.37305728,-0.45120713,-0.54641306,0.17663293,-0.19685994,-0.09213463,0.36933237,-0.16380708,-0.13173278,0.24758802,0.014795618,-0.059830155,-0.35796043,-0.27705568,0.06480147,-0.32507893,-0.056155358,-0.33934942,-0.26876023,-0.21729633,0.32358027,-0.017282983,-0.07935582,0.29569674,0.27761227,-0.3770661,0.27361637,0.41005197,0.5786475,-0.05105309,-0.037120722,-0.28987232,-0.10631696,-0.30260485,0.24289478,-0.012022285,0.19820571,0.15750231,-0.37046176,0.92432016,0.020387216,1.1018735,0.022629559,-0.44210118,0.04973369,0.49345812,-0.08299417,0.04227573,-0.37320682,0.92649543,0.59561235,-0.2310244,0.052424673,-0.59623474,-0.14151405,0.23966189,-0.3371717,0.0110232,-0.068530865,-0.7346929,-0.18473777,0.27069804,0.26744008,-0.12169243,-0.1621309,0.15844819,0.22630231,0.2921696,0.16392593,-0.55712366,-0.002901273,0.33656034,0.30335096,-0.15020704,0.29307482,-0.36999542,0.26550445,-0.8310849,0.22583832,-0.35591692,-0.027388189,-0.10847305,-0.10512308,0.28789595,-0.010757706,0.26219597,-0.17513976,-0.39784476,-0.007000732,0.38902664,0.30279765,0.23658721,0.8851201,-0.27068648,-0.021670574,0.0030522856,0.48484284,1.1503905,-0.26888555,-0.025080578,0.2921559,-0.33218506,-0.68266857,0.14221282,-0.51947874,-0.23614345,-0.040184326,-0.59828186,-0.3992861,0.2147647,0.080435514,0.07517498,0.08275087,-0.65380186,0.020453999,0.17295708,-0.2102921,-0.15310022,-0.013346379,-0.025212819,0.8941477,-0.3462936,-0.59654796,-0.022942407,0.3666698,-0.2790601,-0.7249447,0.18937756,-0.48264113,0.44407383,0.37808985,-0.29437426,0.006839418,0.02697019,-0.7195674,0.110081896,0.36944804,-0.24316014,-0.048208747,-0.4419082,0.23796742,0.66685426,0.07172171,0.34824124,-0.11469318,-0.69816226,-0.6983675,-0.13351479,-0.042197686,0.1445956,0.018923143,-0.58186245,-0.0875997,-0.51194465,-0.11791103,-0.012419075,-0.6166418,0.42811483,0.05296121,0.5144409,-0.28128448,-1.1042534,0.2155861,0.29193148,0.0072790342,-0.41878515,0.29169062,-0.1261072,0.94817203,0.06151712,-0.049283247,0.15238455,-0.88264555,0.34017047,-0.41966048,-0.22671293,-0.6259983,-0.09920753,43 -343,0.419673,-0.011303084,-0.60370296,-0.101131044,0.056552358,0.052166644,-0.19503434,0.27757004,0.07941158,-0.51655936,0.09638738,-0.1763151,-0.044055317,0.3001701,-0.19017127,-0.5149817,0.100486636,0.22524951,-0.54302734,0.48872572,-0.5323378,0.41309372,0.015980428,0.12898698,-0.029550927,0.28079653,0.40310717,-0.102925405,-0.04996111,-0.14925946,0.20423439,-0.022421118,-0.63502586,0.3049043,-0.0022723165,-0.36527154,-0.005364056,-0.2279149,-0.3691663,-0.6205147,0.29765755,-0.71750844,0.5237509,0.022982458,-0.23655103,0.29932877,0.10800428,0.3087153,-0.33476788,0.21744904,0.094527796,-0.113862105,-0.13772598,-0.3419883,-0.16525224,-0.23614563,-0.46520418,0.00047397614,-0.6044288,-0.12205966,-0.28163224,0.0027095675,-0.28466716,0.18464956,-0.1008503,0.3940679,-0.324495,-0.110516526,0.19624688,-0.116960295,0.39621043,-0.42101255,-0.15595104,-0.11235873,0.012459929,-0.33426258,-0.14437155,0.32991758,0.1583722,0.48058572,-0.04813407,-0.107873626,-0.12693158,-0.19698772,0.16796352,0.520943,-0.13621084,-0.47899118,-0.12360639,-0.20375636,0.09178513,0.04229257,0.117971815,-0.36402056,-0.039665885,0.0018693209,-0.32940993,0.2213802,0.538679,-0.37613773,-0.14095517,0.35142145,0.5871597,-0.14709106,-0.01808553,0.13450597,-0.08129203,-0.52317137,-0.24423493,0.052015636,-0.11341614,0.42617127,-0.0313311,0.22609864,0.5208079,-0.3070559,-0.023189928,0.19079311,-0.0069799935,-0.0010234012,-0.2708334,-0.3568731,0.25102404,-0.5078823,-0.14156033,-0.28663507,0.739278,0.039339315,-0.8520066,0.39728492,-0.4238817,-0.0010563837,-0.09174007,0.5881775,0.46502516,0.5244126,0.014518052,0.7001554,-0.72880155,0.00025038313,-0.08929039,-0.33319658,0.05086273,-0.06607829,-0.12251703,-0.4835713,-0.007647574,0.27055007,-0.15134223,0.12079763,0.37181237,-0.34743935,-0.08773608,0.041122917,0.78174436,-0.38377264,0.039649256,0.44036755,1.2543466,0.9110503,0.1506215,1.2554501,0.32838514,-0.23570512,0.03501696,-0.12981045,-0.89988095,0.26007015,0.4121728,-0.16308013,0.4681075,0.051571865,-0.107124485,0.13839313,-0.39502558,0.027592663,-0.0126047535,0.40086803,-0.18194903,-0.24420097,-0.22253403,-0.25492606,0.055328686,-0.01906779,0.03532257,0.29413563,-0.21466956,0.2570532,0.18009503,1.5589895,-0.1178,0.14701729,0.14503254,0.42871904,0.2566684,-0.12827696,-0.23398386,0.24421261,0.34644872,0.03839814,-0.6064146,0.07106881,-0.09508036,-0.6084848,-0.21673307,-0.26609388,0.11638047,-0.3056903,-0.29202458,-0.013968636,-0.014004315,-0.43381572,0.37801117,-2.6673477,-0.15280856,-0.04271532,0.31375423,-0.22265418,-0.1671906,-0.20666085,-0.33311558,0.50227576,0.41308612,0.49146438,-0.54378074,0.38048205,0.38803142,-0.20589134,-0.13617416,-0.5396113,0.01764438,-0.16774437,0.22413038,-0.034891043,-0.1759834,-0.08028998,0.29045123,0.3487186,-0.21381828,-0.050192717,0.33684188,0.30086067,0.16572824,0.38986626,0.043962087,0.47457665,-0.49682322,-0.18393207,0.34376568,-0.35854286,0.025522871,0.08914592,0.1544262,0.22720985,-0.5054557,-0.86468023,-0.5708905,-0.1888011,1.2266959,-0.35824257,-0.36061224,0.21223564,0.057396274,-0.3360106,6.132041e-05,0.2886297,-0.2637014,0.008332183,-0.8776494,0.12007785,-0.04379105,0.33191794,0.06746657,0.10009909,-0.47584635,0.4241228,-0.11210618,0.6852303,0.46667123,0.051602185,-0.3839431,-0.5201053,0.12753786,1.2309383,0.2536367,0.23222141,0.0012668201,-0.044471234,-0.2882134,-0.097889386,0.24017942,0.29083005,0.8041406,0.030982971,0.12582092,0.2561894,-0.017952468,0.05651995,-0.03136026,-0.41077518,-0.08848703,0.12631537,0.61585224,0.47776347,-0.12686864,0.33955312,-0.12069949,0.25708753,-0.3440032,-0.4315679,0.5960707,0.7174578,-0.12507196,-0.2865124,0.4764475,0.55402404,-0.27638584,0.54129326,-0.5522931,-0.5005845,0.43944553,-0.1877249,-0.13073482,0.31604916,-0.35285348,0.26163536,-0.9759355,0.37268454,-0.33780763,-0.385871,-0.48447672,-0.26179856,-3.5470352,0.17046271,-0.11686908,-0.1579605,0.015730174,0.0707942,0.36169058,-0.45857236,-0.6006298,0.09225016,0.0131175,0.595813,0.07212232,0.088011876,-0.17199945,-0.12310772,-0.19940817,0.24118567,0.15519173,0.1775094,0.24189626,-0.4825282,-0.20105307,-0.3006484,-0.42506048,0.008637377,-0.52427226,-0.38588867,-0.19704165,-0.6134747,-0.54611415,0.62581956,-0.3460483,0.067565255,-0.11033569,-0.056602485,-0.061508898,0.3693084,0.09897763,0.08928054,-0.03287345,-0.06005025,0.016523698,-0.3006759,0.119191356,0.031117752,0.19451974,0.37283802,-0.302407,-0.10521489,0.45691904,0.6187454,0.118792705,0.6794663,0.27713946,-0.13776767,0.3067923,-0.4058985,-0.12502417,-0.6532549,-0.38271865,-0.14795102,-0.29742822,-0.4324072,-0.1279466,-0.44159487,-0.61275446,0.46074104,-0.07471119,-0.041231673,0.057087746,0.38650665,0.235661,-0.0665812,-0.07148552,-0.13155387,-0.13652591,-0.3365462,-0.27626666,-0.8523565,-0.33056358,0.15399028,1.1385887,-0.057556275,-0.028299306,0.04005174,0.024717584,0.22059214,0.14855024,0.039798502,0.34975323,0.39825875,0.012709945,-0.6523727,0.36358136,-0.28484493,-0.1601816,-0.57122785,-0.026115159,0.52289975,-0.66791075,0.33832583,0.45997033,0.24656665,-0.021144392,-0.3553082,-0.121915065,0.21123873,-0.18209653,0.4517839,0.21995495,-0.8132664,0.5616116,0.3782969,-0.34275705,-0.68216413,0.5050069,0.018157313,-0.2150015,-0.026002398,0.38932827,-0.07916824,-0.013825091,-0.3574979,0.16475174,-0.48357052,0.21552809,0.31634453,-0.089097604,0.53860945,-0.204783,-0.12271432,-0.56303173,-0.029092146,-0.49807462,-0.15131132,0.046685226,-0.035138417,-0.028037813,0.25499812,-0.21706092,0.4890413,-0.28281388,0.036943734,-0.07497261,-0.31736103,0.6356974,0.43383583,0.26009473,-0.29547498,0.66138715,-0.116748914,-0.001879773,-0.44523785,-0.034233626,0.4989018,0.13233104,0.21400599,0.11853911,-0.05381883,0.4676288,0.5565527,0.329946,0.31307167,0.18520424,-0.11138047,0.24362652,0.23145948,0.15225473,0.1768626,-0.110668,-0.10756045,-0.03959767,0.21656159,0.43019214,0.08349572,0.527908,-0.24529374,-0.3772312,0.012867672,0.24278362,-0.25763527,-1.0395596,0.5750614,0.03445901,0.3966786,0.67461354,-0.042446055,0.16737218,0.3464176,-0.21992747,0.21422434,0.15528019,-0.029543022,-0.47931153,0.5618094,-0.5058865,0.46451217,-0.08554321,0.042137295,0.07190442,-0.12889466,0.4491,0.802699,0.086437024,0.20363139,0.0072918152,-0.27580458,0.11604778,-0.38300732,0.096960366,-0.33930522,-0.26954538,0.62718076,0.1719198,0.36004677,-0.16792604,-0.081412025,0.12868878,-0.13704434,0.16607358,0.013709881,0.1210057,-0.045147363,-0.59833616,-0.24829766,0.5202376,0.25134584,0.12946841,0.20882551,-0.22307293,0.28140298,-0.09937863,0.021943273,-0.033256575,-0.52229685,0.06897861,-0.27449495,-0.16675426,0.31659865,-0.4103029,0.2689028,0.1619002,0.10327072,-0.4210685,0.13494457,0.33635965,0.51584834,-0.07656995,-0.2901179,-0.12645814,0.085167244,0.18534844,-0.13117255,-0.040054016,-0.34008977,0.018755527,-0.7848158,0.4579375,-0.05970524,-0.17569573,0.33236116,-0.14995445,-0.007873589,0.48463088,-0.21547198,-0.17437577,-0.047166966,-0.1201098,-0.09930646,-0.36859062,-0.28438005,0.16649409,0.0763961,0.08058732,-0.0061039245,0.11722028,0.020997806,0.3122916,-0.026551124,0.30355498,0.2653604,0.31711575,-0.29338223,0.054495417,0.0075532794,0.4380729,0.093490064,-0.016719682,-0.43208292,-0.44157082,-0.071525574,0.030522449,-0.2377003,0.08017584,0.09174544,-0.42077708,0.825059,0.117519975,0.89852035,-0.04779833,-0.2932174,-0.027784633,0.5555333,-0.033497892,-0.1595207,-0.19855043,1.0936048,0.6297625,-0.19961646,-0.1405399,-0.26792312,-0.1974083,0.0064714295,-0.23224208,-0.37191746,-0.092078604,-0.5728497,-0.44698194,0.18597284,0.39735094,0.028444836,-0.09321009,0.15524055,0.25277683,0.06194419,0.06951295,-0.53042114,0.12407213,0.35120204,0.17911641,0.048989374,0.07719566,-0.4847674,0.38220432,-0.7508338,0.11521212,-0.14396945,-0.015041603,0.07938109,-0.26652473,0.16500545,0.11802412,0.20680663,-0.30005005,-0.16782716,-0.09053634,0.49179524,0.09145472,0.15591769,0.8455592,-0.13186033,0.13851564,0.14686285,0.4844053,1.0653796,-0.076416664,-0.0828914,0.28182945,-0.39917645,-0.6869664,0.19849227,-0.26795238,0.2290181,-0.23769446,-0.35500985,-0.5847512,0.23072931,0.097037844,-0.035517965,0.17656872,-0.53740793,-0.26938093,0.24316978,-0.31691986,-0.36143357,-0.41366008,-0.06715017,0.5833805,-0.20078564,-0.15466176,0.14786802,0.25939354,-0.28066593,-0.6823262,-0.12291049,-0.33021617,0.32922983,0.3744836,-0.13907674,-0.039460275,0.22828372,-0.35323486,0.24072795,0.17881016,-0.41224164,-0.072006114,-0.4269557,-0.03772011,0.59163815,-0.17807296,-0.009697172,-0.5950131,-0.55790424,-0.9605533,-0.3117814,0.808644,-0.06412094,0.09642857,-0.472824,-0.104590096,-0.12887731,-0.026396831,-0.07772911,-0.23123749,0.42432627,0.05466071,0.30729717,-0.06729909,-0.768487,0.04641992,0.14525732,-0.20325808,-0.42268482,0.55413085,0.004682045,0.6904145,0.07588663,0.012249708,0.51726717,-0.6908428,0.18903911,-0.24424966,-0.113546364,-0.48863003,0.071000494,50 -344,0.33711752,-0.26254943,-0.4200888,-0.061201137,-0.120332666,0.17048594,-0.112752385,0.7778844,0.3203017,-0.46593976,-0.22525522,-0.07946457,-0.08006882,0.31641826,-0.08774388,-0.32384688,0.029479606,0.14549407,-0.34658214,0.5163155,-0.33407745,0.27324134,-0.18796362,0.45099995,0.22235227,0.116888456,0.09552141,0.045552205,-0.07489555,-0.084243305,-0.011494009,0.43942267,-0.36710238,0.32905096,-0.29198307,-0.34576607,-0.09488462,-0.60079086,-0.2683031,-0.75000346,0.10459801,-0.6771239,0.4591326,-0.100555114,-0.3632107,0.41951337,0.05655209,0.10498031,-0.17082156,-0.10942252,0.03468936,-0.007542419,-0.2320994,-0.062329847,-0.10813421,-0.30930725,-0.55817443,0.16505356,-0.29767886,-0.025634633,-0.23190495,0.13179912,-0.28536493,0.027676139,0.074913636,0.5045771,-0.4539546,0.0050260467,0.23142818,-0.18235986,-0.024484992,-0.6670391,-0.14270715,-0.07069202,0.225304,-0.06445546,-0.13016075,0.20934422,0.25422668,0.5600793,-0.006457857,-0.1593944,-0.3814318,0.043142848,0.010398269,0.43798873,-0.1500878,-0.32358497,-0.0188919,-0.062822096,0.34981403,0.14714603,0.20732076,0.036948446,-0.2338089,-0.117752396,-0.2466223,0.1984414,0.46482235,-0.40706232,-0.258586,0.466184,0.5269802,0.26270238,0.019612297,0.0017864023,0.008566632,-0.4773819,-0.16393757,-0.098819196,-0.24150096,0.46685654,-0.13141187,0.36857533,0.38719568,-0.00942988,0.035278153,0.08129559,0.054602724,-0.10728376,-0.27918154,-0.23329823,0.21916959,-0.31894466,0.17171967,-0.050865788,0.697299,0.19083798,-0.61265814,0.30566737,-0.3500503,0.11240927,-0.019891901,0.43105835,0.8747937,0.4437172,0.30995634,0.73357445,-0.35953084,-0.09703292,-0.17845508,-0.060048003,-0.031035593,-0.24879786,-0.005610615,-0.518351,0.16459092,0.11941392,0.095442794,0.28906727,0.23808119,-0.537783,-0.21793628,0.30955085,0.67161113,-0.20197515,-0.23071814,0.8918146,0.99649316,0.9979082,0.028018815,0.9620077,0.124232106,-0.05725165,0.1878052,-0.16650857,-0.6064924,0.25391743,0.30366564,0.057951313,0.26053253,0.16605678,-0.114152,0.54334927,-0.29595968,-0.079251155,-0.15231732,0.1484002,0.15230618,-0.13212432,-0.41391367,-0.33742455,-0.009175656,0.01563836,0.044791102,0.278256,-0.13715684,0.359131,-0.09791801,1.4296935,-0.04307879,0.005606634,0.17120218,0.31505844,0.1638951,-0.28111523,-0.04278561,0.32790694,0.26402214,0.012790744,-0.54081887,0.15980352,-0.16951439,-0.4891025,-0.06834506,-0.31958008,-0.22315471,0.05932406,-0.37508014,-0.1887079,-0.22497618,-0.43302673,0.47483474,-3.032015,-0.16599011,-0.12554859,0.32077292,-0.24249102,-0.36701974,-0.14430763,-0.47635955,0.39137676,0.32300025,0.4469699,-0.3968249,0.26263928,0.2740843,-0.64646333,-0.19850172,-0.49683744,0.07080292,0.049175896,0.25867695,0.073777676,-0.15353952,-0.045540128,0.0857958,0.644734,0.056297224,0.12200876,0.3803301,0.39205953,-0.2090962,0.3460121,-0.23027873,0.49698806,-0.44416466,-0.2497327,0.37389132,-0.5289999,0.42432475,-0.17087507,0.14133023,0.4656106,-0.3852138,-0.88637334,-0.59354436,-0.17025293,1.366176,-0.0854426,-0.44820473,0.09987207,-0.5527739,-0.116655454,-0.16436164,0.5148131,-0.018666152,-0.2047378,-0.6762878,0.0037626412,-0.078059435,0.086339675,-0.057567913,-0.0730202,-0.49755216,0.6427263,-0.060740445,0.4935678,0.2622722,0.16342887,-0.09090154,-0.25497046,-0.065492295,0.7599093,0.5450438,0.13953432,-0.22085367,-0.090141945,-0.41498968,-0.042553928,0.16307737,0.5616894,0.46778303,-0.10599106,0.15656802,0.19460583,0.22289778,0.083833374,-0.16130832,-0.0861216,-0.19277671,0.20654015,0.59300464,0.6367034,-0.122750714,0.27577266,-0.009705564,0.10916499,-0.26530698,-0.42501897,0.4617321,0.7395791,-0.17799345,-0.30792218,0.70577306,0.48770386,-0.007331499,0.4182962,-0.4895356,-0.38306317,0.35548726,-0.25095594,-0.36522028,0.022987375,-0.28967816,0.09204681,-0.72158444,0.06013578,-0.23992753,-0.51083344,-0.5377442,-0.021539222,-2.948621,0.19998346,-0.1033647,-0.1689115,-0.17385867,-0.24606435,0.19576697,-0.51786107,-0.5530559,0.22646405,0.15162376,0.6575144,-0.12572446,0.038093746,-0.21355654,-0.41551873,-0.3634166,0.046256,-0.03557555,0.4619423,0.1024638,-0.39823815,0.023955246,-0.120249696,-0.33805862,-0.02414473,-0.42856547,-0.31346413,-0.19684286,-0.4619947,-0.18917973,0.5736741,-0.4118565,0.0701026,-0.28556642,0.041498568,-0.03137877,0.22744925,-0.083238855,0.06441992,0.043132875,-0.19263884,0.004015782,-0.24320345,0.3647761,0.061435156,0.250566,0.503808,-0.18010625,0.2358506,0.5247558,0.6380053,-0.26806256,0.93733865,0.48546204,0.0102264285,0.35664776,-0.10688423,-0.21486321,-0.36585188,-0.22593416,0.035277296,-0.44794804,-0.35432556,0.055172723,-0.23695694,-0.8775161,0.4492615,-0.0354945,0.27273032,-0.011716549,0.22881475,0.62578887,-0.3240371,0.05558923,-0.0129706655,-0.030139754,-0.3929677,-0.44712248,-0.57233906,-0.47616026,0.1769817,1.0635455,-0.25937155,0.17096846,0.15012811,-0.107771054,-0.06855164,0.067126706,0.087202564,0.019791748,0.29984933,-0.009311261,-0.6030241,0.40267038,-0.08143637,-0.11970752,-0.43171623,0.19973318,0.4457118,-0.5099538,0.45817533,0.38798618,-0.02279624,-0.09758784,-0.68184793,-0.114663005,-0.18760398,-0.1970253,0.2758861,0.33202308,-0.9191739,0.49459735,0.32755968,-0.2330517,-0.8224459,0.38781804,-0.10716629,-0.05517103,-0.06607232,0.28629375,0.3272124,-0.020146709,-0.048112683,0.08422882,-0.38773775,0.3443508,0.072824575,-0.06390112,0.4476631,-0.2783043,-0.03276735,-0.6891236,-0.18734215,-0.5017739,-0.23145887,0.2344803,0.071396776,0.028447475,0.06090894,0.16784464,0.35383138,-0.32415563,0.11873865,-0.07447279,-0.33383116,0.36300763,0.45217174,0.5932469,-0.2991528,0.55896044,0.095403664,0.06714721,-0.15458202,-0.035682034,0.3639049,0.040985517,0.41482836,-0.12056478,-0.27380165,0.083602324,0.7920659,0.09347544,0.2361736,-0.12452285,-0.21614666,0.24130858,0.0015949468,0.19031997,-0.14816049,-0.56745386,0.010781507,-0.46810898,0.157796,0.41271186,0.1162334,0.26555517,-0.08869149,-0.1775676,0.049116135,0.14982855,-0.029803442,-0.9983937,0.32936072,-0.015784774,1.0134795,0.41004354,0.04648264,-0.04627251,0.7288381,-0.031816334,0.12174215,0.384723,-0.1304109,-0.45979834,0.5631867,-0.73408926,0.5147319,-0.057648204,-0.088923514,0.096565075,0.033759736,0.41598216,0.6401778,-0.19483832,-0.056647334,0.06974477,-0.3649209,0.06426448,-0.46778843,0.113566525,-0.53756166,-0.21852253,0.6651658,0.6057712,0.41027927,-0.36758623,0.009934953,0.054602344,-0.15948336,0.06566221,-0.049817186,0.09618868,-0.13229181,-0.60397035,-0.012032403,0.39516202,0.13594814,0.2181916,-0.060888704,-0.33187488,0.20887554,-0.16623423,-0.03621241,-0.018246695,-0.59795415,-0.033159807,-0.3068065,-0.5451471,0.47905603,0.031089988,0.21006833,0.2271094,0.09547423,-0.12865068,0.3110653,0.023879051,0.82223696,-0.05792164,-0.021361498,-0.3444028,0.24470684,0.18689765,-0.1871339,-0.042329352,-0.23741515,0.035036083,-0.54159343,0.4251407,-0.07470475,-0.19975258,0.22784893,-0.04823276,0.12903288,0.4438147,-0.026456634,0.013117595,-0.073175944,-0.23940672,-0.3950806,-0.26953954,-0.1343547,0.26962245,0.086036704,-0.10042095,-0.17308064,-0.14075463,-0.059072156,0.22742839,0.04233726,0.09905635,0.30266428,-0.057530254,-0.3432769,0.039574,0.15517066,0.56617945,0.05385556,-0.22180676,-0.35948452,-0.3889938,-0.33670828,0.16002618,-0.026021583,0.34679803,-0.005711845,-0.17084548,0.55052716,-0.010633252,0.9699437,-1.0761832e-05,-0.34044975,0.024068782,0.42967457,-0.041775174,-0.11831327,-0.33417082,0.79252434,0.3929026,-0.048412256,0.04563672,-0.28856662,0.048241727,0.24857847,-0.21461761,-0.11972202,-0.004482414,-0.6898298,-0.26221874,0.21155156,0.17654754,0.26617193,-0.14190306,0.01192877,0.23883797,0.092538945,0.30180198,-0.37535217,-0.25770316,0.27461213,0.32369328,-0.04589514,0.060219355,-0.415173,0.31244183,-0.7586766,0.031413168,-0.19536723,0.12956013,-0.37691242,-0.25275347,0.3165667,0.19916129,0.39236853,-0.22741508,-0.46766552,-0.18108414,0.38913855,0.04368204,0.06363299,0.24416995,-0.24058867,-0.09747311,0.01213061,0.39978868,0.83725464,-0.18336515,0.080490746,0.39758644,-0.21228656,-0.59423935,0.34516525,-0.37548918,0.29784945,-0.059921093,-0.11722512,-0.52591145,0.23729955,0.36431247,0.19269957,-0.021165026,-0.5516182,-0.11715065,0.093615256,-0.29427448,-0.19001083,-0.28257307,-0.044581745,0.5338606,-0.2914486,-0.3597115,0.04214495,0.40629363,-0.05233625,-0.5823855,0.11421263,-0.4113638,0.13376608,0.0018920989,-0.3942671,-0.22562614,-0.08130572,-0.46506143,0.028140953,0.037338562,-0.24961615,-0.037817024,-0.42073202,0.123602375,0.8580972,-0.1304452,0.4747231,-0.29785803,-0.43978497,-0.82441574,-0.35598034,0.37485728,0.12980261,-0.019366086,-0.5196173,0.113394186,-0.23570131,-0.17611265,-0.13418071,-0.34904712,0.4461332,0.18379316,0.1774529,-0.092186265,-0.6424596,0.24411607,0.10898728,-0.10728351,-0.24004023,0.30108953,-0.047236588,0.93729466,0.04189522,-0.03890991,0.107316926,-0.480769,0.07363061,-0.22344136,-0.14295618,-0.46089897,0.036364406,55 -345,0.53826106,-0.16229486,-0.44299486,-0.13380139,-0.039360046,0.09170842,-0.021720542,0.6687795,0.1994401,-0.42686436,0.0372059,-0.1457772,0.15574683,0.4151172,-0.13791075,-0.57575226,-0.028591802,0.2976312,-0.3124828,0.5876909,-0.32022455,0.22031571,-0.11996497,0.4142445,0.062182277,0.31686953,0.18598737,-0.10413228,-0.26242024,-0.03619904,-0.15311292,0.41011253,-0.51594055,0.11288343,-0.028763238,-0.30299208,0.040028967,-0.42735597,-0.38894764,-0.60099983,0.24290681,-0.69619876,0.50614506,0.14691155,-0.25751367,0.27898708,0.116603956,0.22782029,-0.3324391,-0.10212563,0.097637124,0.049257364,0.066749096,-0.30647653,-0.18590789,-0.59124863,-0.4934926,0.12154712,-0.4727398,-0.2143242,-0.13196091,0.16648695,-0.24247949,-0.15763591,-0.17054534,0.5367888,-0.44154212,0.115488805,0.1671395,-0.07325522,0.20981537,-0.46862406,-0.2611527,-0.05498078,0.107237354,-0.13422501,-0.12822208,0.2265977,0.34177002,0.48203906,-0.092112675,-0.115184546,-0.43674642,0.021037051,-0.06546558,0.57549155,-0.37670293,-0.86939234,-0.11042543,0.063400015,-0.11080898,-0.007960805,0.22822316,-0.25857583,0.03714632,0.033214353,-0.34465483,0.39507356,0.3742812,-0.5641333,-0.23558703,0.35566306,0.34349522,0.003255857,-0.1895957,-0.21158536,0.008586193,-0.43260378,-0.15886416,0.11895062,-0.1959103,0.6431337,-0.11276303,0.17234333,0.6196566,-0.047279116,-0.037474196,0.025532112,0.07730805,-0.03474966,-0.38199133,-0.1352786,0.09504773,-0.30002698,-0.010822756,-0.16047062,0.89929676,0.20728502,-0.721346,0.46527547,-0.5294064,0.06419458,-0.08463181,0.3552474,0.423337,0.3977945,0.2863793,0.58698756,-0.4425459,0.051335126,-0.07377023,-0.44802,0.007969486,-0.024716794,-0.10725101,-0.5455423,0.179258,0.08773584,-0.031324305,0.084626846,0.348975,-0.61101234,-0.13178772,0.32793546,1.1005471,-0.28806612,-0.3028012,0.5626935,1.1147071,0.8239664,-0.1420153,1.1846448,0.28389573,-0.3128017,0.36536473,-0.45826387,-0.57407045,0.23424092,0.3556061,-0.31263226,0.36616522,0.0786206,-0.16311683,0.34960318,-0.082942486,0.07497491,-0.25622234,0.14903913,0.14680359,-0.08729565,-0.4550206,-0.2898695,-0.09026841,-0.24651626,0.25048926,0.24746297,-0.22747906,0.26798487,-0.14397182,1.7710094,-0.064613454,0.13554583,0.044340663,0.63520396,0.2561097,0.059696633,-0.0408448,0.49106088,0.2632694,0.18479429,-0.38165566,0.26289195,-0.27878425,-0.6694212,-0.11133088,-0.3617142,-0.028276533,-0.012290478,-0.5761543,-0.014040304,0.012752525,-0.08059852,0.35276222,-2.8665488,-0.23864639,-0.07294535,0.19619036,-0.40379348,-0.3094695,-0.082214706,-0.3456919,0.36904874,0.3771827,0.4972904,-0.64642185,0.438386,0.16664043,-0.31071982,-0.1415188,-0.5054221,-0.050691694,-0.11610899,0.4610019,-0.16335699,-0.041614704,0.19561411,0.19427085,0.543164,-0.09993554,0.105817795,0.095952354,0.33084133,0.15122904,0.25541246,-0.032753352,0.6769351,-0.2987104,-0.1604707,0.23412015,-0.3979779,0.27404323,0.12564369,0.14487411,0.2843482,-0.45877895,-0.95238894,-0.57819134,0.028430479,0.9413501,-0.21638942,-0.32868162,0.14384829,-0.24306364,-0.22188422,-0.01357543,0.3376623,0.052139856,-0.031330258,-0.655327,0.2784099,-0.019063102,0.14865646,0.08177705,0.08913995,-0.2941111,0.6594677,0.0039409995,0.5115772,0.28269592,0.19150282,-0.39482477,-0.44298223,0.00022207627,0.84858906,0.16615786,0.1514715,-0.10049057,-0.20001337,-0.28127146,0.0006471361,0.060132932,0.53547174,0.5926114,0.032740317,0.04679845,0.28599674,-0.045336958,0.04709288,-0.08580637,-0.34133384,-0.064065464,0.039679,0.5490316,0.42717883,-0.35992345,0.66788304,-0.2498083,0.3071858,-0.22920908,-0.33552286,0.5779355,1.0458187,-0.30819744,-0.27258652,0.62997305,0.5494962,-0.53278255,0.36305788,-0.5504285,-0.24291226,0.43408543,-0.21028712,-0.26832062,0.30706263,-0.23443627,0.12072061,-0.99438477,0.3153196,-0.20856984,-0.30512708,-0.41879773,-0.155686,-4.1626472,0.28147462,-0.27964664,-0.1656224,-0.06050133,0.014318789,0.16122337,-0.6765494,-0.38573098,0.1463512,0.12783338,0.48512372,-0.05533899,0.22085162,-0.20568216,-0.13637188,-0.17781189,0.23209003,0.048371248,0.30470213,-0.07631808,-0.5316348,-0.023513641,-0.22345352,-0.46651602,0.16081902,-0.8402348,-0.47361544,-0.086877,-0.75334793,-0.31984234,0.6647144,-0.4041408,-0.009857767,-0.28432631,0.08374966,-0.24005437,0.34223557,-0.032791425,0.15564132,-0.011058484,-0.14013104,0.071289934,-0.3506158,0.14990981,0.05917474,0.4492274,0.3372531,-0.08738656,0.16077633,0.6653968,0.6031253,0.0769143,0.7131643,0.50863445,-0.1804765,0.4267118,-0.40062004,-0.09692466,-0.64131916,-0.54401577,-0.13463022,-0.39289427,-0.5636088,-0.0133857895,-0.36122745,-0.5912879,0.57140625,-0.12631242,0.1010737,0.04955691,0.43235847,0.60058916,-0.31635627,0.061648954,-0.0651559,-0.17336147,-0.5116312,-0.29091278,-0.5091595,-0.32635072,0.2072055,0.6898447,-0.2137448,-0.045784675,-0.07075592,-0.16348349,-0.19343266,0.03207463,0.12633766,0.24551591,0.34271187,-0.26480985,-0.6459689,0.47234413,-0.26376668,-0.1556393,-0.35032108,0.2291372,0.42414734,-0.7459196,0.7693793,0.37062043,0.26458177,0.011867732,-0.5187251,-0.34630558,0.114029884,0.0050160247,0.33668074,0.16349398,-0.87468284,0.44685885,0.39884633,-0.29989132,-0.7173173,0.49132654,-0.03637158,-0.42830333,-0.24981365,0.32686037,0.13529202,-0.009554123,-0.27071598,0.10189778,-0.58279455,0.116989054,0.2315198,0.0029488946,0.38294873,-0.17456202,-0.0166412,-0.7269906,0.010477328,-0.50950557,-0.31958678,0.32306924,0.1013862,0.14242612,0.13388352,-0.046675555,0.2270156,-0.34192207,0.08206712,0.12951547,-0.19226384,0.3496161,0.3470698,0.41057143,-0.5221925,0.46508688,-0.08896489,-0.025570223,-0.023356212,0.11708241,0.54040605,0.2117215,0.43324247,-0.040202804,-0.23243895,0.40435317,0.7210656,0.1381743,0.5969947,0.07182713,-0.18706878,0.29098913,0.018931093,-0.010181665,0.19408603,-0.4315669,-0.024257952,-0.07855882,0.23750813,0.41026095,0.071924664,0.32513094,-0.081077404,-0.25338393,0.053733937,0.281706,0.101646826,-1.0611284,0.45074135,0.2307402,0.72012967,0.4043765,0.065344036,-0.18139629,0.66822094,-0.18934114,0.12788093,0.2884443,-0.088743314,-0.5892033,0.6307197,-0.59393215,0.43752974,-0.22063637,-0.057885904,0.08240259,-0.02295058,0.3162085,0.9115366,-0.1518967,0.03129315,0.10284663,-0.3713306,0.019908974,-0.28857514,0.22554104,-0.52341956,-0.19149768,0.5955872,0.4729742,0.20055851,-0.23856115,-0.017307717,0.16405477,-0.08560356,0.048372626,0.07682574,0.21954224,0.048192296,-0.8216836,-0.27214542,0.5998803,-0.058964986,0.18075085,0.032018244,-0.31155485,0.3788496,-0.2494674,-0.17590325,0.008608692,-0.56477034,0.06865912,-0.19489464,-0.4850297,0.62014675,-0.14810184,0.15106547,0.10207977,0.12451547,-0.43703055,0.4541304,0.07265266,0.6103058,-0.17397359,-0.17454407,-0.5569069,0.030337675,0.1381379,-0.14672148,-0.12121594,-0.43441075,0.020744452,-0.4595594,0.3463555,0.15035494,-0.28681654,-0.14232334,-0.026791304,0.07816708,0.46101794,-0.08982678,-0.15846704,-0.16447286,-0.07601833,-0.25169006,-0.054523267,0.008493125,0.35933942,0.18768771,-0.1109668,-0.095566206,-0.09810121,-0.049513042,0.45511302,0.017243955,0.3512899,0.4248752,0.26657787,-0.128662,-0.09939428,0.2384126,0.4712483,-0.16023387,0.007409739,-0.18355073,-0.27639443,-0.33759,-0.047554296,-0.15347996,0.24593799,0.17991182,-0.3359371,0.8723911,-0.03329412,1.3634478,0.09385097,-0.35861287,0.023400128,0.5260725,0.00910856,0.13003628,-0.48175964,1.062054,0.68337107,0.084755346,-0.19657345,-0.3335341,-0.061956055,0.14636347,-0.2154728,-0.295058,0.012222588,-0.6299382,-0.2848944,0.1929722,0.28185,0.36769983,0.07107169,0.15375854,0.20619342,0.116223395,0.25946602,-0.5109638,-0.12042075,0.24653581,0.50715363,0.0031921715,0.171983,-0.43128893,0.40759325,-0.5557187,0.21932866,-0.39753363,0.14376473,-0.26816365,-0.38254404,0.17287871,-0.109169595,0.41946086,-0.25266644,-0.26905653,-0.13907441,0.46018273,0.12830962,0.12929179,0.67953455,-0.15484548,0.0456081,0.06447489,0.52026004,1.0579526,-0.23700018,-0.20814411,0.3815299,-0.21082595,-0.91863805,0.28253725,-0.13711974,0.24043886,-0.056428727,-0.15737577,-0.62372386,0.37663108,0.25330514,-0.113720424,-0.045557052,-0.48002747,-0.14242008,0.30223423,-0.29943088,-0.28349826,-0.23337685,0.27551928,0.74509156,-0.32510883,-0.40164304,0.19048353,0.24100181,-0.19760053,-0.6375025,-0.061584532,-0.47520348,0.36791387,0.22565822,-0.3785159,-0.13997674,-0.034081466,-0.31062275,0.27672163,0.2501141,-0.33247837,0.12516959,-0.3178306,-0.20653202,0.93716687,-0.04873637,0.14267787,-0.61846226,-0.47606158,-0.9360204,-0.55813414,0.48562402,-0.062360857,0.0067726746,-0.6062005,0.014106964,-0.010818364,-0.3641465,-0.17395915,-0.38286418,0.35819682,0.044417698,0.450134,0.046637483,-0.7793315,0.05666796,0.29855147,-0.13263912,-0.6434011,0.42831066,-0.1597819,1.0571244,-0.043774094,0.11855266,0.49581167,-0.35470057,-0.2960365,-0.44102082,-0.081583224,-0.6447554,0.034503765,57 -346,0.32703987,-0.13823153,-0.34958664,-0.033258352,-0.27933785,-0.0978233,-0.2450442,0.347019,0.3895091,-0.025768552,-0.10586138,-0.04692378,0.2064689,0.40211985,-0.09651001,-0.60063666,-0.15679109,0.025492078,-0.5402417,0.49235892,-0.50444025,0.09363401,-0.058636654,0.4491155,-0.0051582414,0.44744858,0.21589844,-0.08735704,0.010111332,-0.11634263,-0.02268267,0.27005672,-0.5962911,0.067243315,-0.21543495,-0.15938357,0.09262456,-0.5817067,-0.30191723,-0.67876565,0.06629375,-0.78726476,0.472802,0.04758572,-0.14365332,0.0959535,0.17118327,0.30180353,-0.32932568,-0.17001818,0.09999107,-0.078180574,-0.11284282,-0.401246,0.0012414881,-0.15812217,-0.4440512,-0.002953606,-0.44408682,-0.29489136,-0.23442249,0.106648445,-0.34470657,0.046162717,-0.06338643,0.4631699,-0.40467733,0.07739759,0.31692007,-0.2803857,0.31447938,-0.46427208,0.016447868,-0.015163532,0.47136286,0.034687746,-0.25659624,0.4253636,0.24342449,0.3397104,0.08726815,-0.21717532,-0.29354566,-0.17507443,0.26470467,0.5747279,-0.16214974,-0.3059772,-0.23773949,0.08105767,0.0020562324,0.28315732,-0.034371424,-0.1712247,-0.10074967,-0.108690895,-0.12729868,0.478301,0.536121,-0.19165279,-0.34863275,0.17233646,0.57012075,0.32715002,-0.20518291,-0.08799215,0.087576754,-0.6471714,-0.15400924,-0.18173279,-0.08057956,0.5589887,-0.15031429,0.15847513,0.7755761,-0.09451008,-0.12604031,0.024172226,-0.05261383,-0.052484255,-0.4479588,-0.05992427,0.15551719,-0.48786265,0.12425876,-0.16068229,0.5807481,0.1513706,-0.70416737,0.3823962,-0.5905015,0.14518353,-0.061346207,0.51852876,0.5981479,0.3112252,0.5843568,0.700465,-0.25755382,0.2709796,0.10578374,-0.5120578,0.1714985,-0.33117405,0.18333694,-0.45468256,0.1191146,-0.009675183,0.07596477,0.2511991,0.007647957,-0.4511641,-0.041854303,0.3224909,0.84981185,-0.1918498,-0.036194332,0.6688062,1.1214718,0.9115283,0.028103428,1.0155473,0.24514236,-0.16507138,0.2448344,-0.25931224,-0.7984872,0.20172906,0.3246948,-0.06353338,0.24545692,-0.1735225,-0.08758478,0.38039795,-0.44299278,-0.101334624,0.14135967,0.3699819,0.33927634,-0.13666867,-0.54976404,-0.1685276,-0.010047742,-0.10105383,0.12130425,0.12924656,-0.14831547,0.43760794,-0.15589197,1.2059759,0.06696138,0.09628003,0.11459088,0.6257884,0.34513417,-0.15157421,-0.1711574,0.49795,0.25450784,0.11186392,-0.56583256,0.33055726,-0.23255062,-0.31144243,-0.053890236,-0.43426332,-0.09761777,0.23055522,-0.2757454,-0.07215906,-0.13301823,0.011641349,0.4306132,-3.2090027,-0.2015429,-0.06037109,0.26761913,-0.19890293,-0.08206091,-0.062322356,-0.530506,0.25677735,0.28613952,0.6073887,-0.6656351,0.39118797,0.48680645,-0.61429894,-0.16843045,-0.68371445,-0.14567196,0.07060326,0.47131297,0.21753971,-0.003276594,-0.15381347,0.2521364,0.6865978,0.1332875,0.18890119,0.3981853,0.32308894,0.091638684,0.41548818,-0.061391957,0.49599177,-0.30076388,-0.15119757,0.27849302,-0.21403159,0.24483947,-0.116674915,0.041457515,0.5120233,-0.30610424,-0.98942626,-0.49112743,-0.11373062,1.0884402,-0.34523243,-0.54233384,0.28765774,-0.38440344,-0.12500107,0.07691206,0.5162597,-0.08748757,0.1779281,-0.7279338,0.18196766,-0.02906033,0.124518104,0.044547264,-0.11860087,-0.2756172,0.65108865,0.0028461006,0.44580656,0.3422214,0.20752491,-0.07874429,-0.3601551,0.06988876,0.52246433,0.25119466,0.029444588,-0.23400338,-0.2331483,0.05310286,-0.17265154,-0.021936476,0.6620703,0.5669571,-0.18188013,0.11140602,0.23455732,-0.018475065,0.067612454,-0.08281607,-0.120635256,0.022238731,0.0017591204,0.4364504,1.0219488,-0.27024406,0.2175344,-0.13571237,0.35999554,0.089981906,-0.4420831,0.6999234,0.343565,-0.18401454,-0.10675876,0.45570883,0.47010565,-0.4687535,0.44287303,-0.47957626,-0.12718399,0.5310668,-0.11353262,-0.35812095,0.16126165,-0.18490362,0.1476101,-0.7595647,0.32762343,-0.26533076,-0.4174659,-0.3915922,-0.049603067,-3.8515694,0.1398956,-0.17285861,-0.1842437,-0.29612857,0.006195843,0.24509202,-0.5791846,-0.6144725,0.21703562,0.1652498,0.46699792,-0.14851962,0.11045922,-0.25870693,-0.22179317,-0.22244112,0.2585536,0.21038903,0.2945057,-0.08726896,-0.41895765,-0.23428302,0.008225868,-0.5906166,0.27449352,-0.46410337,-0.3513947,-0.15242215,-0.3931536,-0.23410438,0.5703675,-0.3225301,-0.085994676,-0.2921111,0.10494093,-0.3447477,0.22254035,0.11416741,0.18488897,0.14967947,0.06839613,0.14784575,-0.22802208,0.5324587,-0.058637206,0.41213956,0.1409113,0.1410801,0.10253906,0.5304392,0.6974203,-0.098290905,0.966415,0.4381959,-0.036299918,0.21405987,-0.32155555,-0.26617393,-0.45107874,-0.294271,-0.06256776,-0.2717556,-0.47019365,-0.054917593,-0.40711254,-0.7090195,0.5557042,0.060840312,0.22483137,0.06889476,0.027203517,0.45551577,-0.1564664,0.021498501,0.0135631515,-0.17096357,-0.7077281,-0.075702175,-0.53402185,-0.53223354,0.046958838,0.65312994,-0.29720926,0.11372997,-0.14408459,-0.3856756,-0.05823654,0.22404914,0.077258185,0.25149578,0.4546101,0.12540898,-0.6036667,0.38075474,0.013028656,-0.2879107,-0.6296193,0.1848393,0.49033752,-0.737735,0.7626904,0.30381036,0.084352694,0.04966907,-0.5106502,-0.38707146,-0.10385688,-0.12447036,0.46541935,0.24059698,-0.93238646,0.41060778,0.24842668,-0.6105074,-0.6459769,0.3831711,-0.13664278,-0.19125652,-0.07213325,0.1543521,0.062569894,-0.06070137,-0.0898878,0.21066983,-0.33348745,0.21894158,0.042711955,-0.035518605,0.44253558,0.0039940476,-0.07527377,-0.65921193,-0.13518031,-0.60663253,-0.22406438,0.35375684,0.07037953,-0.067773595,-0.10530542,0.112886176,0.31732062,-0.1600896,0.10234673,0.029266758,-0.45231253,0.29243025,0.46113595,0.38393244,-0.4394779,0.51891744,0.0962935,-0.15022185,0.21707967,0.02351092,0.25803,-0.14573966,0.40570968,-0.16792855,-0.08849383,0.08951525,0.6423446,0.09126089,0.397585,3.0492034e-05,-0.0046177763,0.6191665,-0.111351915,0.06581028,-0.0267874,-0.48786005,0.12804806,-0.29884857,0.20740066,0.44954816,0.3764348,0.24942231,0.086048804,-0.30037516,0.010100378,0.40515545,0.08998845,-1.1282654,0.33843735,0.2812364,0.84179395,0.48489663,0.04242022,-0.16850328,0.79618424,-0.14673339,0.12794556,0.4426949,0.16031058,-0.59864235,0.6770856,-0.69830954,0.4295772,-0.089474715,-0.12079968,0.1963171,0.15535425,0.32257694,0.63148034,-0.273081,0.057531316,0.029623006,-0.2068248,-0.08314062,-0.3885859,0.009711964,-0.3387868,-0.22611248,0.6343755,0.51124734,0.32460502,-0.23663296,-0.030607352,0.09214566,-0.07312061,0.21425842,-0.10911473,-0.07190585,0.08560814,-0.5910838,-0.19097283,0.5167311,0.01496596,0.2600165,-0.26662022,-0.18973197,0.051127102,-0.31122538,-0.24762665,-0.06334441,-0.5934247,0.12753232,-0.0643085,-0.55831033,0.6023858,-0.19467118,0.13814159,0.14762965,0.06690857,-0.23654938,0.39714554,-0.12962146,0.870732,0.07348932,-0.16073449,-0.2419399,0.09146898,0.20695119,-0.110918395,0.040964477,-0.5238112,0.012852656,-0.28921565,0.553765,-0.13422312,-0.41211802,-0.012927549,-0.16951792,0.10520844,0.5767528,-0.12690993,-0.24534997,-0.11838848,-0.10193931,-0.42852765,-0.119766876,-0.17773566,0.26837882,0.30798417,-0.16094601,-0.02972272,-0.2785121,-0.17139909,0.56973255,-0.084776916,0.46399927,0.11336132,0.12135076,-0.12944646,-0.13813847,0.23547442,0.3987039,0.13596527,-0.085611,-0.34650797,-0.4121514,-0.2915782,0.0738552,-0.029721353,0.20224789,0.034159075,-0.20362285,0.7676566,-0.021178428,1.0885457,-0.026309604,-0.22740738,0.17347535,0.47758994,7.2717667e-06,0.010313119,-0.47423047,0.7879783,0.5237336,-0.18345866,-0.065024845,-0.5460774,0.014989836,0.16787294,-0.25097534,0.01232865,-0.09933412,-0.47835192,-0.23960577,0.14417885,0.15568545,0.31120053,-0.06868167,0.029151542,-0.021839648,0.0636378,0.31440333,-0.4432465,-0.27550676,0.24480319,0.2829602,0.029104132,0.088168845,-0.42008764,0.3351472,-0.3800207,0.16426395,-0.5104471,0.10007739,-0.30516115,-0.35495844,0.050853375,-0.091654085,0.40330508,-0.28391626,-0.38602123,-0.12865052,0.3269711,0.15233551,0.0579148,0.5827464,-0.21975438,-0.013486317,0.14006487,0.6179889,0.9231614,-0.5168711,-0.012440354,0.17509674,-0.31329235,-0.5546674,0.31041288,-0.24740903,0.063235596,-0.18548392,-0.28559095,-0.6228241,0.10742492,0.0075177634,0.04308966,-0.04964993,-0.50709265,-0.25028083,0.16979147,-0.3097129,-0.15378603,-0.2844918,0.2006885,0.7441582,-0.22973074,-0.2750619,0.1410249,0.12208887,-0.06778938,-0.36952108,-0.105839856,-0.09060122,0.21852544,0.06258638,-0.36672607,-0.14454456,0.2570566,-0.41741678,0.13313879,0.05841012,-0.3394909,0.11457939,-0.17143965,-0.078126565,0.9881595,-0.36649475,0.13241848,-0.5876394,-0.56045836,-0.932288,-0.36129162,0.347323,0.059598498,0.000962896,-0.3470723,0.011414788,0.02715925,-0.28055334,-0.16374008,-0.56785303,0.32447833,0.036397684,0.45899874,-0.27988955,-0.8013342,0.08552396,0.16735397,0.00833341,-0.6938682,0.54030627,-0.016234357,0.7609769,0.07086764,-0.0027398595,0.07000019,-0.23346269,-0.04806233,-0.29281515,-0.1771548,-0.6463708,0.13145694,62 -347,0.5644383,-0.36296162,-0.47653785,-0.017854078,-0.28796354,-0.022297187,-0.24422026,0.5193223,0.29902294,-0.44972038,-0.40672773,-0.23652376,-0.029117549,0.43581867,-0.26209155,-0.5348212,-0.111098245,0.2473049,-0.4432021,0.6282471,-0.3585835,0.18907206,0.06498896,0.5320499,0.31382793,0.049077492,0.15136151,-0.016355408,-0.15224878,-0.18295792,0.038274374,0.27658084,-0.5627942,0.22543654,-0.35283235,-0.5599796,-0.16515507,-0.53816664,-0.39862603,-0.7446725,0.30698463,-1.0180753,0.5185071,0.14708042,-0.30396912,0.32591608,0.05009846,0.2811267,-0.17252536,0.094811454,0.079998836,-0.32105446,-0.12232262,-0.23132391,-0.1591066,-0.1896015,-0.5521006,0.009689165,-0.3272943,0.070551105,-0.27972525,0.09474959,-0.20392346,0.1403623,0.1588752,0.32204628,-0.4566662,0.06126055,0.23357782,-0.11934436,0.42302996,-0.6007217,-0.2959315,-0.15545249,0.20746146,-0.25140586,-0.34825903,0.43746042,0.17363729,0.64640415,-0.029537493,-0.110689476,-0.32870927,0.00023027403,0.14664538,0.47784048,-0.2890424,-0.50002724,-0.23905157,-0.069239214,0.46797898,0.20750602,0.05665152,-0.25184685,-0.05515602,-0.13183199,-0.06657891,0.30455452,0.537919,-0.17197405,-0.2172786,0.2699661,0.5600324,0.29243734,0.052612323,-0.016008642,0.16972551,-0.6043116,-0.18627732,0.0114588905,-0.31230825,0.66557646,-0.13038619,0.19331542,0.514813,-0.18255022,-0.04292365,0.09843296,0.04525838,-0.14826916,-0.27109402,-0.4493142,0.45172122,-0.42878968,0.18237345,-0.12815307,0.6830939,0.13154586,-0.59509903,0.2968499,-0.5525121,0.16422777,-0.115219414,0.5172266,0.63295853,0.60069287,0.45147473,0.7891723,-0.55843866,0.030138774,-0.13532302,-0.23626933,0.069244824,-0.34008655,-0.12024905,-0.5195171,0.049136423,0.014487927,-0.11561608,0.32317644,0.55681974,-0.5006313,-0.0678399,0.1707939,0.71335757,-0.32020923,0.13524607,0.9675588,1.1533146,1.1950035,0.046272866,1.2094948,0.31617308,-0.33172426,0.04832166,-0.014345033,-0.86706483,0.32816362,0.4275989,-0.23611034,0.42164224,0.118486606,0.030477157,0.39931384,-0.6205883,-0.10748943,-0.21784952,-0.04742955,0.05573515,-0.03707375,-0.55707175,-0.25049925,-0.23308407,0.15598185,-0.1371741,0.3491079,-0.16750272,0.5856826,0.07656141,1.5221657,-0.1384553,0.0019707594,0.088734165,0.3798962,0.14827524,-0.11243807,-0.015256703,0.124648385,0.3286326,0.04616801,-0.5766792,0.047401275,-0.21083626,-0.55672646,-0.1574887,-0.19273324,0.012708387,-0.0041754437,-0.40705928,-0.2953114,-0.17661312,-0.24524167,0.4769633,-2.2918932,-0.19880536,-0.12487399,0.36559814,-0.26626843,-0.33213118,-0.16794644,-0.40599892,0.4193887,0.35704914,0.5110846,-0.77761537,0.28421086,0.54217106,-0.6764021,-0.13462652,-0.55074435,-0.14881153,-0.011777005,0.24420333,0.0061366386,-0.15111482,0.17514975,0.19986977,0.52508795,-0.019130405,0.15402253,0.29967737,0.35412338,-0.012988135,0.3224315,-0.097312875,0.4163851,-0.49410436,-0.25968868,0.44110784,-0.2486407,0.24304993,-0.21221526,0.14153694,0.5298875,-0.530117,-0.981468,-0.7606279,-0.16026412,1.1059904,-0.2576303,-0.5567068,0.19011375,-0.39517123,-0.32135245,-0.04465281,0.35992116,-0.18348339,0.037019912,-0.9568055,-0.087097876,0.11550112,0.15218651,0.12612565,-0.06283922,-0.46428862,0.7434677,-0.06384922,0.3712298,0.5611696,0.24255863,-0.10798367,-0.5905253,0.08552723,0.81230515,0.50805354,0.36063305,-0.3420216,-0.13670053,-0.14428283,0.011942471,0.09138838,0.41759843,0.66475856,-0.20432714,0.098893516,0.21849401,0.07384352,0.0404082,-0.13324276,-0.19754878,-0.2207115,0.0098432945,0.64785576,0.9320542,-0.1769732,0.15666829,-0.0035408267,0.24050872,0.060566287,-0.49623114,0.6010035,1.2707068,-0.1501094,-0.18822387,0.721732,0.55120623,-0.26226014,0.55585384,-0.74025065,-0.39668474,0.277359,-0.14657582,-0.55085117,0.16684422,-0.3996052,0.22682045,-0.91698754,0.26954767,-0.2039957,-0.21084599,-0.7237849,-0.0387745,-2.5301235,0.26058078,-0.33549944,-0.20658194,-0.20000295,-0.22105287,0.26141682,-0.7204033,-0.73102874,0.18845583,0.15889408,0.67301077,-0.01606582,0.2150421,-0.120947696,-0.2716518,-0.2887946,0.0012667179,0.25236315,0.28779283,0.15407321,-0.54765064,0.008478549,-0.11646088,-0.35819095,0.011873028,-0.63513726,-0.46599796,-0.20049141,-0.3956687,-0.31093055,0.3759184,-0.33167616,0.1390008,-0.15013263,-0.047273513,-0.14309919,0.16190612,-0.004776303,0.19605912,0.085664615,-0.0010907097,0.07176073,-0.124896325,0.2951806,0.06898757,-0.0062420964,0.38740045,-0.36767173,0.102589354,0.54628134,0.750692,-0.2478826,0.9114647,0.7172074,0.013948219,0.15311754,-0.22333561,-0.32794052,-0.68822765,-0.3322053,-0.124194615,-0.45374322,-0.46578,0.013801707,-0.33860132,-0.9920396,0.6279994,-0.02941574,0.26121646,0.0024094325,0.12640014,0.5853204,-0.31728497,-0.082426354,-0.032766562,-0.13121943,-0.5861622,-0.3449485,-0.7257276,-0.50943786,0.12124883,1.0708951,-0.11751579,0.11873715,0.3185561,-0.26268217,0.108782224,0.24085715,-0.17021786,0.055065606,0.62030095,0.2027323,-0.6457153,0.47496074,0.2690793,-0.23877956,-0.6749878,0.32434013,0.5999247,-0.60423505,0.5160849,0.55256164,-0.07889251,0.011782174,-0.5551694,-0.24408828,-0.25998262,-0.25719187,0.43945822,0.4496434,-0.7097308,0.45320076,0.44075856,-0.41252735,-0.8258273,0.61813635,0.019400101,-0.31977066,0.058588833,0.2979412,0.21678042,-0.05322137,0.08566083,0.29398748,-0.3960747,0.32625452,0.11186159,-0.06824453,-0.014441214,-0.20258006,-0.08898973,-0.9832897,0.11093204,-0.5639729,-0.2505117,0.25297725,0.1466683,-0.049175996,0.09247895,0.21659067,0.31833082,-0.27698478,0.121251866,-0.20557916,-0.35146046,0.4440207,0.522814,0.4821919,-0.3161504,0.61128885,-0.08115787,-0.09703774,-0.0884334,-0.020318462,0.42984417,0.10963261,0.32689452,0.07067694,-0.2848985,0.1083089,0.5615393,0.1620269,0.24221346,0.053583194,-0.08463396,0.47916013,0.27604538,0.2950128,-0.28320166,-0.45370102,0.0035869288,-0.34450993,0.078876905,0.3912994,0.17553568,0.37477508,-0.119027786,-0.33435866,0.08965208,0.063497536,0.08450316,-1.3959051,0.2218132,0.12477834,0.71219766,0.7338629,-0.12639226,0.22556143,0.7105395,-0.2872079,0.0145923365,0.43329033,0.04557277,-0.538042,0.4555954,-0.69399834,0.39699546,-0.0743774,0.004118547,-0.013897197,0.17946169,0.41833302,0.62880814,-0.14082499,0.122386634,-0.08824212,-0.3335913,-0.017067844,-0.488026,-0.015826123,-0.6493434,-0.26983896,0.8328465,0.5395322,0.52380544,-0.18645872,-0.0121797025,0.04870608,-0.16310842,0.2322948,0.1204374,0.012052255,-0.17724381,-0.7116766,0.0011566089,0.5652794,-0.054173835,0.106246114,-0.12062214,-0.3938693,0.20495358,-0.22101375,-0.25095996,-0.073300526,-0.8317217,-0.043965995,-0.45682207,-0.34992787,0.46622178,-0.13711666,0.17251457,0.23931351,0.055891525,-0.35968867,0.10832178,-0.0027952364,0.8707965,0.19034608,-0.36690468,-0.17906554,0.22855102,0.28823003,-0.14920892,-0.043491345,-0.029528797,-0.03717679,-0.4122055,0.6543508,-0.057145063,-0.16464183,0.30530906,-0.124099635,0.12931572,0.5863183,-0.22578302,-0.3486938,0.059136264,-0.1077325,-0.3763897,-0.44966632,-0.24586856,0.20587459,0.23573706,0.025827365,-0.030643625,-0.17620876,0.07482424,0.5638322,0.0030662033,0.41606882,0.36573654,0.058698494,-0.49694106,-0.095621124,0.25254458,0.4682185,-0.030632725,-0.27504718,-0.33595258,-0.6830235,-0.3037985,-0.023685813,-0.17967473,0.38903278,0.0048007295,-0.22193249,0.833777,0.041547913,0.9951762,-0.009012991,-0.42906687,0.097534575,0.4889048,-0.07132791,-0.17829935,-0.24323665,0.8500662,0.61679596,-0.20859882,-0.19306083,-0.35414553,-0.02822583,0.12224256,-0.17788665,-0.0540615,-0.13638362,-0.61099494,-0.33669424,0.2613969,0.3359559,0.13929768,-0.1697686,0.18791778,0.2136976,0.01829358,0.36695954,-0.30258825,-0.27328363,0.35423997,0.27911666,-0.035508495,0.06540897,-0.33545905,0.32414538,-0.4156219,-0.1326055,-0.37434763,0.09738069,-0.21982656,-0.26642507,0.21052286,-0.064049914,0.26644167,-0.3782267,-0.22985804,-0.30034462,0.58642375,0.028037557,0.0591593,0.5262194,-0.32900456,0.05877467,0.031313412,0.35721296,1.1335245,-0.37669638,0.02296399,0.34026474,-0.49458757,-0.39820218,0.43788454,-0.3157224,0.14492856,-0.005584019,-0.32196093,-0.8034783,0.14178328,0.14630677,0.09580142,0.13501331,-0.7034093,-0.0073366635,0.33481193,-0.32502103,-0.27423677,-0.3688174,-0.018443767,0.43831247,-0.22053044,-0.31229058,0.19608535,0.17975049,-0.117096014,-0.39994472,0.013711386,-0.48291436,0.29936394,0.12855627,-0.38745373,-0.15193379,0.070796914,-0.4993927,-0.12901714,0.16787441,-0.37742668,0.091029115,-0.5715399,0.102027275,1.0239893,-0.23534577,0.25407258,-0.55894935,-0.4386902,-1.0630082,-0.45725083,0.6106438,0.35430264,0.123013176,-0.6288868,0.13996015,-0.013839649,-0.25105473,-0.15502355,-0.30515787,0.627717,0.23861834,0.44198236,-0.10884041,-0.6568293,0.16876854,0.111418284,-0.24315922,-0.4279403,0.45245358,0.15410607,1.0056716,0.07220713,0.12746035,0.19504984,-0.7282976,0.12918241,-0.0659541,-0.26900885,-0.59006035,-0.042633813,63 -348,0.38160464,-0.17680833,-0.4669501,-0.07400855,-0.41797766,0.20374146,-0.13033651,0.3832321,0.18444358,-0.44536886,-0.13606875,-0.022995207,-0.10547247,0.1831743,-0.19259723,-0.5173783,-0.014088874,-0.0029351371,-0.47086993,0.53429335,-0.22532617,0.2552512,-0.087381564,0.35158485,0.29457358,0.28904533,0.08940876,0.024846504,-0.14226262,-0.21310557,-0.087890856,0.25880897,-0.55798733,0.31827113,-0.124583915,-0.36120734,-0.051926997,-0.2776973,-0.128594,-0.82421124,0.33512047,-0.8559372,0.4213509,0.04222644,-0.36233917,0.35489264,0.24075796,0.27842975,-0.062377494,-0.20698169,0.23110117,-0.22741209,-0.033517566,-0.3622799,-0.040468577,-0.4636702,-0.5317508,-0.17405245,-0.5457722,-0.31167603,-0.312708,0.18240039,-0.3519233,-0.11462028,-0.079870105,0.49249536,-0.47532207,0.14423315,0.10432927,-0.23136123,0.2021559,-0.81652343,-0.31773448,-0.0053687883,0.29008225,-0.08496041,-0.19058172,0.47913638,0.19253363,0.22247615,-0.09420598,-0.16576493,-0.2638385,-0.11941655,0.052636385,0.40200296,-0.30097577,-0.23589553,-0.022536682,-0.09673919,0.3747132,0.24631333,0.268681,-0.08714388,-0.075877786,0.10058639,-0.082999006,0.39777088,0.36097792,-0.2231027,-0.077841565,0.38892564,0.54488826,0.22477162,-0.2377537,-0.1615194,-0.011766268,-0.48360178,-0.11823332,-0.0038693207,-0.18343142,0.3662834,-0.07869482,0.24706754,0.71065986,-0.20165825,0.08332586,0.1902461,0.178278,-0.02837049,-0.31643957,-0.3384567,0.34500948,-0.47898546,0.16805574,-0.22577849,0.5794544,-0.07394348,-0.43441582,0.27545607,-0.5266026,-0.0189639,-0.0029780865,0.38230664,0.5697106,0.47089905,0.15691148,0.6808299,-0.30716038,-0.14947273,-0.05907165,-0.14050226,0.15766189,-0.2405574,0.15214333,-0.5665888,-0.01883465,-0.11411309,0.0077394927,0.13280758,0.3167831,-0.66854805,-0.22953281,0.10827469,0.76414925,-0.28063565,-0.000206198,0.78073704,1.1113924,0.88987064,-0.024271939,0.76285493,0.048141126,-0.22643842,-0.014578028,-0.014195825,-0.49290627,0.21109207,0.45740408,-0.18389677,0.26674962,0.074111685,-0.04185875,0.38558483,-0.13931784,-0.19340587,-0.12595633,0.22261856,0.23323083,-0.18662511,-0.2651737,-0.22225983,0.012182206,-0.0317361,0.09054734,0.28604358,-0.31338882,0.40482143,0.14756557,1.4855852,-0.023299823,-0.050534897,0.14900245,0.3745702,0.20603101,-0.12272978,0.1823933,0.4232227,0.1254837,0.2343627,-0.4528079,0.39090225,-0.2295283,-0.592109,0.018596629,-0.36420536,-0.17256978,-0.027904673,-0.43785805,-0.16842754,-0.16762392,-0.16078599,0.33522922,-2.7981188,-0.115911685,-0.17260602,0.35585472,-0.15713869,-0.2341214,0.08488432,-0.27744588,0.36230975,0.26867226,0.4034814,-0.5341222,0.20283021,0.66966105,-0.71400267,-0.0846739,-0.43595833,-0.13279083,0.08488759,0.3639329,0.10043655,-0.055755693,0.13393989,0.17006823,0.3236697,0.0034257707,0.13446851,0.36760992,0.4289119,-0.28742066,0.37669423,0.075664826,0.46970072,-0.30027634,-0.26540878,0.33019155,-0.47874266,0.2831592,-0.07493428,0.1493481,0.52662003,-0.17115995,-0.83058655,-0.6189012,-0.10343353,1.1495574,-0.16764033,-0.62882984,0.19233479,-0.28841883,-0.27749425,-0.11680407,0.45408815,-0.06371124,0.008205205,-0.78744,0.08896582,-0.20074478,0.1557782,-0.011129775,-0.07223185,-0.42898256,0.77725595,0.11681402,0.65733945,0.24220936,0.17996153,-0.5049339,-0.26590946,0.05942335,0.62075627,0.54455835,0.009034923,-0.10066797,-0.15754926,-0.0834411,-0.16491388,0.21952502,0.77291566,0.40228578,0.032858424,0.12067042,0.31293628,-0.124115,0.009418688,-0.1853499,-0.26178038,-0.13692336,0.035809975,0.4858942,0.6656033,0.015859773,0.39669976,0.12523074,0.39314148,-0.07983897,-0.58094317,0.36346468,1.085098,-0.17035572,-0.33881918,0.5248531,0.40849975,-0.39014092,0.36453632,-0.63706297,-0.20326127,0.6179229,-0.17888048,-0.55596876,0.08766196,-0.30760002,0.13137844,-0.63944286,0.32668933,-0.5525738,-0.39705226,-0.6192071,-0.19828212,-2.7759697,0.17113264,-0.30625886,-0.17912817,-0.3855737,-0.19041236,0.18470483,-0.83415395,-0.4810546,0.1794704,0.075228654,0.6975528,-0.13789175,-0.016828852,-0.27096587,-0.4842289,0.08096524,0.2979872,-0.018398464,0.17530116,-0.09794963,-0.3201808,-0.041425772,0.12829867,-0.43149439,-0.009148433,-0.51971364,-0.6112584,-0.09515711,-0.44317845,-0.27469835,0.7158248,-0.332287,0.019801984,-0.11879553,0.10768858,-0.07033368,0.07542561,0.11516007,0.18717703,0.073019646,-0.011513174,0.08391612,-0.38510093,0.35781866,0.06311829,0.48897317,0.40022755,-0.10299592,0.2947928,0.5026573,0.54284626,0.042786717,0.82916725,0.18054451,-0.15959825,0.29330727,-0.33011442,-0.35395566,-0.62183255,-0.20605032,0.20831439,-0.26063007,-0.325174,0.023432553,-0.3312221,-0.7136846,0.5911326,-0.038043555,0.3261233,-0.13664182,0.32504925,0.49171707,-0.16573587,-0.15154035,0.0114360945,-0.14400871,-0.559089,-0.20472308,-0.6361429,-0.4763928,0.13388409,0.71847695,-0.37479678,-0.007517624,0.2280186,-0.107079305,0.20963307,0.0825956,-0.019046525,-0.08332144,0.4104974,-0.024763703,-0.6539437,0.58453643,-0.121223025,-0.17894936,-0.5018113,0.33538723,0.48817492,-0.47719505,0.5026413,0.3879349,-0.07264254,-0.37275615,-0.43515995,0.042681098,0.19497474,-0.14772525,0.3934675,0.32126278,-0.77301776,0.32515064,0.36212516,-0.34496003,-0.5487033,0.5333641,-0.05084955,-0.29007965,-0.14394607,0.43423748,0.2750431,-0.04819702,-0.022455275,0.22783081,-0.48177984,0.21618573,0.04961437,-0.07421887,0.17646909,0.014841947,-0.16630423,-0.68379873,0.3552836,-0.38015202,-0.33523297,0.39300188,-0.14016709,0.022078604,0.40921,0.21678849,0.39799547,-0.2835641,0.042890932,-0.068752386,-0.3298317,0.37400937,0.4941988,0.6484709,-0.3764727,0.46282858,0.011100375,-0.038874593,0.26312807,0.042012777,0.37354064,0.14683358,0.51280284,0.07732684,-0.102189794,0.21386957,0.65445596,0.18285353,0.4330476,-0.109758474,-0.2027377,0.093970075,-0.07067944,0.29753783,-0.10589279,-0.6105903,0.14408675,-0.084434286,0.020394947,0.46840268,0.10168349,0.24199821,0.091801696,-0.37546587,0.06043914,0.28860447,-0.030617664,-1.0958577,0.41449076,0.2791874,0.93067724,0.39681226,0.0761301,0.023965355,0.75483006,-0.2529711,-0.006484351,0.32635644,0.032384507,-0.41527563,0.51931465,-0.71457344,0.4188807,0.050000574,-0.082897834,-0.15507782,-0.12634411,0.14112994,0.6593504,-0.21234097,-0.08480408,-0.02917862,-0.5163969,0.24588577,-0.28231487,0.08490556,-0.35540265,-0.23339626,0.50111586,0.55120856,0.3692646,-0.1963909,0.15223739,0.1012371,-0.18738164,0.31681266,0.022916062,0.10155802,-0.08800423,-0.41311345,-0.09942402,0.3797788,-0.20464495,0.2871689,-0.098461986,-0.17747392,0.22824061,0.041290324,0.016159382,0.0041143787,-0.5946892,0.25367898,-0.2606959,-0.4819756,0.5152744,-0.059334975,0.037181217,0.2291694,0.029438917,-0.2202812,0.3670656,0.17846371,0.68434465,0.057044275,-0.12291243,-0.34554508,0.14696994,-0.08566813,-0.117310576,0.091449656,-0.1505724,0.2889777,-0.4805912,0.43860143,-0.15996265,-0.31929484,-0.1545542,-0.23015179,0.047153283,0.4846694,-0.13545753,-0.14449365,-0.27692637,-0.07438086,-0.17842208,-0.2826757,-0.21416497,0.20242132,-0.04993003,0.11534989,-0.27138925,-0.05014004,-0.33645204,0.3347369,-0.14229381,0.45572278,0.39275065,-0.11845042,-0.41364804,-0.062957816,0.20218611,0.40360567,-0.14062546,-0.033762824,-0.34224516,-0.5287969,-0.46187487,0.34606647,-0.11166864,0.29884338,0.076162525,-0.26407692,0.8727301,-0.24584723,1.0545495,-0.21891774,-0.3510089,0.07406759,0.6101352,-0.12818669,-0.03738721,-0.14263794,0.97510785,0.61966133,-0.0616417,0.0037412602,-0.31864664,-0.018393,0.30334774,-0.27689567,0.06330032,-0.06814396,-0.60965455,-0.30437288,0.109023646,0.34103647,0.10223409,-0.14261326,-0.041026324,0.33390623,0.1587653,0.17771038,-0.51469666,-0.2934564,0.2620422,0.17456003,-0.12230022,0.1805421,-0.5371658,0.38260883,-0.5508247,0.20610061,-0.45357293,0.12125029,-0.21272253,-0.18240735,0.19828115,-0.057903327,0.20914373,-0.2830948,-0.33321506,-0.106029876,0.22666477,0.20813057,0.21501483,0.4844872,-0.25796396,0.10034985,0.11354052,0.46879944,0.78066826,-0.14862086,-0.16234167,0.20014109,-0.52863085,-0.6651307,0.24979995,-0.32379016,0.12930445,-0.062107246,-0.10259201,-0.5429725,0.22780071,0.2527807,0.08198427,-0.04244614,-0.7385436,-0.070084296,0.09155947,-0.5129131,-0.17691824,-0.31977472,0.051951025,0.4783071,-0.24539338,-0.12665977,-0.012413574,0.32976526,-0.11057858,-0.45416045,-0.0008249368,-0.38933796,0.43374982,-0.016945615,-0.34026164,-0.1703536,0.06544989,-0.38329673,0.34904432,0.17982075,-0.3247456,0.107513316,-0.18499874,0.27860975,0.6183552,-0.11910579,-0.005897301,-0.47521964,-0.42661673,-0.74841183,-0.41550735,0.053006124,0.13602665,0.00433115,-0.6904217,0.056371998,-0.15201186,-0.14060293,-0.22125919,-0.43756613,0.3840138,0.16823806,0.4603627,-0.14108968,-0.9141216,0.25263172,0.1204854,0.026337441,-0.52699506,0.46856216,-0.26779723,0.7648363,0.053846527,-0.020325635,0.0928532,-0.3651159,0.12594526,-0.26715404,-0.3340301,-0.45123926,0.004960724,69 -349,0.29954842,0.012403837,-0.6212691,-0.11255072,-0.1228308,-0.18957488,-0.13697307,0.4789302,0.060508728,-0.54482406,-0.1987112,-0.34823248,-0.061140902,0.4772512,-0.31698337,-0.59018713,-0.1011048,0.01052854,-0.41415095,0.48414728,-0.4409292,0.20426807,0.141185,0.45724717,0.14213923,0.27809462,0.37593627,-0.21034706,-0.2300121,-0.15509956,0.0066736424,0.18449795,-0.45509228,0.0066688233,-0.16374035,-0.5887477,0.07517202,-0.48997203,-0.37699223,-0.6748254,0.44832972,-0.8545979,0.38420963,0.16474345,-0.07900955,0.31302145,0.18019144,0.29110608,-0.19583999,-0.14360122,0.22186849,0.06970802,0.063380264,-0.106627,-0.42054018,-0.44602117,-0.5696174,0.1990198,-0.41102645,-0.29220232,-0.22629002,0.1405176,-0.3593453,-0.07141974,0.037502892,0.37020722,-0.40826225,-0.3057425,0.26928326,-0.1300166,0.41225567,-0.5897256,-0.19349787,-0.13459997,0.19217369,-0.3564989,-0.025337199,0.39734188,0.20952119,0.5211285,-0.058320947,-0.19233635,-0.46774906,0.03080816,0.14327905,0.39154992,-0.23363674,-0.5650963,-0.07286347,0.039799888,0.113460675,0.21622062,0.20738234,-0.27379662,0.036683023,0.22408465,-0.24784593,0.42888206,0.53995603,-0.3662589,-0.23743185,0.15540467,0.5276246,0.19415377,-0.25650012,-0.14717554,-0.0018774526,-0.5370632,-0.17512797,-0.021652648,-0.25779396,0.5602589,-0.05160014,0.34648165,0.7293278,-0.14044727,0.15957542,-0.043174893,-0.14062081,-0.24485527,-0.33311176,-0.16704467,0.18711618,-0.3892784,0.20868932,-0.17203875,0.74100435,0.20431376,-0.7249562,0.43290314,-0.578959,0.13182043,-0.09975547,0.42307255,0.61993754,0.20449409,0.34811702,0.61669177,-0.54755485,-0.01836821,-0.07072712,-0.4354301,0.1711897,-0.08718764,-0.075930186,-0.40713885,-0.1715763,-0.06978271,0.007399954,0.036579303,0.2229538,-0.56145376,0.0837215,0.18704364,1.0422007,-0.29506788,-0.07853549,0.7011099,0.9792227,0.9247078,-0.016393498,1.0531688,0.083111726,-0.23149972,0.52379096,-0.35350063,-0.7583398,0.34606555,0.4482329,-0.33051753,0.21358423,-0.017303405,0.20712946,0.40392905,-0.432745,0.12966134,-0.36783645,-0.027555278,0.25237912,-0.09756502,-0.2948516,-0.0755296,-0.037727058,-0.0995907,0.076842956,0.24367812,-0.09077127,0.15619956,-0.1310877,1.7430006,-0.041985016,0.15011282,0.1254353,0.54994017,0.1322079,-0.014435291,-0.04106601,0.12536152,0.23009463,0.0680425,-0.5579409,0.08642028,-0.32373926,-0.5797745,-0.10302836,-0.32618394,0.013401313,0.09599326,-0.6294673,0.021975758,-0.043476913,-0.28911266,0.2939039,-2.6823978,-0.2515174,-0.15590702,0.2051676,-0.3530151,-0.30258608,-0.17314522,-0.5507068,0.6249757,0.36934692,0.47449937,-0.5373718,0.40706554,0.50593346,-0.37365267,-0.09046887,-0.6005613,-0.09648158,-0.07769238,0.29504943,0.028891489,-0.122518145,0.0991549,0.10199482,0.37174177,0.005918622,-0.04225691,0.037028704,0.3495839,0.14200158,0.5633289,-0.09988924,0.51648444,-0.3606029,-0.19418344,0.37918156,-0.3618946,0.20256077,-0.13230744,0.25316688,0.275768,-0.49725464,-0.92462283,-0.73226464,-0.49228,1.0952576,0.039015103,-0.31780753,0.35879442,-0.21214531,-0.18473008,-0.17005278,0.4933627,-0.07978934,-0.016249593,-0.8564654,0.16828866,-0.20880143,0.10890698,0.06398115,0.09890078,-0.32488585,0.5940665,-0.01529534,0.37262195,0.50573474,0.16848733,-0.24503501,-0.4552693,0.10829646,0.8172975,0.2915618,0.07580805,-0.18703975,-0.17650393,-0.35996857,-0.14586735,0.09990896,0.38027498,0.8083304,0.0141733205,0.004722509,0.21227323,0.11962968,-0.020961719,-0.10410159,-0.3500187,-0.07812999,0.010066764,0.5234915,0.5874651,-0.31134123,0.39651865,-0.119084574,0.40073052,-0.24254827,-0.36438006,0.5360511,0.9642989,-0.16844381,-0.16254799,0.46747085,0.3929649,-0.3453284,0.45560506,-0.5785442,-0.29008627,0.47205117,-0.20166883,-0.43334273,0.08784791,-0.26973206,0.12018657,-0.94258016,0.21569517,-0.31532288,-0.20643108,-0.6271335,-0.285413,-3.7859743,0.16870888,-0.32230255,-0.13219716,-0.046133537,-0.011225449,0.26876995,-0.68713766,-0.7129711,0.0439273,0.023444531,0.75229007,-0.019349173,0.12808022,-0.20471801,-0.10289085,-0.18041556,0.05454975,0.2726263,0.2979448,0.037264436,-0.5006775,-0.14057095,-0.35460022,-0.52002877,0.11034583,-0.58430034,-0.44934493,-0.26883644,-0.5738991,-0.29352453,0.6672465,-0.35975924,0.06394554,-0.012642262,-0.03893354,-0.13867314,0.49433368,0.19805372,0.16057868,0.12223118,0.0523875,0.045989092,-0.3271323,0.24264108,0.09451103,0.37077498,0.44579458,-0.00415613,0.33022594,0.5186562,0.77121824,0.05047422,0.76095295,0.5103518,-0.026150065,0.28419712,-0.402811,-0.25712422,-0.63944155,-0.37720808,-0.045863207,-0.31743693,-0.62666065,0.01676224,-0.3136203,-0.85224956,0.6325569,-0.05006596,0.090548396,-0.012144466,0.12738936,0.34411883,-0.23115148,-0.054838378,-0.01696476,0.04596168,-0.5995272,-0.35510758,-0.5772022,-0.6028846,-0.04106053,0.89728004,0.04860276,-0.13911393,-0.057306644,-0.18258609,0.06256969,-0.03422037,0.060131606,0.18955436,0.32016352,-0.018531233,-0.678413,0.5730885,-0.08721803,-0.103310145,-0.6023001,0.028203955,0.54283917,-0.64377016,0.45043597,0.2970349,0.05142222,-0.009802878,-0.48845768,-0.20815934,0.009450491,-0.1721357,0.2797685,0.071331285,-0.7063221,0.3995864,0.4218592,-0.23986103,-0.720276,0.45711878,0.05508817,-0.21460299,-0.13910143,0.25267857,0.14147367,0.100068346,-0.233442,0.26949778,-0.31398436,0.13815284,0.38348743,0.059865214,0.5886405,-0.30637315,-0.12008308,-0.6907372,0.09402853,-0.47993454,-0.17926085,0.29294038,0.13431826,0.00899045,0.18727754,0.023642983,0.30848092,-0.14295705,0.17417397,-0.035653777,-0.11497707,0.23114856,0.39735493,0.46725067,-0.56940335,0.59814817,-0.13702062,-0.12030792,0.238108,-0.019199083,0.4884536,-0.031442374,0.2630637,-0.033259768,-0.24481228,0.32701963,0.8961005,0.20888877,0.42326832,0.123958826,-0.19592173,0.26796633,0.08013679,-0.013109411,0.051982205,-0.58677197,0.058942027,0.0546029,0.18087338,0.522004,0.07724865,0.32402158,0.0037498858,-0.36647588,0.041560195,0.11402792,-0.011115453,-1.176857,0.5239661,0.18207023,0.8080234,0.59419125,0.032852273,0.08750297,0.56064814,-0.11908561,0.20847835,0.4006222,-0.14233994,-0.68768156,0.55090934,-0.4164558,0.4791921,0.03449694,-0.11485609,-0.10217668,0.058260594,0.45924643,0.64824754,-0.19785242,0.15397921,0.08358621,-0.14367172,0.2934866,-0.33873972,0.07207372,-0.4329106,-0.08043671,0.6370498,0.5988619,0.14582558,-0.15971813,-0.1510998,0.14104491,-0.01623496,0.13480529,-0.120952725,0.20086196,-0.043851964,-0.64341784,-0.31071663,0.5187609,0.12391268,0.2791725,-0.024800362,-0.33201176,0.25727814,-0.0807912,-0.032594316,-0.10620505,-0.6547435,0.01475894,-0.2684395,-0.38651007,0.37517232,-0.13472438,0.3517336,0.112329416,0.0935692,-0.34809288,0.44755435,-0.027509037,0.5353363,-0.20978417,-0.07041933,-0.41622052,0.14355232,0.16260299,-0.2002096,-0.1180206,-0.38899764,-0.013957338,-0.45066947,0.4584046,0.0192659,-0.19757406,0.009324689,-0.13589056,-0.014017074,0.6152778,-0.070289776,-0.03303819,-0.015739428,-0.13102235,-0.23978665,-0.117065534,-0.0800894,0.2665058,0.03806013,-0.008551227,-0.11049839,-0.17536625,-0.04089566,0.5394737,-0.027182741,0.36638162,0.35335663,0.12488482,-0.3879352,-0.26947394,0.2030387,0.50196576,-0.015057939,-0.13296717,-0.27876946,-0.27148366,-0.31004712,0.25248343,-0.15099195,0.26977798,0.2567713,-0.41037235,0.5588788,0.1934727,1.3683943,0.12330314,-0.24971247,0.026038812,0.43864408,0.04000532,-0.14186168,-0.40917152,0.8728157,0.5378267,-0.09140488,-0.3190408,-0.26424375,0.017937755,0.157442,-0.22599618,-0.2746595,-0.05520498,-0.60538334,-0.33863178,0.21274246,0.38589716,0.17281982,-0.14323412,0.05845514,0.032590788,0.048635237,0.45230108,-0.39100185,-0.30871248,0.32270366,0.31579468,-0.15681903,0.20953576,-0.40493658,0.50102526,-0.40188494,0.030399641,-0.3727869,0.16692267,-0.20626213,-0.33203864,0.12746565,-0.06021694,0.39638,-0.04601827,-0.3416328,-0.21442045,0.43925637,0.18872355,0.29187718,0.60904837,-0.17761834,0.1129997,-0.09838058,0.66448265,1.1023492,-0.21808593,-0.019721087,0.28337544,-0.18348898,-0.43932185,0.18534163,-0.32816723,0.14096926,-0.13683748,-0.11594921,-0.5143271,0.18545416,0.23049338,-0.21390173,0.032876562,-0.46063334,-0.39987668,0.1636496,-0.28263178,-0.3151087,-0.47435164,0.05557235,0.69745356,-0.28029147,-0.08310346,0.1384236,0.24540122,-0.10158161,-0.41869077,-0.124011524,-0.20355597,0.29422352,0.20335642,-0.36896995,0.026703209,0.08532511,-0.43736914,0.29064688,0.028722227,-0.39720115,0.071619384,-0.17568137,-0.08334998,1.0479649,-0.101734005,0.24907997,-0.3793271,-0.51962435,-0.9964281,-0.4444139,0.7059855,0.09063029,0.03172681,-0.5400879,0.028311083,-0.018891683,-0.11943591,-0.013671249,-0.2684933,0.24985263,0.059431303,0.6249642,-0.091382824,-0.6227625,0.016352683,0.07509612,-0.13112281,-0.5181126,0.58964866,0.061388724,0.85747916,0.06984625,0.0060952646,0.33662584,-0.284083,-0.10845647,-0.30888632,-0.21223345,-0.7360249,0.09770673,70 -350,0.44362333,-0.11140263,-0.3762322,-0.15862761,-0.2549419,-0.12652276,-0.21024789,0.27639645,0.20640591,-0.13975082,-0.08857493,-0.20257911,0.06540651,0.4475276,0.023001866,-0.6995154,-0.17485857,0.011372806,-0.5877277,0.34487128,-0.7027949,0.20211089,0.1252142,0.34947863,0.019893985,0.46524575,0.43402514,-0.22973032,-0.12634058,-0.04558786,-0.03733586,0.14341387,-0.55476695,-0.014051376,-0.010712151,-0.3035027,0.08846994,-0.50099975,-0.15635571,-0.6084003,0.11925793,-0.77441937,0.37920585,0.33243942,-0.09664257,-0.02849047,0.0075514275,0.4960951,-0.44207922,0.24831238,0.22801486,-0.08186625,0.124896385,-0.4422268,-0.035488505,-0.3270389,-0.46364465,-0.0190255,-0.41161186,-0.48379442,-0.083351456,0.09482984,-0.24910249,0.0021694899,-0.24281308,0.32466468,-0.4539908,-0.19394822,0.4702913,-0.27175936,0.42824763,-0.3589537,-0.05890613,-0.08351411,0.27654782,-0.051529624,-0.20865263,0.43341318,0.26595956,0.4873715,0.11970227,-0.2851619,-0.26208875,-0.15668099,0.16673176,0.49886295,-0.28685096,-0.27677146,-0.10412295,-0.028782384,0.10793853,0.43996748,-0.12053824,-0.27854818,0.061009288,0.07970704,-0.11689287,0.17999686,0.495743,-0.43571022,-0.3729287,0.22309005,0.61708486,0.018509533,-0.14402363,-0.11069907,0.027993819,-0.6501164,-0.2415755,0.19990896,-0.0640548,0.3848377,0.048306625,0.014724127,0.8878547,-0.20377378,0.04978672,-0.13236754,-0.22374308,0.049260776,-0.38702378,-0.30898577,0.2474596,-0.44419715,-0.002488443,-0.3173892,0.66377574,0.25790143,-0.77332944,0.46705538,-0.6546263,0.16614076,-0.1053946,0.6859952,0.49526504,0.29986235,0.40525642,0.72354186,-0.4688849,0.2889412,-0.058048844,-0.38353106,0.19914845,-0.14811707,0.24708699,-0.5186854,0.0027796456,-0.101299345,0.05083528,0.16675226,0.25915155,-0.6132949,0.11533018,0.31189027,0.91068065,-0.36252922,0.06774091,0.3553761,1.1416867,0.92034096,0.036869287,1.0332279,0.43457723,-0.367264,0.37091032,-0.6424762,-0.5483106,0.16837457,0.37451163,-0.027519856,0.3572058,-0.17715335,-0.05471274,0.24431084,-0.31603485,0.18400201,-0.117975794,0.14090802,0.100813374,-0.026141929,-0.5705922,-0.16573368,-0.13012291,-0.14071031,-0.034500495,0.20251401,-0.2530726,0.12476875,-0.25584966,1.705634,0.04565056,0.19590138,0.15152988,0.61314213,0.17185126,-0.22907655,-0.026321292,0.43124732,0.26616064,0.0504329,-0.59882385,0.5220348,-0.2506929,-0.47555342,-0.011519296,-0.37614325,0.13187243,0.11702969,-0.4648786,-0.0085191745,0.040543977,-0.2520867,0.4748341,-2.8121846,-0.17373344,-0.07417364,0.30868927,-0.37209696,-0.1756115,-0.19998395,-0.40827227,0.19308901,0.36764738,0.4927895,-0.6567718,0.44709212,0.4337816,-0.4172246,-0.17721115,-0.73542184,-0.04310582,-0.12141367,0.2099792,0.055717263,-0.16497286,-0.107051015,0.2521104,0.72210026,0.0015209743,0.0844534,0.272297,0.31058088,0.17785203,0.65906066,0.010552096,0.42538705,-0.36557707,-0.25336352,0.31546935,-0.29189438,0.18178247,0.0013754964,0.007511769,0.3330896,-0.44509643,-1.0823482,-0.6483488,-0.52093655,0.8494984,-0.36736244,-0.44130185,0.2751965,0.0728805,-0.009925349,-0.007287576,0.49906746,0.071866326,0.27382937,-0.72674817,0.19414201,-0.11108421,0.27127782,0.18167713,0.0010598089,-0.34441543,0.60519713,-0.06564313,0.5016075,0.34836882,0.13734512,0.06749194,-0.262994,0.13989897,0.7878395,0.11270119,-0.045338035,-0.024640236,-0.31178445,-0.019498298,-0.13430923,0.022159917,0.40239254,0.85512483,-0.15513262,0.07716139,0.28911778,0.009626435,-0.07205843,-0.07685077,-0.35194537,0.09012864,0.13133824,0.44399518,0.6913982,-0.19918895,0.43142053,-0.15894802,0.48295003,-0.013049705,-0.3866407,0.5434697,0.4034727,-0.06692291,0.10314345,0.469165,0.50144786,-0.51791364,0.50115544,-0.7227283,-0.15203308,0.6877726,-0.14922287,-0.43421674,0.20586522,-0.28984335,0.13028994,-0.8456221,0.4538482,-0.274692,-0.061960142,-0.35310766,-0.31302074,-3.5162508,0.27307537,-0.17961387,-0.0842507,0.023336694,0.19549267,0.3619015,-0.7064904,-0.47320792,0.023848768,0.21003297,0.43691415,-0.025289426,0.024872933,-0.36228076,-0.13044252,-0.20864697,0.24863347,0.06589888,0.28405717,0.05210415,-0.39620516,-0.011619951,-0.1173567,-0.51955634,0.28964877,-0.5580648,-0.43669754,-0.20186567,-0.5740641,-0.3675908,0.61074924,-0.24674559,0.02105719,-0.13116108,0.19428231,-0.24552284,0.3221767,0.2479614,0.26453868,0.05382424,-0.045356546,-0.024652991,-0.2679948,0.40331215,0.023420205,0.39822325,0.041591473,0.09034133,0.14182971,0.43193325,0.63252896,-0.035488967,0.7042154,0.44572562,-0.16219044,0.18944873,-0.49483648,0.013029269,-0.56193787,-0.5501692,-0.13123314,-0.26803854,-0.63682896,-0.0024165085,-0.2862598,-0.6682962,0.55859035,-0.23332909,0.21585107,0.012216737,0.19673955,0.3914504,-0.27552468,-0.0070801377,-0.043464996,-0.056461375,-0.6429605,-0.17807862,-0.59110737,-0.44224244,0.3270455,0.83503884,-0.3253014,0.06607835,-0.0019187842,-0.2516692,-0.035956662,0.12721159,0.091210365,0.36265984,0.45150423,-0.092209406,-0.5812785,0.36140653,0.04737085,-0.21090868,-0.5631422,0.15379597,0.66462845,-0.8251039,0.74808407,0.22324266,0.26417607,0.08813543,-0.45745888,-0.42865896,0.20735863,-0.14700043,0.4183507,-0.19138496,-0.7231373,0.32226723,0.47819504,-0.5255251,-0.5326032,0.22927086,-0.12276188,-0.45484358,-0.038956486,0.2466283,0.024571726,-0.10692622,-0.16917118,0.2039589,-0.5146797,0.12512344,0.29494557,-0.047498304,0.38910946,0.022378232,-0.27326375,-0.7323691,0.16845801,-0.41123977,-0.332766,0.4375534,-0.00859225,-0.08103128,0.18334821,0.10871097,0.3546367,-0.08309175,0.057746347,0.054792147,-0.27197206,0.3032658,0.41028532,0.31471857,-0.42143854,0.49056047,0.05953343,-0.21300589,-0.11065517,-0.12613675,0.35335234,-0.028581321,0.34159318,-0.34318638,-0.2828943,0.5025598,0.50408834,0.15007725,0.3122261,0.0068143522,-0.03899843,0.48698384,-0.037721984,-0.22097151,0.02699479,-0.33509544,0.05436796,0.13216878,0.20735379,0.37318596,0.31044754,0.23660849,0.0570517,-0.14897755,0.06764179,0.42334884,-0.17054021,-0.64105093,0.4459086,0.24128519,0.58358985,0.590642,0.12815121,-0.2597697,0.6650843,-0.28879595,0.08037873,0.42076904,-0.061015278,-0.52673584,0.7689686,-0.49180606,0.38954428,-0.15242729,-0.029179862,0.032101598,-0.00032117963,0.4077299,0.6406926,-0.21679108,-0.018890325,-0.100844204,-0.05583913,-0.042061474,-0.28448424,0.1569803,-0.52053326,-0.4046609,0.781004,0.29357678,0.33594847,-0.12074191,-0.100157626,0.10633886,-0.13002245,0.4399065,-0.1540653,-0.06907471,0.3918038,-0.56653553,-0.13910331,0.5404657,-0.24865733,0.0149829155,-0.15187526,-0.32502842,0.011378025,-0.28241286,-0.041719727,-0.011105989,-0.597106,0.14450932,-0.31173548,-0.37085587,0.45753127,-0.21806489,0.29367107,-0.010767276,-0.0029320589,-0.18078348,0.36453947,0.023220036,0.9057477,-0.02360073,-0.21717712,-0.2889275,0.115797095,0.16095582,-0.16586702,0.035409845,-0.37251145,-0.06296877,-0.5653347,0.6177939,-0.013724102,-0.42893752,-0.008763618,-0.17190407,-0.09246737,0.65416116,-0.22288588,-0.28094697,-0.19284019,-0.2585897,-0.336311,0.06351761,-0.21434997,0.2820985,0.101599045,-0.066461235,-0.09587854,-0.14802383,0.0077027893,0.67750615,-7.599592e-06,0.36247468,0.12021177,0.14885418,-0.15819427,0.0676735,0.06864255,0.33491126,0.2486812,0.045805123,-0.36354828,-0.31275305,-0.22801399,0.11554883,-0.19808742,0.26369607,-0.022598024,-0.28964138,0.9037324,0.015768697,1.3572845,-0.033122815,-0.21610034,-0.01092164,0.46864027,-0.10253199,0.18359764,-0.45106864,0.85960704,0.68636125,-0.113516144,-0.19382308,-0.2747965,-0.2231542,0.25479883,-0.29371026,-0.015014576,-0.052519374,-0.67550373,-0.43080023,0.14613257,0.23345204,0.28935137,0.040548008,0.09623618,-0.114297345,0.12962012,0.3162776,-0.38038418,-0.30835268,0.20585395,0.3267329,0.034116983,0.18680704,-0.37599263,0.39880106,-0.5345482,0.34309644,-0.4788839,0.02368156,-0.090567484,-0.4115083,0.1070927,-0.039333224,0.2925568,-0.2012461,-0.31724292,0.049221013,0.53421134,0.18265793,0.22235426,0.83724326,-0.2740291,0.05423412,0.05006957,0.5224175,1.3464211,-0.48870543,-0.10804061,0.41526356,-0.2650402,-0.6577839,0.41486773,-0.3870211,-0.25221008,-0.20625417,-0.5230173,-0.5488926,0.21223608,0.12243683,-0.19642605,0.03322279,-0.45245305,-0.18260396,0.2690088,-0.279257,-0.25976235,-0.31119865,0.5259591,0.8869051,-0.19561012,-0.29862994,0.10657967,0.19380602,-0.35191825,-0.337039,0.007978218,-0.21364538,0.279964,0.18635651,-0.2313082,-0.020517755,0.2407907,-0.38018936,0.008026545,0.1754415,-0.41251352,0.17674555,-0.19001628,-0.24453466,0.90082747,-0.0731399,-0.220938,-0.5574312,-0.47459182,-1.0766752,-0.4973891,0.54956883,-0.0335302,-0.062386747,-0.18106723,0.10563701,0.057655293,-0.21725486,-0.054026537,-0.5244869,0.2597176,-0.04164321,0.5494136,-0.30931917,-0.68454486,0.15300176,0.21225087,0.017635534,-0.6823807,0.5228495,-0.120366156,0.83447236,-0.06418399,-0.13310628,0.09028188,-0.34777325,0.04240036,-0.40190887,-0.21613058,-0.85242116,-0.056022532,71 -351,0.5998787,-0.09736959,-0.46489605,-0.18447693,-0.4184846,-0.14774792,-0.3916715,0.2283288,0.16007414,-0.35571274,-0.2678434,-0.16257082,0.07800256,0.36133385,-0.14131571,-0.78029907,-0.13528456,0.09411752,-0.66936976,0.74659663,-0.45496812,0.42541957,0.13614237,0.30235332,0.19604978,0.47606033,0.40535232,-0.06390251,-0.11094107,-0.10192065,-0.03228428,0.08205073,-0.78836685,0.13364498,-0.33185658,-0.23999503,0.26865277,-0.49358127,-0.24817295,-0.8410892,0.16697113,-1.0029948,0.3698573,0.069113575,-0.07444636,-0.08525995,0.35888466,0.25703743,-0.33103797,0.039715372,0.18407093,-0.24864827,-0.064607784,-0.29321554,-0.22937012,-0.43524843,-0.51546466,-0.15698422,-0.61351734,-0.37066507,-0.22625992,0.24809565,-0.41946724,-0.07278409,-0.15103066,0.47645664,-0.48784283,0.070755124,0.4542272,-0.22996582,0.12803301,-0.5491354,-0.07461778,-0.15681635,0.39843684,0.07773226,-0.08526976,0.50403506,0.292679,0.36369577,0.31392947,-0.4098709,-0.28432932,-0.2706304,0.44087175,0.366116,-0.021259068,-0.23487937,-0.26965243,-0.014730628,0.24895875,0.5247632,0.16807339,-0.36132875,0.0285276,-0.13522403,-0.11400425,0.52354205,0.56921226,-0.25671348,-0.38196436,0.14996009,0.71692556,0.3375973,-0.35490134,-0.03416307,-0.13377246,-0.4653795,-0.0878449,0.3453927,-0.17606726,0.6455415,-0.09017919,-0.15468849,0.8625951,-0.1405843,-0.008286374,-0.26810178,-0.051639788,-0.1543354,-0.43826458,-0.16914189,0.3245348,-0.5201146,0.20870425,-0.3012453,0.72148865,0.23856774,-0.76081175,0.31839532,-0.64328784,0.1696795,-0.05593037,0.64921343,0.51281816,0.37987947,0.48043424,0.84632397,-0.3344243,0.3053765,0.028742423,-0.36289328,-0.083766334,-0.33703524,0.15866935,-0.3521793,0.2361277,-0.44697142,0.113949165,-0.04552216,0.3972921,-0.37610194,-0.17415906,0.37535587,0.89515704,-0.32733887,-0.06188327,0.5653453,1.1144778,1.2083472,-0.032841574,1.1370447,0.38560015,-0.23183978,0.026485596,-0.17475198,-0.61864287,0.20724058,0.39614147,-0.040716715,0.27783605,-0.13450828,0.05674197,0.28146514,-0.36600855,-0.011624055,-0.08275775,0.17382291,0.19894901,-0.05633726,-0.43543467,-0.124686785,0.07294471,-0.11064483,0.16139106,0.26709777,-0.13798466,0.31336913,-0.033990737,1.3366617,-0.0100946175,-0.017405272,0.3382794,0.59053487,0.4167676,-0.07068866,0.07390285,0.60521567,0.31669173,-0.036741853,-0.60727215,0.17442942,-0.49956125,-0.58134615,-0.082128845,-0.43754748,-0.099903755,0.18418896,-0.39182332,-0.06040333,-0.021109203,-0.14362244,0.382926,-2.4385324,-0.23284422,-0.23456566,0.2243226,-0.4633523,-0.13913836,-0.18444397,-0.5625115,0.24818063,0.22369182,0.54481256,-0.49176946,0.4838652,0.6038448,-0.5630658,-0.105436616,-0.6319317,-0.03295643,-0.14688206,0.60997784,-0.16001315,-0.111091636,-0.06079791,0.18669067,0.84948605,0.33370408,0.21848917,0.46639445,0.392972,0.06825849,0.61580884,0.020776497,0.46503472,-0.34469372,-0.12737335,0.4781668,-0.28263125,0.5188304,-0.19852276,0.17947343,0.63550144,-0.47158757,-0.9349197,-0.6055624,-0.6211395,1.023655,-0.4831968,-0.6028903,0.13473785,0.11932965,0.031904902,0.02890082,0.51023644,-0.17165828,0.2844688,-0.6073996,0.037080806,0.010797292,0.2855542,0.14435354,0.19681029,-0.22147454,0.8329348,-0.042563338,0.5275749,0.24680114,0.24016371,-0.103762925,-0.48673034,0.09672811,0.5811898,0.18781415,-0.044461768,-0.37200317,-0.29866776,-0.07039392,-0.2727138,0.036605176,0.5935241,0.7580438,-0.20640251,0.043138117,0.3241306,0.0061478848,-0.019023938,-0.2435276,-0.33137992,-0.08593019,0.11078768,0.37819856,0.8109446,-0.13967504,0.31431013,-0.1128719,0.35414913,-0.05004704,-0.4923685,0.64691395,0.76110584,-0.12599394,-0.06860957,0.4842357,0.4865799,-0.5709983,0.63202685,-0.7804928,-0.13852666,0.7845572,-0.24591589,-0.42816538,0.11724174,-0.29936367,-0.00859522,-0.7682065,0.19510531,-0.38779333,-0.036176316,-0.26306197,-0.2065067,-2.981611,0.23165719,-0.07404055,-0.098294385,-0.27630207,0.020066116,0.18748029,-0.6241356,-0.7270122,0.19159664,0.15252443,0.4457586,-0.109944165,0.12543651,-0.32546154,-0.28592423,-0.20467456,0.24328451,0.023163542,0.29617137,-0.22589014,-0.3761726,-0.029181395,0.002339695,-0.5726082,0.13190031,-0.4136561,-0.4175761,-0.23202859,-0.49459198,-0.1704433,0.45976257,-0.45019498,0.071718104,-0.06572186,0.04469853,-0.20967208,0.05947301,0.23132558,0.5513285,0.19586943,-0.053785782,0.012582625,-0.28193003,0.5883115,-0.029335981,0.2970474,0.14464249,0.02211569,0.051186237,0.28883794,0.641575,-0.20832923,0.9442131,0.25668374,-0.038254727,0.26771712,-0.26373568,-0.27214417,-0.88737917,-0.2707704,-0.2234769,-0.3508092,-0.6898237,0.024865756,-0.33803496,-0.8717928,0.5593492,-0.053835124,0.53401697,0.024544254,0.27201712,0.4947844,-0.3625486,0.05557757,0.05760296,-0.15057048,-0.622376,-0.47537234,-0.6962987,-0.44603348,0.19738577,0.79825515,-0.31281042,-0.34036347,-0.140264,-0.38565275,0.03996403,0.23094332,-0.002211081,0.14655903,0.5568465,0.34771964,-0.5991999,0.43194738,0.09981424,-0.17266633,-0.3746221,0.15872063,0.52454996,-0.75322974,0.7547916,0.35934106,0.14988457,-0.05683032,-0.81905204,-0.26208207,0.05162997,-0.11771919,0.48716497,0.1833153,-0.8283717,0.3882886,0.16967587,-0.6064922,-0.8116284,0.40793,-0.07082871,-0.388508,-0.09021231,0.45363468,0.10899446,-0.1478295,-0.2426985,0.2890408,-0.45630032,-0.010808809,0.43530008,-0.08310542,0.10910436,-0.20697974,-0.35252967,-0.7881337,0.055129886,-0.4848462,-0.27425304,0.43378687,-0.20888236,-0.17356344,0.08757387,0.26224083,0.38342413,0.013693767,0.18394804,-0.104980126,-0.28495607,0.45776346,0.45792374,0.44922313,-0.43663603,0.6202827,0.13177316,-0.274671,0.17448425,0.16708632,0.22874475,0.0888732,0.2916803,-0.04901323,-0.02779159,0.1806237,0.62135804,0.33391228,0.39806494,0.18901297,-0.28480878,0.644421,0.014150947,0.15404813,-0.21291542,-0.47737703,-0.062630825,-0.09012873,0.08828764,0.54562956,0.13364659,0.40486008,0.058637913,-0.056524403,0.14763403,0.40197325,-0.10926819,-0.8389586,0.21255076,0.13070346,0.93524796,0.54595435,0.1452718,-0.16914213,0.539797,-0.18769087,0.1558788,0.5288848,-0.038934145,-0.5244528,0.7461648,-0.33504364,0.28455716,-0.26853403,-0.042907674,0.18501297,0.35902762,0.49956605,0.8078479,-0.29008695,-0.08871965,-0.12800977,-0.11841797,0.026717177,-0.30832556,0.037983473,-0.2244683,-0.5184197,0.71931094,0.45912188,0.38333222,-0.31363198,-0.16752653,-0.06679136,-0.21048678,0.32370886,-0.035575025,0.011234055,0.13114369,-0.49160177,-0.2279195,0.57818276,-0.30742782,0.12370861,-0.21585901,-0.33716363,0.07205462,-0.19463842,0.04784458,0.040501717,-0.92383397,-0.043131012,-0.122704275,-0.72210926,0.31583962,-0.22472873,0.045529168,0.24126542,-0.107510634,-0.25675908,0.32770878,0.113315925,0.82045335,-0.07071169,-0.26339132,-0.30793962,0.08023553,0.22759198,-0.23641108,0.24498889,-0.2956592,0.19258682,-0.52791804,0.665605,-0.12894927,-0.4089845,-0.00038832214,-0.24302337,-0.23462395,0.8493849,-0.1673495,-0.23162071,-0.13660526,-0.29616508,-0.47581965,-0.09511566,-0.2660291,0.10748414,0.0921473,-0.16935284,-0.17227241,-0.1338774,0.13401008,0.5233529,-0.05948639,0.3673219,0.20820162,-0.03978232,-0.2898633,0.054660533,0.18636505,0.46431094,0.17543313,-0.022927072,-0.2759148,-0.45438042,-0.3306704,0.16893058,-0.17332508,0.21851945,0.122277535,-0.2593391,0.8913234,0.13523033,1.2096384,0.10392288,-0.3431889,0.112853326,0.5870082,-0.14753686,-0.032039713,-0.3653638,0.9076508,0.61066544,-0.19544086,-0.045583904,-0.33442768,-0.102309585,0.05689883,-0.44230816,0.017807378,-0.008298549,-0.5058131,-0.28051308,0.116833314,0.30601785,0.09800548,-0.20474456,-0.12653336,0.016672662,0.23730345,0.5474401,-0.60068434,-0.38643262,0.17112671,0.08935185,0.008952694,0.108520575,-0.24153244,0.419795,-0.75221545,0.39025325,-0.61158454,0.07975477,-0.30307263,-0.37454182,0.14666381,-0.033371504,0.47167334,-0.4035416,-0.3538788,-0.1756804,0.41527694,0.10452942,0.25438252,0.6422429,-0.28487423,0.24495329,0.12655516,0.66830355,1.2927595,-0.42184767,0.0014575379,0.2717519,-0.517569,-0.7076942,0.38110238,-0.5267372,-0.009575988,-0.22804509,-0.525506,-0.5337189,0.1452781,0.11914192,-0.053872805,0.1359379,-0.72526824,-0.109480105,0.33622614,-0.26139104,-0.16297935,-0.13322121,0.36962053,0.88962156,-0.16363516,-0.3451817,0.035820268,-0.01380653,-0.30269024,-0.5932396,-0.0034577337,-0.19416274,0.367528,0.08980163,-0.19802345,0.036481448,0.3556688,-0.5839632,0.0773458,0.14362113,-0.30914822,0.027920995,-0.1934651,0.038784277,0.8875629,-0.19656943,-0.2780146,-0.5629034,-0.542852,-1.0140582,-0.4409991,0.4079087,-0.02167956,0.2150192,-0.22981152,0.13895808,-0.2282532,-0.088882886,0.06656702,-0.5753435,0.32528868,0.21028201,0.5907453,-0.32627112,-0.9361834,0.07759022,0.17660926,-0.09668004,-0.6170835,0.5213523,-0.1776662,0.8389928,0.0513419,-0.2537896,-0.11820854,-0.43844137,0.20259705,-0.43606454,-0.12658907,-0.6895476,0.13786143,72 -352,0.58010393,0.00408348,-0.56930774,-0.1618536,-0.3112228,0.08462592,-0.18894556,0.44173464,0.2155381,-0.46051884,-0.20397663,-0.009068585,-0.007315033,0.25519398,-0.15323165,-0.6403588,0.1788418,0.29972535,-0.58511126,0.587689,-0.45706376,0.45736465,0.02014594,0.28477088,0.25729987,0.26391345,-0.072495155,0.016102612,-0.14938198,-0.16354741,-0.16235073,0.31879514,-0.50547904,0.3592791,-0.1718806,-0.3544372,-0.014291406,-0.28495386,-0.34048876,-0.69099694,0.11884473,-0.7082984,0.44078746,-0.20058165,-0.40382338,0.06972565,0.15232976,0.4572721,-0.21169999,-0.06707551,0.14721668,0.07651518,-0.3516527,-0.14576313,-0.10088025,-0.42285296,-0.51677555,-0.05028438,-0.36910793,-0.04399566,-0.36343092,0.22545402,-0.17371915,0.123089425,-0.14576261,0.37695643,-0.2954657,0.29194435,0.18595076,0.033796757,-0.032403797,-0.49685058,-0.07082267,-0.16296002,0.42209885,-0.08617913,-0.30259913,0.259059,0.26265103,0.34735087,-0.035188776,-0.14562085,-0.32401457,-0.07416224,0.06768059,0.5612404,-0.11504634,-0.32276797,-0.118039094,-0.012241478,0.13985018,0.1528132,0.15959667,-0.24592026,-0.14202072,-0.17172875,-0.397861,0.41565782,0.38912842,-0.2945836,-0.085568056,0.44902733,0.55391896,0.11102544,-0.27220336,0.025679532,-0.023934856,-0.55328757,-0.122297965,0.0028455597,-0.17184949,0.47904247,-0.059875306,0.1927711,0.5859667,0.08721683,-0.21808483,0.17899884,0.16495135,0.019715104,-0.28955323,-0.23684338,0.1605632,-0.53505945,0.037416816,-0.17279074,0.7715866,0.07420198,-0.7353715,0.28131077,-0.44444337,0.05671226,-0.16323957,0.40522024,0.6673521,0.48137066,0.061897848,0.68414927,-0.3972494,0.13066377,-0.027694812,-0.22802475,-0.019319104,-0.04765064,0.013767004,-0.45549455,0.14069153,-0.030112538,-0.1595708,0.22947598,0.38021752,-0.41582653,-0.22643535,0.04249363,0.7608598,-0.39401117,-0.25331813,0.78686523,0.92326397,0.87085974,0.07997311,1.0568858,0.27421945,-0.1154377,0.109833375,-0.3481843,-0.5964287,0.24780674,0.2225825,-0.043301694,0.19475044,0.14596762,0.03614194,0.38616735,-0.24278285,-0.066901855,-0.10776738,0.3227492,0.020965127,-0.10139002,-0.42995,-0.39733973,-0.06442487,-0.046331517,0.19875135,0.20653431,-0.14732318,0.37871557,0.19311465,1.4773496,0.10014611,-0.06478581,-0.020246293,0.38800004,0.20984502,-0.27633452,-0.26730064,0.18719888,0.37306803,-0.05956894,-0.5135041,0.056776643,-0.1851877,-0.40070316,-0.12270711,-0.29103294,-0.22218673,-0.12364753,-0.38026264,-0.12812638,-0.088486455,-0.21500246,0.535536,-2.7270737,-0.21636876,-0.11582184,0.38259667,-0.088471,-0.48653197,-0.17595837,-0.5642733,0.3374744,0.20645194,0.49064383,-0.51983076,0.51182806,0.30852988,-0.451906,-0.0958987,-0.591515,-0.046408623,0.10913889,0.23822257,-0.027304301,0.09055669,-0.1977285,0.027926514,0.45439503,-0.15413554,0.19657905,0.41113934,0.23820281,0.10325593,0.46077314,0.091429286,0.65334415,-0.18302055,-0.06173018,0.23780084,-0.42398834,0.3403584,-0.052968774,0.15212356,0.53127825,-0.48808402,-0.7311637,-0.56246376,-0.10131561,0.98529804,-0.24394245,-0.14786534,0.27234927,-0.4076864,-0.24433632,0.14399263,0.27988186,-0.110946365,-0.19123472,-0.69653404,-0.14394829,0.04309505,0.27607295,-0.16082872,-0.16886698,-0.3383648,0.54752344,-0.04790008,0.44987583,0.14066197,0.13339886,-0.23284896,-0.33447036,-0.0062747872,0.93219984,0.30264956,0.14823915,-0.3152743,-0.23006718,-0.60601526,0.017013205,0.009837533,0.6433118,0.49611142,-0.09454922,0.044480186,0.1649626,-0.022440417,0.024212787,-0.11133317,-0.27891114,-0.091180734,0.0036399749,0.49295744,0.6477281,-0.025416633,0.54374063,-0.18028966,0.29082632,-0.24683902,-0.53470856,0.44257498,0.8835368,-0.2504132,-0.31979582,0.6348203,0.4152394,-0.015636487,0.37034193,-0.49317536,-0.41443223,0.396189,0.013281592,-0.1596863,0.05994955,-0.28719458,0.2452716,-0.89183086,0.2753871,-0.31544018,-0.75026447,-0.4400282,0.027440276,-2.7532315,0.13449445,-0.027045803,-0.15990528,0.003894789,-0.1253645,0.08518721,-0.43841982,-0.662005,0.22846918,0.06812054,0.76422256,-0.085923895,0.122922264,-0.053346686,-0.32929257,-0.13106689,0.19986747,0.078997,0.35777912,-0.07125397,-0.4418362,-0.097404845,-0.18489334,-0.23227929,0.086162604,-0.80238146,-0.391259,-0.09799127,-0.5162219,-0.22121511,0.5794238,-0.590637,-0.00051058724,-0.1235309,-0.026899377,-0.12999737,0.16671453,0.0055370247,0.10912116,0.09665651,-0.13587464,-0.044885036,-0.35033175,0.20106222,0.14295565,0.3623991,0.2095108,0.097779974,0.2000774,0.49869347,0.5944861,-0.015770316,0.82932866,0.3278337,-0.10438895,0.17262486,-0.121077076,-0.28908348,-0.42133117,-0.14511903,-0.26626903,-0.39433974,-0.23630682,-0.04284818,-0.40259844,-0.7941833,0.40164685,0.0435854,-0.14998507,0.06715626,0.25941038,0.42316934,-0.120801345,0.016003473,-0.1690687,-0.07540833,-0.5483423,-0.49643067,-0.5643081,-0.39942783,0.13928832,1.224086,-0.22411309,0.22515617,-0.073113374,-0.31160814,-0.06445756,0.26656157,-0.029672325,0.14058897,0.5099054,-0.23066309,-0.60557187,0.45358008,-0.3940124,-0.08858691,-0.5358664,0.22515713,0.5440965,-0.64888877,0.47225383,0.29140812,0.06909207,-0.06446435,-0.4098401,-0.22289827,-0.055602986,-0.30389673,0.3414884,0.23578437,-0.66925985,0.33578843,0.3026586,-0.25696343,-0.7893758,0.6349438,0.0014308052,-0.24415864,-0.10629065,0.31935778,0.09907248,0.11046282,-0.15860553,0.13521983,-0.28817156,0.1142451,0.21636765,0.042348035,-0.09305284,-0.34393588,-0.04795303,-0.72523797,-0.10791308,-0.306138,-0.25561854,0.14595577,0.017485734,0.16546793,0.17568739,0.28906924,0.23622581,-0.42446855,0.05185147,-0.27296478,-0.26185533,0.32416922,0.44596595,0.57080275,-0.3738646,0.46187133,0.07874714,-0.037224658,-0.06121846,0.031124106,0.4162415,-0.055254046,0.4798345,0.08915795,-0.122238114,0.19937822,0.85051334,0.2199951,0.30899668,0.070218675,-0.14206669,0.050924275,0.016070936,0.27432618,0.19209613,-0.45769477,-0.052797172,-0.21974863,0.1891392,0.42974472,0.04039463,0.21508847,0.01592733,-0.31177124,-0.009634818,0.04095465,0.13977441,-1.3090736,0.46794802,0.17295517,0.7506811,0.3699836,-0.004992119,-0.03347085,0.61199516,-0.12816277,0.2777163,0.21835354,-0.25775367,-0.23204228,0.45301172,-0.557124,0.5244425,-0.007603756,-0.010342726,0.20918877,-0.100395165,0.41726664,0.94549364,-0.16812356,0.07471488,0.17388114,-0.40583226,0.108231984,-0.26343408,-0.0052239853,-0.6485253,-0.18735692,0.8337415,0.58128774,0.31887707,-0.15337683,0.040002424,0.0997997,-0.113806725,0.07215149,0.0470348,0.10753449,0.039941523,-0.47993153,-0.12248106,0.564731,-0.19986965,0.16641164,0.2030582,-0.117616765,0.3191772,-0.10242677,0.07137313,-0.20276013,-0.6918532,-0.007466101,-0.3348561,-0.34715527,0.2373908,-0.059150714,0.23080513,0.25620383,0.12707102,-0.24040683,0.48455092,0.066172905,0.56264764,0.020659218,-0.18490723,-0.15928619,0.19286506,0.19766213,-0.25091666,0.11641856,-0.385576,0.124732204,-0.79233265,0.36345118,0.03771664,-0.3731492,-0.048721883,-0.010330988,0.12954636,0.34787178,-0.02631496,-0.0970037,0.07225936,0.053394496,-0.19091327,-0.13444988,-0.2750895,0.16159378,0.3453416,-0.15702784,-0.05712241,-0.09662783,-0.02706727,0.37605622,-0.025502516,0.46842724,0.28333345,0.13582656,-0.21728352,-0.13258244,0.31483126,0.6088973,-0.048200186,-0.08384158,-0.29290894,-0.20349881,-0.3942676,0.42750835,-0.06833629,0.48099282,0.121326365,-0.18844056,0.63482475,-0.05648167,1.0854384,0.099803604,-0.2847683,0.17246988,0.48818842,0.0015624166,-0.107983276,-0.30426475,0.85649866,0.31971344,-0.14077258,-0.047149234,-0.3374677,0.06012885,0.0933053,-0.06469323,-0.1359915,-0.035657085,-0.45233032,-0.17944817,0.12864561,0.15664077,0.21213773,-0.06833707,0.18319702,0.2686374,-0.054159667,0.21913354,-0.49592075,-0.010796036,0.20527211,0.23412621,0.027014554,0.15388466,-0.5955221,0.37948522,-0.6278173,0.037145793,-0.23112524,0.14049526,-0.19617751,-0.30328828,0.2057893,0.168931,0.23189759,-0.48837858,-0.3025377,-0.45627847,0.58629787,0.22540684,0.11315971,0.55279875,-0.1811777,0.0022768038,0.16337602,0.483483,0.7689619,-0.25040877,0.07633013,0.39568278,-0.31925187,-0.4251604,0.18013597,-0.24393317,0.17398962,0.107297316,-0.23970625,-0.6570143,0.32318094,0.20801724,0.1168234,0.17148556,-0.5967497,-0.04468576,0.19334531,-0.27680126,-0.2953443,-0.20275988,0.14688168,0.58720034,-0.22701226,-0.35010314,0.05684157,0.12699082,-0.22361347,-0.48509496,-0.082355715,-0.46813798,0.32584038,0.006936927,-0.24717109,-0.30514982,0.054741986,-0.38701487,0.12154511,0.21978989,-0.29413074,0.06004896,-0.35973278,-0.07957184,0.8173715,-0.10226077,0.22191072,-0.53905785,-0.444423,-0.60263664,-0.37831798,0.33901307,0.2949942,-0.14391848,-0.54775083,-0.12497061,-0.09641479,-0.17409687,-0.021330515,-0.3797839,0.45482653,0.18364468,0.13895808,0.041699167,-1.1747528,-0.046106312,0.08445908,-0.38581523,-0.48171908,0.39835075,-0.1823126,0.89984035,0.075879045,0.10840123,0.2155992,-0.41235298,0.11273598,-0.2330992,0.07792197,-0.64375687,0.16511814,91 -353,0.33573636,-0.36332157,-0.50519204,-0.006817562,-0.3465965,-0.1787466,-0.23086952,0.42821687,0.19664551,-0.2553723,-0.036219638,-0.1230595,0.026605759,0.49008903,-0.03861252,-0.49202332,-0.14615212,0.29056528,-0.7009966,0.67043287,-0.34141907,0.1877681,-0.118726894,0.59545213,0.25749707,0.22742607,-0.025269572,-0.010561203,0.1693553,-0.09965867,-0.008195718,0.120439306,-0.5065405,0.14169037,-0.03577764,-0.35097244,-0.0924891,-0.45317534,-0.4201179,-0.7864107,0.37082475,-0.7259843,0.5158531,0.05490346,-0.35952565,0.21828939,-0.07863991,0.44971842,-0.29423752,-0.13476047,0.21587722,0.14465903,0.08938636,-0.26961187,-0.053032093,-0.32942107,-0.43836832,-0.064471774,-0.34188196,-0.10772959,-0.25583223,0.12567928,-0.21949063,0.09701269,-0.08346604,0.3530524,-0.4594514,0.20585157,0.21197708,0.029358694,0.3318238,-0.4704227,-0.11134941,-0.24166846,0.06873477,-0.08033379,-0.3476046,0.31768307,0.030226741,0.3489824,-0.19434078,-0.05993809,-0.12215997,0.05099473,0.119798504,0.5260953,-0.17919631,-0.3507557,-0.24760477,0.05993714,0.062752284,0.04563572,0.12994453,-0.5320102,-0.12928443,0.027136637,-0.16788308,0.40839943,0.4422598,-0.061673116,-0.09926926,0.31101295,0.48557132,0.41564545,-0.18146351,-0.048409883,0.034981024,-0.44413665,-0.13494302,0.054585304,-0.0654972,0.37898615,-0.09681442,0.2198441,0.60378414,-0.021537466,-0.27039775,-0.010532975,0.13828927,-0.08381714,-0.282175,-0.27204272,0.25137302,-0.41939113,0.22305004,-0.07567755,0.7152759,0.13860391,-0.80293846,0.3650873,-0.6100193,0.17873971,-0.16486247,0.4109749,0.74556303,0.42749676,0.08156937,0.67022896,-0.257056,0.13215618,-0.09865754,-0.29288033,0.095429696,-0.18317625,-0.2548251,-0.5353008,0.023935838,-0.08578622,-0.20321296,0.14189786,0.30309454,-0.48731115,-0.09893861,0.10156737,0.7403258,-0.3289897,0.21255244,0.68185943,1.0005487,0.92893136,0.21178494,1.0376346,0.27309835,-0.2707135,0.3087488,-0.12720248,-1.0188082,0.32425097,0.36431012,-0.09709423,0.33088169,-0.022281187,0.044701397,0.4387981,-0.35933742,-0.004753145,-0.3032915,0.1947967,-0.0019603074,-0.12695818,-0.42595598,-0.3049567,-0.118183196,0.11384435,-0.15490566,0.21042867,-0.3180659,0.33175758,0.12451119,1.6661813,-0.026649177,-0.0064633572,0.049259882,0.52687854,0.31778032,-0.36883172,-0.24669696,0.43022037,0.42827755,0.02439657,-0.6846071,0.16260253,-0.10052245,-0.45893627,-0.18089792,-0.28134447,-0.080339186,0.004785691,-0.52231985,-0.2474862,0.016165342,-0.106859244,0.36972114,-2.5126493,-0.06901001,-0.1167865,0.29707378,-0.23346137,-0.32354432,-0.036230475,-0.35174206,0.38705343,0.3108203,0.5192734,-0.58476657,0.31876284,0.4245344,-0.61621875,0.02418983,-0.5010478,-0.24012193,0.032261565,0.3324154,-0.061610866,0.18757561,0.07483613,0.29213366,0.37804276,-0.17063129,0.15936692,0.33254313,0.36522552,0.051442113,0.3671202,-0.023470726,0.43975988,-0.33434257,-0.16244781,0.24232452,-0.1859214,0.24894774,0.09714909,0.111117944,0.5510925,-0.63253963,-0.8010248,-0.47617906,0.026148716,1.0978013,-0.43732372,-0.43007132,0.29549077,-0.4774718,-0.23626217,-0.0590441,0.19537303,-0.15971582,-0.1695981,-0.86942154,0.10176473,-0.017436972,0.3227665,0.013023065,-0.09718746,-0.20397861,0.79968965,0.056968305,0.41323566,0.3070703,0.16314848,-0.19138026,-0.52293974,0.116453394,0.5319858,0.36239484,0.2350205,-0.26479325,-0.13900308,-0.3337668,0.008441337,0.14424,0.40852764,0.5958031,-0.09870535,0.17613734,0.2766411,-0.21391916,0.019041542,-0.19655064,-0.15758951,-0.1259518,-0.006943158,0.57331073,0.6960635,-0.15539487,0.38109016,-0.051545493,0.2590738,-0.033723865,-0.5718098,0.5798088,1.1323694,-0.11966749,-0.3885312,0.39708477,0.54077435,-0.21907358,0.35380667,-0.45931885,-0.12837756,0.5000402,-0.13846448,-0.3376275,0.21888244,-0.27015296,0.17207618,-0.8465804,0.20979223,-0.1734586,-0.47582445,-0.66894156,-0.03086446,-2.8110182,0.19575165,-0.26344585,-0.34370565,-0.24112909,-0.091815665,0.16898264,-0.42606825,-0.6897928,0.09796593,0.018844962,0.6419095,0.01862189,0.16618685,-0.105575785,-0.1406096,-0.2995852,0.14793934,0.18822522,0.37829176,-0.07281331,-0.5015604,-0.2866783,-0.15345035,-0.43435296,0.087924205,-0.6270226,-0.421447,-0.17372353,-0.5722779,-0.21119344,0.4600513,-0.09550296,-0.01739713,-0.14635758,-0.085472904,0.0030863371,0.3265455,0.2116455,0.12353594,0.16883574,-0.012451796,-0.07970529,-0.30906805,-0.052596767,0.10029553,0.13009717,0.07799925,-0.070249185,0.263989,0.50594336,0.76915973,-0.07992554,0.70338726,0.734309,-0.12529619,0.25079903,-0.26076382,-0.31778583,-0.53449816,-0.18545035,-0.2390893,-0.41596773,-0.4456606,-0.06410133,-0.2714892,-0.73067945,0.5741431,0.0869683,0.014676673,0.19758017,0.0036584395,0.4207017,-0.048615295,-0.096852936,-0.08318536,-0.1637503,-0.60485506,-0.19916436,-0.59508276,-0.37524158,0.20004262,1.077124,-0.16766512,0.07280796,0.11658324,-0.40290686,0.15252258,0.11370398,-0.03552661,0.30255094,0.3721431,-0.04628161,-0.5868579,0.50928164,0.15076484,-0.2105812,-0.568962,0.28283435,0.6171915,-0.63322437,0.51931566,0.109190024,0.12058502,-0.1366329,-0.38012722,-0.11629441,0.1612962,-0.27459314,0.39909008,0.27483487,-0.6458868,0.39801413,0.44802365,-0.14567353,-0.7174724,0.50784236,0.020576494,-0.33548537,-0.17889713,0.20981257,-0.026799116,0.066643246,-0.056714706,0.309941,-0.311871,0.15697224,0.19444212,-0.1249889,0.1072546,-0.25109878,0.07022185,-0.672513,0.21858986,-0.4426512,-0.36764902,0.31847414,0.16518636,0.1252682,0.093008354,0.057555687,0.34015402,-0.20611453,0.07265635,-0.26293877,-0.2633288,0.3768408,0.5167478,0.45458502,-0.25495777,0.6098388,0.040725667,-0.103141375,0.041969378,0.1788505,0.4326281,0.09148012,0.39624548,0.046299133,-0.12383628,0.068496294,0.6934552,0.1474344,0.437109,-0.009054788,-0.048524093,0.2287241,0.12548654,0.20924671,-0.018271612,-0.39201146,0.09350964,-0.032714356,0.1888131,0.48733374,0.08385498,0.14604266,-0.21328059,-0.48593453,0.11753588,0.13099015,0.16351165,-1.4229901,0.2666907,0.2749584,0.7078444,0.62567604,-0.08049439,-0.007999463,0.69132,-0.21049346,0.13978006,0.24587767,-0.053582046,-0.6023881,0.45586076,-0.72185427,0.46352234,-0.07735277,-0.070336014,0.20082648,0.11703449,0.42515567,0.68257946,-0.15218015,0.039682157,0.09826213,-0.44703692,-0.029485809,-0.38451263,-0.048025366,-0.47873974,-0.38521188,0.58760375,0.4939027,0.26140898,-0.3342914,0.0755528,0.0782199,-0.22124818,0.13292482,0.18444161,-0.048887994,-0.042151503,-0.6854716,-0.27128226,0.50889,-0.21599059,0.1258965,0.025897397,-0.20416713,0.3359681,-0.16472487,-0.049905002,-0.050737917,-0.83868164,0.09061922,-0.45196813,-0.3300106,0.32689074,-0.08386962,0.19429891,0.22514085,0.040009927,-0.39482406,0.41855073,-0.0924137,0.9534982,0.016327774,-0.18290386,-0.23715608,0.16727544,0.13140316,-0.039147384,-0.03800216,-0.287528,-0.0716931,-0.4651477,0.4824515,0.11382152,-0.3423606,0.09386102,-0.029385047,0.115012646,0.44854084,-0.16246244,-0.24434341,-0.18897915,-0.13370822,-0.33999974,-0.35938844,-0.10371053,0.19466694,0.44422182,-0.002339327,-0.02789121,-0.1040539,-0.023550851,0.54613936,-0.032384776,0.57483035,0.38271925,0.2519729,-0.50148636,-0.08429454,0.26858535,0.49039695,-0.017860422,0.008976196,-0.09720697,-0.32458296,-0.41330665,0.15367289,-0.26442286,0.50407255,0.0492615,-0.29901856,0.64379257,0.026048807,1.0347143,-0.116161,-0.33324572,0.27206317,0.44352075,0.07759719,-0.03690236,-0.29507965,0.61330616,0.5576503,-0.043788556,-0.26243988,-0.28910658,-0.17804883,0.23690602,-0.24773581,-0.11661699,0.054734994,-0.5589744,-0.21661854,0.08351667,0.3095323,0.1829585,-0.08004928,0.053699456,0.14130725,-0.060056534,0.08455698,-0.34864095,-0.0681708,0.2034404,0.13597892,0.039238613,0.01581892,-0.58858526,0.37705597,-0.37426597,0.23964529,-0.36997232,0.19980891,-0.06465931,-0.2365543,0.055502504,-0.007975893,0.23669504,-0.5066546,-0.25326803,-0.3567204,0.67583424,0.13967884,0.18980257,0.6135381,-0.22579335,0.180181,0.116235495,0.37555954,0.6773089,-0.14295979,-0.27820903,0.23795119,-0.438998,-0.6012322,0.3187787,-0.13523939,0.19212417,0.034686796,-0.09296245,-0.7595507,0.22110157,0.13045366,0.033457868,-0.09614725,-0.6600633,-0.20231803,0.386689,-0.2779986,-0.19390264,-0.31205603,-0.0070220274,0.45347354,-0.25383574,-0.3505234,0.112437196,-0.023414632,-0.21354465,-0.31278414,-0.06565822,-0.4929952,0.27628857,-0.00085132464,-0.45366365,-0.120860614,0.1036287,-0.43775374,-0.046151545,0.066084675,-0.36276317,-0.019842256,-0.29154125,-0.123315044,1.0311246,-0.38631892,-0.019101452,-0.6065289,-0.57504237,-0.7320632,-0.33434725,0.60012203,0.1015194,0.10164864,-0.8372184,0.08670342,0.08820923,-0.18348427,-0.09607079,-0.41873986,0.4095858,0.15228048,0.26732036,0.0324061,-0.7972641,0.29793152,0.10380701,-0.24264751,-0.6410603,0.4563472,-0.069927864,0.7397126,0.032662146,0.1623306,0.17197539,-0.537947,0.025568327,-0.16541673,-0.21508779,-0.5490802,0.12144772,98 -354,0.6032693,-0.17314151,-0.49999836,-0.21702866,-0.26495638,0.18318796,-0.09862966,0.6121627,0.10225674,-0.5075381,-0.08144866,-0.055461828,0.19221784,0.34851,-0.14090002,-0.6720792,0.04488843,0.13605686,-0.40510055,0.48680478,-0.50840986,0.32819575,-0.0030929106,0.2526296,-0.002674518,0.3206563,0.23291318,-0.20579696,-0.059382405,-0.110728554,-0.138885,0.2790348,-0.3930623,0.2111266,-0.042025745,-0.31824234,0.20028734,-0.3845763,-0.44921717,-0.63807064,0.34481692,-0.6940738,0.46620888,0.10137282,-0.24681303,0.26181033,0.045800276,0.18123321,-0.42708415,-0.008131251,0.08586893,-0.055995636,-0.14876719,-0.20333692,-0.037835162,-0.44934988,-0.42548674,0.02004534,-0.43760172,-0.0927697,-0.35919023,0.22553156,-0.3009074,-0.07263521,-0.05222353,0.54768044,-0.4829161,-0.07804681,0.15572514,-0.30355173,0.26277918,-0.59260136,-0.122623615,-0.054220088,0.2562901,-0.1945779,-0.16930218,0.27222937,0.24388473,0.40920052,0.06997516,-0.25410458,-0.3222013,-0.210448,-0.046493497,0.5480529,-0.24076761,-0.7692813,-0.03506413,-0.023870623,-0.07532976,0.11547769,0.026739296,-0.104772285,-0.09120458,0.061261766,-0.4598263,0.4134202,0.5247862,-0.3950705,-0.25482184,0.41142243,0.5746459,-0.03723068,-0.1655261,-0.08252592,-0.050473146,-0.5227622,-0.25060993,0.01016395,-0.23779596,0.5156535,-0.2123315,0.32546523,0.76352227,-0.14423697,-0.052772492,0.23114488,0.052591152,-0.052920718,-0.31317058,-0.20407605,0.21942244,-0.4755435,0.13956738,-0.24609831,0.93784523,0.14789489,-0.55959934,0.39928356,-0.43446597,-0.009013414,-0.20942774,0.47784907,0.5750848,0.32421574,0.16353893,0.74119616,-0.47766668,0.10649924,-0.039867826,-0.36847615,-0.065373965,0.11896544,-0.047341082,-0.48714972,0.16809689,0.02948961,-0.03331759,0.031440977,0.39838073,-0.50878704,-0.124903105,0.2849448,0.8996855,-0.4096426,-0.2042067,0.58444834,0.9928063,0.93394417,0.19361302,1.077317,0.2435545,-0.307288,0.34738508,-0.38250422,-0.6741323,0.29954198,0.47486204,0.62248766,0.12201357,0.14753638,0.080438204,0.49612957,-0.38102037,-0.06861998,-0.29437512,0.3779366,0.16960718,-0.14950708,-0.53791916,-0.20799088,-0.0721847,0.054782134,0.13469009,0.20228244,-0.16616477,0.3397214,-0.08030274,1.485299,-0.005083118,0.042120874,-0.07794662,0.59800404,0.33541742,0.017961245,-0.09852012,0.3507513,0.41281727,0.010332248,-0.6295636,0.30049917,-0.23987146,-0.64712197,-0.1515162,-0.4011918,0.15596986,-0.09300903,-0.5070419,0.030886855,0.036876816,-0.25106162,0.41790012,-2.7444534,-0.21004312,-0.17760576,0.2368175,-0.20450647,-0.35950035,0.08414179,-0.4891974,0.4550257,0.47532246,0.5940138,-0.63969606,0.45776606,0.38520387,-0.49057737,-0.06532512,-0.65575546,-0.15000074,-0.09710892,0.47231928,0.18124397,-0.12980701,-0.22022025,0.14246872,0.60240453,-0.12898377,0.019343283,0.14312933,0.26826707,-0.0035008788,0.51884353,0.0025341127,0.59527606,-0.3090293,-0.24504733,0.24950252,-0.37625855,0.13997735,-0.18917267,0.15953244,0.3754434,-0.3769524,-1.2135619,-0.7124295,-0.25191507,0.96143043,-0.21682204,-0.21440499,0.3072956,-0.29978845,-0.18918784,0.104706295,0.32165864,-0.05173806,-0.115870126,-0.63237584,0.13272838,-0.11288184,0.052491985,0.07086394,0.07304041,-0.3451628,0.7252498,-0.057776093,0.5154287,0.22728637,0.21264768,-0.21962214,-0.29526424,-0.041385498,0.96434575,0.38443393,0.22893289,-0.2843844,-0.2928991,-0.38441285,-0.10150291,0.018984461,0.6188693,0.7027845,0.12577054,0.020076722,0.10638932,-0.1167677,0.04074653,-0.061475676,-0.2769179,-0.07768643,0.08036595,0.6224529,0.40084496,-0.07645997,0.5518799,-0.15835023,0.3318677,-0.22918364,-0.3550592,0.59669393,1.0338008,-0.14430033,-0.26403636,0.64117473,0.39843962,-0.24735594,0.36130497,-0.7614279,-0.2234322,0.45527416,-0.22519942,-0.22857036,0.08087083,-0.21835916,0.102390096,-1.067207,0.24184836,-0.215088,-0.7123235,-0.48676577,-0.27805263,-3.7431362,0.21472895,-0.21593595,-0.077238396,-0.047483217,-0.14451072,0.23557499,-0.6301012,-0.41109976,0.27185112,0.054389954,0.67242306,0.13172193,0.08263861,-0.23505303,-0.06372941,-0.15659001,0.3259173,0.0998747,0.32608795,0.017486522,-0.5348778,0.008947481,-0.10701275,-0.57699925,0.12756737,-0.68088996,-0.48074764,-0.16140379,-0.6221151,-0.25893936,0.69199115,-0.26804706,0.033166375,-0.14095286,0.1777061,-0.15006958,0.35006174,0.059962176,0.10889355,-0.03858223,-0.08219923,0.13938214,-0.37767008,0.3133665,0.092535004,0.39372414,0.13264759,-0.04209901,0.06512026,0.75260895,0.6012393,-0.032644186,0.7688993,0.52145034,-0.13584247,0.4037988,-0.2516164,-0.20205167,-0.5347465,-0.56323594,-0.08235812,-0.34546545,-0.36943468,-0.086464934,-0.3612656,-0.6621904,0.437222,0.07150235,-0.067628324,0.00555881,0.41680235,0.47125605,-0.32299766,-0.03956919,-0.021614747,-0.16245715,-0.65357584,-0.32557163,-0.4981532,-0.36744452,-0.09718694,0.9621163,-0.19670327,-0.18576777,-0.22464076,-0.22152193,-0.048080646,0.1275978,0.13789055,0.2549035,0.3625937,-0.24398434,-0.60593796,0.5493878,-0.3343208,-0.27605864,-0.5027333,0.042762768,0.38349274,-0.5434831,0.621665,0.46633196,0.21732083,0.018931994,-0.49759242,-0.30768028,0.14078088,-0.07083382,0.37731013,0.19670418,-0.95849115,0.54418194,0.36758068,-0.23873755,-0.7380419,0.5120551,-0.072459534,-0.3030232,-0.060441073,0.2936592,0.20389713,-0.11756285,-0.27395207,0.08774329,-0.33384535,0.16828604,0.16470818,-0.008708524,0.41263184,-0.384605,-0.1427293,-0.7655045,-0.28573486,-0.47226733,-0.13991666,0.12546849,-0.024305265,0.11752597,0.13701305,0.089385524,0.38876763,-0.3458534,0.09798182,-0.18982682,-0.46999338,0.40788963,0.4421381,0.38429597,-0.35949782,0.56525046,-0.03119539,0.013052101,-0.18343374,0.024921784,0.5756078,0.040573783,0.4687758,-0.11146392,-0.119990274,0.35404268,0.8643952,0.21524152,0.45388418,0.0012653725,-0.17850026,0.2092462,0.077573694,0.14086242,0.14054927,-0.40587062,0.09327621,-0.09819392,0.083606735,0.41026625,0.11693038,0.22200468,0.01790963,-0.27968818,0.06722102,0.13822216,0.09956088,-1.2048632,0.56046546,0.2796618,0.9439744,0.40421638,-0.08786158,-0.05555427,0.6326173,-0.04464538,0.11914144,0.30523774,-0.19579823,-0.3590448,0.43669277,-0.6151492,0.53888535,-0.14764014,-0.044765968,-0.057013076,-0.121334024,0.38281563,1.0137645,-0.1769601,-0.005652662,0.12067976,-0.41259125,0.22725484,-0.4223836,-0.088374615,-0.5796755,-0.24172023,0.7296601,0.44261613,0.33092144,0.0018613084,-0.060063977,0.15507509,-0.0744362,0.1689593,-0.040963333,0.07364721,0.038590133,-0.8538666,-0.36176804,0.5091179,0.2985026,0.29724488,-0.124521255,-0.093855396,0.38264078,-0.18401864,-0.11493582,0.0001517183,-0.52280456,0.06339596,-0.2765461,-0.468724,0.5621646,-0.23616278,0.2627756,0.123064086,0.103576705,-0.28565946,0.42032102,0.07236529,0.795864,0.06847344,-0.25118306,-0.57165104,-0.066019736,0.19829021,-0.24704394,-0.12016772,-0.45489842,-0.0519507,-0.71666104,0.42259425,-0.118494794,-0.30358583,0.0647255,-0.2965534,0.02127496,0.4229383,-0.10579087,-0.17769675,-0.08533815,-0.1043529,-0.09644431,-0.07237172,-0.16188645,0.32622644,0.06999243,0.031120589,-0.029588196,-0.13061546,0.017690947,0.4831621,0.0821323,0.22063126,0.28530848,0.10816014,-0.20752148,-0.18422832,0.33115676,0.5998063,-0.18627925,-0.022987843,-0.23246823,-0.37855503,-0.24659717,-0.024160793,-0.090037584,0.3197387,0.17361723,-0.27482006,0.6481578,-0.15199284,1.131534,0.2110931,-0.43208724,-0.010828674,0.55537003,0.12926622,0.08086182,-0.3207919,0.84873813,0.44501382,-0.09851944,-0.27959377,-0.48777798,0.13077481,0.25816834,-0.114633545,-0.17863224,-0.10340901,-0.6841878,-0.25841466,0.29952878,0.26726002,0.21309553,0.0127463695,-0.098735146,0.12799041,0.010116019,0.35355625,-0.59009695,0.14977114,0.32144615,0.25240937,-0.010417827,0.15157816,-0.46397597,0.40296412,-0.55819225,0.08893756,-0.26158682,0.19193013,-0.31515446,-0.26958117,0.2766532,-0.03908295,0.39644513,-0.21372654,-0.35184175,-0.29691938,0.5195628,0.30981475,0.12195532,0.5652296,-0.18539917,0.017040918,0.10776675,0.45405307,0.9198085,-0.37330776,0.038416836,0.44256774,-0.32626668,-0.53065246,0.0976694,-0.30833,0.2117894,0.07459142,-0.2137442,-0.6365687,0.3828667,0.18755667,-0.033429928,0.13323426,-0.51491463,-0.22576652,0.23502159,-0.32786536,-0.26358882,-0.10262591,0.24896953,0.70151716,-0.35785866,-0.19441094,0.2407845,0.30600637,-0.22360294,-0.64095867,0.060172517,-0.43289688,0.39886093,0.079968944,-0.41577652,-0.15471052,-0.057863466,-0.44195488,0.23085342,0.28737158,-0.35489598,0.009838616,-0.3549976,-0.09203894,0.905074,0.015419926,0.34901834,-0.63656473,-0.33742434,-0.8267438,-0.2887102,0.6154499,0.06987854,-0.041957717,-0.5801333,-0.056410287,0.10721956,-0.10609271,-0.09548837,-0.46023867,0.48259658,0.07516664,0.49492308,0.116739266,-0.85233754,0.01558332,0.05700477,-0.27035096,-0.5322091,0.48490587,-0.19447291,0.7798276,0.05786831,0.17913426,0.2938695,-0.41634506,-0.010281333,-0.3313705,-0.16151372,-0.6886252,0.15979409,101 -355,0.48125777,0.0073195347,-0.4162363,-0.08831044,-0.17591761,0.18482819,-0.04480177,0.34553477,0.20826145,-0.26108646,-0.2675181,-0.16998467,-0.07739484,0.27061063,-0.16769896,-0.6830594,0.108691275,0.1949602,-0.4210258,0.5316667,-0.39763623,0.27087888,-0.048435755,0.32318974,-0.049413424,0.071638465,0.1405959,-0.105501726,-0.035348304,-0.19024272,-0.11010997,0.098701306,-0.5174338,0.2344063,-0.119909815,-0.1317077,0.19612066,-0.29407266,-0.34480354,-0.63282055,0.20259385,-0.57431495,0.55992264,0.15474054,-0.20055582,0.20550476,0.1368338,0.2636609,-0.11322068,-0.037004184,0.0046072686,-0.043098085,-0.19261704,-0.100921966,-0.2128119,-0.43775776,-0.55842936,0.17008981,-0.37416476,-0.0071975165,-0.1339349,0.09743995,-0.24880323,-0.038410936,0.009859843,0.34016126,-0.22676294,0.029928325,0.2990381,0.009940199,0.13697806,-0.5686328,0.014267315,-0.11266097,0.22783457,-0.10751233,-0.270072,0.17880787,0.50359374,0.47645244,0.011715106,-0.25354013,-0.07242959,-0.19696508,0.15829447,0.47215304,-0.1310495,-0.56682587,-0.18779357,0.103334285,0.08624215,0.20838584,0.048123013,-0.3110411,-0.056326125,-0.1007803,-0.17515834,0.2775289,0.4561256,-0.38671228,-0.3353623,0.34606892,0.56468856,0.044538848,0.045473628,0.023418197,0.14151302,-0.5267662,-0.21414243,0.115641154,-0.29999548,0.4822491,-0.26190752,0.01341808,0.5369261,-0.10593225,0.06342326,0.18971793,0.09875616,0.033149533,-0.4044978,-0.1630312,0.15174165,-0.58719695,0.091350146,-0.16234626,0.8440727,0.2766532,-0.66076404,0.31918773,-0.5954054,0.15240753,-0.104048245,0.46562904,0.6724018,0.28104967,0.28988615,0.69692403,-0.4746241,0.08917993,-0.122027636,-0.2622881,0.0699623,-0.10850309,-0.0610814,-0.43121347,0.18745337,0.062267754,-0.09608432,0.014597961,0.15950836,-0.5137587,-0.095938995,0.11655756,0.7566897,-0.2401297,-0.18575546,0.60365975,0.943834,0.8694053,0.13050553,1.3724747,0.24702074,-0.21409877,0.26666877,-0.27610162,-0.78064966,0.20743789,0.25019312,-0.35452265,0.19233724,0.040273447,-0.06835173,0.32307753,-0.5456386,0.040903497,-0.15704493,0.4948318,0.019270131,-0.012044532,-0.3046403,-0.27188757,0.014139518,-0.06565333,0.2280751,0.32201758,-0.053835373,0.14228486,0.10204474,1.256549,-0.1470364,0.07676237,0.03079388,0.36119038,0.2664205,-0.08373671,-0.2228191,0.37625027,0.27861694,-0.004778411,-0.5359274,0.017535115,-0.2666823,-0.30359086,-0.25306344,-0.13479099,-0.12127707,0.17865443,-0.23603019,-0.15183382,-0.15868844,-0.17652069,0.7112939,-2.7365384,-0.20882702,-0.09426781,0.29073694,-0.37843415,-0.364373,-0.24141799,-0.48553395,0.52693045,0.18438466,0.39789656,-0.78280133,0.17563121,0.26455155,-0.4631864,-0.18650272,-0.6623731,-0.047018208,0.06391177,0.1654582,0.03695583,-0.108054124,-0.17185824,0.058040056,0.3273557,0.09724008,0.124745116,0.21538027,0.23344885,0.31260243,0.2692663,0.0060483688,0.59750473,-0.0963661,-0.13048746,0.20518778,-0.30737248,0.5528231,-0.20056595,0.06533454,0.36715892,-0.5539754,-0.63856554,-0.7169928,-0.5078901,1.0741762,-0.19735302,-0.18678172,0.0784752,-0.3431979,-0.20671327,0.034737144,0.3379969,-0.2286229,-0.16230032,-0.720192,0.058181603,0.08033036,0.23285685,-0.004294636,-0.04505586,-0.34186673,0.66637766,-0.18697716,0.27878922,0.3951992,0.13689935,-0.19435334,-0.5904211,-0.10483068,0.86171,0.45900354,0.14132227,-0.14601453,-0.27853838,-0.53130984,-0.21493094,-0.0019184862,0.5337692,0.74050146,-0.12794234,-0.16004303,0.2889183,0.04999249,0.13741641,-0.01588516,-0.4201284,-0.08034743,-0.16510573,0.5533639,0.46841723,-0.27212632,0.3004871,-0.03335992,0.23278318,-0.22351502,-0.32997844,0.5731627,0.98497444,-0.24055721,-0.17392604,0.5531432,0.29849073,-0.20256114,0.36129355,-0.5913761,-0.21128263,0.45100728,-0.031181647,-0.29752058,-0.019683126,-0.2991421,0.13449709,-0.9001335,0.4414886,-0.3553748,-0.40451744,-0.5480148,0.011015526,-2.7865436,0.261161,-0.23481473,0.06831994,-0.19919147,0.034641482,0.23071636,-0.37863395,-0.6056618,0.33091778,0.021897426,0.49578133,-0.092217125,0.20362043,-0.13210371,-0.23843257,-0.3974093,0.110426605,0.18383506,0.20195691,-0.12525705,-0.2262644,0.1592923,-0.17484328,-0.29561296,0.22195654,-0.61463344,-0.43210068,-0.18795674,-0.5469271,-0.30838206,0.6718574,-0.5069863,-0.021631347,-0.28749374,0.016660977,-0.18673857,0.20056848,0.06267819,0.07149679,0.016872773,-0.0033097502,-0.18925838,-0.34273654,0.2430471,0.04468303,0.21881476,0.3593491,0.02521704,0.105784334,0.36577898,0.63534135,0.024289113,0.75519276,0.36444524,-0.116969176,0.1981651,-0.22854151,-0.16552515,-0.17185046,-0.28272843,-0.197866,-0.37992105,-0.3671196,-0.016136732,-0.426433,-0.6811141,0.28580672,0.14254008,-0.019434744,-0.02957541,0.2692108,0.4441967,-0.22212349,0.17961057,-0.029347496,-0.15973891,-0.62727654,-0.36156133,-0.3676098,-0.3239457,0.4049966,1.0375235,-0.36547908,-0.08957465,-0.090598024,-0.21526423,-0.024238957,0.055609737,-0.11373533,0.06935729,0.45965725,-0.11816418,-0.53729284,0.37963992,-0.066011734,-0.22900847,-0.5357183,0.23097193,0.57874405,-0.66486824,0.70703316,0.45613003,0.12371792,-0.026046047,-0.48483077,-0.15424694,0.11151712,-0.39401108,0.2869253,0.34958768,-0.6519851,0.40392855,0.33449787,-0.19579418,-0.8258844,0.5054893,0.051519055,-0.17988035,0.022858748,0.48210594,0.20082124,0.08649012,-0.1838628,0.25484234,-0.45896468,0.05466791,0.20745751,-0.06327187,0.27098304,-0.2186964,-0.25654322,-0.73827505,-0.10280871,-0.63010514,-0.2864501,0.28327134,0.09037309,0.10104941,0.08301902,0.29573274,0.3523264,-0.3920569,0.17630169,-0.033205714,-0.23021258,0.21786407,0.35957035,0.35136154,-0.31112248,0.47451124,0.002015416,0.057717912,-0.19311757,0.16582601,0.41469255,-0.024019973,0.3160858,0.19793947,-0.117660046,0.16332829,0.8479298,0.027873963,0.17995445,0.12782894,-0.0010649615,0.29897675,-0.030505827,0.1917049,0.20000495,-0.49750724,-0.19433662,-0.15949473,0.16060694,0.3767228,0.21028623,0.25250906,-0.015428313,-0.27757484,-0.07522527,0.11815264,0.04866877,-1.0086745,0.39910525,0.123038396,0.6081193,0.58226585,-0.0069825095,0.17755304,0.4003453,-0.16970626,0.26348853,0.35526156,-0.11933408,-0.37244362,0.38590962,-0.66269743,0.3298996,-0.19195065,-0.0005924659,-0.010871415,-0.029470708,0.332058,0.92694813,-0.12069897,-0.015392555,-0.13237889,-0.24389662,0.15163778,-0.26180252,0.027640715,-0.6198085,-0.27804267,0.5878724,0.44709963,0.35898426,-0.23870376,-0.071889006,0.21277942,-0.0646186,0.084371254,-0.0073208255,0.13578342,0.17895328,-0.57314074,-0.23471297,0.60355836,-0.07309645,0.19039264,0.013085799,-0.11733455,0.17341426,-0.30495477,-0.0048505217,-0.123434685,-0.6883376,-0.043353114,-0.11833144,-0.36256313,0.3835819,-0.41040665,0.056686994,0.14148216,0.11130829,-0.28755632,0.37965065,0.04245943,0.57272595,0.01435756,-0.16775575,-0.4162195,0.22864291,0.07573097,-0.13551055,-0.012283764,-0.20088546,0.14347692,-0.61099297,0.5792879,0.01170605,-0.20736662,-0.011039694,-0.19820929,-0.049899805,0.5421437,-0.30001336,-0.16841586,0.16734055,-0.3557656,-0.28165224,-0.029831162,-0.037256528,0.23246075,0.35822418,0.036790423,-0.015069668,-0.22492155,-0.34155717,0.19706675,0.20489156,0.24115182,0.27073747,0.03181352,-0.30155352,-0.16746213,0.11529266,0.3812995,-0.046641856,-0.17303367,-0.1758091,-0.24970327,-0.32200193,0.20801885,-0.07710155,0.29389602,0.0148278605,-0.18028252,0.65945786,0.11033283,1.0661899,0.06567449,-0.263712,-0.14751954,0.53550225,0.031036654,-0.11374973,-0.38396007,0.9108287,0.46143606,-0.14131118,-0.1232112,-0.2962558,0.028615734,0.20731089,-0.05181121,0.07146644,0.07366104,-0.5066719,-0.31980297,0.27244693,0.2574282,0.08544992,-0.049511947,0.0077992934,0.063094325,-0.08406115,0.32791448,-0.44146279,0.04144379,0.27090803,0.32209238,0.20607376,0.26173753,-0.2522048,0.32992408,-0.59681904,0.09137545,-0.18769553,0.10383188,-0.18314233,-0.2919364,0.15590657,0.083741136,0.33456713,-0.30250105,-0.34979835,-0.20706405,0.43587118,0.2643118,0.1848205,0.6831643,-0.20394172,-0.07401126,0.12152814,0.6246562,0.96547925,-0.062909774,-0.039277103,0.24198604,-0.2488624,-0.5908887,0.35749945,-0.32676506,0.0415535,-0.07379812,-0.19327219,-0.6038968,0.23995745,0.24058633,0.2304897,0.10102068,-0.75298935,-0.10165452,0.14185707,-0.33224702,-0.17121252,-0.18464088,0.2102628,0.9012949,-0.17110297,-0.20572019,0.058718782,0.19092345,-0.23381183,-0.6319839,-0.08470596,-0.35119957,0.21529987,0.16354695,-0.24781549,-0.1266726,0.213313,-0.43288225,0.068297885,0.0152286505,-0.28582126,0.15189578,-0.26711807,0.086893074,0.7211255,-0.1455076,0.08468277,-0.49988228,-0.3778091,-0.660983,-0.2543314,0.4015101,0.10385573,0.11528533,-0.3955668,-0.16024254,-0.0573666,0.006775009,0.012642324,-0.33022806,0.48344684,0.133575,0.2548497,0.04648673,-0.83555347,-0.011956059,0.0608148,-0.1688369,-0.51393104,0.3086746,-0.056300074,0.9080601,0.027504222,-0.08564289,0.27318624,-0.48113555,0.08699525,-0.28643018,0.06298492,-0.78345066,0.12221248,103 -356,0.36905268,-0.05946387,-0.5680412,-0.32582617,-0.2330217,0.10398354,-0.05471226,0.30841658,0.29654837,-0.26685548,-0.04092077,0.06538613,-0.027443822,0.39426324,-0.0059011364,-0.7553383,-0.07753771,0.18835016,-0.58204526,0.34486657,-0.5691421,0.41249993,-0.051965807,0.39752933,0.08529745,0.4132151,0.07625001,-0.07522976,-0.07121963,0.2532934,0.10961076,0.2550391,-0.48344785,0.18138738,0.07647581,-0.35494038,-0.06098022,-0.3501572,-0.36223236,-0.53927994,0.36694282,-0.53042173,0.6285306,0.04180482,-0.34150496,0.13109478,-0.08940964,0.32639667,-0.48861906,0.18321082,0.15350421,-0.16503215,-0.00018879345,-0.19261596,-0.38234955,-0.43425903,-0.58913547,0.0350454,-0.4405672,-0.14433038,-0.16881545,0.09177412,-0.3237695,-0.11794997,-0.15451424,0.39080614,-0.5303288,-0.05889017,0.33658046,-0.2018902,0.051426798,-0.31296942,-0.12356662,-0.106205635,0.21004729,-0.09100175,-0.28116643,0.27370036,0.21634476,0.5836981,0.16201243,-0.2851788,-0.2758103,-0.076128185,0.21607706,0.543756,-0.16950612,-0.18023376,-0.3299844,-0.11843745,0.14568958,0.07093663,-0.011101706,-0.4167404,0.039270382,0.14164917,-0.12083439,0.38141558,0.53349125,-0.30297366,-0.33264655,0.35746923,0.50254077,0.029985806,-0.17828162,0.2734622,-0.08185865,-0.44257426,-0.3043949,0.03559176,-0.016223771,0.46237436,-0.07311227,0.17770585,0.7702822,-0.14485796,-0.06556032,-0.14235003,-0.0134391105,0.15255901,-0.41102815,-0.18374112,0.24430867,-0.50414413,-0.045011222,-0.13744678,0.6089617,0.15009925,-0.7554614,0.3390971,-0.45135674,0.1619264,-0.16205989,0.67158014,0.9009019,0.42470768,0.18906315,0.8105059,-0.6534196,0.16404796,0.18719576,-0.40951127,0.11939939,-0.12384671,0.053244766,-0.64617294,0.110069625,0.19949387,-0.05363732,0.10967127,0.23213987,-0.4212539,-0.1595193,0.09933133,0.7251849,-0.39673552,-0.07239801,0.77667385,1.0556623,1.0524279,-7.90315e-05,1.3330438,0.4560041,-0.31965044,0.24665366,-0.5196028,-0.5413917,0.21374784,0.32750347,-0.18466775,0.50219876,-0.025313804,0.17542233,0.52488095,-0.34665087,0.17818354,-0.02110858,0.14138483,-0.14421916,-0.11733178,-0.5404917,-0.22585547,0.08414946,0.061354697,-0.15198621,0.30798832,-0.2764547,0.49995056,-0.007967898,1.4510733,0.17284189,0.061644267,-0.0041410285,0.4390102,0.2649161,-0.3198309,-0.077850185,0.25135994,0.42646328,-0.15155771,-0.5862002,0.020435708,-0.33265057,-0.5384445,-0.2486474,-0.3674806,0.040552173,-0.14282347,-0.4826672,-0.06089216,0.070087336,-0.39653772,0.4159279,-2.5346272,-0.29099575,-0.12409548,0.26551637,-0.13061425,-0.3386648,-0.32549372,-0.46914142,0.20249917,0.27798608,0.39379284,-0.6340432,0.4463379,0.43937078,-0.41723534,-0.08095288,-0.5744692,-0.10861411,-0.09567509,0.17769875,-0.056552052,0.009632913,0.0070168045,0.3778489,0.61007786,-0.044210978,-0.07415156,0.12747417,0.39016888,0.04038133,0.5096686,0.19192937,0.6113955,-0.24142237,-0.13270696,0.3378809,-0.36543414,0.1868403,0.04889923,0.19318792,0.3791466,-0.50587296,-0.91763115,-0.55184174,-0.27321994,1.113464,-0.38702753,-0.31744576,0.3997944,-0.40537685,-0.43314865,0.02355818,0.36834437,-0.07197732,-0.0027824193,-0.71425503,0.08985053,-0.004395834,-0.00037929416,-0.05758769,0.150288,-0.24831688,0.6487584,-0.18001962,0.46166563,0.39510438,0.17411557,-0.18617389,-0.42447954,0.10402435,0.7898225,0.30750683,0.12664284,-0.05883584,-0.14625672,-0.16834475,-0.12956344,0.23894444,0.4596577,0.7906087,0.0061290157,0.15420976,0.25557736,-0.078796215,0.05146479,-0.06734489,-0.35196057,-0.10612958,0.07804935,0.5523264,0.6306724,-0.3128466,0.35698658,-0.1293204,0.13216719,-0.1512653,-0.5991841,0.53097373,0.76091653,-0.13238117,-0.25279337,0.6076278,0.34036097,-0.44321275,0.41013977,-0.62009335,-0.071375124,0.62794393,-0.15654577,-0.40350288,-0.0018026318,-0.30659622,0.038487177,-1.022072,0.23915216,0.03609424,-0.65652466,-0.3527362,-0.1883925,-3.7811298,0.11953562,-0.23538277,-0.1696126,0.0319455,-0.01782794,0.23346128,-0.6082255,-0.6054278,0.1165599,0.08887141,0.51978457,-0.042200472,-0.0011393683,-0.33993337,-0.18839471,-0.30819255,0.18154733,0.059261013,0.26653537,0.03834973,-0.5013278,-0.069555,-0.2138522,-0.5913413,0.06680252,-0.53064024,-0.53379315,-0.17229082,-0.55110526,-0.34597677,0.74547905,-0.27445933,0.008235001,-0.22508056,-0.026178796,-0.2425711,0.4240764,0.08777833,0.295626,0.15694587,0.03845402,-0.08238479,-0.28734276,0.1120847,0.08051622,0.42266068,0.26060146,-0.24503542,0.25913033,0.61869633,0.8617899,0.023789834,0.6385249,0.47332922,-0.1608169,0.33015186,-0.30016342,-0.107256316,-0.70143825,-0.5273551,-0.4246929,-0.465875,-0.6075757,-0.06290507,-0.4675366,-0.9292541,0.39969474,0.04915489,0.20335445,-0.13185456,0.12970212,0.36393458,-0.10861229,0.011648844,-0.28313985,-0.2611057,-0.5057091,-0.3242759,-0.7199961,-0.6516067,0.43120602,1.1258029,-0.214404,0.041614454,0.011769573,-0.4113563,0.111550435,0.31089756,0.1759751,0.21793953,0.24157695,-0.2609166,-0.63870966,0.34650794,-0.010798867,-0.12610961,-0.74650985,-0.0058267456,0.7126433,-0.50328904,0.80353206,0.17054093,0.1392778,0.041092794,-0.5261386,-0.35605142,-0.024512377,-0.20565185,0.6776115,0.15612097,-0.70879775,0.35161087,0.22076964,-0.18350782,-0.5638118,0.5173193,-0.040223267,0.005036838,0.024541596,0.41540733,-0.028200379,-0.23233445,-0.048692457,0.34239325,-0.36176056,0.31186396,0.36336905,-0.03347344,0.46299165,-0.05771276,-0.20444049,-0.8206342,-0.18048629,-0.6381011,-0.20446798,0.07083206,0.12231321,0.22169839,0.12750043,-0.005314908,0.36793914,-0.29020357,0.10391965,0.103474006,-0.37846962,0.27274626,0.49245235,0.24092536,-0.41363123,0.488929,0.10859758,0.07446939,-0.15692835,0.18364178,0.50531834,0.27439088,0.41237083,-0.09976093,-0.17290553,0.100838915,0.65789896,0.27117503,0.30615616,0.2171201,-0.21083197,0.2735408,0.17893519,0.1023044,-0.10040104,-0.22667618,0.07595407,0.05792495,0.2788627,0.37249523,0.13417219,0.40105605,-0.21346307,-0.16689661,0.31166178,-0.022638354,-0.046143413,-1.2048464,0.3627147,0.31114197,0.7394987,0.57052326,0.0017330945,-0.08082856,0.47306594,-0.30014852,0.11965049,0.4653868,-0.08829826,-0.38997263,0.56836355,-0.54633194,0.56922245,-0.04394003,-0.023618864,0.13847063,0.20895155,0.3850295,0.7776225,-0.03373551,0.037743628,0.06275862,-0.19246884,0.076979004,-0.2929528,0.06653705,-0.5705108,-0.21765624,0.7648438,0.48205763,0.23900561,-0.20466425,-0.105602525,0.09206324,-0.14673994,0.0934075,-0.022685427,0.033356942,-0.053565234,-0.6376956,-0.3691546,0.4438848,-0.04824261,-0.052592296,0.16565159,-0.25800353,0.20185065,-0.18344077,-0.03380388,0.009109105,-0.6533691,-0.021852417,-0.20057131,-0.4489272,0.53220636,-0.34981677,0.26952437,0.09564626,0.079957716,-0.35722968,0.288531,-0.056034803,0.75608927,-0.030585472,-0.24289405,-0.2634893,0.08189563,0.33446518,-0.27172628,0.07102649,-0.4042449,0.06229506,-0.60633355,0.4966183,-0.020480508,-0.21836136,-0.034153167,-0.023089895,0.10898749,0.3034168,-0.3257311,-0.28816685,0.048134234,-0.009344356,-0.3025376,-0.22718313,-0.29722622,0.33279538,0.021128224,-0.010453292,0.0563835,-0.1167117,-0.016125577,0.29617754,0.09207344,0.20677996,0.30731192,-0.18189916,-0.40792313,0.054896094,0.19522552,0.20509063,0.15262404,-0.0850013,-0.18988666,-0.24899125,-0.2162483,0.20942256,-0.22744863,0.2778041,-0.042836897,-0.24965374,0.752494,0.113792494,1.3630698,0.027996982,-0.25705582,0.10203589,0.4660011,0.13004385,0.11243171,-0.23105018,0.883756,0.65430075,-0.09895071,-0.41954806,-0.49894142,-0.19910853,0.17451246,-0.247798,-0.3360319,-0.0095307855,-0.8440084,-0.24344008,0.17913465,0.07896496,0.3186062,0.017249892,0.04680603,0.04791048,0.080234446,0.31931338,-0.5381643,-0.0871356,0.18286106,0.35018516,0.07271552,0.19866845,-0.2643171,0.37786254,-0.65338266,0.29954076,-0.27086878,0.08552784,-0.21321963,-0.35516262,0.15793903,0.1850081,0.2406731,-0.22843811,-0.2594118,-0.30073974,0.7646495,0.1034557,0.26800677,0.6868804,-0.32221797,-0.089595675,0.2023095,0.33103684,1.2848145,-0.025374407,-0.044995356,0.46933815,-0.2788574,-0.6733106,0.15639833,-0.37532046,0.27222678,-0.09604178,-0.38739708,-0.45647255,0.19986346,0.078371525,-0.14122818,0.22471479,-0.47855443,-0.23259282,0.33080107,-0.30094284,-0.23569718,-0.2818063,0.2047662,0.64272964,-0.43791717,-0.29258204,0.12930365,0.20033345,-0.35184526,-0.49805704,0.10359385,-0.3934265,0.35772747,0.081224255,-0.5331527,-0.003388226,0.18186624,-0.3359682,0.14484224,0.5911918,-0.41203886,0.060434777,-0.26226038,-0.35016817,1.120888,-0.0029927704,0.31899193,-0.60717857,-0.40212324,-0.99476975,-0.50541127,0.3366396,0.1301654,-0.1725376,-0.6201709,0.08214407,0.07824906,0.03960812,0.087932505,-0.48612633,0.40904394,0.16540833,0.3302903,-0.036407556,-0.97198296,-0.10157789,0.25599238,-0.20569839,-0.5928052,0.6339942,-0.14509365,0.8437454,0.116139196,0.22579537,0.19854379,-0.6022374,0.22179005,-0.48882487,-0.09792396,-0.52616847,-0.035878457,106 -357,0.34543997,-0.2941275,-0.25848177,-0.37493414,-0.45511213,0.15300587,-0.20121346,0.25331953,0.10796021,-0.5966443,0.055922713,-0.19674502,-0.10312899,0.45823255,-0.37374958,-0.7514399,-0.18572783,-0.09288828,-0.4030128,0.40749818,-0.5569787,0.2953641,0.24540867,0.16920325,0.05021274,0.32484478,0.45051762,-0.23056194,-0.23747373,-0.23713753,-0.2865359,0.11145125,-0.63370377,0.33052868,-0.14070453,-0.41350633,0.28017107,-0.60837704,-0.11023974,-0.57009995,0.24250393,-0.8360686,0.3692293,-0.04484735,-0.26391152,0.017653711,0.28981873,0.25959817,-0.2974563,0.15431929,0.23039778,-0.25416753,0.07929381,-0.11376773,-0.29978594,-0.9158119,-0.71668226,0.11375228,-0.66356224,-0.2569166,-0.21644951,0.2441801,-0.38859978,-0.017174238,-0.17941096,0.34022695,-0.5351232,-0.29712367,0.07782112,-0.19770059,0.17325084,-0.33031946,-0.24348235,-0.21404208,0.04456144,-0.1738299,-0.16182074,0.4056658,0.39915594,0.500166,0.034771085,-0.21712694,-0.20637016,-0.11516278,0.16759805,0.5293291,-0.10319621,-0.5826129,-0.22883725,-0.029533103,0.18743503,0.28205305,0.021575125,-0.32059494,0.12770626,0.21634872,-0.3556688,0.20257603,0.3502082,-0.54923826,-0.23066576,0.32202414,0.36818144,-0.105189286,-0.18008934,0.13898964,0.0890116,-0.47055933,-0.32115263,0.37978205,-0.07849182,0.57330644,-0.18602172,0.15342411,0.86038154,-0.2990632,0.20135093,-0.19244958,-0.23935744,-0.22251663,-0.17084742,-0.13706157,0.16007711,-0.52239066,0.0036578837,-0.2971818,0.94994557,0.14917043,-0.97743255,0.29680118,-0.5764321,0.088240124,-0.31477335,0.6040271,0.5451173,0.4045054,0.31339929,0.8437194,-0.471422,0.090664096,0.08089996,-0.34917846,0.14640453,-0.3123693,-0.0010982975,-0.34044963,0.10063464,0.036100466,0.06531444,-0.1005231,0.60877603,-0.40995184,0.06485842,0.11557268,0.7070804,-0.38656855,0.016369885,0.8203325,1.0234402,1.0232126,0.15696608,1.4446043,0.37885264,-0.15358554,0.10782609,-0.21125872,-0.56869906,0.10179851,0.55112445,-0.012080818,0.23512796,0.062621735,0.12782748,0.43135652,-0.33483478,0.22374895,-0.13068415,0.29700437,-0.008530157,-0.065400295,-0.60724926,-0.4160791,0.20365003,-0.012575077,-0.11948828,0.27529427,-0.064299904,0.5706296,0.21611081,1.4684016,0.11930377,0.15892248,0.066753976,0.48334196,0.18736438,-0.046936333,0.1121716,0.12041581,0.20142734,-0.009455739,-0.6461848,-0.021800747,-0.32146364,-0.6090074,-0.30393553,-0.46876106,-0.08455928,-0.2571108,-0.4000907,-0.20756207,0.061276425,-0.339912,0.4932612,-2.2485008,-0.20769207,-0.25514776,0.22060008,-0.25054172,-0.32546955,-0.03446899,-0.4448928,0.3223862,0.5063038,0.4340539,-0.7487434,0.38213685,0.4490445,-0.2521062,-0.15552054,-0.81150776,-0.033886544,-0.25072688,0.3219366,0.044340633,-0.22566657,-0.29152653,0.17404608,0.7101537,-0.0037546668,0.101235844,0.010774978,0.40986982,0.11070586,0.65362984,0.116946034,0.47797444,-0.19997868,-0.065879546,0.30257225,-0.48902294,0.362356,0.35448423,0.14908503,0.375097,-0.6864886,-0.96104676,-0.8355649,-0.6914719,1.0406358,-0.32868353,-0.31835395,0.1760921,0.16986227,-0.25503975,-0.0806269,0.4771319,-0.27005965,0.15486406,-0.6649662,0.15297735,-0.0062577897,0.19343655,-0.06149379,0.12610462,-0.37196702,0.7274738,-0.17509119,0.53380394,0.35081226,0.13519147,-0.3428027,-0.369277,0.0047467607,1.0352484,0.4285836,0.14101776,-0.13252121,-0.30515203,-0.17531429,-0.24643724,0.21076496,0.39996216,0.83615154,0.107341036,0.007879819,0.4026754,-0.27088273,0.08076998,0.044790983,-0.33657676,0.06846193,0.17270096,0.6652972,0.40737793,-0.17794167,0.34813467,-0.24044804,0.4600821,-0.19062726,-0.35508147,0.300181,0.7924648,-0.016849106,-0.012665162,0.7409019,0.7589536,-0.37376305,0.49533466,-0.6851018,-0.4010213,0.6208821,-0.049195327,-0.4910602,-0.057531793,-0.37797174,0.23873904,-1.0260621,0.45453095,-0.0680322,-0.37797526,-0.6932101,-0.31977084,-3.4824798,0.10403198,-0.11463327,-0.1040935,0.021223119,-0.17064865,0.41983652,-0.7174902,-0.5941815,0.104879305,0.05607895,0.39478344,0.11620777,0.24517237,-0.43813413,-0.065544985,-0.4098758,0.26410517,0.048285358,0.2627879,-0.057403345,-0.39381617,0.14126392,-0.58731,-0.5204836,0.12148295,-0.525095,-0.65357304,-0.13273655,-0.4780819,-0.61816305,0.7926477,-0.38680023,-0.026715968,-0.117794394,-0.022441845,-0.31040388,0.40470168,0.35498327,0.2105488,0.08656724,0.109666534,-0.37277895,-0.41628435,0.34025833,0.0806411,0.44190148,0.3512937,-0.04407962,0.224298,0.7632229,0.57221127,0.19896589,0.75110465,0.16944747,-0.035965055,0.32616505,-0.33556932,-0.24334629,-0.71788853,-0.45135212,-0.09553491,-0.35005808,-0.51402694,-0.03928629,-0.40133205,-0.6710024,0.55034554,0.11572913,0.046000548,-0.2682452,0.24652307,0.2226478,-0.15248533,0.0073733414,-0.10967742,-0.15418012,-0.66988236,-0.5202763,-0.89916974,-0.58933073,0.091387674,1.2608442,0.07577324,-0.38483104,-0.017110338,-0.294212,0.10596454,-0.019603098,0.063340664,0.26497382,0.33922657,-0.10242014,-0.8992285,0.5258484,-0.0067628664,0.08965606,-0.28105035,-0.1731336,0.7508817,-0.74743885,0.4104565,0.47738615,0.33725792,0.21994601,-0.4835321,-0.34252363,0.026309123,-0.22200944,0.56293565,0.08402334,-0.6414453,0.5838739,0.14059035,-0.20628653,-0.70260286,0.5312201,-0.032414537,-0.007762415,0.1448354,0.3284471,0.24241187,-0.15125848,-0.17521615,0.29651946,-0.7013566,0.26377827,0.46595016,0.17897995,0.5280835,-0.15750296,-0.3136954,-0.6658002,-0.1730969,-0.44311914,-0.2853743,-0.038686804,-0.041954342,-0.0042874897,0.21315782,-0.17495535,0.35404196,-0.26053283,0.08712734,-0.10452598,-0.21975878,0.2352047,0.42825195,0.23423961,-0.45416757,0.6899241,0.13433133,0.11025429,-0.34669065,-0.04258124,0.3284897,0.46150595,0.14418952,-0.05148496,-0.2281532,0.2638028,0.76982623,0.290603,0.35911116,0.18453741,-0.18448928,0.4938405,0.19100608,0.15818466,0.1587756,-0.3084856,-0.061103422,0.14131704,-0.046373434,0.31318697,-0.036312968,0.3398695,-0.16586468,-0.07658188,0.2804655,0.35949513,-0.32903546,-0.94662774,0.24023044,0.19693176,0.5540339,0.7669362,-0.08011532,0.049080458,0.6450763,-0.510272,0.029122708,0.3353333,0.10175047,-0.54175335,0.7148785,-0.50239736,0.48606688,-0.30513462,0.037712537,-0.21844026,0.039268795,0.40022382,0.8656896,-0.016865727,0.16212405,-0.0754649,-0.21666625,0.25172928,-0.27974552,0.121278085,-0.448347,-0.19152904,0.64763564,0.16794603,0.29835728,-0.057272024,-0.011940773,0.07801217,-0.125318,0.4299675,-0.09589603,-0.1003936,0.106502675,-0.66155106,-0.39766693,0.6926893,-0.11688336,0.0372001,0.21022545,-0.5566004,0.3406816,-0.119574055,-0.11522194,0.091402575,-0.5374833,-0.007079267,-0.27789503,-0.56130874,0.2288462,-0.44301707,0.2489622,0.14480402,0.080221236,-0.2485434,-0.20623684,0.42920446,0.69817406,-0.012279087,-0.26622564,-0.23785369,-0.2309369,0.25557098,-0.37534395,-0.09050473,-0.32375616,0.2591011,-0.69281584,0.58273983,-0.15706323,-0.37454984,0.12741321,-0.1860409,-0.040375948,0.40754992,-0.2913756,-0.1467627,-0.063287474,0.219228,-0.06803916,-0.042351928,-0.42681578,0.36029574,-0.021233499,-0.068427436,-0.005282302,-0.2425421,0.028340826,0.54644424,-0.012301134,0.24483144,0.12465739,-0.054032188,-0.4683244,0.048409343,-0.2330061,0.23276637,0.052684106,0.016258478,-0.18696071,-0.10056551,-0.09259302,0.34200504,-0.20846495,0.18377066,0.0894679,-0.60181296,0.7207281,-0.09714778,1.2455083,0.09939004,-0.4914291,-0.16892883,0.5477559,-0.044086795,0.18043092,-0.3497457,0.9848665,0.60274875,-0.21842898,-0.29007497,-0.5903358,-0.24514458,0.3016581,-0.21727483,-0.26566145,-0.054632764,-0.7765202,-0.3223394,0.22477324,0.15739577,0.16779692,0.095164366,0.14178959,0.05932658,0.27158743,0.59887415,-0.47489682,0.028310461,0.3027666,0.24929537,0.15091947,0.19632737,-0.36197755,0.30545622,-0.71093756,0.4467816,-0.5165759,0.14220256,0.013888708,-0.31808963,0.1453969,0.15468648,0.36599442,-0.08960966,-0.47599643,-0.1609153,0.8880185,0.111891806,0.27188915,0.8363763,-0.28370672,0.1129206,0.0055354154,0.45487896,1.6683166,-0.16495797,-0.056036804,0.16921405,-0.21995592,-0.6277885,0.40520525,-0.5479329,-0.14494307,-0.06449362,-0.48529625,-0.47571823,0.32503095,0.34525457,-0.103369355,0.077270456,-0.35842445,-0.2524012,0.6124784,-0.36299917,-0.40326312,-0.36685476,0.444064,0.82331085,-0.44485644,-0.14050923,0.0440248,0.4134454,-0.33485028,-0.5528493,-0.04902621,-0.35524908,0.52108157,0.15344968,-0.30284008,0.112906516,0.1974047,-0.27744135,0.26290208,0.43481943,-0.3235475,0.05451652,-0.24282798,-0.0022708008,1.1413195,0.26756272,0.044098616,-0.80583286,-0.48544088,-0.87738425,-0.3920064,0.4116439,0.0985515,0.011293756,-0.28586382,-0.05286751,0.082066454,-0.035048056,0.13172172,-0.77219075,0.3676001,0.124101594,0.6042863,0.07485022,-0.7783009,-0.04080562,0.107283406,-0.043798823,-0.39601007,0.53726417,-0.17109215,0.79976493,0.12509131,0.05287671,-0.01354218,-0.4466785,0.38173717,-0.40565968,-0.3010684,-0.67516434,0.11870781,111 -358,0.35577178,-0.35061198,-0.581857,-0.07680813,-0.40700674,0.105794534,-0.2807362,0.36458564,0.28748584,-0.16005276,-0.3669886,-0.07792827,0.17025055,0.27466142,-0.091633484,-0.51578176,-0.05801334,0.19412264,-0.66464084,0.6119205,-0.51760375,0.28864792,-0.032157846,0.52283686,0.31385258,0.33195263,-0.0005795487,0.01059785,-0.30411083,-0.054056056,-0.121130824,0.33926505,-0.47953525,0.247857,-0.30918077,-0.19511001,-0.15264164,-0.55220693,-0.34535977,-0.7800183,0.1056683,-1.0203083,0.5469471,-0.23203966,-0.110184684,-0.072032996,0.28751722,0.31244177,-0.47377798,-0.03415819,0.27657083,-0.23854586,-0.31215587,-0.2278541,-0.14139059,-0.4162586,-0.44886097,-0.11891955,-0.5741228,-0.165665,-0.24767461,0.18029816,-0.2520832,-0.09256671,-0.08115382,0.37067983,-0.5498138,0.105974056,0.24582164,-0.20050637,0.111419514,-0.6288683,-0.1465692,-0.18845126,0.46874133,-0.03678366,-0.3969426,0.36516705,0.44220537,0.09595055,0.13030323,-0.19707844,-0.34632468,0.069115736,0.24109142,0.46057764,-0.01630342,-0.32967076,-0.21076706,0.084407814,0.43414918,0.29937962,0.13038184,-0.26510423,-0.18898165,-0.054421443,-0.122580275,0.6153841,0.50384337,-0.067679435,-0.17410254,0.3266684,0.5027332,0.5054059,-0.4334517,-0.14075884,0.002129443,-0.52108276,-0.085266076,0.16031705,0.0010778968,0.48789766,-0.13838065,0.04673525,0.89167225,-0.16323969,-0.13302569,0.31508276,0.24073805,-0.23644258,-0.19311938,-0.27011973,0.18390574,-0.5407604,-0.014135761,-0.13326767,0.52372587,0.20169513,-0.7533865,0.40467525,-0.49307278,0.050926436,-0.16038474,0.51790977,0.7955012,0.5310036,0.40123013,0.6221892,-0.078690685,0.21050881,0.013476849,-0.41827446,0.08451079,-0.2761389,-0.1483129,-0.5832488,-0.043200154,-0.27264622,-0.019877817,0.20225428,0.42026803,-0.361166,-0.109553084,0.08779424,0.7623271,-0.3124357,-0.23589721,0.8069394,1.0553629,0.87197745,0.06095278,1.0650114,0.24649374,-0.107160755,0.015458907,-0.30973977,-0.72946304,0.28898415,0.2407521,-0.4387968,0.33160755,0.040040705,-0.024271403,0.23492466,-0.38669652,0.0056737,0.119450055,0.18086131,0.24071766,-0.07520239,-0.44172314,-0.38197973,-0.13893203,0.119329736,0.077861354,0.23533347,-0.31972924,0.35936204,0.043195415,1.4356833,0.056910872,-0.20091733,-0.06188757,0.7054688,0.3460916,-0.12873419,-0.1089338,0.46144262,0.48305145,-0.017040376,-0.5694977,0.22414878,-0.26697475,-0.36336905,-0.076412424,-0.4904801,-0.24911211,-0.00651661,-0.5189867,-0.100152016,0.08178363,-0.18822648,0.4403912,-2.7517948,-0.17646578,-0.015355934,0.42275307,-0.111884825,-0.19479738,-0.24865416,-0.59189,0.21514288,0.08713324,0.60653704,-0.62766963,0.57885754,0.50076526,-0.5418505,-0.2110076,-0.7218704,-0.052167892,-0.003503676,0.49181595,-0.04377108,0.092614785,0.05321005,0.089221135,0.7378578,-0.017869966,0.19997944,0.61666757,0.40799403,0.062273,0.5997034,-0.049945056,0.5854985,-0.15963905,-0.17081718,0.16367438,-0.35582122,0.55889803,-0.027120935,0.07768544,0.75619036,-0.39702907,-0.93798226,-0.5477864,-0.17468296,1.0276498,-0.4948494,-0.41676864,0.11133034,-0.4677024,-0.30217668,0.0310218,0.66990423,-0.077135645,0.097203664,-0.6545579,-0.060820937,0.113793306,0.20469984,-0.00040395133,-0.028528992,-0.19263661,0.7716379,-0.0048383987,0.62109566,0.053518116,0.21278776,-0.28897673,-0.43839025,0.21739508,0.7442135,0.19961442,-0.028861357,-0.16202866,-0.32328078,-0.35712034,-0.11196573,0.024850415,0.69556344,0.45342308,-0.027130017,0.19381173,0.29302508,-0.0663626,-0.0438496,-0.33095986,-0.20824838,-0.046111327,0.2095671,0.5100926,0.95622885,-0.06058016,0.70804787,-0.20866744,0.27430505,0.040101774,-0.6312936,0.7055421,0.6998989,-0.14794485,-0.116146326,0.34964752,0.5562033,-0.3998291,0.37536457,-0.5274776,-0.21807727,0.5137508,-0.18592714,-0.37069935,0.28476295,-0.07530417,0.18134816,-0.73318034,0.37701267,-0.19313815,-0.4466211,-0.31109828,-0.0002962138,-2.7098699,0.08959295,-0.0035362542,-0.32145837,-0.4041904,-0.19819437,0.30166197,-0.629171,-0.5745178,0.071540356,0.17280409,0.85261565,-0.1873037,-0.018764164,-0.24901152,-0.35716504,-0.06377243,0.2087222,0.19052494,0.42634037,-0.2018687,-0.52468085,-0.1234498,-0.06435427,-0.57475036,0.101271436,-0.5898243,-0.46105337,-0.014090083,-0.5079103,-0.1517568,0.53751767,-0.46251655,-0.020026812,-0.13117643,0.13965093,-0.23254554,0.25855154,0.17807886,0.1775571,0.0019583765,0.033291373,0.37327638,-0.20282462,0.46740603,-0.036532678,0.25688756,0.0663575,0.20308854,0.3398381,0.61630857,0.58867466,-0.2871236,1.1383101,0.4249577,-0.1460568,0.17333505,-0.23714426,-0.5133599,-0.5319215,-0.15533666,0.013106014,-0.46972018,-0.30327946,0.077547945,-0.30843082,-1.0046445,0.6031534,0.07020173,0.20817815,-0.054892603,0.2133399,0.61056954,-0.21963169,0.08559183,-0.015659105,-0.18555102,-0.52780646,-0.29322723,-0.6170911,-0.46544474,-0.082923755,0.82450694,-0.35456234,0.045345556,-0.05688414,-0.5235845,0.14278148,0.1455097,-0.04248446,0.2744052,0.33358374,-0.081939146,-0.57146823,0.3680704,-0.23239182,-0.0738082,-0.5527762,0.21432939,0.6745171,-0.84667844,0.50963557,0.28764603,0.015404047,-0.34416565,-0.41490966,-0.15461086,-0.13802172,-0.13469858,0.4977872,0.23479995,-0.86771816,0.48885754,0.31202793,-0.4812873,-0.6289293,0.4675241,-0.14082623,-0.20243838,-0.16830103,0.2696642,0.06038064,-0.01281829,-0.28882852,0.23661341,-0.2893797,0.04780117,0.22048643,-0.1388325,0.32463005,-0.15700038,-0.1668506,-0.7604933,0.05218658,-0.2587944,-0.3185222,0.36522222,-0.038921572,0.1343293,0.02517828,0.25911316,0.2671733,-0.39236537,0.04560746,-0.10774145,-0.39988774,0.28110752,0.52323854,0.51863754,-0.29659277,0.4880083,0.14269409,-0.18971395,0.45934469,0.062473755,0.23627281,0.088691466,0.40987763,0.04542598,-0.19711657,0.3235245,0.843177,0.14385736,0.5075063,-0.010222278,-0.13720487,0.12532257,-0.017169122,0.3906119,-0.062207002,-0.5333193,0.018274311,-0.13683784,0.2562886,0.45650014,0.28938338,0.21987809,0.08273224,-0.33890978,0.07224871,0.15441859,0.22688426,-1.4309198,0.55075204,0.3151619,0.95118153,0.17399548,-0.0039783907,-0.095119916,0.8370625,-0.25394467,0.12144361,0.33144483,-0.07325802,-0.49482986,0.57611424,-0.68116057,0.57477206,-0.13989368,-0.027036889,0.27789092,0.047939513,0.47381255,0.9177565,-0.17487104,0.06385176,0.18603142,-0.2248982,0.016679686,-0.45856693,0.079684235,-0.57513326,-0.5059079,0.7387732,0.49446797,0.4637021,-0.18923748,0.07040797,0.004742124,-0.24634643,0.1948916,0.075217314,-0.05878345,0.02116595,-0.6869611,-0.044317313,0.59144133,-0.19786371,0.08327601,-0.17464268,-0.12906416,0.2341044,-0.25208193,0.091248974,-0.11881333,-0.7014392,-0.061124295,-0.32901716,-0.70924026,0.4793991,-0.09471917,0.06418559,0.29199645,-0.13097946,-0.2208221,0.6483436,0.23182227,0.82875025,0.00031867198,-0.18602057,-0.29898432,0.10015939,0.3097023,-0.1999568,-0.056502547,-0.46081087,0.0935659,-0.4499157,0.5713757,-0.22953796,-0.48500952,-0.09221946,-0.050716307,0.044443928,0.5911897,0.018966228,-0.2235903,0.0015317372,-0.21796726,-0.5902881,-0.1055641,-0.27146855,0.16956475,0.34047168,-0.1814766,-0.16140486,-0.281167,-0.068132505,0.5252529,-0.13633168,0.5806551,0.4460597,0.11531572,-0.08928683,-0.12141673,0.2578385,0.6547509,0.115053676,-0.10590152,-0.53319514,-0.17352745,-0.3466974,0.17465079,-0.08592167,0.2821655,0.08472158,-0.31871304,0.84772,-0.18948956,1.1613852,0.15017666,-0.31034565,0.23518346,0.45153576,-0.18577863,-0.0295219,-0.3209003,0.7521283,0.42436242,-0.20329706,-0.020420717,-0.5129396,-0.11776771,0.35096768,-0.39514393,-0.061719786,-0.016296135,-0.58123666,-0.27871925,0.18956788,0.1467292,0.17568144,-0.13366006,0.103333764,0.16911732,0.122221366,0.14667885,-0.6371502,-0.07242118,0.19121209,0.27330163,-0.22927162,0.16539618,-0.43660048,0.47832337,-0.53231674,0.24832916,-0.4269406,0.2449292,-0.21970923,-0.38099653,0.16866788,0.06456947,0.29900008,-0.42466927,-0.3378467,-0.46657786,0.6044801,0.0008809737,0.14328139,0.299679,-0.2660267,0.17047274,0.14302771,0.56685215,0.99666566,-0.3933188,-0.044514634,0.3991485,-0.50545865,-0.5220049,0.37413797,-0.54772705,0.1623893,-0.0023259562,-0.29606596,-0.6004472,0.29666784,0.17496188,0.33419353,0.06527939,-0.5877358,0.0319069,0.25428054,-0.14869586,-0.2574043,-0.24432337,0.20277934,0.49283674,-0.2891924,-0.32918,-0.009832059,0.10064142,-0.17218177,-0.29603335,0.05019949,-0.3503591,0.32223296,-0.17471187,-0.32878894,-0.08357777,0.089697786,-0.40892148,0.1270152,0.115061834,-0.39511117,0.14074811,-0.044878416,0.07471105,0.89973414,-0.29528365,-0.015274286,-0.6230807,-0.60057074,-0.76370096,-0.35159928,0.006907842,0.22213854,-0.16321369,-0.57416165,0.06872858,-0.086967595,-0.37701026,-0.04919086,-0.5926887,0.42988634,0.068559766,0.40913883,-0.13128532,-1.0393499,0.17409857,0.05633854,-0.28869724,-0.6954927,0.5302636,-0.22225554,0.83939135,0.101956025,0.03916645,0.018647585,-0.20031475,0.103176355,-0.3628662,-0.0023442549,-0.6404343,0.109055325,122 -359,0.37036964,-0.17160763,-0.37259245,-0.24221978,-0.40333787,0.17394914,-0.21055283,0.08995223,0.11133484,-0.5169774,0.04066423,-0.17116968,-0.15934436,0.35634518,-0.24791943,-0.75795,-0.12060162,0.16397874,-0.5429029,0.474272,-0.5612664,0.15080617,0.042655263,0.36170223,-0.06014525,0.25581917,0.2496913,-0.05923299,-0.20347871,-0.00026091933,-0.12508729,0.33396453,-0.79570335,0.48033443,-0.021588424,-0.23705043,0.015144229,-0.51827353,-0.21448596,-0.6020147,0.24678493,-0.7879159,0.54268384,-0.029734403,-0.2052897,0.015639832,0.2688796,0.22352359,-0.27225986,0.057785362,0.34999254,-0.22879712,-0.08040004,-0.11071289,-0.23845567,-0.64167243,-0.66278553,0.049659044,-0.71798503,-0.012729849,-0.092218645,0.3518024,-0.29612598,0.06289549,-0.2365683,0.52634704,-0.42033654,-0.098028556,0.21916378,-0.08094264,0.05540881,-0.3733077,-0.14059032,-0.17499714,0.25057942,-0.2536206,-0.27714786,0.19472902,0.41888466,0.55251724,0.016768707,-0.30520216,-0.155751,0.0007555229,0.11999582,0.488728,-0.10307411,-0.3250141,-0.37232146,0.031926032,0.14525568,0.24224053,0.037025128,-0.44188878,0.17662823,0.04953748,-0.32679063,0.4172187,0.3518587,-0.46724463,-0.3812669,0.3621252,0.39293745,-0.08191795,-0.14734285,0.16019203,0.11049109,-0.50565815,-0.1492729,0.38405797,-0.15605748,0.49231103,-0.17298014,0.079743065,0.7200141,-0.18478163,-0.023568843,-0.1223138,-0.25564826,-0.095003046,-0.3860838,-0.082752585,0.1408678,-0.5800423,-0.010185199,-0.23332584,0.7975205,0.031153986,-1.0382187,0.37108082,-0.4298986,0.025763439,-0.19305725,0.59662193,0.80306804,0.4272073,0.26488072,0.8106397,-0.52107704,0.08031887,-0.1372393,-0.31616,0.1478261,-0.16567858,0.22633801,-0.42503458,0.046202004,-0.17905952,-0.011782989,-0.25557575,0.35501966,-0.40605474,0.0023545602,0.10644779,0.6825095,-0.42328808,-0.18005295,0.8199162,1.1458429,0.9332495,0.28830943,1.471306,0.34160346,-0.069369346,0.1272018,-0.22268997,-0.6243554,0.25890592,0.36698756,0.065219104,0.21195926,0.10806227,0.19910209,0.4336989,-0.14223665,0.052968923,-0.105663426,0.3538196,0.035739403,-0.006770513,-0.44931236,-0.26705545,0.21411833,-0.15335989,0.049204256,0.2550545,-0.14505005,0.33636793,0.33349425,1.4383677,0.033801895,0.16927446,0.0065874457,0.3180313,0.14206521,-0.12085121,-0.05457737,0.23940979,0.21327175,-0.12248763,-0.648995,0.06578549,-0.21599229,-0.4447949,-0.3160255,-0.36028942,-0.035718523,-0.29888555,-0.480925,-0.13267511,0.08828872,-0.31283805,0.6349362,-2.5140364,-0.3894556,-0.11501946,0.26270083,-0.29516578,-0.356473,-0.12916474,-0.46697658,0.35975,0.33166102,0.28284425,-0.6796561,0.56774026,0.3054575,-0.32362482,-0.26448908,-0.74894035,-0.069978796,-0.23215948,0.29614213,-0.04705743,-0.33549756,-0.25242442,0.15593298,0.5291503,-0.06729339,0.020274801,0.107019626,0.5208971,0.21877395,0.6642147,0.09031411,0.521824,-0.27227384,-0.05870494,0.3653875,-0.42038247,0.2928609,0.2685069,0.16448188,0.408284,-0.5886777,-0.8070192,-0.82836217,-0.7382995,0.9446303,-0.4047753,-0.2105076,0.06616657,0.059033114,-0.2893338,0.046005685,0.41516426,-0.12232231,0.047710624,-0.76165116,0.080968775,-0.06328986,0.29855528,-0.07148067,0.12475647,-0.43170428,0.59522706,-0.18848102,0.5382635,0.40092158,0.26307732,-0.2743389,-0.4506429,0.017015452,1.0737995,0.2687338,0.09304675,-0.15760252,-0.2755706,-0.021163967,-0.021576775,0.10627265,0.5061831,0.49736443,0.013277029,0.035542462,0.5237764,-0.37520292,0.09808628,-0.004577543,-0.29023576,-0.07688914,0.17742251,0.49406034,0.513809,-0.25032088,0.4198276,-0.26752383,0.15674576,-0.15015398,-0.34228626,0.4998196,1.0024012,-0.10242052,-0.20999734,0.60290474,0.5649766,-0.32798734,0.35717773,-0.552157,-0.29603097,0.55219626,-0.10565627,-0.3984943,-0.12568133,-0.4027783,0.039932113,-1.0318393,0.31610557,-0.27839276,-0.45705488,-0.59816414,-0.21744862,-3.5775592,0.06678542,-0.07483896,-0.01560062,0.013882034,-0.17880118,0.45911306,-0.5909406,-0.6524396,0.14910081,-0.002299973,0.4953358,0.050221708,0.30591044,-0.4133019,-0.06433491,-0.23515932,0.29710886,0.22381917,0.21817096,0.03344788,-0.375769,0.20835792,-0.40850982,-0.42812327,0.087287866,-0.5967193,-0.51236236,-0.05247737,-0.68363476,-0.5380683,0.71846724,-0.51925737,-0.17517796,-0.20948961,0.04151261,-0.2037796,0.5263497,0.17739365,0.2683592,0.105033144,-0.06072435,-0.31283513,-0.30481246,0.27056843,0.06957082,0.24832547,0.49421996,-0.03055504,0.15934154,0.53907144,0.57263166,0.0872274,0.6545938,0.2607642,-0.1557221,0.2889878,-0.36957297,-0.23828979,-0.6969948,-0.32537797,-0.27922973,-0.48968616,-0.5329483,-0.060177617,-0.4121348,-0.70278484,0.49089614,0.041458406,0.034297347,-0.2063318,0.25112048,0.28572303,-0.22784317,0.12251113,-0.20475873,-0.15332231,-0.5233728,-0.6734108,-0.69258106,-0.61210567,0.14937837,1.406056,0.017321957,-0.2159517,-0.016308324,-0.23425405,0.059850607,0.09592778,0.12524305,0.33443165,0.5108324,-0.034196522,-0.6921993,0.31132886,-0.07398392,-0.052555587,-0.3386684,0.02202705,0.8610832,-0.75919193,0.7300442,0.3646051,0.24996276,0.22380635,-0.5731479,-0.2903697,0.107208885,-0.28850597,0.5542418,0.27198473,-0.6665068,0.48109767,0.22106102,-0.14275905,-0.7823299,0.47217852,0.14029703,-0.048299346,0.024726281,0.48600084,0.32331678,-0.021616718,-0.19400477,0.23106231,-0.6515614,0.16216706,0.30558178,0.051864676,0.46476406,-0.18070774,-0.20016415,-0.5673451,-0.2408396,-0.5607895,-0.3625761,0.04443643,-0.068813294,0.09832776,0.31066513,0.07793975,0.412018,-0.43774155,0.16038911,0.022141675,-0.20009017,0.10004992,0.5174616,0.26129696,-0.46156174,0.57634705,-0.046024956,0.100993566,-0.10351218,0.035707287,0.3256256,0.45841056,0.1641474,-0.10099939,-0.040150423,0.18681595,0.8449946,0.1709326,0.28696945,0.1801882,-0.13622776,0.43434116,0.07335242,0.17998348,-0.01463856,-0.2996776,-0.12771042,0.086336836,0.18417212,0.3724262,0.022947375,0.28056327,-0.15348163,-0.052735317,0.13634111,0.3320346,-0.21764798,-1.011928,0.28365153,0.19693406,0.6282025,0.6779663,-0.006923284,0.18204176,0.441188,-0.44386163,0.13467932,0.34487075,-0.017718827,-0.2732574,0.5996199,-0.449539,0.42233723,-0.2665424,0.009402424,-0.04319879,0.091668285,0.29049882,0.89671487,-0.09212238,0.0583376,0.0066038114,-0.08387186,0.09246056,-0.23072846,0.15143922,-0.43339327,-0.23181637,0.6824334,0.4060192,0.35950035,-0.36975667,-0.06508596,0.049691927,-0.14263071,0.103339925,-0.06914693,-0.27190265,0.22108759,-0.6469153,-0.35919556,0.6917009,-0.068176225,0.055730786,0.24640761,-0.41940567,0.27315357,-0.105366535,-0.09134083,0.031282995,-0.61666757,-0.14587416,-0.32929403,-0.34056565,0.20456788,-0.4795627,0.06714689,0.09379881,0.022761093,-0.27538973,0.11571287,0.4748077,0.6574978,0.10365408,-0.12815024,-0.35651916,-0.1425157,0.1982192,-0.27974886,-0.107701,-0.4126748,0.22593299,-0.59352547,0.58773804,-0.12320825,-0.313922,0.08843048,-0.02584212,0.09821315,0.52940184,-0.1763337,-0.06621075,0.03268836,0.06272734,-0.27484104,-0.0790667,-0.42009702,0.2669641,0.063043125,-0.04457221,0.05995253,-0.20928502,-0.19331875,0.46810606,0.19457534,0.19296603,0.20857069,0.04659656,-0.30342966,0.030340655,-0.009212502,0.37177214,0.067390755,-0.14636758,-0.16276467,-0.10813342,-0.13575359,0.40826246,-0.15412928,0.066539876,0.0017520998,-0.61308366,0.7532118,-0.030972734,1.1594833,0.12310754,-0.3857283,-0.061817877,0.40148106,-0.070855424,0.12645702,-0.38225704,0.866414,0.6033076,0.05788831,-0.24639344,-0.46298233,-0.32205826,0.16119362,-0.30909675,-0.190214,-0.07763011,-0.72013706,-0.2538425,0.2529827,0.19552489,-0.018440058,-0.02178185,-0.023496823,0.09817613,0.094439216,0.5019415,-0.5854592,0.14911485,0.28458866,0.38915125,0.15176924,0.28424406,-0.28488988,0.41284367,-0.71337783,0.22374582,-0.5359673,0.00547514,-0.06813667,-0.095089555,0.21096739,0.0481134,0.35527268,-0.023967573,-0.31609753,-0.2764725,0.81410515,0.07176508,0.2696455,0.97676384,-0.12903579,0.02010856,0.06227727,0.56214416,1.4596748,-0.19584885,0.026261922,0.14889479,-0.19890079,-0.60788167,0.24481201,-0.43976906,-0.010540647,0.13188218,-0.39860106,-0.38190326,0.31458443,0.10737107,0.16129495,0.07518067,-0.5267642,-0.06984393,0.5195416,-0.27444488,-0.22927403,-0.073272504,0.4342595,0.95586354,-0.3474129,-0.14813307,-0.032070395,0.44491476,-0.29934973,-0.51909214,0.048537593,-0.4118583,0.41375658,0.14370704,-0.2740641,0.010312687,0.22112557,-0.3603056,0.079874754,0.4171076,-0.2642481,0.10680102,-0.16445443,-0.16774371,1.1027324,0.20062761,0.071648166,-0.7251772,-0.5415131,-0.81493133,-0.2670739,0.21562563,0.1818508,-0.045006115,-0.34693027,-0.109893225,-0.13889186,-0.18616676,0.13407947,-0.6992988,0.32352972,0.14505324,0.58611786,0.013940222,-0.8736321,-0.046456628,0.20112726,-0.08911971,-0.46005297,0.54341453,-0.16795237,0.8976168,0.04229564,0.002875788,-0.10698138,-0.5025392,0.37538528,-0.5688752,-0.17388085,-0.82254225,-0.01794059,123 -360,0.39317602,-0.13057616,-0.54670084,-0.06681598,-0.30559683,-0.06771151,-0.14893177,0.41014037,0.23686765,-0.14797904,-0.12630293,-0.08530145,-0.08330811,0.39143676,-0.19384442,-0.7473468,-0.13396071,0.033133,-0.5021452,0.9238755,-0.39454183,0.3333227,-0.098996006,0.32079574,0.48002672,0.3720596,0.2375648,-0.017899973,-0.0028482378,-0.1410815,-0.16760571,0.25682062,-0.49234864,0.067070685,-0.12688588,-0.29080397,0.07282746,-0.2990215,-0.5822837,-0.6599851,0.47310987,-0.8963203,0.44731158,0.1625928,-0.33459803,0.24333945,-0.010511607,0.13390943,-0.41150412,-0.0684004,0.0673831,0.038645864,0.145401,-0.15077175,-0.38558394,-0.54127735,-0.48624358,-0.057574753,-0.56803083,-0.16275811,-0.4402046,-0.008177702,-0.3761932,-0.096949115,-0.21780077,0.25093168,-0.52545106,-0.1552378,0.28360143,-0.15876031,0.14943258,-0.6575843,-0.15758829,-0.14632437,0.062546015,-0.029313207,-0.061922997,0.510686,-0.07301078,0.3834503,-0.030171707,-0.14247029,-0.3415176,-0.17810264,0.17866161,0.3555212,-0.077226795,-0.46490332,-0.22863634,0.09059215,0.192188,0.2892482,0.0836268,-0.19149077,-0.12148688,0.024899611,-0.14780644,0.362895,0.46901768,-0.3126723,-0.3123863,0.3292594,0.3666441,0.38813767,-0.23895994,-0.072759315,-0.046993066,-0.46582842,-0.15068375,0.10352392,-0.31452018,0.7423168,-0.093779065,0.03842336,0.7074752,-0.08245761,0.28053516,-0.12825522,0.09488233,-0.297502,-0.21368183,-0.20801353,0.13725023,-0.416826,0.3685264,-0.14700815,0.8353137,0.2321173,-0.51776284,0.38612884,-0.52514035,0.22198704,-0.15262136,0.5034657,0.6431767,0.22709577,0.30631012,0.76966995,-0.36931083,0.14078914,-0.051084496,-0.37550852,0.17359778,-0.10884269,-0.096721336,-0.47265646,-0.021592293,0.0029587063,-0.11991065,-0.0041556614,0.49535814,-0.35922006,-0.07986593,0.07683505,0.76482373,-0.26658994,0.13771367,0.57513565,1.1375774,1.0869257,-0.032698784,1.1519125,0.20762447,-0.30745855,0.26186213,-0.24602602,-0.94711846,0.20089579,0.49104354,-0.080803975,0.42588228,0.004785759,-0.03891095,0.33172822,-0.41898298,0.070206665,-0.3008802,0.18534073,-0.029032618,-0.02907701,-0.41047066,-0.20960975,-0.11640567,0.19715178,0.024897764,0.4060051,-0.21318504,0.32051882,0.0055398643,1.6421107,-0.07010997,0.043207116,0.1321924,0.77540845,0.32259756,-0.028151205,0.06789174,0.4177842,0.4732292,0.061300363,-0.6949683,0.1081862,-0.4234814,-0.3659409,-0.11093404,-0.42430797,0.10831117,0.17879799,-0.42982846,-0.21616189,-0.055306714,-0.15042745,0.40545338,-2.6466222,-0.10578303,-0.13270295,0.17361178,-0.35654,-0.18570249,-0.052123252,-0.39478675,0.5209714,0.3216985,0.5686163,-0.52863044,0.18773666,0.5763791,-0.59152114,0.08833856,-0.49779803,-0.015154193,-0.1636492,0.6915008,-0.15873602,0.052689295,0.08962621,0.24407932,0.5218837,0.28687206,0.15537167,0.23162587,0.39589295,-0.06305932,0.39196703,-0.01823418,0.48386025,-0.23300219,-0.14125285,0.38876042,-0.20837048,0.5224889,-0.27883485,0.12738775,0.5477494,-0.5134774,-0.87176996,-0.36359334,-0.25282523,1.1716349,-0.49621797,-0.590978,0.3982766,-0.2815653,-0.071926676,-0.047343407,0.41817734,-0.2233009,-0.15384711,-0.7363363,0.1558381,-0.17220256,0.17495987,0.046572167,0.05055936,-0.20527425,0.7368156,0.17059827,0.40260276,0.19530924,0.14065664,-0.088792644,-0.46611783,0.1804458,0.60857296,0.45797938,0.07545068,-0.30957794,-0.31819013,-0.1448175,-0.21094432,0.22412987,0.48391867,0.6424464,-0.15345538,0.10145705,0.3231539,-0.098204486,-0.07894341,-0.13790163,-0.24978866,-0.11278653,0.07189865,0.57734054,0.82298964,-0.16863804,0.2632851,0.0073104883,0.3311805,-0.1284134,-0.48091057,0.6003036,1.0932513,-0.107375756,-0.21061976,0.65394837,0.6728109,-0.37565655,0.5624073,-0.67309606,-0.22853234,0.54796076,-0.13884875,-0.3605682,0.07438693,-0.50438446,0.0752658,-0.80770177,0.20065935,-0.15511136,-0.2602044,-0.6443349,-0.19239794,-3.3155677,0.072626844,-0.45941564,-0.22773156,-0.18532798,-0.085000336,0.26520362,-0.71135616,-0.6057915,0.17065348,0.06793789,0.71109265,-0.11748556,0.0968327,-0.23201077,-0.3146959,-0.44829777,0.11200038,0.15353653,0.4936269,-0.19308789,-0.4386649,-0.11964671,-0.22280666,-0.3268559,0.049553487,-0.527513,-0.34540135,-0.23983239,-0.49769133,0.0003635415,0.65819454,-0.124773756,-0.050673164,-0.065705694,-0.03570312,-0.2572682,0.0616818,0.30162138,0.17932566,0.034784604,0.124444954,-0.015591974,-0.3982887,0.38216615,-0.0008510607,0.43992653,0.2535679,-0.050619334,-0.0049673063,0.54254967,0.38710052,-0.2457687,0.8546905,0.5652474,-0.2142285,0.28857747,-0.23901916,-0.29008132,-0.7110959,-0.3294664,-0.13222077,-0.3280568,-0.6230651,-0.23281932,-0.4079213,-0.82751137,0.43369213,-0.017842004,0.44990668,-0.07503023,-0.062234852,0.4452307,-0.1141954,-0.11403327,-0.021459749,-0.13978654,-0.5868831,-0.24227937,-0.6420168,-0.37140974,0.24986298,0.74841696,-0.24773176,-0.44024208,0.16504571,-0.5007082,0.044134934,0.056869514,0.1342927,0.18508093,0.485702,0.2416739,-0.7267154,0.70881194,0.06838801,-0.014520534,-0.53203875,0.09348871,0.33884445,-0.64484745,0.55463064,0.30642447,0.08886751,-0.035612684,-0.5771089,-0.3223416,-0.022829818,-0.0916379,0.31671807,0.2850887,-0.7096534,0.4677966,0.17002185,-0.32278517,-0.66952366,0.5567982,-0.15563278,-0.29829794,-0.08533873,0.25645226,-0.00965987,0.033926554,0.02199637,0.35190606,-0.3365013,0.103043295,0.37091374,-0.10783397,0.21125211,-0.11793554,-0.210237,-0.6149518,0.20147668,-0.3498853,-0.23057161,0.36764044,0.014908769,-0.04673336,-0.02697553,0.21369673,0.40243536,-0.1780118,0.22345228,-0.045621514,-0.19292529,0.618581,0.47663245,0.6998218,-0.5564875,0.6801649,0.011268769,-0.01287583,0.30119547,0.1483548,0.27959797,0.02395575,0.43976858,0.07967961,-0.156511,0.19243036,0.8553823,0.25260773,0.37512782,0.081650004,-0.08949949,0.37575513,0.15321983,0.09544505,0.05048849,-0.5708256,-0.1450526,-0.11540127,0.19710946,0.4594291,0.04254564,0.32516065,-0.1354574,-0.13376267,0.104663745,0.19902216,0.0002395766,-1.2310208,0.24930508,0.21570961,0.60774153,0.5909261,-0.05127061,-0.020988466,0.6896225,-0.23050311,-0.043197837,0.29772776,0.106399894,-0.6560009,0.50289303,-0.45552498,0.6061873,0.07918567,0.048918936,0.043567657,0.18072,0.36784694,0.74859625,-0.32836443,-0.082361005,0.012686001,-0.60962063,0.16113456,-0.2896261,-0.046256524,-0.439613,-0.36050144,0.50936776,0.5938563,0.21535428,-0.15485367,-0.051919002,-0.10403456,-0.15035698,0.19577043,0.06930696,0.054006778,-0.07026295,-0.64986175,-0.26584062,0.4246869,-0.16231035,0.13600148,-0.18068516,-0.18776147,0.34748203,-0.180865,0.015395398,0.008179648,-0.7787053,0.19416854,-0.2833453,-0.5215116,0.34130844,-0.20508496,0.4043847,0.21526217,-0.09304105,-0.37467018,0.26365873,-0.09158581,0.77103746,-0.15215635,-0.2293603,-0.3231578,-0.12975867,0.25309017,-0.22480024,0.0032654405,-0.24163716,0.035531826,-0.5709788,0.4355003,-0.11520735,-0.1975957,-0.23558089,-0.29647756,-0.073781855,0.5661239,-0.024252517,-0.23087923,-0.305417,-0.04991638,-0.45816204,-0.31141186,-0.18865916,0.1473762,0.21572757,-0.048677824,-0.16935529,-0.16842577,0.15553816,0.4295123,-0.16849594,0.33106083,0.31820568,0.08821342,-0.32295972,-0.2057284,0.28379208,0.5811257,-0.0069331187,0.12992097,-0.12850298,-0.444247,-0.4951873,0.2635416,-0.15366258,0.34695974,0.20976886,-0.38516623,0.52820647,0.0807643,0.97453344,-0.07695048,-0.2959724,0.12144884,0.7281107,-0.01759269,-0.1208872,-0.14814404,0.9024015,0.6463683,-0.17119853,-0.23582448,-0.3849866,0.079324916,0.083005376,-0.24655244,-0.019533059,0.012564637,-0.46344918,-0.049094327,0.1458547,0.33099103,0.30566767,-0.0844867,-0.11550591,0.023955302,0.267734,0.3993407,-0.3654762,-0.44265914,0.39591005,-0.14565828,0.18422438,0.27376732,-0.43619466,0.37714022,-0.5339162,0.07253613,-0.2797865,0.23622322,-0.2641296,-0.27558056,0.17855443,-0.06678308,0.44015127,-0.4134531,-0.25623608,-0.34315887,0.513083,0.12423241,0.263592,0.58228624,-0.28619537,0.16408803,-0.026838358,0.5601225,0.9572436,-0.04845274,-0.15130045,0.18116443,-0.459148,-0.7560137,0.21292965,-0.4645987,0.19819064,-0.0051862285,-0.21420811,-0.61212236,0.26837078,-0.011170839,0.028441366,0.029156795,-0.6360782,-0.37332454,0.053792294,-0.19946194,-0.2803832,-0.44294938,-0.11212725,0.6014815,-0.2703174,-0.24155031,0.2020459,0.04545317,-0.19997837,-0.59005696,0.070301905,-0.2627776,0.23684347,0.15156566,-0.39617404,0.0071672434,0.21099307,-0.44595054,0.25728258,0.11508208,-0.41401786,-0.058255333,-0.25955698,0.08634738,1.1711076,-0.3342606,0.012418151,-0.59940296,-0.5486292,-0.8895871,-0.48691255,0.621808,-0.053191874,0.12893741,-0.62511253,0.0587508,-0.06800161,0.20294416,-0.12643123,-0.4269045,0.518091,0.07185248,0.33314815,-0.02687396,-0.73971,0.1626796,0.011560296,-0.10355314,-0.61717653,0.6192073,-0.22075415,0.7722875,0.1025464,0.14095595,0.10878764,-0.5284248,0.12258778,-0.23629348,-0.22775531,-0.56245124,0.15886416,124 -361,0.40163043,-0.28675345,-0.32700825,-0.107490554,-0.0931281,-0.012596705,-0.16002919,0.38209435,0.13044454,-0.405431,0.036208067,-0.2926441,-0.007911801,0.18238291,-0.15412793,-0.43654636,0.022950556,0.042963922,-0.529412,0.61685795,-0.2965123,0.10613023,0.04430202,0.30353504,0.016042974,0.36718947,0.042296458,-0.22745192,0.015370105,-0.24252796,-0.09990815,0.089722455,-0.58491546,0.32306337,-0.040943537,-0.09678543,-0.029997375,-0.57486427,-0.50551736,-0.723834,0.2165076,-0.82940227,0.41710377,0.02049866,-0.23554364,0.1938035,0.2998186,0.37845197,-0.20847437,-0.043958485,0.33486512,-0.05450297,-0.008390631,-0.13113408,-0.011280255,-0.4220709,-0.51902217,-0.051258225,-0.33256993,-0.29525632,-0.31167722,0.1793717,-0.28582555,-0.075707614,-0.0071428865,0.5044804,-0.40752044,0.07191469,0.30416316,-0.16442367,0.54178816,-0.59213084,-0.11254698,-0.09372369,0.38052836,-0.19669755,-0.21144895,0.2680285,0.30521205,0.2700769,-0.04700532,-0.09892001,-0.18983667,-0.09261037,0.25021893,0.57909966,-0.21784045,-0.3776135,-0.03633299,-0.068296954,0.0035068542,0.14808336,0.062290244,-0.5131453,-0.11784574,0.03014077,-0.23747303,0.29315117,0.490684,-0.15399234,-0.18012115,0.35263103,0.47815475,0.18673679,-0.13781136,-0.0107803,0.0997073,-0.41851503,-0.12184538,0.12220959,-0.09710496,0.36473995,-0.07048882,0.32940885,0.7600317,-0.062722854,0.07015517,-0.056529462,-0.05464532,-0.13721938,-0.18516397,-0.10180295,0.15520637,-0.46060044,0.14982831,-0.037089195,0.63835526,0.22668162,-0.72797734,0.33926743,-0.5713281,0.13608234,-0.10957216,0.44092384,0.6587195,0.38382322,0.31486696,0.6463563,-0.47697416,0.059314985,-0.064705454,-0.51329577,0.17328325,-0.23624751,0.025427077,-0.51761216,-0.17024067,0.12848258,-0.014966437,-0.06414972,0.3177448,-0.6192412,0.0233544,0.089433506,0.9218038,-0.2074159,0.016524447,0.64412075,0.9456824,0.77112544,0.17720537,1.0265709,0.1634935,-0.22647789,0.3512058,-0.24234676,-0.5967583,0.247242,0.45436546,0.08476368,0.10519971,0.11882599,0.04043036,0.3812256,-0.39286473,0.1273251,-0.17232774,0.09184338,0.14916936,-0.28324178,-0.29115763,-0.28032836,-0.16498923,0.033852253,-0.018438471,0.116476454,-0.23326275,0.2564023,0.08847218,1.7339834,-0.081463456,0.117109194,0.085432515,0.38341156,0.15055707,-0.2594804,-0.1266611,0.30407318,0.4002259,0.35469246,-0.48799834,0.2515471,-0.099697195,-0.42138737,-0.1042441,-0.3259293,-0.17287333,-0.016017279,-0.45705852,-0.11558704,-0.054665696,-0.37917152,0.4774651,-3.064685,-0.072138116,-0.112224154,0.34919873,-0.24640666,-0.26535553,-0.04403607,-0.44352198,0.4219664,0.3608801,0.40188956,-0.64325875,0.33407983,0.3516148,-0.54079586,-0.14331159,-0.55512273,-0.11184315,-0.038623624,0.366613,0.0901471,0.09186065,0.09355692,0.18247686,0.4113012,-0.036786098,0.0955082,0.2812799,0.39894167,0.052387696,0.63863647,-0.04171323,0.3339898,-0.0956279,-0.1359326,0.30040178,-0.24467818,0.16824889,-0.06294043,0.15777586,0.460009,-0.3973589,-0.8265012,-0.8160594,-0.40729308,0.99109715,-0.15902558,-0.33479568,0.36257368,-0.22439824,-0.27708232,-0.05312821,0.6232353,0.0038933414,0.14151545,-0.80978715,0.01684154,-0.18344508,0.18982793,0.018127581,-0.2641282,-0.6043247,0.7139038,-0.01287932,0.5578553,0.24722287,0.021289451,-0.26552203,-0.39729053,0.07177031,0.8380422,0.36777332,0.0824015,-0.079256244,-0.1306871,-0.39190373,-0.25890478,0.09323878,0.5603198,0.61318153,-0.048093837,0.19661748,0.2622657,-0.046504267,0.10177673,-0.06451594,-0.22366844,-0.068893954,-0.095513366,0.5635368,0.44810534,-0.054027356,0.45863873,-0.06669044,0.26765677,-0.10556994,-0.36807892,0.44757563,1.047561,-0.08816471,-0.20175815,0.36795846,0.55508983,-0.088556066,0.2834272,-0.49843946,-0.21906707,0.42270353,-0.16024034,-0.523226,0.34050703,-0.33758482,0.10880114,-0.76211464,0.30068088,-0.3276902,-0.6489849,-0.5104368,-0.17214622,-3.6218054,0.21446005,-0.2689076,-0.29990688,-0.113421865,-0.07943375,0.3086655,-0.5809511,-0.3770301,0.16299318,0.020577775,0.5993889,-0.09141945,0.011424397,-0.25053743,-0.10111987,-0.2656401,0.18204309,0.09190949,0.27226672,-0.107714675,-0.29641256,-0.13045995,-0.09038858,-0.3806784,0.022001395,-0.62893486,-0.5521101,-0.21308152,-0.43392086,-0.25702447,0.6747175,-0.35253972,0.041235346,-0.15280536,-0.033244316,-0.25890118,0.4493297,0.1644841,0.114769265,-0.07438177,-0.04793615,-0.09880751,-0.31761426,0.36245772,0.179701,0.3320492,0.2693605,-0.08595936,0.30633503,0.46383002,0.5093259,-0.17454697,0.80883497,0.34070235,-0.09863161,0.26511872,-0.31527543,-0.23475692,-0.45787293,-0.2848692,0.11242478,-0.35760212,-0.5696545,-0.10682865,-0.33651084,-0.63395786,0.42840084,0.0036370498,-0.02485413,0.01942712,0.1296328,0.4389834,-0.21194541,-0.023857465,-0.003922552,-0.13236918,-0.5982191,-0.13803901,-0.46740392,-0.56422293,0.17604508,0.89427185,-0.1943798,0.03704593,0.09665267,-0.2866417,-0.050739236,0.04081844,-0.06317274,0.2289869,0.25515482,-0.15234397,-0.6737583,0.5361648,-0.28015366,-0.25127634,-0.6101907,0.3961997,0.5938387,-0.57234305,0.5632094,0.1805084,0.11644971,-0.15491308,-0.3772796,-0.11484831,-0.14664671,-0.32288042,0.26502043,0.047527917,-0.7325534,0.33555907,0.35238847,-0.24383442,-0.562437,0.5500224,-0.0156102395,-0.2004498,0.09275496,0.2191831,0.1141882,-0.019002499,-0.26833063,0.3586981,-0.44833127,0.29475847,0.24043664,-0.035007644,0.2652306,-0.07399305,-0.07708834,-0.5871571,0.013418181,-0.3877525,-0.308077,0.3042949,0.12401388,0.12692387,0.26532617,0.032064218,0.3020288,-0.20565997,0.0746467,-0.049349565,-0.22975121,0.16712753,0.40218097,0.4372823,-0.45182467,0.5937029,0.08255307,-0.04349162,-0.017528176,0.16557445,0.3799943,0.2437042,0.46916205,-0.29745236,-0.19503531,0.34478292,0.90616375,0.14280179,0.556476,-0.01208359,-0.05381575,0.17722972,0.08998372,0.15657473,0.08817853,-0.68921196,0.18523486,-0.2694864,0.21489565,0.48920852,0.1028948,0.20364778,-0.08708368,-0.45877647,-0.040693242,0.32966003,0.08421629,-1.1548699,0.50695276,0.3006943,0.77628094,0.44873044,-0.08034559,0.04331385,0.7173959,-0.086935826,0.12260568,0.21772207,-0.004409888,-0.56303173,0.49374682,-0.8834214,0.38011998,0.01705931,-0.10952539,0.0847375,-0.15316379,0.30587295,0.675021,-0.10158687,0.13609563,-0.025102705,-0.24278805,0.23068775,-0.37018648,0.1249918,-0.4678696,-0.3757947,0.5942129,0.6211799,0.300803,-0.073109865,0.123921074,0.032684922,-0.11148421,0.15586598,0.08425005,0.023832964,0.022523237,-0.76000977,-0.17629647,0.5376771,-0.21416983,0.29257995,0.040167447,-0.18995534,0.29002506,-0.14968379,0.040665235,-0.0684817,-0.6320612,0.102622375,-0.21397957,-0.30049866,0.4790004,-0.14681694,0.2869765,0.2353494,0.04785661,-0.07006272,0.53522074,0.11875309,0.8306548,0.0081187105,-0.14282452,-0.51036143,0.06492966,0.088596664,-0.21862653,-0.18854935,-0.35160235,0.021680875,-0.6378549,0.3505719,0.052367706,-0.36898306,0.1550809,-0.09403692,0.045653548,0.5967733,-0.17396395,-0.14468786,0.03174641,-0.15378669,-0.13762137,-0.12146255,-0.09165333,0.32213968,0.27380657,0.10060293,-0.0083109755,-0.040966522,-0.31475347,0.30623367,0.14064528,0.56123745,0.335153,0.04105666,-0.19001982,-0.13989653,0.17352448,0.43826744,0.06616225,0.033913914,-0.20293696,-0.5450781,-0.4250551,0.03754763,-0.024278412,0.46546477,0.1699409,-0.16218781,0.6014352,-0.19848402,1.0619986,0.011965996,-0.31458005,0.1267444,0.37635717,-0.031130973,-0.09895512,-0.39748353,0.7862783,0.5880857,-0.041469056,-0.12802535,-0.21402285,-0.15597272,0.24310498,-0.2575456,-0.09727507,0.07422267,-0.7298528,-0.29433718,0.10411725,0.2586928,0.19271326,-0.10189198,-0.101759516,0.19966817,-0.14295629,0.13544728,-0.5142275,-0.17236778,0.27011842,0.2886764,-0.08388012,0.009467674,-0.44349337,0.5026532,-0.43424645,0.11009853,-0.3333922,0.17473507,-0.19968805,-0.25696278,0.18573262,-0.08149905,0.4215235,-0.0956445,-0.25926638,-0.17142533,0.52562314,0.26145545,0.18483172,0.5442653,-0.2601301,0.09347771,0.07969298,0.5754388,0.85334635,-0.4607621,0.08604427,0.3852241,-0.41577765,-0.43791634,0.29682928,-0.23607959,0.21590365,0.054458845,-0.16320495,-0.27574825,0.26443738,0.2998349,0.033700798,-0.0871075,-0.66309345,-0.20342483,0.18226875,-0.35713145,-0.25993022,-0.4430322,0.3437378,0.61414295,-0.30101278,-0.22772594,0.12618646,0.17253406,-0.15302351,-0.5515903,-0.08338662,-0.31104895,0.25368258,-0.034877304,-0.32636335,-0.16435935,-0.024540389,-0.37789965,0.3001991,-0.09238219,-0.35402533,0.11664617,-0.22213091,-0.22494657,0.88043493,-0.21037224,-0.09155432,-0.6923687,-0.36404246,-0.6075212,-0.3663128,0.330044,0.14591372,0.020408574,-0.3590253,-0.0841097,0.0073694075,0.028542118,-0.15675971,-0.37329417,0.37938595,0.018359492,0.46016088,-0.16389999,-0.8278085,0.27629846,0.15910587,-0.083628945,-0.73213434,0.5214941,-0.122147694,0.65686715,0.05292728,0.111009635,0.30406672,-0.27360776,-0.1307486,-0.26602212,-0.2637251,-0.83238155,0.13995062,125 -362,0.40297148,-0.12230662,-0.5163159,-0.23084548,-0.26727897,0.21856275,-0.32812446,0.17593704,0.2423186,-0.43805364,0.0507733,-0.16650067,-0.13659951,0.31917205,-0.25376397,-0.6996592,-0.07623414,0.016197337,-0.5153574,0.28869072,-0.53820175,0.27842075,-0.0596851,0.3915924,-0.003308968,0.3156853,0.15966494,-0.04367538,-0.07180701,-0.13729236,-0.070566244,0.041180287,-0.64537627,0.18381026,-0.101606436,-0.38954487,-0.036023296,-0.54263675,-0.23465191,-0.6703927,0.49437305,-0.9712042,0.57795036,-0.089387074,-0.30762824,-0.06093711,0.19911702,0.24719413,-0.28640366,0.24665284,0.31271896,-0.12555458,0.035580676,-0.060190734,-0.55718243,-0.7330319,-0.6657668,0.0628486,-0.580727,-0.09834479,-0.054986306,0.3520289,-0.18284504,0.13582279,-0.17561662,0.16169116,-0.43304586,-0.123223856,0.2407239,-0.16857395,0.19949171,-0.44201192,-0.1910213,-0.17086625,0.21259464,-0.11430432,-0.21457508,0.17997505,0.38612548,0.6870665,-0.024280295,-0.14737153,-0.2845342,-0.10755413,0.034753017,0.60616606,-0.050390694,-0.2971739,-0.47197506,-0.20610635,0.33586344,0.32074437,0.13495812,-0.33111286,0.13545316,0.02403835,-0.2810495,0.40409532,0.5148155,-0.493191,-0.318819,0.48938015,0.53289354,0.022268908,-0.21186654,0.25015107,0.15563165,-0.49449232,-0.3469899,0.2517882,-0.025924345,0.42659834,-0.096126266,0.2714185,0.7737547,-0.10185198,0.06318965,-0.17656626,-0.16790724,-0.30629477,-0.35048863,-0.19949718,0.042408697,-0.32220936,0.034453,-0.12471723,0.671037,0.10888366,-0.8724097,0.4361382,-0.63513076,0.08640867,-0.11473518,0.63210064,0.7590102,0.3747101,0.25753435,0.94364643,-0.46909168,0.08257049,0.10728971,-0.22818477,0.10135621,-0.21177892,0.113989435,-0.37555528,0.16111001,0.15776637,-0.11638612,-0.025381258,0.6488972,-0.29662278,0.028133735,0.06899137,0.7119345,-0.361391,-0.06342526,0.8461834,1.0986797,0.97611773,0.14339915,1.5262415,0.39948234,-0.11138095,0.057638872,-0.42637157,-0.65998375,0.13581243,0.4012647,0.017648509,0.42743307,0.15696672,0.1079153,0.4923851,-0.34545177,0.10234291,0.06638496,0.052449353,0.11262315,-0.099361,-0.39805055,-0.08475773,0.08652936,-0.0044993586,0.23097095,0.2416177,-0.17642231,0.49549994,0.21434312,1.463101,-0.03208252,0.17987569,0.08731715,0.45213708,0.16433176,-0.20483755,0.03912241,0.21449865,0.2780774,-0.15704593,-0.6024205,0.050166905,-0.1948301,-0.52966344,-0.3189897,-0.25313112,-0.2579777,-0.29629132,-0.3817357,-0.20473619,-0.061843276,-0.29664707,0.46762082,-2.3987525,-0.3288722,-0.21495493,0.33562082,-0.12114835,-0.38194466,-0.2775435,-0.5021271,0.3603842,0.4671697,0.2212797,-0.6197276,0.6140088,0.48344103,-0.27911928,-0.09057832,-0.74581516,0.113409825,-0.20448811,0.25695592,-0.05656186,-0.30229396,-0.2986254,0.30581552,0.47202945,0.14405409,0.0032125541,0.13372687,0.63218355,0.012571613,0.5899665,0.0044443947,0.6095063,-0.2730903,-0.10124046,0.45305318,-0.56694674,0.38290888,0.04332944,0.21897317,0.5181474,-0.58266705,-0.87345535,-0.79650444,-0.61373097,0.9429204,-0.23009536,-0.40125734,0.22988603,-0.17934619,-0.5885223,-0.026315084,0.68992954,-0.28868276,-0.022436095,-0.8211074,-0.06976681,-0.21022598,0.32171673,-0.049917493,0.08776996,-0.44997516,0.67885906,-0.14833413,0.6019169,0.3711259,0.12636685,-0.22559035,-0.4815266,0.06541543,0.8680034,0.52342516,0.14738421,-0.11210876,-0.20045148,-0.17825042,-0.20826425,0.12635641,0.4797906,0.5699148,0.031325035,0.07155012,0.42334256,-0.24015813,-0.05716807,-0.047189955,-0.19514777,-0.03570626,0.06600822,0.62094694,0.6732294,-0.29700533,0.21710314,-0.33632493,0.28576323,-0.33147973,-0.4073346,0.45467454,0.49512488,-0.10727652,-0.20168872,0.67088014,0.56642,-0.43817067,0.42573085,-0.7555505,-0.33425775,0.397484,0.1038099,-0.41365147,0.11804483,-0.40598866,0.1523795,-1.1177284,0.20339449,-0.029494056,-0.42771047,-0.7209185,-0.43438867,-3.5742953,0.18455745,-0.046225183,-0.12333817,-0.09779607,-0.17619117,0.47263083,-0.5139769,-0.8136439,0.12865749,0.005314482,0.5698657,0.03401798,0.31186906,-0.34419915,0.017174738,-0.36319566,0.21810235,0.15726061,0.3984584,0.0035936919,-0.39257932,0.05224822,-0.41430897,-0.45621613,-0.13535999,-0.57157725,-0.5299911,-0.11811038,-0.56011766,-0.28354135,0.8002164,-0.39163116,-0.063026614,-0.31148526,-0.14198457,-0.31124845,0.5294729,0.17444468,0.12021493,0.05906817,0.0017315088,-0.23304088,-0.28047147,0.23668984,0.011745455,0.21458973,0.4143166,-0.20588835,0.24730948,0.4874224,0.62137955,0.01821976,0.7877846,0.26622266,-0.010186391,0.42798144,-0.24190034,-0.1842356,-0.622837,-0.39376953,-0.10634308,-0.48079962,-0.6050523,-0.23312415,-0.41829988,-0.78990203,0.41528687,0.06174457,-0.033523116,-0.08939024,0.16957624,0.26911083,-0.12636997,0.037196405,0.058107357,-0.20548092,-0.47164196,-0.6350676,-0.62853765,-0.61727804,0.25002423,1.3239918,0.09439557,-0.24930058,0.1475824,-0.39860195,-0.028509865,0.17002784,0.23147535,0.07458048,0.44251403,-0.17022459,-0.64630514,0.38846773,-0.21590984,-0.10712315,-0.53729457,-0.19171773,0.8715854,-0.70153874,0.51135033,0.40862635,0.2579616,-0.015545641,-0.5748568,-0.1952254,0.060676597,-0.30676574,0.54325634,0.29222655,-0.63378865,0.5842802,0.04779697,-0.035965227,-0.7075065,0.5594869,-0.025854824,0.013532451,0.10442911,0.27517223,0.09276436,-0.050993435,-0.34116295,0.36683634,-0.4777973,0.21686646,0.37983638,0.15185782,0.6482572,-0.21132867,-0.14574231,-0.62567616,-0.23098943,-0.47083196,-0.24224336,0.06272592,-0.14649422,0.22820212,0.14977233,0.09551644,0.40918347,-0.32986948,0.16233878,-0.053482927,-0.21916847,0.106086686,0.40867153,0.4284943,-0.57970226,0.669858,0.13171881,0.014403151,-0.18539627,0.07032852,0.4641676,0.33162647,0.37176278,0.043855228,-0.16827385,0.048006706,0.77808905,0.35554352,0.2849442,0.35487053,-0.25746575,0.42688257,0.15469839,0.093077935,-0.14796326,-0.47748938,-0.0041571343,0.013173052,0.1913333,0.29445818,0.08355533,0.40040046,-0.21577391,-0.17861912,0.2145929,0.22917576,-0.33782312,-1.1554407,0.25201744,0.22579978,0.7750033,0.5145637,-0.011756022,0.20599887,0.52751344,-0.4545911,0.14890735,0.312907,0.19259508,-0.40825886,0.49845234,-0.3991961,0.5617401,-0.19227758,-0.055649646,-0.01726028,0.1881175,0.46318564,0.8486015,-0.052013822,0.20665477,0.07983226,-0.11081676,0.14653921,-0.21868907,0.06684907,-0.45027676,-0.19385968,0.78063864,0.41815656,0.3553711,-0.17411672,-0.13460395,0.023366353,-0.03360874,0.017575128,-0.112384066,-0.1693623,-0.12126046,-0.73945934,-0.3603329,0.59552777,0.039705433,0.045661706,0.16612458,-0.6906974,0.2526665,-0.08082749,0.013885464,0.07082596,-0.64115894,-0.19800997,-0.34905955,-0.63632095,0.2521953,-0.26999685,0.23331518,0.19914094,0.026284436,-0.2826917,0.056181498,0.2172642,0.83375806,0.121145464,-0.109597266,-0.26180157,-0.060175233,0.47448593,-0.5668453,-0.21322317,-0.38077873,0.32957527,-0.6444537,0.52399415,-0.08909815,-0.37191492,0.18518583,-0.084733725,0.12640834,0.51220876,-0.25821692,-0.21237628,0.27217075,-0.010300704,-0.26470262,-0.05236848,-0.510914,0.30842343,0.040685117,-0.021850163,0.07820278,-0.1098746,-0.09957932,0.532959,0.17625149,0.25404304,0.4801391,0.060661223,-0.41600466,0.044992574,-0.1797161,0.53810173,-0.016341407,-0.13066919,-0.1270881,-0.39613968,-0.15596259,0.5699831,-0.07940797,0.1575993,-0.0051948642,-0.5277185,0.6622524,0.12155168,1.0633719,0.1177878,-0.535705,0.0182056,0.4939378,-0.057131924,0.06709001,-0.46177584,0.99254936,0.5925241,-0.30028087,-0.24419086,-0.44302723,-0.12619545,0.17226496,-0.29485697,-0.24457084,-0.22490004,-0.8693122,-0.15146148,0.083276376,0.17940535,0.14816658,-0.031604983,0.29595512,0.025895271,0.058491826,0.45418075,-0.5584322,-0.077353284,0.47896045,0.31325513,0.03256073,0.049760025,-0.31719908,0.3781701,-0.6673046,0.061758023,-0.7199162,0.13087334,-0.113320895,-0.3092227,0.08689092,0.009645624,0.4033276,-0.16771449,-0.41067868,-0.26259014,0.7047368,0.18689103,0.36787543,0.83726585,-0.20002091,-0.08914607,0.04687145,0.5956027,1.5037962,-0.14372662,0.16221943,0.27588457,-0.2114953,-0.4888146,0.2713921,-0.67055523,0.0640247,0.045798678,-0.34152198,-0.36195782,0.33026347,0.19406258,0.0010480242,-0.0036006074,-0.3903422,-0.27174535,0.46810654,-0.23620428,-0.26146707,-0.25324652,0.12442041,0.8963537,-0.2651952,-0.18466167,0.11100446,0.478399,-0.41033134,-0.62367475,0.070462205,-0.35946676,0.5442124,0.09444022,-0.29902014,0.046787944,0.07005932,-0.37801218,0.25246868,0.30156574,-0.4194332,0.12133439,-0.5137339,-0.17139785,1.1290814,0.10750164,0.14407168,-0.7901328,-0.5027339,-1.0390661,-0.3222972,0.08534304,0.26939505,-0.052180033,-0.31238815,-0.096508466,-0.12395068,0.09725494,0.22054113,-0.6246523,0.4884438,0.14669429,0.7147913,-0.057082128,-0.809855,-0.04537339,0.14993449,-0.31142157,-0.45095015,0.69966,0.032088984,0.8261476,0.14989892,0.13013531,-0.025785625,-0.6527069,0.47984904,-0.34232935,-0.087130055,-0.9743623,0.16454878,134 -363,0.16463195,-0.20680587,-0.49603817,-0.21842037,-0.24528006,0.008187286,-0.12044521,0.54348475,0.027339952,-0.47761416,-0.07366286,-0.18494627,-0.15272598,0.28639874,-0.23583217,-0.46476004,-0.03494834,-0.044735927,-0.37290382,0.45779535,-0.42084143,0.17330591,-0.07014447,0.40776882,0.23101106,0.1577173,0.1596906,0.12032092,0.07021181,-0.26300907,-0.17137618,0.11608378,-0.5577155,0.21984962,-0.12932695,-0.4170723,-0.005614019,-0.44034505,-0.44521835,-0.60240114,0.40700468,-0.7031818,0.42836165,0.18679504,-0.2475851,0.35424328,0.42288262,0.24554518,-0.095407434,-0.09380555,0.32754412,-0.1062801,0.1802136,-0.038598686,-0.28211418,-0.5596253,-0.67980766,-0.046778303,-0.57269704,-0.18135525,-0.104283825,0.15017907,-0.31199333,-0.07256867,-0.122024044,0.4867413,-0.33993906,-0.2696875,0.20527951,-0.11019282,0.2780579,-0.68199486,-0.25367984,-0.104554854,0.001779352,-0.26451167,-0.13371567,0.3066606,-0.01198761,0.45312724,-0.19703813,-0.050482668,-0.28605035,-0.1466941,-0.051481154,0.44724017,-0.20996396,-0.504498,-0.07701135,0.047051985,0.18763377,0.19903043,0.1338514,-0.0993613,-0.060084336,0.0411404,-0.2764053,0.55281883,0.48305267,-0.45814577,-0.11069258,0.34982628,0.45584303,0.17239808,-0.236878,0.010205927,0.022950783,-0.4769078,-0.2398437,-0.024258869,-0.20489433,0.37172705,-0.078041546,0.3679131,0.4623271,-0.24023877,0.077256896,0.08943762,-0.013517039,-0.02990904,-0.21298261,-0.33280474,0.22698715,-0.35103345,0.14262544,-0.09216877,0.70799655,0.055149592,-0.6789993,0.24969414,-0.43923452,0.09151033,0.024701377,0.48054197,0.7512916,0.33786154,0.3028325,0.7201869,-0.35268858,0.057069786,-0.09860701,-0.07652102,0.10576447,-0.040558763,0.07005466,-0.530935,-0.031936172,-0.041581284,-0.022348166,0.0018441251,0.37930664,-0.60437685,0.022304755,0.24724679,0.7950502,-0.12045771,-0.03317527,0.6600138,1.0902656,1.0789245,0.116858475,0.82259166,0.09208319,-0.13905743,0.117231056,-0.14591005,-0.68282795,0.26953238,0.45572647,0.24850024,0.27417436,0.11573667,-0.0077521885,0.47350577,-0.45555753,0.06093319,-0.2093669,0.2603013,0.16098213,-0.061807733,-0.10491325,-0.13580744,-0.012410232,0.031259354,-0.012703483,0.21264617,-0.23133329,0.30302003,0.11801591,1.4672631,-0.08541649,0.081301816,0.16962062,0.54916656,0.19561699,-0.2661312,0.11899694,0.2796486,0.3946233,0.031112045,-0.58319616,0.07809619,-0.2773884,-0.5024598,-0.20287703,-0.332115,-0.25786835,-0.13048011,-0.5348369,-0.2065607,-0.1622326,-0.23550074,0.29895997,-3.1481574,0.016637785,-0.18770063,0.12974207,-0.2402681,-0.35971063,-0.036302198,-0.45863864,0.5568537,0.42566067,0.35862747,-0.5337218,0.46343014,0.39867422,-0.28292388,0.03187271,-0.6057683,-0.05502843,-0.10907785,0.33841515,0.04529383,-0.10589713,0.2517182,0.27652425,0.39209917,-0.04330618,0.091929995,0.23737875,0.5306266,-0.04506858,0.5541784,-0.038353864,0.26319546,-0.3335245,-0.13312294,0.31667763,-0.5777055,0.16990027,-0.14498742,0.17272261,0.52998054,-0.33437735,-0.7933383,-0.53900933,-0.17534772,0.98214996,-0.044618957,-0.37511247,0.18120489,-0.44917485,-0.20931473,-0.22463004,0.47591522,-0.15429862,-0.12880656,-0.76430976,-0.031071842,-0.41020003,0.19148241,-0.036854185,-0.112337045,-0.4886356,0.8027503,-0.07294314,0.47520924,0.353229,0.056971308,-0.6273723,-0.37922892,-0.010341389,0.85169363,0.46787134,0.1442766,-0.13123529,-0.061908584,-0.21060373,0.009222358,0.22009407,0.62403965,0.44690037,-0.015740667,0.17002712,0.40681764,-0.10142606,-0.115859404,-0.20486209,-0.22810231,-0.14912984,0.17449543,0.60725754,0.5093905,-0.08902639,0.47975776,-0.05201128,0.16154985,-0.50637543,-0.32571706,0.26194593,0.7600624,0.009169489,-0.24243581,0.5570818,0.66669744,0.0028509924,0.36666998,-0.6329885,-0.5076777,0.5130674,-0.22370777,-0.30964807,0.19167571,-0.39197642,-0.036371298,-0.64445466,0.1913527,-0.30756897,-0.49509794,-0.9147693,-0.35873875,-2.6250298,0.15075943,-0.28756842,-0.18058695,-0.08153585,-0.17364226,0.35291836,-0.51494926,-0.4738976,0.1664248,0.13603963,0.5894577,0.06867246,0.038453836,-0.26458016,-0.251876,-0.18532512,0.1276637,0.07464001,0.2783346,0.07913468,-0.35214546,-0.026980266,-0.14011951,-0.3490871,-0.06611771,-0.31892326,-0.3574247,-0.1849415,-0.41842937,-0.1931287,0.6592576,-0.38946754,-0.008993864,-0.18801391,0.00021758676,-0.022514313,0.33188966,0.17787816,0.14366417,-0.2066116,-0.09620152,0.030733466,-0.3997205,0.071942635,0.10488533,0.39237738,0.4714248,-0.12644444,0.10707418,0.45404702,0.5493616,0.059781153,0.725645,0.42996472,-0.13252638,0.43490973,-0.1038028,-0.088050306,-0.50344527,-0.1929563,0.13103816,-0.33999524,-0.57394487,-0.045181703,-0.36034754,-0.7371246,0.4163124,-0.08700086,0.060457554,-0.08847945,0.40026423,0.35769674,-0.11184739,0.044174157,-0.0005836018,-0.07957338,-0.39388743,-0.4998484,-0.52114767,-0.25733098,0.1138193,1.14452,-0.09251877,-0.1440882,0.11253549,-0.18215232,-0.004658911,0.16407976,-0.050521314,0.23185158,0.21641842,-0.08922165,-0.6126727,0.36074808,-0.19532582,-0.15407494,-0.509727,0.012459857,0.62752885,-0.50384146,0.5241852,0.27690768,0.1785964,-0.2869999,-0.6063757,0.061427448,0.034191225,-0.32196623,0.35035664,0.1849638,-0.75899154,0.4511264,0.14211649,-0.16434787,-0.74001753,0.4854756,0.09072007,-0.30130982,-0.08303269,0.115796186,0.15235756,0.027662663,-0.08694733,0.35595098,-0.22616766,0.18023857,0.14783406,-0.046597045,0.24488637,-0.09773968,-0.071311906,-0.43944508,0.107608974,-0.4237075,-0.36567524,0.2988643,0.042299237,0.19667527,0.3408417,-0.23231003,0.31977186,-0.1928236,0.21754062,-0.06492945,-0.23178525,0.25345334,0.3785878,0.259667,-0.47724158,0.67724895,0.05123007,-0.032061487,-3.807885e-05,0.15888664,0.41950196,0.12831736,0.37429437,-0.14927205,-0.2077019,0.31205487,0.9570587,0.23917429,0.40150717,0.030347738,-0.008116799,0.13230324,0.07004947,0.021533439,-0.043431915,-0.49546978,-0.0469571,-0.09677357,0.16292521,0.25123984,-0.020439455,0.34784883,-0.07518804,-0.15070978,0.07382568,0.22717217,-0.13152237,-1.2047137,0.24627553,0.08608903,0.9017169,0.557319,0.078545704,0.084235795,0.63206166,-0.2504204,0.00038113337,0.34645647,0.14429955,-0.22796719,0.4381842,-0.50103015,0.520496,-0.071539216,-0.062391873,-0.23375936,-0.013367959,0.43203697,0.66530704,-0.2674803,0.011660365,0.08249247,-0.2846581,0.19540748,-0.2649974,0.23007284,-0.49948153,-0.27737418,0.59057754,0.38979557,0.29934713,-0.09684586,-0.02820408,-0.018559502,-0.1934109,-0.04619452,0.025774876,0.007669232,-0.13817146,-0.64225143,-0.17422464,0.44943908,-0.095959246,0.14963268,0.122332886,-0.38130826,0.17204468,0.02065314,-0.0067086346,-0.013483733,-0.65521306,0.009467428,-0.21539947,-0.43497896,0.70610946,-0.33648905,0.23064964,0.24459516,0.017111719,-0.13144837,0.2920394,0.14388783,0.5961972,-0.24723431,0.05974149,-0.34989578,0.11016675,0.072756626,-0.1477519,-0.20513462,-0.24491732,0.19302137,-0.69539595,0.33977363,-0.112512946,-0.18241301,0.09393933,-0.16472504,0.030937245,0.5464286,-0.058112163,-0.105149046,0.04573783,-0.2867551,-0.07242402,-0.15300027,-0.08497502,0.30776337,-0.13206863,0.095902316,-0.1082936,-0.12088935,-0.13661936,0.28478858,0.12615642,0.21486033,0.32222542,0.2362052,-0.35379866,-0.022734787,-0.056016386,0.5160133,0.056091737,-0.111539535,-0.2088195,-0.51860696,-0.34803492,0.46471643,-0.17195988,0.2271092,0.09681348,-0.33117414,0.7532085,-0.06454476,1.0324062,-0.08552381,-0.46482128,-0.037906468,0.55633837,0.06214272,0.19013514,-0.30262432,0.72971743,0.46409947,0.055396102,-0.10426778,-0.17762192,0.032472037,0.34197584,-0.08413243,-0.28709477,-0.014285197,-0.6007165,-0.1869124,0.30547252,0.25967145,0.18727593,-0.21212728,-0.021353036,0.24340089,0.013258414,0.3514168,-0.52124745,-0.07872028,0.2527087,0.3100135,-0.04828492,0.0470218,-0.42318755,0.29534912,-0.48588553,0.14031859,-0.2747759,0.10957975,-0.11609987,-0.21271549,0.24975276,0.012168516,0.38320687,-0.2991519,-0.19664562,-0.019756446,0.5386391,0.12309845,0.27681237,0.422517,-0.16861479,0.10394471,-0.17619897,0.5446893,1.0416574,-0.29697147,-0.13947436,0.34627137,-0.37228176,-0.6332811,0.24709392,-0.5042073,0.00041997008,0.025978582,-0.29155594,-0.17653115,0.32066053,0.22854462,0.099156804,0.07303161,-0.70313644,-0.16252682,0.35322663,-0.21906792,-0.22571073,-0.3671294,0.033011187,0.60670567,-0.14231685,-0.1419544,0.03776374,0.5638378,-0.16364767,-0.5841928,0.18890084,-0.41267514,0.3591695,0.08171047,-0.15989156,-0.10749545,0.042191565,-0.33137578,0.098297715,0.22290953,-0.3379891,-0.21740974,-0.25519115,0.017090287,0.7878753,-0.080874205,0.070667304,-0.39203817,-0.36973542,-0.77908456,-0.3184791,0.32609132,0.109007046,0.014323703,-0.70467854,-0.05068684,-0.13706473,-0.13175792,-0.077064335,-0.2885068,0.51107305,0.16829455,0.33040756,-0.08027943,-0.6568154,0.07412251,-0.007894061,-0.10469632,-0.46029064,0.5144457,-0.00034146648,0.72141105,0.04503717,0.051960476,0.21183226,-0.45800215,0.38556686,-0.29871553,-0.14506401,-0.6372886,0.08144182,136 -364,0.40187934,-0.18307863,-0.4956439,-0.080496185,-0.23262222,0.0051025325,-0.21985033,0.61438215,0.20685151,-0.21558264,0.04967097,-0.089924954,0.028345129,0.5503941,-0.07783176,-0.5264827,0.025314305,0.1773607,-0.57875973,0.76102537,-0.33885616,0.15992053,-0.20870127,0.52039206,0.19158018,0.29510143,-0.058567822,0.018320078,-0.1804534,-0.20035444,-0.055508547,0.34300205,-0.52901065,0.11813694,-0.19575277,-0.34319645,-0.10916654,-0.41520688,-0.3771312,-0.76757103,0.19729283,-0.8005292,0.6132776,0.01371304,-0.36597633,0.32671213,0.2605233,0.3754802,-0.17196761,-0.11424619,0.08149614,0.040546875,0.13508302,-0.29935905,-0.24827416,-0.5848235,-0.52745306,0.048282605,-0.52235174,-0.09826847,-0.10610799,0.17079698,-0.2796957,0.0040484197,-0.11805112,0.42553166,-0.377479,0.26204935,0.22181927,-0.03928296,0.17193285,-0.42055866,-0.3609856,-0.08852001,0.27718377,-0.06887935,-0.16437303,0.30020484,0.13797633,0.3806172,-0.29155293,-0.0128145665,-0.39542872,-0.008938159,-0.10862819,0.5635158,-0.24012573,-0.62944984,-0.17526641,0.04143264,0.17679112,0.1313583,0.21030791,-0.14827636,-0.030189842,-0.03992471,-0.25952166,0.3113539,0.4218674,-0.34070507,-0.37120986,0.31688395,0.40014344,0.16596964,-0.40352282,-0.10888996,0.048867054,-0.52627325,-0.05497821,-0.101718076,0.027293993,0.57267565,-0.03525006,0.19980101,0.47056702,-0.051776495,-0.16071184,0.12688011,0.06959583,-0.045262914,-0.16024433,-0.3420308,0.2049384,-0.2746195,0.07981139,-0.18369712,0.47140414,0.14544967,-0.7507868,0.4096989,-0.6136742,0.093812175,-0.044805117,0.29011366,0.6719348,0.55082387,0.19232914,0.5020971,-0.23225988,0.07631089,-0.0706149,-0.23255886,0.16835268,-0.36866125,0.0075796884,-0.5780042,0.12964621,0.11829967,-0.22850926,0.2875576,0.39426777,-0.54641616,-0.15383206,0.24784608,0.92427206,-0.17840378,-0.12251188,0.7742613,1.1043298,0.9142205,-0.006841581,0.88446254,0.26328528,-0.15208654,0.33920178,-0.2656917,-0.726881,0.24989082,0.2431785,-0.37298805,0.5068661,-0.050576415,-0.05851667,0.48100725,-0.20505333,-0.011496561,-0.09343846,0.1442616,0.22110632,-0.21097812,-0.3661683,-0.29447475,-0.07285642,-0.1761764,0.26419592,0.28967252,-0.25627628,0.5668889,0.04369959,1.7484705,0.097792216,0.0474801,0.078638636,0.70545584,0.2708064,-0.1989828,0.0057344777,0.47314644,0.23940112,0.12568875,-0.45049837,0.23796555,-0.21316116,-0.5132113,-0.1337537,-0.37529534,-0.26662645,-0.1052837,-0.4942095,-0.263748,-0.19011627,0.037568748,0.43931696,-3.0062382,-0.12150148,-0.09893574,0.28821954,-0.22273979,-0.31515247,-0.06021104,-0.43120173,0.28551072,0.33400223,0.40104422,-0.59141153,0.57031554,0.22404988,-0.46713883,-0.12949036,-0.53973526,-0.1234584,-0.038550723,0.5422401,-0.06964352,0.08193527,0.24976185,0.2722015,0.40808615,-0.08732474,0.12756507,0.2819616,0.4924086,0.048396856,0.36202955,-0.10999964,0.42867312,-0.3341146,-0.20799208,0.26432937,-0.48988128,0.27970082,0.09956529,0.14921641,0.45611387,-0.38718358,-0.8811029,-0.6292983,0.24854037,0.99586153,-0.1316085,-0.44598168,0.11894839,-0.5112307,-0.33531907,-0.12881456,0.43056816,-0.024479976,0.017140493,-0.7789506,-0.11536755,-0.15912412,0.23033473,-0.0067151827,-0.040383916,-0.34621438,0.6230516,0.109986484,0.4636209,0.16883479,0.10130943,-0.42011493,-0.4269157,0.095245436,0.63348675,0.27918646,0.14131515,-0.06267402,-0.23575878,-0.41967407,-0.033476744,0.16921191,0.6171593,0.3049887,-0.07836794,0.16937163,0.24436654,-0.16522405,0.11737505,-0.16450922,-0.21043113,-0.08327744,0.10204796,0.47247162,0.79680246,-0.30891594,0.5479814,-0.010660738,0.33043566,-0.24484432,-0.45267186,0.5778004,0.8860297,-0.19627318,-0.33764964,0.54964006,0.60559577,-0.27744135,0.37282842,-0.6063737,-0.34731,0.38801056,-0.13392022,-0.25488,0.33708474,-0.2094902,0.1760404,-0.88782734,0.20288198,-0.2771307,-0.3699579,-0.625462,-0.0066098147,-3.166443,0.16108724,-0.01336386,-0.32173106,-0.15270638,-0.16915712,0.25828832,-0.654677,-0.54859024,0.10419689,0.14222233,0.5902181,-0.1401793,0.11123346,-0.24154523,-0.38632122,-0.26893806,0.32735807,0.13854781,0.3787165,0.007032982,-0.46235138,-0.2535707,-0.012403109,-0.47181,0.14154822,-0.6993441,-0.4291117,-0.09320694,-0.5823632,-0.16561113,0.6025186,-0.26140586,0.02942751,-0.30541924,-0.018803272,-0.19541751,0.24152899,0.040282674,0.100114465,0.039512645,-0.119980805,0.23357823,-0.31569389,0.22825922,-0.09163376,0.4226356,0.2152021,-0.1386604,0.24656066,0.5749365,0.65243024,-0.023669157,0.6910235,0.5017871,-0.03587377,0.447574,-0.3326978,-0.17294447,-0.34544554,-0.1477154,0.025399502,-0.27125135,-0.45409587,-0.14401838,-0.43105832,-0.72740203,0.45379657,-0.065351546,0.09731804,-0.04027397,0.2926948,0.58802754,-0.17341027,0.07011123,-0.0441549,-0.169873,-0.45642295,-0.32806155,-0.45119312,-0.3478348,0.13787164,0.91373223,-0.12125884,-0.047099207,0.12065901,-0.30397716,-0.07886811,0.20882702,0.018492429,0.14013886,0.34582952,-0.29903343,-0.70959324,0.32990956,-0.22969899,-0.23530926,-0.54433703,0.2501553,0.49888915,-0.5553333,0.6486853,0.29047266,0.10742007,-0.24315785,-0.42666048,-0.092700586,0.024368372,-0.07786477,0.33044678,0.302762,-0.75814754,0.27346292,0.352981,-0.36965615,-0.5098964,0.54930127,-0.0981423,-0.39320812,-0.18244103,0.2049317,0.18555002,0.07097425,-0.27183372,0.14152515,-0.4498324,0.16682832,0.2148491,-0.052007377,0.26788044,-0.17130505,0.08052576,-0.67877525,0.025641212,-0.40290913,-0.45680204,0.39673752,0.18052138,0.17473412,0.0728567,-0.067216724,0.17594954,-0.2994916,-0.017030368,-0.2025286,-0.20230272,0.37059593,0.36726615,0.5282093,-0.55452645,0.58478314,0.059775837,-0.07047233,0.22696193,0.08102429,0.3703701,0.08903027,0.46692866,0.21005014,-0.25519678,0.29372475,0.68094313,0.26100737,0.4455895,0.074632004,-0.11222495,0.15658154,-0.09835511,0.03327092,-0.041988093,-0.46538016,-0.1277422,-0.26188454,0.22755836,0.48117328,0.06488284,0.15475622,-0.10046768,-0.42618105,0.09679097,0.23421218,0.03973091,-1.5592412,0.24742761,0.29496357,0.79563755,0.2727234,0.07208012,-0.0129188765,0.87863857,-0.16598389,0.07200628,0.4794925,0.08578426,-0.45021078,0.66238785,-0.7101101,0.51914924,0.014430157,-0.023257613,0.061529938,-0.11818683,0.36003563,0.7342239,-0.10778683,0.027005116,0.23020516,-0.48600695,-0.041092426,-0.270895,0.14968786,-0.57690763,-0.12965208,0.50084436,0.5795151,0.40826663,-0.31771994,0.08355639,0.1207065,-0.14188531,0.046544723,0.12277244,0.17603625,-0.16557758,-0.687213,-0.015121238,0.66918856,-0.23543371,0.13247915,0.08005142,-0.36128125,0.39376742,-0.21857418,-0.056399327,-0.068638034,-0.58108795,0.17700294,-0.29161072,-0.48518297,0.75020367,0.0075225234,0.18082483,0.25320226,0.12857231,-0.25610903,0.36292413,-0.13104759,0.803197,-0.0997872,-0.096516944,-0.31777143,0.061360266,0.15159026,-0.1216225,-0.046429846,-0.32876825,0.06136888,-0.3003912,0.32567528,0.06159765,-0.2613402,-0.32913333,0.10783846,0.2415873,0.50064373,-0.18800369,-0.23805006,-0.08950999,0.02626015,-0.40904683,-0.14175278,-0.070013605,0.35686466,0.2815164,0.012431915,-0.060559094,-0.07418161,-0.06415399,0.4725106,-0.09244343,0.5006671,0.49978685,0.37961194,-0.13667372,-0.086625695,0.20627682,0.50062144,-0.024005065,-0.04455059,-0.37626022,-0.50977993,-0.4601204,0.30820274,-0.16095607,0.3693476,0.1081013,-0.28555533,0.7812028,-0.06267563,1.1699963,-0.0046480712,-0.3606689,0.3189203,0.47167447,0.12001198,0.0050018346,-0.37998146,0.90029675,0.5401758,-0.080650054,-0.099392556,-0.26755807,-0.086136885,0.06379864,-0.3015634,-0.24362932,0.062006775,-0.585895,-0.14355652,0.10912842,0.2339628,0.38646033,-0.1819471,0.19732258,0.20742448,0.056020487,0.09595169,-0.35857767,-0.22865728,0.3022863,0.3216856,-0.0038210514,0.056266163,-0.5975698,0.2819019,-0.3544164,0.083067894,-0.4108595,0.24420463,-0.14127912,-0.36634445,0.100481376,-0.025722282,0.23436669,-0.51891226,-0.26701757,-0.24488637,0.46858397,0.1544014,0.029355465,0.45797488,-0.15161763,-0.026807556,0.033999305,0.523236,0.90311015,-0.31060988,-0.15364246,0.34583706,-0.37550277,-0.8034109,0.23382533,-0.22458191,0.40876463,0.010390674,-0.08341749,-0.6878237,0.38685226,0.14062066,0.061478052,-0.2397785,-0.52450293,-0.2318352,0.3248648,-0.2727329,-0.21739519,-0.35108134,0.06695373,0.48208174,-0.14587621,-0.26397687,0.12256249,0.2986199,-0.1121118,-0.504494,0.0039454526,-0.45388085,0.29168877,0.12685513,-0.31236437,-0.30645448,0.05222165,-0.4104211,0.31743893,0.17182183,-0.31686184,0.12961856,-0.47289842,-0.092746176,0.9607118,-0.2683706,0.15820085,-0.58040535,-0.5377614,-0.8342963,-0.59222174,0.32564571,0.22430758,-0.039831072,-0.66649693,0.01621237,-0.023505973,-0.4168896,-0.18038033,-0.3245871,0.38502976,0.012444807,0.23712976,-0.057871062,-0.7526422,0.16804056,0.09376804,-0.14057885,-0.6458122,0.5238447,-0.06998099,0.9613033,0.05714936,0.27236483,0.4054382,-0.35687357,-0.24592683,-0.11720554,-0.1398398,-0.5442951,0.010146891,138 -365,0.4380184,-0.5244708,-0.3714337,-0.14551939,-0.104496635,0.06278337,-0.23785271,0.2630169,0.121519946,-0.37537834,-0.026589304,-0.19831927,0.17863555,0.5944767,-0.11280395,-0.810619,-0.031063898,0.04176442,-0.5703939,0.5612684,-0.49063063,0.19891082,0.08107344,0.38599873,0.015799042,0.2671892,0.3559983,-0.13867894,-0.14803047,0.10114123,-0.16701403,0.103152715,-0.5247096,-0.010728613,0.060155857,-0.21787523,0.12845571,-0.3024156,-0.45963764,-0.7040898,0.24476862,-0.881947,0.4183381,0.0599359,-0.32755202,0.30770415,-0.0551485,0.37784103,-0.5102579,-0.062310286,0.08616821,-0.21003477,-0.042259116,-0.30894113,-0.109331734,-0.47533208,-0.45357633,0.007556302,-0.60236424,-0.16422963,-0.25279152,0.010508138,-0.38696095,-0.010469382,-0.054719295,0.30086684,-0.5680842,-0.18983494,0.3028645,-0.15122962,0.3484388,-0.36919257,-0.070233,-0.120384865,0.14756225,-0.020554798,-0.1604938,0.25798526,0.29800954,0.49680743,0.04371277,-0.24788578,-0.21615109,-0.05788539,0.31437987,0.52031595,-0.017623289,-0.6569281,-0.21339737,0.025985228,0.030449528,0.01384828,-0.02013582,-0.32981637,0.037064064,0.22438066,-0.2733505,0.34759307,0.5137231,-0.35378274,-0.26081055,0.32739812,0.54307735,0.16508473,0.02896572,-0.05498623,0.0909706,-0.36837965,-0.14005062,0.3785283,-0.261349,0.50480884,-0.17103387,0.28296968,0.6130292,-0.22282852,0.26576963,-0.114581704,-0.03692762,-0.24149516,-0.029339824,-0.1265801,0.10924644,-0.55176073,0.058849838,-0.26728845,0.8440568,0.35116312,-0.52181923,0.5425784,-0.5082804,0.303672,-0.17375715,0.5859366,0.70852166,0.25095734,0.29571754,0.6384983,-0.4439619,0.11048066,-0.1289493,-0.45996985,0.14092734,-0.27438036,0.03214298,-0.45800257,-0.0024111953,-0.03697272,-0.06339203,-0.06524737,0.3073895,-0.5928001,0.05990022,-0.033213258,0.8130001,-0.33905864,0.110863045,0.6136113,0.89056766,0.7938014,0.11866488,1.2532417,0.59019893,-0.29464212,0.19043215,-0.33447078,-0.76328915,0.27461204,0.5119892,-0.09292307,0.47290665,0.00036347765,-0.13380055,0.42789087,-0.39553624,0.11248279,-0.31824383,0.34729332,-0.09813203,-0.0063659996,-0.55045205,-0.11286049,-0.17568247,-0.023293087,0.053003646,0.33688346,-0.14662501,0.33370194,-0.06605012,1.7109767,-0.12136384,0.091458164,-0.062141526,0.4996092,0.3131888,-0.0048978264,-0.12263703,0.41625762,0.40243718,0.09416352,-0.7503409,0.12154923,-0.3457029,-0.38081387,-0.20877804,-0.26535472,0.2743487,-0.077918686,-0.29825267,0.038694523,0.1388879,-0.25482756,0.3666315,-2.4057517,-0.3286814,-0.29873776,0.35323575,-0.46287006,-0.27372473,-0.08958669,-0.3716707,0.42410666,0.39216232,0.49008125,-0.74133396,0.29850706,0.38448176,-0.37101296,0.018286517,-0.54558486,-0.15770468,-0.0974281,0.45282486,-0.028519059,-0.14852473,0.022239689,0.21680959,0.39212814,-0.1759984,0.027840497,0.12657443,0.36816806,0.1462719,0.34103638,0.026351914,0.50406545,-0.36377996,-0.09906672,0.36037114,-0.16973932,0.36865467,-0.101007454,0.2430838,0.35827142,-0.49666867,-0.8431958,-0.5869628,-0.4051338,1.1848663,-0.41259548,-0.44539407,0.18875694,0.00685943,-0.07877129,-0.030432966,0.3466262,-0.09323771,-0.102343865,-0.86165345,0.23956224,0.05880242,0.2167195,0.15377334,0.13959993,-0.16687045,0.6858174,-0.16258503,0.3019934,0.26414725,0.3419221,-0.0006434449,-0.49389243,0.11116948,0.8078003,0.39077178,0.10432356,-0.21009775,-0.27918148,-0.14969864,-0.10111045,-0.028466675,0.40108055,0.9055165,-0.025281211,-0.053851027,0.27536336,-0.11417886,0.024572577,-0.15938345,-0.3412559,0.031053292,0.033193372,0.6336385,0.53735465,-0.19427927,0.5616417,-0.113157235,0.2773024,-0.06053278,-0.43550164,0.6293822,1.0147415,-0.18415746,-0.083119765,0.48436937,0.50598705,-0.5033888,0.407806,-0.7830035,-0.2831863,0.54471564,-0.24894372,-0.4262815,0.30549362,-0.31723174,0.17125455,-0.981295,0.3384768,-0.19766082,-0.2366936,-0.57056946,0.07664233,-3.9049318,0.15784554,-0.318924,-0.23200038,-0.12818465,-0.047600776,0.2882399,-0.6899964,-0.45223883,0.3228154,0.029313603,0.612604,0.019929452,0.187936,-0.30048725,-0.065993294,-0.19827972,0.05194444,0.103852525,0.20842192,-0.08663925,-0.5228101,0.060608387,-0.20954718,-0.41864628,0.23838495,-0.6248616,-0.5821582,-0.3134714,-0.6223625,-0.19298758,0.62511843,-0.10165374,-0.029470881,-0.23661457,0.04374916,-0.22844873,0.4419237,0.22124214,0.16359034,0.043205287,-0.013067769,-0.094064966,-0.41026586,0.19833599,0.19087707,0.17123197,0.2957128,-0.124641165,0.17015728,0.5920147,0.56955034,0.015325581,0.6049342,0.50394684,-0.17541888,0.41166312,-0.34901005,-0.29149726,-0.4608048,-0.48952,-0.120147385,-0.284522,-0.4864308,-0.26302174,-0.23414595,-0.6726306,0.5550174,0.044807516,0.22164086,-0.086756825,0.22851385,0.57332283,-0.14568993,-0.04124574,-0.015747799,-0.17904417,-0.6304618,-0.16784208,-0.6480223,-0.4429538,0.34191838,0.70589596,-0.2038552,-0.17556262,-0.16236416,-0.30415767,-0.021243135,-0.086297736,0.09843693,0.27276897,0.23375747,-0.11640417,-0.68741643,0.54273504,0.015878482,-0.2615977,-0.6153241,0.123991325,0.76005113,-0.7192193,0.39843968,0.27239865,0.07404669,0.035976578,-0.37806344,-0.22760513,0.18748225,-0.12202884,0.3056168,0.12073497,-0.61896867,0.44086537,0.39069977,-0.24671376,-0.72144943,0.4229409,0.13066946,-0.25977415,0.00465994,0.32311106,-0.014496916,0.15992527,-0.42655018,0.14177847,-0.48427922,0.16523202,0.41069752,-0.0404071,0.37150997,-0.075194724,-0.18135782,-0.6532608,-0.041484177,-0.5140129,-0.20479257,0.2838812,0.11891061,0.09904442,-0.061994545,0.031854536,0.40240297,-0.41900215,0.012259864,0.15697543,-0.28152058,0.3637066,0.52513885,0.287193,-0.3265092,0.6873578,0.07111678,-0.1215533,-0.1338745,-0.006544675,0.4616796,0.29524675,0.2910564,0.09496367,-0.097219266,0.3816778,0.9637272,0.071675524,0.53174245,0.23228426,-0.1389232,0.30311498,0.23126408,0.09867994,0.07990355,-0.17330904,0.05269465,0.21565716,0.18566203,0.46412042,0.21989433,0.35513252,-0.048476867,-0.3504538,0.04828859,0.16285452,0.07964746,-1.1669195,0.30756038,0.25855395,0.6093146,0.36525753,-0.08226415,0.04417793,0.5818324,-0.2667912,0.08820636,0.1694629,-0.16180836,-0.674398,0.6201835,-0.62160504,0.29391223,-0.1587485,0.021832677,-0.024455981,0.12815751,0.37039062,0.76242447,-0.15052478,-0.0064308983,-0.22378714,-0.29800266,0.1288217,-0.38314694,0.061170693,-0.49142593,-0.4807652,0.43183804,0.3992483,0.29077414,-0.15717031,0.001110675,0.061442953,-0.096691884,0.3426017,-0.015553711,0.058089368,0.04526892,-0.78353053,-0.44588736,0.476213,0.07650048,0.18245889,-0.15674722,-0.063970946,0.2257168,-0.18567073,-0.17606594,-0.03505257,-0.7470565,-0.013862943,-0.3761467,-0.4589672,0.4108447,-0.25050956,0.31804505,0.20366146,-0.035604022,-0.40351078,0.23991756,0.08849684,0.90712184,0.029932993,-0.30462295,-0.5425326,0.11415917,0.19067176,-0.15598433,0.007984349,-0.28424826,-0.0904149,-0.5854382,0.60660946,-0.15182273,-0.2903008,0.10077155,-0.28651634,-0.025153194,0.5431351,-0.31584743,-0.26950002,-0.17125042,-0.20054033,-0.3381061,-0.33413145,-0.15587865,0.20253262,0.27591237,0.030621668,-0.009926758,0.021460574,-0.06947129,0.6657912,0.19364718,0.257353,0.33350548,0.15181689,-0.2707922,-0.18467234,0.29754615,0.40367252,0.109293595,-0.1470137,-0.29617167,-0.43366104,-0.35628405,-0.13323312,-0.28082603,0.21208814,-0.007196341,-0.44767728,0.77688134,0.09528633,1.1923639,-0.0031028304,-0.2995455,0.13490215,0.4210622,0.046562653,-0.045427006,-0.4125525,0.8009104,0.57463884,0.060805682,-0.20140566,-0.46300226,-0.3484729,0.31881067,-0.24754235,0.032675173,0.03608056,-0.69752795,-0.3626766,0.2725298,0.23479673,0.006139521,-0.018271234,0.14533423,0.06776482,0.053843,0.38676852,-0.6114268,-0.17534575,0.32582387,0.12540717,0.079172544,0.09314353,-0.3443444,0.44130236,-0.5089932,0.09755026,-0.3136503,0.07694372,0.02617876,-0.2949219,0.272695,0.020169659,0.40752158,-0.41892114,-0.32939744,-0.22294644,0.63960415,0.14384751,0.08757179,0.5745845,-0.30147856,0.1619235,0.2160809,0.53740925,1.091611,-0.27549958,0.1812781,0.28102022,-0.36440334,-0.7544214,0.44088355,-0.07125755,0.3190703,-0.113014646,-0.33565143,-0.68400764,0.3350182,0.20456733,0.013299899,0.038443953,-0.48135743,-0.24841739,0.3980091,-0.37377977,-0.23091434,-0.34971958,0.19801562,0.5716319,-0.3739751,-0.2617832,0.17613114,0.26969522,-0.26999372,-0.4040766,-0.2743442,-0.24995668,0.22151121,0.17547831,-0.23809078,0.09091455,0.21540353,-0.4284777,0.09629988,0.07329851,-0.40283376,0.11266617,-0.09695713,-0.116242446,0.9397566,-0.31680447,-0.067593396,-0.9449107,-0.50948066,-0.8683702,-0.38415647,0.8255555,0.08234132,0.17962506,-0.638238,0.17137136,0.14001141,0.17005767,-0.024793562,-0.5634487,0.40514776,0.07432278,0.3829244,0.057527278,-0.7135052,0.13258764,0.13465215,-0.29340643,-0.6745706,0.49631336,-0.22378843,0.7495342,0.015182662,0.086378254,0.27312186,-0.39863682,-0.14753601,-0.3290651,-0.3468201,-0.735727,0.15168557,144 -366,0.1840183,-0.39416927,-0.49052933,-0.044325087,-0.25141016,0.17978188,-0.28771827,0.38997397,0.050840843,-0.52524483,-0.1288461,-0.1753649,0.07700456,0.4967026,-0.20369332,-0.45993033,-0.012983637,0.15778732,-0.5954465,0.49206266,-0.37376162,0.33541775,0.17157629,0.38378045,0.061808117,0.16096766,0.12491131,-0.16700563,0.009798176,-0.37016743,-0.16536485,-0.03812686,-0.6262451,0.22945206,-0.20293912,-0.5453025,0.096185245,-0.50256836,-0.30513138,-0.7185628,0.21332785,-0.76787627,0.568934,0.07718931,-0.1624606,0.18731771,0.17964666,0.5152922,-0.30021176,0.066067584,0.31635174,-0.20677136,-0.15243609,-0.11401594,-0.15197305,-0.4992542,-0.54080504,0.018616254,-0.44136646,-0.18703476,-0.10633623,0.26373655,-0.13419597,0.21727861,-0.16891114,0.27221885,-0.48249367,0.17159745,0.18650767,-0.16743453,0.12021172,-0.5827368,-0.22445668,-0.25861254,0.3458113,-0.32406428,-0.19787209,0.10919428,0.107155584,0.42091274,0.034792032,-0.15890196,-0.28003123,-0.13420752,0.14910476,0.64374256,-0.071737446,-0.3529375,-0.1934243,-0.12062844,0.23151027,0.042766605,0.0917246,-0.3626749,-0.13002658,-0.17768906,-0.38047653,0.2676365,0.41951945,-0.37417874,-0.23870073,0.33491114,0.53107363,0.14291146,-0.10959483,0.08272193,0.06422268,-0.58723515,-0.18037093,0.146207,-0.0794809,0.48163506,-0.09051641,0.2711869,0.70609313,-0.22838543,-0.051005363,-0.014561713,-0.060822718,-0.113712616,-0.11873816,-0.33436495,0.26397654,-0.44066045,0.12556331,-0.33271247,0.69522107,0.17155935,-0.65830547,0.31718522,-0.57616055,0.10637057,0.04729752,0.5029052,0.5171441,0.4634799,0.15201771,0.5237997,-0.38130364,0.089929186,-0.21962193,-0.117289916,0.050107595,-0.2104682,-0.09447558,-0.37970957,0.028792841,0.032750417,-0.0028894714,0.13425806,0.5038446,-0.55769473,-0.033269595,0.048317317,0.7196807,-0.26474696,-0.056906264,0.99506503,0.95454866,0.94286686,0.13975973,1.205286,0.2779447,-0.23529097,-0.045209747,-0.05588237,-0.6089861,0.16387407,0.40597448,0.15255411,0.17222698,0.19305149,-0.08757188,0.5555578,-0.43601254,0.039275832,-0.0704406,-0.01927503,0.04173357,-0.12567553,-0.35973316,-0.19831419,0.052387714,-0.061300952,0.036880814,0.3010917,-0.26072094,0.5426711,0.08384148,1.2503603,-0.0010115717,0.14519264,0.026436673,0.39837232,0.12651818,-0.130899,0.0036096573,0.3432979,0.4194503,0.06808143,-0.6574785,0.14136633,-0.13171935,-0.43097302,-0.17109285,-0.24093066,-0.46425432,-0.03744075,-0.52719086,-0.14069337,-0.03639539,-0.0924397,0.33071035,-2.6077526,-0.08912742,-0.20315692,0.30236,-0.15564397,-0.29022533,0.010529382,-0.4615478,0.49132204,0.3681322,0.429253,-0.5704056,0.4317185,0.3907239,-0.52894866,-0.10207585,-0.7875058,-0.22392575,-0.065335445,0.353586,0.011973338,0.0058185756,0.09587937,-0.08176596,0.4510921,-0.2527294,0.15260755,0.21573612,0.38777897,0.10892632,0.49608567,0.1399303,0.5424074,-0.4737629,-0.18805523,0.22561009,-0.53736037,0.4120824,-0.09524008,0.091698535,0.37829205,-0.44767147,-0.89944637,-0.6484389,-0.30463767,1.022986,-0.030535545,-0.35067272,0.25828695,-0.31431913,-0.28694704,-0.0968099,0.60814816,-0.13764913,0.11706461,-0.758141,-0.11577689,-0.0785442,0.34983703,-0.087765,-0.01912232,-0.49145466,0.61839473,-0.07728312,0.39810824,0.4066338,0.21424153,-0.29419398,-0.3342674,0.042082913,0.9274634,0.32552257,0.17094265,-0.09735886,-0.23050794,-0.24936879,-0.094040975,-0.015505182,0.5604129,0.5211566,-0.012790458,0.1927665,0.2229952,0.067536175,0.14919852,-0.23211029,-0.22311251,-0.09471745,0.1244896,0.49768782,0.5248865,-0.068054356,0.3410384,-0.12773414,0.4532831,-0.21009982,-0.54721314,0.4154376,0.75362194,-0.16606021,-0.10317741,0.5393912,0.61257404,-0.09610055,0.37072992,-0.6106771,-0.44116163,0.46134418,-0.16591273,-0.48223922,0.2344093,-0.24791911,0.18096247,-0.87325543,0.3711295,-0.32103753,-0.5660159,-0.7117661,-0.09471832,-3.3985515,0.1368229,-0.13050775,-0.15006399,-0.0969461,-0.16220793,0.18521874,-0.47525555,-0.420132,0.18418775,0.08280476,0.58038527,-0.09495367,0.15654159,-0.3089191,-0.23437054,-0.30077878,0.2404032,0.112042114,0.24227893,-0.24061069,-0.40000322,0.0049469257,-0.21870221,-0.4165677,0.02033359,-0.64452493,-0.2854406,-0.1428149,-0.36568022,-0.21970214,0.6487864,-0.349638,0.12495983,-0.14235035,-0.0056787697,-0.2559887,0.4761834,0.32032555,0.15928066,-0.02856962,-0.12419629,-0.1598021,-0.44926628,0.20334704,0.22630583,0.14169873,0.34788817,-0.13125257,0.14828618,0.4359391,0.6762444,-0.091427214,0.8194846,0.33558849,-0.11122657,0.41300374,-0.17939426,-0.34209844,-0.44587776,-0.16242301,-0.13989769,-0.37665886,-0.60426456,0.012123389,-0.29475912,-0.7398849,0.5386302,0.12646304,-0.3213584,-0.008953,0.29303068,0.2683081,-0.3485264,-0.0884318,-0.10669751,0.024360763,-0.3890291,-0.31045145,-0.567027,-0.5461327,-0.06459455,1.0177596,-0.054670483,0.1721919,0.09702698,-0.23955598,-0.030133452,0.3102887,0.06786572,0.16769336,0.34605142,-0.14904015,-0.7464305,0.77666885,-0.14968646,-0.38427252,-0.6273238,0.22648051,0.6910432,-0.69490063,0.48819858,0.45448086,0.03383397,-0.104702115,-0.25852516,-0.17412806,-0.049374994,-0.23675106,0.24860458,0.027238114,-0.6787867,0.41215715,0.3985641,-0.2971092,-0.6849322,0.52747166,-0.017358989,-0.22764559,0.23586154,0.31418344,0.21253611,0.053398438,-0.1176589,0.10557718,-0.41948104,0.28935862,0.2674732,-0.05912957,0.33474606,-0.26889628,-0.14173147,-0.77975607,0.11857533,-0.5058145,-0.20183893,0.20684603,0.07966561,-0.004369342,0.30105385,0.08252782,0.35111403,-0.25462976,0.09915018,-0.30417082,-0.2995887,0.25362328,0.49918303,0.39006737,-0.3029605,0.7288348,0.07219957,-0.07467152,-0.12124467,0.042763136,0.52093464,0.08986693,0.56003326,-0.16913857,-0.21984792,0.23161945,0.78289837,0.19575964,0.4485233,0.17270763,-0.046442915,0.26462722,0.1605149,0.087963454,0.19784059,-0.46213004,0.12460705,-0.18419906,0.13742034,0.42347997,0.05383808,0.32567376,-0.10219156,-0.2238466,0.04641645,0.16849817,0.19274528,-1.0231901,0.26320758,0.21974595,0.6586216,0.4936688,0.08340196,0.079485215,0.6974439,-0.40395617,0.0116446065,0.27060953,0.023914397,-0.47496185,0.64997244,-0.772796,0.60699356,-0.13582267,0.007000949,0.14027742,-0.24585497,0.46675786,0.83913743,-0.13608715,0.029803041,0.1364318,-0.31916958,0.044433773,-0.538301,0.1395289,-0.36513796,-0.22874126,0.7559018,0.3464159,0.4325666,-0.10535208,0.023241734,0.16289672,-0.16847558,0.21891761,0.121217504,0.20755978,-0.062034544,-0.51777244,-0.12843956,0.7358179,-0.28822497,0.13736318,0.15578313,-0.50414294,0.31764287,-0.07488709,0.08925121,-0.07981419,-0.7278554,0.06756799,-0.47080207,-0.4598969,0.40367705,-0.048688646,0.3512335,0.2551257,0.059895117,-0.2220575,0.5692525,-0.09023019,0.84876144,0.08022666,-0.14155385,-0.13345353,0.18150277,0.261886,-0.23041442,0.046328705,-0.21732603,0.06934001,-0.566985,0.31827268,-0.12649323,-0.31085953,0.15314303,-0.07258978,0.1058774,0.4693442,-0.13101813,-0.275889,0.33702973,-0.016940799,-0.1142823,-0.17444213,-0.19782822,0.21706483,0.24042514,0.21354981,-0.070486955,-0.24934277,-0.16588545,0.37444046,-0.019664437,0.4951484,0.32521722,0.00033846073,-0.45167497,-0.06607911,-0.027487146,0.36950782,-0.17137179,0.06994962,-0.14356568,-0.5948222,-0.39685303,0.1476575,-0.12695716,0.34735537,0.061478145,-0.23568277,0.82663685,-0.17108835,1.0343426,-0.015078799,-0.56993586,0.23589174,0.6090061,-0.049654666,0.007229145,-0.41427013,0.9583796,0.42438054,-0.1227748,-0.11627705,-0.37680057,-0.14438793,0.32134214,-0.25598308,-0.24524513,0.013692315,-0.5224881,0.030905416,0.10812692,0.35791677,0.20900486,-0.09229897,0.14011447,0.28151304,0.10230541,0.25805715,-0.7279201,-0.17697139,0.4073463,0.29579234,-0.17508207,-0.01610945,-0.42367873,0.4718645,-0.46559498,0.16434005,-0.26721945,0.05034713,-0.28964898,-0.2692025,0.21624017,0.16922964,0.26292536,-0.40325785,-0.35196194,-0.24458954,0.5101643,0.23559989,0.25034824,0.6994129,-0.13945083,-0.13530475,-0.0644923,0.46069422,0.83941233,-0.5503255,-0.1496266,0.4223452,-0.4421629,-0.47670847,0.33847508,-0.43196106,0.06946062,0.08923403,-0.21830304,-0.4412341,0.23611675,0.25452933,0.010349989,0.064204656,-0.7265481,-0.043826003,0.34710488,-0.38353327,-0.38209972,-0.35770342,0.36291698,0.70392716,-0.23790489,-0.34506392,0.1048483,0.26271856,-0.32911512,-0.57045805,-0.0444493,-0.30633026,0.3771599,0.11494545,-0.28210735,-0.17900427,0.046945516,-0.4138743,-0.057365723,0.083323784,-0.3578403,0.04697482,-0.40004808,-0.07491168,0.7222641,-0.087194405,0.20861088,-0.67179024,-0.49094948,-0.7930197,-0.38619536,0.5770051,0.35861763,-0.0031419354,-0.5499659,0.015544648,-0.07418215,-0.22777963,-0.006650712,-0.47501448,0.5312781,0.16047515,0.3003921,-0.08446848,-0.7794338,0.14879094,0.0739531,-0.28394294,-0.46266454,0.38597107,0.028027972,0.8459534,0.06146878,0.06985922,0.34983143,-0.4512888,0.12090818,-0.20511237,-0.17312583,-0.6783329,0.03440199,149 -367,0.34709856,-0.26896384,-0.545933,-0.10266144,-0.1755773,0.2176197,-0.22619686,0.22748159,0.08471731,-0.48541874,0.028589675,-0.18245621,-0.07203768,0.27365983,-0.14396834,-0.27022848,-0.13296767,0.24432099,-0.6682487,0.29283723,-0.4414602,0.32340893,0.0094639575,0.2565342,0.15591049,0.17250729,0.19572374,-0.08760174,-0.1619982,-0.33913416,0.009641818,-0.03365503,-0.61724776,0.16828813,-0.26370615,-0.46386448,-0.03673699,-0.4464738,-0.5068311,-0.70130485,0.4070718,-0.90020186,0.65041286,0.04983527,-0.18915042,0.4459416,0.1642371,0.28092724,-0.20691077,-0.0059401733,0.30695224,-0.2064228,-0.11135722,-0.21894288,-0.251077,-0.29524827,-0.5615296,0.0515889,-0.35643214,-0.040315118,-0.38383386,0.18707684,-0.29183605,0.26572436,-0.24555792,0.37125516,-0.28031427,0.17410763,0.14402665,-0.14296794,0.18734312,-0.4506741,-0.10232695,-0.11281564,0.052843396,-0.1345658,-0.08402194,0.33667317,0.013761401,0.4741936,-0.13498165,-0.14290711,-0.3329437,-0.069284014,0.08443231,0.54322344,0.0070701963,-0.23867321,-0.13553493,-0.16892597,0.15827903,9.860737e-05,0.077217385,-0.16629627,-0.004500625,-0.08712768,-0.31402835,0.4217782,0.56353295,-0.1808617,-0.21681519,0.46104893,0.50169,0.016280407,-0.1667179,0.0139755905,0.003479302,-0.47737336,-0.22312827,0.16064286,-0.2204911,0.34681728,-0.04912162,0.2881232,0.4795793,-0.2987573,-0.03440204,0.06611095,0.1317095,-0.10350181,-0.045577493,-0.36800155,0.3017168,-0.43940946,0.029140566,-0.2922028,0.6787571,-0.037331384,-0.68047625,0.30295557,-0.5531927,0.08335148,-0.02062214,0.5644033,0.51670283,0.57330525,0.3591815,0.7197299,-0.46411276,0.044977646,-0.08813494,-0.29351252,0.11664633,-0.16371441,0.06912339,-0.3361828,-0.066409655,0.02340732,-0.1091813,-0.0756333,0.37178987,-0.3962924,-0.05466744,0.15690482,0.6714243,-0.29098105,0.05837602,0.6963696,1.0585365,1.0699915,0.056660384,1.0811926,0.2600818,-0.22462435,-0.019381955,-0.17997889,-0.90256786,0.25055537,0.17329311,-0.08793765,0.33482614,0.18142942,-0.008016301,0.2639517,-0.49818638,-0.037079684,-0.14255168,0.21114774,0.027648082,-0.06365559,-0.2816303,-0.24555014,0.109719686,-0.005838769,0.31038114,0.20302033,-0.42240122,0.30881244,0.1603525,1.5883806,-0.1272641,0.14530815,0.08012537,0.39262655,0.061581366,-0.21478295,-0.10492308,0.13462189,0.37559345,0.08685943,-0.6050563,0.08963515,-0.14653373,-0.45073298,-0.12000247,-0.2550058,-0.13937174,-0.17499802,-0.23927896,-0.1559827,-0.038252894,-0.47906798,0.28585768,-2.755661,-0.0034536633,-0.03112468,0.31281945,-0.090739466,-0.25465843,-0.10776811,-0.5058336,0.33535814,0.3712594,0.32740113,-0.6426013,0.47933695,0.4483228,-0.512949,-0.011121495,-0.50381124,-0.0045013386,-0.13805176,0.31665322,0.2058198,-0.049137082,-0.046864193,0.10133983,0.3932105,-0.08043657,0.11683413,0.3868874,0.43275002,0.02314513,0.54652876,0.11945171,0.51687753,-0.49462774,-0.15307088,0.40746883,-0.57631505,0.16863552,-0.12714039,0.2390572,0.44584754,-0.46290973,-0.8658969,-0.5485079,-0.07869165,1.2799321,-0.22879873,-0.4004256,0.18644166,-0.24702154,-0.38270357,-0.056254447,0.4370548,-0.24442948,-0.034903567,-0.79530627,-0.17868426,-0.20731552,0.46036983,-0.11697497,0.015377278,-0.47540477,0.6134847,-0.064715065,0.6143807,0.22456636,0.06296427,-0.48961893,-0.3878314,0.17021196,0.9971234,0.29684752,0.1128975,-0.3039129,-0.12266811,-0.29565793,-0.08576167,0.023481233,0.4027987,0.59844303,-0.05680705,0.18150724,0.22205268,-0.088725425,-0.037891053,-0.10669736,-0.15228918,-0.15167762,0.0039177537,0.57242644,0.5600799,0.02214557,0.26620844,-0.10117956,0.48614618,-0.2813689,-0.41959432,0.44056746,0.7174798,-0.053103685,-0.27482563,0.6721059,0.6329218,-0.2804486,0.52289706,-0.5108966,-0.52146536,0.3307789,-0.13115272,-0.35854444,0.25039557,-0.30866107,0.22073977,-0.7679597,0.27820203,-0.16428375,-0.5355011,-0.6435609,-0.21685852,-3.20441,0.07642678,-0.05933074,-0.24316955,0.020446202,-0.11711221,0.28163534,-0.31995425,-0.6328762,0.040776573,0.21670544,0.7849871,0.030793812,0.12842423,-0.18983713,-0.23152308,-0.35274893,0.19518049,0.17664048,0.21612194,0.003166863,-0.44196948,-0.106760375,-0.33402535,-0.2689082,-0.08233774,-0.6169612,-0.22136042,-0.17137739,-0.47300005,-0.39470258,0.60841703,-0.16506138,0.03179586,-0.21467781,-0.06771092,0.053681884,0.36950907,-0.014351545,0.060424592,-0.037986655,-0.16969666,0.103590176,-0.19243021,0.27945074,0.101772286,0.30142185,0.48484525,-0.23430751,0.009735942,0.33358663,0.62773687,-0.08150426,0.9158855,0.24319108,-0.14146666,0.21824837,-0.072721966,-0.29506308,-0.46853647,-0.10103637,0.039899588,-0.46203288,-0.34283277,-0.011157049,-0.31678146,-0.83794254,0.6480561,-0.013158645,-0.010870786,-0.04022324,0.30081266,0.28287786,-0.09215052,-0.03110582,-0.10314603,-0.098165266,-0.2346793,-0.4494795,-0.73119277,-0.36607555,-0.18907963,1.1971375,-0.063801214,0.022768881,0.20282312,-0.18990351,0.14600947,0.17574419,0.04432508,0.3349047,0.54839265,-0.008287149,-0.6081105,0.50654835,-0.36791167,0.026057128,-0.49479803,0.11125294,0.6439534,-0.5717251,0.30778715,0.38694313,0.15082853,-0.2887985,-0.45413324,-0.11525186,-0.06742388,-0.14765842,0.39405435,0.28534263,-0.83400905,0.43197605,0.21387495,-0.34014273,-0.7404777,0.37257704,-0.05147857,-0.13822632,0.005487174,0.24324901,-0.13220786,0.035223383,-0.25954565,0.2350289,-0.43333083,0.24639942,0.08494971,0.07301552,0.24350372,-0.26377922,-0.13144001,-0.5517639,0.02433631,-0.40870592,-0.184827,0.19198532,-0.07637029,0.06280664,0.4849933,-0.11868799,0.26944152,-0.22360682,0.042151,-0.07410832,-0.22769701,0.5021896,0.43569502,0.44384256,-0.49950457,0.7134371,-0.04044201,-0.17938504,-0.10269562,-0.13653709,0.42789847,-0.043533947,0.3997895,0.16219191,-0.05184012,0.3978234,0.84578055,0.27595228,0.40842488,0.12343449,-0.14946845,0.24751833,0.102243796,0.22890635,0.04765273,-0.5522905,-0.018717166,-0.17966437,0.15394072,0.3519264,-0.04289317,0.4558072,-0.18556203,-0.17250678,-0.025321977,0.098688684,-0.18454777,-1.2092268,0.36629698,0.09697627,0.73092884,0.4642934,-0.022982972,0.13246942,0.74389553,-0.20218603,0.051218707,0.16146533,0.07235665,-0.43242884,0.5024887,-0.47930908,0.52952254,-0.03183837,-0.075502045,0.030753851,-0.068084314,0.4512878,0.7286059,-0.14661859,0.09026183,0.039726846,-0.32231745,0.27755043,-0.2754051,0.32485336,-0.45397827,-0.22151329,0.84215134,0.42521116,0.41875786,-0.13242336,-0.008464226,0.045750234,-0.1902847,0.051808774,0.06459255,0.053764574,-0.13130732,-0.6434842,-0.030287743,0.535907,0.12984745,0.15185072,0.12489387,-0.29730394,0.15227522,-0.082203254,0.025492594,-0.14126173,-0.66157883,0.109108165,-0.19712658,-0.46465582,0.20525734,-0.25526962,0.26174816,0.24810909,0.0111240465,-0.39541158,0.20865329,0.34542665,0.6648199,0.048975978,-0.07145642,-0.18581973,0.24041025,0.20455508,-0.2961959,-0.06230923,-0.30772194,0.15948561,-0.65092033,0.49241415,-0.23236535,-0.444007,0.18287148,-0.17441435,0.086472996,0.6388159,-0.07972001,0.0046517765,0.121725,-0.03144049,-0.22663058,-0.19701259,-0.31739888,0.221277,0.19294678,-0.08580588,-0.0016688237,0.07680889,-0.10591873,0.44374543,0.15298517,0.3668546,0.39274612,0.10071135,-0.44158676,0.051701665,-0.19626196,0.8103323,0.04886015,-0.19866474,-0.3647789,-0.36021605,-0.2863696,0.47499964,-0.10313932,0.1999844,0.004500602,-0.35407728,0.68486166,-0.027644863,0.9570179,0.006824919,-0.26742798,0.12342776,0.6920723,0.08010251,-0.12498234,-0.43536767,0.9231657,0.49811682,-0.21232398,-0.1662769,-0.3159109,0.060311444,0.09930553,-0.28578582,-0.30893418,-0.14114161,-0.6892667,-0.1306678,0.23108837,0.3194058,0.092307374,-0.22734436,0.34102392,0.35952023,0.0068848007,0.2469341,-0.4460728,-0.07312828,0.39601216,0.08536607,-0.032356102,0.108722515,-0.47420225,0.30316025,-0.5380458,-0.037610773,-0.09106149,0.104948856,-0.09701105,-0.2924867,0.28542343,0.15166566,0.20876054,-0.43714553,-0.26945272,-0.14474164,0.38369873,0.18927884,0.33324313,0.6610401,-0.15842776,0.13455686,0.06512285,0.43281025,0.88407654,-0.19861817,0.14622235,0.2739053,-0.31964675,-0.62262547,0.3339143,-0.2551735,0.12160812,-0.028608058,-0.3051427,-0.42576385,0.38152885,0.15319525,0.02045243,0.09055488,-0.7008222,-0.14928968,0.2980681,-0.25176868,-0.2221163,-0.33530787,-0.16288887,0.46307102,-0.09856635,-0.31809667,0.09465376,0.39573961,-0.27437907,-0.51884854,-0.13277258,-0.42390174,0.24831216,-0.15058865,-0.15255561,-0.19684646,-0.05206695,-0.48646396,0.21133403,0.122876815,-0.35912177,-0.007417468,-0.3380558,0.06118244,0.7458125,-0.1479421,0.062294986,-0.47952327,-0.5254641,-1.0679134,-0.15898411,0.4178738,0.10706461,-0.12009557,-0.5977154,-0.14977501,-0.08258116,-0.18666275,-0.14581703,-0.4402223,0.33423337,0.09771071,0.33930993,-0.04662633,-0.9000672,0.06136053,0.09261497,-0.30713382,-0.41450542,0.58331627,0.013456737,0.6770624,0.08648141,0.12358594,0.2606618,-0.5799404,0.19576895,-0.17649624,-0.103381656,-0.52162516,0.17498708,156 -368,0.259644,-0.28361687,-0.32724425,-0.22603106,-0.32050818,-0.043737043,-0.15851292,0.4650742,0.22762774,-0.114385866,-0.09377235,-0.0630887,0.06003971,0.37884817,-0.14702071,-0.40596512,-0.13523017,0.07717792,-0.67457944,0.52139115,-0.46543676,0.14557444,-0.024577925,0.39388663,0.1963395,0.3552571,0.27524576,-0.0031942895,-0.04379045,0.015248888,-0.26142433,0.17905818,-0.23883371,0.24460836,-0.26166153,-0.22860742,0.06875398,-0.5835921,-0.049507294,-0.6289006,0.15413494,-0.81864303,0.36103576,-0.13250783,-0.123604715,0.046854753,0.36320367,0.18706499,-0.41855186,-0.22728209,0.17569228,-0.061382156,-0.12889601,-0.18185587,-0.10036316,-0.29416463,-0.4519226,0.0017141572,-0.523984,-0.36817694,-0.08503348,0.17364396,-0.2845997,0.07169683,0.00925654,0.52499425,-0.27492285,-0.05398897,0.19525059,-0.30718258,0.02285311,-0.55680466,0.020687955,-0.038379617,0.5166862,-0.0334897,-0.1892956,0.36767957,0.24971981,0.34657702,0.005328221,-0.26569957,-0.3061302,-0.3376229,-0.14260751,0.41138664,-0.10788213,-0.47502634,-0.122653976,0.12653296,0.2612574,0.28890234,-0.018731922,-0.16181563,-0.05563947,-0.21457568,-0.21208842,0.5030786,0.40229777,-0.3345646,-0.18199457,0.35539824,0.5030437,0.19434543,-0.32349423,-0.19972853,0.021456065,-0.45779952,-0.037636988,-0.036358826,-0.08143406,0.5095479,-0.18792745,0.19509046,0.6404038,-0.010568564,0.039354343,0.12352252,0.037884023,-0.10727429,-0.3354984,-0.298817,0.093155965,-0.49323803,-0.0044705444,-0.1809895,0.69900656,0.15093718,-0.72440356,0.48662043,-0.4413083,0.12087558,0.0014193909,0.47556877,0.61353797,0.38069144,0.4267339,0.5330091,-0.13964258,0.16655661,-0.053384222,-0.19651066,-0.004743759,-0.21008113,0.27892172,-0.5333896,0.29001254,-0.050652165,0.12981398,0.15001932,0.2291723,-0.37991047,-0.20862296,0.32597762,0.7821687,-0.23141988,-0.13964045,0.7110649,1.0666718,0.8824574,-0.0031655112,0.9985711,0.10370939,-0.20982419,0.25946206,-0.1700504,-0.6814116,0.2110556,0.3804519,0.1287566,0.3004971,-0.15510297,0.040271554,0.30320606,-0.25656632,0.014437629,0.01435491,0.30620617,0.30305025,0.15644631,-0.48838446,-0.38776472,0.088072285,-0.08115622,0.22112177,0.2716579,-0.21340752,0.34382758,-0.0024382912,1.3726301,0.16244313,0.06272341,0.14375658,0.59864056,0.24390559,-0.08100439,-0.22506198,0.46199855,0.20707461,-0.013815676,-0.5694414,0.34873036,-0.3110416,-0.35633415,-0.11524116,-0.5341719,-0.20061854,0.09780174,-0.43200126,-0.17512724,-0.10123776,-0.36030585,0.31780624,-3.1834128,-0.23213132,-0.2070658,0.2951897,-0.19193847,-0.11432112,-0.11108679,-0.51459444,0.2516487,0.30373958,0.5439325,-0.65869886,0.35101542,0.4821816,-0.59013945,-0.2441033,-0.6792391,-0.09184112,0.035353094,0.4191814,0.09619596,-0.09858014,-0.09578143,0.33169127,0.6293022,0.24650156,0.11065673,0.39891073,0.4120819,0.1685276,0.5691508,-0.1642361,0.5323717,-0.40819153,-0.08647905,0.19904956,-0.42261198,0.11676451,-0.024577217,0.17836687,0.61162376,-0.43796116,-0.8209468,-0.5681023,-0.09279333,1.0011122,-0.27937296,-0.31534848,0.25316116,-0.51937956,-0.02008398,-0.009822331,0.6504529,-0.15318553,0.014503645,-0.6040157,0.16776218,-0.085095,0.20988862,0.05547818,-0.050707586,-0.3009446,0.6694189,0.00095509633,0.7093324,0.1827646,0.07450471,-0.3484667,-0.17310336,0.08262352,0.4506101,0.28333798,0.0425339,-0.13361399,-0.028939188,-0.1459041,-0.22603662,0.0493624,0.5702023,0.5981739,-0.0061280853,0.13916592,0.28049943,-0.1219046,0.019379305,-0.032662265,-0.13967557,-0.1235376,0.14498094,0.40757447,0.66495526,-0.18983081,0.33386856,-0.18363507,0.25382432,-0.14303373,-0.37632918,0.5527455,0.40389067,-0.20743315,-0.015382886,0.3563537,0.6340106,-0.37254557,0.39597517,-0.5810489,-0.13633706,0.60756934,-0.20539369,-0.3306643,0.13066573,-0.2152494,0.13452911,-0.7393775,0.103930116,-0.25357965,-0.40483683,-0.3563278,-0.12242661,-2.781161,0.13329211,-0.05029908,-0.1496426,-0.35578424,-0.14407173,0.1895989,-0.59890014,-0.617586,0.1881312,0.22391541,0.5525965,0.008211947,0.012572224,-0.27607858,-0.24068192,-0.1300301,0.21739472,-0.09607147,0.39864832,-0.16618177,-0.32972303,-0.07282384,-0.07391524,-0.39802524,0.20229085,-0.59424365,-0.34181422,-0.005018597,-0.5871512,-0.365554,0.58936596,-0.36463532,-0.071083374,-0.17926352,0.024483675,-0.21027975,0.190668,0.14578459,0.07868058,0.08755106,0.0170567,0.17006506,-0.32552096,0.4409437,-0.10675954,0.35659003,0.13224451,0.18055367,0.23509003,0.45262554,0.63020086,-0.1050045,1.1162478,0.28329772,0.035012696,0.3257056,-0.29753074,-0.277489,-0.4234354,-0.17453624,0.054266963,-0.31479207,-0.40853855,0.07697427,-0.28356847,-0.6736933,0.5048661,-0.015079649,0.19349463,0.025816867,0.21030481,0.37575525,-0.2568258,0.11461939,0.034920108,-0.07721069,-0.58012825,-0.28816968,-0.6730159,-0.40405586,-0.027245846,0.70548135,-0.27131134,-0.017366324,-0.07364005,-0.33676454,-0.052980926,0.076374784,0.25142828,0.5318549,0.37436622,-0.120873824,-0.5561799,0.34006855,-0.15546012,-0.2360743,-0.26041752,0.043891884,0.48453146,-0.6572998,0.5466906,0.30912134,0.03883149,-0.23984157,-0.4553268,-0.17248018,-0.053156532,-0.1116989,0.36155066,0.27605578,-0.83234733,0.48488045,0.13506249,-0.28947544,-0.7663712,0.32656437,-0.05123288,-0.2356189,-0.2827368,0.32773826,0.24855736,-0.12855932,-0.13982932,0.023770984,-0.4492447,0.12160409,0.13771126,0.05961892,0.34577736,-0.097198,-0.14668486,-0.6153137,-0.065242,-0.53078574,-0.2092136,0.3698022,-0.0032385257,0.052544467,0.073003136,-0.20104574,0.25423566,-0.2757819,0.08657069,-0.03341437,-0.26845208,0.20273975,0.3483536,0.39033172,-0.39838272,0.50538003,-0.07021483,-0.038976345,0.11090138,-0.07942335,0.24237911,0.10339272,0.33233118,-0.15248747,-0.20445445,0.35951567,0.74691546,0.1727203,0.20586458,0.00642676,0.0018296157,0.4189512,-0.09304415,0.08565541,0.00837384,-0.4396305,0.011345829,-0.18647195,0.05733301,0.45697615,0.09494995,0.27118054,0.037944287,-0.20894805,0.019652545,0.13672575,-0.14582907,-1.104643,0.3608701,0.17040335,0.8277073,0.36350343,0.0832823,-0.23075853,0.85254973,-0.18990621,0.11230256,0.540541,0.03804813,-0.35900444,0.76887983,-0.54693866,0.6176015,-0.1127488,-0.18933542,0.090761624,0.11015455,0.3223557,0.6108503,-0.2537617,-0.08578014,0.13327824,-0.30609432,-0.014438978,-0.3034213,-0.058580782,-0.27074724,-0.2927445,0.61217743,0.26035136,0.29611903,-0.22662543,-0.08456213,-0.012378729,-0.18619892,0.15875684,-0.07925938,-0.030048082,0.0859782,-0.5939054,-0.09530194,0.5111795,0.14830554,0.2259804,-0.22038756,-0.3196357,0.101305984,-0.09336085,-0.047560513,-0.06532908,-0.6034693,0.17949149,-0.08809216,-0.5891232,0.6683293,-0.31041256,0.097497664,0.1801783,-0.012896786,-0.10392622,0.3748934,0.19342352,0.63072395,-0.18601899,-0.03598873,-0.27978894,-0.07861161,0.15056743,-0.12385874,-0.11384571,-0.59015787,0.08040134,-0.5073469,0.5743356,-0.07939295,-0.3680931,0.06238232,-0.23764937,0.11886519,0.5944141,-0.08743771,-0.05534171,-0.24509935,0.042186685,-0.28625378,-0.20651178,-0.25688517,0.3883791,0.22332677,0.021235421,-0.25152695,-0.19088197,-0.13781509,0.50678337,-0.09907466,0.44524637,0.127714,0.13811672,0.016156044,0.16885301,0.104589276,0.41780588,0.1837034,-0.102706976,-0.48277506,-0.10449159,-0.21112905,0.218876,-0.017141074,0.19684707,0.22849762,-0.2282341,0.7127562,-0.26200646,1.0479903,0.059878316,-0.38000408,0.09479634,0.54396343,-0.014824471,0.052159984,-0.28299975,0.75150746,0.4066871,0.00092802726,-0.09205706,-0.49054703,0.1445519,0.25477168,-0.20797357,-0.108273916,-0.02497398,-0.34234124,-0.34819874,0.22501312,0.06048631,0.2883241,-0.094787955,0.03527196,-0.0043829978,0.097357966,0.41424316,-0.48449492,0.067153625,0.17570639,0.13857175,0.060280394,0.18579504,-0.44531295,0.42167085,-0.79299057,0.16762178,-0.55199987,0.15732078,-0.27887827,-0.26728785,0.039704595,0.018004784,0.39926836,-0.1672372,-0.38665575,-0.11130522,0.39598665,0.055783637,0.19045234,0.3824404,-0.14271034,0.0068188733,0.18685792,0.6406029,0.9303905,-0.33071455,0.007136666,0.096616544,-0.31739804,-0.5972997,0.28663453,-0.32097343,0.034274034,0.13653763,-0.06771143,-0.47763994,0.16634925,0.43380684,0.18831716,-0.1395957,-0.48797533,-0.26784185,0.20592692,-0.27090457,-0.15042911,-0.21217524,0.18512893,0.62278694,-0.1578429,-0.24616815,-0.022247758,0.33188888,-0.11757923,-0.55201495,0.07716741,-0.34383664,0.3865791,0.11047195,-0.28873867,-0.112744294,0.013803823,-0.4316661,0.20650804,0.2086113,-0.41303703,0.051523093,-0.31568274,-0.025219208,0.96987677,-0.04661374,0.055767827,-0.47268963,-0.5074379,-0.7594796,-0.4104844,0.22490685,0.03383885,-0.10283134,-0.34274986,-0.031742077,-0.10270572,-0.34154627,0.082537435,-0.42874983,0.3076407,0.052837413,0.47756514,-0.2211846,-0.7445871,-0.062435094,-0.0140061295,-0.09182279,-0.44768095,0.5125008,0.07397656,0.75101143,0.010250734,-0.092172526,0.041250903,-0.24103464,-0.033438485,-0.39676523,-0.173838,-0.47823277,0.13720272,157 -369,0.56470436,-0.10230791,-0.43650874,-0.20450218,-0.30269518,0.13454127,-0.09751864,0.6886797,0.21183312,-0.400059,-0.22941409,-0.26065636,0.09091498,0.11647499,-0.23153679,-0.5397581,-0.017383235,0.18922485,-0.5130467,0.46707445,-0.49611112,0.27702045,0.023606922,0.3880168,0.16994455,0.14430894,-0.17651229,-0.09868921,0.02576038,-0.073046006,-0.07788855,0.52193606,-0.48274752,0.15331051,-0.1771245,-0.20823945,-0.072416134,-0.45789972,-0.37670544,-0.7880802,0.48818994,-0.907712,0.4352719,0.038684342,-0.3727953,0.2919093,0.22205862,0.308607,-0.1913248,-0.12905589,0.17095986,-0.03849841,-0.11042287,-0.16131398,0.034141354,-0.1639103,-0.5686668,-0.056099858,-0.29935718,-0.2652854,-0.22025275,0.21323745,-0.3719592,0.034182344,0.035533387,0.5397352,-0.40281558,0.24916579,0.33667436,-0.1904372,0.33111018,-0.63256973,-0.103972726,-0.066765,0.40509874,-0.17717037,-0.31304985,0.22258453,0.47779307,0.29502895,-0.16150191,-0.15880577,-0.117071874,-0.18712418,0.10355326,0.41909748,-0.1798426,-0.4081474,-0.051672306,0.017237255,0.045609746,0.24882023,0.14293763,-0.3224577,-0.18597889,0.020138958,-0.19239175,0.34587505,0.41586322,-0.22425559,-0.17636426,0.26923874,0.6281463,0.23369028,-0.03120543,0.064434595,0.07863891,-0.6225119,-0.07927499,-0.04241677,-0.33723933,0.49062848,-0.19021018,0.1256338,0.88629085,0.031487912,0.050088733,0.11840105,0.21185505,-0.0075243074,-0.5360133,-0.40791374,0.30906162,-0.50612533,0.24594526,-0.104721084,0.80862087,0.08655804,-0.5388302,0.329156,-0.6546182,0.06623209,-0.21659507,0.4026669,0.6088705,0.36632687,0.3136125,0.62453455,-0.41611862,0.007932736,-0.029455915,-0.26197994,0.13379487,-0.21766426,0.112716794,-0.44837528,0.12944582,-0.041449036,-0.035499074,0.11547637,0.2992976,-0.51701087,-0.112766266,0.08784572,0.80434245,-0.29406017,-0.045558173,0.6256928,0.90194476,0.8172659,0.124581136,1.1388315,0.12662731,-0.19326197,0.2619987,-0.092062,-0.83145934,0.27391663,0.39963788,-0.07946294,0.026542677,0.12247695,-0.00960442,0.41197035,-0.38464847,0.027399106,-0.20284592,0.3930911,0.18336327,-0.07309641,-0.4456808,-0.25217432,-0.0015866586,0.007860665,0.096517764,0.2661275,-0.017025596,0.36450776,0.048692826,1.4985505,-0.076127276,0.08755125,0.17326045,0.32031175,0.2279314,-0.05281114,-0.17222813,0.44738653,0.32535443,0.12807782,-0.5578278,0.2623197,-0.12991698,-0.32444978,-0.106015325,-0.40153116,-0.06742274,0.04703578,-0.54030895,-0.14228593,-0.22777669,-0.07542972,0.4824898,-2.7422698,-0.27405596,-0.138742,0.5106711,-0.13062872,-0.31717777,-0.122453704,-0.46277407,0.44812125,0.24451189,0.53405774,-0.7149029,0.36411792,0.43347573,-0.60814714,-0.1461611,-0.624041,-0.19379576,0.009180584,0.11384183,-0.013619845,0.028329602,0.0064797485,0.10084257,0.3948224,0.0017699322,0.19178881,0.3570022,0.39172116,0.11390613,0.47626463,-0.123762265,0.4613553,-0.13319549,-0.18885343,0.35098556,-0.2736035,0.21712835,-0.12223242,0.04108144,0.6082324,-0.40080908,-0.8238657,-0.81726867,-0.19887514,1.0572397,-0.35303536,-0.3259199,0.26173276,-0.49641278,-0.28125104,0.020614607,0.47516897,-0.053756863,-0.15739505,-0.8337626,0.024315357,0.026022771,0.15271917,0.07263003,-0.22874689,-0.36775398,0.7171189,-0.061753996,0.49579427,0.3201336,0.068801194,-0.28261024,-0.4202877,-0.03465035,0.644152,0.420409,0.18898186,-0.24456868,-0.15775825,-0.44385692,-0.056421723,0.040010445,0.6136491,0.6414447,0.026768114,0.13881914,0.16749188,-0.04442898,0.107765116,-0.20700908,-0.3196531,-0.08850013,-0.076693416,0.4954597,0.52013654,-0.29998192,0.31252903,0.007414571,0.23592618,-0.18888818,-0.49740487,0.45763278,1.0974075,-0.15280865,-0.33126554,0.61619264,0.43489498,-0.36625692,0.25817373,-0.49967963,-0.11090083,0.52308327,-0.19674729,-0.46069846,0.15502839,-0.40602794,0.19868548,-0.8508075,0.27704376,-0.43234178,-0.50877553,-0.5454182,-0.0741449,-2.665417,0.2729616,-0.31320056,-0.0910626,-0.23541306,-0.09116038,0.24081244,-0.6691123,-0.66020715,0.2741837,0.06292032,0.6793793,-0.13161477,0.072462164,-0.28381118,-0.17404163,-0.16155584,0.08699487,0.13632819,0.34204945,-0.024151292,-0.35833424,-0.01819803,0.08811273,-0.36530527,0.10597546,-0.6384826,-0.5343884,-0.07534132,-0.5357145,-0.30589625,0.57247025,-0.42785043,0.0432005,-0.06651783,0.020176237,-0.21754369,0.24826394,0.093344435,0.2177207,-0.06368422,0.019621944,-0.06098083,-0.35519406,0.3987785,-0.009869771,0.070455745,0.15808812,-0.12132304,0.025362406,0.47546124,0.56012243,-0.042215936,0.88969773,0.33013293,0.05594814,0.2685326,-0.26089722,-0.24416913,-0.42149714,-0.19352008,-0.118665576,-0.3907679,-0.36599904,0.00026419334,-0.50749904,-0.77099353,0.46010494,0.023237688,0.11475517,0.078104325,0.31992552,0.5655133,-0.20401023,0.02912658,-0.008641796,-0.068658255,-0.73668534,-0.090996996,-0.5787922,-0.47036844,0.1901138,0.9373884,-0.46317333,-0.033120178,-0.011723467,-0.25121352,0.029965412,0.23538479,-0.08626912,0.17474209,0.7273753,-0.21458493,-0.60130256,0.4334321,-0.115887865,-0.44185314,-0.6667977,0.21470831,0.482871,-0.71215045,0.72829735,0.4098909,-0.026397357,-0.24695788,-0.54819936,-0.2434349,-0.060633864,-0.35288757,0.48392007,0.20192853,-0.6417304,0.32756096,0.52262205,-0.15279981,-0.8382955,0.6755208,-0.15594997,-0.44497028,-0.0045290166,0.41586393,0.12917997,0.073298626,-0.0026914987,0.18567821,-0.4513852,0.1581519,0.14796121,-0.14905034,0.33337718,-0.20780103,-0.045170598,-0.7777713,0.022270283,-0.49424762,-0.18837403,0.2940357,-0.013556078,0.09815836,0.18929388,0.23425981,0.40502384,-0.265299,0.096851066,-0.19620048,-0.23525012,0.2553646,0.43889925,0.37055758,-0.35746732,0.6469053,-0.109545186,-0.07948696,-0.05528326,0.23349622,0.4271728,0.140198,0.48975188,-0.10201873,-0.123004794,0.27653974,0.8305372,0.055123586,0.44610986,0.02812004,0.009576653,0.120931745,0.09297216,0.26022127,-0.04330373,-0.5754829,-0.012341874,-0.2985143,0.15237032,0.58298194,0.16480896,0.22176567,-0.05131682,-0.47721025,-0.07329669,0.20340843,0.09408734,-1.152314,0.45717192,0.17680426,0.9018502,0.3924602,-0.019379368,0.04718674,0.6403925,-0.053764265,0.1638144,0.2409678,-0.11875738,-0.48112127,0.49734685,-0.88286227,0.33406943,-0.19161701,-0.038513858,-0.025310036,-0.029095283,0.42057815,0.5570742,-0.07773582,-0.07509671,0.055336017,-0.38499346,0.30669436,-0.5107492,-0.11656903,-0.57264143,-0.123491935,0.54284126,0.6904416,0.3530025,-0.3409789,0.05730327,0.11340206,-0.07653912,0.2018368,0.031676497,0.12680689,0.0727349,-0.59631383,-0.2280573,0.5297937,0.089557886,0.19805492,-0.12397038,-0.18196736,0.41244814,-0.16576095,0.06879007,-0.20249571,-0.79074275,0.045528002,-0.39364657,-0.5258283,0.41578487,-0.007438349,0.10708295,0.26208416,0.07366361,-0.22644354,0.5135699,-0.06134683,0.8328425,-0.077856064,-0.1938506,-0.56344855,0.18466058,0.09497663,-0.15061636,-0.059135463,-0.33032894,0.06970892,-0.38005129,0.55798745,-0.013190304,-0.16190067,0.033423632,-0.22579013,0.059107106,0.5725065,-0.318382,-0.13571331,-0.10500673,-0.31573063,-0.32465172,-0.262661,-0.13519885,0.19864567,0.25923616,0.100991376,-0.18267235,-0.12245655,-0.3152959,0.42059895,0.08284596,0.5206953,0.46687603,-0.029836807,-0.14759077,-0.18306199,0.3471085,0.45568052,-0.2012047,-0.36258444,-0.33978266,-0.46706003,-0.2447371,0.31110176,-0.0704266,0.47880584,0.089388795,-0.08056191,0.8824784,-0.13865165,0.81631476,0.040765297,-0.32364255,0.05952796,0.48282257,-0.044119976,-0.22723566,-0.22270383,0.63581324,0.4515857,-0.061381347,0.016984234,-0.2776902,0.09586496,0.20827615,-0.0959007,0.03885723,-0.03118824,-0.5850197,-0.28075522,0.11046115,0.26619858,0.10531207,-0.11739851,0.05573247,0.17534415,-0.101108156,0.2528366,-0.50322825,-0.13425054,0.124887586,0.27413276,0.1614177,0.15920438,-0.43047413,0.47672155,-0.43605974,0.015544525,-0.3807854,0.11460631,-0.267587,-0.3022323,0.05622852,-0.052428514,0.34763628,-0.27334052,-0.26253954,-0.32183507,0.3657748,0.2464682,0.019197537,0.6037504,-0.23252238,0.049074285,0.22630885,0.64710236,0.8806222,-0.11106939,-0.1259689,0.33819062,-0.45546558,-0.54384613,0.3426816,-0.30399635,0.20748858,0.114213146,-0.0090872925,-0.57320565,0.21277039,0.28291997,0.06026807,-0.06141085,-0.6844157,-0.17136593,0.39640602,-0.3171166,-0.19226667,-0.28583506,0.15544142,0.5400335,-0.18948875,-0.24635455,-0.024400055,0.19868053,-0.117981195,-0.55520934,-0.02453242,-0.47923756,0.31600067,-0.023601582,-0.21597417,-0.075591125,0.14177606,-0.45367602,0.2955559,0.0045655966,-0.27290013,0.097289525,-0.32626438,0.048659682,0.9415125,-0.12767169,-0.031879455,-0.52526677,-0.43647653,-0.7180176,-0.23724492,0.5060329,0.15304263,0.13979553,-0.51646644,-0.012306367,-0.028822038,0.003328698,-0.11806989,-0.29945084,0.57357776,0.15936327,0.38594308,0.0054717874,-0.8099414,0.007334358,0.0203473,-0.23482764,-0.60738915,0.414313,-0.0073097176,0.75294966,0.036010046,0.15961719,0.08521525,-0.30624777,0.045765407,-0.2959154,-0.13221331,-0.7155954,-0.027078971,158 -370,0.41588327,-0.0948121,-0.24838077,-0.34191632,-0.33070448,0.3706344,0.035099287,0.4080328,0.21488364,-0.38794687,-0.07565992,-0.22646293,-0.13054131,0.36364254,-0.12268007,-0.766652,-0.045244224,0.1848865,-0.7428145,0.46576223,-0.62254447,0.33802825,0.21925464,0.28850827,0.0667628,0.33887735,0.17241308,-0.23531188,-0.11099564,0.05135887,-0.35434562,0.0012020959,-0.5724779,0.2919719,-0.10001775,-0.18516932,0.06516802,-0.34604523,-0.29919735,-0.7075261,0.32883957,-0.77782524,0.39682886,-0.07699953,-0.30222479,0.24046429,-0.15419948,0.27625462,-0.53241044,0.071470134,0.13836244,-0.19517322,0.02057679,-0.17952935,-0.3482857,-0.47808716,-0.62813705,0.2660943,-0.34123746,-0.21959233,-0.26077718,0.22335932,-0.22037648,-0.046037655,-0.20269455,0.42663407,-0.4075833,0.029593358,0.2106644,-0.20556033,-0.11598456,-0.33249044,-0.13569923,-0.11809981,0.12877516,0.08487063,-0.2737019,0.31993666,0.40967992,0.62158614,0.13405249,-0.39186284,-0.028892407,-0.02055736,0.16273618,0.41420192,-0.10542349,-0.22245142,-0.2810997,-0.07155947,0.065010294,0.089176215,0.047540724,-0.51595175,0.07929572,0.18116216,-0.24745558,0.13181263,0.4594448,-0.49944285,-0.3137471,0.38620922,0.4454133,-0.07532481,-0.045438994,0.04028558,-0.08452863,-0.5338203,-0.2510781,0.33446196,-0.24818613,0.6567725,-0.2875302,0.013359575,0.7684707,-0.14943801,0.15092553,-0.15479358,-0.05053421,-0.07311877,-0.33169967,-0.16574326,0.18304737,-0.43275142,-0.0015388684,-0.34291863,0.81665975,0.2979612,-0.68518037,0.39522478,-0.51630545,0.29310253,-0.22086641,0.628897,0.70293415,0.4176693,0.1642913,0.8885962,-0.6446204,0.077559434,-0.08727664,-0.30281714,0.14438236,-0.2627898,0.16121683,-0.4117894,0.15016922,-0.029448202,-0.044228055,-0.13705339,0.23281881,-0.50175107,-0.048451122,0.032697793,0.8113116,-0.44628668,-0.10222169,0.7711611,0.8468042,0.95881176,0.03971861,1.6167641,0.7025963,-0.2873716,0.21751972,-0.29303393,-0.6903367,0.1306879,0.28554222,0.22919667,0.24258675,0.08390869,0.06388772,0.47534752,-0.4994681,0.22347197,-0.4025447,0.275189,0.015793357,0.071150385,-0.37407556,-0.38034487,0.11220132,0.0025502103,0.002211426,0.35208493,-0.15137076,0.3084168,0.13014095,1.639183,0.21592487,0.009089296,0.084002934,0.37553403,0.14717595,-0.11718651,-0.06495168,0.29895657,0.35430595,-0.14904793,-0.61476475,0.042630605,-0.2570007,-0.55794615,-0.107998215,-0.39012915,0.086998,-0.20182864,-0.49299508,-0.28778675,0.09200271,-0.41898155,0.4654886,-2.195684,-0.23934929,-0.13378465,0.29835325,-0.33089924,-0.3444481,-0.23466964,-0.5442347,0.2911457,0.43422192,0.3987229,-0.7968518,0.4103083,0.29339138,-0.25682086,-0.14389895,-0.7711617,0.06192978,-0.105476424,0.23685157,0.041714013,0.043075465,-0.33569643,-0.082029715,0.6501962,0.09571511,-0.0034970236,0.20503987,0.40865746,0.1266966,0.522446,0.17259666,0.5944942,-0.2792433,-0.13455406,0.40793753,-0.4869155,0.37350872,0.11088221,0.12217973,0.41622764,-0.5339172,-0.65477085,-0.77262026,-0.5756821,1.3245599,-0.48241332,-0.28566226,0.2040218,-0.11202087,-0.032750778,-0.06356959,0.33828282,-0.19968772,-0.12751304,-0.61000407,0.07562182,0.18440633,0.23100345,-0.10161914,0.20827125,-0.072384104,0.70661986,-0.23484504,0.54814595,0.35089558,0.14301172,-0.013553091,-0.39793792,-0.005560409,0.80702305,0.40665922,0.098598056,-0.04583363,-0.23631246,-0.22256054,-0.32926682,0.14140324,0.3934175,0.86909956,0.06455055,0.011103828,0.4951982,-0.15857773,-0.110576235,-0.038177755,-0.45466137,-0.06480188,0.072907075,0.6037598,0.56995595,-0.17669985,0.26306814,-0.27271968,0.3088436,-0.13388816,-0.5060999,0.62071174,0.91829693,-0.15309632,-0.08612696,0.4548766,0.46431404,-0.5218438,0.3705299,-0.595303,-0.29662806,0.73704576,-0.052803595,-0.34729484,-0.071831904,-0.2685441,0.097244345,-0.84370995,0.37588573,0.13417505,-0.54285586,-0.5566598,-0.1753659,-3.5965075,0.073279575,-0.26837087,0.082032405,-0.02628027,-0.057720132,0.21827944,-0.36465687,-0.54791564,0.0799935,0.045982268,0.4668116,0.03616182,0.21518342,-0.27826837,-0.0744312,-0.49255344,0.09059576,0.0465038,0.30638048,-0.002711773,-0.27560395,0.012708308,-0.38332915,-0.40670657,0.1640754,-0.7242957,-0.5679241,-0.14963152,-0.5071103,-0.41641292,0.6802149,-0.4224184,0.029515585,-0.21469143,-0.03846138,-0.35403174,0.37870362,0.22842298,0.22286876,0.021316128,-0.10608868,-0.25280955,-0.44591427,0.2608418,0.20337509,0.306211,0.35903051,0.004635151,0.13029845,0.51368695,0.6246173,0.04568804,0.5659866,0.24443193,-0.08776535,0.39394155,-0.40365213,-0.12721226,-0.6779036,-0.34024474,-0.17619388,-0.32944188,-0.4828698,0.09702701,-0.3813901,-0.8868441,0.1484295,0.047972757,0.005746258,-0.03847801,0.16578017,0.56266487,-0.053468134,0.0694958,-0.13494709,-0.13998827,-0.7031205,-0.53882354,-0.78792506,-0.48259595,0.31646466,1.1916922,-0.0818112,-0.34546104,-0.1457653,-0.35339618,0.07489251,0.07458792,0.047705326,0.11639751,0.487216,-0.15274525,-0.9000813,0.4447122,-0.021273136,-0.14161527,-0.54655117,0.2273686,0.8286374,-0.80135924,0.5545205,0.2571499,0.28114524,0.21278344,-0.39598912,-0.5064942,0.013919779,-0.15665889,0.57370317,0.042822056,-0.4815507,0.46223143,0.24126588,-0.04226286,-0.7617988,0.332504,-0.07913886,-0.11005689,0.1439463,0.37988934,0.074309506,-0.1674846,0.0016832097,0.20036401,-0.6189385,0.16838405,0.5174197,0.1049999,0.30502298,-0.10322236,-0.37645006,-0.6472761,-0.18471844,-0.64290196,-0.24656418,0.032696463,0.13469759,0.091376565,0.10874182,0.09299852,0.36854005,-0.09188897,0.17441249,0.014067884,-0.2414511,0.37026078,0.36307615,0.27210256,-0.6138293,0.58772534,0.051062744,0.19193403,-0.16837958,0.032254968,0.32818684,0.5580617,0.28898028,-0.12055869,-0.18962869,0.23401022,0.7065991,0.19574241,0.33506447,0.22975723,-0.22099617,0.567798,0.20491399,0.10118651,-0.018268755,-0.3431709,0.012245183,0.11121465,0.1736984,0.26719567,0.14308806,0.28589723,-0.057516437,-0.17239234,0.14952837,-0.105035834,-0.12592156,-0.96633244,0.2321734,0.22168009,0.65557545,0.49268132,-0.17567587,-0.08029703,0.5990222,-0.3611676,0.16456263,0.34786156,-0.21621974,-0.5799202,0.5942798,-0.60067624,0.5324581,-0.29937726,0.0384846,-0.03908602,0.44266525,0.35612196,0.7925504,-0.14941646,0.017481651,-0.12669256,-0.2934498,0.2594244,-0.4438893,0.2237564,-0.5831247,-0.3777823,0.5589689,0.33187985,0.2503039,-0.36763206,-0.0704835,0.08135707,-0.26566193,0.23513849,-0.09670971,-0.06273596,0.03012985,-0.6793278,-0.37887526,0.5702025,-0.139739,0.18619315,0.26140442,-0.39785868,0.23881468,-0.31616345,-0.103020735,-0.07569631,-0.7257832,-0.029397717,-0.10303811,-0.44491264,0.2401596,-0.29004836,0.24331631,0.29485783,0.05405267,-0.4116349,0.16940583,0.08069553,0.83753747,-0.051535375,-0.3083364,-0.45627955,0.08054324,0.24369486,-0.3575346,0.040483467,-0.34624085,-0.095137894,-0.5468631,0.52191645,-0.12744701,-0.2089479,0.17097382,-0.3298996,-0.14683338,0.45922583,-0.34993172,-0.13821413,-0.0741594,0.0002743772,-0.20395635,0.120890126,-0.3533678,0.31791696,-0.0536623,0.067922235,0.06379177,-0.20769456,-0.09284948,0.33519584,0.030232599,0.14871791,0.17141758,-0.19594659,-0.34675875,-0.030833462,-0.07136113,0.22472844,0.23658137,-0.2613771,-0.12498684,-0.13053587,-0.16236314,0.39391807,-0.16371116,0.30463725,0.06729723,-0.57666,0.6754561,0.086598106,1.2532305,0.083136,-0.30405086,-0.011827354,0.64916116,0.21513608,0.1401635,-0.30295762,0.6996144,0.6100432,-0.06631563,-0.21479617,-0.44046268,-0.14728843,0.33154148,-0.14744224,-0.15760449,-0.025048703,-0.73106396,-0.31817594,0.108535126,0.085591376,0.32410425,0.2057191,-0.13241683,0.063234635,0.061269227,0.62290716,-0.3112292,-0.08535918,0.31765842,0.17815502,0.17335589,0.28454518,-0.27969548,0.41375145,-0.7391435,0.2872134,-0.3168805,0.07438586,-0.08709826,-0.18024479,0.22204757,0.07286616,0.30505463,-0.36599785,-0.3964689,-0.26984242,0.8189582,0.22148784,0.4171899,0.8096756,-0.2477424,-0.26433858,0.2899299,0.5679838,1.2706548,-0.048458498,0.11295668,0.23209153,-0.44507715,-0.5973271,0.42150313,-0.29256895,-0.015745917,-0.009801714,-0.27888626,-0.44954962,0.31909984,0.23492475,-0.19659702,0.179665,-0.571732,-0.23569645,0.40646103,-0.2846337,-0.36581206,-0.31911057,0.34378514,0.723199,-0.38788083,-0.22564761,0.13351658,0.182779,-0.3037633,-0.5793727,0.0032650402,-0.6405593,0.39513135,0.14554192,-0.35311028,0.077297725,0.16613623,-0.3974778,0.15622628,0.24770102,-0.39940193,0.16871691,-0.11037282,-0.1356976,0.93293923,0.22728859,0.17885455,-0.7506267,-0.47277525,-0.8810634,-0.42766762,0.56463397,0.13256977,-0.023849752,-0.29387283,-0.19880523,0.10589348,-0.1525602,0.10993755,-0.5709661,0.4051014,0.25429347,0.32473317,0.07848507,-0.76149756,-0.01696888,0.019966569,-0.09397848,-0.35397336,0.4608574,-0.18770607,0.7827798,0.022140231,-0.016369447,0.023838218,-0.49848816,0.222592,-0.39037916,-0.2642713,-0.45436716,0.09653083,159 -371,0.6087888,-0.15858945,-0.6099957,-0.029980628,-0.33182952,0.24237673,-0.22818817,0.37888074,0.44460505,-0.53821015,-0.11265415,-0.18549761,-0.05737589,0.2653741,-0.15177163,-0.7027238,0.22145279,0.043116994,-0.46570608,0.6815462,-0.35212797,0.5320049,-0.04438321,0.2268562,-0.025009671,0.18406503,0.13369773,0.34215733,-0.22223864,-0.059776362,-0.045037057,0.24445851,-0.48041844,0.22213541,-0.13831513,-0.33474058,-0.086294614,-0.4631514,-0.1621213,-0.9131028,0.3148623,-0.63250864,0.58944905,0.09788515,-0.23210867,0.15129979,0.23331451,0.078529514,0.015841322,-0.06265126,0.14407232,-0.29001325,-0.2062143,-0.011186889,-0.42730767,-0.50307214,-0.59734327,-0.051656596,-0.66866165,-0.17917895,-0.23819682,0.2008575,-0.32199854,-0.22663888,-0.07633155,0.6852568,-0.25758433,-0.22237982,0.24618243,-0.3091069,-0.06240776,-0.9021654,-0.22891389,0.08299871,0.2619123,-0.0052503007,-0.22353564,0.32515928,0.3247344,0.4254392,0.14590825,-0.4375897,-0.32120213,-0.14018719,0.111882105,0.49835938,-0.26458073,-0.33658847,-0.29831415,0.066681504,0.5506059,0.24976589,0.5306701,-0.1367726,-0.022787264,-0.08315546,-0.18133442,0.6774368,0.58118683,-0.33789608,-0.19186573,0.37048006,0.6926264,0.09438666,-0.21688974,-0.15952751,-0.17087851,-0.4400637,-0.06747301,0.30100352,-0.086699985,0.14202021,-0.079673246,0.055858303,0.5062746,-0.22578563,0.06953224,0.2659015,0.15800788,0.13097109,-0.336603,-0.09845649,0.25986707,-0.34279224,0.06762794,-0.43150297,0.53733426,0.15686344,-0.4987683,0.42522398,-0.51863545,0.21087177,0.22592619,0.64151466,0.9659502,0.32923064,0.14465818,0.8531526,-0.18647313,0.1636931,-0.07456454,-0.045927938,-0.032293506,-0.19367221,0.39248064,-0.5174428,0.0079069985,-0.11617883,-0.16544071,0.21670175,0.50133693,-0.7238463,-0.31642273,0.2040604,0.79908806,-0.17457655,-0.21538067,0.9078441,1.2102667,0.83185035,-0.09169544,1.0248871,0.16996427,-0.124262914,-0.24109201,-0.31862068,-0.47901314,0.19332634,0.33931902,0.2493547,0.52612114,-0.016784936,-0.30494657,0.4333624,-0.21912952,-0.29454228,0.015685368,0.35846096,0.22582848,-0.24825631,-0.44827676,0.019652495,0.116388455,-0.1761872,0.484289,0.36035833,-0.3100088,0.2766296,-0.2171973,1.0532671,-0.1765573,0.033475332,-0.015096209,0.3761851,0.39462417,-0.22176208,0.24425165,0.45293385,0.11194829,-0.01831228,-0.4198902,0.16204873,-0.3876011,-0.42007247,-0.054201357,-0.3535018,-0.3456807,0.12758513,-0.34447497,-0.16134858,-0.08494521,-0.2986684,0.40027326,-2.730789,-0.18670528,-0.07951059,0.32866138,-0.2679731,-0.43942857,-0.12219233,-0.46308216,0.4680101,0.35661075,0.29006857,-0.5417268,0.22673409,0.42757505,-0.6098302,-0.07323146,-0.66216666,0.026721248,0.0048946226,0.4044105,-0.007860308,-0.37471336,0.19739941,0.41307992,0.55830187,0.35914358,0.11592396,0.28653842,0.4398814,-0.2633844,0.26581877,0.028063009,0.5557295,-0.19867873,-0.117513575,0.367671,-0.75974804,0.36339095,-0.16635561,0.098306976,0.5189627,-0.046534993,-0.7453578,-0.5169007,-0.2083964,0.9641642,-0.07911624,-0.74259555,-0.011904152,-0.072138,-0.19633587,-0.11385597,0.6381568,-0.013463995,0.027132051,-0.6780427,-0.00058903015,-0.16154039,0.13251509,-0.23285334,0.10081886,-0.5556622,0.778772,-0.13077097,0.4341041,0.19298188,0.36142525,-0.5337803,-0.4643894,0.018128736,1.0828211,0.5412429,0.042554285,-0.083773494,-0.18002948,-0.28383532,-0.30351183,0.13463204,0.8058972,0.47510362,0.022374852,-0.0076202187,0.31826854,-0.05683917,0.23256753,-0.13500127,-0.3698875,-0.20616584,0.1109436,0.61426145,0.42922682,-0.28746915,0.5050612,-0.17093374,0.08177541,-0.29247275,-0.5079663,0.59175307,0.8103208,-0.3152255,-0.25524017,0.47134757,0.14426169,-0.48769718,0.48436657,-0.71940774,-0.29553175,0.47118455,-0.2234396,-0.5050528,0.055455085,-0.18444712,0.02448265,-0.6955802,0.25463295,-0.3268198,-0.2844386,-0.57399064,-0.19862749,-2.7201397,0.037137475,-0.24067985,0.026990073,-0.28103372,-0.17480491,-0.0154742,-0.62135124,-0.52743894,0.17778465,-0.06678344,0.6139931,-0.12472688,0.055799603,-0.30097708,-0.58785015,-0.16411965,0.38174778,-0.12632307,0.29960093,-0.12736447,-0.12904683,0.16010915,0.033658236,-0.49344137,-0.094914906,-0.66518265,-0.42137423,-0.3141348,-0.46667725,-0.019984739,0.7438396,-0.43411204,0.123077095,-0.26641315,0.1693794,0.02160103,0.2900727,0.14196722,0.24649988,0.24373867,-0.31649542,0.08079839,-0.35605335,0.37043422,0.18110551,0.4047291,0.6676418,-0.051262837,0.25781292,0.44339946,0.732635,0.17267041,0.91127855,0.033193104,-0.13366234,0.40926737,-0.2765308,-0.16475856,-0.6296736,-0.25045738,0.28853348,-0.40571693,-0.50424993,-0.25953445,-0.43037906,-0.8089695,0.32215816,0.041782014,0.3253222,-0.30296776,0.6550895,0.48521557,-0.32552457,0.015858425,0.050144274,-0.11846941,-0.420365,-0.32941213,-0.6144853,-0.53447217,0.37848955,0.61465377,-0.34128794,-0.11202637,0.0857532,0.024489403,0.0732251,0.06351753,0.23544502,-0.31187755,0.22480306,0.060360067,-0.46581414,0.3847001,-0.22585805,-0.16326533,-0.6592687,0.50566787,0.5217658,-0.41297653,0.69254494,0.34348348,0.077608466,-0.4448168,-0.6061934,0.05304346,0.41688338,-0.19434197,0.41467062,0.29429173,-0.6024304,0.39674932,0.40321022,-0.21715477,-0.5931868,0.5215748,0.07274504,-0.22470117,-0.039356947,0.51529056,0.373714,0.027644353,-0.2387325,0.20113407,-0.5538763,0.19646947,0.06841216,-0.00952032,0.68770236,-0.048563786,-0.56404066,-0.6792342,0.16692212,-0.7455764,-0.2569632,0.17675649,0.0075617647,0.035462,0.29365543,0.23105045,0.55974185,-0.35346028,0.18003675,-0.26862863,-0.31498384,0.4720595,0.50266415,0.48742706,-0.43944502,0.58250195,0.025816234,-0.18150488,0.26959246,-0.0006996734,0.5333909,0.22598253,0.48038524,0.15474828,-0.04781405,0.12684195,0.5920783,0.025982661,0.25541243,0.16667445,-0.33043894,0.11367571,-0.066196956,0.20416784,-0.17073287,-0.5382581,-0.090134144,0.001096734,0.07372356,0.44843644,0.093772285,0.20872177,0.11517983,-0.39001927,0.04151965,0.19069706,0.0055911713,-1.4304773,0.2778799,0.102124706,0.93402344,0.28140548,0.12357292,-0.033777535,0.2915813,-0.040750504,0.08671824,0.31127113,-0.09823025,-0.29246885,0.430053,-0.47482425,0.44612783,-0.23906994,0.018349605,-0.10320432,-0.01803135,0.45112514,0.8433296,-0.30968437,-0.0712019,-0.13589066,-0.17545573,0.23620519,-0.31321177,0.33058295,-0.34960914,-0.40489906,0.48057476,0.3272376,0.41076908,-0.2517095,0.035874598,0.16893406,-0.3258372,0.16085991,-0.02043772,0.12240343,-0.13793282,-0.35508278,-0.205544,0.47015306,-0.110157736,0.053768337,-0.078135565,-0.10080077,0.18900426,0.07053392,0.12650524,0.07745947,-0.71115404,-0.042988893,-0.1302664,-0.6398902,0.42718205,-0.09063302,0.08047347,0.24234617,0.053414885,-0.20860974,0.5705915,0.30292082,0.6432123,0.010862725,-0.17701231,-0.47561458,0.12642287,0.08343603,-0.25760078,0.17713167,0.093528025,0.4334776,-0.45053583,0.6014107,-0.16991864,-0.35546714,-0.007171963,-0.23403528,-0.10332465,0.58332604,-0.2330818,-0.18342257,0.011239365,-0.2908576,-0.13133648,-0.08600557,-0.061451744,0.22758998,-0.09100257,-0.06363299,-0.18317696,-0.24734758,-0.15605494,0.19991687,0.13255864,0.08457804,0.70246804,0.16048524,-0.50371933,0.23380676,0.27700245,0.4182668,-0.01529098,-0.10957741,-0.24605148,-0.5981908,-0.65812606,0.45245403,-0.08661338,0.18332982,0.090198226,-0.37984663,0.78561556,0.11899751,1.2999471,-0.095811665,-0.5120524,-0.054424644,0.68960476,-0.0331058,-0.00017798586,-0.3847571,1.081764,0.5534612,-0.08537416,0.06763989,-0.553269,-0.076880984,0.43315682,-0.3882832,0.027939072,-0.16456422,-0.71916354,-0.22407643,0.24658887,0.3041133,0.052418027,-0.20556518,0.07332195,0.38110167,0.18537514,0.3332811,-0.80004203,-0.036270503,0.3314595,0.3330083,-0.10422029,0.04374365,-0.3972017,0.37395167,-0.76748765,0.32014653,-0.25255707,0.15332791,-0.21531656,-0.36877313,0.3046233,0.17499344,0.30521855,-0.37258896,-0.4797148,-0.05489566,0.18535392,0.24205896,0.10689541,0.6015611,-0.14907625,-0.025679963,0.1494691,0.6418725,1.3310543,-0.0111397635,-0.12026566,0.13031773,-0.40068778,-0.90716326,0.22198693,-0.46396208,0.092941925,-0.21206269,-0.3456204,-0.56439734,0.18469131,0.10155349,0.018193271,-0.0050563216,-0.65221864,-0.249014,0.00033968262,-0.47791073,-0.113976546,-0.22816317,0.06894786,0.8319803,-0.22628649,-0.25982317,-0.09120173,0.4927117,-0.2889382,-0.9258465,0.08458875,-0.2554275,0.47156814,-0.06488769,-0.31333822,-0.164732,0.029784603,-0.49192303,0.032765802,0.14179058,-0.25228068,0.13830447,-0.21172953,0.1074282,0.5469822,0.190174,0.18283512,-0.50811225,-0.54199296,-0.81176996,-0.43303248,-0.18805037,0.12962615,-0.114469014,-0.8565193,-0.075320564,-0.50304806,0.038776048,0.054621033,-0.33555672,0.19464254,0.17978983,0.3430595,-0.26722834,-0.8502596,0.15645896,0.14401616,-0.08475113,-0.4450772,0.40616468,0.014225806,0.85908973,0.17313056,-0.12337788,0.21213174,-0.5809392,0.34319195,-0.35275456,-0.15229261,-0.6338664,0.31511408,160 -372,0.39369264,-0.08314272,-0.526419,-0.10113599,-0.28313416,0.04484219,-0.3553973,0.16933636,0.28351724,-0.39976308,0.02198157,-0.25418502,0.057408016,0.17993023,-0.07357582,-0.6549996,0.018059453,0.16336857,-0.5441927,0.6094166,-0.30529234,0.27228615,0.12673862,0.09758693,-0.13680308,0.23478438,0.27572352,-0.21595182,-0.0042387927,-0.20183706,0.0533724,-0.22576134,-0.7971126,0.36114082,-0.3204901,-0.23905851,0.23982742,-0.38957277,-0.42254356,-0.6936843,0.032588977,-0.8479276,0.5864139,0.009944677,-0.22093031,0.35778525,-0.08306389,0.2611491,-0.12233633,0.06976171,0.2801601,-0.30666617,-0.42573422,-0.31393793,-0.18591632,-0.5219331,-0.52750623,-0.09250818,-0.59867805,0.111649625,-0.44290558,0.13214093,-0.2922511,-0.025081566,-0.12162485,0.39569846,-0.3735167,0.18137206,0.1342346,-0.1916239,0.35735896,-0.44466332,0.0071914964,-0.18839535,0.1127581,0.09722175,-0.14937408,0.33452517,0.11009847,0.39134064,0.03182509,-0.25716844,-0.27901378,-0.097195365,0.28506038,0.40328285,0.15875949,-0.16383521,-0.06923882,-0.123804055,0.00465906,0.1079235,-0.0432749,-0.38320524,-0.053346355,-0.076370455,-0.48331672,0.51147157,0.47653618,-0.33459142,0.111684695,0.36449096,0.4481587,0.03582508,-0.165961,0.111335576,-0.16979994,-0.4333866,-0.29427686,0.19841377,-0.18220465,0.4855399,-0.18812847,0.13898872,0.691206,-0.1874754,-0.40695825,-0.02732707,0.09047957,0.08434434,-0.07165575,-0.17246342,0.47278184,-0.692344,-0.032795902,-0.43250102,0.8497227,0.07076029,-0.8983634,0.40687442,-0.509837,0.07012677,-0.15918495,0.68069094,0.7000027,0.71923035,0.094017975,0.792456,-0.5428864,0.2261536,-0.10389893,-0.6046496,0.33897614,-0.19396129,0.21119848,-0.4375743,-0.11315305,-0.054767005,-0.16286948,-0.08340715,0.5166102,-0.17990054,-0.15379761,0.10532228,0.7204115,-0.37834534,-0.069256544,0.67821723,1.0463269,0.8680253,0.2441632,1.1419262,0.3551138,-0.17783216,-0.14626023,-0.05023271,-0.8772636,0.14393319,0.29991278,0.42521635,0.13085032,0.1842351,0.013316044,0.23652335,-0.29866388,-0.18710054,-0.1935244,0.4969038,-0.119159706,-0.1436588,-0.3158381,-0.24791251,0.16280365,0.08367886,0.1594117,0.34421915,0.09351456,0.46720073,0.25737792,1.2995918,0.06692127,0.051418014,0.07156328,0.47062302,0.40452403,-0.022309154,-0.21658644,0.33711722,0.29553375,0.033816416,-0.5752471,-0.014979912,-0.15465753,-0.46109655,-0.21572943,-0.3029558,0.09547717,-0.10821229,-0.10351952,-0.19231747,0.1327962,-0.40345907,0.52898484,-2.500071,-0.06506001,0.01841999,0.33977443,-0.044302814,-0.24026032,-0.072642915,-0.5988321,0.5167643,0.4578136,0.60700715,-0.5182015,0.38828918,0.61891043,-0.61120975,-0.011200173,-0.6129155,-0.04136507,-0.2926409,0.3761937,0.06817822,-0.17191133,-0.14678761,-0.029256007,0.5702694,-0.041072093,0.19816984,0.3952271,0.3124556,0.082799636,0.48152804,0.027527574,0.36053416,-0.3604146,-0.16145173,0.2331179,-0.20997111,0.19519098,-0.33014637,0.06803983,0.39764056,-0.5224339,-0.8023424,-0.43143648,-0.08503842,1.1811781,-0.45587876,-0.47248775,0.2949534,0.0068284743,-0.15373364,0.10246378,0.45597595,-0.15662637,0.099138215,-0.61600924,-0.008809353,0.11775363,0.24169931,0.027507106,0.09190511,-0.42748564,0.6955721,-0.053420592,0.4584141,0.5114047,0.08906471,0.042493243,-0.3811492,0.27776557,0.7589593,0.1201904,0.24976437,-0.44189787,-0.2068543,-0.14054972,-0.20163189,-0.015670663,0.47555223,0.6458469,-0.14997146,0.057040017,0.30398956,-0.26428702,0.030312976,-0.17689729,-0.47434995,-0.12866299,-0.079740755,0.48011607,0.9056409,0.08148716,0.25669885,0.072242856,0.37895605,0.03915419,-0.5154262,0.6027454,0.6602084,-0.10710603,-0.19844326,0.45456192,0.5021514,-0.16654839,0.5318485,-0.4478061,-0.5205914,0.35752943,-0.020111902,-0.53100187,0.28661865,-0.34389392,0.15793668,-0.7427945,0.27544218,-0.30841064,-0.5946833,-0.46311146,-0.07207174,-3.3548093,0.15030332,-0.12582287,-0.027225902,-0.05373907,0.0072783134,0.2711881,-0.21129522,-0.5117292,0.28402424,0.27919072,0.4568081,-0.19834249,0.07111096,-0.26713032,-0.21975717,-0.4298016,0.35225466,0.17478916,0.10259835,-0.13233072,-0.4668732,-0.11775661,-0.3884192,-0.2938166,0.040184624,-0.48202464,-0.1875293,-0.24250293,-0.40217972,-0.5500576,0.6992679,-0.3346326,0.011923502,-0.19387709,0.03426135,0.025505945,0.2758835,-0.11555389,0.054387566,0.0127289975,-0.0575254,-0.16584301,-0.26503038,0.26650524,0.018663555,0.25438252,0.2998541,-0.041280907,-0.12763833,0.6675733,0.54009336,-0.028807959,0.8553912,0.30205494,-0.049882475,0.41320434,-0.14616993,-0.38944918,-0.71554565,-0.11837769,-0.3528177,-0.4217284,-0.32445017,0.1867787,-0.4103997,-0.7664698,0.57936954,0.18230799,-0.15003134,0.090427205,0.2702191,0.34407786,-0.08937175,-0.1101619,-0.1411476,-0.24687044,-0.56099266,-0.29908305,-0.8088347,-0.4056293,-0.0022699663,0.94034636,-0.09771399,-0.19391586,0.02736279,-0.19025643,0.1978044,0.22438528,-0.07479275,0.31026062,0.5755977,0.28684536,-0.7282321,0.5594832,-0.14071573,-0.10853153,-0.6527065,0.21751407,0.53613234,-0.88957185,0.28578123,0.5886564,0.026612435,0.04462732,-0.64269733,-0.29364094,0.076848865,-0.21230112,0.4285593,0.08745966,-1.0550631,0.59694535,0.14983256,-0.3127975,-0.7485887,0.3808671,-0.029661315,-0.27506799,0.1235144,0.28877825,-0.079323545,0.045937426,-0.41231894,0.050191432,-0.42377594,0.32807952,0.005858496,-0.14230622,0.39792866,0.04351592,-0.1297755,-0.82660925,-0.21927224,-0.39906004,-0.22611347,0.22399496,-0.08187179,0.1325929,-0.03477336,0.2316972,0.41926268,-0.168425,0.106250234,-0.3038965,-0.34369326,0.505969,0.45909277,0.27947357,-0.4500557,0.6611101,-0.13547157,-0.09955168,-0.12749067,0.12790738,0.3734629,0.0945657,0.38747188,0.23978604,-0.089303136,0.034886446,0.7980791,0.25581363,0.43024182,0.22491762,-0.16923456,0.49160823,0.018120037,0.23874307,-0.04802044,-0.43929705,0.012810268,-0.19051729,0.1100872,0.4084329,0.105270244,0.5367226,-0.25313735,-0.14343251,0.008703564,0.22818191,0.27271226,-0.8430442,0.40013474,0.22618687,0.5253304,0.7441969,-0.02366851,0.10757654,0.79829216,-0.21855442,0.12423967,0.15802982,-0.11258144,-0.38697046,0.4416195,-0.6080939,0.27632627,-0.091580115,-0.09408386,0.31401268,0.06223441,0.46857738,0.92990357,-0.098665394,0.18876453,-0.083046876,-0.28570998,0.12814413,-0.2571502,-0.017340302,-0.33024678,-0.44251785,0.6217634,0.27138656,0.45378226,-0.22379597,0.0022342673,0.07466864,-0.26100716,0.3052078,0.007839685,-0.31897712,0.03235495,-0.5714035,-0.26273373,0.60781187,0.15320192,-0.03332034,0.19233383,-0.018288722,0.30406472,-0.07562507,-0.13899752,-0.09229641,-0.59667414,0.04693492,-0.26502863,-0.3468699,0.71727866,-0.075761,0.30067712,0.06526876,0.020981712,-0.30017623,0.13707022,0.26282918,0.64310175,0.14719306,-0.24695201,-0.22335222,-0.13906178,0.20513694,-0.3993608,0.018428138,-0.28211424,0.022559008,-0.7995084,0.33924457,-0.35873723,-0.28986564,0.052604567,-0.2584141,-0.046312902,0.5585541,-0.2185313,-0.19562136,0.13431601,0.05205047,-0.20581412,-0.28649083,-0.4040205,0.023132866,-0.05460905,-0.08913828,-0.007852162,0.015765121,0.022926718,0.51798487,0.07734668,0.13117395,-0.074401625,0.11849751,-0.46560302,-0.10442662,0.088605165,0.5086559,0.047584828,-0.11049902,-0.18354861,-0.20981176,-0.24764216,-0.00043825168,-0.033736296,0.24443579,0.09357741,-0.3206171,0.7534438,-0.07142163,0.80248296,0.042428695,-0.30029815,0.2091373,0.6007642,0.13670874,0.04279675,-0.33764377,0.7863188,0.55877596,-0.2460959,-0.12689427,-0.627626,-0.06861388,0.0537746,-0.24493702,-0.16585243,-0.047645364,-0.6331542,-0.1840277,0.11938916,0.17961256,0.009424448,-0.10762954,0.14667809,0.14545536,0.3277423,0.23198676,-0.45005557,-0.016148666,0.36671373,0.20042464,0.015369415,0.16009493,-0.37742832,0.37092748,-0.51251394,0.113467135,-0.3158771,-0.07153437,-0.06064495,-0.16934215,0.16656382,0.03635079,0.31294912,-0.27281293,-0.5689512,-0.19616978,0.40260532,0.31727237,0.4211223,0.7349023,-0.24469687,-0.029443193,-0.03556567,0.5894326,0.906154,-0.35359907,-0.03832295,0.4852763,-0.2964048,-0.49534157,0.26711437,-0.24798019,0.2620721,-0.007671088,-0.3116278,-0.38820463,0.14044778,0.0073840404,-0.2011045,0.22223225,-0.6493593,-0.041036576,0.25178418,-0.21684782,-0.19643469,-0.2894723,-0.037403725,0.7853578,-0.2393073,-0.3795299,0.038059745,0.0071997386,-0.33821958,-0.37717924,0.039353907,-0.31987095,0.28132102,0.2425057,-0.20805109,0.046201535,0.28500846,-0.653365,0.14459786,0.1952749,-0.3250473,-0.010059531,-0.4048695,0.083281144,0.86742544,-0.2385401,0.14242509,-0.32833678,-0.65916675,-0.8601102,-0.24094994,0.34592023,0.13775924,-0.03682649,-0.29688993,-0.04305436,-0.10176088,-0.088193126,-0.04090378,-0.5568703,0.3987407,0.026072178,0.51981944,0.037888944,-1.0965236,0.25971967,0.13694558,-0.46824512,-0.5181202,0.35562667,-0.2427017,0.79642487,0.08452242,0.11685824,0.1491141,-0.7728706,0.25583562,-0.2924571,-0.105737574,-0.4115596,0.023894956,166 -373,0.37081882,-0.2416713,-0.35484973,-0.2191482,-0.0584359,0.06265217,-0.15755792,0.5414692,0.25250813,-0.5061602,-0.1730112,-0.12712422,0.052513875,0.2984798,-0.25894016,-0.6187159,0.032257568,-0.05806051,-0.36000416,0.5508677,-0.24370387,0.15958807,-0.044250816,0.30317995,0.15711845,0.20164408,0.3302577,0.100386664,0.033704612,-0.09683424,-0.12112577,0.0009485419,-0.70650685,0.25468987,-0.019179804,-0.18894969,-0.011293923,-0.2955832,-0.36295155,-0.82975143,0.50519234,-0.9263228,0.33925056,0.05701983,-0.2771316,0.25440377,0.2930152,0.21077047,-0.31648234,-0.11522753,0.047369443,-0.019650986,-0.005831442,-0.049880784,0.044624235,-0.4909311,-0.5717969,-0.10323051,-0.52548724,-0.18431707,-0.102787696,0.14397846,-0.3176873,-0.053866755,-0.046275824,0.7585535,-0.43958548,-0.19248271,0.4690384,-0.1692121,0.35259348,-0.71811736,-0.20403929,-0.016770478,0.047744386,0.061404604,-0.21891549,0.44381347,0.15350083,0.28740454,-0.095852375,-0.2416629,-0.13706788,-0.06859977,0.19327848,0.25208935,-0.16412485,-0.6068788,-0.0748275,-0.038886514,0.2969044,0.07068695,0.4196419,-0.23129265,-0.048255283,0.21848145,-0.2665813,0.37146464,0.73053586,-0.28402063,-0.1406097,0.29462606,0.45505288,-0.0053275055,-0.23229507,0.123713955,0.02767308,-0.4427199,-0.090751275,0.15717864,-0.32432494,0.58437383,-0.20311931,0.29598185,0.6465288,-0.24757001,0.18767396,0.011669687,0.04591623,-0.23151216,-0.3282452,-0.26768374,0.17127328,-0.46960464,-0.039062556,-0.3030284,0.83438885,0.27208248,-0.6860241,0.28956285,-0.35411122,0.24529065,-0.21965422,0.49762896,0.8326928,0.38457888,0.32665926,0.9314006,-0.4626824,-0.037736688,-0.07882819,-0.14368998,0.108560406,-0.21508662,0.11293929,-0.3351547,-0.06472662,0.147377,-0.14448869,-0.15991412,0.21601096,-0.52905625,-0.0344512,0.23881015,0.82522523,-0.22363798,-0.034656387,0.5902154,1.1111711,0.9263976,0.18611768,0.88896424,0.2596755,-0.16376278,0.19351755,-0.05910312,-0.7738886,0.2640403,0.44030285,0.7880908,0.2077904,0.060537823,-0.14299881,0.41160402,-0.5553031,0.1940111,-0.20307162,0.51004356,0.2545077,-0.098858155,-0.12351399,-0.0834645,-0.0148787545,0.0834412,-0.12905936,0.1997424,-0.12903354,0.1888974,-0.0069913054,1.4078857,-0.031460326,-0.075354524,0.097105466,0.58888024,0.20306465,-0.2687928,0.16335776,0.30262926,0.47057196,0.035660215,-0.69893944,0.09039601,-0.23162504,-0.56914365,-0.1493613,-0.39440608,-0.0067759496,-0.055494707,-0.5049407,-0.27694848,-0.10748865,-0.15083489,0.35346407,-2.9497492,-0.053509627,-0.17538705,0.31416008,-0.3136015,0.03173839,-0.017834114,-0.5684481,0.3991124,0.55122787,0.30467758,-0.7482368,0.25401208,0.3992493,-0.36644787,0.049961776,-0.6138304,0.05003004,-0.2466649,0.3987019,0.14558288,-0.004889648,0.24345803,0.26997516,0.44473726,0.3324496,0.21764433,0.18455637,0.33547238,-0.148451,0.33776638,-0.019616961,0.29686752,-0.12451148,-0.009338664,0.26118913,-0.5803984,0.06517552,-0.21217127,0.11604394,0.4694381,-0.3549371,-0.778066,-0.69662076,-0.10301131,1.173,-0.26617965,-0.8095733,0.2784533,-0.25250033,0.018280791,-0.21363041,0.6065641,-0.1542351,-0.020555321,-0.7300771,0.12304705,-0.24762143,0.15226687,0.013742424,-0.13906409,-0.37404123,0.89575386,-0.15385428,0.53015727,0.22522838,0.12772897,-0.38421482,-0.4003482,0.05200359,0.6883249,0.4965399,0.109331675,-0.11662994,-0.14870474,-0.32720676,-0.2563733,0.13738945,0.7433223,0.8227186,-0.08925853,0.23252709,0.37213498,-0.07986736,-0.06859826,-0.04018854,-0.38050863,-0.103466354,0.14589982,0.57277954,0.7002291,-0.23221086,0.3232985,-0.10194218,0.07766998,-0.17629065,-0.4696156,0.59589547,0.738554,-0.122509316,-0.2834636,0.57238525,0.41419512,-0.3108128,0.4159945,-0.6868844,-0.38577983,0.5996622,-0.21674393,-0.38419417,0.1646949,-0.39218807,0.122011594,-0.5589514,0.4890519,-0.30181065,-0.4650671,-0.55107987,-0.21564315,-3.4514081,0.09523574,-0.3075809,-0.20239814,-0.23362483,-0.26965714,0.32401153,-0.5203419,-0.46843603,0.2989211,0.13332418,0.6485764,0.12090715,0.10540502,-0.29561362,-0.05159669,-0.31666377,0.085416555,-0.08240301,0.22491892,0.043514635,-0.34788322,0.019879198,-0.028020045,-0.52071637,0.028597295,-0.28218928,-0.48490256,-0.23088227,-0.4745609,-0.3589148,0.5906277,-0.18664186,0.03813576,-0.22627302,-0.08902045,-0.29637071,0.3936991,0.09612655,0.17521264,-0.08963928,0.028559893,-0.05685445,-0.35842538,0.22623722,0.01629566,0.34515238,0.28709096,-0.10595727,0.11653549,0.52136505,0.43598768,-0.038982,0.6668005,0.528138,-0.08834129,0.3925619,-0.10439206,-0.12219355,-0.3956879,-0.29085508,0.18331246,-0.3438085,-0.35194317,-0.014992492,-0.42731944,-0.7360886,0.19119383,-0.063762985,0.3205635,0.004597085,0.12543541,0.45188278,-0.06503005,0.018731432,0.032834224,-0.08542888,-0.6637979,-0.18213756,-0.71948385,-0.30154034,0.310759,0.86632675,-0.22824433,-0.33423185,0.0087676495,-0.30817738,0.08678209,0.07984083,-0.19479708,-0.021921586,0.3486598,-0.04840463,-0.7508485,0.3944741,-0.12540576,-0.012134544,-0.6086974,0.10537829,0.27648503,-0.5889851,0.664245,0.30910015,0.10158216,-0.36820048,-0.5234708,-0.22362712,-0.16715169,-0.2589746,0.41450337,0.25649408,-0.7915605,0.40482596,0.19869652,-0.39139065,-0.590715,0.44842413,0.02515459,-0.21529722,-0.067978255,0.17129518,0.07179349,-0.036136042,-0.013870537,0.1929747,-0.46003166,0.12854603,0.23111215,-0.0040123886,0.4076123,0.00094764575,-0.075690866,-0.5263963,-0.118610814,-0.59962636,-0.07925582,0.09967176,-0.04346087,-0.041010145,0.1396663,0.07467199,0.42495182,-0.10526298,0.21831068,-0.005374619,-0.27378362,0.43981686,0.47716078,0.43510106,-0.419236,0.6651772,0.055645503,-0.13683793,-0.05002686,0.17144327,0.33912787,0.32007334,0.33690947,0.050735235,-0.16468832,0.33829874,0.85960835,0.10842063,0.54266655,0.1468011,-0.021399733,0.32432777,0.10549404,0.21307543,-0.027574737,-0.45159578,-0.10476344,-0.22606249,0.08515126,0.35193926,0.11133297,0.43727905,0.056264658,-0.3276632,-0.0052380604,0.03826799,-0.17476544,-1.2213131,0.29965228,0.085188106,0.859108,0.64187545,-0.14100412,-0.03569677,0.66035646,-0.12856193,0.10329205,0.3155856,0.057798214,-0.54507136,0.57774,-0.5617076,0.46458343,-0.0359536,-0.028512847,-0.1886138,0.21600798,0.2003604,0.5305892,-0.1914825,-0.012479986,-0.017501535,-0.26383477,0.2347983,-0.49077734,0.051160693,-0.5069292,-0.40695858,0.3856475,0.4619852,0.33059958,-0.12809882,-0.06723637,0.01898156,-0.08062249,0.14036009,-0.08623767,-0.13216993,-0.0046015424,-0.5872623,-0.41118294,0.43924254,-0.17580281,0.18834177,-0.0762905,-0.19170891,0.03703479,-0.18631724,-0.16092394,-0.027024228,-0.65684634,0.023206297,-0.12641083,-0.40826964,0.6282564,-0.3756867,0.1529517,0.26071522,-0.031440586,-0.27936524,-0.036938913,0.12116351,0.5294661,-0.3854652,-0.100282766,-0.64436615,-0.07497887,0.14368379,-0.23398171,0.12659125,-0.12131433,-0.04421065,-0.55527294,0.56200475,-0.0961091,-0.11980658,0.21993855,-0.34280962,-0.042321,0.6572299,-0.18977621,-0.07175163,0.12221204,-0.31686586,-0.2337983,-0.22519095,-0.26363567,0.2583229,0.05778679,0.07447118,-0.018885318,-0.27243134,0.047305975,0.26134083,0.03767654,0.14885156,0.3769243,0.06331792,-0.5220846,0.0013650188,0.14843509,0.52919096,0.23561546,-0.1780309,-0.33061847,-0.70435107,-0.3790954,0.07077335,-0.029079784,0.29955107,0.09874551,-0.3169126,0.7092823,-0.008583819,0.9744338,-0.013663839,-0.39819333,-0.10734582,0.56406873,-0.055409934,0.017947717,-0.18782718,0.5234536,0.52043796,0.0191289,-0.0024792936,-0.3706317,0.13398969,0.49106047,-0.035376187,-0.1521633,-0.09390212,-0.64217633,-0.23391281,0.24383488,0.2909171,0.13686393,-0.04527588,-0.051720295,0.15367219,0.007063557,0.3692593,-0.56781995,0.07314618,0.2587039,0.03519953,0.26571593,-0.042202268,-0.3685486,0.32305306,-0.5921733,0.104019985,-0.11642963,0.13220225,-0.11821837,-0.32821682,0.19530378,0.14361851,0.4789531,-0.3121048,-0.36136743,-0.17767255,0.6931223,0.10376774,0.32965747,0.48413748,-0.20746727,0.016913116,-0.007998846,0.7244652,1.1159238,-0.19049442,0.07235195,0.3020731,-0.50113374,-0.94683945,0.49073672,-0.30420548,0.17007487,0.020850578,-0.19597842,-0.60064095,0.22297724,0.37819904,-0.025388198,0.24789841,-0.6779042,-0.62454283,0.19358298,-0.260995,-0.28266695,-0.3784702,0.086762786,0.54055554,-0.32303166,0.0097177625,0.08809531,0.45321354,-0.11942095,-0.47981122,-0.055619784,-0.38723662,0.3557927,0.07338659,-0.29677898,-0.20417416,0.24198513,-0.33122402,0.23393893,-0.024519397,-0.320097,0.01694089,-0.10038503,0.04374179,0.83250535,-0.08861862,0.10109192,-0.65672123,-0.3822355,-0.73930496,-0.3269833,0.33549026,0.06267301,0.03303262,-0.6226315,-0.06581281,0.06772346,0.29328132,-0.17431195,-0.43472037,0.6230825,0.07500856,0.34065428,0.09891766,-0.58132297,0.0020745185,0.039135095,0.014628904,-0.39962605,0.51004905,-0.09445173,0.8545533,0.030148378,-0.010035396,0.023245003,-0.4170542,0.31260204,-0.21430115,-0.4650953,-0.43120858,0.23255385,172 -374,0.11616778,-0.06440176,-0.64161825,-0.11797232,-0.28026637,0.33912683,-0.37821,0.27302483,0.30081096,-0.43279597,0.026481075,-0.0986613,-0.2383233,0.292109,-0.073533915,-0.51941526,-0.04811636,0.27385628,-0.47926834,0.5708383,-0.33965918,0.31619126,0.09916126,0.35345683,-0.044265877,0.14962576,0.07985384,-0.121683665,-0.062432315,-0.070234954,-0.03969511,0.07342498,-0.39409986,0.33687374,-0.17655136,-0.32319853,0.008718201,-0.34968784,-0.3057414,-0.70825154,0.11350332,-0.7356431,0.6074134,-0.049174514,-0.2034633,0.28568524,0.36927217,0.21958734,-0.12860309,-0.011073415,0.19049893,-0.47844484,-0.5984933,-0.2689059,-0.61912405,-0.46097785,-0.7481347,-0.06288574,-0.5551875,-0.007645079,-0.24530588,0.27720475,-0.26397654,-0.066830106,-0.060669627,0.34431452,-0.39699072,0.106552266,0.17868294,-0.18803391,0.054099057,-0.78599733,-0.16307323,-0.047190774,0.20449774,0.14986534,-0.23806109,0.2991628,0.22148778,0.5474197,0.06922317,-0.30650637,-0.5389457,-0.17622158,0.095099345,0.50511557,-0.15805574,0.14590709,-0.15142791,-0.0019151525,0.4959251,0.21668999,0.05321714,-0.18022643,-0.070711605,-0.19290388,-0.31108356,0.299222,0.46716598,-0.45393944,-0.19680996,0.5120763,0.5989351,0.108645774,-0.33082506,0.0857165,-0.13034084,-0.45381263,-0.0792722,0.20518057,-0.21293092,0.42805284,-0.14849104,0.18791911,0.4969881,-0.12461145,-0.2813193,-0.019204766,0.098772235,0.10820176,-0.06747706,-0.19397298,0.3167476,-0.4470094,0.009409113,-0.25360632,0.5179711,-0.050013185,-0.6906828,0.41811106,-0.35915524,0.059051592,-0.03783359,0.66455775,0.92881095,0.8456175,0.2360669,0.9134745,-0.3041635,0.121818565,-0.18620427,-0.04059558,0.13607515,-0.1655064,0.22830813,-0.5811226,0.27571216,-0.023596104,-0.19753437,0.15193263,0.8480708,-0.40153483,-0.1697127,0.267723,0.65940714,-0.24537197,-0.23131032,0.609002,0.9414778,0.9360441,0.115666725,1.1323956,0.28144053,-0.22192052,-0.15690073,-0.3090396,-0.886463,0.18706849,0.2005448,0.1301594,0.37226677,0.18515491,0.0032699981,0.5013412,-0.19888727,-0.120672606,-0.106659256,0.22952679,0.08330999,-0.017218484,-0.24706647,-0.23867953,0.22263582,-0.0973023,0.25707674,0.35523823,-0.14777012,0.48147658,0.13890299,1.5353057,0.008789258,0.032387454,0.19297126,0.30178282,0.20651427,0.07232054,-0.13798049,0.4138624,0.15721011,-0.07203894,-0.4403918,0.067168914,-0.23169577,-0.5417535,-0.19091733,-0.28483626,-0.15782939,-0.20853376,-0.19439909,-0.39584216,-0.022225903,-0.65042555,0.40324762,-2.5735526,-0.16683218,-0.059316147,0.27263898,-0.19707121,-0.32030964,-0.34399325,-0.4742683,0.5291329,0.3277746,0.4427181,-0.4997521,0.50157356,0.58288234,-0.75225335,-0.27307636,-0.6342472,-0.08900321,-0.08464459,0.35038087,0.05427862,-0.40929148,-0.020680087,-0.007566222,0.3682163,-0.21616523,0.107418485,0.5417169,0.5024666,-0.13082863,0.43185446,-0.12174159,0.67800426,-0.39234,-0.27123836,0.4174688,-0.49519873,0.36904103,-0.25842637,0.16926447,0.42174223,-0.3820608,-0.78652364,-0.38685974,0.14847891,1.3462232,-0.27212048,-0.533624,0.017274955,-0.5709136,-0.18482454,-0.0028586942,0.5577995,-0.08740965,-0.18633296,-0.68509865,-0.09351765,0.0746306,0.40610737,-0.05097733,0.12183679,-0.42688605,0.5735682,-0.003619045,0.57761765,0.3985787,0.14801912,-0.39601168,-0.20613782,0.07039466,0.6582456,0.26679096,0.1879598,-0.3174258,-0.30473083,-0.118026495,-0.19468127,0.0064176535,0.4332955,0.43713698,-0.04099872,0.05453172,0.29190928,-0.2687687,-0.06457351,-0.33169514,-0.33315426,-0.1625768,0.25948876,0.4157036,0.6663641,0.10710246,0.4497873,0.019596547,0.28055492,-0.16579714,-0.5025174,0.4085929,0.85377306,-0.27364555,-0.23528218,0.5049117,0.3379868,-0.26900885,0.54838187,-0.60938406,-0.45219138,0.37551573,-0.15291739,-0.4136915,0.09399557,-0.444655,0.09209598,-0.78141254,0.11559907,-0.27248088,-0.37527934,-0.78848875,0.05974441,-2.8515365,0.088694975,-0.27077624,0.04541741,-0.1580756,-0.061450254,0.10275136,-0.34848404,-0.60639083,0.20530508,0.40531832,0.5676878,-0.08014868,-0.058021843,-0.34976822,-0.399172,-0.21670537,0.24026166,0.034538954,0.28739688,-0.17673005,-0.57228214,0.06913288,-0.3346165,-0.14614289,-0.20589772,-0.43326837,-0.14839077,-0.10779315,-0.47947794,-0.19054125,0.66864234,-0.7123407,-0.09022006,-0.4687138,0.032852728,0.20018141,0.27961117,-0.071394384,0.14990321,0.22694036,-0.18821414,0.0070082503,-0.30911806,0.27511835,-0.083960615,0.13721494,0.5929061,0.026021566,0.064692356,0.59304005,0.7855791,-0.13860874,1.0386394,0.48072365,-0.19648235,0.33197403,-0.19712362,-0.11172886,-0.6127315,-0.074613094,-0.04628327,-0.49185658,-0.4036209,0.044714663,-0.3808536,-0.9870173,0.60719365,0.19035745,0.03351287,-0.088178314,0.5037419,0.47076622,-0.2809773,0.11248773,-0.19974197,-0.23786573,-0.3355544,-0.4945035,-0.76649624,-0.567725,0.14557932,1.3480648,-0.22436635,-0.047849767,0.23326717,-0.26902384,0.010270553,0.3920944,0.28499725,0.23439516,0.43145594,0.19663699,-0.5778449,0.27846023,-0.12448426,0.020361636,-0.6060913,0.18603542,0.6214224,-0.66059226,0.39851183,0.44203624,-0.028505865,-0.054782987,-0.78321797,-0.14739223,0.04923457,-0.20175402,0.24475977,0.21167064,-0.7191226,0.59540176,0.1975796,-0.31415242,-0.8644227,0.2935062,-0.1583784,-0.16960444,-0.05755788,0.5027897,0.2409514,0.08605447,-0.29901028,0.08025285,-0.3548909,0.26926664,0.055327427,-0.13928778,0.31707764,-0.1728775,-0.18082653,-0.8635096,-0.06649121,-0.45318604,-0.35022917,0.434475,0.124191955,0.18417673,0.046858046,0.13143383,0.395346,-0.29820704,0.0699023,-0.3284835,-0.22902225,0.33777568,0.38092598,0.380349,-0.34501144,0.5501167,-0.13138798,-0.122497976,-0.15060735,-0.07926726,0.3917933,0.15877008,0.3887945,0.07810298,-0.24920307,0.07465637,0.9065508,0.17999163,0.24185577,0.035229802,-0.26374206,0.38363123,-0.0037747982,0.054654505,-0.23386979,-0.45363876,0.043289125,-0.35523087,0.23803727,0.51293147,0.1750573,0.64329064,-0.09955964,-0.009621032,0.0011399707,0.14686367,0.12894504,-0.6937214,0.2670408,0.12685224,0.66172683,0.5493862,0.17615394,0.14381196,0.7620215,-0.29794455,0.018268254,0.49857697,-0.14244045,-0.280508,0.47220582,-0.72918403,0.4376312,-0.08231485,-0.015054015,0.25734717,0.17784037,0.5056455,0.88219386,-0.18170215,0.044089723,0.13057624,-0.28496268,0.024185674,-0.28517765,-0.049301524,-0.3725249,-0.33818868,0.80393964,0.24824147,0.54437965,-0.27258715,0.0012140827,0.07359666,-0.31572682,0.32864004,-0.065675475,0.07370819,-0.14815484,-0.39858547,-0.030988285,0.5432153,0.24326842,0.12771727,0.22375228,-0.23683034,0.3191676,-0.15277384,-0.072333016,-0.03703147,-0.45241216,-0.0124360705,-0.22117145,-0.674765,0.66384506,-0.046987526,0.16219889,0.21122822,0.04855132,-0.26676932,0.3911536,0.108643614,0.71855104,0.058923695,-0.13637389,-0.10383619,-0.12904462,0.05133074,-0.3258071,0.073598996,-0.17945647,0.23909487,-0.8056282,0.5154888,-0.4054626,-0.41424948,0.16417912,-0.35460284,-0.04811734,0.49266523,-0.18923786,-0.08690482,0.07814606,-0.07984074,-0.25520042,-0.34882265,-0.4675716,0.14774969,-0.28006482,-0.17870787,-0.31365666,-0.23961838,-0.1438879,0.4104914,-0.042763453,-0.10205124,0.28237966,0.13624929,-0.42499593,0.14739323,0.24677218,0.51667863,-0.18619435,-0.087219715,-0.3062153,-0.2363455,-0.3283929,0.4798682,0.01512702,0.24064705,0.17298165,-0.5649971,0.81624573,-0.19398226,0.93226784,-0.030003969,-0.4065059,0.08268739,0.527578,0.009741707,0.1212516,-0.20049725,0.6755987,0.6359553,0.028626798,-0.12811793,-0.6084565,-0.0646613,0.3687633,-0.3233921,-0.08763484,-0.020924347,-0.7262214,-0.25931585,0.3536013,0.09342738,0.21230961,-0.1992772,0.2557114,0.0022685155,0.228883,0.23355396,-0.42429498,-0.04762539,0.43349475,0.22619972,-0.07851974,0.06053334,-0.28313008,0.26337793,-0.6400261,0.004498086,-0.2919213,0.00852641,-0.12907639,-0.0313827,0.35074195,0.19861484,0.22626127,-0.14719845,-0.30698887,-0.09454427,0.3694505,0.13914093,0.3908914,0.5924767,-0.33498308,-0.02586287,-0.022840206,0.48928216,1.1812763,-0.3216205,-0.04792828,0.34705886,-0.3372326,-0.57573545,0.31928036,-0.62710154,0.13093375,0.11728023,-0.37104416,-0.2291162,0.19538617,0.2271359,0.06043481,0.039407015,-0.4327886,-0.18170956,0.005963647,-0.41278172,-0.12579301,-0.1885967,-0.02994554,0.8023396,-0.2543085,-0.25132433,0.040191058,0.3799784,-0.18089554,-0.5367848,0.2838475,-0.44568178,0.30306008,0.21211973,-0.3318367,-0.00035619736,0.0031330246,-0.58802545,-0.028661106,0.46656248,-0.41049552,-0.03768814,-0.5172192,0.28231168,0.80111176,-0.022326767,0.3235406,-0.20698169,-0.46477297,-0.8476353,0.027634177,0.1365802,0.09089,-0.17479207,-0.56883585,0.0025412696,-0.28420123,-0.4728144,0.10004298,-0.6330885,0.5197304,0.21487941,0.23528707,-0.29642138,-0.8168139,0.0169554,-0.008007778,-0.25048235,-0.30840778,0.43127897,-0.18153973,1.0887219,0.17629974,-0.09192065,0.2121904,-0.852583,0.48148945,-0.35142142,-0.23295024,-0.5623713,-0.24221943,184 -375,0.4901624,-0.15408638,-0.36009842,-0.17197277,-0.22959264,0.06841845,0.040944446,0.6324415,0.2729105,-0.5267503,-0.21818483,-0.11840921,0.052618515,0.35957554,-0.1391281,-0.3871046,-0.10620469,0.21956849,-0.24886532,0.5469378,-0.33438805,0.14603145,-0.03883424,0.37437683,0.30013484,0.22997399,0.11193355,-0.10072769,-0.09788493,-0.026735736,-0.17954509,0.19568512,-0.24188852,0.22595334,-0.13893713,-0.20852332,-0.1634591,-0.4032095,-0.54215336,-0.6024162,0.29260358,-0.8114267,0.4415613,0.05440358,-0.30620885,0.22708273,0.12678306,0.13518612,-0.26505685,-0.13124852,0.111912645,-0.090593934,-0.11437803,-0.020150738,-0.255162,-0.39345565,-0.67472553,0.04180903,-0.34462887,-0.04972999,-0.2518272,0.112224944,-0.25357205,0.03445879,-0.033556927,0.640746,-0.46664667,0.005784946,0.21296777,-0.06417515,0.21295373,-0.5651616,-0.29475325,-0.11507309,0.06688338,0.0005538038,-0.15339363,0.21504009,0.18812343,0.53560865,0.038221035,-0.1662864,-0.42841062,0.0911634,0.18276688,0.3960307,-0.13381882,-0.4914675,-0.095492296,0.03390014,0.106141694,0.15691397,0.20549321,-0.17492998,-0.07860743,-0.001563615,-0.23150167,0.23593964,0.5409516,-0.3267137,-0.31675526,0.2789778,0.5268847,0.09012937,-0.09031495,0.12585507,0.063823715,-0.45257896,-0.127612,0.13220957,-0.3065037,0.4237546,-0.20942652,0.18602024,0.63359743,-0.064147435,0.023442533,0.123581044,0.12006029,-0.1686076,-0.3423273,-0.27870402,0.20841815,-0.36778498,0.10548238,-0.19009556,0.84757644,0.09175815,-0.6523534,0.35553154,-0.42718214,0.10939933,-0.1747709,0.58840907,0.75913346,0.39831728,0.31501994,0.7918028,-0.5381459,0.05104759,-0.06355082,-0.26068333,0.022631368,-0.33149812,0.057865627,-0.4948559,0.06750367,0.17942719,-0.13294338,0.08354299,0.4381786,-0.52165633,-0.12797494,0.22530816,0.83939266,-0.24127932,-0.18562688,0.7409074,1.0990674,1.1306822,-0.016168715,1.1306683,0.22604367,-0.251947,0.31844258,-0.41721103,-0.6102807,0.26780573,0.33047524,0.1649182,0.23862895,0.2079118,-0.06613269,0.43250656,-0.50288856,0.23065689,-0.21417579,0.17988972,0.22145705,0.003821837,-0.6239766,-0.271357,-0.070068516,-0.010177836,0.090542056,0.27078578,-0.23653051,0.43982217,-0.0448533,1.4967527,-0.08478771,0.073327705,0.14630143,0.57719034,0.11998731,-0.12380849,-0.01760319,0.19869767,0.38778922,0.008445693,-0.5220021,0.07983035,-0.25386587,-0.5226273,-0.16168118,-0.38233638,-0.014144421,0.012163149,-0.3461308,-0.26033238,-0.09662681,-0.464818,0.49168745,-2.861738,-0.08626156,-0.16997358,0.22170623,-0.32450086,-0.19726953,-0.11481058,-0.5025105,0.38589495,0.4113277,0.4544745,-0.6019088,0.30994597,0.37301686,-0.57565576,0.016227547,-0.62563807,-0.1392755,-0.0058573857,0.27902856,0.07882075,-0.042054687,0.008008054,0.0056685847,0.5433451,0.13929807,0.088743985,0.34514898,0.19642615,-0.06739468,0.40063688,0.010767804,0.42155287,-0.40409917,-0.15220536,0.33251157,-0.41579083,0.3402141,-0.122870855,0.09561723,0.43199316,-0.47377634,-0.8164524,-0.6658906,-0.27469888,1.1604671,-0.15181002,-0.41622752,0.27725604,-0.4905631,-0.14089386,-0.21299376,0.4138965,-0.039019644,-0.079206966,-0.7323019,0.034038033,-0.023382109,0.13392247,-0.06660309,-0.10497146,-0.36410183,0.80917877,-0.14460757,0.44511017,0.29906994,0.24801077,-0.21270457,-0.46110025,-0.09910832,0.86254823,0.34562683,0.22292754,-0.34918588,-0.14014748,-0.26371303,-0.016409626,0.13183047,0.40230063,0.68107444,-0.04792715,0.14645095,0.32643035,-0.1522971,0.022913763,-0.10716241,-0.2654869,-0.23803915,0.027347814,0.51236063,0.56219697,-0.18664908,0.45471165,-0.103040814,0.17512035,-0.20372984,-0.4498089,0.52513236,0.7816051,-0.20588997,-0.28493157,0.7070006,0.45535257,-0.239264,0.38395265,-0.59474134,-0.21576142,0.36421484,-0.20768784,-0.45170647,0.09439434,-0.3052986,0.14159729,-0.84442186,0.2024722,-0.12817322,-0.6258135,-0.67808914,-0.23001392,-3.1279018,0.1572849,-0.29487085,-0.1539763,-0.01733877,-0.15549162,0.13206184,-0.48296303,-0.5139778,0.11723036,0.12607644,0.5773039,-0.0059407055,0.11941451,-0.25853658,-0.17823134,-0.40558833,0.10292149,0.1302586,0.41992992,0.008613442,-0.4977487,0.18706551,-0.15616255,-0.330762,0.05049435,-0.5054253,-0.42895707,-0.16675122,-0.43073195,-0.2562436,0.6322052,-0.17933048,0.07508982,-0.25257155,0.09799502,-0.0467331,0.3507342,0.04041825,0.060080696,0.027434302,-0.16171576,-0.061622698,-0.21915627,0.31776902,0.022198277,0.28719422,0.53163016,-0.23752262,0.21308824,0.6482153,0.60138696,-0.1699277,0.9022705,0.5160402,-0.14510758,0.29986525,-0.08710242,-0.19754918,-0.6323532,-0.24671866,0.058527704,-0.4313822,-0.5613564,0.0045567728,-0.443427,-0.85624474,0.43297943,-0.091495454,0.25467104,0.025936173,0.16117702,0.534129,-0.21966311,-0.042731855,-0.09110014,-0.016511496,-0.51256853,-0.45773202,-0.57742226,-0.41609356,0.10931207,1.1832651,-0.119289406,-0.03678439,0.042082172,-0.33920184,-0.12062865,0.15957732,0.013248699,0.061246864,0.30220848,-0.060855594,-0.6303426,0.4937226,-0.02415136,-0.07458626,-0.48684484,0.15436853,0.4732018,-0.544654,0.63336354,0.2688866,0.009201725,-0.26660845,-0.5381391,-0.31762895,-0.20698296,-0.1611634,0.4423013,0.31052682,-0.7913098,0.41126126,0.27228004,-0.17995723,-0.68187344,0.29720405,-0.20845161,-0.12988926,-0.06897645,0.20295106,0.18290953,0.07157964,-0.040699024,0.17949335,-0.5009132,0.31596407,0.20695509,-0.07241493,0.47469348,-0.32879406,-0.029041896,-0.7110086,-0.10949645,-0.55834335,-0.18016061,0.19817649,0.2362751,0.04511704,0.17821583,0.1208729,0.30745682,-0.16892365,0.060890593,-0.03575284,-0.19963823,0.35879937,0.38819164,0.4382317,-0.40217176,0.5666925,-0.019611444,-0.0535466,-0.14622001,0.053737137,0.36818728,0.18763314,0.5054391,-0.024270449,-0.27779204,0.33113092,0.7603885,0.13016108,0.37980422,0.08066652,-0.21054378,0.32958835,0.03590416,0.12287096,-0.086141475,-0.4730343,0.06621856,-0.40699467,0.21038045,0.3276895,0.03354075,0.29827383,-0.10843585,-0.19408357,0.022268338,0.0629846,-0.073021926,-1.1555965,0.34706184,0.12981136,0.7842316,0.44704625,-0.14328308,0.024527239,0.8012987,-0.14588512,0.13883924,0.36680847,0.010829815,-0.49870104,0.5300259,-0.78699905,0.5657913,-0.1760305,-0.02386961,-0.059502963,0.08434786,0.42796776,0.7066363,-0.16857982,-0.051558454,-0.009762117,-0.3381284,0.21371116,-0.36347532,0.15345682,-0.65464103,-0.2559475,0.62726074,0.4865659,0.3892088,-0.16397677,-0.13876083,-0.011489208,-0.0491353,0.20882292,0.020755777,0.014091419,-0.10262631,-0.7448665,-0.20021142,0.39641237,-0.027155945,0.1256477,0.11075957,-0.2962316,0.10674051,-0.16338839,-0.0971811,-0.011127566,-0.6208415,-0.16231187,-0.032135185,-0.52604616,0.5287576,-0.2382917,0.23080473,0.16992855,0.03877973,-0.30733898,0.12207612,0.13619994,0.7382179,0.103829265,-0.006928146,-0.4212803,0.10095105,0.16521141,-0.16176929,-0.04569786,-0.12969811,-0.031900745,-0.53785,0.48916644,-0.11368593,-0.35154122,0.17216758,-0.17889588,0.106857695,0.6027976,-0.045444604,-0.17746632,-0.16282938,-0.12943214,-0.16390514,-0.117940806,-0.11167423,0.35811,0.013182678,-0.113330826,-0.08689667,-0.2065516,-0.0039057645,0.33285522,-0.0058413935,0.12316205,0.30120543,-0.012324593,-0.37638143,-0.020326529,0.024966117,0.48730135,0.1114353,-0.2199484,-0.22278509,-0.4243376,-0.38098165,0.037013438,-0.052004304,0.3643051,0.09367271,-0.2208227,0.7463408,-0.009044362,1.1286548,0.16025412,-0.26405627,0.05115175,0.55124,0.13955572,0.024842722,-0.28059798,0.7148548,0.5637342,-0.077413134,-0.1692132,-0.44504303,0.02994422,0.33439466,-0.16545229,-0.24470364,0.010583489,-0.74521226,-0.08683065,0.319109,0.19038823,0.2603285,0.001125506,0.07230624,0.27049378,0.049583912,0.33680254,-0.39700913,0.035016876,0.32880202,0.2873638,0.09061653,0.1732903,-0.4591309,0.29921764,-0.5923328,0.10107745,-0.0821533,0.14397492,-0.32574818,-0.29739183,0.23499136,0.120592274,0.39066792,-0.22876532,-0.3656569,-0.25648025,0.64819556,0.12668599,0.13363603,0.5340117,-0.24979319,-0.030824449,0.113447435,0.33828807,1.1407877,-0.23206301,-0.04976097,0.28436682,-0.30681768,-0.7733223,0.48169836,-0.33502308,0.22346577,0.020648832,-0.17976543,-0.5307463,0.24769759,0.31696066,-0.06358336,0.2127619,-0.46611255,-0.25561953,0.2318631,-0.23755255,-0.12597312,-0.22450288,0.06353139,0.3178773,-0.2528431,-0.35614982,0.12957491,0.40567896,-0.17490695,-0.4909628,0.034317903,-0.3519661,0.22225295,-0.014339762,-0.31921116,-0.18804535,-0.049538057,-0.3649709,0.06600394,0.13185073,-0.32889947,0.113428764,-0.4453195,0.008072809,0.79281455,-0.024984797,0.27223763,-0.5536226,-0.37406272,-0.99273056,-0.29820684,0.5714571,0.093151286,0.006826737,-0.63134444,-0.092040464,-0.015761668,-0.0034469196,-0.08337224,-0.45537874,0.52594304,0.20262916,0.1426083,0.027876165,-0.5922271,0.009905956,0.021345254,-0.15394258,-0.45168135,0.4384443,0.0095331585,0.8958092,0.03552956,0.122377574,0.16603382,-0.47277775,0.10097255,-0.17559426,-0.34677932,-0.5039584,-0.05156415,188 -376,0.44067076,-0.2867354,-0.42108968,-0.032553952,-0.27071783,0.2719391,-0.21279255,0.37211078,0.15197624,-0.46489683,-0.395,-0.22161663,-0.038664825,0.14889832,-0.28391603,-0.34154853,-0.10393156,0.1899713,-0.41658378,0.45047814,-0.29036567,0.20787366,-0.02878297,0.48403946,0.27676138,0.1442269,0.034516666,0.04199003,-0.31398386,-0.38551593,-0.11090804,0.31070468,-0.3828845,0.21071802,-0.2696798,-0.40052244,-0.009224777,-0.6500999,-0.3949528,-0.73063976,0.30696145,-1.051615,0.5890831,-0.011248665,-0.1920127,0.31864032,0.1453441,0.34653002,0.03848999,-0.07631711,0.14277768,-0.15098353,-0.101760976,-0.223024,-0.33940226,-0.4873102,-0.5675515,0.09489532,-0.26268187,-0.09468404,-0.16589041,0.11167097,-0.15985487,0.10048073,-0.044358026,0.41420126,-0.37119943,0.21908721,0.2856052,-0.15890822,0.12531504,-0.5768154,-0.18720032,-0.06734083,0.31150594,-0.15253818,-0.1734033,0.07082219,0.3477214,0.37021086,-0.057115834,-0.11171661,-0.22592369,-0.060574345,0.1465606,0.56363666,-0.06130003,-0.42393893,-0.18476275,0.0072069806,0.31773254,0.31746116,0.22864997,-0.09331112,-0.09062785,-0.14743821,-0.26679423,0.45890182,0.37067986,-0.23791802,-0.17902073,0.40938115,0.619462,0.1783797,-0.11612264,0.038270798,0.13391681,-0.49365523,-0.12312371,0.084861994,-0.24408509,0.49831796,-0.24122205,0.38572556,0.5471134,-0.13424301,0.13707525,0.10750355,0.091247395,-0.23650673,-0.27002618,-0.2869441,0.21894224,-0.45450002,0.18332942,-0.04218948,0.7222854,0.06417744,-0.61920124,0.26306438,-0.58399475,0.068064384,-0.05304503,0.34306335,0.5354102,0.37625772,0.28143615,0.5255137,-0.23047741,-0.04588722,-0.17638445,-0.31763604,-0.09619236,-0.18147297,-0.11674029,-0.5052809,0.08308269,0.022051182,-0.03941032,0.009825,0.60691583,-0.53020257,-0.15083352,0.061779764,0.86868256,-0.24946104,-0.1958841,0.95485973,0.93979686,0.863439,0.04374906,1.2129288,0.3170549,-0.13366474,-0.0027093377,-0.13311975,-0.58967596,0.31272417,0.42681408,-0.6709303,0.4813001,0.09662402,-0.05697625,0.2909035,-0.38177624,-0.037712988,-0.20386441,-0.068287544,0.15191105,-0.10839665,-0.4304783,-0.20973374,0.020965364,0.031132517,0.32398844,0.23202276,-0.10842036,0.4943282,0.06563638,1.5856807,-0.13013206,0.11265774,0.036736693,0.3766048,0.1898499,-0.1035391,-0.012478267,0.21228422,0.23899707,0.21321972,-0.4814717,0.051594127,-0.17796572,-0.3539669,-0.1799021,-0.18612845,-0.32989803,0.048257183,-0.33452383,-0.14817214,-0.23164536,-0.25842816,0.40394855,-2.5753329,-0.17295496,-0.19592847,0.35430267,-0.25510448,-0.51356953,-0.08893078,-0.4024842,0.32629162,0.24015503,0.3759529,-0.54847664,0.3207815,0.4428751,-0.62132317,-0.123082,-0.62944734,-0.05955003,-0.00438439,0.28166434,-0.074507356,-0.10504513,0.062459685,0.04369827,0.46244127,0.1394321,0.16701846,0.40923563,0.5217348,0.08331279,0.49136242,0.017982533,0.5147095,-0.23631202,-0.18846501,0.31188187,-0.30988318,0.5091139,-0.07131323,0.11073365,0.5850721,-0.46431947,-0.65724474,-0.6790916,-0.35880122,1.2440077,-0.08846785,-0.40805554,0.039843652,-0.271674,-0.5277348,-0.024462998,0.48041382,-0.22827807,-0.12807074,-0.81672484,-0.12454891,-0.16456416,0.09453797,-0.06386896,-0.032148786,-0.4474501,0.7179125,-0.042921636,0.38368696,0.2803002,0.12266726,-0.25361595,-0.45664096,-0.101988725,0.943729,0.53613526,0.18901458,-0.28979817,-0.1829543,-0.45443705,-0.019731658,0.07488843,0.59644586,0.50199217,-0.0069209463,0.13889064,0.28157747,0.05196809,0.08201601,-0.29823762,-0.2257422,-0.23706682,-0.09993507,0.6428742,0.55555755,-0.17030822,0.45566532,-0.11443073,0.30376413,-0.29222706,-0.44081298,0.432458,1.0864147,-0.1788521,-0.4140771,0.80549866,0.49276066,-0.3495315,0.26254985,-0.5189619,-0.15664406,0.35194868,-0.057589907,-0.5865358,0.14883839,-0.23721048,0.13391447,-0.9012313,0.25301367,-0.19569457,-0.43431142,-0.6709398,-0.03966115,-2.3132284,0.23861457,-0.17747097,-0.27460843,-0.20860867,-0.28384924,0.20133492,-0.5372126,-0.6372935,0.1446832,-0.09895897,0.7450005,-0.12037391,0.24337332,-0.15036047,-0.33011836,-0.2758823,0.14853108,0.16919793,0.38792345,-0.21563856,-0.36398402,0.07853565,-0.108479924,-0.3442996,0.05078902,-0.79039586,-0.52883047,-0.11510389,-0.39362925,-0.09754128,0.5000536,-0.41908413,0.021125296,-0.32993013,0.056207597,-0.15265967,0.23543571,0.061872907,0.044102937,0.16601494,-0.08029572,0.0033448935,-0.30980268,0.5309084,0.11728953,0.18062064,0.35144117,-0.16099747,0.3159898,0.21792562,0.62701553,-0.14752652,0.92920405,0.3098019,-0.15229198,0.22702566,-0.110194586,-0.3280631,-0.40609914,-0.114646144,0.027854562,-0.4205158,-0.49141145,-0.044475693,-0.34862214,-0.828847,0.5881155,0.041101534,0.17667499,-0.05997648,0.46030873,0.611251,-0.24826394,0.04297296,0.011691153,-0.16613398,-0.5567928,-0.39145735,-0.47925147,-0.44002303,0.121185265,0.88252014,-0.15278633,0.21658134,0.087868996,-0.3803649,-0.034093015,0.09515383,-0.08562805,0.019803772,0.5921745,-0.06897533,-0.6089495,0.42282656,-0.07041701,-0.21633135,-0.58498657,0.22624786,0.797723,-0.5857337,0.5094594,0.49023396,-0.035701018,-0.36500397,-0.41254684,-0.07980088,-0.06562626,-0.32975847,0.41645908,0.418557,-0.7310584,0.34852704,0.32035777,-0.09655393,-0.79460377,0.6819372,-0.024772745,-0.112867855,0.008751901,0.34114406,0.19194081,0.006860948,-0.22343244,0.19698095,-0.37178922,0.20180456,0.041579783,-0.15475324,0.09410877,-0.17594466,-0.1906641,-0.7544357,0.18974806,-0.47161976,-0.37734956,0.329459,0.039338607,0.11343921,0.28728566,0.21704042,0.35322025,-0.42914206,0.05551996,-0.09630233,-0.13264881,0.20678923,0.40791827,0.56300056,-0.49205413,0.5478744,0.009906505,-0.046322983,0.13354768,0.044524543,0.35965738,0.029697273,0.41398007,0.115504526,-0.20698349,0.19394949,0.7612896,0.13529056,0.44035226,0.250087,-0.122921444,0.17441705,0.012049331,0.27602425,-0.15960066,-0.64401656,0.006578765,-0.28438866,0.0676942,0.36572346,0.038860444,0.28922686,-0.15653434,-0.2854398,-0.004493394,0.10286869,0.07151641,-1.1378337,0.15479554,0.17263098,0.74871147,0.20770364,-0.10716409,0.05277707,0.7583335,-0.27031106,0.08203101,0.4625525,0.075199604,-0.4079079,0.44141123,-0.6080376,0.34358412,-0.11268048,-0.0041983095,-0.003946147,-0.1560674,0.43538326,0.7897574,-0.13899691,-0.017153561,-0.113534965,-0.36913964,0.19343375,-0.3263792,0.20823215,-0.557192,-0.18934672,0.65762675,0.61023223,0.4957525,-0.18999758,0.06539293,0.16737993,-0.11588267,0.12401182,0.3249142,0.16508682,-0.038405333,-0.6236041,-0.050866492,0.49686256,0.14333251,0.105923906,-0.00037607126,-0.30193737,0.2173637,-0.18533106,0.06699038,-0.013262819,-0.85099596,-0.1218034,-0.34850827,-0.68073225,0.19012532,0.0010056368,0.027151903,0.26963383,-0.073999226,-0.23444028,0.26492667,0.058021817,0.85564405,0.08276157,-0.04624151,-0.26520228,0.30475348,0.11264778,-0.26924226,-0.04221034,-0.15575147,0.20149219,-0.69829494,0.48670694,-0.06969463,-0.5061283,-0.0023853928,-0.014205851,0.10539607,0.5050749,-0.10088118,-0.0961444,0.092217304,-0.19103205,-0.30135706,-0.17343669,-0.15176606,0.17409118,0.30971447,-0.03945338,-0.14959994,-0.044513147,-0.33994183,0.40763682,0.07282655,0.47847095,0.5507241,-0.04608408,-0.31201077,-0.13233754,0.06171868,0.5602198,-0.11583935,-0.24638091,-0.26108077,-0.5439207,-0.20000133,0.47539642,-0.040492613,0.34233823,0.15423593,-0.14749773,0.73338145,-0.07756364,1.0971016,0.028102292,-0.37618718,0.07729288,0.48320618,-0.016705304,-0.15608673,-0.38897762,0.95195514,0.3971262,-0.10390724,-0.020311607,-0.43529144,0.06134745,0.097352795,-0.19793262,-0.042612348,-0.01172295,-0.5963497,-0.24089734,0.12617873,0.2703322,0.062066384,-0.13229072,0.22112727,0.37335616,-0.11970144,0.38715273,-0.46418062,-0.32080048,0.3495272,0.3214657,-0.063713156,0.08584922,-0.42689943,0.3254042,-0.5509264,0.02470529,-0.46124128,0.22275841,-0.21641532,-0.21782494,0.20950589,0.014523489,0.4483311,-0.42496577,-0.42372116,-0.24043001,0.3732476,0.20497169,0.13163938,0.3491905,-0.33406022,-0.07546306,0.09960572,0.5911043,1.0867653,-0.10645198,0.19768763,0.36472198,-0.28864077,-0.5023055,0.45084026,-0.45255312,0.27097526,0.115809694,-0.18633796,-0.47576287,0.27415898,0.3545445,0.14284328,-0.12651335,-0.6028367,-0.09647612,0.3120375,-0.2942862,-0.13117543,-0.24493997,-0.0056025004,0.43795466,-0.11095668,-0.39794272,-0.13533176,0.25153568,-0.24553509,-0.3331994,-0.06807045,-0.35208413,0.22872616,0.0007056296,-0.30296203,-0.18917899,-0.13541554,-0.45082444,0.08845222,0.13801776,-0.34424922,0.0038621575,-0.32783243,-0.0054678917,0.8345366,-0.30698824,0.12068065,-0.48076206,-0.41733137,-0.6882087,-0.36192805,0.103912555,0.07374246,0.13695562,-0.50677747,0.021503234,-0.28143463,-0.20635565,0.0283126,-0.44670072,0.4861786,0.26328656,0.44579792,-0.12217345,-0.74729794,0.24247469,-0.03020938,-0.33682895,-0.58621013,0.5783724,0.02523298,0.8269949,0.016438644,0.114312015,0.22384915,-0.5966443,-0.08207522,-0.10657432,-0.030792654,-0.89837587,0.10250045,191 -377,0.5011193,-0.09551532,-0.53383857,-0.1507596,-0.29079077,0.071847185,-0.09311599,0.38221225,0.115210995,-0.43045774,-0.11683901,-0.107908264,0.039215215,0.20515609,-0.18157579,-0.5570736,0.0201599,0.0072064954,-0.6027724,0.6795554,-0.3135379,0.2814125,0.020462159,0.21356884,0.3285656,0.34503332,0.20570514,-0.1949218,0.092153706,-0.11824681,-0.27249098,0.08578031,-0.6296807,0.13880718,-0.12089218,-0.32503203,0.0078061563,-0.24991243,-0.40427902,-0.7928952,0.3422448,-0.88583744,0.3671538,-0.059220247,-0.23056458,0.15841821,0.25846156,0.43195358,-0.24191669,-0.07689837,0.18488367,-0.15038015,-0.075601056,-0.032511424,-0.16307391,-0.67309695,-0.46844214,-0.110367835,-0.56699646,-0.1845058,-0.39715323,0.13103023,-0.3559051,-0.04725998,-0.30839333,0.40445367,-0.518489,0.019893693,0.14029671,-0.14810947,0.26165512,-0.68838173,-0.12328452,-0.08336854,0.21017973,0.06333923,-0.14669296,0.38397238,0.11775456,0.30337355,0.21651223,-0.044758897,-0.26522022,-0.24886556,0.165119,0.3885,-0.01010902,-0.29075435,-0.12656711,-0.117489636,0.12799422,0.31028047,-0.0065314663,-0.025213053,-0.027550042,0.010020561,-0.294322,0.4754401,0.6375152,-0.33165768,-0.2626622,0.31915063,0.6295037,0.20570004,-0.26251048,0.20932455,-0.041652977,-0.48481584,-0.24061005,0.29768437,-0.2142796,0.3825581,-0.13221548,0.27976125,0.61354864,-0.11008269,0.051022332,0.02229696,-0.039852757,-0.13951416,-0.21704651,-0.0748329,0.23619017,-0.53917253,0.3251726,-0.34455052,0.7138797,0.20432924,-0.4610576,0.31827313,-0.5632824,0.15708315,0.027662506,0.6778644,0.6267374,0.38172126,0.06382743,0.9424835,-0.36380976,0.06521077,-0.1620169,-0.2518658,-0.08073255,-0.024656432,0.22777387,-0.35752603,0.07856765,0.02591321,0.09442333,-0.13155164,0.32228732,-0.5513369,-0.15453245,0.0074588233,0.7338434,-0.23943917,0.022250405,0.8929649,0.9744669,0.9391365,0.09546188,0.8326211,0.12241733,-0.36476693,0.106218986,-0.2586632,-0.6115178,0.25092116,0.316701,0.45240608,0.18691835,0.06873468,-0.2923038,0.32381222,-0.39462495,0.014308759,-0.3204338,0.20820062,0.09626137,0.0041351146,-0.31347698,-0.21231349,-0.09536089,-0.0858316,0.10891525,0.18459845,-0.3693413,0.47236452,0.04769498,1.2462028,-0.102331564,0.027976189,0.18123499,0.5878801,0.18875064,-0.051165532,0.15319796,0.33838564,0.37516505,0.0378053,-0.6164358,0.14605117,-0.40772295,-0.45476314,-0.036048982,-0.45519474,-0.095837034,-0.08871355,-0.37516284,-0.1364847,-0.052209496,-0.40064985,0.4764095,-2.8497822,-0.069890514,-0.23089896,0.31684098,-0.29141554,-0.18930542,-0.10826902,-0.57269126,0.432568,0.3950757,0.53315324,-0.5009141,0.5644868,0.48646575,-0.5973334,0.19721672,-0.5464125,-0.10999409,0.027731359,0.45532158,-0.0035383275,0.023871748,-0.07174034,-0.109594055,0.61259425,0.070776395,0.13195534,0.31515387,0.29466605,-0.105483845,0.5333549,-0.016424308,0.4916422,-0.5260772,-0.02481384,0.3409337,-0.40858653,0.3440849,-0.16444476,0.16123901,0.6201884,-0.38805196,-0.8435813,-0.5626203,-0.31489605,1.1480266,-0.30383608,-0.44700477,0.3105302,-0.3435037,-0.07553095,-0.08396881,0.65241337,0.09513206,-0.0042777765,-0.5997311,0.0234108,-0.27981657,0.22823788,-0.05743611,0.11956114,-0.37983832,0.9089588,-0.14425683,0.53473467,-0.033666182,0.26100776,-0.18005134,-0.37932745,0.037704192,0.66421705,0.38259372,0.041226555,-0.223462,-0.31444338,-0.38427496,-0.18305214,0.072238125,0.8510623,0.6148162,-0.044435523,0.07264484,0.32113442,-0.13653268,0.045729198,-0.25313738,-0.23285496,-0.18612187,0.047195323,0.42165375,0.34701,0.100058325,0.42754146,0.03130866,0.39638105,-0.17287408,-0.49641055,0.3008979,0.6579791,-0.23907962,-0.22354738,0.42723507,0.61759746,-0.104907416,0.42762852,-0.72349685,-0.3715399,0.51387066,-0.098426275,-0.47774297,0.17247522,-0.31730026,0.08455836,-0.7661025,0.07789811,-0.497787,-0.88153166,-0.41646913,-0.1174136,-3.5991445,0.12879607,-0.2624093,-0.02518321,-0.1161719,-0.1797484,0.12501629,-0.5434879,-0.503019,0.09685638,0.13288546,0.72693837,-0.17168453,0.06995828,-0.30227038,-0.07975272,-0.42761257,0.3542729,0.17906792,0.2248089,-0.2933182,-0.2894592,-0.044326562,-0.026696125,-0.3325827,0.01123678,-0.55712163,-0.3855052,-0.13545704,-0.4290994,-0.2085867,0.56932104,-0.23987874,0.12356299,-0.115398206,0.10228747,-0.12889518,0.23505218,0.26769462,0.0885043,-0.012052758,-0.14234082,-0.065493904,-0.32487655,0.38537475,0.029514117,0.43885407,0.35967177,-0.16245201,0.2277955,0.538245,0.46615276,0.0827276,0.9270601,0.15480919,-0.17134908,0.3890961,-0.16885318,-0.2725387,-0.6734376,-0.13476267,-0.053514473,-0.36783418,-0.46307403,-0.15665162,-0.36750084,-0.89338857,0.42753935,0.10917406,0.31139907,0.034563158,0.31753,0.5259204,-0.09389088,-0.021804746,0.004391984,-0.074013695,-0.4900145,-0.29263654,-0.6158491,-0.45477778,-0.05000649,0.83386225,-0.2755897,-0.19040485,-0.035286922,-0.31275558,0.033121333,0.28200698,0.17253086,0.15017417,0.49506745,-0.2168289,-0.5805171,0.69008785,-0.21114312,-0.14605376,-0.5361784,0.27222344,0.468702,-0.6568937,0.3422436,0.20981929,0.033501,-0.33580777,-0.40819755,-0.12160729,-0.09775824,-0.22020952,0.28720134,0.023655133,-0.7699989,0.31188554,0.14946507,-0.027514389,-0.63282174,0.52717763,-0.13082056,-0.29614392,-0.006675337,0.3596707,0.15194641,0.002995375,-0.17580469,0.10612685,-0.3011412,0.29571444,0.22593464,-0.12288064,0.36767483,-0.20704754,-0.17527954,-0.64904106,0.11973088,-0.54605955,-0.03873522,0.40199128,0.060062427,-0.027117636,0.20119055,0.09281838,0.41424337,-0.07776187,0.11634822,-0.20466387,-0.2902484,0.5320724,0.44542816,0.29412013,-0.51258534,0.78866607,0.1326023,-0.1903959,0.15023525,0.1733391,0.3523791,-0.057691067,0.6623232,-0.11379854,-0.23181543,0.23284207,0.79571086,0.32351518,0.54294103,0.036130164,-0.052498493,0.2702844,-0.02868872,0.1314519,0.024724388,-0.6205005,0.06469953,-0.18830644,0.1237275,0.32165292,0.07988155,0.35539633,0.12507863,-0.056892842,-0.07238405,0.08544479,-0.15001789,-1.2259865,0.45312807,0.29405138,0.9434323,0.43804437,-0.0669001,-0.015439527,0.66738904,-0.1143384,0.14657035,0.3096427,0.16312441,-0.44756928,0.43122765,-0.7078686,0.59568346,-0.09462123,-0.029687628,0.043497622,-0.09463467,0.4591274,0.95210284,-0.34208918,-0.13058738,-0.04629632,-0.27902082,0.3475066,-0.21650255,-0.023599317,-0.5660578,-0.3503882,0.5265953,0.50907886,0.33267453,-0.02831325,-0.047772683,-0.16426834,0.048919022,0.3439982,-0.050368708,0.0631999,-0.23540388,-0.5275732,-0.33995214,0.4486766,-0.40433097,0.16928266,0.21008645,-0.3050974,0.30380353,0.1412383,0.06625135,-0.1813011,-0.65802926,0.058901787,-0.17990805,-0.4360493,0.44042692,-0.24312066,0.517924,0.30157796,-0.12252063,-0.2859802,0.17166607,0.16770013,0.6255803,-0.15237105,-0.17257118,-0.5380638,0.018090788,0.2355357,-0.33082598,0.0033238572,-0.18971917,0.012858803,-0.64986026,0.33908525,-0.22786248,-0.36132026,0.09553521,-0.20575976,-0.02930569,0.61918294,0.017773049,-0.17736952,-0.01680142,-0.028273629,-0.23617513,-0.19977058,-0.1940643,0.20530483,-0.0071292096,0.042583797,-0.12484909,-0.097410485,0.18724373,0.29716402,0.08737246,0.2727318,0.26771852,0.032148592,-0.37687254,-0.04280181,0.23523775,0.5922614,0.052292947,0.050358057,-0.017400865,-0.46112648,-0.42554542,0.09493132,-0.010681574,0.42228475,0.21950717,-0.2848568,0.6558963,-0.04049647,1.0866927,0.020596653,-0.33354875,0.08242826,0.6663448,0.07571676,-0.09932632,-0.26151562,0.89857113,0.5337493,-0.1332563,-0.04598638,-0.39270523,0.0648443,0.27569994,-0.09347705,-0.16506384,-0.012309198,-0.5063119,-0.11295346,0.13060321,0.26303476,0.22054185,-0.05863687,-0.16958995,0.28971452,0.027372675,0.3338347,-0.49732044,-0.25783333,0.29982796,0.009965797,-0.110181734,0.15190022,-0.3586678,0.35468057,-0.5723713,0.11846077,-0.22073242,0.093399204,-0.23874529,-0.23054682,0.2360398,-0.15796335,0.4738369,-0.19324203,-0.390377,-0.17195103,0.46136042,0.41782573,0.30432394,0.62587935,-0.14817664,0.04462225,0.062445097,0.5396115,0.83168477,-0.26736733,-0.051857892,0.29372123,-0.47679988,-0.6414606,0.2836677,-0.3703236,0.0648006,0.08723353,-0.23876552,-0.25824267,0.33656046,0.1663724,-0.10113295,0.1287437,-0.7682443,-0.21654,0.070586756,-0.3209372,-0.19040762,-0.42460862,0.32180884,0.57941216,-0.36480936,-0.19209199,0.11124388,0.1113712,-0.23375122,-0.6592317,0.09232431,-0.24668384,0.32471254,-0.012066296,-0.25695923,-0.08099318,0.17599566,-0.5496653,0.16942903,-0.039123837,-0.36662418,0.13566102,-0.28165528,0.037361868,0.76379794,-0.17443629,0.0031932315,-0.38984603,-0.49755603,-0.6998204,-0.5399362,0.3100349,0.30856532,-0.016345335,-0.47464767,-0.03898717,0.010596906,0.031427443,-0.1449322,-0.4758778,0.5176749,0.06347259,0.32795268,-0.011035157,-0.94414055,0.2858747,0.097998336,-0.08735102,-0.49030092,0.43741575,-0.15932663,0.6869263,0.19843309,0.1831679,0.14951055,-0.45729968,0.024999116,-0.23710105,-0.07199777,-0.6547507,0.117144294,192 -378,0.64284384,-0.31002122,-0.5544117,-0.029881245,-0.1371707,-0.057636257,-0.13617554,0.5821729,0.36746186,-0.3236275,-0.30321875,-0.034864906,0.06088838,0.043150574,-0.17966233,-0.47328216,-0.02569701,0.25732988,-0.58298457,0.6931666,-0.26773128,0.23489843,-0.014977957,0.49289793,0.22356583,0.13379464,-0.07401259,0.023314476,-0.030456258,-0.0038197595,0.030604009,0.39781666,-0.5703591,0.06466867,-0.3873364,-0.45629925,-0.3151935,-0.562797,-0.36894712,-0.92905045,0.30538368,-0.81883144,0.5051335,0.1403736,-0.41576734,0.12339834,-0.05866513,0.18005545,-0.3007297,-0.08019761,0.12068604,0.02298018,-0.07264735,-0.05320635,0.0046532876,-0.14529805,-0.63095444,0.06118593,-0.48258847,0.15405263,-0.19613358,0.09371253,-0.339873,-0.08397488,-0.031673737,0.7184784,-0.31343335,-0.08267216,0.16475494,0.0035652858,0.32465753,-0.5871355,-0.22792812,-0.11084355,0.3920299,-0.18080655,-0.40603837,0.12908173,0.22650771,0.59455854,0.021929907,-0.26052758,-0.28914103,0.24079014,-0.04738472,0.4418374,-0.020031989,-0.576873,-0.1807158,-0.008267845,0.36438352,0.14055434,0.24260895,-0.12397898,-0.18128507,0.0073979413,0.019378934,0.43700913,0.5792602,-0.21731398,-0.24417482,0.359476,0.62577313,0.17037375,-0.02920961,0.08223865,0.045488495,-0.58629817,-0.18504085,0.07814896,-0.29927447,0.49796304,-0.23658077,0.34840816,0.5205219,-0.09230246,-0.16886842,0.33494517,0.06822563,-0.16418801,-0.07821947,-0.31715742,0.18701823,-0.47891822,0.118273206,-0.31653807,0.59215677,0.18295558,-0.7805168,0.2659929,-0.5746976,0.28567824,-0.0049207364,0.61228734,1.0792954,0.40838486,0.4549136,0.6945406,-0.28844577,-0.014593393,0.07610166,-0.24038479,0.1485288,-0.29764146,0.021870375,-0.5835196,-0.23824517,-0.05849317,-0.1937481,0.091226764,0.4489269,-0.6788234,-0.27125522,0.07853091,0.6026074,-0.19304223,-0.13281152,1.0830712,1.0090868,0.9964551,0.10668813,1.1433417,0.19877775,-0.2875493,0.26247698,-0.2649653,-0.74087995,0.38122773,0.1838805,-0.20956203,0.39730832,-0.04760949,-0.11383198,0.4098987,-0.5669138,0.025931848,-0.11426945,0.017923037,-0.06622107,-0.060958248,-0.42414775,-0.4066408,-0.2232881,0.19714525,0.20700553,0.26500207,-0.284597,0.42422003,-0.038731392,1.3301029,-0.07642005,-0.05849869,-0.03739222,0.43076023,0.23216756,-0.22741096,-0.32029918,0.16818665,0.3354118,0.11833397,-0.6026243,0.14273332,-0.109776735,-0.2182483,-0.11914333,-0.34047678,-0.022709796,-0.09915809,-0.38663676,-0.2448835,-0.32197443,-0.5491422,0.3201593,-2.607596,-0.2887657,0.041487355,0.42791325,-0.18881114,-0.30032846,-0.28518134,-0.5854937,0.37873858,0.3067758,0.48169222,-0.8278305,0.3245304,0.30263194,-0.65786994,-0.052990615,-0.7321641,-0.15397552,0.06440109,0.24689409,0.052535288,-0.13390683,0.10344188,0.23267838,0.378505,0.15038708,0.12592827,0.3924219,0.46393278,-0.07608463,0.29565546,0.062231857,0.49168256,-0.32145828,-0.15491973,0.4226908,-0.44563255,0.1648867,-0.19686754,0.09331413,0.5067927,-0.6123436,-0.94074976,-0.6548113,0.110627785,1.2454349,-0.055333458,-0.42775854,0.078561924,-0.61218494,-0.12954403,-0.116421685,0.7370474,-0.14643672,-0.18716624,-0.8970936,-0.1587832,0.029799035,0.114833795,-0.034043003,0.01609146,-0.5092314,0.5553519,-0.011698701,0.5058703,0.2733279,0.21501163,-0.3675366,-0.63263625,0.24847934,1.0200925,0.41487598,0.15777385,-0.2513359,-0.11660136,-0.41529694,0.09970717,0.043448143,0.55392927,0.7304117,-0.19243346,0.24460427,0.37097147,0.048186872,0.13794754,-0.17099537,-0.24294293,-0.3465571,0.047698047,0.6089447,0.8766066,-0.2541108,0.40281853,-0.014475652,0.10605979,-0.13980943,-0.40781572,0.7135206,1.2138633,-0.21932021,-0.24406992,0.5331082,0.41771927,-0.28092098,0.5668027,-0.568484,-0.40202454,0.31515637,-0.16686676,-0.34786487,0.24691619,-0.3843839,0.3466368,-0.97315323,0.32607752,-0.22491945,-0.34005123,-0.622004,0.1148877,-2.3666065,0.15319808,-0.17161004,-0.10042262,-0.27152762,-0.33457312,0.10370178,-0.5505527,-0.7189618,0.18333904,0.06363641,0.82892895,-0.08018977,0.092206374,-0.15509507,-0.49764803,-0.40464023,0.049448628,0.26970926,0.5291843,0.12085791,-0.43003017,-0.019565748,-0.16186066,-0.2899063,-0.0696476,-0.59742814,-0.6531598,-0.09677996,-0.6525523,-0.31490874,0.5892276,-0.13178487,0.06310474,-0.20648344,-0.069688715,0.08136548,0.40582266,-0.0039273626,0.036233332,0.004635499,-0.11730765,0.20899126,-0.11359068,0.25020605,-0.03854068,0.21339305,0.42074013,-0.250533,0.45691457,0.5933503,0.75629586,-0.23028927,0.9007905,0.6496642,-0.026806584,0.22332154,-0.16919753,-0.39392498,-0.52425534,-0.10761862,-0.07784957,-0.4360078,-0.25648996,0.019016977,-0.44488683,-0.97671175,0.4018252,-0.05169463,0.32808343,0.1096613,0.18452881,0.70983505,-0.14320767,0.06637545,-0.21279417,-0.21776721,-0.44378588,-0.10494178,-0.6276034,-0.45491934,0.116086625,0.99739903,-0.235827,0.111760564,0.28446448,-0.1439167,0.05439694,0.18532327,-0.025534542,0.08805221,0.49845362,0.008964954,-0.5674096,0.34185812,0.045119636,-0.18824148,-0.5319578,0.26616198,0.46447113,-0.6385932,0.39375526,0.37653837,-0.08389961,-0.18048373,-0.48937845,-0.05783073,-0.10416156,-0.05368639,0.4816208,0.39152366,-0.68391323,0.44606075,0.28994745,-0.09983552,-0.8372397,0.50070924,-0.008852045,-0.2723527,-0.1912122,0.322193,0.027236512,0.08128236,-0.29955626,0.21957955,-0.32104418,0.29359373,0.11316749,-0.2829588,0.25208044,-0.19631456,-0.09794403,-0.63510424,0.085591555,-0.7566257,-0.25133458,0.2764179,0.24781673,0.06716221,0.029917931,0.13554537,0.36581522,-0.25809637,0.037461698,-0.070905074,-0.2717573,0.32669693,0.426673,0.55897474,-0.33743474,0.5821923,0.051212844,-0.16155215,-0.0068697757,0.01632489,0.35748276,0.025073767,0.3416144,0.17521122,-0.18879439,0.25292078,0.65405905,0.12773475,0.41804674,-0.02620967,-0.05932956,0.10225745,0.13392678,0.3847901,-0.23729464,-0.4400108,0.013428637,-0.38181168,0.13129136,0.47254896,0.2248424,0.1329007,-0.06583994,-0.36786518,-0.06502176,0.19802412,0.031664226,-1.4968796,0.34542328,0.31630605,0.88844454,0.47792265,-0.14807269,0.05661336,0.66320133,-0.17530979,0.16637349,0.32009035,0.060527027,-0.5822874,0.51037097,-0.6851748,0.52579486,-0.04776028,0.040805165,-0.03860895,-0.080407016,0.37120575,0.6923121,-0.18966642,0.11888271,-0.08215802,-0.2461609,0.1521984,-0.40104744,0.07955409,-0.6905555,-0.13604568,0.82236946,0.4373164,0.33058304,-0.29991674,0.13002738,0.011921031,-0.16510169,0.21557109,0.06781795,0.06267937,-0.101219244,-0.74962044,-0.10453914,0.38383484,-0.12596536,0.11731713,-0.023289025,-0.2440881,0.04295116,-0.15309219,-0.038217824,-0.19230983,-0.7746505,-0.21414694,-0.4238841,-0.26496667,0.678815,-0.066749886,0.23769473,0.33117512,0.17725272,-0.35804322,0.16910617,0.021155996,0.6623584,0.022355411,-0.14566132,-0.37700143,0.32836086,0.24213901,-0.23802915,-0.27502522,-0.20064318,0.17559123,-0.3264935,0.53907454,0.11869997,-0.38176575,0.07058801,-0.06571938,0.051861662,0.5475376,-0.19820942,-0.17163788,0.0112299835,-0.22051294,-0.3337811,-0.28321,-0.12491895,0.29967138,0.34698704,-0.12198399,-0.16274402,-0.013380106,-0.08903499,0.5174797,0.12481165,0.3898048,0.47503906,0.1258761,-0.40555805,-0.018817263,0.2868077,0.5282044,0.062428497,-0.1897356,-0.56309,-0.43571642,-0.44361168,0.029863775,-0.120343074,0.24612017,0.10866041,-0.04029184,0.6691275,0.18486086,1.1564378,-0.000751621,-0.3216726,0.10043276,0.48206738,-0.08822514,-0.237008,-0.35719398,0.8970044,0.42520973,-0.19363417,0.013977866,-0.2862641,-0.08446993,0.27710536,-0.12944847,-0.14873764,-0.082195826,-0.6807232,-0.29363364,0.23560289,0.3815009,0.14046016,-0.17194441,0.05759766,0.24472143,-0.10508567,0.09489048,-0.49925286,-0.15354553,0.32972455,0.23566552,-0.02482714,0.03075753,-0.55895585,0.2957912,-0.47954348,-0.01961368,-0.14925154,0.25323984,-0.13435192,-0.47250083,0.2756774,0.1645781,0.32329568,-0.3766549,-0.42844105,-0.40379456,0.5046176,0.13932993,0.06008062,0.4650429,-0.37634262,-0.011626227,0.15549226,0.5153533,1.0810956,-0.051069677,-0.05779508,0.2682065,-0.29084417,-0.6549805,0.26790234,-0.33137655,0.3570374,-0.11948771,-0.20997126,-0.65578884,0.23157136,0.12634543,0.22535859,0.03361353,-0.64663124,-0.32908157,0.2723517,-0.24479191,-0.04443678,-0.45545313,-0.07838363,0.5299615,-0.19186306,-0.30031604,0.124381356,0.13728948,-0.08935552,-0.55765855,-0.066160776,-0.40253633,0.11174076,-0.00324483,-0.38295978,-0.16857198,0.011181082,-0.5135624,0.24778093,0.1576686,-0.37991673,0.09902501,-0.42976263,-0.014808704,1.0814664,-0.25291857,0.4030462,-0.29128405,-0.51238656,-0.81730664,-0.24201335,0.3999785,0.08115093,-0.0358474,-0.8913545,0.035344116,-0.09465783,-0.122219376,-0.09457238,-0.37489128,0.51250875,0.15952085,0.29545805,-0.08253115,-0.7911628,0.122819886,0.06406554,-0.30195194,-0.56125516,0.51620424,0.25031576,0.8761407,0.18785326,0.24222064,0.34322444,-0.5989937,-0.14952108,-0.11885316,-0.08420675,-0.5151519,-0.0049023586,197 -379,0.46491584,-0.26387227,-0.5943875,-0.1324882,-0.009291193,0.26885563,-0.19582209,0.6754731,0.19532333,-0.4154107,-0.16083105,-0.02774237,-0.02621301,0.42329553,-0.074600495,-0.44269738,0.07428326,0.21202967,-0.42337567,0.5410641,-0.34866124,0.28953594,-0.24439968,0.45176336,0.08490147,0.23783164,-0.007229815,-0.067302145,-0.35359457,-0.018848602,0.08754309,0.346781,-0.34815952,0.15853642,-0.24181667,-0.29170713,-0.037863415,-0.36393553,-0.4816885,-0.69715816,0.23496887,-0.77293617,0.54450804,-0.068589166,-0.2599357,0.28067306,0.0010358521,0.2312911,-0.35091776,0.057896823,0.16543306,-0.14669214,-0.05651616,-0.26758903,-0.21412008,-0.5631587,-0.51199704,-0.04565962,-0.38340807,-0.018857727,-0.14649351,0.02134817,-0.23639716,-0.07209699,0.008003141,0.28538018,-0.5376884,-0.014542499,0.18414687,-0.10167067,0.047827933,-0.6358078,-0.26608944,-0.19508867,0.47955894,-0.14513266,-0.14293459,0.31946972,0.20760158,0.52814627,-0.23792887,-0.0826332,-0.4376189,0.008623004,0.10565543,0.5432071,-0.20525517,-0.6155882,-0.029749239,-0.07475984,0.34907538,-0.03907768,0.13073634,-0.028090715,-0.10492623,-0.024873082,-0.13910086,0.2672186,0.46991253,-0.22483368,-0.2106043,0.42351967,0.54828054,0.27638873,-0.2325566,-0.07708477,0.036797386,-0.49123505,-0.12397295,0.0046821237,-0.21950212,0.48420194,-0.13410859,0.20344687,0.58958375,-0.09069722,0.042824812,0.080249615,0.21039067,0.02897951,0.0048030443,-0.43703756,0.20825884,-0.26386783,0.03309395,-0.09428506,0.42150787,0.2931622,-0.5847369,0.35136825,-0.43365064,0.023790106,-0.063449465,0.4285898,0.68425554,0.4690611,0.24378999,0.5856897,-0.24760342,0.081857644,0.11521666,-0.12929474,0.12976143,-0.3492956,-0.11612252,-0.55213493,0.23750904,0.026639441,-0.13133316,0.25915083,0.49783066,-0.4622015,-0.17916194,0.1850165,0.8134985,-0.23597951,-0.0025753889,0.66257423,0.91400397,0.85290784,-0.05147744,1.1171032,0.30410329,-0.44734675,0.18732524,-0.26249197,-0.84763306,0.24068686,0.3055305,-0.44745424,0.46495348,0.13026802,0.023629993,0.38845733,-0.4741277,0.11058475,-0.11629324,-0.025115345,0.16628316,-0.18459046,-0.43794551,-0.25787783,-0.14394067,-0.04816827,0.18378465,0.37362668,-0.19951646,0.4371455,-0.05697107,1.6296198,0.027163556,-0.0064496747,-0.029044759,0.61248934,0.2186456,-0.040766664,-0.09215163,0.49562666,0.39375976,-0.014630641,-0.5274291,0.14762399,-0.28056246,-0.43653926,-0.2345482,-0.30158225,-0.12510881,0.031478617,-0.42502993,-0.11276227,0.01000739,-0.09827906,0.31951275,-2.5883586,-0.1663163,-0.06668461,0.49028298,-0.2505565,-0.26671687,-0.41356444,-0.37216622,0.37621522,0.26166287,0.5077091,-0.6086043,0.33259943,0.30255857,-0.52704275,-0.0773594,-0.45579964,-0.120025806,-0.028987663,0.28586024,-0.04513421,-0.04596289,0.28777042,0.2562264,0.38554,-0.05607484,0.12542579,0.33071646,0.42650145,0.11771564,0.31062528,-0.13392825,0.6449965,-0.3984315,-0.15555862,0.26191905,-0.5713468,0.3240829,-0.10328513,0.1296154,0.4713869,-0.34503683,-0.88996345,-0.5302912,0.11895909,1.1909479,-0.19885087,-0.44051626,0.13613942,-0.6433183,-0.35001746,-0.14166358,0.4268538,-0.22638574,-0.12904878,-0.8747974,-0.11905048,0.021959549,0.16772954,-0.0050140065,0.10458553,-0.3943608,0.63493097,0.035131812,0.5469869,0.27448395,0.097346716,-0.20551959,-0.3869714,0.0066252947,0.72522694,0.33543512,0.19893281,-0.19299293,-0.10161585,-0.4044604,0.08613702,0.0588784,0.5333197,0.44905934,-0.10897745,0.06524153,0.11281692,-1.7738768e-05,0.1466625,-0.23374823,-0.2528918,-0.16989031,0.2591359,0.49994633,0.61284363,-0.29651445,0.36943313,-0.07965156,0.16080485,-0.16982944,-0.46854264,0.5642022,0.9496235,-0.25069514,-0.21719302,0.47857258,0.52802044,-0.393845,0.39061055,-0.63559216,-0.3829264,0.4027892,-0.13921222,-0.3223862,0.24078205,-0.2964594,0.3497743,-0.9218315,0.25768453,-0.2044553,-0.28165323,-0.7506889,-0.036969747,-2.727497,-0.018878493,-0.0188378,-0.22060879,-0.18849584,-0.05048575,0.21094558,-0.6955843,-0.6540341,0.23073049,0.026147025,0.6768132,-0.011560676,0.090604134,-0.32048368,-0.42427894,-0.2549384,0.13969354,0.14529872,0.45228037,0.08895772,-0.6602174,-0.13218214,-0.18311681,-0.20345218,-0.009054084,-0.6137822,-0.35836378,-0.14007692,-0.545108,-0.10799122,0.58532655,-0.34071556,-0.009314626,-0.15837385,0.08283321,-0.2654074,0.2128112,0.007490603,0.12945722,0.05649985,-0.21976995,0.22643828,-0.23812404,0.25823554,0.058368046,0.19978602,0.37119165,-0.037922043,0.051812414,0.5665821,0.75424325,-0.106438234,0.8374669,0.6066104,-0.16057634,0.30158493,-0.3625256,-0.23879221,-0.4239032,-0.35312313,0.075409435,-0.4499288,-0.57422626,-0.040546205,-0.54440904,-0.8433854,0.45001987,-0.1332618,0.04133847,0.12191306,0.28245038,0.54818565,-0.26862794,0.1271592,-0.017632319,-0.19396482,-0.47232026,-0.270135,-0.5175223,-0.38161707,0.15069933,1.0927011,-0.2180274,0.13399467,0.08718952,-0.3978042,0.06074788,0.25801796,-0.03381902,0.045514245,0.46098915,-0.042791512,-0.54158866,0.39248544,-0.14071216,-0.15505879,-0.5529033,-0.013985889,0.48956046,-0.6843578,0.6298734,0.41030452,-0.21947196,-0.18375613,-0.45180973,-0.27640226,-0.03819593,-0.14495595,0.26291475,0.22381942,-0.62089187,0.36717063,0.31951553,-0.4876752,-0.60470253,0.5488407,-0.104019694,-0.20685025,-0.04287937,0.27855903,0.09875362,0.027988832,-0.39874297,0.25251547,-0.43322897,0.25482622,0.1953499,-0.12532695,0.31599972,-0.21794124,-0.041389603,-0.87360615,0.03120814,-0.42443737,-0.23915784,0.46487015,0.11890153,0.2964439,-0.009534265,0.18324487,0.32492462,-0.5611528,0.08781604,-0.11224194,-0.29967305,0.35560015,0.25723884,0.5218215,-0.40230703,0.53298736,-0.018430991,-0.12634145,0.02939145,0.05873084,0.35480767,0.1716814,0.49057722,0.13769491,-0.27590814,0.13859177,0.99093294,0.301256,0.31369233,0.12069322,-0.31109452,0.21471667,0.11633048,0.04129162,-0.10875385,-0.36986503,-0.059222274,-0.18536527,0.19210719,0.32941467,0.13595863,0.29263785,-0.16657117,-0.29512623,0.035561185,0.2384918,0.15655454,-1.173424,0.35213643,0.23210709,0.8509796,0.2473499,0.12409478,0.119406715,0.61182433,-0.14999774,0.10377876,0.4226036,-0.24697253,-0.57781976,0.47946948,-0.57490236,0.46863458,0.018880803,0.034841266,0.13480033,-0.07200081,0.50195426,0.7242924,-0.097187154,0.08066661,0.23496795,-0.4082702,0.14975119,-0.3128149,0.012805308,-0.6186075,-0.15272783,0.593468,0.4953876,0.39017388,-0.1991676,0.07573136,0.048785966,-0.13692448,0.09362228,0.21233353,0.24911138,-0.07676879,-0.73143244,-0.02154897,0.4336789,0.089172676,0.08979108,0.06852107,-0.29799607,0.42601183,-0.18679908,0.16620779,-0.113221996,-0.65909576,-0.035882678,-0.42739138,-0.4220498,0.59587413,0.1058223,0.31671312,0.3096512,0.04683721,-0.29287115,0.5394308,-0.07900826,0.79805326,-0.082779594,-0.23514886,-0.39575619,0.16729619,0.25922728,-0.18423994,0.0509293,-0.2761405,0.11824023,-0.2862821,0.49597073,-0.027932491,-0.07272524,-0.084531255,-0.19427915,0.1251141,0.47558424,-0.20956247,-0.14902769,-0.105922535,-0.031325746,-0.39578262,-0.25660688,-0.22076099,0.19415657,0.27941033,0.0031303423,-0.2518978,-0.09330112,-0.021986725,0.505554,-0.0150604835,0.3128717,0.5669641,0.12655197,-0.18407238,-0.08592953,0.229527,0.47712436,-0.029328793,-0.12183307,-0.51812786,-0.54816383,-0.41098848,0.25890106,-0.19562718,0.36002955,0.14407666,-0.25055107,0.5490484,-0.16412298,1.0118576,0.008994303,-0.30648497,0.08911628,0.61605495,-0.04856362,-0.036709916,-0.33381197,0.8257455,0.49873605,-0.044193126,-0.057952147,-0.32905215,-0.015869392,0.084318556,-0.31139836,-0.17789862,-0.01053094,-0.64721256,-0.2933147,0.24868998,0.28692552,0.34846362,-0.16625486,0.24496253,0.11350836,0.16700263,0.10793022,-0.47637388,-0.33270547,0.3228526,0.21715851,-0.015263162,0.010568644,-0.34826496,0.29754183,-0.36547777,-0.055568986,-0.2630345,0.11285133,-0.20859398,-0.46232897,0.19491151,0.231596,0.23043452,-0.45435596,-0.26152816,-0.23330066,0.4326949,0.12561947,0.17054805,0.29151502,-0.20731105,0.05318997,0.12987503,0.54651994,0.7880225,-0.29510683,0.018265655,0.462236,-0.39698124,-0.6786703,0.36952275,-0.4422247,0.39141324,-0.18169191,-0.25926343,-0.8466255,0.37394568,0.24673684,-0.01718338,-0.117894635,-0.51852053,-0.19706705,0.2483465,-0.33758405,-0.20296003,-0.38640496,-0.075968444,0.545252,-0.28747112,-0.31006712,0.1239293,0.30634513,-0.2834815,-0.46124277,-0.05565656,-0.4740942,0.28781128,0.16634242,-0.39349514,-0.18628049,-0.012572874,-0.44538096,0.32826814,0.26849315,-0.4322752,-0.0008475355,-0.48119733,-0.01189171,0.8693952,-0.27316535,0.22592047,-0.36726674,-0.30690327,-0.98427063,-0.30073896,0.5612298,0.19570832,-0.100168966,-0.7238235,0.14792879,-0.124268614,-0.24358042,-0.15155533,-0.2987865,0.42429218,0.0844928,0.25099865,-0.04515499,-0.7280547,0.09397851,0.09062575,-0.330543,-0.48147553,0.43285164,-0.10933652,1.1178528,0.013911052,0.17896639,0.35029736,-0.4304438,-0.19420566,-0.16928266,0.008798874,-0.53970796,0.057305403,199 -380,0.3845907,-0.15002479,-0.5846273,-0.099755354,-0.08405132,-0.0061599994,-0.19318818,0.43087515,0.31662184,-0.29973117,0.020559506,-0.13748139,0.1206242,0.20612635,-0.10407031,-0.35916385,-0.067698814,0.09041005,-0.3741984,0.37314007,-0.48781365,0.30407065,-0.27499124,0.44195923,-0.087867185,0.21848123,0.090277605,-0.009668619,-0.092737384,-0.2021198,-0.0036572367,0.55489266,-0.3388647,0.19671729,-0.0979255,-0.16058579,0.09768093,-0.31791252,-0.41854757,-0.73973477,0.2610613,-0.58996046,0.4271008,0.16314729,-0.39713907,0.32465193,-0.0065420866,0.0556711,-0.17359705,-0.14920011,0.109036796,-0.11787821,0.11790129,-0.33186772,-0.09352778,-0.21798158,-0.46910995,0.17666878,-0.44397402,-0.17834234,-0.22648795,0.25816408,-0.3014666,-0.1189862,-0.13811839,0.55796546,-0.40857553,0.16517843,0.032200914,-0.33520788,0.41471973,-0.59624904,-0.18703847,0.024191972,0.26202652,-0.12875462,-0.18322924,0.22531763,0.28710955,0.38318235,-0.1298425,-0.02941465,-0.48855993,-0.12564753,0.005824051,0.40446758,-0.16752765,-0.5756566,-0.07492224,-0.12007671,0.010473094,0.24238046,0.12330622,-0.28932348,-0.1531349,-0.08271102,-0.2267917,0.49730134,0.6684309,-0.3233037,-0.09141065,0.27141222,0.48718876,0.1514614,-0.08483434,-0.072327375,-0.081413664,-0.5145718,-0.14830853,-0.069107726,-0.033295013,0.51532024,-0.07511045,0.29637054,0.48764992,-0.16058327,-0.20029773,0.20365886,0.12315292,-0.0064489585,-0.2961944,-0.02191022,0.17103307,-0.3376048,-0.020281913,-0.106254734,0.76400566,0.10420894,-0.69319004,0.34972543,-0.39796835,0.053213276,-0.12306738,0.46296936,0.49682203,0.4316275,0.26446947,0.70617455,-0.47632688,0.040541884,-0.048439674,-0.36607963,0.18764591,-0.06657137,-0.06567466,-0.508043,-0.0004740272,-0.009971312,-0.044689536,0.14204866,0.26396042,-0.50722283,-0.09565858,0.14768398,0.7780948,-0.22130594,-0.043691523,0.6316823,1.0115092,0.8656082,0.0014734694,1.0136758,0.00533846,-0.093624644,0.1564481,-0.27328408,-0.70576465,0.378767,0.3026493,0.14958474,0.0010806577,-0.050970476,0.020798206,0.32672533,-0.2822811,-0.1458328,-0.23343717,0.5253579,0.17698726,-0.041103642,-0.31187847,-0.35741204,0.017983096,0.0062498366,0.08818994,0.2015529,-0.20842583,0.32210323,-0.004601347,1.3815424,-0.06589871,0.16383775,0.054604094,0.5753377,0.2453048,-0.10084821,-0.14153744,0.42973548,0.13821502,0.21254627,-0.4757273,0.15530518,-0.14600268,-0.5073873,-0.1259969,-0.2898293,0.09545041,0.05891887,-0.29595327,-0.16144119,-0.102517836,-0.22994652,0.5023562,-3.0427282,-0.16228516,-0.026808511,0.38710397,-0.17678332,-0.277911,-0.034553982,-0.44272646,0.4318849,0.35911328,0.49036306,-0.6082088,0.029593196,0.42599207,-0.46824458,-0.24461627,-0.42943484,0.035066824,-0.068182945,0.28960207,0.12755956,-0.03120892,-0.17264117,0.0011802657,0.42240334,-0.09777252,0.21422367,0.17576636,0.33975896,-0.1342679,0.36021686,-0.109444074,0.43866962,-0.29901975,-0.25263965,0.4349609,-0.36066133,0.094737865,-0.12873913,0.17002593,0.35939088,-0.53731257,-0.8049174,-0.57770497,-0.05594222,1.2159239,-0.00068260945,-0.62849224,0.32825264,-0.25777355,-0.22481905,-0.023097038,0.39069864,-0.04611667,-0.0795402,-0.6513239,0.080077566,-0.16220005,0.25901017,0.021488013,-0.13652565,-0.40299997,0.46544656,0.045242287,0.2859467,0.46572426,0.14765988,-0.41912636,-0.4550411,-0.03755153,0.6872519,0.46662214,0.12268489,-0.20415129,-0.17723583,-0.15567401,-0.1576594,0.1614538,0.5931727,0.5412177,-0.10725336,0.21671125,0.30346844,-0.06967149,0.058404956,-0.17861117,-0.20945907,-0.06633373,0.003692427,0.62284416,0.7013292,-0.081865855,0.37991238,0.025157783,0.41492304,-0.21596745,-0.5341553,0.5467081,0.8648862,-0.21178281,-0.33394352,0.5788776,0.34652737,-0.2593413,0.33317167,-0.49634793,-0.43375835,0.43139848,-0.32819453,-0.52641994,0.12742154,-0.26556793,0.00445781,-0.75069803,0.21065445,-0.39373937,-0.5875047,-0.4798806,-0.1696202,-3.4488046,0.20864047,-0.31561753,-0.12450551,-0.08917735,-0.048590787,0.06397451,-0.3708361,-0.45527297,0.13548765,0.2058631,0.55261093,-0.1307471,-0.0070516295,-0.23961695,-0.25650987,-0.2874209,0.12897363,0.14860909,0.3364245,0.014210181,-0.44606775,0.043381326,0.006248657,-0.5043644,0.13081492,-0.44340998,-0.45333877,-0.13220334,-0.59532815,-0.40922812,0.65680057,-0.13839242,-0.09794827,-0.1427624,0.044782422,0.0480046,0.27552322,0.030371632,0.14851639,0.02080764,-0.15826212,0.059433132,-0.3560736,0.38556284,-0.030825486,0.1781865,0.42925173,-0.055354066,0.08970533,0.49375677,0.6192915,-0.21215351,0.74088377,0.33343008,0.02540866,0.41944784,-0.27321145,-0.27829307,-0.3159139,-0.21408908,0.13376668,-0.47626057,-0.288645,-0.14292218,-0.33773178,-0.6001415,0.7352619,0.035838373,0.020398054,0.059919238,0.3327624,0.39979336,-0.15803787,-0.041455217,-0.05366792,-0.14157419,-0.49052963,-0.19464529,-0.5992792,-0.46786937,0.0740027,0.8760877,-0.31506,0.026789354,0.0153277,-0.05854972,-0.057842407,0.0029282826,0.04177422,0.29304966,0.38866726,-0.14429219,-0.51199996,0.44554433,-0.06796037,-0.14079012,-0.4208667,0.2852726,0.58523893,-0.5807397,0.5710699,0.28749222,0.15375538,-0.24953355,-0.63015944,-0.20410621,0.04266259,-0.23711714,0.5555425,0.11600949,-0.9196854,0.47412282,0.3672087,-0.25380993,-0.79221237,0.3522783,-0.06703142,-0.42697763,-0.017215172,0.39397892,0.12781973,0.019006643,-0.17778705,0.2411408,-0.43551204,0.30091348,0.18113697,-0.11130263,0.5305758,-0.26816115,-0.24576487,-0.6343762,-0.20988628,-0.54406214,-0.33398637,0.27168402,0.061378796,-0.05879001,0.18251777,0.07089035,0.47811183,-0.2700499,0.13054651,-0.037885662,-0.1330821,0.26872292,0.3495839,0.54311144,-0.32469988,0.45917058,0.001889001,-0.0018912852,-0.08751535,0.048455086,0.44612792,0.11532593,0.4290607,-0.045071594,-0.06659785,0.30039337,0.7300282,0.0878026,0.38726377,-0.11943372,-0.104499325,0.09561714,0.050693307,0.28259557,-0.061975744,-0.51598364,0.045607608,-0.3709577,0.20188192,0.47073647,0.1687818,0.29986027,-0.09335713,-0.367405,0.048063688,0.20502399,0.09244913,-0.9645926,0.37451833,0.1504391,0.87747514,0.3450899,0.15107349,-0.011843944,0.72292674,-0.046979573,0.07930235,0.24996741,0.036835402,-0.49385732,0.44653544,-0.83897644,0.4597961,-0.057129733,-0.13197967,0.12988389,-0.06749917,0.38252926,0.7269522,-0.024426889,0.013729677,0.05886516,-0.2738626,0.19971164,-0.40789923,0.0511092,-0.5491644,-0.3429618,0.5077709,0.5592137,0.20539086,-0.20417894,-0.07444122,0.1614201,-0.06957823,0.12648323,-0.06967686,0.0909092,-0.09901092,-0.69396657,-0.08447289,0.47327688,0.48941487,0.08323557,-0.20984362,0.005501815,0.25063428,-0.3077187,-0.033735715,-0.11275178,-0.44792104,0.038497042,-0.20276092,-0.31574112,0.4890873,-0.23436879,0.32015508,0.15556929,0.18115726,-0.2824096,0.4534588,0.004717048,0.76404935,0.000254035,0.011805892,-0.49762246,0.16393141,0.15813874,-0.18736048,-0.15936187,-0.28867036,-0.10927866,-0.469408,0.30389506,-0.037796225,-0.20836475,0.058496714,-0.01894773,0.07442465,0.5628053,-0.068292,-0.12281062,0.04798844,-0.22082962,-0.35073185,-0.15697464,-0.019990223,0.20949568,0.30663633,-0.09704297,-0.10298284,-0.09273422,-0.15511966,0.38700566,-0.03779175,0.27553132,0.20247068,0.055415522,-0.28885013,-0.09294689,0.11725294,0.6565294,-0.065797426,-0.008414464,-0.14602086,-0.40238062,-0.34361595,-0.066750094,-0.10717641,0.2520953,0.04155432,-0.14178225,0.5956833,-0.04719332,1.0914924,0.12530187,-0.18280683,0.11027487,0.41788843,0.021218464,0.010058373,-0.44903898,0.98684543,0.40970364,-0.23463039,-0.0719833,-0.24473628,0.04425484,0.045556128,-0.17240438,-0.109228425,-0.014457111,-0.7239256,-0.2491066,0.22151543,0.3122609,0.07155853,-0.07707853,-0.037756313,0.19500133,0.12332167,0.28692627,-0.39848885,-0.11024755,0.30492657,0.38875863,0.039692998,0.19593894,-0.38564166,0.38588452,-0.40912578,0.22402787,-0.3011647,0.1693485,-0.22620596,-0.3655654,0.22027633,-0.13387223,0.29795092,-0.20831458,-0.35117826,-0.22912426,0.3436933,0.29068187,0.14020412,0.48508272,-0.19822346,0.005852195,0.08957328,0.48033306,0.96378267,-0.26731044,-0.19803731,0.43558258,-0.29553097,-0.67582804,0.27679443,-0.28704023,0.06687305,-0.102084875,-0.13892105,-0.45017284,0.28446412,0.17799972,0.05668464,-0.103928074,-0.61992806,-0.020053456,0.2628371,-0.36888584,-0.145337,-0.27276936,0.15985075,0.57780707,-0.11310528,-0.3858873,0.14743993,0.25911054,-0.2094964,-0.511296,0.17875743,-0.41993666,0.24833918,0.08945118,-0.2860143,-0.13242665,0.13629879,-0.47746474,0.21580645,0.055169705,-0.29889426,0.084932946,-0.27044675,-0.07336654,0.77194756,-0.35993227,0.3818951,-0.42567557,-0.42277765,-0.77144474,0.044644654,0.4955556,-0.13132218,0.013636286,-0.77510136,-0.10464009,-0.14333956,-0.25712255,-0.116818026,-0.33862764,0.36474538,0.0057411618,0.3888432,-0.3027446,-0.72409624,0.18387063,0.30973417,-0.18404551,-0.59677535,0.5313273,-0.07493605,0.6410389,0.05401414,0.05661118,0.42580146,-0.42221433,0.09761805,-0.28163317,-0.31415373,-0.6102328,0.051301923,202 -381,0.7041089,-0.33425742,-0.3934942,-0.105390854,-0.3119885,0.15002586,-0.2739263,0.4310186,0.038480334,-0.58142453,-0.28714857,-0.2365738,-0.04328273,0.15281858,-0.23258576,-0.4044912,-0.049303975,0.22569491,-0.2853805,0.69851106,-0.41800755,0.4075707,-0.029546771,0.40062913,0.3036613,0.1546569,0.14514017,0.06454559,-0.33018643,-0.35789806,0.0612413,0.08855365,-0.65605146,0.25848752,-0.18267055,-0.49093875,0.0151417935,-0.26554668,-0.37944433,-0.84142697,0.2343026,-0.87560385,0.65845233,-0.07243127,-0.5566115,0.112650804,0.16146602,0.15067329,0.1602091,0.0708154,0.13366075,-0.034841187,0.01578715,-0.29190964,-0.2955344,-0.5683062,-0.72758675,0.005324583,-0.35472703,-0.04768588,-0.27370325,0.32121584,-0.28907284,-0.01202628,-0.14663638,0.3834389,-0.46371046,0.15388195,-0.0011252165,-0.014068531,0.4852197,-0.6107581,-0.23186064,-0.24828891,0.015480748,-0.10885342,-0.17366882,0.28905648,0.34033045,0.5055581,-0.13494849,-0.13960823,-0.39247957,0.061186343,0.12837529,0.60580856,-0.2617415,-0.4222408,-0.2057508,-0.30055672,0.51033884,0.26610062,0.43349212,-0.21564357,-0.02152366,-0.059525363,-0.20540057,0.38791066,0.5496002,-0.30311254,-0.15988557,0.07207363,0.539882,0.045184765,-0.23542213,-0.048417,0.006181836,-0.50033206,-0.24842694,0.10583763,-0.2587991,0.51755154,-0.13234457,0.14865732,0.57267153,-0.38144335,0.03753198,0.22623493,0.017641587,-0.08876508,-0.1897479,-0.30915663,0.24033149,-0.40482977,-0.09994107,-0.3937587,0.80809003,-0.11199681,-0.7605172,0.3378062,-0.45139843,-0.059832614,0.05500045,0.49751788,0.6410157,0.6663642,0.3532161,0.6096333,-0.4339044,-0.06288372,0.011896557,-0.21778499,0.11864303,-0.12403969,-0.13148162,-0.40264705,-0.06147575,0.009371842,-0.12545101,-0.023794098,0.9243969,-0.5838571,-0.060668863,0.124953575,0.800536,-0.3442662,-0.07178826,0.8429776,1.0955695,0.8915277,0.034478102,1.2122055,0.19903766,-0.08964371,0.05364298,-0.22449157,-0.6628857,0.3508377,0.37635684,-0.5511847,0.39988518,0.18458202,0.044664495,0.3059738,-0.3608947,-0.03167569,-0.14425786,0.14478295,0.06349282,-0.37698004,-0.44947788,-0.17835745,0.035924133,0.00802158,0.1622567,0.21038315,-0.45239088,0.37361684,0.13748494,1.6809629,-0.14312556,0.027666543,0.052843314,0.5350855,0.18448175,-0.18784364,0.17330825,0.3426115,0.21765426,0.19929092,-0.39200884,0.08638531,-0.11709857,-0.61793643,-0.31112528,-0.22865613,-0.083228715,-0.23012163,-0.36042473,-0.3139557,0.0077642226,-0.33307156,0.33706072,-2.2828095,-0.036375828,-0.19561657,0.29680094,-0.16295196,-0.4853551,0.090040244,-0.44359273,0.58963996,0.42140135,0.375954,-0.7180008,0.3544402,0.67638344,-0.44060454,0.053961534,-0.59712356,-0.24225841,-0.092652455,0.47824904,0.16150928,-0.054527912,0.051925723,0.19011767,0.62113816,-0.17686,0.2550761,0.31274146,0.4376037,-0.21845092,0.4528746,0.06548774,0.42856243,-0.1681133,-0.268667,0.47174048,-0.3059661,0.061089944,0.1207112,0.22759739,0.47303072,-0.4977669,-0.6894722,-0.8975218,-0.47745654,0.9510495,-0.06651411,-0.7675532,0.16998874,-0.3253004,-0.6533364,0.014544232,0.50379974,-0.19679943,0.1152362,-0.75705045,-0.12415749,-0.1388736,0.47725978,-0.1434133,-0.060746055,-0.5305824,0.84201056,-0.09956796,0.4188047,0.35699168,0.27947146,-0.5829209,-0.6543895,0.06710399,1.2277538,0.45500073,0.1496799,-0.40197498,-0.19408038,-0.36107907,0.09895557,-0.0076262183,0.6402885,0.682469,-0.10564101,0.1356745,0.16239189,-0.18268059,-0.04575323,-0.115462594,-0.30673322,-0.14515604,-0.023613278,0.539991,0.66067845,-0.13378738,0.53451043,-0.26054102,0.50182396,-0.26414612,-0.6214835,0.34972993,0.9303326,-0.15880218,-0.3329258,0.7226839,0.57955307,-0.42764664,0.43878606,-0.74912727,-0.31782576,0.37301427,-0.11103707,-0.4519362,0.29719687,-0.44228894,0.2874382,-0.86403763,0.48743084,-0.46514437,-0.47648576,-0.5653321,-0.16669926,-2.950607,0.29677716,0.033168763,-0.35357043,-0.026830938,-0.2091131,0.44028622,-0.51455003,-0.4670624,0.01231551,0.11699719,0.65914786,0.038001295,-0.07045891,-0.31346178,-0.38549018,-0.25155097,0.32581228,0.22815122,0.26159126,-0.18264319,-0.69118184,0.0057127667,-0.22393754,-0.4625215,-0.08754065,-0.69110805,-0.8457894,-0.22158217,-0.408128,-0.3145363,0.6639933,-0.35740873,0.077468716,-0.24480978,-0.034576423,-0.07684595,0.28550518,-0.0014593431,0.08591514,0.06226025,-0.25419608,0.03949461,-0.3974827,0.47984385,0.17017317,0.34427267,0.6391261,-0.29435632,0.13206957,0.42316264,0.55062515,-0.025338948,0.9781376,0.30789074,-0.14914279,0.39130434,-0.082942314,-0.30939803,-0.5621941,-0.18731639,0.05045385,-0.5677345,-0.38695005,-0.06736807,-0.4262598,-0.8649927,0.6064683,-0.14550379,0.15987264,-0.048552494,0.5317973,0.3382415,-0.21513318,-0.18097226,-0.066339806,-0.257369,-0.5029308,-0.5098607,-0.6846639,-0.5332932,0.027951105,1.249,0.15865433,0.02453185,0.17534588,-0.17234743,0.11622699,0.04607422,-0.01639593,0.081077315,0.28814355,-0.16187856,-0.75836664,0.60664326,0.1820521,-0.13108063,-0.47823387,0.2343706,0.6866352,-0.53307194,0.3065755,0.24784745,0.041928153,-0.056909654,-0.5989128,0.011113784,-0.013282716,-0.40133598,0.58527523,0.4980522,-0.83608925,0.40823045,0.3270248,-0.15832315,-0.7101726,0.5310222,-0.036357563,-0.24369343,-0.16749239,0.48896116,-0.0049491352,0.13911107,-0.33428416,0.37065312,-0.51917744,0.3169446,0.30397,-0.03045867,0.29649082,-0.24076526,-0.16582742,-0.8818561,0.21462485,-0.42230892,-0.50398767,0.26194838,0.09027738,0.07968029,0.6038141,0.36672026,0.4961407,-0.35158566,0.10111451,-0.013865625,-0.31485716,0.42177173,0.47027633,0.5358578,-0.31968156,0.49763218,0.029584808,-0.14750732,-0.09771413,0.06807657,0.5493439,0.0002898744,0.33739924,0.027189877,-0.030098276,0.3846983,0.99087846,0.25956753,0.58994263,0.11532532,-0.30698648,0.13273475,-0.037848085,0.2854592,-0.037101347,-0.6040582,-0.0135400295,-0.121394865,0.12186209,0.5685424,0.020707535,0.18439715,-0.23723991,-0.3022854,0.077459976,0.24338457,0.07121544,-1.2622681,0.09721507,0.08147844,0.93274224,0.54065716,-0.03341353,-0.003494465,0.6183267,-0.3555947,0.014216271,0.31409785,0.151885,-0.29046234,0.4888614,-0.66808325,0.39294943,-0.11143948,-0.039267454,0.123860136,-0.40535906,0.42014116,0.976678,-0.07409085,0.12004528,0.1300569,-0.27651617,0.15784666,-0.3695157,0.10069542,-0.51540256,-0.23005438,0.75118285,0.4583528,0.35503843,-0.10577246,0.101978965,0.09857719,-0.1863819,0.20993103,0.061556388,0.15268132,-0.23370631,-0.55358124,-0.20044912,0.42060116,-0.02466016,0.09382267,0.13155416,-0.24339606,0.046959035,-0.23072815,-0.026292844,0.029542288,-0.729359,-0.1273121,-0.3903274,-0.30548257,0.398251,-0.091858454,0.015072288,0.13115226,0.07781486,-0.35983926,0.2288759,0.4113191,0.6200691,0.3259743,-0.030668488,-0.27274165,0.13200645,0.16069002,-0.32165268,-0.009407316,-0.06351985,0.07907323,-0.80674535,0.4068379,-0.09709041,-0.37839133,0.11452227,-0.032987893,-0.00024732522,0.5021094,0.018530037,-0.34923437,0.025737455,0.09692425,-0.08427828,-0.09079493,-0.1295756,0.29030013,0.059324205,-0.19935563,0.051253267,0.054134913,-0.013642899,0.32993355,0.03118011,0.4359626,0.5145961,-0.0032769782,-0.42275938,0.07197016,0.16967313,0.7217639,-0.23507826,0.13863781,-0.18923569,-0.6173125,-0.4041755,0.0049427575,-0.15411815,0.29529437,0.11848801,-0.4310464,0.9240729,0.02460676,1.2543379,0.0151926195,-0.44593725,-0.07140012,0.5593834,-0.16879097,0.009908353,-0.5897977,1.1520537,0.46093696,-0.37528118,-0.16902654,-0.16675289,-0.05846711,0.15897158,-0.24917556,-0.13641341,-0.07556842,-0.87866104,-0.21767053,0.19174957,0.47508213,-0.054974165,-0.0024234594,0.19144765,0.36923414,0.041665178,0.32189038,-0.4526915,0.08415462,0.32043642,0.35163045,-0.13111366,0.21830322,-0.3924265,0.18655083,-0.54718006,0.010209041,-0.4210277,0.101113245,-0.115394354,-0.45096943,0.3039971,0.15627275,0.31549627,-0.33931223,-0.21686025,-0.13743582,0.4861056,0.11176316,0.24279158,0.5471853,-0.11224057,0.18121155,0.07389282,0.4052396,1.3181263,-0.18390168,-0.18225731,0.253689,-0.50335395,-0.7173633,0.40693074,-0.38023892,0.21258053,-0.039642967,-0.5176172,-0.34573197,0.29694748,0.15514715,0.016312262,-0.06609754,-0.5180736,-0.17878368,0.30920127,-0.4433331,-0.29950115,-0.18064596,0.16308881,0.51629,-0.30154294,-0.33904263,0.0044268197,0.55901784,-0.38273543,-0.4236495,-0.1674212,-0.38597447,0.49029544,-0.025450064,-0.40859467,-0.14796993,-0.15364714,-0.45586538,0.044968974,0.25390634,-0.39262983,0.1459919,-0.3493328,-0.028109428,0.749279,-0.15669121,-0.10381531,-0.44352058,-0.5575538,-0.9254073,-0.42021337,0.23982427,0.3404668,-0.08597464,-0.50717556,-0.09610726,-0.30152413,-0.08310151,-0.030776756,-0.26956537,0.44356117,0.18615474,0.5803099,-0.04851249,-0.84777534,0.18541762,0.2660536,-0.06474571,-0.78798306,0.65344346,-0.18170686,0.9021762,0.14688687,0.19747642,0.35471132,-0.555927,0.20440412,-0.20617385,-0.2868089,-0.72585136,0.04643497,203 -382,0.26655146,0.018259322,-0.5871483,-0.3393979,-0.3627557,0.26528904,-0.38814363,0.1459788,0.17460646,-0.28190646,0.0676811,-0.0710742,-0.1370827,0.33385855,-0.25720736,-0.91570276,0.08490743,-0.10630874,-0.4566266,0.53183633,-0.47754517,0.25189176,0.056641977,0.31082746,0.07619424,0.37091473,0.42354295,0.047900386,-0.09901909,-0.045814753,0.06105695,0.3022797,-0.6781102,0.40858224,0.096573986,-0.306006,-0.01756359,-0.28185514,-0.12941884,-0.6952909,0.35235146,-0.75207764,0.36402813,-0.02963579,-0.39267954,-0.014852933,0.24162674,0.08575882,-0.18976559,0.06536002,0.30017546,-0.37816253,-0.093862906,-0.0063293152,-0.20588727,-0.7536672,-0.54691106,-0.007977173,-0.873004,-0.17338584,-0.36672726,0.30462033,-0.43447632,-0.17907357,-0.12934646,0.47466373,-0.5948404,-0.19284709,0.15889958,-0.36379784,0.024459204,-0.6943781,-0.28778696,0.015314966,0.17728315,0.0071801627,-0.16279243,0.57306385,0.36271808,0.27812454,0.11912286,-0.40809807,-0.41152054,-0.2870774,0.1595527,0.35254893,-0.103053525,-0.34633824,-0.24366677,-0.1582776,0.32211107,0.14961569,0.086641364,-0.25054812,0.08013164,0.026191559,-0.17248312,0.2627278,0.60641617,-0.5237002,-0.20116031,0.48931953,0.35944602,-0.10104899,-0.35687876,0.20049094,-0.08776065,-0.4223368,-0.16549094,0.1540468,0.04809906,0.41316327,-0.12374605,0.2184267,0.9089225,-0.13219678,0.19277157,0.00025463957,-0.01376362,-0.10530002,-0.22070476,-0.03294466,0.15594132,-0.41487455,0.09224123,-0.24116577,0.8743572,-0.040495217,-0.80250734,0.4320111,-0.41101497,-0.08612997,-0.15542777,0.622015,0.74214494,0.33633885,0.07828547,0.94548905,-0.33400577,-0.08570601,0.11233897,-0.33415562,0.12627526,-0.24442564,0.28719476,-0.50037134,0.17270072,0.12373363,0.20491579,-0.024617331,0.6132551,-0.34459963,-0.07818712,0.12835784,0.55007404,-0.3355687,-0.11984377,0.71542466,1.1275244,1.0868464,0.16645288,1.102003,0.41669992,-0.1782122,-0.07004788,-0.17540343,-0.4570748,0.20197546,0.47611257,0.52177143,0.2526379,0.09326626,0.08228167,0.5801029,-0.23793127,-0.0021908071,0.03136135,0.3064231,0.17338581,-0.20124969,-0.31781366,-0.19500698,0.33645147,0.17532647,-0.13121633,0.337081,-0.0207163,0.58248025,0.07043826,0.9054564,0.07539173,0.08185358,-0.08662971,0.62712634,0.12771381,-0.11583368,0.17631106,0.17927977,0.14111637,-0.10368829,-0.5103911,0.10166298,-0.48262718,-0.7191743,-0.21189903,-0.46515736,-0.145295,-0.027204828,-0.39402255,-0.3293364,0.16130687,-0.24794233,0.37075755,-2.676292,-0.024943683,-0.32109526,0.21194889,-0.113417946,-0.22842124,-0.33558622,-0.582796,0.4665482,0.47345462,0.3360342,-0.4965543,0.38102075,0.39270404,-0.43416485,-0.058354113,-0.66077346,0.18028696,-0.24323419,0.5053345,-0.0846849,-0.18236415,-0.07030804,0.24912097,0.7769818,0.10429985,-0.010569033,0.14355174,0.21663949,-0.08693711,0.36516258,0.06371482,0.5685827,-0.28840956,-0.11504044,0.36819288,-0.7002243,0.39132375,-0.11005854,0.15568972,0.4639315,-0.29700416,-0.9376115,-0.68820244,-0.3970142,1.1476412,-0.32522538,-0.54613715,0.258189,0.22083728,-0.10211646,0.20030273,0.40506572,-0.16726732,0.18711278,-0.49156004,0.20228298,-0.22807585,0.13451985,-0.12556998,0.2626061,-0.45062095,0.7953111,-0.09737607,0.55803406,0.25549045,0.19917586,-0.28197762,-0.48845047,0.022799999,0.7691294,0.47548702,0.121882424,-0.07166344,-0.25434,-0.05390344,-0.531222,0.2649531,0.6102286,0.48021203,0.042557903,0.28207183,0.27845722,-0.31468377,0.10962316,-0.04155912,-0.3680372,-0.06497647,0.414159,0.588846,0.46486712,-0.18123734,0.34003922,-0.053448837,0.25520253,-0.24568848,-0.5239295,0.49929732,0.69479316,-0.095682964,-0.2616836,0.43503517,0.46388027,-0.4783604,0.52566844,-0.5510611,-0.49384043,0.62693775,-0.04382084,-0.4925917,-0.21516609,-0.42177716,0.01086414,-0.7728093,0.43386993,-0.14839019,-0.6829137,-0.46174908,-0.45382124,-3.7155774,0.02226012,-0.234841,0.08465445,-0.19005983,-0.14263546,0.3140393,-0.70338875,-0.5200354,-0.03481423,-0.017646367,0.4301241,-0.044456005,0.07766126,-0.3503981,-0.2309866,-0.20681462,0.49310663,-0.042799216,0.26565942,-0.07623517,-0.2819167,0.42066056,-0.36942387,-0.5343699,-0.122580774,-0.48505303,-0.53757703,-0.0150376605,-0.53504217,-0.19301255,0.742621,-0.4803223,-0.0040797177,-0.14626314,0.086884364,-0.17674057,0.3509325,0.3965819,0.24137947,0.073747054,-0.077781364,-0.18866293,-0.550358,0.38892642,-0.107794575,0.38041067,0.57472366,-0.06953139,0.2620713,0.7614101,0.38505742,0.08722056,0.80529404,-0.038371217,-0.070624925,0.45612484,-0.35828876,-0.18922329,-0.8353206,-0.39092308,-0.06586149,-0.41389945,-0.5081335,-0.014887844,-0.42594174,-0.70184076,0.5142711,0.1353427,0.22187445,-0.282566,0.22868606,0.118989095,-0.10481111,-0.03492581,-0.0059917937,-0.10974827,-0.5680733,-0.5411862,-0.6967189,-0.8120141,0.13453393,0.9879566,-0.21484862,-0.40106508,-0.05395331,-0.24429126,0.113684826,0.17610632,0.31660938,-0.013518201,0.30707565,0.1325687,-0.96797055,0.50753284,-0.25828907,0.16336663,-0.5000268,-0.11503793,0.54510254,-0.7379484,0.5001193,0.47351408,0.35545963,0.17714253,-0.64385647,-0.17975037,0.026353033,-0.21005908,0.5346952,0.14592767,-0.6775119,0.5374052,0.09412922,-0.28593057,-0.47755256,0.47721484,-0.0030761308,0.21118294,0.10330162,0.44218484,0.1620557,-0.28772512,0.008939794,0.20858261,-0.5793373,0.3125982,0.21800487,0.14187369,0.7049037,-0.08827652,-0.38865617,-0.5001308,-0.22040962,-0.5413067,-0.15344252,0.06573365,-0.17157388,-0.0903653,0.22421925,0.066820495,0.41920835,-0.17230427,0.13140425,-0.19125775,-0.26304415,0.43728083,0.4685032,0.47948557,-0.5654374,0.71001637,0.14885579,0.116620935,-0.04220138,-0.17944281,0.62374336,0.3052303,0.5232425,-0.06345863,-0.0033652186,0.04021401,0.7426112,0.34507552,0.44370985,-0.019377312,-0.38080582,0.27112538,0.101658806,0.076662354,-0.037536554,-0.41434056,-0.065701514,-0.17967117,0.057786968,0.38833848,0.061387602,0.33515984,0.016715327,0.0065070014,0.28813195,0.1418228,-0.042186074,-0.9349306,0.43447378,0.363056,0.5929346,0.45784524,-0.1648225,0.05183403,0.5455331,-0.3612021,0.024783595,0.5049027,0.049797468,-0.46008068,0.69705576,-0.58655494,0.62281257,-0.3160711,0.05441537,0.07282591,0.2849589,0.32975715,0.6444256,-0.12678337,0.02636448,-0.015896888,-0.40078467,0.2833613,-0.2398355,0.23676442,-0.43872204,-0.10163695,0.55358034,0.392487,0.21942762,-0.17679249,-0.16904762,0.074844636,-0.20698282,0.24301144,-0.14474574,-0.08812586,-0.26323634,-0.5618164,-0.41883937,0.58136815,-0.0728653,0.039713707,0.19588487,-0.4069583,0.36448345,-0.012232508,0.033673882,0.023097787,-0.45279446,0.1945246,-0.12386137,-0.7115458,0.48268467,-0.467994,0.32619363,0.31192616,0.016821658,-0.19412836,0.10783668,0.1472166,0.50203055,-0.050758805,-0.23372398,-0.3469526,-0.19269249,0.31558684,-0.33917397,-0.07975391,-0.37891382,0.2399589,-0.40961716,0.39961153,-0.56322867,-0.1665992,-0.11876945,-0.18722568,-0.09847989,0.46800327,-0.122396514,-0.02612258,0.1889743,0.18436551,-0.048783787,-0.006031943,-0.47938433,0.39385343,-0.17895138,0.036060434,-0.13354495,-0.28587675,-0.018644989,0.2493438,-0.06794083,0.0077524176,0.29266697,-0.12807152,-0.44080546,0.11369849,-0.006531415,0.5433942,0.19636379,0.018374672,-0.17325445,-0.26600593,-0.32954565,0.39722756,-0.11889521,0.120116316,0.32286364,-0.49289697,0.66439974,-0.119498864,1.1545131,0.21217456,-0.43072063,0.077225916,0.550474,0.14860821,0.110842094,-0.1870872,0.9634255,0.6840291,-0.26674467,-0.23032644,-0.52137285,-0.09900975,0.23098011,-0.23150577,-0.20935157,-0.14354475,-0.79341084,-0.15927921,0.10964685,0.15982577,0.11115007,-0.04216308,-0.18550195,0.078356005,0.38610718,0.3385035,-0.54034436,-0.08833914,0.35074964,0.2747746,-0.13354138,0.09537013,-0.30640343,0.31503293,-0.84283435,0.3521463,-0.47929078,0.15754874,-0.31432548,-0.27136916,0.20442192,0.06362506,0.37042975,0.09408586,-0.4502485,-0.07967759,0.64450985,0.3322815,0.44473282,0.770826,-0.16479574,-0.053942442,0.07137338,0.46832806,1.3197678,0.012702712,-0.09314787,0.3453841,-0.39951155,-0.7811081,0.14276777,-0.66754967,-0.1298063,-0.12594579,-0.4162347,-0.35055235,0.20597337,0.15440133,-0.15145577,0.06683799,-0.48076656,-0.23572256,0.011053158,-0.43156186,-0.2847502,-0.41290078,0.1840508,0.777034,-0.47815084,-0.18743137,-0.023251394,0.42483258,-0.31326514,-0.67638713,0.3365507,-0.13106278,0.5062885,0.09815755,-0.36159012,0.08296983,0.5507906,-0.3965375,0.32603452,0.3830622,-0.36538652,0.06330653,-0.2689527,0.30474234,0.90103763,0.20410585,0.32561436,-0.7108183,-0.47002888,-0.9393533,-0.41501585,0.13718423,0.10779885,-0.07791685,-0.4788229,-0.20922995,-0.11325835,0.03597645,0.05194163,-0.6067937,0.25606316,0.06677537,0.50656164,-0.005488832,-0.853199,-0.011998509,0.104663,0.011226254,-0.42844772,0.5328868,-0.3994058,0.8453633,0.11444567,0.051839463,-0.035121415,-0.5872593,0.48335543,-0.3288644,-0.16732605,-0.48152623,0.12802546,205 -383,0.5166831,-0.197674,-0.45583352,-0.2714886,-0.15386327,0.1564386,-0.19201078,0.6088814,0.08774691,-0.49703678,-0.1974895,-0.083018675,0.010965894,0.1619749,-0.16216318,-0.410047,-0.030816708,0.14929064,-0.4425927,0.5257484,-0.5408148,0.24777715,0.022337874,0.42543745,0.21790278,0.13498141,-0.070985965,0.06292809,0.02206598,-0.12837999,0.00353969,0.3074193,-0.64660084,0.069323935,-0.2634762,-0.48013762,-0.21981438,-0.34015378,-0.39921302,-0.77372044,0.37288824,-0.9750245,0.45140433,0.08851508,-0.38606265,0.50543797,0.050675076,0.06476377,-0.2744526,-0.067180805,0.18426538,0.02142099,-0.036781516,-0.090062134,-0.0848412,-0.38436726,-0.55906045,0.05841765,-0.31626695,0.08811305,-0.351194,0.06001955,-0.33227155,-0.016003622,-0.022186544,0.30735472,-0.47259936,0.12738289,0.08013679,-0.0016425401,0.32520434,-0.6012966,-0.22512843,-0.17237656,0.26003784,-0.3230693,-0.3595803,0.2350864,0.47923392,0.48466226,-0.20929305,-0.06899541,-0.27411306,0.055406477,0.09391109,0.4453135,-0.22560754,-0.42423862,-0.23401639,-0.19920704,0.203971,0.2059162,0.19612142,-0.16802083,-0.15480173,0.045139723,-0.30692324,0.40298194,0.47318077,-0.31371385,-0.30899626,0.2829674,0.47415286,0.28071183,-0.1534694,0.058093064,0.015299943,-0.5430306,-0.080437385,0.056392066,-0.21454433,0.59988153,-0.27452415,0.1894492,0.5861845,-0.11973464,-0.014478858,0.1937797,0.0365447,-0.15828136,-0.41504547,-0.24629661,0.30572513,-0.56425995,0.29698446,-0.25528154,0.6220526,0.109110214,-0.7053555,0.32250407,-0.55631787,0.16430584,-0.16075245,0.45236015,0.8683786,0.37350193,0.31397614,0.6443781,-0.4083707,-0.17170143,-0.032153986,-0.1316924,0.14359483,-0.19260442,-0.071507335,-0.52264607,0.06555573,-0.0014931826,0.011942565,0.10274904,0.74012935,-0.40602937,-0.13409996,0.2186232,0.6924478,-0.32543817,-0.043687906,0.9276909,1.042758,1.1220547,0.22272635,1.1541958,0.20100018,-0.22600053,0.29511538,-0.08605312,-0.82182056,0.26299495,0.29007548,0.35856006,0.11092679,0.071175136,-0.057332166,0.3976931,-0.41178432,0.056703985,-0.186426,0.1259109,0.17466919,-0.078356765,-0.27635634,-0.40294117,-0.046854835,0.21372247,0.08808299,0.20815697,-0.15682487,0.3897961,0.14360367,1.4345146,-0.009172448,-0.046430357,0.021710223,0.41760498,0.24073829,-0.2477713,-0.091094315,0.27791238,0.43609434,-0.0240833,-0.6700025,0.14137135,-0.10450121,-0.5087784,-0.13666351,-0.41558293,-0.25796202,0.009950412,-0.5610992,-0.22179832,-0.11374976,-0.3137692,0.4308657,-2.7722325,-0.27898553,-0.016468413,0.35710615,-0.10141075,-0.36198428,-0.206026,-0.48581514,0.5533982,0.33693415,0.44235054,-0.68447334,0.2602274,0.3977857,-0.5292264,-0.091759086,-0.63811195,-0.28250533,-0.049464643,0.15078287,0.07856243,-0.03739358,0.18060623,0.1873511,0.535665,0.03574378,0.21554421,0.26456448,0.44888455,-0.077153586,0.48203734,-0.023927795,0.50068444,-0.23777425,-0.24491212,0.3971185,-0.37736556,0.25765982,-0.34102294,0.12002629,0.57247275,-0.5371688,-0.93736106,-0.7643795,-0.22118463,1.0917922,-0.18921673,-0.39693403,0.17447151,-0.594745,-0.18653785,-0.11166946,0.55886334,-0.18898296,-0.11172695,-0.9122701,-0.05611309,-0.0423289,0.0112728905,-0.07965133,-0.041090924,-0.42383024,0.81462914,-0.041790985,0.5569677,0.335347,0.08702988,-0.27554813,-0.46168095,0.100211635,0.60875195,0.38815048,0.15494789,-0.42585388,-0.16819882,-0.4352971,-0.008747523,0.18265931,0.43267563,0.50273323,-0.07736171,0.24456522,0.22754875,0.033647884,0.0082366215,-0.21009561,-0.107762575,-0.21616848,0.10117589,0.7030557,0.6612659,-0.1516319,0.18734398,-0.11996955,0.11078715,-0.17171533,-0.524484,0.4944691,1.1356484,-0.08176337,-0.26754743,0.51405984,0.6192169,-0.18530692,0.4111724,-0.54226196,-0.29196268,0.25549728,-0.18968882,-0.30190417,0.1499207,-0.45395353,0.1332982,-0.85776,0.1355628,-0.30149814,-0.37824973,-0.597817,-0.12518853,-3.1715894,0.15251192,-0.1779964,-0.16759038,-0.24539863,-0.4275167,0.36274794,-0.48525524,-0.6978821,0.09714295,-0.014490762,0.7218136,-0.032301396,0.08414853,-0.23174092,-0.25298256,-0.3274409,0.045633394,0.163999,0.43842125,-0.067709394,-0.3323771,-0.06022862,-0.21212682,-0.3730612,-0.07577356,-0.4383934,-0.461304,-0.027078155,-0.39180905,-0.37692896,0.4745974,-0.31635052,0.1023088,-0.1326691,-0.13904569,-0.12241965,0.3775498,0.149616,0.20562495,-0.037056204,-0.050343685,0.08644293,-0.2651728,0.216609,0.025405064,0.012994351,0.43524984,-0.16620626,0.19697817,0.51220423,0.6404918,-0.14342412,1.0506028,0.50174063,0.11680973,0.30057663,-0.25561592,-0.22685197,-0.63011396,-0.12679923,-0.09846075,-0.53872854,-0.44359583,0.06642272,-0.43757495,-0.7914023,0.4007062,-0.0083988095,0.11623667,0.13595508,0.18120895,0.46260494,-0.1363516,0.058578152,-0.13706595,-0.068530396,-0.6097668,-0.3661725,-0.7176165,-0.5157261,-0.03575725,0.9128054,-0.10088291,-0.095077865,0.102855965,-0.2396485,0.12945084,0.24947669,-0.026867354,0.04350436,0.4019003,0.018619657,-0.5351768,0.43315288,0.06218179,-0.29194897,-0.6057325,0.19045623,0.4913158,-0.6176831,0.6281236,0.4117875,0.043187957,-0.16683818,-0.68227535,-0.17906524,-0.1551785,-0.30261287,0.5048354,0.3119327,-0.9185051,0.47062013,0.4167039,-0.09925691,-0.7475968,0.6598233,-0.08524169,-0.19826838,-0.080098346,0.27291438,0.12672387,0.032959152,-0.063837685,0.34521493,-0.50522894,0.27946788,0.18685447,-0.03568272,0.39963955,-0.24979655,0.10569478,-0.59339684,-0.10608267,-0.4961246,-0.27012548,0.13748546,0.036430605,0.13658795,0.2840304,0.18191887,0.35886732,-0.23410831,0.09404834,-0.1784434,-0.23866679,0.11759067,0.3707252,0.6083764,-0.39013085,0.6771328,0.013203687,-0.06208714,0.12378864,0.22249807,0.37376216,0.11001627,0.43096378,-0.017721236,-0.19986565,0.14372976,0.9096452,0.26154473,0.4409118,0.038102593,-0.17770688,0.234107,0.14552483,0.3652287,-0.1478457,-0.5055173,0.063399754,-0.34916258,0.17605035,0.4400801,0.09658366,0.22012755,-0.12231069,-0.25332496,-0.045762923,0.17481096,0.019381497,-1.4147089,0.3895304,0.23313698,0.9704078,0.6186,-0.16749428,0.10677492,0.553288,-0.31147024,0.16220692,0.36410686,0.061904483,-0.44220868,0.44997725,-0.8401466,0.4420646,-0.117435984,0.010261512,0.017626464,-0.11805455,0.4967982,0.6790838,-0.12597084,0.15117475,0.16092913,-0.4206285,0.31996197,-0.47776613,0.029755037,-0.46444267,-0.04104003,0.83276683,0.56920165,0.35207444,-0.2969475,-0.0004952167,0.014507145,-0.13550498,0.01279839,0.09479062,0.10893845,-0.18092921,-0.7101218,-0.13970447,0.4844877,0.06931196,0.2741335,0.07963883,-0.36083913,0.2756412,-0.13338406,-0.0010657395,-0.088206224,-0.77488613,-0.12406138,-0.38351914,-0.39507368,0.5367932,-0.1058945,0.22926642,0.3557027,0.055920072,-0.23501883,0.2132874,-0.07069627,0.70730793,-0.020633025,-0.10430844,-0.50402194,0.13250072,0.27251008,-0.17933282,-0.19106998,-0.21135817,0.100969926,-0.35093012,0.5678895,-0.05875845,-0.22457601,0.17577672,-0.017604634,0.08595795,0.6417486,-0.19918048,-0.19224904,0.016667988,-0.097218044,-0.35828286,-0.12159586,-0.124348916,0.28243628,0.1566094,0.00815977,-0.11420192,-0.095897265,-0.044833098,0.43169394,0.0716206,0.46964136,0.35230634,0.12748556,-0.38318732,-0.10637413,0.31010917,0.5866403,-0.15488067,-0.22938831,-0.31392995,-0.48907274,-0.27899975,0.3593693,-0.077019945,0.41742688,0.093087435,-0.11116964,0.6459624,-0.062157642,0.7989122,0.14386462,-0.42976686,0.22670822,0.49514195,-0.055223916,-0.20651881,-0.22519806,0.6282421,0.43080625,-0.16060375,-0.23910482,-0.18859304,0.119992316,0.0736308,-0.19015343,-0.08666147,-0.10068749,-0.784085,-0.16351727,0.12486539,0.29656538,0.19828211,-0.13984807,0.05746889,0.19862786,-0.044184346,0.30164936,-0.47050974,-0.19178568,0.3564624,0.28596595,-0.14305992,0.07047294,-0.277849,0.30743244,-0.34981266,-0.102239266,-0.33355215,0.18224396,-0.27967793,-0.28616908,0.18148422,0.119756386,0.20682034,-0.15427348,-0.30722398,-0.35829452,0.45720387,0.12780945,0.17706625,0.44141027,-0.21806832,0.11481727,0.1859756,0.42339712,0.9707624,-0.16026123,-0.057613578,0.22219324,-0.39971823,-0.5471607,0.42602563,-0.42047808,0.34475046,0.115002505,-0.06898565,-0.5381945,0.2153066,0.21054517,0.100664906,0.1618449,-0.7660045,-0.19330049,0.29587156,-0.26001367,-0.059945304,-0.36299723,-0.06283042,0.5538613,-0.16080835,-0.14208426,0.117730394,0.32837096,-0.2324836,-0.6157785,0.14420497,-0.5234307,0.37558052,0.026360145,-0.3586579,0.0620658,0.16573414,-0.43179664,0.23228595,0.095481925,-0.31309244,0.07301719,-0.51828355,0.16786547,1.0146847,-0.2500007,0.24683043,-0.3428247,-0.5385999,-0.83520514,-0.29342058,0.46899748,0.21934067,0.049631294,-0.63807344,-0.052770235,0.03004642,-0.13844682,-0.0968654,-0.36383343,0.5708831,0.14857507,0.33393297,0.033326294,-0.64485806,0.083291784,0.031928334,-0.237482,-0.42445108,0.6012672,-0.0242561,0.79982656,0.14344785,0.113484204,0.1643076,-0.5202685,0.021640416,-0.17935468,-0.0713818,-0.6009155,-0.041665077,209 -384,0.38973406,-0.0604737,-0.42929268,-0.18461321,-0.3153701,0.080991276,-0.05440733,0.42913416,0.087869205,-0.5678235,-0.18530218,-0.17973496,0.044840608,0.4123194,-0.07733996,-0.74204457,0.19520864,0.24448936,-0.5616765,0.5339146,-0.4539008,0.41929922,0.20175804,0.10654359,0.15603817,0.26042223,0.3366051,-0.31729954,-0.030742748,0.018182065,-0.39739043,-0.032159757,-0.44329286,0.31851795,-0.073389046,-0.35517663,0.10453377,-0.28260043,-0.4187853,-0.64868397,0.28574798,-0.70386964,0.39968273,-0.04905939,-0.11892628,0.12450024,0.16148742,0.4189084,-0.20094912,0.061284292,0.21891865,-0.044981055,-0.28280157,-0.13729988,-0.16780008,-0.5676197,-0.55474657,-0.02431406,-0.37858412,-0.22314365,-0.42916754,0.1353428,-0.2872621,0.011467202,-0.12668972,0.32430866,-0.34177542,0.0615479,0.21693143,-0.12429981,0.09900563,-0.48143578,-0.041603517,-0.09147032,0.31272045,-0.16322437,-0.20112813,0.3995423,0.29506984,0.499902,0.12957944,-0.14377855,-0.22396031,-0.15033783,0.24093078,0.62777287,-0.027923618,-0.55156887,-0.16976252,0.007281908,-0.10749133,0.040126078,0.050828606,-0.38668332,-0.05699438,0.018612996,-0.42562607,0.43953234,0.3666812,-0.34094962,-0.37561002,0.41984367,0.45639017,-0.020160943,-0.12927507,-0.00954482,-0.09523297,-0.5829491,-0.19129963,0.07486032,-0.16162403,0.46332672,-0.21276546,0.306428,0.60873646,-0.16888067,-0.03748291,-0.0030378103,-0.10073437,-0.008832766,-0.13803707,-0.054165363,0.06493872,-0.6079146,0.05954197,-0.21052255,0.8505898,0.26431736,-0.5907749,0.3916584,-0.48694345,0.26234522,-0.16349602,0.4293074,0.6109885,0.33742914,0.078215316,0.8214038,-0.47379258,0.22762395,-0.085908756,-0.53429335,-0.06140233,-0.12918669,0.02164352,-0.43970856,0.13562551,0.017552542,-0.0068921605,-0.049270462,0.41199937,-0.49428013,-0.13453884,0.03555603,0.9782247,-0.33162227,-0.1041716,0.6101895,0.89847094,1.0498028,-0.018289099,1.1976175,0.2311071,-0.38975453,0.34491593,-0.48431942,-0.6479085,0.28563404,0.44606808,0.40326267,0.12786524,0.13273655,0.026229104,0.29888806,-0.43222895,0.07960496,-0.25564954,0.16279764,0.094393454,-0.18719019,-0.41248196,-0.26102188,-0.08893285,-0.015155026,0.13724712,0.20792116,-0.2245659,0.38863617,-0.08019536,1.6323861,0.060449593,0.08126695,-0.005411234,0.5129681,0.14865533,-0.06380921,-0.0822951,0.18300512,0.34352466,0.00045641564,-0.54833955,0.023055146,-0.29470968,-0.5789594,-0.08943331,-0.35041162,-0.07328304,-0.13126229,-0.36733368,-0.12179351,-0.0008647197,-0.29294035,0.5386439,-2.6250768,-0.23705436,-0.14249349,0.36116105,-0.20565401,-0.2968516,-0.06767456,-0.5137958,0.38206035,0.32383275,0.59374183,-0.59385747,0.5648631,0.3408403,-0.5446457,-0.08795854,-0.6188097,-0.09181956,0.06056419,0.4025629,0.042203963,-0.0465031,-0.095398545,0.032755252,0.45898262,-0.18572031,0.04229526,0.17634137,0.36322573,0.26878676,0.543223,0.13554512,0.5703312,-0.2772545,-0.019148579,0.32876128,-0.2484325,0.3453209,-0.087748885,0.089097925,0.33345458,-0.4204785,-0.8446136,-0.68745434,-0.28657755,1.0082533,-0.18974447,-0.14462705,0.25703755,-0.31171486,-0.10152552,-0.08997793,0.32455748,0.029142026,-0.18240823,-0.697178,0.05346007,0.00232324,0.15131196,-0.09608445,-0.036592424,-0.37339634,0.7575467,-0.027544653,0.4836288,0.20924045,0.20857036,-0.16283707,-0.30714366,0.0496952,0.9406398,0.20070735,0.16518784,-0.14056437,-0.2903791,-0.60182345,-0.2229334,0.03473492,0.5413815,0.8010303,-0.0051295543,-0.034510314,0.25706822,0.02686788,-0.011164137,-0.15311599,-0.22328672,-0.07312095,-0.04187217,0.5559916,0.3707462,-0.098248206,0.6130038,-0.112983145,0.2694084,-0.27546936,-0.46955284,0.46460083,1.069319,-0.23016752,-0.2553677,0.4280557,0.44666988,-0.18706618,0.37646034,-0.712543,-0.3914618,0.54030097,-0.054317262,-0.2643007,0.10442071,-0.2978739,0.21464966,-0.94585216,0.29258546,-0.24719417,-0.740328,-0.43825778,-0.11651553,-3.5917766,0.16656439,-0.15501721,-0.09900924,0.05903176,0.16173795,0.061855704,-0.364727,-0.456553,0.17029206,0.07178859,0.7584842,-0.019742263,0.23252988,-0.24313875,-0.0657965,-0.39040378,0.19550554,-0.102207184,0.2493536,0.007190875,-0.42051116,0.03163262,-0.19318032,-0.35984498,0.21067241,-0.7642108,-0.54781824,-0.13456905,-0.31744814,-0.3767894,0.6483426,-0.4381583,0.14225043,-0.1290178,-0.0130873965,-0.22900613,0.26523718,0.11094625,-0.005288769,0.01606425,-0.08116986,-0.045555312,-0.25989896,0.3389956,0.11610383,0.58272207,0.3415043,0.013137,0.11018909,0.6116724,0.6217452,0.06019095,0.71205646,0.32472423,-0.119790874,0.31644025,-0.19889198,-0.09178763,-0.45005533,-0.3702212,-0.13220714,-0.31938356,-0.52738,-0.057572246,-0.34409484,-0.705854,0.27951,0.16060056,0.018384645,0.046619333,0.30747724,0.45016408,-0.17420118,0.06854959,-0.028437618,-0.08070786,-0.64072675,-0.4261305,-0.63710266,-0.47268948,0.16343041,1.0583843,-0.19773997,-0.13889137,-0.12914371,-0.28726846,-0.08612188,0.22560365,0.018130656,0.19640912,0.34103426,-0.30140015,-0.80391484,0.57374555,-0.21566913,-0.05175216,-0.49059612,0.0874486,0.4545409,-0.70184743,0.2986506,0.3110991,0.09103326,0.16437873,-0.32376167,-0.26678327,-0.07709223,-0.26688507,0.22185786,-0.023875728,-0.7292891,0.40870067,0.3095363,-0.20976844,-0.71466523,0.5276121,0.13177727,-0.20465958,0.0697126,0.21086751,0.16767628,-0.0885641,-0.2025954,0.14513016,-0.47519857,0.39087453,0.32588392,0.12794212,0.08272714,-0.27055642,-0.20459768,-0.67355984,-0.20337558,-0.2917333,-0.05104404,0.21828733,0.09126334,0.22992297,0.17220013,0.14240703,0.26436943,-0.2275569,0.059751175,-0.075257406,-0.29750198,0.29736826,0.34064752,0.3119579,-0.50917375,0.5817534,-0.041264314,-0.003646144,-0.046759784,0.06155359,0.39732566,0.1597134,0.4688,0.086519755,-0.30639777,0.2739494,0.91781706,0.3789946,0.24703096,0.13342337,-0.17892054,0.30940625,0.09306189,0.058361106,0.22559237,-0.5021229,-0.053520646,-0.17190002,0.15087168,0.39659324,0.07837837,0.21580578,-0.07230176,-0.2164581,-0.029244807,0.043216202,0.044369582,-1.2399777,0.48756647,0.3438926,0.75472766,0.52044696,-0.1737128,0.075447366,0.58775276,-0.16578582,0.2634404,0.27672273,-0.28892294,-0.53258264,0.4031646,-0.559507,0.61353976,-0.06949032,0.029643008,0.06632038,-0.08538739,0.31611776,1.0362886,-0.23357406,0.07792287,0.10866026,-0.4114302,0.22828004,-0.38982153,-0.0027812123,-0.70040935,-0.16414197,0.6113343,0.41901925,0.11996733,0.052105155,-0.0023631975,0.007119396,-0.13589457,0.16728266,-0.0041775447,0.13980062,-0.030139128,-0.7003783,-0.20577069,0.54039997,-0.15723002,0.2415435,0.25121647,-0.17443337,0.36967987,-0.082638755,0.012531452,-0.20956731,-0.5101409,0.008337106,-0.18236116,-0.20999178,0.41256377,-0.028928343,0.37363657,0.23824444,0.081092134,-0.31795308,0.37694576,0.047500484,0.5274994,-0.007817413,-0.32172948,-0.47456455,0.088696636,0.18316555,-0.25518316,0.082669504,-0.28612635,-0.1302842,-0.7908155,0.4666755,-0.00020213638,-0.25796127,0.15879002,-0.12655236,0.02350544,0.48327044,-0.056458175,-0.13039574,-0.08095123,0.091896005,-0.086072154,0.0713629,-0.10074549,0.22265856,0.046682008,-0.06924115,-0.117704906,-0.13791595,0.03308413,0.3729278,-0.023736274,0.37530518,0.23690894,0.12689593,-0.3428749,-0.08976887,0.27613607,0.4916556,0.07701112,-0.035756387,-0.052915145,-0.19730647,-0.3678393,0.064622924,-0.21229468,0.33136916,0.17502871,-0.38382545,0.5275865,-0.12597148,1.3792799,0.06945937,-0.31267843,0.086786985,0.6105134,0.08275799,0.052472044,-0.28147,0.84165984,0.48664507,-0.12727574,-0.19626155,-0.35479927,0.09212633,0.22101244,-0.1654173,-0.24228738,0.13700412,-0.6381172,-0.28056738,0.10907408,0.16428259,0.30428043,-0.029138407,-0.08848059,0.2022324,-0.043001838,0.36494783,-0.5698825,-0.24841377,0.23233427,0.27542487,0.06054262,0.105835356,-0.5245411,0.46689343,-0.5119722,0.071948014,-0.11618084,0.13039063,-0.22589697,-0.270516,0.28574854,0.23432074,0.40287563,-0.2437989,-0.38433293,-0.35028315,0.5578755,0.16952841,0.26087362,0.59251106,-0.17646606,-0.16914184,0.14360155,0.41708803,0.9500321,-0.24049915,0.01700442,0.41261634,-0.4425413,-0.45261267,0.23841187,-0.31104258,0.08952244,0.16724338,-0.22443832,-0.60672647,0.35526276,0.19113347,-0.05849431,0.16443653,-0.6437277,-0.32030982,0.14343795,-0.32826573,-0.42497465,-0.45680207,0.2383606,0.60619676,-0.42889684,-0.08991202,0.20820156,0.12229563,-0.3020541,-0.63520986,-0.010084225,-0.43169895,0.399831,0.13584308,-0.26627824,-0.16508792,-0.039588623,-0.39481667,0.27964535,0.23522142,-0.44098458,0.0778627,-0.37022546,-0.28265816,0.8298831,-0.09162295,0.17705737,-0.5449863,-0.23628037,-0.76602453,-0.4636869,0.6593016,0.20833349,-0.11635566,-0.4164599,-0.24073628,0.14246896,-0.13184814,-0.075088754,-0.48802114,0.5025162,0.07634127,0.21211858,0.020949427,-1.0529773,-0.005373712,0.20512421,-0.282319,-0.51445544,0.40423244,-0.0902464,0.94221085,0.1443434,0.091494076,0.43469253,-0.43825206,0.026743433,-0.28759104,0.029625697,-0.58727163,0.14386389,217 -385,0.39639762,-0.36132666,-0.14507058,-0.20578752,-0.327534,0.19052842,-0.18345799,0.415987,0.4007311,-0.4735767,-0.30340555,-0.27439973,0.16504776,0.58916235,-0.2196802,-0.67744213,-0.060748164,0.053471226,-0.39526558,0.55091304,-0.4140912,0.32657248,0.07876753,0.2782262,0.15405782,0.2674074,0.45272985,-0.12641649,0.010849382,-0.17338622,0.021427244,0.11951872,-0.620685,0.23238781,-0.25010183,-0.48798922,0.19541514,-0.648202,-0.3838894,-0.72063607,0.33656392,-0.8687723,0.49582863,0.14184377,-0.048756484,0.42717487,0.21103534,0.32510373,-0.17023376,-0.049086843,0.047789566,-0.045748364,-0.083998926,-0.074604824,-0.23176305,-0.45665047,-0.64616406,0.05472803,-0.30155846,-0.2335547,-0.18704264,0.0014802387,-0.2642799,0.19567259,0.063988514,0.39095002,-0.45730332,-0.020104425,0.3343728,-0.19772317,0.09661221,-0.51763374,-0.25062767,-0.14078529,0.22012486,-0.2463418,-0.11450632,0.36005265,0.36844525,0.40578637,0.051557545,-0.24975245,-0.34763297,-0.16277981,0.16059491,0.5742666,-0.10347892,-0.55192786,-0.22666936,0.03670737,0.21606116,0.16792892,0.22904758,-0.16955063,-0.035842035,-0.06639256,-0.35368648,0.46956205,0.40120903,-0.39400774,-0.48579785,0.18298419,0.56657565,-0.045216,-0.023022711,-0.028799454,0.11009359,-0.47870132,-0.20002596,0.12527081,-0.28533798,0.49835473,-0.21528761,0.1591607,0.6485282,-0.38567662,0.050055657,0.022025883,-0.00680929,-0.38683578,-0.20686351,-0.30329585,0.3096928,-0.58747596,0.15116116,-0.35851988,0.8769373,0.27437827,-0.58750045,0.30884674,-0.53938717,0.111452855,-0.10024105,0.46824497,0.51642126,0.3387724,0.3161413,0.6616941,-0.50788873,0.10334885,-0.16442935,-0.32886034,-0.0915417,-0.2208991,0.017475596,-0.43366438,0.08367617,0.00629695,-0.09301643,0.22482894,0.21645777,-0.4957068,-0.072234906,0.26329836,0.87779754,-0.3025671,-0.07270182,0.9057065,1.119361,1.0187899,0.029611964,1.2353047,0.48648888,-0.2366952,0.13950236,-0.26795754,-0.72541696,0.14297272,0.4585406,-0.15885971,0.3138397,-0.018765092,-0.005515699,0.15820499,-0.5336409,0.034891937,-0.03182477,0.18938944,0.21447489,-0.004676414,-0.47423837,-0.2356685,0.024261829,-0.13711444,0.26925465,0.27679294,-0.0934164,0.5094448,0.16996871,1.1175768,0.06761473,0.08481906,-0.004479986,0.58896095,0.2743931,-0.0399721,0.043308727,0.13812174,0.30552274,-0.0032534727,-0.699704,0.15152897,-0.2543198,-0.3691828,-0.20928586,-0.30442283,-0.049540345,0.19790074,-0.17846693,-0.18820868,-0.13629584,-0.04226319,0.5102349,-2.6602442,-0.25646228,-0.15450643,0.20556481,-0.27019063,-0.26763067,0.04980613,-0.6417451,0.33608177,0.35621196,0.42381102,-0.68782634,0.18300949,0.5648723,-0.80042523,-0.13397652,-0.650813,-0.17166185,-0.09870811,0.40937915,0.14272974,0.07206786,-0.069877,0.27949423,0.49670428,0.078063354,0.15108876,0.11135527,0.36089638,0.10396366,0.4265963,0.046156954,0.5319939,-0.35036448,-0.17191026,0.32547545,-0.35052377,0.2679207,-0.25593427,0.07743524,0.45858505,-0.31496027,-0.83579457,-0.7235473,-0.4735722,1.0964661,-0.12671971,-0.35883608,0.04310003,-0.051731136,-0.11264598,-0.10943944,0.45734453,-0.2557443,-0.069591865,-0.7571353,0.07910565,0.16850154,0.09335887,-0.0009208992,0.030265842,-0.44005838,0.58462185,-0.047332074,0.22777711,0.24220705,0.27745205,-0.26663327,-0.5041268,0.031458966,0.80827075,0.3764093,0.18479596,-0.25657693,-0.26557094,-0.22613573,-0.18281113,-0.04886778,0.38005516,0.6293512,-0.12603296,0.050417136,0.300391,0.027610967,0.26531082,-0.13222125,-0.31774607,-0.05461225,-0.06378128,0.5689438,0.5639432,-0.25614694,0.29859638,-0.10378521,0.4255573,-0.079252414,-0.39850086,0.6653636,0.927352,-0.10549008,-0.18414834,0.63968533,0.41404626,-0.30389196,0.44601038,-0.6433523,-0.23172082,0.44124505,-0.19643223,-0.3957655,0.014947721,-0.25099903,0.07256509,-0.8938239,0.27404395,-0.21392703,-0.09583443,-0.51593554,-0.06478186,-3.8832943,0.058366008,-0.21186529,-0.10859907,-0.01294695,-0.10556128,0.12806995,-0.48162484,-0.5596818,0.37853408,0.055440903,0.56321895,-0.07322893,0.24884804,-0.31033948,-0.26623872,-0.5789884,0.13617674,0.043590687,0.27774686,-0.035918925,-0.4516678,0.2172347,-0.23746607,-0.4569803,0.1800751,-0.467309,-0.29273912,-0.30763596,-0.43293476,-0.3782476,0.56563836,-0.24529423,0.12683131,-0.19457631,0.103342995,-0.2528866,0.3205095,0.106888495,0.0849867,0.12600055,-0.04148381,0.021217847,-0.34356388,0.6200276,0.09740918,0.25400385,0.27328205,-0.11445312,0.029400263,0.4607961,0.5999331,0.048891716,0.8874535,0.2828323,-0.045280665,0.32555413,-0.2084967,-0.3767912,-0.4179619,-0.23109452,-0.16314574,-0.28651044,-0.5668611,-0.042014282,-0.37610775,-0.6707408,0.5912793,0.040294744,0.12597097,-0.13098589,0.13324235,0.36977836,-0.22840574,0.11857773,0.022586474,-0.08101444,-0.5270489,-0.3209987,-0.683256,-0.43013173,0.19302239,0.6507516,-0.12373902,-0.03754923,-0.17767629,-0.14431836,0.08961376,0.12495161,0.0115406215,0.017871669,0.41962105,0.018229485,-0.7211133,0.56441444,0.07912479,-0.22705166,-0.7216396,0.25847706,0.5665113,-0.6849483,0.51595217,0.43943277,-0.037193768,-0.03362042,-0.28734198,-0.3173837,-0.011337987,-0.2105895,0.22197984,0.20579584,-0.7654525,0.4346223,0.35434252,-0.34266558,-0.75853,0.5943743,0.09009983,-0.12784517,0.09266734,0.2463881,0.36734357,0.03157996,-0.18407147,0.10818215,-0.45949036,0.0867715,0.027403653,0.014172039,0.53332114,-0.10685078,-0.10301285,-0.88605917,-0.061122544,-0.41342688,-0.23823634,0.10804599,0.15867867,-0.035400536,0.23563519,0.15168093,0.3345173,-0.18010113,0.05692243,-0.024631625,-0.2647431,0.27777654,0.32657138,0.39582327,-0.28934857,0.6897985,-0.024004603,-0.08051318,0.21867535,-0.12004113,0.3217575,0.18533804,0.35675448,0.34604535,-0.24043223,0.19691756,0.72246283,0.113413095,0.2817383,0.19022267,-0.07017965,0.4706082,0.046649445,0.030249715,0.24553044,-0.45866632,-0.1276885,-0.18929939,-0.09105252,0.5747758,0.12535761,0.4527235,-0.065451615,-0.38855362,-0.011773901,0.083074585,0.1338916,-1.2337257,0.030317992,-0.02295144,0.71211714,0.6686055,-0.12742,0.034424596,0.7092164,-0.27348927,0.019359674,0.4360433,0.08746446,-0.4081592,0.6481303,-0.56772995,0.5342276,-0.046300106,-0.056884527,-0.033191014,0.051585443,0.2436578,0.80092084,-0.22269347,0.034814768,-0.008222149,-0.37427357,0.20871027,-0.497897,0.15704067,-0.4077979,-0.12397679,0.6190986,0.33671013,0.36985186,-0.104818515,-0.011607151,0.082334094,-0.15178487,0.18237524,0.029929949,0.03141436,-0.10413348,-0.53548735,-0.23933819,0.64053744,0.035827238,0.24679157,-0.026028702,-0.26840526,0.23485994,-0.21422938,-0.10939194,0.0067707705,-0.81959355,-0.13429882,-0.10107737,-0.51363134,0.5284082,0.0071383035,0.2167125,0.24317701,0.026063045,-0.30788615,0.2281374,0.167616,0.79721504,0.12002814,-0.24081966,-0.2487456,-0.020440336,0.22613502,-0.18340646,0.29086712,-0.16970325,0.0053145885,-0.47814637,0.6168495,-0.121717334,-0.30618554,-0.0030980152,-0.16128214,0.049955394,0.50985163,-0.22251788,-0.15101525,0.01938057,-0.14692746,-0.20426819,-0.2730568,-0.23181327,0.21624026,0.22436269,-0.022248833,-0.11995973,-0.3390117,-0.15509899,0.53935945,0.011813911,0.2667952,0.24646732,0.12004113,-0.42880604,-0.055160593,-0.0043816566,0.32620472,-0.18710068,-0.27574483,-0.22252133,-0.52275884,-0.26819205,0.10617377,0.006155561,0.16755769,-0.08474815,-0.44388595,0.61006624,-0.045914996,1.0735035,0.031735756,-0.471925,0.10826898,0.494106,0.040963344,-0.043689273,-0.37204653,0.93858445,0.4854997,-0.084508374,-0.2527166,-0.50416785,0.10853873,0.1405081,-0.19425459,-0.076998785,-0.01642235,-0.52328116,-0.33472833,0.23039332,0.34511632,0.17126206,0.0241375,0.21361582,0.14631914,0.15480308,0.711938,-0.47245058,-0.20041992,0.3387699,0.36772636,0.04173994,0.08820189,-0.3539566,0.3735795,-0.5053433,0.19257304,-0.31748697,0.09092506,-0.34037024,-0.25019032,0.16429688,0.20623517,0.37767023,-0.30916375,-0.6500664,-0.21316783,0.4830154,0.113306776,0.14719644,0.5297842,-0.23510662,0.012033439,-0.014975041,0.66396993,1.1540511,-0.2076327,0.014939772,0.22932385,-0.48169687,-0.5270767,0.45308766,-0.273172,0.13021626,-0.033529527,-0.047874775,-0.62651557,0.22499765,0.18218757,0.090117395,0.1437781,-0.46619692,-0.38345167,0.39875895,-0.4928382,-0.2958753,-0.31177476,0.22287099,0.7726616,-0.2510887,-0.123956464,0.08129423,0.29416975,-0.25011557,-0.6136258,-0.30326024,-0.22845446,0.37455186,0.16420583,-0.07792229,-0.30565324,0.085370354,-0.45386943,-0.024864163,0.06049072,-0.384167,0.008153213,-0.24684289,0.022960898,0.74755484,-0.18233207,0.27794957,-0.8055339,-0.44462344,-0.91494304,-0.43986538,0.7371841,0.21951959,-0.0033984482,-0.53805393,-0.013910383,0.02200355,-0.082226045,0.08861327,-0.44294193,0.34697297,0.18239641,0.47108147,0.09334976,-0.72711754,0.003914695,0.007838423,-0.08733554,-0.54208356,0.31513008,0.05327013,0.97054386,0.13402234,-0.06791125,0.19590378,-0.36156872,0.12486364,-0.2868261,-0.31546327,-0.6085604,0.2611268,220 -386,0.7214715,-0.21937595,-0.5698045,0.09478138,-0.47278976,-0.006990471,-0.31622294,0.14819129,0.16639468,-0.49786478,-0.111076966,0.032706656,-0.17841123,0.20810832,0.006385318,-0.5552921,0.18086733,0.22980587,-0.7093719,0.93948036,-0.2959866,0.4576347,0.09542414,0.20491529,0.23144862,0.12827887,0.13561475,0.17908394,0.066176616,-0.20200515,-0.088734545,-0.06259838,-0.86761963,0.18938872,-0.24556912,-0.4658729,-0.16426921,-0.37594858,-0.4585929,-0.87929994,0.34084827,-0.96444184,0.63454837,0.06360046,-0.43306836,0.041049488,0.008802031,0.34460846,-0.16148472,0.16641656,0.33183217,-0.13754545,-0.20127772,-0.3001557,-0.19024336,-0.4390902,-0.55325353,0.028526668,-0.45704642,-0.078018986,-0.43494615,0.22714768,-0.38780084,-0.0013578066,-0.3261817,0.35040167,-0.46431756,-0.05585607,0.18970719,0.0032064659,0.29214916,-0.82398003,-0.18772887,-0.21978343,0.08529235,0.10505315,-0.20091888,0.34583205,0.23146386,0.68834025,0.15283248,-0.50259703,-0.087183006,-0.01595882,0.21467267,0.427398,-0.29680008,-0.094773434,-0.42672944,0.14082853,0.5541077,0.1642735,0.14629899,-0.41279522,0.006519437,0.014814079,-0.022804366,0.45384333,0.4694532,-0.39276847,-0.14128318,0.15707366,0.557938,0.15275314,-0.19462577,0.094342604,-0.1608684,-0.4334372,-0.15475695,0.26589483,-0.30906147,0.5821457,-0.05956155,0.016974373,0.56582963,-0.31480476,-0.09051542,0.1794395,0.032279212,0.19930372,-0.3584885,-0.3539726,0.42421347,-0.7811521,0.13268828,-0.36765346,0.5461985,0.047126703,-0.68386286,0.21657284,-0.53062475,0.23000322,0.0073706633,0.6107416,0.9080865,0.47738045,0.13294192,0.9537229,-0.4247148,0.072789244,-0.069118574,-0.18634082,-0.15721597,-0.22323923,0.088303916,-0.40325028,0.06019651,-0.31688815,-0.079905905,-0.06448234,0.5862326,-0.44313616,-0.2409475,0.20103942,0.71386,-0.28980038,0.21035473,0.8328353,1.1719465,1.2189208,0.044313405,1.1991247,0.3546073,-0.11955234,-0.07508937,-0.025569575,-0.61799437,0.05942026,0.36039454,0.16437547,0.39154452,0.099297784,-0.14664795,0.34386566,-0.5821433,-0.05264466,-0.26780304,0.2910853,-0.028780477,-0.21280043,-0.5949809,-0.05743025,-0.09035409,0.21076,-0.06933111,0.26810712,-0.33221012,0.2763388,0.02176497,0.9768478,-0.38811037,-0.049716838,0.11787723,0.4642034,0.3956596,-0.2367164,0.016078379,0.09827431,0.40716925,0.027146239,-0.5725885,-0.0064547337,-0.4506031,-0.3117776,-0.23694631,-0.103373565,0.1932886,0.15112007,-0.2788107,-0.4852161,0.077930234,-0.31810147,0.34685352,-2.132174,-0.22225282,-0.35112783,0.24195406,-0.24863403,-0.35896015,0.028180514,-0.64741695,0.5203367,0.1733407,0.46315902,-0.60804826,0.39437014,0.46431717,-0.73240346,0.107003175,-0.6839689,-0.27520892,0.0066055614,0.6403833,-0.027835667,-0.3650141,-0.089029886,0.10984746,0.8078332,0.106957026,0.06522316,0.41500404,0.30013576,-0.16464849,0.3994306,0.14378117,0.5690413,-0.31405973,-0.2511325,0.6373576,-0.061612185,0.21817075,-0.2707173,0.03131088,0.58443433,-0.5025315,-0.7948769,-0.66591835,-0.25792792,1.363344,-0.3183659,-0.7806917,0.2673083,-0.29911,-0.055020154,-0.045569934,0.3105076,0.038954694,0.1049779,-0.69496554,0.082675114,-0.006117412,0.11935293,-0.038531598,-0.082262225,-0.4740301,0.8228292,-0.05228079,0.3785112,0.4360254,0.4103209,0.004996913,-0.44668362,-0.030131996,1.0517612,0.6672173,-0.005578854,-0.48888764,0.0015444244,-0.22588572,-0.30406204,0.1403751,0.5585338,0.86584455,-0.18888451,-0.057141893,0.20200072,-0.039599974,0.13333541,-0.13015085,-0.3584106,-0.27307007,0.09705584,0.58803165,0.6039329,0.009741596,0.42119274,-0.20303328,0.19389462,0.15499671,-0.63532346,0.5459553,1.3487366,-0.17283769,-0.17782174,0.6737932,0.42359164,-0.36785388,0.6472608,-0.6599112,-0.31914464,0.4397656,-0.069090426,-0.4054186,0.18608306,-0.5816588,0.29507494,-0.7576786,0.35402623,-0.5777317,-0.52469265,-0.4398927,-0.23344953,-2.6218116,0.39007634,-0.4196308,0.078077085,-0.19425811,-0.39385468,0.24731112,-0.4616373,-0.52357215,0.12209866,0.048520274,0.6573195,-0.08118551,-0.010079748,-0.19282666,-0.30713218,-0.31084937,0.22987828,0.25741693,0.25982466,-0.22404914,-0.36477706,-0.05490991,-0.09128772,-0.35952955,-0.1503488,-0.7466188,-0.3848757,-0.30917946,-0.58558273,-0.28130162,0.5059946,-0.047384746,0.17886065,-0.36764047,0.06184458,0.05336552,0.23975447,0.06410342,0.45120245,0.15197904,-0.12909614,-0.059480112,-0.3292282,0.24089582,0.2469347,0.3253183,0.16517952,-0.23943686,0.13476305,0.3869957,0.73034775,-0.2886866,0.9085613,0.5748517,-0.30150342,0.33559602,-0.07890623,-0.6048396,-1.0081142,-0.32521835,-0.06804518,-0.3561677,-0.4607462,0.057289835,-0.43515715,-0.9224927,0.5136742,-0.06821348,0.47429463,0.101481184,0.29257965,0.4074983,-0.26252788,-0.17647259,-0.1414768,-0.14992067,-0.4654362,-0.32013306,-0.7416649,-0.58615303,-0.15169564,1.1402605,-0.21040471,0.03868451,0.2950762,-0.27819338,0.27523306,0.15817307,-0.010781942,-0.04099811,0.4783698,0.26185438,-0.6701904,0.30647165,0.28417864,-0.070378296,-0.47953507,0.5106757,0.6104154,-0.63262683,0.5999045,0.22824481,0.030296335,-0.05553525,-0.8410788,-0.153206,0.20677184,-0.3857773,0.56976914,0.3073097,-0.691717,0.34513298,0.4664857,-0.29252377,-0.6932403,0.5936418,-0.10707656,-0.3931155,-0.11353277,0.37214783,-0.07356005,-0.028552592,-0.15387177,0.28694025,-0.46703833,0.22443019,0.17804047,-0.23708494,-0.0082773315,-0.1852727,-0.46618673,-0.7371116,0.27638525,-0.6579097,-0.3699526,0.37528345,-0.012428931,-0.17376415,0.10890029,0.43479064,0.4590773,-0.06276906,0.26772955,-0.348784,-0.45930597,0.64136094,0.5693921,0.44617894,-0.49115393,0.6169545,0.09881734,-0.35323444,-0.12762795,0.21752277,0.5359949,0.028090682,0.30595595,-0.073852405,0.018188212,0.10519674,0.6255075,0.09715994,0.46867993,0.17701387,-0.011521825,0.18246111,0.09586789,0.1196224,-0.17323007,-0.51734847,-0.049162947,0.11582532,0.080277644,0.46825495,0.2073359,0.1648031,-0.18856311,-0.11286097,-0.06094004,0.0698511,0.0714669,-1.4520522,0.2806169,0.168344,0.66133934,0.49738407,0.025927847,-0.18504825,0.6276745,-0.17933811,-0.13801868,0.36703697,-0.044333708,-0.34884098,0.56504565,-0.6805424,0.27535707,-0.039999068,0.079434864,0.21028535,0.10544894,0.5229164,0.86330575,-0.19782104,0.055609316,-0.2639931,-0.17110516,0.09012379,-0.24342766,0.10965706,-0.31373832,-0.54355067,0.8025621,0.3458729,0.36512616,-0.31615195,0.04525582,0.057279877,-0.31097093,0.49444818,-0.047698677,0.031601958,-0.058392186,-0.34754378,0.0016588952,0.33412313,0.020321446,0.008964513,-0.05762499,0.030673908,0.20956506,-0.052679628,-0.06988796,0.076359786,-1.0076168,0.12924479,-0.6218046,-0.32675526,0.4328375,-0.06538256,-0.0028791171,0.17217056,0.14503638,-0.20460466,0.23941362,0.011447213,0.7779841,0.071108855,-0.22739759,-0.18984035,0.28882208,0.03825918,-0.19623004,0.24091797,-0.04995626,0.086193345,-0.835983,0.6751174,-0.24976876,-0.2718679,0.27553788,-0.2054552,-0.22356105,0.36517242,-0.23637281,-0.19463877,0.12560049,-0.1482666,-0.38025665,-0.4380754,0.041340616,0.11283381,0.070287004,-0.035025496,-0.11717836,-0.11479474,0.073057435,0.6430784,0.15737928,0.22506441,0.18605135,0.16418825,-0.60321826,0.056001987,0.40865567,0.497674,-0.19501449,0.065300204,-0.20378213,-0.470598,-0.41403666,-0.035590224,0.010775216,0.3962713,0.013509448,-0.1607467,0.98290664,0.39972258,1.3556093,-0.12949392,-0.38724503,-0.056291077,0.6553469,-0.28517473,-0.16747649,-0.29195803,0.88594943,0.63556683,0.04215323,-0.06266035,-0.6121753,-0.14835943,0.1656177,-0.37248844,-0.011062041,-0.15759575,-0.5357137,-0.34641027,0.18338397,0.43735686,0.004955036,-0.08427591,0.09773655,0.33934477,0.0052245897,0.2420282,-0.44888538,-0.19153617,0.2941487,0.15706618,-0.1254648,0.21921621,-0.40164185,0.18776187,-0.71823865,0.082916856,-0.09079932,0.07478344,0.037338357,-0.2983337,0.2876466,0.034997292,0.25152493,-0.53889173,-0.25796244,-0.055224035,0.39308208,0.09237281,0.17321576,0.7006127,-0.248781,0.08639254,-0.005440693,0.34118706,1.1589066,-0.16847293,0.114193395,0.022759,-0.49683258,-0.7006821,0.40134224,-0.2697644,0.08460375,-0.030975077,-0.3851525,-0.6099748,0.21723835,0.08810671,-0.12206919,-0.015415455,-0.69555634,-0.26132172,0.10573424,-0.2231092,-0.1528795,-0.31051975,0.40449277,0.63464415,-0.109164976,-0.48732233,0.03850469,0.13120942,-0.19448893,-0.5981623,0.0700372,-0.25592703,0.16765952,0.13798417,-0.3963615,0.08083481,0.14689268,-0.60094583,-0.113873124,0.28590328,-0.28558442,0.018408274,-0.31621107,0.04445094,0.8868989,-0.14812736,0.048194654,-0.33680344,-0.6795683,-0.8035684,-0.47350407,0.25890785,0.3472123,0.13611528,-0.5516883,-0.140226,-0.3755757,0.19801815,-0.0014781313,-0.38985783,0.39571133,0.18211494,0.50673527,-0.19220045,-0.68631035,0.3082896,0.14887346,0.036452897,-0.4022699,0.44386858,0.10022398,0.6682573,0.1453681,0.052474294,0.03136584,-0.70587987,0.1370171,-0.16068818,-0.21102378,-0.7554268,-0.1316687,221 -387,0.38256925,-0.035365827,-0.44740888,-0.1986098,-0.37818384,-0.0038397142,-0.33357957,0.021507557,0.11733995,-0.5026789,0.03251683,-0.1435969,-0.17424642,0.2769042,-0.25868383,-0.6610733,-0.20643698,0.059024572,-0.44630906,0.4030685,-0.5164184,0.45387092,-0.01518075,0.40624812,-0.19128516,0.384322,0.35174164,-0.17437756,-0.096627526,-0.17022859,-0.06256784,-0.09547526,-0.66140956,0.3254201,-0.12275659,-0.4523299,0.15743805,-0.40361473,-0.17272906,-0.6036641,0.32220006,-0.6390308,0.4643423,0.024254007,-0.13026837,0.020441135,0.086486235,0.0405839,-0.21525969,0.12248732,0.37015483,-0.19545135,0.053710725,-0.3561547,-0.35145876,-0.6534749,-0.49545243,0.021288788,-0.6414443,-0.062135573,-0.049329214,0.30787376,-0.24652705,-0.07468178,-0.1609998,0.3866162,-0.33654574,-0.09041997,0.023160884,-0.2350907,0.07643225,-0.36380443,-0.1494797,-0.18524994,0.30449644,-0.29984897,-0.066812046,0.22043599,-0.07373957,0.62183744,0.039496627,-0.10464171,-0.31516567,-0.016953776,0.13240966,0.54257697,-0.17060423,-0.3777472,-0.069040425,-0.1307719,0.18806712,0.20829819,-0.010835392,-0.33230305,0.15745409,-0.15076731,-0.25646433,0.3925846,0.48051924,-0.25240088,-0.19351129,0.39088717,0.4411904,-0.17031983,-0.2131137,0.09493375,0.036245674,-0.35863417,-0.30962542,0.21449436,-0.055854313,0.32072517,-0.045808494,0.34091002,0.70605236,-0.09190329,-0.05359655,-0.2298926,-0.20248304,-0.04841251,-0.18425514,-0.22956268,0.09405027,-0.3041432,-0.11373592,-0.26646316,0.83266795,0.107163064,-1.0095017,0.41044968,-0.5157334,-0.058171444,-0.037877176,0.66931194,0.5006604,0.48065397,0.14136516,0.7309211,-0.5631158,0.22508952,0.14282463,-0.33367962,-0.041427355,-0.095568255,0.122293994,-0.34374198,0.057636198,-0.07512181,-0.038219504,-0.0061259354,0.46149716,-0.31789988,0.032094195,0.11724849,0.8075822,-0.3907981,0.117273085,0.8154472,1.0851195,0.98343277,0.18138956,1.4532492,0.32591933,-0.1821744,-0.037765462,-0.35969052,-0.63216877,0.118835665,0.3727323,0.1858736,0.30384475,0.128553,0.14675753,0.35036477,-0.50149816,-0.01320682,-0.072441034,0.34667078,0.020662399,0.01780734,-0.353296,-0.16666634,0.13435803,-0.028346429,0.004492781,0.31160513,-0.24384151,0.3971119,0.20403512,1.4532801,0.027301995,0.15926406,0.10609184,0.3901706,0.15108123,-0.12114437,0.013588471,0.17479087,0.20949887,-0.19392617,-0.58480275,-0.15986843,-0.24270728,-0.5278332,-0.40380785,-0.16800764,-0.1485138,-0.26508793,-0.2878255,-0.19167331,-0.008597136,-0.3798117,0.35274628,-2.2236354,-0.1670665,-0.23370874,0.42712477,-0.19085646,-0.3579545,-0.15009928,-0.39599195,0.43893406,0.40271297,0.41947344,-0.4561255,0.5363587,0.4230284,-0.33123803,-0.24131873,-0.65255076,0.019656124,-0.23893721,0.20543997,-0.13044743,-0.16869341,-0.38131097,0.0701802,0.42747498,-0.07466994,-0.15653814,0.22597277,0.6222515,0.21652487,0.50470763,0.1427501,0.5131245,-0.49529824,-0.09926223,0.38069466,-0.5420632,0.21986438,0.13397713,0.17462958,0.4326543,-0.67391205,-0.8370985,-0.8437079,-0.4937385,1.0335976,-0.117942385,-0.30201435,0.25264382,0.051436134,-0.4918905,0.019769805,0.49795014,-0.33388013,-0.0912221,-0.6885619,-0.0071666795,-0.18086727,0.51321346,0.034951966,0.25643143,-0.3580517,0.5557706,-0.21673968,0.4799672,0.42775103,0.195286,-0.2764487,-0.2658703,0.25787938,1.0227296,0.30062976,0.13664009,-0.045742687,-0.23589359,-0.044828575,-0.13323957,0.020271318,0.37960956,0.61185277,0.032018118,0.008349402,0.44195268,-0.25491172,0.088773645,-0.15220095,-0.2549389,-0.19742282,0.06540275,0.48610002,0.5751796,-0.19752026,0.35847664,-0.13647713,0.30285844,-0.25002834,-0.2818972,0.36471292,0.41838428,-0.02780045,-0.13516584,0.37324578,0.4741846,-0.36898068,0.42114967,-0.60224736,-0.3372221,0.35753146,-0.034380246,-0.34892732,-0.054441597,-0.30803803,0.21457838,-0.86904,0.25745505,-0.14776476,-0.4941371,-0.8129922,-0.33836445,-2.5850415,0.115272984,-0.2100902,-0.10913497,-0.005081194,-0.040673856,0.17957054,-0.46428505,-0.5706829,0.17601326,0.020077381,0.431493,0.13736351,0.41654477,-0.21995641,-0.13643849,-0.43077248,0.34336558,0.21194255,0.25791785,0.14969315,-0.28441948,0.0009266074,-0.3868932,-0.39117366,-0.022953719,-0.54633904,-0.3910994,-0.08930819,-0.4683312,-0.2465959,0.7378572,-0.4585015,0.00080648914,-0.33143443,-0.18020149,-0.1831164,0.3590369,0.3254839,0.050315347,0.0677367,-0.03564257,-0.38805565,-0.29761428,0.22341058,-0.0031088314,0.10230793,0.37522596,-0.026393745,0.09686058,0.27257016,0.72760135,0.25936815,0.6926828,0.21201515,-0.13639499,0.45648393,-0.39125603,-0.2727946,-0.67766285,-0.38711983,0.06775146,-0.37862834,-0.40429708,-0.112628676,-0.41361102,-0.6193118,0.4429636,0.029351098,-0.17666121,0.087893195,0.42070994,0.19901554,-0.086942784,0.014775106,0.042583358,-0.09366058,-0.43790594,-0.58517975,-0.6874752,-0.49416402,-0.05161925,1.3759843,0.12365341,-0.2425327,0.17642196,-0.29229823,0.1160265,0.12593816,0.12968135,0.26062047,0.4202452,-0.027484234,-0.6447399,0.45161384,-0.13820608,-0.114306875,-0.4550149,-0.18911253,0.7972841,-0.7119664,0.3753306,0.34091812,0.2761095,0.14616786,-0.45421335,-0.20964094,0.1913602,-0.19839188,0.29056555,0.19100986,-0.48732972,0.5428553,0.053145144,-0.14644839,-0.7995919,0.25870556,0.2281517,-0.27723047,0.12914549,0.2810172,0.11236819,-0.1957415,-0.38646507,0.27663478,-0.2949491,0.22131968,0.17229356,-0.1566292,0.4666658,-0.3519409,-0.38382387,-0.5822647,-0.123334356,-0.33059445,-0.40624523,-0.07037665,0.04392332,0.09511363,0.22709231,-0.024501484,0.46215552,-0.42657903,0.08513397,-0.14878283,-0.16130432,0.14002515,0.2982433,0.2830333,-0.4692637,0.7580191,-0.0048734182,-0.055706415,-0.34877253,0.09745931,0.35329914,0.19911204,0.11485655,0.14184105,-0.20491923,0.20648037,0.6647086,0.27987465,0.33460018,0.16318305,-0.3048778,0.49450755,0.10671107,0.011682727,-0.11461934,-0.18532655,0.046112042,0.07281787,0.1200342,0.2560387,0.11675053,0.56989604,-0.24840762,-0.15975425,0.23115757,0.29358795,-0.23151274,-0.9613205,0.23112035,0.07960391,0.716591,0.5447365,-0.005881586,0.21615185,0.57229716,-0.46113303,0.056664165,0.11951143,0.029595375,-0.2170702,0.5605013,-0.25189307,0.4567804,-0.19637036,-0.09010546,-0.008844597,-0.004827644,0.26860175,0.89537746,-0.020787464,0.100958996,-0.016312549,-0.057312306,0.063676804,-0.13697231,0.09485107,-0.36637217,-0.26342806,0.7457498,0.19462569,0.4244917,-0.18166222,0.005465552,0.05070573,-0.11019778,0.21512564,-0.15163282,-0.17536111,0.104531646,-0.53366,-0.27162853,0.78356737,0.0050047124,0.02721594,0.20240422,-0.4712858,0.28128532,0.0426715,-0.035730608,0.028657198,-0.5455305,0.047193833,-0.35571998,-0.22866924,0.2083552,-0.21374585,0.32556984,0.14512111,0.038535003,-0.34173653,0.097259514,0.5773547,0.66278356,0.2366545,-0.07530339,-0.18317822,-0.04543834,0.30500913,-0.30375168,0.011360005,-0.30620915,0.17506325,-0.7217745,0.45536655,-0.0734728,-0.19536546,0.12511054,-0.19524027,0.1200039,0.4876388,-0.100577,-0.11856193,0.19928396,0.09397451,-0.22955962,-0.10947961,-0.4863128,0.25786218,0.13232729,-0.082314536,0.020624837,-0.1304158,-0.2527467,0.56308144,0.06504218,0.24958524,0.28122568,0.15295804,-0.52865165,-0.010532503,-0.29383308,0.36054352,0.02834834,-0.03971402,-0.12026145,-0.25312206,-0.046589177,0.4889349,-0.2681129,0.058671825,0.07772163,-0.59214514,0.73280746,0.17021224,1.1092378,0.12968302,-0.30800167,0.07879429,0.46459463,-0.02438235,0.2982772,-0.4564152,1.0787555,0.49450397,-0.14608482,-0.14607945,-0.329007,-0.27472192,0.14833944,-0.28069845,-0.27929494,-0.19566426,-0.6761087,-0.3217387,0.06897188,0.12167271,-0.10610286,-0.027183592,0.14326937,0.006338175,0.09907956,0.43060756,-0.60497326,0.07204709,0.3723473,0.15084656,0.10693116,0.22377174,-0.370312,0.4491791,-0.59246624,0.24955232,-0.64533913,0.15577595,0.03356836,-0.2440608,0.07506682,0.2335252,0.383255,-0.2383857,-0.4270119,-0.21066548,0.6328784,0.27936417,0.3805018,0.76816666,-0.27375707,0.0885734,-0.026577456,0.5268463,1.252191,-0.113140754,0.072468415,0.22643529,-0.4095833,-0.43141237,0.17695774,-0.5123032,-0.25569174,-0.095111765,-0.2473291,-0.43430117,0.2961493,0.13865732,-0.070412405,-0.031638406,-0.41825017,-0.27293625,0.58751583,-0.2274892,-0.27925536,-0.26601174,0.19273499,0.8477653,-0.1919227,-0.2171321,0.05845544,0.3108783,-0.36230007,-0.6675569,-0.043232303,-0.40059805,0.543881,0.20541511,-0.13659723,-0.09114502,0.15126383,-0.45940223,0.08335926,0.31581613,-0.4383945,-0.12432037,-0.25767413,-0.055608742,0.8664803,0.11574783,0.15957324,-0.6436008,-0.44010672,-0.8653117,-0.25533488,0.34701225,0.24899396,0.008462802,-0.5244698,-0.043391358,-0.16197526,-0.10876894,0.16000566,-0.71212,0.21395156,0.26333427,0.59586793,-0.18012981,-0.9838669,-0.039576996,0.064829364,-0.3498822,-0.4125763,0.30437544,0.18475701,0.7795896,0.06695329,-0.03448879,0.12742113,-0.58840376,0.43406382,-0.32857066,-0.19204186,-0.5655297,0.17610712,222 -388,0.46819553,-0.23432639,-0.4982405,-0.15851773,-0.23801748,0.03845964,-0.17643435,0.34395522,0.29914206,-0.51332366,-0.13633005,-0.2848968,-0.02606486,0.18423022,-0.12730289,-0.5764701,-0.048734777,0.078343384,-0.4655056,0.49130383,-0.36396292,0.23546752,-0.00032781702,0.3085356,0.10411072,0.3397029,0.008640981,-0.24222156,-0.067944475,-0.3105406,-0.024651399,0.1238456,-0.5690147,0.29159927,0.013436879,-0.18151543,-0.008496855,-0.41919613,-0.44917727,-0.79257256,0.15498385,-0.8796793,0.43623045,0.09781361,-0.31143156,0.19277875,0.1987318,0.38741687,-0.12283766,0.06409318,0.38073984,-0.10350637,-0.05518083,-0.09299125,-0.112109,-0.56029147,-0.5635162,-0.14551659,-0.28198424,-0.22075741,-0.3979502,0.10242139,-0.330821,-0.16659178,-0.13195434,0.57878214,-0.48597234,0.21623707,0.23804785,-0.15740465,0.6729292,-0.4637178,-0.16972198,-0.16565564,0.25881055,-0.23339452,-0.25207365,0.20546107,0.37789822,0.19873276,0.018595705,-0.107012115,-0.25028595,-0.0146334935,0.346869,0.5296219,-0.08261984,-0.3349891,-0.06379304,-0.00088950567,0.042438287,0.23798871,0.14884447,-0.4787689,-0.14405362,0.09863878,-0.22059932,0.45413813,0.44977817,-0.10264613,-0.16320145,0.30692267,0.44422722,0.17409499,-0.20781355,0.05424822,0.06560521,-0.47730085,-0.16039796,0.07970171,-0.2565418,0.43240842,-0.25806642,0.17694858,0.79418117,-0.25258985,-0.066192865,0.11300218,0.0016385956,-0.0954288,-0.23514673,-0.2427787,0.22494258,-0.48611543,0.21544483,-0.06319632,0.6481255,0.08698566,-0.67549604,0.28593847,-0.60336125,0.014519347,-0.26826423,0.42879158,0.5617199,0.4106076,0.31386283,0.61775535,-0.44382903,0.036265314,-0.11565137,-0.48474863,0.095701836,-0.16892746,-0.036193285,-0.54573566,-0.20006125,0.0011378527,-0.16965704,0.005888943,0.28522775,-0.4992164,0.02471757,0.14537366,0.8678412,-0.28163686,-0.023030391,0.59433454,0.9413331,0.8882713,0.24210525,1.0635949,0.19415805,-0.17889918,0.13236201,-0.27225032,-0.6663535,0.38167104,0.4203516,-0.47904816,0.21635981,0.17600812,0.08164026,0.36075693,-0.30772844,0.18726549,-0.25807545,0.24193771,0.09692663,-0.27856213,-0.34870166,-0.25304326,-0.044660024,0.085738555,-0.011698459,0.13708247,-0.09292233,0.20259799,0.1778778,1.4287864,-0.08348059,0.02094091,0.0281885,0.40568808,0.17708357,-0.17725532,-0.038682323,0.4063873,0.30795723,0.26727593,-0.5882508,0.23302694,-0.05717705,-0.36956766,-0.18082762,-0.29493546,-0.008519639,-0.04094771,-0.39067173,-0.053923257,-0.07267936,-0.2884064,0.4916918,-2.6708882,-0.115876794,-0.17698063,0.3228326,-0.2549129,-0.24953143,-0.05012711,-0.429841,0.43803126,0.26612654,0.4900953,-0.6525877,0.38759735,0.601874,-0.5785771,-0.13577195,-0.5806187,-0.15547787,-0.1505816,0.33431837,0.1360902,0.13581035,-9.289384e-05,0.25611824,0.412623,-0.07396387,0.13688397,0.20318969,0.39606974,0.02327153,0.6439633,0.07593813,0.5362188,-0.023421125,-0.19932756,0.2558927,-0.24022685,0.119170405,-0.06503609,-0.0006051617,0.41637775,-0.28297472,-0.7766285,-0.6959075,-0.5455885,1.130821,-0.16094379,-0.38400102,0.3208835,-0.23855059,-0.41043147,0.040873844,0.37631968,-0.07920524,0.11901874,-0.9440759,0.03251766,-0.13461661,0.21559832,0.07583151,-0.15610948,-0.54559004,0.8029431,0.015204336,0.40640965,0.39364833,0.13778618,-0.28882033,-0.36311024,0.059837904,0.9284616,0.35359997,0.1605099,-0.27725628,-0.16459374,-0.2987767,-0.043456372,0.10888044,0.6401195,0.63545436,-0.15177648,0.14220679,0.17655405,-0.102327295,0.034382146,-0.16383256,-0.28447986,0.011537707,-0.013953532,0.496578,0.5932242,-0.09581301,0.58886445,-0.021792872,0.34361646,-0.100617416,-0.45388848,0.4470763,1.2997888,-0.12747759,-0.33016035,0.57487404,0.49226433,-0.19115397,0.35093215,-0.49671856,-0.15319039,0.41646576,-0.11051881,-0.55868024,0.23949364,-0.408623,0.20883977,-0.794254,0.4013192,-0.41452307,-0.6322616,-0.4562563,-0.114345215,-3.556639,0.2832687,-0.30586967,-0.25808448,-0.058414068,-0.058521155,0.3430798,-0.6181216,-0.6132194,0.23342057,-0.020591814,0.657176,-0.16571438,0.077859156,-0.17523582,-0.0881635,-0.11628522,0.2693185,0.099942006,0.23421578,-0.018161135,-0.5168146,-0.120993204,0.018835735,-0.469613,0.0045587677,-0.57935554,-0.59276456,-0.1032948,-0.516589,-0.25939128,0.5956837,-0.27914882,-0.026238693,-0.11678153,0.022433119,-0.11440546,0.3322997,0.07158553,0.09319173,0.051692903,0.07047156,-0.1274326,-0.22081113,0.32021597,0.12434207,0.25123873,0.26760286,-0.12735906,0.18283455,0.49375233,0.5964312,-0.094396584,0.82965887,0.38657364,-0.20596111,0.24027827,-0.32546785,-0.25795937,-0.5659382,-0.33990055,-0.023446733,-0.35715994,-0.58341736,-0.087160006,-0.36221415,-0.69252545,0.5641063,0.06869026,-0.045956858,-0.08517753,0.06283411,0.3402322,-0.07330652,-0.061190136,-0.034782495,-0.15470357,-0.61039066,-0.19045356,-0.4810264,-0.36481673,0.010341917,0.9265138,-0.224147,0.08779146,-0.050442774,-0.3100069,-0.018091304,0.17417237,-0.10835803,0.11037034,0.43440074,-0.016407505,-0.6495365,0.45568997,-0.082732774,-0.14115125,-0.6878562,0.2929921,0.8820982,-0.5917694,0.6657662,0.30534878,-0.028626125,-0.24420418,-0.43268707,-0.25719923,0.017756948,-0.34882355,0.5135717,0.094802335,-0.6875998,0.3465539,0.434717,-0.23598203,-0.61435384,0.6988843,-0.14953025,-0.25120267,-0.043141734,0.31695843,0.025115864,0.11431607,-0.12866256,0.40279537,-0.2339985,0.23250858,0.3002796,-0.056033585,0.12966983,-0.07221157,0.074292734,-0.8327809,-0.07290394,-0.34794062,-0.31832156,0.2234127,0.04414395,0.02889216,0.3836858,0.013387867,0.3338221,-0.23570575,0.08970316,-0.15212579,-0.27824092,0.24710621,0.4173879,0.3921793,-0.3853361,0.5849659,0.08494788,-0.064973466,-0.12330585,0.058555756,0.50591505,0.09258066,0.5158414,-0.13201514,-0.14422236,0.41667634,0.84558296,0.12944277,0.6392292,0.08044902,-0.08121427,0.112155505,0.075849704,0.3600607,-0.09539253,-0.64923626,0.07770772,-0.3391864,0.18469821,0.35890156,0.16547404,0.18810534,-0.041090112,-0.42347616,0.0026958287,0.21962357,0.21050282,-1.2542344,0.53388596,0.3611886,0.7167539,0.45646566,-0.022204487,0.10576703,0.69006383,-0.22909978,0.079418175,0.3072453,0.059372433,-0.49524823,0.3764794,-0.8951066,0.28559357,-0.020370629,-0.13089488,0.010710475,-0.0757785,0.38167238,0.822528,-0.17778675,0.05990495,-0.028092671,-0.33996576,0.25212297,-0.432882,0.10883957,-0.55304015,-0.43463722,0.59374374,0.66097695,0.39326254,-0.111978345,0.12843072,0.08820623,-0.081258416,0.12792377,0.22317769,-0.018813714,0.08504838,-0.7956194,-0.124741614,0.4672866,-0.07621292,0.17804496,-0.087205715,-0.17103942,0.25023586,-0.21312821,0.11625482,-0.074545845,-0.7431428,-0.11238809,-0.29681155,-0.40031686,0.36068243,-0.09844393,0.23359366,0.10218757,0.027618289,-0.057015877,0.35461193,0.18262336,0.6665083,0.13259266,-0.012597288,-0.3660365,0.14926669,0.11617152,-0.11298212,-0.1406493,-0.33870634,0.039325632,-0.5886845,0.34292886,-0.03837459,-0.46470788,0.16272333,-0.16383243,0.0034146372,0.56690675,-0.15682782,-0.28544194,0.08507885,-0.25569376,-0.07806657,-0.11785651,-0.06553338,0.34964642,0.24739303,0.05403306,-0.11153988,-0.045584355,-0.2981582,0.35993034,0.11319191,0.5716443,0.41886696,0.017860148,-0.26060745,-0.20568107,0.061454695,0.5437133,-0.06476797,-0.048120983,-0.13449405,-0.49462166,-0.27331987,0.13846005,-0.04567793,0.32590935,0.11771437,-0.17912172,0.6572362,-0.11885928,1.0950196,-0.0016370484,-0.38598093,0.08505237,0.3469155,0.016768511,-0.09245255,-0.3873086,0.8239737,0.5706436,-0.12128995,-0.11667763,-0.42636395,-0.07750968,0.095820524,-0.10692873,-0.021426065,0.055620916,-0.6989015,-0.2614395,0.20109543,0.20004319,0.023095505,-0.04040763,0.039310984,0.26481804,-0.04544127,0.24348958,-0.5544523,-0.09903814,0.2643283,0.29080248,0.03470854,0.0359028,-0.4572359,0.40650907,-0.3700808,0.1891063,-0.20510732,0.1518068,-0.3070727,-0.11446155,0.18901196,-0.061805874,0.36513472,-0.29654196,-0.2955263,-0.15230587,0.5355627,0.026139885,0.0742423,0.5664476,-0.24910317,0.20879105,0.17783655,0.54031247,0.8386187,-0.35766008,0.09687376,0.46094283,-0.465672,-0.51828754,0.2936232,-0.23580456,0.08793068,0.117794864,-0.3356131,-0.49058598,0.30660656,0.09455912,0.01143051,0.067021936,-0.5369587,-0.092066355,0.32126394,-0.35061333,-0.2762847,-0.27285573,0.19332215,0.5502429,-0.33479697,-0.34936434,0.056960285,0.13773371,-0.28621414,-0.373084,-0.0877172,-0.21791811,0.37559938,0.08769353,-0.3313653,-0.11041661,0.069957815,-0.3641253,0.13369302,0.06531825,-0.28657484,0.0880503,-0.3137079,-0.13438694,0.7391998,-0.3275776,-0.04300597,-0.60831994,-0.39853844,-0.6521292,-0.30259082,0.45917797,0.03725604,-0.011135889,-0.38228217,-0.050293658,-0.028663443,0.003309582,-0.17221086,-0.3166917,0.46833572,0.07686961,0.5043077,-0.08261744,-0.96220857,0.20588358,0.17843989,-0.14906202,-0.79367775,0.61013824,-0.1580684,0.6300333,0.024619158,0.19948377,0.17193387,-0.3891913,-0.03581074,-0.1285831,-0.20030954,-0.7871131,-0.021923143,230 -389,0.35110182,-0.011837019,-0.42711157,-0.15438485,-0.2728315,0.057032235,-0.18370485,0.34303832,0.24312714,-0.48804197,-0.04217497,0.0043106205,-0.029060928,0.21309566,-0.097234674,-0.50029767,0.15667023,0.17088433,-0.46146673,0.46374914,-0.39157054,0.14094786,-0.05375162,0.3636213,0.12721664,0.27997,0.043229945,0.05788972,-0.20555265,-0.14921431,-0.116575345,0.23990944,-0.62917364,0.30454534,-0.19360031,-0.2248408,-0.033932235,-0.43167967,-0.4489638,-0.68382174,0.21292695,-0.7039443,0.46371222,-0.005560279,-0.29899696,0.3138702,0.2603199,0.28095707,-0.12728605,-0.1396699,0.223253,-0.26519197,-0.042983163,-0.3451455,-0.13714704,-0.3247244,-0.6014986,-0.07647603,-0.4672578,-0.1411267,-0.012592708,0.18554333,-0.22968438,0.044465244,-0.054758217,0.65052575,-0.4365325,0.26216277,0.30854008,-0.23631923,0.1440275,-0.57960665,-0.14405094,-0.017681006,0.009899518,0.023961876,-0.32864478,0.23320355,0.120728254,0.4022381,-0.08886729,-0.23451708,-0.25430468,0.012663292,0.15603791,0.4310717,-0.20516391,-0.12588434,-0.07700082,-0.017796755,0.1662123,0.03842304,0.15628217,-0.18621847,-0.07184597,-0.016444147,-0.18725505,0.44636232,0.56690294,-0.22011045,-0.13681868,0.30323866,0.60320187,0.07315893,-0.26434687,-0.003936861,0.12522316,-0.43753862,-0.13903823,0.04429273,-0.21632631,0.34569174,-0.23629354,0.14888634,0.7174838,-0.2792522,-0.10679763,0.28054434,0.26255155,0.22849713,-0.4054461,-0.22568265,0.3306189,-0.47803313,-0.042993437,-0.19802353,0.7269902,0.16580865,-0.5730658,0.2711451,-0.43899032,0.004998573,-0.018937783,0.4175152,0.8244749,0.59279346,0.28011698,0.7307909,-0.44479033,0.16533484,-0.10047917,-0.18937649,0.17572857,-0.21422291,0.16310632,-0.43139532,0.02060234,-0.13110694,-0.15953696,0.1262788,0.40219837,-0.53922284,-0.10860685,0.24288453,0.9551373,-0.27344897,-0.25544742,0.71328,0.9252601,0.946958,0.07024963,0.886175,0.21205536,-0.088550486,0.05483928,-0.34805053,-0.7541137,0.13432012,0.1433226,0.23276493,0.20603204,0.29070082,0.09740038,0.36767575,-0.37394413,-0.0057019764,-0.14730246,0.5680297,0.15843354,-0.110549346,-0.29083198,-0.21187617,0.037247267,-0.14099756,0.102882944,0.3465405,-0.14692304,0.495968,-0.032631177,1.4669329,-0.024972856,0.11015361,0.050993364,0.45633104,0.2730894,-0.3888614,-0.03925665,0.43550974,0.2716845,0.048146766,-0.40765563,0.13294171,-0.10531999,-0.42874065,-0.21566205,-0.3461237,-0.12328037,-0.1191229,-0.46647945,-0.29955846,-0.0498301,-0.21152087,0.33670425,-2.905026,0.06503707,0.01006034,0.37888503,-0.22927563,-0.24230759,-0.1294768,-0.5070392,0.24488075,0.2451539,0.40326375,-0.6401638,0.53725356,0.45579553,-0.46937674,0.03308008,-0.6119359,-0.14755559,-0.122292824,0.2723563,0.047725376,0.14479986,0.04697543,0.16933663,0.43428662,-0.118191384,0.14960672,0.3264926,0.42538577,0.10456954,0.31341377,0.10452504,0.46271223,-0.25811592,-0.22400428,0.34569788,-0.6286398,0.09557929,-0.1335181,-0.011411265,0.57054955,-0.21304886,-0.85436386,-0.5456454,0.044900537,0.9525088,-0.23900798,-0.4221857,0.18444204,-0.5170347,-0.32864198,-0.04066273,0.23597728,-0.036359552,-0.13574837,-0.71127063,-0.009284266,-0.0838114,0.18434341,0.00013858399,-0.083980836,-0.3145927,0.630014,-0.15659025,0.33674827,0.2925494,0.25374597,-0.40760472,-0.32667843,0.019219214,0.6861887,0.2944985,0.20115551,-0.32448497,-0.25827608,-0.16193359,-0.11532407,0.069673896,0.6007457,0.59231466,-0.1363132,0.15676464,0.34228903,-0.14647989,-0.117736995,-0.2016267,-0.3931973,-0.053540263,0.009386301,0.5207635,0.6971382,-0.15752013,0.4498269,-0.023852007,0.18659125,-0.24941047,-0.6440635,0.4537688,0.6478392,-0.062565796,-0.38892302,0.4817195,0.3673932,-0.3006141,0.3613007,-0.5166969,-0.3142007,0.3025587,-0.17699544,-0.4209682,0.06085532,-0.32004303,0.16712105,-0.5374035,0.40573677,-0.21683714,-0.72213465,-0.65691584,-0.21140857,-2.7223532,0.04886803,-0.17586446,-0.18197212,-0.018090231,-0.112059996,0.11670776,-0.42748457,-0.4452179,0.3296992,0.08093894,0.68980396,-0.026323361,0.14078589,-0.2436062,-0.24009922,-0.26340804,0.21137054,0.14178397,0.14127643,0.021949146,-0.5081504,0.06469698,-0.18630132,-0.3761945,0.051054128,-0.55008096,-0.49709532,-0.14679646,-0.53450406,-0.1499926,0.64095294,-0.30486837,0.016092334,-0.3975596,0.026622197,-0.065203734,0.31412593,0.15429032,0.12042511,-0.0037821191,-0.020196727,-0.07088627,-0.38798258,0.18446657,0.06732241,0.3427851,0.5490612,0.11608841,0.10808389,0.47346026,0.65739304,0.05520361,0.8233176,0.31690487,-0.14549866,0.25086066,-0.14507338,-0.27611935,-0.5104879,-0.24918365,0.05153071,-0.41149637,-0.27955654,0.114046335,-0.48575643,-0.7643705,0.3916208,-0.012934421,0.030058239,-0.031786073,0.25100562,0.45251036,-0.21867041,-0.009712792,-0.04348267,-0.12895434,-0.4694793,-0.3554277,-0.59435236,-0.41840282,0.2824121,1.1825752,-0.24317773,-0.08798573,0.0814323,-0.29795668,-0.03319342,0.27984402,-0.24701382,0.09006761,0.592348,0.0055679297,-0.566109,0.26966998,-0.19279115,-0.14070787,-0.64867646,0.11109984,0.5190128,-0.65176827,0.6883002,0.1748649,0.045957346,-0.20423481,-0.49291372,-0.24475494,-0.035910588,-0.36991328,0.4042646,0.34608665,-0.7839814,0.42400226,0.2336696,-0.48849455,-0.6448174,0.30655622,-0.11405457,-0.2442641,-0.19412242,0.23971531,0.047409873,0.09490675,-0.070626415,0.16508596,-0.47538072,0.115922116,0.14972374,-0.063863195,0.25946456,-0.24292634,-0.25183502,-0.6314762,-0.25235787,-0.4013906,-0.36995983,0.21575768,-0.013581238,0.27686635,0.30901104,0.24858478,0.34616494,-0.14764626,0.112785675,-0.16528694,-0.26935044,0.43437955,0.39577866,0.52084166,-0.39404836,0.5838544,0.09320467,-0.09497661,0.07186967,0.10237876,0.378468,0.11292716,0.40033635,0.13624091,-0.1483229,0.14983793,1.088863,0.10071,0.6184841,0.0140353525,-0.07713846,0.231743,-0.038125243,0.14572828,0.02018909,-0.43271875,0.039461784,-0.212625,0.23279102,0.32964873,0.10164775,0.46110293,0.019920353,-0.400104,-0.05208389,0.10986584,0.054503866,-1.3555633,0.14233966,0.24166271,0.8956009,0.44020352,0.08358063,0.006899029,0.80965036,-0.15140118,0.09954995,0.27181622,-0.15903161,-0.38074747,0.4699364,-0.7607192,0.48977828,-0.1065768,-0.102567986,-0.04535877,-0.08745616,0.4109961,0.7653602,-0.22935179,-0.03408293,0.08924447,-0.375245,0.20779867,-0.40526453,0.19188523,-0.51600957,-0.33433074,0.6684571,0.5553172,0.46245125,-0.16656373,-0.07466928,0.12635168,-0.09661317,-0.06957719,0.06445496,-0.08944927,0.08142858,-0.4941317,-0.28517362,0.5168475,-0.12316416,0.16400085,0.18692799,-0.07245203,0.28953695,-0.08886234,-0.19837794,-0.05752558,-0.67945594,0.03808754,-0.11459809,-0.53585935,0.646722,-0.055901337,0.060602553,0.25944844,0.02381364,-0.34881932,0.43957645,0.1661249,0.6402763,-0.06945413,-0.050546367,-0.33499864,0.2915883,0.14065109,-0.17527132,0.18344977,-0.22808851,0.20820653,-0.548885,0.506128,-0.18967767,-0.17734292,-0.047964115,-0.14053433,0.13593504,0.61772484,-0.075226255,-0.13352357,-0.07494099,-0.26153347,-0.3617343,-0.059864573,-0.19214915,0.15671323,-0.014565569,-0.24517858,-0.09147833,-0.22636683,-0.20437123,0.24280278,0.05152723,0.21275647,0.3834497,-0.03889378,-0.38437694,-0.109086476,0.124288835,0.52050316,-0.10102205,-0.23316121,-0.17868793,-0.40069333,-0.42979285,0.5322426,-0.009131568,0.3425127,-0.029279198,-0.25261825,0.93771404,-0.082771935,1.0606743,0.09689097,-0.28191173,0.048801363,0.41234466,-0.025004659,0.07088997,-0.34543937,0.662787,0.46924093,0.00028315187,-0.0096931625,-0.4044424,0.042718988,0.31215557,-0.17556909,-0.24455823,-0.04280961,-0.6888209,-0.04021006,0.24606612,0.16947167,0.24907576,-0.15589686,0.18567681,0.3662665,-0.02380838,0.16863933,-0.5348748,0.06467463,0.2684405,0.3121807,0.098232165,0.11570292,-0.43640354,0.26257688,-0.35117745,0.09419044,-0.029320598,0.14177403,-0.1019479,-0.30980793,0.19702376,0.13899925,0.34177676,-0.4440009,-0.24984105,-0.30893967,0.5518504,0.2735776,0.23589255,0.5313344,-0.08897005,-0.014401691,0.040132586,0.47456455,0.7620999,-0.15456775,-0.050996512,0.4286871,-0.3644729,-0.7432103,0.39242712,-0.27247706,0.2259494,-0.026955035,-0.28503403,-0.5482987,0.18637227,0.32091925,0.020703586,0.18627922,-0.4846315,-0.089739546,0.27870277,-0.3155443,-0.20247634,-0.21713789,0.077605926,0.5531046,-0.13239273,-0.0052585984,0.046340723,0.32110834,-0.21233113,-0.30057213,-0.19548114,-0.39529613,0.33939832,-0.02547124,-0.276791,-0.1773723,0.056656342,-0.44075865,0.123419695,0.18674874,-0.22983514,0.024555266,-0.15568998,0.09786188,0.67785615,-0.16559693,0.15591024,-0.502439,-0.4221796,-0.7603652,-0.213454,0.3423429,0.100219086,-0.1032819,-0.74465173,-0.117025495,-0.12243058,-0.14940678,-0.05391604,-0.5793744,0.4875075,0.07821659,0.0432314,0.09822183,-0.7878369,0.119687356,0.22600596,-0.21061902,-0.5097968,0.46106032,-0.26588634,0.90088433,0.0448882,0.07672101,0.14143707,-0.35609648,0.26022193,-0.34697834,-0.24301597,-0.6209666,-0.01755313,236 -390,0.43638,-0.13999018,-0.41481283,0.00067459315,-0.22628573,0.23859379,-0.10752074,0.26619557,0.23456396,-0.48267213,-0.12208838,-0.16097513,-0.01599891,0.15108141,-0.11544009,-0.49988243,-0.010816395,0.17792954,-0.41314703,0.44888186,-0.36345798,0.5112325,0.13756384,0.19449356,-0.015470548,0.27988535,0.14482868,-0.08608677,-0.26553774,-0.24948277,-0.28046206,0.17228992,-0.46162495,0.2969361,-0.19022226,-0.37396023,-0.034425378,-0.31411654,-0.29590362,-0.5065065,0.26576322,-0.7217269,0.4017013,0.061983977,-0.17431895,0.2507979,0.026506769,0.19013461,-0.07683318,0.038230296,0.06904342,-0.18598461,-0.09488899,-0.28544107,-0.20364091,-0.3118783,-0.6054931,0.08172325,-0.48175558,-0.07568474,-0.3628385,0.13686608,-0.3048713,-0.11271063,0.040908337,0.27474523,-0.3225855,0.114239015,0.024384592,-0.2612258,0.01868898,-0.3714787,-0.12544855,-0.015614892,0.31046477,-0.26727274,-0.08490967,0.22101416,0.20609467,0.525416,0.038309958,-0.096061654,-0.4247158,-0.038195383,0.18817271,0.54232043,-0.048147976,-0.28426617,-0.06955062,-0.17924313,0.07925222,-0.025691288,0.16278,-0.11320257,-0.15806638,0.020209944,-0.258233,0.3250496,0.45584145,-0.46980223,-0.33774784,0.3431397,0.58536655,-0.06592051,-0.18006301,-0.025821792,0.045219302,-0.39490685,-0.10595035,0.09254245,-0.09091205,0.48634365,-0.064158276,0.3913769,0.5736159,-0.2356925,0.101992846,0.18562137,-0.010634646,-0.17161094,-0.031340234,-0.057127785,0.09236098,-0.42376342,-0.047994275,-0.15948485,0.9013547,0.08218352,-0.77471167,0.42435673,-0.46843365,0.0924347,0.024144167,0.47441202,0.62651724,0.36363062,0.24181525,0.6333208,-0.42483097,0.0012827112,-0.13211969,-0.32886252,-0.050059047,-0.21676722,0.07595108,-0.5208879,-0.025816875,0.17269431,0.038796272,0.09036807,0.5962087,-0.41612265,-0.116831936,0.15002765,0.8451766,-0.26964802,-0.22295497,0.74280614,1.0418189,0.8697714,-0.06769402,1.0590153,0.21793206,-0.21169662,0.014445654,-0.47629255,-0.5486134,0.24633925,0.24399115,0.10449261,0.19690251,0.15124235,0.08225517,0.3357385,-0.31977445,0.14472114,-0.13087991,-0.030502,0.122983,0.054051634,-0.3376638,-0.2905993,0.10565443,-0.03944508,0.26776385,0.30261418,-0.23727076,0.47515196,0.097552285,1.5491103,0.0068150247,0.16365083,-0.016979376,0.39430055,0.14088261,-0.04512038,-0.13921702,0.14452489,0.2550123,-0.02450956,-0.44650063,0.036983218,-0.1517144,-0.50978655,-0.19636194,-0.2786687,-0.26156142,0.059304815,-0.39335623,-0.18234941,0.007621863,-0.5291993,0.44439772,-2.8207793,-0.16114746,0.0046486715,0.32377344,-0.29482365,-0.4197395,-0.15932025,-0.46297947,0.3436353,0.30702624,0.40430504,-0.54268664,0.43413258,0.3789265,-0.4336823,-0.26702687,-0.4396012,-0.019560274,-0.09600491,0.32490328,0.098459825,-0.17546546,-0.033045854,-0.055362258,0.42330083,-0.20424625,0.006717133,0.3327836,0.37880436,-0.04439407,0.32822004,0.12402432,0.48401204,-0.3209396,-0.22265889,0.43653408,-0.3918524,0.25204295,-0.16656879,0.1708373,0.23207948,-0.39974114,-0.865028,-0.6561136,-0.2576631,1.263595,-0.03796653,-0.36313137,0.18751357,-0.21256375,-0.35706067,-0.094077155,0.44520822,-0.021691512,-0.009374251,-0.7566219,0.053720884,-0.11013162,0.24287224,0.033581637,-0.08495731,-0.38797125,0.7534137,-0.097029634,0.41946888,0.23825347,0.32537916,-0.28827652,-0.2720124,0.18581073,1.0912226,0.23711495,0.12265158,-0.2807972,-0.28086078,-0.25505885,-0.17498474,0.054916237,0.42594975,0.5295797,0.05246889,0.052099835,0.2956845,-0.021735007,0.05275954,-0.16229261,-0.18960777,-0.16455682,-0.061800115,0.6237017,0.6304894,-0.0914656,0.48375574,-0.09754533,0.21320473,-0.25556752,-0.36587647,0.5978604,0.7780417,-0.09210837,-0.19904771,0.5151769,0.43623313,-0.20256475,0.34637123,-0.63794476,-0.51855296,0.3488366,-0.26357976,-0.3526524,0.15699165,-0.35716507,0.12548111,-0.7836215,0.19160937,-0.18433394,-0.46615192,-0.55643463,-0.13337724,-3.725108,0.0979087,-0.086682186,-0.13839011,0.077215634,-0.058342535,0.08898343,-0.55200315,-0.2598829,0.020120064,0.042197667,0.73901594,0.024216177,0.21005961,-0.34719372,-0.26770565,-0.38394484,0.1418788,0.028507296,0.3307419,-0.05399395,-0.34387496,0.08889455,-0.24833645,-0.23966263,-0.020131094,-0.5540624,-0.5065735,-0.1293628,-0.3038893,-0.34360543,0.6548873,-0.49996573,0.07333328,-0.25924915,-0.030610846,-0.11926945,0.34482735,0.1335102,0.039651744,0.13731349,-0.17543027,0.103042655,-0.36962894,0.47843155,0.108624406,0.36209366,0.6562966,-0.17297404,0.110145964,0.50908124,0.5799037,-0.02539103,0.8975596,0.31718817,-0.11254149,0.25245038,-0.18285741,-0.25920728,-0.5103608,-0.19126013,-0.043787237,-0.45317847,-0.4783549,-0.13818344,-0.32403633,-0.7905317,0.45341438,0.074017145,0.12655383,0.017460395,0.42788312,0.41838145,-0.13092309,-0.15191674,-0.11244125,-0.062501796,-0.37400904,-0.41700986,-0.61292315,-0.51754636,0.12474156,0.8326145,-0.16900086,-0.001323172,0.0928054,-0.15156971,-0.0008376581,0.09907929,0.26394925,0.11454026,0.3516226,-0.062338296,-0.61978394,0.57505375,-0.23895206,-0.09140999,-0.61245584,0.08283542,0.49172217,-0.6107926,0.32281655,0.31304947,0.06582812,0.2354425,-0.2707639,-0.14786525,-0.19810374,-0.24716496,0.19708085,0.18727128,-0.669272,0.3682766,0.17575036,-0.1941673,-0.71667725,0.4405737,-0.008506275,-0.3089912,-0.076821625,0.22176807,0.20051636,-0.008518358,-0.05552849,0.097018346,-0.49908128,0.3479715,0.16357836,-0.038149234,0.5316537,-0.26006737,-0.21571398,-0.5333464,0.02278986,-0.44566363,-0.30514804,0.06884362,0.2611098,0.15828148,0.34800646,-0.04416291,0.31349605,-0.36260456,-0.013548854,0.011850621,-0.09200709,0.28878635,0.25991753,0.48302937,-0.36198044,0.520758,-0.0470743,0.038368646,0.02019213,0.070895016,0.47783908,0.10943138,0.37702852,0.06256393,-0.28356427,0.29103225,0.757211,0.22226553,0.34134555,0.07185777,-0.23836644,0.23184907,0.10071973,0.08954717,-0.029461252,-0.48331696,0.06752331,-0.14439051,0.11849845,0.39833084,0.02944228,0.39642173,-0.21517716,-0.18971276,0.13527273,0.20356536,-0.11345129,-1.0373728,0.21641573,0.10015384,0.80035245,0.34204036,-0.012947276,0.14972101,0.64854324,-0.25520685,0.11712054,0.11245419,-0.15227894,-0.47176307,0.46098775,-0.6768907,0.5794935,-0.08466156,-0.025414703,-0.010443538,-0.22313963,0.22890289,0.7259076,-0.09914307,0.014630163,0.080050714,-0.3466925,-0.037016843,-0.3238311,0.29384956,-0.5621053,0.013061878,0.73911434,0.46978608,0.40718192,-0.06527306,-0.0009146812,-0.06570667,-0.012332167,0.065254435,0.010301128,0.1787304,-0.12511566,-0.64777744,-0.14279453,0.59871536,0.11305463,0.23853958,0.11648774,-0.21632612,0.27714056,-0.109464355,-0.12929139,-0.18416713,-0.52065146,0.08625029,-0.283123,-0.39292118,0.46092027,-0.01299497,0.36369935,0.2015698,-0.018504279,-0.22581993,0.4294782,0.33052805,0.5949893,0.18755439,-0.124678545,-0.4149486,0.15660696,0.16712297,-0.22669761,-0.13128744,-0.18417566,0.15849964,-0.580229,0.258332,-0.15872802,-0.23565663,0.12932119,-0.2127272,0.086907424,0.538142,0.043471847,-0.04440224,0.1178258,-0.005841621,-0.26976985,-0.018562531,-0.1110772,0.3315635,0.15776572,-0.29147413,0.014285852,-0.24773487,-0.14433686,0.16268714,0.07291473,0.3421495,0.36348745,-0.00687434,-0.29439265,-0.032148894,0.14003067,0.50162935,-0.10032749,-0.029888174,-0.33061886,-0.39238006,-0.42411277,0.25926754,-0.11102772,0.09708009,0.12515897,-0.31090546,0.70295566,-0.12621881,0.9425603,0.1688495,-0.23787351,0.20110883,0.45966095,0.0852798,0.09018624,-0.3919351,0.8944801,0.5161325,-0.029441701,-0.21088336,-0.2694808,-0.036611516,0.09226946,-0.2698634,-0.26506332,-0.0072855502,-0.7510253,-0.22625835,0.20910873,0.27193722,0.15273523,-0.027852235,0.11044635,0.17699607,0.11827338,0.23103765,-0.5613738,-0.2681767,0.4541767,0.31775624,-0.118167095,0.15471978,-0.37824297,0.39887497,-0.58184105,-0.015539825,-0.2489398,0.12922154,-0.2635558,-0.25810724,0.32735556,0.24682339,0.41955218,-0.19517139,-0.32851282,-0.3706648,0.3522759,0.06523808,0.19028838,0.3995404,-0.16703613,-0.10166957,0.06011685,0.41395804,1.1349895,-0.29724666,-0.054329198,0.4725361,-0.23541775,-0.41407278,0.23248897,-0.31234768,0.20149885,-0.0047611096,-0.22671266,-0.39873776,0.31331328,0.17745993,0.13691387,0.13783811,-0.51397485,-0.2291181,0.17610474,-0.48510286,-0.2182658,-0.136988,0.1185342,0.63040817,-0.22152467,-0.16765714,0.039007246,0.49007398,-0.2522964,-0.47403008,0.020938788,-0.31221104,0.17866392,0.15979388,-0.22565769,-0.13216452,0.096098505,-0.3660982,0.013034539,0.27555585,-0.45367178,-0.011139842,-0.32983568,0.09662274,0.819456,-0.15470622,0.3087214,-0.55758536,-0.38992795,-0.87861836,-0.39855894,0.47595698,0.15891838,-0.12497292,-0.40650406,-0.12728682,-0.10620352,-0.22407396,-0.02871791,-0.54710144,0.43723482,0.2264713,0.25703952,-0.044351645,-0.7693779,-0.057904363,-0.020966738,-0.32990313,-0.62267405,0.43016073,-0.0263778,0.86771315,0.029174816,-0.021879299,0.42847472,-0.49878556,0.03128038,-0.21946125,-0.1350424,-0.75346375,-0.024991065,237 -391,0.4771988,0.057409976,-0.513218,-0.17004666,-0.5466808,0.31844968,-0.24977626,0.0002293246,0.27228484,-0.48180085,-0.11616104,-0.024909627,-0.20784198,0.17227052,-0.28102052,-0.8110243,0.22898588,0.19032991,-0.59906673,0.53426975,-0.42078882,0.45894504,0.10760451,0.21098468,-0.058738027,0.1308029,0.36148936,-0.013627553,-0.070508376,-0.23626985,-0.21582563,0.12550603,-0.8612162,0.3533912,-0.23935102,-0.32716325,-0.01456417,-0.35963827,-0.3790018,-0.77943414,0.45868367,-0.9383774,0.49935317,0.052453082,-0.29188153,-0.020030996,0.15070985,0.08055399,-0.22641645,0.12318782,0.42204976,-0.391969,-0.05543929,-0.16012219,-0.46036837,-0.503687,-0.6423974,-0.06765218,-0.6487564,-0.08371433,-0.5030718,0.34248587,-0.20792906,-0.16306002,-0.33110598,0.37769803,-0.39063898,0.18187131,0.19694214,-0.24817307,-0.0025652477,-0.5488958,-0.16081722,-0.11105605,0.16505973,0.058289234,-0.12256468,0.40321556,0.21048658,0.6262301,0.26298755,-0.4729628,-0.23704304,-0.18379907,0.35763183,0.4069008,-0.031300224,-0.06734158,-0.2855733,-0.09907324,0.4043577,0.3307738,0.019896507,-0.39464003,0.11981773,-0.014994187,0.048792865,0.6098436,0.58129406,-0.46021292,-0.10059845,0.37630028,0.30987096,0.085130766,-0.25636858,0.03949574,-0.19693495,-0.61770886,-0.3316544,0.36115828,-0.105771124,0.6462498,-0.16662577,-0.0038157362,0.79294425,-0.15771921,-0.007323299,-0.07130139,-0.1367176,0.2407573,-0.20353463,-0.012031828,0.379836,-0.5692903,0.13766837,-0.34354278,0.61008316,0.17368834,-0.8561471,0.43115765,-0.42244953,0.18928035,0.033197887,0.7311114,0.6632042,0.62123626,-0.015586249,1.0082521,-0.66895086,0.071610615,-0.02707285,-0.29416206,-0.07230097,-0.08214157,0.106403604,-0.27283046,0.22196706,-0.20937423,0.12350377,-0.10244333,0.38163903,-0.38002974,-0.21497688,0.06490583,0.62030417,-0.34531942,0.024907658,0.7781046,1.1115555,1.0661924,-0.034502797,1.4532576,0.19419052,-0.03836912,-0.307461,0.10340253,-0.6510749,0.06893228,0.3080613,0.3432643,0.27805287,0.2084522,-0.1410513,0.20881794,-0.2960684,-0.21284369,-0.002913836,0.2580466,-0.04367435,-0.03552438,-0.29030308,0.0053961235,0.2219411,0.23786433,-0.058500998,0.26895648,-0.1993337,0.38126987,0.14182998,0.8943058,-0.006970857,0.25669163,0.105900764,0.37966797,0.25231403,-0.055805642,0.13287067,0.3541675,0.214951,0.07216913,-0.53366953,-0.10601183,-0.56518424,-0.331553,-0.15739529,-0.4549417,-0.21251951,0.021405885,-0.36378232,-0.10608823,0.07183199,-0.3221219,0.46581915,-2.3839421,-0.068466865,-0.2162822,0.43531016,-0.27425593,-0.23779674,-0.30924663,-0.60566175,0.44487414,0.19915275,0.41938004,-0.52048266,0.5081858,0.48244092,-0.45310387,0.013578511,-0.7050523,0.077751085,-0.020051822,0.59661186,-0.021756878,-0.17818229,-0.20372905,0.14734681,0.7697269,0.3703238,0.11777574,0.2901702,0.48191914,-0.11902915,0.5031986,-0.03301167,0.5967015,-0.4317138,-0.056115184,0.5701261,-0.36074144,0.5157784,-0.2400438,0.008726268,0.49898747,-0.52369916,-0.6676383,-0.59577554,-0.4063769,1.2971984,-0.3998095,-0.71605796,0.23422335,-0.024641166,-0.22780003,-0.011426194,0.40913492,0.11618563,0.2875852,-0.57275486,-0.051028576,-0.21980643,0.21484546,-0.106010094,0.28698757,-0.42383584,0.8595332,-0.13214777,0.4673064,0.32628027,0.23614573,-0.10465659,-0.33103207,0.12907043,0.7646493,0.48196068,0.1295758,-0.18631743,-0.12094965,-0.17366898,-0.33500257,-0.051652968,0.8703895,0.5342162,-0.14003761,0.049923994,0.37532124,0.10499253,0.08539523,-0.20575006,-0.41716725,-0.19925103,0.06924434,0.45724586,0.66225994,-0.27827057,0.11081378,-0.004349617,0.16750054,-0.1690074,-0.67507327,0.42220777,0.77132094,-0.09424352,-0.086631246,0.6403017,0.53960174,-0.46793467,0.49588028,-0.56447774,-0.43943834,0.7136182,-0.008566597,-0.63413817,-0.08125075,-0.3131903,0.018065836,-0.5233845,0.40787813,-0.383029,-0.72332275,-0.30656824,-0.24744733,-3.27054,0.18912451,-0.26465192,0.18204378,-0.25872535,-0.14492545,0.33645263,-0.42155474,-0.5093041,0.05972325,0.023780346,0.3634544,-0.23380767,0.2365278,-0.40169206,-0.24780175,-0.204216,0.46889117,0.17645486,0.09932707,-0.19653296,-0.20720267,0.06559594,-0.110347904,-0.36214307,-0.15904991,-0.47818503,-0.3883121,-0.12167937,-0.38122702,-0.07793792,0.6666544,-0.38986084,-0.0029940945,-0.20362023,0.07985466,-0.21212256,0.07328451,0.030878078,0.3834997,-0.022095246,-0.11098759,-0.16520774,-0.2897086,0.53541046,0.2013141,0.2786154,0.51881987,-0.22849618,-0.009557494,0.2783357,0.5484354,-0.0550546,1.0451874,-0.008722501,-0.09965547,0.5189722,-0.034749538,-0.6208887,-1.0229636,-0.18237843,-0.06942695,-0.49330202,-0.34182605,0.008551769,-0.41551003,-0.924746,0.48019883,0.12504175,0.45757008,-0.3018799,0.19400562,0.391572,-0.3698105,0.033513103,-0.10770268,-0.25685725,-0.5249205,-0.49487782,-0.781045,-0.59877735,-0.079857655,0.92745453,-0.16714264,-0.19504678,0.17445648,-0.24003282,0.16195181,0.14573832,0.15207942,0.011949986,0.4385274,0.203196,-0.7033439,0.51817626,-0.031244865,-0.03796918,-0.5610348,0.31326264,0.797595,-0.5497089,0.54328835,0.45650727,0.09633635,0.067122445,-0.8303658,-0.25734365,-0.066792265,-0.19429061,0.6412181,0.2817339,-0.7664444,0.34072012,0.14197877,-0.3011724,-0.6179816,0.61614764,-0.06370602,-0.1220699,0.04857025,0.43733844,0.018957058,-0.053694624,0.14488657,0.3275055,-0.53581,0.46747527,0.27792972,0.0013630049,0.35223442,-0.09989228,-0.54311156,-0.80507183,-0.03293717,-0.6320739,-0.31471178,0.22537287,-0.19409569,-0.1619626,0.24544814,0.15065685,0.62548393,-0.107729815,0.34201744,-0.0702327,-0.37271732,0.5730514,0.5385123,0.51380694,-0.67450583,0.7176698,0.12064042,-0.079740725,0.19834973,0.28841615,0.45570898,0.09557944,0.4970054,-0.21135947,0.13754568,-0.072261795,0.5878593,0.24073415,0.3534047,0.187608,-0.13428964,0.55818427,0.13590169,0.092157654,-0.26271594,-0.6257466,-0.04930591,-0.027817076,0.044415466,0.33067614,0.08696524,0.35894093,-0.054191343,0.06244751,-0.032199595,0.07968388,0.04012179,-1.1590881,0.27561942,0.14212592,0.77520037,0.49165192,0.13351579,-0.10293991,0.42825374,-0.27611065,0.02231637,0.55829,-0.042488594,-0.35926118,0.47942734,-0.45189294,0.3535997,-0.16276638,0.07402895,0.2744585,0.26692817,0.491632,0.89269394,-0.17236371,-0.0040815896,-0.10942463,-0.2318087,0.2317063,-0.23304081,0.17797266,-0.40884024,-0.4442224,0.6074656,0.5309048,0.4102895,-0.40667185,-0.10918387,-0.0027712542,-0.29030094,0.096011095,-0.13944961,-0.12983519,-0.15632914,-0.37791532,-0.08479268,0.59254014,-0.1804115,-0.021664288,0.009074762,-0.19103995,0.30727416,0.053224362,0.057764,-0.07262255,-0.92436224,-0.010131938,-0.299422,-0.55274755,0.3631586,-0.23304775,0.2044331,0.22560059,-0.035084628,-0.18460667,0.15734586,0.038151402,0.6170177,0.07568358,-0.05219839,-0.40189594,0.15466918,0.18345891,-0.31441107,0.25942963,-0.20086323,0.12987062,-0.63035107,0.4086493,-0.42601654,-0.182402,-0.029898789,-0.101761356,-0.15740803,0.50448054,-0.019992527,-0.05373105,0.28699794,-0.013031743,-0.33790097,-0.092453055,-0.27108273,0.105242886,-0.13561274,0.07334102,-0.042126488,-0.119306765,-0.10298227,0.18583734,0.20635895,0.0011607079,0.11904423,-0.20626627,-0.49540207,0.122515365,-0.04866637,0.5768299,0.06787628,-0.012030118,-0.022960778,-0.4360375,-0.38563973,0.54952604,-0.15909645,0.1507849,0.13633355,-0.3419614,0.8361686,0.2544199,1.1621116,-0.05299226,-0.46486935,0.00016220871,0.7497603,0.010116888,0.02364253,-0.5127886,1.0183977,0.56398016,-0.11856733,0.033028103,-0.47322825,0.0059196097,0.10760429,-0.41508886,-0.20302422,-0.14979266,-0.5182098,0.013491397,-0.0136087835,0.31144336,0.049038988,-0.10786266,-0.22180223,0.24976644,0.37628174,0.43694258,-0.6052407,-0.41303104,0.28312764,0.1586993,-0.08209423,0.19113758,-0.21554255,0.3616871,-0.68308914,0.04717343,-0.32163188,0.0152969705,-0.2944173,-0.2994461,0.21992268,-0.07283943,0.35748848,-0.41987947,-0.3338017,-0.2308891,0.2838972,0.33425647,0.33832052,0.86598,-0.15971048,-0.121548675,0.09245709,0.50698704,1.1938607,-0.055195432,0.017475052,0.29076672,-0.534112,-0.66150874,-0.0015659715,-0.6838935,0.07430845,-0.077739574,-0.4418942,-0.1756537,0.14550614,-0.0019584554,-0.20375372,0.19554766,-0.8955552,-0.16087179,0.15775323,-0.22047794,-0.32720068,-0.16949244,0.45336244,0.73252106,-0.29302984,-0.3480382,0.03574707,0.2245157,-0.2341797,-0.84395367,0.18221149,-0.26513085,0.28113386,-0.011945673,-0.32767716,0.10748954,0.2228761,-0.5473112,0.04791295,0.27733913,-0.37235007,-0.040025912,-0.26616672,0.0012234321,0.8310942,0.04105616,0.050453775,-0.432697,-0.5714796,-0.87693185,-0.364734,-0.06688982,0.2552916,0.049883217,-0.3244396,-0.2019918,-0.28771737,0.12189441,-0.0746462,-0.4450372,0.40708664,0.16994448,0.532511,-0.18597879,-0.90277004,0.09018815,0.22379425,-0.02851565,-0.37959513,0.4843572,-0.24392734,0.67013705,0.09503389,-0.058160853,-0.05490303,-0.89951193,0.24316107,-0.34841177,-0.041214734,-0.56173855,0.16271567,240 -392,0.34012136,-0.24788068,-0.5807623,-0.15011083,-0.20274098,0.02163153,-0.113279864,0.60572845,0.2882323,-0.24506597,-0.17581923,-0.2179843,0.110098004,0.35290113,-0.07012465,-0.35857543,-0.049844943,0.17637551,-0.5389082,0.4518211,-0.3011809,0.07122416,-0.29824343,0.5406646,0.47172683,0.4254089,-0.11627312,-0.035607625,-0.11924226,-0.011647516,-0.054430038,0.42675242,-0.28446537,0.07492246,-0.18685825,-0.19124565,-0.11667906,-0.6041325,-0.39181426,-0.63982815,0.300585,-0.79976785,0.53958595,-0.027903596,-0.20901065,0.31682253,0.19152042,0.42093936,-0.33080822,-0.27759576,0.20867835,0.063448705,-0.046466358,-0.1350691,-0.17095837,-0.23212467,-0.41851196,-0.054967914,-0.33446297,-0.14707455,-0.31087545,0.100236535,-0.26918676,-0.118378885,-0.031228364,0.47673914,-0.46586603,0.19788066,0.18886884,-0.09267944,0.24318811,-0.48785958,-0.19482109,-0.022035265,0.40287635,-0.22900367,-0.25809094,0.1768966,0.28247496,0.17722073,-0.16545656,0.067818634,-0.3194591,-0.0003985848,0.29057625,0.53308874,0.04682644,-0.48949426,-0.0965228,0.095313564,0.045551386,0.29791507,0.38439035,-0.32121637,-0.20603159,0.04891636,-0.1222653,0.42460498,0.34165055,-0.1516706,-0.12562563,0.38104683,0.54015094,0.39619866,-0.22214855,-0.0037629518,-0.039411426,-0.46873686,-0.07290653,-0.18065336,-0.22097516,0.5206779,-0.09205818,0.24620886,0.6020754,-0.10495627,-0.10384285,0.14627388,0.08203517,-0.2891911,-0.27900094,-0.20560081,0.08096974,-0.33219337,0.23367272,0.05795526,0.5273047,0.16356874,-0.71849304,0.28660932,-0.5024889,0.16733989,-0.21826437,0.27429724,0.70213455,0.31732535,0.44509622,0.6641516,-0.38713166,0.10807699,0.055264957,-0.5950245,0.12820688,-0.18965176,-0.12201027,-0.6399105,-0.0074837506,-0.06416044,-0.2124583,0.122252926,0.2250975,-0.4887795,-0.023806939,0.18253168,0.7604969,-0.29216403,-0.1372863,0.7653325,1.0077229,0.8686368,0.00992386,0.8683316,0.07010601,-0.14542028,0.3554631,-0.3146045,-0.7201718,0.33588377,0.38652593,-0.3759214,0.19729602,-0.0126792705,0.11230375,0.448706,-0.2687742,0.14426513,-0.043643337,0.07554014,0.21489368,-0.1949068,-0.43998235,-0.18024953,-0.14192852,0.007947455,0.09929645,0.062357213,-0.22741196,0.39369062,-0.06758902,1.8280611,0.12127478,-0.04239797,-0.008194291,0.57903475,0.25996026,-0.23251788,-0.24383582,0.5308499,0.29431692,0.10065571,-0.5952138,0.18751185,-0.12360894,-0.33768377,-0.11881166,-0.5377441,-0.16547167,0.02958494,-0.39394793,-0.03707799,-0.2502787,-0.18816127,0.5297497,-3.1382573,-0.16278636,-0.06742758,0.3504263,-0.121297814,-0.3523204,-0.0013708727,-0.36275056,0.27722064,0.29787365,0.54318196,-0.57366836,0.3014996,0.38359505,-0.6264553,-0.19224909,-0.50714844,-0.096864514,0.06698392,0.32633194,-0.0579996,0.034401182,0.19192539,0.18672328,0.32265553,0.0065121567,0.15248777,0.27529466,0.42603287,0.06692913,0.62152445,-0.13368337,0.5723451,0.029189494,-0.20711078,0.14283893,-0.15073168,0.39529935,-0.01707782,0.10733472,0.5058636,-0.34917566,-0.9768955,-0.5336518,0.03155407,1.217275,-0.25346115,-0.2176139,0.27460855,-0.57597405,-0.24928999,-0.01487823,0.47482434,-0.004232645,-0.1865441,-0.8121401,0.015833136,-0.006411643,-0.09590692,-0.03036818,-0.18809524,-0.39430144,0.60900164,0.02346802,0.47660303,0.29181856,0.09829893,-0.31705135,-0.36567715,0.075534925,0.6447175,0.27327126,0.07116423,-0.12478387,-0.21276008,-0.44246393,-0.032572635,0.14151004,0.5252759,0.41746706,-0.068156436,0.28368825,0.14272676,0.00068776525,0.07341989,-0.22961368,-0.21369968,-0.10569726,0.057264138,0.41793898,0.664131,-0.19725645,0.64231455,0.0062807268,0.20256877,-0.060251202,-0.46844286,0.43136317,1.101836,-0.18196972,-0.42703348,0.57305497,0.4278688,-0.25510284,0.299754,-0.38102317,-0.013413838,0.52142155,-0.25980404,-0.33719444,0.29105848,-0.19991449,0.121773496,-0.94617355,0.008086113,-0.17122732,-0.45746097,-0.33433944,-0.05400181,-3.229176,0.12981652,-0.20766568,-0.30919668,-0.11925639,-0.2624621,0.05823209,-0.5907842,-0.661396,0.22169693,-0.024164204,0.72697985,-0.21079303,0.018064419,-0.17227213,-0.28406015,-0.31303683,0.09104432,-0.03383554,0.5871582,-0.052282695,-0.4671186,-0.1955379,-0.069988325,-0.40772465,0.03112164,-0.46565285,-0.3031549,-0.07061783,-0.5019454,-0.2046882,0.5744219,-0.29346514,-0.025437668,-0.10804715,0.04023901,-0.06161517,0.31524616,0.10889696,0.05366193,0.107108615,0.03173082,0.16594055,-0.24376003,0.26378557,-0.029165579,0.32271287,0.16996126,0.09946326,0.31545162,0.4444065,0.6538249,-0.19169988,0.7677126,0.5358611,-0.11284311,0.22056873,-0.37754244,-0.2712863,-0.396995,-0.20133962,-0.061846707,-0.41115445,-0.5170972,-0.17452683,-0.4130488,-0.6878467,0.4709997,0.0950794,0.2913279,0.019404858,0.08942624,0.615878,-0.056133755,0.029864801,-0.03626058,-0.18828546,-0.6767588,-0.14791934,-0.50151974,-0.3942046,0.21643445,0.8228626,-0.35926566,0.023547124,-0.032726724,-0.4226363,0.079030566,0.21507014,-0.08480541,0.25683454,0.349719,-0.16487324,-0.5779833,0.28834534,-0.09877161,-0.15679899,-0.5945479,0.1476394,0.36460042,-0.447509,0.7001074,0.16496055,-0.021693144,-0.20434104,-0.3838003,-0.19840182,-0.0434477,-0.17000282,0.4917465,0.3525655,-0.7667991,0.2728046,0.3679873,-0.18798468,-0.7077934,0.630578,-0.17163883,-0.11128533,-0.15293802,0.15930036,0.20054163,0.043186463,-0.30595535,0.21922107,-0.28291515,0.19388452,0.24198906,-0.12032141,0.18605891,-0.11958146,0.072529964,-0.67484254,0.031043371,-0.46168038,-0.25776514,0.3399906,0.15876998,0.22734849,-0.014035745,0.18212621,0.24062207,-0.3621908,0.014224352,-0.062015202,-0.22399668,0.19225256,0.46051905,0.4561147,-0.562875,0.43948105,0.007977094,-0.14415511,0.2188013,0.05783101,0.32198662,0.11807851,0.38575497,0.2083917,-0.26906678,0.22472098,0.6666259,0.15884869,0.44781065,0.030374119,-0.046607226,-0.033527654,0.02725151,0.3000996,-0.014480655,-0.646134,0.13491777,-0.27651104,0.23104985,0.5101475,0.23948438,0.12926647,-0.024316134,-0.5235151,0.069735356,0.2282751,0.11910323,-1.1553541,0.36570325,0.24294814,0.88402075,0.40013131,-0.027953668,-0.050515104,0.64652854,-0.12143544,0.11313528,0.36589774,-0.01876228,-0.6462018,0.44875103,-0.81342596,0.5004899,-0.0017771934,-0.13282396,0.104658954,-0.00026064258,0.3985842,0.6701325,-0.23972288,0.059107516,0.18876825,-0.327384,0.0848139,-0.41905943,-0.14569065,-0.6750924,-0.15311925,0.48819107,0.64374316,0.26158836,-0.15104954,0.045176268,0.049875677,-0.16280535,0.054106764,0.18124747,0.21152811,-0.03553697,-0.7452056,-0.1909789,0.39171743,-0.09926277,0.23295961,-0.14509888,-0.18601653,0.24831179,-0.1873678,0.008236312,-0.0038118276,-0.6833743,-0.00944254,-0.21380655,-0.59800833,0.4771783,0.12975347,0.23472282,0.26271605,0.04078088,-0.11586899,0.5982515,-0.054861076,0.93172705,-0.14028218,-0.029371561,-0.46650887,0.219564,0.2449771,-0.098873325,-0.19012323,-0.45544645,-0.007103409,-0.49805933,0.49554005,0.18185885,-0.44266754,-0.18136522,-0.012794209,0.103179336,0.6219379,-0.16783014,-0.11938759,-0.22616564,-0.1925412,-0.29575577,-0.20308091,-0.11985513,0.22592787,0.16054425,-0.0719374,-0.21328269,-0.06733875,-0.025092691,0.4410601,-0.14558318,0.59082454,0.36848417,0.05656141,-0.24822254,-0.3676307,0.35172155,0.48517624,-0.04126944,-0.089210905,-0.3200768,-0.44453487,-0.42736492,0.077874474,-0.12704921,0.4110064,0.16080867,-0.10577794,0.5178593,-0.06686036,1.1545147,-0.014608179,-0.34825888,0.36108536,0.5414807,0.08920509,-0.14171773,-0.3013639,0.7405506,0.37341648,-0.020804556,-0.039253063,-0.4395652,-0.06364318,0.15650742,-0.13565327,-0.05005438,0.014181143,-0.49230447,-0.24258253,0.16355266,0.12231525,0.47318083,-0.13965662,0.17215006,0.23869082,-0.08175266,0.1847275,-0.25194043,-0.47015718,0.18172558,0.32147995,-0.004190462,-0.013969561,-0.6132129,0.46282983,-0.28117582,-0.012680439,-0.2306448,0.33024067,-0.266967,-0.29827574,0.17220435,-0.0150074875,0.2638465,-0.25980988,-0.35161194,-0.36331585,0.5695493,0.1107846,0.1016976,0.3739886,-0.26468882,0.10910922,0.026429256,0.45028016,0.7629114,-0.086507656,-0.061974756,0.4589095,-0.32039595,-0.62305194,0.38032183,-0.36377963,0.38859582,0.13146403,-0.05951127,-0.66617835,0.25239462,0.1063151,0.03549879,-0.15653583,-0.48061314,-0.2589623,0.3676127,-0.22212568,-0.07859165,-0.30382282,-0.13377053,0.46916264,-0.26218352,-0.37458256,0.12505879,0.01882672,-0.045137357,-0.36997774,0.011812491,-0.3046077,0.32616162,-0.09598919,-0.44567588,-0.26327303,0.0012343952,-0.31111592,0.34758696,0.038345367,-0.27563885,0.21386692,-0.29812333,-0.10698081,1.0548147,-0.32673857,0.17065795,-0.407887,-0.45123625,-0.71889085,-0.2744706,0.38762093,-0.09589753,0.009453739,-0.6941067,0.08670758,-0.18098845,-0.19469324,-0.21804474,-0.36797696,0.4178176,0.031094356,0.40372738,-0.020794561,-0.83492535,0.27255994,0.06526792,-0.26306266,-0.7419581,0.58509386,-0.1120646,0.7531087,0.044563286,0.21209107,0.28373763,-0.29821077,-0.15743275,-0.2166167,-0.13886514,-0.5168198,0.034883894,242 -393,0.44929823,0.15226878,-0.6092744,-0.23463944,-0.24626052,0.11130492,-0.33874625,-0.0013192573,0.26659283,-0.16861548,-0.0019197783,-0.083448865,0.036023784,0.36583108,-0.15328784,-0.91969997,0.09507297,0.00578713,-0.631512,0.41908625,-0.57172924,0.38893047,0.14018477,0.5090371,-0.07040372,0.36414284,0.5163992,-0.13463709,0.00857059,0.036536045,-0.056024797,0.3567216,-0.8254493,0.18552111,-0.06432338,-0.33663613,0.06386841,-0.1351683,-0.16845492,-0.6364358,0.31221,-0.68610185,0.6527054,0.19853337,-0.3139508,0.05634004,0.1361847,0.044016127,-0.3251057,0.25332406,0.16646346,-0.35330275,0.004739344,-0.2201741,-0.28160915,-0.53371227,-0.6659849,0.05254644,-0.819326,-0.19354716,-0.42718744,0.22099791,-0.3204703,-0.10005962,-0.109681405,0.50173604,-0.44772696,-0.04149887,0.30946356,-0.30815873,0.17851327,-0.32397008,-0.21780892,-0.05185181,0.35788065,-0.10457189,-0.1095405,0.14898719,0.29432368,0.6714507,0.24910153,-0.3547437,-0.36898288,-0.1974542,0.08577143,0.3576688,-0.1062463,-0.31088203,-0.17877875,-0.12758043,-0.08000743,0.27965793,-0.032434523,-0.29330632,0.07825883,0.13903551,-0.072494626,0.4833097,0.41521546,-0.6170527,-0.43382737,0.38156694,0.3461102,0.0013994405,-0.12540235,0.27028677,0.029727867,-0.56258446,-0.3471861,0.17686746,-0.017068012,0.3941224,-0.07576784,0.27339825,0.80818737,-0.13066623,-0.11187233,-0.23148572,-0.19074823,-0.010913581,-0.1408724,0.059113614,0.117274985,-0.4075982,0.05629759,-0.24049255,0.6774303,0.034321286,-0.7638182,0.3704061,-0.5523791,0.08618056,-0.0973187,0.7133892,0.8582579,0.14144439,0.20313899,0.85107374,-0.6500498,0.07883273,0.041493453,-0.5537465,0.2711095,-0.09061832,0.08144965,-0.540155,-0.061989743,0.0881662,0.13911417,-0.016378565,0.37107942,-0.39798144,-0.07189401,0.10498231,0.7376407,-0.4474505,-0.045535725,0.6725322,1.2220763,0.8899299,0.027249923,1.2978185,0.4070591,-0.07732866,0.05180938,-0.32447734,-0.49510616,0.18377241,0.38967758,0.12832592,0.40743902,-0.05574814,0.20371448,0.3957402,-0.21397819,-0.02516993,0.00033267055,0.32300264,-0.036738537,-0.22450103,-0.34302112,-0.087467276,0.19550203,0.04515654,0.13237436,0.36029458,-0.030534282,0.32838818,-0.09909749,1.4829006,0.079976395,0.16358984,-0.028241022,0.4127337,0.33024535,-0.14134082,-0.16320576,0.31500146,0.24225369,0.042358637,-0.5476282,0.068679415,-0.33935425,-0.38215923,-0.26352787,-0.47492805,0.030505437,-0.035080504,-0.40819773,0.050017454,0.0477529,-0.32376978,0.28398237,-2.6839504,-0.14902468,-0.06966904,0.26030287,-0.0625846,-0.14578898,-0.31873888,-0.41132325,0.34550238,0.53716034,0.28614965,-0.48871532,0.41469002,0.3127394,-0.21368305,-0.25570422,-0.53752476,0.053595968,-0.188781,0.48182866,-0.16670561,-0.23985054,-0.26933935,0.62553734,0.6745891,0.10668065,0.0038144547,0.13276868,0.5265194,0.06592591,0.54029167,0.16801198,0.49796054,-0.2139745,-0.24476291,0.40466002,-0.35398155,0.29068777,-0.028745225,0.048235092,0.3610951,-0.55041665,-1.1101781,-0.59398013,-0.2879811,1.0832397,-0.30582553,-0.3166258,0.33194393,-0.11982674,-0.1863713,0.19696757,0.58298177,-0.18126802,0.2309072,-0.6656465,0.21316339,-0.08735033,0.06270016,-0.10105332,0.2287868,-0.3703056,0.6700657,-0.18660869,0.37992454,0.29638883,0.2145625,-0.010755981,-0.5213774,0.23540011,0.8092295,0.15057448,0.12879808,-0.16552065,-0.16923727,-0.148474,-0.012659669,0.018809142,0.5633554,0.6946083,-0.078976914,0.27762964,0.20353504,-0.14741312,-0.051783178,-0.14792612,-0.17339645,0.112800956,0.050244927,0.5012504,0.6040395,-0.30184177,0.1811663,0.044764515,0.22186624,-0.123555236,-0.48660952,0.6899768,0.6796734,-0.14816399,-0.19440505,0.6459064,0.38792852,-0.33964163,0.50701076,-0.5907229,-0.33000275,0.5486995,-0.12249769,-0.25383255,0.045334242,-0.39534357,0.013183168,-1.04645,0.110877596,0.0041846717,-0.4044784,-0.3334108,-0.30364987,-4.608096,0.21086647,-0.24917164,0.094566904,-0.12735079,-0.041755684,0.5146249,-0.5277856,-0.540044,-0.034003902,0.0064798025,0.45637614,-0.16326173,0.24839714,-0.22085063,-0.22271241,-0.2618148,0.42482376,0.17660622,0.18877193,0.20910004,-0.40357035,0.12679745,-0.2908757,-0.44469616,-0.034545176,-0.3684965,-0.4448556,-0.29700845,-0.4498602,-0.27131465,0.74572134,-0.41990894,-0.061375253,-0.30951485,0.048463114,-0.10799725,0.411901,0.24901561,0.1997038,0.117328025,0.054652877,-0.329073,-0.3505554,0.21387537,0.08523049,0.31183153,0.42085767,-0.031858154,0.14906883,0.45243284,0.42575482,-0.02828446,0.5518939,0.33169046,0.1260264,0.2864508,-0.3937271,-0.3552402,-0.8630582,-0.47898623,-0.43561295,-0.49942327,-0.54009706,-0.114503875,-0.47402143,-0.7749838,0.5145007,0.015474588,0.20222946,-0.19771075,0.30983925,0.29587144,-0.18090013,-0.015851531,-0.03614837,-0.2483726,-0.6036752,-0.17503284,-0.59662056,-0.70935196,0.12281777,0.8180912,-0.35933563,-0.07996477,0.098227754,-0.15561387,0.06535885,0.09618725,0.3132639,0.2348455,0.5519134,-0.016927829,-0.80821544,0.4974114,-0.2520902,-0.09500254,-0.7257374,-0.13042837,0.55162704,-0.5955431,0.7401468,0.3012793,0.26490575,0.36306673,-0.5809461,-0.34623465,0.13881148,-0.14417507,0.6451822,0.10230213,-0.8403582,0.51972544,0.024934156,-0.18670838,-0.6072611,0.41726544,0.065260634,-0.47500652,0.2444414,0.32997447,-0.0058372617,-0.08092735,-0.21448787,0.30859876,-0.49688897,0.28585705,0.27247736,-0.07964171,0.5499934,-0.1326446,-0.3447277,-0.64014596,-0.27470067,-0.5267045,-0.31984276,-0.057758626,0.073727146,-0.010111575,0.08218775,-0.13612422,0.5434992,-0.16120175,0.26469117,-0.08314767,-0.32079917,0.40967813,0.5718128,0.28187758,-0.57549506,0.58143795,0.061930895,-0.062730476,-0.10472944,0.04166066,0.5213374,0.1473464,0.37163833,-0.16832812,-0.065674506,0.13893095,0.6188361,0.019211175,0.3126182,0.21286297,-0.1955441,0.597929,0.09019862,-0.03158078,-0.18881014,-0.22343493,0.019640744,-0.08934088,0.16234112,0.47124004,0.19036147,0.34656888,-0.08315633,-0.027765453,0.421016,0.22302477,-0.06496542,-0.8296515,0.3458708,0.40459043,0.51679486,0.6701585,-0.14846434,-0.0031923226,0.3889769,-0.2885804,0.0848127,0.381063,0.09736774,-0.514332,0.69157875,-0.4608729,0.47028497,-0.26239175,-0.15410623,-0.0010916889,0.21712515,0.25456157,1.0194834,-0.10651224,0.13294856,-0.00501209,-0.06566316,0.0040302053,-0.23475412,0.11535058,-0.41312906,-0.22566226,0.5652665,0.43086162,0.2766683,-0.32574376,-0.16664922,0.10876411,-0.1451094,0.051660873,-0.28536898,-0.100337625,-0.12878464,-0.56249946,-0.4091484,0.58012474,0.10006585,-0.044932436,-0.004547713,-0.36991403,0.19652447,-0.14393303,-0.023135824,-0.054544806,-0.59290445,-0.023364183,-0.25770602,-0.4585896,0.57859033,-0.6070146,0.4673462,0.124745265,0.15368648,-0.281756,0.14521037,-0.016836947,0.63092965,0.19446482,-0.09268479,-0.30490008,0.094621934,0.38517863,-0.32347518,-0.32880226,-0.5181414,0.16724615,-0.47215882,0.37955275,-0.18143871,-0.30463955,-0.2581406,-0.059271097,0.14029603,0.37631002,-0.17432931,-0.23150036,0.27851692,-0.062724516,-0.23248914,-0.116108045,-0.38543049,0.3755197,-0.21804066,-0.1152823,0.054838955,-0.010902143,-0.16886269,0.2971137,0.17569593,0.11185889,0.119157776,-0.09036369,-0.24324979,0.013493257,0.085030064,0.36672834,0.2584001,0.03207926,-0.25801712,-0.43996564,-0.27262452,0.16465522,-0.1524122,-0.07343062,0.12724887,-0.3653229,0.79612416,0.40602618,1.1857126,0.21414408,-0.24779122,0.16848862,0.5085958,0.1214024,0.10740716,-0.44270334,1.0000342,0.61465925,-0.18986042,-0.2256097,-0.21967745,-0.24684656,0.19404276,-0.2438917,-0.221102,-0.2746352,-0.6678151,-0.1546595,0.08062941,0.26973823,0.12509559,-0.06155015,-0.11810893,-0.069701284,0.19005878,0.45325065,-0.5274993,-0.14946099,0.24786536,0.24622747,-0.02726832,0.3259091,-0.20464318,0.5208564,-0.71241134,0.08523994,-0.54109293,0.13597174,-0.037571337,-0.39134675,0.25947005,-0.017576694,0.31184217,-0.14590092,-0.25681552,-0.2955326,0.48228365,0.30698135,0.24004222,0.90543693,-0.2982925,0.0217496,0.044281416,0.4443372,1.4596522,-0.10474463,-0.03552883,0.31544897,-0.13284317,-0.61024284,0.0038602352,-0.53564614,0.07890359,-0.35028014,-0.5691513,-0.3282265,0.071597755,-0.0050764787,-0.01140772,0.04735658,-0.51191163,-0.20654644,0.34406748,-0.1278418,-0.21779254,-0.26208895,0.18324468,0.7806116,-0.35309696,-0.29763597,0.087109976,0.24996522,-0.12919952,-0.60955137,0.029112441,-0.20010276,0.34365997,0.29477707,-0.25283942,0.0082991505,0.38987756,-0.42877957,0.24367365,0.46421573,-0.23522131,0.04583209,-0.3375623,-0.20735039,1.0711678,0.07307907,0.15033154,-0.5304089,-0.41968894,-1.0247271,-0.33312038,0.3521828,0.16059735,0.018799739,-0.35834318,0.022506015,-0.037776332,0.065553494,0.053089935,-0.6504839,0.28995678,0.0044269795,0.7099158,0.015506034,-0.9667669,-0.061160307,0.17669477,-0.28747562,-0.5543984,0.5700116,-0.20823598,0.63018304,0.075027406,0.047184467,0.3177711,-0.68252945,0.3009581,-0.44665828,-0.049296122,-0.71859324,0.0060167485,245 -394,0.3823752,-0.28906205,-0.38273105,-0.21697955,-0.18428369,0.02097891,-0.082485996,0.5004456,0.17090525,-0.3391578,-0.28663746,-0.20970301,-0.005201906,0.26188672,-0.16692266,-0.5872744,-0.1498789,0.06336079,-0.53632104,0.48737663,-0.26966462,0.042921726,0.016985932,0.3393161,0.2107714,0.28054744,0.10084204,-0.16721602,0.059182536,-0.1493087,-0.18878521,0.18730521,-0.53891236,0.16504881,-0.18278904,-0.19226639,-0.07784976,-0.56303394,-0.49299422,-0.7193508,0.28020185,-1.044752,0.3591967,0.11077996,-0.22540298,0.39363316,0.0899182,0.08289104,-0.3475017,-0.17371528,0.10467006,-0.08865718,-0.08123515,-0.07432393,-0.15348133,-0.36884648,-0.50712657,-0.09344809,-0.26998353,-0.3393676,-0.4127842,0.03697291,-0.36579865,-0.012743496,-0.060361203,0.6672458,-0.4285417,0.26944372,0.34093237,-0.2258474,0.45434815,-0.5454618,-0.1916337,-0.11298137,0.20371078,-0.07463973,-0.26974347,0.32767597,0.3783261,0.22925653,-0.07657202,-0.075665064,-0.081871286,-0.14996217,0.20733023,0.32427686,-0.23565507,-0.50805056,-0.02625875,0.03584316,-0.011483103,0.33285618,0.10223051,-0.44760534,-0.109031074,0.16754878,-0.20656754,0.35927838,0.47720876,-0.14036603,-0.14719999,0.30869743,0.42727566,0.24039996,-0.1724286,-0.13138701,0.028694957,-0.5888072,-0.14804555,-0.010949535,-0.29578686,0.6945267,-0.18783535,0.1999538,0.69992584,-0.1259159,0.015509395,0.018383944,-0.0137311565,-0.08364003,-0.37766987,-0.19491185,0.2761897,-0.3266723,0.28367284,-0.14591686,0.7218874,0.1518306,-0.6223008,0.25481725,-0.6110306,0.19809742,-0.24104269,0.4717269,0.5835575,0.3746726,0.38336053,0.6102229,-0.45940158,-0.025481572,-0.044221316,-0.4083071,0.122419834,-0.12999377,-0.13482065,-0.3969343,-0.09342681,0.023182977,-0.07737541,0.077038504,0.25935242,-0.52260405,-0.09514356,0.058354262,0.89515585,-0.2355417,-0.014358806,0.6787785,0.96181446,0.7751683,0.10052749,1.0945668,0.20991543,-0.22593461,0.33774573,-0.0098464405,-0.79340285,0.3528784,0.43866137,-0.41686434,0.13128623,0.01165664,-0.16705881,0.35452023,-0.40703678,0.065165706,-0.25727913,0.16890384,0.14508723,-0.18123342,-0.3200114,-0.10300021,-0.09446224,0.081288524,-0.07014989,0.17688437,-0.090579435,0.34711477,0.1041498,1.4094579,0.034182392,0.12050433,0.13236785,0.35661635,0.14688492,-0.010599797,-0.09214705,0.41956377,0.45149747,0.29348516,-0.6512037,0.23516104,-0.1985556,-0.3754788,-0.1309074,-0.4385829,0.03591158,0.109711595,-0.41389403,-0.116918705,-0.21457818,-0.17060277,0.4383006,-2.752446,-0.18439968,-0.23208888,0.35780558,-0.3100811,-0.16544472,-0.014192545,-0.46070793,0.47164813,0.27942434,0.49938646,-0.5678426,0.19674203,0.5151497,-0.52601117,-0.2026582,-0.6435032,-0.11406927,0.022255447,0.4241014,0.024087003,0.05570027,0.1132579,0.04425054,0.46351233,0.25525108,0.18715858,0.3780399,0.41578075,-0.065031506,0.5316468,-0.084253855,0.50281084,-0.21048202,-0.1243056,0.20753588,-0.11601695,0.26143774,-0.10310757,0.12559734,0.4814073,-0.3903888,-0.834064,-0.74231726,-0.44240305,1.3138993,-0.40379348,-0.51737946,0.41202405,-0.37406236,-0.115997456,-0.079542585,0.5355078,-0.055740833,0.08582616,-0.7920231,0.21992247,-0.07100514,0.107142285,-0.026238369,-0.2190183,-0.33164304,0.7160505,-0.058285534,0.5148547,0.38302907,0.07440637,-0.13045172,-0.48988625,0.057588894,0.789392,0.35176983,0.083156385,-0.096237615,-0.19283448,-0.31214204,-0.050626844,0.083820425,0.68501186,0.64585954,-0.0546509,0.16470459,0.2421417,0.056759674,0.07043143,-0.15430246,-0.24206784,-0.1720924,-0.09084775,0.470417,0.6025572,-0.22079194,0.3370983,-0.04123239,0.39394334,0.07370038,-0.38679838,0.50747913,1.2417486,-0.16610436,-0.23160832,0.63076407,0.43259293,-0.30745372,0.365693,-0.42246395,-0.12998834,0.6222008,-0.1853274,-0.62704813,0.2265289,-0.25080273,0.04313138,-0.7360201,0.19813219,-0.25265914,-0.522015,-0.3274071,-0.1194775,-3.302566,0.25672325,-0.39300054,-0.24795938,-0.28516302,-0.21278763,0.28651693,-0.59128624,-0.5571887,0.2524484,0.0939881,0.6752857,-0.07313198,0.09371281,-0.29057187,-0.105481945,-0.18312761,0.032046188,0.1505512,0.27078423,-0.1458257,-0.4627277,-0.14814295,-0.036195405,-0.50074214,0.09323173,-0.48104984,-0.37089396,-0.11292515,-0.44342688,-0.280915,0.67192715,-0.26570597,0.07089958,-0.14949797,0.048167624,-0.18763338,0.15486977,0.08332855,0.38652703,-0.0730592,0.04162691,-0.014730181,-0.1775494,0.34597328,0.059472658,0.23436876,0.16927174,-0.19624674,0.23197949,0.3365941,0.5876481,-0.07110681,0.8123869,0.5210575,0.014962156,0.27083555,-0.250672,-0.3343869,-0.63329834,-0.2774953,0.012414089,-0.2910362,-0.45254773,-0.0590501,-0.28459758,-0.78437245,0.50049216,0.018791327,0.21005233,0.007650954,0.09627773,0.59192413,-0.23592053,-0.031356085,-0.018282788,-0.17194462,-0.7408833,-0.08493564,-0.6005029,-0.2999943,0.07390697,0.7452983,-0.2605428,-0.08129287,-0.11084386,-0.31163162,0.04119864,0.15178713,-0.13198818,0.2643382,0.4793419,-0.11681318,-0.7438475,0.60546625,-0.08603991,-0.31219155,-0.648932,0.33034304,0.5840586,-0.6400328,0.67873544,0.26537725,-0.11821975,-0.32430387,-0.47380498,-0.3036368,-0.18753645,-0.21336429,0.40742606,0.23435865,-0.7871099,0.32488337,0.31308362,-0.0766045,-0.623807,0.70119494,-0.11280143,-0.39008322,0.07713085,0.33525434,0.06201583,-0.010353691,0.033908688,0.2453128,-0.27834806,0.17657842,0.1766857,-0.046657745,0.17839123,-0.048155423,0.16570345,-0.8112563,0.15874584,-0.57225704,-0.19214042,0.29795432,0.111892216,0.025293797,0.13341144,-0.10289548,0.36929482,-0.12091863,0.21476136,-0.17573118,-0.2933889,0.32141495,0.4477896,0.4092998,-0.47125143,0.6534468,0.01551181,-0.09458374,0.1225276,0.22176202,0.3922051,0.070442036,0.39093348,-0.16818592,-0.21867938,0.24704064,0.7050334,0.16342959,0.51920974,0.07170508,0.10192283,0.33078447,0.040449347,0.23441233,-0.08988334,-0.6800624,0.022626886,-0.26413172,0.0765911,0.45293716,0.19723955,0.23453283,-0.11369131,-0.325716,-0.027297199,0.18137467,0.26719853,-1.0397272,0.4291613,0.27541628,0.84404534,0.46672413,-0.06759079,-0.16443549,0.6854406,-0.044341557,0.112428315,0.46622673,0.073561676,-0.51331353,0.5081395,-0.74220866,0.35939902,-8.888756e-05,-0.096140675,0.031266827,-0.0065345657,0.23535217,0.7735015,-0.13190411,-0.11193232,-0.050611787,-0.39040807,0.37086365,-0.5156818,0.045337077,-0.47330618,-0.3631901,0.47862038,0.6844197,0.27901378,-0.25658906,-0.039337713,0.08880808,-0.1175727,0.13783659,0.08560284,0.089371994,-0.11662869,-0.7720695,-0.21476506,0.4277956,-0.18416157,0.116691336,-0.070047356,-0.13470258,0.25819787,-0.124861,0.008080168,-0.16118348,-0.72913486,0.07072271,-0.29702616,-0.47386837,0.39248303,-0.23731945,0.20136474,0.14979519,0.04174685,-0.2498217,0.17704175,-0.09066913,0.8798377,-0.063946374,-0.08766043,-0.47436735,0.08743664,0.17939378,-0.13386868,-0.060166776,-0.4071493,-0.13474329,-0.4985344,0.47688606,0.052731644,-0.21592188,0.07237298,-0.17716667,-0.02693077,0.5975461,-0.14945357,-0.08374417,-0.24685402,-0.14376378,-0.287845,-0.19819987,-0.03122653,0.29122522,0.22519569,0.24924575,-0.12898768,0.007788505,-0.24303368,0.34698597,0.0075207436,0.47939247,0.29192305,0.04172117,-0.15117252,-0.34849903,0.27486113,0.42554694,0.13148566,-0.092716895,-0.15062432,-0.506121,-0.24800101,-0.038440917,-0.040637862,0.58846796,0.098335214,-0.017255804,0.5721668,-0.10836933,0.9377286,-0.02331734,-0.3309256,0.0027899232,0.5201286,0.053377263,-0.17768645,-0.20244299,0.7854972,0.48437467,0.020586282,-0.028390113,-0.36239353,0.06828296,0.20606299,-0.08443654,-0.16363433,-0.090503216,-0.60245097,-0.15559019,0.0031403708,0.31166193,0.31206012,0.09540777,-0.045074258,0.11009844,-0.107341774,0.3583402,-0.41675726,-0.21279278,0.16820805,0.0819701,0.006050076,0.16869545,-0.3708113,0.40915576,-0.35414618,0.0868004,-0.31182,0.15716566,-0.27547818,-0.14796643,0.1488503,-0.16897546,0.43897825,-0.2876801,-0.31333518,-0.2915074,0.47969443,0.21809962,0.090689726,0.64786136,-0.24486212,0.09451617,0.081679,0.6002328,0.8248445,-0.18128946,0.00032197792,0.28305742,-0.55034333,-0.6019003,0.37113175,-0.26989987,0.2286595,0.09013392,-0.0076185376,-0.42603663,0.28621966,0.18475787,-0.091994695,0.050916173,-0.7201943,-0.30396634,0.25820372,-0.30063528,-0.15481187,-0.3996509,0.21886158,0.5323606,-0.27333426,-0.15398839,0.014805334,-0.05896647,-0.038804065,-0.420545,-0.06570746,-0.36528212,0.22998948,0.013190614,-0.34492284,-0.05585963,-0.038990207,-0.37587902,0.3502814,-0.17006819,-0.29837528,0.06943337,-0.21388964,-0.21966197,0.9486912,-0.19758452,0.03342561,-0.49405685,-0.50281185,-0.5993243,-0.43209654,0.46952972,0.01237878,0.14734724,-0.426436,0.062334906,0.014618261,0.026629567,-0.2153888,-0.23247066,0.46839455,0.09012298,0.5054969,-0.086037636,-0.6992799,0.22551334,-0.031453002,-0.04412279,-0.66144115,0.48927078,-0.091961876,0.5354184,0.08154876,0.15889482,0.21218736,-0.38805512,-0.2833059,-0.18363571,-0.22842695,-0.5429123,0.021940073,246 -395,0.14600371,0.021789942,-0.63257056,-0.31400484,-0.49538094,0.2510211,-0.20787439,-0.04192969,0.22258337,-0.27837697,0.018337378,0.03562036,-0.2506934,0.51634187,-0.19678022,-0.8298531,0.09296721,0.048267536,-0.6484498,0.50395966,-0.3583124,0.42873117,0.13932952,0.28046337,-0.12446309,0.40084273,0.20885284,0.123462304,0.001582035,-0.23788486,-0.33306623,0.3270897,-0.49734205,0.45367125,0.11254204,-0.42302957,-0.099089675,-0.2980985,-0.015172805,-0.5936639,0.27349496,-0.6796691,0.6081912,-0.28883782,-0.38910517,-0.060040653,0.27579346,0.19151905,-0.12906744,0.064905435,0.20859228,-0.3742047,-0.1472278,-0.073626585,-0.4340051,-0.6206997,-0.54879856,-0.03322372,-0.89345706,-0.0677893,-0.2560566,0.37437886,-0.2629438,0.012867813,-0.19361624,0.3568182,-0.37898564,-0.041984554,0.18571724,-0.41844162,-0.046908744,-0.42574698,-0.12833856,0.05975759,0.2889233,-0.012363672,-0.18000595,0.26093858,0.43507504,0.50234187,0.118026786,-0.30216938,-0.22144958,-0.3235567,0.048454735,0.545045,-0.0055289334,-0.17203546,-0.28558332,-0.1528485,0.42915225,0.1955746,0.18911107,-0.3065794,-0.09703199,-0.21960625,-0.24065672,0.29681578,0.34491232,-0.5131009,-0.1047053,0.47644112,0.2827313,0.043612864,-0.40452403,0.21296047,-0.10907306,-0.32583836,-0.064660154,0.02901732,-0.06858846,0.48534584,-0.14497341,0.38066193,0.76085436,-0.03324001,-0.0050385636,0.047145553,-0.123965345,-0.2195504,-0.15175237,-0.02002794,0.10307103,-0.40301734,-0.113632046,-0.15956368,0.7068861,-0.081252985,-0.7316579,0.3608005,-0.30033085,0.0678682,-0.09538656,0.70170933,0.7585982,0.45270893,0.10624599,0.8570104,-0.4232953,0.011629869,0.0694121,-0.29924998,-0.05144628,-0.11124754,0.23127082,-0.5620562,0.2104003,0.14113916,0.06367178,0.08238739,0.4183398,-0.47280887,-0.13128118,0.027095782,0.56925714,-0.37860724,-0.25105223,0.95691377,1.0635153,1.0886272,0.10042386,1.078351,0.3232026,-0.115830384,-0.37581015,-0.18144462,-0.24202575,0.114328794,0.42308208,0.3490429,0.48162922,0.021626143,0.06886854,0.576163,-0.06457481,-0.1527002,0.1958622,0.23363689,0.016838152,-0.18356884,-0.49373594,-0.1434088,0.348828,0.07277024,0.1283676,0.31777325,-0.13691677,0.8568295,0.32301632,0.98325914,0.057900928,0.1073544,-0.08384712,0.20248011,0.1448933,-0.19973327,-0.07658293,0.2396939,0.12453674,-0.23549107,-0.36499745,-0.0342687,-0.35865912,-0.3462765,-0.21957125,-0.4349225,-0.38551205,-0.3253107,-0.3686664,-0.27226147,0.13145398,-0.4002835,0.2692904,-2.6194673,-0.24458691,-0.28271067,0.22938958,-0.20724835,-0.25579625,-0.13716754,-0.4761271,0.32073632,0.38049144,0.23110078,-0.5715887,0.5103594,0.46586952,-0.29217607,-0.23016493,-0.64152473,0.076270804,-0.11670959,0.4796131,0.0038946527,-0.3230322,-0.15382047,0.33728743,0.5875346,-0.00033361572,-0.032690514,0.28318742,0.3891658,-0.13637994,0.43979436,0.17822526,0.75971806,-0.14304452,-0.16107927,0.25659645,-0.5032788,0.3953164,-0.08002414,0.20641196,0.54039663,-0.3599949,-0.78757274,-0.610765,-0.22181307,1.2955953,-0.31204256,-0.5084547,0.2602156,-0.083901264,-0.30717543,0.23596145,0.47350186,-0.06253086,0.1266874,-0.47987774,0.10633794,-0.19478874,0.15946619,-0.20200725,0.04919117,-0.4402105,0.5834467,-0.14499702,0.5168366,0.2127942,0.23449714,-0.27662173,-0.27929333,0.12031541,0.96369785,0.5002355,0.00911487,-0.09691095,-0.14480498,-0.20114681,-0.29510635,0.19864218,0.48615727,0.5383639,0.16887243,0.10394064,0.285646,-0.15865524,0.106197916,-0.14368966,-0.28461644,0.0038479588,0.17777537,0.5805209,0.6331838,-0.06400221,0.5548951,-0.07733764,0.2879188,-0.22423837,-0.6284836,0.39786515,0.4656381,-0.22282131,-0.38512084,0.7611838,0.30860922,-0.37326744,0.3769753,-0.49898177,-0.5481044,0.4598802,-0.028869614,-0.34191114,0.15393993,-0.36865872,0.20460738,-0.8155189,0.2540676,0.035690494,-0.7741412,-0.5191759,-0.15160453,-3.201608,0.1396469,-0.10398125,0.020962758,-0.17154558,-0.24771313,0.29078427,-0.4910807,-0.6192861,0.053060394,0.071104124,0.5038723,-0.11914723,0.0493083,-0.19241498,-0.40795514,-0.10947449,0.39046893,-0.054650523,0.30175298,-0.09857186,-0.24542725,0.101461254,-0.37317386,-0.4809727,-0.12566125,-0.59847033,-0.6366846,-0.06418953,-0.4101303,-0.19979279,0.7248948,-0.46340337,0.035752513,-0.3528479,0.02420345,-0.099272914,0.17539968,0.23380291,0.18517949,0.1149586,-0.0029050687,-0.031977646,-0.41089258,0.14314106,-0.03171618,0.30606475,0.5125022,-0.07487974,0.3014279,0.42664954,0.63945544,0.062483516,0.9103618,0.12612174,-0.19418862,0.32345343,-0.30931956,-0.40610725,-0.7241979,-0.36746636,0.079187475,-0.53750867,-0.3786513,-0.030302882,-0.26143625,-0.7813028,0.5793706,0.30502108,0.19203034,-0.36490154,0.27953073,0.3689669,-0.12935503,0.061421122,-0.07089755,-0.23188102,-0.57311785,-0.4262189,-0.788905,-0.5902662,0.047766548,1.0585611,-0.2001679,0.011422639,0.09904827,-0.2688795,-0.0023567507,0.25792614,0.42076996,-0.0058431327,0.10908751,-0.24745655,-0.75050116,0.3390753,-0.4325838,0.030987795,-0.40566853,0.038956903,0.64808905,-0.51759946,0.45528433,0.37104115,0.31924823,0.039620418,-0.5853182,-0.06350409,-0.09010733,-0.22525704,0.54373854,0.25079083,-0.5215284,0.52900356,0.032880824,0.0339779,-0.5517107,0.35429874,-0.15540414,-0.03707611,0.08422259,0.48021677,0.02395727,-0.0538022,-0.14289968,0.013225747,-0.5567288,0.22256999,0.3778627,0.016286539,0.44043222,-0.111882314,-0.5145029,-0.53219974,-0.1593708,-0.54415715,-0.18065558,-0.077527866,-0.0085976375,0.09506837,0.14441428,-0.122633286,0.4542851,-0.3529603,0.13284582,-0.26775503,-0.35425743,0.39306542,0.54334325,0.37179017,-0.44043484,0.6515334,0.22459282,0.109910525,-0.31179714,-0.032201786,0.6104501,0.11408063,0.4158823,-0.10025328,-0.065011896,0.18506457,0.7725387,0.19635202,0.28435078,-0.044711005,-0.20447788,0.116068974,0.041511122,0.25133258,-0.031881202,-0.30585843,0.02911478,-0.19595805,0.16110232,0.44189516,0.12923765,0.4587255,0.010842987,-0.09017156,0.30409288,0.06521855,-0.2755387,-1.162585,0.40746897,0.35893813,0.7409047,0.41232714,0.10860717,-0.20896606,0.5720301,-0.46704176,0.012483886,0.4416823,0.011872845,-0.15749474,0.68478525,-0.583197,0.42625156,-0.19712183,0.026887903,0.121126965,0.046533566,0.32602316,0.97590363,-0.17958759,0.065851614,-0.07444812,-0.34033728,0.054079887,-0.25048584,0.05577739,-0.33164102,-0.3471995,0.5876556,0.23492731,0.44314495,-0.28813052,0.029941244,0.13420412,-0.15548314,0.124489866,-0.17375931,0.06780345,-0.32242176,-0.32615307,-0.35420838,0.5513404,-0.015738716,0.04898843,0.22179472,-0.36190346,0.2874458,0.23377965,0.021620853,-0.045190185,-0.39723587,0.090554394,-0.30765796,-0.64666194,0.27124324,-0.40676203,0.32498452,0.19875202,-0.025667382,-0.11746641,0.22515683,0.11775751,0.5971586,0.14992464,-0.19873057,-0.12860343,0.008744555,0.26547456,-0.36668348,-0.11615,-0.32591304,0.3559932,-0.6042399,0.49664813,-0.28537074,-0.39105907,-0.080431044,-0.17279372,0.10322632,0.10902514,-0.06683929,-0.019408235,0.17643121,0.04366342,-0.19083007,-0.04742843,-0.46804097,0.2455688,-0.08597757,-0.07884293,-0.06521274,-0.06619298,-0.10740372,0.20340252,-0.14796226,0.2365657,0.22490358,-0.205663,-0.43634653,0.14061208,0.04785094,0.3756458,0.033205908,0.043982036,-0.18534425,-0.32192865,-0.3926918,0.6074306,-0.092733495,0.18713653,0.11413924,-0.31214315,0.8687421,0.08761911,1.0867333,0.07637893,-0.5314645,0.081353255,0.44864967,0.14846937,0.22267781,-0.15972732,1.0679835,0.57309043,-0.1444223,-0.1070344,-0.55066615,-0.16514573,0.3377312,-0.23126648,-0.30803356,-0.030310784,-0.7079322,-0.099484526,0.122498564,0.07049716,0.15474088,-0.04756558,0.013584887,0.107293926,0.24564895,0.41239908,-0.634519,-0.06817608,0.3417463,0.067741424,-0.015526648,0.2022612,-0.37832707,0.37860298,-0.8767203,0.2182715,-0.48234674,0.1004997,-0.1606041,-0.29751724,0.3316786,0.06468,0.29471526,-0.16418724,-0.39987642,-0.2529529,0.5375813,0.15063174,0.17402098,0.77797765,-0.267153,-0.11227101,0.18973242,0.5281814,1.2448262,-0.03664208,0.16575466,0.22605214,-0.2649483,-0.5917204,0.15481567,-0.40830544,0.08826125,0.017128306,-0.4464728,-0.23052227,0.29034156,0.16900972,0.014593961,0.29343876,-0.2977968,-0.19383252,0.12678766,-0.48694962,-0.17599568,-0.3173149,0.0736304,0.577781,-0.36744413,-0.27837604,0.03735637,0.43223816,-0.31218907,-0.817738,0.1324128,-0.084366545,0.5145919,0.1605952,-0.49013063,-0.0131798815,0.2478251,-0.41819695,0.25145048,0.61406845,-0.28487536,0.04365825,-0.47313148,0.019329028,0.95596445,0.062489484,0.15503936,-0.7340069,-0.54326564,-0.8272987,-0.3116376,-0.120918,0.10722752,-0.0777271,-0.492127,-0.2637169,-0.20565765,0.016930249,0.20181002,-0.4822676,0.3673625,0.14322074,0.43020657,-0.041246396,-1.1618799,0.023769477,0.10407734,-0.012198175,-0.4954808,0.4675854,-0.19904883,0.6610712,0.24097838,-0.0047933375,0.09194744,-0.61590844,0.33626747,-0.24680017,0.009079993,-0.66969484,0.061005395,249 -396,0.5377277,-0.22152969,-0.56640804,-0.18224421,-0.16568391,0.08124601,-0.22936177,0.6146669,0.13209058,-0.5759605,-0.06600191,0.006462455,0.11496328,0.458501,-0.1047144,-0.5745807,0.034177568,0.11836719,-0.507023,0.69854397,-0.43400052,0.1299069,-0.1527503,0.6378273,0.30992702,0.3202204,0.054993007,0.110306814,-0.080904566,-0.1875345,-0.09012952,0.4199553,-0.5503047,0.08295584,-0.025906196,-0.49530667,-0.2557679,-0.3737571,-0.24748072,-0.67854184,0.23204923,-1.0794741,0.6407356,-0.03980309,-0.39302307,0.23216711,0.2724272,0.2650621,-0.20330384,-0.08516828,0.07781916,0.015823718,0.0861109,-0.30068353,-0.10939431,-0.54927224,-0.62051636,-0.053410523,-0.3983286,-0.066547416,-0.12182082,0.16306546,-0.2875536,0.054576296,-0.27011484,0.32023492,-0.5071395,0.069352195,0.1823593,-0.10407265,0.33766943,-0.49455643,-0.29337475,-0.11998994,0.124676704,-0.11331188,-0.32279125,0.20447445,0.2782592,0.49142092,-0.12113308,0.021705035,-0.34010935,-0.041960735,0.060721222,0.4825326,-0.24787302,-0.5410771,-0.31205988,1.552701e-05,0.23423035,0.1531996,0.2488478,-0.25737813,-0.04348502,-0.021289766,-0.22217822,0.27948493,0.4194893,-0.31285468,-0.45388037,0.27345482,0.41353717,0.17684095,-0.36210546,0.108910665,0.04222422,-0.536823,-0.07707466,0.0862175,-0.021495346,0.50262356,-0.12750271,0.12990664,0.56036866,-0.13408966,0.095325865,0.13228954,0.02391472,-0.17854545,-0.32469216,-0.30785874,0.19794618,-0.3496084,0.1584016,-0.34913057,0.6633073,-0.009254022,-0.7406806,0.32073012,-0.6041139,-0.03751074,-0.2065736,0.39701357,0.68995064,0.40454057,0.036942217,0.5447559,-0.24679063,0.018149793,-0.09818309,-0.24329282,0.15377016,-0.1604391,0.0021240967,-0.68128145,0.18280879,0.18196954,-0.08016864,0.08101102,0.63263786,-0.5907955,-0.2157743,0.19933309,0.82493263,-0.3483215,-0.067194395,0.85554284,1.0709534,0.9221508,0.12981145,1.1794695,0.25302535,-0.15394373,0.20308678,-0.20300902,-0.6539445,0.19368076,0.23301278,-0.14733516,0.35434097,-0.00547577,-0.15198143,0.46547514,-0.13857667,0.055222306,-0.15909772,0.2376603,0.039244287,-0.15591559,-0.38030177,-0.23305576,-0.027271403,-0.12068302,0.303658,0.19437326,-0.37711948,0.47318262,0.08161998,1.7136301,-0.16133176,0.09062847,0.025395988,0.4743721,0.22188602,-0.21512198,0.05644534,0.27998465,0.4305706,0.05471546,-0.5133978,0.25760967,-0.123537466,-0.5693987,-0.16337255,-0.40789914,-0.15671071,-0.08531477,-0.60412747,-0.14462925,-0.07379962,-0.09513688,0.3148376,-2.6939948,-0.19425043,-0.041243605,0.3169687,-0.24271218,-0.40820733,-0.25015786,-0.32044485,0.39301512,0.30407032,0.3891329,-0.6314613,0.52940357,0.26206288,-0.35634544,-0.047930546,-0.62664443,-0.22069776,-0.0129643995,0.40013498,-0.14688894,-0.0027160475,0.25879952,0.276864,0.44994143,-0.08641655,0.08661977,0.19657023,0.35381582,0.07569247,0.36523363,0.00013666494,0.6455621,-0.17677037,-0.20686433,0.28489724,-0.3504653,0.2816184,0.065308444,0.21570003,0.40831184,-0.40529826,-0.9367854,-0.78821987,0.0011792183,1.0769302,-0.27050528,-0.32922664,0.14274094,-0.36509234,-0.39232472,0.0124651,0.4620871,-0.15333274,-0.02634791,-0.9260668,0.009073443,-0.15195796,0.15396354,-0.103232734,0.050549824,-0.44412062,0.5913619,0.027171893,0.65100086,0.32144752,0.18632591,-0.36096543,-0.5326804,0.08100021,0.8202356,0.3125665,0.17242913,-0.10395842,-0.20994452,-0.44463608,0.023140877,0.22795062,0.63171047,0.5631894,0.111676864,0.20554085,0.2324663,-0.17812647,0.102812365,-0.16394551,-0.26811704,-0.12360133,0.14009713,0.47567916,0.48266813,-0.30417952,0.46988896,-0.21982037,0.505836,-0.2555351,-0.534061,0.41775793,1.0667953,-0.27306697,-0.48258966,0.69342613,0.5904204,-0.33725604,0.40381008,-0.654791,-0.27241442,0.23550877,-0.22994693,-0.19786583,0.29056674,-0.31842437,0.30539054,-1.1755145,0.1997439,-0.41759846,-0.39336014,-0.6084401,-0.14455946,-3.506905,0.28244707,-0.10491657,-0.3084707,-0.20877469,-0.322314,0.4392031,-0.70473224,-0.59215134,0.106517516,0.016880253,0.73633397,-0.07154519,0.0894257,-0.3326369,-0.25539896,-0.15470822,0.28487992,0.06563632,0.34286624,-0.0830239,-0.3936768,-0.08427395,-0.0046705604,-0.35313505,0.09752606,-0.6973787,-0.590586,-0.00626593,-0.48588738,-0.2171094,0.53138757,-0.27012587,-0.049361516,-0.19023679,-0.028465157,-0.1682874,0.36853656,0.07670183,0.17538905,0.1623659,-0.011034404,0.070881076,-0.3708237,0.13185713,0.042613465,0.14569993,0.4472642,-0.17720325,0.31711927,0.4955103,0.5553314,0.05222146,0.74776894,0.58478725,-0.0045526274,0.34553462,-0.4016445,-0.23742354,-0.5542703,-0.28752047,-0.16613708,-0.4046051,-0.42660925,-0.1778464,-0.28860497,-0.7556674,0.57131255,-0.0013803287,0.18562962,-0.080946214,0.34523836,0.52827084,-0.099333405,0.0054487246,-0.17090014,-0.16108263,-0.52218455,-0.41773567,-0.5437872,-0.44771358,-0.0104182875,1.0114604,-0.16894317,0.06771415,0.046314925,-0.2516589,-0.022868615,0.26143956,0.06476001,0.14054155,0.47057906,-0.16760233,-0.6432748,0.38716584,-0.20078178,-0.21375777,-0.5629401,0.28554174,0.43473843,-0.71814376,0.5592559,0.29634425,0.1453146,-0.35362735,-0.5213737,-0.15520681,0.063725196,-0.17395008,0.49262398,0.33989206,-0.7755197,0.40732902,0.37975153,-0.10703744,-0.6097175,0.5478011,-0.034267925,-0.3619078,-0.24077633,0.31264094,0.027146365,0.09330981,-0.18487044,0.13046561,-0.49713737,0.212518,0.09233616,-0.046979517,0.2338588,-0.21127857,0.0098739015,-0.7070759,0.10110397,-0.60026973,-0.38372403,0.3158292,0.034582637,0.31468007,0.24062033,-0.11666263,0.3323667,-0.372817,0.08930288,-0.12851486,-0.22060819,0.25725448,0.46131536,0.3615044,-0.36377293,0.5768983,0.05839596,-0.10887177,0.17754875,0.08432998,0.5763523,0.1333162,0.46491292,-0.052267067,-0.23454356,0.22016168,0.69702333,0.16598344,0.4315659,0.012424673,-0.12169152,0.17895119,0.03543375,0.1361965,0.031260762,-0.4156004,-0.22027636,-0.18151376,0.26050165,0.61761093,0.1322665,0.3186304,-0.10710088,-0.26306948,0.09462143,0.12585194,0.07527868,-1.4283649,0.39737484,0.28487003,0.66955984,0.4916187,-0.074405916,0.0137801105,0.4143267,-0.30488732,0.20053114,0.43067613,-0.008822654,-0.59631836,0.5794987,-0.7610894,0.34996453,-0.084525764,0.048478764,-0.03439676,-0.068198256,0.43268892,0.81539756,-0.08408521,0.21687706,0.23083435,-0.4388211,0.12329579,-0.32035837,-0.048995223,-0.5969599,-0.14882796,0.6814037,0.5205969,0.4733817,-0.26380387,-0.003581096,0.18063672,-0.0139927,-0.046865635,0.11689382,0.3258417,-0.04409104,-0.6050414,-0.2617415,0.54960805,-0.13763176,0.19358197,0.16395055,-0.49362665,0.29241663,-0.011668682,-0.06638905,-0.018208865,-0.6367718,0.035028078,-0.37882456,-0.45865828,0.55629694,-0.28398842,0.08111096,0.25514925,0.11642535,-0.12603222,0.14843397,0.0468618,0.8773791,-0.05854452,-0.12240179,-0.4485531,0.23043816,0.2996092,-0.15268907,-0.25150833,-0.3754444,0.13174966,-0.46924666,0.35391167,0.03961134,-0.36706665,-0.0075689596,0.07639067,0.20417312,0.4023168,-0.14700899,-0.18347014,-0.041307103,-0.023832848,-0.4611331,-0.20919129,-0.06294419,0.30741474,0.25291693,-0.0012499435,-0.1303502,0.00221073,-0.010660201,0.42994067,0.08284879,0.55963147,0.646903,0.14859426,-0.20961405,-0.07835836,0.46293524,0.36722025,-0.14075562,-0.04481938,-0.3705171,-0.4892592,-0.3478343,0.29332948,-0.1879119,0.39101,0.08440859,-0.2607489,0.8677718,0.017521653,1.0471613,0.06743372,-0.38567677,0.19316646,0.4313766,0.047743924,-0.07531655,-0.4031086,1.0187114,0.57498986,-0.04736158,-0.11039137,-0.33839232,-0.14322717,0.2792569,-0.30137,-0.16354856,-0.0913442,-0.67793906,-0.2783251,0.08093678,0.25883958,0.28533456,-0.04572962,0.21328616,0.19147158,0.002893911,0.20226763,-0.48122764,-0.06301598,0.22705154,0.35703963,-0.038699966,0.27264303,-0.54300225,0.27638385,-0.51994526,0.045351725,-0.3495021,0.124417976,-0.012859089,-0.3198321,0.13597028,0.00020017794,0.19643858,-0.36571082,-0.23522918,-0.21463099,0.5366188,0.100169815,0.1081185,0.68894523,-0.23265389,0.19488382,0.18776672,0.47361395,1.1296873,-0.11617989,-0.0076501453,0.24868019,-0.34861636,-0.8511774,0.2844211,-0.18091328,0.5017188,0.028851127,-0.21081711,-0.57993084,0.4233532,0.17290023,-0.0054434366,-0.109094724,-0.37227324,-0.21216334,0.35466033,-0.20334533,-0.19873415,-0.3301463,0.0069562537,0.50564253,-0.20104423,-0.2638728,0.04311028,0.24518487,-0.15982226,-0.57070976,-0.03414889,-0.38311362,0.3084907,0.15299357,-0.29557487,-0.110188074,0.005277265,-0.4119406,0.33038765,0.3667182,-0.23690604,0.118272744,-0.5149786,-0.01984489,0.98871607,-0.20456629,-0.015055529,-0.7227245,-0.5224811,-0.7176412,-0.4922033,0.2911172,0.09160381,0.022212151,-0.73547965,0.14783835,-0.045631774,-0.299755,-0.060946617,-0.31952143,0.5124084,0.045498706,0.353318,0.041461248,-0.6294257,0.26133844,0.05243544,-0.026110124,-0.5919465,0.5510544,-0.1322203,0.96193516,0.09439421,0.1605898,0.312465,-0.5813092,-0.12579001,-0.27005473,-0.06028073,-0.8481798,-0.007455451,251 -397,0.48533392,-0.3152397,-0.39702561,-0.20647535,-0.10407134,0.09691511,-0.26115182,0.35204178,0.100342646,-0.42366344,-0.12352194,-0.15712555,0.06950267,0.40010875,-0.1795877,-0.5839318,0.015689058,0.1542137,-0.4225873,0.4629473,-0.4779288,0.21072838,-0.079196,0.5125975,0.17414734,0.34086213,0.17201622,0.0020573225,-0.21353552,-0.342095,-0.046678867,0.14763185,-0.6078197,0.10183751,-0.0060113627,-0.3296408,-0.020663708,-0.5363735,-0.3938146,-0.7222734,0.35453343,-1.0316814,0.7010887,0.02092333,-0.30648082,0.2802651,0.19015288,0.46071747,-0.337461,0.077841595,0.32007787,-0.14795354,-0.014256222,-0.2564129,-0.09921867,-0.49415722,-0.5256009,-0.085576005,-0.38397598,-0.3042533,-0.31676483,0.11396126,-0.2539893,0.06835738,-0.008700149,0.43192407,-0.56960994,-0.00957489,0.119510785,-0.22138867,0.4554724,-0.5021564,-0.21262681,-0.030481616,0.37020883,-0.13610923,-0.13639964,0.39836407,0.22842751,0.41374472,-0.03441692,-0.10169924,-0.22045572,-0.08044652,0.21428585,0.5307401,-0.21237527,-0.53936476,-0.19689575,-0.10505847,0.21814655,0.1989222,0.13161059,-0.22515701,-0.009093189,0.25856942,-0.21232997,0.36954716,0.46630684,-0.3913906,-0.11654378,0.26132727,0.543066,0.071802095,-0.15712722,-0.05975017,0.12050117,-0.49120983,-0.27617136,0.040930755,-0.29051498,0.5698063,-0.067246914,0.32397795,0.76468974,-0.19295354,0.106459394,-0.09486885,0.024641871,-0.17356072,-0.2193211,-0.3936968,0.27416003,-0.41204724,0.18030705,-0.25931033,0.7419402,0.15360582,-0.66545266,0.40578386,-0.5294769,0.012773441,-0.20711628,0.39466712,0.5499425,0.37834436,0.426063,0.769239,-0.5554841,0.010056214,0.0113150645,-0.32028097,0.13750152,-0.27867055,0.05711043,-0.5953418,0.05350381,0.047961526,-0.14203951,0.14186658,0.48806018,-0.56445843,0.06668649,0.1367671,0.9293172,-0.3297071,0.1136652,0.73379725,1.1615506,0.9082853,0.016310768,1.1122543,0.40425238,-0.34820014,0.18783858,-0.19799049,-0.60008997,0.28630528,0.48244426,-0.131183,0.25811893,0.097651854,-0.033356603,0.53621316,-0.61944115,0.18004696,-0.1035731,0.12847318,0.071034424,-0.22527646,-0.50849676,-0.07245864,-0.021672918,-0.11548244,0.20899148,0.2589279,-0.26119128,0.49490428,-0.049483422,1.8124746,-0.07272587,0.08161432,-0.025244597,0.59585947,0.2206078,-0.07830707,-0.060357828,0.35623732,0.47891766,0.12962048,-0.62127364,0.1883492,-0.19973645,-0.37784114,-0.19785938,-0.3759515,-0.0044885534,0.0026478043,-0.34460062,-0.1396713,-0.016142802,-0.1724811,0.38513774,-2.704485,-0.28298596,-0.16092953,0.41062808,-0.30909246,-0.32878283,-0.069541045,-0.40795025,0.62971574,0.31469133,0.44761357,-0.56451315,0.48373535,0.5206321,-0.43152156,-0.16686235,-0.5572585,-0.1859564,-0.059797317,0.38696316,0.0130323935,-0.23265119,-0.10041373,0.3164962,0.4432993,0.10871492,0.2142602,0.15587743,0.39495203,-0.033648513,0.6577378,0.06130327,0.643787,-0.053004093,-0.24295007,0.3347587,-0.28380612,0.119060464,-0.15588893,0.16337515,0.44229725,-0.37975183,-0.9189648,-0.8403378,-0.17421402,0.96385753,-0.23877989,-0.5888039,0.14601086,-0.14644451,-0.3851414,0.08292818,0.3404573,-0.1497501,0.009053956,-0.8805309,0.104953416,-0.11721814,0.07076205,0.057820946,-0.006014713,-0.6174016,0.6719594,-0.117332235,0.50050205,0.29102087,0.19318767,-0.2121254,-0.40046573,0.10023689,0.97450954,0.4255428,0.11139844,-0.16624245,-0.16639212,-0.30455917,-0.20320895,0.009630646,0.6585403,0.7088284,0.004696465,0.10723888,0.20921178,-0.20461978,-0.012829519,-0.12670092,-0.4249546,-0.018467924,0.04032282,0.6801533,0.53727084,-0.13910042,0.5386651,-0.15688658,0.39807191,-0.09790707,-0.43141767,0.48347074,1.112021,-0.13722368,-0.28067306,0.64917177,0.44452238,-0.30973434,0.3930948,-0.73960066,-0.2754123,0.45889074,-0.2260053,-0.48245642,0.19480637,-0.22486556,0.2330838,-0.9777584,0.29382804,-0.22279455,-0.44422475,-0.6025969,-0.30797893,-3.7129061,0.13785283,-0.30039325,-0.20915113,-0.10747067,-0.26214057,0.3640236,-0.74768215,-0.50212204,0.15488064,-0.07798997,0.8537013,-0.043915052,0.14345859,-0.31119037,-0.09122206,-0.13595624,0.1432477,0.1729686,0.3714791,0.07137675,-0.46980765,0.047355566,-0.026832027,-0.537574,0.004553497,-0.577129,-0.5415481,-0.14941461,-0.5736976,-0.21914117,0.7177014,-0.2880151,0.111040235,-0.2836263,0.10160826,-0.25875527,0.36899105,0.1338403,0.14910297,0.10651149,-0.05854204,0.1507016,-0.41229326,0.25476578,0.056375653,0.26196852,0.2652325,-0.13395832,0.09976256,0.43367842,0.54714453,-0.004424442,0.682536,0.5036458,-0.16567257,0.12287675,-0.469069,-0.3693827,-0.45897427,-0.55962133,0.0041512526,-0.40504903,-0.53145224,-0.22306086,-0.488475,-0.79794925,0.6264917,0.11070399,0.11807965,-0.08670203,0.27389777,0.4278802,-0.19570804,-0.22648157,-0.009084365,-0.134287,-0.6508959,-0.14655766,-0.6022183,-0.52636373,0.10058653,0.834569,-0.14828059,-0.06980692,0.15815414,-0.32575962,0.07267355,0.09297855,-0.0118475305,0.012570381,0.4678557,-0.024027884,-0.7132344,0.55444485,-0.18883443,-0.20215209,-0.8185113,0.21552299,0.6346875,-0.5062386,0.62181246,0.4333896,0.09676768,-0.14719748,-0.3614281,-0.11010433,0.019738605,-0.1930827,0.43225044,0.12474311,-0.71525514,0.4693618,0.3912809,-0.28616068,-0.70346075,0.60302556,-0.04844135,-0.34227696,0.05380002,0.29087836,0.11788695,-0.054426823,-0.18372269,0.4037362,-0.4444196,0.33941838,0.28328815,-0.010232717,0.5228032,-0.14058845,-0.15239814,-0.79362327,-0.09540639,-0.5562112,-0.33440542,0.15935037,0.0778093,0.102214575,0.3348957,0.0450742,0.44468123,-0.4569393,0.07198057,-0.046927612,-0.27789822,0.31750497,0.4285655,0.385111,-0.49778238,0.62853134,0.040330708,-0.07283195,-0.01880739,0.0010378702,0.49811387,0.12090137,0.4232765,-0.10200774,-0.19103725,0.29587653,0.70171726,0.22982578,0.53914505,0.2353375,-0.21112797,0.13835149,0.1826648,0.14715698,0.074747756,-0.5616306,0.11250595,-0.090390615,0.15137374,0.44566318,0.27467695,0.3139109,0.018594315,-0.3355143,0.10417168,0.13359985,-0.14460431,-1.2468144,0.44339395,0.20612851,0.78910446,0.32699853,-0.06264687,0.11796174,0.7517203,-0.22081992,-0.0073435777,0.2100778,0.023072269,-0.45382616,0.56228,-0.6732518,0.3540733,0.07373401,-0.07054092,-0.10676629,-0.0027779,0.41550428,0.679351,-0.14348982,0.17891358,-0.020111999,-0.32569098,0.23941872,-0.35315236,0.07433411,-0.4865994,-0.30692318,0.61979574,0.54168576,0.40641567,-0.14929399,-0.070868775,0.123606406,-0.113720655,0.16229203,0.22982712,0.14491208,0.08355592,-0.8010823,-0.37608972,0.46331745,-0.10323829,0.21935551,-0.09426843,-0.21534689,0.27444795,-0.19505861,-0.011520548,0.06994443,-0.68798494,0.039331112,-0.3563189,-0.41416305,0.6158206,-0.0057896078,0.12200721,0.15025662,0.029406,0.00016817024,0.31413195,0.10196904,0.82372105,0.08430882,-0.23617007,-0.4525686,-0.029494891,0.14636949,-0.23754866,-0.02848357,-0.3953154,0.12170421,-0.58233446,0.4825239,-0.006830871,-0.3035967,0.26910558,-0.1686105,0.0020453185,0.5536147,-0.29048088,-0.07998933,0.048718452,-0.22124374,-0.25499743,-0.31620508,-0.2235954,0.18974172,0.08499809,0.12528892,-0.06797198,-0.07103269,-0.3360394,0.60559714,0.04605606,0.46707305,0.5792758,-0.045078363,-0.31353244,-0.33114928,0.08643602,0.4789343,-0.19708337,-0.14987949,-0.37663966,-0.69430983,-0.4131322,0.30368757,-0.12830779,0.36630815,0.114140764,-0.2714757,0.6374654,-0.088746496,1.1578454,0.043295227,-0.49895218,0.10591813,0.654463,-0.05446013,-0.0125454,-0.3532841,0.94849676,0.5943828,-0.08080639,-0.03185563,-0.46169916,-0.08563285,0.31174418,-0.25931245,-0.14418952,-0.13941897,-0.6992674,-0.3740973,0.24613206,0.32508722,0.27164048,-0.008472272,0.2015437,0.23319581,0.024818351,0.3482968,-0.535441,-0.30818638,0.46811137,0.24530064,-0.094001316,0.122477494,-0.43153557,0.42538086,-0.40218258,0.003582069,-0.4734625,0.12987365,-0.032863777,-0.25748035,0.25497445,0.045794435,0.20894213,-0.3123419,-0.3264238,-0.07106347,0.50776404,0.23621681,0.0885051,0.6128027,-0.24807708,0.08283209,0.063491836,0.5212975,1.1586984,-0.24937336,0.18660071,0.45971516,-0.39547157,-0.6247563,0.3271759,-0.21628264,0.20388277,0.014966266,-0.31313428,-0.61093664,0.34176257,0.1503956,-0.17675869,-0.029504564,-0.5493442,-0.31523377,0.3560892,-0.26977184,-0.18107046,-0.2935302,0.03911992,0.56996626,-0.2938958,-0.1755995,0.10636628,0.34834975,-0.16542184,-0.47153807,-0.11828249,-0.43365917,0.38548508,0.11552056,-0.39349982,-0.07578923,-0.0040045423,-0.36316708,0.17790715,0.14468919,-0.4528317,0.067244336,-0.33488682,-0.123302005,0.9152657,-0.11211767,0.048723094,-0.71914244,-0.32872397,-0.8567814,-0.330051,0.5002517,0.045427036,-0.013112575,-0.5554563,0.018660758,-0.12684412,-0.074999645,-0.16997449,-0.49540028,0.3613808,0.13233952,0.5977305,-0.075703554,-0.68956596,0.07370668,0.08994125,-0.3014893,-0.6352066,0.667511,-0.07962036,0.89189726,-0.01437472,0.08835072,0.24204323,-0.4815201,-0.06933276,-0.24390697,-0.31511095,-0.8408853,0.05958763,259 -398,0.5173759,-0.20671967,-0.75783825,-0.034395557,-0.35395953,0.024954217,-0.26104972,0.32771704,0.1303419,-0.59701794,-0.09066869,-0.01393873,-0.147503,0.19981635,-0.2002757,-0.308196,0.010672177,0.44651562,-0.42601022,0.41385618,-0.43654442,0.3556357,0.038501374,0.19443676,0.16312051,-0.006483159,-0.065092646,0.13526173,-0.07483715,-0.43537134,0.19042587,0.2829257,-0.82426614,0.3408728,-0.20235062,-0.5311449,-0.12716673,-0.4953845,-0.28152892,-0.8290634,0.19600196,-1.0234909,0.58881325,0.012121839,-0.3481388,0.21447682,0.10149431,0.35499606,-0.10560685,0.032023504,0.26442227,-0.26736566,-0.5479484,-0.09144359,-0.009429327,-0.28588882,-0.6247967,-0.047671225,-0.42311648,0.165201,-0.36813256,0.25930166,-0.40901738,0.1699373,-0.3796289,0.3949636,-0.23664834,0.014869341,0.11533142,-0.009282248,0.15271118,-0.5669852,-0.18025972,-0.20705938,0.13288315,-0.23111837,-0.43932202,0.33724704,0.22990271,0.4761386,-0.045775477,-0.24815716,-0.20606294,-0.005150318,0.27106282,0.42403856,-0.20150682,-0.24595931,-0.17817958,-0.05060519,0.40636784,0.033311754,0.109660454,-0.2724603,-0.092189506,0.12272764,-0.32226947,0.57122433,0.55097026,-0.2485826,-0.0659835,0.3602,0.63236815,0.12167813,-0.15842488,0.277668,-0.008986224,-0.5335291,-0.1454599,0.17216572,-0.15859425,0.25189492,-0.23234287,0.14676486,0.5349701,-0.42471775,-0.374085,0.4690837,0.165611,-0.09240045,-0.19717444,-0.4731575,0.45329905,-0.60788053,0.107384145,-0.23959446,0.7992931,-0.045919936,-0.6859488,0.29541355,-0.71538985,0.16059409,-0.10487239,0.66373503,0.66093403,0.68842405,0.33088428,0.75852734,-0.33281666,0.01470255,-0.13117418,-0.399961,0.14341934,-0.44611454,0.023903767,-0.43661484,-0.04728782,-0.09909473,-0.37208048,-0.016820395,0.66733456,-0.43167105,-0.25125375,0.03316616,0.36984888,-0.3652769,-0.06837898,0.9498596,1.0377381,1.1562798,0.4072535,1.2007567,0.25548413,-0.058166243,-0.2525148,0.0607282,-1.0396374,0.33593482,0.2813564,-0.2337515,0.27971712,0.37291312,-0.0061598164,0.41665745,-0.47668138,-0.14728832,-0.1105481,0.3496609,-0.0628016,-0.30447578,-0.5095673,-0.26399735,0.15135516,0.124253355,0.009799434,0.26153657,-0.25122213,0.44205847,0.30983108,1.1679513,-0.25658032,0.03489905,0.098999925,0.204558,0.1397052,-0.25834754,-0.111525536,0.1343309,0.42515475,0.11581449,-0.5041415,0.10661476,0.0738319,-0.5013007,-0.2384106,-0.19803905,-0.047685392,-0.33731514,-0.33766547,-0.25398684,-0.06347891,-0.4071935,0.39602205,-2.3386264,-0.15193157,0.009848131,0.24970844,-0.051873345,-0.4598803,-0.11343086,-0.4633834,0.36379257,0.24735309,0.4379468,-0.63660765,0.5004323,0.47659454,-0.7199102,-0.032834925,-0.79706615,-0.2024231,-0.19859828,0.35191005,0.12688182,-0.14118345,-0.06503699,0.0755886,0.4445072,-0.31905937,0.12538436,0.52914155,0.33859396,-0.1323203,0.51418847,0.14492114,0.46060285,-0.35357976,-0.32388872,0.37720338,-0.3541665,0.07075767,0.10453302,0.062576935,0.5210901,-0.55186015,-0.9708505,-0.7274591,-0.1570873,1.28976,-0.2236062,-0.49252945,0.13629995,-0.51638633,-0.47609565,-0.036127355,0.30730942,-0.22330841,-0.04248053,-0.9423704,-0.094202794,-0.14977907,0.37222582,-0.20513733,0.031707864,-0.5412922,0.7107864,-0.17051731,0.5919666,0.48182574,0.11272202,-0.4011703,-0.413032,0.105425544,1.2537359,0.39954406,0.16805157,-0.46941286,-0.26056415,-0.24198504,0.062929355,0.11859039,0.49208394,0.5313258,-0.08906632,0.24578102,0.20818941,-0.11834519,0.021266248,-0.27454227,-0.2558494,-0.18517244,-0.076244764,0.65954316,0.5224915,0.10920918,0.52495307,-0.07620221,0.2775022,-0.1186288,-0.48589054,0.40259436,0.98216355,-0.062439807,-0.49042267,0.7440391,0.65705013,-0.19682871,0.5748912,-0.41117856,-0.28756955,0.104956985,-0.060600005,-0.2330524,0.2908794,-0.4751955,0.3402167,-0.90814173,0.36404392,-0.30015692,-0.8472336,-0.5960407,-0.026887447,-3.0458739,0.34580064,-0.08077313,-0.088668786,-0.12850843,-0.27671114,0.46499103,-0.43270248,-0.81157005,0.10138794,0.17501846,0.86998546,-0.1874491,-0.15331258,-0.18894829,-0.3096631,-0.25930855,0.11551621,0.19523808,0.2555814,0.033359263,-0.45378143,-0.024433825,-0.32061842,-0.3083323,-0.1906264,-0.8456921,-0.4352312,-0.008610623,-0.4677485,-0.5214494,0.68693435,-0.32631615,0.00064783223,-0.26252562,0.028886143,0.15894587,0.5077109,-0.13232273,0.049652927,0.03376304,-0.037208173,-0.059466656,-0.060147233,0.18622495,-0.10761627,0.12295415,0.504161,-0.39263064,0.20128536,0.5759239,0.85659283,-0.12146865,1.1023186,0.41657755,-0.283975,0.29485777,-0.10651518,-0.30801362,-0.6951314,-0.056279164,-0.051491637,-0.56668144,-0.21870944,0.1422291,-0.23564376,-0.86956036,0.7418577,0.066150926,-0.08392061,-0.013508433,0.39194712,0.38920385,0.021967279,-0.1300082,-0.19055803,-0.27345,-0.37427053,-0.40059862,-0.71737206,-0.38086456,-0.41490707,1.4702549,-0.17652075,0.18598714,0.12960292,-0.09872059,0.21811166,0.14284992,0.02892352,0.23615268,0.6282491,0.07739425,-0.55901605,0.28596404,-0.2420131,-0.04956859,-0.58402264,0.27962583,0.7216806,-0.6701466,0.36434856,0.45498943,0.16287708,-0.123618804,-0.6240138,-0.060681757,0.15425311,-0.27011415,0.63962096,0.38561302,-0.9873869,0.5835198,0.48319688,-0.2890606,-0.6810341,0.5089892,-0.04000674,-0.032249417,-0.10476167,0.43712887,-0.15767384,0.17764834,-0.08380441,0.34897113,-0.28645352,0.30530116,0.16447006,-0.11043334,-0.031415448,-0.18795879,-0.06893522,-0.67381376,-0.035212018,-0.36832026,-0.28168815,0.041606374,0.03333259,0.10330479,0.37904435,0.08619659,0.44548026,-0.39459667,0.020690829,-0.2888388,-0.45388672,0.41507468,0.65164214,0.39933914,-0.3893321,0.7409606,0.08963632,-0.15623225,-0.412399,-0.082621746,0.48925206,-0.041617293,0.46350494,0.06313272,-0.07847619,0.20307732,0.8138777,0.16546239,0.56452745,-0.000625687,-0.055120658,0.053183798,0.19575344,0.47327366,-0.115028374,-0.55951464,0.06606257,-0.17673667,0.20432499,0.47098374,0.0170407,0.2860206,-0.17225535,-0.20933516,-0.05331295,0.060763817,-0.0009723859,-1.5906767,0.5880295,0.24795873,0.63055545,0.49948913,-0.030928824,0.3238768,0.59855187,-0.27632508,0.037014723,0.21757713,0.11810671,-0.27165887,0.46561816,-0.75790876,0.4114678,-0.09031326,0.03557532,0.14842579,-0.11272425,0.50971496,0.8594866,-0.14401436,0.2421961,-0.09444898,-0.28599283,0.1604686,-0.28673938,0.061973657,-0.42463306,-0.353789,0.9358387,0.46389732,0.57038414,-0.28627357,-0.028481666,0.10401348,-0.15512861,0.1658584,0.059679396,-0.017918902,-0.17720427,-0.6113257,0.08464378,0.6980441,0.08906318,0.07857781,-0.0014991207,-0.33153588,0.30877063,0.031307016,-0.027838191,-0.19003473,-0.8171095,-0.116174445,-0.4837169,-0.37894318,0.15361063,-0.14874151,0.16519271,0.31956023,0.043337945,-0.36214405,0.17530395,0.3450285,0.67650205,0.0477116,-0.11901443,0.09851669,0.2793588,0.17555192,-0.19099928,-0.14685826,-0.252682,0.28724405,-0.6205511,0.33884278,-0.28183666,-0.5907852,0.3070998,0.061557148,0.008941685,0.40398762,-0.2699504,-0.090239726,0.093496874,-0.015368507,-0.010194585,-0.36364916,-0.19264853,0.24515055,0.15485011,-0.1602786,-0.09464055,-0.04139192,-0.119544245,0.4166403,0.06962364,0.30097347,0.44234982,0.19953094,-0.49097148,0.036148112,-0.0065974593,0.7991567,-0.14029714,-0.2686672,-0.46300945,-0.15782759,-0.25570172,0.34542474,-0.043384455,0.23876241,0.100328885,-0.40986028,0.9734666,0.03753699,1.0251368,-0.072669216,-0.53032625,0.08306708,0.56760794,-0.047825716,-0.106539465,-0.27061257,0.85375947,0.4961383,-0.22589943,-0.061326537,-0.53923905,-0.024950292,0.16608095,-0.22462256,-0.27121085,-0.080481075,-0.56892365,-0.050214946,0.18495762,0.45603678,-0.10476124,-0.17003724,0.33939907,0.5133089,-0.022924488,0.078355536,-0.4587555,0.07445288,0.3779554,0.26949912,-0.050799403,-0.10786456,-0.47521713,0.19612841,-0.7068845,0.105858244,-0.17958513,0.12713031,0.022883058,-0.13993411,0.22729817,0.11977466,0.22873528,-0.33394447,-0.2184008,-0.09770851,0.43419114,-0.014267479,0.12930694,0.7454084,-0.31312147,0.13867201,0.10963821,0.33252186,0.8223224,-0.23947491,0.042547278,0.28813106,-0.3181315,-0.45644718,0.33102512,-0.29655376,0.11299341,0.04217335,-0.45058677,-0.5724906,0.22194615,0.32480344,0.14995582,0.0702408,-0.6049951,0.012123706,0.45693678,-0.28037772,-0.2130858,-0.35989386,-0.11302827,0.59207046,-0.20758192,-0.45093864,-0.031448465,0.2717537,-0.2607315,-0.38994431,-0.07343777,-0.55431396,0.30907637,-0.10591655,-0.2496684,-0.008742903,0.06197547,-0.54061586,-0.014122264,0.29453605,-0.26436496,0.17212765,-0.47400692,0.01758696,0.8006751,-0.30525213,0.32933554,-0.4744119,-0.7561754,-0.80348223,-0.10076981,0.38483652,0.21245632,-0.041328464,-0.65672356,-0.041359823,-0.043386105,-0.35029173,-0.06368672,-0.4549675,0.563026,0.23778902,0.3496308,-0.04754911,-0.9090604,0.19159266,0.07711441,-0.10029702,-0.2807382,0.61354196,0.09099395,0.761205,0.095356666,0.29579258,0.021989176,-0.75507516,0.31328353,-0.011694289,-0.054484036,-0.7624618,-0.18767957,265 -399,0.4774552,0.07755811,-0.6409768,-0.08471197,-0.14882444,-0.0069275605,-0.16382706,0.36030155,0.30162218,-0.41011995,0.06571677,-0.027892385,-0.0032710151,-0.07631644,-0.14639725,-0.57964426,0.08835163,0.28290686,-0.4171194,0.37748012,-0.44732377,0.2497996,-0.17463692,0.23793419,-0.14856872,0.13285182,-0.035241853,0.0053720474,-0.17493396,-0.23303899,0.31514844,0.19966364,-0.69404346,0.20323278,-0.18447517,-0.18903682,-0.047862973,-0.4020924,-0.47479054,-0.70169276,0.2456292,-0.79657733,0.5462067,0.18221386,-0.33553186,0.36331457,-0.1625042,0.26859814,-0.17595302,-0.025105609,0.17857075,-0.2571109,-0.29881066,-0.28681093,-0.12735678,-0.2042739,-0.6230296,0.13328645,-0.45807776,0.05228166,-0.30808464,0.17112446,-0.39863157,0.11621189,-0.2628211,0.49833032,-0.28858885,0.035341233,0.25950247,-0.023242008,0.10943995,-0.3691513,0.05043614,-0.136745,0.12980449,-0.1444725,-0.22266494,0.17700934,0.20913239,0.5542031,-0.084308706,-0.27389067,-0.12859373,-0.0035053492,0.12894726,0.42138958,-0.2424123,-0.33558586,-0.15418704,-0.033628423,0.056019165,0.114021406,0.0906666,-0.1618716,-0.012213647,0.23123612,-0.31841168,0.6460691,0.6686477,-0.17691398,-0.09957998,0.33223322,0.6681647,-0.058937646,-0.057881232,0.1420569,0.033970404,-0.43303794,-0.3236802,0.06888105,-0.19446893,0.3054095,-0.25349328,0.10465859,0.6732736,-0.3937896,-0.20089102,0.31742337,0.07751016,0.18399653,-0.36066642,-0.23049094,0.44975457,-0.5649956,0.021014009,-0.25922176,0.9009536,0.017805148,-0.7841523,0.43492392,-0.49532843,0.19305624,-0.15929069,0.772124,0.76137555,0.45868847,0.20716058,0.6842609,-0.49025673,0.08790077,0.018055629,-0.44677565,0.2306402,-0.080321185,0.20600879,-0.3869583,-0.22541095,0.05739078,-0.246796,-0.017956521,0.33739367,-0.5149154,-0.3607718,0.073422156,0.6900982,-0.2879664,-0.16221368,0.7202913,1.1434897,0.8678344,0.17445973,1.1393753,0.3276231,-0.10409855,0.057257622,-0.25794214,-1.0012966,0.34854105,0.12482087,-0.35873052,0.16146223,0.2509644,-0.17503473,0.34359685,-0.46209636,-0.12684183,-0.1241587,0.4388509,-0.18541193,-0.21376951,-0.33259693,-0.101206064,0.10908972,-0.021256438,0.17936747,0.3401075,-0.25889674,0.082734875,0.095834926,1.0463662,-0.024464233,0.08082148,0.10825915,0.33379886,0.15222839,-0.22741517,-0.12931497,0.30843145,0.24817829,0.17321041,-0.5817264,0.13717355,-0.09789176,-0.448848,-0.23687944,-0.21756269,0.11215121,-0.23934321,-0.39813143,-0.05312299,-0.20066373,-0.3985896,0.4660994,-2.5860946,-0.2567018,-0.016485175,0.40378803,-0.07443186,-0.29166394,-0.06238297,-0.4932079,0.33544487,0.26278472,0.43989828,-0.6720257,0.52878225,0.36011335,-0.4184897,0.0071129375,-0.6861109,-0.03583703,-0.09070661,0.24857643,0.07562796,0.012801545,-0.0675305,0.10111337,0.3053036,-0.05240467,0.12109649,0.32683563,0.47741154,-0.052362256,0.26269394,0.07932186,0.5496846,-0.3012568,-0.28427595,0.25708845,-0.51448435,0.21961871,-0.05084799,0.08674332,0.2912204,-0.38447475,-0.83624107,-0.49499568,-0.23477206,1.1876236,-0.17996553,-0.37936231,0.19382715,-0.3203899,-0.46231326,0.025769625,0.38325614,-0.23815031,-0.07886083,-0.88794965,0.03441008,-0.1299315,0.2489269,-0.13814038,0.077819064,-0.46031395,0.5851225,-0.2820927,0.43897268,0.29737014,0.17605248,-0.44016084,-0.4488244,0.07080657,1.0735883,0.32139516,0.124014296,-0.36550966,-0.15608506,-0.17645785,-0.016465532,0.05315841,0.52371424,0.77953976,-0.043250393,0.09444778,0.36635968,-0.15870723,0.022146974,-0.08248358,-0.3802177,-0.16927148,-0.16468684,0.6816312,0.6611908,-0.32496944,0.46622658,-0.15985455,0.2970623,-0.2765874,-0.38838133,0.46499515,0.6455111,-0.051162843,-0.28631026,0.7091417,0.34510812,-0.50240546,0.5153501,-0.5182214,-0.30987778,0.26799363,-0.067748815,-0.42450666,0.22233663,-0.3262128,0.21620753,-0.87499875,0.5065985,-0.3423422,-0.7595533,-0.5777146,-0.11306653,-3.4834695,0.31191343,-0.23666473,-0.012383255,-0.11144189,-0.03962683,0.27631873,-0.33701417,-0.5164818,0.1527209,0.17589433,0.7379927,-0.12539978,0.12796094,-0.19925272,-0.18971299,-0.31322366,0.18145467,0.4513765,0.240818,-0.051311407,-0.35046965,-0.10902548,-0.21715342,-0.19378243,0.06738527,-0.6067664,-0.38734978,-0.09060303,-0.5707021,-0.35219264,0.6303166,-0.21993504,-0.12936111,-0.3917644,-0.06850612,-0.03870707,0.5415905,0.038476206,0.08978031,0.0052654403,-0.14551766,-0.18498254,-0.28626844,0.24339107,-0.06108864,0.47668156,0.46785477,-0.3248263,0.036203247,0.48786074,0.6551077,0.117308006,0.80644757,0.35638216,-0.15824886,0.39194182,-0.15638511,-0.22678158,-0.56369126,-0.22207583,-0.072417185,-0.46305576,-0.31969357,0.00054402865,-0.4073918,-0.6869454,0.49736923,-0.1255252,-0.082772665,-0.040146213,0.53670806,0.42518324,-0.07818217,-0.14792986,-0.13743037,-0.21482828,-0.3074337,-0.25759882,-0.6902357,-0.3704147,0.08820678,1.0004812,-0.12839718,0.21694836,-0.0017886332,0.0027640548,0.029816492,0.17398931,0.08843524,0.2576343,0.5761012,-0.19010136,-0.46056303,0.3697696,-0.38193485,-0.09265328,-0.8519877,0.061404355,0.62817115,-0.6892387,0.6578003,0.4625432,0.1172378,-0.064970195,-0.53619546,-0.15365075,0.11439293,-0.2642338,0.51297456,0.33905378,-1.0891808,0.62872696,0.39373335,-0.21323583,-0.6722621,0.48360634,0.08192873,-0.11980902,-0.08110193,0.40473637,-0.20346835,0.10500228,-0.09476393,0.27161065,-0.32231167,0.22674908,0.14358751,-0.18992434,0.48071668,-0.1900827,-0.14343785,-0.49136892,-0.15747021,-0.6759757,-0.19491817,-0.05007546,-0.047439992,0.085226655,0.3517969,0.035673786,0.41398406,-0.3412688,0.017685285,-0.054181844,-0.4919092,0.42506316,0.47869775,0.5052942,-0.36856705,0.62580776,0.059313204,-0.088058956,-0.20625985,0.14946078,0.63497007,-0.10823947,0.38643435,0.37819603,0.05341118,0.22037813,0.79435635,0.11606567,0.6375704,0.19035502,-0.03944504,0.19734213,0.08466915,0.2657081,-0.13874058,-0.4770573,0.054182548,-0.118394375,0.28225833,0.38242975,0.14008075,0.41455474,-0.20485334,-0.29087624,-0.05105704,0.27517146,-0.02837723,-1.2428877,0.4016443,0.22617148,0.6650297,0.34476417,0.008818214,0.16622236,0.45356628,0.007415414,0.20389774,0.13108349,0.015592135,-0.41985497,0.49947637,-0.7671003,0.3901649,-0.14962777,-0.011590077,0.059490938,-0.1598282,0.38714728,0.8022321,-0.11732753,0.13305795,-0.13424237,-0.22752774,0.2689195,-0.25813562,0.33918986,-0.4345119,-0.107273936,0.8720358,0.4951263,0.31742492,-0.31456742,0.012361372,0.09658524,-0.06328457,0.059892263,-0.054838866,0.11270646,0.0032728675,-0.6466462,-0.26938698,0.58636016,0.25183985,-0.00741237,-0.011776294,-0.09028506,0.22815609,-0.19641936,-0.07565173,-0.0011091126,-0.62643665,0.019776294,-0.23706545,-0.45193177,0.37272665,-0.20802915,0.21500762,0.17774984,0.19250774,-0.44668713,0.2424643,0.18532057,0.57402974,0.054781977,-0.18575892,-0.2902775,0.27310136,0.24783213,-0.2602877,-0.10698198,-0.38888913,0.14698114,-0.6160354,0.5254043,-0.25352415,-0.47038585,0.13903268,-0.06009921,0.029022349,0.47128415,-0.16915968,-0.14230774,0.13852985,-0.17321476,-0.15449905,-0.18310682,-0.009857497,0.223823,0.3209085,-0.32073572,-0.04481352,-0.057987932,-0.12110967,0.28307623,0.123147376,0.1869631,0.48903033,0.353158,-0.36690024,-0.08885224,0.20596735,0.6461967,-0.089070104,-0.1852711,-0.40716282,-0.30847192,-0.15064944,0.26464608,-0.031766564,0.119613275,0.007993983,-0.2878774,0.7334324,0.16090728,1.0541309,0.14465344,-0.24376357,-0.07818254,0.48715138,-0.024152312,-0.10375898,-0.47094265,0.98095024,0.45410293,-0.25416318,-0.14222133,-0.45519215,-0.09817807,0.08449961,-0.15565589,-0.3955578,0.032233357,-0.7366522,-0.04481851,0.16559322,0.33294052,0.065974556,-0.020022942,0.22569458,0.4219799,-0.018278599,0.03657977,-0.64852583,0.049865264,0.15854342,0.28097633,-0.02280706,0.20994805,-0.28626734,0.31287718,-0.66818804,0.021401158,-0.114168055,0.06447435,0.007451368,-0.4596277,0.072777845,0.2375959,0.38675076,-0.25687483,-0.17090246,-0.13495038,0.30251947,0.27830535,0.11194522,0.7218544,-0.10716933,-0.039896447,0.06915929,0.4488534,0.86928815,0.018286854,-0.06421403,0.2770483,-0.23685272,-0.87083536,0.35905114,-0.29596573,0.21909055,-0.23486526,-0.37413734,-0.52615684,0.36774498,0.22472191,-0.118638135,0.10377914,-0.55247265,-0.047534414,0.15551385,-0.2821283,-0.13313755,-0.17772034,0.047303535,0.837223,-0.1946992,-0.25545004,-0.02696642,0.39108086,-0.2341117,-0.48284158,-0.12784751,-0.48717123,0.15833108,-0.11336883,-0.22485216,0.035837047,0.14133039,-0.3952606,0.3068646,0.2701176,-0.25273088,0.09992166,-0.1968753,-0.08087617,0.5496918,-0.1770105,0.24656664,-0.5388214,-0.54082394,-0.7923922,-0.27032754,0.22561084,0.056430954,0.013668776,-0.6458252,-0.12007254,-0.0067693167,-0.025680194,-0.0036821833,-0.45854467,0.3984282,0.18174376,0.24479805,0.03593406,-0.91761035,-0.038845003,0.108456366,-0.41478306,-0.57601374,0.5069336,-0.09814727,0.7343932,0.029844189,0.24790859,0.21918213,-0.52097803,0.1435399,-0.20705292,-0.10829617,-0.68843204,-0.009917663,266 -400,0.45384988,-0.09524033,-0.40732893,-0.21025448,-0.3141072,0.18412444,-0.050376322,0.20807791,0.23221757,-0.14279862,0.16040035,0.0783851,-0.07177692,0.50051534,-0.21385384,-0.9783025,-0.07474349,-0.063900456,-0.6333643,0.5651518,-0.44270688,0.4032641,-0.050284717,0.2968523,-0.0015423639,0.24083956,0.23884413,0.10812045,-0.10240158,0.12722501,-0.120169275,0.45587644,-0.36408028,0.38608843,0.15799597,-0.21159384,-0.057094313,-0.31657067,-0.10976909,-0.59639835,0.35248095,-0.45983166,0.41684547,-0.14459203,-0.35732526,0.11290743,0.19340947,0.13126275,-0.39975378,0.0009589876,0.14368545,-0.04622346,-0.054822154,0.19484065,-0.20603706,-0.5287585,-0.5974244,-0.093326375,-0.8084968,-0.13637035,-0.106141165,0.18713069,-0.39653024,-0.09343224,-0.13514192,0.6985274,-0.35030344,-0.15002167,0.45487195,-0.19792579,-0.053296693,-0.54693,-0.11423685,0.019707704,0.3222768,0.13660261,-0.14029115,0.4463431,0.30138597,0.41540787,0.071334824,-0.42031017,-0.2209892,-0.17644528,0.046204835,0.45922112,-0.072826214,-0.2471553,-0.22935595,-0.043466214,0.16543616,0.147662,0.07740207,-0.15523736,-0.07552428,-0.017179051,-0.0016736047,0.26368335,0.3247342,-0.3874409,-0.33619326,0.6157457,0.33833668,0.07557799,-0.22322676,0.20025918,-0.11835663,-0.47417757,-0.15718831,0.08145722,-0.007902359,0.23652472,-0.11430577,0.3004275,0.70621043,-0.0800179,0.0957446,-0.1374064,-0.1588621,-0.053742476,-0.33842587,-0.02913847,0.06978865,-0.34366402,-0.045720737,-0.10291972,0.73871857,0.24267352,-0.7365925,0.33562732,-0.3663352,0.10976154,-0.090667605,0.56201226,0.8268512,0.25527954,0.11480234,1.0146823,-0.42557058,-0.024495427,0.10107032,-0.18244742,-0.037381154,-0.035591614,0.38659468,-0.6668652,0.106468186,0.18341026,0.052267723,0.11307082,0.30935138,-0.3748463,-0.33359507,0.020072877,0.5140515,-0.30013213,-0.23245999,0.6642481,1.1587225,1.0096279,-0.025920404,1.013384,0.3481972,-0.14867525,0.052624844,-0.40672487,-0.47506598,0.13013095,0.44086242,0.2538574,0.5226478,0.039343722,-0.06536027,0.57047075,-0.15968452,-0.062009756,0.16279475,0.43797508,0.06142824,-0.2564674,-0.4436925,-0.15716743,0.25234428,-0.099941574,-0.00010420169,0.37821272,-0.21480457,0.4731334,-0.007931194,1.3552004,0.06886153,0.120911755,0.022827348,0.3398795,0.31383696,-0.28639373,0.026786039,0.29749313,0.35541162,-0.15411659,-0.48649994,0.12400267,-0.48841748,-0.47391796,-0.18659557,-0.44166782,-0.16670778,-0.10601066,-0.32305828,-0.099069096,0.0844565,-0.3430731,0.33776632,-3.0528543,-0.15294676,-0.16431154,0.26113138,-0.2651865,-0.18195312,-0.31975406,-0.42180008,0.28126153,0.45666274,0.25447246,-0.46191263,0.2817918,0.3162849,-0.39310017,0.049495168,-0.56703,0.032857664,0.02332282,0.26477566,-0.15663385,-0.050194036,-0.06704243,0.41769236,0.5312585,0.26220387,-0.080114074,0.18211225,0.32019517,-0.07572172,0.37700084,-0.0582995,0.57426184,-0.33342934,-0.014660982,0.43646336,-0.622971,0.42939976,-0.11627383,0.11964867,0.51060224,-0.30331174,-0.9076108,-0.38018623,-0.3507257,1.1581553,-0.5038509,-0.31775257,0.2982478,0.009777402,-0.032328617,0.16479869,0.37960148,-0.024993857,-0.04248945,-0.55774814,0.17724808,-0.094121076,0.024236139,-0.22476503,0.11763295,-0.45527357,0.49039274,-0.07948039,0.75931776,0.24380262,0.1893679,-0.1383919,-0.40334982,0.020925717,0.6766391,0.46105188,-0.024758318,-0.06109696,-0.049315657,-0.14214537,-0.2659121,0.13515913,0.5987855,0.6191048,0.008692869,0.15597306,0.22538118,-0.12997985,0.16017246,-0.008594645,-0.25976652,-0.08730652,0.16702816,0.457126,0.45796332,-0.2714389,0.40236238,-0.026299877,0.060413957,-0.115748756,-0.54172486,0.55871385,0.5975198,-0.23077215,-0.22624995,0.5111379,0.34358692,-0.24956392,0.3976784,-0.49788687,-0.30221015,0.6283165,-0.17703809,-0.3018407,-0.06421724,-0.26600662,-0.047225337,-0.80097336,0.07938332,-0.14039771,-0.5646426,-0.48687235,-0.24510968,-3.121357,-0.049203437,-0.11667514,0.007247075,-0.033992775,-0.03972096,0.1838998,-0.60043275,-0.583346,0.09640265,0.016274137,0.4811661,-0.09478011,0.07231665,-0.21927723,-0.2454926,-0.25829285,0.39115748,-0.04973331,0.33756706,0.16040711,-0.32467422,0.13105968,-0.03562955,-0.55099404,0.020641038,-0.44461316,-0.38802928,-0.048493464,-0.55445236,-0.008713946,0.71349496,-0.26840204,-0.11460099,-0.19513153,0.026655162,-0.14469719,0.24042836,0.17412548,0.27606696,0.07052217,-0.087174736,-0.15231584,-0.37820646,0.3015607,0.12430916,0.4538321,0.5539041,-0.020125683,0.25081435,0.72511375,0.4977155,0.10913236,0.67852086,0.061002553,-0.07570924,0.33854774,-0.35227537,0.018204616,-0.59049845,-0.43066338,-0.15313594,-0.45349145,-0.49255317,-0.261882,-0.42316088,-0.76870805,0.2950196,0.08067303,0.4676194,-0.3790558,0.28460434,0.30923966,-0.21886875,0.07674428,0.010871353,-0.23452584,-0.47454193,-0.38645408,-0.56543565,-0.5540651,0.35337752,1.0189527,-0.4204297,-0.17414631,-0.1718287,-0.31921658,-0.010004108,-0.014531353,0.38954735,0.13697326,0.16513704,0.06782337,-0.7446865,0.42030635,-0.42390585,0.1471453,-0.47900102,0.097790755,0.43879256,-0.43756294,0.56945574,0.17475282,0.22712764,0.12256818,-0.7588315,-0.13147385,0.19371466,-0.018415943,0.47894096,0.27757725,-0.5919338,0.486204,-0.011885123,-0.27427387,-0.5754201,0.38054007,0.060792368,-0.11902827,0.08825853,0.3620037,0.24183919,-0.1443067,-0.034198675,0.26823366,-0.61524713,0.39386144,0.16522308,0.065835975,0.5064687,0.009195398,-0.36379388,-0.46011993,-0.22950779,-0.5346445,-0.17142607,-0.016074581,0.035436977,0.17618386,0.10703725,0.0072663897,0.40704253,-0.30509424,0.22055614,-0.007347954,-0.33774614,0.4819103,0.5055743,0.37311012,-0.5489672,0.47002846,0.1601454,0.08052798,-0.01608239,-0.009620867,0.49586496,0.24696371,0.28952032,-0.17131232,-0.09432394,0.16491,0.64497524,0.080554925,0.14382505,-0.075052485,-0.37406555,0.1669266,0.0704739,0.044603836,-0.03289927,-0.31838742,-0.17849329,0.0071497518,0.14937592,0.41533026,0.19701445,0.25365806,0.06408072,-0.0783517,0.254838,0.08664439,-0.13752861,-0.92799705,0.44301254,0.19263114,0.7419315,0.48725647,0.0006380166,-0.089822486,0.39110282,-0.23895948,0.06725926,0.57469016,-0.32502335,-0.37759215,0.6472431,-0.36975506,0.6463731,-0.16666497,0.05803191,0.13862629,0.2959144,0.3268686,0.8861903,-0.094362155,-0.046670295,-0.018831534,-0.29871488,0.08058386,-0.22998418,0.04862109,-0.52938694,-0.2612485,0.528802,0.37975615,0.2593473,-0.20711033,-0.071941994,0.05308191,-0.27819052,-0.009158313,-0.19605131,-0.10896749,-0.25706786,-0.47779825,-0.45269352,0.49216798,-0.11380552,0.012347422,0.02472507,-0.27637535,0.21265456,-0.034916546,-0.0011343871,0.03304064,-0.68972826,-0.010023334,-0.27562305,-0.5304548,0.41647345,-0.47635296,0.222532,0.19566886,0.008613052,-0.3149208,0.22037268,0.025501218,0.72965676,-0.16158569,-0.2817021,-0.34219572,-0.074515276,0.16621868,-0.3433601,-0.049643468,-0.26082715,0.21194315,-0.46271196,0.5712308,-0.16769716,-0.19689102,-0.13523029,-0.27826047,0.02743409,0.3926303,-0.333508,0.0647496,-0.11664192,-0.06321566,-0.39285082,0.02326909,-0.39702627,0.3117668,-0.019209398,0.024471572,-0.016456153,-0.14975594,0.0016194582,0.16259968,0.07717316,0.04975454,0.24688137,-0.1475563,-0.36882442,0.120040104,0.19018818,0.39243054,0.19270542,0.059810523,-0.3768027,-0.2176578,-0.41617733,0.4259772,-0.25446907,0.20398414,-0.072225094,-0.45073608,0.6362575,0.124637075,1.1477611,-0.005553407,-0.26136163,-0.08468808,0.53459424,0.11416155,0.05499115,-0.20949437,0.95041275,0.62751716,-0.013506219,-0.1178626,-0.4677003,-0.120491095,0.3739079,-0.25592557,-0.20615828,-0.10156398,-0.6493563,-0.17348978,0.104201555,-0.058129538,0.19217263,-0.15354478,-0.24331091,0.020433733,0.34214646,0.36973193,-0.66792554,-0.0902965,0.27500662,0.15011522,0.04822536,0.2812464,-0.4168845,0.3356708,-0.90571386,0.35314772,-0.21836582,0.15662302,-0.24722998,-0.19639175,0.23738466,0.09119594,0.29400992,-0.05965709,-0.3780295,-0.027016087,0.5943031,0.33380884,0.15003355,0.7895232,-0.17591393,-0.088591084,0.1954813,0.6101197,1.259014,0.065414205,-0.07245908,0.15014389,-0.26587024,-0.905564,-0.0012103915,-0.42543712,0.0076610106,-0.20445634,-0.28254622,-0.4406808,0.123706244,0.13434806,0.01964331,0.18186514,-0.44167492,-0.23690076,0.1181832,-0.38049632,-0.2718307,-0.37883678,-0.09994737,0.76254547,-0.4199663,-0.19058558,0.09588815,0.28001183,-0.15005982,-0.69421864,0.19557926,-0.22320363,0.38977104,0.22119477,-0.31541237,-0.18482132,0.20032085,-0.45188966,0.27675417,0.38225105,-0.32760304,-0.0039116316,-0.1920022,-0.19103572,0.9368109,0.08517303,0.2218179,-0.6535165,-0.31244588,-0.79541034,-0.36412832,0.10194767,-0.06349365,-0.14478822,-0.4904177,-0.11282977,-0.12181492,0.10558864,-0.022505283,-0.3937084,0.26123902,0.08612023,0.3051655,-0.00011727427,-0.86005414,-0.055761497,0.028440455,-0.05650461,-0.34175095,0.5013782,-0.2133816,0.7480096,0.052652802,-0.085524954,0.1455786,-0.5187269,0.37122473,-0.32090217,-0.056770317,-0.4081131,0.20097198,270 -401,0.24579717,-0.14658682,-0.46320915,-0.095869824,-0.19628394,0.28422418,-0.031334113,0.55604786,0.20471337,-0.27470914,-0.1219757,0.09348547,-0.005707774,0.30103305,-0.17132306,-0.45468208,-0.052514877,0.14175943,-0.35773233,0.51481277,-0.2860472,0.37658224,-0.28460333,0.36884913,0.08243155,0.35068774,-0.0122299045,-0.040080722,-0.2781281,-0.24511719,-0.048821963,0.46402764,-0.4459595,0.29355332,-0.15607123,-0.2706973,0.05517083,-0.41586837,-0.40574735,-0.55521816,0.17792149,-0.61595637,0.4863588,-0.117133565,-0.18953378,0.5627405,0.102636226,0.13654377,-0.06094211,-0.18506654,0.045834262,-0.1171455,-0.13854882,-0.2956188,-0.25372288,-0.45559496,-0.5010063,0.0633967,-0.33820596,-0.21672685,-0.26193187,0.10708259,-0.32113343,-0.071110494,0.01688941,0.39636064,-0.42274645,0.16188443,0.058205187,-0.18744394,-0.137188,-0.5087637,-0.11030424,-0.05345383,0.24034132,-0.22456264,-0.016160654,0.2762412,0.14268295,0.34905553,-0.114629254,-0.17481408,-0.41638115,-0.18097599,0.109355845,0.55565685,-0.18576707,-0.44979137,-0.026171466,0.06278635,0.1424396,-0.02694577,0.13522479,0.060705964,-0.13666402,-0.030961914,-0.2585296,0.41712552,0.3668533,-0.4322422,-0.4169538,0.37846997,0.46857008,0.1722987,-0.22107589,-0.23591474,-0.044277605,-0.36859372,-0.18401709,-0.13819724,-0.16782995,0.33234784,-0.1447758,0.21275184,0.5229411,-0.21017572,0.0031261656,0.19384238,0.10966523,0.052959908,-0.087496184,-0.26288727,0.124181986,-0.29266733,0.12284434,-0.09979606,0.7591276,0.09722564,-0.54775345,0.4070244,-0.5064131,-0.030261619,-0.10410516,0.39762634,0.44949132,0.51832396,0.2788191,0.43802518,-0.17803974,0.10754539,-0.01848546,-0.31068897,-0.0059344852,-0.25551125,-0.08098738,-0.53565174,0.22288518,0.14976086,-0.017242905,0.14808138,0.26937565,-0.46124104,-0.1502124,0.2723415,0.8870734,-0.2710986,-0.27809185,0.60856014,0.98285323,0.7662825,-0.066434726,1.0025299,0.20812218,-0.22934376,0.114959314,-0.36434636,-0.6295307,0.23436359,0.32031527,-0.49750784,0.36526474,0.17705749,0.103461996,0.21244773,-0.20944871,-0.08066644,-0.19957212,0.17581709,0.26668796,-0.030300502,-0.44215414,-0.3355174,0.07557922,-0.052565802,0.3546771,0.3081307,-0.21495579,0.4115884,-0.0001235434,1.537015,0.08198945,0.049806774,-0.058203876,0.53914815,0.20885542,-0.024420831,-0.064606175,0.36057577,0.22147356,0.0002562276,-0.43973675,0.2645371,-0.16003425,-0.5441952,-0.17019452,-0.40239355,-0.17656788,0.1720084,-0.3079838,-0.12851831,-0.13207066,-0.12289996,0.37047714,-2.8027496,-0.09653532,-0.026376162,0.24673355,-0.2303691,-0.38261768,-0.09528696,-0.3790225,0.2557184,0.29933795,0.48156747,-0.49326906,0.3975615,0.3542773,-0.5312627,-0.22909772,-0.4166904,-0.05683083,-0.04680422,0.43060806,-0.021211224,0.019717712,0.055398952,0.122186996,0.44203326,-0.05890003,0.13416657,0.31460875,0.391654,0.012364136,0.30576953,-0.043960176,0.66162825,-0.22269814,-0.21873166,0.3485845,-0.26374298,0.410857,-0.07076987,0.13329308,0.28478193,-0.26343295,-0.8693676,-0.55737954,-0.026903927,1.3877697,-0.09695341,-0.34418747,0.090235345,-0.45395142,-0.3899776,-0.042861056,0.25983384,-0.19748743,-0.23298843,-0.6486152,0.1627628,-0.069219254,0.13670886,-0.008322247,0.07726274,-0.3555889,0.6015534,-0.035191108,0.45910946,0.12006621,0.18920313,-0.23267166,-0.32805333,-0.021863341,0.7382879,0.34149885,0.103470884,-0.2334194,-0.28210834,-0.20723204,-0.033768144,0.05412901,0.5068597,0.4161058,0.03834201,0.019121375,0.110568285,-0.06437623,0.11222686,-0.22220562,-0.13004728,-0.11424066,0.08664663,0.5521002,0.3943545,-0.22948778,0.49332318,-0.04355996,0.2616761,-0.094743095,-0.36698034,0.3865945,1.0250765,-0.28187162,-0.27608365,0.6585912,0.47950724,-0.29621342,0.27937478,-0.5624481,-0.25968742,0.34323815,-0.2809913,-0.35045582,0.0995925,-0.18747246,0.115661755,-0.9109708,0.22095035,-0.18291971,-0.5264912,-0.52046204,-0.027510703,-3.487447,0.0641934,-0.07157832,-0.18864462,-0.1506588,-0.121852465,0.14258786,-0.60019165,-0.49461618,0.116862066,0.10733471,0.6162811,0.012386901,0.06785528,-0.18170404,-0.39857313,-0.31071255,0.16625921,0.006735146,0.3681291,-0.1075755,-0.48089296,0.012978946,-0.11862743,-0.34932277,0.07381531,-0.5967805,-0.35231924,-0.109263115,-0.5098304,-0.13885686,0.6277482,-0.4311503,-0.020700762,-0.29612812,0.09372682,-0.13610572,0.25366277,-0.017020078,0.078081794,0.21672145,-0.10185406,0.21690424,-0.36012834,0.449059,0.01034918,0.48214895,0.37770694,0.013149304,0.08339034,0.57073647,0.5735253,-0.0006517257,0.7132844,0.38530254,-0.15216693,0.3424572,-0.2449801,-0.28309315,-0.40638906,-0.2928389,0.067317374,-0.276501,-0.41217354,-0.12550585,-0.27165475,-0.8127719,0.53089964,0.00082350627,0.00710898,-0.055061765,0.37146038,0.58104557,-0.11893481,0.119037114,0.0067544603,-0.15519355,-0.52116835,-0.3310761,-0.49619594,-0.31591293,0.102835886,0.95900124,-0.27931514,0.09912995,-0.11288273,-0.19547936,-0.03481598,0.0986549,0.1471566,0.18184707,0.45712143,-0.16422768,-0.5366158,0.37921348,-0.2024831,-0.118541256,-0.4479975,0.10014941,0.48917097,-0.6122666,0.48836845,0.38079858,0.0012607767,0.056075595,-0.3637388,-0.15946753,-0.06471344,-0.1724812,0.22814922,0.28365758,-0.8441334,0.422972,0.23959598,-0.36625177,-0.65010786,0.4538257,-0.09617933,-0.21882303,-0.15377326,0.2679288,0.31005198,0.012659497,-0.14219753,0.15957175,-0.31064728,0.21512787,-0.04073899,-0.009518428,0.29361334,-0.2022675,-0.06743635,-0.687784,0.05422934,-0.38388592,-0.4120688,0.18425317,0.11487909,0.12111634,0.2298709,-0.010700247,0.3044336,-0.48061687,0.058933564,0.03850493,-0.3535253,0.32897156,0.26467726,0.52510685,-0.39161506,0.42802456,-0.017369937,0.057210702,0.17094283,-0.0033393076,0.51697934,0.06903335,0.2922973,0.20811228,-0.22107546,0.14135759,0.8233029,0.20213996,0.40880147,-0.0014775736,-0.18572651,0.26917377,-0.027125362,0.0427442,0.02333327,-0.47656354,-0.053136587,-0.23233652,0.06943976,0.54086405,0.19615872,0.2996536,-0.13130738,-0.28969055,0.14401896,0.06637522,0.12871048,-0.9229373,0.3668565,0.11493269,0.80349874,0.21469013,0.12928748,0.12645216,0.6747362,-0.17052257,0.13489847,0.35718462,-0.026596291,-0.5741334,0.44585842,-0.5682912,0.47147846,-0.014554105,-0.11627442,0.09855523,-0.14647785,0.38616768,0.7765598,-0.24357268,0.023722364,0.2132919,-0.3660105,-0.0028851798,-0.29023027,0.074465975,-0.57191604,-0.10242955,0.57387716,0.46529818,0.3700088,-0.22303107,0.11102333,0.03021649,-0.024675308,-0.018745555,0.052700125,0.12666616,0.04563401,-0.5593737,-0.092334926,0.53922486,0.14808369,0.1557937,-0.03329299,-0.22898553,0.27576062,-0.17113303,-0.15735976,-0.062191702,-0.5225665,0.14149395,-0.0963722,-0.58325356,0.4883177,-0.021452565,0.17585795,0.1168062,0.058078256,-0.28027773,0.36355087,0.15779673,0.63589233,-0.022984222,-0.112879105,-0.3951528,0.079233214,0.044577207,-0.15630631,-0.030135155,-0.29016978,0.065524824,-0.3474719,0.25078517,-0.20724384,-0.33139747,-0.081077136,-0.15158269,0.12783477,0.3839094,0.022058044,0.032920934,-0.12738745,-0.12058357,-0.27277046,-0.2153383,-0.10530512,0.30298042,0.17949489,-0.2953723,-0.232625,-0.24993229,-0.1580257,0.37951928,-0.08695657,0.34749055,0.3834121,0.1370782,-0.19924174,-0.17253372,0.13588543,0.39620194,-0.23088877,-0.04903147,-0.353637,-0.22929862,-0.17392111,0.31922075,-0.18619598,0.14592783,0.16307159,-0.36588544,0.6349682,-0.12721159,0.97131115,0.019159148,-0.29367188,0.1844462,0.4498817,0.09479026,0.06076691,-0.38710663,0.8819863,0.3784526,0.07879947,-0.18614085,-0.43128482,0.02545762,0.1044303,-0.17143796,-0.16110186,-0.071790285,-0.55717075,-0.24436042,0.30152726,0.22734472,0.17814258,0.0023725785,0.20052862,0.12313751,0.104991876,0.3930857,-0.3817862,-0.22103834,0.29511175,0.25327414,-0.083580635,0.2490829,-0.44422117,0.2813469,-0.511612,0.07986663,-0.22797914,0.08812172,-0.25828207,-0.1990029,0.12906666,0.1051021,0.3348128,-0.19633843,-0.37279233,-0.24973209,0.30206487,0.022964586,0.061304577,0.304701,-0.20876524,0.12207001,0.042703208,0.4700172,0.7422163,-0.104615055,0.0653829,0.27314308,-0.23483784,-0.4768483,0.20890555,-0.2691246,0.25996447,-0.011342345,-0.10054456,-0.486456,0.3140974,0.2815628,0.0898362,0.0003995065,-0.39222386,-0.13470836,0.14577372,-0.33668548,-0.1437823,-0.19509114,0.058077477,0.70629585,-0.23646148,-0.17156975,0.034491163,0.35723358,-0.07644645,-0.40265962,-0.01110581,-0.35532552,0.31089434,-0.03979724,-0.33166978,-0.24926415,-0.032557864,-0.38488477,0.24540417,0.39607117,-0.3679144,-0.05684621,-0.26115406,0.12297462,0.81261337,-0.1379319,0.22947869,-0.45625407,-0.45050806,-0.84149116,-0.44502264,0.33448496,0.15585314,-0.14611678,-0.48308197,0.107813634,-0.031394154,-0.4613754,-0.1113679,-0.4436831,0.3428307,0.0602862,0.22947672,-0.105436936,-0.8932409,0.06638295,-0.032198958,-0.22358002,-0.4989309,0.37096277,-0.16574033,0.956117,0.081065096,0.05331933,0.14816426,-0.29201943,-0.03807681,-0.23482838,-0.11607174,-0.55415195,0.17140903,271 -402,0.23145445,-0.009363557,-0.5582789,-0.16954371,-0.22821675,0.13257079,-0.12859263,0.0925191,0.27187538,-0.16909552,-0.032713674,-0.2871717,0.018246353,0.42203125,-0.003671776,-0.79432875,0.05206568,0.06343984,-0.6241165,0.27444932,-0.50046855,0.3354211,0.087092176,0.45370868,-0.17403343,0.4008548,0.30902964,-0.11846461,0.0029663572,0.046667542,-0.19737138,0.14370015,-0.538283,-0.06936648,-0.043421127,-0.27403122,-0.0537891,-0.3704145,-0.41839963,-0.5531065,0.46391037,-0.76514274,0.37076932,-0.04260769,-0.2810386,0.015971167,0.07469871,0.17071728,-0.39346585,0.19100164,0.24383874,-0.24362648,0.020994714,-0.0089995265,-0.39907074,-0.63010937,-0.5965679,0.018460054,-0.52120346,-0.1936406,-0.22901069,0.17400467,-0.38422212,-0.006982646,-0.06019069,0.35252014,-0.39290524,-0.10578104,0.37948796,-0.4113397,0.15191732,-0.3328584,-0.10003046,-0.09135725,0.2950746,0.043204896,-0.13298579,0.09038316,0.4309731,0.6044818,0.092334494,-0.19492066,-0.32486895,-0.18746968,0.15646367,0.6282977,-0.035118695,-0.27888307,-0.17879613,-0.07286803,-0.07466348,0.24056439,0.109405585,-0.41712853,-0.04294942,0.093739934,-0.20026599,0.17701033,0.44768327,-0.470269,-0.3982389,0.35439935,0.29898039,0.12019281,-0.0914394,0.22518887,0.0719325,-0.54857594,-0.27815908,-0.025223702,-0.10405771,0.64698374,-0.17242433,0.34745649,0.7996913,0.02792698,0.07564153,-0.31209686,-0.19617596,-0.12416097,-0.17158036,0.13788517,-0.012328037,-0.41621166,0.17814705,-0.034053486,0.5394943,0.19906278,-0.76447064,0.5340017,-0.556023,0.22500817,-0.086239524,0.63827175,0.7227512,0.17663704,0.23765804,0.87190163,-0.5253693,-0.005262328,0.0064788377,-0.4597947,0.17816223,-0.08153339,0.12432452,-0.4576958,0.1062407,0.23838423,0.07333853,0.1373302,0.36342806,-0.37514946,-0.0041216356,0.026413266,0.8106751,-0.35560375,-0.13859022,0.6121072,0.9618759,0.8597541,0.07377785,1.4753801,0.36296773,-0.17786898,0.14772391,-0.33187765,-0.6001938,0.11625909,0.29389432,0.35878462,0.374019,0.09779961,0.034188617,0.49238124,-0.12504043,0.12491894,-0.08266645,0.041504826,0.19143721,-0.13772239,-0.20934296,-0.1977237,0.14586131,0.095944665,0.029219177,0.19923356,-0.06508358,0.40474457,0.03991801,1.5733042,0.048093643,0.21243067,0.026830545,0.42499354,0.17792644,-0.07458927,-0.08896788,0.44268394,0.21980432,0.06049029,-0.5278666,-0.0116682565,-0.27249768,-0.5254522,-0.18417202,-0.3525742,-0.19308588,-0.04316438,-0.52850825,-0.05999338,0.06518905,-0.35448188,0.46312752,-2.6417944,-0.24222098,-0.19060688,0.34058395,-0.2640289,-0.18008812,-0.28770676,-0.36292055,0.22001727,0.55875224,0.28283387,-0.694956,0.42418766,0.27432123,-0.2685252,-0.21314801,-0.4953084,0.041504435,-0.02078505,0.34669158,-0.045330606,-0.23756354,-0.13936569,0.34016052,0.6377777,0.11515672,-0.08579738,0.17461678,0.5873403,0.08159139,0.46180847,0.024549235,0.56055915,-0.09420212,-0.08255688,0.4064464,-0.41464075,0.39164236,0.0076846564,0.17403606,0.27378866,-0.34013766,-0.83267486,-0.65842295,-0.46857437,1.2061712,-0.41483146,-0.32735398,0.4268702,-0.1342059,-0.25143448,-0.021561358,0.596686,-0.16641276,0.11914352,-0.6985851,0.08324779,-0.1660455,0.17336296,-0.00785133,0.043085583,-0.24992874,0.80226403,-0.07931734,0.4839487,0.36340538,0.15262029,0.07949746,-0.3438166,0.09801947,0.7488329,0.3590071,0.13016237,-0.110056005,-0.07268435,-0.11632722,-0.25402504,0.07961813,0.55165356,0.60345274,-0.0076762266,0.15698598,0.24261053,-0.012201503,-0.021787878,-0.123840876,-0.25019753,0.090719566,0.05918566,0.47622636,0.7069054,-0.3741,0.2757969,-0.09939416,0.12124036,-0.16514038,-0.45752907,0.5261883,0.79528457,-0.16461898,-0.09328121,0.37364727,0.34163094,-0.45888567,0.357362,-0.5916973,-0.23659693,0.6843496,-0.11281093,-0.39087847,0.21402399,-0.2801552,0.00027410686,-0.86811036,0.26294914,0.1750716,-0.40320715,-0.51403326,-0.27967614,-4.4950185,0.10225999,-0.18526812,-0.13812509,-0.13760053,-0.012997559,0.4065496,-0.6050057,-0.6207759,0.0625685,0.01745971,0.41665202,-0.07688614,0.2678681,-0.32680917,0.024705933,-0.24673054,0.27654293,-0.021730285,0.35006994,0.09280316,-0.36108106,-0.049855884,-0.2840156,-0.5269205,0.0009378344,-0.6327223,-0.49194476,-0.1630537,-0.40668264,-0.21566382,0.645712,-0.42108536,0.0008144932,-0.38294727,-0.083821096,-0.40859452,0.39913654,0.26564452,0.08887308,-0.0111034,0.056599755,-0.18582766,-0.21274294,0.2315088,0.09225663,0.29233688,0.46096426,-0.026391953,0.11695484,0.47379836,0.58633476,-0.07350344,0.53068525,0.26499113,-0.016660614,0.41784337,-0.35280338,-0.1543541,-0.6781312,-0.47282353,-0.13813134,-0.47766295,-0.6419017,-0.2785096,-0.3197164,-0.77968884,0.29228207,0.090681635,0.09562083,0.0015735626,0.12996532,0.41385564,-0.17895497,0.08315345,-0.048160758,-0.16572626,-0.60099953,-0.40488562,-0.5267149,-0.59246504,0.2971845,0.99169606,-0.037502546,-0.18614075,-0.014008184,-0.33184072,-0.06279528,0.09328877,0.35553908,0.16236205,0.2711089,-0.121104226,-0.7554353,0.480642,-0.28229204,-0.13182405,-0.7199136,-0.14553468,0.5885606,-0.6625319,0.7391706,0.3132132,0.29622173,0.33746368,-0.51042837,-0.4276042,0.057616323,-0.1442359,0.41375613,0.1986264,-0.6109344,0.46337953,0.058078755,-0.12426666,-0.5467473,0.44034767,-0.095588036,-0.23097238,0.20299038,0.27646226,-0.021566238,-0.15956889,-0.08657404,0.17845353,-0.5409075,0.23083405,0.43624464,0.1373289,0.69748455,0.008753151,-0.17580707,-0.4871199,-0.1321838,-0.3888485,-0.19218354,0.01758334,0.13227496,0.18057561,0.0036745903,-0.16520275,0.34927887,-0.34575075,0.20460579,0.013212289,-0.2320607,0.28847197,0.48172122,0.26833802,-0.55879176,0.63279194,0.02382456,-0.013631408,-0.010585657,0.075239524,0.48127413,0.339052,0.27306303,-0.108052686,-0.19832861,0.07050019,0.8260956,0.2609891,0.28119504,0.14101006,-0.30029565,0.4767959,0.18412113,-0.038354933,-0.12902388,-0.40929016,0.020572288,-0.12518881,0.18973939,0.32859698,0.15979555,0.3318824,-0.04624647,-0.19073853,0.20040295,0.20092826,-0.06407888,-0.8848257,0.24505053,0.30743343,0.73695433,0.5397125,-0.054699536,0.07785439,0.39660814,-0.31073388,0.13261083,0.3516267,0.0025060389,-0.6581925,0.48608676,-0.46558738,0.42157394,-0.16022475,-0.05495014,0.18692581,0.28912768,0.23845135,0.7940397,0.02065594,0.046301913,0.07926922,-0.26689094,-0.04687813,-0.27199724,0.055036772,-0.59368736,-0.25240955,0.5881119,0.4657195,0.26870707,-0.40410948,-0.078658685,0.004940018,-0.11489851,0.026614103,-0.13469787,0.054167587,-0.14018808,-0.7068148,-0.40508646,0.583715,-0.063531466,0.0342194,0.09625184,-0.49710566,0.23337345,-0.2401552,-0.07185093,-0.0021677783,-0.5764381,0.018306818,-0.22410734,-0.64606464,0.3266059,-0.3031401,0.33779842,0.1472805,-0.0056156344,-0.33839735,0.30667183,0.037287258,0.9468637,-0.019571027,-0.021709297,-0.38148436,0.00359737,0.37299934,-0.28551146,-0.2700067,-0.44281915,0.02962571,-0.26452306,0.50878817,-0.18101814,-0.17751952,0.08047997,-0.23548743,-0.03704503,0.4625899,-0.26385167,-0.20532751,0.19710515,-0.025164505,-0.32121223,0.08426776,-0.5218106,0.38554904,-0.078272685,-0.033833876,0.097524405,-0.06113896,-0.10854716,0.32471174,0.085793674,0.12125405,0.36162123,-0.048605297,-0.28388914,-0.11374096,-0.03982205,0.42452118,0.1886103,0.0057397485,-0.23757364,-0.5054969,-0.3518459,0.21630737,-0.11768006,0.1309624,0.2029494,-0.45840195,0.63285726,0.3259376,1.1145824,0.15327676,-0.32892755,0.09749186,0.51999557,0.1312848,0.12182864,-0.38056055,0.86094946,0.64743054,-0.20365776,-0.29488248,-0.26430854,-0.21728945,0.22625473,-0.22228721,-0.24474518,-0.10239165,-0.7756596,-0.23372187,0.07395707,0.1636201,0.1780242,-0.005387408,-0.06695388,-0.019158361,0.13112389,0.3930978,-0.43266425,-0.33225998,0.4231877,0.17442906,0.009009003,0.13466808,-0.24569504,0.529727,-0.5834416,-0.008617686,-0.53135115,0.15980276,-0.12503621,-0.26909098,0.16928016,0.10171033,0.45530823,-0.15439722,-0.24556944,-0.22557256,0.61978656,0.23180728,0.33058444,0.75008476,-0.18378387,-0.085930444,0.0509907,0.56429297,1.4765676,-0.17594932,0.09726155,0.3965622,-0.31849846,-0.5497356,0.05493007,-0.45284218,0.0179833,-0.120588906,-0.37539244,-0.43619114,0.30078173,0.013149278,-0.13049963,0.14204773,-0.40877387,-0.33469492,0.37398693,-0.3075946,-0.3169732,-0.44741938,0.2161769,0.85772806,-0.37935358,-0.24367662,0.18629286,0.21467316,-0.25096673,-0.55969,0.13373365,-0.21434225,0.3764245,0.18045545,-0.4050133,0.037484027,0.27276683,-0.3970843,0.2638262,0.29667354,-0.35167366,0.11412395,-0.3676397,-0.2706081,1.1700188,0.04040704,0.04857164,-0.7550408,-0.41964203,-1.0180337,-0.39300236,0.3911038,0.10896073,-0.16831705,-0.32722783,-0.14685345,-0.042952288,0.098271124,0.0034671447,-0.4536619,0.43698883,0.12567674,0.5963388,-0.058816902,-0.8189311,-0.033756495,0.036828723,-0.33976254,-0.4690457,0.6008158,-0.13092259,0.6335104,0.116472736,-0.03804618,0.29409957,-0.604931,0.28929296,-0.3729282,-0.24152379,-0.79174,0.07594408,278 -403,0.23506545,-0.04745271,-0.5727497,-0.07582389,-0.19750595,0.20315756,-0.33212045,-0.053400125,0.20192198,-0.60655296,0.14427061,-0.15734722,-0.13434647,0.08817638,-0.023916574,-0.65983665,0.14087038,0.20868151,-0.38441107,0.68131894,-0.33795214,0.20459105,0.22740528,0.06716792,-0.3155616,0.06684058,0.12014448,-0.23017468,0.0020063946,-0.2345116,0.24186179,-0.21694052,-0.67305475,0.32572696,-0.16414347,-0.29222178,0.15971753,-0.2197411,-0.36539742,-0.66154444,-0.015355246,-0.6574688,0.42430228,0.057672907,-0.22502716,0.23743887,0.18010256,0.40019575,0.04838633,0.037103213,0.40252572,-0.3971857,-0.44743943,-0.3364059,-0.26329067,-0.527318,-0.61719435,-0.14239536,-0.58644044,-0.063568756,-0.37084177,0.27770692,-0.3108826,-0.12702273,-0.23265198,0.4224287,-0.33094046,-0.09066766,0.20439477,-0.15170206,0.3115857,-0.6825549,-0.085974105,-0.12350445,0.022962779,0.23382504,-0.0056008226,0.19072269,0.090730555,0.64246315,0.11427462,-0.28940943,-0.20679018,-0.09303512,0.313866,0.4786003,-0.1533698,-0.0074018836,-0.13114777,-0.100123934,0.23211776,0.17560038,0.07151873,-0.40858525,0.096470796,0.028265102,-0.2864116,0.24927644,0.57153946,-0.28301406,0.03614617,0.30373335,0.40365642,0.0057160174,-0.22611117,0.004922245,-0.04715121,-0.26485643,-0.09411745,0.19469681,0.057877224,0.3407772,-0.046391,0.28966698,0.4960881,0.057595883,0.035710864,0.04289352,-0.0002531835,0.23175107,-0.21414296,-0.0761037,0.25402918,-0.7588231,0.023281422,-0.56290495,0.6657599,-0.14525904,-0.9907653,0.33044153,-0.38196892,0.056695692,-0.020100351,0.6783906,0.7420593,0.42438123,-0.16499774,0.66460526,-0.5206779,-0.030737562,-0.17519887,-0.17023587,0.08936262,0.039201222,0.5385553,-0.4718495,-0.23803592,0.013537867,-0.10936506,-0.28776667,0.37929398,-0.3939542,-0.27721497,0.25239316,0.937374,-0.20250957,0.011366389,0.4086208,1.3005129,0.82735676,0.13446344,1.1866072,0.20578954,-0.18717949,-0.21709575,-0.24185319,-0.5824296,0.097295836,0.19568647,0.90137875,-0.016944792,0.08178592,-0.20212804,0.45764956,-0.34715304,0.060734797,-0.1511825,0.4183907,-0.09952235,-0.19453189,-0.15729989,-0.061240885,0.10496116,-0.00039066907,0.0071313,0.351954,-0.13738525,0.14736815,0.008602917,1.1915523,-0.2924983,0.23148881,0.058692914,0.132611,0.08887629,-7.955943e-05,0.10997697,0.2205019,0.13071768,-0.087294884,-0.488732,0.01618618,-0.24226893,-0.40457144,-0.24840225,-0.15224467,-0.15645555,-0.046377324,-0.24050985,-0.17134468,-0.06499473,-0.58784264,0.28409258,-2.7056324,-0.220776,-0.18226974,0.29746982,-0.298357,-0.19768713,-0.013742104,-0.41349012,0.7028378,0.2825901,0.29323557,-0.48170656,0.6184581,0.5156712,-0.33841702,-0.0060891933,-0.6707149,-0.07604798,-0.11223644,0.4195211,0.028574884,-0.26730528,-0.056735467,0.09488493,0.37551588,0.034919895,0.13709153,0.568086,0.33353516,0.008246945,0.3351014,0.0066131693,0.4568946,-0.24496563,-0.1098255,0.2496492,-0.30429393,0.3076534,-0.35099524,0.07167822,0.4036906,-0.23195033,-0.42708546,-0.5238752,-0.3661709,1.0956393,-0.12542342,-0.62135726,0.2226601,0.0013945954,-0.24393201,0.10872276,0.5327067,0.019966813,0.10755366,-0.71670204,0.0802294,-0.2424032,0.26144022,-0.020951275,0.03811417,-0.5845661,0.72397655,-0.0705226,0.5315822,0.5591728,0.28697506,-0.09248878,-0.14508401,0.09197513,0.90536106,0.34153137,0.04958568,-0.19902185,0.00389074,-0.13102616,-0.32949987,-0.025296833,0.5462889,0.7137652,-0.15447421,0.11116694,0.32418033,-0.32918054,0.029303143,-0.1799209,-0.58487904,-0.11712968,0.18153858,0.49415675,0.4312647,0.040252086,0.47082895,-0.0062943613,0.17371117,-0.36748573,-0.44276842,0.29046223,0.32893127,-0.25427717,-0.07648124,0.49867827,0.46321386,-0.10761369,0.5319947,-0.51826036,-0.32704774,0.41437265,-0.025185024,-0.5032999,0.066552065,-0.5031818,0.09162898,-0.8189874,0.31454605,-0.6627296,-0.7465683,-0.59417015,-0.15859315,-2.3330917,0.27484977,-0.48657227,0.06508889,-0.15107001,0.096161045,0.30081868,-0.36365375,-0.34936222,0.050955493,0.07502304,0.5049979,-0.0141285,0.003640473,-0.36659044,-0.14378937,-0.24183634,0.36410877,0.107550345,-0.104000024,-0.09445951,-0.16359667,0.073624186,-0.28917474,-0.07834829,-0.04563338,-0.5376492,-0.15025823,-0.22073105,-0.4210479,-0.37983224,0.6185767,-0.37733927,-0.017986286,-0.24423313,-0.067253776,-0.04885975,0.36018854,0.13173485,0.23770057,0.050096292,-0.11927358,-0.27239332,-0.38792592,0.18983123,0.17920391,0.23336144,0.63476783,-0.15545438,-0.023464339,0.45289484,0.4799097,0.17415884,0.8061999,0.3287807,-0.2647585,0.44024563,-0.34573084,7.688999e-06,-0.61260617,-0.155857,-0.15536715,-0.28655344,-0.6161167,0.13307297,-0.29649463,-0.6571917,0.37329096,0.22640796,0.02702873,0.05561375,0.3306551,0.36904716,0.024801042,-0.15959981,-0.13449384,-0.105847254,-0.4062979,-0.36158234,-0.8493252,-0.49576974,0.14072269,0.98784816,-0.10484189,-0.14525047,0.16839586,-0.11401469,0.05065612,0.36193636,0.18486154,0.056389403,0.32367396,0.2815089,-0.720716,0.38311774,0.030139003,0.18779862,-0.7169879,0.2111984,0.7286986,-0.7294275,0.45486125,0.43006548,0.08791359,-0.195534,-0.64197415,-0.111309886,0.25518104,-0.2890467,0.34267145,0.07358463,-0.863933,0.40855506,0.28164268,-0.13944043,-0.81207305,0.30185625,0.086203896,-0.11987233,0.082381725,0.4006054,-0.056530237,0.034323066,-0.14042078,0.30855462,-0.4376456,0.48453298,0.03619268,-0.17021547,0.37191364,-0.14366044,-0.16038443,-0.50006485,0.062946305,-0.476439,-0.2842365,0.3850069,-0.029445311,-0.036743797,0.5757035,0.15949547,0.4256106,-0.28911304,0.14295998,-0.24330516,-0.4703284,0.38000196,0.42741734,0.2619745,-0.35989565,0.64761823,-0.058916368,-0.2506696,-0.17544042,0.12699248,0.4455318,0.13854448,0.52263826,-0.07302995,0.003070844,0.0030032396,0.91548216,0.10832094,0.4887046,0.22423382,-0.05039725,0.3366821,-0.09912108,-0.0513571,-0.27621743,-0.46303436,-0.04404556,0.05101004,0.1857499,0.3757339,0.17904137,0.5864072,-0.057004355,-0.1391627,-0.09444736,0.20552173,0.07299701,-0.7875144,0.45894137,0.16535309,0.61608344,0.63577026,0.023100076,0.052445322,0.56682503,-0.31260914,0.15808606,0.3852496,-0.07059901,-0.2234327,0.60515153,-0.67257386,0.16670573,-0.209367,0.027887711,0.19126691,-0.03162835,0.40858507,0.7787079,-0.28604296,0.032812078,-0.21179898,-0.2279066,0.090337686,-0.08140225,0.27736259,-0.34703264,-0.5170411,0.61050576,0.33062977,0.34866044,-0.24473892,-0.11925285,0.35163635,-0.116137676,0.4872222,0.060040127,-0.043820392,0.14011778,-0.3457038,-0.22694041,0.57175046,-0.29952163,0.060952816,0.17425217,-0.044475906,0.21262716,-0.0762596,-0.13340154,-0.023930298,-0.55602545,0.26515266,-0.31520143,-0.33476236,0.48099694,-0.11075546,0.19033337,0.053733986,0.13605565,-0.028432418,0.27419183,-0.0017484172,0.327131,0.0029890996,-0.19432446,-0.16817696,-0.26692265,-0.03030405,-0.31126657,0.09290415,-0.041929487,0.14693949,-0.75304663,0.47673586,-0.3608628,-0.15361723,0.27294487,-0.2603488,-0.18293297,0.47379106,-0.09410928,0.00017056295,0.3106144,-0.14891891,-0.157694,-0.21539031,-0.16252837,0.21405323,-0.24938774,0.09315101,-0.17489955,-0.13110378,-0.03522433,0.26471177,0.24659726,0.021960417,0.34822708,0.24109542,-0.5371448,-0.040215816,0.19655871,0.32670835,0.14580093,0.059628308,-0.11599856,-0.29070932,-0.35009876,0.3219826,-0.094523944,0.15246384,0.02500445,-0.41996428,0.86508167,0.17430641,0.9100463,0.04083916,-0.20636511,0.011824169,0.43236595,-0.11515414,-0.012937627,-0.413527,0.8157994,0.6964965,0.07684755,-0.030262012,-0.5588953,-0.084573634,0.44830212,-0.16390362,-0.0033503047,-0.008214108,-0.713595,-0.32733992,0.16841435,0.2778484,-0.18291362,-0.21924257,0.011077966,0.15770783,0.15011744,0.18365957,-0.6343337,-0.15339388,0.2643686,0.15730922,-0.039911028,0.35315844,-0.3327794,0.2475429,-0.8166804,0.29832944,-0.1540023,-0.18807295,0.02845114,-0.119735636,0.2272815,0.20285675,0.19834383,-0.10719267,-0.33438084,0.048991244,0.38984802,0.26918322,0.3791545,0.9459616,-0.15316316,-0.098707914,-0.13698637,0.5092591,1.3019911,-0.122719355,0.01706596,0.21103127,-0.29140046,-0.8215129,0.054879718,-0.30997208,0.07057137,-0.032041818,-0.60121745,-0.39415404,0.1507478,0.060088594,-0.3017512,0.08580818,-0.5358166,-0.301181,0.012330526,-0.29904267,-0.20750739,-0.1799897,0.122817576,0.9257932,-0.20607005,-0.035502914,-0.073945284,0.39053124,-0.43875262,-0.5372509,0.18368642,-0.4261401,0.19207726,0.056486093,-0.22499545,-0.016389132,0.15977274,-0.6550183,0.028092384,0.13857412,-0.23485933,-0.14382407,-0.293104,0.15503113,0.61619484,0.05198952,-0.09378926,-0.22628419,-0.6425266,-0.43155617,-0.50960726,0.09056504,0.09554238,-0.09092096,-0.29772687,-0.17145647,-0.118963495,0.09079645,-0.05891643,-0.5441975,0.1443708,0.0668241,0.34269616,-0.32387695,-0.86564875,0.17946123,0.33108893,-0.0958482,-0.4172215,0.3428715,-0.30780396,0.84945387,0.13459818,-0.12512065,0.104683995,-0.68398154,0.46733826,-0.34894416,-0.21871315,-0.6632267,-0.08512299,282 -404,0.41422287,-0.2943224,-0.5383467,-0.1463871,-0.3592012,0.23525749,-0.2188691,0.06890636,0.44218236,-0.19153818,-0.34862575,0.03830496,0.012982556,0.44811985,-0.020386415,-0.78928155,0.004876026,0.2920682,-0.9720071,0.62216866,-0.43668276,0.40779993,0.1496673,0.3812356,0.11573477,0.3009679,0.20500013,0.013116168,-0.18857066,-0.0014657378,-0.1404372,0.12377565,-0.58990043,0.16775814,-0.20175095,-0.31415775,-0.11540948,-0.25407335,-0.2695393,-0.83675593,0.17633244,-1.0048089,0.6097906,-0.2721592,-0.094464116,-0.036238756,0.28021753,0.44597986,-0.34731206,0.024432225,0.23288126,-0.34301156,-0.39043453,-0.35066366,-0.14104474,-0.53587276,-0.614975,-0.08319836,-0.6097851,-0.21828052,-0.2523156,0.33162132,-0.29204613,-0.013833516,-0.19869804,0.419468,-0.31062248,0.024123728,0.36000174,-0.2164123,0.10618763,-0.52757543,0.052196383,-0.055422444,0.40365365,0.11543005,-0.284943,0.32022285,0.49369034,0.44099328,0.40127012,-0.35700026,-0.3380851,0.028593203,0.37232453,0.32996348,0.087210946,-0.13921618,-0.3052377,0.05754485,0.5771445,0.21345903,0.358671,-0.20637143,-0.10225104,-0.07385588,-0.023253156,0.7364507,0.4330445,-0.3535904,-0.47627428,0.4145119,0.8218102,0.3870571,-0.23263738,0.12416345,-0.005758292,-0.4891076,-0.04025991,0.19740912,-0.13120024,0.5619531,-0.29287142,0.08292891,0.77594864,-0.34635752,-0.122746326,0.1957783,-0.07461064,-0.36236483,-0.0057201213,-0.13438651,0.08247779,-0.51088005,-0.1749604,-0.35757297,0.5944252,0.08061727,-0.5516636,0.36099213,-0.47464803,0.2819126,-0.03764221,0.6845449,0.82340133,0.59375095,0.3516725,0.88500845,-0.07901222,0.17376302,0.064212374,-0.4428988,0.17613831,-0.5369817,0.14832652,-0.5612176,0.12568595,-0.26694927,-0.20990553,0.053259052,0.5509231,-0.6935129,-0.043638874,0.14644662,0.7585071,-0.28736967,-0.24030903,0.8174612,1.0321901,1.1074201,-0.0025984156,1.4536582,0.5462135,-0.23360205,-0.07894361,-0.47699183,-0.6619869,0.19214995,0.22345884,-0.34508988,0.5178565,-0.042455725,0.03957981,0.3525298,-0.58502495,0.059682317,0.060182896,0.31242862,0.1362501,-0.17211376,-0.3913498,-0.035761748,-0.039884765,0.043836676,0.46512946,0.16046906,-0.32487872,0.5574533,0.15489766,1.1870193,-0.08292329,-0.096348986,-0.14011407,0.39700368,0.2845921,-0.0009193591,-0.0151500655,0.30058178,0.4514276,-0.29305512,-0.53840584,0.19219849,-0.33929893,-0.2438755,-0.30874047,-0.3405049,-0.10093421,0.071919285,-0.20535794,-0.35754436,0.06415995,-0.45053476,0.42621517,-2.3920176,-0.3578898,-0.0910377,0.45408645,-0.21816145,-0.15700594,-0.16598919,-0.74055,0.12002319,0.18432863,0.3890486,-0.7077447,0.52499473,0.47040147,-0.7022278,-0.27535254,-0.7818342,-0.15393779,-0.008660631,0.5453033,0.15673184,-0.12410198,-0.19252001,0.21429572,0.5167184,0.0031356642,0.034937672,0.7020806,0.41521105,-0.029645149,0.4720006,0.25516433,0.79835546,-0.032638993,-0.28132123,0.5574753,-0.28260934,0.36883974,-0.20677374,0.052508503,0.64966995,-0.19394922,-0.91197693,-0.7231423,-0.21898797,1.1460103,-0.3968074,-0.5561401,-0.030862851,-0.2099096,-0.24364087,0.15282877,0.61005634,-0.12454431,-0.06537421,-0.81854045,-0.07118465,0.082376495,0.3299136,0.032521475,-0.08902215,-0.3283201,0.72991997,-0.15521368,0.51720566,0.018709186,0.46022987,-0.27836245,-0.55915755,0.24126129,1.0293075,0.41344315,-0.11478516,-0.23283848,-0.368786,-0.17535408,-0.1794137,-0.0027485234,0.540548,0.6709609,-0.14197038,0.055116024,0.41388783,-0.12831919,0.08410905,-0.29626375,-0.19613752,-0.026347263,0.060413886,0.41060185,0.89899397,-0.1438873,0.59185225,-0.37273794,0.39519352,0.11684024,-0.88276833,0.84567505,0.77452093,-0.22282699,-0.19747661,0.49995762,0.14907077,-0.59639996,0.6114254,-0.70973593,-0.3542958,0.70465535,-0.13613544,-0.3513708,0.24340929,-0.25061098,0.3737028,-0.86231846,0.4099452,-0.2570779,-0.362379,-0.5437896,-0.04353645,-3.1556756,0.09974488,-0.11966451,0.0046620327,-0.31758186,-0.0644881,0.23811135,-0.47855377,-0.70960635,0.0922742,0.2891528,0.7203246,-0.09629305,0.15877107,-0.11257966,-0.37105268,-0.17896883,0.1823679,0.086954035,0.43877348,-0.26381397,-0.47987846,0.069714285,-0.09417973,-0.46166497,0.06799422,-0.7073221,-0.54748446,-0.17001812,-0.424089,-0.20821716,0.6657731,-0.4706619,0.039242394,-0.5000986,0.20991956,-0.09078692,0.16643417,-0.055038225,0.104280114,0.27515396,-0.021481927,0.1694589,-0.16548122,0.48308566,-0.08520192,0.27945405,0.34701523,0.061094794,0.32467794,0.55536723,0.78275216,-0.22445242,1.0295669,0.4180096,-0.10943239,0.19037355,-0.09350947,-0.41806737,-0.6221811,-0.32055417,0.011535555,-0.52909243,-0.36273023,-0.03109302,-0.33695868,-1.0420599,0.5958633,0.066900276,0.40340668,-0.055586945,0.3663545,0.6038156,-0.016777862,0.07398624,-0.15633266,-0.37135682,-0.46838713,-0.3200283,-0.67951256,-0.60264736,0.13460931,1.0554838,-0.47898215,0.08197888,0.05983197,-0.45141673,0.05339806,0.29448563,-0.09587283,0.28844267,0.5928677,-0.052955117,-0.6463247,0.28734133,-0.10455235,0.07147876,-0.6244008,0.22023334,0.7724792,-0.8229731,0.4070407,0.40411615,-0.09806715,-0.14276823,-0.38910553,-0.074139886,-0.0793337,-0.11394034,0.50743955,0.17150936,-0.56471634,0.4697594,0.13175622,-0.4309257,-0.83915937,0.23526695,-0.13234656,-0.023862375,-0.039068777,0.3615252,-0.005150432,-0.0781809,-0.36609942,0.05218676,-0.35577652,0.28593388,0.27765876,-0.0532269,0.04640222,-0.123485744,-0.46968898,-0.88127106,0.0468843,-0.55876476,-0.23759244,0.16539453,0.16762713,0.1330622,0.08947947,0.24204819,0.48148617,-0.34317008,0.07638886,0.023295853,-0.44814116,0.2501488,0.48890516,0.3233653,-0.4435091,0.49995467,0.11559454,-0.33718663,0.13997217,-0.10512867,0.59831154,0.11050038,0.3610304,0.24353442,-0.0010650924,0.23947704,0.6606902,0.0019293173,0.50483435,0.04647716,-0.25403664,0.30442467,-0.056714006,0.39941838,-0.17001006,-0.49199697,0.07324767,-0.048436157,0.17898151,0.549083,0.38842985,0.39234433,0.16512394,-0.26936808,0.016516423,0.02491859,-0.067226194,-1.5885847,0.2996669,0.3587154,0.93823516,0.35347515,0.015170069,-0.073128626,0.7363321,-0.3684686,0.17983733,0.4688953,0.046107568,-0.43441626,0.5526419,-0.805416,0.41939792,-0.057587285,-0.019349469,0.109958,0.26355308,0.23278114,1.0229714,-0.38565,0.049574427,-0.106408514,-0.11130159,0.07560759,-0.32534647,0.15317467,-0.44043747,-0.60508806,0.86248434,0.3094229,0.45612168,-0.27695435,-0.01696174,0.042610835,-0.30105528,0.41352683,-0.061365597,0.09718013,-0.026130872,-0.51507455,-0.033299875,0.4697511,-0.15056607,0.13851462,-0.08536003,-0.20769031,-0.086862735,-0.1591537,0.04579411,-0.13781554,-0.6594072,-0.31265035,-0.08919033,-0.4962099,0.6063317,-0.06449095,0.15070307,0.28942418,-0.060383867,-0.20628786,0.25216216,0.13648777,0.70053,0.28103423,-0.12457738,-0.35511777,0.3015752,0.32905814,-0.30998713,0.28489324,-0.2132624,0.2416874,-0.5190252,0.72230643,-0.31652954,-0.55289805,0.09184395,-0.31549692,-0.025663001,0.44989404,-0.25686142,-0.24469344,0.21657448,-0.22480714,-0.27695936,0.021741936,-0.27153185,0.08552464,0.36268568,-0.22234908,-0.31996462,-0.3129162,-0.118679285,0.5014943,0.02186881,0.4231808,0.45308608,-0.08719741,-0.38297918,0.11444599,0.35651973,0.49280256,0.19832094,-0.2147392,-0.5753241,-0.40830612,-0.4466551,0.27586183,-0.06226572,0.046192296,0.06019978,-0.3726557,0.8354787,0.105109826,1.4252121,0.09880788,-0.36296198,0.20619938,0.6813239,-0.03376951,-0.027829597,-0.5050135,0.81745625,0.48595557,-0.15018591,-0.036095995,-0.7375699,-0.11171552,0.43515295,-0.41703674,0.027107997,-0.08765215,-0.7123496,-0.5494036,0.22714141,0.18306446,0.09863419,-0.13930377,0.23585667,0.13849768,0.05259948,0.3886444,-0.6436812,-0.19494681,0.31261355,0.13937935,-0.22821738,0.21064162,-0.442903,0.45194992,-0.75718886,-0.03929344,-0.33200523,0.053104836,-0.1281224,-0.33448544,0.23679294,0.19472957,0.14936766,-0.5006662,-0.5303235,-0.2546975,0.61261123,0.055685215,0.09285259,0.5782808,-0.4042699,-0.08201929,0.17738162,0.56082875,1.4631792,-0.33944175,0.15010728,0.22350018,-0.4549275,-0.59386057,0.45469385,-0.44884565,0.091014646,-0.17174338,-0.5180299,-0.61763006,0.30130357,0.10023614,0.19248255,0.24706276,-0.5026784,-0.17456438,0.23446487,-0.4679406,-0.13672975,-0.16467895,0.17887463,0.52063966,-0.38838643,-0.45356116,0.12674902,0.37106076,-0.35941964,-0.36836213,-0.15225145,-0.16670656,0.38496956,0.13620973,-0.4247559,-0.0909325,0.11106556,-0.5728621,0.09468741,0.34618288,-0.37615186,0.11356642,-0.2618569,0.07627376,0.7942744,-0.31549573,0.07322932,-0.6167807,-0.48906103,-0.87332165,-0.2645503,0.029899612,0.11995559,-0.23823701,-0.6642407,-0.076146185,-0.235131,-0.06515025,0.23792514,-0.65094054,0.42021975,0.2365175,0.38319737,-0.36147484,-1.1125528,0.14395793,0.03488756,-0.21224472,-0.69260705,0.63561535,-0.1354967,0.792954,0.18025868,-0.015222154,0.020042721,-0.4667401,0.21152286,-0.34093556,-0.1678462,-0.73658186,0.11051685,287 -405,0.49559793,-0.11373223,-0.43251136,-0.14632963,-0.19897531,0.1493433,-0.16161463,0.49467295,0.21335606,-0.3100244,-0.035734028,-0.0012670329,0.055348404,0.22561404,-0.2659019,-0.63015425,0.019281594,0.0051161083,-0.31034514,0.35541645,-0.4889539,0.4937868,0.120557986,0.2594861,0.014615297,0.2531416,0.37696117,-0.1823827,0.19283812,-0.3468216,-0.18476507,0.27771953,-0.6760337,0.052805755,-0.08297432,-0.33380178,0.15654291,-0.196849,-0.24890949,-0.70695287,0.19987358,-0.7200495,0.63136375,0.13626851,-0.28433168,0.29820538,0.20393656,0.22798201,-0.20247124,-0.03076649,0.04062127,-0.19817127,-0.06957984,-0.21238755,-0.10605942,-0.45861274,-0.5532597,-0.051805634,-0.44425684,-0.12924418,-0.29716936,0.086123586,-0.33037302,0.05077682,-0.033772733,0.31115595,-0.42724174,0.061473858,0.2707785,-0.13760833,0.37149334,-0.5713853,-0.09123856,-0.15476856,0.21524541,-0.13390042,-0.21517403,0.22128525,0.39055124,0.56107074,-0.08021581,-0.19441639,-0.32442123,-0.31274682,-0.03828237,0.5767865,-0.24563535,-0.4302156,-0.15427032,-0.056905396,0.2552692,0.23315422,0.06837045,-0.09321286,-0.15945767,0.08608242,-0.37275797,0.47475287,0.493046,-0.5315599,-0.36268464,0.2633449,0.5374996,0.0070267576,-0.122400224,0.031517345,0.024978843,-0.52395946,-0.123741336,0.021772478,-0.18348482,0.4670991,-0.19471033,0.14469203,0.71549785,-0.29447335,-0.043770473,0.24669476,0.07231972,-0.03955832,-0.19741575,-0.26448476,0.21899624,-0.7420969,0.0325995,-0.355331,0.96096814,0.15581012,-0.6456142,0.32126206,-0.5443036,0.123727955,-0.16397044,0.57789105,0.64949507,0.4483924,0.25643232,0.76499516,-0.5145624,-0.0297458,-0.033858683,-0.34106568,0.3060736,-0.16569725,-0.12356111,-0.4569246,0.05571843,0.17092085,0.12655547,0.20171228,0.2941441,-0.6489216,-0.1290385,0.18374364,0.7485425,-0.32819057,0.025752353,0.6554703,0.999788,0.9271771,0.034458604,1.1994021,0.10633632,-0.27713546,0.13803421,-0.1134945,-0.78849024,0.18093033,0.29402837,-0.0053070104,0.1353151,0.12762192,-0.0099110175,0.2870932,-0.4132059,-0.16854444,-0.19052537,0.42511886,-0.0011820793,-0.02961742,-0.40785095,-0.33238402,0.033334296,0.017514799,0.15028702,0.3633521,-0.1991059,0.4534605,0.08089125,1.184954,-0.048204456,0.14738706,0.14780799,0.45956588,0.31159446,0.011529527,-0.07427903,0.26392698,0.43793032,0.28059813,-0.63937026,-0.0054347515,-0.15766008,-0.3604595,-0.14120078,-0.45003906,-0.05236817,0.07005864,-0.3279679,-0.21893823,-0.16126074,-0.22924638,0.5217735,-2.7134535,-0.05340432,-0.12782297,0.25414175,-0.16573699,-0.29088378,-0.19235066,-0.53722006,0.50292104,0.30555424,0.46586803,-0.6760492,0.24054913,0.46289274,-0.40108013,-0.17830695,-0.70742077,-0.18725054,-0.124459304,0.27575555,0.13207015,-0.15064205,-0.21220478,0.34838858,0.5934897,0.0870567,0.04210645,0.16233842,0.28705075,-0.028459022,0.5672194,0.071788825,0.62280416,-0.20214607,-0.23542754,0.35428736,-0.25265628,0.25253576,-0.19317491,0.08760232,0.3394003,-0.42750576,-0.99726963,-0.7708782,-0.07893306,1.2655901,-0.3192043,-0.33954844,0.22314608,-0.37049556,-0.1877811,-0.13034609,0.30113605,-0.12573169,0.0063122935,-0.67301184,0.14948596,-0.029858215,0.17508109,0.014185028,0.046517346,-0.40059167,0.6772412,-0.15613471,0.42476994,0.27316928,0.18544759,-0.23997341,-0.5780652,-0.07400101,0.96696204,0.4822375,0.04115349,-0.10708048,-0.28444225,-0.2819923,-0.023886519,0.08000682,0.5622774,0.82529056,-0.08609391,0.11228982,0.2543818,-0.12422037,0.091734886,-0.041907568,-0.3813314,-0.03668482,-0.16626248,0.67413586,0.5712504,-0.10466761,0.3266481,-0.012042574,0.4735229,-0.10736205,-0.5195378,0.51404935,0.87177914,-0.19922283,-0.22600631,0.73418945,0.4611109,-0.23605064,0.50375634,-0.68873066,-0.37401035,0.5238337,-0.14439689,-0.39307433,0.18632606,-0.36508408,0.09811846,-0.89398426,0.34611246,-0.37091365,-0.34721714,-0.3409373,-0.08670441,-3.940368,0.16687752,-0.35935575,-0.009286122,-0.1841316,-0.0641621,0.35183525,-0.5677574,-0.4654949,0.21680741,0.14679888,0.7035624,-0.04340321,0.0024035317,-0.26063493,-0.364669,-0.32624382,0.1935652,0.16040935,0.12904757,0.0047823107,-0.36602068,0.114143915,-0.17081808,-0.38873076,0.08726305,-0.33293846,-0.6357069,-0.07085544,-0.38170835,-0.49529272,0.7239719,-0.39081234,0.12608312,-0.108387336,-0.03946308,-0.08708911,0.18551458,0.080497146,-0.050483577,-0.056719482,-0.06402897,0.03356753,-0.42926288,0.40101403,0.05595416,0.29468337,0.23052692,-0.12873766,0.064186715,0.65792435,0.4035121,0.032985147,0.89427215,0.44678932,-0.101967104,0.24703288,-0.22984947,-0.30541328,-0.48579663,-0.3075293,-0.09529705,-0.4090558,-0.26045904,-0.014006759,-0.3781653,-0.7647627,0.5894252,0.010227263,0.12857254,-0.19146974,0.4710957,0.41553995,-0.12307893,0.028032554,0.06762308,-0.2480375,-0.5818353,-0.123690665,-0.73036057,-0.36583576,0.13080779,0.9977604,-0.4565454,0.037647437,-0.08627759,0.04401403,0.17246202,0.17388631,0.13631111,0.2678475,0.52089596,-0.051225927,-0.73280567,0.4838886,-0.25378242,-0.16902302,-0.80810845,0.16862348,0.5089501,-0.86611575,0.3332495,0.5090997,0.02905025,0.050080784,-0.5674138,-0.14508176,-0.095364995,-0.30533788,0.43593344,0.20178351,-0.7864422,0.4676523,0.29279825,-0.13468574,-0.627346,0.5907201,-0.04699189,-0.35415015,-0.048149038,0.38248554,0.31306913,0.101308405,0.020242456,0.18546377,-0.44973344,0.27846318,0.116864935,-0.10130644,0.50110257,-0.19377318,-0.10030768,-0.7212429,-0.028205799,-0.6380494,-0.2791851,0.100414865,0.053263962,-0.019127253,0.29641765,0.09172546,0.51800066,-0.33210462,0.088900685,-0.008550972,-0.34199807,0.62782663,0.48711523,0.4178056,-0.26347128,0.59374154,0.06703191,-0.0947328,-0.0550575,0.07076784,0.57627434,-0.039179724,0.45336014,0.013785276,-0.17490701,0.29675832,0.6732544,0.11506377,0.24708359,-0.039851554,0.0015737755,0.2756982,0.11487353,0.0052245515,0.28697178,-0.41382402,-0.21505383,-0.12306295,0.08021646,0.5653412,0.27264687,0.32983845,-0.10400404,-0.23886026,0.07743056,0.0054281824,-0.11269287,-1.1116968,0.37416738,0.0636378,0.6023516,0.46024424,0.0017942765,-0.022276713,0.5546842,-0.22784102,0.06954878,0.27539405,0.14331968,-0.24121179,0.5955606,-0.8091701,0.5982314,-0.09666278,0.0018714517,0.036739793,-0.12573513,0.3366759,1.0765182,-0.083498135,0.025806189,-0.005654884,-0.34972993,0.2776688,-0.40438884,0.043469615,-0.5514402,-0.14042959,0.6887311,0.3643449,0.36079717,-0.099883236,0.026071284,0.107262634,-0.12053519,0.22568364,-0.057168074,0.084020965,-0.1337264,-0.46222273,-0.18008794,0.5694718,-0.05825654,0.16200992,-0.11608183,-0.1438658,0.36051208,-0.10331617,0.038586617,-0.13465212,-0.53250694,-0.038775157,-0.29473755,-0.3539393,0.61096746,-0.35715553,0.26983255,0.30209413,0.111229606,-0.27401915,0.22210124,0.18515134,0.54665965,-0.16134048,-0.22649248,-0.4269441,0.0770527,0.08951255,-0.15783063,-0.06939819,-0.39662462,0.2511279,-0.64427316,0.31911302,-0.20703506,-0.28802705,-0.052243233,-0.17298543,0.01631249,0.52668566,-0.1958755,-0.09264374,-0.06608613,-0.28784016,-0.18444017,-0.28217086,-0.13548689,0.12296073,0.15495324,-0.097873494,-0.05212333,-0.4451458,-0.18079512,0.263612,0.04537761,0.34195575,0.23333934,0.07312072,-0.257888,-0.073168345,0.10673002,0.3543063,-0.24788664,-0.07308253,-0.35270172,-0.58922404,-0.22145617,0.27012274,-0.16884777,0.29238325,0.0077830814,-0.23176575,0.7252537,-0.061948456,0.98234284,-0.0049935924,-0.33697006,-0.06697873,0.7159947,-0.14585164,-0.067672916,-0.21299423,1.0038955,0.5832491,-0.24431539,-0.17563811,-0.35849133,-0.07624823,0.15586875,-0.21197882,-0.06810522,-0.020141179,-0.58172405,-0.20887966,0.23239926,0.3206373,0.21396813,-0.0028802922,-0.02994141,0.1642343,0.076360054,0.31038398,-0.46967396,-0.10292588,0.2554158,0.29040736,-0.00208503,0.12332169,-0.44662005,0.36532912,-0.41633496,-0.03784791,-0.32926163,0.11221717,-0.21432444,-0.2819798,0.28735036,-0.0423257,0.32543054,-0.28439352,-0.41646835,-0.14249495,0.37123448,0.19110966,0.1548468,0.59463114,-0.2531231,0.032375075,-0.071269855,0.53681135,1.21333,-0.19227734,-0.19524609,0.32789034,-0.32766122,-0.49686003,0.14225137,-0.38151416,0.10971129,0.053965945,-0.29098812,-0.4258608,0.25882098,0.22954284,0.15358911,0.19397675,-0.6161637,-0.28499898,0.1439279,-0.34807822,-0.26937792,-0.31507906,0.1480156,0.67362297,-0.27785853,-0.057794858,-0.018146308,0.31891632,-0.16522683,-0.6962818,-0.08986782,-0.3493239,0.3514214,0.2506736,-0.3485396,-0.018961983,0.0987244,-0.46628904,0.15995231,0.36719704,-0.2875555,0.049794454,-0.33210054,0.11592233,0.75685483,-0.16861632,-0.008444203,-0.45143026,-0.38255662,-0.7935335,-0.23466666,0.6262702,0.22172062,0.07367506,-0.50293285,-0.10099159,-0.1129602,-0.0059638917,-0.08813892,-0.43153545,0.5447985,0.10112857,0.346539,0.018558612,-0.96264726,0.1228373,-0.053889584,-0.18516555,-0.6271497,0.5927741,-0.16614139,0.7955293,0.29593596,0.0008276999,0.3807612,-0.42047504,-0.013684788,-0.23857678,-0.20151846,-0.8035348,0.0180778,289 -406,0.28159493,-0.09008052,-0.35851988,-0.21859573,-0.10078015,0.23898748,-0.18357746,0.3516666,0.09668987,-0.56820714,-0.019168606,-0.1278969,0.1164482,0.3507708,-0.24197449,-0.5357297,0.120787084,0.047414757,-0.37454623,0.15120907,-0.5220246,0.22927365,0.003119605,0.20816305,-0.0006581332,0.1628466,0.27488083,-0.25984448,-0.15970114,-0.30271927,-0.19240855,0.18072847,-0.5028818,0.06531618,-0.04432589,-0.17477274,0.14285776,-0.48105127,-0.5013755,-0.5970926,0.27828833,-0.91347283,0.62874633,0.00090426207,-0.10880363,0.38980743,0.093047164,0.0608647,-0.15490015,0.07567094,0.18637218,-0.2744761,-0.106384926,-0.028374646,-0.4067927,-0.56203526,-0.6306978,0.045597296,-0.52056354,-0.12944305,-0.40047255,0.14671738,-0.33881783,-0.05925181,-0.19373994,0.31669328,-0.2995933,-0.18483952,0.13360766,-0.16188143,0.35010123,-0.5831303,-0.21922424,0.1259298,0.26989725,-0.14875256,-0.049837563,0.2915499,0.28474465,0.5406626,-0.0038598967,-0.2557019,-0.309359,0.018738836,0.12141699,0.66684437,-0.19519925,-0.458381,-0.13882552,-0.008974472,0.166322,0.3088984,0.08747179,-0.28275964,-0.18722706,0.28707513,-0.3818756,0.427995,0.58662933,-0.405123,-0.16522779,0.45351568,0.20728591,0.13441911,-0.013877236,0.008022721,-0.014260556,-0.6051206,-0.16549538,0.22904478,-0.08895826,0.5286153,-0.12083026,0.44143218,0.6807102,-0.10177684,0.1600986,0.1261937,0.0046893912,-0.058544833,-0.143206,-0.07099415,0.12402581,-0.52669615,0.16951783,-0.26434568,0.8973502,0.1302907,-0.78422123,0.45248127,-0.4042398,0.107982114,-0.115800224,0.47726837,0.48542595,0.4724919,0.1539775,0.7567247,-0.63907725,-0.04376089,0.060177367,-0.4872165,0.13517565,0.025250385,0.10182587,-0.39450955,-0.07508711,0.17736228,0.14818919,-0.09019042,0.4200762,-0.4413816,-0.07643998,0.19283223,0.83031553,-0.31757173,-0.076601684,0.5540642,1.0984724,0.8946497,0.049140964,1.254482,0.20022568,-0.104009405,0.11268098,-0.11980418,-0.68723506,0.31014326,0.40477154,0.22942089,0.16366927,0.08687939,-0.050343554,0.3734261,-0.29195827,-0.11448509,-0.24029104,0.26575536,0.13110422,-0.21113935,-0.41911158,-0.26900706,0.0051169395,-0.08042187,0.26862928,0.10690861,-0.12177974,0.24082412,0.088424526,1.4361693,-0.15254669,0.1810743,0.0775616,0.55343276,0.17528065,0.09232623,0.041913185,0.16697733,0.4881063,-0.015613275,-0.57971424,-0.13033918,-0.23868275,-0.5025602,-0.124535285,-0.3012991,-0.1366492,-0.04695389,-0.46447513,-0.17720489,0.034138154,-0.43791193,0.73673683,-2.8819296,-0.10894305,-0.19264719,0.46314567,-0.22694276,-0.36805624,-0.054473843,-0.47802782,0.68227875,0.35112837,0.41383025,-0.6185179,0.43797466,0.4703009,-0.23008525,-0.1661167,-0.7749143,-0.04395271,-0.05057172,0.23813546,0.12573239,-0.33309975,-0.14853965,0.040322166,0.5594502,0.050457064,0.047506742,0.1467336,0.3885239,0.0024534464,0.52157307,-0.07397159,0.57425886,-0.2131667,-0.031336162,0.20886435,-0.3826352,0.30008307,-0.16429043,0.22180167,0.35037965,-0.29533592,-0.81300557,-0.5851313,-0.35586438,1.182286,-0.1305394,-0.3572171,0.3558516,0.017574744,-0.28870004,0.036054287,0.46811506,-0.1655879,0.011654821,-0.61834323,0.029440213,-0.093197025,0.075667806,-0.12590034,0.11825864,-0.5521257,0.72774726,-0.18843417,0.48767924,0.27689156,0.28918192,-0.21117125,-0.3819138,-0.1336442,0.77149,0.29592016,0.07653821,-0.172819,-0.27016824,-0.19288097,-0.27662948,0.025862062,0.50153816,0.7552768,0.0735405,-0.014104477,0.22639771,0.016623374,0.017674077,-0.07445582,-0.34109685,-0.12797607,-0.14758042,0.62788314,0.3794501,-0.08001893,0.34908107,-0.2253935,0.20848104,-0.32028988,-0.3933101,0.5169257,0.56216973,-0.21678734,-0.1866807,0.5380441,0.35748428,-0.17215298,0.33532792,-0.704012,-0.38423726,0.57617587,-0.24118617,-0.5670281,0.08663372,-0.23493831,-0.059201177,-0.81580955,0.44260755,-0.21581472,-0.6529433,-0.27505523,-0.26076037,-3.9576268,-0.001063878,-0.28487897,-0.16662642,-0.15573423,-0.19911538,0.3131079,-0.5132001,-0.3652002,0.11435998,-0.049233735,0.55269516,0.09612893,0.094597384,-0.32861423,-0.016824761,-0.46845165,0.20649482,-0.08630215,0.2452676,0.06188928,-0.20308979,0.1953109,-0.3187576,-0.5418849,0.15770392,-0.6512435,-0.40493384,-0.13433294,-0.40685442,-0.4300765,0.69944984,-0.41348234,0.10264344,-0.3318487,0.15425776,-0.33946735,0.47306064,0.08280705,0.15274382,-0.115098976,-0.14520833,0.07112529,-0.3128939,0.4343597,0.037403848,0.38637713,0.44481784,-0.1657233,-0.04231255,0.42131805,0.54437196,-0.008756825,0.8042405,0.28345123,0.012635767,0.3697048,-0.24429901,-0.23280147,-0.5063557,-0.47941834,0.18935147,-0.3851095,-0.37764832,-0.2144657,-0.28090936,-0.62469834,0.39832634,0.029927135,0.20054182,-0.063236274,0.069307394,0.39663714,-0.15228476,-0.06045092,0.080770895,-0.008482941,-0.33507124,-0.25994736,-0.6723104,-0.4723104,-0.0018891181,0.7402555,0.019478107,-0.16919883,0.072154514,-0.19969606,0.09432536,-0.047817267,0.102845386,0.050721783,0.29593238,-0.014854844,-0.81742054,0.44311878,-0.27732217,-0.1352503,-0.647072,0.12403465,0.5496348,-0.5702459,0.59054035,0.443473,0.25978082,-0.10738169,-0.52528965,-0.3117974,-0.12370287,-0.19437993,0.404428,-0.026710808,-1.0040817,0.595565,0.3858962,-0.3406918,-0.4979692,0.45907837,0.0780082,-0.04471161,0.08898073,0.3164452,0.08863737,-0.012602457,0.011625767,0.23439194,-0.6638881,0.48521775,0.32187372,0.14753316,0.57010627,-0.107427895,-0.11324309,-0.45670447,-0.24451229,-0.40877393,-0.12432181,-0.0060533327,-0.04466185,0.12497131,0.15492404,-0.09849975,0.42115492,-0.40830997,0.12672964,0.00946968,-0.19341592,0.34050146,0.4842151,0.3582224,-0.3008688,0.5817066,-0.0019252513,0.020290038,0.035262804,0.05190434,0.53376156,0.22101323,0.29383233,-0.13406713,-0.21779068,0.23111169,0.8832313,0.12255459,0.49921027,0.21257319,-0.1400472,0.23456414,0.10648275,0.052815277,0.17411225,-0.44803324,-0.09862779,-0.117552586,0.07305263,0.4904871,0.09160062,0.27864915,-0.09359776,-0.08777741,-0.034111984,0.11027121,-0.15395604,-1.0430405,0.3748143,0.12796481,0.70518607,0.20298554,-0.063527055,-0.06140862,0.61267394,-0.08260205,0.0865683,0.17917177,0.09500033,-0.566915,0.63236696,-0.57716423,0.34144622,-0.12660518,-0.07025321,0.022887895,0.06728102,0.33442068,0.8617431,-0.13432018,0.07911412,-0.08034929,-0.30619553,0.3347652,-0.3002247,0.18405107,-0.3145619,-0.15302838,0.606638,0.46027136,0.38173747,-0.17100349,-0.116270594,0.06834028,-0.09395611,-0.005945844,0.009307138,0.07530505,-0.14232664,-0.6948666,-0.3677426,0.41769674,0.19628641,0.19745357,0.10172141,-0.30410868,0.2645521,-0.33821052,-0.007836009,-0.03744602,-0.66390115,-0.033902735,-0.255725,-0.4884103,0.06407445,-0.22347435,0.30104575,0.2445388,0.03918148,-0.11303656,0.22581883,0.26757917,0.8502823,-0.065813035,-0.2340513,-0.5651774,-0.18371223,0.19380221,-0.2459211,-0.1685284,-0.31863362,-0.11587211,-0.59024537,0.1809326,-0.124523364,-0.11046847,0.37354198,-0.18331674,-0.049408674,0.5823804,-0.2403181,0.009062929,0.017719997,0.0053043193,-0.17012219,-0.13549812,-0.07277884,0.13978282,0.14212601,-0.0649911,-0.03183334,-0.18295597,-0.123145275,0.25505295,0.18427214,0.28308755,0.46825314,0.16393313,-0.32718673,-0.24234952,0.056115743,0.6532022,0.118226536,-0.05754108,-0.32717386,-0.51398444,-0.21747205,0.14578208,-0.10151972,0.26511246,-0.007017312,-0.30785307,0.59882355,-0.09615673,0.98359096,0.15641172,-0.32116106,-0.058487836,0.63857454,0.03472957,0.031402882,-0.3772624,0.82751364,0.4320615,0.025377512,-0.0844715,-0.3642068,-0.056342877,0.34224898,-0.29740575,-0.19224122,-0.1782392,-0.7390518,-0.2573679,0.2500554,0.11592059,0.093617186,0.032981582,-0.06013627,0.30659795,0.15659787,0.5810541,-0.57502204,-0.0569784,0.2816394,0.28021207,0.028255804,0.21593009,-0.38150004,0.31791434,-0.52768487,0.12078724,-0.23236938,0.1083781,-0.08306318,-0.10263574,0.31005576,0.004593747,0.4437932,-0.1572891,-0.36286116,0.09740623,0.42327628,0.22792499,0.31828958,0.69301844,-0.12224346,-0.067615405,0.04438894,0.61223215,1.1193997,-0.16454005,0.1971518,0.57772404,-0.28916326,-0.69031906,0.30040187,-0.3368182,0.12303931,-0.08645504,-0.23538947,-0.2150272,0.29614273,0.29217187,-0.0049091107,0.16713245,-0.526344,-0.40374848,0.49994668,-0.21093185,-0.23787113,-0.3483306,0.16056572,0.6515413,-0.29694393,-0.049743406,0.03226674,0.36464277,-0.15899189,-0.5570212,0.11822719,-0.33183494,0.3177788,0.06884616,-0.33749261,-0.04174963,-0.13865288,-0.3731542,0.24424338,0.055614945,-0.39405584,0.070377536,-0.19133507,-0.04234932,0.6644951,-0.13782038,0.10584477,-0.83728284,-0.4341419,-0.8475522,-0.401465,0.24365583,0.15210922,-0.13151179,-0.36371145,-0.18200795,0.06965122,-0.00011745521,-0.05445722,-0.40836263,0.35044903,0.040066738,0.44681388,-0.021000383,-0.5412161,-0.015513952,0.026568536,-0.25040138,-0.38917205,0.65636665,-0.21858136,0.7423674,0.09723462,0.0909271,0.10189156,-0.41505864,0.16337214,-0.25621024,-0.18487266,-0.71364087,0.12533066,293 -407,0.2574934,-0.40114927,-0.77438706,-0.03504726,-0.33789095,0.092737235,-0.34906378,0.23692551,0.21962139,-0.27409583,-0.3648786,-0.014192308,0.12662297,0.3882135,0.0045804554,-0.48382878,-0.060538914,0.2931175,-0.75319475,0.5086504,-0.53058285,0.27307153,0.15130024,0.44241977,0.22822942,0.29712185,0.24937762,0.053641077,-0.042126685,-0.07424921,-0.032009523,0.23643814,-0.5334531,0.08907193,-0.35862565,-0.32458353,-0.14958099,-0.47805473,-0.2697077,-0.7488908,0.07022079,-1.1014557,0.5463216,-0.11748702,-0.29842052,-0.14080156,0.39690405,0.37437645,-0.29840806,0.1389512,0.16076262,-0.34012797,-0.43123683,-0.34093815,-0.18306005,-0.3481762,-0.4192806,-0.014831379,-0.5124149,-0.07694914,-0.1822489,0.23271534,-0.25045964,0.07515186,-0.19593203,0.23649254,-0.54117423,-0.058536027,0.37012318,-0.28428286,0.27058896,-0.5792419,-0.06867781,-0.16877249,0.5400511,0.07465552,-0.49354213,0.29403993,0.36440834,0.46758467,0.2324978,-0.24986982,-0.27855515,-0.09425471,0.36036614,0.52988786,-0.025905404,0.02015287,-0.3654154,0.0656187,0.4386813,0.4555928,0.08034242,-0.28776976,-0.18160424,-0.22993703,-0.015977442,0.27237156,0.5191483,-0.1223471,-0.38885233,0.25747535,0.72541136,0.4033931,-0.35788226,0.068118855,-0.050912607,-0.5309242,-0.12410446,0.12461164,0.050240915,0.45443574,-0.19717948,0.13290395,0.7333979,-0.042614136,-0.1163406,0.0429401,-0.008304582,-0.22036944,-0.35969862,-0.18237598,0.23529471,-0.5692482,0.13837908,-0.34705427,0.43749857,0.15743734,-0.5308755,0.36060518,-0.5812898,0.24514484,-0.034506846,0.612405,0.78340876,0.47949415,0.33564398,0.83048725,-0.2077731,0.14030379,-0.20487364,-0.28735456,0.06982272,-0.37741783,0.027869496,-0.44935623,0.21074308,-0.26415995,-0.0024713385,0.14270958,0.5640931,-0.4377261,-0.14161669,0.2171431,0.6230294,-0.3301318,-0.074474216,0.91625416,0.85208213,1.1702635,0.10129457,1.2879229,0.24593528,-0.20251353,-0.14016365,-0.11022017,-0.61874133,0.24570091,0.35993713,0.33312592,0.32510272,-0.09250051,-0.067958824,0.55760956,-0.48119885,-0.010531821,-0.04441179,0.03130447,0.15587957,-0.21395577,-0.49024534,-0.18688706,0.009827948,0.16849415,0.10631419,0.21295854,-0.20873679,0.55311984,-0.10215696,1.2973393,-0.17970999,-0.048562653,0.17609254,0.24714105,0.20791762,-0.3205492,-0.05582883,0.3067616,0.46290943,-0.056136716,-0.6205133,0.13132705,-0.28461918,-0.4513669,-0.14378966,-0.42162424,-0.2185173,-0.07050633,-0.5434925,-0.18063812,-0.037738297,-0.30111265,0.36237684,-2.4485078,-0.24162133,-0.2703567,0.31408828,-0.21522318,-0.18397579,-0.31997448,-0.48836428,0.26742467,0.19975321,0.4250413,-0.5103517,0.6073242,0.47597286,-0.66578,-0.1302098,-0.74234474,-0.0959236,-0.12126713,0.43006024,0.09983766,-0.1378133,-0.14731121,0.015561023,0.80015934,-0.06985849,0.12583895,0.6485321,0.3695183,-0.08020652,0.55481106,0.058424048,0.682062,-0.51449865,-0.25678638,0.6156525,-0.27726874,0.52454895,-0.1243232,0.035467483,0.60978717,-0.47768328,-1.0278707,-0.6565207,-0.32083926,1.290843,-0.38605985,-0.5433045,0.13584544,-0.53974885,-0.24866602,0.061657343,0.7188172,-0.03536972,0.20512946,-0.80771977,-0.075458124,0.014183735,0.18962774,-0.07148535,-0.09431766,-0.4189756,0.893396,-0.058150087,0.7300393,0.26148826,0.2482809,0.056492202,-0.31473532,0.13216704,0.68390757,0.42645612,-0.077948704,-0.29055294,-0.30207983,-0.13930026,-0.07653308,0.08144585,0.7112337,0.58505976,-0.0894176,0.23265718,0.2887923,0.06049121,0.008998805,-0.33456606,-0.07235477,-0.19332297,0.23396175,0.57728416,0.93526304,0.038904674,0.31106836,-0.3171467,0.48798323,0.08797031,-0.73952436,0.5527817,0.76083046,-0.21366188,-0.12655799,0.615048,0.49690226,-0.34527066,0.5571303,-0.7252892,-0.38363823,0.3222573,-0.2143931,-0.30976906,0.2588778,-0.34218258,0.2728316,-0.806725,0.26366302,-0.35240296,-0.3779169,-0.51816714,-0.15326096,-2.836033,0.2728941,-0.062043965,-0.09299808,-0.3514356,-0.33313295,0.34463856,-0.5265837,-0.6856193,0.13369967,0.16289894,0.7562779,-0.12714483,-0.00957495,-0.27135798,-0.42940864,-0.05116278,0.2069436,0.19877045,0.30077824,-0.35490865,-0.45808345,-0.11767956,-0.17252974,-0.48795423,-0.057695556,-0.6177057,-0.46282068,-0.109795816,-0.27090478,-0.106535956,0.40238214,-0.32557625,0.108314596,-0.20600656,0.13408773,-0.11634755,0.21891038,0.061518285,0.30658373,0.24888577,-0.04554724,0.19697225,-0.13141246,0.36122975,0.0020740617,0.18004027,0.085214876,-0.0873322,0.3410838,0.422991,0.7500806,-0.48607507,1.0948254,0.49896416,0.0037487377,0.20936301,-0.19697778,-0.5132271,-0.6151103,-0.22214015,0.035898115,-0.53425634,-0.48666954,0.12913178,-0.14003573,-1.0077415,0.71197826,0.12528257,0.2993031,-0.032108277,0.23535347,0.5698732,-0.24616316,-0.02203734,-0.016279805,-0.15761553,-0.50194687,-0.45095962,-0.64985895,-0.65407866,-0.20682468,1.0640577,-0.25432104,0.23606814,-0.00051796436,-0.38317034,0.109786525,0.42807177,0.07682405,0.23474249,0.5788045,0.029265797,-0.53843147,0.29917583,-0.087419726,-0.20721881,-0.5022864,0.3054864,0.69534874,-0.7392064,0.63201815,0.42179933,-0.02469239,-0.072138704,-0.6371999,-0.25996608,-0.19703595,-0.25176385,0.69304734,0.28285557,-0.8556137,0.5616544,0.31325048,-0.3914359,-0.7256865,0.37831512,-0.22957219,-0.15454125,-0.09832602,0.3225369,-0.03885574,-0.08075366,-0.19457412,0.13000216,-0.34480554,0.10334621,0.210025,-0.09845669,0.064156845,-0.3427394,-0.22312617,-0.76380587,-0.005107965,-0.5750857,-0.21346201,0.3363541,-0.15042697,-0.06443543,0.074497834,0.1461967,0.38374904,-0.25867823,0.10114422,-0.28858092,-0.53723544,0.26573494,0.48595756,0.34681994,-0.40072426,0.63795936,0.113188215,-0.2835928,0.1584799,0.091559514,0.4124269,-0.038847327,0.4924375,-0.39283156,-0.16799116,0.19162369,0.7809061,0.13948934,0.43771654,-0.04086403,-0.16304709,0.32047248,0.10276377,0.34811562,-0.37355807,-0.3937197,0.05135366,-0.2237805,0.18890692,0.44028282,0.36238006,0.3980034,0.095078655,-0.090891704,0.04867465,0.22886331,0.111608915,-1.2698157,0.48196188,0.2850093,0.94228977,0.48211473,0.03351432,-0.15974028,0.66069657,-0.37107587,-0.08204283,0.40184978,-0.024750974,-0.5105435,0.5167014,-0.801907,0.51514703,-0.16770923,-0.0722267,0.18467672,0.179504,0.5228799,0.86814326,-0.24998224,0.20254381,0.039384935,-0.070897855,-0.0036438128,-0.4047737,-0.14257939,-0.51281345,-0.52343017,0.9973585,0.49372885,0.72592765,-0.30345473,0.027005255,0.05446944,-0.19408022,0.34509674,-0.054428186,0.100004084,-0.03162179,-0.49599904,0.09009819,0.41914526,0.086419456,0.23294571,-0.049836986,-0.50448185,0.12894312,-0.16010126,-0.017213723,-0.18602657,-0.64068305,-0.087572254,-0.37372705,-0.6951278,0.3483474,-0.07043115,0.14217432,0.3600974,-0.033825148,-0.14138037,0.3801458,-0.35895663,1.0718479,0.081044674,-0.15793668,-0.16939114,0.2760717,0.32839605,-0.30630675,0.07359262,-0.39219382,0.24280922,-0.5246528,0.6746708,-0.13171229,-0.66307986,0.3572987,-0.15533777,-0.13185382,0.606308,-0.08143915,-0.22759728,0.17306122,-0.104667716,-0.5145486,-0.1446725,-0.2991574,0.18276943,0.11839918,-0.049387235,-0.23725566,-0.15895943,0.051688332,0.63758713,-0.096976474,0.44334453,0.34568092,-0.06360694,-0.3916235,0.23029968,0.3164995,0.6017216,0.14298327,-0.1289129,-0.40752992,-0.59602255,-0.34833685,0.33165306,-0.08549216,0.24838114,0.05390174,-0.06868007,1.0323819,0.13558623,1.0578755,0.06452019,-0.3597323,0.25539207,0.491484,-0.08437423,-0.12360733,-0.3638642,0.6871579,0.5010651,-0.19469298,-0.049278047,-0.5507328,-0.08551623,0.17382407,-0.42743307,0.07429787,-0.14048325,-0.651245,-0.440095,0.10794226,0.18913524,0.3452757,-0.23924457,0.15117586,0.1460375,-0.06986536,0.2346829,-0.62913334,-0.3387831,0.30351093,0.23233049,-0.44902557,0.076261185,-0.43294358,0.41856557,-0.6064752,0.0052665705,-0.42237917,0.13228868,-0.28253847,-0.4055483,0.17495346,-0.034594245,0.25013158,-0.47321758,-0.20859589,-0.14733705,0.53044647,0.090216435,0.15151401,0.5411631,-0.31811184,0.1383043,0.24904351,0.44411543,1.1432312,-0.5068604,0.029453387,0.30463436,-0.3756102,-0.48504132,0.3516558,-0.49405113,0.098250456,0.052207332,-0.5398807,-0.5837593,0.30928844,0.25413045,0.1705254,0.01600303,-0.59538513,-0.06444395,0.21647267,-0.20876972,-0.14549105,-0.3639059,0.21176393,0.48202488,-0.1430641,-0.3466477,0.0770524,0.21014556,-0.3060255,-0.34191218,0.04658342,-0.23042585,0.30934593,-0.024699867,-0.35615322,-0.056477673,0.06226616,-0.5580017,0.05190865,0.20459047,-0.22812745,0.07978503,-0.328208,0.11100377,1.0072999,-0.34619185,0.06572926,-0.4000366,-0.5550141,-0.96381366,-0.3581104,0.23120198,0.17576577,0.0047146934,-0.5100617,0.13752624,-0.1743082,-0.2740767,0.03388181,-0.38967755,0.37227377,0.10067088,0.5177223,-0.2630598,-0.82982886,0.2693449,0.032383554,-0.17976096,-0.3790421,0.6094846,-0.08614038,0.88142353,0.13763914,-0.0023723927,-0.020015823,-0.4730057,0.19767427,-0.2147173,0.037984896,-0.7775021,-0.17384411,296 -408,0.3355894,-0.2326184,-0.4924815,-0.059564747,-0.37213618,0.1698201,-0.3643512,0.17335132,0.06685799,-0.5151215,-0.20903869,-0.04764578,0.110120125,0.23092507,-0.22731426,-0.4814295,-0.03994267,0.2757024,-0.6655426,0.44379187,-0.58499604,0.37011522,0.18205984,0.26764274,0.09647564,0.27431172,0.19845164,-0.2377238,-0.15738785,-0.23251913,-0.14074714,0.21169834,-0.571058,0.31105322,-0.20869817,-0.27168247,0.018495515,-0.30404034,-0.3297894,-0.686006,-0.0035751483,-1.1061631,0.61179507,-0.15052831,-0.21712087,-0.08103956,0.22005899,0.43699312,-0.3830789,0.034354057,0.34430298,-0.28105074,-0.36755946,-0.38679054,0.027592888,-0.55662286,-0.4393719,-0.014817299,-0.53399765,-0.1652361,-0.246045,0.30626222,-0.28753868,0.015068265,-0.19360164,0.2654892,-0.4904125,0.24726209,0.1698228,-0.087855056,0.059846606,-0.5590325,0.021440575,-0.113307,0.5674556,-0.050069213,-0.2061341,0.3070774,0.3040495,0.34297538,0.319297,-0.2603514,-0.18040206,-0.20635836,0.43636194,0.3364977,0.030830739,-0.12237894,-0.28483286,0.0022065383,0.42549834,0.2869517,0.09125851,-0.28970107,-0.14435539,-0.10341419,-0.13568887,0.45551792,0.51373,-0.09350164,-0.2016717,0.37936512,0.6899978,0.30589983,-0.2703037,0.07651075,-0.00788817,-0.5810848,-0.11211211,0.22426118,-0.034976546,0.4666436,-0.24534525,0.05470107,0.84480447,-0.13771822,-0.010761644,0.08851,-0.008874012,-0.24119666,-0.17660083,-0.24718359,0.12707016,-0.63158923,0.0016943812,-0.3084809,0.70723754,0.19383954,-0.67525476,0.3799902,-0.5708887,0.15210316,-0.044262905,0.7075644,0.6353287,0.48724985,0.20021056,0.78115416,-0.29704767,0.15804747,-0.03773764,-0.41987535,0.11878484,-0.37730727,-0.027701003,-0.43620858,0.04577278,-0.24737413,0.055788748,-0.20380755,0.36697134,-0.46886286,-0.16512199,0.078234695,0.60536563,-0.35371003,-0.031175345,0.7908279,0.9803403,0.95760334,0.19715013,1.3265073,0.37440374,-0.24233203,-0.06910165,-0.20607889,-0.6831727,0.2165149,0.2930029,0.0433796,0.28869286,0.039738264,0.034394655,0.29850695,-0.4530701,0.063655846,-0.12315607,0.30684146,-0.05733483,-0.019952377,-0.35037693,-0.15848505,0.026579244,-0.07771201,0.14122012,0.27981356,-0.17733577,0.40425307,0.18666919,1.155338,-0.23521616,-0.035261318,0.07789817,0.3614597,0.12479039,-0.15372777,0.03903174,0.30063263,0.5166081,-0.0742283,-0.6864892,0.09450424,-0.26928142,-0.43589145,-0.18202348,-0.3004087,-0.2204285,0.019198665,-0.26522762,-0.2123576,0.0039586923,-0.24002817,0.4061303,-2.5867755,-0.20021972,-0.22125337,0.33981332,-0.27097854,-0.20042637,-0.19504389,-0.5468918,0.32046917,0.11895776,0.49554425,-0.61831224,0.46782058,0.56033397,-0.52701634,-0.26544848,-0.7777068,-0.01622725,-0.08694105,0.4355122,0.0010218194,-0.12872575,-0.1295759,-0.15909743,0.6114253,-0.013538863,0.28931442,0.51251894,0.30970407,0.21041285,0.5580883,0.17368463,0.562512,-0.33540383,-0.07420145,0.3926638,-0.33999512,0.5212132,-0.103791,-0.014715989,0.5785926,-0.47407064,-0.6880388,-0.6418677,-0.46382627,1.1790401,-0.47970986,-0.4458005,0.049599458,-0.18045087,-0.02089958,0.12281399,0.5412511,-0.07401274,0.22363342,-0.6428771,-0.014468885,0.0061373883,0.2934601,-0.030035933,0.048350163,-0.32586747,0.8249709,-0.12552999,0.5980993,0.33314785,0.19608475,-0.054508995,-0.39695612,0.14229499,0.83473283,0.35281324,-0.02359583,-0.33974832,-0.36751667,-0.24542464,-0.19637379,-0.0050299005,0.59022486,0.5231942,-0.11263721,0.115675576,0.2351402,-0.18452801,0.09042909,-0.20725559,-0.1986681,-0.09496345,0.11805756,0.49563766,0.74178505,0.010494505,0.58477163,-0.24757667,0.3298315,-0.1466972,-0.55017537,0.6790336,0.568411,-0.19593038,-0.19263199,0.50911236,0.4911274,-0.329909,0.40779,-0.5503997,-0.24659352,0.5129728,-0.094731756,-0.37415388,0.17167197,-0.22164343,0.28915378,-0.8124539,0.34612593,-0.4451738,-0.57084554,-0.6497952,-0.03921432,-2.4687917,0.16958424,-0.16818316,-0.11919304,-0.35893133,-0.17359011,0.41751003,-0.46230003,-0.5975115,0.08693445,0.13318661,0.59186274,0.011373692,0.09468838,-0.21411411,-0.31864598,-0.004365291,0.26614597,0.20909707,0.28201112,-0.3284293,-0.36564532,0.016487226,-0.0150052225,-0.24420953,0.08269478,-0.7345862,-0.4601014,-0.047715545,-0.32461637,-0.26542455,0.6287238,-0.50094384,-0.032028418,-0.12067817,0.18862419,-0.2499963,0.16301778,0.14025305,0.2860627,0.080778755,-0.085058756,-0.11692568,-0.32284942,0.41038474,0.00094960205,0.2553819,0.19559205,-0.0073914686,0.20366554,0.38416848,0.6286689,-0.23509823,1.0471181,0.26684126,-0.08468159,0.12437929,-0.16225179,-0.39601186,-0.58639413,-0.21118459,-0.11571049,-0.42780942,-0.44847247,0.041820187,-0.3064786,-0.923327,0.66975313,0.034521524,0.14613417,-0.043483675,0.28089514,0.46507186,0.013902051,-0.03172842,-0.08671748,-0.1929185,-0.5354034,-0.48275846,-0.788741,-0.45088893,-0.066816464,0.99658644,-0.37150082,0.09035727,-0.0044030165,-0.44528976,0.04412508,0.21520878,-0.090951756,0.11786677,0.5710722,0.061629806,-0.5892224,0.46538037,0.0094826175,-0.08951136,-0.455401,0.18715115,0.80056274,-0.80079097,0.53512233,0.44741172,-0.07017724,-0.098762915,-0.4433293,-0.19932885,-0.04741958,-0.22975914,0.5143844,0.18342128,-0.75151026,0.4028898,0.3269575,-0.30089834,-0.69488937,0.34164256,-0.08049018,-0.16193642,0.078968726,0.3280902,-0.01119713,-0.020251548,-0.23920856,0.15676865,-0.37138408,0.17699698,0.13309285,-0.13799112,0.13037378,-0.1710593,-0.29506832,-0.67197317,-0.041884024,-0.529914,-0.2050101,0.23797262,-0.050408293,-0.0067254007,0.21732616,0.350223,0.40739483,-0.27399823,0.122100614,-0.16582419,-0.37047175,0.30247173,0.52700186,0.28439215,-0.37423548,0.53547066,0.21519646,-0.102797285,0.036065876,0.05706176,0.38171095,0.06977896,0.45478153,-0.16494213,-0.051098492,0.15152396,0.9740786,0.1843016,0.6843775,0.076681614,-0.15776737,0.38739783,-0.013905861,0.4113584,-0.04491925,-0.51760954,0.028351353,-0.038111784,0.22998488,0.30065915,0.17385578,0.45224223,0.058215182,-0.04556399,-0.0110203875,0.16833012,0.13394393,-1.1783918,0.50062466,0.25189954,0.7135804,0.42470798,-0.05013868,-0.09017907,0.7919434,-0.3802041,0.032949988,0.31113175,-0.12201711,-0.45721075,0.6542101,-0.6110802,0.34752673,-0.2524151,0.050223686,0.11331204,0.10431011,0.29012558,0.90086466,-0.1864022,0.05647009,-0.014686857,-0.2282118,0.0590685,-0.27532205,0.07257503,-0.37708268,-0.4405534,0.9107485,0.4225872,0.5872697,-0.26807332,0.07693527,0.12730508,-0.15383494,0.28624663,0.12092667,-0.05628876,0.020465706,-0.48113483,-0.07570501,0.56973684,-0.079804085,0.21462385,-0.1072695,-0.30888787,0.10785627,-0.23655312,0.05232511,-0.14035009,-0.7132266,-0.058230378,-0.38875026,-0.64509696,0.25630507,-0.21817097,0.19999883,0.2744847,-0.11081309,-0.044286046,0.39402086,0.044986766,0.7478658,0.019107888,-0.24020697,-0.22560939,0.15784581,0.34391922,-0.3179129,0.05683881,-0.24377462,0.112084225,-0.5904555,0.458399,-0.28943107,-0.54042935,0.115481116,-0.26231986,-0.07978968,0.5781323,-0.01589721,-0.13783152,0.3461671,-0.1718049,-0.46543822,-0.18620549,-0.25733933,0.19845699,0.3233308,-0.09903454,-0.14416079,-0.28361022,-0.20634425,0.36225381,0.063970014,0.5474159,0.36977932,-0.1497409,-0.24747959,-0.0056345635,0.16994476,0.5389562,0.18303347,-0.07261594,-0.2603746,-0.31922194,-0.302759,0.4003975,-0.048532635,0.18225434,0.08021162,-0.3324118,0.9597495,-0.07540753,0.99931294,0.10008841,-0.28602204,0.099402785,0.5383976,0.026377229,0.046993546,-0.37122226,0.94038063,0.5901819,-0.08767075,0.0965534,-0.65962124,-0.181969,0.34548277,-0.35825655,-0.060173564,0.004464599,-0.56040424,-0.25371736,0.2320234,0.27084696,0.0017095123,-0.08433599,-0.02195275,0.050776813,0.046237532,0.45295197,-0.7514946,-0.18712518,0.27380246,0.12411368,-0.1497371,0.23368104,-0.30421633,0.4103117,-0.69386864,0.19303907,-0.4154911,0.029609805,-0.16462305,-0.28094044,0.14699629,0.007860755,0.24594085,-0.45573017,-0.45490122,-0.262042,0.54887146,0.053651482,0.18416932,0.6175193,-0.2756352,0.024279768,0.23554434,0.5748406,1.097514,-0.37445992,0.008583763,0.3073769,-0.48091513,-0.4837257,0.42773652,-0.4519194,0.015860448,-0.10271426,-0.48929888,-0.47030482,0.28804493,0.2435113,0.19936465,0.12839891,-0.674519,-0.004120352,0.30316684,-0.222865,-0.21398091,-0.0994746,0.21757366,0.56882876,-0.2298403,-0.42548123,-0.11751507,0.23910053,-0.40435055,-0.32310352,-0.0693626,-0.29823455,0.195166,0.0037454118,-0.28025395,-0.021919161,0.24212097,-0.49154612,0.019524649,0.13252269,-0.4092165,0.096644826,-0.2034532,0.11732805,0.7181582,-0.29250792,-0.10123904,-0.5942331,-0.45403233,-0.74456966,-0.38428047,0.07762216,0.2652029,0.12577344,-0.43370232,0.05641997,-0.07301169,-0.18043442,0.1885599,-0.7199716,0.48218897,0.21641873,0.35178298,-0.17589927,-0.9292626,0.17545941,0.03947528,-0.14516154,-0.59136003,0.5509517,-0.18902615,0.9382678,0.12796254,-0.038583,-0.15587129,-0.48684326,0.24856949,-0.28697708,-0.08628016,-0.9011146,0.0447106,301 -409,0.33371475,0.11158384,-0.53515214,-0.1431583,-0.24885668,0.15911151,-0.2230521,0.4590478,0.03518242,-0.3477736,-0.016414702,-0.16157445,-0.09240887,0.28703073,-0.276961,-0.4673312,0.13589321,0.06290592,-0.41021493,0.26993212,-0.372364,0.4501934,-0.09427656,0.28907233,0.07375,0.23105863,0.019775586,0.01685011,-0.05051737,-0.30115727,-0.22629295,0.21739434,-0.5953857,-0.023863077,-0.2421745,-0.36089116,0.05151894,-0.45082864,-0.3320354,-0.6338858,0.16273186,-0.78298265,0.69223243,0.03498051,-0.23771814,0.36347955,0.20573643,0.29908586,0.09287257,-0.0066627073,0.14659235,-0.27815965,0.04101376,-0.15900697,-0.46363956,-0.4970005,-0.58836544,-0.096149795,-0.622941,-0.20647232,-0.26425117,0.1060019,-0.26590484,-0.068681195,-0.08599714,0.26362014,-0.361597,-0.018263394,0.04860028,-0.0838109,0.26591754,-0.6708721,-0.2171809,0.072707586,0.26400787,-0.30762625,-0.08055886,0.3436105,0.28461638,0.45547765,-0.15474252,-0.15105523,-0.34525925,-0.08013809,-0.017177891,0.6519942,-0.23194166,-0.0021563831,-0.06977234,0.118584685,0.38934988,0.4148378,0.17452654,-0.027003406,-0.15818289,-0.012411258,-0.17962895,0.22179745,0.43853834,-0.32139423,-0.2192341,0.5096659,0.46225137,0.22091722,-0.022899896,0.2605277,-0.13567623,-0.45571342,-0.12526101,-0.009191019,-0.20422281,0.42833424,-0.09055793,0.25212005,0.54119575,-0.11679753,0.09630853,0.09836701,0.019483238,0.15205468,-0.13665865,-0.32220533,0.33632904,-0.65693337,0.23003037,-0.12840216,0.4738529,0.16167977,-0.8121945,0.312666,-0.4658665,-0.031425785,0.04261457,0.4260551,0.617454,0.56917226,0.18509862,0.57391006,-0.52736497,0.08413102,-0.012637751,-0.16502984,0.13810709,-0.043013006,0.05339052,-0.5249282,-0.08737522,0.08177199,-0.117554285,0.288033,0.18214193,-0.4519861,-0.08593068,0.29297042,0.64518374,-0.31083468,-0.04933432,0.6420519,1.13583,0.99344146,0.085832015,0.8297904,0.10833415,-0.06465678,-0.046762984,-0.15326981,-0.63130724,0.16993129,0.36162403,-0.35277742,0.4005864,0.13894211,-0.012543614,0.1788788,-0.22058178,-0.24991842,-0.09141064,0.23652805,0.0595279,-0.2657549,-0.39571956,-0.18448721,-0.034917127,-0.12231706,0.13201283,0.30638984,-0.17753956,0.4471548,0.19043145,1.2595685,0.031270254,0.116309576,0.1385599,0.47707638,0.1926231,-0.12004153,-0.10532495,0.2998157,0.1832827,0.21845235,-0.39102316,0.0053152037,-0.2781551,-0.58022785,-0.2039142,-0.3295175,-0.030090123,-0.13644895,-0.25756413,-0.23943932,-0.056909077,-0.34079567,0.575147,-3.0195904,-0.019618485,-0.09825909,0.3385938,-0.19570102,-0.39209336,-0.08148073,-0.428205,0.5300029,0.36125502,0.2729172,-0.4345444,0.2739929,0.46551016,-0.39933437,-0.17197187,-0.5168829,-0.13289328,0.08757203,0.17937039,-0.0002454434,-0.18805812,0.03313465,0.18613802,0.33442444,-0.08778568,0.1546746,0.12428124,0.26762363,0.060565185,0.40552887,-0.021698087,0.45946524,-0.12657072,-0.193168,0.29785377,-0.39485094,0.20109232,-0.056444645,0.20552401,0.3227162,-0.3850278,-0.71817917,-0.3953683,-0.22419007,1.1770288,-0.13641308,-0.38046613,0.2653994,-0.049407143,-0.3712552,-0.100209154,0.28252226,-0.25253204,-0.019555632,-0.698113,-0.07442724,-0.20011587,0.25950083,-0.04454401,0.140057,-0.51327145,0.4390573,-0.07703047,0.4413465,0.31492653,0.24444135,-0.3637185,-0.44252723,-0.14312562,0.851222,0.5940493,0.06209197,-0.15321536,-0.108522125,-0.2322723,-0.16831386,0.29108542,0.42361742,0.72746724,-0.12245191,0.08700323,0.16866527,0.042261474,0.20212267,-0.16737595,-0.1801307,-0.06853937,0.07560652,0.44546914,0.4264889,-0.06268855,0.5129328,-0.057723675,0.19705343,-0.32337007,-0.46275,0.29259858,0.7702688,-0.16755164,-0.26072088,0.6679697,0.30180869,-0.15114126,0.3659415,-0.6464747,-0.4138063,0.604631,-0.15663059,-0.5422247,0.12213992,-0.21720354,0.07573021,-0.7630543,0.24221097,-0.35106155,-0.54191667,-0.48045403,-0.16132975,-2.514414,0.081910275,-0.21530285,-0.16759281,-0.09560299,-0.3087924,0.18274911,-0.5863036,-0.6907305,0.20418583,0.070121914,0.7562548,-0.08213006,0.057513922,-0.17194545,-0.53775764,-0.46975735,0.25803736,0.14667559,0.27063885,0.071819015,-0.2576236,-0.06512089,-0.073992245,-0.4761946,0.068442024,-0.5236276,-0.43550706,-0.25592044,-0.4724905,-0.17472291,0.58944905,-0.3320494,-0.04858281,-0.30335164,-0.045208063,0.045471728,0.14765692,0.17279734,0.21394439,0.091924906,-0.058864716,0.13939619,-0.29145914,0.22239457,0.15875323,0.3653548,0.49080542,-0.13472061,0.030159926,0.47590184,0.70287895,-0.17007816,0.7267291,0.20918725,-0.16773936,0.3891242,-0.35047913,-0.23911296,-0.5284874,-0.29513216,0.012462914,-0.35512066,-0.42241248,-0.15078224,-0.31372145,-0.69831026,0.6118185,-0.08783182,0.2926928,-0.216478,0.53169143,0.3214795,-0.2992155,-0.06586356,-0.08777793,-0.026875125,-0.28213987,-0.32778645,-0.5882329,-0.5005606,0.04639984,1.0001848,-0.26540273,0.08188985,0.19261134,-0.08680528,0.113712475,0.01722874,0.09286536,0.10236318,0.2766216,-0.060996242,-0.5923513,0.47379535,-0.12943108,-0.13952656,-0.60345757,0.038384464,0.6517928,-0.42503136,0.3518016,0.38642433,0.096681006,-0.17683141,-0.83941746,-0.0725911,0.013145952,-0.37110752,0.31338733,0.21867791,-0.7639379,0.45907408,0.39937893,-0.2825378,-0.52306587,0.49984068,0.04587425,-0.22717465,0.13100013,0.3882623,0.17747347,0.044011924,-0.014801239,0.22973098,-0.36475116,0.3302671,0.4312897,0.012514838,0.44098207,-0.27534243,-0.1812013,-0.6696375,0.10978072,-0.3890756,-0.32268763,0.15075435,-0.088448405,0.0028064805,0.34956017,0.15372232,0.3418693,-0.46775368,0.1317881,-0.120236434,-0.19906375,0.2892898,0.3816337,0.4936585,-0.37770906,0.5510802,0.06873248,-0.1419793,0.0063326783,-0.12339784,0.56120837,-0.031043043,0.21047327,0.2242953,-0.30333015,0.09540006,0.6436364,0.10930569,0.17275847,0.12654561,-0.05611991,0.036185544,0.01977353,0.08720497,0.167769,-0.47613588,0.017721491,-0.18690434,0.09169441,0.46326095,0.065665625,0.29501405,-0.19718711,-0.058613557,0.02007243,0.1996021,-0.14736061,-0.99554586,0.3170431,0.13012259,0.76516014,0.2636588,0.26035222,0.04947849,0.44557327,-0.23003791,0.02397049,0.24254544,0.13137801,-0.39425626,0.4817818,-0.6820537,0.4127274,0.12586974,0.0678404,-0.033721846,0.095586024,0.43637195,0.97327614,-0.20068853,0.09607091,0.023779929,-0.2302134,0.18849257,-0.18234818,0.10121626,-0.2770701,-0.13181046,0.7054545,0.2825997,0.24369483,-0.16389892,-0.041227635,0.028177353,-0.28398022,0.17316428,-0.009829074,0.15768786,-0.33167028,-0.25428766,-0.24326923,0.36933956,0.24641286,0.14684714,-0.0060733855,-0.22804669,0.28362873,-0.028087672,0.053409345,0.12723593,-0.63592905,0.12473064,-0.28935674,-0.27126706,0.2049724,-0.21539463,0.2455682,0.19555287,0.057025354,-0.061659236,0.33758375,0.2642865,0.59114677,-0.122294016,-0.19458118,-0.18661675,0.23294559,0.12884341,-0.19169043,0.10928035,-0.109959535,0.24759577,-0.487431,0.37019587,-0.1617831,-0.24211955,-0.08647845,-0.0974594,0.051424306,0.40701398,-0.21005909,-0.053727966,0.027249334,-0.18668294,-0.29290056,-0.2271307,-0.21192463,0.13358408,0.07661589,-0.29981872,-0.14561264,-0.005179155,-0.17977776,0.36286047,0.03619439,0.31736454,0.36607653,0.024797352,-0.5094213,-0.027577337,-0.108564876,0.46141428,-0.10996158,0.02308571,-0.22583462,-0.4252587,-0.30100438,0.29628274,-0.2333637,0.24906418,0.12445002,-0.08361641,0.8550445,-0.034404155,1.1576546,-0.07776807,-0.30487218,-0.08499523,0.44003823,-0.14505367,-0.1733315,-0.27079996,0.9993539,0.56646985,0.024850616,-0.04504357,-0.17935112,-0.10338781,0.16830435,-0.2539166,-0.20085637,-0.07279314,-0.48423713,-0.30083957,0.24199381,0.13455415,0.094204865,-0.11314535,0.04770928,0.43474886,0.14097932,0.32542655,-0.44882706,-0.15135287,0.37949398,0.2699807,-0.09349291,0.12803903,-0.38854128,0.35739297,-0.53508055,0.006267901,-0.31218663,0.058084745,-0.09001444,-0.30950752,0.16404858,0.09432916,0.34205195,-0.18102553,-0.4007339,0.007926805,0.34497333,0.089644715,0.22105919,0.4761858,-0.20732887,0.056523245,-0.081936546,0.37035647,0.93859786,-0.21497743,-0.0073667937,0.46574673,-0.35482386,-0.62957823,0.19813736,-0.42120412,0.14784518,-0.07824312,-0.19580896,-0.211136,0.17878558,0.24816206,0.15036617,-0.007948195,-0.46154937,-0.14098684,0.2145613,-0.396457,-0.19616021,-0.35686758,0.0570341,0.64191204,-0.14351256,-0.33480924,-0.05525592,0.34200004,-0.27150354,-0.5834679,0.26196757,-0.072729036,0.332423,0.047513563,-0.35171667,-0.01551609,-0.011845504,-0.36685824,0.15322065,0.25608918,-0.2750906,0.03945377,-0.3629203,0.21005154,0.65541446,-0.28357622,0.051435623,-0.540995,-0.52790785,-0.88686734,-0.20423384,0.11533836,0.13366626,0.07416511,-0.5644208,0.056364458,-0.35349545,-0.04289022,-0.01675916,-0.20303294,0.33907658,0.22762159,0.2862117,-0.25506786,-0.72559106,0.12314173,0.14809802,-0.14973433,-0.44046447,0.5714461,0.011885865,0.65355873,0.19987346,0.015277349,0.21002693,-0.48634705,0.317331,-0.20640302,-0.0719835,-0.6104679,-0.03029934,306 -410,0.4368973,-0.09963603,-0.49077997,-0.17946585,-0.19050731,0.021335943,-0.11588429,0.43738922,0.06337033,-0.71963406,-0.22665451,-0.3633191,-0.23405242,0.4478237,-0.380347,-0.49225178,-0.13495682,-0.05045843,-0.505575,0.6072063,-0.33593234,0.40074304,0.28259572,0.24448553,0.33608633,0.31844693,0.3318086,-0.1078343,-0.11547787,-0.35634813,0.07579452,-0.31863928,-0.8004931,0.24252701,-0.14835386,-0.4225346,0.040959936,-0.5546766,-0.3932422,-0.78708774,0.32818845,-0.9437435,0.30700234,-0.07267126,-0.12765124,0.21679713,0.20971622,0.41915438,0.009586071,-0.111483596,0.24453862,0.12954424,0.05393783,0.055741314,-0.29249188,-0.468783,-0.593646,0.0849471,-0.30968872,-0.3915053,-0.17658629,0.11104731,-0.4232456,0.26110727,-0.11430649,0.40413433,-0.5512875,-0.3137233,0.23718931,-0.21144506,0.25205204,-0.6342047,-0.09824153,-0.14491837,0.14632139,-0.21578717,0.091037996,0.40395662,0.16555932,0.53600585,0.0014558776,-0.1493015,-0.2273597,0.021234842,0.18352138,0.45619777,-0.074054554,-0.24439773,-0.17963322,-0.12053036,0.33972746,0.09555689,0.22990432,-0.43591926,-0.017089358,-0.00469195,-0.44882542,0.29545555,0.48060867,-0.22187571,-0.069386,0.37172607,0.5316209,0.2062072,-0.13658687,0.013588445,-0.079753816,-0.3594597,-0.05234955,0.16319346,-0.2368804,0.5871933,0.028460728,0.119243786,0.532998,-0.25661144,0.203545,-0.14249101,-0.17219539,-0.18589282,-0.16609356,-0.2828631,0.23743813,-0.294607,0.29068574,-0.38102862,0.78226376,0.1290629,-0.86899316,0.34891364,-0.49313858,0.08549072,-0.054910194,0.47566557,0.40157938,0.43333724,0.16461144,0.73070806,-0.51672846,0.14971219,-0.19873424,-0.16004471,-0.083423555,-0.15226217,-0.035007622,-0.21027456,0.03262984,-0.12786399,-0.30050436,-0.2101417,0.23076698,-0.44489512,0.012432918,-0.03061754,0.8531332,-0.27877468,0.06577152,0.77631587,1.0691155,1.1663159,0.14387043,1.0265933,0.27573517,-0.23109163,0.10461158,-0.07190882,-0.68740225,0.27995747,0.5361134,0.37180728,0.28356877,-0.021068415,0.04011797,0.33892533,-0.45478123,0.22804897,-0.33002648,0.16933274,0.15225755,-0.1238639,-0.28936678,-0.2229754,0.101259746,0.20126678,-0.061832316,0.14675327,-0.15358941,0.28275004,0.10900832,1.6861753,-0.11348613,0.11538635,0.26345485,0.51907724,-0.08081126,-0.22003141,0.03374203,-0.027964758,0.25800067,-0.03698836,-0.61340487,0.005343131,-0.1848998,-0.57114595,-0.15802813,-0.26482758,-0.0446871,-0.17936592,-0.4954364,-0.13505885,-0.002071355,-0.37862745,0.26789686,-2.3659112,-0.13982952,-0.39712688,0.2638041,-0.4241092,-0.3380658,0.046898123,-0.5151835,0.49630904,0.46838754,0.3713409,-0.5154057,0.4409671,0.43735453,-0.35949543,-0.01964887,-0.5617559,0.06724636,-0.10652467,0.30025008,-0.0052013397,-0.04064134,0.12911676,0.28080887,0.42499235,0.1436712,0.095439054,0.29596397,0.31996492,0.14202213,0.60739416,0.09489497,0.46717098,-0.2325952,-0.010110955,0.49420267,-0.3772728,0.16922699,-0.093209796,0.27540213,0.20752864,-0.71763164,-0.68465483,-0.7928168,-0.5947364,1.2961771,-0.11965756,-0.5874737,0.26327184,0.216258,-0.03352966,-0.09035611,0.37858215,-0.21192291,0.06320441,-0.765349,-0.113228306,-0.20198984,0.20300767,-0.029437108,0.1805538,-0.4584853,0.6289016,-0.27533132,0.43834648,0.42913866,0.25506595,-0.22241528,-0.548914,0.116974175,0.8736439,0.37885132,0.002607139,-0.20998518,-0.05747773,-0.52597964,-0.30567604,0.15902482,0.34540883,0.8214597,-0.010246242,-0.0512036,0.19114308,-0.08163119,-0.050668847,-0.15237907,-0.37296504,-0.20362255,-0.08819539,0.6400983,0.47824958,-0.03833993,0.25527784,-0.2288305,0.41761252,-0.175658,-0.35783213,0.41599312,0.5979837,-0.081662536,-0.19046037,0.39773753,0.63206035,-0.27619964,0.4417315,-0.6046304,-0.355253,0.5263909,-0.09432711,-0.59175986,0.19073078,-0.38509107,0.17230701,-0.886052,0.35321596,-0.32279596,-0.2554427,-0.504026,-0.2946715,-2.43485,0.14378391,0.046134252,-0.37855372,0.010934306,-0.106781244,0.27240536,-0.6171321,-0.89058197,0.016758187,-0.09594119,0.5741648,0.06818888,0.20207559,-0.13228734,-0.058138933,-0.44352403,0.108826235,0.071723804,0.35390383,0.052486718,-0.31411272,-0.26591393,-0.26974204,-0.65578556,0.09455337,-0.5169638,-0.6698774,-0.33013684,-0.52383333,-0.34833926,0.510809,-0.36413887,0.03587554,0.008709515,-0.10246674,-0.17093012,0.34813112,0.32695618,0.21946147,0.1548253,-0.13091204,0.017602136,-0.21125112,0.24900177,0.27047813,0.45774698,0.39498234,-0.23622718,0.2688567,0.5317172,0.68633395,0.100812234,0.72588205,0.2971274,-0.06982346,0.17871282,-0.33757225,-0.16998155,-0.4347025,-0.12878838,0.13443848,-0.22753285,-0.5465156,0.103848256,-0.25276902,-0.71812516,0.42444062,0.000871752,0.018811222,0.057987172,-0.097534165,0.32859382,0.018935855,-0.017470224,0.010115147,-0.007497385,-0.5419841,-0.5149778,-0.82032925,-0.52432907,-0.030765275,0.9978861,0.17486891,-0.22471116,0.07146449,-0.3342608,0.26674542,-0.2703721,0.003376601,-0.0071441256,0.28748468,0.035265684,-0.72761333,0.50849074,0.0013879666,0.036008816,-0.51969355,0.23732087,0.70960796,-0.39217123,0.1667329,0.27877915,0.27658114,-0.026698139,-0.45922354,0.052124638,-0.11763085,-0.35659996,0.13396446,0.010281709,-0.5750293,0.33675358,0.27317542,-0.23765235,-0.8533829,0.44304794,0.12211033,-0.060891904,0.032844476,0.3065203,0.12108505,-0.07935428,-0.12613118,0.24376056,-0.49665025,0.100040324,0.48753262,0.11941191,0.3785582,-0.18732397,-0.2369064,-0.59304744,0.0485887,-0.32932472,-0.17604478,0.10474669,0.042530496,-0.08162161,0.20083825,0.18083699,0.3350894,-0.11488475,0.08018128,-0.12289609,-0.22512436,0.46538663,0.46069828,0.58086455,-0.5215822,0.638041,-0.071405634,0.11589929,0.20313585,-0.11683232,0.4164701,0.23446478,0.02402435,0.17131591,-0.07927521,0.104781665,0.6528986,0.327531,0.48160487,0.15013206,-0.41604525,0.4407136,0.15768385,0.11286749,-0.035410967,-0.6687547,0.12194852,0.18174198,-0.03747848,0.39474863,-0.015619551,0.41199812,-0.14398427,-0.21608554,-0.041400798,-0.021265576,-0.42489854,-1.2878191,0.3819293,-0.008855338,0.76236457,0.6587504,-0.15833494,0.29359534,0.5046067,-0.17442526,0.09403279,0.26620093,-0.012484865,-0.6259386,0.4681866,-0.4579967,0.42315105,0.09216698,0.03752405,0.015036808,0.27301884,0.4354104,0.75154907,-0.18707599,0.03038226,-0.2240572,-0.23549272,0.14041884,-0.47560164,0.24481736,-0.20623466,-0.36281314,0.63879806,0.4119995,0.20040186,-0.057840202,-0.020122698,-0.010813551,-0.0962553,0.3581327,-0.14682572,-0.02092266,0.0637363,-0.67791796,-0.460962,0.49544242,-0.131389,0.14768784,-0.0452554,-0.3561514,0.14766921,-0.044737447,-0.06988994,0.040275697,-0.83644444,0.17207526,-0.41643706,-0.24527617,-0.0848137,-0.07628401,0.3209832,0.1517527,-0.16642393,-0.41301513,0.18009807,0.121384375,0.632439,-0.2690263,-0.3154126,-0.33437577,-0.06574012,0.27096984,-0.29403743,0.15490396,-0.03961203,-0.054555178,-0.61575925,0.39763203,-0.13909085,-0.3397192,0.30573374,-0.26977512,-0.15589367,0.54036695,-0.22285108,0.16244176,0.11592449,-0.032501858,-0.05437805,-0.11432151,-0.2564799,0.16038355,0.11928076,-0.0979088,0.054239597,-0.048079994,0.08755999,0.57301563,0.019029336,0.5760947,0.62674797,-0.0023428288,-0.8112089,-0.16191684,-0.028282711,0.5280053,0.20398529,-0.11118495,-0.230082,-0.44418722,-0.1945272,0.47969463,-0.26964894,0.31996387,0.15184669,-0.5056909,0.6930016,0.23824105,1.296051,-0.051229924,-0.3870706,0.16447185,0.42555788,0.039554063,-0.09858189,-0.48175764,0.85711545,0.61923724,-0.1805403,-0.20531435,-0.26250908,-0.09789176,0.07431146,-0.1567136,-0.13488828,-0.041129146,-0.6466794,-0.43270215,0.06407038,0.24467514,-0.052920647,-0.10801755,0.08702243,0.08766504,-0.028977696,0.69115263,-0.3807008,-0.20358162,0.32293802,-0.07259921,0.10645112,0.06085106,-0.42702594,0.33051482,-0.5327875,0.10877495,-0.2664285,0.11736829,0.012585325,-0.19554664,0.14128736,0.036550414,0.5183602,-0.34953174,-0.47989526,-0.21743432,0.6360552,0.15489545,0.22639158,0.67475325,-0.16003619,0.22414139,-0.011229954,0.70203453,1.0885901,-0.0446813,0.43157506,0.22088124,-0.3691757,-0.34779644,0.15959445,-0.12508938,0.2532707,-0.14186196,-0.16575502,-0.54932636,0.23606455,0.23479474,-0.3672625,0.095994934,-0.5505912,-0.5184507,0.38806346,-0.4214191,-0.35049385,-0.47756007,0.16612294,0.5119439,-0.3075164,-0.117801316,0.057609845,0.17684238,-0.21592255,-0.4854414,-0.02509884,-0.22279823,0.27554756,0.071751975,-0.42765442,-0.17267345,0.09552163,-0.32433063,0.04510058,-0.01858053,-0.46169847,-0.12117449,-0.08028428,-0.004755352,0.82180846,0.11235764,0.06450912,-0.75054497,-0.5033918,-0.9312112,-0.56900215,0.50875264,0.12597612,-0.09786392,-0.34922546,-0.20705344,-0.13749523,0.040484525,0.039624486,-0.35537058,0.31867293,0.21358843,0.7182706,-0.19516304,-0.7453958,0.0953549,0.14701663,-0.054142993,-0.41924614,0.5467128,0.18368505,0.6860819,0.09632652,0.02381737,-0.036333907,-0.53629744,0.20544703,-0.1137251,-0.2254907,-0.59775656,0.35846296,307 -411,0.536198,-0.20701437,-0.4827424,-0.07080386,-0.31035,0.26972836,-0.18953207,0.4416464,0.13922678,-0.5127216,-0.25114194,-0.1736978,0.11251759,0.06412201,-0.24613309,-0.34992546,0.045546133,0.1771221,-0.5658943,0.38766804,-0.23738417,0.2938529,0.1148939,0.4335906,0.090223424,0.32829973,-0.08611194,-0.061413724,-0.1892325,-0.30265585,-0.07188535,0.2749032,-0.376159,0.22940192,-0.21522284,-0.12596236,-0.020584049,-0.5462603,-0.24474546,-0.6861416,0.19454421,-0.8760188,0.40266582,0.04821173,-0.2223624,0.18657814,0.28150925,0.13011968,-0.054714985,0.006078567,0.17343156,-0.30971405,-0.21444944,-0.25325292,-0.22794986,-0.5049931,-0.5552474,0.010108322,-0.41901302,-0.14592467,-0.31818604,0.22932303,-0.31980947,-0.054942816,-0.04756478,0.6205148,-0.31408855,0.3000364,0.2387725,-0.2870639,0.13410261,-0.58998734,-0.17130816,-0.03981733,0.38228002,-0.23718692,-0.25566962,0.15891764,0.37798738,0.36317423,0.06584556,-0.11777804,-0.30030838,-0.09659337,0.10287523,0.4559439,-0.06800658,-0.29872736,-0.0039038488,0.02244541,0.13486804,0.32232094,0.1647466,-0.20661688,-0.18826298,-0.21106073,-0.28246847,0.2679921,0.35190555,-0.23538034,-0.102096334,0.33907458,0.49189478,0.110015854,-0.08991557,-0.05581423,0.11740763,-0.52841026,-0.1744151,-0.006416491,-0.20302054,0.39671478,-0.2101341,0.43424526,0.6552578,-0.17375143,-0.03431784,0.26075104,0.32887754,-0.060161293,-0.3711357,-0.09926748,0.24666765,-0.45328838,0.037821796,-0.17968495,0.88017315,0.0023894703,-0.5131517,0.08473087,-0.6420213,-0.086654946,-0.0799067,0.3984551,0.58273745,0.52831066,0.2184271,0.62214386,-0.32505935,0.021320513,-0.14983979,-0.42216164,0.03197754,-0.17851551,0.046741366,-0.44020316,-0.08751331,-0.02349331,-0.019213501,0.041517098,0.5577143,-0.47126502,-0.18313678,0.021601854,0.8037811,-0.27061957,-0.24429817,0.8022577,0.8560572,0.74024117,0.11095406,1.0559442,0.0899289,-0.11137812,-0.05215302,-0.066395186,-0.57144564,0.42720112,0.3317888,-0.36694628,0.09910025,0.05557123,-0.067412384,0.39281628,-0.28696817,-0.15188329,-0.16721575,0.19017051,0.1048725,-0.11843411,-0.41467336,-0.3313791,-0.021253217,-0.007830982,0.30347136,0.29148278,-0.07866938,0.48687252,0.012378012,1.4849815,-0.008321873,0.24062191,0.09273654,0.21037541,0.23501386,-0.089618675,-0.047176056,0.3532576,0.1936327,0.21020998,-0.517938,0.17885283,-0.18019794,-0.43193164,-0.18809186,-0.309274,-0.2238431,-0.06752749,-0.4718822,-0.17941464,-0.20582907,-0.39725998,0.46563953,-2.6510315,-0.043027036,-0.076240264,0.40304884,-0.26228568,-0.45336336,-0.06864289,-0.37279317,0.32883772,0.16148268,0.43560204,-0.49704054,0.33391476,0.4995092,-0.49150234,-0.33669832,-0.5487269,-0.004752355,-0.06819458,0.13083048,0.04834861,-0.0035086232,-0.076987915,-0.21826264,0.44521695,-0.14947489,0.1586553,0.44674492,0.48303062,-0.072517596,0.46464744,0.019722562,0.5630664,-0.28704038,-0.32898074,0.26220113,-0.35031065,0.23060977,-0.048002232,0.059002522,0.591,-0.3039206,-0.77808636,-0.7047328,-0.2291974,1.2154125,-0.22356339,-0.3462744,0.1175437,-0.374093,-0.45857129,0.051005535,0.5800914,-0.1289958,0.06754968,-0.7251689,0.05435248,-0.13100404,0.13260104,-0.060476933,-0.114113554,-0.43874213,0.59153837,0.021633549,0.4194549,0.21479201,0.29948395,-0.33054453,-0.2982927,0.012778963,0.91596717,0.38439852,0.2472321,-0.24995613,-0.1158103,-0.30336854,-0.017382758,0.13253061,0.7326284,0.34145838,0.037534695,0.25128514,0.26177266,-0.05383059,0.13768195,-0.09469392,-0.22062886,-0.20077947,-0.04724621,0.509342,0.6205581,-0.004775209,0.501299,-0.039891157,0.37377626,-0.2485324,-0.48913208,0.41577625,0.90603775,-0.19924058,-0.33920097,0.7865333,0.4428318,-0.20574263,0.33182982,-0.5130461,-0.43655893,0.38941067,-0.17030899,-0.59518325,0.15411532,-0.140095,0.12743562,-0.89126873,0.20567366,-0.27964535,-0.6411975,-0.5242724,-0.058088798,-2.6448786,0.29042906,-0.20735906,-0.15307294,-0.17043753,-0.287514,0.11621004,-0.5746493,-0.43102694,0.11487682,0.052581243,0.72373646,-0.10238378,0.16326849,-0.14924765,-0.31589705,-0.09076892,0.1318031,0.14079046,0.31951338,-0.11252741,-0.4467298,0.019383477,0.052836604,-0.2909868,0.18550017,-0.7408978,-0.4897344,-0.12776914,-0.4549055,-0.35905674,0.62386554,-0.33395416,-0.0072284015,-0.201999,0.18866754,0.0061344844,0.2301475,0.07014295,0.24113497,0.11373836,-0.12311107,-0.03054065,-0.2854786,0.46865258,0.03978659,0.22825992,0.48552892,-0.12594701,0.275682,0.3677873,0.47986275,-0.15534422,0.86459243,0.2752221,0.034296583,0.26407376,-0.15576415,-0.47551277,-0.4264979,-0.18199222,0.11360761,-0.4456901,-0.19993147,0.0063593644,-0.34916934,-0.88130534,0.6065478,0.09671236,0.001495455,-0.11620685,0.42743465,0.5433182,-0.3242161,-0.22297247,-0.026476204,-0.1478125,-0.5262385,-0.3046182,-0.46136707,-0.41913533,-0.093345895,0.9951836,-0.23666625,0.20906594,0.055877533,-0.05097833,-0.10410918,0.14708403,-0.060963333,0.02272451,0.6044646,-0.1469766,-0.58012664,0.5543934,-0.3213012,-0.29576612,-0.58516586,0.3390719,0.63230896,-0.63809395,0.54346234,0.45817143,0.08126391,-0.35858425,-0.46834823,-0.043736912,-0.08619934,-0.18875508,0.40357763,0.37588114,-0.8173423,0.32571533,0.18395723,-0.13548748,-0.67990303,0.5460412,-0.06816878,-0.33592632,-0.13250339,0.43036896,0.18333915,-0.046955567,-0.1877196,0.1195593,-0.34050632,0.32422757,-0.012076356,-0.16735399,0.32639402,-0.24214251,-0.10314537,-0.67551136,0.06020292,-0.4950467,-0.41840178,0.25716844,0.10500761,0.0037998727,0.4282303,0.07557649,0.30041504,-0.46031338,-0.035217334,-0.17088161,-0.21822284,0.18657593,0.32436606,0.58698404,-0.48152012,0.5751341,0.035944615,0.07368126,0.11201765,0.23850381,0.4674666,0.044315364,0.5768453,-0.15216948,-0.16369952,0.37420627,0.6908507,-0.0068470496,0.40194178,0.046406116,-0.07683135,0.08465432,-0.037809107,0.2671174,-0.1607484,-0.6887952,-0.014291772,-0.47330508,0.08211064,0.38677683,0.043202035,0.36512542,-0.041110165,-0.35227647,0.086672604,0.23562148,0.15933165,-1.1252214,0.37497064,0.29346657,0.90987223,0.15792488,0.09675501,-0.05887931,0.8216675,-0.21531485,0.11273762,0.28981704,0.12753046,-0.29462793,0.54578274,-0.753911,0.39432353,-0.0639784,-0.10013924,-0.027768984,-0.22563635,0.34945363,0.92102987,-0.18004899,-0.012226609,0.05921229,-0.4936219,0.08826142,-0.4073382,0.08553863,-0.6114295,-0.26626605,0.6206899,0.5386935,0.37030777,-0.23826288,0.04571357,0.16293697,-0.10166336,0.149823,0.1997077,0.15589713,0.03311512,-0.6748919,-0.11250239,0.5375153,0.20154963,0.2611677,0.0041875583,-0.03422783,0.34914765,-0.1982087,0.042841915,-0.12676778,-0.60171694,-0.0033019271,-0.4134283,-0.57104915,0.2778829,-0.3028541,0.16810301,0.17246775,0.11219569,-0.21846724,0.60928065,0.19400942,0.93949795,0.11048392,-0.09801922,-0.40681452,0.2596079,0.1642629,-0.16501728,-0.14078857,-0.26085228,0.14762719,-0.583531,0.3295055,-0.16289279,-0.35968098,0.035381284,-0.053878162,0.031657986,0.47478586,0.04673142,-0.010210226,-0.008971776,-0.101309605,-0.22020523,-0.1592497,-0.12815158,0.3057728,0.21465161,-0.054182965,-0.2269716,-0.12929861,-0.19406064,0.20008208,-0.011926153,0.41087952,0.31603256,-0.04676382,-0.13497558,-0.13717936,0.2399032,0.52474344,-0.07954083,-0.13358891,-0.31079087,-0.47247204,-0.32086423,0.17965065,-0.00971105,0.28875256,0.12653579,-0.029126635,0.92916995,-0.22692323,0.94490844,0.047062505,-0.28113312,0.17050448,0.4010205,0.020609643,-0.06405942,-0.368138,1.0572554,0.42919588,0.09021764,0.0047987825,-0.4468308,0.071372405,0.14406015,-0.21572016,-0.11259306,-0.10569771,-0.6283662,-0.28754824,0.18383572,0.2778816,0.14195327,-0.07818294,-0.0072522038,0.42353654,0.03849371,0.2260975,-0.6358643,-0.18667129,0.16202538,0.45094582,-0.09958496,0.27141163,-0.5511693,0.40066186,-0.5919338,0.09265089,-0.305219,0.21115711,-0.32069045,-0.22901177,0.25190192,0.00881826,0.47601014,-0.3437086,-0.2509081,-0.27726552,0.39059606,0.26965794,0.062965445,0.5124599,-0.28177053,-0.060146153,0.12484525,0.53006285,0.8581,-0.29739803,0.06173465,0.4125043,-0.29115647,-0.5545212,0.3597259,-0.37083766,0.25644353,-0.015573146,-0.20966266,-0.29473415,0.30166864,0.1973954,0.21579249,-0.17064552,-0.48082465,0.08240219,0.35999373,-0.28540748,-0.13305558,-0.1645275,0.20185263,0.3431526,-0.089818425,-0.27888426,0.09929252,0.37006965,-0.10419297,-0.3503355,-0.062394846,-0.404011,0.17352538,0.030312171,-0.34328896,-0.22990482,-0.13726337,-0.44762468,0.16200478,0.0921073,-0.25172442,0.041040648,-0.18743165,0.015006759,0.7111829,-0.18849066,0.15075167,-0.58757895,-0.4056994,-0.6733452,-0.29097858,0.12952366,0.0056011933,-0.0013861805,-0.56225306,-0.030861301,-0.16454771,-0.28069046,-0.17938386,-0.4128461,0.49505597,0.16502193,0.31681195,-0.14409359,-0.9182011,0.2927716,0.006498409,-0.3289277,-0.65700865,0.37621567,-0.07526118,0.6391138,0.033262603,0.05858756,0.40262836,-0.454135,-0.012805939,-0.19503705,-0.11141438,-0.7903126,-0.11552143,308 -412,0.38479254,0.19589856,-0.43219572,-0.03823799,-0.09245123,0.036281783,-0.3232078,0.13253044,0.0783573,-0.38424438,-0.11883875,-0.09031707,-0.0071807024,0.14085999,-0.15039809,-0.6625779,0.074144594,0.10063219,-0.46505547,0.75913745,-0.38821608,0.39463732,-0.02045621,0.39256877,0.15773343,0.3586566,0.28704613,-0.15568161,-0.14525735,-0.3825273,-0.24558489,-0.09487892,-0.74597347,0.1007092,-0.4139366,-0.3202868,0.18652876,-0.29057032,-0.4810483,-0.75256413,0.33486253,-0.7568789,0.48386234,0.03173255,-0.21057346,0.38344756,0.121468864,0.43531677,-0.24984786,0.030641198,0.017689545,-0.08769965,0.12286586,-0.3471541,-0.18303466,-0.40470824,-0.4279711,-0.019256907,-0.6291305,-0.16272219,-0.37928575,0.17417479,-0.29411486,-0.07516386,-0.16349699,0.300868,-0.46365812,-0.10074745,0.094176784,-0.044104286,0.1777295,-0.6546265,-0.1641629,-0.084642984,0.29902,-0.15022942,-9.2327595e-05,0.39837137,-0.052707206,0.2579667,-0.047148716,-0.26010233,-0.20923838,-0.21062596,-0.03361221,0.4970238,-0.1879628,-0.31108502,-0.02988811,0.013506608,0.213271,0.3816606,0.05175001,0.08650773,0.05556214,-0.08927806,-0.22247133,0.5138859,0.5113469,-0.38879296,-0.17245948,0.19295785,0.4859995,0.19473961,-0.27392888,-0.02566872,-0.08690619,-0.39339343,-0.25547662,0.15540592,-0.2049606,0.67632776,-0.016207865,0.15125492,0.45677954,-0.22062026,0.21548001,-0.03846108,-0.0408657,0.22611459,-0.19362144,-0.30999678,0.41776133,-0.56406194,0.22454715,-0.39326784,0.54581755,0.17125021,-0.5080493,0.24202155,-0.46986347,0.0043779314,0.0003761649,0.5841444,0.45117015,0.4025919,0.25149757,0.785688,-0.4718043,0.057847578,0.031636894,-0.14777705,-0.056361496,-0.1290266,0.09288246,-0.39065537,0.073688336,0.0075935,0.11257171,0.043538578,0.12648982,-0.31911454,-0.031199643,0.24741085,0.9922849,-0.24853095,0.23630174,0.79509157,1.2585325,1.015049,-0.044254504,0.87044007,0.3316533,-0.34420007,-0.030173227,-0.17751704,-0.5777917,0.121134855,0.36527035,0.10886047,0.33580938,0.084098,-0.12602746,0.1260986,-0.5955691,-0.024114069,-0.15967844,0.12256384,0.03997605,0.12696412,-0.48968357,-0.22778848,-0.07450707,-0.0823675,0.19148119,0.20784502,-0.28675693,0.20770156,-0.063388065,1.1124446,0.1350034,-0.01599043,0.18274704,0.8890676,0.35349226,0.10319867,-0.051943246,0.3499653,0.34672782,0.09677537,-0.44946423,0.009359136,-0.5135081,-0.2882472,-0.06476213,-0.3270889,0.21380794,0.117533006,-0.18480383,-0.07528372,0.061429024,-0.23453884,0.40090224,-2.9068532,-0.066824965,-0.20238091,0.400561,-0.20061941,-0.13373138,-0.10849446,-0.44452348,0.70466197,0.37345907,0.43244654,-0.4044924,0.26421553,0.4451774,-0.44821027,-0.07395164,-0.5208054,-0.11394634,-0.12190478,0.4841937,-0.04216275,-0.08139922,-0.13350847,0.1070223,0.5090902,0.21089725,0.05122631,0.07563245,0.21789877,0.009958991,0.4753947,0.15380467,0.32453945,-0.18411621,-0.095421486,0.31459188,-0.41306823,0.23043884,-0.2515522,0.12745498,0.5003685,-0.53326005,-0.7628478,-0.53665453,-0.2498552,1.1693599,-0.09083451,-0.6428248,0.14660789,-0.21578197,-0.21189316,-0.089072995,0.33019787,-0.19732888,-0.033196215,-0.4026859,-0.090003,-0.14513339,0.26579165,0.10256301,0.16645606,-0.44259128,0.5006401,-0.01893429,0.40091255,0.22936869,0.35389164,-0.23090193,-0.43361863,-0.01719829,0.8628475,0.4092314,0.039407305,-0.32058376,-0.26673532,-0.24257994,-0.04503431,0.14768681,0.716239,0.82893366,-0.16578542,-0.07739145,0.3115314,-0.005536952,0.03630658,-0.0582318,-0.44686848,-0.15423825,-0.034000438,0.59209293,0.57383144,0.10335622,0.29042816,0.040420942,0.47581545,-0.20790684,-0.2756684,0.34744602,1.1242253,-0.0945837,-0.15567937,0.45240238,0.6888257,-0.37535802,0.5484685,-0.76655525,-0.36314854,0.4916919,0.005659831,-0.4047094,0.12808634,-0.36539465,0.13181512,-0.7015878,0.27892134,-0.31477505,-0.32456264,-0.66506535,-0.19482763,-3.1195035,0.0347664,-0.28504404,-0.068943694,-0.15117958,-0.19679596,0.22826488,-0.4369066,-0.5361248,0.15740454,0.08859878,0.73219556,-0.10016549,0.09406563,-0.3853443,-0.27856344,-0.3949344,0.28446886,0.31351444,0.27020025,-0.20453084,-0.26407272,-0.017586121,-0.20187892,-0.24922441,-0.16400845,-0.4551172,-0.25546947,-0.26835796,-0.6394867,-0.11160215,0.6108033,-0.29940173,0.1172469,-0.20666216,0.008606536,-0.06562343,0.16294234,0.25899264,0.3686893,0.07703404,-0.052468974,0.07551666,-0.436719,0.29808238,0.34227508,0.24319194,0.22523475,-0.0039585107,-0.059411045,0.255004,0.43955746,0.012970322,0.79909897,0.28607005,-0.2134925,0.40826055,-0.4347042,-0.45429304,-0.71017516,-0.34313488,-0.06540434,-0.18871415,-0.5108746,-0.19399747,-0.51017135,-0.66622084,0.48989436,-0.041326694,0.26205915,-0.022296915,0.4085231,0.45574483,-0.24365483,-0.033513457,0.08633418,0.009921908,-0.37903976,-0.09630162,-0.64874786,-0.51328,-0.041503496,0.6136967,-0.17825265,-0.13853082,0.20387462,-0.14188327,0.1551232,0.1395771,0.16489069,0.03860993,0.5901436,0.13245721,-0.7877302,0.5574516,-0.12076487,-0.18822753,-0.59383875,0.2649999,0.64167774,-0.70428807,0.36210135,0.50464004,0.08248267,-0.28359053,-0.5091902,-0.14000659,0.037287124,-0.14489163,0.27524668,0.08066459,-0.8107074,0.23917682,0.064418994,-0.26545292,-0.70588887,0.73310614,0.028704586,-0.5720297,0.06957143,0.3730569,0.06624,-0.009339935,-0.12543151,0.21394433,-0.2306744,0.05903977,0.30567232,-0.042676654,0.3653057,-0.17180957,-0.19117273,-0.763406,0.20160888,-0.4977633,-0.26225662,0.4824571,0.0684583,-0.10543784,0.2938075,0.13976096,0.32829162,-0.20920713,0.26224783,-0.21788149,-0.2569305,0.5861331,0.3826719,0.40726772,-0.52129215,0.70456344,-0.0019576591,-0.11369912,-0.03684782,0.01805222,0.32130808,-0.17911313,0.2999623,0.08485455,-0.14448641,0.160321,0.50564605,0.35910514,0.38753325,0.15440607,-0.0419221,0.43803746,0.093133725,0.11111637,0.19363369,-0.47880262,-0.047771987,-0.13460049,-0.015665924,0.22341044,0.074667566,0.23599532,-0.061392073,-0.10593904,-0.04685379,0.04366388,-0.11137343,-0.88933223,0.3689787,0.16911456,0.73146963,0.46127027,0.10339846,0.06014749,0.64606124,-0.24685144,-0.101410456,0.33669785,0.18587068,-0.34849256,0.5366356,-0.46073714,0.59137565,0.17633626,0.0059611714,0.02002355,-0.08844851,0.42545095,0.862125,-0.2545064,0.042684913,-0.094086766,-0.20823976,0.07082177,-0.18493733,0.19923462,-0.40730673,-0.29635167,0.5948876,0.41264623,0.35645503,-0.040386625,-0.026175002,0.01786616,-0.3096591,0.23141588,-0.030437315,-0.086707056,-0.027910968,-0.5821357,-0.23805799,0.40673795,-0.15863271,-0.015805347,0.0031664541,0.16547121,0.21257146,-0.06552466,0.17089489,0.012484914,-0.7089395,0.21444178,-0.28048706,-0.06794631,0.5145311,-0.2111264,0.31909364,0.079813875,-0.033307776,-0.1739907,0.24652708,0.17506826,0.5065302,-0.074928455,-0.33727393,-0.39339972,-0.008269561,0.12471689,-0.320908,0.068784095,-0.30225796,0.13666622,-0.7710581,0.40381575,-0.2830157,-0.13376358,-0.115560435,-0.17661853,-0.1654634,0.48728272,-0.058169775,-0.16458814,0.056961834,0.059294265,-0.26796848,-0.18103325,-0.13860409,0.015509265,0.15362416,-0.080251,-0.1692063,-0.079471506,-0.24032304,0.5644366,0.043047648,0.38305125,0.0867571,0.083625756,-0.46646425,-0.09885884,-0.093710706,0.4856831,-0.08312704,0.018510511,-0.13609861,-0.42176566,-0.3355381,0.4798887,-0.03297365,0.20513602,0.15044318,-0.06038161,0.6648157,-0.026465824,1.1961733,-0.04467184,-0.43298477,0.04169879,0.7136988,-0.28631106,-0.12018335,-0.29454198,1.1243067,0.5413078,-0.02743273,-0.23638399,-0.200053,0.13230999,0.10023586,-0.15792537,-0.12472361,-0.12102543,-0.324476,-0.20937277,0.15767416,0.3660734,0.15064386,0.013475512,-0.022581449,0.07687207,0.16188718,0.31651244,-0.25315997,-0.2239833,0.58889765,0.029518118,-0.1491087,0.16669445,-0.22762418,0.33252695,-0.4302161,-0.04414851,-0.469388,0.008687685,-0.0063795024,-0.43051058,0.3110227,-0.111257136,0.36188215,-0.4840908,-0.43458727,-0.21254209,0.21268323,0.35726443,0.21024834,0.42751008,-0.15805563,0.0030218214,-0.062819935,0.56869894,1.0702498,-0.23405191,0.012589446,0.10847855,-0.4887264,-0.49191788,0.03633795,-0.5333181,0.107575454,-0.17125408,-0.2530391,-0.43628162,0.2298754,0.06982935,-0.067119725,-0.0043561202,-0.7537508,-0.2784529,-0.015984539,-0.08829873,-0.26416007,-0.35519975,0.21461456,0.7270613,-0.08342231,-0.30424047,-0.029277897,0.15320478,-0.18055913,-0.68968093,0.04899637,-0.37075323,0.20446455,0.14908552,-0.23479143,0.00019688053,0.25435638,-0.54638076,0.19220015,0.26318222,-0.46384567,-0.10711026,-0.13696952,0.065937996,0.6524733,-0.17424262,0.046257395,-0.3015531,-0.48899576,-0.71776205,-0.34984085,0.38998005,0.26757145,0.15164652,-0.4313307,0.032748833,-0.26604065,-0.0068917614,-0.10122008,-0.42568296,0.24279603,0.2220246,0.6200885,-0.24649803,-0.9905858,0.08056717,0.05726065,-0.29025486,-0.53804356,0.30208597,-0.056133933,0.68075037,0.08058391,0.005030121,0.33468392,-0.5819493,0.08383245,-0.18508856,-0.13441435,-0.710269,0.18138373,310 -413,0.3413685,-0.34847164,-0.50588316,-0.1132708,-0.33429,0.05745491,-0.2998006,0.14567547,0.14381623,-0.44857675,-0.047738247,-0.09363298,0.14198646,0.37799352,-0.09594727,-0.5551313,-0.0015381405,0.11815327,-0.6994541,0.50608975,-0.59873426,0.39356014,0.187391,0.3794183,-0.046197116,0.3703365,0.27869055,0.04268105,0.018878784,-0.11502641,-0.30363077,0.17227122,-0.5323204,0.17566617,-0.22803487,-0.45710674,0.19627622,-0.28887463,-0.11892561,-0.7771389,0.03098767,-0.9768024,0.5405691,-0.16053505,-0.20044568,-0.027385626,0.19885515,0.40703186,-0.3388086,0.17454918,0.06939609,-0.29484925,-0.06454957,-0.3879626,-0.081832506,-0.49984142,-0.4167173,-0.049688075,-0.7887731,-0.4300067,-0.09404046,0.13391533,-0.34289208,0.07297599,-0.17364076,0.15348913,-0.4117226,-0.096502356,0.29036143,-0.33627516,0.36889938,-0.4709981,0.012732251,-0.040141765,0.3627688,-0.11409068,-0.21011356,0.2881512,0.32703486,0.5549231,0.23975895,-0.37700078,-0.048059948,-0.20700362,0.1513386,0.4087588,-0.05539169,-0.31738684,-0.33811226,-0.0017443427,0.29202223,0.43931028,0.08021414,-0.17353341,0.083874166,-0.11152865,-0.24410519,0.25958976,0.53149456,-0.38260725,-0.33939424,0.18035075,0.6808344,0.00961563,-0.24305712,0.2170748,-0.020406669,-0.39946026,-0.21730936,0.13893107,0.056196306,0.53754985,-0.036977734,0.19688585,0.71750504,-0.13717273,0.059846144,-0.07037068,-0.11889909,-0.26056802,-0.24279752,-0.07000048,0.22387567,-0.74968,-0.0039890492,-0.2631924,0.66159546,0.18820815,-0.7329728,0.44959527,-0.48581156,0.0791403,-0.11065917,0.61502755,0.520369,0.36252183,0.25318483,0.8375235,-0.42767796,0.25973925,-0.08046215,-0.38327006,-0.05621304,-0.3444504,0.08987652,-0.533023,0.37819663,-0.08767843,0.26723242,0.051708855,0.41214833,-0.5397831,-0.10826145,0.27906355,0.87071526,-0.34361118,0.0095202755,0.6971712,1.1199192,0.93100685,-0.120526776,1.3139865,0.36425424,-0.19202837,-0.0065008574,-0.025127213,-0.5113229,0.10875099,0.42189333,0.25632626,0.4029805,-0.035501186,0.018977566,0.33801562,-0.29297575,0.09483989,-0.044153415,0.14416017,-0.059311707,-0.08854319,-0.5447245,-0.036735952,0.1254671,-0.25583845,0.022446709,0.28487402,-0.09574264,0.5968801,0.024444252,1.5016495,-0.18303771,0.07173236,0.11945764,0.53587824,0.37362844,-0.0725201,-0.013104728,0.45249483,0.38828135,0.0038029552,-0.45790836,0.22030266,-0.3293365,-0.54547685,-0.13153997,-0.36497575,-0.086412035,-0.010894426,-0.44954208,-0.16040398,-0.0109188985,-0.33389348,0.34596154,-2.7294085,-0.28728512,-0.1459565,0.3111225,-0.39162564,-0.18879496,-0.12298907,-0.3690672,0.31919998,0.3481038,0.34047166,-0.6539345,0.56330687,0.5877328,-0.2552635,-0.20161493,-0.6141032,-0.127122,-0.04595946,0.5514626,0.027296275,-0.28623253,-0.25894192,0.282695,0.7111715,-0.07603153,0.19228114,0.43748623,0.37278724,0.089197315,0.6151245,0.035053916,0.5672943,-0.38405737,-0.10686115,0.39670494,-0.1839509,0.24449399,0.03936967,0.17171267,0.43274498,-0.41152218,-0.79757273,-0.6827259,-0.448646,1.034089,-0.36838728,-0.48197207,0.1430236,0.025700228,-0.14166902,0.026887996,0.38307992,-0.019202087,0.30689344,-0.6056456,0.11082548,-0.095069565,0.20389497,0.02911513,-0.04155189,-0.35485205,0.674763,-0.066128895,0.6691063,0.27918157,0.21783611,-0.01610962,-0.33122277,0.01224208,1.0396773,0.2889843,0.08265467,-0.20295154,-0.24072422,-0.27959752,-0.18937135,0.0050322884,0.4628251,0.98617303,-0.12397225,0.122655876,0.30689248,0.040897984,0.0025770802,-0.04142041,-0.2019014,0.05253791,0.17797658,0.39059612,0.44800502,-0.11799506,0.42262825,-0.28598526,0.42114636,-0.17705777,-0.63221544,0.47134972,0.549466,-0.20024215,-0.0704921,0.5274846,0.48708487,-0.6413608,0.5171696,-0.798634,-0.3201442,0.7178529,-0.10512304,-0.474138,0.28995234,-0.25206017,0.28250363,-0.970668,0.24861859,-0.30139646,-0.36190742,-0.2756233,-0.27279416,-3.782872,0.27419105,0.040589787,-0.09953223,-0.2971972,-0.09674927,0.3022301,-0.5227732,-0.5800397,0.0028843454,0.20119755,0.5817111,-0.12933435,0.05062994,-0.51082987,-0.16622521,-0.042652737,0.35044572,-0.020113068,0.12851359,-0.2817263,-0.32747886,-0.24137414,-0.12401606,-0.54055727,0.22953251,-0.6443453,-0.43945575,-0.17564337,-0.42160764,-0.23268506,0.51240915,-0.26853347,0.008701482,-0.22312011,0.010047832,-0.23481742,0.11733564,0.16082372,0.21733348,0.07822589,-0.083037324,0.004298764,-0.3863173,0.23758231,-0.010193421,0.38249296,0.10012799,-0.14422278,0.05417972,0.38654834,0.59504765,-0.20630734,0.8816699,0.060109768,-0.06035,0.4594508,-0.3532397,-0.31321293,-0.7037059,-0.42837754,-0.19316682,-0.42004487,-0.6133731,0.1339298,-0.26225767,-0.7696652,0.75831264,0.11868082,0.3980697,0.0019762425,0.5632188,0.3699271,-0.15841614,-0.115436845,-0.04365133,-0.18816482,-0.5209335,-0.3199558,-0.6887173,-0.5263442,0.12140907,0.80801076,-0.4236329,0.051720973,-0.010024999,-0.14224488,0.06508715,0.21670322,0.3467074,0.34478974,0.4739239,-0.031524807,-0.74175435,0.46617046,0.078076676,-0.20973,-0.41345373,0.016331013,0.6299247,-0.81751496,0.53015935,0.3340064,0.10851394,-0.009541603,-0.49908093,-0.0684498,0.009809802,-0.31533688,0.53413373,0.059647474,-0.84414214,0.5018898,0.4423186,-0.30679798,-0.6326052,0.21183386,-0.10026206,-0.21773997,-0.1488653,0.37728882,0.0027958325,-0.037225995,-0.14524218,0.082591906,-0.66341656,0.1771324,0.39625248,0.0011035204,0.311824,-0.07639007,-0.45898676,-0.60216445,-0.023202134,-0.60513455,-0.1520001,0.30066368,-0.12222139,-0.17538984,0.35131106,-0.054073017,0.43754557,-0.3409669,0.1402545,0.106274135,-0.37353644,0.34490234,0.49237347,0.17735751,-0.38265276,0.49730363,0.14149919,-0.30327225,-0.1248366,-0.053990774,0.42192087,0.13164487,0.29222605,-0.15963085,-0.062035646,0.4317854,0.7971502,0.24201016,0.54665923,0.11649247,-0.06680634,0.42761317,0.14979695,0.070049815,0.14215888,-0.42006463,0.07436478,0.016453627,0.141077,0.4959011,0.30513898,0.3155244,0.101070605,-0.05855679,0.018860383,0.16590694,-0.1876343,-0.9537115,0.33477202,0.29541317,0.7092351,0.4424588,0.21381949,-0.10413963,0.47782776,-0.3553557,0.12647857,0.32047603,-0.048733596,-0.4157772,0.8736337,-0.624236,0.2869416,-0.1694741,0.0016933616,0.115160026,-0.021681266,0.5055233,1.0253782,-0.11298341,0.062322207,-0.07390324,-0.007259258,0.05396209,-0.3343974,-0.11052046,-0.17275403,-0.28668424,0.64164144,0.32858038,0.37515777,-0.26952794,-0.12556358,0.037664797,-0.10141083,0.28843427,-0.08142711,0.12454784,0.09506755,-0.24361052,-0.22967115,0.7016637,0.12827303,0.09889066,-0.19783385,-0.49875566,0.14628948,-0.09198512,0.0938291,0.016645487,-0.67583,0.21551763,-0.23895833,-0.5637211,0.6087044,-0.2409353,0.01275021,0.18151297,-0.044303775,-0.08990825,0.06284881,0.03299457,0.64719707,0.15687421,-0.29988042,-0.3569402,-0.036028672,0.17321014,-0.38780212,0.09880643,-0.37121627,0.13158576,-0.6093846,0.57818,-0.01348645,-0.54919106,0.32295945,-0.16392449,-0.13658085,0.5190349,-0.076839924,-0.18179809,-0.0074710823,0.0007313277,-0.43476486,-0.15906748,-0.26890263,0.26396495,0.009882705,-0.10291598,0.08788286,-0.09731964,0.027837455,0.47345623,0.056201924,0.37299317,0.11084629,-0.13744578,-0.31870922,0.26988727,0.15919529,0.27744848,0.019641936,0.121776536,-0.14501722,-0.34080854,-0.2678171,0.113336824,-0.17428745,0.23821568,0.11533741,-0.26842132,1.0720326,0.10951834,1.2355394,0.05769113,-0.41025785,-0.03563157,0.49707156,-0.03857728,0.055064537,-0.43722865,0.9965619,0.6688398,-0.11626337,-0.06246803,-0.26648286,-0.21337166,0.3290977,-0.39678416,-0.05112425,-0.08078371,-0.68577605,-0.42108265,0.31771317,0.28077212,0.23901394,-0.06634255,0.1251909,0.026167925,0.075976096,0.19781582,-0.72043496,-0.19201064,0.22714822,0.22720662,-0.31631687,0.044806607,-0.36087593,0.39832544,-0.759088,0.17398548,-0.54564613,-0.05493256,-0.061523598,-0.42139435,0.15001805,-0.12946382,0.23230852,-0.25286725,-0.398947,-0.010662858,0.3502173,0.11941885,0.21670552,0.6668495,-0.2605113,0.2613848,0.19549395,0.41687775,1.3122321,-0.32964876,-0.17860796,0.29994208,-0.3759747,-0.6627437,0.20837796,-0.3946984,0.0008844393,-0.10544358,-0.5279279,-0.40125498,0.24410772,0.3173366,-0.07022209,0.105507314,-0.68523735,-0.019500494,0.27247366,-0.3203396,-0.24784441,-0.20529246,0.28754538,0.7760014,-0.30662584,-0.25759563,0.07252257,0.34687564,-0.36977476,-0.7184253,-0.06455616,-0.11663122,0.39685816,0.16698305,-0.2567555,0.11495621,0.22679329,-0.5250549,0.10066128,0.5327891,-0.28818864,0.14844243,-0.27833322,0.0707232,0.93748105,-0.15996528,-0.35843238,-0.60659635,-0.52292347,-0.87397563,-0.57317144,0.2860518,0.20282969,0.13992074,-0.2632853,0.026705146,-0.26177973,-0.20382714,0.1348577,-0.41282204,0.27460846,0.04077145,0.635588,-0.2737996,-1.005823,0.19579895,0.21098618,-0.11110008,-0.62722635,0.6671189,-0.19848903,0.7795045,0.008611978,-0.19724552,0.19481643,-0.6057162,0.24491559,-0.4987674,-0.020390805,-0.8050543,-0.04726663,315 -414,0.54063404,-0.102253236,-0.6052493,-0.12693699,-0.3117202,-0.24589707,-0.4119399,0.16163029,0.41252595,-0.19989201,-0.20703192,-0.11057372,0.12781331,0.5540054,-0.003562561,-0.74444324,-0.13397342,0.31759462,-0.902627,0.51911324,-0.5119008,0.3927934,0.08648949,0.29092067,-0.015842557,0.3162491,0.2437503,-0.11013581,-0.08784159,0.1404783,-0.103730224,0.4726956,-0.90985054,0.028594498,-0.080936745,-0.24756067,-0.04701863,-0.36041668,-0.20073785,-0.8689289,0.07477329,-0.7828173,0.5155017,0.0342505,-0.26872987,-0.19155338,0.044635158,0.5631176,-0.26965553,0.034552198,0.31025702,-0.19910471,-0.24655461,-0.32685024,-0.018953482,-0.3998422,-0.6180678,0.016997125,-0.54646355,-0.32792705,-0.28023186,0.14211793,-0.22652674,-0.0038260669,-0.26099265,0.5093968,-0.49285513,0.079429425,0.4194774,-0.24100721,0.46245155,-0.47300562,0.15614478,-0.20232224,0.58100253,-0.0956533,-0.2638978,0.4134354,0.49719283,0.4536777,0.2101017,-0.35192892,-0.23539697,-0.09428294,0.294128,0.31217504,-0.17397204,-0.31249973,-0.02014431,-0.047616582,0.15599084,0.28520602,0.12962393,-0.49720597,-0.03457929,0.0015834527,-0.022669679,0.5371281,0.5520118,-0.26101774,-0.39229706,0.350941,0.8747371,0.4063831,-0.21179543,0.03214877,-0.05239197,-0.725546,-0.20232359,0.19248745,-0.22379863,0.40242085,-0.02990581,-0.023085805,0.91927904,-0.21098253,-0.27680907,-0.06797259,-0.20193043,0.03134414,-0.25908655,-0.18116103,0.34493488,-0.53137887,0.08267333,-0.105435885,0.4570147,0.23527965,-0.8551532,0.43293577,-0.65600604,0.21220405,-0.0660581,0.74742424,0.80806553,0.5342885,0.4505345,0.8048776,-0.37585607,0.23370944,0.068826415,-0.6248194,0.16936299,-0.36664742,0.16754845,-0.5542719,-0.015583209,-0.3152521,-0.07044519,0.18881099,0.22940421,-0.6609565,-0.022015104,0.16275199,0.68205446,-0.3060526,-0.23430708,0.621267,0.96582943,1.1449515,0.1015734,1.2033012,0.4494907,-0.29846573,0.32529154,-0.459762,-0.8319134,0.16323702,0.30865103,-0.44345978,0.46763405,-0.1577836,0.13503557,0.43516037,-0.2501026,-0.008389422,-0.039054755,0.3483893,-0.029192021,-0.31239864,-0.5917406,-0.13092558,-0.14286482,-0.037479375,-0.0021323988,0.30981627,-0.12650569,0.35291725,0.028153734,1.3836317,-0.1710807,-0.013567321,0.027631048,0.45218918,0.2544986,-0.27893025,-0.16820095,0.46718964,0.3800557,0.10062977,-0.51048446,0.42922583,-0.22633503,-0.43529367,-0.06351844,-0.38199314,0.21830857,0.10152478,-0.33619976,-0.10744556,0.07702553,-0.30516538,0.57272357,-2.5402377,-0.20214394,-0.061678503,0.32167158,-0.2437712,-0.23965092,-0.06922028,-0.5829686,0.1404957,0.18424316,0.5552923,-0.6256823,0.48169118,0.54027927,-0.68782365,-0.042798292,-0.83351076,-0.1946534,0.034863647,0.45387056,0.1437101,-0.04029465,0.12505995,0.2634662,0.59482425,-0.037096746,0.14899333,0.5615603,0.33170462,0.09951138,0.63046396,-0.01178595,0.60361344,-0.22141615,-0.259803,0.5333614,-0.08566101,0.15748286,-0.06871543,0.02892476,0.6157003,-0.42052856,-1.1583726,-0.6914422,-0.4591493,0.82923,-0.37628695,-0.6074724,0.3231903,-0.12609808,-0.12682487,0.1481173,0.5670039,-0.0440965,0.2590678,-0.8340216,0.089168124,-0.039008614,0.2781301,0.1884081,-0.070569545,-0.3692755,0.6387512,0.035325013,0.47287577,0.34700647,0.26264626,-0.18918502,-0.4800094,0.08795066,1.0044838,0.18226497,-0.05277747,-0.2531071,-0.41189298,-0.18441735,-0.10219066,-0.18343091,0.54992443,0.7203211,-0.24267602,0.15347593,0.22132467,0.03357633,0.11803112,-0.1775327,-0.28383246,0.09761397,0.1029735,0.42894882,0.97901905,-0.29296726,0.51594394,-0.2773793,0.34182733,0.097232565,-0.7508936,0.70875317,0.78055537,-0.09060268,-0.051372197,0.5621095,0.3496806,-0.4102076,0.69828266,-0.6205288,-0.22748895,0.652701,-0.14691925,-0.48256066,0.2290148,-0.2700197,0.21718587,-0.84147936,0.40713018,-0.36782306,-0.25879428,-0.2446215,0.028090332,-3.5963027,0.28998545,-0.1113816,0.10455572,-0.16993691,0.030252615,0.2258776,-0.6791484,-0.60061455,0.055490177,0.19342764,0.5526169,-0.28351867,0.031137366,-0.34383184,-0.3898795,-0.08512606,0.23840399,0.19809686,0.47112414,-0.12680352,-0.5123605,-0.0040665013,-0.10272867,-0.50617445,0.076882824,-0.716093,-0.5707463,-0.17849053,-0.7511736,-0.3081304,0.66454875,-0.5546131,0.031302325,-0.28322178,0.1331289,-0.08955385,0.34305567,0.065257326,0.30121073,0.1339659,0.0048478693,-0.093486294,-0.13942182,0.34799144,0.021929512,0.2580196,0.1495192,-0.0733399,0.1941628,0.57205254,0.90309554,-0.22917657,1.0844141,0.56839544,-0.0941275,0.18703942,-0.26136902,-0.096736535,-0.75126374,-0.4276281,-0.20760521,-0.5051606,-0.5201116,0.014540649,-0.35759178,-0.80156213,0.85052305,-0.25669804,0.5641832,0.07221448,0.13587928,0.37132475,-0.33570322,0.019121276,-0.378175,-0.28805718,-0.6891932,-0.2462728,-0.6153449,-0.7572174,0.18587855,0.9070884,-0.4207191,-0.0048356163,-0.06628337,-0.21592681,0.02882735,0.24906752,0.07389666,0.43876174,0.58191055,-0.010189078,-0.6651799,0.40280026,-0.028026488,-0.08227861,-0.55916554,0.20920536,0.6030828,-0.6733431,0.820814,0.1125397,0.019116253,0.027925277,-0.59929264,-0.3901383,0.14659522,-0.275231,0.5660521,0.081955865,-0.8061985,0.3837827,0.31597596,-0.70329046,-0.75660473,0.39622298,-0.10345098,-0.2527191,-0.07602284,0.45339128,-0.0061263614,-0.07423084,-0.41673204,0.18609068,-0.44216117,0.16767791,0.31155983,-0.106094934,0.16965686,-0.081669755,-0.25493068,-0.94538325,0.110234894,-0.41034287,-0.2378989,0.3968816,-0.16973867,-0.07956917,0.07921697,0.4453105,0.27752432,-0.19297075,0.041568033,-0.033168335,-0.28872973,0.27230856,0.46766886,0.439851,-0.5019837,0.4918907,0.09736109,-0.3897686,-0.117636,-0.09028002,0.43151283,-0.08295625,0.38204083,-0.093419,-0.23761858,0.17389974,0.62243754,0.152109,0.44012758,-0.06923161,-0.10622082,0.41608983,0.08887042,0.21586323,0.002896345,-0.48198482,0.17246325,-0.06910002,0.2268986,0.65475255,0.31058073,0.16401508,0.023765922,-0.28845713,0.013943212,0.29873443,-0.024296688,-1.2315214,0.5191698,0.38159662,0.8034574,0.5407075,0.21684754,-0.20614684,0.69256103,-0.3265757,0.17453742,0.4343173,-0.15528354,-0.5512938,0.7042344,-0.7390477,0.3899799,-0.08238256,-0.044725437,0.21633044,0.12976383,0.34390026,0.85469997,-0.39478293,0.036199573,-0.07876235,0.005993657,0.17772762,-0.3015944,-0.051408987,-0.40018293,-0.418916,0.9435624,0.4871967,0.39769062,-0.16613145,-0.038958013,0.12908377,-0.30228376,0.2880606,-0.22988507,0.065710194,0.32471988,-0.5001295,-0.010015539,0.57662904,-0.081465736,0.005548439,-0.13175528,-0.25450987,0.118134856,-0.32587528,-0.13417049,-0.16259651,-0.8267131,-0.15315475,-0.17335561,-0.31733528,0.5894146,-0.13788421,0.16219105,0.12799238,0.029437708,-0.32241794,0.5382739,-0.039992165,0.8488091,0.36081147,-0.15690374,-0.226789,0.3124378,0.3151556,-0.23207597,0.09938624,-0.3075227,0.016518947,-0.55251634,0.5544768,-0.076416,-0.55909073,0.09098514,-0.08639539,-0.0297952,0.6381701,-0.22191092,-0.37060675,0.005250492,-0.12542485,-0.26248643,-0.13499191,-0.22196345,0.18150909,0.205219,-0.15861921,-0.21796529,-0.082956664,-0.12997465,0.60847056,0.06350797,0.50096065,0.20774695,-0.01682525,-0.19159195,0.17487957,0.37253624,0.388144,0.12303482,-0.05360726,-0.3641267,-0.27376047,-0.4359981,0.090353794,-0.052282188,0.22555482,0.04693201,-0.16304244,0.8423926,0.077954285,1.5160463,-0.07189349,-0.2536002,0.21212935,0.4021751,-0.074735545,0.06105117,-0.55345255,0.8824658,0.5456859,-0.09931254,-0.036341507,-0.46590042,-0.19181983,0.07050871,-0.35114196,0.14770015,-0.08799406,-0.66956365,-0.36437678,0.17548601,0.25170282,0.13582847,-0.055392265,0.08944503,-0.011538401,0.06116697,0.25602326,-0.5964688,-0.24496278,0.16667119,0.4358291,-0.116987094,0.11765419,-0.3323245,0.46361944,-0.6639167,0.19366303,-0.5217193,0.12378387,-0.3210118,-0.42308384,0.17478968,-0.016135802,0.30267113,-0.27081206,-0.30448887,-0.14947622,0.5364639,0.060762204,0.14789139,0.8601058,-0.33343768,0.07988671,0.13007702,0.5550452,1.1094105,-0.6171438,-0.088464804,0.41957855,-0.31588563,-0.6074737,0.38174182,-0.35949108,-0.0350059,-0.27884167,-0.55864394,-0.51221126,-0.00518206,0.03962249,-0.08217569,0.023842815,-0.6560802,0.022846427,0.21615829,-0.41153622,-0.13650689,-0.14633505,0.52022403,0.8760378,-0.45048407,-0.577417,0.056030374,0.0556367,-0.24393494,-0.3848772,-0.09392845,-0.0009537978,0.37771538,0.19940902,-0.44217667,-0.0032394188,0.39741638,-0.5138225,0.10933856,0.33716062,-0.37473768,0.24320817,-0.23435807,-0.1727355,1.036192,-0.37345406,-0.048646025,-0.37098795,-0.61073494,-1.1294944,-0.33685756,0.34334582,0.15900238,0.0165617,-0.424344,0.094692364,-0.23729093,-0.13322373,0.16617295,-0.5666043,0.3028621,0.08243863,0.59218353,-0.39047846,-0.90021676,0.1409393,0.34948722,0.047917347,-0.79538214,0.6025876,-0.06763016,0.89052165,-0.020928916,0.0448528,0.10607137,-0.466521,0.083445124,-0.3143096,-0.035720076,-0.7991854,-0.039501633,327 -415,0.55697024,-0.18593165,-0.5039282,-0.019295394,-0.22326647,0.075483195,-0.1534885,0.5369783,0.38177222,-0.4452929,-0.24820915,-0.23810796,0.1251162,0.23560087,-0.16382718,-0.5480205,0.016394794,0.2754784,-0.60459524,0.64160603,-0.45543677,0.3501196,0.06622028,0.2869432,0.3508834,0.21405719,-0.023004744,-0.13708849,-0.3945915,-0.109718084,-0.17938659,0.28068596,-0.40993366,0.12316624,-0.3108563,-0.4366441,-0.21588616,-0.6625903,-0.28378835,-0.8211619,0.40590924,-0.8522111,0.5035219,0.111288674,-0.20811357,0.22056031,-0.008001151,0.20315936,-0.2020311,-0.053275824,0.17298259,-0.20558597,-0.067892544,-0.26929003,-0.20714346,-0.18066093,-0.6497941,0.09509746,-0.518058,-0.14990303,-0.22515838,0.17328432,-0.34664303,-0.12937029,0.050427888,0.60003215,-0.40975854,0.07536824,0.10510373,-0.028178392,0.18409677,-0.47116822,-0.30304018,-0.10573571,0.53784007,-0.3373192,-0.3210096,0.29254124,0.28474933,0.5726418,-0.09053204,-0.14171569,-0.3640612,0.13013971,0.08218639,0.474404,-0.08407247,-0.75496656,-0.02176264,-0.05339691,0.26517776,0.21501909,0.19717054,-0.25870436,-0.13201593,0.037050012,-0.18276569,0.59079295,0.48852545,-0.31626612,-0.14127986,0.37192732,0.5126856,0.15504082,-0.05832383,-0.12235316,0.044239577,-0.58193356,-0.19703226,0.17518635,-0.21446697,0.5502781,-0.25447935,0.30459908,0.5433014,-0.19204763,-0.08743585,0.2930201,0.05075837,-0.17318273,-0.116882004,-0.22583617,0.22056226,-0.3924922,0.12675908,-0.18033688,0.85724926,0.229561,-0.75756234,0.42374086,-0.61452836,0.24951343,-0.024361173,0.53903073,0.7823688,0.4021015,0.46518523,0.6864443,-0.3519802,-0.022362012,-0.00046342186,-0.50454235,-0.08622565,-0.21225426,-0.12300769,-0.5626454,-0.043166187,0.019482728,-0.20439386,0.25783387,0.51267445,-0.6226255,-0.18618062,0.14805044,0.72943777,-0.23769364,-0.14402506,1.080097,0.95040697,1.0383278,0.023050351,1.1923119,0.26915386,-0.42075735,0.2656445,-0.40537125,-0.7425638,0.35108218,0.20518629,-0.570306,0.38427654,-0.016648471,0.11289766,0.22999111,-0.36592916,0.003340606,-0.15578605,0.051445466,-0.0035525945,-0.1748333,-0.43692842,-0.382368,-0.22795257,0.08547851,0.31190854,0.39458257,-0.23511504,0.4182594,-0.068598375,1.5203645,-0.09153166,-0.13837956,-0.011174068,0.48919177,0.2730004,-0.11631974,-0.2795411,0.38301256,0.30194372,0.033800818,-0.67172444,0.078263216,-0.16317317,-0.43273288,-0.17648889,-0.4079187,-0.065582134,-0.13252923,-0.32656607,-0.18158995,-0.3114312,-0.49764544,0.5038814,-2.5742154,-0.27873677,-0.04443882,0.3907192,-0.1817118,-0.36717197,-0.3107085,-0.6523361,0.3323206,0.17370269,0.4673131,-0.8304261,0.32178774,0.4597532,-0.6088423,-0.21120603,-0.68132687,-0.017884,-0.04281981,0.30558997,-0.015763674,0.00045482177,0.24616863,0.07532263,0.49082628,-0.039313767,0.14389388,0.26298058,0.5862881,0.03586034,0.42242068,-0.018302683,0.60938984,-0.272392,-0.18754135,0.35946774,-0.42153907,0.26535422,-0.11838611,0.094246574,0.5060559,-0.5948467,-0.83673424,-0.697936,0.03967275,1.0496505,-0.07720382,-0.4431572,0.20175853,-0.42991668,-0.2786643,-0.12794837,0.67957467,-0.16726674,-0.29260913,-0.8129564,0.05174287,0.0029002258,0.09787739,-0.056110773,0.13575025,-0.30557993,0.6752614,-0.0012273107,0.4289568,0.18265486,0.20026878,-0.51139337,-0.5321436,0.12301052,0.85214984,0.3963237,0.17448531,-0.2085201,-0.21602993,-0.45349917,-0.16287991,-0.05559328,0.6936042,0.7000642,-0.11194193,0.11073453,0.3760707,0.088404186,0.18644616,-0.25191027,-0.23673749,-0.22260617,-0.030015286,0.6108224,0.67634434,-0.18720742,0.5509079,0.14792418,0.14362623,-0.25137815,-0.4361856,0.6953473,1.1732641,-0.15974307,-0.28486362,0.4721373,0.4177135,-0.36143568,0.45716387,-0.52572817,-0.34853813,0.45189217,-0.23516639,-0.3930826,0.30510283,-0.31103125,0.2617057,-0.94587994,0.2797076,-0.12812746,-0.41355562,-0.45875898,0.0032238045,-2.6593075,0.20466717,-0.22059569,-0.11831002,-0.1829224,-0.1365221,-0.07640997,-0.5298944,-0.6502852,0.13167419,0.07516021,0.8640303,-0.10212338,0.20866777,-0.16757227,-0.3652598,-0.34142599,0.067264244,0.029385881,0.6174087,0.035335,-0.4294524,-0.022032721,-0.15942886,-0.377681,-0.0061515016,-0.54301965,-0.47151157,-0.028856626,-0.59145844,-0.43026748,0.70400774,-0.33440295,0.110645376,-0.2250295,-0.08147781,-0.0013902975,0.2738531,0.029743213,0.086818375,0.08560658,-0.051778655,0.19538797,-0.18278639,0.3145246,-0.09645862,0.27219397,0.42971134,-0.12495626,0.38131282,0.49391678,0.8308553,-0.03819104,1.0093307,0.49039987,-0.0058371425,0.22949086,-0.26925358,-0.27223414,-0.4919332,-0.28200144,-0.08983401,-0.5029181,-0.46217233,-0.12680814,-0.40015382,-0.8390304,0.43905824,0.024943879,0.25954786,0.0076145446,0.34371153,0.70411783,-0.14574768,-0.0018439889,-0.044968914,-0.19327787,-0.53566515,-0.122635536,-0.6606798,-0.4345291,0.26011673,0.7856217,-0.24163881,-0.03542804,0.1662003,-0.22752213,-0.033027865,0.2075794,-0.018797908,0.1853933,0.36903563,-0.105961196,-0.6574367,0.5157075,-0.027093997,-0.12239333,-0.54317236,0.282199,0.5088249,-0.6375475,0.434784,0.370177,-0.0355486,-0.028144224,-0.29626963,-0.119401455,-0.095810674,-0.09609567,0.3470603,0.2806452,-0.6897787,0.42959172,0.38174972,-0.1217852,-0.75899684,0.55520296,0.14075819,-0.30624968,-0.13982151,0.3911348,0.26539353,0.0010058923,-0.3482897,0.12959848,-0.43612978,0.19990925,0.2132415,-0.088574655,0.03750574,-0.2476115,-0.22059515,-0.8526777,0.11645285,-0.5179342,-0.2714388,0.21103512,0.21947327,0.23306839,0.14905035,0.024920782,0.30868334,-0.34347758,0.032705307,-0.1382307,-0.15375075,0.19172296,0.36276883,0.52327603,-0.541402,0.5744433,0.02658488,-0.108581565,0.001707886,0.04874634,0.459792,0.04835666,0.3795535,0.25406146,-0.4191114,0.3839533,0.7419481,0.27399513,0.30896392,0.14036857,-0.12631197,0.121784225,0.13998684,0.37121218,-0.13327596,-0.39654657,-0.0073994547,-0.19579048,0.08932972,0.49025235,0.14106277,0.21553409,-0.10819212,-0.34589168,-0.00175875,0.23115608,-0.045129895,-1.2976902,0.39418554,0.25641856,0.8807331,0.5127942,-0.11791106,0.09203543,0.5428781,-0.2939093,0.20515056,0.32551816,-0.102498956,-0.51007044,0.47515222,-0.6373621,0.5991271,-0.09410144,-0.030648692,-0.0037950852,-0.08582,0.33240047,0.7388097,-0.2793819,0.08991615,0.045845505,-0.2564564,0.22014412,-0.4123404,0.0631729,-0.67860323,-0.084522225,0.8085639,0.47783574,0.32632992,-0.046437614,0.08495159,0.10854054,-0.16880396,0.061136186,0.15951075,0.23860486,-0.027181502,-0.66102135,-0.036038797,0.58788025,0.0024369445,0.15322301,-0.034345273,-0.19147527,0.23986837,-0.35207734,-0.1461478,-0.20602766,-0.890319,-0.14895448,-0.35368863,-0.40955654,0.63352853,0.066524886,0.26654047,0.33595392,0.13399705,-0.38256183,0.45201907,0.21385086,0.6218699,-0.070945896,-0.18909724,-0.40693602,0.3064482,0.3210702,-0.18793336,-0.19923456,-0.08072082,0.03752402,-0.43408117,0.55699193,0.03952965,-0.22612047,-0.059410688,-0.012826762,0.14447357,0.657144,-0.24995513,-0.14958858,-0.066080384,-0.20317991,-0.30648574,-0.13262169,-0.100720085,0.2991689,0.4702346,-0.17082198,-0.1980567,-0.09867125,-0.17039652,0.31160358,-0.070679925,0.45057684,0.3749868,0.16910265,-0.3130037,-0.18259077,0.28161484,0.5800377,0.028862188,-0.20210464,-0.34953484,-0.29488897,-0.46844572,0.13079092,-0.09827656,0.24275301,0.15367222,-0.22495201,0.5836233,0.06614102,1.1510957,0.08154059,-0.40605316,0.15158257,0.4548368,0.036499757,-0.2798706,-0.3198673,1.0247247,0.43583098,-0.14770074,-0.121856384,-0.48774222,0.05250607,0.19140817,-0.18631239,-0.19042744,0.12512359,-0.5682424,-0.2538678,0.28129986,0.1615523,0.18018079,-0.20221664,0.08093035,0.19251837,0.017495189,0.18431018,-0.46078014,-0.19421983,0.29051742,0.3244682,0.03617965,0.10966318,-0.46352905,0.3906844,-0.46752936,0.070443705,-0.23144522,0.29797173,-0.2562425,-0.41820297,0.3189591,0.21810913,0.2801848,-0.3276282,-0.40429014,-0.5004433,0.52191573,0.11014361,0.11591799,0.4666169,-0.3197877,0.072249,0.058077242,0.52556694,1.0949749,-0.06809918,-0.06613337,0.34283066,-0.3597128,-0.65497875,0.45253468,-0.41847378,0.19166604,-0.014435644,-0.10950198,-0.7045147,0.19173047,0.20667635,0.24864015,-0.0037032792,-0.6756587,-0.27098113,0.3215386,-0.34974962,-0.18903764,-0.35776022,0.07646502,0.6125534,-0.2423598,-0.22732387,0.1526819,0.17967983,-0.20711221,-0.5804194,-0.018205348,-0.4104247,0.31099224,0.08090145,-0.3341592,-0.13814603,0.0892974,-0.4849586,0.16763623,0.08970368,-0.48104984,0.18128459,-0.32516286,-0.09280883,1.0595976,-0.29422307,0.37331077,-0.34952646,-0.5284388,-0.8959766,-0.34120616,0.41524622,0.026593575,0.0506118,-0.74969923,0.07360733,-0.045967076,-0.34900528,-0.02021257,-0.4915604,0.52618617,0.14618339,0.24061091,-0.05859562,-0.9043788,0.049218982,0.097829945,-0.39989927,-0.68584627,0.45964092,0.0657079,0.8556474,0.07199126,0.11282141,0.48143214,-0.45610908,-0.14652114,-0.17488733,0.013408669,-0.61532754,-0.032167505,328 -416,0.31788117,-0.25696698,-0.39834023,-0.04159101,-0.20051713,0.09269315,-0.13349858,0.3365082,0.024051325,-0.44688776,-0.23077671,-0.29311275,0.009740626,0.28559023,-0.23427913,-0.3173093,-0.06745498,0.14560743,-0.34101826,0.47608763,-0.42801365,0.19272831,0.16002224,0.31752452,0.24081092,0.179639,0.14980449,-0.13939385,-0.23421441,-0.30131277,-0.21401946,0.2762048,-0.3667274,-0.008193163,-0.11250501,-0.48374,0.11329346,-0.5261802,-0.29629883,-0.720549,0.31691688,-0.99474245,0.4307073,0.100516595,-0.17473745,0.50010943,0.28370485,0.38427812,-0.12614128,-0.116701946,0.29016188,-0.16512826,-0.055253983,-0.20273156,-0.18108305,-0.22122182,-0.5842064,-0.020083671,-0.2556407,-0.3256716,-0.3234208,0.08907706,-0.33245897,0.048026945,0.00745632,0.43904775,-0.48220018,0.089417204,0.17041923,-0.16174786,0.38368884,-0.5906314,-0.17053865,-0.12556422,0.25541368,-0.24374063,-0.086494036,0.27215442,0.3742784,0.36412773,-0.063196875,-0.12714155,-0.32318422,-0.061849944,0.07312248,0.5898567,-0.18863395,-0.33177838,0.0004896096,0.11209063,0.1246578,0.23679058,0.04129265,-0.17654404,-0.15287575,0.17569508,-0.30593368,0.25321296,0.36720848,-0.48900032,-0.15426838,0.35823035,0.5264335,0.12104661,-0.11204841,-0.2604911,0.03303701,-0.5267054,-0.13160944,0.070000485,-0.3284498,0.45942357,-0.096766256,0.3673771,0.59905404,-0.13894634,0.08704729,-0.11236121,0.16100608,-0.14481483,-0.2513086,-0.32150283,0.3001649,-0.30240098,0.18585584,-0.053705532,0.83053166,-0.0013653168,-0.60244226,0.32996628,-0.574677,0.12403692,-0.17515157,0.43133336,0.37736076,0.3047206,0.5191474,0.58427465,-0.4177241,-0.03790591,-0.10548778,-0.38571182,-0.0052072364,-0.084384404,-0.03875845,-0.5198439,0.009893128,-0.008614166,0.0058047175,0.103164725,0.3609681,-0.51444,0.11101009,0.15970469,0.91620266,-0.28634113,-0.011851008,0.57107985,0.91215724,0.89852303,0.007736883,0.8723634,0.14893831,-0.2681997,0.21806674,-0.23961933,-0.5971714,0.32557565,0.6275797,-0.27529377,0.14643614,0.17924602,0.00018144932,0.3989813,-0.36597708,-0.09071102,-0.27799523,-0.13433568,0.26139164,0.008886849,-0.504626,-0.2977769,-0.11109273,0.041928057,-0.04555559,0.21702108,-0.21577528,0.36687723,-0.02310439,1.9497671,-0.052179486,0.10581989,0.19350693,0.34069103,0.07962417,0.056803685,-0.079020016,0.36076212,0.30730125,0.2308516,-0.521084,0.181219,-0.17240132,-0.45505187,-0.064534165,-0.21468782,-0.02480243,0.17260706,-0.427815,-0.086175494,-0.15553907,-0.24854924,0.38205436,-2.7253387,-0.07473975,-0.143719,0.3699976,-0.2991538,-0.448196,0.031447895,-0.44779468,0.4125158,0.2878693,0.4980767,-0.57256216,0.35495326,0.29823086,-0.5537432,-0.1954674,-0.6099485,-0.2464927,-0.051848046,0.3042764,0.031938814,-0.053728875,0.0722211,0.1459885,0.42897964,-0.03684943,0.13923803,0.29638958,0.44194368,0.05686703,0.6846274,-0.049339917,0.45543367,-0.116935,-0.25654572,0.28215533,-0.1690631,0.23834698,-0.021282537,0.10970538,0.45832762,-0.4131946,-0.85965335,-0.7746706,-0.3381064,1.306241,-0.24059503,-0.41979638,0.18816634,-0.12555932,-0.32583028,-0.19376847,0.3915244,-0.097949795,-0.117155366,-0.82348263,0.13793328,-0.10488969,0.18213977,0.09989854,-0.1550647,-0.45468405,0.6184273,-0.15722404,0.45835853,0.4043851,0.1164346,-0.19470458,-0.29065523,-0.10210305,0.9065117,0.37173226,0.058271833,-0.15478122,-0.20595838,-0.22653691,-0.032713577,0.15185939,0.34581348,0.5715223,0.016694423,0.1130545,0.2859896,-0.014205575,-0.04110188,-0.23913649,-0.27188966,-0.008998854,-0.06556658,0.52926004,0.5097422,-0.10022616,0.37746125,-0.029684642,0.39935264,-0.040031824,-0.43083042,0.2335104,1.1652946,-0.118790805,-0.16883829,0.657843,0.6056364,-0.1413599,0.25612345,-0.5158906,-0.2230631,0.43334508,-0.26479533,-0.5581652,0.13221438,-0.21345627,0.009226248,-0.7408106,0.1828568,-0.22851649,-0.43164465,-0.51328677,-0.040483933,-3.5530553,0.2706695,-0.35382,-0.2167808,0.057908397,-0.2036608,0.28105924,-0.6454671,-0.4730923,0.11005423,0.116993226,0.6783435,-0.07066143,0.16726097,-0.23480418,-0.16687904,-0.2052873,-0.007454421,0.14960136,0.32776874,0.04636125,-0.563253,0.03919416,-0.08175661,-0.3973773,0.108424716,-0.6269925,-0.4690425,-0.09677801,-0.4582093,-0.41718537,0.57999027,-0.36182722,0.07371228,-0.1827521,0.00014245936,-0.19762552,0.30458832,0.22331047,0.20145966,-0.13091187,0.046265397,0.09344382,-0.2917764,0.43475574,0.1285937,0.16784754,0.22788732,-0.048889138,0.20160815,0.47423103,0.50326544,-0.025225034,0.88378197,0.5485254,-0.1466384,0.15761726,-0.19253565,-0.27634445,-0.562055,-0.3265241,0.05023747,-0.358329,-0.40103418,-0.09918172,-0.32906976,-0.75592995,0.717662,-0.072179995,0.10170666,-0.031623982,0.29422,0.5558799,-0.23706017,-0.057981644,0.15126503,-0.07131347,-0.6747359,-0.19475259,-0.6008776,-0.44294715,0.0467934,0.90156454,-0.26035348,0.11399799,-0.04283152,-0.22044884,-0.05976287,0.03547669,-0.068436034,0.3233895,0.54049647,-0.16486724,-0.7351027,0.46168444,-0.1394454,-0.094900966,-0.5574213,0.26035744,0.507733,-0.52997506,0.49220088,0.4097953,0.06748936,-0.086829074,-0.47732764,-0.2968971,-0.12288748,-0.35165784,0.36847326,0.14085402,-0.64608985,0.27658215,0.41246796,-0.2369567,-0.7273903,0.5078093,-0.04037726,-0.38539702,0.08884819,0.24473496,0.15500535,0.011032681,-0.13176987,0.22170874,-0.3930912,0.32113335,0.21744467,-0.07632446,0.19646437,-0.24702361,-0.036228828,-0.7768122,0.11009093,-0.32845518,-0.29568562,0.31603876,0.20803082,0.0042122304,0.27176633,0.019657936,0.3846933,-0.26944408,0.062229633,-0.039731357,-0.15099095,0.33723164,0.4747048,0.37721935,-0.49646726,0.57927287,-0.01211178,-0.21108313,-0.15213689,-0.05224686,0.38593534,0.07500221,0.30053473,-0.16310634,-0.30737668,0.34757867,0.5932748,0.24332394,0.43477467,0.011581315,-0.031462174,0.2461652,0.058794916,0.063898645,0.027997034,-0.6801723,0.08183678,-0.2382667,0.11432737,0.5506938,0.12516144,0.32655865,-0.1772003,-0.33614427,0.051954325,0.05501247,0.03090533,-0.8851016,0.34798485,0.061695453,0.6794652,0.4350845,0.028252881,0.010494419,0.7379795,-0.22497106,-0.017049853,0.2984541,0.020369468,-0.49847248,0.5642728,-0.7786029,0.32773477,0.015412958,-0.07476802,-0.13459738,-0.033617742,0.32097748,0.67822677,-0.23857978,-0.010410221,-0.054720726,-0.33671346,0.17866965,-0.41148812,0.037307773,-0.5905743,-0.33586946,0.46029526,0.57504815,0.4202424,-0.11125994,0.030407945,0.10335721,-0.1652187,0.22601749,0.12924694,0.17123184,-0.04755401,-0.8185934,-0.07028946,0.5092371,-0.037205186,0.16177188,-0.06742628,-0.24965717,0.26629847,-0.111021474,-0.11545913,-0.024512503,-0.5777868,0.010454425,-0.29428533,-0.4464232,0.29451367,-0.04453596,0.31052467,0.090570726,-0.014224461,-0.17430039,0.36282662,0.13778406,0.9185562,0.040507097,-0.13004881,-0.4326296,0.15414561,0.00013666866,-0.05843439,0.10575841,-0.3047386,0.096924424,-0.6595453,0.48782578,-0.030423032,-0.19168687,0.035645265,-0.14070375,0.008510709,0.56556356,-0.113189854,-0.064698674,-0.18283644,-0.10545532,-0.26637045,-0.2739293,-0.10421373,0.14591049,0.10868858,0.05490383,-0.1281946,-0.07118952,-0.3407154,0.59606797,-0.04411841,0.4715101,0.32310614,0.049370952,-0.23649596,-0.29084772,-0.055937774,0.48978,-0.114405155,-0.26435092,-0.36037332,-0.5524844,-0.17322834,0.11327778,-0.11996829,0.5104194,0.0710197,-0.12157942,0.81546813,-0.20178764,1.1140352,-0.03203037,-0.38616732,-0.059793882,0.4683993,-0.026650382,-0.054214638,-0.23693798,0.753724,0.5253212,-0.00508722,-0.10301386,-0.39734086,-0.098006144,0.11592363,-0.09334811,-0.02703971,0.00080071174,-0.5211835,-0.3604288,0.13224635,0.24523054,0.25785,-0.044322055,0.2677929,0.31793523,0.033152614,0.43555984,-0.31719705,-0.26860896,0.28648812,0.2621079,-0.08560053,0.16482742,-0.46984503,0.505014,-0.31353846,0.10409565,-0.3871575,0.116124146,-0.15099336,-0.14125288,0.19161272,-0.123405345,0.35966656,-0.26035973,-0.29205492,-0.105907455,0.5114596,0.20879123,0.09499734,0.5528155,-0.26971307,0.05688755,-0.12239669,0.5181209,1.0161339,-0.32863426,0.14022748,0.42226738,-0.24527976,-0.44258904,0.3676605,-0.1356803,-0.07093533,0.16066805,-0.11324266,-0.3930027,0.2992592,0.2437867,-0.07308663,-0.0040870863,-0.4167798,-0.19732639,0.30731472,-0.39087006,-0.21357903,-0.34336025,0.21669352,0.42643785,-0.2824082,-0.3451462,0.008815416,0.2893433,-0.11876488,-0.28638035,-0.09144386,-0.4177359,0.24962965,0.109806515,-0.35467046,-0.2152158,0.06382626,-0.3430688,0.0031005952,0.063600145,-0.3179107,0.04516656,-0.31511083,-0.15384686,1.0513728,-0.23088858,0.0050668395,-0.53808266,-0.3449134,-0.74232197,-0.3746681,0.55973023,-0.05539015,0.09443677,-0.43891606,0.0068511474,0.0059486204,-0.25874093,-0.22717212,-0.3772685,0.4004077,0.15112378,0.47386184,-0.17972147,-0.4781971,0.25029773,0.05895369,-0.102288194,-0.46680313,0.5335923,0.028285073,0.78824294,0.03493943,0.102551565,0.30865726,-0.30989417,-0.14807355,-0.23483443,-0.3264329,-0.74511975,-0.10653523,332 -417,0.39148328,-0.31420752,-0.5052677,-0.15840761,-0.4776012,0.17626747,-0.2429112,-0.01179151,0.09667798,-0.4530015,-0.2006402,-0.43075064,-0.036471684,0.39964804,-0.14380732,-0.48593634,-0.07817312,0.27787873,-0.68214184,0.45430157,-0.40766868,0.23375645,0.10268634,0.42323568,0.10045,0.2194471,0.17979726,-0.058066197,-0.36100462,-0.11054872,-0.06115749,0.16433048,-0.8789382,0.38964313,-0.38307175,-0.30812326,-0.06147313,-0.5988073,-0.23024975,-0.8218509,0.37389788,-1.0210187,0.5674827,-0.05439644,-0.27309936,0.05913077,0.21174489,0.31486443,-0.19422273,0.05561256,0.34901568,-0.49003056,-0.31343108,-0.19456863,-0.36358124,-0.31293556,-0.67655694,0.11161502,-0.5015117,-0.0049299425,-0.116359316,0.3048552,-0.21015622,0.2519798,-0.44553393,0.4232525,-0.4295921,0.027822444,0.24578209,-0.14701758,-0.007753517,-0.46706557,-0.22281003,-0.1143102,0.36271906,-0.072833486,-0.12662302,0.29822645,0.16326377,0.6730167,0.099213004,-0.30596307,-0.23887137,0.0009871231,0.095317885,0.49829465,0.10457908,-0.05811229,-0.30607992,-0.2485576,0.2873648,0.42369467,0.0010261195,-0.40008014,0.08066206,-0.18449466,-0.1580543,0.13522044,0.4414485,-0.17569157,-0.41577336,0.26533312,0.5889934,-0.099177085,-0.09757932,0.028635655,0.10378337,-0.5522562,-0.25134498,0.42045814,-0.20239195,0.5541396,-0.11702146,0.15758447,0.7127547,-0.26098964,0.010029797,-0.21501096,-0.018838763,-0.056363888,-0.37729174,-0.1466484,0.3198247,-0.5251829,0.13182244,-0.27045622,0.6906099,0.09474083,-0.728643,0.35608348,-0.61645174,0.072090805,0.08547907,0.70068544,0.7715451,0.42574194,0.37210733,0.76425946,-0.32922792,0.20840268,-0.10389686,-0.27942947,-0.10324563,-0.26566216,0.31066513,-0.42300877,-0.0011803551,-0.2214518,-0.2195343,-0.20211922,0.5103259,-0.37030867,-0.040447433,0.05450988,0.6591366,-0.39889404,0.0805822,1.0887129,1.008796,1.020413,0.16551253,1.5002261,0.49386913,-0.2882208,0.078534104,-0.27500317,-0.5815798,0.11059631,0.22797358,0.14277825,0.22892046,0.11418391,0.052680515,0.56045187,-0.5109151,0.1705809,-0.08477717,0.22278865,-0.1498731,0.2782102,-0.56459385,-0.41877753,0.10083377,-0.0096003935,0.12184442,0.41394684,-0.16683786,0.6869492,0.14573781,1.2777399,-0.16159578,0.17144284,0.070459604,0.21496716,-0.046067093,-0.18759547,-0.22489317,0.18368807,0.23400007,-0.09575587,-0.57557356,-0.12475269,-0.2763855,-0.29827914,-0.38198617,-0.2340418,-0.01304741,-0.3498462,-0.38679072,-0.29766187,-0.096403204,-0.33686393,0.4530147,-2.0949018,-0.19941041,-0.2992867,0.24401675,-0.2952104,-0.48083884,-0.1589174,-0.5653567,0.3326201,0.24772082,0.22670674,-0.5683869,0.5339194,0.34444088,-0.48385218,-0.19744428,-0.7751029,-0.06765782,-0.09276124,0.2378854,-0.11559864,-0.29142213,-0.44664198,-0.06427218,0.47948432,-0.12149988,0.11298133,0.40118614,0.4713739,0.22685324,0.56859237,0.29408857,0.55994874,-0.4687126,-0.16829689,0.50365436,-0.3675692,0.49072558,0.072699174,0.15743266,0.5826054,-0.7586242,-0.70449716,-0.777939,-0.8150049,0.95682305,-0.39602613,-0.31391412,0.18485539,-0.12218319,-0.22918715,0.1183901,0.5730456,-0.20458078,0.13328885,-0.7465426,-0.05853427,0.0064024054,0.41785067,-0.02429025,0.17358235,-0.60498923,0.6805696,-0.25849104,0.34635085,0.54256725,0.23728958,-0.21688366,-0.36301523,0.18480526,0.9769146,0.34049723,0.14730628,-0.22340132,-0.5283805,-0.14870216,-0.3565204,0.042162802,0.3884997,0.60177183,-0.0074863583,0.023364065,0.32344773,-0.31181622,0.17664722,-0.217567,-0.29096812,-0.15793923,0.13676973,0.6618179,0.56926084,-0.050928585,0.43013272,-0.2428725,0.3805608,-0.09448404,-0.46352005,0.4317977,0.90875477,-0.026270786,-0.07050882,0.88828665,0.5410963,-0.54842085,0.4677278,-0.6407727,-0.38857478,0.49284253,-0.041705202,-0.5750727,-0.052942853,-0.27691147,0.23580208,-1.0478624,0.23521541,-0.22266737,-0.47847462,-0.76971847,-0.14610918,-2.4941628,0.19993709,-0.23788777,-0.025544295,0.0208218,-0.3453827,0.3521636,-0.4533495,-0.7253036,0.23115186,-0.07021698,0.47601438,-0.03619564,0.16032934,-0.296022,-0.19228448,-0.339861,0.21200882,0.35400924,0.22678988,-0.22480781,-0.4236474,0.14856169,-0.35816407,-0.39901596,-0.11672802,-0.8333139,-0.6643891,-0.26434132,-0.6143001,-0.3906577,0.6557756,-0.28452227,-0.07863797,-0.30992338,0.025908474,-0.17723158,0.32887432,0.16693917,0.49261013,0.23408367,-0.07981194,-0.30761623,-0.3826372,0.28742582,0.093448974,0.049916882,0.41954464,-0.025350442,0.32161364,0.27064505,0.7299185,-0.09607482,0.77784634,0.23493876,0.010187856,0.26480448,-0.32624754,-0.2842349,-0.6788754,-0.24302052,-0.17884788,-0.40423152,-0.5318242,-0.14874074,-0.35522342,-0.83406764,0.6553218,0.13212846,-0.06049351,-0.12305606,0.25370625,0.33582646,-0.28401655,-0.00093334913,-0.25944528,-0.026616825,-0.5386768,-0.6665128,-0.7391538,-0.64831275,-0.10635773,1.3435843,0.07080175,-0.18306021,0.21145038,-0.5208372,0.16742049,0.29633158,0.048148043,0.22809713,0.66508293,-0.019348988,-0.6705119,0.45889023,0.14506349,-0.104075186,-0.48467326,0.14123093,0.84800816,-0.7109459,0.73764336,0.50362915,0.14265239,0.04698086,-0.46969572,-0.3201637,0.011220076,-0.26779345,0.4702681,0.33218163,-0.63632107,0.4596314,0.21413887,-0.04036614,-0.97442627,0.2879775,0.044479933,-0.102288544,0.21395476,0.48285595,-0.044276316,0.034300923,-0.22934791,0.102969036,-0.36960265,0.23064484,0.4831583,-0.0074835634,0.26977032,-0.3706138,-0.19222763,-0.6702325,0.09452776,-0.38063285,-0.37923655,0.1236536,-0.04119549,-0.062573954,0.40638217,0.22381186,0.30165553,-0.28783396,0.096343435,-0.16250262,-0.33012876,0.1189922,0.41641945,0.23820616,-0.7009009,0.7632123,0.06026425,-0.133011,-0.2573105,0.048685916,0.36000416,0.19468832,0.2601952,-0.18748805,-0.1979101,0.090225115,0.7073102,0.07102697,0.55875766,0.24602027,-0.0061972737,0.35036537,0.051052768,0.20878565,-0.17069218,-0.36470675,-0.045039184,0.06482405,0.120501176,0.38814512,-0.0417099,0.5695155,-0.052143864,-0.05636855,0.20264135,0.17044719,-0.21848986,-1.1811503,0.24281634,0.08898933,0.7514802,0.6273963,0.06669525,0.011901034,0.6746916,-0.59524524,-0.08678059,0.29311532,-0.008251705,-0.3863184,0.6470683,-0.52354014,0.4970927,-0.30417424,-0.11810614,-0.096728764,0.057470918,0.40388685,0.9616614,-0.16253991,0.048689783,-0.09918839,-0.027095625,0.19942181,-0.23203002,0.074498065,-0.5323039,-0.43423027,0.82095426,0.26284122,0.5751696,-0.29706812,-0.06621692,0.12800613,-0.1467901,0.15114813,-0.024668818,-0.07755597,0.20974134,-0.59450465,-0.050901067,0.65878445,-0.16264357,0.099270605,0.2371454,-0.48846027,0.20680788,-0.1211774,-0.10467972,-0.05513602,-0.919112,-0.10125544,-0.49760464,-0.49341255,0.056290153,-0.3540623,0.10755419,0.14416353,0.15129408,-0.44167623,0.16629656,0.2314547,0.98743427,0.2452925,-0.051994745,-0.09257173,0.17392446,0.39824325,-0.36682442,0.08788057,-0.29529557,0.13689736,-0.69538796,0.6312221,-0.14644305,-0.36630806,-0.040395644,-0.03262576,0.025526868,0.60407966,-0.09225888,-0.06476877,0.20072989,-0.008949871,-0.302201,-0.13744143,-0.29618487,0.17798814,0.044729028,0.08398446,0.0048874957,-0.05008936,-0.1831045,0.781293,0.0983796,0.1782918,0.44920188,-0.12382078,-0.33563298,0.14711185,-0.06626924,0.49166277,-0.024165511,-0.33682474,-0.21819302,-0.06054296,-0.0413607,0.67158467,-0.078034624,0.16910248,0.06927196,-0.34942415,0.86206394,0.11947288,1.0565357,0.11382695,-0.27394974,0.012679781,0.38468742,0.045083832,0.027189795,-0.5172937,0.9753536,0.3994247,-0.10329938,-0.17094907,-0.51361954,-0.17783545,0.24271451,-0.17438366,-0.04412112,-0.16123359,-0.7701168,-0.31431445,0.19126,0.47197896,0.004884579,-0.16905114,0.19380276,0.1931214,0.06504411,0.6011194,-0.61916524,-0.14330073,0.47899765,0.2445685,-0.05137476,0.41605616,-0.24470136,0.43985695,-0.7685421,0.20483875,-0.5229618,-0.025239391,0.06102317,-0.17597389,0.15833183,0.08252849,0.48873633,-0.37001392,-0.19905648,-0.40234756,0.79292494,0.23360452,0.24151771,0.827727,-0.26494858,0.0035093683,0.21128154,0.5154136,1.409126,-0.28357157,0.24728754,0.07746764,-0.13108931,-0.48408392,0.39694375,-0.3488362,0.025062528,0.048176143,-0.44859228,-0.38160425,0.105863355,0.23902893,-0.10965212,0.07286371,-0.45878175,-0.054096818,0.4494608,-0.20000541,-0.24559034,-0.29112652,0.32665682,0.68184704,-0.113258235,-0.21874173,0.03845346,0.2867395,-0.35926583,-0.40924302,-0.046681795,-0.44671887,0.3674731,-0.055263,-0.37479308,-0.07559507,0.22857676,-0.4453943,-0.066190556,0.24763286,-0.29090026,0.03740291,-0.26305676,-0.01132751,1.038313,0.09317352,0.15866843,-0.51521486,-0.6563541,-0.9404147,-0.26359266,0.2755835,0.17618111,0.021560503,-0.4340479,0.1022455,-0.16819875,-0.035948463,0.31396648,-0.50368273,0.31997466,0.29451638,0.5679473,-0.04220484,-0.78001505,0.14337866,0.122144595,-0.174506,-0.3332869,0.39575568,-0.06977365,0.7692439,0.04704992,0.10778966,-0.05365012,-0.55815727,0.48540053,-0.2709639,-0.036567178,-0.8575007,-0.08299335,342 -418,0.28038058,-0.058492415,-0.35166937,-0.16610023,-0.26665673,0.2545003,-0.136235,0.38708666,0.082905285,-0.41255632,-0.13199362,-0.16728891,0.002101581,0.25000766,-0.24715698,-0.32044622,-0.032410305,0.06925832,-0.5162366,0.42515436,-0.3306241,0.25940517,-0.0014066355,0.36031905,0.07784248,0.21268474,0.21626894,-0.24763907,0.025067803,-0.3478977,-0.0670227,0.09430007,-0.5946831,0.34386966,-0.2065184,-0.4100628,0.21890458,-0.33125925,-0.29717755,-0.5764755,0.22308408,-0.8959327,0.59448045,0.19909358,-0.2007751,0.3092058,0.18349501,0.314114,-0.09070194,0.083867624,0.15050514,-0.12622549,-0.079632804,-0.09048818,-0.19773175,-0.46088293,-0.50460476,0.111237966,-0.5274668,-0.10917543,-0.34331754,0.12491765,-0.23745908,-0.062044468,-0.028771725,0.21227573,-0.326106,0.10493721,0.13143703,-0.23030397,0.2334455,-0.46913496,-0.06707778,-0.04568148,0.3821609,-0.35382515,-0.23009814,0.19543207,0.19748509,0.49048725,-0.023543762,-0.121482596,-0.24932694,-0.15456808,0.112905204,0.45323342,-0.02625915,-0.40570492,-0.105429895,0.05778793,0.2013099,0.3347105,-0.048454665,-0.1658847,-0.11209602,-0.00031803336,-0.2569433,0.41716343,0.47803825,-0.5244732,-0.29606763,0.5018755,0.4736486,0.06253411,-0.0550035,-0.06021153,0.014314099,-0.4667086,-0.22584918,0.008974816,-0.20268393,0.38741067,-0.068117335,0.38088813,0.54810447,-0.28406522,0.058893092,0.11315359,0.036638804,-0.2075725,-0.04963622,-0.19491819,0.20480706,-0.5520369,0.040012956,-0.23729222,0.7509841,0.0027282494,-0.6466919,0.18987213,-0.52678436,0.049333673,-0.093453966,0.49687293,0.63775826,0.49043447,0.17425932,0.666763,-0.4437645,0.06193527,-0.2576681,-0.31815705,0.17168763,-0.25910586,-0.15218599,-0.49540922,0.038904946,0.21384346,0.045378458,-0.0031639847,0.2328136,-0.5792228,0.01740034,0.22035515,0.694621,-0.25300583,-0.08616124,0.67827284,0.9953094,0.82695687,0.00829543,1.2114784,0.04602343,-0.20659797,0.13818559,-0.17351605,-0.672898,0.24796939,0.45812348,0.109825,0.20040539,0.21576153,0.10471393,0.2943058,-0.56374985,-0.052096844,-0.15050173,0.3568565,0.012302816,-0.021724263,-0.3207779,-0.16097067,0.025829362,-0.018900607,0.1808451,0.26003483,-0.268055,0.2746901,0.093472704,1.4354388,-0.0010660291,0.23161377,-0.03954542,0.5184024,0.08572125,-0.024003517,-0.081544146,0.2908122,0.23774573,0.25606632,-0.4916382,0.014524349,-0.22635476,-0.5019,-0.13613829,-0.35828695,-0.19337733,-0.024293797,-0.30885658,-0.12087361,-0.12519903,-0.27389067,0.47799355,-2.9883215,-0.09276631,-0.119450174,0.33574155,-0.23653449,-0.3319537,-0.18095048,-0.53676313,0.500959,0.4354456,0.4926388,-0.54970455,0.25465113,0.41472197,-0.50270176,-0.20595935,-0.60474735,0.032201923,-0.07926995,0.37315074,0.020247193,-0.12206549,-0.1889224,0.11219903,0.36356777,0.09697223,0.06896337,0.20438422,0.31909427,0.20041974,0.48916796,0.054606985,0.47457185,-0.32812378,-0.1997584,0.18111053,-0.28221995,0.37926593,-0.18428089,0.060490813,0.36465245,-0.5041906,-0.9033085,-0.7867773,-0.26918846,1.2479832,-0.17630579,-0.33777332,0.17130601,-0.3254468,-0.26473418,-0.14373514,0.4580881,-0.18891795,-0.019549701,-0.6579222,0.1328505,-0.12721986,0.31760624,-0.02654976,0.054254126,-0.58032113,0.43402,-0.07352716,0.34377018,0.23516564,0.100764275,-0.22505212,-0.35637283,0.07420226,0.9012871,0.35140806,0.1741731,-0.09452883,-0.2920738,-0.39199093,0.013440869,0.20924994,0.44984013,0.59218985,0.016215654,0.13847825,0.20957543,-0.03244877,-0.0017152365,-0.15810478,-0.21919338,-0.08596777,-0.010865705,0.71440023,0.51123226,-0.018520202,0.36187196,0.030265199,0.25394133,-0.2946863,-0.42739883,0.47360748,0.72837,-0.17958887,-0.22027488,0.78967625,0.6326794,-0.14158681,0.44922122,-0.6859721,-0.45883957,0.31736714,-0.14213641,-0.40078932,0.040518906,-0.34260163,0.0934178,-0.90629184,0.32123068,-0.014541005,-0.48747107,-0.57617325,-0.119210295,-3.3258939,0.108145066,-0.07297211,-0.05287993,-0.082952656,-0.17674498,0.36335856,-0.42121235,-0.49365446,0.14468446,0.06329013,0.6921672,-0.101381846,0.1162904,-0.19645442,-0.3066177,-0.3362067,0.14617136,0.10653198,0.24328454,-0.029800713,-0.39384896,0.11665989,-0.13761364,-0.25989708,0.085690975,-0.46655107,-0.3307562,-0.17467526,-0.32310253,-0.18689391,0.642404,-0.40843558,0.03782314,-0.2650226,0.022161616,0.0146682495,0.26568967,0.19455531,-0.045955576,0.12089079,0.017213454,-0.103535056,-0.40080976,0.47216752,0.010773101,0.21799377,0.3612344,-0.064810224,0.17402749,0.43849435,0.47163528,-0.100261256,0.880709,0.32429084,-0.15268347,0.23204152,-0.2183418,-0.26847202,-0.39423636,-0.25829563,-0.15966187,-0.43841413,-0.28891948,0.06461115,-0.3094783,-0.74332875,0.58367044,0.027738502,0.07568896,-0.13088156,0.32098752,0.43493932,-0.27467054,-0.0435923,0.04005978,-0.11372704,-0.51292384,-0.40919083,-0.4128917,-0.3211939,0.0085278405,1.0215893,-0.22762725,0.06767476,0.07674747,-0.12711169,0.091790535,0.107837394,0.014909779,0.13011941,0.4807536,-0.017748924,-0.7357952,0.5569932,-0.19243596,-0.08377649,-0.60993063,0.16726531,0.47250882,-0.7193918,0.21549475,0.43728352,0.20804672,-0.1431754,-0.41476932,-0.18561554,-0.14316538,-0.24629101,0.19303045,0.15371825,-0.93077326,0.4024139,0.10270037,-0.10064961,-0.7106548,0.56300396,-0.06957727,-0.20456605,-0.024229795,0.30721527,0.41774163,0.048877984,-0.15988216,0.2253062,-0.36680394,0.30173138,0.21403222,-0.04319584,0.58681935,-0.23679774,-0.22540322,-0.68337446,-0.16359973,-0.49258026,-0.32167384,0.33126426,0.118183576,-0.028887639,0.37627116,0.023807576,0.3862636,-0.26422054,0.034481112,-0.00069948816,-0.16996488,0.37989673,0.36646268,0.55405647,-0.48042205,0.6343977,-0.016684845,-0.04966404,-0.13733175,-0.03709284,0.40884355,-0.05835077,0.3585767,-0.02817752,-0.29022613,0.35012332,0.7846378,0.19346571,0.18670334,0.012061032,-0.018459206,0.22657755,0.06740646,0.0142940115,0.13938737,-0.61142427,0.013287772,-0.22787966,0.11742204,0.36165634,0.108646326,0.23378216,-0.024833824,-0.1174796,0.08957092,0.037343554,-0.027735254,-1.130119,0.30636486,0.15889467,0.68325466,0.3859152,-0.048706613,0.06569622,0.68570995,-0.27365798,0.045624204,0.36155647,0.16046199,-0.2973338,0.5415584,-0.65363586,0.6355057,0.025152903,-0.09458583,-0.00024858754,-0.061077558,0.35681626,0.9761719,-0.16043496,0.17734696,0.01391465,-0.29935724,0.08978094,-0.19229157,0.12230379,-0.6375442,-0.21613982,0.62383515,0.404268,0.373339,-0.0802443,-0.07026039,0.04575317,-0.19799729,0.08715075,-0.05067208,0.064701505,0.016618686,-0.5838828,-0.107595645,0.5598696,0.18119062,0.16234004,0.050985422,-0.32771233,0.17711662,-0.1451525,0.08290993,-0.05300424,-0.5337179,-0.08470551,-0.2048732,-0.3783982,0.53105706,-0.3998057,0.29809743,0.17897841,0.03510789,-0.14027481,0.36164308,0.12469317,0.6452176,0.055401344,-0.18716063,-0.38604012,0.16287102,0.17101829,-0.17606077,-0.09902061,-0.24809884,0.15282223,-0.6793255,0.267527,-0.16624944,-0.36972243,-0.009288839,-0.22103919,0.037325077,0.48670107,0.08256916,-0.008961269,0.12784183,-0.19441254,-0.2339059,-0.051946707,-0.25312203,0.16737364,0.12753102,-0.021207942,-0.17307849,-0.18491633,-0.17713349,0.21837933,0.026417244,0.2803637,0.19561234,-0.026145276,-0.20924893,-0.18074621,-0.049763583,0.4627668,-0.18170555,-0.024861509,-0.1455524,-0.44278234,-0.34246352,0.12593625,-0.10341282,0.2122354,0.16752005,-0.23572707,0.57817966,-0.0650338,1.1049801,0.109022,-0.35986784,0.094534434,0.58340967,-0.0150980605,-0.020615932,-0.3858378,1.034394,0.5445029,-0.057985578,-0.20054178,-0.27465123,0.039579995,0.18187027,-0.13219702,-0.24896172,-0.096734785,-0.5999103,-0.24361695,0.2005733,0.2900085,0.1711549,0.049951386,-0.025714364,0.16378585,0.037804406,0.4115544,-0.39191538,-0.19170132,0.41657957,0.34512046,-0.021175057,0.18636099,-0.43588158,0.4190724,-0.54638344,-0.09876859,-0.24225068,0.1770519,-0.21097471,-0.28056976,0.2134815,0.07135145,0.3777926,-0.19785623,-0.51295465,-0.15553482,0.43284434,0.14055453,0.24363396,0.56520045,-0.16020809,-0.16039202,-0.20800588,0.37004763,1.0787386,-0.17772143,0.036720913,0.41890118,-0.26420993,-0.4578753,0.25358805,-0.5165363,0.25818095,0.0915699,-0.26521906,-0.21571438,0.24966621,0.17015417,0.11455178,0.03621008,-0.61668223,-0.15296434,0.06819634,-0.16484873,-0.2272767,-0.16885641,0.12672202,0.6446536,-0.21657364,-0.14329393,0.09159287,0.3903474,-0.18333144,-0.52584034,-0.104385674,-0.26684895,0.19784233,0.08753977,-0.3249653,-0.15344098,0.0648856,-0.40281504,0.035212543,0.13269888,-0.37477705,0.018515566,-0.3557208,0.11607581,0.8114112,-0.12733573,0.20979373,-0.45554808,-0.28103128,-0.83719456,-0.17166604,0.30516776,0.24470164,0.017898094,-0.36569825,-0.00022133334,-0.077727936,-0.11566608,-0.036128096,-0.38027018,0.42706767,0.06407094,0.39360523,-0.036327116,-0.9334441,0.14229587,-0.05349054,-0.2570104,-0.52114546,0.5830671,-0.111437716,0.7933963,0.06155791,0.033560812,0.33680955,-0.5780305,0.082031325,-0.17923954,-0.09085463,-0.7681051,0.12807743,345 -419,0.2799495,-0.22101761,-0.5632244,-0.090169854,-0.28618804,-0.18961337,-0.2204801,0.38622993,0.12951103,-0.04724788,-0.20660962,-0.11066878,0.13826096,0.332903,-0.12636794,-0.4615941,-0.262901,0.1104493,-0.6596681,0.6132912,-0.5156348,0.1062896,0.01929852,0.4792257,0.25334686,0.43722084,0.14895001,-0.026791487,-0.07030252,-0.042538624,-0.14911686,0.29804403,-0.49076816,-0.14746693,-0.26235068,-0.394176,0.06482848,-0.52297735,-0.2795492,-0.70615333,0.3522227,-0.97381645,0.5025805,-0.020339876,-0.12154686,0.12485636,0.36120978,0.26432988,-0.40297765,-0.10032814,0.12333039,-0.027699862,-0.023994574,-0.23605146,-0.010565494,-0.24096155,-0.47145972,-0.05026507,-0.50778854,-0.27080482,-0.2474976,0.1341324,-0.34694523,0.097314365,-0.20904247,0.44213468,-0.41063753,-0.06892107,0.16963594,-0.2244788,0.32806158,-0.5972255,-0.021807143,-0.0662443,0.4960317,-0.16753305,-0.10669653,0.37049484,0.34631154,0.2952557,0.12894566,-0.23954234,-0.35023493,-0.1485311,-0.016779976,0.40195546,-0.21636678,-0.5294167,-0.16874684,0.10440813,0.13374522,0.41498134,-0.022248974,-0.03361569,0.02813716,-0.08766969,-0.14892046,0.4292457,0.43406913,-0.27049178,-0.40460292,0.22136497,0.5017726,0.33183286,-0.2868559,-0.1896449,0.0007221252,-0.5152403,-0.11951876,-0.020808471,-0.08175522,0.6090638,-0.07964543,0.24037018,0.7644253,-0.07363839,0.029834509,-0.11140644,-0.04428306,-0.27194992,-0.3780149,-0.18495162,0.14218703,-0.46964496,0.22187044,-0.16818318,0.5464146,0.028249476,-0.6208982,0.48480755,-0.60224974,0.12221086,0.015876105,0.47540018,0.5818594,0.22726324,0.5019875,0.55280656,-0.16727448,0.14571175,-0.08150844,-0.46336713,0.06405033,-0.12067044,0.17535487,-0.54059994,0.07157456,-0.017144416,0.0697767,0.14217773,0.3865695,-0.44436735,-0.027030254,0.36206594,0.7362334,-0.3347458,-0.033164356,0.6712502,1.0896496,0.947197,-0.035392437,1.0941546,0.11735999,-0.23409748,0.25335044,-0.2794105,-0.7576538,0.19322965,0.43440375,-0.19113244,0.33687702,-0.053485252,0.0010198696,0.37620422,-0.3356969,-0.0124646975,0.016131673,0.18916328,0.20563848,-0.008920239,-0.5630252,-0.21631159,-0.042320807,0.03395078,0.18470834,0.18478803,-0.15794775,0.26156497,-0.071373485,1.5536368,-0.09808683,0.11278153,0.19142997,0.6705891,0.28692725,-0.0295156,-0.16308282,0.40849558,0.3643478,0.111125596,-0.6102115,0.3083989,-0.36791855,-0.39224127,-0.03785393,-0.44161654,-0.16192618,0.14869213,-0.49460587,-0.06089555,-0.07353012,-0.2757454,0.24700773,-3.085756,-0.17903028,-0.15817031,0.29022428,-0.2561539,-0.20516798,-0.015393534,-0.50498706,0.24498908,0.3117669,0.5712789,-0.6416523,0.42856675,0.42280254,-0.49715632,-0.063603766,-0.6693858,-0.16735551,-0.020699484,0.5279208,-0.0028190443,-0.10502974,-0.06517802,0.34626052,0.6946059,0.17696452,0.1413741,0.41875857,0.34296554,0.12925184,0.6699147,-0.11543542,0.56759614,-0.29174858,-0.15939215,0.18666966,-0.17562042,0.19489472,-0.14061695,0.15265961,0.5617873,-0.5654809,-1.025813,-0.5235351,-0.24996032,0.9899737,-0.36479086,-0.31586075,0.2930842,-0.41114405,-0.16547091,-0.03538125,0.5666913,-0.22193244,0.09468552,-0.7170808,0.14675386,-0.22013395,0.18188599,0.078942455,-0.022078259,-0.43111163,0.6521336,0.022701478,0.6537624,0.29625273,0.13070132,-0.23363034,-0.36849195,0.12791212,0.69726837,0.23202784,-0.08261431,-0.17024218,-0.23998079,0.025686452,-0.10962306,0.044036668,0.48240587,0.63076836,0.006130866,0.2604691,0.23630312,-0.05804453,0.0425317,-0.08259074,-0.06153634,-0.06079781,0.11139796,0.4315894,0.7044017,-0.21106423,0.40564185,-0.24410285,0.44283018,-0.07943093,-0.46949816,0.59970385,0.61006916,-0.14317057,-0.03466715,0.62675625,0.56861573,-0.41591686,0.46486384,-0.5551251,-0.14236902,0.64405686,-0.20945333,-0.35381645,0.27890018,-0.27299136,0.12372417,-0.7656975,0.08094524,-0.19995157,-0.3160004,-0.38518152,-0.20442548,-3.589677,0.16764006,-0.17233774,-0.21242966,-0.3077951,-0.26188633,0.30700347,-0.7373549,-0.6963504,0.16780289,0.17422147,0.61606425,-0.11620875,0.09572685,-0.25463343,-0.27988246,-0.064238906,0.24591634,0.2730803,0.36675677,-0.110149756,-0.45514473,-0.08931506,-0.02179685,-0.5780389,0.10999192,-0.6263767,-0.3139806,-0.025370521,-0.6647693,-0.2010735,0.6021853,-0.2450966,-0.006232125,-0.23751402,0.025353815,-0.21461865,0.22255863,0.15361723,0.24170838,0.155206,0.15186831,0.27254924,-0.36541754,0.4717948,-0.025566015,0.33438468,0.08460718,0.07091992,0.14786133,0.43119717,0.6005753,-0.21811111,1.0934632,0.5441454,-0.1047193,0.20536889,-0.33729884,-0.24825236,-0.74177796,-0.3964302,-0.053760678,-0.38406724,-0.55909413,-0.063868314,-0.25255683,-0.7131413,0.7329544,-0.08749991,0.39288494,-0.008474575,0.30005607,0.39877334,-0.20745413,0.010224031,-0.0142499665,-0.15794598,-0.5816987,-0.18919554,-0.5934804,-0.53820825,-0.15053819,0.67180216,-0.25133103,0.0017372774,-0.06505454,-0.37807807,0.05610638,0.10920281,0.20827067,0.49420705,0.57201916,-0.0013526423,-0.57217973,0.4318466,-0.058596995,-0.23479298,-0.39332995,-0.03168098,0.48642674,-0.76271826,0.68188816,0.345216,0.08407533,-0.09639237,-0.49439627,-0.32698426,0.04668538,-0.10276383,0.51067615,0.27348694,-0.9294142,0.5693463,0.25305483,-0.3205728,-0.7030757,0.43054706,-0.12355473,-0.35323763,-0.25078565,0.30605975,0.037290633,-0.024825973,-0.09598706,0.19882457,-0.31157497,0.19095527,0.16307713,-0.045650218,0.29953837,-0.1582553,-0.08951122,-0.7024611,0.10404987,-0.43524432,-0.17531082,0.43097052,-0.018234462,-0.018696764,0.093941554,-0.061303575,0.2227784,-0.3379414,0.15671237,0.10758751,-0.26064733,0.15206024,0.4001289,0.34813064,-0.45792508,0.48343626,-0.0032303163,-0.23992153,0.21968272,-0.14523962,0.3545676,-0.20852473,0.3577941,-0.17174862,-0.26994243,0.415909,0.69011676,0.20303848,0.35749313,-0.015948722,0.05527773,0.39770794,-0.026455551,0.033648577,0.08267731,-0.53832144,0.06886741,-0.15571491,0.09186085,0.48502275,0.26541096,0.17869738,-0.014504467,-0.19843149,-0.018032888,0.24699365,-0.01672422,-1.0262333,0.3691821,0.13906579,0.8021057,0.508225,0.15347083,-0.273965,0.6684573,-0.39221933,0.04383201,0.50469035,0.1950341,-0.49955526,0.7754594,-0.49729726,0.55843115,-0.08403605,-0.13387762,0.07214207,0.026426481,0.29593083,0.7618758,-0.26373592,0.06302615,0.05361599,-0.13661753,-0.009460279,-0.26654598,-0.12232035,-0.3506926,-0.25089094,0.7327463,0.46059364,0.36374384,-0.16084753,-0.14270474,-0.05805134,-0.1785403,0.09925077,-0.039565686,0.039375424,0.13465817,-0.62124527,-0.13481216,0.5200495,0.19838156,0.2832511,-0.25739327,-0.41464907,0.19637212,-0.18903668,-0.08471494,0.02696672,-0.67265874,0.1340154,-0.2427498,-0.61916035,0.47505453,-0.30657294,0.17616318,0.14304794,-0.025990931,-0.22284304,0.3095445,0.10933064,0.77051556,-0.07874964,-0.08626352,-0.33369663,0.030034548,0.18291728,-0.16608839,-0.13994026,-0.5040816,0.11281668,-0.42072996,0.59582853,-0.0044471705,-0.4497574,0.023711175,-0.13622436,-0.019207165,0.6103553,0.012096056,-0.12218244,-0.1409467,-0.1034193,-0.31429988,-0.1569158,-0.25867826,0.25327972,0.26743,0.06746641,-0.12517011,-0.123959385,-0.14596272,0.7499055,-0.047357697,0.6268792,0.28278056,0.15464678,-0.04430912,-0.05992835,0.24059132,0.5689503,-0.031416096,-0.028249076,-0.47222218,-0.38872674,-0.20662867,0.10575043,-0.053862114,0.21571279,0.17706597,-0.18296294,0.8077939,-0.060056586,1.0468524,0.12867986,-0.41858527,0.085194774,0.4861861,-0.19082543,-0.029887626,-0.31454477,0.95615864,0.5219046,-0.15461151,-0.15580805,-0.2708509,0.049251895,0.19478825,-0.34721926,-0.03124025,-0.21113563,-0.44437966,-0.3062401,0.2019717,0.1841131,0.23171118,-0.08328766,0.099003434,0.06333395,0.094460726,0.4388762,-0.5468217,-0.27249646,0.32567477,0.120205335,-0.067790955,0.23669136,-0.47287676,0.46570283,-0.4992577,0.12053461,-0.6387252,0.21023308,-0.18420386,-0.3968027,0.034657028,-0.13359454,0.48418358,-0.23667665,-0.27884078,-0.14697734,0.36550888,0.0266571,0.10384822,0.6134887,-0.16319276,0.09782999,0.025469085,0.61588466,1.0409716,-0.32219052,-0.021804312,0.18720534,-0.2924902,-0.52819294,0.27490753,-0.35289028,-0.047681298,-0.030574856,-0.2771302,-0.5076715,0.10494547,0.12527001,-0.022883907,-0.10972514,-0.4967093,-0.1979274,0.2837712,-0.2728005,-0.17184344,-0.22568855,0.23136976,0.75324917,-0.24301922,-0.27632278,0.054750483,0.1856159,-0.09087928,-0.45001355,-0.014597939,-0.27448258,0.41573018,0.1639245,-0.35286373,-0.09915595,0.196282,-0.40660164,0.18920837,0.23950633,-0.3102451,0.057528336,-0.3433877,-0.122619696,1.195278,-0.21620813,-0.0022366047,-0.51761335,-0.5378149,-0.9199398,-0.38949618,0.34030333,0.010301812,0.1464959,-0.38683796,0.09803771,-0.095313735,-0.2950382,-0.02056302,-0.37907144,0.35215065,0.0795596,0.63703763,-0.23646137,-0.7444898,0.07212988,0.11529744,-0.033533864,-0.5570709,0.7093114,-0.03408989,0.73554426,0.055035226,-0.037417788,0.08280493,-0.26624745,-0.07089477,-0.36291203,-0.034860827,-0.8033716,-0.04121675,349 -420,0.39751598,-0.1600375,-0.6400139,-0.04177462,-0.2530757,0.053641293,-0.17072906,0.36214575,0.33338922,-0.22676589,-0.060686965,-0.1827576,0.040513378,0.35857224,-0.03200791,-0.48862144,-0.010878171,0.23909427,-0.628382,0.56782496,-0.32652742,0.2840472,-0.14502707,0.48763004,0.07592062,0.19107877,-0.18056385,-0.003413226,0.014644482,-0.024331136,-0.07143942,0.48625913,-0.5362133,-0.025489245,-0.22855508,-0.17845652,0.0004368041,-0.44119206,-0.5125025,-0.8350502,0.39237228,-0.91849846,0.65307415,0.23169294,-0.43046004,0.11547833,0.051171023,0.3492318,-0.3129273,0.054693986,0.18739091,-0.026078293,-0.026823657,-0.18392824,-0.40098077,-0.22097836,-0.5212184,0.012841708,-0.47408465,-0.069791675,-0.24298766,0.21934463,-0.2535975,-0.11739242,-0.15355322,0.14041004,-0.41184136,0.2871542,0.36268267,-0.15991649,0.28928095,-0.46367663,-0.08126465,-0.14896424,0.26210222,-0.14384802,-0.3507438,0.2044693,0.2771728,0.55094445,-0.19821604,-0.17022543,-0.22045423,0.081631,-0.034645844,0.55801046,-0.28977615,-0.19872217,-0.22563374,-0.024853025,0.31507733,0.312793,0.01717638,-0.40383294,-0.102288984,-0.1795368,0.04254621,0.24137671,0.5264455,-0.22539772,-0.32995683,0.41070175,0.47531933,0.36866325,-0.015577625,0.118809454,0.15897064,-0.59946936,-0.17471822,0.027258087,-0.05655893,0.59834594,-0.01767858,0.15652888,0.59799576,-0.0068413443,-0.07197748,-0.049249373,0.16054949,0.01436363,-0.43432283,-0.16069439,0.14784154,-0.38150868,0.1802081,-0.02528274,0.52531236,0.104235575,-0.6290489,0.39423022,-0.62171525,0.2030162,-0.07070099,0.574875,0.843706,0.42030635,0.26918402,0.81794316,-0.38107467,0.13958342,-0.08111609,-0.2524126,0.23934652,-0.15434395,-0.020527413,-0.50140315,-0.0046642805,0.0053682327,-0.2432704,0.23961322,0.48273137,-0.5551835,-0.17038263,0.121626295,0.789526,-0.23943423,-0.03281147,0.5611395,0.9148588,0.71797216,0.04520338,1.2244397,0.3828688,-0.11646778,0.29676118,-0.24549642,-0.9714513,0.20208989,0.20933323,-0.34596187,0.3343316,0.27311093,-0.18859246,0.4731668,-0.4121273,-0.028894093,-0.20117,0.10757399,-0.07109659,-0.239493,-0.45167834,-0.18237938,-0.10835371,0.11759359,-0.021787567,0.25258753,-0.33106375,0.14922956,0.021561285,1.8364033,-0.09265167,0.110990785,0.08540412,0.37086567,0.3724367,-0.24135944,-0.2506126,0.5164931,0.3167561,0.01801153,-0.5068527,0.17104223,-0.18589592,-0.28193036,-0.14461477,-0.21550938,-0.032511555,-0.016359976,-0.54664904,-0.16047081,-0.08862511,-0.1900738,0.52815515,-2.6693037,-0.2306178,0.03558034,0.4812507,-0.29508922,-0.37982115,-0.33736846,-0.2908586,0.3579481,0.20459142,0.4196196,-0.65333575,0.21309425,0.41481653,-0.5879361,-0.1048635,-0.5666139,-0.107864454,0.034692638,0.28676122,-0.076427326,-0.14303191,-0.055103917,0.26135314,0.34381407,0.04555176,0.05550931,0.37722185,0.51719683,-0.030378733,0.29207686,-0.15771897,0.54184324,-0.27209002,-0.3672574,0.34858972,-0.16655353,0.44677585,-0.07852447,0.09152556,0.42627048,-0.45312157,-0.769916,-0.5817588,-0.15827772,0.9845422,-0.3876973,-0.43402693,0.32912943,-0.67062336,-0.22354415,0.040738594,0.6001233,-0.016573396,-0.07965224,-0.86541885,-0.10810753,-0.048321757,0.41740936,0.04256287,-0.045841813,-0.2006811,0.52871984,-0.074160695,0.31521717,0.3041227,0.19420527,-0.20827569,-0.56769603,0.039676983,0.78926915,0.3776687,0.15082748,-0.25565836,-0.29211277,-0.3476756,-0.07020133,-0.0014886548,0.56886864,0.69951344,-0.17566638,0.13071124,0.22825268,0.042644806,-0.073123716,-0.15229057,-0.27382314,-0.06267798,0.05781453,0.4575192,0.84022856,-0.2781684,0.3377718,-0.026131796,0.18877146,-0.10564846,-0.5577316,0.49409813,0.9362391,-0.1934267,-0.22995064,0.82827157,0.33278927,-0.40063772,0.4475911,-0.6884421,-0.28622684,0.44232175,-0.067176946,-0.40052056,0.38990498,-0.3085094,0.12760472,-0.8443102,0.29540986,-0.036536593,-0.39895126,-0.44627836,0.057064194,-2.9283922,0.22820783,-0.23185669,-0.029036496,-0.111036785,-0.08611948,0.3098362,-0.45985508,-0.64342266,0.17589046,0.04229337,0.6125882,-0.16780986,0.08201055,-0.1664159,-0.3432889,-0.18035546,0.15499462,0.28923044,0.4196231,-0.11277835,-0.48138514,-0.2937127,-0.02437513,-0.2857724,0.034568142,-0.8108748,-0.4710216,-0.19728486,-0.70085686,0.054741126,0.6277823,-0.34136373,-0.10295969,-0.27108186,0.073801994,-0.09230667,0.19813594,0.28840497,0.22149444,0.050515838,-0.09736727,-0.19534738,-0.23348461,0.25123295,0.08031767,0.13128544,0.3887406,-0.053873863,0.21287577,0.45651874,0.6285305,-0.44317648,0.74469954,0.6509136,-0.13432114,0.23176892,-0.18153633,-0.19629061,-0.4123519,-0.20666982,-0.16993225,-0.46344826,-0.41559377,-0.09063268,-0.4207521,-0.82367134,0.46626166,-0.12447219,0.26255623,0.07110641,0.09613179,0.56574106,-0.18821546,-0.047423277,-0.0906465,-0.16214824,-0.553038,-0.39051962,-0.4023145,-0.43654588,0.44439176,1.0813105,-0.31736168,0.121189184,0.20802096,-0.2652478,-0.16567591,0.020107267,0.003758984,0.16492335,0.61757594,0.11209696,-0.5091634,0.36515445,-0.025603235,-0.27187723,-0.67179614,0.25671402,0.56005013,-0.7046818,0.68094665,0.2017822,0.11604411,-0.08775103,-0.598575,-0.33124432,0.12616552,-0.21804926,0.386514,0.27618152,-0.78255,0.30398688,0.36874765,-0.36069474,-0.66858095,0.59863746,-0.11424001,-0.38334665,-0.08411165,0.3717049,-0.037981246,0.14561008,-0.12123503,0.3476422,-0.30108237,0.22918664,0.32227185,-0.22045732,0.17969958,-0.34728152,-0.084188096,-0.73329735,0.19832115,-0.3925286,-0.40262643,0.42952892,-0.023526916,0.026181826,0.04387332,0.24219052,0.45348892,-0.4151763,0.109924994,-0.13169043,-0.2702014,0.29164585,0.47132364,0.6539548,-0.41135213,0.5372255,-0.09299653,-0.22900875,0.08672059,0.1438092,0.44924846,-0.09852069,0.3785362,-0.20891131,-0.086271115,0.17017272,0.8110839,-0.025659472,0.29400212,0.078128375,0.04065356,0.2191782,0.08748375,-0.014527374,-0.07091809,-0.5619452,0.011853869,-0.2586093,0.25637332,0.4155698,0.22803457,0.19281837,-0.15864016,-0.33618885,0.09270941,0.1800383,0.17911008,-1.1461092,0.229764,0.19692448,0.6803392,0.3987523,0.13584764,-0.036052566,0.5490543,-0.16772287,0.17922702,0.4208943,-0.211877,-0.52885354,0.40228203,-0.61974055,0.5316466,0.023066742,0.025922025,0.303052,0.18197468,0.49045292,0.83002514,-0.10455004,-0.035252813,0.160452,-0.25742933,0.0041094595,-0.23842917,0.038273096,-0.73210543,-0.4129384,0.59207207,0.6150649,0.2621752,-0.3090165,-0.024467712,0.05343039,-0.18839452,0.12663794,-0.00044802364,0.1424632,-0.057553478,-0.6554031,-0.05105578,0.4838574,0.07312251,0.014714007,-0.0696715,-0.1231129,0.22060432,-0.3741259,0.093572445,-0.14900969,-0.91010714,-0.09301804,-0.66770357,-0.51637524,0.3965713,0.0050203605,0.18207444,0.20856152,0.0597185,-0.40014586,0.8091188,-0.16205457,0.99006903,0.022980882,-0.22635028,-0.32580763,0.4517366,0.19224116,-0.1342641,-0.060385134,-0.30009255,0.10091122,-0.6291217,0.5814619,-0.021944676,-0.30281687,0.007652868,-0.13369325,0.11520473,0.5938784,-0.072281525,-0.27313206,-0.0822569,-0.29218867,-0.5779866,-0.23732397,-0.12962803,0.23576859,0.31534353,-0.051613748,-0.11161324,-0.12539104,-0.13006714,0.33105418,0.05786091,0.3847887,0.52162915,0.1955348,-0.14593248,0.08776188,0.3347406,0.6540928,-0.028844109,0.0062525272,-0.16369537,-0.32270542,-0.50451285,0.21628109,-0.118392654,0.4032528,0.1487405,-0.21331121,0.8475546,0.20532739,1.0207733,0.0037299267,-0.26992306,0.17090991,0.58047587,-0.060471892,-0.18443155,-0.4207751,0.90714633,0.6680628,0.03006496,-0.08929966,-0.21261434,-0.121478006,0.16871384,-0.23564382,0.03914376,-0.019076701,-0.73819005,-0.12582298,0.16663513,0.27245894,0.21449389,-0.12637839,0.212902,0.07691832,-0.05597961,0.06951722,-0.46241924,-0.18883857,0.31368712,0.33273628,-0.011658958,0.20817111,-0.5157007,0.42425916,-0.43455312,-0.00010515536,-0.40554836,0.15691577,-0.12567401,-0.3077266,0.076305404,-0.15203094,0.3094583,-0.5263237,-0.090792336,-0.29927492,0.429558,0.16388896,0.10690957,0.59253514,-0.24553905,-0.043428637,-0.032006506,0.51593673,0.88633305,-0.36954626,-0.05550188,0.4001169,-0.2654779,-0.7464486,0.40490004,-0.45901605,0.25219616,-0.05587239,-0.2591939,-0.628331,0.22605798,0.035121877,0.019356413,-0.14224166,-0.62583625,-0.02239785,0.1364299,-0.03168542,-0.15510271,-0.30345675,0.0925812,0.6658557,-0.05020498,-0.343119,0.27540258,0.12147043,-0.26959226,-0.48931232,0.098960534,-0.3616634,0.144284,0.052158184,-0.4844868,-0.062284846,0.050720084,-0.53628397,0.1211882,0.17016886,-0.3014426,0.11831469,-0.37044844,-0.09359503,1.2590293,-0.31299996,0.09001949,-0.5746975,-0.569358,-0.9193188,-0.24614532,0.3662257,0.27543566,0.14513254,-0.60034645,0.06513816,-0.13985787,-0.08833135,-0.059319813,-0.28234115,0.50715476,0.063749604,0.38601416,-0.2619742,-0.8059048,0.05944476,0.033251464,-0.4535864,-0.59247696,0.63229877,0.016862707,0.92864597,-0.025158746,0.106558666,0.40239158,-0.5735479,-0.020989956,-0.25191644,-0.062442463,-0.763919,-0.0629684,354 -421,0.4613714,-0.13106865,-0.5328524,-0.39678258,-0.38789192,0.17201337,-0.23783986,0.2767117,0.14825001,-0.5455645,0.047110874,-0.019386651,-0.18367128,0.12538506,-0.12960616,-0.7575871,-0.14421667,0.0319849,-0.6157442,0.21302938,-0.52369785,0.38695827,0.2247114,0.17617036,0.062784515,0.16638121,0.09611066,-0.18164924,-0.09770845,-0.4033441,-0.17116442,0.20627752,-0.68949854,0.29162392,0.060433097,-0.43395868,-0.016104816,-0.3911863,-0.21221521,-0.5742704,0.20605275,-0.8091792,0.58454335,-0.01599191,-0.22823803,-0.008715285,-0.08041464,0.23367369,-0.05714848,0.4346709,0.39435524,-0.29006454,0.014390618,-0.19863327,-0.29324692,-0.36776713,-0.573995,0.020579776,-0.60473835,-0.03785812,-0.10695722,0.22456458,-0.18522409,0.055924833,-0.327799,0.5020786,-0.46102643,-0.19491461,0.10777674,-0.2547899,0.47095475,-0.598725,-0.19007555,-0.012951711,0.18171728,-0.32962033,-0.18043362,0.06870369,0.21158732,0.5916926,0.022808393,-0.1741363,-0.2535188,-0.049695384,0.14650096,0.47335482,-0.15793459,-0.21074183,-0.26824662,-0.052960847,0.37670884,0.235103,-0.021173483,-0.52371895,0.1074123,0.03248457,-0.27852255,0.5200277,0.44381553,-0.36537173,-0.10724635,0.3679997,0.43866214,0.14937909,-0.10522755,0.20148663,-0.051387608,-0.41748723,-0.15276177,0.4598008,-0.04345445,0.3054995,-0.085028894,0.17188565,0.6344561,-0.22659251,0.0019738248,0.0066186124,-0.16204712,0.06236985,-0.05904026,-0.26692232,0.19026613,-0.5350341,-0.0046622413,-0.32965395,0.7927996,-0.07958143,-0.8859485,0.23511529,-0.5553406,0.074456386,-0.15731467,0.6434533,0.65583616,0.35610864,-0.048783462,0.8778057,-0.4862376,0.018914664,-0.14704004,-0.2280563,-0.011851435,-0.009250156,0.08069791,-0.50678295,-0.09871689,-0.17246675,-0.02920301,0.0027553807,0.34398833,-0.42698956,-0.13552855,0.07291705,0.49390307,-0.42619038,0.08026651,0.79096097,1.0376272,1.0445815,0.1966947,1.229112,0.2760893,-0.21016566,-0.11770461,-0.3112049,-0.40285474,0.19550292,0.40889025,0.44096637,0.26979935,0.03191394,0.2547942,0.44206256,-0.3025527,0.030509692,-0.14900663,0.25746855,-0.18620001,-0.08610523,-0.41040543,-0.19706987,0.1404266,0.1892611,-0.07578814,-0.008557673,-0.28000203,0.40139428,0.22328046,1.0851077,-0.15438022,-0.030065535,-0.025720207,0.12317113,0.13213205,-0.17097083,-0.021542093,0.21081318,0.39168572,-0.15405814,-0.56320304,0.020440102,-0.111030295,-0.2187556,-0.33693674,-0.27179384,0.012783374,-0.1468071,-0.4485975,-0.08415847,0.2721715,-0.59781986,0.45767492,-2.2691426,-0.13852754,-0.20862661,0.30815506,-0.06569678,-0.4054504,-0.28593773,-0.36854425,0.37384132,0.36789355,0.34475356,-0.55472887,0.5356394,0.36347565,-0.20558967,-0.07669871,-0.81479853,-0.12661389,-0.10301925,0.16768481,0.105156824,-0.07951016,-0.27605295,0.22691692,0.6140937,-0.08256902,-0.030635683,0.17228423,0.44173983,0.019553747,0.7976127,0.24649465,0.52780193,-0.15160693,-0.09647785,0.42059997,-0.41010138,0.08414098,0.16473712,0.2017848,0.2786292,-0.66357046,-0.8374926,-0.8061291,-0.519312,1.3271188,-0.20016564,-0.51308656,0.22664483,0.103251144,-0.4526975,0.13529243,0.437316,-0.1819717,-0.062799126,-0.80388755,-0.13081856,-0.16646467,0.33660862,-0.1160668,0.15078165,-0.48100287,0.6895575,-0.216481,0.6038178,0.4451465,0.22323373,-0.010770134,-0.27606812,-0.06687148,1.1728001,0.3741654,0.12260028,-0.20549135,0.023436503,-0.14480329,0.07270602,0.18431692,0.595224,0.821694,0.05513804,0.064465694,0.37362623,-0.1813869,0.039086483,-0.09817847,-0.49979806,-0.041621268,0.08255044,0.6697994,0.24783674,0.23557556,0.54837054,-0.12975559,0.17921582,-0.17836499,-0.51536876,0.28121695,0.84510624,0.051607437,-0.3524263,0.49475452,0.4718861,-0.16675197,0.3889982,-0.5028665,-0.30466223,0.3860787,-0.11534332,-0.4556058,0.23602594,-0.46444964,0.28960064,-0.9421005,0.37696692,-0.24972187,-0.76860046,-0.5364281,-0.35538524,-2.586161,0.18548994,-0.030845689,-0.062699445,0.050214797,-0.32817098,0.3880753,-0.3779493,-0.60474193,-0.060248878,0.009554556,0.43086833,-0.020671934,-0.011652525,-0.107745625,-0.17047878,-0.21312363,0.37941477,0.121672235,0.13902922,-0.007453727,-0.33852172,0.14424051,-0.36072782,-0.43430966,-0.124653935,-0.57565653,-0.5490468,0.010388238,-0.5587038,-0.30345374,0.6947264,-0.32945886,-0.07462986,-0.14084634,0.0080375625,-0.0060089016,0.3767008,0.04392612,0.21035555,0.0012678036,0.00607511,-0.2881751,-0.30028382,0.12103777,0.17329752,0.07530161,0.26111877,-0.22543512,0.18525194,0.52287835,0.6173949,0.021102633,0.73642975,0.3178692,-0.14138891,0.12492067,-0.3988597,-0.29882008,-0.68876106,-0.40373558,-0.110047564,-0.50835824,-0.44218823,-0.16087021,-0.39121923,-0.7820958,0.4643612,0.0055738473,-0.07241932,-0.028575778,0.41513616,0.31869143,0.14372028,0.13256402,-0.07164766,-0.17244972,-0.4145063,-0.4232111,-0.64518803,-0.43868157,-0.050727163,1.3334028,-0.091445364,0.061625663,0.08905559,-0.17781428,0.2115608,0.07285629,0.10755486,0.27437606,0.4414127,0.049489,-0.66446465,0.06857254,-0.20198822,-0.094371095,-0.59263355,0.0014557338,1.0161718,-0.6785089,0.52402127,0.3679927,0.2873655,0.019045915,-0.37667012,-0.11565576,0.11699908,-0.30821344,0.7459578,0.08186676,-0.32937154,0.6452361,0.24449621,-0.040976252,-0.67292535,0.4051271,0.12254349,-0.25814977,0.20751712,0.38973984,-0.072905816,-0.09790414,-0.19046178,0.17827486,-0.33620772,0.383552,0.34226447,0.0159305,0.23242633,-0.19664189,-0.33990863,-0.6084198,-0.010714693,-0.53748685,-0.2795675,0.003487885,-0.09679165,0.17799892,0.24343322,-0.13308729,0.52487427,-0.25905767,0.16036613,-0.26945224,-0.18999414,0.41277903,0.44687095,0.17695235,-0.41776448,0.5231341,0.043921847,-0.058119614,-0.35786948,-0.046180643,0.5588344,0.0481471,0.15480046,-0.24411641,-0.19679908,0.4138012,0.6227437,0.19878078,0.28737107,0.050590318,-0.14639452,0.15178049,0.22374442,0.23048666,-0.21100381,-0.21279924,-0.031123275,0.120691076,0.082322106,0.2614002,0.016173856,0.34591874,-0.29348162,-0.07627914,0.18990088,0.24191798,-0.2219416,-1.0069147,0.376785,0.10317611,0.5919828,0.5404407,0.056972105,0.19494614,0.42676854,-0.47255063,0.06489471,0.124590404,-0.0106489975,-0.2384227,0.4445564,-0.5151586,0.40484133,-0.16279817,0.10623976,-0.0024070058,0.061286505,0.4476543,0.91674334,-0.10977091,0.08211633,-0.111504234,-0.11897743,0.066706814,-0.26133177,0.059726477,-0.559373,-0.40532213,0.7831091,0.25632882,0.44045094,-0.21752074,-0.052113693,0.1159611,-0.17653145,0.1344249,-0.03800279,-0.08762334,0.07333811,-0.54828507,-0.19399811,0.5399832,-0.0034968343,-0.13376495,0.18607573,-0.37065244,0.2849043,0.20830517,0.093816295,-0.07209254,-0.44107124,-0.14964227,-0.51841354,-0.2373428,-0.08547232,-0.40497962,0.21887438,0.12294804,-0.017096518,-0.076876484,0.24275385,0.47248918,0.81069905,-0.018574314,-0.13300523,-0.28999466,0.18336762,0.31183743,-0.21433473,-0.28509247,-0.29791743,0.2419733,-0.7701622,0.38678727,-0.17651093,-0.34910282,0.24830873,-0.15503648,0.048318952,0.4038075,-0.45872498,-0.071484014,0.3213299,0.035506543,-0.11375102,-0.081978746,-0.37901226,0.17322354,-0.07960236,-0.089213066,-0.07335414,-0.15389907,-0.16311789,0.31132653,0.26165575,0.42019,0.2720836,0.08558728,-0.5506851,-0.033468988,-0.063626565,0.30354756,0.12155003,0.054866504,-0.18239483,-0.35214347,-0.1581452,0.40682703,-0.12931581,0.1715016,0.0044469875,-0.5123235,0.7735816,0.1575396,1.145613,-0.016719606,-0.33363298,-0.16474022,0.4250682,-0.0038425007,0.05987996,-0.23886512,0.87394947,0.5803603,-0.039508108,-0.11337678,-0.5262976,-0.26371768,0.008211502,-0.1942852,-0.1909952,-0.17182887,-0.68124527,-0.39062813,0.1416183,0.1016387,0.013919693,0.08612508,0.16558114,0.11485953,0.0045644683,0.34190464,-0.4190447,0.10848228,0.092284426,0.074963145,0.03326113,0.075476356,-0.4758045,0.25139883,-0.65852225,0.1153124,-0.2175647,0.10802544,0.110583186,-0.13421257,0.13978817,-0.037865598,0.19165646,-0.33256793,-0.4653349,-0.22139776,0.7267296,0.020131102,0.22919051,0.79196197,-0.18394475,0.17275335,0.16443588,0.46844012,1.5096337,-0.097665116,0.0676695,0.38806957,-0.17578237,-0.42391726,0.11387439,-0.3024683,-0.094483376,-0.030649176,-0.42474237,-0.18328401,0.33322933,0.123213105,-0.06165282,0.017987404,-0.48303396,-0.15241475,0.53401995,-0.28549552,-0.3090283,-0.27144694,0.2654562,0.5378768,-0.37922543,-0.40097564,0.012760012,0.34261498,-0.33765978,-0.5176877,0.0846665,-0.18480454,0.48944142,0.24993905,-0.24288262,0.038647253,0.265261,-0.39164057,-0.04181196,0.302264,-0.3005348,-0.06743302,-0.17084697,-0.19729851,0.890866,0.06544782,0.05003815,-0.634312,-0.58581,-0.85008705,-0.26098362,0.2534069,0.2339653,-0.08439134,-0.5507478,-0.037292983,-0.1627231,-0.07504266,0.17855628,-0.448098,0.49979714,0.13609028,0.62764466,-0.33687013,-0.8571935,0.20697948,0.06072877,-0.34937313,-0.5426212,0.5276534,0.11082878,0.5437581,0.13626032,0.032457944,0.11512053,-0.5935134,0.25385752,-0.15107404,-0.15203135,-0.79982346,0.054632213,355 -422,0.592731,0.05543471,-0.3375172,-0.06505,-0.1841648,0.19834708,-0.084174134,0.13797355,0.03494438,-0.5528215,-0.20723407,-0.28709862,-0.114092946,0.20877397,-0.122639775,-0.5248171,0.06248807,0.27150002,-0.17446361,0.388885,-0.4790018,0.6536528,0.1079641,0.31087294,-0.03688928,0.23444296,0.44948715,-0.21529126,-0.3642128,-0.4051234,-0.3461619,0.0008682268,-0.47990036,0.24074794,-0.19787717,-0.5649007,0.106671,-0.44205046,-0.1426821,-0.55258995,0.27229276,-0.8471421,0.5118026,0.12955312,-0.030148242,0.27011794,0.076396994,0.22383745,-0.024035176,0.19588622,0.20804371,-0.30785936,0.05066984,-0.38398173,-0.3330824,-0.37709028,-0.35808796,-0.01099592,-0.4221194,-0.21140207,-0.2826482,0.104978785,-0.16718443,-0.12656567,-0.030485475,0.06956539,-0.43086764,-0.053354625,0.21782579,-0.28595707,0.1497076,-0.54444724,-0.22927073,-0.1249383,0.30512843,-0.36025342,-0.055922262,0.22224696,0.2005211,0.7301025,0.03212294,-0.11991216,-0.37546566,-0.21259582,0.11722166,0.6907219,-0.13819726,-0.40671787,0.00071744405,-0.13839628,0.22665094,0.22835529,0.20995869,-0.050815422,-0.07276515,-0.08836873,-0.15989849,0.20993932,0.5078103,-0.41598907,-0.15190813,0.46161652,0.4773086,-0.052929234,0.047668133,0.060551815,-0.040284276,-0.29256085,-0.22166392,-0.059289653,-0.08568864,0.5928839,-0.07246596,0.3406976,0.69478375,-0.17955254,0.2818048,-0.025085239,-0.025204957,-0.13755505,-0.061024446,-0.28221074,0.29222706,-0.46626586,0.00083901203,-0.132854,1.0037869,0.065690935,-0.49734873,0.3543686,-0.43054938,0.021353062,-0.053902548,0.5422868,0.39195442,0.370297,0.12542404,0.8352528,-0.6073211,-0.0015215363,-0.06899167,-0.2652358,-0.076048136,-0.08779482,0.021792918,-0.3943523,0.12597403,0.12735608,0.0200598,0.07749859,0.35054275,-0.5005075,0.012286289,0.21205756,0.81403285,-0.39840505,0.046176936,0.7377172,0.99576914,0.9852937,-0.033318948,1.2038705,0.38088158,-0.34526125,-0.17980349,-0.23962614,-0.5143713,0.1737354,0.33194426,-0.24008611,0.15904866,0.2227108,0.11524185,0.28301042,-0.4251614,-0.10657453,-0.37879398,0.12564178,0.022676935,-0.03208409,-0.47646168,-0.23312758,-0.12435452,-0.03661749,0.23859671,0.28019506,-0.27457118,0.354307,-0.0029187116,1.940833,-0.17680487,0.1659771,-0.03213331,0.41368634,0.28475124,-0.078644,0.0760184,0.25331888,0.14397225,-0.17924415,-0.51309913,-0.1318951,-0.17826942,-0.66989106,-0.24172528,-0.17568599,-0.10650623,0.11344324,-0.36179778,-0.12412996,-0.07015581,-0.45070818,0.36254916,-2.3818202,-0.048370022,-0.052590933,0.41770926,-0.2857156,-0.35283202,-0.09655796,-0.37421662,0.48549455,0.31700978,0.37578836,-0.5092783,0.20510209,0.49038792,-0.31308696,-0.39063978,-0.5468142,0.21148929,-0.20680825,0.17382814,0.0030524784,-0.2576148,-0.08756534,0.032623496,0.45258692,-0.100599244,0.12946649,0.12454593,0.43895158,0.21703921,0.31357768,0.21751574,0.5970181,-0.3206953,-0.23676597,0.50410306,-0.38328308,0.16896474,-0.2734344,0.11705304,0.22951104,-0.48758918,-0.68558687,-0.77126557,-0.39727163,1.0390265,-0.032842625,-0.5545193,0.17290565,0.056735683,-0.32693365,-0.13112886,0.3957294,-0.08866983,-0.17003246,-0.67488515,0.08929474,-0.14176042,0.15435405,0.06305699,0.07895018,-0.5789903,0.74976623,-0.19432701,0.3906073,0.3827886,0.2948065,-0.08641259,-0.32189035,0.03866262,1.0249244,0.5083863,0.14532934,-0.27678606,-0.14607044,-0.17921183,-0.1442565,0.16367137,0.36318234,0.7782001,-0.034821104,-0.03499136,0.2275871,0.14897718,0.011480453,-0.09988451,-0.36980262,-0.09117043,-0.12125663,0.67308295,0.48487502,-0.047561992,0.3670796,-0.1669444,0.31322506,-0.45152143,-0.36577538,0.6033859,0.74537927,-0.149444,-0.10236745,0.49527326,0.4587055,-0.19650884,0.3588573,-0.8156132,-0.47590193,0.25258717,-0.11388641,-0.46960124,0.00163017,-0.32088658,0.11470372,-0.8222737,0.29158783,-0.08618844,-0.41261795,-0.5622684,-0.32010883,-2.9369137,0.105518565,-0.19997314,-0.05402993,0.025263892,-0.16817202,0.11776316,-0.5516189,-0.38124612,0.08552958,-0.055816118,0.6803531,0.14211346,0.41813466,-0.12649286,-0.328933,-0.28474423,0.12121022,-0.1890235,0.2891764,0.10558311,-0.31770834,0.12701532,-0.24523488,-0.31210405,-0.08090663,-0.45268694,-0.3982966,-0.20478322,-0.2689424,-0.2633657,0.67184734,-0.5803561,0.15793936,-0.2739363,-0.11614169,-0.28121194,0.26622567,0.21041994,0.107707225,0.081540704,-0.06363101,-0.06363305,-0.40798637,0.29413396,0.13548966,0.15026595,0.48956385,-0.25909683,0.030997226,0.2592871,0.565936,-0.042985227,0.74522454,0.31457093,-0.13744819,0.2833921,-0.35994628,-0.18256046,-0.567248,-0.5279792,-0.105882,-0.45733288,-0.5645677,-0.16347902,-0.43541098,-0.7486869,0.5416563,0.031035524,0.062304616,0.013377577,0.32721615,0.37597862,-0.1848624,-0.13642655,0.049824975,0.10847199,-0.45720044,-0.34778705,-0.5955282,-0.33192962,0.2101868,0.9777234,-0.05858204,-0.1005696,0.2705126,-0.0071146786,0.028844884,-0.06508316,0.17751837,-0.15586986,0.51141316,0.020723006,-0.6632977,0.5581617,-0.049516056,-0.118372954,-0.63638914,0.026075492,0.55872625,-0.61946434,0.32047436,0.574522,0.19004358,0.2550169,-0.3901317,-0.2136044,-0.089547835,-0.3852773,0.12394946,0.14724705,-0.60540205,0.4478716,0.30568048,-0.2386699,-0.7808846,0.33961678,0.15986834,-0.49534503,0.055856925,0.08649453,0.28733233,-0.00926312,-0.11234665,0.12375213,-0.5099812,0.3624687,0.32998037,-0.017862927,0.5340206,-0.41310206,-0.30156687,-0.65638435,-0.030912926,-0.32486743,-0.3891795,-0.033408266,0.24023303,0.07176628,0.3552491,0.1812817,0.35868016,-0.5806528,0.049585395,-0.10111286,-0.09114873,0.3630087,0.23743503,0.3931019,-0.45912987,0.583642,-0.10886894,-0.019562943,-0.2760308,0.1110233,0.42557272,0.1790189,0.18092012,0.038604956,-0.2679444,0.32310668,0.7845511,0.18617892,0.2802802,0.08714784,-0.20210867,0.27773932,0.16835964,0.052228305,0.10959106,-0.4609826,-0.11590148,-0.17108522,0.062637344,0.41683617,0.24791737,0.47361293,-0.16758797,-0.2080197,0.11811825,0.10847013,-0.2863877,-0.8874442,0.22603181,0.02461786,0.70266163,0.4852233,-0.08466338,0.1891692,0.65997726,-0.28934738,0.11374002,0.14135279,-0.18641849,-0.2854562,0.48893446,-0.5075941,0.24064718,-0.11079986,-0.061890673,-0.0066962456,-0.121842384,0.2805076,0.66193146,-0.08813091,0.16944186,-0.013069583,-0.3342852,-0.08709918,-0.24666597,0.12110807,-0.6034004,-0.13816981,0.77992773,0.33955812,0.37605026,-0.13127483,0.034578715,-0.028955055,-0.16891313,-0.02668726,0.14501916,0.15435168,0.083375745,-0.51049405,-0.22216238,0.64544,0.16239507,0.08049776,0.0009727478,-0.42400995,0.26418176,-0.14678645,-0.07186711,0.026356105,-0.5179399,0.20959656,-0.427354,-0.3182063,0.30695263,0.15504806,0.287717,0.17343585,-0.019720022,-0.056555837,0.33240986,0.41182908,0.7226286,0.068499826,-0.16892599,-0.38696626,0.34618765,0.18411449,-0.21787651,-0.08925002,-0.035377085,0.11178783,-0.654945,0.37341323,-0.06573608,-0.05144957,0.2565963,-0.18958065,-0.015270091,0.51297987,-0.16994773,0.008288029,0.2996059,-0.19465725,-0.32548323,0.07093075,-0.37949067,0.0773576,0.07163956,-0.19593294,-0.17772005,-0.12075334,-0.20404114,0.25886935,0.10642882,0.27282897,0.3398855,-0.0010626231,-0.5291224,-0.11554794,-0.06355218,0.46494937,-0.09145673,0.03776274,-0.23267038,-0.51454175,-0.23872216,0.2881883,-0.1555386,0.038611267,0.21261093,-0.22663224,0.82696897,0.12130336,1.0786092,0.15979764,-0.2560804,0.005065177,0.53204024,-0.17085247,0.115985036,-0.3745673,1.0491081,0.5327659,-0.021439003,-0.06258277,-0.09048986,-0.032290217,0.21824126,-0.32117897,-0.24316895,-0.007659729,-0.7300201,-0.4589088,0.27589852,0.24891534,0.037309516,0.020326108,0.16542353,0.19316487,0.11371124,0.39739043,-0.4398143,-0.34935004,0.28196123,0.23547015,0.042856205,0.028500216,-0.3547915,0.47343358,-0.5619954,-0.09010482,-0.35527998,0.10086161,-0.24208842,-0.23912382,0.21362655,0.111724496,0.35409817,-0.3291312,-0.38320538,-0.19370379,0.32843715,0.11744861,0.32381183,0.4297109,-0.19186834,0.1442441,-0.13866538,0.4592407,1.2826601,-0.14848375,0.16815947,0.64393157,-0.37544844,-0.5612273,0.29860568,-0.37742025,-0.14127025,-0.15606865,-0.39787006,-0.4484315,0.31241196,0.29278952,0.008797796,0.21347985,-0.48404688,-0.16188839,0.36662194,-0.3130732,-0.26601312,-0.2696521,0.06246921,0.6245913,-0.19746554,-0.3007019,0.22306585,0.52756387,-0.2613098,-0.58614916,-0.066177,-0.31280702,0.46313915,0.20570771,-0.22651471,-0.15388475,0.015292968,-0.38988492,0.053226907,0.28059402,-0.43671724,0.00969874,-0.5919098,0.15945117,0.70870507,0.032359447,0.05228389,-0.5740749,-0.25863943,-0.98528534,-0.3731343,0.58187854,0.2241811,0.04071957,-0.35921484,-0.025349587,-0.21149196,-0.04996272,-0.17123748,-0.43764332,0.27719852,0.27336767,0.46163413,-0.15613903,-0.77607286,-0.012371557,0.16800925,-0.43686432,-0.49987346,0.44600987,0.0018009299,1.0388337,0.099889256,-0.22062945,0.33437204,-0.6166056,0.26268968,-0.20208265,-0.1690541,-0.80799454,0.13927451,356 -423,0.35841963,0.033524085,-0.6125652,-0.3067084,-0.35337538,0.18302837,-0.46861264,0.17292787,0.26603904,-0.25933456,0.07083733,-0.012168332,-0.27318743,0.25406834,-0.22731331,-0.94253653,0.20428823,0.079669,-0.6238651,0.64478433,-0.39663863,0.40011564,0.11037234,0.1799827,-0.18639043,0.12024594,0.47405857,0.1095567,0.031559877,-0.39459303,0.15852652,0.20751223,-0.8775045,0.34978142,-0.015862575,-0.20516777,-0.09827935,-0.47539932,-0.10607122,-0.90845937,0.2621588,-0.7855527,0.55885404,-0.09644634,-0.43044335,-0.02755284,0.16636476,0.20559515,-0.07058547,0.08094977,0.28578207,-0.3344917,-0.19674815,0.116402104,-0.06690605,-0.5320745,-0.54980105,0.008603153,-0.66223794,-0.0012884566,-0.34466797,0.38186482,-0.33324292,-0.10398744,-0.37054187,0.22455035,-0.35980317,-0.123966634,0.2621509,-0.40300274,0.055040065,-0.49589628,-0.058193725,-0.14071532,0.49913028,0.00045166697,-0.15965368,0.380786,0.52488154,0.641002,0.100671545,-0.37351185,-0.054923225,-0.2170279,0.25817457,0.5947011,0.03641257,-0.5285211,-0.31851986,-0.052698195,0.6435156,0.053318296,0.16432206,-0.32981592,0.00847838,-0.17948224,-0.029418945,0.7024912,0.5950295,-0.5234377,-0.05704693,0.5409561,0.26536772,0.37696353,-0.28562006,0.3621882,-0.16259839,-0.4108471,-0.25313875,0.29779792,0.027369468,0.4887741,-0.2250798,0.11011721,0.85267526,-0.037500966,-0.02734435,0.20548965,-0.15657587,0.03575221,-0.13481237,-0.066905364,0.26021078,-0.5562446,0.014412169,-0.43884903,0.5988485,0.08509286,-0.8996751,0.31721744,-0.3548687,0.13750459,0.08857016,0.8333596,0.9414553,0.46645245,0.12480574,1.1018133,-0.5358247,0.014535508,0.37540987,-0.37254265,0.04596361,0.0022200432,0.067784235,-0.37132493,0.27046615,-0.09366355,0.09524261,-0.06783343,0.4429202,-0.5116623,-0.10805039,-0.013745828,0.54002655,-0.28642845,-0.14744309,1.0042828,1.0209777,1.0694338,0.015057253,1.2631617,0.22512162,0.029705862,-0.40143389,0.06552024,-0.5421497,0.31589556,0.49909708,0.7315784,0.33711267,0.047606595,0.0099283075,0.29002067,-0.46964136,-0.25698397,0.1308401,0.3918218,-0.052650232,-0.33840445,-0.43686375,0.028406573,0.4416431,0.15282205,0.08839653,0.21573985,-0.081788726,0.5647184,0.17090575,0.58580494,-0.109188676,0.08647684,-0.031702194,0.35339665,0.21766233,-0.2578212,0.1987063,0.13625507,0.26075214,-0.10449036,-0.4952092,-0.08381634,-0.40714666,-0.4358911,-0.26326314,-0.41585895,-0.4212112,-0.20620091,-0.32422638,-0.20739272,0.10604175,-0.22654554,0.49994227,-2.416045,-0.23004277,-0.36334845,0.3550728,-0.1538368,-0.21324213,-0.17412946,-0.5564394,0.46032968,0.341935,0.49120182,-0.64113075,0.38936567,0.33303812,-0.2979098,-0.13831954,-0.74343795,0.09675656,-0.017675575,0.52184427,0.051371165,-0.40599993,-0.032447316,0.39302513,0.7599692,0.31054574,0.05671944,0.28904969,0.72564715,-0.21156533,0.42871326,-0.028985007,0.68254036,-0.12887834,-0.19706538,0.37561896,-0.50770205,0.63691676,-0.3528896,0.09868318,0.5224825,-0.27487892,-0.8343421,-0.5526854,-0.38309553,1.4632858,-0.43509668,-0.7821067,0.057645205,0.42258328,-0.16304791,0.14773428,0.539522,-0.08072112,0.15280768,-0.54773504,-0.12115367,-0.30664435,0.27732515,-0.26626632,0.08681847,-0.55865246,0.8580941,-0.24462748,0.47799176,0.18269464,0.123926364,-0.28909776,-0.5210745,0.033523023,1.0427173,0.6362249,0.052338462,-0.19962652,-0.20156077,-0.50436634,-0.40124565,-0.112545066,0.84973,0.4273978,-0.0533387,0.068910375,0.36944303,-0.0893039,0.21640804,-0.21984935,-0.58047974,-0.23533382,0.1145404,0.83368737,0.6667411,-0.33521715,0.29970816,-0.038523596,0.033252448,-0.2001035,-0.50421274,0.45657036,0.5323615,-0.21897057,-0.20392779,0.44934255,0.35129732,-0.27499706,0.500637,-0.60994476,-0.65113205,0.53193235,0.12835693,-0.47815853,0.18519334,-0.41013023,0.14503722,-0.6796516,0.57946354,-0.47733933,-0.7236189,-0.3910703,-0.232357,-2.8623672,0.07029886,-0.12518395,0.17914852,-0.457584,-0.11171063,0.4613417,-0.41602772,-0.79513973,-0.00575568,-0.016499365,0.5690408,-0.24615976,0.070184745,-0.33497497,-0.28272817,-0.11490335,0.4710793,0.17330442,0.38314137,-0.01898798,-0.061907146,0.04385628,-0.35551235,-0.36946398,-0.25727886,-0.61615354,-0.67850065,0.013802481,-0.32799646,0.0954417,0.6907819,-0.70107377,0.03422185,-0.26225457,-0.019082764,-0.17717846,0.13547377,0.112162426,0.19461183,-0.0847997,-0.14392304,-0.050889414,-0.14903928,0.44517216,0.07588218,0.30758947,0.47605923,-0.2546868,0.17650345,0.520364,0.58948797,0.14636944,0.9421779,0.04239065,-0.06804083,0.44292277,-0.10201855,-0.40264267,-0.7651897,-0.31750455,-0.012582108,-0.5061561,-0.37479073,0.011060203,-0.35343245,-0.8982797,0.3623964,0.14372154,0.385766,-0.31539258,0.31010112,0.24281693,-0.17953089,0.10983674,-0.0846147,-0.23833187,-0.46356645,-0.36498114,-0.7609116,-0.5520598,0.040112156,0.8162084,-0.1734567,-0.21373202,0.18431412,-0.117937885,0.08880718,-0.016608402,0.272414,-0.026606092,0.3417354,0.1004701,-0.8740568,0.38416693,-0.28838554,0.10534818,-0.5557887,0.11600215,0.6888575,-0.5832452,0.27158314,0.60732305,0.28985476,-0.096256666,-0.77934223,-0.11762651,0.1510237,-0.2899497,0.56291157,0.13776846,-0.5464157,0.6518493,-0.015187242,-0.12314129,-0.6118094,0.64130646,0.120407164,0.08021845,0.25746244,0.4812932,-0.075629435,-0.11462755,-0.1807632,0.3272945,-0.5381521,0.44230264,0.39275554,-0.08507971,0.4845979,-0.047979005,-0.63462263,-0.52827615,-0.15833111,-0.7055621,-0.32524952,-0.026285563,-0.17777629,-0.040613372,0.046381168,0.13690732,0.5331721,-0.3079017,0.12795216,-0.17606023,-0.29929128,0.68112665,0.63323206,0.49863988,-0.4600604,0.6949709,0.29193807,-0.021262405,-0.019528363,0.09072958,0.63954324,0.27569905,0.3860825,-0.023992207,0.18023065,-0.06619502,0.5449311,0.28234118,0.3948854,0.20103979,-0.29240718,0.35078296,0.06107494,0.49703616,-0.38526216,-0.5498525,-0.09086067,-0.040122706,0.0016371746,0.45509848,0.14770164,0.24769542,0.051095646,-0.19656365,0.11747413,-0.112457834,-0.24648798,-1.535178,0.42088023,0.23182829,0.78936344,0.2559896,-0.03395394,0.08614968,0.5570526,-0.26854637,-0.15143363,0.39755073,0.088085614,-0.3746267,0.5513729,-0.49728012,0.25159213,-0.18856955,0.18009599,0.2057956,0.23421256,0.49580693,0.86042327,-0.14293444,0.040572487,-0.27263075,-0.27424064,0.13444774,-0.28143254,0.33945307,-0.3100407,-0.36618656,0.6703099,0.30780414,0.26432377,-0.34460157,0.051234502,-0.02824889,-0.315223,0.05235184,-0.17167042,-0.086740054,-0.35245916,-0.48508188,-0.1232247,0.6680501,0.0051615834,-0.1321664,0.107544556,-0.24785928,0.23370838,-0.07836231,0.19946377,-0.16125591,-0.7463947,-0.1803313,-0.58922815,-0.50588137,0.22763543,-0.26579455,0.3338627,0.2907844,-0.08042015,-0.12070365,0.090649076,0.11854366,0.41624528,0.031164348,-0.27891135,-0.32675007,-0.14481023,0.34994334,-0.43451935,-0.053350564,-0.20021772,0.3073564,-0.43758106,0.35947245,-0.39965394,-0.3116264,0.18552384,-0.03184455,-0.2445079,0.35728452,-0.25645772,-0.16180792,0.29551083,-0.302376,-0.07323702,-0.047051884,-0.25679538,0.26990715,0.08751982,-0.020799914,-0.08476504,-0.044342704,-0.17518868,0.15140118,0.07249719,0.1084401,0.6743631,-0.0015750059,-0.7138397,0.28828996,0.0915146,0.6844068,0.21879342,0.054137833,-0.20976639,-0.46539885,-0.46893117,0.7890285,-0.21633424,0.18544881,0.07005691,-0.3129504,0.7847617,0.17082377,1.1541506,0.13609883,-0.6277522,0.048309058,0.7237204,0.02780373,0.07294605,-0.36147442,0.9547545,0.53299254,-0.11391248,0.083729506,-0.5520796,-0.025616746,0.25782365,-0.17819127,-0.1480058,-0.15649335,-0.6541476,-0.15563338,0.021427555,0.20122483,0.016567692,-0.11889503,-0.24141285,0.16432749,0.17819087,0.39298293,-0.87686837,-0.34017804,0.24814437,0.124360576,-0.19889866,-0.0415419,-0.34216875,0.29262123,-0.8294169,0.12126456,-0.58808714,0.17250605,-0.065200515,-0.43837658,0.38547182,-0.22871438,0.3811029,-0.3532105,-0.4139169,-0.08122091,0.4647534,0.36106962,0.24707386,0.73684055,-0.18935974,-0.208051,0.2278982,0.61245006,1.3060305,-0.051082294,0.14894919,0.20680937,-0.400651,-0.6272258,0.018595848,-0.6358043,0.20480503,-0.1021673,-0.5262547,-0.30731106,0.15427849,-0.057535954,0.1091602,0.14734364,-0.83055866,-0.22596705,0.29305276,-0.28639808,-0.23035358,-0.39244965,0.07808571,0.74148476,-0.40395632,-0.35813135,0.0043574315,0.26891214,-0.38330224,-1.0312511,0.2154136,-0.3089432,0.37397188,0.09745752,-0.5129152,-0.011661432,0.2809715,-0.45219082,0.40165728,0.5151702,-0.31760582,-0.05324651,-0.19165525,0.07427122,0.8136725,0.0028780145,0.16233923,-0.5447603,-0.48905095,-0.81110954,-0.24711822,0.07277185,0.36522952,-0.102725744,-0.519641,-0.35829213,-0.5044379,0.118324175,0.07666715,-0.53477955,0.32322145,0.109947436,0.63854754,-0.20569287,-1.14002,0.053722654,0.015668487,-0.0023783338,-0.44409537,0.4053066,-0.09121646,0.70037574,0.13402446,0.08081637,-0.019216478,-0.93859273,0.36119658,-0.19161974,-0.0077478206,-0.63835675,0.4632717,367 -424,0.45018086,-0.2364872,-0.42682832,-0.24639902,-0.26220647,0.012085685,-0.09272171,0.53468305,0.20419887,-0.37097174,-0.28472072,-0.31801316,0.029789329,0.5740972,-0.17262064,-0.6296615,-0.05788323,0.0944882,-0.62491095,0.7080721,-0.30261335,0.179184,0.28362235,0.3474159,0.52712315,0.24002257,0.28423563,-0.14886306,-0.0827909,-0.16697346,-0.20850913,0.1971543,-0.46710736,0.12540719,0.0057888883,-0.34037516,0.0055320784,-0.37256983,-0.35726696,-0.8477734,0.42414325,-0.96877843,0.46268535,-0.033257794,-0.19353639,0.3913899,0.1347493,0.50050336,-0.35359982,-0.18039992,0.11364224,-0.069331184,-0.12509693,-0.07547665,-0.0039981776,-0.42887667,-0.7069145,-0.07097815,-0.26001856,-0.38633674,-0.4015539,0.08301815,-0.37187845,0.048939977,-0.00025035653,0.61480385,-0.45130232,-0.02877487,0.3759479,-0.17413895,0.26360252,-0.6251001,-0.223765,-0.094205804,0.26385006,-0.010601188,-0.058782734,0.38140345,0.44789174,0.19284718,0.08042483,-0.21695413,-0.20158419,-0.017233917,0.10363114,0.36382556,-0.111503355,-0.69591206,0.079497404,0.16727415,0.1964055,0.30158487,0.33668354,-0.29067013,-0.20308377,0.092455946,-0.28262743,0.29160234,0.3738316,-0.3095053,-0.28046387,0.44488934,0.46022135,0.13262634,-0.05513105,-0.07171651,-0.03406511,-0.59141874,-0.046294354,0.019791672,-0.38111606,0.6739877,-0.23418872,0.27122137,0.7524094,-0.13761583,0.022355633,-0.07025757,0.114162244,-0.31430793,-0.2618287,-0.28408793,0.21753727,-0.4222533,0.30175433,-0.24681011,0.83755404,0.18650429,-0.6250816,0.23035678,-0.58755875,0.248053,-0.21773006,0.46492293,0.6444173,0.2856094,0.4479048,0.59610456,-0.500884,0.0055904803,-0.06249958,-0.47770095,0.052965377,-0.23932374,-0.0366653,-0.5631982,0.015180715,-0.024858305,-0.09889972,0.12169496,0.22757597,-0.55056196,-0.027412305,0.060563378,0.78862095,-0.25240093,-0.03190504,0.7909933,1.0178796,0.9798521,0.020836404,1.0922669,0.3027366,-0.31171924,0.3172337,-0.30174664,-0.6662189,0.3371965,0.6688519,-0.50160074,0.30809647,-0.024485067,-0.021605058,0.29695,-0.33417526,-0.009997108,-0.31151935,0.16618972,0.24990673,-0.33506542,-0.38814372,-0.25952515,-0.07092677,0.020896604,0.12688635,0.25999624,-0.074658975,0.38730118,-0.014737887,1.6370901,0.029879782,0.021811215,0.04152785,0.39164788,0.20673566,-0.13458201,-0.10415898,0.3680875,0.46070185,0.12595968,-0.5606735,0.18940951,-0.3164017,-0.48145458,-0.11997745,-0.3708191,0.07982893,0.14548866,-0.3330497,-0.0766083,-0.23896995,-0.14149812,0.40117565,-2.8896368,-0.27917233,-0.22704509,0.22501767,-0.3180838,-0.23494376,0.14758505,-0.51030236,0.4250036,0.4399073,0.4854091,-0.6712359,0.22424321,0.3314421,-0.71428174,-0.13180251,-0.5831949,-0.08172804,-0.038034566,0.44806114,-0.082594,-0.16074432,0.07006355,0.058730662,0.39507908,0.07233425,0.14113732,0.39373067,0.33327463,0.05951715,0.49961886,-0.028858075,0.533668,-0.13194779,-0.14146936,0.23152855,-0.14008239,0.45134875,-0.10725074,0.091582336,0.56700414,-0.361324,-0.8489135,-0.6974581,-0.2567658,1.2355039,-0.29177305,-0.30970213,0.24776676,-0.10872082,-0.08262753,-0.056094382,0.35626975,-0.17981638,-0.141171,-0.78813106,0.094796024,-0.012444994,-0.02913537,0.0049185907,-0.1625456,-0.4069745,0.79172695,0.016029615,0.38297603,0.27716756,0.19854258,-0.39791423,-0.4506082,0.06275292,0.86356366,0.39754248,-0.038315184,-0.11740164,-0.24018177,-0.50237143,-0.18790796,0.23358266,0.42903143,0.7013589,-0.008120378,0.1064197,0.22305979,-0.06518167,0.06297445,-0.2502881,-0.23130812,-0.060356077,-0.006504408,0.43411463,0.58381623,-0.13247783,0.5108448,-0.099899575,0.31144163,0.034540087,-0.51623255,0.71534437,1.3124367,-0.18120375,-0.3211324,0.5743857,0.41743067,-0.1581995,0.47485584,-0.4402752,-0.13963506,0.59880495,-0.21872623,-0.38580042,0.16806832,-0.23843524,0.124151655,-0.93358666,0.238549,-0.30384043,-0.37406352,-0.49959913,0.02795544,-3.3704379,0.23377919,-0.33323193,-0.18908015,-0.24663281,-0.21543467,0.17018318,-0.69772184,-0.4651323,0.27264827,0.15399791,0.8555349,-0.10221087,0.21066198,-0.16135387,-0.1695761,-0.29454586,0.042551212,-0.030607702,0.29448527,-0.034098413,-0.41535488,0.14560829,-0.04287953,-0.57693857,0.13243246,-0.5299132,-0.4302862,-0.31075612,-0.44401744,-0.34190044,0.5952024,-0.20953642,0.06729386,-0.12837508,0.014778083,-0.08516636,0.18315196,0.08093578,0.10095896,0.10896306,0.0036522597,0.06985135,-0.39666587,0.41508836,0.015200155,0.3866386,0.35064745,-0.18926832,0.28811032,0.3513581,0.5719738,-0.15160473,0.6910902,0.4317614,-0.06427523,0.2576334,-0.23019895,-0.30851275,-0.5637202,-0.33755854,-0.03919622,-0.32079872,-0.40306106,-0.122133374,-0.33921337,-0.67278165,0.47967148,0.027979845,0.31175843,-0.09072698,0.29660162,0.61637074,-0.31067005,0.04269874,-0.021522235,-0.20295897,-0.65771645,-0.03905773,-0.6369948,-0.46583298,0.2645572,0.8661558,-0.28662133,-0.11652065,-0.15211225,-0.3682335,0.15073411,0.0066365427,-0.20016472,0.099026084,0.31272727,-0.14132579,-0.8002483,0.6637036,-0.026001113,-0.12024488,-0.5223693,0.26704088,0.42062762,-0.43895411,0.45117757,0.21789753,-0.044568814,-0.10976207,-0.33635995,-0.17917001,-0.09600454,-0.26763493,0.30994752,0.22785613,-0.65368754,0.38200098,0.41337943,-0.29778418,-0.76776886,0.46501392,0.016106913,-0.19495715,0.005373729,0.20719203,0.2842254,0.044989485,-0.28098944,0.19562355,-0.5094289,0.18889233,0.12876435,-0.031333003,0.251671,-0.05511275,-0.07387591,-0.7951861,0.12906884,-0.32106882,-0.21058403,0.2507641,0.22351561,-0.0046564424,0.068968445,0.105311535,0.37525532,-0.11564578,0.1628437,-0.050332267,-0.24617918,0.376841,0.4798324,0.32204118,-0.5376012,0.6425248,-0.053825855,-0.085916884,0.024189722,-0.021022445,0.49111792,0.35197586,0.35142514,0.121673174,-0.23781858,0.35746452,0.5896894,0.07868651,0.44131595,0.1458682,-0.1068364,0.23122971,0.051381554,0.22682966,0.1031866,-0.62072414,-0.04161952,-0.28455305,-0.018456439,0.6106839,0.056080867,0.12777664,-0.027316472,-0.47597966,-0.05983148,0.002438907,0.016232967,-1.0671928,0.42226917,0.31503597,0.83903486,0.49557644,-0.24149558,-0.10480498,0.78348416,-0.16794932,0.1564844,0.3604752,0.002599729,-0.6250238,0.5965725,-0.857273,0.35868615,0.04661083,-0.08284824,-0.048282016,0.08580857,0.16139562,0.7205078,-0.2515649,-0.0056303483,-0.10398074,-0.4161612,0.33235398,-0.37540904,-0.014625243,-0.5780967,-0.3329474,0.36682183,0.49345875,0.2783184,-0.08324722,-0.009551162,0.16053547,-0.16554105,0.28931546,0.16645236,0.1368672,0.052524034,-0.56324893,-0.28971466,0.40179938,-0.0251155,0.36863974,-0.087068364,-0.19574581,0.22580817,-0.32240704,-0.10566332,-0.16061376,-0.7485107,-0.005428642,-0.09760017,-0.3457648,0.50535214,-0.16338755,0.25518647,0.22567551,0.101382814,-0.14385669,0.13087158,0.038065225,0.88657486,-0.050872866,-0.28810245,-0.3029308,0.19876416,0.033512298,-0.13181296,0.16563666,-0.15080397,-0.16362773,-0.62212986,0.63726246,0.032278467,-0.2886093,-0.07156115,-0.19941998,0.07182544,0.596063,-0.23020756,-0.023789244,-0.22456113,-0.2314916,-0.15784028,-0.25769696,-0.10923431,0.3252283,0.29217127,0.2196552,-0.2200365,-0.008207634,-0.07927536,0.4966062,-0.14210467,0.3035221,0.21632311,-0.11514684,-0.22837187,-0.37795955,0.2653982,0.36760256,0.17921512,-0.22238682,-0.39218494,-0.48154068,-0.41805503,-0.0021533924,-0.039623715,0.4678237,0.03080371,-0.25437427,0.7813419,-0.10206963,1.3364226,-0.03888506,-0.4392064,0.11388435,0.65600485,0.024112549,-0.1659183,-0.11558678,0.9385404,0.52163815,-0.07014798,-0.039584137,-0.42179343,-0.029108593,0.31740412,-0.23492469,-0.07256466,0.07979113,-0.483078,-0.4755044,0.14134884,0.32114983,0.1925338,-0.086439386,0.033054896,0.27568272,-0.051608305,0.5206288,-0.2395698,-0.30700874,0.19963405,0.17467165,0.028941298,0.11058948,-0.5139052,0.48594713,-0.6361946,0.21010001,-0.21111958,0.2087475,-0.23555276,-0.32998198,0.28056854,0.051710945,0.32804176,-0.31766585,-0.51239485,-0.16497569,0.54391867,0.2812404,0.12296168,0.6671772,-0.3736345,0.016315278,0.05391728,0.43860856,0.90953696,-0.16897038,0.036656175,0.3729264,-0.45447573,-0.65065515,0.5413874,-0.22213279,0.31819883,-0.041145064,-0.1369144,-0.62890923,0.26238376,0.36432013,-0.0036253482,-0.034054484,-0.6053949,-0.2963763,0.34513617,-0.39035413,-0.16953342,-0.406173,0.18082802,0.4035838,-0.2950909,-0.3502398,0.07450138,0.09319825,-0.08200623,-0.43934625,-0.2315246,-0.32359052,0.32012185,0.04906676,-0.33267593,-0.14741233,0.089099765,-0.3963876,0.2086778,-0.23601472,-0.38777637,0.07898784,-0.35616398,-0.0077688354,0.87050164,-0.22477841,0.099174105,-0.6576519,-0.36827025,-0.7007438,-0.40481105,0.5995244,-0.1318027,0.09707133,-0.6499491,0.062337425,-0.04442897,0.07522,-0.15143652,-0.29383484,0.38383445,0.13333496,0.39302382,0.02679973,-0.7176686,0.12274605,-0.004462653,-0.033300005,-0.63700813,0.50515926,-0.07741648,0.7170065,0.06527988,0.22509514,0.2736491,-0.37002745,-0.020610092,-0.27284682,-0.33323577,-0.53018624,0.046934027,368 -425,0.484175,-0.25802,-0.54303086,-0.1426332,-0.39823565,0.0011411948,-0.15601642,0.20226325,0.31330386,-0.5193478,-0.06991916,-0.13500224,-0.07173364,0.03666347,-0.123782344,-0.38420925,-0.14437328,0.2014669,-0.7198634,0.9246759,-0.27316958,0.25255254,0.1410245,0.36128494,-0.040648956,0.2258705,0.08328087,-0.0817889,-0.08176935,-0.27064434,-0.025477078,-0.023140226,-0.88865995,0.3846166,-0.1667534,-0.3109992,-0.14712766,-0.28726798,-0.25928405,-0.850235,0.32356873,-0.9103154,0.6293095,0.026719894,-0.36098072,0.1386012,0.17600273,0.1917318,-0.1918621,-0.023579895,0.254901,-0.13136858,-0.32080764,-0.27521807,0.007064547,-0.36869168,-0.5494779,0.026071966,-0.32881704,0.10008835,-0.24548905,0.27650222,-0.21737976,-0.084719755,-0.28185806,0.6303102,-0.34648708,0.24383654,0.15853143,-0.17715494,0.243189,-0.6976784,-0.08005613,-0.22854242,0.13196845,-0.15470697,-0.29841056,0.20342655,0.15596437,0.6447425,0.04908436,-0.23146746,-0.20301327,0.14914884,0.041085254,0.21413878,-0.23073065,-0.36890438,-0.20982039,-0.1487424,0.21977374,0.208496,0.15191129,-0.37614974,0.18454275,-0.19288349,-0.11122338,0.38708162,0.5481162,-0.3724377,-0.22478925,0.32383028,0.6016892,0.15544698,-0.077932715,-0.085028365,-0.13264118,-0.5636429,-0.22685516,0.21073547,-0.2388719,0.51568574,-0.16933599,-0.042680003,0.2637646,-0.16885877,-0.201273,0.37313846,0.071031354,0.060163092,-0.38193908,-0.33961126,0.3758095,-0.5530982,-0.04811556,-0.40468398,0.40820327,-0.01412942,-0.68021697,0.2873227,-0.5388838,0.19158776,0.060492076,0.52728593,0.8788024,0.7231421,0.15862527,0.9250728,-0.55234534,0.0019386688,-0.0596809,-0.18131073,0.18449725,-0.28559768,0.13693997,-0.42926425,0.012110518,-0.1995139,-0.20793544,-0.21279022,0.34222513,-0.6435247,-0.3138928,0.23691122,0.6556714,-0.15069151,-0.03173423,0.89353997,1.1029478,1.1457062,0.1791183,1.401556,0.25553098,-0.15002389,0.07448893,-0.16591205,-0.8706466,0.1669178,0.25515184,0.3179787,0.11484272,0.21519129,0.0039534057,0.57001215,-0.5408513,-0.05790478,-0.15450358,0.5703291,-0.035884228,-0.011829087,-0.19800104,-0.15199922,0.12747951,0.14138515,0.15264502,0.10421128,-0.41807103,0.05672843,0.25505847,1.2188696,-0.35638338,0.12351223,0.22019693,0.24503648,0.27592978,-0.12847014,0.036537316,0.24302857,0.17387404,0.0770237,-0.4645863,-0.0645598,-0.27541474,-0.45323303,-0.15603785,-0.101027966,-0.21262553,-0.16497706,-0.38777635,-0.37511498,-0.0186371,-0.35866648,0.48364726,-2.4470916,0.0060069305,-0.2735205,0.3316314,-0.34477064,-0.34061676,-0.07427334,-0.46071666,0.45021942,0.33170286,0.47050935,-0.67376155,0.32303756,0.36690086,-0.5640953,0.007974305,-0.65926117,-0.19353011,-0.06673993,0.40728283,0.22630608,-0.33180425,-0.10556132,0.049213566,0.38847998,0.122550555,0.13336499,0.42714685,0.37330753,-0.07493918,0.4632364,0.2009995,0.61088794,-0.4363067,-0.29957512,0.35240462,-0.48961663,0.2504545,-0.090235256,0.083131954,0.5135659,-0.520652,-0.7506456,-0.93943864,-0.23826209,1.2091463,-0.053782243,-0.625663,0.024819639,-0.42439845,-0.27382162,0.048617102,0.5663999,-0.07103238,0.117698215,-0.8521351,-0.05356484,-0.1484041,0.4889718,0.018045949,0.13469587,-0.6282163,0.93305844,-0.075388364,0.51576024,0.50503355,0.2568415,-0.40523106,-0.39819345,0.0871596,1.0261403,0.44572824,0.059194975,-0.123146884,-0.22142029,-0.36681613,-0.12401498,0.10637567,0.6588462,0.4258561,-0.1675427,0.03765976,0.3484006,-0.10846811,0.0030385256,-0.1657779,-0.34799606,-0.31993183,-0.05511206,0.6224187,0.7411563,-0.04048052,0.27227524,-0.06909605,0.24638668,-0.16183329,-0.68046916,0.61877793,0.8819017,-0.21364081,-0.33238325,0.7148362,0.38617298,-0.34326547,0.55141795,-0.58605,-0.51603925,0.09042396,0.037678514,-0.47330925,0.07362775,-0.43032023,0.19237961,-0.65111953,0.46613187,-0.43238586,-0.43037748,-0.65200377,-0.28729132,-2.7053905,0.3419141,-0.1610961,0.15627456,-0.16694786,-0.098753974,0.2665992,-0.41065758,-0.7770953,0.20789954,0.0513305,0.55134374,-0.12947348,0.038098138,-0.1726128,-0.3828214,-0.29672167,0.3136904,0.07144543,0.2065963,0.00515581,-0.30322388,-0.06735667,0.118233725,-0.20905626,-0.1100796,-0.6659512,-0.55296975,-0.12900753,-0.5848443,-0.31320977,0.68027353,-0.29789498,0.0022236246,-0.3979921,0.0006583035,0.074441925,0.2407086,-0.02132726,0.31529555,0.10097617,-0.11378608,-0.20072703,-0.28864786,0.13948062,0.070714846,0.023412893,0.35757175,-0.29781437,0.22317609,0.24903545,0.81831235,-0.124623396,0.9984857,0.5180536,-0.17273673,0.36389896,-0.10236149,-0.252012,-0.56937426,-0.15330826,-0.0011152221,-0.49812266,-0.24817026,0.21727583,-0.29147002,-0.8236772,0.5845632,-0.08376957,0.04564156,0.12661757,0.19000861,0.5025632,-0.2367632,-0.057889488,-0.20869216,-0.23944949,-0.3827823,-0.41865116,-0.49538592,-0.28850874,-0.08010453,1.3096688,-0.1698725,0.05353244,0.36463323,-0.07936301,0.04662568,0.19333962,-0.11875304,0.041969005,0.57952976,0.14354849,-0.60297775,0.26163292,0.11937797,-0.04711512,-0.53407997,0.5218077,0.72962207,-0.58600754,0.7324275,0.33662292,0.16097721,-0.3016109,-0.64585173,-0.18674847,0.08525412,-0.3460137,0.36357546,0.2813457,-0.8208478,0.3420863,0.30641714,-0.061356127,-0.9150662,0.4244229,-0.089864604,-0.29163155,-0.2144343,0.5539908,-0.09240927,0.17222592,-0.22649133,0.26039305,-0.49432787,0.27209178,0.14411378,-0.11963358,0.14389372,-0.26429206,-0.2775698,-0.7623335,-0.05838127,-0.6296402,-0.377462,0.3269669,-0.09310372,-0.09256896,0.51322234,0.37086672,0.45981672,-0.045116026,0.10921175,-0.19281052,-0.30955014,0.4577933,0.4991699,0.41645887,-0.5104893,0.6127423,0.03302953,-0.1452495,-0.3063685,0.017197618,0.36763185,-0.05239892,0.4052773,0.053891234,-0.009868396,0.2103549,0.77293235,0.08506274,0.32744756,-0.0028657967,-0.09957613,0.18578295,0.008235639,0.27530354,-0.19583546,-0.6978971,0.07852707,-0.12678525,0.24964544,0.28839263,0.05562825,0.2798859,-0.0021404538,-0.25882062,-0.16829102,0.09769909,-0.12548839,-1.3667657,0.27297103,0.06091092,0.86545384,0.79258364,-0.046907116,-0.053773455,0.6622805,-0.16741051,0.04917856,0.35277894,-0.13908936,-0.13666907,0.4797427,-0.6976364,0.39321136,-0.06033177,0.08972835,-0.1398109,0.11707436,0.2232791,0.9853249,-0.19804104,0.039364655,-0.31904426,-0.12707621,0.19548596,-0.30644995,0.18935998,-0.3967875,-0.4855378,0.7736811,0.4097367,0.6332798,-0.2723218,0.0038921577,-0.030865133,-0.20737076,0.27946797,-0.043650843,0.00073203444,0.11519628,-0.480599,0.11374504,0.5148331,-0.07899733,0.09505505,0.1310263,-0.2775605,0.1547921,-0.106556654,-0.060929086,-0.103183195,-0.78713405,-0.14008398,-0.2872332,-0.061157208,0.44324556,-0.28916717,0.08365012,0.1400259,0.09863331,-0.2617975,0.24605879,0.09225713,0.5611873,0.16752562,0.0065537817,-0.2682779,0.29034588,0.01826428,-0.21504827,0.15847445,-0.15815724,0.2592096,-0.81440365,0.3521246,0.05691546,-0.5201172,0.21369468,-0.04758527,0.06250282,0.5923974,-0.24941644,-0.32698044,0.17211542,-0.15498288,-0.09519189,-0.113331296,-0.048922118,0.2266346,0.036565997,0.11928101,-0.0860814,-0.0829036,-0.23651543,0.33249065,0.20562895,0.34626967,0.43826166,0.13156562,-0.5765656,0.21911204,0.17540477,0.6705771,-0.14348319,-0.09200498,-0.04515359,-0.5204259,-0.48153216,0.38660124,0.069182016,0.26114938,4.780718e-05,-0.18671687,0.8152914,0.20651875,1.1808488,-0.010527859,-0.14365561,-0.06742164,0.53123605,-0.014682548,-0.07615525,-0.44766346,0.9978164,0.62818575,-0.065664746,0.012328567,-0.23583767,0.00383475,0.20606533,-0.17154181,0.15191317,0.0047458643,-0.8009109,-0.24348558,0.038657743,0.38785082,-0.05252245,-0.109043814,0.027549535,0.26944622,0.026428375,0.2608121,-0.5548353,-0.04308009,0.4192007,0.37275606,-0.0151941795,0.21903324,-0.33339268,0.19739236,-0.72259384,0.19466667,-0.22310236,-0.03482182,-0.15965056,-0.18150248,0.14465669,-0.019394722,0.28484297,-0.48773432,-0.41540188,-0.25888047,0.5087901,0.2407411,0.09805415,0.7867956,-0.18780129,0.039754722,0.20627277,0.5334235,0.9907322,-0.10957432,0.09530316,0.14294545,-0.373933,-0.5825477,0.34871587,-0.2644639,0.010664889,0.0679624,-0.26732108,-0.32441136,0.21702719,0.11006122,-0.031477835,0.16291536,-0.88769025,-0.07874996,0.2857873,-0.18195139,-0.029459102,-0.062436618,0.22152767,0.64317566,-0.08504139,-0.27147728,0.008082156,0.15367231,-0.37018976,-0.7506615,-0.044564385,-0.671069,0.3821972,0.12914579,-0.4428704,-0.15927413,0.027674155,-0.7765187,-0.014089035,0.03773733,-0.30368942,0.021649582,-0.33544332,0.02438957,0.7417855,0.03125076,0.26009187,-0.27641186,-0.559606,-0.8659479,-0.09309477,0.11567499,0.15385008,-0.024970492,-0.55430764,-0.18379939,-0.3440869,0.061141938,0.15949944,-0.33436617,0.46456507,0.16662331,0.5217727,-0.1434997,-0.9630392,0.18943965,0.053875785,0.06399751,-0.35580257,0.35442993,0.04694416,0.62457025,0.047359638,-0.045318313,0.22598353,-0.86188775,0.19372202,-0.14732072,-0.103760004,-0.64959675,0.034931343,378 -426,0.50782305,-0.026919255,-0.86487496,-0.09133184,-0.18963869,0.1949787,-0.4193539,0.2820279,0.36991054,-0.42836618,-0.10277653,0.00055760995,-0.13860354,0.09575633,-0.13921218,-0.4859634,-0.06814637,0.22646545,-0.5007494,0.49481848,-0.32876113,0.44398436,-0.13262963,0.2738611,0.10997901,0.15854628,-0.0634794,0.024084965,-0.1838253,-0.22164014,0.409003,0.2686728,-0.808205,0.24150479,-0.24859156,-0.45939058,-0.22856848,-0.38707623,-0.37662676,-0.78563136,0.27347323,-0.7986174,0.7203619,-0.08290107,-0.1785119,0.24810122,0.15331256,0.18658125,0.03453679,-0.015371391,0.26362208,-0.30244637,-0.3135981,-0.22124493,-0.15522228,-0.42319033,-0.5889134,0.041784156,-0.58705074,0.15933785,-0.27062395,0.22248344,-0.41689306,0.032266345,-0.28794196,0.565114,-0.36791867,0.17773406,0.18277727,-0.07243485,0.09620799,-0.7921758,-0.23729178,0.0112485485,0.16629304,-0.20650885,-0.24709116,0.16968273,0.28595918,0.49651575,-0.12308591,-0.1074348,-0.46362224,0.08634225,0.40516695,0.43360308,-0.21888162,-0.15188639,-0.22073138,0.019569788,0.3679592,0.014657522,0.21919744,-0.2404267,0.025536835,0.028002646,-0.106501594,0.6220253,0.5298247,-0.1814811,-0.08011471,0.5317579,0.6339408,0.3265482,-0.11362704,0.1311386,-0.11517884,-0.5199423,-0.17416222,0.069361284,-0.13956538,0.2559254,-0.16237082,0.19834408,0.42898887,-0.22510739,-0.23633364,0.3405476,0.06948615,0.11677142,-0.28112957,-0.1427267,0.40451404,-0.3934203,0.023293434,-0.30652553,0.5148274,-0.14432044,-0.7624363,0.30636454,-0.5652978,0.19163729,0.05231113,0.66708106,0.85705376,0.5377857,0.09062751,0.88923186,-0.36294478,0.049269974,0.009359811,-0.43943945,0.22043487,-0.24904636,-0.047819175,-0.5059078,0.051849876,-0.043147597,-0.14558671,0.13882653,0.5872973,-0.63200563,-0.15666959,0.025902467,0.55375475,-0.2236743,-0.18000977,0.79593223,1.0331122,1.0810813,0.1645892,1.2858257,0.13372907,-0.14416625,-0.14225018,-0.17944776,-0.9770662,0.3820798,0.18923454,-0.5262867,0.4922929,0.15753387,-0.0506689,0.48783198,-0.33323076,-0.27225307,0.016209142,0.28009596,0.040232044,-0.36923423,-0.30977395,-0.1017857,0.0549513,0.053991344,0.32787338,0.2868158,-0.33262998,0.1707124,0.23425022,1.2115448,-0.33241656,0.07852975,0.13105668,0.027805071,0.29347426,-0.31965527,0.03135222,0.10635342,0.29812655,0.06987108,-0.51965475,0.10283785,-0.20332101,-0.44983634,-0.25251532,-0.16583316,-0.3551736,-0.09294166,-0.27990714,-0.114560366,-0.26278612,-0.4271637,0.29934576,-2.3539917,-0.12223029,-0.06326533,0.42569312,-0.12693636,-0.5014356,-0.2912341,-0.35885864,0.2446352,0.25650337,0.43440935,-0.40223986,0.4409275,0.5321153,-0.71543354,-0.02936109,-0.5483586,-0.026681978,0.053984087,0.2896538,0.09285291,-0.23362522,0.06629977,0.19597457,0.45887575,-0.2031143,0.043264944,0.5407132,0.55538255,-0.20659424,0.28047436,0.001365983,0.5415703,-0.32811734,-0.3362317,0.6092159,-0.5060419,0.25261924,-0.12053047,0.14409114,0.5133377,-0.37696293,-0.9670049,-0.44060293,-0.03270168,1.3243601,-0.10497636,-0.5581964,0.066816404,-0.42973566,-0.5656499,0.045017667,0.48035255,-0.20107564,-0.08703004,-1.0447515,-0.083887115,-0.26464185,0.25254712,-0.13467091,0.11807054,-0.46521944,0.68769306,-0.09907874,0.6377412,0.38201734,0.34171343,-0.404423,-0.46964908,0.10542,1.1290932,0.5668112,0.15025273,-0.3816903,-0.04609636,-0.42416954,0.013367168,0.05397741,0.61151993,0.47978458,-0.015327836,0.11654645,0.26998454,0.052438956,0.07830663,-0.34244302,-0.2786137,-0.22360703,-0.028810391,0.5887762,0.67992216,-0.15600397,0.37922436,0.07984709,0.15912414,-0.29258284,-0.5227809,0.5750226,0.95427716,-0.1277671,-0.3923672,0.6750869,0.2202535,-0.36742708,0.55464447,-0.5657932,-0.39002138,0.16421448,-0.17048404,-0.3390489,0.26014438,-0.44842345,0.08969428,-0.8671937,0.3566182,-0.32904142,-0.51858765,-0.65891486,-0.22571734,-2.3533916,0.22476718,-0.21062073,-0.038932826,-0.43048754,-0.03953116,0.29508743,-0.41149908,-0.8931926,0.13004363,0.052217487,0.75299853,-0.30239743,0.12126899,0.008492691,-0.35714182,-0.1486758,0.19788323,0.27910587,0.21468028,0.10270601,-0.30027536,-0.10055146,-0.1446841,-0.3302245,-0.12404863,-0.375038,-0.3918166,0.030018657,-0.35076407,-0.20838521,0.67800015,-0.50628364,-0.054229736,-0.35845974,0.07976756,0.1870173,0.3781373,-0.07746242,0.22299598,0.17445697,-0.22395912,0.015357022,-0.13248348,0.37305158,-0.012814288,0.39451674,0.6602454,-0.45443028,0.12714961,0.53355366,0.8532172,-0.061886072,1.1371149,0.32273147,-0.081247725,0.3388128,-0.1610428,-0.24911346,-0.6372786,-0.17959292,0.09442743,-0.56530637,-0.38407835,0.056013364,-0.39284927,-0.9433418,0.5410717,-0.092093386,0.25582328,-0.07687146,0.46696594,0.46251553,-0.013859843,-0.08781611,-0.119633354,-0.17773072,-0.26759237,-0.3889955,-0.52521825,-0.45508152,-0.056767605,1.2185434,-0.20339003,0.23394266,0.28419954,-0.11611093,0.1510591,0.1618096,0.04780974,0.102638826,0.4689846,0.19416185,-0.5747351,0.24965146,-0.26336086,-0.121266425,-0.72769547,0.1851219,0.5979314,-0.5634581,0.5221766,0.48824543,0.1446459,-0.118272446,-0.6550127,0.06114166,0.1913226,-0.26241073,0.5232188,0.40315008,-0.74481016,0.54601794,0.36964354,-0.30104,-0.67382854,0.5889527,0.108877964,-0.019384291,-0.17427948,0.48869172,-0.04760773,0.05940089,-0.053607017,0.34233952,-0.21158192,0.27761018,0.14676253,-0.15367392,0.1500103,-0.17980312,-0.24015959,-0.7319118,0.09345947,-0.48535055,-0.19228068,0.14128485,-0.013689105,0.20670216,0.22313507,0.16963516,0.514456,-0.29598433,0.040779117,-0.2579634,-0.37593347,0.46590304,0.53839654,0.43660545,-0.40026346,0.5767722,0.055314567,-0.24655236,-0.038438015,0.07720908,0.5295798,-0.15165012,0.34128585,0.3612824,0.049142394,0.056329813,0.8138995,0.13369204,0.38428852,0.034784187,-0.21232936,0.14075865,-0.048230194,0.38228962,-0.30976132,-0.5950927,-0.11496173,-0.08327906,0.19608591,0.5361846,0.039680112,0.3095724,-0.27231923,-0.2908195,0.04704106,0.29404396,-0.051847033,-1.3522674,0.36451986,0.14179602,0.94780254,0.48639435,-0.043952722,0.23888956,0.41250756,-0.053197365,0.08706943,0.33493063,-0.10568931,-0.37815306,0.38293704,-0.7813417,0.35677555,-0.11871685,0.0043584937,0.03173614,-0.035653204,0.52094716,0.89049566,-0.16232303,0.052567057,-0.084400974,-0.21384,0.12405389,-0.31089598,0.2905113,-0.45692858,-0.24859904,1.0161496,0.581186,0.43614942,-0.43013695,0.0699609,0.10857421,-0.188786,0.19228064,0.033495225,0.07275228,-0.20554748,-0.49844685,-0.06433093,0.42723465,0.1806259,0.039268192,0.010451229,-0.23745687,0.27915362,-0.03285726,-0.0015162954,-0.09564352,-0.7098418,-0.052924834,-0.34092337,-0.53889793,0.23114048,-0.0741395,0.095740385,0.34100798,0.11082005,-0.48834023,0.3163244,0.097278185,0.72378623,-0.041254025,-0.07091818,-0.27302772,0.4181362,0.21447489,-0.17407164,-0.1054836,-0.20609458,0.3612358,-0.49163744,0.40070948,-0.21584551,-0.45114344,0.18162386,0.0146688605,0.02927483,0.5572134,-0.27126986,-0.21875787,0.16042168,-0.1324511,-0.1977396,-0.21596332,-0.21291657,0.10826058,0.055992994,-0.2729279,-0.26004297,-0.059507247,-0.24402888,0.12203958,0.07299639,0.22721447,0.59662473,0.21714938,-0.62955487,-0.062977016,0.3545002,0.77856624,-0.0029971856,-0.118626066,-0.48698995,-0.53306764,-0.3516298,0.6688828,-0.030955834,0.1862522,0.081808686,-0.39080316,0.7276269,0.159149,1.0338647,-0.03333699,-0.3391642,0.0136301685,0.64068323,-0.018745702,-0.3591094,-0.4904826,0.94969434,0.5756995,-0.24656595,-0.04844805,-0.4191943,-0.030304665,0.07795157,-0.27221617,-0.09988628,-0.07589308,-0.72468454,-0.13302122,0.07894441,0.36831182,-0.17171097,-0.2704363,0.15746641,0.37152356,-0.026099,0.07359545,-0.6181037,-0.20602775,0.22620642,0.2082628,-0.12814423,0.09266468,-0.46526143,0.14237408,-0.7687476,-0.103789225,-0.20895062,0.10860966,-0.051665027,-0.26591998,0.30950195,0.03294681,0.2284026,-0.43912014,-0.23001455,-0.21024169,0.23861238,0.059098125,0.108204745,0.745048,-0.3118647,0.18386438,0.24956532,0.4163518,1.0261009,-0.08125426,0.07383723,0.25763017,-0.35618162,-0.6922025,0.2992868,-0.533848,0.24985959,-0.2315768,-0.39186624,-0.6083603,0.19912206,0.1862716,0.18109153,-0.046604175,-0.72456485,-0.1281722,0.24811952,-0.32898828,-0.13790497,-0.23812468,-0.31320807,0.7526809,-0.19639349,-0.35121122,-0.059069566,0.4325866,-0.10962001,-0.574166,0.043250468,-0.42679778,0.34902224,-0.018944826,-0.20133911,-0.11946101,-0.038847845,-0.5880887,0.213502,0.2959779,-0.30072355,-0.054205406,-0.30627736,0.08840691,0.61025614,-0.23583926,0.31136903,-0.30371216,-0.57021856,-0.97208023,-0.0937022,-0.0059206313,0.083566286,0.033209175,-0.79031324,0.027400775,-0.240503,-0.16389155,-0.06857792,-0.45301756,0.4074157,0.19987658,0.46452427,-0.2987619,-0.9953421,0.0019682434,0.1956776,-0.26837006,-0.41101104,0.4779447,0.0740021,0.7150899,0.15994108,0.0997378,0.1317256,-0.8039426,0.18989691,-0.04732195,-0.098176174,-0.69691694,-0.044530537,380 -427,0.24972583,0.009260978,-0.46927705,-0.17386529,-0.1880504,0.25551525,-0.1622887,0.32666883,0.043789625,-0.53634244,-0.25139612,-0.10563852,0.042494573,0.2366461,-0.2671716,-0.37469706,-0.006079729,0.15460813,-0.21173719,0.1388418,-0.602171,0.26843378,0.062133227,0.16372587,-0.13662192,0.09914475,0.36661434,-0.18695624,-0.13850798,-0.24189329,0.043829735,0.11089178,-0.5284137,0.14983916,-0.088741064,-0.34511822,0.09218432,-0.424679,-0.41384977,-0.7162193,0.44950482,-1.0144477,0.5915294,0.0531074,-0.17753117,0.3955664,0.12879886,0.12466921,-0.22660403,0.045745216,0.1667709,-0.250892,-0.230376,-0.023672745,-0.14857998,-0.2278004,-0.6599302,0.05814147,-0.427373,-0.11076685,-0.39952633,0.19693093,-0.5078042,0.13462915,-0.25260854,0.39767233,-0.43034583,-0.10922599,0.1710175,-0.14203237,0.09903019,-0.5534991,-0.07518792,-0.0113468915,0.1375357,-0.26397353,-0.044086788,0.25115168,0.20108159,0.49780226,-0.07466247,-0.23933725,-0.23132144,-0.034774583,0.21021377,0.43602404,-0.20203972,-0.5325912,0.012106165,0.016090747,0.1395611,0.2282052,-0.0001823519,-0.18356107,-0.009295021,0.28355178,-0.28537658,0.28991336,0.71096575,-0.25302514,-0.20505273,0.45572728,0.6282919,-0.12346704,0.05883029,0.07626389,-0.021162977,-0.47765896,-0.21981624,0.10883479,-0.27041915,0.4304569,-0.17062528,0.32223272,0.6010174,-0.39974502,0.1697732,-0.035378456,0.041900326,-0.1431115,-0.23762687,-0.35605988,0.32681134,-0.4513769,0.20236461,-0.1960289,0.9913308,-0.007971071,-0.7393488,0.43699953,-0.31296164,0.14692661,-0.15498972,0.75074154,0.47645062,0.40207312,0.29978707,0.79173106,-0.6428369,-0.06785239,-0.120693386,-0.4243681,-0.013902477,-0.08512349,-0.07362021,-0.27212957,-0.00019637177,0.19456713,-0.07538716,-0.06958356,0.32808998,-0.37949437,-0.046295796,0.11365009,0.6815089,-0.38500962,-0.07528491,0.67961264,1.0795543,0.78635967,0.1088557,1.257453,0.28102836,-0.14728229,-0.02072319,-0.11450783,-0.92636096,0.32328865,0.4232758,-0.015534137,0.19877066,0.1925553,-0.059255455,0.36864495,-0.6010356,-0.08485869,-0.2960514,0.38372585,0.03320734,-0.1303484,-0.41518405,-0.08236909,0.15460719,-0.0053166235,0.25368172,0.3772771,-0.25447327,0.13380113,0.14986417,1.3674074,-0.10051419,0.14102785,0.20406125,0.38850433,0.17158154,0.057858247,-0.12099862,0.17782459,0.4367996,0.08013768,-0.588524,0.0009388583,-0.16254091,-0.60687625,-0.20543303,-0.27469984,0.05877183,-0.20289032,-0.26446465,-0.091562934,-0.11326216,-0.4947719,0.4608881,-2.6429691,-0.13708152,-0.051040474,0.29060268,-0.2365541,-0.3587238,-0.093895376,-0.53903544,0.5242032,0.3936319,0.39637044,-0.64129215,0.39297202,0.4188733,-0.355321,-0.10006989,-0.7977122,-0.037309147,-0.18339911,0.23943445,0.25874284,-0.2603374,-0.050041646,0.01060866,0.42707655,-0.04497239,0.086919464,0.30189565,0.39932773,0.1642951,0.38186383,-0.013847649,0.5281585,-0.41558614,-0.1875625,0.350386,-0.42113143,0.20300113,-0.26225427,0.19116847,0.28404397,-0.5083083,-0.7678973,-0.68661296,-0.38489166,1.3703252,-0.22691151,-0.4113121,0.3560283,-0.12055551,-0.21893491,-0.06803995,0.33698598,-0.40289047,-0.060366232,-0.7741273,0.13428286,-0.18183279,0.26426694,-0.12473241,0.20060763,-0.5139306,0.6031857,-0.36382374,0.4988703,0.40798324,0.22331078,-0.34526005,-0.31467444,0.0070165866,1.0321833,0.47098234,0.07083223,-0.27757698,-0.121110566,-0.08338334,-0.1786668,0.039295934,0.49318913,0.79130226,0.07098652,0.03685399,0.28322887,-0.042379763,0.016777474,-0.16604002,-0.38157532,-0.09151476,-0.037798412,0.5825413,0.3299151,-0.34691736,0.3435475,-0.15410313,0.25346512,-0.31752926,-0.26923043,0.43400598,0.68394405,-0.19055541,-0.20338297,0.6075736,0.40973678,-0.40530068,0.40871662,-0.683912,-0.28949562,0.33723265,-0.18178198,-0.44992965,0.0034742611,-0.1409651,0.14539467,-0.77014446,0.43605596,-0.22148024,-0.6528605,-0.5480183,-0.19730197,-3.2305715,0.12384749,-0.30253306,-0.050937057,-0.1552364,-0.13684285,0.19286063,-0.39749345,-0.54388946,0.11894226,0.08675862,0.60226864,0.09568183,0.18322597,-0.12290001,0.0174005,-0.38263625,0.031004881,0.13144681,0.23169242,0.024713393,-0.37985986,0.110409655,-0.22879136,-0.48303202,0.10680834,-0.46447867,-0.3326524,-0.17097072,-0.38776582,-0.38688797,0.63889754,-0.32554156,-0.030242186,-0.29882997,0.06030373,-0.147077,0.49417305,0.014257188,0.15146779,-0.082580395,-0.21977328,0.0460079,-0.26381612,0.5342944,-0.08606971,0.31485656,0.59778106,-0.21760552,-0.059980284,0.47799364,0.5773544,0.14480567,0.8904427,0.24993351,-0.11276617,0.23801105,-0.21140747,-0.21287163,-0.4740102,-0.33607274,0.17284894,-0.50039643,-0.34265503,-0.06366537,-0.42649135,-0.8278977,0.52510977,-0.064542346,0.07770443,-0.03770419,0.3741584,0.39572588,-0.05194477,-0.092962466,-0.10691129,-0.0937054,-0.52836096,-0.35048527,-0.70477647,-0.33789763,-0.23587091,1.0396538,-0.105388455,-0.017344456,-0.14681487,-0.040077608,0.04781481,-0.1212619,0.035312433,0.19799738,0.37999138,-0.14829288,-0.6675292,0.45826247,-0.17686315,-0.21530953,-0.6606337,0.051378634,0.58238584,-0.6213869,0.43987712,0.46767694,0.21134017,-0.12658371,-0.67522246,-0.21974976,-0.036191158,-0.14730671,0.44571576,0.12591802,-0.92045206,0.65812224,0.48379755,-0.26647833,-0.7007155,0.3860948,0.111058235,-0.08813642,0.14998014,0.34469908,-0.024219492,-0.015514136,-0.116486855,0.17377302,-0.42946172,0.37193355,0.09710191,-0.022811545,0.74372333,-0.32993904,-0.27980494,-0.6082264,-0.2124286,-0.5923719,-0.055802107,-0.048959557,-0.011473281,0.039775398,0.20754956,-0.045382563,0.5252519,-0.4468761,0.03835088,0.04572221,-0.29803663,0.37531805,0.35356978,0.3471186,-0.41748816,0.6706608,-0.01857852,-0.08092958,-0.21441242,0.0153961945,0.53311026,0.13875407,0.32110003,-0.01339263,-0.054475274,0.41490522,0.9918557,0.2162088,0.43407467,0.20095253,-0.1735505,0.3615895,0.12809072,0.17091383,0.035873923,-0.44490868,0.0002369242,-0.15860398,0.09472239,0.4975625,0.14881425,0.49187174,-0.17950006,-0.1731555,-0.01960143,0.1643617,-0.14340138,-0.99881214,0.35676524,0.0045212507,0.71675843,0.2807106,-0.12757386,0.097715676,0.5379416,-0.16199212,0.22969241,0.25968918,0.024446966,-0.46620324,0.57266814,-0.63460267,0.35417816,-0.111553654,0.02924,-0.014318168,0.084274255,0.38621017,0.69093513,-0.071338095,0.056114364,-0.07027115,-0.25851274,0.35836634,-0.36358184,0.23727322,-0.40090078,-0.1967143,0.6936321,0.40520695,0.33731762,-0.070552506,-0.16732778,0.17356706,-0.0635246,0.15252228,0.10260345,0.10717927,-0.08770699,-0.65124947,-0.40074188,0.5199564,0.48044667,0.11997967,-0.07494099,-0.2287534,0.25857976,-0.2809357,-0.12132495,0.011702897,-0.60316485,0.073321305,-0.07553144,-0.38804308,0.17926848,-0.27383122,0.31425613,0.23567687,0.008023717,-0.4480984,-0.049307752,0.32408124,0.66295415,-0.01030457,-0.22136316,-0.41282913,0.084856056,0.22673652,-0.27613658,-0.05256633,-0.24681275,-0.033090625,-0.5890643,0.36654973,-0.21199839,-0.23758377,0.3834907,-0.21644023,-0.12081587,0.67036563,-0.19275835,-0.071830645,-0.022061387,-0.20956774,-0.1745577,-0.15747023,-0.24407096,0.18339656,0.17745864,-0.023155246,-0.10416232,-0.17649506,-0.2961976,0.43952295,0.08763043,0.07763725,0.30837122,0.113445945,-0.38358614,-0.22616203,-0.0884741,0.6522341,-0.03231758,-0.122997455,-0.3364084,-0.36858624,-0.034167625,0.17807904,-0.16877365,0.17078936,0.10692399,-0.42446575,0.64304954,0.009037571,0.9386496,0.13872398,-0.27476665,-0.19679113,0.5973557,0.09507489,0.015851405,-0.24434659,0.92448467,0.50490296,-0.09660512,-0.23345968,-0.45901707,0.14197801,0.25569525,-0.14229849,-0.33567017,-0.059985988,-0.6189229,-0.2091989,0.3175306,0.3110806,-0.006129334,0.016942654,0.107387766,0.22916345,0.11036033,0.53851116,-0.4908097,0.0061922497,0.41479522,0.1338305,0.10306623,0.092057206,-0.41928148,0.30169544,-0.62602806,0.07385801,-0.16191085,0.075396456,-0.1557237,-0.1751214,0.23630778,0.1034497,0.44048765,-0.22581737,-0.35420698,0.050703663,0.39138004,0.23649357,0.1275695,0.65395135,-0.12569477,0.091379754,0.1415756,0.46532282,1.0447301,-0.070214316,0.166765,0.2798328,-0.27388975,-0.75360626,0.4922955,-0.16429773,0.08510762,-0.045047212,-0.22755544,-0.37311158,0.29333398,0.31963953,-0.2042394,0.19958791,-0.4197309,-0.22550228,0.3571531,-0.32037774,-0.19082847,-0.24730404,0.115871385,0.7091943,-0.21037804,-0.10043383,0.03605668,0.44838986,-0.28896877,-0.56596476,-0.19225201,-0.31091523,0.26350722,-0.01003121,-0.28787738,0.029408647,0.004549269,-0.37535685,0.1481214,0.13533548,-0.31029576,0.06800079,-0.20256093,0.049937453,0.5616519,-0.12372679,0.062360145,-0.72391975,-0.35575828,-0.9806493,-0.015199627,0.46657944,0.12968174,0.049715232,-0.5308417,-0.06209124,0.041940708,-0.08896939,-0.062172156,-0.56119215,0.32684332,0.14959009,0.29360119,-0.013950015,-0.50941133,-0.13310155,-0.06999878,-0.18385532,-0.2918671,0.6760487,0.037233222,0.7757661,0.056862105,0.06291078,0.16684613,-0.48802,0.16022095,-0.18429239,-0.32675603,-0.651347,0.11531223,389 -428,0.4775764,-0.16867478,-0.3551897,-0.26988202,-0.27182147,-0.017425196,-0.21346082,0.3392262,0.35612956,-0.19455945,-0.11291851,-0.18743582,0.061638348,0.30378655,0.0038680178,-0.91947544,-0.153036,0.17292492,-0.7877356,0.32521176,-0.6704989,0.2401738,0.108116664,0.45170873,0.13588285,0.24066181,0.27159476,-0.19003963,0.032977078,-0.14641215,0.07588174,0.29118183,-0.569708,0.17784925,-0.08373826,-0.3051664,0.03395291,-0.44942114,-0.26097313,-0.7867344,0.10500735,-0.89132214,0.58777416,0.099336185,-0.15087172,-0.16890989,0.1973054,0.39686045,-0.22387195,0.18900283,0.37458324,-0.29514006,-0.08140789,-0.353586,-0.08711193,-0.45619693,-0.5144119,-0.020982686,-0.39313263,-0.4620208,-0.2527533,0.29575783,-0.3099017,-0.036749654,-0.19920263,0.43593094,-0.31903434,-0.03774062,0.49538666,-0.31098297,0.38100782,-0.46857905,-0.044732638,-0.09396633,0.36860496,-0.037499852,-0.36352178,0.3570182,0.26240596,0.43977612,0.19680248,-0.2989612,-0.117956854,-0.17529885,0.107920006,0.476583,-0.362123,-0.22978865,-0.27811417,-0.010553087,0.21305905,0.44220072,-0.04235639,-0.37387824,0.1419622,-0.008404182,-0.13710748,0.5664788,0.5774776,-0.21095014,-0.38186222,0.16716695,0.486604,0.17190656,-0.14758961,0.086488195,0.18369368,-0.6333898,-0.13338102,0.2602566,0.07190214,0.41891608,-0.030894816,0.028505312,0.90922016,-0.24123593,0.0036171165,-0.050289564,-0.084140435,0.095246024,-0.52816284,-0.40064812,0.2812087,-0.61030006,-0.03436227,-0.38361236,0.8902475,0.12165748,-0.69502074,0.41401199,-0.61006546,0.13328008,-0.089188375,0.7054256,0.7156321,0.22284034,0.4040062,0.7992183,-0.2713444,0.2348027,-0.076172166,-0.21445577,0.18347792,-0.24404533,0.119455695,-0.4064568,0.07759955,-0.27162623,0.07544619,0.17714272,0.32674196,-0.6522447,-0.099578306,0.24209516,0.7458531,-0.3914385,-0.00877593,0.4972539,1.1215545,0.9683184,0.16637407,1.2866402,0.56379855,-0.299928,0.25239238,-0.34959045,-0.69081223,0.26681098,0.22954848,-0.08854822,0.14485338,-0.14270823,-0.120070525,0.28533578,-0.4995478,0.02781601,-0.12229497,0.30987898,0.08024935,0.021543162,-0.5043037,-0.19031642,0.0094431145,-0.17554428,0.1924948,0.12337949,-0.29699382,0.1459349,-0.17504899,1.1982747,-0.13165697,0.044996817,0.055146728,0.47065926,0.24491759,-0.27876428,-0.031118581,0.41144547,0.43810034,-0.022005187,-0.60700405,0.4180203,-0.24749987,-0.2413126,-0.18861698,-0.37743568,0.14885923,0.12337403,-0.38992968,-0.24899237,-0.0020264685,-0.2759779,0.41013288,-2.60079,-0.23344533,-0.043032072,0.2925234,-0.2307915,-0.1694946,-0.25576377,-0.4645376,0.3532796,0.15969333,0.38121885,-0.53166187,0.50774133,0.4980081,-0.41230506,-0.19557187,-0.9050821,-0.027538285,-0.16339673,0.37187523,0.050887596,-0.07827972,-0.2150736,0.18236473,0.7664784,0.014064423,0.14054526,0.40982586,0.348887,0.32408485,0.52928305,0.041350543,0.5214328,-0.26039723,-0.3642212,0.39952525,-0.31911713,0.1536943,-0.060587887,0.092060976,0.5327739,-0.39637655,-0.9516198,-0.70718616,-0.57070243,0.85722244,-0.343601,-0.56163436,0.20972559,0.024763469,-0.089064,0.1463602,0.7279065,-0.076160036,0.01788245,-0.79716116,-0.037792083,0.030498879,0.32561323,0.127029,0.04316664,-0.38031095,0.67374086,-0.09562029,0.46196848,0.09685694,0.30397382,-0.3091457,-0.3817655,0.13152666,1.045882,0.08976187,-0.10885771,-0.061022364,-0.33442703,-0.030848145,-0.18704014,0.014082147,0.61920786,0.99409544,-0.04342612,0.10588868,0.41833335,-0.20981479,0.044338066,-0.115481496,-0.29588857,0.038020585,0.012209995,0.6104391,0.6035327,-0.00290787,0.50399554,-0.20491222,0.48193392,-0.1567627,-0.47581407,0.58479124,0.5832923,-0.067965366,-0.12473466,0.5270043,0.4665282,-0.48301458,0.5010224,-0.69493306,-0.13779561,0.7063441,-0.18881579,-0.59908885,0.23730037,-0.26473892,0.14736843,-0.85211563,0.49861595,-0.33724242,-0.5129994,-0.4814468,-0.22045393,-3.2252033,0.2703063,-0.1333497,-0.094016634,-0.19917895,0.02279386,0.42994317,-0.48123312,-0.40863603,0.08265327,0.26371938,0.6601492,-0.048774846,0.041542847,-0.30248263,-0.13842592,-0.07849306,0.1860574,0.20997913,0.26932713,-0.09871677,-0.16891742,0.09220479,-0.019965777,-0.5352348,0.14170758,-0.56355196,-0.5555813,-0.13709147,-0.57502156,-0.3141346,0.6705605,-0.55527985,0.060984906,-0.2504572,0.12156362,-0.1412217,0.28251666,0.1941127,0.40311024,0.16983688,-0.042546775,-0.16450882,-0.34765768,0.38833687,0.0020917526,0.24000342,0.068630725,-0.06081023,0.19740187,0.40108702,0.5821868,-0.021504657,0.96318054,0.43496484,0.020493427,0.10381468,-0.36493948,-0.18166326,-0.51896244,-0.2883784,-0.07501692,-0.46939102,-0.51697326,-0.08429285,-0.2287595,-0.7552825,0.6567318,-0.07960411,0.161564,-0.12228019,0.3538975,0.26268402,-0.14226995,0.0042360616,-0.11957546,-0.15396808,-0.41715384,-0.1513904,-0.60714966,-0.57921827,0.2350526,0.8994718,-0.42845693,0.13580316,-0.109252386,-0.23745812,0.033259057,0.16664746,-0.025541931,0.42747793,0.5527774,-0.046431992,-0.6248541,0.33311573,-0.024056163,-0.22481258,-0.68705237,0.23725142,0.9213111,-0.9370151,0.8368004,0.28113842,0.086158745,-0.10684689,-0.46886167,-0.3100461,0.106358,-0.31517285,0.45717832,-0.075372204,-0.72002614,0.5047137,0.47103474,-0.3774939,-0.68637973,0.26576027,-0.044485655,-0.2608661,0.03745189,0.36106166,0.013940877,0.0261761,-0.15578285,0.3206111,-0.4607562,0.12254696,0.10593377,-0.049555182,0.34080467,-0.10803715,-0.19122621,-0.6387939,0.18202604,-0.72855467,-0.3678229,0.31519005,-0.101534806,0.012106182,0.48719996,0.10085724,0.5349063,-0.058897913,0.19137374,-0.095515795,-0.32710248,0.24074002,0.4473568,0.2861843,-0.34798524,0.46258712,0.12112881,-0.29012236,0.036816232,0.06905256,0.5523357,0.043778066,0.45648694,-0.44710848,-0.17825453,0.4294393,0.7075429,0.009139478,0.49375203,-0.009823097,0.017284978,0.42025375,-0.040683854,-0.035377264,-0.05340794,-0.34725904,-0.030349761,0.023345321,0.25718927,0.44053826,0.33083862,0.34421605,0.07607752,-0.31009308,0.02857596,0.22084257,-0.14479303,-1.0837492,0.45530114,0.18854928,0.78026855,0.41266972,0.108188175,-0.20790689,0.641697,-0.1996424,0.17172922,0.27507433,-0.08445908,-0.38056132,0.68860483,-0.66891587,0.27805954,-0.21864907,-0.06489205,0.05099217,0.13730396,0.46367273,0.8435875,-0.2512689,0.13210632,-0.011406153,-0.05433805,0.18215565,-0.39111927,0.19804955,-0.4599659,-0.49391454,0.6178728,0.40861958,0.2835363,-0.21155752,-0.0067496086,0.17734413,-0.15336196,0.26044053,-0.07339924,-0.18465975,0.32331252,-0.5699449,-0.23041086,0.5947875,-0.13684873,0.040400088,-0.1647148,-0.14378218,0.058855575,-0.22179808,0.11075697,-0.0940017,-0.64935833,-0.027684197,-0.37421897,-0.49375173,0.4297488,-0.3205223,0.085703455,0.18058507,0.15062033,-0.20601818,0.30482584,0.18211551,0.8164838,0.039736263,-0.27295652,-0.31723103,0.16286547,0.1811875,-0.30894572,0.031802602,-0.45007697,0.04459733,-0.709246,0.63452303,-0.19403411,-0.51218015,0.26744688,-0.12401665,0.014861451,0.62770844,-0.23263986,-0.1291507,0.19197942,-0.32244787,-0.37658533,0.11608847,-0.26949486,0.13273813,0.26969537,-0.11376179,-0.11985821,-0.3924222,-0.269154,0.57238823,0.06691874,0.49456236,0.3862467,0.17580934,-0.07333385,0.11245983,0.17453422,0.4783407,0.20638075,0.016851231,-0.28922158,-0.28121337,-0.24524865,0.26758265,-0.12993333,0.30804926,-0.052213676,-0.46551323,0.93558174,0.009973628,1.1264355,0.015746806,-0.33596402,0.051125776,0.5279838,-0.12983586,0.05086846,-0.6062929,0.7420221,0.5945295,-0.09361894,0.04868881,-0.32295647,-0.26110896,0.38471857,-0.3329282,-0.078262605,-0.15490878,-0.75339514,-0.52365017,0.2165654,0.23396388,0.13488464,-0.03964767,0.07035762,-0.045802508,0.005106447,0.3296656,-0.6186567,0.110017,0.02923583,0.44320637,-0.06111055,0.248329,-0.29797664,0.40618357,-0.6954389,0.24027647,-0.43201184,-0.025046801,-0.10081673,-0.36265358,0.03508853,0.042689554,0.27124208,-0.18283136,-0.2990808,-0.001835508,0.45540243,0.09000807,0.14693022,0.74164516,-0.24308804,0.05442259,0.23889768,0.6913194,1.5212862,-0.33633,-0.05428212,0.21936782,-0.38609287,-0.69031554,0.37445912,-0.3325315,-0.24142231,-0.14464422,-0.5593506,-0.38834208,0.28487843,0.16635136,-0.075364806,-0.06916887,-0.46952528,-0.080850616,0.33835357,-0.28024095,-0.29398936,-0.24192752,0.45025888,0.6737823,-0.23598845,-0.2997723,0.01737827,0.3198389,-0.44111797,-0.44544458,-0.023193631,-0.39221355,0.3883353,0.00936631,-0.32896852,-0.00092926197,0.017361926,-0.5432752,0.06217115,0.16516688,-0.37595803,0.049614467,-0.029464845,-0.047919806,0.8551195,-0.10033615,-0.2128568,-0.7929517,-0.4724164,-0.9359379,-0.57865685,0.26775137,0.23812358,0.077893674,-0.30062222,0.037366908,-0.12622516,-0.1557494,0.06739856,-0.56664747,0.28613183,0.06476032,0.6252656,-0.38251114,-1.0366086,0.12006731,0.17055316,-0.27683657,-0.81726724,0.58632714,-0.045236606,0.74623626,-0.04687819,-0.0542193,0.045644186,-0.31573296,0.22786865,-0.47004417,-0.20541202,-0.98807734,0.117833816,395 -429,0.3161616,0.01815457,-0.47410515,-0.027874198,-0.3575265,0.07835531,0.0070016044,0.25642976,0.16909404,-0.13353923,0.059417207,-0.30689654,0.0021190303,0.3878785,-0.08550087,-0.7547421,-0.03974591,0.039063327,-0.51286405,0.27800423,-0.40354332,0.42843923,0.07091472,0.4617227,-0.16537833,0.35437965,0.2619727,-0.1438061,-0.05381068,-0.015033909,-0.24982539,0.19594257,-0.6559028,0.09282819,0.031083176,-0.33116537,0.21050762,-0.23349926,-0.37043986,-0.6166934,0.26906008,-0.6581888,0.49033785,0.051084448,-0.1825864,0.08793599,0.09245806,0.2581662,-0.46841198,0.16064155,0.19659789,-0.39461538,0.24140178,-0.27814975,-0.42038321,-0.51010233,-0.5344297,-0.053744502,-0.5437383,-0.36623117,-0.29199737,0.17719178,-0.29118133,-0.13931167,-0.13192429,0.28140768,-0.5089601,0.14549954,0.32074752,-0.27024215,0.30751085,-0.23431884,-0.13379237,-0.10971558,0.14135613,-0.14057565,-0.13991918,0.406109,0.1913993,0.36830744,0.042068683,-0.26860854,-0.31157297,-0.16579035,0.08245771,0.54526466,-0.2307106,-0.18512993,-0.0484682,-0.019842079,-0.228374,0.31966886,-0.0062177842,-0.2918541,-0.041349918,-0.079582036,-0.00082081556,0.1413349,0.4423584,-0.34068346,-0.47896147,0.21287797,0.32219872,0.0695658,-0.18528436,0.11062306,0.010806603,-0.4912198,-0.3030167,0.11393233,-0.0379443,0.4772089,-0.02424759,0.26434842,0.9029418,-0.24304943,-0.046998907,-0.38731033,-0.074424945,0.030307308,-0.11531067,0.04107212,0.15673964,-0.43509182,0.07837435,-0.044885345,0.7850308,0.24988009,-0.7150083,0.3688098,-0.5653798,0.07763563,-0.11229139,0.56950945,0.48318785,0.34748298,0.25733608,0.83951026,-0.6731852,0.17700246,0.079587355,-0.5755213,0.13458358,-0.043938752,-0.14660658,-0.5078303,-0.15290941,0.097366095,0.0049080127,0.07906977,0.064880356,-0.49277496,0.10469629,0.04748718,0.960831,-0.4483092,-0.13927616,0.5544345,0.94213694,0.8431634,-0.10064324,1.288148,0.31593943,-0.25767943,0.167451,-0.38108453,-0.4867072,0.12147774,0.26698917,-0.03216586,0.36306968,0.173852,0.11093502,0.21709983,-0.19759832,0.11062654,-0.06404284,0.1108669,-0.025408119,-0.082360186,-0.42296916,-0.23425247,-0.045602717,-0.015239969,-0.05935049,0.26921532,-0.00068198994,0.4500603,-0.032649916,1.7665937,0.18939848,0.28130436,0.05555951,0.54908437,0.301615,0.17198469,-0.18240035,0.36529997,0.2413796,0.34384242,-0.39947578,0.009511533,-0.26343557,-0.55590314,-0.15677588,-0.41457152,0.09918225,-0.19854534,-0.5351391,-0.06293715,0.16459705,-0.23413096,0.5166355,-2.6196969,-0.013104318,0.0019470368,0.15953149,-0.2355173,-0.22860578,-0.1110994,-0.30944157,0.29810348,0.4755918,0.38527945,-0.6214291,0.3293114,0.42820245,-0.2415436,-0.21413364,-0.48050812,-0.08376082,-0.030622393,0.32749918,-0.104821905,0.09145812,-0.17118691,0.27183673,0.52047,-0.15632156,-0.079571165,0.052924458,0.41041845,0.07703604,0.44433594,0.088678256,0.49521023,-0.24698296,-0.17476514,0.3023813,-0.27526817,0.33094338,0.05265912,0.16109125,0.24272665,-0.36544403,-0.8967398,-0.49248666,-0.4198874,1.0318792,-0.3187003,-0.2288376,0.40673643,-0.10629136,-0.11358387,-0.13856612,0.4768888,-0.09595193,0.23601532,-0.52613485,0.15302439,-0.12273652,0.2836841,0.06477557,0.15504357,-0.23204432,0.5517031,-0.15421773,0.29829055,0.4398252,0.11514536,-0.1161098,-0.5268834,0.16664289,0.744258,0.22742681,0.17282407,-0.047363408,-0.10726619,-0.015721457,-0.14829023,0.068091616,0.41885462,0.81923705,-0.016385127,0.07034512,0.27036956,-0.055919044,-0.049791303,-0.03206087,-0.27891526,0.19220184,0.028111594,0.5341658,0.7091018,-0.3465927,0.5174074,-0.07637827,0.46144032,-0.06677497,-0.45979324,0.39901495,0.9214153,-0.074725375,-0.052669667,0.5255261,0.38911787,-0.5404802,0.3527403,-0.62863296,-0.14626996,0.7894303,-0.16534135,-0.5124985,0.13285504,-0.17431638,-0.05255178,-0.9273147,0.35398167,0.084072724,-0.49553004,-0.3606561,-0.14885783,-4.5367208,0.12399893,-0.43411967,-0.16223967,0.022252126,0.009424044,0.2291391,-0.64556545,-0.36261374,0.029108373,0.08908419,0.3963223,-0.078113236,0.17095849,-0.33018237,-0.1365299,-0.16826025,0.30633423,0.22066787,0.18537508,-0.11448007,-0.5145688,0.016969323,-0.35921955,-0.6778521,0.065222524,-0.47282892,-0.54982084,-0.08942852,-0.58301336,-0.3587613,0.8495249,-0.45648235,-0.096368365,-0.26922202,-0.09724251,-0.21352999,0.37947372,0.36632538,0.19329023,0.0345358,0.09024603,-0.28241354,-0.30518508,0.17216182,0.1489907,0.42286757,0.36676255,-0.053791165,0.08449026,0.49247876,0.573348,-0.08951236,0.5758621,0.20493309,-0.19302668,0.37367997,-0.49711987,-0.20243393,-0.833745,-0.5853214,-0.14448915,-0.33738428,-0.62633884,-0.19402388,-0.33815208,-0.6921304,0.57015854,-0.11038674,0.21771117,-0.12578759,0.19966781,0.331052,-0.31733203,-0.060766958,-0.13576756,-0.20886707,-0.5814985,-0.3906176,-0.5336304,-0.6918348,0.13597038,1.104488,-0.23653622,-0.13509764,-0.0580662,-0.18554242,-0.014458205,0.011650673,0.21860813,0.37009645,0.16614683,-0.1289719,-0.7109966,0.70390046,-0.1238145,-0.13750409,-0.6965822,-0.04014527,0.6152979,-0.756441,0.6235363,0.26327384,0.12903157,0.30077097,-0.5145921,-0.38639444,0.012963514,-0.057512097,0.41371703,0.015900834,-0.56425375,0.31765014,0.1992741,-0.2417113,-0.547853,0.44648266,-0.15249643,-0.47448975,0.2590421,0.27159163,-0.08318015,-0.091153584,-0.047444563,0.30596682,-0.50900346,0.18473288,0.39533213,0.0776552,0.32890075,0.012605404,-0.22519389,-0.6647043,0.15718302,-0.30741122,-0.32185125,0.16875318,0.12083296,-0.111018695,0.21066427,-0.028784439,0.41436407,-0.23037355,0.16215746,0.012105652,-0.27724174,0.33989748,0.45529523,0.360967,-0.55529165,0.58817893,-0.06236153,0.022954047,-0.020091763,0.14226924,0.6174061,0.16782871,0.25161317,-0.07401418,-0.17728855,0.2024268,0.7646697,0.24135251,0.52369225,0.09609477,-0.082601294,0.4301787,0.26582,0.021210935,0.13104363,-0.17613056,0.074843995,0.040612858,0.18398483,0.40681642,0.16173506,0.37170568,-0.078097045,-0.19311284,0.26957038,0.34644157,0.033878367,-0.7513197,0.33346102,0.2675719,0.62007713,0.44638512,0.13077168,0.03191061,0.54926157,-0.32833457,0.016566852,0.38710862,-0.032479446,-0.5323002,0.66634095,-0.5513495,0.5995328,-0.07551924,-0.13768221,0.13165103,0.11970614,0.30886474,0.9658235,-0.04314627,-0.066490814,0.028943846,-0.20635094,-0.05181716,-0.4417328,0.11879842,-0.49565983,-0.3460973,0.49117404,0.40276226,0.119104676,-0.24420659,-0.05227852,0.026919544,-0.079714194,0.23764226,-0.13810112,0.056776028,0.014339499,-0.54081684,-0.39629364,0.6724304,-0.24816059,0.009940935,-0.06381052,-0.22256646,0.3111539,-0.14397685,-0.14341524,0.04191347,-0.64429617,0.25198787,-0.28983465,-0.5359182,0.51072127,-0.43825045,0.42188543,0.14173386,0.045387227,-0.3760304,0.3905293,0.07311485,0.8277125,0.08231759,-0.21862428,-0.274023,0.19197956,0.25738767,-0.28425997,-0.06463773,-0.3211755,-0.0025290507,-0.45756182,0.3417008,-0.11769436,-0.28073522,-0.17751034,-0.1667758,-0.09902697,0.35560355,-0.07087476,-0.18873134,-0.10513612,-0.07052116,-0.21546938,0.057558775,-0.3746911,0.20707856,-0.0105107855,-0.2216275,0.06683159,-0.040202253,-0.00543929,0.36557838,-0.0142564345,0.29630965,0.12301799,-0.13261221,-0.34190777,-0.051365174,-0.1062822,0.2814059,-0.005068924,0.1654892,-0.115840316,-0.29955214,-0.14446817,0.13915204,-0.26514784,0.17425261,0.21137142,-0.46331507,0.8804439,0.16366899,1.2094144,0.09395377,-0.36856103,0.14969692,0.41590554,0.1000942,0.15439878,-0.42355937,1.0706557,0.70970535,-0.120710574,-0.43282256,-0.12484108,-0.18084148,0.32435063,-0.3094437,-0.2687634,-0.04041016,-0.6429148,-0.11476149,0.23537299,0.22828378,0.24948713,0.057121865,-0.24297084,0.074733205,0.2075647,0.39705816,-0.4045051,-0.2044321,0.36836082,0.20849358,0.049126502,0.19930093,-0.23135035,0.5901941,-0.42418078,0.23629197,-0.5727537,0.06309839,-0.32464394,-0.32183775,0.20857045,-0.062714465,0.35785952,-0.12530336,-0.17045249,-0.2973378,0.53082365,0.32069135,0.24087277,0.7868398,-0.294941,0.09223694,0.007200935,0.23833017,1.1873591,-0.28981856,-0.22521904,0.42286724,-0.33204502,-0.49645618,0.1328285,-0.32548475,-0.099684834,-0.31957155,-0.346675,-0.31664708,0.20576009,0.14904974,-0.12360823,0.0019982415,-0.38779435,-0.05646968,0.44360113,-0.31555972,-0.456497,-0.40133026,0.48597044,0.8290532,-0.35976425,-0.27841118,0.21936992,0.080954365,-0.31617504,-0.4878437,0.06761273,-0.24677432,0.3363778,0.091572404,-0.42364433,0.12759556,0.22859754,-0.3404959,0.15648499,0.5309215,-0.3793485,0.012315358,-0.10044331,-0.14936556,1.0052674,-0.08900911,-0.16415074,-0.70701253,-0.47715268,-1.0507594,-0.4040238,0.61126614,0.20193566,-0.008434245,-0.40598693,-0.10448701,0.008443577,-0.09064867,-0.032783058,-0.51260656,0.27324095,0.05455423,0.44996566,-0.062271647,-0.9400672,0.043273382,0.18805565,-0.21619448,-0.6711988,0.49141556,-0.40860862,0.6635541,0.03214823,-0.026480095,0.43794253,-0.39274105,0.22001444,-0.35000387,-0.30273277,-0.62704086,0.10796035,397 -430,0.40571758,-0.22509621,-0.6935705,-0.102544785,-0.18542893,0.011636496,-0.079123594,0.46763262,0.15378746,-0.53779095,-0.17877199,-0.21668836,-0.217563,0.5634212,-0.15873,-0.5601633,-0.06769219,0.18107572,-0.5327047,0.4465301,-0.19770725,0.33570847,0.2072761,0.25652778,0.12778725,0.100710325,0.029010568,-0.20212092,-0.09720759,-0.23572104,-0.18359457,0.011220778,-0.74240595,0.29885238,-0.18681209,-0.26594916,0.020267384,-0.5291286,-0.3404692,-0.7683148,0.16962683,-0.71234196,0.6109218,-0.08179278,-0.17011344,-0.02611867,-0.043520357,0.44999668,-0.18099172,0.06858893,0.1862621,-0.16680503,-0.2401247,-0.03274923,-0.12735082,-0.39675447,-0.5318018,0.19599101,-0.41328254,-0.098280355,-0.073180676,0.13297139,-0.2587628,0.15100057,-0.039662454,0.48999944,-0.3634723,-0.07493279,0.33118466,-0.2839693,0.20047195,-0.628837,-0.019148916,-0.2215664,0.2460057,-0.3084995,-0.16854696,0.47377682,0.13796957,0.519025,0.11728512,-0.21538389,-0.087518826,-0.017578874,-0.024278065,0.5463618,-0.090983175,-0.5130765,-0.039285414,0.15488997,0.20933783,-0.016435953,0.028718233,-0.4454578,-0.11116997,-0.046945546,-0.043280583,0.2422851,0.56328267,-0.14789991,-0.08010403,0.26463184,0.49238846,0.2429612,0.115600206,0.05386715,0.021228923,-0.5982842,-0.21481575,-0.03113403,-0.12087073,0.4730009,0.0021680498,0.12105727,0.7155131,-0.2478365,-0.0588825,0.07107444,-0.09596219,0.079086915,-0.06738297,-0.53640646,0.40132317,-0.32827377,0.23484576,-0.13516651,0.80007297,0.29366532,-0.80968654,0.28218535,-0.5130574,0.091310635,-0.02236964,0.57923114,0.6049325,0.6746831,0.18911876,0.7067232,-0.49115017,0.29565987,-0.06805783,-0.4137539,-0.057160676,-0.23478203,-0.2119009,-0.38757318,-0.08793516,-0.21962436,-0.26593533,-0.022790253,0.11441855,-0.71098363,0.06975693,-0.18321334,0.9758547,-0.33363777,-0.037238505,0.6624997,0.78731376,1.0669335,0.053203084,1.0685612,0.28984287,-0.29829624,0.17132793,-0.042021804,-0.739349,0.29490614,0.39451483,-0.43153572,0.37727356,0.094320126,0.018311938,0.4110206,-0.56876594,0.06401528,-0.1705424,0.24388142,-0.060505062,-0.19473039,-0.50778455,-0.17660138,-0.09640469,-0.0354414,-0.037048254,0.21415249,-0.15634987,0.36624697,0.04688647,1.6360699,-0.12240951,0.10787887,0.10330333,0.41631594,0.049352713,-0.118090905,-0.27118573,0.11346943,0.41155997,0.055222113,-0.47068796,0.0064401454,-0.18011987,-0.34479785,-0.23305634,-0.16091384,0.055179596,-0.098128855,-0.19760248,-0.41485593,0.014928277,-0.23926438,0.4888033,-2.2504976,-0.012263362,-0.060135867,0.33897918,-0.44888803,-0.30358917,0.022072783,-0.43317065,0.2920074,0.27116886,0.3975275,-0.58688074,0.2637581,0.34371918,-0.40372705,-0.35520336,-0.5144168,-0.05441503,0.07922252,0.20064794,0.027122272,-0.08031983,0.003916681,-0.057315707,0.4183991,-0.19720615,-0.09358157,0.38491288,0.33569553,0.32221675,0.347117,-0.055352055,0.5667074,-0.57297546,-0.053856395,0.38939553,-0.2788405,0.13664035,-0.06084386,0.09116547,0.1903452,-0.6289273,-0.71094376,-0.7257889,-0.37687328,1.3065983,-0.2446278,-0.386549,0.17532992,-0.058902767,-0.02817492,-0.07378469,0.42782626,-0.10420438,0.13267523,-0.74440485,-0.20043206,-0.04908544,0.44312605,0.051815342,0.04746042,-0.5257563,0.39723855,-0.17838891,0.4025697,0.53976965,0.19186997,-0.12763633,-0.71148527,0.09079836,1.2587289,0.38710886,0.16517337,-0.15154697,-0.07553917,-0.3210755,-0.13413247,0.047461953,0.42220137,0.99501216,0.016385345,-0.07327194,0.1960983,0.08434039,0.10690357,-0.038616538,-0.44580057,-0.12543777,-0.03132943,0.6321574,0.43049797,-0.08259996,0.5077219,-0.150601,0.43299803,-0.10721593,-0.3207048,0.5192996,0.9445673,-0.21670885,-0.23771305,0.4142986,0.3774489,-0.13661353,0.4141536,-0.6609179,-0.37406904,0.57313,-0.18475853,-0.60377556,0.20035489,-0.19485308,0.30116898,-1.0596651,0.4401634,-0.2649159,-0.5656071,-0.5663374,-0.20045482,-2.6035488,0.08609086,-0.229404,-0.10488714,-0.012616639,-0.030497223,0.25787634,-0.3883495,-0.64567864,0.10897423,0.07251048,0.6048241,-0.016713295,0.18199624,-0.14293478,-0.28093648,-0.33729073,0.19626996,0.3196796,0.18702914,0.12041635,-0.43033966,-0.21280535,-0.1971203,-0.42463818,0.15511057,-0.71154565,-0.45605606,-0.33046344,-0.68891424,-0.1582148,0.740251,-0.46169308,0.022684751,0.030966822,0.053065,-0.048288256,0.10282015,0.07854797,0.15560757,0.028193329,-0.1392503,0.015285543,-0.27852887,0.17701514,0.2923412,0.3640353,0.120401934,-0.30089402,0.23907746,0.5763025,0.9774603,-0.030643817,0.70821875,0.581186,-0.09843048,0.30652985,-0.35466743,-0.44869956,-0.57015336,-0.38243622,0.1664172,-0.31393978,-0.47217226,0.14066216,-0.3462037,-0.8408421,0.5921845,-0.0804973,-0.09713663,0.091838054,0.105026804,0.4338558,-0.2980392,-0.09304881,-0.07814532,-0.019896852,-0.47829387,-0.3103285,-0.52217686,-0.5660877,-0.1078632,1.3799423,-0.030135078,0.024683995,0.07771454,-0.26581344,0.2514152,-0.23476125,-0.13518511,0.29205042,0.39208618,-0.146662,-0.83097994,0.4236882,-0.17251322,-0.2286862,-0.5598914,0.3365439,0.74546874,-0.8503761,0.21855997,0.27193215,-0.00029526014,-0.050640136,-0.42018837,-0.093149506,-0.033347886,-0.22157185,0.2750443,0.051516704,-0.50790304,0.34098405,0.3999135,-0.39938816,-0.8355754,0.21472628,0.075272344,-0.16752194,0.2533993,0.31513166,-0.11739182,-0.09108962,-0.28865275,0.08607332,-0.35454768,0.22614299,0.33082458,-0.093884386,0.22392991,-0.33274606,-0.13144387,-0.7880224,0.29206187,-0.5282045,-0.29444912,0.38801712,0.17295514,0.09647452,0.017613355,0.21640618,0.4020475,-0.20502011,-0.0020900518,-0.22146475,-0.34920523,0.42261416,0.5252019,0.3892882,-0.4627862,0.55605775,-0.049378034,0.058224943,-0.06835191,-0.059594482,0.5413126,0.078860104,0.087015964,0.06637315,-0.20976312,0.15413775,0.7753042,0.17343485,0.46949115,0.071787074,-0.1576537,0.17894724,0.2613192,0.06699999,0.25059882,-0.5992764,0.038621087,-0.027606914,0.045427773,0.5268366,0.28153363,0.38469782,-0.16080177,-0.27291033,-0.011137475,0.09560507,0.0245383,-1.115106,0.54132426,0.074723616,0.6555819,0.34154898,0.21775971,0.11754868,0.61408323,-0.06991075,0.18365584,0.28648114,-0.0751095,-0.54739463,0.40754598,-0.56205994,0.56108284,0.10329763,0.018867608,0.17219791,-0.057953577,0.5445805,0.9534575,-0.052381102,-0.002988694,-0.17231242,-0.14831647,0.030615646,-0.5721355,0.05428913,-0.48029855,-0.43494874,0.61612254,0.33338028,0.23078568,-0.080585554,0.025249656,0.14584284,-0.13802603,0.34700578,-0.124066964,0.045834523,0.034381025,-0.5846513,-0.16691075,0.56776035,0.057249036,0.013525069,0.06728067,-0.18760633,0.30101672,-0.21342273,0.011368181,-0.17802045,-0.72843593,0.024419146,-0.41604328,-0.23508532,0.20367776,-0.016956074,0.3403764,0.077464,0.11779999,-0.4355785,0.5250953,0.13573568,0.9569806,0.057239287,-0.3422177,-0.38156897,0.2906378,0.2775497,-0.27908108,0.071522966,-0.22669958,-0.12053812,-0.58549064,0.32035774,-0.08359831,-0.30300516,0.23782131,-0.10120129,-0.09340962,0.52936864,-0.1481748,0.13073339,0.22502725,-0.113334134,-0.13197581,-0.21442239,-0.23247457,0.15686817,0.2981004,0.06654299,-0.07260815,-0.11165738,-0.18927094,0.4520864,0.0056220717,0.34839553,0.31983802,0.113363825,-0.32048315,-0.1544193,-0.0676413,0.45941186,0.18405616,-0.087509654,-0.2755415,-0.2925349,-0.26308197,0.086262144,-0.24268754,0.35136157,0.122538455,-0.42292818,0.74993867,0.15498044,1.3455343,-0.10127328,-0.29205003,0.09379776,0.46115395,0.08554795,0.051659014,-0.5984607,1.071344,0.45237827,-0.10701636,-0.04264868,-0.24336232,-0.23366082,0.17887093,-0.29836673,-0.24018732,-0.12379936,-0.5202569,-0.34753904,0.21080358,0.3005055,-0.059447985,-0.12107396,0.020577295,0.19307955,-0.017623493,0.16492932,-0.38325113,0.13481952,0.3005752,0.19822943,0.05091945,0.061143797,-0.5026709,0.39504856,-0.55415756,0.07423418,-0.2519366,-0.0044783824,-0.057496227,-0.2918797,0.24375118,0.104340024,0.4010245,-0.5339375,-0.3142598,-0.20827827,0.4831212,0.06798038,0.19286244,0.7677141,-0.30346802,-0.049399015,-0.0076237237,0.5497243,0.83508635,-0.33369747,0.10121442,0.41294542,-0.2659022,-0.3240094,0.3987077,-0.20014276,-0.03608535,-0.16466679,-0.17207691,-0.4820202,0.20110822,0.21999522,-0.26322937,0.0685746,-0.8085597,-0.16525146,0.31898147,-0.33423448,-0.3387113,-0.5307153,0.24206792,0.59777486,-0.32412556,-0.48792505,0.12624148,0.1292223,-0.13559775,-0.4372292,-0.1445553,-0.2065465,0.29902405,0.19799452,-0.3885452,-0.24595825,0.13027672,-0.41364044,0.069472305,0.011547004,-0.4092149,-0.14851442,-0.10388331,-0.042010646,0.7343133,-0.018597607,0.09294964,-0.61810225,-0.35394284,-1.0680618,-0.35432154,0.56465316,0.3271387,0.03996402,-0.70063674,-0.12456514,-0.14778371,-0.08621676,-0.0014861013,-0.24918441,0.26740894,0.1291233,0.5369725,-0.2197925,-0.8048348,0.41696146,0.12632531,-0.25360724,-0.5384186,0.36061922,0.15242195,0.913134,-0.023186317,0.048701517,0.42198506,-0.6640344,-0.017513556,-0.21031378,-0.08717605,-0.5309937,0.14434126,398 -431,0.5471104,-0.102342494,-0.5094384,0.016130729,-0.5048779,-0.039230637,-0.21061502,0.23475564,0.4734177,-0.1444976,-0.26843143,0.08028341,-0.053414676,0.08875232,0.05849337,-0.5760516,-0.09231607,0.32695732,-0.9860198,0.68741995,-0.44029364,0.30505365,0.033325978,0.46014315,0.01491269,0.3232201,0.003851699,0.07034318,-0.19986425,-0.011806245,0.11418476,0.20149381,-0.69465303,0.17230128,-0.2983327,-0.23810515,-0.24458666,-0.48620468,-0.22193787,-0.6861726,0.11951669,-0.7512831,0.57181555,-0.06266485,-0.35968882,-0.19204605,0.213051,0.10746444,-0.18646193,-0.035203867,0.25202852,-0.035469446,-0.37507337,-0.32677817,-0.07005272,-0.22649762,-0.54254645,0.044448137,-0.39546224,-0.029643271,-0.044414412,0.22647555,-0.18057871,-0.06598115,-0.28300235,0.5987815,-0.2755776,0.0930331,0.39858755,-0.067125164,0.06630587,-0.6284567,0.092762046,-0.012296866,0.4313602,0.10730536,-0.4719092,0.26549482,0.28976223,0.5596028,0.2627209,-0.3360422,-0.24587466,0.11042906,0.18200555,0.36362362,-0.26571852,-0.114081845,-0.15758778,0.013527312,0.27418295,0.24770644,0.1818472,-0.3418631,0.08786968,-0.43972534,0.14630838,0.3585618,0.41361183,-0.23848507,-0.32367104,0.18385589,0.6807931,0.37066168,-0.15631975,-0.027279105,-0.0117664775,-0.5666984,-0.13889854,0.030372305,-0.055059593,0.32947683,-0.16505252,0.17656955,0.556917,0.028409908,0.04928143,0.33613318,0.10837877,0.1886932,-0.5481575,-0.17996743,0.25283334,-0.5233453,-0.083166495,-0.26644513,0.39591795,0.09320237,-0.54646903,0.40888852,-0.68507385,0.2148895,0.13863297,0.5233658,0.9863414,0.6811657,0.17412826,0.715823,-0.20061418,0.19708546,-0.072913185,-0.13227941,0.25720066,-0.22774342,0.25344136,-0.5947502,0.077829614,-0.2911319,-0.1340348,0.09433324,0.5662519,-0.67200387,-0.31671825,0.033605866,0.719338,-0.2226769,-0.16693719,0.8753323,1.0970637,1.05893,0.15925315,1.3742207,0.37287885,-0.2983868,0.034582574,-0.29791382,-0.7284071,0.14380567,0.30925828,-0.40640688,0.47529772,-0.19726923,-0.09112542,0.47126558,-0.49678588,-0.046112914,-0.0129099125,0.47625503,0.0636626,-0.11293733,-0.45486137,-0.29985145,-0.035076495,0.038814545,0.21739043,0.37617776,-0.2799354,0.2130408,-0.05407295,1.0884627,-0.2079577,0.11292275,0.14806227,0.13438746,0.31721213,-0.29641375,-0.21577524,0.33762607,0.20742324,-0.09450601,-0.4169496,0.24037986,-0.37528515,-0.3437541,-0.11980975,-0.19533217,-0.16828267,-0.04600999,-0.45037287,-0.40530705,-0.10660391,-0.39708552,0.3693492,-2.4147885,-0.27191764,-0.06813977,0.4889833,-0.23531768,-0.3492454,-0.273854,-0.41203764,0.16575532,0.05832698,0.40704945,-0.53675216,0.45855826,0.52587324,-0.8136155,-0.20280859,-0.7352143,0.03758359,0.17464487,0.24876098,-0.0283932,-0.14737211,-0.044083495,0.049444515,0.508922,-0.078932725,0.13574672,0.62374294,0.32736614,-0.05415374,0.18850546,-0.095757425,0.63987285,-0.42888308,-0.34133577,0.4303626,-0.40071133,0.352304,-0.09893345,0.04162624,0.755435,-0.4523131,-0.83652604,-0.50711215,-0.16378649,0.9525797,-0.16947412,-0.30964956,0.039987717,-0.6478281,-0.13389893,0.23509641,0.79772854,-0.037618034,-0.014575094,-0.7729978,0.007199977,0.021724632,0.16015632,-0.013627721,-0.045620847,-0.43420824,0.76638776,-0.046506736,0.52396613,0.3036849,0.25887266,-0.2426871,-0.4336435,0.19417588,0.76604426,0.453819,0.0658204,-0.19364385,-0.11990649,-0.16400246,-0.036937945,0.0019122107,0.7423585,0.58726776,-0.24722163,0.17942545,0.23383021,0.020681515,0.10070085,-0.22240391,-0.21471505,-0.21298364,0.11692853,0.44811177,0.8722922,-0.11087891,0.32335708,-0.21882798,0.23004495,-0.18334782,-0.7050312,0.6287537,0.785308,-0.36477706,-0.037537318,0.63965607,0.30938032,-0.4499926,0.51444036,-0.5355936,-0.37586954,0.39578167,-0.17049514,-0.32519552,0.20430814,-0.3515363,0.29351786,-0.63583523,0.5087346,-0.47511503,-0.5130847,-0.5117984,0.018489957,-1.8063935,0.34410697,-0.16160667,0.076387085,-0.27575245,-0.21867761,0.1955783,-0.5430064,-0.77299935,0.14949845,0.18045858,0.6114222,-0.25166735,0.09015368,-0.03918266,-0.57586604,-0.10455398,0.24176393,0.28855795,0.37204367,-0.28346878,-0.29596773,-0.15381943,0.07977159,-0.34670225,0.09976474,-0.8175683,-0.5430973,-0.10771928,-0.6380182,0.027288776,0.565735,-0.44766143,0.033648483,-0.3606863,0.13129722,-0.04540888,0.36751,0.027151743,0.37362668,0.23963077,-0.09116233,-0.05578783,-0.12575151,0.33618638,0.045083165,0.26078948,0.37603572,-0.063580856,0.35216638,0.38623363,0.98912185,-0.18879817,1.0789243,0.3602542,-0.15188758,0.3024292,-0.33886668,-0.2781312,-0.5718292,-0.28747267,0.019958155,-0.47505683,-0.39313933,0.17008086,-0.4107203,-0.8422719,0.40466008,-0.06467708,0.20661101,0.10353891,0.2186233,0.5049241,-0.3770719,0.032898746,-0.18752027,-0.19589867,-0.49826095,-0.28942934,-0.53634936,-0.5912963,0.24180542,1.2218674,-0.3494901,0.3196583,0.13603322,-0.30559346,0.052145246,0.09227705,-0.105713435,0.09002964,0.5271002,0.12614669,-0.4347317,0.112653,0.019619746,-0.30326796,-0.36935148,0.49737436,0.7405891,-0.79917425,0.7812977,0.3158991,-0.033575356,-0.12137882,-0.6022099,-0.18742903,0.14682068,-0.20376039,0.45305315,0.4241402,-0.74999344,0.3628456,0.33562663,-0.36321998,-0.8941251,0.32558408,-0.035906058,-0.17803624,-0.22980908,0.526017,-0.012344905,-0.043510947,-0.17225185,0.33575407,-0.39376995,0.25269642,0.056912232,-0.1411951,0.0040178215,-0.20916112,-0.39236972,-0.81720304,0.0613328,-0.60365933,-0.4401218,0.44062132,0.02819267,-0.06492387,0.18494828,0.43984097,0.37607923,-0.32722667,0.08652729,-0.17338912,-0.39721438,0.17177339,0.44288573,0.4545381,-0.3588087,0.43971178,0.08656736,-0.083066046,0.124970235,0.113458075,0.33963466,-0.106604934,0.4317727,-0.07218913,-0.03915401,0.11007363,0.76983494,-0.034360353,0.28732395,0.045715757,-0.10233327,0.27479437,-0.057340737,0.2608827,-0.3006869,-0.3851802,0.09362275,-0.03323579,0.17927457,0.42481932,0.32890248,0.18186699,0.012985195,-0.2446707,-0.04707695,0.33710048,0.11792948,-1.4081715,0.4581771,0.17274663,0.9539235,0.59380925,0.15803686,-0.31517002,0.61806935,-0.15047288,0.12267748,0.5207463,-0.20586602,-0.37814403,0.5225779,-0.67774487,0.42493483,-0.18823764,0.014994609,0.14262539,-0.014249444,0.27261925,0.82456017,-0.14741442,-0.009808438,-0.174945,-0.12398779,-0.033172403,-0.22716321,0.09973145,-0.48163837,-0.502286,0.9879891,0.3681464,0.48560214,-0.3458167,0.033928454,0.073087975,-0.36989954,0.3994035,-0.069928996,0.09991383,0.04922619,-0.55291593,-0.09933109,0.43031642,-0.09997799,0.010296891,0.022918237,-0.16453834,0.000681817,-0.32999977,-0.045118418,-0.12653364,-0.83755547,-0.020142687,-0.45895338,-0.39502588,0.337454,-0.16907641,-0.19401659,0.2635096,0.12817265,-0.28897983,0.56859803,-0.051612716,0.7247977,0.1426132,-0.10582357,-0.04872137,0.5063122,0.1437706,-0.3164289,0.14407781,-0.19609664,0.36484236,-0.5515148,0.7059582,0.074293986,-0.47738218,0.07886108,-0.13163117,0.02131416,0.4473841,-0.21526875,-0.29108956,0.0005649499,-0.14459752,-0.42984197,-0.010250045,-0.15923794,0.15957835,0.34404776,-0.15554562,-0.22068821,-0.28101617,-0.20155656,0.5755078,0.08171618,0.33104032,0.4114706,0.03189262,-0.35142913,0.21021561,0.5025967,0.5544709,0.18451378,-0.0665852,-0.6281694,-0.24928565,-0.4248433,0.42788187,-0.10072928,0.23243164,-0.06722398,-0.16886835,0.990775,0.1517068,1.1039948,-0.050995376,-0.29530266,0.015917907,0.4688902,-0.18268749,-0.20373945,-0.52336293,0.9860501,0.5153324,-0.15083776,0.028964734,-0.371185,-0.2292877,0.2970485,-0.3351333,0.038073856,-0.055251133,-0.7181021,-0.3362632,0.06290009,0.10745569,-0.0007126161,-0.21831869,0.056263737,0.12831672,-0.06625111,0.17127001,-0.70622575,-0.13432573,0.16043079,0.41200203,-0.084573284,0.41137198,-0.2667213,0.2557935,-0.91875935,0.14382792,-0.30542946,0.007946178,-0.1842442,-0.59797174,0.2103575,0.20144667,0.3437039,-0.38506943,-0.30326128,-0.21539102,0.3038362,-0.021061037,0.12171741,0.6923857,-0.27486092,-0.097257175,0.29373288,0.60527515,1.097955,-0.21281007,-0.028898831,0.11500982,-0.40558583,-0.7295055,0.40266103,-0.3499152,-0.058669765,-0.17438526,-0.32520035,-0.48648357,0.1523195,0.21292962,0.204513,-0.08599132,-0.68855,0.10842698,0.18826342,-0.26915914,-0.036054228,-0.24223717,0.3502833,0.8200942,-0.14495707,-0.2539925,0.04806876,0.1754719,-0.3176448,-0.44471768,-0.030136015,-0.52690804,0.16281836,0.17155676,-0.38879538,-0.08323383,0.0012123095,-0.5934361,0.059643608,0.14656594,-0.28669205,0.10834457,-0.2681594,-0.012938602,0.9060332,-0.07738395,0.13469163,-0.23342316,-0.7061457,-0.89850533,-0.30990744,-0.15231626,0.2141769,-0.028175231,-0.6874219,0.011620053,-0.2661219,-0.20561567,0.12717378,-0.3598349,0.35516214,0.24905765,0.38356972,-0.36458546,-1.0594131,0.08156144,0.30487442,-0.095785804,-0.53303766,0.36347312,0.074205756,0.8818899,0.09667535,-0.114657044,-0.061289035,-0.5699417,0.1486177,-0.2783995,0.12052058,-0.71676856,0.026848128,401 -432,0.47254524,-0.23516163,-0.48331732,-0.14500734,-0.2794086,0.17383964,-0.37998754,0.061408218,0.19073431,-0.41365644,-0.033781376,-0.0959167,-0.025977135,0.35331085,-0.107342206,-0.85370255,-0.11940973,0.1574378,-0.75487643,0.87078303,-0.38512745,0.31444958,0.15686813,0.12833083,0.18877077,0.16024709,0.35923323,-0.02836317,0.06620067,-0.18071604,0.019022848,0.046090297,-0.6939301,0.20814396,-0.21505539,-0.3104313,0.060912017,-0.3032258,-0.53983533,-0.70851266,0.29653898,-0.8759494,0.5326789,0.124421,-0.2806403,0.266391,0.18291959,0.18783078,-0.22489902,0.06829127,0.24779542,-0.21847169,-0.066166185,-0.2133271,-0.31509236,-0.30860087,-0.60162824,0.043069866,-0.7221159,-0.28952697,-0.18537475,0.25143704,-0.36436057,-0.15632828,-0.25128075,0.61394125,-0.45573753,-0.0061505693,0.25531563,-0.13699888,0.123328194,-0.6368993,-0.10772363,-0.087621994,0.06613626,-0.024717344,-0.11405391,0.265402,0.01433077,0.57080644,0.1838479,-0.5229303,-0.21042886,-0.15230073,0.4093059,0.34097582,-0.03551554,-0.133063,-0.2901976,-0.08526047,0.22664104,0.16943955,0.036948137,-0.35674903,-0.01811854,-0.16352391,0.00033473969,0.51785815,0.63985825,-0.42169762,-0.4546086,0.30029368,0.5298184,0.25376245,-0.157933,0.087689914,-0.03366926,-0.40834814,-0.12527223,0.3613348,-0.1758697,0.46674314,-0.20949428,0.10999511,0.59128726,-0.085861854,0.05208053,-0.063110866,-0.013809183,0.10528999,-0.27609032,-0.060054723,0.42406994,-0.6576303,0.07112213,-0.30211046,0.7272869,0.12563461,-0.5384023,0.31169686,-0.5340612,0.23058833,0.099412285,0.72699594,0.7018617,0.2901136,0.06303116,0.85628796,-0.43695396,0.20351042,-0.2180717,-0.2519194,-0.02233897,-0.27847275,0.11510539,-0.49717662,-0.030940847,-0.24605118,-0.0739307,-0.19408412,0.49756914,-0.40252873,-0.22672789,0.26668033,0.9212827,-0.22484906,0.06649286,0.69896644,1.216848,1.1476619,-0.1353126,1.1911259,0.22680536,-0.28850007,-0.13280305,-0.2921045,-0.7395331,0.20597853,0.4245959,0.85274404,0.38140106,0.034755386,-0.067434266,0.3495066,-0.47476608,0.08709309,-0.26066002,0.29515067,0.07334279,0.14953066,-0.45904055,0.00411149,-0.0050540566,0.0072371033,0.06720461,0.28962526,-0.24798921,0.3496129,-0.04245403,1.2845724,-0.3303066,0.093791984,0.26360136,0.53871393,0.2917622,-0.07978515,0.21647502,0.28520232,0.39124417,0.26142254,-0.6612602,0.020775659,-0.51360995,-0.32911697,-0.3611688,-0.4049602,0.030200584,-0.025373863,-0.43106884,-0.14904551,0.08831232,-0.38019252,0.2653788,-2.53284,-0.14559962,-0.1806247,0.2061491,-0.37727162,-0.23619907,-0.03990507,-0.5224639,0.47579116,0.33698764,0.368624,-0.46831813,0.28505665,0.46033144,-0.5444834,0.091616206,-0.5778554,-0.13055219,-0.17363223,0.76775974,-0.075617865,-0.08865646,-0.21935494,0.2051617,0.62624484,0.079198666,0.07789658,0.3632577,0.2229139,-0.04228136,0.36384916,0.077897415,0.3481638,-0.4068389,-0.19804034,0.5688581,-0.09200442,0.37499508,-0.31382173,0.14477493,0.4628127,-0.54112256,-0.7660932,-0.5811437,-0.47177172,1.3546344,-0.42873165,-0.75403774,0.42035514,-0.069977775,-0.03957917,-0.05994016,0.5177408,-0.014791638,0.18917152,-0.65258825,0.18151376,-0.0030884955,0.25419256,-0.009392893,-0.033849634,-0.41434476,0.723666,-0.12377254,0.3982682,0.32561573,0.3443194,-0.08215368,-0.5523489,0.14759648,0.9908193,0.3853364,0.008725994,-0.36369923,-0.19002523,-0.0538654,-0.07393523,0.00030538332,0.56400603,0.79907054,-0.19321191,0.049413007,0.4553552,0.01360694,0.08804513,-0.09813045,-0.3607214,-0.16819426,0.022168918,0.4844303,0.6091469,0.029853672,0.3331162,-0.0014321485,0.2752705,-0.087202616,-0.5249761,0.42435077,1.0089475,-0.25285217,-0.25153905,0.6335934,0.49910614,-0.51495934,0.51185566,-0.6598256,-0.3478327,0.53310925,-0.13581082,-0.5375816,0.14682953,-0.3196251,0.07079182,-0.64186364,0.27159423,-0.3310247,-0.5765877,-0.4800233,-0.28860617,-3.2538676,0.12790918,-0.45466644,0.076127455,-0.07936462,-0.16625507,0.28935978,-0.41429207,-0.44403172,0.12274318,0.124079265,0.57624495,-0.22172312,0.13986638,-0.23270825,-0.1720836,-0.41092852,0.37299684,0.22826178,0.21570802,-0.25140828,-0.3677327,-0.07543968,-0.13028106,-0.25002342,0.0028673199,-0.6265519,-0.38801405,-0.31306073,-0.519821,-0.0811309,0.5797063,-0.14867248,0.09033624,-0.2556015,0.115571395,0.01582307,0.051885325,0.2761086,0.43645817,0.0801561,-0.17404485,-0.26298848,-0.33607167,0.33656996,0.15003736,0.39970455,0.30826712,-0.047112882,0.19435258,0.39237183,0.4117592,-0.16301426,0.9364945,0.4240446,-0.16313018,0.2815115,-0.11271029,-0.33906168,-0.755993,-0.1920633,-0.017134229,-0.4795484,-0.5883598,-0.074320115,-0.23766156,-0.7579837,0.5765186,0.14249665,0.49674973,-0.098301284,0.13075782,0.5169001,-0.23546961,-0.17612115,-0.0401303,-0.19964395,-0.47113487,-0.341287,-0.76081467,-0.5148449,0.06579961,0.81890994,-0.18503377,-0.10641866,0.005658441,-0.33486223,-0.0093130665,0.20629944,0.13947473,0.053028487,0.6055102,0.32278314,-0.75357616,0.5524108,0.13711983,0.054670732,-0.45081022,0.27097288,0.5709631,-0.5674806,0.53732383,0.23879957,0.09505736,-0.33959246,-0.6044907,-0.20569248,0.044095118,-0.30496362,0.51042867,0.1399606,-0.7725186,0.44104466,0.09215584,-0.37906367,-0.807485,0.40508085,-0.124042936,-0.28341308,0.14554787,0.4215075,-0.09294616,0.069111295,-0.12944041,0.32360846,-0.30955106,0.30444488,0.2990346,-0.13233909,0.18368205,-0.2605885,-0.5790726,-0.66872513,0.012078209,-0.552522,-0.44230607,0.3656781,-0.043810852,-0.055890534,0.3306196,0.0934357,0.571729,0.06290458,0.22307931,-0.025273409,-0.45622435,0.67676556,0.44147015,0.50721484,-0.50291634,0.66833985,-0.011914109,-0.25671968,-0.06555087,0.17110135,0.4038264,0.14829643,0.53804606,-0.08598157,0.14447796,0.24150407,0.7657532,0.26041675,0.54352915,0.29136786,-0.19800986,0.46289536,0.07300886,0.03282202,-0.2819306,-0.6377193,-0.10241654,-0.0626164,0.2015923,0.46081918,0.027818756,0.4371365,-0.14618692,-0.22845581,0.056395892,-0.013323362,0.036565047,-1.18577,0.12479733,0.21636507,0.7150138,0.53361136,0.049181443,-0.029697511,0.60347766,-0.10190161,0.01479951,0.33402696,-0.08098019,-0.40572342,0.48716053,-0.6337847,0.45313898,0.04614083,0.08944794,0.10289558,0.15901458,0.41095877,0.78021944,-0.2142524,0.004027307,-0.14023668,-0.2885285,0.14207436,-0.26577827,0.28321305,-0.26167268,-0.54843706,0.5587771,0.44994083,0.32694498,-0.16142464,0.0040519633,0.06131942,-0.19700181,0.27696365,-0.017837528,-0.12952293,-0.12015524,-0.47117501,-0.2293844,0.51885855,0.017027974,0.0526712,-0.07309175,-0.05407083,0.20238213,-0.12652943,-0.09135311,-0.0050591337,-0.7886855,0.0784735,-0.2284715,-0.5406818,0.45488063,-0.3668552,0.19029193,0.06587423,-0.07554215,-0.4281501,0.34054285,-0.05106622,0.65982765,0.20150009,-0.23410788,-0.2978484,-0.027004166,0.0483194,-0.30133417,0.16542175,-0.26527232,0.21106242,-0.7801204,0.542223,-0.2537382,-0.41919544,0.10904662,-0.21501744,-0.16748978,0.63717234,0.12407957,-0.21465686,0.09366554,-0.20947514,-0.34933165,-0.30893946,-0.021064295,0.20549226,0.1493216,-0.24329717,-0.1797802,-0.10746108,0.10371997,0.3290631,0.018977266,0.20566507,0.18167289,-0.06804494,-0.3811622,0.065850414,0.4724531,0.3954267,0.11030848,0.028962126,0.078355245,-0.48617616,-0.500592,0.29114634,-0.122746214,0.2244699,-0.02003409,-0.21572591,0.90382034,0.2746223,1.2551239,0.0767296,-0.32740232,0.10571976,0.5815529,-0.0065537053,-0.1456939,-0.3278951,1.0690694,0.67100763,0.057609122,-0.103761,-0.52304363,0.030632865,0.09578525,-0.26853994,0.06721135,-0.036025286,-0.6523976,-0.069409154,0.1354014,0.39763635,0.116785236,-0.17385638,-0.156182,0.11128347,0.21569426,0.3645341,-0.64563316,-0.15582755,0.43921232,0.06371977,-0.1786971,0.3413466,-0.3893893,0.4055488,-0.6371693,0.20063205,-0.19931749,0.069939435,-0.01421561,-0.31120783,0.31056908,-0.0432719,0.37350893,-0.45278856,-0.39729834,-0.357151,0.50169486,0.2691864,0.111324705,0.6697851,-0.15477784,0.21056536,0.08319722,0.52727044,1.1376598,-0.25473842,-0.025252968,0.14721613,-0.41725156,-0.84998953,0.20233142,-0.48638996,0.2835806,-0.1091782,-0.4730749,-0.45386818,0.16526487,0.05189043,-0.18395673,0.12452129,-0.68916243,-0.17567801,0.008820832,-0.22062981,-0.23153774,-0.27719375,0.10511228,0.60813487,-0.16542974,-0.37251344,0.064280875,0.24993649,-0.38363594,-0.69069874,-0.09269107,-0.3642137,0.056513663,-0.022979338,-0.29901218,0.06832314,0.1746532,-0.62817633,-0.06077587,0.29195523,-0.3496881,-0.086181775,-0.053238213,-0.020293942,0.7802184,-0.140656,0.035657827,-0.61171055,-0.6373205,-0.8965336,-0.4170474,0.4179135,0.121994235,0.21575506,-0.4574256,-0.074032985,-0.3353896,0.18789063,0.08574497,-0.5843363,0.3561173,0.1261699,0.45330596,-0.24967349,-0.92686653,0.27703738,0.082740866,-0.069497004,-0.4818217,0.37086532,-0.16984282,0.6159709,-0.0640042,0.015813854,0.120377526,-0.6576177,0.103611596,-0.2479049,-0.23218516,-0.71152383,0.13358982,403 -433,0.12351086,0.036737423,-0.65934503,-0.20137458,-0.26614955,0.06052604,-0.2385367,0.3006265,0.42949268,-0.23833747,0.093401894,-0.17785887,0.022318646,0.19143412,-0.10273246,-0.7305013,-0.070260264,0.17452994,-0.4158327,0.377187,-0.62296695,0.27256683,0.030894104,0.2759095,-0.04876808,0.25683212,-0.006197768,-0.37936598,-0.0056206607,-0.25622833,-0.11437785,0.21118878,-0.37098327,0.10185252,-0.06343695,-0.25338447,0.30102268,-0.40756032,-0.42890143,-0.66277516,0.17245711,-0.705874,0.5028023,0.13811071,-0.2734093,0.35151473,0.056189597,0.21590416,-0.14876638,0.038399577,0.3241735,-0.30728784,-0.32829756,-0.1413769,-0.40010455,-0.43403766,-0.60017765,-0.13829152,-0.48904228,-0.11657059,-0.23910911,0.14487822,-0.4327151,-0.05902515,-0.1477158,0.3801624,-0.42604813,0.060638078,0.13825865,-0.23568901,0.19382633,-0.5667451,-0.045785937,-0.009707929,0.13561194,0.011463659,-0.08521693,0.14790191,0.03503375,0.46633333,-0.026296139,-0.17078151,-0.3948555,-0.022489114,0.09608756,0.5642542,-0.21693747,-0.20988293,-0.035659935,0.13747345,0.20771718,0.4393879,-0.1673893,-0.12489448,-0.11573959,0.054627955,-0.39148638,0.41635886,0.53186196,-0.18537731,-0.061039057,0.4099919,0.2762034,0.2530312,-0.21538207,0.14107832,-0.0700819,-0.4401979,-0.20204869,0.065761045,-0.13738945,0.37768427,-0.12493414,0.26349556,0.61029196,-0.20474227,-0.035086103,-0.0038862228,-0.024601946,0.17925005,-0.1916617,-0.15603106,0.32386377,-0.49448732,0.099552974,-0.20698662,0.7378839,-0.07877243,-0.8366333,0.39386153,-0.5292838,0.18803287,-0.25494972,0.71090996,0.5865099,0.61190015,0.35075384,0.72063965,-0.41995025,0.2231509,-0.08020858,-0.4477037,0.29783282,0.13472779,0.14927895,-0.53911346,-0.09598142,0.04055569,-0.20407462,0.14165936,0.36323142,-0.49206457,0.02496274,0.21722195,0.82391137,-0.28503567,-0.08307298,0.57271767,1.1295166,0.8906693,0.08636044,1.0146782,0.30031508,-0.17580725,0.007440384,-0.3315896,-0.83783025,0.13104217,0.21691704,-0.110531315,0.23245737,0.046961136,-0.06646589,0.3261111,-0.32909387,-0.13693073,-0.14809522,0.29357812,0.025699649,-0.05507644,-0.32228413,-0.31886292,-0.034195464,-0.007274573,0.20776984,0.27175856,-0.1353722,0.3833708,0.046963204,1.4062366,0.052894752,0.110685095,0.099015035,0.4681892,0.19863454,0.038754296,-0.0053163213,0.566827,0.20532903,0.021458153,-0.6549992,0.12445732,-0.12102244,-0.33702794,-0.1341903,-0.25770977,0.00021371672,-0.05665533,-0.17820038,-0.28235516,-0.14040676,-0.36559802,0.48754957,-2.874235,-0.02410183,0.024529502,0.31320563,-0.06519335,-0.2401651,-0.03798338,-0.5036606,0.4484399,0.29367477,0.4944766,-0.57211626,0.45359465,0.5219354,-0.50779325,-0.21236922,-0.70716506,-0.16999473,-0.032705877,0.38360813,0.08871371,-0.1124681,-0.075550534,0.01448346,0.3107455,0.0023238808,0.14049523,0.24314417,0.59681696,0.067823246,0.4693375,-0.06010211,0.56917804,-0.08687697,-0.10866646,0.17704964,-0.33559173,0.27480084,-0.22670472,0.035121158,0.35432133,-0.327346,-0.70524114,-0.24080086,-0.02285018,1.2485622,-0.15566672,-0.4068109,0.19009627,-0.1301755,-0.16200177,-0.031073082,0.44412598,-0.16056453,-0.26257214,-0.71034443,-0.020369647,-0.16322783,0.2735377,0.056631945,0.062092338,-0.4195496,0.5014383,0.0144430315,0.53837746,0.32745662,0.09876716,-0.18057169,-0.4027338,-0.026525598,0.68713135,0.3219533,0.087373264,-0.23816817,-0.2198091,0.01087944,-0.108579874,-0.054880533,0.5463901,0.7604211,-0.11042493,0.11166376,0.37925705,-0.37089425,0.006991063,-0.23639956,-0.40260014,-0.07920461,0.021069458,0.46486542,0.5319168,-0.15301703,0.44799057,0.1783602,0.31213382,-0.12634383,-0.37942272,0.29970485,0.7761531,-0.119847186,-0.14870293,0.4654891,0.48625207,-0.16102548,0.45785162,-0.5102516,-0.2127959,0.4657116,-0.16032712,-0.5654068,0.31154436,-0.19828394,0.045708317,-0.87231094,0.28484765,-0.25281364,-0.5263426,-0.7261316,0.037399653,-3.166468,0.038541056,-0.39311212,-0.098587416,-0.13498984,0.059738856,0.14610846,-0.37652153,-0.5216904,0.13089816,0.377769,0.42458507,-0.16272889,0.09340505,-0.33655456,-0.065738834,-0.31880242,0.24518673,0.0407631,0.23266718,0.005920261,-0.5353493,0.01274193,-0.19655047,-0.27426606,0.04837619,-0.39089766,-0.18134955,-0.015318049,-0.5481058,-0.19350128,0.7152135,-0.37147316,-0.10508013,-0.30113506,0.061791744,0.1076153,0.30063978,0.016982645,0.14094216,-0.07555385,-0.0065092957,-0.023844024,-0.29966882,0.3433985,0.014423685,0.30262658,0.25121808,0.08178137,-0.03959585,0.61942434,0.49912515,0.025727486,0.8027515,0.48429415,-0.19634484,0.30556482,-0.30271107,-0.03825151,-0.43007877,-0.35758576,-0.16371581,-0.4114972,-0.4975212,-0.091602124,-0.3840962,-0.8414206,0.51162374,0.10407251,-0.03402024,0.052492652,0.32258686,0.4910903,0.0324549,0.16334851,-0.067581035,-0.18501766,-0.34348387,-0.09965148,-0.76297325,-0.2803857,0.21102282,0.9646602,-0.29717693,-0.06856503,0.119843744,-0.32559282,-0.1410059,0.18926157,0.1010376,0.37177625,0.35442767,0.123299845,-0.6531034,0.4471872,-0.10742529,0.059036944,-0.7542928,0.06921844,0.646619,-0.81997067,0.39232212,0.5276356,-0.02511701,-0.016158478,-0.61506397,-0.28087622,0.058298197,-0.14957549,0.32826096,0.031709153,-0.7977314,0.63868797,0.27172372,-0.25046623,-0.7391796,0.32203063,-0.086400524,-0.3725792,0.18850558,0.30035022,0.12034444,0.060954865,-0.21634053,0.16730879,-0.33850604,0.3441494,0.051592994,-0.15029518,0.22264597,-0.044656273,-0.07942803,-0.8174313,-0.11903507,-0.5073223,-0.30429077,0.3958756,0.036896594,0.26785567,0.04130314,0.09624035,0.4424937,-0.20193873,0.078236006,-0.1618428,-0.25162378,0.44926164,0.48280174,0.23344989,-0.46771988,0.55522364,0.05331077,-0.156788,0.06285393,0.008259871,0.40299314,-0.0018833982,0.31253046,0.05969588,-0.29808834,0.15583995,0.87151915,0.15703861,0.36892158,0.11198033,0.028933665,0.46563342,-0.051708996,-0.0017848952,-0.07486127,-0.4878428,-0.06454766,-0.27280927,0.22849067,0.37568134,0.17212251,0.460322,-0.14043395,-0.16836107,-0.019228382,0.24116635,0.21303265,-0.7198998,0.38073167,0.16236408,0.58893985,0.54283947,0.1623807,0.13446002,0.670119,-0.26101425,0.031271588,0.43078908,0.14993559,-0.470804,0.5017575,-0.6646541,0.36092734,-0.10099148,-0.023422748,0.22764595,0.08057524,0.39130673,0.84366196,-0.1901052,0.00085852825,-0.05270955,-0.23127587,0.03388591,-0.1747417,-0.012996427,-0.3372577,-0.28697917,0.56225145,0.31058547,0.32761285,-0.13613813,-0.023907542,0.29704595,-0.048949268,0.30389175,0.06364531,-0.05377862,-0.15211587,-0.5780312,-0.1673261,0.62002534,-0.008017495,-0.008483206,-0.06428738,-0.1660751,0.32859588,-0.30273682,-0.11323094,-0.03810316,-0.45635337,0.0064117396,-0.20938404,-0.66945326,0.5390524,-0.017538872,0.27457294,0.104027815,0.12464774,-0.17012906,0.1603463,0.15508518,0.7257196,-0.12719508,-0.21029556,-0.33634117,-0.18253164,0.16827835,-0.25204447,-0.3104872,-0.23685408,0.064835526,-0.54958475,0.40453848,-0.4726148,-0.32593796,-0.034668088,-0.24198975,-0.038708877,0.45203224,-0.2843924,-0.10353987,0.03802922,-0.24558903,-0.288555,-0.2495249,-0.27628937,0.15747033,0.026024427,-0.19660068,-0.2422246,-0.22291167,-0.1335254,0.3888208,-0.0006409841,0.15799613,0.26393154,0.14394554,-0.28771666,-0.25966164,0.13944848,0.56643075,-0.14626636,0.017734213,-0.26857144,-0.25549954,-0.30002612,0.14911675,-0.093910694,0.368633,0.068872005,-0.45059237,0.81305134,-0.030563751,0.9485888,-0.010457243,-0.33856964,0.15030381,0.548855,0.14553261,0.14902128,-0.2547523,0.95667636,0.6505944,-0.0691318,-0.16392647,-0.5541765,-0.11596105,0.34185982,-0.18433419,-0.1774433,0.006307487,-0.5411933,-0.20821932,0.3667483,0.082651615,0.12523939,-0.15551749,0.0819739,0.04063142,0.24846962,0.23080441,-0.40263417,-0.16300781,0.24486981,0.14801721,0.14737667,0.17901662,-0.4058485,0.25062272,-0.332659,0.18726993,-0.37948632,0.08691553,-0.11500012,0.02393855,0.19610044,-0.060245693,0.25742355,-0.2466491,-0.4575143,-0.019851675,0.43898663,0.19055273,0.3184202,0.6438021,-0.22349752,-0.04451722,-0.09693108,0.6605805,1.2066647,-0.20561756,-0.09321177,0.506288,-0.26956242,-0.6474144,0.18499517,-0.4225922,-0.16323607,0.03827181,-0.36180285,-0.41264132,0.24758582,0.13021311,-0.10605584,0.09527375,-0.37212276,-0.19622609,0.19269408,-0.35155082,-0.26606572,-0.33177313,0.124186814,0.8791432,-0.2983052,-0.23534767,0.036888976,0.16208646,-0.23008992,-0.5777916,0.16162685,-0.30950165,0.24333332,0.2873283,-0.40044388,0.055966623,0.08622528,-0.44524607,0.15778086,0.3968459,-0.29907745,-0.020610021,-0.2655422,-0.0077018524,0.8408227,-0.16394846,0.13364796,-0.5038465,-0.45893887,-0.71423185,-0.32198197,0.36723518,0.03635713,-0.037550908,-0.57399684,0.040664595,-0.06369226,-0.2591844,-0.103391014,-0.58366907,0.5138661,0.051941685,0.27694577,-0.35137722,-0.9091463,0.08275662,0.110405214,-0.4839905,-0.57101876,0.6324647,-0.23556812,0.8680186,0.116534874,0.04599231,0.23267868,-0.47757,0.35747197,-0.4456146,-0.3850265,-0.65215683,-0.018939788,410 -434,0.2608963,-0.19791207,-0.4556026,-0.1276548,-0.38019255,0.16607325,-0.3415489,0.18822905,0.15344569,-0.27149865,-0.31076917,-0.03603986,0.05908561,0.27160645,-0.08925081,-0.39283493,-0.11493141,0.13038583,-0.8012556,0.37406513,-0.49826413,0.30203944,0.3035788,0.4334465,0.29290244,0.22686434,0.27166718,-0.031688124,-0.07829219,-0.33271137,-0.24915512,0.1726968,-0.61425495,-0.008926928,-0.4159502,-0.45480648,-0.029399378,-0.53271675,-0.2950522,-0.8044396,0.17484055,-1.1437263,0.6019812,-0.23664556,-0.13613799,0.12382449,0.480526,0.3181701,-0.25779715,0.07135833,0.26701647,-0.3345507,-0.20434497,-0.23058586,-0.13783653,-0.41386822,-0.6291503,-0.005875311,-0.5588364,-0.19006893,-0.26766533,0.3083014,-0.41807276,0.21241906,-0.14805886,0.33075953,-0.4422815,0.018614369,0.12739976,-0.17763427,0.3116906,-0.6902835,-0.054960992,-0.14486142,0.53928083,-0.1322451,-0.14956924,0.37369162,0.43344972,0.34189606,0.20293193,-0.29918188,-0.29235062,-0.13748595,-0.07179684,0.5495721,-0.2690631,-0.26217192,-0.21117933,0.12751417,0.66432095,0.5777306,-0.088746965,-0.011428833,0.0344831,-0.10006712,-0.276177,0.6037587,0.5375115,-0.27763537,-0.44102737,0.27300003,0.48584646,0.27050117,-0.2490635,-0.04781846,0.037892647,-0.56469613,-0.11129417,0.19315767,-0.1149287,0.44246218,-0.08419274,0.2173632,0.7969359,-0.21510157,0.1528757,0.05683049,0.016312305,-0.18482693,-0.12456925,-0.30590272,0.24435057,-0.65463024,0.10769068,-0.2598665,0.7411274,-0.035965,-0.7125934,0.38755414,-0.50535095,0.18540628,-0.0024888557,0.6188999,0.75293285,0.42283112,0.46246925,0.85676795,-0.18712728,0.115084566,-0.072924785,-0.29412475,-0.037098657,-0.23468934,0.18477571,-0.45735887,-0.0045240694,-0.18382803,0.11583089,0.17323065,0.52344996,-0.5457775,-0.18398046,0.24735714,0.75915635,-0.26373008,0.0088688815,0.8108658,0.9962886,1.1158708,-0.03543121,1.1620985,0.30308303,-0.16600993,-0.061437402,-0.19512129,-0.64861596,0.2170602,0.3902777,-0.08027581,0.23723236,-0.07872523,-0.12574045,0.17701064,-0.6091073,-0.023297897,-0.060733464,-0.015951613,0.18467619,0.08263038,-0.41383767,-0.33432585,0.012273969,0.042070083,0.19989853,0.17512178,-0.31335458,0.53158224,0.048058152,1.2917484,-0.10741147,-0.036384407,0.12365488,0.5898203,0.2562614,-0.0265041,-0.13274828,0.29032773,0.5605028,-0.06630875,-0.6028036,0.18289651,-0.38803953,-0.1559558,-0.1807904,-0.3709922,-0.20915444,0.17087008,-0.2598231,-0.261982,-0.08529217,-0.41939712,0.37695518,-2.760166,-0.2513817,-0.16403088,0.28328282,-0.23677166,-0.13140155,-0.29248303,-0.7037765,0.341938,0.18344995,0.5494691,-0.54522485,0.45191264,0.5775451,-0.60848445,-0.20506392,-0.7394929,-0.30510396,-0.034655403,0.3949793,0.18333384,-0.19527128,-0.11387044,0.15736233,0.8098798,0.18744572,0.093309775,0.5625595,0.4798686,-0.011985724,0.6615805,-0.012638365,0.6318747,-0.37059578,-0.22329232,0.41875404,-0.27284223,0.19418256,-0.31396392,0.11362469,0.7321933,-0.4907784,-0.97190064,-0.62798446,-0.218205,1.1723777,-0.3243348,-0.4785232,0.10957755,-0.06344131,-0.067269154,0.044296686,0.68146497,-0.138977,0.042871624,-0.64765847,-0.16092728,-0.04804581,0.17687471,0.02297713,-0.035137665,-0.41464397,0.66044843,-0.12385775,0.56570905,0.13357764,0.33452216,-0.3475679,-0.27746907,0.14118703,0.98479843,0.4379361,-0.050480846,-0.28374764,-0.21635492,-0.15611836,-0.31404656,0.016014894,0.5976431,0.6607023,-0.08517671,0.32225636,0.39035383,-0.10166705,-0.011326836,-0.14989267,-0.23165417,-0.10733301,0.053110685,0.47881168,0.62593853,0.032630146,0.6363178,-0.12122929,0.30759162,0.022851706,-0.5936436,0.52134806,0.48355708,-0.25929815,-0.024999088,0.6052712,0.39247203,-0.43524244,0.53372806,-0.6718459,-0.4595646,0.66496474,-0.19379804,-0.54742426,0.24256802,-0.26023835,0.06854217,-0.5024027,0.23196027,-0.23537543,-0.42744973,-0.46838167,-0.063183956,-2.797512,0.114687406,-0.10868207,-0.07575985,-0.3339823,-0.39847568,0.29956725,-0.4501261,-0.6323705,0.16371782,0.30700678,0.6926654,-0.15777051,0.088646784,-0.2446955,-0.29613203,-0.2440356,0.13358179,0.28727862,0.28639945,-0.25373232,-0.38888672,0.13890955,-0.0817876,-0.46746454,-0.008220774,-0.58925426,-0.46469665,-0.07075507,-0.45212078,-0.26995423,0.61939293,-0.38032347,0.04941849,-0.33332154,0.1530473,-0.085223936,0.14955446,0.13858022,0.13778675,-0.022989238,-0.17579223,0.25469932,-0.3267672,0.7356985,-0.011653787,0.28792992,0.158025,0.14640346,0.21502994,0.48419943,0.4994951,-0.18738112,1.2257385,0.33846673,-0.10711365,0.06420321,-0.16444638,-0.48612946,-0.61925185,-0.26067978,0.09499172,-0.4884694,-0.3507173,0.020880163,-0.23846798,-0.8893509,0.72045124,-0.03782398,0.38065425,-0.11152918,0.38692278,0.3895626,-0.19273032,0.07787478,-0.078797765,-0.1365954,-0.4095091,-0.3049648,-0.75748444,-0.5316542,-0.21422526,1.010704,-0.31254718,0.08629947,-0.023082623,-0.28367874,0.13806216,0.10660056,0.085300006,0.2789424,0.5437594,0.029555395,-0.6700854,0.407387,-0.18071638,-0.07130408,-0.5894936,0.17355272,0.7286001,-0.7865323,0.38533565,0.4631439,-0.059890207,-0.22307007,-0.49516746,-0.14135599,-0.090797424,-0.20567301,0.42428732,0.1372725,-0.80762005,0.6144935,0.22713956,-0.41700524,-0.70558804,0.33797923,-0.045674015,-0.21076809,0.040276464,0.28540263,0.1778815,-0.09793752,-0.10333402,0.088215984,-0.33140817,0.485727,-0.102615416,-0.015576558,0.38105878,-0.24969898,-0.35812983,-0.68915,0.054432195,-0.4967744,-0.3616956,0.38521558,0.018441211,0.012563962,0.41136715,0.0010719256,0.3839392,-0.21700907,0.07442311,-0.07885039,-0.38059574,0.27088833,0.43879214,0.37357023,-0.39350373,0.6071639,0.14060245,-0.38303182,0.36416027,0.032320883,0.33959088,-0.028118243,0.42490265,-0.20626035,-0.25050634,0.47689396,0.7263049,0.11530006,0.3668141,0.028541889,-0.11300607,0.37975916,0.00069107965,0.07330277,0.0066299182,-0.61214393,-0.0030865776,-0.20172319,0.073723234,0.55107254,0.1781513,0.29832214,0.037347045,-0.085379735,-0.059653427,0.008143323,-0.16825345,-1.2074239,0.25394818,0.09871025,0.90124285,0.27066514,0.07520529,-0.12041949,0.7746612,-0.3226873,-0.06648446,0.44393554,0.24045531,-0.37682933,0.74264854,-0.6345922,0.5925306,-0.07838056,-0.060526464,0.039677925,0.11881317,0.29919845,0.96525466,-0.38061306,0.10432718,-0.00045104537,-0.19210641,0.10125561,-0.2875219,0.111025274,-0.4172635,-0.47396946,0.8681653,0.32088703,0.312803,-0.093338184,-0.07058827,-0.13388877,-0.24039257,0.23929271,0.11129558,-0.035660572,-0.109445095,-0.5893734,0.11180077,0.45403147,-0.012491705,0.15355146,-0.0671851,-0.1640265,-0.0033345628,-0.19319177,0.07060262,-0.076770484,-0.72342974,-0.13183364,-0.2519181,-0.5671225,0.3348233,-0.33476833,0.16514206,0.29111043,-0.0789568,-0.11480454,0.30755037,0.25698093,0.7165442,-0.12184609,-0.16979837,-0.28651127,0.12998281,0.28856617,-0.2736894,0.16669586,-0.3796497,0.08000101,-0.63776845,0.63463944,-0.3315196,-0.5681847,0.28522852,-0.21774448,-0.092739515,0.61100465,0.041028738,0.04274691,0.014249989,-0.15483162,-0.40388387,-0.14146875,-0.28210527,0.10213132,0.35041657,-0.0905983,-0.17982104,-0.2947299,-0.17445461,0.5099697,-0.08896933,0.5817073,0.27701157,0.22627698,-0.2085472,0.06644354,0.089719035,0.713225,0.08767193,-0.041710887,-0.6361081,-0.38564208,-0.17993112,0.38889155,-0.1060223,0.20187752,0.005340802,-0.33972007,0.9233622,-0.15145275,0.9815132,0.11182415,-0.31249005,-0.016855385,0.59049904,-0.15021849,-0.08737944,-0.4075168,0.9201228,0.55583346,0.0038605076,-0.009336216,-0.5225388,0.043115955,0.40751106,-0.37957758,-0.1708524,-0.08182528,-0.5354553,-0.44128084,0.19591966,0.17517349,0.15945272,-0.18749537,0.105965756,0.31191248,0.17887416,0.5299275,-0.59170055,-0.15587641,0.30557826,0.25755182,-0.44354525,0.21496296,-0.45634085,0.40023056,-0.5560451,0.039001953,-0.48744062,0.09068892,-0.12217416,-0.2731888,0.2264743,0.014810975,0.48978308,-0.2717527,-0.39275938,0.07446419,0.42021602,0.16244696,0.23496091,0.5514229,-0.25287586,-0.06552289,0.027878301,0.61573166,1.402362,-0.4599609,0.026630988,0.23597498,-0.387993,-0.52211535,0.46702924,-0.39883247,-0.11351176,0.020038579,-0.4139025,-0.2394558,0.30367973,0.099022545,0.099095754,0.017516447,-0.47217172,-0.051841624,0.20306432,-0.22915332,-0.22424044,-0.36698446,0.306784,0.56788176,-0.19684969,-0.27065048,0.016290251,0.45602056,-0.21781516,-0.5036075,0.013882982,-0.3185024,0.25468516,0.034304854,-0.34640315,-0.075300984,0.08423545,-0.5700307,0.02934419,0.09371416,-0.42459294,-0.07162418,-0.112067334,0.040681034,0.89120185,-0.28548428,-0.09406536,-0.4622623,-0.5020266,-0.7708954,-0.2716947,0.19646123,0.3313639,0.002528742,-0.41561127,-0.050605927,-0.19478133,-0.28425378,0.051421966,-0.48455307,0.31485456,0.0965644,0.51966304,-0.44939107,-0.7477729,0.23290597,-0.07036998,-0.17749739,-0.4827017,0.67169094,0.12296837,0.7345069,0.16898844,-0.0142961955,0.05886813,-0.30793437,0.081270315,-0.3843471,-0.14210846,-0.8910156,0.09613495,412 -435,0.40067476,-0.24763907,-0.4825695,-0.12675264,-0.17145033,0.08948279,-0.33976677,0.28742546,0.11292575,-0.35295397,-0.120646104,-0.035399437,0.04942404,0.3595112,-0.06013912,-0.5126442,-0.14466122,0.025194513,-0.55908495,0.4305252,-0.6797813,0.40248474,0.14631376,0.3960094,0.26176673,0.37302646,0.10475485,-0.12640207,-0.058397196,-0.284813,-0.14787497,0.4189231,-0.556514,0.05284794,-0.006425917,-0.2840137,0.039692543,-0.416287,-0.21382464,-0.6856758,0.052905314,-0.96154153,0.5411667,-0.01891908,-0.22326319,-0.111735106,0.32519674,0.5001315,-0.22584508,0.25594425,0.28633097,-0.10585298,-0.097514614,-0.28863147,-0.11447805,-0.44714254,-0.4998793,-0.06336337,-0.5756298,-0.31043634,-0.15681352,0.32335874,-0.33276886,0.06406707,-0.41387525,0.3249351,-0.4581669,0.04835976,0.3153533,-0.18365166,0.6468194,-0.5440324,0.00047799837,-0.07883211,0.28855547,-0.11031341,-0.24782309,0.18645497,0.42690268,0.40898186,0.13204728,-0.12736164,-0.26523086,-0.25201803,0.19414723,0.5155108,-0.28912854,-0.30989522,-0.25652042,0.10109766,0.4963577,0.52287805,-0.098192945,-0.43380126,-0.007965894,0.093754016,-0.24473608,0.4217045,0.47765622,-0.2723388,-0.44660917,0.2611441,0.45933676,0.17571457,-0.25228268,0.0901952,0.070926435,-0.5813789,-0.03753594,0.2744971,0.11463293,0.48273996,-0.019726064,0.13447976,0.7879148,-0.12945183,0.017553095,-0.04146438,-0.19645922,-0.02847051,-0.32945338,-0.32115826,0.08188492,-0.5924323,0.14472297,-0.39391023,0.71741134,0.022812711,-0.6726965,0.38994965,-0.57729024,0.11456791,-0.073216036,0.6960341,0.5524066,0.437805,0.25885564,0.7101863,-0.36285734,0.07163739,-0.15151384,-0.33393964,0.088693395,-0.10784934,0.17969596,-0.46522164,0.089441344,-0.12791313,0.1254059,0.017887881,0.6244531,-0.557319,-0.09589512,0.06853037,0.80114204,-0.42302802,0.007510426,0.5940374,1.0171658,1.0046675,0.072983675,1.1739401,0.31541926,-0.17506881,0.015379255,-0.3362095,-0.4332088,0.3199268,0.37373325,-0.20858352,0.275667,-0.101615705,-0.10878658,0.32837456,-0.22293319,0.042591877,-0.1355264,0.13965856,0.09635381,-0.111029044,-0.5738072,-0.16738364,-0.00023629835,-0.079451695,0.10796155,0.02037154,-0.3275579,0.30784765,0.024312636,1.5343667,-0.37384096,0.07164653,0.13565162,0.34348527,0.20368683,-0.2991722,0.039744873,0.31913665,0.57463133,-0.00087342516,-0.6018144,0.3700948,-0.24146469,-0.43062672,-0.16168235,-0.36658007,0.032679413,-0.014302224,-0.4975083,-0.070260786,0.039507177,-0.28766873,0.40900165,-2.7549732,-0.26985464,-0.16638435,0.2516598,-0.30708143,-0.2770644,-0.08995237,-0.46398783,0.3366092,0.14369473,0.4574962,-0.5761505,0.55487734,0.45016223,-0.29184645,-0.24003564,-0.8649524,-0.13741906,-0.041391365,0.39059553,-0.009124451,-0.1651561,-0.17657125,0.2437693,0.75860065,-0.15599218,0.13465367,0.35303846,0.4466903,0.13451949,0.72013867,-0.018807197,0.62590784,-0.16638756,-0.17771776,0.4233096,-0.32746544,0.1452339,-0.005337681,0.09322052,0.38706803,-0.3766293,-0.96327096,-0.71477306,-0.39995548,0.9490308,-0.40088964,-0.5985212,0.13426915,-0.0815053,-0.18333934,0.05408141,0.5196219,-0.076428674,0.12080346,-0.84116745,0.08611953,-0.16293319,0.28831762,0.034468103,0.028420065,-0.33118185,0.50376886,-0.062548,0.60206044,0.33504882,0.28399017,-0.1173977,-0.4074693,0.008166526,1.0735584,0.3085452,-0.07009513,-0.23097573,-0.34755522,-0.03955927,0.0046015806,0.04564034,0.5721129,0.8309904,0.026750853,0.20473385,0.3109353,-0.12662266,0.006768661,-0.13233538,-0.3116722,0.0004392181,0.12696472,0.487233,0.4345687,-0.0039165276,0.6078321,-0.266145,0.3940153,-0.018623037,-0.55436724,0.40180996,0.7221679,-0.23019816,-0.114768334,0.6654223,0.49130657,-0.27419108,0.37604794,-0.682733,-0.13962868,0.65115684,-0.23816173,-0.35838142,0.40466383,-0.34323516,0.19242035,-0.89750785,0.41682014,-0.36485,-0.58685195,-0.3543434,-0.122527614,-3.3190994,0.10009501,-0.05933932,-0.2577064,-0.17837746,-0.18595965,0.5357784,-0.5616469,-0.5436455,0.044573266,0.27156284,0.5497455,-0.089237355,-0.0048028827,-0.3611019,-0.12633108,-0.0316348,0.2953855,0.19891103,0.24298131,-0.09761156,-0.35485378,-0.06630974,-0.016539956,-0.55063117,0.21806815,-0.65742105,-0.6630045,0.10995269,-0.46158195,-0.3554458,0.6969058,-0.35497603,-0.02391092,-0.11074285,0.12767293,-0.12756449,0.3610899,0.1821865,0.28744766,0.16714002,-0.057455964,0.13268368,-0.33810344,0.3857608,0.0654576,0.26338392,0.015421697,-0.06806021,0.23284133,0.42998257,0.45184612,-0.04970748,0.92490727,0.43109173,-0.0558374,0.13297571,-0.41594955,-0.25778988,-0.59683937,-0.36921486,-0.13045521,-0.5167397,-0.5018231,-0.018890264,-0.15218617,-0.7605174,0.6454379,-0.11300678,0.30720815,-0.20835434,0.43100294,0.38299686,-0.018684974,0.04749281,-0.092498355,-0.12127384,-0.45227104,-0.30051252,-0.6980645,-0.62435657,0.024288502,0.8966412,-0.31112686,0.1035016,-0.13833949,-0.18991415,-0.07169501,0.14357196,0.13682869,0.3966351,0.53498495,-0.07549673,-0.625385,0.30701247,-0.06041221,-0.14919004,-0.5724211,0.13687536,0.87050927,-0.73202235,0.44419298,0.32421955,0.10736925,-0.15201077,-0.6827739,-0.21866962,0.14665702,-0.38360453,0.62075406,0.0711453,-0.6787167,0.4495117,0.41857198,-0.33482006,-0.50034064,0.37281066,0.014998709,-0.32436445,0.035864633,0.40388846,0.029160371,-0.065655135,-0.14772418,0.20209225,-0.41190082,0.22248946,0.26536494,-0.15273984,0.26525804,-0.12980911,-0.2627359,-0.7297827,0.03369643,-0.64530885,-0.33259135,0.37655607,-0.060557313,0.05053795,0.29235348,-0.13608304,0.4342751,-0.28706184,0.037734687,-0.12670876,-0.3084218,0.24865206,0.5830518,0.19388258,-0.29275373,0.4050533,0.13691247,-0.26470414,0.046768103,0.031063642,0.43304858,-0.11343595,0.3785527,-0.46877295,-0.2082545,0.5148181,0.6206774,0.22191682,0.502035,0.030286644,-0.06833081,0.28764588,0.030046115,0.05319894,0.05065495,-0.28900757,-0.16756137,0.022763653,0.21807781,0.60415643,0.29907662,0.2828623,0.010048977,-0.12945545,0.14307404,0.1406565,-0.10778255,-1.020848,0.60940784,0.25559947,0.6189884,0.38923502,0.1530435,-0.09346785,0.57317245,-0.4283648,0.07514287,0.42539334,0.1897875,-0.50738436,0.8355544,-0.72978956,0.3966492,-0.1680025,0.09677714,0.118694425,0.060542516,0.49879768,1.0597274,-0.17854837,0.105144314,-0.0032000926,-0.06811552,0.04119673,-0.28558406,0.029009882,-0.36464566,-0.42216334,0.8153983,0.4344468,0.37347198,-0.16766138,-0.018871699,0.15360324,-0.22217028,0.28716272,-0.023940995,0.051289413,0.08173934,-0.511912,-0.24259678,0.54397017,-0.01845421,0.07980677,-0.048795186,-0.24361347,0.06526808,-0.07715116,0.03829405,0.046418216,-0.47943214,-0.1124668,-0.46428564,-0.53646916,0.25207847,-0.4562067,0.055645872,0.08494748,-0.055512194,-0.11709361,0.22543919,0.1795437,0.7855526,0.04682111,-0.29328915,-0.38362813,-0.033883955,0.20930798,-0.27373645,-0.12900257,-0.3167434,0.04835248,-0.7627203,0.45653984,-0.12880194,-0.5572124,0.27510387,-0.18259047,-0.07284207,0.54512423,-0.12535672,-0.098471396,0.17488894,-0.15684868,-0.36676416,-0.13834454,-0.13679962,0.16407487,0.23751982,-0.016655479,0.017260972,-0.27829227,-0.15110986,0.42630836,0.15770398,0.5451439,0.3557975,0.18216573,-0.15718332,0.029443962,0.18333437,0.4869786,0.1796821,0.13160925,-0.38303423,-0.4610502,-0.2597062,0.21164958,-0.11970315,0.34631944,-0.029020848,-0.4089341,1.1367255,-0.076571174,1.1289918,-0.050423894,-0.35800576,-0.039422866,0.43650573,-0.12549141,-0.06803949,-0.39863458,0.8795174,0.4950905,-0.07084466,-0.05160751,-0.46970218,-0.29379392,0.2139121,-0.30710435,-0.057399597,-0.16090563,-0.6060613,-0.3745083,0.19480984,0.1594726,0.10412911,0.0295614,0.044337843,0.15343942,-0.00049486116,0.38614416,-0.5496907,-0.01416422,0.041956007,0.31677118,-0.17624311,0.13767968,-0.51738083,0.36799923,-0.57023066,0.19689748,-0.43230423,0.11501299,-0.0050104004,-0.2886582,0.16284433,-0.2987902,0.1667349,-0.24411058,-0.25440755,-0.027151287,0.5329207,0.07182978,0.1525656,0.8398266,-0.1980999,0.17550626,0.15255037,0.577199,1.4985182,-0.47550353,0.069135204,0.29079586,-0.40988997,-0.6267465,0.3517316,-0.3172956,-0.075416386,0.15862629,-0.5871583,-0.2992681,0.22252993,0.078166686,0.097086586,-0.06204686,-0.3746605,-0.13725884,0.32366678,-0.30832013,-0.28188446,-0.28946072,0.46509784,0.66467243,-0.322948,-0.42129496,-0.05297963,0.36186934,-0.4475154,-0.3981216,0.024660388,-0.10973121,0.38760298,0.14869633,-0.26925704,0.010892391,0.08231931,-0.3997225,-0.02620847,0.2790888,-0.3751295,0.10838636,-0.11535998,-0.14480567,0.82885486,-0.2527258,-0.45757246,-0.7278164,-0.4271378,-0.8950273,-0.5173907,0.2377034,0.2529591,0.059563525,-0.33493486,0.0697245,-0.11062238,-0.082648255,0.009654446,-0.52497476,0.40886313,0.09242842,0.58924323,-0.34829378,-0.80548227,0.20946144,0.19658235,-0.14488818,-0.64640385,0.79585457,-0.11488483,0.6974786,0.10905355,0.053163,0.05131026,-0.4677827,0.048674114,-0.26714423,-0.1999005,-1.1060573,-0.054313485,415 -436,0.48803526,-0.275356,-0.35190195,-0.038852457,-0.09993102,0.29836157,-0.19579948,0.4667609,0.09770955,-0.28728446,0.10543706,-0.050861895,0.05291864,0.46653196,-0.10957967,-0.38149998,-0.22567381,0.036705766,-0.57179147,0.8089697,-0.25273472,0.19979021,-0.19533612,0.4918108,0.21124892,0.32688975,-0.033866253,0.0669197,-0.09961874,-0.016594289,0.08650063,0.10198606,-0.76109356,0.016977033,-0.2590484,-0.1925423,-0.12647322,-0.36250582,-0.42950276,-0.8204897,0.48367548,-0.84026676,0.80213886,-0.008007535,-0.18254396,0.48851374,0.29153794,0.26354071,-0.2536495,-0.13596341,0.09095667,-0.09356097,0.07312933,-0.23824976,-0.27343908,-0.41781813,-0.6287252,0.009831854,-0.50420946,-0.102654085,-0.2543618,0.14933889,-0.25717214,-0.0805143,-0.13767181,0.37432715,-0.5866736,0.1289976,0.16382237,-0.030452013,0.18286209,-0.6453303,-0.20538683,-0.16509488,0.38737893,-0.134869,0.020235592,0.35624272,0.06111776,0.3357965,-0.056842368,-0.08628961,-0.45160356,-0.19546525,0.004245526,0.43634892,-0.18752834,-0.56078804,-0.09355213,-0.03611308,0.18520345,0.10631316,0.16163956,0.06408094,0.0065287477,-0.11943662,-0.14237085,0.6540347,0.5038363,-0.2560149,-0.5518887,0.34962568,0.6225554,0.33006337,-0.17845607,-0.0763496,-0.012474194,-0.47252512,-0.16379483,0.26794133,-0.11427467,0.4811732,0.025034394,0.191762,0.58229816,-0.30976272,0.07245384,-0.1218433,-0.032084584,-0.010741294,-0.13322154,-0.29492992,0.16901521,-0.3340278,0.34040293,-0.318759,0.5713952,0.18081668,-0.6655176,0.43799525,-0.5963666,0.103154644,0.2151586,0.42717162,0.65668136,0.6165007,0.19700027,0.5969877,-0.12876897,0.06290444,-0.15249808,-0.04057732,-0.018410001,-0.30741692,0.038974915,-0.38494954,0.20985666,0.009632627,-0.23268504,-0.093211465,0.53265244,-0.5345656,-0.08904052,0.05885021,0.9514249,-0.21507004,-0.050507586,0.88237846,0.98568827,1.0807588,0.010154643,1.0076479,0.24855237,-0.26885888,0.1969689,-0.46829328,-0.745423,0.22151871,0.24906988,-0.07370348,0.6579185,0.023141623,-0.03744324,0.223936,-0.43222818,-0.0041908408,-0.18681593,0.13056388,0.2625601,-0.0012788262,-0.2957297,-0.35276583,-0.06279864,-0.06049794,0.32538062,0.2668387,-0.27532652,0.42785883,0.08985416,1.7341765,-0.03222939,0.18230216,0.14331453,0.7692326,0.15951394,0.013569428,-0.09386654,0.4871022,0.3958287,0.22955108,-0.5704878,0.2753366,-0.33624655,-0.51710385,-0.034823824,-0.5075082,-0.16405039,-0.10639221,-0.3134897,-0.24033312,-0.15396579,-0.1659523,0.26697716,-2.780316,-0.048808984,0.05094275,0.4074173,-0.40181535,-0.25308552,-0.22509328,-0.48468757,0.37170935,0.2544094,0.35032937,-0.576572,0.4745646,0.36487192,-0.57281625,-0.063632265,-0.48051253,-0.16905595,-0.05358594,0.5294935,-0.13558885,0.049189754,0.2252318,0.32068482,0.48945612,0.06628381,0.053337425,0.29882982,0.49127752,-0.088330634,0.46358243,-0.16395679,0.3130156,-0.37515283,-0.12845673,0.36303598,-0.4634392,0.27548954,-0.2402494,0.11640591,0.40396675,-0.530807,-0.9955905,-0.62118053,0.08531396,1.0719388,-0.22873987,-0.49885002,0.104120255,-0.5185841,-0.09865444,-0.23637106,0.6548773,-0.22992387,-0.032610383,-0.6848207,-0.12648141,-0.17638287,0.30680385,0.102542825,0.31752592,-0.5151321,0.7233017,-0.05149347,0.4913176,0.06534237,0.19365014,-0.34159857,-0.4947715,0.1263547,0.6509126,0.2792906,0.026880225,-0.2133384,-0.34949446,-0.21537177,-0.04279509,-0.0036984682,0.6824275,0.3975388,0.03892991,0.054221444,0.2792186,-0.26843172,0.2626236,-0.3075994,-0.25164056,-0.23515598,-0.05682716,0.53688055,0.5279399,-0.20112456,0.40237978,-0.06079853,0.34520307,-0.2137054,-0.32867804,0.39450374,1.0275589,-0.17532344,-0.13697301,0.60546035,0.64225256,-0.30234247,0.4286799,-0.69433075,-0.26911953,0.5464705,-0.2973841,-0.4216331,0.2156693,-0.16873321,-0.029452965,-0.8353272,0.11881452,-0.40894917,-0.22078142,-0.56709856,-0.04672418,-3.1814027,0.043794017,-0.08208908,-0.2608527,-0.21950047,-0.1909864,0.12727578,-0.66705424,-0.6656617,0.12792324,0.11101854,0.7154317,-0.17662077,0.12008651,-0.26355058,-0.41788298,-0.4530378,0.23690851,0.22381108,0.47442034,-0.22917387,-0.35346267,-0.027569976,-0.12667163,-0.45595428,-0.0438264,-0.34809965,-0.20284685,-0.18029845,-0.56022155,-0.23725145,0.64006644,-0.19119331,0.009835799,-0.3185815,-0.07239436,0.005425036,0.39614472,0.103700034,0.2570105,0.26490957,-0.28389427,0.15451156,-0.2672927,0.39769608,0.013880354,0.24659704,0.32781643,-0.28527254,0.2090887,0.46646598,0.68313694,-0.019562343,0.8800832,0.4133763,-0.2036442,0.44211754,-0.37116805,-0.19913468,-0.6256402,-0.26334682,0.15499173,-0.26894787,-0.56476396,-0.26707926,-0.390896,-0.7785883,0.4997322,-0.22927181,0.30939704,-0.07079079,0.410641,0.5411151,-0.28628168,0.14554095,-0.002684887,-0.07905109,-0.4579065,-0.15228784,-0.45320204,-0.50703233,-0.038115773,0.8372982,-0.15649104,-0.0815475,0.048439562,-0.35753566,0.078118965,0.13778612,0.04707078,0.15459251,0.44854045,-0.13725218,-0.53137267,0.5062472,-0.14750113,-0.20123275,-0.4618177,0.27423304,0.46949443,-0.6530263,0.5177943,0.30904302,0.063616715,-0.39870936,-0.55168986,-0.056189425,0.0786242,-0.02839927,0.17468552,0.1832566,-0.75890297,0.31186494,0.15782166,-0.3271223,-0.74901885,0.6382128,0.01548455,-0.4082283,-0.054800034,0.4057683,0.13069002,0.0050554615,-0.33713886,0.2734945,-0.5117283,0.13940278,0.028297368,0.0008667537,0.29838613,-0.12974034,-0.1795794,-0.756178,0.2891956,-0.4910232,-0.39698607,0.524845,0.19781365,0.010715208,0.1636437,0.09653983,0.46794388,-0.21501009,0.12714069,-0.11188483,-0.25796962,0.38853928,0.36705837,0.48956823,-0.5695868,0.61383694,-0.0701718,-0.1073113,0.18590626,0.066907115,0.41633382,-0.08151679,0.4705317,0.22197826,-0.246896,0.1966565,0.6336876,0.26738885,0.40756986,0.049194477,-0.26752704,0.28187412,0.054029506,0.09143048,0.005382214,-0.45582086,0.023737554,-0.0024971557,0.04478589,0.49005747,0.115686946,0.20058759,-0.15427086,-0.25666302,-0.01776385,0.3138607,-0.2413671,-1.1708087,0.1960263,0.07094621,0.928292,0.5157298,-0.022437086,0.15710711,0.6550441,-0.16900866,0.0417799,0.45170793,0.23457643,-0.608389,0.61086494,-0.5799716,0.51529473,0.005578088,-0.09500701,0.09182258,0.043517265,0.46289402,0.7759555,-0.17589186,-0.07579684,0.015157102,-0.22822773,0.20884669,-0.36708575,0.19763856,-0.4929857,-0.20074601,0.5792802,0.46132162,0.45833638,-0.09253546,0.008708437,-0.021437477,-0.15962103,0.35293594,0.06710435,0.14878769,-0.107592575,-0.7301674,-0.16067235,0.5856128,-0.19591309,0.0840566,-0.0023438972,-0.3289215,0.28531665,-0.2060405,0.015241095,-0.046595413,-0.82475036,0.14858712,-0.24396488,-0.34172317,0.47461972,-0.109338276,0.28301445,0.28009948,0.004910086,-0.41281524,0.1865276,0.10432314,0.62770563,-0.04016419,-0.2004932,-0.5208643,0.0615863,0.20895854,-0.33338594,0.10827153,-0.034614928,0.08133624,-0.43173236,0.4173197,-0.06970885,-0.36305103,-0.20225546,-0.1434696,0.12335084,0.7094494,-0.09395925,-0.07107345,-0.23564592,-0.19172096,-0.2898768,-0.21376733,-0.14042373,0.14222762,0.2708524,-0.12678018,-0.1616937,-0.031105667,-0.115892984,0.6213398,0.11149181,0.4235289,0.47975513,0.23708834,-0.27927262,-0.0007741622,0.20613411,0.5119666,0.0023726565,-0.1135131,-0.48613718,-0.41332576,-0.34027752,0.5614506,-0.14068247,0.21766078,0.12959789,-0.34883627,0.8160714,-0.051936906,1.0106288,0.06982335,-0.381327,0.26770094,0.6826928,-0.062456913,-0.14917724,-0.6275717,1.0412077,0.48023817,-0.09319741,-0.07399974,-0.1303223,-0.09242435,0.10408329,-0.3403791,-0.13251686,-0.10699083,-0.58040756,-0.1543971,0.20483677,0.26678714,0.1489532,-0.17381987,-0.022544865,0.16237238,0.07440383,0.3572742,-0.4151704,-0.19848537,0.5045767,0.032154977,0.14849196,0.09954219,-0.34046537,0.27224487,-0.43112653,0.14639293,-0.36369988,0.18115386,-0.19556251,-0.37070227,0.30340335,0.06431528,0.3953523,-0.33143035,-0.4862779,-0.2436816,0.33442876,0.19848405,0.1808431,0.4783679,-0.2717629,0.15566148,0.031074833,0.5322277,0.84745824,-0.13123752,-0.045726426,0.1487982,-0.43282494,-0.79460174,0.32511896,-0.36910948,0.290227,-0.07845278,-0.0017323217,-0.4907042,0.24978428,0.1862584,-0.12554142,-0.094841205,-0.7560924,-0.42322785,0.14124645,-0.27481326,-0.17789292,-0.38515943,0.03351814,0.80156404,-0.27419737,-0.3443749,0.076322995,0.20918392,-0.12574497,-0.65469295,-0.073769234,-0.40126732,0.25817078,-0.022725407,-0.2516697,-0.1987551,0.120135084,-0.5185973,0.19996145,0.08826111,-0.38355398,-0.11349627,-0.3788331,0.015067009,0.9469643,-0.2881828,-0.10703581,-0.36828607,-0.49102113,-1.0139692,-0.3408982,0.18248634,0.1478348,0.042630352,-0.68354654,0.08210137,-0.16535392,-0.19723992,0.028632984,-0.4721512,0.26155514,0.09576897,0.39033198,-0.22514309,-0.6627054,0.32188097,0.08465792,-0.11347612,-0.5930975,0.521262,-0.09352287,0.8455184,0.01675388,0.10198307,0.21928863,-0.5345654,-0.15681846,-0.0819158,0.0036873263,-0.67283183,0.26782647,422 -437,0.17450686,-0.3215367,-0.23146237,-0.1093061,-0.26150414,0.26480034,-0.3029692,0.36652955,0.13357067,-0.5760895,-0.25155082,-0.27431324,0.13692135,0.63099337,-0.13202439,-0.6163279,0.06959368,0.10688821,-0.492023,0.44421047,-0.5217449,0.45039812,0.20660591,0.28736213,-0.059265703,0.17875536,0.37440988,-0.1331115,0.07365471,-0.30491823,-0.15333983,0.24343614,-0.5422788,0.31108046,-0.11757109,-0.51060784,0.23636536,-0.5824417,-0.27113977,-0.6858142,0.22607468,-0.8694658,0.6317944,-0.038102753,-0.040527552,0.20519061,0.20277123,0.38079765,-0.07243767,0.12604472,0.11072507,-0.15127836,-0.2631093,-0.066593125,-0.22181252,-0.4969624,-0.58832854,0.07946729,-0.4922426,-0.28351766,-0.13676035,0.15358898,-0.21327087,0.2196655,-0.14418535,0.27232677,-0.36939612,-0.103866674,0.36548916,-0.26523915,0.14583215,-0.5756606,-0.12458937,-0.053820055,0.39461032,-0.2999998,0.017925696,0.13987368,0.3605245,0.6201275,0.1117092,-0.21682313,-0.30472523,-0.17106536,0.031174025,0.7182098,-0.06465888,-0.5097851,-0.23251216,-0.048545156,0.19676927,0.1905925,0.17205824,-0.22649513,-0.103144825,-0.025400281,-0.3235469,0.32692358,0.333901,-0.50993246,-0.5048403,0.25618,0.6762633,0.09746911,0.043194972,0.029585311,0.10287325,-0.5541935,-0.10386997,0.13768753,-0.11610566,0.46469876,-0.14833894,0.41661957,0.64101034,-0.07177256,0.058774106,-0.12532409,-0.20487969,-0.3324189,-0.16416833,-0.18997996,0.22357742,-0.38133842,0.044468444,-0.32236502,0.9429664,0.13663307,-0.5779472,0.38591933,-0.5645444,0.037952032,0.06336967,0.5924922,0.649376,0.28627226,0.1611376,0.49209502,-0.3915686,0.0060060746,-0.3603735,-0.32267937,-0.15274069,0.0009897436,0.103117265,-0.37007594,0.16677652,0.00941429,0.10910934,0.07996808,0.46273014,-0.59502256,-0.015267645,0.12840493,0.88498324,-0.3213567,-0.18887106,0.87957084,0.94258803,0.8296442,0.03384297,1.4037564,0.32208186,-0.14669213,-0.027309602,-0.33157334,-0.51740295,0.19702442,0.52023274,0.13024853,0.32093,0.11049873,-0.04123809,0.6259493,-0.3561242,-0.02768018,-0.14647171,0.06579482,0.100817814,-0.10833268,-0.54677373,-0.15522416,0.0922444,-0.04984365,0.50547594,0.25196424,-0.15849778,0.4568694,0.03523395,1.6113132,-0.14097434,0.236976,0.0135750575,0.2922983,0.22214384,-0.030239698,0.021092827,0.1291293,0.40514305,-0.080983795,-0.66789776,0.12854739,-0.13632941,-0.5031573,-0.32117683,-0.16185501,-0.20705445,0.017460538,-0.41392916,-0.011008016,-0.08646778,-0.1738619,0.42418644,-2.64875,-0.31667137,-0.24736242,0.27032727,-0.33276513,-0.45658556,0.008092955,-0.5189938,0.6201319,0.3739802,0.42978913,-0.5450265,0.55896705,0.50018233,-0.49287412,-0.26734415,-0.67040443,0.021477597,-0.08765496,0.30189925,0.11455909,-0.2831519,-0.05948656,0.14881788,0.576094,-0.084611736,0.07766138,0.17700407,0.46364778,0.15380494,0.5464991,0.018188324,0.6475112,-0.31555787,-0.25302845,0.4051268,-0.2792676,0.34445506,-0.29862112,0.14069577,0.35829896,-0.24554984,-0.8120912,-0.78167075,-0.6683046,0.9347786,-0.08490475,-0.3873101,0.15736888,0.051930554,-0.22100125,-0.06347729,0.48920673,-0.29646578,-0.05573821,-0.75157374,0.08166443,-0.11106078,0.2956678,-0.04832266,-0.059604533,-0.69434303,0.63496196,-0.13354206,0.4046684,0.35694915,0.293505,-0.28847334,-0.30816394,0.018567953,0.96562153,0.38584214,0.124653734,-0.14495994,-0.35406017,-0.25722274,-0.15586363,-0.11091669,0.61572725,0.6110595,0.12607212,0.02878545,0.29755583,0.003954717,0.12280936,-0.14027603,-0.1908083,-0.022011185,0.08363377,0.6453921,0.4323639,-0.18322925,0.43494654,-0.27199706,0.46464723,-0.2520052,-0.46804348,0.5883406,0.6851962,-0.21851103,-0.11735307,0.70064014,0.46439764,-0.17839466,0.28911307,-0.794969,-0.3206084,0.4075219,-0.18665262,-0.46675247,0.13519272,-0.09648828,0.06974346,-0.99014616,0.15689568,-0.32197165,-0.366523,-0.6411319,-0.19133177,-3.9692307,0.14561664,-0.11587562,-0.11979196,-0.08856209,-0.2641801,0.12287271,-0.57938385,-0.4825146,0.27953306,0.025413213,0.513558,-0.0013436835,0.19486694,-0.36404043,-0.18503262,-0.076772414,0.20768584,0.042928156,0.24011335,-0.04800402,-0.3998582,0.27348152,-0.22198136,-0.5895559,0.13234709,-0.7536889,-0.3420598,-0.28625575,-0.5497028,-0.21450898,0.69223934,-0.4241991,0.13433237,-0.27322772,0.13989545,-0.2508285,0.45311883,-0.0023013353,0.1145869,0.16410144,-0.11123622,-0.010159408,-0.34498987,0.43497974,0.11338342,0.14951739,0.3964804,-0.13862668,0.17737392,0.3295452,0.56826895,0.045912843,0.73044294,0.41691118,-0.11041236,0.38430968,-0.24818571,-0.28043488,-0.4073533,-0.36078352,0.07494485,-0.38053554,-0.65638924,-0.25754127,-0.27840582,-0.781931,0.5781104,0.1882409,-0.17267905,-0.15137707,0.25057805,0.39550108,-0.39183745,-0.022345887,0.019015511,-0.04292488,-0.5038108,-0.4709713,-0.5385206,-0.5122346,-0.08538556,0.90791035,-0.06786333,0.040824283,-0.008073858,-0.10828079,-0.023117809,0.2537177,0.26696655,0.11826155,0.41973883,-0.23321724,-0.6359846,0.63507235,-0.23086299,-0.52464724,-0.58670574,0.15896378,0.6364145,-0.6654271,0.5897784,0.44707564,0.07624163,-0.15662548,-0.3632087,-0.14171429,0.1880859,-0.27232844,0.30436006,0.16390316,-0.7221082,0.57993,0.38155314,-0.16516478,-0.7667154,0.47880435,-0.017170131,-0.2900353,0.031047668,0.34857896,0.27192792,0.15887877,-0.25059995,0.013417006,-0.49153313,0.16395353,0.08207368,0.011785588,0.7452058,-0.4087263,-0.0857914,-0.81236523,-0.063515976,-0.4609786,-0.15843986,0.041591186,0.0021164545,0.094152756,0.32746193,-0.0820359,0.46367216,-0.41659683,0.15667917,0.003820679,-0.18635042,0.056373987,0.4079681,0.24916694,-0.35635558,0.56119156,0.03439465,-0.093738794,-0.08918439,0.019297361,0.505665,0.1401669,0.41840822,-0.33651093,-0.16719493,0.32929987,1.0116872,0.06524175,0.35736564,0.123816766,-0.15660265,0.28020713,-0.037036676,0.024980443,-0.003602228,-0.5392687,-0.032324374,-0.10082921,0.04203844,0.56491166,0.22657715,0.48521465,-0.05956555,-0.41817483,0.05376563,0.12055659,0.077733524,-1.0768858,0.110863246,0.17203477,0.8780119,0.2902221,0.029509654,0.12391822,0.5593647,-0.35702276,0.07492687,0.15409632,-0.037673082,-0.36481762,0.6682654,-0.59859246,0.41469225,-0.0947836,-0.052757483,0.0051511205,-0.22157037,0.33767456,0.8724564,-0.15227413,0.088228464,-0.0714064,-0.109226905,0.038117208,-0.3215027,0.16523328,-0.38512024,-0.23310542,0.74227524,0.56027925,0.51024634,-0.19466053,-0.06205738,0.2879345,-0.06978581,-0.0034796128,-0.019233465,0.19850731,0.01115541,-0.5230819,-0.21144918,0.6416216,0.12743755,0.24035752,-0.0273004,-0.46479088,0.33533984,-0.029429352,-0.054209154,-0.062603034,-0.76276875,-0.007595586,-0.3738239,-0.50360173,0.3303886,-0.07721293,0.08148186,0.11309111,-0.0043114848,-0.26121324,0.4323837,0.14364685,0.8604945,0.31717187,-0.05249834,-0.37840584,-0.026006013,0.22141278,-0.34612226,-0.033119135,-0.26269153,0.1579567,-0.7479083,0.391843,-0.013604641,-0.26989213,0.21149406,-0.16362545,0.033225738,0.48278075,-0.052416228,-0.08748401,0.27156106,-0.34476417,-0.19750714,-0.1983585,-0.16187096,0.29977673,0.14006975,0.17619897,-0.017867966,-0.21080852,-0.4266982,0.5471727,0.16856553,0.16444115,0.3818748,0.134218,-0.24132085,0.011260362,-0.04464885,0.4730899,-0.23415148,-0.1515424,-0.22622347,-0.53088665,-0.3259289,0.27087834,-0.039291166,0.2438642,0.009822324,-0.28097695,0.65937096,0.0047761714,1.0027747,0.15218432,-0.49760434,0.122090645,0.4498008,0.027927687,0.032395426,-0.42061177,1.0304672,0.41202635,0.054189008,-0.13354717,-0.3854055,0.043237936,0.20367728,-0.24438055,-0.14784253,-0.21488857,-0.7631267,-0.28183585,0.19997308,0.31887075,0.10352332,-0.05071176,0.14415905,0.2570021,0.09267426,0.52832264,-0.71744496,-0.08856384,0.42508665,0.3542646,-0.05313899,0.03456038,-0.42949706,0.50360614,-0.55399126,0.1260715,-0.5482796,0.1347014,-0.32200438,-0.051934667,0.2100269,0.059792865,0.3034699,-0.30706105,-0.45071214,-0.093070924,0.4173587,0.18907571,0.05381904,0.7594968,-0.13886294,-0.08086334,-0.06592203,0.6927709,1.2125558,-0.5119753,0.051608827,0.45171443,-0.3416086,-0.44437608,0.2627904,-0.2854376,0.03727588,0.082834825,-0.23484854,-0.37902212,0.27195656,0.11495775,0.023380103,0.09293378,-0.352803,-0.09045548,0.34630826,-0.4062038,-0.22433321,-0.25531742,0.35596296,0.82777214,-0.15378727,-0.2768391,0.08138519,0.44192547,-0.37356868,-0.63044745,-0.11060302,-0.22869632,0.41523427,0.14915879,-0.27224967,-0.26709023,0.05256788,-0.3885041,-0.076521985,0.27394503,-0.36499643,0.115002,-0.42165485,-0.015683489,0.8726725,-0.0716542,0.21985865,-0.8523143,-0.34418252,-0.88355356,-0.43014625,0.5655098,0.2379932,-0.11682507,-0.39016205,0.015400307,-0.11759029,-0.16658977,0.039312597,-0.34463933,0.30102667,0.20489776,0.4953905,-0.1484975,-0.6589981,-0.016832232,0.040842097,-0.2164872,-0.39178547,0.47347063,0.06602046,0.8683906,0.04235202,-0.029261377,0.28321356,-0.47815588,0.115951546,-0.3166781,-0.09104635,-1.0542707,0.0860079,423 -438,0.63436127,-0.1755228,-0.61630726,-0.13695338,-0.31202766,-0.110784926,-0.15061116,0.66157466,0.3209379,-0.36279625,-0.2822427,0.056740057,-0.10099316,0.28743002,-0.2286062,-0.47472933,-0.06444293,0.20787796,-0.44348237,0.6259974,-0.3619863,0.18560563,-0.03456207,0.5696914,0.3296148,0.24152054,-0.11523726,0.013747581,0.022528056,-0.30749288,-0.06541533,0.20785879,-0.5247859,0.26004437,-0.29063788,-0.36228338,-0.12877552,-0.54814273,-0.5614254,-0.7735795,0.16553552,-0.7259819,0.5872865,0.056000404,-0.36412674,-0.032665737,-0.049240913,0.30754372,-0.31501445,-0.029066173,0.0063680154,0.092453666,-0.08455753,-0.16481256,-0.061632693,-0.21508637,-0.55139506,-0.11252514,-0.27784505,0.15839458,-0.2021469,0.20993216,-0.14066336,-0.032294605,-0.1157239,0.72281665,-0.45807192,0.18120928,0.0530485,0.028821,0.26578456,-0.5935115,-0.23500511,-0.19252996,0.15966387,-0.17670575,-0.416087,0.21940483,0.102706656,0.3308459,-0.10075863,-0.085386135,-0.27044436,-0.019872086,-0.00087690353,0.41337866,-0.26481313,-0.61145085,-0.2511931,-0.035985835,0.33358595,0.2745807,0.09419004,-0.35749206,-0.03872076,-0.22100623,-0.2279457,0.44454917,0.5743796,-0.23665275,0.03143953,0.28104925,0.42799434,0.3686151,-0.17577298,-0.021455662,0.016854847,-0.655021,-0.16835071,-0.063169524,-0.16146655,0.442015,-0.020913819,0.1576301,0.46447882,0.022874882,-0.2182579,0.27459806,0.15666585,-0.01833473,-0.34592596,-0.47295782,0.35138136,-0.49974412,0.2482539,-0.08227015,0.6535115,0.12898639,-0.8523919,0.14132546,-0.49199036,0.07007295,-0.11742789,0.40647432,0.7215504,0.56935453,0.18733826,0.6017745,-0.33655867,0.1056134,-0.017607663,-0.31972772,-0.029515719,-0.043854367,-0.28857806,-0.49518687,-0.04271675,-0.121556155,-0.18259227,0.15383497,0.40943772,-0.5163776,-0.2648416,0.10385474,0.7110124,-0.31557122,-0.029567106,0.7978953,1.1983621,1.082084,0.076934196,1.1038462,0.08074614,-0.24415085,0.15649326,-0.14443932,-0.73931086,0.38192096,0.3361455,-0.40233845,0.39512986,-0.011280651,-0.0337875,0.31258565,-0.37766668,-0.18588468,-0.072400086,0.19913563,0.04185152,0.028196242,-0.58850735,-0.3279216,-0.07925109,0.118930325,-0.031259477,0.24452206,-0.23048033,0.4527429,0.172555,1.3007624,-0.035175834,0.0008074785,0.17648885,0.48574534,0.29302746,-0.18352115,-0.19931439,0.29937434,0.39476633,0.056722987,-0.5287546,0.04283396,-0.21810542,-0.3613736,-0.033754766,-0.27873677,-0.13952886,-0.106193915,-0.47791976,-0.20441844,-0.032931842,-0.20754528,0.46084756,-2.7126968,-0.049163792,-0.13218336,0.18407226,-0.20724156,-0.39083338,-0.124125816,-0.3892457,0.40092844,0.2271644,0.61618537,-0.6107799,0.34997422,0.55870515,-0.5864725,0.056553874,-0.57563305,-0.19647874,0.13940477,0.35882112,0.00053956464,0.09702446,0.046380486,0.2506862,0.525581,0.07543576,0.19760169,0.3740897,0.29029018,0.06003912,0.5662776,-0.054706216,0.4529794,-0.36895055,-0.1801268,0.23235513,-0.38118345,0.18078259,-0.119050786,0.094334744,0.63489324,-0.68884426,-0.8741881,-0.61478424,-0.036570378,1.2182579,-0.26930478,-0.25693187,0.22302654,-0.5380831,-0.26591572,0.049504016,0.4107198,-0.20757388,-0.039369863,-0.80127144,-0.20967259,-0.025966397,0.28302065,-0.051016536,-0.050735623,-0.3762212,0.6179264,0.04205048,0.55786747,0.38197055,0.062542446,-0.291984,-0.5761835,0.07140344,0.75732505,0.40617082,0.2648421,-0.30451888,-0.052055273,-0.39719483,0.20452182,0.10460179,0.72859234,0.65592927,-0.15648553,0.057121404,0.25433022,0.1767486,0.10651392,-0.19931455,-0.24049668,-0.28828558,0.08052977,0.6433231,0.7021541,-0.082343556,0.25721404,0.009844899,0.4208828,-0.14152355,-0.42713237,0.41605425,1.0726004,-0.12775534,-0.4650806,0.6774177,0.6066043,-0.15412576,0.4334535,-0.4852216,-0.24707203,0.27177387,-0.06223883,-0.38562134,0.27978355,-0.29251167,0.22415796,-0.8327598,0.19327047,-0.47771695,-0.63000154,-0.6331008,0.004480596,-2.7177727,0.32194063,-0.100119285,-0.23440015,-0.120582126,-0.2016449,0.22732806,-0.5165502,-0.7410296,0.20498304,0.056424435,0.66456497,-0.15186153,0.04980923,-0.05833157,-0.3504855,-0.30270982,0.21367595,0.3889645,0.32833046,0.07241466,-0.5211568,-0.29872963,-0.113840096,-0.39991996,-0.00025872674,-0.7210652,-0.33951154,0.01485981,-0.69187653,-0.17639923,0.5015412,-0.24100903,0.03769624,-0.04013914,0.07962065,-0.06280477,0.18233855,-0.116498984,0.2164621,-0.0434807,-0.11208952,0.10338408,-0.1163725,0.183894,0.100217715,0.24360272,-0.053383876,-0.23642926,0.17668514,0.51952803,0.8633243,-0.117238395,0.93654007,0.47509387,-0.114097916,0.2590469,-0.21039137,-0.3947629,-0.5237261,-0.15318504,-0.0361228,-0.40830275,-0.21532081,0.03221074,-0.42205328,-0.82800376,0.6015983,-0.04944551,0.070246294,0.030915039,0.080601655,0.6264333,-0.13417788,0.03029327,-0.06965578,-0.11579711,-0.5255558,-0.28698045,-0.63493824,-0.28410107,-0.12142681,1.250857,-0.26933554,0.10197952,0.083103836,-0.32839075,0.10075688,0.30067566,-0.12938455,0.119429015,0.3615783,-0.07394147,-0.6165782,0.27199104,-0.09524324,-0.2521247,-0.50286543,0.29928213,0.6815314,-0.6123695,0.63502795,0.28056353,-0.047875278,-0.34308004,-0.59208155,-0.2446319,0.08848763,-0.18080674,0.60041434,0.40083867,-0.6909718,0.34220117,0.37471056,-0.25792366,-0.7364909,0.68399274,0.035487644,-0.29390875,-0.1047488,0.45500994,0.013516622,-0.07547135,-0.034347627,0.24364607,-0.1205814,0.30897194,-0.0061986274,-0.17288415,-0.119330205,-0.27890903,0.036484446,-0.82607746,0.04028062,-0.48833588,-0.35075393,0.44632095,-0.013452434,0.119615674,-0.04082489,0.11675453,0.3973896,-0.2442921,0.020637367,-0.31080046,-0.3381803,0.5207762,0.5353474,0.54908544,-0.20496342,0.51562476,0.06679062,-0.006016714,-0.04719798,0.19562839,0.35235718,-0.18995993,0.4386606,-0.008116952,-0.20507877,0.25629407,0.53738904,0.30896482,0.2833642,0.011987345,0.115085684,0.1997569,0.0889522,0.3305977,-0.021777919,-0.5941447,0.016723577,-0.30260405,0.11282454,0.47605518,0.07105429,0.09206401,-0.15332188,-0.36041954,0.0043454575,0.12019849,0.18994963,-1.5496639,0.39218372,0.06346161,0.78901994,0.5998797,0.07930546,-0.059739444,0.67366487,-0.081045814,0.09964997,0.48067173,0.17221625,-0.3902233,0.35478958,-0.4644373,0.5413805,0.068156585,0.047925774,0.09621467,-0.17644283,0.5124199,0.8414699,-0.07342571,0.06747253,0.12935919,-0.32839957,-0.010149568,-0.36121854,0.018446812,-0.5542001,-0.29856706,0.73125154,0.5621714,0.33402762,-0.21557076,-0.048037004,0.15529595,-0.14780955,0.14294098,0.091297254,-0.14900632,-0.11700606,-0.6130184,-0.0044025397,0.52215254,-0.1239833,-0.01417418,0.058588736,0.016417775,0.20303817,-0.009833,0.012796538,-0.1199648,-0.72294384,-0.12845123,-0.42574042,-0.25939566,0.34375006,-0.21278928,0.09223969,0.17806177,0.074927926,-0.28586164,0.40383333,0.014933271,0.7679849,0.028393855,-0.10622658,-0.121797785,0.21018216,0.15753198,-0.090315886,-0.18433753,-0.45245442,-0.016463665,-0.6483608,0.3200233,0.112038136,-0.31786898,0.027631888,-0.011748819,0.118401416,0.39888865,-0.16343173,-0.29496628,-0.16261151,0.05992908,-0.23241642,-0.26871797,-0.22447598,0.17483532,0.23825786,0.05447381,-0.02527828,-0.07012128,-0.0490581,0.49119917,0.0030835846,0.5865713,0.36672983,0.21195997,-0.3417488,-0.083572224,0.22341289,0.6340267,-0.0032074836,-0.1309181,-0.29000887,-0.34859723,-0.38588953,0.16546132,-0.12470198,0.455925,0.12630497,-0.13923158,0.6824943,-0.04474252,0.99133146,-0.20034842,-0.4427603,0.013187612,0.56663287,-0.034764986,-0.11675096,-0.28144246,1.0470915,0.48680282,-0.23199794,-0.15517308,-0.41633326,0.11686436,-0.121494934,-0.26409474,-0.21280222,-0.07531034,-0.4872704,-0.06695612,0.14513159,0.26362076,0.37847498,-0.05518164,0.051176786,0.31736472,0.008960651,0.26145306,-0.38170737,0.031561118,0.2039415,0.26673967,0.06749726,0.108465485,-0.54469097,0.22831175,-0.4758629,0.12973489,-0.3459433,0.19588806,-0.29588,-0.4726484,0.18706474,-0.07584627,0.33276314,-0.4215496,-0.25922257,-0.3669437,0.62948895,0.10522051,0.08446802,0.5543441,-0.16052951,0.12132098,0.049150746,0.45545465,0.78094643,-0.26716554,-0.17918672,0.28918117,-0.34230515,-0.37400454,0.057109497,-0.43992114,0.3541408,0.13044259,-0.0911988,-0.6482123,0.27085716,0.031389546,0.13346761,0.03735608,-0.87511647,-0.057624307,0.31340376,-0.15931962,-0.10485532,-0.38151282,0.081250615,0.4470389,-0.21306147,-0.42599055,0.02875503,-0.0058625424,-0.06654795,-0.56705064,0.059241295,-0.55439216,0.23888218,0.120214224,-0.35968113,-0.2916382,-0.091204986,-0.41482466,0.14262705,0.106195256,-0.2859438,0.13114585,-0.3785573,-0.06624163,0.9404564,-0.2773979,0.22023287,-0.36059457,-0.48290876,-0.7676535,-0.25687316,0.4857646,0.13445185,-0.007162075,-0.8844143,-0.004467883,-0.12256008,-0.23708224,-0.07176117,-0.24080944,0.47349724,0.13230495,0.50639784,-0.020158023,-0.8813469,0.45900744,0.02465352,-0.2630545,-0.51735103,0.49345464,0.067326136,0.8631467,0.059736557,0.17244835,0.2587282,-0.6283795,-0.1388463,-0.17092372,-0.048206985,-0.6065706,0.15696101,425 -439,0.51366365,-0.34278736,-0.2526229,-0.110519156,-0.12799208,0.15645483,-0.020287257,0.45809975,0.18976621,-0.5122078,-0.1987977,-0.092914365,0.08531503,0.16584037,-0.2689094,-0.56345886,-0.089719094,0.05284924,-0.2677122,0.6203071,-0.48295972,0.25631312,0.025560172,0.3023181,0.12103493,0.20365277,0.19177864,-0.112294175,-0.29653797,-0.12439269,-0.1819615,0.44313684,-0.44917122,0.1260597,-0.15278356,-0.35324517,-0.03717763,-0.5475311,-0.42909673,-0.6446252,0.3455798,-0.872808,0.43184668,0.08808172,-0.21182823,0.31136182,0.02745332,0.09802798,-0.17989671,-0.035636242,0.09025916,-0.0742992,0.047301583,-0.21808818,-0.12800366,-0.29300356,-0.6615239,0.21588878,-0.41469154,-0.23899187,-0.12566002,0.18408616,-0.23362698,-0.15266256,-0.15749338,0.67451096,-0.39097002,-0.089982286,0.14071995,-0.08110307,0.20331396,-0.6096167,-0.24347152,-0.03342402,0.07832109,-0.12279577,-0.2157494,0.16835043,0.3888496,0.5743028,0.0035493714,-0.20548984,-0.4645976,0.07905858,0.13308951,0.47373837,-0.21134843,-0.6846186,-0.1489114,0.051315915,0.026976313,0.14725873,0.17249636,-0.26407745,-0.017533425,0.1279818,-0.35375023,0.33233014,0.6159907,-0.50006056,-0.3908177,0.32003906,0.50685674,-0.024630632,-0.085585065,-0.07889397,0.041468024,-0.50612295,-0.11152721,0.26687112,-0.34084964,0.6309697,-0.1743487,0.21371739,0.55665696,-0.14106613,0.14696975,0.097446375,0.05186177,-0.0854429,-0.3739201,-0.14660656,0.16121556,-0.37295356,0.002829654,-0.30847153,0.9243908,0.14247808,-0.83149606,0.41339806,-0.43676642,0.176182,-0.09206134,0.46704397,0.6105265,0.30185032,0.36585554,0.71255463,-0.5914475,-0.027210891,-0.033440035,-0.26280984,-0.08584539,-0.1875305,0.028176626,-0.44275147,-0.057222784,0.10135579,0.08260291,-0.008589902,0.41550726,-0.63394654,-0.11687446,0.13598858,0.8539376,-0.24987794,-0.12754059,0.81896657,1.0301888,1.01517,0.08115011,1.2140082,0.28957638,-0.27414733,0.36500448,-0.5251852,-0.58444065,0.240145,0.38352495,-0.014208623,0.20272446,-0.050245803,-0.059216913,0.3984757,-0.42207235,0.1512483,-0.30501047,0.13464117,0.24248055,0.037863042,-0.44545883,-0.30603164,-0.029876342,0.029634979,0.14600317,0.23448586,-0.29609564,0.21168362,-0.006403297,1.5437254,-0.08924435,0.097873375,0.020392636,0.44479233,0.23897502,0.023539374,0.010919852,0.2478917,0.38500157,0.11507776,-0.60662323,0.07692267,-0.29396006,-0.55971324,-0.07470103,-0.24243638,-0.01566923,0.039272524,-0.4769078,-0.13679121,-0.13432355,-0.39577106,0.4658072,-2.8351707,-0.22481643,-0.06648358,0.34084153,-0.34815782,-0.35683864,-0.09120687,-0.5170471,0.46926895,0.4439222,0.3969976,-0.72276586,0.32086772,0.38383222,-0.4047831,-0.054716174,-0.73872524,-0.042239822,-0.14763677,0.40623084,0.20192322,-0.14644429,0.05292332,-0.09299635,0.61428106,0.021788942,0.10909099,0.21539696,0.3648441,-0.019420488,0.38240665,0.0034042087,0.38949612,-0.2742503,-0.15226956,0.42925352,-0.5005532,0.2001672,-0.023492511,0.095274806,0.4168586,-0.55749446,-0.7676878,-0.6837124,-0.36528158,1.1291236,-0.09592999,-0.483187,0.21284994,-0.20782045,-0.21485297,-0.14276025,0.5330824,-0.041712668,-0.11260373,-0.7863582,0.13353391,-0.0501186,0.06407924,-0.039419223,0.08291594,-0.40411657,0.7120476,-0.07428861,0.43200037,0.34466144,0.30156612,-0.40492877,-0.5073586,-0.04897689,1.1579325,0.2997114,0.1904255,-0.15422414,-0.131484,-0.27982637,-0.090995386,0.053954422,0.60668504,0.7769357,0.0624473,0.027517065,0.40076905,0.020349452,0.07589626,-0.19437753,-0.30933002,-0.16746283,0.0052762455,0.60009474,0.58404195,-0.24929254,0.45075664,-0.14821155,0.21455275,-0.29604387,-0.38808012,0.5656696,0.9042373,-0.13363412,-0.2593284,0.6364407,0.53353775,-0.37898856,0.36613682,-0.5604878,-0.34923676,0.39795583,-0.32020378,-0.48123953,0.20235303,-0.2863932,0.064644374,-0.74794143,0.3970892,-0.1011933,-0.39208105,-0.6801714,-0.16300039,-3.8097458,0.19553478,-0.26557574,-0.09870559,-0.017683323,-0.14269756,0.12211809,-0.58712375,-0.42305812,0.17404087,0.0922596,0.48748192,-0.08958299,0.24258125,-0.31226653,-0.19897996,-0.21183035,0.15799603,0.013194678,0.29134065,0.0001839442,-0.31778383,0.1881802,-0.15255284,-0.38226956,0.12219964,-0.5710495,-0.6183491,-0.12566267,-0.53662974,-0.4649847,0.64808,-0.41941592,0.06481037,-0.2392919,0.039127864,-0.106843926,0.49725088,0.11523632,0.12273019,0.01917175,-0.1365487,0.013294271,-0.32583585,0.38175708,0.03281013,0.17683113,0.5521,-0.1501743,0.20367506,0.5057883,0.55431193,-0.013738968,0.92890614,0.55517143,-0.09350366,0.32005218,-0.27461046,-0.12957011,-0.64005023,-0.28643754,0.04113962,-0.46067485,-0.48736662,-0.03221649,-0.40480706,-0.7994491,0.44731817,-0.06341529,0.26011625,0.019770814,0.3881753,0.60348505,-0.133494,0.088392474,-0.04459027,-0.11659279,-0.45901734,-0.30779156,-0.6635273,-0.4323501,0.15120329,0.74421823,-0.047414005,-0.14058976,0.0700054,-0.11753696,-0.2171575,0.054449294,0.020907333,0.16686545,0.33717924,-0.094296746,-0.6568188,0.4348519,-0.045824084,-0.21388586,-0.4556488,0.15209453,0.63088,-0.6482797,0.66412,0.38306236,0.16673458,-0.085722804,-0.44210666,-0.18992543,-0.0141561795,-0.24696036,0.45075276,0.21545961,-0.84534645,0.48607874,0.4345546,-0.11782583,-0.8104087,0.47551972,-0.048169114,-0.20774145,-0.120655365,0.42548147,0.272645,0.09231542,0.0021311832,0.16841769,-0.63370705,0.16931374,0.18237914,0.0073261773,0.504053,-0.19865441,-0.20916311,-0.714119,-0.09934343,-0.6110584,-0.26591617,0.24402383,0.14359857,0.10478575,0.28810802,-0.006135055,0.45707288,-0.22351758,0.076969914,0.1428623,-0.08481825,0.23288883,0.38410214,0.42626414,-0.36672786,0.45805565,-0.030090949,0.020876423,-0.0428757,0.010727601,0.37678313,0.22239807,0.47044042,0.0053303284,-0.26067096,0.4480678,0.81106776,0.18830717,0.4905203,0.15135813,-0.21644142,0.35317725,0.05373799,0.15864551,-0.103296876,-0.48655206,-0.0083118845,-0.11567237,0.19508316,0.31891146,0.07724837,0.34088883,-0.14453351,-0.20583235,0.046196546,0.2897916,-0.06547816,-1.010207,0.17776458,0.086192675,0.8847467,0.49666172,-0.09369966,-0.046714455,0.57894117,-0.263238,0.17042239,0.38875988,-0.08878323,-0.5690858,0.5871439,-0.6403182,0.48717612,-0.25659028,0.079306565,-0.14271957,0.01387919,0.28038287,0.64139706,-0.14617357,0.03782358,-0.12217043,-0.31909758,0.2075402,-0.5071484,0.33916304,-0.4691225,-0.21634956,0.7173742,0.5500659,0.3355421,-0.16120042,-0.039952457,0.07001377,-0.07757097,0.19202545,0.053769328,0.070527576,-0.05852071,-0.8500909,-0.2868762,0.50626093,-0.015239452,0.19533762,-0.07422041,-0.16640179,0.2292802,-0.30361986,-0.22544847,-0.029771173,-0.5956873,-0.044003338,-0.12847964,-0.61049515,0.41571158,-0.063595906,0.20505439,0.17660587,0.058972068,-0.44652,0.099481404,0.22590597,0.65933424,-0.0476768,-0.05877779,-0.5189723,0.051836375,0.18191688,-0.2351722,-0.06432404,-0.24476917,0.16803011,-0.6221774,0.46916315,-0.0038175497,-0.40749738,-0.0035430107,-0.08490718,0.046504386,0.6595899,-0.16836119,-0.1548126,-0.11243933,-0.21506444,-0.313617,-0.037535507,-0.050663147,0.32140714,0.14212729,-0.011747931,-0.018801374,-0.3012379,-0.18321885,0.47212616,0.16700228,0.2934184,0.39351606,0.14952575,-0.30921248,-0.09818753,0.16874568,0.5249191,0.0022406876,-0.184617,-0.23551463,-0.47462717,-0.38003296,0.08460719,-0.030939434,0.34958002,0.018040879,-0.3730965,0.6989598,-0.057491083,1.3583337,0.21438251,-0.2781177,-0.08567464,0.49325964,0.02945217,0.0627723,-0.44730368,0.98495436,0.51756126,-0.054951105,-0.07197944,-0.35705322,0.04312549,0.25611955,-0.106980965,-0.10891839,-0.03405843,-0.7782712,-0.28634453,0.18457265,0.23457615,0.11250603,0.020727083,0.024890738,0.1812649,-0.0030148583,0.34249067,-0.46362028,-0.1313426,0.28262442,0.40880257,-0.019403415,0.14516446,-0.33472252,0.3091755,-0.48352018,0.12208253,-0.2816357,0.09105679,-0.19083138,-0.17816785,0.30856448,0.06631242,0.4604828,-0.23436478,-0.5722515,-0.23147273,0.5184434,0.090342335,0.098155834,0.49512672,-0.22475357,0.004687735,0.14038768,0.6112474,1.4091034,-0.09800776,-0.058605663,0.23809217,-0.32433876,-0.8367391,0.44331786,-0.22863555,0.20034036,0.051122587,-0.20920454,-0.46342307,0.2969819,0.3005361,0.03455949,0.16826083,-0.5008758,-0.29220995,0.2466698,-0.30828813,-0.12819245,-0.24380681,0.16977215,0.7044589,-0.38415337,-0.24442632,-0.03748711,0.39673838,-0.27590173,-0.5772295,-0.046415504,-0.4991994,0.29505596,0.15200599,-0.33710593,-0.041229844,-0.008652432,-0.44234136,0.04139169,0.23644029,-0.37118545,0.06536516,-0.15682082,-0.13812374,0.9066893,-0.0536162,0.2679722,-0.66551155,-0.48915675,-0.95514864,-0.32573754,0.39269066,-0.01581292,0.051010076,-0.5910567,-0.007945738,0.0013848458,-0.11070793,-0.094374895,-0.5625068,0.5476073,0.11955606,0.47514147,-0.10723179,-0.5683576,-0.031424053,0.20349933,-0.05953788,-0.5288746,0.51505,0.023987344,0.7858524,-0.00067864306,0.09231899,0.37576288,-0.54425555,-0.11519419,-0.27467713,-0.2931628,-0.6841596,0.09551083,427 -440,0.554978,-0.2876211,-0.6992448,-0.30416185,-0.30579787,-0.14310232,-0.051252764,0.57669437,0.21269357,-0.57459915,-0.21035492,-0.30995908,-0.026344487,0.4523813,-0.23443238,-0.7675276,-0.026280528,0.13235453,-0.52363044,0.5370087,-0.19157502,0.45390216,0.07483334,0.46724805,0.2751817,0.23399459,0.20563987,-0.0004849157,0.03508641,-0.2296096,-0.021609485,0.18023355,-0.72455263,0.22741233,-0.18825828,-0.47732875,0.05946344,-0.39893582,-0.17513934,-0.84560126,0.2280015,-0.9299125,0.5332263,0.019223157,-0.3547056,-0.03603203,0.1871297,0.35517687,-0.19788016,0.048503764,0.13596086,-0.004130602,-0.03715289,-0.009731932,-0.1321555,-0.4055592,-0.6336368,-0.0009800483,-0.3909072,-0.15160052,-0.22629046,0.1806655,-0.4506183,0.09563075,-0.03545704,0.5423879,-0.41389707,-0.18296258,0.34572443,-0.33397555,0.43712166,-0.5233111,-0.13723803,-0.20327474,0.13190225,-0.28687695,-0.18686928,0.47883466,0.25646925,0.5782803,0.06678315,-0.3387491,-0.3300763,0.032249454,0.12923373,0.36489272,-0.105277434,-0.38178807,-0.0796113,-0.11130444,0.27398533,0.25364912,0.3628311,-0.32783017,-0.11103965,-0.030572537,-0.17692293,0.15087639,0.5640964,-0.26168463,-0.15571538,0.20978378,0.52443814,0.14509806,0.002805812,0.24297889,0.04078201,-0.4558356,-0.26654878,-0.00039402928,-0.20562431,0.59823877,-0.05937932,0.29390964,0.68830293,-0.17093626,0.061962068,0.017069574,0.036896355,-0.21088552,-0.31364962,-0.44075066,0.5016075,-0.5113627,0.1504778,-0.3511066,0.8508703,0.15345071,-0.8012309,0.2529651,-0.5098964,0.08698373,-0.24181738,0.47872597,0.64274585,0.59228843,0.16671406,0.76687855,-0.5353905,-0.008000876,-0.0483256,-0.38380337,0.13316391,-0.20840335,-0.10020293,-0.39091828,-0.056763273,-0.0017551908,-0.12619671,0.0812286,0.30127534,-0.52413833,-0.13333881,0.058276992,0.84465724,-0.28558728,-0.016840747,0.7171079,0.9150711,1.056878,0.0004796737,1.1171349,0.16857578,-0.2503667,0.2332698,0.04147276,-0.81677675,0.33851737,0.42889038,-0.12107414,0.3484246,-0.08406405,0.030179905,0.55956763,-0.4578835,0.11524254,-0.17011191,0.22430389,-0.13768415,-0.22894947,-0.5706602,-0.2962513,0.06262701,0.0131383585,-0.1496021,0.33966866,-0.10289966,0.5430094,0.13364847,1.7241004,-0.03307811,0.089334235,0.06714385,0.46740177,0.25294465,-0.18245813,-0.10590859,-0.0359898,0.3025561,0.17531319,-0.5380698,0.10102116,-0.25027663,-0.60905266,-0.13929759,-0.4083925,0.039464083,-0.29539487,-0.56072515,-0.11419628,-0.09958006,-0.2760911,0.27748576,-2.3165023,-0.08590074,-0.20927441,0.4023705,-0.32706413,-0.28557086,0.00479057,-0.6088214,0.4473238,0.39808813,0.5453509,-0.68365467,0.4282832,0.5349702,-0.4742289,-0.048186813,-0.6301834,-0.124075934,0.0018465945,0.14875767,0.14463331,-0.18387116,0.052697264,0.25096747,0.47121528,-0.09944887,0.029924218,0.3005131,0.2860622,0.0368695,0.5896225,-0.11339973,0.5615647,-0.39906338,-0.15755312,0.42165932,-0.42981106,-0.0057389056,0.030618817,0.11621483,0.3658029,-0.5540606,-0.93762577,-0.75796455,-0.37179485,1.1527689,-0.2024122,-0.46919647,0.38144973,-0.025190694,-0.07016046,-0.06417266,0.5010657,-0.19837852,0.12337331,-0.8427374,0.0070581394,-0.22655511,0.26195383,-0.013687889,-0.05000371,-0.5172435,0.5011677,-0.047598932,0.57857805,0.5132402,0.25366133,-0.40714058,-0.6628813,0.1525042,0.9984948,0.39230442,0.12770998,-0.2073966,-0.11439557,-0.61699057,-0.0053625107,0.14156055,0.39947703,1.0985858,-0.10988621,0.1403745,0.25781414,0.08900191,0.059109736,-0.0874152,-0.44589403,-0.15839098,0.16869657,0.6041528,0.7034256,-0.05461661,0.27698946,-0.13606976,0.59340906,-0.20165937,-0.5831191,0.58526576,0.98923475,-0.17685437,-0.24528459,0.6699294,0.36731324,-0.2687349,0.62535614,-0.78564394,-0.4515598,0.48818588,-0.13992251,-0.51008576,0.18069792,-0.36769125,0.29828128,-1.0435086,0.38088745,-0.42883188,-0.21783893,-0.62407845,-0.13491312,-3.1879308,0.23944418,-0.14409105,-0.17129956,-0.07650423,-0.16088045,0.32560307,-0.7810317,-0.7700593,0.1332667,0.15267207,0.78635234,-0.0058022058,0.062283732,-0.30931643,-0.2908551,-0.20844293,0.099453375,0.2651946,0.2190782,0.24178384,-0.643935,-0.22417913,-0.18852463,-0.5683134,0.118659206,-0.52564585,-0.6733286,-0.22539333,-0.68264925,-0.3506414,0.6976738,-0.09555693,0.038516648,-0.021444967,-0.12949081,-0.119747065,0.23087265,0.0059496677,0.16464202,-0.010701115,-0.019559784,-0.06364714,-0.28866133,0.114186086,0.11922221,0.2304001,0.11554611,-0.3201346,0.2415341,0.758215,0.6956531,-0.21734868,0.6923433,0.5145031,0.006752372,0.43672252,-0.29213545,-0.39268127,-0.66876996,-0.18878281,-0.06893408,-0.45066068,-0.26427922,0.14472485,-0.35534698,-0.8569089,0.79406357,0.0017373307,0.15104966,-0.002064575,-0.038449235,0.32465097,-0.15477514,-0.2623639,-0.04517717,-0.07337255,-0.5237189,-0.30450282,-0.91247004,-0.61004436,-0.016651912,1.2759372,-0.12777512,0.028077511,0.15528563,0.024164122,0.27035502,0.107914194,-0.032146696,0.13051699,0.37788296,0.0110302055,-0.70411146,0.59787375,-0.0018198745,-0.06922644,-0.43902764,0.20551352,0.51344854,-0.65751475,0.24291642,0.31904012,-0.058403574,-0.06279372,-0.5937995,-0.14026105,-0.0541536,-0.15402956,0.51452035,0.21718237,-0.72177607,0.33971164,0.38318238,-0.24816836,-0.7655012,0.4492481,-0.05782487,-0.2814494,-0.07652478,0.2870929,0.030775595,0.054286234,-0.22418694,0.18689695,-0.35297483,0.20165393,0.41410422,-0.09663046,0.5522839,-0.21162947,0.064119406,-0.8338168,0.11968309,-0.55578554,-0.31415892,0.21552123,-0.105762616,-0.13144594,0.2753511,0.14992951,0.38295487,-0.20596603,0.052951314,-0.074456796,-0.279197,0.4767255,0.49012676,0.54252994,-0.51757616,0.58977944,0.03237227,-0.083056286,-0.07375594,0.049477916,0.5255662,0.08419679,0.29666874,0.02332156,-0.1386402,0.3470549,0.6602789,0.15396738,0.45755535,0.0068124705,-0.10391651,0.07315525,0.24362536,0.16842754,0.12198845,-0.5308201,0.05682366,-0.14729674,0.044838924,0.6369466,0.15091369,0.37884673,-0.07394797,-0.25512728,0.054276995,0.14012972,-0.31733721,-1.4837695,0.45118597,0.18415701,0.860237,0.6392355,0.14380002,0.05595668,0.52240896,-0.1565188,0.18627928,0.22855751,-0.14174715,-0.53479826,0.7980841,-0.6110421,0.42789808,0.17416371,0.07110773,-0.01056792,-0.02367711,0.49855575,0.7008199,-0.0021380612,0.2770848,-0.042226326,-0.16304262,0.20723298,-0.45302382,-0.124933235,-0.39119262,-0.240411,0.71959496,0.4420605,0.30091554,-0.16046606,-0.02762559,0.107335515,-0.22023785,0.24639463,-0.13650557,0.11622204,0.02501091,-0.4861775,-0.24218094,0.6248564,0.015459814,0.17239495,-0.11704842,-0.28821912,0.20873106,-0.054963384,0.09670215,-0.0053127473,-0.8537465,-0.02183706,-0.638363,-0.08722212,0.34537268,-0.22429173,0.12070114,0.20202589,0.081060715,-0.3368695,0.3601728,0.17334248,0.68467283,-0.051591218,-0.28669235,-0.32575372,0.11441798,0.1850435,-0.34498554,-0.082224905,-0.2498569,-0.02269732,-0.47535166,0.30503258,0.082329,-0.22462396,0.20912118,-0.15140884,-0.023684442,0.43248802,-0.19468403,-0.071946755,0.096982025,0.04221197,-0.21840255,-0.277721,-0.22467057,0.22862364,0.053383414,0.07961892,-0.0023846093,-0.029759841,0.14221181,0.5454701,-0.060315188,0.34322938,0.4606347,-0.08810481,-0.642163,0.0425568,0.24382018,0.4680594,-0.07190818,-0.057635177,-0.4632502,-0.33311257,-0.24689615,0.083279036,-0.2541311,0.39321235,0.042960458,-0.33510646,0.8182478,0.256198,1.25313,-0.11800779,-0.50186867,0.06287778,0.40010306,-0.019512352,-0.19079758,-0.35833025,1.0661128,0.5798572,-0.3422231,-0.3218561,-0.4029869,-0.18620834,0.08309824,-0.28093067,-0.25492945,-0.17824122,-0.74932575,-0.3816697,0.2615684,0.35002324,0.17390393,-0.15138374,0.101602614,0.22040297,0.06065783,0.33543035,-0.50776917,-0.075732045,0.12414087,0.21540008,0.057482485,0.13067997,-0.5098517,0.4153533,-0.6101491,0.14310098,-0.26434824,0.20569392,-0.061518915,-0.42573997,0.22491257,0.022673564,0.27626893,-0.37012705,-0.3839372,-0.22440471,0.5547997,0.08168525,0.25564185,0.7715491,-0.3723479,0.1682341,0.0075344318,0.5786673,1.0506752,-0.1512043,-0.02306199,0.40523916,-0.4211629,-0.6348556,0.2273331,-0.23835008,0.13711728,-0.15907721,-0.4054185,-0.63424605,0.1534792,0.24195062,-0.12991521,0.24971573,-0.6124965,-0.20213284,0.3359297,-0.35751915,-0.36630282,-0.48110482,0.03387509,0.42765373,-0.24368058,-0.30935344,0.231446,0.17296967,-0.053970624,-0.5320739,-0.23909776,-0.2564467,0.2812254,0.162097,-0.5768861,-0.038003888,0.09142796,-0.3856566,0.18953209,0.3228093,-0.25060046,0.11296922,-0.35175657,-0.029988868,1.0418651,-0.0039693033,0.0020953822,-0.5709253,-0.46460894,-0.9688896,-0.40068898,0.5709581,0.23559071,-0.026846869,-0.71991485,-0.067585096,-0.30190244,-0.03201591,-0.06367482,-0.09328932,0.3534624,0.16508438,0.6372079,-0.05355387,-0.77089036,0.3051956,0.28220218,-0.14418118,-0.47093382,0.5512167,-0.026698688,0.81995124,0.14275233,0.09955255,0.41106907,-0.5917943,0.022206562,-0.22732256,-0.2257575,-0.47862187,-0.020139256,429 -441,0.43284628,-0.6280102,-0.4661105,-0.17515256,-0.36287543,-0.047564384,-0.41436952,0.14968814,-0.015466826,-0.42452893,-0.12271454,-0.034624245,-0.045457177,0.522468,-0.2844855,-0.6080216,0.10847872,0.21019675,-0.66100013,0.8495828,-0.40106556,0.2282434,0.17502668,0.33181217,0.27738017,0.0019800875,0.34651944,0.07396941,0.15078886,-0.29332992,-0.05016038,0.16299722,-0.77424395,0.23434761,-0.27744195,-0.617248,0.050838705,-0.3871269,-0.44221255,-0.96880203,0.28042835,-0.9915381,0.6418777,0.04225725,-0.51226026,0.11305916,0.36912152,0.3523159,-0.055443235,0.016743716,0.03721768,-0.20508528,-0.20688686,-0.1343139,0.053699356,-0.63119644,-0.6916668,0.047918376,-0.8362056,-0.18714762,-0.1725627,0.2547733,-0.4390029,0.075566955,-0.16596739,0.2754008,-0.5806214,-0.16796279,0.117463745,-0.005639815,0.43537256,-0.64475614,-0.061407242,-0.2125379,0.13563868,-0.040142585,-0.24656078,0.38961357,0.22880994,0.6838364,0.10613227,-0.37897423,-0.061990213,-0.2428297,0.18268108,0.45152217,-0.022304995,-0.31874546,-0.2694433,0.015508004,0.59892005,0.27575448,0.015440558,-0.2977817,-0.07071746,-0.0055633783,-0.25183246,0.46100587,0.43980727,-0.35556954,-0.29052094,0.26722378,0.59090364,0.13076892,-0.24060354,0.23072144,0.10368768,-0.5511721,-0.17587182,0.35951713,-0.1837736,0.43074137,-0.1966739,0.2963889,0.6276846,-0.23991217,0.061244477,0.1753601,-0.015634337,-0.25408587,-0.033628944,-0.4077273,0.2861097,-0.6998132,0.14496711,-0.36470705,0.8051357,0.04579676,-0.73229885,0.25501293,-0.665572,0.22327577,-0.11727078,0.82291085,0.9285111,0.44968963,0.33037332,0.67849725,-0.21060348,0.041082088,-0.04964653,-0.31556305,0.18493976,-0.49446386,-0.009948194,-0.5967956,0.016525086,-0.1458542,-0.020909885,-0.20207189,0.8140796,-0.40292707,-0.12474822,0.011782007,0.71670425,-0.24391782,0.15972665,0.83655727,0.9401504,1.1499726,0.28485844,1.2888767,0.28286752,-0.08048008,0.01778948,0.029063335,-0.8564099,0.35464576,0.65189296,0.6039843,0.4445622,0.01791511,0.043236874,0.51037353,-0.6891023,0.10123829,-0.22885904,0.27980494,-0.19494824,-0.065793164,-0.7114814,-0.2374037,-0.0039005023,0.11683541,-0.0565643,0.3685148,-0.18831706,0.5560249,0.11081842,1.3897092,-0.26877183,-0.092605524,0.06093227,0.52857167,0.28399786,-0.17740776,-0.05793615,0.1471492,0.5424413,0.079899274,-0.73677635,0.15210582,-0.29752347,-0.44465867,-0.33167243,-0.38548407,0.07313661,-0.3262031,-0.3769731,-0.2630903,-0.017629582,-0.32838398,0.24700777,-2.3635924,-0.35556835,-0.17002524,0.30407065,-0.38382673,-0.19488072,-0.03888497,-0.4871716,0.5761389,0.5383353,0.60491604,-0.80380887,0.4787943,0.53750515,-0.5891398,0.02904376,-0.7886189,-0.20184056,-0.1617453,0.7007991,0.015142388,-0.258221,-0.151033,0.38864738,0.5689396,-0.19671483,0.21312417,0.4091625,0.34866786,-0.1162609,0.45648935,0.03964698,0.36303115,-0.3758312,-0.14417017,0.5331936,-0.16194668,0.23106954,-0.14753962,0.16043188,0.49558607,-0.69186443,-0.89775324,-0.66174215,-0.3877571,1.0815637,-0.38686222,-0.66812044,0.21289727,-0.32484207,-0.051809926,-0.019710246,0.37182027,-0.26474136,0.09772807,-0.863719,-0.08953314,0.055383272,0.3581141,-0.0007618964,0.058027744,-0.36462218,0.7199942,-0.06761594,0.33313414,0.25362816,0.30677778,-0.31195784,-0.5061592,0.19012567,0.772298,0.65416557,0.11439968,-0.39700085,-0.33024392,-0.2428576,-0.21595709,-0.101591244,0.45571023,0.89096034,-0.17988463,0.10981203,0.30079055,-0.32415706,-0.018625693,-0.18784492,-0.2303251,-0.14225397,0.24581735,0.6282207,0.60823566,0.018755564,0.36375025,-0.10985807,0.37918594,-0.018925011,-0.6577368,0.5690815,0.95279646,-0.10640652,-0.033397626,0.65449685,0.69687796,-0.3084716,0.66740936,-0.90724134,-0.4656895,0.39582726,0.053339582,-0.4378402,0.18278591,-0.56315154,0.34480497,-1.1029736,0.43187937,-0.44730407,-0.35242304,-0.67487746,-0.17029183,-2.8504775,0.22267506,-0.18117142,-0.13096984,-0.30229023,-0.3546969,0.48520088,-0.5963088,-0.6671506,0.08465368,0.07685784,0.7525886,-0.053735103,0.053532492,-0.4022284,-0.28791434,-0.47493818,0.13444361,0.23161857,0.24126102,-0.2165893,-0.45949632,0.026971022,-0.29536012,-0.3797616,-0.0700827,-0.70917946,-0.78927153,-0.28928784,-0.5006194,-0.3081238,0.5159846,0.06438826,-0.07962749,-0.26482138,-0.058494605,-0.031334765,0.46151236,0.25919273,0.10375234,0.21379888,-0.021837156,-0.0661676,-0.33078906,0.14631303,-0.05084129,0.14000079,0.34447783,-0.2295144,0.39345708,0.7738191,0.37613168,-0.14420818,0.7751959,0.7302652,-0.13912174,0.32338086,-0.11355574,-0.55336946,-0.58482236,-0.24838646,0.028670311,-0.36017323,-0.42687824,-0.045702547,-0.19907722,-0.80707806,0.72337264,0.115657054,0.20405017,-0.15785272,0.31726333,0.30469745,-0.09206699,-0.22928466,0.020988086,-0.36773568,-0.6114674,-0.337596,-0.9788459,-0.68931824,-0.15149556,1.1642425,-0.14287733,-0.14026447,0.11799294,-0.20447226,0.13438429,0.19496436,-0.054627564,0.28056163,0.45910972,0.14109269,-0.7509535,0.6417025,0.13888277,-0.024071634,-0.423618,0.06717243,0.5567539,-0.6575451,0.15626645,0.47533625,0.16814053,-0.09399652,-0.53103065,0.014243892,0.11804389,-0.20817055,0.6461285,0.21999599,-0.71109736,0.7130191,0.30669692,-0.29378477,-0.7537411,0.6300587,-0.04213817,-0.20466676,-0.123919025,0.46447268,-0.03305487,0.22373912,-0.29335552,0.375292,-0.44725677,0.32518747,0.3126886,-0.07178164,0.40214136,-0.21497306,-0.27166674,-0.7782359,0.08237908,-0.68938625,-0.17179625,0.1796474,-0.21134695,-0.061766054,0.17198288,0.046942454,0.37539098,-0.23654905,0.09633054,-0.03524087,-0.4417987,0.5157965,0.6119021,0.54016393,-0.32967618,0.7145244,0.23507895,-0.22882462,-0.29690823,-0.0016917458,0.37833586,0.13610028,0.45017013,-0.029741015,0.04419589,0.36716524,1.0163033,0.13614388,0.39013246,0.11290655,-0.12199625,0.31173164,0.13506953,0.26966643,-0.09612436,-0.2997923,-0.046690065,-0.14963265,0.0362282,0.6303763,0.22596304,0.2549651,-0.038156807,-0.13123128,0.0940511,0.11644881,-0.026294043,-1.4811461,0.31540936,0.4328626,0.5393562,0.6826049,0.085493155,0.20180757,0.7791873,-0.36582354,-0.12940684,0.22311296,0.19152176,-0.5725919,0.7815134,-0.7769988,0.4661141,-0.21329843,0.08818569,-0.10172093,0.076548204,0.5480691,0.78574646,-0.051889982,0.22023942,-0.14535286,-0.33862638,0.22726735,-0.38440326,0.025570462,-0.30819145,-0.35849422,0.77723736,0.47382402,0.37760043,-0.0600793,0.023495363,0.08164559,-0.11404286,0.40762123,-0.0845462,-0.056741007,-0.21939461,-0.6050982,-0.14257936,0.5745026,0.16976003,0.27365607,-0.018804763,-0.2642059,0.25883967,-0.10292685,-0.15480182,-0.043712784,-0.8147294,0.009574541,-0.41647837,-0.27965206,0.5304306,-0.46754757,0.17952682,0.24243604,0.016142543,-0.44713202,-0.12223633,0.017101428,0.65828276,0.09651936,-0.30303356,-0.18335535,-0.19254817,0.20992324,-0.44815418,-0.027170649,-0.1306441,0.08441305,-0.77024,0.6455245,-0.15459335,-0.35121387,0.30857036,-0.24332294,-0.0784558,0.39697045,-0.11932246,-0.32643923,0.11960236,-0.10424775,-0.24402414,-0.45028335,-0.07118537,0.44424227,0.07030349,0.07087066,-0.07617317,0.0031537712,0.051151,0.75148815,-0.18449919,0.39665794,0.31481332,-0.05106966,-0.47457328,0.09710058,0.20908499,0.49138302,0.008078933,0.20304516,-0.14560877,-0.33337852,-0.272422,0.16289112,-0.24278083,0.2927628,0.06937444,-0.38847896,0.8984231,0.099612236,1.1162775,0.068735845,-0.40552852,0.17442966,0.42699718,-0.08888136,-0.20333643,-0.2481402,0.68570846,0.54823345,-0.13554819,-0.19775662,-0.7255317,-0.209469,0.21251412,-0.22640356,-0.009704198,-0.14682539,-0.5734896,-0.29723832,0.18754165,0.2578272,-0.09768542,-0.08972834,0.13073413,0.023056405,-0.17713769,0.35069165,-0.48101735,-0.029196143,0.44940624,0.10040771,-0.11128503,-0.13767256,-0.5087362,0.38933364,-0.6194506,0.10861652,-0.43967724,0.2368106,0.043781154,-0.25685284,0.25749156,-0.056629658,0.24113502,-0.44594073,-0.25878796,-0.14324676,0.64013195,0.2917498,0.22582929,0.75815135,-0.47091904,0.38455158,0.082484,0.43323746,1.256397,-0.38404703,-0.028409805,-0.0102094365,-0.48891777,-0.62799984,0.4660901,-0.4004531,0.17834575,0.09739057,-0.5559583,-0.70012194,0.21018316,0.29357225,0.11666991,-0.029324966,-0.5424128,-0.24559622,0.22452198,-0.23888373,-0.20236918,-0.5357553,0.09219315,0.5766305,-0.2216471,-0.35742974,0.07458712,0.25483888,-0.27869278,-0.4447997,0.08935673,-0.26594704,0.25092295,-0.014581586,-0.2638496,0.03922052,0.23266566,-0.5703384,0.08031212,0.30819204,-0.3271887,0.045065053,-0.35043564,0.039567865,1.0675398,-0.33109137,-0.24482436,-0.6143287,-0.58503145,-0.81887007,-0.37538818,0.6685132,0.48346952,0.16624287,-0.4953386,0.07877501,0.012031336,0.031349596,0.0752769,-0.60504276,0.4981062,0.06659727,0.54622996,0.0074401754,-0.67024887,0.22646558,0.07074107,-0.016531656,-0.45665708,0.4673486,-0.18361211,0.7505433,0.1591235,0.14052862,0.028512508,-0.5457641,0.19432212,-0.09313322,-0.1692648,-0.7331191,-0.040297966,430 -442,0.5095377,-0.08348252,-0.53348917,-0.06252741,-0.3197182,0.14301583,-0.14777113,0.4862275,0.14269504,-0.6903191,-0.18163456,-0.25278082,-0.10903601,0.23551926,-0.27008912,-0.39146617,-0.0043227756,0.13956417,-0.36638102,0.5404882,-0.40576997,0.38602242,0.13788591,0.41320825,0.10086453,0.14546172,0.20736876,0.21386385,-0.017800774,-0.44569275,-0.0018081239,0.051329434,-0.91701883,0.31035823,-0.20374468,-0.6288099,-0.08619547,-0.3560849,-0.21490733,-0.74648917,0.42317447,-1.0525227,0.57026863,-0.012420088,-0.3166313,0.09562928,0.24485265,0.28238946,0.07386762,0.028641436,0.17826419,-0.03691123,0.070531145,-0.1686959,-0.12398002,-0.52663386,-0.54535,-0.10744305,-0.4597029,-0.16051422,-0.27432165,0.24124745,-0.28309345,0.07706879,-0.14860308,0.3933266,-0.51557094,0.0114947725,0.094772436,-0.09201052,0.38891178,-0.573861,-0.28394908,-0.16837718,-0.023552848,-0.21932687,-0.18757747,0.32501644,0.1559525,0.5677332,-0.099752784,-0.13168906,-0.18264076,-0.036606822,0.058995247,0.5426174,-0.31282115,-0.2610683,-0.20494941,-0.19426958,0.54852927,0.13463938,0.41009447,-0.14914767,-0.02553692,-0.105996266,-0.22132862,0.3782483,0.52851385,-0.35993478,-0.11211673,0.2504457,0.5746542,0.14383613,-0.20816016,0.08189333,0.018730866,-0.3396999,-0.26892906,-0.022287173,-0.24913141,0.54795194,-0.114235945,0.28389364,0.49020797,-0.33134046,0.109932005,0.22391571,0.037548814,-0.07592348,-0.13964073,-0.5134384,0.42754668,-0.57108516,0.13244678,-0.23703685,0.5077658,0.08366083,-0.7303112,0.2297206,-0.5503721,0.050214548,-0.12038999,0.59793466,0.6557003,0.6095696,0.22689417,0.7864666,-0.5344619,-0.13733801,-0.24968253,-0.019245865,0.26286557,-0.19500561,0.00066938996,-0.37140545,-0.038804647,0.0959193,-0.17477468,-0.21361181,0.44024158,-0.65663326,-0.18657722,0.2240015,0.5915928,-0.3539289,-0.0285131,0.6684126,1.2321264,0.99857754,0.16753271,1.0146178,0.13020973,-0.1995691,-0.1659269,0.12425143,-0.7243535,0.20798019,0.39366204,0.12937632,0.50802404,0.1958626,0.07886078,0.2932572,-0.46286887,-0.0958421,-0.14180422,0.35627362,0.05807956,-0.22122402,-0.32507214,-0.091798045,0.15779701,0.04268635,-0.1100061,0.2433687,-0.30593953,0.33661222,0.30014262,1.4633372,-0.12723525,0.07883149,0.06940137,0.42206034,0.16710128,-0.32429948,0.084910154,0.17568436,0.25602886,0.066696934,-0.5217611,0.1279771,-0.12486816,-0.59521013,-0.05510857,-0.3393621,-0.16784689,-0.19340065,-0.50605416,-0.28438607,-0.06319487,-0.14231248,0.28582588,-2.6520114,-0.009680344,-0.13285783,0.35235658,-0.2621681,-0.3177273,-0.124303736,-0.34274483,0.3447174,0.36276388,0.30840948,-0.66961586,0.3706039,0.57474214,-0.39499524,-0.016328821,-0.57084954,0.036053102,-0.03967106,0.36728492,-0.01161477,-0.16340998,0.14381705,0.33765632,0.46526495,0.072957635,0.33126265,0.17085029,0.4534785,-0.046792906,0.43358824,0.024599578,0.3375464,-0.31691977,-0.19957992,0.39727598,-0.45015565,0.083562545,-0.13930978,0.16237614,0.48217636,-0.35550013,-0.7826534,-0.72372085,-0.28991273,1.141597,-0.3221065,-0.8234005,0.13689096,-0.12889203,-0.29154596,-0.1592176,0.40502486,-0.17829713,0.12045795,-0.816648,-0.085845135,-0.18550725,0.34933323,-0.012382058,-0.067110404,-0.47125414,0.81768364,-0.14892693,0.46782616,0.38367265,0.21702273,-0.36138174,-0.50819236,0.07480739,0.8879994,0.567896,0.15446527,-0.28128713,-0.1555675,-0.16792668,0.09178603,0.19881596,0.6481427,0.86220807,-0.12257711,0.17208864,0.27036387,0.105758764,-0.02738102,-0.122180834,-0.39092764,-0.11003168,-0.03576774,0.61268055,0.6387981,-0.0103311455,0.3857076,-0.080802836,0.16817372,-0.24411853,-0.5871315,0.3572453,0.79156315,-0.0836299,-0.20279035,0.7724213,0.5616629,-0.23621945,0.5412174,-0.8671734,-0.4578499,0.42317364,-0.003104261,-0.37764925,0.10399098,-0.3666841,0.27288294,-0.70671505,0.39316764,-0.37144926,-0.49786693,-0.624591,-0.3245876,-2.2269874,0.25075626,-0.032372084,-0.2151916,-0.22970107,-0.45795456,0.4714396,-0.70816153,-0.71660286,0.2160234,-0.006349453,0.6253518,0.07644809,-0.005464462,-0.22814591,-0.36513162,-0.23608148,0.27534634,0.22993326,0.18250749,0.049605105,-0.47215912,-0.15030491,-0.010867813,-0.38052934,-0.12691408,-0.40831187,-0.60973126,-0.2430453,-0.31022838,-0.25617915,0.6479785,-0.33093125,0.07420929,-0.1705861,-0.04888031,-0.07457195,0.24955237,0.08643828,0.17253903,-0.083678305,-0.019774403,0.009027196,-0.21650219,0.15276404,0.11786473,0.23351768,0.37155274,-0.42275968,0.008256435,0.401856,0.61153024,-0.031711966,0.94724643,0.35657853,-0.18182682,0.43152565,-0.08374459,-0.37773147,-0.7606355,-0.19409132,-0.033358272,-0.4333828,-0.40835786,0.032501843,-0.32484457,-0.81829566,0.6417242,0.03210214,0.41304094,-0.07496631,0.33899,0.3371912,-0.17974658,-0.1853122,-0.21011388,-0.17859961,-0.6042233,-0.5486686,-0.7897404,-0.37383685,0.09577298,1.0961752,-0.09013756,-0.10623927,0.28645366,-0.017318564,0.1811612,0.14567474,-0.11897581,-0.17897354,0.4264309,0.08772198,-0.63036126,0.4047688,0.028973188,-0.015496878,-0.6486518,0.18466774,0.5710289,-0.5392132,0.35686377,0.34508112,0.11903907,-0.2578554,-0.67701846,-0.09749983,0.023936335,-0.33427566,0.44880065,0.31623182,-0.91306335,0.41230744,0.2597102,-0.33381885,-0.5775376,0.73676264,-0.10181292,-0.08791786,-0.2854326,0.2974959,0.2023423,0.06506184,-0.15478067,0.2702564,-0.46721724,0.22169098,0.28967017,-0.014440417,0.31562498,-0.08425832,-0.19451605,-0.7183406,0.21225527,-0.43797746,-0.2866576,0.15652418,-0.21797189,-0.1540647,0.5911637,0.25256127,0.48810023,-0.4357981,0.13182968,-0.20740844,-0.31284878,0.48939678,0.46295288,0.53545886,-0.35032767,0.5922681,0.10805245,-0.13042964,-0.10767382,0.11272115,0.42586702,0.1433864,0.23268273,-0.0031534943,-0.22526152,0.19574758,0.93439347,0.28044683,0.3494308,0.08153115,-0.12361369,0.21985625,0.1624246,0.24419291,-0.03212943,-0.579999,-0.0739143,-0.098370634,0.0031925205,0.443745,0.06314922,0.27025852,-0.0052017504,-0.1965976,0.14221953,0.20715025,-0.16522388,-1.3002635,0.20014241,0.011394688,0.8746254,0.65984905,-0.031817075,0.14706214,0.47989374,-0.37540627,0.044724148,0.2703529,0.16458802,-0.32766202,0.51453793,-0.6286769,0.20440389,-0.07460828,0.03957348,-0.10819795,-0.010337318,0.51950276,0.83131063,-0.18156931,0.102406465,0.037208315,-0.093723215,0.121346295,-0.26019785,0.03913496,-0.40793434,-0.21867688,0.8118966,0.35387668,0.48396465,-0.15450723,-0.0070821154,0.06547956,-0.23569389,0.07942016,-0.040906984,0.10883308,-0.22278449,-0.32198524,-0.15136327,0.62722784,-0.05902582,0.06306057,0.06447006,-0.36280057,0.18004613,0.097012915,-0.12590963,0.11090755,-0.91331327,0.0012194173,-0.49960145,-0.21667491,0.54394025,-0.08374778,-0.013356273,0.19522083,-0.005439986,-0.089732304,0.15205929,0.31103557,0.4227941,0.021557242,-0.25554493,-0.20877708,0.21157101,0.06638188,-0.21303841,0.040905893,-0.08652103,0.21389034,-0.556662,0.35951018,-0.07403588,-0.26893386,0.33508244,-0.22275075,-0.037888985,0.57818854,-0.049686484,-0.15865932,0.15658604,-0.18284942,-0.16769919,-0.3454527,-0.23208702,0.32326803,-0.22191088,-0.059115466,-0.04110021,-0.03016339,-0.107176654,0.18922003,0.1874952,0.27848083,0.43543336,-0.10038531,-0.7010264,0.093761556,-0.07224572,0.43817744,-0.17008111,-0.022365306,-0.21270314,-0.67498827,-0.42973477,0.3796234,-0.061994214,0.25005552,0.0025007182,-0.27423915,1.08272,0.14111239,0.9798333,-0.17457731,-0.52527064,-0.07141841,0.62512815,-0.1839434,-0.029492898,-0.31673616,0.86320335,0.5661364,-0.08579343,-0.058733318,-0.14578316,-0.06763081,0.22496553,-0.26101372,-0.24921928,-0.08909773,-0.60670024,-0.114692606,0.20749815,0.43357927,0.015043297,-0.0036241156,0.18445642,0.4055788,-0.006393152,0.49147433,-0.63984984,-0.23020685,0.20018496,0.25221846,-0.0075313216,-0.0006060217,-0.27170646,0.2423528,-0.59886277,-0.039981153,-0.37115237,0.050003447,-0.050262503,-0.44618252,0.13434319,0.047270235,0.36585304,-0.36503845,-0.35855198,-0.18694581,0.47493187,-0.04780907,0.3319047,0.4797913,-0.16409092,0.18836084,-0.17733407,0.49028498,1.0620644,-0.17868379,0.024652889,0.41370508,-0.56959444,-0.68252057,0.305149,-0.4128394,0.28815752,-0.020798849,-0.40747318,-0.39546424,0.2891395,0.24781418,-0.12763736,0.16860656,-0.6935876,-0.22321153,0.28988007,-0.2620476,-0.22614564,-0.20881006,0.14892483,0.58593273,-0.24414514,-0.17237575,0.00746916,0.46296856,-0.29459044,-0.5187239,-0.11926278,-0.3301176,0.4022204,0.02185033,-0.37795258,-0.04824575,0.17542386,-0.4198125,-0.054274227,0.27251396,-0.16753758,0.045421325,-0.41524765,0.21807075,0.720419,0.03576348,-0.12920482,-0.39611128,-0.50834817,-0.87924,-0.30931324,0.28024706,0.29378554,0.020044714,-0.55507606,-0.014562892,-0.25857073,0.031684857,-0.118146606,-0.2656716,0.47906858,0.15596743,0.44921848,0.023483634,-0.7542799,0.14726555,0.038696755,-0.016393749,-0.4081619,0.59241116,-0.038886644,0.8369489,0.19332448,-0.05695207,0.01144634,-0.7582831,0.3950893,-0.17002146,-0.070401974,-0.6401471,0.118171446,436 -443,0.35862616,-0.14920567,-0.6817047,0.044039745,-0.010379012,0.2515693,-0.22621812,0.31453058,0.25837755,-0.5070181,-0.103799544,-0.008951513,-0.043619476,0.2576967,-0.21006939,-0.3651351,-0.14994411,0.22462101,-0.43020695,0.34910917,-0.2447984,0.29860315,-0.0230339,0.20640156,-0.0121826185,0.12770948,-0.07668228,-0.06410439,-0.22879292,-0.29292837,0.13978179,0.17491822,-0.5279158,0.090781234,-0.02476834,-0.45317125,-0.04925153,-0.55389285,-0.3885522,-0.7105585,0.37641725,-0.86896807,0.5625218,0.04598069,-0.112588845,0.3284929,0.028264046,0.10218173,-0.115255155,-0.09018818,0.28971618,-0.2131468,-0.25727686,-0.17300247,-0.20751469,-0.21407744,-0.5187848,0.055109743,-0.44884467,0.07480485,-0.17127183,0.16323595,-0.31654316,0.1900116,-0.32280523,0.43108168,-0.32340723,-0.016503586,0.24416296,-0.17743942,0.28380424,-0.7056964,-0.124009386,-0.087960176,-0.0041132653,-0.23937647,-0.20265403,0.1739913,0.4025376,0.53381586,-0.21273589,-0.094973005,-0.48085648,0.11800706,0.31191492,0.5462609,-0.27520415,-0.35514018,-0.120444335,0.07501276,0.32631493,-0.14451419,0.108442284,-0.37139216,-0.060618848,-0.0132913245,-0.23622625,0.3824133,0.5694179,-0.19706167,0.024145875,0.3886045,0.5606957,0.18002473,0.08305548,0.009160272,0.054153804,-0.3558907,-0.06689624,0.109824546,-0.27434352,0.44248867,-0.08533258,0.1520131,0.4157146,-0.24272552,-0.14175077,0.25040507,0.10651418,0.07985475,-0.15647663,-0.28914642,0.25652704,-0.32055163,0.03170757,-0.22886086,0.57091147,0.017844988,-0.82073337,0.3243076,-0.5354544,0.12728123,0.011828874,0.54930615,0.6055352,0.5439218,0.12767921,0.8836403,-0.58294475,-0.03252266,-0.1536652,-0.31283242,0.10122681,-0.051412173,-0.10893085,-0.44528422,0.06128341,-0.13521554,-0.25781196,0.08856208,0.43451554,-0.4962297,0.07885981,-0.081235364,0.6495221,-0.2787686,-0.04424233,0.5940915,1.1357008,1.0642384,0.093594395,1.0844405,0.13236335,-0.29423568,-0.16068979,-0.17396896,-0.9494411,0.3415162,0.34415552,-0.36702496,0.46199203,0.19395865,-0.093640916,0.3579946,-0.46012625,-0.09782217,-0.07020812,0.16092345,0.076748684,-0.21059455,-0.37939343,-0.19211721,0.051398486,0.042283,0.108693704,0.19100103,-0.3229676,0.15662464,0.31220677,1.3441972,-0.24467526,0.07566546,0.13224675,0.011620028,0.15498777,-0.0991587,-0.10761397,0.240798,0.2700819,0.082617395,-0.56273234,0.08905601,-0.058450036,-0.41774014,-0.23942316,0.09373515,-0.10771626,-0.06161322,-0.19689226,-0.18573916,-0.052381728,-0.44495058,0.33222634,-2.3372433,-0.1016925,0.016631657,0.38530353,-0.11280662,-0.37015867,-0.14574154,-0.44288453,0.33137035,0.31980172,0.41391686,-0.6806877,0.32732853,0.47367558,-0.53333753,-0.13221905,-0.494499,-0.08694895,0.009708852,0.19720729,0.17150669,-0.19250874,0.0882592,0.17994003,0.34438398,-0.2062724,0.010696004,0.527285,0.46302631,0.027375665,0.27913645,-0.039187193,0.5553327,-0.25264728,-0.23199868,0.4779392,-0.4554133,0.25536117,0.027883539,0.11735606,0.30072612,-0.3093986,-0.8695167,-0.51515585,-0.06758778,1.4437035,-0.20709737,-0.55645865,0.14697051,-0.17625019,-0.42857462,-0.026775854,0.3504384,-0.18782985,-0.14371176,-1.0445782,-0.07054995,-0.13642105,0.28597215,-0.07047375,0.0770021,-0.47291157,0.75564796,-0.09111809,0.6260737,0.64145195,0.12966561,-0.24956837,-0.4905738,0.087415695,1.2517358,0.50064725,0.16804925,-0.23482111,-0.021867683,-0.2614146,0.014483051,0.060709354,0.46664485,0.66318846,0.002117506,0.09700147,0.11262957,0.14836146,-0.019626277,-0.24227217,-0.3259118,-0.116312064,-0.056715794,0.53870696,0.56799036,-0.25140834,0.30192345,-0.09252139,0.18742573,-0.1039662,-0.48373535,0.3917624,0.96622574,-0.14255436,-0.39285278,0.69652855,0.32723337,-0.39908618,0.46727252,-0.47455046,-0.26390043,0.24665044,-0.2771701,-0.30981416,0.42630452,-0.29928118,0.1321851,-0.77477986,0.39886925,-0.21426384,-0.3552322,-0.6049987,-0.09298881,-2.5590477,0.1545919,-0.24779771,-0.17904167,-0.20300327,0.010467768,0.3506519,-0.47863507,-0.8593445,0.10183261,0.12914495,0.5184361,-0.19665672,0.027140483,0.107624985,-0.14271805,-0.07662726,0.24324656,0.21087937,0.15347789,0.107730426,-0.46607473,-0.10948604,-0.18138511,-0.33291468,-0.013917376,-0.53246677,-0.4472558,-0.03529076,-0.39287153,-0.27053684,0.49918684,-0.44441643,-0.050690167,-0.20855351,0.035252344,0.023444954,0.3337951,-0.15193537,0.13316147,-0.04505033,-0.14428899,0.10177236,-0.020308206,0.3887468,0.08597313,0.16827333,0.57542557,-0.27166036,0.10974027,0.42407343,0.94254625,-0.04606964,0.9712907,0.4845517,-0.15208252,0.19766642,-0.16178845,-0.25316158,-0.52612936,-0.21947663,0.14557645,-0.5265864,-0.40955186,-0.030088216,-0.38304192,-0.9483367,0.49989435,-0.07831664,-0.0052465284,0.11039344,0.4047092,0.43232843,-0.15503995,0.19936265,-0.14936547,-0.17596538,-0.26410347,-0.3778798,-0.6106396,-0.30577818,-0.16547735,1.1583096,-0.12889698,0.05344063,0.16543719,-0.13004246,0.12967624,0.037198715,0.058394797,0.26639456,0.4808981,0.099642955,-0.5422765,0.27038953,-0.18296231,-0.1977849,-0.5207008,0.14113985,0.5008171,-0.58203983,0.48266488,0.39423952,0.029652039,-0.024157524,-0.5709669,-0.031085294,0.06825129,-0.29075623,0.5449696,0.40019363,-0.595822,0.44790283,0.49495173,-0.44367892,-0.7246079,0.33521387,0.090366386,-0.03998425,-0.07610935,0.42612043,-0.15090585,0.11203102,-0.1835989,0.19364044,-0.27884722,0.34639445,0.10346361,-0.16825701,-0.009766971,-0.22346091,-0.16210473,-0.7201804,0.26629716,-0.35177824,-0.17523237,0.10225582,0.14877465,0.07043753,0.10389706,0.10981451,0.5770968,-0.35666615,0.0044851177,-0.082712755,-0.30116668,0.36488852,0.48215374,0.40089723,-0.27131805,0.4962983,-0.12191946,-0.2441427,-0.20387578,-0.08854663,0.5444681,0.03237465,0.15404211,0.2366568,-0.058265217,0.337716,0.75122416,0.10110392,0.40203318,0.025698543,-0.17733045,0.15690783,0.07445603,0.22124624,-0.09047676,-0.55755174,-0.02321268,-0.06487194,0.21062903,0.53100556,0.115179606,0.33486605,-0.34544048,-0.2943217,0.012654846,0.23967569,0.048379127,-1.1659728,0.3411425,-0.05142008,0.7491497,0.6274296,0.0131689655,0.3429242,0.31347138,-0.21588376,0.062441822,0.43157926,-0.016560614,-0.5806641,0.38583544,-0.70247334,0.24810886,-0.15243256,0.13007079,0.14053123,-0.07258712,0.4683055,0.8784181,-0.157512,-0.028182914,-0.09600027,-0.20490953,-0.010160876,-0.2972928,0.19268297,-0.48975375,-0.4537684,0.7756434,0.45303705,0.43900228,-0.29687792,0.10743941,0.18958433,-0.14005154,0.33787876,0.034431387,0.116159745,-0.21071182,-0.65506303,-0.05258011,0.5622381,0.2499117,-0.06315942,-0.1797073,-0.25623506,0.16678654,-0.047629446,-0.09167951,-0.14727828,-0.67077214,-0.25747824,-0.4358246,-0.4301979,0.114832796,-0.0562376,0.059702314,0.19449432,0.02220336,-0.4933274,0.2247324,0.32447442,0.7101037,-0.06072728,0.0131797,-0.23532031,0.451509,0.15151428,-0.0034610373,-0.011097832,-0.15151438,0.20714426,-0.6231288,0.6032339,-0.20311311,-0.36058143,0.19500051,-0.18645273,-0.020168742,0.54750466,-0.35196966,-0.24043849,0.1441399,0.032653105,-0.2775651,-0.37581626,-0.23056516,0.030882506,0.18074346,-0.17922893,-0.11378447,-0.07243372,-0.3008185,0.2615985,0.19408797,0.25621882,0.49998856,0.2021414,-0.70988417,-0.06453898,0.023380855,0.55857366,0.15001443,-0.22560342,-0.6094979,-0.5616826,-0.21030743,0.25524643,-0.17840552,0.2292362,-0.017671293,-0.3492883,0.7673755,0.13343297,1.1752918,-0.06388052,-0.33785635,-0.037963424,0.69634706,-0.08575194,-0.14512096,-0.4700344,0.880902,0.5496489,-0.17556688,-0.0908319,-0.41610426,-0.068075016,0.11106555,-0.21942818,-0.15779069,-0.038990743,-0.73499775,-0.3280477,0.18460962,0.36496702,-0.1543866,-0.12715113,0.2183167,0.34138268,-0.006376321,0.20248969,-0.4687396,-0.16150415,0.26912388,0.120056204,-0.005736251,0.023494722,-0.48254195,0.35109228,-0.53607017,-0.06610314,-0.1753342,-0.031228688,-0.06154812,-0.12193389,0.2231235,0.031414412,0.15427755,-0.35342735,-0.2974681,-0.118742384,0.44577268,-0.04902837,0.20776053,0.6992391,-0.205565,0.15257896,0.15792002,0.5660199,0.99370384,-0.20426954,0.11415933,0.33979347,-0.3158303,-0.6442236,0.41099548,-0.2370604,0.006969405,-0.117975816,-0.2899973,-0.6113553,0.3782864,0.15459171,0.026916513,0.011859564,-0.564597,-0.21008638,0.458389,-0.41373748,-0.08998541,-0.24307151,-0.15540232,0.62771046,-0.29939127,-0.45093113,0.04290654,0.36545846,-0.30162284,-0.52165866,-0.055483367,-0.3723864,0.26746362,0.1674712,-0.22919764,-0.08065427,0.15127672,-0.4477633,0.07206279,0.18307877,-0.32638782,-0.01766387,-0.32230118,0.08684067,0.63787585,-0.2565764,0.13385464,-0.5329408,-0.5965554,-1.0291415,-0.15810017,0.25025147,0.06557678,-0.021526417,-0.80637115,-0.029244509,-0.08340863,-0.14712052,-0.18260875,-0.42339906,0.55157614,0.17157386,0.41950795,-0.26978308,-0.6274029,0.05607578,0.15045322,-0.18096621,-0.35422453,0.4989542,0.2004755,0.73707527,0.058457058,0.07334201,0.26940474,-0.680924,0.1969379,-0.13521066,-0.20068319,-0.6536039,0.02141474,438 -444,0.6686596,-0.36048025,-0.5320132,-0.12252111,-0.4435543,0.09479825,-0.23706429,0.49247402,0.22193874,-0.55836993,-0.18995099,-0.15183301,-0.04397974,0.2790548,-0.08131684,-0.55513465,0.15926066,0.3631043,-0.7159712,0.6361432,-0.48848635,0.36964312,0.28011602,0.37977546,0.17570148,0.1740518,0.20330827,0.001983917,-0.077780046,-0.0876848,-0.133674,0.31965503,-0.5086177,0.1971116,-0.16902785,-0.30723405,-0.06337323,-0.43021634,-0.37055227,-0.8775111,0.30520815,-1.007474,0.4868407,0.08886889,-0.47310677,0.113349214,-0.017519388,0.17847188,-0.24231423,-0.033191465,0.1682575,-0.16041856,-0.2769019,-0.25804815,-0.19064464,-0.28090328,-0.61543334,0.15150443,-0.56353337,-0.12898889,-0.1754291,0.33045414,-0.32356933,-0.044488728,-0.20664942,0.4717234,-0.3680888,-0.0122721195,0.15839794,-0.2507674,0.12904164,-0.63161933,-0.05145958,-0.12640576,0.08572935,-0.09429218,-0.40729836,0.35318893,0.24734484,0.6532458,0.09730638,-0.38504115,-0.3285973,0.12994711,-0.010395595,0.49140614,-0.06988212,-0.34672323,-0.23322807,0.07288713,0.3664501,0.11273604,0.20718816,-0.440881,-0.069701634,-0.21505441,-0.071865395,0.3813772,0.6220422,-0.2817101,-0.33959126,0.28174335,0.48950627,0.018966973,-0.11330037,0.102936566,0.024663206,-0.54111403,-0.07270647,0.13324149,-0.11846922,0.4728232,-0.27261665,0.1321808,0.59463626,-0.09529372,-0.08806694,0.2656461,0.21972778,0.018741919,-0.34337804,-0.20489326,0.4057006,-0.57153827,-0.12803,-0.3011784,0.7709875,0.1001922,-0.57094324,0.4644027,-0.46624878,0.16311756,-0.16740046,0.5577526,0.8972701,0.4679276,0.20822217,0.8673659,-0.4395292,0.1668232,-0.1317894,-0.32173458,0.18473889,-0.23303106,0.1704536,-0.47776222,0.0067299646,-0.17259869,-0.23218636,-0.10314189,0.8115733,-0.6638149,-0.23227927,0.14699984,0.75834656,-0.3573415,-0.23959541,0.9048625,0.8344571,0.94460595,0.0059486586,1.3083595,0.47443554,-0.09620834,0.21850559,-0.30652285,-0.84657806,0.37364691,0.35001636,0.34548363,0.2722251,0.1311175,-0.14300503,0.42769474,-0.47161037,-0.0895919,-0.3329916,0.26098105,-0.035165805,0.01513602,-0.63003427,-0.24942514,-0.056090105,0.1686245,0.158446,0.30080885,-0.33636746,0.24639286,-0.15909275,1.765977,-0.09964875,0.06640264,0.12088028,0.47122833,0.3394709,-0.1960235,-0.1242134,0.37153324,0.28525168,0.063086614,-0.54420793,-0.05843216,-0.30444378,-0.47544456,-0.22259243,-0.29401073,0.05984052,-0.22110888,-0.58625144,-0.31720716,-0.02469643,-0.45510575,0.4200809,-2.198644,-0.32122475,-0.10121583,0.5036808,-0.3616003,-0.43891048,-0.29075375,-0.50551283,0.298613,0.32975888,0.5323919,-0.6542329,0.34357467,0.4546679,-0.59811926,-0.070721544,-0.6554963,-0.008051144,-0.19205448,0.43793863,0.018210616,-0.26742476,-0.03437404,-0.16320278,0.58668226,-0.11831101,0.07611002,0.416052,0.4872509,0.07002954,0.36592048,0.14957799,0.50976914,-0.37750274,-0.35843617,0.45566756,-0.31195453,0.17873088,-0.07555745,0.10153751,0.6172456,-0.578863,-0.8262765,-0.7593004,-0.038009845,1.1453636,-0.21086428,-0.45236716,0.20426229,-0.34915575,-0.28456357,0.1211344,0.49301568,-0.18677898,-0.09700949,-0.87705135,-0.019545188,0.017214714,0.24610741,-0.09529341,0.01994938,-0.37114438,0.7066645,-0.25458977,0.39595693,0.21097486,0.30127952,-0.354465,-0.6130991,0.07202438,0.96103066,0.3185632,0.1129999,-0.2746543,-0.20662509,-0.2528861,-0.19352253,0.040136103,0.5425302,0.8250289,-0.034353685,0.11345833,0.3653803,-0.054266386,-0.039425228,-0.13276389,-0.37432772,-0.18806683,0.10732552,0.6405679,0.7910314,-0.099997506,0.5701325,-0.1859281,0.37514958,-0.07180379,-0.6532893,0.5170513,1.1673367,-0.14973655,-0.34010223,0.6316233,0.24631016,-0.4870775,0.55403155,-0.67296535,-0.44472244,0.1528923,-0.21482055,-0.44880867,0.27346936,-0.32131618,0.2515138,-0.91219366,0.4264769,-0.02525318,-0.48873916,-0.579119,-0.20854142,-3.0028775,0.24404609,-0.26307243,0.10940784,0.040508218,-0.19011469,0.1585755,-0.57881135,-0.36631468,0.10423229,0.009508188,0.74373055,-0.026209537,0.2087269,-0.2706414,-0.38885778,-0.20680702,0.2191952,0.19762094,0.35021564,-0.008440665,-0.49409994,0.09300677,-0.076203145,-0.24365316,-0.0027030376,-0.9107604,-0.63629055,-0.26116213,-0.6834916,-0.17455606,0.6675892,-0.12815826,0.0455491,-0.23790279,0.0128148245,0.037689447,0.30655068,0.095674835,0.12165998,0.21751077,-0.100273,-0.11169831,-0.2977441,0.26865622,0.043638777,0.15202396,0.5121708,-0.21269463,0.24798486,0.5714847,0.6629873,-0.34918264,0.89649117,0.53949624,-0.13064049,0.26127028,-0.07892122,-0.35826525,-0.5784742,-0.17993028,-0.117143944,-0.5633715,-0.24083403,0.14564289,-0.46482685,-0.90532935,0.6722303,-0.078821406,0.13399537,0.13039394,0.43515852,0.7080044,-0.19279234,-0.123283245,-0.14666389,-0.16716619,-0.486344,-0.43818545,-0.6094779,-0.58660764,0.16599502,1.2422073,-0.22095878,-0.0040959525,0.08742845,-0.06075359,-0.065124825,0.031461954,-0.013885924,0.20345663,0.52230257,-0.020543303,-0.671183,0.41165516,-0.0990089,-0.11436854,-0.4194807,0.34881148,0.6015133,-0.8200242,0.49713114,0.32304606,0.14120428,-0.11975572,-0.5855513,-0.29689035,0.16864787,-0.20351872,0.5748425,0.24934933,-0.82855034,0.5054201,0.41323397,-0.2930801,-0.9109615,0.28895146,-0.032176714,-0.39594746,-0.18548393,0.45997348,-0.03859612,0.09265734,-0.29286882,0.19333206,-0.4419256,0.099532895,0.25436786,-0.14460394,0.40037516,-0.3832625,-0.3603313,-0.70188683,-0.0006829415,-0.54446644,-0.34714416,0.25035352,0.006795662,0.068978034,0.34159067,0.17017612,0.5407166,-0.2847202,-0.004513455,-0.08813296,-0.18453725,0.32870674,0.3796489,0.499026,-0.6015374,0.5299329,-0.041792836,-0.17152514,-0.06771104,-0.023479206,0.4765306,0.16649196,0.3684884,0.04671083,-0.094407395,0.3200957,1.0082595,0.0591713,0.50251216,0.1733071,-0.26082942,0.20263453,0.09053285,0.24708636,-0.27226385,-0.49783203,-0.027423242,-0.09531837,0.30677453,0.4557615,0.13904011,0.3852811,-0.1303561,-0.27197772,0.08156405,0.010557814,0.031277042,-1.3295166,0.06514568,0.2341439,0.8413636,0.31712088,-0.002527535,-0.13540138,0.6779899,-0.21519685,0.1715938,0.22979109,-0.2963979,-0.4587229,0.49856824,-0.663817,0.43897718,-0.16314304,0.06459965,-0.06634897,0.032749865,0.456811,0.7996991,-0.13109383,0.056379385,-0.08795023,-0.3425488,0.20621906,-0.42670915,0.116760306,-0.46722883,-0.32249385,0.71833706,0.42681208,0.3959438,-0.16683002,-0.012761305,0.1518425,-0.111107066,0.2100034,-0.009863491,0.12704,0.08537221,-0.60938925,-0.18662484,0.6075753,0.42025122,0.13643529,0.02790388,-0.06717869,0.2979398,-0.17099331,-0.1891552,-0.13177499,-0.81220716,-0.11549927,-0.33210963,-0.46229458,0.42929643,-0.056509733,0.025743794,0.2904572,0.04320022,-0.46750718,0.3875663,0.19719587,0.9535684,0.06560954,-0.19444373,-0.43717465,0.3204798,0.1440061,-0.29762736,0.032858413,-0.23169962,0.2013613,-0.70136374,0.5549343,-0.033154275,-0.5252303,0.20271835,-0.06518744,0.00043376003,0.5070589,-0.16871254,-0.22148885,0.07176448,-0.10749788,-0.4605386,-0.15358233,-0.06311987,0.21529378,0.20147684,-0.24256168,-0.15578556,-0.120735705,-0.03351351,0.6013878,0.088573985,0.3003487,0.38682798,0.16917256,-0.40618253,0.13277826,0.5916088,0.56756014,-0.045942962,-0.18823318,-0.25161478,-0.368205,-0.4157645,0.15663119,-0.05294035,0.36981267,0.13755463,-0.21999113,0.9129095,0.122708015,1.2416831,-0.024840828,-0.3559356,0.08630047,0.5319274,0.096791506,-0.10127338,-0.33271855,1.0184892,0.63800615,-0.13366385,-0.08940283,-0.54827416,-0.22244772,0.26695225,-0.33500388,-0.1314876,-0.123237416,-0.82034665,-0.31995973,0.2635107,0.2962152,0.02148901,-0.14894907,0.301761,0.21931298,-0.0110457605,0.16787995,-0.6446702,-0.048139844,0.25211045,0.46764532,-0.017557234,0.22180034,-0.48938587,0.3169044,-0.6932803,0.1895463,-0.22535641,0.18930514,-0.0112460805,-0.34473753,0.2491208,0.20374165,0.39618382,-0.53449965,-0.36411348,-0.42775226,0.54706633,0.16823514,0.14949723,0.67916876,-0.32265607,-0.010640179,0.18684961,0.49144483,1.1441948,-0.09695796,0.002796037,0.3342177,-0.27609876,-0.84338677,0.45080683,-0.28825787,0.26967606,-0.06346009,-0.352597,-0.5984878,0.27453914,0.21796116,0.031224787,0.0034838447,-0.50828314,-0.016714351,0.42949995,-0.1346179,-0.19936457,-0.28355846,0.14073423,0.54504055,-0.13493355,-0.31248587,0.09738559,0.3383519,-0.3097056,-0.5675688,-0.15800521,-0.62549335,0.16285758,0.090249725,-0.325687,0.065514326,-0.01801149,-0.5943006,0.1891135,0.317229,-0.33501714,0.17997496,-0.21773137,-0.050972197,0.91851556,-0.08122521,0.14358458,-0.6157369,-0.54687434,-1.0182117,-0.2528514,0.4425717,0.14275165,0.060157605,-0.8976757,-0.10792171,-0.28607103,-0.20690049,0.13617194,-0.52244174,0.512867,0.2538999,0.31744495,-0.120288566,-0.9902563,0.1876178,0.17161416,-0.4055087,-0.52768266,0.4076569,-0.058068115,0.9377678,0.09721865,0.10049647,0.3764227,-0.6324442,0.14748916,-0.29761535,-0.07131035,-0.7125297,-0.19541717,440 -445,0.42971015,-0.43067425,-0.5138517,-0.0448897,-0.20661746,-0.10231465,-0.321248,0.23325446,0.059784148,-0.3034473,-0.0654273,-0.09585978,0.023303317,0.30501992,-0.10672394,-0.7272549,-0.07528802,0.031179238,-0.8527511,0.8407998,-0.36680415,0.24044964,-0.1226189,0.2933078,0.19149849,0.21648408,0.099848926,0.07169102,0.0631173,0.09061726,-0.02973226,0.20439948,-0.6532865,-0.043347936,-0.08918351,-0.3020509,-0.05014589,-0.2863932,-0.50110596,-0.9408372,0.4049171,-0.9246527,0.5197017,0.008210449,-0.3838748,0.29975775,0.051171184,0.36085263,-0.4843139,-0.0040431344,0.10044553,0.003950668,-0.054261293,-0.1833519,-0.042705078,-0.36271352,-0.5560474,-0.0060714823,-0.66993773,-0.12886886,-0.27111122,0.18280652,-0.39466622,0.044416495,-0.22954342,0.3600792,-0.5170767,0.045111503,0.24424984,0.09770865,0.20650947,-0.67526287,-0.0043460256,-0.18030559,0.2524486,0.0056536454,-0.31754652,0.4112992,0.12978324,0.46888566,0.05448452,-0.20072368,-0.13779916,0.033665553,0.18857601,0.3953612,-0.1512271,-0.39614984,-0.28833678,0.012077059,0.30738562,0.09388618,0.11332905,-0.30906707,-0.17651007,-0.019697087,0.030134814,0.34502384,0.5295794,-0.36924353,-0.30687183,0.35397294,0.56589067,0.26143268,-0.14603257,0.116281234,0.016675627,-0.617256,-0.11255489,0.21011806,-0.20506705,0.6649584,-0.20358315,0.22229981,0.4772741,-0.14127913,-0.14896,0.023945251,-0.024450513,0.031926613,-0.20525034,-0.19771756,0.2560739,-0.51098496,0.20393482,-0.24737212,0.61774623,0.2901409,-0.6645659,0.36758566,-0.50980306,0.254982,0.049220663,0.7281432,0.8638553,0.37720302,0.35611036,0.7983538,-0.36764738,0.12310781,0.037819438,-0.32402697,0.11148343,-0.2244992,-0.10320855,-0.51429653,-0.017925825,-0.24203862,-0.12854825,-0.02554624,0.49865893,-0.45349854,-0.08415533,0.09378631,0.6494859,-0.30901942,0.13864437,0.76159126,0.88817686,0.94083077,0.13342826,1.0796617,0.27848572,-0.18337683,0.19993135,-0.28861004,-0.84658396,0.20800741,0.29478732,0.49627876,0.34354857,0.041238002,-0.12826987,0.5070234,-0.49511296,0.18717219,-0.2189665,0.17154162,-0.008375453,-0.10438169,-0.43734494,-0.04983953,-0.055664174,0.10542451,-0.105434775,0.26058406,-0.17361467,0.48508355,0.050201576,1.3960943,-0.17596748,-0.0081857275,0.10192102,0.41632605,0.35117346,-0.1828723,-0.1870517,0.2719086,0.6112901,0.15619552,-0.71936387,0.17982565,-0.23440422,-0.36587116,-0.2301131,-0.28430197,0.0791562,-0.006010677,-0.4756885,-0.1888103,0.107591935,-0.26109442,0.35306352,-2.5260623,-0.28011864,-0.1454923,0.30946943,-0.26563063,-0.21819887,-0.17292377,-0.5037879,0.46418017,0.31137636,0.4490573,-0.6532596,0.28967288,0.4278087,-0.54578155,0.108919606,-0.68477833,-0.24694109,0.06472771,0.48144808,-0.038212143,-0.1763922,-0.005932457,0.22044137,0.42077166,-0.0356242,0.1192832,0.4296281,0.3587045,-0.12240616,0.444323,0.056126926,0.5122508,-0.3526332,-0.2262754,0.39446312,-0.13920268,0.4001139,-0.035732355,0.21344523,0.51928395,-0.6480648,-0.8988322,-0.4791287,-0.13386418,1.2832835,-0.37211296,-0.64360684,0.34777564,-0.4399348,-0.07527586,-0.08011909,0.47466102,-0.03725032,0.013865926,-0.8606362,0.09568066,-0.07225195,0.41498813,0.028532092,-0.10248553,-0.29765087,0.72020006,0.002328628,0.28180936,0.37299767,0.11794372,-0.20795162,-0.65450734,0.16250144,0.72841704,0.44060662,0.04023557,-0.2911157,-0.21320005,-0.27343044,-0.082856655,-0.0033184162,0.4932005,0.7686081,-0.09548753,0.15487751,0.19403125,0.031076908,-0.0046856934,-0.24876477,-0.15919252,-0.18702327,0.041144915,0.52730745,0.72779197,-0.10792269,0.46103215,-0.05276474,0.24108613,0.09466488,-0.50631624,0.6405822,1.1864911,-0.16364226,-0.30584997,0.55796736,0.3596534,-0.27385834,0.4416326,-0.49617776,-0.35307726,0.46850497,-0.117686205,-0.4719043,0.38170055,-0.4631857,0.26944104,-0.80566436,0.29615864,-0.37801692,-0.38949254,-0.6114231,0.030225227,-3.4831638,0.22652021,-0.4131433,-0.17551781,-0.29533324,-0.3296435,0.21768829,-0.5460934,-0.6571703,0.18905321,0.111577325,0.7060273,-0.22897413,-0.07013861,-0.16270807,-0.22416493,-0.3136041,0.17102285,0.3095058,0.3441787,-0.09812689,-0.48567563,-0.2587338,-0.13332525,-0.40213874,-0.12845206,-0.5692013,-0.44958147,-0.18524979,-0.56407845,-0.11983784,0.696227,0.010034119,0.011096135,-0.33393842,-0.044046946,0.05489495,0.32424682,0.25591114,0.4015944,0.05147747,-0.13978863,-0.10717641,-0.18607445,-0.074121274,0.051808503,0.075817056,0.29346758,-0.100787126,0.22748525,0.49735898,0.68030924,-0.256797,0.75848716,0.6571765,-0.17912377,0.33598262,-0.22091344,-0.40323427,-0.6416563,-0.3009965,-0.10399248,-0.42931786,-0.49690613,-0.13444814,-0.35380667,-0.81562644,0.51307166,-0.18643166,0.2794983,0.0939093,0.26919565,0.47278777,-0.028971529,-0.052340005,-0.121537805,-0.24217676,-0.50028974,-0.2759605,-0.696548,-0.5604874,0.07528882,0.89318955,-0.3472032,-0.009133518,0.17685474,-0.3476649,-0.006731987,0.01645894,0.026982335,0.33054423,0.38643447,0.15897019,-0.6497267,0.59669435,-0.007926175,-0.2192936,-0.6034774,0.20980267,0.5319222,-0.68204814,0.5441855,0.23441961,-0.05741823,-0.25635192,-0.70023817,-0.18439364,0.12876949,-0.254559,0.48718715,0.27439013,-0.7844477,0.50011986,0.31239653,-0.3005546,-0.737799,0.53424114,-0.020206204,-0.55091417,-0.010630237,0.384489,-0.24737202,0.15686704,-0.30000883,0.33800554,-0.34126702,0.19356868,0.32005635,-0.14129692,0.08023338,-0.117558286,-0.30495626,-0.63356304,0.08644838,-0.5030554,-0.14510341,0.43710497,0.022735974,0.048127957,-0.05611326,0.09571082,0.560909,-0.3245638,0.20107315,-0.15432762,-0.3678688,0.41313487,0.6337374,0.41148165,-0.41710472,0.62781733,0.023676872,-0.1555836,-0.033845272,0.21703954,0.41092587,-0.04887951,0.3854394,0.020659983,-0.024454415,0.0949435,0.8418743,0.1601444,0.68065697,0.14826643,-0.0029342559,0.38259405,0.17493396,0.24187799,-0.1028033,-0.32447228,0.020071212,-0.028884223,0.21843506,0.5193052,0.15139093,0.18218125,-0.12915854,-0.19323099,-0.008528592,0.19649656,0.20937695,-1.2872313,0.37476534,0.2752954,0.631463,0.6269383,0.061916213,-0.073263645,0.6540188,-0.3067512,-0.03514352,0.28626558,0.029645992,-0.5597286,0.5643035,-0.68939537,0.48844594,0.029548809,0.033899445,0.1999037,0.18865538,0.41354913,0.7741431,-0.15240659,-0.07484049,0.06968018,-0.23555498,0.24667755,-0.3486906,-0.073181145,-0.2872737,-0.44178072,0.6501294,0.5082906,0.20493482,-0.18256323,0.00018431034,-0.016929755,-0.20040977,0.27340502,-0.07533682,0.08108242,-0.13670693,-0.63572437,-0.23529005,0.4434735,0.022916649,0.11909541,-0.06208127,-0.046231877,0.18170099,-0.13352738,-0.17654851,-0.19245842,-0.92277753,0.16374898,-0.5617199,-0.43515852,0.51519215,-0.299414,0.24548051,0.32982087,0.05981746,-0.5279246,0.2665884,-0.24045834,0.73466504,-0.0037831664,-0.15711546,-0.35113317,0.17982514,0.2978773,-0.31357956,0.12151205,-0.25332773,0.07118296,-0.50501794,0.6181897,-0.09313939,-0.3720765,0.0515352,-0.18940385,-0.082133666,0.5591262,-0.2684502,-0.24878572,-0.01686682,-0.23008823,-0.38273048,-0.4181724,-0.07016242,0.26952747,0.29820988,0.1176701,-0.08592575,-0.012374418,0.05184824,0.7121352,0.062418826,0.43683332,0.41461685,0.02204832,-0.404155,0.048641022,0.45278528,0.6245286,0.06368973,0.019388186,-0.29167917,-0.5025547,-0.3986458,0.13213114,-0.11218126,0.43286902,-0.020305736,-0.24788108,0.83569634,0.13937293,1.0368043,-0.05619226,-0.32030267,0.23335107,0.61664397,-0.05231062,-0.22201405,-0.20939814,0.8281078,0.6265822,0.0010651669,-0.06557132,-0.25346866,-0.01873965,0.18149793,-0.22297321,-0.004813854,-0.040280856,-0.46598104,-0.12590334,0.18417035,0.37755463,0.05311626,-0.16327485,0.07773372,0.010048787,-0.06087571,0.08386072,-0.55292785,-0.1077352,0.4090019,-0.06333287,0.0058860267,0.20635703,-0.39453223,0.40703696,-0.5809207,0.06493417,-0.37181538,0.19681872,0.15572476,-0.28580856,0.21549144,-0.0065805316,0.3704872,-0.51273245,-0.17858028,-0.39558104,0.47546488,0.27468258,0.14951505,0.6094604,-0.23226449,0.274705,0.18934436,0.44398338,0.80080426,-0.32209778,-0.03790101,-0.017443892,-0.36928114,-0.6622843,0.41885456,-0.3855788,0.3338636,-0.1501522,-0.21730113,-0.7370196,0.09780989,0.16049287,0.10921048,-0.030433616,-0.820527,-0.36885688,0.18623559,-0.15176785,-0.15836105,-0.45826334,0.064951435,0.63827336,-0.31807062,-0.15059116,0.1214739,0.06585198,-0.26754066,-0.5106597,0.00739752,-0.38421303,0.2331823,0.08124978,-0.34565988,0.0795088,0.15990482,-0.58723825,0.14981297,0.20167516,-0.3883831,0.09907403,-0.18180202,-0.050893094,1.1415464,-0.47910792,0.097290866,-0.49280292,-0.6236867,-0.97482353,-0.29414603,0.65169156,0.18781556,0.19050685,-0.78880596,0.071729265,-0.10791052,0.14789979,0.033304445,-0.47507286,0.529377,0.03403179,0.3246958,-0.12843938,-0.80984145,0.2515514,0.019287225,-0.21144114,-0.4681642,0.5423986,-0.030325158,0.7263759,0.088340424,0.11635254,0.09825229,-0.6719288,-0.040113542,-0.21631983,-0.18763816,-0.654595,0.0032099315,445 -446,0.5245703,-0.08201839,-0.6586304,-0.064208075,-0.41573185,0.0031055936,-0.37414208,0.18976943,0.3559825,-0.45080236,0.09876416,-0.17694642,0.10406109,0.09551136,-0.28538755,-0.5844292,0.108167276,0.2697509,-0.5416554,0.74780095,-0.43465084,0.21342097,0.30526957,0.21476582,-0.046224136,0.038059317,0.17018959,-0.2412751,0.03239902,-0.22765231,0.09340207,0.2490287,-0.79227096,0.3261327,-0.1562273,-0.22478461,0.14952265,-0.42039427,-0.26670346,-0.8132161,0.19812763,-0.8105845,0.5497269,0.12799379,-0.29868275,0.26817355,0.15030916,0.07069136,-0.18148647,-0.076305576,0.23980178,-0.46332213,-0.62241644,0.028445354,-0.17024197,-0.43090567,-0.63111323,-0.05502964,-0.69305265,0.12007912,-0.32159182,0.2891937,-0.35556436,-0.13400319,-0.2327074,0.42060784,-0.39045557,0.018185964,0.09238948,-0.18951699,0.3324555,-0.5485824,0.042309515,-0.100409985,0.23251823,-0.06610907,-0.22390711,0.09590115,0.21754701,0.6034562,0.10968476,-0.36051878,-0.34134573,0.023510316,0.10302345,0.34929132,-0.14899264,-0.22164658,-0.23011647,-0.05286434,0.27433845,0.21695216,0.031130398,-0.39533657,-0.02693975,-0.22826962,-0.30992705,0.5144136,0.539697,-0.31651512,-0.0686797,0.45793417,0.39071772,0.2173075,-0.18130048,0.2495891,-0.063645825,-0.5966083,-0.22338429,0.1759374,-0.06336113,0.5054342,-0.25276658,0.2896826,0.47781375,-0.07920087,-0.19669567,0.18038414,-0.06736143,0.11330678,-0.2606869,-0.12396624,0.26844743,-0.6363679,0.034749832,-0.37147546,0.7344714,-0.09133709,-0.8195401,0.4372444,-0.48618677,0.31699553,-0.14768243,0.8726258,0.9277044,0.63879687,0.2447132,0.9019914,-0.44600025,0.13372208,-0.0973467,-0.57641995,0.41677812,-0.06144604,0.3152184,-0.48684925,-0.051687777,-0.008999133,-0.0745967,-0.15726277,0.65883267,-0.34161186,-0.23585628,0.08714414,0.7128792,-0.20918925,-0.13359977,0.7081703,1.1649574,0.948965,0.26867926,1.2677182,0.29595134,-0.03566765,-0.11014276,0.0627112,-0.91261524,0.25087565,0.2673506,0.32849434,0.15481146,0.1886371,-0.001336515,0.35297123,-0.3280042,-0.23616263,-0.1256274,0.33863026,-0.25574186,-0.21480799,-0.28805804,-0.17582151,0.1683778,0.14655772,0.094391,0.25621548,-0.042238366,0.31575766,0.21661331,1.2493807,-0.22101031,-0.07648251,-0.034113046,0.33113128,0.28984305,0.13686225,-0.14112161,0.3602385,0.3163666,0.07292477,-0.5435076,0.15214317,-0.026418442,-0.45818743,-0.14583094,-0.36089686,0.020018442,-0.32211527,-0.23335396,-0.17025098,0.04860351,-0.53587496,0.3697779,-2.641309,-0.13518855,-0.028202176,0.23857869,0.057253987,-0.12132935,-0.09555433,-0.45735452,0.646739,0.3467452,0.47653526,-0.6928358,0.46024656,0.62687236,-0.5211157,-0.14675984,-0.85775155,-0.18055084,-0.24117234,0.46890873,0.17411283,-0.30373782,-0.013252854,0.19366482,0.520021,0.03960667,0.114347495,0.37641826,0.5568339,-0.061342154,0.5880571,-0.03187883,0.40389842,-0.17744796,-0.23738702,0.3341386,-0.11338846,0.28428504,-0.36304286,0.08341093,0.38711032,-0.29841033,-0.85008734,-0.48158485,-0.030030916,1.1872222,-0.40353838,-0.5928527,0.26435387,-0.11029462,-0.02638994,0.19445232,0.5084007,-0.19174977,0.00075827754,-0.85785896,-0.09978233,-0.008968894,0.27069613,0.017863095,0.07390641,-0.54919434,0.8074406,-0.088863306,0.5515696,0.4409763,0.23552716,-0.17170651,-0.54665387,0.16075289,0.93708867,0.33796427,0.052125197,-0.29892197,-0.21842201,-0.13014151,-0.103964105,-0.12656944,0.62120104,0.7139822,-0.19246408,0.109511234,0.40901747,-0.32453138,-0.027214106,-0.19290236,-0.4794354,-0.17967303,-0.09347641,0.43625125,0.73473036,-0.11454546,0.2815576,0.009120324,0.3180497,-0.11570237,-0.55246943,0.56411934,0.7679905,-0.15697111,-0.06564711,0.58687913,0.3335112,-0.11411699,0.66111606,-0.49566334,-0.37615567,0.45691362,0.030869177,-0.43741298,0.31263262,-0.43519711,0.044380814,-0.9804179,0.27782378,-0.30904618,-0.38875514,-0.5380601,-0.05222952,-3.3579717,0.13832606,-0.20495763,-0.00549025,-0.20924327,-0.11578868,0.2843185,-0.39753813,-0.62430036,0.0972433,0.27602723,0.40078434,-0.18820013,0.020752046,-0.35427108,-0.23857376,-0.2843421,0.2726706,0.071518905,0.20451555,-0.099082395,-0.50697535,-0.039801907,-0.23649143,-0.11039174,-0.09922833,-0.55076796,-0.27219453,-0.010931505,-0.4301267,-0.41187605,0.66257715,-0.3493376,-0.06025475,-0.35060695,-0.03294832,0.012084403,0.32868668,-0.16787517,0.0876589,-0.13344671,0.06575279,-0.12373192,-0.16214971,0.22042938,-0.06433644,0.046085153,0.4587337,-0.14891268,0.038266174,0.57537425,0.45763466,-0.17852198,1.0387008,0.43703502,-0.08410144,0.33081603,-0.05961436,-0.20184804,-0.72636455,-0.1781892,-0.35274604,-0.6130303,-0.30394703,0.05287259,-0.34922048,-0.8252174,0.6140782,0.08410493,0.06525555,0.036076725,0.39256412,0.48340723,-0.046628926,0.09332122,-0.15439974,-0.34854868,-0.583831,-0.26219767,-0.87977844,-0.36607352,0.07708102,0.75255024,-0.29223222,-0.12512794,0.18183093,-0.09615783,0.029708069,0.14471333,0.038492706,0.21804142,0.5157746,0.1979738,-0.7564755,0.5789042,-0.10694955,0.10565523,-0.55426955,0.16889071,0.61769474,-0.78098726,0.3600058,0.5974045,0.1156702,-0.005277949,-0.6920809,-0.26515993,-0.009446161,-0.19249359,0.59245217,0.079442434,-1.0116287,0.77747506,0.1561545,-0.22727093,-0.85977024,0.5233248,-0.014551888,-0.23111956,0.08330897,0.35615572,0.06368957,0.18030642,-0.28135473,0.12870625,-0.43334407,0.368542,0.027507136,-0.23221795,0.37834427,-0.0332377,-0.15524109,-0.8038572,-0.20055307,-0.5668208,-0.31561118,0.25623316,-0.01831678,-0.023359181,0.009404323,0.21909904,0.5090384,-0.30899793,0.1000473,-0.12647615,-0.3387421,0.482346,0.689653,0.34730884,-0.4889095,0.6519289,-0.12452966,-0.09950174,-0.16788769,-0.019346574,0.3138244,0.09835351,0.32829872,0.05357996,-0.008175281,0.17419434,0.8562374,0.13307022,0.3562434,0.1076733,0.0066555953,0.5652116,0.030460963,0.23162436,-0.3029504,-0.55358034,-0.1371275,-0.30490947,0.19749673,0.47497186,0.18612495,0.41913202,-0.06851656,-0.023586724,-0.016266672,0.16542217,0.17934133,-0.9903554,0.39611068,0.30302644,0.49011278,0.8041171,-0.07036225,0.3391957,0.6560153,-0.27451125,0.12617977,0.4126591,0.11520219,-0.21987002,0.46818447,-0.77501136,0.19916888,-0.20228294,0.1533366,0.24353728,0.08553479,0.3920901,0.8802145,-0.12049552,0.16667996,-0.14990373,-0.23991439,0.12206478,-0.2037003,0.0894968,-0.22659619,-0.41742778,0.64880717,0.47883514,0.41737917,-0.23166847,-0.0078494,0.18976314,-0.20468964,0.31493577,0.113046885,-0.10694562,-0.061610024,-0.58246034,-0.079287395,0.8198349,0.07270396,-0.13791336,0.0030924848,-0.17026709,0.2515879,-0.17940901,-0.1621217,-0.20712207,-0.7113249,-0.113209434,-0.24135697,-0.4192645,0.6580065,-0.13727951,0.19967103,0.10838751,-0.0043133325,-0.16855909,0.05761042,0.1102746,0.4293804,0.09002344,-0.18010446,-0.2472765,-0.15901318,0.17447993,-0.33737865,-0.37495413,-0.123261884,0.23558177,-0.4269125,0.33630803,-0.40573272,-0.47094208,0.19047774,-0.20096496,-0.017487247,0.508875,-0.11423655,-0.13688563,0.14497186,0.0021245736,-0.15917632,-0.32527322,-0.250211,0.1937885,-0.06106421,-0.06298326,-0.11389266,-0.047627144,-0.11549253,0.2985544,0.18696281,0.16081071,0.240517,0.22419594,-0.49965072,0.041987862,0.26244864,0.5513518,-0.048062053,-0.06803646,-0.23549286,-0.23362921,-0.2887365,0.010838747,-0.07275186,0.18489338,0.1360722,-0.36665994,0.9183095,0.19448999,0.94904655,0.03563225,-0.3953715,0.19050145,0.5023037,0.0015505062,0.0044816094,-0.28105226,0.86309004,0.5546113,-0.19169863,-0.13861682,-0.6320944,-0.16958673,0.28731355,-0.1723394,-0.0072641796,-0.02430345,-0.72117436,-0.2182009,0.276954,0.31402102,0.022592962,-0.24803235,0.042152856,0.09862275,0.16234958,0.19117914,-0.54802024,-0.04585278,0.2981186,0.26112267,-0.03466127,0.054514714,-0.4021816,0.2901205,-0.57157195,0.07517824,-0.5291835,-0.030928025,-0.043219864,-0.019461062,0.15203866,-0.17253973,0.328353,-0.27099505,-0.3520876,-0.11065634,0.5020209,0.31585482,0.26541078,0.81877136,-0.3098605,0.030677391,0.13077737,0.60680825,1.1269511,-0.24086325,-0.0823408,0.34597096,-0.25939927,-0.62768143,0.08469852,-0.4892051,0.07762111,0.04924274,-0.44217846,-0.43092498,0.012915747,0.016112361,-0.027566712,0.083067454,-0.59940594,-0.12458635,0.32397628,-0.23836528,-0.16753806,-0.22885633,0.064832635,0.9021222,-0.39738178,-0.30454394,-0.09788479,0.124496035,-0.3231067,-0.78246117,0.11469752,-0.42016152,0.29663992,0.32598257,-0.3689029,0.0922913,0.19277914,-0.66634953,0.13049577,0.38593677,-0.27225545,0.08150984,-0.39275715,0.06304329,0.90151817,-0.11364007,0.08605274,-0.46456665,-0.6692293,-0.76134235,-0.18515442,0.18661985,0.060216513,0.058578465,-0.49034002,-0.08036914,-0.28585917,-0.046365302,0.06392871,-0.6994749,0.55249894,0.07893182,0.417999,-0.15741444,-1.0486609,0.05447053,0.08828611,-0.24689402,-0.58960164,0.6138659,-0.038154453,0.7890813,0.12967882,0.052344,0.1918702,-0.6554993,0.21219574,-0.32085484,-0.11315693,-0.64228487,0.060067765,453 -447,0.31618056,-0.116326354,-0.43790933,0.026592294,-0.16852938,0.2903851,-0.06488991,0.3361296,0.17899303,-0.38194773,-0.195137,-0.24551177,0.11745342,0.37090656,-0.17969082,-0.3147449,-0.1084953,0.30008966,-0.429351,0.5164589,-0.13215967,0.29060358,0.06193483,0.4586723,0.09367503,0.14267541,0.057735316,-0.095672645,-0.4136822,-0.2704216,-0.107002534,0.3689852,-0.5665066,0.18464515,-0.30608973,-0.4551904,-0.06556716,-0.5276702,-0.39089197,-0.66152316,0.1938001,-0.94808465,0.6369033,0.055060677,-0.0869205,0.23328148,0.21762082,0.19607614,0.016671443,-0.022463625,0.15367484,-0.22731006,-0.08917488,-0.26464584,-0.3217711,-0.4972878,-0.51816684,-0.030972281,-0.33606955,-0.045475993,-0.21369468,0.16431443,-0.24853897,-0.0758004,-0.069339715,0.24588527,-0.38372126,0.2944179,0.21826747,-0.20206143,0.20753574,-0.49360356,-0.21479042,-0.15251873,0.28007415,-0.35132763,-0.09000896,0.2625876,0.22272332,0.44555384,-0.20564081,-0.07539102,-0.3870078,0.068240546,0.09833851,0.61720645,-0.28936478,-0.5166749,-0.070410036,0.11155999,0.24866097,0.17954822,0.10981791,-0.0780048,-0.026320558,-0.26059872,-0.080427766,0.169024,0.41434756,-0.27063158,-0.38000798,0.3658214,0.4118275,0.10207195,-0.11968238,-0.15733418,0.08424862,-0.36992428,-0.19053893,0.09261148,-0.22552936,0.5888948,-0.005003546,0.22241719,0.5276957,-0.19011827,0.1001979,-0.06936703,0.13527547,-0.018312028,-0.22624059,-0.26054016,0.29715374,-0.21648799,0.19082832,-0.10722875,0.683982,0.21027432,-0.71423435,0.34295842,-0.6360822,0.042864706,-0.022613633,0.42624733,0.5268745,0.44927496,0.2549214,0.55131346,-0.24923193,0.095884554,-0.02841021,-0.24749017,-0.004576304,-0.2221772,0.035653606,-0.49014035,0.049118597,0.10075049,-0.22031738,0.1290582,0.35478336,-0.4897781,-0.13415064,0.19810799,0.9053842,-0.2852417,-0.12774453,0.6674558,0.98919,0.73457515,-0.011596201,1.2812608,0.2751018,-0.25829512,0.05988019,-0.33834597,-0.6567523,0.15129744,0.31121135,-0.83729374,0.4684868,0.21335039,-0.092568636,0.17958508,-0.4790186,-0.058183733,-0.1505913,-0.04241815,0.09325119,-0.054430343,-0.38918695,-0.2488373,-0.13926625,-0.23001216,0.2778564,0.29206055,-0.19312511,0.3857097,0.14409539,1.7993056,-0.049558103,0.13206714,0.10939957,0.42173338,0.11371643,-0.0098933,-0.05427279,0.3901394,0.16295193,0.12893942,-0.19777201,0.06675862,-0.24727185,-0.55657274,-0.19605319,-0.13946614,-0.17304961,0.14675646,-0.3318232,-0.17085505,-0.09227367,-0.17513518,0.44890267,-2.545927,-0.083942406,-0.025004629,0.38061768,-0.3832222,-0.35333315,-0.30756122,-0.41548157,0.32188544,0.18200128,0.37564135,-0.6383391,0.21912828,0.2900447,-0.44205683,-0.25784138,-0.56491023,-0.12760928,-0.00056857296,0.18187717,-0.04180256,-0.09300632,0.1443989,0.013139104,0.32655457,-0.03971398,0.044651512,0.33680555,0.4568932,0.07868584,0.2611157,-0.10945157,0.50395113,-0.3808622,-0.25659966,0.33386973,-0.36705294,0.42276335,-0.030035572,0.08935744,0.3902431,-0.28126594,-0.75948054,-0.63471884,-0.29564166,1.1133882,-0.20299633,-0.3548536,-0.05746139,-0.105704956,-0.24679868,-0.14359619,0.5296346,-0.15433009,0.011719248,-0.8248947,0.016382392,-0.16879018,0.34541076,0.058290165,0.15535513,-0.44282365,0.56142753,-0.1578661,0.4262411,0.28097436,0.20707619,-0.24677877,-0.4679171,-0.01422743,1.0561911,0.29769093,0.21617977,-0.16957322,-0.3568282,-0.28955093,-0.07607285,0.00051372394,0.48291197,0.40915465,-0.058799833,0.046644177,0.32129553,0.07960702,0.114158385,-0.18293251,-0.27160993,-0.0662905,0.008744137,0.51818186,0.6372174,-0.29513508,0.5256497,-0.23336227,0.38141748,-0.17272829,-0.3524911,0.3687454,1.0265478,-0.18738055,-0.10291053,0.7450876,0.40575483,-0.38553157,0.35390326,-0.66569585,-0.41744247,0.28765568,-0.1291499,-0.40353116,0.18779857,-0.12918003,0.11723832,-0.9113316,0.45026478,-0.14421593,-0.19551764,-0.6658975,-0.05347339,-2.4432647,0.08889108,-0.13047719,-0.16604027,0.020579457,-0.11541498,0.1411985,-0.57114875,-0.5322057,0.15543309,0.112610884,0.49558973,-0.1369377,0.31304002,-0.16655578,-0.3851893,-0.17268144,0.26379994,0.30795035,0.35856822,-0.2421514,-0.47688326,-0.09184636,-0.031307634,-0.22671056,0.06608558,-0.7972559,-0.34399632,-0.12408701,-0.4924877,-0.15810248,0.6315827,-0.5970635,0.008107139,-0.22418468,-0.0575178,-0.16967642,0.13785253,0.0844735,0.21048376,-0.0011657849,-0.043344624,0.008943558,-0.21838193,0.4609943,0.11901299,0.2304455,0.4736473,-0.18671568,0.18356933,0.28326124,0.53666526,-0.048105605,0.75141007,0.5706664,-0.124965705,0.19918548,-0.27873427,-0.16701405,-0.55948025,-0.4112325,0.022281902,-0.41701588,-0.4413716,-0.08834733,-0.39414415,-0.8305102,0.66897666,-0.1704971,0.09821926,-0.048736814,0.36984086,0.52050745,-0.39052588,-0.059239753,0.010127522,-0.085219786,-0.48675847,-0.4710331,-0.35235733,-0.33169454,0.06653179,0.99956405,-0.16266926,0.119042285,0.13809453,-0.14668977,-0.07535104,0.12624355,0.10017408,-0.030093106,0.6662879,-0.079036355,-0.57085216,0.43233132,-0.14044479,-0.18067022,-0.61488646,0.2701798,0.5634181,-0.7527877,0.5526246,0.4644782,0.031325523,-0.18859695,-0.52187425,-0.31564596,-0.1339675,-0.1246724,0.141844,0.16446856,-0.510365,0.24382676,0.3539441,-0.3480465,-0.7363807,0.50137514,0.0167371,-0.3756929,-0.0055554197,0.29404226,0.03125069,-0.028474996,-0.19178925,0.2448199,-0.36017624,0.3000808,0.09397477,-0.15597223,0.20863827,-0.24592744,-0.09975474,-0.8301312,0.38079724,-0.35334593,-0.45353493,0.41731152,0.11098527,-0.047071,0.27880168,0.12554505,0.32367215,-0.4110822,0.0029777843,-0.015921244,-0.21484216,0.28570157,0.2170675,0.55521786,-0.5253519,0.5566521,-0.11133184,-0.26985392,0.022650795,0.016724126,0.51205176,0.012390405,0.20428261,0.1003482,-0.32179937,0.16801058,0.7010934,0.19567879,0.38750595,0.10955145,-0.06099022,0.27743393,0.06417818,0.050914086,0.02202796,-0.5972823,-0.064147666,-0.22046116,0.11620821,0.37758908,0.105744086,0.36287507,-0.2558323,-0.27652428,0.058380913,0.14082143,0.16155526,-1.0333936,0.14998674,0.01334316,0.74782956,0.32791528,0.049934857,0.12801269,0.6438045,-0.22522299,0.07583641,0.38309908,-0.1400247,-0.39074925,0.58140945,-0.58431065,0.2779295,0.004517398,0.011674159,-0.020846201,-0.047099177,0.22850081,0.81487185,-0.22221348,0.09740906,-0.01563497,-0.27044842,-0.018504636,-0.260459,0.32570282,-0.580869,-0.20549496,0.6438459,0.4430392,0.43793112,-0.21300279,0.08310955,0.06178238,-0.18944037,0.20162654,0.22537829,0.31608003,0.11935259,-0.5644312,0.0008824212,0.7268964,-0.0448745,0.0049760765,0.039014578,-0.30686074,0.26041284,-0.26477963,-0.010470403,-0.08592522,-0.6643155,-0.025716636,-0.57011193,-0.42819193,0.4364331,0.08513416,0.15215273,0.122805014,0.03491838,-0.22972319,0.48650816,0.23345329,0.83103794,0.066767626,-0.24214318,-0.25010866,0.30551872,0.23331411,-0.14789112,0.095742844,-0.110728465,0.17573152,-0.51846546,0.307152,-0.08942883,-0.22585031,-0.08614846,-0.1531249,0.1054845,0.4898696,0.11205391,-0.03765751,-0.027226636,-0.056819685,-0.48715836,-0.019161072,-0.18929422,0.09020444,0.3412682,-0.098851785,-0.1650507,-0.16328396,-0.3097546,0.32060698,-0.00958424,0.40004662,0.5994557,0.18120918,-0.21658978,-0.022302065,0.07607259,0.5314993,-0.14182876,-0.19160354,-0.3075866,-0.32737923,-0.24435234,0.30222756,-0.19653805,0.14769255,0.2000618,-0.30288342,0.88417065,-0.045472775,0.99267,0.07567153,-0.24952282,-0.06267677,0.44708714,-0.016052887,-0.039069302,-0.42172375,1.0902647,0.6223067,0.18044195,-0.0076290583,-0.089617826,-0.048242204,0.083561614,-0.22897728,-0.20316401,0.0069287247,-0.5346065,-0.2742438,0.19882563,0.30282336,0.14941724,-0.106590234,0.29320398,0.19795202,0.13088147,0.24815392,-0.4952774,-0.24995486,0.3793966,0.40943268,-0.019134032,0.25085765,-0.3406556,0.39625028,-0.39492688,-0.00040388107,-0.4479682,0.07772682,-0.14386173,-0.23159565,0.13976164,0.00047939163,0.4273145,-0.44991305,-0.28181985,-0.15842007,0.33221117,0.1732893,0.0879262,0.44940853,-0.22395824,-0.01908746,-0.013283761,0.5034514,1.1283073,-0.38298774,0.1019912,0.4199989,-0.20208745,-0.5629258,0.3835027,-0.32030708,0.17892821,-0.17321107,-0.17520557,-0.5080156,0.2568464,0.1248749,-0.10075416,-0.1333926,-0.42779508,-0.045607537,0.23743495,-0.30251804,-0.23786448,-0.23572288,0.09460856,0.52746665,-0.15074696,-0.3405002,0.17334117,0.22794403,-0.21450724,-0.38017735,-0.11019908,-0.38004285,0.07684892,0.18212487,-0.34070224,-0.20340729,-0.024889281,-0.38877004,0.0675989,0.20533194,-0.37141708,-0.043819923,-0.26596838,0.07840241,0.8794039,-0.17934923,-0.015446224,-0.49088404,-0.38505316,-0.90032345,-0.39519963,0.30505088,0.14906137,0.027363848,-0.5690642,0.032723103,-0.10124094,-0.30199438,-0.15914421,-0.33524898,0.3074856,0.23154533,0.4322137,-0.26968294,-0.68586415,0.16260715,0.011394133,-0.1468147,-0.5941094,0.35959777,0.08027729,1.0882565,-0.073947154,0.016839594,0.45006588,-0.5727411,-0.19246863,-0.10438924,-0.069787726,-0.6604322,0.08852208,454 -448,0.20462254,0.03321197,-0.5317203,-0.23621331,-0.08419818,0.23038629,-0.14453268,0.38850254,0.15417223,-0.61709684,0.07592409,-0.108394735,0.07956212,0.40530446,-0.13396832,-0.4908368,0.20548926,0.011341544,-0.5356576,0.3072409,-0.46656507,0.15661423,-0.12574634,0.22547671,-0.007538374,0.28641966,0.19033787,-0.3546259,-0.28909636,0.016875539,-0.1143124,0.17436512,-0.44138846,0.22036743,-0.11785289,-0.15832019,0.19704802,-0.23093328,-0.51016235,-0.5775796,0.14859827,-0.7391213,0.5059338,0.108061805,-0.11400863,0.21856005,0.1657822,0.14466214,-0.24631135,-0.06896581,0.33065414,-0.36259422,-0.2169586,-0.23173453,-0.36112276,-0.6105991,-0.55680764,-0.0497712,-0.5123871,-0.20270446,-0.3559876,0.09900213,-0.35199967,-0.18470852,-0.045826316,0.43440676,-0.37065792,-0.053863347,0.11334671,-0.30285195,0.22069001,-0.63805723,-0.102426186,0.03328534,0.37876892,-0.2949564,-0.08548416,0.40874985,0.30403677,0.49081972,0.020392152,-0.2121257,-0.360853,-0.1493307,0.122396156,0.49674144,-0.23310423,-0.46593386,-0.009094162,-0.0808252,0.08614584,0.101129904,0.016004797,-0.31800586,-0.14185928,0.2192022,-0.24444234,0.51507246,0.59303534,-0.36675748,-0.15956272,0.45380238,0.47931892,0.065539375,-0.24750963,0.043139525,-0.07821612,-0.44788218,-0.1346448,0.2715065,-0.21393606,0.40763107,-0.19334888,0.32706395,0.80573004,-0.15352729,0.043730352,0.1172201,0.115204915,-0.0084726,-0.12614438,-0.027100038,0.06116522,-0.5416563,0.12689231,-0.2707052,0.82309246,0.17722164,-0.80203545,0.41697237,-0.431546,0.076929554,0.0283725,0.5513957,0.5662924,0.39170223,0.14955114,0.7359342,-0.5762825,0.024256127,0.10878665,-0.42153722,0.13787067,-0.06801487,0.06386582,-0.5149871,-0.11778386,0.10225002,0.078992255,0.059080865,0.22115466,-0.42561898,-0.09286749,0.37897918,0.8678668,-0.34438905,-0.18896,0.29650545,1.0682299,0.7614188,0.03888011,1.1713077,0.12005932,-0.29926077,0.109364115,-0.25547424,-0.7518957,0.28648704,0.33081284,0.23686323,0.1460271,0.19487491,0.19801223,0.30036047,-0.4844949,0.104666255,-0.18218902,0.24857916,0.15308608,-0.09690582,-0.24803284,-0.24357916,0.0380853,-0.11612763,0.20106263,0.18663676,-0.17509656,0.25036412,0.20526086,1.355651,-0.05843476,0.111377835,0.049646597,0.71653754,0.11010532,0.10620683,-0.087615676,0.40676418,0.32512143,0.015391505,-0.48317465,0.029699573,-0.35020456,-0.47494096,-0.21284582,-0.4071918,-0.1590767,0.037937608,-0.45607647,-0.10274004,0.10744758,-0.530239,0.6021012,-2.852514,-0.068862855,-0.15031849,0.32604602,-0.19996616,-0.16536322,-0.08735527,-0.413322,0.45424923,0.31316376,0.41982746,-0.61445385,0.38478252,0.6102396,-0.4029772,-0.14012696,-0.67432624,-0.13832001,-0.24894652,0.23103204,0.19186516,-0.17821513,-0.06396003,0.20849654,0.4236431,-0.09541652,0.058550425,0.23195755,0.1997973,0.03766797,0.512973,-0.09409972,0.6066182,-0.2964156,-0.14536344,0.26829955,-0.49368435,0.09730513,-0.0240648,0.13737448,0.52923244,-0.09232137,-0.79526037,-0.6063923,-0.28462243,1.0733258,-0.2770674,-0.28608492,0.40906587,-0.17628439,-0.26145032,-0.12579152,0.56421787,-0.04410303,0.12428714,-0.68367606,-0.034952383,-0.09637386,0.16614243,-0.12774768,0.10761206,-0.39829472,0.77409756,-0.043865394,0.52401096,0.236659,0.18396525,-0.4127813,-0.29832342,0.020856513,0.7541253,0.19869478,0.1560353,-0.12099888,-0.25894454,-0.22458243,-0.22434609,0.13749182,0.49403995,0.5905085,-0.09616334,0.014922278,0.30239272,-0.10660629,-0.07317817,-0.16298512,-0.3614683,-0.042840745,0.1872515,0.57739055,0.45972404,-0.1827086,0.41026944,-0.14532845,0.18429706,-0.31026417,-0.39414543,0.5284667,0.599309,-0.19180237,-0.25879207,0.4069603,0.45833877,-0.28721604,0.32245514,-0.72897893,-0.38753682,0.6164113,-0.14901343,-0.5144215,-0.06930054,-0.2710375,0.18435419,-0.75937873,0.38818482,-0.19363107,-0.6827876,-0.4175304,-0.16733791,-3.5615008,-0.07266346,-0.34251684,-0.113456026,-0.05324184,0.10717155,0.23110892,-0.56806195,-0.26991352,0.12043587,0.096133016,0.6060257,0.086772576,0.021591434,-0.4031114,-0.13424285,-0.24146244,0.22746415,-0.0068872147,0.27298814,-0.06334532,-0.4346015,0.25698477,-0.22026123,-0.34621546,0.09525993,-0.52590686,-0.37817234,-0.19076847,-0.5825421,-0.40796638,0.7606606,-0.605642,0.037875872,-0.29377255,0.039510462,-0.24348356,0.386077,0.21615908,-0.0032367196,-0.041314453,-0.020740347,-0.0777269,-0.49581695,0.3650792,-0.022289345,0.36957887,0.46989962,0.04705013,-0.102271564,0.647638,0.57719916,-0.035380572,0.95500964,0.3545852,-0.033889253,0.43808392,-0.2755471,-0.20807214,-0.50108564,-0.44877085,0.11284467,-0.3736946,-0.2754564,-0.049330354,-0.34848437,-0.6794356,0.41320756,0.107283406,0.100651465,-0.0026050976,0.1372285,0.3093794,-0.23574856,-0.096487276,0.024683671,-0.17895474,-0.48119488,-0.33427528,-0.7024718,-0.52460533,0.087852105,0.886007,-0.07523038,-0.14148116,0.09092803,-0.33551598,0.16141064,0.2894042,0.16986445,0.23567311,0.50558364,-0.13719732,-0.68220145,0.5100059,-0.24097982,-0.004180342,-0.5830709,-0.0015719533,0.705516,-0.6981939,0.58462226,0.36892393,0.05357015,-0.23802952,-0.4672344,-0.2595677,-0.2097356,-0.21539171,0.2163085,-0.15063033,-0.9821431,0.44293836,0.20209742,-0.37366793,-0.49312314,0.49066895,-0.04481062,0.026454816,0.17353562,0.38594374,0.047062654,-0.1110659,-0.111548916,0.113579996,-0.50482875,0.36200455,0.33030686,0.10294598,0.43937343,-0.14775912,-0.14741485,-0.6376999,-0.3018472,-0.4483934,-0.2896116,0.25426933,0.027416382,0.17781186,0.14619151,-0.07692694,0.29908055,-0.33790976,0.12050308,-0.104310825,-0.2952424,0.3029201,0.35952976,0.35489702,-0.34222007,0.6679916,-0.024532648,0.009123698,0.020792374,0.017828953,0.5192357,0.32089314,0.43287757,0.030111184,-0.17247322,0.2634261,1.137824,0.29527515,0.4248662,0.1471967,-0.1338553,0.24279754,0.06109767,0.022255434,0.08876974,-0.49379987,-0.08345991,-0.18888076,0.17837422,0.35893154,0.10908791,0.34605545,0.007057999,-0.226248,0.030137384,0.17025311,-0.086308636,-1.328293,0.34015724,0.34972593,0.81064624,0.17656729,0.06505007,-0.018007457,0.821349,-0.17689559,0.1669743,0.14050199,-0.21662895,-0.48894623,0.6038065,-0.7515473,0.50416607,0.008305396,-0.08163362,0.040286977,0.004669509,0.2783624,0.90890396,-0.202505,0.12573524,0.07154008,-0.3234423,0.29890266,-0.40124485,0.20980957,-0.31605196,-0.27421495,0.48959488,0.48806515,0.42292634,-0.14124103,-0.027096357,-0.05073472,-0.18707392,0.17847721,-0.14909838,0.025052914,-0.1204836,-0.6245772,-0.23515725,0.4203606,0.09322602,0.29227147,0.237875,-0.0985564,0.5112985,-0.12859014,0.14943083,-0.11665017,-0.4671075,0.0873229,-0.006844797,-0.4567501,0.4990644,-0.36241907,0.43760014,0.27268124,0.0027972634,-0.10138909,0.52878326,0.3290069,0.77573395,-0.10175736,-0.20694253,-0.4637766,-0.12888396,0.10134578,-0.26759043,-0.10253294,-0.4474029,-0.07817139,-0.49155268,0.20842838,-0.23583505,-0.2204973,0.033080287,-0.2958171,0.06364461,0.6407549,-0.06452401,-0.15358461,-0.025203113,0.032861274,-0.11831548,-0.030572874,-0.2654498,0.21667962,0.094278954,0.0478274,-0.23969911,-0.3195634,-0.17609684,0.12544468,0.04230594,0.18431698,0.40654883,0.07554851,-0.23832531,0.03490217,0.19420172,0.57640225,0.14562032,-0.034113668,-0.17715561,-0.25613695,-0.2665234,0.08281155,-0.100422785,0.22581625,0.19578576,-0.38792562,0.60698825,-0.3530536,1.1264176,0.19446513,-0.26330742,-0.010087328,0.5776178,0.025333779,0.17744756,-0.3708015,0.7202214,0.41589567,-0.022760093,-0.18000586,-0.41817507,0.013819271,0.36811957,-0.08721212,-0.20042913,0.012268598,-0.78543967,-0.20956203,0.3677114,0.19164518,0.325239,-0.06068139,-0.17927395,0.18610118,0.16893479,0.54960835,-0.6359878,0.0069857496,0.29395872,0.1780088,0.07914775,0.13088927,-0.36459112,0.3918102,-0.5344804,-0.040714372,-0.17176557,0.045125734,-0.39933532,-0.20191817,0.20292547,0.035554502,0.4807911,-0.097361766,-0.23830414,-0.077619076,0.5888534,0.22249894,0.2922924,0.67962205,-0.060159948,-0.08212356,0.11226861,0.31190827,0.87261873,-0.2927482,-0.005614255,0.42406207,-0.37972468,-0.6051623,0.28598592,-0.48326555,0.22408538,-0.053402882,-0.38837764,-0.2197143,0.23941055,0.27037725,0.021197487,0.17139904,-0.54014766,-0.22218823,0.30169296,-0.4119095,-0.2929682,-0.21648143,0.13321377,0.5390128,-0.40747693,-0.09991813,0.17728603,0.27782083,-0.16739824,-0.5515629,0.0803191,-0.34185463,0.431308,0.10946699,-0.46294695,0.014413608,0.08252458,-0.3333288,0.33023474,0.23136675,-0.41470575,0.019279571,-0.095989905,-0.061842434,0.69093996,-0.07580023,0.14232771,-0.54427946,-0.325634,-0.91907275,-0.27205014,0.3067911,0.12764464,-0.121782534,-0.44579035,-0.1739386,0.0837222,-0.045511026,0.043130044,-0.50573915,0.43880266,0.061026342,0.41602057,-0.03959114,-0.86249775,0.02721847,0.15081705,-0.040635288,-0.5076919,0.52782094,-0.29128,0.827375,0.058971163,0.1287945,0.12203749,-0.35394642,0.1700858,-0.39483786,-0.27216247,-0.55045944,0.038068723,455 -449,0.5330191,-0.1667318,-0.5979684,-0.21661724,-0.31873578,0.1847531,-0.35157543,0.24135756,0.29157168,-0.16154051,-0.118956044,0.022826228,0.18211898,0.45495528,-0.12701829,-0.9416556,0.05478539,0.32023033,-0.5873104,0.57069606,-0.5189806,0.3081165,0.042499278,0.43890736,0.25148222,0.084100805,0.12671581,0.1676334,-0.083465986,0.062386017,-0.052630518,0.23900546,-0.56440693,0.13852407,-0.25714606,-0.4925379,-0.2707037,-0.4802126,-0.3406231,-0.89660424,0.3659552,-0.81505287,0.64076334,-0.18869124,-0.46702358,0.075103804,0.08309867,0.12680931,-0.22646295,-0.094251394,0.18992485,-0.23522094,-0.17030177,-0.17503121,-0.290785,-0.4058681,-0.5958201,0.025679203,-0.6895266,0.119196855,-0.13713269,0.13987735,-0.3385661,-0.013327869,-0.10916033,0.48509052,-0.32110897,0.08962561,0.28383118,-0.0950739,0.08112711,-0.41722077,-0.10262445,-0.10617894,0.36495638,0.08079965,-0.49980664,0.29923338,0.39927548,0.50163305,0.06778607,-0.44364443,-0.3715029,0.069530465,0.096547626,0.49398112,0.05101761,-0.38893107,-0.4836538,-0.011009506,0.3332341,0.08898958,0.045824032,-0.28104416,-0.08224607,0.050877668,-0.09012128,0.61609566,0.5140289,-0.24315913,-0.09807386,0.32651773,0.53889364,0.19663158,-0.31465262,0.095394,0.029827228,-0.6278275,-0.16264808,0.10563507,-0.07440402,0.63085526,-0.37564352,0.1530642,0.5700884,-0.1420683,-0.37685442,0.09291696,-0.005156449,-0.07915517,-0.23557453,-0.20555861,0.26810485,-0.5505105,-0.023003897,-0.20916994,0.6543546,0.2734217,-0.9180976,0.39887252,-0.49257892,0.3053176,0.04522913,0.63025033,1.1193212,0.44462886,0.34975663,0.9043481,-0.32072097,0.114062384,0.26825044,-0.44048056,0.050498135,-0.19412567,0.14496008,-0.5831021,0.04252961,-0.07051417,-0.23405112,0.15674771,0.7475868,-0.49850026,-0.123800874,-0.1026078,0.5922588,-0.37285396,-0.24854349,1.155596,1.0522152,1.1924458,0.09310765,1.3050703,0.44460732,-0.056056015,-0.09163545,-0.18914123,-0.69370365,0.24584839,0.10351692,-0.34525728,0.7776331,0.02032673,0.058569986,0.48850566,-0.3200376,-0.11050554,0.054222196,0.17947683,-0.077548705,-0.07096248,-0.51022214,-0.34365073,0.16162512,0.11502273,0.19209644,0.3374465,-0.22208823,0.7720833,0.103966355,1.2387229,0.13902943,-0.18703093,-0.16870871,0.37853232,0.41318497,-0.23474209,-0.26285234,0.33675876,0.42831537,-0.114244774,-0.56569254,-0.15096048,-0.35532758,-0.16538687,-0.1893989,-0.33982614,-0.09651508,-0.29884106,-0.3796887,-0.2262713,0.101205066,-0.41988117,0.4655302,-2.3690765,-0.5515973,-0.025084661,0.29448012,-0.04705145,-0.473073,-0.42834383,-0.6292137,0.3577493,0.2425939,0.4287708,-0.78517085,0.45136425,0.3500723,-0.6655427,-0.07627903,-0.7227332,-0.05354442,0.026352942,0.38610226,-0.032472108,-0.24658029,0.13580814,0.31289315,0.7065887,0.060676064,-0.012802647,0.45765516,0.6167108,-0.17701821,0.49257842,0.09911042,0.66507083,-0.18410088,-0.12393902,0.4396135,-0.35046366,0.3321612,-0.2645026,0.12258851,0.623478,-0.51108754,-0.84686595,-0.55176216,-0.016006645,1.2800217,-0.36925894,-0.48422793,0.020060828,-0.391355,-0.29050046,0.18295991,0.46826896,-0.048698187,0.03188449,-0.7405637,-0.21788533,0.1855615,0.06023676,-0.17839918,0.22696564,-0.32355312,0.6922129,-0.17950591,0.39593193,0.35403326,0.14745788,-0.21186724,-0.65531284,0.23293538,0.758701,0.26954132,0.07630899,-0.427749,-0.25052845,-0.35214335,-0.20463812,0.056917462,0.6315225,0.5910166,-0.11527895,0.05618828,0.42980137,0.0307614,0.14642325,-0.19221221,-0.30266908,-0.23444855,0.04947256,0.6615532,0.9798058,-0.2510038,0.5656871,-0.10848717,0.20513186,-0.0794975,-0.68924683,0.759028,1.0664815,-0.27242455,-0.35717988,0.3592486,0.14927197,-0.43355793,0.46017966,-0.39804888,-0.20650163,0.58868724,0.034187123,-0.2585444,0.29134035,-0.38001236,0.1264576,-0.8696385,0.24103239,-0.09447446,-0.582701,-0.6391342,-0.19633736,-3.8801448,0.14357014,0.022768319,0.031859428,-0.23497216,-0.29553345,0.2042661,-0.50808316,-0.7671798,0.048669994,-0.00653424,0.7056952,-0.3117195,0.0943627,-0.31060606,-0.45420012,-0.35507086,0.25134033,0.2712632,0.5105565,-0.0074871522,-0.37540603,0.080536745,-0.45896897,-0.59008604,-0.16322266,-0.75989485,-0.4909644,-0.12733427,-0.66200536,-0.28495792,0.7882622,-0.34639543,0.048239343,-0.32531086,0.04779189,0.05537392,0.34343284,-0.021041395,0.101729564,0.19006209,0.017877916,0.10529393,-0.08193477,0.22082332,0.007715766,0.21664225,0.4054515,-0.0944634,0.43367764,0.6389619,0.8726286,-0.15004556,1.0424182,0.35250887,-0.077623256,0.26869297,-0.20384811,-0.34467217,-0.6675028,-0.14499633,-0.23725213,-0.6755763,-0.43084636,-0.19248597,-0.45007125,-0.9804129,0.4485759,-0.0031151006,0.19879031,-0.10055732,0.4452822,0.511835,-0.17552508,0.17732306,-0.21976106,-0.38580346,-0.5527529,-0.39557832,-0.69031364,-0.6121529,0.08453585,0.84333813,-0.14281853,0.026894907,-0.053002425,-0.49867788,0.22118306,0.27583647,0.2226878,0.20848384,0.2958364,-0.15365975,-0.7124157,0.14585085,-0.253722,-0.1268501,-0.6206721,0.22762145,0.71896166,-0.47069654,0.5792284,0.41299608,0.17947435,-0.045531187,-0.58848953,-0.042626016,0.17019643,-0.14231773,0.72698075,0.35790667,-0.60233194,0.58027077,0.2204748,-0.13581927,-0.6171277,0.5704659,-0.00806966,0.007966944,-0.083045505,0.5022331,-0.036080923,-0.035101365,-0.18200563,0.1290781,-0.5600055,0.21921457,0.22408852,-0.029977152,0.2804773,0.057324264,-0.26405483,-0.7558343,-0.14574681,-0.6109322,-0.29110596,-0.040184226,0.12420894,0.27269605,-0.18710062,0.28254262,0.43300357,-0.31751826,0.05339023,-0.23290761,-0.2559578,0.31862,0.56127816,0.3198585,-0.47991082,0.687839,0.030767053,0.07700542,0.034779344,-0.08881031,0.39519194,0.26162767,0.43373445,0.27189702,0.026131127,-0.051584255,0.6444705,0.23589425,0.41749796,0.23139203,-0.27273256,0.10618604,0.08642864,0.43720534,-0.21380305,-0.20344631,0.047951933,-0.30753464,0.22346838,0.5427629,0.2099085,0.08816164,-0.123097196,-0.30663034,0.13235576,0.119602926,-0.062898815,-1.7911146,0.46382698,0.38976097,0.75287706,0.35957885,-0.046060685,0.0010597706,0.43549326,-0.39297867,0.10312695,0.54671717,0.048710447,-0.2944837,0.49158064,-0.7454896,0.49775696,-0.18913303,0.16221325,0.2171541,0.099503435,0.37986448,0.9279334,-0.15158577,0.09074599,-0.08242234,-0.120383516,0.15196338,-0.33405086,0.027688235,-0.4786769,-0.3191785,0.8149253,0.41157055,0.39042202,-0.43032566,0.04920571,0.04564147,-0.17439492,0.1333688,-0.0006919993,-0.011026795,-0.3229761,-0.65500915,-0.17547129,0.49503753,0.027817488,0.11415822,0.14848697,-0.21728878,0.2404627,-0.06509222,-0.011213005,-0.19140713,-0.9028273,-0.19765688,-0.31633767,-0.5627081,0.56782764,-0.38702223,0.25355902,0.27232778,0.022865878,-0.3455537,0.19468312,0.041420996,0.7091693,0.20754561,-0.09592422,-0.22344184,0.19278334,0.43546385,-0.35846907,-0.060100455,-0.30916032,0.26498583,-0.43827057,0.5251824,-0.1816306,-0.37167114,-0.13502665,-0.018787,0.008310063,0.41329965,-0.34044117,-0.10459956,0.028686536,0.06182479,-0.23982465,-0.160293,-0.30986282,0.26674542,0.14774469,-0.26389328,-0.018074155,0.031345267,-0.1336559,0.4357381,0.0040164376,0.27534673,0.461164,0.0040677446,-0.32616535,0.03682675,0.17411272,0.5409387,0.33095354,-0.33613792,-0.45187297,-0.20800985,-0.418576,0.35941258,-0.15816939,0.052963313,0.08676902,-0.25230595,0.68751776,0.1497835,1.353577,0.04190443,-0.3650991,0.13804662,0.5968947,0.12225338,-0.10777758,-0.23915373,0.9385548,0.46846333,-0.26851568,-0.05559483,-0.5011332,-0.09660586,0.30155304,-0.25347278,-0.21199211,-0.1516095,-0.69089764,-0.18697342,0.204772,0.10054896,0.16591416,-0.14875767,0.100975044,0.10012921,0.04064581,0.33367515,-0.5596051,-0.12300159,0.4332552,0.2500196,0.013446687,0.11812067,-0.33414772,0.39182827,-0.562736,0.08875382,-0.50397825,0.23190962,-0.12239998,-0.38404015,0.31091315,0.17680784,0.20563708,-0.30087137,-0.3147722,-0.4315836,0.5561442,0.15652843,0.08483742,0.50858647,-0.19046034,-0.20882286,0.45430037,0.47277185,1.2341012,-0.092440896,0.12396972,0.2916114,-0.2847471,-0.62933403,0.22398856,-0.5226856,0.34525946,-0.09369801,-0.26205948,-0.65338475,0.13202292,-0.013208575,0.19206135,0.12937471,-0.58249086,-0.28788158,0.33593076,-0.26222256,-0.05584254,-0.37733343,-0.005944844,0.57770854,-0.34350422,-0.47728953,-0.009096571,0.23910463,-0.26747552,-0.63146335,0.13581456,-0.3869265,0.43859452,0.04351254,-0.38524956,-0.033966567,0.21911065,-0.524518,0.2552654,0.43461823,-0.43204588,0.17553835,-0.19446182,-0.11715715,1.0965954,-0.38026524,0.42662236,-0.49315313,-0.593456,-0.96869105,-0.24104404,-0.010782204,0.12508836,-0.107077,-0.81482476,-0.089553766,-0.18560669,-0.14987575,0.14156635,-0.5591289,0.46610168,0.17239107,0.3607963,0.04907493,-1.030659,-0.013105606,0.13659994,-0.2752121,-0.54997593,0.60628045,-0.045944426,0.7191931,0.14083888,0.2778742,0.15999115,-0.5802719,0.31150988,-0.27138105,0.0047249966,-0.5742178,-0.06595205,467 -450,0.47834542,-0.14273867,-0.29396996,-0.07148707,-0.10321995,0.29629704,-0.13581808,0.30490538,0.048996765,-0.5285431,-0.26527706,-0.22844408,0.07804785,0.35737976,-0.25225264,-0.40626097,-0.022298638,0.18054093,-0.42861217,0.47528532,-0.4040227,0.4135201,0.18762067,0.40130132,0.19780533,0.28647348,0.30674738,-0.23660158,-0.37085757,-0.22642335,-0.20719096,0.17380211,-0.53191835,0.096261226,-0.117081285,-0.44121125,0.0151199205,-0.46471828,-0.2350401,-0.70348686,0.42364755,-0.9670745,0.53387064,0.04722766,-0.21249728,0.39730725,0.11125275,0.1429217,-0.2209284,0.06716423,0.20941556,-0.26445538,-0.00022329178,-0.2327832,-0.09205141,-0.3242218,-0.6198438,0.17572837,-0.45218903,-0.20575173,-0.31681678,0.15203223,-0.19429366,0.06489094,0.0039503616,0.4172361,-0.4120946,-0.1262351,0.105002105,-0.23599707,0.2587073,-0.5415287,-0.25997385,-0.10543947,0.31753424,-0.28707042,-0.08554826,0.1833569,0.301425,0.5426118,0.027715117,-0.055105235,-0.39167854,0.014865892,0.041886587,0.5375585,-0.14165404,-0.56566757,-0.19106553,-0.18491246,0.20122756,-0.014087021,0.15767698,-0.1346183,-0.09189733,0.027668906,-0.25206265,0.3334939,0.47403198,-0.44608182,-0.30771664,0.4029728,0.5066122,-0.07105916,0.014976497,-0.08739761,0.006150995,-0.4796583,-0.11637713,0.16961214,-0.2697091,0.5873187,-0.18102908,0.35393476,0.6685295,-0.2506042,0.07073304,-0.014760624,0.039826963,-0.20489308,-0.031375222,-0.19306247,0.18047203,-0.3282624,-0.010342581,-0.31250316,0.9941836,0.17792289,-0.67012817,0.3206697,-0.4378552,0.15759684,0.009119206,0.5681391,0.4646509,0.43517366,0.33092484,0.6528572,-0.5261423,-0.036819525,-0.0554034,-0.35204133,-0.07871906,-0.24062102,-0.0633462,-0.33775237,0.10746177,0.20798783,-0.10537411,0.032233406,0.60738295,-0.5664944,0.11184013,0.13819213,0.77027434,-0.3321503,-0.13390757,0.8850283,0.9684697,0.88508904,0.028071016,1.1544313,0.30947632,-0.361401,-0.061746716,-0.4036133,-0.5511868,0.2741974,0.41246256,-0.35990843,0.38138396,0.09498457,-0.08059193,0.3398289,-0.46642825,-0.0076928735,-0.2226292,0.08522027,-0.011280141,0.086814515,-0.45054606,-0.27627507,-0.02022894,-0.01787528,0.33966848,0.23866208,-0.29789656,0.54302174,0.083687015,1.4842957,-0.13509949,0.120852254,0.0067044008,0.47973388,0.09071381,0.104137145,-0.084988214,0.34260824,0.32221323,0.08875646,-0.6628242,0.027477475,-0.16212818,-0.5601004,-0.23479693,-0.26837987,-0.17239383,0.07552232,-0.37929183,-0.22553132,-0.0706687,-0.37191895,0.40022114,-2.53021,-0.14075881,-0.0059220493,0.2584999,-0.2438203,-0.41069454,-0.08630369,-0.5841952,0.33918157,0.35793945,0.43193692,-0.68013877,0.19325624,0.38031787,-0.3932825,-0.26710746,-0.58458996,-0.051080763,-0.080982484,0.32722563,0.018969268,-0.1983618,-0.089057155,-0.037435073,0.5131995,-0.04111827,0.064887695,0.27377498,0.3669548,0.12414432,0.40885878,0.2147224,0.6025972,-0.19425377,-0.13677125,0.4637147,-0.3714103,0.2876635,-0.2482251,0.13624169,0.3339395,-0.5006591,-0.82777923,-0.71667445,-0.19117442,1.3112704,-0.14159362,-0.49120674,0.14423452,-0.038095795,-0.19699891,0.015087182,0.42287722,-0.23576058,-0.013387923,-0.79356843,0.031094562,-8.752303e-05,0.30506244,0.074099004,0.12745441,-0.49695587,0.6360439,-0.065863825,0.26943046,0.24544685,0.2229161,-0.3178065,-0.57876045,0.10973228,1.1577307,0.32045317,0.19523844,-0.30666497,-0.27053052,-0.29169875,-0.13054667,-0.025758576,0.47461677,0.78242856,0.11383244,0.10551683,0.29963073,-0.011297425,0.19299795,-0.10346796,-0.26170525,-0.11906821,0.0028480205,0.5796453,0.5650291,-0.1700059,0.39991316,-0.23907603,0.38327318,-0.16548602,-0.3736441,0.6550188,0.95657635,-0.1802921,-0.1982332,0.6610366,0.5654248,-0.30399707,0.43530703,-0.6621068,-0.5542451,0.45476896,-0.23253189,-0.42049533,0.27675885,-0.2983306,0.21789679,-1.0321711,0.3250154,-0.049117785,-0.28829965,-0.5461354,-0.09546673,-3.5224717,0.1210578,-0.24117978,-0.10598196,-0.059979822,-0.29842982,0.19106375,-0.6130075,-0.4405396,0.15613382,0.09770105,0.5898047,-0.012364619,0.31603995,-0.19201884,-0.15035531,-0.24371807,0.14983566,0.14494033,0.3464353,0.01738579,-0.42458826,0.18521254,-0.21755256,-0.32482022,0.009004703,-0.5053716,-0.5899496,-0.17798677,-0.5025193,-0.40624288,0.6367754,-0.42190072,0.111820474,-0.17143007,-0.037885703,-0.113824494,0.38734266,0.09257709,0.10335362,0.08742523,-0.084867276,0.06385702,-0.25210315,0.35799244,0.056541093,0.18609087,0.5141508,-0.19476035,0.14632739,0.40106845,0.5521548,-0.08811133,0.7540046,0.47539926,-0.083811246,0.24167268,-0.36564043,-0.30596787,-0.65356344,-0.3274782,-0.057332516,-0.42820403,-0.48377195,-0.15168135,-0.407338,-0.7926753,0.5332542,-0.008894001,0.09947449,-0.13330297,0.43643835,0.5276832,-0.23853885,-0.13384669,-0.089277886,-0.10609286,-0.58307296,-0.30630055,-0.70745766,-0.41171455,0.004326471,0.7480218,-0.11121053,-0.027715072,0.12864996,-0.1845105,-0.07956008,0.041007586,0.07617341,0.0507359,0.403765,0.018040424,-0.8339385,0.60174185,-0.02750416,-0.14240015,-0.39867765,0.23723176,0.5359272,-0.7377078,0.31670547,0.5691313,0.117694,0.06542619,-0.34230354,-0.2155324,-0.13194442,-0.13957441,0.36795434,0.14987996,-0.5395425,0.48262814,0.3363521,-0.17732294,-0.7225872,0.39455935,0.023065014,-0.29998326,-0.020497799,0.34806442,0.14329095,0.12159048,-0.23598132,0.006841949,-0.55812114,0.34973192,0.21048912,0.024477025,0.5358507,-0.24611057,-0.24960367,-0.7194459,0.078753665,-0.5620007,-0.30186465,0.1667614,0.18224338,0.031208206,0.28462452,-0.011563046,0.4165442,-0.34417912,0.06256272,-0.03046048,-0.06323458,0.16445932,0.40199164,0.48228803,-0.47184324,0.6105046,0.038341917,-0.05123357,-0.10137047,-0.080731936,0.47339037,0.10900394,0.2762616,0.08257325,-0.26065943,0.33520907,0.5585338,0.3090765,0.5159389,0.071949355,-0.17561163,0.25345707,0.090983994,0.23317711,0.021867799,-0.5446184,-0.07597648,-0.2701026,0.037664212,0.41876116,0.13599828,0.3852521,-0.2319968,-0.20101412,0.15903974,0.118313245,-0.112893775,-0.8716914,0.30408925,0.17415714,0.70912826,0.5131167,-0.17659497,0.19550355,0.71825033,-0.41525242,0.14387551,0.28071523,0.087724485,-0.60468096,0.56006646,-0.6320154,0.37976217,-0.13706997,-0.041266866,-0.024611253,-0.14765191,0.2595878,0.7448616,-0.12951444,0.103886805,-0.09278076,-0.26267895,0.14608097,-0.46025127,0.23598811,-0.6618681,-0.062461384,0.7686892,0.28381088,0.27799687,-0.040711105,-0.0784321,0.08320427,-0.111297354,0.13647392,0.1678853,0.1532984,0.032804172,-0.59472454,-0.28070706,0.6088398,0.12213447,0.19129659,0.09366029,-0.30020759,0.21381816,-0.2992139,-0.11632972,-0.108323626,-0.59898597,-0.051988143,-0.34381977,-0.4909316,0.4499664,-0.09810189,0.2344397,0.17039743,0.07745866,-0.38498583,0.09540395,0.30170658,0.711991,0.16729693,-0.20579302,-0.35783157,0.21320668,0.34380072,-0.24461316,-0.2053521,-0.1531268,0.08583229,-0.6395771,0.50514233,-0.17792462,-0.23486833,-0.050843988,-0.1684056,-0.0373016,0.56537914,-0.12114572,-0.013596735,0.19174089,-0.09642895,-0.24094085,0.008061192,-0.26481357,0.2211236,0.3564153,-0.14149372,-0.12889113,-0.115619384,-0.25841242,0.42161343,0.00073150866,0.25997907,0.3234501,-0.05489647,-0.39262143,-0.14971839,0.098041914,0.49803233,0.011333619,-0.09439596,-0.28882432,-0.46839955,-0.35173002,0.19195381,-0.12861116,0.10824144,0.17499205,-0.27419502,0.82581675,0.076291844,1.0173525,0.05273598,-0.40852362,0.018266609,0.57618797,0.0062448094,0.01507522,-0.46546954,1.1882131,0.49010712,-0.14823115,-0.13295095,-0.41186148,0.031236961,0.24047025,-0.20370445,-0.20741437,-0.13229953,-0.70105827,-0.4268525,0.25295392,0.41972753,0.12680651,0.012571649,0.14520216,0.17608872,0.029684484,0.5105627,-0.4971525,-0.3395217,0.3974443,0.19660068,-0.03750858,0.16654894,-0.40732625,0.48599434,-0.57520264,0.010806552,-0.2559836,0.11518476,-0.2131282,-0.3659223,0.27648923,0.19498166,0.37301296,-0.39158177,-0.5647087,-0.31126902,0.5127131,-0.009354413,0.18427125,0.51452553,-0.29419675,-0.07448358,0.008407449,0.44809827,1.2273704,-0.17500615,0.182286,0.39361694,-0.1771497,-0.58504105,0.39358807,-0.30401167,0.15616526,-0.02145212,-0.24331443,-0.5335873,0.27114144,0.23722686,-0.051294863,0.14357135,-0.58211166,-0.18663232,0.29245797,-0.32292014,-0.15953408,-0.18760225,0.17055367,0.47737616,-0.36391163,-0.2199604,0.09326797,0.3665192,-0.2737425,-0.52071583,-0.1715989,-0.38578436,0.3115855,0.20267394,-0.27269053,-0.19222876,0.16795646,-0.3925005,0.13603535,0.24143039,-0.4357883,-0.009750153,-0.38888735,0.18481538,0.84388953,-0.052360766,0.20082834,-0.5767425,-0.33736476,-1.0888405,-0.316205,0.50517404,-0.04345619,0.043374192,-0.6352596,0.024537696,-0.19477741,-0.14159267,-0.0052439948,-0.59244937,0.48096782,0.17431612,0.37915948,0.04275645,-0.6650351,0.04448546,0.109432,-0.24115281,-0.60683316,0.49104425,0.027474489,0.80769587,0.13358144,0.08541971,0.45547774,-0.67976385,0.011475989,-0.26062748,-0.1542573,-0.8181335,0.089647196,472 -451,0.5396634,-0.31399593,-0.46249247,0.017070945,-0.19791177,0.105316825,-0.2538402,0.20443419,0.28465316,-0.33042827,-0.05719804,-0.25166887,-0.05434982,0.389205,-0.22078513,-0.70166796,0.007332983,0.036397014,-0.5424922,0.6244523,-0.35287935,0.37023988,0.2085559,0.19063865,0.14944077,0.17963667,0.43677917,-0.09815756,-0.022476068,0.0032896486,-0.07767612,-0.060404222,-0.53130955,0.1535478,-0.10406256,-0.24079047,0.07366645,-0.3422571,-0.5243782,-0.79908645,0.37095356,-0.7108527,0.4745392,0.19174434,-0.2890828,0.2512397,0.114043154,0.15256259,-0.4302616,0.16920964,0.10528301,-0.004400089,-0.14095697,-0.15823261,-0.18908131,-0.5340425,-0.50335485,0.08588594,-0.4703806,-0.14678124,-0.11961746,0.16248877,-0.30847546,0.033740293,-0.07912927,0.3932779,-0.40653077,-0.141048,0.31509352,-0.19697224,0.12328304,-0.6109017,-0.11119946,-0.06618659,0.10057939,-0.0011894575,-0.09716238,0.16659045,0.21171466,0.5859098,0.089831874,-0.27781954,-0.09281441,-0.13636151,0.10244235,0.5800997,-0.11993706,-0.6720788,-0.22950518,0.019701406,0.17252302,-4.432031e-06,0.26347765,-0.6123265,-0.11746968,-0.13726644,-0.25076324,0.41406587,0.6168162,-0.43606848,-0.025104033,0.3917481,0.36574134,0.14300115,-0.03646185,0.11436505,0.009817166,-0.53549886,-0.12648684,0.09790119,-0.1957127,0.47163978,-0.21403232,0.35185447,0.5147995,-0.1252698,0.1477188,0.1484594,-0.011762423,-0.2500074,-0.10294869,-0.13220783,0.02126419,-0.53163874,-0.011202357,-0.20956881,0.9536065,0.18163922,-0.7216956,0.46352914,-0.47163367,0.3391408,-0.12370978,0.5606577,0.6692509,0.210457,0.13911566,0.8670963,-0.54362446,0.0010549149,-0.035569303,-0.33097023,0.017286122,-0.11986494,-0.14791308,-0.42557862,0.14479855,-0.14052199,0.0041251546,-0.11431401,0.38257876,-0.43131533,-0.12038821,0.10964436,0.8825551,-0.30769068,0.08107583,0.51259965,0.9565508,0.97412163,0.036836714,1.3956966,0.4196043,-0.14033784,0.020380428,-0.1665772,-0.8407025,0.25391957,0.5453308,0.39816317,0.34528804,0.057986103,-0.057529602,0.3608689,-0.31974903,0.037663747,-0.29295477,0.2498269,0.0841655,-0.03806903,-0.23557864,-0.18637326,-0.035262477,0.14488284,0.04556193,0.23025343,-0.2079498,0.04065162,0.10300023,1.4017977,-0.23275454,0.031073261,0.053511087,0.44391727,0.37666702,-0.06502775,-0.009980313,0.14086536,0.4203585,-0.11370055,-0.7110864,-0.049711432,-0.21110871,-0.6013214,-0.23244362,-0.15665743,-0.10002206,0.010764049,-0.47786847,-0.190991,0.02933796,-0.2112254,0.5109759,-2.5846746,-0.30690187,-0.19825625,0.18236789,-0.31323975,-0.22382474,-0.1437616,-0.3440431,0.330211,0.41936332,0.4073541,-0.80397975,0.23697077,0.45044497,-0.42487118,-0.047191612,-0.5844585,-0.112229824,-0.1649724,0.51929945,0.16582943,-0.24811503,-0.023863282,0.18588623,0.4047074,0.02230628,-0.000532989,0.23021759,0.4215024,-0.058846373,0.29838997,0.09402964,0.4531223,-0.30668506,-0.004896631,0.42742702,-0.2586678,0.34690756,-0.11117823,0.1300173,0.34452638,-0.5712518,-0.68109274,-0.6237173,-0.1760359,1.2190361,-0.16175653,-0.49210072,0.3604048,-0.06968348,-0.010855677,0.029872417,0.32889464,-0.15880361,-0.012419377,-0.8040394,0.15822251,0.028884713,0.14461875,-0.0067041037,-0.13505162,-0.24065053,0.9396798,-0.036284667,0.43200812,0.33258668,0.21866168,-0.05917201,-0.5202837,0.12625541,0.9282964,0.5705313,0.059839573,-0.16580391,-0.22412835,-0.29018325,-0.29543957,0.051501483,0.45894644,0.8516312,-0.05186992,0.012892683,0.17697403,0.057865627,0.07908558,-0.10129563,-0.41051707,-0.12665638,0.043896075,0.50790125,0.5624905,-0.25843897,0.3148912,-0.18292375,0.2235812,-0.031346034,-0.42630607,0.6183612,1.0759866,-0.17713983,-0.31028983,0.47759873,0.4625885,-0.33527872,0.3480081,-0.7306885,-0.3828071,0.5167595,-0.05958146,-0.30984232,0.3222427,-0.35679564,0.14743233,-0.9904518,0.5156226,-0.21384767,-0.13500263,-0.45789504,-0.28958482,-3.3545833,0.30969673,-0.38983074,0.070639476,-0.19812475,-0.05521032,0.2441157,-0.45840052,-0.5714348,0.13843335,-0.039263852,0.4466169,0.053041387,0.40953085,-0.137292,-0.06487385,-0.3255253,0.099454924,-0.17420135,0.2998615,0.033919718,-0.3352706,-0.099762745,-0.22572753,-0.13753308,0.18936238,-0.6269825,-0.50104934,-0.17473376,-0.36400706,-0.23063429,0.57079375,-0.11962557,-0.043651104,-0.28235072,-0.064779945,-0.2992802,0.3076864,0.14869222,0.048317883,-0.09579594,-0.054875273,-0.17657158,-0.34135813,0.10190426,0.059578955,0.17324932,0.37860364,-0.17071964,0.09825848,0.32776,0.5737329,-0.16081929,0.70804864,0.37271643,-0.25963226,0.369175,-0.07224507,-0.22561835,-0.6031323,-0.44826132,-0.0038019929,-0.29107842,-0.39169475,0.013881372,-0.21568203,-0.54010147,0.3547976,0.030172566,0.24091335,0.114920124,0.038597416,0.50223035,-0.026370207,-0.00931456,0.052065305,-0.22610529,-0.5509344,-0.30892515,-0.6628942,-0.43234894,0.2442443,0.9077875,-0.23172572,-0.19069226,0.086179,-0.3025653,0.018142525,-0.090542,0.07923741,0.19940348,0.27601722,-0.018142594,-0.81432545,0.54748785,-0.08803046,-0.07544417,-0.33675125,0.06567091,0.5253135,-0.63127095,0.37548873,0.32461435,0.26749977,0.1560094,-0.42495432,-0.25045958,0.17099588,-0.19057767,0.35596874,0.08627951,-0.63705444,0.50592357,0.41239813,-0.3868323,-0.7002622,0.36620805,0.14194393,-0.24162416,0.022719,0.4323153,0.024625616,0.0229372,-0.09275227,0.3213787,-0.46611744,0.36709884,0.20889838,0.0075213155,0.32102713,-0.03597302,-0.3960773,-0.47165608,-0.04957358,-0.563424,-0.29183146,0.112123795,0.069540545,-0.05077925,-0.06744247,0.03339174,0.48383072,-0.40836763,0.23992789,-0.012883748,-0.16752163,0.49886027,0.50299925,0.44810933,-0.3294458,0.7309986,0.038595412,0.004849415,-0.08493485,0.04078693,0.33221224,0.33809948,0.20370004,0.10670073,0.1696758,0.30818313,0.7677041,0.15130493,0.32658103,0.15874591,-0.2323231,0.3474114,0.19438942,0.11460585,-0.17716815,-0.38027757,-0.17675686,-0.0088421535,0.14713049,0.47863135,0.16057943,0.33183807,-0.053956065,-0.37906316,-0.0024701399,0.14913477,0.06047334,-0.9533178,0.19734374,0.09885175,0.65934974,0.5261752,-0.29872292,0.18021987,0.5742325,-0.023599382,0.03815196,0.3706564,-0.01683159,-0.6296508,0.56189364,-0.41843694,0.2555106,-0.23573725,0.06811024,0.036277413,0.25855896,0.14799416,0.6515004,-0.053424794,-0.025484834,-0.12271087,-0.34269962,-0.09739251,-0.38306412,0.08835875,-0.3120377,-0.4679342,0.53197205,0.4266057,0.111723125,-0.10483612,-0.0056715873,0.008121592,-0.091951184,0.3536419,-0.11067919,-0.021201747,-0.17274778,-0.76559454,-0.28464925,0.6411811,0.22657318,0.12548025,-0.09896823,-0.1807398,0.23720251,-0.35692835,-0.026581135,-0.05502247,-0.67987645,0.058886033,-0.25941572,-0.4561494,0.27192697,-0.18623354,0.21277867,0.34865,-0.056536905,-0.38124654,0.019052532,0.042151254,0.70740986,-0.224514,-0.12212366,-0.39280048,0.076823615,0.15164945,-0.29673108,-0.032652743,-0.18878242,0.0014119148,-0.6645383,0.61221164,-0.09330249,-0.18761043,0.23464558,-0.3249393,0.0008337008,0.5519726,-0.31274647,-0.20948176,0.06595833,-0.1145877,-0.13820745,-0.24850729,-0.20429376,0.2855385,0.29718897,-0.12836742,-0.05496319,-0.29147986,-0.023166602,0.36047015,-0.069302075,0.26827312,0.34558472,0.2125162,-0.47680405,0.011486175,0.3677664,0.48176688,0.123642504,-0.01915833,-0.21683457,-0.44149342,-0.35536623,-0.032935046,-0.2358344,0.114039205,0.19078901,-0.52655447,0.7673176,0.37195262,1.2136955,0.06627154,-0.21799581,0.042425327,0.5874902,-0.031909276,-0.084510185,-0.26157,0.8135508,0.61048955,-0.0323906,-0.14860474,-0.45423833,-0.11491657,0.22481349,-0.22713542,0.11009042,0.03620639,-0.55129784,-0.45078692,0.2593903,0.25742856,-0.06602163,-0.05318639,-0.066994414,-0.015432426,-0.044997673,0.4201041,-0.59236187,-0.19972368,0.15518394,0.15398335,0.09890117,0.019382102,-0.5341007,0.41506624,-0.78670347,0.08212757,-0.30380705,0.090330146,-0.14504926,-0.18568611,0.13146362,0.02283293,0.4871359,-0.4285205,-0.44198123,-0.21600161,0.56132567,0.08725827,0.22798422,0.7061295,-0.30609962,0.07547762,0.18325637,0.57264787,1.1108373,-0.22160976,0.1292739,0.30404565,-0.34591633,-0.68735105,0.34990257,-0.30252153,0.1984609,-0.038416263,-0.3067247,-0.73162156,0.18390162,0.3056238,0.10701859,-0.050892152,-0.6729762,-0.35505182,0.42548415,-0.21661088,-0.27866918,-0.3856236,0.04312053,0.67150074,-0.3424744,-0.2228164,0.14345683,0.115917526,-0.32763818,-0.71558446,0.01915629,-0.38215336,0.40484047,0.36256027,-0.052240193,-0.15539919,0.1215161,-0.5163617,0.13737942,0.0628377,-0.42103437,-0.004834805,-0.1952214,-0.016864385,0.9679488,-0.20935598,0.057781164,-0.7774364,-0.54415697,-0.8467488,-0.42672208,0.64609474,0.19535731,0.23362707,-0.57989675,-0.08090522,-0.008021106,0.09898678,0.03508275,-0.4944648,0.43569687,0.04964013,0.47773814,-0.13075402,-0.70338064,-0.027370343,0.027970959,-0.15720975,-0.42635137,0.46157768,0.07230195,0.9080463,0.04677427,-0.099040456,0.27510354,-0.55190897,0.15868902,-0.25764412,-0.27573997,-0.5866504,0.23185599,473 -452,0.37181288,-0.21333095,-0.33367524,-0.22168739,-0.2510693,-0.016126756,-0.08960874,0.22437029,0.33605364,0.044008248,-0.075987436,-0.2675028,0.20073251,0.3383484,-0.06907474,-0.921218,-0.07142811,0.1955915,-0.6991018,0.3769854,-0.5969512,0.21821916,0.05055613,0.40002674,-0.0044082874,0.3646048,0.30506405,-0.17169435,-0.017808642,-0.21406238,-0.13883771,0.16590516,-0.54584754,0.09907503,-0.12294708,-0.17309128,0.23174052,-0.50262725,-0.21491814,-0.72339123,0.2154148,-0.8140504,0.348763,-0.021201735,-0.035069037,0.16071594,0.14768001,0.26064986,-0.46844453,-0.066571645,0.20785879,-0.15512776,-0.08714954,-0.21862705,0.0039825267,-0.22588398,-0.47146273,0.002696205,-0.33978036,-0.3810349,-0.26589122,0.06852253,-0.36994085,-0.08555342,-0.068146765,0.4875162,-0.34070444,-0.04673856,0.44598657,-0.3048244,0.2334603,-0.42147604,0.09436655,-0.0054620174,0.38013533,-0.012185301,-0.07033981,0.36732435,0.30810374,0.3566374,0.19497588,-0.32863528,-0.19523928,-0.16994987,0.0988304,0.48461744,-0.1272511,-0.5441102,-0.16876017,-0.05224622,-0.04451099,0.322295,0.018044634,-0.20233293,-0.014828918,-0.07536846,-0.25772604,0.5155071,0.5102716,-0.30738372,-0.37843132,0.14375623,0.42264417,0.2183548,-0.066641614,-0.1531529,0.1334788,-0.5872269,-0.2553528,0.103061385,-0.117725134,0.5031179,-0.15286693,0.1092127,0.8323057,-0.21366824,0.13951205,-0.04756003,-0.040115397,-0.031940784,-0.43344888,-0.22378264,0.18003912,-0.5446847,-0.026739206,-0.2945425,0.96203625,0.22818467,-0.74764144,0.4825504,-0.5714355,0.221261,-0.21471913,0.59494126,0.5912038,0.1544199,0.41967997,0.69490254,-0.28299505,0.2205206,-0.018805798,-0.56916684,0.098794945,-0.1659645,0.25299266,-0.358926,0.10167586,-0.2049947,0.18057005,0.15246332,0.048901957,-0.5688508,-0.12642224,0.17486344,0.77505726,-0.3044211,-0.024260942,0.49803782,1.0760187,0.9109182,0.04367476,1.2829998,0.42828718,-0.3317061,0.25414363,-0.31893826,-0.6736904,0.18531029,0.2903122,0.058366843,0.04788989,-0.18170512,-0.11757953,0.3110489,-0.2782823,-0.020943651,-0.040128417,0.43259814,0.104442425,-0.025626838,-0.46906194,-0.37164015,-0.013902971,-0.18995054,0.21661799,0.21364617,-0.13643835,0.22130395,-0.03343285,1.3085943,0.10248013,0.044309024,0.015488273,0.53369516,0.3799371,-0.14857301,-0.1783062,0.45454052,0.33972308,-0.20560725,-0.6494093,0.3453868,-0.2867485,-0.23947088,-0.10996973,-0.35754362,0.016690228,0.18062197,-0.33412513,-0.15133122,-0.065621786,-0.14074989,0.5499321,-2.909515,-0.20690699,-0.035257123,0.3034969,-0.3386434,-0.13329677,-0.0686354,-0.5601739,0.17534228,0.19766672,0.47350317,-0.5988861,0.45719978,0.49662122,-0.49610543,-0.26139474,-0.7098216,-0.1577611,-0.08348004,0.3458519,0.111871995,-0.12081417,-0.26749307,0.19391418,0.682865,0.21269287,0.1435493,0.3719949,0.3855853,0.15098238,0.5857361,-0.007308564,0.5566106,-0.19567406,-0.12781146,0.25524992,-0.2717668,0.26819652,-0.16322947,0.10496514,0.55680764,-0.31246203,-0.91540325,-0.5839227,-0.30909082,1.0163525,-0.29883915,-0.41883412,0.27426204,0.04015961,0.082806654,0.18342574,0.5035051,-0.07765211,-0.09110948,-0.58370787,0.23234256,-0.004429005,0.16081978,0.11935247,-0.118972756,-0.28170744,0.6871428,-0.10647978,0.44573084,0.18681507,0.31004506,-0.20960252,-0.35976237,0.03518817,0.7042465,0.11631697,-0.04723447,-0.054056812,-0.32615286,-0.14837871,-0.2366996,-0.103491135,0.5469021,0.8960725,-0.026508909,0.09486049,0.3473723,-0.15537049,0.070746526,-0.04977266,-0.3415611,0.03766782,-0.13014777,0.49327877,0.60561603,-0.1361306,0.45106453,-0.083858505,0.32312408,-0.08997051,-0.47739628,0.6412754,0.4045372,-0.14412144,0.05491974,0.41590056,0.40299892,-0.5243655,0.4385964,-0.5668972,-0.13324332,0.69117004,-0.18965642,-0.40824476,0.12897018,-0.18793483,-0.054578934,-0.84266204,0.39114454,-0.32616186,-0.3157701,-0.29701257,-0.18596826,-3.8472435,0.20449676,-0.17399761,0.047981262,-0.3152202,0.07975662,0.24652901,-0.511547,-0.47450134,0.19445927,0.23560679,0.5707169,-0.031051407,0.20862484,-0.32820204,-0.04940578,-0.18080328,0.17900898,0.066496804,0.3112774,-0.090745464,-0.30086476,0.10482552,-0.08086186,-0.5458969,0.29764956,-0.6247057,-0.4574538,-0.0812021,-0.62691915,-0.37989402,0.67355996,-0.3337067,0.038957503,-0.24606164,0.16659227,-0.37625107,0.24519132,0.056739993,0.1482025,0.00617608,-0.0081811035,-0.0044546383,-0.32634577,0.4538321,-0.06594364,0.41694552,-0.03088059,0.16548088,-0.0053590154,0.45242682,0.52393717,-0.018375358,0.8177867,0.30092523,-0.02728512,0.22997113,-0.33146933,-0.16971993,-0.44337362,-0.3900886,-0.11160367,-0.3802635,-0.4895012,-0.13047187,-0.26264217,-0.5969754,0.42763737,0.06911225,0.2261057,-0.045491397,0.14994693,0.4524432,-0.055189546,0.11664729,0.008225098,-0.07770084,-0.5593487,-0.063835606,-0.7130119,-0.33013153,0.28150135,0.59675354,-0.3037875,-0.028691968,-0.18776624,-0.27889398,-0.0032274222,-0.009477409,0.0722316,0.43921456,0.39362517,-0.03567613,-0.4765405,0.4264233,-0.14228553,-0.18546431,-0.5378469,0.10475601,0.6989427,-0.72620547,0.79617023,0.3795672,0.068952605,0.01398095,-0.40878645,-0.3247764,0.13599786,-0.05585063,0.44017062,-0.012434147,-0.7930266,0.5314025,0.32850048,-0.34725672,-0.7135796,0.28552952,-0.0038423985,-0.33007273,-0.12380376,0.21601944,0.21348803,-0.10422294,-0.26010108,0.21022895,-0.5666493,0.253984,0.069510184,-0.005698749,0.364537,-0.03499111,-0.22044523,-0.66094935,-0.15774715,-0.54960436,-0.26947877,0.28430563,0.009043434,-0.00041836075,0.2157185,0.12074758,0.39719057,-0.21552147,0.08722095,0.1077522,-0.2885428,0.25948706,0.39221743,0.24400434,-0.37024778,0.45222765,0.08297696,-0.101191156,0.16980512,0.041477036,0.40542752,0.107189775,0.31205288,-0.2670146,-0.13655406,0.36794338,0.73897886,-0.06759857,0.43923476,0.022044985,0.0049577695,0.5044541,-0.090241514,0.056561984,0.18831436,-0.38634083,-0.0005192182,0.028174324,0.19237329,0.5711821,0.31353584,0.19015037,0.22783132,-0.36805153,-0.036004033,0.26657632,-0.22418642,-0.8112668,0.48410895,0.20676576,0.81375027,0.54709584,0.026563047,-0.19671461,0.6681601,-0.13549589,0.26122352,0.35790467,0.028426642,-0.5502654,0.8240779,-0.4810517,0.32349315,-0.24159832,-0.10949765,0.08827436,0.16745016,0.3250433,0.6510564,-0.24263729,0.049244545,-0.047229312,-0.09668206,0.12027625,-0.38949013,0.13736463,-0.37922344,-0.33609533,0.5488861,0.41322502,0.22299597,-0.17180155,-0.033840474,0.09710874,-0.08076988,0.11357926,-0.043787006,-0.14773412,0.40486977,-0.64422745,-0.21231304,0.652876,-0.09009192,0.14349365,-0.3164621,-0.22470354,0.06652896,-0.246953,-0.060103416,-0.109198175,-0.5923504,0.1025927,-0.15468302,-0.48397443,0.53263867,-0.29996392,0.047069542,0.121449426,0.06010032,-0.14645858,0.20329727,0.2351556,0.78035724,-0.09985415,-0.15396737,-0.49132323,0.030259123,0.17171183,-0.13824931,0.0013319403,-0.50621945,-0.09017162,-0.4028133,0.54887533,-0.16937026,-0.39911842,0.1133761,-0.20487438,-0.04808449,0.5677315,-0.210615,-0.002399996,-0.13560236,-0.23144628,-0.29781055,0.056233916,-0.21104158,0.24769463,0.30026746,-0.035536345,-0.12439958,-0.3181491,-0.19637172,0.43698445,0.04124838,0.40455136,0.17299776,0.13694717,-0.10764237,-0.01831449,0.11495984,0.39992833,0.09191256,-0.02667124,-0.40375134,-0.18043308,-0.19676106,0.11346163,-0.09705693,0.18106723,-0.0438464,-0.37814385,0.8318089,-0.022097,1.170502,0.06313501,-0.29340583,0.11432878,0.52851665,0.026577126,0.100743994,-0.4497142,0.86940545,0.44375062,-0.086464815,-0.13955274,-0.39991635,-0.16165264,0.39509693,-0.2408478,-0.064168625,-0.033428144,-0.52392757,-0.45043325,0.2612609,0.18229087,0.097766705,-0.010995223,-0.038235676,0.04279237,0.11198696,0.48127678,-0.6320924,-0.1422611,0.08956231,0.34462452,0.024340803,0.342292,-0.35033903,0.4357861,-0.6479,0.26061246,-0.47236896,0.057489764,-0.22762366,-0.23849452,0.056969117,-0.024064763,0.30138633,-0.23852055,-0.48351583,-0.044497646,0.414008,0.24255247,0.20416965,0.70736355,-0.21331096,-0.048304122,0.23507215,0.7654069,1.1706308,-0.40117723,-0.03217777,0.29430452,-0.2644277,-0.67222995,0.3343213,-0.14583673,-0.21841058,-0.16686454,-0.29749563,-0.49456885,0.23001745,0.20352319,-0.07994496,0.07710729,-0.4910482,-0.19007213,0.38770416,-0.29840502,-0.2962708,-0.31135818,0.39790183,0.76814777,-0.30140513,-0.25770932,0.076758325,0.20306407,-0.28162345,-0.55544937,-0.05332733,-0.36099738,0.38196787,-0.009613902,-0.21402155,-0.09176389,0.1088391,-0.38282797,0.1177938,0.030831883,-0.3380069,0.167553,0.010593504,0.05783658,0.8582414,-0.16357324,-0.11427291,-0.73542815,-0.52096474,-0.80841285,-0.4462777,0.44347164,0.09771502,-0.05415795,-0.3237231,0.07309692,0.039836876,-0.12929228,0.0037521315,-0.5130424,0.22753723,0.01699404,0.48139605,-0.29904944,-0.94878143,0.015812175,0.18241088,-0.2718944,-0.6463084,0.6186535,-0.09410877,0.8098346,-0.03465987,-0.08353015,0.02989566,-0.21201102,0.10237908,-0.512924,-0.23333962,-0.6689312,0.16095778,475 -453,0.466701,0.063577764,-0.52145016,-0.14826263,-0.2577547,0.26817626,-0.18518524,0.43287912,0.1445649,-0.46556458,-0.06212636,-0.15743457,0.03898955,0.229805,-0.23335226,-0.68718714,0.15536563,0.061059084,-0.56738967,0.28567863,-0.5096383,0.30882448,-0.18711063,0.38318136,-0.084978685,0.25591713,0.02826688,-0.23734137,-0.014263784,-0.19482274,-0.06825484,0.24440213,-0.68683994,0.13027741,-0.12650353,-0.13150716,0.20697178,-0.5688533,-0.44909462,-0.58406013,0.265348,-0.80525094,0.59916407,0.10507011,-0.22074953,0.25599298,0.015047384,0.05923329,-0.15264562,0.19099961,0.05340105,-0.18608366,-0.104828335,-0.16370165,-0.3831797,-0.36594534,-0.5981981,0.04360998,-0.40987426,-0.08350413,-0.2848942,0.058261693,-0.27509645,-0.1106183,0.039622836,0.26469928,-0.36562496,0.18834427,0.17109069,-0.13359466,0.13267621,-0.5169949,-0.13457182,0.08303816,0.42971912,-0.38434657,-0.19026197,0.22647998,0.33575106,0.46212795,-0.09267305,-0.14095727,-0.22419763,-0.10060125,0.07931619,0.7073311,-0.10745708,-0.361981,-0.14029162,-0.10727135,0.07890655,0.4065526,0.13431966,-0.3610303,-0.2783043,-0.13437936,-0.24785657,0.3604262,0.54593176,-0.32636458,-0.24663024,0.48540375,0.42854384,0.29203245,0.01319004,0.18064448,0.048891734,-0.63609296,-0.2791104,0.07099193,-0.0989484,0.4595025,-0.2386484,0.29555783,0.68325347,-0.22092569,0.015606582,0.020052237,-0.013544382,0.005496583,-0.26005882,-0.20651332,0.18576072,-0.46002728,0.13227174,-0.17434047,0.88485724,0.26405635,-0.8576475,0.34129667,-0.6493049,-0.05406143,-0.027811876,0.52268034,0.46288612,0.41797924,0.16006182,0.49804425,-0.5724631,0.100990705,0.031340033,-0.4557808,0.08402158,0.0024786505,-0.1021976,-0.4092029,-0.02573881,0.070117824,0.08555799,0.06636701,0.26333833,-0.3441141,0.044242553,0.13370526,0.76402515,-0.39015582,-0.124970295,0.6539456,0.97887594,0.82303935,0.1948833,1.4172984,0.2606225,-0.07145027,0.07608058,-0.11536717,-1.012989,0.32416603,0.33226332,-0.31605586,0.3459641,0.16814877,0.052033428,0.19744995,-0.25267163,-0.11856433,-0.15877317,0.3950841,0.065638825,-0.17891923,-0.36843127,-0.29035383,-0.019782593,-0.13708211,0.20786247,0.21020485,-0.074342474,0.31883606,0.23965468,1.4327984,0.012923769,0.22452058,0.09119288,0.3495135,0.2813955,-0.040317304,-0.22542624,0.4330275,0.35066327,0.03454111,-0.5460412,0.07366222,-0.07732902,-0.48214558,-0.25465286,-0.3204674,-0.1427235,-0.09176403,-0.38815784,-0.1680506,-0.15330113,-0.14230178,0.68950814,-2.7654834,-0.07417271,-0.101534076,0.5027987,-0.23799336,-0.42287308,-0.12167722,-0.39981732,0.5642904,0.2966173,0.31891236,-0.5654944,0.308827,0.55808014,-0.21474981,-0.2236878,-0.6197206,-0.01021914,-0.012696047,0.09543346,-0.103479646,-0.088614896,-0.07199762,0.06128071,0.37231496,-0.08579273,0.13579506,0.1968659,0.3771946,0.25393826,0.33303016,-0.04309424,0.56460553,-0.21006986,-0.1443658,0.20033444,-0.3526471,0.36660698,-0.14626494,0.15924396,0.42807823,-0.3901406,-0.57143444,-0.6142302,-0.4417243,1.0732244,-0.1875648,-0.36294073,0.25631064,-0.20259003,-0.41482827,-0.07647681,0.27335164,-0.30726424,-0.13861367,-0.7032798,-0.05936247,-0.06129327,0.29876164,-0.06746237,0.009496548,-0.40933576,0.6299427,-0.10351247,0.47435635,0.29428616,0.1631227,-0.19942223,-0.58136255,-0.043884106,0.80263007,0.35884684,0.24384281,-0.29813936,-0.27553174,-0.15268819,-0.16354541,0.08856231,0.46063063,0.7439887,-0.010649144,-0.02778734,0.28526792,0.060695767,0.13954891,-0.043958418,-0.20368035,-0.16079943,-0.11505138,0.6029722,0.44198585,-0.2690676,0.31885046,-0.1717762,0.28406817,-0.25227532,-0.31843826,0.51329726,0.8322664,-0.1668222,-0.31577566,0.6282014,0.31961676,-0.35492092,0.3460873,-0.55276126,-0.20127296,0.46547285,-0.18036537,-0.48488447,0.19507074,-0.19722925,0.09139245,-0.960195,0.36185002,-0.23786506,-0.3935419,-0.3553404,-0.12914434,-3.3018222,0.114918195,-0.30458382,-0.10910446,-0.27325764,-0.14612804,0.2996516,-0.5265701,-0.63881445,0.22480758,-0.033199422,0.57531327,-0.040874295,0.18416773,-0.17599164,-0.14017951,-0.42697647,0.109589815,0.16000092,0.3571732,0.04654608,-0.24200343,0.05237024,-0.1478061,-0.45077106,0.18543613,-0.57239103,-0.3532338,-0.12289314,-0.5008252,-0.32810187,0.6586403,-0.5306062,0.007364984,-0.33401746,-0.047781263,-0.29409394,0.37479088,0.1302047,0.25411308,0.037182886,-0.0044334745,-0.17522028,-0.3415944,0.36817703,-0.017873645,0.22474118,0.3767075,-0.1293454,0.017531583,0.2932416,0.61763614,-0.05962955,0.6660691,0.25980222,0.01464578,0.37121916,-0.3582801,-0.28065267,-0.45935464,-0.33594006,0.07429417,-0.4091406,-0.45779082,-0.24941407,-0.31648996,-0.66101325,0.3583632,0.060205292,-0.103007786,-0.040099956,0.17519537,0.4278913,-0.14653297,-0.08445358,0.017637078,-0.116930015,-0.42319646,-0.28774858,-0.52302396,-0.39253864,0.19852564,0.82706606,-0.1245906,0.001579059,0.10500852,-0.27154356,0.010604552,0.063272506,-0.044541974,0.18139699,0.38723627,0.058578033,-0.58070517,0.44975963,-0.07676356,-0.42187086,-0.6502544,0.043991905,0.64579976,-0.753851,0.66521156,0.39120278,0.122686945,-0.034469545,-0.6778265,-0.26029077,-0.055648427,-0.2746801,0.39233992,0.18476449,-0.8213664,0.52663475,0.3504713,-0.24137296,-0.71272224,0.56035525,0.025657784,-0.22479142,0.18913957,0.32925767,0.07128988,-0.08584551,0.022242596,0.1655751,-0.43042222,0.3102778,0.22530167,0.1205123,0.4888136,-0.16030252,-0.07625139,-0.65573466,-0.13502742,-0.4721957,-0.26960698,0.14137198,-0.019343589,0.04792469,0.06697499,0.12205422,0.41304973,-0.51238286,0.21321656,0.022145381,-0.17041706,0.10942067,0.3226781,0.47258392,-0.29968593,0.5343314,-0.076701574,0.21422677,0.10243105,0.28589854,0.5509651,0.15351157,0.2459897,0.0022564617,-0.096292995,0.083334304,0.9673395,0.11707902,0.45164284,0.18435942,-0.013835409,0.32171923,0.09422188,0.13292548,0.1269252,-0.4346871,-0.0449575,-0.110672824,0.14834835,0.43419906,0.1969773,0.31439406,-0.2010828,-0.27967682,-0.016572878,0.2884399,-0.022360427,-1.1606305,0.30799314,0.20681879,0.72290057,0.36891922,0.06697996,0.08259814,0.4561885,-0.15412776,0.18086015,0.24488685,0.12959771,-0.4827238,0.4619332,-0.5620467,0.3202219,-0.13412105,-0.11067158,0.063983396,0.06825273,0.37595245,0.7764087,-0.07783602,0.11179025,0.054722376,-0.2510215,0.17894666,-0.46507066,-0.03917528,-0.29461557,-0.09642226,0.5946774,0.48355785,0.34515166,-0.3038182,-0.058464266,0.12234696,-0.07102336,-0.053364657,0.049983066,0.009248146,-0.0009978244,-0.48715696,-0.45342168,0.57682574,0.17948072,0.09764942,0.02412199,-0.30057892,0.23260124,-0.31007403,0.04533746,-0.07090672,-0.8341857,0.07033906,-0.21287884,-0.4756792,0.20775102,-0.123131596,0.054582994,0.28812355,0.120199546,-0.2647319,0.42789063,0.12910149,0.8676943,0.03283601,-0.21044262,-0.49046573,0.039435916,0.3707025,-0.21214284,-0.05720804,-0.3683736,-0.016955333,-0.36021286,0.22416975,-0.092478454,-0.17996083,0.11721604,-0.017442951,-0.001048301,0.55420107,-0.16931598,-0.0764217,0.10887296,-0.12860681,-0.26934835,-0.11593153,-0.21432386,0.13259806,0.37029487,-0.120051794,-0.057006627,-0.11066883,-0.24689393,0.30083126,0.17620654,0.39733812,0.35400137,0.15531142,-0.31285077,-0.25136355,0.11454104,0.52448493,-0.12886985,-0.10155564,-0.24664749,-0.48731092,-0.050408714,0.38116437,-0.12492945,0.11487621,0.103442565,-0.313167,0.6639742,0.06545146,0.8610789,0.122057155,-0.2960522,0.03205396,0.3944113,0.016502466,-0.047675434,-0.42174813,0.98920244,0.47099012,-0.101998195,-0.15787123,-0.16347368,-0.020510124,0.102361046,-0.25295073,-0.10640925,-0.13025491,-0.61514145,-0.21624687,0.21445836,0.053843968,0.036255006,0.03751983,-0.04285596,0.26612148,0.13574865,0.35861796,-0.57615125,0.06106243,0.26293442,0.21978606,0.2070411,0.3541095,-0.3494627,0.3510151,-0.44677845,0.035852347,-0.35812035,0.10719202,-0.10758043,-0.193879,0.029673113,-0.07559567,0.36219662,-0.19018261,-0.34158987,-0.16404316,0.40705734,0.18360035,0.24969395,0.6382937,-0.14831273,0.13571075,0.034009855,0.53058136,0.914899,-0.1480421,0.12703311,0.42827997,-0.28752726,-0.5753279,0.20266683,-0.37865216,0.14340873,-0.17810516,-0.14227872,-0.2123266,0.18523815,0.25613222,0.15298651,0.13054866,-0.55325747,-0.1983613,0.46067205,-0.2095186,-0.29824862,-0.21367928,0.16614945,0.94582224,-0.19214654,-0.020193292,0.16298823,0.1769658,-0.2257148,-0.47859487,0.018581271,-0.25323996,0.19734953,0.063831076,-0.25800484,-0.089913525,-0.001920253,-0.28800598,0.20936258,0.26316532,-0.33398136,-0.061276946,-0.2561413,-0.010838611,0.68935204,-0.27951807,0.06464971,-0.682312,-0.5317368,-0.9671317,-0.30438456,0.36220798,0.13067476,0.051939316,-0.4922612,0.010337174,-0.025800357,-0.06123566,0.0065417713,-0.36345553,0.46601343,0.17498492,0.39786604,-0.104756035,-0.86362755,0.07654511,0.09742106,-0.38064417,-0.61981636,0.62640876,-0.16305313,0.75771505,0.048997436,0.03404967,0.05508778,-0.5393652,0.2753441,-0.3166401,-0.04940458,-0.73237187,0.22605732,476 -454,0.3446981,-0.44895157,-0.53131795,-0.28600302,-0.3401588,0.036297195,-0.30300373,0.22405945,0.160829,-0.456469,0.0036115348,-0.10315341,0.015480216,0.36093363,0.0285424,-0.7186662,0.08517812,0.23627737,-0.9391098,0.78271115,-0.36955288,0.2217963,0.034920607,0.13595484,0.058731396,0.09379522,0.17939027,-0.041408997,0.073401555,0.06199302,-0.07455923,0.13421357,-0.7445584,0.28141105,-0.20095423,-0.33517963,-0.13337891,-0.31245366,-0.5188165,-0.950206,0.24335076,-0.9110027,0.50644624,0.039341625,-0.51388675,0.049606062,0.18611836,0.2650939,-0.2717563,0.017839551,0.17463943,-0.18237665,-0.18936817,-0.25466672,-0.10277689,-0.6350408,-0.6190461,-0.039528172,-0.7300132,-0.1872833,-0.24788703,0.16080384,-0.4046075,-0.08587929,-0.3306314,0.61956173,-0.41508606,-0.008369259,0.32258892,-0.07125074,0.36944762,-0.62250036,-0.023002336,-0.1981043,0.17519979,0.12670384,-0.40943593,0.29794577,0.16331956,0.63759816,0.15036337,-0.4046936,-0.051092785,0.0109653305,0.2660345,0.31626627,-0.09123443,-0.3509334,-0.30947286,0.005896021,0.25037402,0.031069806,0.06642436,-0.5162772,0.07187538,-0.012485419,-0.22352849,0.4982935,0.5556559,-0.31020445,-0.29634953,0.28944764,0.5796889,0.16979769,-0.07966401,0.103787936,0.015965786,-0.49549118,-0.19434987,0.37545165,-0.2175075,0.45082203,-0.2678699,0.059414454,0.48658317,0.0037657928,-0.12699112,0.09333408,0.04808536,0.02224498,-0.25748068,-0.29558092,0.27003944,-0.6314634,0.18850546,-0.34594443,0.7615763,0.15848604,-0.5761566,0.3895026,-0.5593753,0.31427914,0.013534094,0.6570907,0.9746126,0.5527911,0.16617881,0.8750424,-0.25807407,0.1862736,-0.09001192,-0.21804866,0.22819516,-0.42207056,0.20527972,-0.5365431,0.032096915,-0.3545961,-0.16382241,-0.19022521,0.5040234,-0.63877237,-0.17117366,0.10111792,0.7949027,-0.29082975,0.13986737,0.8165994,0.95571774,1.1601247,0.24320388,1.2477351,0.4640977,-0.17121112,0.137036,-0.09354247,-0.8260344,0.30504563,0.30733278,0.37130037,0.34520164,0.0026144162,0.09345382,0.61273605,-0.5277161,0.09902471,-0.33532366,0.38427618,-0.07502501,-0.08004982,-0.4070718,-0.1386293,0.12426896,0.18438493,-0.040158067,0.23648202,-0.22295353,0.36663008,0.20673643,1.0580344,-0.26938254,-0.08884532,0.009385331,0.3524361,0.37831184,-0.24191894,0.023143645,0.28925195,0.35558385,-0.033783454,-0.79406154,0.14315674,-0.31712213,-0.24020742,-0.28221944,-0.32763788,0.22481622,-0.23294957,-0.431758,-0.29828763,0.054554876,-0.25025484,0.3954709,-2.3132937,-0.39016366,-0.13204758,0.2083218,-0.2779142,-0.20296358,-0.02638838,-0.48257142,0.45955205,0.35014105,0.36370888,-0.61281097,0.47405097,0.4480531,-0.5628478,0.013833689,-0.6525315,-0.114714704,-0.08018499,0.5946168,-0.0066779256,-0.23804423,-0.17822869,0.24611673,0.45881408,-0.13430789,0.118027054,0.3619514,0.23682788,-0.13338907,0.2569114,0.04901245,0.46788666,-0.4213934,-0.19691847,0.41718966,-0.20837021,0.17170055,-0.116739385,0.11898391,0.56358135,-0.63153166,-0.79474896,-0.7002859,-0.32297948,1.2073725,-0.27529714,-0.62552696,0.18794203,-0.4468477,0.034488156,-0.028994232,0.41926554,0.036781397,0.09314256,-0.8882141,0.08254867,0.0086760735,0.42214495,-0.004392994,-0.10795855,-0.37483045,0.8276431,-0.029094057,0.3684821,0.31150725,0.23249182,-0.37547573,-0.5532921,0.22170803,0.9406944,0.5557275,0.1007442,-0.3011255,-0.24136247,-0.2985219,-0.086977184,-0.049281757,0.54291683,0.8109626,-0.20000724,0.01209448,0.35702363,-0.19569634,0.16462313,-0.30073524,-0.4714241,-0.13762853,0.16948102,0.4977108,0.4520151,-0.027210103,0.35495177,-0.048761863,0.20385087,-0.010256158,-0.61549133,0.5965192,1.2913922,-0.19476148,-0.1989266,0.6071829,0.40991262,-0.42021242,0.55877227,-0.6836597,-0.42937043,0.47851223,-0.11835712,-0.41921633,0.17916194,-0.4946306,0.30473432,-0.83768827,0.4315755,-0.39990163,-0.43733335,-0.63325816,-0.11398571,-3.253381,0.3036407,-0.2803442,0.0710411,-0.33472922,-0.09997046,0.3824268,-0.24666573,-0.5949564,0.18102732,0.12530799,0.7483324,-0.114572264,0.05206603,-0.26432696,-0.25162292,-0.35198328,0.20799412,0.0584948,0.25185174,-0.13025129,-0.3728643,-0.021846652,-0.24040566,-0.45419958,0.035828386,-0.73920745,-0.4706059,-0.30657127,-0.74601406,-0.17693543,0.60772896,-0.096330605,0.030734697,-0.43310028,-0.0040172297,0.067361765,0.37035236,0.2165047,0.23860228,0.17636187,-0.027228998,-0.25064304,-0.33158416,0.024306433,0.062073197,0.10654241,0.35511035,-0.021082338,0.2199429,0.56371146,0.63575107,-0.0332176,0.827007,0.5785913,-0.20276248,0.58576244,-0.15063807,-0.3839807,-0.5564206,-0.24253988,-0.14812963,-0.44857496,-0.37659758,0.0960396,-0.33331856,-0.80137354,0.54700553,0.087239124,0.2703602,0.20868738,0.2560515,0.4594238,-0.06833914,-0.023812333,-0.16541897,-0.3005306,-0.5694122,-0.39608738,-0.6338049,-0.48586056,0.11632083,1.1495736,-0.2274802,-0.16503975,0.081672944,-0.25027758,0.03928293,0.2812274,-3.022807e-05,0.2858149,0.4215847,0.105300106,-0.59960705,0.29299498,0.0903017,-0.08451391,-0.45328754,0.40020236,0.6666755,-0.7209038,0.57542473,0.3370042,0.13611527,-0.31106117,-0.6425049,-0.05878133,0.13289821,-0.26115808,0.46443796,0.13502368,-0.80219287,0.49807438,0.34479758,-0.16899464,-0.8916413,0.4032764,-0.123030506,-0.24576625,-0.107962444,0.4579865,-0.052145384,0.16378136,-0.32477376,0.30145612,-0.4723224,0.2924786,0.29785267,-0.09744661,0.28177136,-0.16717906,-0.35961398,-0.63651377,-0.14331175,-0.7018643,-0.27880505,0.40082034,-0.017179267,-0.01816873,0.10889349,0.06382406,0.5628017,-0.01676592,0.14416294,-0.1233222,-0.41358042,0.5208892,0.63726467,0.3685739,-0.34542805,0.7672245,0.08465236,-0.13712831,-0.2728043,0.21390018,0.44746274,0.29141337,0.54758126,-0.036837477,0.093219735,0.30114624,1.004418,0.09164839,0.49753904,0.139169,-0.05807044,0.24656649,0.058347754,0.15503871,-0.18110932,-0.27774262,-0.040491965,-0.10498619,0.21551068,0.43747273,0.07029659,0.25099745,-0.025549177,-0.2761487,-0.10708822,0.16598178,-0.029048989,-1.4760295,0.4216263,0.36572525,0.71032715,0.6233597,0.060009796,-0.12306412,0.659377,-0.2300411,0.07849259,0.30409268,-0.20172314,-0.41167974,0.5335789,-0.8334393,0.29376957,-0.098123655,0.05289316,0.07460264,0.29767373,0.5026459,0.8809232,-0.27575547,0.027093444,-0.14800835,-0.22050692,0.31127867,-0.2806977,0.16225983,-0.25612456,-0.61611134,0.603638,0.3532825,0.3548103,-0.41453415,0.027744489,0.002525385,-0.2815999,0.3194154,-0.06939762,-0.1810629,-0.051865228,-0.5963478,-0.19312513,0.49020672,-0.014619546,0.12350474,0.044522427,-0.21039455,0.172246,-0.20379052,0.018166568,-0.1394292,-0.86263263,0.057494458,-0.28509843,-0.30622318,0.64622515,-0.2793717,0.027674558,0.14356425,0.0009827401,-0.4291846,0.3813491,-0.10855518,0.55784494,0.23079333,-0.125542,-0.24308501,0.16948901,0.115061365,-0.30899972,0.1318811,-0.3088037,-0.0007382887,-0.7091292,0.60305595,-0.07058236,-0.3306806,0.3538305,-0.14973833,-0.10040041,0.5855913,-0.30753675,-0.19099239,-0.039292198,-0.20103848,-0.16584696,-0.28274596,0.011865114,0.41493845,0.11940997,0.06125245,-0.2029678,-0.055056214,-0.020756837,0.62593764,0.12777461,0.26513335,0.49173784,0.113789186,-0.53538895,0.05885556,0.27131665,0.6156203,0.27704784,-0.14141823,-0.008318944,-0.30869347,-0.42671338,0.02710058,-0.18111612,0.2613876,0.0366774,-0.4045739,0.81488526,0.16179757,1.288468,-0.053524118,-0.32443067,0.16435088,0.51865035,0.04019245,-0.08727678,-0.46207744,0.7073207,0.6525154,0.0659947,-0.0013403083,-0.5149099,-0.10821118,0.24705853,-0.215009,-0.019211207,-0.05594259,-0.84382313,-0.22009227,0.22800843,0.29682872,-0.072564304,-0.14104661,0.032985296,0.1266232,0.013661628,0.20524856,-0.5879334,0.092829965,0.37852404,0.18197353,0.00014162276,0.10840397,-0.37827772,0.313699,-0.74499226,0.13234398,-0.29465818,-0.021507947,-0.091185294,-0.2815914,0.29958007,0.09873747,0.23377822,-0.4307025,-0.32582277,-0.21070337,0.7003452,0.2119062,0.041645806,0.7520593,-0.32461643,0.217276,0.27087972,0.42050728,0.9822566,-0.2887566,-0.002582005,0.084696345,-0.50304806,-0.7517198,0.3969216,-0.2326304,0.2230886,0.069109164,-0.33217782,-0.46613583,0.13542648,0.15016055,-0.04583892,0.018731007,-0.81891817,-0.1509881,0.22004938,-0.20738307,-0.06985763,-0.34514925,0.16719405,0.52554816,-0.34140936,-0.21248582,0.19371383,0.29839143,-0.3890055,-0.6722707,-0.044255793,-0.43471226,0.33229417,0.13940834,-0.3868007,0.054467957,0.14617382,-0.7322666,-0.012103117,0.23382302,-0.32873815,0.039469905,-0.19420226,-0.0025587422,0.82877046,-0.1501993,-0.036237843,-0.51485795,-0.6644575,-0.97766685,0.017928004,0.6561464,0.24747238,0.21327095,-0.8198747,-0.07563334,-0.09750442,0.17982088,0.15113533,-0.60780233,0.41690734,0.13126907,0.53133184,-0.05363765,-0.9889039,0.20856924,0.14920865,-0.056085493,-0.47483233,0.3767992,-0.16384973,0.79292476,-0.011915388,0.07458056,0.056340553,-0.68785137,0.014652938,-0.3198536,-0.22292875,-0.6256132,-0.047882777,481 -455,0.36918116,-0.12376928,-0.46930483,-0.07703581,-0.19395348,0.18459842,-0.22597407,0.55067533,0.22955169,-0.46510595,-0.14746772,-0.17466094,0.0593395,0.2769387,-0.06226444,-0.3381257,0.10825781,0.20287843,-0.37160447,0.3508251,-0.41906562,0.25641164,0.10773391,0.3919311,0.29138693,0.31472537,0.0062254667,0.12999788,-0.2097381,-0.20794842,-0.090347424,0.20006402,-0.4187228,0.09051294,-0.22893003,-0.2174584,-0.19791009,-0.6451367,-0.44812396,-0.7005209,0.23697965,-0.87545824,0.5806478,-0.001510122,-0.25940678,0.15564089,0.2980392,0.33410224,-0.054335017,-0.043057587,0.14496829,-0.08837391,0.039817356,-0.041830745,-0.28982228,-0.40191165,-0.59570324,-0.020642992,-0.43324047,-0.04087192,-0.15342604,0.13976507,-0.20234835,0.10658358,-0.09259153,0.28023556,-0.3795021,0.17024705,0.38054466,-0.18512209,0.18855783,-0.50041777,-0.16523325,-0.0714312,0.18161467,-0.1315357,-0.31198516,0.1937749,0.36607343,0.41899508,-0.16718586,-0.12461083,-0.3480157,0.054964755,0.123506345,0.6136123,-0.18062183,-0.2597765,-0.22334707,0.057005588,0.33802363,0.23244484,0.22961123,-0.11551223,-0.18917963,-0.15121873,-0.26051012,0.30449295,0.5423416,-0.3163592,-0.20206022,0.41690138,0.602485,0.29076776,-0.1738336,0.1628289,0.11964804,-0.6251605,-0.06663338,-0.0047467947,-0.22695172,0.56737953,-0.08994063,0.16568504,0.52107334,-0.1551442,0.019189147,0.23170315,0.104091965,-0.085067384,-0.26156175,-0.20383517,0.16137084,-0.5133223,0.05737659,-0.11962811,0.5638185,0.2083355,-0.6207875,0.3547449,-0.41042852,0.09347285,-0.064253196,0.3674436,0.8786945,0.3523119,0.18169917,0.76318634,-0.32991424,0.067923665,-0.21032305,-0.24317774,0.2657499,-0.19514664,0.025074553,-0.5484258,-0.05048784,0.102725066,-0.18653925,0.27828258,0.6357112,-0.51743037,-0.13167731,0.17192881,0.85309345,-0.23436524,-0.2720596,0.82924527,0.9048427,0.91327274,0.091707334,1.0412929,0.19762121,-0.10953792,0.0178441,-0.18680182,-0.72603065,0.30041662,0.27631885,-0.37465957,0.3326741,0.21521606,0.02530135,0.27170318,-0.24475773,0.002188606,-0.10551425,0.10148174,0.094567,-0.14583695,-0.22592159,-0.27291688,-0.06827385,0.073468804,0.075675465,0.18724056,-0.1882914,0.5531789,0.027893903,1.6030598,-0.058949925,0.025526192,-0.02265698,0.3297805,0.26699337,-0.48784086,-0.18649022,0.33446583,0.47559044,0.104570866,-0.43466383,-0.011343254,-0.11117266,-0.27028576,-0.17981836,-0.295943,-0.22935806,-0.10469465,-0.39255333,-0.14020036,-0.12074558,-0.30174333,0.40017393,-3.076598,-0.11670299,-0.05787915,0.2722972,-0.26140156,-0.4168689,-0.31020245,-0.5110487,0.31426218,0.29437986,0.42059755,-0.6271516,0.25745288,0.21409342,-0.5386486,-0.057297893,-0.706962,-0.04856097,-0.027128713,0.24579236,-0.0025189668,0.011451781,0.1429847,0.371368,0.50119126,0.061768018,0.16109884,0.3183496,0.4751093,0.17090607,0.35270697,-0.14613228,0.60931695,-0.13167801,-0.22038145,0.34924704,-0.4223922,0.29591402,-0.20766017,0.14905997,0.4953501,-0.3792695,-0.89261085,-0.5922273,-0.08354538,1.0527318,-0.20893583,-0.34435305,0.16243908,-0.47471032,-0.3627959,-0.038939927,0.4688109,-0.09897138,-0.15389864,-0.77764183,-0.19967021,-0.097773604,0.060167454,-0.18646394,-0.1317621,-0.3491409,0.536078,-0.098912,0.30813876,0.30585784,0.17552896,-0.24920967,-0.5095488,0.034563083,0.9966367,0.4141571,0.13623108,-0.30210486,-0.20940141,-0.5313026,0.03546454,0.16126664,0.5284532,0.6948975,-0.11651276,0.2267582,0.27018994,0.117125764,0.051958892,-0.087911926,-0.27867582,-0.115356624,0.0019841024,0.5474631,0.62499607,0.0070869857,0.6295083,-0.078117564,0.1355033,-0.23667121,-0.6685155,0.33932325,0.73261845,-0.18607321,-0.39424846,0.6102791,0.28994566,-0.07685772,0.43891138,-0.4590679,-0.33917826,0.28868523,-0.103485,-0.2529741,0.33721253,-0.33586994,0.17914906,-0.8366548,0.22720702,-0.04604578,-0.65425557,-0.49172285,-0.1268816,-3.2902963,0.2107015,-0.068809785,-0.25460002,0.03299603,-0.27502462,0.25444317,-0.46677405,-0.6264983,0.20541202,0.04287466,0.8152104,-0.12543797,0.049959812,-0.11535786,-0.35010242,-0.4341028,0.105487876,0.17370787,0.36181825,-0.001777734,-0.4196965,-0.08191117,-0.2981759,-0.45090294,-0.018914979,-0.57116014,-0.4958814,-0.21769752,-0.37538925,-0.12070187,0.6154044,-0.41157827,-0.0031959626,-0.20295747,0.081853725,0.01780599,0.30315706,0.15487167,0.026861522,0.015459577,-0.023703447,0.095806904,-0.22527803,0.3262665,0.2382283,0.24732235,0.5349394,0.052126233,0.23738249,0.4628634,0.62522143,-0.21098234,0.9241265,0.4302945,-0.13703261,0.1976928,-0.15889283,-0.15886736,-0.34998116,-0.15500543,0.020929093,-0.5925647,-0.44924274,-0.13966413,-0.33692354,-0.81862366,0.38425532,0.075024344,0.24396369,-0.03361254,0.28145412,0.4992699,-0.2283829,0.015827557,-0.16231051,-0.19008,-0.5511165,-0.39206886,-0.5800877,-0.45433268,0.32418796,1.1466277,-0.26380777,0.17459403,-0.03319757,-0.24640675,0.0021353576,0.12839553,-0.10322668,0.058229625,0.3834381,-0.14459483,-0.59560716,0.3055697,-0.20783089,-0.18192177,-0.70571136,0.12795582,0.5604935,-0.576459,0.5868598,0.32249063,0.043817084,-0.3354031,-0.52887475,-0.12981406,-0.093036704,-0.33092052,0.45796487,0.28139082,-0.7276449,0.41588134,0.2876335,-0.41669032,-0.6335104,0.56626123,-0.015450587,-0.077408634,-0.19055526,0.23172651,0.09463567,0.11134834,-0.22582507,0.12483721,-0.45629027,0.17011239,0.20665576,-0.008621393,0.21461177,-0.2929649,-0.19482647,-0.5836738,-0.06578624,-0.4058771,-0.29913813,0.19568726,-0.0140659725,0.28848934,0.18191852,0.2513081,0.36161885,-0.42309552,0.139853,-0.14337263,-0.2466688,0.3330953,0.41639462,0.6092824,-0.39586475,0.5529612,0.0359775,-0.18526353,0.15488508,0.06327586,0.46228045,0.1264709,0.24863566,0.041393936,-0.2515519,0.13941933,0.84455544,0.123740904,0.34168777,-0.060349006,-0.039870173,0.044239026,0.06418372,0.20249344,0.07639601,-0.61580247,-0.17513232,-0.46792722,0.22987683,0.44636998,0.1471231,0.3079349,-0.04560992,-0.3070846,0.0157606,0.09205581,0.1920968,-1.262082,0.3108543,0.18462732,0.8104434,0.34652933,-0.027371513,0.0467655,0.58570015,-0.19802403,0.24048771,0.3519757,-0.09877543,-0.48734468,0.39210322,-0.8414416,0.5515191,0.01194562,-0.001501905,0.063254125,-0.081174575,0.54466236,0.9720624,-0.20647527,0.093331195,0.16908382,-0.18687008,0.10062361,-0.38247898,0.024721907,-0.8183793,-0.24078356,0.86308664,0.4404209,0.40290254,-0.10136127,-0.11936562,0.06780085,-0.02314662,-0.0234746,0.054527283,0.21453407,-0.19330451,-0.6269578,-0.15680476,0.49911907,0.06324262,0.22349472,0.06679288,-0.11583454,0.21018216,-0.220862,0.04935683,-0.1292802,-0.7578959,-0.1809129,-0.3811813,-0.59323794,0.49803644,-0.14907242,0.20920195,0.2733969,0.07471984,-0.14386933,0.50817937,0.12084804,0.80090183,-0.076627605,-0.08706988,-0.39955968,0.38302046,0.26346186,-0.15986598,-0.07012163,-0.28335747,0.14826189,-0.5104391,0.49170634,-0.13460143,-0.27807355,0.08103696,-0.05383871,0.14613663,0.57976186,-0.08446998,0.002876782,0.09243227,-0.28910765,-0.3975153,-0.06084072,-0.1674945,0.22087602,0.22523072,-0.26202437,-0.07077751,-0.10810805,-0.12845378,0.15552938,-0.00928766,0.34227303,0.31987476,0.016717723,-0.30955595,-0.11093012,0.1336768,0.56901705,0.0439741,-0.2212532,-0.41171366,-0.4698282,-0.4110961,0.38441822,-0.09461049,0.35688308,0.084600076,-0.048914585,0.8264497,-0.072348885,1.0096207,0.078982964,-0.45141095,0.06440391,0.477897,-0.040236473,-0.12795302,-0.43364257,0.9005085,0.4316137,0.057627518,0.011223636,-0.38695422,0.10066223,0.28248027,-0.1709644,-0.29289076,-0.052817326,-0.60576427,-0.10877304,0.30044016,0.25659975,0.28152832,-0.11040217,0.25152746,0.350521,0.0054239524,0.11658756,-0.45094466,-0.19612369,0.34574747,0.35575145,0.09715692,0.11397147,-0.44640183,0.298898,-0.4385151,-0.109301485,-0.12411549,0.19206718,-0.16191813,-0.5007127,0.22217146,0.13428898,0.4092694,-0.31008658,-0.37515035,-0.37814167,0.49688774,0.1644912,0.20138517,0.4463484,-0.20247896,0.025581151,0.008358674,0.45496324,0.8958201,-0.2974356,0.060318656,0.64988,-0.27334887,-0.7225567,0.3900561,-0.5100945,0.38472024,0.027973441,-0.21613303,-0.5421509,0.26698816,0.17466176,0.18683897,0.063233115,-0.40411255,-0.035122197,0.1365324,-0.13051149,-0.26887634,-0.41744962,0.10402475,0.49941716,-0.20986399,-0.2543813,0.110813186,0.38911125,-0.14093404,-0.38489813,-0.047972288,-0.17721748,0.23416497,-0.037411004,-0.27094236,-0.15986612,-0.060033318,-0.41515923,0.26462942,0.03918012,-0.2616303,0.120825045,-0.32717827,0.019259809,0.72237504,-0.24966972,0.07886908,-0.58457565,-0.43620366,-0.63426167,-0.28095084,0.22700688,0.116003715,-0.0784973,-0.6954121,-0.05900988,-0.1686429,-0.17864592,-0.09106009,-0.38298365,0.56184846,0.1324372,0.14507745,-0.026878506,-0.68105274,0.11024565,0.084049754,-0.24346818,-0.6004745,0.5665983,-0.08004756,0.87726814,0.19389184,0.09432892,0.32206106,-0.48143312,0.13242052,-0.2676211,-0.07121243,-0.6912423,0.058586296,486 -456,0.47552627,-0.049618296,-0.53528297,-0.3627831,-0.3705599,0.25790825,-0.22503291,0.1357572,0.190998,-0.6340478,-0.13584255,-0.191563,-0.023357842,0.27616042,-0.089262195,-0.7640916,0.11690206,0.23234406,-0.8002558,0.4738219,-0.5208193,0.47461537,0.39865956,0.2871291,-0.0049603325,0.19732334,0.1677996,-0.22836593,0.015019,-0.3009657,-0.27409703,0.17114356,-0.7354598,0.39861658,0.022655046,-0.3235972,-0.09063427,-0.29644293,-0.25149933,-0.781325,0.16348322,-0.87127864,0.4979424,-0.12708794,-0.34649044,0.09593747,-0.120679624,0.21263467,-0.3657453,0.24209774,0.16930489,-0.41965765,-0.22221024,-0.30265966,-0.26447687,-0.47460514,-0.687786,0.04873717,-0.48950472,-0.027855141,-0.37497,0.26927283,-0.30570653,0.16310672,-0.24170658,0.37132934,-0.39242128,0.12151776,0.21471755,-0.15917492,0.0531396,-0.30881286,-0.15047598,-0.21384239,0.363151,-0.13332106,-0.3217036,0.09871854,0.31012446,0.6502934,0.33293024,-0.38187757,-0.08834823,-0.2237541,0.22198145,0.4314136,0.09189476,-0.25900793,-0.30897412,-0.18983206,0.41243282,0.11122879,0.023699598,-0.3750408,0.043053742,-0.21344955,-0.35557604,0.3352058,0.5478794,-0.37842542,-0.18018498,0.3612307,0.43490744,-0.0929841,-0.24255231,0.17523275,-0.09232252,-0.51832765,-0.26167387,0.4377292,-0.07467967,0.54469544,-0.3168029,0.13871875,0.72195655,-0.23249009,-0.04264036,0.015386106,-0.07791401,-0.07130713,-0.18384756,-0.19742009,0.25363812,-0.55028176,-0.055041235,-0.52323955,0.91382176,0.18880264,-0.81814575,0.29421827,-0.46845263,0.21681885,-0.06655864,0.89513785,0.80245143,0.5054904,0.26129022,0.858126,-0.59490025,0.13698062,-0.007937188,-0.35192367,-0.02768089,-0.24724542,0.18557541,-0.33625653,0.06942613,-0.19888829,-0.008008084,-0.02781052,0.4203648,-0.3788815,-0.25907794,0.038088042,0.45980963,-0.5327565,-0.03579855,0.9768796,0.81598514,1.0673163,0.18679965,1.4493355,0.65559834,-0.31562576,-0.22930689,-0.042413823,-0.6637573,0.20526794,0.2647849,0.67141765,0.22239836,0.017527806,0.22457696,0.36703295,-0.5120503,-0.0070108133,-0.26323977,0.14238255,-0.20674013,0.08527725,-0.5023974,-0.3248088,0.21640396,0.05652355,0.0399263,0.3381656,-0.0869445,0.64799106,0.28477722,0.9552737,0.041525073,-0.01042293,0.026104173,0.28109804,0.08656763,-0.1350191,-0.03708716,0.20624678,0.50657594,-0.18076041,-0.779753,-0.20729458,-0.1972679,-0.24271965,-0.32825089,-0.35351875,0.05421457,-0.19452007,-0.36652133,-0.18369459,0.14554882,-0.44282645,0.4517756,-1.9298805,-0.2836086,-0.22704124,0.22895353,-0.101700015,-0.3068266,-0.29537842,-0.5596975,0.4235718,0.32114676,0.40688667,-0.7771473,0.5309826,0.31753942,-0.26703686,-0.056271818,-0.8686609,0.0066033774,-0.20936666,0.20942108,0.026520206,-0.21831687,-0.39296356,0.069291525,0.62931055,-0.079985484,-0.014138922,0.3514125,0.412986,0.0671676,0.579189,0.30958152,0.62481946,-0.2764024,-0.08201579,0.40879473,-0.45367464,0.30646738,-0.029748008,0.1334139,0.48760098,-0.65648043,-0.59672654,-0.7258422,-0.5825337,1.3598607,-0.61974424,-0.46495792,0.13879265,-0.0035351047,-0.24777998,0.08339264,0.39848855,-0.19188444,-0.012609013,-0.5717039,-0.14089617,0.13715379,0.41455576,-0.17775321,0.1138492,-0.32839122,0.77243435,-0.3203428,0.45853266,0.385712,0.10281751,-0.17879905,-0.46052054,0.12330204,1.1033342,0.38010105,0.113791645,-0.29193598,-0.5032205,-0.22514048,-0.2634005,0.09096517,0.5614199,0.7786732,-0.12673306,0.049853954,0.5244598,-0.151003,0.1388531,-0.17694494,-0.31482333,-0.17587273,0.004343716,0.73982936,0.52032745,0.08462299,0.3151706,-0.16569486,0.22632335,-0.045498915,-0.5363408,0.6428332,0.95658666,-0.0684914,-0.30378065,0.54400474,0.2576519,-0.43309504,0.42056307,-0.49310535,-0.45911855,0.48044276,0.04544925,-0.32258442,0.12164911,-0.30564335,0.32391962,-0.9910699,0.2968027,-0.10550935,-0.6517624,-0.5202494,-0.11698628,-3.2121506,0.23268549,-0.12679191,0.096116476,-0.2195196,-0.2317975,0.39265904,-0.30302206,-0.5979467,0.045009393,0.036472674,0.58334297,0.009889014,0.1246109,-0.3158962,-0.24728929,-0.35689703,0.04390978,0.15169014,0.2291276,-0.008044043,-0.2612735,0.2040209,-0.31777525,-0.34864822,-0.05043404,-0.75588906,-0.6548495,-0.15511712,-0.4017556,-0.29388162,0.7082859,-0.4067344,0.08775653,-0.22270177,0.0103279725,-0.18364742,0.23376454,0.23804767,0.2813883,-0.05974155,-0.0061316234,-0.23075901,-0.32621735,0.119715855,0.035784714,0.121985264,0.16021016,-0.26482698,0.19142565,0.37257907,0.68662864,-0.05440342,0.7296592,0.30462748,-0.091844305,0.25758287,-0.123939,-0.4689033,-0.70861477,-0.26891395,-0.14492072,-0.5088817,-0.3439081,-0.07396306,-0.24049024,-0.95618314,0.41045538,0.14719906,-0.14621337,0.0069732154,0.45652184,0.47506526,0.058699794,0.019586692,-0.10299375,-0.3227522,-0.47640234,-0.51486725,-0.8688482,-0.55980045,0.17531641,1.237541,-0.108657524,-0.11777594,-0.04977939,-0.38094157,0.26700068,0.33569518,0.22078393,0.23654678,0.54846734,-0.13232043,-0.6887782,0.51913863,-0.056490805,-0.123474665,-0.5429563,0.13947766,0.9822248,-0.796348,0.48987255,0.38877693,0.12814654,-0.037608426,-0.44866443,-0.30392462,-0.044069324,-0.32040712,0.5365157,0.15842421,-0.59294283,0.6300964,0.17535912,0.08202796,-0.70414436,0.3978339,-0.04467148,-0.112086244,0.23755987,0.50338924,-0.069548026,0.032301355,-0.13126372,0.04283009,-0.45596543,0.16009195,0.51323,-0.036059577,0.118526615,-0.18395032,-0.33365256,-0.6061712,-0.19973211,-0.7955922,-0.24451283,-0.016385375,-0.06970816,0.0148300035,0.15562764,0.078412004,0.48416963,-0.116018586,0.1616381,-0.26199308,-0.22960036,0.4572056,0.46934572,0.27503592,-0.5497832,0.7897201,0.21074353,0.17358887,-0.3184933,0.08012565,0.5155858,0.25912246,0.42258886,-0.15721965,-0.08176577,0.10549233,0.7132164,0.36225396,0.413951,0.27365252,-0.081730664,0.45672098,0.30331168,0.28031835,-0.1354052,-0.1983757,-0.12376434,-0.031108277,0.16167477,0.34016728,0.019686922,0.50609046,-0.07438527,-0.05218202,0.12758991,-0.0323064,-0.16646543,-1.2199333,0.3098201,0.2840747,0.5934347,0.37171555,-0.026229382,0.0033071872,0.6401698,-0.61679965,0.019126778,0.123690546,-0.14438908,-0.32175848,0.5846583,-0.604128,0.42492062,-0.15845574,0.040611763,0.10467994,0.28810278,0.4282067,0.92782295,-0.15963955,0.067620434,-0.14751032,-0.15039523,0.2802032,-0.5158349,0.013172047,-0.46784216,-0.37822595,0.68692726,0.1292102,0.44248182,-0.39165846,-0.030991161,0.057343926,-0.15399596,0.11243453,0.020592107,-0.11359525,-0.13166814,-0.61103487,-0.26659337,0.5896522,-0.098538026,0.2194921,0.28952187,-0.29498053,0.34578982,-0.07092856,0.009573979,-0.25965184,-0.65915245,-0.13449004,-0.41123804,-0.40227073,0.17935495,-0.5162844,0.25582865,0.3062499,-0.03801651,-0.27609205,0.16583502,0.14776002,0.6445055,0.12778163,-0.36552027,-0.17589308,0.113786526,0.31858665,-0.4354352,-0.057439215,-0.23119248,0.11912899,-0.68900985,0.38957787,-0.2312522,-0.29927343,0.14161423,-0.115709044,-0.02944226,0.47800663,-0.27302057,0.018695993,0.21139719,-0.06468714,-0.22219276,-0.14281635,-0.30848163,0.22514923,0.062400084,0.038363438,0.094152704,-0.09032676,-0.036879547,0.4108704,0.11157979,0.220302,0.33162668,-0.09997697,-0.35959122,0.105753556,0.0045127785,0.31166926,0.25725833,-0.19555925,-0.13731472,-0.24602939,-0.21085814,0.49405834,-0.1302068,0.22599576,0.0023385542,-0.52142197,0.99559087,0.12343591,1.0207226,-0.016389813,-0.4007906,-0.012027702,0.6030968,0.081976466,0.12930496,-0.022948068,0.95125145,0.52222085,-0.1595447,-0.11480212,-0.48773673,-0.18990898,0.19305773,-0.19497243,-0.254619,-0.023158569,-0.63336146,-0.27692422,0.13448767,0.33614245,0.108983755,0.03864414,0.07296302,0.0647318,-0.024458472,0.5263785,-0.63156223,0.055265743,0.32098386,-0.0015873994,-0.0908581,0.2253696,-0.21663009,0.3840065,-0.8610352,0.19225146,-0.36665156,0.06776952,0.15656063,-0.24086435,0.2949927,0.07932188,0.20641886,-0.4159067,-0.31962433,-0.38830563,0.7143027,0.305147,0.36641726,0.8656761,-0.32013518,-0.06059318,0.33209515,0.567106,1.3324662,0.014236455,0.21557967,0.23788579,-0.47115287,-0.5151002,0.27889967,-0.19573542,0.08470575,-0.020349517,-0.4755078,-0.32107323,0.25931618,0.11621871,0.054510858,0.31214735,-0.5681959,-0.19867133,0.36486942,-0.25645915,-0.34868482,-0.3045604,0.29261133,0.4817135,-0.28636807,-0.24119529,0.018504713,0.14056514,-0.48395988,-0.602469,-0.01963514,-0.4720711,0.3518751,0.112714775,-0.28849903,0.11087727,0.3265493,-0.52059263,-0.070827946,0.2475414,-0.4031736,0.09590657,-0.24294119,-0.037564296,0.942092,0.09202175,0.20237994,-0.7620286,-0.63056594,-0.78004616,-0.36891195,0.6104716,0.24995048,0.04099479,-0.5146437,-0.1677909,-0.1807839,-0.053369064,0.25189543,-0.49218354,0.3695366,0.356939,0.38098726,-0.010640867,-1.0293877,0.20811176,-0.09003256,-0.27451214,-0.4936726,0.4213222,-0.12978305,0.5899199,0.12869155,0.124934964,0.09350366,-0.5764919,0.4243081,-0.1796078,-0.19899143,-0.6533968,-0.05192439,487 -457,0.24049966,-0.25650468,-0.35081318,-0.15486254,-0.43201378,0.19977714,-0.1477667,0.2767664,0.19764386,-0.43069348,-0.37798762,-0.06538121,0.14273253,0.27482396,-0.13981353,-0.5460409,-0.10728748,0.20747402,-0.61586946,0.38590056,-0.61422014,0.4227015,0.21010001,0.29989582,0.08795591,0.33450365,0.31367126,-0.06290937,-0.18199857,-0.016130766,-0.23801391,0.22766519,-0.47460708,0.062440302,-0.2663318,-0.294549,0.11309331,-0.54005724,-0.3084114,-0.68727547,0.32481366,-1.1061409,0.5095324,-0.08924583,-0.07773471,0.13881186,0.23639631,0.21814713,-0.30465502,0.102339335,0.1845167,-0.20898366,-0.113840766,-0.17316072,-0.23545928,-0.37148646,-0.5389961,0.11170624,-0.43004194,-0.30294746,-0.19877698,0.20172803,-0.3832216,0.21284424,-0.1051054,0.21522224,-0.39597628,0.005538436,0.31719413,-0.2097667,0.112185225,-0.5185978,-0.024987202,-0.09792093,0.43629304,-0.103742935,-0.04803598,0.40494743,0.40414408,0.5914603,0.22149475,-0.30786142,-0.24588068,-0.11918129,0.1634904,0.6615373,-0.14518595,-0.2547179,-0.26584843,0.070927225,0.24300899,0.36647967,0.056816135,-0.005589749,-0.100280404,-0.07472236,-0.35654083,0.32771155,0.5381891,-0.3901971,-0.44937128,0.3223255,0.6798707,0.035518203,-0.17454728,0.041549627,0.054826148,-0.49146575,-0.09604473,0.14068106,-0.111484475,0.5337062,-0.22541912,0.1314343,0.8221125,-0.081436194,0.19506754,-0.088639416,0.054544803,-0.32908052,-0.23533659,-0.13595568,0.09485108,-0.5343618,0.1044483,-0.2753038,0.8092946,0.15623654,-0.6405343,0.511319,-0.44651845,0.22515866,-0.08287496,0.55536443,0.5644436,0.27323848,0.44281715,0.7968812,-0.3594253,0.16605963,-0.11821497,-0.413579,-0.04871491,-0.33374646,0.17202497,-0.3850631,0.27665702,-0.09101761,0.02205508,-0.057876505,0.5965052,-0.5077107,-0.14587271,0.20236471,0.87502,-0.41358763,-0.078966975,0.725758,0.9060388,1.0287869,-0.012302036,1.466627,0.41627914,-0.25700906,0.040289182,-0.3156326,-0.804728,0.20624433,0.4121268,0.27241448,0.26203835,0.08838998,-0.11450576,0.3168089,-0.49585503,0.004920491,-0.29611486,0.17910595,0.13232867,0.08058932,-0.5300722,-0.20783648,0.080422565,-0.13000453,0.2768353,0.19208468,-0.17472894,0.44306558,-0.13640691,1.4733334,-0.08034211,0.08085072,0.15453216,0.48754546,0.26823792,-0.046763547,-0.09105503,0.4350633,0.42298684,-0.10602269,-0.67380106,0.12389201,-0.31826422,-0.4154997,-0.20427693,-0.2885882,-0.21571632,0.18087408,-0.28404826,-0.29074886,-0.13466732,-0.3203303,0.35601753,-2.5626054,-0.35376593,-0.20012115,0.3546547,-0.33442837,-0.23183951,-0.12931518,-0.60754937,0.28037095,0.22312157,0.43933445,-0.6638493,0.39519802,0.5122952,-0.48109192,-0.10607187,-0.7351743,-0.13075699,-0.024608906,0.4086538,0.035446096,-0.17725696,-0.3106169,0.032262024,0.61593664,0.17568922,0.15958211,0.5475098,0.53174764,0.275964,0.53856725,0.0885408,0.6162292,-0.40910688,-0.1080181,0.4506381,-0.31541744,0.41208276,-0.20825349,0.11079256,0.5109929,-0.5200481,-0.8167587,-0.6801787,-0.52835506,1.1095207,-0.38326547,-0.35103115,0.20963576,-0.09402021,-0.14740051,-0.06354953,0.5087591,-0.19040813,0.00019700613,-0.78881747,0.034407355,0.09635035,0.15168382,0.071097836,0.022998348,-0.24746041,0.7624922,-0.1570469,0.5550908,0.16787876,0.20394818,-0.08572284,-0.29920247,-0.0003667942,0.89904225,0.3558384,0.069069214,-0.22790502,-0.36833778,-0.12832537,-0.36795992,-0.022180377,0.4184281,0.7078802,-0.0025173745,0.08097653,0.3576396,-0.07038939,0.036240183,-0.18318343,-0.17029135,-0.10653346,-0.031675704,0.4210295,0.56222636,-0.24781227,0.42234325,-0.35484833,0.31479773,-0.12695341,-0.60702235,0.4988849,0.60067034,-0.16035624,-0.0528103,0.6646458,0.48825735,-0.48121718,0.44435582,-0.74385357,-0.22544673,0.64820784,-0.17316996,-0.49759415,0.05599352,-0.25946897,0.16006884,-0.7843433,0.26820204,-0.13740091,-0.3268542,-0.49138913,-0.13506404,-3.1376898,0.13621387,-0.1559253,-0.14180402,-0.22454797,-0.26244855,0.17242989,-0.47129375,-0.63881916,0.2407074,0.09744728,0.5387248,0.009609767,0.30426827,-0.30412918,-0.014744282,-0.3220704,0.1257601,0.16067502,0.3770955,-0.23541567,-0.46236324,0.09211063,-0.1591716,-0.4708733,0.20273037,-0.69097954,-0.5296236,-0.15625797,-0.42948723,-0.26033407,0.5814754,-0.40240175,0.05849433,-0.31948707,0.013574489,-0.32453632,0.14763677,0.16678728,0.22189035,0.11208214,-0.18452753,0.06487828,-0.31902406,0.7479038,-0.038089115,0.27666014,0.21928212,-0.08761239,-0.024765449,0.3092138,0.5931781,-0.1718813,1.034897,0.3109731,-0.12868576,0.231788,-0.29721993,-0.16202618,-0.5909713,-0.24336112,0.023425927,-0.47332856,-0.6011899,0.041985925,-0.35454848,-0.85075873,0.56016797,0.0133578135,0.30726844,-0.06080394,0.3211135,0.41902143,-0.15341285,0.0034302622,-0.060696237,-0.16623776,-0.6247167,-0.37520885,-0.65204686,-0.44418493,0.091399364,0.9784308,-0.19595559,-0.067911886,-0.20541285,-0.35310864,0.0032667858,0.08546572,0.09298807,0.2621731,0.56676036,-0.027684463,-0.7658719,0.48584446,0.11372022,-0.07633956,-0.45818433,0.01414824,0.59020865,-0.8008461,0.5866347,0.46149462,-0.027776761,0.05344332,-0.4602847,-0.36368564,-0.18196462,-0.2610374,0.39363232,0.18488696,-0.78311974,0.5357692,0.34809685,-0.4836966,-0.9061679,0.16995142,-0.041989915,-0.052498903,0.058848985,0.300245,0.1860214,-0.098636165,-0.107964754,0.019652953,-0.4482054,0.3582767,0.22324446,0.056754094,0.42296726,-0.28898,-0.40699124,-0.75623196,-0.070392266,-0.49742618,-0.12603198,0.30556387,-0.03440812,-0.10464525,0.17269857,0.06986349,0.46615845,-0.30318406,0.076848924,0.12991564,-0.2643686,0.1495523,0.32345596,0.37905365,-0.40746525,0.5594481,0.07473806,-0.18154904,0.13777538,-0.028327227,0.32387856,0.15809543,0.26147553,0.06450045,-0.20622848,0.41452068,0.91338265,0.13269158,0.4411873,0.2614374,-0.1821406,0.52567387,-0.012781224,0.055977397,-0.02346846,-0.44840124,-0.03940257,0.000494693,0.10506599,0.39140844,0.2999632,0.34501797,-0.076751806,-0.067636274,-0.05278519,0.11583813,-0.055959642,-1.0166038,0.029227462,0.12569581,0.8728918,0.35079426,-0.015393466,-0.055236083,0.6326057,-0.33106866,0.14261167,0.4680124,-0.045290954,-0.50824344,0.73145527,-0.4385407,0.40895873,-0.27024737,0.004637137,0.031189825,0.19667777,0.2470245,0.86403495,-0.18380283,-0.00996095,-0.10466308,-0.19363086,0.101552926,-0.30756727,0.02654752,-0.3786249,-0.26984617,0.67045826,0.31924817,0.3771551,-0.05254137,-0.08315575,-0.0877995,-0.11419921,0.20395228,0.13524589,0.11333089,0.08829391,-0.63777494,-0.2396911,0.6212556,0.2462039,0.27758262,-0.15963146,-0.43831182,0.19649199,-0.33649006,-0.056602936,0.028576186,-0.7434961,-0.025093505,-0.09836234,-0.6731024,0.20964544,-0.008966736,0.125217,0.25914183,-0.056307603,-0.25978437,0.07973023,0.13479689,0.88057965,0.0014810839,-0.2813923,-0.37142643,0.09021664,0.369314,-0.36581627,0.27037463,-0.29463348,0.0476729,-0.51806575,0.85209095,-0.20572202,-0.46943498,0.26269013,-0.32060322,-0.03859728,0.6160592,-0.09097718,-0.08856673,0.02552453,-0.15582047,-0.51106745,-0.010115491,-0.19569792,0.17990068,0.35163397,-0.12245524,-0.13312794,-0.29021087,-0.076667294,0.647457,-0.0043669906,0.42226702,0.2485706,0.026489917,-0.23228455,0.05743951,0.14424588,0.5617785,0.03257354,-0.033987906,-0.34224796,-0.46543485,-0.110826,0.22119235,-0.12924854,0.21967593,-0.024768349,-0.4545451,0.87734693,-0.03113241,1.0942985,0.25728545,-0.3145669,-0.06913582,0.56542253,-0.04725821,0.011067905,-0.2780939,0.82006294,0.48684222,-0.06088891,-0.0466506,-0.55456465,-0.040983073,0.31217146,-0.28900725,-0.12483189,-0.05816463,-0.55871457,-0.3614203,0.24297215,0.1852074,0.16935508,-0.054281324,0.16819116,-0.013995273,0.07951559,0.6004039,-0.587409,-0.32908455,0.2399843,0.0864948,-0.019100705,0.17615688,-0.40097308,0.39563814,-0.5855812,0.15585874,-0.41246095,0.0036230257,-0.24689354,-0.3655618,0.086315,0.060868464,0.45178843,-0.29124743,-0.47105378,-0.07474317,0.46805468,0.086907096,0.20511863,0.5763214,-0.26477298,-0.0080574835,0.12288236,0.60919464,1.3523681,-0.27977487,0.18777944,0.2662827,-0.34053904,-0.7141678,0.51940435,-0.3442092,-0.021166964,0.015155767,-0.36530557,-0.4621285,0.26711634,0.31644276,0.0066254246,0.18409058,-0.47874138,-0.21503296,0.35291085,-0.2293924,-0.14943527,-0.1805984,0.29415736,0.74694264,-0.26531652,-0.19709133,0.03666767,0.31154448,-0.39468876,-0.52017367,-0.18567984,-0.2736902,0.3085635,0.1552821,-0.23129228,-0.073614106,0.13333401,-0.42639682,0.10838835,0.13791497,-0.41617584,0.0412565,-0.2883721,0.0334217,0.86791563,-0.17496344,-0.07519891,-0.7573551,-0.3849383,-0.9090906,-0.3532929,0.37311077,0.1800841,0.021201761,-0.3681224,-0.013363277,-0.056459077,-0.23226474,0.17409587,-0.586082,0.45195103,0.18127675,0.46537906,-0.2388355,-0.7730765,0.014573693,0.042989526,-0.1642467,-0.5539171,0.6301418,-0.04067092,0.8724877,0.11080713,-0.12999311,0.047357257,-0.38099998,0.16045892,-0.41615534,-0.094602756,-0.8604995,0.0259652,491 -458,0.40957752,0.11999353,-0.49313012,-0.08773901,-0.1660156,0.14940752,-0.22911574,0.2187241,0.016397187,-0.69589335,-0.11370385,-0.17495383,0.016849527,0.062205825,-0.19457848,-0.41425326,0.039078392,0.23286664,-0.6533104,0.5912842,-0.3265009,0.5976964,0.12796818,0.26238817,-0.14214122,0.255438,-0.026710358,-0.3586472,-0.1841687,-0.2086397,0.0019886494,0.03788557,-0.6373493,0.27938315,-0.15312119,-0.3253734,-0.028432326,-0.14915381,-0.34640327,-0.600811,0.013078188,-0.6644224,0.48389593,-0.119478345,-0.22977994,0.09962108,0.17074703,0.3239492,0.07614691,0.13462779,0.19933787,-0.104040794,-0.29151177,-0.33463043,-0.04483784,-0.7683415,-0.2808219,0.00028755408,-0.5312181,-0.15263358,-0.24836108,0.14341034,-0.2601735,-0.16437423,-0.16462053,0.44300368,-0.2262405,0.26468012,0.11462758,-0.00981637,0.25317544,-0.61284447,-0.0974704,-0.18278255,0.5289124,-0.28087106,-0.0213356,0.09088574,0.14404671,0.42540652,-0.06202782,0.047892597,-0.1875608,-0.1479154,0.36259347,0.47590885,-0.1340721,-0.43158183,0.06912942,-0.0022550907,0.15612169,0.006839288,0.053656302,-0.4099102,-0.045484312,-0.27216402,-0.12646171,0.24355534,0.38608938,-0.19955406,-0.098125644,0.4316652,0.548171,0.098296985,-0.16826873,-0.03554227,-0.008116399,-0.30366236,-0.11074125,0.19976155,0.021789687,0.48953348,0.04313067,0.21781012,0.5890776,-0.050903626,-0.079566516,-0.04565683,0.031743355,0.12685408,0.037872333,-0.13873081,0.034041185,-0.4575961,-0.1982709,-0.29115772,0.90496856,-0.052941877,-0.75291765,0.3193373,-0.46172443,-0.06378902,0.14004196,0.520972,0.5155723,0.59178346,-0.21492144,0.46915463,-0.3875735,0.030371334,-0.08748363,-0.31238633,-0.023894574,-0.09052177,-0.06509574,-0.30465874,-0.07490616,-0.03350439,-0.18198295,-0.08792215,0.45586538,-0.4176796,-0.14520612,0.100571476,0.78610146,-0.25578028,-0.028711604,0.6298484,0.94569725,0.5963103,0.22096321,1.3387206,0.21131994,-0.2264546,-0.10388042,-0.33031988,-0.4871142,0.22939841,0.13852061,-0.45389608,0.24669157,0.19730636,-0.044691775,0.35234,-0.4390345,-0.048372895,-0.33258182,0.39638895,-0.019987125,-0.0066766357,-0.22627221,-0.08574755,0.062152464,-0.030812768,0.25861782,0.1558648,-0.17601204,0.25870356,0.27441868,1.439314,-0.2606625,0.12677042,0.06257414,0.078750476,0.13284835,-0.118072405,-0.05356333,0.31448677,0.27308956,0.082048856,-0.439434,-0.0299823,-0.13302372,-0.5263086,-0.28509837,-0.07057647,-0.16627577,0.16979663,-0.5219182,-0.10968452,0.010548661,-0.3238518,0.2902655,-2.268442,-0.1506385,-0.18366721,0.4547577,-0.23120263,-0.34181184,-0.21160515,-0.27013534,0.4989118,0.2025013,0.44511694,-0.49863428,0.33381313,0.3016582,-0.23073734,-0.32500443,-0.46968696,0.085409455,0.05281176,0.092073336,-0.12713863,-0.105287276,-0.018091397,-0.11193427,0.24622543,-0.4124625,0.067857325,0.4795544,0.3106406,0.105141915,0.29208073,0.13528086,0.5762864,-0.19991668,-0.13603339,0.27687877,-0.29267806,0.16173863,0.009887912,0.2008769,0.25877914,-0.43768993,-0.59411716,-0.71129173,-0.51993877,1.1573576,-0.2110173,-0.40649912,0.062492903,0.033247363,-0.46679983,-0.107487746,0.5065573,-0.019510482,0.11948715,-0.90883887,-0.086227365,-0.11847741,0.5996647,-0.017031142,0.026136998,-0.50876176,0.6310698,-0.20653684,0.36299664,0.3647832,0.23770912,-0.24452119,-0.35105085,0.14252521,1.2969247,0.32742238,0.16253278,-0.13677499,-0.18466996,-0.43636194,0.08012222,0.0043390947,0.5534811,0.54167426,0.06703831,-0.09758448,0.16619399,-0.03362948,0.14736386,-0.16849576,-0.36757448,-0.15486588,-0.092182174,0.47871074,0.3316166,0.008846326,0.6621641,-0.22461207,0.2891728,-0.30124086,-0.39503106,0.5418387,0.82403433,-0.29095525,-0.24935041,0.43055186,0.33493638,-0.20489617,0.25190696,-0.4956496,-0.49898833,0.2544159,-0.113531485,-0.29980895,0.3898964,-0.23270825,0.33533213,-0.9609255,0.4259179,-0.4533015,-0.62894577,-0.58867127,0.015733182,-2.291132,0.17050026,-0.07745962,-0.17222096,-0.102336235,-0.04290631,0.2469976,-0.41330048,-0.3917862,0.20059372,0.026990457,0.42765215,0.059651084,0.27581272,-0.02991036,-0.36319256,0.025655495,0.32545638,0.1666316,0.08025478,-0.12347505,-0.33745012,-0.089693114,-0.1362686,-0.14684807,0.0025477686,-0.6468759,-0.3728858,-0.08087111,-0.44138837,-0.2932806,0.6352161,-0.7611085,0.14843376,-0.26682708,-0.058532655,-0.017396914,0.24286495,0.15221092,0.13380599,0.08860384,-0.12928274,-0.23506583,-0.39740777,0.3238755,0.16697834,0.08817304,0.36263254,-0.21543296,0.1880063,0.2758036,0.507845,0.045509692,0.69559276,0.48340598,-0.15898809,0.18791568,-0.292101,-0.15591455,-0.53587055,-0.29736456,0.008996538,-0.4390448,-0.39907947,-0.2303088,-0.37105316,-0.7108653,0.46163246,-0.029097144,-0.2464381,-0.037768316,0.41391554,0.35982534,-0.0750611,-0.08799702,-0.1079133,-0.09980756,-0.38351223,-0.4675021,-0.5468569,-0.25626564,-0.11509216,1.106819,-0.0734082,0.12338811,0.09171382,-0.123221226,0.09516704,0.1094218,0.021777224,0.02781251,0.59113634,-0.13116057,-0.5469657,0.41182545,-0.26574644,-0.21975306,-0.48237637,0.26554924,0.69354403,-0.72165984,0.5301344,0.44505718,0.008087103,-0.24236782,-0.38746077,-0.14800511,0.08460774,-0.3834171,0.11534856,0.021282554,-0.5903816,0.27515408,0.2303257,-0.1088957,-0.7586469,0.5043569,0.08967268,-0.45380083,0.10898081,0.36243448,-0.13321361,-0.08839529,-0.39206403,0.027470836,-0.33982736,0.29615778,0.14151205,-0.18173543,0.18132128,-0.27716222,-0.15191567,-0.8400777,0.028307596,-0.24984476,-0.5026743,0.21557891,0.22841308,0.02822942,0.29751995,0.050765276,0.4269352,-0.33539537,0.031464554,-0.28213686,-0.19209497,0.32295623,0.24987066,0.2814909,-0.41836128,0.578762,-0.086830415,-0.17739883,-0.30491278,0.37385184,0.54668295,0.11775773,0.2739927,0.066980325,-0.09870706,0.235322,0.7200841,0.14240238,0.59355056,0.100829355,-0.1973373,0.115800515,-0.046813082,-0.017971788,-0.054226775,-0.4437438,-0.16694845,-0.11453598,0.15641782,0.38291264,0.052624997,0.38750392,-0.23262176,-0.4496438,0.05992181,0.31570715,0.15993772,-1.1349107,0.43548864,0.11151294,0.6950946,0.47197503,0.09095604,0.094951294,0.5092766,-0.31609562,0.2330222,0.032284375,-0.24736731,-0.1312262,0.41250664,-0.6289595,0.12995283,-0.09525219,-0.09593914,0.17667441,-0.21118914,0.14648175,0.93737113,0.0072542257,0.09745385,-0.0056567276,-0.20672889,-0.0884498,-0.26107213,0.27026865,-0.4791929,-0.3793933,0.51778436,0.38847706,0.34643242,-0.37193745,0.069802605,0.046257257,-0.26040486,0.13352789,0.109210625,0.16199313,0.14842346,-0.5720435,-0.1496804,0.62444484,-0.19373807,0.026198464,0.25152496,-0.21701853,0.3389376,-0.0043151462,0.1455971,-0.011103911,-0.5638166,-0.0022169563,-0.63300985,-0.19878879,0.2774575,-0.20296879,0.22370307,0.17043246,0.06874932,-0.25994274,0.57638836,0.33816057,0.5763914,0.26000306,-0.1833564,-0.22096054,0.27675882,0.21237054,-0.17027818,-0.007573511,-0.13823418,0.24681881,-0.6937651,0.22111544,-0.01020733,-0.055535905,0.13914415,-0.14324816,0.02633184,0.43324742,-0.06975906,0.0067073107,0.4011948,0.10608958,-0.10607404,0.041811705,-0.1593122,0.02502018,0.36632252,0.027794357,-0.031233212,-0.045871537,-0.2936835,0.23575775,0.12685128,0.4694076,0.55286694,0.21932428,-0.3724579,0.04058264,0.16624393,0.44612646,0.031737573,0.04267056,-0.1366461,-0.4457148,-0.3138546,0.26840416,-0.12821104,0.043136287,0.3245361,-0.28114226,0.81307095,0.12356249,0.9173684,0.0676653,-0.1550635,0.078044124,0.37283617,0.010724626,0.08863907,-0.4530097,1.0955489,0.63781846,0.08425275,0.15893129,-0.11544687,-0.17704798,0.09683372,-0.18702756,-0.19328655,0.0075439704,-0.6225219,-0.6263286,0.08448601,0.36351246,-0.15897797,0.045558177,-0.004666818,0.15109052,0.08268625,0.2675198,-0.7323845,-0.03579545,0.205961,0.23000588,0.061386254,0.28169844,-0.4055255,0.52104527,-0.6713843,0.010144889,-0.26484132,0.09270166,0.0411448,-0.23176332,0.06724241,0.12846586,0.33140805,-0.47436237,-0.20645568,-0.25007114,0.44688532,0.0041702176,0.09093958,0.6852023,-0.10164292,0.3093283,0.036131937,0.51415783,0.95370305,-0.23984215,-0.007126727,0.43273848,-0.4109383,-0.40789843,0.10472744,-0.38105163,0.2053765,-0.19998685,-0.28972858,-0.38867265,0.35127494,0.11332048,-0.14216657,-0.11750934,-0.64490193,0.0069175875,0.40340844,-0.26910594,-0.1616981,0.013055878,0.18679364,0.44868046,-0.1491396,-0.31419322,0.03699497,0.30119702,-0.3452697,-0.52542835,-0.15645969,-0.46720925,0.3221007,0.24855348,-0.30247977,-0.3073859,0.13683169,-0.38339496,-0.013086421,0.25626707,-0.25331825,-0.11349618,-0.24937005,-0.14910464,0.63229626,-0.016712418,-0.0748743,-0.40190262,-0.3467553,-0.6353832,-0.34084892,0.35708088,0.33373094,0.017665947,-0.65521014,-0.1096593,-0.2522871,-0.012593431,-0.13435967,-0.3657577,0.2999141,0.30575958,0.46496367,-0.1637856,-0.9967105,0.0997573,0.14797081,-0.24922517,-0.62488264,0.43071842,0.046997003,0.8286425,0.008023896,-0.006981741,0.47023895,-0.77033824,-0.0227438,-0.10196392,0.01808829,-0.7547907,0.08569453,495 -459,0.3776622,-0.19073853,-0.23871598,-0.32204252,-0.16539063,-0.027343664,-0.054398227,0.3979992,0.15788527,-0.5177097,-0.2093895,-0.22812216,0.019995868,0.36409548,-0.18213786,-0.7690657,0.048724853,0.12390971,-0.43656057,0.5757774,-0.52017814,0.48680454,0.1885718,0.08320509,0.033491034,0.312478,0.27238637,-0.28215042,-0.13495855,-0.19383676,-0.14629053,0.2509891,-0.6242667,0.1434271,-0.037966616,-0.2599751,0.08351033,-0.36365113,-0.31622916,-0.9517889,0.4249122,-0.9296743,0.39698854,0.067640536,-0.29569906,0.4702575,-0.09746294,0.14374152,-0.35288957,0.18858545,0.15504017,-0.224515,-0.060322158,-0.21733566,0.01936322,-0.3830411,-0.63347703,0.020303141,-0.33303303,-0.3262488,-0.3699372,0.13873309,-0.46832296,-0.10951625,-0.12518704,0.34841985,-0.5566494,-0.1794437,0.15867434,-0.14402188,0.42658654,-0.5813232,-0.057056602,-0.23115203,0.25319648,-0.20067856,-0.11894108,0.5882451,0.37916437,0.5565706,0.093417905,-0.2464228,-0.26836848,-0.18895552,0.33902302,0.45814997,-0.07765529,-0.64466566,0.119447455,-0.07001786,0.15210493,0.21330312,0.17979462,-0.26829484,-0.26864594,0.07132088,-0.3291876,0.3791885,0.55694944,-0.28987122,-0.207486,0.36051902,0.5992742,0.054575566,0.039914377,-0.07260083,-0.16145019,-0.71638834,-0.18474351,0.18758236,-0.5557099,0.7813269,-0.41350538,0.02546061,0.68588597,-0.34773463,0.08768691,0.022468854,-0.05726288,-0.02347417,0.046977036,-0.36465052,0.3158713,-0.36842448,0.1496226,-0.39314857,0.7658621,0.35534006,-0.9086899,0.33332095,-0.46551418,0.40887457,-0.24895467,0.6912378,0.6420112,0.40727305,0.4046242,0.7462015,-0.52820754,0.009886578,0.0821315,-0.34898487,0.10885195,-0.24393643,-0.19668683,-0.36902738,-0.077861264,-0.112007834,-0.25078154,0.072283685,0.50076693,-0.61641663,0.24424736,0.025921097,0.6951219,-0.36573917,0.084323645,0.86733943,0.8537272,1.2119743,0.234617,1.1763481,0.27934057,-0.3930599,0.15417449,-0.35022038,-0.77808267,0.24922505,0.55687654,0.051307652,0.2478752,-0.0045726425,0.08724795,0.22726043,-0.58252996,-0.07123559,-0.38911363,0.3589391,-0.051204734,-0.22924447,-0.6051356,-0.21182013,-0.15662296,0.18730018,-0.048405863,0.23513797,-0.095165886,0.44563198,0.09189533,1.146101,-0.01823644,-0.041586194,-0.0049595153,0.3434525,0.22198334,0.056500282,-0.09101389,0.3709384,0.42003074,0.036123026,-0.73773205,0.009314452,-0.18679582,-0.580136,-0.11185621,-0.39850768,0.20582195,-0.054674324,-0.25638565,-0.2399691,-0.02471592,-0.3690736,0.5831003,-2.2949822,-0.24633233,-0.044817924,0.28770047,-0.14960508,-0.18889797,0.06434474,-0.50592667,0.5914294,0.4122831,0.6633234,-0.8784452,0.17055485,0.44591135,-0.4458466,-0.044827964,-0.8115594,-0.23765466,-0.07676884,0.26495036,0.25017983,-0.051754117,0.16637741,0.07028188,0.49093837,0.11184429,0.09311847,0.22054294,0.3628985,0.024150005,0.45426533,-0.08800514,0.4971573,-0.056553196,-0.22453682,0.27509436,-0.4074778,0.22946917,-0.24572547,0.1050879,0.30357185,-0.51919407,-0.81879175,-0.71733034,-0.57432574,1.2265636,-0.110966764,-0.54059154,0.49626356,0.019181821,0.024553189,-0.12958436,0.46160224,-0.33855775,-0.06068043,-0.83350426,-0.06085884,-0.08669377,0.1037185,0.060901176,0.109903894,-0.47986767,0.7827137,-0.13737275,0.16481768,0.37795806,0.14363666,-0.3421731,-0.56780773,-0.020770805,0.9770436,0.5562417,0.17378542,-0.1763296,-0.29757962,-0.2350642,-0.1590188,0.13006428,0.44196466,0.9639663,-0.16581598,-0.013195003,0.2707779,-0.048571806,0.061610818,-0.21000555,-0.3408359,0.07981328,-0.09942139,0.6708001,0.50854665,-0.1717565,0.45486832,-0.15824471,0.25401872,0.005884092,-0.44915038,0.57423794,1.2891377,-0.029511433,-0.19346417,0.6367288,0.48088127,-0.2886067,0.5658994,-0.65586704,-0.3581593,0.63397354,-0.12669845,-0.36582866,0.13686205,-0.32096085,0.2723896,-1.0731643,0.56930363,-0.20956981,-0.38851485,-0.7032881,-0.14955695,-3.1579587,0.06700551,-0.26190022,-0.17043492,-0.12990938,-0.13343501,0.1341849,-0.59960175,-0.64611137,0.17957088,0.034095243,0.6510474,-0.15223686,0.05484257,-0.11920406,-0.16857612,-0.26668116,0.09682142,0.04985721,0.37213796,0.04456365,-0.39462146,0.08512693,-0.28163034,-0.54073256,0.06121976,-0.47066054,-0.6290683,-0.28449494,-0.604672,-0.32145882,0.65621614,-0.26370257,0.010676826,-0.18880095,0.022238735,-0.110339925,0.23885243,0.20106827,0.18273826,0.030812472,0.0016327186,0.052024193,-0.16654944,0.2944625,0.012731456,0.18375142,0.4594845,-0.399357,0.23567936,0.6246579,0.718948,-0.10402964,0.7991084,0.63207716,-0.08649915,0.2605513,-0.46951482,-0.32461897,-0.7556798,-0.5961203,0.1831087,-0.3888447,-0.5931329,-0.116168104,-0.36162776,-0.80229664,0.46044722,-0.18877305,0.06203235,0.0018301478,0.3549935,0.4266279,-0.13233212,-0.014749868,-0.083573595,-0.20546784,-0.55800307,-0.19413963,-0.83215123,-0.30240673,-0.09343876,1.0189754,-0.14054121,-0.11911224,-0.07274071,-0.08254702,0.0024566597,-0.06717985,-0.11015654,0.14552777,0.07574097,0.10837562,-0.6964427,0.63570553,0.12054981,-0.12890954,-0.54538614,0.10863929,0.5802708,-0.65999955,0.31542715,0.5125038,-0.13520029,0.052612,-0.5053682,-0.16871464,0.057995852,-0.2064663,0.4398237,-0.030771,-0.54675853,0.635791,0.43605447,-0.33660126,-0.8251292,0.4859064,-0.11430342,-0.36568955,0.20809756,0.25128132,0.06220003,0.09136436,-0.41902986,0.36885738,-0.55979866,0.32594427,0.44618505,0.13843496,0.19957183,-0.022341486,-0.15999381,-1.0052902,0.026159981,-0.5480793,-0.061001576,0.006244523,0.015297068,-0.005296477,0.06778036,0.27590445,0.6201549,-0.27932796,0.1737101,-0.062897526,-0.29850218,0.23520799,0.54659015,0.4661226,-0.47829285,0.6480842,0.08242159,-0.08577398,-0.35928917,-0.087721124,0.5566074,0.080599435,0.17518584,0.14994009,-0.17778303,0.3461516,0.75340474,0.3128495,0.43993658,0.16915084,-0.1832727,0.32132763,0.2810559,0.39937097,0.020028105,-0.30431986,0.07768302,-0.0004307713,-0.045776468,0.6065112,0.1234845,0.33719802,-0.12436432,-0.2551021,-0.084507175,0.4053972,-0.008723186,-1.2565581,0.45467377,0.24748568,0.625967,0.74911255,0.0074140835,0.109278,0.61432785,-0.37555838,0.102008305,0.28981456,-0.068855904,-0.6862579,0.37639675,-0.79939973,0.28517672,-0.1146696,0.118357114,-0.102863565,-0.013341425,0.36851075,0.76176995,-0.14554204,-0.011351377,-0.30769315,-0.2611567,0.29261297,-0.59240735,0.030134294,-0.3068015,-0.2737405,0.5486036,0.20595762,0.20504144,-0.048595157,0.048396517,0.17330109,-0.047307365,0.46355757,0.066287324,0.14409135,-0.12754838,-0.63370407,-0.17766427,0.55238736,0.024584243,0.20656122,-0.06944228,-0.1850402,0.13330294,-0.3278115,-0.28809503,-0.1737282,-0.76498044,0.021983203,-0.22552983,-0.14955355,0.43548802,-0.15342149,0.37308493,0.2999466,0.040647216,-0.33776146,-0.14628257,0.20738505,0.63497275,0.023779264,-0.26716474,-0.24414758,0.27747348,0.28212988,-0.27127925,0.12275759,0.14243369,-0.15991269,-0.54621226,0.5460853,-0.13109799,-0.25943002,0.033573948,-0.3025918,-0.19448566,0.5990418,-0.3933417,-0.105658405,-0.039933033,-0.34950063,0.03010256,0.022035966,-0.20478086,0.31586966,0.27085945,-0.07362535,-0.20204237,-0.001351746,-0.14786772,0.6302661,-0.05264015,0.31627947,0.20230351,-0.016525416,-0.51653385,-0.23318912,-0.012691728,0.37309834,0.11489659,-0.047195487,-0.35165665,-0.38884598,-0.23566459,-0.06929792,-0.27207965,0.42303753,0.039220214,-0.44823456,0.67782634,0.27309874,1.346255,0.00056073227,-0.39831695,0.055036515,0.58908516,-0.06328044,-0.010029604,-0.16111813,0.9717658,0.5386214,-0.22486337,-0.05786229,-0.45043063,0.07594795,0.22350383,0.008552472,-0.10973159,0.069299534,-0.60499793,-0.42425582,0.36807543,0.3339807,0.026801584,0.0011262809,-0.07697029,0.056710757,0.109512724,0.4744703,-0.43983626,-0.12182515,0.42008162,-0.035663955,0.29956177,-0.08881245,-0.30627504,0.40379858,-0.4661799,0.071073376,-0.32735443,0.21221375,-0.18866086,-0.2832913,0.35601005,0.13923018,0.26993313,-0.22940397,-0.6670755,-0.17135978,0.442279,-0.037831936,0.20532705,0.5373944,-0.46002927,0.20981956,0.11885678,0.541616,1.1426439,-0.17849667,0.07381336,0.30185315,-0.42215395,-0.5630511,0.5812513,-0.2349269,-0.08902122,-0.16765802,-0.22008531,-0.75338393,0.11614585,0.25295907,-0.077020586,0.21019188,-0.5923797,-0.36828664,0.31643203,-0.3684766,-0.19210364,-0.36390617,0.30577537,0.75760883,-0.5563052,-0.37002033,0.13803658,0.06588309,-0.44969982,-0.5158602,0.021081243,-0.22359623,0.47174576,0.12917721,-0.36962134,0.0464632,0.20129633,-0.32670003,0.20732056,0.18120255,-0.31371,0.18449762,-0.25653985,0.12019903,0.80872077,-0.31957576,0.13023528,-0.6413918,-0.553357,-1.068574,-0.15295954,0.9667389,0.153649,-0.01044264,-0.7748019,-0.026529504,-0.002765451,-0.05117031,0.0033882984,-0.33212522,0.5075608,0.20707546,0.31240305,-0.040369947,-0.55796546,0.055511385,0.010815082,-0.040092174,-0.51864547,0.4802167,0.10610471,0.7101803,0.14961866,0.11431418,0.13137303,-0.53040326,-0.065282516,0.076980665,-0.26327327,-0.45804876,0.045973103,505 -460,0.61291754,-0.1743935,-0.60405684,-0.16173771,-0.42314413,0.13305414,-0.22976385,0.40418768,-0.030602379,-0.4939389,-0.3733731,0.090130396,-0.11051422,0.17416954,-0.3408303,-0.48287064,0.13033165,0.33607802,-0.45178056,0.5255784,-0.35519344,0.37692523,0.03499505,0.19721402,0.11064913,0.1742979,0.17977658,0.007509994,-0.103576675,-0.3452931,-0.18611957,0.39361635,-0.6203288,0.32166526,-0.2767451,-0.518355,0.024427755,-0.25764894,-0.30656263,-0.7849123,0.08394306,-0.938542,0.5287951,-0.09660999,-0.39690208,0.033834048,0.13690002,0.17648466,-0.19665393,0.003177366,0.16604432,-0.116865456,-0.39634758,-0.24537063,-0.16206674,-0.51028115,-0.6172957,-0.0029911995,-0.5954603,0.024780473,-0.25699422,0.2090652,-0.21578155,0.026139243,-0.102135226,0.5693269,-0.5088487,0.030257208,-0.013153894,-0.0046165967,0.17197539,-0.71704453,-0.13214879,-0.2160323,0.32305288,-0.27164337,-0.2877815,0.087895036,0.24773005,0.50190884,-0.002235653,-0.20459954,-0.34544283,-0.16610506,0.000725082,0.42664808,-0.20168747,-0.5840207,-0.13809007,-0.12611307,0.43380496,0.1710478,0.06892044,-0.1467139,-0.024224052,-0.017259547,-0.32003406,0.45064566,0.54901445,-0.41754952,-0.08360052,0.30628076,0.7711447,0.018888298,-0.28452757,0.023023708,-0.0869477,-0.5895379,-0.21397673,0.07155541,-0.1898315,0.5916691,-0.22695234,0.25850192,0.5804053,-0.22302392,0.010593414,0.5069662,0.058690164,0.015032336,-0.04452598,-0.48263428,0.28948444,-0.57156426,-0.00076808676,-0.20599614,0.69914085,0.1488985,-0.9221164,0.24986432,-0.41857734,-0.08581338,-0.15868106,0.5728979,0.5347301,0.6258749,0.13169873,0.6634921,-0.3736362,0.047566377,0.043911483,-0.20080069,-0.08228583,-0.09490853,-0.09696041,-0.3486115,0.026317282,-0.18103907,-0.12067306,-0.079612836,0.6540557,-0.6773161,-0.29038236,0.00820102,0.6804039,-0.42961338,-0.2621313,0.8438315,0.9021054,0.97921723,0.086110584,1.273344,0.19023266,-0.09653612,-0.09486592,-0.19760929,-0.5443093,0.32495573,0.3638718,-0.15562315,0.2944917,0.04661516,0.11925124,0.2800315,-0.31333214,-0.06858079,-0.23318622,0.2758088,0.05741263,-0.004338552,-0.40185097,-0.2898263,0.12015995,0.14941335,0.16545057,0.34553698,-0.2168113,0.4102168,0.35940948,1.5186504,-0.07247265,-0.077145375,0.10317602,0.38048798,0.24350344,-0.066664524,-0.06673306,0.14040144,0.1860437,0.025306532,-0.54457676,0.070529915,-0.22197822,-0.5206334,-0.34245273,-0.332241,-0.028218577,-0.2632986,-0.42667338,-0.19500338,-0.0846089,-0.33850846,0.5538781,-2.2106266,-0.16367877,-0.06303832,0.4567612,-0.1639627,-0.46036482,-0.20368187,-0.5458818,0.3863244,0.1732616,0.5943969,-0.6705805,0.6348642,0.64195216,-0.5680695,-0.13671717,-0.75192356,-0.1540668,-0.045192074,0.2761069,0.19464506,-0.123363614,0.080301404,-0.020002646,0.5352621,-0.07008683,0.13465759,0.31180364,0.38871378,0.11288678,0.56564057,0.1656997,0.5302177,-0.40992185,-0.2537571,0.55024976,-0.40624303,0.20336355,-0.2479262,0.1116993,0.46580023,-0.5744385,-1.044994,-0.82292575,-0.27864328,1.1741949,-0.22493543,-0.5589569,0.1279597,-0.25283542,-0.23788159,0.013345114,0.3425682,-0.2467433,0.039394345,-0.81762666,-0.100494385,-0.011171971,0.3303647,0.027634498,0.05647099,-0.5402733,0.56691784,-0.106135726,0.49769384,0.30213282,0.27900973,-0.3786797,-0.4343756,-0.054908894,1.160743,0.486747,0.08627667,-0.305526,-0.28272176,-0.32789835,0.14644723,-0.013553883,0.6863987,0.63251984,0.0017583178,0.057867937,0.25206277,4.715153e-05,0.08520079,-0.28470963,-0.36319605,-0.22200845,0.21472253,0.57942927,0.5993857,-0.12700854,0.58547074,-0.09880565,0.44245413,-0.07582772,-0.57926136,0.37596402,1.1497585,-0.21912594,-0.3827253,0.67404366,0.44620946,-0.36410537,0.47275427,-0.84757966,-0.47759086,0.35597435,-0.08072996,-0.34518725,0.2532936,-0.33242288,0.30769423,-0.8758071,0.48911864,-0.4589456,-0.5748619,-0.56303495,-0.2132227,-2.8146808,0.30550224,-0.08105976,0.02779861,-0.0025793484,-0.48459557,0.13829839,-0.64873666,-0.6723239,0.114758015,0.07173819,0.6520204,0.030732628,0.09970135,-0.15369861,-0.467851,-0.0613064,0.39537653,0.2336824,0.3081348,-0.15357237,-0.5580712,-0.024628673,-0.19657342,-0.36649057,-0.117419206,-0.6251931,-0.54572785,-0.04940513,-0.62394947,-0.24818094,0.63048416,-0.37036243,0.02979814,-0.14898536,0.029472578,-0.09482376,0.3164346,0.019544752,0.051955145,0.04667334,-0.117092736,0.040031973,-0.24494873,0.25141364,0.014512032,0.2235163,0.4030783,-0.18157971,0.27480826,0.63967794,0.67050844,0.0070349746,0.97552997,0.40479738,-0.16330361,0.3183809,-0.1256587,-0.57070667,-0.75885004,-0.21215561,-0.04409207,-0.43700388,-0.2859377,0.11777533,-0.43195254,-0.87708706,0.7547706,-0.07837959,-0.092785425,-0.043085046,0.52179897,0.49738804,-0.15807867,-0.14426324,-0.17407598,-0.29206735,-0.5402227,-0.48489562,-0.64499325,-0.34467492,-0.15670545,1.3866061,-0.2685298,0.047249325,0.03626975,0.12775984,0.09643229,0.34840775,0.013143202,0.19670527,0.4676502,-0.14841302,-0.62913185,0.3854765,-0.114134505,-0.18173984,-0.30648157,0.13139711,0.7278232,-0.7690965,0.37414792,0.5263116,-0.025305884,-0.1052118,-0.7448648,-0.17947422,0.11804652,-0.17801574,0.49437883,0.3708706,-0.75158066,0.5030981,0.24964583,-0.1790199,-0.68911177,0.66398114,-0.06364953,-0.21535107,-0.12999548,0.49429178,0.10783128,-0.036014337,-0.36312225,0.056695104,-0.2813106,0.20534785,0.11974406,-0.06666069,0.24530001,-0.39439037,-0.19629121,-0.96668285,0.022833666,-0.5089227,-0.29511333,0.18957336,-0.124597296,-0.008068391,0.4052,0.25973675,0.4872571,-0.47717842,-0.022538813,-0.16663341,-0.3417999,0.3749954,0.42389226,0.6250715,-0.4330447,0.46622214,0.04444066,-0.06100104,-0.23928706,0.03006805,0.4953284,-0.048820037,0.41666082,0.15004608,-0.1023289,0.24131565,0.8904285,0.28687721,0.40201634,0.068516575,-0.21680303,0.033601053,-0.034933332,0.37385172,-0.11702054,-0.5667213,0.12855636,-0.11728766,-0.0075449455,0.5240912,0.08043708,0.34811,-0.20810196,-0.23131824,-0.032257415,0.27899426,0.05800849,-1.3133522,0.42814094,0.19144467,0.8426914,0.56162643,0.12847196,0.04759874,0.6171497,-0.38772205,0.19126053,0.33991084,0.169364,-0.33197388,0.42029324,-0.59347343,0.52014583,0.00566414,0.06721917,-0.095189296,-0.32044214,0.3486214,1.0984744,-0.024728434,0.124039635,0.013223103,-0.25848714,0.31832942,-0.47482994,-0.073808685,-0.50862503,-0.11967309,0.9427367,0.44967103,0.4305849,-0.03150616,-0.05962146,0.122101665,-0.10715289,0.36575896,0.00050196477,0.26454666,-0.1336417,-0.43448713,-0.06592412,0.5237514,0.15613307,0.08716404,0.14683056,-0.2796556,0.37802213,0.009770905,0.13327734,-0.10000765,-0.6710826,-0.056632962,-0.39309806,-0.30826113,0.49525532,-0.19964156,0.099357486,0.28787392,0.040040605,-0.41682407,0.12847802,0.26544163,0.46975836,0.23276523,-0.0322666,-0.21355602,0.2025163,0.26340154,-0.2979818,-0.045622732,-0.29763627,0.34565213,-0.86204445,0.33246794,-0.23620622,-0.49146292,0.16166271,-0.0037549522,-0.021800442,0.5702455,-0.022532126,-0.2836308,0.03708234,0.059124894,-0.14245515,-0.1297233,-0.2571903,0.208967,0.19360168,-0.13655356,-0.21870331,-0.11913336,-0.07878531,0.47261164,-0.047800038,0.4248342,0.35337016,0.17897627,-0.50535077,0.02511606,0.09262203,0.6228438,-0.2531528,-0.018838236,-0.27158114,-0.3876405,-0.2563881,0.2259904,-0.078105055,0.25026882,0.20934023,-0.19859298,0.6626855,-0.15299633,1.1214526,0.018013034,-0.31272227,-0.0001765745,0.54442227,-0.04562504,-0.07327569,-0.30081782,1.1418607,0.49382016,-0.15650065,-0.17507641,-0.46027848,-0.08335883,0.005897624,-0.15984178,-0.26795965,-0.09737213,-0.58734846,-0.21525216,0.16399722,0.35212097,0.053332526,-0.041445564,0.09786839,0.38727397,0.14970635,0.2418495,-0.6298361,-0.04728503,0.4479727,0.30458122,-0.17710291,0.05192085,-0.48240545,0.30799457,-0.49904945,-0.013042869,-0.40439504,0.19384088,-0.27237418,-0.31183353,0.213101,0.26095963,0.31768373,-0.18824475,-0.38642427,-0.3096199,0.4331443,0.10172911,0.07648832,0.5157792,-0.26507398,0.14030328,-0.07440597,0.50048107,0.93351567,-0.31754836,-0.04695469,0.38710532,-0.2568533,-0.49647596,0.27009884,-0.6073813,0.07589245,0.048839383,-0.19149558,-0.6261514,0.3103662,0.3251221,0.026031375,0.1432866,-0.652362,0.019387024,0.23764549,-0.31652758,-0.05868073,-0.266287,0.13235702,0.74091846,-0.42323425,-0.22149386,-0.0055227196,0.32854956,-0.21251014,-0.51715153,-0.022621645,-0.3400996,0.36440706,0.1614826,-0.387881,-0.056432962,0.019768408,-0.4077356,0.18736006,0.5180903,-0.31055602,0.12900944,-0.39164025,0.2169429,0.7833253,-0.09360523,0.26324707,-0.16244231,-0.45642784,-0.7905174,-0.098566905,0.2890366,0.29012677,-0.06633099,-0.7344963,-0.010158663,-0.26839757,-0.2543927,-0.021457851,-0.30755973,0.5195106,0.17591882,0.39036307,0.033405118,-0.9576683,0.18699421,0.08609979,-0.18342482,-0.40166825,0.5650664,-0.16533026,0.89307976,0.13033597,0.027356679,0.21848191,-0.65858024,-0.053048976,-0.23565276,0.078851044,-0.7189782,-0.07035757,507 -461,0.48197073,-0.061342563,-0.45668152,-0.011954708,-0.27047703,0.16332696,-0.15466452,0.41166702,0.33326578,-0.45663118,-0.28306413,-0.18849131,-0.02223739,0.3092856,-0.16948073,-0.45185804,0.05562898,0.30123243,-0.54344255,0.5388325,-0.33164755,0.3706492,0.1750067,0.44973454,0.22612607,0.07988347,0.27614293,0.046701077,-0.32495198,-0.24781707,-0.17170425,0.24931227,-0.6731955,0.27631146,-0.3490515,-0.5199603,-0.099082574,-0.664885,-0.318804,-0.6384924,0.25604314,-0.79156464,0.63724834,-0.052079625,-0.09595452,0.42929322,0.07452599,0.17583264,-0.1359459,0.0032138804,0.057920627,-0.25093603,-0.16566303,-0.20546614,-0.30525237,-0.16722178,-0.6393629,0.14203788,-0.402797,-0.02202194,-0.3196862,0.15397176,-0.1392433,0.045760337,0.07287069,0.43152437,-0.40414777,0.23591089,0.09010327,-0.26046208,-0.06348385,-0.5477546,-0.23734729,0.009179096,0.38101873,-0.30524173,-0.2048545,0.1551945,0.28803024,0.6082279,0.087987185,-0.097749285,-0.33575693,-0.070490904,0.10445998,0.65012974,-0.05188236,-0.37954548,-0.25660548,-0.055395387,0.26850334,0.024265762,0.2554818,-0.14648663,-0.15154922,-0.2555127,-0.18976632,0.38095492,0.36763063,-0.46962157,-0.2523508,0.37988016,0.50274265,0.2888897,-0.089328006,0.12942624,0.048902307,-0.5734991,-0.1414085,-0.118572675,-0.30316168,0.58378685,-0.17735514,0.36908174,0.40282488,-0.08600831,0.07610305,0.2513934,0.091098905,-0.08819591,-0.23774567,-0.16942559,0.31475085,-0.374108,0.060888257,-0.014551693,0.7827085,0.1921104,-0.6438712,0.34347057,-0.51205015,0.18469355,0.04393112,0.42703938,0.6932568,0.35087922,0.29303408,0.7173406,-0.39730924,0.09064971,-0.050332963,-0.24176535,-0.1565721,-0.3064952,-0.089758106,-0.5060802,0.09768762,0.07757513,0.048570838,0.3356485,0.6076594,-0.4846476,-0.19798665,0.090030834,0.78781253,-0.28143176,-0.22696483,1.0394915,1.0440272,1.1884528,-0.05963816,1.33527,0.25977725,-0.19547412,-0.102550015,-0.09014682,-0.7415423,0.2336858,0.29003724,-0.30118254,0.36546925,0.15836896,0.012938985,0.18723074,-0.40280375,-0.051302414,-0.103241704,0.04995988,0.023341464,-0.08722866,-0.43739817,-0.32942614,0.016187048,-0.009957954,0.2804931,0.22869857,-0.16719699,0.60356534,0.0752791,1.527516,-0.09680014,0.060055044,0.06718566,0.4134173,0.30433723,-0.09212196,-0.20545562,0.14142616,0.26839444,-0.1055416,-0.49682182,-0.045243736,-0.18778421,-0.46841478,-0.23671408,-0.24416848,-0.29892465,-0.081632785,-0.2139862,-0.2104081,-0.097332604,-0.48418215,0.46125698,-2.5712144,-0.37145934,-0.04391895,0.33210403,-0.21561678,-0.3797168,-0.23680802,-0.43473572,0.38521174,0.27739272,0.4447723,-0.53759754,0.28150782,0.48209766,-0.58446455,-0.34902623,-0.5390419,-0.05484909,0.08908422,0.2773306,0.008518615,-0.23198535,-0.11361421,0.10977055,0.4417434,-0.108751945,0.05642912,0.43497586,0.41550294,0.07942484,0.42144087,-0.08646689,0.5341489,-0.30742362,-0.20445307,0.52585185,-0.35006645,0.3798918,-0.32511982,0.1789658,0.51699764,-0.45030528,-0.9141561,-0.6682324,-0.23232964,1.2322241,-0.104681745,-0.41169545,0.15916313,-0.3068111,-0.30245176,0.069676735,0.51083577,-0.14764461,-0.06409879,-0.75331336,-0.041977722,0.103810586,0.0681777,-0.0047856653,0.051478095,-0.5298614,0.6847064,-0.055840276,0.41975814,0.37279612,0.30283123,-0.1774135,-0.39526916,0.08302379,1.0417384,0.4088089,0.14596902,-0.3296307,-0.08833301,-0.41528532,-0.08599152,-0.0036327168,0.38748935,0.58192223,-0.059907254,0.16031465,0.3164659,0.28533527,0.17988017,-0.25646996,-0.19642743,-0.2052838,-0.004833426,0.65223414,0.7069742,-0.13723728,0.41589913,-0.10451355,0.16331029,-0.18160698,-0.49550208,0.67247003,0.89690983,-0.25757232,-0.307983,0.6280777,0.28028724,-0.21759656,0.47133717,-0.5714602,-0.44906905,0.35223866,-0.13744566,-0.35586166,0.1347886,-0.23930891,0.10792948,-0.89060056,0.17242484,-0.07326252,-0.37042728,-0.5076579,-0.21793799,-2.6897995,0.16254638,-0.057730373,-0.0810305,-0.18805793,-0.31640643,-0.038644295,-0.40918854,-0.6871605,0.12619011,0.07950759,0.73107237,-0.22047487,0.27059203,-0.033469584,-0.4325626,-0.48097998,0.035613023,0.0031985599,0.4118888,-0.047595065,-0.32633618,0.054505873,-0.30392936,-0.3960977,-0.031680252,-0.66701895,-0.3388098,-0.06834135,-0.41227937,-0.26623413,0.5744041,-0.5571161,0.068721734,-0.38322368,0.0006418377,-0.11267976,0.2796223,-0.03809147,0.061931092,0.1415118,-0.12806162,0.014090802,-0.11463589,0.33467028,0.18059766,0.12555125,0.4971113,-0.29760554,0.2447416,0.30070263,0.6848917,-0.1624693,0.96325845,0.38881892,-0.10597398,0.30734292,-0.318373,-0.3430765,-0.46821976,-0.19742109,-0.06959063,-0.47874665,-0.4981673,-0.09082169,-0.33263615,-0.9718415,0.54394627,0.12237848,0.20664643,-0.0160078,0.3591761,0.5171694,-0.25434044,-0.052956235,0.008691364,-0.160135,-0.4894402,-0.44427726,-0.6432393,-0.48145145,0.04837052,1.0664426,-0.19288592,0.15682958,0.31882706,-0.28250137,0.02213644,0.22322538,0.022059662,0.014445926,0.48690417,0.029992793,-0.7343717,0.37987366,-0.14712,-0.22391383,-0.5600048,0.20896554,0.6287195,-0.5953616,0.4626865,0.5064057,0.054582495,0.03600158,-0.41252443,-0.16306044,-0.30180082,-0.2244565,0.30378813,0.32856926,-0.7478631,0.5323864,0.28040403,-0.2462431,-0.91677725,0.46125776,0.04863194,-0.15272294,-0.00037347418,0.38098758,0.3380631,-0.0570153,-0.15134035,0.055212803,-0.48080403,0.47159344,0.03983908,-0.06530111,0.23130682,-0.3210056,-0.32798216,-0.69353926,-0.08697856,-0.4038516,-0.3355019,0.06439992,0.1253318,0.073889025,0.114670716,0.21441428,0.3552293,-0.45402312,0.054142572,-0.10221573,-0.2047508,0.21514638,0.42591694,0.5809721,-0.37797803,0.56099015,-0.011031353,0.009363924,-0.0005376935,0.005885797,0.35367376,-0.05210528,0.27881598,0.24963416,-0.23696797,0.15699145,0.6086916,0.18176067,0.22177164,0.123025246,-0.17158148,0.24629888,0.10435124,0.35035488,-0.077136196,-0.4634729,0.03891664,-0.35376135,0.088120066,0.41488966,0.26048777,0.4071483,-0.095944166,-0.24479449,0.02580188,0.10501503,-0.13656503,-1.2302291,0.10770529,0.078644134,0.8356027,0.5205106,-0.0639307,0.17404659,0.6664468,-0.165978,0.11151902,0.36351618,-0.124976814,-0.4247301,0.5148438,-0.599,0.5062441,-0.11445648,-0.067786284,0.15838826,0.005742026,0.44644314,0.7589081,-0.15173802,0.016111165,0.008738165,-0.23210306,-0.016171467,-0.41529346,0.1087235,-0.56881696,-0.08100842,0.9186384,0.51858777,0.3295543,-0.20185111,0.04265982,0.00096121005,-0.15891409,0.03926726,0.14374109,0.14651088,-0.12250918,-0.6803785,0.04698736,0.5124446,0.15822713,0.16729133,0.1783167,-0.37623772,0.26958936,-0.20121494,-0.04812215,-0.13476199,-0.7555834,-0.08030361,-0.30423257,-0.45176274,0.25574547,-0.025475154,0.1781036,0.21905306,-0.009262919,-0.21899168,0.43603468,0.10472657,0.71449697,0.111766085,-0.22487108,-0.14738823,0.41312948,0.24122335,-0.22839996,-0.039644923,-0.20321354,0.04752975,-0.4792238,0.529211,-0.053353515,-0.20725545,0.2265607,-0.029929727,0.15831664,0.5465531,-0.057634775,-0.012592867,0.111148104,-0.19241191,-0.42244843,-0.053439695,-0.28129247,0.21976373,0.34149918,-0.29494184,-0.12273021,-0.10596291,-0.11709727,0.34195164,-0.043279205,0.47047982,0.2923648,0.013521319,-0.43393072,-0.07903051,0.19602005,0.546125,-0.07338721,-0.18848218,-0.23710953,-0.38177687,-0.28319404,0.3705387,-0.14239483,0.10776687,0.12986574,-0.13261887,0.7308531,0.17530043,1.0750307,0.12765129,-0.2932077,0.13014717,0.47666985,-0.15094827,-0.20950206,-0.4131891,1.0670345,0.44124696,-0.083605304,-0.11688995,-0.33333415,0.027218755,0.01294033,-0.25377217,-0.24542761,-0.0584959,-0.5538857,-0.20768218,0.18634148,0.17456268,0.15361612,-0.2137474,0.18354538,0.32648274,-0.04993229,0.31357422,-0.4708592,-0.40863803,0.40821913,0.30465826,-0.08538548,0.06253214,-0.36820894,0.35934687,-0.683438,-0.08684117,-0.19738163,0.10762106,-0.33738202,-0.2355591,0.31717777,0.2180189,0.32953167,-0.3574418,-0.35518423,-0.38776797,0.26436347,0.09637491,0.12620118,0.4503948,-0.29485112,-0.015412659,0.013613863,0.37167838,1.0630339,-0.2401048,0.15123065,0.34261927,-0.22465035,-0.37589172,0.3077193,-0.437515,0.30907395,0.10004433,-0.12376343,-0.7224196,0.13063031,0.17707062,0.23490962,0.14299668,-0.6041283,-0.100542545,0.2250325,-0.18625805,-0.18560424,-0.34009284,-0.1847955,0.55251527,-0.17058055,-0.2486724,0.21929066,0.29250106,-0.22685972,-0.6422077,0.00026128974,-0.36783692,0.26280484,0.11681234,-0.29436573,-0.2923848,0.011313447,-0.5053023,0.018994076,0.1966474,-0.37786105,0.049556576,-0.48233637,0.07388045,0.88761914,-0.27489325,0.43548456,-0.46160984,-0.5398181,-0.9685891,-0.26653633,0.3275884,0.16025813,-0.043820154,-0.5474768,-0.04240766,-0.28007892,-0.3369891,0.10605831,-0.4583837,0.4983669,0.18402554,0.3880326,-0.11725033,-0.8360345,0.13597305,0.009715042,-0.29382768,-0.4829895,0.35990858,0.14712791,0.8405577,0.08919967,-0.12700406,0.27784726,-0.62635463,-0.029586043,-0.19147627,-0.010333159,-0.5974594,0.089426704,514 -462,0.38833612,-0.22331135,-0.52271444,-0.12273347,-0.12431395,0.16939034,-0.09247494,0.6382496,0.27548364,-0.3102471,-0.17320326,-0.027663182,-0.058637083,0.116113916,-0.071918644,-0.35571423,-0.06136479,0.1586879,-0.34655595,0.3064436,-0.44671223,0.2414625,-0.23587857,0.48288026,-0.008385726,0.32277557,-0.07698591,-0.11211856,-0.0941967,-0.06990364,0.05249656,0.20009701,-0.5034653,0.18468535,-0.21073274,-0.22205885,0.06657764,-0.45091024,-0.4037541,-0.6351467,0.20208056,-0.6702794,0.55680877,0.13670053,-0.25671017,0.11518077,-0.11038587,0.31982288,-0.31118867,0.15661652,0.2090733,0.027147233,0.030620605,-0.1681282,-0.22373803,-0.31891897,-0.41708788,-0.02758566,-0.32593456,0.11481057,-0.046057265,0.09571905,-0.20403457,-0.09606123,0.054483037,0.19025488,-0.39812157,0.07492752,0.2316018,-0.07115957,0.31761572,-0.50349575,-0.057465546,-0.18771955,0.25031942,-0.22806609,-0.35054383,0.17225806,0.2420878,0.38626626,-0.1512172,-0.08956813,-0.21874169,0.06613641,0.057965923,0.51313066,-0.19409218,-0.3461878,-0.15828688,-0.011607059,0.16461551,0.3179911,-0.026774362,-0.3284735,-0.08825741,-0.034104887,-0.16962685,0.18697026,0.45311317,-0.17066193,-0.21684077,0.44100827,0.65835094,0.24251921,-0.13190435,0.0752204,0.102691785,-0.48528567,-0.26936752,0.01613711,-0.066913486,0.42126852,-0.060636204,0.16561364,0.6005497,-0.22534576,0.044430885,0.120794944,0.14491403,-0.065843925,-0.36835107,-0.2605808,0.11833144,-0.43479106,0.11647391,0.043301325,0.48612022,0.16654356,-0.773811,0.30379072,-0.48768565,-0.039471574,-0.14506564,0.46018973,0.72339904,0.36310267,0.07732113,0.7533568,-0.45862404,0.10227449,-0.110116705,-0.28834465,0.24392779,-0.13726631,-0.27819216,-0.5619251,-0.032947216,0.14481668,-0.21748923,0.15719615,0.20727518,-0.523127,-0.094047174,0.2356285,0.6971577,-0.28402767,-0.012766817,0.5297279,1.0229372,0.7881781,0.07888118,1.2174414,0.18318437,-0.20288096,0.29827246,-0.2973515,-0.8583035,0.25729942,0.28398997,-0.40823895,0.2862857,0.25567427,-0.012447382,0.3170905,-0.42167473,0.08163545,-0.17569928,0.23242274,0.061080612,-0.09977215,-0.37198335,-0.16264954,-0.11002148,0.07559826,-0.0015894409,0.11625483,-0.29918084,0.045533735,0.022542706,1.6936404,-0.07523538,0.07114402,0.075862214,0.42995828,0.29672602,-0.23903057,-0.24739002,0.4621695,0.32670325,0.041548435,-0.49088898,0.16538931,-0.0797954,-0.4529497,-0.12314649,-0.21235672,-0.053712767,-0.030795734,-0.41835418,-0.11368662,-0.07464092,-0.24491286,0.56734085,-3.059758,-0.10532091,0.003775867,0.35041922,-0.23188867,-0.37307963,-0.31519964,-0.2910796,0.40052363,0.32258347,0.41370985,-0.61624783,0.22014007,0.363107,-0.4923654,-0.114020094,-0.5607327,-0.023496827,-0.06608774,0.15475067,0.0771901,0.1309532,-0.030567693,0.07930277,0.3489821,0.018736694,0.13106754,0.26429686,0.35062,0.17577538,0.30789492,-0.023885157,0.5513549,-0.2675776,-0.22770227,0.20964594,-0.40178388,0.37846312,-0.06684296,0.1389732,0.36363724,-0.39439696,-0.7744605,-0.7433511,-0.31585464,1.1352737,-0.09913169,-0.2153703,0.24405824,-0.5355391,-0.43868738,-0.06903053,0.48335218,-0.09939657,-0.0769936,-0.78720874,-0.05873576,-0.038698558,0.27711424,-0.04215037,-0.03711682,-0.37498218,0.50465405,-0.057129834,0.45776924,0.39279482,0.12618186,-0.012689216,-0.3630752,-0.023393128,0.785497,0.32899597,0.20225,-0.07186721,-0.13021104,-0.405376,0.0692464,0.19601624,0.47516492,0.6628803,-0.102444,0.08269201,0.23164591,0.06555754,-0.025081446,-0.02912559,-0.20446995,-0.10370314,0.024416719,0.45920214,0.59561026,-0.24884753,0.32938102,-0.09980643,0.19121528,-0.23458685,-0.35581827,0.4562308,0.5041022,-0.16201106,-0.1963712,0.50435513,0.46318203,-0.28969607,0.38621807,-0.64365673,-0.11743344,0.28480133,-0.08074578,-0.3521429,0.150037,-0.28981858,0.13107076,-0.79782486,0.23039038,-0.22508118,-0.4897918,-0.4676891,-0.16299696,-2.8842413,0.17161553,-0.04767397,-0.2199321,-0.03647903,-0.016548077,0.32486483,-0.5375487,-0.5473927,0.21780573,-0.04375713,0.56129247,-0.003473912,0.009881073,-0.24555066,-0.24787806,-0.40026268,0.12710682,0.15591598,0.2842167,-0.06013745,-0.45987344,-0.28798217,-0.085960254,-0.29672313,0.07611145,-0.5548916,-0.3613945,-0.15378754,-0.49677753,-0.14918923,0.6432471,-0.35095105,-0.057669677,-0.12719306,0.08900799,-0.15803662,0.31349915,0.110995464,0.094371065,0.08574986,-0.07379801,-0.11800366,-0.28091666,0.35467649,0.09679745,0.18052319,0.35030276,-0.18648815,0.15694794,0.46464893,0.6000938,-0.306918,0.72578526,0.52251136,-0.15294524,0.24063852,-0.23957387,-0.14215067,-0.22439204,-0.31809774,-0.12336874,-0.40557358,-0.539231,0.006299351,-0.4309814,-0.7978844,0.435462,0.014740025,0.081438676,0.1100124,0.080727376,0.4315572,-0.27138776,0.122676685,-0.07700186,-0.097629316,-0.47163102,-0.39857492,-0.3978262,-0.3688722,0.30588004,1.1482184,-0.31783336,0.111741535,0.10866649,-0.27924946,0.056049425,0.08459227,-0.16037706,0.090525344,0.37600285,-0.021039503,-0.4892521,0.35818842,-0.057451643,-0.29454756,-0.6373922,0.13496672,0.580719,-0.682951,0.6825738,0.28685755,0.053204834,-0.108203545,-0.54174274,-0.21337937,-0.10752963,-0.19485526,0.3608994,0.21234797,-0.82354206,0.3405473,0.3306524,-0.24025595,-0.6275448,0.5392286,-0.048282135,-0.19040336,-0.11758081,0.3242289,0.04252881,0.016574526,-0.21178806,0.33499452,-0.32685512,0.18553202,0.24644177,-0.16500379,0.2565045,-0.13946515,0.053721078,-0.651409,-0.0107235825,-0.48967028,-0.23522295,0.31902176,0.017734239,0.10538375,0.12381495,0.3133313,0.3854634,-0.42783532,0.12252243,-0.038534544,-0.29124936,0.2801945,0.3393428,0.56087905,-0.3006709,0.41770062,-0.057990793,-0.11904045,-0.0030625719,0.1921287,0.4377543,-0.015368079,0.33037472,-0.075745344,-0.1595839,0.22038443,0.7580947,0.10138223,0.2752753,-0.0872621,-0.15076981,0.11103281,0.09289605,0.20930317,0.07032858,-0.54036325,0.02331886,-0.15755013,0.23237015,0.29873863,0.18970571,0.21243954,-0.0559495,-0.189694,-0.012608631,0.24153194,0.20415767,-1.0268854,0.39578167,0.17760292,0.77834475,0.42622256,0.08212763,0.08329691,0.40949455,-0.059366845,0.28372476,0.33710548,-0.08628937,-0.44249153,0.30271143,-0.67503136,0.51849496,-0.018409982,-0.07165513,0.14513305,-0.16667823,0.5154821,0.8824849,-0.018630203,0.06440751,0.095688686,-0.23508975,0.07822567,-0.32318863,0.02838583,-0.7235297,-0.27100685,0.5965193,0.6087044,0.38756707,-0.14220642,-0.09228063,0.1200924,-0.02517576,0.10349225,-0.032620136,0.19798912,0.12773319,-0.65192395,-0.15634228,0.39740413,-0.036646504,0.12046402,-0.016483588,-0.23910722,0.24229966,-0.111569546,0.12344681,-0.041060958,-0.62715924,-0.037428796,-0.32049394,-0.31357384,0.39542732,-0.171041,0.22838278,0.09627167,0.10945397,-0.20470282,0.6211692,-0.029025625,0.8853103,-0.019933837,-0.10746665,-0.5064913,0.38052484,0.2602938,-0.14660631,-0.1354453,-0.31137872,-0.023626294,-0.5569784,0.37750122,0.07631942,-0.28032735,0.14412387,-0.15677586,0.09409598,0.59469193,-0.027029783,-0.2643743,-0.006740303,-0.31215635,-0.32933596,-0.08587032,-0.17764787,0.29176834,0.27838564,-0.023414543,-0.045399833,-0.05734392,-0.10742295,0.2633249,0.15554766,0.36365095,0.3519566,0.054677896,-0.22603965,-0.13619456,0.101514764,0.47555453,-0.10387429,-0.05155593,-0.20075993,-0.4374599,-0.33564574,0.094728775,-0.14956252,0.41792765,0.12843904,-0.01950568,0.58704346,0.10175575,1.0230757,0.00044902734,-0.20295751,0.085918866,0.5136093,0.036655564,-0.106070876,-0.48443553,0.8632657,0.5609482,-0.12572148,-0.05539332,-0.15916406,-0.20072302,0.12997498,-0.15604237,-0.0060414374,-0.05049076,-0.802777,-0.23569909,0.20526157,0.216581,0.18862118,-0.0282926,0.045478284,0.14863284,-0.015162939,0.08676096,-0.41315168,-0.103475,0.33504367,0.43372563,0.053130936,0.21073537,-0.44872794,0.35919023,-0.44350109,-0.038127013,-0.14805089,0.22195847,-0.32858464,-0.39106295,0.07755886,-0.025020916,0.34471464,-0.2918748,-0.36977807,-0.28468725,0.45821968,0.15993173,0.28593203,0.50085837,-0.27479056,0.0029102224,-0.1112896,0.47432423,0.8080816,-0.29033586,-0.10473098,0.65009767,-0.23298731,-0.53662026,0.24487206,-0.4323873,0.24325152,0.004288465,-0.23300405,-0.4819757,0.37656382,0.16236892,0.04206158,-0.015672365,-0.65486866,0.034143515,0.12655939,-0.08472326,-0.1970004,-0.20172271,0.15831752,0.80228585,-0.20139053,-0.43808657,0.14902271,0.27639422,-0.2716797,-0.36635795,0.011995784,-0.34800863,0.18315998,0.021726653,-0.3397448,-0.2607095,-0.047696956,-0.43470588,0.13297163,0.029529164,-0.29815742,0.08648811,-0.38835558,-0.062221687,0.9051545,-0.17566507,0.16766466,-0.40332016,-0.3963302,-0.72719127,-0.28132984,0.40798035,0.17752822,-0.026491674,-0.4702769,0.1110251,-0.07457851,-0.08913636,-0.10886905,-0.21515281,0.5078572,0.041224293,0.28782955,-0.19349328,-0.89094603,0.119098485,0.13676505,-0.3079392,-0.59664965,0.5205686,-0.05867044,0.789832,0.06408534,0.031049516,0.30337867,-0.44049922,-0.0005747463,-0.27063534,0.038371198,-0.72152084,0.045927692,516 -463,0.33949152,-0.20070569,-0.3661718,-0.25766653,-0.37147003,-0.06265949,-0.22641332,0.39752445,0.36346084,-0.021167597,-0.116263725,-0.023844277,0.029534552,0.37301397,-0.16863884,-0.64720047,-0.12016706,0.089146666,-0.69567645,0.61729413,-0.5375858,0.18476631,-0.12404548,0.35801294,0.11571063,0.32390437,0.27228266,0.005044005,-0.0040098685,-0.18534507,-0.022531044,0.15861061,-0.56282115,0.24063604,-0.32350186,-0.037807524,0.124340914,-0.5360676,-0.18581088,-0.72776526,0.09515054,-0.6874679,0.46683955,-0.02383943,-0.27957252,-0.0833083,0.3909436,0.26441282,-0.33253166,-0.15712701,0.12972276,-0.1674533,-0.13134804,-0.27624756,-0.042887695,-0.4149039,-0.49686316,-0.07574123,-0.59960204,-0.29105255,-0.19169684,0.28824827,-0.3477016,-0.108755484,-0.07414108,0.6010569,-0.360931,-0.014700617,0.43940252,-0.26088265,0.20430791,-0.59572786,-0.05637086,-0.07227381,0.4967608,0.2314489,-0.28829622,0.3910317,0.39056233,0.23166673,0.30001926,-0.4445486,-0.18255602,-0.3403688,0.13489059,0.3992059,-0.056445558,-0.31357303,-0.17656676,0.00081918604,0.17922238,0.3975183,0.07886408,-0.17238823,0.006945263,-0.20911275,-0.207427,0.75127316,0.51957786,-0.15244927,-0.22767782,0.32152963,0.5785348,0.4466157,-0.38715464,-0.046930183,-0.01622633,-0.535277,-0.008269697,0.1795002,-0.096442156,0.4096267,-0.1680118,-0.067171015,0.8796133,-0.12060789,-0.0992809,-0.029498054,0.082355216,-0.091423154,-0.48478022,-0.0908234,0.18309096,-0.46302864,0.008795355,-0.32366195,0.6725833,0.18658392,-0.5941537,0.3425255,-0.5645772,0.19795227,0.103757985,0.5932007,0.6799821,0.48648423,0.40656796,0.74242103,-0.027751466,0.27681166,0.12040358,-0.3559436,0.17667103,-0.5308135,0.10913899,-0.331173,0.083653025,-0.20209798,0.064247645,-0.054295022,0.31048554,-0.5349658,-0.17774987,0.37710115,0.85476655,-0.20432271,-0.090273924,0.8198703,1.1652324,1.0710176,-0.025045034,1.1872075,0.28742024,-0.20646413,0.1547462,-0.30346107,-0.6536328,0.18912141,0.40820494,0.30146512,0.25219655,-0.15918902,-0.05158231,0.37880865,-0.4623862,-0.042484485,0.06207048,0.3892656,0.25290695,-0.12116999,-0.4240438,-0.22208425,-0.013571969,0.038322117,0.1765564,0.22692506,-0.29850525,0.33163553,-0.12422116,1.1116062,-0.03540106,0.07542974,0.13775304,0.6847376,0.35401648,-0.11396014,0.046361186,0.5649513,0.29622558,-0.04059126,-0.5849214,0.31628567,-0.44145808,-0.29760224,-0.12050109,-0.45554584,-0.16002215,-0.031741805,-0.35825038,-0.01507027,-0.0015139729,-0.21089162,0.39718658,-2.9375892,-0.2850377,-0.25079384,0.28967264,-0.23757844,0.002164909,0.0051420764,-0.5348647,0.2719648,0.34505334,0.52413327,-0.5676058,0.44794697,0.53873956,-0.58741695,-0.16050935,-0.7504301,-0.107261255,-0.1689028,0.57303774,0.06272994,-0.008776789,-0.14324729,0.22324161,0.86179113,0.301037,0.123164475,0.43868825,0.33898577,-0.1665778,0.61541194,-0.05191976,0.45878622,-0.2450907,-0.14884038,0.2495244,-0.48932287,0.3564107,-0.27862927,0.10847836,0.6873024,-0.40015522,-1.0393573,-0.6020239,-0.36551064,1.0717199,-0.30708784,-0.5148239,0.1828358,-0.34156674,-0.094219685,-0.016182525,0.75304544,0.0012509525,0.29130363,-0.5800832,0.088306464,-0.07512146,0.11124885,-0.006912407,0.009249449,-0.37780094,0.7758461,0.023352828,0.5301181,0.09016233,0.2847861,-0.28746843,-0.40639523,0.024790483,0.5349082,0.3473506,-0.14758515,-0.19496632,-0.26830512,-0.052820094,-0.20411314,0.02255323,0.6692376,0.5510106,-0.18012966,0.07254432,0.349935,-0.15900032,0.052762408,-0.17165907,-0.19223033,-0.13730422,0.06248315,0.46478945,0.81206566,-0.09930769,0.33994243,-0.10474931,0.27081156,-0.09895999,-0.49407625,0.73636,0.5480734,-0.20434867,-0.1127793,0.38996,0.5520915,-0.5069791,0.52191967,-0.54074585,-0.0797854,0.7088179,-0.10327946,-0.50373805,0.12548365,-0.2080772,-0.045786362,-0.6957407,0.351242,-0.41451117,-0.46045998,-0.46791092,-0.11367808,-3.3669028,0.13199821,-0.14244471,-0.21550952,-0.4342012,-0.03449956,0.21400462,-0.5479299,-0.53610605,0.19209363,0.28913537,0.6305569,-0.1398451,0.087943606,-0.37232646,-0.22629209,-0.23366629,0.27425426,-0.07296874,0.35995224,-0.3146865,-0.30339304,0.0077622705,-0.15548947,-0.5952776,0.16158509,-0.5372005,-0.43212146,-0.080859415,-0.57563597,-0.10812926,0.66147363,-0.34311932,0.06335683,-0.18709336,0.18232597,-0.10635511,0.23645541,-0.047658127,0.32307878,0.18418038,-0.1637768,0.16117045,-0.31350708,0.48576263,-0.027235596,0.4227688,0.06011542,0.11512655,0.20881854,0.63083947,0.62474674,-0.16712868,1.1182814,0.36084148,-0.097982824,0.28227726,-0.2790447,-0.25279865,-0.5101895,-0.26686192,0.089692846,-0.42671207,-0.47581577,-0.03324584,-0.2983916,-0.7334337,0.5155846,0.084039465,0.31528863,-0.010122932,0.17395563,0.37558573,-0.26022688,0.045293696,0.0583965,-0.11377406,-0.58279794,-0.192561,-0.61516434,-0.4196798,0.07792831,0.7142571,-0.36282596,0.018629897,-0.20431328,-0.48237616,0.002079044,0.16648297,0.08033202,0.16033961,0.36896887,0.059422206,-0.5893253,0.3564301,-0.030046506,-0.04251074,-0.49313977,0.2529236,0.6624368,-0.72577983,0.77104837,0.369411,0.108242,-0.3055554,-0.63192147,-0.2258923,-0.014671796,-0.10869271,0.45150185,0.05627925,-0.8667702,0.49957734,0.02784665,-0.44075772,-0.6947287,0.29736045,-0.24868275,-0.13404815,-0.023045972,0.33364484,0.24249499,-0.18510392,-0.35582533,0.2805248,-0.41463703,0.12197246,0.114646114,-0.007808217,0.44117424,-0.11703551,-0.31361192,-0.8005079,-0.08827671,-0.56683517,-0.33361688,0.3826608,-0.055935476,0.019058645,0.07535078,0.18224931,0.21644713,-0.15548666,0.16859491,0.003997726,-0.4327583,0.43786258,0.53771496,0.48995224,-0.50181234,0.5096802,0.21069722,-0.11353461,0.101858035,0.14871696,0.20353325,-0.013750808,0.54738003,-0.102774434,0.013716067,0.22960792,0.69664925,0.17447911,0.46085587,0.1838633,-0.20890068,0.5073528,-0.154382,0.27331594,-0.06949333,-0.45640564,0.06909912,-0.29525656,0.12717174,0.48778385,0.2550766,0.3466241,0.23242353,-0.34245226,0.05261422,0.2827404,-0.17327465,-1.3304205,0.42857003,0.4366507,0.990396,0.390164,0.13987996,-0.13701652,0.93126494,-0.10515259,0.0009897479,0.5254093,0.1262027,-0.3773009,0.70384496,-0.7342596,0.6542513,-0.08831779,-0.15930246,0.16340172,0.24163808,0.5244047,0.7377287,-0.22946028,-0.028894896,-0.077958785,-0.2615372,0.12278998,-0.43388563,0.09773923,-0.24693811,-0.4118125,0.5986914,0.37117788,0.42354134,-0.21730836,0.04461465,0.07352718,-0.2284969,0.2522934,-0.20339087,-0.38460732,0.027473314,-0.6005041,-0.18533404,0.54496753,-0.08826851,0.18067011,-0.13153982,-0.11051762,0.019451307,-0.24963458,-0.06567695,-0.029983094,-0.69883543,-0.008472143,0.0556611,-0.5875796,0.5119576,-0.4115087,0.16150965,0.22823927,-0.015712619,-0.16294768,0.46766493,0.06618328,0.87326324,-0.051734217,-0.33043915,-0.40646964,0.014879746,0.13863486,-0.34227392,0.060438126,-0.43264857,0.0627189,-0.47879925,0.6559077,-0.27612025,-0.4463329,-0.01416191,-0.17165093,-0.0576892,0.6075812,-0.12950768,-0.23369339,-0.15767513,-0.23112185,-0.20394969,-0.008873982,-0.18980739,0.24516416,0.28966147,-0.22193614,-0.17107923,-0.14386265,0.07930287,0.55486155,-0.038144324,0.4140814,0.14447449,-0.11780294,-0.12608092,0.054339997,0.27004206,0.52443606,0.22102149,-0.057210326,-0.28548998,-0.3309346,-0.33903316,0.24450125,-0.026404846,0.15942955,0.0073761493,-0.21668456,0.74335384,0.021051237,1.2473463,0.058607962,-0.3869975,0.19728735,0.58683544,-0.10375144,0.058996383,-0.48889425,0.852097,0.442645,-0.15452072,-0.044596683,-0.6609602,-0.0076586604,0.38390133,-0.350852,-0.011492344,-0.045855463,-0.5948416,-0.18379724,0.13838162,0.10901173,0.23826525,-0.16189913,-0.18512893,0.05404681,0.17540121,0.41915822,-0.59141976,0.03747328,0.3095822,0.21159098,-0.08912647,0.021992058,-0.32274392,0.42944124,-0.65717477,0.25852826,-0.3569037,0.18164046,-0.51286155,-0.36490706,0.17170827,-0.060125034,0.35814667,-0.30539924,-0.38648096,-0.059861097,0.55702764,0.12070383,0.081315234,0.51700836,-0.30452496,-0.04683638,0.16297688,0.67116946,1.0302159,-0.45002407,0.045879632,0.10720159,-0.53879535,-0.5351858,0.31014776,-0.4585783,0.120293796,-0.08679892,-0.42309448,-0.51387393,0.21604571,0.15036038,0.16404247,0.12294048,-0.6393046,-0.26838377,0.27430266,-0.3662474,-0.27902514,-0.29113847,0.21275207,0.76446456,-0.2308295,-0.5559972,0.073203966,0.20767297,-0.15564434,-0.53018963,-0.05991116,-0.23635612,0.34308308,-0.066764854,-0.36685798,-0.08738107,0.015051656,-0.57273394,0.14312468,0.16755798,-0.3406535,0.074231744,-0.062952206,-0.05742562,0.8850764,-0.27587715,0.029869225,-0.55934054,-0.5385291,-0.8898288,-0.5081867,0.22854187,0.11521884,-0.022107124,-0.35047546,0.05087418,-0.15571903,-0.061591525,0.09802619,-0.67995805,0.2460023,0.113257594,0.5274517,-0.36351702,-1.0325301,0.1601031,0.16909401,-0.020510452,-0.73227566,0.52326804,-0.20608732,0.67304903,0.05537481,-0.030717824,-0.10629785,-0.32251474,0.111405864,-0.36169273,-0.1740632,-0.731676,0.31502342,517 -464,0.5444685,-0.26923248,-0.5171682,-0.11406352,-0.22871889,0.08830041,-0.15120816,0.5004249,0.20164907,-0.37079677,-0.24754131,-0.16667248,0.0063584405,0.106739216,-0.19081299,-0.50848913,-0.028106462,0.20920028,-0.5490055,0.5429812,-0.3117643,0.28440946,-0.033421487,0.3585636,0.22844757,0.24998637,-0.16117649,-0.0119080115,-0.20612405,-0.24398364,-0.01973643,0.15134564,-0.3326995,0.09896245,-0.17044297,-0.36720043,-0.01606724,-0.57679385,-0.32055685,-0.7829844,0.35365012,-0.78844357,0.51207495,0.13623714,-0.40550715,0.2264155,0.1288547,0.49160028,-0.19442652,-0.02432957,0.24252304,0.024019914,-0.09389806,-0.1741869,-0.106620856,-0.29543775,-0.62763584,0.023108972,-0.23439372,-0.12636988,0.013059588,0.1210956,-0.26316825,0.10822676,-0.00067121006,0.6333934,-0.3539775,0.124961935,0.34793755,-0.1204573,0.34931442,-0.6126613,-0.17628582,-0.09704177,0.26015696,-0.16698167,-0.21887903,0.0699109,0.26761478,0.41083437,-0.0947174,-0.18576486,-0.14826906,-0.071932115,0.07436579,0.4974605,-0.2585598,-0.35833946,-0.07319069,0.018174853,0.20376869,0.20856558,0.2367918,-0.20109245,-0.04839954,0.0087228585,-0.28496534,0.27797857,0.40796205,-0.33579317,-0.06956398,0.33067378,0.68473834,0.07044094,-0.079063006,-0.15306576,0.1349285,-0.46631542,-0.14556547,0.114348315,-0.30480966,0.49334583,-0.0570325,0.22794998,0.4740836,-0.14068979,0.040486194,0.09545808,0.14693509,-0.11963398,-0.27677798,-0.40265203,0.2329882,-0.3969691,0.059898607,-0.23828936,0.8401147,0.16774063,-0.6659552,0.25401723,-0.6062568,0.113073215,-0.12438255,0.3890083,0.62923825,0.38287964,0.2839822,0.5760953,-0.24101345,-0.030601945,-0.051433094,-0.17983472,0.00564866,-0.09989716,0.1759645,-0.56019145,-0.07609552,-0.018107167,-0.100168034,0.062055536,0.32502517,-0.6167044,-0.11481125,0.04326868,0.85815084,-0.20557824,-0.095451996,0.76034635,1.0749606,0.8486592,0.024171766,0.98829085,0.27455088,-0.23947895,0.19090907,-0.4013501,-0.5535781,0.31503564,0.344145,-0.4548457,0.22933903,0.0066316235,-0.12759782,0.5180373,-0.38124913,0.14016205,-0.24108876,0.117847405,0.098777756,-0.081355326,-0.39372855,-0.36904603,-0.08433016,-0.042393416,0.122357525,0.338772,-0.2109933,0.2573511,0.017099764,1.5270119,-0.036187153,0.11605795,0.12324598,0.1634526,0.12092668,-0.13237199,-0.17898533,0.38184658,0.20047851,0.063769974,-0.5453073,0.21415019,-0.23957255,-0.3512581,-0.059739348,-0.13890274,-0.122023776,0.074916296,-0.43780988,-0.14722167,-0.30807877,-0.32005876,0.40079448,-2.735909,-0.24133444,-0.18648541,0.44041434,-0.3251175,-0.47496685,-0.026219854,-0.47661275,0.40612406,0.2963865,0.4291429,-0.6123451,0.47326368,0.20476885,-0.532607,-0.15945256,-0.5865502,-0.08077465,0.08242049,0.0944988,-0.16486566,-0.12871632,0.011145779,0.17503557,0.3735349,0.02152094,0.1439691,0.40857357,0.43270758,0.0071570063,0.40549448,-0.027233137,0.47172302,-0.27289245,-0.19744286,0.2596244,-0.53199875,0.18722776,0.0768106,0.07722323,0.45300967,-0.48401165,-0.73962146,-0.7259621,-0.24670915,1.1367357,-0.12202596,-0.3444929,0.07896956,-0.47390768,-0.3712539,-0.07569647,0.50769657,-0.026257515,-0.1628776,-0.8633893,-0.02831162,-0.095869504,0.1938964,0.07370608,-0.090323076,-0.44205108,0.62487406,-0.107906945,0.467124,0.31950215,0.15678032,-0.258504,-0.3152893,0.011627818,0.98717505,0.47960737,0.19296907,-0.14710948,-0.0926127,-0.4224508,-0.09400444,0.105292656,0.5363502,0.7035986,-0.016716788,0.098692246,0.25193673,-0.19080488,0.09736194,-0.16921902,-0.34140706,-0.076371856,-0.006796445,0.5436337,0.5310419,-0.15521447,0.463974,-0.017886935,0.3840097,-0.2753853,-0.34154463,0.43433857,1.065564,-0.17945302,-0.28622463,0.56592053,0.4207377,-0.27646786,0.37954426,-0.422852,-0.27260712,0.3394902,-0.20768431,-0.5032957,0.20274237,-0.23715438,0.25165817,-0.7421269,0.38511297,-0.34357005,-0.39749637,-0.5503772,-0.011600745,-2.5508654,0.36512586,-0.20824705,-0.20345654,-0.11270356,-0.09805191,0.16521527,-0.5729088,-0.5946099,0.20804635,0.0870961,0.7205623,-0.08251894,0.17756028,-0.012665885,-0.3648305,-0.2922613,0.06781763,0.09314896,0.3570359,0.0011155562,-0.41630608,0.00691492,0.008456601,-0.3009846,0.11580617,-0.6975927,-0.47804186,-0.152216,-0.6065035,-0.26478723,0.5945884,-0.2603709,0.09870006,-0.2547776,0.020297846,-0.08593003,0.3802937,0.1376594,0.18617797,-0.03601735,-0.10464966,0.025902187,-0.32786292,0.28592715,0.121214606,0.27120206,0.24654357,-0.04161477,0.4372644,0.38747448,0.61188716,0.09113622,0.68309546,0.44727358,-0.06731173,0.23399314,-0.24605939,-0.30485,-0.36360437,-0.21995625,-0.038462706,-0.3233396,-0.33692142,-0.13383375,-0.3913465,-0.7369107,0.33744946,-0.08162021,-0.004143432,0.10394055,0.41784358,0.58245754,-0.20521869,0.020662675,0.00041237473,-0.06547385,-0.50249916,-0.14665782,-0.51276064,-0.2659423,0.34729555,0.9093596,-0.13233076,0.21067445,0.07086803,-0.1408435,-0.022731423,0.09512318,-0.085210375,0.061555546,0.43670887,-0.21933351,-0.57972866,0.25888795,-0.06510197,-0.18476723,-0.6264725,0.30709997,0.57567394,-0.61467826,0.6386304,0.359703,0.030497218,-0.14787386,-0.38530746,-0.043143563,0.1083886,-0.28335378,0.29857412,0.24747176,-0.59899235,0.22720012,0.37775165,-0.12839888,-0.78820884,0.5757459,0.0360353,-0.41547993,-0.16374885,0.37853226,0.13839172,-0.07476497,-0.10556908,0.17047499,-0.37044147,0.16129212,0.14549434,-0.13696799,0.31165674,-0.19226818,-0.08599682,-0.7124685,0.18181626,-0.62569463,-0.31533903,0.35269174,0.19635805,0.15104869,0.22051491,0.24829452,0.3536149,-0.31717533,-0.0071229837,-0.09716178,-0.2731275,0.30839515,0.4575627,0.47808757,-0.39011383,0.5161732,-0.03213758,0.05617118,-0.116018586,0.020198124,0.41423145,0.025018675,0.36707976,0.06953789,-0.27182359,0.28478107,0.5786663,0.13604103,0.48290607,0.1888217,-0.036687735,0.031225245,-0.011951945,0.038304534,-0.068002515,-0.58364445,-0.0942639,-0.1816916,0.089839,0.46565697,0.07089685,0.20380652,-0.09703133,-0.48376098,-0.03658533,0.21886806,-0.15242657,-1.0907135,0.35419255,0.07893695,0.7925881,0.41858673,-0.047060974,-0.027745545,0.60002023,-0.10036936,0.14220771,0.42902642,-0.05495102,-0.44482404,0.58800274,-0.64166003,0.36136395,-0.075016595,-0.095560595,-0.08470564,-0.12813349,0.32472703,0.65529937,-0.17178878,-0.053054087,-0.03565738,-0.44264203,0.07411885,-0.35409832,0.05862059,-0.7349291,-0.2879727,0.61104065,0.37406036,0.34500784,-0.2700212,0.14616182,0.18516997,-0.16962764,0.27089196,0.15838851,0.11344472,0.09617839,-0.8107049,-0.21507049,0.44346768,-0.20828114,0.07327994,0.009583524,-0.10998452,0.092413746,-0.19116643,0.03559899,-0.012131019,-0.7005133,-0.0025024798,-0.40481773,-0.4061658,0.4980575,-0.003947652,0.13427988,0.16170415,0.14792112,-0.26474872,0.46975031,0.11414158,0.7853312,0.038382743,-0.0911082,-0.39247355,0.24792473,0.049994104,-0.061373584,-0.054547876,-0.29539108,0.16541906,-0.70610017,0.61290467,0.13055924,-0.25613084,0.019526856,-0.084021345,0.060491852,0.49755856,-0.33577552,-0.08772534,-0.12090932,-0.17728266,-0.22599517,-0.24879424,-0.030164609,0.15329537,0.3110501,0.02701916,-0.20324019,-0.09622906,-0.18389848,0.4154672,0.01120816,0.39368486,0.57715255,0.11582478,-0.27511838,-0.23390767,0.15759984,0.40664318,0.0030379551,-0.21570632,-0.5040253,-0.527064,-0.22437708,0.35199362,-0.10336582,0.42337003,0.08297376,-0.04985244,0.77107984,-0.0559238,1.1371796,-0.006415561,-0.24535394,-0.09051407,0.46226782,-0.10325559,-0.16828242,-0.30785832,0.8592068,0.4878704,-0.08254646,0.02926599,-0.3511813,-0.13374828,0.27088538,-0.10826401,0.010308598,0.024896959,-0.5969154,-0.3799993,0.07116727,0.34945914,0.093279116,-0.056981314,0.19443159,0.3337915,-0.06862486,0.21631935,-0.3490564,-0.13590017,0.22867326,0.25967833,0.082204334,0.17866051,-0.50271714,0.34440327,-0.5801262,0.13696203,-0.28848213,0.07955655,0.017879823,-0.34606576,0.20639603,0.12695542,0.2635983,-0.38177863,-0.32051474,-0.1417806,0.4841461,0.21295655,0.09219655,0.580161,-0.21277103,-0.019913286,0.041810982,0.61870724,1.0343295,-0.011776676,-0.04130277,0.2586916,-0.29015929,-0.71868545,0.4400771,-0.24587771,0.14000158,0.058950417,-0.15331374,-0.58845294,0.34393862,0.31662717,-0.052876096,-0.023873275,-0.5687891,-0.17701468,0.26236114,-0.38821626,-0.18733253,-0.31571573,0.15924859,0.6184212,-0.1972398,-0.24098857,-0.12900971,0.25741774,-0.11185622,-0.3685204,-0.06316566,-0.55010104,0.14708158,0.069455706,-0.32739297,-0.20162772,0.046343926,-0.3367884,0.122719154,0.09126198,-0.31268725,-0.020988831,-0.29139522,-0.21791495,0.802399,-0.07754439,0.06655956,-0.36070156,-0.33812448,-0.6331113,-0.46390668,0.306078,0.019323025,0.009850489,-0.67140526,0.0073436648,-0.078738175,-0.10073928,-0.034408417,-0.3457519,0.40184426,0.27232832,0.37805313,-0.07845465,-0.5823106,0.113206856,0.06001512,-0.36509332,-0.5629125,0.4034373,-0.054038525,0.84001714,0.020208964,0.07885271,0.291637,-0.47143754,-0.058087617,-0.17724034,-0.277513,-0.642933,-0.06724663,518 -465,0.6587957,-0.13766381,-0.31318069,-0.17675631,-0.23469721,0.010239944,-0.11576856,0.44209656,0.05683001,-0.29746968,-0.25343412,-0.0548942,-0.090636194,0.21635021,-0.2058048,-0.7384821,0.2034158,0.17000851,-0.3157579,0.71952397,-0.46677855,0.3789429,-0.37068063,0.4143053,0.18189219,0.34883335,0.1448166,0.1190803,0.031481266,-0.27180123,0.05709872,0.051083785,-0.31873795,0.28686446,0.049250934,-0.28629112,0.066655494,-0.29788694,-0.47388777,-0.7324397,0.10041996,-0.7195489,0.50927055,-0.10395245,-0.4976199,0.11253329,0.13231578,0.045869052,-0.19847775,-0.018048307,0.07941477,0.040339317,0.029330041,-0.08592762,-0.051077466,-0.6162158,-0.5193759,-0.06316158,-0.27665883,-0.11802621,-0.2170082,0.14955719,-0.40049425,0.002462668,0.0012633672,0.37568188,-0.3878494,-0.1332459,0.18798149,-0.22501144,0.2398478,-0.65961516,-0.17739932,-0.21977878,0.13529544,0.13828231,-0.16279124,0.27468282,0.15663333,0.34335676,-0.006823097,-0.11882118,-0.21063672,-0.078083254,0.09375123,0.66937286,-0.22335473,-0.26526278,-0.24114962,-0.2057469,0.23200624,0.089456744,0.16245835,-0.023655836,-0.075009815,-0.22545537,-0.31513026,0.16322754,0.5580336,-0.35454327,0.046579618,0.19749999,0.3985493,0.07309202,-0.2759948,0.23503749,0.02443183,-0.37061396,-0.17155185,-0.2691411,-0.009892668,0.568806,-0.22407295,0.30144793,0.546567,-0.08115142,0.18120234,0.13176174,-0.1009062,-0.1354436,-0.22881682,-0.2122009,0.22319166,-0.38768396,0.20083015,-0.21024407,0.7340339,0.11486108,-0.5912402,0.36387005,-0.29867366,0.17531577,-0.03478753,0.4974131,0.6264576,0.3738752,0.2985997,0.5928379,-0.30842534,-0.039940603,0.12849353,-0.25058582,0.2254978,-0.0143224,-0.08833648,-0.4453034,0.15646325,0.22966179,-0.12990859,-0.008610581,0.42398745,-0.44256717,-0.08438211,0.22534159,0.78409326,-0.28587055,0.0751357,0.7125525,1.1518152,0.9314273,0.012732923,1.0155487,0.33539554,-0.020464735,-0.10256274,-0.13230011,-0.5940876,0.18738714,0.43907672,0.4506325,0.24318917,0.17025603,-0.15620807,0.5329351,-0.44117957,0.037201654,-0.08672003,0.3540718,0.07652228,-0.2132316,-0.57361037,-0.13101068,0.12525524,-0.0010054836,0.04432229,0.28283614,-0.17671023,0.50362206,0.0431554,1.4457743,0.09633159,0.03855907,0.120333456,0.65441996,0.25090545,-0.23418263,0.18409511,0.10075356,0.32265016,0.017396446,-0.39936286,0.18060112,-0.1534147,-0.50725025,-0.1829422,-0.2737251,-0.06807969,-0.12810984,-0.36431012,-0.23274414,0.010079088,-0.20646341,0.27855355,-2.8886206,-0.100750804,-0.21565059,0.22337295,-0.111753,-0.17542498,0.07945154,-0.35661426,0.4198669,0.61073685,0.40721768,-0.6231095,0.47650674,0.57358605,-0.55548996,0.141139,-0.5352693,-0.11798079,-0.11391764,0.61641985,0.24817179,0.059567023,-0.07701181,0.42131725,0.48203853,-0.012819707,0.13702567,0.21714926,0.22421451,-0.13414662,0.2903839,-0.052514885,0.3653517,-0.07655388,-0.105131365,0.30232415,-0.42392445,0.058077075,-0.15378563,0.18452719,0.34410724,-0.4484718,-0.6468257,-0.69495517,-0.3074975,1.171665,-0.051414672,-0.4998445,0.34957093,-0.41334108,-0.24760978,0.012047193,0.3896294,-0.31673148,-0.113054,-0.7166689,0.002693815,-0.16610262,0.13155884,-0.071357384,-0.20381853,-0.5107383,0.80290943,-0.09623214,0.50507957,0.22939084,0.2695144,-0.15207171,-0.51315975,-0.05146151,0.6958647,0.57151425,0.19127691,-0.297782,-0.03331673,-0.23908891,0.06809656,0.0998084,0.62448967,0.6326715,-0.12974985,0.1273099,0.19175036,-0.21652095,-0.062983826,-0.14569452,-0.114517465,-0.05134407,0.0529922,0.682924,0.7583016,-0.14400575,0.20305249,-0.12635937,0.39274785,-0.3004293,-0.49079624,0.3829093,0.60734314,-0.17039643,-0.19772074,0.6460619,0.53589123,-0.24792366,0.35419554,-0.6935793,-0.22840047,0.3179404,-0.1402683,-0.30291286,0.24131629,-0.47833443,0.260294,-0.75249493,0.44354233,-0.1802657,-0.65208626,-0.6374726,-0.23571716,-3.6355777,0.19242701,-0.08161656,-0.34535167,-0.0012074624,-0.3070319,0.4843397,-0.59090245,-0.496367,0.16394024,0.03998103,0.6031008,0.010327361,-0.040890064,-0.3598432,-0.25242037,-0.37116623,0.15348387,0.10802613,0.37580338,-0.008651167,-0.43736163,-0.032713592,-0.12170501,-0.4708257,0.029748809,-0.5039537,-0.6426191,-0.18229267,-0.32982093,-0.13005061,0.5663863,-0.08205861,0.17538333,-0.3627115,-0.19087765,-0.29816762,0.15846084,0.1276693,0.08387679,-0.16375038,-0.07995763,0.043844905,-0.29254866,0.30945322,0.15539674,0.34234613,0.4508479,-0.24166103,-0.04429731,0.61639434,0.37579027,-0.06970694,0.83062065,0.38686106,-0.15833592,0.43363625,-0.15066974,-0.38222727,-0.40950748,-0.3085482,0.020858943,-0.424532,-0.36781237,-0.22963257,-0.40277147,-0.661045,0.50156254,-0.008038606,0.07612418,-0.018987432,0.015243269,0.36747342,-0.07535299,-0.09058995,0.19691657,-0.14752848,-0.5244233,-0.24556987,-0.64594203,-0.3537996,0.09693124,1.03912,-0.012788425,0.11464784,-0.025054445,-0.29463318,0.053127985,0.03939461,0.090034604,0.025566492,-0.0011964568,-0.0220392,-0.6938353,0.5012318,-0.05489164,-0.13229097,-0.4254945,0.16816461,0.6059776,-0.64320266,0.31962404,0.29023853,0.08842556,-0.15521131,-0.62003547,-0.19793734,-0.14926486,-0.3056036,0.47002056,0.29204726,-0.87910736,0.43942636,0.22770736,0.017063703,-0.5670983,0.52254,-0.12527487,-0.39128903,0.06648846,0.18294474,-0.0029849666,0.03121362,-0.3069722,0.35755607,-0.4507324,0.1536728,0.19123231,0.022419985,0.46680218,-0.056525372,-0.029145787,-0.60462,-0.22670087,-0.6031799,-0.2698046,-0.011452769,0.08526741,0.00829471,0.21846654,0.10219032,0.4446973,-0.18834041,0.13387302,-0.10289859,-0.35491425,0.4616778,0.4897905,0.4473308,-0.33456162,0.74543184,0.19666465,0.14410213,-0.16036725,0.16170199,0.37749553,-0.015122367,0.4898732,-0.0180403,0.042462904,0.16704223,0.9084324,0.11757974,0.52569485,0.12063426,-0.32444876,0.2942029,-0.037349872,0.23638144,-0.026254904,-0.4476564,0.051423762,-0.16280238,0.2075322,0.36869144,0.13118292,0.26413244,-0.046026286,-0.4535605,0.06083194,0.18781216,0.034383945,-1.259246,0.26696858,0.19740845,0.7983093,0.5464738,-0.023400223,-0.10978887,0.69501895,-0.14607988,0.09951516,0.23171796,0.046624295,-0.3313265,0.39459345,-0.56595093,0.3811787,-0.014606276,-0.054990944,-0.046588004,-0.09522164,0.38542393,0.65840656,-0.099231474,0.16095705,-0.003481667,-0.33700266,-0.008499588,-0.25377238,0.012015425,-0.5046443,-0.2187415,0.55370367,0.4791646,0.35407346,-0.15347219,0.025501583,-0.0070768567,-0.06548876,0.16283004,-0.032347612,-0.03232702,-0.40675634,-0.5563746,-0.37776068,0.41004023,-0.12923793,0.08036472,0.012089129,-0.26458433,0.035698954,-0.06827426,-0.032944858,0.14360373,-0.5485277,0.101898775,-0.16658004,-0.30645037,0.5351099,-0.24491167,0.23674165,0.18475573,-0.01729242,-0.15877475,0.10743014,-0.008755432,0.5089775,0.14391987,-0.17399241,-0.32958388,-0.032994457,0.20789716,-0.33184034,-0.23844539,-0.37355906,0.10457446,-0.3923049,0.3524383,-0.07175725,-0.32193497,0.09627807,-0.13534662,0.02383698,0.3815913,-0.09406157,-0.2739603,0.13116482,0.0887718,-0.23455903,0.007524324,-0.09889477,0.34668946,0.13066004,-0.2103497,0.077054635,0.01602542,0.20034178,0.33255714,0.12298017,0.25850576,0.48233318,-0.116315626,-0.35281864,-0.04291207,0.058165126,0.58579785,-0.06389194,0.1432289,-0.15628688,-0.7425161,-0.3810401,0.034781497,-0.18163657,0.33048287,0.08941518,-0.20461813,0.67415196,0.1583998,1.0118779,-0.048417576,-0.39538223,0.019197745,0.5324941,0.013743903,0.077199884,-0.27243882,1.004817,0.48438063,-0.4217214,-0.31219482,-0.29667643,-0.04929363,0.23688915,-0.13029331,-0.21647009,-0.113445304,-0.7624015,-0.1008143,0.2369286,0.27798986,0.04669208,0.009368676,0.0659708,0.20468317,0.024118645,0.3441372,-0.39655045,0.01031191,0.40167236,0.08819259,-0.11536479,0.07738646,-0.37122288,0.24557948,-0.59073746,0.09153683,-0.28047195,0.117039025,-0.17056324,-0.40052834,0.21710598,0.068807274,0.3714687,-0.41507366,-0.29953048,-0.16855605,0.47501656,0.09783767,0.11763412,0.37980404,-0.15879479,0.084984735,0.09184133,0.44799975,1.1070482,-0.10509571,0.04902047,0.26436958,-0.47149712,-0.69784135,0.071745835,-0.1016945,0.1677717,-0.114444956,-0.4051067,-0.5318335,0.33728194,0.40123802,-0.038378578,0.21851563,-0.38383317,-0.34996146,0.16876519,-0.42218584,-0.22653215,-0.4287819,0.018532855,0.4601708,-0.3478729,-0.25533888,-0.10283186,0.27953854,-0.35956457,-0.67909575,-0.08479677,-0.29642513,0.41684595,0.121629424,-0.48065296,-0.15753052,-0.09073765,-0.4188992,0.09327187,0.22506817,-0.39440152,0.21397689,-0.39038482,0.023935573,0.86889297,-0.16274872,0.18138303,-0.66659164,-0.5322946,-0.8586332,-0.58012444,0.4160428,0.35167697,-0.15790065,-0.47914585,-0.11644302,-0.2646239,0.13715358,0.010130955,-0.17656581,0.47829375,0.20215066,0.4139605,0.065506,-0.8655936,0.040462673,0.09849991,-0.17462817,-0.47597593,0.57198995,-0.0574084,0.7611719,0.18951012,0.15983252,0.088225365,-0.32345653,0.24368349,-0.20483017,-0.36955765,-0.49301043,0.17482866,520 -466,0.4805629,-0.401172,-0.5102972,-0.16485667,-0.24178126,0.24353388,-0.28043553,0.20308682,0.08176412,-0.53996193,-0.087102234,-0.37563568,-0.023235831,0.51304156,-0.28559342,-0.75344616,-0.005648315,0.19017114,-0.707202,0.6512906,-0.42700514,0.3494954,0.19431588,0.0065245456,0.2254966,0.19863705,0.49413636,-0.18096747,0.06729265,-0.07791939,-0.18586542,-0.03646102,-0.77602714,0.018054297,-0.21831584,-0.30139425,0.13121074,-0.34113497,-0.4412067,-0.87981164,0.5381213,-0.9748783,0.29442674,0.0154152345,-0.3287548,0.3496534,0.15350077,0.19511771,-0.21469785,0.077939734,0.19512774,-0.03205961,-0.078642,0.023381472,-0.28175774,-0.6399555,-0.71100414,0.07953048,-0.77283305,-0.43676716,-0.1926643,0.28990045,-0.38199,0.09918397,-0.19394474,0.25647333,-0.48818615,-0.4149219,0.19270065,-0.06764854,0.26499417,-0.71123326,0.05366216,-0.17473526,0.051479112,-0.106894724,-0.011006756,0.36390445,0.29243177,0.56229836,0.10234494,-0.28681347,-0.1997632,-0.18465081,0.3520582,0.58547866,0.105349064,-0.5099883,-0.30626887,0.08210863,0.33029824,0.1712866,0.07549632,-0.4299161,-0.08075641,-0.06643027,-0.25950092,0.53875023,0.48774672,-0.5127215,-0.3895561,0.42601892,0.6628989,0.20648716,-0.19982277,0.096871495,0.009105909,-0.6078641,-0.087983,0.3965218,-0.3373018,0.60767555,-0.22721966,0.12735668,0.7309635,-0.20241408,0.16981599,-0.3640181,-0.057066094,-0.19345617,-0.010281444,-0.23597577,0.22544363,-0.5614723,0.12644923,-0.29071063,0.8332381,0.185937,-0.70011604,0.43142205,-0.58843696,0.31244397,-0.1756632,0.8073569,0.60624987,0.27327222,0.16305752,0.8252115,-0.44108626,0.2022885,-0.04989593,-0.38065535,0.089889355,-0.35370654,-0.22843643,-0.25774518,0.098702446,-0.27931774,-0.10688763,-0.30759457,0.76348543,-0.38211623,-0.08527275,0.0045034206,0.769813,-0.33070067,-0.005089249,0.5910691,0.9577503,1.2816465,0.04671687,1.4093354,0.4755115,-0.25816467,-0.023687933,-0.18359184,-0.8158215,0.27576822,0.5374752,0.464844,0.3046259,-0.060704228,-0.05952885,0.29733127,-0.4961451,0.12856178,-0.28008613,0.19711651,0.012830623,0.034779247,-0.38972944,-0.08969637,0.083166294,0.17433546,0.18715964,0.29017815,-0.26344654,0.3586473,0.053966798,1.5807146,-0.32188565,0.046632368,0.15753104,0.59199417,0.2218077,-0.08766645,0.13714437,0.17815872,0.502955,0.012720363,-0.9151735,-0.00012831177,-0.47566932,-0.5213008,-0.3202625,-0.31119418,0.11571524,-0.010102762,-0.41481033,-0.36891857,0.16621163,-0.29776812,0.39701673,-2.137866,-0.2120719,-0.43228698,0.16975823,-0.36767584,-0.1953825,-0.07990437,-0.63731545,0.34262648,0.4487327,0.32316038,-0.7509567,0.35200998,0.5248913,-0.44788024,0.04242431,-0.77455175,-0.10186816,-0.25127655,0.64123785,-0.0056350543,-0.03233393,-0.054855056,0.21051039,0.48034254,0.21063831,0.09376056,0.19685616,0.4877544,0.19300124,0.524924,0.18884648,0.35579374,-0.24694169,0.03807766,0.6462273,-0.29957047,0.51788217,-0.40536323,0.15370591,0.4184796,-0.5785518,-0.81597155,-0.7135919,-0.44369918,1.1617978,-0.30921957,-0.7522522,0.44405863,0.14896749,0.0024050304,-0.13126884,0.465587,-0.29542464,0.00065304124,-0.69257206,-0.045736175,0.06738965,0.22518526,0.03663202,0.057736117,-0.37533018,0.8624825,-0.007043268,0.36960378,0.1946139,0.23087811,-0.2243005,-0.72478145,0.08480639,0.9266051,0.49803346,-0.025153533,-0.27647382,-0.24070771,-0.3368452,-0.31229013,-0.09573257,0.31765786,0.9381666,-0.013546995,0.08726398,0.26538816,-0.12178528,0.06702127,-0.114954196,-0.38889974,-0.04786208,-0.121234655,0.52681357,0.45521185,-0.12401653,0.31366706,-0.16216199,0.29377636,-0.0063700355,-0.47657886,0.53899246,1.1542803,-0.09247851,-0.067002244,0.47309664,0.6559579,-0.42443958,0.6517442,-0.8479914,-0.2774828,0.5933186,-0.21950798,-0.43208987,0.15536399,-0.39803043,0.000199476,-0.8879537,0.45259875,-0.3115588,-0.07371169,-0.51857054,-0.30023378,-2.7423131,0.17999187,-0.21977665,-0.0612212,-0.16256367,-0.054716878,0.3775673,-0.37273392,-0.6354249,0.11958305,0.03470511,0.5332727,0.12774654,0.2035502,-0.2856928,-0.0015195012,-0.6421523,0.19826181,-0.03887302,0.32461062,-0.11884109,-0.42323452,0.09464158,-0.41073015,-0.395042,0.015973227,-0.45006016,-0.45805788,-0.29219383,-0.35019264,-0.23346625,0.5638397,-0.06669981,0.010497366,-0.12037935,-0.090399995,-0.036258645,0.2791942,0.13062055,0.2619957,0.052921932,0.0050627505,-0.06836392,-0.29496905,0.3799193,0.0015622868,0.20980392,0.26891443,-0.16044573,0.038943715,0.44103643,0.5109443,-0.20550646,0.8270799,0.5083593,-0.12580712,0.11565901,0.13021632,-0.22757672,-0.5912501,-0.25949544,0.022757104,-0.27996582,-0.66612285,-0.16134538,-0.31963438,-0.76362115,0.357661,-0.012796981,0.34266424,0.058340006,0.055858213,0.3496568,-0.13185465,0.07924993,-0.11261362,-0.13939336,-0.5442739,-0.40540245,-0.8712968,-0.55811673,0.2015177,0.9465584,-0.16954236,-0.44309196,-0.051465034,-0.27834752,0.04207951,-0.1096738,-0.039148718,0.24395084,0.34183273,-0.015232084,-0.8993756,0.75329393,-0.023845183,0.16041772,-0.35268018,0.058978762,0.55338424,-0.5183841,0.24953775,0.5442211,0.14432767,-0.016774297,-0.6739612,-0.20639507,0.06536215,-0.26586035,0.43694773,0.053045534,-0.68414956,0.51479846,0.015776025,-0.5532006,-0.84598213,0.5505603,0.061060328,-0.17068611,0.024650266,0.3129469,0.0344778,0.03879559,-0.5584622,0.35635805,-0.57082766,0.2661375,0.34751394,0.027435804,0.41494253,-0.24060687,-0.41776162,-0.62178373,0.072572686,-0.40787935,-0.12311975,0.18409596,-0.01605105,-0.015914185,0.19592007,0.07635792,0.550198,-0.25040206,0.120504804,-0.00026902132,-0.2580899,0.61234635,0.4770479,0.5067448,-0.5185143,0.6995302,0.11167705,-0.2065595,-0.089003205,0.030621039,0.21321987,0.2299211,0.28050622,0.11959604,-0.07137892,0.2573047,1.0228517,0.26542303,0.42943606,0.24760243,-0.4897682,0.4679844,0.19092976,0.07968719,-0.09694285,-0.5343086,-0.24944337,-0.07011719,0.016364312,0.55813795,-0.028948456,0.55587137,-0.10810661,-0.18718402,0.048869606,-0.038781676,-0.19644573,-1.0373569,0.100199565,0.110627696,0.644231,0.7199109,-0.15938345,0.1717373,0.5911718,-0.24662733,0.037620563,0.40615535,0.17575301,-0.6915354,0.5162057,-0.5049167,0.29957882,-0.14813061,0.030944845,0.18365182,0.28253266,0.43159977,0.7272007,-0.0043857074,0.06513057,-0.17672122,-0.30280992,0.31364632,-0.37573224,0.26176962,-0.29662457,-0.37707832,0.57506216,0.4862557,0.18701081,0.060082283,-0.049655076,-0.013565055,-0.14788201,0.29425567,-0.039031107,-0.06468693,-0.072542086,-0.6467127,-0.24608503,0.60582143,0.10976248,-0.008601568,-0.033001624,-0.35626617,0.16246238,-0.39703798,-0.017303998,-0.06022642,-0.8859814,-0.045884736,-0.09952767,-0.43472952,0.35117808,-0.19542591,0.27236515,0.27329516,-0.18204376,-0.367747,0.03791505,0.148296,0.7600447,-0.048308734,-0.08510937,-0.49198776,-0.15290785,0.2986186,-0.31943402,0.09951317,-0.05339821,0.018909859,-0.73113,0.67743367,-0.27767316,-0.28317225,0.23091117,-0.26231572,-0.20014845,0.6110484,-0.15750761,-0.07496427,0.1264895,0.0274092,-0.1837246,0.011433197,-0.205361,0.10951956,0.15004559,-0.19915833,-0.21056522,-0.09561163,0.119962804,0.5331293,-0.10602302,0.2806835,0.32931963,0.059065945,-0.58214444,-0.08139573,0.14469202,0.45298788,0.19046403,0.084620796,-0.1508085,-0.37417862,-0.30593994,0.27080554,-0.13959198,0.2817164,0.19661883,-0.46615776,0.63938135,0.3883355,1.251107,0.04855142,-0.35706544,0.16495533,0.69312775,0.076937065,-0.06836974,-0.503528,0.76144785,0.6518088,-0.20874767,-0.16328296,-0.40343314,-0.15399988,0.26056957,-0.2756645,0.073252626,0.02579956,-0.68453443,-0.26306197,0.20230415,0.36443773,0.027480448,-0.1521544,-0.0031994197,0.045794465,0.13648415,0.6227154,-0.6356084,-0.25879344,0.34030324,0.03327111,0.118972614,0.06538494,-0.300198,0.42323923,-0.6802071,0.09706782,-0.27340153,0.18939964,-0.2072228,-0.35618547,0.20931663,0.2531114,0.3625972,-0.35157043,-0.53849924,-0.23772885,0.770148,0.25956076,0.41399002,0.72377664,-0.4198709,0.29128236,-0.09850002,0.6312561,1.2988656,-0.25605378,0.06817025,0.18760154,-0.4749277,-0.8168098,0.3737104,-0.4865597,0.23445916,-0.055146463,-0.28835994,-0.54488105,0.32866198,0.1571921,-0.146947,0.14078033,-0.59070724,-0.44858894,0.310186,-0.12967572,-0.37091064,-0.47616556,0.23575817,0.74927384,-0.4361506,-0.26184845,0.15273967,0.3570377,-0.37164953,-0.79824334,-0.022811592,-0.35796338,0.40321985,0.04575319,-0.10666021,0.054524362,0.09922743,-0.56206787,0.17430487,0.22334819,-0.39462128,0.04188297,-0.30552012,0.25723317,0.9327876,-0.21025173,-0.31291676,-0.7713121,-0.6235854,-0.95715624,-0.5540763,0.5950858,0.22212096,0.18476741,-0.45720533,-0.06479044,-0.2206253,0.36505443,0.16647615,-0.62152725,0.37274107,0.013075856,0.50307876,-0.12786703,-0.7734398,0.0420706,0.091535985,-0.23394208,-0.32651475,0.622489,-0.15445654,0.8544506,0.16597857,0.12453629,0.12971413,-0.6177627,0.3508451,-0.30154327,-0.31608567,-0.634788,0.30920097,522 -467,0.21488595,-0.006994162,-0.5379756,-0.26192886,-0.34797043,0.33477402,-0.32463378,0.20393796,0.23935628,0.041577708,0.15281399,-0.16882102,-0.23181942,0.35261136,-0.13711601,-0.83219105,-0.010814727,-0.05439614,-0.63581264,0.47934565,-0.468309,0.4209028,-0.18170205,0.2756286,-0.06875079,0.47634655,0.31502816,-0.07471355,0.07640751,-0.112480335,-0.11548715,-0.06623511,-0.66363984,0.15266027,-0.14816794,-0.15918711,-0.06865139,-0.51769257,-0.3117105,-0.7185868,0.33953652,-0.6999339,0.38332626,-0.17091744,-0.372006,0.074086435,0.14270253,0.25040796,-0.3622543,0.048061676,0.24307539,-0.29835537,0.037330475,0.014448411,-0.33649355,-0.75342256,-0.46961573,-0.124739096,-0.61160904,-0.22842745,-0.25002646,0.21070036,-0.37196255,-0.08783458,-0.13721669,0.1614867,-0.3993821,-0.05408751,0.27501866,-0.43276724,0.07917715,-0.51249737,0.10109272,-0.13243648,0.27709994,0.18037142,-0.100685164,0.4512995,0.31829503,0.43867925,0.19069116,-0.24477267,-0.18570079,-0.2290297,0.107686296,0.5300781,0.06369701,-0.33918503,-0.22179988,-0.14054361,0.31186703,0.19419445,-0.024364263,-0.1676791,0.0067832046,-0.009549303,-0.25634125,0.46704218,0.5371026,-0.33688623,-0.037867554,0.5000622,0.4640862,0.2814272,-0.17257135,0.23281625,-0.078688845,-0.34886137,-0.30051583,0.21059915,-0.11465882,0.46492848,-0.20519228,0.17770298,0.7817993,-0.103769325,0.08903803,-0.19624129,-0.21679817,-0.11825164,-0.17916492,-0.025577888,0.13629742,-0.42634028,0.19209974,-0.24080372,0.59048927,0.23002806,-0.60889477,0.44221607,-0.4105416,0.2027391,0.02881128,0.6882989,0.82157755,0.55905545,0.069630034,0.95067036,-0.36369893,0.05792942,0.035432033,-0.24459545,0.27919286,-0.07859901,0.13333853,-0.5026776,0.17866695,0.162564,0.056275126,0.04179465,0.229924,-0.3791599,0.023644624,-0.017808845,0.6640636,-0.30256003,-0.06598572,0.7853146,1.1642562,0.8421425,-0.0065050083,1.3253384,0.27516425,-0.27308565,-0.027892262,-0.1983464,-0.60757107,0.1992292,0.4153281,0.4167154,0.46505406,0.14115301,-0.08415301,0.30853027,-0.33802193,-0.043192264,-0.019270267,0.21664958,0.119120136,-0.042694844,-0.33190307,-0.12551455,0.28456026,0.08367627,0.068731524,0.2368528,-0.262354,0.4377597,0.09194863,1.2394177,0.08688251,0.09464768,0.008802925,0.5580221,0.33546352,-0.0546692,-0.005549748,0.48971257,0.14783154,-0.027805133,-0.5530562,0.082786515,-0.39790747,-0.5168486,-0.14213024,-0.40022555,-0.18537949,-0.075776294,-0.3672658,-0.04373633,-0.021129148,-0.40085143,0.47293523,-2.584526,-0.16183257,-0.3420256,0.32525158,-0.29491097,-0.14066264,-0.2262111,-0.4163909,0.30708006,0.42723435,0.40134478,-0.650929,0.44488305,0.4388191,-0.4320781,-0.047172885,-0.4697378,0.10646598,-0.08224575,0.4340164,-0.069754295,-0.25104183,-0.109086156,0.47309342,0.7064601,0.38554594,0.03549222,0.24492113,0.59534734,-0.1810941,0.4332575,-0.08101218,0.5351581,-0.22163339,-0.0001538066,0.2956377,-0.62217087,0.5142592,-0.1497393,0.20024356,0.3713291,-0.3017334,-0.8624135,-0.62381077,-0.3996243,1.3280708,-0.47660616,-0.6360958,0.36202368,-0.116361804,-0.21461026,0.090588376,0.7595355,-0.07784516,-0.03969252,-0.5444379,0.105679035,-0.20405634,0.24896309,0.004284317,0.25468674,-0.36262473,0.84220856,-0.233623,0.5096028,0.15780583,0.14303496,-0.031665303,-0.39073104,0.03420688,0.5766778,0.59741265,0.038731694,-0.045255106,-0.10185533,-0.1989088,-0.38795885,0.057106238,0.7724166,0.5529238,-0.050082948,-7.124032e-05,0.29413676,-0.14657864,-0.0052998653,-0.18474758,-0.23957276,-0.066846855,0.052040108,0.52081674,0.5843905,-0.19103663,0.13042943,-0.064783275,0.17453721,-0.19028142,-0.6022175,0.44294482,0.66899985,-0.21370146,-0.042781573,0.20497279,0.403831,-0.36335224,0.47134995,-0.711154,-0.36515537,0.66751605,0.07000143,-0.5064644,0.121298835,-0.23701465,-0.05383087,-0.74386567,0.22850962,-0.10465259,-0.68746835,-0.3928888,-0.2005776,-3.7038271,0.048718035,-0.04442594,-0.15713601,-0.33821827,-0.03210341,0.42688808,-0.52260625,-0.604857,0.04910555,-0.028472926,0.59371185,-0.1636893,0.18889272,-0.32970795,-0.094665356,-0.38909656,0.2474264,-0.06466244,0.37300286,-0.07656657,-0.24857788,-0.072444454,-0.25091696,-0.6232577,-0.08409166,-0.5451937,-0.38994327,-0.16536972,-0.36399904,0.021734076,0.61046284,-0.39068168,-0.010529169,-0.21718307,-0.028417895,-0.27256727,0.25802833,0.2917569,0.05746457,0.013105699,-0.09767907,-0.060187165,-0.30504397,0.39581412,0.07435722,0.37326193,0.36402115,-0.19411048,0.040964548,0.6041001,0.63883644,-0.029023958,0.7016217,0.044451892,-0.0671978,0.5480334,-0.22487459,-0.1939427,-0.6603758,-0.39220187,-0.041147243,-0.41686204,-0.45308822,-0.3151361,-0.31298786,-0.8580799,0.07547845,0.22652142,0.30297494,-0.09219641,0.116999306,0.4156783,-0.13091718,0.11986222,0.088465706,-0.25014487,-0.57768583,-0.3034169,-0.5302928,-0.5178894,0.37627697,0.8318249,-0.060613196,-0.14103307,-0.065634444,-0.3895611,0.10447345,-0.11342076,0.3033487,0.13567066,0.2368858,-0.087358356,-0.5715207,0.47791067,-0.22284935,-0.11798381,-0.7396266,-0.020945577,0.62618244,-0.5067776,0.4054861,0.40802497,0.23887992,0.021635754,-0.6070389,-0.14718984,-0.018548131,-0.18980037,0.4042259,0.1197587,-0.6282544,0.43490624,-0.20337443,-0.07922935,-0.48982033,0.4731662,0.037380867,0.02045766,0.046058256,0.39932433,0.12870874,-0.19209039,-0.19311726,0.21623231,-0.5326422,0.2885404,0.3799583,0.07404918,0.67404807,0.06149509,-0.2923243,-0.6382274,-0.19453931,-0.49034172,-0.1538532,0.11844514,0.021341026,0.07218086,-0.08546233,0.014937631,0.3356178,-0.31628507,0.25531095,-0.039148502,-0.3412619,0.5896615,0.5646642,0.41482475,-0.5453387,0.6926672,0.122196145,-0.012196928,0.10966066,0.020232186,0.4934404,0.27077952,0.40873665,0.08820844,-0.016842322,0.057605643,0.55215484,0.2849522,0.2629039,0.07356262,-0.3737931,0.4913697,0.11220671,0.16308339,-0.14557488,-0.4886859,0.0063584275,-0.032751746,0.15313159,0.3993507,0.255007,0.39761263,0.08363026,-0.25849512,0.1745611,0.05558782,-0.35751185,-1.0600605,0.33151785,0.3761955,0.8371142,0.45006004,-0.11138137,0.1679082,0.49331623,-0.1763197,0.050760366,0.34565443,0.11025201,-0.5272783,0.5132108,-0.5656847,0.3942306,-0.03492635,-0.09661041,0.34007192,0.37263364,0.51081234,0.75895244,-0.1943403,-0.04137551,-0.022844464,-0.28655547,0.08328704,-0.17642684,0.09010514,-0.46510705,-0.3408925,0.42625588,0.3264545,0.33429092,-0.28849083,-0.15952794,-0.13958009,-0.17326416,0.1663429,-0.16638486,-0.15943933,-0.31194973,-0.72935694,-0.44837388,0.4178832,-0.13588418,0.05263317,0.075101696,-0.52177966,0.15476848,-0.09589387,0.05353754,0.06702868,-0.6733814,0.08360604,-0.15577619,-0.44456795,0.46447924,-0.3566362,0.44161573,0.1874532,-0.16959794,-0.31485072,0.10712503,0.12603779,0.90790254,-0.014307984,-0.19542088,-0.47584078,-0.051326238,0.30083698,-0.37824202,-0.11675215,-0.3317224,-0.0634376,-0.3560136,0.39093825,-0.38356623,-0.20399089,0.21875587,-0.25421497,-0.078118615,0.3985751,-0.32907873,-0.2638887,0.07681555,0.0002923927,-0.21266769,-0.0016175935,-0.4460236,0.2726564,0.13525064,-0.025988536,-0.033180326,0.023266288,0.031189706,0.24571483,0.06405317,0.08085517,0.28968862,-0.092780046,-0.34054795,-0.12103723,0.049109805,0.44810015,0.20567404,0.033245087,-0.17796671,-0.52290803,-0.33657667,0.26286224,-0.20335959,0.10288726,0.16529499,-0.28422603,0.57067746,0.15066074,1.1712369,0.0685007,-0.39490393,0.22136381,0.6555114,0.07058764,-0.020683339,-0.366297,0.83703434,0.5302487,-0.24638237,-0.18545625,-0.37581292,-0.15869066,0.3931827,-0.20765473,-0.19293885,-0.11315719,-0.79856193,-0.17577113,0.13739653,0.19117667,0.030918185,-0.10117334,-0.25616035,0.03082249,0.1698885,0.47288388,-0.4617829,-0.22069347,0.4886301,-0.11207999,-0.055654056,0.05980727,-0.24104299,0.4427673,-0.60888755,0.034578387,-0.5397715,0.042225067,-0.16223018,-0.25457817,0.18863153,-0.14838386,0.3592078,-0.19416308,-0.40918532,-0.07133349,0.57785183,0.38196418,0.39748022,0.6124615,-0.15740974,-0.10403474,0.046202403,0.63489395,1.2045892,-0.1612344,0.2415292,0.31609038,-0.58569896,-0.54210144,0.026515901,-0.47128457,0.033730157,-0.10511994,-0.41066408,-0.27477375,0.29519218,0.041446745,-0.00073862926,0.18454583,-0.63376087,-0.30468607,0.17503093,-0.3100532,-0.28485572,-0.4835202,0.18022303,0.84862083,-0.3498809,-0.4284665,0.13174072,0.24185872,-0.24439815,-0.6541972,0.1459919,-0.16964924,0.38082388,0.07230145,-0.41584596,0.06595864,0.32252353,-0.44682032,0.3366631,0.080113895,-0.35986808,0.017181393,-0.2018564,-0.049078,0.8235939,0.1233687,0.11258314,-0.79032546,-0.36151674,-0.86615974,-0.47357342,0.12749171,0.22434127,-0.10986989,-0.38903108,-0.11628728,-0.23316206,0.17335913,0.010286055,-0.4991341,0.37255356,0.17996731,0.6790153,-0.18147771,-0.87363243,0.111390844,0.2127579,-0.22322972,-0.49211115,0.5511008,-0.19818768,0.64576876,0.16143815,-0.0014438586,0.06755887,-0.59697247,0.34935883,-0.29382712,-0.13790132,-0.57304686,0.41210365,523 -468,0.5190452,-0.25818977,-0.28044242,-0.20523398,-0.13307624,0.11555139,-0.06850347,0.51554525,0.21901357,-0.5699329,-0.130034,-0.22012968,-0.01562348,0.28067356,-0.13213348,-0.5370329,0.026533753,0.1867207,-0.38791627,0.52192694,-0.52196664,0.23497605,0.046862464,0.39263248,0.06326459,0.22047058,0.14908396,-0.1613125,-0.23519541,-0.19437878,0.011303084,0.20265998,-0.6060033,0.33045343,-0.17448187,-0.332617,-0.07834854,-0.49719042,-0.44616684,-0.78653985,0.34330246,-0.9652888,0.5044622,0.09031124,-0.18140896,0.34748587,-0.05101112,0.25810042,-0.29864207,-0.0025145356,0.28233936,-0.17213129,-0.050712552,-0.14927784,-0.10575312,-0.18425371,-0.58968246,0.11856927,-0.37608114,-0.12686159,-0.35917607,0.16363427,-0.21980672,0.030147675,-0.08553807,0.37198952,-0.46047583,-0.01793112,0.13734423,-0.14809132,0.34720638,-0.49021286,-0.16997471,-0.11699506,0.17819794,-0.1819958,-0.2040995,0.35579696,0.22788729,0.5223647,0.008900396,-0.21892986,-0.32921368,0.03502339,0.20510796,0.5640992,-0.17672013,-0.632946,-0.16968463,-0.17081822,0.12262235,0.09039237,0.051976006,-0.2418963,-0.057168026,0.02499327,-0.20959057,0.33892804,0.5973605,-0.22246747,-0.32557264,0.32594976,0.59325683,0.102125965,0.04724117,-0.09732266,-0.06539857,-0.45290312,-0.18485881,0.1069413,-0.29602915,0.51981914,-0.044959046,0.13268682,0.7237474,-0.22499646,0.12947305,0.04771923,-0.05779885,0.023554554,-0.3489775,-0.31756037,0.2544386,-0.402824,0.17063081,-0.2784107,0.8763777,0.121444285,-0.7410267,0.5130726,-0.3828779,0.06748947,-0.033223443,0.5921817,0.66728646,0.4518253,0.40580007,0.7446479,-0.62758446,0.024015177,-0.13770841,-0.24353471,-0.016769607,-0.1783965,0.17949389,-0.33476844,-0.0021550101,0.078175224,-0.19235133,-0.09732572,0.5121001,-0.5435704,0.0020862904,0.17764173,0.8396984,-0.3136315,-0.017414523,0.8714805,1.0979576,0.9557892,0.07258296,1.2940766,0.39493516,-0.31776863,0.25957367,-0.2693382,-0.775878,0.26483724,0.32723546,0.24935646,0.009392832,0.23350227,-0.048519082,0.43443868,-0.6178834,0.03956139,-0.1632736,0.36067644,0.018202756,0.0064690784,-0.49521774,-0.2910862,-0.14478625,0.00040531158,0.06499706,0.18869486,-0.35760722,0.27328518,0.06411279,1.7802916,-0.16423178,0.07616373,-0.068799466,0.5456,0.069624744,-0.09913601,-0.09714628,0.23419568,0.31917995,-0.078369774,-0.5711488,0.053760957,-0.15480033,-0.48996305,-0.1384423,-0.24665998,-9.563991e-05,-0.08356537,-0.42155796,-0.19042066,-0.064721845,-0.40396172,0.5000889,-2.5664613,-0.18477903,-0.009285235,0.3261816,-0.21516664,-0.3529298,-0.06883429,-0.47984287,0.46805954,0.38344914,0.39910308,-0.6949088,0.39224574,0.38450652,-0.46682456,-0.14491017,-0.663524,-0.041549463,-0.047229063,0.38112357,0.20554349,-0.08080488,-0.076282926,0.012532075,0.51709235,0.06578245,0.15997496,0.31449717,0.3849353,0.07943255,0.4313183,-0.013663226,0.5582616,-0.2749305,-0.14189373,0.37641844,-0.47322822,0.22538264,-0.3179674,0.2092136,0.34472346,-0.45882514,-0.8484916,-0.89041215,-0.49756685,1.1210641,-0.11290494,-0.46617433,0.30402747,-0.24282338,-0.22695121,0.00050867134,0.55038154,-0.12617566,-0.068655476,-0.7746018,-0.068830006,-0.06884332,0.1914604,-0.031750724,0.071925156,-0.46328872,0.79585886,-0.09857433,0.40775782,0.2797916,0.21659414,-0.15471013,-0.39831686,0.10683364,1.0450066,0.35550103,0.18438552,-0.106724,-0.21203835,-0.20833097,-0.15817595,-0.013047963,0.5176667,0.77397346,-0.002955642,0.03227054,0.2715203,-0.07129613,0.016322926,-0.091436975,-0.3621294,-0.22653624,0.0421029,0.7045041,0.62957144,-0.18114944,0.3873338,-0.341338,0.20546399,-0.13075967,-0.35835978,0.5289607,0.78522,-0.13420808,-0.08935772,0.54716,0.424349,-0.2939637,0.46167496,-0.7614437,-0.3713213,0.44391838,-0.14301327,-0.46935493,0.14709413,-0.32261905,0.14459682,-0.89002705,0.46991786,-0.24044533,-0.70675385,-0.495179,-0.16693582,-3.360561,0.076304436,-0.13871299,-0.12081178,-0.055422373,-0.19522886,0.20754762,-0.49216405,-0.5610424,0.19150934,0.013609686,0.62745446,0.11844268,0.13071005,-0.27923894,-0.07461543,-0.4614274,0.026062336,0.10475143,0.33021027,0.020775547,-0.3911967,-0.023110254,-0.1870433,-0.24502386,0.04761646,-0.5794687,-0.5411281,-0.2189388,-0.4494469,-0.26927635,0.6608597,-0.36729473,0.07172791,-0.20613118,-0.08025585,-0.3685441,0.4197044,0.07761478,0.18782978,0.04603896,-0.2038143,-0.07145584,-0.33383328,0.4147424,0.1618341,0.14827867,0.46419606,-0.23372957,0.127746,0.46467143,0.5796199,-0.0920309,0.9645747,0.4446014,-0.090897314,0.34816557,-0.35752568,-0.1499499,-0.64680946,-0.3319079,-0.04414245,-0.4068884,-0.48075524,-0.053989053,-0.4719284,-0.9071669,0.4492932,0.009811367,0.15130424,0.027297305,0.09690697,0.45926183,-0.17309478,-0.12456922,-0.11004914,-0.05161329,-0.648529,-0.3364951,-0.716165,-0.52109325,0.12918332,0.96377057,-0.007812858,-0.066834435,0.16324724,-0.12255488,0.13562202,0.11250804,-0.19764055,-0.08352012,0.41487542,0.009574183,-0.73176724,0.5801949,0.03872504,-0.17756002,-0.6086284,0.31765977,0.65229034,-0.6623906,0.5792634,0.38630813,0.10527086,-0.0043562567,-0.42237744,-0.28508398,-0.2618207,-0.13888629,0.3170615,0.063191876,-0.84195787,0.46805218,0.45722088,-0.25163943,-0.9638356,0.30943805,-0.068692185,-0.17733094,0.05588132,0.2755303,0.16063856,0.012689168,-0.25052175,0.21196079,-0.64190066,0.36284348,0.28651777,-0.0006484368,0.27865893,-0.1516392,-0.11893896,-0.67846686,-0.17011525,-0.5953684,-0.30372864,0.1268289,0.088456355,0.046718437,0.28889203,0.23406407,0.46660694,-0.19844206,0.10226748,-0.019767238,-0.31165746,0.1882608,0.42637524,0.46423602,-0.42199415,0.58504057,0.0066534854,-0.030745456,-0.1680227,0.12553765,0.38795704,0.1429694,0.37204796,0.012865058,-0.20720336,0.2847729,0.9481339,0.29215154,0.46418524,0.063523166,-0.240448,0.39903164,0.18782659,0.3209804,0.023348536,-0.54298955,0.13495697,-0.18563178,0.11313653,0.34956476,0.23013541,0.37325493,0.005464409,-0.2437607,-0.021927472,0.20695874,-0.22056378,-1.176644,0.41875353,0.028167682,0.87981266,0.5781765,-0.12587228,0.17350934,0.70431626,-0.112841144,0.08531757,0.23980297,-0.19578911,-0.5097927,0.5434341,-0.8034231,0.33950052,-0.09473239,0.07182197,0.013683374,0.00809661,0.4471839,0.6455478,-0.1305049,0.06585181,-0.11551307,-0.18553376,0.2148247,-0.4924154,0.24515586,-0.58083165,-0.26567715,0.7719043,0.54385436,0.36758548,-0.067770176,-0.006543662,-0.008047434,-0.092439756,0.112722084,0.059414305,-0.036877666,0.060401924,-0.6519886,-0.18816338,0.5614196,-0.06711644,0.18591945,0.052594792,-0.37764493,0.2444994,-0.25805736,-0.23398979,-0.0044099456,-0.7033367,0.053329997,-0.3000376,-0.27879956,0.44864908,0.048335142,0.28695995,0.19489965,0.07184259,-0.1870056,0.22047962,0.18224187,0.74056536,0.14438042,-0.25985566,-0.4950826,0.17654082,0.25614807,-0.3610335,-0.0009256474,-0.17668726,-0.10398691,-0.66856575,0.42811838,-0.104357064,-0.28466564,0.28549367,-0.17505002,0.04029704,0.68802696,-0.19753551,-0.12091797,0.05125314,-0.2572197,-0.2722351,-0.10088384,-0.071534984,0.29008928,0.20162311,-0.032405846,-0.009429149,-0.07847254,-0.1233034,0.441508,0.12315468,0.32947585,0.3371737,0.04374546,-0.32057914,-0.10109925,0.124723956,0.5257436,0.036258917,-0.14361665,-0.14670287,-0.4112884,-0.38606954,0.074663214,-0.12170297,0.31122366,0.045978326,-0.3887978,0.71213686,0.039310317,1.0822277,0.2082574,-0.25389996,0.13838977,0.5608953,-0.003499789,0.055717833,-0.5209642,0.9099525,0.48552886,-0.09064714,-0.038772207,-0.3435752,-0.090039596,0.37085888,-0.213678,-0.049910817,-0.078014016,-0.80773586,-0.29626665,0.22417453,0.32957605,0.08155363,-0.032947604,0.08181038,0.17004661,0.026138488,0.4123574,-0.60540295,-0.1326388,0.44346806,0.25353575,0.016669432,0.05306379,-0.28701356,0.38628736,-0.5592948,0.004975515,-0.1993902,-0.011028002,-0.33637482,-0.28130823,0.27263024,0.13157064,0.40443844,-0.29148695,-0.44697067,-0.2271827,0.49332008,0.18844049,0.19369711,0.52868515,-0.26260373,-0.039134163,0.12701397,0.5174037,1.1296697,-0.28039506,0.14875484,0.40952176,-0.39709014,-0.5171492,0.45398584,-0.19286117,0.1403465,-0.0041977507,-0.34455207,-0.5715831,0.29002288,0.24325036,-0.13826312,0.17563283,-0.69979125,-0.17241669,0.2070686,-0.25944382,-0.25474587,-0.26823077,0.11943468,0.74258167,-0.38577485,-0.31506062,0.23996043,0.30399033,-0.3613754,-0.60860014,-0.18858555,-0.50398654,0.41069052,0.040154338,-0.4389861,-0.09873917,-0.041906733,-0.41692182,-0.02913265,0.055860903,-0.435687,0.07937329,-0.3975907,0.045981746,0.86705583,-0.005041097,0.18524453,-0.6927243,-0.36554185,-0.9686455,-0.34557822,0.521479,0.24814503,-0.032124784,-0.40024135,-0.02849414,-0.092792764,-0.05450511,0.028014554,-0.5222566,0.42598563,0.14208268,0.4236713,-0.124077305,-0.7683272,0.03703916,0.16600393,-0.09858662,-0.5232851,0.44912523,-0.027323186,0.80155194,0.012373729,0.01693448,0.18851617,-0.64590484,0.012321419,-0.26337197,-0.22439767,-0.66417027,0.1901152,540 -469,0.46070936,-0.19075465,-0.44737095,-0.22102329,-0.18991594,0.0015873994,-0.27012843,0.33230135,0.14434595,-0.7463569,-0.11978583,-0.28784242,0.033184264,0.07789111,-0.26427338,-0.38419458,0.0021051702,0.17211446,-0.53770864,0.64787287,-0.3126753,0.30989757,0.14294727,0.3308633,0.18522072,0.26013198,0.1456444,-0.15375005,-0.09070264,-0.20408764,-0.08587804,0.36335394,-0.549972,0.22521842,-0.15873067,-0.29050106,0.040319365,-0.53125876,-0.34221438,-0.83282334,0.29593387,-1.028884,0.5504218,0.07812268,-0.22407582,0.127721,0.3632248,0.23408826,-0.005970027,0.058686316,0.2484924,-0.1196937,-0.023962319,-0.14499965,-0.21789792,-0.5397487,-0.5463773,-0.038980458,-0.39411947,-0.25093266,-0.47541544,0.12598836,-0.35753986,-0.02094558,-0.089322925,0.6651772,-0.44560024,0.11988122,0.17360224,-0.10276849,0.6296363,-0.5097002,-0.13185583,-0.23807715,0.37115532,-0.35246128,-0.22557423,0.18436949,0.37927008,0.3690446,-0.030010585,-0.124936104,-0.11485613,-0.21885109,0.21360905,0.4806467,-0.010342787,-0.50536495,-0.1238636,-0.0009467261,0.1897175,0.3124682,0.1581382,-0.38578114,-0.11204074,-0.05212199,-0.29674855,0.5937808,0.46666268,-0.26449198,-0.19662812,0.2823273,0.4917175,0.15214992,-0.19744785,0.087739035,0.027864996,-0.6073193,-0.15557657,0.11245848,-0.14479665,0.49604106,-0.20252459,0.33299485,0.68594646,-0.17619804,-0.08880835,-0.0093736565,0.032994848,-0.24534146,-0.20114551,-0.26099062,0.23637894,-0.4973693,0.16014624,-0.120479636,0.7733072,0.064822756,-0.6749433,0.2168806,-0.69757175,0.02950255,-0.14289232,0.48617974,0.6131758,0.4116594,0.41195112,0.65505993,-0.4102704,-0.04515322,-0.07796453,-0.46002966,-0.08725158,-0.24615279,-0.0048888326,-0.4896164,-0.033595104,-0.07437853,-0.039319776,-0.10894464,0.45025247,-0.53845483,-0.049883973,0.06712138,0.8421885,-0.3413071,-0.031344812,0.70331234,0.80885315,0.9551035,0.17095795,1.0570896,0.18874943,-0.25331283,0.12165881,-0.13882415,-0.71429247,0.48166603,0.48163393,-0.20279762,0.16102542,0.12713917,0.08562336,0.2823698,-0.48783943,-0.056219798,-0.25558394,0.103275195,0.08536389,-0.16563939,-0.38946792,-0.1830773,0.008649264,0.04586635,0.19290476,0.037681498,-0.17105304,0.39579266,0.15402003,1.4801512,-0.22009026,0.14981076,0.16714922,0.37490946,0.25946468,-0.1153657,-0.112266876,0.38525146,0.3684321,0.33745456,-0.5315021,0.10863508,-0.18471263,-0.36036688,-0.13739152,-0.3786123,-0.029613184,-0.05173077,-0.5152,-0.12678318,-0.193276,-0.38618717,0.33388934,-2.5909514,-0.22558078,-0.22466834,0.38326263,-0.23080046,-0.18550666,-0.12208356,-0.4429172,0.47326994,0.27961856,0.49335125,-0.60449374,0.30533132,0.50919586,-0.43608353,-0.16928218,-0.6028274,-0.1879036,-0.12595643,0.2656,0.019482514,-0.01656809,-0.0012611406,0.21405147,0.45292228,-0.068205245,0.12508318,0.2520345,0.5553151,0.0042225486,0.7276955,-0.07788719,0.41902187,-0.15155695,-0.24290243,0.3018952,-0.24169837,0.12847464,-0.07113643,0.119613506,0.6010265,-0.5178853,-0.7848158,-0.7785476,-0.48739418,1.1482166,-0.2500204,-0.4429132,0.15924338,-0.2920423,-0.4009774,-0.023941722,0.5565399,-0.14512838,0.105771266,-0.8993251,0.029347632,-0.14451313,0.30722946,0.053318582,-0.06975235,-0.51735973,0.68899286,0.027767641,0.55971247,0.31596655,0.11791329,-0.45909443,-0.5209578,0.034780294,1.046466,0.30813095,0.09339379,-0.30463403,-0.13909325,-0.29340306,0.15775199,0.05444341,0.5541713,0.5889679,-0.037268996,0.25652987,0.27391347,0.08989757,0.044307504,-0.17458291,-0.22218286,-0.16260271,-0.16776207,0.57247037,0.466978,-0.10966221,0.44751713,-0.14564261,0.3586259,-0.20291568,-0.42288256,0.5055782,1.2499007,-0.13301584,-0.34105065,0.7684523,0.50043195,-0.24360763,0.36104298,-0.5570567,-0.2734981,0.5126963,-0.26081342,-0.58967274,0.21822047,-0.34257942,0.17902468,-0.9283904,0.32699987,-0.26552996,-0.51311284,-0.5125806,-0.07960071,-3.4321027,0.23914878,-0.12986258,-0.2575005,-0.19010891,-0.20743951,0.24830219,-0.5392637,-0.6366302,0.19423877,-0.032425847,0.83358943,-0.14054379,0.048233297,-0.16697825,-0.32857245,-0.15649213,0.13278653,0.14537606,0.25255585,-0.036396574,-0.43987986,-0.029103573,-0.090749666,-0.49892673,0.017623423,-0.45461348,-0.51091546,-0.076075755,-0.51812255,-0.4448507,0.6432592,-0.23551203,0.087448426,-0.15949766,-0.033112515,-0.036848713,0.3756364,0.047209147,0.32449144,-0.04230138,0.020417849,-0.13356413,-0.24061169,0.32427257,0.0670976,0.015003903,0.21353279,-0.23352115,0.24960926,0.43499878,0.51785964,-0.06579567,1.0368136,0.47894213,0.011037922,0.23129804,-0.22907844,-0.4125362,-0.622796,-0.23474357,0.11774964,-0.42655092,-0.49279505,-0.06569909,-0.22398531,-0.67885256,0.66230166,-0.031651232,0.17035246,-0.08142527,0.31023124,0.3813313,-0.18471913,-0.07762623,0.039807446,-0.21916984,-0.48525223,-0.17777275,-0.5485196,-0.41137686,-0.07601182,0.9336225,-0.19453035,0.11318209,-0.02832058,-0.122351594,0.038227003,0.1325377,0.039903786,0.29213238,0.51638305,-0.07301862,-0.7763921,0.48883197,-0.1660401,-0.18546076,-0.5671962,0.1734333,0.8388263,-0.6847497,0.5102927,0.40660954,-0.0517107,-0.4456469,-0.49965903,-0.22046028,0.0019476755,-0.34959173,0.41901827,0.24845171,-0.81228954,0.40779802,0.32454687,-0.06295215,-0.75970954,0.6901831,0.018238416,-0.34775713,0.14377023,0.4325829,0.032325026,0.07796095,-0.25668186,0.29284135,-0.29974207,0.22098766,0.19563672,-0.0648913,0.21399538,-0.19010046,0.034706473,-0.7697268,-0.037591957,-0.5491894,-0.31475472,0.3490599,0.037778,0.05101455,0.46392304,-0.10232393,0.4018932,-0.22925816,0.06938108,-0.16865978,-0.14809974,0.24919094,0.3920626,0.40035793,-0.39507386,0.65785754,0.10974187,-0.11931438,-0.113751315,0.1717714,0.46299663,0.048796397,0.5087224,-0.09508143,-0.27350232,0.38943225,0.8624183,0.1423827,0.5347348,0.14194383,-0.0536997,0.23528273,0.16231439,0.32791567,-0.07951302,-0.6031208,-0.058053337,-0.3923474,0.07441368,0.47770327,0.048844926,0.23132399,-0.13059933,-0.41816407,0.030966401,0.23898955,0.09413675,-1.2559927,0.35984167,0.2595108,0.744174,0.46782997,-0.0075600552,0.049007952,0.7169825,-0.14282045,0.08070064,0.29073793,0.0925296,-0.40089175,0.52468437,-0.7008137,0.30241945,-0.067515425,-0.08413851,-0.051279243,-0.10106256,0.3594549,0.8611022,-0.16988352,0.13233604,0.015742056,-0.23080035,0.4026546,-0.51407105,-5.264793e-05,-0.45380408,-0.33536768,0.5733825,0.529895,0.3663888,-0.21156211,0.117030226,0.051326316,-0.16708292,0.08588327,0.19162926,0.037591882,-0.092968,-0.70663023,0.008580208,0.5461823,0.21663283,0.16583297,-0.03787783,-0.17531323,0.25538927,-0.07071145,0.11272343,-0.12031497,-0.7572866,-0.18720445,-0.3325358,-0.429499,0.40114993,-0.2503269,0.2566074,0.23443747,0.059800297,-0.1264852,0.3145152,0.23621416,0.60686386,0.16139923,-0.13439113,-0.38251457,0.18234482,0.11878472,-0.23737358,-0.123354636,-0.37256053,0.1547385,-0.6624637,0.36598486,0.027507534,-0.45193774,0.17730989,-0.049674876,-0.03186258,0.62980705,-0.06281131,-0.12860267,0.014846512,-0.19902705,-0.15507376,-0.19779982,-0.04519147,0.24927227,0.13636352,0.043141466,-0.18801682,-0.0145301325,-0.32639986,0.34152898,0.061907716,0.6037415,0.42025205,0.11670057,-0.1502659,-0.011956432,0.10683049,0.5400249,-0.013241397,-0.14530008,-0.1548544,-0.48154134,-0.2594365,0.088286914,0.04838689,0.31253046,0.16336298,-0.18669772,0.8005972,-0.07325376,0.92095226,0.021953242,-0.43839216,0.042591717,0.42367622,-0.043005444,-0.13353518,-0.31555352,0.8194839,0.46151283,-0.041968025,-0.13088836,-0.23536791,0.021256091,0.0048753535,-0.17959738,-0.14092557,-0.02579473,-0.6667247,-0.3353205,0.173241,0.2885186,0.13005841,-0.101235114,0.00016155413,0.30530658,-0.09969431,0.33664083,-0.51418364,-0.09137595,0.23382904,0.3377781,-0.05998562,0.06126448,-0.4232562,0.4944888,-0.4309192,0.11501817,-0.36818442,0.2563955,-0.29411554,-0.19211249,0.25782114,-0.059780873,0.40796188,-0.3078077,-0.28905058,-0.22172871,0.44885603,0.09244267,0.110765405,0.52898103,-0.22205839,0.15159278,0.1038411,0.5700578,1.020898,-0.19524479,0.095352374,0.42639518,-0.40582004,-0.56230813,0.30500504,-0.34849748,0.10249252,0.143185,-0.17693904,-0.26353168,0.18907015,0.18245338,0.1451822,-0.059424873,-0.628188,-0.20748027,0.44355896,-0.24674447,-0.15552095,-0.23067543,0.061669465,0.40281466,-0.21570112,-0.28005642,0.0012918072,0.17029865,-0.23799971,-0.6563713,-0.22415839,-0.34234914,0.36514035,0.108976856,-0.32298613,-0.10941016,-0.016548842,-0.5107885,0.19147067,0.08505658,-0.34292814,-0.024192136,-0.30471244,-0.19129749,0.98382384,-0.2922385,-0.16485927,-0.37348786,-0.46817106,-0.8013772,-0.22793637,0.4981139,0.0883111,0.15304056,-0.39010695,-0.037714157,-0.09818648,-0.06701531,-0.059879035,-0.30787128,0.3680577,0.17418239,0.6000972,-0.10076071,-0.8848596,0.1262537,0.020700326,-0.24095045,-0.62617916,0.6362471,0.008905726,0.64895695,0.034239825,0.12271856,0.33340353,-0.42981243,-0.122130975,-0.11079568,-0.13422522,-0.8026416,-0.023888567,541 -470,0.51568323,-0.2674424,-0.38963905,-0.101524904,-0.118014805,0.09241285,-0.0015864457,0.3375191,0.26705712,-0.2737455,-0.08297624,-0.16346404,0.025960108,0.27623987,-0.17072947,-0.8083639,-0.037483923,0.123640485,-0.3263637,0.42308024,-0.37784904,0.34544924,-0.07603365,0.23208325,-0.09907281,0.32714692,0.25112623,-0.29099995,-0.013130145,0.0019552857,-0.19526227,0.16383699,-0.60430086,0.021226197,-0.0020345193,-0.18841097,0.21000752,-0.35345054,-0.2332803,-0.63018167,0.3379211,-0.7633683,0.39286858,0.14706846,-0.09884382,0.30216202,-0.19223757,0.26311168,-0.31120515,0.05585184,0.047737896,-0.07144358,-0.019898316,-0.18275991,-0.13051543,-0.37274057,-0.48406228,0.028127978,-0.32176128,-0.18899354,-0.16111241,0.041528992,-0.297456,-0.10957297,0.06032764,0.24096592,-0.46627048,0.050600078,0.33421153,-0.17035381,0.25618455,-0.40059265,0.024879022,-0.097407155,0.34315267,-0.25641784,-0.16878045,0.22826442,0.44325835,0.3940112,-0.08145278,-0.1459633,-0.21784171,-0.08635575,0.19549678,0.5300181,-0.12922364,-0.5816822,-0.1234162,-0.021094492,-0.028785374,0.16751547,0.020076016,-0.36501098,-0.12431042,0.1068346,-0.27940556,0.27746886,0.44003874,-0.41382048,-0.31760964,0.3997321,0.6428029,0.13052307,-0.037689645,-0.029313995,0.1738118,-0.49746588,-0.18615505,0.23775665,-0.28774303,0.61603105,-0.18406709,0.2248695,0.6405425,-0.35973138,0.20151745,-0.06325697,0.019265512,-0.20486614,-0.14049332,-0.12867878,0.29231492,-0.47070804,0.14847526,-0.22325647,0.90250885,0.34255102,-0.6830158,0.47097495,-0.50742304,0.17281236,-0.20725104,0.56791145,0.63718647,0.24622223,0.17743602,0.73827946,-0.6321686,0.053674288,-0.107192025,-0.5172413,0.14630751,-0.06409539,-0.1962444,-0.42440027,0.07876384,0.15118659,-0.050079104,0.07618432,0.033282883,-0.5835019,-0.043731757,-0.021716604,0.7989453,-0.3093808,-0.03842282,0.4396043,0.8500537,0.7292576,0.08877695,1.2998568,0.32486406,-0.34841195,0.22457579,-0.3519916,-0.8763793,0.1795298,0.37426096,-0.39093986,0.2971129,0.13367887,-0.08557142,0.32335573,-0.3197483,0.019106904,-0.22156502,0.3497918,0.02358016,-0.035291784,-0.32084513,-0.17242952,-0.076307885,0.026922744,0.20706545,0.27999836,-0.18735263,0.24025975,0.22609894,1.6920542,-0.071257696,0.2063636,-0.010559755,0.4286614,0.23226693,0.04800723,-0.1899121,0.40474734,0.4008099,0.21555343,-0.63175136,0.1119685,-0.1926204,-0.50190645,-0.10098672,-0.1936507,0.014248759,0.13513419,-0.24638236,-0.08533596,-0.06094462,-0.08696639,0.6604367,-2.6592064,-0.16641323,-0.19326143,0.37690592,-0.39631358,-0.352025,-0.11299207,-0.51146954,0.25621584,0.33987805,0.3865704,-0.80152035,0.17609453,0.36738768,-0.4635234,-0.20163603,-0.59029925,-0.11080301,-0.032453798,0.30243784,0.06509818,-0.053298257,-0.016786452,0.11239966,0.30501264,0.063389756,0.012759618,0.18129984,0.41565377,0.27638173,0.32972902,0.018102573,0.49704382,-0.12030617,-0.104883365,0.20953846,-0.24739827,0.48891982,-0.11624866,0.1302023,0.2609017,-0.34398818,-0.81280524,-0.74153507,-0.42519385,1.194133,-0.24803059,-0.36525688,0.14178917,-0.037176576,-0.16534296,-0.2191684,0.4205308,-0.12684244,-0.1628094,-0.8014436,0.18176362,-0.083103135,0.26161534,0.13746315,-0.0445191,-0.28872514,0.6424042,-0.110802375,0.3666079,0.333951,0.1482207,-0.008987563,-0.521475,0.02005182,0.89384973,0.2576986,0.17516662,-0.14440596,-0.11220901,-0.34875712,-0.042619742,0.052152928,0.3734817,0.8119596,-0.03505372,-0.116010725,0.37763402,0.08409149,0.06701321,-0.09803694,-0.28451782,-0.060512338,-0.25343746,0.5021587,0.6002387,-0.39597878,0.31111187,-0.013894683,0.17654128,-0.14254029,-0.33667582,0.73203224,0.9799171,-0.18605646,-0.0727613,0.46163034,0.33769602,-0.46944332,0.3086372,-0.6998784,-0.1158335,0.51621383,-0.15858619,-0.36660808,0.14742303,-0.31714985,0.12855771,-0.8131651,0.3502226,-0.12932628,-0.07904802,-0.48664555,-0.034486473,-3.7010481,0.2715206,-0.24371007,-0.09232955,-0.15242028,0.05819788,0.221579,-0.61762667,-0.47184733,0.35467482,0.01612806,0.5346699,-0.0066451197,0.2489827,-0.31851768,-0.2141908,-0.40200514,0.0036273429,0.10491353,0.21934983,0.021905115,-0.3974072,0.050924875,-0.17835389,-0.2724535,0.23861173,-0.39717227,-0.467886,-0.14252672,-0.44430476,-0.30482382,0.7032653,-0.43998143,0.07164502,-0.23068886,0.016489347,-0.26080674,0.30255753,0.050719433,0.026786625,-0.118037425,0.07243546,-0.07991849,-0.3314788,0.4326641,0.056959014,0.20131257,0.24404632,-0.14411448,0.015735183,0.51915485,0.65104806,0.051762037,0.69516885,0.41931105,-0.11386383,0.29918113,-0.2901279,-0.10846947,-0.4321501,-0.38544145,-0.07728305,-0.38666183,-0.48847595,-0.16924174,-0.33379784,-0.6286513,0.42240328,0.003920172,0.14514913,-0.012142627,0.2686855,0.51996005,-0.24208105,0.12752098,0.0762856,-0.14990725,-0.6135988,-0.22372939,-0.5512685,-0.21391544,0.45054218,0.78341764,-0.3475761,-0.16298553,-0.023787903,-0.19290686,-0.025038991,0.041400485,-0.028866012,0.18202294,0.30495828,-0.19010016,-0.6151823,0.57872295,-0.08580029,-0.25188664,-0.71354496,0.038617726,0.53370416,-0.7708327,0.5005287,0.34782505,-0.027748445,0.20353971,-0.38525528,-0.3109341,0.060038473,-0.3127444,0.2088971,0.12849902,-0.60102886,0.29951388,0.3976782,-0.18725345,-0.61479825,0.5509848,0.016378125,-0.29953668,-0.004340949,0.35286894,0.24385493,0.048936166,-0.12447716,0.13810113,-0.46850938,0.10767969,0.35567078,-0.07285981,0.4382711,-0.078805745,-0.026943717,-0.7994413,0.018669413,-0.53986603,-0.1611854,0.21651459,0.1029992,0.093509056,0.04971854,0.23252876,0.42285585,-0.40428463,0.050992332,0.16221943,-0.13110706,0.30802208,0.33213946,0.34726575,-0.37157372,0.54092276,-0.024847584,-0.0073313927,0.041767474,0.1047293,0.47571626,0.25944316,0.25859728,0.15692422,-0.26077744,0.29837936,0.8006088,0.13420317,0.3916826,0.011306771,-0.07290652,0.33117953,0.24504313,0.077145256,0.26988357,-0.4665483,-0.12235492,0.08251437,0.13963965,0.5123952,0.25474268,0.34951606,-0.13411827,-0.28517863,0.002750069,0.16145894,0.006222908,-1.0207411,0.23619436,0.24176274,0.6579806,0.39658743,-0.07405118,0.076133505,0.34279054,-0.1796962,0.24294178,0.35092688,-0.112593494,-0.56090504,0.49031025,-0.62273943,0.34151396,-0.0851091,0.046266735,0.042259395,-0.074723735,0.17715219,0.84932816,-0.08842609,0.00010552151,-0.16965567,-0.27998644,0.10395197,-0.39735144,0.0630849,-0.59245354,-0.2560026,0.5573951,0.49281248,0.37788078,-0.17245825,0.037470575,0.009386854,-0.0892421,0.12056724,-0.102498576,0.1835911,0.10572393,-0.68002087,-0.2993164,0.59812194,-0.120242305,-0.013643137,-0.21440932,-0.17688973,0.27815557,-0.23814689,-0.10281285,-0.074621566,-0.68858296,0.031551667,-0.11405829,-0.47413325,0.46332914,0.04592875,0.20785515,0.18873072,0.071696766,-0.37055284,0.37825212,0.17287104,0.77964294,-0.08781387,-0.22510158,-0.69447106,0.23086669,0.24997686,-0.14267494,-0.041450433,-0.25856024,-0.005453604,-0.4693105,0.44591472,0.057123307,-0.11349409,-0.011207036,-0.2936439,-0.007698402,0.60271806,-0.2854319,-0.20757703,0.01658082,-0.22297192,-0.27598125,-0.1430695,-0.23373199,0.21235396,0.3475078,-0.03993268,-0.06558777,-0.22618021,-0.24935268,0.3288305,0.18366113,0.18198964,0.41333872,0.09575007,-0.24750592,-0.3630043,0.110984154,0.31750014,-0.18949951,-0.21194272,-0.3752547,-0.6614006,-0.3103731,0.030865695,-0.11034404,0.34770563,0.04483521,-0.24926038,0.5575182,0.028272403,1.0636145,0.12908855,-0.23559897,-0.045020778,0.5529898,0.04417502,-0.03417152,-0.42622146,0.93286073,0.5025278,-0.17228699,-0.2073694,-0.2536076,-0.17332435,0.14184023,-0.19783816,0.12674752,0.065393366,-0.73519856,-0.36195877,0.24483828,0.21561602,0.12208898,0.09055551,-0.022238161,0.084375344,0.14296699,0.41702494,-0.50471354,-0.2601127,0.23639403,0.21501262,0.18360053,0.27692667,-0.21517162,0.48314548,-0.39589623,0.016479015,-0.36160707,0.18575104,-0.19339553,-0.24250937,0.17590424,0.06764383,0.42579156,-0.34475204,-0.5468681,-0.25077948,0.4550435,0.20175031,0.15460436,0.5382799,-0.1932037,0.0038465688,0.017492592,0.55945134,0.99932915,-0.11580886,-0.011035462,0.5048159,-0.38570762,-0.59346473,0.19941917,-0.29468325,0.19841042,-0.071028754,-0.13144697,-0.62589127,0.30731383,0.20118788,0.078037724,0.11782757,-0.68679196,-0.31394482,0.24682817,-0.4455438,-0.22697568,-0.2879303,0.3381768,0.84521854,-0.39286375,-0.2783049,0.09340318,0.2070028,-0.15639997,-0.5169321,-0.21719684,-0.39916542,0.33674297,0.21219052,-0.2975793,-0.14427991,0.103346534,-0.37039572,0.21010546,0.14517106,-0.36284113,0.14304115,-0.22732762,0.05508756,0.8669445,-0.15553491,0.03718389,-0.6558679,-0.3662848,-0.823505,-0.4225656,0.5319678,0.14217289,0.08809978,-0.460499,0.09649592,0.009423473,0.039121162,-0.12505394,-0.38292128,0.49980202,0.14076522,0.34827238,0.025522564,-0.8249292,-0.11643256,0.03393365,-0.21643913,-0.6013864,0.51613563,-0.119953506,0.80022043,0.057217818,-0.011767368,0.37033367,-0.4341159,-0.107401155,-0.36626515,-0.21539056,-0.7660518,0.15987955,547 -471,0.30875817,-0.31982443,-0.50262606,-0.17107148,-0.17111687,0.10202718,-0.124803536,0.42721042,0.13809742,-0.4927179,-0.073740244,-0.18806301,0.022218456,0.1367421,-0.13128221,-0.4299131,-0.12094506,0.14543805,-0.5777926,0.50783765,-0.3187925,0.09323556,-0.10867474,0.310299,0.16631658,0.34396204,-0.11494126,-0.11403109,-0.1019107,-0.033471633,0.030735109,0.3512536,-0.6509897,0.22670303,-0.05535348,-0.18411948,0.051076118,-0.49780035,-0.50481135,-0.7258393,0.39580607,-0.9013811,0.5358705,0.13133694,-0.16118181,0.3215247,0.12038396,0.34842965,-0.27611533,-0.10547737,0.29409933,-0.18236296,-0.07000028,-0.25601903,0.11486639,-0.31474692,-0.49054766,-0.011470703,-0.39895663,-0.3827731,-0.3221427,0.14955345,-0.35412127,-0.1848785,-0.13127455,0.7992834,-0.460887,0.159571,0.20590737,-0.20858887,0.4144197,-0.64718246,-0.13120957,-0.052373935,0.40471736,-0.26403934,-0.2652451,0.31052324,0.30649948,0.27271408,-0.018448949,-0.18930969,-0.23964259,0.01576577,0.29828882,0.39731073,-0.16970359,-0.5059225,-0.010186568,0.06377875,-0.17109013,0.12483476,0.12303661,-0.42609975,-0.1217907,0.17669296,-0.14699593,0.42773703,0.5475913,-0.14682774,-0.21793151,0.35167545,0.581304,0.1854759,-0.010212285,0.022837268,0.062797114,-0.47010064,-0.23974656,0.0807277,-0.22214173,0.4796255,-0.2013717,0.17859736,0.71812165,-0.17283395,-0.09690865,0.11784321,0.07754888,0.038948417,-0.32842,-0.2776852,0.2737865,-0.44526443,0.177844,-0.11226697,0.59862053,0.20910628,-0.6817195,0.25257373,-0.4989302,0.19570984,-0.06064058,0.49109176,0.6905862,0.5766963,0.41413808,0.65862805,-0.5425482,0.12353051,-0.0123291975,-0.40107885,0.115219064,-0.28336987,-0.03785305,-0.5952496,-0.038752895,-0.14690728,-0.044051316,-0.05129098,0.12712203,-0.52802217,0.02921938,0.1159702,0.897282,-0.2659799,0.010161653,0.6864279,0.88925844,0.9010662,0.08997548,1.0132214,0.16463096,-0.34231743,0.39226553,-0.1619672,-0.7658666,0.32141414,0.36647388,0.2576507,0.10405155,0.14340773,0.064476855,0.5535034,-0.5633596,0.10897901,-0.21343371,0.26578426,0.23228168,-0.21660236,-0.34665203,-0.13128941,-0.1450247,-0.0268487,-0.15009773,0.14650556,-0.16345404,0.3502153,0.14303407,1.7337452,-0.022526069,0.084525295,0.027411535,0.4636797,0.1089476,-0.12052013,-0.070883475,0.5251408,0.30827922,0.307756,-0.6565892,0.14287034,-0.093242414,-0.47936395,-0.13047884,-0.3817045,-0.04653847,-0.071592584,-0.4706857,-0.25553444,-0.18941642,-0.2027893,0.41366524,-2.8154237,-0.06752796,-0.061074786,0.4484914,-0.24672388,-0.35248327,0.0820275,-0.43045053,0.3145654,0.3002201,0.46254316,-0.65518224,0.34791797,0.3692817,-0.6803737,-0.04837806,-0.5551178,-0.11405944,-0.11242322,0.37340617,0.019925723,0.027968619,0.10921068,0.03606754,0.46598586,-0.17471208,0.15845494,0.33176002,0.4208955,-0.009276067,0.6682091,-0.06290591,0.4640757,-0.2909508,-0.19878875,0.23894587,-0.363547,0.13467352,-0.04323066,0.03264668,0.44246894,-0.49009943,-0.8724774,-0.7880369,-0.17864569,1.0812868,-0.28812045,-0.43331861,0.34542444,-0.6303504,-0.16561112,-0.1581011,0.46681514,-0.0012639835,0.032659505,-0.80877155,0.10694974,-0.12197248,0.11944078,0.052141182,-0.13975775,-0.49696127,0.76735383,-0.031755794,0.5381169,0.33309892,0.04960799,-0.39781502,-0.50659955,0.0736627,0.7677153,0.32917714,0.18677017,-0.13407384,-0.19357629,-0.16306125,-0.12393583,0.07674115,0.66376895,0.6220914,-0.04319539,0.19072689,0.27624688,-0.118283086,0.07338763,-0.23523216,-0.35176426,-0.15046866,0.039805464,0.5455079,0.5667876,-0.19129166,0.39987674,-0.060315665,0.23560587,-0.029085146,-0.38710123,0.4794212,1.1287817,-0.106387995,-0.306014,0.4633972,0.461263,-0.32407537,0.32923433,-0.522147,-0.1725374,0.56308764,-0.31667447,-0.581205,0.14823686,-0.28410387,0.12414096,-0.78759444,0.29647207,-0.34731865,-0.5859322,-0.5579714,-0.053389568,-3.5300632,0.11258374,-0.348662,-0.15659143,-0.12836877,-0.09956469,0.112104245,-0.5315159,-0.45324877,0.26049253,0.03693018,0.6601804,-0.122835256,0.11533991,-0.21687038,-0.1879782,-0.17890398,0.16529377,0.15395106,0.2197221,-0.038766127,-0.44471693,-0.056580134,0.0028939843,-0.37684456,0.105158195,-0.5436153,-0.3666672,-0.16365735,-0.5714266,-0.38592204,0.58426434,-0.19527078,0.019183097,-0.0055399365,0.026711373,-0.19266526,0.2870099,0.12733756,0.30422166,-0.022236211,-0.036960874,-0.06844868,-0.25930825,0.2912329,0.023769064,0.2775992,0.20492856,-0.10956427,0.23734276,0.4817584,0.6972732,-0.11626311,0.9674097,0.5630831,-0.15436438,0.39878646,-0.30301914,-0.3596177,-0.55136067,-0.33664903,0.07169919,-0.3881862,-0.46108887,0.115326636,-0.44244787,-0.6656469,0.5343963,0.10273309,0.13225333,0.13797602,0.25307363,0.54089683,-0.2066226,-0.07784552,-0.071442835,-0.19318111,-0.6474268,-0.17942905,-0.5913452,-0.52459127,0.07529771,0.80212206,-0.1911455,-0.004086117,0.045822535,-0.2934049,0.015015007,0.29374558,-0.12656489,0.33731747,0.503986,-0.09475587,-0.6798615,0.536729,-0.07793922,-0.2537482,-0.6133485,0.39776424,0.51071817,-0.68529713,0.82661295,0.2764551,-0.012355427,-0.26406333,-0.3541581,-0.31732932,-0.08908571,-0.35036105,0.4443082,0.2055114,-0.8924207,0.3881398,0.4781282,-0.3199942,-0.81310517,0.6116831,-0.118541665,-0.21760656,0.1294611,0.31061798,0.1382185,0.0069505787,-0.17096595,0.22885774,-0.46488646,0.26008913,0.14392321,-0.09734026,0.17239991,-0.15905987,-0.12046533,-0.8005754,-0.058980707,-0.5243898,-0.27528265,0.3807213,0.05166643,0.15990745,0.2307113,0.13412751,0.44460696,-0.108118095,-0.0018767224,-0.05498302,-0.369564,0.24733648,0.43650237,0.37137318,-0.45767114,0.54551905,-0.017698612,-0.03959608,-0.080656305,0.17438519,0.39296103,0.18262546,0.54598796,-0.0046650767,-0.20504034,0.28373274,1.0322254,0.22520924,0.63812774,0.027961688,-0.017573697,0.28561908,0.097398415,0.23695843,0.020411888,-0.708809,0.30208698,-0.20489593,0.16997002,0.4762937,0.10377072,0.30952767,-0.18763556,-0.35365137,-0.03251515,0.42985812,0.1298609,-1.1744442,0.45474234,0.2373346,0.9701737,0.5387354,0.048491944,-0.032310586,0.74501044,-0.1554576,0.028270055,0.3183048,-0.15455164,-0.5528809,0.5067707,-0.8671566,0.39166594,0.029493583,-0.028431445,0.039650016,0.045507066,0.343088,0.6105023,-0.15314369,-0.05052952,-0.026339035,-0.37547782,0.3410129,-0.48208794,-0.0045297616,-0.43943042,-0.3060777,0.52923524,0.68156713,0.33313683,-0.13844767,0.024127241,0.053008746,-0.18632977,0.2831497,0.098324895,-0.03562986,0.06651957,-0.764349,-0.1594021,0.54421586,-0.07395883,0.19777285,-0.036932748,-0.19737853,0.39057806,-0.22753558,-0.08805324,-0.1012771,-0.662844,0.21808188,-0.39013702,-0.49272153,0.6174328,-0.019394372,0.23084164,0.30392203,0.05536103,-0.32143563,0.48292357,-0.11285017,0.81123346,0.012033678,-0.142527,-0.55641454,0.022897022,0.13402386,-0.14111789,0.04239967,-0.4099335,0.035110217,-0.5320586,0.51778823,0.04688664,-0.31422907,0.13085511,-0.18498622,0.03199542,0.6736613,-0.2351558,-0.12802288,-0.007850911,-0.23157826,-0.22394302,-0.36675328,-0.14983419,0.27569455,0.078061104,0.25259873,-0.18470736,-0.09741773,-0.13553298,0.57085127,0.036830287,0.518928,0.2883673,-0.018728767,-0.29200095,-0.2298274,0.24389179,0.47693262,-0.059201233,-0.11315244,-0.19886371,-0.45242754,-0.33554557,-0.0860163,0.031050546,0.4981421,-0.04714032,-0.1745491,0.7316157,-0.21714924,1.1851661,0.057695184,-0.4025865,0.20354983,0.45014757,0.0041064,-0.0063948375,-0.39834663,0.71514654,0.4856205,0.075232625,-0.0150696505,-0.35348624,-0.04292364,0.15169954,-0.15113628,-0.064939044,-0.0009967664,-0.6584118,-0.25222608,0.18215795,0.23774667,0.29725805,-0.067215964,0.010666992,0.14587508,-0.06685887,0.15416436,-0.4748513,-0.25027683,0.26238075,0.23398706,0.0017994003,-0.03057514,-0.48122096,0.51100415,-0.39953837,0.11126824,-0.22947593,0.17223103,-0.28905937,-0.2078058,0.21353947,-0.062809125,0.36635903,-0.21600378,-0.29012758,-0.12382008,0.5279769,0.18487048,0.13960455,0.56075555,-0.20080653,0.056047954,0.08618599,0.5584715,0.69037247,-0.31822035,-0.09563104,0.34311262,-0.52909696,-0.6115409,0.4806995,-0.25164863,0.13120583,0.14493802,-0.08286856,-0.4056389,0.14373194,0.26632398,-0.02613618,-0.08209114,-0.8047238,-0.27377447,0.3282223,-0.48243567,-0.19133233,-0.17702611,0.23987661,0.68307745,-0.33707312,-0.23045108,0.092034176,0.19178514,-0.19071224,-0.3427262,-0.02572762,-0.45403472,0.33038434,-0.13896063,-0.3961375,-0.17198041,0.11057686,-0.46025616,0.20733579,0.030352166,-0.35105258,-0.008709957,-0.23934126,-0.10270449,0.9222396,-0.20231405,0.14764452,-0.49186987,-0.41866454,-0.8745972,-0.16231643,0.4633163,0.027254691,0.13410607,-0.6244697,-0.019556986,0.0058480203,-0.15331466,-0.17620002,-0.5004891,0.4629589,-0.017745646,0.3985291,-0.092951454,-0.7546377,0.28901234,0.22900318,-0.14546137,-0.6430756,0.5599118,-0.14215484,0.8540684,-0.05051748,0.14258854,0.21462353,-0.4071266,-0.11241384,-0.22760336,-0.2808972,-0.6996389,-0.09388385,548 -472,0.373612,-0.15696748,-0.3170803,-0.0904883,-0.18496956,0.11349816,-0.15783235,0.2843292,0.18354747,-0.5697309,-0.15715663,-0.21571036,0.08382939,0.07455737,-0.21695317,-0.39157706,0.068053834,0.14912601,-0.5601665,0.5342973,-0.41007942,0.2929494,0.17837922,0.27829248,0.2681772,0.13966395,0.13149966,-0.18083988,-0.26543874,-0.19839826,-0.14436814,0.19725612,-0.6725235,0.23682284,-0.2553285,-0.47400883,-0.09367097,-0.2529672,-0.4087213,-0.73272836,0.25560635,-0.98990923,0.45676008,-0.0014438672,-0.16991211,0.30628103,0.022465173,0.18279971,-0.3384262,0.048345156,0.29704785,-0.28658465,-0.123946846,-0.13294782,-0.1909902,-0.43713814,-0.50221103,0.07501849,-0.38782692,-0.14039521,-0.53588057,0.17999408,-0.24728398,-0.11842406,-0.11850227,0.42961496,-0.5490819,0.119214095,-0.13916375,-0.055117916,0.24056947,-0.59320456,-0.25150973,-0.11643864,0.27717948,-0.32340476,-0.18655273,0.2654956,0.2883094,0.43423897,-0.0010341427,-0.106798396,-0.40015134,0.05166081,0.19303103,0.42410618,0.03822956,-0.53006566,-0.23173311,-0.17212038,0.15206112,0.016897324,0.22388425,-0.20701455,-0.1677446,0.10453491,-0.40497616,0.43235794,0.6036582,-0.40282068,-0.15896344,0.44530222,0.38633165,0.14806427,-0.14737962,-0.0019289723,-0.024597036,-0.43279308,-0.14480735,0.21098247,-0.31266123,0.7575265,-0.23003353,0.34812334,0.64174926,-0.25203326,0.023101857,0.21902661,0.12901907,-0.20124647,-0.051880676,-0.26490003,0.2547262,-0.55279607,0.09978207,-0.3163603,0.8082611,0.17434128,-0.5783189,0.3665092,-0.3753849,0.0814751,-0.13532422,0.5229668,0.56152165,0.4984868,0.38249436,0.7288146,-0.5668109,-0.11252538,-0.12961534,-0.37756422,-0.059115477,-0.2377212,0.00432212,-0.36333913,-0.07357514,0.0007525938,0.012515025,-0.058528494,0.4923134,-0.35851958,-0.11399924,0.14570141,0.76644486,-0.28971997,-0.15139662,0.8999683,1.1115106,0.99030447,0.12115395,1.0616821,0.27431244,-0.36019227,-0.015512343,-0.17297284,-0.70989865,0.2625859,0.30943248,0.34488073,-0.017632058,0.24479055,0.019692926,0.21332386,-0.55218786,0.058584716,-0.25217813,0.09128384,0.078138895,-0.0031336653,-0.31299302,-0.2954762,-0.04989153,0.014163665,0.08336009,0.19039711,-0.19226725,0.4839111,0.12252658,1.4513662,-0.002254801,-0.0044464385,-0.062164493,0.6818995,0.12900816,-0.023545295,-0.0018000092,0.25494406,0.3447041,0.0694732,-0.61914885,0.006526883,-0.23029445,-0.61592954,-0.12014258,-0.31995264,-0.16791104,-0.047557943,-0.48624343,-0.1790153,0.062318377,-0.46105045,0.41301367,-2.732553,-0.18511936,-0.050472137,0.46153095,-0.19581853,-0.17984973,-0.094511986,-0.6261372,0.5467256,0.27593315,0.54287964,-0.8007635,0.50744355,0.521713,-0.3989964,-0.2431878,-0.6534068,-0.14410914,-0.089862175,0.3668202,0.07567023,-0.06765306,-0.012747415,-0.07557608,0.546966,-0.074287675,0.22810163,0.2849525,0.372758,0.009346387,0.42228362,0.07436206,0.545982,-0.37809148,-0.043427013,0.25866884,-0.34458998,0.298721,-0.13592957,0.13491002,0.58566093,-0.5200429,-0.8048037,-0.71615946,-0.2285182,1.1509696,-0.17521127,-0.5220645,0.23213765,-0.2523559,-0.1524239,-0.102233686,0.56409866,-0.04817944,0.025723588,-0.7422199,-0.012371684,-0.08513856,0.22418484,-0.0026758898,0.05088187,-0.38657755,0.71169406,-0.103224926,0.49249235,0.28019515,0.23227689,-0.3834471,-0.42450452,0.14839526,0.9863777,0.32150474,0.14569625,-0.3860896,-0.17472482,-0.32789594,-0.07064224,0.07719517,0.48537084,0.43619004,-0.06324481,0.14854643,0.3370152,0.025101883,-0.10527567,-0.23264866,-0.24734856,-0.20490994,0.06015351,0.5464935,0.8085608,-0.0821897,0.4643596,-0.22702594,0.15251252,-0.1744548,-0.4281884,0.6764656,0.87157726,-0.12699974,-0.22458129,0.493431,0.46031985,-0.18938006,0.40708822,-0.49859935,-0.55700266,0.35249615,-0.078177966,-0.3371542,0.1386734,-0.3405724,0.112070814,-0.75954646,0.4281402,-0.0824244,-0.55143857,-0.608069,-0.088622935,-3.1533296,-0.01815113,-0.21871074,-0.1703775,-0.12691233,-0.37119743,0.15880813,-0.49800715,-0.39669088,0.1451718,0.062925115,0.7194649,-0.008815714,0.20957875,-0.24775639,-0.1228144,-0.26063222,0.14780758,0.16774797,0.30679837,-0.057570573,-0.56149954,0.010830079,-0.2151845,-0.2758573,-0.018345568,-0.6247214,-0.4287381,-0.093886696,-0.3975597,-0.40612063,0.5539629,-0.40844655,0.087515526,-0.21651646,-0.0710191,-0.1371996,0.36615035,0.16801631,0.0787768,-0.0890638,-0.111527316,0.012618328,-0.19964603,0.27088255,0.06776782,0.16941762,0.45329693,-0.09234699,0.118248776,0.4709156,0.5300003,-0.16900818,0.98240554,0.39970812,-0.15435591,0.285034,-0.14219852,-0.34460473,-0.7334982,-0.2627497,-0.08464517,-0.5263278,-0.40995908,0.20681964,-0.28147012,-0.93840504,0.50940293,0.08260317,0.23889562,0.09197492,0.20115693,0.48419133,-0.10411431,-0.076743975,-0.04241357,-0.04386402,-0.5428976,-0.49407142,-0.80859333,-0.45593277,-0.0638616,0.7609424,-0.054751523,-0.030915763,0.23768936,-0.22868745,0.020081053,0.1618212,0.044229306,0.050134268,0.4734619,-0.02296452,-0.6268893,0.67229927,-0.04189088,0.021175636,-0.47063917,0.27586663,0.6320664,-0.5884005,0.44388628,0.4163138,-0.041678745,-0.23400353,-0.32847616,-0.338188,-0.32600382,-0.13742912,0.4063305,0.10086276,-0.87155396,0.4198293,0.29382414,-0.15273425,-0.7266796,0.5608124,-0.04840573,-0.18303442,0.0064231455,0.30484205,0.16212232,0.06561445,-0.2938495,0.19098808,-0.48884815,0.2698251,0.19287507,-0.10287432,0.39532492,-0.29936978,-0.19022469,-0.6614691,-0.11380378,-0.42824095,-0.26655918,0.11442985,0.07829748,0.0074838675,0.37652677,0.17950146,0.27017388,-0.23866619,0.046746723,-0.0518211,-0.16691686,0.22865392,0.44116837,0.5867817,-0.50090265,0.5820032,0.016921353,-0.09757684,0.05106926,0.10488166,0.29155353,0.15637712,0.35808793,0.16424093,-0.25648886,0.34106705,0.95097774,0.3434692,0.5605046,0.20386209,-0.23894612,0.35079196,0.23791073,0.38538522,-0.12671399,-0.5814581,0.13668767,-0.31690794,0.13910504,0.21765241,0.104948215,0.3581548,-0.13214214,-0.08819564,-0.0871946,0.119138,-0.00031550654,-1.1694683,0.3605226,0.29591116,0.85066235,0.47645047,-0.21383753,0.08025748,0.82819515,-0.26704788,0.053028133,0.24430075,-0.027178848,-0.44149575,0.5870289,-0.694727,0.37924168,-0.064477906,0.027847806,0.03983238,0.05100585,0.30487496,0.6908798,-0.17197241,0.1098609,-0.008395295,-0.38878128,0.26407185,-0.41789284,0.26409587,-0.44023815,-0.21016707,0.88008416,0.46570295,0.3118975,-0.14711511,0.050013006,-0.09780569,-0.15369332,0.1941798,0.19906215,0.04849455,-0.112680726,-0.706277,-0.13362302,0.64022416,-0.14187463,0.2897747,0.11352159,-0.16985764,0.307919,-0.14296737,-0.1081457,-0.023088412,-0.6660181,-0.11381871,-0.30566654,-0.35911447,0.43008894,-0.010671428,0.33450732,0.25458905,-0.046231534,-0.26477933,0.40045664,0.18934962,0.51358926,0.14193867,-0.10067427,-0.38685116,0.019970225,0.24252415,-0.14694974,-0.04004645,-0.17851043,-0.0022930077,-0.56092393,0.4361327,-0.120782964,-0.18816961,0.08444296,-0.09994141,0.04815065,0.6154005,0.06886897,-0.102518626,0.1939143,-0.056423817,-0.32581654,-0.026864976,-0.18808149,0.33216485,0.26473904,-0.03770004,-0.051964052,-0.08741622,-0.04111328,0.34728995,0.016361307,0.3727109,0.20457721,-0.041103788,-0.37160328,-0.14122348,0.08522662,0.6109025,0.0029628107,-0.11263294,-0.15672477,-0.4096958,-0.37428504,0.07186214,-0.0556033,0.22014438,0.07394062,-0.2293351,0.742106,-0.08507783,1.1020051,0.1926897,-0.41845956,0.08455549,0.4313352,-0.10579884,0.0052770204,-0.302558,0.8921055,0.5574556,-0.04276315,-0.1375799,-0.4194635,-0.07415937,0.22497301,-0.13888262,-0.32226604,0.0101398,-0.7026028,-0.09281666,0.15668309,0.2720235,0.14345495,-0.021554861,0.06778825,0.3514946,0.08728435,0.24896465,-0.70265144,-0.21206822,0.44193038,0.16869542,-0.043848403,0.039153855,-0.3630934,0.41528144,-0.4557565,-0.07537242,-0.2149308,0.118150644,-0.30276838,-0.2584973,0.35282612,0.14220951,0.42762497,-0.2515029,-0.42640772,-0.42535517,0.4702044,0.12668814,0.30557364,0.4257737,-0.17230892,0.00027060084,0.042998914,0.38670912,0.963363,-0.30890867,-0.03005906,0.43301463,-0.38049722,-0.5361683,0.40715072,-0.3843721,0.216393,0.16028638,-0.24099183,-0.60331887,0.25401956,0.12881534,0.07626857,0.25024804,-0.7260095,-0.16615672,0.24430661,-0.23633362,-0.22373827,-0.2166054,0.03792223,0.4515271,-0.3679221,-0.22097911,0.12920745,0.3022154,-0.24204366,-0.48496243,-0.011191877,-0.44542146,0.30614302,0.06295176,-0.38021252,-0.032685626,0.10340949,-0.4093004,-0.0016975339,0.18337071,-0.41651514,0.10102989,-0.36089805,0.073983945,0.91309994,-0.14316988,0.3048326,-0.5719401,-0.4259042,-0.79084617,-0.3376744,0.45391634,0.22692636,-0.094684295,-0.5846842,-0.1344947,-0.060804844,-0.16408746,-0.06660021,-0.6396517,0.61283904,0.11958458,0.3059251,0.035304457,-0.7608523,0.044541616,0.11810743,-0.22898205,-0.50412244,0.49240702,-0.12017404,0.8396665,-0.0045772535,0.14631271,0.3113521,-0.51202095,-0.017707156,-0.20522703,-0.14963292,-0.5341045,0.007077462,552 -473,0.3899457,-0.21048424,-0.6091427,-0.15539016,-0.4561545,0.3109129,-0.11440333,0.27694717,0.34508634,-0.39242926,-0.036429934,-0.056504246,-0.068478845,0.6232346,-0.06629886,-0.57970804,-0.19245955,0.1541456,-0.73891383,0.36507508,-0.49247247,0.38687292,-0.07218344,0.3485361,0.079925016,0.36295295,0.123414524,0.11423409,-0.31401703,0.039478276,-0.17960595,0.16323192,-0.47002625,0.2748696,-0.061341736,-0.40637088,-0.12267285,-0.5014663,-0.07986273,-0.6216853,0.4222323,-0.7329559,0.63923156,-0.32900435,-0.18754964,0.18690751,0.08441241,0.19136998,-0.1687617,-0.044308756,0.18078461,-0.24788864,-0.19751784,-0.09479304,-0.46033153,-0.4821389,-0.6965439,0.040168535,-0.6373823,-0.025243798,-0.09248232,0.26428607,-0.27716595,0.11923026,-0.28073674,0.34507555,-0.42680666,0.0037160218,0.13500142,-0.1530726,-0.23112212,-0.423791,-0.15495683,-0.13027795,0.27369982,-0.19978918,-0.16743045,0.2867817,0.3087086,0.45740137,0.089741334,-0.28582612,-0.374999,0.04988103,0.015513254,0.6173108,0.036292683,-0.14020377,-0.22530653,0.03144015,0.3428248,0.22242782,0.03510184,-0.30017248,-0.013350929,-0.036322188,-0.26553184,0.37036484,0.3297666,-0.4270337,-0.4052553,0.4728959,0.461336,0.065031655,-0.13553278,-0.019050121,-0.0061993515,-0.534759,-0.2460278,0.22993481,-0.01721237,0.41863087,-0.18445136,0.35500357,0.7093791,-0.20024021,-0.094766006,-0.06489722,-0.022289816,-0.109717,-0.29501772,-0.038510475,0.09167868,-0.41316468,-0.006586262,-0.24789023,0.5640188,0.16637984,-0.755628,0.41056857,-0.5622849,-0.011875557,-0.137633,0.485991,0.8414103,0.47503424,0.19168445,0.77204144,-0.32602087,0.1546825,-0.042738695,-0.42714366,0.09716009,-0.055412523,0.16258648,-0.5924028,0.085611425,0.096881784,-0.20824751,0.107508436,0.56894505,-0.41005343,-0.06604463,-0.011219705,0.6004372,-0.39396754,-0.30654016,1.0542166,0.89463574,1.0560353,-0.016499931,1.3083967,0.37643304,-0.15372075,0.15859413,-0.44053173,-0.49043226,0.20428024,0.32992807,-0.1978142,0.57192165,0.15474014,0.084487,0.49112058,-0.0013336454,-0.05566007,0.13429976,0.18673138,0.044162326,0.009846619,-0.48618677,-0.434976,0.17304751,0.10468959,0.15044677,0.38079602,-0.400205,0.6084083,0.1734009,1.6599513,0.11888326,0.09920042,-0.028558541,0.4207917,0.19501437,-0.18499042,-0.17194705,0.18857983,0.30335236,-0.09068041,-0.5189944,-0.02535567,-0.34617335,-0.4358199,-0.1416797,-0.4024296,-0.15840384,-0.30557504,-0.431475,-0.16177127,0.095688656,-0.4431503,0.46755362,-2.4606793,-0.33569452,-0.123285115,0.2600244,-0.14132771,-0.58682007,-0.27771848,-0.58047926,0.054277964,0.22843206,0.29708675,-0.67382324,0.61016846,0.31793782,-0.5286078,-0.27479216,-0.7021337,0.0038506442,-0.0056122965,0.20756146,-0.109311596,0.033627205,-0.2652282,0.19708057,0.5196097,-0.12322215,-0.107935704,0.34516788,0.6271052,0.10436276,0.5090982,0.08909263,0.7595862,-0.25891915,-0.27288404,0.29928097,-0.2623379,0.42749125,0.05897687,0.22312368,0.52293104,-0.5185021,-0.92440605,-0.6494362,-0.30561453,1.028013,-0.24039073,-0.17058566,0.26416874,-0.36019257,-0.5012816,-0.0677441,0.45997477,-0.059981447,-0.269237,-0.6543728,0.07276868,-0.049748957,0.24882625,-0.16943322,0.17152117,-0.31233644,0.49586508,-0.0778682,0.49803632,0.20099105,0.25230756,-0.25805867,-0.2802805,0.13484491,0.8211316,0.3185103,0.069810495,-0.1383346,-0.26364857,-0.20584798,-0.096130036,0.12141878,0.39798015,0.56827205,0.1857651,0.04501763,0.27523014,-0.17698915,0.008311257,-0.18235636,-0.14764288,-0.09528359,0.12586556,0.49084568,0.5858365,-0.14478578,0.604325,-0.12469951,0.15976907,-0.16399583,-0.5730435,0.45107916,0.601179,-0.15942909,-0.25386903,0.6266363,0.30977362,-0.28418708,0.43353277,-0.545638,-0.26111576,0.46762004,-0.24232975,-0.28177205,0.06710804,-0.15328245,-0.05039425,-0.8522908,0.1159827,0.12434345,-0.4815263,-0.35903522,-0.1829363,-3.7193024,0.07009753,-0.042958163,-0.13398564,0.088053904,-0.15740518,0.23682077,-0.63425,-0.50896317,0.11925354,0.1048455,0.6996918,-0.13098523,0.117039904,-0.21305908,-0.36039153,-0.2201279,0.24372308,0.10930126,0.3651824,0.04703113,-0.47433758,0.14096673,-0.33230308,-0.5555238,0.031410746,-0.6218503,-0.5210992,-0.110161625,-0.46370748,-0.28929323,0.77973324,-0.32753187,-0.03763191,-0.25460967,0.07069456,-0.1045053,0.37642765,0.12098759,0.10749842,0.16304891,0.07283813,0.010416001,-0.31900746,0.26708952,0.044676416,0.31736845,0.4792737,-0.03964098,0.3490079,0.63720894,0.7552637,0.03576913,0.81300527,0.29437137,-0.18379773,0.3573645,-0.13247588,-0.14559329,-0.7122614,-0.33546272,-0.11009822,-0.4361938,-0.5270733,-0.11400108,-0.34494567,-0.819747,0.52379507,0.103404365,0.09735954,-0.2150347,0.34447902,0.47123975,-0.3510286,0.16702707,-0.17222254,-0.26142564,-0.41117623,-0.57591015,-0.54368013,-0.57887936,0.20973766,1.3643291,-0.071515806,-0.023149295,-0.04975819,-0.41331202,0.045178752,0.117860936,0.24993144,0.3966132,0.2975529,-0.360182,-0.65981716,0.3320196,-0.46508798,-0.0069833016,-0.4959927,0.025807139,0.7032083,-0.55248034,0.44767746,0.18991892,0.2469398,0.009067059,-0.45352718,-0.06484892,0.09462763,-0.20256354,0.44408223,0.36483952,-0.7557355,0.56103843,0.02761673,-0.16772492,-0.6848555,0.4193898,0.053770866,0.06558818,-0.08167456,0.4603355,0.29107,-0.014014636,-0.22996904,0.21593356,-0.41857833,0.16081037,0.3542231,-0.020288583,0.20196274,-0.17091489,-0.11916258,-0.64425975,-0.08073437,-0.15127198,-0.36307842,-0.060448606,0.05824134,0.3691329,0.13677421,0.0077523673,0.29458168,-0.5568016,0.08695958,0.004999116,-0.26999852,0.20787445,0.38159007,0.33675313,-0.43748358,0.44833857,0.08989055,0.045229588,0.11001911,-0.17645113,0.49261624,0.3017277,0.24269965,-0.008355467,-0.3241896,0.20335911,0.7808,0.20184493,0.15993454,0.08127137,-0.35636657,0.069747984,0.10296447,0.21242078,-0.055933475,-0.34912392,-0.0817734,0.093882255,0.16258423,0.48891935,0.03131054,0.32802844,-0.16369252,-0.1578703,0.22089966,-0.010451292,-0.113969244,-1.1414483,0.3046061,0.21949159,0.76691717,0.31157318,0.004827278,-0.054724436,0.51887745,-0.43822113,0.15515396,0.43971446,-0.14967217,-0.38510084,0.48090544,-0.535299,0.6451991,0.00918095,-0.029039199,0.24182574,-0.014206899,0.41733816,1.1800163,-0.13312641,0.056985058,0.0898981,-0.25551745,0.083432205,-0.1557879,0.030423565,-0.7015633,-0.2928037,0.79506075,0.43866137,0.4675409,-0.22418666,-0.026661327,-0.008752798,-0.14808805,-0.010811006,-0.106234364,0.06311847,-0.18652022,-0.59835863,-0.24444234,0.57772094,0.057604153,0.07227319,0.078705944,-0.50847036,0.23471002,-0.18130064,-0.066134766,-0.032847878,-0.7387138,-0.2023426,-0.35873222,-0.6002082,0.25921538,-0.2316382,0.21229376,0.06991879,0.03825396,-0.3304676,0.47358766,0.42895004,0.9920258,0.121357,-0.04336012,-0.20369814,0.22015418,0.38128212,-0.26991978,-0.03294929,-0.34907404,0.24786465,-0.675982,0.49066445,-0.11589056,-0.4913982,-0.18720403,0.07483507,0.20543024,0.38097766,-0.10114233,-0.07218859,-0.16392824,0.112365305,-0.32518297,-0.027244803,-0.34071913,0.217414,0.028891388,-0.27563033,-0.12298673,-0.09837309,-0.005145026,0.3433039,0.11407245,0.18013002,0.28749976,0.041299257,-0.37891483,-0.0057889563,0.0056850677,0.5180022,-0.006097451,-0.2493417,-0.44293642,-0.066161245,-0.22404933,0.6265865,-0.10925843,0.23433574,-0.005215881,-0.3994483,0.68597937,-0.07670129,1.3113554,0.12754205,-0.4024245,0.18209513,0.4817349,0.003715607,0.17348683,-0.41540107,0.96421087,0.46250024,-0.13460787,-0.38073447,-0.45953614,-0.19011565,0.4228417,-0.36206102,-0.17475574,-0.14899336,-0.78898656,-0.2548634,0.17313945,-0.08123296,0.29109162,-0.14496042,0.31006882,0.23143078,0.1620841,0.4461096,-0.5351804,-0.01662551,0.29682955,0.43554443,-0.028438535,0.31768602,-0.43339,0.38677076,-0.8444195,0.24909948,-0.430336,0.17917824,-0.038091753,-0.20283411,0.23783623,0.3609076,0.31705502,-0.13233684,-0.4354003,-0.38723364,0.6797051,0.12022046,0.23569825,0.6946264,-0.2980421,-0.1667316,0.07179396,0.37308455,1.2064302,-0.03986017,0.010042846,0.32656997,-0.21625529,-0.55968183,0.25143677,-0.39944008,0.13348135,0.024180114,-0.15488723,-0.35480142,0.38352552,0.2099812,0.13148391,0.069508016,-0.3153722,-0.046775453,0.40559003,-0.24013494,-0.21685998,-0.28256944,0.10447843,0.8881775,-0.4347441,-0.1680244,0.1513697,0.3828711,-0.22834687,-0.51221436,0.044326037,-0.4401989,0.40452698,0.05844658,-0.30752298,-0.029018758,-0.0051113493,-0.39997822,0.1349528,0.4709237,-0.35987705,0.0013839559,-0.28355387,-0.21105136,1.1193668,0.07634701,0.25597695,-0.6351448,-0.5939182,-0.8952524,-0.36729327,-0.010548336,0.035912078,-0.13245943,-0.5207299,-0.041167676,-0.002976392,-0.31868523,0.18420598,-0.61632985,0.3928037,0.063022636,0.31850132,-0.05002858,-1.1097671,-0.11734159,0.13190739,-0.26040402,-0.44980568,0.5663916,-0.18733434,0.7682672,0.10635574,0.003292799,0.13885918,-0.36602405,0.3725219,-0.5582401,-0.0038173646,-0.6882791,0.051228292,556 -474,0.17344344,-0.19760697,-0.42138943,-0.10569317,-0.01996396,0.13008931,-0.15764727,0.25127956,-0.012694695,-0.51226735,-0.1475238,-0.17357612,-0.041751273,0.1353132,-0.27502292,-0.4490881,-0.07152088,0.11967427,-0.3830016,0.39301667,-0.59589356,0.32301468,0.01403667,0.19102022,-0.05907219,0.16523767,0.2892205,-0.089065194,-0.11374863,-0.24457847,0.08972842,0.05829237,-0.57047725,0.261893,-0.19687687,-0.34649,0.08404939,-0.36269918,-0.50857276,-0.6303238,0.45248988,-0.94699293,0.44703218,-0.0037386587,-0.16302136,0.46107262,0.11044567,0.20461938,-0.15623678,0.032300863,0.1888179,0.011607095,-0.09158266,-0.1305208,-0.2572175,-0.31183457,-0.5668928,0.12814412,-0.41767243,-0.14751029,-0.25924125,0.17060931,-0.25351536,0.14283058,-0.24142446,0.4698824,-0.37347132,-0.061281618,0.025642773,-0.03718082,0.21332963,-0.46905765,-0.12718321,-0.07261862,-0.05327841,-0.28384277,0.007159936,0.18188766,0.08985595,0.54232335,-0.18050179,-0.10308472,-0.19725633,-0.08104137,0.18461363,0.4273621,-0.13557917,-0.3423608,-0.17250855,-0.16081153,0.17278144,0.1039684,-0.026842926,-0.1888672,0.03690062,0.11084221,-0.33678177,0.24489541,0.6277527,-0.1878225,-0.22004874,0.46878266,0.5775713,-0.122640096,-0.044665348,0.02686641,-0.07316114,-0.38815266,-0.1289719,0.046244442,-0.2639849,0.4374273,-0.15057324,0.22108173,0.45719382,-0.22960155,0.16229819,0.047652155,-0.019227022,-0.10938126,-0.23293486,-0.29006144,0.19160615,-0.4497655,0.046655778,-0.17709391,0.81612444,0.019145515,-0.7603372,0.40596178,-0.35413367,0.1656308,-0.09429604,0.6587158,0.4285856,0.347164,0.16134603,0.6221165,-0.6174746,-0.020555288,-0.11618971,-0.31661466,-0.008675703,-0.030297475,-0.14250877,-0.23757681,-0.031684812,0.14732026,-0.11513074,-0.241569,0.33956173,-0.35377282,-0.0122639835,0.12305006,0.7775454,-0.32754725,-0.01129508,0.70586663,1.1926193,0.84487754,0.13315995,1.2186116,0.35765198,-0.2026858,0.13744998,-0.23313716,-0.93799055,0.23638146,0.42316967,0.04523129,0.2323358,0.085560374,-0.097799756,0.25014395,-0.56707865,0.017150497,-0.33903435,0.3875192,0.027902897,0.09076958,-0.2771913,-0.19772394,0.24071409,-0.022993548,0.22790241,0.23524643,-0.32483622,0.12315594,0.20020796,1.1872635,-0.15271322,0.17170504,0.22907652,0.3302655,0.030067584,-0.13757123,-0.017402705,0.23700438,0.4418656,0.05444745,-0.69841653,0.0483618,-0.23406842,-0.49851936,-0.27329072,-0.1807148,0.020062849,-0.1276086,-0.3262176,-0.07839525,-0.20023534,-0.52765316,0.27724513,-2.6456354,-0.06599059,-0.2867887,0.2863617,-0.35096794,-0.34828216,-0.023837613,-0.47424597,0.43426886,0.44503504,0.3482466,-0.59365124,0.34586263,0.38250205,-0.24444829,0.005273938,-0.63503224,0.07793494,-0.16124184,0.35561356,0.13073274,-0.0626562,-0.15169919,-0.029314917,0.33161995,-0.033026736,0.19105193,0.28582993,0.44369152,0.14449188,0.41415793,0.09731735,0.43395567,-0.38392884,-0.047008246,0.4109324,-0.511769,0.15415919,-0.0778692,0.20692734,0.2933054,-0.6620345,-0.57659495,-0.58884686,-0.5762343,1.5265578,-0.25543973,-0.415552,0.2647079,0.06359545,-0.27218065,-0.1267325,0.36264807,-0.40870315,-0.060435183,-0.8685377,0.06805324,-0.17545016,0.36552912,-0.0891758,0.22155316,-0.43919995,0.6501776,-0.24263693,0.5614498,0.3115779,0.16237606,-0.44718108,-0.45105866,0.030653046,1.0814348,0.4317836,0.0923404,-0.14977911,-0.11894512,-0.24996507,-0.13938464,0.13510753,0.36815187,0.7110095,0.031245653,0.041362096,0.31566438,-0.088467896,-0.0025897026,-0.043014806,-0.2855424,-0.17701368,-0.013276594,0.64959896,0.33289573,-0.2091891,0.24093376,-0.22532865,0.28541884,-0.31740203,-0.30376515,0.32186127,0.73699373,-0.1507682,-0.32137898,0.6550766,0.6135589,-0.33604908,0.45507106,-0.60419166,-0.42779037,0.2626098,-0.14813508,-0.43927255,0.18613927,-0.29029512,0.13302854,-0.8242143,0.3736455,-0.27316588,-0.6183094,-0.6266251,-0.28324917,-3.1263385,0.13064668,-0.19486757,-0.14042738,-0.032936968,-0.15528941,0.33605003,-0.36298683,-0.60008496,0.15013336,-0.0155068915,0.46387672,0.1058117,0.15069939,-0.21104534,0.0112922955,-0.45355755,0.1695614,0.2937934,0.13887592,0.025295751,-0.38893393,-0.07085215,-0.3108295,-0.38473415,0.015452032,-0.4388897,-0.3693363,-0.17273355,-0.53279597,-0.439545,0.470056,-0.34649387,0.062007565,-0.18812929,-0.07621651,-0.1599995,0.44862324,0.1444615,0.22702314,-0.07382639,-0.22120658,-0.023934225,-0.3262786,0.4229293,0.059574265,0.18106796,0.34844568,-0.21634997,0.0069930553,0.30480364,0.5737499,0.05685387,0.79104847,0.33424595,-0.1487371,0.27786642,-0.21265338,-0.118443556,-0.5299821,-0.13583864,0.05131456,-0.3612244,-0.43322855,-0.04105797,-0.35228127,-0.73323363,0.4267106,-0.1163887,0.053517196,-0.0074722543,0.25523165,0.36051807,0.11010699,-0.01690487,-0.08349142,-0.06119987,-0.40064034,-0.50684756,-0.78347605,-0.2497374,-0.15423287,1.0627509,0.14971974,-0.10580097,-0.08979223,-0.0718187,0.054201145,-0.035567366,-0.003849866,0.1988816,0.47305605,0.003313339,-0.6274883,0.3566464,-0.14436749,-0.08074739,-0.55018896,0.044470515,0.65066403,-0.56706774,0.450466,0.4564657,0.16386326,-0.20172651,-0.49362212,-0.14547214,0.069711566,-0.20923793,0.42932752,0.26316562,-0.8982668,0.5079803,0.36852342,-0.04029165,-0.7170344,0.43902498,0.13493682,-0.021024061,0.050928533,0.41516066,-0.21912408,0.05352512,-0.15777552,0.14305045,-0.25979862,0.24044757,0.20792279,-0.093554474,0.52573735,-0.41096252,-0.11592398,-0.5260971,-0.062103987,-0.53702545,-0.1412687,0.037973676,-0.16942272,-0.08313221,0.23962818,-0.25080687,0.4488638,-0.081591144,0.078955874,-0.02792646,-0.17912062,0.32870603,0.41745812,0.3217214,-0.40720364,0.6411397,0.027097702,-0.15185194,-0.20762946,0.03710246,0.40318364,0.09105412,0.2546111,0.12917735,-0.043043915,0.45286158,0.7366262,0.3459084,0.6318869,0.20769115,-0.16158125,0.31409654,0.07261579,0.12607418,-0.04314765,-0.42751664,-0.13403992,-0.047362287,0.16828121,0.42253426,0.08456107,0.53604054,-0.32092628,-0.15931721,0.013325567,0.23442851,-0.19141018,-0.954593,0.34710026,-0.05004233,0.6491879,0.5492172,-0.13983954,0.15110159,0.50457865,-0.21532758,0.0768312,0.30425027,0.07902106,-0.4500671,0.49757877,-0.5073355,0.38303375,-0.18899548,0.09960519,-0.00286233,0.009070741,0.40332842,0.78788054,0.003985222,0.06328765,-0.100461416,-0.22000991,0.34412128,-0.32336825,0.25590706,-0.32228255,-0.216411,0.6192244,0.28008965,0.25710836,-0.115435265,-0.07757262,0.016981538,-0.11877769,0.12579145,-0.014634375,0.04049764,-0.105918385,-0.6675681,-0.30767846,0.46858478,0.32094198,0.12937282,0.15663484,-0.34634185,0.23905976,-0.13896142,-0.01389019,0.13141727,-0.53366995,-0.05636478,-0.051220458,-0.3106594,0.15938805,-0.38522774,0.21297611,0.15671103,-0.00833089,-0.5790936,-0.15863612,0.25015625,0.5797006,-0.09365536,-0.1764201,-0.3587227,0.07618822,0.21416013,-0.26734048,0.0144816805,-0.3743243,-0.016508972,-0.80647373,0.52199966,-0.16585183,-0.26898134,0.33454782,-0.23132019,-0.042147834,0.63020813,-0.15945575,-0.11278541,0.107484184,-0.076342806,-0.20224585,-0.20290153,-0.11680982,0.21073504,0.09890324,0.08582814,-0.0372067,-0.007892793,-0.19776423,0.43332997,0.06423935,0.24593136,0.33515522,0.26181576,-0.4042186,-0.021653567,-0.068205245,0.53671837,0.026728021,-0.052422978,-0.11384572,-0.41898867,-0.027890358,0.29200786,-0.100422345,0.2614701,0.10453678,-0.37130833,0.6454201,0.078477606,0.94456005,0.06593143,-0.17902014,-0.17822194,0.5829643,0.069392316,0.0017305559,-0.2656571,0.8785335,0.5322924,-0.116757356,-0.10706054,-0.33003896,0.023267064,0.023270786,-0.1350439,-0.30894044,-0.006188415,-0.62504405,-0.23391686,0.12741737,0.46258798,-0.121998854,0.022038039,0.14502756,0.16595738,-0.0312867,0.5345411,-0.3992203,0.0112066055,0.33428025,0.14600058,-0.05173623,0.1988268,-0.40695837,0.25022712,-0.62032896,0.10580759,-0.15663883,0.0073609757,0.026038935,-0.28453413,0.12738205,0.010757302,0.36921936,-0.3359587,-0.3316252,-0.16801932,0.5381342,0.16140446,0.18311903,0.6646771,-0.14340839,0.18306836,0.093929715,0.59900486,0.9683924,-0.086461894,0.11004906,0.09017193,-0.2637343,-0.7305255,0.3732008,-0.26702622,0.13449718,-0.008604935,-0.22870918,-0.30114514,0.3823306,0.16898875,-0.2373575,0.1674775,-0.5258343,-0.2256808,0.36153576,-0.1449363,-0.15359998,-0.32767397,-0.04313693,0.5943966,-0.25699145,-0.08580159,-0.056012936,0.30984762,-0.3411181,-0.5234427,-0.106412046,-0.46001083,0.3142317,0.017033597,-0.19503327,-0.013912345,0.11573162,-0.34358892,0.25687486,0.09005928,-0.27884534,-0.08938934,-0.14457902,-0.004843014,0.5659707,-0.080845885,0.040088587,-0.6568398,-0.4595922,-0.91803247,-0.28898144,0.5777572,0.083692364,0.08885624,-0.42023107,-0.06021757,-0.0665539,-0.014677508,0.086770594,-0.4083987,0.2721676,0.1280565,0.533788,-0.025793413,-0.57099295,-0.042913157,0.0373323,-0.17415415,-0.3646321,0.65114033,0.086291485,0.6490417,0.01729234,0.16470489,0.24485664,-0.65865767,0.14374658,-0.1780977,-0.24141833,-0.5627687,0.11953248,558 -475,0.8203944,0.11829589,-0.6102905,-0.054485537,-0.5523195,0.2301805,-0.2165027,0.3746491,0.31355366,-0.6119582,-0.0065056616,-0.119514726,-0.08118839,0.21005155,-0.06850548,-0.62138194,0.17748316,0.18216535,-0.69707006,0.8896598,-0.15543732,0.49441662,-0.070610024,0.24181616,0.10210804,0.1555773,0.18352403,0.11516516,-0.1234599,-0.2383527,0.036830842,0.19142388,-0.6493351,0.3554571,-0.12639843,-0.36923584,-0.121044196,-0.2539622,-0.16524899,-0.80195534,0.321184,-0.77381384,0.7288903,0.034216825,-0.26193,0.23884296,0.34363514,0.09239683,0.067219615,-0.11486031,0.13584317,-0.15277743,-0.062709495,-0.2826294,-0.33254507,-0.5371652,-0.6298031,-0.068872,-0.40408415,-0.17977752,-0.39208022,0.15971376,-0.27352598,-0.08498577,-0.27828386,0.86941844,-0.2951088,0.28307194,0.20218144,-0.2924181,-0.03095207,-0.7415872,-0.22149928,-0.13029955,0.11386267,0.0742938,-0.14539573,0.3984492,0.32965803,0.41439694,0.11081227,-0.42475826,-0.41316146,-0.13232267,0.1374166,0.39322326,-0.25265566,-0.19844863,-0.15771756,-0.09708559,0.40826866,0.033827342,0.29061702,-0.140685,0.13141045,-0.13986793,-0.13192068,0.5745104,0.40615454,-0.41517368,-0.22990446,0.27563134,0.3670915,0.0080544995,-0.30088308,-0.029704724,-0.19575164,-0.38004056,-0.0550557,0.25904992,-0.12384943,0.2643652,-0.20410681,0.1141141,0.47827402,-0.14656211,-0.1281904,0.22968677,0.12415462,0.27210417,-0.3074972,-0.1535985,0.34616703,-0.4682855,0.17193301,-0.368561,0.6793466,0.19209953,-0.5462469,0.35858864,-0.550294,0.1084122,0.11074203,0.4181299,0.77909714,0.58470917,-0.045259953,0.763352,-0.23365124,0.05097356,-0.0076807165,-0.026494225,-0.02040121,-0.23789285,0.31161538,-0.4403123,0.31523982,-0.031704873,-0.055890232,0.04965961,0.5080668,-0.5638483,-0.36234662,0.23449433,0.976498,-0.23463726,-0.3326351,0.7504112,1.0151182,1.0709629,-0.15558998,0.89942014,0.114400394,-0.18222438,-0.07618021,-0.19708334,-0.45035067,0.304492,0.19936688,0.11134328,0.36171967,-0.017794965,-0.20148294,0.26174092,-0.25659424,-0.2729995,-0.09432344,0.3864843,0.21756625,-0.14162461,-0.37620398,-0.19187763,0.101342306,-0.070835434,0.35214847,0.2889933,-0.30914024,0.4055014,-0.05967229,1.0137693,-0.13571943,0.12551482,0.1361282,0.41833046,0.33533022,-0.03062593,0.17732514,0.26936564,0.08057332,0.18740593,-0.4776337,0.3233001,-0.45538524,-0.44139412,-0.03856789,-0.41630283,-0.20869526,0.04484707,-0.43513718,-0.31854644,-0.11876667,-0.29376927,0.26652926,-2.5732825,-0.0075896042,-0.08810633,0.38512832,-0.2536161,-0.28718516,-0.22362784,-0.58078086,0.3481227,0.16173843,0.38519368,-0.41290832,0.39950517,0.3836749,-0.657462,-0.07410725,-0.5448033,-0.09641157,0.042760722,0.42496863,-0.15891562,-0.17539512,0.035916228,0.22652675,0.63993865,0.15366784,0.26032978,0.38479072,0.3083516,-0.20229067,0.23683389,-0.13235496,0.5575025,-0.51515144,-0.17759685,0.5261664,-0.44382003,0.07058694,-0.17967705,0.084566556,0.6155138,-0.3800862,-0.97689235,-0.62947905,-0.010987161,1.0412674,-0.23853289,-0.7334704,0.06047207,-0.17501831,-0.1430557,-0.008935304,0.57011384,0.11274648,0.18947445,-0.65052706,-0.02698359,-0.027888963,0.3338318,-0.07136831,-0.0061969734,-0.46745425,0.7161837,0.00957703,0.5917228,0.078353606,0.3176901,-0.39363942,-0.4319396,0.039497938,1.0347157,0.45122725,0.11193932,-0.17592993,-0.12920964,-0.34998927,-0.21288694,-0.0052277124,0.79322594,0.540352,-0.05606418,0.08082684,0.2718418,-0.15383656,0.33772025,-0.19108708,-0.4161797,-0.3309436,0.05983522,0.5075344,0.46386406,-0.17530362,0.45763612,-0.012584575,0.4153556,-0.30061096,-0.63789445,0.51477647,0.97555274,-0.33801487,-0.32661104,0.65581334,0.37087247,-0.39317146,0.58997506,-0.6333092,-0.56147987,0.4378038,-0.19529302,-0.51908296,-0.0014714301,-0.32427934,0.12789622,-0.51699317,0.2679433,-0.66832,-0.6325775,-0.28798088,-0.25598505,-2.5572083,0.20617995,-0.09713127,0.0010268603,-0.29631788,-0.04188161,0.15210967,-0.39796835,-0.5592877,0.038431328,0.16436648,0.83113676,-0.13284358,0.06004592,-0.22708078,-0.517228,-0.298597,0.37879673,0.15013969,0.25654832,-0.09363661,-0.34096128,0.14761303,0.0888126,-0.39494064,0.010848994,-0.68955904,-0.41069502,-0.22549231,-0.5621378,-0.2290294,0.650847,-0.4245861,0.08648541,-0.26566097,0.12085427,-0.057398044,0.15207665,-0.022016589,0.2817406,0.072393835,-0.24277341,0.2023968,-0.26748896,0.4976454,0.09024131,0.4810357,0.49467805,-0.16233255,0.095209725,0.46121627,0.5389355,0.37419605,0.99413955,0.05300813,-0.044970307,0.58280694,-0.1090809,-0.3707776,-0.5973617,-0.104975544,0.06656123,-0.42320323,-0.29443192,0.058033496,-0.407921,-0.93680316,0.5460258,-0.14524367,0.3730699,-0.19465192,0.4244087,0.5458914,-0.26082832,0.02832179,0.07916127,-0.12387641,-0.44965786,-0.3526411,-0.638441,-0.44511938,-0.061222613,0.7244662,-0.25922322,-0.0688508,0.054526653,-0.057956073,-0.025852306,0.27666798,0.16485007,-0.051578104,0.5997757,0.02210827,-0.6783026,0.4547895,-0.31155303,-0.019528517,-0.44144017,0.6811658,0.45607045,-0.63760483,0.5582046,0.25377828,0.110239014,-0.52479154,-0.6621906,-0.06881653,0.17116246,-0.19379695,0.32063642,0.33103672,-0.81595147,0.38316822,0.108021274,-0.20762451,-0.71711093,0.5428874,-0.037660833,-0.33501747,-0.2544988,0.5596004,0.28426203,0.002370464,-0.08624538,0.1799313,-0.6264482,0.32706922,0.031764127,-0.1492493,0.37188414,-0.102041535,-0.31199518,-0.76958454,0.14958198,-0.56986743,-0.47846174,0.31838888,0.07196803,-0.08906102,0.4908497,0.2105304,0.5105135,-0.18571822,0.1705115,-0.3021829,-0.30895707,0.616168,0.35120112,0.43174177,-0.42403835,0.6246155,-0.03276066,-0.25626367,0.29860285,0.19912155,0.47620997,0.11954035,0.7084028,0.1399004,-0.05066631,0.11403111,0.4971362,0.1798627,0.31671444,0.04731344,-0.14494547,0.14938603,-0.09890628,0.046086285,-0.08212427,-0.5749174,-0.27707776,-0.14539674,0.028984329,0.6588856,0.03897,0.33129317,-0.0036334523,-0.24712765,0.081411935,0.023774501,-0.2450022,-1.2991276,0.32672366,0.020533284,0.9296202,0.4083698,0.04157304,-0.17714651,0.6976735,-0.028484225,0.09395598,0.36634707,-0.060496844,-0.21712509,0.5989633,-0.5105885,0.3387917,-0.1381465,-0.033099882,0.037210133,0.10815774,0.44411317,0.96060044,-0.1565985,0.0032141295,0.10981203,-0.41166177,0.22630177,-0.24623473,0.2541384,-0.5468862,-0.33043846,0.7240561,0.33198354,0.33085164,-0.36229426,0.08686676,0.1327655,-0.26884535,0.17016712,0.07076673,0.10707242,-0.14668694,-0.3748731,-0.12024362,0.53171194,-0.25637004,0.04849771,0.24787012,-0.16245301,0.2610259,0.040428776,0.030855162,-0.058548003,-0.7813516,-0.039898593,-0.27918494,-0.39134255,0.48971772,-0.1243723,0.084627345,0.15407276,0.07184603,-0.36094195,0.39496782,0.27252457,0.255564,0.08401015,-0.1097958,-0.41045588,0.16074882,-0.19319566,-0.25614005,0.18841903,0.0012469122,0.2522078,-0.56121904,0.49335477,-0.11441517,-0.22812496,-0.12954788,-0.07154512,-0.027504751,0.5344656,-0.054612722,-0.108367525,0.052354276,-0.14112924,-0.41347393,-0.31108457,-0.058170464,0.10186333,-0.039731044,-0.18085288,-0.20315899,-0.14398345,-0.075803146,0.15155761,-0.0241593,0.13853177,0.41035798,0.14771724,-0.47125864,0.19197476,0.29952782,0.50237906,-0.020162685,-0.06370221,-0.26405543,-0.40784165,-0.5007126,0.50479937,-0.061658077,0.19505182,0.10493048,-0.3705897,0.87155694,0.092348464,1.1842258,-0.119528316,-0.37361678,-0.0074634976,0.5723614,-0.111986555,-0.0700498,-0.4933872,1.0411931,0.62541896,-0.014668347,0.05753839,-0.4128421,-0.007673309,0.13548867,-0.3263872,-0.11484684,-0.052714713,-0.6349398,-0.22382419,0.07085311,0.29975718,0.09163944,-0.19771041,0.17245828,0.31925339,0.16614212,0.21272253,-0.60378605,0.009571168,0.20027594,0.41176242,-0.021593736,0.27431226,-0.31798616,0.10370684,-0.87946045,0.13918379,-0.11128586,0.09963686,-0.27126223,-0.46864036,0.2742587,0.10181276,0.3073408,-0.42358488,-0.2810566,-0.23998983,0.43384022,0.20253168,0.14581254,0.81067973,-0.22160146,0.032403443,0.20968713,0.6279977,1.101463,0.09781183,-0.17269464,0.055369206,-0.45050684,-0.94791174,0.11537175,-0.31058645,0.327604,-0.16150713,-0.24432732,-0.5179426,0.3003077,0.08032449,0.014753408,0.14910635,-0.6341607,-0.15227643,0.10536308,-0.44589213,-0.2363936,-0.23294422,0.27124685,0.53291154,-0.086784504,-0.16132364,-0.024795678,0.33335894,-0.21029344,-0.7795057,-0.030859768,-0.3909637,0.22065173,-0.030098166,-0.28458008,-0.20355631,0.00031210162,-0.6056904,0.1642277,0.13209967,-0.28466767,0.034438483,-0.36073884,0.1335333,0.59841615,-0.0048952317,0.12946112,-0.35875374,-0.6749147,-0.8088955,-0.33419272,-0.0010390027,0.068992764,-0.0779951,-0.73602444,-0.27384087,-0.42133263,-0.053002764,-0.06590987,-0.41415957,0.27559572,0.16641939,0.3498819,-0.15303585,-1.0214632,0.105362244,0.15651152,0.057922,-0.44852862,0.21760856,-0.22829954,0.99909985,0.12664412,-0.045551088,0.29028693,-0.5469492,0.17448221,-0.20961976,-0.06353099,-0.49006262,0.1451021,561 -476,0.3350386,-0.15703943,-0.5875541,0.029690811,-0.22655497,-0.03501378,-0.39947483,0.3750526,0.27724317,-0.40948895,0.100460805,-0.2226713,-0.14934409,0.11841844,-0.1999608,-0.4866628,-0.03846294,0.200072,-0.4364524,0.5801692,-0.432101,0.20079327,0.095229305,0.23702273,-0.12218637,0.2589906,-0.0051339758,-0.28436893,0.025795903,0.046937324,0.20401356,0.09122162,-0.61449903,0.27792427,-0.18912613,-0.16146812,0.1431055,-0.56350744,-0.56499773,-0.58212197,0.17602767,-0.6214899,0.53956324,0.03564131,-0.3333278,0.28639403,-0.04277139,0.2851266,-0.08863734,0.07171065,0.28577837,-0.17837487,-0.5011706,-0.2445146,0.039688654,-0.48787403,-0.45230156,-0.050694253,-0.4703881,0.20035364,-0.22324331,0.24529903,-0.15383871,0.10581382,-0.11063645,0.13279246,-0.50567085,0.089127846,0.07504349,-0.087264605,0.37559742,-0.66995806,-0.1204614,-0.0016885698,0.19126084,0.19258912,-0.15782128,0.19092837,0.016009582,0.6697779,-0.09711821,-0.07337325,-0.26186663,0.005683754,0.060097802,0.57208,-0.2430084,-0.09048629,-0.16677022,-0.09047786,0.40532207,0.18941453,-0.061106198,-0.3913763,-0.06942902,-0.03706732,-0.3563071,0.15072306,0.6713883,-0.29246372,0.16049124,0.3624827,0.3330607,0.32403424,-0.06916066,0.075962715,-0.079805136,-0.38532543,-0.12271099,-0.024883678,-0.13323146,0.49493477,-0.020159248,0.2637278,0.4639595,0.049768627,-0.10002591,-0.038880367,0.0048025805,0.06642474,-0.08623072,-0.17831199,0.3123695,-0.5612938,-0.0046566087,-0.13120031,0.52223915,-0.16910431,-0.86137384,0.45762625,-0.47998673,0.06917486,0.06555341,0.596224,0.7032619,0.7404996,0.0870722,0.89453804,-0.5633551,0.15303013,-0.12878715,-0.229624,0.35527244,-0.14669539,0.23021157,-0.45153126,-0.04440651,0.14759819,-0.14062789,-0.15268609,0.6495957,-0.54685235,-0.001882468,0.21186201,0.72556156,-0.29861477,0.14228691,0.6092494,1.1353904,0.8330983,0.2782727,1.1971667,0.27543333,-0.19863252,-0.07824954,-0.059697144,-1.0604625,0.099962555,0.28564772,0.7165567,0.18496545,0.36039916,-0.03295574,0.6722166,-0.25080544,-0.16064216,-0.22130595,0.375392,-0.054795478,-0.21607362,-0.2200378,-0.18823375,0.06370303,0.13181305,-0.046574254,0.33827713,-0.060912065,0.2673764,0.18713239,1.5472937,-0.19366369,0.11431346,0.12620656,0.14618209,0.19032557,0.010505642,-0.12621741,0.36477163,0.35578346,-0.021803724,-0.55449355,0.0069865286,-0.12746613,-0.63336116,-0.1533675,0.056360643,-0.13575543,-0.10508282,-0.28444007,-0.2645571,-0.06347077,-0.3297232,0.57226026,-2.6871376,-0.11243469,-0.17818257,0.43832207,-0.17686081,-0.2664087,-0.11310103,-0.2804342,0.5431568,0.48976332,0.42599398,-0.56392664,0.4554209,0.38955018,-0.5847383,-0.10919584,-0.6451064,-0.029518614,0.029705787,0.27229974,0.07653398,-0.31412056,0.053689737,-0.16342251,0.2974729,-0.20107748,0.15250906,0.43788937,0.51228416,0.014118097,0.39879823,-0.19627477,0.36442152,-0.28763488,-0.11148806,0.26756144,-0.36211976,0.40914991,-0.20540306,0.20062813,0.3672063,-0.5464794,-0.62524205,-0.41516963,-0.055049304,0.9580328,-0.26389137,-0.5304104,0.22443001,-0.35304955,-0.32028052,-0.038923714,0.38694876,-0.15847073,0.027346853,-0.85387695,-0.07859804,-0.07945393,0.26875368,0.022588039,-0.003817918,-0.47207877,0.6964862,-0.035699993,0.5766055,0.6662506,0.2758915,-0.060607374,-0.27807578,0.11153237,0.67090166,0.48554975,0.171804,-0.1936544,-0.041951988,-0.04112702,-0.22544037,0.10298306,0.5103138,0.58756256,-0.16496928,0.10241078,0.2098311,-0.19652727,-0.123066776,-0.07391044,-0.43580213,-0.099805534,0.12034048,0.48272082,0.789688,-0.18535025,0.26288548,-0.014225778,0.15228446,-0.0010543125,-0.45993838,0.4029548,0.53158927,-0.10734483,-0.18071012,0.4724866,0.4878609,-0.09143002,0.46919766,-0.558262,-0.47160238,0.32963482,0.0049885428,-0.61443454,0.37574658,-0.45383072,0.14507529,-0.97361577,0.3777234,-0.349529,-0.5770553,-0.6950432,-0.08403759,-2.4698815,0.22477886,-0.27426764,-0.08655033,-0.1778857,0.011360322,0.2809131,-0.52514315,-0.6647791,0.19398654,0.19098876,0.35279983,-0.0014725582,0.043459687,-0.18836986,-0.1572125,-0.2888184,0.17325592,0.20376119,0.15050414,-0.032551296,-0.4444785,-0.23910478,-0.23080859,-0.097493626,0.082851104,-0.5858265,-0.29083967,-0.16521814,-0.46228853,-0.29188892,0.50009257,-0.38341406,-0.071830325,-0.33286378,0.016328672,-0.13566019,0.32918686,-0.1311252,0.11307402,-0.038784694,-0.12574033,-0.057431627,-0.23497938,0.11787776,0.09122646,0.12791814,0.5672902,-0.113099255,-0.075325884,0.5730285,0.6578768,-0.21031602,0.78992164,0.49433258,-0.29454237,0.3638092,-0.36857313,-0.13545643,-0.62273175,-0.27347443,-0.11414545,-0.39076582,-0.4859529,0.04702249,-0.421732,-0.7218777,0.5102633,-0.0101068,-0.044553824,0.19146106,0.13750665,0.3799183,-0.08483861,-0.122255705,-0.14381981,-0.20558996,-0.51782924,-0.3464281,-0.70256466,-0.49971423,0.16343047,1.1629188,-0.14234357,-0.14772399,0.28221095,-0.22471072,0.04135992,0.20590101,0.07904865,0.16350208,0.2731193,0.15813632,-0.75622314,0.4329849,-0.07403342,-0.19723788,-0.6647498,0.06473958,0.6055294,-0.8005174,0.43719092,0.3950677,0.15208931,0.2916655,-0.6257015,-0.22371697,0.038157318,-0.27842042,0.3571132,0.26710656,-0.81527704,0.5653678,0.49070904,-0.2960649,-0.8827692,0.23571874,-0.045205623,-0.13337587,0.10791675,0.30046603,0.08219319,0.033460796,-0.1076893,0.21197973,-0.51985055,0.44774002,0.07181007,-0.1723331,0.44170538,-0.20526095,-0.08813067,-0.9043861,-0.06764251,-0.4225025,0.019306336,0.39993724,0.050978076,-0.042244375,-0.2616694,0.38635454,0.44177863,-0.43690866,0.16798909,-0.2760244,-0.36581096,0.27999574,0.5496573,0.4286532,-0.31876987,0.48578972,-0.13174228,-0.11528802,-0.20596504,0.068888105,0.36147264,0.14081885,0.08277158,0.007917813,-0.10690167,0.1184669,1.0193561,0.13639888,0.35951108,0.08891287,-0.1242735,0.5164179,0.115405016,0.08755926,-0.14194699,-0.526622,0.035221703,-0.06093904,0.21686505,0.42745617,0.19204679,0.4951376,-0.3164448,-0.12553397,-0.09839075,0.35218468,0.35152128,-0.84145325,0.47656268,0.080317445,0.6029692,0.6756266,0.056652274,0.30968237,0.68599683,-0.17526576,0.06716626,0.32946375,0.042849522,-0.4437645,0.38062754,-0.7575056,0.28656402,-0.20296128,-0.033984922,0.38884845,0.23091057,0.5214688,0.7894373,-0.062880106,0.003508611,-0.09923909,-0.11840367,-0.10839907,-0.20223448,-0.1784621,-0.33975467,-0.41602662,0.6823087,0.41125104,0.45449883,-0.31322604,0.016594272,0.18026762,-0.0069140964,0.60962564,-0.02280079,-0.010445176,-0.1614858,-0.61015993,-0.22764526,0.67719424,0.042658843,0.039977588,0.0031139723,-0.08393727,0.3883269,-0.21225247,-0.20553215,0.014982073,-0.6580173,0.18362649,-0.28723887,-0.48101848,0.6107546,0.22792152,0.19888012,0.06667252,0.090024844,-0.2351376,0.33540282,-0.024529388,0.8421251,0.008993119,-0.27768356,-0.18757196,-0.1413278,0.20230351,-0.18794498,-0.15884164,-0.24564731,-0.029635224,-0.5823422,0.4561964,-0.20881979,-0.07884501,0.31294063,-0.29345924,0.04484563,0.48113397,-0.2846359,-0.30103603,0.20870717,0.11376516,-0.2713335,-0.45604038,-0.46621466,0.06508044,-0.07868481,0.10079881,-0.07457827,-0.1477952,-0.03872108,0.48026976,0.08379451,0.18509217,0.38132167,0.31703338,-0.5027236,-0.18410417,0.20256308,0.4621916,-0.004454215,-0.09604697,-0.2593218,-0.6509635,-0.3433502,-0.0863878,-0.10709442,0.34557396,0.1372829,-0.41822955,0.9127653,0.122466855,0.94358593,0.08356544,-0.17198613,0.08598524,0.54007834,-0.0998684,-0.026380513,-0.4274545,0.8397242,0.8095974,-0.0943539,-0.077638045,-0.5034057,-0.12903298,0.18405755,-0.3217352,-0.022343738,-0.093657054,-0.7188546,-0.23432776,0.10847359,0.23299193,-0.17373657,-0.14251746,-0.08205337,0.018279774,0.101134576,0.12776938,-0.36435556,-0.26156104,0.40617278,0.206568,0.10286361,0.13601786,-0.34693933,0.2828153,-0.456807,-0.043071758,-0.4610605,0.019617332,-0.016326537,-0.24421223,0.05843566,-0.12084507,0.29462144,-0.31234977,-0.31720564,-0.060908,0.4114395,0.22812359,0.33808684,0.64747447,-0.18254794,-0.07585131,-0.13084503,0.49411747,0.998539,-0.5109126,0.08473998,0.41171935,-0.39321473,-0.42705485,0.21834072,-0.37130553,0.009213784,-0.09327037,-0.4198821,-0.5462917,0.17723843,0.12118828,-0.19004896,-0.25503308,-0.62264025,-0.014612113,0.19781268,-0.30932823,-0.14031668,-0.19877349,0.06538944,0.9765376,-0.3626797,-0.30974963,0.17619045,0.10135238,-0.30755138,-0.31685933,0.21118583,-0.4036413,0.24472524,0.36635408,-0.3634962,-0.0058502215,0.21430556,-0.5950743,-0.04921731,0.12867549,-0.29002553,0.03170403,-0.47535753,0.19210377,0.82541263,-0.03605122,0.20425443,-0.45520094,-0.55716133,-0.9977077,-0.30995092,0.169434,0.27171195,-0.044684555,-0.4395297,0.08402264,-0.14861332,-0.088514045,-0.08310044,-0.51255345,0.59262955,0.09192155,0.40576747,-0.39061823,-0.9268905,0.09116932,0.1815963,-0.21159947,-0.29333702,0.4985183,-0.12091913,0.95954216,0.06611966,0.094684176,0.16498467,-0.7390995,0.23263991,-0.31160998,-0.3778378,-0.698125,-0.046795342,563 -477,0.6302332,-0.19617958,-0.5123554,-0.0061059156,-0.48593664,0.11925609,-0.3311963,0.14016317,0.41393915,-0.13774204,-0.3955885,-0.15352266,0.141906,0.0312931,0.023398595,-0.48482355,0.036041655,0.46806452,-0.94124585,0.5874742,-0.36700517,0.3459111,0.28290948,0.542,0.07159356,0.15863821,-0.013070651,0.0689997,-0.021671385,-0.28510123,-0.022054765,0.07343398,-0.769955,0.17667219,-0.42178398,-0.37011364,-0.22200546,-0.38874522,-0.32962963,-0.8243333,0.16736066,-1.1916534,0.67565006,-0.041503448,-0.31447873,-0.42363676,0.24065374,0.4294843,-0.22165944,0.12914462,0.2613275,-0.5668173,-0.38421518,-0.5006462,0.077719584,-0.37905183,-0.4867924,-0.059302203,-0.54064995,0.022206638,-0.14701316,0.20853718,-0.32182625,0.11122962,-0.23864402,0.35638472,-0.21294072,0.08550864,0.36894423,-0.2387668,0.101443924,-0.569245,-0.09276519,-0.10520037,0.62942606,0.1120113,-0.52582294,0.3900388,0.1106608,0.57913303,0.33626255,-0.4330146,-0.03414609,0.03006741,-0.027257653,0.4286702,-0.048794843,0.0339896,-0.21711977,0.052020933,0.644657,0.4308609,0.18558182,-0.15635839,-0.024296364,-0.2765829,-0.034110215,0.40720895,0.58546084,-0.09454522,-0.28195983,0.061481178,0.70629793,0.15764035,-0.2288048,0.17647232,0.09054906,-0.5428481,-0.12207586,0.12102199,-0.0014502747,0.59283465,-0.18528116,0.064669326,0.6891037,-0.16323021,-0.17659947,0.22755504,0.17294881,-0.032530546,-0.34080315,-0.22683968,0.39558023,-0.56268054,-0.15286115,-0.44659558,0.70303965,0.17957239,-0.49995035,0.36908704,-0.56943405,0.21850625,0.07975345,0.7233534,1.0558631,0.6930312,0.4296156,0.84204096,-0.030736744,0.19683419,-0.22084174,-0.13049805,0.17153303,-0.40910253,0.3258505,-0.44311038,-0.09858622,-0.38777146,-0.30734608,0.09060914,0.739388,-0.55715674,-0.2740777,0.23348248,0.6747574,-0.26428685,-0.13796885,1.0199538,1.034192,0.83494854,0.16154324,1.1764575,0.38327414,-0.25882396,-0.13417816,-0.026711391,-0.8267989,0.11566651,-0.02122939,0.008161579,0.42405272,0.1344563,-0.2069769,0.43599,-0.79411614,-0.01809791,-0.004697374,0.12324731,-0.11554773,0.046116095,-0.5303668,-0.1874688,-0.110294245,0.04809674,0.29448298,0.3725036,-0.22803746,0.38792354,-0.0754407,1.3429374,-0.11550497,-0.14390542,0.10497837,0.33490488,0.22945349,-0.16615745,-0.2132356,0.41802007,0.28405482,-0.108073235,-0.490761,0.16111578,-0.27258497,-0.20481381,-0.2608845,-0.19649994,-0.018354962,-0.1651841,-0.35319692,-0.53888637,-0.031548582,-0.44106045,0.27896243,-2.215398,-0.31131425,0.14503445,0.59705245,-0.3152699,-0.24944712,-0.2159638,-0.62776023,0.16550553,0.0810313,0.44393083,-0.8032115,0.54258806,0.56509674,-0.63945854,-0.24548616,-0.8970276,-0.001015859,-0.049079083,0.23963833,0.039751768,-0.35754874,-0.39449963,-0.052792966,0.5615017,0.047218714,0.090751946,0.7522765,0.47685644,-0.04073743,0.38599077,0.13266036,0.6297551,-0.305406,-0.37672716,0.42266035,-0.33693948,0.29121703,-0.11412697,-0.014665706,0.7840036,-0.4746697,-0.7032561,-0.5631291,0.033540983,1.0116316,-0.48618922,-0.49081802,-0.016930245,-0.5717006,-0.21264158,0.25159535,0.88211393,-0.18242119,0.10753155,-0.85288435,-0.1928583,0.0044549108,0.3640993,-0.047465634,-0.0049971365,-0.44858482,0.7490918,-0.31498042,0.62790245,0.109323315,0.36739,-0.2658008,-0.4540903,0.31357405,0.95851564,0.35634857,-0.06999504,-0.34606367,-0.25727764,-0.20879732,-0.22450005,-0.16023003,0.80733955,0.69213265,-0.20875272,0.25380754,0.42618206,-0.18127047,0.004544552,-0.09721061,-0.22659321,-0.22823535,-0.013830402,0.6647301,0.9914934,-0.07408701,0.5330208,-0.23125944,0.49262595,-0.12650004,-0.7301118,0.5833677,0.8650955,-0.35253882,-0.04189561,0.5513102,0.30358478,-0.50087553,0.5063053,-0.64113015,-0.44014195,0.3866237,-0.01738509,-0.4814065,0.43085042,-0.28421983,0.43857726,-0.78428304,0.42100453,-0.20438115,-0.44091034,-0.69656456,-0.021021273,-2.0109575,0.23715727,-0.25069922,0.028811475,-0.27104658,-0.37652227,0.21750845,-0.46363205,-0.5323721,-0.017038073,0.24365723,0.7615747,-0.16811109,0.164247,-0.17252903,-0.48277688,-0.09659256,0.21212564,0.3744757,0.31455848,-0.27293485,-0.30194643,0.041013893,-0.12851143,-0.28555948,0.021628967,-0.8634887,-0.6558032,-0.0037412005,-0.61545837,-0.29885104,0.5224572,-0.34539643,-0.03319799,-0.5419311,0.033415213,-0.0031156358,0.09189709,0.16749005,0.27605128,0.19132912,-0.076332584,0.0071913684,-0.27397797,0.36139423,0.000100904275,0.18397999,0.18306255,-0.049207296,0.283233,0.2964079,0.66138256,-0.32841152,1.1274698,0.4086995,-0.16588712,0.053753573,-0.23659304,-0.6032756,-0.59454095,-0.12997517,-0.093875006,-0.6327022,-0.26591352,0.082490705,-0.43030554,-0.9965544,0.61094517,0.02997647,0.05360634,0.098699674,0.6388325,0.6642639,-0.071398,-0.12189678,-0.057012618,-0.318858,-0.50818646,-0.36869547,-0.4648571,-0.48206612,-0.16021928,1.1958811,-0.21916294,0.3064575,0.25112948,-0.26567593,0.08940763,0.20329335,-0.021119306,0.061230797,0.9074774,0.08554066,-0.44825655,0.27807215,-0.22264226,-0.13577226,-0.6856203,0.44829136,0.67964166,-1.0228356,0.6196336,0.49438137,0.03368939,-0.1814986,-0.45979837,-0.13306214,0.041163035,-0.22712652,0.47844872,0.24047518,-0.68324214,0.42537233,0.27385718,-0.33906367,-0.7336553,0.22049253,-0.14279126,-0.5726963,-0.09453331,0.42465773,-0.19334105,0.0520202,-0.30097553,0.127924,-0.28690678,0.21020555,0.06955833,-0.25945073,-0.004513619,-0.30329233,-0.33843368,-0.72456443,0.13943465,-0.61064166,-0.4388237,0.26754937,0.20859022,0.008326663,0.3858885,0.47355717,0.4146501,-0.37217075,0.10784573,-0.28995255,-0.43405965,0.30000597,0.46133786,0.4346006,-0.4731098,0.5015705,0.08421524,-0.31273466,0.01806678,-0.052749276,0.4112277,-0.13931812,0.3507832,-0.12908046,-0.119820826,0.23357524,0.7256742,-0.05509228,0.63612187,0.22512433,0.028080652,0.3286216,-0.03075774,0.2198532,-0.27913806,-0.5577951,0.033797625,-0.16560431,0.18433094,0.35170332,0.41892782,0.32765946,0.031109154,-0.1867698,0.013450068,0.12060467,-0.05699311,-1.5961418,0.28768247,0.27130088,0.8327345,0.31482813,0.10207578,-0.21449633,0.55949116,-0.29350123,0.113080546,0.26759666,0.003124403,-0.0771011,0.6211296,-0.5080936,0.49417147,-0.12228518,-0.045941524,0.13379563,0.063127026,0.34636182,1.0361536,-0.29657266,0.16232422,-0.0845225,-0.069452,-0.10814099,-0.30504316,0.075250566,-0.63409805,-0.5089492,0.9197716,0.25607795,0.6863149,-0.33333847,0.045028258,0.010472126,-0.2345848,0.3891501,-0.024390923,0.009545388,0.23503964,-0.5722586,-0.06770302,0.5386738,-0.24117617,0.005991923,-0.033828855,-0.089366876,0.03751735,-0.09946327,0.02009021,-0.13509564,-0.86348915,-0.079254806,-0.5632283,-0.46207795,0.45997688,-0.11937423,-0.0033447084,0.3385871,0.038127203,-0.08912208,0.5279184,0.066314645,0.93836105,0.2779511,-0.23356156,-0.23241296,0.20844495,0.40535858,-0.33910322,0.23037995,-0.24117573,0.4277954,-0.565578,0.70756453,-0.16148217,-0.58401936,0.103212155,-0.18395136,-0.1364332,0.35973915,-0.19923364,-0.028391035,0.37802026,-0.06618905,-0.37951797,-0.041913442,-0.36105162,0.18720399,0.34845024,-0.24934591,-0.14999898,-0.15743585,-0.071035914,0.57669497,0.08629823,0.5104915,0.5192066,0.072582364,-0.21845365,0.15891878,0.2959191,0.591033,-0.08998033,-0.18770166,-0.6015058,-0.4026758,-0.29115075,0.46419254,-0.026453963,0.12265343,0.25579613,-0.07782209,1.1061304,0.11946707,1.1756661,0.0011588745,-0.37559894,0.075409584,0.56685185,-0.13381423,0.04539563,-0.5079961,1.0492982,0.45149878,-0.24173129,0.062281072,-0.552752,-0.18184015,0.4226193,-0.3174092,-0.010800472,-0.2273815,-0.6214981,-0.36321315,0.1118712,0.3303227,-0.020635894,-0.24591604,0.32797056,0.26488736,-0.1748615,0.025111869,-0.72004455,-0.23079069,0.46950242,0.19509436,-0.24874626,0.20733085,-0.29199696,0.45238122,-0.75751257,0.03593528,-0.5285121,0.04992784,0.18049313,-0.38976866,0.10650065,0.13700843,0.2299563,-0.6919524,-0.18973601,-0.21352126,0.49096152,0.24719824,0.20189479,0.6463066,-0.2623327,-0.11300428,0.1670507,0.6115666,1.3213208,-0.32807776,0.15845172,0.10813502,-0.3606221,-0.5483195,0.47783732,-0.29263014,-0.096243896,-0.14673932,-0.531954,-0.65565735,0.2700786,0.15403649,0.107074074,0.009629054,-0.52976733,0.010834694,0.31303543,-0.27946335,-0.064495996,-0.16685413,0.2092075,0.5566685,0.123198405,-0.3656645,-0.12053765,0.25587016,-0.35795784,-0.33194658,-0.14625154,-0.46330193,0.16412576,0.03834027,-0.35204628,-0.22434223,0.03764067,-0.62960726,0.06435752,0.37107685,-0.24896458,0.18241335,-0.2622714,0.03763449,0.9424411,-0.1741271,-0.013445326,-0.41823485,-0.6895363,-0.8399639,-0.27645212,0.0017958283,0.26358145,0.07123633,-0.55538243,-0.100915216,-0.11913304,-0.2928409,0.11881101,-0.49771532,0.37999606,0.34902257,0.39293304,-0.45183596,-1.0664896,0.21395461,-0.020098979,-0.5409499,-0.5532324,0.46740502,0.07809909,0.83295333,0.07266058,-0.06287686,-0.012847845,-0.5447584,0.21352601,-0.2216821,0.11119362,-0.8233226,-0.19290498,575 -478,0.32698306,-0.4153019,-0.4568508,-0.07372327,-0.56168926,-0.009706276,-0.121080205,0.23424257,-0.16074672,-0.54159087,-0.07101375,-0.08694384,-0.034488004,0.25641376,-0.20630424,-0.3017104,-0.32893568,0.23304787,-0.6220214,0.67267865,-0.36392975,0.4683203,0.18996796,0.17798738,0.16156694,0.32056358,0.18920697,-0.019475846,-0.09111788,-0.06988372,-0.2267668,0.26298138,-0.646089,0.3174995,-0.2235965,-0.5411739,0.16577122,-0.43345478,-0.09526224,-0.67116517,0.09254299,-0.89253575,0.6525496,-0.12632297,-0.21911772,-0.021798015,0.10305577,0.43556663,-0.19374704,0.20476069,0.29239312,-0.08828802,0.040828686,-0.42838764,-0.059033714,-0.33554655,-0.39929768,-0.034347564,-0.6077028,-0.26684338,-0.037734907,0.17691861,-0.18304026,0.08040893,-0.24124144,0.2868013,-0.5077738,-0.1255971,0.18243293,-0.032000028,0.39594027,-0.6024905,-0.09257846,-0.21739875,0.27506563,-0.181049,-0.011432792,0.43139213,0.016824331,0.5787672,0.09755111,-0.1904435,-0.17454518,-0.18937674,0.10691934,0.4291584,-0.2637929,-0.19714616,-0.1304469,0.05657546,0.4154772,0.26808962,-0.057466585,-0.3263987,0.023306863,-0.19359148,-0.13896014,0.18312278,0.433947,-0.18940838,-0.2917538,0.09218548,0.6357421,0.06890006,-0.16589968,0.008074875,-0.06362851,-0.40758926,-0.19459201,0.17229234,-0.00379166,0.41643196,0.0715249,0.07763733,0.73476833,-0.16514812,0.019646117,-0.21931358,-0.15077804,-0.12598507,-0.0024183989,-0.37026313,0.07526283,-0.4754517,0.08903448,-0.17355537,0.674435,0.09634805,-0.6863542,0.19373408,-0.6082201,0.026715236,0.011164508,0.6273161,0.42167744,0.61579406,0.0625454,0.78840923,-0.41249985,0.14831017,-0.18478642,-0.15415426,-0.14941426,-0.16816266,-0.17780767,-0.48688444,0.18869296,-0.19302268,0.048757453,-0.3300657,0.35066622,-0.60873145,3.9396542e-05,0.16715908,0.65099186,-0.4343205,0.2769437,0.7885967,0.99156296,1.1341646,0.14738202,1.2091467,0.2881306,-0.26619598,0.02591857,-0.21167357,-0.57188445,0.09986083,0.57851803,0.2452599,0.3164213,0.047650952,0.06852226,0.34283024,-0.43890694,0.10828425,-0.32323223,0.44082,-0.05360139,-0.12759756,-0.6339698,-0.19035599,-0.020864965,0.044027664,-0.2578656,0.16621885,-0.33598137,0.44487068,0.14043768,1.504613,-0.3727834,0.07798183,0.17542766,0.23174353,0.17635547,-0.08122238,-0.028373409,0.37469912,0.48843774,-0.045321785,-0.61655027,0.21652505,-0.27806097,-0.59361976,-0.18114176,-0.2418985,0.06203198,-0.09494831,-0.46456614,-0.40127322,0.112062335,-0.33041698,0.3390488,-2.3269272,-0.110495806,-0.24417453,0.26934347,-0.2859045,-0.20551722,0.053738806,-0.3243677,0.2861337,0.35364726,0.28636858,-0.5672003,0.49660197,0.4412096,-0.38266727,-0.12788187,-0.6984617,-0.08641473,0.016505476,0.46063423,0.066086695,-0.1277066,-0.08051986,-0.0038021845,0.62078464,-0.29702595,0.10892685,0.5334314,0.2628002,0.16296665,0.5404463,0.17507349,0.33229938,-0.42442662,-0.1314288,0.47478685,-0.14470677,-0.007731442,0.19156215,0.17490889,0.36737362,-0.6821719,-0.6448666,-0.73603964,-0.46557692,1.0950763,-0.2046447,-0.5273782,0.18243258,-0.025727382,-0.078943595,-0.044622567,0.23513548,-0.14435916,0.21654531,-0.6688613,-0.030394422,-0.0901695,0.35650665,0.0677064,-0.006043054,-0.46491888,0.66072196,-0.06890753,0.6011872,0.45305166,0.37845835,-0.023802383,-0.25537443,-0.03428681,1.0167992,0.5402701,0.0114348335,-0.1693873,-0.261091,0.19495907,-0.083590224,0.095363386,0.2680152,0.8862319,-0.042329736,0.19134007,0.2852586,-0.13635416,0.06613921,-0.08397155,-0.22618045,-0.0506096,0.2117363,0.34776992,0.32501093,0.049199708,0.4713254,-0.3020446,0.4581729,0.005626968,-0.59916246,0.3867968,0.7320389,-0.21565068,-0.0391333,0.5153867,0.6949745,-0.36532313,0.5414806,-0.703049,-0.15465455,0.6053983,-0.24051763,-0.44257042,0.3176864,-0.2674782,0.390821,-0.944682,0.4418831,-0.43104172,-0.49709633,-0.7742619,-0.20333146,-1.9539179,0.23098274,-0.16245958,-0.16706295,-0.056458883,-0.28816155,0.3606712,-0.6808979,-0.5316946,0.06582271,0.12297501,0.4375139,0.0719645,-0.054307584,-0.25042704,-0.3902712,-0.10332155,0.29744396,0.16436948,0.1250064,-0.19698493,-0.4890183,-0.16338311,-0.22069332,-0.63549674,0.18905976,-0.6423624,-0.45299858,-0.19928731,-0.46260595,-0.22687353,0.5501901,-0.082272254,-0.05223803,-0.13944772,-0.009909375,-0.22454132,0.18074356,0.19605933,0.35011038,0.1772275,-0.2717376,-0.021993961,-0.46647277,0.22590348,0.14138612,0.06536294,0.1799585,-0.29475227,0.17679061,0.4863235,0.6477645,-0.08904467,0.8814766,0.4834095,-0.2516677,0.33284917,-0.42267385,-0.37439808,-0.80229014,-0.425533,-0.042783994,-0.37048978,-0.61600405,0.07017249,-0.28467897,-0.7110814,0.7579961,-0.18758737,0.3268737,0.021916376,0.32982704,0.323857,-0.08210548,-0.07576526,-0.22519366,-0.1573924,-0.42906922,-0.39384,-0.8002433,-0.4683192,-0.2499719,1.3093847,-0.118010946,0.019900432,0.05270671,-0.30304033,0.34556842,0.03899041,0.108634576,0.36913842,0.33867306,0.1008269,-0.69678813,0.37674993,0.2719265,-0.1140344,-0.296916,0.06718888,0.72847646,-0.6358074,0.27752897,0.15744771,0.09516067,0.11229302,-0.5094509,-0.039225526,0.010665404,-0.37306204,0.39544603,0.12724781,-0.51659673,0.474195,0.3568124,-0.38748756,-0.6987985,0.13692226,-0.074631795,-0.15405545,0.092539735,0.3241797,-0.078952774,-0.17229891,-0.28001356,0.2548527,-0.41823024,0.26697198,0.3118612,-0.07028923,-0.009980346,-0.23613071,-0.3642258,-0.81585914,0.27389312,-0.38232654,-0.2568379,0.40321735,-0.016037975,-0.25553796,0.36233148,0.16800635,0.48385257,-0.29477423,0.09849744,-0.10503466,-0.30992624,0.3200999,0.45735258,0.21069585,-0.2731332,0.46781558,0.03753844,-0.10891642,-0.31635508,-0.020862805,0.30699447,0.07828973,0.097061686,-0.34566903,-0.21819162,0.5035506,0.74272907,0.24676748,0.5468172,0.0024778268,-0.23091304,0.3381458,0.20237528,0.09774738,0.08906656,-0.23926142,0.20269196,0.18358366,-0.005974103,0.38967124,0.17391801,0.29546627,-0.12051549,-0.10474624,-0.01209751,0.35587564,-0.19360103,-1.0796729,0.22909215,0.13049322,0.6272484,0.6865665,0.21628782,0.10877253,0.53542525,-0.48647544,-0.049574196,0.35453525,0.011457758,-0.39746907,0.6255951,-0.5969803,0.29791164,-0.07190175,-0.000268057,0.092472635,-0.11304832,0.3550994,0.85766345,-0.115440965,-0.03123339,-0.083180256,-0.010560983,0.010699489,-0.40299812,0.021024564,-0.23646823,-0.43283033,0.62752813,0.17846014,0.477276,-0.13673164,-0.05188089,0.1673131,-0.32402918,0.56639194,0.09093604,0.06584123,0.03177155,-0.19245787,-0.19386463,0.5121862,-0.0031160542,0.024449902,-0.06190757,-0.5866456,0.15444212,-0.04304866,-0.012394832,0.14336355,-0.65526295,0.31421384,-0.38487926,-0.301423,0.31192514,-0.047100868,0.035479564,0.06290589,-0.0568124,-0.25684574,0.055843476,0.14633079,0.76576084,0.056901593,-0.33634076,-0.09736871,0.076558776,0.17243645,-0.37859637,0.18792011,-0.11245748,0.122346796,-0.7861766,0.5252659,0.061320074,-0.37482414,0.3824319,-0.28555688,-0.1592025,0.50783724,0.03436764,-0.06747576,0.07985401,0.07155243,-0.24505083,-0.28800553,-0.2870519,0.06642108,0.0615494,0.065800734,0.03301314,-0.1113953,0.013361065,0.7266422,0.13159385,0.508493,0.16573702,-0.077191114,-0.53099835,0.08062967,-0.06118806,0.18702814,0.10135051,0.2857418,-0.15099466,-0.45105448,-0.2517225,0.009053563,-0.24136059,0.30163702,0.10659128,-0.4509265,1.0849847,0.048021138,1.1932623,-0.010859762,-0.30404267,0.065078035,0.55954975,-0.14479709,0.09677531,-0.3472019,0.92195374,0.68005645,-0.10712313,-0.04062166,-0.23759554,-0.27242798,0.23760554,-0.2913173,-0.01597367,-0.114992246,-0.5229719,-0.63766706,0.19880913,0.34229207,0.03183653,-0.0029226243,-0.04501713,0.20322953,-0.034070335,0.37657598,-0.32271904,-0.13954255,0.15328793,-0.035930555,-0.061046857,0.11984187,-0.55553836,0.31314704,-0.65230995,0.2842033,-0.36424154,0.1307652,-0.003149867,-0.29781228,0.010006699,-0.011975833,0.21970798,-0.33241183,-0.3290123,0.0516954,0.5570424,-0.15267135,0.23828271,0.782782,-0.25464806,0.29094929,-0.042539943,0.34986755,1.1285423,-0.36862373,-0.0008775592,0.17302577,-0.5314435,-0.48058322,0.33386388,-0.18447383,-0.19031276,-0.13257952,-0.5628789,-0.4066329,0.2282268,0.30126998,-0.14263509,-0.055771586,-0.48122665,-0.032610517,0.36665395,-0.48684406,-0.16617772,-0.23107457,0.47197446,0.74408966,-0.35391882,-0.4610967,0.059545867,0.26354656,-0.5350713,-0.34707513,-0.11104089,-0.22591887,0.51940984,0.05178914,-0.26792863,-0.050508764,0.17236368,-0.35648522,-0.3369592,0.22342502,-0.3727808,-0.08633475,-0.3322532,-0.016221954,0.8425025,-0.048767872,-0.32085818,-0.43937835,-0.43614265,-1.0036114,-0.5641801,0.5554804,0.29918072,0.112170205,-0.4754565,0.2705829,-0.23237583,-0.19984205,0.09770717,-0.3728227,0.33041117,0.31352663,0.44315848,-0.32829806,-0.72252935,0.31324974,0.1942804,0.11263404,-0.55783856,0.76053727,-0.040186286,0.6177658,0.046606116,-0.101672545,-0.044427585,-0.5716558,0.24893169,-0.23765509,-0.15503731,-0.7579282,-0.11159326,585 -479,0.2998212,-0.20368661,-0.4247642,-0.09670154,-0.19633774,-0.01818316,-0.23171844,0.18520153,0.17660537,-0.31722623,-0.018266082,-0.2320554,0.049667038,0.17401312,-0.117644615,-0.72319794,-0.13122256,0.02857081,-0.679072,0.57992846,-0.43206462,0.22068074,0.15305234,0.15476485,0.09549921,0.27416107,0.26118067,-0.23763637,0.07570897,-0.02404301,-0.00087280787,0.08261279,-0.77585447,0.15660183,-0.14856632,-0.032921545,0.12191224,-0.29227313,-0.61483943,-0.71483886,0.31875318,-0.7533511,0.48068503,0.17660162,-0.25204128,0.32515407,-0.0036176953,0.23428059,-0.4243235,0.13317193,0.19362506,-0.005045993,-0.05408412,-0.025676157,-0.15840735,-0.32588914,-0.60810757,0.098721825,-0.4941866,-0.3018089,-0.45931748,0.055276256,-0.35465094,-0.07846235,-0.12329104,0.32737175,-0.4318386,0.017961,0.2539886,-0.04553003,0.34781307,-0.5828739,0.048165653,-0.17815523,0.16313317,-0.14304976,-0.16487162,0.42347285,0.2255419,0.38973188,0.03996805,-0.21360943,-0.08215829,-0.07541631,0.16868581,0.40894505,-0.2342755,-0.31166703,-0.019483803,0.045525305,-0.014377473,0.14085978,-0.082332626,-0.46690673,-0.10736004,0.058648404,-0.046589263,0.26849014,0.6225672,-0.23240569,-0.38379017,0.33000636,0.35964727,0.3137512,0.0767243,-0.014287536,-0.0034500095,-0.59108293,-0.16704348,0.19924144,-0.22141302,0.5346859,-0.12355016,0.052072454,0.6388788,-0.16153696,0.07622909,-0.12057377,-0.03961476,0.12770241,-0.10773473,-0.17079438,0.29575175,-0.54609686,0.18567468,-0.18516822,0.68500817,0.19762142,-0.65649134,0.51279813,-0.5610241,0.23406434,-0.056824088,0.6326771,0.8457801,0.30639657,0.0720763,0.7463202,-0.5264932,0.15094325,-0.090754405,-0.4380808,0.33115783,-0.1898206,-0.057929743,-0.33612007,-0.2396314,-0.029632227,-0.21436603,0.0068975175,0.32436213,-0.53186524,0.033779986,0.0110321,0.7297227,-0.30236173,0.033453584,0.40996864,0.96785504,0.868801,0.1005558,1.2557856,0.36648232,-0.27308407,0.40268874,-0.29412356,-0.9075107,0.19286713,0.40889812,0.11518967,0.19878559,0.09971933,-0.18707402,0.23773184,-0.45248514,0.07279148,-0.29722527,0.3471364,-0.08649992,-0.1533352,-0.34136257,-0.19722867,-0.1074558,0.12791313,-0.09058435,0.29292107,-0.13837649,0.06277863,0.035667527,1.4503534,-0.20446433,0.2541741,0.0883821,0.5015919,0.229103,-0.1788197,-0.10040756,0.31624562,0.466806,0.30962968,-0.65396917,0.13798583,-0.18228228,-0.31584305,-0.16577384,-0.37405285,0.12480914,0.07082375,-0.37219235,-0.079312906,0.11424885,-0.3048634,0.4970787,-2.7174115,-0.11193369,-0.11926542,0.3245124,-0.31677675,-0.17890158,-0.20278727,-0.47237173,0.5033844,0.36203933,0.5382926,-0.5949462,0.13254859,0.46422502,-0.54272985,-0.003291905,-0.5419224,-0.07150592,-0.014335955,0.48034105,-0.0060175485,-0.023194566,-0.019023884,0.31121415,0.4119309,0.15744832,0.027421901,0.15990876,0.35029808,0.0676296,0.4157064,-0.09814894,0.32030553,-0.27413717,-0.18686096,0.43922064,-0.0813825,0.37819886,-0.112800635,0.13338992,0.22015204,-0.51154673,-0.93231666,-0.5932558,-0.45195183,1.1677636,-0.43331283,-0.4585082,0.3610175,-0.11427285,-0.09051515,-0.051394336,0.5912767,0.021738788,0.19072117,-0.7071643,0.051399656,0.026514815,0.3274646,0.16603367,0.032020085,-0.41911998,0.6005686,-0.05861113,0.13592042,0.32227045,0.18668255,0.12634805,-0.58506984,0.13917877,0.849052,0.3794081,0.085034244,-0.22063844,-0.2650352,-0.023096355,-0.1196819,-0.010545512,0.55467147,0.7833571,-0.038956583,0.060273502,0.10759834,-0.016670082,0.123433575,-0.12769522,-0.31925276,0.0042165774,-0.047654334,0.5173764,0.56206596,-0.09758348,0.2776345,0.07369367,0.15367362,0.012974701,-0.42468023,0.5274172,1.0686283,0.06910253,-0.076818295,0.5216071,0.5198514,-0.20252274,0.3933187,-0.54603547,-0.31152788,0.48723164,-0.1860009,-0.46640876,0.33044624,-0.34852022,0.03963875,-0.6802661,0.39682022,-0.31559685,-0.4303593,-0.5214337,-0.018218726,-3.85453,0.20598142,-0.3701151,-0.17159887,-0.15367256,0.03309554,0.46840897,-0.4471984,-0.4117916,0.22519521,0.05374641,0.50751203,-0.121085085,0.041822977,-0.21335186,-0.11850927,-0.32088667,0.19239187,0.30690703,0.17930092,-0.18068603,-0.3764649,-0.24670537,-0.18561946,-0.4291627,0.13439612,-0.47430465,-0.5075539,-0.26393634,-0.5538222,-0.024426047,0.8149997,-0.21641256,-0.025765078,-0.14012754,-0.015245655,-0.1345773,0.19348504,0.36110988,0.28688312,-0.024367508,-0.048136335,-0.28999677,-0.3183884,0.33874622,0.18039492,0.30893952,0.38611788,-0.19254704,0.023049304,0.5257485,0.4549026,-0.28569728,0.7971168,0.43921795,-0.12297162,0.33754608,-0.25544378,-0.24337217,-0.5955773,-0.39425823,-0.18647252,-0.2671154,-0.6037938,-0.09661948,-0.29827586,-0.6581941,0.42434835,-0.17559804,0.27073738,-0.0086430395,-0.05504281,0.37930062,-0.11095597,-0.075407855,-0.06736316,-0.12800929,-0.5362039,-0.22706138,-0.60320884,-0.5346354,0.22050892,0.8633738,-0.2778338,-0.16737649,-0.073357865,-0.19193129,-0.08288447,-0.18625145,0.01301081,0.2549778,0.35500082,0.16628885,-0.74187034,0.6937429,0.06136799,-0.17422691,-0.69127476,0.21619208,0.5577834,-0.6883425,0.5524116,0.26745114,0.057704594,-0.06851681,-0.51314706,-0.34487048,0.040420566,-0.2558279,0.33275932,0.06649439,-0.78716516,0.37217078,0.12507921,-0.4175312,-0.675976,0.5743365,-0.029855559,-0.31478074,0.10985255,0.31023726,-0.1582187,0.13098994,-0.13638154,0.45964575,-0.2774714,0.35326698,0.26122788,-0.06826972,0.3878823,-0.09089075,-0.15597937,-0.5610007,0.1279565,-0.42489752,-0.26152706,0.3376722,0.09540326,-0.041488107,0.037952505,0.08946431,0.46053424,-0.14910842,0.16027157,-0.008889573,-0.4240252,0.41627678,0.50836176,0.48816195,-0.39662382,0.6405934,-0.010048364,-0.24324729,0.06309112,0.2737054,0.35280243,-0.036093056,0.2393804,-0.06795376,-0.024843782,0.26290038,0.9304576,0.08188777,0.46215174,0.039994378,-0.021578338,0.4611413,0.12718216,-0.025153415,0.029243529,-0.5191384,-0.047205605,-0.0035087892,0.21301118,0.3960397,0.06815784,0.21530096,-0.18116894,-0.27247468,0.043701477,0.31516057,0.2103934,-0.9974028,0.2648075,0.15282695,0.5471373,0.62350804,-0.0021696878,0.055906318,0.65575874,-0.07830126,0.022765351,0.25119624,-0.06019656,-0.6711582,0.52173007,-0.593026,0.32566303,-0.014604209,-0.06043643,0.15054108,0.0813771,0.38514787,0.8395794,-0.17318912,-0.07421471,-0.07304357,-0.3064485,0.16848142,-0.3693952,0.14399531,-0.27893475,-0.4832911,0.546531,0.53453207,0.2080742,-0.07821892,-0.025735008,-0.0537112,-0.20364963,0.29172823,-0.0734389,-0.07229742,-0.004231078,-0.6978464,-0.2592208,0.5809065,-0.0904956,0.15855849,-0.11840587,0.023808075,0.26145956,-0.29542065,0.014241091,-0.19057314,-0.78683656,0.06987547,-0.49733225,-0.26881692,0.39354214,-0.3406877,0.33019647,0.14363779,0.014973627,-0.4151915,0.3725907,0.059241615,0.7033066,-0.1294205,-0.24394502,-0.5067528,0.055405475,0.15644339,-0.2185485,-0.1312252,-0.21784271,-0.04214459,-0.72162664,0.49104553,-0.1390749,-0.26048505,0.06136941,-0.19233611,-0.059267487,0.6456631,-0.1002062,-0.1554378,-0.11377026,-0.18903187,-0.24164869,-0.13382296,-0.05598822,0.21340862,0.32646576,0.05508872,-0.0104616415,-0.047763128,-0.09434421,0.35855204,0.19964997,0.33877197,0.1337611,0.113129675,-0.18944502,-0.035389,0.28976682,0.47338486,0.25359362,0.18866968,-0.18392897,-0.43792614,-0.42470056,0.056508534,-0.0990909,0.39723402,0.08137425,-0.40365896,0.60295856,0.10931873,1.0480721,-0.0061672097,-0.19527832,0.12367363,0.5293731,-0.05904596,-0.25236732,-0.3404615,0.8890156,0.725133,0.02727485,-0.19415809,-0.28755215,-0.1821781,0.12728201,-0.24998453,-0.016238566,0.04901456,-0.7044867,-0.09012761,0.1507121,0.41675234,-0.0018669942,-0.07994708,-0.20422052,-0.0063035255,0.032236297,0.23904805,-0.5504119,-0.15984729,0.31417316,0.06649683,0.04751721,0.17375861,-0.36298963,0.47935182,-0.48253712,0.031913865,-0.23682687,0.08351584,-0.13690317,-0.2670421,0.21656837,-0.046011303,0.4866387,-0.30332613,-0.27993006,-0.24458267,0.49480978,0.16131945,0.19343229,0.6999179,-0.19972281,0.074549325,-0.0006375291,0.47470936,0.95497745,-0.2558924,-0.03549253,0.26600742,-0.4679682,-0.5721747,0.30751878,-0.4000934,0.219209,-0.12678854,-0.2718032,-0.4243378,0.12986854,0.0916233,-0.00074732304,0.012863551,-0.78395474,-0.2613597,0.12475274,-0.1301425,-0.2955935,-0.4104847,0.2883063,0.7261152,-0.422813,-0.19417599,0.20268805,0.057792496,-0.27650514,-0.47489664,-0.030260669,-0.2384417,0.1251739,0.06486987,-0.24981976,0.047082085,0.19642842,-0.36382005,0.17890474,-0.024550255,-0.40242824,0.013729299,-0.045912284,0.008366479,1.0181668,-0.20480332,-0.07872092,-0.63926643,-0.5608946,-0.87837684,-0.40165514,0.6706471,0.24955034,0.13525836,-0.36046746,-0.04394281,-0.025553342,0.24006605,-0.06061036,-0.36661196,0.4417873,-0.051629584,0.46382824,-0.17281404,-0.78214055,0.09858084,0.1665614,-0.24090454,-0.5517184,0.46723673,-0.12994434,0.6979098,0.07813902,0.11731561,0.20052369,-0.43387604,-0.048508532,-0.2569992,-0.15106657,-0.67383045,0.15804799,587 -480,0.4603727,-0.27867603,-0.47110733,0.033541147,-0.35226664,0.023878297,-0.45335892,0.24898624,0.28144833,-0.11542962,-0.08310749,0.12885348,-0.13476384,0.3478045,-0.13423903,-0.7606854,-0.20701453,0.045928363,-0.59006447,0.8011022,-0.510345,0.33667874,-0.23667134,0.31298813,0.18897322,0.45295367,0.20281304,0.077731185,-0.078535564,-0.07528794,0.07874538,0.17870982,-0.55824834,0.26227385,-0.24626608,-0.32952467,0.1400033,-0.5101317,-0.23193555,-0.6655814,0.17228864,-0.667572,0.52748877,-0.07201522,-0.114595234,0.056774028,0.24408627,0.30753762,-0.30749828,0.09766967,0.076917425,-0.06862021,-0.08031734,-0.30369514,-0.10217776,-0.097847275,-0.42097315,-0.11678415,-0.65966177,-0.27191144,-0.114483476,0.19224766,-0.29130453,0.05776157,-0.02883929,0.21112405,-0.42022133,-0.018570619,0.27690876,-0.15954266,0.058231104,-0.78253233,-0.018276794,-0.0391344,0.45646566,-0.045764897,0.040155716,0.50472915,0.12057937,0.4130609,0.16343811,-0.2908569,-0.2983457,-0.27397656,0.24884152,0.44686022,-0.099399365,-0.20181021,-0.4191539,0.13856433,0.46724993,0.30180115,0.0009640179,-0.17553282,0.0074094906,-0.34700137,-0.095708355,0.56321156,0.55138904,-0.19860777,-0.27153614,0.29140097,0.68023884,0.50332475,-0.18042217,0.049146313,-0.027717004,-0.35070047,-0.13030449,0.14790085,-0.04554121,0.40681773,0.09418005,0.19723049,0.6043191,-0.069673665,0.021765003,-0.15046991,-0.011743145,0.055272453,-0.4235137,-0.18644704,0.14455687,-0.5029746,0.13584457,-0.09785725,0.46786326,0.08957725,-0.69128793,0.35903826,-0.5209779,0.1007057,0.16430406,0.5301053,0.58867943,0.3640471,0.22879314,0.89819527,-0.33557558,0.25909504,-0.08132337,-0.21163093,-0.17143787,-0.12467365,0.21104598,-0.455092,0.35018554,-0.27527577,0.07884394,0.07706342,0.38373843,-0.42894512,-0.10720042,0.068248115,0.8056003,-0.24616088,0.09229857,0.8357329,1.2100716,1.2029076,-0.1658425,1.1951592,0.2363055,-0.13133518,-0.09225311,-0.32639804,-0.62239736,0.17316069,0.38220435,0.03406518,0.6249901,-0.05641104,-0.03133745,0.1806297,-0.3973753,-0.008025916,-0.019549387,0.32959113,0.26557174,-0.06602859,-0.4556751,-0.15739611,-0.014159381,-0.13111384,0.18141447,0.21032618,-0.2527922,0.34180504,-0.05173862,1.3074769,-0.12634929,0.0822564,0.1986619,0.40941933,0.34851235,-0.030869212,-0.101775214,0.46270627,0.32237726,-0.14573132,-0.6669374,0.10222733,-0.44218636,-0.35698,-0.15038402,-0.3126903,-0.080562055,0.021769142,-0.20073195,-0.1133947,-0.13447022,-0.27231723,0.4166669,-2.7550073,-0.3616455,-0.20252737,0.271687,-0.3260696,-0.14557187,-0.12079992,-0.43646076,0.46612406,0.29652467,0.37703475,-0.30596766,0.40637913,0.4597168,-0.6097885,-0.16670159,-0.37414548,-0.006240219,-0.0012977315,0.6561139,-0.09555197,-0.096048005,-0.11056017,0.35890183,0.7300932,0.1822183,0.17011544,0.6449261,0.40687254,0.049051724,0.47168964,-0.07789079,0.4957692,-0.4475889,-0.045197766,0.42354417,-0.375536,0.45637164,-0.26154917,0.07447873,0.48452908,-0.5243043,-0.8176219,-0.4466191,-0.25476697,1.0951302,-0.29460636,-0.5635356,0.08074772,-0.16972251,-0.065364696,0.062206876,0.52967703,-0.14736855,0.024526546,-0.65986204,0.03858636,-0.09450968,0.13269699,0.03348751,0.033924203,-0.3783438,0.6962877,-0.08533143,0.62956965,0.3998221,0.37054825,-0.04333413,-0.3752761,0.14723013,0.6640444,0.465551,0.004857806,-0.10781113,-0.10240489,-0.019030979,-0.31967166,0.07860933,0.662649,0.5769062,-0.092618786,0.1517081,0.26705107,-0.09995749,0.082773924,-0.13999566,-0.15128966,-0.13559496,0.1052867,0.4438924,0.8247245,-0.14386071,0.23610364,-0.09196406,0.21310684,-0.052316926,-0.42240185,0.55784065,0.44439024,-0.30796078,-0.08993476,0.49178928,0.49354118,-0.41467014,0.5826245,-0.6673732,-0.2830547,0.7651476,-0.16000739,-0.32757488,0.16129749,-0.3295782,0.06008238,-0.6898826,0.22479418,-0.35297093,-0.3063772,-0.42734274,-0.20796444,-2.50992,0.23565248,-0.1647584,-0.17385745,-0.47634146,0.0061826366,0.1833419,-0.69975007,-0.75959486,0.22341476,0.16933592,0.4870966,-0.16167334,0.16765523,-0.19465698,-0.28408507,-0.22883114,0.21363382,0.03009052,0.26270908,-0.10207593,-0.25447705,-0.118584044,-0.0011262213,-0.44064537,0.1316231,-0.3676571,-0.2172793,-0.11203061,-0.52916133,0.035322104,0.5832519,-0.38393202,0.04566902,-0.23139095,0.034812693,-0.12508367,0.03310029,-0.018279893,0.35215256,0.30016065,-0.20898592,0.068809606,-0.24479564,0.5358502,0.028880265,0.29990456,0.024072042,-0.12719451,0.1571327,0.35571298,0.6569924,-0.10724444,0.94774663,0.23505796,-0.09939052,0.3475234,-0.32893184,-0.23391183,-0.5770187,-0.30340937,0.042154968,-0.33523864,-0.7293037,-0.07468283,-0.34326407,-0.8474429,0.4588821,-0.0132663315,0.6219581,-0.072323464,0.18889736,0.355658,-0.23424672,0.061552882,-0.043417867,-0.14167662,-0.4021856,-0.29370707,-0.5953437,-0.48003128,0.24662362,0.701048,-0.44178015,-0.09065298,-0.006201259,-0.47210386,0.10747266,0.05730951,0.08087056,0.3047455,0.33999544,0.3605108,-0.61259073,0.21931338,0.059934873,-0.1966337,-0.4178656,-0.009466559,0.6412597,-0.6400701,0.5463955,0.30135164,-0.025883798,0.11005884,-0.6867881,0.024615819,0.119654655,-0.17311423,0.41604766,0.19915023,-0.69113344,0.4986836,0.10792874,-0.5889479,-0.77371997,0.27643877,-0.11229932,-0.19044006,-0.07618793,0.4831889,0.27320716,-0.02049012,-0.16128953,0.24816035,-0.27992254,0.1727145,0.028506193,-0.1588779,0.27158633,-0.121939525,-0.5372341,-0.6769786,-0.006603543,-0.5250157,-0.22282144,0.4683447,-0.02796024,-0.21601607,-0.10275315,0.3174972,0.40794954,-0.36158293,0.26006302,-0.031403195,-0.39226678,0.29631138,0.45596105,0.4278461,-0.34861284,0.42576838,0.09686584,-0.06353985,0.32476297,0.017245378,0.2744765,-0.026432684,0.3356518,-0.03440523,0.046687674,0.1637107,0.5567749,0.13780892,0.27103874,0.16823383,-0.34477273,0.44534725,0.13192663,0.10633381,-0.19810836,-0.33966732,0.037169714,0.05864886,0.0437291,0.49547863,0.39858943,0.30579066,0.0919266,-0.21955141,-0.08132141,0.31752712,-0.20880935,-1.1060623,0.3274041,0.11943253,0.90401566,0.4459332,0.19831507,0.08249646,0.51211107,-0.08719951,-0.029899647,0.47568303,0.070617475,-0.48257694,0.5976558,-0.3934036,0.35570303,-0.13754871,-0.04165428,0.26930514,0.3057564,0.52579486,0.6748869,-0.21094058,-0.10027246,-0.16605604,-0.21771467,-0.10721302,-0.18290424,0.2516928,-0.23909567,-0.44451037,0.59222984,0.44948572,0.34847802,-0.21159902,-0.016643459,0.006730452,-0.2787663,0.24877921,-0.112839304,-0.07543285,0.05020726,-0.510835,-0.1344496,0.4089656,-0.025343375,-0.011216776,-0.32479593,-0.30314073,0.034473907,-0.19331042,0.06631408,0.05935865,-0.8251866,0.13382258,-0.07368356,-0.45859054,0.32051,-0.1259512,0.074247345,0.23875652,-0.025592577,-0.23661123,0.26944163,0.017028153,0.7940398,-0.046332564,-0.3907241,-0.3051969,0.039518613,0.23766232,-0.28141758,0.26874372,-0.26593068,0.2156841,-0.6190688,0.6514703,-0.21091442,-0.25735217,0.12668751,-0.26893663,-0.19634198,0.55688834,-0.17083351,-0.08871573,-0.12091359,-0.3247531,-0.4893119,-0.30375502,-0.3619573,0.109680906,0.26275513,-0.14613733,-0.1378225,-0.23562217,-0.010911486,0.5208566,0.08726072,0.37527177,0.17821786,0.06755014,-0.3859808,0.09802823,0.23553808,0.29687637,0.24323227,0.14417683,-0.34968874,-0.4786108,-0.34023866,0.51416725,-0.25682622,0.12762089,-0.070095435,-0.28702903,0.9264723,0.11562734,1.117239,0.05401206,-0.2787167,0.07410073,0.66646516,-0.31646666,-0.06964994,-0.36874527,0.9491778,0.59012127,-0.17480914,0.048857115,-0.3538343,-0.20216711,0.2849409,-0.4689477,0.063994214,-0.20843394,-0.33779377,-0.43807745,0.1486328,0.13803211,0.0080710305,-0.19840679,-0.11836188,-0.019699434,0.18131278,0.40384457,-0.5443326,-0.23064362,0.29283255,0.0667197,0.036608458,0.117472015,-0.35439137,0.4431908,-0.665307,0.25395173,-0.40323034,0.0672655,-0.2009916,-0.41992873,0.16193247,-0.08230747,0.2834535,-0.3528838,-0.46826395,-0.1472023,0.1891347,0.0065994305,0.13573658,0.50245196,-0.29019848,0.069728844,0.08091177,0.65097016,1.0646399,-0.27017447,0.06566915,0.17244013,-0.5239518,-0.5960828,0.14936662,-0.48719543,-0.055459976,-0.26049536,-0.49204245,-0.7156002,0.18244389,0.107923664,0.16828713,-0.08026072,-0.7776082,-0.20308897,0.22882614,-0.21573313,-0.20310311,-0.17950991,0.2524269,0.92022556,-0.17605105,-0.58145505,0.10130082,0.23215587,-0.20247194,-0.64388555,0.07567289,-0.15039556,0.34586427,0.12925552,-0.13581063,-0.21996114,0.21826528,-0.52505285,-0.06799954,0.21000825,-0.3201756,-0.14173034,-0.24902055,-0.010604705,0.70878464,-0.39206558,0.022681365,-0.6066329,-0.47176236,-1.0286871,-0.49799448,0.11455438,0.24157543,0.10477544,-0.5745989,0.20360616,-0.366102,-0.08957599,0.18302348,-0.45279,0.24995656,0.18398036,0.5166952,-0.4414064,-0.9406749,0.12279823,0.25673386,-0.22555919,-0.56177956,0.54537374,-0.008439318,0.66445047,0.13824211,-0.15447442,-0.13368282,-0.5599637,0.22356082,-0.3885417,-0.15376553,-0.67336446,0.25373003,598 -481,0.48931524,-0.0030343276,-0.5105416,-0.25668636,-0.3532347,0.16054556,-0.22562978,0.17315255,0.4137017,-0.22144954,0.016345961,-0.056916647,0.047544487,0.40893054,-0.051293265,-1.0003006,0.1186416,0.14677295,-0.4356725,0.2767928,-0.6263861,0.51039106,0.011562629,0.28535554,-0.03219322,0.14455439,0.30562493,-0.18718891,-0.073142536,-0.12941511,-0.1261055,0.1628593,-0.53649175,0.14320016,0.028635785,-0.23512258,0.024548037,-0.33442053,-0.25675103,-0.7283478,0.43607023,-0.6697467,0.4792247,-0.051597007,-0.36686936,0.12192867,0.01677989,0.25574782,-0.36039108,0.20701928,0.21597779,-0.45284313,-0.097791575,-0.17790832,-0.3654129,-0.48193577,-0.5849709,-0.07148874,-0.46152738,-0.25487694,-0.5083934,0.23773351,-0.4853217,-0.096023574,-0.07799981,0.35627064,-0.28886387,-0.04010972,0.31474185,-0.175697,0.13673815,-0.34046957,-0.10628726,-0.021813262,0.24357864,-0.026139854,-0.19476917,0.34160915,0.41418478,0.4429548,0.024594668,-0.34624267,-0.17828062,-0.09794106,0.14184545,0.6368971,-0.1691339,-0.35568315,-0.18377678,0.0055089956,0.10095386,0.13551427,-0.20328525,-0.24929312,-0.015811348,0.2743524,-0.17432417,0.5427161,0.43048105,-0.36099955,-0.19432071,0.34707823,0.3280377,-0.025770243,-0.24660742,0.1880623,0.07618087,-0.66913927,-0.22540331,0.3451284,-0.1160546,0.4228107,-0.13112703,0.08206582,0.87227863,-0.33370665,-0.07193103,-0.20952594,0.02715048,0.0786149,-0.14385006,-0.17151698,0.21939929,-0.55021244,0.0066351336,-0.29149523,1.0207511,0.24859487,-0.838264,0.45448294,-0.44286317,0.17501937,-0.22219123,0.63861334,0.7037696,0.34174034,0.35260513,0.88082296,-0.5225754,0.104486026,0.14914568,-0.37659854,-0.029187847,-0.16912143,0.06252739,-0.39517713,0.06347727,0.12387089,0.034051996,0.29690108,0.19373773,-0.38856998,-0.07466839,-0.15424927,0.74113303,-0.44869545,-0.03949819,0.79740375,0.9211138,0.8642995,0.117391944,1.3919256,0.5711409,-0.29466954,0.04880045,-0.39673546,-0.5087438,0.17745206,0.33130106,-0.2163746,0.22425468,0.017764058,0.0837487,0.32430425,-0.4352958,-0.099939264,0.05605414,0.19929683,0.017558059,-0.15439984,-0.47615832,-0.22454068,0.16075297,0.03311009,0.16246544,0.29043952,-0.28496835,0.42755815,0.035210133,1.0991334,0.14696312,-0.045692023,-0.1335193,0.3993104,0.30288652,-0.16853757,-0.15303023,0.27129707,0.47250244,-0.16732264,-0.60218185,0.016028984,-0.29901478,-0.23237479,-0.23622294,-0.36140782,0.05506428,-0.031280786,-0.32331887,-0.16372505,0.1306509,-0.2884929,0.51884395,-2.3177478,-0.2510972,-0.13213694,0.32881027,-0.04674388,-0.3602837,-0.40546593,-0.63293904,0.36423683,0.22576758,0.39431432,-0.64336294,0.24421738,0.21860936,-0.28345558,-0.2070122,-0.81070966,-0.18433619,-0.11110473,0.26030478,0.043536197,0.0043502874,-0.25458115,0.4428311,0.7607693,0.20555966,-0.013866166,0.1274496,0.43902364,0.043378007,0.5256129,0.14725251,0.5939292,-0.11131574,-0.1608945,0.24187718,-0.41987202,0.22843023,0.07800416,0.14624074,0.35745472,-0.42594305,-0.795852,-0.55251133,-0.4084468,1.2605237,-0.3861645,-0.4890089,0.35405248,0.060784467,-0.3015222,0.09907979,0.55351967,-0.17321941,-0.038668137,-0.5997025,0.0064531225,0.12048998,0.15943071,-0.12090373,0.13273224,-0.08539943,0.5253544,-0.4022983,0.2359736,0.21767725,0.2159461,-0.16975768,-0.5466389,-0.02139118,0.99876004,0.28751785,0.12858045,-0.16609046,-0.22364083,-0.18684718,-0.27267337,-0.0081169205,0.63815534,0.94922364,-0.08050628,-0.080828056,0.27624995,-0.3425798,0.040322147,-0.07269298,-0.39713553,0.14177021,-0.14821856,0.72254175,0.43701643,-0.11307924,0.39340934,-0.06865054,0.18194194,-0.117116146,-0.4823157,0.5335612,1.0360745,-0.1987193,-0.202742,0.4226211,0.35932562,-0.3527875,0.37252745,-0.55479735,-0.16361673,0.7519954,-0.09813591,-0.4205552,0.020265648,-0.29876083,0.054802425,-0.91326034,0.42595267,0.08153158,-0.7784863,-0.40422922,-0.07287357,-4.0561066,0.061106503,-0.16089466,-0.059530582,-0.048094507,0.017003434,0.35035267,-0.353278,-0.44410986,0.07190093,0.06546415,0.6006932,-0.05059155,0.085637346,-0.39106873,-0.13487852,-0.29932985,0.17270727,0.19359493,0.2964862,0.06758462,-0.31299445,0.35290354,-0.33970174,-0.4440737,0.053133838,-0.562841,-0.6526966,-0.2262359,-0.5225978,-0.31204247,0.8756564,-0.4974227,-0.022302547,-0.30915666,0.020780984,-0.19642124,0.5076631,0.33283445,0.11967842,0.078979544,-0.022877285,-0.11385776,-0.3594419,0.29355958,0.11979755,0.16951075,0.24627216,-0.00965505,0.06628932,0.64550865,0.6353599,0.25082865,0.85875314,0.22363672,-0.038130768,0.14807762,-0.42864507,-0.25296634,-0.59525883,-0.44274923,-0.26837817,-0.43564853,-0.3212559,-0.31545183,-0.3577381,-0.71063083,0.3810506,0.04347367,0.12572482,-0.20567085,0.34034756,0.31841594,-0.006737415,0.081878625,-0.07379158,-0.19042651,-0.4771792,-0.21390544,-0.59598684,-0.58551836,0.28812817,1.01638,-0.19342966,0.016882688,-0.09167074,-0.41533083,0.04854786,0.054716315,0.23236455,0.26545033,0.28433293,-0.16927317,-0.6911383,0.3462816,-0.25049788,-0.13446036,-0.90560067,-0.0075441683,0.8238843,-0.6056465,0.5379753,0.40230379,0.22680685,-0.014188652,-0.46593735,-0.3170071,0.2041106,-0.19080687,0.4909183,0.020269645,-0.494304,0.52729744,0.2333649,-0.13733289,-0.55490065,0.44433436,0.037581287,-0.22099316,0.1980336,0.36469284,-0.065344475,-0.043889344,-0.16644348,0.2931907,-0.60043544,0.32203105,0.3497242,0.06432273,0.5786672,-0.0431625,-0.22833511,-0.6812931,-0.29530376,-0.51683986,-0.23397636,-0.061149377,0.046292167,0.116593994,0.11565531,-0.11296078,0.39393583,-0.40534538,0.13281003,-0.15473843,-0.2531866,0.40818214,0.5225601,0.22944324,-0.30352148,0.7056762,0.11741141,-0.035864267,-0.13875403,0.015245638,0.5815838,0.16504356,0.35492787,-0.008035102,-0.13567448,0.055047218,0.75975317,0.17131476,0.42685953,0.16825975,-0.2135826,0.3946106,0.19134995,0.0787862,0.1362497,-0.12649964,-0.18399492,-0.12871681,0.1383518,0.41155404,0.1446947,0.38234395,-0.14127575,-0.37368888,0.28814244,-0.01484894,-0.012948526,-1.3572501,0.4560883,0.13286401,0.5418122,0.29110283,-0.044124153,0.037213154,0.48187944,-0.25826576,0.19140157,0.25777876,-0.010828844,-0.40584603,0.5838712,-0.5954749,0.43469477,-0.19704665,0.038191788,0.13688944,0.31086913,0.33406416,0.9344759,-0.12043098,0.12048284,-0.017037954,-0.26073533,0.14285322,-0.26237032,0.15106694,-0.55490965,-0.30033875,0.465357,0.2733593,0.29135367,-0.24959779,0.022561904,0.047368612,-0.09862872,0.044519994,-0.09671069,-0.0797222,-0.039897066,-0.6858183,-0.45689586,0.42874295,0.054748904,-0.015467094,0.051596098,-0.10634976,0.26583484,-0.12941822,-0.026585136,-0.08128505,-0.66592795,-0.18736579,-0.37156636,-0.50900644,0.3895139,-0.5105346,0.38925457,0.19088125,0.031104816,-0.3801348,0.11753825,0.435254,0.7711666,0.08547691,-0.36656937,-0.4614894,-0.08606727,0.3753341,-0.34399027,-0.08026244,-0.28564954,-0.011862738,-0.5637371,0.3432506,-0.36084768,-0.22925816,0.09582,-0.1775254,0.0030470002,0.4261572,-0.40657058,-0.05211621,0.1420736,-0.06940273,-0.2790193,-0.107081614,-0.2851371,0.2752035,0.031362586,-0.192576,0.01523981,-0.26723567,-0.17854622,0.34171796,0.020685783,0.25734103,0.30754462,0.014596439,-0.12761785,-0.15448332,-0.09578457,0.2679081,0.16111694,-0.22513388,-0.42474964,-0.19875138,-0.18868957,0.3729969,-0.18609525,0.10294398,0.00259558,-0.4856473,0.69812626,0.043036394,1.0782876,0.11709959,-0.20763111,0.08388503,0.5813023,0.050513633,0.16795091,-0.2693877,0.84525007,0.6056016,-0.20645256,-0.20561205,-0.4274281,-0.10587711,0.38314506,-0.21544191,-0.24031743,-0.09227877,-0.7563791,-0.31723386,0.19952027,0.12835874,0.19521621,-0.03149219,0.017385231,-0.018834272,0.13926522,0.52265346,-0.43532965,0.20257418,0.26714557,0.28948596,0.19331326,0.20164193,-0.13375244,0.39463094,-0.55828375,0.28777885,-0.5121878,0.07946875,-0.0082376255,-0.21297656,0.24387442,0.13969831,0.25199997,-0.18033215,-0.12949583,-0.18745351,0.6108593,0.28872988,0.19817187,0.70309335,-0.24753931,-0.1418644,0.24448554,0.56244504,1.3993556,0.00090134994,0.11186678,0.40697935,-0.32741997,-0.37270707,0.25450736,-0.18433759,0.06063888,-0.20556392,-0.32087398,-0.43407494,0.25996163,0.1496837,-0.12764597,0.20544434,-0.31462222,-0.41859478,0.36589387,-0.34639478,-0.35126114,-0.34206447,0.39385745,0.5184927,-0.3560755,-0.3699076,-0.0697373,0.32065803,-0.29465884,-0.5154871,0.0083243,-0.24003401,0.43340138,0.044519957,-0.43674436,0.09546129,0.31713843,-0.3884824,0.19187927,0.3900102,-0.41764742,-0.021227049,0.06130785,-0.1253282,0.95616966,-0.10531973,0.0704127,-0.9043718,-0.39055213,-0.9421827,-0.36747584,0.49325997,0.3400731,-0.039466582,-0.5289229,-0.19337375,0.011911469,0.031997453,0.06288905,-0.65335304,0.24624372,0.13895108,0.4757657,-0.05400032,-0.931447,-0.2350456,0.05934017,-0.4503308,-0.55253917,0.4712827,-0.22493498,0.7424229,0.093252234,0.15102614,0.2346032,-0.3425167,0.2694418,-0.25815046,-0.29752174,-0.64655906,0.22247703,605 -482,0.35110936,-0.27358985,-0.39172015,-0.0043940204,-0.3306114,0.1892551,-0.12994823,0.62491083,0.25615284,-0.357511,-0.19169159,-0.3043171,0.015628653,0.43725386,-0.15833613,-0.47000524,0.034773737,0.21013567,-0.56536335,0.4315144,-0.5659162,0.42317754,0.027677609,0.61477154,0.19686195,0.13367346,0.023150312,-0.032389697,-0.23176207,-0.2514985,-0.06533774,0.122692876,-0.4434174,0.13040164,-0.24607079,-0.5225172,0.13596317,-0.5947061,-0.43641517,-0.8189613,0.2875345,-0.72582763,0.59681505,0.12958807,-0.282127,0.19075625,0.1826738,0.5807122,-0.28405818,0.010363592,0.20881936,-0.11468272,-0.058229677,-0.24002683,-0.3566262,-0.34770006,-0.6748992,0.07462202,-0.27600798,-0.07776547,-0.17335467,0.32799584,-0.09068559,0.03659622,-0.13388725,0.3610025,-0.50593954,0.3093009,0.22321542,-0.14802766,-0.00936492,-0.64031947,-0.167407,-0.09225625,0.12538856,-0.19375546,-0.22768612,0.275472,0.26116142,0.50495684,-0.117766485,-0.14013682,-0.33320045,-0.07240271,-0.18446498,0.71497726,-0.16038291,-0.2904876,-0.24345341,-0.19010782,0.39743033,0.17807563,0.12248762,-0.19842382,-0.11584382,-0.2563133,-0.23162211,0.23010302,0.53401065,-0.46360686,-0.21300706,0.3310713,0.59189653,0.1044595,-0.07037894,-0.031608824,0.12523127,-0.67530733,-0.15589973,-0.029092023,-0.23826377,0.51391184,-0.13017522,0.15028773,0.6935892,-0.16182306,-0.04708516,0.18145956,0.14130487,0.037040416,-0.36344844,-0.5796433,0.31758213,-0.38357115,0.07916815,-0.40292284,0.698905,0.10267242,-0.5422372,0.29188246,-0.6107632,0.10407629,0.09936533,0.45693725,0.4573471,0.43795544,0.37572452,0.5160568,-0.35887542,0.08361007,-0.1003061,0.038961444,0.07605722,-0.11369171,0.18358107,-0.3827351,0.14238751,-0.15991478,-0.2396013,0.32767886,0.5804062,-0.6847108,-0.14295872,0.11325475,0.8673479,-0.28177407,-0.040283404,0.943491,1.0168712,1.009584,-0.047531407,1.3054817,0.48707494,-0.28955406,-0.06109119,-0.3525,-0.57824534,0.1734277,0.21854007,-0.43050522,0.18012393,0.13922225,-0.2100549,0.5404858,-0.46202987,-0.059231766,-0.16432485,-0.026123302,0.11469663,-0.07185509,-0.41382188,-0.45997357,-0.061248247,-0.11458012,0.28127116,0.34875134,-0.45543212,0.36747926,-0.0632038,1.4925454,0.028380122,0.11960006,0.07510761,0.39259148,0.19894011,-0.1391992,0.019198049,0.33202195,0.21914445,-0.08368152,-0.5273695,0.1242336,-0.25329462,-0.30173475,-0.16415334,-0.1273867,-0.26197562,0.0068506855,-0.5325428,-0.21580417,-0.14340158,-0.021672288,0.35852146,-2.5144064,-0.12921563,-0.038910095,0.4465757,-0.14404905,-0.4501737,-0.061023593,-0.39862767,0.49723846,0.21558043,0.43969086,-0.6548677,0.36264753,0.39555052,-0.5538365,-0.1726798,-0.677098,-0.17324592,0.05280104,0.110534884,-0.06744062,0.014265814,0.04251924,-0.020432949,0.51500654,-0.09708087,0.25164697,0.23964182,0.44577703,0.05474805,0.45334134,0.11908593,0.6962077,-0.4052167,-0.3349073,0.24779817,-0.7580467,0.282408,-0.015831053,0.0021625236,0.52074313,-0.460889,-0.9102753,-0.5956046,-0.1797613,0.8272204,0.035017006,-0.38716075,0.06734156,-0.32001558,-0.27910537,-0.02937695,0.6697981,-0.20608254,-0.12592658,-0.7277381,-0.20972729,-0.0606498,0.33413818,-0.017378366,0.03963992,-0.38737863,0.5786955,-0.21290575,0.23547423,0.41065583,0.28247136,-0.5059847,-0.46035495,0.058753602,0.7996325,0.36255857,0.21902534,-0.11806719,-0.32008192,-0.25025216,-0.16387908,0.034865525,0.5515646,0.57445943,-0.14510529,0.15435006,0.29274097,0.00426771,0.04560811,-0.18739271,-0.29164606,-0.11496853,0.2539335,0.6343896,0.7018195,-0.0622327,0.30721983,-0.12366473,0.55239284,-0.31074715,-0.5241998,0.50090235,0.89769334,-0.116471455,-0.104969226,0.6753778,0.38020244,-0.25198537,0.46589798,-0.736602,-0.40118334,0.33510855,-0.0781829,-0.41300625,0.16742383,-0.2227259,0.023524417,-0.7673773,0.5214187,-0.17298341,-0.48561567,-0.7221675,-0.1643642,-2.584234,0.21049501,-0.39902884,-0.005150876,-0.051181886,-0.1959043,0.01608766,-0.44422296,-0.5375655,0.22118987,0.19168709,0.5093835,-0.079174094,0.07636877,-0.226825,-0.30410185,-0.4553971,0.11232563,0.23361687,0.42417493,-0.06994506,-0.45836225,0.118134856,-0.11225267,-0.4532084,0.050191324,-0.8699935,-0.2915266,-0.21792126,-0.63757557,-0.20621577,0.7174942,-0.41218397,0.035842624,-0.18070051,0.08906869,-0.13763963,0.3419437,0.20924206,0.16799517,0.098104216,-0.19114545,-0.05725026,-0.32967433,0.20261134,0.20004329,0.089477524,0.3132434,-0.044105224,0.038536545,0.2376999,0.7214858,-0.09714801,0.74050945,0.27280524,-0.143146,0.25686568,-0.27858981,-0.27307636,-0.1967801,-0.18420683,-0.02909172,-0.43769544,-0.44264916,-0.035134435,-0.5048216,-0.7194377,0.4951368,0.014334585,-0.2980652,-0.030930536,0.27783397,0.44851488,-0.2526807,-0.042529456,-0.11443394,-0.004773664,-0.4168939,-0.3497015,-0.59985197,-0.4048484,0.29410982,1.2360313,-0.031260695,0.192502,0.18351424,-0.17598629,-0.15389347,0.3638077,-0.22006415,0.04358233,0.44319433,-0.20731731,-0.53838474,0.302994,-0.06787902,-0.43100432,-0.705109,0.37874144,0.7175736,-0.68125904,0.7503666,0.41695994,0.107400365,-0.12353831,-0.46835008,-0.29600057,0.1923311,-0.18903959,0.3993054,0.13156466,-0.58132255,0.32276517,0.38026407,-0.42209512,-0.833393,0.3761041,-0.12123447,-0.45579043,0.051121056,0.41120222,0.23470356,0.14857237,-0.22322585,0.19544637,-0.4402589,0.22035322,0.1890378,-0.11590988,0.32325378,-0.35194084,-0.15013497,-0.7660988,0.09298066,-0.45132798,-0.28482598,0.1508064,-0.0067987507,-0.059558034,0.28743106,0.19311833,0.36980364,-0.2845091,0.115688264,-0.3292196,-0.24670972,0.18431573,0.36938837,0.5010295,-0.38421577,0.5794715,-0.037293453,-0.13748321,0.02053684,0.054947983,0.45640275,0.033935122,0.46538496,-0.11439441,-0.15254603,0.35810027,0.66668904,0.1063698,0.31606308,0.21914174,-0.07919314,0.20852825,0.09789363,0.06188174,0.10903333,-0.41337967,0.15041247,-0.33022246,0.16505328,0.3783912,0.10084642,0.46755245,-0.028221829,-0.34320736,0.06654932,0.14652826,-0.012309447,-0.98189247,0.1151875,0.054327738,0.7797037,0.42409235,0.07945198,-0.023369422,0.72813493,-0.2000005,-0.102644004,0.32998508,0.07080216,-0.30809477,0.71111995,-0.7085988,0.6214589,-0.1679882,-0.019331766,0.0044352836,-0.046975534,0.61869913,0.7773691,-0.15148987,-0.019638387,0.114938796,-0.24216534,0.044058256,-0.312455,0.30160776,-0.5694545,-0.27352688,0.7344863,0.3960957,0.38025537,-0.19767556,0.024045533,0.23888694,-0.19913773,0.11373438,0.07266154,0.12967353,0.01922064,-0.5916361,-0.109008655,0.49910975,-0.34748265,0.23165117,0.21729548,-0.25918436,0.24976489,-0.23410389,-0.032667268,-0.054272808,-0.87056094,-0.16352613,-0.37978506,-0.39999744,0.4062248,-0.03678606,0.155771,0.27767202,0.084751405,-0.4388724,0.65319014,0.023699496,0.92510426,0.049009893,-0.07306192,-0.11620701,0.39990297,0.15186663,-0.1425275,0.12770014,-0.22949494,0.09911888,-0.64962643,0.44675636,-0.108105436,-0.29354197,0.032822188,-0.05591481,0.07364929,0.56367975,-0.20318289,-0.16725011,0.15883903,-0.09602435,-0.28294313,-0.11189062,-0.11040878,0.30104432,0.16779052,0.09223331,-0.10285593,-0.08888904,-0.19788058,0.6070402,-0.0084705455,0.45675972,0.37057444,0.16322555,-0.29602697,0.014914794,-0.28187472,0.61530626,-0.17506552,-0.14975527,-0.23483577,-0.55844843,-0.3696465,0.33451796,-0.17864315,0.32212892,0.055591322,-0.22643052,1.0195382,0.01032512,1.1847897,-0.12592877,-0.35942367,0.12933205,0.61397505,0.016191585,0.033084128,-0.35816437,1.2007409,0.53237903,-0.15984535,-0.05683147,-0.32492542,0.02043048,0.3482465,-0.21302776,-0.17327796,-0.09162732,-0.5937155,-0.15830378,0.19923295,0.35806832,0.17713353,-0.121551394,0.35702392,0.35287976,-0.02283463,0.32751796,-0.5935215,-0.11458776,0.32003146,0.45940834,-0.025122026,0.19175036,-0.40959057,0.38335714,-0.41064215,0.14842527,-0.27246287,0.07564287,-0.23322521,-0.33173758,0.21048777,0.015810728,0.2224664,-0.5572912,-0.19958238,-0.29622027,0.48026493,0.282667,0.23307446,0.6108521,-0.25881645,-0.116778485,-0.13687564,0.5554573,1.0084907,-0.4322553,-0.019004235,0.4140563,-0.37107652,-0.61138743,0.51595455,-0.36277956,-0.14291318,0.012096567,-0.21354055,-0.5301009,0.333075,0.15162702,-0.00646581,0.014846875,-0.58302486,0.0037430695,0.36036763,-0.30827668,-0.2715237,-0.40254077,0.3720192,0.68059254,-0.009385323,-0.46174878,0.11977888,0.32888705,-0.34607762,-0.42528227,0.09857416,-0.4629926,0.26699743,0.06020059,-0.22519398,-0.2471033,-0.008882322,-0.4274824,0.0011680509,0.04374927,-0.25201732,0.17622194,-0.42504564,-0.017679002,0.67509925,0.0013867787,0.30628088,-0.73419,-0.48184156,-0.9677492,-0.35035938,0.47963157,0.34126464,-0.07797583,-0.7484451,-0.12844002,-0.08208281,-0.40855238,-0.0049676173,-0.24961348,0.41562837,0.0998022,0.3277556,-0.21354571,-0.7888117,0.10305242,0.084262155,-0.5117325,-0.4300428,0.39474106,0.069406696,0.9407555,0.14524136,-0.018614894,0.24168172,-0.41844076,0.20176661,-0.3698404,-0.29930344,-0.63199705,0.035013918,607 -483,0.29323345,-0.075592674,-0.35328108,-0.11754967,-0.29475847,0.31878,-0.27381817,0.2858719,0.11421877,-0.6737004,0.051721845,-0.27305463,-0.11430549,0.3818577,-0.16078608,-0.7364989,0.35859933,0.021563265,-0.5305603,0.6035642,-0.27739885,0.54665655,0.19854951,0.18101753,-0.19911568,0.16642548,0.3587695,-0.004475332,0.27037314,-0.37498763,-0.14066447,0.0027524638,-0.54757595,0.5123564,-0.15749443,-0.4593687,0.07100326,-0.27523267,-0.2369192,-0.72848564,0.03586287,-0.7044177,0.5711247,-0.024630772,-0.18938288,-0.09522773,0.25070825,0.15524693,-0.027871218,0.017015252,0.15165506,-0.36058587,-0.15697005,-0.22212657,-0.37445015,-0.7321491,-0.47477117,-0.024318507,-0.7077405,-0.30858704,-0.22334626,0.25781348,-0.31944254,-0.038529474,0.015437058,0.499397,-0.25582507,-0.051262546,0.19912742,-0.54101336,0.18240269,-0.6548859,-0.1046868,-0.024922252,0.20564353,-0.1873428,-0.14151432,0.3271405,0.31459525,0.42784095,0.1383901,-0.24462283,-0.17815426,-0.337255,0.13405465,0.69620705,-0.050591018,-0.33731434,-0.18391348,-0.15209529,0.32490915,0.14127651,0.18037736,-0.34712008,-0.08620862,-0.13938446,-0.28948542,0.50522137,0.4552083,-0.4518769,-0.20462993,0.34386948,0.53833264,-0.13542552,-0.29875562,0.28573084,-0.10909598,-0.40142277,-0.0636499,0.25052273,-0.13506134,0.3802367,-0.091189146,0.16145825,0.69551575,-0.17502995,0.08376325,0.056233916,-0.05851508,-0.0696243,-0.14285626,0.029046748,0.41851753,-0.576331,-0.061064254,-0.48760822,0.8090428,0.09553676,-0.61166924,0.3909295,-0.5135955,0.05014214,0.06682391,0.56780225,0.556496,0.29503748,-0.039337754,0.5673968,-0.28759083,-0.046327095,-0.11323832,-0.14401731,-0.09856982,-0.16915716,0.0012626925,-0.3130544,0.045200475,0.06534518,0.094163775,0.019036243,0.31853646,-0.49301273,-0.17349994,0.2809762,0.9259015,-0.2172122,-0.030076776,0.6397815,1.2583363,0.66755116,-0.09062294,1.1717018,0.11754902,-0.15913178,-0.2564033,0.03863066,-0.22433697,0.105997495,0.4372054,1.1675838,0.17310683,9.7053395e-05,-0.15137485,0.36595392,-0.3790318,-0.15102224,-0.05667513,0.043119054,0.15945448,-0.092774,-0.2996568,0.07156842,0.06382503,-0.053629067,0.3008055,0.1853662,-0.26711324,0.5353376,-0.017913137,0.7736955,-0.06618954,0.21571621,0.20575489,0.45275894,0.2330842,-0.07976723,0.31417146,0.25679895,0.21249671,0.07032666,-0.5459238,0.09260218,-0.3996189,-0.343293,-0.22671941,-0.2035941,-0.37344527,0.071236394,-0.5349044,-0.04513957,0.03357416,-0.2982762,0.33691356,-2.6601584,-0.15727268,-0.40052265,0.26352766,-0.22086976,-0.2060612,-0.10120927,-0.509123,0.5106711,0.4259858,0.35004506,-0.5441176,0.39073643,0.5321537,-0.29845867,-0.19771819,-0.61518943,-0.030092334,-0.024406089,0.5180879,0.14830355,-0.13718967,0.03602438,0.04606237,0.5872861,0.080032565,0.044715863,0.35030064,0.2584496,-0.088431396,0.210381,0.106993295,0.44048405,-0.35282835,-0.15550725,0.34752288,-0.4344881,0.24028465,-0.23502061,0.1008942,0.4259446,-0.16194272,-0.6166794,-0.6636937,-0.66446686,1.1224312,-0.004858094,-0.6605641,0.15685199,0.30375972,-0.1655443,-0.14389853,0.6133079,-0.08029358,0.3968545,-0.43610114,-0.024390304,-0.16126837,0.252602,-0.085699454,-0.16632806,-0.4099646,0.7284298,-0.12035243,0.42629227,0.22879791,0.29655614,-0.33326095,-0.32951576,-0.08165081,0.9874612,0.5004601,0.16979556,-0.10099448,-0.0310816,-0.23528878,-0.43900463,0.007007781,0.824142,0.5349328,0.0066923904,0.09061114,0.35293266,-0.06221499,0.12004174,-0.13104956,-0.40621802,-0.1494944,0.13308622,0.61243963,0.29441842,-0.05330067,0.24518338,-0.08333506,0.33654246,-0.28573492,-0.40318674,0.3339438,0.71393627,-0.24597801,-0.24129058,0.37532958,0.42931437,-0.3898346,0.33714586,-0.74860096,-0.4629481,0.5284705,-0.16999362,-0.62130386,0.09758859,-0.2703623,0.08425285,-0.6718145,0.46459642,-0.44479683,-0.71367484,-0.52155644,-0.34044233,-3.3076947,0.18518531,-0.215418,-0.09271336,-0.20168938,-0.015634475,0.15447353,-0.41872382,-0.17615925,0.08035611,0.084069,0.57596827,-0.030580431,0.098229475,-0.42086548,-0.18153465,-0.10008704,0.42733827,-0.05396573,0.13952453,-0.192099,-0.07444574,0.17685196,-0.09765615,-0.48709726,0.069743276,-0.67409235,-0.31107065,-0.3169145,-0.4348235,0.012522014,0.7087452,-0.65231025,0.2296672,-0.1267985,0.11828115,-0.16521505,0.28914258,0.4014553,0.18258159,-0.0052754795,-0.14521667,-0.023981094,-0.50189036,0.54319173,0.22865714,0.2913022,0.49836206,-0.0011727916,0.06784016,0.35018834,0.3940089,0.055980273,0.8204805,-0.09349216,-0.00504845,0.44689423,-0.07133753,-0.3386469,-0.52706945,-0.14978926,0.07057405,-0.30590105,-0.4049376,0.11467187,-0.23095179,-0.7622345,0.42496857,0.16662346,-0.049184527,-0.12920308,0.4045089,0.2148339,-0.24289964,-0.10451155,-0.018192353,-0.03335152,-0.453145,-0.4191522,-0.6804687,-0.5334342,0.006818754,0.8982607,-0.17287013,-0.12209291,0.14952004,-0.048177335,0.0027156025,0.33320966,0.22771084,-0.18086758,0.33522612,-0.050148547,-0.6793173,0.52088654,-0.19476438,-0.28620276,-0.5281423,0.36036316,0.56121004,-0.6437866,0.37842163,0.36874145,0.056448996,-0.4800508,-0.4164464,-0.09394203,-0.027598348,-0.14420049,0.18490171,-0.0908648,-0.8190245,0.2750173,0.02679182,-0.25247225,-0.6195173,0.4868608,-0.1010406,-0.1348329,0.12763794,0.43642864,0.19921698,-0.06281118,-0.16253214,0.059571493,-0.5729278,0.11711647,0.14403747,0.056207117,0.6605806,-0.1430573,-0.30841723,-0.590121,-0.022378197,-0.61488616,-0.22196908,0.15577616,-0.17959788,-0.12413306,0.42754275,-0.14948475,0.40865812,-0.056616094,0.30434155,-0.09522454,-0.31859413,0.42611647,0.3727893,0.39559028,-0.25979772,0.8290323,0.09336852,0.019202795,-0.09038323,0.29657826,0.5334333,0.19841197,0.5490221,-0.25003046,0.08163113,0.11558982,0.8588645,0.28044525,0.38019603,0.22501609,-0.09421318,0.2447281,-0.11248016,-0.047420856,-0.014293308,-0.56130797,0.0105699105,0.017857943,0.036019754,0.4898655,0.041382875,0.6238104,0.035428405,-0.31673366,0.096321456,0.04793542,0.08127872,-1.1949561,0.22648014,0.13227156,0.8500579,0.15980431,0.09534816,-0.06541104,0.6650504,-0.22770788,0.073661186,0.21846727,-0.08067693,-0.093092225,0.58763504,-0.6526132,0.4451664,-0.057506654,0.002379011,0.119590506,-0.08086438,0.34100217,0.76742035,-0.2581999,0.037913885,-0.028913515,-0.2130945,0.031748567,-0.44219118,0.35966352,-0.075115964,-0.27911592,0.43481565,0.42746907,0.30065614,-0.24225152,0.00026058298,0.23523162,-0.028748006,0.26575556,-0.112463124,0.10917677,-0.28642294,-0.17922391,-0.15958226,0.6252933,-0.22525157,0.22358155,0.15666273,-0.113909885,0.23146793,0.2186339,0.04742134,0.010493478,-0.6475431,0.100179434,-0.23732972,-0.5453006,0.5394917,-0.34364194,0.20984162,0.18483195,-0.05862451,-0.14263198,0.5179878,0.25475377,0.64518696,0.13808744,-0.21077749,-0.41567093,-0.18526863,0.06218264,-0.4463188,0.18356773,-0.21156928,0.1260928,-0.6452613,0.26554915,-0.3396227,-0.19614543,0.27808633,-0.24609147,-0.09978269,0.4127345,0.19389065,-0.041214205,0.60963994,-0.19518448,-0.25403205,-0.016332593,-0.073763095,0.21839952,0.06798741,0.06371888,-0.12145685,-0.20884116,-0.14494093,0.12491239,0.12610286,0.21324308,0.30418062,-0.03279068,-0.42489937,0.15757506,0.20362003,0.24959531,-0.09293713,0.10321683,0.16332023,-0.58423394,-0.4312404,0.09097761,-0.08029231,0.267532,0.16596356,-0.3596894,0.7862321,-0.087496065,0.9830977,0.036437493,-0.43248472,0.15797679,0.54032797,0.12924942,-0.0036453712,-0.27402514,1.008823,0.5234376,0.05026675,-0.059138324,-0.26371577,-0.026141133,0.28847665,-0.23081125,-0.20338161,0.017785424,-0.598695,-0.13267492,0.116412,0.46065181,0.02927853,-0.16969517,-0.19421197,0.20694752,0.1216714,0.22812101,-0.76112777,-0.08338213,0.18723807,0.21602295,-0.22824714,0.1783329,-0.19461922,0.5041322,-0.71311957,0.26065183,-0.32919738,-0.16644038,-0.30285287,-0.19147597,0.23999791,-0.047993183,0.5048063,-0.19981171,-0.2731422,-0.14504376,0.3593752,0.27911967,0.19246228,0.7142113,-0.16205658,-0.06717182,-0.102221735,0.62236226,1.2516986,-0.35131904,-0.06746069,0.18887256,-0.5145733,-0.42425102,0.120689794,-0.5873166,0.22762778,-0.030672224,-0.39337566,-0.17301223,0.16374603,0.25941437,-0.04000615,0.24320044,-0.62475884,-0.1593512,-0.10477437,-0.6043115,-0.2907402,-0.32702342,0.45728728,0.52916014,-0.12551208,-0.25624868,0.029577902,0.36732954,-0.30753618,-0.92701894,-0.004242944,-0.14658572,0.2567586,0.13476194,-0.3570266,-0.0053728437,-0.059773836,-0.45706487,0.08564754,0.26463488,-0.3934939,0.04898255,-0.22366594,-0.013499507,0.529704,0.08724078,0.017532097,-0.74837583,-0.5555936,-0.7031875,-0.6387165,0.34401506,0.36181122,-0.07074655,-0.4449014,-0.29306445,-0.24591593,0.037291218,0.0048737866,-0.37538677,0.21541527,0.29751968,0.52601856,-0.25358576,-0.8943006,0.09671312,0.07230294,0.003184672,-0.48486564,0.12684797,-0.17013611,0.84661305,0.119189285,-0.3059342,0.2861015,-0.56602633,0.28196913,-0.41348648,-0.2653544,-0.7018477,0.12046893,609 -484,0.30581814,-0.18538971,-0.42500803,-0.0972604,-0.25226155,-0.035548266,-0.1152522,0.5328977,0.1983725,-0.18382896,-0.15740538,-0.087992616,0.060353715,0.60599023,-0.13278213,-0.61519706,-0.13240777,0.07793736,-0.59981567,0.54410636,-0.5801276,0.44310918,0.09892787,0.40694776,0.012097806,0.46818593,0.3001122,-0.1847888,-0.023508396,0.089453444,-0.06521887,-0.009701254,-0.31107044,0.104286954,-0.05889811,-0.2770048,0.18715668,-0.4109271,-0.19475083,-0.738978,0.22389671,-0.6373901,0.469933,-0.029120773,-0.3186238,-0.018718788,0.27601936,0.3782689,-0.40737644,0.031282492,0.14820863,0.008835473,0.00917694,-0.20373674,-0.029453704,-0.47855872,-0.44619003,-0.12124306,-0.5067662,-0.32927796,-0.032984756,0.16048063,-0.35512567,-0.0789366,-0.04790599,0.31726074,-0.41473898,-0.22298478,0.37232596,-0.16498102,0.3010283,-0.5049115,-0.030237615,-0.07040219,0.46226385,0.014912188,-0.062078793,0.42675075,0.30735454,0.37117758,0.14892547,-0.27226117,-0.20273015,-0.19768442,0.08304321,0.48382875,-0.1478291,-0.34039775,-0.19730496,0.12581746,0.11751081,0.35456586,0.12820235,-0.050134506,-0.08033004,-0.09462941,-0.16308342,0.43772963,0.37423357,-0.1611832,-0.33966702,0.46909043,0.6753065,0.26190108,-0.21358517,0.02671889,-0.029626893,-0.53943044,-0.17446278,-0.06432671,-0.13507584,0.5104492,-0.16115414,0.1321866,0.78372633,-0.1986986,-0.0019766134,-0.020608097,-0.05976786,-0.12028531,-0.21589196,-0.1755109,0.10532328,-0.5919107,-0.054614026,-0.18003152,0.5679353,0.24951196,-0.5636098,0.38375273,-0.42586184,0.107635595,-0.06257929,0.6053668,0.623314,0.3311684,0.24225743,0.78075665,-0.33356136,0.095338225,0.08207574,-0.402837,0.21128877,-0.28078863,0.12935594,-0.5831963,0.009536402,-0.017615335,0.019918863,0.06165323,0.2950962,-0.54876834,-0.042641263,0.24993332,0.77199537,-0.2688286,-0.014982598,0.7159594,1.1887671,1.1073629,-0.041995235,1.1279433,0.22246194,-0.35434726,0.26876554,-0.43615666,-0.6162602,0.16571765,0.42179957,-0.22123735,0.42916822,-0.14700891,-0.106171645,0.38634685,-0.42063436,0.0858999,0.018217515,0.37313125,0.068503276,-0.14807375,-0.56723493,-0.18610898,-0.12639658,-0.0037368834,0.20510633,0.3122239,-0.30831414,0.4337537,-0.19018146,1.2854033,0.021235595,0.11828656,0.004947213,0.50272113,0.24625584,-0.1167711,-0.15296127,0.3880224,0.40053925,0.09084677,-0.5006354,0.34423795,-0.4374575,-0.47076967,-0.09791814,-0.329547,0.019694196,-0.06776556,-0.40401262,0.031968318,-0.048455946,-0.2991232,0.31506544,-2.9130197,-0.35877392,-0.18465199,0.23329923,-0.27615938,-0.08587229,-0.0491372,-0.47221023,0.3225719,0.2515846,0.5176659,-0.6120243,0.4166028,0.45751032,-0.4953792,-0.16790928,-0.65119886,-0.168627,-0.066173844,0.55262524,0.08272277,0.075519525,-0.0929975,0.35088745,0.6293191,0.07265227,0.14963529,0.20781024,0.28221065,0.13311979,0.48863024,-0.06089843,0.6190596,-0.27987882,-0.08298967,0.28409633,-0.2659727,0.23225696,-0.2278901,0.21309687,0.47012612,-0.3912488,-0.93915445,-0.5053643,-0.38996425,1.018034,-0.22840963,-0.1788753,0.38265684,-0.26903492,-0.04809952,-0.033264957,0.5281085,-0.14899829,0.07663973,-0.6525436,0.026917154,-0.0673031,0.059207793,0.00096307695,-0.11010574,-0.39577174,0.6087466,0.06846297,0.6662399,0.21596766,0.21817912,-0.24248813,-0.50797254,0.036431883,0.74708885,0.5228342,-0.07653475,0.0043195956,-0.1979399,-0.16754213,-0.13238047,0.035885923,0.47370216,0.91969097,-0.07860648,0.11560812,0.19052105,-0.06563455,0.07027991,-0.033535488,-0.18165834,0.10636884,0.116531186,0.42849293,0.67389965,-0.15987937,0.40949392,-0.19629775,0.4804726,-0.14285181,-0.5242905,0.5545789,0.6093797,-0.25725266,-0.038730502,0.51743776,0.47589418,-0.309295,0.46577668,-0.6694077,-0.24997279,0.5994984,-0.17311397,-0.31599495,0.22195232,-0.1812959,0.20643692,-0.92291653,0.39335746,-0.35472903,-0.50852615,-0.46586064,-0.10706364,-3.5678196,0.14248967,-0.18682969,-0.22374837,-0.09329666,0.053940576,0.31485152,-0.8349704,-0.5889563,0.17671241,0.22235036,0.6856866,-0.067624815,0.056025583,-0.25459146,-0.26939207,-0.1672025,0.26194653,-0.034134846,0.22226283,-0.043528106,-0.52725947,-0.05300499,-0.10769081,-0.68519086,0.13109325,-0.5762554,-0.44297844,-0.1735914,-0.6304841,-0.2673536,0.71679896,-0.1514274,0.09048275,-0.17577717,0.10103103,-0.12518847,0.17501004,0.10474666,0.10818331,0.1031184,-0.03623737,0.1771648,-0.36199754,0.36132783,0.10269802,0.4813457,0.14329131,-0.07681726,0.26009017,0.61742055,0.65358603,-0.20235644,0.8782008,0.4088921,-0.12874037,0.23552613,-0.30774668,-0.16126396,-0.4968025,-0.56306136,-0.04887523,-0.35010186,-0.6525281,-0.035438947,-0.34035665,-0.73063266,0.5688266,-0.015011822,0.40161952,-0.1632524,0.07104779,0.3680466,-0.3655718,0.11202147,-0.07220618,-0.18976723,-0.5102882,-0.183285,-0.6964251,-0.56331986,0.032660194,0.851631,-0.42457074,0.1035725,-0.18159845,-0.3083479,0.09536208,0.021340264,-0.04277692,0.21290493,0.24557172,-0.09960544,-0.7322927,0.47994336,-0.16336386,-0.048803955,-0.44863015,-0.006585317,0.6711894,-0.6106744,0.50681055,0.34595484,-0.062904455,-0.10979607,-0.52759886,-0.15545857,0.06263027,-0.03274652,0.41430995,-0.024883565,-0.7347236,0.49428558,0.2897098,-0.61791795,-0.62883204,0.40895844,-0.078682765,-0.27779636,-0.06879854,0.29500952,0.1676584,-0.043391388,-0.445278,0.21363644,-0.38245365,0.24957773,0.21068028,-0.06260144,0.41830084,-0.035976615,-0.16508529,-0.7832181,-0.08441361,-0.5173942,-0.21967754,0.29697165,0.018963741,-0.011662317,0.064399526,0.2250512,0.3057364,-0.28221014,0.1568717,0.10870361,-0.43404007,0.27160415,0.43369833,0.40627363,-0.34321132,0.5128115,0.1580974,-0.21683232,-0.022066662,-0.11718941,0.43835422,0.04682546,0.38464254,-0.20163345,-0.13757747,0.52799684,0.67879784,0.09437994,0.3071862,0.14552006,-0.16281162,0.2487578,-0.07367621,0.18254833,0.14190066,-0.35140195,0.025354518,-0.06895642,0.1559786,0.594862,0.36855382,0.23245016,0.100418635,-0.27692157,0.08118538,0.2057642,-0.016632905,-1.2775002,0.5837813,0.30384827,0.7494659,0.40548056,0.13398553,-0.19052815,0.7120964,-0.19352989,0.046108983,0.48197195,0.022514751,-0.56977654,0.6815319,-0.79030323,0.48240253,0.019266266,-0.123102374,0.13434123,-0.06559489,0.39740863,0.77705497,-0.09316175,0.047217455,-0.045213647,-0.19777603,0.07690753,-0.28376478,-0.011424533,-0.49199912,-0.3520449,0.54369384,0.4369503,0.18814178,-0.017718708,-0.052606147,0.12806614,-0.15319379,0.29873595,-0.11774312,0.015775422,-0.0022309977,-0.56500757,-0.19265762,0.44156286,0.046944443,0.19197628,-0.1969382,-0.20400569,-0.07840268,-0.2788394,-0.008829244,0.043076497,-0.6544255,-0.08766328,-0.18789144,-0.32368135,0.5115391,-0.3967747,0.24423826,0.089648426,0.11052697,-0.19990288,0.21553817,0.092029884,0.6546202,-0.026643869,-0.34232855,-0.25911137,0.14803325,0.16876402,-0.27868396,0.16950719,-0.46219084,0.069944374,-0.57348686,0.6761707,-0.18650202,-0.2679202,0.04114657,-0.37179193,0.019657446,0.4886228,-0.16518746,-0.30675796,-0.1759899,-0.054048445,-0.33818313,-0.039703038,-0.28624058,0.24371949,0.26782766,0.04433332,-0.11356962,-0.07399945,-0.15410297,0.61166143,0.07915448,0.436749,0.25101894,-0.05984317,-0.16605027,0.025810016,0.23605861,0.3640065,0.27835113,-0.025034487,-0.45801014,-0.29654756,-0.23816599,-0.057819076,-0.16690227,0.19496918,0.002471779,-0.059376497,0.8268786,0.08600497,1.3723606,0.05305418,-0.3582758,-0.002629476,0.60415184,-0.14090152,0.026150975,-0.34544137,0.99476826,0.5552246,-0.28037566,-0.15671816,-0.45808968,-0.056453783,0.43949246,-0.39915228,-0.17579043,0.029928327,-0.5652247,-0.39536566,0.29562002,0.17507564,0.20512517,-0.05579704,-0.01846723,0.014119496,0.09060391,0.42705482,-0.5872382,-0.12216608,0.2890144,0.3112121,-0.14692318,0.15024625,-0.3594344,0.5365342,-0.67046016,0.25277358,-0.30888966,0.20575707,-0.30146104,-0.50553197,0.093691126,0.07349761,0.28378624,-0.22133754,-0.5178199,-0.051367547,0.473604,0.055371065,0.015744414,0.6172742,-0.32252893,0.029694377,0.07492854,0.523375,1.1555703,-0.37911898,-0.030229261,0.32805172,-0.43135506,-0.8023549,0.36226004,-0.33413118,-0.01868253,-0.28030637,-0.4502411,-0.59357595,0.29326764,0.107458964,0.048346575,0.051761318,-0.35880637,-0.09316904,0.2535542,-0.34371784,-0.32547835,-0.32306919,0.34768432,0.5601017,-0.2624698,-0.42489275,0.03687838,0.3413481,-0.344031,-0.4920916,-0.14681242,-0.2031525,0.3470963,0.12100719,-0.3502602,-0.07504882,0.083763525,-0.43097854,0.25852564,0.24877954,-0.40007114,0.13550906,-0.17512456,-0.11029369,0.8636491,-0.22368988,0.0069216746,-0.62822163,-0.44040933,-0.87362087,-0.46159643,0.39454433,0.11091038,-0.042376213,-0.4476986,0.044996776,-0.090048335,0.055912357,0.038403135,-0.3418943,0.1810147,0.054118905,0.49534956,-0.29604128,-0.85183483,-0.021049341,0.15090677,-0.13596888,-0.6558925,0.72074795,-0.047621686,0.8181376,0.07717812,0.049616035,0.14875741,-0.25435165,0.080504656,-0.32634187,-0.0755525,-0.61538786,0.03960339,612 -485,0.34902316,-0.022599135,-0.4241333,-0.13716398,-0.39867115,0.12409454,-0.15409397,0.20448014,0.1506501,-0.44093302,-0.09225731,0.06851144,-0.022645261,0.14220403,-0.103071585,-0.4447305,0.046179958,0.22274266,-0.6939052,0.6123305,-0.4190833,0.37786978,0.020785755,0.32670218,-0.05645855,0.35960028,0.26780483,-0.08460091,0.012473928,-0.18513617,-0.020152526,-0.07749698,-0.7779923,0.14065541,-0.34285662,-0.20496808,0.06716202,-0.30573413,-0.25682446,-0.7802445,0.26216686,-0.96856546,0.5094579,-0.11311497,-0.22872762,-0.09962665,0.29984504,0.1743292,-0.2769324,-0.09791231,0.38977936,-0.16893302,-0.13113894,-0.36961764,-0.07350128,-0.3858393,-0.40941292,-0.1161061,-0.67242163,-0.20990612,-0.5016536,0.21899422,-0.2867276,-0.27221063,-0.25998917,0.45963868,-0.33298638,0.14923403,0.079074584,-0.2971004,0.31169766,-0.5743204,0.11668728,-0.08295375,0.43649083,0.09301267,-0.10340375,0.6405748,0.3833578,0.31108305,0.24901256,-0.334034,-0.2717217,-0.21982037,0.2051806,0.48487267,-0.10793148,-0.39486167,-0.17542733,-0.008704649,0.25866327,0.20652,-0.005602994,-0.34372482,-0.0106124235,-0.13395678,-0.0522548,0.82621723,0.50549877,-0.15509126,-0.17045482,0.29998818,0.5939254,0.26744428,-0.38479212,-0.054130528,-0.1026762,-0.46466753,-0.13268869,0.2912888,-0.07158346,0.50869405,-0.18119287,0.06852465,0.8870419,-0.08732561,-0.059890706,0.06606709,-0.045129392,0.1261579,-0.32623702,-0.08126558,0.26710245,-0.630064,0.12931477,-0.46837878,0.59539753,0.077640735,-0.83980656,0.51218706,-0.47798675,0.078043334,0.111670844,0.64780694,0.5633548,0.6069816,0.17168991,0.88244426,-0.3233882,0.07559282,0.16094711,-0.36874983,-0.082074165,-0.27275336,0.11315193,-0.3253469,0.10172248,-0.25933546,0.15424006,-0.0531156,0.31322402,-0.4906648,-0.274972,0.28495616,0.92012596,-0.30953258,0.013978963,0.63759696,1.1769035,0.85985154,-0.06347422,1.2486085,0.0031378737,-0.18484364,-0.0277067,0.02307464,-0.67803824,0.1430037,0.27975753,0.5021685,0.08536013,-0.1336064,-0.109471254,0.17917264,-0.4908958,0.011267076,0.02554375,0.39975134,0.12902041,-0.0762061,-0.2922094,0.000242642,0.08256234,0.020863298,0.1948116,0.12072422,-0.22053511,0.3302605,0.050527964,1.1472591,-0.10062538,0.14351808,0.22014798,0.65144175,0.35073504,-0.061459713,0.046141684,0.51799524,0.44011185,0.023816973,-0.56002,0.15425685,-0.6368495,-0.3511061,-0.0045675635,-0.40504923,-0.26606563,0.04726109,-0.3798731,-0.17656586,0.10519509,-0.3252011,0.38555628,-2.6625042,-0.251507,-0.14420377,0.40909126,-0.36178324,-0.14951375,-0.16406608,-0.63470805,0.43439606,0.08335419,0.5697495,-0.56586313,0.43025652,0.6329054,-0.47306994,-0.14587083,-0.59037775,-0.1283362,0.046636492,0.49733534,0.050423365,-0.08386004,-0.20925164,0.20405163,0.83560103,0.28944874,0.15712225,0.5853613,0.30498892,-0.041987717,0.6985927,-0.17368889,0.45327562,-0.25629124,0.0009841621,0.36433885,-0.28588587,0.25916,-0.4545222,0.044576917,0.68901646,-0.4507616,-0.80929863,-0.6161932,-0.32834408,1.0967743,-0.36917302,-0.55455846,0.27411574,-0.24459492,-0.026303759,0.058712043,0.71442354,-0.06833076,0.39885786,-0.49646738,-0.014979626,-0.22424152,0.29135713,0.029835284,-0.05972907,-0.2826237,0.90164,-0.0013781701,0.59997934,0.173389,0.2223557,-0.28876045,-0.37224397,0.17508098,0.6802021,0.38550448,0.07666172,-0.12708674,-0.057156622,-0.28218082,-0.3106894,-0.23927447,0.7724472,0.6625327,-0.15557443,0.08475484,0.36338523,-0.04648594,-0.0033113617,-0.17010488,-0.30358955,-0.20992725,-0.044568557,0.4660428,0.7268918,-0.106717534,0.39054796,-0.20727389,0.1752475,-0.11005672,-0.57623154,0.6903823,0.5095435,-0.22142445,0.08500034,0.41036108,0.40989113,-0.43949074,0.48071697,-0.6058677,-0.33418682,0.839733,-0.223163,-0.48225808,0.14132532,-0.20050658,0.024790108,-0.5581277,0.27162996,-0.53782415,-0.54900116,-0.2560114,-0.17463274,-2.766643,0.14207028,-0.11522688,0.0070796683,-0.53029174,0.015590406,0.23535776,-0.41043583,-0.5395896,0.19371818,0.2328156,0.65147877,-0.11763702,0.13556746,-0.45328307,-0.10437066,-0.10356456,0.4145131,0.11644188,0.13844346,-0.28593716,-0.31898886,-0.18801308,0.03428581,-0.6410818,0.1093873,-0.46317384,-0.28264803,-0.07524808,-0.51893973,-0.21700199,0.6492421,-0.38980934,0.14617905,-0.0729124,0.048931334,-0.13271068,0.07099796,0.0718268,0.2666416,0.034708627,-0.110995635,0.2019258,-0.23165719,0.5892274,0.07803082,0.41803098,0.016080247,-0.07399428,-0.010531195,0.31984526,0.6255773,-0.2385111,1.1904589,0.18434103,-0.08466794,0.4269748,-0.21777785,-0.40953922,-0.83005005,-0.13633393,0.07524895,-0.29502645,-0.3900382,0.217204,-0.4333728,-0.77229166,0.6328421,0.12892202,0.4995429,-0.029748129,0.3060546,0.22620021,-0.38514253,0.046961498,-0.044069435,-0.07985769,-0.58646303,-0.34958816,-0.83495057,-0.53655803,-0.091715954,0.6209513,-0.34651312,-0.14717872,-0.01842017,-0.2465241,0.16189075,0.11652463,0.010378347,0.1646188,0.4475988,0.15208009,-0.6109406,0.46681872,-0.13513996,-0.084044404,-0.40161783,0.3613729,0.65244514,-0.69662666,0.52242553,0.22910298,-0.03929772,-0.48299482,-0.6977466,-0.11367803,-0.038990058,-0.15166807,0.48530906,-0.07138844,-0.96456397,0.42496863,0.10340686,-0.49018764,-0.6876704,0.39100823,-0.043423347,-0.3654557,-0.13083604,0.44531533,0.013512837,-0.13275659,-0.25437075,0.22528015,-0.46369028,0.2718421,0.08209207,-0.11315018,0.3439019,-0.19726619,-0.37657017,-0.72831476,0.0062708473,-0.5982746,-0.3020167,0.38381264,-0.17360285,-0.19529799,0.25006142,0.14225493,0.4959569,-0.06213476,0.21574084,-0.03655563,-0.29600185,0.37969926,0.37815166,0.4367141,-0.46474776,0.6964096,0.16830763,-0.2284113,0.19643392,0.2381324,0.38697323,0.030534668,0.5394148,-0.15871212,0.0541198,0.23961583,0.7597922,0.27290115,0.4599743,0.13050678,-0.13117172,0.4639345,-0.07517473,0.24803685,0.026063208,-0.6844616,0.10600627,-0.13330385,-0.07632352,0.5043038,0.2492388,0.24247201,0.18544659,-0.17807089,-0.11447108,0.1812898,-0.10863434,-1.2977229,0.44881317,0.27676192,0.91569555,0.29333606,0.17811094,-0.18888389,0.83282626,-0.17476293,0.11894708,0.4107844,-0.12679179,-0.4173191,0.745391,-0.6238608,0.25617236,0.008167518,-0.0068946118,0.36129704,0.1270085,0.40960264,0.8737172,-0.2129147,0.0014829508,-0.041265633,-0.10846053,0.10960653,-0.20733836,0.21182789,-0.21882597,-0.50757307,0.55749357,0.3692574,0.35790253,-0.16676225,0.0060818684,-0.047152635,-0.27198243,0.22091122,-0.072728164,-0.13384989,-0.033220235,-0.33627543,-0.07457356,0.5132459,-0.15283558,0.065450475,-0.100626014,-0.044664618,0.13649711,-0.0345709,0.0958238,-0.09637709,-0.83986026,0.16063395,-0.24832502,-0.3989074,0.44525272,-0.33984014,0.06701534,0.15469222,-0.030816738,-0.072376974,0.41672605,0.33022246,0.45838785,0.03149948,-0.22804503,-0.32154366,0.05125355,0.03719804,-0.349358,0.29066402,-0.31253958,-0.039764762,-0.57644403,0.48055476,-0.36427853,-0.23989563,0.24994908,-0.34819144,-0.239782,0.6076556,0.02955779,-0.11615624,0.05678281,-0.19304015,-0.40175554,-0.15650143,-0.15643442,0.19409673,0.20583116,-0.0015531778,-0.18790765,-0.08459394,-0.21627033,0.48519936,0.06762966,0.34285402,0.0537618,-0.0786762,-0.34488255,0.17550655,0.26676628,0.6852545,0.10404883,0.16203931,-0.16342996,-0.24011266,-0.43176046,0.20207584,-0.097698174,0.19029084,0.10187479,-0.24597915,0.97386014,0.03352497,1.0211623,0.033827227,-0.34538117,0.09912328,0.74268764,-0.106044725,0.07136292,-0.49705297,0.9490281,0.3933352,-0.13989273,0.021903863,-0.46197113,0.07479233,0.26933137,-0.3649508,-0.03065109,0.010180371,-0.5005861,-0.278754,0.16740994,0.27078143,0.13927306,-0.097188234,-0.33868617,0.090697,0.13497105,0.36744568,-0.7908373,-0.17889623,0.19457588,0.17575921,-0.14488958,0.09050315,-0.28488228,0.3676642,-0.6230789,0.20508416,-0.38014725,0.056552667,-0.3735728,-0.35065508,0.15432489,-0.028017435,0.33038324,-0.31171006,-0.42416975,-0.097607985,0.24656892,0.13346675,0.2760075,0.63938606,-0.21347506,0.059379138,0.17695189,0.4920918,0.9610202,-0.3280851,-0.01370201,0.23151362,-0.6355576,-0.5984959,0.26761958,-0.44685873,0.13601546,-0.039124127,-0.49995902,-0.26654583,0.14483905,-0.049953137,0.03268688,0.032942753,-0.885102,-0.17019463,0.3542606,-0.24902,-0.19811888,-0.18151458,0.37674946,0.73823583,-0.16246568,-0.3649952,0.094223365,0.13145813,-0.29754332,-0.8023046,-0.012452632,-0.31861523,0.22334686,-0.02541765,-0.2960646,-0.0035493805,0.2770083,-0.6910957,0.09684964,0.18092348,-0.43099493,0.08546876,-0.1389138,0.049378317,0.83528095,-0.20870604,-0.25289187,-0.4471922,-0.5310734,-0.7790391,-0.41583246,0.1417763,0.19741464,0.052603982,-0.41724393,-0.21996678,-0.27757344,-0.00037876196,-0.042952634,-0.43752745,0.28855205,0.14118828,0.50554746,-0.41483876,-1.1574812,0.16396536,0.13832213,-0.02961857,-0.5624665,0.46455598,-0.049970858,0.81322813,0.058851812,-0.1387423,0.041918725,-0.54826915,0.05925453,-0.4071529,0.020696554,-0.6489169,0.22109939,619 -486,0.36488238,-0.15929124,-0.6015546,-0.12409363,-0.27994722,-0.21969235,-0.098508015,0.589248,0.1877921,-0.540896,-0.19305097,-0.19879735,-0.105158925,0.35886255,-0.25943163,-0.5465279,0.01827695,0.15548682,-0.52575177,0.57406795,-0.3913812,0.3110326,-0.007294114,0.5269999,0.13458543,0.21993263,0.022674186,-0.15447018,-0.14309299,0.05736515,0.08452741,0.11967019,-0.5489404,0.19368188,-0.25434396,-0.43730474,0.027693095,-0.33456108,-0.5180339,-0.808515,0.28716898,-0.65400714,0.4862314,0.0075950623,-0.26406166,-0.022691326,0.08721622,0.32279631,-0.2689313,-0.06779963,0.058720205,-0.008026479,-0.05986052,-0.21152124,-0.28491408,-0.3027323,-0.537315,0.03291958,-0.50609154,-0.012313038,-0.038449932,0.1837416,-0.3292716,-0.05685511,-0.10180176,0.648876,-0.4080789,0.020299563,0.32852867,-0.123996295,0.26588577,-0.6632099,-0.19050209,-0.14089629,0.20290947,-0.10549074,-0.19506027,0.36653814,0.11968374,0.5783858,0.06290706,-0.2060204,-0.33650753,0.02717488,0.20988122,0.3342689,-0.19666089,-0.5462988,-0.110148944,0.07908225,0.16918537,0.17489202,0.19322443,-0.41715002,0.05596625,0.05003351,-0.22464374,0.393252,0.61851454,-0.14284936,-0.1757103,0.29103082,0.5763189,0.20665108,-0.16618516,0.13186301,0.12829593,-0.5554179,-0.22767952,0.029128075,-0.2286367,0.47090164,-0.13116086,0.2960373,0.62824744,-0.14597185,-0.037332494,0.20234118,0.17251872,0.057678282,-0.40216285,-0.35630158,0.3450468,-0.43522948,0.13284478,-0.1358154,0.7307391,0.24677053,-0.7798551,0.26836613,-0.63333553,0.13658175,-0.10224408,0.46579581,0.7143134,0.51698476,0.27397028,0.6555186,-0.54645574,0.17150085,-0.01906184,-0.37033287,-0.11139687,-0.15059035,-0.078696325,-0.3469065,-0.14074263,-0.19098306,-0.26481122,-0.05177751,0.20291784,-0.6036767,-0.12341218,0.05002929,0.95434344,-0.2225759,-0.06257806,0.8259036,1.0105237,1.0323114,-0.010547643,1.2375766,0.19074686,-0.24440463,0.32076985,-0.20717038,-0.88077736,0.31485325,0.28330126,-0.25294864,0.33472437,0.09486823,-0.054831743,0.5473475,-0.6363023,0.07408919,-0.26932338,0.41345993,0.15991409,-0.12934527,-0.38684177,0.016309598,-0.07049868,-0.17038508,0.015973981,0.27609473,-0.1592671,0.23087206,-0.07659519,1.4870415,-0.13980553,0.20961316,0.19524534,0.59236896,0.25389785,-0.09727502,-0.0827979,0.14541234,0.280566,0.11459685,-0.6662491,-0.013456928,-0.38190705,-0.56494874,-0.19349048,-0.19751906,-0.042231567,-0.24267991,-0.5399935,-0.16464864,-0.13653247,-0.22611438,0.24036665,-2.5080523,-0.3708025,-0.1195489,0.3182589,-0.32941288,-0.2545762,-0.124503076,-0.47849724,0.56795853,0.24578165,0.46342483,-0.64325815,0.50457144,0.5600903,-0.4566442,-0.03553749,-0.6180587,-0.07511575,0.05748364,0.1702155,0.016653309,-0.07232847,0.060539734,-0.09491939,0.32330686,-0.11653335,0.06569932,0.2622601,0.3687683,0.12521924,0.5222828,-0.011280196,0.5357503,-0.6060144,-0.13854496,0.21142676,-0.43790674,0.21961863,-0.073219284,0.14787292,0.4316245,-0.5813123,-0.73579943,-0.68441004,-0.24615555,1.0601056,0.02757883,-0.3344879,0.29665405,-0.4585976,-0.08377637,-0.044621803,0.47632176,-0.111784704,0.082278594,-0.8523306,-0.04908073,-0.20670354,0.22600731,0.039746873,0.03522081,-0.28816137,0.47435775,-0.097687766,0.44837338,0.5439407,0.18805109,-0.41869527,-0.51878625,0.05828595,0.7467804,0.35688767,0.19686839,-0.14208233,-0.089047894,-0.29991135,-0.079555474,0.04296612,0.46953425,0.77084965,-0.11771327,0.018150117,0.32457718,0.007541043,0.10718709,-0.15289918,-0.5394569,-0.15959896,0.09067269,0.46563792,0.7468761,-0.3014516,0.489856,-0.13302575,0.36649105,-0.25040907,-0.39886585,0.56601965,0.7614028,-0.32846946,-0.34204802,0.6155714,0.2907708,-0.4097178,0.4944165,-0.60416704,-0.22341831,0.48225957,-0.06684095,-0.48914906,0.050581105,-0.22138812,0.28155553,-1.0136184,0.4663822,-0.38884354,-0.588273,-0.7246102,-0.26847592,-2.6474833,0.2108988,-0.34398603,0.00083779223,-0.08783335,-0.0058336086,0.12873195,-0.5011439,-0.75351906,0.18211211,0.059952967,0.6223132,-0.13575396,0.18372759,-0.15137868,-0.15694813,-0.2592247,0.16624579,0.32956603,0.20162632,0.19009222,-0.5374283,-0.2301916,-0.08657171,-0.47220844,0.17091708,-0.74690044,-0.41292533,-0.22249036,-0.7044517,-0.36085656,0.74497384,-0.27971914,-0.08163132,-0.17498183,0.06021115,-0.086259104,0.38228443,0.03148649,0.16216119,0.13271542,-0.07870251,-0.021321168,-0.25171775,0.14026643,0.0037651253,0.36440635,0.23841402,-0.11867257,0.17456113,0.54265743,0.9439283,-0.025641084,0.69658333,0.6431646,-0.121292286,0.42036352,-0.35808104,-0.3605455,-0.48403808,-0.26174825,0.089158274,-0.3367394,-0.431736,0.31277642,-0.52391917,-0.8194439,0.63615364,-0.03094778,0.13244422,0.09887978,0.064073555,0.5056535,-0.21405192,-0.17556636,-0.048197825,-0.061719906,-0.5530652,-0.35725188,-0.6786838,-0.54065275,-0.0420377,1.2505283,-0.16244335,-0.0419322,0.12319275,-0.28591552,0.02428111,0.16381843,-0.119061574,0.08821411,0.30909038,-0.073895015,-0.6283336,0.31197992,-0.087166436,-0.17453542,-0.5470285,0.12922223,0.74107116,-0.65374357,0.600315,0.28220224,0.015627043,-0.22162381,-0.54526746,-0.17701812,0.09873665,-0.036181994,0.41906866,0.19709477,-0.8251739,0.39041117,0.5553386,-0.3123517,-0.8307189,0.33799025,-0.0075586224,-0.25574157,-0.050020773,0.5005776,0.030124221,0.033713445,-0.24767038,0.22286871,-0.36966392,0.22276227,0.23499775,-0.2921053,0.51248026,-0.33477184,-0.11470164,-0.7894951,-0.06101673,-0.62163603,-0.14449477,0.38828716,0.026371984,0.0037121943,0.122319065,0.20745263,0.37388995,-0.073063135,0.050418753,-0.16284725,-0.28142348,0.28801557,0.49042913,0.5064523,-0.52542084,0.6102452,-0.0585982,-0.117007315,0.05085402,0.1326308,0.4303979,-0.0050456696,0.46370718,0.09401006,-0.1075598,0.21441177,0.9707013,0.07693088,0.5087545,0.19962248,-0.18634592,0.21790777,0.09260224,0.13118133,-0.010519965,-0.46764842,0.14234509,-0.050824385,0.25764218,0.4815168,0.14138325,0.3308041,0.012373239,-0.4466648,-0.10539476,0.14689983,0.04630083,-1.4480113,0.5483347,0.107375756,0.8012123,0.49891424,0.17966425,0.016833033,0.59051615,0.046289172,0.1722552,0.45166785,-0.1080813,-0.41128138,0.5604876,-0.574876,0.50184643,-0.05008221,0.060512755,-0.07103871,0.16364382,0.45592663,0.7667052,0.001450198,0.036619958,0.08860863,-0.2463924,0.105764456,-0.46191803,0.1065703,-0.38062677,-0.2350898,0.55685383,0.5002685,0.2290833,-0.13528271,-0.03376613,0.19672565,0.004545348,0.30398685,-0.120173745,0.09918068,-0.005295526,-0.5331522,-0.25779957,0.5514801,0.06284976,0.19721428,-0.03917625,-0.08076564,0.32690224,-0.14905807,-0.07722611,-0.0144151915,-0.79133224,0.017923534,-0.29224738,-0.36757967,0.36953193,-0.13574514,0.17727259,0.06565185,0.095143445,-0.5333958,0.49147248,-0.16933313,0.6240535,-0.09432513,-0.14906192,-0.2580872,0.14229935,0.19029179,-0.19575039,0.030547904,-0.35885334,-0.092714734,-0.5642862,0.48001242,0.08460854,-0.23222362,0.03807794,-0.13643564,-0.04486694,0.5594769,-0.15994452,-0.13770048,-0.005089479,-0.22734407,-0.29103827,-0.27553862,-0.11280869,0.2960635,0.116994195,0.12839083,-0.06392535,-0.2576905,-0.056086097,0.59216696,-0.037326694,0.33458704,0.4514232,0.03432297,-0.34771279,-0.21940525,0.21739046,0.52681273,0.11512659,-0.119758405,-0.24198417,-0.32796845,-0.2551901,0.16160491,-0.2213567,0.36525458,0.090923026,-0.42147177,0.79821,0.19511162,1.3208071,0.061946463,-0.21949932,0.066564634,0.28734165,-0.015329497,0.0080706505,-0.42545924,1.0481708,0.68459,-0.15971789,-0.111937694,-0.32534736,0.04508921,0.19745514,-0.20412752,-0.24590267,0.024298022,-0.5685814,-0.20524038,0.19030036,0.2750923,0.08279217,-0.1945766,0.054664962,0.106130466,-0.01766717,0.3398542,-0.556606,-0.07076315,0.26086783,0.3783206,0.1538447,0.15390699,-0.50874674,0.4072542,-0.4996999,0.25116754,-0.32488775,0.2542228,-0.20143335,-0.4155874,0.12917744,0.06123525,0.45355433,-0.34375253,-0.30522552,-0.2966343,0.5404712,0.172725,0.031422723,0.7583441,-0.26572117,0.0005934047,0.07520791,0.60132825,0.82741153,-0.18188456,-0.20831533,0.28289244,-0.17683287,-0.6809951,0.35869762,-0.40051046,0.14573185,-0.15561745,-0.09092302,-0.6951937,0.22675972,0.22914192,-0.17588404,-0.03974334,-0.6619758,-0.23409131,0.24608926,-0.22812377,-0.19860448,-0.30814567,0.020628085,0.57766634,-0.19633047,-0.18534084,0.059077892,0.30426875,-0.21472725,-0.4070843,-0.08008373,-0.36418846,0.196471,0.24020925,-0.35088304,-0.16754921,0.05429026,-0.5145729,0.04940208,0.07476306,-0.35496756,0.09679593,-0.16325125,-0.13344467,0.7770564,-0.07271985,0.2543723,-0.43773618,-0.44315982,-1.0363805,-0.17841223,0.53992045,0.16173492,-0.0077522523,-0.8867565,-0.07003875,0.07413198,-0.079327404,0.04492436,-0.3256034,0.43861362,0.1659715,0.50633574,-0.041096773,-0.6393547,-0.025065929,0.19007294,-0.21358709,-0.55465543,0.46035084,0.0150663685,0.9800102,-0.014533688,0.06539994,0.1908162,-0.4455734,-0.006807289,-0.28987414,-0.34825566,-0.5740058,-0.06127986,622 -487,0.1791002,-0.20047688,-0.613609,-0.03922695,-0.24523023,0.080294155,-0.22682025,0.22865084,0.17611516,-0.20659895,0.045519162,-0.13474084,-0.067344055,0.50365204,0.019319708,-0.85924786,-0.028146502,0.18296348,-0.8642308,0.6823165,-0.37414196,0.39595038,-0.0409682,0.26357597,0.1702019,0.23488948,-0.06602633,-0.10689994,0.02757,0.056273643,-0.24900927,0.1803793,-0.3075426,0.17007704,0.05045103,-0.33789042,0.012262225,-0.17870034,-0.547914,-0.7013771,0.23632254,-0.61834323,0.5940839,-0.11097674,-0.29507008,0.1355292,0.05193425,0.43925884,-0.35633197,0.008274998,0.15168127,-0.039393667,-0.22578979,-0.25052935,-0.31912795,-0.37943244,-0.49707374,0.031459842,-0.7084498,-0.11486399,-0.2893208,0.13990085,-0.35660794,-0.11621928,-0.01233731,0.38073984,-0.35733366,0.16646825,0.15606706,0.035051115,0.1988102,-0.5732246,0.112136535,-0.03601733,0.324473,-0.1639183,-0.28345293,0.27192268,0.2759283,0.5718629,-0.0030650157,-0.2286594,-0.18922517,-0.069435105,0.08480607,0.5138172,-0.1427096,-0.30552536,-0.1778264,0.13287517,0.1396053,0.14263073,-0.039409477,-0.44195557,-0.09020027,-0.13384461,-0.13144682,0.3441725,0.43686786,-0.26026994,-0.33706993,0.45514372,0.6343714,0.2901079,-0.07026421,0.14976345,-0.02845152,-0.45865512,-0.17116307,0.17423503,-0.0053508366,0.34068638,-0.1466798,0.36554328,0.6612204,-0.018506125,-0.034251202,0.04985633,0.029358821,0.016186787,-0.16421969,-0.051094145,0.120143175,-0.58450794,0.15333748,-0.016912907,0.7492263,0.156688,-0.7709779,0.39893475,-0.5727381,0.2605122,-0.039397035,0.5296671,0.8261887,0.41904625,0.062551245,0.62693846,-0.37657642,0.13145718,-0.103068665,-0.31648618,-0.0077959127,-0.06492104,-0.026502311,-0.68159384,-0.018903473,-0.2123817,0.013915266,0.073946,0.44887277,-0.6950942,-0.14800528,0.04504202,0.8173366,-0.33708254,-0.12504627,0.64236534,0.8678454,0.8397797,-0.0066558262,1.2942407,0.3953125,-0.24223249,0.24121287,-0.4522393,-0.7141233,0.12196929,0.30364332,-0.004289525,0.31513563,0.09039648,-0.056583982,0.49940953,-0.24987467,0.04268655,-0.28575835,0.24002592,-0.05614569,0.04266728,-0.33653775,-0.25039452,-0.043795697,0.0887677,0.056003995,0.28848675,-0.2381899,0.4139739,0.027610494,1.692611,-0.05276943,0.102860495,0.07309096,0.29213423,0.30616984,-0.18284675,-0.28862852,0.32834783,0.4624736,-0.11565589,-0.56974787,0.05866924,-0.31968397,-0.24271442,-0.19662166,-0.21507971,0.09368805,-0.077912144,-0.5103031,-0.14022496,-0.010563225,-0.34209213,0.5317632,-2.5916731,-0.2570967,-0.09783006,0.2928014,-0.33413786,-0.2886131,-0.23165277,-0.36457962,0.49809185,0.18685105,0.4228641,-0.49535924,0.44734043,0.31138393,-0.4119718,-0.11144572,-0.5267552,-0.14342006,0.18335441,0.3406659,-0.20069298,-0.06893371,-0.1312907,0.07251499,0.34496865,-0.38327822,-0.0035392854,0.45928,0.24846591,0.18769349,0.32341364,-0.075033,0.54043365,-0.18629935,-0.22529016,0.3472507,-0.15546796,0.41557583,-0.09770719,0.19084011,0.43517855,-0.5825675,-0.85198796,-0.51178396,-0.24802402,1.0939854,-0.2430958,-0.27023777,0.23239431,-0.31323674,-0.12615451,0.012549196,0.32182005,-0.14766976,-0.20122303,-0.7149814,0.15778176,-0.008534504,0.43661287,0.03328201,-0.16997373,-0.2383286,0.39358696,-0.17177881,0.2890253,0.31761575,0.29222915,-0.24269211,-0.45142522,0.12899518,0.8674062,0.4103027,0.15305991,-0.17660674,-0.112302266,-0.3032228,-0.1377382,0.028472977,0.3330586,0.74239075,0.033093095,0.13744374,0.24200605,-0.05552253,0.09150565,-0.24892154,-0.28842744,-0.05170706,0.20632888,0.5247981,0.47104615,0.028052304,0.75352085,0.022652626,0.06888934,-0.05290507,-0.6801242,0.5592367,1.1605098,-0.2597546,-0.28757784,0.49757457,0.09372612,-0.27426928,0.36196443,-0.499225,-0.2842105,0.57260704,-0.286007,-0.46087804,0.29795069,-0.2348478,0.026405903,-0.8108681,0.31850573,-0.21184254,-0.6040487,-0.5075675,0.020749586,-3.1578882,0.23304312,-0.32469898,-0.010505983,-0.019098908,-0.014432856,0.20363316,-0.38870636,-0.46831375,0.12587442,0.12225441,0.6673961,0.029109161,0.14109108,-0.10719346,-0.19340344,-0.3012522,-0.023944587,0.109105244,0.21897003,-0.13955761,-0.44633135,-0.19609304,-0.15075704,-0.4317704,0.08571478,-0.63440406,-0.25113723,-0.244346,-0.6121577,-0.15046607,0.7184248,-0.24793223,0.009295268,-0.3466973,-0.11455507,0.008093774,0.30540386,0.24935555,0.20070674,0.11919776,-0.12075659,-0.16721132,-0.40710402,-0.002973335,0.13513303,0.107693724,0.22301295,0.12108898,0.32623383,0.5110419,0.6943785,-0.076335534,0.6498969,0.5322894,-0.22688971,0.342288,-0.24543762,-0.121277876,-0.39415127,-0.3747391,-0.12598598,-0.39648208,-0.40775782,-0.08600718,-0.32714286,-0.64933735,0.46647877,0.092199154,0.104229994,0.030790716,0.23830462,0.52085584,-0.10934417,-0.030474236,-0.14065693,-0.1669039,-0.52286476,-0.25565374,-0.56739694,-0.54843575,0.34488615,1.1567568,-0.3215775,0.034684896,-0.027037876,-0.29102352,-0.07969151,0.030346258,0.0576624,0.4415036,0.23989332,-0.14714868,-0.60711575,0.30760187,-0.25282064,-0.17388551,-0.5769421,0.14332815,0.672555,-0.5794756,0.47156236,0.12018983,0.116119735,-0.0110110855,-0.47966263,-0.24041738,0.14299467,-0.26948506,0.2506617,0.13326527,-0.63945115,0.45516413,0.33463004,-0.11599089,-0.7364253,0.3138552,0.122634366,-0.38977453,-0.018830333,0.3784918,-0.048202615,-0.0076189763,-0.2994104,0.22913022,-0.27256918,0.28682283,0.20840046,-0.25384074,0.09726937,-0.22175357,-0.3658705,-0.5091081,0.048291367,-0.50571144,-0.24865004,0.14701429,0.14227858,0.08891378,-0.06605383,-0.013581021,0.43458286,-0.23788442,0.07288066,-0.13687766,-0.3480027,0.20622002,0.40391937,0.29520395,-0.31633496,0.5944743,-0.021049142,-0.16669624,-0.07735089,0.24848758,0.5396584,0.15189245,0.39072543,-0.071746394,-0.20501289,0.3205476,0.9643006,0.035047922,0.4335261,0.019308826,-0.13912787,0.05882948,0.053151544,0.060896955,-0.023346474,-0.2823355,0.11103248,0.05537918,0.27504134,0.63752383,0.26189905,0.2398608,-0.13679335,-0.3970749,0.014539943,0.07975068,0.17845193,-1.0393046,0.41986808,0.29414025,0.73415834,0.4004933,0.105121635,-0.10335088,0.5420424,-0.14736247,0.20769323,0.237535,-0.42725685,-0.49498898,0.45341104,-0.76452255,0.46975246,0.09373387,0.023500418,0.2803058,0.12354251,0.26805678,0.8298565,-0.11164697,0.062499404,-0.0016425912,-0.2530343,-0.05854949,-0.28354362,0.008379577,-0.48509407,-0.58027107,0.54037875,0.37307876,0.26145625,-0.24251437,0.0009976412,0.12053412,-0.27375793,0.1476485,-0.02542718,0.10277731,-0.15283951,-0.46723753,-0.3682646,0.42951927,-0.058835287,0.07420806,0.06920198,0.07971334,0.14148255,-0.1840026,0.076370016,-0.037167463,-0.6573688,0.11120764,-0.3199288,-0.25511134,0.44831398,-0.20043983,0.19241746,0.24073294,0.07824789,-0.4329222,0.7416548,-0.10852582,0.8120952,0.028385019,-0.1148966,-0.29604673,0.334971,0.07688656,-0.17162205,-0.0038876194,-0.3396916,-0.04748586,-0.77139527,0.37810558,-0.10560848,-0.2977304,0.2032264,-0.22200134,0.028503027,0.4062474,-0.07547416,-0.12941793,-0.044291012,-0.17381613,-0.2693989,-0.17903076,-0.07052701,0.2113237,0.29613605,0.021177266,-0.12696704,-0.11967217,-0.23069239,0.45885727,-0.0037037362,0.2999081,0.37650654,0.16097902,-0.32624173,-0.053484865,0.29862216,0.46258053,-0.0016004092,0.009485756,-0.17375973,-0.2546922,-0.35056797,0.028268099,-0.20792088,0.3582936,0.04775359,-0.38320425,0.7429906,0.23987411,1.0824726,-0.047519922,-0.16791375,0.20766439,0.37354845,0.08083199,-0.02572287,-0.22419988,0.76855576,0.5843614,0.15342365,-0.065121315,-0.26933023,-0.29376164,0.32516485,-0.221668,-0.021663725,0.13131896,-0.58097935,-0.4073713,0.27693197,0.11590185,0.109062545,-0.094820224,-0.06646522,0.11908027,-0.021902319,0.10142952,-0.551004,0.10770761,0.24140845,0.27956396,-0.03157812,0.35511112,-0.516725,0.38201663,-0.566776,0.08672688,-0.18572302,0.18637955,0.010560042,-0.20750935,0.24926306,0.1931108,0.30377516,-0.3336533,-0.27058235,-0.39179987,0.6205169,0.2443097,0.121888794,0.6939716,-0.3156733,0.24438827,0.08707498,0.34470838,0.8509154,-0.32103267,-0.088782735,0.29526138,-0.3168976,-0.6163977,0.28108093,-0.19686723,0.09675868,-0.059602443,-0.25062555,-0.32841444,0.22536545,0.16582918,0.05165718,0.024198933,-0.53447866,0.032555405,0.13725069,-0.22838809,-0.16040692,-0.36927775,0.12977393,0.6478041,-0.22519456,-0.16883911,0.32538205,0.1765505,-0.24425673,-0.5106639,-0.00597749,-0.43084684,0.15507948,0.16259243,-0.23758566,-0.01753882,-0.019783063,-0.515456,-0.0884454,0.32414818,-0.3979331,0.08304964,-0.1268777,-0.09204726,0.8746047,-0.4062361,0.031409256,-0.7012005,-0.505871,-0.7225937,-0.35682324,0.7322145,0.24653576,0.115319096,-0.79091924,0.021846745,-0.08009361,-0.031660113,0.06582527,-0.35546216,0.347904,0.13289939,0.19794002,-0.3505679,-0.9898635,0.21505271,0.045383472,-0.3532892,-0.552483,0.4301328,-0.16020563,0.7831629,0.0010608776,-0.13442115,0.32219794,-0.42661613,-0.07012755,-0.25332674,-0.21748526,-0.6778416,-0.001482989,629 -488,0.51579267,-0.21877106,-0.43523836,-0.014622514,-0.35902697,0.091326766,-0.21144979,0.55112064,0.33604386,-0.19488478,-0.1970538,-0.03971949,-0.050501745,0.32483095,-0.2539907,-0.6388609,0.007922815,0.13757111,-0.41083884,0.7661405,-0.36078262,0.3261344,-0.045447104,0.3825658,0.24695788,0.26617765,0.1844894,0.03726899,-0.13795888,-0.41203263,-0.061367694,0.1841975,-0.6595315,0.2662141,-0.12491469,-0.3066868,-0.12876017,-0.65950114,-0.34876636,-0.8303895,0.44341406,-0.80501235,0.48472473,0.100130506,-0.2934983,0.32742214,0.11855279,0.14281034,-0.07637298,-0.10715604,0.15568988,-0.12210337,-0.07725469,-0.062372047,-0.17004745,-0.1538215,-0.65186137,-0.021814499,-0.38846317,-0.13924064,-0.33923373,0.1401952,-0.42146987,-0.01510793,0.014071307,0.6521911,-0.47824878,-0.024306485,0.1033137,-0.1795965,0.10172244,-0.6527639,-0.282749,-0.036203187,0.397079,-0.07085503,-0.11331997,0.26895022,0.23405774,0.43110442,0.0056118285,-0.19916917,-0.43081632,-0.17706135,0.1850812,0.61575305,-0.04221211,-0.62203443,-0.204533,-0.13902487,0.23695382,0.024047945,0.045277443,-0.14183404,-0.18919908,-0.13009933,-0.31285554,0.5699061,0.5065959,-0.20227246,-0.24350154,0.31476593,0.3692805,0.29646072,-0.17084543,0.085601315,0.0038609866,-0.5692657,-0.09726989,-0.043618273,-0.14480057,0.47937825,-0.16629371,0.40362638,0.6346747,-0.10423342,-0.0015846321,0.17040385,0.033434894,-0.099732816,-0.24765715,-0.18915007,0.20446494,-0.40859967,0.34861818,-0.19679458,0.8680402,0.14624505,-0.8191644,0.42565203,-0.42039675,0.17791839,0.118056856,0.53924495,0.7388524,0.32779264,0.4098381,0.7799738,-0.24782105,0.028694203,-0.045475103,-0.30661243,-0.0717118,-0.094902106,0.04470804,-0.46509975,0.0061266,0.13503145,-0.06305421,0.15047958,0.6300128,-0.466502,-0.1412569,0.14776684,0.7944702,-0.15774257,-0.07786669,1.0425617,1.082847,1.2084372,0.021943191,1.034211,0.03870138,-0.13449164,0.016191704,-0.29097128,-0.68565613,0.23411156,0.29566544,0.32898706,0.21126798,0.05445001,-0.15839687,0.35061985,-0.46158847,-0.12567413,0.0077543342,0.13948771,0.2616983,-0.11042326,-0.5373301,-0.3291606,0.0218461,0.16507718,0.21980776,0.26139012,-0.29766777,0.5219646,-0.062538795,1.5702641,-0.09959866,0.08907775,0.10551534,0.62488365,0.21617101,-0.091524415,-0.052611005,0.14625065,0.2955163,0.048043888,-0.7051,0.1819433,-0.28474623,-0.37788624,-0.06587857,-0.43281025,-0.276983,-0.11324979,-0.3789787,-0.12011554,-0.15065476,-0.48829085,0.40641063,-2.8916698,-0.14634131,-0.097187385,0.2052255,-0.16428678,-0.26957986,-0.12583666,-0.59806377,0.4099606,0.32277742,0.56455135,-0.61185104,0.31374803,0.48474047,-0.6468633,-0.06704577,-0.55903846,-0.083483934,0.008185676,0.4602589,0.07281845,-0.09900562,-0.10722575,0.29294857,0.6546735,0.21251829,0.121877536,0.2855606,0.3438192,-0.08421658,0.44205385,-0.11964873,0.44617552,-0.21828082,-0.12704389,0.44899958,-0.49008232,0.25936586,-0.46203277,0.12407003,0.48824677,-0.43358335,-1.0368919,-0.5789219,-0.1614262,1.1589901,-0.16938005,-0.57797134,0.34651804,-0.35525098,-0.27622965,0.054154925,0.620685,-0.21701476,-0.18562208,-0.7394329,0.032898363,-0.1653258,0.09786713,0.014360453,-0.023362169,-0.4754892,0.8293682,-0.017295321,0.58379996,0.16181585,0.17882572,-0.34267202,-0.38052267,0.097252354,0.8336047,0.467524,0.15507317,-0.25386012,-0.07250283,-0.30589634,-0.27148473,-0.057519756,0.7207804,0.5338024,-0.03203926,0.14226045,0.20026548,-0.0007320323,0.17261757,-0.15827693,-0.16589187,-0.25281456,-0.014312736,0.6712748,0.7436107,-0.2301654,0.32106882,-0.021458402,0.2232956,-0.14433193,-0.44430128,0.6299558,0.8658568,-0.16434844,-0.27212983,0.56122154,0.45103636,-0.18328048,0.4569994,-0.5364657,-0.29927087,0.3466654,-0.08852054,-0.46345183,0.1796517,-0.29930338,-0.006064781,-0.6614684,0.16268758,-0.2712905,-0.64972657,-0.46216792,-0.14474572,-3.3565087,0.038947683,-0.17934655,-0.32140356,-0.29154354,-0.21273288,0.110265605,-0.57506514,-0.62797624,0.11386176,0.055754356,0.81621057,-0.23987731,0.05306957,-0.16373488,-0.30964804,-0.39153686,0.11254027,-0.0048549003,0.5235166,0.04756605,-0.30085665,-0.11106551,-0.19888131,-0.5378777,-0.09705033,-0.41636088,-0.40731278,-0.016376853,-0.50409496,-0.21448985,0.62543374,-0.2515754,0.13470736,-0.34952492,-0.06668852,-0.27669638,0.3368353,0.042179108,0.1795956,-0.060578488,-0.122121505,0.17742012,-0.13697116,0.39945444,-0.0684006,0.29140136,0.3835977,-0.2264609,0.20954296,0.48405266,0.58438736,-0.08418627,1.1582114,0.3639123,-0.094314,0.22964333,-0.19915567,-0.22555247,-0.62255627,-0.16667397,0.12635863,-0.48346108,-0.40420622,-0.16067302,-0.42702523,-0.81326526,0.44342777,0.05602539,0.3225052,-0.008839177,0.08730918,0.38324207,-0.27065384,0.006233741,0.010035881,0.04712052,-0.46651378,-0.2070063,-0.5973267,-0.47609258,-0.046093743,0.8295985,-0.18592347,-0.040039275,0.11059659,-0.3363877,-0.0374309,0.08375508,0.12583609,0.05555653,0.372953,0.11877757,-0.75968355,0.6407303,-0.26515034,-0.02027854,-0.54213506,0.16595636,0.42425093,-0.4564678,0.53534347,0.32660177,0.15305391,-0.15752351,-0.51683503,-0.1518791,-0.15634327,-0.11197462,0.33759728,0.33653337,-0.76970917,0.5338026,0.115978874,-0.14706786,-0.75298584,0.44888765,-0.03536042,-0.29423004,-0.046438456,0.3364614,0.25344935,0.0076707006,-0.19690266,0.31997627,-0.4164332,0.30127293,0.06675643,-0.06385617,0.4601972,-0.17450564,-0.2557654,-0.59454286,-0.11038096,-0.48788992,-0.29529902,0.0678841,0.18999325,0.08026312,0.075388536,0.051325586,0.38971406,-0.27008313,0.099658154,-0.14393279,-0.2975764,0.36477265,0.5364459,0.64584273,-0.46609816,0.5999384,0.07336672,-0.0015280119,0.17041986,0.027722657,0.32232887,-0.012467246,0.434114,0.12184042,-0.17962381,0.11022464,0.68616885,0.25247523,0.42218372,-0.009790495,-0.21034595,0.43505025,0.06918866,0.32805187,-0.10450406,-0.6380607,0.0077739186,-0.31594822,0.049501956,0.51464975,0.18165,0.28078443,-0.05074891,-0.3253151,0.02073531,0.20498143,-0.21095255,-1.2786916,0.28137818,0.17513645,0.9617682,0.62003547,-0.09917836,0.18220581,0.7364502,-0.05024864,0.06320285,0.30664077,0.12324945,-0.49340725,0.5554593,-0.7096277,0.54897946,-0.015753891,-0.029799778,0.116385356,0.07148884,0.443881,0.6656111,-0.19270037,-0.08139135,0.01496111,-0.4039449,0.14792871,-0.3600637,0.15315528,-0.5009155,-0.1621345,0.70985323,0.56875676,0.28738016,-0.12228496,0.08956623,-0.043536443,-0.034118086,-0.05167354,-0.007697993,0.0047076982,-0.23174548,-0.8136334,-0.1076739,0.49410763,-0.07482816,0.07101897,-0.01571103,-0.17465846,0.20931792,-0.069072284,-0.14399035,-0.06675086,-0.81364006,0.066505,-0.15639254,-0.47500607,0.4021518,-0.17076333,0.3138308,0.24730809,0.04422762,-0.25277257,0.31126547,0.16617917,0.7230052,0.028715031,-0.088721626,-0.30093715,-0.0013033833,0.19398117,-0.23292434,-0.232223,-0.17596896,0.06123754,-0.45158753,0.44912228,-0.11356171,-0.27245742,0.16646682,-0.0032280642,0.057319973,0.5231845,-0.11939596,-0.088913426,-0.12782423,-0.12258037,-0.24160136,-0.09320913,-0.18971731,0.22951964,0.20525482,-0.24653609,-0.075432576,-0.037629843,-0.054510396,0.3684097,-0.005984482,0.41635948,0.36047697,0.13068895,-0.443928,-0.082556546,0.30142707,0.6635496,-0.060491603,-0.0328418,-0.30470023,-0.46651432,-0.45403773,0.4169955,-0.070505165,0.3476254,0.07821908,-0.2542006,0.6639349,0.19847162,1.0021622,0.042374007,-0.37773958,0.19310418,0.52547026,-0.08368831,-0.02553603,-0.28282115,0.9166209,0.2855888,-0.22640105,-0.14970826,-0.45579505,0.18780515,0.2577891,-0.20255303,-0.089570366,-0.12801448,-0.576938,-0.10133195,0.15321755,0.21119581,0.13797142,-0.19333777,-0.07464003,0.28037483,0.17327443,0.33777028,-0.5209471,-0.13159381,0.43721431,0.11921716,0.011314399,-0.029875968,-0.4904807,0.30597407,-0.54766047,0.053130995,-0.17100647,0.20462263,-0.5041322,-0.18822932,0.37259832,0.03383192,0.41771945,-0.30770868,-0.43516684,-0.3192447,0.3885169,0.1376373,0.10777609,0.44235295,-0.2718007,0.05658238,0.114349954,0.5677702,0.99016994,-0.12729727,0.08713753,0.30236858,-0.40867075,-0.5097052,0.10972985,-0.36217356,0.23121735,0.007453463,-0.12982076,-0.73947746,0.17338702,0.18374528,0.21719639,0.15796642,-0.62187177,-0.30286735,0.35197327,-0.27896586,-0.20482734,-0.36819616,-0.10736055,0.6783145,-0.3043843,-0.30060396,0.05781618,0.2719876,-0.018020421,-0.712038,0.018943634,-0.31898943,0.25569636,0.041155558,-0.3785463,-0.30409858,0.05939373,-0.5292754,0.1875875,0.17597792,-0.36305514,0.093865976,-0.39708918,-0.02739285,1.0126135,-0.3381749,0.45363003,-0.5611655,-0.4808244,-0.896245,-0.37209654,0.4538166,0.056441367,-0.018106086,-0.62647265,-0.13831334,-0.30439934,-0.12573722,-0.06354349,-0.44245428,0.35907942,0.102575906,0.3377141,-0.13935378,-0.8897618,0.1873493,0.08661972,-0.15533279,-0.48716164,0.47606513,0.15531485,0.7157174,0.16718915,0.039565172,0.08624867,-0.53787553,0.031502478,-0.12470387,-0.15085718,-0.5689854,0.32310882,630 -489,0.4339806,-0.03779029,-0.5084071,-0.0037011164,-0.37571362,0.33963665,-0.18155268,0.45872194,0.22134805,-0.43756145,-0.2484379,-0.07531924,-0.12734069,0.16120389,-0.21396387,-0.510028,-0.043768834,0.1346176,-0.31265423,0.49131605,-0.3117575,0.5307366,-0.09816977,0.28730828,0.21253754,0.12251754,0.13215855,0.0729406,-0.099563636,-0.36266342,-0.19592759,0.22199263,-0.32236645,0.32054186,-0.17342938,-0.3316355,-0.04411639,-0.49081498,-0.37397316,-0.67734295,0.36129496,-0.8420306,0.503576,-0.073811755,-0.23061927,0.15661827,0.1555669,0.11046375,0.21684287,-0.075359024,0.03949637,-0.24865092,-0.032338448,-0.30949515,-0.5818435,-0.653357,-0.60147613,0.08319235,-0.51400894,-0.1616594,-0.20797154,0.15895568,-0.17382005,-0.15444987,-0.043218024,0.3697657,-0.3704907,0.06423257,0.15450726,-0.15057409,0.07729966,-0.59170645,-0.19426142,0.0100514805,0.3601551,-0.14206733,-0.19150686,0.21580306,0.31534454,0.36721587,-0.1114605,-0.23354189,-0.5219919,-0.021904727,0.13865606,0.62183225,-0.19937544,-0.4777207,-0.052215375,-0.014926987,0.62966067,0.33868155,0.14940658,-0.041772034,-0.28690678,-0.026599765,-0.11727577,0.62751514,0.52186704,-0.3037584,-0.20987181,0.52800596,0.47139588,0.27537054,-0.22269584,0.109658726,-0.107439384,-0.54118425,-0.052939843,0.17376132,-0.12543586,0.43355137,-0.036132343,0.3448678,0.595324,-0.17982414,0.080401696,0.12695768,-0.037759412,-0.0994614,0.0011374737,0.07175364,0.09247242,-0.3935849,0.17502286,-0.026638588,0.78482354,0.19169416,-0.7288461,0.3984252,-0.5449695,0.17711642,0.13541286,0.5545253,0.69197816,0.51594675,0.1058545,0.7412469,-0.1344488,0.066893496,-0.036389332,-0.19910036,-0.08905484,-0.25935376,-0.18142638,-0.41933227,-0.03220698,0.1296403,-0.08868875,0.24123703,0.6871181,-0.5353768,-0.2135991,0.2312554,0.81907874,-0.14898963,-0.23395099,0.8115444,0.9725978,0.8357047,-0.039807357,0.94026935,-0.035126347,-0.20889613,0.012645743,-0.19226563,-0.3972656,0.22247693,0.38598707,-0.1184163,0.51587844,0.029351277,-0.11029245,0.23938735,-0.36603108,-0.21660538,-0.12723087,-0.008147942,0.17846425,-0.06954161,-0.37780374,-0.31429833,-0.03241216,0.0634465,0.29794478,0.24450275,-0.37151912,0.34613377,-0.054430205,1.4027814,-0.16246517,0.10340228,0.10817593,0.6005546,0.22012493,-0.15396936,0.16867612,0.31923416,0.18416883,0.13304308,-0.48995632,0.09616183,-0.2678034,-0.5717667,-0.0923818,-0.26445022,-0.45682177,0.14216475,-0.51498306,-0.046273656,-0.0876865,-0.5949361,0.5581199,-2.7381704,-0.07142062,-0.08965266,0.31265646,-0.19618113,-0.47894627,-0.12071464,-0.49447563,0.3387349,0.32892013,0.42459437,-0.65031546,0.16238403,0.4713142,-0.49414888,-0.15594845,-0.6352445,0.07820402,-0.023600638,0.37670568,0.018045707,-0.14258479,0.33374983,0.069050625,0.54355055,0.14231081,-0.036438644,0.33937648,0.5124826,-0.20176676,0.2923627,-0.12031335,0.5451136,-0.11146451,-0.29512691,0.45764568,-0.45839462,0.52882105,-0.244536,0.178867,0.43633047,-0.36709628,-0.91875774,-0.52349365,-0.29927424,1.2163506,-0.081167474,-0.55174845,0.16809872,-0.38588524,-0.24884416,-0.28212413,0.7700209,-0.07157481,-0.07313913,-0.6310767,-0.078051396,-0.25525457,0.13046424,-0.103851244,0.03581751,-0.3878334,0.66820306,-0.17402817,0.4709932,0.17487553,0.33661792,-0.32829353,-0.49133712,-0.032999914,0.8710753,0.604493,0.09174713,-0.3294318,-0.267026,-0.29045147,-0.16500893,0.12156902,0.6575271,0.5582345,0.040206663,-0.010172054,0.36212152,0.10351243,0.09218203,-0.28940052,-0.16976348,-0.19747351,-0.054486204,0.6948293,0.4668695,-0.06831553,0.44865733,0.052984636,0.10508567,-0.41052678,-0.42284754,0.39070457,0.9996314,-0.22206162,-0.31719252,0.4617656,0.46664363,-0.25945893,0.309611,-0.8115285,-0.37618464,0.46278957,-0.21027449,-0.63037586,0.17147954,-0.2826552,0.026504355,-0.6452638,0.5077113,-0.13214128,-0.813168,-0.5412639,0.0001551594,-3.07462,0.1644228,-0.10114227,-0.20598945,-0.13006729,-0.19553566,0.12354156,-0.4705479,-0.4635844,0.03756396,0.06057248,0.7628941,-0.19751446,0.2614124,-0.2435516,-0.3578697,-0.3062134,0.26213074,0.056474056,0.5007362,-0.29144105,-0.11830594,-0.071244076,-0.19451945,-0.40271616,-0.058813162,-0.42669162,-0.4735916,-0.13194959,-0.36590067,0.08857882,0.6322748,-0.58376545,0.12114722,-0.28989148,0.023936927,-0.10644727,0.2437422,0.18788452,0.004149735,0.15091954,-0.19395669,0.26817563,-0.36262026,0.5373756,-0.0042071617,0.37513724,0.5373293,-0.07904589,0.352233,0.5748685,0.6757239,-0.055186328,0.983305,0.21759531,0.012560283,0.23874941,-0.06445713,-0.1368801,-0.49251518,-0.19674085,0.19591506,-0.47899482,-0.41552734,-0.24061538,-0.3552454,-0.9238896,0.34881133,-0.07629574,0.49156052,-0.15273952,0.38447922,0.6947958,-0.37324238,-0.08801158,0.08118105,-0.13198808,-0.4729416,-0.38206527,-0.5064143,-0.5207893,0.1472574,0.9037506,-0.1986219,-0.0029346645,0.15412319,-0.3402303,-0.011078788,0.008990569,0.22345166,-0.13011037,0.3152404,-0.051179375,-0.5922244,0.45926142,-0.27379104,-0.16605835,-0.5762952,0.24037568,0.52456874,-0.39265132,0.25644803,0.4766732,0.06635459,-0.1696279,-0.62432045,0.08500564,-0.05072562,-0.3316237,0.17735325,0.3578809,-0.7006777,0.3760793,0.17195527,-0.08701564,-0.7235127,0.59670794,0.01784491,-0.08372557,-0.022117985,0.4117059,0.30248767,-0.21573012,-0.0959689,0.2976561,-0.49299553,0.31413403,0.13263077,0.047694054,0.20344356,-0.25025088,-0.25632933,-0.7224614,0.10569424,-0.5308127,-0.1930995,0.29526716,0.08274005,0.30228066,0.053385664,0.03879651,0.34737176,-0.4292333,0.12885448,-0.16634312,-0.2351127,0.503069,0.40224808,0.71100396,-0.38525876,0.6376544,-0.004260685,-0.03406895,0.32878447,0.22503975,0.4909437,0.08898743,0.38406894,0.1065733,-0.24438201,0.101520464,0.7511659,0.37307236,0.34927586,0.07621511,-0.28530508,0.20787095,0.09859664,0.19800673,-0.21744187,-0.61333865,-0.1272576,-0.251319,0.1519892,0.43130976,0.0447846,0.2996793,-0.18757375,-0.15111427,0.19640441,0.15589666,-0.09234897,-1.0354626,0.31936178,0.23141786,0.9026707,0.09526704,0.054727603,0.11708438,0.65647465,-0.07730664,0.055959105,0.419169,0.1893741,-0.46295983,0.3945951,-0.76986045,0.6685712,-0.042510025,-0.06332167,0.12092904,-0.14261213,0.3846994,0.7896166,-0.25341195,-0.067868516,-0.03725695,-0.40493613,0.027374784,-0.45857558,0.1833169,-0.572141,-0.20265137,0.6615134,0.5245567,0.3716043,-0.10858928,0.09088548,-0.0048397803,-0.09517306,0.17399934,-0.06015625,0.23737101,-0.293648,-0.53826755,-0.14759734,0.4267361,-0.10549406,0.17229761,0.042524196,-0.15768513,0.17768432,-0.12528573,-0.040881343,-0.037714906,-0.5879017,-0.09230624,-0.22285388,-0.71939754,0.36789012,-0.18621352,0.34944916,0.30144817,-0.040562633,-0.15137498,0.39124113,0.3482731,0.7957625,-0.031427015,-0.052462433,-0.49075645,0.18727216,0.20875494,-0.32767752,-0.18781064,-0.010623008,0.17509262,-0.5636366,0.20064792,-0.32633302,-0.26707986,0.11081201,-0.21997876,0.08684117,0.5739055,-0.051093467,-0.17419569,0.19253577,-0.16228838,-0.32911077,0.01699181,-0.108351305,0.19226635,0.086198784,-0.32900694,-0.10802049,-0.24283741,-0.11534829,-0.075862,-0.06367158,0.3787634,0.4917529,0.038243633,-0.23100066,-0.058661234,0.21730728,0.5812443,0.0989251,0.048260517,-0.19108412,-0.49665314,-0.4535802,0.27757177,-0.01700787,0.29508758,0.2844067,-0.33163843,0.5931426,-0.14805238,1.0092539,0.0076286155,-0.47063664,0.069626145,0.50199527,0.0020487309,-0.09430838,-0.38712135,1.0380834,0.4266176,-0.026201997,-0.032515295,-0.14149354,0.1824223,0.29306588,-0.2647093,-0.19202371,0.11345636,-0.6724326,0.004312098,0.23744187,0.23911107,0.06401263,-0.16864038,-0.06853627,0.3545489,0.07762802,0.19741793,-0.4814958,-0.27436414,0.36189818,0.2856215,-0.13055731,0.13410883,-0.35617644,0.32053822,-0.6421294,0.0020547765,-0.44887942,0.21937771,-0.28754896,-0.36290503,0.3217473,0.06045222,0.49714836,-0.18855517,-0.35669348,-0.34346884,0.29450044,0.15108122,0.13435735,0.17637973,-0.20837612,-0.10733586,-0.05268722,0.47983763,1.2293795,-0.21574366,-0.0040508998,0.39263338,-0.4759747,-0.51927084,0.36783323,-0.6378953,0.2727372,-0.06836301,-0.17843498,-0.34595484,0.29924157,0.2579493,0.13908848,0.04108407,-0.7464605,-0.10583951,-0.16493861,-0.46348116,-0.22550704,-0.3470175,0.03140178,0.5981932,-0.37231627,-0.28639403,0.005317888,0.52848107,-0.09706293,-0.5076405,0.31386334,-0.24958776,0.10868321,-0.06473434,-0.47311395,-0.1891334,-0.1038153,-0.3739765,0.14655243,0.13653708,-0.46916267,-0.009574264,-0.19377889,0.19771184,0.77338374,-0.23633425,0.18471763,-0.6174657,-0.55185807,-0.81396633,-0.5688871,0.10966432,0.20135958,0.042844355,-0.60674375,-0.08318954,-0.27025825,-0.19216745,-0.15572385,-0.39712855,0.3867802,0.29508835,0.40113315,-0.29930946,-0.80919474,0.26357558,0.038674586,-0.1835809,-0.62675846,0.4547002,-0.006576121,0.9041448,0.14425753,0.07011921,0.20181422,-0.616345,0.09843183,-0.035099473,-0.21622682,-0.81564707,0.26672867,631 -490,0.49152008,-0.05316088,-0.5916343,0.15166458,-0.436827,0.2502527,-0.21306112,0.18248582,0.059649307,-0.42396995,-0.08959711,0.004219926,-0.15115318,0.70436424,-0.3048714,-0.6193181,0.13597962,0.21545874,-0.5336252,0.7664744,-0.26163623,0.48923692,0.19516833,0.15554479,0.13181658,0.21927282,0.20402828,0.112153254,-0.05223345,-0.15939309,-0.22357114,-0.015677989,-0.4000108,0.50758266,-0.22241864,-0.43820634,-0.06990715,-0.20618936,-0.2896281,-0.55789983,0.11318885,-0.77318615,0.7162963,-0.0346937,-0.3956243,0.05399675,0.2351825,0.19232376,-0.038297083,-0.06509431,0.01703057,-0.009432673,-0.13971959,-0.22584033,-0.16679965,-0.50569326,-0.47122878,-0.0027476507,-0.84845054,-0.14954884,-0.0745347,0.19095005,-0.25776103,-0.0135518825,0.059998572,0.096069574,-0.3799004,-0.02410446,0.15791677,-0.14158022,0.09571954,-0.64613426,-0.19223131,0.036950555,0.18067949,0.030222561,-0.20353584,0.34425616,0.15722768,0.60225993,-0.029163582,-0.13522653,-0.18927503,-0.025496705,0.14875185,0.61525536,-0.18808672,-0.14449434,-0.29595724,0.28470215,0.6675605,0.09574119,0.30512556,-0.35075527,-0.0064114267,-0.1589087,-0.057779122,0.34059194,0.4746979,-0.27598223,-0.099312834,0.36200905,0.5258179,0.31399664,-0.20858696,0.03435484,-0.09621775,-0.3241212,-0.11216193,-0.09469647,0.019434344,0.52076614,0.04893067,0.4186975,0.43375635,-0.018897815,0.14515983,0.16696544,-0.018036501,-0.2068334,0.12965865,-0.1414857,0.082316495,-0.45827156,-0.13814946,-0.027579715,0.66232884,-0.09998381,-0.7857648,0.3665536,-0.43414608,0.003750107,-0.06831908,0.4446745,0.73514444,0.337462,-0.08564057,0.75617415,-0.41904345,0.10170062,-0.03963355,-0.20358233,0.16710337,-0.14904928,-0.08792533,-0.6581579,0.032901157,0.03540211,-0.06357987,0.13403155,0.56347775,-0.67084134,-0.20993255,0.07481043,0.8423406,-0.3173587,-0.064098194,0.5964688,1.2815306,0.9249546,-0.031540107,1.0276101,0.311913,-0.02456605,-0.15186374,-0.21189985,-0.53052527,0.15843572,0.55414957,0.20559642,0.7984899,0.075243615,-0.02961023,0.4157215,-0.14824544,-0.13609181,-0.039544217,0.32162222,-0.004703688,-0.21050301,-0.6561972,0.0013136396,-0.020766543,0.08633917,-0.020909233,0.3725653,-0.37703213,0.34117386,0.061213613,1.7558147,-0.19471177,0.08370485,-0.037463434,0.25479722,0.3208882,-0.3379889,-0.068760104,0.13274999,0.15405367,-0.018435793,-0.37094983,-0.043266244,-0.26745722,-0.6088859,-0.21558496,-0.21994965,-0.28743982,0.060039308,-0.40960068,-0.1737846,-0.0030534694,-0.26344973,0.45985016,-2.6722534,-0.32069305,-0.17247303,0.35639378,-0.2880551,-0.35523728,-0.121129684,-0.16707622,0.3815966,0.32716125,0.38718066,-0.44214672,0.32820395,0.418964,-0.42133477,-0.20021819,-0.36528233,-0.015185603,0.13143203,0.5859252,-0.053373862,-0.15654819,0.13597092,0.37465382,0.41184726,-0.25248575,-0.021517415,0.40518767,0.38047343,-0.08819082,0.10152114,0.10255892,0.47288534,-0.24790023,-0.1957848,0.37849385,-0.16468407,0.47083944,-0.0070991814,0.28862146,0.33851528,-0.340638,-0.7582836,-0.47653344,-0.10004787,1.0382155,-0.24253069,-0.6097841,0.20268907,-0.17625865,-0.3046318,-0.064076565,0.22116037,0.024631811,-0.0041714055,-0.7733117,0.09044202,-0.060012598,0.25146678,-0.0093245525,-0.11104865,-0.35933867,0.710857,-0.05339088,0.49881586,0.23986149,0.48618603,-0.15726349,-0.34768078,0.13947938,0.9780079,0.69581175,0.01663259,-0.19454412,-0.21875568,-0.26489285,-0.1302013,0.1799593,0.3731822,0.7031662,0.1323794,-0.030239705,0.2675067,-0.055440366,0.059705194,-0.00027265932,-0.37933087,0.096971795,-0.030120304,0.50485116,0.65089595,-0.12686028,0.62537205,-0.115775526,0.2799439,-0.21689253,-0.64549404,0.48384458,0.6676901,-0.15671597,-0.30808768,0.4956429,0.38723263,-0.17420615,0.46149984,-0.8123633,-0.46164614,0.3940862,-0.074402764,-0.3381667,0.20841311,-0.23230508,0.17307055,-1.0056307,0.39766455,-0.183464,-0.44312218,-0.5223726,-0.2108167,-2.313912,0.07143001,-0.16267036,-0.17296581,-0.13841283,-0.1120797,0.23980634,-0.70182717,-0.60015804,-0.040080447,-0.041561045,0.548296,-0.02892364,0.20387636,0.08233355,-0.57176095,-0.061395653,0.3211723,-0.035774656,0.26411542,-0.17434214,-0.3081687,-0.23230569,-0.2436218,-0.2718808,0.11468245,-0.65543544,-0.6351584,-0.35413557,-0.20277032,0.06537883,0.7916457,-0.3342454,-0.07333411,-0.34636825,-0.003778068,0.148237,0.19301485,0.29857752,0.04933093,0.20931053,0.04004165,0.029940614,-0.49352172,0.11507421,0.19755873,0.482977,0.6741194,-0.27716938,0.3883418,0.5929607,0.58026254,-0.15909621,0.66696805,0.36108842,-0.32393143,0.25398368,-0.21001749,-0.24057038,-0.5714798,-0.38675803,-0.0016770618,-0.36248296,-0.4692329,-0.09598557,-0.32060644,-0.7545738,0.45871702,0.009352841,0.361049,-0.087938406,0.34696862,0.4568989,-0.23664483,-0.22836696,-0.13944599,-0.2482271,-0.63728577,-0.37892613,-0.6705012,-0.52668524,0.19726296,1.1398233,-0.2461519,0.06084588,0.08763997,-0.21318147,0.06966635,-0.26399818,0.14956944,-0.05167388,-0.011664137,-0.066394396,-0.7283206,0.49774095,-0.14893031,-0.09484859,-0.53438485,0.1293032,0.54451174,-0.51803786,0.105820276,0.3398896,0.268016,0.009742388,-0.5468167,0.16129562,0.16229095,-0.34665442,0.34742647,0.25321543,-0.51680076,0.42663994,0.40009183,-0.25793257,-0.612527,0.35844693,0.053083427,-0.047654323,-0.18794258,0.27824476,0.1368614,-0.01505463,-0.09998245,0.15991804,-0.5471788,0.29442364,0.30393288,-0.0010760128,0.10663574,-0.24209796,-0.46332604,-0.59699094,0.23819205,-0.25116235,-0.28606203,0.25174573,0.16668214,0.11977255,0.09655757,0.27401,0.5622582,-0.3967556,0.10750254,-0.23918998,-0.26462016,0.5132163,0.66494334,0.661849,-0.29903108,0.47903302,-0.014814609,-0.043765735,-0.13827333,0.004481218,0.5528807,0.3024592,0.15188397,-0.021557245,-0.04384883,0.19127049,0.784886,0.00879513,0.19163999,0.059507173,-0.35406846,0.050788768,0.01787329,0.061903186,-0.09506244,-0.43977657,-0.07715939,-0.0025452205,0.13894044,0.54307884,0.16980603,0.072873436,-0.13483196,-0.31298622,0.17150934,0.17480102,0.027240217,-1.3327925,0.27528313,0.19706747,0.6961165,0.35892263,0.018112525,0.059015654,0.44435105,-0.2716156,0.18000673,0.32863656,-0.07216274,-0.37347776,0.58178186,-0.75205815,0.4574016,-0.054137528,0.015854787,0.07260574,-0.09273255,0.39949346,0.9707635,-0.10242113,0.113546506,-0.026928429,-0.26555464,-0.28306183,-0.24372871,0.121663556,-0.33300254,-0.47831056,0.65469396,0.26394886,0.29748037,-0.2099848,-0.025160346,0.11769529,-0.24923602,0.49439883,-0.047252093,0.27294984,-0.24008325,-0.39086494,-0.2827637,0.66496,-0.11213093,0.16807923,0.004948415,-0.23321564,0.18494119,-0.05342155,0.0145436805,0.09742792,-0.6171902,0.13266315,-0.3476608,-0.4404556,0.4718185,0.057120237,0.035488103,0.044221886,-0.017079541,-0.12038938,0.40045145,-0.002408266,0.7381457,0.2982938,-0.15674055,-0.1736343,0.23506513,0.0754736,-0.21105817,0.16013522,-0.08498049,0.34575775,-0.7596265,0.5302422,-0.120108165,-0.36486334,0.10058435,-0.09542123,0.068039134,0.31703192,-0.16429888,-0.16769016,-0.21109936,0.0801213,-0.3104609,-0.21624877,-0.16315879,0.014047341,0.14988308,-0.06545403,-0.054343067,-0.09734649,0.05292669,0.06908459,0.024195168,0.48520952,0.48308012,0.086356044,-0.584889,0.029343333,0.26484558,0.2899908,0.0610012,0.114596225,-0.22213843,-0.51803935,-0.54196936,0.1744674,-0.23519866,0.10466645,0.16989605,-0.29918522,0.77565783,0.16403557,1.3779503,0.06113266,-0.19026725,0.13201165,0.45675734,-0.043490905,-0.07815234,-0.30700752,1.0745353,0.81518525,0.029354155,-0.024215952,-0.38684025,-0.3263891,0.42331368,-0.3447755,-0.09014351,0.041334,-0.7107849,-0.4449361,0.11105204,0.2083194,-0.0797173,-0.105711274,-0.0039264983,0.21784763,0.094177626,0.099372625,-0.5879959,-0.15883295,0.3635082,0.27892473,-0.029580373,0.07592438,-0.6406604,0.41865745,-0.6451885,0.1312634,-0.5109071,0.02935536,0.15230274,-0.3637397,0.13180563,0.1898381,0.24548905,-0.43677145,-0.36301285,-0.13652204,0.5417697,0.089811556,0.1366496,0.52852803,-0.2782721,0.22546484,-0.04351587,0.3000365,1.1865445,-0.2852826,-0.106294595,0.20471916,-0.4167802,-0.7035799,0.011077725,-0.4858108,0.12776825,-0.29839823,-0.34825644,-0.6803444,0.33471245,0.20847437,-0.08192843,-0.16121064,-0.5255075,-0.15396199,0.06911918,-0.45544162,-0.1966466,-0.2742914,-0.021411743,0.46250102,-0.3119497,-0.35314628,0.053351197,0.33792195,-0.32689255,-0.55728537,0.00056448154,-0.25367406,0.24594514,0.07544528,-0.3828766,-0.09443997,0.0202943,-0.4572311,0.038684748,0.27968475,-0.36682,-0.07816677,-0.3289342,0.051636543,0.78117436,-0.061844796,-0.19947971,-0.7193122,-0.52056813,-0.8210801,-0.6417465,0.18814524,0.31734085,0.07751464,-0.8834397,0.05712113,-0.2202915,0.11935617,0.016614288,-0.42247227,0.26178727,0.1393128,0.24510847,-0.3118629,-0.91264516,0.22409916,0.14142667,-0.033059683,-0.5676955,0.46831983,-0.11359661,0.87103766,0.106252536,-0.11919908,0.26153946,-0.7778427,0.2571786,-0.18330076,-0.07374484,-0.7378065,0.14811526,636 -491,0.19323502,-0.123686545,-0.2286608,-0.27925926,-0.17837124,0.11646271,-0.22519514,0.32809886,0.06934201,-0.31667683,-0.23566723,-0.17962353,0.051911227,0.40987685,-0.16138795,-0.6859582,-0.12275929,0.009111574,-0.59148186,0.56145513,-0.6120454,0.26530334,0.25316286,0.32101005,-0.12864171,0.26707786,0.4321147,-0.2297242,0.060587514,-0.26888365,-0.14676175,0.31662807,-0.4993485,0.15474162,-0.08616928,-0.17363246,0.21309869,-0.24377067,-0.18556271,-0.7448522,0.17046191,-0.8978334,0.37252426,-0.07969362,-0.09666431,0.15665805,0.20938969,0.28707623,-0.16244774,-0.067890905,0.17482077,-0.1301219,-0.118909545,-0.29664162,0.096591674,-0.3844926,-0.4582529,-0.100652054,-0.51743925,-0.5041432,-0.124519415,0.19868548,-0.32882595,-0.08048173,-0.2360198,0.43258986,-0.4315125,-0.10287327,0.3133605,-0.2766095,0.56825405,-0.5427552,0.056266427,-0.01950129,0.40636688,-0.007984928,-0.07664146,0.3148835,0.4324228,0.34752983,0.14416148,-0.26069647,-0.124994114,-0.34869224,0.24851401,0.42160964,-0.10292781,-0.4221191,-0.08626696,0.03351164,0.021459648,0.3214805,0.041792784,-0.30666956,-0.10063819,0.013871344,-0.25533393,0.46483138,0.3986917,-0.18798815,-0.43354076,0.21060152,0.68437,0.26520684,-0.2582634,-0.028658288,0.018373387,-0.43730518,-0.12558457,0.26101497,-0.14537227,0.5875603,-0.24379878,0.16444787,0.8289819,-0.088160686,0.11359911,-0.11417898,-0.04156701,-0.16696048,-0.18745139,-0.20477043,0.14723895,-0.6473509,0.022376146,-0.41130647,0.7795764,0.02508224,-0.6970725,0.40664193,-0.6499957,0.13091604,-0.109749384,0.62649155,0.39577124,0.18632582,0.25011167,0.6202918,-0.38776484,0.04610048,-0.04583233,-0.46326256,0.11864465,-0.2904859,0.11569209,-0.46752003,0.06648542,-0.08146213,0.23820259,-0.17876224,0.15494551,-0.61986244,0.070191756,0.17039254,0.7139211,-0.3532433,-0.0016290204,0.48837158,1.0768213,0.9763454,0.010496163,1.4275277,0.26819882,-0.23241913,0.15276524,-0.28187063,-0.5569825,0.2116266,0.5455678,0.19924426,0.2074416,-0.24682042,-0.0097854985,0.2859058,-0.5087957,0.10593841,-0.075420536,0.30182055,0.14387985,-0.16997239,-0.5142729,-0.09396988,0.0981282,-0.08153697,0.13956258,0.047069293,-0.051096804,0.35694548,0.05149903,1.0312712,-0.15482831,0.18520682,0.08812834,0.40849087,0.18359163,0.08436204,0.060130317,0.3961385,0.3747015,0.10789547,-0.6778752,0.36278725,-0.28858116,-0.4229181,-0.043401856,-0.39801124,-0.07839769,0.017703585,-0.39433017,-0.08437103,0.05479472,-0.2118314,0.3665546,-2.8427846,-0.2586896,-0.14298713,0.21397908,-0.35852814,-0.09977029,-0.0023243895,-0.5003045,0.40862444,0.2918713,0.41676435,-0.5952973,0.42579293,0.44073194,-0.44269896,-0.058114547,-0.6681269,-0.14496568,-0.10291598,0.56512463,0.2587139,-0.006155058,-0.17917016,0.38375473,0.5706619,0.023696551,0.07246513,0.384492,0.14660151,0.20780306,0.46463236,0.038919635,0.485355,-0.116331026,-0.09785952,0.33691767,-0.15930244,0.1930369,-0.24348548,0.103840426,0.43190095,-0.2741421,-0.78265375,-0.7264348,-0.71368927,1.143664,-0.36740676,-0.3622132,0.30203137,0.11537913,-0.0907377,0.063350014,0.35741955,-0.20848133,0.18819277,-0.60545915,0.123721376,-0.0041533113,0.16446124,0.08697748,0.027738107,-0.4511042,0.6407,-0.0039058242,0.3557548,0.2502654,0.23329099,-0.22385897,-0.3912582,-0.013398296,0.7760215,0.34037322,-0.23085557,-0.20514794,-0.338793,-0.17370966,-0.090986975,0.013837313,0.52751094,0.89803857,-0.00043687224,0.02869695,0.16176932,-0.09799044,0.10100299,-0.19351673,-0.3930284,0.06904126,-0.024223695,0.54295766,0.4127972,-0.05736364,0.30991262,-0.21701162,0.44281083,-0.10589518,-0.46098828,0.5346909,0.8003121,-0.080171004,0.040757325,0.46764913,0.5242225,-0.44788232,0.44658586,-0.57135886,-0.13314734,0.7368898,-0.23280764,-0.5213245,0.17984764,-0.20640646,0.17874397,-0.95417774,0.36207843,-0.44719562,-0.43694106,-0.4780569,-0.0685585,-3.1186435,0.124615274,-0.07034808,-0.086814746,-0.29971555,-0.018416582,0.37766957,-0.56455606,-0.5710694,0.13351102,0.13820602,0.53949034,-0.074221514,0.05602128,-0.2513599,0.011741204,-0.047979772,0.31437916,0.031278424,0.1124451,-0.17329285,-0.41270018,0.0765465,-0.21453944,-0.5904339,0.25560686,-0.49272984,-0.60843945,-0.09215288,-0.3343038,-0.17820229,0.6479349,-0.40332556,0.047457043,-0.16101494,0.17888236,-0.24079697,0.22360468,0.12592039,0.26564115,0.14605148,-0.023714123,-0.049611624,-0.33036533,0.39992926,0.078418985,0.26982194,0.1503695,0.00629332,0.14912975,0.5350377,0.4560282,-0.07246011,0.8772148,0.34058616,0.0262955,0.2500922,-0.36011967,-0.31300002,-0.4965833,-0.31034797,-0.10870682,-0.30729127,-0.49612173,-0.008507048,-0.17975284,-0.50822395,0.5888958,-0.0035520536,0.27461478,-0.06451209,0.19318299,0.27585214,-0.20013376,0.12678528,-0.07615774,-0.19900349,-0.5139386,-0.2199049,-0.6316088,-0.44389492,-0.14224532,0.65069443,-0.31294283,-0.012962474,-0.15469337,-0.2664608,0.061928235,0.04853412,0.010107151,0.2297525,0.35945457,0.08797486,-0.76848495,0.42706066,0.09746518,-0.084255084,-0.43596894,0.06528225,0.72958744,-0.634952,0.42110926,0.27724054,-0.04140995,-0.19898823,-0.43187088,-0.20069835,0.07112371,-0.36254016,0.4784433,-0.041193668,-0.6668864,0.43319866,0.34125826,-0.34679273,-0.66205645,0.3291622,-0.0494711,-0.23734331,0.029079003,0.3335155,0.05830284,0.024893597,-0.19902919,0.23694147,-0.57062167,0.11528448,0.31996465,0.11724416,0.46344075,-0.11147077,-0.18208502,-0.6704735,-0.11512052,-0.50777537,-0.28375822,0.23075171,-0.041273497,-0.21752729,0.24567983,0.1347449,0.38460636,-0.11267344,0.15895341,0.09240457,-0.37245464,0.28629765,0.44192764,0.18803477,-0.25804383,0.51343447,0.1457126,-0.15401642,-0.18178797,0.012695296,0.43736354,0.09745364,0.33655486,-0.1352229,-0.15310839,0.57665044,0.67246014,0.14797807,0.56390476,-0.0028582898,-0.060779102,0.45132536,-0.10051139,0.14463606,0.096893415,-0.38258985,-0.03181231,-0.049543507,0.06512682,0.5382705,0.17191958,0.28969648,0.24873097,-0.24333845,0.0020044872,0.32453638,-0.017227096,-0.93908745,0.42171887,0.3594934,0.8366996,0.5135245,0.050011665,-0.054294936,0.6320144,-0.33419013,0.05375057,0.47928166,0.096731886,-0.5947431,0.7525304,-0.62404525,0.11185288,-0.15266559,-0.1188512,0.021531224,0.05691146,0.32491383,0.8030842,-0.18496957,0.038420927,-0.1865048,-0.15642455,0.18951361,-0.3043287,0.14325044,-0.150822,-0.33855024,0.4119408,0.38837078,0.3057526,-0.14845982,0.0450167,0.27773854,-0.05993373,0.41273448,-0.02960913,-0.08799703,-0.052106876,-0.4637147,-0.2758213,0.48996645,0.087108985,0.2104082,-0.20969306,-0.19218199,0.03606834,-0.21905264,0.012634978,-0.059902925,-0.63090694,0.042705644,-0.06646357,-0.43137375,0.52296925,-0.5181088,0.16262518,0.15028128,0.032477897,-0.11890894,-0.13834369,0.08276487,0.5821281,0.15378337,-0.2589307,-0.21929455,-0.066187166,0.085754864,-0.25728768,-0.045356028,-0.24394308,0.019229207,-0.49614754,0.52806777,-0.14327502,-0.40035865,0.10811478,-0.2983146,-0.16644144,0.4572367,-0.104924485,-0.11165745,-0.12892124,-0.21023051,-0.28051254,0.09069016,-0.2021947,0.18374474,0.29912433,-0.013759621,-0.20862247,-0.15779565,-0.22437762,0.5294855,0.15565953,0.39721218,0.23030742,-0.20927797,-0.2638382,-0.041964274,0.115860835,0.3034845,0.20562282,0.115068875,-0.20362213,-0.26995772,-0.22124465,0.21198736,-0.06505295,0.27587444,-0.06445487,-0.39209822,0.8249401,0.10448714,1.2091011,0.065372184,-0.22594514,0.06373983,0.44736332,-0.13274972,0.08473646,-0.5290612,0.7065856,0.49946374,-0.15788046,-0.10221451,-0.35051605,0.088682346,0.254232,-0.21955578,-0.029081108,-0.13322257,-0.6563758,-0.4064677,0.1859359,0.29180977,0.0052255476,0.09576794,-0.18589494,-0.006052392,0.003229452,0.71484643,-0.542147,-0.067938276,0.17603593,0.07005449,0.014200389,0.07062406,-0.27200338,0.5048995,-0.7317336,0.21393807,-0.41341305,0.0023603847,-0.20963381,-0.24391784,0.10517795,-0.19354393,0.1823188,-0.13400099,-0.55708796,0.077604294,0.38798183,0.104184985,0.1240463,0.62936336,-0.24267569,0.22752817,0.13861932,0.48450875,1.237012,-0.29763767,0.014396901,0.1634909,-0.4810458,-0.58020455,0.3488509,-0.2855997,0.04398546,-0.0484299,-0.45111126,-0.47820207,0.19287561,0.3225045,0.011273972,0.093767345,-0.34074703,-0.24706472,0.39892802,-0.3525608,-0.2738654,-0.22606172,0.27806517,0.5772602,-0.35386533,-0.2467767,-0.11095585,0.2462523,-0.51293296,-0.5368676,-0.10417043,-0.15468816,0.37337723,0.05713331,-0.4437177,0.102103524,0.22944799,-0.44734573,0.1629698,0.24838166,-0.30381265,0.02011085,-0.12932779,0.049514316,0.71768725,-0.2856756,-0.3249211,-0.7182471,-0.42467928,-0.82179374,-0.44164735,0.4610343,0.1080451,-0.015534461,-0.44798446,0.12248761,-0.11969695,-0.022827098,0.18399355,-0.32782164,0.30859396,0.14019188,0.57540816,-0.21446736,-0.75839275,0.20802593,0.08489396,0.082582235,-0.5870675,0.7350821,-0.11399514,0.5464552,-0.03694478,-0.04216543,-0.008051777,-0.34018895,0.21030354,-0.24498521,-0.18679786,-0.73932403,0.18231918,637 -492,0.46734723,-0.24138418,-0.43293738,-0.12080859,-0.3088322,0.22234058,-0.26137644,0.2673916,0.03155188,-0.47594133,-0.04251384,-0.03183416,-0.042883594,0.35219702,-0.022334341,-0.64757645,0.020349273,0.079825394,-0.7375434,0.5383107,-0.64581925,0.42315334,0.120594166,0.29919997,-0.0091812415,0.4149777,0.4052692,0.038662765,0.09053396,-0.077535875,-0.34294847,0.045491226,-0.5569633,-0.056391858,-0.15920047,-0.33663923,-0.06764484,-0.38682318,-0.20085777,-0.7750154,0.29896098,-1.04404,0.6343688,-0.2291629,-0.23614372,0.037079614,0.30936363,0.26695698,-0.33302307,0.07889979,0.25601223,-0.26762,-0.1422859,-0.30312696,-0.14849617,-0.39687064,-0.5009162,-0.14824589,-0.62489146,-0.3804338,-0.19251013,0.16352841,-0.42528144,0.05568872,-0.21930183,0.34173664,-0.4621077,-0.09067772,0.2973188,-0.34998587,0.27243003,-0.7244153,0.038596023,-0.13148507,0.5145601,0.056335133,-0.08153764,0.39000633,0.4906659,0.52977556,0.251876,-0.377573,-0.117673144,-0.34301695,0.23371276,0.51775545,-0.12199427,-0.2554725,-0.25768852,0.03712846,0.35694885,0.41152814,0.061788075,-0.19998327,0.04542515,0.011963027,-0.13954505,0.5444377,0.47492138,-0.2729551,-0.36726937,0.23878029,0.687065,0.21591237,-0.27485442,0.088905685,-0.06752111,-0.5284446,-0.07875721,0.30285424,-0.09138465,0.4974451,-0.17295489,0.17233883,0.7934085,-0.14894535,0.039188642,-0.24142954,-0.170494,-0.07524608,-0.3328386,-0.10711879,0.19500007,-0.6310673,0.13293369,-0.34431463,0.5967464,0.21973245,-0.6736991,0.5610789,-0.46610993,0.17057954,0.08895503,0.65517265,0.6611473,0.36920124,0.07469184,1.019281,-0.26219696,0.060413655,-0.06054135,-0.2952931,-0.20875044,-0.19158903,0.3322716,-0.42109326,0.46935254,-0.10502998,0.28957245,0.03112655,0.59845406,-0.528369,-0.15288952,0.25062045,0.9244694,-0.3546236,0.08957307,0.7083235,1.084064,1.0964044,-0.09620492,1.3565397,0.22161399,-0.293623,-0.018969623,-0.13387896,-0.53396845,0.08659046,0.46438202,0.59211063,0.3569,-0.06396567,-0.2987813,0.39184004,-0.24993917,0.033937026,-0.0002240198,0.19647476,0.2329643,-0.093482755,-0.462258,0.1061122,0.046661068,-0.09097422,0.27407026,0.13578849,-0.25865677,0.5672947,-0.038803034,1.3317286,-0.30707386,0.15785328,0.21998475,0.46517235,0.37076202,-0.09243075,0.1123984,0.4982541,0.5447865,-0.14517738,-0.69186455,0.20379066,-0.54534304,-0.4185366,-0.076648735,-0.4469641,-0.11702796,0.010084472,-0.38267308,-0.20324047,0.05650568,-0.25619113,0.24250785,-2.7591221,-0.4277983,-0.30389833,0.28881773,-0.5001293,-0.26007178,-0.18574132,-0.52576625,0.37909937,0.20946242,0.41486096,-0.5479105,0.55119544,0.50118786,-0.39014027,-0.08155717,-0.5627494,-0.23020463,0.027289135,0.48253712,-0.028350009,-0.22748987,-0.16486575,0.2688844,0.7789795,0.19163655,0.14800204,0.44961184,0.3636065,0.09785199,0.5333465,-0.14478938,0.6654649,-0.4311075,-0.024114426,0.49552944,-0.24343811,0.20229748,-0.27318853,0.11132051,0.626742,-0.40070835,-0.8456956,-0.62570965,-0.38702306,0.9741918,-0.44152483,-0.6015636,0.2761822,-0.112858646,-0.09792141,0.0059390836,0.60285187,0.0018548028,0.26424143,-0.64801353,0.14720461,-0.1790404,0.21700294,-0.011336448,-0.03327087,-0.3915742,0.8291802,0.018565485,0.6988181,0.24039836,0.29232964,-0.08721728,-0.16675234,0.06917654,0.75921106,0.46505094,-0.03324529,-0.18330513,-0.14803472,-0.13073388,-0.35704878,-0.09220738,0.6948768,0.81396574,-0.038756054,0.14937393,0.19845612,-0.030121673,0.08145674,-0.08415176,-0.20339687,-0.14776541,0.023395373,0.39189354,0.29990068,-0.18028069,0.46184954,-0.2380491,0.23987365,-0.13287596,-0.6662531,0.6615613,0.5696279,-0.20743613,-0.016611984,0.40953276,0.47372058,-0.6229231,0.5127863,-0.7862037,-0.24463116,0.9185479,-0.2520638,-0.44076136,0.33460823,-0.25121358,0.08805139,-0.6558419,0.041119814,-0.44179899,-0.48446637,-0.29190332,-0.26823807,-3.4860313,0.2132366,-0.08468645,-0.0861914,-0.44705293,-0.17968445,0.27409506,-0.43933088,-0.6031452,0.21172884,0.20936105,0.65119183,-0.1612934,0.0973795,-0.37535566,-0.19702911,-0.10087196,0.34806055,-0.04080016,0.22203198,-0.25227836,-0.24888079,-0.09298282,0.013019832,-0.68996894,0.089592226,-0.6265863,-0.38425848,-0.1644206,-0.48553285,-0.060503006,0.7339401,-0.23872519,0.12223005,-0.11074602,0.19827507,-0.26713443,0.09759883,0.07267571,0.3664775,0.12914114,-0.16927607,0.18047585,-0.3565511,0.52570647,0.06333594,0.35151675,0.0859003,-0.09923136,-0.024250554,0.28045923,0.60436636,-0.05499151,1.0819517,0.09766475,-0.15051906,0.44492334,-0.30220175,-0.37090316,-0.7658836,-0.3299444,-0.02972145,-0.46748382,-0.6469375,-0.07378515,-0.41040298,-0.7593773,0.5132762,0.016723623,0.6578656,-0.0022321183,0.4735739,0.34499124,-0.32027224,0.03152136,-0.1262322,-0.11550314,-0.516018,-0.31045252,-0.78980935,-0.5983077,-0.030609634,0.68760675,-0.36474138,-0.11746294,-0.20025817,-0.2975883,0.036178835,0.1348404,0.36867183,0.19470975,0.4594443,0.05877288,-0.6481872,0.45330802,-0.17775781,-0.26992926,-0.5564486,0.23747036,0.56246084,-0.64538676,0.64441234,0.2194351,-0.02380441,-0.18677285,-0.6373273,-0.08907808,0.022550728,-0.21716428,0.44473606,0.06705922,-0.75765103,0.54891527,0.33563748,-0.25766414,-0.6611986,0.35373244,-0.12602033,-0.27481332,-0.15958415,0.39563054,0.23437683,-0.05576042,-0.118052736,0.07655376,-0.689262,0.29428092,0.2735375,0.057173524,0.6120717,-0.0625836,-0.46851054,-0.68507296,-0.05386544,-0.5813739,-0.25176352,0.37412828,-0.11010047,0.016003123,0.17816801,0.05917883,0.531223,-0.15169765,0.2711479,-0.10501294,-0.34981623,0.33292332,0.46675625,0.20093314,-0.43708023,0.66633797,0.1320133,-0.2585409,0.23557173,0.17737079,0.3874653,-0.0067498363,0.43048647,-0.3116624,-0.08733791,0.29771468,0.8107618,0.24226859,0.48768076,0.25189742,-0.1310046,0.44688457,-0.09679009,0.103079624,0.08216792,-0.5596402,-0.053771667,0.013269714,0.06578879,0.61791265,0.3509174,0.3081389,0.17854163,-0.03365129,-0.08782095,0.19569221,-0.1707635,-1.1479056,0.3545964,0.24907044,1.0260812,0.29782963,0.13228813,-0.2652834,0.5201759,-0.21564086,0.10309488,0.4175217,-0.18392588,-0.46023288,0.86044616,-0.56738406,0.35602084,-0.051986046,-0.049766142,0.18023981,0.05579142,0.45568022,0.98680633,-0.15839955,-0.045511328,0.0071600378,-0.19985011,0.15110649,-0.30411536,-0.03555807,-0.14992432,-0.44261295,0.6090297,0.35135362,0.346497,-0.26492837,-0.104044594,0.048932415,-0.16772838,0.10170494,-0.13809158,0.11875468,-0.09816783,-0.3491804,-0.27955684,0.4608035,0.033195335,0.24809197,-0.09084751,-0.3625271,0.113853626,0.042591702,0.035725422,-0.027116712,-0.8504738,0.14529245,-0.31126902,-0.6784887,0.38287467,-0.1604416,0.012071644,0.15603025,-0.14652133,-0.081624456,0.2691475,0.022521688,0.7976276,0.0035907966,-0.20739527,-0.5136069,0.057718534,0.16533755,-0.30899987,0.27105722,-0.25018814,0.0472637,-0.5762211,0.6968952,-0.19962113,-0.2700141,0.34306532,-0.21990879,-0.22236596,0.54409146,-0.1071008,0.0056933886,0.07163695,-0.17585562,-0.43245512,-0.08037821,-0.25574398,0.15366258,0.12030453,0.0804882,-0.027843704,-0.09332966,0.028991604,0.6416264,0.20296775,0.2300309,0.14699355,0.0040281075,-0.3453305,0.11876241,0.22826421,0.6110492,0.09454975,0.06318792,-0.17627867,-0.6031249,-0.37290382,0.33888197,-0.12515905,0.26060414,-0.011742524,-0.32458553,1.0018659,0.17386451,1.0501658,0.043572843,-0.3926511,-0.023357885,0.6952434,-0.10662782,0.028878918,-0.45865774,0.8606473,0.57626575,-0.024989188,0.037634157,-0.39928362,0.03183513,0.49921873,-0.47261095,-0.012302564,-0.20765826,-0.5696062,-0.46120957,0.12723179,0.17455758,0.1720004,-0.11601086,-0.009878263,0.19957045,0.097170845,0.40761724,-0.66696537,-0.20252933,0.26578757,0.010474541,-0.18177669,0.12929378,-0.28749248,0.42488876,-0.8352289,0.0929793,-0.3870735,0.0068199933,-0.06058981,-0.30254313,0.19699107,-0.012204289,0.29491186,-0.29939595,-0.3999131,0.06549205,0.31075212,0.13785563,0.15136436,0.6968406,-0.25676772,0.07084027,0.2225554,0.5632711,1.2858344,-0.24034564,0.030904565,0.18089703,-0.6016866,-0.68023425,0.2568768,-0.38800573,0.12133634,-0.15972349,-0.48121217,-0.4052278,0.28176,0.096148014,-0.09521462,0.15703116,-0.63427514,-0.36888868,0.2710261,-0.31843516,-0.2699449,-0.36731002,0.33286616,0.8457548,-0.23339847,-0.3185394,0.053728122,0.3868701,-0.29709515,-0.78065443,0.07132502,-0.22412737,0.30854335,0.061233938,-0.15905078,0.011000254,0.1627421,-0.6879479,0.089676104,0.19662094,-0.45459318,0.004153874,-0.27926943,-0.11575153,0.8689283,-0.25018406,-0.23269527,-0.62959343,-0.5503332,-0.782463,-0.48058462,0.28031278,0.083616376,0.042056836,-0.5012087,0.00731951,-0.23464385,-0.00021128995,0.059678923,-0.4255384,0.27842563,0.030937513,0.5563137,-0.26252487,-0.8056522,0.1281176,0.12756138,-0.10518885,-0.5240167,0.5968665,-0.1342124,0.7627864,0.13253215,-0.16401999,-0.044474702,-0.46391317,0.14521012,-0.4831798,-0.057184704,-0.90658826,0.12563793,641 -493,0.472856,-0.015805772,-0.45740774,-0.18737166,-0.4316344,0.15197262,-0.22256847,0.26555738,0.24293743,-0.35469648,0.09055044,0.029687518,-0.13626356,0.42641714,-0.15987277,-0.7088189,0.18841854,0.05775691,-0.6190247,0.42670637,-0.64359844,0.41433614,0.14824833,0.27958208,0.11525178,0.21640389,0.29755566,-0.10006024,-0.07554736,-0.027511904,-0.16479976,0.17006,-0.6407962,0.29083365,-0.10170611,-0.32938257,-0.044440117,-0.24872674,-0.28152642,-0.7108288,0.26565942,-0.8050774,0.60326344,-0.06286589,-0.28610015,0.051746782,0.11295526,0.15164784,-0.41815677,0.07430893,0.39865586,-0.30476826,-0.14868836,-0.093894966,-0.17508003,-0.4432964,-0.5613489,-0.0060075223,-0.6636791,-0.13220413,-0.28906938,0.25744227,-0.26952937,0.010178308,-0.12309336,0.43081924,-0.3844567,0.15946744,0.1250067,-0.2184777,-0.038635977,-0.45348093,-0.10311779,-0.0812651,0.325806,0.011132598,-0.30550152,0.25030333,0.41600767,0.40807477,0.059775624,-0.30897516,-0.18613945,-0.06444156,0.097614355,0.41146824,-0.060541935,-0.39445302,-0.24079537,-0.048063178,0.23262838,0.11685126,0.0988875,-0.39902568,-0.025704253,0.1305859,-0.2735936,0.488632,0.5061754,-0.41099668,-0.01286229,0.5447291,0.22110094,0.21619298,-0.28242242,0.1381216,-0.17685306,-0.4676648,-0.15475857,0.18879159,-0.011164543,0.5050325,-0.1567252,0.34051818,0.7845273,-0.13114452,-0.06521713,-0.07203336,-0.120118566,-0.019634416,-0.17319952,-0.1726146,0.1447237,-0.49340153,0.09462015,-0.2779033,0.78161913,0.15571104,-0.7564637,0.46855325,-0.32704636,-0.05361649,-0.181121,0.53510207,0.7304861,0.5152626,0.08004941,0.8163828,-0.67674017,-0.088155724,0.018992824,-0.40975854,0.053204972,-0.101150036,0.1354395,-0.36534396,-0.048004847,0.049637042,0.16031893,-0.023025708,0.41013235,-0.18255946,-0.119587265,-0.061715227,0.62993187,-0.46888992,-0.16777848,0.83894926,0.95837563,1.0205001,0.17723426,1.2067859,0.33745766,-0.017284675,-0.16775084,-0.09664208,-0.55301464,0.18711607,0.26002917,0.38703388,0.16057315,0.18146385,0.067156844,0.29267326,-0.20725688,-0.1474919,0.054812405,0.31862673,-0.054452237,-0.14560726,-0.4045725,-0.27827987,0.19737123,0.10999068,-0.0028589752,0.21440685,-0.15951331,0.51368296,0.111393966,1.4672525,0.12631138,0.0809272,-0.015933465,0.3804555,0.2436967,-0.18269055,-0.21938737,0.14756456,0.4776577,-0.09417515,-0.5560526,-0.07495662,-0.219708,-0.5139579,-0.08247953,-0.37907267,-0.19801112,-0.23645318,-0.41314366,-0.11814453,0.27776617,-0.36380512,0.5384296,-2.6090083,-0.24239846,-0.0979997,0.35003144,-0.15218954,-0.3217854,-0.37429938,-0.53404963,0.37060764,0.30515862,0.43810937,-0.7192803,0.67311174,0.25087664,-0.18426228,-0.25514904,-0.7093391,0.015541949,-0.10811348,0.31238985,-0.008192179,-0.13227485,-0.19800845,0.2730264,0.7269839,-0.026136884,0.01665294,0.23983853,0.45928717,-0.035447706,0.6379324,0.0030221045,0.62362766,-0.2536921,0.023706065,0.3875599,-0.3661303,0.34178534,0.04817673,0.23738496,0.50241715,-0.46018484,-0.8432244,-0.64036196,-0.27339172,1.1187755,-0.41834995,-0.18619433,0.3447538,-0.16213313,-0.27600348,0.13715418,0.51574403,-0.056437988,-0.03191697,-0.685646,-0.08800685,-0.043061633,0.23582126,-0.16948445,0.12086443,-0.3218213,0.6321457,-0.11239933,0.63030344,0.308281,0.13438728,-0.121709175,-0.34329605,0.074547745,0.90124637,0.35457632,0.04957511,-0.17744003,-0.2121221,-0.34821174,-0.101250514,0.06905569,0.5583171,0.65270346,0.026093794,0.021777255,0.2662051,-0.24619913,-0.08512624,-0.16133308,-0.25584257,0.002971809,0.14069507,0.53706616,0.72879416,-0.17616859,0.4314455,-0.14140628,0.25789636,-0.27871615,-0.48024365,0.6086802,0.57204866,-0.17234084,-0.15319027,0.4983668,0.31990284,-0.15364991,0.37567988,-0.45911434,-0.49443525,0.5499886,-0.017163744,-0.2874369,0.15764628,-0.36223993,0.085707925,-0.8898614,0.3753849,-0.1682758,-0.6956021,-0.43309262,-0.16964062,-3.7781823,-0.046194077,-0.08655423,-0.07353512,-0.2005398,-0.16955742,0.4666873,-0.5487558,-0.4691032,0.101293385,0.045133717,0.65503126,-0.02681254,0.1445352,-0.26615432,-0.19807205,-0.1518738,0.2704337,0.061687347,0.3303409,0.08708328,-0.33457586,0.13888843,-0.3490723,-0.43443537,-0.012744163,-0.53026944,-0.5286085,0.06959739,-0.2886715,-0.2713749,0.8338459,-0.58887875,0.017882267,-0.12828183,-0.13433959,-0.33300325,0.36098304,0.20371132,0.13758115,-0.045612566,-0.05365587,-0.15093586,-0.3249758,0.13793285,0.0922985,0.28488922,0.31031847,-0.11203977,0.07769264,0.557417,0.515679,-0.037384838,0.77480036,0.11920892,-0.15747336,0.33880076,-0.2711307,-0.4050868,-0.7265129,-0.32917294,-0.21358636,-0.4799436,-0.28455994,0.03511693,-0.29254287,-0.8759433,0.41647443,0.10430772,-0.0438686,-0.17785302,0.17773816,0.25300208,-0.09191574,0.11825796,-0.032220528,-0.18820718,-0.62901074,-0.5167391,-0.6985222,-0.5786352,0.045216016,1.0549587,-0.11401879,-0.1952313,-0.09746113,-0.24907725,0.14670609,-0.020485643,0.11000274,0.1737849,0.29638842,-0.093472995,-0.8931989,0.41987225,-0.47095457,0.06538765,-0.6224041,0.0075044823,0.8211355,-0.60073155,0.4542933,0.39018965,0.24857475,0.010521208,-0.5292774,-0.32139227,-0.06568719,-0.14304869,0.600823,0.12020551,-0.7000106,0.49916226,0.20143414,-0.14556026,-0.5582319,0.50508124,0.11161334,-0.11532075,0.07977191,0.28519222,0.04855976,-0.100666046,-0.14560592,0.23524512,-0.60015017,0.26903448,0.29744586,0.0958985,0.44303244,-0.10926945,-0.31602117,-0.5394118,-0.34808996,-0.32488665,-0.29510707,-0.09417881,0.09461718,0.15225251,-0.0014204468,0.12042476,0.34139276,-0.412539,0.24250662,-0.20512293,-0.12253889,0.35079214,0.5740877,0.3418409,-0.52457076,0.6426563,0.11250415,0.102624126,0.037774056,0.039341133,0.36381692,0.2548853,0.21280786,-0.0861773,-0.11878199,0.18799594,0.84874153,0.24386944,0.25901094,0.15078758,-0.24570557,0.2635381,0.16606747,0.30793706,0.039431103,-0.41618568,-0.12384302,-0.07881498,0.13554017,0.36705872,0.14638948,0.11357598,0.0038407233,-0.06467002,0.16364643,-0.012950876,-0.029840572,-1.1097695,0.46307564,0.20776738,0.6493473,0.42530754,-0.08684873,0.17218255,0.5942073,-0.2625001,0.15791528,0.119473636,-0.018186806,-0.29783297,0.49042675,-0.5056695,0.37207755,-0.13180394,-0.06585157,0.029691288,0.10676242,0.38408685,0.89579993,-0.12245011,0.15548433,0.16208671,-0.36377516,0.11810815,-0.36403757,0.020066325,-0.44926047,-0.2661439,0.68013483,0.4904596,0.35838,-0.41235018,-0.015392729,-0.024907291,-0.1886263,-0.057688117,-0.15237959,-0.21090014,-0.043872166,-0.69086134,-0.27313328,0.5768565,-0.018598199,0.055347003,0.19687568,-0.3199943,0.3837747,-0.11226629,0.04191492,-0.061249573,-0.54182714,-0.17410977,-0.43136308,-0.45889595,0.2681115,-0.3036518,0.33972698,0.16125445,-0.09790567,-0.13281058,0.287587,0.2506996,0.67933387,0.10625712,-0.13071331,-0.40688053,0.0031089294,0.30699342,-0.3119833,-0.17570254,-0.40188125,0.07835726,-0.6230751,0.3885753,-0.24667872,-0.07536324,0.02487613,-0.10288628,0.12564574,0.47192016,-0.23904505,-0.13144723,0.105480924,0.076084636,-0.26743844,-0.015755763,-0.35954693,0.21223474,0.041506264,0.014394947,0.10244507,-0.013489945,-0.029688725,0.1909791,0.23873101,0.3347889,0.27414143,-0.04600231,-0.24180914,0.04072501,0.07884579,0.4522312,0.26578695,-0.13761382,-0.33400935,-0.24539945,-0.19560453,0.5129592,-0.17112187,0.04968386,0.084870555,-0.39846757,0.69212765,0.1065665,1.0561489,0.17647783,-0.39211616,0.10482639,0.50748163,0.09190522,0.12796018,-0.19165395,0.8449305,0.44798157,-0.13268985,-0.13041405,-0.44047144,-0.34714216,0.29213026,-0.33279562,-0.26391363,-0.17505625,-0.5997954,-0.07810298,0.021839838,0.07929081,0.05970315,-0.08737753,-0.1509287,0.15284811,0.2520458,0.4423854,-0.6362793,0.028479671,0.32375112,0.13166115,0.045414805,0.088932075,-0.43020323,0.4735232,-0.6352329,0.20438123,-0.45553303,0.10627215,-0.1303641,-0.21931055,0.27357188,0.16894627,0.32363722,-0.30730477,-0.27200907,-0.27578625,0.54903823,0.20845483,0.30696195,0.67691374,-0.13933884,-0.09132864,0.1623903,0.47476393,1.045543,-0.16905831,0.110678636,0.39536265,-0.32195926,-0.48205826,0.15408921,-0.33936116,0.18727753,0.054909058,-0.2978137,-0.3422258,0.338623,0.15005438,0.16081643,0.11944031,-0.6368212,-0.11722513,0.5365331,-0.19449762,-0.33474213,-0.23981775,0.1374216,0.5999132,-0.54518276,-0.2436308,0.033132058,0.2326683,-0.21221583,-0.57173425,0.008896112,-0.3108787,0.33866766,0.17857155,-0.29923862,-0.06103563,0.18660195,-0.45720953,0.23187287,0.27786437,-0.38209358,-0.035731494,-0.2925516,-0.0544937,0.9935134,0.03383332,0.09099943,-0.6608495,-0.47642687,-0.78961384,-0.3215116,0.22797461,0.24049424,-0.096075706,-0.49144635,-0.20163879,-0.07448775,0.14103213,0.041782744,-0.58998436,0.50850046,0.07540246,0.30511776,0.0010046789,-0.93329734,-0.06603316,0.11927908,-0.30164856,-0.42631823,0.58796734,-0.07313151,0.82593185,-0.039681785,-0.008164765,0.0876782,-0.60228235,0.3349324,-0.4481587,-0.033377435,-0.6184345,0.18456702,646 -494,0.6549698,-0.1085608,-0.590624,-0.16729246,-0.42648864,0.09603627,-0.17026027,0.5703339,0.34329394,-0.31654358,-0.08509236,-0.081212096,0.172587,0.3655737,-0.1914421,-0.75465566,0.008946044,0.20675741,-0.42795333,0.51259327,-0.42969054,0.25288978,-0.1062165,0.4564991,0.10078358,0.25060472,0.09725953,0.02414764,0.076930895,-0.109946504,-0.14854217,0.3875874,-0.4718032,0.21290796,-0.12697068,-0.3651835,-0.011295349,-0.43456218,-0.23660207,-0.7382544,0.19353986,-0.5723104,0.43281677,0.019983536,-0.33227485,0.19618516,0.24859919,0.24996722,-0.2309773,-0.11235937,-0.053859506,0.04992572,-0.11976842,-0.13937587,-0.28295553,-0.41966364,-0.53152287,0.048337527,-0.40937948,-0.036489923,-0.23476414,0.17586136,-0.17260459,0.09389133,-0.02222268,0.5174213,-0.29350945,0.07347911,0.26866928,-0.16435774,0.18610239,-0.5399243,-0.18355285,-0.04139911,0.22575296,-0.18633568,-0.32311648,0.20673144,0.28544244,0.4715418,-0.13798836,-0.15044633,-0.40801463,-0.18455614,-0.062640004,0.53610384,-0.30895337,-0.5153416,-0.25995386,0.01127041,0.021747176,0.2914599,-0.026259528,-0.15149863,-0.070441015,-0.12782075,-0.29964092,0.34999564,0.4406104,-0.48585504,-0.22820206,0.32949385,0.5167072,0.15662411,-0.13023429,-0.008186383,0.076234676,-0.66698503,-0.16355456,-0.022251982,-0.08454395,0.39084116,-0.14948682,0.18515842,0.41038868,0.037158195,-0.1832514,0.31552675,0.08202345,-0.05055489,-0.5293066,-0.19633068,0.30121756,-0.4368711,0.20198406,-0.21427754,0.7042738,0.18852635,-0.7479339,0.26162475,-0.5651798,0.08188222,-0.10357795,0.4064861,0.73664564,0.3530996,0.14158699,0.76142234,-0.28413787,0.10510971,-0.18889461,-0.1528564,-0.01883029,-0.028730618,-0.09219502,-0.5539622,0.3511556,0.07786213,0.037533317,0.46393535,0.37129754,-0.60022056,-0.24902776,0.21852134,0.8638602,-0.24299,-0.23018034,0.75217336,0.90865666,0.9400645,0.050563462,1.0633434,0.10500783,-0.1879363,0.25591162,-0.15802003,-0.7288912,0.2920147,0.31408787,0.098797224,0.23753479,-0.058474902,-0.12902011,0.46259406,-0.10164734,-0.13787256,0.042675283,0.20044391,0.21638395,-0.0386344,-0.4070726,-0.3750035,0.031979084,-0.07348917,0.19387853,0.22789943,-0.21419899,0.4483675,0.045951895,1.5352963,0.027224438,0.02581715,0.1398017,0.36630827,0.40679404,-0.1425552,-0.20633395,0.32421497,0.2290974,0.08445321,-0.51378727,0.2760356,-0.18305644,-0.41327408,-0.076617554,-0.39732775,-0.1399421,-0.06481187,-0.41655323,-0.14349496,-0.22861542,-0.10476773,0.5706353,-2.8983014,-0.16561835,-0.04188909,0.22532634,-0.22544979,-0.4068943,-0.2342428,-0.4453586,0.4287946,0.34315115,0.5324615,-0.4939092,0.27717748,0.3790408,-0.6344762,-0.09475497,-0.59558976,-0.08700641,0.035124205,0.24919839,0.009526519,-0.13734545,-0.022173319,0.24156968,0.5302078,0.05095076,0.15545121,0.40222713,0.41774887,0.04088836,0.46446642,-0.14039569,0.52546966,-0.40561125,-0.22103684,0.36490604,-0.5183711,0.2685147,0.026093427,0.09528408,0.52998644,-0.5370227,-1.1836764,-0.64519626,0.0059138113,1.035796,-0.30340368,-0.31875426,0.19995458,-0.41956076,-0.2217545,0.11062043,0.4345247,0.032370765,-0.11198253,-0.7895256,0.027252316,-0.03144545,0.20816708,-0.04173889,-0.1254054,-0.32980317,0.67803705,-0.00076476164,0.5490615,0.1582688,0.13953762,-0.30984265,-0.38477892,-0.023186278,0.7926279,0.33217397,0.24854386,-0.22557208,-0.2007202,-0.53751504,-0.004000289,0.09025718,0.6981469,0.54017353,0.026259363,0.053964842,0.2753635,0.074951135,0.06694626,-0.12509255,-0.18601322,-0.19197093,0.056323882,0.5967531,0.56498986,-0.18990622,0.33865973,0.0048328126,0.35571358,-0.3270321,-0.40768868,0.54760754,0.95482635,-0.2167582,-0.446061,0.6206101,0.4941533,-0.21715716,0.40882966,-0.6241695,-0.3844106,0.37593895,-0.12402092,-0.24753077,0.12861171,-0.3189434,0.08517909,-0.87664133,0.0025732347,-0.33892632,-0.35515815,-0.5271968,-0.12008726,-3.4442043,0.3103173,-0.04135061,-0.15847905,-0.21098064,-0.11161681,0.22349058,-0.45503804,-0.7161985,0.14766045,0.09671249,0.75383866,-0.17703095,0.12025946,-0.25350538,-0.3333924,-0.33379152,0.14265864,0.10081343,0.40993747,0.029272089,-0.3782153,-0.057180297,-0.13114727,-0.45207193,0.115813695,-0.6004902,-0.39259455,-0.1432533,-0.5770731,-0.18160036,0.5921558,-0.44983584,0.037051167,-0.17767169,0.097994246,-0.13304405,0.18803796,0.029680863,0.14831413,0.029870884,-0.18720451,-0.011128085,-0.28012338,0.26226953,0.014874025,0.26771086,0.34277993,-0.1127555,0.20594247,0.5280834,0.7150563,0.122406006,0.86856735,0.3497397,0.09575592,0.39175972,-0.23254915,-0.2319717,-0.3418488,-0.13049291,-0.19794573,-0.3543268,-0.30363634,-0.12527768,-0.4025446,-0.69186676,0.42367977,0.09304158,0.07473355,-0.023224486,0.3492942,0.58068085,-0.32589865,0.09023857,-0.057016283,-0.12863237,-0.50684345,-0.3270742,-0.45307797,-0.3009563,0.09590813,0.9746577,-0.28413066,0.13752472,-0.10407354,-0.098331876,-0.075358644,0.37261847,0.091776714,0.2567194,0.42909497,-0.13987723,-0.5868834,0.34167022,-0.27689168,-0.32801253,-0.4685059,0.2927672,0.40933627,-0.60244006,0.6738507,0.3810751,0.2426426,-0.115638025,-0.5198687,-0.040292,0.10883814,-0.16283187,0.3190563,0.3880385,-0.7857065,0.48491988,0.39605373,-0.14485036,-0.7144353,0.5911048,0.0033457726,-0.51365966,-0.20473549,0.38301465,0.33883244,0.030335495,-0.21766283,0.038011532,-0.43307763,0.07151062,0.102860495,-0.027040944,0.34141642,-0.23731081,-0.05314839,-0.7550942,-0.021754852,-0.5322336,-0.28109145,0.24061522,0.038672473,0.0036287436,0.14607446,-0.019589577,0.37724286,-0.40179655,0.04968811,-0.25926685,-0.23321533,0.33920798,0.42489153,0.48487625,-0.38597134,0.5445753,0.011110567,0.10476917,0.067355506,0.1095688,0.41040212,-0.040168278,0.562384,-0.07268911,-0.18456936,0.12964478,0.5319847,0.14218765,0.13937488,-0.010760188,-0.015931621,0.18289609,0.008609996,0.0768005,-0.058873586,-0.47140202,-0.07688122,-0.33561167,0.019450216,0.58501434,0.15408406,0.21354611,0.07187124,-0.28805155,0.0632819,0.1692097,-0.097802006,-1.2764251,0.43947393,0.12429069,0.89569014,0.5705328,0.0075426227,0.08054258,0.58020073,-0.13337477,0.19932862,0.42465225,-0.03182152,-0.37062073,0.51957923,-0.66521496,0.5212189,-0.083041884,0.004907445,-0.034917608,0.035640627,0.47969297,0.91165245,-0.18425713,0.07052948,0.21392311,-0.32439712,0.15125541,-0.38508877,-0.0727747,-0.6332612,-0.12831418,0.7186858,0.43135568,0.3822146,-0.36445156,-0.056259565,0.13827293,-0.08095013,0.015184096,0.0463191,0.05538685,-0.14337318,-0.5872221,-0.14906296,0.5459036,0.114955045,0.2144558,0.08764672,-0.19032118,0.27951267,-0.114746295,0.0776741,-0.14159623,-0.58344686,-0.003341198,-0.3636155,-0.5169001,0.46319252,-0.18525492,0.16651845,0.20147285,0.08398388,-0.38570327,0.34226605,-0.016990807,0.7896649,0.0042770314,-0.10221944,-0.4016618,0.09975102,0.19163063,-0.15259038,-0.2210007,-0.42889962,0.04794256,-0.5412701,0.4892264,-0.014431302,-0.3345184,0.15249227,0.014002063,0.11007263,0.5083392,-0.15410627,-0.17652042,-0.14065772,-0.06356991,-0.33654174,-0.22823404,-0.11165242,0.27961046,-0.039444756,-0.073081054,-0.12122516,-0.10270152,0.0008870278,0.3937455,-0.08198549,0.31522363,0.36694768,0.22930373,-0.27774826,0.118851386,0.24801132,0.51338565,-0.0919453,-0.15722215,-0.23691645,-0.3576321,-0.3444701,0.26119846,-0.03805286,0.3661827,0.11640493,-0.21892945,0.5685216,-0.139836,0.9315859,-0.050119143,-0.3425191,0.06755275,0.48087737,-0.052264664,-0.15699156,-0.35200754,0.82559747,0.52557427,-0.15285528,-0.09295273,-0.30860168,0.09602753,0.14232484,-0.1795793,-0.042402763,-0.07418863,-0.46695969,-0.291637,0.08263106,0.19811381,0.36214876,-0.14254855,0.017537406,0.14049579,0.06870029,0.21749146,-0.27778304,-0.044109304,0.16097207,0.37179074,0.009379174,0.14909656,-0.5256419,0.31464916,-0.5870525,0.104750395,-0.34237775,0.20260313,-0.3486763,-0.26407096,0.19239743,-0.037850063,0.23590255,-0.17475091,-0.34322193,-0.29208517,0.49445674,0.26157945,0.056031767,0.61178076,-0.24080524,0.106395245,0.21619503,0.59669924,0.82953465,-0.17854418,-0.24112926,0.2568799,-0.29823765,-0.55817777,0.19288458,-0.40866342,0.2125635,0.08678663,-0.08934682,-0.59381145,0.24616395,0.18860148,0.26160175,0.044194646,-0.70301056,-0.17213723,0.33946353,-0.24399574,-0.21145461,-0.30270913,0.09951687,0.6878931,-0.111910924,-0.16379164,0.15026416,0.17933036,-0.034551945,-0.79993385,0.09080834,-0.505251,0.35685396,0.17760266,-0.27271312,-0.25055164,-0.05090648,-0.49240205,0.2503832,0.12060719,-0.2967702,0.06926234,-0.44813594,-0.00886003,0.89248276,-0.11973957,0.3083908,-0.4849585,-0.47514382,-0.71972954,-0.26471075,0.4149031,-0.0035857516,0.02774881,-0.65924865,0.045975465,-0.18595025,-0.4042965,-0.08895184,-0.34566745,0.44315866,0.02496251,0.39547515,0.036732234,-0.8452129,0.19881167,-0.03148876,-0.25002858,-0.4331674,0.36211607,-0.110771105,0.8568738,0.09603989,0.052431963,0.4036133,-0.4654294,0.066632815,-0.26233593,-0.0036318642,-0.53700405,0.07367184,650 -495,0.27583727,-0.018541873,-0.6512068,-0.18783693,-0.20332114,0.13475847,-0.11558591,0.12949194,0.2985069,-0.3483452,-0.22041906,-0.1170029,-0.02568373,0.26563928,-0.14387472,-0.7058479,-0.14024232,0.22024791,-0.70918566,0.4899945,-0.2757284,0.3902829,0.2980166,0.2925868,0.06986884,0.20386757,0.13744986,-0.20652436,-0.13882303,-0.0062569636,-0.06605975,0.14449954,-0.6609669,0.26686102,-0.21270192,-0.13449153,0.014251298,-0.5055812,-0.44740763,-0.738136,0.3917393,-0.65638244,0.62058777,0.084375,-0.19031236,0.025892152,0.012650822,0.20075132,-0.26869327,0.1485102,0.26978847,-0.2039272,-0.11651174,-0.10049606,-0.23179428,-0.23157112,-0.4364513,0.06871243,-0.38605976,-0.056220252,-0.2132472,0.08813921,-0.18937455,0.030894015,-0.19482431,0.5350924,-0.32772908,0.02075039,0.28776747,-0.18141879,0.31796318,-0.4983113,-0.11693,-0.06980273,0.34992412,-0.18376562,-0.14273968,0.2503907,0.24780165,0.55021244,-0.00757885,-0.24727596,-0.15364392,0.073958956,0.14664148,0.43701315,-0.13255528,-0.15467463,-0.14101939,0.11795091,0.10218849,0.101139784,-0.059964936,-0.62794054,-0.0047714883,-0.19142509,-0.029829714,0.17024657,0.560719,-0.21811016,-0.11104905,0.27550843,0.20376213,0.26519075,0.06698592,0.059568055,-0.058992688,-0.45069996,-0.21785606,0.20295255,-0.13489011,0.5771968,0.017082648,0.13948305,0.53385156,0.026602779,-0.11553436,-0.09635542,-0.056303483,0.1472107,-0.019445505,-0.11662495,0.24752322,-0.52992475,0.031776242,-0.08378504,0.5450436,0.11229671,-0.7976274,0.28298372,-0.47969565,0.1121552,-0.075661145,0.5628123,0.77758896,0.3815432,0.11880127,0.8868583,-0.73677593,0.1216925,0.017870622,-0.3688484,0.059857078,-0.01291527,-0.055827398,-0.5077732,-0.15881059,-0.071354456,-0.101556286,0.0143245375,0.0326267,-0.37919113,-0.03346516,-0.03703943,0.7548916,-0.33119154,-0.0224259,0.63107246,1.0674177,0.8922533,0.17807865,1.3072289,0.20428273,-0.2540672,-0.12289099,-0.22499311,-0.6198888,0.14827469,0.2331878,0.080666624,0.32943338,0.20693901,0.13830423,0.28566393,-0.49281555,0.09048542,-0.097074874,0.16628239,-0.01398577,0.009495237,-0.38730758,-0.37119508,0.07851847,0.21906236,-0.097067334,0.118283466,-0.17620817,0.3509908,0.10214969,1.3431915,-0.08172067,0.05189982,0.041770395,0.13144031,0.23826432,-0.05660484,-0.2295902,0.2228241,0.38531443,-0.060457736,-0.4954772,-0.20617367,-0.21832527,-0.24888213,-0.21239854,-0.21252558,0.11713427,0.06395017,-0.3796814,-0.12842871,0.15730698,-0.41982582,0.5710245,-2.4841542,-0.08714284,-0.08987458,0.3362588,-0.30269304,-0.30810165,-0.25954643,-0.36023623,0.37849584,0.3498087,0.3651125,-0.61172324,0.3072762,0.22476958,-0.39065024,-0.2190189,-0.45580763,0.006973062,0.09916311,0.26317343,-0.0011114223,-0.15263923,-0.11312666,0.23004113,0.49835178,-0.015231056,-0.14941587,0.40686014,0.4141123,0.09507593,0.456657,-0.0004444814,0.48289546,-0.17998831,-0.08860832,0.3561981,-0.16968371,0.24300098,-0.015350138,0.20983092,0.35169885,-0.6092187,-0.6560208,-0.6160529,-0.44021705,1.1454674,-0.4053948,-0.26231822,0.25636297,-0.06650491,-0.21121518,0.06945661,0.64746815,-0.012535353,0.13850899,-0.85219246,-0.14103273,0.028525354,0.2864093,-0.027244534,0.03931009,-0.45197654,0.5680539,-0.1414335,0.48355484,0.58021927,0.16287862,0.0011488923,-0.6046062,0.21225584,1.0677264,0.3917026,0.14925747,-0.19478525,0.0032653862,-0.099087216,-0.07350589,0.03126422,0.57184786,0.67175096,0.0059719533,0.034961317,0.24305645,0.033439636,-0.03348699,-0.13537493,-0.35806128,-0.05072818,-0.14549221,0.58321816,0.71920925,-0.098807506,0.31407484,-0.0994033,0.28239796,-0.019971503,-0.47176746,0.5049536,0.8729333,-0.03257557,-0.17169623,0.48408768,0.2796945,-0.13399212,0.35539225,-0.4513338,-0.305314,0.58939826,-0.15389623,-0.5611302,0.25709602,-0.3355022,0.13877872,-0.8629759,0.4042204,-0.002062772,-0.4422658,-0.3766575,-0.0052853203,-3.4787326,0.16539827,-0.2460452,-0.08173459,-0.021384459,-0.07570177,0.23744035,-0.35112205,-0.69226414,0.12609774,-0.00044267625,0.53319377,-0.14306352,0.1278062,-0.12604329,-0.19690026,-0.1333789,0.27309835,0.3335069,0.2317728,0.04250558,-0.32315275,-0.13635695,-0.3525694,-0.3902176,0.03050646,-0.48675394,-0.46731335,-0.16087754,-0.54061764,-0.30392832,0.6410862,-0.37315693,-0.07005631,-0.092121884,0.047405165,-0.063595586,0.26080012,0.08253157,0.31938055,0.030079624,-0.053633634,-0.16107996,-0.15459828,0.31681153,0.2553886,0.14488229,0.3486905,-0.09221826,0.17631729,0.36375216,0.7462529,-0.18821584,0.6672452,0.38741708,-0.07428185,0.16039944,-0.33110598,-0.35262474,-0.6790189,-0.35699993,-0.17461394,-0.4183542,-0.51667964,-0.19192378,-0.33231884,-0.81585276,0.33370546,-0.023481455,-0.0005662569,0.12059392,0.042868357,0.36527735,-0.21219532,0.07353066,-0.11873208,-0.13486432,-0.48496276,-0.521865,-0.54360735,-0.52031225,-0.1096002,1.0225893,0.07514602,-0.015340026,0.03838351,-0.3163231,0.19669497,-0.053090803,0.2697715,0.22332957,0.34793684,-0.0063167317,-0.7276004,0.46876246,0.027788421,-0.09941018,-0.5625977,0.151251,0.7156542,-0.6094543,0.6277273,0.3316254,0.091602184,0.0218047,-0.4719866,-0.4325277,-0.019626928,-0.32687488,0.5350462,0.17380397,-0.45820013,0.2923321,0.17787491,-0.19322683,-0.76729834,0.4280541,-0.051999707,-0.24516144,0.25834513,0.3878046,-0.23376228,-0.1282102,-0.05392772,0.112273,-0.33918694,0.3398072,0.29234812,0.030574176,0.17336333,-0.14161234,-0.2486852,-0.7132822,0.0465883,-0.54644036,-0.29663092,0.13286838,0.22038457,0.036025297,0.02203891,0.15517299,0.5655457,-0.29567322,0.14141056,-0.13116066,-0.24411431,0.3639617,0.5295939,0.31570497,-0.39422816,0.52043885,-0.1340765,-0.04459714,-0.296773,0.116556205,0.4411728,0.19110866,0.08253274,-0.056922294,-0.08867078,0.17598009,0.5457936,0.10231685,0.25450978,0.15641955,-0.25727445,0.3713558,0.1467867,0.11400594,-0.066296734,-0.3660901,-0.09760582,-0.12743078,0.09586827,0.39181498,0.15640846,0.19761123,-0.27664015,-0.26522604,0.12658016,0.28761965,0.11534526,-0.889716,0.40653795,0.05576272,0.66282624,0.6158341,0.033587877,0.047827665,0.4451345,-0.16287851,0.06956264,0.20960662,-0.057136986,-0.4843594,0.38945228,-0.43001652,0.35371348,-0.15396656,-0.08973922,0.2233742,0.124641314,0.1653001,0.87852234,0.003686096,0.037988894,-0.06517916,-0.10285475,-0.05527274,-0.38803345,0.07097311,-0.5269299,-0.61774296,0.63352436,0.36457542,0.278665,-0.3147292,-0.034635793,-0.015148441,-0.23372395,0.20780566,-0.0029469517,-0.010296489,0.059560742,-0.6620001,-0.1772349,0.5720373,-0.17679122,-0.09914843,-0.02430479,-0.05498835,0.10137197,-0.25587076,-0.03847124,-0.06134712,-0.72364604,-0.04292665,-0.491379,-0.32339972,0.23279433,-0.44592375,0.31307343,0.03445971,0.034966733,-0.36382776,0.41324443,0.2864336,0.7385536,0.18774581,-0.077217,-0.22159687,0.15494432,0.24255882,-0.17034754,-0.0008979738,-0.29336056,0.028695974,-0.58316886,0.47324702,-0.07939197,-0.07560687,0.09237893,-0.12141576,-0.027576,0.4375685,-0.17691545,-0.023691896,0.22399066,0.025059137,-0.20636606,-0.0824026,-0.4628725,0.19872591,0.18200032,-0.03995037,0.062297408,-0.027588261,-0.23419364,0.3423201,0.17852595,0.2600251,0.30273795,-0.023751067,-0.3883811,-0.051677637,-0.013146924,0.39286852,0.380363,-0.09006076,-0.23106275,-0.38348016,-0.20413086,0.09017626,-0.1287121,0.16693385,0.036351502,-0.26259342,0.67147446,0.3631852,1.0765153,0.040678483,-0.2336091,-0.0031799844,0.4215068,0.04531037,0.022129895,-0.41176704,0.8813572,0.5797254,-0.074053966,-0.11552645,-0.13746098,-0.062269144,0.045592796,-0.23732044,-0.095208414,-0.10169288,-0.61510277,-0.3270951,0.15739706,0.2871358,-0.026625749,-0.016945004,-0.12129191,0.07595163,0.12698476,0.30253023,-0.42676786,-0.0008382286,0.4012631,0.1491892,0.17990611,0.16360195,-0.33115292,0.53321385,-0.6214071,0.070082664,-0.31958553,-0.0002733171,-0.07139785,-0.23916562,0.14083956,0.096660614,0.36455867,-0.40479273,-0.19923055,-0.36689505,0.54795253,0.008983644,0.24164942,0.68991834,-0.188533,-0.09001349,0.071940295,0.5311134,1.1558759,-0.2298386,0.13485415,0.45216376,-0.34772748,-0.3347216,0.10794751,-0.29181966,0.0042765057,-0.16424139,-0.385287,-0.4120548,0.1908599,-0.06559212,-0.051718432,-0.014206569,-0.62119037,-0.16586311,0.4760212,-0.3434842,-0.2727738,-0.29216343,0.30306035,0.53708214,-0.26736924,-0.49821678,0.11010545,0.15986969,-0.2841104,-0.55234396,0.11329585,-0.36927658,0.24184313,0.14280902,-0.29522547,-0.120743416,0.22697535,-0.41078418,-0.00047422308,0.14177279,-0.4542492,-0.036610804,-0.1190023,-0.08329905,0.96752083,-0.03367124,0.0969099,-0.5879291,-0.46422943,-1.0197324,-0.34155205,0.34364492,0.27168876,-0.031264335,-0.57782954,-0.18417206,-0.0999201,0.051948782,-0.06621496,-0.22598092,0.40895388,0.14858162,0.5415987,-0.22885858,-0.782477,0.0914278,0.16419102,-0.28952432,-0.4008212,0.4459324,0.1664816,0.67767364,-0.08752946,-0.0087491935,0.1994492,-0.6272011,0.19105671,-0.35200113,-0.17442659,-0.5422541,0.046016775,652 -496,0.42528963,-0.2925143,-0.45502657,-0.15691173,-0.17669289,0.008261328,-0.07012611,0.61199135,0.26222283,-0.37959164,-0.17751102,-0.051505167,0.1510936,0.38499084,0.07000915,-0.3813804,0.019828204,0.16804972,-0.5662812,0.4757125,-0.36909962,-0.016275402,-0.2178107,0.47974417,0.24570374,0.2765081,-0.033600003,-0.040203195,-0.029842466,0.03533457,-0.028618272,0.2003961,-0.28603834,0.29119587,-0.074977286,-0.15699027,-0.12939516,-0.6598562,-0.4195225,-0.66238755,0.25542194,-0.6981558,0.5354694,-0.036117528,-0.29222456,0.3019266,0.10406916,0.3692542,-0.39399013,-0.23294596,0.1479615,-0.008828716,-0.06978183,-0.10070709,-0.09909414,-0.29222032,-0.48658532,-0.14889948,-0.26253924,-0.14648189,-0.32488173,0.0119625265,-0.27045125,-0.06719782,0.044071674,0.55136865,-0.37655544,-0.025391826,0.25805047,-0.113796845,0.29266277,-0.5105232,-0.07110538,-0.07218999,0.4144672,-0.016129704,-0.30976674,0.24129,0.22859032,0.30258083,-0.130362,-0.048999615,-0.27360693,0.031893842,0.16065468,0.52309614,-0.033567935,-0.42403913,-0.043907236,0.033030655,0.09807155,0.20428655,0.19359027,-0.14475009,-0.19105898,0.056571655,-0.041128363,0.37443772,0.3772323,-0.18849555,-0.10392971,0.42518774,0.631765,0.33218786,-0.12991174,-0.06880458,0.02049971,-0.49768186,-0.181182,-0.11380581,-0.27427056,0.3679046,-0.1627439,0.33887407,0.6384893,-0.013463506,-0.09802009,0.11734568,0.09872301,-0.12706122,-0.288725,-0.29115722,0.17552423,-0.284468,0.20361638,-0.017762708,0.50792414,0.15520976,-0.496373,0.3836449,-0.479106,0.09662204,-0.13133003,0.44716287,0.73999065,0.34782806,0.38914317,0.60440034,-0.33141488,0.025789062,-0.0056140167,-0.38315514,0.18678321,-0.22106478,0.069312416,-0.5746009,-0.06135719,-0.028977057,-0.21527335,0.26144198,0.20753428,-0.5450817,-0.117369816,0.25177047,0.7688742,-0.2300774,-0.14650664,0.83068854,0.99331486,0.87275845,0.056874733,0.86556923,0.1444957,-0.1667467,0.24088041,-0.25304002,-0.6237599,0.31777543,0.41645485,-0.021813767,0.13949019,0.07323601,0.0071675223,0.4030368,-0.41447848,0.040814288,-0.0060847485,0.21033421,0.05563392,-0.2865025,-0.62038696,-0.2178231,-0.21046372,-0.048086256,0.110606715,0.12636693,-0.28044695,0.3674379,-0.06987689,1.71091,0.06708272,0.046776094,0.01847946,0.44493693,0.21785767,-0.29134044,-0.25051007,0.35132694,0.36113262,0.11305127,-0.5677573,0.3186716,-0.21065554,-0.2587132,-0.1250613,-0.46484193,-0.02797073,-0.02473046,-0.39816275,-0.04634744,-0.10164881,-0.33585766,0.43718618,-3.1575668,-0.29898444,-0.09362792,0.4129553,-0.1887063,-0.23338197,-0.15814424,-0.3875044,0.30986658,0.30350116,0.51909167,-0.5623196,0.4242603,0.2976908,-0.771622,-0.109426,-0.5562419,-0.127773,0.017418798,0.22734936,0.12475835,0.10535775,0.072350964,0.27236018,0.45719105,0.045094796,0.13489987,0.30900112,0.35181782,-0.06180067,0.50113887,-0.16657309,0.5635224,-0.24894513,-0.10380371,0.17358446,-0.16337529,0.18826607,-0.17730097,0.1442754,0.5390021,-0.35513544,-0.9362403,-0.62784034,-0.011817889,1.1317478,-0.13852923,-0.2826934,0.3132854,-0.590303,-0.32350835,0.019242125,0.47858062,-0.048161574,-0.15971322,-0.784853,-0.024730686,-0.025136454,-0.0035033992,-0.08060632,-0.18497396,-0.54572237,0.5521404,0.06672051,0.570329,0.18570282,0.29715794,-0.16595483,-0.19165982,0.023061762,0.526948,0.38441414,0.026520012,-0.11696816,-0.073663965,-0.4449151,0.0018826212,0.0840152,0.5745797,0.48818317,-0.14333136,0.172256,0.20022693,-0.02223494,0.049944956,-0.11867221,-0.14737189,-0.09535446,0.00582189,0.42049083,0.62296456,-0.15398563,0.48006353,0.05557681,0.27164912,-0.0872696,-0.5463711,0.5000731,0.7821614,-0.21473907,-0.27994522,0.5099493,0.38793927,-0.20574774,0.3643237,-0.5218845,-0.121646345,0.5609798,-0.1454701,-0.34063354,0.061026316,-0.20525631,0.26643363,-0.81662637,0.17181511,-0.27532193,-0.709889,-0.45226544,-0.0919615,-2.9967782,0.14195296,-0.18802038,-0.15986986,-0.10845052,-0.14433396,0.12680407,-0.73066896,-0.62549067,0.25730973,0.041226238,0.9068511,-0.12807395,-0.038654458,-0.2689183,-0.39543143,-0.2759726,0.031883847,0.033233706,0.49264425,0.026785221,-0.45499092,-0.082762346,-0.016872805,-0.49496004,0.027882969,-0.62462723,-0.39663655,-0.13854526,-0.5419412,-0.14348947,0.65903604,-0.1171461,-0.0021504888,-0.16191517,0.13114172,-0.03568118,0.25675184,-0.0067149443,0.08798029,0.13085748,-0.09109584,0.13465378,-0.20201448,0.31605586,0.102652505,0.2622951,0.285983,-0.02104908,0.3362806,0.61846304,0.6982388,-0.17138825,0.8397891,0.513683,-0.07326305,0.19934566,-0.34439367,-0.35319546,-0.27541193,-0.32680947,0.096086755,-0.41857114,-0.42222875,-0.11931715,-0.3538168,-0.81398106,0.53456384,0.110423796,0.3382096,0.005637237,-0.010284995,0.5676983,-0.21969104,0.013611191,0.039122734,-0.20042272,-0.6919398,-0.08955275,-0.5362643,-0.5086573,0.17903662,0.9379713,-0.38486975,0.19876862,-0.028959185,-0.39596415,0.08809687,0.1585021,-0.08814698,0.16085987,0.3714189,-0.23828577,-0.47364458,0.4315334,-0.26642713,-0.27339798,-0.64483446,0.2929662,0.5485636,-0.46691403,0.5422977,0.22055745,-0.08572454,-0.46338266,-0.4697666,-0.13453911,-0.050805576,-0.09109355,0.3578095,0.12826076,-0.81247914,0.3878037,0.31258768,-0.23229434,-0.66829556,0.62616384,-0.10195328,-0.2724269,-0.10539211,0.25895903,0.24725974,0.0428943,-0.35352388,0.29821792,-0.38732418,0.29832858,0.14188229,-0.024255756,0.28957233,-0.17088906,0.08065697,-0.74734384,-0.19936964,-0.54038227,-0.23539971,0.33163172,0.13385513,0.27876207,0.12396709,0.09104542,0.30940193,-0.41146532,0.071458496,-0.19000481,-0.3503437,0.23738119,0.4443498,0.4711474,-0.3524418,0.561645,0.065869436,-0.0464671,0.13846616,0.04355395,0.35809782,0.03507681,0.53800637,-0.040149238,-0.18887079,0.16428664,0.7734298,0.0941277,0.2825527,0.0056802887,-0.16795287,0.014678801,0.049715903,0.2538921,-0.05776659,-0.53436476,0.23497625,-0.3560509,0.1266228,0.4385817,0.29568794,0.12784173,0.146462,-0.49825484,0.031850304,0.13930243,0.14013383,-1.2475412,0.52047557,0.28953156,0.8768343,0.26188105,0.07605709,-0.11563561,0.7668788,-0.046235334,0.11020022,0.3117033,0.0053668576,-0.5272767,0.48589674,-0.83606803,0.5619896,0.16577768,-0.16067751,0.032350276,-0.10574385,0.426929,0.6298848,-0.22114468,0.092515714,0.094760194,-0.2721838,0.2880487,-0.40665188,-0.1031634,-0.6717097,-0.22847138,0.50445706,0.5674933,0.34256002,-0.09462111,0.02510479,0.103010364,-0.10309916,0.13896033,0.08877879,0.11298557,-0.032514997,-0.77034503,-0.15416753,0.2871173,0.06424001,0.3430037,-0.0757479,-0.065386094,0.2247959,-0.10187989,0.03678802,-0.08804132,-0.66587025,-0.08619372,-0.28287295,-0.38522956,0.48000288,-0.042506363,0.36733928,0.16194816,0.031132152,0.0075262445,0.5111839,-0.11425916,0.9056206,0.066540316,-0.113973364,-0.4209121,0.28396267,0.17906761,-0.1764325,0.007385922,-0.4370923,0.008437152,-0.4393346,0.52557945,0.09848101,-0.38647717,0.05191183,-0.10949987,0.1559529,0.54837316,-0.2027485,-0.1446973,-0.31810284,-0.2207632,-0.36804858,-0.2549506,-0.085794784,0.3025709,0.24035849,0.035197444,-0.19605742,-0.0086705005,-0.07257567,0.40872413,0.018825721,0.42047277,0.36923712,-0.092652865,-0.18779843,-0.27379593,0.23983686,0.47678953,0.0020902434,-0.2785786,-0.34495077,-0.39962548,-0.44846645,0.09424562,-0.04659901,0.40950456,0.1516361,0.0103949355,0.4541061,-0.1525061,1.1303762,-0.025789948,-0.3261803,0.2537741,0.46903774,-0.048235744,-0.22885618,-0.33237892,0.7294024,0.41381913,-0.018180672,-0.05809469,-0.40757447,-0.06244129,0.39258358,-0.13678834,-0.12499584,-0.00031831648,-0.58965766,-0.20902471,0.2396307,0.10148757,0.4611098,-0.14232251,0.14204104,0.24638925,-0.07510577,0.1914854,-0.4051475,-0.21826304,0.29851642,0.28337985,-0.030568574,0.058262076,-0.53029114,0.44451332,-0.46859834,0.043610435,-0.1903729,0.26079297,-0.29001632,-0.39363173,0.1898558,0.17921817,0.33862597,-0.23772907,-0.37550873,-0.2056396,0.5592967,0.22241728,0.045270853,0.45305583,-0.22732525,-0.049836103,0.17848487,0.39082545,0.6240552,-0.18974714,0.04018994,0.3757508,-0.39524445,-0.61025363,0.3527343,-0.26658753,0.44474533,0.02811815,-0.10808047,-0.687349,0.31189135,0.21426117,-0.010633075,-0.09159975,-0.4833303,-0.15185997,0.1535257,-0.26393998,-0.14748372,-0.40557104,0.055658005,0.31769142,-0.2865944,-0.3310575,0.09567026,0.16300075,-0.07762069,-0.3963944,-0.11698913,-0.3309423,0.27347934,-0.1119458,-0.42503524,-0.23979367,-0.12167787,-0.42692044,0.30349603,-0.08015495,-0.27785742,0.16562448,-0.3083895,-0.10655583,0.9312577,-0.18801425,0.17839491,-0.4992702,-0.40598106,-0.67583656,-0.25554475,0.36053348,-0.004452548,-0.06941943,-0.6462761,0.16683313,-0.03543847,-0.03593736,-0.215001,-0.29562768,0.4123997,0.07628976,0.27643472,-0.056384478,-0.84982055,0.22860524,0.030732444,-0.2453263,-0.61369234,0.5072296,-0.07936197,0.79248667,0.045088474,0.12119235,0.15220629,-0.2141161,-0.17448433,-0.30396134,-0.14882417,-0.4171955,0.024271548,655 -497,0.5613328,-0.33304065,-0.37457448,-0.10840612,-0.121400416,0.22230847,0.004454851,0.37935916,0.14116688,-0.38578722,0.021576183,-0.3034181,0.075742766,0.3056067,-0.06805288,-0.4216244,-0.08594632,0.14263351,-0.44383666,0.42734152,-0.42376092,0.2909431,-0.06759446,0.24013951,0.12284652,0.2916227,0.107410885,-0.27102873,-0.20425455,-0.06625078,-0.1773903,-0.18691304,-0.6796156,0.021190481,-0.04674062,-0.2310162,0.19013461,-0.36961287,-0.38767067,-0.72555435,0.2878778,-0.8193508,0.54518515,0.112227626,-0.19630334,0.26167482,-0.13181303,0.49852818,-0.24626672,0.061775573,0.32546306,-0.21254756,-0.04805528,-0.19195046,-0.13473533,-0.5333505,-0.56684446,0.05277235,-0.28498766,-0.18629251,-0.21999447,0.097569294,-0.25422177,0.071656406,-0.14399698,0.25643045,-0.36988953,0.11597051,0.21133284,-0.11277346,0.34587684,-0.5249685,-0.14786755,-0.18356633,0.114922784,-0.14071098,-0.16789088,0.4047858,0.3136529,0.51863104,-0.06272595,-0.17511971,-0.28864744,0.10045452,0.07573263,0.56289524,-0.18276548,-0.38299602,-0.139365,-0.14503548,0.030678766,0.056600016,0.03935069,-0.24933736,-0.06409171,0.2500619,-0.2784141,0.30932975,0.55751204,-0.26896384,-0.32722726,0.40537426,0.5996626,0.03896608,-0.07249565,-0.19613586,0.052429594,-0.45721292,-0.16551615,0.25831097,-0.28561127,0.5178861,-0.03991839,0.21244684,0.65575284,-0.38470644,0.111793555,0.028894408,0.07352327,-0.046583004,-0.1132383,-0.20664628,0.20157926,-0.47766486,0.15629576,-0.38754764,0.7345892,0.2997345,-0.74772406,0.39731994,-0.4926365,0.1555489,-0.03542786,0.5142048,0.64278346,0.39788812,0.281861,0.80601805,-0.67075485,0.19927858,-0.07092896,-0.32540423,0.29877415,-0.30891314,0.05555996,-0.4040594,-0.08043492,0.07877503,-0.32771054,-0.08157412,0.2624481,-0.69177675,0.0373295,0.07614385,0.89075047,-0.2608053,0.037974082,0.6259672,0.9462095,0.9291368,0.09682626,1.170495,0.3070738,-0.41665435,0.38405278,-0.43236467,-0.8309679,0.24940762,0.28175667,-0.19318984,0.25761536,0.25327346,-0.2132173,0.42677712,-0.48865652,0.15500137,-0.20284377,0.18180038,0.022599434,-0.09881168,-0.3668676,-0.29097137,-0.1428154,-0.010146916,0.05548788,0.25137538,-0.5001562,0.18415321,-0.0712413,1.8251975,-0.043970544,0.12122137,-0.06905381,0.4439578,-0.035157397,-0.19696353,0.0037300203,0.33785862,0.4122974,0.31732577,-0.59248346,0.13093652,-0.28468418,-0.36590227,-0.20409055,-0.19198216,-0.074312106,0.007923088,-0.29143924,-0.24669126,0.042311274,-0.230415,0.45088908,-2.5872028,0.023452004,-0.09906075,0.37935543,-0.27656662,-0.40536776,0.00026340995,-0.50264823,0.20503534,0.43486091,0.3725031,-0.7714301,0.31557545,0.19907744,-0.46440774,-0.05225771,-0.72495,-0.015928729,-0.053625222,0.32038075,0.10463762,-0.09265809,-0.0085513955,0.027841551,0.4654307,0.04882035,-0.0052947784,0.14859891,0.40829396,0.13083057,0.5345739,0.067705266,0.4384373,-0.20433487,-0.08755957,0.25409117,-0.45431313,0.29740024,-0.03420029,0.089276604,0.36675262,-0.39916617,-0.8658153,-0.75909567,-0.19207835,1.0960895,-0.111493416,-0.3803995,0.20606531,-0.3279204,-0.330938,-0.21486093,0.43522543,0.03703634,-0.16647805,-0.75550026,-0.01004149,-0.062196992,0.24151143,0.0039364886,0.10926761,-0.432028,0.7053626,-0.117737465,0.35763,0.28383613,0.18333448,-0.077324465,-0.545303,0.04182646,1.0103321,0.35313517,0.06631441,-0.04796564,-0.28294078,-0.43792337,-0.106349714,0.14369257,0.36506295,0.7817564,-0.12527838,-0.014856117,0.28023192,-0.08937001,0.030475514,-0.14944582,-0.3287561,-0.11966489,-0.12333218,0.47753054,0.5893928,-0.106629476,0.4437286,-0.18346773,0.32244918,-0.08029282,-0.45454463,0.473136,0.9344206,-0.14731918,-0.08233309,0.4095698,0.44491988,-0.32684115,0.4017313,-0.6434101,-0.23136483,0.341819,-0.1266095,-0.31001642,0.22080585,-0.29884276,0.14378,-0.69715816,0.5081175,-0.047296625,-0.49212798,-0.65156645,-0.17580424,-3.053972,0.18117668,-0.26560128,-0.13752133,0.15330808,0.03650073,0.27618915,-0.61096305,-0.2558636,0.13481505,0.03147846,0.65300137,0.04890917,0.14437367,-0.21299993,-0.21539466,-0.5253079,0.13047417,0.1327927,0.21740206,0.003781574,-0.40466362,0.15228501,-0.18623354,-0.3250248,0.016721876,-0.49961048,-0.61072224,-0.32021818,-0.37629,-0.3741631,0.7461539,-0.13845076,0.08732615,-0.20799136,-0.027484229,-0.15083966,0.3407621,0.24908951,-0.08000665,-0.07884929,-0.06745541,-0.016621944,-0.44480827,0.26297688,0.16318266,0.31129318,0.43058816,-0.054112885,0.12153297,0.51532024,0.5758952,-0.07514866,0.8462631,0.5719452,-0.23188795,0.2571111,-0.24209158,-0.10606792,-0.40849617,-0.37569687,-0.032557886,-0.44562197,-0.42943892,0.078675665,-0.3575231,-0.7209093,0.39566818,-0.09502256,0.04892627,0.038920127,0.2596032,0.58753556,-0.31319022,-0.010570658,-0.020604474,-0.1115538,-0.5193254,-0.27167317,-0.59539807,-0.50890714,0.320539,1.1938448,-0.13113396,0.0037178013,0.084227204,-0.3137138,0.18935059,0.015570775,-0.11517017,0.11783596,0.31109348,-0.10044207,-0.759267,0.46753338,-0.058264527,-0.10424515,-0.7106856,0.24956182,0.60449916,-0.6402914,0.34254572,0.28179395,0.06971841,0.005102762,-0.33281294,-0.17519383,-0.08657025,-0.27985692,0.19455828,-0.0142550245,-0.7338349,0.25461483,0.28921515,-0.29745716,-0.6234287,0.36192554,-0.048719186,-0.12719396,0.024649331,0.17560162,0.2262888,0.043243162,-0.23410027,0.1851963,-0.63775426,0.22492805,0.38129887,-0.016590679,0.19213997,0.0049924296,-0.1371307,-0.71658355,0.053841062,-0.36562687,-0.2852953,0.3289141,0.2163214,0.24603546,0.3125219,0.4225878,0.36522368,-0.22687311,-0.04355716,0.032448888,-0.35880047,0.46586734,0.3725109,0.5184818,-0.50727826,0.5507431,-0.02068263,-0.20581047,0.010449095,-0.13787672,0.45353463,0.25966904,0.3274323,0.178423,-0.31858188,0.18913914,0.90403885,0.12586458,0.5571228,0.12212443,-0.24942836,0.22640121,0.13869911,0.034314882,0.37230676,-0.49506208,0.073526144,0.0294622,0.23279439,0.29600286,0.06525805,0.20828377,-0.17154428,-0.18679182,0.008747501,0.09581256,-0.09600366,-1.1918167,0.31741685,0.17984033,0.7576436,0.3533037,-0.070511475,0.005297328,0.5325185,-0.14889966,0.08781575,0.17700422,-0.04923157,-0.49433336,0.37163636,-0.73864764,0.43007475,0.004944035,0.041403558,0.04889754,-0.1512278,0.39114732,0.9924345,-0.28568503,-0.014688313,-0.11185692,-0.28845972,0.15309249,-0.4237387,0.28642327,-0.6818943,-0.33053574,0.6475468,0.40134987,0.4159116,0.016686227,0.0006139832,0.025803497,-0.12312341,0.28272775,0.028015928,0.046161033,0.113391995,-0.7588965,-0.1491296,0.43907097,-0.45589966,0.27195916,0.017538087,-0.2564331,0.16552998,-0.18815064,-0.089320675,-0.064262435,-0.6201172,-0.06290166,-0.29679248,-0.40333602,0.51546323,0.07596474,0.3584833,0.2309192,0.07679031,-0.32825485,0.40541512,0.17525618,0.80503416,-0.010913031,-0.1852339,-0.62556237,0.34846374,0.21701157,-0.22925602,0.08876812,-0.06888364,0.09312679,-0.63709354,0.46497303,-0.1091718,-0.3661835,-0.023402695,-0.16362882,0.12456693,0.7659829,-0.2770407,-0.20769487,-0.034712944,-0.11536675,-0.20668927,-0.11197997,-0.0076297075,0.09682894,0.23966564,-0.06591465,0.015686527,-0.21507713,-0.015660355,0.3378268,0.20301776,0.3622031,0.36549944,-0.036639433,-0.33669522,-0.27239925,-0.016024385,0.44931176,0.0365222,-0.17788641,-0.382179,-0.5347322,-0.45972973,0.15173528,-0.056986745,0.32575712,0.09093503,-0.3552362,0.7092199,-0.01668272,1.3600996,0.0009791617,-0.24864408,-0.020791786,0.7449741,0.035759956,0.06419999,-0.54529524,0.9484703,0.55787617,-0.2251954,-0.10662868,-0.36716542,-0.25727186,0.47070175,-0.10168942,-0.008928299,0.06842387,-0.84142053,-0.27812055,0.17689466,0.3545241,0.14222652,-0.06468826,0.14089443,0.28837827,0.0016390851,0.31705305,-0.3834086,-0.26583058,0.2983933,0.21265152,0.027523799,0.20245706,-0.39489904,0.37574616,-0.3496957,-0.03820967,-0.035708785,0.042707052,-0.010854033,-0.2312068,0.27818114,0.20898892,0.26314348,-0.43012166,-0.37549767,-0.23065484,0.605773,0.24501088,0.30950752,0.6138962,-0.15202506,-0.27651933,-0.04929134,0.46440902,1.176667,-0.2456836,0.1733453,0.42865548,-0.42114544,-0.6011801,0.44950488,-0.09381243,0.056939907,-0.06517885,-0.35206413,-0.5283628,0.330472,0.2058709,-0.12344798,0.13979849,-0.68545204,-0.24751356,0.18075983,-0.38379446,-0.2062943,-0.2994921,0.25215364,0.7289415,-0.34371647,-0.16817467,0.08597007,0.38914827,-0.3158581,-0.3920932,-0.26453522,-0.43676424,0.3108676,-0.0022631288,-0.3748658,-0.2283049,0.08575898,-0.4359488,0.11354285,-0.038855094,-0.5313929,0.089167975,-0.25560182,-0.12133597,0.70724624,-0.03611868,0.041409142,-0.629543,-0.32744217,-0.7799372,-0.47526708,0.3881676,0.2576712,-0.06627732,-0.48254058,-0.037439518,0.043173738,0.004113657,-0.1431626,-0.4981038,0.46737447,0.028489266,0.3069179,-0.008852388,-0.7705884,0.054222137,0.20062146,-0.25096318,-0.6362084,0.5269076,-0.112063035,0.78648996,0.12386073,0.12572026,0.33955485,-0.3952226,-0.016974406,-0.28465262,-0.2629289,-0.7537752,0.07553579,658 -498,0.4522025,-0.3225005,-0.48411602,-0.03953133,-0.3534324,-0.07896836,-0.211694,0.579534,0.2984357,-0.24837674,-0.20631203,0.040505987,-0.15504734,0.107352726,-0.118077815,-0.38469014,-0.0822137,0.27135095,-0.6037665,0.63038105,-0.32656148,0.20244156,-0.10620041,0.35297638,0.41858917,0.23124883,-0.25285524,0.20786284,-0.018725498,-0.30565247,0.01560235,0.16508974,-0.5571799,0.18917295,-0.27441874,-0.3846678,-0.2640309,-0.5773322,-0.47063637,-0.8687592,0.46646705,-0.8108011,0.58679855,0.015383222,-0.34129474,0.20073898,0.10397436,0.43087727,-0.12272789,-0.12902968,0.32419902,-0.10884929,-0.19405968,-0.19298604,0.023696383,-0.16431181,-0.53339696,-0.11220609,-0.282866,-0.032327328,-0.3338017,0.20087552,-0.2817308,0.051539056,-0.11613309,0.5100765,-0.41410998,0.27530304,0.18767749,0.03544852,0.21645178,-0.7711506,-0.15140447,-0.12455101,0.3634789,-0.0321241,-0.3902862,0.27395743,0.28503218,0.36177167,-0.14207225,-0.14190896,-0.122113325,0.14863743,0.057577837,0.4361741,-0.30097088,-0.2323188,-0.08725593,0.011676124,0.40376708,0.17262968,0.15842845,-0.16011152,-0.13911511,0.010766958,-0.17072341,0.44151777,0.50096995,-0.20407328,-0.056522667,0.34091827,0.5363818,0.40064922,-0.15329458,-0.030603766,0.014032823,-0.54059505,-0.18844786,-0.0070390278,-0.25157052,0.37042183,-0.11956112,0.18037298,0.51924837,0.002896126,-0.24290507,0.30117318,0.27171543,0.008813143,-0.25107625,-0.60333264,0.26861855,-0.60227126,0.21432681,-0.14275554,0.56505173,0.11392788,-0.7600253,0.33930573,-0.59430367,0.124977835,-0.1009435,0.33987752,0.8943793,0.56195545,0.32630095,0.7583422,-0.30989847,0.043012314,-0.06973253,-0.05702121,0.1464102,-0.25224152,0.0037115514,-0.5272476,-0.09303325,-0.32393909,-0.22438218,0.19243959,0.42497966,-0.53974974,-0.1738035,0.06487463,0.83121544,-0.20161971,0.09182117,0.8876731,1.0492421,1.0362542,0.10042113,1.001942,0.020347267,-0.25252983,0.060878847,-0.14970131,-0.6410231,0.3324737,0.34140554,-0.17470108,0.12124415,0.123639226,-0.018202368,0.4019942,-0.4697455,-0.018773092,-0.18306334,0.18293646,0.19775088,-0.16856588,-0.27761745,-0.35206518,-0.11638194,0.20211805,-0.06960089,0.26689067,-0.26784176,0.3382309,0.16977988,1.5202495,-0.079765,-0.061677456,0.084769234,0.38709736,0.29487744,-0.34946376,-0.1533368,0.21311322,0.43959507,0.07266478,-0.5499507,0.14249717,-0.17800139,-0.17753664,-0.14520323,-0.17820962,-0.19324872,-0.012129791,-0.4259055,-0.30222204,-0.16581628,-0.20522778,0.42742178,-2.6914213,-0.25120932,-0.009863517,0.45789385,-0.06336417,-0.4005701,-0.057192173,-0.4645569,0.50900036,0.22663502,0.46924216,-0.6430748,0.46333104,0.45270994,-0.8190948,-0.014550449,-0.52183837,-0.25581393,0.14331138,0.16788734,0.050466068,-0.026036408,0.006356039,0.115325436,0.4188837,0.039040525,0.17047942,0.51851094,0.37624064,-0.18445231,0.48566103,-0.08779048,0.54469997,-0.25492224,-0.3029608,0.33083695,-0.35616717,0.17568953,-0.17572705,0.06653459,0.6196526,-0.5484597,-0.78673786,-0.739456,0.096792236,1.2682978,-0.09795565,-0.4161189,0.23088802,-0.7745672,-0.41562504,-0.07558741,0.528772,-0.05812806,-0.25369087,-0.8755881,-0.11032367,-0.036098067,0.18820919,0.018569613,-0.3065459,-0.5007287,0.7864168,-0.0044871527,0.58878344,0.37173352,0.059782457,-0.29266003,-0.28328013,0.020563092,0.78347653,0.5665904,0.09306584,-0.2644177,-0.027107498,-0.47718024,-0.020741556,0.060934056,0.59108275,0.38034704,-0.1419753,0.15517153,0.25421283,-0.082504585,0.040974915,-0.2885874,-0.32315448,-0.16182272,0.06756146,0.5419639,0.7023944,-0.044823747,0.35606536,0.09368568,0.19266447,0.030241536,-0.5527215,0.4798462,1.1069268,-0.14910187,-0.41935137,0.47293326,0.3709764,-0.14720918,0.39531666,-0.3580783,-0.16330314,0.33019462,-0.07240959,-0.41270855,0.24844837,-0.34916994,0.16427647,-0.54648507,0.33898386,-0.5598914,-0.69440156,-0.60284805,-0.03179097,-2.2831633,0.30844346,-0.2706519,-0.14572932,-0.2830213,-0.21821825,0.23617855,-0.6024439,-0.7130418,0.15450695,0.1086448,0.86353046,-0.1723034,-0.18743153,-0.05225834,-0.518104,-0.3693664,0.10448204,0.28063613,0.374108,-0.0049719713,-0.30305895,-0.176565,0.01728183,-0.35072595,-0.107707635,-0.6861498,-0.39650536,0.01952525,-0.5283419,-0.3442518,0.60185903,-0.21405326,0.082908,-0.1474723,-0.07840687,0.015345693,0.2536568,0.029075444,0.24151538,0.010028579,-0.20054701,0.065491445,-0.14451127,0.20500152,-0.022765378,0.16706535,0.044238295,-0.060746882,0.4029964,0.50405246,0.82565266,-0.20085771,1.0736909,0.5266953,-0.21272793,0.18607844,-0.30064994,-0.439199,-0.47716603,-0.06029958,0.1677609,-0.37502432,-0.24893704,0.08384893,-0.48862463,-0.857696,0.5237303,-0.020342799,-0.004733469,0.1515105,0.18540847,0.55174977,-0.08841138,-0.010623345,-0.11362792,-0.18760882,-0.49745736,-0.07012864,-0.6351227,-0.39672938,-0.09790389,1.1813815,-0.3594621,0.2967603,0.22030608,-0.30150196,0.19870266,0.18459556,-0.11570297,0.12943909,0.45039526,-0.20518239,-0.55280364,0.14720885,-0.064401664,-0.16271432,-0.72221977,0.43862417,0.5851897,-0.5630556,0.6710325,0.306588,-0.11873169,-0.43927607,-0.5645633,-0.061117392,0.03905081,-0.29256466,0.5220094,0.36514595,-0.7513312,0.36196062,0.50885457,-0.1973755,-0.72692615,0.5352723,-0.12833177,-0.3485205,-0.20845146,0.30013993,0.13126434,0.005303949,0.002920964,0.439949,-0.3666688,0.3237881,-0.03877492,-0.22569628,-0.11512055,-0.3054509,-0.086988054,-0.77062756,0.12297119,-0.5009595,-0.2971322,0.28838545,0.08041472,0.1575798,0.16166021,0.38934496,0.41332754,-0.236747,0.11124214,-0.3026827,-0.41005874,0.29134914,0.47369653,0.521374,-0.3126721,0.4959657,0.028432403,-0.19893003,0.0051850253,0.09243237,0.4092601,-0.09210886,0.50554407,-0.040372092,-0.07548534,0.1599956,0.8040911,0.09954802,0.39166158,-0.087399065,-0.06124721,-0.040847298,0.043650407,0.34489283,-0.1962284,-0.5694624,0.15190645,-0.20090532,0.053871598,0.5639784,0.20423087,0.010310367,-0.13181768,-0.526035,-0.1899999,0.1322963,0.06729599,-1.4963036,0.57301337,0.21562526,0.9001403,0.486309,0.09850273,-0.06766875,0.8103296,0.0091922,0.051943924,0.31978327,0.06837993,-0.38050726,0.35528135,-0.84694576,0.50156826,0.06380362,-0.046649806,0.10390629,-0.1398187,0.45651856,0.624024,-0.17565851,0.012664384,-0.037674945,-0.3910772,0.18463203,-0.36191374,-0.06272227,-0.6429101,-0.35092688,0.81952965,0.5588908,0.40440908,-0.32360095,0.1176335,0.021708706,-0.21593639,0.1824895,0.08480139,-0.00085003034,-0.023680832,-0.59851116,0.093545556,0.36587572,-0.23308858,0.12627468,-0.108406626,-0.08114646,0.29555327,-0.11808242,0.13817887,-0.15988632,-0.84487087,0.048764106,-0.5064357,-0.27578303,0.37568164,0.046057433,0.08872356,0.24567904,0.14478667,-0.0637802,0.55592155,-0.06850543,0.6451683,0.007458295,-0.015445486,-0.2357724,0.2944745,-0.06165075,-0.051253352,0.040883042,-0.3223238,0.14055972,-0.6334561,0.4560984,0.00786206,-0.32422787,0.17613962,0.027093198,0.08890573,0.47698313,-0.26971984,-0.19881253,-0.15690853,-0.116641246,-0.2641494,-0.5099432,-0.053713262,0.15049978,0.2187008,0.23289572,-0.19344752,-0.08899029,-0.21802525,0.58690137,0.034525488,0.6035862,0.40608266,0.14686649,-0.283008,-0.10151529,0.17116608,0.5219559,-0.09795232,-0.25036666,-0.49879727,-0.4074044,-0.3589592,0.35626724,-0.0029476646,0.45592508,0.05344855,-0.028442856,0.7503063,-0.10208394,0.9756785,-0.112131014,-0.313838,0.11234711,0.5879634,-0.18865336,-0.25891918,-0.22426854,0.6439414,0.53849,-0.103552565,0.057905786,-0.3697072,-0.031237999,0.10837494,-0.21615602,0.05259096,0.013925778,-0.6186386,-0.19939265,0.13248947,0.29905367,0.16436405,-0.20124845,0.10029181,0.4225015,-0.08403628,-0.12954418,-0.44743937,-0.22394717,0.30687985,0.2361659,-0.028707614,0.11449047,-0.635828,0.2984679,-0.37563664,0.076886095,-0.18027963,0.15308593,-0.16978523,-0.26993456,0.21387397,0.024141014,0.18315127,-0.34417632,-0.18858679,-0.17212489,0.40008074,0.19749942,0.14354381,0.45370656,-0.32109162,0.054744035,0.0935251,0.49176183,0.6197691,-0.20039351,-0.13810702,0.25184235,-0.4155963,-0.47695985,0.2165068,-0.26028043,0.047566168,0.22355005,0.025720222,-0.55200356,0.26910764,0.20296507,0.1454445,-0.06400337,-0.9247961,-0.18304019,0.22419818,-0.21979967,-0.04810571,-0.3369208,0.008964418,0.49118346,-0.18842462,-0.38978818,0.026679652,0.22286426,-0.06785629,-0.47186875,0.118927,-0.53921235,0.23761807,-0.08797675,-0.28624824,-0.18061733,0.018931776,-0.48092517,0.09893944,-0.042391803,-0.3469331,0.019584553,-0.258529,0.018676251,0.88371605,-0.30700523,0.20349921,-0.23989333,-0.48681346,-0.6116801,-0.20243904,0.3615763,0.23673317,-0.020660264,-0.8881801,0.0020542017,-0.09620913,-0.22437988,-0.09809283,-0.3724555,0.50967515,0.0878468,0.4981268,-0.1549281,-0.75344235,0.31231713,0.08886891,-0.27035603,-0.40217468,0.5050569,0.05662256,0.7964676,0.046975434,0.1631255,-0.028208688,-0.39898673,0.01822411,-0.19086708,-0.20436883,-0.5772887,-0.036481645,661 -499,0.42169315,-0.33026767,-0.49008515,-0.07091745,-0.1860216,0.16126274,-0.18024898,0.49324378,0.28675112,-0.4326051,-0.08366188,-0.08637757,-0.001992049,0.37116656,-0.08057023,-0.34839326,-0.03363943,-0.0022446609,-0.51066923,0.58789825,-0.37323448,0.1537373,-0.2367973,0.57840717,0.24141778,0.24603339,0.017791795,0.13253325,0.025521645,-0.2975249,0.24151847,0.28683478,-0.46717077,0.47556916,-0.22027552,-0.25718087,-0.076879136,-0.26609212,-0.5101737,-0.7148227,0.30754852,-0.7844537,0.30978337,-0.056691978,-0.27717444,0.19772415,-0.013153626,-0.025426975,-0.20540403,-0.29101378,0.032405183,-0.21375667,-0.06828366,-0.2753288,-0.17480513,-0.400359,-0.49358752,-0.09737295,-0.30541563,-0.07298924,-0.38349548,0.08650792,-0.3556936,-0.00058976666,-0.10300732,0.58489865,-0.35956007,0.24341688,0.25970614,-0.28624636,0.12045425,-0.68499976,-0.36111116,-0.114136815,0.06248545,0.23258291,-0.34291023,0.4525164,0.09683543,0.17952535,-0.011650451,-0.110446975,-0.26500803,-0.17821862,0.3750012,0.36692095,0.032731745,-0.407496,-0.14353131,-0.10444225,0.122972675,0.19248211,0.33137083,-0.31998628,-0.11960877,0.04012365,-0.22844112,0.4325505,0.5705751,-0.09263756,-0.18550876,0.19496202,0.38580889,0.30304447,-0.3037734,-0.09900709,-0.026534306,-0.4469625,-0.09176029,-0.033032715,-0.08305425,0.5009437,-0.1266085,0.33866334,0.5936451,-0.27530536,-0.10522993,0.08849023,0.17887037,-0.23338504,-0.44023886,-0.21196547,0.16635032,-0.41035444,0.17993757,-0.13240603,0.7830237,0.18912645,-0.47208452,0.43101773,-0.38458315,0.070973046,-0.06584635,0.48024133,0.616407,0.34286115,0.37710217,0.6194396,-0.3015589,0.0074984008,-0.19597742,-0.14575608,-0.050908208,-0.3606925,0.18816996,-0.40777335,-0.029164374,-0.06669115,-0.10408229,0.0614711,0.42520306,-0.34344083,-0.14461394,0.1855713,0.7484937,-0.21360111,0.11316652,0.71272427,1.2114525,1.1269833,0.12281137,1.1145271,0.085619695,-0.19165698,-0.020379987,0.12989476,-0.7959897,0.26534376,0.27582327,0.44268042,0.15023175,-0.025899382,-0.001597826,0.33689752,-0.43352133,-0.03131897,-0.058528204,0.61102116,0.23999548,-0.07270614,-0.29294044,-0.3021452,-0.10785474,-0.09899039,-0.07991546,0.2655186,-0.105390206,0.5149452,0.1511172,1.357962,-0.098192744,-0.029083248,0.14446715,0.6076932,0.23437534,-0.28840327,0.11584175,0.2996162,0.14774312,-0.01416786,-0.5628311,0.24178596,-0.273091,-0.4763504,-0.09775664,-0.4019689,-0.1955773,0.0991055,-0.26875028,-0.2946259,-0.0376529,-0.23581786,0.38791534,-2.9284875,-0.1245048,-0.1033488,0.38212132,-0.16684332,-0.16149278,0.006402456,-0.52405757,0.38455233,0.20303905,0.43724027,-0.48214787,0.079871014,0.6139202,-0.6118521,-0.054428406,-0.37333253,0.017978575,-0.034686323,0.47094855,-0.0847566,0.11759595,-0.21544047,-0.0121582495,0.584359,0.13073315,0.23032464,0.38161018,0.15148146,-0.35718516,0.46091977,-0.120497115,0.43879077,-0.451632,-0.022302667,0.31240293,-0.42098427,0.41129318,-0.29272828,0.1596119,0.6441569,-0.31186262,-0.5810669,-0.63682616,-0.06838477,1.2183529,-0.104527555,-0.67102754,0.23701546,-0.66760856,-0.16498078,-0.15387313,0.49553064,-0.09960236,-0.12728898,-0.5770501,0.059451055,-0.03346328,0.15639438,-0.088993974,-0.1275821,-0.25628188,0.6534795,0.09745487,0.48212576,0.21228337,0.10002543,-0.2251699,-0.3292558,0.11361127,0.53099436,0.43407035,0.15169981,-0.43464676,-0.18967636,-0.21442835,-0.19963673,0.112078734,0.68302286,0.39672205,-0.15972002,0.23127578,0.2414732,-0.089890294,-0.003642823,-0.2519375,-0.12306353,-0.19098568,0.096704364,0.60210556,0.8564688,-0.007200505,0.23597011,0.003792682,0.26714966,-0.058443844,-0.48806527,0.5080352,0.84871674,-0.16757798,-0.27689394,0.46527857,0.4765303,-0.38500255,0.3305528,-0.43252835,-0.2922061,0.56460315,-0.14335768,-0.477037,0.016077233,-0.27610168,0.1318035,-0.47538868,0.21806654,-0.55226123,-0.67444813,-0.48977193,-0.15865202,-2.4647086,0.1426123,-0.27420488,-0.19029878,-0.22602119,-0.22015585,0.24298951,-0.34227067,-0.5311671,0.21374328,0.11288302,0.7338163,-0.16716501,-0.08098977,-0.37713936,-0.44717202,-0.32750422,0.109791696,0.14076169,0.3818646,-0.13445564,-0.2795673,0.041076858,-0.010701383,-0.32904407,0.11288402,-0.37863678,-0.5100232,-0.12724943,-0.3732105,-0.39713582,0.5885855,-0.03522052,-0.005488168,-0.15531383,0.009387776,-0.10299023,0.08971398,0.005189717,0.17310724,0.08541752,-0.12229623,-0.04975428,-0.32257834,0.28867558,0.0021347941,0.30777007,0.40673146,-0.059896696,0.08994488,0.39642286,0.54214674,-0.14904077,1.0196854,0.286315,0.08960929,0.3605241,-0.1506319,-0.52684146,-0.5048472,-0.1564995,0.29876462,-0.39722404,-0.33419558,0.093661904,-0.26471657,-0.65176994,0.5825452,0.190395,0.1443385,0.06966103,0.06754751,0.48480123,-0.05632278,-0.06415793,0.17840861,-0.037816636,-0.7476056,-0.41553766,-0.7852414,-0.52271616,0.14364572,0.90296024,-0.23559295,-0.14688277,0.13509431,-0.4352793,0.14657973,0.2861453,-0.108526155,-0.18088634,0.48433542,0.0781622,-0.49059078,0.48361522,-0.017060515,-0.10344065,-0.59935033,0.4946344,0.6264645,-0.7215032,0.6437011,0.18023825,0.09357093,-0.37416396,-0.48994318,-0.12182747,-0.28253016,-0.1675286,0.39370966,0.2755436,-0.95538396,0.31904125,0.17996824,-0.18861924,-0.67043245,0.46872872,-0.1921757,-0.2513258,-0.14465782,0.31301084,0.21365213,0.0057191295,-0.11716584,0.32655033,-0.51825464,0.19249001,0.12361276,-0.08808124,0.218142,-0.19033155,-0.17138597,-0.63955265,-0.012760644,-0.4957885,-0.39388552,0.34081587,-0.063670635,0.04942582,0.2459121,0.31882307,0.28145593,-0.104152165,0.17363313,-0.04550135,-0.35105538,0.45798543,0.42586628,0.62457556,-0.23587319,0.7117465,-0.016911617,0.045094226,0.1574969,0.17763135,0.26107243,0.23630609,0.56543714,0.08091681,-0.2603652,0.05835073,1.161908,0.12954995,0.4108939,-0.021022012,-0.06929435,0.35028264,-0.06859401,0.36184525,-0.12205291,-0.5777024,-0.012851732,-0.44794008,0.09834683,0.3564423,0.20679577,0.25574556,0.03490365,-0.43930206,0.0055323667,0.013335301,-0.01798307,-1.1791672,0.23013684,0.10012187,0.97335833,0.3556984,-0.016293688,-0.1023471,0.73047477,-0.02583612,0.07350625,0.3335347,0.110875435,-0.44321874,0.5097867,-0.6862053,0.56485873,-0.036865063,-0.14304687,0.09764935,0.034220707,0.47387663,0.6424232,-0.2344671,-0.04135465,0.15154208,-0.37052733,0.1510161,-0.49252912,-0.13373451,-0.5446264,-0.39711183,0.5302609,0.64215183,0.44269314,-0.28774428,0.018360982,0.050352726,-0.11394893,0.25357255,-0.06484251,-0.087529846,-0.1468569,-0.5331685,-0.13545622,0.43314114,0.039999362,0.27087355,-0.041806724,-0.18527672,0.18959789,-0.093909405,-0.006784805,-0.06847625,-0.6194808,-0.0068047005,-0.22276889,-0.5426363,0.40006045,-0.14122602,0.25581995,0.37295794,0.0095088435,-0.07157922,0.43284056,-0.018115656,0.84848034,-0.074427366,-0.11998812,-0.49665308,0.016277624,0.11099107,-0.23200762,0.06821607,-0.12578431,-0.13635544,-0.47069263,0.5070845,-0.15777706,-0.2664408,0.028029291,-0.10878669,0.042361405,0.59548265,0.07937725,-0.1609669,-0.054712627,-0.10249963,-0.31757182,-0.2679011,-0.012455523,0.2392041,0.14795105,-0.0021146429,-0.114134856,-0.13582246,0.25418556,0.22182812,0.0009867698,0.20116057,0.3045965,-0.08831365,-0.33143234,-0.1309448,0.23514953,0.61962926,0.08060258,-0.13558482,-0.25303563,-0.5209294,-0.42981437,0.2018001,0.05998842,0.41007975,0.07552157,-0.41527933,0.531799,-0.23908135,0.7881971,0.06294403,-0.24520777,0.2426438,0.53699744,-0.012615676,-0.1095354,-0.31961516,0.5956295,0.2859269,-0.1394117,-0.19702992,-0.34777784,0.11520883,0.20433919,-0.24085243,-0.027448585,-0.0902713,-0.67809343,0.029487815,0.019656433,0.2181329,0.2044151,-0.13340469,0.016332272,0.29428014,0.12935789,0.380647,-0.40027422,-0.170855,0.32621676,0.12566593,-0.022577312,0.15691353,-0.39907643,0.24505033,-0.5448486,0.20183267,-0.15790306,0.09162567,-0.25865665,-0.31534645,0.24662413,0.11534234,0.33052093,-0.40539184,-0.3458705,-0.3642241,0.33113518,0.2564804,0.18087889,0.46607068,-0.15943827,-0.15312947,0.17843221,0.53531104,1.0335253,-0.10411211,-0.009785546,0.20403549,-0.5831521,-0.5995839,0.40143058,-0.24622524,0.22111738,0.1306292,-0.041477878,-0.55605626,0.14601913,0.34144923,-0.025408864,0.20855244,-0.79562604,-0.25970593,0.02025893,-0.49892852,-0.14727004,-0.39663795,-0.17609365,0.33751747,-0.20564573,-0.25934562,0.07725903,0.25946575,-0.18063828,-0.3593056,-0.024768272,-0.37657437,0.34072378,-0.22779639,-0.39064255,-0.15731876,0.05394706,-0.52456105,0.06294747,-0.13953097,-0.40767342,-0.015235119,-0.32665226,0.07894624,0.8136719,-0.3522745,0.19719324,-0.30706483,-0.53670084,-0.6716562,-0.22443482,0.23785134,0.04200548,0.05836239,-0.45677122,-0.17593156,-0.047311597,-0.0074665374,-0.11981189,-0.39465287,0.38208076,0.0065210634,0.30800086,-0.011379762,-0.9077813,0.34119648,0.18230745,-0.02270067,-0.40001342,0.4276002,-0.3369977,0.69803524,0.017342478,-0.10890615,-0.007148516,-0.37962213,0.24509032,-0.19845675,-0.23089422,-0.3180674,0.25068334,662 -500,0.5988131,-0.2992669,-0.56070495,-0.057546575,-0.43808183,0.23618165,-0.2574406,0.1283126,0.25485644,-0.59828454,-0.09109674,-0.21874371,-0.021794932,0.24958622,-0.1674201,-0.70094573,-0.035496622,0.092134185,-0.52678174,0.41912165,-0.64486367,0.22795378,0.22427513,0.49759293,0.13823408,0.20890705,0.3314242,-0.0034966809,-0.30672306,-0.03434985,0.012784536,0.17967607,-0.81029063,0.18442142,-0.18408842,-0.38010174,0.0072857267,-0.626795,-0.21948588,-0.84611064,0.37382984,-1.0856621,0.64357203,0.029102951,-0.29531866,0.043518323,0.061075654,0.10261796,-0.31505117,-0.025702575,0.22376558,-0.47427607,-0.043239795,-0.23890375,-0.3275376,-0.45336366,-0.80203193,0.15001747,-0.51262057,0.084898196,-0.11531484,0.3258893,-0.2991114,0.15207002,-0.23926817,0.47662276,-0.48156455,-0.07107105,0.32347685,-0.1704307,0.1869253,-0.44173092,-0.28203577,-0.2772314,0.09828056,-0.15444529,-0.34828982,0.29208347,0.3282788,0.60839224,0.090066805,-0.45355868,-0.37016144,0.1607323,0.17451404,0.47092178,-0.13039526,-0.2560144,-0.33299908,-0.03887541,0.3974943,0.33814377,0.17266223,-0.2952425,0.11673228,-0.0107902335,-0.14646976,0.5039902,0.5119204,-0.23761864,-0.38983044,0.26296803,0.52788323,-0.05582583,-0.09870863,0.043379147,-0.036806945,-0.65354973,-0.23745322,0.4432602,-0.12781323,0.60916287,-0.19346099,0.13086616,0.7000862,-0.4340238,-0.10568911,-0.13668728,-0.15570772,-0.13296768,-0.34077862,-0.15451299,0.38311523,-0.50221044,0.024446255,-0.3035194,0.571729,0.18737224,-0.84604317,0.41158113,-0.50330126,0.16305923,-0.09386245,0.7362047,0.78810203,0.5176369,0.5344413,0.87001514,-0.5109908,0.06989272,-0.102971315,-0.38994053,0.14362934,-0.28831133,0.1259533,-0.50451165,-0.040366042,-0.15543452,-0.3150058,-0.0048080003,0.6161604,-0.5578438,-0.025581935,-0.007343139,0.5834585,-0.36085573,-0.11431246,0.9476892,1.0862509,1.1179949,0.12111171,1.4832078,0.41968912,-0.11323153,0.139939,-0.1258805,-0.6270491,0.31724572,0.3598082,-0.17526145,0.58380806,0.21466944,-0.022552622,0.40003112,-0.29941484,-0.12339797,-0.11151307,0.085406184,0.011849693,-0.0010782693,-0.54920363,-0.37853718,0.025837127,0.036395304,0.041232653,0.33304682,-0.21043113,0.61576,0.05910015,1.3920307,-0.013305111,0.02845999,-0.04077504,0.38957888,0.07940291,-0.026036415,-0.07443882,0.28914204,0.29599217,0.08374106,-0.51532805,-0.019560214,-0.18296024,-0.4366496,-0.26278043,-0.38973996,0.14424147,-0.36673886,-0.50974905,-0.15334968,-0.03573072,-0.47602144,0.48437077,-2.0085754,-0.26872516,-0.038981464,0.3269128,-0.1888517,-0.44556722,-0.26973283,-0.49834332,0.2020872,0.3709362,0.37936231,-0.7914543,0.40438578,0.32031912,-0.6783878,-0.18479283,-0.8608769,0.04113629,-0.2229011,0.37509695,-0.01794506,-0.3117983,-0.20601876,0.14811647,0.61611855,0.04994138,-0.041423917,0.23107195,0.72633934,0.026669072,0.5686804,0.16567142,0.5219988,-0.3862297,-0.29166827,0.5672096,-0.3785402,0.399908,0.11663276,0.06885858,0.4672654,-0.5357501,-0.92761135,-0.7514067,-0.45835048,1.2731081,-0.3536165,-0.33053848,-0.0084254155,-0.08971447,-0.40901893,-0.030955514,0.44647735,-0.25406423,0.07315426,-0.77412355,-0.14374737,0.112621896,0.20328401,-0.03895716,0.29966798,-0.4285591,0.70989907,-0.09262661,0.3920839,0.445671,0.156877,-0.13701917,-0.5912296,0.23837164,0.85374165,0.32919523,0.22248244,-0.2622879,-0.36191583,-0.0038389883,0.021788256,0.1288249,0.496654,0.7239598,-0.032521073,0.06532581,0.41934425,-0.15868078,0.031863123,-0.18011095,-0.24222696,-0.17083208,0.14886744,0.6816522,0.8949747,-0.27232608,0.28152698,-0.17734924,0.40216365,0.056850344,-0.5215835,0.4602094,1.1339207,-0.1313602,-0.13364947,0.5984779,0.44625473,-0.5493615,0.55980283,-0.70701563,-0.16052093,0.42082554,-0.046539508,-0.42790842,-0.03676205,-0.47403213,0.19545424,-0.9437027,0.43716374,-0.09673839,-0.28594527,-0.65258545,-0.11782842,-3.5082035,0.2675836,-0.18003201,-0.095133305,0.03322341,-0.25319356,0.44176584,-0.6848383,-0.5924707,0.067535,0.00948828,0.51079386,-0.11393152,0.20608819,-0.40842262,-0.28126478,-0.25083318,0.20021084,0.38845035,0.3388931,-0.030222442,-0.42425227,0.15813671,-0.37169275,-0.36573902,-0.08472148,-0.70252264,-0.6751053,-0.16093525,-0.5930972,-0.39286852,0.8173884,-0.23955354,-0.13613364,-0.25360844,0.07324346,-0.067077525,0.39652923,-0.051047813,0.29030666,0.13046287,0.018404113,-0.16335103,-0.16950552,0.2982126,0.10363169,0.13781914,0.50168735,-0.21541527,0.30534586,0.5936723,0.6742319,-0.08951342,0.8169273,0.37154478,-0.036365855,0.28101784,-0.13559689,-0.35846373,-0.85963756,-0.3653892,-0.050793093,-0.53356034,-0.39256597,-0.082783654,-0.37098306,-0.8563374,0.57508075,-0.12869085,0.18359403,-0.14195226,0.40096322,0.5419787,-0.26931205,0.15479909,-0.19827521,-0.26703304,-0.6044838,-0.5057395,-0.7165464,-0.7869565,0.014067845,1.2880529,0.023192933,-0.19323395,0.15232971,-0.2603787,0.20088355,0.21876076,0.013569792,0.16344868,0.5550017,-0.016899915,-0.7081795,0.40423754,-0.012056952,-0.10514365,-0.46320614,0.14873055,0.8857581,-0.6553026,0.7170962,0.5366433,0.20162642,0.13600911,-0.5261007,-0.43682885,0.063595675,-0.18193607,0.64037454,0.29377037,-0.7532752,0.46038622,0.2314863,-0.41028497,-0.75221246,0.44056445,0.024462814,-0.13853589,0.080295615,0.4550527,0.016367793,-0.033662822,-0.29023328,0.21100518,-0.4832078,0.22271511,0.3577812,-0.009008263,0.269559,-0.055960692,-0.26001585,-0.76533085,-0.002593598,-0.45538503,-0.44130966,0.104011044,-0.04890823,0.0517825,0.12234033,0.13419433,0.5051824,-0.40415078,0.09363579,-0.10914055,-0.36005044,0.28729862,0.58546305,0.34615135,-0.51053625,0.6414819,-0.03662173,-0.043238018,-0.14714006,-0.064642034,0.4244075,0.20397247,0.18222864,0.009768222,-0.100142516,0.025258109,0.6660456,0.13624473,0.40973195,0.2284241,-0.1440043,0.46745235,0.15115581,0.3693976,-0.24628186,-0.4258104,-0.056271076,-0.08006541,0.14219089,0.3841949,0.024924984,0.35437074,-0.13580148,-0.11267758,0.18234646,0.12145605,-0.06886523,-1.3054428,0.20104074,0.130872,0.5944051,0.55593026,-0.12115181,0.12895264,0.56477916,-0.5043106,-0.022827953,0.45229214,0.051280856,-0.49546704,0.51757824,-0.5497286,0.4369236,-0.27842718,0.033635348,-0.044719107,0.1233482,0.41157284,0.8438053,-0.18071364,0.08613256,-0.07342205,-0.018730232,0.0684459,-0.38848957,0.14530857,-0.51692647,-0.40089545,0.9223916,0.42253384,0.5331365,-0.27677932,-0.052613102,0.14858375,-0.1561835,0.2946253,-0.07214157,-0.15934785,-0.0051408494,-0.6872001,-0.0132461535,0.6275857,-0.011541277,0.1437401,0.043518133,-0.38924694,0.12403587,-0.1386194,-0.2171341,-0.09682305,-0.8470192,-0.22950517,-0.4801435,-0.46890044,0.31439903,-0.3391814,0.17826332,0.31923214,0.07703434,-0.30182573,0.059981756,0.29809216,0.977557,0.25777146,-0.15198646,-0.3238011,0.1674715,0.39753357,-0.39174977,0.02145433,-0.19219868,0.31784528,-0.46131393,0.612644,-0.20167804,-0.5246112,-0.06256345,-0.028805273,0.06063899,0.6315711,-0.2653059,-0.23616816,0.053100143,-0.016131047,-0.29017773,-0.18138972,-0.35786813,0.22489081,-0.019614348,-0.287376,0.08761843,-0.07909293,-0.020339416,0.5695321,0.22177856,0.21838297,0.31987953,-0.074802145,-0.39135727,0.0558286,0.051439404,0.55099434,0.20161569,-0.35279918,-0.5337184,-0.2591119,-0.15621647,0.3376748,-0.1256507,0.12800412,-0.012712725,-0.44154927,0.9964147,0.062349822,1.277049,-0.07379394,-0.46856856,-0.058898397,0.5058583,0.020014586,0.073374145,-0.42690653,1.0178002,0.52268565,-0.21745296,-0.1887761,-0.51888716,-0.2563271,0.24888954,-0.37981915,-0.11477239,-0.25663728,-0.7445539,-0.1875952,0.21904,0.2707798,0.028967062,-0.182695,0.2908928,0.13243327,0.062195215,0.4574968,-0.4627053,-0.14340138,0.40583357,0.32119754,0.030372858,0.17960282,-0.2867706,0.39890972,-0.61076736,0.1665007,-0.5809946,0.07998593,0.056717556,-0.38237658,0.23988748,0.002294319,0.46487632,-0.36272416,-0.22463386,-0.32767084,0.6824074,0.30471236,0.2800896,0.8114906,-0.2824694,-0.056182522,0.094266824,0.46588913,1.6494664,-0.13861135,0.15822433,0.2853859,-0.22844395,-0.53481305,0.4482501,-0.47376233,0.03535085,-0.26242894,-0.39780882,-0.5995941,0.11246015,0.20387755,0.049509626,-0.04243208,-0.46955967,-0.09436745,0.6011925,-0.28601772,-0.29757762,-0.31754112,0.24137358,0.6671977,-0.22963639,-0.3950463,0.07493105,0.4244642,-0.2473953,-0.44698283,-0.1876667,-0.33127934,0.33340803,0.08286735,-0.2712268,0.025941715,0.18776895,-0.43008876,0.12791799,0.32027844,-0.39885476,0.121096544,-0.24853471,-0.049091,1.0628345,-0.006144907,0.18390147,-0.57765883,-0.5641935,-1.0173441,-0.34857893,0.08183561,0.20957734,0.075968795,-0.45520192,0.007774132,-0.116081,-0.16734432,0.1311101,-0.6535048,0.41705298,0.0141153615,0.55330044,-0.11367994,-0.769033,0.08699714,0.15469006,-0.10774369,-0.4300232,0.46881184,-0.12067227,0.71230423,0.11181196,0.09214976,-0.03737899,-0.5194603,0.3231037,-0.3492566,-0.1743911,-0.73481905,-0.025434738,664 -501,0.43811274,-0.16113122,-0.4365334,-0.04572851,-0.110261016,0.11718805,-0.14043978,0.3401366,0.04547924,-0.6949714,-0.13212545,-0.117753044,-0.012949253,0.30651993,-0.20122957,-0.34022596,0.091119625,0.22347164,-0.56827086,0.50702244,-0.48359624,0.46263072,0.0896424,0.26366428,-0.01380183,0.37413606,-0.028485242,-0.19784032,-0.37484735,-0.20498766,-0.06330573,0.26175857,-0.5112939,0.20267403,-0.14818886,-0.33743665,0.01921445,-0.26763102,-0.29899248,-0.5225983,0.15808184,-0.825449,0.37952498,-0.123648286,-0.19101663,0.31952304,0.08363102,0.25728637,-0.2114699,0.16580105,0.27268493,0.09693565,-0.2530616,-0.26970676,-0.13535604,-0.37300164,-0.4885848,0.100770585,-0.44677347,-0.2278429,-0.17450903,0.10622798,-0.16238284,-0.044002306,-0.09161774,0.29447922,-0.32892153,0.15169215,0.0017085719,-0.155681,0.068169355,-0.64267254,-0.13523033,-0.069480345,0.4264209,-0.35166582,-0.032708876,0.2470332,0.28263196,0.43961215,-0.031201333,0.023684764,-0.44022992,-0.014121384,0.20650302,0.5887419,-0.24662545,-0.45988414,-0.03250333,-0.06075612,0.267667,-0.055208676,0.25975966,-0.33195278,-0.15191916,-0.16395937,-0.33095285,0.38340586,0.39005336,-0.32990643,-0.2881067,0.3444781,0.4271371,0.051766295,-0.21341906,0.013960838,-0.15373981,-0.40937003,-0.01884059,0.11254166,-0.1479797,0.4695497,-0.124151625,0.20706008,0.5305566,-0.30158237,0.1375936,0.23652568,-0.025168981,0.10313968,-0.064049415,-0.19223566,0.09818958,-0.3633612,-0.12257061,-0.19623621,0.52094436,0.16170251,-0.883561,0.2865174,-0.45730537,-0.03885958,-0.02781112,0.4039999,0.4913061,0.34693727,-0.026881555,0.5401779,-0.49932915,-0.009127055,-0.15865834,-0.29269642,0.13298723,-0.09368557,-0.13731728,-0.5037257,-0.0031749776,-0.025177747,-0.1382447,0.01804884,0.41009974,-0.62797177,-0.024215255,0.11922174,0.62773955,-0.4285891,-0.122945786,0.7240916,1.0159768,0.8100244,0.08274407,1.2837937,0.23203312,-0.20875752,0.12718333,-0.41592985,-0.5263699,0.32395005,0.26292428,-0.26514393,0.25912726,0.06715826,0.18058224,0.16213468,-0.27590948,0.10540637,-0.17839554,0.03165963,-0.055344913,-0.12733635,-0.2906011,-0.17064805,-0.038625214,-0.020944307,0.16899712,0.18383367,-0.2760655,0.09317355,0.09015048,1.5515099,0.019103944,0.10394396,-0.0050101555,0.22281218,0.18538909,-0.17906031,-0.15936604,0.37236354,0.2658696,0.09520952,-0.62092924,-0.01980587,-0.24647447,-0.5611397,-0.23884913,-0.18663403,-0.07493706,0.0104345335,-0.4882126,-0.17231046,0.04033613,-0.35935113,0.4466477,-2.5486794,-0.16377541,-0.03455681,0.50199515,-0.31960037,-0.43753186,-0.33673757,-0.3426377,0.33969504,0.18970105,0.5085138,-0.49459043,0.3898254,0.31929424,-0.4511293,-0.32969594,-0.5416579,-0.041435163,-0.12472325,0.26181152,0.011605539,0.017535422,0.2355304,0.0040515703,0.42460886,-0.18687657,0.036569096,0.3307688,0.36448595,0.31636623,0.55484766,0.13728476,0.59226954,-0.2389208,-0.17480986,0.36361626,-0.3836097,0.16698718,-0.058833275,0.164708,0.25498945,-0.5121821,-0.88817966,-0.75516266,-0.18828829,1.1919012,-0.0060919863,-0.41778415,0.12058829,-0.059788067,-0.45447105,-0.021443024,0.35000867,-0.05452622,-3.2948596e-05,-0.9551905,0.0075591677,-0.029937148,0.27492163,0.04430496,-0.03779778,-0.45487896,0.56507725,-0.04341804,0.4144867,0.2865439,0.19127712,-0.338655,-0.40541863,0.120511584,1.1220311,0.34314305,-0.005800686,-0.08242432,-0.24109383,-0.4215295,-0.02437192,0.09414104,0.40187687,0.54254025,0.05251464,-0.010639997,0.09010649,0.08278016,0.24754463,-0.1418456,-0.26986027,-0.22851232,0.023137586,0.5001944,0.36671185,-0.23529203,0.5906417,-0.19391671,0.19694936,-0.11242554,-0.40278944,0.480007,0.945054,-0.16290376,-0.31585222,0.5299075,0.3144706,-0.17376308,0.40931037,-0.57481825,-0.49182415,0.27145544,-0.33896452,-0.14005055,0.30876568,-0.21725686,0.17233346,-0.90148973,0.3056119,-0.45086488,-0.38618806,-0.3566484,-0.123230815,-2.6968334,0.22529784,-0.1445413,-0.16091633,-0.021832364,-0.2259186,0.16416374,-0.6174386,-0.47100827,0.040180944,-0.008926059,0.6018718,-0.06642676,0.15030468,-0.041338604,-0.30733538,-0.1022009,0.26905772,-0.08107466,0.4843156,0.16764177,-0.56647265,-0.0021925655,-0.23514684,-0.2903108,0.18123771,-0.6061449,-0.4844171,-0.11527423,-0.49595633,-0.3477952,0.69270104,-0.45171332,0.025662413,-0.17814317,-0.0920294,-0.082406305,0.2891033,-0.038759854,0.08809711,0.11235053,0.07616981,0.016957697,-0.18839668,0.26626703,0.19148628,0.2780326,0.50828266,-0.21827236,0.06882167,0.44368276,0.54860544,-0.16687116,0.68008566,0.53683704,-0.18159679,0.30485842,-0.37472656,-0.087400675,-0.5128728,-0.40026593,-0.09312398,-0.47344396,-0.5086085,-0.09390414,-0.3719017,-0.76327294,0.54447407,-0.05587104,-0.11975308,-0.06441065,0.42437455,0.3881008,-0.06838677,0.08640714,-0.24784403,-0.13215268,-0.42549235,-0.41284537,-0.56176895,-0.33147785,-0.06265847,1.0328449,-0.24224956,0.081609435,-0.0010830483,-0.17371762,0.062790774,0.02486276,0.0248186,0.1864943,0.37329802,-0.12466617,-0.5683344,0.425054,-0.20669106,-0.15265583,-0.26323986,0.24024704,0.6833766,-0.62176603,0.48627773,0.41450223,0.047112074,0.074152246,-0.37179136,-0.12195347,0.12283244,-0.35680518,0.29182014,0.13963978,-0.7510077,0.37946072,0.24769425,-0.2792661,-0.76121247,0.509696,0.16145328,-0.2911753,-0.15470569,0.36208317,0.17431918,0.05412933,-0.5404576,0.17960414,-0.4628098,0.33225006,0.24950425,-0.0736608,0.3871998,-0.33440334,-0.2430032,-0.7480609,-0.041528516,-0.22965407,-0.27660555,0.16865878,0.12581824,0.07924756,0.25320354,0.1612541,0.4028341,-0.46245617,0.031729065,-0.048314814,-0.08114467,0.18178459,0.27314675,0.42630932,-0.45885938,0.34788814,-0.009942191,-0.14337622,-0.13453443,0.032921463,0.5903614,0.09097302,0.047624532,0.13625863,-0.19687144,0.37210158,0.6965814,0.21954681,0.37428877,0.024888124,-0.32015395,0.09362449,0.06694683,0.20713006,-0.037206206,-0.45454976,0.025696678,0.06569309,0.2079192,0.4952669,0.14406754,0.26459107,-0.17256072,-0.28115737,0.054994125,0.2697688,0.08992241,-1.0530984,0.5076088,0.015021967,0.6658986,0.566571,-0.008076497,0.10873254,0.43809947,-0.324212,0.11661172,0.25740436,-0.20693152,-0.47725812,0.33281723,-0.499499,0.34720114,0.011435283,0.1342539,0.079911366,-0.14541745,0.4230216,0.9980665,-0.010309928,0.28811556,0.010229371,-0.26693416,0.093326345,-0.2898516,0.12649642,-0.3633726,-0.08494997,0.77150536,0.51228446,0.35396686,-0.07079581,0.024814382,0.18976043,-0.11895956,0.22515342,0.09497885,0.34579185,0.040756874,-0.61933595,0.016764581,0.6209195,-0.0023015738,0.05573221,0.18012328,-0.30372146,0.35635218,-0.16226153,-0.003474125,-0.07705455,-0.6549748,-0.21975414,-0.33126396,-0.10368776,0.22061452,-0.1790355,0.21608326,0.19778883,0.035415392,-0.16099481,0.40828842,0.27354935,0.593502,-0.01452692,-0.15397283,-0.2885146,0.22108372,0.20215736,-0.1920412,0.0659752,-0.14040732,0.015212859,-0.58385605,0.34217376,0.018385742,-0.17270438,0.011067867,-0.00054481626,0.09439675,0.46344608,-0.1341054,-0.13139598,0.16000311,0.035662033,-0.15170582,-0.13784015,-0.2154472,0.14505677,0.44547477,-0.06769505,-0.10879996,-0.030235102,-0.10345018,0.40797153,0.023500783,0.45462894,0.2625365,0.1604787,-0.33124948,0.07729893,0.27103838,0.38387516,0.007828818,0.122187935,-0.23286942,-0.3718112,-0.30544624,0.15263061,-0.11023682,0.12274443,0.106323294,-0.24406183,0.7032212,0.19480035,1.1957588,0.025208162,-0.2524651,0.19045602,0.28933483,0.06063957,0.10212765,-0.359022,1.1462734,0.5636313,0.08445173,-0.089442715,-0.33707884,-0.29351547,0.04303823,-0.29385707,-0.19915204,0.02375744,-0.5554171,-0.543546,0.20252533,0.2307446,-0.07255022,-0.13202791,0.16360155,0.20889182,0.06930296,0.17313473,-0.72392505,-0.3227477,0.20636247,0.36503968,-0.010813385,0.07119517,-0.4355821,0.4843885,-0.65247357,0.07521016,-0.10289525,0.13192482,-0.06393957,-0.20128967,0.1289284,0.18040405,0.29849234,-0.25684634,-0.49624267,-0.33062193,0.51340955,-0.16480921,0.040284373,0.58901256,-0.32463616,0.13904342,-0.0002870134,0.47305706,1.0199975,-0.15705822,0.048199926,0.47318098,-0.27318177,-0.5146314,0.17191733,-0.2403322,0.16276108,-0.10626149,-0.1890424,-0.43973836,0.2972608,0.14085382,0.10912951,-0.053733606,-0.41952282,-0.20720689,0.48335716,-0.31857798,-0.100119345,-0.19478798,0.14963461,0.6721562,-0.42775694,-0.38988656,0.098908305,0.1766685,-0.25196567,-0.50732845,-0.07312774,-0.36343843,0.27760166,0.24112256,-0.2057736,-0.16039911,0.114781454,-0.27394977,0.32245082,0.31819418,-0.18619642,0.084828146,-0.35465524,-0.012719868,0.7688631,-0.15562762,0.22616327,-0.4130213,-0.51226574,-0.87325805,-0.37234452,0.28161627,0.16752839,-0.091420054,-0.6261521,-0.010244949,-0.1878896,-0.25280714,0.0917141,-0.23785326,0.43170205,0.14814864,0.31022403,-0.285994,-0.9547773,0.17659007,0.17100157,-0.14826925,-0.56956685,0.48692444,0.032743085,0.88234043,0.10538031,-0.021024337,0.46041462,-0.60207015,-0.050128702,-0.23139346,0.012577559,-0.7074656,-0.018559847,669 -502,0.33746797,0.056697436,-0.4285644,-0.23925766,-0.5903249,0.020161513,-0.08512008,0.26389748,0.34460548,-0.14498186,-0.14979674,-0.07885109,-0.1366953,0.46346518,-0.36521548,-0.91455185,0.079293735,0.052329723,-0.42212814,0.52705145,-0.48448086,0.39544085,0.20065813,0.42493322,0.15976128,0.2908485,0.18140586,0.03403812,-0.06810611,-0.3067484,-0.19943188,0.26193336,-0.49535057,0.36879364,-0.064717755,-0.34407642,0.04240545,-0.26014423,-0.2522268,-0.60008484,0.31186405,-0.6867228,0.49739346,0.049478088,-0.3526179,-0.16150382,0.313288,0.1759889,-0.16719398,-0.13251017,0.18407904,-0.32171613,-0.07660735,-0.13473013,-0.39628592,-0.6447005,-0.6435012,0.05461363,-0.55886173,-0.13639781,-0.31381533,0.33168644,-0.19886716,-0.11510007,-0.06754832,0.4524217,-0.33528614,-0.080958076,0.31374192,-0.24688934,0.08993871,-0.57493293,-0.263681,0.0029670724,0.20840864,0.20015487,-0.2788773,0.3692817,0.37168318,0.37449142,0.07049433,-0.40123633,-0.25448963,-0.19667657,0.07909571,0.39090803,-0.27628234,-0.24776639,-0.30716133,0.016262028,0.4857343,0.26448783,0.17996074,-0.18198733,0.0043012714,-0.06485508,-0.14778624,0.3875793,0.43154627,-0.37152356,-0.10626396,0.2413209,0.21196182,0.1303952,-0.2558248,0.14712961,-0.17434669,-0.51358175,-0.19895561,0.05223844,-0.111302204,0.5338147,-0.101662144,0.105387755,0.7221308,0.02272289,-0.011420838,-0.015688866,-0.06460675,0.099897146,-0.30462962,-0.025092473,0.24360202,-0.4481895,-0.033859137,-0.12317287,0.7141573,-0.022085335,-0.8065594,0.243763,-0.44464442,0.16180946,0.015270404,0.61707497,0.7550488,0.46853128,0.19278547,0.88676834,-0.40389872,0.03657312,-0.058848433,-0.16342852,0.16678748,-0.17745006,0.038381346,-0.52020127,0.097175665,0.070194155,0.029381713,0.17158867,0.22259423,-0.45493788,-0.037029635,0.116085395,0.7525846,-0.26976356,-0.06552716,0.8546615,1.2420963,0.9135219,0.03146747,1.1979243,0.21094747,-0.0805304,-0.11801724,-0.13755953,-0.3104479,0.19601037,0.41436702,-0.06893333,0.43520293,0.070776924,-0.03997552,0.44340482,-0.10416593,-0.22504663,-0.025725726,0.37768152,0.011384637,-0.072340526,-0.66422325,-0.2776593,0.13425039,0.0956097,0.04561231,0.28632194,-0.25753906,0.44970068,-0.039821625,1.0281154,0.10783798,0.13268718,0.12887278,0.4125319,0.2227508,-0.13645752,0.12182988,0.2876556,0.031078683,0.10388357,-0.36307818,0.07925933,-0.36373347,-0.47225356,-0.12418043,-0.3920901,-0.1306595,-0.093701705,-0.34330466,-0.15508258,-0.025616646,-0.29804358,0.48566338,-2.5186696,-0.066678576,-0.21497594,0.25564054,-0.12204138,-0.31375942,-0.08721707,-0.28360334,0.42340496,0.36286497,0.37472534,-0.43582377,0.26573882,0.3427274,-0.48875874,-0.20130774,-0.48254848,0.114688024,-0.043556206,0.5037908,-0.03889999,-0.22297536,-0.15630887,0.30085474,0.7532129,0.08764868,0.028389396,0.21371447,0.34227318,-0.27844244,0.42067796,-0.00032961793,0.58492917,-0.17482163,-0.20494021,0.27591679,-0.51611763,0.5534872,0.12768319,0.23465285,0.37446856,-0.42803216,-0.80018455,-0.48807845,-0.36990476,1.2334032,-0.24651249,-0.5492699,0.27647513,-0.06696444,-0.23574074,0.022400836,0.46498778,-0.08686755,0.29768386,-0.5107091,0.07566489,-0.20561025,0.2551084,-0.14917208,0.026996106,-0.34747306,0.75916386,-0.20139481,0.36184898,0.27965266,0.2587859,-0.39251813,-0.46248785,-0.00062117405,0.8820157,0.5897856,0.0011616817,-0.01449268,-0.24686338,-0.07247208,-0.28343892,0.24369271,0.7684722,0.6689487,-0.028470367,0.01776134,0.29669803,-0.1771908,-0.05927995,0.022606883,-0.25295645,-0.028330097,0.1479921,0.7381468,0.6788314,-0.09126059,0.38137606,0.038377967,0.41547376,-0.25646842,-0.5258856,0.36826798,0.86171156,-0.14980848,-0.2617584,0.8748049,0.4735578,-0.18975875,0.28562975,-0.50563365,-0.39386755,0.6048236,0.0069449884,-0.49674922,0.039102547,-0.39021352,-0.03532421,-0.7983923,0.3727159,-0.110652864,-0.7619904,-0.5558642,-0.15601192,-3.2972407,0.1681031,-0.27336723,0.029066894,-0.13068528,-0.1534277,0.36525846,-0.706623,-0.5163268,-0.02005891,0.11188401,0.5331453,-0.18172576,0.14188318,-0.19357589,-0.32742268,-0.05818977,0.43740278,0.05760299,0.23586027,-0.21566309,-0.15058982,0.023377316,-0.3022321,-0.6303316,0.036283366,-0.6506597,-0.729674,-0.21439394,-0.46884826,-0.11143189,0.84903634,-0.58449554,-0.06405207,-0.31696215,-0.026369479,-0.09493601,0.17931613,0.2604839,0.3296097,0.19660306,0.053735085,-0.15075372,-0.38339362,0.16012652,0.119295515,0.5658425,0.46575123,-0.11259598,0.25933078,0.48949122,0.6271392,-0.11027576,0.73129666,0.1185903,-0.0894347,0.28396723,-0.20705141,-0.42629114,-0.6871347,-0.3799279,-0.03394482,-0.38887522,-0.3335246,-0.21169575,-0.38522062,-0.8304677,0.57918125,0.12357118,0.12994401,-0.41480353,0.21263643,0.3944376,-0.32134268,-0.09994054,-0.059112128,-0.18283723,-0.645781,-0.40129778,-0.6409355,-0.66283196,-0.05716935,1.1137425,-0.05721413,-0.11162109,0.09545263,-0.33919355,0.03663728,-0.012447314,0.18139544,-0.057038333,0.1835015,0.025290677,-0.75006866,0.60714626,-0.21669292,0.007195511,-0.4862915,0.14789245,0.71897507,-0.44122034,0.60175765,0.48551604,0.39052418,0.0125601245,-0.6634955,-0.33902413,0.051779747,-0.22241199,0.6066739,0.30665687,-0.625621,0.50584495,0.14262639,-0.1643522,-0.57932806,0.3724994,-0.1464694,-0.16064975,0.09635686,0.38582513,0.11340018,-0.066279694,0.0113713145,0.3307608,-0.48654127,0.20990641,0.41975638,-0.00928121,0.3062036,-0.043603636,-0.27676737,-0.7697458,0.08429607,-0.42456654,-0.2770482,0.0699525,0.030893052,-0.16175544,0.09374856,-0.024266055,0.41968852,-0.3431253,0.30463454,-0.18204758,-0.36214325,0.37401482,0.6475478,0.45126715,-0.5172917,0.5340859,0.18654363,0.06993761,-0.122361064,0.12285026,0.4751399,0.17712593,0.28330112,-0.19497715,-0.012479348,0.0686715,0.6060991,0.08899815,0.3007526,0.1622198,-0.11688489,0.43676415,0.00020870566,0.046800874,0.040898733,-0.49855325,0.017228002,-0.15447637,0.079761796,0.37104908,0.13347627,0.36754078,-0.0009015926,-0.111248076,0.2427757,0.030907746,-0.0071847057,-1.3838586,0.4497432,0.13681887,0.8019248,0.4179022,0.18534152,-0.2116876,0.66874564,-0.23965272,-0.07706713,0.45305473,0.14387532,-0.21364713,0.6114849,-0.67717904,0.38504145,-0.29681012,-0.109009966,0.116804905,0.16454902,0.3924515,0.80779344,-0.2266028,0.112838104,-0.11247236,-0.24855475,0.027744263,-0.36145067,0.26457468,-0.35082617,-0.5305446,0.62616074,0.17812137,0.40988848,-0.34517065,-0.0052751983,0.20987906,-0.20938015,0.18272927,-0.11820065,-0.11269791,-0.14407538,-0.49699932,-0.42932886,0.54040545,-0.24099824,0.05327305,0.07097836,-0.20124064,0.067835145,0.019103298,-0.20566998,0.060754802,-0.6360494,0.00227264,-0.41333655,-0.6708646,0.34645638,-0.6274948,0.19309212,0.13076918,0.059314694,-0.1380311,0.23423402,0.24305058,0.77107,0.09579694,-0.13435028,-0.15620455,-0.06303508,0.121335484,-0.28105745,-0.0935699,-0.33450332,0.29238662,-0.6002428,0.55841786,-0.34915528,-0.24875002,-0.13345765,-0.12584163,0.03678279,0.16898474,-0.30620793,-0.21279188,0.10229671,-0.017366653,-0.1275305,-0.0871004,-0.2837357,0.31183863,-0.12974533,-0.14102098,0.13274753,-0.13283165,-0.109786086,0.15860991,-0.0264729,0.28491458,0.22948885,-0.18633212,-0.2920021,0.09555389,-0.05761424,0.34426388,0.048409052,0.014480948,-0.2977375,-0.32457498,-0.33302802,0.38818425,-0.09326086,0.15840377,0.06623516,-0.39875096,0.8406442,0.046868075,1.2885851,0.013869093,-0.50262314,0.03693186,0.47820452,-0.16091429,0.14195606,-0.25685564,1.0902132,0.5872722,-0.24413228,-0.09223025,-0.4906756,-0.04171447,0.4096827,-0.30299383,-0.29689154,-0.10905414,-0.6638068,-0.20134766,0.07816265,0.22578993,0.0052257,-0.07839232,-0.18113841,0.19626144,0.16984311,0.39130405,-0.42969173,-0.06859492,0.44554538,0.27924007,-0.012489651,0.12765788,-0.25195262,0.38708276,-0.6862221,0.2897728,-0.4735641,0.09038092,-0.1544557,-0.4068283,0.1862262,-0.13676919,0.45139512,-0.27716127,-0.14272052,-0.1308757,0.59649915,0.1818894,0.1682862,0.5990036,-0.29943022,-0.15510663,0.051951595,0.47618356,1.4761783,-0.21341547,0.012148527,0.114128776,-0.38165173,-0.44956014,0.14682534,-0.49676487,-0.22834863,-0.17022362,-0.48734304,-0.3027986,0.30221817,0.24745859,0.06214301,0.12873173,-0.47715718,-0.1839291,0.23062985,-0.3127378,-0.275688,-0.31040817,0.3448081,0.52379805,-0.2217944,-0.42979383,0.009059812,0.26541087,-0.17110302,-0.64659107,0.14548846,-0.22394927,0.29309708,-0.017304914,-0.42153072,-0.043336753,0.16247027,-0.34916377,0.12701957,0.3242567,-0.23617165,0.04440469,-0.10314875,0.05370915,0.823427,0.20567624,0.13880394,-0.74750966,-0.6047792,-0.91289234,-0.4863657,-0.08646619,0.20524012,-0.1166686,-0.414597,-0.13803996,-0.20508061,0.091019034,0.010604024,-0.56413615,0.30667582,0.18745664,0.46422973,-0.22490914,-0.84913987,0.09391794,0.26175347,-0.025208225,-0.4017362,0.5418509,-0.19290331,0.6732927,0.07493629,-0.017488552,0.030149085,-0.59983796,0.45629042,-0.18261221,-0.30249766,-0.67284673,0.18155703,670 -503,0.44046044,-0.29110917,-0.4267766,-0.14219251,-0.09561845,-0.16349983,-0.173247,0.64350986,0.28522238,-0.44105414,-0.1159506,-0.049836975,-0.018380847,0.35157928,-0.12730265,-0.43810573,0.03882112,0.121883206,-0.17970899,0.66299,-0.35083652,0.19364922,-0.21824649,0.5679577,0.20846036,0.27953717,0.10849112,0.0011238073,-0.1888876,-0.05986982,0.115017116,0.3493219,-0.3733841,0.19029331,-0.16773467,-0.2532945,0.003996206,-0.46675518,-0.45584106,-0.7485336,0.3894504,-0.77343696,0.4187909,0.119621836,-0.25500104,0.4189015,-0.058617763,0.18718441,-0.29997903,-0.16723733,0.060718063,-0.035353553,0.032508843,-0.1410983,-0.06650787,-0.1532065,-0.5425745,0.076955244,-0.35668355,-0.1180393,-0.2979662,0.14929068,-0.34596065,-0.15894018,0.04892203,0.58600837,-0.5074622,-0.102672115,0.1567227,-0.06725731,0.31424162,-0.60796124,-0.2976081,-0.1803103,0.29397148,-0.17203522,-0.13503793,0.30629784,0.22677603,0.38884306,-0.08976736,-0.084281765,-0.40876314,-0.08799795,0.11059018,0.4857913,-0.12087642,-0.68833,-0.07384696,-0.072248034,0.09352688,0.10106533,0.1227191,-0.20603882,-0.11610738,0.020598957,-0.21326588,0.42278025,0.5485653,-0.090976365,-0.24501522,0.33817878,0.48977032,0.19403593,-0.15873425,-0.060917657,0.11647322,-0.39938784,-0.13370405,-0.07893453,-0.19243695,0.58918995,-0.14488614,0.21939842,0.62934536,-0.14528635,-0.060184173,0.058693383,0.0931709,-0.1278095,-0.3145233,-0.31353116,0.2832991,-0.35117054,0.25508022,-0.1225226,0.7022743,0.17880277,-0.7808699,0.38460547,-0.45656863,0.10645489,-0.21857023,0.55382365,0.7953772,0.345318,0.5043572,0.5974523,-0.47501877,0.036599692,0.13282838,-0.3996706,0.07742022,-0.32042265,-0.10028051,-0.4157277,0.039182477,0.14327672,-0.10691905,0.104383744,0.2043546,-0.45725542,-0.051308963,0.27230182,0.73034096,-0.16908923,-0.01004102,0.83670014,1.082185,1.0637001,0.023662379,1.0444367,0.3106158,-0.20410047,0.33778387,-0.29873398,-0.8461223,0.23302996,0.2995243,-0.029351745,0.15857743,0.10374887,-0.041550547,0.44005245,-0.50425017,-0.010195347,-0.18174182,0.14794554,0.15375338,-0.1330529,-0.61344284,-0.22159824,-0.15748204,0.026407957,0.06290536,0.40156764,-0.20927116,0.4246618,0.006211051,1.4148647,-0.050365068,0.07406262,-0.0049744737,0.7990307,0.17476125,-0.1851686,-0.016164051,0.31275153,0.32313347,0.031181386,-0.66766137,0.08997668,-0.20542575,-0.4668878,-0.20998737,-0.39224812,0.097998865,0.055453487,-0.41458112,-0.14245228,-0.1393074,-0.28262845,0.4114964,-2.9853294,-0.26717192,-0.09219164,0.28019315,-0.23527884,-0.19069448,-0.009552153,-0.4704681,0.37638667,0.4151234,0.5236804,-0.668112,0.19576988,0.54554003,-0.54397035,0.01979919,-0.55054647,-0.13134554,-0.12259146,0.5172587,0.050069936,0.022781143,0.042395327,0.26889616,0.46394497,0.15443175,0.16289236,0.09518584,0.25758162,0.018067818,0.24061532,-0.070720315,0.48698118,-0.29005414,-0.18373731,0.27146798,-0.37027964,0.22059122,-0.3087547,0.17230831,0.49562907,-0.3647552,-0.90913963,-0.53607523,-0.09349738,1.0393301,-0.087547764,-0.48331377,0.33570358,-0.45424822,-0.21899389,-0.09996389,0.5012735,-0.09751449,-0.034587365,-0.81001997,0.09298416,-0.17146952,0.034683563,0.047736544,-0.016112585,-0.43337828,0.693191,0.078390755,0.4163572,0.3784832,0.19781674,-0.30229142,-0.59037006,0.0047860825,0.6967222,0.3985359,0.16453423,-0.32758325,-0.14589965,-0.20294826,-0.11349722,0.08422263,0.42089504,0.6294292,-0.059225615,0.2097858,0.25338113,-0.073529735,0.11342839,-0.096647486,-0.2769913,-0.13745332,0.12951544,0.6268201,0.82547367,-0.2662341,0.34765682,-0.07045849,0.16946961,-0.18190704,-0.39570814,0.728679,0.9425077,-0.10823231,-0.23980798,0.6102275,0.50232387,-0.40061864,0.5246071,-0.6033534,-0.08512851,0.37505075,-0.14357837,-0.38822916,0.1065716,-0.27298325,0.26268178,-0.91793126,0.2413326,-0.20410885,-0.35357028,-0.7215017,-0.046721675,-3.4882202,0.046515077,-0.24630366,-0.26131013,-0.11201155,-0.17112,0.3005549,-0.6689952,-0.6087254,0.30290884,0.095468745,0.7226361,-0.03578031,0.08579975,-0.28798813,-0.24867246,-0.43099287,0.05719349,0.12868747,0.3459744,0.16043076,-0.57587916,-0.089510284,-0.16292529,-0.42889994,0.0035609624,-0.42028818,-0.30726096,-0.23915245,-0.55725867,-0.2558622,0.59947795,-0.11490501,0.021685,-0.2073747,-0.08734834,-0.23519656,0.36537594,0.06266977,0.1045663,0.034117587,-0.06789278,0.08206914,-0.2560534,0.20172028,-0.039419584,0.16341008,0.31118488,-0.24541077,0.15313528,0.5797551,0.690938,-0.22906287,0.9473525,0.6371667,-0.12049203,0.3036316,-0.2905585,-0.31923562,-0.4983771,-0.39149597,-0.033757456,-0.35046116,-0.55174565,-0.04048052,-0.49823958,-0.7387258,0.56357986,-0.110371314,0.36176282,0.09845315,-0.00844901,0.4639509,-0.2074144,-0.02336901,-0.01803408,-0.019889269,-0.56672543,-0.2138416,-0.6106567,-0.5536556,0.17840281,0.7639889,-0.18750553,-0.1373559,0.123823486,-0.27893776,-0.025626944,0.1278191,-0.030453432,0.15471248,0.32782936,-0.0033025166,-0.674182,0.57112485,0.09124271,-0.047669,-0.58795464,0.09311756,0.51674575,-0.60176784,0.5891458,0.32760796,-0.061436873,-0.21481276,-0.53507704,-0.345516,-0.05897895,-0.1425,0.534197,0.42038158,-0.86408854,0.4966832,0.28854156,-0.2682869,-0.7346254,0.56374407,-0.06463964,-0.17932813,-0.077868216,0.20445715,0.04629922,0.05941059,-0.26108187,0.26561755,-0.30624261,0.09780777,0.26930296,-0.08077905,0.38089594,-0.17493077,0.061030917,-0.67148125,-0.030726543,-0.5745052,-0.16412546,0.172094,0.1636748,0.17319655,0.11776621,0.078458205,0.3306385,-0.28641286,0.053853847,-0.035292685,-0.24785818,0.22872424,0.46277615,0.5711383,-0.4101465,0.5881523,0.051250286,-0.085140534,-0.101711325,0.03917731,0.27630132,0.059495043,0.38444248,0.09159387,-0.27343723,0.12947682,0.7621164,0.28982347,0.49038908,-0.011789339,-0.1448188,0.38134032,0.15760885,0.2907224,0.04822255,-0.45825866,0.011724055,-0.34498483,0.17024972,0.44318792,0.10302048,0.40348864,-0.16862242,-0.39126793,0.09873467,0.1457098,0.049398106,-1.2870777,0.34828928,0.23182604,0.8802638,0.6376712,-0.014529049,0.08058976,0.87569195,-0.10669499,0.14918093,0.436088,-0.07256419,-0.6239754,0.56462187,-0.7239656,0.40154886,0.049477678,-0.05154112,0.024315566,-0.085327506,0.4080343,0.47026512,-0.16577248,0.0821629,0.038128596,-0.31976765,0.25797996,-0.36814234,0.112156734,-0.46657938,-0.13040327,0.5450414,0.59435713,0.25887483,-0.118301995,0.0295937,0.07584129,-0.03503143,-0.02833494,0.09787892,0.08624719,-0.098013006,-0.6104743,-0.17072923,0.5221563,-0.0110299075,0.08389993,-0.08417004,-0.18563978,0.2641715,-0.16441986,-0.17466083,0.030690312,-0.7334999,0.057445433,-0.09377678,-0.40743202,0.754838,-0.17310688,0.36574984,0.16592145,0.13668127,-0.26964238,0.2570692,0.06558644,0.67403644,-0.09531547,-0.09677424,-0.38284105,-0.061868336,0.2886537,-0.14294986,-0.22998883,-0.31270787,-0.110597946,-0.46484208,0.42395815,-0.032860663,-0.11003693,-0.034852643,-0.025586942,0.14201073,0.5396722,-0.11781267,-0.17198743,-0.14120932,-0.08119903,-0.34057012,-0.20909892,-0.13847211,0.30691168,0.22360691,-0.08485126,-0.14557867,-0.13678768,-0.14673528,0.5036672,0.038402338,0.3051876,0.3080099,0.011121482,-0.2635265,-0.21190824,0.18303987,0.3924539,-0.021504058,-0.20205809,-0.24445336,-0.42779416,-0.35943276,0.21368542,-0.013032397,0.26787803,0.011829035,-0.23029558,0.5751547,0.057533205,1.0324389,0.06936453,-0.4952505,0.22573936,0.44364187,-0.1027347,0.02588089,-0.33352342,0.82170546,0.4461829,-0.22789939,-0.21817677,-0.4230859,0.054057445,0.15599848,-0.21143813,-0.09946804,0.004939735,-0.6940784,-0.09887479,0.35886434,0.31635112,0.23171219,-0.07491483,0.069525905,0.20394434,0.06440225,0.38163492,-0.42580175,-0.18269384,0.3816285,0.24642947,0.12814926,0.024836907,-0.35554108,0.34638518,-0.49380186,-0.017069787,-0.3024508,0.26497048,-0.36452124,-0.47471428,0.22557984,0.08678688,0.47200802,-0.21317562,-0.3786075,-0.29594716,0.5008522,0.07077675,0.14503457,0.34402508,-0.2715354,0.056743868,-0.007175352,0.38368955,0.8679281,-0.24346079,-0.06873505,0.30139777,-0.23697533,-0.7445899,0.36588818,-0.34848288,0.38836828,-0.06977817,-0.17735036,-0.7283286,0.19618228,0.24949591,0.036449518,0.049538482,-0.5162032,-0.36064744,0.21116886,-0.23108125,-0.18566868,-0.26698175,-0.13227858,0.5783127,-0.32249492,-0.40240023,0.13406265,0.18658295,-0.15360317,-0.5568817,-0.024497923,-0.34089893,0.26213685,0.11761583,-0.40546733,-0.1740381,0.1591263,-0.4333193,0.22953963,0.20248897,-0.352289,0.015017997,-0.42008987,-0.012883469,1.0619782,-0.25311792,0.23144385,-0.48272985,-0.43347555,-0.92424124,-0.47396532,0.638452,0.1205922,0.02353825,-0.677409,0.13991244,-0.15177925,-0.0038473574,-0.048250657,-0.30422014,0.42340016,0.14160475,0.33017507,0.038364027,-0.6558835,0.029153304,0.100159764,-0.12916984,-0.55697006,0.50614977,-0.013013567,0.9733617,0.12134205,0.21194312,0.15088664,-0.3475377,-0.08627897,-0.23677455,-0.31634548,-0.55788386,0.061529603,672 -504,0.3390344,-0.24102785,-0.54592836,-0.12514636,-0.17472938,0.1385032,-0.28932714,0.17836931,-0.19284895,-0.6097832,-0.04203561,-0.21592392,-0.14606963,0.2462906,-0.24863802,-0.2097988,0.033318046,0.111535296,-0.40375808,0.44832346,-0.5702093,0.279468,0.22776058,0.1631328,0.016763167,0.023716053,0.41188234,0.10185744,-0.19946285,-0.41703388,0.058632065,0.1091254,-0.5978436,0.2885422,-0.21248344,-0.5235602,-0.005592242,-0.28238598,-0.2494764,-0.6895765,0.2910041,-0.9504343,0.53278047,-0.0075900084,-0.32046506,0.33074087,0.3118092,0.22219793,-0.015381313,0.007379417,0.12963027,-0.31997964,-0.13301043,-0.17844924,-0.005451594,-0.30043608,-0.5925702,0.06033815,-0.5701045,-0.2022398,-0.22711262,0.32158566,-0.3649513,0.11762786,-0.20784755,0.4385347,-0.43034413,-0.20152135,0.025773976,-0.122306995,0.39190295,-0.6500236,-0.11232434,-0.1107275,0.031269126,-0.36713788,-0.088031895,0.20484729,0.19189999,0.5444228,-0.07547128,-0.20868409,-0.13640407,-0.20279564,0.06671076,0.45292684,-0.08640312,-0.29606327,-0.17122982,-0.11048518,0.32115704,0.15657486,0.05202267,-0.24696873,-0.03614485,-0.05383346,-0.2895895,0.266637,0.45789608,-0.35293797,-0.14309561,0.29998925,0.6254905,-0.07962345,-0.10794793,0.088842936,-0.02750676,-0.45360637,-0.12648189,0.20300779,-0.07789622,0.5072061,-0.17040071,0.4474006,0.4544395,-0.27854124,0.0787856,0.18777673,0.06253521,-0.12618445,-0.22956453,-0.26661715,0.33452657,-0.5932906,-0.06144802,-0.32841745,0.8185256,-0.14491911,-0.6778409,0.31182724,-0.3916134,0.072442316,-0.07287841,0.69920844,0.47333077,0.47922176,0.21814802,0.64052093,-0.5083878,-0.088054895,-0.12880234,-0.2848674,0.07045633,-0.14628589,-0.15394977,-0.46500507,0.0685461,0.16352174,0.1453209,-0.22463252,0.51645666,-0.44533896,-0.055706408,0.104894,0.60845625,-0.33979708,0.04197678,0.74559987,1.2315131,0.9914818,0.19346774,1.045365,0.20928948,-0.12159594,-0.11113645,0.14500631,-0.61118287,0.24965961,0.40452555,0.30987826,0.2723969,0.020111501,-0.08316916,0.34434208,-0.44820514,-0.05544836,-0.16691026,0.36163187,-0.027950678,-0.028815577,-0.4624373,-0.17016576,0.17180757,0.08129644,0.08416467,0.217317,-0.15827115,0.46248397,0.12065121,1.2880744,-0.3327033,0.14750938,0.17549837,0.3485581,0.14128684,-0.041411962,-0.021224814,0.016159454,0.33522585,0.19867352,-0.4800469,0.08179369,-0.03199875,-0.67394215,-0.18441097,-0.25114185,0.0065033096,-0.36505386,-0.45257622,-0.08942884,0.034442294,-0.53870004,0.33534092,-2.7994182,-0.12156941,-0.20541203,0.22742666,-0.16934986,-0.28494978,0.083897606,-0.3516379,0.6877166,0.5568472,0.3531359,-0.64460546,0.42273286,0.37474087,-0.2116436,-0.12903306,-0.76450884,-0.11827135,-0.16551761,0.46244884,0.19863895,-0.31076628,-0.011645743,0.23131481,0.48373896,-0.25699973,0.1041054,0.22938149,0.22170578,-0.0020070374,0.47057357,0.20291713,0.36894968,-0.42443445,-0.13880686,0.50816804,-0.40990463,0.07230585,-0.02211796,0.23303308,0.33859238,-0.4951413,-0.7241093,-0.66373765,-0.33031029,1.3293947,-0.19520216,-0.6075367,0.17813227,-0.0039805346,-0.26648983,-0.014556655,0.26961723,-0.18929055,0.17106903,-0.8291535,-0.017286394,-0.1104623,0.38574633,-0.12531279,0.053717796,-0.59072465,0.5572632,-0.19908687,0.56214654,0.62583965,0.21266893,-0.5622319,-0.52205837,0.050978024,1.1036714,0.50188875,0.038643416,-0.21754079,-0.15509783,-0.17329288,-0.077998504,0.25491932,0.4039177,0.8788271,0.11240273,0.2273136,0.28250092,-0.09034339,0.044798028,-0.053513058,-0.37212446,-0.093648806,0.2184746,0.62776214,0.33395058,0.060609728,0.38336286,-0.15573081,0.32936552,-0.29583725,-0.42320102,0.37795863,0.662741,-0.13913727,-0.32792854,0.5519692,0.67438316,-0.21630304,0.53122175,-0.6249666,-0.45258564,0.31798056,-0.111272044,-0.41521832,0.23671147,-0.4019268,0.26145738,-0.92800206,0.40417957,-0.46734577,-0.57080495,-0.6911196,-0.27043298,-3.4815395,0.17468958,-0.12658569,-0.19795653,-0.017390981,-0.2815284,0.50624734,-0.4904919,-0.5576585,-0.046080004,0.006587959,0.62812144,0.10745361,-0.057329442,-0.3384554,-0.051557235,-0.13388862,0.21600506,0.09348477,0.06190483,-0.17515208,-0.4580848,-0.016131299,-0.47261265,-0.43681675,-0.11413805,-0.52269703,-0.52390873,-0.2021015,-0.3606171,-0.48496947,0.63121307,-0.24524128,0.043634158,-0.2579175,-0.07007528,-0.12717324,0.422977,0.12930802,0.091212735,-0.051864453,-0.056907002,0.04105442,-0.3206785,0.119852066,0.05225564,0.1216708,0.4775618,-0.30630332,0.19200294,0.47091508,0.43621212,0.06848702,0.86719483,0.34849378,-0.10973918,0.28959203,-0.21783063,-0.30280238,-0.5696693,-0.23409653,0.058385886,-0.42714757,-0.34233838,0.05659819,-0.20733924,-0.7668613,0.70418113,-0.07401681,0.042520374,-0.10294461,0.39519888,0.23255464,-0.08399362,-0.14135072,-0.1674186,-0.11900461,-0.46384373,-0.42903295,-0.9195805,-0.55692023,-0.29826054,1.0510174,-0.0061639654,-0.0492598,0.1099842,0.06764733,0.12411262,0.13928273,0.06077535,0.24753849,0.29775813,-0.07240527,-0.7111886,0.5014776,-0.17806281,-0.011198993,-0.3487626,0.06396266,0.66725606,-0.5078306,0.17490618,0.56486756,0.24279203,-0.24023339,-0.5732101,-0.01359206,0.014752422,-0.24895878,0.5996313,0.28524905,-0.84042674,0.68018305,0.40507025,-0.15213516,-0.7298795,0.51691103,0.086349234,-0.1103956,0.060057033,0.41024742,-0.24468152,0.066192694,-0.2716781,0.19722077,-0.43933567,0.22045276,0.23372473,0.019133972,0.5323232,-0.2898977,-0.17460783,-0.4360575,-0.013564774,-0.53214914,-0.147135,0.051977877,-0.13281499,-0.04904294,0.4500153,-0.22209825,0.4841487,-0.3015113,0.057230413,-0.04208895,-0.3785081,0.4404948,0.6011147,0.304736,-0.30338874,0.6981603,0.015347115,-0.09030168,-0.49499062,-0.03510183,0.4804981,0.15920778,0.34451532,-0.155,0.050962713,0.46866664,0.76840764,0.39467812,0.515158,0.060674954,-0.12510657,0.12302731,0.12696627,0.33081517,0.007960984,-0.33295974,-0.08464755,-0.11488806,0.19889078,0.39873955,-0.015680363,0.4835408,-0.16048078,-0.17625438,0.08129897,0.0675829,-0.2911807,-1.2071457,0.49182197,0.17585638,0.6020903,0.54922426,0.029777065,0.24658073,0.58341473,-0.3708165,0.06858394,0.22461009,0.14381497,-0.39687297,0.70447963,-0.7427526,0.407609,-0.021335747,0.07790675,-0.07232134,-0.18692072,0.4755647,0.6808923,-0.0045940303,0.21865283,-0.08890456,-0.31102046,0.25553337,-0.34981316,0.2499955,-0.19257845,-0.20826702,0.78689873,0.34296325,0.39719433,-0.16405642,-0.094003536,0.26689187,-0.056921426,0.31316572,0.050758403,0.14679101,-0.24865028,-0.5086914,-0.18271463,0.5597533,0.2595223,0.100034036,0.042195383,-0.3111139,0.24934582,-0.049544085,-0.024555316,0.013015238,-0.48954153,0.16843523,-0.35839915,-0.3462934,0.33279434,-0.6022228,0.18557023,0.1198662,0.0016377823,-0.36506864,-0.08480025,0.279975,0.49323335,-0.008431579,-0.16764878,-0.037596192,-0.09858203,0.19204892,-0.2798231,-0.21242373,-0.29229906,0.113968134,-0.6506907,0.36349502,-0.18125196,-0.23757567,0.38629183,-0.15014586,-0.10596197,0.3985853,-0.049426463,-0.07892721,0.23290493,-0.0026524153,-0.14689311,-0.25277668,-0.19275333,0.22520241,0.010192611,0.04593013,-0.006958208,0.07958969,-0.15056525,0.48196343,0.07289599,0.3118345,0.36580148,0.09296378,-0.50791794,-0.029063037,-0.20174117,0.54623574,-0.015181167,0.012585214,-0.23658751,-0.37846184,-0.15842523,0.16594175,-0.1596109,0.23237409,-0.042417794,-0.39268917,0.9879132,0.01490587,1.0276192,0.03536987,-0.51409966,-0.12010793,0.49520272,-0.104753666,-0.12553671,-0.30130553,0.97690386,0.4662209,-0.08579748,-0.15168977,-0.3503829,-0.020226171,0.18306856,-0.16344038,-0.281394,-0.14243726,-0.6873649,-0.30217698,0.27882147,0.427144,-0.14586833,-0.10870349,0.12589455,0.34011966,-0.018387983,0.27526644,-0.46080175,0.19295467,0.48246124,0.18502744,-0.089261055,-0.07234083,-0.40024614,0.30592546,-0.7347153,0.08306636,-0.2810769,0.074603595,0.07949293,-0.22784428,0.22427575,-0.029582402,0.2342015,-0.19475934,-0.20996201,0.033792265,0.40971595,0.19530031,0.13970916,0.688919,-0.20643954,0.2750595,0.06655661,0.36823827,1.1724857,-0.30232844,-0.03485509,0.116282165,-0.35518023,-0.6042105,0.2199754,-0.34008855,0.20237373,-0.02772659,-0.42014378,-0.4005127,0.282836,0.32681245,0.007682649,-0.0311355,-0.5117463,-0.17711642,0.24646099,-0.27152577,-0.24800839,-0.44212732,-0.04076916,0.5171885,-0.18814087,-0.22558863,-0.011972998,0.48258516,-0.40168473,-0.60118836,0.047672216,-0.40348843,0.3000929,0.030863816,-0.27496555,0.037601504,0.10024423,-0.41725573,0.2111344,0.32437465,-0.29744557,-0.009232319,-0.24572252,0.08573707,0.7615596,-0.1137555,-0.13685903,-0.6450318,-0.54886776,-0.8035897,-0.25742683,0.44336668,0.17104737,0.14087838,-0.5119814,-0.01794121,-0.18511932,-0.057722133,0.02243833,-0.33495235,0.3567869,0.15176506,0.4323379,-0.0055313194,-0.58752215,0.086714186,0.06796684,0.032538958,-0.30125254,0.64087516,0.06760678,0.5132208,0.112641,0.092077896,0.3226212,-0.5714008,0.31910402,-0.049597017,-0.2780855,-0.69560915,-0.016072124,679 -505,0.4224083,-0.3473208,-0.34345976,-0.11824502,-0.1809943,0.05566901,-0.05471024,0.7405377,0.23766991,-0.25902516,-0.021817148,-0.011143779,-0.034596574,0.44553286,-0.12135152,-0.50050455,-0.056239676,0.2607985,-0.2850822,0.6374723,-0.31602177,0.14614998,-0.26303652,0.4879341,0.14426555,0.28995284,0.024602788,-0.0010106222,-0.37028337,-0.12347162,0.014832752,0.36397633,-0.4042028,0.27127036,-0.2251399,-0.25051966,0.02587596,-0.5279699,-0.41482073,-0.5669761,-0.0042380816,-0.6436431,0.41935435,0.059871696,-0.31786343,0.36445373,-0.030015392,0.2231152,-0.31419662,-0.15751448,0.057018,-0.019843826,-0.0054655224,-0.300196,-0.19802025,-0.38224822,-0.531318,0.08607707,-0.32883453,0.046302114,-0.0754552,0.082391106,-0.26652533,-0.1789907,0.005838028,0.52432317,-0.36273065,0.119303055,0.12977849,-0.11360519,-0.0366542,-0.41841292,-0.21523859,-0.14915779,0.18125667,-0.067415774,-0.22947574,0.3155716,0.18313047,0.3580348,-0.22290036,-0.14599366,-0.39456126,-0.041422196,0.070388414,0.5338239,-0.19432804,-0.63569343,-0.059266213,0.053806126,0.15178216,-0.010151361,0.16314067,-0.045587473,-0.09374343,-0.08320023,-0.26027575,0.28371137,0.4509625,-0.406772,-0.32134992,0.41049632,0.45745018,0.124203436,-0.23257677,-0.21680912,0.081951804,-0.5025572,-0.15429778,0.034842875,-0.13008772,0.46994844,-0.12512615,0.15960236,0.5312218,-0.17352836,-0.08501339,0.04843408,0.21375594,-0.023236854,-0.35567686,-0.42298597,0.23225321,-0.3044948,-0.052553337,-0.12374053,0.7151669,0.22244827,-0.6659196,0.43720964,-0.42325482,0.079730034,-0.05584648,0.31935447,0.5304419,0.5443101,0.38118964,0.44947582,-0.20738521,0.1415823,-0.017288607,-0.28900653,0.042886507,-0.29502863,-0.09104991,-0.5098561,0.2289336,0.0031480703,-0.14114669,0.27525604,0.21366973,-0.5037733,-0.2607614,0.27209476,0.8639714,-0.21531154,-0.19588658,0.6635305,0.9465021,0.9001082,-0.036566567,0.8924336,0.2954128,-0.24191757,0.22549927,-0.34318373,-0.7184406,0.15524223,0.31951395,-0.36216754,0.3874465,0.00622837,-0.093231134,0.30410337,-0.18655284,0.019538447,-0.15852557,0.17514353,0.13979614,-0.025857458,-0.54428405,-0.45303792,-0.22217189,-0.12998118,0.13032874,0.3702578,-0.19066116,0.37679943,0.0019469319,1.6496751,0.16875036,0.045763463,-0.016207043,0.687399,0.26507214,-0.2335714,-0.13339022,0.45058462,0.24986891,0.08269738,-0.43869632,0.18819873,-0.23699127,-0.4504202,-0.10046547,-0.34823066,-0.01423872,0.030809466,-0.34273598,-0.16667642,-0.0021016342,0.012526789,0.50236005,-2.924049,-0.12564091,-0.041778836,0.42070058,-0.2815099,-0.31075224,-0.19699681,-0.36453447,0.24634399,0.29266495,0.5154336,-0.5576435,0.27244663,0.29445982,-0.60709274,-0.058668826,-0.46642372,-0.17266835,-0.065904476,0.3636143,-0.04826471,0.19152975,0.18182328,0.12672076,0.46224442,-0.09140404,0.13949075,0.18922374,0.30271262,0.088286206,0.3028119,-0.03493379,0.5236792,-0.3830698,-0.16551228,0.145772,-0.54978716,0.39602533,0.12619261,0.10740823,0.49306598,-0.38665432,-0.896833,-0.4716106,0.12280041,1.1293143,-0.18299487,-0.2578094,0.09211177,-0.3524742,-0.30568457,-0.12103437,0.3007013,-0.08831519,-0.12644081,-0.6764097,0.035160728,-0.017643008,0.15003729,-0.027845593,-0.041491773,-0.24180725,0.47000816,0.00627222,0.5300006,0.24013035,0.09680806,-0.30179474,-0.3710398,-0.051210616,0.75813514,0.25690326,0.22021832,-0.27675068,-0.2701056,-0.24744976,0.11703943,0.06299867,0.40347257,0.43646914,-0.15424904,0.14406133,0.31342712,0.0073154187,0.19975974,-0.102185264,-0.21691416,-0.21836455,0.14470069,0.49783424,0.68744653,-0.2950477,0.4431978,-0.03940795,0.27741444,-0.117770955,-0.369268,0.41879353,0.9011742,-0.1865768,-0.22670926,0.5523334,0.5405075,-0.32025614,0.40473494,-0.42507145,-0.11814989,0.36127087,-0.23788516,-0.24517687,0.22426395,-0.27020484,0.12751919,-0.80985403,0.34108847,-0.20508525,-0.364685,-0.6184521,-0.061267886,-3.148106,0.2117954,-0.072888635,-0.24123037,-0.012234085,-0.10802021,0.07316866,-0.5971519,-0.4485251,0.3290372,0.17458978,0.6023164,-0.048082747,0.10797346,-0.30038986,-0.45523438,-0.3326287,0.16470985,0.14907035,0.4054904,-0.026048448,-0.5006622,-0.15285079,-0.19021717,-0.27196202,0.13474464,-0.73214406,-0.29113325,-0.09709669,-0.6326365,-0.2389259,0.6646031,-0.15344565,0.025734525,-0.15756117,0.06479754,-0.1644279,0.159415,-0.039538555,0.091502175,0.00843209,-0.14462663,0.09953786,-0.27102724,0.25187454,0.0019795708,0.40018886,0.24342504,-0.065422386,0.07131083,0.662961,0.67648983,-0.12347057,0.8431403,0.48570427,-0.18308675,0.28379837,-0.24146366,-0.18875085,-0.40005776,-0.31813008,-0.027807755,-0.32698494,-0.44786587,0.006835282,-0.37789854,-0.74733406,0.63420373,-0.0746287,0.009731097,-0.041328184,0.26241365,0.4983122,-0.32179627,0.09503438,-0.019727316,-0.13294698,-0.47624508,-0.21141447,-0.4888017,-0.24460109,0.36109218,0.9012541,-0.32511336,0.029960405,-0.017238105,-0.31627247,-0.0844519,0.12664564,-0.048196964,0.18601656,0.40298653,-0.12974007,-0.4862154,0.38536754,-0.17972885,-0.15988481,-0.32954794,0.17721783,0.6281068,-0.5900008,0.75340146,0.3178466,-0.12621008,-0.20291089,-0.44129524,-0.33736476,-0.0013639672,0.013340418,0.30649194,0.2143015,-0.90819496,0.34152296,0.26846126,-0.48616585,-0.61982155,0.43574858,-0.16388942,-0.25174528,-0.22566521,0.30593967,0.16152641,-0.007547613,-0.20653388,0.2646887,-0.36940292,0.027489444,0.12242271,-0.06376515,0.08298719,-0.1779697,0.079221055,-0.74058515,-0.0603821,-0.35591474,-0.33904645,0.41833085,0.08166294,0.121432304,-0.03005745,0.09221564,0.2590806,-0.3724964,0.0047230464,0.009145098,-0.23967096,0.4332938,0.23944394,0.55935335,-0.40069586,0.46204942,0.017726023,-0.008978054,0.015078924,0.015319139,0.35079017,0.15656434,0.40752777,0.09506457,-0.19122693,0.21628454,0.7337141,0.1982642,0.4800509,0.06412788,-0.19888973,0.16362096,0.039750345,0.14600822,0.11231347,-0.3330095,0.030241897,-0.13153712,0.15498935,0.36739329,0.07226796,0.2976884,-0.14444801,-0.23303969,0.021000495,0.18640791,0.23045988,-1.0535192,0.30334112,0.17394662,0.7556812,0.32175085,0.1951113,-0.065159604,0.7726962,-0.1592335,0.16611502,0.32759076,-0.026224282,-0.5822968,0.50154287,-0.55967814,0.5573911,-0.04056373,0.0040322244,0.05073253,-0.06560454,0.52825147,0.6755065,-0.10155033,0.09546856,0.10434522,-0.37394664,0.09273029,-0.30974367,0.16060343,-0.5336464,-0.19165017,0.59444445,0.48833555,0.31946585,-0.107668675,0.039742786,0.11220066,-0.035956208,0.07087762,0.08185279,0.08612866,0.15649815,-0.72203857,0.0076960283,0.52962935,-0.08727664,0.09576756,0.0067932946,-0.25111714,0.33006737,-0.21322373,-0.053786617,-0.0033206749,-0.6495823,0.03556096,-0.21894458,-0.49053308,0.637403,-0.04396971,0.24317744,0.13333447,0.09332402,-0.2946182,0.48293978,0.08238179,0.80213964,-0.08471949,-0.15198123,-0.36795935,0.1736687,0.099391,-0.15316074,0.0988021,-0.4199777,-0.04179377,-0.4101719,0.2935634,0.105253525,-0.24549398,-0.19745634,-0.06595464,0.18983316,0.43325266,-0.032215457,-0.12245357,-0.31055036,-0.090344556,-0.42191833,-0.26354653,-0.06709329,0.3058689,0.30973807,-0.09925985,-0.0416982,-0.08868982,0.03612565,0.50229484,0.00451641,0.28866142,0.2776654,0.26344046,-0.14508447,-0.08180909,0.048599448,0.47173196,-0.06487109,-0.15952322,-0.37453836,-0.23549321,-0.39816383,0.16147205,-0.15371455,0.26038527,0.02988699,-0.23085944,0.68909854,-0.24254963,1.0753891,-0.07715338,-0.40185738,0.15682936,0.45385987,0.10368932,0.07513123,-0.38883114,1.0016758,0.362554,0.005317611,-0.11750939,-0.43813267,-0.12335718,0.08270727,-0.26884058,-0.26866242,0.030934887,-0.4590376,-0.14454173,0.21056744,0.081626125,0.42114845,-0.15395534,0.29778,0.2885807,0.16597304,0.18162373,-0.3881567,-0.05894753,0.25668478,0.38595408,0.052893158,0.12296469,-0.4100836,0.27897447,-0.43111134,0.21844646,-0.24652262,0.14694302,-0.26151133,-0.42712912,0.1602275,0.14176987,0.3333725,-0.43748775,-0.34178394,-0.24560454,0.49606612,0.1591051,0.1356545,0.42452773,-0.2928577,0.05009515,0.13609356,0.45539576,0.7799012,-0.32375926,-0.14515385,0.4420603,-0.3209191,-0.763619,0.23439506,-0.2185628,0.3463526,-0.13583866,-0.14974914,-0.7460472,0.30515096,0.2793009,0.11208774,-0.101099975,-0.4270948,-0.09748854,0.2713031,-0.30855042,-0.18952367,-0.30235714,0.072520986,0.65845346,-0.24438177,-0.52382326,0.06579628,0.1441089,-0.12910579,-0.37638783,-0.14361162,-0.44068724,0.15945399,0.06630932,-0.27614155,-0.26856858,-0.0902474,-0.42536062,0.20214789,0.12645903,-0.31209254,0.059147324,-0.341649,-0.036679216,0.87336713,-0.22592464,0.351496,-0.48499224,-0.51767653,-0.878836,-0.49810532,0.49731636,-0.02914372,-0.066725396,-0.65496695,0.12732004,-0.03533599,-0.3793673,-0.13281666,-0.2982759,0.3698612,0.13556676,0.060367107,-0.022995021,-0.80648756,0.27038,0.13042748,-0.14305137,-0.6314005,0.33917695,-0.17262115,1.136617,0.016604422,0.18498783,0.2846929,-0.32949764,-0.23553881,-0.2928496,-0.11464614,-0.44499797,0.13779424,682 -506,0.4189479,-0.17406456,-0.5874571,-0.072081976,-0.19051436,0.060063574,-0.20418637,0.36551812,0.12328507,-0.3227058,-0.061023474,-0.06411736,0.009743305,0.42147478,-0.058586847,-0.67446053,0.080586396,0.22126004,-0.4480695,0.6594771,-0.44925213,0.28869584,-0.13255036,0.25022042,0.13369772,0.32721785,0.14283146,-0.1325755,-0.0142264115,-0.11724896,-0.29119805,0.2545977,-0.52131325,0.18215452,-0.0030010703,-0.33530158,0.18973167,-0.28881487,-0.24398462,-0.6273765,0.15717714,-0.7634179,0.5292707,-0.099935286,-0.20436592,0.17873648,0.049781833,0.37504515,-0.28494126,-0.10304708,0.035237152,-0.19371898,-0.22188437,-0.2151213,-0.09292455,-0.45027104,-0.47036186,0.0100869285,-0.5056119,-0.1133757,-0.2942741,0.09750427,-0.4502413,-0.079090215,-0.1274766,0.28918362,-0.37670073,0.011089174,0.16736674,-0.03895948,0.15889095,-0.5494166,-0.06783914,-0.10271646,0.2981797,-0.14952569,-0.32689455,0.2494578,0.40533546,0.4227729,0.10636365,-0.2591541,-0.26604196,-0.277214,0.15598392,0.6062693,-0.03657111,-0.52368873,-0.20052303,0.05781577,0.07938057,0.220306,-0.043821048,-0.31521899,-0.14630851,0.115747325,-0.19430317,0.141413,0.34734035,-0.5071489,-0.37110066,0.35510764,0.50956655,0.12891196,-0.1655902,0.031922076,0.0048682955,-0.4935816,-0.12605673,0.15403502,-0.100049295,0.49974588,-0.2112463,0.19828913,0.6393072,-0.24695103,-0.08978095,0.05035184,0.04905071,-0.26427665,-0.3390753,-0.07462291,0.1802477,-0.59988725,0.24349652,-0.118431725,0.7483409,0.25227067,-0.5520123,0.3425152,-0.5983033,0.14499304,-0.16130237,0.59106207,0.74594927,0.3685524,0.3157081,0.7384758,-0.4576087,0.11260059,-0.123351865,-0.5502923,0.116938904,-0.24118936,-0.011490158,-0.50589144,0.21497117,0.1610501,-0.013421067,0.01489161,0.2237355,-0.51278317,-0.0040358477,0.07622374,0.6568135,-0.30587217,-0.20422567,0.79383755,0.8896646,0.99382263,0.08627258,1.1892563,0.27648202,-0.22760679,0.11529305,-0.2587255,-0.6640593,0.2117286,0.43041295,0.01345875,0.13386251,0.23121561,0.010524758,0.5144788,-0.39331225,-0.013846474,-0.19059958,0.4065641,0.113395706,-0.10891355,-0.39516374,-0.20173381,-0.049354758,0.0013720308,0.1718856,0.3457536,-0.17117505,0.40250605,0.10688803,1.6131951,-0.02643886,0.17132604,-0.009141544,0.4401984,0.21846008,-0.12535588,-0.099272765,0.27054673,0.4114748,0.14762874,-0.5405214,-0.092999496,-0.2779316,-0.4775083,-0.15361738,-0.32644495,0.002039228,-0.07089043,-0.30989307,-0.14310895,-0.006980351,-0.27175182,0.5977378,-2.8608935,-0.21142158,-0.21782854,0.2387683,-0.2660119,-0.49426177,-0.17696269,-0.5118958,0.40881515,0.24238165,0.5093812,-0.6602415,0.37994602,0.19750457,-0.39780697,-0.16478913,-0.6809388,0.028602531,-0.09916411,0.35663572,0.0061763152,-0.10928462,-0.12660606,-0.03614155,0.5588955,-0.115502186,0.022519732,0.22533305,0.115260564,0.22701167,0.48483902,0.1305614,0.70080817,-0.037410762,-0.15388606,0.21524744,-0.124214135,0.49244967,-0.12814657,0.19946171,0.4398117,-0.38858393,-0.874115,-0.76382667,-0.23681219,1.1206739,-0.28816268,-0.32266757,0.1910863,-0.3466969,-0.34411913,-0.077753104,0.34565902,-0.19320366,-0.1290193,-0.61061543,0.1771284,-0.011723055,0.2258358,-0.01993623,-0.011568261,-0.40298337,0.5001735,-0.08867531,0.40517312,0.35547575,0.15252149,-0.08841042,-0.38273042,-0.0018271847,0.9650364,0.33059356,0.0992971,-0.15900543,-0.32414797,-0.34562874,-0.090754226,0.089451805,0.46810326,0.6910834,-0.090883926,0.12763068,0.18571083,-0.02564885,-0.011696356,-0.064077996,-0.24901724,0.0010042542,-0.05370144,0.6107225,0.43677345,-0.07066061,0.66609275,-0.07162369,0.20380974,-0.07059574,-0.4925182,0.53714496,0.9361718,-0.33782095,-0.20219886,0.62491375,0.44196177,-0.27849856,0.4197376,-0.52637714,-0.22451583,0.3329521,-0.11654425,-0.16900064,0.10821637,-0.31400234,0.14351659,-0.8902254,0.22699703,-0.113484755,-0.58947265,-0.4720456,-0.07524387,-3.9181707,0.16644774,-0.15372756,-0.06413252,-0.008821053,-0.15236881,0.27648005,-0.56569713,-0.51841056,0.28506526,0.12547745,0.7103238,-0.054043382,0.059889346,-0.16880843,-0.33773443,-0.36206523,0.12933931,0.021354625,0.24345013,-0.0801839,-0.38614044,0.0686705,-0.15536924,-0.37633747,0.15597442,-0.5888448,-0.45532152,-0.21430624,-0.44904563,-0.39346093,0.7329603,-0.4014996,0.04723915,-0.26118892,-0.038926028,-0.1890306,0.34909597,0.10621513,-0.03679485,0.032758925,0.1118774,0.060209077,-0.368392,0.21608843,0.01571443,0.18479411,0.29126188,-0.012142117,0.22035466,0.5504195,0.5736304,0.04307688,0.8392991,0.5188345,-0.1765431,0.23612778,-0.3340074,-0.25887734,-0.4926901,-0.37917104,-0.14306447,-0.48573706,-0.4327028,-0.07874883,-0.2579005,-0.7353671,0.6138745,0.05660415,0.113221996,-0.049241215,0.4373874,0.55133957,-0.17971216,0.003171182,0.036189783,-0.074351445,-0.47272363,-0.33354965,-0.5308325,-0.5088735,0.17801414,0.9593262,-0.3461301,-0.044493917,-0.065453306,-0.33600163,-0.05028089,0.2219157,0.046633955,0.25149795,0.5321101,-0.060231436,-0.7277619,0.47518,-0.28728127,-0.18994904,-0.55586594,0.23773435,0.5229468,-0.8459925,0.31653354,0.31128374,0.10743016,-0.057951633,-0.4517619,-0.30626902,0.014618456,-0.3889398,0.33686945,0.2683516,-0.8600316,0.53574383,0.32030436,-0.1329088,-0.6811319,0.40537548,0.024341363,-0.108950146,-0.049339466,0.33231336,0.1390723,0.16024637,-0.2744395,0.087173864,-0.49702516,0.20201077,0.3207565,-0.10393504,0.2903255,-0.18123998,-0.13501278,-0.6928991,-0.27145293,-0.419206,-0.16570528,0.14540097,0.1639343,0.08816109,0.13021149,0.07157777,0.3184463,-0.50281864,0.12739658,-0.09420104,-0.25215694,0.2051686,0.4241342,0.2996312,-0.36671,0.6297313,0.060345557,-0.10876433,-0.18325676,-0.018678367,0.49556103,0.12044687,0.46502426,0.01690091,-0.28930357,0.1981847,0.84449595,0.1516161,0.41732758,0.0023868254,-0.0851575,0.087527595,0.12802349,0.22043996,0.35892066,-0.46577883,-0.027710319,-0.14928658,0.22676952,0.5654229,0.22670543,0.28898188,-0.0030695754,-0.27066454,0.036994237,0.00090608216,0.08482661,-1.2372515,0.6005854,0.21397011,0.67427194,0.41511366,-0.018596947,0.037620146,0.45215067,-0.24614742,0.234569,0.1866702,-0.19680712,-0.3715674,0.54385173,-0.78638375,0.56205523,0.023450227,0.071826264,0.07142279,-0.080723695,0.4631558,1.1030705,-0.25801748,0.111948796,0.0010474005,-0.21560363,0.05280934,-0.21535464,-0.07094174,-0.6870696,-0.29983887,0.6213111,0.44213182,0.46478075,-0.16777252,-0.0077447193,0.08126027,-0.067656666,0.044058986,-0.15138803,0.2675787,-0.003688046,-0.52919424,-0.35386345,0.6017828,-0.015591277,0.20153907,0.01877168,-0.24788465,0.2940645,-0.03460351,-0.031029178,-0.112100445,-0.5216003,0.0922723,-0.2035736,-0.5652463,0.53065264,-0.25900236,0.31278804,0.21770604,0.07395579,-0.21038471,0.5591684,0.21118318,0.6708167,-0.08680557,-0.21010716,-0.3316016,0.24631096,0.21229431,-0.18971266,-0.16721596,-0.32543787,0.1061991,-0.66219807,0.35957256,-0.1065285,-0.41102076,-0.09154761,-0.14519511,-0.024949819,0.48956323,-0.07825845,-0.1984022,-0.013489996,-0.14948092,-0.22283319,-0.27586186,-0.18849875,0.24288876,0.204016,-0.012723961,-0.14538713,-0.16693279,-0.18908544,0.21108203,0.010293305,0.21506515,0.27162978,-0.01884731,-0.23376809,-0.18996754,0.17394058,0.36293697,-0.18096754,-0.28875324,-0.25850895,-0.4003376,-0.39794382,0.03304438,-0.012435096,0.41619262,0.0025903583,-0.1942767,0.68334675,0.019102901,1.1858355,0.13423887,-0.34689885,0.04473307,0.49302456,-0.04239599,-0.012159079,-0.28815898,1.0250566,0.39092216,-0.13883637,-0.14509046,-0.45956424,-0.15874687,0.4331942,-0.14786744,-0.12065486,-0.03080191,-0.4674086,-0.34312987,0.22513604,0.19057308,0.23605596,-0.021326909,0.023271516,0.28842112,0.035200816,0.30940872,-0.3648384,0.007472481,0.35420376,0.36969495,-0.081481814,0.2643068,-0.2869878,0.393279,-0.54981494,0.035298288,-0.16111782,0.246695,-0.0694063,-0.31862158,0.29351988,0.114002176,0.3787587,-0.22348125,-0.37977982,-0.32075945,0.5912928,0.18932489,0.06610412,0.6513721,-0.19270681,-0.0095526045,-0.006435573,0.41129255,0.9550392,-0.22073223,-0.047141373,0.39543414,-0.31703955,-0.49381444,0.3649752,-0.20765369,0.20548879,0.054041833,-0.3343937,-0.5321675,0.26166502,0.20679143,0.14210482,0.046659593,-0.45021108,-0.09365039,0.1667925,-0.1857417,-0.25313503,-0.26285225,0.1654755,0.76423275,-0.30798012,-0.32394648,0.11670982,0.12142716,-0.18897113,-0.52646846,-0.09439083,-0.3140122,0.32152194,0.104182206,-0.33695108,-0.08083111,0.17491055,-0.53436476,0.09302688,0.23642053,-0.32249457,0.2999644,-0.22607303,0.07133107,0.9960095,-0.15487032,0.23254834,-0.61599606,-0.48209977,-0.6472944,-0.318221,0.5363395,0.24515043,0.094267294,-0.50945663,0.04969583,0.041366905,-0.05631582,-0.038084257,-0.40199658,0.47713968,0.06976684,0.2445538,0.113469966,-1.0102942,0.019308077,-0.09177655,-0.109271094,-0.4657406,0.44624096,-0.1555217,0.8537887,0.16222729,0.097112775,0.33393624,-0.28965363,0.070520684,-0.18801959,-0.109765045,-0.8442613,0.005603935,683 -507,0.3384386,-0.081652395,-0.4640349,-0.23429942,-0.33142692,0.21530035,-0.10089266,0.47444633,0.1732802,-0.2712194,-0.02408531,-0.057337638,-0.126525,0.40043306,-0.16112867,-0.8084827,0.01625246,0.06044638,-0.66584545,0.39736387,-0.4965369,0.24002619,-0.14813614,0.47532108,0.05356322,0.23683262,0.12842342,0.033674613,0.11697454,-0.09907325,-0.0546766,0.09594619,-0.6091077,0.2699152,-0.0422417,-0.14708103,-0.13199027,-0.26254684,-0.27672148,-0.5616477,0.33936375,-0.6483458,0.37618023,0.018466953,-0.39292195,0.09277541,0.09702081,0.1596845,-0.3983501,-0.047262523,0.20769031,0.01234514,0.11681298,-0.05832045,-0.24602246,-0.5193782,-0.61685383,0.0041403347,-0.56693053,-0.15350212,-0.43741316,0.1668428,-0.23356389,-0.061642256,-0.2786299,0.553991,-0.35874286,0.1714455,0.24199669,-0.17543085,0.105418526,-0.47042277,-0.11943303,-0.101449415,0.15790482,0.054924216,-0.29052562,0.3249927,0.37165162,0.4342673,0.027863918,-0.19385658,-0.23931742,-0.059672765,0.15721616,0.282693,-0.12549782,-0.3397881,-0.22178774,-0.106914185,0.061150942,0.14850421,0.07538293,-0.4589045,0.034864556,0.09327059,-0.23787396,0.27464223,0.43316677,-0.4618034,-0.32709572,0.37283334,0.25446653,0.11672099,-0.24231015,0.069621496,0.009755762,-0.5548396,-0.28333354,0.17048046,-0.13438,0.40560934,-0.10392224,0.14313483,0.8243899,0.032991312,0.023677155,-0.075087085,-0.13201003,-0.049567103,-0.46712357,-0.10183437,-0.043443985,-0.49338087,0.08214987,-0.21852185,0.76731926,0.11096965,-0.88767,0.34770617,-0.5426478,0.06396278,-0.21479486,0.4625627,0.8261004,0.34793624,0.07583632,0.7880998,-0.58527035,-0.0045995777,-0.053932685,-0.397718,0.1883746,-0.06568483,0.06416865,-0.43976405,-0.072055,0.09990377,0.06633661,-0.03476456,0.18995579,-0.38862392,-0.04478278,-0.011484014,0.69362676,-0.34984642,-0.19420335,0.63809675,1.0698463,0.9202571,0.09965233,1.3148905,0.23313694,-0.11959901,0.3282703,-0.31827933,-0.54029334,0.20657204,0.31595382,0.44531456,0.2150602,0.041289564,0.16061607,0.50418466,-0.17679732,0.19482757,-0.046887193,0.22062995,0.07997523,-0.06360204,-0.2242888,-0.4125164,0.20618321,0.034863282,-0.051119983,0.32470968,-0.13379253,0.110211626,0.104597196,1.4124411,0.16383247,0.14753357,0.088649526,0.5055777,0.25057617,-0.1589267,-0.104747295,0.28475302,0.35071468,-0.017758662,-0.59099686,0.08887507,-0.29681468,-0.40788943,-0.09741243,-0.41350383,-0.22506772,-0.02801108,-0.6008572,-0.18148279,0.012909323,-0.29686356,0.5343102,-2.7859285,-0.16297258,-0.2322546,0.20956554,-0.25777587,-0.20659934,-0.098345585,-0.3915554,0.3367955,0.4431288,0.3027888,-0.53784597,0.41893277,0.37472177,-0.3505196,-0.0032978228,-0.65126795,-0.17796513,0.0023806777,0.33623937,-0.026099432,0.11214379,-0.18316546,0.37708554,0.58488643,0.050684504,0.05478045,0.1953996,0.37160984,-0.14005825,0.635058,0.07259416,0.55819494,-0.24543677,-0.117112935,0.24354233,-0.41464403,0.45673364,0.15968633,0.15137787,0.42894793,-0.44299808,-0.89753735,-0.5893203,-0.42765924,1.1116251,-0.45786783,-0.20994374,0.35655278,-0.29332632,-0.12121802,-0.10308434,0.5994151,0.06688065,0.07296673,-0.6858743,0.13239376,-0.16063888,0.14163272,-0.08212594,-0.0025699225,-0.26439792,0.7015198,-0.09336839,0.6779601,0.2711802,0.038902692,-0.20591514,-0.37730142,0.09536266,0.7570825,0.30366442,0.091967545,-0.11521525,-0.14714539,-0.33687735,-0.1682184,0.23570514,0.5702768,0.47904077,0.048884597,0.15294503,0.2914121,-0.24769484,-0.037670884,-0.08711543,-0.24425241,0.039404724,0.0932046,0.5888758,0.6101344,-0.13233995,0.35869503,-0.11870384,0.09083571,-0.34113067,-0.4269362,0.4995656,0.6112111,-0.07962178,-0.22647741,0.52433664,0.46227422,-0.16974212,0.33105752,-0.54575574,-0.23038694,0.7747593,-0.09444838,-0.3735481,-0.027871132,-0.27043647,-0.07799633,-0.79850227,0.20971605,-0.3125995,-0.5086373,-0.37620863,-0.25184807,-3.9951274,0.20726551,-0.18102838,-0.10449542,-0.16750643,-0.10837978,0.4811583,-0.59070224,-0.50751746,0.015513271,0.05006985,0.52647895,-0.056083374,0.11287474,-0.3211449,-0.1382272,-0.33310843,0.26661834,0.09678423,0.29013082,-0.04664622,-0.39151025,0.07652598,-0.27927655,-0.5132529,0.057381094,-0.4309258,-0.46813604,-0.0049275183,-0.44458064,-0.22002389,0.8172861,-0.36866397,-0.024191065,-0.13273966,-0.1008827,-0.3288627,0.42984077,0.14179137,0.13312605,0.011396102,0.029125402,-0.28029293,-0.41514388,0.28869197,-0.026262565,0.3825075,0.33247048,0.0017974632,0.10971496,0.68941814,0.61023885,-0.029941622,0.77745473,0.27879846,-0.081074916,0.44555706,-0.23734677,-0.19566521,-0.5831036,-0.23209593,-0.2432524,-0.28824002,-0.48882547,-0.13708247,-0.34399018,-0.8046888,0.26763687,0.093304835,0.089159295,-0.16643496,-0.0005911248,0.19397174,-0.10099338,-0.021979187,-0.052579265,-0.24035694,-0.58530873,-0.52481943,-0.58769745,-0.47428778,0.27420858,1.040559,-0.16398704,-0.26419955,-0.076743655,-0.42526117,-0.031969845,0.03832484,0.18780783,0.2279741,0.2676783,-0.12399558,-0.67937905,0.5037643,-0.08957194,-0.09074129,-0.563009,0.11624338,0.72809464,-0.5564971,0.6545929,0.20781745,0.22096644,0.16004078,-0.5248519,-0.25899318,0.16491024,-0.2574116,0.6024679,0.24419269,-0.7373907,0.42492566,0.16760638,0.0799982,-0.6281005,0.6227595,0.008549579,-0.025956346,-0.05056595,0.30105233,0.17115827,-0.095245324,0.0708364,0.30872947,-0.61580145,0.24322589,0.27606636,0.035497487,0.44687793,-0.093777545,-0.016912635,-0.5073815,-0.04581387,-0.5095286,-0.2518711,0.10788976,0.051013503,0.18648863,0.21108758,-0.026718616,0.3097939,-0.16158149,0.1865174,0.061669767,-0.18236354,0.38147527,0.3879142,0.4116456,-0.4941998,0.5343998,0.088314995,0.2432683,0.26426664,0.09319891,0.42571098,0.3170486,0.47549888,-0.19783604,-0.10633634,0.25786242,0.7100902,0.20580986,0.24603999,0.07196001,-0.19774409,0.23615941,0.14352523,0.057137225,0.008590319,-0.4384353,-0.011163796,0.012392973,0.28227657,0.36306587,0.06465269,0.16680299,-0.010251633,-0.17127934,0.23623155,0.15563548,-0.21925004,-1.2710842,0.43868548,0.24639866,0.68438685,0.6158724,-0.006611117,-0.032185614,0.599352,-0.27665496,0.08866312,0.47761917,0.06421752,-0.4479817,0.55756265,-0.53628784,0.6457406,-0.1954067,0.0034196633,0.070402995,0.20125268,0.36797646,0.8808948,-0.03870413,0.08536102,0.078099124,-0.35545966,0.13629659,-0.32619375,0.11411478,-0.48600706,-0.23362027,0.5758449,0.49417907,0.25467196,-0.3805615,-0.0925917,0.06481854,-0.16702999,-0.022142818,-0.05115952,-0.113891944,0.020635584,-0.73295957,-0.32821217,0.47397617,-0.39233974,0.0524616,0.1423376,-0.43037567,0.3529415,-0.18454881,-0.0049179965,-0.07123332,-0.6435521,-0.10053355,-0.24804406,-0.38845477,0.28502208,-0.5187486,0.22101161,0.19563548,-0.051167797,-0.31704155,0.36432737,0.08378464,0.78225327,-0.08328193,-0.017437091,-0.31392553,-0.06382076,0.24611054,-0.17812058,-0.20191751,-0.51726997,0.031767704,-0.5098605,0.28784814,-0.113584325,-0.20222914,-0.09538321,-0.04108881,0.0748871,0.45033154,-0.26573175,-0.14002384,-0.18991902,-0.038795616,-0.22827516,0.014410274,-0.2978756,0.2998194,-0.05319873,0.11802703,0.042579733,-0.052597873,-0.012922636,0.19660972,0.10930235,0.2747191,0.2722266,-0.060067296,-0.245486,-0.026205828,-0.08631711,0.32568893,0.13659832,-0.021107929,-0.16760072,-0.13796426,-0.31817892,0.43182674,-0.14956467,0.23194215,0.0015465809,-0.53757584,0.5995678,-0.010518032,1.1205407,0.043705266,-0.33455512,0.08765658,0.48033613,0.056397,0.20275709,-0.30857834,0.63948077,0.5623326,-0.10752536,-0.29672593,-0.26680383,-0.13765217,0.14499648,-0.29974574,-0.20023204,-0.07658102,-0.7499371,0.044540532,0.12710695,0.16448225,0.20171003,-0.014900582,-0.21981914,0.09827278,0.11982707,0.4959915,-0.56685513,0.014733191,0.27912456,0.35347444,0.122640446,0.16255412,-0.42717797,0.46563393,-0.76871043,0.20245361,-0.3396363,0.12029947,-0.22446612,-0.20248155,0.19279858,0.07060522,0.37264487,-0.18843307,-0.25840828,-0.23485744,0.71516436,0.13028659,0.37389275,0.81235236,-0.20356762,-0.0617845,0.1493026,0.520015,1.0380207,-0.034805343,-0.19688734,0.20948227,-0.38730767,-0.64521223,-0.02072263,-0.48988825,0.18695612,0.04242933,-0.21057831,-0.12613358,0.34258032,0.13092998,0.078966245,0.12670927,-0.69653004,-0.33689576,0.4356167,-0.20548382,-0.360306,-0.26582104,0.15526219,0.67675674,-0.44509873,-0.18314804,0.05289787,0.35246995,-0.16136919,-0.6093423,0.10835014,-0.40247056,0.29589075,0.076730244,-0.3667357,0.0645953,0.22039221,-0.3844939,0.10185696,0.21894908,-0.30476078,0.031493764,-0.22905186,-0.14996552,1.0582687,0.1162694,0.0054604327,-0.50541204,-0.5325755,-0.83098954,-0.31056476,0.2051002,0.096581206,-0.154544,-0.38501555,-0.17947301,0.045234866,0.05961122,0.05201348,-0.52681774,0.4863124,0.09721797,0.39927268,0.17084599,-0.86267614,-0.023595078,0.14904383,-0.088343516,-0.5814334,0.6066083,-0.24001901,0.7922646,0.06237201,0.03371032,0.11026887,-0.5676445,0.33615127,-0.4832757,-0.03042339,-0.64023083,0.18276061,684 -508,0.3683582,-0.15125537,-0.6030726,-0.039545428,-0.4090534,0.029752906,-0.322273,0.21769534,0.47943634,-0.12579638,0.015425416,0.1674322,-0.068993196,0.15895149,-0.17352831,-0.7073928,-0.1404939,0.08017903,-0.65225214,0.43566912,-0.5372989,0.47505832,-0.19675358,0.29751325,0.06497327,0.4840776,-0.01454834,0.058992095,0.052120365,0.034937125,-0.10325272,0.098834045,-0.35251305,0.018597765,0.009402573,-0.3424894,0.0635666,-0.2919264,-0.27566317,-0.7113914,0.26344028,-0.61959213,0.6254262,-0.052643392,-0.1293427,0.1085879,0.22525859,0.33754274,-0.32614797,0.12909058,0.14098191,-0.23783161,-0.10541532,-0.46306852,-0.39101434,-0.34814686,-0.49486026,0.021361154,-0.63609546,-0.20830579,-0.2990974,0.22993119,-0.35861474,0.025154259,-0.23653455,0.38039157,-0.38600573,0.0823425,0.2946886,-0.18134715,0.2513306,-0.61550313,-0.048475318,0.07120093,0.26473406,0.08988683,-0.03414143,0.37356132,0.2023112,0.37098736,0.26012984,-0.30772835,-0.38924146,-0.19420926,0.029429495,0.44281688,-0.32302713,-0.029544728,-0.25641906,0.094443694,0.37414217,0.41077963,-0.050207548,-0.15283345,0.013942411,-0.039807048,-0.28920445,0.75260633,0.5504741,-0.33639956,-0.2729039,0.30058417,0.54758006,0.17963183,-0.30369207,0.02731204,-0.07658213,-0.3451271,-0.16948612,0.1377018,-0.07848792,0.3706167,0.009642073,0.18106093,0.75194216,-0.17657228,-0.10074228,0.05581693,-0.012001021,0.14827575,-0.37984732,-0.11440265,-0.054832865,-0.55858105,0.21613696,-0.20166896,0.57191706,-0.1348053,-0.6498627,0.43241793,-0.5623928,0.16303493,0.014184124,0.54844064,0.6734198,0.5410873,0.20263436,0.8398279,-0.28687114,0.17591532,-0.18387151,-0.28627163,-0.07195755,-0.10716107,0.21787961,-0.5106698,0.27599254,-0.18663958,-0.031907223,0.25787187,0.32943746,-0.5224083,-0.07088781,0.11102816,0.91741836,-0.26321712,0.0072287363,0.71476907,1.1865845,1.1465265,-0.035104793,0.7737964,0.26414016,-0.25782052,-0.026467612,-0.5590664,-0.37979817,0.17628191,0.28145805,-0.009282529,0.40730804,-0.10540592,0.00953392,0.3019274,-0.27956393,-0.12720916,-0.083769545,0.4475431,0.19773833,-0.0019812733,-0.4459005,-0.061182227,0.049427815,-0.04410592,0.24791972,0.27573225,-0.30403545,0.1621265,-0.005317194,1.1056775,-0.02132484,-0.0569109,0.19339392,0.5284364,0.3065967,-0.048680954,-0.01716483,0.40685704,0.21597394,-0.13606824,-0.5575406,0.32401562,-0.28232923,-0.34061366,-0.111622944,-0.2529089,-0.14593959,0.15696338,-0.25692183,-0.21771784,-0.18456747,-0.3477431,0.38823554,-2.6445756,-0.27517837,-0.12512565,0.33948606,-0.17549232,-0.25316235,0.08223836,-0.47328177,0.38721964,0.17821942,0.40804258,-0.57707006,0.61670065,0.5686881,-0.5970151,-0.15997764,-0.5884271,-0.04359031,0.0028782573,0.496542,0.013135399,-0.10088324,-0.24412622,0.25343743,0.76410663,0.00044834826,0.12726496,0.5130311,0.36641344,-0.07532177,0.3442357,0.014209496,0.59817344,-0.20721905,-0.19532302,0.20961772,-0.3223595,0.08666094,-0.17722258,0.0009666852,0.34779912,-0.45519257,-0.8688317,-0.45041493,-0.015308431,1.1901804,-0.18860361,-0.57349676,0.2010976,-0.27407476,-0.16910349,-0.050061468,0.5430327,-0.011656622,-0.061048158,-0.5958784,0.16682673,-0.06342419,0.20735182,0.090708576,-0.08180381,-0.21499467,0.6473426,-0.1275099,0.49195093,0.19866636,0.3857452,-0.21930242,-0.1809555,0.08344597,0.73144436,0.38220212,0.022284018,-0.037881397,-0.2771864,0.08777022,-0.26378915,0.054572992,0.6589042,0.66678536,0.025361612,-0.033079445,0.29378608,-0.25393924,-0.043323554,-0.26971707,-0.19516727,-0.052546196,0.045628108,0.42188564,0.6484906,-0.057622105,0.4688607,-0.20359768,0.27206486,-0.20079443,-0.40699926,0.41088793,0.41386408,-0.26399764,-0.23463562,0.5320245,0.42282805,-0.4348007,0.3634703,-0.63362885,-0.19852737,0.55954677,-0.25847554,-0.34352466,0.17205976,-0.26111996,0.08735423,-0.5333087,0.25230294,-0.36219332,-0.6690854,-0.24918173,-0.114935264,-3.2285845,0.22827943,-0.25309128,-0.11240782,-0.2805057,-0.08449278,0.21261665,-0.5504128,-0.5498497,0.19221197,0.27563605,0.5256865,-0.091282144,0.049265575,-0.16196585,-0.3163268,-0.114362955,0.25547332,0.061843045,0.31962687,-0.10536759,-0.3684478,-0.03062941,0.05233687,-0.65043515,0.1977627,-0.6161728,-0.34719986,-0.035207793,-0.57759523,-0.18868157,0.550667,-0.38255766,0.11114633,-0.47822624,0.0993482,-0.13306093,0.20517656,0.1366627,0.17268172,0.32735848,-0.17455198,0.28658578,-0.31305155,0.480084,-0.11141515,0.39523205,0.09426097,0.075992875,0.031400535,0.40234452,0.76833826,-0.0014026889,0.917649,0.3012744,-0.21697153,0.34120873,-0.33006898,-0.19765961,-0.5754878,-0.4741753,0.1271443,-0.2638667,-0.481278,-0.031581577,-0.41271496,-0.7706795,0.4405225,-0.019495828,0.39097193,-0.10047108,0.43859336,0.5003024,-0.13872184,0.024693994,-0.030511392,-0.20742676,-0.36906025,-0.19504498,-0.5954946,-0.49954224,0.14734583,0.857862,-0.37887594,0.16376765,-0.00900312,-0.26604992,-0.027057827,0.19640337,0.2225003,0.24541244,0.33806816,-0.07237292,-0.4738136,0.14211293,-0.09776676,-0.1877815,-0.6060459,0.21037851,0.61249256,-0.5373519,0.6073504,0.30503842,0.07278671,-0.051418282,-0.5572626,-0.007889619,0.14846513,-0.22085992,0.44477326,0.1894426,-0.78664,0.589753,0.37220818,-0.46866587,-0.7506085,0.13222659,-0.17959611,-0.34670287,-0.14859438,0.35220364,0.30095223,-0.14438085,-0.16704287,0.08953134,-0.37779373,0.2847127,0.082783334,-0.14147614,0.14524078,-0.13737682,-0.27111298,-0.7729009,-0.020744279,-0.52246654,-0.22673228,0.21100008,-0.0020023903,0.00078142964,0.06446666,-0.015123137,0.43470535,-0.21445975,0.05386663,-0.10393935,-0.47757074,0.21450658,0.45456102,0.36106887,-0.30812314,0.45931694,-0.015327895,-0.22476223,0.072849534,0.07529877,0.41324258,-0.072664045,0.39255005,0.00959528,-0.17908213,0.33842775,0.6334647,0.10700907,0.40837553,0.09208502,-0.20187299,0.43722126,-0.028962377,-0.071228474,0.09301727,-0.27531815,0.075067095,-0.015578517,0.12737569,0.45132822,0.30689353,0.30741867,-0.01189601,-0.12983128,-0.0571993,0.23966043,-0.17126963,-1.3761948,0.37447637,0.24547179,0.8263505,0.40785798,0.3086483,-0.33001158,0.70261633,-0.094452776,0.012531906,0.46206146,0.10628251,-0.37323853,0.5611633,-0.6067354,0.4164124,-0.16816787,-0.064430155,0.2013795,0.2909281,0.32366198,0.950796,-0.19621852,-0.12682663,-0.05386773,-0.18923189,-0.20002988,-0.252531,0.057891935,-0.362214,-0.4998992,0.5179526,0.26350743,0.45394638,-0.18930426,-0.065928824,0.06280681,-0.17878425,0.2505878,-0.0071389847,-0.010908251,0.031070685,-0.50447375,-0.20646158,0.36450815,0.09651314,0.2218384,-0.25463778,-0.17770945,0.06668909,-0.08214855,-0.1292667,0.15081392,-0.44468403,0.063221686,-0.18935095,-0.525008,0.4113523,-0.10682344,0.1533914,0.112726346,0.08974784,-0.19049096,0.3202993,0.194964,0.6438597,0.10170286,-0.194292,-0.37481064,0.077494144,0.078803696,-0.1751351,0.18309762,-0.21296497,0.22714007,-0.712378,0.7152071,-0.2655315,-0.44083765,0.25372857,-0.3201978,0.01648879,0.48150334,-0.2872429,-0.1841975,-0.007871176,-0.2289037,-0.38653368,-0.35700393,-0.14158365,0.16712812,0.0723018,-0.16056217,-0.0840454,-0.3269222,-0.22645691,0.6077333,0.06918719,0.46373028,0.24819103,0.2064059,-0.2841731,0.0027897134,0.117790096,0.3654092,0.10105432,0.135287,-0.50181925,-0.47611997,-0.22393334,0.14205906,-0.06994133,0.045882523,-0.08776853,-0.2583069,0.9425456,-0.11811031,1.1378318,-0.02743873,-0.15004416,0.124501765,0.47148475,-0.13427088,0.07897786,-0.33580446,0.86074597,0.67999953,-0.23863925,0.027099058,-0.43619728,-0.18948092,0.31841332,-0.4158875,-0.031462606,-0.018530052,-0.6884171,-0.43883634,0.2462914,0.06525103,0.1616578,-0.012930901,0.13353412,0.029238222,0.18452954,0.36160687,-0.4863115,-0.06390505,0.2502436,0.22586192,-0.095013596,0.16247606,-0.45518667,0.2706354,-0.49925885,0.18120578,-0.29989856,-0.0036799717,-0.031127986,-0.29155466,0.27467465,-0.052506734,0.23446997,-0.26006418,-0.38350663,-0.038178004,0.36616492,0.016277626,0.099122204,0.47656724,-0.29880556,0.043664183,0.13495743,0.6799768,1.1824204,-0.17553768,-0.033317387,0.18592827,-0.41106206,-0.6236328,0.29944843,-0.17590281,-0.2591709,-0.059240878,-0.27501562,-0.39187616,0.29524246,0.12224662,0.060691413,0.068305455,-0.4473732,-0.2621858,0.20986806,-0.39775568,-0.06913002,-0.024156386,0.43552193,0.721031,-0.21425939,-0.4388246,-0.010982522,0.4782717,-0.13964725,-0.43225202,0.07151383,-0.07901057,0.4156902,0.21768798,-0.37825677,-0.090457544,0.17753114,-0.440517,-0.18728028,0.25229135,-0.32785234,0.03673593,-0.22692974,-0.064097166,0.586727,-0.2636936,0.022228787,-0.5783172,-0.5382295,-0.82465523,-0.4047747,-0.0760972,0.22393033,-0.08771761,-0.5002734,-0.025003782,-0.18078874,-0.26344457,0.07971263,-0.6283282,0.4417336,0.07791724,0.34810638,-0.49974233,-0.888412,0.024647057,0.21109538,-0.19918464,-0.6642416,0.6834273,-0.15649627,0.71401644,0.05756238,-0.11681169,0.038453586,-0.3305311,0.22303598,-0.39498833,-0.25655463,-0.77676713,0.08078815,690 -509,0.571297,-0.2107805,-0.3775537,0.14432095,-0.5390257,0.09316714,-0.14908719,0.43283114,0.31028304,-0.5819834,-0.33879516,0.115438886,-0.21352768,-0.07095634,-0.16115132,-0.52494174,-0.10332669,0.32130572,-0.46780595,0.68403333,-0.12478654,0.34409264,-0.039650764,0.39923498,0.32279727,0.14927147,-0.14147872,0.11591698,-0.19999014,-0.36420414,0.17274721,0.21653466,-0.8001477,0.4828836,-0.37240908,-0.41241845,-0.20620802,-0.4709434,-0.5260125,-0.8302341,0.37725332,-0.85668343,0.634332,-0.007042442,-0.26479423,0.13434917,0.05038676,0.11107548,0.078359224,-0.12661284,0.32522187,-0.20636013,-0.1363709,-0.059200015,-0.20105276,-0.22145645,-0.68367547,-0.014710999,-0.28656602,0.12962662,-0.3679776,0.30800128,-0.24613433,-0.14945824,-0.20066145,0.6049603,-0.3484877,0.43974808,0.048781734,0.0044068885,0.18919502,-0.7761227,-0.23997985,-0.14542806,-0.046092603,0.016964886,-0.15806295,0.48918173,0.15872863,0.311864,0.08181411,-0.2892728,-0.3991832,0.04140506,0.31758505,0.462663,-0.27212662,-0.15268625,-0.25866598,-0.068067156,0.41629553,0.106599346,0.24672078,-0.35960335,-0.0337163,-0.117043,-0.0015138473,0.51192385,0.56346315,-0.026720067,-0.11477898,0.3410655,0.3858063,0.23122641,-0.11444362,0.008907846,0.038802225,-0.33738834,-0.15703079,0.076549,-0.22470157,0.51085013,-0.09447888,0.056995142,0.49457937,-0.08576352,-0.08547973,0.36992878,0.21947977,0.17363827,-0.34044498,-0.27779773,0.372124,-0.5486682,0.35132748,-0.18088745,0.7131097,0.024521155,-0.8455309,0.28769988,-0.47204018,0.004451013,0.061981585,0.45766827,0.7317993,0.5036506,0.1920878,0.8747383,-0.34898165,-0.024964819,-0.034388166,-0.29525524,-0.23952106,-0.24359365,-0.039785456,-0.4060838,-0.092305735,-0.1617953,-0.084371686,0.03560149,0.55483466,-0.40533304,-0.3530462,0.10581796,0.8452796,-0.24123068,-0.04294769,0.91168815,1.0774823,1.1115873,0.057817526,1.203113,0.013948889,-0.096537784,-0.17169468,-0.22915368,-0.74210346,0.22454207,0.201082,-0.29734704,0.18448056,0.23685193,-0.04057953,0.20015442,-0.5067822,-0.06063858,-0.32391518,0.32386306,0.041447222,-0.11600435,-0.40203527,-0.24327438,-0.10195296,0.06531099,0.0013268569,0.2985607,-0.32805124,0.22140412,0.122064166,1.1962754,-0.20380385,0.12035443,0.026965097,0.2834261,0.24753408,-0.2456602,-0.034120433,0.11225128,0.23467116,0.008551515,-0.51112586,-0.0040724617,-0.3564975,-0.42718676,-0.19908322,-0.22812487,-0.3750542,0.18041112,-0.33159104,-0.42796263,-0.09730987,-0.49013022,0.4658104,-2.5512357,-0.013260313,0.045982473,0.40530413,-0.3436975,-0.3317741,-0.11981861,-0.59074444,0.43046686,0.1411006,0.42460844,-0.5975941,0.26684862,0.5284906,-0.6881782,-0.039695125,-0.55136245,-0.022601707,0.18715039,0.27917558,0.042253193,0.10852957,0.080098346,-0.0298012,0.6483466,0.13932444,0.15099347,0.5077995,0.34412694,-0.24497621,0.16443887,-0.048323963,0.43755504,-0.2579828,-0.19553386,0.5505102,-0.3681376,0.35568696,-0.29030734,0.06478309,0.6527805,-0.44410482,-0.5657221,-0.6642333,-0.27168283,1.0593498,-0.21444489,-0.6115206,0.19658527,-0.44571277,-0.12768833,0.011672148,0.564562,0.076313004,0.106562935,-0.65950435,-0.18231371,-0.094663024,0.13402723,-0.053647123,-0.0076317107,-0.5235449,0.88791925,-0.014824203,0.5157815,0.36417824,0.3508411,-0.20293473,-0.37098128,0.16970693,0.8942223,0.59402835,0.25312024,-0.48078728,0.020496229,-0.35746357,-0.3145353,0.055813942,0.73341817,0.4493194,-0.17788696,0.11224275,0.31034356,0.13699332,0.17626815,-0.16950642,-0.24157624,-0.3035173,-0.00011627163,0.45892715,0.70120746,-0.089649916,0.45175332,-0.15832199,0.044277888,-0.18147598,-0.4973586,0.46176797,0.90002483,-0.18813644,-0.23265454,0.73054105,0.4844158,-0.29450804,0.50044847,-0.5280452,-0.35602516,0.44864437,-0.17958255,-0.60771805,-0.012340437,-0.4818766,0.14867036,-0.5609511,0.45118693,-0.33984894,-0.7537261,-0.47082356,-0.05688554,-1.3742855,0.22017045,-0.32536444,-0.104886845,-0.16482453,-0.41619202,0.087516725,-0.48771772,-0.5984355,0.20594038,0.11561408,0.65866584,-0.16312286,0.13005948,-0.14947169,-0.269629,-0.25224456,0.1874676,0.29357764,0.32136518,-0.079193674,-0.26059967,-0.109393165,-0.0034496891,-0.33696005,0.0018397783,-0.548411,-0.46377352,-0.097025044,-0.5135535,-0.32728437,0.55531925,-0.34267667,0.06731103,-0.20666364,-0.034873206,-0.008515997,0.2595612,-0.096481785,0.31189534,0.24690959,-0.258025,0.03645524,-0.18265285,0.6782897,0.12206235,0.30239794,0.60379314,-0.4133331,0.29697463,0.37959698,0.68820864,-0.18618026,1.0353577,0.32476267,-0.16068707,0.3461515,-0.14766261,-0.370982,-0.74976665,-0.085379615,0.08937525,-0.40987176,-0.5588462,0.13429423,-0.42018208,-1.01733,0.5070674,0.105149746,0.5037471,-0.0020818498,-0.0377548,0.5328346,-0.24969313,-0.123033024,-0.09939611,-0.16219759,-0.40676552,-0.5274521,-0.7569812,-0.57587963,-0.116730385,1.190837,-0.17099929,0.051303744,0.32312196,-0.31549388,0.09797,0.048073836,-0.06369653,-0.2593021,0.3368781,0.27196118,-0.62689656,0.3963063,0.19696961,-0.029698014,-0.5272685,0.5668585,0.6763391,-0.48930594,0.5418831,0.16955839,-0.051897682,-0.30069324,-0.6306542,-0.122138,-0.11119853,-0.24430561,0.6320788,0.449176,-0.7811242,0.25354204,0.3684148,-0.32302117,-0.8259867,0.54256195,-0.09612977,-0.14400493,-0.18610986,0.45061567,0.14735691,-0.07191523,0.08331168,0.34502798,-0.48349157,0.47637224,-0.005914954,-0.08686972,0.13951056,-0.18218586,-0.29815823,-0.92674714,0.34918424,-0.6434825,-0.4169149,0.24346277,-0.015293066,-0.1578925,0.37181884,0.47835797,0.44971466,-0.17525287,0.15434574,-0.20126316,-0.41521496,0.39863846,0.43986773,0.7569846,-0.32808954,0.49251655,0.041608382,-0.079973154,0.10559181,0.21924333,0.41770846,0.017737377,0.43545052,0.14284354,-0.049922466,-0.03991234,0.74486345,0.08431506,0.46893692,0.058923513,-0.27184322,0.2925306,0.032789808,0.45523283,-0.280663,-0.82417303,-0.028401464,-0.2995239,0.057255726,0.47290656,0.19679289,0.16826487,-0.13098742,-0.28327098,-0.08177822,0.0026655367,0.027391102,-1.2759131,0.23408844,0.087412596,0.9922345,0.5379773,-0.02093743,0.025039298,0.6681381,-0.04407651,0.15144856,0.43739754,-0.06794749,-0.36631462,0.36219284,-0.6817313,0.33787656,-0.10585866,-0.041810717,0.18131661,0.011896483,0.34806427,0.69947785,-0.15886831,0.043459155,-0.101799965,-0.3766989,0.018524865,-0.30562574,0.374371,-0.673951,-0.3344273,0.8351024,0.6499353,0.31148714,-0.27183324,0.05712576,0.11663665,-0.14039487,0.2787092,0.101272054,0.022979084,0.010922573,-0.34586534,0.04134559,0.5284128,-0.31457713,0.061012153,-0.018910887,0.048237823,0.25738078,-0.14411858,-0.100897625,0.08728039,-1.0223566,0.056386173,-0.27653107,-0.44554397,0.3506771,-0.03656798,-0.025321579,0.1109068,0.10943537,-0.18350665,0.3054378,0.25587615,0.5828204,0.11751185,-0.08301496,-0.2776439,0.31011686,0.087637015,-0.10980302,0.09557549,0.13185698,0.0054946244,-0.55937773,0.43814468,-0.18508805,-0.30667767,0.11349874,-0.00957562,-0.03824131,0.5213221,0.075215235,-0.1655257,0.040437575,-0.15701509,-0.42392534,-0.17258798,-0.09380073,0.20513256,0.17772433,-0.19286492,-0.16070226,-0.23889765,-0.10736041,0.18988916,0.077339545,0.3878858,0.2250701,-0.03326444,-0.59462243,-0.036572672,0.36089087,0.58268845,0.011221571,-0.009299108,-0.16861789,-0.18064904,-0.36707407,0.37220138,-0.056459367,0.2685148,0.04353833,-0.15626495,0.75074166,0.059422262,0.9890467,0.080241896,-0.28458542,0.15496223,0.4102296,-0.16843435,-0.25979093,-0.43891856,0.8700202,0.5574516,-0.06953894,-0.024160037,-0.42384687,0.040779628,0.20042598,-0.2432599,-0.09498435,0.052997977,-0.63923585,-0.058940653,0.11367402,0.27530336,-0.07992971,-0.1639949,-0.20820975,0.42119446,0.09655522,0.2335098,-0.5447662,-0.2635932,0.35722446,0.24006759,0.13033149,0.23082092,-0.43767506,0.19808123,-0.53553826,0.21873371,0.10943936,0.081981175,-0.44449267,-0.29118702,0.22788183,0.12120391,0.37867182,-0.3161493,-0.4144593,-0.3737146,0.3042578,-0.016168794,0.11473619,0.52428854,-0.31445488,0.10089306,0.00953647,0.35320574,0.84137946,-0.09435071,-0.023840997,0.32747707,-0.4100568,-0.61768085,0.40885434,-0.3892115,0.19355848,-0.088222064,-0.21255136,-0.53333956,0.116388574,0.16544703,0.04865965,0.05061468,-0.78135777,-0.10142914,0.18211928,-0.26568824,-0.109865144,-0.2527025,0.011914372,0.5877322,-0.12282985,-0.4290305,-0.101425156,0.12104424,-0.1487267,-0.4346529,0.045568552,-0.35018602,0.1825545,-0.29442883,-0.39644024,-0.2537186,0.11124651,-0.44160175,-0.09272896,0.04734775,-0.33086243,0.04327192,-0.2423393,0.256213,0.81171626,-0.18912175,0.22881119,-0.28986248,-0.57988554,-0.86020416,-0.43320528,-0.0486874,0.29703265,-0.06795307,-0.6863394,-0.10927836,-0.32643345,-0.17089723,-0.080144,-0.5044145,0.5452873,0.18870182,0.33913857,-0.13264325,-0.8240994,0.2685534,0.35633895,-0.03106778,-0.4416178,0.3686926,-0.083912954,0.96024275,0.06619579,0.09945665,-0.075628206,-0.6454206,0.07925824,-0.15272827,-0.11943602,-0.5930434,0.14224811,699 -510,0.38297397,-0.11901475,-0.5297335,-0.1567281,-0.38304713,0.32699713,-0.22520173,0.17315365,0.13475904,-0.3008408,-0.019711224,-0.1263782,-0.11456508,0.4257029,-0.058072954,-0.6193755,-0.06773762,0.1215723,-0.66679466,0.20639388,-0.537642,0.391468,0.12587892,0.33869052,-0.0037873217,0.35075498,0.09849286,-0.104378715,-0.044085275,-0.12678146,-0.17022023,0.18169157,-0.69609004,0.33398262,-0.027712574,-0.20803162,-0.016429828,-0.33228683,-0.2193209,-0.5370995,0.07462843,-0.6275426,0.50772,-0.1869433,-0.37749228,0.09696839,0.07314359,0.30392852,-0.36087862,0.1539468,0.29495552,-0.32518512,-0.11928852,-0.17626844,-0.1320344,-0.41350156,-0.5208639,0.12743394,-0.5855815,-0.10267218,-0.2748406,0.34315544,-0.27844375,0.07395661,-0.21021672,0.27846745,-0.3744333,0.17662399,0.091196455,-0.3609179,0.059640963,-0.36372358,-0.012271634,-0.074755564,0.47086403,-0.09603398,-0.103448644,0.21523316,0.23318996,0.53211844,0.080070175,-0.1370228,-0.3111925,0.021155205,0.023330102,0.56765085,0.03590994,0.056312732,-0.20717396,-0.10108487,0.08030736,0.024841318,-0.1029846,-0.44900855,-0.12626676,-0.13613394,-0.14199796,0.21957932,0.38796434,-0.4300637,-0.2641577,0.47821346,0.5512377,0.038490508,-0.094471574,0.22923239,-0.035278775,-0.44923708,-0.18647923,0.028787728,0.17294589,0.37889522,-0.12727323,0.23976037,0.7185206,-0.053014882,-0.18683107,-0.07397575,-0.19700532,0.18443336,-0.052661873,0.075544156,0.13256608,-0.3552144,0.0031853977,-0.15070592,0.599866,0.045533687,-0.8921815,0.3819073,-0.48100743,0.061087966,-0.054289598,0.6617042,0.57007724,0.6339625,0.04670947,0.8167887,-0.57908183,0.13406242,-0.120657526,-0.33500168,0.28629443,-0.1367005,0.04300036,-0.4412848,0.13993622,0.036276765,-0.11741359,0.07144814,0.32838535,-0.4977059,0.07188548,-0.014738483,0.6644951,-0.4564323,-0.13444258,0.8393653,0.87736833,0.8887309,0.04883575,1.1472569,0.3384726,-0.11288314,-0.012119992,-0.31664804,-0.5707449,0.18907067,0.25398323,0.49469092,0.24698652,0.24466899,0.095696546,0.45048422,-0.1574811,0.09052635,-0.04522168,0.14457214,-0.03409266,-0.07673855,-0.4018836,-0.25138956,0.24893482,0.03735229,-0.0034512195,0.2151996,-0.17780153,0.51471585,0.09943409,1.6238955,0.014085135,0.137359,0.024944434,0.29954317,0.09120782,-0.25810736,-0.3089059,0.31606868,0.25850698,0.016799824,-0.48115936,0.06580081,-0.03277686,-0.39432064,-0.19701378,-0.38496855,-0.16082719,-0.27933395,-0.32020584,-0.32345673,0.14978136,-0.36801574,0.45136887,-2.6371498,-0.15797165,-0.04255027,0.3699285,-0.20440365,-0.3148841,-0.24668743,-0.42622867,0.22236614,0.3698623,0.35815287,-0.5046899,0.5338826,0.27910724,-0.34256145,-0.40567657,-0.5200411,0.0728312,-0.012589016,0.29019952,-0.07125096,-0.15497448,-0.2839335,0.13281408,0.5920618,-0.23302807,0.042261712,0.41340154,0.5065325,0.08523987,0.568587,0.18578447,0.6289822,-0.36651132,-0.10979407,0.48441124,-0.47972283,0.26504645,0.07052762,0.12968704,0.18273766,-0.5672368,-0.95712996,-0.71439457,-0.20832768,1.2880555,-0.34786105,-0.3859054,0.25586095,-0.1262731,-0.21900983,0.10969533,0.4248305,-0.041910846,0.09883637,-0.6626533,-0.03363187,0.038616158,0.42779636,-0.033478655,0.04098583,-0.4480944,0.6117624,-0.23568828,0.5128082,0.38709313,0.1400417,-0.08123089,-0.4050754,0.1596284,0.9366684,0.23551694,0.07436273,-0.10721363,-0.28194267,-0.07711063,-0.23770653,0.026557472,0.50083894,0.65167254,0.10654224,0.18475106,0.36324903,-0.27130514,0.02611007,-0.10658639,-0.26073653,-0.048785765,0.105018124,0.5291275,0.5987703,0.015221357,0.4326236,-0.20190622,0.3225005,-0.022928638,-0.5828071,0.3323412,0.62142956,-0.124691926,-0.16621317,0.415422,0.5134583,-0.22120926,0.35951048,-0.47521725,-0.5200768,0.52145034,-0.23544884,-0.33327442,0.15546764,-0.34035397,0.03122063,-0.8189871,0.2516629,-0.043636374,-0.69434124,-0.31543404,-0.15151851,-3.508855,0.10694488,-0.08504406,-0.08008065,0.0073780078,-0.12728393,0.2634825,-0.43603626,-0.46620846,-0.052777447,0.10577851,0.50629693,-0.03908677,0.12544979,-0.35218722,-0.18156753,-0.25355303,0.3001949,0.21238446,0.2801884,0.09682826,-0.4099312,-0.04654273,-0.3546176,-0.3242199,-0.1202452,-0.6066733,-0.4682948,-0.03350963,-0.46406966,-0.24085984,0.67833096,-0.56131727,0.023546586,-0.23132896,-0.019837903,-0.14538506,0.28624323,0.18480523,0.13110778,0.1991878,-0.10168549,-0.18740891,-0.35247073,0.32226387,0.14657159,0.28350323,0.4493156,-0.0962344,0.039205737,0.5327242,0.580027,-0.11328664,0.6857751,0.15001634,-0.0018548529,0.3069785,-0.3067026,-0.26537305,-0.5377168,-0.23212759,-0.09693825,-0.49810356,-0.4566122,-0.016288374,-0.3812115,-0.80443394,0.45006052,0.10302329,-0.13443194,-0.07045622,0.23038585,0.321616,-0.18850766,0.012842702,-0.23898374,-0.15567705,-0.43861216,-0.42879924,-0.51377267,-0.7191621,0.10184047,1.2236655,-0.21790127,0.00956479,0.048721373,-0.2751506,0.13514556,0.07879793,0.23891743,0.26947358,0.39808777,-0.11340104,-0.74907064,0.4230885,-0.36176863,-0.0638848,-0.52070093,0.15663056,0.6182815,-0.7107844,0.4007422,0.24447937,0.21971162,0.28020072,-0.36727622,-0.26333886,-0.12692456,-0.3010276,0.529511,0.10800027,-0.74880743,0.49803376,0.18016972,-0.32479078,-0.63451284,0.2521735,-0.12449447,-0.25210133,0.26405993,0.26202464,0.07275995,-0.13329802,-0.15633285,0.08385544,-0.47923395,0.31052002,0.30339304,0.03361649,0.40759373,-0.12512158,-0.28291008,-0.5525125,-0.23192786,-0.38275394,-0.31491297,0.008613068,0.056950778,0.109107025,0.1134276,-0.041524563,0.41039133,-0.31517252,0.017058058,-0.21500841,-0.18516943,0.24389145,0.4176124,0.40818328,-0.5806371,0.51234156,0.07679941,0.08283561,-0.08106971,0.015200428,0.49498335,0.1918814,0.28328195,-0.05018315,-0.029357124,0.19883636,0.632189,0.2543373,0.42098117,0.021215558,-0.33616713,0.34288126,0.2096294,0.07913227,-0.09876068,-0.2842749,0.18489094,-0.09924542,0.13354704,0.44903368,0.22316559,0.40095204,-0.14601925,-0.051059216,0.2410629,0.060777444,-0.15004107,-0.8889614,0.32129762,0.2580728,0.63335484,0.43889615,0.10742052,0.21553986,0.7156983,-0.37782153,-0.034541097,0.21848114,-0.07201641,-0.50566715,0.46445322,-0.7392397,0.575061,-0.05039572,-0.043700185,0.33063227,0.14286636,0.40248156,0.94722545,-0.0024119976,0.080570586,-0.0005885256,-0.16890094,-0.11549092,-0.34920135,0.13171946,-0.5543571,-0.20561549,0.68214375,0.40290862,0.36404794,-0.2932475,-0.041663017,0.00040182046,-0.14523736,0.15075143,-0.0674444,-0.0006547655,-0.12033878,-0.58076346,-0.24504802,0.6091772,-0.031398807,0.048635487,0.2078582,-0.41469285,0.3361058,-0.21502063,-0.11400648,-0.16217883,-0.5863017,0.0025981325,-0.2885634,-0.40986356,0.20196459,-0.21361949,0.2968047,0.20313014,0.026213666,-0.38409504,0.3678184,0.14874911,0.9223938,0.1484622,-0.18875666,-0.27422538,0.11937511,0.36103132,-0.31879276,-0.20026936,-0.40992785,0.057933692,-0.55262846,0.26395696,-0.2840419,-0.37777156,0.20800689,-0.058715668,0.09428905,0.50391585,-0.15338795,-0.08066527,0.2338941,-0.048412126,-0.22885658,0.046766542,-0.44452652,0.20392597,0.17552109,-0.16381566,0.05899508,-0.12156701,-0.09098259,0.3512551,0.030184206,0.2316697,0.15192555,-0.056148164,-0.3363683,0.13483237,-0.098829746,0.50158346,0.12377984,0.021098567,-0.19872722,-0.2593875,-0.25375432,0.4567859,-0.22551608,0.119161405,0.045850437,-0.45917517,0.68877804,0.15703215,1.0656127,-0.0029842514,-0.255765,0.293572,0.44818118,0.16392598,0.121349946,-0.39244762,0.9146751,0.5972648,-0.23251761,-0.13748981,-0.36512086,-0.4382944,0.18141492,-0.3005713,-0.26266766,-0.24579771,-0.73150545,-0.21828482,0.21720779,0.10734335,0.1439438,0.017581854,0.012401862,0.10654373,0.09283214,0.2317673,-0.4478099,-0.044180874,0.40715113,0.22352754,-0.06408657,0.055585522,-0.40374157,0.50746137,-0.64777917,0.13461766,-0.37471384,0.032652266,-0.11548454,-0.21087585,0.19240756,0.09614546,0.2761604,-0.22548996,-0.36187217,-0.23426792,0.5809843,0.22589776,0.3737099,0.8392066,-0.24126934,-0.07200172,0.0863939,0.3691493,0.9508634,-0.16069625,-0.040952466,0.49557087,-0.19648139,-0.40464973,0.163416,-0.38206956,-0.045162234,-0.047224384,-0.3487649,-0.23138714,0.35475636,0.15605631,0.039685786,-0.012910669,-0.55474913,0.042999856,0.37484017,-0.2613835,-0.36735612,-0.364997,0.30089924,0.7647233,-0.33955044,-0.3421808,0.11443139,0.27224973,-0.29627922,-0.45324564,0.06670568,-0.3134862,0.26612732,0.14032096,-0.3481784,-0.099337526,0.20993027,-0.35855347,0.04797786,0.35901147,-0.32034907,0.07287647,-0.3434484,0.031077249,0.83700037,0.09096726,0.19087812,-0.56072664,-0.4630402,-1.0064573,-0.25221342,0.2876094,0.19877096,-0.12718007,-0.4389861,-0.12966384,-0.21812014,-0.2308971,0.13107468,-0.6649315,0.40048426,0.08241449,0.3732863,-0.15123466,-1.0595045,0.00828141,0.24711125,-0.32308728,-0.54655844,0.4904151,-0.15482304,0.66699743,0.13591751,0.12114533,0.24472828,-0.6332813,0.35193974,-0.3607678,-0.04715148,-0.6446249,0.013071219,700 -511,0.6278226,-0.24652337,-0.86753464,-0.16351481,-0.39615697,-0.16061448,-0.26639155,0.70694196,0.2426006,-0.5105067,-0.07532633,-0.22102544,0.009484951,0.37416792,-0.33002558,-0.5868072,0.057788048,0.2293202,-0.46719787,0.3779314,-0.4458798,0.32719177,-0.06327882,0.6093114,0.41806778,0.17352083,-0.02633396,0.017196119,-0.1844629,-0.3723371,-0.01933996,0.31259987,-0.61147016,-0.12946682,-0.38512823,-0.691233,0.016145673,-0.56255835,-0.35204294,-0.9807671,0.32504076,-0.94761616,0.6788781,-0.07798934,-0.4298099,-0.049721126,0.27442676,0.5502451,-0.114354596,0.04841016,0.22490497,-0.059908714,-0.009300232,-0.056209367,-0.39361715,-0.5607234,-0.71362495,0.031798363,-0.5896815,-0.18188722,-0.17641978,0.20194547,-0.3990629,0.08640273,-0.036562394,0.35513535,-0.43331823,-0.04277116,0.40030575,0.0032783172,0.46369413,-0.56559527,-0.21253633,-0.20798193,0.16808428,-0.29109883,-0.32495475,0.36942926,0.17668393,0.42789656,0.025931215,-0.331595,-0.45822445,0.051641982,-0.0041577048,0.45748192,-0.20127062,-0.53472847,-0.23829405,0.08539053,0.4955011,0.547713,0.33129758,-0.011329161,-0.15378283,0.060275044,-0.2037797,0.54830927,0.5418027,-0.22341397,-0.072958514,0.16878518,0.53372425,0.30213472,-0.19051245,0.20180406,0.016818164,-0.801416,-0.24578984,0.01014878,-0.07893867,0.6510005,-0.21851332,0.20905232,0.7767262,-0.27620903,0.051853653,0.13540904,-0.0009817694,-0.15262449,-0.38437414,-0.4521893,0.25879398,-0.6522258,0.21571068,-0.3528239,0.6911659,0.17783153,-0.72794634,0.22606936,-0.7183007,0.110883966,-0.1357352,0.50096846,0.5369052,0.59843266,0.43097037,0.7207696,-0.3831637,0.15928528,-0.06696876,-0.2829727,0.173595,-0.3243023,-0.052568663,-0.36995572,-0.057991523,-0.25706413,-0.14610447,0.17612478,0.5246495,-0.62386376,-0.19823907,0.19656841,0.89411986,-0.25597328,-0.038046304,1.0421827,0.88444954,1.179562,-0.04505774,1.223368,0.16157253,-0.25182888,0.13742414,0.029688554,-0.8682565,0.4320566,0.21069768,-0.39815232,0.39109573,-0.07889917,-0.06844345,0.506948,-0.39634603,0.07015018,-0.089714155,0.15039687,0.07821203,-0.35484666,-0.50640196,-0.18157098,-0.14948659,-0.04660556,-0.040958803,0.3016023,-0.10592417,0.54113376,-0.120141365,1.6479479,-0.04812514,-0.020904666,0.054002617,0.63265723,0.30107266,-0.11710056,-0.060931463,0.16264068,0.33865452,0.26255256,-0.50310236,-0.0049475604,-0.30504984,-0.3452364,-0.18786505,-0.34308103,-0.1821123,-0.3347849,-0.6420333,-0.187492,-0.27912787,0.0018952148,0.23359391,-2.3271995,-0.22187842,0.041333113,0.36427027,-0.18047084,-0.50113314,-0.05211743,-0.47989413,0.6282317,0.20778668,0.6236997,-0.65693825,0.5425931,0.57466894,-0.5304423,0.09761735,-0.85191405,-0.2583063,0.0054039573,0.17771915,-0.062051963,-0.04218459,0.09235704,0.14402911,0.58141416,0.037098072,0.16328406,0.16282283,0.5176167,-0.14596388,0.7561377,-0.07065606,0.51873094,-0.46219674,-0.16761167,0.3885646,-0.56040925,0.20963347,0.053683188,0.067637816,0.5900759,-0.6171592,-1.2192641,-0.6306998,-0.00974851,1.018185,0.0012331988,-0.5091565,0.35341066,-0.6284129,-0.26133445,-0.15625106,0.4377902,0.015401376,0.14080533,-0.7734911,-0.30772144,-0.20317258,0.064663246,-0.039642725,0.00076285854,-0.3846639,0.5229911,-0.036957927,0.36072955,0.46162063,0.066170566,-0.38997468,-0.63630706,0.066658296,0.8921527,0.43301484,0.25443015,-0.5134615,-0.23248313,-0.6433464,0.08681924,0.070898876,0.5136085,0.9874217,-0.2896773,0.29099828,0.24510185,0.03582507,0.040153746,-0.19647631,-0.32241008,-0.23214464,0.030761344,0.5969831,0.7862124,-0.1283782,0.52848774,0.0720789,0.4496112,-0.25079653,-0.51922977,0.41086945,0.97382396,-0.26420715,-0.36138105,0.7412219,0.40932092,-0.2949215,0.5379152,-0.56277937,-0.33050388,0.4758155,0.018602878,-0.46912646,0.3401695,-0.35943264,0.22672309,-1.1265358,0.17052677,-0.41452974,-0.35476547,-0.63514054,-0.23857856,-2.639904,0.26452222,-0.16759416,-0.08649974,-0.1304127,-0.3354225,0.24969332,-0.6528853,-1.0303261,0.08647919,0.064157225,0.9429775,-0.24040283,0.10834419,-0.23810254,-0.47316146,-0.6114353,0.1843325,0.4228408,0.40519434,0.005442696,-0.5853448,-0.20612742,-0.25814864,-0.65755403,0.010644155,-0.68959624,-0.57225883,-0.20184088,-0.6053124,-0.22595611,0.7813512,-0.038725268,-0.07963203,-0.021706391,0.01339273,0.062144835,0.35839507,0.14144358,0.10767073,0.061413713,-0.086071506,0.18504652,-0.1242251,0.120625235,0.08675812,0.39900407,0.18587269,-0.15967034,0.28385708,0.61537653,0.97469467,-0.22518624,1.017146,0.41025022,-0.12263213,0.37353134,-0.32116,-0.54144126,-0.5711117,-0.12115234,0.021783292,-0.52799803,-0.3898625,0.07355434,-0.48483422,-0.8287676,0.7836782,-0.046568792,0.16839148,-0.117319405,0.3272848,0.42411628,-0.22306763,-0.24406824,-0.071584694,-0.10008587,-0.59219253,-0.24784775,-0.6300208,-0.59282696,-0.11704322,1.3640788,-0.29884857,0.16658814,0.28780732,-0.13274732,0.06424581,0.29826227,-0.109413676,-0.032865316,0.5025387,0.05041682,-0.6606107,0.4231768,-0.13649954,-0.18862788,-0.5698744,0.19930159,0.67965287,-0.6720155,0.48920602,0.534896,-0.040714234,-0.19653542,-0.7770515,-0.055976212,0.052945577,-0.12753119,0.6216459,0.24713561,-0.74048054,0.43388197,0.5517799,-0.3643777,-0.64781106,0.6389803,-0.032027364,-0.35289845,-0.11028025,0.38457245,0.34035248,0.037915833,-0.22711244,0.3046628,-0.47859457,0.17203319,0.41375658,-0.11969086,0.29586488,-0.15457387,-0.22165717,-0.8344824,0.10834515,-0.5152166,-0.30188012,0.33587974,-0.2078661,-0.09813171,0.33787945,0.22536385,0.29779157,-0.30636787,0.09277164,-0.37004235,-0.35886368,0.5262945,0.5499841,0.6460834,-0.63796335,0.6830135,0.042969696,-0.20198855,0.20458661,0.043614004,0.50908965,-0.20384142,0.50270075,0.14627568,-0.17522301,0.018714858,0.8582633,0.15307185,0.5380506,0.17321207,-0.050507102,0.025460958,0.26175597,0.111870944,0.08598133,-0.5970551,0.06770869,-0.39516068,0.1222134,0.6073069,0.0061144745,0.27248865,-0.032863114,-0.2629014,-0.011306301,0.078397475,-0.1657406,-1.6637238,0.49627763,0.33014035,0.9567889,0.34999517,0.21470879,0.06754649,0.60755444,-0.26304454,0.08481396,0.5085921,0.24488424,-0.5246872,0.70998544,-0.708807,0.65296507,0.06278794,0.11647241,0.035338186,0.013430566,0.83599436,0.79549915,-0.11027842,0.09807398,0.12145493,-0.28771183,0.29074362,-0.48451433,-0.26015002,-0.42306975,-0.07942691,0.8982352,0.5020424,0.25745586,-0.23357202,0.014347191,0.22234845,-0.18095085,0.21728542,-0.062017787,0.055678222,-0.26472965,-0.42814097,-0.1649627,0.5304231,-0.050582033,0.23329644,-0.14997776,-0.23411928,0.262401,0.004119047,0.11572487,-0.14117841,-0.8791267,-0.10824449,-0.6661004,-0.4538017,0.46041086,-0.026347408,0.13813497,0.3379186,0.16887853,-0.33641553,0.52011645,-0.24548396,0.6644283,-0.29385018,-0.123025335,-0.27097228,0.4014332,0.34320143,-0.35872445,-0.113947354,-0.24610989,0.23598692,-0.40987292,0.40290564,-0.03146183,-0.41280404,-0.037639894,-0.01243404,-0.002216816,0.42524937,-0.23687923,-0.07194721,0.18551473,-0.049840193,-0.24663426,-0.49870148,-0.06082651,0.30485147,0.25494316,-0.13949683,-0.16185634,-0.052369673,0.13572028,0.61429274,-0.22399876,0.4007067,0.3901072,0.06413198,-0.42942983,-0.16730905,0.13594548,0.762149,-0.22021064,-0.19251844,-0.5512441,-0.41412717,-0.37121874,0.40816876,-0.15323506,0.42141533,0.18727414,-0.17927934,1.0042266,0.24587381,1.4071983,-0.10839568,-0.53458863,0.20091034,0.5677935,-0.14266372,-0.18532038,-0.43183336,1.1224434,0.5033338,-0.4228613,-0.1244903,-0.4048849,0.08045776,0.14259394,-0.29655328,-0.22196515,-0.14686587,-0.45190805,-0.08339083,0.3639405,0.39435324,0.24810359,-0.3700152,0.23405369,0.3754959,0.055102173,0.24130094,-0.4775956,-0.26378882,0.2086779,0.39140075,-0.09405351,0.04377688,-0.51252854,0.23865774,-0.4369877,0.05497024,-0.32601306,0.25600153,-0.15502606,-0.5548641,0.14713793,-0.09806323,0.22192442,-0.3667622,-0.30416885,-0.21267177,0.39070374,0.29753837,0.20389234,0.58086926,-0.36682177,0.029359937,-0.061875217,0.51893187,1.171872,-0.15630773,-0.21946847,0.42325273,-0.24568006,-0.6824713,0.3983294,-0.5647283,0.34555158,-0.014943208,-0.2777249,-0.816004,0.2821877,0.25286692,0.013817276,0.020086978,-0.77717,-0.14739256,0.22012194,-0.19173169,-0.2913217,-0.5665299,0.053452943,0.60228014,-0.047240566,-0.4128324,0.2130883,0.24873301,-0.13860382,-0.42165127,0.066544555,-0.2380882,0.36673215,-0.058589887,-0.3688793,0.013153733,0.05323196,-0.5327821,0.19321713,0.2573951,-0.27495745,0.15924132,-0.48350582,0.12071277,1.0859663,-0.24850687,0.22631809,-0.3640654,-0.58375806,-0.9163408,-0.27433485,0.3259774,0.21726668,0.064359196,-0.7792966,-0.034560256,-0.10817834,-0.32925272,-0.17571926,-0.20765814,0.532078,0.14671192,0.37508184,-0.22332086,-0.8735605,0.09970993,0.14813451,-0.39789486,-0.50312865,0.7100724,-0.074474946,0.8459068,0.24472892,0.23634887,0.36786053,-0.42243895,0.12913361,-0.13770679,-0.11728968,-0.6429003,-0.14517891,703 -512,0.4108006,0.027153837,-0.5347929,-0.18015395,-0.3467307,0.10155785,-0.29969096,0.3008148,0.25541663,-0.27437225,-0.05759445,0.030211091,-0.063098684,0.24495426,-0.2118129,-0.83324236,0.10577374,0.11594464,-0.50893056,0.4230369,-0.683665,0.46830907,-0.038777772,0.4417726,0.113940954,0.21609107,0.27348712,-0.028102126,0.08343924,-0.1440644,-0.061309893,0.2525173,-0.38699993,0.24408214,-0.05925421,-0.3731559,0.21730316,-0.3170457,-0.3069894,-0.64688265,0.34335294,-0.5545742,0.6150047,-0.035084885,-0.3467072,-0.0004380558,0.08811588,0.14331491,-0.30321822,0.13635686,0.22855392,-0.13238941,0.12025001,-0.10437585,-0.32131448,-0.34991163,-0.48453528,0.044704325,-0.65294474,-0.0044031567,-0.23048863,0.12827256,-0.2526553,-0.09341186,-0.05235613,0.42689368,-0.46333537,-0.08581044,0.17364177,-0.24336432,0.14398293,-0.6139931,-0.1322216,-0.19227205,0.24595734,0.024205236,-0.22612739,0.09702989,0.27929676,0.5621139,-0.050898526,-0.23091711,-0.315412,-0.041022796,-0.052798003,0.45233843,-0.20767592,-0.3108469,-0.25218397,0.05193576,0.36342305,0.23464309,-0.0050176894,-0.30583996,0.12724149,0.13360246,-0.26175162,0.39486176,0.5842284,-0.366743,0.017962886,0.27513537,0.31176573,0.19562873,-0.29284948,0.25484675,-0.18142311,-0.42540613,-0.36382192,0.05169945,-0.041110676,0.5010747,-0.12034625,0.25911474,0.77225524,-0.06255149,0.06562095,0.08808319,-0.029649356,0.027157813,-0.17231897,-0.25937226,0.13424702,-0.60293823,-0.046116013,-0.28465378,0.78579223,0.04364762,-0.91084397,0.30081624,-0.33340773,-0.006493281,-0.23405746,0.5904342,0.8004114,0.34491596,0.23597778,0.7541114,-0.62058926,-0.025913358,-0.06761493,-0.33275992,0.067870215,0.11687374,-0.0692652,-0.5556889,0.023914834,0.08158622,0.039746672,0.09110195,0.40336698,-0.2739564,-0.08625329,0.13699178,0.6269737,-0.40907717,0.036249433,0.7257877,1.1962173,1.0221546,0.03267808,1.3894018,0.24941099,-0.0829939,-0.04530292,-0.20947851,-0.37705517,0.26783013,0.29653004,0.06569848,0.38070577,0.18688916,0.039526742,0.40255076,-0.34275085,-0.07866552,-0.070038274,0.25511387,-0.07228667,-0.027498705,-0.51389444,-0.3106845,0.29310945,0.03837155,-0.07390659,0.3308863,-0.32647544,0.16916521,0.021498604,1.1307248,0.12648647,-0.021468094,-0.056115963,0.4833839,0.22782214,-0.14857273,-0.10947798,0.24171354,0.38703975,-0.17848007,-0.5561836,-0.13026746,-0.32530436,-0.2582974,-0.2339579,-0.3412061,0.13295032,-0.0085265385,-0.4008575,0.02222239,0.061630584,-0.4061435,0.3298545,-2.5520685,-0.20001051,-0.05442855,0.3102182,-0.061339088,-0.29820728,-0.31126875,-0.38823435,0.49347094,0.3730248,0.38260278,-0.5571769,0.6475776,0.41161856,-0.3863864,-0.10806847,-0.6813756,0.07906977,-0.11526235,0.3069137,-0.019034231,-0.12262833,-0.30491453,0.3511044,0.72628677,0.13283229,-0.07165742,0.16569135,0.51361233,-0.018841846,0.5686204,0.17061646,0.6032235,-0.14284791,-0.12424411,0.3307361,-0.33567217,0.19630419,-0.020605573,0.1802281,0.28132802,-0.58707553,-0.90053356,-0.5978937,-0.19144294,1.2396344,-0.3280047,-0.29016876,0.20743595,-0.10666716,-0.43387747,0.11714006,0.46397096,-0.25785384,-0.1576959,-0.71055734,-0.0018179034,-0.08113616,0.094314896,-0.03877463,0.16089404,-0.43104026,0.6299769,-0.14435744,0.5603681,0.36693308,0.22050102,0.04063999,-0.39828533,-0.0107818935,0.88783836,0.4043387,0.06429952,-0.16542833,-0.061476905,-0.28150377,0.069242366,0.04924398,0.687127,0.74621665,0.007421749,0.08837597,0.3885366,-0.11378402,-0.054837294,-0.13565575,-0.38137412,-0.017588003,0.17137241,0.6812646,0.5517407,-0.08365317,0.25396287,-0.086885944,0.22379544,-0.3049685,-0.5054984,0.47219205,0.6917697,-0.1803744,-0.30083826,0.60434806,0.4851906,-0.24241455,0.36863106,-0.46485695,-0.39100996,0.43899217,-0.08087588,-0.44139555,0.190051,-0.33680567,0.10548993,-0.8589496,0.2536872,-0.19502687,-0.6656535,-0.3934055,-0.16433266,-3.7431684,0.28844228,-0.17663145,-0.07082425,0.003159787,-0.1851007,0.43106732,-0.5288677,-0.4588937,0.007888266,0.078411974,0.49949613,-0.016007176,0.10166131,-0.2068727,-0.34869787,-0.30325958,0.13769475,0.17930166,0.17604157,0.07755579,-0.40501267,0.10198484,-0.36130455,-0.46053734,0.050078224,-0.41659886,-0.26577646,-0.057580434,-0.5016873,-0.30231968,0.7566935,-0.30809903,-0.08652667,-0.34324503,-0.01097118,-0.16648912,0.4598197,0.051553458,0.115766205,-0.008824672,0.007685326,-0.099122,-0.44470173,0.1856016,0.068858474,0.10536437,0.29382586,-0.047169633,0.075169936,0.6733281,0.5475166,0.00070750713,0.7863999,0.33595893,-0.07547349,0.25236887,-0.3252661,-0.42719245,-0.66205376,-0.37408462,-0.2801947,-0.49917945,-0.29618326,-0.08598212,-0.5193294,-0.8234764,0.45379406,0.020308955,0.10316348,-0.05404853,0.35013628,0.36786896,-0.051854126,0.07834131,0.11393224,-0.2532081,-0.4737161,-0.35264874,-0.6375543,-0.5365197,0.056631114,1.1778917,-0.23073888,-0.07786492,0.051710155,-0.23143546,0.20452131,0.019464804,0.23348467,0.30199528,0.34514594,-0.10714321,-0.79760796,0.15101947,-0.2587894,-0.14741835,-0.55018765,-0.080020264,0.8175689,-0.78448457,0.49012408,0.37924522,0.29255465,0.20641528,-0.61322606,-0.2971991,0.14415632,-0.21064404,0.7849043,0.21211283,-0.6850596,0.5649372,0.22458984,0.03365078,-0.56070405,0.49872175,-0.03987586,-0.25628063,0.0493154,0.3871265,0.0023994383,-0.14370047,-0.058460433,0.09392415,-0.39282137,0.2849162,0.32714358,-0.012620457,0.5373109,-0.23012808,-0.21094629,-0.595115,-0.2906849,-0.53811926,-0.23979361,-0.019980129,0.084396854,0.07940032,0.094345234,-0.10044738,0.5280526,-0.40134484,0.20983465,-0.19016387,-0.14743856,0.4162967,0.562293,0.25026378,-0.40641013,0.5547997,-0.03302518,0.014754193,-0.20665562,0.041873846,0.46830326,-0.017895665,0.36414242,-0.27552012,-0.08864653,0.23035584,0.6308711,0.109556556,0.2690883,0.23295514,-0.17443343,0.2704195,0.20957708,0.08711954,-0.025242975,-0.19750585,-0.115946785,-0.06752755,0.22369723,0.42987913,0.21026714,0.19457535,-0.14073119,-0.18099764,0.19342181,0.05542127,-0.132961,-1.1008551,0.46746174,0.04539763,0.5210269,0.5085668,0.07499652,-0.069720425,0.40288034,-0.23901953,-0.01165746,0.26299968,0.1306177,-0.34249535,0.4955218,-0.48955205,0.47342825,-0.18864958,0.01833855,0.13684419,0.09971703,0.43645737,0.9225138,-0.110543236,0.14336212,0.029608488,-0.21340421,0.011660546,-0.37036437,0.037637915,-0.55115044,-0.3387564,0.6917795,0.44971734,0.36026773,-0.26623592,-0.12943259,0.074465096,-0.27008963,0.02094104,-0.1912835,-0.21395716,-0.08680211,-0.61330366,-0.2509682,0.4542572,0.22600552,-0.074492626,0.07100151,-0.26471975,0.37354925,-0.028839128,0.07749466,0.022784602,-0.5501529,-0.113961525,-0.38500944,-0.35900062,0.27435437,-0.4006982,0.18583557,0.13544616,-0.0044741714,-0.14635244,0.18703993,0.24792446,0.64227784,0.049864184,0.0063256538,-0.26676273,0.066635825,0.28825697,-0.21134436,-0.29634887,-0.53722537,0.23768513,-0.61220604,0.34917387,-0.2230154,-0.08920104,-0.073011056,-0.10776632,0.08691665,0.42659453,-0.30786297,-0.03852092,0.070662804,0.05845248,-0.34152454,-0.15875128,-0.39532542,0.13736561,-0.0072896904,-0.11115072,0.07821464,-0.1390359,-0.056287177,0.46196643,0.20538117,0.265367,0.25003722,0.019506028,-0.263324,-0.034600895,-0.1283542,0.37179115,0.06584926,-0.13070993,-0.33322778,-0.3340138,-0.2219241,0.3477982,-0.10832284,0.053895824,0.030023456,-0.2213249,0.75751895,0.27356872,1.1671171,0.0121666575,-0.3295532,-0.018078277,0.60782117,-0.046189975,0.039640512,-0.23544142,0.86176836,0.6460865,-0.28613573,-0.12487374,-0.39147946,-0.24454126,0.12918815,-0.32992026,-0.35040167,-0.16527882,-0.5265399,-0.21030642,0.13317141,0.205985,0.056963716,0.008912499,0.0198817,0.05554056,0.13087982,0.35929778,-0.4826558,0.06572947,0.284943,0.19584033,0.055996396,0.22354157,-0.40785939,0.4360562,-0.7168269,0.11829821,-0.39903656,0.109807685,-0.017781338,-0.40443665,0.21813937,0.043142147,0.34368724,-0.31319502,-0.24237445,-0.23347668,0.5599159,0.14067402,0.2631994,0.5468596,-0.19715439,-0.037367456,0.04702552,0.51013935,1.3143559,0.030802522,-0.14595166,0.3672455,-0.27754903,-0.5840538,-0.020214552,-0.5582407,-0.068909,-0.041686464,-0.37034512,-0.34511757,0.35508293,0.14772223,0.013100207,0.0075994944,-0.46249747,-0.20816827,0.3442616,-0.13190742,-0.26300666,-0.2658689,0.19967565,0.53227425,-0.3982481,-0.36887938,-0.107613854,0.36710343,-0.18025623,-0.6802047,0.08460663,-0.31519952,0.43064648,0.28021044,-0.21340616,-0.053091083,0.26260728,-0.3993998,0.042007107,0.33934426,-0.3693988,0.027364489,-0.27724108,-0.0476172,0.8777547,0.07613747,0.12547459,-0.59745973,-0.4620605,-0.89636964,-0.36547503,0.24010031,0.20185892,-0.04771971,-0.60068935,-0.006566054,-0.19654155,0.094827734,0.07439291,-0.31501958,0.43056494,0.05732092,0.6217616,-0.0941463,-0.91472924,-0.019456562,0.16692637,-0.40081486,-0.50864476,0.56439704,-0.0131161045,0.7193707,0.08872662,0.05700623,0.029319618,-0.52148014,0.30017185,-0.40823784,-0.112309635,-0.69407356,0.103124306,707 -513,0.46161285,-0.41840595,-0.4894437,-0.12007296,-0.29079464,-0.0141175045,-0.33405703,0.35594085,0.20341153,-0.1473827,0.037102196,-0.19495685,0.0922425,0.5646807,-0.053659447,-0.6941519,-0.10015347,0.175842,-0.66294384,0.5423805,-0.48820665,0.20749314,-0.048033457,0.48424548,0.12232899,0.22442698,0.18942425,-0.07802006,-0.0432294,0.00548986,-0.14738424,0.27978107,-0.63681537,0.057782035,-0.2062959,-0.3202858,-0.025270155,-0.33480287,-0.53424746,-0.8251193,0.28515294,-0.8824306,0.6223682,0.0056108236,-0.42386574,0.2738609,0.069628194,0.31734422,-0.33013725,0.08959716,0.23221026,-0.12347996,0.03693477,-0.2751641,-0.25067285,-0.43027854,-0.53145754,0.032530095,-0.60503626,-0.10056448,-0.3487389,0.050873913,-0.36090404,-0.080679454,-0.017367464,0.29539722,-0.5389765,0.1421401,0.19785728,-0.03692318,0.48864192,-0.37777573,0.011022717,-0.17403993,0.22891347,-0.19107379,-0.31692198,0.47059423,0.21615234,0.5162412,-0.10396368,-0.22027089,-0.21397422,-0.04208089,0.2387033,0.4837833,-0.120928206,-0.5846182,-0.17310564,0.05696008,0.229754,0.20888928,-0.09376978,-0.3772752,-0.056571133,-0.033978518,-0.08173429,0.5127884,0.54139745,-0.18081915,-0.34148484,0.33742967,0.5239422,0.300783,-0.025402326,0.06977353,0.05900308,-0.606568,-0.17350508,0.16218415,-0.14711395,0.4161614,-0.18215634,0.25262132,0.69895643,-0.3010647,-0.07579982,-0.03495301,0.1475273,-0.07442439,-0.13027848,-0.22735497,0.18978672,-0.5030332,0.10082054,-0.114484586,0.727411,0.28286755,-0.77268493,0.36947337,-0.5801878,0.18310387,-0.17844772,0.46240166,0.8152942,0.45564574,0.2407439,0.7290869,-0.43381125,0.17207967,-0.06839687,-0.4703753,0.17163834,-0.303978,-0.11655388,-0.6083103,-0.13082455,-0.123257585,-0.13780366,0.10276421,0.43941647,-0.4761622,-0.027178418,0.07772561,0.87501097,-0.3619783,0.091616236,0.6772607,0.82387966,1.0686637,0.060745563,1.1978923,0.48915443,-0.19862936,0.26299438,-0.3379565,-0.89207774,0.3499619,0.40518734,-0.11345839,0.37175855,-0.0769582,-0.0432435,0.36024687,-0.45134035,-0.011901029,-0.28753275,0.35373512,0.021101091,-0.12356254,-0.43931597,-0.23554243,-0.14569093,0.14850077,-0.047462743,0.29700318,-0.27474317,0.39181206,-0.10180984,1.7158874,-0.0432378,0.020456646,0.0067613125,0.6655016,0.34737262,-0.1199217,-0.21963826,0.40928128,0.5024318,0.17772116,-0.63928664,0.070808284,-0.2777648,-0.33765936,-0.25159267,-0.4010138,0.1514179,-0.025140366,-0.35472903,-0.11024121,0.0330402,-0.2043535,0.5258099,-2.4295154,-0.24205944,-0.090073586,0.30875593,-0.2852983,-0.22895236,-0.18446973,-0.542966,0.4732538,0.36219385,0.5845851,-0.61226565,0.24882309,0.43939263,-0.5811078,-0.005498026,-0.57125413,-0.25513536,-0.013518184,0.45535606,0.037027467,-0.002774294,0.06040094,0.34079763,0.5041296,-0.060110617,0.04515981,0.23914792,0.47123787,0.008474375,0.31983152,-0.14202921,0.4213381,-0.35889846,-0.21497048,0.37746826,-0.11793144,0.17623207,-0.13094391,0.09295504,0.5030091,-0.561556,-1.074982,-0.6772918,-0.1708653,1.1631584,-0.33648762,-0.5517942,0.2769031,-0.24801074,-0.1516495,-0.025583152,0.38585955,-0.17368329,0.016610775,-0.83570117,0.11098728,0.08924588,0.2960799,0.08499158,0.0012742153,-0.2496738,0.6029459,-0.094870165,0.1522832,0.30824643,0.1909175,-0.24004495,-0.5620938,0.12479354,0.85426795,0.34434208,0.20797603,-0.33188847,-0.32818142,-0.22616246,-0.112352096,-0.01220469,0.4615079,0.7999788,-0.19337884,0.1587462,0.22426479,-0.08410752,0.02865326,-0.14630063,-0.38687468,-0.046375293,0.11773548,0.59365445,0.6402255,-0.15215883,0.6016942,-0.17323466,0.24251021,-0.010883545,-0.5758134,0.5744323,1.2786477,-0.10016961,-0.22393467,0.54775757,0.3521294,-0.40706617,0.538315,-0.6266752,-0.35820267,0.55062443,-0.27709147,-0.46925783,0.29407176,-0.28849274,0.028036179,-0.8146642,0.45798138,-0.2115452,-0.4723803,-0.53627056,-0.045351595,-3.501631,0.25911304,-0.22358835,-0.21029194,-0.03727936,-0.07640338,0.25417545,-0.4409925,-0.52546483,0.20474449,0.05337284,0.6604063,-0.07618807,0.19363543,-0.24701364,-0.15447028,-0.508601,0.125353,0.21354617,0.3861966,-0.015790116,-0.6411455,-0.120215654,-0.11523248,-0.5188498,0.14395416,-0.6596521,-0.41421345,-0.3086808,-0.6332095,-0.13290167,0.6397359,-0.16280961,0.0363431,-0.31560868,-0.03040185,-0.04306829,0.37693027,0.25736114,0.11194629,0.117511205,0.01105197,-0.11323416,-0.2900651,0.251104,0.14181344,0.157716,0.16395462,-0.021728098,0.11094781,0.7035659,0.6528144,-0.12682042,0.7891764,0.6239683,-0.14600189,0.37697092,-0.2869875,-0.2601459,-0.5125917,-0.36389396,-0.13883318,-0.47282907,-0.3966655,-0.12960298,-0.35586086,-0.6440229,0.5761862,-0.06310286,0.14369254,0.013492976,0.17195709,0.42217064,-0.19711031,-0.0154896015,-0.2127244,-0.20208241,-0.5724903,-0.21136226,-0.6296056,-0.5635732,0.12342842,1.0082654,-0.18870807,-0.07973907,-0.15066762,-0.26604575,0.041240036,0.005407359,-0.13834989,0.27113074,0.23036265,0.03807888,-0.8096402,0.4694269,0.08522372,-0.032299094,-0.71951973,0.11408358,0.7160791,-0.60145086,0.505421,0.16859949,0.04320274,-0.07778738,-0.5812343,-0.38649172,0.066710204,-0.1308059,0.41768265,0.07905864,-0.6333977,0.5354429,0.3491962,-0.5225717,-0.763223,0.43166715,0.040761773,-0.3435289,0.045081913,0.2592748,-0.09553615,0.05942407,-0.4179104,0.38770074,-0.31891474,0.30074006,0.21693714,-0.03434623,0.35218254,-0.15833327,-0.20396705,-0.79082876,-0.068194784,-0.46308276,-0.3825895,0.23559335,0.057255767,-0.05073201,0.047059946,0.023776975,0.3931487,-0.24018203,0.05736431,-0.10045176,-0.26466006,0.3751791,0.4330009,0.55551875,-0.4545093,0.63027763,0.08396589,-0.26365852,0.03779975,0.055090625,0.47507355,0.0984652,0.3640768,0.0740696,-0.17539401,0.3193419,0.83463776,0.13476558,0.5225782,0.060030792,-0.14478649,0.27589843,0.25269863,0.21681902,-0.018029992,-0.3234627,0.036020167,-0.1936358,0.1366588,0.5810967,0.18885486,0.24692185,-0.07392376,-0.37691522,0.03810214,0.16077788,0.18207906,-1.3722323,0.29089254,0.30607954,0.7949009,0.44127974,-0.025913808,0.07609755,0.7304602,-0.16651008,0.037062902,0.25769135,-0.077721,-0.6352727,0.6044653,-0.79892385,0.47737673,-0.024099167,0.012480597,0.07193696,0.16960375,0.47815323,0.8166558,-0.23662938,0.0712223,-0.027515959,-0.36818868,0.22994454,-0.5045572,0.15424141,-0.5126244,-0.42435628,0.49062046,0.46809775,0.25363684,-0.22952025,0.0043605417,0.018672032,-0.15267174,0.165858,0.040225618,-0.02461561,-0.14251499,-0.77670085,-0.13093397,0.6011614,0.14044169,0.16051278,-0.070081875,-0.014411466,0.23342092,-0.30180377,-0.04849429,-0.090473376,-0.7844663,-0.07109165,-0.27364483,-0.27069643,0.49972102,-0.15362433,0.24335337,0.17553934,0.012621357,-0.3805792,0.41050932,0.05668214,0.9524084,0.1332604,-0.22356729,-0.30631548,0.17909871,0.21237242,-0.19074419,0.018889215,-0.20499508,-0.3133431,-0.56170976,0.44468608,-0.10154472,-0.4232244,0.2429439,-0.22218733,0.057604473,0.5920988,-0.07570319,-0.26359913,-0.2137377,-0.20013078,-0.34664997,-0.2556751,-0.05779425,0.27157974,0.35343948,-0.18638436,-0.094674654,-0.011419172,-0.09637103,0.6786413,-0.07175435,0.3613048,0.27065635,0.32640243,-0.27018952,-0.0646201,0.23711093,0.5462877,0.18718617,0.0057768673,-0.20011589,-0.38907346,-0.35296777,-0.0730448,-0.23227946,0.25337973,-0.0007772882,-0.38981023,0.7763956,0.12799354,1.2130226,0.03569058,-0.24497195,0.28013822,0.5367604,0.11683072,-0.032165226,-0.49263558,0.83518684,0.54161054,-0.059745338,-0.15445063,-0.42660978,-0.15732439,0.1853225,-0.23276125,-0.14776826,-0.1314244,-0.6306942,-0.300392,0.27245092,0.2716557,0.15025766,-0.13145842,0.017262971,0.22382013,0.040037982,0.25930876,-0.442138,-0.003141864,0.3535107,0.29934385,0.08321047,0.11323593,-0.44467854,0.3116863,-0.33374962,0.14246558,-0.22546844,0.20123161,-0.13747475,-0.34527802,0.21642314,0.124267206,0.30214483,-0.37768942,-0.3393278,-0.24125531,0.63633996,0.18801497,0.13899796,0.5254116,-0.2868939,0.1416844,0.110217944,0.34041256,0.9683837,-0.45663786,-0.04074892,0.41539627,-0.4395046,-0.6741353,0.5196458,-0.22943969,0.19009747,-0.089817286,-0.36368936,-0.5663159,0.29186234,0.02160651,0.09352805,-0.08455818,-0.49506202,-0.09002358,0.35614875,-0.11861372,-0.24739696,-0.42975146,0.20766076,0.6320933,-0.28192255,-0.36029416,0.3047609,0.10653323,-0.2826604,-0.42543703,-0.1251319,-0.30707815,0.18920746,0.08800442,-0.31077486,-0.03554504,0.0921829,-0.53608096,0.14345,0.10003103,-0.42867765,0.08024323,-0.14275561,-0.115780585,1.0135565,-0.4687979,0.0376481,-0.69961154,-0.46912012,-0.9564952,-0.22289558,0.823096,0.23288305,0.084456705,-0.68759906,0.004117689,-0.045776922,-0.060406577,0.02546393,-0.4638198,0.30600116,0.03610245,0.35819393,-0.101659,-0.7915268,0.24072659,0.10968806,-0.38535732,-0.744883,0.54514366,-0.11031564,0.77332276,-0.0039008579,0.17751084,0.36461115,-0.4289162,-0.03228271,-0.20681787,-0.3120521,-0.58847004,0.09216038,708 -514,0.49599865,-0.28401464,-0.5493661,-0.09293245,-0.23418908,0.08104569,-0.22401795,0.49563822,0.11789333,-0.5368808,-0.3395535,-0.2583143,0.12421328,0.21722712,-0.18860087,-0.42755517,0.06194877,0.22902796,-0.47999135,0.6341411,-0.35182795,0.32771197,0.03301959,0.4486846,0.2952098,0.1886243,0.084864475,-0.024741216,-0.34131286,-0.1943591,-0.1852586,0.23806296,-0.57301,0.16410467,-0.24534562,-0.42854643,0.057411782,-0.5406572,-0.25755796,-0.76476765,0.21382955,-0.8085736,0.5523363,0.016475545,-0.33327815,0.1951919,0.27428457,0.37399325,-0.17301862,0.014790705,0.22886746,-0.11796998,-0.03174383,-0.07307006,-0.32249215,-0.4359703,-0.61703235,-0.11228273,-0.43787104,-0.21494317,-0.32470298,0.14321347,-0.23224095,-0.05389231,0.019032892,0.41580313,-0.52266806,0.07895827,0.2409333,-0.02729613,0.5546514,-0.50271696,-0.2606857,-0.2030197,0.32188436,-0.34515426,-0.24560067,0.17871962,0.47916743,0.3652086,-0.12589525,-0.12108909,-0.21194538,-0.1428139,0.20634355,0.47229344,-0.18109046,-0.52595675,-0.14682147,-0.1354919,0.31942278,0.41781157,0.33863297,-0.31052658,-0.2119641,-0.030874508,-0.19546749,0.31659195,0.35914162,-0.23787673,-0.18021801,0.35540748,0.6171912,0.31220976,-0.11781999,0.020930737,0.04706886,-0.5509415,-0.22747442,0.10317044,-0.3087087,0.62606,-0.121475875,0.29343262,0.7319107,-0.19084893,-0.02284014,0.060910467,0.09153912,-0.26123238,-0.22321008,-0.33904546,0.21636115,-0.44798034,0.1524746,-0.07822024,0.63378507,0.20351611,-0.698775,0.19203831,-0.61564666,0.06591744,-0.1213634,0.4725831,0.5694474,0.4768667,0.40907148,0.5898308,-0.5050627,0.072050095,0.0820241,-0.38807052,0.003832651,-0.2882046,-0.24154703,-0.59723413,-0.03689266,0.02300571,-0.07576252,0.14870794,0.59390706,-0.50725055,-0.08470784,0.04004892,0.82991785,-0.29118577,-0.15750279,0.85699207,0.93349123,1.0114993,0.11177522,1.2564409,0.23164606,-0.2199074,-0.01571305,-0.0695731,-0.6663733,0.31618348,0.5385083,-0.6272098,0.3566401,0.10060073,0.06742108,0.33362547,-0.21947588,0.050650503,-0.18522099,-0.09450513,-0.112324834,-0.37231448,-0.42687985,-0.24709736,-0.19495884,0.05700412,-0.12622179,0.24321876,-0.10564727,0.5341463,0.16056326,1.7303507,-0.008031709,0.0330966,0.03502771,0.30896732,0.2524271,-0.09348364,-0.24678142,0.46593097,0.3176608,0.302336,-0.47106075,0.029215125,-0.09803238,-0.51304066,-0.16156748,-0.3309939,-0.10105933,-0.18329461,-0.4547878,-0.016183572,-0.20014226,-0.1962022,0.45401478,-2.566408,-0.19416167,-0.18353525,0.2862205,-0.12716451,-0.38592246,0.03473693,-0.4060637,0.52609354,0.32832307,0.5443453,-0.6351814,0.25009373,0.36839265,-0.44656482,-0.13696441,-0.6432771,-0.3061504,0.04443642,0.34421787,-0.115678705,-0.022257438,0.18164136,0.3352509,0.42217702,-0.14131741,0.2572653,0.27657053,0.52317685,-0.07872309,0.6314874,-6.9210575e-05,0.4955024,-0.06559657,-0.18635209,0.34594154,-0.23987405,0.37494573,0.04697759,0.15124881,0.4553135,-0.41451332,-0.9255361,-0.73015565,-0.39147496,1.0186881,-0.22622505,-0.43317208,0.16132498,-0.24358581,-0.3578314,-0.0799791,0.3892363,-0.10837387,0.19447507,-0.8665784,-0.03502271,0.031804383,0.08981283,-0.03191228,-0.012699955,-0.47077134,0.67067283,-0.07068209,0.4943145,0.52776253,0.15433316,-0.34511408,-0.48810458,-0.030601034,1.0588735,0.50134236,0.16747044,-0.21240175,-0.23296528,-0.60475737,-0.10452999,0.14104472,0.4538377,0.8081218,-0.06737717,0.3410187,0.22111401,0.07337988,0.047320914,-0.34548423,-0.27033347,-0.019823765,-0.028435988,0.46444947,0.49229988,-0.21750818,0.6073853,-0.1680646,0.3199315,-0.051181395,-0.6019927,0.48751047,1.084964,-0.22089885,-0.26297566,0.6333136,0.47975713,-0.23451957,0.47271737,-0.5713959,-0.20305718,0.600057,-0.1346786,-0.48466867,0.39824414,-0.30878776,0.16336186,-1.0772723,0.3154487,-0.31250063,-0.3930588,-0.4313113,-0.07935242,-3.335787,0.29024336,-0.19379644,-0.24409625,-0.15631105,-0.2192129,0.20763591,-0.6753928,-0.768247,0.16702403,-0.040521245,0.8172326,-0.12741055,0.14308141,-0.1448232,-0.35199824,-0.23906915,0.10815982,0.06648238,0.32331187,-0.11990982,-0.58173674,-0.11356833,-0.15970738,-0.5221409,-0.05411085,-0.6113846,-0.56259733,-0.13603947,-0.49839282,-0.37298733,0.62281895,-0.32029432,0.011101552,-0.18283477,-0.101189256,-0.03076773,0.2686239,0.15744445,0.1028802,-0.036478523,-0.040192153,0.0443112,-0.24046536,0.22199099,0.16366991,0.08337648,0.29978782,-0.17925501,0.44119564,0.42943606,0.6183917,-0.15653683,0.77504194,0.44256353,-0.17250942,0.22403495,-0.29754353,-0.30278826,-0.62792534,-0.33016735,-0.10712586,-0.46842402,-0.59982425,-0.14045012,-0.33643037,-0.774031,0.6199969,0.031776633,0.20076513,-0.14867337,0.37757453,0.4074903,-0.3411576,-0.23060772,-0.11191702,-0.14323135,-0.62274677,-0.23383144,-0.7379053,-0.55926967,0.14143465,0.949212,-0.26689953,0.047821227,0.017248144,-0.25328654,0.088749655,0.26540598,-0.14218965,0.1912349,0.41390345,-0.08609251,-0.79521674,0.56931543,-0.035615858,-0.31004477,-0.4816077,0.14924327,0.74409306,-0.6012735,0.45344004,0.453616,-0.09496229,-0.10035067,-0.56473416,0.02439034,-0.09017385,-0.25188574,0.48912543,0.13632932,-0.701261,0.4336774,0.40084288,-0.32397437,-0.6755437,0.8156294,0.02150515,-0.19914544,0.06577579,0.37005195,0.10627967,0.011299408,-0.4444839,0.318597,-0.42047969,0.21938123,0.35540298,-0.11551453,0.24161077,-0.10797359,-0.19554065,-0.8705861,0.20033012,-0.4649462,-0.34072414,0.29211977,0.009431356,-0.023634102,0.18768182,0.2368112,0.328963,-0.40754414,0.12080508,-0.1266318,-0.25284633,0.30850416,0.47535083,0.52961504,-0.39110607,0.59618366,0.007263056,-0.12699953,-0.13707522,0.106641054,0.4760827,0.17232253,0.41624776,0.054571528,-0.220296,0.3977371,0.6192247,0.19497742,0.53412914,0.18510172,-0.108929045,0.044818323,0.19407465,0.30987972,0.0013571637,-0.47222233,0.107310824,-0.2663559,0.035713017,0.6737533,0.15896933,0.14718816,-0.07863616,-0.3824597,0.0472983,0.25954786,0.1211039,-1.1654383,0.46099105,0.2353113,0.7761173,0.5204198,0.027541274,0.112308346,0.50022525,-0.29531756,0.074591376,0.36842662,0.13221075,-0.56876665,0.59962493,-0.7981977,0.46499962,-0.116461776,-0.071337454,0.10225354,-0.20697454,0.52823377,0.9574255,-0.12937911,0.119713865,0.04754021,-0.25993168,0.25289255,-0.49513426,-0.15017411,-0.4887344,-0.31900564,0.75674754,0.4888385,0.33546087,-0.15878011,0.07125119,0.16204987,-0.22801626,0.2053045,0.13563606,0.38198736,-0.117140494,-0.67563117,-0.16018017,0.5557974,-0.10166112,0.199546,0.016054723,-0.30603582,0.28048334,-0.13400635,0.1836066,0.009986199,-0.8969626,-0.0922221,-0.41067204,-0.35167673,0.48493305,-0.08702464,0.24657877,0.21898971,0.08224206,-0.22565378,0.41861466,0.042275198,0.7213928,0.13133483,-0.23449601,-0.17959872,0.29641703,0.28577217,-0.21882905,-0.009733751,-0.21017613,0.03329822,-0.6903623,0.51395184,0.098186135,-0.26613936,0.12949656,-0.109679095,0.07488187,0.5218879,-0.040830277,-0.23224136,-0.1012911,-0.08778589,-0.15471642,-0.19132008,-0.15729699,0.27188274,0.24384192,0.02008405,-0.1508769,0.14123353,-0.11414986,0.34453663,-0.19087513,0.5555478,0.47087142,-0.028383812,-0.43248683,-0.20439386,0.18478394,0.38494888,-0.095752396,-0.09302684,-0.26984826,-0.50585043,-0.30703142,0.04758542,-0.24123861,0.4033548,0.16543972,-0.16289137,0.85000277,-0.10604906,1.1976229,-0.014743464,-0.53433836,0.096047476,0.53951275,-0.11804887,-0.2502993,-0.36372772,1.0774907,0.41506705,-0.10840028,-0.027402142,-0.32712728,-0.054790054,0.16487744,-0.24950038,-0.24392878,-0.028468935,-0.5011379,-0.33480915,0.18531029,0.31707683,0.24367319,-0.08871853,0.09669745,0.42250603,-0.06466043,0.17371239,-0.4639047,-0.20555626,0.23817512,0.29508683,-0.15837573,-0.042232297,-0.43351296,0.5112027,-0.524762,0.13616803,-0.24935065,0.23390748,-0.3165733,-0.46948925,0.17585982,0.06345487,0.30337963,-0.29685074,-0.3300068,-0.26661333,0.44049096,0.17265697,0.12216295,0.5643031,-0.38227373,0.21727876,-0.005163624,0.35010582,0.9781167,-0.2406872,-0.11325772,0.4713904,-0.4590394,-0.5365029,0.40887478,-0.41436115,0.3221054,-0.0055781007,-0.27370983,-0.5833519,0.19215098,0.19050038,0.14326811,-0.11540025,-0.5924517,-0.09388084,0.33289906,-0.3242322,-0.26681495,-0.38718864,0.28832078,0.539302,-0.32741514,-0.36783424,0.14035007,0.08466702,-0.0896563,-0.40592545,0.013024275,-0.24356273,0.49527645,0.037351962,-0.36506334,-0.12298727,-0.04052004,-0.3943286,0.18010874,0.16489598,-0.3248356,0.1077215,-0.46669704,-0.18309353,0.9125694,-0.28417447,-0.057936706,-0.3469151,-0.4827482,-0.6652355,-0.33799484,0.52802926,0.07296662,0.12000973,-0.54151195,0.116818376,-0.18114181,-0.0317122,-0.09189852,-0.21948694,0.47526845,0.18644162,0.37067577,-0.11672736,-0.7917614,0.3141573,0.03184136,-0.19225402,-0.70735186,0.5515915,-0.11406733,0.6541123,0.15983033,0.15016833,0.5468053,-0.5905445,-0.046872754,-0.13133706,-0.07539145,-0.5695641,-0.034183167,719 -515,0.27004704,0.09878052,-0.601244,-0.0718801,-0.00892718,0.1617756,-0.20407669,0.4040646,0.2343448,-0.32302052,-0.058262087,0.02027535,-0.04352806,0.23933336,-0.11662308,-0.36825252,0.04355868,0.2342645,-0.45239702,0.30508417,-0.46457857,0.3217008,-0.26087973,0.39003235,0.016135285,0.34781554,-0.028995337,0.1721853,-0.24776728,-0.2303617,0.29226503,0.19022115,-0.49569172,0.34465408,-0.14087379,0.0005495591,-0.2372166,-0.40955004,-0.4678057,-0.757802,0.231645,-0.7716847,0.5586074,-0.14965387,-0.32637954,0.31347817,0.17743611,0.33894387,-0.22956474,-0.11022939,0.27181092,-0.20701721,-0.3425056,-0.13189928,-0.2863775,-0.21155095,-0.5492713,0.05109427,-0.3741918,0.023335287,-0.29080504,0.1866063,-0.22207682,0.14994048,-0.19966806,0.35798475,-0.38105503,0.010950767,0.21018317,-0.18190591,0.20684913,-0.5284766,-0.049191363,-0.042226363,0.12670784,-0.16281475,-0.049037017,0.20341362,0.044161517,0.40114588,-0.18863118,-0.025428291,-0.37370515,-0.1464984,0.16231427,0.40876678,-0.11858315,-0.20828071,-0.14725111,-0.13852336,0.21296217,0.1312856,0.037103694,-0.28271618,0.0622133,-0.011946797,-0.13811967,0.35041276,0.5421484,-0.079120524,-0.1849312,0.35107422,0.72598636,0.09558939,-0.1314685,0.18230596,-0.02114229,-0.36323637,-0.2204987,-0.09839845,-0.04738077,0.20488583,0.035267893,0.110463016,0.5988751,-0.25571522,-0.069022976,0.12516132,0.075199,0.12572353,-0.40152827,-0.2932361,0.29815155,-0.39291957,0.011788045,-0.16230643,0.50883377,-0.0127939535,-0.68307686,0.3505436,-0.4559466,0.034295704,0.113797136,0.5851664,0.546112,0.46593806,0.1560519,0.7816434,-0.4023235,0.06710956,-0.03668068,-0.13524981,0.05922384,-0.13215454,0.1058134,-0.40574387,-0.03240345,0.20689198,-0.3087649,0.10535463,0.30738616,-0.39379242,-0.17523924,0.008204094,0.68824136,-0.33505553,-0.07227891,0.70796585,1.212018,0.8588092,0.08276122,1.2385689,0.19035877,-0.15203758,-0.1721909,-0.15068136,-0.8217211,0.25842017,0.13846467,-0.42867568,0.259856,0.19231628,-0.04746661,0.2980654,-0.63079417,-0.082568385,0.008956045,0.39613748,-0.0717019,0.013425546,-0.4262929,-0.19499062,0.17704932,0.016108423,0.30403122,0.31622198,-0.31456038,0.2663394,0.12070242,1.3223046,-0.09801627,0.024238441,0.16348681,0.32111782,0.038111,-0.26039377,-0.22749636,0.21534093,0.41038546,-0.06904952,-0.47903356,0.09240341,-0.095456414,-0.48644704,-0.16634752,-0.26541284,0.0284866,-0.31145653,-0.09423405,-0.13244788,-0.21395846,-0.62275887,0.3957521,-2.5661278,0.025663922,-0.12949945,0.3152309,-0.07338006,-0.26398033,-0.30844137,-0.34381437,0.41561985,0.27712527,0.39980632,-0.33819535,0.3124116,0.43277508,-0.52630794,-0.10494088,-0.50600797,0.017110033,-0.05245769,0.16917567,0.091250315,-0.10031925,-0.11741773,0.17511158,0.41707343,0.028286096,0.15087683,0.63846123,0.312316,0.015502938,0.37039217,0.025534581,0.56818664,-0.42062452,-0.2882146,0.4162586,-0.5309343,0.21200506,-0.17479374,0.0930658,0.22800136,-0.24556479,-0.711563,-0.5718099,-0.2168525,1.4281044,-0.2891013,-0.49193925,0.21997619,-0.36824903,-0.46577832,0.07026488,0.41387647,-0.27698418,0.01892412,-0.80902684,-0.11849492,-0.168376,0.39852777,-0.08967515,0.14808466,-0.50757533,0.62936074,-0.27867365,0.49752426,0.39335653,0.12985203,-0.36455092,-0.3542467,0.08939146,1.199665,0.393977,0.11742069,-0.123386726,-0.07845016,-0.32550997,-0.28806353,0.12724304,0.563485,0.627328,0.08923793,0.12800519,0.22648756,-0.18002573,-0.0092865275,-0.05965944,-0.38146538,-0.15434943,0.08953164,0.71353483,0.46095052,-0.14743721,0.45153528,-0.16764371,0.26233673,-0.2120907,-0.33624056,0.33446807,0.50554574,-0.18235694,-0.35090902,0.694656,0.45370245,-0.36275482,0.51780844,-0.5676698,-0.518803,0.29928207,-0.15680972,-0.39958566,0.31322676,-0.16662966,0.11716948,-0.7490769,0.22490653,-0.17454675,-0.8668472,-0.5289424,-0.28472856,-2.3324883,0.1586487,-0.033039086,-0.2800283,-0.12210434,-0.07348677,0.25959924,-0.24319705,-0.7038273,0.037524752,0.049685035,0.6049933,-0.059274454,-0.092546664,-0.1144119,-0.21768986,-0.09973772,0.19780879,0.2718014,0.3600314,0.016744647,-0.3981643,-0.17500795,-0.07934762,-0.37549755,-0.12971206,-0.63315105,-0.38300166,-0.14090368,-0.5880289,-0.16948655,0.58025587,-0.58536917,0.0077169323,-0.29960877,0.016550258,0.072956696,0.43708473,0.09642462,0.26726943,0.25526795,-0.3396209,0.08203886,-0.13245435,0.37191078,0.06463255,0.34162435,0.49382755,-0.29953665,0.1427788,0.4562079,0.66949016,-0.060186148,0.91738015,0.23007931,-0.11767929,0.29351264,-0.22827768,-0.2255899,-0.32628626,-0.17879952,0.083171286,-0.38894752,-0.2924057,-0.1499091,-0.33143708,-0.87906593,0.4384386,0.0005701291,-0.058376115,-0.075048395,0.3184677,0.28541797,-0.020179978,-0.03571168,-0.18919924,-0.13046142,-0.37479332,-0.46244907,-0.60373586,-0.49291056,0.07099219,0.9993278,-0.13132156,0.16336273,0.091611706,-0.20232831,0.19629605,0.15188074,0.13508418,0.10600096,0.46140385,0.055686686,-0.49967977,0.26161703,-0.33231807,-0.15146014,-0.6540008,0.23416379,0.8054016,-0.47811207,0.53214365,0.3464326,0.12802884,-0.21819602,-0.572064,-0.07068856,-0.03420416,-0.21817502,0.52297443,0.22353365,-0.8542139,0.53905374,0.2582927,-0.26264945,-0.78287876,0.39037028,-0.12677182,0.09743556,0.07690936,0.47752824,-0.1667874,0.04067222,-0.3029904,0.25225088,-0.2686111,0.11965004,0.20985948,-0.12971735,0.6008034,-0.33453205,-0.12753803,-0.5376567,0.057525635,-0.45563594,-0.2717691,0.03849863,-0.0776459,-0.11916505,0.25879946,-0.07036575,0.380348,-0.39949685,0.04118528,-0.18341374,-0.44114804,0.4206121,0.42460775,0.54983675,-0.4206201,0.6126564,-0.06526558,-0.06752534,-0.114008866,-0.12237085,0.55224425,-0.0760942,0.3061503,0.16411419,0.06446726,0.2772645,0.6501179,0.21861546,0.44075033,0.012337974,-0.22092223,0.07903799,0.100224875,0.22597443,-0.09299667,-0.5152655,0.08127177,-0.05045041,0.14709094,0.35149246,0.19251074,0.5360745,-0.12874983,-0.281998,0.116493836,0.1314119,-0.29251575,-1.2345656,0.6028605,0.034819003,0.71002823,0.31548914,0.03464586,0.245972,0.582194,-0.041458346,0.061116654,0.18509722,-0.05350835,-0.436457,0.43676552,-0.8169188,0.48560783,-0.10926468,0.0707135,0.22795178,0.039263885,0.65401167,0.8600965,-0.020644372,0.061567597,0.017458204,-0.15017429,0.13115819,-0.3205193,0.36395815,-0.42787567,-0.38032433,0.7695845,0.38221043,0.5292389,-0.22047426,0.046715815,0.1042803,-0.2310088,0.1555181,-0.022503955,0.029922951,-0.050044518,-0.66346043,-0.25304297,0.27286336,0.22287358,-0.043789823,0.092597164,0.012921325,0.2618461,-0.050774135,0.062156446,0.051509734,-0.54856825,-0.029951004,-0.28034416,-0.3822215,0.05430711,-0.2670907,0.19702604,0.13708876,0.009939717,-0.4583919,0.327609,0.20383403,0.7754661,0.08365675,-0.26182565,-0.25174242,0.25775135,0.20040925,-0.25481853,0.024902727,-0.39236715,0.07478318,-0.73040044,0.40900442,-0.44760802,-0.5873379,0.3877483,-0.20051566,-0.0063421256,0.60336226,-0.22760434,-0.03720987,0.007861682,-0.34717157,-0.11891414,-0.27072874,-0.18363805,0.1726892,0.060918104,-0.2800421,-0.10967897,0.031186821,-0.16759978,0.2675695,0.019522434,0.26070425,0.6134402,0.23994239,-0.36023912,0.074129805,-0.013377096,0.6025429,0.0882058,-0.020757878,-0.3702976,-0.30690745,-0.19688371,0.5093894,-0.20018485,0.22550611,0.20704865,-0.28786275,0.60296017,0.04637054,0.9287816,-0.0019627213,-0.27739227,0.14356944,0.60663193,0.095222555,-0.054579634,-0.4085338,0.9431488,0.5172039,-0.18906318,-0.12498784,-0.5030435,-0.08800923,0.15968503,-0.28836137,-0.32093158,-0.13908121,-0.7853546,-0.29617745,0.23678258,0.3687823,-0.055863384,-0.09468836,0.22297947,0.29272765,0.067256495,0.3314211,-0.45789668,0.17902705,0.47764477,0.1294008,-0.10782622,0.09863453,-0.39574283,0.28197452,-0.59891826,0.023622807,-0.13194145,-0.025496768,-0.093144335,-0.37791902,0.15386827,0.05809613,0.32235974,-0.33313426,-0.22475788,-0.124258876,0.47615114,0.1682509,0.041547008,0.49277976,-0.21404047,0.059384603,0.08159765,0.45485803,0.9368853,-0.16996267,0.049470525,0.23501706,-0.2605271,-0.5962428,0.22603247,-0.3234082,0.14835466,-0.13297965,-0.46172574,-0.40864322,0.31793332,0.17296766,-0.087510146,0.058197703,-0.34685454,-0.07268451,0.082968235,-0.12630817,-0.10466494,-0.30576086,-0.052656036,0.5693554,-0.10370413,-0.4077707,0.113527164,0.2923186,-0.22696202,-0.5486534,-0.03255575,-0.36966324,0.28400734,-0.16439082,-0.22803184,-0.13434775,-0.17080598,-0.3658516,0.21213377,0.11591627,-0.29761153,-0.031855095,-0.16360356,0.044573486,0.50222296,-0.12143018,0.05465946,-0.5208655,-0.4975681,-0.96958894,-0.21793284,0.1352805,0.09286658,-0.17352052,-0.6299882,-0.08066107,-0.26002076,-0.035848297,0.07129356,-0.46588808,0.3541545,0.24291532,0.30839258,-0.33132508,-0.7989359,0.078432225,0.09497424,-0.3499848,-0.48346472,0.51830494,-0.005296477,0.544206,0.025689304,0.1366544,0.20095615,-0.6276536,0.22770795,-0.04745164,-0.17568524,-0.53603554,0.17441688,727 -516,0.30035493,-0.11809184,-0.4159987,-0.2716634,-0.2866388,0.036165744,-0.2941963,0.28098148,0.22664814,-0.19695385,-0.17678106,-0.2638447,-0.0068976944,0.38785848,-0.1375585,-0.37689313,-0.2788577,0.040159274,-0.76322895,0.5109687,-0.52005666,0.17671338,0.108864605,0.41573787,0.22843218,0.4258769,0.33145848,-0.167362,0.013371468,-0.06860163,0.0019816202,0.07687448,-0.47538495,0.036906064,-0.2212648,-0.267834,0.055944927,-0.5609022,-0.20398687,-0.64184105,0.29850507,-0.8148857,0.5098056,0.039753202,-0.040643,-0.04374134,0.4542927,0.39010724,-0.28978205,-0.054000217,0.2751611,-0.12925424,-0.013558149,-0.112046,-0.017957082,-0.34394678,-0.48251247,-0.0731346,-0.5219303,-0.36699295,-0.10890126,0.20650294,-0.29912797,0.0844893,-0.00046232768,0.40118632,-0.4154224,-0.09692324,0.29553205,-0.24822533,0.37475234,-0.48097256,-0.09123441,-0.09398973,0.5366587,-0.050499994,-0.06870703,0.24030216,0.15866616,0.37646046,0.083027504,-0.1592305,-0.20157732,-0.22083218,0.009084514,0.49368498,-0.059649944,-0.25197086,-0.11026347,0.008033807,0.24886346,0.29340845,-0.0019150674,-0.17410564,-0.0032013555,-0.11758012,-0.24688436,0.51506394,0.46329013,-0.24215399,-0.2539529,0.2900359,0.5512545,0.28312683,-0.24839534,0.0889694,0.10117962,-0.47156376,-0.059389837,0.10065425,-0.10316352,0.38883844,-0.101916626,0.26137236,0.7571012,0.019537073,0.05114078,-0.069721095,-0.11158508,-0.16206013,-0.14176278,-0.13515925,0.11146825,-0.46526742,-0.0109079955,-0.21022268,0.6228982,0.08188575,-0.66413736,0.3029285,-0.64868414,0.14514394,-0.064502284,0.6135562,0.6523814,0.33743852,0.41062632,0.7674794,-0.22005498,0.16378066,-0.023804171,-0.3219393,0.13361248,-0.3135626,0.102789745,-0.5180277,0.0866129,-0.019629518,0.09217308,0.036513235,0.2633585,-0.4241461,-0.05099656,0.30324563,0.7297907,-0.22757967,0.013145238,0.7598061,1.0977889,0.9030322,0.06296901,1.0127466,0.22083203,-0.3122937,0.18650964,-0.28302076,-0.75564355,0.26264656,0.38130498,-0.0772313,0.37156412,-0.08179905,-0.014512547,0.24765821,-0.4902318,0.24259874,0.083420254,0.17017958,0.27552918,-0.05633735,-0.34549642,-0.1717345,0.038145144,-0.041510113,0.22290793,0.07837285,-0.17920081,0.3147153,-0.094435014,1.2412459,-0.00011648451,0.07561225,0.22194818,0.64922506,0.15174921,-0.13056591,-0.14781228,0.36881274,0.301719,0.10443817,-0.6058055,0.37104735,-0.24127285,-0.37949032,-0.20262848,-0.37598085,-0.22800303,0.062409665,-0.3741303,-0.13797939,-0.05112241,-0.33885834,0.2892334,-3.0762293,-0.24678007,-0.25832847,0.28266177,-0.25429773,-0.003177977,-0.1274955,-0.46964145,0.25320187,0.44755417,0.41070274,-0.6139097,0.587402,0.50418395,-0.5767931,-0.13817404,-0.60814935,-0.08107465,-0.052153733,0.5125739,0.099559076,-0.07425316,-0.119727716,0.41023207,0.5775781,0.15512596,0.074668966,0.38916424,0.4509937,0.12508523,0.61792195,-0.052046973,0.35896853,-0.34230417,-0.046081662,0.36765814,-0.36146116,0.08979827,-0.11700572,0.08563824,0.48460874,-0.48614216,-0.904556,-0.63242376,-0.30030444,1.048061,-0.18704227,-0.3171801,0.22292389,-0.324439,-0.08165907,0.0040441835,0.75911057,-0.12263918,0.20617819,-0.7812239,0.04311642,-0.13890597,0.17808388,0.03536875,-0.039864004,-0.41893452,0.63484573,-0.025429975,0.5913387,0.20953175,0.14676669,-0.30334845,-0.39122176,0.22941709,0.6134585,0.17332764,0.040356047,-0.16467948,-0.11520749,-0.12308011,-0.16707988,-0.040481146,0.43180853,0.6389373,-0.023530956,0.31142697,0.32982343,-0.17904009,-0.101697505,-0.03759045,-0.10942041,-0.008194432,-0.014277114,0.42802358,0.7341689,-0.16441451,0.39478213,-0.13065019,0.388941,-0.15400144,-0.4174841,0.5898906,0.35428327,-0.1267165,-0.075574055,0.4540605,0.5701845,-0.40184242,0.43576762,-0.6187225,-0.31640244,0.56947386,-0.12065788,-0.48731643,0.28711846,-0.24639232,0.121609025,-0.8539758,0.27871007,-0.25516874,-0.26075524,-0.3867576,-0.16748299,-3.2563517,0.07256072,-0.14432155,-0.2942681,-0.24092317,-0.040356636,0.32604295,-0.5600007,-0.64025027,0.08614312,0.23320298,0.6459103,-0.067703456,0.13582957,-0.32423338,-0.06231751,-0.2552323,0.24431899,0.022579445,0.3169115,-0.1482484,-0.39176723,-0.044443876,-0.14192979,-0.49913263,0.11399046,-0.30941173,-0.45250437,-0.04673692,-0.45247778,-0.3439569,0.54285765,-0.23797964,-0.002862513,-0.2978448,-0.00830519,-0.10404665,0.30202565,0.12948874,0.08258343,0.076685704,-0.0050577563,0.038937535,-0.22462974,0.44428518,0.0023848393,0.31208983,0.16058062,0.0657065,0.2194821,0.43131495,0.4643702,-0.07372112,0.93479574,0.38760582,-0.0020076616,0.18716672,-0.26463956,-0.13499367,-0.3911372,-0.16041319,0.004687982,-0.34320793,-0.53552234,-0.001618066,-0.2719969,-0.73559386,0.58011657,-0.08900004,0.2136384,-0.016376961,0.14896436,0.26836446,-0.18813215,0.019973282,0.081477486,-0.060104396,-0.43326664,-0.14434643,-0.57490253,-0.40574282,-0.13042022,0.79146826,-0.27147684,-0.026863307,-0.05855522,-0.35247713,0.0638807,0.07525168,0.16355903,0.42977116,0.44006896,0.017842485,-0.68960285,0.3094,-0.32065398,-0.10285287,-0.47812325,-0.03375758,0.5696556,-0.6385269,0.3506339,0.33149862,0.08885784,-0.1954498,-0.3596724,-0.09103044,-0.18044142,-0.21156655,0.40049392,0.04063714,-0.77511895,0.52810025,0.12685354,-0.38223958,-0.6724521,0.35518903,-0.06658421,-0.33386487,0.0045628375,0.21732858,0.08781905,-0.041442513,-0.2885789,0.1859365,-0.2836246,0.2578235,0.03546514,-0.0347211,0.50436497,-0.022385415,-0.24671762,-0.51225406,-0.026210103,-0.5056398,-0.2629431,0.33181778,0.039257474,0.026473012,0.1927524,-0.014747858,0.29286128,-0.106870994,0.019748459,-0.0068831933,-0.2117299,0.14859591,0.41526684,0.39163184,-0.4725655,0.56108713,0.042566907,-0.13391875,0.14511831,-0.10303114,0.2962874,-0.028428605,0.3392758,-0.10070914,-0.17852703,0.42354387,0.6350779,0.21397354,0.30824375,0.17052762,-0.065975145,0.54707664,-0.037120786,0.08172311,-0.11377245,-0.44786796,-0.018675115,-0.28116292,0.16641161,0.4020707,0.20261881,0.33174726,-0.0068461723,-0.20035665,0.031221423,0.1739624,-0.24922241,-1.1434567,0.31451705,0.25188205,0.82704216,0.44070843,-0.09045101,0.010040445,0.8675801,-0.19420457,-0.071912654,0.38491017,0.07758568,-0.48133823,0.7017098,-0.49683157,0.5425177,-0.11407174,-0.19385602,0.07691084,0.08154558,0.26780534,0.68180245,-0.15206374,0.0016232098,0.028575126,-0.23004715,0.05156677,-0.21716364,0.03996629,-0.48169142,-0.25037763,0.6514778,0.29930612,0.29123253,-0.15150645,0.02070455,-0.029745694,-0.09163005,0.23404738,-0.13509646,-0.14369114,0.04830129,-0.6710782,-0.19923863,0.50624543,0.097935975,0.23445769,-0.07721543,-0.36671862,-0.034409355,-0.18722892,0.009571399,-0.13709648,-0.6511747,-0.021343691,-0.054386787,-0.47640854,0.5012201,-0.37588575,0.19365717,0.18577358,-0.063934416,-0.20022199,0.25714648,0.085054316,0.67920345,-0.027766194,-0.19372347,-0.24184707,-0.098254494,0.20078447,-0.284712,-0.08061123,-0.44829965,0.17195596,-0.5618874,0.7209055,-0.08799849,-0.4348009,0.16634737,-0.2567515,0.052156202,0.57170135,-0.06877563,-0.078750424,-3.5179513e-05,-0.16465662,-0.25051898,-0.013671279,-0.43299022,0.2742056,0.29034895,-0.11555624,-0.117162034,-0.09758551,-0.11260842,0.5808383,-0.11028483,0.5108792,0.23196211,0.1225604,-0.21484415,0.09527261,0.11360991,0.48097536,0.25778374,-0.092638746,-0.31248263,-0.36055464,-0.18813434,0.328013,-0.09486502,0.16149613,0.077983454,-0.29567248,0.74263734,-0.044189777,1.0363333,0.11429068,-0.29470873,0.10550898,0.42475447,0.05924114,0.030388903,-0.41430897,0.7138745,0.52976376,-0.17036955,-0.099648125,-0.38988128,-0.048659377,0.2719659,-0.22290508,-0.077410996,-0.10989065,-0.5311307,-0.37125203,0.2052765,0.08363713,0.1568375,-0.08643885,0.046683274,-0.08504285,0.11503854,0.350956,-0.5273433,-0.13305147,0.24545656,0.14231674,-0.11502323,0.023083525,-0.4386677,0.48573372,-0.66628927,0.1329116,-0.38855615,0.11485551,-0.30963635,-0.29778114,0.09158746,0.07830316,0.39079434,-0.18092252,-0.39641777,-0.05850133,0.4276093,0.11687499,0.19624509,0.56421137,-0.20281148,0.06661625,0.036636464,0.56543267,1.0682606,-0.40374067,0.11926048,0.15936805,-0.35452673,-0.521648,0.34105107,-0.37693837,0.016426532,0.027188053,-0.24784592,-0.36254972,0.18471472,0.19567527,0.15124068,-0.07698887,-0.494817,-0.38197723,0.2752221,-0.23367535,-0.29326358,-0.33892503,0.116687186,0.5592479,-0.14026347,-0.21671322,0.111064374,0.41695222,-0.264294,-0.45632404,0.015142009,-0.24678068,0.40810776,0.01753513,-0.24781497,-0.18392079,0.17427394,-0.48746672,0.24828966,0.22571622,-0.41119552,0.0037418348,-0.2527857,-0.118797354,0.9093477,-0.21322788,-0.09941498,-0.5025113,-0.48674282,-0.9461485,-0.35476658,0.30011436,0.06363552,-0.094983555,-0.26981995,0.038678613,-0.034593817,-0.2068573,0.116142415,-0.58232445,0.27035433,0.06387805,0.53585565,-0.21967106,-0.84587634,0.057159323,0.023328325,-0.1387414,-0.57608825,0.59982616,0.08328576,0.7054062,0.019992009,0.057012964,0.028481502,-0.3221775,0.13741562,-0.29932407,-0.1327024,-0.71500957,0.14986242,732 -517,0.30398136,-0.39187902,-0.4141622,-0.14616463,-0.22436616,0.024803162,-0.10991318,0.36059633,0.12539342,-0.3614828,0.033037465,-0.15297236,-0.067473896,0.46375614,-0.14449224,-0.46438196,-0.096097626,0.16920808,-0.5294794,0.5737235,-0.39998585,0.27712014,0.14126904,0.29913405,0.10500741,0.18332376,0.06081019,0.024213556,0.1436549,-0.097526856,-0.097716495,0.31461474,-0.64239985,0.27339894,-0.080694005,-0.35422748,0.14381473,-0.2705072,-0.44896084,-0.7296851,0.34153542,-0.9603845,0.5629898,-0.03621701,-0.3778006,0.21650805,0.06799147,0.2530714,-0.30634397,-0.10632143,0.22073725,0.03396899,-0.005794708,-0.2172562,-0.113422684,-0.4124134,-0.53691113,-0.07865093,-0.658779,-0.30531257,-0.16274606,0.16806783,-0.30509892,0.14183882,-0.18740024,0.22323386,-0.52033937,-0.05175588,0.108520344,-0.18929315,0.30680758,-0.5944517,0.024763187,-0.12870125,-0.10157995,-0.022573212,-0.15053786,0.44515923,0.13805206,0.6073046,-0.05407806,-0.24471018,-0.19339943,-0.0018293688,0.09936958,0.4995527,-0.21808,-0.36325017,-0.30917436,0.099682204,0.45947388,0.17686756,0.12538323,-0.3988156,0.02830729,0.08451432,-0.23414294,0.42131826,0.47625142,-0.37119243,-0.34214836,0.27109915,0.59903055,0.04103134,-0.14504297,0.10645928,-0.04900426,-0.34439462,-0.127687,0.053500373,-0.42170244,0.32713684,-0.073198594,-0.006018315,0.6446174,-0.24434277,0.03852922,0.010044603,0.006062182,-0.13187091,-0.32170385,-0.31448594,0.2830481,-0.60246575,0.011523698,-0.17615642,0.7407188,0.0298644,-0.7400526,0.28871012,-0.48458603,0.0808833,-0.2282878,0.5905718,0.7029271,0.5790296,0.20691052,0.8276189,-0.5958942,0.089389905,-0.1464471,-0.22758915,0.21386531,-0.27880603,-0.15164076,-0.5352573,0.025750687,-0.11289751,-0.13226718,-0.12760869,0.4492479,-0.61047494,-0.032692082,0.19366752,0.7525711,-0.41293257,0.095918484,0.5592993,1.1624308,0.8852683,0.020155653,1.0638154,0.29589134,-0.17795017,0.33893722,-0.18689765,-0.7918325,0.2676414,0.54821545,0.1454743,0.28284648,-0.027232736,0.042063158,0.2937119,-0.39667234,0.0331512,-0.21762967,0.37078694,-0.014139013,-0.029090133,-0.6318773,-0.0882302,0.12933423,0.034928963,-0.08558738,0.2762145,-0.302177,0.34526494,0.15161373,1.6311041,-0.075279124,0.120005146,0.13515289,0.50287265,0.2536648,-0.094654515,0.031490557,0.37474364,0.376475,0.093071565,-0.6912777,0.18932894,-0.22975442,-0.60656625,-0.24176535,-0.39717293,0.10625402,-0.19057943,-0.394754,-0.31431314,0.0780226,-0.274814,0.36542824,-2.5025342,-0.13698164,-0.17503607,0.29664963,-0.33995518,-0.3280129,0.108333744,-0.3885754,0.2856745,0.40332645,0.43955508,-0.53491455,0.43698066,0.5211498,-0.48045564,0.031645842,-0.52030575,-0.19402596,-0.11983595,0.50026083,0.10687325,-0.18117058,-0.14553383,0.27721542,0.5411418,0.02653956,0.19262914,0.35884312,0.29290587,0.02679901,0.4959263,0.014900216,0.42524981,-0.26715058,-0.15598263,0.4795052,-0.18435076,0.17875662,-0.018929511,0.19037852,0.45456654,-0.41763765,-0.9194093,-0.65546024,-0.08263328,1.2739352,-0.42940703,-0.6671161,0.40608162,-0.2800075,-0.15021415,-0.15698382,0.21050152,-0.108272396,0.058232088,-0.8703822,0.09132037,-0.062499147,0.3395443,-0.049513023,-0.01761954,-0.3551933,0.68161243,-0.04106434,0.5172587,0.17469113,0.09755586,-0.31928143,-0.54208463,0.12281486,0.9405202,0.45661083,0.08057766,-0.06897448,-0.26913434,-0.08317541,-0.03596117,0.09538519,0.2437253,0.88270104,-0.034524184,0.1015242,0.25766987,-0.18981512,-0.023127168,-0.14267752,-0.39517313,0.04727759,0.15137449,0.51948774,0.4606625,-0.19670825,0.41938347,-0.11887344,0.3936376,0.046146896,-0.5776009,0.25230375,0.97220504,-0.1434714,-0.308513,0.7579953,0.62991947,-0.39340454,0.5548095,-0.74931496,-0.3126615,0.40744242,-0.18022953,-0.39127034,0.14085095,-0.2906975,0.25078645,-0.90162385,0.23556556,-0.2393091,-0.4633961,-0.4441836,-0.24635236,-3.214169,0.22062278,-0.19955884,-0.22409438,0.022875939,-0.07559364,0.46089426,-0.57870656,-0.5179337,0.093205385,0.11522401,0.47934884,0.038380615,0.05594664,-0.2114075,-0.109094076,-0.27824932,0.26827225,0.1879042,0.17190209,-0.04504723,-0.57745224,-0.15760405,-0.12326111,-0.4317127,0.0709692,-0.6369344,-0.57432216,-0.18598196,-0.6478422,-0.18275289,0.5658981,-0.06329959,-0.037523866,-0.18166222,-0.035004433,-0.0366858,0.25422886,0.044280816,0.10935148,0.13736673,-0.039653055,0.014110991,-0.35914087,0.24963264,0.029427385,0.34753013,0.22657335,-0.26123783,0.06942556,0.6657101,0.49562922,-0.010192684,0.76792175,0.6284853,-0.23623072,0.30302042,-0.12095298,-0.40355515,-0.68557864,-0.2466863,-0.1309832,-0.35563794,-0.39393324,0.039459825,-0.41645876,-0.72515386,0.7209064,-0.014865349,0.30410808,0.017679999,0.21753839,0.41611233,-0.14115033,-0.034383755,-0.25082585,-0.26743388,-0.45248237,-0.3604205,-0.79353875,-0.43627542,0.1269375,1.2184027,-0.13777499,0.016329246,0.06968241,-0.06407306,0.020883843,0.04414944,0.027732978,0.39881834,0.43617654,0.007321711,-0.6516774,0.5097988,0.096949145,0.057306536,-0.471523,0.16436994,0.5127238,-0.62471324,0.33742455,0.21763992,0.15101722,-0.046347566,-0.5848638,-0.1338644,0.0068591195,-0.3428848,0.6288505,0.17990127,-0.84114426,0.4835594,0.40003386,-0.4696943,-0.6378605,0.3184184,-0.13269837,-0.1570047,-0.24152268,0.28140858,-0.030141788,0.12590858,-0.15477546,0.19180869,-0.5065113,0.28113556,0.3056927,-0.0941351,0.3832364,-0.27217188,-0.109807804,-0.83450073,0.06130949,-0.5177175,-0.34540123,0.31610677,-0.043673236,-0.16593535,0.3044179,0.05001569,0.5818167,-0.19001436,0.09517195,-0.0044808793,-0.45139295,0.4639193,0.551144,0.47150224,-0.36971134,0.47897926,0.095158376,-0.21909621,-0.26489657,-0.07941586,0.47016767,0.08633657,0.20226865,-0.043896683,-0.11411048,0.47271726,0.9313165,0.19288075,0.39121374,0.0005117144,-0.100534484,0.21627215,0.07304063,0.029993173,-0.06279337,-0.5126246,0.023050938,0.038640756,0.21330471,0.50563204,0.25806108,0.26545545,-0.08803271,-0.19145967,0.03487717,0.15729341,-0.06852476,-1.1752167,0.13676636,0.15508027,0.6092439,0.6004362,0.16284037,0.08726055,0.6457228,-0.20398907,-0.07589793,0.35717955,0.020242682,-0.5620604,0.7205129,-0.6572956,0.43070486,-0.00941386,0.041846786,0.046877097,0.16016081,0.4915984,0.9207117,-0.06025846,-0.02791351,-0.039139103,-0.25573066,0.19819142,-0.384008,0.12687899,-0.28410882,-0.2788771,0.69310534,0.39806882,0.40009174,-0.060392287,-0.067285396,0.12660411,-0.11505818,0.25427446,-0.034925703,-0.034910306,-0.12201496,-0.5698153,-0.16302998,0.57089204,0.27263436,0.06486051,-0.06186978,-0.27247512,0.22462997,-0.2988203,-0.25674292,0.06889009,-0.7123634,-0.024268776,-0.18128864,-0.40804768,0.46537876,-0.091709256,-0.00091576576,0.027827855,-0.0858335,-0.3793705,-0.0020805767,0.12585457,0.73178643,0.0717488,-0.16643612,-0.28614658,-0.118635125,0.007931428,-0.2224152,0.039781775,-0.24600251,-0.025660643,-0.7274281,0.49796405,-0.15993643,-0.47801596,0.23879825,-0.21874261,0.014554603,0.37084123,-0.075848706,-0.19947015,-0.2294148,-0.04420412,-0.2787174,-0.46425796,-0.1590828,0.17336679,0.02095944,0.0027837413,-0.093058065,-0.12104328,-0.02876785,0.6528768,-0.023217235,0.29284927,0.2881208,0.04850216,-0.46922997,0.07801406,0.24595082,0.4351559,-0.20779857,0.15519007,-0.10588573,-0.45193294,-0.28885725,0.038101584,-0.22915986,0.45804468,0.015485878,-0.4600518,0.8990274,0.09771818,1.2638247,-0.11917382,-0.3374758,0.041012228,0.5119369,-0.034687944,0.04545138,-0.37698618,0.8434811,0.68175375,0.008175994,-0.29696327,-0.5922747,-0.24273674,0.23725832,-0.3184998,-0.06543378,-0.11368215,-0.7526347,-0.37564558,0.2786868,0.3764145,0.14596693,-0.02483766,0.15320528,0.114698164,0.0030622035,0.28964105,-0.4336806,-0.088979624,0.29779953,0.25024098,0.06890782,0.0227562,-0.5082938,0.31037423,-0.48901156,0.20582916,-0.33130544,0.0153542,-0.14526126,-0.22653447,0.11478865,-0.009807638,0.28125712,-0.22582886,-0.36657557,-0.20078361,0.6926349,0.15124755,0.10283758,0.6876206,-0.3579484,0.2316049,0.034176204,0.344835,1.0850906,-0.21872935,-0.08362981,0.07470165,-0.4031219,-0.7799187,0.43517545,-0.16465016,0.14892922,0.21673281,-0.37252718,-0.4327623,0.27390847,0.13223375,-0.02954203,0.02317286,-0.49663517,-0.18709655,0.33175293,-0.31496128,-0.16420701,-0.244761,0.1634287,0.62734383,-0.3716298,-0.24472602,0.20621313,0.3652512,-0.29122618,-0.5927849,-0.09632916,-0.38922408,0.2892088,-0.029919872,-0.4069069,0.05339351,0.107309416,-0.34139973,-0.0146005405,0.32861972,-0.32843325,0.10517313,-0.33589795,0.109901465,0.84634686,-0.1131345,-0.26802057,-0.7536851,-0.5180624,-1.0036561,-0.29106537,0.48746333,0.27386567,0.05956914,-0.59035885,0.05575775,-0.24214026,0.014015598,0.029248282,-0.48125196,0.47092873,0.12299421,0.59264964,-0.094622254,-0.69739014,0.30000407,0.18457016,0.12570728,-0.47742394,0.6518,-0.12072502,0.8594946,0.027435286,0.05629784,0.18520942,-0.54539186,0.09461425,-0.2825027,-0.33011743,-0.6793348,-0.021760583,733 -518,0.37550026,0.13050608,-0.57758987,-0.19074376,-0.3422997,-0.058935132,-0.31070575,0.14788334,0.2388876,-0.5302784,0.14000109,-0.14946128,0.07979722,0.14768584,-0.1572769,-0.709128,0.09350567,0.1972173,-0.3991876,0.61325586,-0.53582525,0.2815165,0.24056087,0.0964259,-0.3110822,0.2733162,0.28259805,-0.4491167,0.042669415,-0.2191105,-0.04186294,0.19628148,-0.7365516,0.3859612,-0.039603133,-0.15793978,0.23958024,-0.2950818,-0.32713333,-0.7069325,0.08171161,-0.7686529,0.51965725,0.16830198,-0.2784191,0.18738699,0.077133544,0.09163933,-0.19545837,0.25843272,0.283134,-0.2779657,-0.42726642,-0.30738664,-0.21923673,-0.5412345,-0.5878374,-0.16293809,-0.6877162,-0.03962096,-0.41891482,0.20613186,-0.37466004,-0.10347841,-0.14265725,0.3765731,-0.4983735,0.133005,0.081068076,-0.19729145,0.40714815,-0.4881684,0.10457044,-0.06697204,0.2211705,0.07324046,-0.30573112,0.2274275,0.30834022,0.51628476,0.06078533,-0.27475867,-0.32444948,-0.15423095,0.2320685,0.600526,-0.19409312,-0.1948007,-0.114228085,-0.059360165,0.20747907,0.35789227,-0.25056562,-0.4792936,-0.06747974,-0.09144335,-0.40367183,0.4541466,0.57116455,-0.38882834,-0.076716356,0.38491482,0.30995458,0.023212533,-0.0995245,0.16828553,-0.10550893,-0.5924838,-0.21552685,0.25479656,-0.018937664,0.44908497,-0.12295558,0.23025937,0.7400142,-0.1137022,-0.16956724,-0.07140674,-0.115951575,0.17701554,-0.09374665,-0.1336677,0.31464761,-0.7067751,-0.10574288,-0.38446403,0.83809346,-0.12298006,-0.9629582,0.3770449,-0.5490091,-0.0146725625,-0.1756715,0.8034822,0.66070193,0.7539925,0.10705968,0.78173786,-0.5595303,0.10229965,-0.020958718,-0.57084024,0.42733055,0.06730737,0.17582059,-0.39772436,-0.22982986,0.15007123,-0.0007744602,-0.014511211,0.67416847,-0.3545405,-0.1300563,0.012965219,0.75300074,-0.41174415,-0.18112163,0.55125815,0.9998559,0.66535395,0.2010795,1.2474476,0.2109669,-0.04787717,-0.08912829,-0.18529913,-0.8668213,0.23040536,0.3035876,0.2805939,0.04823052,0.06517693,-0.1565436,0.22041167,-0.23485228,-0.24055764,-0.24397482,0.38902646,-0.17106366,-0.21584927,-0.262942,-0.25120115,0.10475214,0.16911149,0.14413004,0.20709081,-0.048720572,0.3829125,0.15165843,1.4002264,-0.03377149,0.24809039,0.11254054,0.27239457,0.36043134,0.11370375,-0.093987085,0.46227175,0.3699674,0.12815489,-0.5120321,0.10525668,-0.05635907,-0.46457842,-0.09972894,-0.30788913,-0.0037157536,-0.14188167,-0.27684543,-0.1285543,0.07182603,-0.5473256,0.5624991,-2.5868344,-0.072338186,-0.043557126,0.43356118,-0.06560515,-0.1939708,-0.16645849,-0.51913327,0.6198823,0.39005885,0.5672037,-0.5826984,0.39764804,0.52736384,-0.39896083,-0.12933473,-0.7506856,0.044339053,-0.15361652,0.28214732,0.010190955,-0.2538328,0.035076447,-0.006609891,0.556222,-0.08378029,0.20117526,0.36264116,0.38427544,0.09026037,0.47374263,-0.08080799,0.4357326,-0.19018541,-0.14776981,0.20809829,-0.072293,0.23835015,-0.34944016,0.08699341,0.3459806,-0.43531317,-0.85825604,-0.4765595,-0.18836223,0.97267675,-0.4897878,-0.5422405,0.39344302,0.035501175,-0.21214029,0.027663205,0.55663073,-0.1255823,0.1378437,-0.70133644,0.09717094,0.026750786,0.31972095,0.05359838,0.05016301,-0.44965023,0.6102802,-0.07411142,0.6231581,0.49823475,0.09720073,-0.18318368,-0.46486282,0.2010694,0.97752094,0.17309238,0.16449758,-0.24764875,-0.17148617,-0.06270883,-0.14687519,-0.012797533,0.50253886,0.80688536,-0.10881354,0.17190816,0.38610056,-0.14822957,-0.028980078,-0.15630898,-0.46013847,-0.097175285,-0.104776226,0.46766907,0.65126103,-0.16453576,0.4316862,0.00856962,0.3896778,0.024601262,-0.52849615,0.5230273,0.82381105,-0.18368675,-0.16063257,0.584262,0.51293844,-0.09194446,0.51422554,-0.480284,-0.46268123,0.42494917,-0.12186122,-0.6368743,0.30572286,-0.4203309,0.1408196,-0.80316514,0.43308786,-0.3175921,-0.6315122,-0.45292172,-0.035043176,-3.8793585,0.17675476,-0.31849045,-0.04511931,-0.14654692,0.031129241,0.27288222,-0.36459154,-0.4289174,0.15127082,0.2844999,0.46930665,-0.21020176,0.05912543,-0.3595519,-0.13217202,-0.12819684,0.31434542,0.15403771,0.11235467,-0.15440682,-0.46131063,-0.049699843,-0.07720219,-0.3644938,0.01758546,-0.3866941,-0.45112425,-0.096990034,-0.5984779,-0.37869674,0.70785844,-0.4996945,-0.0895108,-0.16665839,0.057785954,-0.043898456,0.4008619,-0.046112087,0.19218019,-0.2058742,-0.071125045,-0.23782137,-0.29946533,0.38621736,-0.055975623,0.17058276,0.43457815,-0.09855539,-0.095218815,0.5673008,0.37791044,0.016764283,0.8696353,0.3248686,-0.13584569,0.24095085,-0.25855327,-0.23257561,-0.7949902,-0.27745634,-0.25193974,-0.5026487,-0.39991826,-0.009522378,-0.42343387,-0.7883729,0.6114926,0.06445449,-0.09257363,0.02713838,0.33781937,0.29457685,-0.049239747,-0.045655813,-0.23550291,-0.21374992,-0.52193594,-0.20396395,-0.7680574,-0.47680452,0.19029872,1.025182,-0.29538855,-0.17452356,0.05001995,-0.021474898,-0.054884885,0.19896431,0.18127373,0.34128046,0.36093563,0.14214446,-0.79836404,0.610396,-0.22395317,-0.14973293,-0.7236825,0.051886,0.60682195,-0.9527706,0.42286706,0.53618556,0.078112654,0.1263733,-0.699016,-0.43549588,0.09421045,-0.20106183,0.45115235,0.026216583,-1.0275723,0.6020228,0.29453036,-0.25197148,-0.79665893,0.41283098,-0.083688125,-0.32901415,0.23252858,0.40262666,0.0657393,0.028264197,-0.27545944,0.10537141,-0.46726042,0.4752639,0.095594026,-0.21420968,0.5673538,-0.09691407,-0.15967938,-0.8364026,-0.13791236,-0.53807575,-0.19551054,0.3135109,-0.098287806,0.042210132,0.061122265,0.03380031,0.49527946,-0.32645845,0.1457505,-0.1262308,-0.24278821,0.36793417,0.5022333,0.39432696,-0.38081318,0.6774745,-0.0894094,-0.13658196,-0.23559621,0.2717138,0.40372562,0.10149781,0.39050344,-0.028368099,-0.100911856,0.2512624,0.99161667,0.2230915,0.42686233,0.21340366,-0.07286104,0.48736525,0.053156164,0.14267096,-0.03097831,-0.50250584,-0.17185213,-0.21652988,0.13460572,0.4962077,0.2092401,0.5266767,-0.18314,-0.023200909,-0.031814665,0.40077838,0.29938737,-0.77611166,0.4344928,0.2596435,0.42562833,0.6562604,0.12890956,0.045979787,0.64455646,-0.15213561,0.15916643,0.16351695,-0.0044847387,-0.36211905,0.5063288,-0.703196,0.24024503,-0.22924863,0.004344446,0.24309042,0.0052459156,0.3864821,0.9781385,0.024459822,0.13728786,0.013347268,-0.105961956,0.16936408,-0.33451346,-0.046377447,-0.27721828,-0.34738728,0.7690085,0.33773503,0.4495794,-0.12694325,-0.13524365,0.25302544,-0.08398722,0.20383617,0.029658457,-0.043955386,-0.042964008,-0.5115796,-0.27218357,0.7054745,0.045334693,-0.012335107,0.15659395,0.025677357,0.39807558,-0.28989774,-0.14462002,-0.17000338,-0.5538364,-0.025754366,-0.31802553,-0.49347502,0.6461728,-0.24274376,0.25522605,0.105521634,0.065413795,-0.26951647,0.16148548,0.25431797,0.6045495,0.1050284,-0.30536863,-0.24218409,-0.2014672,0.2455304,-0.3590405,-0.16997544,-0.12604041,0.025416894,-0.6911489,0.21900995,-0.35938305,-0.27910253,0.13646185,-0.15858018,-0.14172576,0.44103688,-0.03488105,-0.2435907,0.27306086,-0.13540967,-0.25969076,-0.31307966,-0.27803543,0.04734207,0.039471388,-0.00671927,-0.03639404,-0.120201,-0.04291898,0.19314174,0.1165992,0.1226986,0.15548189,0.34249267,-0.27001756,-0.0712264,0.25990677,0.6073659,-0.040709145,0.09343258,-0.23959449,-0.3881561,-0.2682733,-0.12395095,-0.050825804,0.2576833,0.15305717,-0.3865436,0.8910573,-0.030785827,0.7903204,0.044493884,-0.31533185,0.17544952,0.460942,0.053678624,0.022604981,-0.26028386,1.0486639,0.7563478,-0.06651847,-0.27243045,-0.5095444,-0.06369687,0.21597722,-0.28262895,-0.22339939,-0.047089197,-0.6344925,-0.17475107,0.2305137,0.18983881,0.014446608,-0.09507402,-0.079198144,0.118394814,0.22024561,0.12687458,-0.5868793,0.08941119,0.30041185,0.21938515,0.2069101,0.19304557,-0.27078256,0.30870646,-0.378884,0.1644052,-0.4158101,-0.02983981,-0.078082,-0.109062396,0.13887306,-0.05070514,0.32090095,-0.015265865,-0.34411377,-0.14871241,0.47470012,0.28713784,0.3622932,0.8270651,-0.20837307,-0.047252655,-0.057420544,0.60836226,1.2209538,-0.3315229,-0.10239307,0.53768414,-0.43971372,-0.5322159,0.24081172,-0.40719095,-0.029645085,-0.050009795,-0.4656332,-0.23178568,0.042150114,0.04583433,-0.12293144,0.09742134,-0.6299658,0.006297418,0.12059207,-0.27378738,-0.28154796,-0.17349513,0.3276579,1.0463187,-0.42172307,-0.07378113,0.05528319,0.060808543,-0.22084093,-0.6113078,0.075939134,-0.24518014,0.17388308,0.34618065,-0.37185472,0.15432458,0.21664,-0.5150827,0.20598193,0.3393933,-0.31879082,0.06734461,-0.31386748,0.035005722,0.82378167,-0.27903458,-0.09260955,-0.37578765,-0.6131777,-0.82803017,-0.28617826,0.23489414,0.14743379,0.027699172,-0.4127654,-0.054860454,-0.06565019,-0.06799531,-0.1476641,-0.5011567,0.52572095,0.048816614,0.44422278,-0.14743663,-1.0293969,0.21012762,0.21845701,-0.26884976,-0.61344427,0.50767887,-0.35103053,0.83130324,0.10643281,0.09977052,0.29877493,-0.7195676,0.034565996,-0.45936337,-0.25155646,-0.7303423,0.009525542,734 -519,0.4485857,-0.10412366,-0.4908848,-0.11705957,-0.26259238,0.06249067,-0.29377455,0.28444514,0.09637828,-0.62204,-0.049555182,-0.108923085,0.0074155754,0.3801313,-0.32351473,-0.47713572,0.040209763,0.011374936,-0.42779994,0.31602785,-0.42760465,0.16379154,0.032767646,0.38039583,-0.008697263,0.2808845,0.22148278,-0.16190083,-0.16711958,-0.20942722,-0.07902447,0.21966831,-0.6754469,0.10457819,-0.22707011,-0.25341645,0.028708601,-0.56579894,-0.5202719,-0.56078833,0.20015314,-0.90725625,0.5335686,0.18249376,-0.16552459,0.18459645,0.20351206,0.1546861,-0.03316852,0.0507099,0.2632685,-0.27133134,-0.08022179,-0.12874703,-0.2064745,-0.54473096,-0.75543565,0.023036793,-0.5753907,-0.009731387,-0.25097612,0.24694708,-0.3415676,-0.09861935,-0.10710745,0.425615,-0.39433065,-0.1026475,0.15812434,-0.14526863,0.469451,-0.6007511,-0.30435115,0.03251428,0.33537468,-0.27831635,-0.22190745,0.28313065,0.3421152,0.42355567,0.023872469,-0.23123252,-0.49848154,0.06922418,0.31551966,0.5147727,-0.2939961,-0.35061994,-0.21216498,-0.067552574,0.12263073,0.2758382,-0.029045327,-0.46076196,-0.05199083,0.048036482,-0.14136145,0.40162554,0.6228856,-0.26529548,-0.15684342,0.32779858,0.36496708,0.10982234,-0.14779976,0.11867804,0.07130082,-0.6246067,-0.072755024,0.13980094,-0.10159594,0.6370826,-0.16965826,0.34437534,0.65893644,-0.007363181,0.019307137,0.14636365,-0.11248807,-0.09826305,-0.25518522,-0.093921915,0.15709126,-0.514408,0.15615232,-0.16611843,0.66978157,0.14663757,-0.9979124,0.35104033,-0.60662216,0.104190946,-0.02767743,0.43674946,0.6860109,0.39549989,0.12662327,0.78073895,-0.5046638,0.11385262,0.09607947,-0.47082472,0.33142194,-0.14771344,0.008755922,-0.6012869,-0.25864142,0.09555077,0.07704457,-0.013663961,0.47837347,-0.3408413,0.00021218402,0.32903457,0.79823107,-0.17993273,-0.074914895,0.6840113,1.1601951,0.93729055,0.17622541,1.1939678,0.06109878,-0.0702304,0.23943138,-0.17014585,-0.7723771,0.26619977,0.34170517,0.063950434,0.20031218,0.100471295,0.011480169,0.4295712,-0.43093687,0.06624185,-0.15663064,0.12297196,0.1776428,-0.25631166,-0.37525874,-0.16344616,-0.014617905,-0.10441758,0.0094223535,0.19939494,-0.033513162,0.41858175,0.13952745,1.4692413,-0.19415852,0.24353945,0.15024708,0.47984606,0.1983867,-0.2033526,-0.02905855,0.0137890065,0.39489052,0.24178205,-0.31660047,0.09809307,-0.19009344,-0.5646517,-0.1933153,-0.33442858,-0.04263711,-0.14142302,-0.52411366,-0.08800112,0.008322588,-0.46607462,0.61161995,-2.975678,-0.030416803,-0.16880515,0.36457032,-0.17884247,-0.36112806,-0.10807509,-0.46811667,0.71725065,0.3403851,0.39230588,-0.57689285,0.36429214,0.6463997,-0.4204898,-0.08694478,-0.7081103,-0.07743109,-0.12026291,0.30945653,0.16135752,-0.26538357,0.13290246,0.11992348,0.47581273,-0.054750327,0.095850825,0.0850056,0.24054323,-0.033505503,0.48494622,-0.16682439,0.45188785,-0.22531398,-0.2598905,0.3644173,-0.38325697,0.16510959,-0.059972543,0.21573736,0.4602027,-0.37232536,-0.9515792,-0.65160286,-0.32453227,0.95054024,-0.20221451,-0.4951814,0.3591482,-0.2046205,-0.3530342,0.057510965,0.46077046,-0.1416826,0.33815473,-0.9124133,0.02263311,-0.19533266,0.18049511,-0.052591335,0.014342909,-0.5833155,0.68567,-0.057294656,0.4798992,0.5359988,0.29340482,-0.34214887,-0.4886703,0.05283323,0.8943948,0.275291,0.12226289,-0.19987977,-0.21798538,-0.06442635,-0.28960624,0.15266152,0.64863294,0.5958662,-0.10851632,0.16752194,0.25302172,0.07453884,0.07210467,-0.053041067,-0.28828153,-0.0804783,-0.040329628,0.5958606,0.8845364,-0.19575956,0.27814388,-0.15776825,0.27314314,-0.20372343,-0.31134564,0.57656115,0.9051164,-0.08494756,-0.27589425,0.6111011,0.3604123,-0.1971337,0.36980864,-0.55093247,-0.33859926,0.32083684,-0.13407384,-0.5452862,0.15541564,-0.4270597,0.029925605,-0.83938664,0.4410295,-0.3908682,-0.52844715,-0.5763776,-0.2875001,-3.9749198,0.13731517,-0.35792038,-0.22867057,-0.07475817,-0.13843295,0.39175197,-0.6911297,-0.46594995,0.117872015,-0.0067742085,0.7045447,-0.17012961,0.05440631,-0.3142457,-0.1121846,-0.42335302,0.2928225,0.20512876,0.26337507,-0.050832085,-0.27442726,-0.051222,-0.23094833,-0.49932733,0.088527866,-0.5961593,-0.42601973,-0.2138106,-0.39624828,-0.4553991,0.74858344,-0.47156373,-0.062308736,-0.31398964,-0.0050389594,-0.35599682,0.5054493,0.20161702,0.3198184,0.022550037,-0.009197444,-0.1347919,-0.28185812,0.39877644,-0.04011496,0.34933028,0.5909746,-0.25553897,0.10239558,0.49918538,0.65294826,-0.17978661,0.8279263,0.50451756,-0.039668713,0.24821134,-0.37337092,-0.24152721,-0.58774173,-0.3228363,0.038003683,-0.38625067,-0.49531788,-0.085249305,-0.3882873,-0.70954525,0.52812296,0.010203185,0.124810636,-0.10276787,0.01868105,0.2985716,-0.30653027,-0.24665414,-0.0163097,-0.04295184,-0.49898437,-0.31904188,-0.58926266,-0.6626457,-0.10651498,0.8968547,-0.025412934,-0.07516789,0.17251098,-0.20073499,-0.031296007,0.18888858,-0.005117046,0.14581212,0.3593978,0.06411741,-0.7800496,0.5607491,-0.28894186,-0.12096574,-0.75084835,0.15261258,0.583356,-0.5376714,0.7745079,0.5170145,0.22354756,-0.20463498,-0.75838524,-0.3578144,-0.12562647,-0.11605833,0.4985536,0.19078694,-0.99457943,0.3744543,0.37123647,-0.3702009,-0.5915767,0.60022485,0.10763967,-0.074432954,0.15165246,0.362573,0.04601052,-0.14497073,0.08286909,0.30533358,-0.3881721,0.4583929,0.34783903,0.080383524,0.53685606,-0.17396124,-0.10774946,-0.5001543,-0.034267895,-0.4441876,-0.1608522,0.14242421,-0.006983522,0.035797596,0.1381696,-0.10761736,0.35974434,-0.37142807,0.17161027,-0.03438675,-0.26009992,0.12843125,0.4317968,0.48868012,-0.48364025,0.5814147,0.06839099,-0.1184208,-0.08940232,0.1798806,0.4497028,0.20162079,0.29755497,-0.15535793,-0.10032229,0.059251547,0.87435573,0.16120932,0.49067622,0.19491012,-0.042106632,0.3070352,0.020457225,0.2521563,-0.024115056,-0.684856,0.04458431,-0.31045863,0.3181205,0.42149085,0.0089424765,0.31292623,-0.17566156,-0.09859189,0.037212696,0.2839317,-0.01322573,-1.5653133,0.4280467,0.3009493,0.7567873,0.40087417,0.049570676,-0.0006943281,0.7995473,-0.15215454,0.068445146,0.21017289,0.05330428,-0.40567043,0.5223462,-0.8274213,0.29496813,0.015022963,-0.087835975,-0.119549595,0.0023771909,0.29993656,0.7000141,-0.15819807,0.15959395,0.00329963,-0.28048828,0.24196365,-0.32930943,0.34612116,-0.28932747,-0.17102364,0.7856305,0.5579991,0.36313218,-0.12933896,-0.051909056,0.06695484,-0.06949984,0.10245017,-0.051692642,0.104004934,-0.057155613,-0.65906173,-0.21267965,0.45067123,-0.051195946,0.2021123,0.13878725,-0.23366623,0.19868745,-0.1622894,-0.061023492,-0.03130621,-0.6708494,0.023700412,-0.29258016,-0.44657472,0.43726677,-0.40558204,0.25627214,0.20856963,0.13827653,-0.20199488,0.36875978,0.09329934,0.7952407,-0.023985641,-0.12776054,-0.36069992,-0.15105672,0.14602628,-0.15940341,-0.1992345,-0.3805942,0.11507652,-0.25757593,0.37900093,-0.06511869,-0.18561558,0.23678091,-0.034415223,0.10413718,0.6381702,-0.17748846,-0.3471894,0.1813239,0.110328026,-0.28205636,-0.092675805,-0.1629841,0.31280345,0.1996756,-0.019961566,0.06445006,-0.123437405,-0.23572645,0.1787473,0.11779891,0.4940725,0.42918605,0.15139692,-0.3909015,-0.18286328,0.32412347,0.567694,0.075040355,-0.10632469,-0.20828412,-0.5214619,-0.36306232,0.06037434,-0.111253776,0.2410811,0.14047696,-0.19368108,0.5689021,-0.088102266,1.1016523,0.17701028,-0.29649204,0.018601788,0.38928455,-0.014855231,0.065486565,-0.4232929,0.94360393,0.65937227,-0.03697745,-0.11771921,-0.37391686,0.021261709,0.10539011,-0.19550155,-0.1257114,0.0021486708,-0.7444235,-0.014979516,0.11396032,0.15724802,0.14063461,-0.11195798,-0.14603244,0.2922205,0.14880987,0.33136413,-0.5415145,-0.027297795,0.3412951,0.40630284,-0.040338125,0.28279185,-0.42412773,0.35379335,-0.35598725,-0.00412703,-0.3559908,0.17110793,-0.09618778,-0.28566176,0.22447379,-0.17032085,0.5045386,-0.02038564,-0.17117348,-0.05576152,0.5841194,0.23865454,0.22129774,0.7207573,-0.16476572,0.17879297,-0.0710117,0.45640522,1.1151644,-0.5372375,0.0963709,0.36233765,-0.21437536,-0.5855014,0.177332,-0.53307384,0.27105847,-0.02001431,-0.34333462,-0.36506173,0.12308792,0.026576787,0.12519482,0.1480538,-0.533601,-0.2594483,0.29281607,-0.296975,-0.24583976,-0.3825442,0.117797874,0.6483296,-0.18716809,-0.11751456,0.065961994,0.2973096,-0.10172569,-0.47000113,0.17556894,-0.1800158,0.094738595,0.14093831,-0.40894455,-0.12000551,0.07287506,-0.36777952,0.33617252,0.09442102,-0.2610299,0.14472297,-0.13187607,-0.13690129,0.9658476,-0.29438457,0.25457412,-0.74014044,-0.58764744,-0.93158233,-0.30903676,0.19057949,0.0835615,0.037479363,-0.59172904,-0.0973418,0.06139963,-0.048811283,-0.095058,-0.5249921,0.41988334,0.06585949,0.5035687,-0.08723919,-0.5985915,0.039816923,0.08066999,-0.04592679,-0.5187513,0.5755114,-0.12461964,0.84893507,0.094657,0.1862442,0.112139635,-0.5002841,0.13339634,-0.16575325,-0.19399107,-0.8849588,0.0076810205,737 -520,0.46386537,-0.106356785,-0.5068397,0.004803761,-0.012009351,0.26231292,-0.14977193,0.4226318,0.26940158,-0.40211043,-0.17986536,-0.15749332,-0.097576566,0.2632046,-0.20184933,-0.61830765,-0.029373322,0.22619556,-0.46711302,0.64280516,-0.36033633,0.43365887,0.024476724,0.3544443,0.10494542,0.14047101,0.10730232,0.015888503,-0.19819264,-0.14573966,-0.04197043,0.14586942,-0.69261074,0.19292797,-0.15363748,-0.5456658,-0.1284713,-0.42821404,-0.052332554,-0.8181485,0.3985796,-0.7999736,0.6320475,0.028102694,-0.354647,0.3410296,-0.07885405,0.17571004,-0.14121838,0.06139816,0.11102073,-0.06924037,-0.03127063,-0.05160117,-0.12563565,-0.36733624,-0.6329647,0.1132638,-0.42316356,-0.023460235,-0.2213349,0.16003679,-0.27097958,-0.020849599,-0.09917857,0.30015114,-0.4032038,-0.087930076,0.17967914,-0.10497677,0.30945525,-0.6033289,-0.13723746,-0.13574104,0.18609323,-0.28933048,-0.18834242,0.13327606,0.4652954,0.62913996,-0.09902387,-0.20734902,-0.28188452,0.13748436,0.10919028,0.448839,-0.19244684,-0.4607236,-0.19818923,-0.0478136,0.4633956,0.015823457,0.3084507,-0.25523046,-0.17989348,-0.026889013,-0.26751742,0.1984441,0.5194546,-0.42700145,-0.24333039,0.4414084,0.4736143,0.08915918,0.04186735,0.09130474,-0.07348948,-0.34932116,-0.0542835,0.1092898,-0.34491047,0.54646164,-0.118137084,0.14473857,0.44778726,-0.0757988,-0.0033489722,0.031215107,0.020079762,-0.15992062,-0.12500343,-0.2549536,0.25423938,-0.37768087,0.1806288,-0.30490667,0.6849413,0.17230494,-0.746599,0.30048484,-0.41690132,0.13106647,0.061033685,0.48728243,0.8078591,0.42607716,0.2252957,0.7534737,-0.5473269,-0.04453378,-0.059368532,-0.19082944,0.07086573,-0.14319532,-0.15886843,-0.45031652,0.093445994,-0.0950345,-0.2677576,0.13586058,0.47839555,-0.5657428,0.024640629,0.097604975,0.68099254,-0.32063934,-0.03151237,0.85688907,1.1186901,0.9715846,0.117488466,1.1737864,0.35573465,-0.27240402,-0.018974777,-0.3580164,-0.7220069,0.31403524,0.41524294,-0.27269837,0.47928947,0.06895668,0.09530755,0.22561242,-0.43081242,-0.06564977,-0.18718109,0.07457566,-0.031442743,-0.13584946,-0.3090112,-0.17006601,0.07056388,0.14904049,0.036583155,0.16984753,-0.2696688,0.28421625,0.2614199,1.5263594,-0.21991786,-0.02611601,-0.052473713,0.24980924,0.29881525,-0.1741098,-0.09987287,0.25490382,0.31204742,-0.10116156,-0.54003596,0.117093444,-0.14974558,-0.5887731,-0.18920751,-0.009159684,0.014910186,0.21954012,-0.18993957,-0.22768784,-0.028041827,-0.39794996,0.45549917,-2.2924635,-0.15842351,0.028531095,0.3221256,-0.18235326,-0.5460944,-0.0137087405,-0.47645086,0.44246477,0.3772328,0.22936904,-0.68740994,0.1453775,0.33480248,-0.37919664,-0.2307326,-0.54342395,-0.085632145,-0.0063927835,0.25793964,0.04833891,-0.23183669,-0.008213797,0.28603625,0.53746945,0.10627424,0.06701657,0.41091076,0.38474226,0.10647615,0.20326434,0.0782078,0.5253776,-0.101356804,-0.15965769,0.49455753,-0.43532714,0.22562727,-0.053369917,0.18712576,0.25798383,-0.47475505,-0.79086477,-0.85001695,-0.293725,1.4339119,-0.12533185,-0.52825916,0.13918415,-0.019617805,-0.29848343,0.0070629716,0.48451275,-0.20585553,-0.22580983,-0.92377174,-0.15430613,-0.038121413,0.2938225,0.033707432,0.07311487,-0.53198296,0.72453386,-0.15588148,0.49145263,0.3683486,0.29875582,-0.085588045,-0.61517054,0.069491066,1.3218155,0.5660377,0.09521597,-0.34201303,-0.19417025,-0.4904805,-0.01755582,0.091902904,0.35018015,0.7954582,-0.023973716,0.033141263,0.2614376,0.08724441,0.118670695,-0.18705533,-0.36106452,-0.13292547,-0.030915337,0.59369546,0.462756,-0.22967325,0.426686,-0.10397092,0.2208742,-0.19608054,-0.5040141,0.59368104,1.2349756,-0.24558945,-0.34277865,0.638656,0.17312633,-0.24672829,0.50308466,-0.6947064,-0.32276395,0.3738999,-0.14781462,-0.33769718,0.22181019,-0.38142744,0.17571913,-1.0022444,0.34226307,-0.18919255,-0.2762528,-0.54691356,-0.04338056,-2.8583217,0.2236575,-0.08340029,-0.13646877,-0.27199093,-0.14727421,0.35510442,-0.6308536,-0.82558393,0.030797688,0.033083025,0.6386956,-0.026610037,0.12924302,-0.09021365,-0.41543463,-0.3234749,0.25952014,0.18697986,0.36356544,0.075303994,-0.37310925,-0.109509654,-0.25505903,-0.40340897,-0.04565144,-0.49860382,-0.50328463,-0.15900049,-0.43026084,-0.1845884,0.47233397,-0.56542176,0.096928336,-0.19867302,-0.14599773,-0.08475626,0.2946908,0.16800065,0.056916177,0.18493806,-0.15624611,0.07919354,-0.22392191,0.27546957,0.0948758,0.087409906,0.39171442,-0.26484737,0.27223274,0.36217088,0.78232145,-0.1603279,0.8191772,0.5420348,-0.08928137,0.23016839,-0.3892035,-0.18894036,-0.6709015,-0.31558397,-0.07762021,-0.43887377,-0.5180557,-0.075674914,-0.34354705,-1.0157918,0.39985853,-0.1833632,0.1621863,0.15293951,0.43925986,0.50489986,-0.103083454,0.054701965,-0.2592708,-0.11805908,-0.41147834,-0.36949518,-0.63935214,-0.37757057,0.11009222,1.0092394,-0.06824187,0.11542966,0.13917191,-0.046049,0.11706043,-0.12762721,0.14112528,-0.018127237,0.41816214,0.069547735,-0.71595186,0.25795597,0.13875401,-0.15597953,-0.54155284,0.31972668,0.5078375,-0.7097649,0.416137,0.314854,0.07747115,0.11731832,-0.561936,-0.042588763,0.025708845,-0.34021857,0.40450177,0.2753145,-0.546906,0.46410194,0.43451405,-0.1784824,-0.7488808,0.34120777,0.05520922,-0.17243147,-0.12967202,0.44460586,0.010560751,0.016710665,-0.19625044,0.16150424,-0.42026496,0.26557523,0.24299788,-0.056642942,0.19263615,-0.26163265,-0.20875344,-0.78395736,0.227362,-0.5948333,-0.34609318,0.14083654,0.18745498,0.040582836,0.17087947,0.22678582,0.54260814,-0.44665998,0.2593563,0.00096194446,-0.10772773,0.3466329,0.53296506,0.4380196,-0.26755327,0.4342404,-0.12516055,-0.12673594,-0.19647376,-0.061206877,0.47819278,0.19954035,0.14256068,0.2702754,-0.09450538,0.31559905,0.5070458,0.29916397,0.40016112,-0.025151813,-0.33064842,0.17940895,0.18659775,0.29901907,-0.17738439,-0.39623803,-0.11481037,-0.099036776,-0.0034489024,0.6119734,0.2103678,0.19988298,-0.2020928,-0.27567968,0.0044613183,0.13794759,-0.12570252,-1.0840265,0.3765273,0.05514214,0.82229805,0.6198161,-0.11056311,0.27249286,0.33363804,-0.3311371,0.22443525,0.3846578,0.012592102,-0.5158258,0.39280766,-0.7206461,0.15745206,-0.1416248,0.11319681,0.06191844,-0.1330715,0.37341446,0.9058984,-0.12720086,0.11969481,-0.19708054,-0.15999095,0.027811578,-0.37011772,0.0413802,-0.50236934,-0.34470877,0.7833358,0.3409727,0.3677984,-0.37811428,0.035924494,0.016250813,-0.19509575,0.15915896,0.021208037,0.13166429,-0.10687322,-0.49391147,-0.22421305,0.54948723,0.10678331,-0.05810079,-0.06940977,-0.42626977,0.10516679,-0.21379113,-0.03974455,0.01887695,-0.81293565,-0.082653925,-0.39910603,-0.2490076,0.40318647,0.0063305837,0.1351452,0.15069734,0.11440515,-0.25870135,0.1258901,0.25998408,0.53807276,0.18038666,-0.061648153,-0.3856282,0.3460235,0.18490086,-0.27008483,-0.013271808,-0.13133495,0.03428496,-0.4754797,0.5006684,0.03115591,-0.3348685,0.13650008,-0.0716271,-0.07721745,0.5294022,-0.3372074,-0.19120352,0.16824733,-0.062993705,-0.20023128,-0.2253436,-0.26743284,0.17490289,0.15220036,-0.107520595,-0.13680574,0.035406284,-0.23788026,0.33978757,0.07311209,0.32412794,0.5144094,0.005113457,-0.6214202,-0.11695985,0.14894737,0.35026938,0.07767941,-0.15111814,-0.30893305,-0.52051735,-0.28681827,0.01845353,-0.19110915,0.21455908,0.08343331,-0.32976696,0.6515075,0.32300034,1.2249572,-0.114552654,-0.38571215,-0.07000663,0.54671115,-0.11670911,-0.14857742,-0.5464025,0.9142617,0.5482883,-0.14856325,0.029736618,-0.1335342,-0.094888724,0.22916456,-0.24784349,-0.03622837,-0.01746436,-0.8263764,-0.43892995,0.19314173,0.35545492,-0.13504468,-0.025752084,0.13840231,0.19267325,0.07317751,0.25116062,-0.37309602,-0.09623893,0.3143609,0.1653501,0.09445498,0.011567695,-0.4250658,0.27046898,-0.5315632,-0.16769281,-0.3221833,-0.0019907781,-0.02538831,-0.42236295,0.25633168,0.16942333,0.24002378,-0.32029048,-0.46927038,-0.21679465,0.47195265,0.016109483,0.14583567,0.4475983,-0.29277232,0.1414923,0.10148614,0.48914173,1.2133502,-0.10684562,0.11915929,0.3004122,-0.33841014,-0.61069554,0.30928007,-0.2509393,0.21276286,-0.076455526,-0.3159884,-0.69703895,0.3352206,0.16819127,0.06658479,0.17312409,-0.62810296,-0.22304884,0.3091506,-0.3738188,-0.13773748,-0.24749553,0.09734986,0.6906039,-0.4216372,-0.48479208,0.1407883,0.2993372,-0.3415175,-0.6602643,-0.14446919,-0.38841996,0.42543277,0.23077656,-0.29299736,-0.071597636,0.18936542,-0.40613583,0.04132373,0.18608081,-0.45746368,-0.079178795,-0.45715252,0.16990522,0.7791843,-0.14025733,0.040427346,-0.4591277,-0.43663874,-0.95492446,-0.3758594,0.541451,0.15216853,0.053051166,-0.7528781,0.0066859364,-0.31661293,0.0068692053,0.044150166,-0.31546593,0.3973331,0.2729465,0.5140395,-0.14677846,-0.64918965,0.15000394,0.16294205,-0.04059487,-0.5848259,0.46133608,0.14253734,0.890513,0.033493847,0.0094536375,0.26250497,-0.7869105,0.0506437,-0.17847715,-0.027196517,-0.6563454,0.17536046,738 -521,0.41925433,-0.17755175,-0.4628852,-0.17147346,-0.35985819,0.21066506,-0.097134545,0.41063818,0.26927996,-0.375613,-0.045973863,-0.12750728,-0.12869723,0.2727527,-0.22831924,-0.5496311,0.1179223,0.057723675,-0.45212635,0.6688189,-0.3753303,0.32485765,0.019773781,0.24529555,0.08781387,0.2630346,0.08578803,-0.103963204,0.062979005,-0.389469,-0.1233296,-0.11004793,-0.6386294,0.19686273,-0.09697795,-0.407118,0.027796235,-0.47317764,-0.45148703,-0.98713785,0.29683784,-0.9486597,0.45202726,-0.054792922,-0.29563406,0.10416164,0.15738115,0.3360067,0.07067957,-0.110368095,0.2704543,-0.2748427,-0.11258774,-0.17090447,-0.06478492,-0.65766394,-0.69688416,-0.11087336,-0.39261994,-0.20027265,-0.16862907,0.18133132,-0.39287177,-0.02336881,-0.08605877,0.5819704,-0.34413147,0.03973162,0.21726267,-0.2188902,0.39502898,-0.8132941,0.01545336,-0.13649893,0.16819398,-0.03764173,-0.19102845,0.52025414,0.40379578,0.33856487,0.055408638,-0.3344256,-0.3202364,-0.11549233,0.080728404,0.59763396,-0.1744175,-0.37502334,-0.117229894,-0.038387496,0.2424423,0.28080598,0.02801779,-0.22659208,-0.03268472,0.13652223,-0.2535519,0.50073767,0.70421606,-0.21421432,-0.1583998,0.5062663,0.5690522,-0.017137857,-0.25211102,-0.077103436,-0.016873032,-0.44029528,-0.10930046,0.17775822,-0.26998678,0.5938387,-0.24547684,0.15026203,0.6823863,-0.31457266,-0.008889266,0.22763774,0.18339935,0.036696553,-0.18876557,-0.25832263,0.3294186,-0.69558203,0.18764575,-0.4219806,0.65982133,0.2033275,-0.71379983,0.23755653,-0.51538926,0.2094859,-0.17852078,0.5245865,0.7360654,0.39847735,0.24082012,0.9184764,-0.5024553,0.023488197,-0.0861476,-0.34778613,0.16634753,-0.31387085,0.053381328,-0.34386465,0.029968968,-0.09760911,-0.22826634,-0.026459651,0.10258365,-0.63840157,-0.18903859,0.23140772,0.81892836,-0.19668014,0.035603702,0.70613384,1.159539,1.1358451,0.032875944,1.1113952,0.18535332,-0.25369233,0.19703151,-0.08353482,-0.7609991,0.23808418,0.3141848,0.2500313,0.1980913,0.04096222,-0.23355448,0.32358375,-0.6738254,-0.10751655,-0.27087268,0.40929732,0.28631073,-0.1326003,-0.30229726,-0.19451287,-0.11131605,0.12590292,0.03996683,0.27761227,-0.26373333,0.17748526,-0.03150223,1.2603275,-0.09451009,0.07967706,0.17091487,0.70666856,0.16180025,-0.15058602,0.32039306,0.31268358,0.26059964,0.32548627,-0.6169386,0.115930595,-0.43366167,-0.37627575,-0.2262257,-0.34020907,-0.032696567,0.13175258,-0.45575905,-0.3560823,-0.13009128,-0.14610727,0.47064513,-2.7219052,-0.09986396,-0.22524342,0.23809166,-0.31036234,-0.27361125,0.115864806,-0.7226613,0.39405817,0.34506395,0.47450128,-0.7409274,0.30019578,0.49884674,-0.6744164,0.0032489684,-0.70349354,-0.1385525,-0.07918048,0.4387555,0.19710687,-0.07334745,0.08474159,0.043207414,0.6462795,0.24778418,0.21516125,0.36226162,0.21733937,-0.021683233,0.43950966,0.080141075,0.54101384,-0.19964716,-0.098258495,0.3224493,-0.49550232,0.1911693,-0.20824523,0.021044161,0.6394386,-0.38338217,-0.8100821,-0.8231574,-0.21248262,1.2024978,-0.13149072,-0.75034624,0.22787333,-0.18003449,-0.21539648,-0.10590608,0.42972606,-0.14199881,-0.09531108,-0.67157835,-0.015322826,-0.15907994,0.2770674,0.0022700813,-0.069101326,-0.4167725,0.7165039,-0.010480846,0.4694009,0.19811781,0.12560508,-0.3038966,-0.48322323,-0.10353251,0.8001207,0.6785401,0.056526277,-0.15979667,-0.071864165,-0.31185737,-0.33397558,0.14015505,0.6966359,0.638917,-0.27486643,0.057258423,0.42380047,-0.10246633,0.13471682,-0.02007336,-0.43383503,-0.1703687,-0.09209562,0.5479885,0.70428246,-0.10413207,0.23699045,0.004999003,0.25813174,-0.07999616,-0.58231354,0.5204882,1.1138546,-0.15339196,-0.18345822,0.51857823,0.39042404,-0.35051033,0.46883553,-0.6070061,-0.3474943,0.47176996,-0.06323863,-0.62842256,-0.090801485,-0.24688418,0.012046448,-0.42587358,0.43072796,-0.49002004,-0.74704665,-0.4556988,-0.18647757,-2.60655,0.19958584,-0.32772556,-0.039955787,-0.20785229,-0.070989236,0.31538704,-0.53539217,-0.51255596,0.20454307,0.10706263,0.7173608,-0.052489955,0.11230246,-0.33315676,-0.13982871,-0.61116856,0.20245041,0.0025341255,0.23557928,0.0012499605,-0.27562812,0.07165527,-0.029650703,-0.49684414,0.108702615,-0.54088825,-0.45727897,-0.3792221,-0.39827448,-0.36937946,0.78673923,-0.20649423,0.17719923,-0.10220457,0.008756881,-0.121146,0.08143473,0.11829444,0.107353844,-0.008209859,-0.08682494,0.041009124,-0.29699713,0.46301413,0.030218486,0.44302544,0.32125214,-0.012437428,0.0946142,0.4937082,0.5411954,-0.07623405,1.0159998,0.39440757,-0.070424266,0.2763081,-0.08533363,-0.18331979,-0.4880325,-0.15433078,0.03268438,-0.39472225,-0.3309448,0.16691272,-0.34103456,-0.82480365,0.4308065,0.15439574,0.32959342,-0.07696674,0.15709926,0.48001033,-0.26179013,0.035298444,0.0031748584,-0.08215637,-0.58857816,-0.22972205,-0.754229,-0.3456897,0.16129918,1.0248307,-0.29644853,-0.14751315,0.00281527,-0.21957114,0.105794884,0.15445697,-0.15611577,-0.020311896,0.41701874,-0.056459475,-0.7665306,0.5359507,-0.10870923,0.024690611,-0.62571317,0.6290805,0.5830427,-0.61359054,0.44567338,0.36382532,0.08406894,-0.47345456,-0.59915787,-0.19117092,-0.11768965,-0.34205124,0.40515146,0.17736043,-0.88725525,0.2963355,0.2014308,-0.34506866,-0.63666683,0.5616739,-0.051284842,-0.21528043,-0.075846925,0.38253307,0.39956552,-0.021253848,-0.093928024,0.23282667,-0.5938178,0.22290967,0.21407147,0.014385036,0.46358997,-0.022178706,-0.22403355,-0.71533257,0.103076644,-0.6105425,-0.32824197,0.33170888,-0.073287435,-0.054063987,0.41999823,0.21005641,0.42912373,-0.085842796,0.16396329,-0.08221028,-0.33172327,0.58524364,0.4109152,0.4683784,-0.5628415,0.66571075,0.06149099,-0.30435735,0.08620102,0.11194887,0.4734907,0.2545761,0.61143297,0.07804494,-0.09715073,0.028375948,0.7085005,0.24751203,0.48659268,0.04168464,-0.10015108,0.32467255,-0.04956745,0.15971613,-0.006882598,-0.81488,0.017777046,-0.18548341,0.099670954,0.43147618,0.031987786,0.3326843,-0.0037352336,-0.30376312,-0.13960175,-0.031524803,-0.22570147,-1.4314069,0.42507157,0.23062862,0.9776359,0.4461556,-0.031035472,-0.13281235,0.82668227,-0.021402683,0.13167025,0.42931867,0.012206359,-0.32216594,0.5747606,-0.87387794,0.37634778,0.16287902,0.014882884,-0.10548435,0.1390632,0.37564978,0.7692982,-0.2614662,-0.09437917,-0.20108128,-0.452727,0.46687388,-0.34396544,0.22184685,-0.5657503,-0.4211562,0.44834152,0.38300535,0.31209424,-0.057110224,-0.055960555,0.08331577,-0.027123433,0.2994072,-0.028520823,0.032988396,-0.10678674,-0.37936303,-0.14756271,0.5480509,-0.4546934,0.25929755,0.03188656,-0.0031423143,0.22944328,0.009736998,-0.052823048,-0.014791866,-0.77911,0.063739225,-0.078099884,-0.36299077,0.5899491,-0.24094799,0.19391356,0.14101887,0.04346339,-0.27258042,0.20395887,0.11787356,0.56468016,-0.1896365,-0.12239049,-0.46377587,0.031051066,-0.049811687,-0.26944628,0.20321384,-0.14427236,-0.03889222,-0.49175802,0.4903905,-0.14906202,-0.22145568,0.15560706,-0.11875875,-0.013707042,0.5558223,-0.30582693,-0.10728876,0.04846268,-0.26577657,-0.28110987,-0.21970667,-0.074045666,0.21056506,0.2774898,0.062343415,-0.14933579,-0.23998073,-0.019195255,0.28182358,-0.029626932,0.1954701,0.30891687,-0.02199657,-0.42129096,-0.11412655,0.20897602,0.5420458,-0.034752674,0.0055518574,-0.12075459,-0.53037184,-0.491131,0.18388584,-0.05190342,0.53887796,-0.020831427,-0.15409322,0.69535816,0.04640444,1.24707,-0.16872086,-0.3345558,-0.08479243,0.5554186,0.050796263,0.03612783,-0.40221962,0.86952454,0.56203824,-0.13862689,-0.020934317,-0.45739618,0.124059506,0.29870108,-0.112795435,-0.058523785,0.046314728,-0.7554137,-0.3426561,0.21741061,0.30493015,0.099155374,-0.094641365,-0.040417757,0.3915549,0.16888593,0.47156957,-0.43678936,-0.20228137,0.28800315,0.25008538,0.06696045,0.23747815,-0.37996587,0.22399214,-0.57590395,0.07119044,-0.004490665,0.093728706,-0.14623177,-0.24639235,0.18369174,-0.049166877,0.40345567,-0.16049828,-0.46104553,-0.105663456,0.61915344,0.28113562,0.13456686,0.6801434,-0.238292,-0.06483477,-0.10105324,0.5289453,1.222907,-0.17043681,0.07746162,0.23570494,-0.5467405,-0.70178795,0.30526972,-0.19502458,0.093610324,0.104858704,-0.25937763,-0.5139784,0.2333946,0.21333148,-0.05260843,0.27122563,-0.7747246,-0.3118686,0.07028661,-0.4984377,-0.2651303,-0.47022843,0.35883245,0.66456276,-0.22028027,-0.25040194,0.06438006,0.33693415,-0.2652356,-0.691331,-0.055658765,-0.45811626,0.25619718,-0.10354262,-0.48871398,-0.13855454,0.12721522,-0.5941835,0.13441308,-0.052537594,-0.32226244,0.11925131,-0.20648089,-0.0036682147,0.76766425,-0.1977633,0.11485047,-0.5649931,-0.44081315,-0.6239425,-0.39525396,0.21012558,0.30442712,0.025440196,-0.6532765,-0.2606576,-0.13841733,0.017211756,-0.13499755,-0.4139141,0.42529026,0.08336922,0.26543826,-0.022384832,-0.9269102,0.15639783,0.08231868,0.052241895,-0.4712991,0.41104192,-0.072762586,0.7671775,0.24236219,0.05835441,0.1425134,-0.3359546,0.32869172,-0.284664,-0.36368293,-0.61161894,0.078839585,744 -522,0.55931705,-0.30450174,-0.5254979,-0.1684933,-0.2869275,0.028874738,-0.29562452,0.5469386,0.039826054,-0.61051863,-0.111250825,-0.24194779,-0.13236941,0.31964406,-0.43443495,-0.72285706,-0.069733486,0.011312016,-0.3456884,0.54176825,-0.3759156,0.36768082,0.11400997,0.25766394,0.3314256,0.20097311,0.24616316,-0.10744327,-0.35172287,-0.20635082,0.06326102,-0.05795254,-0.6097767,0.0069442648,-0.33600157,-0.67909306,0.100427195,-0.4392405,-0.16242787,-0.8315369,0.37497002,-0.9347164,0.5035234,0.023449047,-0.26255003,0.17558804,0.2453839,0.4274997,-0.028509576,0.0947678,0.1439644,-0.023873528,-0.022417296,0.031925652,-0.34562057,-0.5890655,-0.6741504,0.12060299,-0.45491508,-0.2545914,-0.14015886,0.13432702,-0.49852586,0.109363146,-0.051598784,0.4670973,-0.41262457,-0.29756168,0.4197742,0.053158343,0.48183495,-0.81351054,-0.32979217,-0.14721069,0.05918626,-0.18926708,0.10014587,0.31860188,0.23395988,0.63637775,-0.003045129,-0.33518526,-0.32410923,0.07549553,-0.065941006,0.33516592,-0.22943519,-0.25194043,-0.15348783,-0.084914856,0.451089,0.22741866,0.20677161,-0.041336734,0.010582221,0.19699319,-0.41678852,0.40354756,0.42220336,-0.30503052,-0.19880791,0.16695045,0.5532926,0.15358056,-0.069289386,-0.14305282,-0.029390395,-0.47994545,-0.22149387,0.2020484,-0.31807828,0.5335966,-0.12988423,0.39034432,0.5780803,-0.44006866,0.25209436,0.13019152,0.03625966,-0.20800945,-0.20389049,-0.38337088,0.26808035,-0.59709734,0.13637105,-0.39325047,0.84126884,0.079360746,-0.7312251,0.23629716,-0.5763588,0.1672821,-0.068797916,0.46113724,0.6177315,0.39821365,0.24308811,0.70008534,-0.39450794,-0.1618742,-0.17910933,-0.13715327,0.19097999,-0.17269413,0.26206714,-0.46413168,-0.19719002,-0.03310189,-0.07415245,-0.027107954,0.4555549,-0.6198743,0.0057106144,0.017918995,0.9156262,-0.21291362,0.06512474,0.7794423,1.0551264,1.1599907,-0.013885736,1.1375324,0.20060351,-0.22256804,0.31617454,-0.24200587,-0.5595014,0.47750598,0.47055107,-0.4204878,0.47076315,-0.1075026,-0.11267112,0.41565806,-0.29966646,0.13273342,-0.2789825,0.06671403,0.069020234,-0.1505084,-0.33976656,-0.2761688,-0.008022904,0.07051029,0.0089379335,0.25097534,-0.13977127,0.2984581,0.01247452,1.3768332,-0.07337036,0.0666958,0.06181831,0.44752303,-0.0015812601,-0.03203854,0.053332604,-0.11860263,0.12500791,0.21015768,-0.60818,0.08428074,-0.2447519,-0.42231274,-0.24326111,-0.2319133,-0.12592563,-0.2014999,-0.60544163,-0.069102906,-0.25456905,-0.30596438,0.19432275,-2.3874958,-0.30817375,-0.17166711,0.25125024,-0.27511954,-0.39953724,0.016175393,-0.524012,0.56724715,0.40781757,0.49178055,-0.5594823,0.4179279,0.4673381,-0.43736196,-0.085883476,-0.65503585,-0.17750318,-0.08263485,0.26038405,0.06549975,-0.26569614,0.098217316,0.21925893,0.43098286,0.025747087,0.06295659,0.038612265,0.5319511,-0.23281483,0.474968,0.08584046,0.43988582,-0.35767072,-0.19973005,0.4059951,-0.50338954,0.1502832,-0.102272496,0.095595084,0.37313414,-0.5659727,-0.9254158,-0.71087307,-0.42975518,1.2639524,0.17867582,-0.4153934,0.12725893,-0.11668687,-0.2511154,-0.13203295,0.31193557,-0.051107105,0.012836622,-0.7980814,0.013137813,-0.3150623,0.005357772,0.07108745,0.017999966,-0.49752888,0.65419775,-0.043260694,0.27081957,0.38217905,0.31541997,-0.35191363,-0.58274686,0.005594905,1.059994,0.5891999,0.118717484,-0.20929857,-0.10336815,-0.46934396,-0.069235615,0.236917,0.43966636,0.9463396,0.026670879,0.07806092,0.14639238,-0.15069155,0.14798345,-0.13194595,-0.5031306,-0.2249286,0.15182073,0.57602257,0.5166283,0.04810271,0.41982532,-0.1831057,0.4104318,-0.24400605,-0.35389227,0.5621838,0.81588423,-0.18858722,-0.16877358,0.5902318,0.57479703,-0.33033666,0.63572794,-0.63785404,-0.51463896,0.31444862,-0.17387478,-0.48715737,0.09194537,-0.40440384,-0.025597688,-1.026735,0.3262536,-0.65712124,-0.2242484,-0.6357179,-0.22497539,-2.9525568,0.32150888,-0.31034812,-0.1710601,-0.046949424,-0.16003837,0.3655809,-0.8070455,-0.7369936,0.08383192,-0.006095324,0.88582027,0.11345238,0.20569508,-0.17324157,-0.39558002,-0.396977,0.066741824,0.22364198,0.23147392,0.07233609,-0.5166101,-0.0035943133,-0.40707546,-0.41014546,0.0072970646,-0.4873829,-0.66441685,-0.44042653,-0.5086335,-0.41182134,0.75319946,-0.04843097,0.020673126,-0.16759059,-0.03374634,-0.09200442,0.49650985,0.16090843,0.0032024,0.15381275,-0.113821544,0.20337234,-0.46143582,0.10141439,0.28528184,0.4235391,0.60616887,-0.20406999,0.4484404,0.62311417,0.61183375,0.017950227,0.7922055,0.3897295,-0.15162452,0.3503995,-0.25061375,-0.24526331,-0.6041674,-0.23490374,0.054595254,-0.24869132,-0.3157796,0.062265176,-0.42057642,-0.7355188,0.597161,-0.18764238,0.18000515,-0.10388475,0.23989403,0.4567751,-0.20931278,-0.09835611,-0.052957747,-0.0278393,-0.38134083,-0.26272053,-0.7555608,-0.6397336,-0.04435423,1.140191,0.04909793,-0.0059233787,0.2538694,-0.008312515,0.2004335,-0.055446915,-0.11259072,-0.13223486,0.31612465,0.045296315,-0.72684664,0.3585091,0.023240805,-0.03097679,-0.47628233,-0.034153845,0.70677525,-0.47253102,0.14855453,0.59559,0.06262938,-6.414311e-05,-0.41291592,0.14716248,0.05140412,-0.25197992,0.2883061,0.16672972,-0.6285512,0.49138483,0.26213998,-0.25561756,-0.7351259,0.57075065,0.16308069,-0.22828463,-0.18361393,0.3215795,0.23815887,0.024492456,-0.17250301,0.30447653,-0.4575376,0.17928831,0.249608,-0.0057149893,0.38354152,-0.027598837,-0.22355287,-0.6719586,0.10009779,-0.41983983,-0.2910044,0.2732541,0.017734597,-0.023966487,0.36166057,0.26405993,0.34955707,-0.24071221,0.057706382,-0.07393841,-0.33937764,0.4255732,0.47939306,0.6205762,-0.50343895,0.560332,-0.0030977002,-0.11954761,0.025162118,-0.13563393,0.5255203,0.13415292,0.29231447,0.11934825,-0.26169762,0.23530735,0.6491643,0.060830045,0.4602726,0.1926632,-0.19508408,0.13503556,0.102351315,0.087544665,0.16317871,-0.3584519,-0.0850607,0.10844802,-0.013396542,0.48022535,-0.08039601,0.33721775,-0.12141008,-0.27135354,0.029216154,0.09927768,-0.2781872,-1.1737865,0.4169769,0.08058078,0.73969406,0.6116533,-0.058260527,0.06133757,0.53949845,-0.12599222,0.052325744,0.4653069,0.22444761,-0.50545275,0.6466565,-0.5115409,0.55033255,-0.063473366,0.094702385,-0.2914278,-0.070386305,0.5788306,0.7874951,-0.23731028,0.044683393,-0.075186506,-0.44612807,0.1248219,-0.29157883,0.1568313,-0.4763484,-0.101053216,0.5637144,0.40849844,0.25345296,-0.099152796,-0.078421935,0.082424976,-0.10679597,0.42785916,-0.06803129,0.076964654,-0.10329483,-0.5569028,-0.24107496,0.3684656,0.15052854,0.21408059,-0.021530407,-0.3217627,-0.0117602,-0.028709691,-0.03659383,-0.024891526,-0.65677196,0.08037454,-0.5204269,-0.38202825,0.33147365,-0.20947573,0.3045629,0.26945752,0.17568938,-0.2808835,0.13073197,0.13361523,0.50207305,-0.2612844,-0.2241794,-0.24237616,0.17798431,0.25841573,-0.38538998,-0.13181876,0.013586036,0.23067653,-0.61671257,0.5078457,-0.16441791,-0.198421,0.0914167,-0.17048335,-0.031597566,0.55837667,-0.3059279,-0.03336892,0.055642705,-0.029513193,-0.13567589,-0.18471101,-0.10400096,0.17311434,0.081411846,-0.014960243,-0.27603847,-0.12599656,0.028310051,0.58550835,-0.031980988,0.32617655,0.5225445,0.14784063,-0.6218677,-0.25582996,0.04912271,0.5387709,0.13764276,-0.12898237,-0.6165977,-0.40938526,-0.21166296,0.31385013,-0.058814406,0.16570507,0.111123815,-0.45846382,0.9683326,0.13928208,1.3128332,0.045507856,-0.30535588,-0.016445545,0.513329,-0.18927518,-0.047902685,-0.43813324,0.99898994,0.44000822,-0.39454904,-0.17493796,-0.4392083,0.003903074,0.20867808,-0.24445534,-0.17847143,-0.18393381,-0.62468094,-0.45722967,0.29169443,0.4134198,-0.030478774,-0.24700387,0.15354152,0.27593207,-0.0075090304,0.5575509,-0.4616877,-0.13695988,0.43075374,0.24132565,-0.07078911,0.24112971,-0.45142084,0.32335398,-0.7463521,0.13018088,-0.2643651,0.17372558,-0.12210221,-0.42022592,0.3655165,0.04655804,0.2752207,-0.23344545,-0.49904484,-0.20601323,0.5018429,0.14539754,0.18364623,0.59444016,-0.298202,-0.09853065,-0.15015873,0.67971987,1.308685,-0.07943576,0.085079685,0.23344946,-0.3318403,-0.6206909,0.3400728,-0.40987086,0.107339166,-0.24269494,-0.24512248,-0.5695386,0.34997398,0.3671113,0.017160382,-0.030722512,-0.48437425,-0.30509153,0.28170386,-0.5011625,-0.33549166,-0.30292934,0.10402385,0.57847774,-0.23602891,-0.029298361,0.011562037,0.6264852,-0.11836107,-0.35252517,-0.11986116,-0.15552156,0.41201475,0.18858922,-0.3533759,0.04065182,0.047574244,-0.4627877,0.12676576,0.2037959,-0.51134527,-0.16598603,-0.2587919,0.005073177,0.7821774,-0.031750746,0.22207871,-0.3778955,-0.3625176,-0.7592128,-0.35591295,0.46602663,0.22732936,-0.03265128,-0.45710716,0.02821875,-0.22730473,0.0024226308,-0.033170424,-0.3030279,0.22591326,0.20121916,0.5778489,-0.16047001,-0.5096361,0.035975356,0.21993251,-0.14066096,-0.40136036,0.52335006,-0.14015211,0.75510204,0.2550008,0.045527864,0.29591888,-0.47857854,0.022100864,-0.15945792,-0.3019937,-0.6782037,0.11614048,745 -523,0.38324413,-0.0943246,-0.38022134,-0.16777648,-0.11180622,0.08294232,-0.12204112,0.46985492,0.28372028,-0.30265227,-0.18573293,-0.1464964,0.11570813,0.22238724,-0.17703874,-0.63666165,-0.0064048725,0.13470879,-0.42150375,0.71423286,-0.39208323,0.09679023,-0.13756543,0.47258753,0.09281434,0.33969682,0.070653364,-0.1394705,-0.14102092,0.009946482,-0.1264701,0.42549473,-0.4680152,0.08580331,-0.27093968,-0.2830648,0.015991772,-0.35090485,-0.46732074,-0.731928,0.19532466,-0.8469602,0.4093744,0.116765656,-0.24860026,0.36309618,0.0023363573,0.23922193,-0.30872068,-0.14265117,0.012310596,0.08349746,0.069507346,-0.30620417,-0.098281875,-0.34065166,-0.433096,-0.017356357,-0.43082982,-0.020510077,-0.30320072,-0.046385378,-0.3363366,-0.13399853,-0.058890235,0.34913492,-0.50196373,0.12504862,0.2684484,-0.027728887,0.28528157,-0.37948045,-0.20628694,-0.14719117,0.30216494,-0.1296334,-0.23000087,0.27698565,0.31646866,0.38437554,-0.22108567,-0.12188552,-0.23870318,0.0836532,0.11095088,0.40195385,-0.32577166,-0.6678222,-0.074473776,0.10278608,0.19650435,0.15388726,0.08109607,-0.17594115,-0.06475761,0.15993023,-0.23179784,0.3327436,0.49882582,-0.37505946,-0.20375155,0.24417135,0.36665207,0.26918128,-0.25518292,-0.15728939,0.031232689,-0.54693544,-0.13571307,0.106425695,-0.18142127,0.6289028,-0.10648923,0.07231318,0.6065159,-0.07993562,0.03344254,0.21567766,0.112060525,0.0059371763,-0.17491116,-0.28078154,0.22516353,-0.33742803,0.082845196,-0.11791568,0.64971876,0.19681692,-0.6525462,0.36027068,-0.5454547,0.17696178,-0.18887901,0.43508795,0.64633316,0.38760677,0.29389927,0.5554736,-0.29876098,0.011905253,-0.018842507,-0.34874466,0.18078601,-0.22835974,-0.06297599,-0.5573608,-0.014513378,0.14073937,-0.08429081,0.07524507,0.14473377,-0.46168593,-0.18620576,0.21510307,0.74953,-0.23306204,-0.030071935,0.5861378,0.95831627,0.6612366,0.055156495,1.0113878,0.22574738,-0.12513898,0.4453818,-0.16173236,-0.84336287,0.32332304,0.31962267,-0.35541153,0.33774656,0.074651495,-0.135847,0.3882812,-0.36716238,0.06338934,-0.21252666,0.1236502,0.10517567,-0.12824783,-0.33387783,-0.39676404,-0.19547985,-0.01357007,0.069566675,0.32124642,-0.1291997,0.1986281,0.04155239,1.5038763,0.20075312,-0.116916016,0.03329561,0.7276713,0.20747092,-0.06445009,-0.103130564,0.397789,0.30240804,0.1311032,-0.56820387,0.13544203,-0.09609377,-0.42972365,-0.07880945,-0.31334525,-0.04178375,0.13135344,-0.55285406,-0.14175434,-0.1936041,-0.16446312,0.5140229,-2.9016109,-0.12689508,-0.095267974,0.51125324,-0.2657719,-0.22960305,-0.2615631,-0.38332343,0.40651682,0.3178257,0.51504105,-0.73824894,0.35931498,0.3132264,-0.6159735,-0.16902113,-0.4968198,-0.06088858,-0.05809503,0.4422961,-0.012794725,0.11699939,0.30311993,0.16022508,0.4369906,0.024077326,0.11025565,0.08660289,0.44566658,-0.028472241,0.37648782,-0.1063851,0.45551497,-0.32532498,-0.20092109,0.21532936,-0.2772989,0.33083415,-0.043379243,0.05687428,0.40924662,-0.3864772,-0.97150314,-0.6715466,-0.0366409,1.2069212,-0.2757574,-0.41043144,0.10835318,-0.53972155,-0.18683992,-0.15974236,0.39881223,-0.08721425,-0.15233329,-0.80858546,0.012767996,-0.04323405,0.16588116,0.06294727,-0.01827988,-0.26392794,0.6376238,0.018765334,0.45155448,0.31332085,0.119301744,-0.18220647,-0.47563595,0.122430705,0.57819337,0.22082135,0.11923774,-0.1961232,-0.28597707,-0.24821332,0.106076725,0.09613881,0.66196686,0.48451588,-0.17535456,0.15145285,0.30388966,-0.05056899,0.07297941,-0.20378579,-0.3299913,-0.15269697,0.11713784,0.575134,0.7985107,-0.35217997,0.23819688,-0.032011602,0.16398263,-0.1275861,-0.39046767,0.48688433,1.1055847,-0.13614896,-0.16521253,0.44973484,0.706514,-0.33277896,0.35676083,-0.506979,-0.28748065,0.38927287,-0.08123892,-0.30063826,0.24456826,-0.30023345,0.11035264,-0.9286172,0.2566534,-0.4135008,-0.22297923,-0.5184759,0.14381048,-3.40028,0.21729448,-0.332264,-0.21423014,-0.2601984,-0.010261719,0.11479586,-0.6391449,-0.50804466,0.1968552,0.09137279,0.67018765,-0.011208117,0.1568166,-0.3206095,-0.22020207,-0.10994985,-0.022373876,0.21053442,0.39102167,-0.089999035,-0.515616,-0.20104453,-0.11882317,-0.30250493,0.19424589,-0.6083717,-0.39420465,-0.06549034,-0.5503778,-0.23467836,0.4981318,-0.24429032,-0.021887703,-0.14916632,0.03923804,-0.18790789,0.32920733,0.09897793,0.17047834,-0.051770296,0.037122183,0.04455478,-0.24989639,0.37517634,0.051498793,0.39138058,0.25982857,0.032492805,0.1359853,0.5709206,0.41781256,0.089756794,0.83152854,0.5967719,-0.01685905,0.3368079,-0.3339803,-0.13203222,-0.4663996,-0.26943496,-0.20197265,-0.33766446,-0.36489424,0.015287851,-0.42969272,-0.77040154,0.40467215,-0.06962085,0.14265996,0.029073264,0.15700105,0.66565645,-0.24223049,0.053580318,-0.022399444,-0.19624631,-0.6800979,-0.12774898,-0.61073226,-0.2841896,0.16610953,0.7549005,-0.30520853,0.0149076665,-0.065884344,-0.24523316,-0.018622683,0.10211282,-0.023413688,0.17680225,0.5905232,-0.112001166,-0.5804381,0.36375788,-0.051099386,-0.19881427,-0.54430676,0.23440354,0.5482835,-0.70098656,0.76608354,0.4890675,-0.0135002965,-0.097926125,-0.4805849,-0.3093821,-0.15713778,-0.13294291,0.3502867,0.26346043,-0.80667526,0.36004442,0.34049368,-0.2715186,-0.60877216,0.7616635,-0.03260524,-0.4795007,-0.093791425,0.2507907,0.055266697,0.02664795,0.017006008,0.21508013,-0.33960295,0.18181603,0.19389495,-0.076912574,0.27781084,-0.021373646,0.092760764,-0.8071099,0.08347118,-0.4777717,-0.28389475,0.45221096,0.12042736,0.09542362,-0.07229157,0.02460936,0.26258212,-0.28991184,0.04271118,-0.031143904,-0.2668832,0.38242993,0.34402636,0.4750833,-0.37657538,0.5244414,-0.01874793,-0.076644115,0.12312975,0.18437378,0.34173366,0.104539216,0.4232288,0.0006057471,-0.20320094,0.20887746,0.7664514,0.115142636,0.40667614,0.019435454,0.062669344,0.3337655,0.101860575,0.17299557,-0.09391135,-0.40609947,-0.06530256,-0.16319326,0.21286562,0.37426838,0.05756081,0.15115473,-0.08192521,-0.27946553,-0.038947694,0.28266427,0.22846569,-1.2325367,0.3969503,0.2274799,0.6771618,0.39530224,-0.075611725,0.048986137,0.6129819,-0.18778384,0.15421996,0.42190665,-0.1601692,-0.5918229,0.51476043,-0.59964895,0.39872763,0.03180935,-0.028288689,0.008702932,0.012568734,0.28359488,0.71462935,-0.1557361,0.0403024,0.106337406,-0.45070156,0.0626793,-0.3835687,0.074221864,-0.66972923,-0.13048634,0.56407875,0.6849672,0.34369516,-0.24587725,0.025988156,0.10186861,-0.14540815,0.12723807,0.0075363154,0.23182233,-0.0826909,-0.81862915,-0.060187902,0.5333468,-0.17194761,0.10886038,-0.068648525,-0.18550423,0.36401892,-0.1477685,-0.057651114,-0.13353266,-0.6058606,0.014954158,-0.35769922,-0.3527352,0.66816014,-0.13386364,0.25476763,0.27943322,0.028242275,-0.36112732,0.43751827,-0.08982235,0.71517265,-0.18510911,-0.32369247,-0.53960794,-0.02614676,0.19245203,-0.062675945,-0.10331801,-0.37383518,0.016449597,-0.21156894,0.3952333,0.037886858,-0.065974064,-0.19813558,-0.09996276,0.11773981,0.55694187,-0.08746772,-0.25599834,-0.2699336,-0.08601054,-0.46818438,-0.27761155,-0.00034270328,0.29772502,0.34576887,0.031359497,-0.11051936,-0.21109006,-0.10404547,0.48268005,-0.07260086,0.36521783,0.40619022,0.2029283,-0.09643824,-0.1706022,0.33138424,0.41892368,-0.04797175,-0.14917152,-0.4149079,-0.2581536,-0.3621807,-0.0078088813,-0.17263034,0.36001632,0.01201669,-0.095546566,0.77768975,-0.13373733,1.0476319,0.031910677,-0.20505068,0.05133006,0.4778196,-0.041222207,-0.10800914,-0.21618268,0.73418766,0.5663015,0.040086117,-0.097233675,-0.31887498,-0.017425308,0.0099411355,-0.18504943,-0.12976663,0.03351571,-0.55445707,-0.15820554,0.10740765,0.29468915,0.30063328,-0.03553968,0.04446423,0.061435737,0.12203825,0.18126824,-0.37938985,-0.25237036,0.20848174,0.28541765,0.16730501,0.13926183,-0.4273189,0.31091353,-0.34746698,-0.002073305,-0.34879336,0.18112619,-0.13284642,-0.37523815,0.16147368,-0.11804063,0.3174606,-0.30882376,-0.20889053,-0.30778217,0.47281522,0.20068884,-0.005432408,0.4303806,-0.15427919,0.030813744,0.12006494,0.56124574,0.8628555,-0.19786592,-0.17663133,0.32862473,-0.42781836,-0.7320494,0.2774229,-0.2338014,0.37421623,-0.04999963,-0.011424167,-0.7420422,0.28471848,0.16097176,0.13890685,-0.20419434,-0.71618885,-0.278655,0.1575084,-0.31375057,-0.23030852,-0.4132249,0.09796398,0.5589443,-0.22574744,-0.19912873,0.039391104,0.11601054,-0.10419222,-0.34019282,0.055293806,-0.45435047,0.12723014,0.109588556,-0.43034118,-0.08018936,0.14529303,-0.33013555,0.3310335,0.26294306,-0.31433874,0.07919031,-0.29438546,0.016167233,0.9808303,-0.28121263,0.277452,-0.4209464,-0.47333905,-0.6837734,-0.39654583,0.4838328,0.041296285,0.030509302,-0.5992278,0.108740725,0.21723308,-0.3453819,-0.24020414,-0.28774303,0.44393602,0.0037327004,0.25593302,-0.02928871,-0.67373675,0.14536807,0.0058752126,-0.13837445,-0.5960617,0.44296533,-0.085319094,1.0678629,0.053519327,0.14718615,0.35837302,-0.33300373,-0.3143862,-0.12408153,-0.20345464,-0.52354205,0.0047166687,749 -524,0.52531713,-0.17515919,-0.6469589,-0.2210141,-0.26120448,0.0003912151,-0.3231687,0.3768015,0.5122939,-0.36815682,0.027784018,0.013926054,-0.12069631,-0.017673539,-0.083990835,-0.7581051,-0.0125206215,0.21885324,-0.61280453,0.6476732,-0.45715946,0.13790537,0.022461075,0.35066536,0.059957385,0.104416676,0.013514949,-0.15980062,0.12279992,-0.2930403,0.015128399,0.15277684,-0.48642108,0.32612976,-0.14541733,-0.22229011,0.088869534,-0.29953456,-0.5059884,-0.8540233,0.05422443,-0.8234304,0.65189564,0.09245743,-0.43382555,-0.002457572,0.04596597,0.24778914,-0.11138178,0.05585455,0.24818444,-0.38360995,-0.50917965,-0.24546573,-0.35157415,-0.5709568,-0.6636749,-0.22966173,-0.56139386,0.16214077,-0.151144,0.2832101,-0.35849127,-0.11144471,-0.34111246,0.66126317,-0.40854883,0.14303897,0.16433391,0.029388055,0.35748553,-0.6190068,-0.059742756,-0.13668485,0.14747348,0.23664048,-0.32270375,0.15922679,0.21255529,0.469519,0.13247956,-0.2697089,-0.25400037,0.038169686,0.046001475,0.3697019,-0.09518321,-0.1690756,-0.2644109,-0.19345447,0.5462553,0.34008312,0.0362002,-0.40249705,0.108621165,-0.12767185,-0.28063002,0.62760645,0.66057414,-0.23743054,0.04843151,0.23072542,0.25945774,0.2719953,-0.2926652,0.20749967,-0.066629015,-0.5061201,-0.20063362,0.24126874,-0.18083905,0.3859572,-0.10165943,0.19086409,0.6162918,-0.058092296,-0.20658146,0.13980266,0.111900315,0.18939413,-0.4392426,-0.43820268,0.46367344,-0.74101204,0.022347728,-0.48001432,0.7113767,-0.20619933,-0.7506091,0.28108674,-0.53449416,0.084177054,-0.06599489,0.7671854,0.9262118,0.6513557,0.13659573,0.72106177,-0.34747937,0.07189412,-0.081780076,-0.21483429,0.3568252,-0.05499926,0.37327036,-0.42995504,-0.21517077,-0.1924213,-0.28803977,-0.085357785,0.57074296,-0.47711053,-0.23963667,0.14477207,0.75990784,-0.32373014,-0.042812675,0.82310927,1.3637346,0.8699365,0.23682615,1.2250334,0.40500483,-0.23935978,-0.12386962,-0.17409046,-0.9042307,0.24683629,0.23632422,-0.12809584,0.28467354,0.116790935,-0.13208185,0.4888993,-0.47666517,-0.22014873,-0.056326292,0.31593147,-0.23479016,-0.10309061,-0.3904242,-0.20846303,0.053603917,0.11036192,0.19580565,0.32007486,-0.18994062,0.38196182,0.2355882,0.9528218,-0.117469124,-0.072788276,0.11949468,0.32343474,0.21493694,-0.17902695,0.023664394,0.44192895,0.34966263,0.07148872,-0.5770513,0.21424529,-0.16596194,-0.2293638,-0.27123982,-0.24295683,0.053699333,-0.20140913,-0.21855943,-0.21880637,-0.10424899,-0.41291994,0.34926394,-2.4593568,-0.09124513,-0.15604624,0.35302058,-0.011317296,-0.14459945,-0.0653644,-0.5128691,0.5242732,0.2274919,0.49226528,-0.5613119,0.4771266,0.62932444,-0.48304835,-0.012247314,-0.8496792,-0.23945339,-0.11698861,0.48115614,0.019714603,-0.15525258,-0.020907564,0.11604088,0.48995593,0.22216997,0.10609212,0.29823607,0.48954535,-0.08820952,0.50100595,-0.038840745,0.5745212,-0.24058926,-0.22385432,0.1497232,-0.18963806,0.21120712,-0.32827815,0.07402766,0.5777246,-0.41238585,-0.6160923,-0.31895232,-0.11717369,1.24252,-0.3918148,-0.5655774,0.24773203,-0.38008907,-0.25440404,0.05699523,0.54777277,-0.23361276,-0.11165207,-0.8245443,-0.15011232,-0.031461723,0.24817957,-0.0082380045,0.09181701,-0.527525,0.6568008,-0.10099446,0.5510095,0.33021253,0.32065365,-0.2584453,-0.5757204,0.12878852,0.86351,0.28668314,-0.02270682,-0.35301474,-0.11618851,-0.082092986,-0.0015205826,-0.04078934,0.6491297,0.87338483,-0.24143516,0.0037010056,0.39920804,-0.40660906,0.023160543,-0.16440625,-0.5069159,-0.40203816,0.05558492,0.47333902,0.7413891,-0.046165314,0.4090875,0.06275453,0.3449094,-0.24469054,-0.5277026,0.41063437,0.8847129,-0.28795028,-0.2285597,0.7519067,0.5292333,-0.19316234,0.5828509,-0.57722914,-0.26681468,0.3981492,0.0740909,-0.6149999,0.28244337,-0.48519483,0.17485859,-1.0605838,0.44902164,-0.4258237,-0.8511235,-0.7837161,-0.013839909,-2.6186187,0.2604269,-0.43143812,0.0020993862,-0.17383139,-0.07621503,0.46000975,-0.45929983,-0.52239305,0.3013021,0.2003999,0.5081526,-0.16967784,-0.045248576,-0.23129323,-0.29682687,-0.2631933,0.25284836,0.29673237,0.2519719,-0.0729801,-0.5598263,0.008199534,-0.042168807,-0.24277203,-0.0513927,-0.7603697,-0.2773538,0.06431651,-0.6420347,-0.26253563,0.62903255,-0.26132938,0.10127539,-0.38197857,0.07998652,0.056791384,0.2792805,-0.17764577,0.28215182,-0.015909553,-0.05230892,-0.13106075,-0.19716616,0.13892865,0.038767762,0.31070656,0.19619259,-0.08406403,0.05933885,0.57843935,0.62383664,-0.12230204,1.0162497,0.4932116,-0.27259457,0.27167708,-0.14500538,-0.26376066,-0.72852343,-0.20566152,-0.030492691,-0.52877367,-0.35198003,0.0012919946,-0.3806426,-0.85215825,0.6332646,0.09244328,0.12063459,0.060803443,0.28769273,0.52956355,0.10734183,0.0016406818,-0.19691254,-0.25652584,-0.3560814,-0.15734465,-0.90744054,-0.3682587,0.118558116,1.3068283,-0.24115042,0.13375944,0.25968572,-0.34694782,0.10396135,0.24702728,-0.029978363,0.24287507,0.46512,0.18527563,-0.5324863,0.33839235,-0.19845282,0.043995492,-0.72007406,0.20224126,0.9201116,-0.9372725,0.60462517,0.5212502,-0.0049380683,-0.33570904,-0.6983816,-0.26464346,0.29079667,-0.22317271,0.60710764,0.28254586,-0.7551211,0.5909112,0.2266542,-0.08843557,-0.77262646,0.43871838,-0.18289542,-0.29677853,0.14533086,0.4611024,-0.10616098,0.14823608,-0.18860304,0.41190305,-0.19433287,0.36272684,0.043462012,-0.28303427,0.18445821,-0.16724665,0.08823327,-0.873363,-0.09354174,-0.7008892,-0.23515561,0.4013904,-0.11816234,0.21136972,0.20797506,0.14599678,0.3674828,-0.19100367,0.16702147,-0.24332158,-0.47346112,0.5976678,0.5993245,0.35292837,-0.36718896,0.55908126,0.038278613,-0.31698492,-0.12217176,0.24888827,0.33569404,0.020169256,0.50747997,-0.17526378,-0.07104133,0.22645903,0.903828,0.14348306,0.43588358,0.11248068,0.04744998,0.4093477,0.15770411,0.2545836,-0.23493567,-0.5990643,-0.089011736,-0.2126532,0.3427449,0.40323576,0.12423571,0.55923027,-0.10323727,-0.08926963,-0.052458603,0.14077938,0.2916862,-1.1850398,0.5084863,0.27364108,0.4809954,0.46121326,0.21274678,-0.10893539,0.6777269,-0.1441697,0.10718993,0.47125834,0.24360509,-0.19342913,0.42417198,-0.65789413,0.22449769,-0.21789598,0.14584692,0.22027647,0.08577003,0.55334336,0.92853725,-0.12674823,0.029526684,-0.18992968,-0.26087663,0.10124784,-0.18913688,0.20575915,-0.35647616,-0.471328,0.6916122,0.41716385,0.4468159,-0.18900597,-0.039180126,0.42360264,-0.09642142,0.26426727,-0.03404917,-0.252664,-0.06043098,-0.49350253,-0.1368995,0.4531837,-0.109349966,-0.09703088,-0.029115072,-0.015423076,0.10594857,-0.057043128,-0.017789325,0.041618146,-0.6396599,-0.21367045,-0.36938193,-0.5530295,0.575484,-0.16389258,-0.0021931466,0.14704065,-0.025028238,-0.2009506,0.097895846,0.13580428,0.63471526,0.0099876,-0.1922773,-0.11041465,-0.07672684,0.055321965,-0.31358457,-0.026926283,-0.22285691,0.2790013,-0.71162164,0.2899127,-0.2788592,-0.4339021,0.089990355,-0.20235583,-0.053058334,0.44192985,-0.3212681,-0.21907224,0.24120416,-0.20115313,-0.21395014,-0.29061666,-0.19639339,0.090639725,2.9844898e-05,-0.04336341,-0.16498871,-0.20195928,-0.14258195,0.43012565,0.19517274,0.19230628,0.4233028,0.22429037,-0.23052822,-0.21368589,0.27167585,0.5671083,-0.2122757,-0.101556495,-0.4108925,-0.35774526,-0.35564032,0.18316568,-0.067805454,0.3420803,0.06541751,-0.36513263,0.95761395,0.1307837,0.8659717,-0.12475114,-0.48609227,-0.04632101,0.54484844,-0.03491349,-0.0051606507,-0.29981893,0.94413674,0.62916654,-0.22646035,-0.092861615,-0.64435023,-0.009863453,0.25811523,-0.3017959,-0.17206797,-0.071879864,-0.7618331,-0.099266715,0.3382581,0.21462747,-0.12102425,-0.112898044,0.19226895,0.18775202,0.10963371,0.21017016,-0.68985856,0.114522934,0.20875299,0.22965251,0.0023417303,0.31373015,-0.3982851,0.1918851,-0.5561171,0.13075295,-0.48091656,-0.03436738,-0.035046082,-0.20823874,0.21180758,-0.0840277,0.34462523,-0.41016454,-0.2710692,-0.12976111,0.43277535,0.17319702,0.22417259,0.724742,-0.23892704,-0.11733062,0.14617218,0.6412591,1.3117694,-0.27831605,-0.0013032982,0.18242417,-0.2924262,-0.6291262,0.07982678,-0.46747702,0.043902915,0.056738406,-0.4635501,-0.48275873,0.24737188,0.08181327,-0.09805413,0.21271653,-0.49083933,-0.15326838,0.057641786,-0.25410992,-0.15759407,-0.13411471,0.076180235,0.6716693,-0.29498148,-0.40022925,-0.13811375,0.1458681,-0.3014589,-0.5534023,0.13251886,-0.3843415,0.06203546,0.21894611,-0.463183,0.067774855,-0.043972287,-0.5544773,0.12377783,0.2529134,-0.27060685,-0.018325286,-0.19271103,0.013609039,0.8388706,-0.08524428,-0.04463252,-0.40047094,-0.6570203,-0.62501854,-0.3693479,0.09470248,0.29833665,-0.028701672,-0.48383242,0.00091339863,-0.22612862,0.11511778,0.08945029,-0.5026506,0.54074425,0.18312037,0.48174372,-0.1969074,-1.075415,0.24976476,0.17804207,-0.45835394,-0.61597025,0.6935671,-0.21332805,0.90699905,0.026809296,0.16896689,0.012461066,-0.6483935,0.20546563,-0.3759859,-0.34972438,-0.8264958,0.044948876,759 -525,0.60273284,0.18321273,-0.692482,-0.033581592,-0.351266,0.1137317,-0.14481017,0.47486025,0.16952308,-0.38711974,-0.06540304,0.028181195,-0.078122355,0.28810087,-0.24286428,-0.6102429,0.0689801,0.24789187,-0.5284053,0.73553604,-0.1892815,0.49053282,-0.025853207,0.39890677,0.17040631,0.2372912,0.10457714,-0.012955883,-0.21931174,-0.4640219,-0.075174496,0.44884697,-0.52195877,0.06533199,-0.2036907,-0.43797252,-0.04477747,-0.37546316,-0.36820316,-0.7349897,0.16950396,-0.8258858,0.76600075,0.07607864,-0.32953978,0.13646756,0.32282537,0.17844321,0.09648251,0.028922414,0.14173461,-0.15373127,-0.022537827,-0.18871298,-0.22859879,-0.5563599,-0.4624586,-0.019806614,-0.6191749,-0.090098344,-0.2517719,0.23468132,-0.27558893,-0.13466546,-0.2826397,0.50754195,-0.34283796,0.14167024,0.08696646,-0.1844569,0.080239944,-0.70937437,-0.17410633,-0.041938264,0.2772403,-0.22873135,-0.14274421,0.28844258,0.24774651,0.30020002,0.0015361543,-0.18483093,-0.44296566,-0.15548547,-0.014025705,0.53405863,-0.32450074,-0.4446392,-0.094820194,0.050493706,0.66647756,0.113775186,0.22061408,0.035961654,-0.09634888,-0.22939894,-0.20304544,0.5897828,0.5984332,-0.27775866,-0.08655964,0.4507154,0.30852774,0.26267654,-0.21678543,-0.020950701,-0.27556872,-0.37334722,0.05660264,0.079106264,-0.12885426,0.46272883,0.028209055,0.25021663,0.49707112,-0.1997885,0.07937627,0.22338721,0.13378148,0.27365485,-0.12787142,-0.2727399,0.24956982,-0.59556955,0.1541872,-0.2472109,0.60029453,0.018276986,-0.63780624,0.28393295,-0.5347188,0.02570073,0.021238118,0.4540597,0.49088064,0.5639695,0.045861457,0.6660581,-0.12011457,0.087684646,0.10210729,-0.1333251,-0.10506761,-0.08954285,0.12910204,-0.4696174,0.11804866,-0.039499264,-0.12726471,0.12358253,0.59741485,-0.49328583,-0.33892322,0.24110794,0.7798995,-0.24286999,-0.24292178,0.9552428,1.1058995,0.9477908,-0.15638423,0.73884135,-0.052146655,-0.17015061,-0.3005258,-0.19079855,-0.39715904,0.25480372,0.39910105,-0.48318276,0.39613038,0.0188639,-0.12509625,0.18846288,-0.25028113,-0.42262793,-0.23232043,0.08098919,0.12200507,-0.11156927,-0.38906193,-0.33439475,-0.017701147,0.027097123,0.2989222,0.34512058,-0.3629332,0.18392885,-0.23280825,1.2236986,-0.017542204,0.028788725,0.059426863,0.55270344,0.2894844,-0.1383414,0.051711466,0.3320835,0.3410039,0.061267436,-0.41567472,0.09631638,-0.39217943,-0.52936393,-0.10686071,-0.38162428,-0.30669516,0.13124625,-0.5054379,-0.15958224,-0.09005622,-0.30498537,0.28807083,-2.6400032,-0.15045536,-0.14604224,0.32099083,-0.19290243,-0.363348,-0.20256984,-0.4103885,0.48114246,0.18358324,0.5310143,-0.40660384,0.46392873,0.32608703,-0.60184234,-0.109453216,-0.57345194,0.11069894,0.05399262,0.3146833,-0.23293726,-0.110725105,0.32653567,0.1658564,0.57486826,-0.03591289,0.1238103,0.3052249,0.36594075,-0.16508977,0.37596795,-0.035295825,0.57342863,-0.17381974,-0.20659082,0.3747025,-0.41529742,0.2973694,-0.3225862,0.08719136,0.58258957,-0.47507375,-1.049758,-0.44901162,0.054811623,1.1402882,-0.2296011,-0.5504845,0.10238581,-0.039868988,-0.2635962,0.05755582,0.585843,-0.063013196,-0.087779894,-0.5285128,0.009669832,-0.08686091,0.113281064,-0.10267018,0.11494552,-0.46815512,0.42492557,-0.058565255,0.54391164,0.1002086,0.4237536,-0.3005859,-0.4029983,0.0883276,0.8992917,0.44900465,-0.054193165,-0.20301715,-0.18077826,-0.30643257,-0.0510274,0.16194294,0.76013404,0.5973091,-0.042145878,0.11787286,0.23128465,0.102890775,0.20812032,-0.18398869,-0.34246254,-0.34638268,-0.039449397,0.5492574,0.33367085,0.105915315,0.7464519,0.037703227,0.26255137,-0.3556874,-0.48457035,0.42283216,0.9603787,-0.3173236,-0.35436416,0.6775886,0.45513695,-0.14263678,0.43539616,-0.68548054,-0.47844532,0.33509496,-0.242833,-0.4507112,0.27790597,-0.18721092,0.10025829,-0.8376965,0.36939648,-0.4180483,-0.6936528,-0.34503585,-0.10189269,-2.6520736,0.19505681,-0.27905455,-0.16172454,-0.27814284,-0.3960679,0.040890634,-0.5455675,-0.54228663,0.1407098,0.17246369,0.7870785,-0.21101178,0.14918835,-0.06864098,-0.55534536,-0.355233,0.25216454,0.14325717,0.41594675,-0.082196705,-0.29455012,-0.006313571,0.07407049,-0.38118908,0.08874277,-0.5593351,-0.37579933,-0.0839872,-0.49077588,-0.12352012,0.62545174,-0.28090718,0.18983842,-0.18169795,0.106929556,0.13350922,0.123204045,-0.0063994527,0.2801006,0.08118052,-0.15012093,0.30172735,-0.18287492,0.36510232,0.1312468,0.5339425,0.21367715,-0.0558048,0.21564077,0.5116572,0.504795,0.068874575,0.8465651,0.31698114,-0.09113779,0.31219342,-0.21221931,-0.22174914,-0.6351641,-0.3757153,0.21455356,-0.41137418,-0.41986665,-0.12336468,-0.3692661,-0.9082759,0.6082092,-0.025582476,0.3467658,-0.27326113,0.67809445,0.5262524,-0.28799373,0.028756078,0.009528892,-0.075933315,-0.3140661,-0.13022421,-0.6823793,-0.25996834,-0.16551474,0.9182234,-0.43369532,-0.06406967,0.057853974,-0.09964512,0.18235508,0.08583057,0.23887913,-0.034920674,0.3240268,-0.077952385,-0.638594,0.3961936,-0.5081499,-0.031431433,-0.45765236,0.29619068,0.5856589,-0.65915716,0.3774075,0.52602756,0.18169188,-0.31426272,-0.62508905,0.016997179,0.19605033,-0.2347532,0.3001799,0.3072426,-0.7280683,0.40726742,0.15563841,-0.31848145,-0.6267575,0.70943993,0.09416257,-0.3858517,-0.03902142,0.3873363,0.2509281,-0.09468857,-0.23322003,0.22765085,-0.36541915,0.39272884,0.17140995,-0.12313415,0.46467546,-0.27083185,-0.30585045,-0.73266983,0.16789587,-0.5641378,-0.38869214,0.25485852,0.05202904,0.12596291,0.29620865,0.0074030287,0.36896834,-0.53012747,0.11662091,-0.24162522,-0.30201316,0.5819101,0.3567355,0.7193085,-0.42890915,0.54101986,0.15148392,-0.21240522,0.2442018,0.11305376,0.61315817,-0.065074995,0.5048353,0.08051934,-0.050937414,0.27837622,0.5233677,0.22225937,0.3206204,-0.07232232,-0.21751747,-0.12784939,0.028391557,0.19193853,-0.09067214,-0.5534827,-0.24096571,-0.19861735,0.08918981,0.54624647,0.22152384,0.22638786,-0.044311166,-0.2932289,0.09460395,0.11175287,-0.056002192,-1.0903703,0.59461015,0.18008061,0.8826742,0.11618185,0.19254565,-0.21807541,0.57125175,-0.19505088,-0.0010556707,0.15626796,0.09877032,-0.15130265,0.53451556,-0.514846,0.50784117,0.15399821,-0.06901675,0.17253089,-0.15493515,0.4168473,0.9251916,-0.21342646,0.035471577,0.036329098,-0.3451198,-0.035204735,-0.23394087,0.119132146,-0.5982097,-0.2656507,0.7566777,0.21249032,0.25829992,-0.16114013,0.038766082,0.1160439,-0.2685624,0.18810235,0.056576185,0.3013598,-0.20752664,-0.45243573,-0.13219044,0.4413071,-0.2307351,-0.0062960046,-0.008290927,-0.13410152,0.22593035,-0.029674215,0.092076056,0.0495133,-0.58659357,0.12024034,-0.36204544,-0.2923345,0.28273997,-0.26659027,0.2572132,0.12598968,-0.048562054,-0.056372948,0.3624912,0.22895013,0.45070574,-0.13208626,-0.312221,-0.3806165,0.20520122,0.049463034,-0.22567026,-0.076867625,-0.16503723,0.28960675,-0.57400066,0.271403,-0.1839877,-0.25314122,-0.17967136,-0.11592744,-0.038145933,0.38956603,-0.06432177,0.046785288,0.15849091,-0.17309739,-0.3329484,-0.14652573,-0.19687974,0.0833786,0.20489763,-0.3080003,-0.19521272,-0.122603215,-0.022869619,0.31154513,-0.08183764,0.3897492,0.43700927,0.3255331,-0.3189624,-0.007809398,0.15265442,0.6082457,-0.12029954,0.124748535,-0.37873837,-0.26262322,-0.33035088,0.41958264,-0.15109931,0.2356685,0.1788297,-0.016708586,0.89253646,0.0034395542,1.1728052,-0.08914503,-0.4709994,-0.048937954,0.54937875,-0.13085653,-0.17438047,-0.22651991,1.2401222,0.39132997,0.07341174,-0.02577789,-0.3352227,-0.013659068,0.16378441,-0.3049042,-0.29713157,-0.030332455,-0.43831697,-0.37199873,0.17546037,0.22721864,0.105331175,-0.10756834,0.17801845,0.4122486,0.08731126,0.14756106,-0.7923242,-0.36222053,0.28904787,0.17790262,-0.148201,0.21892674,-0.49664977,0.31480843,-0.6374941,0.11518073,-0.08861769,0.16913657,-0.07296135,-0.38900995,0.31333756,0.12382049,0.39424023,-0.28060058,-0.4019229,-0.19647741,0.27182713,0.09815756,0.031381074,0.4360078,-0.1967958,0.070176624,-0.060743578,0.63023823,1.1370574,0.029231912,-0.07113866,0.27343222,-0.38544947,-0.7499911,-0.022635112,-0.48045936,0.15861808,-0.11822062,-0.3147032,-0.43924597,0.32769233,0.05143232,-0.081792794,-0.002538979,-0.69906014,-0.16482462,0.10407596,-0.24074435,-0.1427081,-0.34239036,0.20570742,0.6972942,-0.15027632,-0.30140972,-0.024059108,0.33932883,-0.11935879,-0.7164033,0.19257914,-0.34870043,0.18899472,-0.10168773,-0.3935841,-0.26744252,0.030029774,-0.46966466,0.3466649,0.20752189,-0.25509062,0.07396189,-0.22400379,0.1399763,0.65843,-0.19994535,0.18251882,-0.34776226,-0.5306813,-0.68372244,-0.45895603,-0.10082113,0.19719286,-0.10172402,-0.83458847,-0.034243193,-0.39938334,-0.21318428,-0.20935677,-0.25375792,0.2960956,0.14691088,0.41669664,-0.21371283,-1.0678729,0.26812157,-0.003091595,-0.21228191,-0.42835873,0.41469732,-0.055452522,0.883008,0.15557514,0.11935855,0.14262246,-0.44792178,0.109877326,-0.1716543,-0.06316952,-0.6383275,0.04139232,760 -526,0.28957883,0.05981207,-0.5790091,-0.113596566,-0.24404097,0.123570636,-0.2640513,0.23773803,0.15051568,-0.498203,0.05764932,-0.034993373,-0.07723654,0.1271986,-0.15427719,-0.47560057,0.005765668,0.15974395,-0.43612283,0.4671324,-0.42523912,0.41231158,-0.01294423,0.25429738,-0.00060931063,0.20659213,0.31242937,-0.15707621,-0.12503806,-0.21049789,0.14295188,0.21103294,-0.6501011,0.33145285,-0.14080061,-0.32228646,0.102165036,-0.14465082,-0.3760798,-0.6074291,0.2607171,-0.7261052,0.5841786,0.017127922,-0.24852099,0.22675173,0.2164251,0.08776807,-0.09044429,-0.036203444,0.24035704,-0.33412173,-0.09859138,-0.3059792,-0.30526018,-0.42687613,-0.43976405,-0.025822898,-0.7027015,-0.19471233,-0.5108767,0.2550711,-0.3277552,-0.12090077,-0.19664529,0.48385242,-0.4191168,0.07878015,0.03967286,-0.2084042,0.45235157,-0.64660776,-0.22926058,-0.037730377,-0.08473718,-0.21429779,-0.09515225,0.30652508,0.028541273,0.35813013,0.014836992,-0.14593218,-0.21953018,-0.33718872,0.3321382,0.45324948,-0.10901884,-0.10840135,-0.17978384,-0.23743656,0.1540307,0.06860077,0.13233529,-0.3028153,0.039875925,0.021212956,-0.29273596,0.5448289,0.58736753,-0.11417959,-0.10488159,0.32792935,0.51347965,-0.01630843,-0.21958049,0.058142085,-0.0042574024,-0.37692928,-0.1746194,0.037623398,-0.08320226,0.4858809,-0.18620792,0.19807148,0.613107,-0.43789086,0.018292377,0.17219584,0.2161589,0.07207709,-0.2793588,-0.12518588,0.2912663,-0.6429443,-0.035425734,-0.19322695,0.7680026,-0.11443281,-0.539368,0.20572488,-0.47188392,-0.08394088,-0.041799907,0.6907166,0.37089235,0.50134814,0.15688904,0.7827396,-0.5038137,0.02653256,-0.10513284,-0.370182,0.068501905,-0.14357366,-0.022930013,-0.39071926,-0.16858992,0.07390288,0.18421543,-0.061549522,0.27605483,-0.3805341,-0.16520514,0.285181,0.79568326,-0.3335697,-0.005924042,0.6686513,1.2489841,0.87131226,0.049095254,1.0975822,0.08733182,-0.26151586,-0.23632516,0.0508789,-0.838851,0.30976942,0.17716534,-0.1177634,0.16064732,0.0388632,-0.09940515,0.22843991,-0.49265817,-0.10960116,-0.27170628,0.40548274,-0.038938206,-0.18822041,-0.44558212,-0.048390646,0.1850693,-0.10498647,0.15806249,0.14075713,-0.35502127,0.3463718,0.16511859,0.9973647,-0.16076498,0.08915418,0.21502747,0.3193471,0.22613342,-0.022966405,-0.006685457,0.42986912,0.2149835,0.24190167,-0.48571643,0.13900623,-0.13450824,-0.6348105,-0.24676065,-0.3831573,0.036540918,-0.18842788,-0.35798135,-0.21303985,-0.055323135,-0.5111994,0.29666618,-2.738459,-0.088490546,-0.040861428,0.30999246,-0.1894754,0.004365124,-0.010872304,-0.28732207,0.46528298,0.31246015,0.45352203,-0.40572062,0.29516056,0.6066489,-0.45148557,-0.1390798,-0.43684402,-0.088208795,-0.16789077,0.39707774,0.14242461,-0.04727894,-0.2593143,0.094089165,0.50097334,-0.19463225,0.2851756,0.3067859,0.33506647,-0.17188713,0.25934333,0.14150982,0.4952144,-0.5706709,-0.22688515,0.4477385,-0.4731726,0.04637495,-0.049483113,0.1643804,0.40785548,-0.30209565,-0.75101775,-0.52129596,-0.24699979,1.1807181,-0.29283118,-0.68970776,0.36262527,-0.07650242,-0.32212654,-0.055036757,0.38154358,-0.13620141,0.23164436,-0.71272177,0.18339227,-0.1671819,0.3816712,-0.04325332,0.10594208,-0.34185702,0.69288546,-0.05595193,0.49598965,0.41816753,0.27089572,-0.531521,-0.35394022,0.123418294,1.0812721,0.3580157,0.18020678,-0.21616559,-0.09910423,-0.113333166,-0.07063371,0.10534526,0.5810814,0.7704939,-0.028242495,0.19794372,0.35369855,0.025268389,0.022464741,0.021481803,-0.3159504,-0.13090204,0.054361846,0.53917897,0.47414938,-0.10614594,0.29704762,-0.11407779,0.43298492,-0.26525456,-0.484307,0.37548938,0.9148212,-0.17071986,-0.3744274,0.7213842,0.60552543,-0.42026687,0.5717769,-0.60693854,-0.570339,0.5355986,-0.18715155,-0.49090078,0.21492587,-0.35673103,0.13946632,-0.7728287,0.36941665,-0.30656567,-0.67491835,-0.37508562,-0.40814847,-2.8627198,0.09077897,-0.2314943,-0.19320123,-0.21338665,-0.061547227,0.22401263,-0.46891972,-0.46956512,-0.0049017943,0.12794067,0.6859264,-0.04125401,0.039712913,-0.27625346,-0.19091669,-0.15259454,0.31247792,0.14277928,0.033457994,-0.09979594,-0.49048594,-0.07795005,-0.17582604,-0.47856474,-0.008809609,-0.5426594,-0.37292483,-0.16652921,-0.44547027,-0.35342237,0.6547049,-0.37312824,0.02237398,-0.23844549,0.14214791,0.16164787,0.22053781,0.20700482,0.1640204,0.039377086,-0.09986774,-0.13451122,-0.22437344,0.4650354,0.13281788,0.3877167,0.6484451,-0.25232306,-0.03154386,0.47147474,0.440171,-0.044320207,0.9501026,0.21303497,-0.087482505,0.43277162,-0.19491675,-0.4186221,-0.743618,-0.2151492,0.09231232,-0.516278,-0.38741305,0.027249455,-0.2804629,-0.749059,0.65034294,-0.039165676,0.29569247,-0.17679584,0.41386834,0.22787596,-0.12040174,-0.26924115,-0.10675417,-0.12182383,-0.41178796,-0.38607693,-0.74704057,-0.38432047,-0.2750929,0.9460658,-0.14059302,0.07405735,0.12657045,-0.07723408,0.12354945,0.22424488,0.07418331,0.2664589,0.5857754,0.19390331,-0.6954053,0.49284163,-0.19242421,-0.11786711,-0.40944543,0.14042327,0.6554903,-0.58066887,0.38253814,0.45020023,0.18188848,-0.24494174,-0.4861457,-0.18725045,0.03616898,-0.1956981,0.5624954,0.18213168,-0.8946248,0.61956304,0.2064575,-0.3611715,-0.632501,0.54679614,-0.070821844,-0.16445124,-0.04799619,0.5421503,-0.14407791,-0.02276823,-0.09361776,0.1789757,-0.34419543,0.37193704,0.1919613,-0.138473,0.5471068,-0.21008204,-0.29666495,-0.6438212,-0.026650177,-0.44108123,-0.28440347,0.13977794,-0.18837608,-0.29825494,0.51231706,-0.16370709,0.5085191,-0.2233877,0.10215788,-0.117452964,-0.32355124,0.5044603,0.5376088,0.52898115,-0.4064083,0.6941589,0.0014759536,-0.20139244,-0.20226802,0.1399417,0.52817905,-0.041067105,0.5195976,-0.035210796,0.10667666,0.34624544,0.81258744,0.23477618,0.49214908,0.15818723,-0.18187109,0.2637274,0.026695682,0.2142977,0.069914065,-0.4768342,-0.08639296,-0.24472299,0.1824178,0.41648003,0.049910385,0.5852993,-0.1831082,-0.15047951,0.12666808,0.2374048,-0.12125761,-1.2978963,0.3506764,0.24095896,0.6971982,0.40292767,0.0967237,0.17087312,0.48493284,-0.19754384,0.100150846,0.24008171,0.078875616,-0.31253764,0.6804716,-0.5624681,0.3750925,-0.0978383,0.040322423,0.12889393,0.06356299,0.5533665,0.902962,-0.041962054,0.11569702,0.013322686,-0.3698681,0.33891994,-0.37149265,0.27985448,-0.29527187,-0.2572517,0.68672144,0.34248236,0.2275485,-0.20973961,-0.122136235,0.20315118,-0.16468287,0.31615874,0.034948062,0.01690999,-0.15149565,-0.47085357,-0.18216933,0.5138355,0.20568816,0.17004035,0.19628802,-0.08515713,0.29758623,-0.029467324,0.008977311,0.027958263,-0.4748363,-0.007946969,-0.14464161,-0.41165072,0.2785582,-0.49236104,0.18096831,0.18764126,-0.009896538,-0.5228016,0.17022562,0.3409625,0.47702697,0.059378553,-0.19634761,-0.21429966,0.055830445,0.17420173,-0.2142053,0.013718124,-0.38865042,0.11456603,-0.7188534,0.5083039,-0.29116604,-0.21403515,0.12639803,-0.3527048,-0.054489158,0.5292613,0.021150738,-0.11828498,-0.005551338,-0.14351353,-0.23115526,-0.2259588,-0.14378187,0.1813792,0.009933838,-0.10160392,-0.15030305,-0.050859135,-0.16482699,0.043084502,-0.007274968,0.2542829,0.27164403,0.07280149,-0.49244356,-0.03744697,-0.037497185,0.57085794,0.080645025,0.13165388,0.034591667,-0.413768,-0.20677778,0.24889874,-0.087761745,0.14002056,0.11697645,-0.318202,0.8639749,0.077307425,1.0752553,-0.00882457,-0.31949425,-0.0026822856,0.61383927,-0.12700711,-0.13782959,-0.34796,1.0528845,0.47673288,-0.15389778,-0.17528608,-0.35569075,0.063775904,0.010100858,-0.25402293,-0.35176754,-0.1918168,-0.67724526,-0.21076237,0.1860212,0.35082373,-0.077329636,-0.06492092,-0.08088459,0.22926116,0.080261454,0.26588756,-0.57056105,0.103638954,0.32256603,0.16847466,-0.03698533,0.10884552,-0.3845952,0.3653023,-0.6996768,0.123715796,-0.041665625,0.11482771,-0.26745313,-0.23299201,0.18380706,-0.047680803,0.341554,-0.3512682,-0.20671512,-0.13304107,0.26486826,0.29069212,0.2036859,0.7454567,-0.0735607,0.23822555,0.038756736,0.42990515,0.98943996,-0.23755883,-0.16399696,0.28456894,-0.47159597,-0.799189,0.19121397,-0.4809381,0.19153343,-0.24930143,-0.4700442,-0.36853722,0.24088839,0.1201733,-0.051658902,0.13698389,-0.58201486,-0.08119819,0.15882412,-0.21952902,-0.22454531,-0.18403254,0.036101084,0.47671577,-0.083882585,-0.18301865,0.027226975,0.2691234,-0.4423745,-0.57228243,-0.033374377,-0.2893757,0.44560188,-0.006355313,-0.25026396,0.027503831,0.11575342,-0.46976423,0.30348137,0.33064845,-0.22817083,-0.09485594,-0.1874844,-0.0055047446,0.4243431,-0.17375982,-0.053323906,-0.5279951,-0.55756027,-0.95270604,-0.21060319,0.31442744,0.15726714,0.006957843,-0.49181035,-0.17642686,-0.26379672,0.024138149,-0.0795602,-0.48514992,0.3737037,0.1055514,0.45108196,-0.2316741,-0.95245504,0.18819629,0.22961752,-0.06618065,-0.48860627,0.49334627,-0.1894252,0.51054096,0.121228956,0.041162353,0.385995,-0.60787535,0.24207528,-0.108960204,-0.18445519,-0.5105969,-0.027867118,765 -527,0.14720567,-0.092932664,-0.6423836,-0.15350057,-0.453963,0.22388649,-0.21564654,0.17231639,0.19821216,-0.038057923,-0.02371003,-0.10234237,0.18672755,0.5114265,0.0681672,-0.57347345,-0.0410462,0.26349992,-0.72486925,0.31915233,-0.5133189,0.43002063,0.09021396,0.43773532,-0.062272284,0.6161433,0.38724175,-0.20821421,-0.1448269,0.12276321,-0.092021696,-0.007892408,-0.46010438,0.089875996,-0.12706293,-0.377022,0.19934459,-0.23900871,-0.20102933,-0.5452563,0.1881245,-0.75392973,0.49224696,-0.094729185,-0.08114516,0.044695668,0.2654502,0.34045336,-0.3914331,0.06631419,0.303964,-0.30594948,-0.10473748,-0.41702434,-0.08489498,-0.5240105,-0.2236056,-0.058490224,-0.68364054,-0.49400812,-0.22316611,0.24649271,-0.21216439,-0.004168003,-0.047864728,0.3095235,-0.39280486,0.027404606,0.20169327,-0.5066661,0.25246373,-0.353977,0.04442411,-0.035835106,0.55641764,-0.0034659419,-0.03734443,0.36687237,0.30146354,0.43101767,0.3216959,-0.26611343,-0.33638683,-0.2876141,0.06967342,0.43982786,-0.102122106,-0.20939088,-0.20067644,-0.12506016,-0.08012084,0.20836541,0.05858139,-0.14535487,-0.042310566,-0.02042366,-0.21316276,0.44896552,0.33352846,-0.45145804,-0.2768348,0.34615925,0.6801279,0.016648531,-0.41738722,0.04277416,0.022731602,-0.45626116,-0.19238992,-0.0113434,-0.0022856507,0.379365,-0.21762268,0.19812359,0.9687641,-0.16755302,-0.16340722,-0.015607201,0.026464475,-0.26147375,-0.20451856,0.038738128,0.09066163,-0.55459064,-0.15101817,-0.13024049,0.5981616,0.19916452,-0.5114671,0.36984387,-0.54756314,0.10182994,-0.13228253,0.54926026,0.56614876,0.43056253,0.12338642,0.8683116,-0.3024486,0.18566608,-0.06858587,-0.51740885,0.17695875,-0.28270122,0.10408459,-0.4842796,0.114417374,-0.02457727,0.15040676,0.078339644,0.25700685,-0.481428,-0.04614853,0.29390517,0.9571434,-0.41882867,-0.17950727,0.47336745,1.0769993,0.7923897,-0.033167474,1.0447383,0.3553227,-0.3549146,0.10284461,-0.48352098,-0.50965774,0.17377813,0.3843829,0.31184655,0.13427821,-0.08739417,0.13297153,0.39613384,-0.3020019,0.1047013,0.022731023,0.14812665,0.16549602,-0.0034548214,-0.43011874,-0.07016509,-0.017595474,-0.12382023,0.31914154,0.10397983,-0.21322714,0.42550236,-0.093732595,1.4696068,0.005249381,0.035131183,0.012807361,0.67261213,0.298451,0.05466911,-0.1569237,0.46073368,0.26007354,0.07040671,-0.49458417,0.3495796,-0.26129368,-0.7342304,-0.18155916,-0.4604647,-0.027129123,0.016088516,-0.43729907,-0.11093297,0.02053449,-0.33533102,0.33857864,-2.7444632,-0.18173125,-0.08464738,0.3038672,-0.30255613,-0.017211648,-0.22050153,-0.44901544,0.21372212,0.3132021,0.5171074,-0.5597287,0.5255532,0.4540742,-0.37392548,-0.23304966,-0.53551584,0.0028493744,-0.15879704,0.41039175,0.07872663,-0.15373771,-0.40147322,0.19061403,0.6915876,-0.1410611,0.1790879,0.44156927,0.2378868,0.0736941,0.5250189,0.13827781,0.55882835,-0.43109915,-0.27406827,0.3636226,-0.21629117,0.08396931,-0.17500994,0.11926115,0.42839915,-0.29330727,-1.0708754,-0.6822408,-0.12901859,0.93207467,-0.3662186,-0.34583464,0.28420332,-0.067869365,-0.031066801,0.14346358,0.5051064,-0.022337658,0.29004458,-0.5612774,0.26436827,-0.02065906,0.21479239,0.061165072,-0.044977613,-0.28163812,0.6998145,-0.080413856,0.53147274,0.17894295,0.29878998,-0.14375077,-0.28575692,0.12385299,0.8119391,0.10683046,0.024249146,-0.07068194,-0.30464363,-0.072888136,-0.24360757,-0.019037668,0.31788284,0.6837206,-0.033896346,0.16294305,0.28711352,-0.24598888,-0.07448832,-0.037759654,-0.2738127,0.12476802,0.043052975,0.30078745,0.6054081,-0.068163596,0.5230833,-0.25038853,0.51108634,-0.10589977,-0.62493336,0.795849,0.47570798,-0.26666424,-0.09148347,0.55750823,0.32232788,-0.5664638,0.45475906,-0.73053414,-0.3903872,0.60863864,-0.20597564,-0.34064475,0.001879309,-0.079694204,0.10849888,-0.8312003,0.16733377,-0.12672251,-0.42081818,-0.18497634,-0.3460318,-4.088878,0.11039983,-0.114826165,-0.06417885,-0.1641487,0.043549806,0.30355948,-0.59011066,-0.41620106,0.05396984,0.23957245,0.6914395,0.13550226,0.21975958,-0.3134201,-0.14325263,0.02715628,0.37802532,0.02146537,0.16309991,-0.08560773,-0.65547335,0.028615031,-0.13410099,-0.66442406,0.149737,-0.58028185,-0.33906212,-0.23202239,-0.6292049,-0.3455549,0.5809468,-0.28814015,0.11663334,-0.32496077,0.16571046,-0.21235564,0.28322905,0.19841366,0.0007843929,0.24655466,-0.017144037,0.24916841,-0.36018068,0.3658612,-0.09578992,0.41194257,0.034636106,0.15305461,0.08717066,0.4961538,0.5770264,-0.12178933,0.8463479,0.40384555,-0.04983523,0.2838017,-0.36918068,-0.09995747,-0.5928031,-0.5203941,-0.22845629,-0.33789936,-0.474649,0.14386685,-0.330734,-0.81080925,0.6781769,0.07272316,0.13574593,0.004560343,0.3486781,0.392236,-0.28388444,-0.16906753,-0.057238974,-0.22417852,-0.6083831,-0.16527204,-0.5612049,-0.5779848,0.040935636,0.7351646,-0.3597733,0.016070297,-0.07965169,-0.20576794,0.006933951,0.2863312,0.06809342,0.35038492,0.48563078,-0.121786036,-0.71985215,0.45181677,-0.188518,-0.078767896,-0.47877893,0.05603079,0.40838793,-0.7278283,0.50165373,0.4152706,0.13270846,0.035754036,-0.29363444,-0.2714084,-0.11506433,-0.14279296,0.43765113,0.013346821,-0.9017605,0.6093649,0.28315675,-0.45013353,-0.6300687,0.20051591,-0.17523234,-0.38543886,-0.041418266,0.27740055,0.08581568,-0.16388701,-0.35409504,-0.019517852,-0.45559326,0.2074043,0.20437546,-0.10323332,0.67260456,-0.18620469,-0.35747814,-0.7331957,-0.17421964,-0.45501783,-0.13826036,0.14750879,0.0053939903,-0.15544249,0.30351567,-0.0055534435,0.3034544,-0.16910155,0.026153669,-0.032779153,-0.3189525,0.20269313,0.29050678,0.23265359,-0.47180048,0.54101783,-0.01332287,-0.21394332,0.067397825,-0.114297256,0.45148495,0.10785984,0.4884693,-0.079587415,-0.208304,0.41605857,0.6391219,0.13796121,0.47209397,-0.016960412,-0.24535301,0.36245865,-0.06519223,0.041843805,-0.06502887,-0.33664137,0.04992244,-0.15008727,0.13418205,0.46342513,0.34301203,0.43575975,0.20206806,-0.1466086,0.18666516,0.14028427,-0.024792416,-0.9837039,0.40656,0.4387923,0.74387854,0.3644341,0.06907789,-0.18721326,0.80561155,-0.21048796,0.0526675,0.27311465,-0.00419145,-0.42533138,0.68080425,-0.69586104,0.4130578,-0.20032465,-0.18815205,0.19036846,0.12633589,0.14355734,0.9184372,-0.09008849,0.18318303,0.08122157,-0.23965004,0.0041568195,-0.14241442,0.0647058,-0.5280739,-0.33052936,0.6729679,0.2777977,0.32392415,-0.16113918,-0.11750121,-0.0011088209,-0.07227426,0.25489625,-0.097326174,-0.028683646,0.14913872,-0.5900787,-0.3053279,0.5589761,0.33530173,0.33226195,-0.106201075,-0.3470266,0.11050178,-0.36577097,-0.0946311,0.021864176,-0.3594212,0.036223795,-0.010197257,-0.5442528,0.6845775,-0.2990148,0.31339854,0.038746588,-0.015608066,-0.2044381,0.42220122,0.15717976,0.65698063,0.16130532,-0.2117417,-0.31706142,-0.05576243,0.27529088,-0.28315142,0.027244627,-0.48564515,-0.13679391,-0.51806426,0.56610453,-0.22575858,-0.46102962,0.24037673,-0.3983504,-0.049509697,0.51007533,0.051834933,-0.23002763,0.14349271,0.00842292,-0.3756718,-0.06916731,-0.3820651,0.24917348,-0.06899334,-0.08169193,-0.25285015,-0.22366674,-0.025163906,0.60318094,-0.15028055,0.30196613,0.1321473,-0.019168632,-0.13621502,0.16761704,0.22996311,0.35085005,0.08611226,0.08655081,-0.17208529,-0.36294928,-0.26484346,-0.010369318,-0.06837731,-0.0023129785,0.1399381,-0.18556166,0.90934086,-0.019444274,1.260316,0.22081664,-0.32204312,0.18832803,0.42783207,0.054175112,0.21486361,-0.3930698,0.8268569,0.5631533,-0.1820116,-0.22594383,-0.40525967,-0.15830623,0.3781948,-0.3571791,-0.1751574,-0.074889146,-0.7670277,-0.556686,0.29816824,0.1823055,0.2953338,-0.010801821,0.06854932,-0.078676276,0.084028974,0.3997155,-0.6389675,-0.14592096,0.3079415,0.33511823,-0.15211518,0.17592908,-0.3590841,0.5611034,-0.6278286,0.2155033,-0.38766083,0.16640784,-0.36018535,-0.40098256,0.1071525,0.021400342,0.42604747,-0.09702102,-0.4001062,-0.17062509,0.5485851,0.16225693,0.17578696,0.71379936,-0.23957147,0.054396622,0.017333247,0.42344907,1.0301586,-0.48319617,-0.03353565,0.4354531,-0.32519633,-0.58858454,0.37501404,-0.34804937,-0.020662311,0.020172583,-0.47447878,-0.36859077,0.36021343,0.04904782,-0.030561646,0.08556423,-0.39295265,0.050417636,0.24349274,-0.18019189,-0.2094481,-0.093790986,0.48073405,0.57278347,-0.28583542,-0.19489749,0.26670697,0.511783,-0.30317083,-0.36121044,-0.03757712,-0.277555,0.457177,0.1457953,-0.39572787,0.03487851,0.10907513,-0.41173217,0.1877394,0.34926432,-0.36083767,0.17502776,-0.17186686,0.0900089,0.7814833,-0.0005268582,-0.012886559,-0.59404725,-0.3796082,-1.1158197,-0.39385822,0.38337642,0.04503262,-0.1498982,-0.33962494,0.038703766,-0.09584818,-0.23483123,0.16215014,-0.7162203,0.2710132,0.11316854,0.5193518,-0.16569707,-0.84002846,0.048454233,0.16646184,-0.114321366,-0.7037393,0.6243182,-0.31243542,0.9318699,0.02652714,-0.13358665,0.20395432,-0.3174725,0.12508062,-0.40198824,-0.20229997,-0.68220365,-0.038691036,768 -528,0.36099964,-0.24384236,-0.22005133,-0.17755781,-0.2799569,-0.021519968,-0.15049721,0.29994383,0.04291817,-0.3779931,-0.1629249,-0.12853052,0.106103376,0.46293825,-0.12208925,-0.5801678,-0.22726046,0.05028418,-0.6015787,0.51450133,-0.6272922,0.3502226,0.18516111,0.17874089,-0.034330722,0.39712116,0.43782392,-0.16728899,-0.11008586,-0.054273214,-0.19899864,0.10597735,-0.53115135,0.09041127,-0.12168678,-0.39674425,0.12631544,-0.49843287,0.009817834,-0.6128789,0.11770369,-0.83184,0.5432083,-0.06353798,-0.10379262,0.058459315,0.22709234,0.38312075,-0.35834435,0.053737767,0.19094399,0.0547854,-0.016435722,-0.19393988,-0.036938604,-0.30116415,-0.43445325,-0.05587274,-0.62601465,-0.43034777,-0.18449685,0.10595087,-0.34989285,0.11563059,-0.10232865,0.074510224,-0.43655276,-0.19185922,0.36418933,-0.19427076,0.297525,-0.3715214,0.045622893,-0.020966832,0.51015794,-0.24931808,-0.05756964,0.52877814,0.33174542,0.46627268,0.17968328,-0.23740624,-0.13703987,-0.18064228,0.17350121,0.5587536,-0.13740505,-0.46106005,-0.16011314,0.07020581,0.12600291,0.431276,0.04464201,-0.13235307,-0.061694648,-0.025272174,-0.21743488,0.3468366,0.36650398,-0.35371155,-0.42732382,0.3413168,0.56288075,0.1373886,-0.095500536,-0.12968695,-0.004292575,-0.48255768,-0.22438014,0.066582695,-0.016497353,0.47945303,-0.025071535,0.22591531,0.8210557,-0.20658585,0.24609466,-0.2086972,-0.23440695,-0.29938743,-0.19775769,-0.12326543,-0.0251829,-0.5040792,-0.013972708,-0.22894947,0.7038768,0.16080725,-0.83530575,0.48975062,-0.5809079,0.06691174,-0.10191409,0.538114,0.4876426,0.36549586,0.32529804,0.7426077,-0.31659645,0.13358797,-0.05559642,-0.45266625,0.11220054,-0.18434198,0.02707432,-0.5753861,0.13451669,0.12558363,0.12528585,0.0152421575,0.3926411,-0.54821676,0.10944353,0.17496464,0.720513,-0.38013202,0.020683441,0.6893955,1.0899457,0.87407476,-0.03950286,1.2321523,0.26287135,-0.23559688,0.20414925,-0.36827797,-0.6372663,0.14345714,0.60904896,0.07351359,0.469416,-0.017382026,0.00018359082,0.25401708,-0.26159826,0.09694881,-0.0080818515,0.36257687,0.02750026,-0.19432926,-0.5583719,-0.18726741,0.011880292,-0.11634379,0.02819632,0.21570525,-0.18722638,0.2865557,-0.017418146,1.8120569,-0.012560947,0.20873523,-0.010734217,0.5681168,0.23142603,-0.07789608,-0.18016036,0.38477924,0.28693604,-0.03079789,-0.545917,0.21978554,-0.25371122,-0.52882904,-0.0073688827,-0.4205628,-0.043045286,-0.073209204,-0.33354458,0.049475014,-0.026021156,-0.31348935,0.43985102,-2.9071584,-0.33349404,-0.12494003,0.19629739,-0.44147214,-0.28613392,-0.028118098,-0.41130242,0.3253665,0.41773865,0.4541097,-0.66968143,0.5785519,0.39428076,-0.32404074,-0.17855631,-0.63955003,-0.088285975,-0.012066158,0.34462923,0.018638572,-0.14511608,-0.1588342,0.40225378,0.5472578,-0.075925395,0.11077763,0.37212536,0.35100487,0.23958495,0.573813,-0.16531096,0.5140065,-0.12859264,-0.08266206,0.29004803,-0.115515776,0.23037651,-0.06393994,0.15405071,0.31124672,-0.5072085,-0.91689265,-0.6505881,-0.6200107,1.0152432,-0.35427788,-0.21732923,0.2805077,0.06017242,-0.08707048,-0.02536567,0.408696,-0.06992515,0.16746299,-0.6692658,0.15867607,-0.06780364,0.19368662,0.05536144,0.049428463,-0.41723195,0.52481234,-0.06925865,0.637175,0.23100111,0.19433498,-0.13272835,-0.19730665,0.115684286,0.87404865,0.3339825,-0.10101453,-0.072468296,-0.24780059,-0.1672055,-0.17740385,0.03974861,0.28762063,0.8477307,-0.0085501205,0.0901087,0.21017106,-0.030609379,-0.02234848,-0.06765251,-0.14500296,0.055364132,0.010768073,0.44350386,0.38333416,-0.25898072,0.5541485,-0.31075376,0.39325327,-0.06527388,-0.5114528,0.52478683,0.2819761,-0.14348364,0.10239046,0.4660409,0.5556737,-0.32382512,0.47856277,-0.5703115,-0.19452773,0.7094437,-0.1905397,-0.3478947,0.22081849,-0.20244537,0.07330563,-1.0062631,0.2719773,-0.27076766,-0.23472199,-0.28588915,-0.21531573,-3.6653829,0.08762906,0.04087468,-0.25790855,-0.0636143,0.041788157,0.28488368,-0.72986317,-0.63523334,0.111322165,0.08640598,0.5560817,0.017962975,0.11371971,-0.24222347,-0.08532746,-0.19317098,0.17167391,-0.06298538,0.27829465,-0.1508127,-0.3905025,-0.107026406,-0.17354727,-0.7401646,0.32883045,-0.4660421,-0.50706613,-0.1117763,-0.5428844,-0.29203752,0.6972953,-0.2557531,-0.00989984,-0.20276655,0.0014255515,-0.25301233,0.292931,0.21176815,0.19380954,0.069736965,-0.06962637,0.027187875,-0.36082643,0.49767193,0.12454051,0.38544616,0.12273967,-0.13204023,0.19624887,0.4944574,0.59586746,0.016076919,0.7577467,0.2719913,-0.1646148,0.35925645,-0.4118916,-0.038674526,-0.59841913,-0.50361884,-0.085377134,-0.30946663,-0.7047544,-0.09459543,-0.24679923,-0.6869813,0.5797401,0.03830233,0.3394545,-0.13097064,0.19116138,0.2731112,-0.22595103,0.03254823,-0.06033183,-0.091992564,-0.5302433,-0.2868399,-0.6525922,-0.5024682,0.1004949,0.8648187,-0.22025855,-0.0343198,-0.18607865,-0.22533043,0.13244426,-0.17075522,0.16571292,0.38115647,0.1961352,-0.0707462,-0.6953401,0.48255116,0.07129687,-0.13302167,-0.36045632,-0.024444861,0.61663276,-0.6821426,0.4110456,0.22666267,0.19042501,0.18537791,-0.45080972,-0.13932063,0.030676743,-0.21703972,0.26906872,0.005664536,-0.7840906,0.49878582,0.26815534,-0.44594464,-0.6521139,0.3077396,0.04032605,-0.23473246,-0.09054815,0.21876894,0.1478423,-0.057632506,-0.3448418,0.19674782,-0.5964657,0.30441174,0.25569743,0.13988861,0.43337783,0.061377738,-0.37347808,-0.61341655,0.015525265,-0.35122776,-0.26200056,0.2025489,0.054166406,-0.057801057,0.16091558,0.12610558,0.38744137,-0.43289107,0.09481834,0.2721108,-0.34631726,0.16369872,0.46111494,0.3095172,-0.3383536,0.48492622,0.07995776,-0.08923637,-0.14814863,-0.1287041,0.47220844,0.102962844,0.10346268,-0.18342365,-0.26468632,0.47600868,0.66967577,0.112258114,0.15791914,0.13620508,-0.2184072,0.40429562,0.06638466,0.0589724,0.24134341,-0.3404188,0.092527404,0.22063401,0.050076615,0.5706142,0.29933208,0.20520236,0.13009308,-0.20340021,0.00212329,0.34230232,-0.28429276,-0.88962066,0.33030125,0.27865267,0.7548812,0.5030756,0.033880442,0.0051880223,0.44772616,-0.4027763,0.18007828,0.38746786,-0.08970712,-0.60416543,0.7765649,-0.4724656,0.3413403,-0.052656766,-0.10509058,0.041493732,-0.03149963,0.30177563,0.8752341,-0.14676252,0.073807724,-0.05695045,-0.023620684,-0.07050966,-0.32195744,-0.14496198,-0.37401387,-0.23809102,0.5942072,0.2894848,0.31375203,-0.047243502,-0.07234822,0.080371834,-0.2510104,0.23362394,-0.116869695,0.13389729,0.11254089,-0.507256,-0.34681684,0.64161605,0.036787305,0.16056748,-0.14767571,-0.4270292,-0.018418347,-0.18940207,-0.12708831,0.050086517,-0.7541276,0.18419974,-0.20073144,-0.28243914,0.44160992,-0.28168827,0.20795546,0.15780912,-0.015093224,-0.016717182,0.100355335,0.2701537,0.65664136,0.07651418,-0.31631878,-0.21047187,0.06615563,0.1543561,-0.2580628,0.11414871,-0.29270792,-0.0354735,-0.6111611,0.6440649,-0.021470802,-0.38811046,0.22450742,-0.1871277,-0.050898273,0.42282325,-0.018174198,-0.048530363,-0.29442233,-0.029128743,-0.28528556,0.03892495,-0.35274383,0.24727343,0.24578442,-0.02061477,0.03628723,-0.090455905,-0.07166142,0.638599,0.065609835,0.46311638,0.16834934,-0.03115936,-0.31417775,0.030317083,0.06845393,0.28676718,0.09640711,0.14169164,-0.37894312,-0.22352536,-0.17611465,0.16694379,-0.24193124,0.14896478,-0.04155136,-0.40196982,0.75812966,0.06256542,1.196438,0.115179434,-0.34375784,0.08354163,0.5631107,-0.11379927,0.0820166,-0.46527764,1.0493218,0.5635771,-0.065999135,-0.1370004,-0.37908274,-0.24217546,0.39497662,-0.37512806,-0.2175721,-0.06391342,-0.593265,-0.5349378,0.2459418,0.07962396,0.15597446,0.06811894,-0.13252164,-0.022276325,0.17497393,0.37022242,-0.5705183,-0.2798394,0.2781178,0.24141277,0.008839594,0.11861612,-0.5031305,0.41517472,-0.63326925,0.24294342,-0.3715158,0.0769826,-0.12197196,-0.2960154,0.16643532,0.07671835,0.33283225,-0.10564972,-0.5541459,0.04542658,0.37812454,-0.073083416,0.18210877,0.64229316,-0.27122346,0.19179752,0.017972754,0.46351954,1.210627,-0.25739723,0.021320531,0.3376172,-0.4455747,-0.53112364,0.38212034,-0.10472388,-0.031190524,-0.19745348,-0.408758,-0.4348205,0.27462703,0.14294441,-0.0024546299,0.0016522536,-0.40752825,-0.22374399,0.29618582,-0.36380002,-0.32585278,-0.2829936,0.34287134,0.8979483,-0.38423178,-0.17881842,0.14196561,0.20881346,-0.30023044,-0.476862,-0.17154057,-0.14302717,0.40318182,0.049847424,-0.31307146,-0.041132636,0.15447657,-0.22314712,0.06603698,0.33256215,-0.39550278,0.12758282,-0.22580047,-0.16502312,0.97388256,-0.12039304,-0.25878245,-0.7059876,-0.518014,-0.8883516,-0.49038133,0.42350963,0.11445742,-0.06364549,-0.23850682,0.09982596,-0.05624688,-0.19554864,0.09051139,-0.4136315,0.24183273,0.10452783,0.45679075,-0.21809924,-0.7450229,0.12652889,0.18806064,-0.01796727,-0.6426013,0.6841334,-0.12360025,0.79284525,0.06615651,-0.19968645,0.11418807,-0.47057787,0.01957475,-0.3707259,0.019886145,-0.7577302,0.20720124,777 -529,0.39367083,-0.2627942,-0.5039148,-0.12063801,-0.3112515,0.068848856,-0.065996364,0.5937279,0.24914639,-0.34097734,-0.20775078,-0.33657858,0.049950738,0.19234204,-0.054299276,-0.43939394,0.03242338,0.27195093,-0.53795093,0.46811453,-0.35080436,0.11200096,-0.13133651,0.4210547,0.3928327,0.30646974,-0.28083998,-0.22631137,-0.14836049,-0.20387074,-0.07628262,0.40976062,-0.56603205,0.3376967,-0.22720493,-0.17245951,0.026405215,-0.6169085,-0.49641246,-0.7623211,0.19637051,-0.993338,0.43675986,-0.04301094,-0.22864223,0.025281599,0.082204424,0.5204102,-0.24943271,-0.15705016,0.30227908,-0.19252054,-0.07950657,-0.16208278,-0.066624075,-0.29665226,-0.4331307,-0.14682563,-0.24355388,-0.20403774,-0.42620835,0.16387479,-0.30242124,-0.10318915,-0.07646505,0.43254873,-0.5372786,0.3857148,0.1679114,-0.11939112,0.25080815,-0.5034598,-0.2141768,-0.13983274,0.38904566,-0.11513392,-0.35539725,0.39981502,0.29432845,0.17207563,-0.10872375,-0.058732595,-0.099272236,-0.050072428,0.24793628,0.49847177,-0.106664956,-0.35781032,-0.034879334,0.06211335,0.13495383,0.2612749,0.078824736,-0.43049216,-0.2771569,0.123550706,-0.08840655,0.2921462,0.4403117,-0.08229027,-0.1203029,0.34651175,0.43764883,0.3655029,-0.14547476,0.021707824,0.08204854,-0.497371,-0.1759355,0.0020154428,-0.18326838,0.4281941,-0.12857199,0.14985754,0.9295188,-0.15584697,-0.08704614,0.07825785,0.26384166,-0.15085395,-0.31256416,-0.29164964,0.26735663,-0.3583596,0.3008948,-0.032450862,0.74079895,0.11643978,-0.5360112,0.19629917,-0.7170369,0.05468614,-0.22965448,0.49545032,0.6079421,0.437372,0.4762961,0.63842505,-0.29403383,0.11063101,-0.05036863,-0.5088798,0.114810176,-0.2957236,0.025777817,-0.52918553,-0.095913604,-0.01497175,-0.19476427,0.06292832,0.26952392,-0.53249204,-0.03448606,0.12832066,0.84833777,-0.32053804,-0.027712196,0.76791847,0.8579873,0.70367706,0.16185047,1.0663494,0.18557003,-0.27830783,0.27889627,-0.05021264,-0.8130296,0.3819571,0.35675478,-0.34628412,0.034667112,0.30705371,0.053963643,0.2891113,-0.48918098,0.09663143,-0.12942497,0.14584278,0.15890491,-0.16627574,-0.34402117,-0.3184188,-0.22854045,-0.015989957,0.031078398,0.075248234,-0.20738515,0.39405397,0.05399063,1.8054153,0.09202403,-0.015530409,0.03617662,0.48163065,0.13758299,-0.1332384,-0.17616211,0.5523853,0.30459484,0.24133964,-0.55523145,0.25445592,-0.18565233,-0.34290054,-0.05992071,-0.4303847,-0.15938272,-0.04017382,-0.42570928,-0.19605218,-0.16873077,-0.1724331,0.48441392,-2.756604,-0.12223951,-0.006083578,0.4709839,-0.2127564,-0.25296208,-0.14482962,-0.40330616,0.2649179,0.23061118,0.55268174,-0.699903,0.33627817,0.4876249,-0.6191543,-0.23503676,-0.5674016,-0.07092553,0.027808907,0.21872644,0.03341842,0.1647613,0.042002793,-0.04236122,0.36953953,-0.02853941,0.15202801,0.49592772,0.4867905,0.025207248,0.6137403,0.004328919,0.4578462,-0.17658278,-0.20346448,0.1754758,-0.32526255,0.3531302,0.05394598,-0.009150444,0.6300785,-0.38119432,-0.7369317,-0.7267073,-0.20135947,1.1579813,-0.30738586,-0.30514285,0.24880563,-0.5474312,-0.229392,-0.05865366,0.5275446,0.0030038187,-0.022870796,-0.7886561,-0.13711607,-0.124740504,0.17230424,-0.025631862,-0.10101932,-0.34376335,0.7570333,-0.0048887604,0.47264904,0.18594898,0.014172659,-0.24902341,-0.40451017,0.12156453,0.725745,0.25875443,0.17476226,-0.22718641,-0.21317147,-0.3672225,-0.109007575,0.119995795,0.6664018,0.5225948,-0.16203092,0.18701775,0.24525952,-0.065437265,-0.0878951,-0.3046499,-0.27109095,-0.035811577,0.0077692824,0.5010781,0.68436253,-0.11768136,0.56650317,-0.0062224055,0.3440402,-0.053926166,-0.421125,0.24424104,1.2122452,-0.13905852,-0.29296252,0.537929,0.5393845,-0.27065977,0.2862294,-0.4680298,-0.12407739,0.54615074,-0.14097446,-0.488421,0.27214026,-0.2629108,0.1742383,-0.86802435,0.30842382,-0.12396073,-0.6577143,-0.531658,-0.018041363,-2.584828,0.1645719,-0.23533668,-0.24635693,-0.11983454,-0.12072243,0.17630132,-0.5457439,-0.4763752,0.11033688,0.030551655,0.8002611,-0.14695115,0.04555423,-0.2539535,-0.1525587,-0.19670856,0.07275587,0.094217144,0.43029276,-0.105110526,-0.38905498,-0.088664725,-0.050520472,-0.32126242,0.04560361,-0.63676506,-0.5555478,-0.107697,-0.57082117,-0.3228597,0.64141023,-0.43457368,-0.057483267,-0.115100995,-0.01383368,-0.16794758,0.21753795,0.20805503,0.110021695,0.028969212,-0.022433562,-0.04598689,-0.25167945,0.3843949,-0.03858454,0.31787553,0.20974562,0.028966699,0.24937232,0.45736942,0.4637184,-0.14248557,0.8864599,0.49943194,-0.19225541,0.1813325,-0.31438705,-0.30733976,-0.4960421,-0.16781361,-0.0033729929,-0.42883584,-0.40944552,-0.01269865,-0.36579165,-0.7727911,0.51104116,0.1148259,0.12287092,0.07955127,-0.008608818,0.61543363,-0.09923543,-0.16101496,0.0004134306,-0.15611704,-0.63408214,-0.2728749,-0.46891266,-0.4693679,0.18206586,1.0096812,-0.29890618,0.049315516,0.11709076,-0.47216734,0.06096438,0.22204396,-0.10729045,0.13142942,0.6130438,-0.19500305,-0.6440366,0.3897622,-0.10942481,-0.26890084,-0.6795539,0.32801947,0.6473304,-0.70817804,0.5785983,0.23717903,0.014798337,-0.2547302,-0.31142005,-0.21358415,-0.22081694,-0.20179045,0.36070195,0.11526052,-0.6496954,0.22435328,0.39426666,-0.24293676,-0.74885213,0.58257043,-0.2337289,-0.38810465,0.049927585,0.31836957,0.017101053,0.080901034,-0.17469056,0.2887094,-0.31196827,0.23247422,0.24996679,-0.18912964,0.085080735,-0.15590623,0.14906123,-0.7435712,0.113831125,-0.3519134,-0.39083496,0.41287515,0.099920645,0.03464278,0.2090356,0.22553842,0.3052692,-0.2780345,-0.00901403,-0.19919035,-0.24442504,0.23234835,0.438831,0.47333127,-0.46858254,0.5893218,0.08370445,-0.11657076,0.1331338,0.16493177,0.316608,0.0757973,0.5087449,0.060814034,-0.24150242,0.23182373,0.9335031,0.22561088,0.63705796,0.015676614,-0.054187458,0.14614718,0.09071273,0.37778592,-0.027021987,-0.68265533,0.16202055,-0.33384123,0.13403311,0.4129472,0.22855447,0.17436838,0.025841963,-0.41210097,-0.010862291,0.23984501,0.24414203,-1.3332065,0.41153988,0.2920753,0.836379,0.3081503,-0.060210664,0.12887086,0.7062435,-0.06559169,0.10946059,0.21670668,-0.120381534,-0.4813213,0.4218273,-0.89884657,0.39389876,-0.026135726,-0.08841164,0.09324764,-0.05176974,0.4011667,0.668856,-0.25730273,-0.049432002,0.055240072,-0.43203115,0.12181427,-0.4500291,0.114364564,-0.7192593,-0.35611627,0.5338534,0.72701114,0.37355956,-0.1889517,0.14826562,0.03583295,-0.18485208,0.18932489,0.18339637,0.03562851,0.0638774,-0.72092617,-0.13206854,0.58318055,-0.35847855,0.23583211,-0.03250699,-0.13993844,0.33525723,-0.16516586,0.043325346,-0.18573765,-0.7825722,0.035445623,-0.27295396,-0.5755854,0.4393901,0.1069073,0.33505502,0.28356913,0.04953627,-0.1615981,0.6267701,0.11239799,1.0679597,-0.07397298,-0.27003103,-0.3588049,0.23452802,0.22740746,-0.14308803,-0.15537429,-0.36815187,0.017870879,-0.43128395,0.36188513,0.004311553,-0.36795834,-0.092438236,-0.17243262,-0.011772712,0.54606646,-0.052262597,-0.13377725,-0.23353931,-0.22781931,-0.36295706,-0.04316661,-0.12826683,0.2943577,0.2868976,-0.03494798,-0.27425072,-0.0857908,-0.20340827,0.32655436,-0.17873526,0.51408494,0.3763034,0.03889281,-0.11063274,-0.29691166,0.27140802,0.530481,-0.05546119,-0.11420768,-0.18738,-0.28415594,-0.3911688,0.28445467,-0.0548458,0.47992232,0.2505236,-0.28684667,0.69929564,-0.14461221,1.0291735,0.050375853,-0.32733512,0.35333544,0.4524615,0.05171332,-0.059868038,-0.36010668,0.7827706,0.5204545,-0.074454024,-0.10541386,-0.37237218,-0.060187947,0.20138565,-0.1042368,-0.10107864,0.039992485,-0.6174857,-0.1871132,0.17059053,0.21855323,0.28133217,-0.07175126,-0.008980566,0.26966378,-0.08636392,0.112907425,-0.30128402,-0.2664695,0.19314507,0.17122337,0.057056732,0.035179604,-0.51189816,0.5015417,-0.34307626,0.08270579,-0.27150464,0.22000538,-0.38735792,-0.17006691,0.120723955,-0.031664234,0.38464442,-0.39655834,-0.1720202,-0.33742195,0.5269834,0.22020955,0.111101985,0.51100767,-0.26590103,0.05597174,0.059094477,0.43144247,0.6854854,-0.2568238,-0.0024790508,0.5829167,-0.44982672,-0.40825313,0.44252676,-0.32743984,0.11492113,0.14955895,-0.25138608,-0.4549048,0.27598995,0.22471932,0.0737733,-0.14363219,-0.6215703,0.007885669,0.38600594,-0.20404649,-0.19795369,-0.38614655,0.09314563,0.5339633,-0.2259685,-0.36853758,0.14723173,-0.04321679,-0.1745708,-0.3323138,-0.1417435,-0.44852442,0.3533206,-0.24791276,-0.38714027,-0.20997927,0.032271385,-0.3866527,0.12809291,0.018403335,-0.35354543,0.13598336,-0.22515061,-0.0075628334,0.97543657,-0.268447,0.022003742,-0.54700124,-0.43563208,-0.6666298,-0.23062304,0.3990127,0.13978864,-0.015818182,-0.44929695,0.049890913,0.09789681,-0.2443895,-0.22943854,-0.50416434,0.42804417,0.097006306,0.35187802,-0.031307276,-0.9875393,0.3217621,0.017521143,-0.22877155,-0.7095793,0.5290485,-0.2697638,0.7088068,-0.015736908,0.15830204,0.20694053,-0.29419532,-0.07582271,-0.27722526,-0.17129306,-0.69344383,-0.018869335,781 -530,0.22733828,-0.51588887,-0.41557676,-0.12807004,-0.22183956,-0.03780651,-0.10790194,0.31455782,0.1562974,-0.27304882,-0.23235631,-0.07703384,-0.039214823,0.556048,-0.14415155,-0.67585236,-0.22847703,0.1166672,-0.76742953,0.58340317,-0.47025594,0.24385123,0.041167367,0.34169984,0.2165955,0.34746003,0.40590668,-0.13498215,-0.05853198,0.116157465,-0.19299807,0.07284794,-0.5429991,0.25836208,-0.06475758,-0.21992753,0.12596263,-0.36470065,-0.21914017,-0.6786895,0.34501785,-0.83026916,0.38020346,-0.07256397,-0.11976051,0.072694756,0.13872425,0.27415392,-0.62870777,-0.07731034,0.22824506,-0.08359671,-0.14429283,-0.16193493,0.12713835,-0.24637826,-0.41831067,-0.0028802624,-0.48320433,-0.24866807,-0.12838261,0.111120276,-0.42993435,0.16595438,-0.24573278,0.2657895,-0.42991138,-0.17104198,0.29711086,-0.17831643,0.08438461,-0.6363093,-0.0633713,-0.104362525,0.4300578,0.089180954,0.0026932124,0.57637125,0.13346197,0.373916,0.20672809,-0.22624257,-0.2939606,-0.18377045,0.12334136,0.5031351,-0.03423581,-0.35830775,-0.079257786,0.13165638,0.23086476,0.1532465,0.119323716,-0.27177435,-0.18428114,-0.13468279,-0.126249,0.34655,0.5369584,-0.026842084,-0.3363769,0.2557411,0.49418354,0.2992068,-0.09421124,-0.14778435,0.0451366,-0.5317307,-0.21521465,0.14304039,-0.014888967,0.4549043,-0.011692772,0.2646815,0.88108385,-0.1129201,-0.0043029105,-0.25985658,-0.020863002,-0.31032196,-0.29360422,-0.2135891,0.13282892,-0.46270132,0.03433487,-0.19994788,0.74090534,0.07461201,-0.77134734,0.35133186,-0.40046787,0.21091561,-0.09026541,0.5701679,0.5274553,0.37028125,0.30434912,0.8271747,-0.42048213,0.23706673,0.044057477,-0.49814537,0.018194573,-0.2776487,-0.031391017,-0.49940482,0.16666107,-0.18656382,0.13566124,0.01641448,0.31529242,-0.42643538,0.06615036,-0.008223648,0.7940639,-0.36249736,0.019632995,0.67448914,1.0245522,1.1536119,-0.023602068,1.0721549,0.31621838,-0.29257527,0.15351163,-0.39069524,-0.81549877,0.17984128,0.39090794,0.2386146,0.3046892,-0.074751504,-0.1199429,0.38002247,-0.34494588,0.21422234,-0.13478418,0.30276546,0.1672443,-0.1342198,-0.40686128,-0.22715619,-0.046255548,-0.12363793,0.009070686,0.1387319,-0.21266747,0.46107334,-0.091296844,1.5417448,0.025380688,0.1439151,0.0789836,0.63306534,0.13475668,-0.18560962,-0.018698514,0.3601628,0.6091566,-0.21539068,-0.72691345,0.16639759,-0.46381408,-0.5325278,-0.13954698,-0.46142414,-0.10920782,0.1702124,-0.3625423,-0.24430753,0.0644238,-0.13574803,0.37485796,-2.7478256,-0.0020947712,-0.21927688,0.1659664,-0.29525417,-0.015995055,-0.020388031,-0.5540218,0.23789361,0.30636984,0.46063447,-0.50039554,0.36926594,0.44380093,-0.3922399,-0.137239,-0.52265155,-0.08497478,-0.046048455,0.53515226,0.015358827,0.02120271,-0.118792124,0.07217654,0.6745013,0.03356712,0.052977808,0.49437025,0.45513654,0.22675455,0.5243924,0.123854876,0.5237289,-0.46410993,0.008520271,0.25586042,-0.26782933,0.3747823,-0.14932348,0.09625198,0.49638605,-0.33191353,-0.8147173,-0.55954796,-0.22117174,1.120051,-0.36520848,-0.43080944,0.27664828,-0.06834758,0.06111825,-0.1089291,0.4108799,-0.19879425,-0.024612894,-0.54119676,-0.029790554,0.029981265,0.16150062,0.07251926,-0.22866781,-0.34713033,0.8374595,0.04718705,0.55794084,0.25242904,0.21571429,-0.1167761,-0.3149422,0.13342023,0.644949,0.3086584,0.00042573042,-0.056664467,-0.26021636,-0.014866139,-0.3226927,0.01779354,0.5042094,0.7848772,-0.0008695317,0.1764417,0.31168064,-0.115488715,0.026116926,-0.06662672,-0.21898225,-0.16101313,-0.0016137192,0.37200624,0.5914224,-0.07829898,0.3590831,-0.21499448,0.40168673,0.031519704,-0.48065308,0.66441196,0.48335868,-0.10657482,-0.020421525,0.37035123,0.52742684,-0.36664635,0.45044366,-0.5592405,-0.22185062,0.78911585,-0.25508013,-0.34846374,0.07525538,-0.20988779,-0.008975893,-0.8748679,0.32400328,-0.29559666,-0.31934005,-0.5608548,-0.19370532,-2.9268432,0.14791854,-0.27736762,-0.28356436,-0.26540396,0.04918207,0.24596827,-0.6977142,-0.43531147,0.14661372,0.20051436,0.53243023,0.056562778,0.16767003,-0.19863394,-0.08059518,-0.18715377,0.14169803,-0.10966783,0.24478748,0.03840689,-0.4835053,-0.07622155,-0.10460248,-0.46509483,0.2388192,-0.43371707,-0.37932992,-0.17576131,-0.47338057,-0.20791177,0.5494309,-0.13504067,-0.078419104,-0.15781014,0.076997496,-0.3333351,0.13296254,0.09909684,0.13025856,0.0916791,-0.22676301,0.14968427,-0.40381032,0.45164922,-0.023557918,0.502063,0.19846003,0.018048795,-0.027296407,0.4171631,0.58933884,-0.18884508,0.7000634,0.36310843,-0.1114807,0.27635622,-0.23043594,-0.17886463,-0.50393134,-0.46832463,0.08321706,-0.31905106,-0.60245323,0.025894072,-0.3426996,-0.80675507,0.458332,-0.054836012,0.2716739,-0.053552125,0.043087672,0.3162117,-0.054099288,0.031056331,-0.14519426,1.673294e-05,-0.45299548,-0.3514828,-0.72625,-0.50366104,0.017567528,0.9000638,-0.23142245,-0.24661115,-0.120025635,-0.52747613,0.16320345,0.028562482,-0.023408918,0.3956023,0.23634101,-0.059358228,-0.83229536,0.6326032,-0.037176125,-0.0036530814,-0.47199112,-0.05158576,0.4543331,-0.6046268,0.42344126,0.21668676,-0.07110716,0.053431112,-0.49959216,-0.2429019,-0.023357451,-0.05302855,0.35597134,0.11085337,-0.642574,0.52445424,0.18980435,-0.65509593,-0.72981936,0.01834336,-0.009940088,-0.15509626,0.031087061,0.2379228,0.011336118,-0.049900908,-0.35120177,0.22468947,-0.40285987,0.31244844,0.18558793,-0.048012502,0.16824579,-0.07948717,-0.27158326,-0.6068755,0.14481388,-0.32893124,-0.08801484,0.38798285,0.10137405,0.014612721,-0.045613054,0.120967984,0.3738814,-0.29074317,0.07887083,0.08320541,-0.32459053,0.27543232,0.39729112,0.34024128,-0.46666166,0.48112875,0.10920621,-0.1529858,0.26548287,-1.7327922e-05,0.30228087,0.26173395,0.26750946,-0.21598446,-0.12844504,0.4873866,0.8013421,0.1182156,0.44176954,0.01642601,-0.24671271,0.4956427,0.061435733,0.15094955,0.09584254,-0.36400038,0.01455835,0.14648299,0.08525523,0.50884515,0.2433039,0.4189012,0.16096891,-0.12212513,0.060233466,0.24626768,-0.046865735,-0.90351456,0.3852791,0.2631967,1.0086001,0.45947555,-0.0054527437,-0.08299659,0.7309547,-0.22848736,0.10997225,0.29037422,0.046416175,-0.64275306,0.7363599,-0.41340858,0.5115319,-0.22991626,-0.14497897,0.22584817,0.0422132,0.27204555,0.61541337,-0.21856959,0.040717084,0.045364317,-0.2911617,-0.0794716,-0.45175728,0.12912855,-0.37880176,-0.4228428,0.49238747,0.44590157,0.30559614,-0.06255399,-0.045815382,0.073008336,-0.19509937,0.21244301,-0.03997951,0.01156391,0.14684065,-0.5622011,-0.11568773,0.5203573,-0.20530227,0.23050955,-0.18351777,-0.43482283,0.025673198,-0.33726048,0.0054796166,-0.025645414,-0.73152786,0.27335736,-0.05536325,-0.4032228,0.30590492,-0.12858866,0.2210987,0.2673361,-0.04108003,-0.2316417,0.15079619,-0.03682853,0.9800099,-0.10682945,-0.1785651,-0.39756337,0.008556326,0.28588328,-0.25835642,0.25921172,-0.352515,-0.19809367,-0.46631208,0.6255454,-0.120714806,-0.28514585,0.15778217,-0.35382462,-0.1255095,0.6131607,-0.14164506,-0.06838103,-0.15179434,0.028747106,-0.29935667,-0.040259693,-0.46505097,0.21241881,0.25439796,0.11890073,-0.10455453,-0.22791182,-0.06397077,0.61502373,0.052262187,0.45832896,0.16580431,0.017018646,-0.39709908,-0.03530798,0.09114029,0.45160505,0.40203327,-0.031024547,-0.50619274,-0.40608764,-0.25214577,0.17436896,-0.17142531,0.17255302,-0.012099503,-0.5343799,0.67419726,0.12471894,1.1796815,0.07435506,-0.2682785,0.13707116,0.7039991,0.02919341,0.17847136,-0.4764177,0.80347425,0.48157534,-0.1231919,-0.052456833,-0.3915331,-0.12563004,0.48276207,-0.3260544,-0.0894307,-0.027770098,-0.49882063,-0.40144306,0.13177307,0.16600016,0.11797074,-0.027132476,-0.20312516,0.029493853,0.16728476,0.45520404,-0.59421176,-0.22881718,0.10966711,-0.0067919726,0.010660452,0.2423736,-0.5255612,0.3935822,-0.6716536,0.25465393,-0.35416332,0.16782019,-0.114274554,-0.24437895,0.14683327,0.11112511,0.39895454,-0.48940882,-0.40890646,-0.030775683,0.5334707,0.093581446,0.4120002,0.6454372,-0.31355783,0.053425353,0.19000602,0.5157475,1.0695826,-0.47424215,0.010222725,0.29795986,-0.45315364,-0.5920973,0.46462682,-0.19562927,-0.16950472,-0.25291905,-0.46115202,-0.4446876,0.33614537,0.17167845,0.06288476,0.065435946,-0.55565536,-0.21645486,0.40666658,-0.29069665,-0.29666367,-0.37891316,0.22001283,0.6279747,-0.344738,-0.3119209,0.20040672,0.20271356,-0.23457642,-0.40698725,-0.12061463,-0.30901903,0.44463915,0.071328856,-0.13071159,-0.34207192,0.12757112,-0.38557485,0.17803478,0.11315055,-0.37086058,-0.07083393,-0.09137906,-0.019794613,0.77709913,-0.2501981,-0.07115529,-0.68612474,-0.310322,-0.96656644,-0.5082361,0.591718,0.16706443,-0.10716641,-0.568371,-0.02151914,0.009475359,-0.06875884,-0.09509381,-0.53605247,0.35035962,0.10875831,0.3725967,-0.20772323,-0.7282391,0.21359552,0.089257576,-0.20928761,-0.49784002,0.6382292,-0.12386227,0.81938475,-0.02413169,-0.12698577,0.024474518,-0.36080912,0.18430792,-0.43623856,-0.29220745,-0.5388913,0.12611896,782 -531,0.39091012,-0.11636824,-0.4014001,-0.18871556,-0.37841293,-0.0983501,-0.09823801,0.3748882,0.36555624,-0.15340805,-0.20513098,0.0064895046,0.13619402,0.14026658,-0.06652969,-0.65629137,-0.1297238,0.30005744,-0.7170468,0.38750553,-0.53293127,0.19669044,-0.122376986,0.50115174,0.044844992,0.38726002,0.122304134,-0.1126393,0.039866336,-0.0032789537,-0.15323064,0.22739877,-0.6111785,0.16086873,-0.21747361,-0.15016745,0.059372634,-0.4279247,-0.3295227,-0.7850169,0.2357144,-0.87167454,0.56255525,-0.08222695,-0.10819919,0.08663761,0.118691094,0.17828345,-0.33769038,-0.12542666,0.22538784,-0.12756601,-0.20780577,-0.32545117,0.011466933,-0.23344971,-0.3496928,-0.006539366,-0.31389815,-0.24503134,-0.23801433,0.11603914,-0.26564398,-0.008321605,-0.20897582,0.5755096,-0.3602357,0.22906156,0.24083368,-0.2944077,0.09843209,-0.4956612,0.18460009,-0.071153365,0.42433408,0.03516319,-0.26340145,0.30959585,0.20310314,0.42490512,0.18726662,-0.26090777,-0.18265955,-0.08950509,0.028325865,0.3516685,-0.11016774,-0.45862502,-0.077195026,0.055735346,0.034369834,0.24572375,0.008103341,-0.26903012,-0.029807866,-0.20336078,-0.013564242,0.69211245,0.4713904,-0.096950255,-0.36307183,0.2507981,0.6353168,0.2281679,-0.09431505,0.003212307,0.0021689555,-0.4599943,-0.2761945,0.041461054,-0.09751882,0.385264,-0.22627297,0.14247595,0.7520181,-0.08529244,-0.13716047,0.21834376,0.08435876,-0.012726264,-0.39125243,-0.13654287,0.22014956,-0.55709743,0.058674414,-0.18603276,0.6946557,0.19197345,-0.66155523,0.5444789,-0.5264598,0.17531672,-0.028070837,0.6164571,0.62196666,0.5574204,0.31546813,0.70183355,-0.4684915,0.23499237,0.02198167,-0.52080846,0.046561897,-0.1661789,0.2517046,-0.39612085,0.13695128,-0.2965561,-0.0916394,0.074084945,0.056450482,-0.48894247,-0.17214313,0.18079117,0.8183479,-0.26685384,-0.19250892,0.7237801,0.96545845,1.0078434,-0.0129823135,1.25056,0.23564489,-0.16801073,0.16935842,-0.1920497,-0.93715316,0.18309481,0.22619393,0.10086234,0.12065267,-0.006559274,-0.008478497,0.24732466,-0.39972326,-0.054760538,-0.13622051,0.53274673,0.17830369,-0.02785595,-0.39310932,-0.20422485,-0.09885653,0.010499767,0.168874,0.2696217,-0.19190499,0.27300447,0.08497377,1.3485546,-0.010901486,0.069159836,0.124313034,0.52370137,0.28745237,-0.059927948,-0.07867141,0.44424003,0.33936858,-0.040524933,-0.63201916,0.2407223,-0.23888513,-0.3516914,-0.11409458,-0.3423427,0.008070179,0.05596742,-0.3446445,-0.38219234,-0.2011056,-0.26180965,0.44946855,-2.7689137,-0.19432923,0.03864032,0.37542576,-0.27957937,-0.14628972,-0.064880915,-0.57270193,0.13324286,0.12604408,0.51382124,-0.66155094,0.4839247,0.48668405,-0.71620464,-0.15657131,-0.6851978,-0.13566135,0.092550695,0.38959855,0.11229811,0.051092084,-0.3196249,-0.0020505276,0.5208183,0.11017933,0.15949087,0.54560244,0.4205069,0.1254634,0.47954997,-0.047364943,0.63010126,-0.38049555,-0.09105118,0.30346897,-0.2689715,0.22140865,-0.21266249,-0.032284103,0.5949212,-0.38670993,-0.80328995,-0.58034766,-0.20285846,1.0450137,-0.15127014,-0.4282394,0.2663315,-0.43529096,-0.069857016,0.06171512,0.48492032,-0.14365622,-0.09296974,-0.6675696,0.06930464,0.0034797415,0.22738746,0.02733864,-0.07334037,-0.33292645,0.6719106,-0.08630691,0.5064663,0.20893179,0.15340456,-0.18240286,-0.3013511,0.10538171,0.51733357,0.30456248,0.06879421,-0.13930298,-0.18723895,-0.06581014,-0.07081501,-0.21692549,0.7165204,0.7205235,-0.22379184,0.1480231,0.3999037,-0.06733451,0.054500896,-0.19640985,-0.27948868,-0.11078866,-0.06948798,0.34790722,0.81342274,-0.2887588,0.33911362,-0.2072411,0.3788218,-0.009018281,-0.54362303,0.66160816,0.5116828,-0.21875954,-0.059763882,0.34380987,0.44386554,-0.49178806,0.45573848,-0.4876307,-0.11411565,0.50827926,-0.18858293,-0.4761048,0.11478709,-0.14158837,0.070463784,-0.63276356,0.33220598,-0.37643552,-0.59465253,-0.40664718,-0.07876209,-2.6334844,0.19804703,-0.23518206,0.023263456,-0.43392205,-0.09788726,0.12025566,-0.4008376,-0.6594776,0.16334297,0.18365975,0.5104449,-0.077307224,0.23589066,-0.16648963,-0.15509751,-0.3403502,0.1802278,0.10900202,0.2096323,-0.11255833,-0.3974362,-0.11590973,-0.03605057,-0.41559342,0.22639953,-0.6423386,-0.29169002,0.039963,-0.55965906,-0.18939056,0.5643341,-0.2859102,-0.04916122,-0.37627771,0.053429116,-0.23327824,0.16058563,-0.0153052015,0.14779197,0.059650753,-0.09733778,0.053564243,-0.18740462,0.4147286,-0.141958,0.3110464,0.066874266,0.10091322,0.10783938,0.27604643,0.8330482,-0.13170591,1.0320705,0.3427399,-0.043144464,0.38510847,-0.210336,-0.47851682,-0.40306714,-0.18648939,0.0731711,-0.36250004,-0.29310223,0.17916822,-0.45197186,-0.7540516,0.4607792,0.071957774,0.25887305,0.083673,0.08908266,0.5236212,-0.18453439,0.14855807,-0.059806645,-0.10579351,-0.5994099,-0.17283419,-0.4376964,-0.42071542,-0.088114016,0.9026499,-0.29102865,0.09132665,-0.028341817,-0.27782372,-0.022404347,0.17659414,-0.09738462,0.38724682,0.5351183,-0.11216299,-0.61250913,0.35039705,-0.04230846,-0.16186813,-0.4684171,0.25722128,0.54453516,-0.74431485,0.70387065,0.25767884,-0.026449624,-0.23950389,-0.55411434,-0.36413437,-0.06178931,-0.12141435,0.40599802,0.23915865,-0.9283477,0.4664312,0.40480846,-0.36305556,-0.7227998,0.1629401,-0.041930046,-0.3244464,-0.15529148,0.2984101,0.021741867,-0.07272528,-0.22301184,0.14937215,-0.2954608,0.2033527,0.02541407,-0.09230258,0.092365764,-0.08687762,-0.2992733,-0.7964445,-0.16582206,-0.44914407,-0.27000934,0.17644612,0.03437569,-0.029093772,0.05507353,0.13655089,0.4532109,-0.24003531,0.08242129,-0.055830438,-0.3997293,0.22541033,0.34344217,0.44411802,-0.45752105,0.44778094,0.035842996,-0.18157962,0.16332221,0.105903015,0.3308349,-0.045347717,0.3402601,-0.03568968,-0.009964307,0.29008156,0.8986437,-0.014888125,0.43032926,-0.12081764,0.039144795,0.60222596,-0.03355672,0.29857635,-0.033046193,-0.49019456,0.1501175,-0.15566477,0.21925819,0.49425572,0.3453572,0.34750667,0.07516842,-0.300404,-0.15432985,0.19664751,-0.023396948,-1.1915476,0.44445714,0.21034661,0.9641946,0.42345312,0.09325911,-0.14182474,0.80405796,-0.1035161,0.24090706,0.41178486,-0.05294209,-0.33197862,0.5981234,-0.5949971,0.35743645,-0.13223705,-0.1842546,0.20436427,0.14883144,0.25972328,0.7781266,-0.28134456,-0.03189934,-0.086530015,-0.12034964,0.1144229,-0.36569905,-0.037753556,-0.39469284,-0.4233469,0.58315516,0.4601424,0.26146647,-0.2529783,-0.03632949,0.061007712,-0.047190282,0.16287933,-0.047971506,-0.11918598,0.17544906,-0.47927102,-0.10118238,0.5488483,0.1461169,0.120000705,-0.27129027,-0.18421146,0.108633205,-0.23554964,-0.12765215,-0.15733527,-0.662103,0.1447048,-0.054795083,-0.3588218,0.48420253,-0.027524425,0.0372688,0.20139514,0.0143170785,-0.17882249,0.33897406,0.07237581,0.7088279,0.08880717,0.015970655,-0.4740286,0.20215723,0.19529973,-0.20840658,0.062173247,-0.37623698,-0.044597704,-0.43110222,0.5311798,-0.065502845,-0.4089397,0.20979951,-0.21010126,0.08131782,0.5803768,-0.08496751,-0.15162863,-0.090322375,-0.15539987,-0.41596976,-0.103174224,-0.2293708,0.3128681,0.3190914,-0.18291856,-0.1974239,-0.39009863,-0.27476507,0.5583073,0.07076285,0.36007348,0.18731894,0.036574095,-0.09819467,-0.014580724,0.1627717,0.54534096,0.14509235,-0.08657237,-0.25343525,-0.21807925,-0.19004975,0.24105383,0.010645202,0.17935666,0.03895681,-0.25348905,0.6483798,0.17281607,1.105098,0.03940838,-0.16832717,0.13673699,0.52881104,-0.06802253,0.012288502,-0.54835755,0.79341686,0.37967572,-0.08076812,0.030227793,-0.4284099,0.04587111,0.25360963,-0.27794415,-0.05660928,-0.06671286,-0.4990215,-0.23123562,0.23172317,0.1276996,0.14439295,0.018713921,-0.06196808,0.026657883,0.08481329,0.4376076,-0.5257694,-0.15655603,0.1302147,0.16726455,0.026532887,0.17557652,-0.29973707,0.34343424,-0.59542036,0.136521,-0.38579777,0.08576916,-0.3172307,-0.3148666,-0.037142508,-0.050640214,0.3089722,-0.29446468,-0.47679403,-0.19799384,0.28410244,0.17848226,0.23031954,0.5558484,-0.24169865,-0.0052518314,0.22428575,0.65997505,0.7814253,-0.15814862,-0.043140743,0.273686,-0.3875707,-0.5938869,0.48148173,-0.18861456,-0.09360405,-0.08603001,-0.1969907,-0.4509131,0.17279008,0.24698544,0.01777884,-0.01990907,-0.66983944,-0.118577935,0.32898453,-0.20711124,-0.1599898,-0.18281339,0.24738148,0.74767536,-0.17298838,-0.30180734,0.0906424,0.13899772,-0.2413613,-0.4785377,-0.10570471,-0.37640795,0.32531217,0.09793835,-0.2632206,-0.14979677,0.084455915,-0.50118864,0.10823153,0.1143809,-0.27284724,0.1857682,-0.16918333,-0.009707336,0.8165325,-0.28508538,0.068076506,-0.49264178,-0.51958364,-0.83888286,-0.24748246,0.16612825,0.18815207,0.0021782687,-0.62768346,-0.13230935,-0.09403313,-0.1691806,0.18368004,-0.4558063,0.3996131,0.04886531,0.4084747,-0.22996648,-0.9599782,0.1240016,0.22151402,-0.24396612,-0.55461806,0.55161893,-0.044117175,0.7499735,-0.031315763,-0.0716359,-0.07379014,-0.29011515,0.018044386,-0.3831062,-0.15001388,-0.5376583,0.10346864,784 -532,0.14054893,0.06729384,-0.44531268,-0.10247876,-0.077098556,0.20363688,-0.112527,0.40741414,0.17723076,-0.31647044,0.018470641,-0.09752679,0.0015962124,0.34368795,-0.07541207,-0.39237425,-0.046570618,0.12940148,-0.53009623,0.5123261,-0.3551456,0.12356619,-0.17355211,0.39376453,-0.028398527,0.26763448,-0.006383794,-0.11887999,-0.16327105,-0.15372394,0.10952229,0.37825987,-0.51486886,0.056291055,-0.28000388,-0.26320085,-0.06420195,-0.31928822,-0.4916577,-0.56371725,0.21722928,-0.7135194,0.43488815,0.23677275,-0.19700535,0.3686321,0.17295538,0.2297581,-0.033728667,-0.1357137,0.16435285,-0.11985638,-0.001506056,-0.18598168,-0.29925418,-0.5920457,-0.61600965,0.03722865,-0.54139024,-0.18657161,-0.20128444,0.09859376,-0.19743206,-0.1289028,-0.1723155,0.35068575,-0.4638734,0.070158206,0.16134325,-0.16265205,0.19443342,-0.43474856,-0.19783469,-0.06511496,0.24189267,-0.20324533,-0.060157843,0.22084484,0.15942876,0.404524,-0.24159907,-0.08205072,-0.37978426,-0.077625476,0.25947446,0.43545744,-0.34079245,-0.36701843,-0.048578538,-0.059444714,-0.059043758,0.054607768,0.026472261,-0.15604898,-0.055158466,0.061843853,-0.16932002,0.5229116,0.39116526,-0.4037954,-0.369352,0.38173643,0.525001,0.2086353,-0.34815937,-0.18498819,0.047739368,-0.44196683,-0.13408576,0.09714009,-0.18602021,0.41120392,-0.055401307,0.16001524,0.549779,-0.17711513,-0.061423074,-0.027592035,-0.094244465,0.124082096,-0.1131152,-0.11113421,0.25014114,-0.2611951,0.15332112,-0.16737078,0.5272584,0.019466281,-0.6731402,0.36104897,-0.69727314,0.036049444,-0.015777767,0.41568178,0.5529831,0.38556352,0.1310228,0.47589016,-0.15361245,0.061889905,-0.0020813984,-0.15262246,0.09147058,-0.299815,-0.078754164,-0.49591208,-0.029717615,0.026550794,-0.14215954,0.06946214,0.39334986,-0.5020805,-0.13910505,0.3938497,0.92940533,-0.19505776,-0.17540535,0.5000731,1.0483782,0.77894646,-0.048247986,0.92559046,0.1046627,-0.27763873,0.3330891,-0.3707964,-0.72750765,0.18815246,0.20079765,-0.11739842,0.30162773,0.09352321,0.15275313,0.3252015,-0.3626019,0.19374405,-0.15389837,-0.11287493,0.20253031,-0.0058556623,-0.26973468,-0.1344588,-0.115929775,-0.1460173,0.24958505,0.22180966,-0.2477181,0.26973853,0.061466448,1.3904747,0.014306584,0.1147782,0.15561175,0.5598945,0.09124548,-0.10856698,-0.14756487,0.4522446,0.21329705,0.2224655,-0.40775055,0.26610562,-0.20004381,-0.5305934,-0.20379564,-0.3820073,-0.15350987,0.0655205,-0.48536536,-0.0471823,-0.021766694,-0.31331402,0.38993493,-2.9025338,-0.08466838,-0.09764361,0.38467497,-0.16014542,-0.19915397,-0.28455606,-0.31612545,0.23919964,0.30011296,0.3606971,-0.52882814,0.4835196,0.45950052,-0.4701437,-0.15673581,-0.4656934,-0.14070383,-0.061713453,0.38651133,0.06882522,0.13256733,0.26184392,0.2690424,0.2668322,-0.097442694,0.12244094,0.17098565,0.37485832,-0.013459883,0.41386846,-0.06992168,0.48181802,-0.32399982,-0.24891853,0.3285753,-0.41199192,0.33235198,-0.11154699,0.16657685,0.25583452,-0.33548334,-0.90069515,-0.48001117,-0.19436793,1.3120085,-0.19057207,-0.3418476,0.122580394,-0.44863877,-0.42496854,-0.16148522,0.53243536,-0.10086838,0.10304059,-0.76151854,0.0936206,-0.2518119,0.2759182,-0.0020577523,0.13843797,-0.44665474,0.53432995,-0.025589813,0.41912094,0.28912994,0.17938717,-0.3463851,-0.4637246,-0.12816696,0.7383142,0.15265466,0.0836317,-0.12322174,-0.3281162,-0.27163607,0.074395895,0.122750305,0.5813762,0.38249794,-0.020765692,0.015283831,0.23216584,-0.04929849,0.059941106,-0.19905035,-0.28624955,-0.017210888,0.001431414,0.439344,0.5425634,-0.30480686,0.37677225,-0.017134795,0.29353556,-0.2683759,-0.31121683,0.33562046,1.059364,-0.12048088,-0.1929324,0.5813746,0.61134803,-0.3278931,0.32365972,-0.60670394,-0.32502905,0.40541735,-0.22465384,-0.4042599,0.18652143,-0.35029227,0.1516079,-0.94780576,0.24515319,-0.32434773,-0.38439152,-0.6018016,-0.062128115,-3.7412703,0.16096167,-0.1465058,-0.18353598,-0.11070112,-0.017957244,0.21445915,-0.4631179,-0.48401532,0.06727901,0.088188164,0.49122503,-0.1566278,0.09673776,-0.362822,-0.32059446,-0.06426927,0.3629698,0.25795585,0.34633043,-0.18423054,-0.54120237,-0.012542435,-0.14898147,-0.3077425,-0.032931503,-0.52889293,-0.3567093,-0.030993741,-0.51063865,-0.1262795,0.6448507,-0.5011864,0.006722857,-0.2723187,0.014602693,-0.0045137745,0.24060278,0.15203443,0.15519246,0.12885895,-0.031967137,0.046748523,-0.26021123,0.29947996,0.040413387,0.38305804,0.38561532,0.117646806,0.12346904,0.65201885,0.48438302,-0.004975387,0.8376098,0.50208694,-0.07377105,0.26003915,-0.3255956,-0.14545654,-0.5134381,-0.26826215,0.03601824,-0.3375335,-0.5973993,-0.06420663,-0.22402573,-0.7425667,0.5339941,-0.17224848,0.01682915,-0.06283651,0.29689178,0.47108263,-0.18438026,0.0041717803,-0.0706618,-0.10981028,-0.43599877,-0.2754051,-0.49207592,-0.33964792,0.091703735,0.93973583,-0.13869019,0.116516896,0.047538675,-0.2596024,0.0055908635,0.20587336,0.2053013,0.24462591,0.5002378,-0.06462653,-0.55337113,0.34243724,-0.1922358,-0.07514548,-0.5957287,0.24962112,0.5327752,-0.64962643,0.6080263,0.4570798,0.023321854,-0.1972045,-0.45097628,-0.18987314,-0.046311993,-0.12997441,0.22560486,0.11294281,-0.769055,0.2897276,0.17722093,-0.35443154,-0.6937642,0.7282134,-0.07709152,-0.24448732,-0.022297055,0.31682613,0.027093993,-0.073973216,-0.1407622,0.37874287,-0.22620907,0.13981542,0.14572635,0.01351807,0.24857377,-0.23248653,0.054989737,-0.7413479,0.13635308,-0.46825442,-0.31193453,0.52184,0.03189988,0.106576264,0.3246673,-0.14074369,0.22903578,-0.1629405,0.037575193,0.006051355,-0.32925743,0.35530323,0.24543817,0.54418254,-0.46826833,0.43590754,-0.024903717,-0.10444355,0.16185568,0.066784635,0.50721467,-0.08995664,0.45983595,0.14171025,-0.160776,0.16455613,0.8905238,0.3278854,0.46034935,0.025069613,-0.1344597,0.2807189,-0.041429736,-0.030281832,-0.16858919,-0.55750865,0.0022278854,-0.056793004,0.18261804,0.2947071,0.024369821,0.18985412,-0.22236228,-0.26199088,0.029369112,0.3151138,0.21533254,-1.0887288,0.28681812,0.18514027,0.7486462,0.38384858,0.16977657,0.18235806,0.5901845,-0.2456195,0.095882945,0.44883198,-0.053902593,-0.48126823,0.5169016,-0.6674437,0.5220147,0.046913896,-0.028589372,0.051771265,-0.18326221,0.35102513,0.7416902,-0.19293877,0.005958438,0.18078753,-0.35024714,0.14202984,-0.28207344,0.24520978,-0.48364624,-0.08972001,0.61203945,0.6289044,0.33000892,-0.108369485,0.057829168,0.026218917,-0.0916914,0.088637464,-0.018601907,0.24252574,0.030703578,-0.7514934,0.009331162,0.5629464,-0.11406176,0.12354891,0.16412571,-0.28244555,0.38334805,-0.19854693,-0.08123257,-0.0678124,-0.48530453,0.052369278,-0.21943879,-0.45618486,0.5985847,-0.28406158,0.3759536,0.14249328,0.04649598,-0.37428984,0.41219944,-0.118728705,0.62229604,-0.052467935,-0.117574885,-0.3438707,0.041974925,0.10879891,-0.17254968,-0.12886484,-0.3626011,0.17534313,-0.35799697,0.2287781,-0.17179203,-0.3112889,-0.21421883,-0.07874485,0.12871854,0.59611255,0.10444258,-0.116151996,-0.028396131,-0.008228777,-0.29393202,-0.011717958,-0.06763624,0.1664643,0.16962095,-0.097334936,-0.25197592,-0.28001127,-0.26098016,0.35005513,-0.038169783,0.47875276,0.5026366,0.24617803,-0.16086248,-0.10955219,0.20845763,0.389074,-0.14592631,-0.051105466,-0.111844696,-0.27753407,-0.2849917,0.37267682,-0.1981574,0.23382524,0.27990144,-0.26298815,0.6045324,-0.27116507,1.0075462,0.09565858,-0.31848162,0.15167175,0.36569008,0.055778634,0.015652562,-0.41363505,0.8451014,0.59271187,0.05880622,-0.20047382,-0.2316887,-0.023977509,-0.038436074,-0.16701046,-0.23356196,-0.014108394,-0.5863841,-0.035167508,0.19102894,0.24874744,0.31271315,-0.10308717,0.09602264,0.036372874,0.047949515,0.17816375,-0.4900601,-0.29300728,0.41170666,0.38577127,0.0018210517,0.09877091,-0.3978892,0.3238897,-0.29868957,-0.102836765,-0.2933512,0.11797859,-0.28633884,-0.19450796,0.17305449,-0.07316458,0.37958795,-0.17924477,-0.23699652,-0.23401482,0.28880993,0.18420635,0.04471177,0.49867114,-0.107540466,0.06493995,0.07225578,0.5189489,0.86839265,-0.3024762,-0.1043907,0.2955346,-0.25129032,-0.53790474,0.20935582,-0.48174447,0.28013235,0.0056809997,-0.07179896,-0.44442144,0.26497683,0.10060169,-0.06474868,-0.061005395,-0.59183055,-0.16297889,0.11149107,-0.3358646,-0.22364855,-0.27536863,0.1192384,0.65493786,-0.2517101,-0.17531474,-0.0139255095,0.31790495,-0.1856329,-0.46450573,0.1317642,-0.36838955,0.21031342,0.110157356,-0.433323,-0.09509474,0.054534942,-0.41561562,0.3340092,0.39371258,-0.39940163,-0.04465699,-0.18582214,-0.0067902845,0.8390088,-0.16234848,0.07389535,-0.27424976,-0.434144,-0.8221669,-0.33086637,0.28359616,0.19445112,-0.06616745,-0.41931763,0.110925145,-0.03792606,-0.41185623,-0.0375325,-0.43803033,0.36773926,0.110534675,0.3831284,-0.14307973,-0.7446144,0.09233659,0.0999946,-0.07318391,-0.6137989,0.4435595,-0.18001522,1.0091631,0.023143748,0.14304934,0.28582385,-0.38808537,-0.16705789,-0.11162858,-0.083282426,-0.61992466,0.014626116,786 -533,0.50975907,-0.11692552,-0.5293357,-0.17047611,-0.13866809,0.0058848346,-0.05214997,0.5050312,0.1627084,-0.7788993,-0.22090481,-0.24324703,-0.15015097,0.24681295,-0.23697637,-0.7149329,0.08653508,0.07652952,-0.4898999,0.58813226,-0.43927532,0.3472007,0.1757638,0.3600881,0.09100238,0.33939984,0.17108425,-0.20554471,-0.2918643,-0.21860361,0.029397888,-0.14613667,-0.5765298,0.27113858,-0.20436239,-0.33881196,0.015349252,-0.47063756,-0.38295445,-0.719923,0.3724086,-0.7803485,0.43324462,0.06654156,-0.1879901,0.048024688,0.16820347,0.29635566,-0.2859479,0.07556778,0.2274784,0.16210197,-0.04213079,-0.11062957,-0.1942523,-0.24570899,-0.55681723,0.12971509,-0.35621628,-0.20468815,-0.10191379,0.16313319,-0.2395427,0.12512287,-0.16177991,0.6184974,-0.3514754,-0.11575671,0.39539322,-0.22514793,0.191143,-0.62032986,-0.12122256,-0.15930046,0.12183813,-0.17312945,-0.062395446,0.34104648,0.24419503,0.61507356,0.14364266,-0.22027132,-0.16753975,-0.06862573,0.16392398,0.39264324,-0.15983225,-0.42952397,-0.1317767,-0.06663242,0.15063168,0.121352114,0.24649787,-0.37278193,0.056069504,-0.028581722,-0.3511046,0.24348368,0.5818175,-0.3046384,-0.19694008,0.19707419,0.45105055,-0.0025199908,0.036022417,0.066247895,0.053798348,-0.5029993,-0.28124088,0.16261615,-0.24570341,0.49797276,-0.10252575,0.25209993,0.6329799,-0.19737785,0.18117897,0.19763541,-0.03215782,0.014545091,-0.44137335,-0.37363392,0.08796946,-0.55424196,-0.002359731,-0.29480645,0.9064707,0.2165382,-0.63490635,0.3490711,-0.52222073,0.12430234,0.0029456785,0.44034502,0.5724572,0.36464167,0.15877834,0.7944568,-0.501622,0.018598905,-0.24113014,-0.26444647,-0.013965478,-0.028504154,0.14156958,-0.27694163,0.054887448,0.022221863,-0.035272088,-0.11055093,0.3872191,-0.50450236,-0.012096643,0.04455384,1.0218127,-0.27235976,-0.066111736,0.7806941,0.9990174,0.94467133,0.06300067,1.4010847,0.15225856,-0.24767883,0.31435612,-0.28428397,-0.7833422,0.3382893,0.33142963,0.15035029,0.12374934,0.11939788,-0.0018544154,0.41287643,-0.43324167,0.2306854,-0.23765548,0.36610684,0.019273186,0.0023380262,-0.33882815,-0.212636,0.0065853777,-0.08378242,0.0911962,0.17177026,-0.20106734,0.10793515,-0.056152273,1.6938541,-0.16353948,0.22109506,0.1525204,0.41056162,0.16718194,-0.0025980857,-0.05669439,0.11839853,0.18960033,-0.04807082,-0.57428056,-0.02213235,-0.31440187,-0.588418,-0.16115357,-0.2503554,-0.066824265,-0.14586213,-0.54613364,-0.1841418,-0.1192465,-0.33715126,0.26971164,-2.4717238,-0.2727642,-0.2078805,0.40051433,-0.48050764,-0.38019404,-0.12236003,-0.47349593,0.63583034,0.36965227,0.45249534,-0.6074747,0.5165248,0.4580066,-0.33056858,-0.1285825,-0.58023626,0.014299742,-0.010678725,0.1197407,0.0046854233,-0.28449315,-0.23324992,0.01982024,0.45819637,0.0065326607,0.07877922,0.3195011,0.30991656,0.20918195,0.5352067,-0.040831707,0.59871584,-0.4857834,-0.05773457,0.17955919,-0.4900671,0.15230717,-0.036566652,0.15796518,0.30897936,-0.7226906,-0.64045817,-0.7911715,-0.50961155,1.1468792,-0.05686425,-0.2584893,0.3674585,-0.34952587,-0.1923753,-0.11215441,0.4999182,-0.034931753,0.032576554,-0.7699366,-0.05876842,-0.18783246,0.24832503,0.05008898,0.10118626,-0.41034573,0.7709738,-0.098529264,0.4257742,0.43170017,0.061180804,-0.26472247,-0.39848927,0.093203254,1.1962986,0.42809242,0.21040048,-0.057553887,-0.16253488,-0.46864393,-0.19900724,0.023996463,0.40342483,0.8011611,-0.0070158592,-0.06307125,0.33940682,0.06310104,0.041152116,0.057900656,-0.4889855,-0.2929084,-0.07204299,0.6025847,0.45124266,-0.20512426,0.3391406,-0.24258687,0.42052084,-0.34130576,-0.31387076,0.5017776,0.7207632,-0.20567785,-0.22551247,0.5951156,0.43352604,-0.341163,0.4883997,-0.52476823,-0.41670594,0.34509033,-0.08221625,-0.50277174,0.14427672,-0.3097871,0.12974916,-0.95282567,0.36712056,-0.43125767,-0.36968654,-0.45773724,-0.4390128,-3.2004466,0.17827842,-0.2455268,-0.10012285,-0.15294848,-0.0532338,0.1352872,-0.39946073,-0.71435964,0.13779533,-0.016241524,0.5869871,0.06389095,0.22310843,-0.11026677,-0.13780704,-0.34743047,0.12809269,0.11938788,0.24087487,0.09783204,-0.35081053,-0.13037094,-0.15268545,-0.4021748,0.22375838,-0.6906144,-0.5837864,-0.22909093,-0.6939722,-0.33100125,0.7890101,-0.34480256,0.039908856,-0.16183722,-0.0368902,-0.20821384,0.4660031,0.06895518,0.17617784,0.0018673709,-0.14992833,-0.24059217,-0.3544895,0.13415283,0.18364432,0.44835705,0.37326166,-0.1683127,0.23226707,0.39544398,0.70797664,0.062000982,0.6433247,0.3331574,-0.150852,0.43300954,-0.36463112,-0.27159458,-0.38588265,-0.19001244,0.06598985,-0.3153791,-0.42185697,0.12719129,-0.45869273,-0.7572569,0.3657972,0.08548762,-0.16575935,0.09409727,0.08366007,0.29043484,-0.08796732,-0.007345659,-0.0637845,-0.038180728,-0.6079572,-0.3673349,-0.5790556,-0.38364896,0.16725568,1.1182457,-0.07619517,-0.061260086,0.08007058,-0.15917332,0.09852187,-0.0977759,-0.005753317,0.052575674,0.4967479,-0.028392782,-0.63077307,0.42720464,-0.052699387,-0.2861076,-0.4191554,0.20528446,0.74542713,-0.7520198,0.65699065,0.3746808,0.20134732,-0.1273722,-0.37774298,-0.13255082,-0.043827005,-0.22593285,0.25984085,0.096793994,-0.6708251,0.378865,0.3926542,-0.079636745,-0.940729,0.34173578,-0.034583855,-0.2220563,-0.0753241,0.42753455,0.06323827,0.029598773,-0.09817753,0.11844719,-0.4869248,0.18199025,0.3329978,-0.06976154,0.5298743,-0.32488665,-0.33890727,-0.6536909,-0.06761438,-0.5973421,-0.20523693,0.28671572,0.07977707,-0.04355496,0.21826942,0.28393903,0.36822838,-0.19648282,0.17254011,-0.0222787,-0.1780598,0.2901238,0.3938538,0.4982357,-0.49273023,0.5716659,-0.08369116,0.080426775,-0.058613654,0.107012615,0.35215896,0.0906923,0.2915232,0.010428599,-0.06840728,0.3200108,0.86412245,0.089109294,0.37586194,0.3161645,-0.10581218,0.31463462,0.048336793,-0.064872004,0.10143936,-0.63956517,-0.032650203,0.08352069,0.1680951,0.3580207,0.26107392,0.29063362,0.026566116,-0.2544865,-0.1609181,0.20972826,-0.22621533,-1.1392004,0.38090086,-0.044877227,0.68666905,0.6614981,-0.016774535,0.091391094,0.49589437,0.028232131,0.18459912,0.3038988,-0.14929655,-0.46238786,0.585506,-0.48189014,0.3808879,-0.056324255,0.09328209,-0.10679169,0.0267588,0.45934194,0.77829045,-0.009104869,0.014472229,-0.18677013,-0.14239372,0.117667265,-0.501143,0.16112624,-0.40613085,-0.30095625,0.6702355,0.29083037,0.29728583,-0.122221895,-0.024126291,0.06938639,-0.13344558,0.17153871,-0.05153767,0.048482187,0.10107458,-0.70079315,-0.35489306,0.5626208,0.07917883,0.2313665,0.05388731,-0.23588657,0.20240544,-0.079664886,0.03033254,-0.060892317,-0.7789992,0.12750828,-0.49807468,-0.31005648,0.0136986505,-0.11390873,0.14630137,0.11214953,0.0572361,-0.46931097,0.43437353,0.08513581,0.6086605,-0.18782915,-0.22703484,-0.34068537,0.13475677,0.103597865,-0.32307985,0.0649853,-0.24838401,0.0803601,-0.7557623,0.5143868,0.046902206,-0.23307474,0.20828438,-0.21108885,-0.11511774,0.4721624,-0.27548048,0.09882649,0.13922183,-0.22635235,-0.13981219,-0.105667405,-0.0512671,0.2875856,0.1693293,0.13484795,-0.027764788,-0.24111596,-0.047463376,0.43310338,0.065500334,0.29321882,0.34799448,0.15999267,-0.3891957,-0.13958414,0.21779525,0.4850335,0.13365045,0.01406005,-0.20724252,-0.30213246,-0.2007635,0.3155844,-0.111553386,0.2546219,0.09862816,-0.41612196,0.8517538,0.2628387,1.2134138,0.16743697,-0.21768458,-0.062497284,0.40492648,-0.036229964,0.0066154557,-0.4428399,1.0277885,0.59634143,-0.2090967,-0.14283219,-0.3999191,0.008240665,0.08201234,-0.18183987,-0.111558795,-0.1167239,-0.60163635,-0.38221362,0.15749903,0.32223433,-0.009000452,-0.056275282,0.13648184,0.1080644,-0.100375734,0.27231595,-0.5944757,-0.05033367,0.30953708,0.24079034,0.19687316,0.16040985,-0.5196161,0.37215176,-0.75199604,0.20326032,-0.107131235,0.04609446,-0.024614343,-0.29638427,0.19645707,-0.003962491,0.48129153,-0.47472268,-0.4043432,-0.24203208,0.52850676,0.12630782,0.23524117,0.754838,-0.19461264,0.010319607,0.16795754,0.69322693,1.0756661,0.0062741637,0.1821537,0.22224352,-0.2838355,-0.58809745,0.27320462,-0.22935155,0.03419286,-0.015199618,-0.30063632,-0.5055738,0.29790777,0.29276854,-0.12312678,0.21919183,-0.64496714,-0.3613276,0.28600278,-0.1806409,-0.3139722,-0.2948219,0.06315061,0.7917655,-0.17807555,-0.08843793,0.16076374,0.22320403,-0.33350942,-0.60234034,-0.19353214,-0.40120402,0.24068461,0.19255951,-0.23951538,-0.18474199,0.041235857,-0.39400902,0.046806436,0.06673279,-0.35286644,-0.04158586,-0.25860688,-0.1740394,0.73826694,0.25111204,0.1742947,-0.5633016,-0.45641655,-0.9353289,-0.38237882,0.4833216,0.07375564,-0.039125305,-0.525955,-0.19123156,-0.0846642,0.07237071,0.12679806,-0.38118872,0.42690706,0.1336336,0.5075613,-0.058636438,-0.720388,0.0492728,0.21634623,-0.18644105,-0.60602,0.3099307,0.044051927,0.81791884,0.05424143,-0.07374648,0.22388557,-0.6552787,-0.03650189,-0.29435852,-0.21617153,-0.6566308,0.12140579,787 -534,0.5505423,-0.124898486,-0.8009405,-0.116383836,-0.30202913,-0.05959567,-0.29485917,0.3360742,0.28757665,-0.6028103,-0.2778553,-0.07249951,0.016135503,0.15756293,-0.15376909,-0.55652356,0.12888853,0.15755741,-0.54633415,0.5590571,-0.2500852,0.22512701,0.048255794,0.3125611,0.35669592,0.16009557,0.1357729,0.1350005,-0.13366456,-0.11129924,-0.257343,0.42345232,-0.48119298,0.19128473,-0.37037554,-0.40819055,-0.10008204,-0.46247503,-0.44816345,-0.7881313,0.2881793,-0.9472621,0.52041996,0.203717,-0.27635422,0.097096086,0.26298466,0.20202538,-0.08755718,-0.0024880213,0.14483581,-0.22494146,-0.02691139,-0.23083429,-0.25494638,-0.50733024,-0.5427062,-0.12052274,-0.6178163,0.03825003,-0.18524384,0.10529502,-0.27181557,0.089568496,-0.08481775,0.38624382,-0.38966912,0.002652147,0.30472156,-0.12047969,0.31907728,-0.6064361,-0.334251,-0.08213407,0.26303202,-0.07928161,-0.4353954,0.37233403,0.13898374,0.40871602,-0.11365002,-0.23925366,-0.20983885,0.021834794,0.033749633,0.44046047,-0.16633256,-0.3997245,-0.20043118,0.021899303,0.36974865,0.12132641,0.14958902,-0.0891907,-0.09888693,-0.08461495,-0.04943615,0.40334558,0.65849143,-0.23147483,-0.075973935,0.36536422,0.5627995,0.25492984,-0.27255574,0.05811911,0.067467675,-0.5538241,-0.18471768,0.040115323,-0.1955792,0.653262,-0.09986903,0.25869092,0.5108944,-0.14512525,-0.09967911,0.13306883,0.15640792,-0.032113057,-0.19551982,-0.33298627,0.3599516,-0.44196722,0.052458517,-0.25890788,0.5668087,0.17145464,-0.5396272,0.24675386,-0.40617222,0.016608147,0.020275533,0.56139034,0.8509698,0.46959662,0.36454085,0.88895035,-0.339684,0.09110247,-0.121306166,-0.19801275,0.049361076,-0.2160981,0.13461486,-0.48508045,-0.03262448,-0.08765269,-0.09487634,0.29945654,0.6787066,-0.4579475,-0.23425578,0.23209509,0.7745565,-0.23707184,-0.11205702,0.7697091,1.023109,0.9949961,0.107232675,0.69806594,0.1363878,-0.2529811,-0.10171716,0.045298755,-0.79160315,0.2549163,0.23774716,0.33901212,0.4637956,0.20121503,0.17284457,0.33148694,-0.6000818,-0.00024483885,-0.024098685,0.26899308,0.09619497,-0.05131683,-0.41627645,-0.10951496,-0.13831888,0.09128022,0.036650773,0.24364528,-0.14327969,0.58540046,0.052138563,1.4668483,-0.10436293,-0.07385606,0.055008896,0.4882248,0.32025665,-0.35281345,-0.07345254,0.27792192,0.37140366,0.006023556,-0.48467588,0.014729607,-0.2464594,-0.32529026,-0.23585626,-0.300452,-0.13671055,-0.087522484,-0.49022,-0.23297386,0.0148100015,-0.31332216,0.4069015,-2.7521365,-0.002567699,-0.15083702,0.3979961,-0.17197552,-0.28888455,-0.41580242,-0.5314675,0.32607192,0.2792941,0.3430355,-0.6541597,0.34830442,0.2821507,-0.4823432,0.028931051,-0.62418145,-0.07509009,-0.06920239,0.31480488,0.18853569,-0.048020296,0.10583472,0.49615654,0.47275084,-0.072544016,0.14074832,0.3146856,0.44442698,-0.17860472,0.3936933,-0.073626205,0.47669607,-0.40022984,-0.1908251,0.3479684,-0.43078694,0.23998941,-0.17315893,0.11520662,0.63626105,-0.39971337,-0.9267043,-0.53153867,0.1675481,0.9733075,-0.27390596,-0.52301604,0.12694225,-0.51193666,-0.34869453,-0.108641505,0.5501896,0.01573191,0.045207877,-0.7382002,-0.21550891,-0.10693837,0.20439278,0.015444815,-0.19945505,-0.48105577,0.75087154,-0.027007908,0.5545498,0.23136576,0.20013665,-0.30121157,-0.45700377,0.15925609,0.83653694,0.34093553,0.16616358,-0.32815623,-0.13205853,-0.41526383,0.09305449,0.22361673,0.70691663,0.6478257,-0.11620132,0.16544667,0.2973102,0.11846528,0.0010264824,-0.20652226,-0.32626957,-0.14005052,0.014004214,0.6291556,0.88557446,0.046982672,0.2863598,-0.003912053,0.41291884,-0.25431773,-0.54376894,0.42559725,1.0846791,-0.08791105,-0.40112755,0.6073035,0.48652723,-0.108585,0.45188555,-0.6777466,-0.5798555,0.32261685,-0.0840772,-0.3653985,0.2157522,-0.4668927,0.27888635,-0.77815735,0.32570806,-0.093408026,-0.56983215,-0.6687962,-0.26699293,-2.2663817,0.18768324,-0.12050552,-0.14482518,-0.025433153,-0.32648388,0.3543007,-0.63355505,-0.55966467,0.27785563,0.07850697,0.8246865,-0.10637235,0.05233897,-0.21784727,-0.4421723,-0.2203801,0.23146972,0.14739601,0.33479545,-0.03929001,-0.5139808,-0.002706298,-0.17367622,-0.30526406,-0.03860597,-0.3815897,-0.54977936,-0.21753515,-0.364021,-0.13325833,0.46128336,-0.39601496,0.052407224,-0.26058328,0.049581368,0.1124798,0.13390045,0.13898708,0.2524783,-0.12246609,0.030951725,0.14737631,-0.19837978,0.22863005,0.10980115,0.21052179,0.31075272,0.009311383,0.09193263,0.63057137,0.56549907,-0.22841112,0.997582,0.57285863,-0.009173967,0.23471521,-0.01894064,-0.47778484,-0.6717868,-0.1889348,0.16634174,-0.56748515,-0.29678705,0.022188922,-0.4412772,-0.9501315,0.4553256,0.08118425,0.30399483,-0.028662745,0.35030976,0.46362478,-0.2716883,-0.050389443,-0.028301239,-0.22825047,-0.576924,-0.49433678,-0.58351326,-0.32872328,-0.021546151,1.2135618,-0.3218378,-0.032165658,0.20647337,-0.20852146,0.21985236,0.3056313,0.015361643,0.044182647,0.66487354,-0.07330416,-0.60487205,0.39935666,-0.3276126,-0.13862972,-0.7897552,0.10114295,0.42674428,-0.6343924,0.48576736,0.32958004,0.04840518,-0.36763552,-0.6451555,-0.20423968,-0.07725768,-0.30135137,0.5260153,0.3660922,-0.75078285,0.39577428,0.075339116,-0.32837865,-0.6657893,0.5972509,-0.109191224,-0.25152826,-0.19647422,0.26056555,-0.078827925,0.07989155,-0.19987117,0.05128425,-0.35468554,0.22550821,0.30826902,-0.033199977,0.03045559,-0.3728716,-0.14140446,-0.7638608,0.019575652,-0.59994125,-0.2698753,0.30393368,-0.024741128,0.16590276,0.1639559,0.10212271,0.26747563,-0.43328005,0.18625522,-0.24744044,-0.31938633,0.4367061,0.458504,0.5645001,-0.47956318,0.6346877,0.008058356,-0.26129338,0.0143590765,0.0463232,0.2712567,0.034832884,0.45309454,0.06317418,-0.14476745,0.1345708,1.0409094,0.15866731,0.34121528,0.119976535,0.006075927,0.17606314,0.12677003,0.24290672,-0.04881421,-0.59269506,-0.21223143,-0.4559458,0.12268913,0.38031432,0.06226184,0.33315513,-0.072313026,-0.25236988,0.021119084,0.17627229,0.15636584,-1.4211547,0.20232372,0.22679749,0.81630605,0.38515133,0.08469465,-0.03601771,0.6032415,-0.11948967,0.10814888,0.21984462,0.015006934,-0.26647797,0.390312,-0.57933635,0.47756758,-0.117964424,-0.024159823,-0.15864809,-0.0047187083,0.58924276,0.9120975,-0.25481105,0.12274854,0.12766007,-0.3114317,0.22703089,-0.35257646,-0.020340877,-0.7426793,-0.37563255,0.8373093,0.5454674,0.6064722,-0.10905258,-0.060073785,0.07434196,-0.12799251,-0.021392746,-0.02642573,0.10801261,-0.19328375,-0.7494639,0.02303026,0.5778282,-0.06894032,-0.018647121,0.11123909,-0.21817435,0.28414157,-0.038458895,0.16117807,-0.05265857,-0.793811,-0.088562295,-0.41662994,-0.6326632,0.65713584,-0.12333636,0.24847999,0.39804262,0.05281685,-0.1670139,0.32565275,0.008584755,0.76360375,0.0803218,-0.110812984,-0.542134,0.2243575,0.1828941,-0.2596219,0.045107525,-0.2343812,0.42353323,-0.54276377,0.5926898,-0.13041915,-0.17283355,0.06165961,-0.14669248,0.012011269,0.6455277,-0.10271154,-0.09737504,0.11199536,-0.077888764,-0.33183223,-0.21216698,-0.2551886,0.25233504,-0.09568528,-0.11658184,-0.12279367,-0.020331552,0.022330487,0.22560653,0.14087658,0.3734569,0.45190972,0.08781497,-0.30010244,0.024385989,0.1106276,0.70056915,0.034240626,-0.30391103,-0.34092695,-0.674941,-0.454803,0.30098337,0.030979216,0.2423902,0.1176952,0.1785331,0.7342389,-0.04056246,1.0434793,0.021844791,-0.43357378,0.115465835,0.590172,-0.05277794,-0.04408403,-0.3344478,0.7653319,0.4192131,-0.055984788,-0.056683917,-0.34219098,0.19489741,0.1743498,-0.14743601,-0.16509959,-0.08603437,-0.7228275,-0.07351637,0.12595785,0.2878618,0.25358006,-0.12850952,0.2731838,0.32259855,0.09189411,0.12584446,-0.6806523,-0.1700323,0.35514817,0.19297767,-0.043225866,0.07181378,-0.42940018,0.35983396,-0.36604792,-0.2801755,-0.37688494,0.11910469,-0.033464063,-0.43087196,0.2520953,-0.006000783,0.35038525,-0.67801696,-0.092950486,-0.35461935,0.4825314,0.12266326,0.17178318,0.41941684,-0.14862238,0.005916191,0.16466045,0.49950585,0.9870418,-0.39173713,0.05773283,0.5100974,-0.35737464,-0.5153699,0.2623026,-0.54074186,0.19665082,-0.085756786,-0.36569384,-0.6263858,0.25335968,0.17064519,0.13413924,0.14571527,-0.75650203,-0.16079462,0.0906593,-0.3001657,-0.22551052,-0.32257876,-0.012332133,0.38490424,-0.15190561,-0.19877471,0.010298086,0.30724528,-0.08807467,-0.4747377,0.10423194,-0.32455763,0.3906193,-0.008294902,-0.25446677,-0.24357714,0.0011466166,-0.4932533,0.20007889,0.12455739,-0.26923832,0.027190868,-0.3823557,0.15509346,0.90156156,-0.27162316,0.121603474,-0.38076243,-0.493311,-0.9142311,-0.32257292,0.19692217,0.10415138,0.0045895004,-0.63514423,0.08526581,-0.15424375,-0.11080396,-0.1832948,-0.33147508,0.5780945,0.13102129,0.4164071,0.034385916,-0.86107236,0.19688967,0.012190791,-0.22860429,-0.34714645,0.54937017,-0.054626398,0.9125004,-0.019756619,0.10262574,0.21942234,-0.54125345,0.3900322,-0.26468077,-0.0016852234,-0.6591162,-0.053744316,792 -535,0.3943848,-0.075661555,-0.31394693,-0.11549943,-0.2104052,0.029265484,-0.040196445,0.47963363,0.2718353,-0.34441897,-0.018977718,-0.22953394,-0.0129863005,0.34718508,-0.1727217,-0.40141827,0.08673942,0.09827705,-0.37685043,0.45595106,-0.46622306,0.27376273,0.060022585,0.41663414,0.050473668,0.16822791,0.2620592,-0.14109941,-0.07230126,-0.20161486,-0.18752098,0.11142201,-0.29434922,0.09620006,-0.086420886,-0.35306817,0.05339257,-0.46183172,-0.23404782,-0.70269126,0.3649211,-0.61599505,0.4115315,0.14966525,-0.27101314,0.35064584,0.20601474,0.25451308,-0.14296076,-0.11519536,0.14393617,-0.03447777,0.028618727,-0.1561593,-0.18943235,-0.2686675,-0.46937233,0.0536365,-0.3559524,-0.21682642,-0.27042666,0.15158708,-0.26216573,-0.12766072,-0.006483163,0.5481164,-0.35580257,0.037408773,0.14565839,-0.20792672,0.3170618,-0.4240625,-0.19579104,-0.03084812,0.18520157,0.0058594174,-0.1570957,0.22265598,0.30123493,0.48946592,-0.17307116,-0.092338376,-0.39984432,-0.08543644,-0.060608957,0.6140519,-0.19563568,-0.53746617,-0.05322531,-0.084372945,-0.035240848,0.15813576,0.14813401,-0.21122113,-0.1604419,-0.065673895,-0.3035639,0.35588712,0.36968246,-0.41148618,-0.24472547,0.2936325,0.44297233,0.0604732,-0.13335893,-0.06475308,0.078460954,-0.5715175,-0.0892192,-0.05396344,-0.25004286,0.43300152,-0.17544007,0.44706184,0.63609254,-0.044235785,-0.07075335,0.16347568,0.0846426,-0.0625069,-0.20576112,-0.1862749,0.23234548,-0.41663882,0.028266728,-0.18130676,0.85660183,0.07162015,-0.72389126,0.40255246,-0.46397564,0.10885346,-0.13651182,0.41357726,0.61202174,0.2596251,0.33590665,0.676061,-0.4531974,-0.042863376,-0.04261067,-0.28965324,0.029511413,-0.044698834,0.089715295,-0.49731636,0.0003234148,0.14995345,0.014063435,0.19725738,0.18127096,-0.48099712,-0.0715787,0.3268898,0.8698268,-0.185095,-0.08207505,0.6200748,0.97688115,0.84389085,-0.03732517,0.7560269,0.11694968,-0.1643958,0.3191655,-0.3324133,-0.5277799,0.26397377,0.32722092,0.2719726,0.034952324,-0.04950159,0.0014024632,0.36771232,-0.2800017,0.023143062,-0.13802065,0.06413395,0.3245562,-0.13299909,-0.38315317,-0.42137548,-0.03989774,-0.004112584,0.105988406,0.23814045,-0.2866478,0.26360133,-0.14434111,1.6088047,0.037491255,0.13218017,0.13665105,0.62191284,0.18832915,-0.018371332,-0.09063117,0.25227922,0.2241977,0.07693737,-0.5136828,0.132886,-0.20407331,-0.5651793,0.00706657,-0.31022057,-0.1649972,0.055541765,-0.4816101,-0.110173285,-0.095078364,-0.40172395,0.551752,-3.098613,-0.21615745,-0.0055507272,0.22011276,-0.24663387,-0.18789856,-0.17122276,-0.4300792,0.34758124,0.44583383,0.4813641,-0.67431027,0.27617565,0.44431728,-0.4710957,-0.13187973,-0.556254,-0.10532357,-0.09429581,0.18386401,0.17198303,-0.002838056,-0.082188435,0.23053493,0.58941686,0.09813773,0.08965169,0.23253112,0.2537065,-0.023660276,0.38241106,-0.047306087,0.39382505,-0.35230985,-0.15424602,0.21170232,-0.4592987,0.07842906,-0.1669322,0.12478089,0.42099732,-0.39266843,-0.9385342,-0.60456276,-0.10033246,1.1681968,-0.056958675,-0.34101042,0.36195427,-0.24914496,-0.14069273,-0.06829593,0.5664844,-0.04917379,-0.05315555,-0.65448374,0.13413377,-0.0987523,0.16759412,-0.0042617777,-0.16175464,-0.3419726,0.70015174,-0.04957372,0.4672921,0.31317848,0.12169839,-0.42257574,-0.3351957,-4.1921223e-05,0.6408539,0.2758973,0.18375464,-0.1325859,-0.060818274,-0.40076664,-0.011429416,0.053754605,0.43025154,0.61013573,0.0033132222,0.118063495,0.26616284,-0.015524566,0.0018703894,-0.0972694,-0.20790277,-0.026857296,0.0111859385,0.5381519,0.63170254,-0.17080142,0.30080628,-0.056922354,0.28097725,-0.34949926,-0.3844954,0.5577551,0.61947125,-0.12683132,-0.22718604,0.59006685,0.40010232,-0.21775453,0.29279107,-0.55727863,-0.32492894,0.43095022,-0.16408578,-0.4362421,0.04817995,-0.29584584,0.10168517,-0.7021025,0.2594247,-0.16936652,-0.36590648,-0.43335444,-0.0991691,-3.642319,0.24521582,-0.20765492,-0.19918837,-0.033410754,-0.04324208,0.053476878,-0.51765645,-0.4362065,0.041316193,0.14861374,0.6953045,0.009230288,0.114709,-0.20259826,-0.25533316,-0.28173342,0.104266,-0.11485378,0.35505685,0.1462696,-0.35664257,-0.029259602,-0.1629843,-0.4683923,0.095234476,-0.52579784,-0.38872358,-0.112360306,-0.4380024,-0.3663734,0.5932728,-0.38267472,0.1356927,-0.27107129,-0.050546475,-0.09455078,0.44165295,0.20711836,-0.027057394,-0.086253405,-0.054496985,3.786385e-05,-0.16159037,0.25968677,0.009868233,0.21699236,0.42252937,0.028215805,0.15506402,0.54031575,0.58881253,-0.086928196,0.82130563,0.3038366,-0.07511777,0.25855628,-0.25682458,-0.15664218,-0.32548282,-0.20204616,0.053822864,-0.28614178,-0.41260883,-0.038722724,-0.31715065,-0.6784882,0.44895414,0.006765952,0.122316994,-0.0570043,0.22792159,0.45636687,-0.30599812,0.034406953,-0.005416649,-0.03899457,-0.5096431,-0.3102667,-0.5748147,-0.34128568,0.13360159,0.8217602,-0.19453064,0.077601574,0.027097987,-0.08208938,-0.1099785,0.052883502,0.0660665,0.16303699,0.248752,-0.24576737,-0.59480506,0.4723261,-0.20555861,-0.16638903,-0.42952982,0.13400266,0.5167946,-0.50526893,0.4638125,0.2818085,0.14286351,-0.19785678,-0.4861989,-0.23909487,-0.00070455245,-0.22289072,0.29686812,0.14983037,-0.7519681,0.39046416,0.32649544,-0.140677,-0.66437244,0.33127072,-0.02928311,-0.5369881,-0.17559573,0.25963244,0.27476358,0.07439295,-0.075333044,0.1521004,-0.49589697,0.12084186,0.07315935,0.015583977,0.45284867,-0.2546487,-0.14441206,-0.5986094,-0.12919591,-0.40817195,-0.27552307,0.12420569,0.19859235,0.13892889,0.32066685,-0.10561466,0.24492535,-0.2730877,0.09445041,-0.056721736,0.02681051,0.3440707,0.38029233,0.5068343,-0.41470376,0.636984,-0.050854106,-0.07884868,-0.04582824,-0.0725851,0.33986703,0.07281488,0.4263428,-0.22211833,-0.28687,0.35328746,0.66129386,0.17321506,0.32071003,0.00043603778,-0.078588195,0.27736303,0.014898293,0.10024665,-0.043218702,-0.42875388,-0.04237338,-0.34866244,0.1583979,0.43334523,0.07095319,0.24759957,0.051391516,-0.29940215,0.10190316,0.16502444,-0.11901432,-1.1072206,0.41561314,0.1669759,0.8038503,0.5157138,-0.053165358,0.024255501,0.8479185,-0.12463276,0.21003577,0.2072152,-0.02059418,-0.53743196,0.6787041,-0.6272119,0.46560726,-0.094859995,-0.069583386,-0.051720712,-0.06325381,0.34532136,0.47617748,-0.07845022,0.04537922,0.06030794,-0.36937648,0.11052386,-0.32170707,0.20739324,-0.6345092,-0.20121157,0.5438443,0.4890303,0.2011524,-0.22612718,0.023618756,0.02285355,0.037181694,-0.031248672,-0.11975794,0.093279906,-0.1532962,-0.67620575,-0.04257426,0.552826,0.03716026,0.17322595,-0.015642107,-0.15719365,0.18207777,-0.16451423,-0.11145481,-0.10515077,-0.5375486,0.02983648,-0.20655538,-0.4266723,0.47684377,-0.21981654,0.36832073,0.123856656,0.041626785,-0.2371142,0.30366114,0.13940266,0.46586213,0.01587786,0.07486869,-0.24100105,0.11440692,-0.017424421,-0.21103773,-0.23514833,-0.27663484,-0.033989597,-0.4519351,0.34251496,0.03601765,-0.2091786,0.027403219,-0.12286501,0.098309316,0.5809794,-0.012578837,-0.108033605,-0.1859916,-0.23913105,-0.24545571,-0.04864051,-0.09350791,0.37114885,0.04028431,-0.13916834,-0.055116635,-0.15456775,-0.18040256,0.3928414,-0.084133364,0.3313742,0.23720257,0.10520983,-0.30729872,-0.018323822,-0.021868851,0.42522594,0.007477671,-0.116127275,-0.2734193,-0.32360655,-0.2828782,0.14462626,-0.09251416,0.27145562,0.13790396,-0.1780219,0.78123146,0.045471344,1.0071462,0.029358605,-0.2264845,0.05365092,0.3139383,0.041621305,-0.016709464,-0.29560876,0.7380596,0.4538097,-0.10963211,-0.15139784,-0.20351478,0.12310589,0.23545375,-0.17644887,-0.17467014,0.056430068,-0.6178303,-0.221025,0.20016594,0.19591291,0.25553873,-0.14287536,-0.06486074,0.2470536,-0.014778295,0.39095837,-0.41514298,-0.10144241,0.2869031,0.41603425,0.0818795,0.091846004,-0.38965273,0.40356913,-0.54228556,0.057733234,-0.346279,0.20859767,-0.34777233,-0.22733645,0.16228984,0.170045,0.36679772,-0.13399622,-0.3529909,-0.18720962,0.44178706,0.23852985,0.09546037,0.40574726,-0.15971112,-0.1193004,0.0566527,0.5092173,1.0019741,-0.29315105,-0.13329752,0.35667023,-0.20741044,-0.6448316,0.28941864,-0.26812765,0.13205849,0.063675635,-0.09900997,-0.4487365,0.31367776,0.28456205,0.16105373,-0.032795098,-0.45888704,-0.32220456,0.36564854,-0.2502659,-0.22562933,-0.33935574,0.10854819,0.49532455,-0.11022605,-0.19740532,-0.0025135023,0.373931,-0.23549278,-0.5683722,0.18811755,-0.34864935,0.35481718,0.18297611,-0.29337624,-0.23413499,0.06862808,-0.530345,0.15096545,0.106174305,-0.28439608,0.13354768,-0.35874945,0.031990346,0.8663401,-0.101877026,0.24846375,-0.45463568,-0.39696822,-0.8414776,-0.3093259,0.59162056,0.024583116,-0.036267273,-0.57198876,-0.09989377,0.0011571987,-0.21274118,-0.12120167,-0.25587264,0.38118312,0.071168706,0.29852238,0.040630687,-0.5762995,0.0665984,-0.029085595,-0.1968204,-0.48148608,0.35623506,0.08509113,0.8791257,0.062267993,0.015551686,0.37983724,-0.31139827,0.034248747,-0.19207093,-0.24041693,-0.5660847,0.15625156,794 -536,0.25804704,0.18375205,-0.61238045,-0.048184726,-0.22579108,0.09379627,-0.25830474,0.37647682,0.31153706,-0.36594114,0.20861535,-0.16284975,-0.08170707,0.2048539,-0.14794643,-0.38361424,0.11772569,0.19699161,-0.34009764,0.5388423,-0.37194154,0.24481368,0.19944046,0.32592422,-0.16109465,0.089221835,0.080787025,-0.21702139,-0.17086084,-0.40153164,0.011862227,0.09634183,-0.6315025,0.08654975,-0.33636945,-0.13666034,0.20014443,-0.5059008,-0.29831147,-0.7087711,0.14011966,-0.64662164,0.67659885,0.043622762,-0.32234785,0.40222624,0.23022914,0.16175935,0.060785897,0.07282738,0.3566952,-0.46780038,-0.3498452,-0.2749517,-0.18618187,-0.36040905,-0.49462208,-0.1725215,-0.49775288,-0.122046575,-0.3847703,0.21156332,-0.3712396,-0.099641,-0.20368405,0.35736153,-0.30590242,0.2781971,-0.09549354,-0.29792503,0.29208705,-0.6023854,-0.08089999,0.11579657,0.17156795,0.040685125,-0.19636394,0.25617164,0.13150509,0.3740601,-0.16948555,-0.18462166,-0.22227128,-0.028070148,-0.039671797,0.6471879,-0.31248918,-0.13182941,-0.10224606,0.007008461,0.28251323,0.28949302,-0.20684126,-0.16333118,-0.016397651,0.010297273,-0.33161178,0.44428185,0.5010682,-0.15033697,0.106587596,0.3713221,0.12310854,0.36057588,-0.06848506,-0.014486213,-0.16116036,-0.48201078,-0.06787061,0.03889374,-0.030077858,0.40252998,0.054116454,0.34985605,0.6529316,-0.11200071,-0.1065368,-0.012491842,0.21841688,0.32227793,-0.12480136,-0.14483438,0.3759794,-0.59986305,0.16558209,-0.21674332,0.5898584,-0.22277525,-0.68157446,0.26597264,-0.42787367,0.021628339,-0.053932764,0.55391955,0.637737,0.8187346,0.081800155,0.87478626,-0.48581335,0.13412525,-0.14545593,-0.32211375,0.30720732,0.043189492,0.38933375,-0.39739186,-0.028922996,0.08917611,-0.16883005,-0.014785303,0.40743,-0.4448596,-0.15128973,0.1524491,0.82019347,-0.2547466,0.078983195,0.60345894,1.0296732,0.6823243,0.10125642,0.850484,0.13900958,-0.048466653,-0.13720696,0.084714904,-0.7878814,0.2280319,0.27178988,0.21278028,0.057544358,0.21475472,-0.17161763,0.27643606,-0.27020907,-0.448925,-0.094552435,0.4143137,0.0023947316,-0.055020917,-0.40855008,-0.3489025,0.0982586,0.15081933,0.29311207,0.15998194,-0.23338784,0.2893987,-0.024370287,1.3357402,0.012854372,0.13544852,0.15861486,0.30334815,0.22512658,0.14899799,-0.10989874,0.38815212,0.20880279,0.136143,-0.40275973,0.031797577,-0.100334525,-0.4994118,-0.016108867,-0.26731828,-0.14253572,-0.19518168,-0.3306151,-0.1540428,-0.11506103,-0.4045436,0.36328813,-2.879739,-0.08378373,0.04797232,0.43358773,-0.06064767,-0.25625253,-0.11565709,-0.29508573,0.61536986,0.2712778,0.5368199,-0.42048174,0.2684246,0.4297245,-0.53263795,-0.29706553,-0.56377584,-0.043940306,-0.013829662,0.3441573,0.009780535,-0.34408256,-0.14023645,0.051485043,0.5163508,-0.042665046,0.10857566,0.3428812,0.4646091,-0.10900546,0.42338377,-0.2594529,0.46685305,-0.21407714,-0.085914716,0.18042995,-0.22413948,0.2138222,-0.46864662,0.12614672,0.4817929,-0.22682588,-0.7290756,-0.17587028,0.12704906,1.2709887,-0.27620187,-0.5899369,0.21521063,-0.22937812,-0.25855544,0.16932432,0.61444175,-0.083118275,0.06404734,-0.5513846,0.03283661,-0.084475674,0.275123,-0.025890654,0.12529527,-0.5245933,0.50566775,-0.016498659,0.5994794,0.3997003,0.23164037,-0.18747197,-0.24054167,0.10519772,0.69764197,0.3205907,0.093936324,-0.15717152,0.05986579,-0.09090512,-0.20592722,0.022833297,0.6150188,0.6094078,-0.048832476,0.058940947,0.23109804,-0.21788792,-0.025437113,-0.180635,-0.39439657,-0.14301287,-0.107945316,0.45157126,0.65592223,0.11711564,0.42606488,0.06628927,0.20767032,-0.1703849,-0.42353302,0.35112217,0.5428077,-0.23540927,-0.058377713,0.60445726,0.37101963,-0.05821493,0.38829723,-0.55180424,-0.51213175,0.48864564,-0.110505514,-0.6038051,0.29415473,-0.27472374,-0.022912553,-0.6873378,0.18744092,-0.28342932,-0.68779784,-0.5014987,-0.09616019,-3.0052855,0.1055754,-0.28864264,-0.19703965,-0.20240262,-0.12861319,0.18183951,-0.28104106,-0.4560365,0.12838934,0.23680057,0.59539706,-0.16330864,0.05594639,-0.31068322,-0.32799625,-0.11459057,0.2006912,0.045687653,0.110329404,-0.030264948,-0.26008478,-0.143338,-0.12568362,-0.29749945,0.059162933,-0.43742758,-0.2001278,-0.0004217827,-0.41109702,-0.25244087,0.64619356,-0.41844335,-0.025744174,-0.23656188,0.15838686,0.22526683,0.2298418,-0.023234142,0.1537354,0.042850792,-0.07091941,0.074526675,-0.17500547,0.30401808,0.105784826,0.3275518,0.3881107,-0.063273,-0.03077461,0.5049867,0.44475526,-0.07309,0.92735547,0.15646707,-0.019939993,0.2675294,-0.25937322,-0.10886313,-0.47935343,-0.20370086,-0.04799989,-0.33726594,-0.23978105,0.014028736,-0.29181,-0.84024566,0.6289135,0.15736273,-0.07607595,-0.06378708,0.427928,0.4265651,-0.26117155,-0.07356799,-0.053359788,-0.15110552,-0.34494677,-0.16694771,-0.7946177,-0.37852287,-0.18038759,0.83784896,-0.24941316,0.012099688,0.16481106,-0.14700767,0.008484493,0.066634946,0.15108185,0.08555757,0.22736827,0.20432003,-0.752299,0.47379735,-0.35065144,0.019435091,-0.7005523,0.1837662,0.5928556,-0.6923837,0.3122962,0.6095872,0.11085602,-0.23505309,-0.6641827,-0.13421433,0.12710425,-0.23169778,0.2976211,0.077858284,-0.85671407,0.5733576,0.22028854,-0.3038072,-0.7190699,0.3556711,0.008241273,-0.37833923,0.00820443,0.3480087,0.21817777,0.04115658,-0.16498844,0.1907023,-0.3926371,0.53220385,-0.010511756,-0.13546577,0.5498101,-0.11943947,-0.11473997,-0.73070914,-0.025048127,-0.42510763,-0.33296958,0.3186648,0.013096692,0.058673028,0.18634664,0.13962415,0.33717328,-0.4545279,0.05353229,-0.38857314,-0.31521183,0.4852452,0.63215256,0.44437405,-0.32344607,0.59638083,-0.078975014,-0.13270536,0.07636043,0.0656923,0.4157808,0.036169592,0.32273182,-0.11027513,-0.2646722,0.0965459,0.7624522,0.1023407,0.28848404,0.06595634,-0.059107143,0.38294956,-0.011175781,0.1072575,-0.09255916,-0.5770299,-0.10420636,-0.31886545,0.055941846,0.43953663,0.29840443,0.36598715,-0.010642439,-0.12692142,-0.012243445,0.12067743,0.123463646,-0.76106316,0.57528347,0.2409025,0.63972515,0.4452502,0.06751635,0.07537572,0.7276038,-0.039698355,0.033999283,0.18385716,0.04189114,-0.19972023,0.5046132,-0.6684181,0.25492102,-0.07872987,-0.046950005,0.32043788,0.038412947,0.4654273,0.8427057,-0.17556801,0.0743499,-0.072195105,-0.2774065,-0.063783534,-0.17665324,-0.016923467,-0.34026745,-0.42997402,0.70175236,0.33315626,0.24786462,-0.2752393,-0.047785062,0.24885897,-0.10259073,0.2236164,0.11192957,-0.08210679,-0.03374247,-0.5467205,-0.15959,0.47194427,0.15525678,0.08114047,-0.016725043,0.09665977,0.39011267,-0.2087187,-0.14117137,-0.043245245,-0.4664268,0.15499756,-0.40410858,-0.4450477,0.36510995,-0.12751558,0.32357913,-0.0057795444,0.043565784,-0.031567056,0.31998846,0.23673066,0.6755365,0.018026872,-0.33171263,-0.15285002,-0.14237776,0.06355189,-0.22905938,-0.12279214,-0.109590285,0.034293916,-0.6122127,0.27108118,-0.54828554,-0.13848259,0.19209497,-0.19613968,-0.012569906,0.33881754,0.010498515,0.010850315,-0.04384309,-0.3047952,-0.24835308,-0.36354217,-0.38395062,-0.0009525589,-0.1023646,-0.1967783,-0.1601734,-0.02833524,-0.20963581,0.35789734,0.023475531,0.122201525,0.23585963,0.32660434,-0.2310033,-0.030319622,0.080072634,0.6495784,-0.03779947,0.050232615,-0.3219847,-0.2508811,-0.35907888,0.049299307,-0.12734896,0.20455739,0.14485586,-0.19999687,0.8920859,-0.07330114,0.7097691,-0.08471084,-0.33810112,0.0989302,0.5127123,-0.06594594,-0.049475845,-0.3220031,0.88819027,0.5164123,-0.04794664,0.050715547,-0.37076044,-0.022787081,0.3390492,-0.3239523,-0.2002467,-0.10369728,-0.5315135,-0.3145556,0.20174982,0.16660585,0.017332157,-0.19771716,-0.072385974,0.31026343,0.28447118,0.16370371,-0.5128115,-0.031181008,0.40188858,0.22240429,-0.012504228,0.12927999,-0.35186937,0.36509532,-0.47132906,0.13075118,-0.393866,-0.028765019,-0.12204211,-0.065560445,0.16896427,0.08943052,0.2827699,-0.2494118,-0.34453267,-0.07876439,0.16536011,0.24984208,0.21563654,0.46828693,-0.2566144,-0.29405928,-0.13838102,0.5881354,0.90504324,-0.34335133,0.11453043,0.5364448,-0.37613842,-0.5321066,0.07685827,-0.36333615,-0.020544622,0.022135973,-0.30479088,-0.23254299,0.16198006,0.06336071,-0.13840453,-0.18451118,-0.4931539,0.002680523,0.21462862,-0.14488801,-0.2514426,-0.23413923,0.12767425,0.80365,-0.24846628,-0.13548836,-0.043305654,0.31673828,-0.19100149,-0.53589994,0.2055156,-0.50409317,0.21691366,0.019604325,-0.30866736,-0.091843195,0.01596232,-0.63739204,0.068208985,0.058725126,-0.27715755,-0.09571355,-0.30756623,0.19873294,0.6712891,-0.1819711,0.16512842,-0.3609118,-0.5028153,-0.65679073,-0.18063787,0.074448004,0.18634382,-0.023575336,-0.44175383,-0.03679871,-0.22062485,-0.20355244,-0.264928,-0.47812027,0.34410483,0.10856589,0.3575016,-0.34165603,-0.9382868,0.21056321,0.033484083,-0.32803035,-0.34803215,0.3399763,-0.085042015,0.67661905,0.016123964,0.04892545,0.21967462,-0.59130573,0.24879,-0.37324095,-0.18573438,-0.64938277,0.12411226,795 -537,0.39348415,-0.27130333,-0.5668465,0.01961893,-0.22860694,0.08443393,-0.31967053,0.27371386,0.22986843,-0.40932888,-0.12406812,0.056832902,-0.06394507,0.2028928,-0.14981234,-0.5732874,-0.10850907,0.2302024,-0.5367752,0.8402818,-0.14518876,0.18704288,-0.21520294,0.4216493,0.34342545,0.445997,0.06438689,0.095259905,-0.18320605,-0.21838729,0.043986168,0.094892845,-0.7252234,0.41364792,-0.2538253,-0.25629327,-0.02288787,-0.40223822,-0.24155697,-0.83462745,0.4553399,-0.7665078,0.46603087,0.023470402,-0.2138246,0.22470212,0.38761917,0.3666728,-0.18324968,-0.17213818,0.204928,-0.15104331,-0.026269099,-0.36483866,0.12318497,-0.26884976,-0.39406583,-0.124738775,-0.39919725,-0.073300876,-0.41050345,0.27689132,-0.30096006,-0.08646136,-0.2006748,0.4077043,-0.46095565,0.046187755,0.13784729,-0.16156332,0.2319489,-0.7966652,-0.28891483,-0.032859378,0.41713616,-0.025806788,-0.11020112,0.56635875,0.03319826,0.1687497,0.11105324,-0.23393607,-0.37691,-0.12440549,0.28882146,0.43980902,-0.17906234,-0.35910437,-0.20934704,0.0055582267,0.39096302,0.18698673,0.11724293,-0.17491327,-0.009402876,-0.047513165,0.0015419892,0.5303841,0.45478868,-0.1754005,-0.13022254,0.24908319,0.59865564,0.43221325,-0.28026,-0.23278356,-0.09821465,-0.35943922,-0.15145303,0.14317311,-0.13296564,0.4435207,-0.07742249,0.25419375,0.6483204,-0.026961628,0.0061176782,0.12694588,0.29513508,-0.06408744,-0.30884123,-0.3490282,0.3594598,-0.5053857,0.27509445,-0.29964837,0.47795683,-0.02517615,-0.5814866,0.112595275,-0.60397375,0.12442994,0.047321703,0.4629128,0.6466656,0.4182219,0.27726534,0.87262356,-0.32996613,-0.057801735,-0.14106186,-0.25688753,0.0867952,-0.26582232,0.0034412998,-0.4810443,0.09475867,-0.018125935,0.05251606,-0.009727584,0.42691216,-0.5560958,-0.22229682,0.026321685,0.78449523,-0.20884548,0.18137184,0.83322036,1.1044768,1.0701591,-0.030850526,1.0590059,0.032888148,-0.34470955,-0.057716973,-0.22151089,-0.646357,0.21765442,0.44519717,0.1366249,0.4098625,0.15132415,0.0055718245,0.2833953,-0.42864564,-0.11217586,-0.092749834,0.30778044,0.12432616,-0.11339208,-0.37635878,-0.15672038,0.07163368,0.020389998,0.1530536,0.16491382,-0.38549516,0.32821232,0.080586925,1.4721183,-0.14476578,0.009379183,0.17574228,0.48148677,0.2986079,-0.18758371,-0.07390438,0.46456257,0.30428538,0.039958738,-0.5991296,0.14884497,-0.40179372,-0.49137565,-0.07273282,-0.40335554,-0.15483867,0.06367159,-0.20834391,-0.24181819,-0.09282543,-0.18887496,0.33241838,-2.7809956,-0.18225336,-0.15624775,0.32141107,-0.32043776,-0.2111499,-0.10643164,-0.32926384,0.5372152,0.25706676,0.5855909,-0.42063552,0.19061525,0.37114722,-0.83468086,-0.051840927,-0.3833097,-0.0893204,0.0028282541,0.6003627,0.064812854,-0.1980474,0.027195266,0.20284274,0.45586997,0.10832369,0.1399972,0.47477618,0.4047692,-0.2606699,0.51262236,0.078710616,0.44133326,-0.3781999,-0.19486725,0.37394795,-0.37229607,0.3450521,-0.19649765,0.02687803,0.58432907,-0.42882422,-0.79655343,-0.59426117,-0.014266695,1.1209924,-0.25125748,-0.71268874,0.059491422,-0.2361582,-0.15090786,0.030795977,0.42746213,-0.10959422,0.025370207,-0.6970268,0.034845937,-0.21596049,0.13691361,0.113042995,-0.09688587,-0.5997693,0.8704871,0.029193958,0.60592747,0.29346114,0.2562175,-0.41136098,-0.34605047,0.16178067,0.6531252,0.53784186,-0.0134187555,-0.19310151,-0.19021747,-0.07882272,-0.27530897,0.26227733,0.7990832,0.44242457,-0.085451804,0.12668134,0.40134805,-0.042411596,0.034416255,-0.21491513,-0.41887373,-0.25030407,-0.13599642,0.4983041,0.72868127,0.0290397,0.21287759,0.111356,0.18412945,-0.015137881,-0.4184492,0.5806044,1.1392704,-0.090121046,-0.22216518,0.56589824,0.48043776,-0.17835662,0.4962785,-0.7278271,-0.36411503,0.63361996,-0.15869592,-0.39792603,0.0053992653,-0.33981198,0.059498783,-0.6428408,0.23885755,-0.5181219,-0.3883666,-0.76346695,-0.15086487,-2.0505996,0.17852715,-0.34542766,-0.12323655,-0.43207356,-0.2936068,0.09237622,-0.7202934,-0.6960974,0.309324,0.10788181,0.7607215,-0.29685435,0.072498396,-0.24967833,-0.3694578,-0.27038878,0.214414,0.11886484,0.36561778,-0.14356054,-0.2671582,-0.10192519,0.09870599,-0.39330631,-0.096470825,-0.45928264,-0.37812948,-0.16300784,-0.61252457,-0.08530816,0.62111557,-0.3832195,-0.024689777,-0.119974,0.011128415,0.03185243,0.17336631,0.10111647,0.3479602,0.31634745,-0.10943961,0.11543639,-0.23591565,0.4321776,0.13703372,0.29868585,0.27574822,-0.35645154,0.20780718,0.346308,0.6183414,-0.11620114,0.8431998,0.47593468,-0.20247175,0.31156138,-0.4186441,-0.4614124,-0.6777715,-0.2671489,0.16255483,-0.24944428,-0.51205254,-0.24994662,-0.3645129,-0.8089455,0.5775108,0.1732261,0.53681767,-0.11360709,0.21093215,0.3840123,-0.23884585,-0.21273302,-0.060631566,-0.1475906,-0.50483376,-0.17015386,-0.59052986,-0.40760782,0.04791326,0.49229544,-0.40973538,-0.036910675,0.3035764,-0.39188072,0.20712027,0.2004914,-0.077485785,0.0015439646,0.46951512,0.26193622,-0.6232848,0.5100827,0.081319585,-0.13478018,-0.47796535,0.47607926,0.44467172,-0.41552004,0.5290896,0.35022637,-0.04818135,-0.25803936,-0.48708275,-0.04292195,0.032343097,-0.21696089,0.5249379,0.2666077,-0.5752826,0.34232888,0.24766813,-0.3619353,-0.7832532,0.6207776,-0.124157675,-0.28319782,-0.18805334,0.43471867,0.24135992,-0.053304322,-0.05114015,0.38759786,-0.40851212,0.38431475,0.084826596,-0.093203016,0.28644153,-0.17676297,-0.30005425,-0.7943683,0.3432372,-0.69513386,-0.27028742,0.5011576,-0.022906156,-0.18444861,0.18283102,0.2686541,0.38699493,-0.33950448,0.12154931,-0.23551676,-0.29117277,0.34759265,0.47654724,0.54665196,-0.65132433,0.4713157,0.06697367,-0.12504837,0.19545467,0.060253162,0.31581968,0.089168236,0.5828396,0.0087052155,0.010766864,0.032534804,0.46339703,0.18949592,0.42110777,-0.052563723,-0.27166942,0.17110421,0.12070286,0.38531297,-0.07737757,-0.6760821,0.1615072,-0.064642966,-0.033350565,0.5588951,0.36085182,0.14280275,0.077432685,-0.36993426,0.04110023,0.25570458,-0.16285999,-1.3401653,0.6198984,0.29799595,0.91393673,0.57185894,0.041873574,0.20724188,0.7351104,-0.0579249,-0.08069668,0.27873328,0.053033113,-0.5386122,0.4507135,-0.7888484,0.42047754,0.078475185,-0.02834776,0.03270767,0.005957663,0.3867333,0.5341678,-0.22633614,0.0062738187,-0.11647506,-0.31739506,0.18373276,-0.18835472,0.32881862,-0.40091035,-0.37266847,0.63096374,0.44461086,0.363732,-0.16562136,0.13907193,-0.0053445995,-0.22207336,0.33295155,0.06534443,0.131554,0.048204012,-0.6085043,-0.16023609,0.489676,-0.2612213,0.16890994,-0.058220256,-0.1781164,0.2657763,-0.069224045,0.15676615,-0.066371895,-0.7789475,0.34382135,-0.23839809,-0.23917235,0.43919644,-0.028234899,0.13518919,0.19123124,0.100954965,-0.16218928,0.34115934,0.037225835,0.71983045,0.032280393,-0.25274906,-0.4679618,0.16281463,0.1321575,-0.14771912,0.22237675,-0.31367365,0.112221844,-0.5880427,0.4603947,0.0015689901,-0.18387452,0.030806443,-0.18134205,-0.14098585,0.58303803,-0.102453135,-0.17605726,-0.111808844,-0.10546923,-0.25979602,-0.5187319,-0.23807667,0.10060327,0.07921302,0.16386499,-0.3915191,-0.07295629,-0.37908474,0.4847354,-0.014309675,0.29551965,0.24805844,-0.12109702,-0.4614289,0.0054426617,0.310359,0.3399554,0.014014683,0.0702616,-0.27308932,-0.68664616,-0.5809546,0.39685026,-0.028836947,0.3171191,0.121216536,0.012139772,0.78177345,-0.19965264,1.0805161,-0.064140156,-0.3757661,0.10719078,0.67761886,-0.25921923,-0.25667912,-0.28912663,0.9069162,0.63854635,-0.06472283,0.118397966,-0.27042395,-0.055857096,0.15116954,-0.3248603,0.13083705,-0.10532563,-0.46474156,-0.38003585,0.0614497,0.33313295,0.15687962,-0.18835568,-0.15993503,0.31854525,0.15111923,0.2330013,-0.3715994,-0.39777914,0.40471596,0.05367992,-0.05525147,0.08184918,-0.52854735,0.55921,-0.54250413,0.20089915,-0.36496434,0.13069153,-0.31849056,-0.3239007,0.20985487,-0.18679115,0.32350373,-0.38917086,-0.40396315,-0.19181646,0.24933794,0.29842672,0.18052152,0.6204335,-0.38581958,0.17668565,0.030221105,0.43468353,0.6175347,-0.26372716,-0.09980122,0.2305845,-0.56080234,-0.56835467,0.2127271,-0.32393605,0.1404268,0.06671063,-0.2039841,-0.5665404,0.16095306,0.017150087,0.06401921,-0.20471154,-0.9953041,-0.29797754,0.13561673,-0.2293768,-0.13261534,-0.2687857,0.08071203,0.7737755,-0.22203423,-0.4755251,0.1271192,0.05241807,-0.090058066,-0.64485866,0.014127762,-0.49706075,0.44780755,-0.091352426,-0.2894509,-0.29294485,0.17354831,-0.464315,0.22827792,-0.014731811,-0.36002126,-0.057379935,-0.15828678,0.1113488,0.84595996,-0.25865814,0.21769463,-0.42967153,-0.36784825,-0.8928372,-0.33490518,0.050464682,0.15742144,0.08010967,-0.66871583,0.0799111,-0.34320596,-0.024242457,-0.12289583,-0.48352596,0.31655887,0.17019285,0.58334583,-0.31797382,-0.90124166,0.4006088,0.25358304,-0.07330676,-0.4410574,0.41474804,-0.15709583,0.7620386,0.11393036,-0.03373254,0.0184568,-0.59345394,-0.034283213,-0.19991226,-0.18110992,-0.678833,0.10134763,805 -538,0.49451134,-0.19605313,-0.48737922,-0.25508007,-0.4077108,-0.040863402,-0.30086714,-0.023765078,0.19138627,-0.4930157,0.0058543948,-0.2412511,-0.042626757,0.3736775,-0.20715867,-0.60945606,-0.08282937,0.104712166,-0.55456877,0.4802242,-0.49602064,0.26251134,0.23793149,0.39239576,-0.036250357,0.25461242,0.2560229,-0.07201205,-0.16910121,-0.20880239,-0.182111,0.19041674,-0.9950635,0.29728508,-0.2519439,-0.48259902,0.10872696,-0.472786,-0.34268066,-0.7606902,0.18314967,-1.0353569,0.5883222,0.050559305,-0.3287305,0.05104416,0.23652472,0.210578,-0.28795883,0.0617177,0.23540933,-0.4729933,-0.06464111,-0.18236093,-0.1644551,-0.6692957,-0.77987987,0.008707472,-0.67045134,0.0047818804,-0.26259893,0.28270692,-0.37854484,0.02250123,-0.33739778,0.3493854,-0.5937313,-0.07234449,0.07303805,-0.034689743,0.38316494,-0.31164956,-0.16832304,-0.26270372,0.24544416,-0.28035757,-0.26176763,0.3290209,0.26462254,0.6212825,0.05378536,-0.42873,-0.19845462,-0.024726238,0.12943389,0.25619113,-0.047356147,-0.33750528,-0.27770492,-0.058924537,0.2283489,0.39266777,0.086485736,-0.28361896,0.14576264,0.042591352,-0.21781328,0.36925408,0.5183317,-0.4004108,-0.48108783,0.27193254,0.5252821,0.03949815,-0.26490006,0.108898975,0.14213434,-0.49887103,-0.34803414,0.32229665,-0.213963,0.7185956,-0.20340061,0.1266282,0.8124484,-0.32672295,-0.092594504,-0.116923295,-0.24320938,-0.21808288,-0.18269217,-0.17521052,0.37358326,-0.6771153,0.12956937,-0.29512516,0.6536254,0.2197962,-0.83492607,0.32402635,-0.6892933,0.15798895,-0.13767199,0.6797925,0.775438,0.5118937,0.48663542,0.69390213,-0.45019937,0.12416322,0.046594854,-0.52026683,0.20069754,-0.41443625,0.06313624,-0.3406605,-0.097384624,-0.19893172,-0.09159528,-0.25455993,0.44126827,-0.39551464,0.0051790006,0.21749468,0.6537684,-0.35226193,-0.078795485,0.9329285,1.1227233,1.2017481,0.22153656,1.4449538,0.37501785,-0.073714726,0.09063171,-0.020758301,-0.5751718,0.122010335,0.34618074,-0.12022638,0.3489577,0.16321458,0.19247174,0.55754757,-0.45577675,0.037747066,-0.061773684,0.32433048,-0.12776373,-0.0015067969,-0.5864228,-0.27487758,0.095486246,0.012552255,-0.051308326,0.38913473,0.024908384,0.4578968,0.2999112,1.2227075,0.039329905,0.1208112,0.029076593,0.43055853,0.13892333,0.020503355,-0.0055181044,0.20100106,0.30532357,0.12290977,-0.493999,-0.038319003,-0.25511095,-0.4049863,-0.26533937,-0.4238909,0.11463113,-0.3953567,-0.4963522,-0.23967168,-0.0026417163,-0.29061085,0.5490309,-2.181092,-0.23675542,-0.07119768,0.18868221,-0.17610586,-0.31453052,-0.0058364444,-0.6240483,0.33092064,0.293165,0.42299166,-0.7864481,0.50970507,0.5734665,-0.56036764,-0.08823805,-0.8630094,-0.2116981,-0.2051679,0.37783775,0.10836359,-0.30084208,-0.28477877,0.10412566,0.6272548,0.03428682,0.056264903,0.10723199,0.45686626,-0.08788097,0.7904338,0.17223777,0.43737426,-0.311065,-0.16021104,0.5197732,-0.26301995,0.4149776,0.11426942,0.15695974,0.4961273,-0.5719618,-0.97470653,-0.7858301,-0.7483758,1.0745343,-0.42311677,-0.42067614,0.096887484,-0.008452644,-0.2675326,-0.10993768,0.38273492,-0.16462271,0.36185384,-0.775339,0.0049680793,-0.11790674,0.3252326,-0.03133851,0.23768269,-0.5650321,0.69295603,-0.14281203,0.35539323,0.48703414,0.18825948,-0.2459477,-0.5702232,0.1424395,0.9596755,0.39649528,0.072272405,-0.44399843,-0.3841591,-0.009189376,0.00043735333,-0.022167612,0.49063563,0.77883464,-0.18300374,0.026695386,0.45444632,-0.17683746,0.010966857,-0.07191493,-0.26393852,-0.004875958,0.16421212,0.6145769,0.81927407,-0.18421161,0.372977,-0.2354757,0.42906126,-0.030836055,-0.55511814,0.40725332,1.0634869,0.023998683,-0.026310418,0.7544292,0.5219592,-0.45939317,0.6456054,-0.75908834,-0.31746176,0.5209938,0.02593267,-0.50732404,0.03855232,-0.36899862,0.147058,-1.0633787,0.50881886,-0.24790105,-0.40617913,-0.66582495,-0.15868083,-4.060106,0.21430853,-0.12123076,0.01397158,-0.0067865765,-0.29453605,0.5617009,-0.6913494,-0.70828164,0.17319576,0.05303847,0.5132786,-0.17525165,0.1565247,-0.4288797,-0.29260412,-0.34446114,0.4252849,0.36543903,0.14270791,-0.2195269,-0.54189795,0.0048273164,-0.4433303,-0.4923961,-0.088744655,-0.5552999,-0.52055687,-0.039230615,-0.5567337,-0.53585863,0.7467252,-0.23496474,-0.03873185,-0.3326996,-0.030994415,-0.21800444,0.3539067,0.18141238,0.3405049,-0.024491029,0.092766896,-0.28440592,-0.22569095,0.3549203,0.0926255,0.26949948,0.30430835,-0.121156916,0.22989427,0.5531016,0.6248517,-0.08744276,0.9277597,0.26251948,-0.0933386,0.36362246,-0.25141627,-0.45667818,-1.0023059,-0.37619832,-0.17750253,-0.5504947,-0.47753182,0.017297175,-0.34221363,-0.74315816,0.7521557,-0.020508746,0.15065424,-0.29904428,0.23278138,0.3032875,-0.3957913,-0.1046225,-0.17428493,-0.19069825,-0.6079704,-0.5535206,-0.9240891,-0.7003173,-0.1592314,1.179394,0.069536366,-0.13431495,0.17669961,-0.14066984,0.1587064,0.21613714,0.09647149,0.25403523,0.65566903,0.063627586,-0.8032837,0.5386289,-0.03464761,0.014560883,-0.41315344,0.07275777,0.85356766,-0.87909067,0.6705146,0.4339985,0.10004815,0.11006008,-0.7438545,-0.334509,-0.060152233,-0.20500521,0.6986207,0.23144041,-0.85898775,0.45971125,0.1065016,-0.33039004,-0.69246775,0.6490146,-0.008313128,-0.082393646,0.090205334,0.46418414,-0.030063868,0.0547885,-0.08325183,0.37007195,-0.5173628,0.3148759,0.42248252,0.026078152,0.22218171,-0.061835248,-0.19280405,-0.846735,-0.057382457,-0.3738642,-0.41786495,0.08258676,-0.17178832,-0.1311473,0.35894376,0.13661288,0.33494225,-0.27063757,0.13016687,0.0032384333,-0.42527273,0.20290574,0.54194874,0.42267013,-0.5401892,0.80775726,0.18980098,-0.14431214,-0.2497541,-0.043443996,0.36611134,0.09791907,0.22947861,-0.06438511,-0.117293015,0.23899306,0.8672263,0.24925014,0.5456298,0.2407787,0.04620364,0.44127035,0.28003576,0.24330762,-0.043693807,-0.44105104,0.15541434,-0.12427962,0.1251166,0.46783522,-0.02998993,0.2648641,-0.115113206,0.0026048038,0.12917398,0.33858085,-0.17425619,-1.3622313,0.24310783,0.29573536,0.68883187,0.77681315,0.17254843,0.10420469,0.6269968,-0.59754795,-0.10640449,0.43106908,0.18274276,-0.3914345,0.7976695,-0.53733736,0.44862488,-0.06210361,0.04106071,-0.07378994,-0.039603543,0.36186597,0.98628616,-0.17808558,0.2024295,-0.15854406,-0.035487425,0.20514682,-0.4111287,0.12170672,-0.29837343,-0.28234935,0.85398924,0.44906983,0.4200377,-0.20476969,-0.038204405,-0.020705419,-0.21143128,0.29802448,-0.084376685,-0.15342245,0.052283976,-0.5213189,-0.10916003,0.741002,-0.22272049,0.04897984,0.03065088,-0.46615025,0.24660702,-0.019893484,-0.10494258,0.045302022,-0.8020631,-0.24401668,-0.4429479,-0.34122708,0.46197328,-0.45389804,0.16570725,0.16127536,0.054967854,-0.20036756,-0.007325449,0.3161649,0.5371812,0.36507058,-0.0916203,-0.17098412,0.09429116,0.2524027,-0.35533717,-0.06137847,-0.38194758,0.25269178,-0.6218111,0.51741093,-0.23978357,-0.31157112,-0.018900722,-0.15166941,0.043216042,0.53921694,-0.124146104,-0.21968766,0.17951407,0.10304106,-0.19593023,-0.21407464,-0.24817134,0.31837097,-0.008476241,-0.08409234,0.10073231,-0.019870996,-0.054211583,0.5857768,0.03334057,0.25770214,0.20987198,-0.1738259,-0.41849425,0.06446986,-0.15759218,0.4203518,-0.024749067,-0.041889273,-0.20908417,-0.16318725,-0.14948244,0.30545625,-0.13539375,0.13078573,0.008636983,-0.37430674,0.9105922,0.20827158,1.3286928,0.08906432,-0.500834,-0.020377977,0.44810227,-0.14953147,0.020819223,-0.44426277,1.1834519,0.4469311,-0.1947094,-0.26055247,-0.515935,-0.19372073,0.10032622,-0.29994172,-0.13520953,-0.06437347,-0.76047134,-0.105194435,0.17745793,0.39492956,0.11718844,-0.009576751,0.09036837,0.2100625,0.27042642,0.65430444,-0.6082726,-0.1768217,0.41069227,0.34026113,-0.080504365,0.18933299,-0.18696146,0.48931143,-0.5484888,0.15209188,-0.75014603,0.03813827,-0.14290164,-0.37152243,0.19774161,0.025947938,0.31363347,-0.26781017,-0.23238547,-0.2580644,0.6622942,0.13670605,0.21782677,0.9002528,-0.19531927,0.060582362,0.11122312,0.3737883,1.3522993,-0.3762563,-0.071936846,0.22208592,-0.22978494,-0.5110554,0.38591057,-0.58823866,0.011761223,-0.06867421,-0.5018729,-0.45252863,0.17527536,0.11284864,-0.025425196,0.09748508,-0.68584603,0.027167397,0.46835947,-0.26956373,-0.2467809,-0.2964509,0.35856828,0.7625009,-0.38169512,-0.27576798,0.09305849,0.274625,-0.35755488,-0.53590703,-0.05757552,-0.31576762,0.42992398,0.05274757,-0.41797376,0.19451107,0.3408747,-0.36594576,0.04710373,0.60077655,-0.27780244,0.08148144,-0.31355676,-0.012709881,1.2430694,-0.1158795,0.059803773,-0.56721014,-0.6070387,-0.96737516,-0.3383879,0.30195454,0.3002455,0.089284524,-0.26284146,-0.026134044,0.013480678,-0.061063536,0.11976773,-0.56237686,0.36260965,0.12237571,0.64210045,-0.020997813,-0.91759557,-0.03508948,0.07147215,-0.004482963,-0.43321857,0.63919336,-0.2042431,0.7567148,0.1236633,0.1301788,-0.01788996,-0.5413119,0.35646436,-0.2656397,-0.09844448,-0.79289097,-0.12274819,806 -539,0.42050833,-0.08218336,-0.2608908,-0.25956956,-0.2956681,0.029832061,-0.11125869,0.5314258,0.21220145,-0.5383373,-0.33688635,-0.22359426,0.0407436,0.14937027,-0.39398083,-0.6312419,0.033531923,0.16732608,-0.29052296,0.44294366,-0.5346294,0.49715713,0.14665064,0.21737297,0.287515,0.12386495,0.09429528,-0.3083909,-0.16365516,-0.36466178,-0.22004439,0.4079227,-0.5194305,0.15793864,-0.23159729,-0.32052824,0.13144012,-0.33739465,-0.30058736,-0.9717498,0.29699418,-0.94270986,0.37118578,0.07890531,-0.30946392,0.3739621,0.12504825,0.1488484,-0.123324774,0.10256574,0.2220985,-0.30210897,-0.22577076,-0.22573201,-0.1726438,-0.43070188,-0.6925759,0.009078418,-0.4100482,-0.25339264,-0.46361965,0.27999112,-0.47466597,-0.1717218,-0.13434847,0.30896726,-0.54497755,0.020798802,-0.014745355,-0.005409769,0.3588543,-0.6605914,-0.28130028,-0.09244319,0.23008248,-0.28416246,-0.2516279,0.33698097,0.2953983,0.44272822,0.00020721981,-0.22812183,-0.25994572,-0.14109744,0.25522977,0.4502104,-0.25396472,-0.6636762,-0.0042424416,-0.13041708,0.3369721,0.44074726,0.014623433,-0.31507048,-0.21198109,-0.034842048,-0.22347954,0.4554317,0.6340575,-0.24385795,-0.19468315,0.16535652,0.35967833,0.20581605,-0.18008557,-0.023721512,-0.07173192,-0.6350827,-0.20123564,0.16470875,-0.33565006,0.59872526,-0.24165647,0.16688883,0.7908305,-0.39544514,0.18365006,0.123024516,0.20027956,0.016995618,-0.18111287,-0.4744487,0.30052212,-0.6788555,0.23854315,-0.4060882,1.0806134,0.025287578,-0.76310027,0.16677253,-0.64704853,0.15250064,-0.2334498,0.69570863,0.48578358,0.49997622,0.42580143,0.62675714,-0.44917804,-0.0654906,0.09963102,-0.38798776,0.0379635,-0.22090967,-0.015589653,-0.27109584,-0.15837915,-0.13942973,0.015543627,-0.00014751723,0.75027704,-0.5098171,0.054635506,0.037357263,0.68473977,-0.4087188,0.030238358,0.79930955,0.91585535,1.1833916,0.2194309,1.3293122,0.27315015,-0.3086321,0.06833265,-0.08571809,-0.7120668,0.3033701,0.429782,-0.2966406,-0.13832085,0.049535923,0.075403675,0.31892326,-0.7096028,-0.032060027,-0.3652484,0.19055404,-0.02179557,-0.1287189,-0.46335098,-0.4314358,-0.03555776,0.2947368,0.0021521535,0.32624862,-0.19221959,0.25516447,0.055626273,1.0530552,-0.014089684,-0.040279184,0.12308073,0.4458401,0.057778418,-0.06847624,-0.002573422,0.29592332,0.46969005,0.09156574,-0.66867626,-0.10531862,-0.18079288,-0.47713494,-0.15952389,-0.37762234,-0.059034962,0.10246999,-0.53399956,-0.35067347,-0.0733555,-0.32451206,0.48809758,-2.08501,-0.027476115,-0.028905233,0.33151865,-0.036382638,-0.2890137,-0.083779536,-0.62058675,0.62082946,0.24427749,0.45470652,-0.7239305,0.3228844,0.5717435,-0.47715527,-0.14306974,-0.7970573,-0.27736664,-0.10119314,0.17764743,0.21046117,-0.013451642,0.04259298,-0.16929136,0.6871219,-0.01110243,0.16046469,0.16895413,0.41176477,-0.12076149,0.49635926,0.18793906,0.38273123,-0.08364694,-0.20232241,0.40956068,-0.3807134,0.23119791,-0.27981496,0.04898012,0.53367895,-0.5039616,-0.7608458,-0.82802093,-0.4965212,1.2340118,-0.07055326,-0.57862175,0.41571298,-0.15838099,-0.18978025,-0.16830285,0.54843885,-0.28503492,-0.089425445,-0.7192562,-0.02996856,-0.14916237,0.1543922,0.00405666,0.12060501,-0.43103355,0.7912682,-0.047104854,0.25881073,0.21181072,0.14716533,-0.46609893,-0.54714096,0.024407983,0.95952594,0.49383828,0.15772988,-0.26303965,-0.25341558,-0.23188627,-0.099062935,0.14912634,0.6420247,0.94097704,-0.15579584,0.16476393,0.22889963,-0.09092723,0.07935823,-0.22698726,-0.3504424,-0.073461175,-0.05437955,0.6815583,0.5132311,-0.07294876,0.3906397,-0.10038073,0.33873296,-0.10291825,-0.43050048,0.36983624,1.1891992,-0.03001095,-0.12914398,0.715145,0.7018105,-0.21822338,0.44199482,-0.711809,-0.4429063,0.57674164,-0.20093843,-0.50730175,0.10308804,-0.47656566,0.13858518,-0.8315461,0.6091322,-0.32910872,-0.62942153,-0.6211851,-0.07990045,-2.397257,0.1032037,-0.3588962,-0.055489093,-0.19189942,-0.3708857,0.28935865,-0.46604154,-0.50579846,0.12238251,0.1651766,0.60103816,0.013215916,0.038055442,-0.14061715,-0.29565483,-0.33022898,0.0039018574,-0.00904615,0.3674546,-0.1332126,-0.3962307,0.112361126,-0.14680202,-0.3309922,0.012534316,-0.55900544,-0.7232107,-0.16705675,-0.41463524,-0.47477302,0.70291656,-0.43552646,0.040082462,-0.061921697,-0.10619169,-0.13674025,0.3036824,0.21259321,0.216457,-0.06964967,0.0194895,-0.041450936,-0.2928552,0.46866602,-0.00912588,0.19611277,0.41907355,-0.20512843,0.09534604,0.53629243,0.5367006,-0.12324299,1.0453799,0.3800755,-0.08017022,0.26561657,-0.2702225,-0.4247087,-0.8060201,-0.3234361,-0.018610647,-0.49649653,-0.26185593,-0.018537449,-0.39590004,-0.81476957,0.46716404,0.026634464,0.16839217,-0.06330327,0.2744028,0.38784847,0.1410688,-0.24359152,-0.13070183,-0.07887517,-0.53052634,-0.21707448,-0.8686861,-0.41432998,-0.18161774,1.0864081,-0.22428603,-0.21212797,0.19326977,-0.016204592,0.15216054,0.06872247,-0.13914032,-0.017964432,0.41766593,0.00040048786,-0.8143794,0.66893566,0.105919085,-0.16616543,-0.5180293,0.13964774,0.605166,-0.8382148,0.44797394,0.60106057,-0.025418866,-0.031153305,-0.6924308,-0.3048059,-0.19671929,-0.19459954,0.48162922,0.13706413,-0.69226474,0.49649414,0.43542323,-0.1926717,-0.8009442,0.5364114,-0.1433884,-0.38546988,0.18589428,0.3871834,0.03899968,0.024537172,-0.021830866,0.35555878,-0.540829,0.55642176,0.2891831,0.048047874,0.23100019,-0.20527509,-0.06765552,-0.8351244,0.16401099,-0.5327284,-0.2777226,0.0039743357,-0.057182483,-0.16466223,0.47486624,0.10588603,0.47760043,-0.22249891,0.11330096,-0.22076328,-0.28250283,0.2750739,0.4247438,0.522821,-0.33173466,0.6812001,0.08849184,-0.1981136,-0.20187701,0.27710304,0.46426943,0.09551501,0.38701698,-0.12836286,-0.2610524,0.3726909,0.8952611,0.23584308,0.5735456,-0.0008491789,-0.084217496,0.2643525,0.19540545,0.31322807,-0.020457685,-0.4565021,-0.048052363,-0.24063845,0.018443655,0.50052404,-0.04777207,0.40120855,-0.093376346,-0.16494365,-0.010702835,0.27013037,0.023303943,-1.2566675,0.42995134,0.12493877,0.7671034,0.6444344,-0.112272926,0.12684184,0.6068967,-0.2818479,0.07458977,0.2761645,0.23324059,-0.4948607,0.6388364,-0.70405513,0.37997022,-0.18801641,0.05903376,-0.13769148,-0.051036067,0.4144301,0.72567505,-0.13341211,0.05422626,0.058223944,-0.39139017,0.32838035,-0.5536446,0.13820174,-0.4960885,-0.23531005,0.7000881,0.4767565,0.27232456,-0.04822688,0.048779555,0.1925758,-0.25910988,0.3216751,0.032685585,0.10293835,-0.09959336,-0.51558477,-0.11011558,0.521281,-0.12761952,0.06450087,0.051124595,-0.23571272,0.20715249,-0.26909304,0.05483669,-0.11287206,-0.6328307,-0.09567178,-0.35187596,-0.34689918,0.45153087,-0.068292506,0.18537317,0.3484018,0.099229276,-0.24584706,0.04896099,0.46980497,0.49091986,-0.11686063,-0.25710624,-0.2430165,0.20325638,0.2589564,-0.17996843,-0.12685359,0.04812279,0.016345093,-0.6521351,0.40655994,-0.24163745,-0.15639074,0.043916505,-0.15355526,-0.16290748,0.60851985,-0.15295148,-0.1779587,0.09164434,-0.10931085,-0.046783306,0.01685414,-0.12993227,0.22412147,0.19420181,-0.091154985,-0.20054205,-0.34397602,-0.16065742,0.26961464,-0.19523634,0.38252208,0.26111987,-0.07387493,-0.36839905,-0.14077921,0.07011866,0.5142418,-0.04726408,-0.1317579,-0.3140154,-0.41314554,-0.32447666,0.18216884,-0.17946298,0.35249045,0.18236819,-0.40573904,0.8826191,0.033123933,1.1314862,0.15579267,-0.31796512,0.14037278,0.66666114,-0.10780804,-0.031774674,-0.19666608,1.0868806,0.56267965,-0.22285748,-0.08794933,-0.46314472,0.21061721,0.33777285,-0.11233454,-0.13062528,0.052028272,-0.6795464,-0.15840957,0.23819754,0.36922556,-0.09896336,-0.012816893,-0.15431604,0.19959676,0.16925876,0.58558255,-0.5886459,-0.06666185,0.22143863,0.19956805,0.19424269,0.17306177,-0.33662057,0.37803522,-0.4046741,0.118280075,-0.3339955,0.11717101,-0.40232056,-0.28184083,0.2848066,0.07862212,0.29915574,-0.17227313,-0.43362802,-0.2238416,0.41529068,-0.03246069,0.3253751,0.48714802,-0.37628323,0.095610656,-0.076630436,0.500435,1.3400649,-0.20431496,-0.0995902,0.42074674,-0.5173737,-0.491409,0.38110223,-0.4309846,-0.065165676,0.049846593,-0.3616769,-0.515833,0.054806598,0.29998326,-0.031000933,0.049928863,-0.5810185,-0.13803017,0.31366202,-0.27543864,-0.34755543,-0.24488734,0.28836825,0.559812,-0.48137838,-0.21043715,-0.0024711874,0.22737996,-0.37397474,-0.42911884,0.15485919,-0.29859525,0.5126563,-0.031843014,-0.44513497,0.052893553,0.060557608,-0.2852165,0.12923476,0.3083528,-0.36534992,0.039601844,-0.2682398,0.2684568,0.86891407,-0.21150734,0.012370825,-0.3626699,-0.5557604,-0.8257516,-0.24669382,0.6319369,0.4550324,0.032960452,-0.5168058,-0.033268485,-0.005198347,0.012562668,-0.06023154,-0.3431671,0.5481267,0.23402074,0.36627382,-0.08729773,-0.83146125,-0.03179873,0.039627396,-0.32601,-0.40315062,0.627221,-0.14219743,0.7534296,0.16588335,0.081449084,0.10189499,-0.43318322,0.21834283,-0.053161062,-0.2777609,-0.7291222,-0.026172085,812 -540,0.6679153,-0.2729104,-0.6395512,-0.122288205,-0.27174193,0.061874952,-0.36962846,0.3629147,0.07874583,-0.6170496,-0.24367745,-0.082087375,-0.11280428,0.23814133,-0.23937938,-0.69767725,-0.11459851,0.040313713,-0.3631091,0.85765415,-0.27100736,0.32065085,-0.051129382,0.5424594,0.3949654,0.29835156,0.25345922,0.124003515,-0.26317063,-0.39938852,0.14772797,0.24004507,-0.72009844,0.33064982,-0.19675805,-0.42825285,-0.117058404,-0.38596892,-0.19663318,-0.82637453,0.32665047,-0.89449686,0.49496037,-0.00074763596,-0.26269037,0.36461544,-0.00056439213,0.12709515,0.030921862,-0.047295023,-0.03394297,-0.23607655,-0.054143883,-0.30821303,-0.16833235,-0.3319494,-0.62746894,0.03794289,-0.61158276,-0.11083076,-0.32195303,0.27905235,-0.40179712,-0.10256653,-0.23550631,0.7366044,-0.53755283,0.056167714,0.13023876,-0.0021569133,0.2601986,-0.73853594,-0.3461351,-0.19183242,0.10864205,-0.12516026,-0.17707194,0.1950606,0.16872905,0.28003067,0.076058604,-0.22180739,-0.41538572,-0.34202948,0.40579763,0.2515943,0.16603963,-0.46141148,-0.2477708,-0.3243751,0.29606536,0.17764723,0.42242247,-0.20114014,0.015339158,-0.05735078,-0.17138918,0.6163879,0.5669969,-0.23335133,-0.33507085,0.32275048,0.54702693,0.2760104,-0.26087323,-0.0029402461,-0.054180108,-0.3508744,-0.07288848,0.34120113,-0.19907077,0.5556786,-0.115868144,0.27796248,0.6165188,-0.44333825,0.17177622,0.016397974,0.05431852,-0.21930507,-0.27792028,-0.27854985,0.282201,-0.4530041,0.20964213,-0.27198192,0.8270749,-0.005904534,-0.5833155,0.23045202,-0.65649885,-0.018677818,0.05632483,0.7077304,0.60144603,0.4550306,0.22543205,0.62073535,-0.19774191,-0.061644677,-0.12776433,-0.18524303,-0.20537853,-0.2780771,0.009847283,-0.40671822,-0.07680238,-0.07421446,0.011131027,-0.23665987,0.7693068,-0.37864804,-0.10522224,0.08238379,0.6860322,-0.3091685,-0.14507134,1.1172159,1.1300553,1.1764807,0.11386837,1.2404901,0.16689633,-0.18136759,-0.23443784,-0.09795683,-0.61010516,0.36699015,0.33360586,0.03169709,0.39933133,0.05510119,0.050597582,0.3203435,-0.43043226,-0.1019308,-0.16127907,0.15920956,0.12054575,-0.028803213,-0.5247279,-0.16459201,0.06301718,0.08897299,0.15550362,0.27753553,-0.35667482,0.48953682,0.16543257,1.1460218,-0.17432837,0.083760925,0.02999418,0.47223276,0.13842031,-0.14112876,0.13383994,0.3250802,0.30764028,-0.006170869,-0.763575,0.20374736,-0.23143306,-0.6707746,-0.21613857,-0.44326115,-0.08035452,-0.07879095,-0.4906822,-0.19931854,-0.070905186,-0.38135916,0.16483186,-2.4930348,-0.17397325,-0.052885957,0.2833175,-0.2544284,-0.33961156,0.010239921,-0.60165733,0.27253562,0.2958626,0.2939625,-0.51295376,0.46521872,0.5772232,-0.5175723,-0.052062143,-0.6839362,-0.02149094,-0.20498703,0.61631185,-0.2199203,0.039182298,0.053748142,0.1769069,0.68095785,0.0953834,0.16304643,0.2699982,0.36816326,-0.20769472,0.35047373,0.10636903,0.3920729,-0.39502695,-0.18660362,0.4902131,-0.38216516,0.35402304,-0.30085284,0.23678865,0.5727878,-0.39719325,-0.81374997,-0.7337385,-0.35949078,1.1348673,-0.13661583,-0.6789927,0.098287754,-0.23092572,-0.2515204,-0.07398732,0.55559725,-0.17746381,-0.010466195,-0.6838918,-0.025339385,-0.14588483,0.22204028,0.023457138,0.22567356,-0.5815894,0.7693907,0.062181003,0.47135833,0.17677855,0.46678203,-0.27830434,-0.4943101,0.21056832,0.970756,0.53825897,0.06718024,-0.5004065,-0.22015299,-0.096792154,0.010377867,0.112855256,0.552057,0.6380133,0.031353317,0.2756166,0.24058585,-0.0507726,0.102957256,-0.22284286,-0.21320342,-0.28288615,0.064179905,0.56631666,0.5515746,-0.12792987,0.41171953,-0.108878136,0.25979814,-0.26461312,-0.47030264,0.7032896,1.154559,-0.17079352,-0.24631755,0.71728325,0.66118526,-0.57070315,0.62486464,-0.6260233,-0.086174265,0.5247372,-0.28570908,-0.380572,0.15490349,-0.32314232,0.13993372,-0.92952955,0.21693297,-0.34249517,-0.51436394,-0.6182203,-0.2635628,-2.8483732,0.10706418,-0.16186841,-0.2519119,-0.32323667,-0.42739263,0.2859816,-0.67747647,-0.62039804,0.11338417,0.02426156,0.7209657,-0.18944669,0.059814088,-0.2396214,-0.40836802,-0.39046615,0.2214198,0.16136329,0.42392656,-0.20883669,-0.24907355,0.14187835,-0.15676118,-0.40746123,-0.14026557,-0.25695905,-0.42486158,-0.1499935,-0.37954715,-0.10293547,0.5403807,-0.18990803,0.06543108,-0.20942512,0.032438766,-0.0045444793,0.5228857,0.11195161,0.3198585,0.18472455,-0.06254046,0.058683455,-0.45031476,0.2924632,0.00323147,0.08746808,0.51620716,-0.32329115,0.30830622,0.39797518,0.5011799,-0.03294557,1.0644188,0.3580847,-0.100144565,0.38129872,-0.22082952,-0.43622762,-0.81144875,-0.24227533,-0.026259992,-0.37010822,-0.63622314,-0.08611198,-0.22872533,-0.98040235,0.5504918,0.020512242,0.51591194,-0.06407707,0.37963215,0.40592733,-0.16769196,-0.13522837,0.064376645,-0.038814638,-0.4979968,-0.45572552,-0.7307235,-0.54762834,-0.075798385,0.8079271,-0.23798278,-0.2892677,0.13258037,-0.29118988,0.098203234,0.18971218,0.044607453,-0.018050399,0.3732989,0.3353805,-0.5425512,0.605877,0.118617155,-0.09788234,-0.4722109,0.16349265,0.6726852,-0.59683305,0.34866944,0.4016495,0.08119447,-0.2216035,-0.59414774,-0.023135195,0.04155906,-0.12567268,0.50184596,0.3648519,-0.8732613,0.47624153,0.019813549,-0.14251079,-0.81313,0.604482,-0.017784264,-0.1798774,-0.17828174,0.516539,0.12090898,0.048577692,-0.23016813,0.29414147,-0.3268097,0.09774882,0.29855993,-0.10598427,0.36333188,-0.2587685,-0.31505495,-0.6474796,0.15383217,-0.6386067,-0.32081112,0.27525443,-0.004939173,0.11394269,0.3877263,0.31974235,0.443363,-0.25064418,0.1483206,-0.09117283,-0.27100936,0.42848644,0.52452844,0.7225109,-0.40922275,0.6774096,0.10773344,-0.11594315,0.12660031,0.09161832,0.47957966,0.017734868,0.540954,0.111797385,-0.17530249,-0.020781595,0.7559572,0.3004231,0.64444476,0.1508489,-0.31438214,0.35454106,0.12848547,0.43835267,-0.27382225,-0.56281155,-0.063938215,-0.26262,0.04784487,0.5547108,0.08701093,0.37351304,0.015998717,-0.090910174,0.19413725,0.13247035,-0.15444496,-1.2196258,0.21772143,0.1820599,0.8456444,0.67590076,-0.110853575,0.17709146,0.4805433,-0.23619768,0.08724672,0.42102823,0.22730221,-0.4660005,0.6408953,-0.69203365,0.39342728,-0.11734842,-0.11443595,0.027839566,0.002983387,0.47148636,0.7582811,-0.3010628,0.05190253,0.014512808,-0.32296896,0.26802447,-0.45031816,0.15662387,-0.37142536,-0.20813076,0.9201507,0.5014668,0.36417356,-0.17028785,-0.0445916,0.12936844,0.043134905,0.27521655,0.101680644,0.054873176,-0.12049904,-0.49362782,-0.2412325,0.5649103,-0.18079476,0.05702293,0.020383982,-0.4389153,0.09855165,0.06582548,-0.12742482,0.13020252,-0.87438077,-0.047310617,-0.23425232,-0.68130726,0.4531266,-0.1760207,0.25234398,0.2782342,-0.017579814,-0.20961976,0.13281366,0.35891077,0.5907182,0.12153391,-0.020217594,-0.47137377,0.07830839,0.39194775,-0.3299164,-0.053037506,0.017739505,0.20679362,-0.5879423,0.30182245,-0.36852536,-0.32137445,-0.0627934,-0.09525531,-0.11482296,0.6923725,0.09604997,-0.11268175,0.016295735,-0.22834024,-0.21485876,-0.13878329,-0.08854691,0.26665133,0.016015125,-0.2935173,-0.25603858,-0.028507074,0.17601857,0.26485783,0.0071625155,0.33714762,0.39242107,-0.17437561,-0.49538442,-0.17748462,0.27127257,0.45128074,-0.052797437,0.025899157,-0.18899696,-0.48850435,-0.4226165,0.43738517,-0.088620625,0.055569492,0.16977195,-0.33808252,0.9520299,0.13268293,1.0171717,0.11871383,-0.58747756,0.31141475,0.5561752,-0.09000857,-0.16220124,-0.45449805,1.0470074,0.30854124,-0.27603707,-0.20015427,-0.38700628,-0.09555827,0.14343396,-0.3841308,-0.05717367,-0.1659437,-0.5899026,-0.073089376,0.0906151,0.29090446,0.015339361,-0.15587126,-0.030831363,0.41651326,0.19149913,0.5017365,-0.641003,-0.19642815,0.428696,0.003093924,-0.030614274,0.09702342,-0.3035972,0.3523619,-0.6759573,0.09017102,-0.26894352,0.25893444,-0.23147814,-0.42463478,0.23911892,0.19387795,0.39685646,-0.2860691,-0.56055963,-0.45857906,0.42645016,0.12182327,0.14378056,0.49373648,-0.27267736,0.19925354,-0.16425565,0.54465306,1.143983,-0.11411619,0.12962253,0.28195217,-0.5055332,-0.74866676,0.18213797,-0.46590868,0.34108475,-0.1069985,-0.346664,-0.6100383,0.093952075,0.2809449,-0.012951681,0.14724731,-0.62772876,-0.3075099,0.13712844,-0.282851,-0.19105768,-0.122477554,-0.03774854,0.71274656,-0.35189542,-0.30573195,-0.11072456,0.25113496,-0.16901584,-0.47356263,-0.05719385,-0.3290905,0.36230844,-0.1779447,-0.30599946,-0.064616166,0.18962753,-0.45981583,0.10610308,0.1542945,-0.21888505,-0.07208705,-0.31986883,0.3025969,0.8227166,-0.09546517,0.078040496,-0.46332926,-0.68513244,-0.89311653,-0.53737617,0.17821547,0.096690044,0.1542389,-0.6078831,0.19711044,-0.3296266,0.20763037,-0.0003726142,-0.5106437,0.4086645,0.24822876,0.47624096,-0.027229045,-0.86050373,0.2182738,0.15723963,-0.15924849,-0.559671,0.47788858,-0.18642572,0.7803613,0.061671343,0.04190882,0.009729013,-0.66486347,0.082243785,-0.1750217,-0.15493776,-0.6244021,0.1920882,816 -541,0.36434823,-0.16398302,-0.46132094,-0.13911453,-0.15372021,0.19180427,-0.07533467,0.43671295,0.1764369,-0.48549047,-0.1591085,-0.22991551,0.04308737,0.21052313,-0.2509331,-0.3924047,-0.04574645,0.0311179,-0.38525206,0.30071136,-0.5027843,0.23607473,0.118291594,0.18725552,0.17380846,0.24856308,0.22904317,-0.15542524,-0.10039531,-0.06575463,-0.1900332,0.18729173,-0.43148035,-0.041143943,-0.095852785,-0.24865286,0.06351628,-0.40153155,-0.37488577,-0.6368288,0.4954186,-0.8803118,0.45737177,0.12181677,-0.14182208,0.32267994,0.11275571,0.12907812,-0.21250486,-0.039176166,0.19399239,0.048599303,0.03208512,0.012362793,-0.23217484,-0.37505388,-0.5580537,-0.016774971,-0.3855541,-0.2667808,-0.21681832,0.21466303,-0.3291215,0.011959097,-0.16953638,0.54556334,-0.4301951,-0.0670288,0.27363405,-0.20570683,0.32826605,-0.6646313,-0.110151924,-0.059942067,0.07217803,-0.23652008,-0.1518163,0.08897086,0.33092174,0.5874155,-0.012126053,-0.1873357,-0.36438122,-0.062206417,0.07635168,0.44138765,-0.3248102,-0.5687821,-0.14343877,0.038173642,0.10327593,0.117484786,0.15547858,-0.26299468,-0.058901507,0.0034700462,-0.33140466,0.4511814,0.55289936,-0.50805056,-0.22566581,0.31599575,0.58328766,0.015346893,-0.07797481,0.09325867,0.07310099,-0.45906928,-0.11772651,0.13970318,-0.30881506,0.5377811,-0.25877076,0.34638953,0.6038664,-0.20114791,0.21136539,-0.0071842778,0.02002648,-0.073437445,-0.30741864,-0.13628791,0.12112224,-0.49526143,0.13933952,-0.17261139,0.8821445,0.14054474,-0.62129575,0.34172556,-0.42930827,0.18722312,-0.15522203,0.5237842,0.5689869,0.292447,0.24159333,0.75306267,-0.5620683,0.07994526,-0.17641708,-0.2922948,0.043601904,-0.020220874,0.06346341,-0.36945936,0.005043941,0.06336843,-0.07994672,-0.16335866,0.40003198,-0.6072362,0.06847538,0.21461211,0.83996403,-0.26899084,-0.19403477,0.67425126,0.9561382,0.8848172,0.023969352,1.1047722,0.25136253,-0.24023019,0.23934971,-0.33475304,-0.74017113,0.2206159,0.37260792,0.22515048,0.21576054,0.20636155,-0.08955496,0.3727145,-0.38734898,0.0049016858,-0.40360478,0.2201902,0.29236427,0.037320126,-0.303579,-0.15187705,-0.011515932,0.05963769,0.11813712,0.23968752,-0.050635964,0.2078233,0.064088054,1.6647367,-0.19359832,0.22475128,0.16230631,0.42682,0.20438015,-0.06315984,0.014207742,0.2641332,0.45337015,0.15729192,-0.70556915,-0.0023627835,-0.1935984,-0.53353035,-0.059864167,-0.2318206,-0.039494358,-0.09107154,-0.54355174,-0.15529834,-0.15768088,-0.29654762,0.45974186,-2.9586868,-0.011939551,-0.18529637,0.26101455,-0.36774996,-0.3262958,0.0008560504,-0.49776652,0.40385076,0.44979912,0.41452485,-0.7754646,0.33536404,0.4073753,-0.34014153,0.043330114,-0.70099264,-0.08015402,-0.18240397,0.30512276,0.1256694,-0.15516546,-0.019188046,0.11835077,0.41644788,0.111314654,0.19014195,0.17611502,0.40699068,0.1275556,0.4696278,0.040635712,0.45893675,-0.105786756,-0.1787714,0.29315677,-0.33761138,0.21893804,-0.21329126,0.11301936,0.33010635,-0.39384386,-0.7509613,-0.6738667,-0.38607496,1.1983407,-0.1094606,-0.4123681,0.28557134,-0.25042856,-0.13430107,-0.16009666,0.40396425,-0.11972041,-0.1617262,-0.83347183,0.16950552,-0.17208636,0.16611423,0.046303146,-0.03854376,-0.40744907,0.74345744,-0.29958704,0.35960546,0.44238833,0.22159491,-0.28756446,-0.47232994,-0.09446884,0.8895401,0.3542562,0.15534846,-0.20217922,-0.3008162,-0.21826331,-0.029592644,0.098845504,0.49865073,0.7902889,0.08315913,0.13054301,0.3381529,0.034160294,0.01729382,-0.14283423,-0.38126203,-0.091567114,-0.012444102,0.56669635,0.503626,-0.19977497,0.4376085,-0.1796139,0.11214797,-0.2520643,-0.4227269,0.36076817,0.8026084,-0.13186583,-0.25854138,0.64060766,0.31086677,-0.25044963,0.33926216,-0.6480733,-0.22842874,0.43032858,-0.20086794,-0.42895916,0.13993685,-0.33582672,-0.013649749,-0.7827817,0.35606602,-0.31115156,-0.47664803,-0.503877,-0.27967837,-3.9369106,0.22094207,-0.36934564,-0.115290694,-0.031667553,-0.20836034,0.23397067,-0.5501181,-0.5149481,0.21996713,0.072037615,0.48571613,0.07474063,0.09849085,-0.24519803,0.031013284,-0.29431203,0.112277724,0.13741603,0.23930493,-0.011767621,-0.42896786,0.13155523,-0.17005484,-0.3771008,0.14145456,-0.48771313,-0.46818924,-0.1633688,-0.58615094,-0.29030615,0.7228821,-0.30902553,0.028977066,-0.29920292,0.027117262,-0.21882844,0.43112925,-0.010089828,0.15228815,-0.061141882,0.027831199,-0.12930037,-0.25190017,0.32561502,-0.020322787,0.2230419,0.33794895,-0.22106315,-0.006774715,0.4006536,0.5697436,-0.048708577,0.8090205,0.53988457,-0.19274059,0.33568054,-0.13770433,-0.09110068,-0.59611523,-0.32841277,0.078306854,-0.4772412,-0.497362,-0.055858288,-0.35360786,-0.63091034,0.4640567,-0.061360233,0.32339138,0.00200576,0.2892106,0.54813266,-0.104156174,-0.005538251,-0.068585955,-0.10300296,-0.6369773,-0.2984198,-0.56312484,-0.3028865,0.1599296,0.949922,-0.17598693,-0.070245005,-0.053132337,-0.26872292,-0.060564023,0.07268148,-0.0068662423,0.24354938,0.34214005,-0.21582906,-0.58508176,0.39032882,-0.021637013,-0.18012358,-0.5210701,-0.05946252,0.5634667,-0.5803688,0.6703723,0.34318215,0.09732264,-0.22087029,-0.61433345,-0.3469414,0.028214548,-0.36902612,0.4570355,0.2191093,-0.76596534,0.4737992,0.34964302,-0.22338565,-0.72863394,0.46154815,-0.012392306,-0.15677881,-0.034356557,0.2808184,0.081093654,0.052313443,-0.06984181,0.1802375,-0.38508433,0.2834588,0.13311322,-0.10853965,0.3859232,-0.1627164,-0.13387558,-0.68326473,-0.12134333,-0.53390604,-0.09736199,0.1596677,-0.032586534,0.07013223,0.1635284,0.042786803,0.48121205,-0.2079902,0.10983287,0.07913266,-0.1270582,0.22825202,0.34256104,0.37178904,-0.4901533,0.59566027,0.0103724515,-0.09569306,-0.07645947,0.036027934,0.47668952,0.11540246,0.23926458,-0.089691095,-0.19758001,0.46972737,1.0109537,0.15989682,0.5236271,0.08955463,-0.06589527,0.28372008,0.08089961,0.10723666,0.014664956,-0.48074526,-0.18708445,-0.113879785,0.19311602,0.36866018,0.14243641,0.4087196,-0.15181056,-0.3307381,-0.030728446,0.16436312,-0.038661834,-0.9160448,0.14019586,0.112815365,0.84806156,0.49954095,-0.06250642,0.0835668,0.45079714,-0.1948887,0.11223768,0.31831232,0.12763707,-0.4801313,0.49095944,-0.62069863,0.28632903,-0.13405201,0.018891603,-0.1824888,0.032164186,0.35654622,0.75949246,-0.17687485,-0.044523973,-0.0540453,-0.1617014,0.22154379,-0.33345312,0.122042164,-0.6045493,-0.23451154,0.5666478,0.44409624,0.39872912,-0.02867629,-0.13895094,0.042922873,-0.044463295,0.035690453,-0.04944902,0.08203165,-0.010266887,-0.6461219,-0.36839363,0.5079393,0.21192625,0.14960912,-0.047549594,-0.3237531,0.21528485,-0.2241451,-0.18284698,0.013717265,-0.6297726,-0.058298707,-0.13591285,-0.5053233,0.43721038,-0.2447428,0.16231559,0.20582299,-0.01888524,-0.33976936,-0.029094024,0.13323934,0.63545406,-0.098598056,-0.032847825,-0.5352017,0.07877779,0.14378402,-0.13419728,-0.10112793,-0.1639781,0.041334547,-0.5913578,0.45939818,-0.0083783865,-0.19217137,0.21034493,-0.28261536,-0.04840604,0.6594568,-0.07415166,-0.061904874,0.07179209,-0.35584387,-0.20982702,-0.045316074,-0.09817656,0.24219133,-0.026502516,0.040903635,-0.0930096,-0.15016142,-0.2335381,0.3154866,0.14910717,0.16511126,0.39191693,0.19108985,-0.42303464,-0.15049647,0.053372685,0.47822112,-0.018041808,-0.17819186,-0.2781668,-0.5521417,-0.19292776,0.135379,-0.040933967,0.31932148,-0.0075145895,-0.3678864,0.8721426,0.04612327,1.0508667,0.07079778,-0.43044668,-0.21467818,0.5474568,-0.025211278,0.068192795,-0.266752,0.7907737,0.514057,0.05056665,-0.1448228,-0.29258886,0.14424555,0.26523268,-0.068328254,-0.059996996,-0.091997586,-0.5847254,-0.20576203,0.42954412,0.25161415,0.0865201,0.004873297,0.12153077,0.18473682,-0.0656745,0.59415656,-0.54987997,-0.09056567,0.1829443,0.2652489,0.24961312,0.14938721,-0.31001344,0.37196103,-0.4650316,0.10389241,-0.23153794,0.17446105,-0.19305405,-0.2352219,0.19559129,-0.11711428,0.54259473,-0.19073507,-0.35944924,-0.19217329,0.5413578,0.10295638,0.242263,0.5676774,-0.255891,0.029366449,0.018215507,0.6374377,1.0158049,-0.21189348,0.03687628,0.46033266,-0.17673433,-0.74440926,0.41470474,-0.32260242,0.14537962,-0.045474496,-0.17195018,-0.3049306,0.25429562,0.35384494,-0.01159287,0.12362403,-0.5285454,-0.33306667,0.32992262,-0.24372683,-0.20220105,-0.1600708,0.2747072,0.66948044,-0.3074729,-0.10122112,0.04317807,0.46333972,-0.24537158,-0.5195393,0.033230446,-0.27470812,0.40440717,0.12998886,-0.21193327,-0.03968277,0.03999922,-0.31678966,0.0453864,0.16045949,-0.3022447,0.12776013,-0.21642773,-0.029692592,0.7655938,-0.008391465,0.11016005,-0.64145344,-0.35258636,-0.87514156,-0.26594105,0.509133,0.026286563,0.06822333,-0.66019535,-0.030784557,-0.089233585,-0.051847376,-0.06649788,-0.38611156,0.63790894,0.2006323,0.34339,-0.048742626,-0.50625205,-0.017570416,0.04660483,-0.059335846,-0.41436443,0.5427342,0.065065436,0.7562095,0.11201792,0.0629469,0.14398275,-0.41933075,0.17583807,-0.22439004,-0.39264253,-0.8122188,0.033781618,817 -542,0.28852966,-0.025320401,-0.5346387,-0.06744438,-0.24270524,0.02363504,-0.04836887,0.40631065,0.23066579,-0.1585501,-0.15047261,-0.13048886,-0.053708434,0.3418319,-0.23618062,-0.38912752,0.023502631,0.09743844,-0.39673024,0.5806429,-0.22669339,0.14304605,-0.04252511,0.356827,0.3883453,0.080679126,0.052613873,0.059079748,-0.09781226,-0.3339796,-0.45157686,0.2830793,-0.26727548,0.121294856,-0.13201986,-0.34894255,-0.004156351,-0.45242685,-0.46636328,-0.6776232,0.30156127,-0.7739929,0.5191679,0.036311664,-0.19773984,0.39342755,0.14121933,0.23310235,-0.05781212,-0.3337481,0.1615453,-0.29109362,-0.050102796,-0.28003794,-0.30241647,-0.21560428,-0.48489946,-0.13174732,-0.33340025,-0.20580506,-0.43036106,0.14835753,-0.3597985,0.0412033,-0.056957442,0.5389943,-0.2810064,0.32140025,0.02312748,-0.16786334,-0.061844807,-0.7372373,-0.24036093,-0.016733648,0.28709108,-0.041430406,-0.19716237,0.3788062,0.12895976,0.30807564,-0.2395439,-0.08244374,-0.3041079,-0.17922592,0.055514693,0.54479444,-0.2250694,-0.4822723,0.03501812,0.24300422,0.1950312,0.38476396,0.2528768,-0.06560729,-0.10185688,0.008501508,-0.07851807,0.47483212,0.44882637,-0.20092228,-0.018059786,0.34258863,0.30911937,0.31617337,-0.11201397,-0.20627336,-0.16863418,-0.4999635,-0.10435108,-0.14467034,-0.1928792,0.4413337,-0.0053012753,0.28597575,0.51122284,-0.028098542,-0.09667366,0.11057954,0.082851216,0.055842567,-0.2754952,-0.2845375,0.20787157,-0.43769673,0.40278217,0.060304195,0.6598775,0.12309526,-0.450702,0.43515143,-0.4432682,0.07345381,-0.052802783,0.3535854,0.46930417,0.3352187,0.39209676,0.57595533,-0.4679088,-0.015527002,-0.0150096165,-0.31451792,-0.087989226,-0.05111729,0.21110736,-0.5621098,-0.036174424,-0.2243477,-0.030159047,0.31608558,0.17515422,-0.42479944,-0.11325074,0.17920281,0.9754621,-0.22150977,-0.037724946,0.83611965,1.1412975,0.8735952,-0.12416691,0.5503768,-0.018543,-0.16116154,0.04222199,0.0033556393,-0.49178705,0.2128332,0.4334534,-0.13169508,0.06368182,0.18746956,0.015805457,0.35901117,-0.24053338,-0.22421266,-0.08134793,0.07106442,0.3609617,-0.0113989115,-0.45946836,-0.24286151,-0.2101499,0.022002552,0.1332196,0.21800293,-0.24606106,0.44515833,-0.16201796,1.607065,0.16450712,0.0021163735,0.17320053,0.5196582,0.20909394,-0.06831711,-0.15890001,0.3105049,0.21296549,0.17479466,-0.40263692,0.17923607,-0.33400625,-0.27320692,-0.007937753,-0.40041608,-0.20936055,0.13312744,-0.288539,-0.18791129,-0.17002384,-0.18083842,0.49852684,-3.163019,-0.17612994,-0.08135683,0.32893896,-0.15497299,-0.39726263,0.011128038,-0.38677695,0.44243917,0.15774421,0.5221614,-0.4410253,0.25185204,0.17428766,-0.49386856,-0.26304868,-0.44290453,-0.049086478,0.14343643,0.37744984,-0.09116193,-0.050320007,0.08153142,0.10649485,0.44901043,0.031071007,0.08284737,0.39164576,0.42964816,-0.14741625,0.48176172,-0.2787121,0.58367187,-0.2456328,-0.09806066,0.21841112,-0.15410723,0.44501352,-0.15191577,0.26312286,0.56423765,-0.2638634,-0.7637391,-0.41632867,0.043440633,1.2307246,-0.04792922,-0.49504265,0.22753017,-0.44630194,-0.27753982,-0.25389066,0.36232248,-0.058329847,-0.1651775,-0.5640613,0.10169155,-0.115768276,0.11581842,-0.03724239,-0.22767036,-0.2937364,0.600666,0.014453471,0.5359887,0.26510343,0.22232185,-0.31390196,-0.22925845,-0.0582921,0.6263117,0.50930685,-0.057698626,-0.12470865,-0.06369598,-0.29296595,-0.18988521,0.23937976,0.6073566,0.43649203,-0.027641516,0.10315739,0.30617163,0.045476317,0.012462999,-0.15142012,-0.19599295,-0.19214188,-0.0078123785,0.50697297,0.63444585,0.03455476,0.5949826,0.0996274,0.24154255,-0.1634315,-0.45276675,0.1538166,0.85894245,-0.26528782,-0.44233432,0.5106646,0.34675115,-0.09324418,0.31276372,-0.38653812,-0.31395525,0.5562405,-0.10274457,-0.5340452,0.1531532,-0.24503049,-0.045738522,-0.50556827,0.22259822,-0.34490156,-0.68794453,-0.5233928,-0.08505029,-2.323304,0.21306705,-0.40773576,-0.18454345,-0.1602882,-0.30240732,-0.063291706,-0.61616975,-0.46894485,0.23108278,0.19904627,0.7250279,-0.13390933,0.144708,-0.15679052,-0.3044302,-0.09586803,0.08154366,0.12965421,0.3157629,-0.057186108,-0.24619535,-0.11679026,0.078062415,-0.38588053,0.090007804,-0.55929404,-0.26350078,-0.07585287,-0.38027558,-0.18609795,0.6455969,-0.34228423,0.06246529,-0.24830581,0.023247276,0.030976739,0.0076116943,0.19197492,0.16902344,-0.05567074,-0.104369,0.13898031,-0.34455857,0.25285545,0.093536906,0.40919194,0.21359818,0.17497529,0.21100911,0.3320083,0.62010515,0.007227308,0.80793625,0.2484632,-0.072733656,0.22058018,-0.22619344,-0.41454437,-0.4421681,-0.2153245,0.34415802,-0.33006236,-0.42170215,-0.048677053,-0.28409857,-0.6868722,0.5737542,0.06236417,0.10264888,-0.16221319,0.3349442,0.6486286,-0.3354029,-0.0611409,0.15501599,-0.04010878,-0.620073,-0.18146026,-0.555898,-0.44014865,-0.07607249,0.7629738,-0.27173594,0.087620735,0.1068591,-0.3404321,0.105555005,0.013745346,0.036076274,0.15332447,0.27542967,-0.2429261,-0.5826697,0.48904803,-0.32106885,-0.08615933,-0.57687426,0.29373258,0.5539605,-0.4592051,0.3648621,0.2746539,-0.047662165,-0.36098453,-0.453737,-0.15616463,-0.068889126,-0.15457752,0.19694795,0.082989804,-0.6825308,0.35286528,0.33771834,-0.11190046,-0.6253467,0.45785233,-0.03515939,-0.4048861,0.089449115,0.29871345,0.17400824,0.030654622,-0.16628666,0.08068228,-0.21948576,0.3249827,0.218465,-0.034697883,0.0034537783,-0.27423555,-0.14734551,-0.65226173,0.10367889,-0.3394234,-0.30227694,0.2810981,0.041130714,0.16575949,0.14111407,0.07484716,0.2329425,-0.3434887,0.17353758,-0.1813628,-0.32981938,0.378862,0.39397508,0.58070385,-0.48897192,0.5673544,0.007310315,-0.1755388,0.22738205,0.036029138,0.3185954,-0.02837029,0.46159378,0.04395163,-0.20352837,0.14269902,0.66248274,0.12185045,0.25013703,0.028137472,0.011358574,-0.025491262,-0.06341475,0.1406591,-0.0025789824,-0.5820231,0.17132436,-0.43334523,0.1049085,0.43340722,0.16330115,0.15017723,-0.0076850015,-0.4315142,-0.06632101,0.05622768,0.11862792,-0.9957131,0.4222179,0.1186903,0.92103195,0.052496094,0.1460929,-0.10395813,0.6892325,-0.007763756,0.025883565,0.28038982,0.05736773,-0.3134758,0.456292,-0.68485975,0.56923836,0.16105904,-0.023267908,0.051942308,-0.116661325,0.25290003,0.56577367,-0.32852045,0.027700534,0.06855375,-0.40084615,0.12722838,-0.4201416,-0.042102177,-0.4652857,-0.34866285,0.41680333,0.52359164,0.35633096,-0.07288391,0.011479893,0.053226866,-0.1892082,0.075724974,0.097191654,0.2153114,-0.2305557,-0.5426539,-0.05200145,0.29446444,-0.1580422,0.21798798,-0.12582274,0.07459438,0.30171624,-0.060960025,-0.04523582,0.009283887,-0.518369,0.16667639,-0.18619654,-0.40936133,0.35656956,-0.0843073,0.35579365,0.19397804,0.067475736,0.053678352,0.58561546,0.029737115,0.8219327,-0.06069901,-0.049986545,-0.427716,0.08161909,-0.11123786,-0.06726039,0.23308311,-0.25300643,0.12026889,-0.5616469,0.4221282,-0.06957514,-0.19818486,-0.14226694,-0.12099848,0.14712356,0.4319412,-0.040071905,-0.06810803,-0.23210952,-0.206163,-0.18375523,-0.25166222,0.019147431,0.15272264,0.19675899,0.115800686,-0.13820907,-0.06108292,-0.27714717,0.35257164,-0.060979422,0.47006804,0.081587635,0.1817614,-0.10947462,-0.17073505,-0.016708493,0.59870815,-0.11468581,-0.2283268,-0.2618611,-0.40075105,-0.35354736,0.29518208,-0.047451057,0.34172267,0.0668539,0.008937557,0.5151447,-0.15310036,1.0840604,-0.07565313,-0.29406098,0.029070644,0.4604546,-0.06522631,-0.15838997,0.019124392,0.811253,0.34064406,0.19210799,0.037070397,-0.30171564,0.06184729,0.26895478,-0.16808549,-0.034745317,0.07181429,-0.1614918,-0.17204884,0.098574,0.11779208,0.358737,-0.28667542,0.13600095,0.34767675,0.06010906,0.1206889,-0.3068439,-0.26387036,0.30862468,0.15841286,-0.18471411,0.107009016,-0.53684133,0.39634147,-0.3108849,0.1200436,-0.41220763,0.09914875,-0.13604584,-0.098687395,0.25803185,0.09295737,0.4474524,-0.429032,-0.17042896,-0.14583203,0.2912428,0.33354476,0.030104574,0.28940934,-0.20861574,-0.16596122,0.11759562,0.41485554,0.55817735,-0.2177764,-0.0123050045,0.28153494,-0.3839217,-0.5041991,0.25552338,-0.28161424,-0.07529963,0.093939,-0.0154383695,-0.3518973,0.27762476,0.2921585,0.05373383,-0.10904987,-0.6430268,-0.08226522,-0.008749654,-0.36270496,-0.17032759,-0.41776642,-0.04815364,0.4055365,-0.08646022,-0.29337668,0.06465123,0.14940523,-0.032963365,-0.46564206,0.0892521,-0.36246628,0.21035783,-0.076606154,-0.26360244,-0.29891652,-0.16932777,-0.4744266,0.19066536,-0.047867436,-0.278223,-0.0064278245,-0.083561726,0.00516599,0.71589386,-0.3566658,0.16518593,-0.4409237,-0.3915002,-0.4607636,-0.45996708,0.30051392,0.053807903,0.09364339,-0.62113106,-0.0052742916,-0.18657516,-0.21182594,-0.32351446,-0.11948694,0.34604958,0.0493891,0.2534502,-0.3202307,-0.80853933,0.33353445,-0.013359006,-0.17705403,-0.460629,0.2786037,0.012240018,0.5721486,-0.061160248,0.1093054,0.30702418,-0.20118235,-0.11294092,-0.29611772,-0.26758203,-0.46237412,-0.09117738,821 -543,0.44611496,-0.16997008,-0.47673795,-0.034736704,-0.17596994,0.16275361,-0.07015697,0.6377077,0.10218089,-0.45640618,-0.13824709,-0.08404989,-0.08197824,0.17829077,-0.27613145,-0.27434677,-0.114683576,-0.001806189,-0.5017489,0.7313027,-0.29741636,0.1785717,-0.04292282,0.28911754,0.31562465,0.17986794,0.18729141,-0.074657604,-0.11042856,-0.26544315,0.0062806094,0.26020807,-0.72519124,0.21988355,-0.4495793,-0.42065164,-0.1364329,-0.45970502,-0.40974683,-0.77055347,0.3311852,-1.0502964,0.61320114,0.022305846,-0.17237839,0.5505695,0.21146525,0.06912746,-0.03577835,-0.13151148,0.2214556,0.00041897915,0.040293925,-0.08686817,-0.26926795,-0.6628715,-0.69891244,-0.055105984,-0.5923541,-0.06842585,-0.3433499,0.106771,-0.3619261,-0.044485338,-0.29664797,0.3267028,-0.46749496,0.142379,0.08732937,0.018232087,0.17519024,-0.7892129,-0.23439123,-0.14595447,0.117879406,-0.066746354,0.0059557897,0.38727474,0.08991532,0.3413716,-0.028033605,-0.19314273,-0.38495964,0.0071065896,0.057727892,0.39846984,-0.14845678,-0.4934435,-0.12878348,0.03838855,0.41245762,0.12554029,0.16689254,0.015758244,-0.0614986,0.021756576,-0.27118865,0.53745466,0.5668576,-0.39244843,-0.44125986,0.39646253,0.49565536,0.29231194,-0.3306026,-0.030464003,-0.09956087,-0.3503921,-0.0996673,0.29543847,-0.24324301,0.52235955,-0.04856012,0.20684044,0.44267532,-0.24354137,0.22246686,0.12813735,-0.04707052,0.0023366127,-0.11463188,-0.36129594,0.19419172,-0.52273226,0.3520684,-0.3227227,0.69020087,-0.026181493,-0.63495654,0.3847704,-0.47811392,0.06902576,0.018239766,0.48881564,0.64870065,0.4199981,0.19489887,0.61941594,-0.14896615,-0.040369965,-0.16647212,-0.16358553,0.0897321,-0.14825583,0.22088994,-0.45764428,0.07852067,-0.0077401143,0.038417608,-0.16318202,0.56710064,-0.48519763,-0.2650789,0.18303128,0.79821384,-0.22912054,-0.114347115,0.8338374,1.2318037,0.99106216,-0.025140971,0.91941607,0.13907251,-0.17813429,0.18312073,-0.21302816,-0.6161994,0.23742194,0.35158992,0.07376252,0.39321524,0.19547746,-0.07192069,0.20766963,-0.36057782,-0.015472332,-0.25956467,0.09430406,0.3192679,-0.0024790275,-0.27809432,-0.29222992,0.022718042,-0.086860254,0.20135579,0.15950021,-0.43146476,0.25765115,0.13707401,1.4519026,-0.12210107,-0.001337261,0.063940145,0.7136326,0.18940651,-0.02763425,0.16987893,0.28492847,0.33211908,-0.020482507,-0.4855273,0.18969999,-0.39755267,-0.6287161,0.026556594,-0.46903476,-0.21690552,0.123989984,-0.50032705,-0.15169494,-0.10853334,-0.2459458,0.33042914,-2.9848142,-0.08701607,-0.09629272,0.36936194,-0.23877147,-0.32237536,-0.21882604,-0.5732067,0.5009377,0.28246152,0.38365275,-0.5730297,0.55285186,0.3708594,-0.56308293,0.02802541,-0.57064414,-0.07617708,-0.025395572,0.4771982,-0.060294162,0.09682933,0.27998903,0.111435905,0.61517256,0.13046762,0.17236507,0.31283447,0.50272065,-0.050356124,0.45432988,-0.044652104,0.40922076,-0.48836705,-0.06417852,0.3213031,-0.44920102,0.46767515,-0.15563901,0.2586148,0.5356425,-0.5274728,-0.8259983,-0.6407584,-0.23930547,1.1938299,-0.274107,-0.48623458,0.08697243,-0.30814663,-0.24344698,-0.21049525,0.5699163,-0.10195173,-0.035888154,-0.5816617,-0.04406854,-0.20793399,0.09453404,-0.14410503,0.2077103,-0.33886656,0.849227,-0.05208808,0.6723277,0.035459265,0.29445872,-0.33027285,-0.47864628,0.05566034,0.7629407,0.42653728,-0.045109715,-0.15472963,-0.28304473,-0.29242843,-0.16395037,0.17419767,0.79589784,0.49723142,0.024759704,-0.015560607,0.32045698,-0.050208684,0.049975015,-0.2836974,-0.2867982,-0.27559337,0.018150087,0.35884792,0.42862743,-0.15974583,0.36881235,-0.14465307,0.3068892,-0.19890103,-0.4128997,0.24481286,1.0994794,-0.19813931,-0.12810424,0.46369264,0.59947765,-0.24746922,0.41282997,-0.7646799,-0.351924,0.45589212,-0.17327544,-0.44523573,0.20585372,-0.28952822,-0.02109499,-0.75803554,0.29095808,-0.4667609,-0.52301306,-0.5141014,-0.19958523,-3.0359654,0.05024809,-0.1848717,-0.1396675,-0.33013448,-0.31949458,0.12367129,-0.57482153,-0.5278558,0.15999794,0.13877462,0.6474853,-0.15544239,0.07305356,-0.29150528,-0.21399944,-0.43776354,0.32321796,0.10655097,0.30936566,-0.36390516,-0.34982273,-0.009021987,-0.0066979784,-0.33515453,0.03686211,-0.58724433,-0.3803566,-0.07457895,-0.29166606,-0.16924436,0.5575114,-0.29771543,0.06520177,-0.16610684,0.059730645,-0.07451731,0.25976926,0.14830442,0.0797276,0.05598988,-0.13542208,0.080633916,-0.40852696,0.49782732,0.115153335,0.48393673,0.5619036,-0.18399644,0.12578385,0.50704414,0.4767668,-0.009462823,0.8923654,0.20431638,-0.21323779,0.386401,-0.097373724,-0.23387294,-0.6669566,-0.07399019,0.027225744,-0.32423717,-0.47789246,-0.024648717,-0.297185,-0.9061402,0.43640348,-0.09785394,0.33475885,-0.13909028,0.33365005,0.5003755,-0.08944672,0.14455506,-0.01475226,-0.04475898,-0.49604422,-0.403296,-0.65861845,-0.46245536,0.026779149,0.77314055,-0.19858143,-0.10561003,0.04447105,-0.23544554,0.1550611,0.13066678,0.07467724,0.114655234,0.5240432,-0.16639897,-0.631855,0.6397614,-0.076083906,-0.15021743,-0.42095798,0.39454117,0.5123274,-0.66489613,0.40878004,0.30439782,0.0033318442,-0.38228464,-0.5100842,-0.06210894,-0.19731103,-0.17018557,0.26922005,0.08146756,-0.81237257,0.3566851,0.16741362,-0.27444813,-0.6851123,0.62537354,-0.011988491,-0.10509021,-0.121617794,0.31373525,0.2429014,-0.005763023,-0.065467656,0.24176154,-0.50529927,0.26946378,0.082244344,-0.07831731,0.3425403,-0.20578572,-0.17592356,-0.6086988,0.18257542,-0.49175256,-0.30719003,0.5188224,0.017717209,0.018773124,0.2372743,0.14004049,0.3943687,-0.23543918,0.14063397,0.0022917986,-0.23458956,0.58877134,0.3807295,0.5245875,-0.4738235,0.57039744,0.03852007,-0.20861986,0.33323976,0.14330904,0.27006298,0.10032561,0.44321045,0.1509423,-0.13493145,0.28481406,0.8720717,0.42104277,0.44866046,0.02714083,-0.15057674,0.30554435,-0.076266006,0.08543879,-0.07856392,-0.6970779,-0.050942782,-0.19993792,0.09683479,0.4148841,0.06808053,0.20930664,-0.08701206,-0.058555163,-0.06772346,0.14200012,-0.17701556,-1.1191674,0.24408093,0.13407563,0.89343864,0.39937693,-0.12146617,0.084017254,0.6715742,-0.13050516,0.13329807,0.43836465,0.22192028,-0.5362977,0.5632206,-0.50217324,0.51394075,-0.10714577,0.073163874,0.020647287,0.012540753,0.38303837,0.8412331,-0.29652825,-0.10512773,0.049842022,-0.39249662,0.26984537,-0.26458642,0.32171986,-0.52424335,-0.2314559,0.65312546,0.48276788,0.36853462,-0.011176931,0.008951694,-0.14871141,-0.1701182,0.2700098,0.068713106,0.17471448,-0.11632664,-0.62852526,-0.22148369,0.55051,-0.2491839,0.21347019,0.101938166,-0.39470047,0.39373997,-0.02415652,0.017296502,0.017026981,-0.7546302,0.0869345,-0.114671506,-0.3156271,0.4318317,-0.18429378,0.23996851,0.26189378,-0.16484316,-0.29514226,-0.00054352626,0.18134478,0.42963094,-0.10663442,-0.15671088,-0.56373614,0.013003196,0.08748983,-0.2994643,0.06074409,-0.14612553,0.10350002,-0.5925166,0.32712942,-0.15743576,-0.2478495,-0.08884312,-0.19410324,0.054549806,0.71643764,0.025874326,-0.011603764,-0.1775913,-0.02761164,-0.40367675,-0.23116252,-0.06137072,0.13387804,0.11475178,-0.08082662,-0.08184377,-0.19620825,-0.0074479794,0.42672327,0.09959222,0.47603735,0.31546116,0.16181645,-0.3943686,-0.19015686,0.20169054,0.45084122,-0.0026871094,-0.04538945,-0.20225756,-0.46314472,-0.31753293,0.25871867,-0.09884454,0.31541306,0.19495173,-0.28544405,0.6889077,-0.19228734,1.1768081,0.089280486,-0.25490195,0.14388788,0.6294474,0.099016264,-0.14057228,-0.28174204,0.9319789,0.6105346,0.08635555,-0.017513957,-0.19574726,0.017552275,0.1461825,-0.17744121,-0.22282514,0.0062017953,-0.5753921,-0.11039039,0.051802706,0.32673436,0.12168062,-0.096468054,0.045609135,0.25253192,0.04120228,0.38377625,-0.52988696,-0.302523,0.31377554,0.1359817,-0.09564837,0.17470185,-0.45335168,0.34637564,-0.55653423,0.09893642,-0.32300505,0.10941452,-0.1396014,-0.28906563,0.27832446,0.037257917,0.4186744,-0.24240495,-0.50334084,-0.13510503,0.34958526,0.18607333,0.19892646,0.46982303,-0.13603005,0.116845585,-0.001009111,0.6258268,0.9616837,-0.13596314,-0.096776776,0.19676316,-0.49677888,-0.7342953,0.31612954,-0.38426524,0.30842796,0.06734256,-0.076977395,-0.35719672,0.27384147,0.24797519,-0.0602773,0.09030839,-0.7660645,-0.2370896,0.033665664,-0.39540154,-0.20551209,-0.41756684,0.14548601,0.67672646,-0.35215086,-0.23573422,-0.103202105,0.28113577,-0.19842477,-0.52354544,-0.008343786,-0.3712944,0.23296925,0.006053605,-0.3624662,-0.123714484,0.22655395,-0.53503877,0.24303928,0.076823294,-0.39475733,-0.0012700036,-0.2707395,0.11365471,0.77048683,-0.14698593,-0.010873309,-0.38026708,-0.5185603,-0.78657055,-0.45913962,0.030701134,0.4087961,0.06577206,-0.5276181,0.073982,-0.09904639,-0.17398122,-0.18651022,-0.44804463,0.43122143,0.091448106,0.3621684,-0.1104887,-0.8475433,0.25955543,0.05283708,0.03623461,-0.5265426,0.4606433,-0.122972436,0.96531475,0.12564272,0.18881397,0.11073259,-0.48090166,-0.08426554,-0.17777416,0.0047735744,-0.67783004,0.14795555,822 -544,0.5287789,-0.16657697,-0.25173578,-0.20929106,-0.1101653,0.1373631,-0.13737078,0.49794167,0.023322208,-0.43438822,-0.095761724,-0.20767201,-0.08029039,0.33834976,-0.1319618,-0.54421955,-0.14260818,-0.015102268,-0.3619578,0.55532193,-0.5093003,0.30658573,-0.009914905,0.38171464,0.085808,0.29247078,0.23255864,-0.032289933,0.056158423,-0.32284406,0.047896963,-0.20496853,-0.86193687,0.22616395,-0.23765492,-0.3178534,-0.002813667,-0.49543503,-0.34583536,-0.7729315,0.28124228,-0.6039077,0.4564647,-0.0012124191,-0.21711297,0.47437558,0.19929574,0.33842653,-0.1382222,0.040975206,0.12967132,-0.11401976,0.07768134,-0.15502211,-0.12321339,-0.43545678,-0.6390039,-0.00990797,-0.43030173,-0.3165328,-0.27600363,0.13351072,-0.3138092,-0.06718931,-0.08403526,0.41314825,-0.39869756,-0.10588891,0.18865217,-0.18816993,0.29516646,-0.54428595,-0.108293734,-0.11187499,0.09973144,0.04482924,0.057441056,0.3655937,0.11044331,0.50340277,0.04360989,-0.24106137,-0.2982162,-0.13083653,-0.015978027,0.5041059,-0.10423659,-0.3002839,-0.14642331,-0.18480304,0.20078322,0.264435,0.059673376,-0.07904984,-0.031957664,0.012941445,-0.26123548,0.3508219,0.56491053,-0.44113547,-0.40079078,0.25049156,0.58763474,0.16283478,-0.082854204,-0.061491214,-0.021715935,-0.401797,-0.17746462,0.19842383,-0.3193912,0.39307323,-0.062867664,0.17733446,0.5388537,-0.22359405,0.13558309,-0.10942992,-0.13335346,0.10677215,-0.35724017,-0.31385133,0.24931867,-0.4054087,0.14903976,-0.40836605,0.82818466,-0.0036192238,-0.7039607,0.36596534,-0.6355702,0.13269314,0.04501411,0.5972728,0.6472665,0.41489056,0.33125418,0.7248907,-0.33343583,-0.07325857,-0.26775953,-0.019603537,0.112413295,-0.11992083,0.21009997,-0.36782694,0.10242308,0.068491414,0.06530579,-0.059355717,0.43674755,-0.49210766,-0.042512923,0.1643243,0.97296727,-0.21437414,0.017793706,0.6737337,1.2605741,1.1066041,-0.025721332,1.0056398,0.24993852,-0.24505278,0.19676645,-0.374672,-0.45859733,0.24910401,0.33314008,0.1453104,0.28700665,0.05176754,-0.09964586,0.38919148,-0.48181105,0.047443133,-0.031805415,0.20012967,0.12456637,0.03131,-0.40478185,-0.23630509,0.07914222,-0.06771314,0.23247518,0.243643,-0.44069746,0.12614688,-0.07149102,1.5089748,-0.05332458,0.25135586,0.21425197,0.49740982,0.15792452,-0.11526727,0.11445236,0.24739315,0.2497668,0.019894293,-0.65409726,0.3128247,-0.28179303,-0.5317055,-0.10074662,-0.4011875,-0.04747491,-0.052682716,-0.4670941,-0.057901748,-0.119471245,-0.4349229,0.4067532,-2.7644212,-0.18221693,-0.06426754,0.3137662,-0.43630695,-0.3214459,-0.0733373,-0.44714615,0.65619856,0.3433467,0.3600379,-0.54723865,0.5369893,0.49438223,-0.3973766,-0.104197025,-0.59391934,-0.02659606,-0.08129014,0.36224332,0.05305583,-0.101798765,-0.11225844,0.21701555,0.5936442,0.1952002,0.020788822,0.2162683,0.31919962,-0.107925765,0.5126105,-0.00801989,0.33264646,-0.3306202,-0.09379434,0.39626998,-0.52267486,0.13219802,-0.23985203,0.20457585,0.26108757,-0.37671927,-0.7890892,-0.6636872,-0.5447921,1.1534451,-0.2336448,-0.5449258,0.29613787,-0.24897572,-0.05738266,-0.06345341,0.6167112,-0.23001559,-0.006485094,-0.5795426,0.07523566,-0.13906096,0.25380614,0.00674639,0.12483933,-0.6026866,0.8279527,-0.14927766,0.47333163,0.15688594,0.34444094,-0.264048,-0.44750947,0.045915384,0.8630332,0.4089126,0.01584807,-0.12229895,-0.20915692,-0.21783376,-0.15772732,0.09861476,0.6149858,0.69451135,0.043165985,-0.052426457,0.18748198,-0.25059527,0.011577517,-0.11322279,-0.3151982,-0.13531944,0.0031650749,0.65175766,0.4320492,-0.058981128,0.34341478,-0.13711473,0.31076506,-0.30979612,-0.29206172,0.44040886,0.9552517,-0.1105671,-0.046521302,0.5027312,0.53454906,-0.17846404,0.5008406,-0.86295265,-0.4278254,0.5493045,-0.20792641,-0.5084384,0.043298673,-0.2718716,-0.05655126,-0.76536083,0.120604835,-0.37528205,-0.36364666,-0.5535611,-0.31933898,-3.1460173,0.03585138,-0.010204613,-0.10425753,-0.15311913,-0.07368277,0.24538873,-0.5390294,-0.47237256,0.08134277,0.06210078,0.6281463,-0.048420075,0.117630735,-0.3462822,-0.23345123,-0.55381936,0.1956861,0.02948308,0.33034652,0.08224111,-0.16552015,0.06851341,-0.12283255,-0.5236339,0.056991525,-0.38496098,-0.3137961,-0.31997004,-0.43529242,-0.34212667,0.6131384,-0.39039913,0.1520727,-0.18248954,0.00015371187,-0.024958534,0.4348674,0.25082272,0.22971812,0.09559829,-0.14186876,-0.065896176,-0.36618468,0.29235896,0.18641792,0.25543234,0.48013043,-0.27467233,0.09603809,0.38869953,0.5051719,-0.022287203,0.77128804,0.42850828,-0.03176104,0.3884489,-0.3470262,-0.06610765,-0.43730304,-0.28920034,-0.021448387,-0.25710946,-0.54141027,-0.20326164,-0.32522014,-0.793593,0.3046722,-0.058294814,0.28839442,-0.037445754,0.2681434,0.42995057,-0.1841055,0.018258061,0.021401823,-0.073659666,-0.44986483,-0.39920622,-0.60953856,-0.40529993,0.08581734,0.7649547,-0.060261033,-0.085943855,0.060023207,-0.0325028,0.013063704,0.008824289,0.034620576,-0.06440044,0.25470325,0.10292793,-0.6157552,0.4951271,-0.05009975,-0.23830129,-0.56275356,0.33385855,0.6498361,-0.47555137,0.40374058,0.22857706,0.20915772,-0.12577346,-0.56048757,-0.0008510138,0.033009887,-0.19666718,0.25765175,0.029478695,-0.86160195,0.44377038,0.06609037,-0.17966314,-0.77194035,0.43628365,-0.06268096,-0.37835774,-0.21748471,0.33080104,0.38063097,0.055631578,-0.020439481,0.32367736,-0.6565421,0.17405517,0.23907427,0.1133784,0.6027876,-0.18327613,0.054933242,-0.5946713,-0.006368088,-0.5550381,-0.36221024,0.23640142,0.23381226,-0.0031541544,0.4410181,0.09381736,0.3959364,-0.08263988,0.19678195,-0.032181323,-0.1852,0.4688231,0.44460955,0.46282938,-0.3142744,0.5993231,0.09618716,-0.10139419,0.05625685,-0.024029756,0.39747092,-0.036301877,0.2994923,-0.17839627,-0.19541346,0.15376507,0.46102425,0.22117534,0.39569142,0.07225498,-0.2058293,0.3512547,-0.052904535,0.05451432,-0.040691618,-0.56915003,0.04981432,-0.06201584,0.08223132,0.50481427,0.22169876,0.34761134,0.0033802178,-0.1231414,0.10459799,0.26449636,-0.51794994,-1.1143551,0.33757597,0.107294045,0.8265968,0.6645889,-0.07959913,0.10336452,0.6225367,-0.08252986,0.04646272,0.36423373,0.2700519,-0.42320198,0.650482,-0.76855075,0.4668184,-0.051301636,-0.04771923,-0.03604263,0.096924625,0.5594991,0.70238256,-0.1982385,-0.052902214,-0.09463991,-0.21356817,0.13801643,-0.28483424,0.40021706,-0.5115154,-0.2602962,0.6022313,0.40725932,0.35897273,-0.23278165,-0.12735145,-0.031022957,-0.13479601,0.226016,-0.09760158,-0.10475788,0.024641952,-0.630529,-0.3131368,0.40291864,-0.24180944,0.14281715,0.17384055,-0.2693103,-0.0060248547,-0.09270104,-0.023340633,0.08677713,-0.71350086,0.04558054,-0.24453112,-0.21114948,0.4308731,-0.2693479,0.2552769,0.070462815,-0.04126864,-0.15420547,0.04787624,0.25814208,0.56545895,0.082734585,-0.19869627,-0.5155981,0.057661373,0.057638466,-0.34682485,-0.07736908,-0.1498114,-0.055535458,-0.6712112,0.41197863,-0.19519906,-0.1739727,0.2350279,-0.1844169,-0.072285905,0.66463363,-0.06538535,-0.0010014857,-0.09401572,-0.41362947,-0.14856799,-0.15690954,-0.049444217,0.31397328,-0.08388392,-0.14438947,-0.07677955,-0.08748882,-0.04823179,0.38836527,0.1794192,0.31041738,0.307621,-0.0054497058,-0.31979808,-0.14290668,0.06486877,0.31457585,0.08146671,-0.031751573,-0.21301654,-0.4499971,-0.36018294,0.2581156,-0.100383684,0.2089273,0.057837762,-0.23077056,0.71089983,0.13710243,1.1198577,0.16916206,-0.21837445,0.15572044,0.6000962,-0.010725358,0.05273364,-0.49660444,0.88665265,0.50282276,-0.06190196,-0.13580512,-0.1976516,-0.053020425,0.33234707,-0.20324108,-0.14124067,-0.13257119,-0.7986373,-0.284598,0.14456522,0.3211131,0.059472736,-0.13475093,-0.1253473,0.2808612,0.0033556712,0.62223285,-0.32068923,-0.08290958,0.4548461,0.13143684,-0.015358133,0.098740526,-0.333345,0.33663124,-0.72194356,0.19098404,-0.38829938,0.012693865,-0.15759002,-0.2672847,0.30287144,0.16204406,0.28088334,-0.20076537,-0.40430036,-0.04390112,0.40645376,0.15165949,0.26267463,0.5129258,-0.16205965,0.11798679,-0.06764429,0.54121786,1.228195,-0.256084,0.031318326,0.23321077,-0.49198171,-0.79579526,0.3027068,-0.35354295,0.12270276,-0.10622261,-0.31424454,-0.31695297,0.22792356,0.18258801,-0.10261462,0.22273481,-0.597614,-0.38063034,0.11536801,-0.25782272,-0.16281784,-0.18744911,0.21039477,0.8681057,-0.2554565,-0.14638874,0.030417873,0.3752676,-0.22411285,-0.6756765,0.0772888,-0.40358347,0.21565826,-0.053693354,-0.31525177,-0.08103604,0.17507073,-0.49818626,0.026468536,-0.004288316,-0.35394424,-0.027629588,-0.34935522,0.13575046,0.72998303,0.04121271,0.02839623,-0.61329985,-0.40663132,-0.82942486,-0.42414162,0.3595695,0.12899326,-0.10921504,-0.31428257,0.035399266,-0.2660658,-0.08401736,-0.08902439,-0.51081944,0.23684978,0.21985807,0.4507721,-0.06693638,-0.6080616,0.09376123,0.14427564,-0.23216088,-0.5435735,0.4302731,-0.15659308,0.8090552,0.018689612,-0.0102652935,0.034263548,-0.5239087,0.11737045,-0.22312973,-0.14046887,-0.6890567,0.21208885,824 -545,0.26456288,-0.094048806,-0.38489822,-0.201336,-0.39499998,-0.03941519,-0.19102111,0.27843046,0.24737045,0.036578704,-0.09830223,0.0077526057,0.026140882,0.28814578,-0.118386544,-0.62671864,-0.055408407,0.012003235,-0.5314812,0.39520583,-0.6298795,0.36649868,-0.18885568,0.28952566,0.07774838,0.43289924,0.1710699,-0.0035251293,-0.090516046,-0.22765276,-0.3288684,0.077605374,-0.3029758,0.00971601,-0.17153242,-0.22105391,0.18188299,-0.39599594,-0.3174066,-0.65197533,0.28921604,-0.8309213,0.5144924,-0.11362548,-0.19998474,-0.11969836,0.33398032,0.30180326,-0.19400035,-0.027863381,0.13459797,-0.23029126,0.06199571,-0.3425356,-0.18852435,-0.4046637,-0.35136512,-0.07234454,-0.6242625,-0.45432466,-0.23001206,0.2247164,-0.4104066,-0.07238867,-0.025824903,0.378273,-0.39563847,-0.019162608,0.22398376,-0.260297,0.23322645,-0.64101225,-0.033658523,-0.041648217,0.42205566,0.039417513,-0.13313842,0.47325864,0.3723235,0.19646807,0.1796395,-0.23773329,-0.32751727,-0.24427693,-0.12921154,0.5062693,-0.282522,-0.41553682,-0.15428136,0.10113963,0.33158806,0.4763625,-0.040909786,-0.11091236,0.059710737,-0.053773813,-0.27276573,0.62937325,0.5944859,-0.23849304,-0.2702203,0.27683204,0.3374338,0.16550119,-0.30194065,-0.075836696,-0.040309094,-0.4150097,-0.13471007,-0.06285691,-0.06670529,0.49522644,-0.10923082,0.19569795,0.8137515,-0.08274207,0.0781021,-0.019569648,-0.0009947792,-0.13220502,-0.28728753,-0.16548982,0.027872456,-0.5483677,0.10598166,-0.1371018,0.68845123,0.14764546,-0.69762474,0.41199487,-0.4868402,0.09575875,-0.036876738,0.5224041,0.6135484,0.45424774,0.46280384,0.7896581,-0.15082149,0.17279007,0.05985952,-0.48054454,0.16642587,-0.21714756,0.21542752,-0.4818819,0.16503029,0.03911984,0.035584483,0.24986945,0.30931598,-0.52294755,0.025201125,0.31812388,0.84990215,-0.2444567,0.112383604,0.666961,1.2202551,0.8291892,-0.077445254,0.76002485,0.3051514,-0.28430817,0.2264423,-0.33363962,-0.54842097,0.14006473,0.33075544,-0.09992554,0.3453335,-0.09504733,-0.15291645,0.34705082,-0.3688523,-0.10042628,-0.08989755,0.29399422,0.1823362,-0.05886325,-0.46280465,-0.2266821,-0.04416791,-0.02295076,0.15616813,0.23877013,-0.3312036,0.3564434,-0.20584168,1.1169808,0.048140366,0.05619738,0.03165566,0.84391266,0.2897474,0.044657458,0.026997354,0.5119489,0.24284413,0.017782638,-0.6183071,0.25458303,-0.3616722,-0.31329867,-0.16044119,-0.34227034,-0.09273209,0.26278624,-0.362557,-0.09161595,-0.042341504,-0.06899479,0.44668308,-3.0743282,-0.3073294,-0.16609736,0.31020853,-0.19476901,-0.16567813,0.11417641,-0.4314158,0.3204395,0.36253732,0.47528034,-0.6124722,0.3733992,0.5426073,-0.4147523,-0.23607667,-0.6345847,-0.05656327,-0.070023045,0.5909671,0.08975084,-0.18234228,-0.06344142,0.11016374,0.774778,0.1617383,0.20204762,0.27640566,0.39188352,-0.03300155,0.46016413,-0.021281974,0.5459746,-0.15632269,-0.12434263,0.14734808,-0.29901728,0.057501633,-0.19079255,0.042598326,0.6171649,-0.38562045,-0.851322,-0.50393283,-0.15002914,0.9817931,-0.21301726,-0.49780387,0.2824314,-0.3134567,-0.15221307,-0.02419793,0.6857749,-0.03370797,0.054163866,-0.5365738,0.1889899,-0.11531271,0.055646658,0.055629082,-0.045642648,-0.3136707,0.6099316,-0.08530811,0.5426045,0.21657619,0.2136413,-0.24973401,-0.24158593,0.011280711,0.48850876,0.3709154,-0.060148437,-0.1357822,-0.18493883,0.10126425,-0.4200799,0.06922091,0.617136,0.7532953,-0.06877019,0.104790054,0.24051692,-0.21150514,0.08455961,-0.06893768,-0.16115102,-0.034464534,0.12641051,0.42620426,0.667564,-0.16799705,0.5556753,-0.09347349,0.22679469,-0.11844873,-0.4831397,0.6571523,0.42953926,-0.17813058,-0.073746376,0.43802664,0.48314857,-0.4346807,0.39837477,-0.73752266,-0.05076364,0.6517969,-0.17793755,-0.5068606,0.161151,-0.18206705,0.04613066,-0.79256666,0.31164727,-0.2705287,-0.6153761,-0.45581612,-0.19854961,-3.82605,0.14995384,-0.29726171,-0.1207494,-0.2425575,-0.079962626,0.39384627,-0.5899102,-0.39347878,0.12849036,0.29000258,0.5619908,-0.04732986,0.025301496,-0.24285449,-0.07975495,-0.16638036,0.16157648,-0.034466077,0.32637683,-0.21413799,-0.2877386,0.005121265,0.016827762,-0.6554485,0.09674632,-0.52645814,-0.33879218,-0.08566247,-0.6322978,-0.21982767,0.681982,-0.17729579,-0.007049898,-0.29627112,0.11314229,-0.24904697,0.20352308,0.040744107,0.16992326,0.0807256,-0.023508446,0.33681816,-0.3838609,0.47498825,-0.17685576,0.38793725,-0.027306322,0.0502452,0.11588515,0.49553066,0.58588165,-0.05660961,0.9684516,0.35535696,-0.23958251,0.29306173,-0.39883962,-0.24976222,-0.514996,-0.47087127,-0.0654278,-0.28577426,-0.43727764,-0.02929874,-0.4032713,-0.7504143,0.5692101,-0.027700245,0.3685351,0.036793254,0.19929631,0.45767015,-0.07227407,-0.017166773,0.055106454,-0.20554855,-0.58861834,-0.07065795,-0.56043094,-0.43475476,0.02660687,0.6458513,-0.2671962,-0.07983007,-0.049296822,-0.32744098,-0.15979664,0.043273013,0.24801548,0.26725587,0.3023328,-0.16483834,-0.61645615,0.22878888,-0.07298692,-0.09802328,-0.6286809,0.114646144,0.69552505,-0.661347,0.5660992,0.36018762,0.18341373,-0.16692717,-0.50343984,-0.19180216,0.08207046,-0.06680905,0.5238694,0.11338683,-0.90625,0.46395922,0.27122006,-0.40573612,-0.52856475,0.35291794,-0.07178839,-0.28612018,-0.09786794,0.2385938,0.312079,-0.14235333,-0.16092917,0.18757315,-0.37291104,0.2765669,0.10854457,-0.0017905576,0.4046872,-0.08348232,-0.2691626,-0.67818785,-0.07367643,-0.5452683,-0.2327341,0.256251,-0.012265633,0.17408514,0.118726805,-0.041668184,0.2760746,-0.22915266,0.1049241,0.075410075,-0.35953856,0.14804046,0.3824857,0.26242667,-0.46654558,0.55230874,0.010040483,-0.11459862,0.090483405,0.014077987,0.35171887,0.016290631,0.48384094,-0.1882064,-0.20028113,0.28161082,0.8730081,0.23893237,0.49670783,0.16137931,-0.050450247,0.40308222,-0.07970213,0.04566001,0.16246569,-0.43972754,-0.069178045,-0.10338549,0.19191687,0.38876635,0.3203636,0.2368754,0.07542569,-0.17431866,0.06627693,0.2099859,-0.18033941,-1.1845338,0.5384029,0.36670092,0.82389647,0.16490558,0.25083202,-0.4181325,0.9036845,-0.18510517,0.011964236,0.50522465,0.15641816,-0.37125254,0.5990478,-0.5680363,0.5814268,-0.0129281515,-0.17475359,0.1162865,0.21214499,0.35144708,0.73956805,-0.28260657,-0.0014620764,0.07592567,-0.2934936,-0.09535759,-0.21578583,-0.06872082,-0.3652064,-0.24764648,0.562212,0.32995376,0.13899052,-0.06561604,-0.09148437,0.10532235,-0.078968406,0.11628647,-0.083828755,-0.050976098,-0.01913869,-0.5811726,-0.24883799,0.4794846,0.08395266,0.19978453,-0.24638627,-0.16084024,0.11746757,-0.24345589,-0.085454784,0.062157035,-0.42260653,0.17440888,-0.052508175,-0.5813318,0.7286145,-0.3110283,0.20814545,0.15140009,0.046982165,0.057369355,0.41208765,0.11564968,0.77383167,-0.2553658,-0.18727013,-0.4508266,-0.0911202,0.20122324,-0.22746423,-0.014743024,-0.36317247,-0.044760913,-0.5084452,0.5562153,-0.26972327,-0.28169027,0.11956209,-0.20817472,0.0546983,0.48071003,-0.17744586,-0.22000872,-0.037355542,-0.048946075,-0.33186302,-0.13917424,-0.25499535,0.2621234,0.23381482,0.04739174,-0.12300069,-0.29659918,-0.12555881,0.57074773,-0.060719777,0.47456858,0.09634558,0.03909105,0.12675762,-0.16046503,0.14572461,0.51505435,0.04974968,0.07197941,-0.33588475,-0.340199,-0.31967798,-0.014970609,0.0018597314,0.15688954,0.09135695,-0.2195176,0.8108932,-0.09605602,1.1666006,-0.041830268,-0.4022339,0.10017002,0.609209,-0.038567003,0.1590474,-0.34203365,1.0148252,0.51303345,-0.108114004,-0.1060635,-0.59412086,0.026018424,0.4208786,-0.3623279,-0.008210952,-0.03701232,-0.5492988,-0.2801798,0.30148688,0.12986767,0.19639824,0.045670662,0.025691016,0.017087204,0.18580341,0.36647764,-0.5172958,-0.109937154,0.31695843,0.2531415,0.0067223865,0.099583305,-0.45451075,0.35442224,-0.53019845,0.121796384,-0.4977748,0.16033934,-0.28549498,-0.38446555,0.12777945,-0.25301355,0.3154955,-0.104818724,-0.30573294,-0.044376995,0.39866427,-0.078510486,0.1455846,0.52401894,-0.23272948,-0.06597846,0.014557698,0.66857624,1.1915867,-0.33035257,-0.008076931,0.21193543,-0.45972368,-0.629168,0.35323578,-0.2218399,-0.09772805,-0.01969458,-0.23495401,-0.46533418,0.25196072,0.118720844,0.06330527,-0.023272863,-0.40835205,-0.42076287,0.22660756,-0.3624566,-0.18566588,-0.19198617,0.45450285,0.6951958,-0.26356,-0.32986578,-0.023024108,0.45254332,-0.092851765,-0.46981582,0.16368881,0.0141090285,0.45125332,0.18629102,-0.3419653,-0.07317476,0.16873913,-0.4375101,0.14117248,0.21221802,-0.42186883,0.25343376,-0.16180232,-0.069054075,0.8784785,-0.25178128,0.026920367,-0.7623077,-0.61785,-0.83503217,-0.5728192,0.07177029,0.27825305,-0.038083673,-0.39865038,0.06967565,0.029135272,-0.11538742,0.013615553,-0.48796892,0.34190598,0.019824479,0.5613101,-0.42261174,-0.7952069,0.08396018,0.17805025,-0.12573576,-0.7130924,0.6763216,-0.15652145,0.82412225,0.14519127,-0.044097725,-0.024872204,-0.20167623,0.09746138,-0.4145465,-0.41046086,-0.8119087,0.070621885,825 -546,0.5750419,-0.29822773,-0.60871166,-0.19025686,-0.26031294,0.36867192,-0.21635354,0.166295,0.04942525,-0.64775664,-0.19790909,-0.30010775,0.068375506,0.42379984,-0.17670664,-0.6106411,-0.10300609,0.062769614,-0.59182113,0.3691419,-0.54216987,0.45895866,0.26644292,0.3342118,0.070514895,0.27470186,0.29738092,-0.12975176,-0.28917694,-0.058200717,-0.19319975,0.08344994,-0.79319376,0.10945574,-0.12211677,-0.41954878,-0.077479824,-0.3783412,-0.1318773,-0.70681137,0.24693976,-0.9270402,0.5016981,-0.028948503,-0.3244287,0.15738957,-0.12938948,0.36997846,-0.32766768,0.19711907,0.21912707,-0.2784643,-0.041242864,-0.28731292,-0.26955536,-0.60798347,-0.6142572,0.19194032,-0.60434824,-0.15803719,-0.15168118,0.117321946,-0.36024502,0.014708562,-0.19308138,0.21643983,-0.43030596,-0.14412607,0.28521737,-0.24249192,0.17494099,-0.39903593,-0.17568919,-0.16951323,0.26360753,-0.20136857,-0.30060938,0.07279261,0.37714416,0.5895626,0.053055055,-0.25215793,-0.28550124,0.025829608,0.21314432,0.57251275,0.061438207,-0.33399242,-0.3217413,-0.0635338,0.29299545,0.18671604,0.15506196,-0.44746128,0.016563343,0.071074,-0.29957813,0.28904286,0.49121195,-0.41320106,-0.2610692,0.45910594,0.5627354,0.08574451,-0.1223654,0.21244867,0.004616114,-0.47672424,-0.19216989,0.4078152,0.07718444,0.75298256,-0.21560873,0.22504722,0.6995286,-0.28120908,0.12651984,-0.21845408,-0.16621804,-0.18736658,-0.07787321,-0.20493713,0.29714224,-0.5196123,0.039922256,-0.42441615,0.80469745,0.22284043,-0.8161483,0.51267207,-0.50826526,0.16736913,-0.02789934,0.69668776,0.72388464,0.38254592,0.15540393,0.7340927,-0.6055278,0.12556502,-0.08844789,-0.4585702,0.037481673,-0.206898,0.008945365,-0.34547406,0.08562113,0.011754138,-0.053854108,-0.10802819,0.50256664,-0.4177301,0.026107516,-0.038463928,0.52895766,-0.45707455,-0.119887926,0.94860893,0.8155147,1.0224702,0.16729793,1.3994291,0.55574435,-0.13640778,0.046856754,-0.26806554,-0.56364524,0.1790197,0.30241475,0.32816252,0.5500647,0.08600492,0.0832487,0.5079642,-0.15489967,0.16583788,-0.11196073,0.036935575,-0.04345313,-0.048139714,-0.4766454,-0.15513454,0.082960464,0.026824066,0.0034573716,0.2965527,-0.1869032,0.61862266,0.21825825,1.5465573,-0.07196156,0.09894601,-0.110824145,0.23182826,0.17921911,-0.26903418,0.014741672,0.28054744,0.4501064,0.013294952,-0.5588869,-0.053883668,-0.15979458,-0.48368463,-0.22239871,-0.311989,-0.03589711,-0.3021448,-0.49435928,0.0017086182,0.1787934,-0.31943315,0.47551933,-2.247286,-0.32949552,-0.19864771,0.37891313,-0.27501518,-0.47289854,-0.24709003,-0.49214977,0.20124719,0.46993423,0.29009777,-0.7310275,0.4008473,0.3059903,-0.26436195,-0.17676386,-0.7471256,0.025962962,-0.194497,0.35909352,-0.09973999,-0.097348996,-0.1168886,0.14662826,0.6371011,-0.19754817,-0.09507696,0.07979105,0.56883895,0.19774994,0.6118221,0.25566167,0.56226504,-0.23441179,-0.059362598,0.47514644,-0.38297114,0.48782128,0.16381046,0.18400894,0.33982256,-0.5726407,-0.7850277,-0.70619136,-0.6045595,1.1791676,-0.38315335,-0.34160572,0.0077290833,0.06653648,-0.43760258,-0.15379985,0.42927,-0.08927912,0.01795071,-0.7795878,-0.121327765,0.09669944,0.13255328,-0.09693503,0.2500553,-0.21850537,0.6366763,-0.15431388,0.49768332,0.44431594,0.22077908,0.019515038,-0.3978929,0.10660461,1.0945708,0.33987042,0.1407236,-0.30852884,-0.29277235,-0.26618472,-0.13333875,0.19508564,0.42417237,0.87636167,0.1313335,0.09929048,0.38784027,-0.044758167,0.08048049,-0.124767914,-0.23518653,-0.07844807,0.0054361564,0.6056629,0.54358375,-0.14103104,0.5022197,-0.33694023,0.16083154,-0.16922936,-0.49830148,0.56746036,0.9087129,-0.073370114,-0.252029,0.4279916,0.4099397,-0.6219015,0.32641038,-0.6671253,-0.17217363,0.6572947,-0.16435345,-0.39181545,0.36145976,-0.34153876,0.2124678,-1.0441844,0.28582805,-0.018559124,-0.4241707,-0.58459777,-0.2922028,-3.6115935,0.2455362,-0.052555975,-0.24628446,-0.081953086,-0.34586987,0.36706644,-0.5080338,-0.5601137,0.017428463,-0.05240423,0.59512967,-0.0035633552,0.23295236,-0.43927917,-0.21570103,-0.32845113,0.21558587,0.15714686,0.22445562,-0.14278044,-0.3456378,0.074457996,-0.44784102,-0.3899184,0.04729157,-0.7030431,-0.713968,-0.18537886,-0.29784232,-0.28998443,0.7273303,-0.31767997,-0.094020225,-0.12559913,-0.120225064,-0.24421656,0.3577045,0.1544548,0.18865551,0.06770874,0.04739225,-0.14416255,-0.459436,0.19625223,0.16170917,0.14740571,0.459503,-0.26855007,0.28941676,0.5785453,0.6546427,-0.003290866,0.6837403,0.23914245,-0.0167091,0.3220878,-0.2893147,-0.25442615,-0.8404929,-0.36414686,-0.31296635,-0.4554586,-0.586996,-0.08912403,-0.29077703,-0.84467465,0.50802934,0.05479685,0.1347781,-0.12778881,0.46530262,0.4134958,-0.17582467,0.024528628,-0.12068597,-0.17417637,-0.5128843,-0.5382319,-0.6888893,-0.7547099,0.17957364,0.97627145,0.018965257,-0.30189732,-0.11338271,-0.30114082,0.18047953,0.16113259,0.18930832,0.22250427,0.3912678,-0.12255786,-0.68923366,0.45858398,-0.11274673,-0.27269465,-0.5175508,0.0023183057,0.8609253,-0.6546687,0.4561483,0.41255498,0.13818641,0.11178122,-0.43014708,-0.3127604,0.10840057,-0.2927794,0.484613,0.09099481,-0.635677,0.45213398,0.30427322,-0.12454205,-0.6442503,0.5356382,0.013133368,-0.023914158,0.14025046,0.31782976,-0.022389691,-0.03385038,-0.27188325,0.15035649,-0.5955192,0.123063885,0.5675937,0.10094959,0.3187508,-0.04496795,-0.24085209,-0.6512531,-0.09435543,-0.5658378,-0.21097258,0.0891575,0.043895762,0.24054368,-0.011246145,0.10646547,0.45656252,-0.37680846,0.0929907,-0.03694988,-0.15482426,0.29082686,0.42241123,0.24737807,-0.5486565,0.721846,0.016060421,0.1611789,-0.12772289,0.04729644,0.45149687,0.44433194,0.26733842,0.03156359,-0.1804239,0.15887675,0.658924,0.31625122,0.6318847,0.4085628,-0.26143977,0.32824248,0.3545613,0.34381086,-0.025245955,-0.16323288,-0.0049602687,0.048489183,0.19471373,0.38321605,-0.036238294,0.40892595,-0.19471721,-0.078117184,0.21547171,0.045341026,-0.11580556,-1.0010196,0.24978288,0.3030555,0.52040124,0.36725992,-0.07110847,0.17310672,0.34320834,-0.46998248,0.05727758,0.281,-0.029704938,-0.56831425,0.51907206,-0.6471229,0.43247604,-0.31040397,0.029831333,-0.016029255,0.12303317,0.5205908,0.97706306,-0.120241724,0.08223407,-0.12490296,-0.13931137,0.15274045,-0.5019459,0.047664557,-0.5140146,-0.3009119,0.7747431,0.3498159,0.41572037,-0.18248422,-0.11146567,0.07976328,-0.1044897,0.18042825,-0.018176079,0.13031492,0.03351854,-0.6448327,-0.37756613,0.5702029,-0.009329625,0.14909445,0.16955592,-0.5656331,0.3535706,-0.107425995,-0.004268161,0.0037521187,-0.7052166,-0.0735193,-0.45061466,-0.69381917,0.27214888,-0.32485124,0.2895305,0.2563192,-0.05358002,-0.3462815,0.17820574,0.21516253,0.8964841,0.0457013,-0.27607316,-0.41631746,0.16842867,0.5211951,-0.39826038,-0.023596676,-0.18075489,0.17373517,-0.54660165,0.4794646,-0.16720673,-0.3401176,0.033406306,-0.02745172,-0.062008176,0.5301739,-0.3090163,-0.11235608,0.19975519,-0.013328178,-0.18016113,-0.07923615,-0.31525534,0.28511852,-0.015897984,-0.09841783,0.18358564,0.013595939,0.049069416,0.3923953,0.22897355,0.29310983,0.37634993,-0.08301812,-0.420234,-0.05207434,0.016928937,0.41970465,0.22329584,-0.31756374,-0.26988187,-0.37958026,-0.22793119,0.26078835,-0.1242715,0.23778686,0.15137215,-0.5406395,0.811053,0.045074265,1.2549216,0.10990076,-0.42810312,0.07134843,0.49776655,0.06526653,-0.054962687,-0.36181682,0.8512272,0.49937662,-0.14838502,-0.20603666,-0.3930964,-0.38084576,0.18182942,-0.37807587,-0.1238125,-0.08644957,-0.64679146,-0.21798816,0.061920803,0.17988454,0.095685445,-0.057172365,0.22861668,0.18064702,-0.009143336,0.4593387,-0.50244755,-0.14964354,0.30401167,0.17313763,-0.13493581,0.08698956,-0.27510732,0.5387572,-0.69411033,0.13092084,-0.43460554,0.088726334,0.16561034,-0.26192316,0.22755113,0.144102,0.28993586,-0.3491261,-0.44247907,-0.36021355,0.6909076,0.23987664,0.39541906,0.6664166,-0.31263193,-0.1429117,0.21224162,0.41716224,1.4865507,-0.11937915,0.14872561,0.45363766,-0.41159248,-0.6198722,0.3467397,-0.3899261,0.36550993,-0.15109906,-0.3978315,-0.44335794,0.28225964,0.14089432,-0.030801306,0.15753531,-0.41304228,-0.28323954,0.5217764,-0.37037155,-0.35224232,-0.33504167,0.3547239,0.65590245,-0.44083112,-0.29412958,-0.09861655,0.23525958,-0.46698967,-0.39847192,-0.0027113557,-0.26225665,0.42535204,0.14301082,-0.24541105,0.13585906,0.2587239,-0.50430006,0.096812606,0.3229062,-0.43885168,0.07300043,-0.28280026,-0.13459526,1.0875059,-0.028201384,0.052350406,-0.7238115,-0.588733,-1.099419,-0.42643887,0.33115053,0.083303936,0.11377888,-0.4502035,0.019546509,-0.025473831,0.01598519,0.10904855,-0.52438056,0.41481823,0.23412177,0.5145727,0.013677342,-0.9033485,-0.029706508,0.08428347,-0.35164514,-0.5364547,0.52962077,-0.14427693,0.6359124,0.14856361,0.2318542,0.12780915,-0.57247955,0.3336206,-0.30532032,-0.06377115,-0.80293983,0.051284622,831 -547,0.2984393,-0.1756135,-0.39622456,-0.07861288,-0.33287245,0.048629384,-0.11746575,0.53910244,0.133103,-0.12167524,-0.26533037,0.008931518,-0.044684935,0.18941699,-0.15003228,-0.5459176,-0.13029878,0.08461936,-0.5374476,0.48658818,-0.4042274,0.3604657,0.067552775,0.32060233,0.011016356,0.28135937,0.1052347,-0.1286132,0.011391683,-0.083868615,-0.07935774,0.3221884,-0.6501726,0.30697188,-0.2862216,-0.25912994,0.072102346,-0.30972433,-0.18410508,-0.6792825,-0.021933433,-0.74328524,0.52645713,-0.13260016,-0.27060756,-0.1663324,0.06853547,0.2828166,-0.32905802,0.05226994,0.32503992,-0.116891675,-0.11184544,-0.20199236,0.19296823,-0.57065266,-0.46020684,-0.11834236,-0.500894,-0.1950382,-0.11281172,0.22191034,-0.30964836,-0.10377534,-0.21851282,0.276589,-0.4664313,0.084181,0.16143677,-0.28274742,0.2161581,-0.5936541,0.08349131,-0.13996415,0.39775792,-0.21282569,-0.16220129,0.3454278,0.33094186,0.22642152,0.1761717,-0.21815915,-0.07559283,-0.13360196,-0.04548881,0.46157694,-0.27238908,-0.3871488,-0.14583956,0.069270544,0.3455647,0.260586,-0.00018777166,-0.07381212,-0.10469792,-0.10838453,-0.016211884,0.28605705,0.3939375,-0.19675295,-0.29981628,0.30562305,0.47313255,0.3241697,-0.120195605,0.026928868,0.026927412,-0.5021344,-0.1819537,0.060339026,-0.084887795,0.506518,-0.07773751,0.18366806,0.83763885,-0.03428969,-0.03829791,0.15974712,0.09820449,-0.13201019,-0.22754773,-0.07284596,0.17911656,-0.6014813,0.099508025,-0.18022501,0.7510673,0.11275605,-0.73657596,0.29569364,-0.4708257,0.012205013,-0.03671,0.58488506,0.63400507,0.5738235,0.14286439,0.64546216,-0.2916073,0.1717193,0.021854391,-0.41536543,0.22154272,-0.19748116,-0.17064145,-0.48731306,0.029063387,-0.13758825,0.08840186,-0.006442004,0.25873625,-0.6454681,-0.117480434,0.24719082,0.61812145,-0.33963603,-0.14491014,0.65265083,0.96574974,0.74956214,-0.022070233,1.1184936,0.26925737,-0.11736141,0.13203792,-0.15144245,-0.61816174,0.19353321,0.3914698,-0.4214597,0.3211389,-0.039738897,-0.15431438,0.23383379,-0.34599993,-0.038383156,-0.006031326,0.3071708,-0.08808967,-0.089826986,-0.5056471,-0.24382648,0.054036915,-0.03449545,0.015460538,0.27274886,-0.16283607,0.36610943,0.20860727,1.2294226,-0.084055245,0.07622779,0.14545669,0.453662,0.26296636,-0.1743813,-0.13865077,0.47641498,0.34609693,0.07230313,-0.44730085,0.27905807,-0.33331585,-0.47012252,-0.13297233,-0.23680855,-0.19663107,0.13522372,-0.49127647,-0.2418369,-0.013748293,-0.18008618,0.48535705,-2.7627237,-0.08523713,0.011136317,0.38107055,-0.39698347,-0.32690287,-0.04496755,-0.4796885,0.17066832,0.30710894,0.47695494,-0.66046387,0.34003243,0.5068416,-0.3484622,-0.20376517,-0.6096626,-0.08824941,0.116579376,0.3862402,0.057195127,-0.17654392,-0.1831689,0.07383585,0.54393303,-0.09573369,0.23021217,0.4546018,0.30257133,0.036762152,0.37212324,-0.13467373,0.58647096,-0.22133109,-0.12913844,0.33893082,-0.24689195,0.29669207,-0.07609987,0.021712754,0.42553425,-0.44849652,-0.83760566,-0.5672471,-0.32047004,1.1284636,-0.35113314,-0.2798245,0.20155859,-0.0096754,-0.09887284,0.080936074,0.4997771,-0.0941427,0.25294963,-0.61630577,-0.029798716,-0.054712545,0.23988621,-0.018341666,-0.121903196,-0.4167533,0.7015132,-0.109607115,0.672613,0.3271748,0.18361568,-0.10466128,-0.4683917,0.018181765,0.8393641,0.42768663,0.093662865,-0.07176137,-0.13163461,-0.18188645,-0.037237473,-0.09168022,0.6593324,0.8191093,-0.04577086,0.16429015,0.26159334,0.0597074,0.10899566,-0.14879659,-0.2503505,-0.021860838,0.20968713,0.44647232,0.656877,-0.14142497,0.4511077,-0.14685127,0.42029205,0.008936469,-0.5512969,0.48726076,0.59679097,-0.23944166,-0.009047462,0.5611342,0.42691606,-0.2988418,0.41558522,-0.5648777,-0.33366504,0.6294737,-0.20610237,-0.58832854,0.2660706,-0.19533077,0.21916382,-0.87255573,0.5500552,-0.3372552,-0.63363427,-0.4071153,-0.041884538,-2.9195197,0.17876564,-0.107301846,-0.034365408,-0.33175778,-0.121999875,0.33302847,-0.7243312,-0.47941837,0.109277174,0.23678944,0.4743903,-0.18974717,-0.02279061,-0.26765132,-0.32749707,0.016046375,0.3112836,0.2381197,0.12069036,-0.23247899,-0.3961144,-0.185201,-0.02846747,-0.45613012,0.17598902,-0.57602805,-0.54823035,-0.06848539,-0.6412843,-0.19776185,0.66781765,-0.4946101,-0.032666445,-0.0912345,0.09122448,-0.15714097,0.11915161,0.07380003,0.11029505,0.02743716,-0.02866805,0.06631557,-0.4320335,0.47957006,0.061781246,0.46783704,0.16027446,-0.14149041,0.17937624,0.5858812,0.5112672,-0.2632638,1.0089821,0.39654773,-0.09273858,0.27952698,-0.15213516,-0.46634492,-0.5778103,-0.27379727,-0.034341935,-0.41342273,-0.30027634,0.16721661,-0.22700465,-0.90640974,0.6505814,-0.12922032,0.25990036,-0.071853355,0.22520892,0.46846482,-0.3028913,-0.06402694,-0.15912782,-0.15376744,-0.47026137,-0.3619466,-0.6256184,-0.58340365,-0.058581613,1.053294,-0.32087472,0.14183986,-0.0660971,-0.15431046,0.012410253,-0.08089811,0.09847156,0.25217757,0.4095734,-0.1340411,-0.70274895,0.4365878,0.008344201,-0.10882559,-0.3017097,0.13322425,0.59265804,-0.85854006,0.4485146,0.32827392,-0.08229338,-0.114718415,-0.62131876,-0.17139156,-0.0783325,-0.14837718,0.43975157,0.09393733,-0.7188751,0.4044488,0.26838723,-0.42913535,-0.6283817,0.32553855,-0.08738736,-0.27857444,-0.07680964,0.4064233,-0.16748571,-0.10118955,-0.07509143,0.19705479,-0.40263897,0.3023563,0.14061679,-0.17141683,0.27706033,-0.08433979,-0.24469385,-0.7012953,0.12114116,-0.47794715,-0.44641274,0.40092188,-0.040479742,-0.1715655,0.22924419,0.1611434,0.52730614,-0.36765447,0.06791368,0.08732353,-0.4710199,0.3478752,0.48153347,0.4719832,-0.24934898,0.351667,0.18215044,-0.11607201,-0.023720989,0.11546769,0.4274795,-0.033493076,0.35249203,-0.16431081,-0.09751887,0.40702176,0.8392144,0.19001415,0.4667254,-0.11062514,-0.038627766,0.14897676,-0.027014365,0.15507312,0.06378282,-0.49971324,0.08462096,-0.13426657,0.12028693,0.559785,0.271215,0.20270285,-0.07824813,-0.15293278,0.08196725,0.22933935,0.06287301,-0.9935518,0.38137978,0.28650835,0.80198765,0.2956275,0.24794431,-0.15633012,0.6511759,-0.21778557,0.19377466,0.36229524,0.011041471,-0.4649726,0.7183806,-0.60373497,0.38006797,-0.14069149,-0.11448865,0.20936486,-0.11531949,0.31415886,0.888783,-0.094839744,0.028928211,-0.0686778,-0.14616798,-0.081510715,-0.28995845,0.13791287,-0.45120367,-0.29129067,0.72616756,0.47554326,0.25625786,-0.23019075,0.02874845,0.0339874,-0.2473966,0.3364711,-0.062225766,0.08920359,0.12333019,-0.3589441,-0.15944871,0.6397571,-0.10463122,0.0035712847,-0.18614554,-0.24941985,0.082504265,-0.19635801,0.107569054,-0.02053387,-0.6591961,0.21525875,-0.43144158,-0.4420709,0.466661,-0.2800513,0.030355345,0.15626194,-0.014541997,-0.19964597,0.18308271,0.20695274,0.8083456,0.027857069,-0.24816515,-0.37602434,0.18528663,0.20023964,-0.27470708,-0.08135854,-0.4241535,0.05376992,-0.54876405,0.4041479,-0.106157884,-0.38410503,0.12484169,-0.16336654,-0.106132865,0.4308943,0.1121488,-0.18665901,0.029439876,0.062404666,-0.34369007,0.060185272,-0.37448454,0.14197826,0.42955306,-0.11318479,-0.1355016,-0.2634357,-0.22049227,0.332488,0.10611105,0.40539193,0.2828645,-0.10617982,-0.22905599,0.15098463,0.1946788,0.41214702,0.14763077,0.23053622,-0.40913597,-0.30713496,-0.25889307,0.024124375,-0.19394,0.30290365,0.057147987,-0.18863587,0.9330917,0.0075520277,1.1433051,-0.014966512,-0.3186362,-0.04419258,0.5816644,-0.058297336,-0.01625731,-0.5087758,1.1612726,0.5959393,-0.12592037,0.020032773,-0.15105732,-0.14993593,0.33218724,-0.26001135,-0.16753265,-0.051313873,-0.62496674,-0.37772247,0.28026634,0.3098761,0.088306464,0.042635374,-0.24693444,0.10048877,0.055273313,0.28539824,-0.64088964,-0.08541255,0.1485032,0.26144785,-0.14743997,0.29537752,-0.36140898,0.4213079,-0.6760003,0.20895168,-0.49984667,0.1626592,-0.20581278,-0.4272489,0.082968675,-0.06417889,0.3536859,-0.28756624,-0.43653783,-0.09159192,0.37363175,-0.036536675,0.17989305,0.60662776,-0.30741644,0.0319865,0.022574708,0.44027105,1.0386782,-0.3789893,-0.1069916,0.39910057,-0.41620302,-0.55117524,0.32767722,-0.31897974,0.044312894,-0.21965787,-0.53168267,-0.31977564,0.31227964,0.23463829,0.11376375,-0.03590141,-0.6033576,0.17550536,0.22439536,-0.34766415,-0.2467568,-0.19230977,0.4569504,0.7819963,-0.40429837,-0.32898983,0.05481894,0.20135471,-0.25985244,-0.4641052,-0.0003061848,-0.24845923,0.2032466,0.0651868,-0.36518398,-0.118029065,0.17844346,-0.3327836,0.1164257,0.36034793,-0.32231712,0.0698769,-0.16888188,0.057060055,0.9123985,-0.121851265,-0.22384726,-0.5400362,-0.47341946,-0.8212133,-0.6066457,0.19192635,0.4595193,0.027298715,-0.53698236,0.036380704,-0.21626337,-0.14962511,-0.06882871,-0.3848035,0.4334186,0.21938632,0.5822622,-0.2960098,-0.9505054,0.3410419,0.23570368,-0.026738405,-0.6519822,0.54930526,-0.18388632,0.86008114,0.07139041,-0.107967176,0.12987275,-0.5211711,0.047170784,-0.35946897,0.047328282,-0.75691706,0.083333746,840 -548,0.34975475,-0.22674516,-0.39626282,-0.24863236,-0.2627245,-0.053471368,-0.25411835,0.19328542,0.23885192,-0.13553713,-0.24811587,-0.08042806,0.13736019,0.26515827,-0.09550192,-0.7078742,-0.09208394,0.22989933,-0.6959113,0.42429787,-0.6760629,0.292168,0.03555998,0.2990879,0.12052118,0.29069838,0.22594404,-0.1165419,0.09526192,-0.15982284,0.010469605,0.14911185,-0.7166067,0.066590555,-0.17039366,-0.23821403,0.014256917,-0.47346836,-0.46805236,-0.6373543,0.14997016,-0.88844746,0.49704316,-0.021603107,-0.12897013,-0.08990198,0.2520407,0.43109486,-0.35357144,0.05608358,0.4032784,-0.20739777,-0.20087235,-0.21716501,0.067559384,-0.30332732,-0.52976483,-0.059782572,-0.46028748,-0.27465603,-0.33867812,0.18212035,-0.3813611,0.01833162,-0.12530683,0.26225266,-0.35914746,-0.08198314,0.34273225,-0.1400801,0.23230794,-0.43658036,0.023130378,-0.065880455,0.5424474,0.03030507,-0.15290864,0.4290401,0.20478167,0.33331332,0.22216006,-0.25727466,-0.23770583,-0.09746931,0.34615198,0.44891828,-0.096133746,-0.22975771,-0.18433268,0.034210462,0.21457566,0.3587924,-0.04751816,-0.1722609,0.0075907707,0.08005546,-0.2938971,0.6982853,0.61984575,-0.15287654,-0.398542,0.19404839,0.46298388,0.36339656,-0.28630018,0.1181373,0.035771172,-0.5417181,-0.27329478,0.14207171,-0.092084065,0.30594757,-0.1248647,0.13154764,0.9140838,-0.15265611,0.07825269,0.06002112,-0.02118671,-0.06520198,-0.27647287,-0.23895362,0.101864114,-0.62990487,0.06365997,-0.29834244,0.7677407,0.16357425,-0.79027134,0.4157309,-0.68015635,0.16415802,-0.2594865,0.5911616,0.79652584,0.30948862,0.42913648,0.7607016,-0.33946353,0.22883447,0.0578556,-0.50016534,0.27789882,-0.39961675,0.17125906,-0.47078636,-0.056207053,-0.19883971,0.1228831,0.105551936,0.22321616,-0.46926847,-0.13827439,0.30375347,0.7252974,-0.28479964,0.05733818,0.59882516,1.1518576,0.9914795,0.056447882,1.1694946,0.27517888,-0.30364576,0.20672128,-0.40587875,-0.77863556,0.16002907,0.26156574,0.090175286,0.18849938,0.018061187,-0.10852985,0.31598404,-0.5756551,0.10528757,0.062476534,0.27863234,0.15356314,-0.18860455,-0.29486355,-0.14187196,-0.010513672,-0.016229741,0.04750705,0.27967563,-0.23486625,0.27724606,-0.034985967,1.2063645,-0.023561606,-0.0863896,-0.030015588,0.61891586,0.2989168,-0.21155831,-0.019415362,0.34098002,0.53688544,-0.060824487,-0.6722608,0.2400559,-0.25825068,-0.13093266,-0.20888352,-0.38918084,-0.083606504,0.17189805,-0.28376383,-0.1227864,-0.025230613,-0.15796545,0.41566485,-2.8178253,-0.33178976,-0.06240889,0.29252443,-0.17951839,-0.120618835,-0.059952457,-0.55554265,0.26849523,0.20572019,0.46482,-0.51586854,0.6878744,0.58283013,-0.60564697,-0.10050491,-0.7053011,-0.20562348,-0.08466736,0.44254133,0.11770938,-0.006383828,-0.12073357,0.26813096,0.57722104,0.1595234,0.042292867,0.43046245,0.3806841,0.029289028,0.79303664,0.015694499,0.53058237,-0.19593276,-0.06369286,0.25481766,-0.23771867,0.24837868,-0.19796656,0.049209844,0.562017,-0.37070075,-0.9202948,-0.53433144,-0.35404631,1.0466621,-0.34629628,-0.35536534,0.17998013,-0.30432037,-0.17333409,0.04064989,0.6406559,-0.049389694,-0.020396262,-0.69322246,-0.0010409866,-0.04161573,0.11724067,0.067327246,-0.10799213,-0.3500123,0.7769795,-0.042899925,0.5425977,0.06606283,0.2343167,-0.11227658,-0.30759892,0.21995445,0.71188694,0.25885004,-0.018902982,-0.2587994,-0.2949891,-0.061711468,-0.14270104,-0.10280234,0.56788164,0.661308,-0.17486887,0.20937347,0.33939457,-0.190461,0.040553506,-0.22005966,-0.2581921,-0.0075641614,-0.10307651,0.47768456,0.7768038,-0.110980324,0.45902878,-0.13189271,0.15596625,0.0128729,-0.57004684,0.6018689,0.45925173,-0.037675355,-0.020612244,0.4028218,0.4455161,-0.35607773,0.45257786,-0.5030491,-0.12983547,0.52255446,-0.123750135,-0.36001635,0.19878021,-0.3544221,0.020751502,-0.7616802,0.2921935,-0.3873096,-0.30844292,-0.47143427,-0.0883801,-3.5530894,0.18368033,-0.17991434,-0.07234822,-0.25002646,0.03207165,0.4141467,-0.46718934,-0.52496517,0.21263789,0.22993395,0.67606026,-0.025778452,0.06856399,-0.32342258,-0.08393324,-0.37447223,0.23181336,0.11520551,0.29031834,-0.11076561,-0.29894224,-0.01592234,-0.098703615,-0.4953471,0.14636402,-0.48381487,-0.4318853,-0.04782877,-0.36599392,-0.30489853,0.6530495,-0.3104945,0.0075302697,-0.18732846,0.059250195,-0.26402968,0.31790754,0.11491076,0.16198611,0.06865833,-0.026866585,0.030927852,-0.3649848,0.5539005,-0.09059971,0.40756825,-0.013098495,0.15205672,0.045291435,0.4806432,0.51723385,-0.24153973,0.943686,0.42824206,-0.14192365,0.16916384,-0.3051311,-0.2769212,-0.466463,-0.21210393,-0.16171598,-0.36443806,-0.46942714,-0.03454507,-0.42255887,-0.7419135,0.55805504,0.05595272,0.2446867,0.038495064,0.12054551,0.28750488,0.052438673,-0.059801728,-0.00061392784,-0.10852284,-0.4571929,-0.18223463,-0.57926,-0.4484682,0.03926664,0.75218207,-0.40479642,0.047782212,-0.17261766,-0.34209973,0.06374394,0.12297584,0.06818731,0.31501183,0.38387778,0.038781594,-0.56293315,0.47949082,-0.15045743,-0.038853247,-0.6512109,0.0011303766,0.5464544,-0.774374,0.6335255,0.30704975,0.059782635,-0.01782152,-0.45898834,-0.22179659,-0.00958372,-0.20597114,0.44066715,0.06750778,-0.93376416,0.46681976,0.27650154,-0.4099196,-0.6408411,0.39009723,-0.0562146,-0.19151719,-0.06393309,0.03802424,0.12379328,0.0373045,-0.13304077,0.4004052,-0.34766978,0.26745358,0.059382092,-0.06640838,0.4040973,-0.01717971,-0.20071915,-0.654216,-0.050445747,-0.44094372,-0.23773442,0.24346186,0.018438313,0.1380523,0.29170975,0.24208893,0.32077518,-0.20344904,0.086116254,0.044076376,-0.42433402,0.2329294,0.44786188,0.31090355,-0.40634894,0.47307724,0.18664983,-0.20736219,0.24541788,0.10629654,0.355404,0.020975431,0.3753248,-0.040879436,-0.08909787,0.24900876,0.893309,0.023613831,0.4952693,0.069957934,-0.09288077,0.40726858,-0.011387659,0.02737132,0.06868285,-0.48958704,0.056895193,-0.11231969,0.31390634,0.48136845,0.34640265,0.28378436,0.07089258,-0.2980246,-0.030413976,0.2922872,-0.21022557,-1.2760327,0.5376588,0.23697658,0.8567758,0.44589645,-0.007360999,-0.010721586,0.7133326,-0.23663767,0.08106719,0.32457396,0.07803333,-0.3995809,0.6370821,-0.58706677,0.3617025,-0.025970152,-0.12939268,0.09251701,0.08481081,0.32912356,0.72337884,-0.3075862,0.10040023,0.11110652,-0.20067763,0.07573331,-0.35968572,0.037021566,-0.38194147,-0.33810297,0.7346558,0.49477053,0.36579347,-0.17162205,-0.038615625,-0.11002667,-0.1397931,0.1866739,-0.1020455,-0.22358333,0.20752454,-0.66949433,-0.17745563,0.5078238,-0.20496702,0.15182911,-0.17964326,-0.1640691,0.10596387,-0.15624358,-0.014835922,-0.03707483,-0.70049846,0.054404687,-0.1262318,-0.42934245,0.5721113,-0.24526203,0.16974942,0.290395,-0.026686942,-0.10637232,0.38148355,0.12906498,0.67065513,0.021236334,-0.1770436,-0.41653225,-0.074217625,0.21731456,-0.29414934,-0.010722501,-0.4982442,0.112613045,-0.46002442,0.5411362,-0.16997792,-0.46944004,0.13848184,-0.10880179,0.070825934,0.60739535,-0.16605091,-0.09054794,0.12300486,-0.14774755,-0.27974346,-0.03164013,-0.2394612,0.15180771,0.25377873,-0.12238568,-0.029284677,-0.43961763,-0.10412955,0.5416526,0.03710552,0.44346187,0.27239186,0.034431722,-0.19949993,-0.13780524,0.16251259,0.53151023,0.089543715,-0.096751384,-0.39744067,-0.31021327,-0.2879127,0.29516798,-0.15789093,0.23999558,0.06786792,-0.37202814,0.66555375,-0.02106251,1.0315737,0.11496242,-0.20549998,0.18738458,0.50865084,-0.020417413,0.08659696,-0.46503347,0.6487466,0.5523261,-0.23313697,-0.042127695,-0.49299648,-0.086799316,0.2805792,-0.32931617,-0.093138255,0.0588836,-0.66694343,-0.23680635,0.1992923,0.17332508,0.113197155,-0.035659987,-0.047341757,0.0342461,0.1558727,0.27887926,-0.60612947,-0.2123899,0.17863211,0.2548152,-0.11712582,0.12114806,-0.3816855,0.36450306,-0.5153256,0.09198923,-0.45634368,0.040729236,-0.30692855,-0.30499682,0.03939039,0.06490022,0.30807835,-0.17519644,-0.3623511,-0.029061709,0.457284,0.05922437,0.27910775,0.60572255,-0.23085466,0.06257308,0.08713843,0.60890543,1.3197334,-0.38029817,-0.06432841,0.36160988,-0.4932347,-0.5102435,0.36435553,-0.29775777,-0.045835197,-0.06795476,-0.49298272,-0.46766138,0.1879987,0.013637475,0.06617145,0.14745256,-0.5602597,-0.35898092,0.28330675,-0.2205754,-0.23851077,-0.23362043,0.20321266,0.72889227,-0.29550034,-0.16768472,0.018292785,0.2584549,-0.26167646,-0.3278579,-0.08138936,-0.30307356,0.30055955,-0.11295724,-0.2606347,-0.16848925,0.18589854,-0.46414414,0.17053293,0.2081214,-0.3649074,0.11049085,-0.06821043,-0.06038145,0.9504642,-0.39182144,-0.1399026,-0.56994617,-0.5161689,-0.89075667,-0.3444021,0.29250604,0.27658787,-0.059518777,-0.3592092,-0.003430275,0.07103888,-0.14187607,0.048310075,-0.66518056,0.36282417,0.0847385,0.46271268,-0.23205602,-0.95407784,-0.004380869,0.13996488,-0.4042769,-0.6662299,0.71966547,-0.1487012,0.81302005,0.026680466,0.02511405,-0.17426927,-0.20769262,0.11031776,-0.36048746,-0.19586363,-0.8200162,0.102757774,845 -549,0.34203961,-0.141317,-0.33658662,-0.06913127,0.045669436,0.0824872,-0.04713911,0.3077708,0.12158937,-0.62469566,-0.21990104,-0.28881064,0.08162586,0.18338323,-0.13131268,-0.46244827,-0.058587033,0.15810943,-0.31963745,0.43906155,-0.39562955,0.23968318,0.12172773,0.26807076,-0.03874449,0.22930887,0.23033272,-0.14077322,-0.16120818,-0.14510539,-0.18813436,0.30819884,-0.37226453,0.048012428,-0.081969485,-0.33032554,0.04497115,-0.3082148,-0.32955816,-0.61497223,0.3494192,-0.91072905,0.42241293,0.14445421,-0.1460597,0.42719102,0.003343497,0.17564276,-0.10151663,0.05472266,0.20762183,-0.1299957,0.002398921,-0.24989559,-0.21730062,-0.10079474,-0.49909797,0.104691364,-0.27431673,-0.28258333,-0.2555572,0.106621675,-0.32198134,0.050215673,-0.1943041,0.36267117,-0.45993274,-0.10408359,0.2081271,-0.15060319,0.38317314,-0.49708852,-0.217792,-0.091128245,0.15900019,-0.24435075,-0.010514462,0.14576693,0.21217023,0.60749006,-0.022335801,-0.14197703,-0.34468415,0.02562864,0.25194484,0.58016247,-0.17910795,-0.282297,-0.03248889,-0.02239986,0.015717579,0.15014197,0.065242104,-0.29443496,-0.13276313,-0.009502598,-0.2084275,0.017708639,0.46721992,-0.33556443,-0.37264976,0.24818495,0.55171,-0.08856236,0.0043372875,0.021552606,0.01675341,-0.3861633,-0.13601594,0.19809444,-0.19859938,0.4112823,-0.14672925,0.29583985,0.6080126,-0.042872768,0.33259678,-0.17541419,-0.0016211399,-0.02562737,-0.42264843,-0.06453484,0.25738534,-0.33951625,0.17778417,-0.24368535,0.84506166,0.051677603,-0.74344,0.49115473,-0.41269365,0.122483574,-0.048416857,0.64378965,0.4088003,0.2167734,0.2929453,0.6718069,-0.59395427,0.07177376,-0.17494614,-0.31036398,-0.12916803,0.029823987,0.06365661,-0.4488131,0.036175914,0.21116458,0.0009116488,0.008322145,0.31024197,-0.49298424,0.003029257,0.15565453,0.879251,-0.309293,-0.009118562,0.5936645,1.0112149,0.7428012,0.029778138,1.1857731,0.23406795,-0.3289017,0.26603475,-0.48360744,-0.7576316,0.19217427,0.33740118,0.45621496,0.10592663,0.19646099,-0.10980169,0.4765946,-0.39835826,0.14860933,-0.32427374,0.05864328,0.007942102,0.042708807,-0.45333502,-0.18632762,-0.037564393,-0.035688646,0.06435878,0.15896857,-0.119743235,0.32019597,-0.0040125996,1.8554999,-0.22516428,0.19373791,0.1957135,0.28873977,0.0058331317,0.029087862,0.023844978,0.33644766,0.34653282,-0.04634722,-0.47072604,0.05959316,-0.1404378,-0.6058588,-0.123051785,-0.15646116,0.118821524,0.04388103,-0.40305758,-0.10490304,-0.13179994,-0.42121452,0.4015608,-2.7299619,-0.07762387,-0.099440135,0.27616966,-0.39201906,-0.38619712,-0.1680944,-0.3901855,0.49906614,0.35787684,0.36636075,-0.7091866,0.33895996,0.29086518,-0.27871442,-0.060678266,-0.67016774,-0.035071407,-0.018705402,0.26493272,0.07585255,-0.15044038,-0.13740346,-0.097269304,0.3732991,0.025507297,0.013243041,0.2602334,0.2091308,0.20672788,0.27505338,0.12181734,0.39331704,-0.2169874,-0.13251589,0.33755454,-0.2788618,0.27997547,-0.068345435,0.16452023,0.25941113,-0.35785988,-0.57903713,-0.6359841,-0.6072478,1.2465135,-0.23151708,-0.43869066,0.37843847,-0.050475113,-0.23442744,-0.14883928,0.34148854,-0.123798184,-0.079768695,-0.8464731,0.1621513,-0.12779738,0.29709953,0.09414063,-0.075864755,-0.52238977,0.8005246,-0.25536895,0.4793885,0.47689182,0.19583134,-0.107781835,-0.31155306,-0.057057288,1.0207777,0.2485576,0.1560607,-0.13438924,-0.22828607,-0.23612371,-0.22355649,0.11222185,0.4197998,0.74726963,0.046266455,0.019674057,0.30505034,-0.040841434,-0.042093564,-0.13237052,-0.2807791,-0.07252806,0.0008036537,0.57268554,0.44107625,-0.23055889,0.3627863,-0.1929388,0.24680373,-0.20187153,-0.31812742,0.3689187,0.65207434,-0.090400696,-0.10809247,0.6385609,0.42177176,-0.36389104,0.27050313,-0.54066575,-0.27054998,0.35712442,-0.23909715,-0.5051989,0.1430408,-0.3086322,0.17798755,-0.8924732,0.24036637,-0.2530069,-0.3724778,-0.6564717,-0.084152386,-3.648802,0.17744882,-0.2953717,-0.21054573,0.059403174,-0.16014025,0.11359765,-0.5002399,-0.41337612,0.15926203,0.080219984,0.34159517,0.04206315,0.16593191,-0.23539098,-0.028011987,-0.27179256,0.119062625,0.07667492,0.23331581,-0.012630082,-0.43803924,-0.029449085,-0.121794745,-0.33767036,0.0790892,-0.59119713,-0.43222743,-0.15272704,-0.5513405,-0.40072283,0.4540563,-0.3733683,0.026086297,-0.30268607,-0.048988312,-0.22548746,0.46698466,0.20900814,0.21122865,-0.04807244,-0.053644214,-0.11791872,-0.22042814,0.2592236,0.086846165,0.15377675,0.47919196,-0.2383642,0.054337066,0.2845499,0.5909557,-0.0008992744,0.62100583,0.52536476,-0.14678082,0.24324708,-0.28536254,-0.12609307,-0.6446055,-0.37582806,-0.044138517,-0.29998738,-0.5520984,-0.14442123,-0.4321994,-0.7352063,0.45050502,-0.02959554,0.0806309,0.10702266,0.2607155,0.45928332,-0.049512498,-0.0725922,-0.10278375,-0.0052313083,-0.5918338,-0.3950162,-0.6757608,-0.41764614,0.17784639,0.81105703,-0.07252266,-0.019112462,0.032672193,-0.13898538,-0.10046983,0.15354416,0.07742136,0.117915265,0.40992713,-0.04472736,-0.54672897,0.61044073,0.077263184,-0.22447872,-0.57593524,0.096627116,0.42603713,-0.68286216,0.7089585,0.2155825,0.10336374,0.009698863,-0.45696998,-0.35570642,-0.11981565,-0.29160228,0.3976901,0.13846144,-0.5511121,0.396628,0.4838688,0.032227393,-0.72902805,0.19025329,-0.04374865,-0.3343127,0.065531544,0.30877852,-0.099942274,0.08422218,-0.025847932,0.0431279,-0.4117766,0.29348812,0.3091868,-0.051607523,0.49761805,-0.33868846,-0.07439996,-0.638343,0.039772246,-0.55736035,-0.09290747,0.19802116,0.14787318,-0.028326502,0.23679261,-0.01117152,0.38400653,-0.25155646,0.08777883,0.11945891,-0.112263285,0.214882,0.26377985,0.23585768,-0.39203644,0.48288304,-0.0595271,-0.16899689,-0.31134066,0.05716351,0.5259613,0.15689793,0.24448131,-0.19776814,-0.2706489,0.31774536,0.78575176,0.17132418,0.4903805,0.09448355,-0.081203185,0.47075742,0.09891403,0.07208825,-0.00575648,-0.45469737,0.018965324,-0.033062134,0.14985885,0.25486287,0.16235891,0.47992253,-0.13089308,-0.19467013,-0.015822737,0.25607938,0.020025462,-0.7441068,0.23534419,0.033295598,0.72626656,0.49170664,-0.10745395,0.07058485,0.56068426,-0.25705627,0.17704916,0.17848705,-0.2270379,-0.59510475,0.61823684,-0.5341658,0.19414814,-0.09521336,0.01436549,0.03334752,-0.08500213,0.2235838,0.57349867,-0.15959477,-0.026821371,-0.12344297,-0.20745952,0.026352394,-0.26562172,0.119183436,-0.38357815,-0.23892856,0.58125126,0.4600529,0.38418823,-0.14937475,8.1786086e-05,0.14658765,-0.0074379924,0.042318407,0.10890705,0.20130566,0.06566876,-0.6295573,-0.33562258,0.54606754,-0.06499633,0.108792976,0.007974024,-0.34732744,0.20300034,-0.1656152,-0.23413956,-0.048439015,-0.4535955,0.15036239,-0.27072278,-0.33963925,0.19863054,-0.03751756,0.3085005,0.13685162,0.021671472,-0.32815033,0.2761308,0.12350406,0.76264083,0.1434326,-0.15267761,-0.46099314,0.11483295,0.20156302,-0.14260684,-0.08235664,-0.12771606,-0.0103759365,-0.6853479,0.47181943,0.026747605,-0.17631106,0.29746404,-0.2622306,-0.05473308,0.5608521,-0.033784803,-0.102007814,0.110352054,-0.18722495,-0.29654747,-0.12840997,-0.06701925,0.28897282,0.078890026,-0.04891569,-0.015486722,-0.09900392,-0.1947471,0.47125974,0.11527964,0.16465345,0.2433814,0.06218918,-0.37334698,-0.08704281,0.08394032,0.39774594,-0.066219255,-0.054647837,-0.034246225,-0.50171304,-0.3400636,0.08526468,-0.09307773,0.32595345,0.097518615,-0.23064813,0.75170696,0.12618455,0.9556305,0.14443651,-0.22977065,-0.100592054,0.42006922,0.027298579,0.069898196,-0.3202875,0.8633919,0.63692665,0.058313694,-0.05388364,-0.20037909,-0.033850532,0.25256968,-0.09832005,0.049518168,-0.023725452,-0.6861965,-0.3585494,0.19587946,0.26743948,0.061267313,0.004179803,0.13707097,0.11962866,0.0041205627,0.3359131,-0.4350401,-0.22548795,0.32045862,0.09050156,-0.0010817072,0.17526293,-0.3050182,0.45201534,-0.5361539,0.19372617,-0.24269022,0.0097672725,-0.09205016,-0.13563938,0.0996745,-0.13757037,0.44752184,-0.3828419,-0.27336934,-0.19571397,0.44565693,0.1213636,0.14878704,0.6267246,-0.09133762,0.1378823,0.105977654,0.50558686,1.1733176,-0.20592307,0.092555694,0.29608387,-0.10746094,-0.6011347,0.3572771,-0.021094488,0.088333145,-0.033955965,-0.27640948,-0.3993393,0.34245825,0.15040454,-0.17505121,0.16397643,-0.36194128,-0.24456546,0.19837885,-0.3460382,-0.1765648,-0.27508017,0.11291809,0.60594416,-0.257631,-0.25270158,0.06499831,0.21096995,-0.4055352,-0.50062454,-0.06852833,-0.3565195,0.21928981,0.16883887,-0.33294708,-0.05731201,0.1129624,-0.3337962,-0.0908667,0.19759874,-0.3558058,0.060692217,-0.31079313,0.004214044,0.8806491,-0.054428674,0.07883117,-0.6529484,-0.4123187,-0.90616834,-0.39395517,0.7040176,0.01730428,0.035086967,-0.3362392,-0.03854229,-0.05879224,0.022151008,-0.105257325,-0.34266034,0.46671274,0.23880252,0.2904005,-0.1707968,-0.5020787,0.021354258,0.05816067,-0.13312194,-0.45203683,0.5289073,0.11125828,0.8069053,-0.051106762,0.043508798,0.33421355,-0.4943231,-0.0017187084,-0.2384291,-0.27838382,-0.7175032,-0.097143605,846 -550,0.44842476,-0.05015444,-0.53161824,-0.22179726,-0.32232222,0.18464069,-0.15526006,0.42225185,0.3478916,-0.20589651,0.032815523,0.08978849,-0.009780422,0.5850006,-0.14863907,-0.77381456,0.061906092,0.06651579,-0.5647477,0.40901533,-0.5257837,0.36685663,-0.10531355,0.40313855,0.1113639,0.24312548,0.20480934,0.12337758,-0.08420641,-0.017094092,-0.12543593,0.30703196,-0.3407285,0.13119192,0.03110758,-0.3014095,-0.12963952,-0.26449177,-0.22810681,-0.67743444,0.39098546,-0.7404156,0.4875028,-0.089828335,-0.45837468,0.26815364,0.09059926,0.21056144,-0.25958043,-0.07611457,0.052648555,-0.20087692,0.030942794,-0.175123,-0.35102907,-0.35931405,-0.53249305,-0.05278555,-0.5403662,-0.11634665,-0.2755767,0.109483495,-0.33990857,0.12261486,-0.099165834,0.44380686,-0.22421561,-0.09026897,0.2557898,-0.20240584,0.078698225,-0.3954416,-0.16361025,-0.066158906,0.19166557,0.12437417,-0.24812767,0.2553584,0.32393876,0.43501726,-0.09172765,-0.28474417,-0.34042358,0.08132458,-0.05349809,0.4357025,-0.15716064,-0.28884223,-0.3195776,0.0566806,0.1684426,0.11607941,-0.0033234486,-0.22842972,0.017893357,0.08723029,-0.31629038,0.38536498,0.35025266,-0.35764074,-0.10201626,0.3843738,0.4876791,0.11851821,-0.29870877,0.101532765,-0.04560224,-0.50141746,-0.17117865,0.10212811,-0.08572667,0.4295704,-0.119700514,0.2024839,0.67971987,-0.06797545,-0.056784205,-0.047861893,-0.016313497,-0.058384657,-0.21869089,-0.16039823,0.09221076,-0.3485307,0.1523569,-0.18956041,0.75562376,0.17106315,-0.77109593,0.47155258,-0.45066032,0.10871663,-0.10651602,0.5194795,0.8486628,0.3528723,0.123952374,0.85383505,-0.53939855,-0.031117234,0.08129227,-0.3572425,0.12860836,-0.03837993,0.15724145,-0.53362787,-0.015209577,0.24160233,-0.1803849,0.28620005,0.279529,-0.42765322,-0.07889913,-0.14844725,0.68630546,-0.30201286,-0.24146174,0.8584534,1.0025098,0.87959945,0.06348122,0.9032503,0.39613825,-0.09742075,0.109183535,-0.28997484,-0.57777625,0.19292893,0.28556418,0.1695074,0.47847417,0.070808105,0.07501001,0.5090343,-0.13384934,-0.09749737,0.053753365,0.41873783,0.11167327,0.025762906,-0.45889235,-0.32262215,0.2135987,0.06449635,0.24867383,0.2644264,-0.20155154,0.6084713,0.117860965,1.3725466,0.13377835,-0.0038910806,-0.06412225,0.338473,0.25553688,-0.08479496,-0.2720056,0.2554924,0.35106733,-0.05070079,-0.6089815,0.11281513,-0.2223845,-0.25363824,0.001989721,-0.38022655,-0.082262516,-0.20612882,-0.36046144,-0.15528142,0.038557794,-0.3404036,0.44816214,-2.7035434,-0.18505251,-0.16029303,0.23664674,-0.09033128,-0.3795325,-0.28575557,-0.40039033,0.16876009,0.41558662,0.33250538,-0.70561683,0.38459843,0.24093458,-0.3252705,-0.06304316,-0.6157049,-0.046725053,-0.05029603,0.37612242,0.03265502,0.05377874,-0.07493512,0.48428944,0.5869998,0.14548376,-0.13049279,0.32668835,0.4552649,-0.07037135,0.5339734,0.14183395,0.6050242,-0.16991135,-0.088944085,0.29912415,-0.46998954,0.25627795,0.13014774,0.3076858,0.43919638,-0.3286688,-0.85529804,-0.5233142,-0.115910284,1.382662,-0.3500939,-0.3665957,0.2702346,-0.24112065,-0.45737436,0.016898913,0.44448468,-0.14203864,-0.20428793,-0.6517364,-0.08342044,-0.022353377,0.09416242,-0.17213823,0.03486715,-0.16304953,0.6068953,-0.13143282,0.49442604,0.09446951,0.11404627,-0.15303765,-0.43437958,0.007859026,0.8091607,0.34828702,0.086977996,-0.14480363,-0.26082078,-0.24728656,-0.14415383,0.19477703,0.5748006,0.62751967,0.11713953,0.04736856,0.22798626,-0.2655946,-0.058895897,-0.08879804,-0.262565,-0.009196137,0.012418522,0.6149393,0.7411632,-0.1299201,0.42834407,-0.10825847,0.19673446,-0.21235694,-0.4972868,0.51536447,0.66515315,-0.22487251,-0.350394,0.43733338,0.24999857,-0.3295856,0.31954893,-0.477082,-0.22767518,0.4797921,-0.049498674,-0.3418956,0.18091914,-0.21371226,0.022379471,-0.83827686,0.2620447,0.029443052,-0.5711785,-0.53238934,-0.14369197,-3.929632,0.10021011,-0.013202689,-0.25457373,-0.034340817,-0.15107235,0.38553604,-0.5848036,-0.53820986,0.0234549,0.03689027,0.5372597,-0.046412367,0.032261875,-0.36598518,-0.29699376,-0.11119559,0.15229498,0.11887847,0.37842917,0.15073586,-0.3649392,0.11111843,-0.32070056,-0.60364777,-0.0066769207,-0.5113886,-0.56444514,-0.13053586,-0.49005142,-0.18188132,0.6689595,-0.37673238,0.037361193,-0.27794358,0.006309573,-0.19156674,0.3446684,0.116029166,0.043522857,0.048512373,0.007181502,0.081925556,-0.39608556,0.25929043,0.014803401,0.34506485,0.22591296,-0.12586385,0.23934107,0.71238625,0.6298974,0.18849042,0.69008714,0.2394623,-0.11563403,0.22445853,-0.25913745,-0.22999279,-0.5782175,-0.3422195,-0.1924934,-0.3791878,-0.30818322,-0.2822759,-0.3847156,-0.7689811,0.34055918,0.039736908,0.13605683,-0.1382732,0.2555147,0.48376656,-0.15581612,0.067472875,0.050248653,-0.31546262,-0.5927641,-0.3469407,-0.5709311,-0.49790123,0.37065747,0.90862256,-0.17620802,0.00031662412,-0.118276834,-0.46291965,0.048332226,0.04227221,0.2601444,0.27851686,0.11653894,-0.2578409,-0.61232555,0.29635137,-0.44884586,-0.078306444,-0.64147633,0.062121063,0.67865884,-0.4050428,0.46711418,0.2624422,0.24043779,0.024713947,-0.41223136,-0.1999766,0.17533863,-0.24295892,0.4861476,0.3220059,-0.64187276,0.5561715,0.24263586,-0.07695874,-0.45263562,0.37806728,0.00868302,-0.10114021,-0.018438945,0.36655113,0.07675687,-0.032289512,0.022190783,0.083688445,-0.4723527,0.12426635,0.26889983,0.008089849,0.32984146,0.020951167,-0.011294399,-0.5805097,-0.21663733,-0.5339088,-0.23397456,-0.0620887,0.078503974,0.3053381,-0.1423218,-0.03591042,0.31785294,-0.30477196,0.05888451,-0.06542093,-0.22252776,0.47966528,0.533327,0.37958542,-0.2690995,0.5403251,0.06476267,0.25950485,0.11649767,-0.1135198,0.44685608,0.23537879,0.35162306,0.1487185,-0.094660245,0.26058453,0.58373463,0.18984178,0.31200078,0.054986328,-0.27421755,0.21158297,0.1374579,0.18434803,-0.0883534,-0.25738147,-0.113739155,-0.08962264,0.19836521,0.48439577,0.10530834,0.2322418,-0.052353203,-0.28501925,0.29580727,-0.0032287922,-0.17303996,-1.376797,0.42703652,0.2716134,0.58945316,0.25073603,0.05739653,0.05182112,0.51475364,-0.22486468,0.12625629,0.35057095,0.027135968,-0.43063456,0.45872098,-0.5961271,0.46559936,-0.14800514,-0.01048544,0.094716035,0.23073283,0.39138776,0.9094616,-0.039798148,0.08223985,2.296269e-05,-0.29001263,0.014972304,-0.28180078,-0.03224313,-0.65184253,-0.3205978,0.48431116,0.5350416,0.49230438,-0.25864214,-0.06948674,-0.02256298,-0.07622813,-0.07551534,-0.16152279,-0.037323304,-0.19202588,-0.6250579,-0.36541632,0.41551706,0.14451125,0.060218457,0.026659628,-0.25514123,0.34497935,-0.022264753,-0.1343808,-0.028024038,-0.6700247,-0.07694757,-0.16183639,-0.57113796,0.28571507,-0.43524995,0.2905754,0.1947671,-0.005155695,-0.3749716,0.10585559,0.22565956,0.81301886,-0.035009254,-0.1533417,-0.44664747,0.04802965,0.22213307,-0.23236401,-0.14514898,-0.3254693,0.08959125,-0.42888698,0.34758133,-0.24324787,-0.3055398,-0.13276543,-0.11441283,0.18003127,0.36036828,-0.3938008,-0.14321123,-0.16026218,-0.0067799753,-0.28623828,-0.16264765,-0.27503118,0.33804947,-0.04782543,-0.12099002,0.08313413,-0.046575136,-0.04355537,0.3283562,0.14700903,0.2568341,0.49283347,0.08449096,-0.21388678,-0.14180382,0.052521355,0.3672996,0.18758248,-0.28487357,-0.50643694,-0.34704378,-0.34109423,0.32000962,-0.21483125,0.17447765,-0.045756657,-0.41270688,0.6024088,-0.051359538,1.0528067,0.052525204,-0.21070595,0.06972172,0.4678728,0.26594138,0.12743802,-0.21317594,0.6543808,0.47806516,-0.23459935,-0.19178966,-0.44333082,-0.2254596,0.32696444,-0.30900893,-0.13961017,-0.12298,-0.75016963,-0.19572105,0.14109214,0.06779261,0.21565485,-0.07963895,0.14595716,0.009323127,0.13200907,0.4898281,-0.31828418,0.055883367,0.34614077,0.1367232,0.0061892164,0.14150521,-0.43447977,0.3583104,-0.5266356,0.1310269,-0.5024437,0.1728504,-0.04077893,-0.311965,0.118096255,-0.0031368476,0.24040651,-0.38418242,-0.29441494,-0.27503166,0.60450375,0.27766487,0.13809423,0.5237656,-0.18994941,-0.19543616,0.26971605,0.5438622,1.0689404,0.09989958,0.07301633,0.34249538,-0.21286821,-0.54047275,0.007933085,-0.22803633,0.33988127,-0.11455081,-0.19760744,-0.41101232,0.39642096,0.07700692,0.046694286,0.13082257,-0.33749157,-0.26142523,0.39681342,-0.35848162,-0.22401787,-0.34094277,0.12162308,0.4479289,-0.4028552,-0.27227473,-0.08640157,0.3357813,-0.11338173,-0.53824097,0.056511726,-0.28657943,0.3856773,0.14470302,-0.29835653,-0.067561515,0.2304012,-0.39942476,0.2090595,0.18173055,-0.42394033,0.12620603,-0.12739836,-0.0667743,0.94816977,-0.0465844,0.16082957,-0.7440669,-0.5328727,-0.963651,-0.37471005,0.25580904,0.05534711,-0.120809086,-0.64106244,-0.010874237,-0.029384544,-0.081752695,0.030888343,-0.44115835,0.3871484,0.14411919,0.24437936,0.083146356,-0.93734086,-0.10345962,0.050129972,-0.2348532,-0.6123784,0.6433221,-0.15589105,0.5753952,0.044989552,0.19638191,0.18033123,-0.37604353,0.301609,-0.37163123,-0.14864792,-0.50276256,0.1864387,856 -551,0.41958457,-0.09506401,-0.4713389,-0.14759867,-0.08343202,0.02549687,-0.24917422,0.3791758,0.28020597,-0.39961952,-0.1246834,-0.15259023,0.07785462,0.168032,-0.08992839,-0.5918089,0.07428406,0.20566222,-0.5909709,0.6645926,-0.2506746,0.23847042,-0.06781346,0.431179,0.042466097,0.24532251,-0.027961442,-0.15644877,-0.18742561,-0.028112117,-0.18312429,0.50074935,-0.4451833,0.1538757,-0.2550593,-0.16643262,0.08544761,-0.35735485,-0.3505798,-0.87051755,0.24202988,-0.7112042,0.4804155,0.18555748,-0.3452719,0.052649904,0.16588847,0.4345449,-0.4852588,0.025050772,0.13153946,-0.02087673,-0.14442489,-0.19816934,-0.20838092,-0.42150545,-0.47453874,-0.11271841,-0.5966472,-0.052514173,-0.34567356,0.12989426,-0.18372335,-0.27519417,-0.005503927,0.63584024,-0.43884805,-0.003078897,0.2397046,-0.13284342,0.3788368,-0.48259607,-0.110932626,-0.17351644,0.44989583,-0.20050319,-0.28155217,0.23993628,0.37023404,0.4263694,-0.21852793,-0.18512158,-0.33789316,-0.13638283,0.06726587,0.34791142,-0.09017996,-0.61483896,0.037141066,0.062320977,0.040479418,0.24307926,0.05138249,-0.3386638,-0.046874426,-0.0037317,-0.1198864,0.30537206,0.47942433,-0.2924063,-0.12516722,0.20333259,0.5697215,0.12970133,-0.16295373,-0.055407766,0.10127779,-0.60517704,-0.089062236,0.25773475,-0.18079603,0.5791882,-0.027078304,0.076487176,0.59652126,-0.098221935,-0.18130192,0.069309466,0.17993404,0.10394718,-0.33336428,-0.3877376,0.26459122,-0.36072722,0.09815449,-0.1736096,0.5040318,0.2673437,-0.72457016,0.17898151,-0.52174485,0.024647608,-0.08557708,0.44498566,0.695137,0.41089782,0.369746,0.628088,-0.41329718,0.14909782,-0.083935425,-0.31466103,0.011868651,-0.12642886,-0.07145246,-0.47432056,-0.06857605,-0.16527162,-0.17640765,0.15267178,0.23935747,-0.45794767,-0.08673092,0.20654115,0.89505637,-0.26041463,-0.077492945,0.5190853,0.8625043,0.7910538,0.08903384,0.98907894,0.24036023,-0.28986064,0.31991813,-0.2796807,-0.6855537,0.30076128,0.26145983,-0.15281844,0.18212365,-0.02996985,0.06393661,0.36383224,-0.45397112,0.069131635,-0.09232201,0.14692487,0.1402723,-0.07396994,-0.3606194,-0.30391857,-0.16609894,-0.009628215,-0.07925934,0.31049022,-0.17488833,0.08524389,-0.025659302,1.4725065,0.04934966,-0.028695771,0.11536638,0.5943799,0.24418929,-0.09119294,-0.2559436,0.49318627,0.28086242,0.09877249,-0.4727571,0.05085764,-0.29541156,-0.25485447,-0.1411441,-0.2441956,0.05562361,0.04707404,-0.45150137,-0.043088548,-0.06400696,-0.30396184,0.63333327,-2.7787557,-0.015243471,-0.06391841,0.4010919,-0.3046532,-0.25625774,-0.21269819,-0.42475152,0.4082152,0.33423325,0.4780939,-0.57582146,0.22423919,0.45540574,-0.577527,-0.19169123,-0.5254103,-0.13660835,0.009483478,0.2645846,-0.025037004,-0.15439162,0.044117134,0.21717755,0.4909766,0.012450589,0.11075399,0.31254742,0.2849647,0.13238284,0.55763173,-0.020035002,0.4495199,-0.25652578,-0.24763854,0.2273581,-0.44737563,0.151608,0.041611113,0.017741693,0.5640434,-0.47150347,-0.954339,-0.7371273,-0.18695721,0.96064997,-0.25469348,-0.39185163,0.23871246,-0.44249234,-0.19381309,-0.113368765,0.64744884,0.0664194,0.058865238,-0.8075953,-0.12926486,-0.011286868,0.4183881,0.07396551,0.035547566,-0.37647623,0.42729634,0.014694044,0.39102277,0.39417338,0.13303752,-0.37470582,-0.5409087,0.072266035,1.0367645,0.10299473,0.20290315,-0.16314471,-0.3190892,-0.43795428,0.12258998,0.017904585,0.65962255,0.64223576,-0.22713403,0.11034549,0.21985951,0.063739546,0.052130274,-0.19271745,-0.37130216,-0.14054784,0.34523314,0.5552543,0.6149259,-0.11818685,0.464211,0.03431871,0.24369451,-0.19623086,-0.30921873,0.40389436,1.0003427,-0.126563,-0.23895545,0.53067017,0.51543784,-0.3307306,0.43071565,-0.5368449,-0.31718203,0.4895768,-0.17960513,-0.4911271,0.26554912,-0.30753103,0.15109432,-0.81874806,0.24822308,-0.28090423,-0.36556843,-0.53227043,0.06705249,-3.4760525,0.13122632,-0.051476203,-0.19464174,-0.014934689,0.0060392465,0.09391493,-0.44863343,-0.60220003,0.2461622,0.07149737,0.699864,-0.10566373,0.037157793,-0.30829835,-0.34357396,-0.14881992,0.296271,0.27534977,0.28924727,0.09044491,-0.607916,-0.18539576,-0.18406942,-0.32403713,0.051678777,-0.64596426,-0.3147404,-0.1791077,-0.7871899,-0.23777373,0.60414964,-0.45109698,-0.012640791,-0.12718216,0.057387523,-0.048981685,0.20493685,0.23316462,0.3915362,-0.012857194,-0.0543315,-0.07064345,-0.14682528,0.20657657,0.13355006,0.2519645,0.09749069,0.16512254,0.2094073,0.5039879,0.6005208,-0.07302626,0.9627252,0.642953,-0.08138682,0.29187113,-0.2560849,-0.29380986,-0.4986075,-0.26516488,-0.08355088,-0.39617634,-0.41510445,0.063020885,-0.37667108,-0.6957695,0.51466626,-0.21910515,0.019990453,0.18600862,0.33236784,0.5026867,-0.35112265,0.03510413,-0.106744036,-0.050751705,-0.45310137,-0.26462597,-0.4561893,-0.34990436,0.13380198,0.9799186,-0.26695028,-0.014408329,0.026657317,-0.11321028,-0.07451637,0.25296333,0.042062707,0.24742022,0.574782,0.0086238,-0.5754747,0.30555463,-0.12545185,-0.1183163,-0.54177356,0.2303181,0.5346173,-0.72433466,0.8180181,0.32045063,-0.041576274,-0.2600802,-0.64435965,-0.4689719,0.068365715,-0.12931876,0.3842725,0.24579082,-0.78136104,0.21419707,0.23820893,-0.31673744,-0.65923625,0.6230626,-0.070697844,-0.51063114,-0.062233772,0.39622292,-0.1701444,0.048992455,-0.30502295,0.17105107,-0.27561563,0.061435167,0.27639318,-0.11467009,0.19952016,-0.32247695,0.00683277,-0.8390217,0.13138619,-0.48106575,-0.25684023,0.54670376,0.10946883,0.080634594,0.22814691,-0.023802357,0.29887363,-0.19692764,0.022112062,-0.13061337,-0.19678156,0.4303454,0.3768275,0.4506438,-0.36574873,0.5597773,-0.07484144,-0.20236167,-0.18995936,0.09055818,0.3322166,-0.05500722,0.4617307,-0.08346305,-0.2850511,0.41187343,0.74400187,0.18318641,0.4227393,0.00062391587,0.09043489,0.2733798,0.124991246,0.109066114,0.04551163,-0.45766193,0.029423084,-0.34193712,0.16453497,0.3634728,0.04293702,0.18515088,-0.012371376,-0.28554344,-0.048949085,0.19760224,0.19551119,-1.1499212,0.45661667,0.16475391,0.85427624,0.4376923,0.22679305,-0.055701386,0.66973656,-0.08556456,0.09307652,0.37313753,-0.13992336,-0.4473498,0.55760187,-0.50681406,0.57641953,0.10349163,0.05463338,0.009154124,-0.113441125,0.4729932,0.91454965,-0.18088205,-0.013185016,0.113668226,-0.17608435,0.24544358,-0.3031629,0.12051825,-0.7038058,-0.40478066,0.5016266,0.5440314,0.26793897,-0.23696272,-0.049707625,0.12988417,-0.21392237,0.11232621,0.00800018,0.044600837,-0.021457357,-0.6518318,-0.051862687,0.5141964,-0.07134551,-0.06650413,-0.05180917,0.06835499,0.26964432,-0.15728594,0.11743821,-0.18313476,-0.6258226,-0.1258033,-0.48842645,-0.26402768,0.6836291,-0.23701827,0.24642147,0.16239348,0.061904915,-0.41683552,0.67705566,0.1813403,0.7520331,-0.017105954,-0.08803893,-0.3089353,0.036126655,0.10843791,-0.13309374,-0.067547016,-0.50718874,0.007978482,-0.72405,0.4174479,0.020796428,-0.2708738,-0.17652287,-0.12211813,-0.020343542,0.5218963,-0.045720644,-0.29399857,-0.0608662,-0.12495849,-0.33237764,-0.16845226,-0.2212552,0.2744408,0.13355663,0.022937817,-0.12969103,-0.075557195,-0.09811254,0.5273175,-0.08227511,0.28494778,0.29825187,0.32065886,-0.090933464,0.0176272,0.066314764,0.65851635,0.08494584,-0.09507449,-0.24383989,-0.2608653,-0.4936349,-0.00030434132,-0.09896268,0.4812575,0.107130595,-0.23846729,0.7445259,-0.11441064,1.226906,-0.1004191,-0.3548264,0.05870274,0.49557,-0.1252337,-0.028054383,-0.37070933,0.8240722,0.52728057,0.049132675,-0.06282438,-0.14593884,0.06768377,-0.037711043,-0.1540056,-0.12453156,-0.017037136,-0.535808,-0.08522227,0.20136009,0.31148085,0.39184895,-0.08199124,0.07191438,0.17763557,0.13971642,0.026005361,-0.42523402,0.12827504,0.23881194,0.3859351,0.17480405,0.060240626,-0.33470002,0.34432432,-0.4110665,-0.029073061,-0.3284166,0.18310645,-0.27572033,-0.41831872,0.24564525,0.016322987,0.36415142,-0.27664658,-0.17084493,-0.36886212,0.55632055,0.16072656,0.1961162,0.5266369,-0.14641348,-1.8498728e-05,0.06963037,0.6283666,0.9153779,-0.44138193,-0.17250933,0.38700676,-0.41351938,-0.62522304,0.26265433,-0.56825083,0.1396132,0.11643362,-0.21247923,-0.6104307,0.19508438,0.068609774,0.13076796,-0.11121665,-0.69527596,-0.13611172,0.24998379,-0.19867234,-0.16963935,-0.31468043,0.3369855,0.5345893,-0.1708264,-0.33564442,0.069017276,0.13368274,-0.3266333,-0.53870815,0.07697991,-0.40426144,0.22845592,0.09447306,-0.48054567,-0.19153042,0.035486605,-0.5103456,0.20223263,0.26267475,-0.4004937,0.099175714,-0.25118297,-0.118892595,1.0582554,-0.18415155,0.1675562,-0.29949874,-0.45060268,-0.8719793,-0.12967774,0.4638633,-0.075209446,-0.02732736,-0.6041684,-0.017014215,-0.12291246,-0.16928038,-0.05552811,-0.20709945,0.3759706,0.040713735,0.55905503,-0.081491105,-0.93609273,0.12221442,0.093576856,-0.3219139,-0.56946963,0.43094426,-0.047167774,1.0342759,0.0010485084,0.13523898,0.526291,-0.37090996,-0.15959729,-0.18764083,-0.11364194,-0.48367754,0.033916075,860 -552,0.39331427,-0.15968813,-0.46511912,-0.17614992,-0.20363991,0.19634454,-0.12779763,0.5555969,0.13283114,-0.6808723,-0.19778037,-0.18885049,0.042700194,0.20308256,-0.25467476,-0.34282538,0.008533961,0.15400232,-0.43199039,0.4610493,-0.39450273,0.23207192,0.18505645,0.38111654,0.08583442,0.14507444,0.14366224,-0.18962245,-0.046679746,-0.2619466,-0.16199145,0.4826569,-0.37622195,0.33439398,-0.11979943,-0.19307375,0.0056455093,-0.48497376,-0.20063427,-0.7371239,0.13091527,-0.81063646,0.50265604,0.10607053,-0.28878942,0.27901974,0.43205342,0.14695938,-0.1371653,-0.037738748,0.26352337,-0.14620209,-0.20862518,-0.17133835,-0.07584415,-0.3693883,-0.5073219,0.025575992,-0.43638283,-0.28099987,-0.24366693,0.30435282,-0.25814006,-0.041533466,-0.13497862,0.6745184,-0.42806825,0.24322213,0.17871423,-0.29486513,0.39523178,-0.624586,-0.15695669,-0.07028941,0.2618949,-0.18726991,-0.26849982,0.046033107,0.43253502,0.45581883,0.026354436,-0.10525382,-0.22101283,-0.11524032,0.023591552,0.4164949,-0.14983477,-0.35012507,-0.120819464,0.06867641,0.09414591,0.26710907,0.11855163,-0.47701925,-0.13200046,-0.048938096,-0.27339762,0.3688437,0.40431094,-0.23446187,-0.2550452,0.3516962,0.5136482,0.05788579,-0.07860814,0.026743677,-0.043956865,-0.5922646,-0.112399474,0.18358128,-0.14129251,0.4253873,-0.18377416,0.27801707,0.6310253,-0.040883746,-0.023009678,0.19071214,0.15360503,0.017910464,-0.43157586,-0.20792577,0.25768048,-0.36237365,-0.016543727,-0.16620322,0.8346349,0.012882688,-0.6509002,0.24001758,-0.53930485,-0.016634481,-0.22252798,0.42037204,0.53622144,0.37663934,0.20357165,0.71219605,-0.42889783,0.004067156,-0.113192864,-0.32032058,0.045192428,-0.07930534,-0.018722882,-0.54227966,0.080958195,-0.0240455,0.044985034,0.064741544,0.40599325,-0.64644134,-0.20664133,0.07071082,0.81518024,-0.24798056,-0.21100657,0.5910924,0.8729843,0.827322,0.13364422,1.08162,0.12638833,-0.17332898,0.17357196,-0.14531015,-0.64947987,0.40784305,0.42520604,-0.29586306,0.045477804,0.046629388,0.051487748,0.37352824,-0.33586192,-0.07307921,-0.2429706,0.1602163,0.09273009,-0.12001843,-0.42685828,-0.24852578,0.075313225,0.032429136,0.20738828,0.05390524,-0.17039622,0.2981034,0.08349788,1.4952947,-0.16844146,0.1600198,0.17702767,0.14660658,0.22608267,-0.14546679,-0.05738753,0.47718266,0.35847378,0.2486474,-0.49007353,0.24549477,-0.1014397,-0.4154767,-0.16466747,-0.346661,-0.09934677,-0.041036498,-0.4743333,-0.13010506,-0.21731272,-0.40951267,0.47503543,-2.8125083,-0.10618496,-0.17949677,0.38434076,-0.27217537,-0.2982803,-0.19204426,-0.3779696,0.54794294,0.2695374,0.5093967,-0.4703507,0.32905397,0.40095016,-0.5012841,-0.27277026,-0.63918686,-0.031385984,-0.06562966,0.25484118,0.07759903,-0.11713868,-0.12232047,-0.0052078855,0.43960404,-0.07980096,0.14180334,0.32215616,0.45910385,0.0676718,0.58956116,-0.061901007,0.58747804,-0.29675344,-0.3008178,0.41090283,-0.31710976,0.17047723,0.008643657,0.09264142,0.42921448,-0.36766678,-0.85945565,-0.7914487,-0.32980648,1.1178988,-0.3183593,-0.3979748,0.23715922,-0.24060524,-0.2531671,0.08392199,0.5052134,-0.019426584,0.061942305,-0.92369515,0.18172911,-0.01633645,0.30498335,0.0018696977,-0.10811175,-0.537219,0.6985794,-0.1631066,0.60457325,0.41859517,0.24274288,-0.46996263,-0.45277882,-0.04835316,1.0996675,0.38050374,0.09745892,-0.093733765,-0.1741164,-0.4856043,-0.040185217,0.10636323,0.6725082,0.5363295,0.099747084,0.18871072,0.3072796,-0.11767102,0.115104415,-0.14953797,-0.33643278,-0.16721332,0.007964551,0.5427381,0.43836716,-0.07836394,0.4305435,-0.10271635,0.5122608,-0.1832578,-0.4399982,0.33218262,1.0672833,-0.16174583,-0.35708913,0.67502207,0.36796087,-0.14810698,0.27682537,-0.48922354,-0.397226,0.45102987,-0.23255931,-0.5354803,0.11786633,-0.2761911,0.11633064,-0.9037671,0.25052544,-0.33324575,-0.5465976,-0.5692504,-0.161848,-3.1664832,0.26004407,-0.20549111,-0.10933884,-0.17034534,-0.10181297,0.13677645,-0.5752221,-0.4105968,0.14399716,0.12280023,0.55238986,-0.09755377,0.1495239,-0.1794125,-0.2297491,-0.046956874,0.13573423,0.10807049,0.27782273,-0.034988213,-0.46269205,0.042421263,0.065480195,-0.38630933,0.044309404,-0.61425865,-0.51489794,-0.014272175,-0.52592707,-0.36883208,0.6437958,-0.5094084,-0.043027528,-0.11950982,0.20241036,0.00922842,0.2641506,0.09524924,0.24859612,0.020381076,-0.065269664,-0.10387545,-0.31144896,0.4039889,0.10328741,0.13888137,0.39131847,-0.16047828,0.25122216,0.42161185,0.5002128,-0.11021789,0.7800651,0.4512314,-0.008578761,0.27966377,-0.19947357,-0.24459493,-0.451931,-0.22041024,-0.038564507,-0.4310809,-0.2674816,0.016874595,-0.33245772,-0.781126,0.5878635,0.12709828,0.0039487565,-0.10097661,0.4775478,0.5299996,-0.22511372,-0.030081455,-0.016394261,-0.2434102,-0.6043487,-0.28771234,-0.47664538,-0.39328024,-0.026878897,0.98263913,-0.40485573,0.18146239,-0.0017330901,-0.052347694,-0.10604419,0.18333134,-0.0764559,0.2614086,0.5760198,-0.14893349,-0.60503995,0.44569725,-0.26948997,-0.28618422,-0.5311619,0.3068132,0.6107852,-0.6378694,0.63347155,0.41221252,0.10791343,-0.2829705,-0.51981145,-0.17020588,0.0102266865,-0.31655815,0.5030331,0.20105027,-0.72936064,0.48062852,0.35945687,-0.053644657,-0.7293386,0.5602106,-0.09857605,-0.3585891,0.047833525,0.40603253,0.191482,0.06419058,-0.081916876,0.1243139,-0.366154,0.21825147,0.029442266,-0.08647861,0.4180568,-0.30969617,-0.025080234,-0.69478846,-0.02857006,-0.6336175,-0.32238844,0.2446172,0.109848104,-0.05128642,0.36432812,-0.13989799,0.43102136,-0.21723127,0.13839237,-0.22829847,-0.15981509,0.20974429,0.42721602,0.29008457,-0.41093418,0.458841,0.027779143,-0.013910289,-0.20255838,0.17073838,0.45990404,0.06980312,0.43444893,-0.35749468,-0.09154161,0.43296123,0.63825905,0.07070076,0.37581325,-0.07828115,-0.07429491,0.16104391,-0.012955933,0.1982291,-0.14397158,-0.6524672,-0.07304622,-0.27661064,0.15127005,0.556578,0.162562,0.36996835,-0.07006874,-0.28975895,0.074367695,0.345261,0.18388316,-0.93956643,0.4580335,0.21100031,0.8796832,0.4251519,-0.0057700374,-0.054548662,0.72093856,-0.19664116,0.1938001,0.27057633,-0.136114,-0.39480495,0.48032364,-0.8436596,0.29481715,-0.27297023,-0.035714667,-0.02011604,-0.07959069,0.3717043,0.8670143,-0.1251145,0.076022625,0.029594699,-0.32621282,0.30807728,-0.43295738,0.108957015,-0.48341495,-0.361538,0.57193565,0.63648933,0.41752806,-0.3177262,0.0039304667,0.23088156,-0.16210277,0.15263514,0.07737862,0.06433764,0.0670497,-0.76568633,-0.14158909,0.55958074,0.26617295,0.21383688,0.09615054,-0.11327762,0.33884248,-0.16707695,0.0821774,-0.18544592,-0.5014363,-0.10657009,-0.29425868,-0.42182845,0.3503488,-0.3651952,0.13553342,0.20196576,0.053380966,-0.18326406,0.41418868,0.11422222,0.8281241,0.09868281,-0.043895192,-0.48818153,0.23344459,0.14481112,-0.109861955,-0.20261213,-0.44020146,0.14753036,-0.7104391,0.39960447,-0.086287305,-0.29276973,0.12568054,-0.11023065,0.0433865,0.6044081,-0.08098609,-0.018299649,0.07006436,-0.290098,-0.18844835,-0.13043277,-0.10211512,0.24423905,0.07234108,0.05110154,-0.12861931,-0.13878255,-0.4249394,0.24856053,0.12233351,0.43853578,0.31422997,0.06682957,-0.20151962,0.020117974,0.19706495,0.5013914,-0.015609349,-0.13250563,-0.09153209,-0.323867,-0.29828328,0.12456458,-0.019134704,0.28274614,0.076223865,-0.095426455,0.783175,-0.11657576,1.0319221,-0.036102235,-0.36034632,-0.035955112,0.4615313,0.13166344,-0.023239631,-0.3630014,0.88161,0.52528995,0.09036553,0.025370657,-0.38945177,-0.09651754,0.12392191,-0.12311644,-0.1547017,-0.08778511,-0.7390751,-0.32785657,0.121775724,0.2277095,0.11034446,-0.028320167,-0.04308761,0.23213474,-0.054056745,0.3065079,-0.5270437,-0.029961722,0.119912885,0.4830592,-0.09711122,0.15574993,-0.50031316,0.50671905,-0.54908764,0.14067882,-0.28280038,0.1724048,-0.38794088,-0.1516579,0.22669302,-0.18579017,0.41731995,-0.23697428,-0.27687955,-0.23638834,0.49247584,0.2158641,0.03966237,0.66073376,-0.28532574,0.1647474,0.21225692,0.5625058,1.0093043,-0.36062333,-0.07052924,0.39417782,-0.3185626,-0.59419453,0.30045363,-0.4053345,0.14008883,0.09098194,-0.2052943,-0.28783217,0.32473606,0.22462623,0.050860763,-0.13770847,-0.5387445,0.12679945,0.35778123,-0.24303882,-0.13687743,-0.2082556,0.16211323,0.44947863,-0.2600737,-0.38318783,0.008674706,0.22430754,-0.09369678,-0.5981841,-0.019869814,-0.4078276,0.28749117,0.11196138,-0.29777673,-0.12487205,-0.026951244,-0.47530589,0.1593976,0.075960554,-0.2610074,0.040507965,-0.26239863,-0.07364384,0.7325999,-0.069855474,0.06973129,-0.5136942,-0.4319763,-0.69033533,-0.20961888,0.37733057,-0.07570294,0.10547125,-0.5520986,-0.07389748,-0.17097174,-0.22953323,-0.12716328,-0.40125963,0.43835893,0.1743762,0.44107231,-0.18775494,-0.80313003,0.20094119,0.053690385,-0.12411553,-0.6313668,0.3511514,-0.06562017,0.6247482,0.079208784,0.09876703,0.41116315,-0.5338964,-0.07670205,-0.22440147,-0.11579311,-0.83064365,-0.099233985,861 -553,0.5685923,-0.001131673,-0.6378064,-0.25941655,-0.2967412,-0.07520783,-0.16305591,0.14787562,0.49220926,-0.21419832,-0.034750525,-0.12585244,0.08368985,0.22185288,-0.08307513,-0.6808243,0.031638324,0.07551147,-0.58991104,0.38301948,-0.41832832,0.51663697,0.16693497,0.3986392,-0.006748659,0.20767263,0.26406613,-0.039393954,-0.05858434,0.002929317,-0.123799734,0.5763194,-0.67565453,0.16747998,-0.029153423,-0.19629233,-0.021495597,-0.38448402,-0.27986142,-0.7279128,0.234296,-0.7686108,0.6881922,0.21730433,-0.34909448,-0.006884349,0.03945413,0.1846879,-0.36318368,0.28115326,0.21109208,-0.38258553,-0.018844102,-0.17938031,-0.43231806,-0.46914536,-0.6019365,0.0133094955,-0.5195239,-0.16751984,-0.40105894,0.25845236,-0.29255894,-0.11755909,-0.3095056,0.43158072,-0.3816084,0.0729607,0.25115967,-0.25931105,0.328063,-0.2776617,-0.114165954,-0.1339523,0.22229484,-0.092993915,-0.31153637,0.10123872,0.33281094,0.5284591,0.07155371,-0.35984454,-0.37475866,-0.04810065,0.054572377,0.43783197,-0.10118576,-0.2717021,-0.22220603,-0.13374266,0.17225374,0.35605282,-0.026722703,-0.488178,0.014855668,-0.06676781,-0.09118144,0.38302058,0.46105164,-0.40641096,-0.26578698,0.37619343,0.3861459,0.16691002,-0.18812516,0.24005376,-0.017049564,-0.66501313,-0.26560566,0.32213634,-0.01457869,0.5556508,-0.020844763,0.10755813,0.6358051,-0.11936088,-0.2654331,-0.0747949,-0.08324463,0.084418796,-0.28352657,-0.0584941,0.2299143,-0.40749866,0.12122321,-0.26519415,0.77790344,0.02627425,-0.7914667,0.29068416,-0.66166407,0.12489569,-0.14077091,0.7635852,0.8879403,0.4449505,0.28074956,0.90783495,-0.63470733,0.018232478,0.047108497,-0.52620053,0.14353575,-0.04985029,0.0696438,-0.457243,-0.089779615,0.06708948,-0.088348545,0.14627512,0.34339163,-0.39651105,-0.14785896,-0.05613007,0.7412984,-0.3726721,-0.20204762,0.6437252,0.9157315,0.90136606,0.060149603,1.3051008,0.34254402,-0.032540854,-0.041590743,-0.27489665,-0.51882887,0.19455898,0.22552875,-0.18154833,0.225962,-0.020562692,0.108108826,0.3027659,-0.30133003,-0.08014215,-0.070499554,0.2317654,-0.07347644,-0.072294064,-0.3892649,-0.24147569,0.12888303,0.24067068,0.053117927,0.219305,-0.19263336,0.4238505,0.09886444,1.3410017,-0.028297113,0.08617454,0.027618637,0.3489132,0.30345726,-0.18728773,-0.11150037,0.38703182,0.43058065,0.10926985,-0.42963123,0.076207615,-0.13269816,-0.27553004,-0.1963658,-0.3408561,0.1402636,-0.19977884,-0.5403451,-0.007578309,0.0651461,-0.41495863,0.5508017,-2.5138428,-0.047853,-0.026418868,0.3243154,-0.092978716,-0.33373383,-0.31701514,-0.45551935,0.24778824,0.3606673,0.31892332,-0.5817209,0.38426033,0.41620284,-0.39662948,-0.14045565,-0.6568281,-0.09480847,-0.14045058,0.3059388,0.08766549,-0.09177591,-0.23107089,0.3590054,0.6915131,0.026742065,-0.043969225,0.118400946,0.540901,-0.14825103,0.70880216,0.101709925,0.49567813,-0.12211687,-0.24329296,0.41378978,-0.26221952,0.27703327,0.05157234,0.08649612,0.38943616,-0.45077428,-0.8834213,-0.64711374,-0.39577624,1.1325349,-0.42580837,-0.45828745,0.34780693,-0.17527355,-0.36552483,0.14723413,0.5805802,-0.1801177,0.18165772,-0.7425142,-0.056881487,-0.15778829,0.27011222,-0.10699715,0.012737097,-0.3918821,0.57838315,-0.09095877,0.4706307,0.3322975,0.22781195,-0.15900935,-0.5632352,0.13603653,1.0012286,0.34919947,0.07679256,-0.26456985,-0.23258138,-0.20063964,0.0655243,0.11632047,0.72148556,0.63147557,-0.121334024,0.17208394,0.31609085,-0.10113364,-0.014462526,-0.16191772,-0.29381624,0.0006978725,-0.08526055,0.52658135,0.84601116,-0.20344278,0.36251858,-0.0522842,0.3181859,-0.045847453,-0.6055781,0.5631487,1.0443856,-0.082910374,-0.23754713,0.6942315,0.36280233,-0.3260093,0.39375526,-0.59126824,-0.24901421,0.6036677,-0.06641322,-0.46801212,0.2843747,-0.39490452,0.0164368,-0.9629553,0.31069806,-0.013711776,-0.4690147,-0.3220558,-0.114859276,-4.140596,0.18157461,-0.16547427,-0.031124284,-0.06751935,-0.16251452,0.34739652,-0.4319503,-0.56313217,0.07152425,0.09947545,0.46371344,-0.2172792,0.13795601,-0.38321552,-0.23159213,-0.14952269,0.29279676,0.1601956,0.31571802,0.03846561,-0.37172875,0.01862303,-0.23707283,-0.5095243,-0.023753954,-0.46805814,-0.5886435,-0.09308886,-0.5522994,-0.33850113,0.7202476,-0.4394741,-0.07107202,-0.28395137,0.06362114,-0.10903331,0.39540777,0.16341646,0.32543197,0.0023210219,0.017697887,-0.20684277,-0.21782234,0.24317639,0.09858746,0.14504962,0.27782258,-0.14405075,0.2125433,0.41554418,0.5773043,-0.21458818,0.7705107,0.32983962,-0.006302726,0.24830508,-0.21199629,-0.4117853,-0.8106208,-0.30795667,-0.2886544,-0.50677353,-0.26674435,-0.28705245,-0.32424402,-0.807409,0.54575163,0.052176777,0.18367216,-0.24653089,0.33667573,0.41996172,-0.1638103,-0.021936124,-0.14765158,-0.28211293,-0.5668311,-0.3554813,-0.5746501,-0.5564903,0.14632864,1.02319,-0.22925045,0.014490579,0.055246558,-0.11137895,-0.015299329,0.20765959,0.24257752,0.3904553,0.51045257,-0.20781,-0.6397267,0.43750033,-0.23509185,-0.060038514,-0.7575669,0.04116699,0.72642744,-0.6888481,0.6660863,0.2816228,0.2412967,0.0005874634,-0.7233216,-0.505189,0.0619672,-0.16957353,0.6151916,0.22196104,-0.7454921,0.43265432,0.15786965,-0.15087345,-0.5698608,0.44610432,-0.06586236,-0.3955121,0.21559276,0.4052923,-0.1094376,0.006196614,-0.12256312,0.2858801,-0.35449067,0.33365205,0.40336365,-0.07145465,0.31251583,-0.117881395,-0.112981595,-0.6641237,-0.11849371,-0.48330233,-0.39246064,0.10250444,0.032140467,-0.0011227727,0.0810072,-0.13437538,0.4677908,-0.27236104,0.1792644,-0.098575406,-0.13286063,0.39033076,0.5201444,0.32305226,-0.5011608,0.57998973,0.16379617,-0.08150639,-0.15095052,0.18175101,0.46191353,-0.0024149332,0.39887384,-0.19049014,-0.09912773,0.20199881,0.53278035,0.12862302,0.3641677,0.19213843,-0.08006895,0.44494513,0.13379478,0.100377955,-0.15893278,-0.35040876,-0.12079006,-0.18685147,0.18699713,0.44162613,0.14844628,0.26871502,-0.07824384,-0.27277336,0.33573744,0.11186642,-0.02087465,-1.1934279,0.31146857,0.23803079,0.6691004,0.5144306,0.066476874,-0.15505812,0.57815325,-0.28899843,0.06594237,0.34589264,0.19229849,-0.34362388,0.5799898,-0.50858814,0.5005327,-0.121134624,-0.0382201,0.12122953,0.14358537,0.34275696,0.9740499,-0.0705588,0.0634646,-0.08719325,-0.07946552,0.08120935,-0.29605958,0.07938492,-0.57864565,-0.4367546,0.70917755,0.44580102,0.39985013,-0.38411298,-0.112018906,0.087145574,-0.18680277,-0.018145531,-0.20232101,-0.081634186,0.09102559,-0.6161216,-0.19772004,0.6141828,0.032195706,-0.17094676,-0.012858899,-0.22671463,0.18195443,-0.1067465,-0.015660303,-0.15393662,-0.62827456,-0.06883267,-0.40935966,-0.41282773,0.3763263,-0.5499295,0.33729276,0.16339335,0.082933135,-0.2522785,0.34478718,0.19407165,0.87583107,0.16476618,-0.09144764,-0.35377407,0.22481915,0.34209225,-0.31383628,-0.24830005,-0.2923266,0.2093154,-0.629765,0.30869415,-0.16351387,-0.37235922,-0.14210609,-0.036959093,0.12860553,0.41258934,-0.23611978,-0.32675686,0.23154722,-0.03114142,-0.30149284,-0.08395272,-0.19977435,0.37160847,-0.021294089,-0.10332978,0.03244876,-0.06087578,-0.16416971,0.16517189,0.05217771,0.24506333,0.26346764,-0.043459933,-0.2840887,0.108072124,0.033332806,0.5401967,0.10479874,-0.12695286,-0.19946463,-0.3194731,-0.34536794,0.25321573,-0.13504359,0.18913738,0.025534958,-0.31480995,0.85524356,0.226125,1.1580317,-0.005533342,-0.32209182,0.1559746,0.5104757,0.041869514,0.036043707,-0.34315905,0.99964315,0.6320324,-0.14478496,-0.1746478,-0.35407522,-0.052383218,-0.0727511,-0.21970621,-0.26662752,-0.099706754,-0.72055435,-0.103986636,0.047416415,0.23213172,0.21641183,0.02140155,-0.07101255,0.06272532,0.1616803,0.40588382,-0.48470584,0.017203467,0.17608707,0.3185388,-0.036544677,0.23420194,-0.27378052,0.4079385,-0.5517897,0.21722205,-0.5621742,0.13082547,-0.17333055,-0.33627835,0.15599771,-0.14431424,0.23304522,-0.38792658,-0.14097242,-0.37812957,0.5922222,0.24463074,0.2156934,0.9468756,-0.232565,-0.06868649,0.12213315,0.49581188,1.3650645,-0.29732993,-0.03853726,0.44849905,-0.21776056,-0.51121366,0.122484826,-0.38230306,0.21967325,-0.23308639,-0.41024202,-0.26228124,0.1791481,-0.11417433,0.065961845,-0.032695644,-0.53748596,-0.15482001,0.42376885,-0.08362873,-0.21928255,-0.25412118,0.29352045,0.64750713,-0.2698063,-0.41398063,0.092028685,0.12020135,-0.2187498,-0.607102,0.032888353,-0.2201349,0.3329258,0.20600162,-0.41402632,-0.029560208,0.32335013,-0.5108417,0.13796763,0.38490602,-0.34731102,0.10464071,-0.15060265,-0.27263603,1.1986934,-0.15522964,0.13514559,-0.56443584,-0.5857457,-0.9081162,-0.20998017,0.3003344,0.22455932,-0.03533889,-0.58149445,-0.10997729,-0.13785385,0.027412133,0.050059777,-0.530718,0.40499425,0.05920433,0.5374713,-0.23242,-0.9915322,0.011420386,0.07058044,-0.33562994,-0.5261412,0.6297253,-0.11653619,0.5752772,0.06435986,0.18025272,0.3351088,-0.6402183,0.2002122,-0.20088245,-0.10306446,-0.8076902,0.06338789,862 -554,0.47938243,-0.22776045,-0.74964905,-0.031775985,-0.5438528,-0.06639053,-0.17381528,0.39498553,0.34679905,-0.456215,-0.15615201,-0.15596308,-0.113086395,0.1500201,-0.09280651,-0.33948353,-0.028788034,0.28758717,-0.6690367,0.6090703,-0.108517095,0.25684884,0.071390346,0.4552628,0.36427525,-0.055822365,-0.121657714,0.15951481,0.18054684,-0.4176989,-0.14384513,0.4178524,-0.64708287,0.16022623,-0.19317296,-0.5882912,-0.22373776,-0.49286154,-0.481,-0.99704015,0.4390831,-0.92092687,0.774572,-0.13431482,-0.2908051,0.10549487,0.36382753,0.5374657,0.16503142,-0.07860654,0.21496959,-0.1909478,-0.057073146,-0.0892572,-0.29916644,-0.32649246,-0.613102,-0.04053622,-0.2963241,0.010667642,-0.3633256,0.294074,-0.35654473,0.0068045002,-0.29164773,0.47616586,-0.32001713,0.20614156,0.29614645,-0.034905277,0.32166067,-0.66134655,-0.15777819,0.018049097,0.37425962,-0.17386246,-0.27675563,0.3217465,0.30125827,0.35362098,-0.08935453,-0.18062283,-0.46314815,-0.006571608,0.061895035,0.5877479,-0.034767024,-0.08863293,-0.012661542,0.16437258,0.5782421,0.4339837,0.3746013,-0.124572836,-0.20477247,0.0014517137,0.035444718,0.62220496,0.4911165,-0.2268349,-0.29112318,0.36677262,0.7399791,0.44707918,-0.21310018,0.13715439,-0.09520525,-0.35731477,-0.07959758,0.14976263,-0.2712461,0.25347334,-0.10357902,0.22865131,0.59784526,-0.17461076,-0.1354154,0.21146478,0.13153486,-0.05390389,-0.21579586,-0.35796064,0.35663584,-0.5613931,0.3340712,-0.14639214,0.549763,-0.0206925,-0.5969481,0.20782961,-0.7862474,0.28596547,-0.07598181,0.3587122,0.8399,0.4505779,0.35540643,0.8484308,-0.32539457,0.033689238,-0.00020907607,-0.3818288,-0.07568431,-0.38829255,0.107984595,-0.60618484,0.054696497,-0.16183874,-0.11022111,0.19401698,0.56321335,-0.6936967,-0.30307063,0.21235183,0.84685594,-0.16310452,-0.20194641,1.0139469,0.9281321,1.3411037,0.009239486,1.0947258,0.11181196,-0.24065559,-0.035576124,-0.1129484,-0.7055521,0.38195363,0.46948576,-0.43848404,0.36906785,0.14872932,0.10749883,0.49179095,-0.3865169,-0.08792155,-0.123853885,0.12802882,0.09456998,-0.4126838,-0.4650903,-0.16301309,-0.12607722,0.0057399,0.18812922,0.28939387,-0.068932876,0.4157105,0.04914232,1.4005868,-0.12614915,0.108084805,0.100678764,0.3536925,0.32524768,-0.24811636,0.08300663,0.3461339,0.2999176,0.19734277,-0.49771836,0.14066723,-0.33955622,-0.19503203,-0.23147523,-0.30903023,-0.35735956,0.0045306683,-0.39974806,-0.42493296,-0.34959134,-0.205369,0.46545961,-2.5422032,-0.16683027,-0.11444773,0.33922026,-0.23422733,-0.38313046,0.014516584,-0.5491476,0.44392848,0.18352117,0.5844275,-0.57551205,0.39521822,0.5273388,-0.8050427,-0.015843919,-0.67731637,-0.01828573,0.16441081,0.06973997,0.011228268,-0.10803853,0.3265234,0.092891656,0.42352405,0.05737073,0.105231844,0.49506998,0.63587844,-0.23368022,0.62091285,-0.09067775,0.5793248,-0.083765306,-0.2398635,0.49819872,-0.31250882,0.43853092,-0.053949177,-0.09942935,0.85938686,-0.3999241,-0.9480504,-0.5709696,-0.049586363,1.0395749,-0.23758289,-0.54088014,0.04223531,-0.5743666,-0.28384298,-0.118953146,0.37471825,-0.18577574,-0.117709294,-0.7980694,-0.2231175,-0.15757118,0.091576375,-0.008008974,-0.13358167,-0.5599812,0.8835267,-0.073889144,0.59774834,0.3249642,0.283231,-0.41866925,-0.45544878,-0.022527264,0.6008795,0.5634824,0.05210485,-0.43329912,-0.15111078,-0.5535656,-0.1212539,0.12273879,0.65246964,0.38441977,-0.21040365,0.23269646,0.26592332,0.0163816,0.116366304,-0.18084052,-0.2924761,-0.26422423,-0.16824667,0.6059043,0.6855841,-0.14246161,0.5432463,0.10239391,0.25345626,-0.19522773,-0.61425257,0.271211,1.2632045,-0.244611,-0.5405409,0.6436648,0.29433897,-0.11497844,0.45297888,-0.57901317,-0.31062979,0.4916831,-0.2056332,-0.5413789,0.1667176,-0.30039278,0.07860536,-0.8458914,0.29388794,-0.60561484,-0.5489617,-0.5360878,-0.09682656,-1.1562736,0.3709853,-0.24664824,0.013481204,-0.37264535,-0.37572393,-0.09655305,-0.56709814,-0.9120456,0.17544119,0.20167133,0.7477876,-0.22767957,0.13919519,-0.18814765,-0.51808584,-0.46696812,0.15034185,0.15206158,0.467511,0.0054851854,-0.40140423,-0.031054864,0.13130835,-0.41357282,-0.08916674,-0.5726207,-0.47250134,-0.17785828,-0.42627972,-0.16665348,0.6127287,-0.32415804,0.10478865,-0.24430534,-0.049310885,0.10855363,0.26585212,-0.06576974,0.20726798,0.10705024,-0.14803383,0.10987549,-0.14237447,0.38909343,-0.04170062,0.26747105,0.31457457,-0.24458782,0.38177797,0.33508712,0.8107303,-0.23381504,0.84983784,0.3334581,-0.23468582,0.28309295,-0.22017081,-0.39369884,-0.74198097,-0.0893146,0.24419971,-0.3801566,-0.5537599,0.012399912,-0.55440426,-0.84952325,0.49123886,0.110596575,0.4673951,-0.11051337,0.58216125,0.6473392,-0.32015246,-0.10450388,-0.042508613,-0.18896627,-0.5449969,-0.21373029,-0.4806977,-0.50442064,0.069110304,1.198556,-0.4425719,0.004426343,0.26311398,-0.19148722,0.17666544,0.3810249,-0.17631824,0.0014923981,0.52165484,-0.078084946,-0.50834703,0.41700724,-0.0866753,-0.08288902,-0.62437105,0.5098224,0.47455353,-0.55014575,0.43207482,0.30053225,-0.050000932,-0.2866757,-0.7445795,0.176194,0.19453947,-0.34364942,0.4281683,0.4019857,-0.6191769,0.30148387,0.44241902,-0.052078005,-0.8458162,0.61133987,-0.069721244,-0.34069198,-0.10849695,0.39713436,0.15105763,0.10451,-0.14321454,0.24386522,-0.4039598,0.35555914,0.10348011,-0.19643189,-0.059480082,-0.20857792,-0.1592095,-0.8298355,0.3303122,-0.5079511,-0.2629766,0.3578183,-0.015747238,0.14741288,0.21464872,0.30580592,0.40225765,-0.18814205,0.06885841,-0.39862567,-0.29373983,0.42914596,0.48106307,0.43589684,-0.546443,0.5570496,0.06652866,-0.360173,0.045971163,0.122719206,0.48303723,-0.12624769,0.5213043,0.14817272,-0.22401063,-0.06854073,0.75364864,0.07913514,0.3061602,0.023711009,-0.05853339,-0.18945524,0.097128786,0.41405487,-0.32456216,-0.7367789,0.08537185,-0.3082618,-0.0643021,0.5695176,0.05619853,0.053548973,-0.029074745,-0.3673934,-0.031082975,0.09877549,-0.04928146,-1.2747542,0.23338492,0.3139297,1.1168422,0.35814118,0.04055941,0.08631094,0.6877007,-0.17432642,-0.009840921,0.3859717,0.14835286,-0.3281853,0.4571086,-0.9438788,0.5224144,-0.052113812,-0.10861822,-0.002772441,-0.010258148,0.467122,0.7085724,-0.36958483,0.018699495,-0.187883,-0.43640712,0.1887491,-0.25339296,0.15942565,-0.60230285,-0.30751067,0.81140184,0.49348396,0.45090756,-0.25186256,0.05639439,0.08553567,-0.22898583,0.18774328,0.13575427,0.24478364,-0.10946907,-0.33483216,0.09748774,0.41641232,-0.115203716,0.05614529,-0.043620892,-0.10835149,0.20236437,-0.045502875,0.09939015,-0.0756238,-0.90037507,-0.09220453,-0.31151256,-0.4316217,0.2978646,0.2200683,0.0903033,0.30671415,0.08220853,0.06443719,0.43607172,-0.018110845,0.64988005,-0.030374408,-0.05241229,-0.34686136,0.44045833,0.0124675855,-0.07975823,0.05269432,-0.011865156,0.3587661,-0.4416117,0.38880372,0.11181191,-0.48623782,-0.041821092,-0.03564691,-0.02911334,0.45912385,-0.3267738,-0.15087709,0.040566478,-0.30494785,-0.2416654,-0.34956446,-0.017727902,0.17299087,0.2047088,-0.1602256,-0.25534335,-0.19290665,-0.2579786,0.38575882,-0.088460505,0.37580046,0.33142212,0.099041514,-0.57387215,0.01722994,0.22629833,0.46928993,-0.22557798,-0.24341127,-0.30383438,-0.5436711,-0.5568233,0.63357097,0.02578081,0.38576117,-0.019015934,0.056432564,0.8651375,0.1094829,1.2360991,0.018776234,-0.39288646,0.14851062,0.57085717,-0.11643398,-0.24659754,-0.36244455,0.77334875,0.6250834,-0.06830268,-0.022676617,-0.33576226,-0.0026925504,0.077020206,-0.23873946,-0.017574403,0.11913038,-0.35656387,-0.2663031,0.15092683,0.16369796,0.11899899,-0.29247943,0.062359374,0.5236944,-0.11969195,0.1860112,-0.3793116,-0.5302975,0.23160417,0.2412387,-0.18328044,-0.02086414,-0.44319472,0.28538498,-0.6009051,0.065456346,-0.23820628,0.25446972,-0.27759793,-0.3304432,0.30602494,-0.1057306,0.31010875,-0.40790758,-0.2833498,0.011416833,0.2981462,0.2277364,0.1726049,0.56962675,-0.3639253,-0.12390872,0.19915661,0.38449672,0.9351473,-0.20593643,-0.18010654,0.25502774,-0.4202955,-0.5709812,0.39723414,-0.57404226,0.22632404,0.06199738,-0.14681199,-0.5030628,0.15780458,0.28797534,0.1022443,-0.09429816,-0.7508407,-0.0049436945,0.20585822,-0.429528,-0.01314389,-0.32405517,-0.14880113,0.60727775,-0.022401124,-0.42105085,0.111994624,0.1488794,-0.07057163,-0.4202872,0.20445867,-0.40788773,0.22715054,-0.05711058,-0.49680445,-0.2288464,0.2173533,-0.47517458,0.090319335,0.24088947,-0.18046965,0.15380894,-0.46836042,0.13282931,0.7981942,-0.44117674,0.032003973,-0.36587897,-0.4798007,-0.5992952,-0.14075306,0.09326481,0.13200146,-0.004839069,-0.900442,-0.09618742,-0.2689174,-0.32465532,-0.14955887,-0.18471071,0.43208963,0.113600075,0.2369739,-0.23969303,-0.9909104,0.2964404,-0.019437905,-0.19057444,-0.5877033,0.5482923,0.040617798,0.6747284,0.13865443,0.1450989,0.27481455,-0.5161071,0.19768289,-0.09910019,-0.07147283,-0.850321,-0.17153047,866 -555,0.5193529,-0.17962328,-0.3965249,-0.18880227,-0.30966786,0.02640848,-0.047390465,0.65601766,0.2837017,-0.47314295,-0.21843645,-0.10927932,0.13998489,0.5197814,-0.0069974447,-0.44208997,0.1039061,0.26571113,-0.4867702,0.6281128,-0.46924558,0.16448161,-0.09514863,0.40188932,0.43095937,0.09834416,0.00027686357,0.15893795,-0.17123617,0.048225246,-0.1264739,0.34190795,-0.27086616,0.24055506,-0.2163398,-0.3214176,-0.21131544,-0.502359,-0.26951295,-0.6498841,0.31132102,-0.6370291,0.37227586,-0.11274228,-0.34915283,0.22975956,0.1976473,0.22693941,-0.32874367,-0.19579704,0.07947792,-0.09575714,-0.12532414,-0.05811627,-0.16467205,-0.36070794,-0.70786476,-0.05014009,-0.3898941,0.042776972,-0.28858948,0.13960981,-0.2929661,0.010824417,0.077328645,0.6006076,-0.42901486,0.1697291,0.17409717,-0.038622625,0.005322439,-0.5747321,-0.30064696,-0.19646427,0.21883737,0.018060764,-0.35930827,0.28054458,0.40673324,0.44774985,-0.044509497,-0.11573855,-0.34535983,0.06945065,0.06914034,0.49193054,0.07824225,-0.40009475,-0.1368499,-0.21386386,0.12332932,0.20520978,0.2988744,-0.15313877,-0.14205137,0.024347845,-0.23106606,0.27696827,0.39526787,-0.35391918,-0.3376624,0.4393147,0.44808248,0.28246963,-0.17845072,0.026760248,-0.034768153,-0.5571431,-0.12353051,0.051396422,-0.2991028,0.50387895,-0.2151181,0.20526817,0.59783286,-0.08177618,-0.03787217,0.118791,0.20187671,-0.07496969,-0.36771965,-0.33571735,0.21968283,-0.38192573,0.13113661,-0.1480736,0.76690614,0.15038744,-0.695292,0.26441005,-0.5685922,0.142071,-0.06930179,0.41526034,0.99103016,0.28700966,0.35933194,0.667401,-0.29117817,0.029950961,-0.0069094067,-0.20355843,-0.0010319267,-0.31126812,0.060501285,-0.48300505,0.025574284,0.043494377,-0.04886141,0.20828147,0.6906665,-0.4398176,-0.19408526,0.23735705,0.7011841,-0.27990523,-0.26785922,0.95544857,0.9372263,1.072431,0.10102231,0.9671498,0.1338282,-0.06539095,0.28423095,-0.24351396,-0.75299126,0.2667502,0.24061991,0.08518966,0.09677396,0.17248698,0.057484265,0.43565485,-0.3739381,-0.030062595,0.018735275,0.24622166,0.14722836,-0.1176297,-0.44786564,-0.4304983,-0.1478004,0.012848245,0.08322836,0.25423953,-0.28806168,0.5162043,-0.08858901,1.541303,0.01833306,-0.029238794,0.007379302,0.46233818,0.2296857,-0.38164225,-0.21773735,0.30532256,0.39553586,-0.022195837,-0.6274468,0.25870752,-0.20233901,-0.49856558,-0.1398387,-0.51602566,-0.2184647,-0.007966815,-0.4118983,-0.19706014,-0.013358661,-0.4729775,0.43650243,-2.8626676,-0.17670943,-0.068839915,0.41245696,-0.07329493,-0.38671902,-0.21139695,-0.51535696,0.3484476,0.2586972,0.47613975,-0.61606866,0.19289216,0.25902802,-0.60453415,-0.08131168,-0.66874653,-0.19986336,0.05944633,0.25037065,-0.048326038,0.19097233,0.10932697,0.083475575,0.6449192,0.07021308,0.18189184,0.3293624,0.267405,-0.052458797,0.40414906,-0.14023522,0.5998946,-0.3925438,-0.23645894,0.15220584,-0.45816627,0.2520947,-0.16089192,0.11608045,0.5830742,-0.51513225,-0.9097719,-0.5400539,-0.046687774,1.0750662,-0.23801358,-0.214853,0.34422487,-0.6679195,-0.15880392,-0.087156974,0.58853287,-0.094148435,-0.2850318,-0.6510878,-0.061689913,-0.022594512,0.12659942,-0.15436423,-0.1626147,-0.36556175,0.55180836,0.012508056,0.52844256,0.07222437,0.2416247,-0.4079368,-0.4295521,0.014058909,0.710571,0.27075213,0.109567784,-0.29979092,-0.15839057,-0.4830532,-0.11518902,0.22309522,0.40275216,0.54374546,-0.061338995,0.2633726,0.27537006,0.07180939,0.07825339,-0.0884333,-0.16111015,-0.22337784,0.03555782,0.49208885,0.63227284,-0.18366599,0.5535268,-0.047811057,0.1457734,-0.27851316,-0.5113456,0.5073102,1.0314779,-0.23078415,-0.27146694,0.72787297,0.41562057,-0.23935713,0.44093704,-0.44674602,-0.24709122,0.38292837,0.021578103,-0.22247872,-0.04510615,-0.3402031,0.20654067,-0.8452458,0.27515247,-0.12308257,-0.65526295,-0.5691768,-0.07564402,-2.4007506,0.06700749,-0.1774068,-0.2241421,-0.09633376,-0.28107062,0.14540707,-0.6625501,-0.58224815,0.16205215,0.10137181,0.81194556,-0.09472559,0.008718112,-0.19849475,-0.4067946,-0.26347256,0.13220437,0.0069051045,0.6660531,0.0886731,-0.47056586,0.22504674,-0.19556591,-0.42847568,0.019559333,-0.5462479,-0.40068844,-0.13863327,-0.5309342,-0.24806793,0.6262274,-0.38593602,0.014952366,-0.21366024,0.021863086,0.0108713405,0.23161362,0.07967348,0.08959078,0.099360034,-0.085917644,-0.022230055,-0.123484954,0.1405725,0.019472046,0.18881914,0.4630086,-0.036349542,0.37390164,0.62437767,0.71281826,-0.2505429,0.9261208,0.5837002,-0.03593443,0.22831662,-0.21324016,-0.1334983,-0.37061113,-0.18304382,-0.022026064,-0.48898554,-0.47668096,0.05086572,-0.2614945,-0.930795,0.44251353,0.014125243,0.2836854,-0.006516001,0.07750527,0.46784395,-0.17820075,-0.034085162,-0.16722608,-0.13581824,-0.6237432,-0.37571263,-0.6104426,-0.4941521,0.1182534,1.1273639,-0.3227608,0.1026022,0.05075541,-0.4196349,-0.09899149,0.17205046,-0.076085545,0.13732424,0.2319933,-0.19177534,-0.54814637,0.40538588,-0.11975847,0.02130783,-0.5115372,0.2754957,0.3992273,-0.5289959,0.45372456,0.20503238,0.004368452,-0.36184642,-0.6305479,-0.1868533,-0.09702628,-0.15299883,0.37670064,0.30847988,-0.8209496,0.41575027,0.3011865,-0.1579796,-0.786754,0.5311962,-0.11198234,-0.07665871,-0.15504916,0.29668516,0.24073033,0.0703457,-0.23925444,0.23646608,-0.6006724,0.2751477,0.2832052,0.009003247,0.21403544,-0.40473005,0.032563835,-0.6809363,-0.067649834,-0.59345293,-0.20474036,0.21140157,0.20007013,0.24704061,0.25948456,0.18477938,0.23980124,-0.27678972,0.06936436,-0.116804846,-0.23042575,0.21731676,0.49061647,0.5660263,-0.31828216,0.57589877,0.10824107,-0.16801323,0.1323895,0.005197712,0.26945996,0.0939657,0.46130952,-0.028934862,-0.28160638,0.09887556,0.78713787,0.17921515,0.31620765,0.005146418,-0.28764796,0.1977867,0.0872281,0.3130724,-0.04136363,-0.44627413,0.031714942,-0.4341829,0.13901098,0.50017166,0.083068624,0.19812274,-0.022550983,-0.30945295,0.023533517,0.083111964,0.0121959,-1.4057205,0.38985476,0.2008716,0.83579594,0.4870886,-0.12586276,-0.092492394,0.6445876,-0.21481732,0.20084274,0.39986873,-0.005131747,-0.45448187,0.5180301,-0.781373,0.6438217,-0.13829136,0.009894414,0.07903488,0.023824135,0.5028561,0.70302665,-0.09379648,0.025816783,0.17630611,-0.44356495,0.21947268,-0.3954466,0.04138233,-0.72561044,-0.13665785,0.74966496,0.44899717,0.34652594,-0.21540888,-0.046337564,0.093756296,-0.24188769,0.03972217,0.037061363,0.11815793,-0.060709093,-0.6501504,-0.2467697,0.4977367,-0.10705304,0.25958258,0.23913701,-0.2395508,0.1321262,-0.0784866,-0.020234644,-0.092305735,-0.7619607,-0.15364514,-0.28143847,-0.47187892,0.5733244,-0.2044706,0.22702101,0.27013156,0.067992084,-0.3367508,0.48608828,0.08857578,0.73196495,-0.035913676,-0.004399076,-0.31477872,0.2503764,0.30548224,-0.21640562,-0.0062605953,-0.13988099,0.0091180885,-0.49825588,0.44849485,0.0166028,-0.307439,-0.12390698,0.038038675,0.10511704,0.4913877,0.0124847805,-0.047121465,-0.24946356,-0.16495414,-0.22919454,-0.09936724,-0.06651711,0.4082925,-0.010089176,-0.025917659,-0.1627396,-0.005234382,0.015845418,0.27451274,-0.13570824,0.2499014,0.25404564,0.006221022,-0.29844937,-0.10467325,0.24049632,0.44931015,0.021803753,-0.29651424,-0.29231736,-0.2159365,-0.4678336,0.13679527,-0.1330849,0.44527408,0.18129714,-0.17823759,0.6145378,-0.08433326,1.1149886,0.050952222,-0.35766461,0.23322406,0.42698365,0.08950003,-0.06823533,-0.17861591,0.744547,0.35789683,-0.07527838,-0.13782267,-0.40567583,0.03591678,0.42403665,-0.18816169,-0.2985301,0.014336115,-0.7200459,-0.08062149,0.14545189,0.05140559,0.25250444,-0.20210387,0.13544856,0.37108323,0.00848532,0.21122684,-0.37302878,-0.031394333,0.35111883,0.4091335,0.13649361,0.20819266,-0.50778455,0.36314663,-0.6181795,0.07819908,-0.13738617,0.32808104,-0.31108174,-0.3879804,0.22433938,0.3255416,0.4249865,-0.1832769,-0.3419671,-0.37504014,0.5734238,0.11818821,0.114015065,0.43383935,-0.2822892,-0.09969691,0.18940042,0.33737808,0.82740813,-0.15319416,-0.111331,0.15569447,-0.38577884,-0.71766835,0.40038306,-0.35907593,0.31361768,0.07121542,-0.12170475,-0.66742355,0.18819237,0.362662,0.107387125,0.21831386,-0.46039346,-0.23376642,0.0686728,-0.18444307,-0.0860679,-0.30321032,-0.057559013,0.41113958,-0.28094894,-0.337277,0.10930992,0.22727826,-0.1419718,-0.47358927,0.04699471,-0.42938414,0.20840214,-0.05796246,-0.46315402,-0.18172337,-0.05249718,-0.35889718,0.18788941,0.07302987,-0.20102195,0.103648655,-0.427768,0.011974518,1.014284,-0.10581169,0.29098886,-0.41483185,-0.46384576,-0.7869204,-0.32951233,0.47366497,0.17914446,-0.14279394,-0.6966325,0.056809943,-0.020807458,-0.16535772,-0.1494209,-0.42331442,0.476155,0.1594439,0.040384553,0.14157578,-0.7748137,0.040660437,0.1277811,-0.10367259,-0.48651966,0.41065088,-0.07305244,0.92247254,0.124697626,0.12451149,0.18896106,-0.36245912,-0.048982166,-0.22594154,-0.12134386,-0.32761684,0.008362202,874 -556,0.55488044,-0.22715823,-0.3795924,-0.12701465,-0.13651934,0.12283184,-0.22486873,0.6002191,0.24425444,-0.4415923,-0.1343171,-0.032984674,0.008434228,0.019491931,-0.11093016,-0.48148552,-0.017692907,0.075059,-0.27045926,0.3732612,-0.5460575,0.2683435,-0.092136584,0.35516542,0.11756963,0.1668329,-0.06767933,-0.06069988,-0.13948084,-0.21519968,0.061898865,0.24333243,-0.58632106,0.06835587,-0.11983796,-0.40229398,-0.12769897,-0.5724124,-0.39285812,-0.7704135,0.28928787,-0.9094735,0.4524333,0.1317486,-0.4267009,0.35067686,-0.19510286,0.20008779,-0.17094228,0.040907733,0.26315764,-0.07278638,0.0010567562,-0.10362619,-0.10608566,-0.2321088,-0.54827017,0.10273888,-0.38184372,-0.124244556,-0.24286301,0.15388565,-0.30871448,-0.12488679,-0.24161138,0.3629282,-0.45100856,-0.08862404,0.08939104,-0.03143059,0.39647225,-0.5468251,-0.171181,-0.077837445,0.22935757,-0.28634712,-0.32901338,0.19530432,0.3367004,0.5148375,-0.1128241,-0.13527003,-0.36083212,0.1356364,0.13530329,0.49372083,-0.22359411,-0.59569687,-0.097674794,-0.10667891,0.24566521,0.17574856,0.15612806,-0.20456335,-0.12040043,0.2222689,-0.22126658,0.46804184,0.6571273,-0.2896431,-0.20709576,0.34692413,0.49503216,0.15499112,-0.12884596,0.0154784685,0.108754106,-0.526014,-0.19602226,0.13776739,-0.19433452,0.40351883,-0.10704831,0.29584482,0.69459754,-0.30753297,0.2185955,0.22410974,-0.04856914,0.023588022,-0.29284737,-0.29147768,0.16631912,-0.48442274,0.17229751,-0.30400744,0.72883,0.13775861,-0.76492935,0.3844537,-0.48072094,0.045944843,-0.1387256,0.53459007,0.70714986,0.3556536,0.26976115,0.6405697,-0.33534318,-0.08957333,-0.13141893,-0.2789542,0.14899768,-0.14907227,-0.0037843627,-0.43745184,-0.24052326,0.07329665,-0.18877585,-0.0016310407,0.43789297,-0.5867868,-0.053981643,0.13786367,0.53404385,-0.25914285,-0.029323488,0.8640571,0.98834556,0.97438276,0.16906306,1.0234979,0.2452947,-0.14898984,0.3759132,-0.37841627,-0.6628066,0.29850063,0.25092018,-0.0032212224,0.15605898,0.06650684,-0.12277087,0.4283007,-0.41154522,0.059272546,-0.26786572,0.17832766,0.038321298,-0.12513268,-0.3631291,-0.38391113,-0.19476545,0.06289879,0.04535056,0.33420447,-0.33622423,0.10303626,0.05032461,1.4408578,-0.13152243,-0.066247895,-0.079797566,0.51525027,0.14596434,-0.29285505,-0.029661626,0.28084844,0.3462816,0.044803053,-0.66899925,0.17248301,0.008392648,-0.38801533,-0.1025793,-0.31243473,-0.057542853,-0.052618004,-0.53171456,-0.08544419,-0.11490888,-0.37879896,0.47824892,-2.747987,-0.19918834,0.0882544,0.4476969,-0.23411933,-0.43048888,-0.12190567,-0.5208401,0.42728895,0.304069,0.41876712,-0.7324019,0.42338654,0.41770586,-0.5927825,-0.11297672,-0.86337775,-0.16778103,-0.119612746,0.22290137,0.15578164,0.024138058,0.08657255,0.10121875,0.49731573,0.06594188,0.16347383,0.1328688,0.47218376,-0.12025845,0.47657198,0.033843443,0.5181894,-0.14580072,-0.28921917,0.42370838,-0.538335,0.18564582,-0.13680194,0.09221654,0.38109216,-0.463674,-0.93202984,-0.77590746,-0.27059886,1.1301317,0.0019939903,-0.446621,0.25503987,-0.3668783,-0.38539657,-0.16507605,0.62974614,-0.029178295,-0.21567336,-0.80439466,-0.073312655,-0.17173631,0.063223764,-0.092583634,0.030326933,-0.43904427,0.6678272,-0.08979644,0.43128517,0.32929605,0.20714703,-0.12184825,-0.40423235,0.03434486,0.94914395,0.34495422,0.1644993,-0.3117953,-0.1919948,-0.2963799,0.0768669,0.07953213,0.5715479,0.70980805,-0.027511433,0.10746704,0.19435,-0.078945376,0.008431016,-0.17041557,-0.24046397,-0.18369389,0.031070169,0.6567007,0.57460606,-0.15245779,0.301334,-0.11202401,0.15509859,-0.2649922,-0.34676674,0.4450086,0.8754038,-0.09056697,-0.14127393,0.56584305,0.50155747,-0.26694804,0.43822408,-0.6174597,-0.17527452,0.31616473,-0.22991194,-0.30688924,0.28509393,-0.3459498,0.109492145,-0.74079263,0.4035658,-0.3846743,-0.5207566,-0.644834,-0.043590274,-3.257904,0.14359252,-0.1658493,-0.27299246,-0.058843784,-0.27776128,0.39804247,-0.533082,-0.42708096,0.21932228,0.044995725,0.7399325,-0.065996364,0.04070919,-0.33944082,-0.21412696,-0.3490012,0.05294547,0.21031882,0.3811057,0.01728341,-0.26420212,-0.023122687,-0.14445817,-0.36188895,0.06356991,-0.48670968,-0.5806173,-0.099318095,-0.3578735,-0.3579809,0.65840524,-0.22090718,0.055820864,-0.12106816,-0.10833882,-0.16309164,0.5038094,0.08052849,0.023976663,-0.022111658,-0.026748335,0.055162173,-0.24470337,0.35304165,0.10671002,0.2303777,0.4364338,-0.18286574,0.17113106,0.55243,0.63104016,-0.064534985,0.9671955,0.4354175,-0.06758846,0.29083493,-0.20563592,-0.21686493,-0.41705108,-0.26602855,-0.017873066,-0.45815334,-0.39849648,-0.10073502,-0.41103896,-0.80018556,0.43027505,-0.08608309,0.07307492,-0.029952075,0.27139673,0.4987733,-0.04057467,0.021218743,-0.053336047,-0.051876523,-0.45241198,-0.21811703,-0.5718464,-0.48636946,0.15986072,0.9601097,-0.14904039,-0.043206684,0.07588738,-0.11761657,0.005042327,-0.022229016,-0.13702476,0.06944754,0.31752157,-0.1140024,-0.5978581,0.43646988,-0.019287612,-0.2347304,-0.504059,0.2610839,0.6461044,-0.56573135,0.491987,0.32883188,0.045533914,-0.05903382,-0.52323276,-0.19538583,0.004760951,-0.19998135,0.52650684,0.264401,-0.87867355,0.44900376,0.3863211,-0.15142976,-0.67538136,0.5284001,0.009667174,-0.24823202,-0.15164852,0.28963107,0.074291945,0.042498294,-0.101788215,0.3895468,-0.4730444,0.2722876,0.22474436,-0.09367216,0.3205886,-0.08953427,-0.010082798,-0.6152402,0.033664357,-0.50328976,-0.26566106,0.16099834,0.05373449,0.26796648,0.3557203,0.11058233,0.47769046,-0.33606863,0.053503275,0.015909484,-0.22198166,0.2843503,0.38065365,0.53492993,-0.34446397,0.51501155,0.013676521,-0.16802166,-0.020214388,0.043061238,0.49137232,0.040314887,0.36279067,-0.08830388,-0.2807498,0.25944406,0.9231976,0.18982725,0.52497786,-0.1073214,-0.12102204,0.193558,0.16641307,0.27637962,0.06053864,-0.53592414,0.04840519,-0.12012075,0.2474797,0.33237094,0.10317183,0.19432862,-0.19234875,-0.26309,0.051007856,0.23831403,0.001715924,-1.2007338,0.35889387,0.118779145,0.8154647,0.4939074,-0.056622125,0.13606076,0.5326241,-0.14947878,0.1933416,0.27389202,0.0561843,-0.5528793,0.38932195,-0.76440036,0.4501441,-0.07899164,0.016011333,-0.07383331,-0.32638973,0.45713836,0.66605407,-0.14760184,0.12335747,0.06305052,-0.3242225,0.20287749,-0.41086483,0.14949398,-0.62152106,-0.13669549,0.7587237,0.5344734,0.32990798,-0.119000874,0.047835026,0.1176408,-0.0662788,0.06012777,0.104947194,0.090033926,0.11268855,-0.6321629,-0.18820307,0.45617884,-0.17561838,0.05369047,-0.119344436,-0.24918607,0.2010593,-0.112466134,-0.19691607,-0.09960177,-0.647677,-0.12605955,-0.4861366,-0.3480284,0.3298485,0.033556823,0.25344032,0.27879095,0.10479142,-0.16893911,0.2938431,0.32297176,0.6875568,-0.028255591,-0.08405429,-0.55623287,0.16479579,0.27147022,-0.20219956,-0.27910742,-0.14225045,0.09298923,-0.55880296,0.36054182,-0.10994851,-0.28809687,0.14281282,-0.06640327,0.08274456,0.63693655,-0.22705524,-0.118022956,0.07618941,-0.18203174,-0.3469903,-0.043061376,0.018920472,0.29038954,0.29897076,-0.1029013,-0.05598822,-0.12893136,-0.07466829,0.43584174,0.18935837,0.4852921,0.465501,0.097476505,-0.31403446,-0.16389465,0.099412456,0.46678302,-0.07511644,-0.13211203,-0.50510174,-0.39530846,-0.35394734,0.2568925,-0.062074937,0.3394538,-0.030343028,-0.15420659,0.6822185,-0.04532034,1.0176725,0.06520516,-0.35490295,0.07741117,0.46477175,-0.062127948,-0.07745019,-0.50083864,0.87219316,0.31653878,-0.16270159,-0.039645854,-0.2617203,-0.14615504,0.18648466,-0.18724763,-0.085890554,-0.0017023215,-0.79130507,-0.12484356,0.24980481,0.2846509,0.14947358,-0.049269717,0.17598207,0.2762483,0.03528818,0.18747355,-0.5033251,-0.11930816,0.29017448,0.34634557,0.0040787435,0.11475862,-0.42236763,0.32911894,-0.4819991,0.0277407,-0.2212369,0.19296433,-0.083017126,-0.3310006,0.23820181,0.101788215,0.30402446,-0.2153085,-0.4111581,-0.16842987,0.45845684,0.0647049,0.29559273,0.48148638,-0.20817627,0.022233231,0.030873192,0.5503287,1.1058505,-0.13523814,0.030458795,0.393739,-0.3326395,-0.59218407,0.38621834,-0.29073408,0.19508068,-0.015346795,-0.16603628,-0.45715973,0.27704015,0.31785172,0.09050586,0.030574014,-0.628086,-0.31213313,0.29680255,-0.33460647,-0.20565839,-0.3380006,0.12124871,0.68060505,-0.32865795,-0.2236075,-0.0032229295,0.43910772,-0.28821254,-0.34752408,0.041092474,-0.39297876,0.2725293,-0.06703996,-0.3607933,-0.03902303,0.054449704,-0.33310333,0.17150028,0.11115767,-0.33792803,0.028268397,-0.39579174,0.016719852,0.9682507,-0.117674336,0.17412615,-0.5165018,-0.53511506,-0.80191123,-0.31882545,0.276504,0.15219344,0.011965058,-0.5525828,-0.02393519,-0.015142866,-0.096902624,-0.07166491,-0.4220059,0.5606151,0.1227963,0.32352918,-0.06558373,-0.68359745,0.07094427,0.16286013,-0.30879906,-0.5606972,0.5273419,0.02081178,0.9806785,0.13869074,0.13012211,0.14476313,-0.36098364,0.034058828,-0.27209345,-0.18648598,-0.7897073,0.086065605,875 -557,0.39488247,-0.19997959,-0.43699592,-0.0039151227,-0.2907138,-0.051050045,-0.0036331713,0.44921634,0.027646255,-0.2825396,-0.20711817,-0.09481721,-0.19821645,0.3910954,-0.25548384,-0.79209787,0.05228755,0.2318871,-0.44594035,0.69663006,-0.26898298,0.36057472,-0.019573828,0.20523386,-0.01583368,0.24267878,0.12495698,-0.27219364,-0.10334567,-0.1339259,-0.19951065,0.28154686,-0.48551694,0.3341494,-0.15890907,-0.34636542,0.20714493,-0.29865626,-0.3487368,-0.63267076,0.073129795,-0.5647502,0.44978228,0.08096479,-0.25115475,0.22616073,0.047237456,0.33883157,-0.13117139,0.115760446,0.04702434,-0.14350012,-0.062204685,-0.29673004,-0.06302728,-0.6047749,-0.49294403,0.07821224,-0.46931973,-0.15617307,-0.14181237,0.18537839,-0.33501264,-0.25936598,-0.051785927,0.24548234,-0.40995646,0.005643836,0.20671323,-0.118921466,0.052095167,-0.4663187,-0.07887031,-0.15635452,0.2891297,-0.17952968,-0.09863501,0.46508306,0.18862307,0.51648945,0.016778708,-0.16670358,-0.2813329,-0.062354248,0.208701,0.48355013,-0.24732392,-0.52778184,0.017182782,0.15922885,0.2546298,-0.010262383,0.11500375,-0.10830091,-0.08357586,-0.19542918,-0.113989905,0.12264431,0.6093479,-0.387221,-0.3913174,0.3189142,0.41052133,0.16254766,-0.038635153,-0.008794657,-0.09417762,-0.45568207,-0.20530435,-0.05249468,-0.15973212,0.46673384,-0.16541807,0.19698642,0.5452599,-0.20579691,0.17224367,0.17110778,-0.038638975,0.043948896,-0.02496733,-0.33953542,0.20379607,-0.43903634,0.02619608,-0.20008801,0.83048236,0.31363875,-0.74963826,0.26393533,-0.5851738,0.1488415,-0.051000684,0.60400474,0.58495444,0.5624619,0.18581448,0.50032926,-0.49809107,0.12726736,0.031714533,-0.4431083,0.13866243,-0.14361514,-0.13144575,-0.48838696,-0.040962357,-0.0027449557,0.010171788,-0.12812178,0.274389,-0.588163,-0.025643121,0.05651519,1.0060433,-0.36120692,-0.03627124,0.58990675,0.8607583,0.896698,0.0029544064,1.2075092,0.1675154,-0.3171478,0.17028628,-0.358479,-0.6405021,0.26834,0.32943103,-0.44179815,0.3640108,0.048589773,-0.01719155,0.28856444,-0.44282657,-0.006313903,-0.32051244,0.13763689,-0.026626838,-0.114764385,-0.51215154,-0.363901,-0.1182094,-0.01617889,0.007167284,0.47763205,-0.14268476,0.38773474,0.120439604,1.4706625,0.014845277,0.11911274,0.17486112,0.3420969,0.14450203,0.022384511,0.03739069,0.27926156,0.41051823,0.15212989,-0.46630386,0.1341649,-0.33203405,-0.56999713,-0.18452491,-0.30828324,-0.054095007,0.054425005,-0.3483436,-0.26823744,-0.15505747,-0.07525987,0.38954192,-2.303203,-0.075688355,-0.13407548,0.4050676,-0.28455588,-0.3028578,-0.13242128,-0.46548894,0.32995796,0.26403743,0.45470005,-0.6841094,0.45124266,0.3274321,-0.38266876,-0.20391466,-0.5124921,-0.03595299,-0.06482909,0.35800335,0.007243266,0.0817704,0.233992,-0.015995523,0.43762532,-0.17678107,-0.045251068,0.072403654,0.3772224,0.19302198,0.21895488,-0.037982155,0.4652402,-0.27167624,-0.1818588,0.24242045,-0.33184534,0.35461044,-0.04813773,0.11620922,0.2577932,-0.45274892,-0.7319463,-0.64801425,-0.27281886,1.2809925,-0.10673355,-0.3119371,0.21597059,-0.194525,-0.22964384,-0.26590568,0.21334377,-0.24195817,-0.118173905,-0.65398836,0.06560896,-0.08134011,0.21881175,0.08169503,-0.0641057,-0.40915638,0.7052566,-0.050204635,0.508496,0.2507456,0.300226,-0.11677415,-0.55853844,0.0434467,0.8601517,0.46835336,0.10084397,-0.07223344,-0.20471002,-0.16828208,-0.011606668,0.13359429,0.5294878,0.78408635,-0.13573101,-0.15293206,0.30759415,0.028561069,0.20819597,-0.13607314,-0.32661673,-0.099823415,0.07606203,0.62996197,0.5564872,-0.3144097,0.367344,-0.056477956,0.32746574,-0.11853778,-0.42218682,0.422148,1.1053528,-0.2076451,-0.21538304,0.50594825,0.54394287,-0.25711006,0.3469518,-0.6195498,-0.3372622,0.29061764,-0.2625089,-0.34909108,0.1766871,-0.27497137,0.18695049,-0.94700825,0.5416149,-0.37484366,-0.59302706,-0.62760955,0.043391377,-2.8937821,0.2105443,-0.36475992,-0.12683645,-0.13298628,0.049253013,0.1456015,-0.6412934,-0.38954082,0.14150031,0.19418846,0.4849401,-0.051209517,0.13309535,-0.16144025,-0.45606923,-0.27201742,0.056366306,0.1609364,0.17276919,-0.06685351,-0.3364501,-0.046074547,-0.14758097,-0.23291096,0.30879688,-0.6674255,-0.46549678,-0.23986255,-0.42288208,-0.3681019,0.6191518,-0.3787977,0.09653515,-0.11672739,-0.03103978,-0.22489478,0.23087946,0.017915037,0.10743613,-0.016209897,-0.06610339,-0.0027127224,-0.30921507,0.320138,0.063396834,0.5436383,0.34673074,-0.25418624,-0.003964737,0.598942,0.5456275,-0.057441156,0.56221575,0.46715063,-0.08604439,0.47881123,-0.4242387,-0.27482793,-0.51242507,-0.48373505,0.061897464,-0.2748265,-0.47525403,0.08649053,-0.35351494,-0.76646084,0.4428289,-0.060348682,0.04757599,-0.15669353,0.23076956,0.53244215,-0.06648241,-0.096518,-0.06236743,-0.10852115,-0.36346465,-0.26176247,-0.68437016,-0.41162387,0.14517102,1.1296313,-0.2758012,0.06925046,-0.08602141,0.019748032,0.0746476,0.05782688,0.07350115,0.14046678,0.23212826,-0.17242756,-0.7594079,0.54911345,-0.10656093,-0.25090298,-0.39073202,0.15576021,0.5460284,-0.8830667,0.4305007,0.3309633,-0.095649414,0.16951762,-0.5778006,-0.24425554,-0.0042212945,-0.22647245,0.22011207,0.17297229,-0.6229375,0.36979493,0.47502428,-0.39615324,-0.7460961,0.39202997,0.074879415,-0.38822412,0.17149891,0.33945873,-0.016937392,-0.030686041,-0.04639523,0.21512018,-0.40307465,0.34930345,0.22322032,-0.08015459,0.0972525,-0.1458836,-0.002755327,-0.8643292,0.1971599,-0.46047854,-0.32379475,0.29436556,0.24922906,-0.041365985,0.07004578,0.15046947,0.40899286,-0.46671385,0.110499434,0.05810701,-0.35301393,0.29977646,0.39826113,0.49153253,-0.39709058,0.455041,0.042486437,-0.108651124,-0.11450031,0.2645274,0.4475246,0.11945673,0.2994031,0.13660884,-0.16642275,0.41665748,0.87026364,0.20550118,0.50928855,0.068991445,-0.06899108,0.2758221,0.18366805,0.108988576,0.12836626,-0.3497052,-0.042775836,0.05737892,0.15322399,0.5596295,0.18017809,0.37711254,-0.1767064,-0.18475814,-0.086356066,0.29300722,0.11616521,-1.2543142,0.39792666,0.19353901,0.6506896,0.42854327,0.13805565,0.0299107,0.62008667,-0.10435744,0.085741356,0.25256783,-0.070705995,-0.52844536,0.45358583,-0.6439876,0.2993106,-0.012807927,0.044582307,-0.050230715,-0.17847402,0.32525244,0.76532257,-0.07067156,0.029371722,-0.12115259,-0.3527793,-0.070197694,-0.45351562,0.13124533,-0.5741591,-0.23841408,0.48663297,0.5352303,0.18145756,-0.18584435,0.040508162,0.08306075,-0.15339576,0.32771,-0.11973769,0.20711689,-0.00074437156,-0.5380959,-0.04592168,0.5769788,-0.27541155,0.07462952,0.12296919,-0.26449376,0.291154,-0.08317727,-0.04756403,0.012948991,-0.4969265,0.32968095,-0.2745428,-0.19281991,0.5051382,-0.06562516,0.13120793,0.26783773,0.1444603,-0.34840065,0.24627988,0.054857906,0.53448254,-0.08672232,-0.3751913,-0.43465024,0.22053264,0.001793061,-0.1886903,0.059398834,-0.09665998,0.01624448,-0.4073946,0.35315147,0.09356911,-0.055147383,-0.083177604,-0.24606626,-0.16143534,0.5096432,-0.120326765,-0.25822693,-0.057983078,0.008251756,-0.1999121,-0.08604712,-0.08588984,0.16453585,0.29213783,-0.05227215,-0.04712636,-0.1910158,-0.11146788,0.4067902,-0.039269663,0.3972764,0.33871168,0.16628745,-0.39485237,-0.08442932,0.18026781,0.28065804,-0.0842998,0.067479156,-0.39681435,-0.42877293,-0.29142794,-0.031611826,-0.24041322,0.27261502,0.058463354,-0.28899536,0.83784866,0.11413361,1.3343853,0.027681896,-0.20524268,0.08116231,0.5306803,0.110685624,0.024454772,-0.3686033,1.161185,0.61266994,-0.119455226,-0.15538765,-0.37126353,-0.15866682,0.097882025,-0.26390836,-0.22905576,0.22216024,-0.53306997,-0.529959,0.212407,0.1461437,0.08382874,0.0062946444,-0.052806497,0.2764706,0.17373344,0.23788224,-0.43912745,-0.19345392,0.13260925,0.20727685,0.08634411,0.23146784,-0.45673662,0.3563309,-0.4903358,0.07557277,-0.19745721,0.07908332,-0.111810155,-0.33803087,0.16658887,0.032097735,0.24924338,-0.2917785,-0.37109488,-0.075533286,0.46299264,0.094985604,0.24212548,0.6760172,-0.31778422,0.03781075,0.06771861,0.5254533,1.1094208,-0.28969765,-0.24806643,0.32490715,-0.43223003,-0.74008864,0.202559,-0.22613104,-0.011871372,-0.19926691,-0.33509737,-0.6093327,0.32439557,0.28081527,0.08763688,0.008495389,-0.5262628,-0.08288544,0.29704952,-0.5188953,-0.3120106,-0.33954912,0.30204108,0.8082171,-0.3387451,-0.3381761,0.03441573,0.17505781,-0.35705063,-0.55241793,-0.1667973,-0.37112936,0.19337289,0.22552869,-0.2798392,-0.18745898,0.19242565,-0.26859173,0.18855345,0.3807581,-0.24764077,0.12233635,-0.21926905,-0.023995271,0.75238293,-0.29630095,-0.012747399,-0.5681275,-0.42207998,-0.83560574,-0.61277497,0.72321594,0.38805643,0.052508447,-0.73564327,-0.02353694,0.13240623,-0.25992256,-0.13563655,-0.156511,0.27534583,0.120825455,0.2669868,-0.09419511,-0.84632194,0.22991733,0.14878194,-0.091581464,-0.5414837,0.42251047,-0.13473961,1.047891,0.016496275,-0.020172117,0.30832857,-0.43301317,-0.1007144,-0.2595139,-0.21149231,-0.64400226,-0.05659834,886 -558,0.30434337,-0.009458423,-0.6561739,0.012103694,-0.18348122,0.06834761,-0.29363158,0.16090079,-0.183724,-0.40006182,0.026301274,-0.028550684,-0.04165742,0.27101344,-0.22125928,-0.6160087,0.12050021,0.16259754,-0.4353697,0.3637953,-0.5562221,0.5169727,0.08957159,0.11423732,0.04686839,0.10290743,0.2287317,-0.049191687,-0.2254935,-0.5266205,-0.03530138,0.11799378,-0.44876575,0.2786744,-0.118953705,-0.5671164,0.1277809,-0.20709352,-0.3172111,-0.52202195,0.17218621,-0.64222854,0.61444205,-0.05670572,-0.2948714,0.23398885,0.2905617,0.288345,-0.08634262,0.11014582,0.02247736,-0.36025953,-0.37493962,-0.3121775,-0.36092302,-0.39231417,-0.70989096,-0.009875426,-0.8251093,-0.09137132,-0.28292236,0.2884427,-0.42240283,0.12222852,-0.19334683,0.41630387,-0.36079484,-0.07721359,0.10944005,-0.07751789,0.17514066,-0.41137815,-0.075657845,0.026183257,0.11987823,-0.22574104,-0.09245561,0.19499336,0.18229572,0.48262718,-0.047204368,-0.31729826,-0.22099657,-0.31921768,0.13644205,0.68239975,-0.18107985,-0.26506475,-0.19141474,-0.018989589,0.25982705,0.36547357,0.061280128,-0.09406607,-0.15312913,0.08332533,-0.34487298,0.34918264,0.4896354,-0.42452022,-0.22498357,0.49895993,0.46073914,-0.04701389,-0.18288119,0.23001882,0.005647438,-0.51713383,-0.1824709,0.21769522,-0.08621262,0.43193126,-0.11956322,0.3505178,0.49200064,-0.3169925,0.00022636993,0.27557454,0.020331947,0.073423095,-0.18034495,-0.18517168,0.29650378,-0.6313551,-0.0688328,-0.32729015,0.9259254,-0.1580193,-0.6133853,0.37944552,-0.59168005,0.16475967,-0.14545788,0.7660025,0.44098708,0.47221875,0.18997426,0.63419676,-0.44466308,-0.09427791,-0.056957014,-0.30475253,0.038137138,-0.09427207,-0.08320493,-0.41720873,-0.093494296,0.21631955,0.15081401,0.045651525,0.646885,-0.4567053,-0.17092599,0.013720402,0.6887346,-0.35123926,-0.13350847,0.79952323,1.2215022,1.1171701,0.050785176,1.0965152,0.19412418,-0.07663642,-0.3595124,0.0037512097,-0.51485336,0.18568388,0.37406197,-0.048904903,0.23251669,-0.017680893,-0.14662494,0.40461522,-0.31755295,-0.21384974,-0.022604434,0.30797,-0.1944022,-0.16345449,-0.41078717,-0.22609796,0.048318725,-0.03744607,0.15823151,0.31356832,-0.2942109,0.47679368,0.1453424,1.0663451,-0.084185876,0.23650463,0.15143745,0.26971337,0.19577622,-0.0761954,-0.06110808,0.1346391,0.3237216,0.13092557,-0.5944312,-0.020019459,-0.20834698,-0.47894764,-0.22002697,-0.1910256,-0.10472681,-0.32176188,-0.4048519,-0.045451794,-0.049560454,-0.41752347,0.35966662,-2.7017856,-0.11552048,-0.15709198,0.27257967,-0.11406521,-0.38595608,0.04929506,-0.387444,0.60965043,0.2618731,0.47172028,-0.52203196,0.52867967,0.38146684,-0.25734454,-0.051537436,-0.6982361,-0.16972148,-0.15396859,0.3628066,0.009448878,-0.20107542,-0.06411668,0.09771901,0.5161436,-0.24648093,0.11820569,0.25224653,0.21786237,-0.17387508,0.33732802,0.22238572,0.507252,-0.30853006,-0.15454046,0.33895403,-0.36053377,0.1746575,-0.030286659,0.21324413,0.32057995,-0.4972097,-0.81580776,-0.5018007,-0.25743753,1.1982133,-0.23803948,-0.4164396,0.18055226,-0.1457318,-0.37539697,-0.059124026,0.2790354,-0.21948242,0.080651276,-0.6917431,0.11493899,-0.2513102,0.28801855,-0.14643833,0.04130837,-0.45649877,0.37085006,-0.21411227,0.52492964,0.41901565,0.3087874,-0.38458303,-0.42399073,0.017727364,1.2247149,0.48352218,0.06636109,-0.26593798,-0.09227978,-0.21677658,-0.089440785,0.25262806,0.42816567,0.9537549,-0.007555557,0.25384405,0.2944176,-0.14659746,-0.032891933,-0.06506974,-0.38453588,-0.05577619,-0.04159264,0.74275464,0.35633025,0.13023318,0.7005711,0.044986725,0.303129,-0.3785047,-0.45173195,0.36136872,0.6591631,-0.2646756,-0.50077564,0.7416239,0.54424804,-0.11523663,0.46204165,-0.6595031,-0.4926358,0.33090404,-0.17106523,-0.28772092,0.2676664,-0.4468228,0.1509596,-0.958971,0.3494497,-0.36613157,-0.83689225,-0.49674925,-0.21945561,-3.5472908,0.16532029,-0.2936898,-0.0737216,-0.017375618,-0.108818114,0.33923694,-0.41635087,-0.48552987,-0.02206544,0.17907265,0.75155896,-0.009238473,0.05813033,-0.18703648,-0.2671022,-0.21881844,0.29686132,0.23498929,0.025414307,-0.19459009,-0.42684358,0.058755483,-0.36414847,-0.4223626,0.031226078,-0.52687174,-0.4277072,-0.11815642,-0.42352384,-0.43305498,0.717794,-0.40271068,0.09677559,-0.35179785,-0.06392713,0.07588712,0.3294256,0.17272642,0.20779242,-0.028683273,-0.117248,0.15579839,-0.37876898,0.14186232,0.011407788,0.31731793,0.36485547,-0.19367285,0.1088186,0.4530169,0.46431333,0.09918112,0.8677698,0.30601472,-0.1107691,0.27268323,-0.21932779,-0.16948883,-0.63935727,-0.32195792,-0.062386844,-0.48758644,-0.39949465,-0.16327386,-0.22631283,-0.7924163,0.6422185,-0.0077664256,0.16232207,-0.20543323,0.656375,0.3086783,0.051449332,-0.19285192,-0.0022225103,-0.20053622,-0.19162989,-0.20427176,-0.88214797,-0.4557334,-0.09635444,1.212279,-0.15085149,0.042698495,0.08273102,0.026418865,-0.018558834,0.23344043,0.18959199,0.22739315,0.39175707,-0.06836914,-0.59533113,0.45352724,-0.43804544,-0.20447949,-0.57082015,-0.015558756,0.803336,-0.65938044,0.23505116,0.6281241,0.20950942,-0.07352698,-0.55765903,0.1542162,0.061703924,-0.26693672,0.51626873,0.29136583,-0.91113293,0.6896113,0.20125309,-0.14585736,-0.56740695,0.589547,0.05946412,-0.25604722,0.04722819,0.43298766,0.015757935,0.028845906,-0.1282758,0.19104151,-0.42071941,0.27648604,0.22236952,-0.02658186,0.42891958,-0.35052446,-0.19797993,-0.51823086,-0.08359504,-0.56291336,-0.2342415,0.033711016,-0.09878214,0.07632666,0.3891748,-0.25883552,0.4918876,-0.34723637,0.13320753,-0.16934405,-0.37319332,0.5922213,0.59391946,0.19306199,-0.27504024,0.7376091,0.082079925,-0.059537154,-0.4034443,0.10625375,0.5837164,-0.14022301,0.4772327,-0.0031439534,-0.090334974,0.4399652,0.6691317,0.27463788,0.4180588,0.18474486,-0.04075406,0.025900874,0.04993971,0.10353215,0.13600247,-0.21154268,-0.17243113,-0.045089044,0.16562581,0.5679745,0.077348016,0.5443297,-0.17289785,-0.07469742,0.119123034,0.07535007,-0.15794322,-1.0225006,0.5550822,0.1607937,0.5291304,0.42072344,0.12431472,0.091178976,0.32430997,-0.34012467,0.06445082,0.20436606,0.26920062,-0.29160944,0.7428111,-0.7834032,0.62602985,-0.15876476,0.060874958,-0.061555814,-0.31589535,0.57889044,1.0153884,-0.03766244,0.22820666,-0.029650133,-0.2618768,0.120626375,-0.19768672,0.12796697,-0.36828265,-0.090389885,0.8627687,0.283959,0.44517747,-0.069781,-0.056206953,0.33229074,-0.12990752,0.10325552,-0.0815859,0.23998697,-0.33505538,-0.43674034,-0.40423623,0.5166549,0.11735994,0.048896134,0.20812489,-0.09888454,0.28519437,0.012529945,0.079090714,-0.066432804,-0.3414953,0.20526853,-0.3307655,-0.49892792,0.16402899,-0.6418076,0.24651964,0.20886387,0.112866625,-0.37998995,0.12210937,0.34166327,0.5710348,-0.08539772,-0.256209,0.023083882,0.093321875,0.21222804,-0.2599804,-0.1912287,-0.25693712,0.28916788,-0.8873935,0.3735314,-0.37293047,-0.4135233,0.12078752,-0.09419562,-0.05656067,0.3029153,-0.042793963,-0.17250998,0.27433887,-0.10160502,-0.14633033,-0.36872667,-0.13094105,0.17918698,0.07423817,-0.074652515,0.0019197613,-0.014504318,-0.090518065,0.24440329,0.027103782,0.20603988,0.33736032,0.21357475,-0.49664512,-0.115562476,0.03925011,0.55369246,-0.16917661,0.080272004,-0.3998099,-0.39092237,-0.14961436,0.28079405,-0.16293696,0.3676522,-0.010009144,-0.30490535,1.0101913,-0.08272944,1.1118585,0.1002865,-0.44941607,-0.023434231,0.63236034,-0.0025518963,-0.12156408,-0.1402528,1.1354771,0.50302535,-0.13815083,-0.20496882,-0.47929478,-0.045102052,0.17840101,-0.21990278,-0.5321515,-0.11269627,-0.46963024,-0.09968337,0.20789555,0.2730934,0.042781178,-0.08970194,0.035388507,0.4691989,0.026720962,0.20709644,-0.58089125,0.09070015,0.33544657,0.18508264,-0.24356246,0.0509338,-0.4580718,0.22107159,-0.7226986,0.08564918,-0.16340633,0.0863262,0.05909692,-0.28144982,0.33214813,0.13048737,0.2108858,-0.1704794,-0.17711045,-0.090845644,0.34043702,0.11396334,0.084333725,0.8445224,-0.274369,0.15344891,-0.039638035,0.3751492,1.2834046,-0.12447625,-0.2163793,0.1694196,-0.3414637,-0.8576661,0.2080609,-0.45170334,0.09068276,-0.040291555,-0.59630996,-0.40329698,0.22390537,0.26849762,0.037489634,0.19008161,-0.42334023,-0.19602333,0.069489725,-0.31829324,-0.28117657,-0.36196628,0.08730099,0.6133456,-0.15411393,-0.21329428,-0.019985994,0.533815,-0.17566426,-0.5334525,0.15141816,-0.2901228,0.29245,0.0076820618,-0.18618011,0.0996437,0.047674365,-0.38380584,0.12534033,0.5201963,-0.21458681,0.061638184,-0.18899487,-0.020229409,0.5964491,-0.31699768,-0.016812911,-0.60015285,-0.65659696,-0.62438303,-0.36608785,0.36151853,0.12022022,0.12300454,-0.4935748,-0.036495592,-0.06483635,-0.037107725,-0.0953406,-0.29777876,0.31601068,0.14152597,0.22544707,-0.09335906,-0.793861,0.08802002,0.013168929,-0.24387717,-0.40594664,0.60114765,-0.17806573,0.6231526,0.19676249,0.10520792,0.35379335,-0.64471626,0.2634212,-0.16532663,-0.2054522,-0.8024992,-0.064486034,901 -559,0.70105976,-0.44764593,-0.5987941,-0.21149321,-0.3795922,0.008877954,-0.09324447,0.6122036,0.32256892,-0.53417933,-0.10189365,-0.07333847,0.05454411,0.20599107,-0.18631852,-0.42613462,0.011362025,0.26818708,-0.39883694,0.50197995,-0.25871378,0.11372714,-0.09863361,0.4341022,0.38738114,0.30014727,-0.020112531,0.017402265,-0.27065918,-0.050067756,-0.26643512,0.4055269,-0.19323908,0.15869264,-0.1845874,-0.39918828,-0.11514529,-0.51079184,-0.44401073,-0.81360537,0.28658715,-0.9862047,0.5174957,-0.07169354,-0.38492537,0.11614835,0.022232039,0.30990416,-0.22987089,-0.17133613,0.13021526,-0.100803725,-0.025333464,-0.26099232,-0.14051409,-0.46034107,-0.48177317,-0.08413168,-0.43215698,-0.06623238,-0.20784292,0.1453072,-0.35243702,0.029176397,-0.030972498,0.6590583,-0.41181394,0.17389257,0.17318483,-0.1394724,0.22911476,-0.68920857,-0.22866847,-0.10023613,0.24073291,-0.004072726,-0.3450837,0.26352626,0.344817,0.37308767,0.020039456,-0.12725213,-0.40234852,0.028101739,0.06913103,0.49188253,-0.102278374,-0.5896296,-0.09822942,0.12537217,0.3795474,0.29850173,0.15989934,-0.18256953,-0.074909985,0.0396036,-0.16682294,0.5877713,0.49688697,-0.25712475,-0.0076448363,0.3300362,0.5922331,0.19611652,-0.26729435,-0.0070654578,0.071692295,-0.49154788,-0.09454657,0.11702608,-0.23466794,0.56073016,-0.16759232,0.2473403,0.68284386,-0.19774795,-0.06564604,0.3295299,0.26211292,-0.2678198,-0.3168525,-0.31215337,0.23273836,-0.4981107,0.07951533,-0.16003005,0.73829174,0.07539863,-0.66706973,0.3630959,-0.50350744,0.15289386,-0.24115722,0.38975668,0.73777705,0.5765077,0.2778558,0.6368965,-0.38448796,0.061254047,-0.06987666,-0.38522032,0.02166115,-0.16023263,-0.025559405,-0.6386925,0.063727975,-0.07684677,-0.16138735,0.12190221,0.5652386,-0.60635436,-0.24166144,0.19746824,0.90465075,-0.29572746,-0.195747,0.9291957,0.9848871,0.99045056,-0.017929273,0.9767148,0.2956446,-0.15175162,0.21382876,-0.22684397,-0.5352331,0.33597603,0.3748377,-0.20386791,0.25433105,0.06592618,-0.16616423,0.52393115,-0.21861175,-0.07174766,-0.22437869,0.10756158,0.10872885,-0.10327522,-0.71311885,-0.25085968,-0.21930142,0.038899235,0.07055222,0.26318935,-0.2663376,0.5880187,-0.043573253,1.7342898,-0.016881982,-0.06547742,0.015788937,0.47791713,0.28772303,-0.18759991,0.03125045,0.3314133,0.29199123,0.22186275,-0.4848983,0.1852123,-0.3082004,-0.40508628,-0.14419165,-0.42088142,-0.09111137,-0.07522554,-0.55350256,-0.13954036,-0.13123734,-0.24726336,0.3997434,-2.6573923,-0.2707798,-0.12367307,0.29608414,-0.12958845,-0.45952368,0.060465872,-0.50937027,0.15365145,0.25462034,0.56775707,-0.6762761,0.47060868,0.46853706,-0.6925365,0.023192257,-0.6605355,-0.16716185,-0.058719374,0.3754956,0.02831867,-0.02296351,0.19548659,0.047430165,0.64751685,-0.009259666,0.16569047,0.35083422,0.452591,-0.11603405,0.46389365,-0.019599753,0.53132266,-0.3275234,-0.17760277,0.20352349,-0.2624566,0.19109389,0.08328402,0.17232932,0.674702,-0.34728318,-1.0103045,-0.74090344,0.16556738,1.1070067,-0.14089148,-0.36385494,0.24635959,-0.565211,-0.37297088,-0.08983489,0.37550372,-0.019578686,-0.0048877853,-0.7820601,-0.00989068,-0.038306355,-0.0081239,-0.06692539,-0.19732358,-0.3298213,0.66738033,-0.033770133,0.5581372,0.28283006,0.23968521,-0.2747535,-0.44393235,0.006908422,0.78809375,0.41370863,0.2292148,-0.18489334,-0.14168529,-0.30295506,0.13970253,0.15506856,0.5523071,0.5317458,-0.06057504,0.0740853,0.33078983,0.0059296316,0.055722486,-0.16907117,-0.32775503,-0.21806109,0.05844164,0.48896644,0.7443093,-0.15615596,0.67155886,0.02336063,0.42514896,-0.10116778,-0.5771223,0.46093497,1.0507087,-0.36066452,-0.51764154,0.646335,0.47843435,-0.31846243,0.35289308,-0.5818501,-0.22412793,0.26862678,-0.13779666,-0.43385074,0.21492757,-0.27392864,0.25180453,-0.91691226,0.19675432,-0.23229432,-0.73916924,-0.5726513,-0.10581769,-3.0433772,0.2773752,-0.25698653,-0.27509284,-0.008111919,-0.24696173,0.17475319,-0.8335727,-0.5141624,0.21666281,0.10442763,0.76320016,-0.081802055,0.019738572,-0.21005782,-0.45156422,-0.1290253,0.09854501,-0.00049071066,0.3504551,-0.03218255,-0.48852494,0.012588433,0.04198537,-0.3786192,0.087204285,-0.7590908,-0.5546144,-0.14365983,-0.5626321,-0.33206192,0.64279544,-0.0798947,0.0663782,-0.19983952,0.17998405,-0.098350815,0.21774206,0.0071414975,0.08903899,-0.06281946,-0.116652034,0.21854474,-0.30264708,0.24208973,-0.066130616,0.3385178,0.23053889,-0.1645509,0.2822434,0.7166861,0.7423081,0.00900001,1.0057815,0.47108918,-0.20084277,0.21117862,-0.112191096,-0.45901966,-0.57492054,-0.2925566,0.02445143,-0.47185978,-0.32793778,0.011525835,-0.51235414,-0.8505255,0.6553008,0.06488162,0.3771952,-0.016600074,0.29580072,0.78301907,-0.32583705,-0.06701634,0.0010143305,-0.2057542,-0.65603083,-0.253452,-0.71351236,-0.444546,0.10845315,1.0971335,-0.25484052,0.12699379,0.09707821,-0.29014418,0.049816646,0.19676554,-0.10741605,0.20635632,0.39887312,-0.3811023,-0.6030475,0.36144894,-0.29438215,-0.18220995,-0.5545463,0.34084177,0.51832885,-0.6247858,0.5954982,0.34966087,-0.015550396,-0.40145248,-0.5039,-0.1360536,0.049884327,-0.018081184,0.62753093,0.44338518,-0.77453977,0.34314495,0.3831217,-0.19143096,-0.6183219,0.55162084,-0.06672525,-0.32714272,-0.21577083,0.32197136,0.13688262,-0.05165382,-0.33852562,0.08719604,-0.35863706,0.28369313,0.1743163,-0.09473152,0.106643155,-0.12222055,-0.039721128,-0.84995276,-0.03374773,-0.5436123,-0.26630694,0.3304539,0.08086174,0.31759316,0.12160628,0.032497473,0.3599984,-0.39878058,-0.09048215,-0.14736046,-0.46749657,0.45431975,0.45920613,0.5103633,-0.41564846,0.586542,0.04002889,-0.17118566,0.06132092,0.15810025,0.4355574,0.16920781,0.54831,0.03237158,-0.23063646,0.26212797,0.8571717,0.120169654,0.5809167,0.09898926,-0.087335885,-0.009982944,0.06661113,0.32566968,-0.12154379,-0.5003671,0.10476995,-0.3510378,0.22275604,0.44235873,0.026566137,0.25409442,-0.07505939,-0.43803406,0.05426299,0.16521844,0.17464831,-1.591904,0.38118815,0.2760491,0.93081295,0.25408903,0.04821947,-0.2655438,0.7472319,-0.118553855,0.1551323,0.34824663,-0.048202146,-0.4398198,0.48629752,-0.7549128,0.4662516,0.022728605,-0.0022547778,-0.055330284,-0.124446556,0.41384143,0.76227826,-0.10942244,0.016937701,-0.022299247,-0.46015218,0.21210606,-0.43941587,-0.023678813,-0.62121993,-0.3447695,0.70979226,0.5605851,0.5173248,-0.11435897,-0.052123394,0.082572274,-0.08557343,0.17642964,0.13783209,0.17025805,-0.19433948,-0.7579065,-0.14233616,0.47809023,0.027852535,0.2791514,-0.048141938,-0.19877204,0.29702586,0.010180839,-0.100505695,-0.046272505,-0.63433504,-0.040089916,-0.27034777,-0.6453696,0.5918538,-0.02783801,0.11873263,0.1963092,0.017336708,-0.22027646,0.34763607,0.064401396,0.9042339,0.041397613,-0.033683937,-0.4762659,0.21600683,0.1635553,-0.103868805,-0.0831154,-0.3672202,0.11899739,-0.6441536,0.4772019,0.072287984,-0.43161914,0.00025988903,-0.024358844,0.12645128,0.48873848,-0.2006985,-0.2640708,-0.28540668,0.0008474248,-0.47064143,-0.40039474,-0.018517302,0.32592535,0.17211711,0.00550004,-0.1805106,-0.064165205,0.019176373,0.44179198,0.052087307,0.39635167,0.3632786,0.031060588,-0.21501246,-0.23143502,0.3223516,0.5453562,-0.0428542,-0.20701218,-0.4221006,-0.5342209,-0.36791706,-0.090003364,-0.029864904,0.41768298,0.05555025,-0.0835088,0.8251652,-0.22443677,1.3303651,0.02792895,-0.44520283,0.089944504,0.525737,0.080641784,-0.06790098,-0.28300995,1.022692,0.5596089,-0.042883754,-0.06263553,-0.61622936,-0.05648079,0.24894606,-0.17823736,-0.1043073,0.007937397,-0.6197594,-0.2103472,0.32683453,0.2118858,0.33098173,-0.12033338,0.31793228,0.49735302,-0.0847352,0.18849252,-0.37389213,-0.26883358,0.09066076,0.3167087,0.0011288269,0.14342403,-0.5470541,0.2978081,-0.53138417,0.053078122,-0.35779396,0.27271327,-0.19145839,-0.31000096,0.2362738,0.04330584,0.40232483,-0.36304256,-0.26371044,-0.22401595,0.5912034,0.13711806,-0.039963305,0.50151557,-0.26881438,-0.030015392,0.21367022,0.48314586,0.9038876,-0.19404078,-0.06395735,0.4587486,-0.38675115,-0.70299625,0.38577986,-0.2744262,0.27297214,0.086006165,-0.20409659,-0.5968486,0.3230247,0.20653944,0.00041157645,0.06903238,-0.5441514,0.0064366544,0.28449515,-0.25181785,-0.094419725,-0.3394212,0.16074295,0.3243088,-0.3208768,-0.40296698,0.0022082988,0.2410793,0.01174515,-0.394867,-0.10771586,-0.5054684,0.35006428,-0.018559981,-0.35677978,-0.16139507,-0.19155304,-0.4103155,0.18113258,0.10428897,-0.2952626,0.19090848,-0.2942207,-0.14329657,0.9211711,-0.17077503,0.17380467,-0.69456387,-0.41344187,-0.6661181,-0.36736402,0.25908405,0.091787934,0.0067038834,-0.8552529,0.15167104,-0.023201393,-0.20357665,-0.2008907,-0.3366859,0.49915692,0.061199088,0.38132137,0.0083664525,-0.8711619,0.32200354,-0.011304342,-0.2065413,-0.6613334,0.5664951,-0.096225895,0.88130635,0.09528704,0.25285324,0.2630164,-0.361622,-0.14068678,-0.40205404,-0.27296478,-0.57116944,-0.24637184,909 -560,0.39643207,-0.3875062,-0.5192781,-0.20888318,-0.15103935,0.019602988,-0.3258447,0.120155096,-0.01610707,-0.4493707,-0.34883448,0.004969222,0.022736957,0.45291233,-0.052198105,-0.7104629,-0.11431079,0.12463808,-0.75277215,0.5170477,-0.5402446,0.33473036,0.32679367,0.31409952,0.07300084,0.35289827,0.41220075,-0.2384266,-0.16668122,-0.048200764,-0.08006018,-0.0056625134,-0.6840482,0.21572742,-0.22930005,-0.18029599,0.0757977,-0.3455875,-0.14341113,-0.771588,0.120071374,-0.9433885,0.4209056,-0.12635227,-0.17990902,-0.117560916,0.20838879,0.43322024,-0.3515008,0.24575113,0.17375025,-0.30071858,-0.18546124,-0.34465694,0.10236437,-0.43070784,-0.42000017,0.00033953678,-0.6042255,-0.39511675,-0.11230869,0.26346073,-0.3282509,-0.012099162,-0.183563,0.25306407,-0.5686933,-0.1696397,0.2989247,-0.20624979,0.33661428,-0.5096072,-0.02755992,-0.19385436,0.5235793,-0.02897949,-0.033398066,0.40211228,0.36662573,0.4595479,0.28353667,-0.21428397,-0.09617057,-0.18536615,0.4527762,0.510634,-0.058575895,-0.3243208,-0.17696084,-0.06588322,0.30556747,0.30321452,-0.10984535,-0.39025995,0.011106687,-0.15231654,-0.059508163,0.23897275,0.4720096,-0.16987416,-0.30752063,0.24609084,0.59412163,0.1927677,-0.10159589,0.020623889,0.07097509,-0.4941199,-0.16478753,0.4746213,0.029252741,0.46680906,-0.05073111,0.21572042,0.85216874,-0.26449433,0.09838797,-0.32993698,-0.11955496,-0.3145319,-0.12397238,-0.17576681,0.08748255,-0.49970797,-0.03406586,-0.35694242,0.8057815,0.1823069,-0.70706207,0.2722539,-0.50799894,0.19332238,-0.19420251,0.72673446,0.51250964,0.29257873,0.15514596,0.83689576,-0.4346511,0.2484868,0.04204584,-0.51551574,-0.118427165,-0.31888404,-0.0516023,-0.35163686,0.007086622,-0.27478546,0.087013476,-0.19946453,0.3792503,-0.508537,0.02264366,0.0019010731,0.62750757,-0.43281832,0.14062893,0.716568,1.0430491,1.0701396,0.1250464,1.191593,0.6747241,-0.2508636,0.016792348,-0.31474873,-0.65167487,0.18638696,0.40898314,0.37425974,0.22767004,-0.12608388,-0.18653464,0.33234766,-0.58526844,0.26494116,-0.16518055,0.2849485,-0.102467895,-0.0028196913,-0.55631965,-0.0928755,0.059741583,-0.03980988,0.0958286,0.12784924,-0.1942559,0.6412946,-0.045664232,1.1118567,-0.2878452,0.0411083,-0.027923848,0.52222013,0.13483219,-0.12550685,0.008775145,0.33181158,0.7084724,-0.11945362,-0.8011897,0.16903111,-0.3933932,-0.4748167,-0.38880318,-0.43129033,0.043528683,0.067097306,-0.31615138,-0.26361793,0.22765884,-0.3537269,0.436676,-2.4912522,-0.13269474,-0.33305174,0.2375747,-0.429278,-0.04779901,-0.16153963,-0.46376395,0.3168274,0.22418778,0.38457945,-0.6090832,0.4021334,0.50908375,-0.24042985,-0.08695834,-0.7385931,-0.07080218,-0.14486703,0.47493643,0.059781466,-0.06707126,-0.15011682,-0.021942424,0.7571054,-0.16120346,0.14360465,0.477877,0.22271858,0.19658177,0.4785715,0.21242401,0.62678593,-0.41489765,-0.13901171,0.41710636,-0.15125977,0.31675714,-0.21061945,0.20021693,0.45104724,-0.5716346,-0.6941888,-0.91459525,-0.71704113,1.1806327,-0.36872417,-0.59260327,0.18598525,0.29145542,0.11313285,0.11097827,0.5444879,-0.17603967,0.31711537,-0.686951,-0.04174151,0.0882254,0.30179414,0.05320837,-0.0094095785,-0.34283438,0.7544638,-0.098630026,0.47559053,0.3052649,0.4178597,-0.07692892,-0.45429918,0.11768333,0.99263257,0.33085176,-0.12146575,-0.0950017,-0.33351794,-0.15750502,-0.35885555,-0.008762251,0.4410169,1.0434208,-0.05300561,0.11741875,0.23154525,-0.16656876,0.23480608,-0.0847137,-0.3282611,-0.04490481,0.04957178,0.5098957,0.38025302,0.13765046,0.5362229,-0.2723553,0.42835635,-0.053829808,-0.45757177,0.6761103,0.66223115,-0.18416014,-0.017133627,0.48746774,0.5678647,-0.47690848,0.5158729,-0.70107836,-0.33327004,0.7086934,-0.15665682,-0.54850817,0.19690336,-0.21685001,0.3534455,-0.9162928,0.45726267,-0.48939013,-0.5178029,-0.46946308,-0.14773294,-2.9005873,0.24919727,-0.12285795,-0.14150666,-0.1817799,-0.12440598,0.37557217,-0.50436765,-0.45120043,0.15135694,0.14435026,0.56537044,0.081177935,0.08094574,-0.3115592,-0.0047662854,-0.13719878,0.19583665,0.116571054,0.16025905,-0.07274628,-0.33295536,0.14970358,-0.2394903,-0.4357644,0.057420854,-0.58697313,-0.6375775,-0.16428126,-0.45681766,-0.392094,0.5734991,-0.40827796,0.036606733,-0.20297465,0.05538092,-0.24830696,0.2462764,0.14875524,0.33819517,0.10951807,-0.19674452,-0.05782646,-0.36519226,0.47343805,-0.03133446,0.23692706,0.02384924,-0.106557466,0.1966147,0.38115305,0.523926,-0.18057795,0.86442024,0.449178,-0.061997198,0.16129065,-0.3501052,-0.32057813,-0.6069656,-0.42016786,-0.03019424,-0.3643845,-0.74917215,0.06279634,-0.20485233,-0.90691775,0.5530983,0.032005813,0.326447,-0.11710191,0.124855794,0.27707952,-0.07941758,-0.0062904186,-0.12927268,-0.08233947,-0.52316374,-0.33965084,-0.7903709,-0.63005006,-0.10741333,0.8856686,-0.20783392,-0.14045027,-0.11176521,-0.5365029,0.09136175,-0.027504558,-0.026389996,0.2561532,0.3166153,-0.06267694,-0.82776546,0.43151265,0.110610895,-0.0070573604,-0.5308246,0.18198213,0.8369772,-0.8087536,0.42302874,0.40416312,-0.08746598,-0.007611216,-0.4286713,-0.1922883,-0.0047269696,-0.19170026,0.40658903,-0.110433534,-0.5690201,0.5683255,0.19755046,-0.350028,-0.77778023,0.30027002,0.063604996,-0.1343676,0.27181032,0.34130412,-0.28308305,-0.1908954,-0.44149277,0.20164074,-0.40575355,0.32958338,0.2863888,-0.019655185,0.15468082,-0.22375162,-0.40055355,-0.6154658,0.0462609,-0.55041087,-0.1813834,0.40768543,-0.042854395,-0.013936894,0.07503476,-0.024188085,0.4761583,-0.19938615,0.08224275,0.030643731,-0.40184775,0.2352327,0.41162357,0.21521258,-0.39580813,0.6987916,0.24587008,-0.37132916,-0.04358663,0.15941055,0.3950799,0.29456758,0.44426438,-0.27104837,-0.05797539,0.45577186,0.78362316,0.11620026,0.71229947,0.06197944,-0.20638399,0.46659583,0.1818947,0.26348293,-0.07964028,-0.1885451,-0.10451765,0.226856,0.027961057,0.42119798,0.30180553,0.5931896,0.009801409,-0.079373814,0.12300444,0.15232334,-0.08048278,-0.88683575,0.4335056,0.23440523,0.7723767,0.51619476,-0.09140927,-0.0895764,0.599315,-0.35375404,0.057844866,0.23733126,0.08498321,-0.5094233,0.63504666,-0.5963954,0.37870732,-0.19762583,-0.10535137,0.09839703,0.12845993,0.26151356,0.87760437,-0.01482165,0.12763223,-0.1884052,-0.07732974,0.045912094,-0.37379974,0.22799897,-0.4074059,-0.4956726,0.667965,0.2535117,0.24742699,-0.002412231,-0.09079255,0.13907112,-0.23032485,0.3879237,-0.024016205,0.1259117,0.19371393,-0.56290907,-0.1817997,0.5567103,-0.1392322,0.073578544,-0.019117817,-0.35110754,0.036836028,-0.19739333,0.12004926,-0.054143723,-0.70971966,0.09812414,-0.2911705,-0.38130692,0.2640166,-0.30846435,0.18945368,0.20024154,-0.03210612,-0.25654852,0.106296316,0.06971425,0.88148445,0.045299243,-0.39707592,-0.42973083,-0.0070108324,0.4805664,-0.32906556,0.19176218,-0.39789575,-0.08940867,-0.56635547,0.63239205,-0.21071722,-0.41388062,0.37693188,-0.3110706,-0.26898882,0.62283653,-0.10807913,-0.10384744,0.28530714,-0.15998867,-0.36055905,0.12211184,-0.36597332,0.22928461,0.25419462,0.093159206,-0.12765118,-0.12297305,-0.032872457,0.557092,0.10321535,0.53496665,0.30251795,0.0012367581,-0.32979065,0.14191483,0.1703647,0.4154041,0.34668916,0.08914279,-0.37654975,-0.450751,-0.295011,0.079418525,-0.22764094,0.1677715,0.018505152,-0.47695214,0.7803441,0.14800034,1.1582069,0.2038871,-0.36949873,0.008545299,0.4963821,-0.103549,0.090502106,-0.59390396,0.8747638,0.64692384,-0.106120296,-0.10830999,-0.4652774,-0.2736546,0.42050567,-0.31496218,-0.06860109,-0.038668197,-0.68745035,-0.5445924,0.17945279,0.24918249,0.034847002,0.11110829,-0.09159676,0.087866664,0.12074901,0.5746546,-0.79153377,-0.045926154,0.181185,0.13895094,-0.04801831,0.2765917,-0.3217589,0.36492977,-0.7228293,0.20110138,-0.31838205,0.1121115,-0.017935257,-0.4326652,0.17475949,0.06736098,0.3554259,-0.34508,-0.4021848,0.0004830467,0.6898256,0.028722184,0.2625931,0.7026413,-0.3503603,0.23913403,0.24685182,0.5332328,1.3696371,-0.48310715,0.077176556,0.21792743,-0.37138438,-0.57164425,0.5109836,-0.3244987,-0.045536127,-0.20851612,-0.6237365,-0.43421364,0.43897527,0.17377901,-0.15358064,0.11930179,-0.54815626,-0.01556812,0.37583995,-0.22727898,-0.35188296,-0.33789065,0.49621132,0.5794918,-0.42069831,-0.35142517,0.13700397,0.28031984,-0.43989757,-0.44779247,-0.111140184,-0.25541312,0.36228722,0.1109853,-0.26262257,-0.010427869,0.1405116,-0.39766565,0.06546382,0.21959054,-0.36467904,-0.002192378,0.03582811,0.0055318177,0.73384243,-0.16293931,-0.3618045,-0.77155817,-0.29816416,-0.87768936,-0.4927207,0.48938337,0.23357336,0.036788184,-0.39273152,0.13627863,-0.1146289,0.11892813,0.1334509,-0.6415533,0.3406518,0.10051424,0.5811616,-0.16886647,-0.8380622,0.1953676,0.11846594,-0.15457372,-0.63196796,0.5563306,-0.08934783,0.80773646,0.005115297,-0.106723785,0.112930216,-0.42515597,0.11351148,-0.3908618,-0.20972909,-0.8656154,0.118806124,915 -561,0.40767893,-0.13646206,-0.3958264,-0.08981933,-0.14846215,0.12307037,-0.06996768,0.68376774,0.31535864,-0.19441952,0.004232458,-0.20936169,0.11108854,0.52537376,-0.11993955,-0.46245548,0.035939034,0.13452145,-0.49745995,0.6133947,-0.24494243,0.13524912,-0.15578702,0.5487131,0.34903577,0.35714412,-0.14152838,-0.12947963,-0.2529968,-0.10804407,-0.048440885,0.32108206,-0.33436063,0.094232775,-0.20767768,-0.19819704,-0.08270973,-0.6156144,-0.5611666,-0.74468845,0.39309576,-0.81424046,0.44300207,-0.06916058,-0.20465867,0.29917246,0.1633252,0.3688026,-0.31282282,-0.18298118,0.049012896,0.12438363,0.1352977,-0.14798209,-0.252799,-0.44720674,-0.43402508,-0.08139681,-0.39133152,-0.16455977,-0.14209577,0.07939404,-0.2503553,-0.07280874,0.01566508,0.48496744,-0.44558784,0.2896486,0.26387197,-0.03881367,0.29032207,-0.48903847,-0.3017487,-0.11694097,0.26390594,-0.14710076,-0.1305646,0.29805925,0.21898796,0.11735432,-0.3306792,0.05818482,-0.303618,0.025378166,-0.04241844,0.5542826,-0.16486658,-0.649752,-0.09210821,-0.006312021,0.049480226,0.14874645,0.27175537,-0.23171498,-0.012046172,0.0064833206,-0.29966718,0.39141995,0.4354159,-0.19702056,-0.115644924,0.3598218,0.29135412,0.38483745,-0.30307606,-0.073233195,0.086033545,-0.455559,0.043708745,0.0564969,-0.18157928,0.6153754,-0.1029165,0.18701802,0.67780465,-0.05195122,0.02700007,0.0067275846,0.18085851,-0.1441801,-0.2083533,-0.24555029,0.119219795,-0.26441863,0.14861952,-0.107385874,0.59001267,0.22668251,-0.63593084,0.35180405,-0.5639321,0.0927975,-0.15747486,0.23056053,0.63958937,0.3157284,0.29231268,0.50411344,-0.23600136,0.110878065,0.013628555,-0.32302484,0.10040735,-0.26380867,-0.07186993,-0.47459635,-0.060793154,0.08036884,-0.31816146,0.1408314,0.13648292,-0.403475,-0.112870455,0.13579202,0.86818,-0.19979273,-0.099832214,0.7726334,0.9996256,0.8090958,-0.025929397,0.92618024,0.22918548,-0.10551921,0.37625948,-0.2584865,-0.6878037,0.2561426,0.180398,-0.71637934,0.21775672,-0.045679074,-0.11572995,0.25938994,-0.17981097,0.11461949,-0.15608065,0.06018174,0.2204068,-0.14994928,-0.3194437,-0.43043047,-0.34397316,-0.08340378,0.24367502,0.15200214,-0.26742256,0.39459684,-0.033118572,1.6989481,0.116345845,-0.09561484,0.04800648,0.7597813,0.24254496,-0.1649626,-0.19474937,0.35231996,0.4261903,0.146632,-0.52469146,0.31374535,-0.2060024,-0.4439297,-0.053272128,-0.460521,-0.09938253,-0.0079499995,-0.55905026,-0.092458606,-0.1103626,-0.13608317,0.4232184,-3.1727998,-0.123083875,-0.06497941,0.3486088,-0.22793047,-0.119255,-0.110183515,-0.38000804,0.27683923,0.30174565,0.48399347,-0.672211,0.24279632,0.36711803,-0.5412714,-0.14271976,-0.4569871,-0.06949322,0.049967706,0.41454244,-0.07177789,0.2899037,0.40116814,0.21712856,0.40371805,0.118517265,0.23400831,0.18494411,0.34576994,0.13634583,0.4050581,-0.20724429,0.4572073,-0.22335264,-0.10778058,0.21818672,-0.44898847,0.26159662,-0.16634957,0.15611328,0.5149142,-0.350642,-0.8472849,-0.5626561,0.1216072,1.0626304,-0.18018652,-0.35222435,0.11314603,-0.40003613,-0.1856771,-0.05899474,0.60050446,0.008309068,-0.03647999,-0.6524615,-0.13965736,-0.14424597,0.034951795,0.013204319,-0.028041337,-0.10220325,0.5396567,0.15447733,0.4387036,0.1450045,0.06733068,-0.36047056,-0.537144,0.1259952,0.4800342,0.17996319,0.1497778,-0.13496378,-0.1336879,-0.4101171,-0.05698735,0.119248785,0.62837565,0.4711542,-0.07878766,0.2795858,0.24376275,-0.03737923,0.04158557,-0.08552281,-0.21518132,-0.10124608,-0.025142398,0.43925044,0.6374732,-0.20472495,0.62453026,-0.13618214,0.2688198,-0.16329649,-0.38367867,0.5573249,1.1792278,-0.27877957,-0.2996056,0.4316668,0.51742345,-0.2909717,0.31854057,-0.48414525,-0.15645064,0.49807143,-0.1128306,-0.36361584,0.42110786,-0.1763962,0.17497389,-0.82399505,0.17259659,-0.17548086,-0.26945236,-0.44290218,-0.0004207066,-3.0936112,0.12145121,-0.07823468,-0.4626793,-0.15868047,-0.18529561,0.21047917,-0.54426813,-0.53903174,0.1587248,0.12892473,0.64893997,-0.063362345,0.13807903,-0.29485962,-0.145609,-0.23491418,0.15598908,0.14839259,0.5091515,-0.1428062,-0.43734103,-0.15003274,-0.17284557,-0.4082403,0.1044062,-0.6445402,-0.34687927,-0.15565808,-0.6074807,-0.23889992,0.6713415,-0.24406181,0.014590366,-0.16016866,-0.040927578,-0.22038364,0.25613877,0.16255073,0.11474593,-0.019267354,-0.05972467,0.20186456,-0.21360005,0.29314107,0.023843234,0.31779075,0.20266856,0.08528103,0.2332373,0.48784265,0.45996794,-0.12312092,0.8228982,0.4511537,-0.06649352,0.2405732,-0.34781915,-0.16372646,-0.38234633,-0.1602197,-0.14743654,-0.27356258,-0.5482051,-0.16566263,-0.43237644,-0.6486129,0.3866024,-0.13362536,0.20701586,0.09288483,0.10880958,0.590968,-0.179751,0.104415104,0.07157842,-0.073653184,-0.5985592,-0.2640881,-0.47653556,-0.25483546,0.10844408,0.6755136,-0.18493788,-0.028640976,0.0014771564,-0.5188592,-0.064980336,0.12605648,-0.09430926,0.10968663,0.32027718,-0.27752298,-0.6186542,0.385354,-0.23386966,-0.16194856,-0.43153688,0.20469496,0.45718494,-0.57436126,0.70122,0.2840877,0.026446389,-0.3589463,-0.4238607,-0.26106492,-0.068458006,0.005945906,0.26714364,0.22812656,-0.7824101,0.25526562,0.26976848,-0.33870015,-0.5455808,0.69436127,-0.054716546,-0.3511326,-0.19375919,0.24704473,0.137381,0.0021635985,-0.32444185,0.21159227,-0.388619,0.045755006,0.20481959,-0.049912266,0.19580945,-0.11393653,0.0485659,-0.6123609,0.14768808,-0.29116246,-0.30637497,0.41853857,0.06281511,0.26936156,0.026567075,0.14041647,0.1307418,-0.2491373,0.039397832,-0.00012742622,-0.092992194,0.24366967,0.3322867,0.5746204,-0.51625675,0.55777895,-0.050673,-0.082566015,0.45859584,0.23577653,0.26031098,0.28184214,0.3991855,0.1920275,-0.30434713,0.20648208,0.78582495,0.19361487,0.46298796,0.025685811,-0.11618771,0.18697466,0.049825672,0.21330822,-0.02835138,-0.44797254,-0.13065222,-0.34226418,0.19681577,0.39862856,0.078080475,0.18237741,-0.041837517,-0.49596587,0.038348343,0.17618598,0.08400154,-1.3244671,0.36550766,0.32186016,0.861515,0.24990828,-0.053231955,-0.049158845,0.7102605,0.009784349,0.17210974,0.39808846,0.02338454,-0.6204928,0.5960063,-0.68100786,0.48896366,0.06072732,-0.077254854,0.018162565,0.0687593,0.36160856,0.6637449,-0.13632783,0.023759857,0.20267439,-0.51501733,0.066891916,-0.38052177,0.04939537,-0.6405307,-0.20266795,0.51049,0.5735956,0.22633888,-0.17366134,0.08590812,0.082756765,-0.10691334,0.08391573,0.17140071,0.19115864,-0.06998195,-0.776962,-0.16263115,0.48469582,-0.34461552,0.1140831,-0.020732304,-0.16527423,0.35511896,-0.29136112,-0.0037516144,-0.09636663,-0.7739796,-0.019891143,-0.2765536,-0.4346532,0.4944737,-0.15134512,0.27976936,0.20763628,0.0336763,-0.31609896,0.42472172,0.027112825,0.7801234,-0.38736948,-0.12063865,-0.5321628,-0.018891778,0.28944328,-0.16557041,-0.24574924,-0.34261307,-0.060787294,-0.2733901,0.42203665,0.031032374,-0.2064469,-0.32909712,-0.09159284,0.18655331,0.5239839,-0.09457011,-0.18598978,-0.27144605,-0.090291455,-0.53783023,-0.06085189,-0.09029786,0.26640216,0.47253317,-0.17811038,-0.19049838,-0.07908726,-0.004544369,0.31671306,-0.2131901,0.6066832,0.4328416,0.2916452,-0.014538805,-0.1404811,0.37083775,0.4833188,0.0572395,-0.07361841,-0.4114885,-0.36480626,-0.38116223,0.19244789,-0.15931287,0.4343633,0.2320925,-0.22869189,0.64464134,-0.16821899,0.9041395,0.07407268,-0.32379597,0.26039702,0.35619995,-0.0061226347,-0.11914891,-0.32265544,0.78147644,0.44285306,0.008951368,-0.07595886,-0.2323498,0.022994246,0.18139479,-0.19367763,-0.18986215,0.04660616,-0.5484963,-0.085915625,0.15204395,0.23215099,0.410985,-0.1513248,0.103612535,0.1896676,0.10134623,0.21937357,-0.41148907,-0.08994535,0.2922699,0.29612345,0.15129559,0.16743062,-0.52010936,0.37444517,-0.23920245,0.052144635,-0.33568844,0.31365323,-0.18574838,-0.38599712,0.097891144,0.014293969,0.328914,-0.31927297,-0.29487568,-0.48507056,0.439291,0.24669997,0.058713,0.4027617,-0.21861155,0.14767838,0.02810062,0.6774378,0.7456559,-0.23117879,-0.106987916,0.37257996,-0.3953258,-0.73527807,0.3204603,-0.29194,0.5045986,0.0126379775,0.06775488,-0.77630097,0.36194044,0.20162182,0.09227226,-0.21141179,-0.4875245,-0.22205831,0.364431,-0.16607831,-0.29347152,-0.446939,0.12356971,0.39271337,-0.16884105,-0.35302645,0.18881357,0.12580267,-0.13576756,-0.39016384,0.046337243,-0.39455494,0.3278723,-0.07112075,-0.39803305,-0.26699507,-0.15621792,-0.39550117,0.46744913,-0.011019145,-0.307405,0.13224033,-0.20514582,-0.12970619,0.9686914,-0.32911125,-0.036120262,-0.549398,-0.50186265,-0.71597594,-0.52242726,0.2369784,0.15717424,-0.0422537,-0.55095685,0.06181692,0.002060307,-0.1786492,-0.156216,-0.3226831,0.42463177,0.09576956,0.25715384,-0.015029945,-0.8180813,0.21169567,0.07326721,-0.21210109,-0.6733472,0.35995105,-0.115690805,0.83770084,0.047091033,0.19994281,0.3459084,-0.066972725,-0.3103717,-0.17856862,-0.20832255,-0.6004544,0.18012188,919 -562,0.4199798,-0.2494857,-0.6350214,-0.1091596,-0.31037045,0.15233898,-0.2895253,0.37612036,0.3780157,-0.26656,-0.182218,-0.06503877,0.20983836,0.5704187,-0.07223409,-0.729084,-0.03395311,0.19019674,-0.6887475,0.5436072,-0.54715323,0.37550816,0.22445236,0.4914933,0.07261505,0.26327842,0.46956572,-0.09106286,0.18306208,-0.08471546,-0.35760394,0.12916856,-0.56805,0.0584522,-0.18406074,-0.30493197,0.026248971,-0.33741918,-0.15746126,-0.83080375,0.1591842,-0.947614,0.61239785,-0.124939606,-0.20221828,0.066621445,0.25427327,0.30964082,-0.4395383,0.0029255587,0.089775495,-0.35261387,-0.33573112,-0.3057327,-0.11370482,-0.64576036,-0.4043011,-0.06329246,-0.621262,-0.2681051,-0.30968326,0.17097381,-0.3839688,0.042846296,-0.17131063,0.2831411,-0.34723857,0.0026954242,0.29203245,-0.4022406,0.24756508,-0.49601778,-0.023846997,-0.079644814,0.48892567,0.08586371,-0.18758021,0.4054058,0.35236374,0.59787655,0.26829475,-0.3173409,-0.15624359,-0.2105689,0.13267997,0.48895162,-0.13470258,-0.49969083,-0.27272034,0.013079976,0.27966124,0.39244822,0.074116014,-0.2307291,0.001468569,-0.06661404,-0.2825819,0.69201106,0.5402874,-0.3164692,-0.23831476,0.28792027,0.5415564,0.16085665,-0.25350598,0.13256498,-0.13611254,-0.5257927,-0.14919625,0.09169085,-0.16380389,0.49774975,-0.16685656,0.09115834,0.6924094,-0.099031344,-0.103171214,-0.021764856,-0.0479202,-0.22171704,-0.3057084,-0.11128104,0.32313266,-0.6039686,0.025895467,-0.35002264,0.7693329,0.14742856,-0.69742966,0.54841393,-0.45845821,0.2570448,0.036001164,0.69933236,0.8142339,0.37261692,0.3659087,1.0637491,-0.46696204,0.20125952,-0.086722456,-0.47584215,-0.050500114,-0.27690786,0.20943138,-0.57200813,0.39617604,-0.12205834,0.04050793,0.16074118,0.42273596,-0.49982664,-0.24330722,0.26175678,0.86405903,-0.29971048,-0.0500632,0.87783676,1.030873,0.94320506,0.028237287,1.2669764,0.32938442,-0.28241405,0.071120724,-0.20982145,-0.6344784,0.19929865,0.40419367,0.2610623,0.36611012,-0.0640141,-0.16818811,0.22301213,-0.38188574,-0.1842811,-0.007310859,0.23572205,0.14225496,-0.08876257,-0.51065624,-0.005844857,0.09548088,-0.12553108,0.27876344,0.17581834,-0.3193805,0.56585824,-0.05782318,1.2833841,-0.15001084,-0.011227702,-0.010021695,0.46363178,0.45874724,-0.006793778,-0.11486103,0.5240397,0.43501854,-0.079866275,-0.7518468,0.256037,-0.4069709,-0.43392634,-0.15742712,-0.38555998,-0.12684141,0.058186587,-0.17993793,-0.09987419,-0.14319205,-0.338319,0.35511738,-2.629848,-0.34567356,-0.14706834,0.32062572,-0.23587589,-0.0608988,-0.21591036,-0.54736197,0.29803768,0.31237292,0.530959,-0.7257934,0.48046425,0.552693,-0.51695263,-0.23984173,-0.67951876,0.005136609,-0.037150797,0.4966173,0.124950275,-0.3223726,-0.20764753,0.19962557,0.81904495,0.15397093,0.12953304,0.55293566,0.50334007,-0.10207791,0.56287825,-0.09864284,0.7263366,-0.44855276,-0.21226577,0.34869486,-0.2385149,0.22724839,-0.16171636,0.07857622,0.60530394,-0.3366,-0.965138,-0.5465979,-0.19793749,1.0174874,-0.47485605,-0.7196781,0.16614135,0.09241716,-0.036834385,0.113589205,0.68896955,-0.027928535,0.14164901,-0.7635177,0.21498582,-0.10562205,0.10775911,0.00089206867,-0.022050377,-0.25895536,0.8992316,-0.18539861,0.7309758,0.1288645,0.26349533,-0.22713648,-0.2872768,0.09398307,0.9636008,0.28577897,-0.10123686,-0.07583884,-0.2841966,-0.15201259,-0.35468003,0.020282056,0.79882324,0.8237254,-0.10616619,0.046614457,0.30176002,0.030314535,0.03246183,-0.15800492,-0.34097162,-0.17748229,-0.06281402,0.49908113,0.72123855,-0.15347525,0.4578517,-0.21157424,0.327005,0.051679205,-0.6393069,0.67677176,0.60059595,-0.3883802,-0.17551562,0.5592891,0.37409526,-0.5064137,0.5332442,-0.78832763,-0.38641888,0.69642127,-0.112337485,-0.43812338,0.31259808,-0.23669437,0.12953106,-0.790371,0.14554645,-0.24274567,-0.444726,-0.27385074,-0.11586406,-3.8492484,0.22338176,-0.21708305,-0.049333755,-0.52962625,-0.04189344,0.23913698,-0.50569814,-0.638957,0.17002918,0.26003528,0.62001884,-0.16787426,0.16068758,-0.37929827,-0.23862995,0.021614721,0.21413012,-0.060720403,0.24719644,-0.10916669,-0.4041605,-0.12111305,-0.033694383,-0.54448617,0.110699944,-0.70473564,-0.39832968,-0.13271451,-0.6564242,-0.11265149,0.6252524,-0.47958097,0.00062543154,-0.33512837,0.19740057,-0.24990739,0.059427977,-0.06299653,0.14401487,0.2248224,-0.04191079,0.22871558,-0.35403094,0.4273006,-0.1744086,0.32862678,0.07323592,-0.037996348,0.063313164,0.43847117,0.70258886,-0.18672906,1.0361717,0.3269138,-0.047515698,0.26362088,-0.16490364,-0.41885754,-0.6133209,-0.41922733,-0.08821865,-0.49223194,-0.42633268,0.055217493,-0.27665955,-0.8220273,0.5980485,0.05066489,0.5286389,0.057970356,0.44515222,0.48310062,-0.252317,0.08371387,-0.010790544,-0.2933721,-0.57410467,-0.22387524,-0.7003945,-0.58283854,0.047047973,0.7397162,-0.29117435,-0.0035177693,-0.092970416,-0.14743574,0.04748563,0.18588993,0.32636717,0.31839347,0.48706642,0.0050978702,-0.55869,0.5132794,-0.22199798,-0.18737434,-0.5708197,0.1482812,0.4684265,-0.7096148,0.6041352,0.40946907,0.049313802,0.047555078,-0.5343766,-0.12892868,0.05891834,-0.15746103,0.42963466,0.1348854,-0.9512325,0.60341495,0.3458034,-0.46236438,-0.76567084,0.33947703,-0.0737647,-0.14336213,-0.11496148,0.4396976,0.183165,-0.113753654,-0.2419031,-0.015951118,-0.53211194,0.28251806,0.06307937,-0.1017764,0.38806987,-0.03870228,-0.408545,-0.8460639,-0.17082848,-0.6788291,-0.17559369,0.26566166,-0.030724557,-0.103760764,0.009976064,-0.15965247,0.48651257,-0.40814045,0.17245527,-0.07541033,-0.43176597,0.43647593,0.49927017,0.34039325,-0.36654353,0.65520746,0.08303114,-0.3601642,0.12982169,-0.0437773,0.42249542,0.064824924,0.4769178,-0.0905607,-0.01795243,0.36602673,0.77068466,0.081480734,0.39632463,0.23686007,-0.17002021,0.47449684,0.11368904,0.16138686,-0.041042153,-0.42236838,0.06881391,-0.11664571,0.103886366,0.66269696,0.34839335,0.41474488,0.15924038,-0.15621898,-0.03736589,0.09416484,-0.13189246,-1.2703542,0.36707577,0.1983627,0.8345167,0.24110402,0.11297226,-0.21528955,0.66763407,-0.14760931,-0.026578533,0.344971,-0.068635315,-0.29780713,0.67009544,-0.6973683,0.33293602,-0.31799677,-0.0068417513,0.3162317,0.2771705,0.35561463,0.96206105,-0.32393926,0.071186304,-0.12897612,-0.10826416,-0.037238542,-0.3234677,-0.091142654,-0.19335082,-0.49471956,0.52608204,0.31501886,0.44082713,-0.24519908,-0.04013119,0.017969217,-0.18260184,0.08052908,-0.10124024,-0.064184375,-0.045027457,-0.53538525,-0.18065552,0.5389524,0.3404849,0.28753868,-0.24570727,-0.28157634,0.21705225,-0.18211976,0.0007644977,-0.025385145,-0.6266185,-0.06055245,-0.23477945,-0.561826,0.43856445,-0.14926064,0.17265998,0.26726693,-0.08653475,-0.13315995,0.067122586,0.075139515,0.94868004,0.14178206,-0.2578134,-0.47383395,-0.033665843,0.2547546,-0.29799396,0.15982607,-0.40278748,0.060563702,-0.5733127,0.6723117,-0.22351797,-0.50435024,0.44169232,-0.31537125,-0.030937418,0.53681934,-0.19339517,-0.050054085,-0.02907272,-0.085295245,-0.29573438,-0.26650983,-0.30975834,0.25035852,0.0591528,-0.068291835,0.021962153,-0.1917026,-0.06052683,0.5483907,0.066766456,0.33651686,0.3146402,0.18209353,-0.05201123,0.2674338,0.3096853,0.5363503,0.20895068,-0.161068,-0.2539635,-0.56424665,-0.40792537,0.03116553,-0.10785474,0.20095327,0.18904154,-0.21112005,0.8104901,0.05402534,1.2365264,0.013867897,-0.3749737,0.03648488,0.65370834,-0.108702086,0.10188941,-0.33873183,0.8859577,0.6964753,-0.1045786,0.011978158,-0.48588532,0.022869054,0.42868227,-0.4446044,-0.05588283,-0.07958323,-0.49838337,-0.5345944,0.21671481,0.12584528,0.34485266,-0.09888286,0.099203266,0.09946772,0.11198555,0.39106035,-0.630343,-0.18900779,0.20705901,0.21071196,-0.20668904,0.07605963,-0.28229478,0.4521796,-0.61270094,0.064954795,-0.6057285,0.085940704,-0.10164543,-0.2319707,0.1281499,-0.18050376,0.3716131,-0.25471282,-0.4448206,0.013344957,0.35945824,0.19237688,0.037115216,0.59346694,-0.24795556,-0.10194092,0.25120902,0.63245803,1.2759513,-0.46809477,0.12097937,0.297291,-0.4252661,-0.6410624,0.36648488,-0.38572472,-0.011186489,-0.078551225,-0.5070885,-0.38891268,0.34050304,0.21730591,0.008419901,0.09655683,-0.59011537,-0.1078745,0.35296506,-0.29299185,-0.1736317,-0.09306664,0.25613636,0.69339734,-0.30058894,-0.41904116,0.10244899,0.3807459,-0.2909065,-0.7775798,-0.046714578,-0.23221502,0.3117096,0.23075593,-0.24793445,-0.088071056,0.16784164,-0.6107554,0.18543765,0.18867992,-0.36831895,0.15703966,-0.27978864,-0.1719022,0.8142026,-0.21743946,0.14985277,-0.7770389,-0.44268948,-0.85326624,-0.39683172,0.2868843,0.10820438,0.009168412,-0.46503782,-0.03401867,-0.16785999,-0.18684964,-0.031166945,-0.36776227,0.28403643,0.09571952,0.6831941,-0.32534605,-0.97251564,0.055004936,0.22124605,-0.24085872,-0.7460745,0.60476106,0.0010321991,0.8286921,0.13083561,0.024133101,0.17007668,-0.537862,0.0017717002,-0.34285745,-0.10908776,-0.7373065,0.10261743,922 -563,0.32967356,0.06639375,-0.57445484,-0.2471886,-0.19764756,-0.027870135,-0.1815614,0.0827632,0.32789087,-0.017232107,-0.03768483,0.031941257,0.018998465,0.24920085,-0.10702928,-0.9669891,-0.034465816,0.014390305,-0.42210367,0.4834546,-0.45767912,0.47547105,-0.0129390955,0.38839537,0.07357759,0.4541622,0.23309512,-0.04854623,-0.12027614,-0.010507479,-0.21467413,0.30552694,-0.7534639,0.08957092,-0.06964575,-0.24282752,-0.0052427053,-0.15019627,-0.37728548,-0.70966065,0.4295301,-0.7845702,0.636823,0.08068187,-0.32234138,0.052129857,0.14740203,0.20425312,-0.41577762,0.14495704,0.17739275,-0.41966745,0.073264465,-0.17925726,-0.29349184,-0.5667244,-0.6213074,-0.03990416,-0.7153602,-0.17666534,-0.47657079,0.16726772,-0.37148625,-0.19342472,-0.25989076,0.38030434,-0.3868484,0.100864954,0.19791816,-0.25916353,0.08671014,-0.40024376,-0.19722976,-0.14090471,0.24171737,0.10161601,-0.28362924,0.4342375,0.41593748,0.46578804,0.17897804,-0.28925055,-0.26409715,-0.13535348,0.24983807,0.34224185,-0.15136679,-0.34757218,-0.32351685,-0.16881725,0.10576943,0.38693455,-0.13375752,-0.32716092,0.12129603,0.21394168,-0.12684913,0.43502077,0.5562163,-0.2662527,-0.29351273,0.3458561,0.25499466,0.038904138,-0.2791222,0.24508728,-0.010450986,-0.55334276,-0.22724476,0.15810804,-0.15870725,0.6056064,-0.073814094,0.04099496,0.8275885,-0.19958016,-0.112058654,-0.3840117,-0.00058957085,-0.124241054,-0.32165042,-0.036048528,0.19749263,-0.35058665,0.18357992,-0.19659789,0.65096956,0.18022408,-0.7707495,0.37226656,-0.6277442,0.13322793,-0.18461971,0.64506245,0.87763757,0.2782642,0.39932555,0.9531375,-0.5512031,0.050904304,0.20452574,-0.5090123,0.19016087,-0.23956037,-0.024535758,-0.43212047,-0.0039265626,0.04059779,0.0067409384,0.15252638,0.29073414,-0.35350534,0.0042795017,-0.074569575,0.71699893,-0.38630968,0.012280379,0.8809175,1.0020019,0.7986025,0.07515937,1.2340767,0.48132855,-0.15906824,0.07828612,-0.38737026,-0.5677841,-0.021491949,0.2569779,-0.3351256,0.28348696,0.16930781,0.06618579,0.47018296,-0.3880856,-0.012808646,0.008372434,0.20346744,0.01629855,-0.12906107,-0.32748842,-0.04605919,0.072826676,0.029371228,0.13250165,0.29081315,-0.19160774,0.42097664,0.14383051,1.1101463,0.14356065,0.012353632,-0.03132769,0.39259866,0.42461258,-0.1612116,-0.08842688,0.43579546,0.44468382,-0.0035546932,-0.55026853,-0.03933726,-0.30950683,-0.42902726,-0.21714921,-0.43300548,0.020193549,0.038028475,-0.42765808,-0.08928845,0.14005977,-0.24328195,0.44169322,-2.5981853,-0.12657672,-0.096238784,0.23110603,-0.059763543,-0.24116646,-0.24595013,-0.5612469,0.30445322,0.3607922,0.25018874,-0.55315447,0.22234948,0.31582016,-0.32606193,-0.14862467,-0.572753,-0.07011564,-0.13356401,0.41672078,-0.07946099,-0.08497814,-0.13510534,0.3396366,0.6817304,0.14454024,0.036618393,0.08510905,0.43839765,-0.13065541,0.50715935,0.11513138,0.57719135,-0.04643582,-0.30818543,0.32523513,-0.2994587,0.34665182,0.026749356,0.16300532,0.4435358,-0.45838982,-0.91138774,-0.55935514,-0.48068443,1.0535704,-0.39330724,-0.3976689,0.3319237,-0.15286934,-0.3511866,0.043513052,0.6495462,-0.20716561,0.1523163,-0.6306376,0.096659556,-0.11752321,0.17518805,0.0065820483,0.24969958,-0.2264329,0.73336613,-0.181896,0.26789635,0.25572392,0.14963432,-0.18754303,-0.5500762,0.17066622,0.83365303,0.37188783,0.003752968,-0.16958418,-0.18960264,-0.09925105,-0.28038046,0.12501253,0.5941647,0.7193964,-0.079435065,0.03380899,0.24536486,-0.19348209,-0.053051088,-0.13733728,-0.3468435,0.049841773,0.063611925,0.5284538,0.61544603,-0.20008738,0.42581373,-0.08509069,0.23118567,-0.11128148,-0.56570286,0.66385496,0.99733627,-0.025822412,-0.11861301,0.8156249,0.42727062,-0.34540504,0.4399918,-0.624632,-0.21572231,0.73537916,-0.17364763,-0.42415252,0.16622402,-0.38639894,-0.019836145,-0.92443746,0.17227888,0.08425385,-0.5010561,-0.5350827,-0.1982899,-4.6227293,0.09807801,-0.22894092,-0.042332616,-0.15931857,-0.16618688,0.4752521,-0.52401555,-0.510933,0.2177342,0.08880174,0.4797731,-0.21118645,0.1886548,-0.36377528,-0.18519685,-0.1239201,0.38278368,0.27750435,0.29323244,-0.031545248,-0.38979134,0.09318935,-0.20356211,-0.631627,-0.11240333,-0.36368254,-0.5962731,-0.15554376,-0.5848349,-0.2989924,0.8498824,-0.55140454,-0.100780554,-0.23849523,-0.020521015,-0.24206138,0.40916035,0.39060903,0.34101194,0.12391204,0.18264525,-0.15081565,-0.35179597,0.23922995,0.12944402,0.30857986,0.3259353,0.07278415,0.098868154,0.48239,0.53655463,0.012550997,0.8869804,0.28735763,-0.09992744,0.26277456,-0.5033282,-0.32512292,-0.98575485,-0.4603908,-0.4457278,-0.47549954,-0.5209076,-0.22868347,-0.3645037,-0.8225395,0.47923976,-0.03472815,0.31201443,-0.14374371,0.39304203,0.27596682,0.0008851247,-0.102126226,-0.09985872,-0.24987094,-0.44139275,-0.27774018,-0.50603694,-0.68657887,0.12669475,0.726904,-0.13847235,-0.16385423,-0.069353394,-0.37783903,0.040978003,0.054376718,0.35663837,0.27239242,0.44680372,0.10610281,-0.7053589,0.47358757,-0.16834481,-0.09034599,-0.91704845,-0.13813487,0.587245,-0.7867704,0.6614236,0.35063124,0.22755061,0.08151204,-0.6319321,-0.41096088,0.19213428,-0.20410864,0.6623515,0.2447178,-0.7239455,0.57339126,0.041777473,-0.035647534,-0.5891438,0.5346018,-0.057510562,-0.28293163,0.19415888,0.36428595,-0.13819918,-0.08781787,-0.026084503,0.3841549,-0.35995704,0.21499498,0.4915771,-0.039318077,0.67775875,0.0018521185,-0.20451845,-0.7745558,-0.042822544,-0.5472077,-0.24410672,0.154125,-0.003421726,0.09960441,0.08871362,-0.18237714,0.37824425,-0.23724213,0.2504478,-0.09731025,-0.16485827,0.22582316,0.53149885,0.2910606,-0.5642271,0.6317429,0.15968189,-0.094996266,0.022624284,0.20980084,0.53709525,0.07614399,0.40732163,-0.064884976,-0.14521435,0.06522913,0.66823775,0.22685862,0.49818072,0.24758425,-0.12567408,0.37420702,0.19185317,0.07172785,0.06170237,-0.21039243,-0.079580955,0.037345946,0.19127558,0.4919746,0.11215081,0.32338995,-0.16539904,-0.1836785,0.37503406,0.26769236,0.1384527,-0.97384685,0.43511185,0.24165504,0.6840891,0.57978344,0.08319491,-0.071409516,0.3866009,-0.29478127,0.19370396,0.3870626,0.06825425,-0.4269028,0.51273805,-0.49724188,0.47224116,-0.11847062,-0.015924526,0.106455505,0.20313223,0.35564017,1.1057407,-0.13498417,0.12876584,0.13997671,-0.18274471,0.17562962,-0.20106378,0.07741941,-0.4269071,-0.36780426,0.62053543,0.41518566,0.20938039,-0.33647108,-0.056697875,-0.08280599,-0.12194603,-0.10565518,-0.18286465,-0.016912771,-0.058236003,-0.55771434,-0.525956,0.5693574,-0.026027964,0.037099395,0.06481456,-0.32694897,0.24528448,-0.14317219,-0.13989887,-0.00086231955,-0.56559604,-0.0029572845,-0.3474087,-0.6416489,0.6008654,-0.57111925,0.3578401,0.17944972,0.023209935,-0.4796899,0.15220201,0.25820893,0.7998727,-0.041132372,-0.07157155,-0.4143751,0.049001228,0.41451088,-0.3321999,-0.18136515,-0.41210222,0.09605193,-0.55136734,0.36913797,-0.293556,-0.3071506,-0.35178158,-0.12612464,0.008431422,0.41769025,-0.24780855,-0.25884372,0.12846185,0.007562884,-0.28509256,-0.065952964,-0.255444,0.23981176,-0.05084441,-0.08867715,0.041337106,-0.12786335,-0.35775343,0.23099232,0.013394488,0.3372044,0.27495685,-0.064005494,-0.21929021,-0.08564746,0.07221285,0.37709117,0.045726676,-0.10978985,-0.14896642,-0.38226053,-0.31174025,0.21455492,-0.18174039,0.16017434,0.08500532,-0.58478546,0.6948659,0.18165953,1.1624416,0.115299426,-0.4051186,0.086598836,0.51690733,0.042784214,0.11996548,-0.27646944,0.9936391,0.6834302,-0.19743636,-0.24061318,-0.32116333,-0.07167997,0.22959457,-0.29170418,-0.25847426,-0.10295378,-0.70077735,-0.1985854,0.03608266,0.26613265,0.10545536,0.025313748,-0.17770936,-0.0215091,0.2980948,0.4002417,-0.46724123,0.002246627,0.3641874,0.22634998,0.08731251,0.29505798,-0.21342981,0.46859327,-0.57560503,0.16952477,-0.68685913,0.16651511,-0.15043476,-0.2685548,0.1491655,-0.05359567,0.3756465,-0.22448623,-0.20550522,-0.35268718,0.6143018,0.120858684,0.22689272,0.7324247,-0.20745358,0.12006321,0.1467292,0.5509233,1.4466027,-0.22783129,-0.054131526,0.33188084,-0.26658034,-0.53783023,0.14268948,-0.38980213,0.093697794,-0.21778846,-0.37599322,-0.34086356,0.15661462,-0.04422056,-0.066100046,0.060260303,-0.5523102,-0.328342,0.3200573,-0.17807308,-0.237341,-0.25691578,0.31779402,0.78179085,-0.44000462,-0.2719261,0.025071954,0.16415703,-0.28647995,-0.6029411,0.0894024,-0.17346303,0.49648628,0.0697968,-0.41995737,0.13731427,0.46268627,-0.48798847,0.3138903,0.4423537,-0.3495431,0.05518878,-0.007088993,-0.11546803,1.1541101,-0.12502353,0.048895817,-0.5992548,-0.513703,-1.022033,-0.39787748,0.32879072,0.25618905,0.069930054,-0.48714873,-0.031748764,-0.057305243,0.18257363,0.15098538,-0.6327548,0.3955396,0.08267232,0.6831532,-0.037003525,-0.8628286,-0.17172106,0.18584742,-0.23119865,-0.5569201,0.6268687,-0.2852617,0.7978509,0.013935568,0.030682666,0.19921395,-0.57325274,0.3046148,-0.28929278,-0.13709255,-0.71909136,0.06344426,924 -564,0.4494824,-0.24172509,-0.43748882,-0.20109092,-0.046973865,0.17449275,-0.13473402,0.39068416,0.166568,-0.5250793,-0.16517678,-0.3634092,-0.036011416,0.29898575,-0.06660053,-0.6336916,-0.109780565,0.06025695,-0.47394437,0.5734964,-0.4737144,0.4109531,0.050875835,0.17812733,0.1582471,0.37310925,0.112874605,-0.17018498,-0.07062906,-0.24456434,-0.12331345,0.092942536,-0.50175136,0.205827,0.058388468,-0.35015652,-0.16515519,-0.44447082,-0.3473175,-0.58005124,0.26954585,-0.69096714,0.42292133,0.0039021203,-0.16546896,0.34789357,0.022856805,0.24557522,-0.28400818,0.0793862,0.15666828,-0.035666432,-0.09367095,0.0027818042,-0.121136256,-0.25873345,-0.6007063,0.052494977,-0.30251932,-0.35420626,-0.23701288,0.0663022,-0.35833496,0.020152807,-0.20061935,0.38794476,-0.36197734,-0.09155906,0.24018244,-0.14998177,0.26280764,-0.5589377,-0.15123573,-0.07946894,0.19827558,-0.25074905,-0.14817175,0.1769074,0.25073674,0.5237317,0.042319782,-0.0894318,-0.37416625,-0.1231939,0.3476326,0.55989414,-0.023729166,-0.359974,-0.12659687,0.003263269,0.0030755487,0.053656068,0.21202254,-0.26096743,-0.25336802,0.037009727,-0.23067212,0.1761659,0.4064985,-0.3785388,-0.42015058,0.37578383,0.62393105,0.11042567,-0.022979986,0.12011747,0.053340573,-0.38753697,-0.15716386,0.14322247,-0.16338451,0.32899782,-0.14973925,0.24724989,0.6282464,-0.15482195,0.09939668,-0.0047187805,-0.13961382,-0.11816106,-0.15696537,-0.11705921,0.09808527,-0.365033,0.16581716,-0.16247287,0.784761,0.1966281,-0.6830025,0.3989158,-0.5083901,0.19995658,0.03377543,0.62962,0.673792,0.20309594,0.25540665,0.62018317,-0.35034013,0.024744626,-0.10504013,-0.31642348,-0.014385894,-0.08877475,-0.0072319508,-0.5270119,-0.0012219207,0.13232708,-0.07689186,0.07703565,0.35919222,-0.52112645,0.10680919,0.080516756,0.7357977,-0.31796047,-0.019999716,0.7506271,0.97804874,1.0659099,0.13584355,1.1840811,0.21335016,-0.31868124,0.20681044,-0.5798804,-0.6619347,0.23677956,0.33628246,0.17922091,0.3191451,0.09985965,0.01307258,0.42926815,-0.33337379,0.2775504,-0.11803884,0.10151924,0.10580634,0.0047934824,-0.4167908,-0.23499808,-0.11368368,0.059579678,0.09516477,0.14313854,-0.17774959,0.39176944,0.11665128,1.7649285,-0.23185483,0.12727478,0.012840151,0.2995539,0.056720812,-0.27137214,-0.076098084,0.2232265,0.4228743,-0.028373148,-0.7310985,0.13876382,-0.100602664,-0.46782345,-0.20494854,-0.34302092,-0.0187989,-0.051559,-0.30767298,-0.12421159,-0.16210051,-0.5294455,0.3131741,-2.7357616,-0.17942412,-0.12177296,0.23698887,-0.25253376,-0.38152176,-0.09416013,-0.4427064,0.3368712,0.34934762,0.36762634,-0.6286286,0.34717155,0.41523954,-0.3838966,-0.13742158,-0.605768,-0.023829851,-0.021894148,0.28657076,-0.0125409495,0.029839933,-0.038021922,0.18965109,0.37514156,-0.07797571,0.049401976,0.2933167,0.27363485,0.1718153,0.4524545,0.06551371,0.54944116,-0.081788525,-0.114918835,0.3228306,-0.31149602,0.23118632,-0.058372296,0.19962814,0.2362913,-0.49442655,-0.74491435,-0.6957765,-0.5972584,1.2318357,-0.24439695,-0.35931015,0.3749021,-0.21333659,-0.30273494,-0.17004271,0.44804507,-0.17411144,-0.3005391,-0.81553686,0.019213328,-0.11364322,0.21026863,-0.03430521,-0.089991234,-0.5298274,0.7230555,-0.11605931,0.5493079,0.3840379,0.0851186,-0.045296993,-0.30591044,0.026156107,1.1096687,0.38260236,0.07044115,-0.2565351,-0.2393264,-0.3788467,-0.10816083,0.06922736,0.3805149,0.6929713,0.028823735,0.101339355,0.18178561,-0.0040614987,0.075153686,-0.113459125,-0.19877554,-0.07381078,-0.06682255,0.59575015,0.3383133,-0.18382578,0.5456826,-0.12293436,0.16286932,-0.15452442,-0.34757352,0.44277975,0.8151685,-0.0766388,-0.21774706,0.5489942,0.40186256,-0.25515175,0.3484026,-0.54043806,-0.124146305,0.40802914,-0.31450972,-0.30551594,0.30560365,-0.2534663,0.16767056,-0.9850921,0.22038658,-0.19194995,-0.5989601,-0.5660696,-0.11067878,-3.6322937,0.09973198,-0.09060676,-0.31750324,-0.016103284,-0.06641384,0.26140925,-0.55920875,-0.595703,0.13755114,0.05241841,0.6151792,0.020133147,0.06582433,-0.1781355,-0.14253761,-0.36908984,0.1652668,-0.039322253,0.3247413,0.07535754,-0.27396405,0.016051294,-0.16676542,-0.30763716,0.025223792,-0.5182337,-0.51549625,-0.08584132,-0.5016933,-0.26841596,0.66317207,-0.22918953,0.07355472,-0.21917759,-0.029678037,-0.15030701,0.4198575,0.14638078,0.13375019,-0.0014609013,-0.0058607436,-0.02535918,-0.23121956,0.25744465,0.09849493,0.31471506,0.4145031,-0.20936823,0.29354525,0.41676235,0.63130814,-0.015310183,0.67691386,0.5383454,-0.14678338,0.27097416,-0.36070606,-0.09296174,-0.45795155,-0.3020908,0.040942457,-0.37473226,-0.65258723,-0.18690255,-0.24295427,-0.79850495,0.36153263,0.044036094,0.051468484,-0.0038883004,0.15907495,0.4349565,0.05939562,0.06596137,-0.16613956,-0.05611411,-0.49122688,-0.2586603,-0.62724245,-0.37423787,0.23567012,1.0218496,-0.20819232,0.07219219,0.041280456,-0.3395133,-0.01582892,0.08155085,0.07310132,0.19768175,0.35605627,-0.014909319,-0.5880145,0.45819807,-0.022433953,-0.18051662,-0.59920454,0.054702424,0.60540825,-0.6059104,0.46087864,0.13331045,0.048252247,-0.029223485,-0.3363875,-0.09402274,-0.079594746,-0.2882125,0.22979261,0.122492336,-0.5595681,0.37463012,0.29286456,-0.03057146,-0.7017933,0.24490069,0.0012275066,-0.21084145,0.04511989,0.21583872,-0.028843509,0.110873364,-0.12061168,0.14349894,-0.33839774,0.30815533,0.35223788,-0.008572345,0.30072775,-0.1397936,-0.12255086,-0.69320214,0.011166104,-0.43129382,-0.16874799,0.09772577,0.26087818,0.26881117,0.22046538,0.024972081,0.4027306,-0.27418223,0.10449743,0.111321874,-0.19376482,0.2057551,0.34282,0.30244684,-0.39438057,0.569995,0.073254354,-0.056115013,-0.24237892,-0.049915433,0.5351561,0.07579769,0.2725111,-0.09399981,-0.36578473,0.34538174,0.8301314,0.17781314,0.41298223,0.10582803,-0.15218414,0.2879591,0.09036619,0.09939579,0.023769217,-0.48145136,0.08239281,0.020385435,0.18134084,0.38105717,0.18684076,0.3073495,-0.09689514,-0.29900786,0.014002255,0.2704261,-0.100286715,-1.0771908,0.3409452,0.07353174,0.8057191,0.66957587,-0.040076263,0.16104473,0.47275877,-0.32844815,0.11647331,0.2198907,-0.09146255,-0.6516653,0.51907426,-0.7044641,0.43825123,0.006613936,-0.020607496,0.014592888,-0.19098756,0.39512372,0.7209968,-0.16831799,-0.014497495,-0.0988754,-0.1495863,-0.009855254,-0.3897269,0.0886284,-0.49341705,-0.23639844,0.69203526,0.4324634,0.378179,-0.033125374,0.03410558,0.04848075,-0.026841568,0.11083666,0.106419675,0.04566529,0.0020844936,-0.67183685,-0.19869414,0.54778725,-0.22083294,0.13947678,0.032358248,-0.4386654,0.10080127,-0.08036717,-0.1883496,-0.06352506,-0.623956,0.10936903,-0.34891352,-0.3925235,0.23677795,-0.14051142,0.32685047,0.17054224,0.022887941,-0.16141999,0.26713774,0.251646,0.6803195,0.069382675,-0.10920005,-0.3271498,0.24636085,0.1645737,-0.19726107,-0.19731502,-0.13734971,0.07776458,-0.5715424,0.38878265,-0.018356856,-0.41362232,0.23784658,-0.119930424,0.07703085,0.5470186,-0.24971221,-0.049657114,0.09080579,-0.3358943,-0.14676407,-0.042684097,-0.08865626,0.29365197,0.19787182,-0.13492292,-0.04987367,-0.05661873,-0.08813749,0.3666025,0.15892465,0.41464677,0.34832424,0.009457086,-0.330519,-0.19679888,0.09600574,0.30217406,0.11990379,-0.03440862,-0.2500865,-0.3889371,-0.35892457,0.28039128,-0.15278395,0.34598514,-0.05731948,-0.33732155,0.6156634,0.093769856,1.0545254,0.07737879,-0.3380573,0.072409295,0.38791957,0.09070448,-0.048878543,-0.38087633,0.83683175,0.51061285,-0.10896458,-0.2137746,-0.29978338,-0.12681563,0.2456675,-0.16251428,-0.11791752,-0.055091705,-0.7010039,-0.3399276,0.21256296,0.13925402,0.17034362,-0.068818666,0.09608537,0.1398575,-0.0041669137,0.31626502,-0.46538863,-0.13041125,0.3040239,0.04950261,0.09588904,0.065064006,-0.44820574,0.40833727,-0.6114645,0.11978344,-0.1047697,0.114816986,-0.03656024,-0.15227519,0.26093024,0.18907355,0.40237728,-0.29701972,-0.41042417,-0.35711455,0.55456126,-0.13922141,0.1088211,0.61573887,-0.24756551,0.22028829,0.16631389,0.49138227,1.0998188,-0.10013182,0.16529597,0.33748668,-0.25964904,-0.47884113,0.35024548,-0.20249535,0.07116219,-0.04714152,-0.24863802,-0.38749167,0.22137496,0.27551243,0.07359529,0.26285124,-0.46127272,-0.41733232,0.18139656,-0.42171508,-0.21865988,-0.3664996,-0.059856188,0.7372028,-0.3483961,-0.23470625,0.13115504,0.20825338,-0.3833122,-0.5407378,-0.09614421,-0.24948104,0.310391,0.01886304,-0.32119983,-0.056792945,0.1182936,-0.2489235,0.04401664,0.124246456,-0.40031943,0.04901255,-0.3653423,-0.09184128,0.90844804,-0.09681845,0.13431774,-0.67101544,-0.4825983,-0.77883446,-0.44831222,0.69421107,-0.0054876334,-0.1297714,-0.43978825,0.027276,-0.09991461,0.11086481,0.025264662,-0.4347348,0.49632856,0.16560616,0.27351594,-0.0031156072,-0.6719709,0.123759694,0.13120766,-0.180678,-0.62932485,0.53905505,0.061485834,0.7129094,0.08697351,0.056153845,0.1957752,-0.5271858,0.018492201,-0.124135494,-0.16082452,-0.7335312,0.114146076,928 -565,0.46011338,-0.36190176,-0.5666519,0.023241179,-0.38573477,0.11585855,-0.039573234,0.5686577,0.3589491,-0.30372402,-0.2899089,-0.15009466,0.0034716788,0.33832374,-0.12059041,-0.40564242,-0.10950606,0.34414366,-0.5870934,0.67084056,-0.18087308,0.2432112,0.03552698,0.49601966,0.5004889,0.21490394,-0.135951,-0.0018121302,-0.18179977,-0.22279385,-0.17759119,0.23366728,-0.41943768,0.38452002,-0.26470262,-0.27781647,-0.12004639,-0.72933835,-0.54818135,-0.76412135,0.24492513,-0.76867014,0.6488064,-0.12820664,-0.2127161,0.06822115,0.1097822,0.40938133,-0.22640324,-0.102267615,0.36526537,-0.15175553,-0.22310485,-0.14145438,-0.20084664,-0.26703998,-0.49659333,-0.109377824,-0.22216897,-0.023991214,-0.2092603,0.214365,-0.13793838,-0.08070314,0.05342563,0.5551001,-0.35045916,0.25961128,0.14257227,-0.05619773,0.08056765,-0.586718,-0.32466105,-0.19770078,0.39990467,-0.10285498,-0.40149015,0.24668112,0.2001382,0.20691799,-0.06360661,-0.114431776,-0.21724097,0.032947965,0.212447,0.6159366,-0.14648846,-0.47709134,-0.116206445,0.06031915,0.22474353,0.17334059,0.26933673,-0.4659651,-0.10230981,-0.05284432,-0.0623825,0.37959465,0.40717322,-0.09973626,0.09006558,0.37056193,0.39387324,0.41878882,-0.16694994,-0.026509898,0.004478294,-0.45613092,-0.14149396,-0.11484564,-0.20553578,0.48562902,-0.06305248,0.20806254,0.5069408,-0.089816146,-0.277615,0.20322248,0.29727766,-0.198361,-0.12899171,-0.39673787,0.29333755,-0.3950594,0.13136797,0.08555029,0.67861706,0.19665591,-0.58959275,0.26105097,-0.58513767,0.04273477,-0.12920901,0.3442699,0.6623789,0.5038261,0.26080182,0.74231154,-0.22315924,0.102814786,0.07054495,-0.33334956,-0.13870688,-0.251204,-0.101782486,-0.62925607,-0.09490925,-0.16253074,-0.17884402,0.14035389,0.37966558,-0.49794927,-0.15373527,0.07180295,0.77644855,-0.27028254,-0.0410829,0.9860258,1.011396,0.8723057,0.1157004,1.1680657,0.13947347,-0.29530236,0.0011599915,-0.07972834,-0.7154926,0.32050222,0.40407297,-0.8210532,0.22931409,0.1497707,0.063095145,0.32104093,-0.49015626,-0.03520913,-0.12694211,-0.016681109,0.11105503,-0.11221124,-0.4529821,-0.40906996,-0.2557194,0.106845535,-0.080698475,0.2164781,-0.2722899,0.44297487,0.12804282,1.6719106,0.04763135,-0.12590776,-0.013375829,0.3986802,0.28794906,-0.20845358,-0.336508,0.30040404,0.43051687,0.13565199,-0.51390916,0.07405288,-0.11691674,-0.30044875,-0.13332579,-0.23248614,-0.26784664,-0.016372416,-0.30939093,-0.28328627,-0.07091618,-0.25431502,0.4923455,-2.7063854,-0.17297928,-0.034458715,0.4233319,-0.12611619,-0.36011344,-0.16919048,-0.43868488,0.2525276,0.20478234,0.49715927,-0.5985576,0.26954597,0.33776832,-0.71647304,-0.24105155,-0.46866456,-0.09505056,0.14029978,0.30067366,-0.06754687,0.10182941,0.080322266,0.020365069,0.34196043,-0.117693804,0.13969415,0.45559844,0.39768654,-0.04705618,0.49637565,-0.07802444,0.607446,-0.2994828,-0.17303498,0.30523425,-0.21984518,0.25392967,-0.04779017,0.13776514,0.68817014,-0.5374926,-0.74969864,-0.62127835,0.043113887,1.0863421,-0.21434096,-0.21189635,0.20503923,-0.5893984,-0.31219885,-0.0019790444,0.44353417,-0.0550111,-0.11078559,-0.7129407,-0.11744686,0.15261105,0.014815041,-0.08118439,-0.13938917,-0.38984197,0.62291086,-0.02520549,0.6287719,0.37900382,0.18011819,-0.24795203,-0.3556338,0.110265,0.9479955,0.4647832,0.14302717,-0.18164313,-0.0066315657,-0.5656522,-0.07479378,0.11444449,0.53141326,0.4506182,-0.14998065,0.15463248,0.27902517,0.10323449,0.0868581,-0.24203634,-0.21386994,-0.15907931,-0.04462937,0.41527727,0.7408113,8.52985e-05,0.67892164,0.031855937,0.37042412,0.021481497,-0.4559571,0.4108459,1.2072588,-0.19768454,-0.3621884,0.53333867,0.44745016,-0.10992871,0.33874723,-0.31782237,-0.30676636,0.39969972,-0.11538303,-0.42210525,0.33645287,-0.16249306,0.25109246,-0.7664407,0.35558018,-0.06956458,-0.6930124,-0.4484633,-0.004134173,-2.1992035,0.17970546,-0.269023,-0.18241562,-0.0864328,-0.29128698,-0.024310246,-0.52908605,-0.64212996,0.17861797,0.02649802,0.76782656,-0.15519747,0.12357825,0.023319444,-0.34064293,-0.18991116,0.124177404,0.07162376,0.4656908,-0.042458434,-0.5286587,-0.22312112,-0.10701088,-0.31077734,0.0011615753,-0.7883478,-0.40654877,-0.053052336,-0.61852044,-0.35590023,0.6953843,-0.33864444,0.015553975,-0.15571155,0.016674025,-0.05100238,0.11588142,0.042004935,0.093285,-0.01462571,-0.09858249,0.07821043,-0.15407614,0.2028785,0.08775584,0.17871518,0.14715545,0.08402152,0.47383007,0.40311494,0.7657972,-0.29698277,0.93807924,0.55148476,-0.26746553,0.15572591,-0.24021854,-0.45869806,-0.49870983,-0.22418039,0.10518682,-0.4948239,-0.4283173,0.021792488,-0.34168133,-0.8604589,0.61040086,0.16546439,0.13218018,0.10807327,-0.0007474763,0.5917883,-0.2793526,-0.028150273,-0.017391281,-0.17383312,-0.54694134,-0.14429685,-0.545188,-0.393795,0.042078357,1.2624863,-0.26674157,0.113725185,0.2404406,-0.45715025,0.17591347,0.19587128,-0.11571831,0.16343226,0.45005172,-0.056669254,-0.6202764,0.3232515,-0.18279906,-0.13956042,-0.48902375,0.38701692,0.69214046,-0.641894,0.5596909,0.297434,-0.010129298,-0.2660463,-0.19366738,-0.10452112,-0.13178828,-0.09950919,0.4495225,0.23785338,-0.6321467,0.23645698,0.33172056,-0.20617917,-0.80671346,0.54319257,-0.02971044,-0.18087183,0.009070805,0.28594008,0.13743666,-0.0721157,-0.24827984,0.2587529,-0.23506474,0.23192154,0.10346607,-0.16473384,-0.16795148,-0.36794356,-0.1293052,-0.888132,0.17266853,-0.36772725,-0.47028896,0.31432456,0.1438925,0.11566021,0.023625493,0.30382887,0.21335658,-0.359512,0.13657214,-0.1910234,-0.32565933,0.27806342,0.4462215,0.51918745,-0.35859632,0.5517028,-0.01529155,-0.17263606,0.0031838757,0.07626271,0.30421135,0.104680344,0.36575508,0.17135255,-0.20825031,0.27366194,0.6919823,0.13020413,0.33322784,0.008944546,-0.17659354,-0.07084912,0.09588071,0.38587043,-0.050308198,-0.6562831,0.14124669,-0.33060256,0.09804428,0.47109923,0.26588994,0.08922611,-0.05645724,-0.6031971,0.007502807,-0.023800297,0.22502877,-1.3391732,0.41657305,0.2006038,0.7809041,0.36737466,-0.106006704,0.00975324,0.6462172,-0.011133044,0.087571755,0.33601478,-0.16306385,-0.3721303,0.3132587,-0.6827792,0.52050114,0.011058475,-0.032193135,0.25178477,-0.05191985,0.44330963,0.7356078,-0.1611764,0.074608706,0.06596917,-0.31195608,0.12798159,-0.43702284,-0.07711172,-0.7271954,-0.4296637,0.7203139,0.59374183,0.30845043,-0.14158945,0.18255155,0.082488775,-0.20399253,0.26260597,0.2632447,0.10822026,-0.06806572,-0.789744,0.052620143,0.5036956,-0.31664434,0.052897386,-0.047953673,-0.10682881,0.23879743,-0.20199862,0.13939205,-0.09719377,-0.79790074,-0.079704,-0.49992725,-0.45840314,0.30542526,0.05133784,0.17073585,0.2184408,0.07136847,-0.13790414,0.6511167,0.1720061,1.0226195,0.033565205,-0.16385034,-0.18448141,0.37441427,0.1649487,-0.083520725,-0.030600095,-0.3437782,0.018203901,-0.61736596,0.52569664,0.17180681,-0.3219142,0.01071241,0.0379625,0.16676667,0.5107291,0.0050528687,-0.061712224,-0.12217382,-0.10362153,-0.31379464,-0.26931486,-0.18216428,0.13888821,0.3816422,0.034732033,-0.15541188,-0.16095807,-0.17331915,0.27060816,-0.123119116,0.626144,0.29300043,0.11993545,-0.26119262,-0.13509846,0.24356113,0.5492995,0.014111431,-0.2170683,-0.32144314,-0.27845335,-0.4135242,0.110754736,-0.09527089,0.39539665,0.11121733,-0.050418172,0.66910076,-0.049215037,1.2267469,-0.00808319,-0.30949542,0.17130968,0.47202867,-0.044636603,-0.22405103,-0.20558415,0.9177784,0.43524578,-0.01003073,-0.10011764,-0.44029695,-0.17586647,0.23900877,-0.22449265,-0.14562733,0.10081098,-0.4671543,-0.2759168,0.11316577,0.13729091,0.28119,-0.17363882,0.19743569,0.45373985,-0.0781569,-0.040031016,-0.38503,-0.17239925,0.3001814,0.20310572,-0.10595268,0.018372843,-0.5441871,0.47387287,-0.37045106,0.17194824,-0.21989049,0.24342072,-0.30315813,-0.18061061,0.16222014,0.11803242,0.2836872,-0.44988534,-0.29780102,-0.43848428,0.53899777,0.12455593,-0.027098013,0.43075672,-0.32776657,0.011772965,-0.05271197,0.38276434,0.6921288,-0.28366834,-0.02167075,0.4024203,-0.4324141,-0.43203303,0.28503722,-0.3187696,0.09400483,0.10889169,-0.14528129,-0.68940353,0.22445928,0.17752054,0.12732857,-0.10705472,-0.7626397,0.067398585,0.3739643,-0.16146922,-0.12715204,-0.36923474,0.05422932,0.39283296,-0.25149792,-0.6311718,0.101832084,-0.11111212,-0.108760275,-0.41542414,-0.06701691,-0.41729417,0.19804774,-0.073531546,-0.32130393,-0.38661766,-0.13204193,-0.46403232,0.13369569,-0.009648967,-0.38696337,0.10400974,-0.2288781,-0.18238425,1.0354792,-0.30784145,0.2771748,-0.41279963,-0.4135452,-0.6395267,-0.38617674,0.23189838,0.1288553,-0.06409713,-0.76092064,0.022607194,-0.08586029,-0.364078,-0.1979606,-0.31796265,0.5126504,0.16772164,0.4221249,-0.15349698,-0.94804007,0.37290642,0.048643705,-0.32124397,-0.5829611,0.36685544,0.02114657,0.73060447,0.025612256,0.15319361,0.2980635,-0.42377928,-0.15306391,-0.17758097,-0.061681014,-0.45077085,0.0015203442,930 -566,0.32274136,-0.2530387,-0.6493139,-0.09066391,-0.09070265,0.31669956,-0.44029254,0.18086025,0.19446097,-0.4750999,0.079515085,-0.20610496,-0.09536987,0.051072028,-0.12794037,-0.67499393,0.045188945,0.019409698,-0.47652483,0.8015323,-0.43089765,0.1714601,0.14922486,0.18789007,-0.038511287,0.18589285,0.2032353,-0.14295684,-0.107791595,-0.09341341,0.09164526,-0.26808268,-0.535418,0.113910265,-0.26757595,-0.29532126,0.14255424,-0.2715577,-0.3966518,-0.778273,0.22502004,-0.9005701,0.4439222,0.02118449,-0.32362238,0.47808963,0.04169825,0.23226091,-0.26966766,0.0824094,0.14376776,-0.35467726,-0.40701053,-0.35098785,-0.38679928,-0.63730055,-0.45065904,-0.109499164,-0.58881146,-0.0074410737,-0.21940707,0.18549204,-0.2576515,-0.12853839,-0.2847985,0.30543616,-0.4973289,-0.1554211,0.11794293,-0.095052205,0.3737138,-0.8209531,-0.12246658,-0.13592021,0.022524636,0.15156695,-0.13679305,0.21602537,0.17141524,0.40352282,0.016333086,-0.21066292,-0.36852512,-0.15937744,0.36679167,0.2580894,-0.028008742,-0.18771695,-0.17558457,-0.22910394,0.33081004,0.32247835,0.14296229,-0.31667343,0.038066,0.03528732,-0.38245794,0.46471336,0.6698925,-0.27495587,-0.027794315,0.39797026,0.45749268,0.2985671,-0.32038498,-0.017279983,-0.08177025,-0.46401992,-0.19662301,0.44242483,-0.096938595,0.6464637,-0.14616157,0.2307694,0.49512094,-0.17319253,0.06455158,-0.033763546,-0.008537999,0.014654564,-0.18365596,-0.19705555,0.2719406,-0.6329651,0.06696028,-0.58267033,0.39232954,0.018998938,-0.63426214,0.28804868,-0.4754478,0.14319511,0.030669121,0.725008,0.79755116,0.54837036,-0.04042398,0.744538,-0.36148334,-0.13368101,-0.13628684,-0.1510836,0.25311238,-0.12230485,0.1901463,-0.39251933,-0.087940514,0.0569028,0.046431493,-0.108972274,0.6482148,-0.20927732,-0.1457644,0.094169565,0.7278493,-0.23670384,0.04777757,0.6388833,1.1271385,0.7728134,0.1147481,1.450303,0.39826816,-0.24156204,-0.09797077,-0.031175297,-0.7981352,0.16277921,0.32272503,0.44139758,0.38264152,0.038555168,-0.1912137,0.39562207,-0.2748277,0.076208256,-0.17637947,0.108931676,-0.14950256,-0.17030866,-0.21963789,-0.10361425,0.05024951,0.06822573,0.26226902,0.23943743,-0.06800843,0.42253777,0.13988641,0.9770595,-0.20004402,0.052792035,0.05146804,0.3293423,0.21970864,0.07770598,0.06913996,0.43790013,0.34576195,0.013102134,-0.60746247,0.082505904,-0.27306518,-0.52449715,-0.1834507,-0.40286514,-0.19409847,-0.09367701,-0.31381717,-0.25492415,-0.032162435,-0.48059484,0.23076192,-2.7278993,-0.1847935,-0.26877642,0.23814459,-0.21296346,-0.19903731,-0.16861835,-0.42741466,0.6580885,0.31466818,0.3680287,-0.5623999,0.47281858,0.64156353,-0.47561413,0.0008215989,-0.6497119,-0.10560601,-0.14603174,0.5406473,-0.06619167,-0.27981535,0.14673318,0.0056321365,0.50712967,0.032771137,0.18661597,0.31308866,0.49054334,-0.1262178,0.22823915,-0.007843311,0.38509536,-0.416511,-0.048880134,0.34153005,-0.29928797,0.39349762,-0.3063828,0.23703761,0.46012592,-0.43081123,-0.5088294,-0.4150353,-0.1590689,1.0900857,-0.2783423,-0.7191118,0.11651923,-0.21966507,-0.29256597,-0.1549772,0.6555008,-0.1556101,0.105645485,-0.68142813,-0.13884793,-0.016938487,0.25770906,0.08935974,0.26755774,-0.3642585,0.88692516,0.026634319,0.5882373,0.4448831,0.17533578,-0.17878532,-0.46080568,0.25971296,0.7410484,0.375181,0.07847919,-0.2461364,-0.17880745,-0.16175675,-0.2233936,0.037618805,0.6160199,0.8752286,-0.037579454,0.07218761,0.24073088,-0.22167595,0.027636811,-0.24247925,-0.38970488,-0.2532026,0.17564575,0.43960088,0.5214144,-0.02055149,0.26001835,0.055027492,0.27500194,-0.3044431,-0.5049886,0.65203476,0.93317896,-0.18332063,-0.05890461,0.55672276,0.67364424,-0.3507639,0.5173334,-0.6463317,-0.39925703,0.4665641,-0.17517142,-0.5147091,0.31345412,-0.43869898,0.10709662,-0.70710754,0.15719078,-0.4942146,-0.2714196,-0.77779853,-0.08193493,-2.9269307,0.11105231,-0.3290477,-0.08238526,-0.40166038,-0.17767687,0.44657642,-0.38302487,-0.5166747,0.23337577,0.19350131,0.6631278,-0.06754859,-0.05673011,-0.38378686,-0.25719,-0.26689234,0.20697513,0.020175753,0.087213375,-0.39432636,-0.28794646,-0.029737523,-0.16110332,-0.2660026,-0.13175417,-0.28498736,-0.23161952,-0.2513506,-0.24885789,-0.17527331,0.6656992,-0.3647054,-0.0756019,-0.23333065,-0.022598648,0.06122517,0.37119165,0.039851807,0.22205357,-0.04932418,-0.12419183,0.056744635,-0.3419606,0.13472612,0.1169585,0.1320386,0.69919634,-0.15026556,-0.007543317,0.33961576,0.60954523,0.04430782,0.8693796,0.22899291,-0.095837906,0.46497256,-0.16268589,-0.3121509,-0.7591378,-0.19694625,-0.13029717,-0.3010109,-0.547978,-0.15103768,-0.23349372,-0.7151333,0.46026847,0.14817251,0.1785331,0.078798614,0.52320874,0.49672085,-0.1275654,0.06034107,-0.16415755,-0.15741846,-0.3299641,-0.28314728,-0.84700096,-0.51905525,0.16958416,0.69430363,-0.1474826,-0.2766619,0.25298664,-0.3723523,0.09954447,0.31086174,0.10032606,0.116067424,0.32919332,0.2476342,-0.6196561,0.696761,0.10178079,-0.15770134,-0.6642513,0.1456472,0.6483177,-0.7380882,0.37746185,0.60127014,-0.056678712,-0.32843775,-0.55160993,-0.116120614,0.09620179,-0.32701316,0.41944274,0.1768719,-0.8537427,0.42148283,0.1938483,-0.037448194,-0.70317876,0.51243746,-0.042274285,-0.13431735,0.023506578,0.51917803,0.019604564,0.13329098,-0.22106747,0.31835964,-0.35867923,0.23572232,0.1462739,-0.078765534,0.5213911,-0.046352386,-0.1672632,-0.7449618,0.115628324,-0.55406696,-0.11367799,0.5625506,-0.043052394,0.3199202,0.09680707,0.12702645,0.37807605,-0.34409577,0.22431557,-0.1960801,-0.37754494,0.40819237,0.49188766,0.35814834,-0.40480635,0.7467702,-0.15950893,-0.21329466,0.08958066,0.20898768,0.3516486,0.26215467,0.5021262,0.029178878,-0.17274849,0.086679,0.96527004,0.3122849,0.50298727,0.3951871,-0.068468705,0.50471205,0.033108365,0.16214712,-0.2755715,-0.5208642,-0.15553318,0.002004632,0.24547903,0.37290117,0.0054420233,0.5383344,-0.120506905,0.15656163,-0.07646445,0.27098346,0.10032716,-0.67135775,0.2745134,0.25189453,0.68197405,0.64854366,-0.07056708,0.05802358,0.46601528,-0.18826962,0.078342,0.35468084,0.13372931,-0.5193105,0.51993996,-0.56558836,0.22959697,-0.18114951,0.02418461,0.13701923,0.036726702,0.46337706,0.79159874,-0.15079817,0.049597852,-0.058620814,-0.22435713,0.28286773,-0.2674189,-0.016775532,-0.1299521,-0.46199164,0.60326433,0.3972394,0.38984272,-0.2061458,-0.07579662,0.22495513,-0.055231202,0.53757507,0.06554586,0.096310414,-0.25842458,-0.59329176,-0.26665646,0.48005673,-0.054865744,0.15200412,0.25290355,-0.23176602,0.18900375,-0.07701974,-0.08832292,-0.09170443,-0.6430273,0.11023987,-0.32343462,-0.61839205,0.649501,-0.02528033,0.27102828,0.328878,-0.05617268,-0.23085739,0.055130474,0.007037725,0.4794111,-0.101143666,-0.16048951,-0.36830926,-0.063460395,0.32031605,-0.48290023,0.0057658213,-0.01768466,0.1756312,-0.7202299,0.5377557,-0.37120432,-0.1998637,0.1673377,-0.2597174,-0.12567048,0.6077176,-0.2876595,-0.16402756,0.2997978,-0.07337095,-0.35401607,-0.35705847,-0.2297734,0.17231146,-0.07708037,0.1273375,-0.25952926,0.031611342,0.1124915,0.31884027,0.14860177,0.017633393,0.46765748,0.12228567,-0.52428305,-0.1762509,0.28047296,0.54462975,0.16760029,0.019033518,-0.2842228,-0.5346359,-0.36642843,0.2771825,-0.012390162,0.23654023,0.15850933,-0.45458147,0.76168424,-0.010426061,0.78404766,0.032822963,-0.4359884,0.12995742,0.5683857,-0.116240434,-0.19678439,-0.33061934,0.7678032,0.56695205,-0.19096892,-0.05608916,-0.47198132,-0.021287147,0.3467029,-0.2943487,0.0046860576,-0.08050973,-0.70108604,-0.23695551,0.17159484,0.21772881,-0.06297753,-0.28606123,0.1435716,0.068222575,0.15759088,0.2685322,-0.62419516,-0.23822732,0.37716293,-0.1371268,-0.009251835,0.18785068,-0.24727595,0.23327853,-0.66795766,-0.05554119,-0.44007125,-0.122528866,0.14553441,-0.22154489,0.22453716,0.070301466,0.2840787,-0.33074903,-0.49352902,-0.108325675,0.4231235,0.32051376,0.46658966,0.5598411,-0.16826937,0.04701313,0.0023168602,0.6038836,1.2666095,-0.12986264,-0.041071586,0.21331213,-0.506465,-0.7280669,0.22921522,-0.45557848,0.4309666,0.03383797,-0.46731168,-0.409437,0.22571845,0.05913353,-0.13335933,0.07076399,-0.7644667,-0.30656677,-0.00022700003,-0.2684804,-0.18565418,-0.35319546,-0.06396807,0.74474555,-0.33607224,-0.11754157,-0.10596103,0.2902893,-0.43898717,-0.4192522,0.14713906,-0.34066454,0.27054822,0.10609098,-0.23239692,0.2453059,0.07067892,-0.6524259,0.23487233,0.030004527,-0.4388608,-0.13141978,-0.3266931,0.067316815,0.7679269,-0.13112545,-0.03818847,-0.14620654,-0.7383459,-0.67681456,-0.43967268,0.010302661,0.17069733,0.1046209,-0.507968,0.20287158,-0.13866097,0.24288486,0.05145681,-0.41858324,0.42779693,0.123193555,0.45310694,-0.18754824,-0.6484892,0.17724968,0.107269004,-0.26807603,-0.41795555,0.39294648,-0.28917602,0.8035425,0.15798876,0.068931326,0.2208679,-0.7749496,0.281986,-0.3733832,-0.13060842,-0.56656474,0.08109655,931 -567,0.40259212,-0.44668746,-0.45567065,-0.09600329,-0.25801295,0.2837452,-0.2194331,0.32570633,0.11986934,-0.4600543,-0.18503179,-0.27945277,0.0732171,0.15471356,-0.21790017,-0.2837863,-0.04987963,0.20579569,-0.68213654,0.5239584,-0.23205402,0.1646918,0.055609297,0.5077859,0.43739244,0.21521671,-0.003894529,-0.0579249,-0.39117458,-0.198016,-0.013095613,0.21108945,-0.4715508,0.1421093,-0.32102603,-0.40508464,-0.09998184,-0.5572728,-0.40759936,-0.81913537,0.34045666,-1.0028776,0.51309747,-0.11076286,-0.24208303,0.28352436,0.24669555,0.29490572,-0.13629784,-0.18982278,0.38027787,-0.2450645,-0.05703468,-0.095280826,-0.29059675,-0.43128154,-0.5255825,0.016793745,-0.33254805,-0.19608554,-0.31637532,0.16060312,-0.25335056,-0.07569226,-0.03683598,0.6921914,-0.42846698,0.26509142,0.17271364,-0.021783782,0.4145557,-0.61977416,-0.28339797,-0.2731454,0.32549042,-0.27475026,-0.25772035,0.29610014,0.32380566,0.26201922,-0.15853238,-0.0724616,-0.36202082,-0.020323243,0.19009304,0.4814499,-0.08384156,-0.4865985,-0.21448374,-0.14564331,0.15042014,0.09743273,0.3483079,-0.2814998,-0.019753734,0.002156594,-0.20550935,0.5683545,0.41871172,-0.13857445,-0.10708548,0.32387877,0.63953096,0.30952507,-0.27724567,-0.15702698,0.073230386,-0.463476,-0.08994783,0.3103933,-0.30057436,0.5170494,-0.18316755,0.2647094,0.74176174,-0.28801155,-0.03636474,0.11939748,0.18938705,-0.35371166,-0.0009808199,-0.36545804,0.27395943,-0.3895206,0.15879102,-0.14072917,0.64627045,0.088722415,-0.6044291,0.24780117,-0.5537568,0.11790222,-0.048251566,0.34981653,0.7038054,0.46007714,0.46641514,0.55389345,-0.25459197,0.08003085,0.0835315,-0.37832215,-0.0900844,-0.44210073,-0.14420076,-0.5056011,-0.13783383,-0.15613171,-0.21180831,-0.081827536,0.56120765,-0.5550021,-0.09247399,-0.02034247,0.83482224,-0.2676445,-0.14081967,0.9363555,0.8849591,0.9974898,0.089481056,1.1723297,0.3320465,-0.32341304,0.11564988,-0.15541695,-0.7301913,0.37948427,0.31181064,-0.61548436,0.29545408,0.065066494,-0.010062908,0.38405666,-0.35253605,0.06450986,-0.32851723,-0.1376947,0.12787053,-0.075752005,-0.35223532,-0.27770296,-0.12573496,0.015105994,0.17944355,0.12775204,-0.25009996,0.577434,0.19399115,1.7110802,-0.11147703,-0.051375575,-0.020883588,0.47200757,0.17075919,-0.13753165,-0.18372633,0.26281908,0.40582862,0.3083158,-0.52371234,0.21730338,-0.11929349,-0.34652707,-0.26019156,-0.3678178,-0.20930994,-0.062067445,-0.41637442,-0.1795276,-0.099749506,-0.2770268,0.2149762,-2.4688408,-0.07740158,-0.14300796,0.34069577,-0.14212342,-0.3118941,-0.07257911,-0.57197803,0.35926232,0.21855326,0.4678822,-0.55633837,0.26908544,0.49855027,-0.62751806,-0.08988077,-0.6263147,-0.2045351,0.010875844,0.3914745,-0.03214236,0.044439077,0.1772137,0.14505635,0.42128843,0.0014612228,0.16678683,0.28575382,0.6114517,-0.053434405,0.51563394,0.054664467,0.5142829,-0.21964057,-0.29065087,0.45724088,-0.3029979,0.2776725,-0.16581668,0.16972099,0.70433575,-0.40017578,-0.8656021,-0.72774655,-0.22430818,1.199025,-0.16264212,-0.5155655,-0.046017308,-0.35398063,-0.39659756,-0.02590224,0.5321749,-0.061920345,0.056899786,-0.8864133,-0.08246483,-0.013975416,0.13227426,0.05846686,0.060872383,-0.42127284,0.6695137,-0.035576984,0.37210438,0.29893965,0.1895144,-0.45093748,-0.5005301,0.15715767,0.9193781,0.3501594,0.14023113,-0.3799377,-0.11816307,-0.38435337,-0.0602101,0.03191844,0.45345968,0.4313848,0.010879904,0.26613727,0.28107888,-0.078490295,0.09729319,-0.3242454,-0.2813937,-0.19070257,-0.07890233,0.454281,0.53818,-0.033181045,0.5820777,-0.12633964,0.28553602,-0.13026308,-0.5120632,0.61809355,1.2455828,-0.22646005,-0.35940197,0.570419,0.4594228,-0.33478943,0.34574655,-0.5439751,-0.19694437,0.4742438,-0.21545005,-0.5553213,0.25600395,-0.2671303,0.1946789,-0.8751211,0.29972702,-0.23760687,-0.37857407,-0.6754961,-0.035634894,-2.9845395,0.22721751,-0.19790375,-0.371408,-0.17957138,-0.35316262,0.16602065,-0.58185565,-0.5768318,0.11813577,-0.040074397,0.9144457,-0.05529609,0.14798029,-0.2564183,-0.27515337,-0.16013534,0.0869725,0.25587505,0.39118457,-0.22850582,-0.58170784,0.055603366,-0.25339636,-0.39359522,-0.109662734,-0.6356589,-0.44642887,-0.18875061,-0.49753076,-0.3781539,0.65417546,-0.3112037,0.08140143,-0.23901919,-0.016571494,-0.012813389,0.40391475,0.09746276,0.1523557,0.08545502,-0.10451567,0.08461147,-0.22223881,0.305229,0.061804015,0.0010385726,0.3872726,-0.10204436,0.46914247,0.41760203,0.73867416,-0.08565189,1.0484062,0.43434387,-0.19382314,0.15522,-0.21975875,-0.30163863,-0.6259228,-0.15776245,0.1240293,-0.45649353,-0.5273687,0.003589843,-0.3139231,-0.7814936,0.631873,-0.084143035,0.19548662,0.040799327,0.31496835,0.53063023,-0.26918393,-0.12102895,-0.04837587,-0.16989207,-0.56702197,-0.30171445,-0.617577,-0.60311806,-0.08464963,0.87929636,-0.10750763,-0.015696853,0.1449317,-0.4330555,0.06757693,0.15312418,-0.124317355,0.13285556,0.43395418,-0.0832082,-0.62873536,0.49680662,-0.032687973,-0.15350583,-0.5802665,0.2896126,0.74476635,-0.55202895,0.49654928,0.4611473,-0.075209565,-0.4288959,-0.4046069,-0.13320112,-0.08094554,-0.12743859,0.4099434,0.27858788,-0.70670563,0.40478903,0.27088732,-0.20749311,-0.78534937,0.70650166,0.04971049,-0.2660439,0.0065568197,0.39606974,-0.039821357,-0.064210914,-0.4652761,0.27949736,-0.34972125,0.15861197,0.17032872,-0.05648273,0.12753224,-0.23068024,-0.10326111,-0.8043291,0.16997658,-0.39050457,-0.31518942,0.4181262,0.022833914,0.14826988,0.32899567,0.18678226,0.28259543,-0.3027181,-0.051955692,-0.13824114,-0.13179655,0.15861407,0.47378612,0.5759631,-0.56562525,0.6385408,-0.055212237,-0.18935569,0.00577536,0.17850997,0.3964043,0.20892164,0.5460265,0.1919011,-0.33639258,0.22091272,0.82343155,0.17349818,0.74295384,0.10805667,-0.26073396,0.056357037,0.08443693,0.4630414,-0.21716125,-0.5445995,0.11996029,-0.375884,0.13363865,0.4586422,-0.06218142,0.26046404,-0.16594256,-0.51950866,0.06708924,0.13619195,0.10478741,-1.261546,0.3430182,0.28862074,0.9624093,0.31257424,-0.08752407,0.02547093,0.77544963,-0.26254106,0.07920601,0.34633848,0.021336552,-0.48865175,0.47525683,-0.805636,0.41768864,-0.07688953,-0.08629058,0.013925071,-0.14621897,0.3956391,0.7890216,-0.20554972,0.14490795,0.011941607,-0.32996145,0.38413543,-0.5014785,0.14698426,-0.4897166,-0.2688476,0.72488594,0.5577673,0.34237877,-0.22958663,0.113677636,-0.019473491,-0.1760274,0.2237996,0.3109096,0.17364545,-0.09244494,-0.83507204,-0.04893043,0.5106998,-0.038127635,0.27650768,-0.008845576,-0.20679487,0.29322428,-0.19127408,0.120306134,-0.11135509,-0.8464884,-0.1535743,-0.3560767,-0.5430497,0.40523285,-0.0096025895,0.21163526,0.2507555,-0.009613445,-0.32720733,0.42645237,0.1889581,0.8494752,0.12276469,-0.025788536,-0.35294178,0.17514226,0.3060567,-0.22834711,-0.13640133,-0.09753128,0.12437795,-0.49879023,0.4736993,0.014449771,-0.47025844,0.035814334,-0.060212355,0.07290031,0.6978037,-0.04580212,-0.11723755,-0.10130613,-0.05724821,-0.2599325,-0.029687796,-0.13660951,0.23363876,0.28955683,0.007240129,-0.28491387,0.046343118,-0.28337386,0.46520576,-0.031437647,0.65879303,0.63274574,0.029388053,-0.45933124,-0.14630933,0.20714031,0.6332653,-0.011423848,-0.21556415,-0.36207595,-0.42800277,-0.29966456,0.27576947,-0.04650917,0.22699283,0.22472672,-0.31481716,0.76357704,-0.2628679,0.9668001,0.008628385,-0.5023404,0.21811523,0.4550833,-0.08708714,-0.15747865,-0.49402174,0.8319076,0.33968282,-0.089961,-0.06715099,-0.35379907,-0.026274364,0.22468622,-0.1637063,-0.14792752,-0.03412825,-0.6583534,-0.23669091,0.22049832,0.27812985,0.18474352,-0.17282364,0.17985395,0.406218,-0.054488394,0.2704926,-0.51074165,-0.20722707,0.37437147,0.21892236,-0.0409383,0.14007352,-0.36540055,0.45071134,-0.36404356,0.06920254,-0.29842165,0.2678187,-0.28748956,-0.23510382,0.24495867,0.1407611,0.41507742,-0.31475952,-0.25124308,-0.42445964,0.4473896,0.28429702,0.13668284,0.3906156,-0.29697436,0.10233361,0.07751689,0.48530152,0.929712,-0.26697773,0.17966986,0.3922254,-0.38141844,-0.44488817,0.4449299,-0.41807002,0.2702786,0.02895655,-0.0723842,-0.51060134,0.26169488,0.30227122,0.14505406,-0.11938972,-0.6343945,-0.11580206,0.42581132,-0.31150892,-0.18843745,-0.3037896,0.070543125,0.23681927,-0.31274417,-0.28849858,0.030759811,0.268927,-0.09977838,-0.2336751,-0.13699673,-0.3922382,0.40214175,-0.048486166,-0.38112825,-0.11546661,-0.22285356,-0.48974445,0.26096088,0.043973804,-0.43555215,-0.0048993654,-0.15124063,-0.068254165,0.90646,-0.28487313,-0.081292614,-0.35725102,-0.4282344,-0.7874607,-0.26303557,0.30445454,0.098385625,-0.01801421,-0.5942346,0.033540938,-0.09690804,-0.07488554,0.006478467,-0.616155,0.48531765,0.16348624,0.44505447,-0.007106351,-0.7572183,0.24127391,0.08221795,-0.19632228,-0.6685411,0.5296072,-0.10476518,0.72790664,0.019466149,0.21881448,0.3199907,-0.40316424,-0.14620683,-0.090612866,-0.2334626,-0.650274,-0.015832279,936 -568,0.5630353,-0.17743155,-0.55634755,-0.25934976,-0.39425486,0.090847254,-0.35742927,-0.020869901,0.22556463,-0.41043976,-0.22132835,-0.12188021,0.034757327,0.40535286,-0.23050506,-0.8215418,-0.007963636,0.21574919,-0.5967173,0.45548037,-0.6193647,0.26715347,0.037001234,0.54266685,0.00052665814,0.29342356,0.375058,-0.023204157,-0.26778308,0.014795073,-0.07280571,0.22223027,-0.9822999,0.20503463,-0.1447502,-0.48913023,0.055048548,-0.41151974,-0.26058397,-0.9221493,0.4892488,-1.0545412,0.61410046,-0.058202393,-0.2963428,0.07669943,0.05674398,0.21427216,-0.39901915,0.08008214,0.26226372,-0.54389584,-0.15253152,-0.24024396,-0.18799232,-0.56851983,-0.778248,0.09348693,-0.7089728,-0.04991413,-0.3414369,0.2678471,-0.31226733,0.07232355,-0.306879,0.3309652,-0.6193163,-0.119101815,0.12716666,-0.13502975,0.23697303,-0.2888954,-0.20545742,-0.22163773,0.2606267,-0.12605432,-0.20482324,0.32063887,0.36580577,0.5932582,0.19070816,-0.353961,-0.35568348,0.02575085,0.16494314,0.32556322,-0.04484821,-0.43953127,-0.36280277,-0.13646527,0.36766466,0.39743453,0.069975555,-0.340077,0.21450163,0.13219073,-0.11902591,0.40916866,0.5000873,-0.3901537,-0.26279444,0.2589495,0.5172369,-0.17349158,-0.26350597,0.009629548,0.08294458,-0.69563115,-0.33087865,0.43379173,-0.23400022,0.6561986,-0.14568436,0.11818942,0.91087335,-0.3692027,-0.064057834,-0.26574966,-0.11871071,-0.24046943,-0.23068942,-0.21498892,0.45100376,-0.45284346,0.037565477,-0.2804256,0.7229357,0.23166026,-0.7367205,0.34060812,-0.5663229,0.13900664,-0.123797655,0.7084939,0.65952843,0.40261716,0.5507115,0.8566038,-0.4761712,0.3077206,0.13642107,-0.460354,0.09406923,-0.3707039,0.101737045,-0.34664026,0.0044616675,-0.23556297,-0.11410512,-0.08389325,0.4940894,-0.40800306,-0.02825378,-0.00096509286,0.6530856,-0.4474638,0.041130718,1.0362759,1.1262801,1.1822788,0.21101487,1.6232721,0.6324304,-0.0767589,-0.15073776,-0.14604096,-0.61963195,0.1863834,0.44810146,-0.2497752,0.31539592,0.036837675,0.16709037,0.4589822,-0.63120043,0.012944677,-0.16709948,0.20074166,-0.12023686,0.07246675,-0.60470164,-0.15693347,0.12686107,0.02394686,0.09812649,0.37720013,-0.11859507,0.60078526,0.06556364,1.1403421,-0.04648235,-0.04277686,-0.08915786,0.5464351,0.14492199,-0.030607095,-0.06765843,0.1855751,0.4627189,-0.12352882,-0.7140297,-0.050487183,-0.32807684,-0.34506717,-0.37262195,-0.40491995,0.23081145,-0.27451205,-0.3523721,-0.24871598,0.057817925,-0.30926195,0.47998708,-1.9743053,-0.14110401,-0.18248507,0.23280115,-0.12651253,-0.31292233,-0.16899957,-0.62899536,0.39998797,0.37807298,0.39441177,-0.6410139,0.35630697,0.43414164,-0.46754834,-0.09293396,-0.988426,-0.0033068317,-0.33860043,0.41052845,-0.07100372,-0.28304932,-0.31142756,0.17213437,0.6371749,0.08408087,0.10737778,0.18571188,0.5451745,0.032867067,0.68053436,0.25345263,0.5315918,-0.3511474,-0.2804843,0.5175304,-0.37633476,0.3385942,-0.055170804,0.17054716,0.52649206,-0.7131289,-1.0730947,-0.8356449,-0.6130751,1.0421966,-0.33608574,-0.5042278,0.15835033,-0.08818977,-0.22394456,0.012074134,0.38108367,-0.2642472,0.103487544,-0.7874591,-0.065875076,0.14258228,0.2794376,-0.037783828,0.27663124,-0.35264271,0.5383375,-0.20773129,0.15546967,0.459405,0.27354065,-0.19450484,-0.6568703,0.25085333,0.9565175,0.27826095,0.098538145,-0.31032056,-0.36328772,-0.013339775,-0.193628,-0.03423739,0.43266302,0.9578577,-0.24267784,0.020416604,0.34158173,-0.29793778,0.039049268,-0.13011232,-0.3183587,-0.10197033,0.06813377,0.5922242,0.75423735,-0.21956041,0.25514835,-0.33894977,0.51479053,0.0131848585,-0.5192837,0.6770095,1.0582381,-0.12239496,-0.08909122,0.81955624,0.5872657,-0.6270383,0.7063962,-0.76702434,-0.33427265,0.64509517,0.012271361,-0.42317942,-0.17943093,-0.34920564,0.33711436,-1.0392708,0.303873,-0.03010724,-0.3627022,-0.6372908,-0.21539016,-3.9206147,0.1489942,-0.23366295,0.0073726005,-0.07970953,-0.2227516,0.37410328,-0.5546016,-0.65356815,0.1255943,-0.011060503,0.5963963,-0.102275714,0.32921436,-0.38549998,-0.1504077,-0.32781428,0.26034227,0.46147007,0.3531511,-0.007994456,-0.52272046,0.2450464,-0.42328677,-0.45088312,-0.17751609,-0.66923743,-0.510188,-0.25758323,-0.6797315,-0.5315801,0.6501446,-0.31368932,-0.034989957,-0.34763643,0.12301066,-0.22270682,0.5013763,0.18053566,0.3362182,0.14914873,0.07110208,-0.19030759,-0.22208397,0.3157738,0.031315345,0.030639231,0.2624134,-0.05749764,0.22175767,0.47609776,0.7218774,-0.017661443,0.93724245,0.38437706,-0.013733777,0.21935473,-0.3673903,-0.4984839,-0.87116754,-0.46121305,-0.24247435,-0.5294703,-0.5061051,-0.09384644,-0.42333984,-1.0134863,0.71083206,0.06575994,0.184643,-0.14259446,0.44666752,0.4218464,-0.24841748,0.007272831,-0.15282938,-0.2535193,-0.5875045,-0.54003733,-0.763437,-0.7694343,-0.07206905,1.1206868,-0.03204012,-0.3425579,0.24474089,-0.42866588,0.25607768,0.21781063,-0.0037375134,0.23408845,0.697573,0.1466411,-0.8013997,0.50515586,0.031850595,-0.0612665,-0.5868967,0.0044404524,0.8117301,-0.86253196,0.7114728,0.58492315,0.22921541,0.21435615,-0.6210889,-0.3831535,0.05384677,-0.0570773,0.7158661,0.2872445,-0.8154526,0.6623413,0.17673358,-0.27815852,-0.85435545,0.5418178,0.05784915,-0.1907728,0.21338478,0.45296404,0.028416293,-0.054655105,-0.43672827,0.23591502,-0.53250813,0.22918512,0.449972,0.056147087,0.37230772,-0.19290951,-0.3251576,-0.8326183,-0.09487339,-0.47468826,-0.26835233,0.030141482,-0.12333421,-0.07145041,0.23260215,0.084784046,0.42203522,-0.34362355,0.16160889,-0.0753362,-0.3343881,0.20871113,0.53779286,0.26140672,-0.6062607,0.76636183,0.10470385,-0.27380317,-0.19828519,-0.080577016,0.4467666,0.15442204,0.28741175,0.07785287,-0.13842593,0.03104854,0.62480146,0.08884297,0.5427098,0.23500337,-0.20961216,0.60493314,0.24598959,0.26457173,-0.058958855,-0.24408457,0.08854042,-0.060321517,0.05606131,0.38878083,0.08511938,0.43064165,-0.03679266,-0.04691135,0.20039405,0.1460304,-0.055063862,-1.3257035,0.29467854,0.1797054,0.6097021,0.6454855,0.050175223,-0.039495353,0.61621827,-0.70012665,-0.07870535,0.4088157,0.20508745,-0.44525903,0.5887221,-0.5331465,0.38898394,-0.29525822,-0.082245186,0.044870887,0.3629563,0.38726425,1.0146881,-0.07596582,0.19042012,-0.090136655,-0.040332604,0.2933357,-0.27183756,-0.061224945,-0.3654206,-0.36890444,0.7932443,0.36037797,0.4720991,-0.29035473,-0.095302865,0.013400367,-0.21104264,0.3356796,-0.04641674,-0.17467615,0.0626903,-0.6838078,-0.2605093,0.5209028,0.108307496,0.00055309065,0.10515843,-0.45486158,0.2975974,-0.2625988,-0.08219145,-0.042573,-0.83441085,-0.32475758,-0.38554317,-0.40763712,0.45170054,-0.4468377,0.27398542,0.23366454,0.061714377,-0.4493394,-0.012795689,0.22568281,0.8111729,0.40585026,-0.113699794,-0.28560376,0.079479694,0.49283418,-0.5022513,0.059623618,-0.34106258,0.15414552,-0.55172163,0.633143,-0.21859124,-0.393387,-0.053687956,-0.17227003,0.009767703,0.60776097,-0.216644,-0.20455413,0.26156786,0.027963161,-0.29462835,-0.25573775,-0.3584054,0.24859358,-0.052272405,-0.007950498,-0.07464201,-0.06737041,-0.07658733,0.85166645,-0.05520689,0.29116583,0.2728921,-0.12128877,-0.41421336,0.012761644,-0.13259831,0.5193567,-0.012588569,-0.25819662,-0.39560273,-0.27529687,-0.1217807,0.28500384,-0.1765047,0.036416225,0.037418924,-0.44252846,0.8228442,0.2157928,1.3577224,0.10985493,-0.5211237,0.04691719,0.6053724,-0.004986848,0.15235741,-0.45723078,1.0448345,0.47071174,-0.32532224,-0.13838181,-0.5010111,-0.12194286,0.23677588,-0.2556249,-0.12315603,-0.29242048,-0.77023536,-0.28764287,0.24707463,0.3911579,0.11289965,-0.04124562,0.28041238,0.041334577,0.25327998,0.699014,-0.48696828,-0.09579929,0.4566618,0.29371768,0.02267374,0.21535513,-0.07852743,0.4594774,-0.52650243,0.10610391,-0.66383666,0.10090273,0.09504758,-0.45203432,0.18817149,0.16910097,0.40602753,-0.26735,-0.24717629,-0.26971126,0.8060288,0.27283198,0.22686605,0.7523716,-0.29809374,0.0822965,0.06579529,0.55910015,1.5472772,-0.26090723,0.21338442,0.17051843,-0.21420605,-0.55100167,0.44218454,-0.5204458,-0.08068289,-0.18250932,-0.49887577,-0.6156683,0.13871573,0.11661398,-0.09804548,0.17702878,-0.5214787,-0.134418,0.5085406,-0.08845459,-0.21011125,-0.32739225,0.44386694,0.68282634,-0.37629387,-0.26272938,0.087251686,0.3419013,-0.24225108,-0.43792632,-0.12902027,-0.3731092,0.46048698,0.104101874,-0.46140394,0.074862,0.23825775,-0.42271134,0.118892215,0.48562995,-0.30150393,0.1162976,-0.240011,0.056444068,1.1443878,-0.009562075,0.1526853,-0.61773765,-0.50318235,-1.1901648,-0.15298608,0.43129948,0.2877193,0.073533766,-0.44685668,0.007541001,0.0229314,-0.0048498,0.26588523,-0.8131496,0.38316685,0.101921625,0.71301556,0.091384076,-0.8130186,-0.085224174,0.08635123,-0.22842346,-0.35273567,0.59420913,-0.10658006,0.8466391,0.09498169,0.0927018,-0.021123962,-0.56525385,0.3730547,-0.3419449,-0.17960323,-0.7255211,-0.03434779,943 -569,0.32481197,0.011607647,-0.50352204,-0.072180815,0.038998544,0.10440359,-0.15036309,0.14022999,0.21562424,-0.41741523,0.030693308,-0.17495392,0.021057572,0.34395048,-0.17433837,-0.677925,0.017476724,0.16211717,-0.28988814,0.3024004,-0.48776224,0.3945207,-0.042960893,0.18099608,-0.19664635,0.19966975,0.4322743,-0.122304015,-0.14667585,-0.2761836,0.094974294,0.18108848,-0.5992133,0.23557952,0.14460003,-0.32716078,0.097461216,-0.27060443,-0.37480205,-0.52578145,0.32714763,-0.73815566,0.52737427,0.24131183,-0.1074426,0.21833737,0.13429372,0.22443001,-0.31848326,0.17873558,0.13319682,-0.17092974,-0.088131845,-0.24939987,-0.27557537,-0.21097663,-0.49003473,0.010689578,-0.44689175,-0.1249057,-0.40637377,0.10896653,-0.40555552,0.017257173,-0.17973062,0.30921003,-0.37742758,0.01653908,0.2668834,-0.26919934,0.24610092,-0.2679293,-0.09239401,0.00053199485,0.059228476,-0.3002827,-0.0741735,0.19465575,0.14095919,0.43996096,-0.028761348,-0.148249,-0.2911246,-0.24659573,0.2770039,0.6092066,-0.19580944,-0.38400322,-0.12179928,-0.009225952,-0.13799939,0.13797292,-0.038919974,-0.37669674,-0.052024383,0.053771503,-0.28281972,0.33215886,0.52675873,-0.23391096,-0.1980077,0.39043984,0.29965216,-0.21388957,-0.018310426,0.20816419,0.15640496,-0.522283,-0.2508442,0.074929334,0.06862747,0.40208647,-0.05360284,0.33565637,0.6449613,-0.42059138,0.007702078,-0.037553847,0.01875405,-0.026781917,-0.3173403,-0.18001893,0.26662058,-0.4175539,0.0059110946,-0.097460985,1.0355021,0.059909515,-0.8482197,0.43902665,-0.4043305,0.09891661,-0.15768231,0.5699088,0.3544806,0.25828487,0.16725476,0.68394405,-0.62764037,0.08931891,-0.03891662,-0.6021937,-0.022495074,0.10921766,-0.23021376,-0.3348392,-0.022955963,0.30017525,0.07216792,0.14672367,0.35130462,-0.3722233,-0.092800654,0.021972569,0.84962314,-0.35372704,-0.06362915,0.47641724,1.1249714,0.74752766,0.03819927,1.144314,0.29006213,-0.12851441,-0.10868498,-0.19837774,-0.8950914,0.19391575,0.23676832,-0.26070204,0.28481093,0.15442726,-0.15304302,0.17720218,-0.38567585,-0.06868149,-0.10979348,0.37496647,-0.10663407,-0.072456725,-0.3872336,-0.077012815,0.10536886,-0.114611864,0.23092738,0.21411125,-0.1983056,0.17904806,0.121176854,1.532343,-0.044942237,0.24984454,0.07625913,0.4189516,0.3143766,0.02468991,-0.16547082,0.30126914,0.33716002,0.0830456,-0.5282565,0.05188625,-0.023884919,-0.43044788,-0.2028284,-0.2788636,0.074443884,-0.16980942,-0.32980868,0.022140415,0.013528122,-0.47867987,0.4461956,-2.871178,-0.043001533,0.024263961,0.28545353,-0.230734,-0.2083937,-0.20671943,-0.34533837,0.40317065,0.42013577,0.40071043,-0.57561886,0.31807283,0.4887174,-0.19046526,-0.1349876,-0.50679505,0.0901771,-0.21550485,0.28174067,0.08170663,-0.05770445,-0.1691109,0.20706585,0.3487391,-0.17419152,0.045710888,0.2485049,0.33395788,0.20091058,0.2960222,0.09047334,0.5052376,-0.38281757,-0.11436277,0.34226927,-0.3007725,0.1192153,0.007430896,0.11132475,0.15684332,-0.3382101,-0.8350722,-0.4431176,-0.3507836,1.1545277,-0.27960178,-0.28696615,0.37990332,0.101717286,-0.38354227,0.03963129,0.35255042,-0.21358427,0.011477432,-0.8175122,0.19204998,-0.110039815,0.3847025,0.0796266,-0.046380155,-0.38445696,0.5187775,-0.1716738,0.5379492,0.47219244,0.13022855,-0.33594465,-0.47947383,0.20327449,1.0710162,0.12294846,0.2026889,-0.18909647,-0.12002279,-0.16629277,-0.10337294,0.027001783,0.4507702,0.8364716,0.018356385,0.0540803,0.32797357,0.06055054,-0.03510144,-0.044932555,-0.3125575,-0.035317387,-0.15960215,0.6177029,0.3887727,-0.2684933,0.37015983,-0.12688448,0.34871206,-0.30583522,-0.2647211,0.5164517,0.7057981,-0.086115405,-0.3312057,0.6131999,0.5022164,-0.2964231,0.39277253,-0.5877177,-0.2813912,0.39272457,-0.19494794,-0.35186005,0.3018892,-0.3101155,0.07480308,-1.0066923,0.33869484,-0.15480505,-0.42824632,-0.45633927,-0.24808083,-4.3351054,0.09261335,-0.25865135,-0.18879405,-0.010040879,0.1077215,0.2997233,-0.3423333,-0.36528125,0.12196588,0.12046635,0.56228846,0.041455735,0.22624636,-0.21321407,0.13524751,-0.2310654,0.16725422,0.12681755,0.09045633,0.100290455,-0.45868307,-0.1538838,-0.19465293,-0.50822204,0.17248532,-0.4921866,-0.32424736,-0.0920607,-0.5892953,-0.4939435,0.6078419,-0.46772394,0.008873999,-0.30535516,0.007266578,-0.14014885,0.45804578,0.07349758,0.108649015,-0.173891,-0.021295158,-0.079745665,-0.25968868,0.4426596,0.031857185,0.32574016,0.38572755,-0.26301497,-0.08174612,0.37865424,0.42064068,0.15659797,0.63840103,0.31287006,-0.118327364,0.28110558,-0.31818834,-0.12924509,-0.52334034,-0.4280383,-0.09920518,-0.46086076,-0.42479306,-0.17097129,-0.35977703,-0.69356406,0.61624604,-0.04020043,-0.034126844,-0.050901264,0.2745813,0.20175481,-0.031287167,-0.04860804,-0.05820947,-0.1483327,-0.2727912,-0.3306412,-0.6689302,-0.34007758,0.09027525,0.8030526,-0.14459464,0.025452277,-0.047716107,-0.0141936885,-0.049177263,0.10661862,0.2508607,0.44180915,0.42181233,0.013248175,-0.58371437,0.5548901,-0.34042555,-0.21747069,-0.6438283,-0.04378134,0.59600055,-0.74624777,0.49617568,0.3845341,0.2511677,0.10443822,-0.39891386,-0.3155271,0.030598832,-0.20576267,0.4753869,0.15077151,-0.81529844,0.52641964,0.31360933,-0.19651672,-0.64981186,0.43665808,0.09265045,-0.29081067,-0.008091935,0.3213742,-0.20982814,0.040276133,-0.23507203,0.14612672,-0.35550144,0.19597699,0.09604082,-0.08786812,0.65063745,-0.15782735,-0.10680527,-0.50134593,-0.04981152,-0.44511032,-0.24770005,-0.017890066,0.033300318,-0.074266456,0.26576835,-0.33699363,0.44846442,-0.37167913,0.057698976,0.09825007,-0.24348663,0.49175972,0.3803828,0.31194323,-0.31416026,0.6969667,-0.12942518,-0.005983395,-0.24741422,0.18480276,0.5581532,-0.008744283,0.37128884,0.08298846,-0.050842676,0.42306146,0.6292781,0.2369829,0.5365508,0.2034951,-0.004816796,0.2989211,0.16421954,0.08322949,0.23657963,-0.27337745,-0.12061107,-0.069611184,0.20910566,0.42177302,0.1748749,0.63259125,-0.2146056,-0.3477494,0.13047531,0.28432545,-0.18554915,-0.9142705,0.37663412,0.071387336,0.50310373,0.51551265,0.029115887,0.19187653,0.37776986,-0.13106832,0.25384817,0.073846065,-0.09095138,-0.437874,0.4957644,-0.42972466,0.33058098,-0.07723701,0.0005984775,0.10638575,-0.09520394,0.3842999,0.7439011,0.057771597,0.18067154,0.08222739,-0.2582312,0.03870492,-0.3299963,0.33550435,-0.32736316,-0.1894976,0.596518,0.46523666,0.24094321,-0.14166561,-0.10436293,0.1033183,-0.019084398,-0.032194417,-0.020182954,0.10098435,0.030153776,-0.70566833,-0.40040135,0.6433341,0.32916003,-0.011681204,-0.030266438,-0.16319343,0.3361195,-0.15563083,-0.039324403,-0.060019184,-0.49474296,0.13055839,-0.23297802,-0.37704495,0.28308138,-0.4350265,0.32021254,0.1541306,-0.059777614,-0.4516081,0.20424436,0.3647106,0.5682885,0.03536531,-0.20734707,-0.31873918,0.0014565757,0.27303648,-0.26655373,-0.20295797,-0.37622467,-0.013396316,-0.66421026,0.30880335,-0.06624354,-0.24969295,0.20125988,-0.16015768,-0.04840256,0.5789779,-0.06823792,-0.08259193,0.15774365,-0.1298641,-0.27415746,-0.19834733,-0.21610744,0.22273234,0.20351502,-0.12624227,0.09173543,0.027419958,-0.27864882,0.15780203,0.095823206,0.2874251,0.29502693,0.24435772,-0.292603,-0.079091296,-0.039757438,0.5813819,-0.05788378,-0.0072407895,-0.22022417,-0.36695144,-0.11288323,0.088261366,-0.2216144,0.11559475,0.06894721,-0.42349476,0.7523457,0.12224739,0.9037784,0.02880654,-0.2308857,-0.056923848,0.47506112,0.026932253,0.043518357,-0.39701006,1.0818132,0.6028946,-0.23718642,-0.31247085,-0.29830346,-0.07289859,0.04368039,-0.18845494,-0.42552444,-0.034555282,-0.5749118,-0.39562538,0.18271838,0.3314382,0.06538621,-0.013056149,0.09015084,0.14854418,0.10803662,0.15283643,-0.5439698,0.11038574,0.25361988,0.27530903,0.14620273,0.083498314,-0.4512115,0.42073584,-0.5252019,0.04395017,-0.29499006,0.076342866,-0.054557443,-0.13460433,0.14908382,0.03470226,0.2880952,-0.27972084,-0.11234482,-0.14620633,0.381403,0.16064633,0.20744184,0.7677539,-0.11260922,0.16719782,0.15702297,0.55425817,1.0866134,-0.20357434,-0.12117605,0.48967028,-0.23604794,-0.6717998,0.169737,-0.27061886,0.08440889,-0.2179935,-0.4034541,-0.42874813,0.25065354,0.053965908,-0.017707732,0.20885767,-0.46795136,-0.2583994,0.3212283,-0.25658444,-0.2956414,-0.3228697,0.045604263,0.6635276,-0.2165386,-0.1277129,0.050889738,0.2633417,-0.25613874,-0.6187831,-0.15017454,-0.18506674,0.2682427,0.17348294,-0.11150094,-0.041996695,0.07996159,-0.26304027,0.24139714,0.40398842,-0.37390688,0.05837544,-0.1827489,-0.14074111,0.6271681,-0.31985217,-0.053607773,-0.74266785,-0.4762954,-1.0055196,-0.34571838,0.67399114,-0.018276375,-0.025889557,-0.37813753,-0.12907088,-0.02287039,-0.12622988,-0.13861719,-0.4153661,0.36155096,0.04383702,0.4305757,0.023384247,-0.78645986,-0.13578174,0.13470562,-0.43306494,-0.5963316,0.6866149,-0.07647101,0.6336538,-0.025531352,0.060501847,0.5593791,-0.61275446,0.0725903,-0.26229224,-0.16366088,-0.64579266,0.10675849,946 -570,0.5492302,-0.049561944,-0.46312925,-0.07646441,-0.5156564,-0.04083627,-0.124731004,0.061108913,0.27962333,-0.4985432,-0.2647853,0.070525475,-0.31571573,0.17923962,-0.003227536,-0.57520145,0.03756895,0.38912424,-0.50278765,0.74829954,-0.21495032,0.40478912,0.01016794,0.20540091,0.09927148,0.25102016,0.11091689,-0.15332845,-0.31258592,-0.18461367,-0.08661018,0.1477757,-0.5412425,0.5356806,-0.07622445,-0.3102245,-0.056609817,-0.4461923,-0.3104528,-0.7289035,0.32316226,-0.7558444,0.46866375,-0.0406714,-0.1334066,-0.022902135,0.12721938,0.44341108,-0.05976314,-0.025931876,0.30721086,-0.26810813,-0.30418745,-0.28597134,0.04854735,-0.39291653,-0.5554073,-0.102290586,-0.23305702,-0.12902442,-0.2913054,0.28687832,-0.26034397,-0.066683814,-0.06857141,0.65112066,-0.5095276,0.24699904,0.38297606,-0.23982142,0.048856873,-0.71578735,-0.04879691,-0.0784688,0.43272465,-0.022694204,-0.1947564,0.3850012,0.31915122,0.5379316,0.23341206,-0.14620157,-0.14462219,-0.012504967,0.15776624,0.46160534,-0.3343616,-0.1437056,-0.07669441,-0.04416136,0.48607573,0.06591036,0.17328086,-0.2780445,-0.04882749,-0.009286478,0.015020392,0.2727271,0.399856,-0.17066063,-0.13250639,0.42949772,0.6266977,0.070994146,-0.035439532,0.13244979,-0.06695824,-0.323038,-0.16086413,-0.041701395,-0.17897962,0.27567202,-0.10247762,0.21273622,0.7648076,0.013543755,0.10990782,0.24570219,0.07831403,0.20362265,-0.18733184,-0.31304693,0.34036025,-0.63512343,0.063751794,-0.14978933,0.6969206,0.009871108,-0.4908782,0.40927538,-0.50185215,0.15288989,-0.10711872,0.50517553,0.71822834,0.5262296,0.3284824,0.82530034,-0.5330766,0.12074101,0.1277725,-0.1692017,0.03027254,-0.102337815,0.18122233,-0.51591533,0.06568682,-0.07484351,-0.11696947,-0.037788935,0.17643236,-0.7471089,-0.14664732,-0.01668345,0.9647342,-0.29819688,-0.007950847,0.84107786,0.98355615,1.0073601,-0.022988483,1.2175757,0.26565057,-0.34042206,-0.20189261,-0.30205998,-0.59115475,0.17482302,0.37124127,-0.25224233,0.18433905,0.25591755,-0.049536068,0.53469527,-0.52900285,-0.12227255,-0.31653723,0.31594896,-0.0049184687,-0.17589696,-0.58328027,-0.14914441,-0.039527632,0.008018515,0.06871324,0.33313447,-0.21898091,0.39958125,0.099544235,1.4179971,-0.31860182,0.03366915,0.085989304,0.31569406,0.09077974,-0.22425999,0.047749903,0.13630196,0.349513,-0.056085322,-0.47508934,0.013407017,-0.3490846,-0.40636858,-0.26180226,-0.17620452,-0.11282366,0.1466914,-0.16107523,-0.3847607,-0.1142171,-0.34987697,0.42984778,-2.2328768,-0.18543836,-0.33904818,0.5252939,-0.2568016,-0.22438608,-0.020506442,-0.46163464,0.20688334,0.17405793,0.5399991,-0.60400903,0.5436641,0.47792754,-0.79377645,-0.13186665,-0.5518466,0.0060428423,0.06389516,0.25633425,-0.033489846,-0.24375822,-0.030300213,0.119103454,0.4083722,-0.026589552,0.1279998,0.51251423,0.349782,0.11454489,0.24461296,0.14249708,0.6368629,-0.27996573,-0.24861825,0.46559468,-0.25663212,0.21130745,-0.2563134,0.0036139744,0.4489255,-0.40659326,-0.6709188,-0.79592294,-0.27536133,1.1194361,-0.050239626,-0.5136684,0.11606591,-0.2765634,-0.25376484,0.019528184,0.3501266,-0.045514435,-0.075361185,-0.8878892,-0.040006287,-0.05199018,0.08265013,0.07088379,-0.23668242,-0.5527309,0.7876605,-0.25189295,0.41729742,0.3781673,0.36695686,-0.19342612,-0.28861216,0.031719975,1.0201699,0.59174854,0.12572666,-0.16065101,-0.09204217,-0.3547656,-0.284689,0.03889079,0.49080357,0.5511323,-0.13535967,-0.056949854,0.3422257,-0.016073164,0.059098814,-0.23618521,-0.4796152,-0.22988322,-0.042954665,0.6403576,0.5573819,-0.11781842,0.43653414,-0.017927732,0.17881945,0.034801446,-0.5476341,0.4518972,0.9022718,-0.35442188,-0.30585957,0.55631167,0.28899315,-0.22673523,0.39771408,-0.5450813,-0.27220556,0.27496153,0.03055409,-0.62469393,-0.063549,-0.39693502,0.355637,-0.6513662,0.753224,-0.5338317,-0.8038305,-0.5864817,-0.049899537,-1.7070726,0.29612255,-0.46245965,0.032059826,-0.2039728,-0.03689608,0.031704847,-0.6211082,-0.46886352,0.2690467,0.029146884,0.5741,-0.080250606,0.118949115,-0.1304258,-0.44963837,-0.07311891,0.04251151,0.13946126,0.3488963,-0.04727739,-0.414505,0.23446456,0.11031831,-0.24725291,-0.050026953,-0.77498627,-0.5731617,-0.21142605,-0.5494484,-0.18913592,0.67619324,-0.46282881,0.14546093,-0.46144268,0.12269014,-0.19349541,0.16103351,0.025051503,0.25287637,0.04536667,-0.139667,-0.16004106,-0.17832062,0.3847311,0.043570675,0.4436802,0.16448641,-0.20006071,0.21692525,0.5414402,0.67142135,-0.06378708,0.94804233,0.50942856,-0.31270462,0.25647724,-0.17810321,-0.32441905,-0.6480796,-0.47991022,0.36503512,-0.4818154,-0.37739578,0.10916914,-0.52807087,-0.9774141,0.6260604,0.07593458,0.26443467,0.028441599,0.22002898,0.5008958,-0.17014968,-0.100811355,0.011896719,-0.19279204,-0.7144707,-0.098657526,-0.6850109,-0.4384203,0.23709263,1.2228364,-0.4387834,0.23606266,0.42048955,-0.2736275,0.15589312,0.11566001,-0.12664554,-0.06194162,0.5199269,-0.11361348,-0.6362892,0.28668618,-0.07623441,0.0632481,-0.5629967,0.45458058,0.69829226,-0.5604282,0.5874332,0.3432662,-0.053358722,-0.16912566,-0.5481154,-0.30805558,-0.057052292,-0.40856,0.3321158,0.236027,-0.47106007,0.24149708,0.4484453,-0.3050185,-0.75604886,0.37292957,-0.11437089,-0.073095165,0.14709918,0.33585438,0.17654197,-0.007150101,-0.04807263,0.26357886,-0.44211176,0.52680504,0.09459095,-0.26830617,0.103298746,-0.34646508,-0.46752796,-0.8925191,-0.037492484,-0.5382439,-0.3215626,0.14796464,0.07375695,0.053218756,0.2193989,0.4261224,0.47596923,-0.15276578,0.02091791,-0.1768849,-0.50071615,0.3861242,0.44025904,0.39509335,-0.41036555,0.55244786,0.008804237,-0.15086548,-0.20228551,0.098501965,0.5137497,0.12427479,0.51069456,0.04954757,-0.06718055,0.18799977,0.9130866,0.049819034,0.3864765,-0.06685247,-0.052438486,0.10000168,0.057572454,0.31467554,-0.015525739,-0.60348135,0.15299277,0.010821112,0.08127958,0.4284685,0.24766131,0.2542683,-0.1461711,-0.46015126,-0.106917344,-0.0092504425,-0.008313541,-1.433721,0.51646477,0.06655485,0.7229819,0.36505562,0.060468644,-0.0037167121,0.8754691,-0.06402917,0.15236239,0.18012755,-0.34148073,-0.38479137,0.32154235,-0.6652599,0.22500862,0.06156199,0.10381794,0.039839048,0.020540953,0.24026667,0.7227403,-0.19849603,-0.10388071,-0.45892826,-0.2985528,0.10484957,-0.27026504,0.35465616,-0.50543123,-0.45592335,0.68833125,0.67862403,0.43946955,-0.2836823,0.15116458,0.043822475,-0.2972764,0.33409905,0.05085475,-0.038910363,0.05424494,-0.5149008,-0.065137126,0.36680323,-0.20368907,-0.045731395,0.010982773,-0.05608424,0.17937656,-0.096454464,-0.06324182,-0.08690597,-0.64365345,0.16444299,-0.41570425,-0.2537938,0.38049528,0.17794445,-0.098867536,0.099335074,-0.010349406,-0.14423688,0.5106239,-0.09863404,0.70198786,0.24831986,-0.2405698,-0.27443394,0.28712907,-0.060104568,-0.10470561,0.31926912,-0.23405151,0.23266782,-0.71765864,0.51483727,0.045060735,-0.32837987,0.23906006,-0.23365977,-0.07317968,0.3931064,-0.31530327,-0.18153225,0.17263658,-0.3530007,-0.1712468,-0.24728402,-0.13052198,0.091929756,0.22157459,0.07152867,-0.28792888,-0.22294874,-0.40510818,0.39783472,0.14660494,0.32487813,0.42577443,-0.013577261,-0.5182331,-0.13015844,0.2522786,0.42251232,-0.0827815,-0.19794032,-0.38146415,-0.51356745,-0.48148298,0.3462507,0.0013236573,0.44215918,-0.102204934,-0.19391097,0.92536294,0.05149927,1.3362439,0.009263756,-0.1622359,-0.11257323,0.68279696,-0.025861021,0.03353523,-0.24394076,0.85472447,0.6266371,-0.07965292,0.003994501,-0.46260804,-0.09779949,0.31407264,-0.20888694,-0.0073880935,0.08834797,-0.74042034,-0.35928196,0.28353903,0.29244393,-0.046321776,0.03777346,0.21755826,0.3375146,-0.074058704,0.28370416,-0.623843,-0.3008665,0.23339102,0.2998496,0.006273757,0.1454071,-0.56332827,0.35058743,-0.7027159,0.14135358,-0.17099145,0.052887898,-0.16370293,-0.2438616,0.29924226,0.06554242,0.50254214,-0.53455526,-0.3198624,-0.08123745,0.38516262,0.3185648,0.031016057,0.75263005,-0.35909632,-0.043420196,0.21924068,0.4630068,0.911426,-0.17209862,0.08709778,0.3809927,-0.47348282,-0.55018634,0.23410133,-0.15461884,-0.12958908,0.034363758,-0.44947347,-0.39253792,0.10972215,0.29385695,-0.18893115,0.09278006,-0.8411112,-0.032997157,0.20917416,-0.40268582,-0.10350854,-0.24158199,0.19523753,0.53951204,-0.25452235,-0.4364228,-0.092418216,0.30536288,-0.15070046,-0.6411435,-0.06917689,-0.41183805,0.3902332,0.03035043,-0.39497873,-0.21159537,-0.14416695,-0.4538369,-0.03227914,0.25262946,-0.35709924,0.05915318,-0.24297394,-0.045032926,0.6011794,0.007899036,0.08755638,-0.44363952,-0.2703204,-0.86295176,-0.2853384,0.18803619,0.24283946,-0.08153138,-0.6153596,-0.066166006,-0.1467231,0.15378918,-0.017962124,-0.3933761,0.32215446,0.21951653,0.42455357,-0.21359432,-1.0371603,0.1129305,0.10079361,-0.1250079,-0.5291169,0.41789514,0.15623832,0.90715396,0.080198534,-0.007860399,-0.04969446,-0.49523264,0.123926625,-0.3292332,-0.27718323,-0.7178475,0.04382428,949 -571,0.49639672,0.0026977658,-0.44835517,-0.25714764,-0.3180437,-0.08369523,-0.32004294,0.07415465,0.29657426,-0.29499716,-0.20095079,-0.054726224,0.112762555,0.34618214,-0.10100885,-0.92592305,0.052864693,0.17436405,-0.8011679,0.5599281,-0.64808565,0.38187006,0.25422397,0.3071441,0.0077558244,0.3981139,0.4419159,-0.14188017,0.18652524,-0.12615903,-0.0116123045,0.11516811,-0.7116943,0.18567263,-0.1455065,-0.40895915,0.11954414,-0.3827546,-0.091213904,-0.68234664,0.08636248,-0.7805669,0.58764094,0.094444856,-0.11317776,-0.041033745,0.19721484,0.47499448,-0.24845459,0.09400233,0.23425977,-0.18087666,-0.21382281,-0.2410855,0.11028617,-0.34718534,-0.40720147,-0.08614201,-0.57225937,-0.36638087,-0.28429002,0.06099822,-0.42978224,0.05086758,-0.029544419,0.37955967,-0.30806187,-0.04001326,0.4201774,-0.12461985,0.24675171,-0.4768944,0.016136613,-0.0773468,0.54387844,-0.22374108,-0.26073927,0.41631532,0.33708754,0.49624506,0.25689158,-0.43642262,0.027038809,-0.19719991,0.07016352,0.52569336,-0.17487468,-0.36871895,-0.26195168,0.2115512,0.33951586,0.3457387,-0.05124196,-0.23028362,0.010739741,-0.071049884,-0.24119584,0.6239143,0.5322858,-0.2639415,-0.42031628,0.15438604,0.43990254,0.11022063,-0.11173721,0.15415491,0.02607346,-0.5393461,-0.2351126,0.13547435,0.05123887,0.4761565,-0.052706044,0.1899648,0.8158231,-0.30098155,0.10072977,0.004285029,-0.202337,-0.010052775,-0.31525216,-0.17003417,0.21816874,-0.8266603,-0.0073574907,-0.31739932,0.92042214,0.16899931,-0.7643563,0.42617536,-0.574808,0.14636825,-0.19757839,0.5745095,0.7035919,0.3326513,0.33518544,0.77308166,-0.45976186,0.2203283,-0.15059425,-0.47678468,-0.014904375,-0.092728294,0.2853132,-0.48875013,0.038825635,-0.07252437,0.14184931,0.057918526,0.19456208,-0.5122162,-0.12528922,0.26523563,0.7637022,-0.35916743,-0.047508117,0.73542076,1.2350416,1.0469786,0.09704008,1.1632749,0.37369737,-0.24599668,0.1024851,-0.1727281,-0.63456905,0.14017048,0.34621263,0.16736217,0.25920033,-0.06330196,-0.14094076,0.23419724,-0.4310959,-0.057781585,0.047742072,0.46370813,0.030337287,-0.026315471,-0.5169078,-0.22306386,0.07065598,-0.13388416,0.011789597,0.26717803,-0.16289935,0.22612055,-0.065679,1.0540743,-0.1448798,0.0981622,-0.051336966,0.5853299,0.29222038,-0.07226894,-0.19663002,0.21999456,0.32298064,-0.025540216,-0.596247,0.17807552,-0.35651544,-0.30103627,-0.184407,-0.31368682,0.050024543,0.16689089,-0.33815306,-0.1121494,-0.0787,-0.32415256,0.5278904,-2.8251643,-0.4085268,-0.056980826,0.343177,-0.32001868,-0.15141347,-0.04707903,-0.6006117,0.4022984,0.21349452,0.47913545,-0.74385655,0.5883673,0.414912,-0.49783614,-0.30296874,-0.7592654,-0.0076864487,-0.12765625,0.35499388,0.022699654,-0.16793104,-0.21825776,0.30717438,0.6517182,0.05686925,0.11045468,0.33162817,0.304056,0.35131073,0.6512292,0.0024414319,0.6168108,-0.3455251,-0.12771678,0.22874022,-0.1260291,0.20720425,-0.22268264,0.1227295,0.41805226,-0.50023735,-0.8782406,-0.7035409,-0.47686222,1.0313108,-0.32105327,-0.424795,0.1615605,-0.08952407,0.06294401,0.081566215,0.3956592,-0.075336866,0.038592,-0.67531425,0.108216085,0.01627134,0.056210726,0.093640804,-0.06945908,-0.40050077,0.70600945,-0.1113804,0.4634841,0.2477417,0.34045595,-0.15277795,-0.374665,0.19273996,0.87771624,0.29372406,0.0042360425,-0.11522167,-0.33255625,-0.22116467,-0.17067862,0.04046434,0.5461411,0.9030059,-0.10203961,0.058901723,0.27840242,-0.16767584,0.16062883,-0.03323747,-0.332194,-0.030252364,0.010734826,0.522119,0.6052971,-0.16743574,0.51654345,-0.054180253,0.19536339,-0.022574289,-0.45850068,0.56408995,0.5673199,-0.11947465,-0.039780524,0.32983795,0.38792548,-0.2540406,0.49351788,-0.6119629,-0.23026,0.7229949,-0.11212408,-0.3212294,0.13021098,-0.3515828,0.19573487,-0.8487109,0.43145746,-0.542511,-0.5211295,-0.18527912,-0.0026628098,-3.8269439,0.3369848,-0.23501076,-0.074058816,-0.25544274,0.019478424,0.3727221,-0.561417,-0.44201747,0.2654071,0.15295564,0.64755166,0.022608442,0.12321599,-0.23809414,-0.17066261,-0.21510641,0.10716437,0.07602986,0.289534,-0.017487321,-0.3205683,0.04260706,-0.07409006,-0.5262477,0.27207848,-0.4401753,-0.54035443,-0.045044545,-0.5134902,-0.4123775,0.5766348,-0.34176084,0.08120737,-0.35936478,0.025604421,-0.23525439,0.2723594,0.07608603,0.08419377,0.025501626,0.08114032,-0.021254225,-0.39138943,0.50328815,-0.0048454576,0.38903576,0.015755387,-0.017489126,0.06847454,0.48903152,0.523831,0.043246087,0.84459025,0.22881818,-0.12164266,0.32455817,-0.30934018,-0.20517884,-0.46018666,-0.38219506,-0.20938082,-0.28328684,-0.38973904,0.009661726,-0.34197536,-0.7563034,0.53987545,0.030782351,0.3129103,-0.06673403,0.3015817,0.32759413,-0.120272115,0.06843715,0.020099547,-0.14794824,-0.6896401,-0.13283826,-0.6593704,-0.47952673,0.12590311,0.58737534,-0.46018082,0.041391436,-0.099381335,-0.12796982,0.14686659,-0.056960743,0.14666998,0.34499502,0.37952158,-0.13129474,-0.6776095,0.41244522,-0.11219321,-0.07677182,-0.5116325,0.15382886,0.7273377,-0.6419745,0.57050985,0.49232647,0.1243157,0.1155239,-0.50389755,-0.17861755,0.13215193,-0.28345025,0.27450165,0.082544506,-0.88601077,0.5470828,0.28105003,-0.48444572,-0.69272023,0.40719,0.17047508,-0.26741654,-0.012352611,0.29567662,0.19372939,-0.073258355,-0.21611036,0.0899371,-0.4627688,0.18094173,0.06592428,-0.053196963,0.35936025,-0.0725379,-0.38630506,-0.6492586,-0.11371938,-0.6006459,-0.25098556,0.1978879,0.0574936,-0.030020837,0.2002744,0.111031376,0.38949093,-0.26643208,0.09988635,0.004116791,-0.47246698,0.24644057,0.5410442,0.31070635,-0.3512155,0.5563337,0.12524079,-0.15152308,-0.074749626,0.07547374,0.42257792,0.0058461255,0.24731612,-0.099054076,-0.16461317,0.29289863,0.61454815,0.058733102,0.32080215,0.08346249,0.060627777,0.401434,0.07460147,-0.059580483,0.17762657,-0.3551883,-0.171821,-0.03777012,0.16196087,0.47043103,0.44882146,0.26725218,0.092212304,-0.2981151,-0.094496645,0.06706184,-0.26384443,-1.1240312,0.52551335,0.20340946,0.6381802,0.6017791,-0.073295526,-0.037869025,0.49442822,-0.17401327,0.16951908,0.3090512,0.009524533,-0.27507254,0.7556291,-0.5283908,0.42454004,-0.115438364,-0.0015646666,0.08182533,0.059593398,0.26684698,0.8409217,-0.24123372,0.080684885,-0.07472699,-0.14285977,-0.07539271,-0.29036126,-0.08655008,-0.43201175,-0.26141062,0.7608866,0.33061984,0.27425683,-0.12740108,-0.06361774,-0.022449791,-0.21707837,0.20011282,-0.2068534,-0.06597794,0.13914655,-0.509774,-0.16073786,0.54904383,-0.005537196,0.10504716,-0.24808593,-0.06593477,0.06820555,-0.1347361,0.07510834,0.008903212,-0.74997985,0.14415038,-0.30619022,-0.24517496,0.42735487,-0.34111524,0.06197799,0.1597157,0.104300365,0.032153454,0.22427024,0.14079939,0.5055975,0.06768679,-0.42127863,-0.39164186,-0.10965097,0.28330857,-0.25657672,0.13086994,-0.41399527,-0.015284411,-0.66392803,0.6751291,-0.055160854,-0.31690758,0.18588684,-0.1487207,-0.053785402,0.52549756,-0.30361804,-0.05917645,0.17380057,-0.2241883,-0.33321005,-0.08134421,-0.23992433,0.17755981,0.4080606,-0.06553801,-0.06906034,-0.33978885,-0.19506907,0.4575191,0.08207654,0.50493383,0.12089818,0.21205299,-0.13864146,0.07257736,0.17290771,0.3810621,0.16186295,-0.029051036,-0.50571096,-0.17213385,-0.2107998,0.13191558,0.01192029,0.10155416,-0.16844259,-0.3067601,0.87306243,0.10773667,1.1456097,0.10135389,-0.29542568,0.036197018,0.46617958,-0.24428926,0.025889859,-0.45703,0.9115835,0.5701181,-0.027427146,-0.1415439,-0.4767354,-0.21561173,0.3194835,-0.336812,-0.05342016,-0.0226386,-0.4137284,-0.488127,0.25650185,0.2751896,-0.040255208,-0.01114411,-0.0056031174,0.077869646,0.084039465,0.48509318,-0.73826116,-0.046709854,-0.008680024,0.29444006,0.01488625,0.2478181,-0.3415756,0.45581153,-0.79316086,0.2566413,-0.57246715,0.044518106,-0.17944059,-0.35261992,0.13798681,0.12105002,0.3369731,-0.21964476,-0.47582173,0.06792684,0.36187595,0.061644197,0.1691048,0.6896354,-0.32909217,-0.12088784,0.13438213,0.58660203,1.2941195,-0.21596089,-0.08167137,0.28551093,-0.4124258,-0.57341325,0.28842226,-0.33845735,-0.13031746,-0.10840715,-0.35478085,-0.44289234,0.18062079,0.22474541,0.04896601,0.09649282,-0.6046216,-0.19710724,0.29522207,-0.32059258,-0.39324108,-0.1920042,0.3475917,0.86637765,-0.3163877,-0.18730664,0.0656566,0.23621634,-0.14816041,-0.6245842,-0.09306373,-0.10916829,0.33997914,0.19073908,-0.24849336,-0.111574575,0.17497952,-0.44561648,0.07470935,0.2809796,-0.3569345,0.07323219,-0.08268154,-0.07590115,0.8699008,-0.10242319,-0.101281114,-0.65109664,-0.41032267,-0.7029856,-0.5352451,0.26643798,0.22758433,0.19063827,-0.26300684,0.016309708,0.032797974,-0.059932154,0.09617092,-0.4900083,0.28010234,0.14490981,0.5299603,-0.26734728,-1.027918,0.01009196,0.2414688,-0.19426593,-0.6992482,0.59379154,-0.0037462923,0.7911727,0.13910463,-0.10931838,-0.0022861552,-0.37545744,0.26094896,-0.45768017,-0.074593656,-0.765277,0.0793581,953 -572,0.41876122,-0.22799265,-0.5844161,0.017640335,-0.22278896,-0.13289836,-0.1650927,0.5025124,0.26401833,-0.30126905,-0.010151512,-0.17746441,-0.017036494,0.28609297,-0.22442831,-0.40510565,-0.06510027,0.16621076,-0.32575622,0.48795512,-0.25776002,0.08720475,-0.0027418393,0.60305405,0.16662002,0.21261337,0.044377778,0.23134394,-0.24002388,-0.26589024,-0.052429933,0.38475332,-0.6514521,-0.030141322,-0.25584394,-0.40621966,0.03801574,-0.4699323,-0.43708473,-0.78964865,0.27661982,-0.8640644,0.48283672,0.17899616,-0.28403053,0.2571048,0.1268711,0.25397012,0.029704597,-0.23995641,0.116622746,-0.1756047,0.17774129,-0.33496144,-0.085617594,-0.37219477,-0.5707933,-0.0032356605,-0.5573356,-0.17750606,-0.09532101,0.15068866,-0.23518512,-0.17077267,-0.1199071,0.49525598,-0.4018617,0.022039702,0.24821205,-0.15761015,0.37607425,-0.55274147,-0.11495022,-0.007270515,-0.007605408,-0.32893443,-0.3490142,0.30794677,0.080729164,0.4418778,-0.24488664,-0.18730858,-0.44116575,0.14784372,0.06613083,0.37973,-0.36572906,-0.41024595,-0.10614573,0.18622555,0.18858476,0.14966929,0.3570423,-0.08055724,-0.07590328,0.02283855,0.048435677,0.4830676,0.62571746,-0.24523042,-0.15127456,0.15883772,0.5823121,0.24581572,-0.21551819,0.044334177,0.091739126,-0.56773525,-0.16145624,0.005778662,-0.15877517,0.63030857,-0.10467541,0.18445848,0.5415669,-0.2970154,-0.07355662,0.19331287,0.10275737,0.09001502,-0.3178068,-0.25459534,0.4754456,-0.48678637,0.05451219,-0.2071055,0.5002106,0.11981238,-0.7662712,0.22173333,-0.52754754,0.08287114,-0.016871823,0.4890676,0.64049065,0.54414845,0.5620581,0.7114278,-0.42952824,0.11830105,-0.018049853,-0.38264874,0.3554318,-0.3500304,-0.020596627,-0.5884308,-0.29548526,-0.09410142,-0.3106201,0.052032758,0.27394685,-0.77524537,0.0016740113,0.2949666,0.78003937,-0.19170246,-0.20746328,0.7435589,1.0066917,0.93837255,-0.011349865,0.8386774,0.12798212,-0.21482544,0.21643613,-0.09307221,-0.72267884,0.2155076,0.21250704,-0.2233726,0.45080805,0.13539521,0.025132852,0.35622504,-0.43233714,0.039094765,-0.084785774,0.16596176,0.066489875,-0.26933497,-0.48137805,-0.21421072,-0.14292966,-0.027610252,-0.03856005,0.4035697,-0.18237363,0.4364817,0.025416175,1.7564533,-0.044014152,0.074724294,0.0715512,0.49883372,0.24257219,-0.31987157,-0.09715573,0.3581028,0.30692714,0.4250296,-0.31221667,0.058704805,-0.18942769,-0.42894793,-0.101910286,-0.30085564,0.0008746045,-0.21356691,-0.49032503,-0.1781095,-0.121066265,-0.17086431,0.32951307,-2.9940486,0.17815992,0.14466831,0.3533124,-0.2472961,-0.43903646,-0.003253511,-0.46238872,0.29241022,0.39701647,0.4128326,-0.7364856,0.21737528,0.4161255,-0.5375181,-0.013056389,-0.64752895,-0.18315606,-0.089778356,0.3766574,0.16352904,0.009974296,0.33860555,0.27232128,0.4144478,-0.09141233,0.12021698,0.10392249,0.41352436,-0.065365754,0.39254162,0.020544048,0.2698393,-0.19449066,-0.30887797,0.49820948,-0.44736856,0.103133865,0.044986658,0.09077121,0.47272927,-0.23696253,-0.9867501,-0.5333388,0.10236245,0.97823894,-0.0426601,-0.6082083,0.121808514,-0.4865282,-0.4353099,-0.1430354,0.38950697,-0.12036103,0.00311625,-0.77237624,-0.14981367,-0.35697895,0.18536809,0.008172588,-0.031441055,-0.48161325,0.61952394,-0.010097904,0.26418576,0.47223336,0.25416955,-0.43478087,-0.7121124,0.009307508,0.79023933,0.3462812,0.15485458,-0.3107438,-0.21974312,-0.16823128,0.19397327,0.12739047,0.61882824,0.82261306,-0.20466156,0.17906025,0.27041826,-0.0056364876,-0.0593608,-0.20090692,-0.34257698,-0.034406062,0.085490964,0.59823793,0.94968075,-0.11316509,0.47247174,-0.054950703,0.30852056,-0.13200082,-0.5534496,0.43137312,1.0769075,-0.11898924,-0.33168513,0.52231216,0.42360878,-0.3014074,0.47445598,-0.5482707,-0.27780828,0.34142557,-0.19247317,-0.48173144,0.34097037,-0.26996627,0.18953618,-0.85549,0.39361748,-0.16729233,-0.46511778,-0.8597577,-0.13649578,-3.0943882,0.23779248,-0.28575414,-0.23926343,-0.043979414,-0.20620213,0.13948354,-0.6867357,-0.46109152,0.1478378,0.16043201,0.734031,-0.15532203,0.015234743,-0.2560345,-0.3215107,-0.08473849,0.20058525,0.3582433,0.1597728,-0.044370957,-0.4694876,-0.07442333,-0.1902931,-0.44837004,0.002031484,-0.57005924,-0.5765497,-0.18687038,-0.54012233,-0.23840137,0.6718482,-0.274525,-0.08174689,-0.22099373,-0.09117305,0.15241818,0.3257138,0.10041482,0.23671791,0.01390961,0.016284432,0.0716995,-0.18683894,0.0095307315,0.04024418,0.34220982,0.4626222,-0.20517263,0.28757188,0.6094739,0.7357558,-0.19464567,0.888244,0.6786012,-0.11342788,0.26810673,-0.22245179,-0.31620812,-0.6372689,-0.2921227,-0.0563568,-0.5102076,-0.30780268,-0.008465009,-0.40672752,-0.71087164,0.75046927,-0.10073729,0.3165777,0.026475212,0.5194302,0.6263183,-0.32350662,-0.16397038,-0.15506466,-0.22463645,-0.4435734,-0.29951566,-0.46821377,-0.53627783,0.08382288,1.0164316,-0.25570422,0.13200395,0.23851824,0.026933875,0.060092416,0.20985982,-0.2478706,0.21334021,0.34910432,-0.0696507,-0.5280036,0.41965142,-0.06647501,-0.20393887,-0.60854435,0.096565485,0.48521194,-0.6255617,0.6226927,0.35322735,-0.0058612833,-0.17605229,-0.7504873,-0.20560496,0.1378264,-0.17482483,0.56698763,0.30395108,-0.6848885,0.42948702,0.30234307,-0.42741895,-0.6699723,0.56726784,-0.04214788,-0.4724979,-0.2456763,0.22754683,-0.20171002,0.14862375,-0.20497444,0.23075804,-0.32479063,-0.02128363,0.37535805,-0.05304251,0.1550686,-0.114533424,-0.038169365,-0.78525347,0.23729743,-0.46404558,-0.41873798,0.33237067,-0.027152257,0.06980139,0.3122547,0.26555175,0.3642995,-0.29246554,0.076002605,-0.0633869,-0.24544458,0.40693903,0.44764248,0.50042635,-0.5642226,0.44795108,0.077510044,-0.21448705,-0.11226517,-0.015841527,0.5080758,-0.10387351,0.2747511,0.085627615,-0.23506835,0.15267327,0.95669967,0.073522575,0.62127906,-0.082264595,0.089953534,0.12880775,0.07766409,0.3462976,-0.007078137,-0.55709964,0.18831466,-0.32328203,0.13059767,0.44400287,0.11592819,0.21196027,-0.0050296998,-0.28475556,0.09753672,0.3186685,0.2383788,-1.3204876,0.19763644,0.33716485,0.8682151,0.44977522,0.15279038,0.071965516,0.6291532,-0.30930167,0.0277438,0.2819372,0.09032067,-0.4502297,0.5399395,-0.8443252,0.35215712,0.068224475,-0.031379726,-0.17587784,-0.23822118,0.52757627,0.7090224,-0.27744448,0.017357498,-0.01531314,-0.15023233,0.07812569,-0.33447042,0.11110419,-0.5970092,-0.2315749,0.7640509,0.54903793,0.40955362,-0.04594919,-0.02600433,0.266331,-0.10931487,0.16468593,0.027151564,0.18780568,-0.045971725,-0.5386657,-0.06526518,0.52343595,0.022893667,0.03825638,-0.18283136,-0.09485241,0.14653085,-0.17393382,-0.2436388,-0.0862928,-0.7693759,0.047159787,-0.35593703,-0.41009417,0.9103084,-0.19881797,0.120926395,0.31742948,0.14813587,-0.31258735,0.24225447,0.15915193,0.6952036,-0.005860814,-0.065483615,-0.37586045,0.32996723,0.10374335,-0.14333734,-0.19537987,-0.17970419,0.28880045,-0.4228415,0.27352592,-0.041011576,-0.30040115,-0.12708247,-0.013417823,0.120225705,0.60510105,-0.061135493,-0.36326525,-0.12600194,-0.24603581,-0.27574548,-0.16823404,-0.047815587,0.2543914,0.18374072,-0.26724413,-0.031531505,-0.08045508,-0.16859974,0.33814684,0.09392868,0.44183177,0.3246362,-0.012799374,-0.43782288,0.0034658334,0.13464074,0.55656916,-0.23184061,-0.059599318,-0.3354611,-0.33188745,-0.49561116,0.20507665,-0.11087485,0.32208562,0.08233462,0.046316676,1.0087003,-0.010555063,1.2284677,-0.02703335,-0.52795756,0.061714526,0.5118404,-0.020568356,-0.04723866,-0.47918007,1.0429196,0.48184174,-0.060892608,-0.100344315,-0.22069208,0.09117116,0.3150919,-0.14174947,-0.08225938,-0.08013078,-0.57429135,0.055864427,0.34939522,0.38600394,0.25712404,-0.15442756,0.051897604,0.31274337,-0.09666296,0.106718056,-0.43342978,-0.111056075,0.23830879,0.38849398,-0.010276922,0.04286498,-0.45427507,0.28707784,-0.22307375,0.022640483,-0.3731261,0.20179881,-0.10720209,-0.40874624,0.17311446,-0.14279255,0.3607593,-0.3711441,-0.18627858,-0.2357628,0.38805082,0.18525055,0.18666048,0.4560353,-0.31348345,0.17632893,-0.095626704,0.44513398,0.90797806,-0.412818,-0.14944105,0.48069185,-0.22434342,-0.73317116,0.3804781,-0.3589849,0.23419937,-0.093562946,-0.24533905,-0.5294639,0.116580494,0.26265505,0.13471703,-0.049625363,-0.5961227,-0.03284343,0.33602065,-0.43061474,-0.16938548,-0.3410748,0.13742444,0.5493823,-0.12406205,-0.37353367,-0.015122993,0.3106393,-0.09265561,-0.2908752,-0.010615985,-0.2829542,0.29969308,0.04663854,-0.5190342,-0.020237295,0.020741949,-0.37142015,0.24457036,0.33967835,-0.18837391,0.094296195,-0.24824616,0.08217887,0.89832914,-0.26814,0.15353891,-0.45210567,-0.44331306,-0.8570858,-0.2744136,0.17369293,-0.022092676,0.12503615,-0.8550611,0.086366996,-0.24563195,-0.27437565,-0.22539203,-0.2879203,0.5203496,0.15113282,0.37639692,-0.14486936,-0.75287735,0.1622931,0.17417029,-0.14809987,-0.594121,0.5718133,0.029880945,0.8022685,0.08504134,0.15577486,0.34538904,-0.4773982,0.043265432,-0.16953991,-0.26814303,-0.5933874,-0.13626388,969 -573,0.3953213,-0.10556881,-0.6079381,-0.1530697,-0.19847259,-0.14655109,-0.22373916,0.31849352,0.28603834,-0.6931961,-0.06944106,-0.30031177,0.05061963,0.28057587,-0.17178218,-0.7472127,0.027578983,0.070222594,-0.49947056,0.5616404,-0.2822589,0.31950498,0.19667496,0.41711357,0.073778085,0.17980976,0.14292307,-0.2988046,-0.19262458,-0.17627637,0.19526578,0.15384464,-0.9159031,0.21989654,-0.23885898,-0.42723256,0.046079274,-0.5561072,-0.33392087,-0.72519463,0.20281278,-0.81538004,0.46175066,0.22116017,-0.16412406,0.07548614,0.056701876,0.4408329,-0.13791011,0.08147408,0.2947732,-0.104838625,-0.1127102,-0.08036766,-0.11983999,-0.18208028,-0.6151014,0.18518613,-0.50306165,-0.19157228,-0.2693074,0.041775975,-0.35999733,-0.12582736,-0.1260887,0.56597346,-0.42847782,-0.03561022,0.55615634,-0.16253455,0.52477235,-0.45763114,-0.1793973,-0.21968423,0.33168063,-0.46023765,-0.24197112,0.36587554,0.30758932,0.5468007,0.11151004,-0.3651854,-0.24576767,0.019330647,0.32627848,0.40496144,-0.33466667,-0.44972032,0.00883188,0.04604439,0.08200407,0.1405039,0.14608888,-0.40262094,-0.07907625,0.07479554,-0.20942198,0.47302267,0.57644695,-0.20938845,-0.19567235,0.17451476,0.47157913,0.25443396,-0.00045016833,0.17693688,0.14369373,-0.65128905,-0.3104476,0.19069918,-0.067028604,0.4759502,-0.06777143,0.19729938,0.82077926,-0.2716051,0.099887766,0.15244995,-0.15807618,0.083668366,-0.3334855,-0.11746902,0.34237385,-0.53410965,0.24578413,-0.2607719,0.8156681,0.23840734,-0.87500525,0.21874145,-0.5612563,0.19575523,-0.007149678,0.55503434,0.8060006,0.4373245,0.29900455,0.6474686,-0.64325047,0.13286008,-0.029021401,-0.5590046,0.13925451,-0.25443575,-0.022469087,-0.39934942,-0.30999228,-0.051395994,-0.028954476,0.1449872,0.19026451,-0.66577053,-0.041443553,0.12255444,0.9863472,-0.18581028,-0.074974455,0.7946628,0.95075166,0.9772644,0.16925634,1.438862,0.12066684,-0.24572909,0.27036306,-0.06329732,-0.87707835,0.3087185,0.30488044,-0.3227563,0.19975956,0.12589923,0.1068537,0.42954272,-0.6081669,0.17491044,-0.27369985,0.24595745,-0.063644126,-0.30326152,-0.28200993,-0.20510289,-0.17513993,-0.08979762,-0.15448031,0.25268793,0.047825444,0.2608031,-0.075649336,1.4296873,-0.11686627,0.17950928,0.047948927,0.43770096,0.1844641,-0.123094015,-0.08507877,-0.010865852,0.29463726,0.19482371,-0.37133732,0.054996006,-0.27271953,-0.429917,-0.2344842,-0.24024566,0.055393588,-0.025736528,-0.51454467,-0.02761811,-0.11056332,-0.37176013,0.3935347,-2.4727948,-0.08772067,-0.10679205,0.23141468,-0.29445854,-0.24559991,-0.18300359,-0.57202786,0.56436366,0.28629044,0.5117715,-0.6932802,0.2624582,0.4630301,-0.62479955,-0.0826549,-0.66686183,-0.06759775,-0.05365187,0.05596022,0.17011313,-0.15481703,0.0031154964,0.18458617,0.4574819,-0.112018906,-0.14758177,0.27098694,0.3704795,0.0962715,0.5878144,-0.08070681,0.44608593,-0.39426568,-0.24989578,0.41398236,-0.34485093,0.1536764,-0.15540375,0.054346383,0.26786852,-0.5256791,-0.9381309,-0.77746564,-0.696938,1.0015395,-0.0030495462,-0.27103403,0.28699917,-0.12282833,-0.18388653,-0.005822867,0.676664,0.063896604,0.301912,-0.9085684,-0.03909113,-0.21411109,0.14392336,0.06862879,0.03237336,-0.5644182,0.63127136,-0.10835831,0.23447503,0.6224928,0.171991,-0.16326752,-0.5250057,0.23509558,1.2818578,0.26039523,0.2695258,-0.38981524,-0.16021411,-0.48616645,-0.19737397,-0.0661764,0.530501,0.9141844,-0.18197368,0.043551184,0.27001795,0.25412613,0.12258877,-0.17160773,-0.39767596,-0.21803202,-0.13183244,0.64084613,0.6920055,-0.14828207,0.35503483,-0.09135987,0.3036108,-0.098467745,-0.3002243,0.5895057,1.0455472,0.01591645,-0.19342384,0.50163037,0.33131674,-0.27644327,0.5156039,-0.40790105,-0.37215686,0.43749705,-0.14860848,-0.5483754,0.28379458,-0.45650768,0.13105379,-0.94834524,0.4568073,-0.47500712,-0.28976187,-0.46970257,-0.16801979,-3.4636414,0.30964303,-0.28540364,0.08773017,-0.19410111,-0.011866263,0.31764618,-0.40483946,-0.5362744,0.14813623,0.069343165,0.78593844,-0.11094963,0.2351776,-0.2588974,-0.17963187,-0.2908083,-0.014995826,0.428564,0.2285438,0.096900955,-0.3384493,-0.22835943,-0.3385567,-0.3843589,0.122632265,-0.61667687,-0.57519764,-0.27174535,-0.55335313,-0.45929864,0.77236927,-0.48586008,-0.008413421,-0.13952781,-0.082021885,-0.05356342,0.43293557,0.15042332,0.22859158,-0.04502358,-0.06775785,-0.2697642,-0.301388,0.29904112,0.16827247,0.32423773,0.30890635,-0.20438997,0.3662574,0.5028066,0.8372751,-0.12668078,0.83055276,0.63408756,-0.059318505,0.30168915,-0.38413692,-0.2686192,-0.72359717,-0.3169399,0.018059727,-0.42743775,-0.48954725,0.21493527,-0.35975474,-0.76441544,0.6821534,-0.09397179,-0.021563599,0.12315726,0.11400109,0.28821757,-0.2846697,-0.14797108,-0.012187498,0.011960409,-0.621107,-0.26727226,-0.577035,-0.71103734,-0.077700146,1.0523921,-0.10855365,-0.05362134,0.058926042,-0.12201447,0.15981808,0.1236311,0.014318423,0.16242775,0.47892064,0.1278962,-0.63334525,0.5335957,-0.07869265,-0.26629624,-0.6465817,0.16859646,0.7237319,-0.78672165,0.65659094,0.41140494,0.100433454,0.21605669,-0.52217907,-0.29853168,-0.010716749,-0.19407058,0.25184634,0.05919265,-0.7706713,0.40941188,0.3559427,-0.32881275,-0.8791382,0.48281312,0.076221466,-0.26037842,0.010142141,0.3429131,-0.0011655986,-0.035854377,-0.15105769,0.24125136,-0.36704874,0.23356335,0.31917945,-0.15665393,0.35026655,-0.14238368,-0.20523931,-0.71059763,0.13186361,-0.5534238,-0.34229904,0.2111288,0.10063214,-0.1905208,0.1752843,0.2753293,0.35655025,-0.17377189,0.118716955,-0.10593117,-0.36670858,0.31424466,0.46717677,0.48554128,-0.5059262,0.69515866,-0.10125596,-0.10963433,-0.07934325,0.20713483,0.58007187,-0.07130647,0.2852936,-0.02004905,-0.18093626,0.13498981,0.9343638,-0.07115586,0.48223382,0.1288797,0.014050462,0.24151337,0.14719735,0.029539188,0.1251252,-0.64364713,0.122197226,-0.079616986,0.12078013,0.510727,0.1218786,0.28342924,-0.08831109,-0.36973897,-0.12621716,0.25472617,0.11361081,-1.1873602,0.4680423,0.13147773,0.76810604,0.5841697,0.033037513,0.1401347,0.5710055,-0.098175064,0.24293779,0.40074506,-0.36281762,-0.45573786,0.5250102,-0.63727534,0.45173725,0.09711571,0.051637974,0.10942262,-0.065033935,0.44708356,0.79125375,-0.1625317,0.13456531,-0.14106493,-0.13243894,0.14290419,-0.5473551,0.14451507,-0.3885767,-0.38890347,0.81274146,0.6351227,0.2617992,-0.14177172,0.032776404,0.1189834,-0.25995532,0.24948256,-0.19106899,-0.040242177,0.08207862,-0.6363613,-0.17860515,0.62077904,-0.054383468,0.12523915,-0.045633733,-0.06113294,0.29597592,-0.16284181,0.01869258,-0.17795444,-0.8400735,-0.0353778,-0.65714025,-0.23063298,0.4058468,-0.18425097,0.29158396,0.24913752,0.19599734,-0.33840793,0.69483954,-0.050291207,0.64483637,-0.09399414,-0.40300608,-0.39989632,0.28930974,0.3000273,-0.34777328,-0.15666457,-0.25616962,0.11249941,-0.57086766,0.40909752,-0.047523897,-0.22907901,0.13311575,-0.13345698,-0.10610231,0.5652911,-0.13903452,-0.055862945,0.23734555,-0.15666635,-0.09300184,-0.01698176,-0.09407152,0.25759244,0.34164843,-0.068221614,-0.034252033,-0.2511366,-0.12204582,0.3365319,0.034806363,0.33907524,0.36449507,0.15797596,-0.40380454,-0.15845375,0.32432863,0.66455114,0.08222463,-0.09306791,-0.29626274,-0.2922024,-0.27406892,0.1935008,-0.17623572,0.23466012,0.0696573,-0.3882272,0.815765,0.2750803,1.2947283,0.097810306,-0.31122023,0.1008389,0.3436401,-0.1435088,-0.04731241,-0.6407526,1.0723475,0.51417965,-0.13191119,-0.08991729,-0.3028138,0.056761023,0.06907513,-0.19418585,-0.10557175,0.024899704,-0.7365302,-0.21568252,0.246483,0.37137213,0.0509376,-0.1452591,-0.10743214,0.029897707,0.016231375,0.11357454,-0.7071659,-0.029194662,0.14520392,0.32465845,-0.02389287,0.10870867,-0.41117126,0.5419796,-0.54363674,0.0676408,-0.27689612,0.076072276,-0.15601781,-0.35273567,0.26596063,-0.077372454,0.46661565,-0.412405,-0.2631413,-0.25300795,0.36767468,0.22857387,0.22678454,0.7594668,-0.24889685,0.046337478,0.028038843,0.61333495,1.1826696,-0.30504575,0.06580876,0.4024529,-0.22139832,-0.37787384,0.2493739,-0.40629128,0.17135479,-0.33348098,-0.35878658,-0.49490443,-0.027126921,0.14084585,-0.022327295,0.12542035,-0.6877989,-0.21686053,0.2058618,-0.42090622,-0.43871197,-0.42389104,0.19057237,0.6568895,-0.24978593,-0.25072306,0.21768053,0.057286944,-0.09333646,-0.41433683,-0.06737774,-0.20862894,0.17335603,0.18679598,-0.423224,-0.11154485,0.09867018,-0.53274083,0.19038351,0.24130665,-0.40895635,-0.08426504,-0.06433759,-0.17155658,0.92954344,-0.24263705,0.25138825,-0.47217104,-0.53152335,-0.93766385,-0.27352187,0.6428598,0.16554031,0.1603901,-0.4192793,-0.19316995,-0.063755505,-0.007520092,0.0212763,-0.3042336,0.31506798,0.117685184,0.6538439,-0.3133367,-0.8268723,0.061806615,0.15862584,-0.181646,-0.6408843,0.41490918,0.071109824,0.78791046,0.044692226,-0.03507274,0.47689587,-0.57301664,-0.24053724,-0.26743594,-0.1283019,-0.6951429,0.07245065,971 -574,0.41960123,-0.3982768,-0.5553142,-0.1255757,-0.37865448,-0.16471304,-0.23888983,0.3262382,0.31399378,-0.21625388,-0.056720622,0.0932757,-0.041890416,0.25718105,-0.14589235,-0.64352095,-0.2077777,0.2319918,-0.72771263,0.6251609,-0.4977295,0.43044785,0.14625607,0.3128696,-0.029280433,0.2089163,0.20696424,0.14201795,0.10204362,-0.13632545,-0.08711316,0.32594985,-0.5506334,0.3842186,-0.23736584,-0.3939546,0.1119658,-0.2090163,-0.036017608,-0.75461733,0.052237246,-0.7537899,0.62554324,-0.21225323,-0.38939694,-0.22445713,0.26159227,0.41940352,-0.29981086,0.09388433,0.2073988,-0.36603427,-0.1407775,-0.52227885,0.08448981,-0.5388235,-0.41564375,-0.07906122,-0.62558556,-0.18269362,-0.049319305,0.2976803,-0.16675554,-0.067747936,-0.20819725,0.44485694,-0.40177923,-0.15331748,0.3256509,-0.23177603,0.32649708,-0.6402498,0.00736802,-0.09983388,0.31508607,-0.023144895,-0.17620766,0.4026487,0.030542387,0.44163302,0.27571598,-0.40282208,-0.3092418,-0.19369368,-0.021766977,0.33499938,-0.18363227,-0.28771088,-0.20086597,0.10224692,0.37224764,0.30173144,0.12117643,-0.21576367,-0.0017294118,-0.31378418,-0.026817368,0.3430428,0.42210084,-0.27964914,-0.26121524,0.16981816,0.7710611,0.15363815,-0.19021104,0.08794045,-0.1165595,-0.50725275,-0.19866857,0.12601629,0.050011218,0.36394385,-0.06390445,-0.007501892,0.73855245,-0.15224995,-0.22423764,0.18350157,0.039100852,-0.030015213,-0.29550642,-0.3597981,0.4261958,-0.5605644,-0.028103922,-0.3472946,0.5888562,-0.01501309,-0.7950824,0.22871315,-0.59336424,0.036661416,0.013018457,0.6259637,0.6416212,0.6535424,0.22643434,0.8115631,-0.32214528,0.15654702,-0.084836565,-0.22064193,0.1006976,-0.37711683,-0.06723694,-0.57480365,0.25500935,-0.35802904,0.022614395,0.06582819,0.35996002,-0.6959275,-0.14469838,0.2592435,0.6119708,-0.3347156,-0.006037789,0.6419062,1.0914266,1.1722664,0.016832134,1.1706277,0.335288,-0.2921176,0.002942313,-0.0834375,-0.53526765,0.17114122,0.42279932,0.04073402,0.4322962,-0.06285279,0.045163002,0.39980978,-0.3710522,-0.029069956,-0.02929249,0.4591937,-0.06530995,-0.20379743,-0.7411443,-0.2717995,0.18243954,-0.09626849,0.031910777,0.28086135,-0.17347537,0.52835387,0.041170154,1.1891098,-0.119834505,0.16487359,0.30229467,0.38663498,0.36037546,-0.1631199,-0.034002136,0.43232414,0.36019066,0.008909439,-0.40130165,0.2818223,-0.26492205,-0.5371038,-0.1671437,-0.3096458,-0.031678952,0.039450772,-0.38194466,-0.41407558,-0.006969767,-0.26201004,0.2991049,-2.5460489,-0.084203646,-0.060735352,0.30087325,-0.31395265,-0.25419232,0.0047796923,-0.45936546,0.23152171,0.25996143,0.44698745,-0.5564397,0.46237502,0.54494727,-0.54763925,-0.19088398,-0.6389357,-0.21584807,-0.06747009,0.60330904,0.16014345,-0.27667588,-0.21999623,0.13942127,0.7523165,-0.11655586,0.21855184,0.62084234,0.20631838,-0.021341775,0.5651359,0.029623615,0.52730924,-0.3950204,-0.20223625,0.4724057,-0.33682957,0.09923834,0.085477255,0.036828212,0.5904506,-0.5062755,-0.92206395,-0.6827909,-0.11642082,1.1494434,-0.30599895,-0.57810163,0.072538495,-0.019231107,-0.13412996,0.021349145,0.3427775,0.006734318,0.32804736,-0.6454201,-0.034820028,-0.040063065,0.377541,0.007923211,-0.084519364,-0.5590893,0.71729594,-0.04752476,0.6449407,0.3292935,0.3628175,-0.43733257,-0.5130185,-0.030995099,0.9108788,0.37156463,-0.0049203634,-0.07754332,-0.1707249,-0.03562967,-0.13018562,0.10940211,0.6265417,0.8187379,-0.087462306,0.13059644,0.28734514,-0.23459403,0.10561974,-0.15756464,-0.23047747,-0.15658616,0.2548148,0.49036327,0.6466626,0.018523693,0.33548048,-0.14461206,0.5329723,-0.07733288,-0.7637032,0.41369155,0.9142289,-0.16183482,-0.15588214,0.63770694,0.5159267,-0.26306108,0.53257763,-0.71237516,-0.40886325,0.5639449,-0.21633697,-0.48443487,0.26624233,-0.3124887,0.24749467,-0.81260127,0.39711827,-0.47609833,-0.578999,-0.73243827,-0.3215301,-2.6076944,0.38663295,-0.047077574,-0.030587448,-0.0823062,-0.14778854,0.2519768,-0.72743595,-0.5472484,0.027319716,0.2700487,0.4933717,-0.14445962,0.02664819,-0.35369435,-0.43291745,0.059850276,0.3922973,0.16150868,0.122155346,-0.16443662,-0.4265085,-0.18946435,-0.055852085,-0.5086227,0.07643831,-0.689205,-0.46911994,-0.11495805,-0.61605877,-0.20987412,0.66433895,-0.31601158,0.0063045495,-0.16962482,0.03267454,0.034790494,0.04999572,-0.029178781,0.2604508,0.22161727,-0.11678302,0.087860465,-0.34539533,0.21071997,0.04871758,0.22448076,0.09438251,-0.4060626,0.09968807,0.5762605,0.811193,-0.21515016,0.85351604,0.42280766,-0.1062242,0.3641057,-0.19062993,-0.47454092,-0.7370172,-0.31798914,-0.01968291,-0.44752875,-0.4071408,0.13264301,-0.32775512,-0.8440031,0.87247956,-0.11515201,0.2323015,-0.054513816,0.39965954,0.42943937,-0.24171574,-0.14297077,-0.12539087,-0.30984333,-0.32999706,-0.33751398,-0.6125083,-0.5485812,-0.15469499,1.2912371,-0.2854548,0.20991834,0.16640401,-0.20496821,0.14746805,0.22595385,0.12959954,0.40589634,0.40337515,0.03263138,-0.56783473,0.33664766,-0.011886354,-0.18141209,-0.29375157,0.25245604,0.61139905,-0.7291495,0.42138192,0.2716163,-0.030063663,-0.18000463,-0.6613222,-0.07939291,0.10297811,-0.13444401,0.75294334,0.2889741,-0.5999717,0.6160954,0.26890755,-0.5476606,-0.81144553,0.16242623,-0.2073869,-0.42616516,-0.08689896,0.46432853,-0.14101386,-0.028883193,-0.31012908,0.18884937,-0.5219522,0.20316295,0.17149922,-0.15254535,0.10670285,-0.2107834,-0.26186022,-0.8336939,0.09998499,-0.57609385,-0.3483542,0.33705616,-0.09103419,-0.23804331,0.3122725,0.018417416,0.54110146,-0.2535241,0.13466506,-0.024417136,-0.37736636,0.3632682,0.5269689,0.26621833,-0.27085543,0.43338886,0.101654306,-0.22088994,-0.37868118,-0.01604219,0.45952135,0.020240877,0.39993507,-0.33692318,-0.004722399,0.4645497,0.73365337,0.15424633,0.44252965,-0.050718326,-0.20896025,0.25607112,0.027007427,0.25160545,0.009393354,-0.30772966,0.08636337,0.0051082033,0.1419971,0.5934981,0.25338313,0.34389386,0.0036618677,-0.09986616,0.12357945,0.3600618,-0.08859473,-1.2998744,0.34880045,0.34112504,0.81112987,0.4813402,0.43416572,-0.20403825,0.6651154,-0.29964834,-0.06404743,0.34915325,0.0038024357,-0.35861096,0.7850452,-0.6458596,0.3354561,-0.17721932,-0.032869067,0.07291515,0.0129287755,0.5047242,0.8838781,-0.11566673,0.08289889,-0.11439451,-0.03828297,-0.02334657,-0.31915978,0.05803773,-0.22591901,-0.47007713,0.72892916,0.19765738,0.49100357,-0.2905302,-0.061554737,0.18271752,-0.23209418,0.34342638,-0.11451982,0.09529352,0.086021475,-0.2151873,-0.059933174,0.51678145,0.065389164,0.08898517,-0.14358957,-0.27425495,0.12335099,0.030984385,-0.008954593,0.08554237,-0.5190887,0.09154076,-0.27229398,-0.32674956,0.67529625,-0.29408816,-0.062369924,0.19712935,0.154964,-0.16471629,0.049004667,0.23251952,0.7711138,0.21351545,-0.1939249,-0.21710835,0.1089046,0.08103616,-0.24709593,0.17078508,-0.3337094,0.18065281,-0.78034145,0.41849825,-0.060638785,-0.4999434,0.28861645,-0.17564304,-0.083588906,0.3832949,-0.22805004,-0.2610496,0.06476484,-0.046638332,-0.33673355,-0.24261318,-0.32330874,0.20376109,0.21155313,0.030606005,-0.039058298,-0.16762467,-0.07138616,0.6042821,0.07872985,0.2908299,0.2559492,-0.096779995,-0.3462736,0.46046954,0.06821143,0.3981792,-0.053003047,0.1873376,-0.324011,-0.38808712,-0.3991608,0.062050562,-0.13362218,0.13735655,-0.015299141,-0.22375356,1.0812277,-0.02124708,1.2480575,-0.09815054,-0.3958258,0.10993479,0.5447621,-0.054231107,0.05885132,-0.44453642,1.05272,0.7708277,-0.115044855,0.028900895,-0.31673965,-0.22536895,0.26663327,-0.43609905,-0.11758141,-0.122202925,-0.60125095,-0.43480307,0.29282692,0.20526047,0.14239003,-0.1520064,-0.030048694,0.122926354,0.1471753,0.0865728,-0.49271324,0.122522935,0.118638135,0.34026554,-0.22066303,0.10273378,-0.48966983,0.36075878,-0.7387621,0.22384262,-0.40052313,0.041488178,-0.16751587,-0.3705469,0.13561168,-0.15246692,0.1135115,-0.3994944,-0.32575387,0.008263505,0.4120086,-0.015273622,0.079309806,0.72638303,-0.25618783,0.1808882,0.17425404,0.37611106,1.1888807,-0.4202573,-0.259351,0.17255415,-0.338331,-0.6000671,0.2957992,-0.24731223,-0.11641406,-0.17082019,-0.60297096,-0.4560223,0.14953755,0.31235933,0.15547301,-0.006796028,-0.5946023,0.15027292,0.38827315,-0.42112327,-0.096926995,-0.16516992,0.39293173,0.58529204,-0.18380828,-0.61893064,0.06001206,0.33678606,-0.34215614,-0.55054396,-0.09232939,-0.32593012,0.42436668,0.12512304,-0.28061664,-0.071730964,0.112083875,-0.53857106,-0.06095872,0.5101872,-0.25354388,0.06975827,-0.35310173,0.058463685,0.7552613,-0.040819697,-0.098406136,-0.57781345,-0.470967,-1.0912981,-0.42553744,0.2629809,0.25417492,0.051061515,-0.60998017,0.027397692,-0.29357502,-0.19025585,0.036710035,-0.2755554,0.35607508,0.19359955,0.6036099,-0.49707517,-0.9505054,0.3693431,0.24141042,-0.04426288,-0.4875662,0.5368915,-0.071040615,0.72693986,0.0021621925,-0.074467316,0.11436259,-0.7210811,0.23389395,-0.26493296,-0.119203486,-0.6479645,-0.22957002,972 -575,0.110166185,0.01570909,-0.84117603,-0.09465384,-0.21515045,0.06936568,-0.2836829,0.44272733,0.22134387,-0.3192449,0.10098626,-0.10140427,-0.11642276,0.2640048,-0.18409012,-0.7329979,-0.065882854,0.07202759,-0.38232556,0.598483,-0.4646143,0.24322748,-0.07918073,0.27322128,0.05379789,0.38187653,0.12653224,-0.24070457,-0.00014550345,-0.10427612,0.033972006,0.20048033,-0.36712703,0.1344375,0.08957903,-0.25732067,0.23950703,-0.3016474,-0.42832544,-0.66982406,0.32498237,-0.6920099,0.5514747,0.0956341,-0.27719697,0.44708943,0.049405508,0.0033793706,-0.26715407,-0.06828047,0.34480596,-0.28820997,-0.3322905,-0.16277437,-0.38911608,-0.76541144,-0.50510484,-0.106754474,-0.65454084,-0.07405671,-0.361526,0.16009894,-0.37413958,-0.13927297,-0.22196208,0.1744368,-0.6319718,-0.015584179,0.0628146,-0.31611425,0.08313613,-0.63479507,-0.10619893,-0.063969836,0.141139,0.14831424,-0.017027732,0.24603963,0.049041253,0.3949675,-0.009063401,-0.044691417,-0.59955746,-0.2806124,0.2566479,0.38911372,-0.07759583,-0.18482523,-0.056327175,-0.07609548,0.3060407,0.35081282,0.03763924,-0.17089696,-0.18402639,0.07668634,-0.33469138,0.45295662,0.504696,-0.23952726,-0.07784406,0.49813825,0.19154358,0.2669973,-0.36553636,0.12673858,-0.14706244,-0.42442527,-0.17193785,-0.010154724,-0.10518042,0.3910223,-8.174138e-05,0.3702514,0.80230683,-0.12377958,-0.0527729,-0.19353811,0.002604078,0.057098538,-0.2705378,-0.10667284,0.22104017,-0.42481998,0.17136621,-0.20220843,0.684837,-0.06735995,-0.79579085,0.3962764,-0.4145113,0.077552386,-0.14097941,0.75847065,0.6413188,0.535984,0.15622258,0.8845075,-0.43212837,0.15306608,0.015397782,-0.47170094,0.35400537,0.12953316,-0.021541135,-0.48617366,0.06924777,0.1792936,-0.11107598,0.11527063,0.59151655,-0.40303913,0.02585062,0.0653568,0.830386,-0.3280591,-0.10530964,0.57037824,1.1440991,0.79438835,0.07333947,1.0402391,0.2399745,-0.20731728,-0.029676054,-0.29423764,-0.9638732,0.19461921,0.35166496,0.14804076,0.3472405,0.16289215,-0.009742941,0.4823548,-0.20709983,-0.08086804,-0.13833098,0.36076418,-0.03953505,-0.2748981,-0.1802272,-0.1009218,0.089345016,0.051890977,0.22662939,0.3531239,-0.13837942,0.39800724,0.12801717,1.4563278,-0.045461852,0.06824656,0.1749306,0.517311,0.27804935,0.07084932,0.05043993,0.7536518,0.33770496,-0.010531281,-0.68561935,0.14358003,-0.27767918,-0.4932774,-0.13312893,-0.34051746,-0.19698794,-0.017821701,-0.2732993,-0.19117144,-0.08149327,-0.30101386,0.35914865,-2.7978675,0.019538967,-0.17542256,0.24349962,-0.052998006,-0.12957712,-0.025977036,-0.42864418,0.57144797,0.49675712,0.4219353,-0.4393246,0.51288843,0.7208436,-0.3285534,-0.07235471,-0.53852355,-0.1567734,-0.09194488,0.48956257,-0.10756911,-0.20825426,0.0689237,0.06831833,0.4842484,0.04078865,0.17597353,0.32054114,0.6021328,-0.13587764,0.33074233,-0.11149148,0.58806187,-0.119358905,-0.08099691,0.1692735,-0.37949356,0.44312865,-0.3957804,0.10861135,0.46325678,-0.22356436,-0.7322704,-0.21385661,0.06425988,1.0077192,-0.37986594,-0.5815765,0.34930712,-0.26148438,-0.18203616,-0.14850186,0.5318796,-0.21240173,-0.18864986,-0.61843354,-0.017833821,-0.25687006,0.106231384,0.0030090862,0.12921445,-0.4615275,0.75169885,0.04146817,0.7561466,0.36084896,0.10190284,-0.2079055,-0.2810921,0.07820722,0.5452064,0.321734,0.11045466,-0.34578535,-0.22536813,0.044041682,-0.21786198,0.058216807,0.53306174,0.59964997,-0.063674726,0.12701885,0.20869902,-0.28709435,-0.11487006,-0.32958603,-0.33964822,-0.096807756,0.10716132,0.37927303,0.693075,-0.1733613,0.38182217,0.19174193,0.32666588,-0.35220656,-0.45143372,0.46563217,0.66638213,-0.17328933,-0.15449367,0.60751826,0.4671087,-0.14725685,0.4756334,-0.6166156,-0.17036687,0.5367136,-0.23566937,-0.45267287,0.15496273,-0.28527465,-0.06488281,-0.7988946,0.24725571,-0.18262057,-0.6176439,-0.7023152,-0.1662267,-3.0193253,-0.020656396,-0.45823678,-0.20388296,-0.389888,-0.00295814,0.19227873,-0.48316702,-0.5191762,0.12779021,0.37690115,0.45070362,-0.13922592,0.03924322,-0.30357417,-0.19747797,-0.0562041,0.26067382,-0.15862694,0.14759292,-0.056187768,-0.4368577,-0.0044083,-0.081470355,-0.31996113,-0.035314284,-0.21817853,-0.06920241,0.043766025,-0.38672358,-0.116345815,0.7771265,-0.48804238,-0.10703675,-0.25679448,0.09017281,-0.116957135,0.27303356,0.00064912863,0.11159021,0.016861144,-0.015634581,0.09138928,-0.42190203,0.291404,-0.089705266,0.45759198,0.36586234,0.030452082,-0.15496643,0.5919797,0.469525,0.057605233,0.822905,0.3660604,-0.24655928,0.36044434,-0.3079764,-0.10488885,-0.6358303,-0.4284367,0.018078608,-0.37794098,-0.6070324,-0.16993068,-0.5165774,-0.85410655,0.3720956,0.06829781,-0.015146285,-0.02153259,0.3976719,0.39132696,0.038401235,0.06607348,-0.06703472,-0.23012137,-0.41233808,-0.13624422,-0.7798895,-0.35647175,0.16218092,0.9564404,-0.2999421,-0.33239597,0.10679563,-0.44884667,-0.0076745087,0.1753444,0.25948453,0.33691978,0.27108094,0.18891081,-0.6116692,0.65762436,-0.07986969,-0.026211854,-0.68811464,-0.1630442,0.43573228,-0.83546066,0.40105072,0.558238,-0.08560588,0.10211507,-0.7025115,-0.2275466,0.15287575,-0.17119971,0.41288307,0.21311192,-0.83399194,0.52766484,0.25380033,-0.110124946,-0.67687273,0.30018595,-0.24416174,-0.22676754,0.19870612,0.28124925,0.12426204,-0.03979615,-0.21231662,0.2525653,-0.2912504,0.36059904,0.099115714,-0.20718868,0.47989056,-0.048109863,-0.01493276,-0.8804775,0.028324971,-0.4262354,-0.08668627,0.38974735,0.14196567,0.30891237,-0.02128378,0.14423497,0.448796,-0.34342322,0.2632503,-0.29991955,-0.29787764,0.4690493,0.45015833,0.28486001,-0.41531911,0.60708016,-0.12948933,-0.16313548,0.21858966,0.075752445,0.4791067,0.07772623,0.43693304,0.055253167,-0.27704787,0.17382307,1.1071099,0.28489545,0.37623432,0.19593121,-0.13363573,0.46489996,-0.0043629683,0.06776574,-0.07349483,-0.4867685,-0.032462854,-0.07696949,0.25421903,0.42858785,0.21685186,0.46527913,-0.11563439,-0.07647399,0.10184089,0.24525563,0.287705,-0.7088297,0.44617623,0.2636141,0.63850725,0.62993205,0.1174363,0.14909792,0.5429072,-0.19739921,0.069366924,0.34916,0.097604886,-0.4794738,0.3831019,-0.59432757,0.4399162,-0.19804123,-0.053992808,0.3394471,0.047655802,0.44361755,0.86522853,-0.18959716,-0.0018970221,0.12389754,-0.27713522,0.09141111,-0.15180232,-0.11712862,-0.28404504,-0.3709726,0.4402664,0.5311957,0.34366164,-0.06302036,-0.038558695,0.27747077,0.04551712,0.23188855,-0.009649164,0.044100374,-0.07529458,-0.4166741,-0.2980053,0.47242537,-0.08783162,0.019573543,-0.09039472,-0.32910213,0.34421656,-0.27802375,-0.069691785,-0.0832986,-0.52708954,0.17038839,-0.11293013,-0.8879808,0.60730875,0.12462049,0.3367373,0.21524274,-0.01810311,-0.18386804,0.15119238,0.020387696,0.73780155,-0.23470439,-0.07733758,-0.3273775,-0.28722256,0.28924513,-0.3653571,-0.15432207,-0.15976523,0.063908875,-0.6206721,0.37973925,-0.33833724,-0.2628863,-0.09707825,-0.37814644,-0.028263075,0.39950174,-0.19624083,-0.25333217,0.11264382,-0.13213202,-0.16999663,-0.26624218,-0.38048792,0.053957354,-0.24227038,0.019359767,-0.2623421,-0.16234623,-0.021592498,0.27528644,-0.11110679,-0.032870818,0.2817022,0.17110617,-0.3141826,-0.2971027,0.22816499,0.5895415,0.02053849,0.06580356,-0.23611781,-0.43717474,-0.36065882,0.24134925,-0.18189017,0.34473655,0.28951007,-0.51271117,0.79746914,0.02916801,0.8747245,0.059897173,-0.41629162,0.25358638,0.7018139,0.26372203,0.19685592,-0.26510802,0.8808121,0.61925995,-0.26031324,-0.10152803,-0.49307474,-0.0947119,0.4275753,-0.27534404,-0.16526015,-0.002747689,-0.69894695,-0.14796713,0.3379789,0.05227836,0.051121067,-0.17240511,0.040078063,-0.040465888,0.42781025,0.2582393,-0.5764297,-0.24310994,0.2738035,-0.09419594,0.06819541,0.15628919,-0.49142244,0.31776476,-0.40376732,0.016513724,-0.4295484,0.008379638,-0.08819103,-0.035708904,0.15053026,-0.038152665,0.20468901,-0.24592051,-0.40849113,-0.029315531,0.45793253,0.23617052,0.49764222,0.60955924,-0.22296046,0.035786808,-0.09710632,0.5445219,1.1140705,-0.26414433,-0.15540065,0.4534488,-0.42407247,-0.6720889,0.066081874,-0.5490922,-0.0395695,-0.102227405,-0.51783115,-0.3834832,0.27015597,0.06699658,-0.3154993,0.086362734,-0.55747837,-0.21162836,0.15943919,-0.36966977,-0.24510863,-0.29876238,-0.16689089,1.0046381,-0.45212513,-0.2860053,-0.017509809,0.26408276,-0.28993973,-0.56516486,0.21272898,-0.32204765,0.40276363,0.18754579,-0.4101704,-0.0066066766,0.13980721,-0.43397978,0.22185217,0.3777585,-0.35925236,-0.028890137,-0.39374566,0.12137167,0.8055844,-0.09121263,0.09237993,-0.2786843,-0.5054094,-0.80347747,-0.29623923,0.2575295,0.0505797,0.00023022294,-0.5741872,0.18593721,-0.06255277,-0.04305576,-0.099724755,-0.5886083,0.5501653,0.13624847,0.3619387,-0.16623732,-1.082595,0.014993966,0.038755033,-0.37213463,-0.5887355,0.6117373,-0.28705975,0.90520924,0.13364114,0.098901436,0.09472398,-0.53403413,0.5050784,-0.48682073,-0.37288776,-0.60757476,0.061397623,974 -576,0.696466,-0.27398142,-0.6574375,-0.092446454,-0.2008667,0.24922805,-0.31292257,0.39232773,0.09783256,-0.49328643,-0.21453895,-0.2665091,-0.08746784,0.21080741,-0.20978095,-0.44218096,-0.010663271,0.07545359,-0.50367135,0.64460814,-0.1856229,0.3654149,0.06492133,0.41437045,0.29214168,0.398775,0.32355705,0.1272318,0.009393121,-0.29518232,-0.08073813,0.07917436,-0.64442974,0.12984057,-0.25269648,-0.42206374,-0.051730696,-0.4433294,-0.26689306,-0.8728968,0.30100983,-0.9793523,0.6055241,0.032459076,-0.28960314,0.33015123,0.3715237,0.16942906,-0.20257689,0.010787534,0.22793531,-0.108214036,0.07052752,-0.30941862,-0.318014,-0.5323629,-0.44988284,-0.16168258,-0.554313,-0.2714626,-0.31864756,0.1973414,-0.20314203,-0.013158611,-0.18548642,0.38537493,-0.4511034,0.015524311,0.26469937,-0.17067215,0.3158525,-0.7655902,-0.24353287,-0.18858244,0.30623814,-0.027667284,-0.12951714,0.35387844,0.25146556,0.31978688,0.24596305,-0.14402528,-0.27504423,-0.24685667,0.080655634,0.28867248,-0.09105643,-0.3358653,-0.23886923,-0.2496873,0.45625338,0.4238623,0.34283108,-0.23357245,0.04006203,-0.19199964,-0.22537325,0.47394744,0.4685142,-0.36169323,-0.08093313,0.34560373,0.6455003,0.2438543,-0.32542902,0.1343533,-0.05476095,-0.4120846,-0.18056083,0.26347458,-0.22529748,0.5765892,-0.13621022,0.23765948,0.73493475,-0.2038887,-0.057602305,0.02616887,0.039057374,-0.26834455,-0.18390763,-0.35510227,0.3658351,-0.4840596,0.22820608,-0.28371972,0.56889176,0.16792558,-0.52777416,0.20940015,-0.6649614,0.022549434,-0.06917865,0.47525945,0.5814977,0.5719223,0.16214512,0.8840006,-0.29809758,-0.06650026,-0.11646859,-0.16840497,0.0077621513,-0.23561546,0.0833397,-0.53882,0.18670058,0.001179627,-0.014699625,0.057671327,0.56293875,-0.35696816,-0.13312139,0.12779687,0.8260941,-0.31393746,0.1278424,0.92668974,1.1230546,1.0616494,-0.024789274,1.0231925,0.18858646,-0.36505264,-0.10002328,0.068726964,-0.5037882,0.26643986,0.47876647,-0.15975802,0.42425042,0.076560915,-0.06691908,0.2811134,-0.3534394,-0.08532065,-0.11383774,-0.04688242,0.10978164,-0.087279595,-0.43474227,-0.11858099,0.14355704,-0.047132473,0.31461477,0.21488492,-0.22897302,0.52593297,0.051455446,1.409651,-0.15469567,0.12126268,0.2183295,0.5806522,0.3898585,-0.13544886,0.015958173,0.40845686,0.27819368,0.111405455,-0.5374806,0.2289085,-0.2649731,-0.5712902,-0.03006238,-0.4362445,-0.09322506,-0.034380525,-0.34892124,-0.1837015,-0.15899219,-0.2572268,0.29856166,-2.735418,-0.13565587,-0.113141574,0.24235287,-0.26464182,-0.23275523,-0.07614814,-0.4811481,0.5392987,0.32708192,0.40785238,-0.48864153,0.42184153,0.57464266,-0.5298449,-0.107212365,-0.4333088,-0.007334918,-0.08804558,0.43727186,-0.093989,-0.18827547,0.028179994,0.26896554,0.47317606,0.20297097,0.18538015,0.27221438,0.429244,-0.08158833,0.50198513,0.026595814,0.43417308,-0.4202781,-0.15820067,0.47974816,-0.4116914,0.24657127,-0.19091609,0.17415397,0.5448488,-0.5590558,-0.8472523,-0.6885711,0.022859266,1.0502609,-0.33412233,-0.72166795,0.11045432,-0.2547313,-0.22849558,0.016173836,0.598599,-0.16289823,0.17862646,-0.6471687,0.040451195,-0.059110966,0.09977393,0.0635501,0.08917008,-0.5830553,0.85014075,-0.034270562,0.7192032,0.26681414,0.21338275,-0.3913901,-0.6166735,0.10772007,0.84678257,0.5416304,-0.052083116,-0.07215439,-0.12065884,-0.22588362,-0.16049881,0.24606776,0.804163,0.59184676,0.05586559,0.08235473,0.23870893,-0.0105369855,0.18424408,-0.3021089,-0.29996786,-0.21053664,-0.1213382,0.5047632,0.47238,0.07534606,0.32242015,-0.13517378,0.55393195,-0.14535831,-0.5329259,0.5869416,1.1781633,-0.18896411,-0.354771,0.61187637,0.53016824,-0.26321137,0.56177384,-0.796913,-0.2830742,0.46397033,-0.13887404,-0.64340514,0.20463693,-0.24810033,0.081595965,-0.857314,0.0972367,-0.3379362,-0.3452435,-0.4528925,-0.24406256,-3.3466184,0.19842108,-0.2244459,-0.094686136,-0.3231287,-0.30300814,0.21550186,-0.5992045,-0.6745004,0.16732237,0.014654769,0.84006375,-0.1693413,0.18403013,-0.23015162,-0.40999603,-0.3534495,0.26410142,-0.058376778,0.33924294,-0.19682212,-0.34078926,0.0060841525,-0.01332071,-0.43321282,-0.14515842,-0.44956964,-0.31105265,-0.20855805,-0.45081094,-0.19416046,0.6009499,-0.3100428,0.09221244,-0.15382206,0.089596935,-0.014775583,0.19804871,0.13045637,0.27707118,0.078259155,-0.06411028,0.08586942,-0.2711271,0.16091542,0.07910706,0.1953649,0.17363872,-0.252811,0.20573735,0.28691486,0.56492895,-0.09649276,0.78019655,0.26605824,-0.105872646,0.31108946,-0.20481108,-0.454859,-0.7110473,-0.18406537,-0.096656665,-0.2657369,-0.46877939,-0.124184616,-0.39101693,-0.87707317,0.5851097,0.11500404,0.433913,0.045320876,0.43947962,0.5545868,-0.26197436,-0.07196993,0.09793893,-0.17985432,-0.61869395,-0.22568622,-0.6095577,-0.41993517,0.037548818,0.70706075,-0.32770962,-0.091420926,0.28812346,-0.1537175,0.11610055,0.14548351,0.04450333,-0.0258688,0.53078634,0.01704611,-0.654967,0.7246519,-0.17577577,-0.13979803,-0.5161073,0.2902529,0.5071581,-0.60811245,0.4358088,0.4088017,0.033546872,-0.44300896,-0.6062493,0.064994976,-0.004104721,-0.17585301,0.44190398,0.28372636,-0.745141,0.31535414,0.13337073,-0.2140685,-0.7703175,0.6826792,-0.06766583,-0.41454622,-0.027635476,0.42551756,0.22760627,-0.08403043,-0.23889668,0.17530182,-0.37959597,0.18892278,0.17340027,-0.082062654,0.42314696,-0.24598299,-0.18839046,-0.7006144,0.09475134,-0.6283244,-0.27662143,0.4510834,-0.021389237,-0.017530022,0.26598826,0.114002444,0.3536651,-0.24075063,0.24349822,-0.230624,-0.13525663,0.48123652,0.50600517,0.51359594,-0.5735461,0.63293046,-0.0103749065,-0.13459086,0.19792248,0.14364484,0.263638,-0.00418124,0.60392463,-0.031854134,-0.20135723,0.16724539,0.3949153,0.3573902,0.31622773,0.15872549,-0.18402088,0.21130183,0.0745159,0.32514578,-0.02904354,-0.7415906,-0.13200149,-0.36800924,0.13209131,0.490917,0.12292702,0.3866693,-0.004598328,-0.20926504,0.118636355,0.17552121,-0.27345452,-1.0630789,0.3362732,0.21703339,0.84716886,0.49946627,-0.07071238,-0.029885769,0.69903046,-0.13027146,0.08725773,0.31804085,0.16721629,-0.4615881,0.60687125,-0.58968604,0.3373941,-0.057412803,-0.123050146,0.023132388,0.06171218,0.46093792,0.87880194,-0.23324712,0.041322898,-0.021152232,-0.4173387,0.30759546,-0.30914542,-0.024209337,-0.34451315,-0.3673508,0.65817696,0.36963013,0.36699864,-0.2233334,-0.05798379,-0.08652801,-0.167749,0.21712324,0.12150108,0.158452,-0.20514992,-0.590977,-0.29575792,0.5059966,0.008809797,0.14040777,0.0048842346,-0.37690184,0.1956795,-0.08018307,0.15596427,0.010511166,-0.70598274,0.16862737,-0.14408872,-0.41768694,0.43684608,0.008828585,0.21653572,0.22321442,-0.053591125,-0.05817614,0.22328965,0.12212875,0.7311769,0.028880758,-0.12650226,-0.47292438,0.16099174,0.1673021,-0.2852538,0.018964062,-0.103376806,0.2442394,-0.586016,0.47635362,-0.052335355,-0.25210455,0.10303084,-0.12191527,-0.13533534,0.6266113,-0.13919528,-0.12893218,0.02651206,-0.010793692,-0.3826611,-0.37477937,-0.25483784,0.0949179,-0.09469731,0.059269242,-0.29010454,0.012467989,-0.0577573,0.3785029,0.0338903,0.42041263,0.4118123,-0.110476986,-0.41037172,-0.11708941,0.19767281,0.33655673,-0.050022505,-0.1373084,-0.1660392,-0.7270743,-0.37452206,0.37885612,-0.021501148,0.2802759,0.18114655,-0.06643295,0.85242844,-0.03311772,1.1021186,-0.058347877,-0.47694638,0.20848179,0.71747875,-0.097944684,-0.1426249,-0.2359444,1.0275542,0.6425637,-0.10057817,0.0028258052,-0.21932538,0.022031387,0.07621869,-0.35829464,-0.07388829,-0.11869005,-0.6616196,-0.2235934,0.015085613,0.35276705,0.20193383,-0.09873704,0.079327516,0.30733186,0.06164523,0.29784372,-0.47160164,-0.4875632,0.46467286,0.13139616,-0.21732275,0.040685553,-0.4207546,0.4973213,-0.639126,0.002364644,-0.534311,0.16009833,-0.18093085,-0.23536423,0.18822765,-0.04226046,0.24692532,-0.47269008,-0.43204302,-0.20789799,0.32658345,0.3481513,0.20957018,0.49705476,-0.29946873,0.14536855,-0.071657196,0.58210087,0.8748182,-0.08582749,-0.05727332,0.29649287,-0.62888235,-0.6687876,0.24633329,-0.4448928,0.24147286,-0.008127292,-0.26020595,-0.42262462,0.31591755,0.13156855,0.014376053,0.047073517,-0.8364528,-0.1590592,0.20698777,-0.24912664,-0.12920368,-0.4410102,0.1510226,0.5831881,-0.2781104,-0.25143418,0.006317156,0.15509902,-0.10034788,-0.7899783,-0.08796493,-0.27896526,0.41747102,0.052859344,-0.23611464,-0.09380819,0.11599451,-0.54046714,0.29668722,-0.008575712,-0.30453867,0.0743683,-0.50503445,0.10760534,0.733995,-0.11913294,-0.09705211,-0.34821656,-0.5669104,-0.82504845,-0.45034045,0.16497764,0.072949424,0.15769067,-0.6623582,0.10235132,-0.4238135,0.08046969,-0.043180566,-0.3473502,0.4050543,0.21177652,0.5974864,-0.097980775,-0.8019193,0.28380817,0.06472143,-0.17180826,-0.5020984,0.47637865,-0.21121882,0.7819255,0.124931335,-0.020500403,0.2587604,-0.6462498,0.12297455,-0.19521162,-0.08395179,-0.6829993,0.018112894,982 -577,0.42879125,-0.177132,-0.5491368,-0.1756334,-0.41612896,0.25506592,-0.20720744,0.18784128,0.31755584,-0.4222545,-0.07453173,-0.26628885,-0.10962516,0.4766948,-0.16069922,-0.90634257,0.0008549946,0.18859985,-0.7123988,0.3547938,-0.5665569,0.40020567,0.13687585,0.39936706,-0.1148888,0.04608259,0.33255172,-0.115746655,-0.06180825,0.18420736,-0.28461283,0.10968555,-0.5163341,0.22801633,0.082507506,-0.21368702,0.056975212,-0.32306507,-0.18924887,-0.7673874,0.35112217,-0.70589113,0.48076895,0.09181881,-0.42429683,0.031029131,-0.004536765,0.33507854,-0.36582258,0.24047528,0.16967323,-0.28922638,-0.07712604,-0.19779019,-0.3750301,-0.44791242,-0.5551504,0.105744824,-0.55708164,-0.15283068,-0.16317323,0.24899459,-0.25137526,0.025880218,-0.2246186,0.2533713,-0.35181096,-0.19408242,0.424319,-0.13052072,0.067316614,-0.41753918,-0.09482862,-0.14001247,0.3281429,-0.010754517,-0.23146902,0.17519559,0.36398807,0.57669574,-0.009793659,-0.3302767,-0.27191016,-0.0028007796,0.21806607,0.46930096,-0.03697266,-0.20639233,-0.2450891,-0.0149691915,0.24020246,0.22060318,0.04726406,-0.41924405,-0.026686583,-0.14196539,-0.22986268,0.27672294,0.49437505,-0.43067402,-0.29707164,0.34725136,0.65602344,0.15357885,-0.105577864,0.22805007,-0.03929874,-0.7347073,-0.21310595,0.39474362,-0.15756781,0.42893448,-0.30240044,0.05548019,0.6490653,-0.14102277,-0.05919798,-0.12143193,-0.11272963,-0.030116934,-0.35227892,-0.10138713,0.21826339,-0.4247879,0.041714158,-0.23751597,0.9216633,0.19816507,-0.9356107,0.3697041,-0.54994315,0.21867196,-0.06603188,0.7236691,0.7929674,0.305497,0.15842521,0.94264615,-0.55651045,0.14936018,-0.12175054,-0.33820844,0.061411176,-0.124445714,-0.053847883,-0.5236486,0.19379473,-0.30097532,-0.02138718,0.096650675,0.34179306,-0.46966633,-0.10643594,0.034498077,0.6530836,-0.39689144,-0.08956415,0.8116931,0.8635291,0.97508246,0.1391052,1.5536562,0.4636328,-0.22276466,-0.015227245,-0.4223492,-0.6968999,0.15378809,0.26426846,0.3257727,0.43059868,0.054958306,0.018893285,0.41674748,-0.32451612,0.10710718,-0.24564032,0.064610206,0.05012006,-0.09064625,-0.27127066,-0.09594818,0.15406886,0.04525773,0.014307976,0.26987514,-0.12770574,0.39110562,0.10798519,1.1855613,-0.019390533,0.09909717,0.07167979,0.16835912,0.30296725,-0.111143366,0.023173472,0.29841802,0.44697472,-0.15652682,-0.6426867,0.074143834,-0.18062231,-0.44330093,-0.2928093,-0.23878013,0.054877043,-0.0039744503,-0.36670032,-0.13375506,0.040351503,-0.21691503,0.39088768,-2.1975532,-0.21394573,-0.17514575,0.30133864,-0.13403107,-0.308705,-0.29632118,-0.42647573,0.31861043,0.4120527,0.26377544,-0.6843295,0.38333383,0.30842274,-0.35723612,-0.113330945,-0.7056088,-0.12647179,-0.052782297,0.24117081,-0.054212652,-0.094305284,-0.11681003,0.19764563,0.6506586,-0.07474155,-0.1135854,0.19183062,0.5048894,0.15230213,0.55450267,0.125594,0.5729103,-0.20877253,-0.17880681,0.35618928,-0.47763327,0.3593271,0.29610762,0.14683504,0.3882494,-0.49844965,-0.71458066,-0.78639805,-0.48532838,1.1792582,-0.39228058,-0.4155052,0.3041392,0.019681424,-0.2856822,-0.018312931,0.3998244,-0.17136435,-0.14329608,-0.7619897,0.05610309,0.12429578,0.29884782,-0.08463287,-0.06441906,-0.19775571,0.88602835,-0.23213983,0.3783405,0.35614967,0.1237251,-0.2048848,-0.56635374,0.03675509,0.91398925,0.30040714,0.079736285,-0.18805742,-0.2819026,-0.17019153,-0.16346094,0.13018674,0.54970497,0.78444034,-0.023279494,-0.04649247,0.46933356,-0.15081657,0.072691426,-0.123122014,-0.29925635,-0.12642695,0.036223505,0.58580506,0.43012676,-0.18512727,0.43140024,-0.15304933,0.10848958,-0.1252613,-0.5765251,0.589596,1.0107844,-0.11086811,-0.35298043,0.49046716,0.4027364,-0.55496347,0.3081717,-0.55382437,-0.17084996,0.65374744,-0.07826735,-0.3747534,0.06228395,-0.32392773,0.08646943,-0.94327563,0.16964436,-0.19022825,-0.37068224,-0.6075058,-0.026348082,-3.3843312,0.21064381,-0.42130956,-0.017742392,-0.23080333,-0.042543795,0.22921468,-0.43106943,-0.59319484,0.01895173,0.0860978,0.38901582,-0.08949159,0.15406425,-0.39198,-0.14484715,-0.2291615,0.16214836,0.025673714,0.25245348,0.10787688,-0.27661592,0.18975098,-0.36998406,-0.43391725,-0.003205789,-0.55492157,-0.44715214,-0.31953403,-0.48698616,-0.32564119,0.6565925,-0.49740034,-0.12957731,-0.20157556,0.13405094,-0.100472756,0.3726761,0.18371531,0.3313757,0.13112393,-0.05865815,-0.3592679,-0.40890726,0.09947363,0.032040484,0.08000897,0.5172067,-0.065150455,0.17796263,0.40394565,0.7479142,-0.07085405,0.53138626,0.21394062,-0.07251786,0.27292427,-0.3640793,-0.14456289,-0.5882621,-0.3453283,-0.24056305,-0.47978804,-0.645575,-0.14858927,-0.31002516,-0.82671845,0.39835757,0.04994389,-0.055944223,-0.081652455,0.43815884,0.45488623,-0.03140049,0.12135533,-0.21411636,-0.3022847,-0.40000126,-0.58450836,-0.56364644,-0.5525008,0.14433488,1.3207953,-0.19315307,-0.07353949,-0.13884051,-0.27492037,-0.008518187,0.27515,0.1962129,0.2858685,0.29604298,-0.19851801,-0.58569354,0.39056945,0.05190335,-0.3029714,-0.6083183,0.07080998,0.677266,-0.69788927,0.7730428,0.25054938,0.1664896,0.17131786,-0.58926505,-0.3008876,0.18028425,-0.27871433,0.5231575,0.12302249,-0.4396545,0.53628665,0.3516623,-0.10190896,-0.8362092,0.15783775,-0.05249333,-0.38596085,0.1103056,0.3777456,-0.03359308,-0.014244592,-0.23746006,0.14948416,-0.44523355,0.12480913,0.3369429,0.06230518,0.10590722,-0.117198534,-0.32623324,-0.64540005,-0.081204705,-0.59496677,-0.11542972,0.044734124,0.0593444,0.13930851,0.04013071,0.0026475957,0.61423403,-0.30564436,0.20259807,0.0022093307,-0.08581502,0.17741121,0.4652388,0.19043647,-0.49087587,0.5153397,0.098304346,0.013535589,-0.20625627,0.21807253,0.4607145,0.34717122,0.41139787,-0.13345104,0.0011913946,0.2873342,0.7125899,0.08018148,0.3941047,0.18488964,-0.1907849,0.49225885,0.266259,0.16524975,-0.14691898,-0.13563918,0.0020514715,0.07617941,0.2520887,0.44329906,0.12153579,0.43898472,-0.05286775,-0.17307101,0.13706036,0.22182277,-0.042538386,-1.1348206,0.23617288,0.26504868,0.6350755,0.5220727,-0.031051252,0.06801726,0.415269,-0.3370029,0.08444152,0.19978221,-0.044009306,-0.41958067,0.5030776,-0.5886014,0.35108176,-0.39316693,-0.0076928013,0.0523413,0.26239967,0.38578084,0.77507937,-0.092526756,-0.0094622625,-0.057588868,-0.17059025,0.13526693,-0.2949622,0.0077398843,-0.4633586,-0.4318803,0.4621203,0.38684747,0.3815005,-0.4244595,-0.07948623,0.13163498,-0.0839112,0.070187666,-0.12255804,-0.012956555,0.067867495,-0.6113638,-0.25468335,0.62306243,-0.028695852,0.118958786,0.05730657,-0.32975864,0.27379182,-0.06607694,-0.03330481,-0.07563112,-0.7090341,0.01508603,-0.21076891,-0.47460437,0.18519807,-0.38235694,0.16332977,0.37415528,0.062345058,-0.49681512,0.29556847,0.0749478,0.85863477,0.14602827,-0.12698172,-0.38801834,0.24999537,0.22621265,-0.3704521,-0.024414381,-0.26685438,0.0703073,-0.580328,0.55556697,-0.14826672,-0.2854175,0.11383889,-0.11020521,-0.14464697,0.518153,-0.39474788,-0.19692436,0.17392002,-0.12479011,-0.20777453,-0.10156078,-0.40752468,0.3281341,0.0060990835,-0.077553436,0.10077883,-0.050906263,-0.15050162,0.4981627,0.16714562,0.19430886,0.25009927,-0.053805858,-0.5143066,0.10001323,-0.013885127,0.34057274,0.05150544,-0.23184313,-0.21316521,-0.41407305,-0.19869079,0.2826775,-0.20421934,0.16160922,0.12293941,-0.5662803,0.80542594,0.33883643,1.2145483,-0.0009107547,-0.27207214,0.031640716,0.5659607,0.22519334,0.04642139,-0.33622342,0.69285476,0.65567195,-0.16819887,-0.024845421,-0.31518587,-0.1241011,0.1833388,-0.24419358,-0.008506932,-0.013220592,-0.64642507,-0.31659064,0.096033216,0.16718046,0.1139851,-0.089681625,-0.07083182,0.056527387,0.03344438,0.38529927,-0.33465105,0.062825605,0.17376797,0.18841138,0.096128404,0.20751855,-0.2516921,0.5072692,-0.65951556,0.19897053,-0.3637893,0.0752709,-0.008128881,-0.15452473,0.19041075,0.0613232,0.22280441,-0.1806928,-0.20210125,-0.18917592,0.7809081,0.34017393,0.4245153,0.7765666,-0.21987942,0.11468899,0.20123528,0.5439178,1.4295871,-0.13144204,-0.04404695,0.18865061,-0.23557536,-0.5364254,0.2586868,-0.3516114,-0.04477316,-0.21107127,-0.43979383,-0.47536406,0.3519464,0.17342629,0.15262556,0.12214683,-0.4460612,-0.10524164,0.5525345,-0.3307704,-0.26324543,-0.31662172,0.41233826,0.7378184,-0.17114326,-0.37112132,0.019878937,0.2916875,-0.45628753,-0.5939893,0.00793285,-0.40475103,0.3297486,0.16698687,-0.2509287,-0.0012246573,0.37983012,-0.43330064,0.08731692,0.32187435,-0.24868083,0.16478446,-0.16244233,-0.20434393,0.956358,-0.1919312,0.06452122,-0.7942802,-0.55456775,-1.0134187,-0.18988214,0.5453996,0.1687756,0.09465225,-0.55944186,-0.26620224,-0.07600935,-0.113538966,0.15652272,-0.3970165,0.321287,0.12043779,0.45659703,-0.102428846,-0.8465162,0.05142965,0.1340288,-0.3385558,-0.4750344,0.48478928,-0.15299939,0.78045475,-0.0020302173,0.021328913,0.18745343,-0.5616634,0.39762232,-0.43160582,-0.25971636,-0.7610091,-0.014287195,985 -578,0.6055475,0.07436607,-0.686444,-0.20757923,-0.45231813,0.2263257,-0.33520073,0.07521135,0.2848251,-0.31323987,-0.14212711,0.00891013,0.08108105,0.26810136,-0.24140036,-0.75814867,-0.045172993,0.105579056,-0.59686536,0.5290866,-0.32984465,0.35393238,0.018930921,0.36359754,0.24247302,0.4733382,0.30463496,0.11894183,0.051957607,0.06843672,-0.15985057,0.06501978,-0.6373687,0.19863561,-0.2905281,-0.49763516,-0.119514585,-0.31356892,-0.35675505,-0.6876598,0.4657525,-0.83717763,0.53668046,0.019077608,-0.39963204,-0.06455445,0.22225669,0.1698607,-0.28913063,0.17949966,0.01971626,-0.38358143,0.06822152,-0.20724241,-0.5311325,-0.523621,-0.62193644,-0.19586979,-0.787831,0.008236455,-0.22856264,0.30397555,-0.22124788,0.026595797,-0.19284287,0.30160373,-0.39921075,0.16561916,0.37421212,-0.26988998,-0.011623911,-0.46273473,-0.09849109,-0.06904842,0.29537958,0.22805741,-0.2109795,0.32137713,0.19258627,0.55087906,0.30612317,-0.26014692,-0.38420886,-0.109490834,0.14353879,0.2936673,-0.022910254,0.044162642,-0.46316412,-0.2097357,0.40898767,0.5087698,0.011124496,-0.2641699,0.11423869,-0.29440573,-0.0021061492,0.43437475,0.5391882,-0.47619337,-0.21514939,0.37170747,0.5485427,0.07730513,-0.2798388,0.29888692,-0.052251656,-0.4643522,-0.22670223,0.24649382,-0.049619813,0.50193304,-0.02568254,0.15843499,0.5961785,-0.14217113,-0.101245485,-0.12622061,-0.08261429,-0.023874376,-0.33467942,0.06355909,0.2954275,-0.3863103,0.12772387,-0.12532519,0.50503594,0.102255665,-0.7046571,0.2937286,-0.61464405,0.12566201,0.08395589,0.6825394,0.6990139,0.5636334,0.05102859,1.0446604,-0.31989434,0.06119344,-0.2405453,-0.12849878,0.10921903,-0.1631476,0.17231478,-0.43872085,0.21984594,-0.09844262,-0.03220382,0.067247465,0.48454505,-0.30949757,-0.20259951,0.038753193,0.745262,-0.377088,-0.048293263,0.9278716,1.092173,0.93773466,-0.015403965,1.0830497,0.25282744,-0.1990544,-0.23982337,-0.102977924,-0.65778047,0.024184512,0.29368833,0.19361274,0.6355996,0.1620148,0.09765009,0.22136705,-0.3006758,-0.07925383,0.09018547,0.094321765,-0.024903292,0.020481063,-0.5221321,-0.18238914,0.12678494,0.13329217,0.2370273,0.20002429,-0.17804813,0.5100313,0.101679035,1.2131319,0.03227358,0.16356006,0.22910914,0.4508604,0.44914347,-0.20851637,-0.107318595,0.326303,0.20178518,-0.06485221,-0.5151272,0.07144047,-0.3260453,-0.44258323,-0.15686211,-0.48466486,-0.20306025,-0.102474384,-0.43304604,-0.14574257,-0.010039644,-0.48934454,0.4034432,-2.5416577,-0.175442,-0.117937885,0.36953932,-0.25715777,-0.19522026,-0.36631155,-0.36550972,0.27004513,0.37226728,0.18296501,-0.4198994,0.46959573,0.5247579,-0.45467848,0.022665229,-0.5714269,0.15085034,-0.16943255,0.31342342,-0.12908529,-0.08014495,-0.2571333,0.45540613,0.7419513,0.18299265,-0.009346298,0.294986,0.3790962,-0.16500606,0.50998026,0.012729688,0.51385134,-0.45210034,-0.1484231,0.46921307,-0.4980195,0.35181496,-0.08912299,0.17442732,0.44296715,-0.61068434,-0.83378184,-0.5533885,-0.17048611,1.109682,-0.5102972,-0.50308365,0.2982936,-0.50771743,-0.17656302,0.056583732,0.6358715,-0.08295314,0.21069884,-0.57574475,-0.07456018,-0.13929245,0.16919889,-0.07737366,0.0756806,-0.3932577,0.81397146,-0.21320884,0.5552836,0.20014034,0.25982472,0.03384052,-0.58610755,0.2414716,0.6270065,0.3895795,-0.033508588,-0.1362269,-0.16357136,-0.051107053,-0.12613206,0.14331888,0.6967415,0.6517619,-0.10215644,0.12569329,0.33866164,-0.06068768,0.039792933,-0.19746566,-0.2093173,-0.14469428,-0.007196154,0.3925217,0.7476206,-0.046181638,0.079170704,0.004396162,0.38130277,-0.17263433,-0.6224796,0.46453014,0.6668369,-0.12555143,-0.3414442,0.7103539,0.57748204,-0.43076524,0.4636834,-0.82057476,-0.37334704,0.68676436,-0.043796454,-0.45243213,0.09760066,-0.43721962,0.13079941,-0.8232922,-0.05916089,0.0940619,-0.29362437,-0.30065036,-0.28294286,-3.3522618,0.13354585,-0.1625571,-0.05104514,-0.15619496,-0.26568562,0.30153862,-0.48435968,-0.6993221,0.08354501,0.080060266,0.47683114,-0.32894215,0.21463369,-0.30599254,-0.29723573,-0.35542288,0.361526,0.16712871,0.34532148,-0.22658436,-0.31727317,-0.122958146,-0.25207925,-0.5801848,-0.14328942,-0.44571644,-0.26814705,-0.13868509,-0.38207123,-0.2640778,0.62756246,-0.32556462,-0.014299431,-0.3052104,0.05160173,-0.072618194,0.18468173,0.26006523,0.27751458,0.24875906,0.0476903,-0.1751992,-0.3112628,0.29367998,0.034429006,0.25348625,0.37385368,-0.21289156,0.18215285,0.3612948,0.54863006,-0.15802884,0.92482555,0.13138732,0.06465273,0.35670534,-0.16372694,-0.5187924,-0.7806244,-0.1766695,-0.20161572,-0.4237767,-0.5302214,-0.2444614,-0.53303665,-0.95791584,0.36287138,0.1383699,0.428798,-0.1831847,0.28467205,0.52243775,-0.23638514,0.010489017,0.020304991,-0.42752582,-0.51207954,-0.4875903,-0.54778117,-0.536724,0.11324764,1.0247228,-0.2678069,-0.11122246,0.0913765,-0.37159616,0.08110734,0.35137245,0.25556248,0.027671639,0.686122,0.12738486,-0.5063785,0.5131507,-0.24122879,-0.23239657,-0.62974864,0.052341998,0.570317,-0.701908,0.604723,0.33479777,0.17398487,-0.092564054,-0.56020665,-0.04875642,-0.047564507,-0.19896679,0.59615433,0.30709007,-0.69101185,0.4664692,-0.1901319,-0.05701373,-0.69320804,0.54687876,-0.16430554,-0.2901925,0.02621408,0.49885908,0.07763199,-0.13994677,-0.011688067,0.074369274,-0.4311683,0.27257422,0.46237296,-0.07528905,0.50412506,-0.09482499,-0.30020508,-0.8064126,-0.005315312,-0.6006614,-0.17890498,0.32817125,-0.034040205,0.046229754,0.08934294,0.015647369,0.49053693,-0.2917164,0.24329622,-0.19278936,-0.209892,0.5049879,0.42237732,0.49681225,-0.59560883,0.62996477,0.14064614,-0.1676409,0.12914956,0.1852813,0.36609298,-0.020002205,0.51830363,-0.008782889,0.046034086,0.014999713,0.44995525,0.20871006,0.1418504,0.19547378,-0.25120568,0.50305885,0.10963873,0.071948394,-0.2989399,-0.56592494,-0.055715345,-0.23618433,0.07285624,0.38142696,0.20586756,0.47826275,-0.06600119,0.032456215,0.26354936,0.107334696,-0.31561106,-1.0407717,0.1214562,0.30631867,0.6424724,0.59832436,0.08474612,-0.04442841,0.40526083,-0.21258986,0.05652799,0.49558148,0.087779775,-0.20374057,0.46072772,-0.5170248,0.6232087,-0.16200776,-0.15746143,0.24257691,0.39505857,0.5876584,0.9510814,-0.00072483503,0.024698367,0.05226911,-0.16554357,0.10698482,-0.1553903,-0.039334565,-0.5866786,-0.42320323,0.58666694,0.4263281,0.5276625,-0.33785206,-0.13264322,-0.024681283,-0.12327331,0.14300816,-0.05734047,-0.08431702,-0.20081748,-0.5699343,-0.34883386,0.42226484,-0.16986667,-0.06104087,0.26025277,-0.33787873,0.25721666,0.038271684,0.12046606,-0.0041379207,-0.7814098,-0.08574336,-0.37386888,-0.58734083,0.41675326,-0.2849041,0.3645142,0.28579292,-0.15011522,-0.32953623,0.18934958,-0.008315384,0.86425155,0.1347182,-0.14974646,-0.38350886,0.17023349,0.3358772,-0.44195598,0.09586502,-0.1729647,0.21456215,-0.46209168,0.5436035,-0.32612917,-0.16425742,-0.033689406,-0.19470285,-0.06012099,0.55500513,-0.1291807,-0.14284185,0.17138478,0.041887093,-0.36671552,-0.17595494,-0.44854075,0.18238571,-0.049556702,-0.1577526,0.055843957,-0.056126278,0.08782791,0.28493312,0.08691992,0.25075886,0.17266965,-0.22932342,-0.31978136,0.14345993,0.15083309,0.37545416,0.08360813,0.034672022,-0.04383998,-0.46506503,-0.39826378,0.4701245,-0.12432189,0.056345385,0.18091823,-0.073051475,0.854791,0.27857986,1.057541,0.15453847,-0.25724056,0.20079306,0.5310564,-0.020557728,-0.03512024,-0.23854852,0.9337086,0.5613973,-0.25337315,-0.18412177,-0.25506884,-0.102800325,0.013778567,-0.34922546,-0.09365247,-0.19383702,-0.6171833,-0.20674752,0.0013272102,0.20224759,0.20152664,-0.20968018,0.002206513,0.08647905,0.17363136,0.49603373,-0.4534534,-0.29824498,0.5775651,0.109729014,-0.0045688194,0.14220627,-0.28557512,0.49332193,-0.6518348,0.045569386,-0.60619843,0.052460197,-0.1977632,-0.3707598,0.18146567,-0.039482765,0.2851501,-0.4342164,-0.32211548,-0.2755207,0.5166729,0.20513238,0.34998924,0.63038003,-0.23111884,-0.016494486,0.017063107,0.52296907,1.1183461,-0.16705452,-0.053366918,0.3331852,-0.30849558,-0.6820563,0.14978568,-0.6566884,0.11143889,-0.09858525,-0.41506442,-0.29977512,0.24370877,0.003966791,-0.10955792,0.19337668,-0.7482971,-0.17973064,0.16939528,-0.18739246,-0.15475985,-0.2746734,0.2531139,0.681543,-0.16515872,-0.35726324,0.14417353,0.17537369,-0.19817106,-0.6664478,0.16224857,-0.15585652,0.2706341,-0.01031218,-0.45555696,-0.09757247,0.3306667,-0.5663751,0.08319696,0.22121854,-0.23555197,0.060524307,-0.3917606,-0.07194022,1.1202776,0.002224986,0.08220607,-0.42074904,-0.6233405,-1.1305509,-0.32296976,-0.084104754,0.14946114,0.07244225,-0.42628813,-0.043226086,-0.36857727,0.04008574,0.12675445,-0.46133274,0.42616585,0.21905184,0.6132301,-0.13764815,-0.8346073,0.18798266,0.1533129,-0.42573357,-0.41221985,0.67738277,-0.18116891,0.71269876,0.16150737,-0.01199744,0.079864964,-0.6932129,0.42111656,-0.2636867,0.0079891,-0.7447525,-0.08191271,988 -579,0.39737627,-0.06984296,-0.6319839,-0.07958142,0.0023854652,0.12158142,-0.25983196,0.38928095,0.24208392,-0.42327914,0.0033413384,-0.0019108994,-0.12149109,0.19874263,-0.14866503,-0.37821516,-0.089645915,0.22747609,-0.42039922,0.387405,-0.33820227,0.24586901,-0.18517281,0.3442903,0.05243272,0.1900864,0.13034163,0.014789795,-0.28609747,-0.08700101,0.15249753,0.5146982,-0.5194616,0.15842625,-0.11284961,-0.24426691,-0.038788237,-0.3620912,-0.37958315,-0.74780357,0.36650175,-0.8291021,0.5829238,0.0790741,-0.3082559,0.2849453,-0.0044740713,0.21786939,-0.23390846,-0.015168761,0.11810557,-0.15882821,-0.19128187,-0.2540765,-0.11678307,-0.2608223,-0.51028746,0.05105633,-0.5430235,-0.01292137,-0.22120534,0.23474313,-0.38983923,-0.047728006,-0.18178903,0.6078469,-0.42378524,-0.023959499,0.18428656,-0.023891946,0.28113025,-0.70404357,-0.18028879,-0.07711567,0.13543491,-0.21604298,-0.24845669,0.23684968,0.3455701,0.3782443,-0.24745396,-0.19724156,-0.42348942,-0.019444669,0.17344253,0.455465,-0.26843178,-0.5157731,-0.15729503,-0.026388738,0.32296735,0.11331714,0.116881594,-0.32459942,-0.06534692,0.19879189,-0.18176186,0.5092119,0.58353186,-0.078651205,-0.025050154,0.35182735,0.6155262,0.05441091,-0.038163226,0.020976437,-0.008257354,-0.4199086,-0.14031284,0.13632557,-0.13081887,0.4449139,-0.09720007,0.106990024,0.4797509,-0.37593243,-0.12739375,0.2620633,0.12381734,0.08527713,-0.20968412,-0.34243187,0.2511804,-0.5477327,-0.026801262,-0.21560717,0.6458621,0.07747246,-0.8185636,0.34276262,-0.4561431,0.09724275,-0.15686497,0.62620395,0.7088254,0.47562104,0.3290393,0.6916924,-0.536552,0.009294386,0.023066701,-0.4424684,0.18024829,-0.12818937,-0.2038927,-0.5306851,-0.18437532,0.11449548,-0.17535107,0.13267574,0.4967573,-0.5625185,-0.13499554,0.013624064,0.5100659,-0.31655547,-0.10427996,0.6979452,1.1536204,0.91382444,0.13473384,1.2323002,0.21859913,-0.16106133,0.17632096,-0.27738452,-0.9164805,0.4948259,0.30848154,-0.7160843,0.40335354,0.1105361,-0.16273448,0.34314507,-0.50552267,-0.21606787,-0.073678136,0.17127617,-0.06021068,-0.24382485,-0.42050052,-0.27534026,0.08623731,-0.028585915,0.14558421,0.33672282,-0.46692902,0.19690903,0.09340233,1.0955598,-0.10759168,0.07580776,0.07376566,0.3359535,0.1932636,-0.22309598,-0.21377985,0.48954466,0.42574188,0.16881596,-0.5178567,0.1063055,-0.30076155,-0.444028,-0.21344411,-0.29814386,0.16380103,0.049270388,-0.38444433,-0.098897755,-0.14648251,-0.51579374,0.32981387,-2.6052606,-0.13157818,-0.0909039,0.282088,-0.11945922,-0.27432278,-0.25166878,-0.45385715,0.31604558,0.3727674,0.47350508,-0.5884529,0.21288557,0.33079672,-0.541941,-0.16288936,-0.5691923,0.006821411,-0.16971596,0.27967173,0.059813797,-0.22801235,0.20153429,0.18174076,0.5069751,-0.16452505,0.027441999,0.40298897,0.34222123,0.05913335,0.2659683,0.071831085,0.48142514,-0.39386615,-0.33505026,0.4018043,-0.3968708,0.11915167,0.05713541,0.105981566,0.32439852,-0.43945155,-0.97234243,-0.56135714,-0.10720483,1.381961,-0.21979155,-0.47387537,0.20408556,-0.26425833,-0.44743973,0.018611947,0.42758483,-0.25518972,-0.04213237,-0.98549175,-0.040926505,-0.07733606,0.20975389,-0.055398047,0.1693273,-0.457957,0.48696852,-0.12559773,0.48800603,0.41943765,0.15323862,-0.54860556,-0.56861895,0.08934564,1.0878171,0.3563342,0.18420209,-0.2874395,-0.17622355,-0.18703543,0.088355765,0.2114941,0.48946384,0.8202172,0.008178307,0.15625408,0.30747563,0.048522312,0.12170317,-0.1721424,-0.3358334,-0.07888914,0.050366737,0.7070145,0.49477845,-0.052563675,0.38793808,-0.01599838,0.30599928,-0.11536308,-0.44025788,0.39618784,1.0502115,-0.11742823,-0.3945414,0.6119142,0.48324686,-0.40041837,0.6630605,-0.5738061,-0.32897896,0.3666008,-0.21175085,-0.5041871,0.22094245,-0.3627722,0.2754884,-0.9145544,0.37250385,-0.2815036,-0.5952452,-0.5143176,-0.06645387,-3.223515,0.11732979,-0.24188301,-0.23694155,-0.16440773,-0.13639703,0.38164207,-0.5857345,-0.5749301,0.10525168,0.14080687,0.6948854,-0.23332916,-0.03919179,-0.1570843,-0.33319554,-0.13809764,0.13808446,0.33250633,0.21032512,0.064303875,-0.45456848,0.03968825,-0.23424013,-0.3487877,-0.1292206,-0.46988073,-0.40180993,-0.1794935,-0.6744532,-0.34318927,0.5877613,-0.3422582,-0.06420877,-0.21331473,0.09996683,0.1599582,0.48265886,-0.011533166,0.17536023,0.11802528,-0.17436552,0.014180963,-0.26415786,0.3793754,0.00859423,0.26009846,0.525086,-0.23036668,0.16247618,0.6540059,0.69130355,-0.0074263983,1.0472487,0.57090145,-0.05183236,0.28463224,-0.33019394,-0.22725241,-0.5486763,-0.31509712,0.070314474,-0.5879609,-0.31018215,0.04260816,-0.31308603,-0.90168655,0.62489223,-0.3415294,0.18504612,-0.057734486,0.41376045,0.38380167,-0.09432272,-0.018271694,-0.16100469,-0.24032585,-0.39262396,-0.18050909,-0.6894477,-0.44661823,-0.008366482,0.98754066,-0.16341956,0.1314685,-0.04958834,-0.053367954,0.07462401,0.06364636,0.10780175,0.3400552,0.34875587,-0.0093641365,-0.5071475,0.202713,-0.22840984,-0.16083963,-0.691587,0.068959944,0.6632427,-0.6233379,0.5671697,0.47871202,0.09803035,-0.17335367,-0.7428193,-0.15082118,0.22725046,-0.1715738,0.66677314,0.4062861,-0.83578646,0.51005614,0.5091068,-0.3291292,-0.67057073,0.558686,0.11030524,0.04636352,-0.11228614,0.47356704,-0.2230402,0.02859412,-0.1673393,0.19008832,-0.24051104,0.25058183,0.17474641,-0.098722145,0.448194,-0.123889565,-0.19073625,-0.6734759,0.059736036,-0.5968852,-0.20790555,0.23540698,-0.0046794456,0.111509025,0.16898713,-0.016661981,0.60460645,-0.29753122,0.034097828,-0.12870267,-0.33812752,0.4253748,0.5486381,0.51436555,-0.2644166,0.5474013,-0.0068416554,-0.08038386,-0.2966906,-0.07969404,0.60004413,-0.041919257,0.3804265,0.100801595,-0.10956448,0.30969158,0.8395389,0.16527459,0.56352156,0.012470535,-0.14377125,0.05342715,0.095424466,0.24353197,-0.045522958,-0.4049671,-0.224983,-0.19985251,0.21521322,0.49357924,0.09609372,0.33485273,-0.25092062,-0.28041258,0.12554593,0.3057315,0.08926314,-1.1303312,0.48367134,0.2019658,0.63179624,0.369198,0.11850756,0.12696555,0.41884905,-0.29698083,0.09376874,0.38209042,0.044146042,-0.6381945,0.5420167,-0.83814824,0.451125,-0.06542015,-0.031457905,0.080934525,-0.15951385,0.4080837,0.87331456,-0.10626387,0.20812365,0.012440483,-0.2631553,0.2893386,-0.3680931,0.26587132,-0.48339668,-0.2690675,0.7462819,0.39345598,0.37216058,-0.1764295,-0.11626575,0.24984029,-0.23817644,0.1824362,0.01129627,0.09024093,-0.1277037,-0.65625703,-0.17051153,0.4134319,0.36270127,0.06341945,-0.017872317,-0.022583965,0.1742449,-0.08682399,-0.07745762,-0.1367313,-0.55231106,-0.087432265,-0.25386256,-0.46065775,0.4775097,-0.2794486,0.15975468,0.34827787,0.14314468,-0.51033086,0.19755496,0.219565,0.7268415,-0.02907546,-0.24591729,-0.30332989,0.33981827,0.25192842,-0.16244586,-0.102548644,-0.489924,0.14761427,-0.6382412,0.468455,-0.2909725,-0.41677842,0.07654818,-0.10353415,0.0044152653,0.560543,-0.24280477,-0.21385255,0.0096488,-0.0664305,-0.22229706,-0.32187918,-0.24291325,0.06713439,0.114312254,-0.10464753,-0.16415913,-0.09220083,-0.14310919,0.36889032,0.071561165,0.27662373,0.47089124,0.22028562,-0.42984346,0.023057107,0.14120288,0.5963393,0.11992866,-0.094966725,-0.53953254,-0.32924947,-0.23170824,0.18199314,-0.12466495,0.28599912,0.18299143,-0.26682228,0.8043371,0.006954891,1.1774261,-0.044107046,-0.44172302,-0.0890022,0.6341594,-0.08067741,-0.2756141,-0.40135297,1.0369812,0.66025364,-0.17688969,-0.17883602,-0.37847605,-0.05382795,0.10641485,-0.25754958,-0.36961725,-0.095215194,-0.6024796,-0.16179745,0.26590994,0.3576983,0.021552483,-0.012034403,0.1501696,0.23785874,0.08555697,0.16963466,-0.37734106,0.11081868,0.22881047,0.31883684,-0.024310082,0.15016262,-0.40549988,0.3784655,-0.57889855,-0.06504712,-0.19189094,0.10493789,0.0017965914,-0.48786908,0.2176839,0.06074549,0.30297533,-0.100473784,-0.1777697,-0.1229552,0.393792,0.037775278,0.14976327,0.6031876,-0.22285604,0.16427946,0.049631663,0.4329557,1.0047894,-0.12723373,-0.035078175,0.23893033,-0.2792189,-0.81512564,0.29136258,-0.46785426,0.29672214,-0.16336283,-0.3369592,-0.4983477,0.2546616,0.21972314,-0.059064362,-0.039331194,-0.51729304,-0.15324871,0.19389032,-0.38415122,-0.24136195,-0.28268525,0.030133145,0.59168905,-0.25918612,-0.34330043,-0.03276874,0.3691213,-0.21040222,-0.474075,0.02520827,-0.3244648,0.27426448,-0.003356278,-0.29011455,0.03814372,0.12902412,-0.3759888,0.32522577,0.24287881,-0.2677873,-0.00045657266,-0.18280932,0.04567355,0.54037863,-0.22572635,0.17725968,-0.46076584,-0.49489787,-1.0370022,-0.098882094,0.33397737,0.03679953,0.06818562,-0.8702011,0.0644919,-0.10384226,-0.11538733,-0.18167417,-0.38168246,0.37899408,0.0510841,0.4669327,-0.11740399,-0.82711935,0.030932155,0.17317878,-0.16079691,-0.52873695,0.54214686,0.0037183675,0.86443716,0.15996958,0.23290594,0.3565847,-0.58667654,-0.03294491,-0.2348348,-0.25740376,-0.60705817,-0.061279807,989 -580,0.53516424,-0.24805234,-0.46994945,-0.19152382,-0.22815712,-0.2505578,-0.119354345,0.4842076,0.17470898,-0.48797157,-0.13540825,-0.24765904,-0.07346316,0.39623612,-0.2611073,-0.8713537,0.07188882,0.023443414,-0.344472,0.5767328,-0.48212165,0.31729868,0.060269333,0.29763365,0.24758247,0.3210351,0.24200521,-0.24121498,-0.07891261,-0.29821476,0.0320674,0.12922238,-0.6046315,0.2851145,-0.021727579,-0.44023743,0.036254406,-0.5157595,-0.32449165,-0.6735067,0.08805769,-0.6512218,0.4302988,0.07952094,-0.23381433,0.04688188,0.21829946,0.40309685,-0.31713292,0.015226149,0.16461638,0.13228872,-0.18061234,0.052986894,-0.08241677,-0.40604204,-0.6139621,0.12775913,-0.34161457,-0.16287722,-0.23361446,0.20080437,-0.41824722,0.094599426,-0.10396697,0.64642704,-0.42254052,-0.110370435,0.38934636,-0.1372641,0.29112408,-0.45541844,-0.095760986,-0.22493836,0.0559327,-0.10405982,-0.25800458,0.3453136,0.29825714,0.47596353,0.14452264,-0.26691398,-0.22612095,-0.1504507,0.24691255,0.51400405,-0.26322776,-0.6492495,-0.2825887,0.055839427,0.1289324,0.13272662,0.1449742,-0.43449873,-0.02935925,0.20418896,-0.38128787,0.39896637,0.38302845,-0.39595574,-0.14812985,0.27418256,0.44114652,0.2532976,-0.026341524,0.046491057,0.120620124,-0.6421062,-0.2777544,0.14290729,-0.12454421,0.45976013,-0.14425775,0.16239575,0.7369262,-0.22977833,0.12728027,0.11000983,-0.050989896,-0.037019305,-0.42935362,-0.27891034,0.25095657,-0.5225293,0.16243987,-0.22017412,1.0543177,0.22595032,-0.7562815,0.3587176,-0.73643726,0.17356277,-0.2173877,0.5609135,0.59056896,0.39084932,0.2993596,0.66208166,-0.43421677,0.035885274,-0.17044891,-0.38831452,0.05281065,-0.10340673,-0.0374196,-0.4090025,0.06540213,0.008332781,0.013671922,-0.025945405,0.34870172,-0.5757717,-0.06279944,0.035419922,0.97429115,-0.31649718,-0.1354076,0.69456977,0.91346693,1.0221401,0.13792406,1.3092091,0.1785369,-0.14121422,0.260289,-0.1773869,-0.6331636,0.26123935,0.45500728,-0.19822195,0.22835088,-0.0053447485,-0.107901,0.4943471,-0.29153237,0.16417198,-0.24594927,0.39091533,0.033277206,-0.19304647,-0.38285843,-0.29206815,0.06247727,-0.13151436,0.02325273,0.3151712,-0.1169562,0.21456695,0.01828757,1.6352426,-0.14110295,0.21049829,0.16054973,0.4402053,0.12287283,-0.10375763,-0.02844452,0.010660999,0.3183312,0.13378632,-0.6586966,0.18485999,-0.20187803,-0.56057185,-0.1071356,-0.28784758,-0.1774605,-0.118857756,-0.49370524,-0.07462011,-0.09968463,-0.11474669,0.5740243,-2.4409442,-0.22738771,-0.09253515,0.19588408,-0.4022129,-0.4083598,-0.056959648,-0.5185022,0.48521972,0.2834511,0.6376999,-0.7354013,0.55829674,0.46974462,-0.36688995,-0.20784184,-0.66055065,-0.19311105,0.017517904,0.26252893,-0.0019264136,-0.11907421,-0.03720363,0.19134174,0.50286716,-0.06783376,0.08939605,0.19235267,0.29163265,0.048117924,0.7160844,0.030609906,0.4830398,-0.39520317,-0.15757297,0.30573124,-0.435922,0.35805982,0.046969645,0.08974495,0.2625498,-0.51284075,-1.0648906,-0.7242827,-0.47300795,1.0322882,-0.2280627,-0.30208492,0.32085535,-0.1366106,-0.05155158,-0.026854875,0.29523605,-0.029607031,0.13165888,-0.84714806,0.18003082,-0.16348752,0.13228668,0.030227762,-0.03635055,-0.3233234,0.72267866,-0.051063847,0.40278697,0.5380416,0.11271759,-0.3198529,-0.51675236,0.053826284,1.118719,0.45149565,0.21067853,-0.22340329,-0.27685997,-0.39080566,-0.16952059,0.08221833,0.62413025,0.8243655,-0.02406265,0.09610156,0.28024593,-0.009763094,0.04790028,-0.046379883,-0.4226374,-0.1218899,0.036981333,0.6885948,0.60257643,-0.20863427,0.38547844,-0.12763855,0.3284242,-0.11002219,-0.42075852,0.5693461,0.9059786,-0.20555337,-0.22285993,0.62673706,0.5069652,-0.1587795,0.4342511,-0.52428526,-0.31532878,0.5439283,-0.066251315,-0.37904906,0.17499825,-0.39666292,0.06545726,-1.049904,0.4014112,-0.52783155,-0.31614333,-0.50299686,-0.25198877,-3.886101,0.29820874,-0.29790068,-0.050631933,-0.2290161,-0.015812848,0.33056238,-0.604447,-0.71201974,0.12968285,0.0739082,0.6031392,-0.041507956,0.22190277,-0.20339414,-0.11672156,-0.19572915,0.15845807,0.11427301,0.28709793,0.12786914,-0.42601904,-0.15171441,-0.20565966,-0.47700745,0.2600948,-0.58536845,-0.6828564,-0.18208395,-0.69393694,-0.46917483,0.79922974,-0.44496045,0.044303488,-0.06629963,-0.0076134354,-0.2506582,0.42728826,0.08250664,0.12658438,-0.000114770875,-0.08233142,-0.14809899,-0.29898342,0.10786598,0.11795234,0.4877429,0.23223414,-0.12826638,0.28758356,0.6534458,0.73172855,0.03385547,0.69121605,0.38808417,-0.037462216,0.36843967,-0.36990643,-0.2632289,-0.55223596,-0.37029976,-0.12943831,-0.34604242,-0.4752221,0.06157014,-0.2978018,-0.8236183,0.6401963,0.040731613,-0.048182018,-0.1851878,-0.06059396,0.34858847,-0.12351036,-0.1268558,0.006369642,-0.08716101,-0.6866215,-0.31775126,-0.72819895,-0.47197682,0.15329476,1.1632932,-0.24127118,-0.044688024,-0.02827287,-0.21064937,-0.0185318,0.014701681,0.058296937,0.15534016,0.4066598,-0.01953039,-0.6381927,0.45598835,-0.18975008,-0.19309358,-0.41256285,0.18623509,0.7833437,-0.7304479,0.58456975,0.34715804,0.18753597,0.113612175,-0.49933285,-0.16958497,0.028733144,-0.114906274,0.45982864,0.12450703,-0.77500457,0.4923994,0.5672289,-0.27847448,-0.81897175,0.4803107,-0.011235748,-0.15346326,-0.11677853,0.34169683,0.29059634,0.077213585,-0.13437627,0.25375763,-0.5624219,0.24502884,0.26611638,-0.08731566,0.4036121,-0.14586295,-0.07606727,-0.75621635,-0.08197309,-0.49402514,-0.38635543,0.1897045,-0.036103725,-0.07467634,0.039522905,0.09793532,0.24548347,-0.18962927,0.12356557,-0.01632308,-0.20728756,0.4160257,0.5800453,0.4480649,-0.48539108,0.57438993,0.06268568,0.13365929,0.06532431,0.089660846,0.39124444,-0.036027875,0.36321783,0.0036586523,-0.11150151,0.16825019,0.8262452,0.07396036,0.4253924,0.11765287,-0.10260006,0.24246243,0.06239165,0.077794924,0.24902423,-0.55529195,-0.069846675,0.0710185,0.17793201,0.5670568,0.20774664,0.3248653,0.01645722,-0.23157856,0.03167977,0.19638307,-0.090029284,-1.3782578,0.5587419,0.15998928,0.634127,0.72925484,-0.026746402,0.17333435,0.55587083,-0.12002177,0.15686443,0.36788702,-0.07829316,-0.57487303,0.6109161,-0.607248,0.41091797,-0.14316368,0.11404074,-0.058214284,0.023414152,0.4984351,0.6686067,-0.05283105,0.089870796,-0.06764948,-0.32143715,0.04525695,-0.51416075,0.11351403,-0.40638548,-0.20984481,0.78806037,0.5430897,0.2885305,-0.1422588,-0.012107162,0.21637051,-0.14214422,0.13601255,-0.20523128,-0.01761662,0.020772701,-0.6604511,-0.3303352,0.7677335,-0.16872369,0.25015566,-0.08851648,-0.14831093,0.26393104,-0.16368437,-0.03801196,-0.07661728,-0.75327903,-0.011176164,-0.51531315,-0.43169323,0.1940546,-0.174453,0.12865229,0.026173158,0.09936674,-0.5112494,0.45034122,-0.034177013,0.7212635,-0.22946347,-0.23776482,-0.29779243,-0.020606007,0.2213115,-0.27994806,-0.2687874,-0.32629398,0.05767984,-0.60466003,0.35947868,0.032429792,-0.4022211,0.085887425,-0.11943783,-0.094461,0.47298545,-0.3102667,-0.1108519,0.05284617,-0.23744683,-0.09617982,-0.24772552,0.087804176,0.28862375,0.25028437,0.058407657,0.0060361284,-0.27151656,-0.058710694,0.45258904,-0.04048553,0.27903193,0.48078224,0.21156202,-0.47050685,-0.16545439,0.21923378,0.5264527,0.039826576,-0.018313868,-0.43044537,-0.20806967,-0.268939,0.2340224,-0.22833626,0.34458637,0.010162866,-0.5433548,0.84961224,0.1370767,1.2470989,0.056999106,-0.38665417,0.122809015,0.39993116,-0.051227633,0.039541595,-0.39837852,0.9862382,0.5442456,-0.2824998,-0.29488277,-0.5913604,-0.10054524,0.14166537,-0.28612632,-0.18795566,-0.054338526,-0.46208405,-0.31421757,0.16858844,0.31501645,0.11708462,-0.13548903,-0.0600016,0.16646771,0.02613914,0.4819526,-0.5741472,0.0061598844,0.24481942,0.38976648,0.07915175,0.18235445,-0.51732594,0.42158148,-0.561925,0.31324488,-0.36457062,0.16821781,-0.19583894,-0.22726645,0.160462,-0.0074657924,0.31761247,-0.335999,-0.3641801,-0.1630687,0.61420065,0.15316716,0.08379627,0.97117096,-0.295371,-0.00914153,-0.017102947,0.62869346,1.1253159,-0.24142034,-0.06129912,0.31608567,-0.18981835,-0.47620553,0.2628371,-0.3335895,0.027241366,-0.057489965,-0.38652548,-0.6791007,0.23246679,0.30807066,0.035610866,0.15183036,-0.80729884,-0.30391365,0.21901062,-0.25609818,-0.3888275,-0.3876073,0.07609319,0.750347,-0.38912386,-0.23793264,0.06881752,0.12762015,-0.05900675,-0.47648948,-0.12527296,-0.27178827,0.2896337,0.27244067,-0.20730948,-0.18945862,0.09602586,-0.38128528,0.04688349,0.19924355,-0.2638107,0.1620977,-0.098566525,-0.0944354,0.93458885,0.005079133,0.24916813,-0.56348747,-0.50299215,-0.84663373,-0.445464,0.6261078,0.086202435,-0.018048972,-0.508747,-0.09151103,0.095054574,-0.06790051,0.014297689,-0.50030273,0.45401448,0.055014987,0.48765782,0.029711558,-0.6438194,0.09584492,0.18413506,-0.019041548,-0.5711756,0.52668846,-0.22149861,0.94045115,0.07619996,-0.012450002,0.20867704,-0.5015121,-0.14785537,-0.37231034,-0.23665237,-0.69989926,0.18510737,990 -581,0.43395612,0.07914376,-0.69459194,-0.22184943,-0.356422,0.08178975,-0.22408906,0.53594184,0.05933177,-0.47812518,-0.21615852,-0.23668262,-0.008727095,0.2414905,-0.2859335,-0.627116,0.18560958,0.13001391,-0.46221733,0.26129603,-0.4707549,0.54509985,0.18530956,0.25630188,0.07189907,0.08687579,0.16737577,-0.117459945,-0.07701053,-0.5387954,-0.035854362,0.0762371,-0.7556935,0.1491298,-0.410656,-0.5390368,0.25850576,-0.4813591,-0.25306895,-0.79122764,0.15315807,-0.7534703,0.66999733,-0.043068312,-0.42149606,0.17583588,0.21944854,0.37125507,-0.02949153,0.1786463,0.15953921,-0.21042076,-0.10878251,-0.057454415,-0.33833975,-0.59799296,-0.63167053,0.18588018,-0.68113816,-0.24821922,-0.17518108,0.14176211,-0.47862554,0.047461953,0.009818273,0.47892672,-0.39615163,-0.14633141,0.2723139,-0.17949417,0.41952705,-0.6135484,0.017395353,-0.15023734,0.2972711,-0.25144902,-0.15459062,0.18652216,0.2611957,0.6079545,0.13051353,-0.3529794,-0.1332181,-0.13680588,-0.06196999,0.50925815,-0.18498985,-0.32204267,-0.2601285,-0.053605467,0.40887636,0.28601572,0.078921996,0.011821947,-0.12202071,0.0859022,-0.31331584,0.5593737,0.5473643,-0.55713505,-0.00814917,0.33325368,0.47748464,0.21832426,-0.045839585,0.19540851,0.005401694,-0.6281935,-0.25457022,0.06219739,-0.23902157,0.44323573,-0.29093376,0.32728752,0.67486745,-0.20434077,0.06723196,0.36760828,-0.042402823,0.04972812,-0.088871464,-0.29158112,0.3675666,-0.65639156,0.06260854,-0.26584247,0.8662609,0.21859524,-0.5980342,0.30443838,-0.63107693,0.15047625,-0.11102907,0.63978034,0.6691262,0.5955035,0.16878448,0.7892745,-0.43251052,0.016576396,-0.035340257,-0.22786808,0.12733185,-0.13564192,-0.102414444,-0.28855425,0.0464893,-0.111583844,0.10482783,0.07935714,0.40151986,-0.6429772,-0.07790406,0.14411055,1.0118656,-0.25833794,-0.08765221,0.76935875,0.9045598,0.96531457,0.024399344,1.120934,0.09628658,-0.1420901,-0.07664586,0.14028491,-0.55179465,0.38567662,0.396321,0.116821766,0.30321184,-0.0360342,0.033665825,0.33598232,-0.43090057,-0.16864443,-0.13993376,0.2124592,-0.0528112,-0.17731752,-0.48086914,-0.15860096,-0.0360362,0.01781579,0.17035298,0.26372787,-0.06083704,0.42055467,0.0030184984,1.0794591,-0.12466632,0.14332081,0.03053315,0.4399231,0.2604749,0.04380318,-0.053200595,0.18373744,0.21574332,0.22894137,-0.6125693,0.02308472,-0.30348793,-0.40053743,-0.2584191,-0.29185122,-0.24813318,-0.1858573,-0.5530384,-0.18275312,-0.14372052,-0.26537186,0.4525198,-2.3868365,-0.32391864,-0.1437918,0.3514026,-0.22102274,-0.3725355,-0.14276603,-0.4884879,0.57626504,0.31262055,0.565322,-0.68931484,0.4837775,0.5021621,-0.2580929,-0.16329002,-0.62409365,-0.20155679,-0.01679633,0.11375988,0.11848096,-0.38323376,-0.18378222,0.14132933,0.54233056,0.0159251,0.10716847,0.008164908,0.31254464,-0.1356001,0.47435632,-0.0058189207,0.55716413,-0.31483346,-0.14516595,0.41355133,-0.36186272,0.11839117,-0.25528148,0.11204624,0.37085143,-0.61922437,-0.9354022,-0.6884846,-0.38649216,1.2646139,0.036840748,-0.4948233,0.26589695,-0.07049971,-0.2012618,0.09585665,0.36416197,-0.07272989,0.21491551,-0.63729316,-0.067514226,-0.124656424,0.1808832,-0.07216019,0.1292867,-0.53818244,0.6045538,-0.10473131,0.30582276,0.2898269,0.26846412,-0.26867226,-0.5514148,-0.028073302,1.1289943,0.7101515,0.1588505,-0.37125382,-0.055967946,-0.5644415,-0.050913103,-0.075330555,0.61322594,1.009718,-0.12727994,0.12778372,0.35051963,-0.044073123,0.17973034,-0.05033738,-0.5653266,-0.13877764,0.010227501,0.5745138,0.4578309,0.013027127,0.5011377,-0.035093337,0.45148635,-0.272645,-0.55736315,0.4915131,0.7514643,-0.44609421,-0.316804,0.65295094,0.2925103,-0.23608346,0.58177567,-0.64645493,-0.63863546,0.42177382,-0.026653955,-0.57791865,0.19797246,-0.36604524,0.23198628,-1.1317035,0.3556381,-0.39082116,-0.53633374,-0.36063877,-0.2853844,-3.3873436,0.20156904,-0.17170143,0.15179195,-0.24754238,-0.08569892,0.34853488,-0.38377175,-0.761065,-0.03183158,0.086536594,0.7975175,-0.0888992,0.16774593,-0.27805862,-0.50729877,-0.28815243,0.36639664,0.29603735,0.16805312,-0.06855537,-0.31594467,-0.04609256,-0.29352596,-0.47243792,0.059035752,-0.6715693,-0.61960155,-0.31684667,-0.5793945,-0.35592058,0.7422809,-0.3568612,0.045032736,-0.27693018,0.14761446,0.07549618,0.1755452,0.12336405,0.1435428,0.029025713,-0.13851148,0.08513603,-0.37918684,0.27662566,0.14543779,0.34859374,0.23070478,0.00044141497,0.18402995,0.57917595,0.6112656,-0.15382078,0.87284786,0.2512595,-0.013585674,0.4400722,-0.29875436,-0.52652574,-0.44792816,-0.30779833,-0.030075928,-0.44370228,-0.32717034,0.12696777,-0.34217533,-0.84605414,0.587648,0.068081714,-0.00967899,-0.20144033,0.46798882,0.54670835,-0.16694136,-0.14757523,0.0716788,-0.07748925,-0.5109574,-0.16276087,-0.7739948,-0.5483925,-0.1861025,1.1609153,-0.21986988,0.080615565,0.085410155,0.21264254,0.21185027,0.010787046,0.11294986,-0.06737799,0.5330699,-0.0038180265,-0.76902753,0.39264336,-0.20030198,-0.1905158,-0.58025074,0.1423956,0.766095,-0.70592105,0.3191199,0.7424901,0.07352984,-0.13344982,-0.53128445,0.13819928,0.0013095279,-0.34950548,0.43644708,0.055143587,-0.7417348,0.5821882,0.25891814,-0.30320188,-0.7294261,0.6596915,-0.021851847,-0.23609832,0.07358261,0.47310543,0.25634265,-0.05919981,-0.0546523,0.26361004,-0.51176316,0.17270672,0.2877365,-0.047396116,0.77596337,-0.2119884,-0.3485399,-0.72928673,-0.12180209,-0.6303493,-0.35531646,0.21277942,-0.05903726,-0.08947091,0.3048298,0.15101874,0.5368777,-0.2830602,0.12498194,-0.32882208,-0.34471336,0.57851034,0.5468806,0.54108226,-0.45975408,0.65235275,0.065336466,-0.016951997,0.11915689,0.03439234,0.52603763,-0.20868865,0.40374225,0.20152111,0.0053443653,0.05861234,0.7095346,0.12353661,0.3833365,0.12069046,0.02044685,0.1571016,0.13416775,0.06569259,0.040531497,-0.49813518,-0.112390526,-0.17571394,-0.02864795,0.54964393,0.14316097,0.25471464,0.027667029,-0.1683481,-0.046064854,-0.0047820085,-0.18665807,-1.1238654,0.48539957,0.27434838,0.7744699,0.34060255,0.23877041,0.08175985,0.49098536,-0.25080797,0.19282852,0.4208601,0.28595617,-0.34770307,0.6195065,-0.6771498,0.52827114,-0.053031,0.0001104985,0.042430345,-0.116347805,0.6579728,0.86971515,-0.13633718,0.09989004,-0.07661758,-0.28830633,0.19621284,-0.5082142,-0.20142163,-0.40040588,-0.030387912,0.7967022,0.35465363,0.15158017,-0.24545076,-0.026980365,0.11293528,-0.1650969,0.26426822,-0.107903294,0.048974577,-0.2657577,-0.4388767,-0.21154276,0.53532755,0.16464524,0.17894614,0.0803077,-0.10917771,0.21694772,-0.108064875,0.20074283,-0.104979925,-0.6037897,-0.019244624,-0.6803873,-0.4038034,0.28601214,-0.30262595,0.2295382,0.13781989,0.10514689,-0.24742696,0.29768577,-0.061068747,0.47175097,-0.09652849,-0.32091832,-0.22888705,0.22658846,0.21687813,-0.55264634,-0.25224778,-0.17322867,0.20513286,-0.49516034,0.34476784,-0.3194628,-0.36204386,0.110590756,-0.17321506,-0.17133543,0.44507584,-0.17181359,-0.0016642745,0.31849837,-0.16906847,-0.105823584,-0.20176263,-0.16258523,0.12946458,0.16123155,-0.16336107,-0.15692125,-0.2547936,-0.02652162,0.39298883,-0.15111338,0.34940976,0.30700594,0.082653746,-0.4954968,-0.16178472,0.10120629,0.56151503,-0.038084,-0.035081156,-0.35059384,-0.3876775,-0.2414136,0.15789866,-0.1270402,0.21471511,0.13135622,-0.21322183,0.89984226,0.2264014,1.2876663,0.00045850448,-0.41515806,0.0434891,0.5393954,-0.07640074,-0.08700182,-0.41751957,1.1746616,0.3702992,-0.2767991,-0.1785877,-0.36166498,0.04276674,0.17798771,-0.20069548,-0.3681531,-0.21637197,-0.5318465,-0.32582092,0.3782077,0.46134853,0.13037702,-0.15420905,0.05061922,0.2888546,-0.038029917,0.4203772,-0.62436384,-0.21219638,0.324131,0.23333676,-0.06765705,0.121008776,-0.48689047,0.29838854,-0.6971591,-0.032376196,-0.3623708,0.1834307,-0.128449,-0.51559937,0.33176824,0.09597795,0.34605926,-0.24888137,-0.42375627,-0.0949433,0.28278825,0.17803153,0.15699218,0.76067704,-0.32781363,-0.063510664,-0.023449685,0.5682988,1.2779897,-0.19672163,-0.026186073,0.33623543,-0.24996923,-0.5973192,0.2529158,-0.6900193,0.11212938,-0.11832229,-0.4269788,-0.49816146,0.23442318,0.10581766,0.034179177,0.1883334,-0.7902312,-0.09501732,0.18570757,-0.23178056,-0.23490581,-0.32601422,0.24292101,0.76924133,-0.21529426,-0.11349203,0.034606006,0.49492756,-0.20184848,-0.71823317,0.09396416,-0.061171144,0.33010417,0.06924768,-0.3238062,0.10471482,0.09672703,-0.5235451,0.14358275,0.331631,-0.30889538,0.059105407,-0.27244446,0.26077995,0.6920128,-0.03930685,0.13926479,-0.32197925,-0.5024935,-0.8056301,-0.060072947,0.4786425,0.28903428,-0.008180733,-0.5724655,-0.06411223,-0.29865503,-0.18398584,-0.08562094,-0.3104275,0.3110511,0.14758173,0.5313948,-0.15377672,-0.807057,0.15689747,0.029609231,-0.20727964,-0.60013807,0.5371298,-0.13916269,0.75939053,0.2717189,0.021192163,0.2512996,-0.5697509,0.12501898,-0.15763608,0.013167462,-0.74314743,0.11416189,995 -582,0.42515898,-0.1567503,-0.34909266,-0.2250879,-0.054117795,0.058973845,-0.059497602,0.36686566,0.17119867,-0.554357,-0.20148963,-0.24076986,0.12554793,0.29781628,-0.34085575,-0.91402787,-0.106521316,0.12642623,-0.2670089,0.5891684,-0.42302614,0.35866314,0.029808393,0.10335498,0.0004410652,0.29012865,0.29976812,-0.30298856,-0.39072257,-0.07887215,-0.12288023,0.44212216,-0.52751744,0.17434885,-0.016205018,-0.22621974,0.094745584,-0.42764282,-0.41924095,-0.76436603,0.29557276,-0.8917357,0.41585782,0.17910911,-0.004049503,0.27813154,0.0029857617,0.019714935,-0.26425773,0.1706561,0.08152076,-0.082242176,-0.11376819,-0.15365694,-0.4056556,-0.5547032,-0.66122437,0.13404188,-0.33255386,-0.34934172,-0.17416325,0.11997131,-0.4088671,-0.14838132,-0.11564095,0.4035033,-0.49387836,-0.048604615,0.24721281,-0.085114166,0.19773293,-0.6029084,-0.32915622,-0.1994536,0.16789037,-0.4954631,-0.052993186,0.19805796,0.42802766,0.46204054,0.051296372,-0.18195003,-0.28926304,0.022501977,0.32826847,0.5818357,-0.34564817,-0.83927834,-0.10176949,0.13253905,0.15833338,0.09626949,0.12653027,-0.35971716,-0.051364206,0.15603939,-0.34451205,0.42822626,0.49673426,-0.3801081,-0.26491216,0.2805373,0.35973945,-0.027046273,-0.096986406,0.0015103221,-0.06725198,-0.5023276,-0.17226723,0.45792153,-0.15810555,0.6174522,-0.21246631,0.18958634,0.634263,-0.47321162,0.165807,-0.082147315,-0.04457069,-0.09310529,-0.17787634,-0.20122069,0.18839614,-0.37203312,0.21724503,-0.20511185,1.0184655,0.35336787,-0.8652357,0.39439386,-0.56766456,0.2224442,-0.13450098,0.6241736,0.29968202,0.24372926,0.3870064,0.55333036,-0.519606,0.07229281,-0.05176809,-0.48719832,-0.23264448,-0.046968963,-0.10459741,-0.3319112,0.08069785,-0.010527945,-0.06415927,-0.14353393,0.5069579,-0.4931486,0.016997214,-0.037964728,0.77288777,-0.4171054,-0.13954781,0.7001991,0.9002753,0.91774184,0.10647451,1.3293178,0.45062155,-0.209696,0.10002101,-0.5210176,-0.70637006,0.29863426,0.4960899,-0.56761956,0.24515916,0.06877648,-0.07788043,0.08006798,-0.32847497,0.059079316,-0.50442314,0.1568062,0.110335544,-0.020696832,-0.45024192,-0.17065045,-0.050395012,-0.050228532,0.22174254,0.05995495,-0.20605828,0.12004778,0.11754273,1.4299653,-0.13373497,0.007523491,0.05630559,0.42158747,0.15578038,0.22108838,0.112379804,0.3831116,0.4373389,0.12740138,-0.6825845,-0.08927751,-0.22031267,-0.5787914,-0.15399227,-0.26253635,0.068001054,0.06452692,-0.38824257,-0.13582337,0.006026733,-0.39757445,0.5387587,-2.2428288,-0.16290396,-0.17759845,0.27180105,-0.24605489,-0.39771712,-0.16282889,-0.39808157,0.326112,0.2899515,0.44714525,-0.81315386,0.32989424,0.40761292,-0.27565092,-0.10010863,-0.7247388,-0.022648709,-0.16821066,0.3428079,0.00041090065,0.12909485,0.16585721,-0.06913931,0.4923793,-0.023095636,0.023674872,0.25644737,0.42718756,0.2639863,0.41053817,0.15447924,0.520966,-0.17067896,-0.14936854,0.33920956,-0.31749916,0.18139113,0.07435271,0.10765167,0.11459768,-0.5344622,-0.91599977,-0.7483373,-0.6518646,1.3458651,-0.225768,-0.31933016,0.226346,0.1642336,-0.17863856,-0.22632265,0.27333724,-0.3335852,-0.067911774,-0.77558243,0.099140376,0.045500323,0.17325518,0.07499992,0.20430909,-0.2960227,0.67893577,-0.27928331,0.26250184,0.35523617,0.15802477,-0.1879912,-0.58002484,-0.06975376,1.1683567,0.22158106,0.17353612,-0.10093866,-0.36883456,-0.1078988,-0.073114015,0.06645454,0.48116794,0.7854688,-0.024456583,-0.05720857,0.44169456,0.07204758,0.15357126,-0.23200567,-0.41796604,-0.12779877,-0.05925228,0.59584695,0.14479941,-0.36829087,0.5258916,-0.22433384,0.39675742,-0.0046604024,-0.27341557,0.42197964,1.354351,-0.20425265,-0.24648967,0.5949583,0.48117527,-0.4533157,0.30481544,-0.6831928,-0.1869317,0.44317305,-0.25387695,-0.35080808,0.38564065,-0.32557422,0.12141358,-0.9815273,0.50277746,-0.26037934,-0.33566368,-0.39358842,-0.08100414,-3.7743764,0.14554,-0.43310654,-0.26709443,0.011624419,-0.07933734,0.09135933,-0.54137903,-0.5441208,0.21145883,0.07869117,0.3526201,0.020169573,0.24225599,-0.1466658,-0.023798106,-0.3146801,0.15920965,0.018860973,0.3477551,-0.07678286,-0.475899,0.16543773,-0.18276533,-0.3251781,0.27834398,-0.6378377,-0.5760817,0.0340493,-0.6952307,-0.5125148,0.6222215,-0.46736974,-0.028553527,-0.20961991,0.081377655,-0.3714934,0.43954885,-0.01703775,0.28813714,-0.13587011,-0.05277011,0.013265165,-0.115642466,0.566069,0.07724655,0.2584539,0.29675525,-0.2119568,0.10897167,0.5322495,0.45485628,0.24855591,0.7086792,0.5950167,-0.0807501,0.2385722,-0.3141851,-0.088672474,-0.7033818,-0.51408863,-0.0018238104,-0.38505876,-0.5944568,-0.150677,-0.31186527,-0.758849,0.54373795,-0.2131272,0.10917016,-0.022780318,0.26591504,0.5583425,0.09722642,0.17919217,0.006472927,-0.14851148,-0.44359568,-0.25458205,-0.69626415,-0.2717489,0.11156556,0.8137299,-0.107483074,-0.2214686,-0.12999783,-0.266854,-0.06804986,0.037320115,-0.02382503,0.25273806,0.4719165,-0.12806782,-0.86275446,0.39104506,-0.052471254,-0.22846518,-0.38909,0.16441195,0.7468723,-0.87109345,0.661525,0.3644288,0.0912296,0.040267807,-0.39285976,-0.46157366,-0.028652139,-0.27133214,0.30181974,0.092368916,-0.6410914,0.49673337,0.4933663,-0.22357567,-0.6965185,0.54723793,0.16951157,-0.21983245,0.13407055,0.4179518,0.11156077,-0.081308894,-0.290125,0.29649562,-0.46341902,0.36541444,0.20157552,-0.017131846,0.24303426,-0.0018571776,-0.2056396,-0.75635517,0.06954288,-0.4704108,-0.3994018,0.14520839,0.14745656,-0.08500433,0.16457668,-0.08671255,0.5029181,-0.31951746,0.023546187,0.17220101,-0.17321569,0.14351362,0.33741426,0.30737692,-0.37169155,0.5524363,-0.102754965,-0.04257036,-0.08783904,0.15080395,0.4648876,0.24566022,0.17488848,0.21918161,-0.192165,0.47860926,0.7169623,0.24219392,0.6337058,0.1484033,-0.10504316,0.5346205,0.15350547,0.09665064,-0.07910558,-0.3443603,-0.18530783,0.1499004,0.07036235,0.44442436,0.09032362,0.44788486,-0.22244233,-0.3958248,-0.082134046,0.28580585,0.037581682,-1.0276212,0.26626205,0.022502385,0.6460875,0.6116126,-0.16675392,0.16733009,0.4345819,-0.279896,0.107178226,0.39468926,-0.103265114,-0.643852,0.47449574,-0.40891713,0.2679407,-0.22289136,0.16289029,-0.10414056,0.19069569,0.16890056,0.95413023,-0.075236164,-0.023499493,-0.10565661,-0.1635091,0.14606068,-0.52212274,0.28609383,-0.45409408,-0.18900433,0.57431877,0.4522413,0.3300121,-0.07505496,0.0069547687,0.09730645,-0.17975691,0.27095687,0.05281386,0.095070824,0.07361173,-0.809665,-0.3444142,0.80976415,0.11074098,-0.022765096,0.022084204,-0.32175776,0.40223557,-0.12400421,-0.114514105,-0.0026088862,-0.59457624,-0.110241905,-0.17087437,-0.4453333,0.1543118,-0.17958252,0.3048182,0.29049122,-0.09243755,-0.440321,0.011761537,0.394578,0.5514447,-0.12725395,-0.38248575,-0.49787518,0.04673756,0.3259571,-0.1292949,0.023353457,-0.08359191,-0.049429115,-0.54685366,0.56343746,-0.02192213,-0.3381721,0.0032194233,-0.18850829,-0.18931256,0.5558496,-0.1356484,-0.010489435,0.014374178,-0.118827336,-0.26981562,-0.05962408,-0.08965523,0.17713341,0.31374773,-0.22262059,-0.048935,-0.2379993,-0.1187489,0.4213289,0.014657135,0.3075449,0.4231786,0.34337524,-0.39104223,-0.28494665,0.14233747,0.4390051,0.1035574,-0.10082586,-0.15670505,-0.37272498,-0.15893814,-0.22903347,-0.25677535,0.19570774,0.052849777,-0.685723,0.75720143,0.11104759,1.3191789,-0.020967295,-0.24831173,-0.21295816,0.45226353,0.09204389,0.12065169,-0.2838075,1.108079,0.55237603,-0.0065874136,-0.18426694,-0.4901059,-0.1385716,0.0945776,-0.12653616,-0.26366588,0.11317647,-0.5588113,-0.5992769,0.31682867,0.2470265,0.026380774,0.16539901,0.16483101,0.13957126,0.06818858,0.6125125,-0.5641576,-0.06415016,0.051246226,0.25087345,0.20559905,0.20293346,-0.4132315,0.31478527,-0.40004683,0.22134934,-0.15350524,0.17543444,-0.065917626,-0.16399327,0.22122517,-0.042968955,0.5148567,-0.3347584,-0.467063,-0.14807048,0.61631656,-0.12783375,0.09066464,0.63500684,-0.21215703,0.20086119,0.056588013,0.7563592,1.387,-0.01988964,0.06758605,0.34672868,-0.32020304,-0.6727656,0.37511784,-0.100875184,0.11037568,-0.10903808,-0.19036879,-0.5609559,0.23153001,0.22635548,-0.039094087,0.19243965,-0.35245174,-0.32319066,0.3898431,-0.39076173,-0.28814816,-0.28791195,0.33431652,0.8257961,-0.5873317,-0.22381867,0.036069777,0.1098945,-0.31999376,-0.54004204,-0.17710637,-0.32381195,0.4821417,0.20242819,-0.12549534,-0.12851194,-0.013010764,-0.2217628,0.0816875,0.3213765,-0.40942815,0.12595853,-0.051914968,-0.19758508,0.81035763,-0.19601056,-0.0657223,-0.66879964,-0.41760108,-0.9711539,-0.39764327,0.71437305,0.115133695,-0.044907805,-0.58543676,0.062252674,0.19197583,-0.24359182,0.038847033,-0.48731497,0.4648728,0.09306416,0.5007306,-0.08558107,-0.6982091,0.14496213,0.1299846,-0.030846275,-0.6092954,0.535517,-0.081090204,0.80279285,0.041851915,0.008913485,0.33179423,-0.3536447,-0.12825094,-0.21181448,-0.2872031,-0.73683524,0.11966784,3 -583,0.41878605,-0.12981805,-0.6071095,0.09124798,0.029166736,0.33944348,-0.37968343,0.10310221,0.35892323,-0.5084502,-0.026677363,0.10665892,-0.053024657,0.033289354,-0.09889098,-0.44219765,-0.039899033,0.20894095,-0.62727535,0.57934415,-0.2373465,0.4859683,0.06604207,0.14908883,0.08439495,0.18039273,0.30975562,0.14966422,-0.14278424,-0.35909182,0.15887128,-0.35290498,-0.8290453,0.32688457,-0.22729972,-0.42469615,-0.16880168,-0.5442252,-0.50509936,-0.76654494,0.5563178,-0.8888994,0.75525975,-0.0071246577,-0.17581438,0.21879974,0.17031734,0.2241604,0.043705747,-0.07231857,0.2418425,-0.1595393,-0.11126823,-0.29833087,0.01859206,-0.39796337,-0.593654,0.13638812,-0.4573609,0.15512046,-0.22699587,0.30879116,-0.4542252,0.21109523,-0.33780172,0.24317218,-0.089112505,0.053297784,0.20796475,-0.25638175,0.02043337,-0.5335783,-0.11817375,-0.01814886,0.16426738,0.08273627,0.019449564,0.40263456,0.04655882,0.5632268,0.09190375,-0.41517183,-0.16734919,-0.032242272,0.18984453,0.5892103,-0.18003069,-0.12044271,-0.2957338,-0.23393387,0.5675377,0.008631587,0.21594231,-0.11962282,0.052908596,-0.08951616,-0.19680537,0.533889,0.80498165,-0.28230974,-0.009866785,0.43707994,0.6068033,0.032741245,-0.012203088,0.19891573,-0.15966712,-0.31146744,-0.23199321,0.10634521,-0.18707886,0.4875881,-0.2782157,0.28809375,0.35563204,-0.23703986,-0.026398364,0.33855024,0.051969133,0.117656365,-0.23322996,-0.17782077,0.48030412,-0.6144114,0.034195106,-0.6305873,0.49636582,0.010658504,-0.88054216,0.5102566,-0.43810552,0.27109239,0.33028302,0.6896317,0.74406314,0.6464878,0.1529042,1.1648034,-0.5124628,-0.14991972,-0.0778223,-0.22180207,0.07506069,-0.3095885,0.09290885,-0.32748443,0.16037615,0.20750983,-0.01853726,0.08389271,0.5025574,-0.50618386,-0.3781702,0.049383063,0.8179798,-0.20354487,0.13517019,0.950559,1.1658579,1.0735366,0.09383775,1.212945,0.09458523,-0.20479546,-0.43636948,0.043112095,-1.0345727,0.1989488,0.30782816,0.08758728,0.6626282,0.20199397,-0.16258694,0.21783671,-0.51097023,-0.3060937,-0.03138456,0.17614606,-0.09046929,-0.20263101,-0.35020763,-0.08043526,0.18081824,-0.19866182,0.4495463,0.34521616,-0.44907755,0.36320668,0.26574203,0.9177757,-0.27768296,0.1168545,0.2978985,0.12416237,0.28820413,-0.36145622,-0.0026609302,0.060790412,0.36289194,0.0764621,-0.54906535,-0.025839526,-0.35774472,-0.51080287,-0.26728398,-0.05475178,-0.25880533,-0.13245156,0.008472131,-0.40779212,-0.2543294,-0.42976382,0.2795371,-2.6028056,-0.2609351,-0.19597243,0.33679444,-0.32460153,-0.38056836,-0.08003701,-0.5276059,0.41756278,0.24280955,0.3978097,-0.627902,0.22349699,0.2984531,-0.60456824,0.006206054,-0.5289355,0.031321757,0.060551938,0.47764334,0.18209876,-0.4782111,-0.1573363,0.22192056,0.53558755,0.19208142,0.036506023,0.50313824,0.5703691,-0.14290896,0.10723334,-0.07282429,0.56129223,-0.60445094,-0.18208137,0.631935,-0.8143835,0.35221747,-0.31228754,0.04404008,0.39764294,-0.44822466,-0.5667142,-0.42923453,-0.07254927,1.3873061,-0.26008573,-0.8159947,-0.009217519,-0.08688075,-0.26287812,0.02534217,0.5113511,-0.11048091,0.05681108,-0.51728076,-0.12198104,-0.3471877,0.21415915,-0.19195586,0.03328594,-0.46551073,0.89318305,-0.13775484,0.61154044,0.31891054,0.28284577,-0.5008565,-0.25945774,0.12246307,1.073104,0.6677538,0.17951027,-0.24539438,-0.046263173,-0.25942847,-0.61530125,0.07903288,0.81646097,0.6158334,-0.10372048,-0.069270805,0.36349818,0.08357479,0.24952489,-0.044037376,-0.35664514,-0.43911397,-0.13281825,0.73339915,0.54509366,-0.21001348,0.08982917,-0.053784166,0.15032853,-0.41148794,-0.3262337,0.6181601,0.8248166,-0.19638315,-0.2600653,0.7069274,0.3586973,-0.36283046,0.69882977,-0.7094605,-0.63856924,0.24204694,-0.030890537,-0.51039857,0.18550189,-0.3696591,0.17070678,-0.5606908,0.33895352,-0.3208938,-0.39499328,-0.51180977,-0.18677378,-2.2780187,0.22723015,-0.21365984,0.14947416,-0.4573113,-0.07405605,0.1743106,-0.28751564,-0.8085117,0.27564368,0.10172899,0.7746887,-0.18695675,0.25088078,-0.17241806,-0.3583072,-0.4523513,0.22881156,0.14399162,0.22029106,-0.14122623,-0.09737502,-0.37778983,-0.1675201,-0.3541889,-0.07248017,-0.5182593,-0.33198527,-0.24721694,-0.38632196,-0.2367066,0.58985496,-0.29608202,0.065650865,-0.3300171,-0.059841078,-0.07076678,0.20700932,-0.017077563,0.2271731,0.13615488,-0.49466294,0.19630122,-0.14438103,0.44202667,0.07420258,0.43793377,0.53563154,-0.48792142,0.036506943,0.29344204,0.9052349,-0.076115064,0.91675335,0.10988516,-0.15834716,0.46101457,-0.09806557,-0.32301748,-0.6146847,-0.03905736,0.3933442,-0.40152618,-0.36653122,-0.08432853,-0.2939469,-0.88368374,0.49554238,0.19353107,0.5277722,-0.104134135,0.5133134,0.3350153,-0.13216215,-0.09581307,-0.05414919,-0.28847864,-0.28616425,-0.33038586,-0.63128763,-0.27399507,0.01063201,0.80409616,-0.056446984,0.099676244,0.4433074,-0.01488416,0.13783264,0.12807952,0.20528287,-0.190084,0.458691,0.23275432,-0.62439597,0.39757758,-0.15578602,-0.06533639,-0.575351,0.34417692,0.5375639,-0.38830215,0.4216927,0.5201305,0.11260922,-0.35695794,-0.7226878,0.13299991,0.06772893,-0.18130524,0.39849204,0.40944302,-0.7743881,0.49356258,0.38706625,-0.26871294,-0.6460728,0.3413676,0.06107653,0.0066851927,-0.21085158,0.53909576,-0.122972384,-0.037399277,0.030858673,0.16907552,-0.31384978,0.37197974,0.039026078,-0.06492758,0.33157665,-0.23628306,-0.51234275,-0.62534374,0.1972054,-0.84861016,-0.049018975,0.18621613,-0.04773052,-0.11456506,0.19318812,0.19501916,0.55837536,-0.5089538,0.09747099,-0.11583308,-0.395819,0.62441856,0.47108957,0.3648173,-0.57262576,0.62391514,0.19519448,-0.21328513,0.028529404,0.04452094,0.51179665,-0.10171464,0.3086642,0.22264308,0.21646954,0.005170125,0.53506047,0.25656036,0.35636762,0.2541915,-0.20541722,0.21668969,0.008540795,0.2387684,-0.008465433,-0.7111407,-0.08288671,-0.118146695,0.07594059,0.5538833,0.15323387,0.45136613,-0.15207301,-0.24581257,-0.1837131,0.021174513,-0.33838812,-1.5462531,0.4274449,0.0880593,0.83074254,0.42263016,-0.013478209,0.13057189,0.6087498,0.034975145,0.018744716,0.30718178,-0.18018526,-0.43443605,0.54599214,-0.67984235,0.24868305,0.01478661,0.11376922,0.1746243,0.070036635,0.52296585,0.8390795,-0.12994057,0.03568919,-0.26680604,-0.21615966,0.1364572,-0.32129744,0.4867145,-0.3655116,-0.27536327,0.8117964,0.12529022,0.50374436,-0.20741734,0.122835845,-0.013072174,-0.13619587,0.30769157,0.04979362,0.18800622,-0.32226673,-0.40935203,-0.115270734,0.45790675,0.2612767,0.10510393,0.032035563,-0.09543273,0.06402034,-0.20520331,0.0937992,-0.07324737,-0.89276254,0.25443438,-0.45666328,-0.48751682,0.15735584,-0.061626717,0.22367375,0.29909492,0.070270404,-0.3006987,0.07221953,0.17284735,0.59363437,-0.15848933,-0.31159252,-0.35662296,0.21865508,0.17028308,-0.49516055,0.26683658,-0.095736094,0.22672178,-0.5002278,0.66950065,-0.16415559,-0.23747268,0.3625989,-0.23920721,-0.124073654,0.590083,-0.3207655,-0.085405745,0.25947505,-0.21126121,-0.2472408,-0.44886795,-0.20384704,0.18296383,0.25585106,-0.15178584,-0.15197887,-0.13426386,-0.36289898,0.11247274,0.20449585,0.15984505,0.53771883,0.07792879,-0.5538031,0.17844875,0.09815501,0.59869397,0.09494574,-0.066835515,-0.47831842,-0.634334,-0.40938362,0.8382499,-0.0035792028,0.19999316,0.042898417,-0.15902402,0.6845449,0.06618044,0.8187355,0.10295682,-0.24261989,-0.16390303,0.7634588,-0.038322095,-0.25773653,-0.43865123,1.0500405,0.54216737,-0.22169238,-0.037935838,-0.36344564,0.20270337,0.13416871,-0.27495623,-0.093989134,0.074151084,-0.74107164,-0.2363596,0.12738682,0.3883056,-0.018247902,-0.25611204,0.040814452,0.43645403,-0.0001674753,0.27835083,-0.45849654,-0.2881098,0.64042175,-0.061987393,-0.14427939,0.015700959,-0.5240902,0.16461045,-0.7704438,-0.027552862,-0.27263618,-0.0046525644,0.011656564,-0.5105161,0.36788467,-0.06718468,0.20760092,-0.61359185,-0.41906276,0.13601701,0.10332073,0.3488765,0.24232961,0.57055986,-0.18095376,-0.015892081,0.18669827,0.55828273,1.0777298,-0.06900798,0.30129725,0.053009115,-0.5344837,-0.8551136,0.29760715,-0.21072228,0.22274446,-0.12442107,-0.4205907,-0.56993747,0.31945962,0.13295487,0.13521126,0.10609876,-0.83854735,-0.5830604,0.077959724,-0.394433,-0.21785298,-0.3504905,-0.07230342,0.83612883,-0.025543464,-0.2945142,0.02824557,0.2948088,-0.32650742,-0.90748227,-0.060028452,-0.35365027,0.17585085,0.016972564,-0.23140517,-0.19690108,0.13062105,-0.555301,0.29932514,0.11593565,-0.41859004,-0.096662685,-0.45468503,0.08013023,0.44171557,-0.27777195,0.18972206,-0.372306,-0.5487792,-1.0074433,-0.5307982,-0.091008596,0.24337088,0.063943096,-0.5939292,-0.19731887,-0.5015147,0.07238377,0.036819313,-0.48251536,0.35004255,0.2403957,0.52529454,-0.26892874,-0.77695847,0.015620374,0.13994747,-0.18723743,-0.3308627,0.50234556,0.068959564,0.64086944,0.12527071,0.029127887,0.16639702,-1.0984534,0.23126319,-0.13818058,-0.030894807,-0.75339687,0.2633825,8 -584,0.53981423,-0.36364862,-0.41150182,-0.07321387,-0.12788092,0.10316655,-0.15245341,0.47414976,0.26408046,-0.5435808,-0.092735834,-0.3016553,0.042083833,0.111442804,-0.15388489,-0.38065335,-0.04317641,0.08336072,-0.32916605,0.44559404,-0.6245381,0.2611863,-0.110870875,0.32133403,0.08698478,0.27493083,0.06064129,-0.14975367,-0.28458557,-0.18600814,0.037912913,0.31820327,-0.56255305,0.12256767,-0.19233212,-0.30767563,0.018560413,-0.476633,-0.43648532,-0.74074656,0.34223124,-0.93314874,0.29794118,0.23410423,-0.19767427,0.19674999,-0.09517566,0.22248647,-0.2702308,-0.013530595,0.16233018,0.019153606,0.035914734,-0.28513205,-0.09149362,-0.3238188,-0.5699856,0.14674331,-0.36713725,-0.23868594,-0.26308873,0.15225723,-0.42054382,-0.054087702,-0.18310969,0.35140324,-0.42913902,-0.036373954,0.17013018,-0.23413302,0.30006433,-0.70705163,-0.38431293,-0.111828536,0.24718206,-0.2885936,-0.21894662,0.12825345,0.46377724,0.49380594,-0.06336594,-0.0046924236,-0.40130207,-0.002493056,0.22589947,0.42378828,-0.18532532,-0.6891064,-0.1289596,-0.060850143,0.1823996,0.273927,0.15420803,-0.25253406,-0.048032936,0.12850556,-0.3805908,0.4595824,0.5554333,-0.4429022,-0.20984842,0.310413,0.5338036,0.2695251,-0.08110575,-0.12755261,0.07395764,-0.5521863,-0.17163302,0.19412804,-0.21024612,0.49914137,-0.1599119,0.33415678,0.59080607,-0.41605112,0.17233953,0.119918674,0.015723508,-0.13751453,-0.25846782,-0.037337847,0.14790589,-0.2903487,0.06646688,-0.16287357,0.8107948,0.22331217,-0.56398654,0.3592348,-0.6174947,0.20215791,-0.09076763,0.60699046,0.62722534,0.36086032,0.41707084,0.71960443,-0.42472413,-0.0816479,-0.14725988,-0.36489102,0.08489506,-0.23413382,0.10596781,-0.34301513,-0.08579289,0.07016431,-0.12195846,0.013764943,0.6914407,-0.6031383,-0.07315348,0.10486771,0.710316,-0.20641683,0.0067505976,0.7419304,1.0056845,1.039563,0.10960372,1.3426888,0.21802813,-0.21436909,0.2640687,-0.3440457,-0.7903615,0.33255145,0.3076097,-0.08220477,0.17982945,0.057797212,-0.05434527,0.2464188,-0.35417563,0.05922949,-0.19531044,0.37118775,0.23598163,-0.023435025,-0.4013244,-0.33906752,-0.19726826,-0.06587892,0.11358857,0.18323825,-0.11518541,0.2196618,0.11906673,1.6064422,-0.2719097,0.22548272,0.13586356,0.531657,0.17969753,-0.09479063,0.075581625,0.35657546,0.24941438,0.19408257,-0.6636311,0.09585117,-0.23217313,-0.56463975,-0.07670833,-0.27575678,-0.2979667,0.2026965,-0.37260643,-0.18364215,-0.22494903,-0.32017282,0.48263547,-2.7032926,-0.31317785,-0.13859564,0.5374549,-0.3404646,-0.41073406,-0.11250684,-0.51441264,0.40083286,0.3281643,0.5178392,-0.80217713,0.15991798,0.6030001,-0.5658316,-0.18524566,-0.5992012,-0.029387195,-0.08815503,0.2681165,0.047969148,-0.13407083,-1.6900209e-05,-0.19838579,0.3454474,0.041041348,0.16373883,0.17505345,0.505664,-0.12474669,0.50870013,-0.04209322,0.4484582,-0.28513077,-0.26923218,0.45313218,-0.43814257,0.35468516,-0.12713145,0.12118505,0.4779136,-0.62330437,-0.84338844,-0.67733985,-0.39409035,1.1587616,0.04741313,-0.50736296,0.25395358,-0.36264214,-0.33454865,-0.30645904,0.5382009,-0.056671564,-0.21133573,-0.9057306,0.011675257,-0.25569618,0.20520546,0.045867965,-0.011657985,-0.33419478,0.762526,-0.017783472,0.36006176,0.3607248,0.040317755,-0.3641071,-0.52399576,-0.045034524,0.9781923,0.36443248,0.20565906,-0.25897062,-0.3197061,-0.2813868,-0.06097022,0.10414072,0.50920033,0.5807587,-0.05714583,0.08674952,0.3219501,0.04029108,0.08359453,-0.1923385,-0.20637785,-0.15945135,-0.05001744,0.6663717,0.69618064,-0.27952665,0.40784857,-0.038030256,0.11817345,-0.240276,-0.34867778,0.46931472,0.8805943,-0.09704566,-0.079392515,0.5885448,0.5578293,-0.39890704,0.36177906,-0.48644322,-0.40501064,0.40036535,-0.29466796,-0.46689838,0.30905488,-0.34532514,0.12852032,-0.72556084,0.33556157,-0.49501595,-0.13734755,-0.60978425,-0.115826026,-3.3913522,0.24166939,-0.23699358,-0.06413347,-0.13296911,-0.13474765,0.2237533,-0.5789365,-0.60577357,0.24726805,0.026737355,0.59121513,-0.18754466,0.07861241,-0.36964637,-0.37001213,-0.41460675,0.06539512,0.171839,0.40588096,0.025087925,-0.38907745,0.15834302,-0.16734979,-0.22639036,0.090939686,-0.45277697,-0.63237655,-0.1882672,-0.5193689,-0.48297507,0.7628543,-0.2243087,-0.0004667227,-0.119025275,0.0417033,-0.21206056,0.39867643,0.09804715,0.11164216,0.0416764,-0.07784438,-0.10661324,-0.2552538,0.3813076,-0.027442057,0.22809379,0.51401937,-0.297946,0.17583257,0.40620583,0.54940027,-0.108928844,1.0157965,0.3583133,-0.11217099,0.29559448,-0.16578534,-0.28080705,-0.53468096,-0.20415947,0.19569278,-0.46835282,-0.5338119,-0.118616,-0.36871478,-0.62199676,0.59859264,-0.11937113,0.20398997,0.10253975,0.37533358,0.60797113,-0.048150294,0.019962775,0.03565056,-0.052717246,-0.6288439,-0.28550196,-0.6830111,-0.4602141,0.3345568,0.7577317,-0.24537556,-0.060281757,0.27186102,-0.27784348,-0.14981955,-0.0652657,0.043290235,0.05399324,0.4239006,-0.051778276,-0.5516252,0.44611338,0.0098214885,-0.17250623,-0.5219394,0.18252708,0.8022404,-0.747218,0.61036384,0.43168995,0.06439871,-0.08553568,-0.41861784,-0.22765692,-0.026509136,-0.33306408,0.2691363,0.20043507,-0.82663375,0.4260478,0.43848497,-0.16460046,-0.83125836,0.61678857,-0.045300905,-0.24007232,-0.107346684,0.41891846,0.29032627,0.13144708,-0.05470117,0.39376956,-0.5809542,0.25073904,0.22401024,-0.19907254,0.38112494,-0.061269548,-0.28416213,-0.7444839,0.05791411,-0.4550808,-0.2765531,0.3719343,0.16184847,0.060137987,0.20925806,0.29317248,0.52051294,-0.29450208,0.07228604,0.08344913,-0.07172946,0.20057164,0.32999727,0.6974456,-0.47300038,0.57526004,-0.023980213,-0.06062264,0.028824743,0.018374847,0.33072802,0.17182483,0.37931225,0.14551269,-0.3264116,0.22647902,1.0739989,0.09946127,0.47198442,0.09093501,0.000116091505,0.27154148,0.2168006,0.31714168,-0.048170622,-0.7147,-0.0109729655,-0.058361273,0.16774327,0.400965,0.17872144,0.25203,-0.25463137,-0.31497303,-0.086091004,0.3887644,0.018032065,-0.977918,0.21482538,0.025948064,0.8110802,0.56279427,-0.035574004,0.15041126,0.558885,-0.10678306,0.07823238,0.33831167,-0.011005998,-0.60597664,0.4745495,-0.5886246,0.4415526,-0.16730286,-0.008005302,-0.12678571,-0.093543954,0.35335493,0.7457848,-0.11432955,-0.10339562,0.03031221,-0.27086383,0.22975087,-0.4383771,0.08613967,-0.61183226,-0.13513692,0.61242306,0.56108975,0.34567493,-0.1746375,0.037661728,-0.031161722,-0.112284,0.30326974,-0.08198357,0.1479633,-0.009132734,-0.81213623,-0.07629154,0.55925137,0.27564552,0.1774575,-0.057661466,-0.30799034,0.34634942,-0.19271861,-0.067801625,-0.14092559,-0.64848125,-0.09771877,-0.43892795,-0.5489334,0.38012302,0.08337195,0.28755844,0.28066558,0.11788641,-0.22159688,0.2505901,0.10179769,0.7846932,-0.16294609,-0.1815252,-0.6499834,0.16248845,0.24267724,-0.2195834,-0.08544889,-0.15286916,0.0957779,-0.5422007,0.5775235,-0.035326175,-0.19412139,0.028610192,-0.17786926,-0.032237783,0.7767462,-0.26460847,-0.18705122,-0.07957308,-0.22204535,-0.40500778,-0.049380027,0.05196557,0.16685145,0.3671598,0.004598223,-0.15144786,-0.26721615,-0.17698497,0.2662827,0.15675323,0.28641826,0.47092357,0.21439113,-0.2936074,-0.19146334,0.19694439,0.49874672,0.01766937,-0.17956275,-0.32294226,-0.61029845,-0.3929884,0.25478193,0.028030455,0.31771606,0.06336855,-0.4115191,0.6460524,-0.083748326,1.0552214,0.05476374,-0.30634516,-0.017404843,0.5220484,-0.1122988,-0.16427967,-0.5056439,0.9693849,0.49069077,-0.26108032,-0.08597498,-0.30584028,-0.10932222,0.14149305,-0.3038054,-0.014816981,0.017805131,-0.7051385,-0.24218719,0.24265245,0.3006551,0.018484341,-0.13505219,0.21078196,0.20909277,0.2166841,0.37649775,-0.53853214,-0.46106845,0.29068676,0.44504282,0.024954991,0.2188805,-0.2067249,0.4322604,-0.5496273,0.19729386,-0.3966262,0.12542258,-0.1200177,-0.30050695,0.23022798,-0.040124573,0.38898975,-0.3216593,-0.51453847,-0.32696354,0.2856088,0.14647235,0.23443006,0.560138,-0.23342115,-0.042336974,0.09215875,0.7073389,1.1691319,-0.011252834,-0.105307296,0.46495312,-0.25897908,-0.60980237,0.5635773,-0.45670694,0.17984335,0.008106117,-0.091887146,-0.4859411,0.30199233,0.31500992,0.024377447,-0.029599804,-0.7588752,-0.15586983,0.2493663,-0.49903983,-0.1440478,-0.31515053,0.057050522,0.9228938,-0.3304383,-0.1714417,0.033113003,0.42396858,-0.31818703,-0.5313786,-0.045779493,-0.45245203,0.30041462,0.00983285,-0.15408915,-0.037290625,0.067482345,-0.4487265,0.12053737,-0.0016382749,-0.39216596,0.122272186,-0.36513376,-0.07356516,0.9635012,-0.27282122,0.34093857,-0.3694619,-0.49747145,-0.76175433,-0.29232767,0.4626207,-0.008807347,0.079445824,-0.4696557,0.087522306,-0.018312356,-0.11290128,-0.11827678,-0.51782167,0.50490993,0.06445987,0.5260438,-0.12583901,-0.73033303,0.09851691,0.24726513,-0.13701639,-0.56723875,0.5765308,-0.08029652,0.80338603,0.16266169,-0.091629036,0.31037152,-0.45033833,0.014056389,-0.2076649,-0.25687006,-0.86304104,0.082180314,22 -585,0.38959673,-0.16391477,-0.40309334,-0.16938281,-0.08042521,0.22584017,-0.07481403,0.34004498,0.036707804,-0.7383763,-0.26458633,-0.3102288,0.07293996,0.0991734,-0.3300142,-0.41867626,-0.117788315,-0.0054008435,-0.44251043,0.4152652,-0.35515273,0.3161379,0.22280653,0.27420112,0.21587516,0.17905606,0.28617176,-0.30913755,-0.16457932,-0.22783914,-0.20212562,0.24066482,-0.46071243,0.061793603,-0.12333885,-0.3934959,-0.0071381377,-0.4942823,-0.27729437,-0.7257086,0.41594598,-1.0961726,0.4609515,0.13431022,-0.010425268,0.38946393,0.116402,0.18456747,-0.11970905,0.0914758,0.20506257,-0.04401241,0.07574861,-0.14144915,-0.17723829,-0.37624598,-0.5267053,0.009359077,-0.33990258,-0.47300434,-0.34830812,0.09243429,-0.4133332,-0.08367752,-0.070539586,0.57002735,-0.44437784,0.08015826,0.11808555,-0.21772085,0.42867792,-0.6164559,-0.18570279,-0.10535893,0.37192565,-0.42711356,-0.08371293,0.031623732,0.46868366,0.3021537,-0.05464169,-0.032966275,-0.27973375,-0.13246034,0.11390303,0.4722404,-0.09731544,-0.645663,-0.016660823,0.08238165,0.10047865,0.24213482,0.1855151,-0.31799617,-0.12002105,0.050817635,-0.3211245,0.5159388,0.38205132,-0.47589657,-0.22791775,0.34743303,0.44952282,0.10589792,-0.058013394,-0.12658253,0.066296324,-0.52719694,-0.08545518,0.2808824,-0.21664833,0.5576905,-0.1169406,0.5068278,0.65259355,-0.28773227,0.18995728,0.038364884,0.008214629,-0.0843734,-0.17080715,-0.17241047,0.25879577,-0.3499483,0.11564334,-0.19966006,0.8638397,0.045012075,-0.6378508,0.3380635,-0.52044207,0.044500828,-0.16724798,0.48285314,0.35912955,0.3709367,0.18296486,0.60833895,-0.5581003,-0.092074364,-0.091115505,-0.46837646,-0.11170694,0.027357426,0.0063698567,-0.4350918,-0.09921629,-0.019290136,0.09284372,-0.049260065,0.28967652,-0.465068,-0.13056262,0.053596295,0.7986073,-0.29704756,-0.09864512,0.6792996,0.833954,0.7087095,0.040069398,1.1265541,0.20906542,-0.27246702,0.12041589,-0.22848353,-0.7347568,0.39928192,0.5377399,-0.41908896,0.1505163,0.078037456,0.06747715,0.15938647,-0.29429248,0.016804732,-0.32441413,0.028289188,0.13471155,-0.031477105,-0.36757028,-0.24319169,-0.11410063,0.071686186,0.21921143,0.11021476,-0.20349187,0.26189244,0.17928168,1.6860712,-0.13383134,0.24475804,0.097948186,0.2606857,0.1904203,0.11076461,-0.040319685,0.31523672,0.4180859,0.30545455,-0.62105054,0.21469408,-0.17548588,-0.4895704,-0.14156224,-0.31427068,-0.13780037,-0.028399624,-0.48082268,-0.07884412,-0.10538383,-0.4311268,0.42550057,-2.7444165,-0.2064845,-0.16847607,0.40095404,-0.3336578,-0.2987987,-0.10981589,-0.3899755,0.4414983,0.3091852,0.5506946,-0.6707841,0.2834463,0.5097297,-0.37443924,-0.2550716,-0.61077636,0.061198335,-0.11908049,0.23276758,0.03981138,-0.023319837,-0.024590803,0.041684214,0.4019624,-0.04598802,0.06733411,0.18704557,0.6041647,0.24092112,0.6485938,-0.091903,0.5110985,-0.12744972,-0.19128415,0.2587215,-0.23252736,0.16642563,0.025033249,0.22369565,0.40729067,-0.4040314,-0.7683183,-0.72354424,-0.49766928,1.2201343,-0.28645283,-0.47777265,0.26512125,-0.03360077,-0.2921818,-0.15294503,0.4761794,-0.12818179,0.032389496,-0.8101585,0.12854365,-0.15634057,0.23659772,0.010394246,-0.05077918,-0.45228055,0.6026135,-0.08275644,0.4728526,0.36344248,0.24290203,-0.35552424,-0.40921754,0.059391774,1.0548062,0.29142857,0.066954546,-0.0886693,-0.09180447,-0.2974739,0.13484243,0.0421604,0.52091223,0.6626688,0.16914023,0.10848415,0.26596692,0.0036578511,0.0981124,-0.17756788,-0.26624122,-0.101183325,-0.16879739,0.52205426,0.38140118,-0.17888477,0.6107557,-0.19379602,0.34431335,-0.2594533,-0.373224,0.43614656,0.95497954,-0.14012685,-0.19693913,0.6016188,0.42588013,-0.36094794,0.13630083,-0.566726,-0.285072,0.606617,-0.31510755,-0.56934017,0.26097175,-0.22648318,0.103914455,-1.0499352,0.3450386,-0.2578728,-0.32380205,-0.41581774,-0.018563144,-3.4852998,0.15118222,-0.28466046,-0.23647237,-0.14386629,-0.18667778,0.14207724,-0.6167469,-0.48867494,0.12407842,0.09837267,0.6978562,-0.023498526,0.25707084,-0.17845058,-0.07459076,-0.033718467,0.13348,0.04005212,0.15759078,0.032753564,-0.37901258,0.03936914,0.056947265,-0.43499333,0.16292745,-0.5753412,-0.5627905,-0.025308149,-0.47153598,-0.42823407,0.6893629,-0.27917883,-0.034918744,-0.07112608,0.07629823,-0.115487225,0.39759943,0.10829401,0.18890049,-0.05838959,-0.00089367654,0.05998045,-0.2961961,0.5014196,0.04546303,0.15693313,0.2827714,-0.22257556,0.18339302,0.37453717,0.37590078,0.12668554,0.7362137,0.39939877,-0.10022698,0.22565563,-0.35660747,-0.338646,-0.5724627,-0.29082385,0.12868336,-0.3827287,-0.52364594,-0.17505465,-0.2737131,-0.643814,0.62720406,-0.09146927,0.22753176,-0.076119445,0.54255,0.58159757,-0.12914366,0.0023831176,0.10808746,-0.15290396,-0.5153747,-0.19670725,-0.586173,-0.41274217,-0.049877226,0.6841367,-0.18833661,0.08511254,-0.09727533,-0.121579185,0.015766809,-0.051665742,0.005400362,0.2935828,0.49554652,-0.16981268,-0.67363095,0.663797,-0.19611512,-0.23271634,-0.5835484,0.066078134,0.77389556,-0.61890674,0.45976698,0.3984577,-0.09124798,-0.34446284,-0.32325906,-0.1750442,0.049635295,-0.2624761,0.2088298,0.17299189,-0.6058013,0.3504591,0.38507175,-0.008663891,-0.62704444,0.62664455,0.08824936,-0.47182435,0.025652183,0.3784272,0.09892397,-0.03747105,-0.16008314,0.13877891,-0.40723655,0.23721504,0.1278988,-0.061297618,0.51009136,-0.1103134,-0.07880974,-0.71094584,0.14317958,-0.42792732,-0.266925,0.38271824,0.1481499,0.13206293,0.5107929,-0.17346312,0.46217135,-0.40363076,0.020096745,-0.04328901,-0.06891444,0.22842595,0.3614406,0.30829796,-0.4549951,0.49738884,-0.07219652,-0.071960635,0.03926774,0.22311082,0.4657504,0.10564469,0.29000074,-0.096917994,-0.39737755,0.42006323,0.7310046,0.18815616,0.43130192,0.089850344,-0.00035597727,0.28340447,0.048297547,0.20738338,0.04016324,-0.6007895,-0.087825164,-0.12143298,0.0798949,0.39627558,0.06696303,0.26318526,-0.22242397,-0.41641915,0.026576761,0.28032023,0.2219016,-0.7789945,0.39064604,0.029016908,0.7763647,0.3006583,-0.0684176,0.05351108,0.636314,-0.16926514,0.19543648,0.22463912,-0.07321183,-0.4923248,0.5504964,-0.57767093,0.23753263,-0.039286926,-0.062201563,-0.089119785,-0.06621916,0.27180088,0.8426851,-0.13594855,0.05920119,-0.019278454,-0.2977947,0.21523465,-0.38212088,0.17079021,-0.5401437,-0.23138006,0.46733114,0.5073036,0.25469226,-0.081095345,0.05625336,0.07256103,-0.15787941,0.17652176,0.18224365,0.20632058,0.0074902615,-0.7321607,-0.16766739,0.5903978,0.2296372,0.18434732,-0.14965667,-0.08440506,0.3627626,-0.09897493,-0.031188993,-0.09977746,-0.58036506,0.0139332265,-0.41954768,-0.5005726,0.22873405,-0.25712037,0.26164916,0.13814856,-0.12416157,-0.20284067,0.26576394,0.4764779,0.63988185,-0.030171476,-0.18881734,-0.58076674,0.096636385,0.09379016,-0.09181265,-0.1444309,-0.2127004,0.13746499,-0.6332477,0.403607,0.0033485019,-0.20520085,0.079357974,-0.17835757,-0.07362814,0.5956626,-0.04265158,0.049199224,-0.0531235,-0.22512205,-0.19321857,-0.104481466,-0.17571017,0.21590108,0.26311573,0.001927126,-0.120165125,-0.18054944,-0.52517766,0.28429917,0.1277314,0.614505,0.4018391,0.1492669,-0.22176728,-0.23753908,0.15031086,0.44889596,-0.07964994,-0.16625316,-0.23132467,-0.5379046,-0.16820295,0.09939922,-0.06909895,0.2637704,0.085141934,-0.2140953,0.8066892,-0.15709947,1.0527837,0.08760489,-0.38951162,-0.100559935,0.4901641,-0.1016933,-0.17990834,-0.31354406,1.0865958,0.62370557,0.06539202,-0.0690715,-0.1941414,-0.081979275,0.08408335,-0.17608343,-0.1863529,-0.003544702,-0.47323975,-0.46452028,0.16131124,0.27315018,0.078563415,0.020111639,0.05754502,0.26842245,-0.053232074,0.4885596,-0.53753793,-0.18084182,0.15939993,0.28176516,0.004477868,0.24939528,-0.36490074,0.46983954,-0.53020626,0.1338858,-0.4434482,0.22746779,-0.052186176,-0.13471302,0.23822229,-0.058889948,0.44799095,-0.2826892,-0.42698172,-0.19976936,0.36362046,0.14271076,0.07874204,0.49137777,-0.11665922,0.1886947,0.04223652,0.6122528,1.1435176,-0.13617009,0.13484593,0.39540055,-0.4076508,-0.61401975,0.37912816,-0.31907687,0.21402901,-0.025451733,-0.056288794,-0.33083922,0.26122794,0.2680482,0.040296152,-0.1551113,-0.48461148,-0.25818124,0.48051903,-0.31561133,-0.22105831,-0.30871958,0.15255354,0.49225852,-0.24709767,-0.15253255,-0.08021276,0.28217837,-0.2290926,-0.5209014,-0.08431739,-0.420787,0.35986328,0.13737614,-0.34414476,-0.07332793,0.06643895,-0.3615216,0.1542258,0.02504147,-0.4021289,0.034994338,-0.11180059,-0.011522627,0.87610316,-0.082564645,-0.22095563,-0.6137469,-0.39790884,-0.82669044,-0.34579313,0.49758947,0.04355932,0.020443128,-0.46347564,0.07911576,-0.016080664,-0.16118789,-0.17915824,-0.32089895,0.39625633,0.11364957,0.6296884,-0.10121342,-0.8579252,0.0590637,0.05918522,-0.2360575,-0.6654958,0.5649496,0.028902348,0.69480765,0.024442334,0.06616633,0.43120924,-0.4515887,-0.16680536,-0.21487048,-0.28817672,-0.86785513,0.036874894,24 -586,0.5533228,-0.40894133,-0.5923264,-0.24056841,-0.21911699,0.03586492,-0.25075474,0.6646557,0.19635631,-0.4853088,-0.1797122,0.05646748,-0.024080876,0.35920265,0.0154700875,-0.56281525,-0.0037446665,0.35498646,-0.6640653,0.5251803,-0.39369744,0.16040958,-0.07940073,0.64388144,0.29449093,0.25272897,-0.11867808,0.029960118,-0.15168874,-0.081575885,0.013847397,0.33798987,-0.37735957,0.28115824,-0.18558449,-0.41550696,-0.29132405,-0.60439557,-0.41776758,-0.7423645,0.17995985,-0.7717961,0.6139508,-0.10497458,-0.4089771,0.013359157,0.05777602,0.48066708,-0.31456202,-0.032130823,0.15176545,-0.018159198,-0.30408147,-0.10615325,-0.09527263,-0.17449497,-0.59290755,-0.05450757,-0.33763042,0.079725794,-0.07877839,0.27922666,-0.19996366,0.106882825,-0.112706356,0.5974721,-0.39883798,-0.06685254,0.16431192,-0.10812301,0.36091608,-0.4748398,-0.1197976,-0.16804123,0.36910912,-0.15584596,-0.4308252,0.19357787,0.16494806,0.49115038,-0.062211607,-0.078305155,-0.35180503,-0.012312779,0.043324653,0.5059213,0.03211805,-0.5144403,-0.22673443,-0.036389105,0.18918014,0.19686519,0.1580554,-0.22641745,-0.1825501,-0.18967155,-0.09701499,0.36719117,0.4405003,-0.18806976,-0.08624126,0.31359354,0.63794875,0.12782852,-0.16346754,0.035352595,0.09333288,-0.59079003,-0.19770709,-0.03255826,-0.21213466,0.40287665,-0.13191846,0.33870074,0.42177275,0.034841035,-0.19432637,0.2549281,0.11021193,-0.025831103,-0.33120662,-0.39536947,0.2959553,-0.40380806,0.16472432,-0.24354944,0.4836577,0.23767152,-0.7094959,0.3092791,-0.46402022,0.063679665,-0.084709086,0.40355074,0.79966205,0.46092382,0.13849793,0.7664732,-0.21490526,0.10604984,-0.0474538,-0.09482109,-0.10308986,-0.21875867,0.063896134,-0.6209828,0.05540591,-0.13315384,-0.2321058,0.15644334,0.4615,-0.56423676,-0.16233467,0.21513884,0.802407,-0.29399613,-0.037470516,1.0232155,1.0152301,0.9891274,0.039525032,1.1542877,0.2438676,-0.31755683,0.1349394,-0.31560275,-0.71623933,0.37505376,0.36293015,0.18742102,0.3031262,-0.043907147,-0.06806204,0.55764043,-0.40755108,0.026438741,-0.07264574,0.033831157,-0.04484689,-0.029802024,-0.66194606,-0.34024078,-0.15731524,0.06506029,0.16122526,0.14731985,-0.27652663,0.63976395,-0.067751735,1.6409429,-0.080536924,0.06511155,-0.01008442,0.35098445,0.20602721,-0.3773422,-0.4056784,0.21226525,0.3953495,-0.048078492,-0.5941276,0.13735889,-0.17324565,-0.2611733,-0.29933375,-0.34468383,-0.029454857,-0.20981766,-0.38289055,-0.16073059,-0.03941711,-0.4001118,0.39004612,-2.5923085,-0.3540621,-0.1622928,0.3220165,-0.30965102,-0.4443288,-0.10243152,-0.4082724,0.34730127,0.2577876,0.63049877,-0.5337183,0.5158081,0.3937551,-0.62382823,0.059358083,-0.6425798,-0.2729124,0.09415608,0.16494487,0.03498544,-0.03081683,-0.032644793,0.12919283,0.4184289,-0.106130615,0.0972011,0.40712982,0.20764907,0.067743436,0.45724642,-0.0679077,0.6712373,-0.54045856,-0.23678233,0.3028943,-0.4326315,0.14391613,-0.13680974,0.1707235,0.6307351,-0.6543173,-0.922586,-0.8580155,-0.17311181,1.1235404,-0.18527542,-0.25605184,0.18189071,-0.70921665,-0.36880848,0.10412781,0.52291876,-0.12291944,-0.06243249,-0.8664941,-0.24045603,-0.02661943,0.32981807,-0.16951202,-0.14546323,-0.60574985,0.48190138,-0.056398228,0.5251836,0.32496855,0.20338401,-0.19111562,-0.3893729,0.03318236,0.9096493,0.3525998,0.18681644,-0.27983466,-0.1637875,-0.56831723,0.17879055,0.028083857,0.6017084,0.5866961,0.0006987269,0.12923637,0.2816203,0.033279598,0.15100034,-0.078547746,-0.22221228,-0.29859167,0.22249971,0.66115123,0.5629319,-0.052661553,0.57383025,-0.11171791,0.395371,-0.17333843,-0.46503463,0.44077396,0.9178543,-0.21216896,-0.5161308,0.75244606,0.43288502,-0.22621424,0.48428038,-0.54546916,-0.3157232,0.20688674,-0.052576296,-0.32888317,0.20236538,-0.31055164,0.3928246,-1.0946852,0.12810636,-0.42902324,-0.82491106,-0.65518284,-0.08602698,-2.9035916,0.24532501,0.08362438,-0.28109238,0.05595678,-0.2615907,0.12992369,-0.5372528,-0.79530555,0.27828372,-0.02309802,0.8990322,-0.14929543,-0.046634518,-0.14077197,-0.36222488,-0.31331545,0.18329129,0.23171535,0.36068565,0.097285144,-0.5482411,-0.246053,-0.18371758,-0.36508545,0.037228093,-0.8474544,-0.45454347,-0.10675208,-0.6433029,-0.12775192,0.6123842,-0.10741147,0.047616348,-0.17671707,0.088063434,-0.019812485,0.27404374,-0.071741804,0.17213152,0.26177922,-0.25241315,0.047048286,-0.124729104,0.13615258,0.09822833,0.17866285,0.113461405,-0.167322,0.40704444,0.6165475,0.92960835,-0.18353814,0.891519,0.5336611,-0.057765245,0.22344151,-0.28249544,-0.3826884,-0.27281532,-0.015527684,0.06727762,-0.48995447,-0.45307687,0.022648748,-0.4607095,-0.9014797,0.51793665,0.0426329,0.014640973,0.16635387,0.14570402,0.5436087,-0.29111946,-0.032514308,-0.24515864,-0.1030152,-0.43345338,-0.35375756,-0.55469507,-0.46295932,-0.03724242,1.3758155,-0.20850253,0.23416355,0.0703808,-0.43713468,0.04804682,0.38844806,-0.03660563,0.16912542,0.42084795,-0.15675949,-0.57758266,0.29118553,-0.15623893,-0.22230522,-0.508697,0.325228,0.6268399,-0.63355434,0.6809115,0.29267767,-0.06252175,-0.49451664,-0.50628686,-0.16602758,0.038736757,-0.16991061,0.50436634,0.24644886,-0.6657039,0.35976475,0.2723066,-0.14916357,-0.80816674,0.48684612,-0.032724444,-0.13309158,-0.1897494,0.39771155,-0.04188114,-0.012093567,-0.29452717,0.16608694,-0.1532524,0.23380607,0.16951694,-0.0092471745,0.04891344,-0.44197404,0.09283816,-0.76254654,-0.1329282,-0.6819518,-0.18485086,0.40315595,-0.025160488,0.27573332,0.08443405,0.13426705,0.3572461,-0.33526498,-0.010138225,-0.26625317,-0.4875233,0.25398067,0.42913342,0.412765,-0.46703207,0.6260628,0.06937021,-0.12641397,-0.19663168,-0.013705895,0.5365897,-0.1023884,0.58826464,-0.037220575,-0.19846597,0.18162738,0.8124268,0.25954416,0.29930094,0.024457918,-0.05842615,-0.10137923,0.043816563,0.30159342,-0.08031735,-0.45401397,0.14886865,-0.24215081,0.17483383,0.34601718,0.14631364,0.3342145,-0.10874827,-0.29973304,0.04663173,0.09601934,0.032243308,-1.5756085,0.53561795,0.26887706,1.0617633,0.42169836,0.07122162,-0.111059085,0.71287507,-0.18057297,0.155113,0.3374472,-0.17828694,-0.37882283,0.51851255,-0.73585993,0.612198,0.13368732,-0.0004468973,0.04692413,-0.33033815,0.6581922,0.8946762,-0.2258324,0.16029695,0.09615775,-0.22796114,0.11398744,-0.38191715,-0.19228356,-0.72831506,-0.25189322,0.7657635,0.5551511,0.40179527,-0.15019774,-0.05927652,0.29657784,-0.02630989,0.1489048,0.1019357,0.18496092,-0.013995464,-0.6574593,-0.09357795,0.37955564,-0.008018927,0.1682748,0.19192013,-0.11524929,0.18791558,0.008128141,0.058496237,-0.15111855,-0.67088276,-0.14445506,-0.47532716,-0.242654,0.39205888,-0.16412728,0.16986166,0.20591666,0.10819094,-0.21728815,0.61406577,-0.107820675,1.0450792,0.19486094,-0.14926825,-0.18480165,0.3239298,0.23016731,-0.27437666,-0.046580657,-0.435064,-0.018852536,-0.67736685,0.5090757,0.100095116,-0.5021627,0.28987753,0.024714626,0.17334546,0.45693696,-0.20542775,-0.17696404,-0.023733368,-0.042990573,-0.30113915,-0.16992377,-0.23478486,0.32183948,0.27784225,0.08420222,-0.12402714,0.12952633,0.027466664,0.6950026,-0.024954213,0.46801165,0.34254706,0.16278015,-0.2834698,0.014115453,0.2697948,0.61590225,0.0063952003,-0.18921486,-0.230268,-0.2591307,-0.4537675,0.29238892,-0.09279798,0.44603893,0.037229877,-0.04346941,0.6026014,0.07176034,1.1165183,-0.048825502,-0.3967004,0.17058149,0.50331974,-0.07414648,-0.10894971,-0.45057222,0.92956924,0.261023,-0.1498786,-0.1046698,-0.5236136,0.0067596207,0.09435233,-0.16912396,-0.26394537,-0.103939325,-0.5740496,-0.25600857,0.22352117,0.2262081,0.4306249,-0.1390729,0.25217688,0.36293843,-0.07106553,0.08871988,-0.37234586,-0.01933526,0.38336533,0.29287496,-0.034867767,0.07675632,-0.50302595,0.27093703,-0.63191956,0.017631888,-0.15528785,0.17630187,-0.22400977,-0.55053574,0.27735373,0.24180728,0.19669428,-0.3620965,-0.27777058,-0.33837205,0.63629496,0.17333056,0.00572656,0.47498754,-0.28245813,0.05038951,0.22080693,0.39666763,0.70983446,-0.28961673,0.09774454,0.34173286,-0.2597914,-0.48929417,0.35129797,-0.40198877,0.42486855,0.22647089,-0.30622515,-0.8467896,0.3227188,0.20288962,0.004842584,0.09658359,-0.5956613,-0.094863445,0.3142696,-0.13190803,-0.12750585,-0.39694065,0.0012950989,0.36285037,-0.095490746,-0.40585804,0.30560958,0.13727556,-0.28416026,-0.40174997,0.023452153,-0.42558828,0.1631341,-0.06568693,-0.4863078,-0.32382208,-0.11874997,-0.50243664,0.22880639,0.14795342,-0.32436174,0.15232986,-0.43711838,-0.23966265,1.1075813,-0.2861578,0.36175394,-0.45556968,-0.46187162,-0.7652482,-0.31957287,0.5086459,0.11007354,-0.16677158,-0.80610406,0.09935718,-0.18976498,-0.20237142,0.050421212,-0.2462759,0.42728445,0.1102239,0.38396665,-0.040040474,-0.88602674,0.2771045,0.115342766,-0.3216659,-0.5607646,0.3976185,0.13386843,0.9385204,0.03948122,0.28785926,0.32325083,-0.56338984,-0.18041772,-0.10321213,0.03643503,-0.5505048,-0.032789204,27 -587,0.31048667,-0.10620646,-0.43306655,-0.07459927,-0.084665075,-0.07329586,-0.036448937,0.66060644,0.11307001,-0.4009104,-0.2172517,-0.04182216,-0.11888974,0.3269131,-0.10886268,-0.5626508,0.04775403,0.24373667,-0.26704615,0.53778845,-0.5269705,0.31245878,-0.09446066,0.28244054,0.1566603,0.24376538,0.034906182,-0.2556794,-0.04942077,-0.020513095,-0.28405496,0.48953453,-0.24319752,0.1697537,0.062232018,-0.43103904,-0.053031147,-0.33180904,-0.2597936,-0.66273755,0.30614457,-0.6524192,0.36309943,0.04203038,-0.26058123,0.28102958,-0.1514251,0.2613171,-0.25204355,-0.042181905,0.18388234,-0.0041315374,-0.04044273,-0.17672116,0.000728676,-0.3130566,-0.60890764,0.037704222,-0.33860096,-0.072922915,-0.19122054,0.2262631,-0.4349473,-0.073385656,-0.034021184,0.2518096,-0.49111477,-0.13807756,0.074455746,-0.12351648,0.18912107,-0.6992185,-0.18346503,-0.080519564,0.2783241,-0.25496185,-0.09313573,0.28688976,0.33782637,0.45568582,0.034244403,-0.118241236,-0.34365135,0.044199586,0.03920004,0.56501114,-0.28686675,-0.4955831,-0.069548495,0.03386061,0.20269328,0.06954607,0.019477112,-0.22494048,-0.21987642,0.1345054,-0.29202312,0.1768855,0.46727446,-0.31795886,-0.40202862,0.43865788,0.4968882,0.09849807,0.007129527,-0.041935984,-0.064931326,-0.51817703,-0.111521214,-0.03885408,-0.2711723,0.41249827,-0.13947247,0.30664366,0.6425603,-0.029578106,0.19067171,0.073547766,-0.044892542,-0.123038374,-0.18952698,-0.19432674,0.19635841,-0.31933162,0.2392485,-0.08249296,0.8754123,0.10665776,-0.8502891,0.4371739,-0.45928568,0.11494963,-0.16940263,0.6107556,0.6299442,0.2715285,0.32287452,0.711774,-0.5411045,-0.0070535955,-0.022151526,-0.40596676,0.05750055,-0.011247997,-0.13573067,-0.5496175,0.041142646,0.21501541,-0.0443699,0.1961352,0.32467046,-0.7207912,0.016200492,0.08785884,0.62642914,-0.35699588,-0.10854261,0.66090554,0.9267251,0.9473975,0.01417704,1.0756857,0.17708237,-0.23286861,0.39730138,-0.5739218,-0.6774404,0.28086793,0.49426872,-0.27890572,0.18728957,0.13954374,-0.059439227,0.45722425,-0.31865945,-0.006955367,-0.1908851,0.103984304,0.034122773,-0.108686246,-0.4605474,-0.3878763,-0.1644825,0.047114868,0.08320796,0.32396692,-0.24171709,0.30475932,0.04392262,1.7237017,-0.052232977,0.13020031,0.08774216,0.4187489,0.09595155,-0.100284494,-0.12795907,0.2995996,0.4238053,-0.074142985,-0.56637335,0.10698596,-0.23470682,-0.5195599,-0.060833566,-0.18664446,-0.04583809,0.21551976,-0.37416604,-0.17686209,-0.12704149,-0.3665894,0.46886066,-2.7415936,-0.18990429,-0.095249385,0.30323452,-0.29480854,-0.44365087,-0.20992014,-0.46782523,0.38270232,0.34607476,0.6006203,-0.6506639,0.28463882,0.25597918,-0.4890142,-0.14415498,-0.609332,-0.0653766,0.0077126324,0.18758829,-0.012049641,-0.010434077,0.12888822,-0.13586973,0.4087491,-0.005258496,0.0021861035,0.36493367,0.24697652,0.2720209,0.2810224,0.06752586,0.5375691,-0.17652358,-0.18744189,0.22493964,-0.28788865,0.2727771,-0.1978896,0.1971711,0.36541304,-0.47643808,-0.85593927,-0.6110642,-0.35782588,1.3478355,-0.17900573,-0.24885274,0.40505356,-0.14251786,-0.17306818,-0.18790714,0.38401905,-0.2851477,-0.2781464,-0.80570644,0.044146802,-0.1547702,0.15542994,0.05647478,-0.17436275,-0.440928,0.55306286,-0.09200318,0.49871862,0.3266307,0.19450632,-0.14478253,-0.4168206,0.014283139,0.9095836,0.3090304,0.13820376,-0.105058596,-0.11116375,-0.34789017,-0.0927521,0.16725841,0.35209173,0.7143848,0.058304913,0.06300401,0.36993012,0.116984025,0.063329026,-0.1597642,-0.28377318,-0.091657594,0.133806,0.58757615,0.6074486,-0.2869902,0.42948583,0.002720505,0.09316723,-0.120137945,-0.43952164,0.52762944,0.7814733,-0.1563507,-0.14028165,0.5653969,0.46006715,-0.13507722,0.40602794,-0.55352455,-0.25317866,0.36457494,-0.2837098,-0.35341975,0.09725877,-0.2899316,0.17675558,-0.85227054,0.25382447,-0.2546409,-0.5045651,-0.51367015,0.10112997,-3.304197,0.16927901,-0.39402443,-0.26400656,-0.053755715,-0.13600144,0.18930772,-0.7293738,-0.48324382,0.14325103,0.17252067,0.55524296,-0.0537987,0.011864474,-0.22251384,-0.20384462,-0.308544,-0.010918226,-0.036055896,0.36087814,0.22751379,-0.41807276,0.0632091,-0.05975948,-0.3256709,0.16466564,-0.4642343,-0.3900797,-0.11953438,-0.643815,-0.33055422,0.64122295,-0.46862543,0.036474757,-0.181382,-0.030247826,-0.18130316,0.4027712,0.053673822,0.068799935,-0.01667592,-0.011512073,0.02646779,-0.2413315,0.3645108,0.07379744,0.28743884,0.47753188,-0.21264221,0.16710363,0.60392773,0.6013372,-0.15965725,0.8493821,0.62031007,-0.13923874,0.17209934,-0.31532687,-0.14370838,-0.5561427,-0.4368668,0.046089277,-0.36575463,-0.51183605,-0.074788816,-0.37529275,-0.861071,0.44238853,-0.035740294,0.24852313,0.066757694,0.04871972,0.47912973,-0.06694431,-0.005308094,-0.13448368,-0.034333073,-0.5410501,-0.20124197,-0.71806175,-0.42906114,0.26447916,1.0263127,-0.28746554,0.012653149,-0.035914037,-0.19176747,-0.08352533,0.017008957,0.00033389375,0.12551028,0.25257662,-0.16971834,-0.6700424,0.43491876,-0.017573697,-0.10962633,-0.4693437,0.11331771,0.44900066,-0.61955,0.49146733,0.24465129,0.0063371933,0.1289131,-0.5674319,-0.28378528,-0.13661817,-0.19279231,0.31535128,0.19924138,-0.5846806,0.32871932,0.4778088,-0.19617875,-0.74505985,0.33656073,-0.07333729,-0.19814745,-0.05614511,0.26511434,0.13001339,0.029774755,-0.08926841,0.062763676,-0.48240057,0.47800416,0.2014034,-0.106227785,0.38357055,-0.19749771,-0.0059010247,-0.78409857,0.039537787,-0.54539055,-0.15916674,0.16218534,0.19324173,0.14325362,0.047537234,0.113235064,0.38795426,-0.33052298,0.06855537,0.1841779,-0.12295132,0.14380725,0.39822945,0.490895,-0.3784663,0.47959086,0.034278784,-0.073494144,-0.23624101,0.041895024,0.45758745,0.09750286,0.24755408,-0.0842965,-0.32335502,0.31277892,0.82119113,0.25645673,0.35512277,-0.11884037,-0.12849572,0.16409056,0.03018298,0.17863399,0.13822904,-0.45940349,0.013636275,-0.054673985,0.23034628,0.58521944,0.17945395,0.2402013,-0.18499902,-0.3346391,0.06288996,0.2652082,-0.026159497,-1.02575,0.5343413,0.23924369,0.7463032,0.56620795,-0.006824136,0.02437046,0.5564226,-0.23558778,0.24084964,0.24897368,-0.13930959,-0.67954767,0.58633256,-0.73367023,0.3805677,-0.01681867,0.02831438,0.05583171,-0.14264415,0.28013825,0.66779834,-0.1243811,0.017676326,-0.093770236,-0.26548418,0.007778665,-0.3218052,0.039455533,-0.6060208,-0.12868546,0.5585175,0.5670863,0.27276012,-0.107374065,0.009425988,0.084981255,0.0065898667,0.068225734,-0.022133969,0.20508316,-0.06914335,-0.58175457,-0.26020917,0.47713497,-0.12736043,0.10922984,0.034789972,-0.21640676,0.19990891,-0.2865667,-0.14335938,-0.11090893,-0.45638335,0.13976619,-0.0991321,-0.21768573,0.43326595,-0.07685049,0.27831239,0.15647508,0.12271835,-0.16544344,0.26551467,0.06523712,0.70927644,-0.013705533,-0.20389582,-0.39984724,0.23875938,0.16286983,-0.06605658,-0.083276,-0.21557982,-0.10555197,-0.46222988,0.42678502,0.06779109,-0.128953,0.1211157,-0.11024336,0.020353535,0.49000877,-0.109716244,-0.104004435,-0.0005157819,-0.13824807,-0.26208827,-0.1168594,-0.25758365,0.19277433,0.2751846,0.0963976,-0.12170148,-0.12830596,-0.2556922,0.4391125,0.07968083,0.24618043,0.19373809,0.11488153,-0.27842748,-0.27273935,0.13410392,0.3099671,0.060526617,-0.11971072,-0.2725464,-0.43634585,-0.40185565,-0.011388989,-0.14009264,0.41585514,0.06239162,-0.24666539,0.55602705,0.14781228,1.132849,0.10471801,-0.2406524,0.026410818,0.46420103,0.054085713,-0.015901098,-0.28399214,0.985444,0.598481,-0.10371557,-0.10064106,-0.33350295,-0.1814134,0.30371284,-0.17318083,-0.047602296,0.052855697,-0.6520083,-0.42539388,0.2635824,0.2369776,0.010061349,-0.0005960831,-0.021422245,0.17270008,0.1644014,0.34199432,-0.42487213,-0.32672802,0.2802126,0.2168732,0.08003019,0.2625799,-0.3905669,0.45394972,-0.49174693,0.08313879,-0.22301127,0.13418953,-0.2634303,-0.27830505,0.23208585,0.09770254,0.43641666,-0.12436298,-0.38903776,-0.17983668,0.56037307,0.011439488,0.11045706,0.46960512,-0.34437975,0.0026392569,-0.028103847,0.3800138,0.98976034,-0.18473285,-0.029921012,0.49707538,-0.24903029,-0.5750439,0.3447884,-0.19535066,0.078778,-0.11357632,-0.2713374,-0.4221953,0.30634263,0.17647734,-0.032617502,0.105348736,-0.5061831,-0.23327112,0.13183784,-0.33438858,-0.2477464,-0.2686406,0.24754788,0.7320899,-0.50599515,-0.52091736,0.20702553,0.23194383,-0.13797016,-0.5570894,-0.02667305,-0.35838187,0.2564276,0.1950937,-0.37362245,-0.16594452,0.1725178,-0.3153196,0.10105069,0.2165533,-0.35104477,0.17630757,-0.33394983,-0.017677357,1.0238615,-0.2029683,0.2570713,-0.62549716,-0.3032159,-0.7943154,-0.50351244,0.6439517,0.2258091,-0.05943467,-0.66869164,0.16491161,-0.03569847,-0.16431347,-0.20659655,-0.3014818,0.4961856,0.14848047,0.277238,-0.10024214,-0.68718106,0.1386449,0.090445094,-0.0090891905,-0.5556902,0.45511377,0.054773487,0.8959325,0.12450691,0.046753485,0.22301282,-0.3330415,-0.060995534,-0.36472055,-0.28356007,-0.75547504,0.034269057,31 -588,0.28611264,-0.045588456,-0.6601573,-0.09215849,0.01502285,0.17182139,-0.28146034,0.5144429,0.1307881,-0.40398115,-0.01702707,0.080952756,-0.1362218,0.21988402,-0.32696593,-0.51045316,0.085225396,0.06024388,-0.4507398,0.37343648,-0.42840952,0.24556476,-0.15114962,0.20053647,-0.12589838,0.1866342,0.23158763,0.09755587,0.1083341,-0.28990364,0.33914688,0.22611207,-0.66944337,0.27895048,-0.16447753,-0.28114033,-0.04250504,-0.3253732,-0.41118643,-0.7434131,0.26251376,-0.80922294,0.57306474,-0.007300817,-0.4036865,0.3960629,0.27352205,0.17598683,-0.1982103,-0.19060972,0.12017162,-0.06959026,-0.36240003,-0.16648835,0.035836086,-0.31589717,-0.48977518,0.06912727,-0.51924413,0.083594054,-0.39281705,0.20954292,-0.34718192,0.27014765,-0.24743032,0.36445755,-0.40498215,-0.14294931,0.16354752,-0.07992069,0.24678388,-0.44468027,-0.09214806,-0.063183576,0.23985913,-0.005330966,-0.061941784,0.2614406,0.12711391,0.42164236,-0.21329951,-0.103898875,-0.20159823,-0.16293874,0.118529126,0.48422697,-0.24470761,-0.2721905,-0.045822464,-0.09691242,0.3343837,0.09299052,0.08816891,-0.07535825,-0.0670793,0.12471198,-0.3790386,0.32831118,0.56543547,-0.36253107,-0.015282675,0.4658937,0.58446014,0.06528182,-0.03510295,0.15426,-0.06469373,-0.44464457,-0.23324347,-0.1398413,-0.1818534,0.4769315,-0.048241753,0.2881418,0.53575224,-0.15598583,-0.035003994,0.3157097,-0.0058813393,-0.014187849,-0.18061253,-0.23678383,0.2432748,-0.43266723,0.05841944,-0.23979566,0.6204436,-0.12645718,-0.73466784,0.4244614,-0.3720559,0.086979166,-0.046212114,0.63678837,0.7175791,0.63606507,0.1369082,0.8789259,-0.5273823,-0.21464072,-0.06707467,-0.28374243,0.35783678,-0.18601784,-0.023608737,-0.34867877,0.004530797,0.2982055,-0.05982646,0.18749124,0.28410432,-0.44576278,-0.10623335,0.08187667,0.62176216,-0.20792459,-0.024132691,0.74692374,1.3533758,0.93867743,0.19196051,1.0001153,0.055497758,-0.085206784,-0.20148802,0.14612073,-0.9781651,0.2501458,0.37303,0.09362502,0.2853468,0.116137706,-0.10411307,0.44417593,-0.5178217,-0.24676356,-0.0016232178,0.53288436,-0.09728925,-0.24965762,-0.3701896,-0.15999912,0.29245317,0.06642214,0.17986466,0.37090585,-0.22970611,0.32868415,0.24454531,0.8591039,-0.059876613,0.13928157,0.20439078,0.28538805,0.13464016,-0.23944512,-0.003264913,0.152076,0.26757532,0.15720709,-0.54369134,0.11505875,-0.13762699,-0.4311489,-0.1567865,-0.31102097,-0.01639534,-0.21851608,-0.25807902,-0.21924207,-0.23330887,-0.31791827,0.3418915,-2.8365176,-0.17486414,-0.21680523,0.2766635,-0.074659035,-0.13613781,-0.038594764,-0.43278176,0.4331096,0.42473084,0.42458266,-0.5519305,0.48033333,0.45160118,-0.4625196,-0.007640288,-0.54483443,-0.02424867,-0.027342508,0.3724176,0.18472229,-0.1771319,0.008350221,0.2899283,0.3885584,0.022887945,0.14240576,0.30345872,0.3403301,-0.17648305,0.27566078,-0.17261837,0.49374706,-0.37120965,-0.18584412,0.322069,-0.69978994,0.24632171,-0.3363897,0.13566203,0.24633066,-0.38817802,-0.841179,-0.5516461,-0.1556007,1.5492821,-0.27018026,-0.6597185,0.107868195,-0.14285852,-0.352762,-0.04053569,0.3674578,-0.2718611,-0.0340203,-0.85749656,0.08166012,-0.34396964,0.28054315,-0.165074,-0.049698435,-0.53196084,0.65931916,-0.0901425,0.6709953,0.2916733,0.12800075,-0.42993638,-0.30157697,-0.011465659,1.0357486,0.6784164,0.10442774,-0.12693591,-0.11947604,-0.20210545,-0.18335792,0.14966148,0.74244654,0.49937394,0.08607061,0.17062292,0.25480053,-0.0069438657,-0.00027818634,-0.08589783,-0.33975995,-0.09647115,0.09139326,0.71404135,0.6391062,-0.26316884,0.059033062,-0.018113706,0.27074564,-0.28270167,-0.42248896,0.41561854,0.45323408,-0.06232634,-0.2609964,0.72142655,0.59030944,-0.16542605,0.51490057,-0.5674009,-0.57360935,0.23977147,-0.07973427,-0.22237632,0.17184165,-0.29119352,0.10411239,-0.7344066,0.391405,-0.4271628,-0.79708266,-0.4961874,-0.042458452,-3.1104035,0.04361393,-0.07523081,-0.121510014,-0.3261199,-0.093316756,0.35397515,-0.44816086,-0.7549022,0.0070752734,0.09876262,0.6356273,-0.1277444,-0.06528611,-0.09323232,-0.3583353,-0.20016289,0.12006117,0.23421417,0.24220756,0.054110922,-0.3580117,-0.2598477,-0.28769,-0.33901978,-0.10426049,-0.34613118,-0.4382167,-0.13452639,-0.34586936,-0.1825095,0.6167688,-0.3527926,-0.0073516737,-0.29155648,0.020549534,-0.090073936,0.35752928,0.04085488,0.14356701,-0.026685545,-0.24454212,0.10825158,-0.33354574,0.495669,-0.030466259,0.43610147,0.44439527,-0.33795893,-0.0019169336,0.5912809,0.5691181,-0.08327002,1.0329101,0.10388624,-0.07667721,0.37991598,-0.15589556,-0.3090246,-0.42443487,-0.1500229,0.23820797,-0.34685224,-0.20134772,-0.026319297,-0.34843698,-0.83202994,0.4693173,-0.027883004,0.24290441,-0.18743397,0.3244948,0.29215446,-0.018698262,-0.10868655,-0.19519949,-0.157866,-0.45411536,-0.28919703,-0.81820476,-0.36768538,0.012593044,0.96709126,-0.11475844,-0.012048084,0.16570441,0.10917136,0.16345993,0.04921406,0.21805796,0.0643668,0.3496418,0.106278926,-0.64456546,0.39061838,-0.25467372,-0.044742387,-0.6408304,0.05581768,0.48838475,-0.5989593,0.3361509,0.48471928,0.17518005,-0.028991185,-0.72341084,-0.08850336,-0.06783008,-0.23076572,0.4530636,0.3558572,-1.0902123,0.6244468,0.36471635,-0.27411312,-0.59379494,0.5037175,-0.1117472,0.11384256,-0.010015974,0.41724703,-0.011951355,0.019880982,-0.064395264,0.19108321,-0.34362918,0.32051337,0.16382283,-0.1718927,0.5489714,-0.26034886,0.0026559418,-0.5220048,-0.08322878,-0.5965145,-0.07798466,-0.058988035,-0.16452307,-0.14757007,0.18313466,0.068450615,0.46190885,-0.40156028,0.089965455,-0.08251275,-0.35918996,0.47886416,0.55354726,0.5075515,-0.36385533,0.7101006,0.1873743,-0.03746714,-0.19414097,0.014944205,0.46349475,0.003380512,0.34811532,0.1647714,0.06340706,0.23699385,0.8244792,0.16515169,0.33477384,0.06438237,-0.12524644,0.20363666,0.049076274,0.14588788,0.10236541,-0.56638235,-0.060423907,-0.3391012,0.13303365,0.55676407,0.17658156,0.39603487,-0.087062925,-0.313319,0.062931634,0.23701873,-0.21967179,-1.3816744,0.47263706,-0.0046461085,0.6809563,0.38667658,0.08659156,0.10911063,0.5810571,-0.10602085,0.06862248,0.25506586,-0.019124731,-0.45053992,0.651051,-0.86779225,0.481832,0.042650536,0.03929681,0.14370142,-0.041595016,0.42082736,0.7442324,-0.034238517,0.16869868,0.058574576,-0.30929285,0.2124864,-0.36988208,0.15909846,-0.258845,-0.22709168,0.627807,0.4289923,0.47037113,-0.26987612,-0.018195044,0.021555573,-0.19390449,0.20179224,-0.11390884,0.13922289,-0.34159952,-0.45319417,-0.14176014,0.45435122,0.21201529,0.1509175,-0.06059203,-0.104113966,0.240132,0.02379377,0.07457463,0.007246467,-0.52802426,0.10847884,-0.35525757,-0.38487074,0.2472345,-0.11235301,0.25900137,0.263391,0.06023033,-0.3424118,0.085172705,0.077769116,0.5779983,-0.05122706,-0.24428302,-0.19654736,0.15078592,0.16026203,-0.27236497,-0.018066676,-0.39901888,0.11426859,-0.46860936,0.42296457,-0.38542286,-0.35480398,0.2480833,-0.17717694,0.013823757,0.42691943,-0.27659413,-0.11449296,0.013635506,-0.11765304,-0.18840814,-0.39536387,-0.20002827,0.0587711,0.07141857,-0.058293976,-0.09138464,-0.13291083,-0.1704634,0.15454096,0.09179624,0.16406378,0.5438466,0.024460059,-0.4683237,-0.013960628,0.024322303,0.58662456,0.031749465,-0.10110913,-0.476558,-0.6396008,-0.36829174,0.45453116,-0.028546821,0.22607344,0.1268328,-0.17125331,0.5042762,-0.01935548,0.75727326,0.11334122,-0.27024487,0.045336504,0.70471126,-0.02860415,-0.19842988,-0.21550342,0.86258656,0.5173837,-0.2042251,-0.06610553,-0.5118543,-0.02018017,0.10961296,-0.20422395,-0.27911618,-0.046397455,-0.86198723,-0.14821993,0.13214605,0.4139603,0.04889321,-0.13275836,-0.03260732,0.33157083,0.22039758,0.13375495,-0.4596663,-0.14288369,0.5190244,0.09874598,-0.17646316,-0.061668772,-0.34773305,0.19426724,-0.6424438,-0.1035832,-0.2927177,-0.0017166688,-0.12653975,-0.4644775,0.15742208,-0.0018182168,0.24435924,-0.22533189,-0.27712232,0.16368225,0.26775783,0.23700966,0.15415166,0.5864599,-0.14099035,0.019227443,0.12747526,0.5000609,0.85247934,-0.16023342,0.106721014,0.10344183,-0.41035435,-0.78164315,0.13019894,-0.3463839,0.3125629,-0.13020323,-0.37147692,-0.56632435,0.36679834,0.19900614,0.0024980397,0.07125473,-0.45454848,-0.21228816,0.08219561,-0.41031355,-0.21274918,-0.3717562,-0.1028963,0.5345806,-0.17642856,-0.19228008,0.07440085,0.38833237,-0.20082997,-0.5773498,-0.048854902,-0.29739365,0.25331125,0.030811597,-0.38596252,-0.0052962303,0.09643707,-0.36313564,0.382174,0.21938442,-0.24403447,0.0525778,-0.3885116,0.14753269,0.5717649,-0.20769209,0.14144193,-0.51698875,-0.5920138,-0.81786036,-0.32583874,0.3472843,0.21354786,-0.036240127,-0.61589277,-0.08588183,-0.27720627,-0.017285805,-0.15045235,-0.38355243,0.36779326,0.16163523,0.36972588,-0.07067612,-0.7250918,0.013241436,0.027003665,-0.055602446,-0.26380068,0.64288723,-0.13415888,0.64633346,0.10014378,0.14186025,0.14944175,-0.6015075,0.19472817,-0.1106976,-0.070011415,-0.47834498,0.1714449,33 -589,0.39797255,-0.11220067,-0.57722735,-0.24562782,-0.48370212,0.086108215,-0.35746977,0.2348191,0.29992616,-0.3305756,-0.2569161,-0.24906777,0.18743426,0.31099054,-0.05720145,-0.70458424,0.15297304,0.3552092,-0.7565742,0.32717085,-0.6244695,0.4185848,0.15710226,0.43957442,0.18172738,0.37345928,0.25016886,-0.06998248,-0.082131274,-0.1492465,-0.2536855,0.14174426,-0.5209823,0.021902302,-0.29651967,-0.4720248,0.10162126,-0.44692978,-0.062328998,-0.8000182,0.14137991,-0.98157626,0.53363895,-0.044001997,-0.23981097,-0.16903411,0.5184727,0.30921227,-0.45670876,0.25313595,0.18335755,-0.38449982,-0.2535386,-0.48429665,-0.28761598,-0.5188912,-0.5574851,-0.19669078,-0.55843794,-0.35758007,-0.18968041,0.27791047,-0.26271385,0.10890524,-0.055751618,0.26701772,-0.37324733,-0.016213706,0.32238102,-0.3571248,0.09039916,-0.48356915,-0.036570396,-0.123593606,0.5921643,0.07864182,-0.23667358,0.35966456,0.41113868,0.5246289,0.28910863,-0.26784986,-0.39293692,-0.26058796,-0.06120469,0.53796315,-0.12744766,-0.183875,-0.28838503,-0.1816512,0.35296285,0.5049013,0.014067107,-0.086422905,0.04029135,-0.32215637,-0.16585176,0.43343204,0.5133326,-0.43964446,-0.28636706,0.17715016,0.54140306,0.018572252,-0.32186922,0.09380691,0.16968364,-0.6313098,-0.24844159,0.04907397,0.045917787,0.5536406,-0.13622223,0.066555284,0.7661854,-0.05237677,0.038640976,-0.051504456,0.12817748,-0.1743496,-0.40659383,-0.28453556,0.33589894,-0.55251884,-0.11829701,-0.39098135,0.6678614,0.08039444,-0.5487702,0.48959133,-0.616246,0.061427884,-0.074873455,0.55838645,0.6322575,0.38006634,0.2769219,0.8179332,-0.20029303,0.23071964,-0.09540342,-0.27668113,0.121562704,-0.27827498,0.3376905,-0.42686364,0.3420468,-0.22741278,0.08322504,0.32324106,0.7345705,-0.43574816,-0.25878322,0.35373095,0.89005876,-0.3646816,-0.059777625,0.6299759,1.0483739,1.1728287,-0.079750136,1.2960429,0.41616076,-0.31403944,-0.2029229,-0.12557222,-0.56849635,0.1401217,0.19530566,-0.08807344,0.24957822,-0.1077576,-0.07571916,0.34556806,-0.323484,0.0034907688,0.01849262,0.19047913,0.09153095,0.11705831,-0.49975127,-0.20664747,0.12992097,-0.070447475,0.47614992,0.27969033,-0.30147383,0.4127812,-0.26613453,1.4720991,-0.05376864,0.07113419,0.23779385,0.5193784,0.37684706,-0.17566817,-0.04261684,0.4113981,0.17146803,-0.1372622,-0.5435255,0.09763791,-0.4016894,-0.2700316,-0.21949029,-0.40409258,-0.18764012,0.037700973,-0.42641932,-0.32824802,0.017236412,-0.36925462,0.38218307,-2.4353075,-0.37471014,-0.15463202,0.41465107,-0.23561452,-0.20982471,-0.5203525,-0.534927,0.35090506,0.106470056,0.5124043,-0.50941896,0.5584667,0.6344892,-0.5164102,-0.361887,-0.6902421,-0.011832494,-0.18877584,0.17958471,0.023707481,-0.40697446,-0.26969653,0.119243145,0.67139906,0.010752697,0.18751042,0.6474156,0.46978092,0.21508947,0.664867,0.04719525,0.6268105,-0.42914233,-0.27757305,0.3582186,-0.49281856,0.16508238,-0.20339431,0.12709872,0.71708894,-0.6017462,-0.99225795,-0.7047269,-0.096714534,0.8813655,-0.36863822,-0.6163541,0.084667616,-0.16670305,-0.18351103,0.20625709,0.7723472,-0.06135507,0.25944206,-0.6953138,0.08748814,0.04440065,0.2986205,0.10961339,-0.0040628817,-0.40775138,0.70479214,-0.18093036,0.47632602,0.08879215,0.24111421,-0.38278395,-0.23985133,0.10499439,0.89424163,0.13242105,0.059732113,-0.22354446,-0.28682846,-0.24605069,-0.27905992,-0.04054087,0.6170066,0.7170848,-0.20412898,0.16095644,0.4354931,-0.06409593,0.08380615,-0.16760461,-0.28552052,-0.08275115,0.13475358,0.5348728,0.79915625,-0.0030090695,0.4287454,-0.22677723,0.5490858,-0.3920747,-0.61678654,0.5440005,0.62548965,-0.20642884,-0.11142396,0.5438474,0.4909948,-0.6019348,0.60817695,-0.8056473,-0.5286562,0.5042108,-0.18569177,-0.42330676,0.1780307,-0.33906782,0.24344124,-0.6529767,0.16626072,-0.19578153,-0.31611106,-0.45173308,-0.33310336,-2.9522905,0.3334403,-0.04514139,0.08435827,-0.23460759,-0.075652845,0.30587906,-0.52356744,-0.5619185,0.08332589,0.23596287,0.73581374,-0.081875555,0.1855091,-0.34160584,-0.35712713,-0.15396605,0.30579227,0.006030078,0.31341556,-0.052981,-0.46256483,0.08293799,-0.019488137,-0.45690867,0.051722784,-0.73263544,-0.4644775,-0.088084474,-0.6361894,-0.3491481,0.6068544,-0.55614144,0.09471896,-0.37065023,0.10716375,-0.19106875,0.017932901,0.1466468,0.24997407,0.18709286,-0.14321494,0.22336677,-0.21549273,0.4323858,-0.12817457,0.2502256,0.13745862,0.09806083,0.0032362158,0.34589735,0.67168164,-0.23171768,1.1204362,0.2310401,0.011683964,0.20208819,-0.29170275,-0.29282507,-0.45466515,-0.31412128,-0.14335403,-0.505041,-0.384968,0.0058789025,-0.32060513,-0.85035646,0.7394718,0.054271843,0.24963917,0.025495112,0.4212007,0.39714986,-0.30203244,-0.058063462,-0.059599824,-0.12635861,-0.38058096,-0.2693848,-0.72033626,-0.5430755,0.23326617,0.97806895,-0.3837046,0.07898005,0.13498607,-0.18806031,-0.0023288017,0.35143763,0.1933658,0.22884059,0.66276836,0.008071088,-0.6271511,0.25439608,-0.2811639,-0.14627862,-0.59972006,0.14251274,0.7225422,-0.89110476,0.70781195,0.5072057,0.07962256,-0.20997477,-0.5181067,-0.23216587,-0.011092415,-0.23799445,0.40207213,0.12278696,-0.8202001,0.41748813,0.21640667,-0.5468616,-0.7436374,0.2043834,-0.21456665,-0.33108887,-0.12389346,0.40273842,0.27355677,-0.1261985,-0.19515419,0.01964378,-0.4527079,0.2543693,0.13655171,-0.07874218,0.514615,-0.23046957,-0.3569813,-0.77344966,-0.12735373,-0.45691025,-0.29269168,0.2886674,-0.07003938,-0.03903451,0.37846866,0.055268984,0.34004456,-0.2571994,0.074556574,-0.20910607,-0.27099082,0.2521689,0.2450342,0.45784223,-0.42315677,0.658535,0.016967379,-0.2425968,0.11926126,-0.032999154,0.3562539,0.042173427,0.6119156,-0.20139845,-0.17967036,0.3028556,0.7116474,0.18207575,0.46642727,0.26760596,-0.06196582,0.30259842,0.073381156,-0.05951488,-0.10819466,-0.4520659,-0.020102564,-0.33902976,0.18206836,0.52631193,0.2207873,0.52187455,0.113869995,-0.111179754,0.030520616,0.22241364,-0.37612152,-1.1251352,0.23218727,0.26272878,0.8708481,0.3533312,0.15260457,-0.32215744,0.60327125,-0.19239958,0.16449703,0.34530416,-0.07459772,-0.33920696,0.7975904,-0.5024104,0.4610853,-0.30435684,-0.069809094,0.09641704,0.20123771,0.41797277,0.82261854,-0.09853714,0.09198889,0.011192741,-0.20277621,0.022639852,-0.252787,0.084642425,-0.4514372,-0.36096317,0.8430053,0.37593862,0.4847214,-0.16990305,-0.15482217,0.014872755,-0.16989629,0.13471286,0.008297732,0.08704743,0.1337884,-0.5912813,-0.029274046,0.5610344,0.10846488,0.19148847,0.039442554,-0.3569361,0.20532015,-0.21564132,0.22493488,-0.08540491,-0.67971647,0.015992014,-0.3543568,-0.59108937,0.51336914,-0.117589876,0.08089293,0.18069285,0.05351563,-0.07937626,0.37080938,0.13570566,0.78316885,0.08509931,-0.16566047,-0.17542681,0.2044099,0.2734695,-0.34660733,0.1368638,-0.46751112,0.19628789,-0.6553358,0.6141436,-0.20253134,-0.44847167,0.30465147,-0.086785905,-0.08380599,0.5437896,-0.15239675,-0.040572014,0.152393,-0.15742522,-0.46497992,0.031314198,-0.45808363,0.18813089,0.09044993,-0.11934969,-0.25040683,-0.19049941,0.062189046,0.53334785,-0.087601885,0.3626839,0.37403548,0.2955467,-0.0847753,0.29731968,0.075140804,0.6955165,0.050639458,-0.039139714,-0.40733194,-0.4002852,-0.26568532,0.4546263,-0.0839934,0.17608148,0.16545175,-0.28877637,1.0783043,-0.025713142,1.0858797,0.0747613,-0.3762253,0.09302902,0.5149488,0.10207906,0.0527014,-0.37216404,1.0768036,0.5838085,-0.2565147,-0.06907041,-0.34143475,-0.13837855,0.38618916,-0.42359117,-0.1786177,-0.086513035,-0.69832104,-0.44817767,0.30007404,0.32622454,0.25648946,-0.2552362,0.42692775,0.093950786,0.19825247,0.2815456,-0.7075773,-0.29689506,0.28283325,0.42582148,-0.16339302,0.22483198,-0.28853515,0.3263141,-0.7977434,0.09303951,-0.65416473,0.04608289,-0.17353882,-0.48333898,0.19685364,0.21434556,0.34601104,-0.37345988,-0.30329192,-0.1088162,0.49451712,0.16932064,0.22293904,0.61397564,-0.2745194,-0.1240374,0.092050314,0.71014875,1.4004188,-0.45980594,0.02795296,0.45180196,-0.4515556,-0.7634385,0.32337168,-0.5389858,-0.12590139,0.006431639,-0.5786885,-0.41170275,0.26510268,0.14580235,-0.0018018186,0.14127992,-0.44620323,-0.000106774845,0.26499608,-0.19794115,-0.20957616,-0.13662575,0.43443763,0.58782387,0.019539138,-0.31480363,-0.018280277,0.39769384,-0.37760845,-0.5890666,0.08977066,-0.3850488,0.37236336,0.17084478,-0.2625715,-0.023041992,-0.01391171,-0.59150285,0.08907977,0.17519954,-0.35080928,0.1932911,-0.4085934,0.08673591,0.8799792,-0.04013588,0.015276661,-0.5048512,-0.5306989,-0.953087,-0.23930615,0.29900283,0.06288673,-0.017631318,-0.3319321,0.08172734,-0.23035452,-0.39124373,0.22277552,-0.42320046,0.36820114,0.22935078,0.44167078,-0.3087289,-0.96614397,0.08289779,0.10760776,-0.4448266,-0.6288859,0.53686374,-0.13951103,0.9311494,0.1528348,-0.08314938,0.14177233,-0.39310697,0.42694232,-0.42329562,-0.06338383,-0.80089164,-0.1458661,35 -590,0.23723601,-0.31741157,-0.51863974,-0.21602903,-0.1855695,0.025513934,-0.13345776,0.3043798,0.2945879,-0.16280945,0.017805714,-0.15707418,0.0390466,0.48277953,-0.0786963,-0.6817081,-0.20151179,-0.010012343,-0.5163501,0.58149564,-0.42385176,0.2762663,-0.17462642,0.24304909,0.27178928,0.4069634,0.14967002,-0.13867308,0.11445839,-0.0018374095,-0.039061207,0.10254162,-0.49132007,0.11920854,-0.03768372,-0.3421883,0.085700385,-0.3844723,-0.5447943,-0.6371633,0.47668678,-0.82894033,0.56386817,0.093615256,-0.2733864,0.27112362,0.22494327,0.3021899,-0.33021304,0.058911324,0.21170451,0.20261875,0.14710349,-0.08846049,-0.34439608,-0.56014097,-0.6040052,-0.0021314071,-0.57692426,-0.26634443,-0.29227957,0.09289983,-0.3727186,-0.09741732,-0.037480555,0.10593177,-0.50701797,-0.014219591,0.18978573,-0.12064503,0.2583117,-0.5009316,-0.09211388,-0.07902546,0.08481519,-0.21761315,-0.060546644,0.41813564,0.070918046,0.3543814,0.0052529573,-0.18861665,-0.27232566,-0.113527626,0.06188459,0.46548197,-0.15201347,-0.30115297,-0.23113738,0.13934635,0.20864597,0.28152344,-0.12690388,-0.31383073,-0.022867521,0.021504452,-0.09542832,0.46191677,0.44924495,-0.32410467,-0.40712392,0.4362915,0.4141299,0.22473416,-0.056083344,0.071959384,0.17912666,-0.42733952,-0.14570688,0.089444876,-0.21326797,0.3440434,-0.04286991,0.22421516,0.72587305,-0.2221423,0.21034104,-0.09177439,-0.084885955,-0.21482325,-0.24709867,-0.102372766,0.11056205,-0.5069687,0.26931265,-0.08576283,0.84936917,0.0976118,-0.6823789,0.3253983,-0.65288156,0.14563319,-0.25323355,0.6408587,0.7821236,0.15687965,0.3022836,0.72657406,-0.34438026,0.19604233,-0.120080695,-0.5027436,0.32880118,-0.11754906,-0.113061,-0.6706953,-0.09956079,0.13831261,-0.09530962,0.07177631,0.47896773,-0.49359798,-0.05865018,0.17661054,0.9499918,-0.29381093,0.079490885,0.45394012,1.0021559,0.8475411,-0.0021340125,1.2450842,0.24904037,-0.22642507,0.4135952,-0.5716339,-0.8766519,0.22382896,0.43662247,-0.37467167,0.3720904,0.13496384,0.13905749,0.22379883,-0.39999786,0.12992978,-0.20334196,0.31050327,0.04530175,-0.0072946046,-0.43152764,-0.19209117,-0.0911744,0.05227252,0.18339866,0.26923192,-0.3151507,0.06404987,0.015730321,1.7644706,-0.16166535,0.1499337,0.09565416,0.5613585,0.26325205,-0.13503274,-0.14810051,0.37479994,0.47959545,0.050409075,-0.70262563,0.21784078,-0.28760192,-0.41860044,-0.16019453,-0.42615703,-0.047699623,0.019036083,-0.3122779,-0.055266403,-0.029753773,-0.44025066,0.3939566,-2.8608623,-0.12164876,-0.14083073,0.23053044,-0.3311507,-0.1176573,-0.1313314,-0.39636838,0.44267422,0.4429301,0.4163407,-0.5355333,0.22047265,0.64799404,-0.5533806,-0.0054508355,-0.47061428,-0.033550207,-0.11043039,0.5655752,-0.056967326,0.002569891,-0.12529936,0.49235246,0.2897122,0.12470555,0.10678708,0.35209534,0.44452852,0.11473232,0.3063143,-0.067906536,0.4216817,-0.17514008,-0.21801092,0.33397192,-0.16397358,0.35739473,-0.10358273,0.15404174,0.38325214,-0.45740348,-1.0038518,-0.52038735,-0.36341742,1.030193,-0.3372853,-0.30833203,0.401893,-0.3611267,-0.13546422,-0.112912536,0.49504873,-0.1701952,-0.16308157,-0.7953519,0.17031655,-0.18463963,0.16565546,0.122129515,-0.009564941,-0.30902955,0.6380415,-0.044514094,0.3682121,0.11185185,0.040263914,-0.17911185,-0.39558363,0.119921915,0.7259715,0.3679072,0.09424185,-0.24323867,-0.26746315,-0.19844256,-0.22218587,0.049164873,0.434005,0.8170439,-0.050856348,0.024057444,0.26769862,-0.25233084,-0.025963545,-0.15839726,-0.22016133,0.03895799,0.043851018,0.46325588,0.5161981,-0.088013224,0.43907323,0.003236069,0.14925933,-0.21291365,-0.39835328,0.484071,0.75310576,0.087525286,-0.16864027,0.69703424,0.60826993,-0.28669143,0.53531396,-0.7409493,-0.12707046,0.46282944,-0.22995909,-0.40582854,0.15697318,-0.4138379,0.044890944,-0.93689847,0.22875403,-0.09783486,-0.3659236,-0.37544954,-0.10444586,-3.7245374,0.14927444,-0.27182415,-0.27554253,-0.16346142,-0.017908482,0.49152344,-0.5779662,-0.61961544,0.14710881,0.07767132,0.70404065,-0.0026898568,0.14530146,-0.18351197,-0.11941065,-0.36424637,0.14627448,0.0372653,0.30487525,-0.019472856,-0.5037655,-0.1697482,-0.05846131,-0.40819496,0.13671216,-0.5160901,-0.36370367,-0.22841246,-0.7378843,-0.07263062,0.6052323,-0.10922316,-0.10048839,-0.2880089,0.04666076,-0.09417677,0.3561603,0.25622928,0.08164982,0.14871684,0.024034735,-0.07684328,-0.3167896,0.467009,0.0025374019,0.46933997,0.35297912,-0.090670936,0.14337257,0.5750462,0.4050671,-0.14588578,0.7074458,0.5953571,-0.17682728,0.21259154,-0.23005135,-0.16238227,-0.50766903,-0.39644894,-0.2782071,-0.31291935,-0.5283191,-0.24557616,-0.35518634,-0.78472286,0.5538099,-0.039623592,0.41301364,-0.019681403,-0.06255894,0.40075234,-0.022118052,-0.026830005,-0.022183742,-0.23749122,-0.40899545,-0.26525268,-0.57531774,-0.39479524,0.5136484,0.97425616,-0.2839809,-0.08423188,0.06476196,-0.26254943,-0.18369819,-0.039058384,0.08369867,0.41515413,0.42653793,0.12183338,-0.62680274,0.5307575,0.06448081,-0.018586388,-0.51429486,-0.009678107,0.5230115,-0.59882903,0.47115898,0.15582058,0.12487265,-0.009507399,-0.4912546,-0.17595206,0.078321464,-0.18053912,0.38559306,0.22306725,-0.81352425,0.3855664,0.26012465,-0.30192447,-0.74542207,0.48234856,-0.032992575,-0.2627406,-0.18099426,0.23718295,0.05781922,0.035610676,-0.11708157,0.43008703,-0.26976895,0.30112785,0.17661852,-0.08984613,0.46397576,-0.17562817,-0.1359716,-0.62372786,0.11850143,-0.37175024,-0.2951283,0.32750013,0.015780669,0.12251329,0.16067736,-0.036356654,0.35726264,-0.34845978,0.08902417,0.11633983,-0.2807306,0.36826575,0.38650683,0.456269,-0.36606672,0.5546437,0.0050251232,-0.1268515,0.15682319,0.07554588,0.47088617,-0.032692246,0.29240027,-0.013785133,-0.21900108,0.39867738,0.94613266,0.09322552,0.37621593,0.021887949,-0.09206944,0.24479148,0.068641074,-0.10611253,0.06266431,-0.5560207,-0.12936503,-0.06762089,0.22208947,0.36202717,0.20438808,0.23762989,-0.15732247,-0.32761967,0.15966463,0.24343158,-0.05515149,-1.0927793,0.24445917,0.23475745,0.59834313,0.5845473,0.013189531,-0.024866374,0.70247585,-0.15323287,0.09157748,0.42586216,-0.0071955966,-0.6263292,0.5869511,-0.55618125,0.5834044,0.0245165,-0.07013343,0.0764927,0.13469249,0.29996544,0.84059644,-0.1240638,-0.08900615,0.028568882,-0.31311563,0.16257557,-0.19219524,0.19648936,-0.6171707,-0.31990668,0.48255965,0.58908135,0.17345181,0.03966478,-0.0500783,-0.04958064,-0.020276723,0.10205193,-0.01759785,-0.12293197,0.023707118,-0.7800588,-0.29264075,0.40730408,0.13999228,0.13499582,-0.19153151,-0.14087102,0.19271299,-0.32425025,-0.054303177,-0.05341351,-0.68181,0.07347288,-0.22854519,-0.4150883,0.5394169,-0.36310437,0.302407,0.08362213,0.015930153,-0.30989265,0.349865,0.10283006,0.78234303,-0.13055107,-0.09485397,-0.4316889,0.044548906,0.16559717,-0.17521238,-0.17614794,-0.3576744,0.015683692,-0.7649187,0.52869225,-0.09604122,-0.45652348,0.043189764,-0.24069493,0.1188895,0.4467736,-0.016405033,-0.25694457,-0.31410423,-0.29113153,-0.31048265,-0.16701987,-0.22797336,0.19049074,0.15893942,-0.19563405,-0.18847407,-0.14136547,-0.1435934,0.41888678,-0.082543865,0.3372418,0.3915825,0.22019264,-0.11786776,-0.09477374,0.33533397,0.581548,0.0020444302,0.11677925,-0.16224912,-0.28590012,-0.32371476,0.16512798,-0.23875104,0.35989887,0.14533305,-0.3796098,0.5879732,0.05737812,1.0979252,0.0740587,-0.2810766,0.114315234,0.5294451,0.14586109,-0.13105632,-0.40842313,0.8460855,0.7085969,-0.05082411,-0.23252045,-0.40218294,-0.15087602,0.26614684,-0.3089957,0.016617142,0.022069873,-0.72906774,-0.22116736,0.38993073,0.29084063,0.11869938,-0.032855473,0.09792212,-0.05812156,0.087042876,0.38738126,-0.4492634,-0.10334941,0.27420202,0.10286784,0.23394845,0.26776022,-0.5500474,0.37185276,-0.5402545,0.10372203,-0.3140906,0.18062589,-0.1981521,-0.31888103,0.18807562,-0.07525751,0.48182303,-0.19481403,-0.42152703,-0.29527208,0.5670741,0.09094851,0.11979391,0.6992677,-0.28553337,0.2521016,-0.108475655,0.4939251,1.1204472,-0.1825179,-0.04679946,0.25681263,-0.3238719,-0.8511787,0.24457504,-0.45835397,0.21959308,-0.057945963,-0.24291739,-0.35808864,0.25046295,0.07814404,0.08993174,-0.06882334,-0.44580272,-0.28962997,0.16765057,-0.13628168,-0.2644073,-0.38190416,0.072012104,0.80514234,-0.28227562,-0.2258994,0.15454045,0.35520172,-0.14379017,-0.5556449,0.00021986548,-0.21718827,0.2746054,0.052439187,-0.33132,-0.08911614,0.054752257,-0.3729237,0.23817798,0.24034779,-0.37016127,0.061491627,-0.20902443,0.013209838,1.0267149,-0.26486605,-0.064291276,-0.7341065,-0.43100378,-0.94328505,-0.36132902,0.5854522,0.14265035,0.036897037,-0.4242531,0.22421573,-0.009362056,0.16205469,0.025383115,-0.5215066,0.43400222,-0.0014618177,0.46963173,-0.1132526,-0.9478339,0.16495815,0.105837785,-0.30415684,-0.7506767,0.6960042,-0.33484605,0.8257475,0.12643518,0.07939366,0.1384463,-0.35937613,0.057028327,-0.36639068,-0.28975603,-0.85127044,0.19708978,39 -591,0.5865426,-0.27039734,-0.5411164,-0.21508524,-0.4211003,-0.11410742,-0.12724973,0.561283,0.29723006,-0.2434621,-0.11166589,-0.098872304,0.1244737,0.37874353,-0.07982186,-0.6159099,0.24246931,0.31060278,-0.40500763,0.58638126,-0.38024595,0.19539554,-0.1549843,0.52001363,0.49105242,0.12473583,0.054229584,0.1656536,-0.14493527,-0.26506907,-0.19564725,0.33409193,-0.3716909,0.28911716,-0.005743083,-0.40413114,0.017386578,-0.70146424,-0.2938755,-0.79631776,0.27139103,-0.8441274,0.5283448,-0.06505564,-0.27303508,0.21084832,0.3637771,0.37981775,-0.1304351,-0.19007939,0.03904783,-0.19937216,-0.159933,-0.16265787,-0.19649641,-0.5429029,-0.56070876,0.03162156,-0.36873156,-0.21703553,-0.45224234,0.22758195,-0.30932778,-0.10183585,0.018788446,0.75412154,-0.3794884,0.12888712,0.10858084,-0.113868386,0.10135456,-0.6310831,-0.23083442,-0.09407345,0.29977867,-0.115757436,-0.28174102,0.26921776,0.4285856,0.27277228,0.066065945,-0.2958284,-0.24798962,-0.068072535,-0.061257277,0.44454035,-0.11145489,-0.5035152,-0.06423904,0.003899299,0.23029429,0.3365059,0.3332494,-0.06465682,-0.14541532,0.07636969,-0.12790582,0.5783715,0.41049716,-0.37374532,-0.0486458,0.27347308,0.37322316,0.29566884,-0.14626601,-0.120997615,-0.04373335,-0.6260777,-0.18475959,-0.034966595,-0.24186036,0.39686987,-0.19233552,0.28835198,0.5949469,-0.087000474,-0.20058991,0.25179452,0.15832175,-0.12416744,-0.45170033,-0.30468422,0.21852407,-0.47770816,0.33550274,-0.1728815,0.937012,0.20757246,-0.42083198,0.22354858,-0.55248195,0.21803251,-0.20040108,0.2948973,0.8154225,0.35706708,0.44416106,0.6502054,-0.28523275,-0.012207081,-0.019455872,-0.3541188,-0.065272816,-0.27745774,0.15663551,-0.5873248,0.06458971,-0.17760123,-0.060120728,0.2211962,0.60615075,-0.6297978,-0.26388377,0.2784214,0.80915797,-0.223236,-0.34514076,0.9706417,0.98107326,1.0537221,0.11269375,0.82606405,0.1393448,-0.08484103,0.14872374,0.10859704,-0.5437421,0.36918908,0.43368292,-0.20751932,-0.032078348,0.008205552,-0.093420394,0.6269751,-0.1457124,-0.33778852,-0.14968294,0.20629667,0.14385423,-0.2871892,-0.55695903,-0.48740008,-0.14118853,0.08871979,0.13742866,0.32238594,-0.121428095,0.46358302,-0.18453732,1.5275905,0.038067136,-0.10835458,0.042026144,0.51374,0.377753,-0.22638515,-0.055654563,0.35914373,0.31009224,0.12353305,-0.6238538,0.2811801,-0.2714596,-0.29843238,-0.054202914,-0.44495016,-0.119753465,0.17103778,-0.47765335,-0.1606542,-0.2537364,-0.27164152,0.54585344,-2.7475166,-0.1998633,-0.09150505,0.26567227,-0.11020296,-0.42557973,0.07581984,-0.4380979,0.49242923,0.278529,0.59007305,-0.5112358,0.26608732,0.35500643,-0.70729107,-0.1085507,-0.7224351,-0.060617015,-0.044459406,0.3329623,0.013229163,-0.14911185,0.04225783,0.041375957,0.6142012,0.047717627,0.09742844,0.23243538,0.29015476,-0.29919252,0.63256824,-0.14176983,0.73833364,-0.14795865,-0.31119597,0.2332049,-0.32217452,0.23628268,-0.13665298,0.087882794,0.7473738,-0.3761892,-1.1980317,-0.7042881,0.06733135,1.1333352,-0.10006637,-0.3814339,0.368889,-0.5455359,-0.2344843,0.116069324,0.55450493,-0.05838162,-0.21382138,-0.56680167,0.13034596,-0.028459342,-0.2182983,-0.04411183,-0.17559522,-0.51035696,0.7765267,-0.044782043,0.48052296,0.11072229,0.27130404,-0.3348738,-0.33129567,-0.1100845,0.6621698,0.4601526,0.05816549,-0.31670853,-0.17096819,-0.4499958,-0.121698685,0.23295961,0.6871203,0.45294094,-0.09642812,0.18103886,0.28800362,-0.0043872735,0.12026543,-0.074752755,-0.32085225,-0.2117367,0.10089613,0.6816381,0.6824771,0.060190614,0.64805996,-0.05536823,0.31211573,-0.094341636,-0.5132459,0.524314,1.341614,-0.36639565,-0.4370707,0.6514654,0.35072616,-0.13306642,0.4151063,-0.42068547,-0.18514608,0.42494744,-0.07814787,-0.4395297,0.04527027,-0.28047365,-0.03194764,-0.8509915,0.23041147,-0.39988676,-0.74785614,-0.43097422,-0.059133478,-3.7448606,0.34478062,-0.32121152,0.013361656,-0.21053907,-0.3974616,0.042643555,-0.7657987,-0.5309949,0.17662327,0.060966946,0.9413132,-0.21255587,0.025211811,-0.2040618,-0.50525576,-0.2532965,-0.040756878,-0.027482709,0.55825716,-0.11876829,-0.22384636,0.3319372,-0.085489154,-0.49605832,0.042723935,-0.68629587,-0.3915425,-0.21920379,-0.6266847,-0.28365582,0.5968511,-0.3048786,0.16082433,-0.29701298,0.062870234,-0.02533845,0.28073555,0.014970825,0.104562074,0.082308106,-0.18559149,0.10600399,-0.30757967,0.17150304,-0.029925277,0.39050725,0.18816954,0.077737845,0.31803954,0.5867289,0.7248557,-0.1496518,1.0756444,0.4358999,-0.060769293,0.22813955,-0.24815513,-0.4773332,-0.386782,-0.28866312,0.022537913,-0.40576437,-0.3513417,-0.045300715,-0.27377516,-0.793737,0.5560841,0.14464453,0.31877425,-0.07594592,0.28103957,0.64708394,-0.28492767,-0.16399112,0.040597063,-0.16527121,-0.7471203,-0.16128698,-0.5079543,-0.56217194,0.003097204,0.90665334,-0.3707752,0.03770057,-0.02030778,-0.25466934,0.15566863,0.20412056,-0.0038522023,0.1383695,0.4440483,-0.16802701,-0.60211486,0.37600133,-0.34990126,-0.12096372,-0.49291816,0.5057299,0.5256196,-0.4487223,0.6402226,0.39329004,0.15417777,-0.24078178,-0.5700321,-0.03432067,0.08419454,-0.13119796,0.42954132,0.34297785,-0.9995558,0.4949834,0.34915513,-0.115223214,-0.8314091,0.59634006,-0.07106363,-0.2806113,-0.22064236,0.46155065,0.39812344,-0.0156196505,-0.27741432,0.20430242,-0.4643737,0.23104326,0.04435388,-0.02876402,0.04442011,-0.2624881,-0.09602526,-0.7184274,0.037406836,-0.5209284,-0.33837125,0.20411023,0.04465476,0.11098313,0.13963588,0.09389241,0.2776592,-0.3945255,0.06443207,-0.22049357,-0.34430993,0.2772643,0.53681177,0.5488383,-0.51501155,0.59292424,0.0505082,0.043729976,0.20520104,0.045401867,0.3471648,0.053307064,0.595525,-0.07371065,-0.16105124,0.07580559,0.7495196,0.0074080667,0.50018466,-0.019309264,-0.030033153,-0.027104355,0.050829057,0.2905181,0.045450196,-0.6004046,0.053169426,-0.45066994,0.14088513,0.5268268,0.11329711,0.17690693,0.13063893,-0.45507926,0.121947676,0.040893175,-0.04106543,-1.310692,0.57964855,0.30486745,0.9918823,0.35044637,0.07400349,-0.21186279,0.84525335,-0.039571963,0.074688084,0.2475253,0.06460461,-0.32724506,0.49909657,-0.99608284,0.46863887,-0.018099539,-0.08481419,-0.031205984,-0.00086891424,0.5401429,0.71183,-0.48634583,0.017293049,0.0358038,-0.41618824,0.2675238,-0.4385656,-0.07021755,-0.5802332,-0.35412538,0.6797858,0.51272756,0.24287741,-0.31374672,0.023998972,0.17126696,-0.12646069,-0.016158726,0.040578917,0.0242413,0.08519365,-0.6743866,-0.122445785,0.42684236,-0.12103956,0.33048576,-0.043508872,-0.085639805,0.26384383,-0.051008247,0.009498853,-0.031744774,-0.64973456,0.121009365,-0.21236229,-0.6214012,0.5374146,-0.09697507,0.18902312,0.23149918,0.16299923,-0.07716848,0.55428576,-0.01729835,0.93242145,-0.074422866,-0.010860874,-0.42906666,0.20108119,0.016215783,-0.16085854,-0.05936729,-0.36736518,0.07994522,-0.57878006,0.4707677,-0.011740987,-0.35242558,0.094205104,0.050616622,0.10039612,0.4235341,-0.14532849,-0.059626177,-0.079057775,-0.21352814,-0.18260351,-0.40316376,0.114470094,0.27032742,-0.0024715753,0.008605292,-0.23418441,-0.08504473,-0.038045816,0.323916,-0.11981957,0.4179419,0.24959747,0.034064963,-0.119077876,-0.1794168,0.32658243,0.48655635,-0.20967017,-0.32308152,-0.39126825,-0.29516298,-0.40972805,-0.017578758,0.04234526,0.33963457,0.1081938,-0.100105636,0.6789077,-0.13614038,1.2852706,-0.1580615,-0.50159466,0.14190345,0.6047075,-0.09015046,-0.16759965,-0.20087315,0.9344599,0.32379788,0.003049158,0.024584893,-0.5908655,0.060944237,0.31479403,-0.13284913,-0.03036158,-0.005112117,-0.47586548,-0.22496483,0.20959689,0.20082727,0.29843193,-0.12603186,0.11992713,0.61737126,-0.0009541787,0.2501106,-0.37134594,-0.3265368,0.15766206,0.43852887,-0.1561067,0.18006667,-0.58798623,0.26815265,-0.6348689,0.18213719,-0.26966864,0.36247936,-0.27033678,-0.21798012,0.25600076,-0.04522915,0.33937454,-0.2521271,-0.19436851,-0.1343496,0.52125895,0.29471833,0.09784338,0.5543607,-0.33389467,-0.06593768,0.20186068,0.5029796,0.81917435,-0.23485494,-0.1280859,0.29546925,-0.31668073,-0.6407167,0.37259883,-0.27006054,0.19028538,0.12610963,-0.10045084,-0.5445056,0.16192707,0.37354758,0.13234688,-0.105708525,-0.6447999,-0.12406262,0.224048,-0.22589915,-0.05637672,-0.3917332,0.11591964,0.45464373,-0.21460383,-0.34522316,0.051701333,0.16880465,0.1533564,-0.51743627,0.05493113,-0.3915552,0.36935446,-0.20727502,-0.4382833,-0.3078174,-0.052062947,-0.5293773,0.22178769,-0.037903097,-0.20634006,0.24148354,-0.1737005,-0.034575783,0.8727468,-0.27825406,0.29382423,-0.51190174,-0.53562474,-0.55863225,-0.37792033,0.35448748,-0.06534509,0.04886899,-0.6924681,0.095129974,-0.053951785,-0.36107412,-0.22279261,-0.33712628,0.30564085,0.06065561,0.38066465,-0.08777295,-0.8410194,0.3271832,-0.04499791,-0.20398869,-0.58927864,0.31985492,-0.15420176,0.7051303,0.0862642,0.059218626,0.10736867,-0.14662705,-0.014860248,-0.25070497,-0.332716,-0.49981344,-0.07554189,47 -592,0.5033706,-0.065872945,-0.33263,-0.10269722,-0.19437203,0.10411717,0.0074642072,0.73575234,0.17322804,-0.57270473,-0.28781885,-0.2713534,-0.07704392,0.37778205,-0.16716415,-0.45444202,0.04522787,0.04893695,-0.22889648,0.5469494,-0.2725411,0.3903744,0.18766928,0.29169074,0.26656818,0.14431868,0.18651588,0.028199745,-0.06342395,-0.30124888,-0.30911094,-0.035927214,-0.6316484,0.27763626,-0.196455,-0.45837066,-0.18884864,-0.66480607,-0.4558994,-0.80038583,0.4036906,-1.0406057,0.45931742,-0.12146015,-0.24659474,0.18039678,0.09099285,0.17403316,0.023331918,-0.16778456,0.06695049,-0.13002929,0.043049514,0.030563427,-0.28817326,-0.33969748,-0.666796,-0.0040571634,-0.34493953,-0.3088532,-0.37248868,0.12502223,-0.3919288,0.01139587,-0.044032462,0.45158562,-0.4079021,0.08154435,0.04300296,-0.1303307,0.26278383,-0.70148146,-0.29442957,-0.13148247,0.012319148,-0.08460584,-0.19860986,0.516755,0.37852934,0.379443,-0.13698067,-0.07570008,-0.18493113,-0.039632,0.15895587,0.6200563,-0.14785165,-0.5200456,-0.11199717,0.021475209,0.41636482,0.37126768,0.258098,-0.31628734,-0.1058689,-0.031386714,-0.23034307,0.39914754,0.5563552,-0.14468387,-0.3360278,0.43295357,0.3794715,0.052639183,-0.07970401,0.09005069,-0.04241793,-0.38035044,0.012343377,-0.008329784,-0.29417354,0.74135125,-0.07013284,0.20710333,0.64938384,-0.27416304,0.07589174,0.051580183,-0.02510308,-0.15693912,-0.29540518,-0.20019712,0.26046038,-0.39034936,0.27418563,-0.2778888,0.8175195,0.18177645,-0.8981272,0.32067,-0.48478243,0.13322942,-0.15290125,0.47403118,0.6176514,0.3770304,0.299424,0.82326114,-0.47753423,-0.06981884,-0.018556667,-0.31970882,-0.16175137,-0.3173836,0.12205908,-0.43255094,-0.022929367,0.1924635,-0.26436263,0.20679675,0.3011935,-0.47108254,-0.1586373,0.08629568,0.7982536,-0.25657415,-0.073139615,0.89082915,1.1605655,1.0420562,0.076705754,1.0767955,0.17952417,-0.1758785,0.19651996,-0.03054093,-0.69496536,0.22395352,0.45811316,-0.12949839,0.25342005,0.07466912,-0.15585701,0.11896013,-0.5962571,0.021709498,-0.1263187,0.19285645,0.28247002,-0.15284577,-0.40307745,-0.18753932,-0.09118057,0.047496192,-0.026167009,0.29218286,-0.2692799,0.4139055,0.03985071,1.5705358,-0.03488336,0.036171153,0.13473186,0.7000811,0.12144495,-0.2153271,0.08730182,0.21377009,0.352004,-0.0013853782,-0.46806702,0.09635238,-0.29960835,-0.47174734,-0.10159551,-0.36571148,-0.12251568,0.03034273,-0.33080086,-0.2666702,-0.19493291,-0.31139535,0.52791405,-2.8003385,-0.1983142,-0.09780951,0.33326423,-0.29483798,-0.30024192,-0.0034809662,-0.6324472,0.54846436,0.3676437,0.4565794,-0.69009835,0.11021367,0.48048022,-0.41594583,-0.15201822,-0.6284783,0.041414626,0.041254982,0.3719765,-0.024792096,0.058392763,0.22781152,0.04596202,0.60032785,0.32189757,0.14082131,0.3413348,0.39230645,-0.09494224,0.3636474,-0.14068547,0.49476704,-0.17231591,-0.027046192,0.38575158,-0.3427524,0.1776419,-0.19212542,0.077491514,0.46297505,-0.4451145,-0.73940116,-0.75311685,-0.45195687,1.243999,-0.27458364,-0.6271016,0.32560426,-0.028156023,-0.039496496,-0.28281492,0.5646845,-0.20339197,0.02255223,-0.58419967,-0.107128866,-0.10564503,0.04476195,-0.12342696,0.031144848,-0.3833328,0.6712607,-0.14554976,0.61671233,0.26610512,0.23200037,-0.32014227,-0.44056973,0.055829618,0.95559925,0.5458866,0.12016937,-0.21585509,-0.044888403,-0.42704022,-0.4411022,0.18224184,0.60737,0.7711039,-0.05406957,0.13351263,0.34717676,0.023413058,0.09918596,-0.054262117,-0.23825748,-0.15144761,-0.041705377,0.54827,0.588874,-0.21143256,0.49848923,-0.15727901,0.14021006,-0.024032546,-0.5131645,0.49514216,1.0406587,-0.21347111,-0.18427332,0.52509576,0.37870315,-0.3942868,0.452463,-0.6264433,-0.25604007,0.5973712,-0.20038256,-0.52128345,0.06460962,-0.28509685,0.07106348,-0.68620336,0.32790482,-0.20084296,-0.6642695,-0.36014175,-0.08243037,-2.5050256,0.07711427,-0.16856956,-0.33522013,-0.14553462,-0.34298408,0.08813346,-0.43096483,-0.5723268,0.16518882,0.1410574,0.6895062,-0.013688241,0.23190393,-0.16015497,-0.11817961,-0.56842744,0.1785678,-0.06238842,0.41302866,-0.026826914,-0.24287528,-0.049321525,-0.111024335,-0.7395886,0.06852122,-0.36538675,-0.48959145,-0.25090203,-0.3505836,-0.34332377,0.67921436,-0.47384816,0.10068533,-0.089377716,-0.14766453,-0.15706635,0.21722616,0.15619574,0.15121374,0.06585197,-0.07020705,0.17276071,-0.3110611,0.5452081,0.088229336,0.39065728,0.41467845,-0.2568415,0.3216197,0.3970488,0.5983649,-0.025557866,0.8712018,0.26107126,-0.052493688,0.24394149,-0.29379147,-0.26735523,-0.55254656,-0.11730306,0.0001571637,-0.31771237,-0.5540109,0.018090853,-0.3797644,-0.8202607,0.23914184,0.12136175,0.5277577,0.008836164,0.2041901,0.5334482,-0.2009164,-0.036721334,-0.015535629,-0.03832651,-0.72529835,-0.36623,-0.78725564,-0.48964965,0.16266595,0.78870076,-0.06604055,-0.26028317,-0.026678149,-0.17924796,0.080178685,-0.011624658,-0.052712202,-0.12944938,0.25804877,-0.05108963,-0.7762859,0.50168365,0.08107201,-0.109325565,-0.67092615,0.4156074,0.533268,-0.55508935,0.3037262,0.23499832,-0.017028948,-0.3147745,-0.5356678,-0.13954562,-0.27223003,-0.19614789,0.2580977,0.1492986,-0.78775144,0.34014302,0.34647465,-0.23419729,-0.67542964,0.48838425,-0.047169562,-0.08825047,-0.082097724,0.22884259,0.35360336,-0.057279684,-0.06027531,0.21263435,-0.5765323,0.31923765,0.14773099,0.05966007,0.45588467,-0.10718989,-0.07315012,-0.6569548,0.2192422,-0.51423323,-0.23346584,0.16583571,0.092280775,0.10955414,0.29161316,0.17858575,0.33127588,-0.14224522,0.19636253,-0.059570692,-0.27972752,0.45553252,0.32076344,0.60512096,-0.5104504,0.67052215,0.011661253,-0.16898566,0.19893423,0.18017012,0.4274452,0.2502712,0.26056486,0.026263608,-0.34394276,0.03274252,0.59420556,0.28067493,0.36193526,0.05371078,-0.13132955,0.33397773,0.0603931,0.2195411,0.0009685847,-0.7362438,-0.033106677,-0.38518798,0.012655352,0.4900432,0.16434486,0.26769,-0.16833097,-0.21990037,0.003035621,0.03416396,-0.21249701,-1.280844,0.335636,0.122726835,0.9520646,0.4785784,-0.15826319,0.05286646,0.65649307,-0.065373175,0.22144611,0.42642614,0.017413922,-0.51573074,0.536275,-0.8415795,0.5205526,0.048663273,0.037300196,0.050540037,0.1943869,0.35531324,0.75966686,-0.30198,0.038107496,-0.031604685,-0.32778847,0.1850463,-0.45680097,0.162961,-0.5863316,-0.26766437,0.53511155,0.48236483,0.17585744,-0.09285466,-0.01632687,0.008334055,-0.10125114,0.16796002,0.031794682,0.09372401,-0.10363148,-0.46094644,-0.24767083,0.48800653,-0.30160004,0.20190932,0.04333747,-0.13158488,0.13611166,-0.11855139,-0.24159226,0.021814413,-0.780336,0.088029854,-0.22861758,-0.37868202,0.2768888,-0.05302882,0.24232648,0.19076003,0.003829602,-0.18092966,0.077929646,0.40746287,0.66593105,-0.09532277,-0.2741087,-0.48689908,0.12538753,0.15484709,-0.18912147,0.13121739,0.09092838,-0.27251303,-0.3987099,0.51299393,-0.15276036,-0.22041632,0.24577409,-0.21359584,-0.05602268,0.5616344,-0.08747883,0.012940435,-0.062037177,-0.19042148,-0.22354023,-0.042889435,-0.10936639,0.3339438,0.22272705,-0.18760483,0.016476192,-0.20477623,0.0059577683,0.109062046,-0.101182535,0.38903826,0.3034386,0.031740922,-0.43450117,-0.24403025,0.15635058,0.4193192,0.17704989,-0.06789043,-0.10042893,-0.4577567,-0.31785202,0.11039622,-0.12761006,0.4256882,0.12614848,-0.2825383,0.59528595,0.13160157,1.1460341,-0.011813281,-0.32212564,0.08123154,0.45568416,0.032356802,-0.122654796,-0.31627372,0.91967,0.528979,0.017969351,-0.05784662,-0.3702819,0.11406803,0.34224856,-0.23664315,-0.29021648,0.021145385,-0.65857977,-0.3960142,0.12871635,0.25252932,0.16247302,-0.08355821,-0.06371571,0.40227473,0.020925047,0.51414233,-0.24396883,-0.08545943,0.3321333,0.1675372,0.017200662,0.065110214,-0.43533653,0.26367372,-0.569145,0.10343652,-0.121763624,0.14723355,-0.17448911,-0.24305645,0.1442832,0.13901989,0.52266836,-0.15970968,-0.5937983,-0.20391844,0.5265536,-0.015533267,0.13120948,0.45782667,-0.23231615,0.033063814,-0.11878947,0.37878805,1.2793727,-0.01037176,0.14580148,0.26583436,-0.524919,-0.7221661,0.51905006,-0.24493077,0.41246402,-0.00051425054,-0.09728964,-0.48706314,0.2423726,0.27138603,-0.12148705,0.1655971,-0.6362968,-0.40482014,0.1688791,-0.39612573,-0.2713071,-0.5442213,0.09317325,0.51257294,-0.33410823,-0.30392128,0.16856065,0.24553344,-0.16727063,-0.65218264,-0.10056508,-0.1782706,0.20769198,-0.024351437,-0.4265961,-0.15290122,0.09387325,-0.43599933,0.19524759,-0.18315227,-0.35721546,0.06575783,-0.28158897,0.15494703,0.90157723,-0.12477572,0.0058499756,-0.5755616,-0.57112956,-0.6959569,-0.6187017,0.38448113,0.15299818,0.001231801,-0.62052476,-0.09463981,-0.09782852,0.00620201,-0.17865174,-0.37433618,0.4253799,0.16172965,0.36117303,-0.011927917,-0.72200674,0.14201763,-0.040780548,0.073523894,-0.56776935,0.43142828,0.09943669,0.8490766,0.18499003,-0.0077589382,0.18633522,-0.5381021,0.03447589,-0.18352225,-0.28072882,-0.3948146,0.24920394,48 -593,0.28296974,-0.18701656,-0.44073164,-0.1219089,-0.2731871,0.022565452,-0.24025175,0.087753765,0.26838136,-0.15368168,0.009890364,-0.030889751,0.19334921,0.41574317,-0.018518362,-0.6444055,-0.13949503,0.06329202,-0.69267344,0.19822948,-0.576518,0.2854963,-0.06288003,0.5571455,0.029290993,0.3520889,0.28348717,-0.045039766,-0.02236612,-0.18131143,0.09454631,0.33742717,-0.59456325,-0.006124657,-0.038510386,-0.46215397,0.13868678,-0.22002445,-0.39532945,-0.6715032,0.20425987,-1.0365541,0.581943,0.007928161,-0.063754454,-0.06694886,0.39611974,0.46762833,-0.3538117,-0.005137072,0.35729483,-0.41348055,-0.043356977,-0.5345471,-0.14760749,-0.48092702,-0.44435737,-0.13180712,-0.5670032,-0.46100077,-0.33437964,0.19540018,-0.3063277,-0.08502818,-0.07390404,0.18711337,-0.36409342,-0.0036776157,0.34976307,-0.28925863,0.42291376,-0.60853195,-0.13548088,-0.01058736,0.408147,-0.10054219,-0.23730978,0.562779,0.19001411,0.22676292,0.30847603,-0.23232195,-0.50379586,-0.22076076,0.12120204,0.44530126,-0.37704465,-0.06147838,-0.20875695,0.018666247,0.35115528,0.51720905,0.03209947,-0.08178074,0.020291705,-0.015306418,-0.045245435,0.6256482,0.54497176,-0.20937745,-0.5714332,0.11027126,0.49654043,0.124394014,-0.30122143,0.033804674,0.045232274,-0.4991175,-0.15229866,0.20910779,0.03086826,0.397135,0.010397499,0.13095254,1.038224,-0.3544665,-0.007012349,-0.06802133,0.097088724,-0.03473986,-0.37384537,-0.32178015,0.27910712,-0.5630461,0.06618199,-0.37923118,0.69084156,0.03543022,-0.64187235,0.24021856,-0.5855158,0.052785356,-0.10992486,0.62959945,0.56514835,0.4431751,0.2988902,0.693365,-0.19544347,0.238877,-0.066513814,-0.30446988,0.11764552,-0.3253743,0.14437367,-0.48989674,0.0392086,-0.17020147,0.079429194,0.32594424,0.36462194,-0.5556033,-0.02639854,0.37731028,0.8671617,-0.3872862,-0.015178671,0.5370363,1.2198901,0.90646714,-0.017077649,0.901535,0.42852336,-0.2647919,0.012063698,-0.16952676,-0.48809427,0.12566486,0.2566005,-0.119427755,0.20686181,-0.107905746,-0.06260569,0.19824086,-0.5110759,-0.05415656,0.009642413,0.32330132,0.23529448,-0.07546442,-0.46092135,-0.07618509,0.018329836,-0.26204163,0.30412814,0.17480429,-0.26364252,0.5692253,-0.06584169,1.0554017,-0.00662148,0.09421638,-0.004693679,0.7362767,0.26641175,-0.042825416,0.122440375,0.45437464,0.250367,-0.006662506,-0.554232,0.28306106,-0.40411714,-0.29477102,-0.25629067,-0.42750475,-0.13925456,0.24918278,-0.23451942,-0.318733,0.04073928,-0.20914504,0.2969519,-2.8185492,-0.093426116,0.035250325,0.31250638,-0.23616412,-0.059299216,-0.112277105,-0.51453906,0.43152693,0.2148758,0.44815248,-0.46316302,0.3019861,0.54858565,-0.52573454,-0.2398223,-0.6289685,-0.0725729,-0.13339506,0.42182624,0.009670551,-0.17537992,-0.15745758,0.033853088,0.73582333,0.12827672,0.077731065,0.5175877,0.26907602,0.19522524,0.50577337,0.084535085,0.5697742,-0.3744012,-0.3771784,0.3448791,-0.4066542,0.19569977,-0.13914865,0.06834296,0.55750906,-0.28192475,-1.032849,-0.55289227,-0.18540417,0.94236934,-0.23870103,-0.62660307,0.20143324,0.002448591,-0.1364593,0.09975031,0.5849594,-0.08927394,0.27411255,-0.6144635,0.06167137,-0.045876577,0.18957232,0.12079359,0.033206206,-0.3244831,0.5268204,-0.07379408,0.24186507,0.04788585,0.26585463,-0.49120843,-0.4233394,0.112357154,0.71811855,0.15309344,-0.06833761,-0.06576233,-0.37792355,0.08626067,-0.3958117,0.10190398,0.4372994,0.8156281,-0.05865806,0.18144242,0.39069322,-0.26581857,-0.029866455,-0.19216579,-0.20148915,-0.06061366,0.23148942,0.524331,0.72511345,-0.004084775,0.6329874,-0.10384602,0.49958473,-0.00421353,-0.59364927,0.5523585,0.47289106,-0.10614043,-0.23154698,0.58130467,0.4818565,-0.554535,0.5008063,-0.6963184,-0.2831303,0.7033923,-0.33394843,-0.47025186,0.055755284,-0.318556,0.11726446,-0.712649,0.35643163,-0.26597786,-0.5625788,-0.51091677,-0.22117314,-3.2897074,0.031440437,-0.27252004,-0.040451106,-0.19340141,-0.1436682,0.27441162,-0.54615086,-0.32610968,0.104882,0.26240838,0.78087336,-0.061125316,0.025491169,-0.34299117,-0.11005983,0.020303538,0.2930953,0.26574576,0.29721966,-0.14228831,-0.41153187,0.17990637,0.06351888,-0.674906,0.10907556,-0.51944613,-0.571452,-0.12953041,-0.6689363,-0.2592898,0.70891726,-0.45679194,0.06501274,-0.2894773,0.13680632,-0.10010635,0.29297847,0.21651363,0.23060729,0.32504827,-0.0628831,0.16567357,-0.3778602,0.5261623,-0.009683435,0.24777839,0.12510487,-0.052013796,0.029569479,0.4075186,0.5667623,-0.07609338,0.933071,0.4731975,-0.092338674,0.15239048,-0.42108986,-0.31203368,-0.61218655,-0.46811134,0.0025201212,-0.38571784,-0.43259713,0.039458558,-0.31003726,-0.78479016,0.81949466,-0.03888343,0.3115482,-0.17526862,0.24386938,0.39841276,-0.12294772,-0.17911246,-0.16995944,-0.03770819,-0.45863354,-0.1883746,-0.5851775,-0.65573657,-0.038121797,0.80322427,-0.34328505,0.10255865,0.053636767,-0.31028807,0.077849895,0.28055722,0.06046824,0.35100827,0.4171921,0.059828684,-0.6037848,0.39326316,-0.1580793,-0.09770678,-0.79070514,0.18081473,0.70327723,-0.76200783,0.52280354,0.32270432,0.07118469,-0.23348165,-0.49752778,-0.23020083,0.031146063,-0.10504509,0.4158953,0.008265183,-0.75651646,0.5539399,0.31992072,-0.6738204,-0.6438504,0.17613341,-0.09031391,-0.43562746,0.17615654,0.2511759,0.102381915,-0.1337081,-0.2754453,0.28719267,-0.4028477,0.274406,-0.0137748625,-0.09301952,0.648418,-0.098349914,-0.41689208,-0.68998945,0.13542096,-0.6102334,-0.31112894,0.33618608,0.019868586,-0.067305535,0.5524685,-0.037459016,0.41130707,-0.0963961,0.058469653,-0.22887021,-0.40127146,0.17824215,0.36651275,0.32409778,-0.437503,0.5976403,0.10431104,-0.29185453,0.17798427,-0.075855166,0.5703812,-0.10252444,0.4336805,-0.10753899,-0.2374503,0.29258493,0.714908,0.13732645,0.53670096,0.056715947,-0.041290045,0.4289429,-0.025131281,-0.019242672,0.06340607,-0.39509627,-0.02497208,-0.2765612,0.20745565,0.4518499,0.3301913,0.41369402,0.187869,-0.19661252,0.14417928,0.14666064,-0.04957588,-1.1372819,0.41489166,0.32768822,0.7711845,0.22650453,0.26182097,-0.2078481,0.815339,-0.3289726,-0.033321925,0.33581036,0.13864313,-0.4580549,0.77339625,-0.6114435,0.43554556,-0.13523178,-0.107524864,0.043657716,0.23921165,0.4635486,0.87124455,-0.22890384,0.19451615,0.11251819,-0.102271944,-0.0040969024,-0.23014975,0.16864952,-0.3596625,-0.37978333,0.81278324,0.2656908,0.38001272,-0.07484566,-0.12272579,0.14862894,-0.18126081,0.29929882,-0.14761928,-0.07750038,-0.029403288,-0.4090908,-0.1832741,0.48128554,0.107929505,0.34431252,-0.11954955,-0.10237563,0.16546668,-0.15307352,0.08482491,-0.011511539,-0.48297355,0.050499413,-0.129984,-0.61053663,0.5778345,-0.39255714,0.16216017,0.19112563,0.116742864,-0.09044843,0.3709622,0.20172864,0.78937286,-0.02437409,-0.34198183,-0.24019815,-0.07429891,0.303726,-0.23941973,0.14934275,-0.25627625,0.029690953,-0.58359367,0.5430081,-0.41316846,-0.50013554,0.17466171,-0.21260959,-0.0774578,0.41134113,-0.03644635,-0.081926145,0.36334044,-0.2606244,-0.48362643,-0.05523909,-0.35485172,0.18236,0.15312015,-0.12949815,-0.24371284,-0.36830166,-0.100675695,0.52244735,-0.0539689,0.5176727,0.19130489,0.18006927,-0.17164652,0.028661022,0.110756904,0.54195327,0.011089137,0.18488301,-0.25178638,-0.32207268,-0.24229135,0.18120076,-0.11962379,0.16791281,0.13898994,-0.5620153,0.90019184,-0.21754129,1.1936855,0.05404941,-0.4180487,0.26125973,0.4816771,-0.15148365,0.07474102,-0.5052667,0.940988,0.7403555,-0.06762963,-0.19104026,-0.47370374,-0.13110402,0.49670032,-0.41639188,-0.20220873,-0.1816523,-0.5132909,-0.49740475,0.2596447,0.24490646,0.19332725,-0.09100734,0.20543924,-0.029758124,0.12507401,0.33615065,-0.6339748,-0.18686989,0.25204393,0.3316018,-0.12800553,0.2480509,-0.28411314,0.46095663,-0.5707782,0.18693615,-0.42287275,-0.0030000238,-0.30752483,-0.3923035,0.13723117,0.08068175,0.17811988,-0.16210715,-0.24025963,0.052777704,0.45545706,0.19039708,0.22037299,0.574443,-0.29901287,-0.0056021395,-0.08279907,0.48976156,1.3349864,-0.43440324,-0.017078748,0.3167982,-0.39264828,-0.6679599,0.6116248,-0.36817864,-0.07666295,-0.15778175,-0.50663334,-0.2462891,0.14709832,0.10812278,-0.019909795,0.12471456,-0.2999956,-0.08921787,0.2376042,-0.30107704,-0.2630213,-0.19716519,0.4439886,0.60594755,-0.13012399,-0.17807205,0.054089867,0.4961936,-0.28770018,-0.3209263,0.050469365,-0.12653346,0.46313554,0.06861822,-0.4016473,-0.12931122,0.11969554,-0.4622708,0.029794825,0.2925325,-0.41445577,0.028027333,-0.15616515,0.16382639,0.6916396,-0.34209996,-0.06847463,-0.68344307,-0.42586324,-1.0394276,-0.54217577,0.21358779,0.28181157,-0.008706318,-0.40869612,0.015635304,-0.036059543,-0.22223803,0.057498094,-0.6100312,0.30625868,0.1240461,0.49185318,-0.4548306,-0.92193484,0.09578704,0.103573486,-0.16574946,-0.68751645,0.73634213,-0.18652198,0.8193925,0.09791488,-0.1380286,0.11845751,-0.2606532,0.11390412,-0.37857825,-0.34979397,-0.8888391,-0.08875621,53 -594,0.27361187,0.07652709,-0.43681973,-0.08373144,-0.19044696,0.14206845,-0.10496393,0.4744507,0.17770018,-0.26198262,-0.081922755,-0.1023629,-0.060882695,0.3443338,-0.13888666,-0.5163492,0.08043841,0.13767682,-0.43143952,0.5633589,-0.5383737,0.36223263,-0.032950357,0.34929377,0.14224969,0.19632751,0.18813589,-0.09134367,0.084990576,-0.19751851,-0.107944354,0.17910245,-0.46502241,-0.0028902625,0.009604126,-0.4976258,0.1789623,-0.19430408,-0.3407876,-0.6379487,0.36055982,-0.6509513,0.6031836,0.12378582,-0.21669227,0.25957912,0.18381779,0.4119551,-0.043406468,0.04484386,0.1765844,-0.020360358,-0.06588909,-0.13903628,-0.2787597,-0.5716218,-0.62988085,0.09025537,-0.42195162,-0.12758884,-0.2262172,0.14145745,-0.35687664,-0.024075601,0.028355975,0.2025533,-0.3754567,-0.043720685,0.17040454,0.1150107,0.3080161,-0.5540317,-0.10568447,-0.11702491,0.32631838,-0.35417125,-0.22390755,0.15154463,0.41393906,0.49784726,-0.08664489,-0.19542988,-0.28423178,-0.04171356,-0.12575437,0.5877641,-0.3003082,-0.36365634,-0.121572345,0.022672378,0.088917166,0.26411983,-0.012514701,-0.08700134,-0.09268956,0.26583245,-0.333617,0.41797116,0.3904338,-0.4861724,-0.37310806,0.44607082,0.54038835,0.042489987,-0.16148987,-0.048511505,-0.031030098,-0.5434403,-0.1938408,0.002299279,-0.26763037,0.34431908,-0.15015605,0.2479153,0.5670453,-0.13083385,0.06722844,0.19688496,0.004900827,-0.113790974,-0.14261119,-0.26412073,0.20506191,-0.5399615,0.09516496,-0.16088802,0.80449814,0.008099128,-0.8280779,0.23865542,-0.6305002,0.05362377,-0.21063416,0.5063578,0.7432234,0.15889949,0.22058089,0.6747736,-0.5488319,-0.023035843,-0.12996884,-0.32616237,0.24443896,-0.108256035,-0.105529666,-0.56200546,0.011440768,0.27825975,-0.03256215,0.20758893,0.24070168,-0.5726703,-0.014877161,0.17462033,0.8193134,-0.28271195,-0.24257818,0.53126717,1.0463245,0.9667224,-0.05762928,1.2276962,0.1612944,-0.18149057,0.29244554,-0.48711932,-0.6685723,0.2455945,0.4790849,-0.16985361,0.27445936,0.21485662,0.0737879,0.34273916,-0.42083246,-0.029655892,-0.108763255,0.22929096,0.059316628,-0.09470861,-0.3052483,-0.3227856,-0.09802867,-0.0073614097,0.19168244,0.3080693,-0.21610902,0.11604261,-0.033177283,1.6706023,-0.058417264,0.22062722,0.0706876,0.5409424,0.1563935,-0.13374831,-0.14207722,0.13564415,0.3477183,0.24137115,-0.60417026,0.10289339,-0.28573987,-0.3791688,-0.21656387,-0.28149712,0.012925322,0.1266269,-0.37494802,-0.08919418,-0.13352756,-0.33880588,0.47491267,-3.0379615,-0.20954145,-0.15972951,0.24754047,-0.24779262,-0.42013243,-0.15179889,-0.5576969,0.46376088,0.36950964,0.43133977,-0.6197717,0.47184724,0.23002599,-0.3988431,-0.1751052,-0.71966594,-0.07084263,-0.034933977,0.18290982,0.09007608,-0.04789905,-0.06871336,0.28733435,0.34418428,0.02515721,0.016214006,0.2081566,0.29215494,0.19638006,0.5283666,0.016988598,0.59994155,-0.12935045,-0.2712046,0.22743867,-0.28695884,0.27222088,-0.1862685,0.08557823,0.40209356,-0.47614628,-0.9386455,-0.74657476,-0.31607088,1.1534095,-0.076640084,-0.21486896,0.2118206,-0.32895133,-0.38398492,-0.20813963,0.50756365,-0.26298133,-0.24388586,-0.61559045,0.15153868,-0.1767803,0.18959118,-0.031599425,-0.10091071,-0.51227593,0.5099178,-0.049831137,0.32219312,0.29878938,0.11754947,-0.23622046,-0.3533511,-0.09441759,0.89803404,0.30918476,0.1035384,-0.1436355,-0.1952944,-0.56407785,0.09038174,0.23718467,0.4288079,0.6037496,-0.04688887,0.089528486,0.29198673,-0.031285204,0.020477941,-0.07891807,-0.3482591,-0.010119883,-0.09115135,0.65698874,0.48304904,-0.09553797,0.54721874,0.090666346,0.19730648,-0.38415292,-0.36665365,0.41559127,0.7707179,-0.1241529,-0.15598537,0.70854247,0.4554094,-0.16050074,0.40561235,-0.602631,-0.2863832,0.32028252,-0.0981576,-0.30433947,-0.028679065,-0.39258322,0.017677646,-0.818935,0.25044334,-0.14351498,-0.50225484,-0.4515393,-0.08711983,-3.4425778,0.28170583,-0.19507296,-0.062061347,-0.010617046,-0.04913984,0.39722288,-0.549539,-0.58952594,0.13154426,0.056508686,0.70620906,-0.06227322,0.050942514,-0.18190345,-0.29538217,-0.4358107,0.041214857,0.17152452,0.39739424,0.069699295,-0.4371376,0.059767384,-0.17020147,-0.33674595,0.11967463,-0.5054997,-0.4194052,-0.15966947,-0.49481326,-0.3703171,0.73166597,-0.4321294,0.03698272,-0.30961132,-0.046088163,-0.01946658,0.43161643,0.124365844,0.031182718,-0.002609991,-0.0067444304,-0.01958538,-0.3523016,0.26678365,0.038242705,0.2692114,0.3247891,-0.046947174,0.269055,0.5458241,0.50799835,0.029739857,0.8487163,0.5868052,-0.18891881,0.2077623,-0.2633056,-0.07779301,-0.372132,-0.27188206,-0.15580662,-0.37163687,-0.42619604,-0.041447576,-0.34758213,-0.686457,0.5111028,-0.053264506,0.12160281,0.014342042,0.31616557,0.40249392,-0.20619327,0.008112876,0.027340494,-0.17212123,-0.46002784,-0.26437828,-0.4395442,-0.43155143,0.15517212,1.110963,-0.28347257,0.15753204,0.095242426,-0.17250922,-0.025297165,0.09559857,0.020820687,0.13213935,0.32044137,-0.25259715,-0.7013756,0.35028282,-0.3642645,0.057580292,-0.76603496,0.089478455,0.4279411,-0.56603324,0.33953223,0.25918657,0.24370687,-0.03777537,-0.4984062,-0.16501859,0.08533262,-0.36165777,0.26401612,0.18687648,-0.9448922,0.4121392,0.27214125,-0.1443096,-0.6358528,0.55065304,0.012833716,-0.34973815,-0.119929224,0.2866651,0.34699982,0.200862,-0.084712155,0.23573923,-0.3382791,0.27875772,0.21355446,-0.04595333,0.4070325,-0.15180531,-0.08804544,-0.59315217,-0.10132827,-0.5305949,-0.22146806,0.14432631,0.20426154,0.1389818,0.3955267,0.09700297,0.32287982,-0.26575136,0.055227287,-0.012588675,-0.24175523,0.21566004,0.3785848,0.447217,-0.46736506,0.5163955,0.025122972,-0.18506697,-0.13265687,0.003021474,0.5532652,-0.13893655,0.37240264,0.01636021,-0.26725942,0.30609936,0.81471634,0.17203626,0.2250585,-0.027583223,-0.05588176,0.0545309,-0.018001989,-0.041630387,0.21819584,-0.6162172,-0.07929837,-0.09257663,0.26912814,0.51920134,0.05339273,0.14931801,-0.11155033,-0.35869595,0.011292806,-0.03165154,-0.03785654,-1.1730613,0.40528077,0.19387439,0.68498033,0.50169414,-0.068087734,0.055064306,0.49809998,-0.19858599,0.13195878,0.30551898,-0.06425026,-0.30779344,0.61192095,-0.6836395,0.5766386,0.043944355,-0.112352565,-0.034685157,-0.15014444,0.34546253,0.9954852,-0.29177308,0.13514747,-0.020788986,-0.22224663,0.102317914,-0.17370555,0.15628907,-0.7138658,-0.15949965,0.6059419,0.44035834,0.34536484,-0.098505735,-0.04573588,0.124469705,-0.061454196,0.014259655,-0.18160574,0.138237,-0.07134585,-0.6511638,-0.21553162,0.51457244,0.11752892,0.14067774,0.06303726,-0.16604008,0.29550764,-0.061243393,0.016060801,-0.06692147,-0.5924021,0.05719008,-0.15436926,-0.29768738,0.64255965,-0.36176616,0.3257701,0.15430239,0.11685967,-0.14728425,0.42918074,0.033799484,0.4928884,-0.10695052,-0.08443156,-0.36207587,0.18278979,0.11814572,-0.06761705,-0.07057386,-0.29115942,0.1711004,-0.65062934,0.35726598,-0.03612637,-0.3164401,-0.17489019,0.038951077,0.0973216,0.4594833,-0.046127282,-0.09999791,0.03218603,-0.2866053,-0.16907293,-0.043656595,-0.0895613,0.23552187,0.17939799,-0.19856946,-0.15467466,-0.17583726,-0.15810178,0.27343667,0.08438484,0.3467449,0.2473581,0.19292268,-0.16105655,-0.24914382,-0.026578499,0.38193706,-0.2926529,-0.25825173,-0.29291934,-0.3553005,-0.26800844,0.38536936,-0.036036305,0.43073907,0.040822607,-0.19682139,0.5066817,0.077609785,1.2508183,0.11331897,-0.20422468,-0.0632108,0.5656552,-0.049873468,-0.14591108,-0.4137495,0.809356,0.5658571,-0.1887705,-0.17482527,-0.29740465,-0.071991555,0.21545726,-0.13518482,-0.052903857,-0.023487972,-0.6533009,-0.291734,0.25373504,0.24248165,0.14377631,0.05364138,0.0924517,0.29341656,0.017610967,0.34471563,-0.35607323,-0.11350131,0.3488897,0.4264583,-0.015167301,0.2569783,-0.38047695,0.40386468,-0.43586248,-0.058790725,-0.2788015,0.20879115,-0.13185053,-0.35555568,0.3340473,0.07736276,0.3205592,-0.040096052,-0.4173752,-0.14659716,0.43317538,0.32827452,0.18149897,0.5183866,-0.22692226,-0.116936326,-0.14781946,0.447427,1.070039,-0.2101011,-0.12472784,0.41754803,-0.26458648,-0.53332806,0.26559573,-0.37098134,0.0722138,0.12252106,-0.21929179,-0.2323617,0.3040962,0.21076062,0.091334,0.08797184,-0.39983875,-0.1538389,-0.021373153,-0.15151507,-0.29107317,-0.29563954,0.24419387,0.8048913,-0.20614932,-0.2392982,0.080172315,0.46665022,-0.17894195,-0.53626186,0.031894356,-0.31112707,0.2515034,0.0696734,-0.30872032,-0.24082613,0.06468747,-0.43351558,0.0891875,0.30867255,-0.4430133,0.11423437,-0.33821866,-0.17327045,0.9124967,-0.15779932,0.12623176,-0.46284816,-0.28771293,-0.66844517,-0.38605136,0.25240946,0.30280426,-0.066114515,-0.3457861,-0.008601583,-0.0011392465,-0.19292647,0.0040486227,-0.19895664,0.39913946,-0.010841163,0.35311002,-0.00063089223,-0.86583513,-0.04733405,0.050239682,-0.21917978,-0.52301836,0.49733844,-0.07759131,0.7731938,0.16816221,0.1417742,0.27385646,-0.19505674,0.058343366,-0.23083869,-0.1588242,-1.0456493,0.023734607,60 -595,0.9141611,-0.19994125,-0.8286437,0.006494279,-0.25755203,-0.022490982,-0.36629075,0.39115816,0.44058037,-0.24820405,-0.17499407,-0.13656949,-0.054576673,0.37461045,-0.07461303,-0.64796937,0.14341387,0.0864788,-0.44481677,0.70743793,-0.39461246,0.2947706,-0.07832579,0.64174974,0.3075053,0.36644393,0.38249838,0.17563044,-0.21908744,-0.33450553,0.17431745,0.14558631,-0.7094154,0.29271856,-0.19239691,-0.23022777,0.028976921,-0.2538509,-0.44788694,-0.9106338,0.42144638,-0.67827827,0.4693187,0.1625469,-0.3901667,-0.085308775,-0.0045568715,-0.022975024,-0.025400363,-0.12585983,0.0986511,-0.2931453,0.12808453,-0.293272,-0.17905872,-0.3364076,-0.6462529,-0.008131871,-0.54229486,-0.048058417,-0.35506365,0.1652689,-0.41840696,-0.01592649,-0.13440639,0.802554,-0.38875958,0.08903175,0.1253986,-0.33263734,0.26346734,-0.6892984,-0.51969504,-0.14413644,0.10600621,0.29583344,-0.24036549,0.2978046,0.23042287,0.3225317,0.11161932,-0.11389598,-0.5295076,-0.20428738,0.28237465,0.5134487,0.0025313245,-0.45677853,-0.33590764,-0.25424278,0.28775072,0.18498716,0.3080176,-0.32203883,-0.01680779,-0.04565888,-0.22274694,0.6767562,0.5786157,-0.26143697,-0.09956716,0.17284915,0.48144138,0.2495168,-0.26344448,-0.009205965,0.0075074593,-0.5270817,-0.0783727,0.035078164,-0.18419935,0.6804076,-0.09515159,0.27957967,0.6889067,-0.48384893,-0.19866723,0.177169,0.110777564,-0.15970537,-0.1743916,-0.035852328,0.241536,-0.29480407,0.04761249,-0.24302138,0.88865286,0.14674371,-0.6267484,0.30410796,-0.53423196,-0.055038624,0.028845044,0.6437679,0.4996988,0.44403192,0.40283754,0.84983927,-0.32376182,0.1090914,-0.019179918,-0.36641154,-0.0058632884,-0.29884422,0.12557207,-0.4186048,-0.1095456,-0.059105378,-0.2438105,-0.00039712398,0.71119463,-0.4407717,-0.23120192,0.19776018,0.77576476,-0.18727873,-0.087681405,0.8312276,1.2409251,1.2260845,-0.050481893,1.096384,0.1753672,-0.075549714,-0.15123935,-0.16171743,-0.7994683,0.34337413,0.2585334,0.15174797,0.36438388,-0.065759234,-0.101819545,0.17881063,-0.22247495,-0.050665535,-0.0029192017,0.39503664,0.21970683,-0.08432364,-0.40639898,-0.31886917,0.047057245,-0.052520957,0.13461421,0.25178316,-0.2699119,0.6243976,0.00063671515,1.4994718,-0.23267849,0.037638646,0.13882953,0.80222905,0.28512493,-0.27266565,0.088772535,0.3822509,0.0039896863,0.24688354,-0.5065555,0.10273949,-0.29850578,-0.66892326,-0.17802931,-0.40301782,-0.014932394,0.06643461,-0.24346623,-0.31825736,-0.026438484,-0.2862593,0.2400143,-2.7303,-0.2516708,-0.0698074,0.34614453,-0.2167117,-0.28067204,-0.023818986,-0.5877187,0.21151473,0.40299255,0.52647233,-0.74402934,0.21812886,0.6427077,-0.6641282,-0.15691677,-0.42223147,0.18557675,-0.17222382,0.5853561,-0.11291348,-0.075487964,-0.06765329,0.20273243,0.6858477,0.17945403,0.21157211,0.22576554,0.36144644,-0.2304046,0.29676414,0.026549097,0.4209561,-0.30928415,-0.21013692,0.647259,-0.5015334,0.14586796,-0.27025792,0.137499,0.52456754,-0.36859232,-0.78521955,-0.56089276,0.046938166,1.0222543,-0.07352629,-0.88462037,0.12422189,-0.072978646,-0.28915778,-0.015219982,0.45523813,-0.20881365,0.11893975,-0.6103535,-0.040651638,-0.122618355,0.16772453,0.12127491,0.07256229,-0.4359376,0.76961803,0.104045406,0.33119282,0.14964083,0.2818629,-0.50188094,-0.6710401,0.24242964,0.9371259,0.38911167,0.18681653,-0.3749545,-0.1845381,-0.20789388,-0.1785844,0.012127172,0.65569794,0.65408635,-0.18128411,0.16977698,0.5196242,-0.080538005,0.020694735,-0.06903361,-0.3939102,-0.14180806,-0.07270683,0.5732016,1.0582137,-0.11366423,0.42346293,0.021404423,0.4952157,-0.19401005,-0.45014864,0.6906341,1.1918494,-0.22523433,-0.28245336,0.48622534,0.34167057,-0.6955647,0.62243736,-0.6679255,-0.44350636,0.4026888,-0.100426584,-0.43023297,0.16621701,-0.40947926,0.07231671,-0.7038902,0.43764356,-0.46575582,-0.27187383,-0.45127928,-0.27240196,-3.402629,0.24713136,-0.2942681,-0.2919413,-0.20902489,-0.02014129,0.13560802,-0.58684385,-0.5581203,-0.012544329,0.11918103,0.7192935,-0.16873105,0.08278961,-0.2073493,-0.60950375,-0.52426153,0.2210021,0.09266661,0.5067991,0.0105622,-0.38827127,0.17238614,-0.12700647,-0.39936903,0.046971604,-0.38152674,-0.67151654,-0.34000793,-0.5024262,-0.36205247,0.625179,-0.13054162,-0.0014730967,-0.31928155,0.040868375,0.02007166,0.26805905,0.060538735,-0.030384,0.14078596,-0.12822291,-0.026631359,-0.3127434,0.19777046,-0.12096544,0.3826349,0.5623571,-0.11108319,0.16020149,0.50412107,0.41591474,-0.1839694,0.8334983,0.12808307,-0.0049326946,0.1764831,-0.14170438,-0.25887728,-0.58569866,-0.21687089,0.17794248,-0.40258414,-0.48515537,-0.2143603,-0.42908388,-0.7290395,0.68487525,0.040378764,0.39335963,0.04315289,0.3784122,0.46455806,-0.1255016,-0.05781394,0.105960615,-0.07072893,-0.6336641,-0.2470836,-0.6799438,-0.5623888,0.19185522,0.79905033,-0.32982123,-0.29054543,0.13331625,-0.25893447,-0.040394858,0.07061545,-0.010493489,-0.11641446,0.47022927,-0.005341154,-0.740559,0.47054598,-0.14780793,0.12666829,-0.6423279,0.30073473,0.5181011,-0.5868467,0.54229707,0.28534022,0.29227343,-0.262804,-0.53888696,-0.0749971,0.13203417,-0.12946378,0.49694678,0.34506795,-0.7924561,0.39463055,0.10494911,-0.44238248,-0.67063373,0.45399702,-0.07870837,-0.37397888,-0.21016686,0.47696635,0.024827518,0.0012974349,-0.4701328,0.411164,-0.45426,0.007155345,0.2661435,-0.21527973,0.4435682,-0.111453585,-0.35484773,-0.6481505,0.043826584,-0.5255404,-0.376469,0.3071618,0.0282832,-0.052542593,0.20479853,0.19629198,0.37703034,-0.13438758,0.13674685,-0.017692603,-0.11372466,0.644604,0.46693546,0.93380475,-0.49763924,0.62593883,0.065928504,-0.07814992,0.14165774,0.031282313,0.24145573,0.14496537,0.46864802,0.37215343,-0.08410701,0.11833433,0.7150427,0.19450739,0.6631164,0.13219298,-0.27528617,0.30575502,0.122235365,0.42080307,-0.06723183,-0.684151,-0.08104536,-0.39990714,0.032977816,0.61211705,0.12361514,0.34839392,0.035690185,-0.3934726,0.09719856,0.027934331,-0.17955408,-1.3106316,0.1881063,0.1454106,0.78175616,0.5361234,-0.045914147,0.033357307,0.6387894,-0.053586546,-0.014421707,0.25208628,0.12220534,-0.5098521,0.51608646,-0.67430365,0.4696248,-0.1386216,-0.11662029,0.09895532,-0.12557766,0.5096345,0.76076156,-0.17690729,-0.0674224,-0.03605411,-0.31525767,0.117401645,-0.50737983,0.22113603,-0.58354944,-0.34028307,0.6912046,0.56387603,0.23065235,-0.18113905,-0.03438249,-0.015225548,-0.0021545703,0.30224186,-0.06421345,0.15257032,-0.080984265,-0.6277636,-0.17939575,0.59157383,0.19757575,0.1403384,-0.06816565,-0.14004731,0.2841783,-0.09239416,0.027180858,-0.05523467,-0.7763977,0.0037152905,-0.081138104,-0.5512049,0.54666215,-0.024130289,0.30499843,0.22111748,-0.0075230817,-0.31264612,0.2772779,0.12832162,0.81563306,0.11093206,-0.06485872,-0.4963056,0.08008209,0.38015035,-0.34272978,-0.11373857,-0.09709076,-0.06561637,-0.58530813,0.47599375,-0.09715677,-0.27901906,-0.13720241,-0.12233475,-0.094417535,0.6904351,-0.04194153,-0.18133023,-0.0016255653,-0.06382937,-0.38136452,-0.012703606,-0.0666027,0.06523164,0.19911297,-0.4303676,-0.15075693,-0.07270588,0.3205139,0.11876027,-0.015335575,0.28606465,0.54871696,0.15118681,-0.545723,-0.13522016,0.26170957,0.64730334,0.27364925,-0.12529565,-0.32447523,-0.61186653,-0.48364434,0.22486773,-0.013150929,0.14853057,0.26339653,-0.2988113,0.66316485,0.2491258,1.2796701,0.0766478,-0.31619975,0.21349746,0.6629621,-0.025930222,-0.04302972,-0.49864715,1.0946242,0.44986597,-0.5282277,-0.16986677,-0.4150591,-0.08076187,0.096200384,-0.27853754,-0.12047418,-0.17895964,-0.6444044,-0.029377524,0.14397305,0.4133236,0.03862101,-0.2522321,0.069580525,0.3363784,0.21593533,0.27738562,-0.3991521,-0.30449525,0.43295622,0.2343739,-0.028824527,0.09744103,-0.2839909,0.32529718,-0.6343291,0.19381097,-0.28552532,0.24762832,-0.1455434,-0.5580602,0.3849979,0.15560557,0.51156795,-0.47949344,-0.3914992,-0.3712859,0.40990108,0.47612512,0.25855306,0.55430984,-0.23508972,-0.058681723,-0.028557392,0.63459957,1.290111,-0.13278459,-0.048230033,0.37517846,-0.58357227,-0.8072485,0.23432605,-0.4594887,0.25086117,-0.17750613,-0.2869099,-0.75083345,0.3020808,0.14283046,-0.13030118,0.05093259,-0.6066538,-0.17731817,0.07221144,-0.37882847,-0.19182979,-0.3382015,-0.021525493,0.64259434,-0.23928474,-0.37050307,0.06770074,0.18352279,-0.20354074,-0.67050624,-0.16165069,-0.29835007,0.40709895,0.054740198,-0.18185686,-0.19766283,0.11770434,-0.65606064,0.19027695,0.16286197,-0.3742027,0.13087717,-0.39931896,-0.015363789,0.77940905,-0.34121287,0.116874054,-0.30682182,-0.6010692,-0.80938613,-0.31862643,0.34975654,-0.09398857,0.0096959425,-0.6909256,-0.15455352,-0.45158243,-0.117452376,-0.079173155,-0.4052758,0.3677875,0.023089183,0.38842976,-0.0576689,-0.8511754,0.2833645,0.41264006,-0.11655641,-0.6817612,0.38125175,-0.17864862,0.76623225,0.162596,0.087588064,0.36692393,-0.581081,0.2574828,-0.19623262,-0.35681552,-0.5099427,0.16158713,64 -596,0.519212,-0.107189655,-0.41829392,-0.18114695,-0.1471681,0.24370064,-0.23653474,0.47950065,0.20843846,-0.42020276,-0.15360428,-0.09672555,0.10804318,0.36310536,-0.12578341,-0.7669274,0.2104314,0.08894944,-0.40195853,0.5256151,-0.56524974,0.30029237,-0.017765522,0.33442307,-0.07606048,0.28553087,0.3194556,-0.27092963,-0.20248963,-0.16078514,-0.03975155,0.30249745,-0.6162116,0.21315405,0.04122782,-0.16552347,0.102070585,-0.2575858,-0.35969284,-0.70535797,0.13060248,-0.76956725,0.3080656,0.059524342,-0.28083506,0.26998842,0.009129107,0.25147086,-0.39754808,0.0428627,0.08795398,-0.09559294,-0.18193637,-0.21785691,0.025764138,-0.42325762,-0.523291,-0.08454617,-0.3648238,-0.2379524,-0.28676414,0.16253318,-0.3260776,-0.11552139,-0.04544672,0.49809963,-0.4285091,0.013116745,0.25160775,-0.29567617,0.3094352,-0.4133161,-0.08793589,-0.092805274,0.3559386,-0.19349065,-0.12667112,0.07142952,0.25996685,0.36542553,-0.02994734,-0.15668108,-0.42055303,-0.15224014,0.16074958,0.49417642,-0.14489715,-0.68787444,-0.101790614,-0.123136885,-0.17427017,0.06777305,0.07664253,-0.20514734,-0.11498895,0.05552651,-0.33327055,0.42654216,0.4519791,-0.3674366,-0.30548573,0.31767842,0.6407694,-0.006986485,-0.13607225,-0.071956545,0.08224548,-0.6123596,-0.17373261,0.090921275,-0.13557547,0.53448224,-0.19146882,0.29184958,0.66209483,-0.21212332,-0.0649228,0.16786021,-0.012605358,-0.002957766,-0.08365612,-0.14046785,0.23697624,-0.3485393,0.048377104,-0.19677374,0.80316705,0.27216274,-0.7181295,0.37540036,-0.52764374,0.045200165,-0.20027986,0.41726208,0.44073808,0.30728996,0.06560724,0.65006375,-0.44379044,0.011830339,-0.12314631,-0.39829892,0.0067705833,-0.10110169,0.03740633,-0.41538364,0.02956796,0.15512031,-0.13971391,0.016248317,0.2488179,-0.5532571,-0.063575745,0.1640345,0.8397952,-0.3116626,-0.21050715,0.5660356,0.89494747,0.863293,-0.003235684,1.1112864,0.35686237,-0.12792513,0.11801262,-0.48245636,-0.6364575,0.34068018,0.32321307,-0.026445223,0.26092362,0.0257922,-0.039757315,0.38929474,-0.22348844,0.05051699,-0.14147247,0.39755392,0.1967986,-0.084099606,-0.3579988,-0.2944888,-0.09383345,-0.069483526,0.3518489,0.17373496,-0.09428294,0.33904406,0.04892804,1.6007123,-0.049721774,0.18448117,-0.037296705,0.48123023,0.22673467,0.060822632,-0.1284038,0.28268278,0.081966996,0.14726672,-0.581277,0.18456022,-0.13646519,-0.4345055,-0.1784362,-0.3144991,-0.025239848,-0.16743381,-0.3573995,0.0396025,0.028465904,-0.21335107,0.47284222,-2.7330983,-0.23319277,-0.0198772,0.40122128,-0.29544008,-0.26177555,-0.10202512,-0.50785565,0.25983423,0.41740942,0.5942215,-0.649009,0.50147367,0.5288013,-0.46572143,-0.21431798,-0.5521512,-0.08870078,-0.023379456,0.4097443,0.14677851,-0.09100192,-0.068574354,0.21215259,0.40869725,-0.074565426,0.059304018,0.19232823,0.39598405,0.033461288,0.4348624,0.026764873,0.5493095,-0.17365101,-0.15199777,0.3131681,-0.4389055,0.25600132,-0.12724501,0.00660118,0.28144276,-0.17840736,-0.968331,-0.6870167,-0.27781513,1.1768748,-0.20872134,-0.23352626,0.076948985,-0.08801273,-0.2785985,0.1346934,0.34993333,-0.07153591,0.050609156,-0.78393894,0.124308735,-0.04743652,0.26190633,0.03372664,0.014499889,-0.4964625,0.6620516,-0.07917041,0.420825,0.29021138,0.28822502,-0.2699418,-0.5283355,-0.0549039,1.0231584,0.19046912,0.16738793,-0.24308985,-0.3009047,-0.36181146,0.02678176,0.039540313,0.6760873,0.63817596,-0.011552792,0.027566288,0.25929427,-0.08515319,0.09561682,-0.15076986,-0.4098169,-0.055269405,0.11066489,0.5877179,0.6241503,-0.18697184,0.43694064,-0.061448004,0.3753661,-0.25592238,-0.3136975,0.54823846,0.888896,-0.13465928,-0.19510664,0.5045949,0.48622754,-0.36128098,0.3421151,-0.78374475,-0.40674335,0.39311314,-0.23327166,-0.34656987,0.18590467,-0.23303747,0.15051506,-1.0025584,0.45856407,-0.35401356,-0.41646945,-0.45288882,-0.11691479,-4.204275,0.14217879,-0.0900276,-0.12057889,0.06492331,-0.073977195,0.10811085,-0.68470633,-0.49180084,0.19547042,-0.105898365,0.6153652,-0.04354755,0.31153858,-0.31025535,0.019894926,-0.13978586,0.3449783,0.11343871,0.20539401,0.17532529,-0.50114596,0.0995473,-0.10491101,-0.31058392,0.24111931,-0.65519494,-0.5318833,-0.048618115,-0.56021047,-0.21818113,0.69625896,-0.50655967,0.07934865,-0.136443,0.13861725,-0.22353818,0.3618419,0.010923771,0.045652114,0.117052674,0.012482336,-0.10296056,-0.31268832,0.44145772,0.03390834,0.32232857,0.382376,-0.113789305,0.124706835,0.66478986,0.5290617,0.13330144,0.56581646,0.3171952,-0.04783474,0.24467763,-0.35610926,-0.20843233,-0.39794022,-0.36960799,-0.037844893,-0.29247594,-0.34093386,-0.13348225,-0.3417013,-0.6267538,0.46368524,-0.001650205,-0.10436409,0.040602904,0.13934258,0.42589357,-0.22660254,0.018576149,0.012228558,-0.107789055,-0.5429956,-0.21149829,-0.537642,-0.3820524,0.2027352,0.8992777,-0.24792594,-0.009816926,-0.082520895,-0.15609524,-0.074752115,0.15389475,0.075974084,0.07460204,0.36592543,-0.07785343,-0.6840293,0.40416113,-0.25918388,-0.13162646,-0.52237386,0.13723055,0.67561847,-0.6139114,0.4783049,0.47120878,0.032546613,-0.00056672556,-0.3366937,-0.32900384,0.13017753,-0.17577985,0.3285699,0.06307875,-0.73861843,0.27751023,0.26171502,-0.33303246,-0.6473842,0.604747,0.051289264,-0.39146832,-0.114024214,0.3597738,0.2244668,0.012813857,-0.35169923,0.115931585,-0.4108775,0.15905842,0.13629235,0.010992593,0.55911076,-0.15985104,0.020149764,-0.7385142,-0.2507541,-0.46603584,-0.28088224,0.15974535,0.07909858,0.009299987,0.24068376,0.11833068,0.3822273,-0.37500557,-0.021349732,0.053112857,-0.3670435,0.46288103,0.39052588,0.4124317,-0.37867266,0.56055933,0.064929985,0.051661056,0.06609761,-0.020314272,0.43689108,-0.03833119,0.42463797,0.20683418,-0.15370561,0.34766597,0.7285392,0.27021435,0.4905626,0.1770022,-0.17093365,0.1837959,-0.005208703,0.1680538,0.060456898,-0.51729465,0.08042038,-0.18196389,0.10433845,0.4362242,0.14862157,0.3067675,-0.041557528,-0.5271512,-0.03169865,0.1695861,0.0093743615,-1.1795352,0.33967465,0.19730988,0.82899886,0.484608,-0.083447605,0.20489396,0.6770834,-0.08207902,0.14162377,0.28032488,-0.1464781,-0.5720011,0.5008862,-0.6080045,0.38781452,-0.059369538,-0.036543686,-0.12761185,-0.21003231,0.19742033,0.8452424,-0.13259196,0.11302651,-0.07799658,-0.32449082,0.057201155,-0.42911798,0.1861461,-0.6237932,-0.1042137,0.544611,0.62424725,0.34970707,-0.054705754,-0.00822266,0.18715623,0.003744766,0.21175545,0.03465327,0.042478826,0.09176559,-0.7721239,-0.26149604,0.59726536,0.13297015,0.19434786,-0.08667528,-0.111039914,0.42968205,-0.22893715,-0.09611772,-0.13868468,-0.5700023,-0.036883537,-0.29199535,-0.41023147,0.51653063,-0.16739175,0.31240872,0.2030437,0.020150108,-0.24978036,0.244327,0.15314029,0.6550027,0.15861365,-0.19878127,-0.41404024,-0.01768173,0.22273019,-0.19370867,-0.08252353,-0.36047316,0.007469746,-0.5262941,0.3128595,-0.12585825,-0.30216742,-0.037850972,-0.19893393,0.02766976,0.52523875,-0.09860109,-0.21495852,0.06486286,-0.109561495,-0.15888415,0.13103077,-0.23596652,0.2296075,0.23519042,-0.13649176,-0.07012807,-0.14001265,-0.1804285,0.34955657,0.059443694,0.31637383,0.47850704,0.24975897,-0.29519764,-0.17090295,0.20414454,0.57515556,0.0027215665,-0.11458281,-0.38017765,-0.46162897,-0.32468572,0.19288942,-0.1282016,0.25534087,0.1282492,-0.4204459,0.5227399,-0.05109844,1.1089776,0.11411874,-0.3151724,0.11851837,0.43408495,0.21375711,0.09658051,-0.44365498,1.0017909,0.46832755,-0.24948193,-0.11864038,-0.39084676,-0.10234451,0.011379182,-0.15399861,-0.22636932,-0.034257613,-0.6199936,-0.2768707,0.20860086,0.19291472,0.23653406,-0.008912655,0.05951225,0.23965746,0.10908798,0.35898727,-0.52982795,-0.08503126,0.3880531,0.25938493,-0.017476188,0.11688569,-0.28532282,0.40876848,-0.4618459,0.1283819,-0.34528005,0.1761237,-0.23538803,-0.20093116,0.27104583,0.18629488,0.26744363,-0.23768498,-0.49339497,-0.24045335,0.45576742,0.2659224,0.048834726,0.6160389,-0.12863661,-0.11469201,0.15114914,0.5105558,0.9014768,-0.34191984,0.065607935,0.61903703,-0.28344116,-0.65196025,0.27132863,-0.2947337,0.19363119,-0.12428439,-0.27569225,-0.71470743,0.36375433,0.18589687,0.0045695123,0.101098806,-0.4829462,-0.17866914,0.31200168,-0.37976155,-0.236826,-0.30589658,0.21452309,0.6113385,-0.3992018,-0.11092791,0.10810138,0.2518748,-0.25992522,-0.49104416,-0.20991725,-0.39767283,0.27311018,0.34126928,-0.28575572,-0.21286751,0.07151114,-0.37365162,0.20642668,0.30055723,-0.40603617,0.11578034,-0.2839083,-0.16098088,0.8471206,-0.1382412,0.20188276,-0.63224304,-0.28708458,-0.87651074,-0.33701882,0.5656272,-0.02834951,-0.1380563,-0.5515892,-0.11564994,0.022485316,-0.23426464,-0.13206182,-0.49469185,0.47770035,0.09816216,0.47859353,0.10536877,-0.87923753,-0.035797324,0.19313174,-0.2698312,-0.6330008,0.4289357,-0.1560938,0.81164515,0.066686995,0.16011563,0.470669,-0.45358768,-0.08868037,-0.28311318,-0.12328322,-0.6176196,0.15702698,68 -597,0.54728276,-0.31966236,-0.6381064,-0.15870681,-0.3970056,0.0983988,-0.16745962,0.5449598,0.1606389,-0.20743161,-0.21654326,-0.020104926,0.0769801,0.2077379,-0.20863606,-0.69410515,-0.10507774,0.12108059,-0.53007066,0.6570081,-0.13117918,0.20641623,-0.13473338,0.42656517,0.51883996,0.4875244,0.18154076,0.049370226,-0.118874945,-0.19361034,-0.18910874,0.04096546,-0.47906113,0.16195077,-0.22955337,-0.36117125,-0.10723913,-0.49872464,-0.4101765,-0.772918,0.45809904,-0.8616035,0.4486653,0.024316512,-0.24467397,0.34105968,0.21836287,0.31382844,-0.30249277,-0.14567131,0.056644194,-0.22532335,0.06037391,-0.26989138,-0.04466039,-0.43521574,-0.51400894,-0.21085644,-0.6476355,-0.2135144,-0.21478094,0.06894088,-0.26919776,0.020216634,0.031089982,0.63246155,-0.43214357,0.14173102,0.25199717,-0.30903032,0.09047719,-0.69291914,-0.17257658,-0.04748369,0.2911626,0.05068762,-0.08748138,0.34192827,0.06731718,0.044574223,0.1035347,-0.19700953,-0.39687464,-0.15951061,0.08183949,0.36031622,0.08118756,-0.54447293,-0.00657431,0.0089514805,0.3168897,0.23118645,0.22788407,0.042652473,-0.08962321,-0.10191829,-0.116033204,0.5367852,0.46855402,-0.18223013,-0.11506741,0.3673039,0.59895736,0.26646912,-0.2753029,-0.022946361,0.021877615,-0.3562018,-0.04907197,0.17568223,-0.18969369,0.6367103,-0.10213037,0.29182765,0.7193357,-0.2734863,0.09686268,0.020469116,0.12422313,-0.22183888,-0.18886319,-0.22283298,0.25558144,-0.5212842,0.1588795,-0.24087295,0.71432024,0.2813998,-0.3767811,0.2835394,-0.610536,0.1716365,0.05828541,0.4659737,0.6173326,0.57071894,0.3508897,0.6971358,-0.19796793,0.013379808,-0.10184117,-0.35820338,0.10239252,-0.16667837,0.050259013,-0.50214493,-0.011856253,-0.0019941283,0.0054782904,0.10300871,0.58217514,-0.4484909,-0.14634082,0.09406337,0.84599346,-0.2179546,0.022944275,0.8523951,1.095431,0.87794316,-0.04586796,0.8537964,0.069325395,-0.34143603,0.09940982,-0.26413074,-0.54129684,0.2560192,0.37606254,-0.31889316,0.58119285,0.07631032,-0.08792825,0.20453797,-0.3175277,0.046448972,0.02053415,0.11413602,0.17179348,-0.040337447,-0.4213598,-0.30011526,-0.09917068,0.10285275,0.33608955,0.23777372,-0.31202397,0.49387038,0.0044050673,1.5091641,-0.051240798,0.03475874,0.17117248,0.6773281,0.32092646,-0.008941586,-0.091506846,0.54640067,0.25530103,0.26525548,-0.56006974,0.25241143,-0.37442812,-0.40230063,-0.079606846,-0.5211021,-0.18141586,0.0580745,-0.25322306,-0.119542524,-0.09583974,-0.32808068,0.32716212,-2.7470827,-0.084155194,-0.1674585,0.40655917,-0.25357282,-0.22919728,0.021949796,-0.48808634,0.2715055,0.38729742,0.47669756,-0.6271945,0.33157486,0.5715502,-0.7159484,-0.0031946898,-0.32012558,-0.021462945,0.016194465,0.58151823,-0.16749996,-0.0002851853,-0.017079147,0.24987325,0.4478215,0.07110457,0.08875705,0.3372556,0.36879867,-0.12321888,0.54475063,-0.050054863,0.43344674,-0.29782832,-0.10076012,0.24599868,-0.3645632,0.29495123,-0.19631013,0.14167683,0.5993715,-0.4649058,-0.8664951,-0.50828856,0.22275048,1.0997933,-0.40287656,-0.43743357,0.24987444,-0.485474,-0.2763283,-0.039206844,0.494561,-0.21389736,-0.060335692,-0.64671046,0.014175881,-0.02195891,0.11966842,0.16212589,-0.057927195,-0.44439027,0.7704378,0.08548602,0.58849746,-0.040669873,0.1770489,-0.42337927,-0.43787104,0.18228793,0.6132522,0.4421678,0.043458745,-0.20478044,-0.13668273,-0.1644637,-0.15818483,0.12485339,0.7490057,0.5304811,-0.055437107,0.130048,0.2829251,-0.1295252,0.03433573,-0.11324482,-0.22396295,-0.15809776,-0.17574857,0.4346979,0.6279535,-0.03985525,0.42501637,0.05492711,0.5387646,-0.0194585,-0.46939814,0.67210585,1.1988856,-0.2446642,-0.33582824,0.38357192,0.4265811,-0.3399587,0.45358425,-0.6928853,-0.1961725,0.5864991,-0.1427696,-0.50193644,0.20251285,-0.21127905,0.077839024,-0.69178736,0.050821446,-0.32557008,-0.4326494,-0.40931475,-0.16379884,-3.330986,0.03478268,-0.3239244,-0.29058018,-0.39507002,-0.16044281,0.074702874,-0.81209576,-0.5367275,0.111390024,0.13806301,0.7072596,-0.16488835,0.15068415,-0.27380016,-0.39944664,-0.31538436,0.33785966,0.031150162,0.34041658,-0.26677108,-0.33489752,0.034659103,0.09076316,-0.43599382,0.019978296,-0.44237608,-0.33734792,-0.11418025,-0.65002626,-0.1807929,0.6193666,-0.18331856,-0.0026255297,-0.18601349,0.08845492,-0.05261737,0.15903585,0.083914846,0.102982335,0.17876047,0.0087990165,0.28093544,-0.40001515,0.36031294,0.026107006,0.45569912,0.09524015,-0.07777785,0.24152735,0.3800715,0.4629188,-0.04352997,0.8346646,0.2551794,-0.13966465,0.23114234,-0.1890803,-0.4240672,-0.65911967,-0.2557197,0.016431639,-0.2667664,-0.36334693,-0.25545695,-0.4161097,-0.8563125,0.46480253,0.04841347,0.41575986,0.0010282352,0.35693187,0.65919024,-0.21456939,0.022486363,0.15529384,-0.2140317,-0.66896755,-0.01835802,-0.5342813,-0.35102448,0.17731649,0.53270185,-0.4937695,-0.15224217,0.022068454,-0.4420424,0.16453475,0.17111176,0.02873735,0.1825024,0.58083284,-0.07727592,-0.53754,0.6264261,-0.18999377,-0.19898663,-0.52197826,0.20868042,0.44365433,-0.7309262,0.48075724,0.31039158,-0.04223849,-0.34034553,-0.24505565,-0.041356087,-0.049747054,-0.083156064,0.31349218,0.31009915,-0.72415644,0.26145098,-0.011533453,-0.17967804,-0.76427746,0.5709847,-0.16860868,-0.40632138,-0.21912844,0.39967722,0.14751673,-0.03943123,-0.23850897,0.086350925,-0.3099578,0.026046505,0.11059645,-0.12695208,0.32670575,-0.11330081,-0.19113892,-0.7823815,0.24141198,-0.3949542,-0.2137464,0.54848486,0.07175258,0.15448758,0.08805838,0.18674701,0.2838801,-0.28016785,0.14071147,0.0058448683,-0.2368149,0.51450473,0.44528404,0.51256126,-0.5259265,0.6370509,0.0251084,-0.076614484,0.28594986,0.0036153977,0.32002142,0.059482154,0.563392,0.3142659,-0.25398344,0.25214493,0.56921375,0.21747257,0.5994117,0.18036638,-0.07063489,0.17369233,-0.020158194,0.23386747,0.0010060531,-0.7485079,-0.030027706,-0.32692492,0.060463972,0.44150817,0.16105835,0.21877578,0.012952147,-0.36207575,0.08652285,0.29485032,-0.14905292,-1.0281516,0.25016284,0.44118437,0.87820816,0.4461503,0.03041485,-0.05946006,0.7585366,-0.08078944,0.109376594,0.30086526,0.25728086,-0.5418389,0.5011229,-0.6496018,0.636064,0.010732449,-0.21015136,-0.0055557834,-0.082258135,0.35135368,0.7392277,-0.21907619,-0.16606046,-0.0021016942,-0.39103934,0.17931406,-0.40758625,-0.020301653,-0.58385015,-0.30477443,0.5590097,0.48992884,0.36746722,-0.042383313,-0.004251658,-0.05360409,-0.11932499,0.27935952,0.015675612,0.0715224,0.019709405,-0.7420676,-0.3387358,0.38226193,-0.11821727,0.18222383,-0.038143907,-0.103220716,0.26697972,-0.028170267,-0.0005889787,-0.11969282,-0.7388806,0.20494103,-0.0029465144,-0.642614,0.6629471,-0.02668136,0.27660176,0.25096914,-0.07431779,-0.19178063,0.3289997,0.14541069,0.901372,-0.017833957,-0.062150188,-0.50862384,0.04997479,0.08962853,-0.27442306,-0.013703163,-0.3404665,0.18410532,-0.5626354,0.50790733,-0.10175777,-0.38827676,-0.20528239,-0.23922276,-0.082145855,0.58612686,-0.13926499,-0.183338,-0.14790085,-0.046248104,-0.322813,-0.3999419,-0.29436508,0.078182,0.12140739,-0.055881068,-0.2630221,-0.018755885,0.06689905,0.36677906,-0.10288168,0.47345436,0.3055326,-0.0940928,-0.17538497,-0.25889233,0.42268023,0.4544811,0.03073955,-0.029625664,-0.31264415,-0.6266657,-0.43069333,0.20947888,-0.062763065,0.2512161,0.21439677,0.04294977,0.76973844,-0.24396212,1.1414111,-0.024791548,-0.48153707,0.314212,0.6590644,-0.03497543,-0.20014685,-0.20014364,1.1373506,0.38969642,-0.15950075,-0.089824066,-0.4058923,0.071190715,0.21179493,-0.2059529,-0.052136857,-0.163486,-0.5141766,-0.25444177,0.12723747,0.3073145,0.25276273,-0.0793929,0.019990362,0.24239287,0.13588773,0.27094957,-0.3725007,-0.40347096,0.3797228,-0.11912003,-0.10908561,0.18668853,-0.53069305,0.51463044,-0.45134628,0.08527765,-0.43928978,0.17267224,-0.17063001,-0.24963555,0.27179292,0.096198834,0.46704632,-0.43619412,-0.44254795,-0.41856086,0.40463284,0.39243177,0.22575706,0.4884948,-0.24962792,0.09154008,-0.041371647,0.58397585,0.7927004,-0.061721362,-0.06830367,0.30785477,-0.63070005,-0.69092953,0.23744616,-0.3738187,0.26316753,0.05930111,-0.2526752,-0.64639306,0.32493508,0.1539263,-0.0058349827,0.08415306,-0.8632721,-0.326487,0.09368108,-0.35409674,-0.09626075,-0.3880315,0.02819373,0.6482586,-0.27188584,-0.36071312,0.099343866,0.16651963,0.060967274,-0.54034775,-0.06468729,-0.31387505,0.3294885,-0.047646567,-0.13081786,-0.19354102,0.17758678,-0.49930423,0.40239826,0.011472001,-0.4092323,0.12012542,-0.22938806,0.02375662,0.7902758,-0.29044187,0.019706102,-0.45861638,-0.42182353,-0.835124,-0.42925876,0.24745314,-0.12596464,0.08429012,-0.72603124,0.055013813,-0.20328219,-0.01745261,-0.1652099,-0.5432102,0.40155065,0.13439175,0.47899893,0.027669035,-1.0481416,0.29373977,0.033256955,-0.2657151,-0.7909362,0.35438478,-0.29967785,0.6890125,0.09043606,0.122166164,0.1881102,-0.43089053,-0.14273967,-0.28886622,-0.15736501,-0.49876758,0.006483078,75 -598,0.2153948,-0.25636408,-0.4805203,-0.04483781,-0.1464658,0.059216198,-0.18783051,0.57444835,0.12424902,-0.43512183,-0.14229994,-0.2062712,-0.095330715,0.12164479,-0.119626984,-0.5531224,-0.04639034,0.24516584,-0.51137865,0.43522966,-0.46017578,0.17614578,-0.008214877,0.45867068,0.18382868,0.15982905,-0.025959061,-0.07840102,-0.22923191,-0.25978792,-0.09144088,0.17396882,-0.5484666,0.1287671,-0.14161253,-0.26156548,-0.052936748,-0.47461465,-0.348619,-0.7713802,0.3877568,-0.7006506,0.4298599,0.12539949,-0.2847004,0.12891254,0.12435324,0.40998855,-0.05672515,-0.03737443,0.33854055,-0.15434936,0.005779225,-0.21978667,-0.1418787,-0.19424838,-0.5083846,-0.028384496,-0.35692772,-0.2687906,0.01709618,0.28126886,-0.28859165,-0.088739835,-0.21964043,0.642419,-0.3437648,0.09305036,0.374606,-0.15795936,0.2543842,-0.5773827,-0.1387822,-0.1350259,0.074725375,-0.21520017,-0.2680493,0.12625827,0.19617778,0.40122125,-0.17111763,-0.14426008,-0.07320301,-0.121294335,0.082461886,0.5294951,-0.2845393,-0.32991144,-0.096748896,-0.05872974,0.0508341,0.1746681,0.071502775,-0.3446954,-0.108518615,-0.12888326,-0.25197232,0.26832324,0.46896178,-0.19336444,-0.19221336,0.29458734,0.5262047,0.24531339,-0.11832683,-0.038594343,0.121521,-0.55595815,-0.1866619,0.17484388,-0.10892332,0.49566144,-0.14484902,0.18219839,0.6810465,-0.14889155,-0.055983223,0.091478534,0.24402541,0.22760606,-0.452822,-0.4482053,0.24092744,-0.40430802,0.116227746,-0.17606279,0.7826567,0.120865345,-0.60800004,0.42529994,-0.5389467,0.079795875,-0.02776422,0.54703546,0.6899932,0.39581734,0.28522146,0.56077546,-0.29484418,0.08674626,-0.12362143,-0.03195801,0.10161838,-0.043288883,0.16633591,-0.4216335,-0.013556015,-0.06733653,-0.10376795,0.013944538,0.19216268,-0.6656564,-0.03349457,0.08239097,0.8329413,-0.20991427,-0.09760356,0.6919042,0.8787196,0.90998036,0.17394914,1.0703206,0.2832761,-0.21441555,0.07669193,-0.10954924,-0.7939502,0.18250939,0.21966217,0.2083548,0.0666018,0.18354654,-0.075361,0.49218437,-0.37387925,0.06471259,-0.24328774,0.3911942,0.035928912,0.011977177,-0.20999947,-0.34705245,0.02592841,-0.066367745,0.05062174,0.22152755,-0.20439376,0.33192238,0.012209792,1.6418018,-0.046748757,0.24041143,0.13018139,0.36434263,0.13406417,-0.2470865,-0.0876832,0.40551817,0.3960379,-0.007896364,-0.52945435,0.13093969,-0.1091914,-0.31471136,-0.05219118,-0.11674551,-0.075976886,-0.24190523,-0.45847115,-0.2273639,-0.17514668,-0.15396258,0.36414814,-2.9059598,-0.043441013,0.016724208,0.32465,-0.2841187,-0.44612217,-0.107507996,-0.46835408,0.44188148,0.24122916,0.3794517,-0.6497793,0.3766952,0.21606578,-0.33551443,-0.15983413,-0.7043759,-0.115119055,0.017973743,0.18591891,-0.09387462,0.19275576,-0.1727117,-0.01343044,0.35433975,-0.13974439,0.16837876,0.33049628,0.3095695,0.25660813,0.2565498,0.062352125,0.37371656,-0.2979223,-0.21426636,0.28208813,-0.6472347,0.24653329,0.04162288,-0.026531257,0.4766788,-0.38614437,-0.62682474,-0.6643859,-0.3789372,1.0136628,-0.28576586,-0.29776648,0.17027268,-0.57273155,-0.37445098,-0.083800405,0.582455,-0.038072746,-0.11482918,-0.8073083,-0.14711833,-0.14690131,0.52065986,-0.051095046,-0.019969344,-0.3122914,0.44807544,-0.19692181,0.36446026,0.441548,0.027687011,-0.47123104,-0.41649416,-0.018076448,0.8928395,0.3402678,0.18594623,-0.03648724,-0.17719483,-0.3104943,0.04969573,-0.013270686,0.6676623,0.7558062,-0.056268886,0.1821588,0.35684505,-0.11727798,0.029319461,-0.1310992,-0.39084065,-0.111545324,0.14709562,0.5507899,0.49622986,-0.044155225,0.49086004,-0.032061115,0.29512686,-0.33213264,-0.36954543,0.29835203,0.6078635,-0.052202545,-0.13164441,0.51623523,0.3675215,-0.26764548,0.435253,-0.49873748,-0.26371294,0.47673252,-0.17214158,-0.46777338,0.26622227,-0.24633919,0.083355024,-0.6407104,0.40423635,-0.38308346,-0.77376187,-0.64662224,-0.16864172,-2.601939,0.14204799,-0.26818198,-0.27131942,-0.11206326,-0.11359416,0.21397935,-0.35807002,-0.52246416,0.21148871,0.092671305,0.62174827,-0.01110726,0.029306797,-0.23430842,-0.17424735,-0.30431703,0.13497272,0.24502502,0.17558596,-0.1447553,-0.3568433,-0.12604839,-0.16550805,-0.3266052,0.09365276,-0.6964617,-0.49255818,-0.11426242,-0.66373265,-0.3197737,0.7303781,-0.41664404,0.022770252,-0.24917728,-0.08323793,-0.11143171,0.4381733,0.2968729,0.2986228,-0.085142925,-0.032506056,-0.1526868,-0.23547204,0.011223545,0.099991456,0.1423822,0.34579527,-3.4845792e-07,0.21395046,0.2391116,0.6319618,0.057271555,0.7588388,0.44650683,-0.16756731,0.3444638,-0.25407544,-0.19218427,-0.26331836,-0.09747021,-0.013008322,-0.31384578,-0.4621348,-0.14613596,-0.30834386,-0.7197332,0.419202,0.049411662,-0.17073902,0.0508194,0.34208664,0.33665502,-0.15700197,-0.016583603,-0.123824015,0.004060824,-0.3966827,-0.30722088,-0.48586208,-0.30911893,0.28467208,1.0996615,-0.21213685,0.14426509,0.043908916,-0.27180642,-0.16884874,0.35221192,-0.19478992,0.22050872,0.534045,-0.11564761,-0.5827784,0.26624948,-0.138912,-0.35116354,-0.5665114,0.17744063,0.74986523,-0.77779514,0.7309293,0.2520506,0.036819313,-0.39446926,-0.45096046,-0.27073348,0.03200949,-0.35324982,0.29814702,0.22746979,-0.52477175,0.32693973,0.376128,-0.21261446,-0.7460503,0.32266456,-0.051856473,-0.42499363,-0.12515086,0.38182032,-0.19509356,0.17227069,-0.11381427,0.17885216,-0.39874655,0.07412478,0.18233332,-0.17775342,0.17619395,-0.2804783,-0.08891775,-0.61056596,0.20533241,-0.5009851,-0.40219545,0.23512457,0.02187236,0.141245,0.33561108,0.09642862,0.37988964,-0.21677193,0.16014344,-0.15324908,-0.17130886,0.18131587,0.488633,0.35295904,-0.36633107,0.5992359,0.10545352,-0.026841726,-0.29912883,0.15811095,0.4720201,0.020326775,0.37507203,-0.14823389,-0.18875091,0.28165448,0.94955456,0.08773644,0.56671107,-0.100957885,0.16509101,0.14224344,0.007848561,0.15298216,0.17342503,-0.42338112,-0.088401586,-0.12279863,0.11960955,0.39189038,0.14203247,0.40578854,0.00962459,-0.2850437,0.0029492723,0.22427866,-0.046337843,-1.0401129,0.44252226,0.22956806,0.85320824,0.5904534,0.16779351,0.06935426,0.5663538,-0.1280489,0.15431036,0.16597413,-0.10727843,-0.40826428,0.5837937,-0.7330993,0.41741624,-0.08237307,-0.04928744,-0.07908019,-0.16020386,0.6040182,0.72522634,-0.17284347,-0.025096783,0.036599614,-0.2017029,0.11613666,-0.3172848,0.0790584,-0.6960316,-0.45380723,0.5381951,0.45697168,0.38494554,-0.23313716,0.008852789,0.25399774,-0.053802073,0.06890312,0.00832819,0.06794576,0.1469462,-0.5586358,-0.31989238,0.60063446,-0.32073462,0.097939655,0.075259,-0.12665083,0.30190113,-0.17446372,-0.029478274,-0.1536054,-0.74530834,0.13121966,-0.39228678,-0.35030854,0.4765243,-0.26166427,0.12475732,0.086953245,0.18587941,-0.31017208,0.60445625,0.21133192,0.75029343,-0.03511968,-0.13051698,-0.21714643,0.35196787,0.06185865,-0.07476587,-0.17077404,-0.1882604,0.04159925,-0.67366874,0.42470858,-0.039981227,-0.093182735,0.07993957,-0.10284294,-0.028941823,0.5045202,-0.031643752,-0.06216062,0.015445865,-0.4854411,-0.24475397,-0.05550224,-0.081497364,0.30934876,0.1954508,0.041826215,-0.06929112,-0.03863891,-0.25569308,0.4468826,0.08230631,0.29465315,0.37303466,0.17932269,-0.36281306,-0.11504478,-0.043851502,0.4557801,0.119746275,-0.03974219,-0.1300132,-0.28716856,-0.3242134,0.5120483,-0.11228587,0.48210204,0.023499044,-0.24604797,1.0116091,0.06509396,0.9670851,-0.09068028,-0.29268268,-0.05528208,0.37923387,-0.10960657,0.018965181,-0.4966749,0.8351227,0.2911406,-0.06402323,0.03831121,-0.20281121,-0.09030465,0.3577704,-0.1067617,-0.12065755,-0.11510234,-0.552673,-0.2326822,0.18949355,0.2497059,0.03148464,-0.05648084,0.035153504,0.33279407,-0.08393494,0.112344615,-0.4147094,0.2397566,0.3082482,0.25691974,0.097931735,0.16753814,-0.37325656,0.40724277,-0.5135752,0.23235358,-0.1167991,0.09894722,-0.17087232,-0.39151856,0.13633583,0.12175377,0.26233995,-0.50043446,-0.13583368,-0.24438047,0.47446358,0.23735546,0.20441619,0.573898,-0.28241333,0.081591375,-0.089780286,0.51681054,0.77478886,-0.24974085,-0.17649522,0.4268091,-0.26949093,-0.69748867,0.37059137,-0.25193486,-0.030195732,0.018282373,-0.20301352,-0.39436147,0.23534451,0.3321132,0.11929737,0.031765778,-0.5608991,-0.026391152,0.38855156,-0.08411288,-0.29614323,-0.36058316,0.2627098,0.7768866,-0.16838352,-0.2932613,-0.016223338,0.21751414,-0.35784644,-0.2993483,0.00057833124,-0.44268715,0.28828144,0.008355205,-0.2119763,-0.12291687,0.11213439,-0.4533704,-0.021331837,0.095011435,-0.2738834,0.013789723,-0.09360159,-0.060075678,0.78160137,-0.18080051,0.028931411,-0.50765,-0.468019,-0.58991265,-0.23768264,0.40165088,0.12249672,-0.039400797,-0.62168527,-0.082522355,-0.11824683,-0.1046516,0.011723716,-0.3159947,0.5246649,0.18589629,0.18182606,-0.08502852,-0.77508664,0.073512636,0.072688766,-0.28492534,-0.4872104,0.3908337,-0.08926438,0.7732681,0.04342634,0.0095587885,0.28399447,-0.35964042,0.1920133,-0.2050326,-0.20463273,-0.72504586,0.050332896,84 -599,0.5443111,-0.083397426,-0.5493235,-0.17897575,-0.16925001,0.03799951,-0.23751964,0.48944652,0.12360627,-0.5703885,-0.21895324,-0.16225663,0.1859559,0.21203023,-0.15063979,-0.68642044,0.12340418,0.27663213,-0.29459608,0.47439593,-0.5058103,0.41466767,0.023415145,0.35013792,-0.0041386713,0.26104987,0.1667164,-0.17433771,-0.02417346,-0.3381887,-0.07346819,0.31401289,-0.8247848,0.14969751,-0.13644019,-0.54567873,0.21309607,-0.32117873,-0.28697836,-0.6573919,0.11827651,-0.76431286,0.5137234,0.29127827,-0.32102233,0.06772949,0.117380984,0.35117736,-0.23128048,0.19514424,0.19284448,-0.15191562,0.00887206,-0.2500171,-0.10744857,-0.51510805,-0.6223496,-0.14411211,-0.3747166,-0.16617133,-0.37605283,0.20846708,-0.27949652,0.018376043,-0.04049944,0.22057962,-0.5127374,-0.11919591,0.24584284,-0.18192922,0.42743254,-0.44619352,-0.22450124,-0.13962658,0.33599842,-0.41768405,-0.20594798,0.2243219,0.23246437,0.45983252,-0.03848175,-0.22060816,-0.37057745,-0.12869094,-0.026588788,0.6379453,-0.23303853,-0.40077612,-0.09799806,-0.12237407,0.009746224,0.44146603,0.093563825,-0.033829156,-0.19279186,-0.10384731,-0.2501332,0.18064615,0.48500136,-0.461739,-0.24044701,0.17271343,0.37119308,-0.029344486,-0.056852855,0.06887356,0.007845996,-0.5809034,-0.27719158,-0.0034488714,-0.2337211,0.60606265,-0.042070583,0.19713844,0.75102705,-0.02682619,0.11601463,0.013399069,-0.038819477,0.10027286,-0.20160106,-0.31133702,0.4776162,-0.4455055,0.21623649,-0.2833091,0.777888,0.22835407,-0.6925862,0.26554042,-0.6636342,-0.018663295,-0.123753004,0.4783126,0.31974322,0.41423872,0.35341388,0.6792494,-0.58659923,0.09544743,-0.048130926,-0.19041666,0.058469217,-0.107772864,0.021001317,-0.2866461,0.063657515,0.13725387,-0.030298023,0.14876422,0.49009416,-0.5609249,0.030623479,0.35514766,0.839922,-0.36530483,0.040929463,0.5997209,1.0037555,0.90120053,-0.00029240205,1.2322837,0.22445172,-0.37758416,0.008664755,-0.10540748,-0.7307311,0.1850219,0.42601797,0.16935904,0.25444072,0.32859594,0.00998353,0.31798744,-0.2768211,-0.053632285,-0.1304395,0.043882873,0.0357397,-0.1546874,-0.4455937,-0.32844993,-0.19970693,-0.025126027,-0.17030877,0.28406432,-0.17646216,0.21129104,0.051821813,1.7901319,-0.0018851482,0.17660843,0.15299071,0.4558064,0.272889,0.005016453,-0.049826257,0.2960469,0.22612868,0.21944435,-0.41121724,-0.013912857,-0.21850553,-0.434148,-0.12246021,-0.23085967,-0.11388026,0.0022274645,-0.5189056,-0.10507311,-0.041945733,-0.1340964,0.455763,-2.482352,-0.06775026,-0.012895486,0.45389387,-0.3366857,-0.37816048,-0.17028962,-0.45894513,0.5190111,0.44712418,0.5597865,-0.618101,0.39861855,0.4729482,-0.44978043,-0.029216306,-0.6141329,-0.26382032,-0.10377664,0.13516298,0.021095883,-0.072226234,-0.20040263,0.13106783,0.43521336,0.030198606,0.05583233,0.17876276,0.28120798,0.01920441,0.59753186,0.07905614,0.4412875,-0.15955943,-0.14833072,0.32085148,-0.53283376,0.335878,-0.07167009,0.07070962,0.37210962,-0.5759768,-0.99956393,-0.7051881,-0.40379572,0.94123465,-0.17574795,-0.2864423,0.33927646,-0.23790066,-0.31140327,-0.055989463,0.40110397,-0.013320721,0.1782855,-0.7589355,-0.09802926,-0.19597515,0.27049717,0.14303638,0.01778346,-0.56723964,0.8212217,-0.1640425,0.45368722,0.41497913,0.23419636,-0.0027904143,-0.51416385,-0.09967287,1.0533705,0.2188217,0.22699095,-0.37781164,-0.2812211,-0.3767429,0.14480576,0.10845768,0.51062226,0.81376463,-0.17367426,0.12925589,0.19764392,0.08918199,-0.054258343,-0.19470742,-0.3510027,0.032513984,0.11195789,0.5526152,0.59572613,-0.030011225,0.2820986,-0.04312263,0.51112944,-0.2219611,-0.45486706,0.16070281,0.99605787,-0.0062745763,-0.19307882,0.7583333,0.6715481,-0.22625835,0.4995503,-0.8061495,-0.42742282,0.30123684,-0.16326247,-0.35491878,0.26751485,-0.44957024,0.04288291,-0.9202696,0.4376908,-0.36417294,-0.40126246,-0.53155303,-0.22107968,-3.844785,0.27771482,-0.1754683,-0.13931674,0.16779628,-0.089484945,0.29745856,-0.7102958,-0.5452214,0.21029605,0.028682746,0.6794334,-0.15008184,0.14423457,-0.2799898,-0.24069078,-0.22851108,0.315957,0.24096495,0.10938712,-0.082982905,-0.43580973,-0.07564795,-0.17647314,-0.26905584,0.11981893,-0.575417,-0.487827,-0.14149703,-0.5602983,-0.22801901,0.66750515,-0.40809822,0.046369214,-0.15178663,-0.061338764,-0.22793421,0.28325784,0.1802542,0.23428747,-0.06859146,-0.10983343,-0.1165631,-0.310719,0.337742,0.12860386,0.2552765,0.26208243,-0.21572106,-0.01612668,0.45594758,0.34466285,-0.21197289,0.91687703,0.39378908,-0.124913014,0.33323193,-0.2668222,-0.3682105,-0.6927706,-0.40088975,-0.094111316,-0.37908474,-0.41308057,-0.07140924,-0.41097376,-0.66755587,0.67407894,-0.1308317,-0.0322056,-0.006667731,0.29454625,0.33501455,-0.28682804,-0.23129486,0.011533595,-0.011088842,-0.5633639,-0.312441,-0.5296942,-0.48358065,0.0037987279,1.0894886,-0.303757,0.075781114,0.12770037,0.031124193,0.039206084,0.24957982,0.06318169,-0.039237317,0.56476843,0.09410035,-0.715736,0.62071323,-0.108824365,-0.2747334,-0.48447943,0.13383839,0.60131717,-0.8622926,0.5895843,0.49427244,0.27139553,0.12867634,-0.7050521,-0.45364317,-0.011958404,-0.29661322,0.36427644,0.21943782,-0.7489175,0.19858958,0.2764212,-0.4415873,-0.64948106,0.68305933,-0.11067736,-0.53970736,0.028668817,0.34239525,0.038584672,0.061604157,-0.079555914,0.28778556,-0.44443294,0.26589835,0.3631792,-0.023455627,0.13488269,-0.1822553,-0.0007064159,-0.81375927,0.11190288,-0.4226282,-0.370734,0.23401318,-0.071210116,-0.26367325,0.49872193,0.2732055,0.46066207,-0.4309615,0.18321282,-0.06534861,-0.34221455,0.56599915,0.3834324,0.52718925,-0.4227679,0.56143045,-0.10402731,-0.16849764,-0.17972943,0.08749354,0.5552938,-0.18350035,0.39109468,-0.09508606,-0.105278604,0.27554458,0.83060455,0.21552724,0.49695772,0.059921544,0.07612094,0.21578714,0.20729494,-0.029249169,0.21689019,-0.5082894,0.06460797,-0.2106567,0.12618546,0.52188605,0.10164742,0.2560886,-0.113620885,-0.23655325,0.059054367,0.24204962,0.07895262,-0.8524183,0.36862418,-0.0060477247,0.78194565,0.63032055,0.16354895,0.14870892,0.43010923,-0.26256278,0.062306542,0.22837344,-0.07024078,-0.4345177,0.56918365,-0.49434286,0.31280664,-0.04573149,0.02641143,-0.032375112,-0.26090434,0.5337184,0.9590734,-0.096884295,0.12421623,0.03840304,-0.16969354,0.078558,-0.41128415,-0.16245034,-0.6216079,-0.19283822,0.8186499,0.48655036,0.38603723,-0.158137,-0.04421713,0.066327795,-0.11177023,0.21559548,0.04956416,0.032541838,0.025564266,-0.45573884,-0.1981404,0.6141392,-0.17606218,0.08182276,-0.025954647,-0.09112415,0.39502952,-0.068926066,0.0904108,-0.05837051,-0.7283479,0.012872531,-0.6694197,-0.24988033,0.4445801,-0.09272074,0.29273468,0.25755662,0.09235501,-0.09943589,0.38824236,0.18286675,0.6889836,0.036622226,-0.14850031,-0.39594093,0.2118899,0.17877151,-0.22979616,0.050302424,-0.33568767,0.17809065,-0.77068275,0.40460572,-0.007516494,-0.21301533,0.09587528,-0.05123589,-0.089604184,0.44644004,-0.09027342,-0.23747066,0.19213359,-0.012668527,-0.18155766,-0.07188154,-0.26334718,0.14952916,0.03804669,-0.07588976,-0.03343072,-0.017791761,0.07489315,0.4753545,0.0032498264,0.43700224,0.25426152,0.06015087,-0.29248965,0.027276516,-0.016435247,0.5375386,-0.2739039,-0.135888,-0.28161663,-0.52060646,-0.3270408,0.22254014,-0.19953777,0.2643573,0.18548241,-0.19005172,0.924507,0.11585564,1.0754737,-0.02701229,-0.39147502,-0.027840398,0.62304205,-0.13858369,-0.09806486,-0.45623037,1.2459514,0.6046407,-0.19759195,-0.17897676,-0.107799694,-0.06338324,0.018174639,-0.19527023,-0.14503354,-0.061242554,-0.67207235,-0.19663347,0.21178637,0.42668027,0.14291048,-0.089971654,0.112942256,0.2941231,0.20056358,0.06988525,-0.5881652,-0.35193995,0.3006346,0.2607883,-0.04737935,0.11787013,-0.30713212,0.4415426,-0.44327876,-0.045340564,-0.44099534,0.012042289,-0.14231864,-0.44472048,0.18321015,-0.005098196,0.2848588,-0.33992884,-0.22245906,-0.09734027,0.3663264,0.19962817,0.27077788,0.45542178,-0.25099233,0.03715033,-0.07351717,0.4782055,1.08446,-0.32829124,-0.04260458,0.5435582,-0.4742123,-0.5091987,0.16162784,-0.43907467,0.06649489,-0.09352961,-0.3969444,-0.5279375,0.24132696,0.18312,-0.12631382,0.20237952,-0.53871244,-0.15017742,0.24380182,-0.4680169,-0.40665838,-0.28908905,0.40778872,0.7829599,-0.180713,-0.2297568,0.21836154,0.11421425,-0.32081026,-0.5891047,-0.04579362,-0.37355644,0.3647312,0.07726312,-0.27790144,-0.099734075,0.011102142,-0.40013173,0.1304153,0.40478295,-0.27945635,0.08665276,-0.5398356,0.060035285,1.0530361,-0.09660895,-0.15741253,-0.5012215,-0.42438653,-0.8998559,-0.42296174,0.7267209,0.27853444,0.09208545,-0.34789813,-0.01480119,-0.048835475,-0.10997259,-0.11855551,-0.17226052,0.41756922,0.10972692,0.4921432,-0.23144911,-0.88146794,0.06767514,0.1349432,-0.395242,-0.50421757,0.422277,-0.15783504,0.9366653,0.13957359,0.0126208365,0.4253945,-0.43652332,0.027071297,-0.2022011,-0.055967387,-0.77949274,-0.07411565,86 -600,0.14947058,0.03967376,-0.7183444,-0.2885564,-0.20514661,0.05877125,-0.17457043,0.4154691,0.37862805,-0.20434983,0.027919682,-0.048279405,-0.09258231,0.47253177,0.04934368,-0.82448554,0.058400307,0.18156312,-0.58812225,0.37246066,-0.6084773,0.36460716,-0.10154548,0.38156524,0.057114813,0.32920688,0.11321317,-0.12575144,0.16478649,0.14994396,-0.09178621,0.2512227,-0.52077657,0.22526556,0.051331885,-0.33342716,-0.034705296,-0.26532567,-0.1455982,-0.72836155,0.1532961,-0.5480738,0.5522984,0.0074146846,-0.4252354,0.013421059,0.17581652,0.36129138,-0.30725068,0.020411532,0.35603568,-0.170145,0.0026981372,-0.117565155,-0.27616715,-0.59845716,-0.49639493,0.0057311286,-0.6321442,-0.091025904,-0.2810896,0.22068092,-0.34896743,-0.10417791,-0.31351253,0.3775123,-0.40386808,0.065947756,0.21855241,-0.27222872,0.15848336,-0.48313156,-0.11999173,-0.13984862,0.30193332,-0.14745793,-0.2931641,0.13367237,0.46640983,0.49636474,0.17430407,-0.28394097,-0.3348955,-0.11221959,0.09299628,0.5120741,-0.14252459,-0.26243642,-0.24927396,-0.14895873,0.06724175,0.1588603,0.019035252,-0.4876254,0.03768607,0.24059732,-0.25383812,0.26951003,0.40460998,-0.474397,-0.394033,0.4550566,0.4302052,0.038991,-0.29712453,0.106494755,-0.09873179,-0.493947,-0.26917,0.072275996,0.006234671,0.35373858,-0.1561153,0.08600222,0.8596147,-0.077024326,-0.1768887,-0.03906267,-0.09611322,-0.007786393,-0.4030295,-0.0009233126,0.14968874,-0.5051026,0.08296065,-0.18474014,0.6032775,0.020000933,-0.93476486,0.28386968,-0.5704895,0.061818004,-0.12480994,0.6094912,0.8997419,0.2133673,0.06563804,0.8569445,-0.5152245,0.048246995,-0.01569681,-0.5101771,0.33800873,-0.12144824,0.15659316,-0.49147204,0.15642546,0.08824374,0.012449952,0.15691844,0.34901267,-0.5408565,-0.11505377,0.109284915,0.53439915,-0.36817747,-0.19388959,0.65371037,1.0482953,0.9869791,0.08097381,1.4966813,0.29730722,-0.2021153,0.2032996,-0.37846038,-0.45685026,0.16884646,0.240999,-0.20999338,0.3536941,0.113895774,0.24237153,0.5233434,-0.07631898,0.13809845,0.0051160227,0.2559202,-0.0014513388,-0.1764827,-0.31800553,-0.2606772,0.1869509,0.107569024,-0.0380128,0.33918542,-0.24053165,0.25076956,0.08563502,1.3022624,0.0667504,0.09783835,-0.05460055,0.3306235,0.25876984,-0.29762787,0.004401042,0.38646266,0.16400415,-0.08567904,-0.5328035,0.04360483,-0.34926242,-0.35357568,-0.2754869,-0.42831773,-0.048385937,-0.0750575,-0.43757108,-0.082006976,0.053047903,-0.35104975,0.40714106,-2.641462,-0.31127453,-0.19706462,0.23044528,-0.13283132,-0.2797935,-0.30957383,-0.39106777,0.19183883,0.28371158,0.38853723,-0.5952299,0.53922284,0.3097769,-0.45838326,-0.2256966,-0.64136976,0.06635884,-0.10554568,0.27762488,-0.099251166,-0.032451317,-0.21014613,0.14705661,0.5693373,-0.09333909,-0.05111234,0.32517523,0.41876304,0.055961814,0.58515584,0.1273224,0.75371796,-0.15274987,-0.13179994,0.3957734,-0.44128132,0.39749828,0.13457367,0.082917534,0.4111598,-0.34995696,-0.9963472,-0.66586083,-0.3448267,1.1405165,-0.4221379,-0.16158468,0.34970805,-0.13569781,-0.35951382,0.03915961,0.43116963,0.0106201535,0.022162098,-0.6522591,0.14883043,-0.07787972,0.1782322,-0.094659075,0.09974789,-0.3795007,0.6752526,-0.02475072,0.54434633,0.31787926,0.13928989,-0.2667468,-0.31312835,0.036158767,1.0575017,0.24102007,0.09726779,-0.07038743,-0.2369291,-0.35606763,-0.11743696,0.21262868,0.52966416,0.5155932,-0.11296324,0.1907178,0.32933614,-0.1256143,0.01394301,-0.057472367,-0.36924157,0.0035553586,0.3132418,0.4901764,0.60779464,-0.29490876,0.43285438,-0.071379825,0.22096191,-0.18511496,-0.6417478,0.51503426,0.7964334,-0.011728715,-0.19840458,0.60050327,0.38960904,-0.34619093,0.4614278,-0.47199017,-0.3074505,0.59620833,-0.16085431,-0.28315666,-0.006465483,-0.33926323,-0.02033632,-0.80512935,0.17297147,-0.19574007,-0.61948043,-0.3619982,-0.1895892,-3.9997776,0.18083169,-0.00080126524,-0.012295828,0.0071006003,0.01563292,0.34823835,-0.4918448,-0.5433345,0.060760282,0.15558802,0.553016,-0.08631636,0.16323373,-0.40122873,-0.2761061,-0.27444932,0.25464615,-0.042999335,0.30018374,0.07812142,-0.503357,0.05304949,-0.27031916,-0.5303711,-0.0077396976,-0.555653,-0.34289345,-0.062238906,-0.6026658,-0.26749915,0.78866315,-0.61859804,0.009469749,-0.28788042,0.013461883,-0.0525984,0.4128827,0.15392981,0.1611153,0.22597662,0.0457446,-0.18394351,-0.42607492,0.14224614,0.052498743,0.4406695,0.37911123,-0.015290407,0.19981432,0.6356491,0.69047445,0.015189221,0.7909952,0.2822619,-0.018502893,0.3651007,-0.2695124,-0.18420564,-0.5690865,-0.4268223,-0.391461,-0.5142916,-0.49192873,-0.023154331,-0.3858713,-0.80402315,0.55604327,0.14013621,0.0024729143,-0.026179489,0.28322342,0.2912566,-0.13636237,0.053814825,-0.22416762,-0.23438127,-0.48659235,-0.4990183,-0.6153902,-0.68809676,0.36767644,1.1478953,-0.34944457,-0.010770743,-0.111427076,-0.30737767,0.029027332,0.32293907,0.21667908,0.2907152,0.5151741,-0.18119043,-0.69140965,0.25884056,-0.21371864,-0.05180027,-0.49743792,0.077428825,0.64587224,-0.73432034,0.60381275,0.2106769,0.25856364,0.27141297,-0.54519963,-0.34536695,0.12073959,-0.36854395,0.6267522,0.18967399,-0.7215558,0.4822183,0.16561761,-0.17709994,-0.66699994,0.4012121,-0.13084072,0.038957283,-0.13726398,0.39079666,0.17910448,-0.10639079,-0.1704168,0.15459949,-0.5030013,0.15202695,0.3819003,-0.05890934,0.5152042,-0.028742753,-0.20814504,-0.72110933,-0.13467804,-0.4549298,-0.29224893,-0.090734944,0.12863947,0.1672252,0.1610604,-0.019642876,0.33098236,-0.42010453,0.1325879,-0.02292147,-0.24308842,0.29261523,0.48553163,0.22840779,-0.49902695,0.5029907,0.10055192,-0.007753936,-0.10917531,-0.014621485,0.5525664,0.16154489,0.43290997,-0.08031765,-0.13994315,0.2177158,0.5848944,0.24150088,0.2997418,0.049227457,-0.16578063,0.13541676,0.11899476,0.10726659,0.0856454,-0.36107603,-0.001439819,-0.036036994,0.2840435,0.51715434,0.15083945,0.28387573,-0.026641753,-0.31073385,0.31457108,0.12938847,-0.13001458,-1.0323439,0.39777943,0.28726187,0.68756145,0.62413543,0.055396616,-0.082572095,0.4938305,-0.35549358,0.09366362,0.50080144,-0.11590819,-0.42722702,0.59418094,-0.82725483,0.5650353,-0.1719782,-0.022845112,0.19735083,0.11801096,0.41872838,1.0285494,-0.21886481,0.13473043,0.102562994,-0.23132655,0.11767769,-0.3220927,0.10920453,-0.54317135,-0.3504704,0.67855585,0.42273766,0.15441717,-0.42053568,-0.11234571,0.13713008,-0.16673774,-0.06409348,-0.19820449,0.009372766,0.037802234,-0.52192366,-0.24899484,0.61070293,-0.0066538593,0.103606075,0.16667596,-0.33765686,0.36338776,-0.15637144,0.045049813,-0.07810649,-0.47755188,-0.045566,-0.26728597,-0.4541942,0.5198012,-0.40692222,0.29307368,0.15617067,0.047924902,-0.20141563,0.57856405,0.14022812,0.7331193,-0.0323228,0.02381086,-0.19948171,0.24057175,0.28836724,-0.19510815,-0.16692716,-0.49794945,0.13711718,-0.601111,0.32541576,-0.14349297,-0.28127915,-0.18024951,0.0017448881,0.05658996,0.41190004,-0.25106177,-0.11392646,-0.02316893,-0.03218966,-0.16188115,-0.0071879807,-0.34922937,0.24471079,-0.008871464,-0.048924603,-0.019945534,-0.20103748,-0.15838534,0.23824963,0.08982364,0.16304237,0.22184035,-0.09628987,-0.20271532,0.14447348,-0.080790885,0.3137356,0.18423176,-0.23272492,-0.16409895,-0.13582246,-0.35040534,0.2821158,-0.1122979,0.30624455,0.03442253,-0.39905882,0.665577,0.1788564,1.4700532,0.06860031,-0.50117224,0.13631518,0.49043104,0.062881894,0.15196322,-0.3400688,0.835788,0.58677137,-0.1933407,-0.21992907,-0.39305085,-0.342581,0.26402298,-0.2759932,-0.30580106,0.040470675,-0.74772525,-0.27185118,0.13930005,0.18512693,0.15629229,-0.09021947,-0.0042179683,0.13288914,0.26684842,0.2431857,-0.55257046,-0.1608329,0.24745393,0.44881293,0.03994064,0.17590275,-0.34190667,0.5314309,-0.8174468,0.2830284,-0.37939277,0.17789459,-0.37086803,-0.3434774,0.21871923,0.11176631,0.23610702,-0.17452845,-0.40387037,-0.24830121,0.73999023,0.18216188,0.2518298,0.83654475,-0.29187,-0.1418773,0.10017527,0.2905912,1.1987541,-0.14427128,-0.2775876,0.4129426,-0.21585666,-0.6530322,0.18713656,-0.53303105,0.11365353,-0.11932389,-0.51308626,-0.25086907,0.3185038,-0.036537383,-0.051078677,0.028180668,-0.5113236,-0.04436082,0.29660174,-0.25642982,-0.2998042,-0.22590297,0.30333984,0.77568597,-0.4722758,-0.4382773,0.1680138,0.3121791,-0.24877109,-0.58832544,0.03771228,-0.34967312,0.5198357,0.21132715,-0.30779758,-0.0053435587,0.2606087,-0.39332563,0.18528144,0.5254228,-0.31171435,0.19685918,-0.2976853,-0.16601966,1.1283766,0.07926785,0.32593095,-0.5006073,-0.4726845,-0.7935101,-0.28083885,0.20137192,0.045883894,-0.14085947,-0.4556924,-0.1391978,-0.13265772,-0.10223869,0.16140601,-0.45048583,0.44712704,0.044542972,0.51889443,-0.10968577,-1.1650608,-0.17304696,0.39121202,-0.0672591,-0.57721615,0.5290104,-0.26746517,0.8449925,0.09234202,0.096065715,0.24848002,-0.47286594,0.34389216,-0.47187248,-0.0440768,-0.63841873,-0.0017576676,90 -601,0.593073,-0.2695653,-0.5241764,-0.25934818,-0.4101768,0.23778161,-0.08965404,0.5291154,0.38339078,-0.23483127,-0.0522639,-0.03809532,-0.08904313,0.5538491,-0.16278069,-0.7006146,-0.1373658,0.20010744,-0.5676233,0.35988906,-0.46866876,0.27431577,0.012823215,0.48378214,0.14982356,0.23535344,0.22428623,0.19119498,-0.021622254,0.011263852,-0.17173107,0.26102078,-0.48165572,0.266835,-0.03457504,-0.36579162,-0.20761254,-0.4059614,-0.13079695,-0.69716865,0.19403876,-0.67998576,0.43146434,-0.16544813,-0.48901683,0.13106655,0.10087526,0.24095082,-0.35341412,0.11526395,0.03747864,-0.12227484,-0.050554592,-0.052876078,-0.3979247,-0.4811545,-0.59376174,0.036164615,-0.47597584,0.0214878,-0.24445692,0.27028042,-0.22054416,0.10600912,-0.14389865,0.33741075,-0.40583882,0.028179046,0.32938847,-0.30621415,0.068953566,-0.40504345,-0.117126666,-0.13298513,0.14795893,0.16582854,-0.33023542,0.14332877,0.40267226,0.5244487,0.14814717,-0.23385416,-0.3191781,0.02338609,0.032969404,0.43651676,-0.09214856,-0.06868781,-0.39553207,-0.20127942,0.40025282,0.19964978,0.091786295,-0.4457752,-0.014163183,-0.1325524,-0.24831852,0.10711681,0.3649395,-0.47295988,-0.1693256,0.41637406,0.40838793,0.043391116,-0.14918078,0.22123753,0.0140863545,-0.6267048,-0.21767172,0.13953222,-0.03194274,0.42316717,-0.20388132,0.17288898,0.5203879,-0.06439306,0.019245319,-0.15965192,-0.00094912143,-0.0882724,-0.42226383,-0.16395895,0.26443428,-0.3848054,-0.09852537,-0.18133661,0.56781584,0.10055388,-0.69008315,0.33983758,-0.4281685,0.17245173,-0.1122889,0.46359542,0.91244566,0.48198432,0.07675339,0.8947248,-0.46557984,0.08985028,-0.25451186,-0.21937051,0.21560471,-0.20535623,0.0038121296,-0.5203022,0.2956151,0.0028970242,-0.13514496,0.2686074,0.35594648,-0.5223666,-0.23898484,0.074244455,0.56138355,-0.4137077,-0.21242927,0.8360198,0.8875031,1.0651584,0.07751954,1.4109445,0.41137645,-0.031582512,0.032700315,-0.09194369,-0.47862613,0.22183107,0.29387963,0.030891657,0.526976,0.042370442,0.02539318,0.6482894,-0.06104984,-0.056856595,-0.046695895,0.18077832,-0.011386137,-0.06663524,-0.40194318,-0.40920746,0.19511054,0.12743062,-0.055383243,0.24017951,-0.22603747,0.5515015,0.05582911,1.4645729,0.05629484,-0.03283385,0.08001251,0.17970729,0.33950794,-0.3586416,-0.125411,0.25145373,0.3729072,-0.07465618,-0.5562949,0.14160545,-0.17118236,-0.40051684,-0.0931468,-0.3463566,-0.14907001,-0.07814927,-0.561129,-0.21133529,0.021743078,-0.24220484,0.40561575,-2.364536,-0.27292943,-0.19456798,0.22934459,-0.18692422,-0.43090898,-0.34909552,-0.34744868,0.11324703,0.43420455,0.26308104,-0.5182356,0.33185908,0.27287915,-0.4501829,-0.0702142,-0.6426502,0.051595267,-0.05121893,0.21922612,-0.151405,-0.16713089,-0.15836889,0.3098556,0.71034116,0.06524349,0.007701383,0.44699442,0.44751498,-0.022547612,0.5837355,0.04585397,0.6185219,-0.35331365,-0.26658788,0.45590037,-0.50015867,0.3998353,0.21868198,0.21424752,0.4314597,-0.4168272,-1.1030991,-0.6536379,-0.2615356,1.4697222,-0.4602568,-0.40259588,0.28308517,-0.19435705,-0.26009843,0.07564481,0.39325368,0.04965685,0.009785705,-0.8020025,-0.10334039,0.103111714,0.21214125,-0.0778496,-0.12735674,-0.21471442,0.6986332,-0.22451147,0.51760757,0.424116,0.10643571,-0.056457818,-0.5443998,0.039802905,0.82590866,0.37811607,0.13753264,-0.11856507,-0.15254411,-0.2563426,-0.048244953,0.2516607,0.5501574,0.627269,0.026094029,0.22112186,0.35862207,0.041973565,-0.014417162,-0.066250086,-0.2459707,-0.15326221,0.21440373,0.6024629,0.6947285,-0.06933044,0.28501415,-0.1555662,0.23390564,-0.1802457,-0.69390744,0.49811953,0.9104699,-0.23913305,-0.3067097,0.68460625,0.3577634,-0.27516705,0.42810455,-0.5628256,-0.27038598,0.4106655,-0.10225996,-0.26897126,0.06683069,-0.2907572,-0.021860095,-0.9164596,0.18917105,-0.037623663,-0.4535909,-0.43484512,-0.2368887,-3.6563246,0.28575557,-0.03615249,-0.2500644,-0.016289968,-0.17907864,0.46781966,-0.5980249,-0.61893994,-0.006095501,0.014203728,0.42742538,-0.15873724,-0.027482899,-0.36556017,-0.28382307,-0.23878011,0.09000837,0.07890119,0.3070812,0.08840489,-0.50595635,-0.09416516,-0.22023326,-0.56635445,0.0082938885,-0.68409115,-0.4662228,-0.19509673,-0.3899231,-0.09555537,0.6319134,-0.49198386,-0.02728812,-0.19653927,0.086210184,-0.23003721,0.26303184,-0.08286308,0.10213053,0.1407561,0.0028101872,-0.069382586,-0.21737121,0.23148704,0.18110187,0.27443603,0.3013256,-0.27428028,0.16930628,0.7080841,0.66924673,-0.15912089,0.7645311,0.32723516,-0.023844473,0.26633307,-0.0811009,-0.13760394,-0.5121058,-0.3198268,-0.25508714,-0.5849605,-0.33786318,-0.015525782,-0.2608325,-0.9621916,0.46505064,0.038258977,0.14068817,-0.15635513,0.23089622,0.43109336,-0.21477762,0.16943318,-0.17176367,-0.34932172,-0.46371108,-0.5528502,-0.6136552,-0.600977,0.37931168,1.3383683,-0.18834393,0.094475545,0.005649608,-0.3996633,0.048681714,0.24577412,0.12343414,0.14979002,0.2706918,-0.19036414,-0.60622936,0.22602159,-0.1933326,-0.097551756,-0.57825905,0.28819272,0.6675044,-0.54856133,0.64213663,0.24134383,0.24686936,0.20950468,-0.5823984,-0.3017483,0.0018051083,-0.18759903,0.7724097,0.36795527,-0.7497304,0.5340527,0.1857833,-0.27229017,-0.616498,0.40045363,-0.089319296,-0.03001821,-0.044012766,0.36519983,0.20577475,-0.1414896,-0.14210898,0.17822704,-0.47249568,0.22274722,0.42348832,0.07661277,0.29999927,-0.061475523,-0.03768201,-0.7818422,-0.10246555,-0.5135821,-0.31564295,0.0969644,-0.03418978,0.0540784,-0.013327878,-0.06985451,0.38300925,-0.30015442,0.085855536,-0.04108751,-0.30153733,0.5720645,0.53907204,0.38246933,-0.3278747,0.4178921,0.11800218,0.11721008,-0.10082451,0.0024169593,0.4248118,0.3037114,0.34599993,-0.25253013,-0.109595425,0.21450886,0.4643243,0.14800093,0.20726433,0.0070600417,-0.28343165,0.26080656,0.2640886,0.16598329,-0.22287995,-0.24007331,-0.059712168,-0.13517159,0.2917953,0.5435498,0.13824813,0.4570581,-0.05959574,-0.1650295,0.29435068,-0.0563002,-0.042655963,-1.2689792,0.26249927,0.09402088,0.6218245,0.5139028,0.026997007,-0.020257326,0.46997792,-0.25423425,0.050398268,0.50429475,0.02050259,-0.45928413,0.59626895,-0.7504606,0.44658047,-0.20826513,0.030999573,0.22524124,0.4269528,0.6333835,0.8374215,0.08025089,0.06329664,-0.004917606,-0.21525823,-0.04621438,-0.36237332,0.020423997,-0.61479545,-0.38373178,0.6449509,0.4322275,0.4824541,-0.4809379,-0.120147064,0.047667596,-0.09929628,0.13060562,-0.12928256,-0.0046256687,-0.1566069,-0.66067797,-0.18647641,0.47772238,0.027687443,0.086121716,0.075792745,-0.49030697,0.24577919,-0.22661592,-0.10627646,-0.039544668,-0.72044724,-0.20926104,-0.22417076,-0.5109977,0.25380114,-0.39837354,0.08381391,0.19675353,-0.00127159,-0.3448052,0.11088507,0.024174277,1.0703495,-0.08690218,-0.04147238,-0.25948098,0.26974726,0.3009707,-0.2408384,-0.019827275,-0.36765197,-0.004263424,-0.50616753,0.34825084,-0.04776693,-0.22820187,0.33693966,-0.016197696,0.13155772,0.39533728,-0.2965573,-0.074277155,0.050122913,-0.06175437,-0.3242516,-0.20930305,-0.3741676,0.3357849,-0.13349469,-0.009616852,0.081469044,-0.124128394,0.037060622,0.3733793,0.095993154,0.11156316,0.34130585,-0.10470764,-0.4099209,0.1851427,0.00824376,0.42831233,0.15696438,-0.2544015,-0.5133197,-0.40293965,-0.25745046,0.17878371,-0.22462183,0.20718978,-0.10903588,-0.43212736,0.8859971,0.15491277,1.243986,-0.14378029,-0.42891264,0.15869583,0.49570325,0.14825621,0.06691691,-0.21078466,0.7401351,0.592987,-0.25105196,-0.18443131,-0.4019415,-0.4114885,0.21956825,-0.30692765,-0.16576363,-0.14855647,-0.7034075,-0.26859984,0.16849259,0.040491335,0.2092484,-0.07511728,0.15922168,0.1975949,0.052277107,0.43127787,-0.3356067,-0.099523656,0.15949756,0.50744057,0.00069750275,0.17754427,-0.373456,0.40866348,-0.8502201,0.20693453,-0.40113178,0.11165127,-0.1560104,-0.23894738,0.15843152,-0.010576863,0.2085447,-0.26494887,-0.30971998,-0.2858322,0.815258,0.12778005,0.1689635,0.650499,-0.36994478,-0.02460466,0.21655042,0.37158436,1.16746,-0.232234,0.037357923,0.41854948,-0.24072586,-0.6181306,0.18903828,-0.34560373,0.20649734,0.0114868,-0.31867966,-0.39776373,0.3717378,0.18394913,0.10768439,0.16801156,-0.4790492,-0.03640129,0.34136707,-0.2677255,-0.23422615,-0.35568288,0.23701897,0.5200685,-0.4148739,-0.527082,0.044677235,0.322303,-0.13324247,-0.6500088,0.0023238086,-0.4119689,0.3263485,0.17175205,-0.39012784,-0.09687675,0.101896636,-0.3629475,0.022041788,0.20596997,-0.20628284,0.15419921,-0.28746462,-0.09769047,1.0083414,0.15643848,0.165684,-0.6801316,-0.6117205,-1.0411475,-0.34978515,0.3187752,0.2430253,-0.15129766,-0.54577124,0.028402401,-0.25459936,-0.1897675,-0.027268197,-0.39736694,0.48555344,0.11506212,0.4316389,-0.06457151,-0.87189376,0.065699644,0.14894351,-0.13135494,-0.41454074,0.5199032,-0.18375537,0.8567197,0.1191349,-0.011108231,0.07459,-0.63192934,0.36800227,-0.35107872,-0.1992115,-0.5243596,-0.0032647343,95 -602,0.72027135,-0.5156482,-0.5555413,-0.10228822,-0.34764153,0.027452115,-0.077757366,0.5677693,0.1526527,-0.52034396,-0.043348476,-0.16345249,0.09534691,0.29221106,-0.09031188,-0.6844634,-0.035878576,0.29314637,-0.6594188,0.79546297,-0.34103665,0.39968476,0.24412444,0.20369506,0.18246458,0.17594269,0.16688432,-0.07389743,-0.06598212,-0.07396949,-0.24472152,0.16016711,-0.664023,0.2555517,-0.031435788,-0.4201241,0.09980367,-0.37592137,-0.2753846,-0.8901554,0.1345953,-0.87895006,0.45099849,0.22784501,-0.48444292,0.021208845,-0.07767318,0.30180964,-0.2405254,0.2585136,0.19848792,-0.084095426,0.03292058,-0.4926227,-0.08213161,-0.77164847,-0.5120599,-0.057874795,-0.51204544,-0.28563496,-0.17753641,0.091563694,-0.28837922,-0.11628935,-0.2592881,0.38368225,-0.41015932,-0.14976849,0.2902466,-0.2674312,0.27358764,-0.6265241,-0.11306659,-0.23276605,-0.09411616,-0.022291789,-0.27288538,0.36396858,0.15138854,0.64992404,0.107282385,-0.36947265,-0.16096362,0.025261866,0.060162924,0.43258557,-0.195963,-0.48734367,-0.2988886,0.050697003,0.24937187,0.07024937,0.25085035,-0.5028949,-0.011744736,-0.01673731,-0.2862354,0.3424751,0.5416127,-0.38724214,-0.26315612,0.21254751,0.6106187,-0.034401536,-0.072400905,0.041439854,0.008328984,-0.38888618,-0.2176061,0.3457716,-0.25401485,0.4996556,-0.20639078,0.11642702,0.6392142,-0.21944372,-0.058273647,0.14839146,0.18210067,-0.13678785,-0.30868912,-0.38442034,0.48726532,-0.6463268,-0.22292669,-0.4620313,1.0209141,0.20494689,-0.6134223,0.28489584,-0.5906901,0.15279917,-0.11591743,0.64164793,0.7370005,0.46237624,0.10975991,0.794974,-0.5189506,0.057655238,-0.15256375,-0.27013147,0.22349367,-0.4038056,0.046305604,-0.53373265,0.010347715,-0.18532775,-0.09768604,-0.08894027,0.75737804,-0.6813663,-0.22151782,0.1044084,0.681964,-0.40150067,0.02246858,0.67671233,1.005649,1.0146756,0.10850243,1.4301215,0.4486633,-0.26597655,0.29740673,-0.27444723,-0.80664474,0.22500212,0.5301739,0.00564522,0.45460337,0.02389708,0.013256825,0.38121092,-0.35445786,0.22325052,-0.360909,0.2932091,-0.20639347,-0.27895465,-0.6127764,-0.35723078,-0.11815907,0.13954449,-0.10492647,0.38663042,-0.27183163,0.34536663,0.071856834,1.5649737,-0.13501391,0.07895028,0.046878092,0.40023103,0.37719852,-0.16411819,0.07153724,0.4240401,0.38050053,0.17564607,-0.58128077,0.113455094,-0.36705878,-0.5057561,-0.28151083,-0.284831,0.14127839,-0.1025314,-0.51588887,-0.2905327,-0.04089541,-0.22862718,0.35814014,-1.9841676,-0.15869078,-0.16303554,0.3767126,-0.3425874,-0.34562972,-0.06539783,-0.51630485,0.283967,0.39291593,0.53010684,-0.7272066,0.28837162,0.4616598,-0.4377947,0.12699558,-0.68173474,0.00087094307,-0.253334,0.49240506,-0.0018513593,-0.27538496,-0.11748523,0.012743727,0.5911163,-0.09913191,0.09586123,0.424819,0.38943094,-0.16136405,0.4722045,0.16949655,0.38018054,-0.46074083,-0.30836862,0.49333194,-0.25392282,0.25397503,0.27227288,0.028910398,0.44342968,-0.62091887,-0.83563906,-0.5527939,-0.2305987,1.0480015,-0.31624207,-0.5371195,0.21762358,-0.19410166,-0.2692127,-0.16994146,0.3743953,-0.057761285,0.054966286,-0.767226,0.080998406,0.011749864,0.2543649,0.038355313,-0.046050474,-0.34588858,1.018065,0.017516986,0.5934672,0.1371464,0.14315842,-0.34745926,-0.518173,-0.037041888,1.3066934,0.4435938,0.20197336,-0.1933194,-0.23428766,-0.3992661,-0.028205963,0.17917068,0.5062891,1.0690348,-0.145361,-0.030951826,0.46444735,-0.13463107,0.022131413,-0.15133789,-0.37625188,-0.09563969,0.22151667,0.58335644,0.61276335,-0.060377844,0.40689704,-0.15922114,0.4657907,-0.12122222,-0.7385908,0.46951282,1.1759576,-0.12930416,-0.28662854,0.6737229,0.6148096,-0.49875456,0.6013082,-0.6680335,-0.5130074,0.35900962,-0.20879793,-0.39896187,0.40209836,-0.44071066,0.3870997,-0.97674465,0.5706758,-0.29880956,-0.3512629,-0.5414016,-0.25359124,-2.9133224,0.48186266,-0.19949096,-0.03263323,-0.050228912,-0.03205851,0.21197003,-0.63940233,-0.3730473,0.06258904,0.15038556,0.67738116,-0.02635485,0.06818487,-0.2863472,-0.4189148,-0.12428866,0.2345055,0.0007252051,0.16621813,-0.12412036,-0.47412056,-0.0840815,-0.16282529,-0.37405375,0.09388466,-0.8413278,-0.69522136,-0.30736732,-0.7922984,-0.32814166,0.7298645,-0.065069795,0.061408937,-0.14218283,-0.058194824,-0.034855705,0.32880422,0.052356925,0.17747651,0.03792184,-0.064625114,-0.18494055,-0.4913674,-0.0029100913,0.078453965,0.48326933,0.3238503,-0.36866358,0.21193537,0.7578946,0.6072288,-0.27679002,0.7882617,0.58773685,-0.17425348,0.41083512,-0.052671306,-0.28806388,-0.78657633,-0.29771557,-0.23154643,-0.5103989,-0.48580056,0.11988862,-0.33511826,-0.76840985,0.67294383,0.011631294,0.15162909,0.09708993,0.560138,0.4517366,-0.096444964,-0.14472303,-0.20223363,-0.35471377,-0.4502241,-0.25222602,-0.66379607,-0.41534027,0.34645218,1.1837071,-0.19566983,-0.0021807963,0.11505358,-0.016152106,0.107209876,0.068758756,0.055980977,0.22578049,0.40969527,-0.06315727,-0.5138601,0.5911576,0.0935767,-0.037712496,-0.23493539,0.20248765,0.6333724,-0.8497552,0.48404488,0.21550487,0.16123952,-0.032065667,-0.38943768,-0.103812605,0.18094055,-0.21692751,0.61616635,0.17092082,-0.724817,0.4218713,0.4216911,-0.32096562,-0.7643244,0.32347757,-0.19870806,-0.34764054,-0.324104,0.3773968,-0.040064447,0.12354919,-0.27586332,0.28701442,-0.62189853,0.14928345,0.41588593,-0.13028155,0.21065308,-0.20181176,-0.24880385,-0.7866395,0.4031568,-0.58889425,-0.40014124,0.3161855,0.011407744,-0.16257426,0.4058032,0.19708039,0.480077,-0.2199871,0.11853575,-0.017637419,-0.3373441,0.6585652,0.47557405,0.47764647,-0.48630458,0.49847597,0.07136725,-0.16317925,-0.45779002,0.095415026,0.46598747,0.2459147,0.38621685,-0.028375758,-0.11381699,0.48960415,0.9165218,0.17384961,0.56874394,0.20196079,-0.045777377,0.07228482,0.1613721,0.17507221,-0.015235195,-0.46094054,0.08356346,0.099561326,0.17319363,0.44590214,0.15986875,0.24872439,-0.19281743,-0.1829543,0.09237872,0.35216877,-0.044601362,-1.3908337,0.1841325,0.34071964,0.5822766,0.5154661,0.011667454,-0.10143794,0.5364147,-0.3232889,0.11229336,0.15462694,-0.2784516,-0.54788864,0.60737705,-0.6157304,0.30468518,-0.2094721,0.024223305,0.031278953,-0.06707193,0.5040072,0.9219285,-0.14391962,-0.008630935,-0.21544698,-0.2933383,0.24343918,-0.48334777,0.112966314,-0.53173214,-0.3978628,0.72046226,0.21794517,0.3542384,-0.1776858,-0.058116212,0.05637168,-0.25579044,0.40469885,-0.053954337,0.017440796,0.078445554,-0.6457856,-0.16848207,0.5427552,0.1290368,0.07330693,-0.029585348,-0.25763148,0.26757246,-0.20671386,0.029204251,-0.06720316,-0.82188284,0.055197183,-0.44971165,-0.38848525,0.54212075,-0.00933958,0.045166202,0.2821238,0.04940045,-0.43288487,0.23048621,0.21373719,0.7519877,-0.027439209,-0.31025183,-0.3412261,0.31238863,-0.02948186,-0.2901121,0.12773712,-0.23067744,0.24902162,-0.8888264,0.57085615,0.006579344,-0.502723,0.13730906,-0.15998395,-0.03464608,0.48695835,-0.21895386,-0.3140504,-0.17633039,0.0063581835,-0.11074511,-0.38327283,-0.08429694,0.33174375,0.08704858,-0.15190771,-0.09550008,-0.18420964,0.16326095,0.43274304,0.10036186,0.30486354,0.27824882,0.18570654,-0.42215484,0.24040574,0.30290776,0.38788503,-0.05444433,0.13678154,-0.22403899,-0.2886832,-0.45739776,-0.09743421,-0.24457113,0.38747075,0.23955576,-0.4130774,0.9137852,0.1220332,1.4594636,0.021369813,-0.39280093,-0.00084556756,0.662861,-0.015528409,-0.13717972,-0.33024603,1.069373,0.7323543,-0.16308092,-0.16291848,-0.5424329,-0.31219995,0.27791646,-0.2912304,-0.055959024,0.008786766,-0.80489856,-0.37180218,0.15799277,0.36275858,0.070515916,-0.032228094,0.17757264,0.27748802,-0.010745744,0.043472424,-0.53844196,0.031037632,0.1103154,0.14890414,-0.0031309037,0.16588773,-0.5838681,0.3088908,-0.8145981,0.33813015,-0.15299156,0.07082795,0.02691406,-0.3919358,0.16401598,0.078934185,0.29554516,-0.5568367,-0.4772655,-0.06159761,0.68689466,0.14817794,0.21484128,0.78658867,-0.37002024,0.16761266,0.11727472,0.42764813,1.2968905,-0.14036734,-0.18525317,0.20633017,-0.43286368,-1.0072829,0.40267828,-0.16770321,0.10147338,-0.03274935,-0.49921086,-0.6213197,0.27635235,0.3250249,-0.062027555,0.16735996,-0.6148546,-0.061467264,0.3649349,-0.41372225,-0.29984263,-0.27171853,0.32073742,0.60031354,-0.28593558,-0.4436982,0.22892404,0.22997127,-0.339963,-0.5394751,-0.2589417,-0.5448458,0.37011874,0.09720591,-0.34002215,0.15495092,0.12631035,-0.48743042,0.12408164,0.3856956,-0.3678473,0.1433251,-0.34676346,-0.07971363,0.988368,-0.048953313,-0.063889176,-0.5628736,-0.53570575,-1.0220385,-0.53792036,0.6114873,0.058367297,0.12483125,-0.67902946,-0.03382337,-0.14869884,-0.04457841,-0.028979944,-0.47366375,0.5209417,0.14309141,0.40464765,-0.12867375,-1.0023633,0.29364374,0.2664461,-0.113402575,-0.67063457,0.4957668,-0.23627582,0.824139,0.0928868,0.100741185,0.460943,-0.87204564,0.015373139,-0.28873044,-0.062018983,-0.6534332,-0.108205386,97 -603,0.47176406,-0.11320428,-0.43501857,-0.021328848,-0.29656345,0.13531831,-0.2781045,0.30811375,0.14491436,-0.655733,-0.09463616,-0.12974659,-0.1918664,0.12161262,-0.18042786,-0.44915888,-0.12211098,0.13700074,-0.4201206,0.68465143,-0.2739665,0.39750516,0.0075282,0.3659766,0.006718049,0.19881344,0.23968914,0.09591552,-0.18264161,-0.41722125,0.017853705,-0.02386708,-0.7580111,0.5794519,-0.2101109,-0.29780263,-0.023303648,-0.41919333,-0.20256199,-0.84887147,0.34889096,-0.67212033,0.3918181,0.026924428,-0.24294177,0.33656314,0.30549607,0.12025877,0.036426876,-0.15653618,0.24406797,-0.3338856,-0.21036005,-0.2541186,-0.17330602,-0.31397444,-0.6138052,0.0725828,-0.35494632,-0.27112043,-0.31600273,0.31784025,-0.32699,-0.11659611,-0.041933697,0.6209923,-0.2718137,0.021927783,-0.0033590633,-0.26117912,-0.08190442,-0.7729526,-0.21955976,-0.098426275,0.22505389,-0.07119609,-0.06797628,0.5306749,-0.007937514,0.3793693,0.1256487,-0.27344525,-0.42421132,-0.15786551,0.16439912,0.5419444,-0.24143465,-0.30092546,-0.10356296,-0.17170483,0.2254565,0.1171925,0.2091034,-0.20980373,-0.04967069,-0.26773414,-0.16600968,0.50113875,0.6753198,-0.25954884,-0.21418387,0.42905983,0.54128325,-0.0022058922,-0.21796261,-0.096579835,-0.1857821,-0.41611913,-0.17652856,0.13763441,-0.10342209,0.2256259,-0.12584206,0.2577574,0.52072173,-0.20248757,0.00086295605,0.39779,0.16833149,0.27724814,-0.29301965,-0.24059097,0.4525928,-0.5140736,0.09097575,-0.3923342,0.84292614,0.051635973,-0.88860154,0.37372258,-0.4515727,0.08445509,0.114335075,0.60787386,0.70822775,0.6623673,0.25688693,0.82538855,-0.35880592,0.08532357,-0.14952281,0.004779742,-0.16836213,-0.30914244,0.09354302,-0.41797,0.16423032,-0.10375039,0.034192327,0.012363127,0.40699944,-0.46936315,-0.25527132,0.36303484,0.79570585,-0.1457585,-0.09553991,0.87141025,1.0681552,1.1210551,0.015997281,0.9190137,-0.036187436,-0.16766538,-0.1253524,-0.13711576,-0.67635727,0.26602414,0.34242132,0.84105164,0.062333904,0.11842616,-0.06753114,0.39356902,-0.45804045,-0.23989503,-0.11802287,0.28753263,0.21302685,-0.08347604,-0.25350803,-0.18914095,0.16082104,0.015700312,-0.046266817,0.35260212,-0.3165365,0.4090199,0.11372411,1.1999965,-0.15036021,0.16656075,0.26082107,0.62721455,0.078633584,-0.293766,0.35254845,0.25375634,-0.005859393,0.005472536,-0.49563095,0.0756382,-0.2868562,-0.73066896,-0.10894379,-0.40191144,-0.46483523,0.07605039,-0.31981796,-0.46592772,-0.117522,-0.35586432,0.4296214,-2.805099,0.061451554,-0.00668365,0.35232273,-0.39673942,-0.38163865,-0.0036896765,-0.5619328,0.5600957,0.28925353,0.36068332,-0.596191,0.21921737,0.54612833,-0.7024765,-0.15274021,-0.6221066,-0.09184094,-0.11565792,0.4629563,0.03464137,-0.19587329,-0.008338754,-0.040563222,0.47342724,0.22166087,0.10897812,0.32307658,0.33504778,-0.14169393,0.32395247,0.010715503,0.46348733,-0.50847423,-0.19518813,0.4378114,-0.7658675,0.33164227,-0.3316197,0.086113065,0.43393752,-0.32550687,-0.6909364,-0.6515033,-0.18846461,1.2796465,0.017084846,-0.7014914,0.16405694,-0.18346559,-0.079804964,-0.23475868,0.36215913,0.040434305,-0.020308865,-0.5918201,-0.04194166,-0.21269648,0.3261645,-0.07628448,-0.069952235,-0.55265003,0.88026136,-0.046122395,0.46540636,0.23550902,0.25108516,-0.5849162,-0.2710036,0.0477352,0.890701,0.583791,0.2201117,-0.10343392,-0.19216344,-0.22096524,-0.45228216,0.13831484,0.64192325,0.4034322,-0.022539707,0.07524823,0.3392245,-0.08718782,0.2321141,-0.12339174,-0.2918413,-0.42799237,0.1539658,0.72564894,0.59907633,-0.057003733,0.2828272,0.030023469,0.036334056,-0.2531711,-0.38117987,0.4132697,0.67842555,-0.14933543,-0.30155343,0.5043775,0.48964113,-0.30383825,0.40545428,-0.5611304,-0.6218649,0.3594063,-0.11679117,-0.6570654,-0.12914841,-0.26764604,0.008751771,-0.5326927,0.4227967,-0.48950037,-0.7536091,-0.68917155,-0.17674415,-2.1203382,0.11617057,-0.24544698,-0.07213795,-0.14468262,-0.12989005,-0.11360265,-0.40119398,-0.4549416,0.12278704,0.07795342,0.6105987,-0.11204529,0.16572493,-0.30520368,-0.35093382,-0.3544514,0.34358028,-0.030120768,0.30989143,-0.123552546,-0.12188517,-0.029622188,-0.0962489,-0.2291765,-0.06366381,-0.3913717,-0.4258596,-0.11874623,-0.37710524,-0.21298552,0.661117,-0.40290073,0.08055487,-0.18811049,-0.107294194,-0.037948947,0.1288817,0.21681926,0.23447646,0.23661374,-0.33629873,0.026838282,-0.34650528,0.29880685,0.080327235,0.3709182,0.69388866,-0.37484583,0.14581947,0.34915978,0.75571793,-0.082267515,0.9757586,0.07119492,-0.085836664,0.48481464,-0.23589428,-0.3330546,-0.66721344,-0.042105496,0.33958963,-0.2896061,-0.3683593,0.14891961,-0.30093917,-0.7956204,0.46737954,0.20799719,0.26377922,-0.19796786,0.39124915,0.34818083,-0.23232475,-0.17043923,-0.11666815,-0.011303227,-0.4490013,-0.42093283,-0.64993066,-0.4949668,0.04834717,0.97963643,-0.1945974,-0.07885253,0.35215205,-0.033345584,0.070904575,0.17477211,0.010969139,-0.109584816,0.2567684,0.20728865,-0.6687386,0.5479454,0.046024673,0.12469421,-0.37590933,0.52863574,0.6016451,-0.38787106,0.4443735,0.3983717,0.013076287,-0.30873153,-0.6478259,-0.08269744,-0.06975012,-0.197446,0.25564477,0.30022126,-0.877578,0.37562725,0.286132,-0.2752995,-0.7964557,0.3295511,0.012795751,-0.1984919,-0.024860987,0.35768604,0.3071373,-0.13607535,-0.026862292,0.29890582,-0.46638963,0.3189952,-0.012309059,0.026991414,0.3975665,-0.2900439,-0.4921253,-0.5565825,0.13852467,-0.5729304,-0.33927947,0.26813573,0.056846544,-0.0337852,0.4973081,0.1369377,0.4755649,-0.07073292,0.052869912,-0.2530169,-0.28565046,0.34103945,0.4061702,0.6748361,-0.54583293,0.65542567,0.09165074,-0.12090263,-0.035415128,0.0775289,0.48049086,0.10555621,0.3713191,-0.061875053,-0.02819828,-0.040833592,0.7719362,0.34800813,0.40588218,-0.059520032,-0.2682264,0.49275857,0.0069116657,0.28470737,-0.14338188,-0.7630956,0.095767766,-0.25112617,0.030815197,0.35807836,-0.03389597,0.3931692,0.027444674,-0.12928592,-0.011109004,0.041660845,-0.29059884,-1.1311276,0.34594345,0.1339782,0.9933593,0.45891938,-0.052710734,0.08222227,0.9142705,-0.082355514,0.081652366,0.29965886,-0.104587,-0.4209921,0.53085816,-0.6575658,0.53593385,-0.081164345,-0.054569438,0.021966778,-0.01212032,0.4614058,0.56738794,-0.18105254,-0.050044414,-0.11722075,-0.360212,0.083975084,-0.465402,0.27527225,-0.3837768,-0.2151912,0.6664848,0.37628147,0.34836695,-0.07191879,0.12375109,0.055591922,-0.18035871,0.1939744,-0.111422464,0.033152618,-0.07330612,-0.28237727,-0.025305023,0.6236284,-0.18922502,0.18033849,0.2082226,-0.11549577,0.24893445,0.13093767,-0.056197736,0.01993798,-0.6333013,0.34068713,-0.05706406,-0.39263284,0.40438488,-0.037181355,0.1728827,0.3383178,0.12672278,-0.12010439,0.2650707,0.34989876,0.5028127,-0.0026897788,-0.14297502,-0.2953387,0.04234413,-0.08198813,-0.22475924,0.1379592,0.13096061,0.06968394,-0.57453877,0.40207955,-0.20318252,-0.21454324,0.21122496,-0.1030963,-0.047761288,0.6148389,0.17027225,-0.05149736,0.1685434,-0.11592613,-0.11459896,-0.07705799,-0.15428543,0.35605913,0.035700936,-0.17105225,-0.1815674,-0.3286894,-0.091515526,0.20192507,-0.080573365,0.06332044,0.19797446,-0.041753933,-0.54535174,0.2725482,0.15568916,0.481119,-0.065198086,0.22010383,0.05771599,-0.29120344,-0.46862447,0.5119433,-0.114895515,0.18232553,0.23769058,-0.25037897,0.7503758,-0.12751128,0.92816705,-0.085055,-0.33316037,0.031606622,0.47981966,-0.0014151427,0.06682016,-0.29309762,1.0245537,0.58293384,-0.012909337,-8.16171e-05,-0.42522827,0.0513831,0.2704538,-0.2366266,-0.11802209,0.06673678,-0.65726596,-0.15896282,0.16744958,0.25059432,0.08389629,-0.30497143,-0.22401898,0.4209297,0.22541413,0.23594867,-0.5660683,-0.24747951,0.30059037,0.22106932,-0.06271529,0.031742297,-0.434794,0.30216378,-0.8617693,0.30340984,-0.14381576,0.12897928,-0.43315458,-0.19553791,0.28262064,0.20518747,0.39690492,-0.19600326,-0.47511786,-0.17067124,0.16628379,0.16244775,0.27747637,0.43781662,-0.19219798,0.025851835,0.009756827,0.33527195,0.8757899,-0.042196933,-0.19110045,0.13378678,-0.45271906,-0.7756843,0.35924208,-0.3675744,-0.008064847,-0.021135986,-0.1457374,-0.40715435,0.12136671,0.2785164,-0.01367944,0.09832095,-0.8282472,-0.32344973,-0.036993537,-0.4374612,-0.26512578,-0.29463893,-0.06321692,0.67438626,-0.12146185,-0.11657298,-0.036177203,0.36189857,-0.30171454,-0.7557854,0.08858616,-0.449001,0.26281357,-0.02348822,-0.4606017,-0.3453011,0.2522278,-0.46162418,0.13718882,0.17296003,-0.3462848,-0.12300939,-0.3772516,0.28224185,0.72941315,0.07336192,0.36884695,-0.44072133,-0.47278374,-0.8102292,-0.3081919,0.076130085,0.20599864,0.0035237793,-0.7148336,-0.33216685,-0.40967,-0.22413698,-0.036686126,-0.4469614,0.29659858,0.22884178,0.18940772,-0.25047976,-0.7053029,0.23412742,0.13992836,0.029930519,-0.2954198,0.2674378,-0.05970543,0.96655744,0.061376836,-0.09365761,-0.03183952,-0.6944918,0.2970376,-0.1683205,-0.22080027,-0.41779253,0.1459978,100 -604,0.4147903,-0.20174852,-0.31666523,-0.13114682,-0.2682855,0.071402945,-0.06526458,0.22259258,0.2743007,-0.13693756,-0.3266139,-0.20903982,0.096481115,0.54637456,0.008750828,-0.77752614,-0.025870945,0.1355527,-0.9261557,0.51267993,-0.5948998,0.23151681,0.20981728,0.3415604,0.12654123,0.43763357,0.3277693,-0.15874265,-0.33656725,0.05862591,-0.3304882,-0.025923623,-0.48829746,0.07620298,0.0148569485,-0.20639004,-0.013914012,-0.5247358,-0.3047393,-0.6009146,0.043463692,-0.8100034,0.34499985,-0.115245655,-0.03488446,-0.08065723,0.16591938,0.39692885,-0.5601126,-0.015972756,0.098648414,-0.23192035,-0.14156328,-0.30954885,-0.07618337,-0.33431375,-0.5480406,0.012836631,-0.48385188,-0.36150184,-0.058747035,0.083708525,-0.34405982,-0.0024838448,-0.01594179,0.38630235,-0.36104122,-0.032320675,0.5565182,-0.33693048,-0.078503445,-0.37304848,-0.005474751,-0.084731415,0.39200896,0.15719411,-0.18880168,0.45603922,0.42246097,0.34148458,0.27849433,-0.35624918,-0.26972514,-0.11869876,0.3390567,0.4618192,-0.030728996,-0.40092212,-0.2591582,0.0936387,0.10895295,0.2524429,0.21592638,-0.15642653,-0.10217497,-0.07221189,-0.19944516,0.2755103,0.43734148,-0.40519994,-0.41344687,0.2902531,0.73158956,0.23434497,-0.123524114,-0.08374707,0.06233845,-0.50600094,-0.1373241,0.18727463,-0.16629538,0.54243714,-0.13319719,0.085427865,0.8532981,-0.23654303,0.10508727,-0.059954524,-0.1508325,-0.26265544,-0.20195307,-0.069052435,0.1456011,-0.34053564,-0.109426536,-0.3034628,0.70454574,0.44414043,-0.54447085,0.5126474,-0.5778617,0.2500859,-0.10736383,0.6002347,0.7050636,0.3273718,0.42375645,0.7550129,-0.24720624,0.26935086,-0.048237782,-0.45164993,0.19295366,-0.3678363,0.20556848,-0.54262,0.14732812,-0.07784857,-0.0319974,0.08524234,0.3835268,-0.5898787,0.0011290198,0.10934225,0.8283247,-0.32903132,-0.23174976,0.59616697,0.9917718,0.9695989,-0.023706717,1.2926393,0.5001267,-0.30168232,0.22837059,-0.6144011,-0.74066734,0.23640543,0.29106396,-0.23457216,0.48571932,-0.049611125,-0.16060382,0.23238567,-0.24042386,0.23579262,-0.0047977795,0.22974531,0.22024606,-0.0042461297,-0.31912333,-0.26370558,-0.18664072,-0.21729916,0.19892447,0.19843411,-0.33940476,0.46096775,-0.17280377,1.7556903,0.02278669,0.04915589,-0.10946744,0.54408354,0.32549092,-0.102804735,-0.20051916,0.5115655,0.3329087,-0.09210772,-0.5658279,0.3381971,-0.3982162,-0.3777048,-0.06484306,-0.46101555,0.030024378,0.015260761,-0.15062368,-0.10579931,0.14327233,-0.38888678,0.4273331,-2.57803,-0.2825282,-0.102688275,0.28016806,-0.3538887,-0.12325725,-0.25646952,-0.48581886,-0.02351694,0.24777699,0.53252584,-0.6695423,0.42038372,0.4401417,-0.5717043,-0.34840006,-0.63111985,0.07942928,-0.04576439,0.3445753,-0.026601342,-0.07427956,0.0132209705,0.22496335,0.6397159,0.047130898,-0.016335638,0.55471134,0.38423464,0.2872036,0.50521404,0.04676614,0.7299256,-0.30453917,-0.14431068,0.36376557,-0.2713953,0.37836567,0.028399069,0.085832864,0.5638233,-0.31940773,-0.9736011,-0.55488515,-0.35745904,1.0305716,-0.5249206,-0.3486408,0.12957157,-0.04355295,0.029960196,0.0501922,0.52861476,0.046186246,-0.0040140334,-0.57065904,0.071280055,0.11937901,0.13417162,0.070271604,0.021443076,-0.21340315,0.67292094,-0.059206188,0.5398943,-0.009316756,0.2104513,-0.12344964,-0.36668873,0.2926587,0.84016925,0.20010494,-0.07306374,-0.08608851,-0.31563315,-0.14073618,-0.22786808,-0.029083421,0.39186096,0.7086679,-0.09575149,0.09986115,0.45597708,-0.07551171,-0.047667626,-0.11320453,-0.21208006,0.05591884,-0.073913135,0.41748622,0.7886231,-0.13467728,0.6450662,-0.20895061,0.40751165,-0.009079814,-0.6042408,0.7429028,0.34781882,-0.23961505,0.03685942,0.28118685,0.25920308,-0.56595284,0.49833685,-0.58096594,-0.24755643,0.78076386,-0.09996377,-0.32302105,0.3027821,-0.17501543,0.20305167,-0.7432086,0.3976819,-0.09712665,-0.2616018,-0.42230347,-0.018946739,-3.519497,0.15873386,-0.16786215,-0.17301467,-0.12406978,0.1621804,0.122259066,-0.7413175,-0.48924083,0.021409879,0.184595,0.6353118,-0.10217282,0.22200133,-0.2674784,-0.15490367,-0.2781561,0.20738298,-0.05952946,0.4007398,-0.1704433,-0.35575947,0.13745041,-0.18365577,-0.5184336,0.22358364,-0.6675842,-0.4023571,-0.132076,-0.65252304,-0.24454203,0.7075163,-0.39588407,-0.013315398,-0.22771826,0.16286811,-0.28214997,0.29895833,0.15073647,0.087469585,0.17083035,-0.118160285,-0.025601897,-0.26371118,0.40540493,-0.0055887746,0.5645834,0.3062151,0.12640694,0.17165324,0.48944137,0.5979852,-0.103349246,0.7213694,0.30517802,-0.19677451,0.26337487,-0.42633802,-0.020835284,-0.44059113,-0.42709368,-0.04115158,-0.39974374,-0.6312837,-0.12795758,-0.23969008,-0.909794,0.46182156,0.03153298,0.33790967,-0.05757083,0.14150016,0.55383915,-0.23635578,0.14265516,-0.14595823,-0.13672787,-0.58728576,-0.24271342,-0.62218314,-0.4775194,0.47308716,0.89837134,-0.4639131,-0.029510943,-0.23755553,-0.55547476,0.025158582,-0.04267128,0.04228421,0.33038527,0.33299807,-0.12469497,-0.61250174,0.36854303,-0.15167513,-0.07076104,-0.5097674,0.08484598,0.7126502,-0.8797174,0.6787115,0.21035904,0.04829846,0.119528204,-0.32689217,-0.24185298,-0.07223804,-0.10107277,0.13420497,-0.06280227,-0.65140533,0.3136549,0.22953804,-0.5755761,-0.74100053,0.14936502,-0.06647326,-0.06764914,0.060288385,0.22150132,0.11934371,-0.04718888,-0.39238805,0.07371615,-0.5551978,0.13712825,0.22925368,0.05810207,0.3612405,0.03800615,-0.47267798,-0.6609388,0.07225794,-0.3192449,-0.36036885,0.38926452,0.24001907,0.14837445,0.05490571,0.31457716,0.29251096,-0.3726028,0.07294104,0.22339068,-0.31135267,0.33455327,0.36049315,0.34153265,-0.52386165,0.4808677,0.10988018,-0.071504325,0.25844646,-0.11036027,0.2642132,0.256552,0.26794136,0.14583713,-0.20282015,0.3233128,0.73377883,0.01843111,0.4322816,0.19782434,-0.21721514,0.47330236,-0.0143577345,0.09319567,0.0067555215,-0.46436217,0.13564652,0.10835171,0.2996783,0.45928782,0.42575872,0.2973058,0.2404626,-0.34249756,0.027554158,0.23372094,-0.18410188,-1.1487607,0.2847982,0.27096546,0.84085906,0.42869812,-0.0068643917,-0.13298808,0.7253136,-0.18778151,0.1933669,0.30297783,-0.1644013,-0.6279125,0.6887757,-0.6162865,0.5153452,-0.11425627,-0.084325075,0.024035918,0.034799594,0.27576745,0.7758922,-0.24075651,-0.07053471,-0.06085738,-0.10982086,-0.041741014,-0.48114046,0.201943,-0.5293152,-0.49416712,0.70965356,0.29446557,0.35708374,-0.18357517,-0.042568143,0.011525168,-0.17719962,0.30120033,-0.0066011595,0.08247944,0.17393924,-0.8021206,-0.3251037,0.55360734,-0.38182253,0.1464566,-0.10123973,-0.22228667,-0.034460656,-0.29828948,-0.13399647,-0.08008044,-0.6665086,0.07507093,-0.13791165,-0.6023147,0.36183542,-0.117891,0.22219236,0.22192486,-0.0863169,-0.21541665,0.39578742,0.13793491,0.88141,0.049931627,-0.3198876,-0.3401859,0.18758307,0.18994983,-0.33626366,0.2775638,-0.40382352,0.077280134,-0.4096092,0.7970593,-0.06751574,-0.5697855,0.033708736,-0.19046427,-0.10104854,0.58190495,-0.18063197,-0.16706635,-0.2169447,-0.31605074,-0.41620857,0.21568486,-0.27826917,0.20317474,0.19635926,-0.2356771,-0.06571259,-0.17965129,0.09010521,0.5183927,0.031851437,0.32395682,0.24309818,0.01816369,-0.21771625,0.017411329,0.27165234,0.48574087,0.35115367,-0.14044707,-0.51923573,-0.20877956,-0.3741891,0.23435208,-0.18250163,0.29494503,0.121399164,-0.48945922,0.6540794,-0.07327677,1.3968648,0.02998043,-0.3027039,0.10630185,0.53823334,0.09382537,0.08403753,-0.53518766,0.8782097,0.50330615,-0.079474464,-0.1081086,-0.5641366,-0.33851987,0.5231718,-0.37683788,-0.21248953,0.11865572,-0.5517931,-0.4590279,0.206642,0.0008790883,0.25260293,-0.027038634,0.11855009,0.10372612,0.17406029,0.2558301,-0.47499233,-0.28332287,0.25349694,0.18759452,-0.013837984,0.17158757,-0.36887693,0.45731485,-0.6826213,0.20883933,-0.33232814,0.038199045,-0.15607229,-0.38151175,0.22372726,0.36488804,0.46636212,-0.29458997,-0.4419611,-0.15588734,0.67954993,0.11307477,0.2466713,0.740809,-0.21265844,-0.109111734,0.14340097,0.5830664,1.244981,-0.26784375,0.13367106,0.3395509,-0.43456638,-0.71170765,0.62414974,-0.32742256,-0.070669524,-0.24424073,-0.44139004,-0.65389216,0.32630503,0.15384361,0.090188496,0.21952152,-0.52097535,-0.23061782,0.2356345,-0.421431,-0.25772575,-0.43477133,0.34740445,0.89729494,-0.26057455,-0.2243557,0.108880006,0.25654605,-0.253247,-0.3802433,-0.2689797,-0.29022634,0.3109927,0.095060825,-0.1941692,-0.09836727,0.06224768,-0.3235173,0.144163,0.05161334,-0.42450207,0.20123678,0.0034119396,-0.119034715,0.89040923,-0.16320112,0.016723542,-0.7136425,-0.5218755,-0.9019963,-0.4826943,0.3250665,-0.045276865,-0.15813468,-0.37556693,-0.009431224,0.05326339,-0.23216122,0.06691104,-0.68106365,0.28212488,0.08638377,0.27715358,-0.15333255,-0.928574,0.15264334,0.113859855,-0.072327025,-0.8240195,0.46228456,-0.25207236,0.87706065,0.034166623,-0.23248085,0.12237393,-0.31946534,0.034122225,-0.49270564,-0.1596763,-0.66191727,0.17589852,112 -605,0.33949643,-0.070206776,-0.43419486,-0.17226797,-0.38827166,0.16608176,0.007657192,0.5349446,0.28267962,-0.089825355,-0.045294955,-0.028411536,0.032520074,0.6831712,-0.08642591,-0.75698435,0.006113043,0.15919831,-0.68912697,0.41548255,-0.47831953,0.3374603,0.107335575,0.46983603,0.23214746,0.2823901,0.030500539,-0.009657593,-0.03227796,0.018278081,-0.27465007,0.11365742,-0.43907928,0.15079899,0.040793106,-0.25857466,-0.2082115,-0.3881032,-0.2590094,-0.64156383,0.3977875,-0.68949974,0.5772339,-0.267777,-0.19913182,0.21932235,0.20934829,0.28674558,-0.4310599,-0.08781571,0.17957146,-0.2572622,-0.042599227,0.011789532,-0.33673203,-0.29661497,-0.61316144,-0.09054613,-0.5201038,-0.084578864,-0.28267667,0.15503062,-0.33375752,0.13203451,-0.124680534,0.38903555,-0.29134905,0.17336375,0.2960471,-0.22103599,0.05416517,-0.34562132,-0.14119473,-0.07326422,0.29937786,0.07393778,-0.37437963,0.35818094,0.46982482,0.38400427,-0.008582569,-0.24098173,-0.14967547,-0.016701387,0.07057948,0.60403913,-0.12102746,-0.42932123,-0.25484622,-0.006504091,0.21676938,0.22065441,-0.08040273,-0.36099008,-0.04298599,0.13212572,-0.29842082,0.47811973,0.33227378,-0.24618982,-0.21198443,0.44765255,0.17322937,0.2785568,-0.19029482,0.18751153,-0.09543639,-0.6209224,-0.12571073,-0.04398783,-0.08568906,0.3892352,-0.13434137,0.28772482,0.7892764,-0.035630748,-0.10013647,-0.105005585,0.05790428,-0.09491321,-0.34345785,-0.11364781,0.078909054,-0.4718311,0.10049731,-0.14778072,0.78682655,0.15067336,-0.7832343,0.42903906,-0.5441156,0.13196024,-0.21693465,0.45470598,0.95459205,0.30491093,0.14915153,0.9220771,-0.5307942,-0.02270941,0.081391096,-0.3877405,0.10982458,-0.14325276,0.1775433,-0.534031,0.046228327,0.22314985,-0.009941184,0.24623726,0.2583763,-0.38992625,-0.1872831,-0.14823997,0.6347135,-0.39518902,-0.21459787,0.88831943,0.9557507,0.9173289,0.057453115,1.434972,0.39874795,-0.15068623,0.17774507,-0.2372643,-0.49843243,0.07376165,0.29168275,-0.3318882,0.31448957,0.050746992,0.012524616,0.43300056,-0.271783,-0.11281763,0.043622784,0.23322143,0.12672077,-0.12533854,-0.33519453,-0.46917465,0.14394198,0.115764305,0.06770284,0.25628588,-0.30912665,0.49069044,0.16446994,1.4470208,0.23861793,0.014393786,0.003615572,0.365952,0.2948999,-0.11193382,-0.31122625,0.2804324,0.5665866,-0.108126126,-0.5943185,0.031223906,-0.2738101,-0.4091592,-0.030019848,-0.43240756,-0.31190097,-0.12962843,-0.41733074,-0.0801043,0.09152702,-0.36023325,0.480824,-2.8250756,-0.30254844,-0.23631406,0.1867734,-0.18138964,-0.37504593,-0.31904167,-0.5311204,0.20046681,0.24541348,0.40123823,-0.52499866,0.34751254,0.23215789,-0.3443175,-0.19876088,-0.6362727,-0.0993318,0.08276292,0.23683307,-0.0924729,0.19028464,-0.13126187,0.3635173,0.6722422,0.13880233,-0.02585732,0.29891533,0.41827208,-0.0029102748,0.5900377,0.017686564,0.6387309,-0.12724197,-0.09031989,0.19050609,-0.28926918,0.4211528,0.038539473,0.21599366,0.57722366,-0.33200657,-0.8959297,-0.49111935,-0.23125996,1.1370734,-0.52903175,-0.16436999,0.43606696,-0.3643346,-0.40026248,-0.02009246,0.5934366,-0.07955877,-0.16893457,-0.61345065,0.026004873,-0.04393273,0.07577738,-0.19267441,0.042438067,-0.1407019,0.6386637,-0.120105654,0.48614585,0.1703648,0.020221949,-0.15517053,-0.40467864,0.00989806,0.7996104,0.34855825,0.05228891,0.0051425304,-0.0139819635,-0.48963863,-0.3314769,0.20296802,0.61221004,0.6617396,0.11046414,0.17120157,0.21428691,-0.11193915,-0.033930637,-0.0028329582,-0.25543392,-0.0052267453,-0.04586981,0.5392769,0.67925733,-0.06806744,0.57912064,-0.20876375,0.1636276,-0.21101505,-0.6488962,0.60095173,0.5515169,-0.22429791,-0.22187798,0.5749951,0.36259925,-0.19402963,0.2925737,-0.48544836,-0.32664505,0.8132468,-0.12562233,-0.40963617,0.1374955,-0.12390236,-0.17948315,-0.7711827,0.12121708,0.13021067,-0.6506891,-0.2737899,-0.070068285,-3.5724127,-0.0014250336,-0.07476934,-0.3279782,-0.24175699,-0.08015807,0.30738544,-0.40931195,-0.5542021,0.19090065,0.08497539,0.6610879,-0.17778659,0.06643747,-0.21098313,-0.20302956,-0.1813347,0.16172644,0.027742626,0.3432996,0.05661925,-0.34656146,0.0011389622,-0.1872672,-0.6548986,0.17141064,-0.5711233,-0.5457128,-0.02165295,-0.33058962,-0.23970622,0.821612,-0.6253564,-0.014752343,-0.20726609,-0.07336597,-0.2660488,0.3611383,0.17056996,0.11836589,0.03200772,0.08819652,0.09676862,-0.29895714,0.2742643,0.115542494,0.3880325,0.2071871,0.0028820634,0.25982758,0.5246078,0.62350655,-0.026435573,0.89447886,0.25006086,-0.064883284,0.22898014,-0.22388877,-0.18332826,-0.53948987,-0.24201767,-0.23610154,-0.4241945,-0.3726106,-0.21597204,-0.27498892,-0.7419837,0.3715644,0.14403015,0.08812532,-0.204355,0.15042543,0.39043176,-0.18783252,0.13291685,-0.041096453,-0.24276628,-0.58779335,-0.31488833,-0.6196763,-0.54004633,0.23418258,1.14014,-0.17694443,0.054035325,-0.1804731,-0.6096172,0.018995745,0.050051663,0.17655912,0.22522399,0.2868872,-0.25351185,-0.82034296,0.4403856,-0.50101197,-0.03108439,-0.7861558,0.0882753,0.7011198,-0.6389336,0.53949565,0.25489542,0.27364504,-0.11499827,-0.43753624,-0.2420015,-0.008972094,-0.09726383,0.46044746,0.20218089,-0.64094794,0.5017885,0.07657252,-0.10170123,-0.52014613,0.39947838,-0.056448836,-0.002256595,-0.011135652,0.3096309,0.12691548,-0.02422681,0.0954417,0.2507986,-0.53612393,0.2769566,0.3583504,0.104730554,0.32344988,-0.031856034,-0.0182033,-0.63317436,-0.17114857,-0.4158352,-0.28330082,0.007976053,0.090535276,0.28435794,0.034704544,-0.15383579,0.19971807,-0.358607,0.16736507,-0.071181685,-0.19290821,0.32846662,0.5937617,0.43074277,-0.37789968,0.6556107,0.1471129,0.057433255,0.23046046,0.037071068,0.46442434,0.3386106,0.34465525,-0.16225919,-0.23486581,0.25848496,0.6503726,0.20803928,0.15461907,0.00750129,-0.11419641,0.08664819,0.09073309,0.16977455,0.20335235,-0.39545867,-0.22726785,-0.098691754,0.17916067,0.60845035,0.10953498,0.11661703,0.025020303,-0.37291402,0.2350812,-0.08518076,-0.011867606,-1.4196175,0.5067028,0.28442794,0.74721706,0.2974711,-0.06700711,-0.10724397,0.6294823,-0.13047042,0.25874522,0.39132294,-0.07103682,-0.41076997,0.59863627,-0.6976405,0.6120644,-0.109426536,0.01165987,0.23741268,0.21903767,0.4585112,1.1391468,-0.079026885,0.061930828,0.15627238,-0.43784767,0.16352312,-0.307431,-0.040695887,-0.6852882,-0.43730974,0.43780538,0.4469368,0.29857546,-0.38871333,0.014971747,-0.046134315,-0.19604169,-0.1585071,-0.054507367,0.0005401373,-0.21225506,-0.6602983,-0.3196979,0.5060013,-0.01878899,0.15768264,0.20740718,-0.19929695,0.3553263,-0.21821985,0.019698363,-0.079348095,-0.68411326,-0.14683706,-0.23703872,-0.57211405,0.19813552,-0.46324697,0.2945115,0.20965339,-0.010343343,-0.23865642,0.33274412,0.26210076,0.9128422,-0.21874176,-0.25908816,-0.3148143,0.103897996,0.21727474,-0.23461914,-0.1897038,-0.38871846,-0.22127604,-0.53481096,0.34740454,-0.17576331,-0.23783694,-0.037553545,-0.040465955,0.16988188,0.29019594,-0.17834465,-0.113909155,-0.22346638,-0.15577425,-0.2364848,0.0105237225,-0.32801515,0.33674362,0.16160257,-0.067684196,0.0028090535,-0.12517527,-0.020778846,0.11193657,-0.01605541,0.3737969,0.3021972,0.020511866,-0.18013622,-0.049077217,0.11475564,0.42582396,0.15748833,-0.18431027,-0.36199063,-0.22761795,-0.21651782,0.3793968,-0.19098918,0.38393408,-0.05251576,-0.45751512,0.6526854,-0.016960727,1.0968013,0.17322867,-0.23687452,0.2358831,0.52085525,0.08305021,0.03629521,-0.13510473,0.6594282,0.41320202,-0.04358691,-0.33816656,-0.4266095,-0.14732271,0.45487294,-0.27681434,-0.2940375,-0.0024130838,-0.65883726,-0.24881831,0.017500121,-0.0216935,0.3267314,-0.07378565,-0.094298236,0.18109521,0.11442049,0.48993966,-0.45871976,0.06905412,0.2483039,0.32439533,0.054946806,0.20611939,-0.39271024,0.4716323,-0.64666915,0.25154367,-0.40661177,0.12463676,-0.21586162,-0.16625144,0.13418576,0.13472249,0.2787905,-0.2806083,-0.23689696,-0.32750925,0.6725258,0.28057915,0.15563719,0.62179697,-0.25070494,-0.1786512,0.24524774,0.44485247,1.1801747,-0.1473884,0.049192216,0.3234938,-0.3776849,-0.48375708,0.16594145,-0.2980823,0.19751689,0.067912936,-0.20411706,-0.31484216,0.2924616,0.04213124,0.18040338,0.15806183,-0.45146158,-0.26901266,0.49786332,-0.1965379,-0.3557515,-0.3414321,0.20735154,0.5096768,-0.42852706,-0.25949675,0.1200927,0.109689385,-0.18146607,-0.58455074,-0.0038241057,-0.48970744,0.40392604,0.023880359,-0.4225318,-0.011268086,0.08940566,-0.45177254,0.30997148,0.09096401,-0.41240567,-0.00012565576,-0.06645921,-0.3204199,1.1125878,-0.13155787,0.059692264,-0.79481167,-0.5172029,-0.7401853,-0.36208886,0.1654173,0.13047291,-0.15931807,-0.49303633,-0.18307385,0.02114842,-0.013523185,0.0042060064,-0.37495553,0.37521333,0.10985184,0.3112199,0.012856801,-1.0722551,-0.036533955,0.038530268,-0.27898565,-0.65478665,0.51174176,-0.13475493,0.6947042,0.03909255,0.13431881,0.20433538,-0.3404237,0.29876354,-0.32877466,-0.13628957,-0.6081561,0.2907158,113 -606,0.5233417,-0.441573,-0.83321404,0.06580274,-0.36641747,-0.036324404,-0.34455922,0.5796117,0.06759138,-0.6484051,-0.2727998,-0.026900979,-0.13571963,0.286967,-0.25574535,-0.62828887,0.04311275,0.26181287,-0.40663338,0.75019526,-0.038328722,0.29014036,0.03118939,0.46025392,0.3463981,0.10017196,0.043699786,0.15674584,-0.2079306,-0.22720495,0.16863145,0.079140335,-0.75040424,0.29326808,-0.39734742,-0.5960087,-0.20911519,-0.5133686,-0.29017928,-1.0612195,0.30362195,-0.74113613,0.5514054,-0.04124755,-0.5506856,-0.04992443,0.09761589,0.39756918,-0.115782656,-0.04541499,0.08474626,-0.2462519,-0.08759589,-0.20314659,-0.19547227,-0.4246481,-0.7504354,0.06443233,-0.40754333,0.11000712,0.10492095,0.38308525,-0.42921972,-0.01526863,-0.20079273,0.6252741,-0.34070727,-0.022422154,0.49693078,-0.11915536,0.120889,-0.6807683,-0.18143858,-0.18134643,0.15414125,-0.012562527,-0.19900022,0.13510026,0.05737601,0.49465507,0.1923247,-0.33792412,-0.28219864,-0.08177066,0.18962502,0.35669863,-0.09051935,-0.3345632,-0.24287264,-0.013076682,0.5746084,0.2520314,0.27820048,-0.20733339,-0.02994464,-0.20347592,-0.06852006,0.3742005,0.48286635,-0.31188837,-0.004381574,0.19342674,0.766043,0.22692548,-0.2414191,0.13364086,0.04346111,-0.5336009,-0.15020336,0.14468351,-0.18373905,0.6054369,-0.16960336,0.28776264,0.47932023,-0.1197526,-0.09002605,0.42370483,0.17555414,-0.17198923,-0.3880275,-0.38737455,0.49786,-0.3750995,0.24274032,-0.41339523,0.7916373,0.2474172,-0.69794667,0.27228144,-0.6491333,0.28003427,0.052133244,0.57325256,0.7762467,0.50853735,0.14903443,0.9035378,-0.33075127,0.19623706,0.051802315,-0.11881955,-0.2179056,-0.27510545,-0.09316892,-0.40443003,0.099426985,-0.30940565,-0.023939114,-0.014064711,0.51314366,-0.7667142,-0.37036914,-0.014463911,0.7852427,-0.11506666,-0.15148726,1.0940896,0.8506881,1.2731599,-0.061058145,1.133446,0.13745263,-0.14101599,-0.13575624,-0.043679126,-0.7793331,0.42440823,0.3624228,-0.58920485,0.5978447,-0.22008078,-0.11647523,0.7079426,-0.44293424,0.059557788,-0.17763707,0.14105591,-0.056683317,-0.21883339,-0.5567359,-0.06591043,0.08943718,0.077518016,0.0485997,0.47180426,-0.1256701,0.55976915,0.0029726715,1.216161,-0.28378022,0.07697248,0.25664836,0.26660478,0.30979115,-0.29630062,0.07028341,0.13504468,0.2685979,-0.03364829,-0.5659683,0.016343651,-0.47338024,-0.50631225,-0.21877989,-0.2271425,-0.406524,-0.26264748,-0.601693,-0.31447828,-0.17433992,-0.16197722,0.28718737,-2.2001178,-0.3277872,-0.2603351,0.32948843,-0.6377837,-0.39802817,-0.056621786,-0.5903916,0.3886736,0.14923012,0.5740107,-0.5470384,0.4150409,0.54545224,-0.62645626,-0.038694613,-0.7171027,-0.10921887,0.06459699,0.27998957,0.0010127241,-0.2477449,0.2741873,-0.056163207,0.52972686,-0.09167504,0.023993047,0.4277634,0.3988655,-0.23290427,0.2305687,0.053589042,0.6362315,-0.7426415,-0.181623,0.60665977,-0.45787317,0.537989,-0.06111376,0.08746411,0.7131958,-0.62261635,-0.5864815,-0.5617498,-0.178387,1.1242753,-0.18178795,-0.5676371,-0.1419843,-0.33597022,-0.10036047,0.03684797,0.4834662,-0.041921653,0.06669634,-0.7935926,-0.1926026,-0.05087856,0.21100444,-0.05999152,0.042485483,-0.40937006,0.7723246,-0.12650432,0.46781164,0.5363803,0.30375835,-0.24159043,-0.6291019,0.03165877,0.95074,0.57685983,0.13481468,-0.44362304,-0.053745117,-0.6009872,0.005759349,-0.0059062014,0.5889407,0.61631465,-0.18451406,0.11387196,0.43616486,0.106263176,0.25921085,-0.17227125,-0.39702305,-0.3628413,0.20098776,0.63885343,0.78386486,-0.16522329,0.40416792,0.0029733228,0.28099844,-0.43464836,-0.5651007,0.62567174,0.77854824,-0.39274755,-0.411068,0.5144736,0.40907544,-0.3452888,0.61542743,-0.72680277,-0.4712045,0.5222578,-0.13776582,-0.41998678,0.09332112,-0.36454475,0.33109415,-1.0132309,0.16111143,-0.6660131,-0.272175,-0.8060988,-0.29703504,-1.0296338,0.3763841,-0.2313001,0.12565169,-0.27268633,-0.18489797,0.009547885,-0.6456079,-0.92715526,0.13451765,0.1558922,0.6502645,-0.2267959,0.25356978,-0.22785395,-0.60701174,-0.28776342,0.2914409,0.28623158,0.28977114,-0.20364109,-0.37013525,-0.07215199,-0.12171699,-0.330698,-0.06279634,-0.745439,-0.4781945,-0.3116031,-0.53984594,-0.24800557,0.7027606,-0.45742935,0.08750386,-0.09448163,0.024171498,-0.0014605934,0.13794042,0.03781359,0.106037535,0.29023197,-0.22954093,0.21074632,-0.26431203,0.027076492,0.08653548,0.29371825,0.5264188,-0.27892613,0.4439147,0.49888134,1.0659605,0.101079464,0.83500946,0.3135733,-0.022353457,0.46807736,-0.11651397,-0.47996256,-0.67419666,-0.049738996,0.14684723,-0.4045385,-0.48990777,0.18646461,-0.40628222,-0.91615283,0.65423703,-0.0065361043,0.33084196,0.012443185,0.6107511,0.6744162,-0.3785732,-0.1312515,0.13337752,-0.15299676,-0.37763628,-0.33467352,-0.6922143,-0.6172965,0.11474284,1.344777,-0.21149834,-0.078035206,0.30653906,-0.34739244,0.041670665,0.2646221,-0.09683908,-0.22433542,0.45114833,0.18802397,-0.52467567,0.34354523,0.13748318,-0.12658769,-0.35499984,0.25908846,0.56920445,-0.6106053,0.27652094,0.36979893,0.02227183,-0.3062285,-0.69308877,0.25594157,0.23156013,-0.1325983,0.5099216,0.52516925,-0.40778366,0.31560034,0.3323393,-0.077663586,-0.9176244,0.47670028,0.10030364,-0.18643686,-0.21712899,0.54357696,0.17304434,-0.08758014,-0.20598881,0.34663528,-0.38922912,0.14602779,0.30221403,-0.3735634,0.1598913,-0.2238524,-0.33804467,-0.8329329,0.28227484,-0.80479723,-0.28915364,0.5449652,-0.00054358516,-0.017945822,0.055607915,0.32176277,0.35040504,-0.2553519,0.098826475,-0.2873572,-0.3032886,0.5863488,0.5688053,0.465599,-0.44884413,0.76414293,0.23629618,0.050218634,-0.024371238,0.029448546,0.49384058,0.018934846,0.67687124,0.08552456,0.012345805,-0.15489925,0.62800705,0.21748017,0.5373522,0.15118538,-0.12794675,-0.11438481,0.06760451,0.25795624,-0.4156437,-0.46266717,0.110772796,-0.12023946,0.02562793,0.51520264,-0.04984091,0.39634308,-0.031966455,-0.28650525,0.04695533,0.10598354,-0.16208164,-1.3317164,0.3318879,0.22203535,0.8992189,0.53449327,0.13468291,0.06958336,0.4888797,-0.2199138,0.1474749,0.56591886,-0.11289675,-0.4204559,0.58670765,-0.6380382,0.5868776,-0.20812069,0.118012905,-0.0109907575,-0.047390934,0.6314407,0.6660833,-0.11151635,0.00862189,-0.17093788,-0.31923723,0.11289195,-0.41120735,0.27250022,-0.44325167,-0.3066656,0.7844092,0.5611031,0.39540583,-0.27336577,-0.0016850417,0.144757,-0.06473007,0.4288422,-0.07296442,0.32817063,0.02599448,-0.33374304,-0.004736515,0.43211943,-0.02704492,0.040621366,-0.07416038,-0.33244565,0.1892412,-0.08707207,0.14944175,-0.28029603,-0.96606576,0.09489496,-0.4991718,-0.5533955,0.32527512,0.112429366,0.15702012,0.16494821,0.13253249,-0.39808103,0.39171565,-0.21534666,0.7779262,-0.08270654,-0.15839921,-0.20353062,0.37613815,0.25447154,-0.32688853,0.14039873,-0.13413182,0.29205024,-0.42842785,0.3217802,-0.0065443907,-0.37831333,0.02125022,-0.041541778,-0.22007634,0.52330434,-0.12803076,-0.16740337,0.01940615,-0.25402555,-0.16461152,-0.3643411,-0.135068,0.24679288,0.1801463,0.072616726,-0.3446411,-0.070593864,0.0008709614,0.37856585,-0.047002908,0.14005803,0.6449083,0.043756686,-0.76011175,0.0468594,0.24575917,0.5949884,0.191093,-0.20973644,-0.38524708,-0.44482136,-0.45772573,0.6028745,-0.25585872,0.3979796,0.10173053,-0.18718158,1.041188,0.20116527,1.4895369,-0.052613582,-0.40426925,0.1355493,0.58912945,-0.0921992,-0.15315276,-0.42322686,1.1541319,0.44139653,-0.30095336,-0.041473646,-0.28583354,-0.08542652,0.19403924,-0.15733185,-0.18627335,0.036698174,-0.509454,-0.23911563,0.106497675,0.28655317,0.012950714,-0.38710624,-0.063661724,0.39740616,-0.034611408,0.27441484,-0.529275,-0.312531,0.25765696,0.29178044,-0.23138659,0.16620804,-0.55229986,0.26210898,-0.78326917,0.20929815,-0.41168955,0.12349716,-0.031738814,-0.5193885,0.41708496,0.09156113,0.24663244,-0.56905705,-0.3861708,-0.24529178,0.4772544,0.3440931,0.13583912,0.730692,-0.3802262,-0.02484876,0.17159635,0.5003315,0.965005,-0.2695393,-0.102932215,0.17144758,-0.40891927,-0.8585877,0.3419778,-0.64238006,0.46621084,-0.21695064,-0.3657689,-0.8195447,0.07176857,0.18682583,-0.14091031,-0.033079453,-0.95610404,-0.087440975,0.29112697,-0.38366306,-0.09541952,-0.49175707,-0.06465519,0.5344626,-0.047157343,-0.4289104,0.1251085,0.21340132,-0.10265103,-0.55995935,0.13830748,-0.44304892,0.10715987,0.11021992,-0.33751485,-0.12295675,0.0908918,-0.71901554,0.08938543,0.20244654,-0.41277486,-0.0077903317,-0.24317652,0.00095507276,0.8947761,-0.28926688,0.2718948,-0.2795769,-0.46828064,-0.8625336,-0.21133436,0.3523371,0.08775454,0.14469999,-0.9682936,0.0431423,-0.30377585,-0.08074752,-0.03759134,-0.30172727,0.4293922,0.23882487,0.42188737,-0.13094492,-0.8802172,0.29686755,0.05714915,-0.24901658,-0.41270578,0.26352137,0.0652637,0.9796515,0.078384124,0.0718212,0.3377188,-0.78655124,0.10672997,-0.14159751,-0.05103812,-0.58870673,0.010875236,115 -607,0.57736665,-0.06358959,-0.5528782,-0.14430352,-0.32940578,0.16003142,-0.09046527,0.33959213,0.025948016,-0.63680404,-0.46713403,-0.21428028,-0.13053972,0.0022303509,-0.13292,-0.48919863,0.353682,0.3484135,-0.58300436,0.5679294,-0.45494395,0.59857774,0.14567734,0.1451285,0.16923301,0.10469541,0.18916692,-0.015555316,-0.216446,-0.35114655,0.12740271,0.17474772,-0.45274565,0.39601612,-0.15407334,-0.4210596,-0.03286704,-0.23775993,-0.19695657,-0.84152836,0.11442841,-0.7365892,0.49044192,-0.28246948,-0.27900708,-0.011764018,0.12736882,0.18456167,0.014338599,0.042888973,0.17531705,-0.084966674,-0.3188499,-0.33805832,-0.18777667,-0.4194852,-0.3941951,0.06603377,-0.16612536,-0.109043725,-0.29652914,0.28519052,-0.18793243,0.09227197,-0.102383986,0.4246535,-0.2637121,0.17380585,0.045779712,-0.19704987,-0.034195323,-0.73139256,-0.18633042,-0.17573959,0.28631863,-0.061428133,-0.12685864,0.18045847,0.10624865,0.6029068,0.07682843,-0.074616045,-0.24611609,-0.18698694,0.35269496,0.6102199,-0.018274684,-0.07367057,-0.17039302,-0.1775863,0.33025426,-0.071305126,0.28471,-0.5229179,-0.1717641,-0.36318558,-0.24789463,0.16725141,0.47657695,-0.32112586,0.013928693,0.2676369,0.62056947,0.07128807,-0.2672021,0.24657533,-0.26385805,-0.34694672,-0.08407039,0.042204563,0.14962897,0.49638665,-0.123383455,0.16801009,0.29965323,0.04718461,-0.11493007,0.16296183,0.0912168,0.049059648,-0.19039737,-0.08409126,0.06793273,-0.34779993,-0.13310567,-0.44695795,0.8480268,0.061110202,-0.65317154,0.43608972,-0.3594097,-0.015951399,0.009925031,0.46893552,0.60812205,0.4790656,-0.071788326,0.68975407,-0.40516073,0.03566388,-0.12310742,-0.102333106,-0.055786427,-0.032678846,-0.008495349,-0.3945933,0.2594364,-0.087510824,-0.120659076,-0.17537093,0.5452423,-0.47491643,-0.17243865,0.03861972,0.6401799,-0.42639977,-0.07775398,0.7665522,1.0235745,0.8558852,0.11956845,1.3015301,0.34320813,0.017269112,-0.23499845,-0.21773991,-0.5979032,0.19290026,0.20524615,0.5181972,-0.18746132,0.27636024,0.07550181,0.57108086,-0.49699,0.05588202,-0.22866017,0.34174216,0.02703586,-0.011224137,-0.29527777,-0.12653992,0.23701444,0.012938102,0.19872838,0.1926295,-0.24815449,0.37253377,0.049463466,1.5289123,-0.21678878,-0.02637386,0.09939623,0.25585455,0.04337309,-0.14799765,-0.01672431,0.073427744,0.2110365,-0.26195318,-0.35538134,-0.122441016,-0.04857143,-0.5275125,-0.24465176,-0.1234777,-0.12657149,-0.013958601,-0.23514284,-0.3622549,0.06050033,-0.52657056,0.5412403,-2.2452307,-0.15888911,-0.15380917,0.37756222,-0.14202656,-0.51546246,-0.10692581,-0.46916464,0.4982839,0.2885961,0.37563017,-0.424273,0.49927908,0.32877678,-0.37642255,-0.11101807,-0.6335129,0.017826658,0.022384562,0.27506855,0.11630501,-0.014213145,-0.36782214,-0.12644516,0.4153722,-0.21052358,0.1676646,0.6488712,0.284303,0.15100482,0.37747192,0.20488478,0.7067106,-0.35390583,-0.07375087,0.5241959,-0.40248615,0.08671558,-0.042040866,0.19014928,0.34096912,-0.5523946,-0.4223231,-0.9752586,-0.38282818,1.2934301,-0.147148,-0.48472896,0.1913557,-0.30368212,-0.3692425,0.10928067,0.34146452,-0.115684085,-0.14734194,-0.70107853,-0.21961528,0.024195036,0.3962067,-0.18999648,-0.14837515,-0.5089704,0.7136656,-0.29662082,0.5286567,0.35311782,0.27848896,-0.09284103,-0.25656685,0.02531851,1.089929,0.37755173,0.097348616,-0.19210038,-0.2959533,-0.4573135,-0.18467881,-0.0139158005,0.7819146,0.3942861,-0.017902734,0.038482126,0.22744407,-0.11414563,-0.13342513,-0.19980405,-0.38332075,-0.2000254,-0.0014723081,0.6236515,0.5860649,0.0971929,0.4773021,-0.18892115,0.38192353,-0.2935514,-0.5642263,0.37886178,0.6050364,-0.21740222,-0.37020996,0.51702887,0.34866813,-0.26847416,0.33249342,-0.56910485,-0.42384756,0.25150216,-0.026681652,-0.36919868,0.050009325,-0.32565954,0.2665378,-0.80968064,0.5300743,-0.45625323,-0.8978536,-0.35178983,-0.19637473,-1.9875834,0.20089012,0.04697587,-0.064128466,0.018594269,-0.1536662,-0.04432039,-0.16546696,-0.5446873,0.1514392,0.022849377,0.53524595,0.08584694,0.061190203,-0.28386155,-0.3151748,-0.16917141,0.16579205,0.02934454,0.3862174,-0.16622402,-0.3185236,0.04706641,-0.22290619,-0.08848361,-0.0015245286,-0.71177906,-0.7770923,-0.050560493,-0.458069,-0.28064182,0.5791151,-0.687206,0.043802842,-0.23783292,-0.10736425,-0.2303648,0.27827123,-0.05719515,0.14005902,0.025128622,-0.11752165,-0.10639226,-0.4352552,0.29773313,0.23006505,0.12223938,0.49611312,-0.17789723,0.06457246,0.25604314,0.572325,-0.028277615,0.85482186,0.2811715,-0.04148114,0.3653321,-0.09731027,-0.40217692,-0.367401,-0.027977398,-0.056199107,-0.47056305,-0.18477553,-0.18278188,-0.30329412,-0.69883907,0.40531492,0.18779221,-0.18871623,0.13997032,0.21845675,0.38930467,0.14089793,-0.09943371,-0.0866306,-0.13349146,-0.5000505,-0.57629544,-0.52617764,-0.49649826,0.025890555,1.1881938,-0.12720878,0.038955506,0.073225014,-0.24391015,0.14611192,0.25945723,0.11380784,0.05060649,0.5442615,-0.15794097,-0.6415522,0.49939,-0.097770065,-0.055231113,-0.44986293,0.36371738,0.61254436,-0.6828898,0.35692638,0.21711802,0.15079315,0.02679043,-0.5075627,-0.079326406,-0.1351549,-0.49336135,0.35300505,0.12264155,-0.65110934,0.335371,0.25858173,0.13846849,-0.8211196,0.26593116,-0.09906657,-0.31725386,0.187058,0.41896918,-0.019990517,-0.010917301,-0.31613094,0.0031872438,-0.37075788,0.34347758,0.20062064,-0.1474089,0.09760786,-0.41091824,-0.15424523,-0.6268002,-0.2518664,-0.5264523,-0.31726614,0.051376138,0.16418836,-0.088817105,0.24942112,0.29252908,0.44463533,-0.32585657,0.09745606,-0.27344176,-0.116548374,0.23460136,0.28867847,0.28773075,-0.40723264,0.4722318,-0.0047066305,0.034110326,-0.22310239,0.11160501,0.35323173,0.099148154,0.302496,0.070281826,0.15651025,0.24313776,0.87311214,0.18571562,0.4195151,0.09031475,-0.46002287,0.110836916,-0.09326673,0.14914912,-0.08378653,-0.441429,-0.044385202,-0.0031446172,0.12770694,0.45875946,0.2507187,0.5235535,-0.08956354,-0.56860244,0.05213184,0.05805784,0.02630705,-1.1295054,0.21890244,-0.06526643,0.9085068,0.48939693,-0.054852907,0.17589146,0.57861817,-0.20357664,0.18495886,-0.0032847065,-0.26012337,-0.20234026,0.22786158,-0.6377898,0.234543,-0.19006188,-0.020010876,0.32003453,-0.026653694,0.34230152,0.72302914,-0.06740518,0.1431187,0.03309339,-0.1436345,-0.10295778,-0.24993013,0.22646967,-0.5398951,-0.31066376,0.5976406,0.43604058,0.43150356,-0.30717328,0.13977844,0.13777402,-0.18347321,0.15832344,0.057568643,0.095575556,-0.06709482,-0.43680036,-0.22695869,0.69138014,-0.023283573,0.0029403658,0.30672044,-0.4143154,0.20079003,-0.05255155,0.119027406,-0.0073153605,-0.52568793,0.14775328,-0.28868768,-0.16540845,0.08471426,0.021516122,0.16940764,0.2673193,0.05031731,-0.22294767,0.48896393,0.24333389,0.73449314,0.22373445,-0.043300144,-0.25224406,0.16467656,0.29592538,-0.2766522,-0.04287883,-0.12887233,0.10888879,-0.7413622,0.25596708,0.0088924905,-0.32323796,0.1914246,0.027990071,-0.08845586,0.4668031,-0.11809237,-0.075788535,0.4330794,0.105497636,-0.15272276,0.08089935,-0.15093936,0.1780649,0.04750741,-0.22264704,-0.10506748,0.014920785,-0.022697357,0.11728169,0.06271393,0.27259958,0.4094319,-0.10872932,-0.45918608,0.14151004,0.11504797,0.62934744,-0.12657833,-0.013492222,0.013879111,-0.37304145,-0.40105012,0.31303045,-0.057268348,0.25510275,0.11712522,-0.2642212,0.5559958,0.19620067,1.0945233,0.03038867,-0.24919327,0.10017283,0.53714335,-0.017265104,0.09110964,-0.39766172,0.8194376,0.5357699,-0.17941931,-0.04183376,-0.2558881,-0.15354982,0.23672572,-0.024272852,0.013563707,-0.09284902,-0.6712064,-0.37531802,0.12527409,0.30132195,-0.11227141,0.01300944,0.16511177,0.25533238,-0.07515388,0.28264067,-0.45749947,-0.0030190807,0.27756065,0.18782432,-0.07356226,-0.03764157,-0.37924117,0.24320708,-0.8740866,0.047434393,-0.1355873,0.027961887,-0.19723204,-0.25846463,0.12563834,0.174692,0.2321313,-0.53189975,-0.3261743,-0.40456265,0.559851,0.18423806,0.28367278,0.62928987,-0.17590784,0.118925214,0.24238792,0.43653283,0.99643475,-0.12860686,0.046181403,0.50291526,-0.40738282,-0.49893254,0.116959065,-0.1381237,0.088844605,-0.15028845,-0.31506824,-0.40798935,0.30836242,0.30195045,-0.05026385,0.05643263,-0.6040796,-0.11026977,0.31646794,-0.22147104,-0.19938055,-0.19041698,-0.017742176,0.47118217,-0.15780888,-0.4645886,-0.075296015,0.28163618,-0.43213478,-0.61346734,-0.13277532,-0.37535465,0.3211466,0.15107816,-0.3691223,-0.2879202,0.12619406,-0.39158583,-0.14807357,0.072186574,-0.34995618,0.10139695,-0.2454096,0.11798865,0.7008337,-0.010232806,0.26847458,-0.4448851,-0.5935695,-0.6474832,-0.4021635,0.34495002,0.34334543,-0.307828,-0.43859306,-0.26884097,-0.36211866,-0.18859555,0.16958974,-0.26161176,0.42200515,0.26652262,0.35405394,-0.24798916,-1.1171939,0.102368504,0.21371815,-0.10988558,-0.4127271,0.2524485,0.02479483,0.73441494,0.059728578,0.01966679,0.12504259,-0.55383766,0.33302358,-0.16971119,-0.0443414,-0.46301043,0.13576585,116 -608,0.6115479,-0.025813244,-0.4652707,-0.27203438,-0.37725684,0.05282833,-0.038540855,0.20480278,0.35099265,-0.38020322,-0.114016734,-0.038807135,-0.068389475,-0.011871145,-0.11633641,-0.6879865,-0.029058943,0.22591455,-0.6526629,0.35239977,-0.326026,0.49617067,0.101429515,0.43832895,0.042793162,0.10268204,0.06603417,-0.11061887,0.017598914,-0.0702813,-0.16744262,0.15588346,-0.8074534,0.25791666,-0.13049263,-0.33589342,-0.04101966,-0.5454686,-0.3439207,-0.7710011,0.31642812,-0.77181786,0.8014184,0.048892483,-0.37985736,-0.15312031,-0.02931032,0.3347336,-0.20630452,0.22720265,0.27273706,-0.20480005,-0.0235473,-0.0925276,-0.25777745,-0.22851256,-0.52667785,-0.043529723,-0.3709871,0.006464376,-0.08425289,0.3047032,-0.17896003,0.0100933565,-0.34587398,0.4975695,-0.31075594,0.056604307,0.23365706,-0.120956525,0.299995,-0.4959763,-0.031584103,-0.12993176,0.16883205,-0.16961432,-0.30624968,0.19600064,0.19929862,0.7406298,0.14292324,-0.31217206,-0.040400527,0.083940305,-0.14619358,0.51131785,-0.25151923,-0.10130556,-0.2986088,-0.1373443,0.3608422,0.21188127,-0.11372698,-0.4625438,0.27257735,-0.12398399,-0.021939544,0.4108383,0.52485085,-0.14186262,-0.24494621,0.16708273,0.2785962,0.09347459,0.00524409,0.3711906,0.04818762,-0.42711464,-0.3223823,0.25580367,-0.087858126,0.3111849,-0.11719381,0.08467551,0.5116685,-0.022975596,-0.014011145,-0.00068239984,-0.004558123,0.21986839,-0.23771963,-0.39496592,0.30669996,-0.5793733,-0.024774514,-0.37719396,0.7046538,0.062120043,-0.76096874,0.27098358,-0.6452771,0.09282352,-0.12297515,0.6816892,0.8151392,0.47666475,0.03998373,0.8831147,-0.5282492,0.1461525,0.1650442,-0.15385373,0.019136135,-0.058122084,0.22710374,-0.3547602,-0.082693234,-0.14888176,-0.121033154,-0.1602202,0.27230674,-0.58532745,-0.23561089,-0.16006151,0.7359254,-0.36357898,0.115102306,0.8976028,1.1142713,0.9813025,0.061710063,1.3353225,0.4652948,-0.22526357,0.0109977815,-0.24406177,-0.57575434,0.1090486,0.19757472,-0.02359447,0.20300677,0.10196627,-0.063325875,0.37098843,-0.6938692,0.034169413,-0.17460912,0.18788172,-0.16841239,0.050417297,-0.5095788,-0.15488246,0.17382754,0.117671266,0.057471115,0.07195206,-0.2968645,0.17639717,0.17151836,1.1728624,-0.109375626,-0.092503555,-0.0054068496,0.27368876,0.10577261,-0.18154171,-0.09332888,0.17552076,0.471711,-0.17956482,-0.53788495,-0.005407619,-0.21940573,-0.13026452,-0.24086195,-0.17666174,0.033048328,-0.21226989,-0.41493225,-0.31755748,-0.0811349,-0.45304444,0.39591026,-2.2097654,-0.19642141,-0.15500304,0.47695324,-0.2670176,-0.2822528,-0.19604842,-0.4146336,0.24906634,0.3038493,0.28179276,-0.6199018,0.4487962,0.42718792,-0.40536693,-0.0049105263,-0.7257506,-0.112879366,0.070623025,0.30064213,-0.036901824,-0.22697504,-0.27680206,0.15663265,0.5252436,0.24057439,0.10932993,0.26103657,0.5064531,0.056230452,0.49183607,0.16708367,0.53508633,-0.32368013,-0.06948655,0.42535165,-0.5103375,0.11893945,-0.023795005,0.03176193,0.3741039,-0.6747049,-0.6462545,-0.8384559,-0.45895684,1.1172255,-0.3159768,-0.4555879,0.273733,-0.31907612,-0.19352333,0.14486068,0.5396051,-0.20936812,-0.010472619,-0.83822095,-0.2807451,0.0076853773,0.3384968,-0.014918786,0.2068049,-0.48815617,0.6171466,-0.33627856,0.46716785,0.44724756,0.34012133,-0.038116418,-0.67161083,0.066696376,0.9209348,0.3640017,0.18699664,-0.21024463,0.07804188,-0.22763804,-0.11002937,0.062558435,0.7423108,0.9898177,-0.12727328,0.02761024,0.4115404,-0.16379428,0.024915596,0.023544298,-0.4766467,-0.2789473,0.05354853,0.5647992,0.5033168,-0.031917516,0.30415022,-0.2672819,0.337573,-0.20401861,-0.48468348,0.44178292,1.2166641,-0.08749051,-0.16984613,0.7063471,0.43130296,-0.35900578,0.42268282,-0.77165896,-0.30985147,0.44484857,0.02090581,-0.6765134,0.099163875,-0.3550124,0.15224746,-0.84463716,0.52055305,-0.25869265,-0.84415084,-0.49675843,-0.12332846,-1.9471259,0.16935198,-0.24665777,0.025578452,-0.18797328,-0.37686855,0.29089308,-0.27723745,-0.7050715,0.098054975,0.025474511,0.39096445,0.034068037,0.19311169,-0.2295022,-0.113340564,-0.3271825,0.2695294,0.37028444,0.14216179,-0.0016958163,-0.31125847,0.00091137335,-0.07923528,-0.27239606,-0.013177172,-0.7162195,-0.74230903,-0.061625235,-0.6972773,-0.16470344,0.6401625,-0.35557073,-0.039499182,-0.34813198,-0.02847175,-0.25422123,0.355264,0.06821832,0.33452642,0.035711642,-0.081707805,-0.25979382,-0.27663013,0.28656626,0.21831986,0.1925494,0.19816747,-0.23196891,0.1828398,0.2988888,0.71704096,-0.10097441,0.7629211,0.33468777,-0.07437929,0.24519055,-0.29230186,-0.33025867,-0.61374915,-0.23423305,-0.12786561,-0.46570507,-0.27533254,-0.05890375,-0.5750551,-0.824928,0.30097836,-0.0989215,0.1298059,0.040209297,0.1927407,0.43244797,-0.043246742,0.012033754,-0.22340377,-0.13950506,-0.48936382,-0.33977216,-0.57542264,-0.49388555,0.104594484,1.4334834,0.065483905,0.16498944,0.3463965,-0.24560341,0.16584308,0.086215846,-0.053404294,0.1962591,0.7712825,0.023830872,-0.6891582,0.11223487,-0.000634966,-0.05649257,-0.6489032,0.2109557,0.9254179,-0.8694081,0.6124722,0.32056016,0.18300611,-0.24453856,-0.6232955,-0.377981,0.03612482,-0.19119708,0.7054994,0.17764029,-0.40951437,0.3906712,0.124093205,0.013683291,-0.7309264,0.4745223,0.050760806,-0.286119,0.21230489,0.43128088,-0.21236412,-0.1344437,0.052097134,0.36104774,-0.22911622,0.45473364,0.1932288,-0.09445547,0.20961627,-0.13003644,-0.23096617,-0.67549884,0.07482866,-0.6701952,-0.36858705,0.19858955,-0.11247897,0.019813826,0.36578682,0.0584662,0.50803363,-0.10030387,0.19242646,-0.10564804,-0.33976793,0.30942968,0.491602,0.3551037,-0.45609182,0.54959834,0.024251156,-0.09944292,-0.28055242,0.23507604,0.31579974,0.07731558,0.34088212,-0.18346699,-0.06344673,0.22183639,0.6393077,0.1148799,0.30383512,0.17867978,0.02885241,0.28174636,0.120420255,0.1486556,-0.16612604,-0.33144346,-0.16419172,-0.12362231,0.09674503,0.17995127,0.17241511,0.3142343,-0.18047921,-0.3233419,0.086929955,0.060927756,-0.23717652,-1.2928379,0.24038602,0.14216073,0.6732126,0.505259,0.00023306791,-0.00013851661,0.42987177,-0.1029979,0.16419636,0.48812085,0.08590675,-0.22214708,0.49780816,-0.43275928,0.38633266,-0.11966273,0.116771095,-0.0010868311,0.21164212,0.43657273,0.8703791,0.0056385673,0.010832573,-0.17480828,-0.07094239,0.08543779,-0.38746852,0.26167247,-0.5651451,-0.37404233,0.64204717,0.45522755,0.34381527,-0.31240466,-0.09215762,0.083012804,-0.23279117,0.18156348,0.021118935,-0.182991,0.16707538,-0.5955191,-0.21547945,0.45896918,-0.06460869,-0.22341046,0.18550849,-0.15514478,0.19438662,-0.030551754,0.050088324,0.056905113,-0.76421064,-0.19464618,-0.46945065,-0.095107034,0.11788731,-0.41276306,0.032339778,0.123322874,0.08825998,-0.3202909,0.10477896,0.2785858,0.7971702,0.053045347,-0.14728275,-0.40232074,0.14924267,0.21580952,-0.34274548,-0.10736457,-0.1685271,0.13485731,-0.70725626,0.46914372,-0.008353091,-0.21243699,0.30365217,-0.124829054,-0.007325429,0.38189915,-0.27796453,-0.11987963,0.43340996,-0.038253717,-0.36135462,0.034237016,-0.16333863,0.179024,0.27078387,-0.058225825,0.05307942,-0.14532755,-0.29799163,0.33238596,0.2687718,0.30548027,0.4656257,-0.023780452,-0.5232252,0.13906902,0.020862559,0.48335078,0.07151105,-0.051569257,-0.12202121,-0.34764507,-0.10127092,0.500048,-0.20072031,0.17128512,-0.15925834,-0.3541446,0.9042021,0.35655075,1.1727293,-0.039264705,-0.2702848,-0.18249358,0.56675726,-0.05921708,-0.046787288,-0.43034336,1.0155964,0.5423833,-0.07891774,-0.15874498,-0.35817772,-0.15752769,0.26933244,-0.1483579,-0.2626681,-0.14262964,-0.81878144,-0.29499292,0.21040668,0.3433226,-0.124385715,0.015155987,0.12608151,0.14993915,-0.097806096,0.52467704,-0.5333057,0.1595615,0.113066725,0.23383668,0.18205172,0.35425928,-0.34556696,0.19288714,-0.76317,0.19080004,-0.2965555,-0.068418495,-0.011315272,-0.31795618,0.08151014,0.034523975,0.27131242,-0.48046714,-0.24347201,-0.3306709,0.6152514,0.14487371,0.21941511,0.9040371,-0.22600159,-0.08410346,0.20685238,0.524844,1.4000537,-0.0939385,0.09705739,0.14954899,-0.35403207,-0.6074397,0.20773959,-0.25983414,-0.13779898,-0.14420986,-0.4449727,-0.34585002,0.1868438,0.1457911,-0.2608922,0.13809913,-0.57601917,-0.045120366,0.4792349,-0.15477268,-0.29188222,-0.34527633,0.29484156,0.66283923,-0.1692728,-0.35063598,-0.10445829,0.32829788,-0.4487503,-0.6973867,0.009552956,-0.5153318,0.29042098,0.068124875,-0.3952119,-0.07499489,0.14392985,-0.5092033,0.093233556,0.3117754,-0.36629534,-0.004530047,-0.053705342,-0.25375915,0.89442325,0.11931695,-0.0795503,-0.6769599,-0.45786032,-0.8430938,-0.24205995,-0.07087767,0.47002384,-0.082481936,-0.5911727,-0.11788313,-0.2311233,-0.010125822,0.16199511,-0.39760125,0.40900597,0.3078214,0.72399545,-0.2776669,-0.968998,0.029889595,0.12096645,-0.27000457,-0.40475512,0.47641328,0.1476824,0.6200094,0.058665097,0.078724034,0.040307395,-0.58756936,0.29497945,-0.1760496,-0.18447924,-0.8364197,0.08228911,117 -609,0.3842117,-0.24764174,-0.5832698,-0.04206442,-0.28451654,-0.10184508,-0.19622692,0.4251644,0.32161948,-0.40362787,-0.20275617,-0.147199,-0.12937501,0.38420302,-0.32707447,-0.29966223,-0.100344196,0.17731713,-0.5254554,0.5162955,-0.43093312,0.21606673,0.067548834,0.36361414,0.045278806,0.13193348,0.22440775,0.038019996,-0.009672,-0.3366141,0.31662017,0.13681298,-0.77949846,0.17705995,-0.13656577,-0.40471885,-0.020595444,-0.42866796,-0.43493384,-0.8395244,0.36582372,-1.0433838,0.44928953,0.028933961,-0.30570972,0.31503648,0.16317202,0.21476981,-0.14619964,-0.12773885,0.20656984,-0.21229139,-0.21112704,-0.19531728,0.10215163,-0.3670139,-0.6775347,-0.07265758,-0.3614333,-0.017007185,-0.37233162,0.1979707,-0.4153444,0.24077429,-0.27859533,0.44146648,-0.48958272,0.0046018776,0.28191125,-0.035050213,0.40295961,-0.61951965,-0.16496271,-0.117897466,0.06953049,-0.042083867,-0.14522918,0.42392892,0.1885409,0.3414545,-0.15352513,-0.25392175,-0.21094224,-0.048648365,0.20967294,0.28345028,-0.29812807,-0.25488868,-0.043508813,-0.10682518,0.05796252,0.07878478,0.14426623,-0.3024534,-0.042869393,0.003058727,-0.19809628,0.36063963,0.5703458,-0.1525028,-0.14668903,0.17672104,0.5419748,0.09890541,-0.07924134,-0.03407979,0.008507426,-0.49923646,-0.22786988,-0.08562936,-0.30082706,0.52277035,-0.20422469,0.18251696,0.5312593,-0.22347912,-0.14575396,0.27269512,0.19469541,-0.014218326,-0.2773214,-0.39989856,0.54269814,-0.64912045,0.07896805,-0.18997282,0.77713263,-0.036124554,-0.71286285,0.30288833,-0.6248985,0.17341062,-0.1294752,0.58434176,0.5496851,0.5897685,0.449665,0.8424699,-0.51103985,-0.04828411,-0.11461169,-0.4542648,0.37312406,-0.3917033,0.05016205,-0.43306705,-0.17320156,0.11200837,-0.102960974,0.12465717,0.20382339,-0.45247146,-0.02931112,0.2565305,0.6368916,-0.19042224,-0.02052563,0.66218626,1.297503,1.0195038,0.19828393,1.2066985,0.138659,-0.19386783,0.10629952,0.12992142,-1.0243949,0.33704993,0.34412268,-0.36184266,0.20733073,0.1397007,-0.068995744,0.4436757,-0.62392545,-0.12727003,-0.08931945,0.39526463,-0.0104355905,-0.3231454,-0.44043672,-0.37220222,0.14392474,0.018633243,-0.043168988,0.35520107,-0.12741835,0.24984208,0.13128296,1.0975397,-0.082392916,0.16611224,0.19467632,0.42080244,0.12439367,-0.25383994,-0.10010914,0.15897773,0.29553795,0.35461146,-0.5208348,0.22516452,-0.0374108,-0.66428924,-0.10651477,-0.29622144,-0.01663081,-0.12289103,-0.41490665,-0.3022355,-0.24171278,-0.34367877,0.49196962,-2.5654855,-0.01320219,-0.0688739,0.25570694,-0.11566857,-0.1745422,0.07756038,-0.5305285,0.38662168,0.42159325,0.4209751,-0.61368644,0.3579108,0.48656172,-0.6823339,-0.033667464,-0.56825554,-0.15323025,-0.06922262,0.29267374,0.21807736,-0.13212684,0.07933308,0.19616824,0.3096419,-0.07903164,0.15884754,0.47298017,0.26119688,-0.232561,0.42426568,-0.01031893,0.40423578,-0.46763214,-0.30523118,0.38984266,-0.49465582,0.24694099,-0.058735006,0.13833639,0.47836912,-0.39494735,-0.9225661,-0.5897691,-0.1753165,1.3975686,-0.1494975,-0.7214354,0.28814787,-0.30758104,-0.31721815,-0.087732226,0.42437145,-0.3691862,0.04571951,-0.96776795,-0.048132166,-0.23151566,0.3819775,-0.048195902,-0.1357837,-0.49957234,0.8112695,0.041008234,0.5847412,0.46164915,0.0128786275,-0.5826881,-0.44894952,0.115930095,0.7536414,0.51637495,0.17087118,-0.3309277,-0.08210378,-0.2432732,-0.0936881,0.17525291,0.57870525,0.73277706,-0.12822019,0.16886544,0.19375859,-0.021587197,-0.009187469,-0.10029183,-0.2894545,-0.027102627,0.12401588,0.7017035,0.89359814,-0.15788487,0.14544731,-0.03484417,0.38890436,-0.08377763,-0.531145,0.46919885,1.0055003,0.051148362,-0.19152866,0.700425,0.7369341,-0.26279658,0.69947076,-0.5483132,-0.47001076,0.31213725,0.0026903886,-0.512936,0.05316511,-0.4353887,0.15308444,-0.8174566,0.39848498,-0.47049066,-0.49724156,-0.65160406,-0.106226526,-3.1266768,0.19362535,-0.29077858,-0.103229746,-0.23380706,-0.23532502,0.40523544,-0.71673036,-0.74327,0.13950028,0.18594088,0.7814256,-0.15324384,-0.07372702,-0.087039076,-0.26145142,-0.27481568,0.096024565,0.21280839,0.1889878,-0.0020250494,-0.5374005,-0.17457059,-0.24409741,-0.37366816,-0.12202956,-0.45965287,-0.52983516,-0.20536476,-0.44722986,-0.55274147,0.5667298,-0.29180962,0.020321773,-0.21326384,-0.074692614,-0.08120603,0.38303372,-0.053498168,0.21527955,0.00065095606,-0.111583814,-0.10599307,-0.1403206,0.3001312,-0.012801757,0.4156261,0.56632936,-0.33165994,0.0709323,0.6284183,0.71278393,-0.19978616,1.0414844,0.41910547,-0.016055794,0.3304229,-0.08636995,-0.29577854,-0.58271617,-0.18265009,0.036185745,-0.3900585,-0.22373225,0.07261454,-0.3098523,-0.71945965,0.7327262,0.05479703,0.28432143,-0.09804546,0.09816074,0.27166602,-0.179068,-0.11242007,-0.23180412,-0.1810321,-0.52049196,-0.330915,-0.7025894,-0.4737403,-0.29945937,1.0500386,-0.084338956,0.11283513,0.31056023,0.018096667,0.10845919,0.13978024,-0.15810019,0.18222322,0.4861777,0.16559869,-0.7594735,0.5132022,-0.17004737,-0.010881617,-0.5421709,0.2650086,0.46187752,-0.55541027,0.5432997,0.57743263,0.093902774,-0.16102281,-0.6876043,-0.26115572,-0.012967467,-0.16971198,0.55294716,0.5449651,-1.0237192,0.4782213,0.44532573,-0.450609,-0.7389823,0.59733665,-0.061109446,-0.29534078,-0.08374173,0.35657948,-0.18308479,0.24475762,-0.012829845,0.28081167,-0.47130764,0.24555874,0.20501874,0.013198705,0.29902762,-0.16282254,0.026634024,-0.65560806,0.16583674,-0.38890982,-0.1772621,0.11608117,-0.06636792,-0.28689325,0.34728524,0.14176792,0.38961893,-0.21891458,0.094568625,-0.20320262,-0.45003036,0.6138242,0.5595067,0.5023992,-0.49506742,0.7584987,0.05458596,-0.16785724,-0.3067788,0.011646696,0.49345765,0.06825897,0.3946306,0.066998005,0.0047849347,0.2558213,0.8060189,0.14163636,0.40278104,-0.020720344,0.0995317,0.22724582,0.06341727,0.35213912,-0.03252234,-0.66151005,-0.0059318137,-0.40651608,0.13744459,0.5296309,0.006012027,0.31147483,-0.09350153,-0.24682859,0.040738784,0.18431994,-0.06566356,-1.5905101,0.55684406,0.17404722,0.70815146,0.6404122,-0.019539742,0.12769435,0.7271407,-0.22760893,0.07712366,0.31479424,0.15106963,-0.45894268,0.6876371,-0.8412251,0.3580001,-0.008843254,0.031045051,0.016325014,0.05630787,0.3107579,0.6775626,-0.14611651,0.15334114,0.07761599,-0.4017483,0.16518927,-0.36398113,0.17458858,-0.4222867,-0.2866565,0.74778116,0.53655136,0.47788766,-0.26891977,0.0038879376,0.10567662,-0.16118439,0.3075258,-0.074764624,0.15285574,-0.19839925,-0.4932259,0.018476693,0.5426554,0.15522799,0.13273601,-0.14634533,-0.17180388,0.1543695,-0.12769875,-0.1597053,-0.011094368,-0.7604272,0.0840933,-0.24840091,-0.30549768,0.47412422,-0.31238973,0.1268947,0.3103039,0.2193583,-0.35729313,0.056321386,0.08449349,0.56368893,-0.016643899,-0.21749964,0.027631663,0.15934187,0.11438199,-0.1457835,-0.037698105,-0.33979747,0.10454814,-0.31920454,0.58586156,-0.19339529,-0.1962951,0.16661286,-0.13693292,0.0771287,0.4925108,-0.2565201,-0.26386225,0.098937236,0.106801495,-0.14237574,-0.4220479,-0.2792618,0.27438605,0.06295584,0.013625434,-0.15903327,-0.11020566,-0.10248527,0.34540337,-0.07706496,0.26001012,0.37597436,-0.016294489,-0.5711756,0.009779875,0.032466397,0.60224164,-0.103972286,0.026546065,-0.4465502,-0.50742775,-0.30434144,0.33356318,0.01382911,0.36127615,0.06308749,-0.2678006,0.73613477,0.09415797,0.97877014,-0.072219305,-0.34446913,0.034821868,0.54634976,-0.14159311,-0.34778053,-0.28689244,0.8315261,0.6121378,-0.28479153,-0.15471843,-0.39368236,0.25588995,0.09636802,-0.23552571,-0.18581574,-0.04326214,-0.78603643,-0.09520381,0.1150929,0.5103639,-0.12758777,-0.09801528,0.048587058,0.34959757,0.08700958,0.16848017,-0.30561623,-0.05564733,0.3744262,0.20237257,-0.020108791,-0.0015540215,-0.41110367,0.31154564,-0.71139973,0.008527687,-0.3490434,0.043827433,-0.26241466,-0.3996153,0.1348537,0.032845728,0.27381316,-0.30811772,-0.16855215,-0.047832634,0.31878996,0.21879436,0.12035223,0.71981007,-0.23071766,0.10434567,0.07445772,0.40142792,0.8724771,-0.4083609,-0.028036186,0.1368522,-0.3952267,-0.66997683,0.33167464,-0.29353315,0.11398114,-0.07623585,-0.29104012,-0.6117964,0.13493393,0.33553714,-0.025547367,-0.01700959,-0.61036307,-0.09697389,0.17730658,-0.38689497,-0.27377462,-0.4523366,0.004097196,0.48928267,-0.1542101,-0.23152831,-0.0062107765,0.3059289,-0.15801406,-0.40699995,-0.054651625,-0.35529643,0.24164955,-0.073212266,-0.391571,-0.02853202,0.16859832,-0.38487074,0.3185673,0.22202343,-0.2374834,0.109576836,-0.41054896,0.04577529,0.71466887,-0.2256718,0.1057311,-0.4756904,-0.66296506,-0.8863891,-0.18505552,0.3122902,0.22999236,0.060562257,-0.5292726,-0.05030435,-0.13317515,-0.028979916,-0.20997405,-0.26884323,0.43823984,0.1741584,0.42163262,-0.0081179505,-0.73310196,0.03142763,0.15658656,0.06878113,-0.16974545,0.6411031,-0.039144956,0.69369423,0.061646078,0.16897954,0.14480491,-0.4972672,0.26303858,-0.050158437,-0.24505311,-0.53306305,0.024653563,120 -610,0.41225857,-0.27837053,-0.34705466,-0.19449617,-0.2970767,-0.18952714,-0.17316961,0.30254567,0.21515793,-0.18873248,-0.009177231,-0.14851856,0.15140149,0.3448396,-0.106555425,-0.79212993,-0.15477291,0.05332214,-0.67026067,0.4247882,-0.5866122,0.22424753,0.012048254,0.25479725,-0.16686252,0.43778637,0.3346039,-0.26326278,0.116150245,-0.069831654,-0.015598329,0.07377817,-0.71034855,0.105812445,0.019699948,-0.20772293,0.15643813,-0.43420476,-0.34574383,-0.6386966,0.13029267,-0.8590377,0.37328365,0.08028344,-0.06475302,-0.018651742,0.08441022,0.45240054,-0.48127845,-0.070394054,0.28406888,-0.10524222,-0.016545674,-0.28538933,0.23620436,-0.42786142,-0.4782357,-0.029753229,-0.48144963,-0.49007034,-0.18486436,0.18550372,-0.40055022,-0.033861756,-0.038287655,0.35294393,-0.4924392,0.017164053,0.3689323,-0.31263554,0.38676316,-0.34303474,0.09294352,-0.110987015,0.4628639,0.0030852281,-0.122728676,0.40174627,0.23993787,0.25079906,0.17330275,-0.18001446,-0.16784105,-0.26277044,0.213538,0.49425408,-0.16558054,-0.44706663,-0.039192066,-0.0018499998,-0.0130797075,0.2349313,-0.023838677,-0.3582617,-0.1251483,-0.06197475,-0.27207425,0.6764877,0.5277189,-0.09354043,-0.3585372,0.22278312,0.539215,0.21027909,-0.12941468,0.016899787,0.12410172,-0.5502929,-0.1669368,0.13394836,-0.079958156,0.49530804,-0.16317503,0.23731254,0.9985154,-0.25730136,-0.017659893,-0.107283816,-0.1038441,-0.10404166,-0.24528626,-0.08679123,0.14217648,-0.60212976,0.0288785,-0.27799073,0.9025841,0.2401442,-0.83322275,0.4045196,-0.5920142,0.14846548,-0.1564078,0.7101539,0.44138816,0.36413452,0.4682992,0.7005611,-0.2878287,0.22236243,0.05587565,-0.61153734,0.17752178,-0.30518195,0.09429664,-0.44842878,-0.014425957,-0.01895341,0.0810109,-0.013987775,-0.07887072,-0.48353502,0.07007759,0.27628422,0.8309258,-0.30166367,-0.014851144,0.5059157,1.064958,0.7998062,0.11459002,1.1508578,0.31743637,-0.2605917,0.30703944,-0.3517292,-0.82988954,0.13044834,0.33755583,0.14420699,0.17736222,-0.10622174,-0.004630545,0.21124345,-0.34381008,0.10644453,-0.04055021,0.61123997,0.20685361,-0.11571422,-0.3619613,-0.14091302,-0.07517566,-0.19534571,-0.008678427,0.1596583,-0.16727588,0.35859892,0.0063251075,1.0953422,0.015480489,0.17593226,0.0347245,0.6594406,0.18422523,-0.0010682368,0.015762476,0.5219769,0.34740612,0.14158393,-0.71511513,0.40644836,-0.21435307,-0.38149893,-0.06076955,-0.33976078,0.056155436,0.1647647,-0.35571113,-0.09854216,0.023741782,-0.053773265,0.5051596,-3.011098,-0.19947185,-0.0659115,0.23915316,-0.27288818,-0.013852327,0.11089912,-0.5504361,0.1094309,0.4004904,0.54111665,-0.76474583,0.45576066,0.48942274,-0.5089578,-0.2082088,-0.6692641,-0.084983855,-0.0067650583,0.48016196,0.17427762,0.16030455,-0.13653043,0.15563372,0.59408945,-0.09765454,0.043179784,0.31497702,0.37340218,0.22687949,0.584861,0.020527061,0.468526,-0.3203433,-0.081100695,0.24996042,-0.326093,0.20394418,-0.112314895,0.057808213,0.42532447,-0.25589317,-0.93904406,-0.6218599,-0.3857807,1.020501,-0.30162057,-0.36657274,0.33233613,-0.064397395,0.002548493,-0.049891744,0.4473888,-0.03403444,0.28001234,-0.60431576,0.14109947,-0.1116405,0.18825689,0.19015826,-0.15976633,-0.19397822,0.6116871,-0.003765152,0.37952647,0.36305445,0.14272928,-0.20559329,-0.3892377,0.101047434,0.5810077,0.2460625,0.077995524,-0.20737833,-0.25034302,0.069194406,-0.31956005,-0.058766775,0.49476668,0.8108912,-0.1246082,0.13088533,0.27925867,-0.1446391,0.046557374,-0.045109265,-0.24829942,0.104188174,0.0074559725,0.4263298,0.7727242,-0.33484203,0.4332452,-0.08194316,0.2819745,0.09117695,-0.3675755,0.66516656,0.3733477,-0.025922684,0.033767737,0.30439016,0.5146812,-0.50872236,0.4616118,-0.5626421,-0.06294441,0.68870795,-0.21647668,-0.4405648,0.21327117,-0.19531569,0.087435916,-0.9413528,0.5155292,-0.41307348,-0.46357375,-0.4142373,-0.1074539,-3.8734167,0.14746457,-0.2565549,-0.2466496,-0.32643348,0.027371278,0.19774781,-0.61053973,-0.33537385,0.38182923,0.2598554,0.4225585,-0.044939164,0.14636694,-0.32349476,0.12913087,-0.17784612,0.22909428,0.08253738,0.16314675,-0.012788282,-0.3660305,-0.1735351,0.030795945,-0.61948013,0.38634267,-0.49496314,-0.47727644,-0.052996937,-0.60800374,-0.40283343,0.67286235,-0.3165167,-0.068412684,-0.17503387,0.06314748,-0.35851547,0.3988303,0.08337129,0.13333584,0.0037632263,0.04814505,-0.096936226,-0.3788018,0.4621774,0.0017687212,0.48591316,0.053499162,0.024315871,-0.012178495,0.49240133,0.64009917,0.093463436,0.7916158,0.38761228,-0.13727333,0.34832293,-0.42776564,-0.19390693,-0.5610896,-0.47481245,-0.099363916,-0.26144636,-0.5652403,0.060091898,-0.29252416,-0.5810718,0.5907033,-0.023376342,0.20915325,0.06468005,0.0286067,0.29325858,-0.07098253,0.060065072,-0.06370106,-0.08933666,-0.6513035,-0.11057475,-0.6609307,-0.4821134,0.14553887,0.7151,-0.35931924,-0.04023277,-0.13426381,-0.3511234,-0.04027877,0.09224856,-0.015373798,0.3870406,0.2828609,-0.04232438,-0.6451961,0.51073927,-0.08714391,-0.20230936,-0.5459143,0.0868485,0.65579677,-0.70777154,0.58239335,0.23387194,-0.0098448545,0.045629032,-0.32166606,-0.42829543,-0.03818604,-0.08538188,0.3074105,-0.0868677,-0.7145889,0.4151305,0.30266222,-0.59415126,-0.62980944,0.2889189,-0.04365359,-0.27912572,0.04728397,0.20975359,0.052729037,-0.071320444,-0.31473443,0.1633065,-0.48878384,0.1787738,0.061034266,-0.09636153,0.5147053,0.14426252,-0.22584112,-0.7154194,-0.087401316,-0.47860485,-0.1737152,0.3025277,0.033942096,-0.0844051,0.09550386,0.04839974,0.27610877,-0.1388331,0.08443082,0.10208992,-0.41260844,0.1966564,0.45609748,0.3165299,-0.43808863,0.6264991,0.18832618,-0.06713519,0.120705016,0.012646294,0.35756618,0.10501958,0.27394354,-0.0627308,-0.11137439,0.3347863,0.8612357,0.18336354,0.6205846,0.0653573,0.004141051,0.65252876,0.033007916,0.18453479,0.2279853,-0.39330593,0.21569507,-0.031868055,0.21045627,0.48718113,0.33888465,0.44105908,0.18394811,-0.3249419,-0.019591633,0.41559216,-0.017456898,-1.170265,0.41443795,0.29578727,0.7619032,0.45362246,0.09460219,0.00034432916,0.9018412,-0.1796852,0.10212907,0.4197553,0.11868743,-0.5988674,0.80197215,-0.6970075,0.276546,-0.14633891,-0.09492059,0.15822867,0.1662382,0.25974604,0.5454267,-0.19510481,-0.059763238,-0.0915432,-0.17669551,0.005931506,-0.4281527,0.14766699,-0.28839356,-0.285742,0.59776175,0.44468397,0.2085177,-0.102148056,0.07080703,0.12833232,-0.041476708,0.25899985,-0.21509585,-0.12457183,0.1502051,-0.56430066,-0.22632188,0.72500336,-0.065458424,0.18983632,-0.29122537,-0.15369186,0.16949701,-0.34651655,-0.2659622,-0.026489882,-0.7560301,0.30350846,0.031138463,-0.41592106,0.57351,-0.2393187,0.22431153,0.20244329,0.016942222,-0.15678605,0.29546922,0.019960038,0.8307966,0.039109595,-0.30282182,-0.37854242,-0.03975747,0.26096198,-0.15417221,0.083172925,-0.4750578,-0.24391852,-0.33246204,0.5459295,-0.10458042,-0.31757826,0.025481177,-0.41088775,-0.04347368,0.5180968,-0.079725504,-0.18532106,-0.017020134,-0.23660366,-0.30548695,-0.0458126,-0.3279969,0.32414454,0.47518313,-0.13736579,-0.011496508,-0.30986023,-0.10410966,0.47037667,-0.035050727,0.43778455,-0.040704116,0.06653481,-0.19677626,-0.21297914,0.11963756,0.33297232,0.21532154,0.06609874,-0.27855113,-0.3390552,-0.17882712,0.0028079795,-0.09464935,0.2810232,0.041936047,-0.38793108,0.8182434,-0.032275096,1.199274,0.071452245,-0.24970391,0.2739026,0.4082588,0.06010407,0.12191535,-0.5174369,0.82245386,0.603482,-0.15814355,-0.0939025,-0.4760919,-0.21648256,0.27820644,-0.28989398,-0.030332688,0.044195764,-0.372317,-0.34818664,0.24553467,0.16662815,0.11474492,-0.010469217,-0.14086689,0.013535352,0.11272231,0.46183282,-0.6142846,-0.1766904,0.15174347,0.14248142,0.10291516,0.04148937,-0.35272402,0.43816233,-0.58350444,0.28084472,-0.56462026,0.08099452,-0.2936765,-0.3580289,0.08573185,0.008654787,0.422613,-0.27922532,-0.4868128,-0.0026108897,0.4086045,0.15366964,0.21273452,0.64386487,-0.2710074,0.059861716,0.07047982,0.5693257,0.91461444,-0.592533,-0.045078654,0.34262583,-0.3825789,-0.61008954,0.5133921,-0.1358691,-0.04407908,-0.1400566,-0.32590118,-0.52691895,0.19052267,0.2501687,0.009559278,0.01545697,-0.5495003,-0.39024782,0.34714493,-0.46008742,-0.34209758,-0.31316394,0.4353593,0.8578276,-0.41331732,-0.32003805,0.112169266,0.1562263,-0.20043986,-0.35860878,-0.2156817,-0.14282714,0.34604618,0.09765555,-0.25479355,-0.1510796,0.2898754,-0.3526339,0.1529852,0.07979822,-0.38930696,0.10946079,-0.013657167,-0.045938436,0.8335796,-0.29122713,-0.092869535,-0.7715522,-0.49067277,-0.8792231,-0.5381974,0.46721298,0.17661133,-0.07073469,-0.27624032,0.043702237,0.11084142,-0.18533272,-0.045641534,-0.6768944,0.3794369,2.474739e-06,0.46238235,-0.17364605,-0.9668646,0.03707216,0.28403386,-0.033855792,-0.8093797,0.52079004,-0.23147961,0.6831811,0.019379683,-0.07326882,0.010668727,-0.14399567,0.010970556,-0.43456408,-0.36855173,-0.6842021,0.22477216,126 -611,0.31596702,-0.21122333,-0.61276525,-0.24920958,-0.2910409,-0.1617813,-0.3542586,0.050331075,0.14283966,-0.16059014,-0.25213826,0.009813047,0.18350904,0.19493431,-0.1905869,-0.78452843,0.06796636,0.21709484,-0.7514541,0.44062054,-0.6447211,0.32276285,0.06642161,0.4084789,0.009093422,0.3390431,0.2819939,-0.16219245,0.09495059,-0.22036019,-0.14964063,0.2564756,-0.68094534,0.08108707,-0.23437455,-0.47373247,0.084315106,-0.35154215,-0.15665492,-0.8661989,0.19894339,-0.89121926,0.46866515,-0.021026643,-0.30162942,0.030003143,0.3218538,0.3188049,-0.37259153,-0.024389086,0.3118583,-0.2340326,-0.20774451,-0.32038435,0.12545109,-0.41698387,-0.51738614,0.039878268,-0.7170665,-0.3110654,-0.32778406,0.23078777,-0.34814185,-0.005978127,-0.12938511,0.3513489,-0.38874117,-0.07643996,0.09592569,-0.21202469,0.41536078,-0.5497904,-0.066566855,-0.055381224,0.63855517,-0.11037746,-0.21268974,0.36320767,0.25524372,0.3719568,0.19172782,-0.3460253,-0.20928138,-0.06418804,-0.06350608,0.5271194,-0.23454784,-0.39378107,-0.20612341,-0.07871075,0.48639297,0.36501437,-0.03581414,-0.12821145,0.002603939,0.0023961435,-0.219496,0.61995596,0.6289784,-0.36410114,-0.3254236,0.31835446,0.4244946,0.23560216,-0.31310213,-0.012157014,-0.0008245672,-0.6171573,-0.20527697,0.075793914,-0.0005772206,0.45295545,-0.21086492,0.16564892,0.8568389,-0.076255694,-0.019132825,0.19720048,-0.06686037,-0.0699165,-0.11932124,-0.24577919,0.24465667,-0.6593682,0.004569645,-0.36132225,0.8404451,0.05811097,-0.80956745,0.39759058,-0.5246708,0.15728475,-0.1075809,0.7222552,0.7159132,0.5303609,0.4302435,0.76575875,-0.35527393,0.1319649,0.12586607,-0.5262944,0.116590485,-0.08276485,0.12805687,-0.38631418,0.029147955,-0.043130457,0.29754236,0.12947255,0.45363337,-0.5035834,-0.16882035,0.23533733,0.6483875,-0.35193774,0.08219433,0.68471134,1.0399479,0.9548289,0.15720686,1.0827656,0.19871777,-0.17806824,0.08277336,-0.15038776,-0.8074808,0.18941452,0.23905614,0.12484495,0.13362741,-0.087290436,-0.0058915615,0.4149898,-0.4539585,-0.06867524,-0.041681293,0.3210153,-0.0034846389,-0.028396698,-0.446105,-0.25397962,0.14768948,0.124975316,0.2198549,0.23169869,-0.22583254,0.22718547,-0.046435602,0.91786,-0.09724338,-0.034836724,-0.010754689,0.6234914,0.37845197,-0.024185197,-0.098048195,0.29695243,0.47419584,-0.021289736,-0.74747425,0.12960257,-0.37037772,-0.28220874,-0.15797046,-0.37111166,-0.13644432,0.21419133,-0.37313664,-0.2876238,-0.026428662,-0.305593,0.3596045,-2.7851202,-0.38215524,-0.10510818,0.3252102,-0.14222823,-0.050510764,-0.22833346,-0.6300277,0.41160136,0.22720084,0.5291846,-0.5620775,0.5039594,0.5571445,-0.59640145,-0.2885998,-0.7760627,-0.072854504,-0.028615216,0.4141293,0.19979906,-0.1957972,-0.19207825,0.16247874,0.7686001,0.040462025,0.11734419,0.40780643,0.4503085,0.0403871,0.5445125,0.1479691,0.6435216,-0.24276592,-0.16593656,0.17036846,-0.39747217,0.1083002,-0.28939885,0.041592613,0.5527599,-0.55821884,-1.0285087,-0.5768857,-0.044701695,1.0910401,-0.3113065,-0.5338803,0.24434802,-0.21530993,0.03263993,0.2225634,0.63597953,-0.1667069,0.085342556,-0.74309355,0.13797486,-0.105961286,0.18589288,0.077192776,-0.07894259,-0.4390397,0.6989223,-0.0331913,0.6048547,0.18541762,0.24087994,-0.30864686,-0.40506536,0.24106044,0.7975312,0.23013641,-0.020273749,-0.22881944,-0.23664236,-0.1655797,-0.27655917,-0.02966945,0.6343281,0.82974917,-0.17929229,0.22398582,0.36068016,-0.082620494,0.15511702,-0.10975189,-0.26867735,-0.097168475,0.0015458739,0.50327665,0.8193178,-0.06527351,0.37993386,-0.12381573,0.43615833,-0.06633058,-0.53019875,0.7658843,0.570799,-0.09239908,0.0013637107,0.42261982,0.5380733,-0.35919374,0.5015122,-0.5623554,-0.44176924,0.69344234,-0.24515128,-0.3964372,0.17220895,-0.4251641,0.16230543,-0.7584076,0.486893,-0.4253699,-0.40189523,-0.34911746,-0.068998456,-3.5504656,0.1919927,-0.26906174,0.04562068,-0.57548845,-0.21980627,0.3381906,-0.57772744,-0.44982308,0.11601158,0.28401965,0.74540323,-0.07894777,0.1775682,-0.3212903,-0.27300897,-0.17549405,0.19223356,0.19218561,0.21416532,-0.03574904,-0.25363874,0.07538294,-0.05076358,-0.40392563,0.09479081,-0.435877,-0.4225254,0.014007256,-0.6249702,-0.39100978,0.62599415,-0.21177253,0.01262355,-0.28608334,0.1192408,-0.19299045,0.24916242,0.093973905,0.17738877,0.027880134,0.060600404,0.23865014,-0.27907833,0.48673397,-0.21677369,0.22344682,0.011417123,0.07555055,0.0590196,0.4905663,0.48009887,-0.17813359,1.0970056,0.41335732,0.008011887,0.25944245,-0.2905347,-0.51526177,-0.6825959,-0.23877364,-0.120597,-0.37459862,-0.26527622,0.11389795,-0.37661263,-0.75515217,0.6587696,0.0132906055,0.27957043,-0.07486545,0.33847746,0.29862085,-0.054492574,-0.05077571,-0.07062915,-0.10784631,-0.46769422,0.06558137,-0.8696454,-0.42341107,-0.17476276,0.8082345,-0.34735292,0.045891322,0.054196715,-0.06885112,0.056022875,0.120361015,0.13984126,0.33431002,0.51476145,0.028527351,-0.6563587,0.32262245,-0.1385996,-0.17325284,-0.6011147,0.119801484,0.66820043,-0.8101768,0.5318336,0.58839995,0.09458309,0.029644966,-0.6130345,-0.21522978,0.054361437,-0.118559726,0.48986477,0.10688266,-0.9389735,0.64870554,0.34657514,-0.39676946,-0.7267775,0.49221113,-0.030827083,-0.3818386,-0.22439297,0.36386615,0.08086598,-0.08716805,-0.1507233,0.16546609,-0.34931135,0.38197005,-0.026714463,-0.11931189,0.5812774,-0.115719035,-0.3124916,-0.64351624,-0.12763745,-0.6608134,-0.2049383,0.20223525,-0.004739275,-0.05456595,0.22073552,-0.050832376,0.47199658,-0.36129168,0.06212053,-0.04519943,-0.27401397,0.2251588,0.520962,0.39207986,-0.36237723,0.61500925,0.16686863,-0.19296248,0.03576469,0.008470214,0.46385273,-0.093329854,0.46093148,-0.24919507,-0.18991573,0.24671723,0.78748643,0.07544822,0.54769665,0.032647066,0.031990804,0.43852937,0.0690111,0.11888848,0.03624455,-0.36750966,-0.036711916,-0.14474727,0.19889353,0.5308243,0.28775135,0.25554717,0.077301234,-0.11924023,-0.11336066,0.22016475,-0.13949284,-1.0562937,0.5881194,0.28846714,0.66107017,0.44901836,0.14410819,-0.15622042,0.68240535,-0.3593041,0.020048449,0.3449798,0.039835528,-0.43358532,0.74580663,-0.58737546,0.4579905,-0.19149525,-0.032670494,0.15569662,0.06096563,0.2670224,0.81066746,-0.2563378,0.14886424,-0.0070291874,-0.18454339,0.16714375,-0.39387316,-0.007108849,-0.34951958,-0.32851523,0.80540466,0.33567497,0.26510113,-0.18609788,-0.046608586,0.065719925,-0.19173244,0.09607057,0.037216417,-0.039006885,0.19385034,-0.53966963,-0.09612624,0.54425514,0.2112251,0.09022688,-0.110659614,-0.163937,0.23323034,-0.30133548,0.07307605,-0.13412644,-0.44278902,0.091553204,-0.2579283,-0.3884506,0.64831704,-0.22327559,0.16004251,0.2814871,-0.029942205,-0.048459765,0.2259914,0.049679417,0.5245191,0.081163004,-0.2495024,-0.33542302,-0.023265362,0.20380116,-0.2918862,-0.03642363,-0.48663026,0.09055372,-0.4000233,0.5138516,-0.23934211,-0.34818664,0.105940655,-0.2351331,-0.1426523,0.5061749,-0.13412179,0.06695427,0.16513199,-0.07433059,-0.21808478,-0.21145108,-0.25312713,0.105954185,0.271258,0.052087452,-0.14425436,-0.3620262,-0.12534514,0.58434343,-0.045665964,0.42372915,0.22552162,0.26038167,-0.15569553,0.051791906,0.18222496,0.5365525,0.12716031,0.020819804,-0.36973003,-0.40625098,-0.30746713,0.12544647,-0.03779689,0.14326999,0.10247163,-0.0967358,0.8278213,0.015932592,1.0047925,0.0625668,-0.3436797,0.18094108,0.64256996,-0.14347427,0.024416158,-0.3827028,0.95345014,0.49707502,-0.29095668,-0.0674161,-0.45258617,-0.17243297,0.21333085,-0.31543767,-0.072552815,-0.1792466,-0.56597704,-0.4943133,0.22769144,0.34239313,0.07187575,-0.12744468,-0.008505939,0.038707193,0.14726909,0.41762483,-0.7969887,-0.33326226,0.17078008,0.23558196,-0.15263921,0.23510493,-0.39284128,0.36855656,-0.5548413,0.11401269,-0.49271816,0.13664255,-0.08137187,-0.42185974,0.15793766,0.056492236,0.31443718,-0.23314771,-0.36472857,-0.05158722,0.3261239,0.14417128,0.31135127,0.58561826,-0.2767846,-0.06673168,0.1191963,0.68233097,1.2208114,-0.25899476,-0.12136595,0.35519406,-0.42465127,-0.57544893,0.171187,-0.44713897,-0.078475,-0.115645535,-0.38337782,-0.3653031,0.14526388,0.08167207,0.07566155,0.01543664,-0.69282746,-0.24145493,0.29713288,-0.19253132,-0.1963087,-0.2182157,0.43961924,0.6760766,-0.32075417,-0.06025451,0.017577795,0.24059494,-0.22293058,-0.6115927,0.14113937,-0.35600752,0.42634946,0.07086308,-0.27632853,-0.057300866,0.17200352,-0.5060845,0.13132882,0.36154556,-0.26602665,0.07307875,-0.28764546,0.08540384,0.868599,-0.30737722,0.030219037,-0.45448667,-0.45206702,-0.85167783,-0.19374143,0.2524835,0.24552324,0.0071445704,-0.54548603,0.004666998,-0.060543753,-0.20660162,0.08632029,-0.5090965,0.3872584,-0.0384905,0.5410805,-0.3468284,-0.9191831,0.14300083,0.13816983,-0.30798632,-0.66974205,0.6304426,-0.13778459,0.8737768,0.15714842,-0.14185329,0.008717695,-0.39490145,0.17892735,-0.48239848,-0.09665966,-0.815232,-0.007852105,128 -612,0.32711378,-0.17392467,-0.39665398,-0.06337657,-0.022967217,-0.0823921,-0.080522075,0.6818936,0.12855601,-0.365204,-0.22322091,-0.10753683,-0.024967315,0.2913354,-0.1171991,-0.46804827,-0.12324501,0.18740933,-0.25733572,0.53616637,-0.3975957,0.046307508,-0.10447914,0.49635184,0.19522582,0.20617382,0.14689437,-0.052748088,-0.13743801,-0.024471892,-0.15065314,0.47575113,-0.4225221,0.06534168,-0.0887162,-0.3296704,-0.07992356,-0.37220642,-0.26867795,-0.72419035,0.3156622,-0.64850587,0.38129526,0.27578962,-0.39588422,0.3680659,-0.06664635,0.10681175,-0.43064055,-0.13152571,0.17164883,-0.0075922334,0.0057283547,-0.1676585,0.013293505,-0.24461347,-0.57550454,0.04298938,-0.3254481,0.052426897,-0.20144342,0.18836273,-0.3148196,-0.07770044,-0.057382066,0.54012454,-0.4797775,-0.07273115,0.1490758,-0.12007475,0.36754557,-0.6671927,-0.2020606,-0.18220828,0.11719482,-0.05657425,-0.18152533,0.21705952,0.17302679,0.46861583,-0.09357634,-0.119748004,-0.44863245,0.13687237,0.04783862,0.3703182,-0.2819055,-0.59798443,-0.053046223,-0.07162498,0.041790012,0.095981486,0.08773945,-0.16419592,-0.10030774,0.034139577,-0.15390897,0.118758515,0.4287155,-0.28626382,-0.25274703,0.34262922,0.4701618,0.15674815,-0.05517197,-0.21467453,-0.0056572417,-0.5581345,-0.11908933,-0.0016923822,-0.34862936,0.5612508,-0.1199915,0.22604987,0.5763457,-0.0430927,0.046143215,-0.018583683,0.044178393,-0.076463185,-0.44138405,-0.31269184,0.28861573,-0.19945306,0.28131902,-0.11867278,0.6905776,0.09513993,-0.78517884,0.40244707,-0.4267155,0.10483106,-0.07535673,0.5841373,0.6451636,0.35916188,0.4885036,0.72923726,-0.4628978,-0.06888067,-0.09997852,-0.22682701,0.14078936,-0.0043121898,-0.060921833,-0.5226306,-0.07708346,0.11383263,-0.092786826,0.1392375,0.35421297,-0.55604154,0.04734983,0.38715807,0.6654495,-0.28244165,-0.052022345,0.51152796,1.0679834,0.97134775,-0.009440729,0.9185098,0.17309141,-0.19322388,0.469155,-0.39136404,-0.6969987,0.2528478,0.44831997,-0.031648435,0.19026603,0.151411,-0.07622289,0.5234739,-0.3948632,0.092978664,-0.14173065,0.12474617,0.06980796,-0.024848457,-0.5070898,-0.35761255,-0.15152022,0.013026506,-0.045206625,0.18444633,-0.28984225,0.27606913,-0.04908891,1.7215947,-0.0866576,0.16367036,0.109804735,0.47568128,0.082873195,-0.12733462,-0.12354253,0.51988226,0.28869188,0.09626507,-0.6105935,0.21386287,-0.1931474,-0.56201065,-0.0888389,-0.23672508,0.0076416456,0.17001368,-0.43825692,-0.11041013,-0.09455324,-0.40319154,0.37160218,-2.8885167,-0.105035305,-0.009443915,0.2976751,-0.31752104,-0.38964087,-0.13862178,-0.41344118,0.4264929,0.4741632,0.43628687,-0.6211101,0.19964185,0.26819414,-0.45020336,-0.13195711,-0.5734721,-0.14381695,-0.072847895,0.25215024,-0.033102386,-0.034292176,-0.00662446,0.11308781,0.55416495,0.04748633,0.119856946,0.25109607,0.17140988,0.03700115,0.2579581,-0.03215107,0.42488807,-0.31239054,-0.22915928,0.23792316,-0.39451092,0.2649512,-0.1428929,0.20012997,0.41862455,-0.43168223,-0.9276559,-0.5777048,-0.3029919,1.2925632,-0.24907805,-0.33302608,0.32421336,-0.26823604,-0.09285518,-0.12350584,0.5283628,-0.14416388,-0.100618415,-0.8735736,0.120594434,-0.11435437,0.30866382,0.068708666,-0.09668606,-0.47633055,0.64418834,0.014390189,0.49777997,0.4337705,0.06676899,-0.22403596,-0.4582496,-0.021025509,0.7261642,0.30612433,0.10992824,-0.12655042,-0.15198226,-0.26545697,0.15125081,0.119184256,0.3563638,0.6454235,-0.048080884,0.13611132,0.21166667,0.080347404,-0.006690656,-0.09486871,-0.2394212,-0.11232763,0.18109272,0.52978766,0.6763381,-0.2971871,0.2329413,-0.058173116,0.3481441,-0.14406385,-0.32271004,0.4652535,0.9427127,-0.122056976,-0.13064864,0.7638845,0.5653552,-0.3512886,0.44971532,-0.6252696,-0.29260266,0.41137618,-0.17201084,-0.37103528,0.06696061,-0.31908238,0.11682867,-0.82367295,0.13700186,-0.27199286,-0.2893826,-0.7139464,-0.10751653,-3.500875,0.1615693,-0.3161344,-0.31965506,-0.04601949,-0.08639022,0.31018275,-0.760947,-0.539544,0.18414702,0.189462,0.5385622,0.017594922,-0.026682194,-0.238808,-0.26191598,-0.2018206,0.16325155,0.12058561,0.28345415,0.14714782,-0.526064,0.009197803,-0.14181183,-0.36088568,0.010954728,-0.57023185,-0.36157873,-0.2213454,-0.64878887,-0.26681128,0.5329321,-0.35247165,0.07199521,-0.1981047,-0.055389825,-0.077637635,0.34727967,0.046915695,0.18612409,-0.08857724,-0.035477284,-0.023438595,-0.22340709,0.17151679,0.08530162,0.22878239,0.3968301,-0.12444555,0.17287718,0.6054812,0.65829146,-0.19432321,0.8212275,0.68323106,-0.079952136,0.20975596,-0.25228184,-0.09611817,-0.55865884,-0.39949563,-0.035355933,-0.3752643,-0.44209436,0.065635614,-0.38365173,-0.88527447,0.5960569,-0.20135593,0.20563027,0.124749266,0.07854418,0.53947634,-0.20514724,0.07020247,-0.04963339,-0.05261163,-0.51728827,-0.29311386,-0.5878041,-0.40318587,0.10281877,0.9412355,-0.19855666,0.09581336,0.110326365,-0.18812226,-0.17180267,0.053737197,-0.07281344,0.2427462,0.32680342,0.047747757,-0.56172156,0.4030883,0.13290198,-0.110425666,-0.45870593,0.20859337,0.46843666,-0.6679193,0.64809203,0.35070947,0.023159733,-0.13082808,-0.69354725,-0.37295106,-0.14573184,-0.14437045,0.46709853,0.2824093,-0.72377676,0.36124384,0.30957252,-0.28510985,-0.7984124,0.35374004,-0.17841588,-0.40686366,-0.102171786,0.3053634,-0.11890567,0.09564531,-0.15247813,0.21456553,-0.3361136,0.19296342,0.2870629,-0.075335704,0.46857882,-0.24024035,0.13816951,-0.7334765,0.034623478,-0.55306995,-0.260894,0.3232447,0.17572409,-0.03596107,0.18379593,0.075634114,0.3982592,-0.16411725,0.07368925,0.08842276,-0.1954486,0.31056023,0.5091189,0.53896517,-0.42545033,0.5731585,0.004047848,-0.1180381,-0.36720437,-0.0038494056,0.39678267,-0.021356689,0.42571294,-0.23746252,-0.28160614,0.3233959,0.6698674,0.18934529,0.4387441,-0.09603623,-0.013808585,0.3324168,0.0151894,0.1343593,0.0062383963,-0.5129615,0.06631636,-0.28676513,0.19596127,0.39322668,0.06973374,0.30039918,-0.0581211,-0.18224971,0.10523547,0.25702253,0.048436258,-0.89534307,0.45587948,0.05351333,0.6747144,0.69747853,0.0039367126,-0.06673125,0.71748596,-0.22383785,0.07360611,0.4302247,0.0046981666,-0.6240327,0.64214855,-0.72805655,0.3511198,-0.1294038,-0.003010049,0.007326268,-0.07376849,0.37446007,0.57103497,-0.11873775,0.008026387,0.0199627,-0.2109734,0.09310805,-0.33113104,0.1722864,-0.5582174,-0.29135057,0.5620356,0.62070876,0.34021097,-0.16494091,-0.05724609,0.14429247,-0.11730746,0.06509157,-0.025480257,0.10730422,0.05562854,-0.7433379,-0.1484508,0.5254828,-0.059540134,0.13786647,-0.08940327,-0.30891138,0.121587865,-0.21101853,-0.2648427,-0.044031627,-0.54170114,-0.00203714,-0.24379799,-0.3042584,0.5924846,-0.19418576,0.32994652,0.08404394,0.11652303,-0.28300026,0.20132509,0.035178144,0.74891573,0.03394198,-0.007024641,-0.32919678,0.28301635,0.12595105,-0.13096736,-0.13623632,-0.34583002,-0.095166974,-0.48318952,0.43794447,0.101174966,-0.261975,0.0067620734,-0.08489083,-0.03472757,0.5917559,-0.026865479,-0.19538638,-0.21825865,-0.23817152,-0.3407645,-0.12085071,-0.1219573,0.35584894,0.08435486,0.12728709,-0.10344003,-0.077163056,-0.068558894,0.5342194,0.11704523,0.20183039,0.2635168,0.018756894,-0.3352378,-0.14003989,0.020036189,0.54487103,0.083696894,-0.1661224,-0.1971365,-0.4056118,-0.4176349,-0.046436694,-0.21316883,0.38031515,0.091827504,-0.14808382,0.7319473,0.15328604,1.1978368,-0.0055435346,-0.3656999,0.02196874,0.42476332,-0.012782679,-0.058924872,-0.38606152,0.9000364,0.507248,-0.09513725,-0.16103251,-0.26124072,-0.08268985,0.2137723,-0.123095356,-0.16433297,-0.07042035,-0.72369534,-0.24096102,0.20509489,0.28091604,0.21510966,-0.045379255,0.05011032,0.09531763,0.06486665,0.3192198,-0.23172766,-0.15482315,0.41006958,0.2624828,0.03408494,0.12946644,-0.32493263,0.46057084,-0.52688634,0.046030097,-0.37619516,0.07242933,-0.35234758,-0.39699873,0.2115995,0.103399,0.42080328,-0.20175608,-0.29717058,-0.18835041,0.561058,0.13293853,0.11462018,0.5464144,-0.21954629,0.049370255,-0.011374488,0.39410707,0.94314754,-0.35709718,-0.036582466,0.28946322,-0.21016544,-0.7218927,0.40456903,-0.21947476,0.030081011,-0.06562539,-0.27463955,-0.55581385,0.26691803,0.17673443,-0.14434741,0.09119542,-0.5432385,-0.16481683,0.18644656,-0.2599524,-0.178534,-0.25071508,0.17615707,0.609678,-0.35805324,-0.4652982,0.12020057,0.3028691,-0.18149455,-0.5181048,-0.002256595,-0.4389658,0.32676542,0.1487363,-0.38735977,-0.03370919,0.049832966,-0.4071562,0.05053871,0.12049459,-0.2756161,0.12069476,-0.44574034,0.0028620316,1.0356971,-0.039962392,0.1906566,-0.46058705,-0.39644077,-0.95413387,-0.28848872,0.7812197,0.046834502,0.05997541,-0.5682826,0.15589394,-0.13662194,-0.08791399,-0.22609879,-0.23382336,0.42924166,0.15906122,0.4206669,-0.06626218,-0.5470059,0.13700995,0.13373119,0.090536825,-0.49911243,0.39363,-0.018372642,1.0393176,0.0037102653,0.08701752,0.22180238,-0.41845042,-0.09372977,-0.27513325,-0.31525964,-0.57291895,0.03602106,132 -613,0.3567391,-0.22980584,-0.4052083,-0.039953332,-0.1536046,0.046286307,-0.2044421,0.34551537,0.06354611,-0.3991806,0.014044251,-0.22440861,-0.030229572,0.54824346,-0.074949786,-0.61933863,-0.0030810465,-0.039460234,-0.4430426,0.67005146,-0.39989802,0.18892878,0.029844813,0.33101338,0.24532554,0.3465428,0.29447865,-0.06583266,-0.07249462,-0.04177126,-0.1236097,0.13337313,-0.47113654,0.18707739,0.07560824,-0.27245232,0.071742296,-0.28305912,-0.65599054,-0.62646353,0.39282528,-0.8532454,0.4186386,0.12409384,-0.24705386,0.14414433,0.2246525,0.17054349,-0.36930114,-0.043662373,0.18112111,-0.11530789,0.019851528,-0.22066604,-0.27788928,-0.3966317,-0.4522977,-0.02217267,-0.5281534,-0.36421484,-0.25688818,0.12678808,-0.43014398,-0.12340816,-0.052942906,0.39585465,-0.47530985,-0.22121045,0.3386292,-0.1754558,0.3074667,-0.7817612,-0.15358719,-0.09185413,0.07342068,-0.09873327,-0.14406018,0.32685155,0.15137964,0.38987195,-0.053273696,-0.18043955,-0.16655289,-0.22651654,0.05133519,0.6110202,-0.20969719,-0.46243727,-0.19006109,0.15211558,-0.021427425,0.23171416,0.013519053,-0.5712029,-0.103279576,-0.011718319,-0.13948816,0.27452376,0.5071504,-0.33771574,-0.26549658,0.24262987,0.24502498,0.19879672,-0.082365036,-0.02891794,0.008766899,-0.5735905,-0.12167049,0.17955248,-0.07524682,0.526365,-0.07938449,0.35873845,0.60672605,-0.058899004,0.20067915,-0.14589965,0.07296836,-0.13285153,-0.2802742,0.0014970119,0.14518283,-0.40783244,0.17232282,-0.044206467,0.8053159,0.22400625,-0.5787318,0.43996194,-0.5512995,0.25180012,-0.0709448,0.5724564,0.76880866,0.11069688,0.2695448,0.831339,-0.32279727,0.06331287,-0.1080793,-0.27021214,-0.024392055,-0.17456001,0.12405172,-0.5195777,-0.04215962,0.058974497,-0.043368585,0.029848795,0.42025203,-0.47869757,-0.043823596,0.123364486,0.78148204,-0.27899683,0.15818764,0.5015092,0.9549396,0.8216039,0.07094231,1.1425067,0.3029011,-0.3059407,0.33250177,-0.16362582,-0.753335,0.22035098,0.5456777,0.50774646,0.23463066,0.051245574,-0.20853986,0.5176958,-0.40739948,0.13407217,-0.33525065,-0.0014078662,0.1904897,-0.025304519,-0.3380608,-0.26750606,-0.21155564,0.122286946,-0.061332934,0.20543417,-0.24116307,0.31910345,-0.16015036,1.7087505,-0.2027848,0.14534216,0.22402468,0.5404732,0.2078699,-0.078619294,-0.0154041145,0.26103222,0.38836145,0.12126394,-0.60880095,0.111926,-0.26058087,-0.561873,-0.101685755,-0.34015104,-0.06723661,0.056919638,-0.56297135,-0.13371183,0.0761445,-0.30065992,0.46165717,-2.7728717,-0.17373759,-0.2363678,0.19917308,-0.3561107,-0.16654713,-0.17021233,-0.24408728,0.5508355,0.4252019,0.5636827,-0.58271974,0.038325243,0.41191885,-0.38506463,-0.106804505,-0.55216116,-0.0020973498,-0.07479265,0.5093248,-0.0108555835,-0.21001849,0.1423642,0.16293629,0.5230093,-0.027283741,-0.09751853,0.2431008,0.29391903,0.024860315,0.36444414,-0.089449495,0.4280351,-0.38901263,-0.2237249,0.36110258,-0.1700049,0.36574772,-0.17129947,0.16212958,0.4140379,-0.4118838,-0.7713929,-0.5093054,-0.3553594,1.1198096,-0.29561198,-0.40584856,0.34061888,-0.32288954,0.022455981,-0.09869663,0.6301808,-0.13194765,0.11101927,-0.681404,0.21181114,-0.16350006,0.11602296,0.040472332,-0.12760809,-0.34359777,0.81518567,-0.0050535295,0.41786325,0.3911428,0.050543133,-0.19057395,-0.45889223,0.10374768,0.7098799,0.41469738,0.1443944,-0.023121087,-0.07841451,-0.03553971,-0.28479168,0.18245885,0.6250512,0.7061132,0.06042451,0.115456305,0.23968121,-0.015535951,-0.02424617,-0.089491114,-0.24712586,-0.1291321,0.24881946,0.68702656,0.59471583,-0.05257733,0.4734872,-0.11873531,0.21641278,-0.10422676,-0.4113577,0.50106966,0.84803635,-0.16942117,-0.25133803,0.48195928,0.55788255,-0.34416014,0.31229272,-0.6180262,-0.4540067,0.44074276,-0.24165143,-0.45447034,0.32774052,-0.44213355,0.07212884,-0.84783787,0.21691278,-0.2184822,-0.39679882,-0.52681804,-0.15546714,-3.839506,0.28707474,-0.5154159,-0.16516219,-0.11006513,-0.10730334,0.22300166,-0.59309804,-0.30430955,0.16311906,0.0135006625,0.45698655,-0.036947113,0.083103165,-0.1560075,-0.039624434,-0.042651158,0.14517926,-0.08275582,0.32794842,-0.13001493,-0.32056096,-0.058527414,-0.12672442,-0.42094892,0.057281893,-0.6394255,-0.43235442,-0.2589194,-0.59479004,-0.21299498,0.64885944,-0.2611479,0.019723821,-0.17585517,-0.02466413,-0.20078762,0.3654149,0.35402077,0.31543288,-0.032863524,0.0029941958,-0.18495996,-0.34645474,0.076879136,0.06070041,0.22868729,0.46890047,-0.10477312,0.2668122,0.41269335,0.4129036,-0.21338591,0.73792225,0.6010388,-0.13216224,0.28553322,-0.30154294,-0.086242676,-0.53487486,-0.49409977,0.053426113,-0.22897151,-0.57522446,-0.13389793,-0.23176393,-0.56936336,0.4546345,-0.049928103,0.22395235,0.102008544,0.15339369,0.5096563,-0.19371568,-0.13664685,0.10618806,-0.1449231,-0.5999064,-0.3347507,-0.5478293,-0.6059658,0.17084011,0.8642901,-0.106219955,-0.1785406,0.100925244,-0.3834595,-0.15388587,-0.014006507,0.12866262,0.15665418,0.15787853,-0.039078675,-0.72070724,0.5498397,-0.065405674,-0.17927636,-0.5081215,0.2091133,0.49313864,-0.62750995,0.59231627,0.20720783,0.23922573,-0.18044265,-0.41280362,-0.31312183,0.1282611,-0.22037734,0.24223955,0.10831761,-0.72413296,0.38023192,0.32726017,-0.2570554,-0.70415604,0.39443964,-0.013376921,-0.33643156,0.058676764,0.3110312,-0.006914533,0.011243839,-0.13334516,0.20480527,-0.336802,0.29351807,0.18805386,0.0378407,0.34570086,-0.08175098,-0.25461575,-0.37247482,0.19117199,-0.43187243,-0.2536082,0.38756686,-0.03144086,0.043361075,0.013804702,-0.11340471,0.38862073,-0.08511435,0.21094848,-0.04994472,-0.35987183,0.389598,0.46890014,0.41419488,-0.44200423,0.72426003,-0.07899253,0.07145668,0.06589531,0.2830807,0.46528238,0.23072416,0.36241537,-0.2896468,-0.13311695,0.19232222,1.0458367,0.1355159,0.4457782,0.10323693,0.02719882,0.23528817,0.06298025,-0.027095983,0.048171148,-0.42823368,-0.09949798,-0.078642674,0.30663252,0.4165541,0.039323475,0.3393035,-0.17540345,-0.40164405,0.16245078,0.22241369,0.15337868,-1.0145557,0.42646343,0.14086029,0.6078042,0.35654405,-0.08849311,-0.088909335,0.65027606,-0.10611414,0.08317422,0.15516615,-0.27939636,-0.64637035,0.64328945,-0.6682982,0.49453858,-0.09914069,-0.070354946,0.05751913,0.1823306,0.3433359,0.59207445,-0.13774422,-0.09059943,-0.022925872,-0.3889467,-0.086605825,-0.40766937,0.11356202,-0.40929112,-0.58038497,0.48387557,0.5561647,0.1521464,-0.12541333,-0.03163721,0.020626279,-0.07447633,0.26297078,-0.062382154,0.11385903,-0.079647645,-0.764576,-0.28899005,0.49289015,-0.09200808,0.20990938,0.004579294,0.029397447,0.22190131,-0.16047503,-0.045831807,-0.12434246,-0.6144486,0.2988861,-0.48258835,-0.6161513,0.4259028,-0.35889533,0.29234517,0.26063687,0.092246294,-0.34211084,0.5064293,0.019449335,1.0174841,-0.34200928,-0.24790327,-0.4283849,-0.052850842,0.19534792,-0.20442802,-0.1777977,-0.2965133,-0.00018555384,-0.6923316,0.51965934,-0.06346116,-0.2771465,0.19927678,-0.285173,-0.062664114,0.56992126,-0.06261596,-0.23727319,-0.17419471,-0.18166113,-0.3214168,-0.15767598,-0.18964349,0.27229136,0.25338835,0.16293192,-0.15365356,-0.17372265,-0.057804685,0.37640822,-0.09252152,0.2844795,0.29899856,0.3306452,-0.17355354,0.0018387208,0.41274312,0.5774821,0.24607784,0.09935909,-0.15493752,-0.39543745,-0.34110922,0.017421437,-0.14522551,0.4024573,0.23296975,-0.54446924,0.71814317,0.043501653,1.0398437,0.0052138614,-0.24593657,0.11434828,0.41126913,-0.009822651,-0.037796583,-0.15438938,0.8535632,0.73143685,0.06345984,-0.14365038,-0.22236195,-0.14955394,0.40035307,-0.2597903,-0.008055052,0.05157487,-0.5899073,-0.30616775,0.16354793,0.20322336,0.13970807,-0.11169502,-0.10694778,0.031135837,-0.012311252,0.1705339,-0.40325418,-0.06497299,0.28890374,0.19615339,-0.11318685,0.16235454,-0.44036546,0.46017477,-0.6188525,0.1695017,-0.42083994,0.13932434,-0.107927956,-0.13088922,0.2305584,-0.08139488,0.54851204,-0.26815888,-0.17543295,-0.13223729,0.574548,0.16628188,0.15796775,0.61748445,-0.17114732,0.12702996,0.0064161145,0.5898424,1.0522965,-0.41076946,-0.08187051,0.19173525,-0.3304446,-0.7592395,0.38916954,-0.20643902,0.09140341,-0.11073612,-0.30667055,-0.5598767,0.16000761,0.29861367,0.007183075,-0.1499045,-0.48793137,-0.31565684,0.20356622,-0.15834929,-0.30541185,-0.57124865,0.14871944,0.52533305,-0.1692353,-0.21411473,0.2214466,0.18858913,-0.22670975,-0.50783944,0.22806285,-0.19451894,0.1895314,0.14737241,-0.3247884,-0.09150176,0.06672346,-0.4378328,0.20324826,0.00014989651,-0.47159708,0.058248468,-0.0803349,-0.03888933,1.1669172,-0.2536423,-0.04073811,-0.6858459,-0.56929785,-0.81904227,-0.48572943,0.65906894,0.07974897,0.16172685,-0.55689645,-0.090395816,0.06784288,0.16263543,-0.19020359,-0.37929037,0.3316023,-0.018107213,0.43200392,-0.16590473,-0.5988063,0.20602956,0.003549984,0.038899377,-0.515762,0.3338925,-0.12274405,0.7679246,0.023222394,-0.08528114,0.3516743,-0.32987884,0.022208951,-0.19889766,-0.38118377,-0.8471388,0.10754411,139 -614,0.34470573,-0.21005327,-0.43554005,-0.00033728665,-0.19975582,-0.025831204,-0.42454985,0.27501252,0.19109303,-0.52493286,-0.29394895,-0.10000776,0.00023186207,0.20247872,-0.12926494,-0.3101732,-0.013015289,0.2533806,-0.4063894,0.59305394,-0.3936965,0.12955178,0.1210765,0.64269537,0.2210398,0.12249382,0.08447458,0.045332786,-0.36183712,-0.5979043,0.06832309,0.043007374,-0.85177904,0.32957843,-0.39492887,-0.61226535,-0.17700149,-0.55095685,-0.32240105,-0.83147424,0.12216977,-1.0647267,0.5766416,-0.013474729,-0.35240057,0.30676806,0.19709979,0.3818832,0.011954033,0.15412137,0.23033431,-0.4033871,-0.20588829,-0.24498908,-0.0939081,-0.23616081,-0.38804203,0.016331188,-0.400362,0.041439634,-0.41068393,0.22371681,-0.21720126,-0.021082897,-0.1816097,0.31013197,-0.4482876,-0.019989196,0.011996549,0.041622683,0.47649494,-0.56395054,-0.342394,-0.1792678,0.21700683,-0.19303784,-0.32750437,0.26324368,0.20688185,0.4734343,-0.038830582,-0.14658213,-0.19857353,0.051261965,0.18627106,0.45536762,-0.18955906,-0.22998737,-0.22805776,-0.17745543,0.5535058,0.40645683,0.03720834,-0.26453993,-0.0386861,-0.09974931,-0.20911972,0.24764384,0.46426412,-0.15467095,-0.13672285,0.30662367,0.42847708,0.32194597,-0.15054363,-0.020371033,0.011870171,-0.3835904,-0.15572757,0.091791466,-0.168062,0.58262354,-0.052750684,0.32081982,0.4657386,-0.23374936,0.07869895,0.26104996,0.12672445,-0.07110041,-0.21419975,-0.6021742,0.38583213,-0.56713206,0.32439083,-0.42186868,0.6952835,-0.07628438,-0.7646844,0.26125258,-0.5828046,-0.0024273086,-0.11434893,0.68943727,0.79110676,0.48331797,0.44314477,0.6499615,-0.301051,-0.07645542,-0.25439316,-0.008551557,-0.05847949,-0.25643703,0.06480295,-0.46069872,-0.28796828,-0.08367289,-0.096294254,0.021669094,0.6438474,-0.40757605,-0.18176214,0.16410774,0.7125539,-0.24170639,0.03416442,1.0312421,1.3056314,1.0617417,0.20485057,1.057903,0.23743118,-0.19424877,-0.22261,0.074719466,-0.5260158,0.38369462,0.2917062,0.15550368,0.13689007,0.24405292,-0.09324099,0.3472177,-0.6184989,-0.10040515,-0.15652965,0.1607948,-0.13775992,0.06621192,-0.41743162,-0.33612964,0.035696257,-0.030275045,-0.011426302,0.27860123,-0.3494177,0.46913293,0.04682507,1.1663086,-0.2923935,-0.08922955,-0.1285666,0.53859913,0.019314848,-0.24316886,0.007411645,0.15354005,0.3183786,-0.113581546,-0.54743284,0.04620262,-0.14725587,-0.4382521,-0.16848844,-0.21619973,-0.2237188,-0.03964833,-0.31445006,-0.23602684,-0.031412676,-0.41415405,0.2854176,-2.4719813,-0.20264207,-0.09126699,0.29948524,-0.25229707,-0.29553396,-0.030604033,-0.3762481,0.7590083,0.29752538,0.40743777,-0.5511407,0.43443808,0.4767644,-0.38833788,-0.2244468,-0.7976046,-0.10458484,-0.06015271,0.30834186,-0.022345586,-0.19632238,-0.034036424,0.030760344,0.62464106,0.02673811,0.23770553,0.27648118,0.279664,-0.08626053,0.3604539,0.16720396,0.49404314,-0.36309668,-0.29204392,0.35239756,-0.41190845,0.32006806,-0.19615465,0.09761923,0.5095723,-0.4306133,-0.7514974,-0.8614816,-0.46448934,1.2642443,-0.20231496,-0.7625717,0.12215508,-0.25110298,-0.28225186,0.08243193,0.5828105,-0.10023124,0.1242382,-0.83699983,-0.15014718,-0.108113974,0.2981154,-0.048435643,0.19450822,-0.6251582,0.71757704,-0.10519964,0.30779007,0.34360343,0.36557287,-0.1798928,-0.35396558,0.13027622,0.97931343,0.3979208,0.19277486,-0.3739511,-0.20896967,-0.29213288,-0.013523588,0.20565261,0.59829116,0.62327933,-0.035649758,0.17069882,0.2291283,-0.16148263,-0.05153048,-0.2481185,-0.38417542,-0.24228168,0.12917854,0.8189299,0.58571935,0.24559769,0.55477643,-0.07524727,0.32491505,-0.24036685,-0.48649356,0.5059125,0.8083675,-0.16729546,-0.09861212,0.6920526,0.5368017,-0.19783928,0.45620066,-0.80213004,-0.49111828,0.26062357,0.09436901,-0.50605494,0.19552635,-0.33881024,0.23807192,-0.8173444,0.34763372,-0.46704406,-0.6793548,-0.68595606,-0.13907672,-1.9889438,0.27468154,-0.17677027,-0.3737524,-0.21377318,-0.57578737,0.3621179,-0.5214641,-0.5679437,0.09729101,-0.01727346,0.76933825,-0.11909901,0.012022587,-0.2597297,-0.39522508,-0.31649926,0.033117812,0.24564335,0.27349195,-0.1393149,-0.33501923,0.09046291,-0.059816845,-0.30166003,-0.17734617,-0.5985862,-0.6040961,-0.08107794,-0.36485228,-0.25039938,0.37475055,-0.35496905,0.048813447,-0.29758126,-0.018473767,0.029107746,0.3547921,0.14026232,0.32054928,0.13564125,-0.07693231,0.009719698,-0.28032798,0.19932279,0.15574875,-0.07406525,0.39004105,-0.30131453,0.39897096,0.29195184,0.6085405,-0.17835408,0.90091574,0.4519665,-0.14241785,0.25290215,-0.3687155,-0.479598,-0.5663019,-0.23882915,0.024851276,-0.41785723,-0.38476837,0.03514444,-0.20844923,-1.0575781,0.67913663,0.12493988,0.16677539,-0.0454223,0.34859556,0.33455414,-0.21136108,-0.19211848,-0.015584066,-0.0133005865,-0.59994847,-0.44932115,-0.7135074,-0.39943486,-0.35213786,0.8648666,-0.035229612,0.16227348,0.36915654,-0.16769937,0.110547096,0.1617122,-0.07270218,-0.24489154,0.50217795,0.051831678,-0.6573852,0.33878538,0.11134954,-0.14068055,-0.6646413,0.4793148,0.9002294,-0.5666355,0.43982854,0.5763347,0.16310376,-0.3993263,-0.5973741,-0.16844378,-0.107415386,-0.26050112,0.4665395,0.2253697,-0.880247,0.46979487,0.3587742,-0.11025321,-0.76668096,0.5617198,-0.0462114,-0.3291682,-0.05844839,0.29837024,-0.0323647,0.124920875,-0.12670057,0.27646318,-0.28713983,0.4256987,0.06701061,-0.1655754,0.24810351,-0.33448073,-0.09865956,-0.6320573,0.24056648,-0.56911457,-0.438381,0.12882857,0.018780887,-0.055423997,0.52846473,0.12574606,0.39902037,-0.22111487,0.04433718,-0.34917748,-0.27557063,0.25731197,0.6167091,0.53737664,-0.23499726,0.67235124,0.14612852,-0.29218787,-0.3366223,-0.027327977,0.39473107,-0.025758794,0.44121015,-0.18712433,-0.19859006,0.13626646,0.65342766,0.22843622,0.51861346,-0.06994213,0.06023384,0.22465636,0.085144706,0.42718437,-0.0281384,-0.55711406,-0.02825854,-0.41155073,0.06288583,0.35304147,0.14423205,0.24692465,0.027624566,-0.10039585,0.12132274,-0.0018445116,-0.09077234,-1.3319904,0.5934894,0.17407434,0.7737594,0.57492524,-0.09471735,0.1079849,0.7962208,-0.36820194,-0.11539722,0.28019905,0.31296209,-0.3445563,0.62030035,-0.88745534,0.38244268,-0.08926973,0.03512856,-0.08086015,-0.1091355,0.48781115,0.8302998,-0.23120576,0.19625694,-0.094666354,-0.26143053,-0.044965543,-0.2910237,0.24102235,-0.5920591,-0.38059077,0.8926106,0.35188407,0.485809,-0.2801607,0.030995773,0.024545716,-0.14189075,0.17191073,0.19279647,0.093198664,0.0150576,-0.5819163,0.042833943,0.5131679,-0.19323072,0.07970001,0.1059282,-0.15473253,0.15134308,-0.012752586,-0.12163023,0.07298189,-0.70130485,-0.01904778,-0.55311644,-0.25543553,0.2922486,-0.30319643,0.09706618,0.17201519,0.079072386,0.06993008,0.27086592,0.3374508,0.626894,0.24692465,-0.17110182,-0.20872465,0.25123957,0.24718349,-0.12884685,-0.08321603,-0.1311954,-0.0562829,-0.6858403,0.39180094,-0.21497084,-0.26053876,0.36372378,0.010181264,0.016109165,0.51530546,0.05887655,-0.10884703,0.24575089,-0.349908,-0.37765497,-0.18151408,-0.036849108,0.26757556,0.11337604,-0.10621834,-0.069377735,-0.09626227,-0.18936814,0.46757552,0.014875008,0.4659979,0.34848875,0.05623237,-0.3669151,-0.04597131,-0.07943292,0.6252557,-0.10129058,-0.06490943,-0.2522264,-0.3161574,-0.33645806,0.3299576,-0.1282027,0.18141103,0.06960832,-0.18857911,0.9677537,0.02633668,1.0002824,-0.041720983,-0.37676093,0.16310018,0.4077788,-0.20445158,-0.15230547,-0.43689677,0.84371597,0.38403708,-0.06959532,0.0005416916,-0.43825153,-0.15163252,0.28429353,-0.18170752,-0.20952453,-0.11500895,-0.6726821,-0.14227279,0.211426,0.46411002,-0.10100655,-0.001057955,0.17432943,0.47141662,0.07988335,0.39679337,-0.47561428,-0.15611762,0.48417032,0.30832526,-0.1827951,0.027303966,-0.35095003,0.31555808,-0.6228769,-0.020970877,-0.27147108,-0.010886701,-0.23901749,-0.39680678,0.19599618,0.16849175,0.38962248,-0.26680642,-0.18246332,-0.18063821,0.4173661,0.13432324,0.23014203,0.43276235,-0.17272322,0.11044161,0.009937594,0.27730832,1.1713977,-0.31949085,0.07304906,0.2444995,-0.35359985,-0.48711225,0.37011716,-0.44971514,0.16627121,0.17070359,-0.36788633,-0.49203894,0.15672973,0.12633194,-0.01946982,0.06910556,-0.6496582,0.028048672,0.25629857,-0.045147315,-0.14098042,-0.29378334,0.1259997,0.46050218,-0.0060663405,-0.36287016,-0.059899747,0.48780045,-0.319327,-0.38368207,0.07001615,-0.3754069,0.2929629,-0.14726368,-0.41697317,-0.024112765,0.018114783,-0.46745792,-0.14725138,0.13444422,-0.30800718,0.09896671,-0.36045045,0.2769092,0.73814523,-0.20275585,0.11582826,-0.46813008,-0.5427673,-0.62577736,-0.20135865,0.14786993,0.39907682,0.042576093,-0.46929204,0.13330871,-0.11739215,-0.10695663,-0.07749633,-0.4722295,0.43056944,0.22702225,0.49145985,-0.020810591,-0.74762756,0.2796225,-0.018728562,-0.11040829,-0.3815932,0.526081,0.016750386,0.7162632,0.0888567,0.04442358,-0.028957019,-0.6180257,0.12135896,-0.07624523,-0.11401301,-0.7535393,-0.05668052,140 -615,0.23484136,-0.142541,-0.4932339,-0.10316086,-0.20242733,-0.13550074,-0.19450215,0.30686787,0.35114336,-0.082691275,-0.28790382,-0.15593521,0.1936055,0.3970948,-0.0014881629,-0.5578693,-0.17315406,0.19161122,-0.77789146,0.5500424,-0.5174099,0.18135937,0.06412148,0.3457491,0.17647591,0.40864804,0.1807861,-0.1434822,-0.12473266,0.015931942,-0.09698987,0.29050896,-0.6236359,-0.0060302294,-0.21931103,-0.20207712,0.08235387,-0.5392058,-0.34787962,-0.61287963,0.14742611,-0.8299507,0.39696124,0.003456455,0.014665772,0.06983652,0.1864349,0.37174895,-0.36840153,-0.19777025,0.29390758,-0.1392182,-0.08346582,-0.23908274,0.016551256,-0.116085164,-0.47444484,-0.037400343,-0.42981642,-0.2544977,-0.24969107,0.02286038,-0.35672453,-0.032493465,-0.087689705,0.41279718,-0.34638363,0.11652207,0.23887938,-0.18050715,0.20346037,-0.46328494,0.07103176,-0.09088524,0.540098,-0.11375076,-0.15577617,0.42336866,0.31662676,0.23688191,0.13439885,-0.18820311,-0.28557703,-0.07514022,0.24530461,0.45311415,-0.17698835,-0.3916351,-0.13356328,0.12832187,-0.043219764,0.24229392,0.05510425,-0.2783262,-0.09871989,-0.07033073,-0.08780773,0.46946743,0.38287324,-0.10268081,-0.389544,0.26152223,0.48410457,0.43414256,-0.2657591,-0.21582478,0.011869109,-0.58430564,-0.18350483,0.03312269,-0.15582466,0.49165195,-0.17304857,0.17783286,0.7182623,-0.048848893,-0.004841839,0.07282216,-0.0026705195,-0.13859046,-0.33913854,0.08088689,0.17052348,-0.57438886,0.15600923,-0.06922107,0.6029692,0.23570047,-0.7301045,0.4853502,-0.6545048,0.23743747,-0.088459305,0.45105842,0.6493753,0.16947968,0.41869628,0.66469234,-0.28936175,0.17753704,0.077053435,-0.5643377,0.117665716,-0.20572203,0.172921,-0.56030667,-0.11786382,-0.12737663,0.1377373,0.22232723,0.0453293,-0.39061758,-0.021782462,0.32690367,0.80749345,-0.24586228,-0.16405883,0.63088834,1.1073526,0.91621244,-0.0009332712,1.2443182,0.12227312,-0.32121882,0.3145069,-0.34087032,-0.8534102,0.13717777,0.31595093,-0.27921516,0.13574544,-0.13083425,0.018728254,0.24398838,-0.39230874,0.09003411,0.07836839,0.19463846,0.15001917,-0.059752353,-0.3695346,-0.32265252,-0.20414597,-0.11750854,0.005369223,0.21301009,-0.079923905,0.23449278,-0.1439205,1.3976896,-0.011258974,0.043075103,0.06491996,0.56430703,0.2973032,-0.11723692,-0.24708249,0.41341904,0.38371488,0.058025215,-0.50702196,0.33283073,-0.3294,-0.29157636,-0.024938826,-0.4297525,-0.06696303,0.24838416,-0.38520378,0.03229712,-0.06341391,-0.32173288,0.4874425,-3.1806912,-0.22245255,-0.036513664,0.1730575,-0.2190006,-0.16992514,-0.16827653,-0.55615085,0.16709556,0.1642069,0.6361115,-0.6181278,0.41311246,0.39591628,-0.61422545,-0.17963961,-0.65772635,-0.19849727,0.08616162,0.31039912,0.04724856,0.1801103,-0.009585039,0.19679591,0.56076854,0.13903134,0.09530508,0.43088758,0.32130164,0.090173945,0.6922839,-0.12187242,0.63672626,-0.26895568,-0.1430854,0.24485806,-0.23764037,0.40887567,-0.1414403,0.093214,0.6665265,-0.40741345,-0.9969851,-0.43030497,-0.33761638,1.0711673,-0.31449425,-0.28974578,0.3013292,-0.35780165,-0.04989542,0.083886296,0.5623006,0.0067294193,0.018932197,-0.64158666,0.025466982,-0.039906796,0.12807432,0.0900421,-0.17889181,-0.38050157,0.66844815,0.09988098,0.5414779,0.31348404,0.22449926,-0.14503701,-0.34841606,0.10391504,0.658197,0.19092768,-0.0077000847,-0.124061264,-0.22671846,-0.24539314,-0.18187381,0.004408057,0.5876305,0.52590245,-0.2053872,0.28458783,0.34496033,0.11431898,0.06606421,-0.09553333,-0.21300077,-0.0062600304,-0.025080983,0.3598474,0.94152516,-0.14669418,0.43726224,-0.0055729495,0.17264143,0.011341801,-0.454727,0.64987415,0.48267823,-0.10705146,0.03796386,0.32368094,0.5885735,-0.37310207,0.4411208,-0.40573853,-0.16830063,0.583449,-0.1968814,-0.36208504,0.20478223,-0.2461115,0.043152608,-0.7015886,0.16535796,-0.32999736,-0.34918207,-0.2513785,0.070952386,-3.7312746,0.14025982,-0.13681538,-0.15310313,-0.38975617,0.008753731,0.14404756,-0.58793664,-0.6581637,0.15901086,0.14830531,0.62290025,-0.1886398,0.06349904,-0.19710132,-0.1539571,-0.18893005,0.24581382,0.17135477,0.31813383,-0.16208313,-0.42253467,-0.22789638,-0.14102633,-0.49840868,0.28322098,-0.4910998,-0.26028708,-0.014101102,-0.58923113,-0.3232005,0.5583939,-0.4333362,-0.068999305,-0.2467416,0.041996837,-0.27477482,0.22760025,0.17970496,0.2362201,0.04910457,0.052386455,0.036554124,-0.28033766,0.5094254,-0.0564127,0.3999702,0.09832323,0.24498004,0.16795936,0.41666377,0.63158786,-0.23810403,1.0589262,0.47263145,-0.06297079,0.24733008,-0.30880868,-0.26118752,-0.47119528,-0.23704712,-0.10366358,-0.32873565,-0.53468233,-0.014564001,-0.33045018,-0.71914643,0.5743021,0.11991571,0.30950814,0.059801176,-0.055561997,0.3734409,-0.18676624,0.12110332,0.00918238,-0.09461145,-0.60694957,-0.054964285,-0.6285552,-0.5891117,0.0940292,0.5303292,-0.39341784,0.020662097,-0.099410824,-0.3854189,0.0080833025,0.19157945,-0.009750564,0.3914184,0.4748841,-0.008626197,-0.55024916,0.4649684,-0.08067067,-0.046702437,-0.48954755,0.094186984,0.547111,-0.7034123,0.7314685,0.30128345,-0.09466909,-0.10403991,-0.42650324,-0.35466626,-0.17642826,-0.13281365,0.27686337,0.14052847,-0.8712622,0.29890016,0.14635715,-0.531303,-0.68932813,0.44249213,0.004737144,-0.21632862,-0.11788174,0.22892745,-0.011481037,-0.01604569,-0.22808442,0.18773769,-0.29179254,0.23618762,0.1474798,-0.03675162,0.15480089,0.076424435,-0.15458092,-0.60280997,0.012160563,-0.33562347,-0.18276317,0.46074194,0.031776454,0.024971914,-0.06448045,0.19224635,0.2019566,-0.30101413,0.13119999,0.06601407,-0.40218416,0.17671312,0.44112617,0.44886014,-0.4505993,0.49309224,0.12024841,-0.28512856,0.3287019,0.04808495,0.3019508,-0.05339801,0.32261026,0.024515422,-0.20187494,0.22028166,0.76270527,0.13312492,0.31061494,-0.026904674,0.06415493,0.3775539,-0.08850371,0.09294736,0.03557717,-0.53221065,0.12990847,-0.28372085,0.22400148,0.45862564,0.2973704,0.21598537,0.18289134,-0.3725309,-0.07854183,0.2879624,0.08946191,-1.0951664,0.47957185,0.193923,0.92483914,0.54559314,0.049697474,-0.117357746,0.69877183,-0.18082666,0.1513759,0.44837093,-0.15057895,-0.5698113,0.7436274,-0.62597984,0.5308,0.019590357,-0.15274002,0.18521729,-0.0026986324,0.22845456,0.67835337,-0.35545218,-0.022351779,0.12592384,-0.18402028,-0.011608188,-0.39152378,-0.09966282,-0.40872988,-0.31682432,0.6326058,0.48449567,0.29826134,-0.21328765,0.0067365286,-0.041928954,-0.13355063,0.18779024,0.020153578,0.035724785,0.20334165,-0.6768093,-0.1245125,0.55214757,-0.2114672,0.19584809,-0.2805118,-0.17651074,0.17410873,-0.36677817,-0.06369659,-0.13785896,-0.7029222,0.10502209,-0.24584875,-0.41966587,0.55223584,-0.20665881,0.26628783,0.1833798,-0.008248334,-0.07533541,0.6572928,0.0556866,0.81119466,-0.040451296,-0.19267955,-0.34317118,0.15067567,0.19192153,-0.14806582,0.021202229,-0.50090086,-0.062948175,-0.32222497,0.6512857,-0.0071146945,-0.39826006,-5.9072787e-05,-0.15545636,0.07818528,0.606973,-0.08390787,-0.16844162,-0.20117474,-0.08724736,-0.4404459,0.014591928,-0.24646582,0.244661,0.52524096,0.041408762,-0.17976657,-0.28486684,-0.14056098,0.36223343,-0.072121024,0.56837386,0.068922214,0.076528296,-0.12879968,-0.042454675,0.3718233,0.5013482,0.14473943,-0.091999546,-0.42171943,-0.16229509,-0.38025528,0.17668149,-0.060579482,0.36566654,0.018145453,-0.17040911,0.5932659,-0.068081245,1.1459296,0.16048335,-0.3171055,0.22027174,0.41324666,-0.1036919,-0.0974718,-0.35242578,0.77640164,0.39292806,-0.03316405,-0.106736355,-0.44967216,0.0069039143,0.17757957,-0.15115575,-0.006725366,0.10030666,-0.37023395,-0.2779668,0.1566519,0.26096642,0.35676888,-0.11518152,-0.065080725,0.117309555,0.13535559,0.2545047,-0.51515007,-0.40333003,0.190224,0.27671194,-0.09893702,0.15903364,-0.3047673,0.47261035,-0.38878706,0.1976555,-0.48357865,0.19165704,-0.36133358,-0.35432306,0.05885094,-0.04490392,0.41570508,-0.23461816,-0.31205717,-0.22457257,0.43896407,0.08946947,0.21477509,0.60660183,-0.2536805,-0.00093324366,0.06502974,0.5963191,0.8120862,-0.4383736,-0.1371807,0.31512004,-0.27809814,-0.48435572,0.36798865,-0.2983754,-0.023875475,-0.074214876,-0.38008034,-0.56114566,0.12759815,-0.007424749,0.12582162,-0.01015556,-0.60159695,-0.07254584,0.13363953,-0.21585353,-0.2629737,-0.39625052,0.18606026,0.7783,-0.31290784,-0.2501701,0.2024867,-0.023856644,-0.14554755,-0.36386377,-0.09231731,-0.2667781,0.21465707,0.027639134,-0.38238966,-0.11390204,0.22262564,-0.39578617,0.27637106,0.06615817,-0.27063087,0.1440168,-0.0056318734,-0.10548111,1.2261376,-0.4155575,-0.007332004,-0.4475575,-0.56798846,-0.70191,-0.36324105,0.30903578,0.07635817,-0.03716286,-0.35407177,0.034758292,-0.0038257563,-0.2316354,-0.0657755,-0.4957221,0.3780786,0.073023416,0.35246122,-0.33299458,-0.83764756,0.17484848,0.14379142,-0.12059657,-0.7385638,0.51857334,-0.04306615,0.76066273,0.017969957,-0.036329407,0.15685727,-0.06358134,-0.06836478,-0.41070524,-0.018868145,-0.6097615,0.14774773,141 -616,0.7351264,-0.33197418,-0.85132366,-0.13948704,-0.26447856,-0.16950886,-0.30533206,0.6950955,0.3010975,-0.6473375,-0.095851,-0.11517306,-0.0866605,0.39683995,-0.4051246,-0.80916655,0.0063876314,-0.0014484662,-0.4873166,0.4469131,-0.5222732,0.432545,-0.060236115,0.56598157,0.4437452,0.23549601,0.015141606,0.084707335,-0.18449743,-0.14805013,0.15766612,0.15435989,-0.67749435,-0.13096507,-0.28346628,-0.7660477,-0.17923898,-0.47025797,-0.4418942,-0.99101025,0.4835548,-1.0242445,0.65777177,0.062865004,-0.37782124,0.08889119,0.2488971,0.46811956,-0.25123423,0.027040247,0.04635485,-0.02454764,0.0066821715,-0.0317981,-0.4290923,-0.40433672,-0.6960849,0.024208695,-0.52839905,-0.06957965,-0.18274024,0.1386264,-0.39209735,0.15629734,-0.019545753,0.5179319,-0.43463644,-0.15130718,0.41284275,0.08732242,0.36447063,-0.74188143,-0.37230974,-0.21325707,0.29141247,-0.2831168,-0.26537523,0.36609858,0.30834213,0.5035148,-0.07802134,-0.21630344,-0.38406438,0.10170047,0.018460186,0.35989395,-0.32509768,-0.48667654,-0.3391092,-0.08078126,0.5981549,0.48158422,0.43134314,-0.16463925,0.0030396213,0.1763156,-0.34697917,0.68672824,0.5876861,-0.30801788,-0.03252885,0.15537748,0.44827646,0.3190128,-0.2870919,0.0672115,0.09582089,-0.73333067,-0.21030608,0.07550807,-0.10251513,0.59366935,-0.13443509,0.29220796,0.6168035,-0.43721154,0.0848862,0.1872223,-0.020846635,-0.26923817,-0.45102835,-0.44024006,0.3298949,-0.56665313,0.21139285,-0.4284215,0.768736,0.23981735,-0.7151225,0.25683722,-0.7839137,0.23736858,-0.17007047,0.39442205,0.77755475,0.45916107,0.26478767,0.6926955,-0.45904133,-0.02072398,0.012174928,-0.19729735,0.13771512,-0.36139706,0.04430183,-0.41728646,-0.09207989,-0.07420762,-0.09631973,0.40561864,0.7538144,-0.5595003,-0.27242166,0.0004662046,0.78547436,-0.2592203,-0.06896544,0.96136546,1.0173252,1.0748773,0.08332141,1.3259645,0.37747177,-0.19237182,0.18607102,-0.012282986,-0.8296906,0.45314553,0.25513762,-1.0219055,0.5244308,0.010587179,-0.18361138,0.53958166,-0.28965896,0.09352292,0.006659659,0.19108495,0.03987565,-0.32644013,-0.3714082,-0.27608475,-0.1133693,-0.06667379,0.11451706,0.3059653,-0.16645153,0.4607517,-0.03954435,1.4037197,-0.074976094,0.057931546,0.020296812,0.46489257,0.29848087,-0.21662052,0.0028883035,-0.031060457,0.33718106,0.23911381,-0.6905346,-0.014694909,-0.29063112,-0.4218639,-0.2412997,-0.37025207,-0.24910656,-0.20554803,-0.70405763,-0.11118043,-0.28051618,-0.065964,0.33693507,-2.1969187,-0.44289568,-0.22934826,0.37100518,-0.26352993,-0.5888642,-0.16289352,-0.50930244,0.65524584,0.25585124,0.470202,-0.6973658,0.48101684,0.5529206,-0.5391818,0.04614554,-0.70794976,-0.3015419,0.041441258,0.07752542,-0.114434,-0.23933871,0.19201246,0.275826,0.41834685,-0.023236949,-0.052291457,0.100575045,0.6090508,-0.20625576,0.76831234,-0.078425184,0.5655469,-0.546138,-0.2904971,0.43289456,-0.56156486,0.10081458,-0.016144,0.15492591,0.61815,-0.64297205,-1.08159,-0.66778433,-0.04623182,1.0527174,-0.049141984,-0.5178309,0.24299297,-0.5579582,-0.27342066,-0.1511692,0.5629324,-0.057558205,0.11727465,-1.0300425,-0.045977972,-0.23080245,-0.044697206,-0.013832297,0.055760972,-0.34736457,0.69817555,-0.02186505,0.46187437,0.422051,0.1729189,-0.424233,-0.603801,0.14798278,0.93348736,0.46038422,0.24987791,-0.42710117,-0.08876231,-0.61820483,0.1257627,0.12130899,0.4070263,0.795503,-0.03147445,0.18096964,0.35359114,0.01245903,0.12593836,-0.17829067,-0.47967273,-0.32707766,-0.051122345,0.6657892,0.8419923,-0.15674241,0.49236685,0.052003283,0.40650892,-0.33188516,-0.415958,0.7090791,1.206066,-0.18148372,-0.40740493,0.71102893,0.48449624,-0.42519486,0.6035099,-0.6170132,-0.43492782,0.39146453,-0.103850536,-0.4169738,0.26145914,-0.5093826,0.15942127,-1.1072421,0.14899005,-0.51097053,0.06409181,-0.6429589,-0.20719132,-3.3792245,0.43073294,-0.22499722,-0.060531523,-0.31198433,-0.27459157,0.37182638,-0.7514579,-0.88162714,0.20411794,0.027675457,0.9430475,-0.17828332,0.14958864,-0.12752512,-0.43578583,-0.3390115,0.017008293,0.34882244,0.33310902,0.15240642,-0.5651868,-0.1719148,-0.15453196,-0.54199415,0.0799357,-0.534933,-0.61213356,-0.14308801,-0.5840176,-0.3618613,0.8006176,-0.19927436,-0.0011876455,-0.06874926,-0.0038513748,-0.14371327,0.47213548,-0.021095982,0.22045158,0.07044694,-0.11863323,0.16793896,-0.2838802,0.059513092,0.10030287,0.2829085,0.23815061,-0.3318456,0.32152778,0.56402117,0.96519554,0.0097193355,0.98532844,0.39341018,-0.019354071,0.39888352,-0.28131992,-0.5057657,-0.64210427,-0.19152077,-0.06294401,-0.36650625,-0.34064925,-0.01089561,-0.51562524,-0.73336375,0.7289075,-0.047533114,0.24735667,-0.0674593,0.3103297,0.46865776,-0.1652616,-0.13632317,-0.079207584,-0.11391,-0.52555794,-0.29888064,-0.6615231,-0.51602995,0.05743993,1.1388993,-0.20593913,0.012140636,0.25028834,-0.17473355,0.11595218,0.24620111,0.053768154,-0.053661026,0.51875746,0.03563749,-0.70284504,0.30517125,-0.17800426,-0.30482203,-0.789586,0.05042605,0.77237505,-0.6901782,0.5446956,0.5516587,-0.001388449,-0.02820855,-0.55305004,0.033964243,0.20228828,-0.26556176,0.50779235,0.44040835,-0.7573189,0.48746812,0.51480526,-0.20934336,-0.6525307,0.7872481,0.14064382,-0.30231127,-0.3506012,0.441589,0.32798645,0.16011228,-0.03304016,0.16922252,-0.45115048,0.17728248,0.27969712,-0.08068915,0.3273209,-0.019813074,-0.15563574,-0.7887531,0.18114156,-0.579329,-0.26897976,0.42990258,-0.18939008,0.26967683,0.16942021,0.21191527,0.23867787,-0.38755777,-0.00038615556,-0.27426293,-0.34861624,0.51239425,0.5595094,0.5928143,-0.48000142,0.6471479,0.11386706,-0.017695496,0.3765225,0.046793863,0.5509378,-0.025508724,0.46385667,0.20911275,-0.29933992,0.06092221,0.795164,0.14070132,0.42731795,0.29290518,0.0059984922,-0.036389258,0.28197455,0.033726767,-0.05552105,-0.52043337,-0.08796266,-0.15007596,0.16932566,0.67512786,0.06176063,0.2921703,-0.14927539,-0.371458,-0.0099695325,0.1449866,-0.20327125,-1.6570505,0.3944343,0.1429238,0.84427613,0.48675343,0.04227539,0.026770573,0.43217432,-0.076517746,0.12601863,0.5284657,0.13537744,-0.35461628,0.6148704,-0.5606846,0.6211536,-0.08791459,0.1768377,-0.14331037,0.08989979,0.6580123,0.7879703,-0.08356297,0.08879643,0.23813699,-0.43604586,0.09331347,-0.4517259,-0.16231672,-0.44853467,0.015826674,0.9143702,0.52178544,0.42317316,-0.30696726,-0.0006076464,0.1928148,-0.17475528,0.1187668,-0.09477259,0.08270386,-0.15559672,-0.68304795,-0.09250045,0.5694282,0.22873163,0.23545898,0.058642354,-0.36589998,0.30904898,-0.09220279,0.13427883,-0.06080977,-0.92637104,-0.14334303,-0.7787436,-0.6024717,0.4106674,-0.0011806121,0.20113534,0.38291806,0.1404286,-0.3412622,0.3776395,-0.11613813,0.7731168,-0.32746962,-0.2269581,-0.41331068,0.2814674,0.44056517,-0.39098004,-0.15071903,-0.24751297,0.32085848,-0.37731346,0.57391274,-0.050812535,-0.26988295,-0.048339136,0.02210527,0.014747626,0.4574035,-0.55699867,-0.020934949,0.10142756,-0.056896467,-0.24039358,-0.40453687,-0.11613643,0.18672696,0.24525703,-0.021396045,-0.14780897,-0.19663262,0.17234601,0.47930336,-0.06932815,0.38069004,0.74117124,0.24125177,-0.31265986,-0.24647419,0.39897302,0.71668786,-0.16443887,-0.35528454,-0.70079464,-0.6461101,-0.34686762,0.51544327,-0.044912867,0.26594794,0.10359227,-0.4513199,0.9020165,0.1254817,1.0977824,-0.023385385,-0.49263048,0.029255133,0.43044296,-0.15916716,-0.23723768,-0.33626965,0.9632807,0.46930307,-0.42691165,-0.28651252,-0.5656158,0.06217059,0.03115813,-0.3416416,-0.15603279,-0.10092291,-0.642251,-0.25650242,0.32664612,0.33373767,0.12550408,-0.29990342,0.38561293,0.36214393,0.060576998,0.31646708,-0.66374326,-0.23644637,0.19241945,0.42692745,-0.08088794,0.19327453,-0.49759275,0.27846652,-0.5938668,-0.016831614,-0.5105411,0.24272798,0.05863241,-0.4041993,0.23312695,0.04406381,0.3636813,-0.48241436,-0.21289039,-0.3035198,0.52242315,0.066075824,0.15123364,0.60249877,-0.2810801,-0.048672795,-0.03168557,0.72442216,1.4129715,-0.07360501,-0.07862575,0.3556285,-0.30993304,-0.6488835,0.23078002,-0.5554078,0.4668667,-0.052605495,-0.16326918,-0.82018197,0.2658067,0.31410944,0.078512594,0.121655375,-0.6986516,-0.4530718,0.3687558,-0.36704046,-0.26305893,-0.38706562,-0.10613013,0.48229975,-0.22916484,-0.07076716,0.08476067,0.40777984,-0.023231877,-0.4194077,-0.055190526,-0.37318882,0.33721912,0.15327303,-0.23833528,-0.03325568,0.046330843,-0.5211259,0.24880688,0.22520557,-0.44813523,-0.05584989,-0.3077026,-0.16829015,1.0762689,-0.2245417,0.3651292,-0.36331046,-0.5479435,-0.83843845,-0.3649134,0.3418808,0.19061655,0.11359421,-0.81361806,0.12747194,-0.06908325,-0.14353703,0.06194177,-0.23923379,0.49731642,0.13752092,0.5899937,0.013853633,-0.65064615,-0.006466205,0.1274893,-0.4461867,-0.5160679,0.66939443,-0.0444871,0.98198056,0.19095984,0.12698518,0.27615082,-0.4735935,-0.052386623,-0.20281918,-0.22465545,-0.7929392,-0.07610339,145 -617,0.35667002,0.037087303,-0.6473647,-0.1312353,-0.21143143,0.045299992,-0.23989041,0.47891062,0.30627888,-0.35258496,0.112414874,-0.07129801,0.034042917,0.57457864,-0.23073079,-0.59827155,0.21948291,0.058466733,-0.59922385,0.33357388,-0.43289092,0.2924381,-0.11354563,0.3764731,0.13762444,0.20034729,0.04587025,-0.021677095,-0.021579636,-0.16661301,-0.19035593,0.1984361,-0.42718986,0.017960755,-0.14476047,-0.29504248,0.0005483742,-0.60589284,-0.498966,-0.6521529,0.35069898,-0.8588559,0.75001425,0.113576025,-0.18900491,0.26950562,0.22363938,0.33966255,-0.09140463,-0.02760557,0.038697485,-0.29494974,-0.14710198,-0.16133817,-0.5549871,-0.527882,-0.6615094,-0.02871076,-0.6637287,-0.13292016,-0.25033447,0.15450934,-0.38032097,-0.00041689322,-0.027358051,0.37415302,-0.34677118,-0.011552609,0.10741566,-0.095492415,0.10083052,-0.6761554,-0.28374597,0.015381194,0.44921172,-0.19491458,-0.31818134,0.3108509,0.34501883,0.5405497,-0.1796327,-0.20630914,-0.28804827,-0.030122302,-0.06365778,0.7396029,-0.18390773,-0.48996612,-0.07248613,0.014936062,0.4247494,0.5000259,0.21716659,-0.26806206,-0.21209274,0.062609114,-0.25193924,0.5493652,0.6493199,-0.3447227,-0.18917099,0.4897472,0.30291268,0.31370184,-0.09896655,0.44119364,-0.05598825,-0.72193396,-0.11343702,-0.05414823,-0.106827095,0.53698087,-0.14214095,0.4440487,0.6155456,-0.12609237,-0.072484985,0.18992582,0.0042161,-0.018970426,-0.121531434,-0.2850077,0.1705331,-0.5462421,0.19338384,-0.12150018,0.61609083,0.33006412,-0.91584027,0.38186073,-0.59817326,0.17353384,0.026283674,0.5499156,0.8307866,0.5747439,0.38256976,0.7426436,-0.50681645,0.10547757,0.048650607,-0.37166727,0.042621695,-0.18031706,0.07957983,-0.51818967,-0.083315775,0.17657372,-0.13675275,0.38452032,0.45902258,-0.5072329,-0.10667816,0.27982554,0.7901996,-0.20693295,-0.07858511,0.8961497,0.9797086,0.9950429,0.14640036,1.0618842,0.10293777,-0.04554291,0.08724319,-0.08372327,-0.7834585,0.17878345,0.33292866,-0.2247298,0.41398877,0.13836172,-0.09653469,0.28847757,-0.29250875,-0.31942242,-0.0079750875,0.16650201,0.13944586,-0.39651993,-0.2555131,-0.22978464,-0.13612527,-0.19917892,0.22510743,0.25123593,-0.24910808,0.45768675,0.1603179,1.1546979,0.09609382,0.16648175,0.13755564,0.4644038,0.28733554,-0.20178308,-0.18869129,0.36372313,0.41336682,0.16611221,-0.5658079,-0.052372035,-0.3096217,-0.36248586,-0.13281146,-0.34562752,-0.3242953,0.027498927,-0.31059292,-0.27572206,-0.17372335,-0.349105,0.6203471,-3.022928,-0.28048706,-0.1868599,0.26130578,-0.032402277,-0.35044685,-0.10905798,-0.5891869,0.49948475,0.35031688,0.2886853,-0.6727404,0.324256,0.4492628,-0.43082413,-0.22370464,-0.80177104,-0.12383126,0.10207097,0.18732016,0.029867519,-0.12214155,0.07842267,0.20325732,0.4607475,-0.11010671,0.048918825,0.22227328,0.4348482,-0.0033381444,0.3845247,-0.29791784,0.5714109,-0.25109285,-0.24174412,0.21109122,-0.5031361,0.30174315,-0.19695543,0.11473144,0.6144262,-0.32660806,-0.93255913,-0.4328738,0.002667913,1.0790342,-0.09169174,-0.34352392,0.39605573,-0.47184405,-0.32239628,-0.18636124,0.5871595,-0.16374254,-0.115646124,-0.69961035,-0.16234702,-0.22437182,0.20107743,-0.110916175,0.078909434,-0.3734827,0.48254073,-0.025199762,0.50704724,0.20677568,0.17776181,-0.52663124,-0.3640444,-0.09911119,0.81886744,0.5017095,0.093329206,-0.1564411,-0.20977746,-0.27691275,-0.33764198,0.123581186,0.5870353,0.5116606,-0.12406949,0.18612926,0.30953616,0.10240658,0.1830363,-0.1683713,-0.26980278,-0.07541111,-0.07383482,0.48348823,0.58926576,-0.25678343,0.55965245,0.07587074,0.16598257,-0.31891897,-0.4913584,0.60838646,0.66475815,-0.18315543,-0.32610688,0.6743567,0.15453514,-0.22753988,0.47825342,-0.5689086,-0.41343182,0.6372541,-0.06395138,-0.5489329,0.27802268,-0.23722799,0.048325837,-0.6992605,0.39820543,-0.2235445,-0.5693416,-0.48263037,-0.037068717,-3.456182,0.09611945,-0.3322439,-0.1446698,-0.16729453,-0.14786643,0.17401117,-0.5415123,-0.71062875,0.22909251,0.1911533,0.8470455,-0.3640721,0.11123927,-0.105148315,-0.5216739,-0.4380512,0.1122168,-0.06805726,0.30138636,0.07281424,-0.114399634,-0.020000424,-0.005742041,-0.49160525,0.068717174,-0.48069608,-0.26001474,-0.117178,-0.53364295,-0.21713679,0.80990756,-0.35988653,-0.05675649,-0.4721545,-0.10174159,-0.20995378,0.34299052,0.11858311,0.04612505,-0.022324145,-0.01264668,0.16019654,-0.2945986,0.2730592,-0.100385346,0.30532143,0.36618993,-0.10576197,0.17286345,0.54597247,0.7642291,-0.21104988,0.9228128,0.34964877,-0.034132272,0.44574112,-0.310164,-0.3182791,-0.3858472,-0.40804055,0.10616513,-0.44801596,-0.4106239,-0.2597612,-0.28223202,-0.7099687,0.44519183,0.00019487969,0.23913883,-0.106433116,0.3645404,0.40651956,-0.226482,-0.040364068,0.05187544,-0.16727322,-0.34784266,-0.1035082,-0.6229211,-0.41549146,0.17819801,0.95123327,-0.22407986,0.036401056,0.2954114,-0.31259096,-0.07407867,0.08555053,0.16912468,0.14818272,0.24289736,-0.19465153,-0.69032454,0.36518615,-0.5476299,-0.16925237,-0.7974757,-0.010164052,0.7125772,-0.5766458,0.61569244,0.3936318,0.13776213,-0.25819233,-0.82147986,-0.27460724,-0.057327528,-0.18196529,0.32044813,0.25727934,-0.9047102,0.5519204,0.4516528,-0.24340604,-0.61939424,0.5195066,0.10533294,-0.11383597,0.15141012,0.33382878,0.18366408,-0.02388712,0.028226767,0.13788693,-0.37184432,0.4684267,0.29411867,0.13397922,0.49818784,-0.13209759,-0.23873752,-0.669366,-0.12606353,-0.54613084,-0.16077691,0.11042465,0.051745288,0.27015918,0.08558929,-0.048491497,0.3227177,-0.5044395,0.1749351,-0.08886372,-0.2205986,0.22391011,0.47948983,0.56692463,-0.36819267,0.6511879,0.12128968,-0.0971721,0.17347851,0.04366882,0.55651635,0.13644172,0.44054043,0.12799488,-0.34409633,0.06405551,0.96398544,0.12317709,0.27748165,0.13856323,-0.0020748628,0.06894536,0.1352207,0.067910604,0.18884405,-0.533975,-0.0970627,-0.30501986,0.28506786,0.6090434,0.26544034,0.12640902,-0.029541107,-0.29099485,-0.022365285,0.18575536,0.055887945,-1.507544,0.43750528,0.23594683,0.84263444,0.30257806,0.19954935,-0.050377164,0.6727044,-0.0066086054,0.11666118,0.27997157,0.095832914,-0.40770817,0.54375076,-0.77583987,0.62385535,-0.036085255,-0.015677048,0.05100968,0.06579588,0.35283244,0.85802037,-0.22860526,0.06209061,0.19543995,-0.2287271,0.09679481,-0.4651954,-0.081713125,-0.3957767,-0.20379877,0.7257802,0.48359993,0.2768255,-0.2370704,-0.004872021,0.056499556,-0.14105883,-0.0056909323,-0.07282746,0.12286936,-0.48184347,-0.53417975,-0.14600687,0.5150119,0.16018614,0.22767569,0.056445483,-0.18318532,0.31847382,-0.20071569,0.06760599,-0.1517382,-0.71455187,-0.1101706,-0.23162434,-0.6441753,0.3676413,-0.03805317,0.32312822,0.3140983,0.11560889,-0.118988715,0.48445326,0.07202465,0.8228044,-0.29166216,-0.043125905,-0.15680996,0.16792327,0.23126452,-0.2426218,0.07008125,-0.29903525,0.026522985,-0.38588327,0.3484206,-0.11712916,-0.25596815,-0.16730064,-0.089670494,0.251207,0.5214268,-0.28117678,-0.09237874,0.11475515,-0.1463518,-0.326633,-0.15144938,-0.19049653,0.20368077,0.19988397,-0.12944561,-0.07777286,-0.20962366,-0.16664776,0.096030876,-0.02708766,0.37081617,0.40191144,0.30511045,-0.1539879,-0.112117365,0.068993844,0.69137853,0.06694553,-0.23729406,-0.36005613,-0.6165641,-0.36396912,0.35405487,-0.03925738,0.20846996,0.07780748,-0.30843925,0.71310055,0.053700462,1.0884024,-0.028675951,-0.3909083,0.06308083,0.46393007,-0.04816785,-0.14417374,-0.24490665,0.956145,0.48494735,-0.10594468,-0.05770951,-0.31425765,-0.06934273,0.31631902,-0.27162477,-0.2770139,0.16513942,-0.4800437,-0.020469945,0.26837882,0.0050416198,0.23534459,-0.20119675,0.04408173,0.4029589,0.17268068,0.2161089,-0.49853304,-0.11222979,0.35718757,0.35825354,0.08174043,0.114733234,-0.48206037,0.30608994,-0.4852487,-0.07501722,-0.38179478,0.27003968,-0.0957642,-0.28010014,0.22790295,0.1745,0.5150931,-0.23042327,-0.36196524,-0.0047710827,0.4628309,0.1094243,0.17304057,0.49112236,-0.27245897,-0.062677346,-0.13195449,0.4243137,0.90816104,-0.22501875,0.0070204875,0.37422472,-0.31919786,-0.70194113,0.33030716,-0.533016,0.24851006,-0.031771634,-0.052381072,-0.36544788,0.28900388,0.35248086,0.1760932,0.07888793,-0.5035582,-0.34980986,0.17227837,-0.19961089,-0.29989767,-0.3901548,-0.05101759,0.7037274,-0.3128379,-0.21420108,0.06986453,0.33202246,-0.0819006,-0.55261123,0.1736022,-0.21927746,0.3590399,0.061526276,-0.33154085,-0.13415273,-0.06458848,-0.48769045,0.23507659,0.06974326,-0.25749692,0.020877829,-0.3324752,-0.12799573,0.7583543,-0.45609647,0.2585626,-0.61133456,-0.5627879,-0.8706224,-0.27904752,0.12115093,0.23765205,0.08174964,-0.7600069,0.016069688,0.028618898,0.007919559,-0.045602597,-0.322041,0.47645357,0.05710139,0.37858644,-0.15738946,-0.87578833,0.089077935,-0.0026457815,-0.2293362,-0.61544454,0.61193,0.020042915,0.8253962,0.17766245,-0.02091978,0.08448868,-0.42072266,0.22290042,-0.22130054,-0.1501786,-0.6502152,0.12550674,148 -618,0.4024722,-0.030213118,-0.70323974,-0.12266977,-0.26227942,0.26789224,-0.17240554,0.11570826,0.37192202,-0.07881392,-0.046459436,-0.12522745,0.0024436484,0.39651674,-0.09724574,-1.0119042,0.079787135,0.16462995,-0.623018,0.47972125,-0.47968924,0.5543801,-0.028169185,0.34536716,0.11440873,0.35000977,0.018079208,-0.042637113,-0.24321002,0.1375566,-0.11643309,0.3733475,-0.44152725,0.029477509,0.07483994,-0.3069414,-0.084865525,-0.28421706,-0.2275214,-0.7069121,0.39514616,-0.67170936,0.67567784,-0.040846094,-0.20658122,-0.013028002,0.076905124,0.40467185,-0.24124986,0.1814515,0.10479735,-0.30768389,-0.16307156,-0.050665755,-0.45034873,-0.47909853,-0.59279704,0.051137768,-0.61068743,-0.15818636,-0.16553393,0.2793974,-0.39306176,-0.24200909,-0.0850314,0.36408103,-0.33007333,0.23427035,0.46063307,-0.2313242,0.12677325,-0.50165874,-0.16790439,-0.025374921,0.45592594,-0.21763992,-0.2822775,0.11317646,0.5589335,0.50459576,0.042897698,-0.24322602,-0.31223726,0.06407689,0.055296674,0.6184308,-0.08416036,-0.2961109,-0.2234602,0.10112017,0.21543209,0.24648325,0.04839247,-0.39229518,-0.06404739,0.046088345,-0.030361596,0.4776526,0.37656802,-0.37233183,-0.27069473,0.39655733,0.48048204,0.21462907,-0.21795405,0.3536261,0.039994005,-0.5776795,-0.1330044,0.23276186,0.115320645,0.5873574,-0.14094073,0.17511867,0.7599501,-0.18870418,-0.17956528,-0.055928025,0.011748182,-0.08153139,-0.2013358,0.1386266,0.16516179,-0.34580266,-0.0064508365,-0.15346923,0.5596885,0.16130352,-0.76356757,0.36110088,-0.6055402,0.20411006,-0.17086817,0.63172793,0.9554822,0.26193693,0.32165942,0.90348345,-0.47993928,0.056207962,0.18243586,-0.59250295,0.07597765,-0.10283303,0.044532213,-0.6009816,-0.051015396,0.03601047,-0.05736017,0.2515258,0.35288483,-0.5015826,-0.13996808,-0.06237507,0.64245486,-0.38271654,-0.35777956,0.77952987,0.8301453,0.75440127,-0.0149058215,1.3169545,0.43494388,-0.19993195,0.15818864,-0.5311168,-0.5095819,0.1910603,0.18718252,-0.81075513,0.5407866,0.05591447,0.043526486,0.4669531,-0.059077345,0.0012100202,0.0746486,-0.0069414238,0.11967437,-0.23452559,-0.34614664,-0.14700237,0.08015156,0.0029364754,0.145321,0.18170847,-0.36013988,0.28686902,0.095085576,1.3900793,0.10746657,-0.020820769,-0.17086905,0.26667005,0.28389937,-0.25217727,-0.16334105,0.381122,0.3224573,0.011698349,-0.5212077,-0.07845537,-0.28109393,-0.29946205,-0.27461106,-0.32956064,-0.041688517,-0.143302,-0.4177861,-0.047437146,-0.058648188,-0.3720205,0.69159186,-2.6738532,-0.25436446,-0.14173585,0.3264733,-0.21322045,-0.39882505,-0.4763363,-0.40490583,0.07770621,0.2897708,0.3374847,-0.7189201,0.33761904,0.37259012,-0.48249838,-0.30476624,-0.5189676,0.016036604,-0.016313136,0.13627408,-0.07951164,-0.12540746,0.0027910883,0.2229369,0.55551296,-0.123676986,-0.056299943,0.21982695,0.5846732,0.034686998,0.47476885,0.04653186,0.6804148,-0.06547982,-0.24864785,0.34898221,-0.39264092,0.288631,0.1748487,0.12020779,0.3456219,-0.30196398,-0.9616959,-0.48946315,-0.26063803,1.1303588,-0.42587882,-0.3646219,0.23717001,-0.17448027,-0.39053524,0.03688381,0.48707926,-0.1985031,-0.10968125,-0.76216626,-0.06696255,-0.012090476,0.077855974,-0.062187966,0.15682599,-0.1508045,0.55389315,-0.17231849,0.2091592,0.25742123,0.2108728,-0.2748094,-0.4789266,0.10064234,0.8583604,0.3409524,0.09633221,-0.15081078,-0.31589666,-0.29479116,-0.16706559,0.15040675,0.6386475,0.6233054,0.0676941,0.16930892,0.3531334,-0.08988183,0.084205315,-0.14661744,-0.37012944,-0.011062283,0.024245968,0.6310181,0.64215714,-0.16698454,0.6775706,-0.009079938,0.027374946,-0.1943817,-0.57127404,0.6789455,0.8685845,-0.18010558,-0.37787566,0.48330864,0.20854174,-0.5265131,0.30031058,-0.55300367,-0.1648714,0.7398873,-0.19794512,-0.37389076,0.2791258,-0.35237688,-0.008845996,-0.98649085,0.11864115,0.025986016,-0.4364572,-0.21203884,0.013852773,-4.0714626,0.13942602,-0.15584418,-0.110589795,0.008687899,0.07798365,0.18000998,-0.57766116,-0.6577826,0.07526329,0.06675453,0.50726575,-0.23065533,0.16506328,-0.2997869,-0.35148752,-0.10887297,0.21584381,0.097663894,0.3399169,-0.03477426,-0.41618893,0.05920323,-0.2531595,-0.49500117,0.074443325,-0.57943046,-0.6749667,-0.1250277,-0.67910105,-0.2162644,0.83901775,-0.5395288,-0.17365327,-0.2616465,0.10552228,-0.113455944,0.34762394,0.06585277,0.22728676,0.22360252,0.048909076,-0.12659055,-0.2394986,0.35464472,0.082786255,0.28244355,0.41393244,-0.06817141,0.34976858,0.58430237,0.62439126,-0.022730704,0.8558257,0.37681276,-0.043811295,0.27035028,-0.3472985,-0.06636877,-0.643952,-0.33130562,-0.3773434,-0.5025393,-0.5881252,-0.28820422,-0.3585193,-0.779409,0.43464887,-0.05475964,0.27510425,-0.12526849,0.4287234,0.5597044,-0.14856815,0.10124932,-0.13748556,-0.27063486,-0.30869463,-0.34091422,-0.5559987,-0.6568556,0.46179837,0.8675508,-0.37443975,-0.02335602,-0.0932221,-0.33825248,-0.052898917,0.08714529,0.28718475,0.3157211,0.44536978,-0.25454494,-0.6707836,0.27299008,-0.3546672,-0.20684846,-0.7793695,-0.003613252,0.71852714,-0.5933733,0.7395957,0.34208342,0.16746694,0.213907,-0.54015994,-0.2705297,0.14978406,-0.34062254,0.49341333,0.24258243,-0.5745021,0.39887252,0.17935568,-0.072550125,-0.61640763,0.6202268,-0.042173807,-0.12033172,0.030636255,0.42135912,0.14358984,0.0058735493,-0.02681436,0.1455833,-0.50347346,0.15505812,0.3912649,-0.09818367,0.51925623,0.16793683,-0.25511676,-0.7666272,0.10397529,-0.5195301,-0.31557477,0.108556084,0.058931343,0.30889565,0.13591938,0.00039884908,0.339303,-0.40424797,0.03310754,-0.034960434,-0.110291295,0.12713704,0.49140847,0.2709025,-0.53409463,0.4713235,0.054370206,0.036407854,0.11516886,0.0585531,0.5888531,0.21879308,0.39339235,0.14263731,-0.29658812,0.22635065,0.5790907,0.08253373,0.33757174,0.106116936,-0.16130158,0.15661865,0.13438915,0.20893814,-0.08711922,-0.38722706,-0.23278397,0.01453804,0.26291555,0.54922926,0.1623397,0.4052191,-0.13001502,-0.29176384,0.32346237,0.18113297,-0.018832864,-1.0565567,0.30753344,0.3518469,0.7288176,0.3674659,0.07827969,0.11757006,0.24963944,-0.37236002,0.1554919,0.45331925,-0.17781147,-0.4499338,0.5676957,-0.5961339,0.5543421,-0.12995493,0.038870566,0.1199447,0.2359048,0.2709938,1.0891678,-0.19608854,0.0035691191,0.067797616,-0.21863382,-0.054152068,-0.28484133,0.0054582036,-0.6958103,-0.16430761,0.6526413,0.6076666,0.279405,-0.29881784,-0.040334363,0.034763254,-0.1846386,-0.0701926,-0.050839826,0.1590295,-0.24938425,-0.61834687,-0.28718612,0.6046289,0.17341512,-0.05616211,0.12772863,-0.23803172,0.36467484,-0.1963749,0.034740753,-0.11792134,-0.734224,-0.11658135,-0.31147254,-0.7684796,0.471654,-0.21761595,0.30073774,0.2746983,-0.02305256,-0.44005173,0.5470391,0.13791035,0.9129712,-0.06439899,-0.1281392,-0.37490895,0.20769006,0.38400033,-0.18136877,-0.2701368,-0.36575487,0.13604179,-0.37567946,0.5459901,-0.12178552,-0.4353619,-0.16088223,0.0036065946,-0.063797385,0.39220703,-0.3310693,-0.16652685,0.088462,-0.13486014,-0.37005174,-0.01997712,-0.33014452,0.2217025,0.23311904,-0.25529078,-0.061741516,-0.14072967,-0.16240083,0.042494316,0.060215756,0.24283317,0.5046226,0.066335276,-0.31191492,-0.039276164,0.26195553,0.41369626,0.07449076,-0.13627535,-0.2272865,-0.27306584,-0.43626344,0.32136023,-0.08900155,0.19852029,0.032420896,-0.5365949,0.77106434,0.20301738,1.4103907,-0.04968116,-0.25422066,0.06988619,0.52049243,0.011788707,-0.0313895,-0.2783716,1.0166377,0.64895374,-0.108910814,-0.286925,-0.41359523,-0.1967841,0.23516554,-0.33807814,-0.066700034,-0.07380941,-0.62472945,-0.2750178,0.243687,0.11936439,0.17047961,-0.018409807,0.041483227,0.15648238,0.09169601,0.26190975,-0.5524209,-0.2088398,0.115500726,0.4533982,0.040814802,0.231398,-0.31297633,0.37746328,-0.64079106,0.18560266,-0.44131696,0.21262206,-0.12805404,-0.1804405,0.26184407,-0.048115637,0.3496038,-0.2159392,-0.08426936,-0.39807063,0.6290719,0.18219122,0.20214513,0.7332722,-0.3133694,-0.16263025,0.19539276,0.53453726,1.388038,-0.060615953,-0.05229623,0.49479154,-0.2532975,-0.7170411,0.1855596,-0.48348218,0.24336733,-0.13442887,-0.31026694,-0.31574652,0.24146406,0.0006709282,0.17157087,-0.033638816,-0.5071033,-0.20592692,0.35810348,-0.3409349,-0.2368848,-0.21172954,0.188275,0.7869901,-0.3403007,-0.3622975,0.0447105,0.24890812,-0.31021473,-0.4917978,0.2278511,-0.23695263,0.51898503,0.07616206,-0.35736653,0.04435139,0.19799335,-0.36261755,0.2500668,0.41242582,-0.39583233,0.10735715,-0.11813061,-0.24972226,1.1175843,-0.16607939,0.25199696,-0.65927315,-0.43245146,-0.85843766,-0.27011985,0.103469126,0.07250839,-0.15749463,-0.7023706,0.094247386,-0.095503844,-0.3554229,0.06654617,-0.5365692,0.43088838,0.060638025,0.4701595,-0.08859254,-1.0948961,-0.045313433,0.1821803,-0.39680386,-0.7424774,0.563504,-0.22658648,0.7875287,0.17956635,0.15292999,0.3829794,-0.39478275,0.25543052,-0.2497563,-0.019463602,-0.7789363,0.020163812,154 -619,0.6292888,-0.21912135,-0.617364,-0.07918981,-0.20058526,0.15333,-0.13463734,0.55934215,0.181387,-0.39364845,-0.047735654,-0.08098186,0.041444853,0.4035684,-0.056205682,-0.7179426,0.13075064,0.18773319,-0.35875404,0.4360347,-0.50943077,0.55410165,0.05348026,0.33736217,0.09935953,0.41454977,0.111945674,-0.05542648,-0.39010593,-0.14493014,-0.19429909,0.10579102,-0.38943797,0.016959438,-0.0059578693,-0.42157668,0.13509728,-0.49740285,-0.29468125,-0.6166221,0.26051593,-0.66882044,0.50985026,0.09173302,-0.30098847,0.19122204,-0.11140985,0.5098095,-0.2902913,0.0527734,0.05141461,-0.011755316,-0.09556429,-0.34946826,-0.14040503,-0.41662738,-0.52491707,0.0393126,-0.33108428,-0.24525264,-0.19470796,0.19486189,-0.32870367,-0.120319724,0.044221282,0.3949517,-0.33631736,0.06769446,0.21940754,-0.16482352,0.07328625,-0.5617534,-0.1701575,-0.19722691,0.32056683,-0.3087477,-0.19187516,0.17357342,0.2692815,0.38127992,-0.03987089,-0.21799248,-0.3909618,-0.062837966,-0.03728868,0.66464573,-0.1981388,-0.42049736,-0.17533812,0.044438343,0.0700053,0.15288304,0.26678723,-0.024353137,-0.09252282,0.022113167,-0.28179806,0.4062363,0.45818457,-0.3478822,-0.27614915,0.38176334,0.5778817,-0.09277497,-0.055725493,-0.1312733,-0.030676642,-0.4890062,-0.21798423,0.0825504,-0.094796345,0.5202021,0.04846608,0.331198,0.624459,-0.1719413,0.15689836,0.10968247,0.0807757,0.03644711,-0.1318407,-0.19433378,0.19284412,-0.46334055,-0.0084156925,-0.12438571,0.7884121,0.40357393,-0.68382615,0.3253358,-0.45582756,0.078454204,-0.1265177,0.3476506,0.56184155,0.4651653,0.1580115,0.7529181,-0.38696864,0.09919362,-0.12757653,-0.3503079,0.01713513,-0.104339965,0.04325936,-0.5174389,0.033210192,0.14129478,-0.26181298,0.29494816,0.24089387,-0.5695041,0.015033121,0.19016589,0.841879,-0.35787666,-0.25088325,0.68850905,0.97817576,0.816314,-0.06943534,1.0255148,0.3304498,-0.25590557,0.34045812,-0.6574182,-0.5403564,0.22573234,0.4653146,-0.23807529,0.3917298,0.108315125,-0.08363632,0.31186244,-0.11970731,0.04795356,-0.1499193,0.033938333,0.07865851,-0.14163737,-0.44037226,-0.36830473,-0.17314993,-0.07229764,0.20384741,0.2924714,-0.32086328,0.29883295,-0.12852775,1.6407783,0.043003634,0.11839212,-0.12219122,0.56582296,0.22930656,-0.23441933,-0.2489149,0.30672714,0.19796436,0.09568807,-0.49402413,0.17667256,-0.11224585,-0.49451125,-0.1674837,-0.2918362,0.08055861,-0.027658127,-0.34845352,-0.099700086,-0.013005917,-0.23812301,0.47205576,-2.7451136,-0.2898863,-0.02735072,0.3945232,-0.35571325,-0.52423775,-0.0888162,-0.50556964,0.21761295,0.3757861,0.5513519,-0.59030265,0.25995594,0.31796154,-0.49369532,-0.29120085,-0.62726754,0.0020065515,-0.009565504,0.2055607,-0.05632999,-0.10429907,-0.18728025,0.084234014,0.37672174,-0.23331454,0.050216056,0.19063601,0.36636484,0.12582181,0.35128534,-0.023352917,0.6476282,-0.2256948,-0.26509976,0.2749287,-0.484283,0.24815209,-0.12402375,0.12358076,0.3477486,-0.45890078,-0.927219,-0.6187379,-0.07364155,1.0697516,-0.11807136,-0.13924974,0.18299682,-0.26760533,-0.24473524,0.0007714675,0.40722895,0.11471284,-0.21926737,-0.55448663,-0.026935687,-0.12869719,0.1394507,0.008260993,0.041932162,-0.42132473,0.5058498,-0.028542547,0.4093665,0.099751346,0.26996586,-0.14912131,-0.27619034,-0.052276988,1.1083909,0.34024063,0.12138872,-0.25166303,-0.25959882,-0.48395458,-0.017596245,0.09089971,0.41312492,0.7600699,-0.06445934,0.06789554,0.17249082,0.00037789805,0.089699596,-0.012900431,-0.26493087,-0.073125936,-0.025043506,0.60917383,0.41457888,-0.07706876,0.6817722,-0.06170015,0.3587565,-0.19908723,-0.39298117,0.50630313,0.88988197,-0.12717803,-0.19655964,0.59105754,0.4012822,-0.27700043,0.43320405,-0.69193375,-0.30840498,0.39894226,-0.24216785,-0.1652879,0.20156255,-0.21620448,0.091906995,-0.9152208,0.2625981,-0.1922006,-0.55532545,-0.35697377,-0.01715077,-3.8424401,0.21555105,-0.10437334,-0.20262067,0.21363515,-0.13796273,0.06552032,-0.6623313,-0.3332526,0.27651125,0.13603976,0.9163503,-0.017972915,0.12505868,-0.17061864,-0.3306522,-0.25121853,0.16873609,0.105148464,0.31392986,0.013082848,-0.36883026,0.010330713,-0.24368133,-0.45870897,0.09932061,-0.6714375,-0.52899927,-0.22448635,-0.6973822,-0.20579635,0.7840065,-0.3332427,0.15592676,-0.20631978,0.07098453,-0.09473337,0.3363691,-0.048627477,0.05917178,0.18545881,-0.14515401,0.19546072,-0.4226119,0.31093693,0.24923475,0.46706152,0.2710736,-0.1443773,0.3212868,0.7477691,0.6516931,-0.05689365,0.64592034,0.42177922,-0.20385943,0.27696377,-0.2671111,-0.13833128,-0.2957692,-0.4673947,-0.1229065,-0.31463417,-0.4215026,-0.14624897,-0.41905886,-0.756287,0.5115091,-0.052697293,-0.038939126,0.009341331,0.5330498,0.4754184,-0.27860877,-0.040883202,-0.10858722,-0.03546382,-0.41566402,-0.1550017,-0.43181616,-0.43987608,0.2948087,1.1281912,-0.36063978,0.041241705,-0.022717811,-0.05449218,-0.10973089,0.015914798,0.100172944,0.05677636,0.32543832,-0.26995307,-0.5939666,0.3805205,-0.3803344,-0.23834637,-0.47958025,0.18900444,0.5872239,-0.6988313,0.41155478,0.37709582,0.16232245,0.09698674,-0.3307319,-0.19802779,0.18473212,-0.21473378,0.16657485,0.15768605,-0.7658516,0.34108675,0.3463092,-0.3784987,-0.6907165,0.5342008,0.018099526,-0.42782417,-0.1995127,0.26325092,0.22262827,0.07450242,-0.35200155,0.08217724,-0.33966562,0.15822905,0.32113713,0.010701931,0.31887025,-0.26878273,-0.17201763,-0.6334285,0.07007844,-0.3345736,-0.3038773,0.15879947,0.14581051,0.26323506,0.26434013,0.3285689,0.3356416,-0.43623108,-0.03132615,-0.040239904,-0.30731753,0.36859566,0.2675367,0.39157206,-0.45606777,0.42757818,0.018466474,-0.10100362,-0.11174083,-0.1706883,0.5619628,0.05103124,0.22595006,0.1259698,-0.40127885,0.2804913,0.68606305,0.2168684,0.3586233,0.13823815,-0.12749356,0.018215932,0.034383368,0.020526996,0.33722836,-0.53706986,0.029654361,-0.060908813,0.09102027,0.5018374,0.21199319,0.115717694,-0.052334983,-0.37391442,0.09850487,0.04025926,0.047928937,-0.99259984,0.4283283,0.12632881,0.76192737,0.29742026,0.08490988,-0.13511768,0.6041045,-0.17483161,0.17392427,0.20672153,-0.1965314,-0.47183764,0.41326934,-0.60298353,0.65221727,0.027563035,-0.010745484,-0.05559369,-0.2986012,0.5404944,1.0067432,-0.215396,0.12038079,0.023885492,-0.28424546,-0.037643116,-0.28775322,-0.07439472,-0.88912815,-0.14678194,0.74879867,0.2732251,0.34761566,0.05655428,0.031033155,0.17983331,-0.09104518,0.15889801,-0.08494894,0.22606799,0.1131423,-0.57919556,-0.2150299,0.57298636,0.13789815,0.076530986,-0.029729664,-0.08193051,0.20754282,-0.2167266,-0.11669457,-0.032569844,-0.5863446,0.011532366,-0.4356087,-0.47103554,0.4182973,0.09137245,0.28654793,0.20287389,0.15309078,-0.12734683,0.63365275,0.3207493,0.840427,-0.06072641,-0.2069614,-0.42069796,0.35249293,0.20554018,-0.25622666,0.054215625,-0.3351661,0.14081761,-0.71902055,0.4645655,-0.018634938,-0.37414882,-0.0077653984,-0.08068074,0.09383726,0.426558,-0.24718626,-0.071703106,-0.004021901,-0.18135135,-0.25343135,-0.035809003,-0.18472078,0.27631316,0.20044161,-0.21576402,-0.06272346,-0.12297856,0.14557588,0.4373214,0.05751522,0.336751,0.2827381,0.2087012,-0.21637455,-0.21117753,0.084192835,0.5468447,-0.1625688,-0.121919304,-0.51254606,-0.31488168,-0.42515692,0.2593311,-0.04737081,0.28319123,0.1050484,-0.13251303,0.7092994,-0.048213705,1.3447577,-0.0045008566,-0.3354974,0.07904853,0.44289833,-0.062224165,0.05580341,-0.48391458,1.1769178,0.37527034,-0.08464019,-0.16893265,-0.42884332,-0.17825292,0.22773787,-0.27851284,-0.1652486,0.011723823,-0.5695234,-0.38217682,0.27682117,0.17975214,0.23378108,-0.04600714,0.31215265,0.25151312,0.003429876,0.05529563,-0.4876168,-0.124604955,0.4318377,0.35460573,-0.0041101393,0.13155106,-0.5037762,0.3682737,-0.579207,0.057662275,-0.21229497,0.07307459,-0.017944088,-0.428778,0.35480568,0.24095583,0.31984502,-0.3454777,-0.44390252,-0.22930211,0.51682705,0.12262495,0.14090155,0.44062537,-0.2028908,-0.042043798,-0.16115616,0.4718424,1.0524287,-0.14118725,0.0336145,0.5480751,-0.32466623,-0.64303344,0.20853226,-0.16160539,0.21137646,-0.12110167,-0.099826165,-0.6055965,0.43540287,0.2756874,-0.07065329,-0.0060144113,-0.38292944,-0.23416933,0.17786625,-0.3669879,-0.3286844,-0.3116539,0.31417355,0.76753724,-0.269412,-0.34100708,0.14305955,0.33611885,-0.13506773,-0.29413667,-0.11874248,-0.2684823,0.28471777,0.09348909,-0.25733843,-0.26178864,-0.04459536,-0.35106483,0.2585603,0.22817132,-0.39606076,0.07093099,-0.34447938,-0.16658527,0.90045726,-0.019871086,0.2189587,-0.48666894,-0.42168742,-0.73445964,-0.5343808,0.4423408,0.090283565,-0.09334923,-0.5396607,-0.02954592,-0.10124007,-0.19409624,-0.046123743,-0.3907843,0.29373348,-0.0060454747,0.30029958,-0.067095526,-0.94018817,0.03855894,0.18702802,-0.45757276,-0.65369856,0.33330745,-0.19873825,0.9801621,0.10397398,0.04377514,0.50667644,-0.42391175,-0.106889725,-0.31210372,-0.0730274,-0.7505208,0.17502767,163 -620,0.45358515,-0.10009475,-0.5656888,-0.0207193,-0.48828596,0.2853031,-0.19544183,0.31378615,0.37675506,-0.2802462,-0.10328959,0.009893582,-0.2831957,0.1812461,-0.06793665,-0.58016914,0.03673986,0.275194,-0.7217652,0.25572607,-0.35795063,0.46445194,0.010973563,0.39946195,0.23076898,0.08419769,-0.18101457,0.1520345,-0.07042003,-0.075153045,0.10810225,0.20658422,-0.678208,0.39577022,-0.1276351,-0.3236285,-0.14751408,-0.33170366,-0.31490055,-0.8261551,0.16659483,-0.83179826,0.64237916,-0.16542329,-0.49246517,-0.27286962,-0.119922295,0.41645497,0.014323037,0.07968461,0.38439962,-0.41448084,-0.20665497,-0.29528564,-0.20168446,-0.5155973,-0.5727035,-0.040535346,-0.42884922,0.06998412,-0.19280021,0.4608674,-0.26485136,0.008944105,-0.23346265,0.36082655,-0.37900624,0.24023694,0.25773716,-0.21460447,0.08793734,-0.6731313,-0.12572226,-0.09184476,0.18578623,0.113312684,-0.29447377,0.13412954,0.21958223,0.42027366,0.11880873,-0.29529434,-0.16766526,0.16201688,0.057341855,0.43420908,-0.2630255,0.21454008,-0.17549564,0.02551962,0.6049052,0.14776835,-0.026074711,-0.3440447,0.0885634,0.004120368,-0.015800172,0.33798265,0.5643826,-0.25932595,-0.12808381,0.35775083,0.5496323,0.2103913,-0.23933929,0.40411523,0.06473175,-0.42938274,-0.03947967,0.20090213,0.06550299,0.53350854,-0.018720526,0.13721544,0.7187321,-0.15100731,-0.064128354,0.13720943,0.2651196,0.119759664,-0.09619979,-0.0894767,0.21353754,-0.4946814,-0.072557226,-0.11737059,0.66338754,0.029425321,-0.6589204,0.35543472,-0.49132,-0.12752137,-0.0428165,0.5189675,0.88363105,0.6218077,-0.029720208,0.8609693,-0.29891083,0.008209994,0.0042878618,-0.2510409,0.17531072,-0.29013854,0.15374827,-0.54202116,-0.13975519,-0.21628413,-0.19864625,0.014964127,0.45774847,-0.59121174,-0.24013421,0.07455459,0.62397724,-0.35261235,-0.05713072,0.83577704,1.058127,0.8065782,0.104123004,1.3058956,0.47825262,-0.12728713,-0.15144004,-0.21997349,-0.50756973,0.15526797,0.114266105,-0.16076007,0.2443611,0.2574069,-0.071493015,0.562997,-0.40937108,0.106199704,-0.1045136,0.032097127,0.048721615,0.0055767754,-0.49461836,-0.32191512,0.25595978,0.19468364,0.05617525,0.2061819,-0.3927178,0.43160036,0.20817715,1.1064839,-0.11495161,-0.026226869,0.0061491085,0.16782573,-0.026033968,-0.34903806,-0.19670318,0.06989002,0.3923554,-0.075605534,-0.32479703,0.025685182,-0.19651844,-0.24253973,-0.2784525,-0.11454511,-0.11046284,-0.24844693,-0.54187137,-0.32804033,0.2500505,-0.35007337,0.42394596,-2.3043542,-0.36068404,-0.120046906,0.37373126,-0.12933896,-0.45043182,-0.36259115,-0.45216852,0.0633514,0.23190314,0.26166865,-0.5400029,0.6229845,0.3805399,-0.53661186,-0.16170223,-0.7237346,-0.05165948,0.06345277,0.30337682,0.033951707,-0.18864653,-0.23833476,-0.09264811,0.53400993,-0.24885607,-0.10528713,0.5217908,0.48721212,-0.079591185,0.27475485,0.22508186,0.6971738,-0.3161895,-0.39267606,0.5033608,-0.45778197,0.20791999,0.09971524,0.14492492,0.43368372,-0.2567733,-0.80285746,-0.7379363,-0.3456931,1.2463269,-0.27663738,-0.463331,0.08328794,-0.23880683,-0.4803592,0.011279345,0.6456761,-0.10762049,-0.009756098,-0.7465562,-0.37157404,-0.0268896,0.3546929,-0.11432159,0.040268227,-0.3792076,0.7431028,-0.23384564,0.41395587,0.30255514,0.28197986,-0.05607558,-0.46958902,0.11595004,1.0414908,0.47436062,0.17683183,-0.31676757,-0.02837944,-0.10797815,0.08894549,0.003827737,0.6710652,0.576321,-0.07128433,0.029235266,0.30916497,-0.24433678,-0.037640512,-0.3001336,-0.30570602,-0.14090055,0.18875368,0.57702637,0.6625475,0.15652464,0.4640396,-0.1974335,0.16751412,-0.0738549,-0.5706626,0.33076245,0.63810974,-0.1601882,-0.340782,0.48958042,0.32897028,-0.33356413,0.23177265,-0.54697365,-0.3633858,0.40626156,-0.09792752,-0.5290784,0.1781943,-0.37773794,0.17108342,-0.64037263,0.60076654,-0.19260004,-1.0350425,-0.6726374,0.05936603,-2.8164582,0.19588616,-0.14656152,-0.032222006,0.02586126,-0.26613158,0.23948081,-0.49753934,-0.4440146,-0.038156085,0.12194652,0.60909665,-0.08449177,-0.06420083,-0.22441825,-0.39741832,-0.0946836,0.2938107,0.34600976,0.16447379,-0.119594336,-0.37865293,0.18059112,-0.3768009,-0.40441513,-0.11519731,-0.9136861,-0.8228799,0.04207961,-0.42330173,-0.18695402,0.7989695,-0.5623688,0.018923957,-0.39626738,0.031001357,-0.03231339,0.43144894,0.12541161,0.13323347,0.11347279,0.0015523159,-0.26523808,-0.35254982,0.27583554,0.11250631,0.37056458,0.5178982,-0.12671508,0.29364672,0.6927491,0.7146057,-0.07137316,1.0105121,0.33059472,-0.104262225,0.15998939,-0.036645044,-0.23843323,-0.5801908,-0.17743716,-0.0014769778,-0.6362695,-0.2273535,0.030046202,-0.2954481,-0.82050353,0.3904235,-0.013914949,0.058076657,0.10620002,0.3176012,0.5358915,-0.0374417,-0.021650888,-0.15371895,-0.18090095,-0.27630478,-0.63840735,-0.5374132,-0.80397826,0.08783564,1.7252586,-0.15100704,0.24572028,0.22012821,-0.44139525,0.13275456,0.16574635,0.06583131,-0.08461191,0.6026801,-0.19425505,-0.6397399,-0.009447777,-0.30307648,0.05513514,-0.661178,0.1611796,0.9205522,-0.79140854,0.49840733,0.27883655,0.16500425,-0.14092566,-0.4289038,-0.3101071,0.0045852205,-0.3481796,0.5349836,0.24569577,-0.5513412,0.3467706,0.08122607,-0.13292804,-0.66005635,0.36791292,-0.120132975,-0.1464014,0.09524027,0.44883904,-0.14069185,-0.1166427,-0.019023212,0.24718864,-0.33214283,0.33993357,0.17868103,-0.16576713,0.14586946,-0.10573853,-0.08767645,-0.6889379,0.020508941,-0.42803985,-0.5558336,0.13703884,0.15673052,0.1995311,0.46352932,0.30118397,0.44599965,-0.20900251,0.036388583,-0.2915561,-0.4428218,0.34883383,0.49900267,0.40037042,-0.34873602,0.43261895,0.06070792,0.12827669,-0.12407081,0.1415783,0.5648316,0.12817416,0.40822676,-0.21599147,-0.014577155,0.0962217,0.85392153,0.07513675,0.54543376,-0.017358629,-0.25221002,0.122088775,0.079397015,0.15165378,-0.15280443,-0.45647705,0.022214446,-0.17057052,0.24816039,0.41639173,0.08504018,0.30259532,-0.27108005,-0.353728,0.23185815,0.09016887,0.18240365,-1.4197527,0.31855088,0.26649377,0.75066686,0.08400922,0.18607989,0.05338568,0.50455165,-0.15674114,0.14920703,0.36160824,0.05083449,-0.17055526,0.3933463,-0.77064615,0.4524421,-0.14491734,-0.04803972,0.24590476,0.057034392,0.2949062,0.9110749,-0.18674096,-0.009857333,-0.0007238732,-0.24493164,-0.12241382,-0.36910936,0.30298382,-0.7549356,-0.45453852,0.78850675,0.6353362,0.34437352,-0.3718259,0.057238657,-0.05555539,-0.24628983,0.31604326,-0.13123679,-0.06687018,-0.14086999,-0.5362535,-0.03316696,0.50869024,-0.2126313,-0.18644479,0.13988152,-0.09532745,0.21815266,-0.062141165,0.0026827203,-0.09768367,-0.81751543,-0.061848722,-0.59962475,-0.4928366,0.21784931,-0.2226608,0.10318077,0.21605545,0.13787113,-0.24083072,0.49648842,0.30004406,0.96245515,0.174927,-0.15470658,-0.20329443,0.2247707,0.227343,-0.29052156,-0.12072719,-0.2835956,0.41329157,-0.53497535,0.2979426,-0.34824687,-0.346704,0.15980506,-0.047517262,0.059382815,0.389331,-0.20235835,-0.21252455,0.23497511,0.019530836,-0.31756973,0.117755964,-0.32607636,0.09471241,0.2253075,-0.2700903,-0.040944245,-0.23399456,-0.19130427,0.13469759,0.23539144,0.2976438,0.62199557,-0.0043620467,-0.30917087,-0.02866491,0.022973308,0.6451967,0.08228995,-0.1981124,-0.45614764,-0.20331813,-0.22863165,0.55466884,-0.041196052,0.2535985,0.060205117,-0.4148266,1.0006881,0.079292044,1.1610125,0.08364691,-0.39345983,0.083328925,0.45281413,-0.016638359,0.021339925,-0.4941035,0.9281653,0.59423995,-0.14828683,-0.12917587,-0.2709831,-0.28247148,0.41856745,-0.2692813,-0.11417646,-0.21147543,-0.9210171,-0.123208046,0.24026981,0.394747,-0.0985251,-0.012116993,0.056182083,0.22935636,0.0016044424,0.16346763,-0.5991784,0.16443355,0.29107362,0.41110766,-0.19126275,0.3159367,-0.31689167,0.37927085,-0.8898974,0.113151036,-0.46693036,-0.026018668,-0.103256,-0.32152045,0.27885333,0.15630354,0.37456387,-0.42846906,-0.14979957,-0.37934443,0.6081707,0.11550064,0.17457184,0.7383033,-0.18151195,-0.22268619,-0.038854208,0.24967283,1.1756176,-0.18605913,0.07963769,0.42179185,-0.2420254,-0.52649856,0.21543609,-0.47019857,0.0686651,-0.0742245,-0.41778266,-0.23282348,0.39130336,0.21821326,0.011852851,-0.10419785,-0.5209593,0.23711866,0.43713185,-0.30439165,-0.22682479,-0.28977606,0.3434536,0.51845926,-0.25006503,-0.4072551,-0.20196377,0.6570338,-0.35616648,-0.3708723,0.08731813,-0.4156183,0.25399634,-0.024230016,-0.49595183,-0.13349344,0.08879871,-0.466582,-0.03251581,0.39122704,-0.41242072,0.07301282,-0.049303368,0.122086324,0.9189405,0.02411437,0.2272032,-0.54953605,-0.58734596,-0.8429663,-0.46111506,-0.1482591,0.5694876,-0.1763466,-0.5500404,-0.119011715,-0.27047026,-0.15140446,0.02678277,-0.5441404,0.41121277,0.26244605,0.65892726,-0.3055306,-1.1225471,0.034431048,0.22790122,-0.3393882,-0.39823526,0.5171979,-0.20583676,0.7790461,0.020538999,0.17269771,-0.08902314,-0.56082207,0.419033,-0.28957394,-0.07306288,-0.881229,-0.060627773,164 -621,0.47664076,-0.34851676,-0.22067484,-0.1956535,-0.02442694,-0.07220877,-0.21099809,0.50761235,0.002242556,-0.6929928,-0.3422265,-0.19133854,-0.07442594,0.3168712,-0.18044257,-0.67682517,0.016583048,0.053763714,-0.40238678,0.76206005,-0.58374655,0.25728947,0.09363433,0.4297592,0.022776214,0.14020847,0.3146787,-0.114466414,0.025752237,-0.3459177,0.06751347,-0.049179725,-0.6442524,0.42681998,-0.20547542,-0.24756214,0.01082447,-0.28089744,-0.25212654,-0.957363,0.14287005,-0.7931064,0.36412445,-0.003927748,-0.4463129,0.36619237,-0.10241662,0.24809504,-0.21613945,0.094689146,0.18979383,-0.1253487,-0.100259185,-0.12095552,0.1675024,-0.4917382,-0.5505189,-0.011115434,-0.4177744,-0.23226136,-0.31783614,0.16320327,-0.39841762,-0.099498205,-0.20612992,0.49390966,-0.56121004,-0.37091967,0.10128772,0.039672427,0.5928485,-0.63687545,-0.20752393,-0.20788643,0.2523504,-0.08291641,-0.07705346,0.27836066,0.09825237,0.39245906,0.14230601,-0.104561955,-0.046102967,-0.038913526,0.27845815,0.3743523,-0.063544504,-0.5926863,-0.12397264,-0.21067175,0.18806471,0.21727857,0.10659066,-0.11043466,-0.021426719,0.1371284,-0.21117339,0.24999288,0.42524716,-0.12111088,-0.327203,0.2141756,0.5968529,0.18701185,-0.10537264,-0.007085259,-0.015697401,-0.5582023,-0.20193808,0.24734521,-0.2772495,0.57701993,-0.2940126,0.19392285,0.5835463,-0.25809044,0.11076928,0.011876661,-0.007597474,-0.067957744,-0.16640645,-0.4172597,0.50364345,-0.5678436,0.09838152,-0.6088918,0.71535563,0.18321928,-0.6348127,0.3664616,-0.42185423,0.06783409,-0.037580714,0.73017025,0.7177362,0.33141625,0.24000856,0.5711742,-0.5018835,-0.10462611,-0.12753838,-0.26325142,0.046204906,-0.2293217,-0.008480008,-0.33658698,-0.053447742,0.081383415,0.04325026,-0.24442254,0.3262968,-0.5936928,0.0014058695,0.18410693,0.61205584,-0.31021038,0.2448678,0.8933616,1.1135954,1.1376472,0.22391804,1.234076,0.3158954,-0.19795582,0.17478803,-0.04959487,-0.6158059,0.28648573,0.4629044,0.45814073,0.1415341,0.0043261508,-0.054516535,0.50043976,-0.6008719,0.09061828,-0.3178881,0.3480863,-0.11298255,-0.14094418,-0.6683209,-0.21370807,-0.086590365,0.102927975,-0.07003654,0.22037004,-0.08964432,0.19899155,0.16212656,1.0820578,-0.21872808,0.08552742,0.030770402,0.49877775,0.12137545,-0.23497622,0.16622676,0.17804813,0.5444054,0.13924763,-0.6829059,0.12894037,-0.22330274,-0.50521284,-0.12162668,-0.19900492,0.26860735,-0.092386365,-0.40992865,-0.2027343,-0.0027346886,-0.4666669,0.3656198,-2.4488804,-0.33659795,-0.23956959,0.16051593,-0.24404451,-0.26965427,-0.0136329895,-0.5083425,0.60336524,0.3480732,0.47241652,-0.57510144,0.31600773,0.5047234,-0.5040869,0.08272861,-0.6790698,-0.32492077,-0.22054107,0.50537646,0.29762846,-0.023083966,-0.11251826,0.22176702,0.59674555,-0.03025186,0.15900093,0.10628157,0.21173829,-0.038764033,0.45279276,0.16828275,0.42821547,-0.26272193,-0.095786616,0.347772,-0.33226007,0.20714822,-0.24778311,0.2670488,0.35099223,-0.51752025,-0.7666547,-0.78259337,-0.8440463,1.2546731,-0.016141195,-0.591431,0.301068,-0.075421095,-0.2382594,-0.13799883,0.32375148,-0.28879339,0.11702558,-0.7573248,-0.061883967,-0.109353215,0.25427294,0.043298576,0.052394655,-0.6807529,0.8463563,-0.028975172,0.27397534,0.38716623,0.2570609,-0.35629523,-0.4275083,-0.07152157,1.0089469,0.5813102,0.08747398,-0.2533922,-0.19646618,-0.30943775,0.07414949,-0.0007697275,0.5224999,0.955389,-0.057070494,0.06290846,0.18830818,-0.033725582,0.055571374,-0.017105095,-0.33807823,-0.13848712,0.035296127,0.7123225,0.5004373,-0.08820197,0.24846832,-0.15108292,0.33095652,-0.19552884,-0.30296966,0.5458982,0.99402803,-0.056986377,-0.022526551,0.53787225,0.6251049,-0.081700094,0.5235111,-0.7105504,-0.345241,0.40108493,-0.09470503,-0.39885712,0.19283718,-0.37322012,0.23792921,-0.872564,0.4367221,-0.69417924,-0.5448717,-0.84209925,-0.07184452,-3.1662738,0.27174443,-0.123401865,-0.23193401,-0.16426262,-0.31050208,0.4214702,-0.7422372,-0.57967365,0.27405277,0.039052382,0.6798115,0.024098288,-0.049502216,-0.3633713,-0.33495456,-0.35240558,0.122048415,0.02385721,0.09077522,0.032091398,-0.388161,-0.027002582,-0.24191563,-0.3561083,0.037835333,-0.5448761,-0.67894936,-0.26194736,-0.42240953,-0.3767126,0.63781077,-0.1364492,0.09376453,-0.08863127,-0.055352755,-0.100384355,0.34399146,0.066172674,0.26181,0.011061054,-0.13060194,-0.14534643,-0.24893202,0.12565948,0.2785071,0.1526714,0.40542296,-0.52173704,0.18555993,0.483662,0.5877306,-0.23138016,0.910575,0.44163984,-0.22269493,0.36426273,-0.18908808,-0.40575176,-0.68239844,-0.29748964,-0.024456529,-0.3379772,-0.59146184,-0.05884185,-0.36297458,-0.68964857,0.6300368,-0.03695385,0.21819848,-0.07260917,0.05887811,0.21657664,-0.06263506,-0.08559508,-0.11575126,0.009920446,-0.39586395,-0.31066784,-0.8610721,-0.46815225,-0.18000475,0.92174184,-0.05577402,0.035150457,0.092687,-0.25135082,0.2151083,-0.08645275,-0.04662347,-0.08402531,0.28569022,0.1907726,-0.7307777,0.69221914,0.2337291,-0.23675302,-0.44462246,0.25778395,0.8436166,-0.57231563,0.3714945,0.40591037,-0.11082309,-0.17085114,-0.5795866,-0.12826182,-0.023789007,-0.3397857,0.48844507,0.18552534,-0.6568771,0.61340374,0.2796473,-0.14267889,-0.7674909,0.5132106,-0.08762957,-0.14708385,-0.042811632,0.3636665,-0.11888332,0.32804075,-0.2657836,0.41749606,-0.5158616,0.2378931,0.29779947,-0.003419424,0.362382,-0.12521195,-0.043128528,-0.790316,-0.096413665,-0.56317586,-0.28300664,0.23536602,0.007329143,-0.16567326,0.35971826,0.18752742,0.41479975,-0.12573296,0.16082597,-0.047263246,-0.33649474,0.27687123,0.5783783,0.37513316,-0.277333,0.59584224,0.121654525,-0.05600706,-0.49868932,0.032796107,0.3534835,0.08531288,0.42671555,-0.22861105,-0.07792713,0.42240193,0.88147485,0.21929139,0.57624763,0.068886004,-0.17996232,0.42387292,0.1283167,0.44674474,0.07161664,-0.35847208,0.08558856,0.07845705,0.030937748,0.35249296,0.017799735,0.27642673,0.0044797203,-0.2249844,-0.035287913,0.29226768,-0.06833711,-1.4165742,0.503019,0.23938744,0.8138171,0.7818236,-0.072909795,0.13372687,0.6574173,-0.2859527,0.043437146,0.17609371,0.05126532,-0.5266784,0.6321819,-0.75928295,0.2465853,-0.061277136,-0.013318672,-0.05452742,-0.141979,0.50429565,0.67258334,-0.17960241,0.046146426,-0.23335439,-0.13440758,0.3447,-0.47542036,0.17689769,-0.2182784,-0.32267824,0.6953463,0.52829045,0.31368417,-0.14796449,0.006873266,0.0821503,-0.11765515,0.32910743,0.016386935,0.013070395,0.0051820003,-0.56645846,-0.22190253,0.46237656,-0.015678708,0.18594867,0.1112078,-0.33634293,0.08822755,0.030454049,-0.13343175,-0.040924434,-0.7893528,0.12914872,-0.38033056,-0.027218966,0.5781439,-0.31298286,0.26244608,0.15850295,0.039404087,-0.15022352,-0.23086992,0.18892911,0.49228984,0.12039817,-0.29034176,-0.29089582,0.11208406,0.15435164,-0.33638948,-0.023687784,-0.14527224,-0.03622572,-0.685638,0.4517393,-0.03773331,-0.23706405,0.2532433,-0.13237245,-0.13898781,0.4975294,-0.20353907,-0.1943998,-0.014772203,-0.17084026,-0.07176953,-0.13567029,-0.017039133,0.29437235,0.08157653,0.16257617,-0.09537716,0.07123684,-0.072937496,0.6110191,0.28353006,0.27221876,0.37330818,-0.16578014,-0.5155412,0.052498393,0.024647256,0.38983056,0.102446094,-0.024045793,-0.11473537,-0.5364539,-0.40515238,0.1692765,-0.11553991,0.34892273,-0.029694628,-0.230831,0.7561535,0.2210912,1.1829859,0.07928297,-0.40419468,0.04425969,0.56557375,-0.10634605,-0.12843014,-0.3618596,0.84825146,0.42159718,-0.2771528,-0.08715845,-0.33691865,-0.061562512,0.30740488,-0.16895366,-0.062195007,-0.06684815,-0.74320626,-0.36005503,0.26085976,0.36700037,-0.06308623,-0.11108413,-0.099734314,0.28151688,0.14921294,0.43335602,-0.5832957,-0.053033408,0.4081511,0.100327104,-0.024109712,0.04171861,-0.22112063,0.35456768,-0.75334257,0.158197,-0.24878184,0.09569471,-0.1863371,-0.3086797,0.18249765,0.0641255,0.29416,-0.32506114,-0.4928128,-0.086732,0.4327114,0.1579189,0.16769013,0.5751067,-0.26662806,0.15780681,0.14983234,0.4506814,1.1203387,-0.2440636,-0.089431174,0.2462377,-0.5520904,-0.5834647,0.16971575,-0.30030853,0.3099596,-0.19944565,-0.46715686,-0.64112,0.23809195,0.30306152,-0.11844381,0.14270362,-0.62425065,-0.28399938,0.39885357,-0.3142448,-0.27915102,-0.3078105,0.096557274,0.58100426,-0.49789274,-0.40535495,-0.0021809111,0.16040945,-0.5023355,-0.60930544,-0.032468013,-0.36338872,0.4831393,-0.003010713,-0.37733138,0.13133852,0.14269866,-0.45481104,0.013982648,0.14926805,-0.35470915,0.038091406,-0.2879297,0.055169187,0.84184164,-0.061690368,0.019474354,-0.52153677,-0.4980462,-0.8231499,-0.40100625,0.7532331,0.2488056,-0.018629197,-0.5688072,0.12427889,-0.080624074,0.19679517,0.013533986,-0.25299257,0.2828561,0.20143414,0.50671065,-0.017149618,-0.6738315,0.30146438,0.21113577,0.04255016,-0.43862948,0.5069361,-0.02910871,0.6502634,0.10093616,0.13376054,-0.039280884,-0.5416803,0.25583535,-0.11524666,-0.162476,-0.62456924,0.10586458,169 -622,0.43909267,-0.19819227,-0.2851422,-0.16326417,-0.1530015,0.034272857,-0.21820332,0.3575476,0.20625731,-0.47130612,-0.29976174,-0.26273486,0.1278845,0.3762991,-0.2106073,-0.6055124,-0.03375524,0.13839816,-0.3611321,0.60787314,-0.4853061,0.1920444,0.10703576,0.4561946,0.2857412,0.11405896,0.21168683,-0.17583427,-0.20475857,-0.28890026,-0.106325895,0.38252708,-0.72264683,0.27763954,-0.13713011,-0.32570663,-0.015657496,-0.36711296,-0.41106626,-0.8074525,0.21863113,-0.9757862,0.42738774,0.16594537,-0.25932437,0.3769881,0.19380614,0.20435153,-0.21703172,-0.09472808,0.18005091,-0.3006589,-0.18126033,-0.07212616,-0.03702226,-0.39785114,-0.6348453,0.07875768,-0.37486437,-0.13373142,-0.47589138,0.19087833,-0.32097685,-0.019143214,0.08016272,0.5137959,-0.4467931,-0.06684519,0.16817181,-0.14882912,0.45289284,-0.5525525,-0.3002249,-0.15944704,0.22055973,-0.27820545,-0.21044558,0.3322088,0.3560282,0.46297053,0.018267252,-0.16994278,-0.274437,-0.08716007,0.13495363,0.3952332,-0.25059906,-0.6683836,-0.07541443,-0.12433961,0.28115574,0.19272739,0.066134706,-0.24959055,-0.038836196,0.10706169,-0.2943718,0.37938344,0.53407675,-0.27568254,-0.3920363,0.23257788,0.45416948,0.046553418,-0.021744935,-0.04479198,0.09030687,-0.40957293,-0.09523574,0.10778424,-0.3656279,0.6239684,-0.23807772,0.11975439,0.7326832,-0.3153543,0.111995965,0.10456533,0.05772672,-0.11917679,-0.18480007,-0.4100771,0.3081559,-0.5744496,0.18994313,-0.33684048,1.0111932,0.15344247,-0.6695105,0.24934033,-0.5529122,0.16849783,-0.22328326,0.7037311,0.6999152,0.42752773,0.4747316,0.6193275,-0.5228245,-0.015713416,0.005389234,-0.313888,0.15578482,-0.38872975,0.02827793,-0.3773258,-0.1494103,0.13751009,-0.06690118,0.038382895,0.3991747,-0.4966645,-0.034965817,0.17177725,0.77106607,-0.2854177,-0.014769146,0.7629001,1.11279,1.0348536,0.17328757,1.186417,0.35686156,-0.16278793,0.13066873,0.005603309,-0.6685581,0.33060327,0.37503022,-0.2675784,0.0853865,0.07398062,-0.021049835,0.3315169,-0.6710501,-0.031904038,-0.23282312,0.25348112,-0.01086308,-0.056709416,-0.4781616,-0.35377863,-0.03037714,-0.031346798,-0.028780947,0.36407387,-0.12403551,0.49711683,0.11528846,1.0425187,-0.0701036,-0.010402739,-0.07420756,0.6103766,0.019202547,0.011787222,0.052367512,0.20829996,0.42448142,0.11929855,-0.71294504,0.121927746,-0.23323403,-0.45115936,-0.22208677,-0.34583628,-0.002360717,0.12762037,-0.22469448,-0.17567986,-0.19645882,-0.21198283,0.5381843,-2.5579436,-0.045993898,-0.06611133,0.16755547,-0.13708217,-0.15109856,0.0136470515,-0.59256274,0.5374862,0.3761442,0.5342516,-0.71405894,0.10878175,0.5049512,-0.56559664,-0.21651822,-0.77640593,-0.16332634,-0.12219075,0.42856374,0.06425292,-0.049815528,0.046211403,0.02546694,0.60785997,0.1325919,0.18327552,0.16517378,0.30290553,0.042335745,0.3442046,0.15757273,0.47557625,-0.31694204,-0.23037912,0.41629127,-0.3736973,0.30682582,-0.23775242,0.017970165,0.43724093,-0.3383784,-0.8863074,-0.7868029,-0.5091698,1.2452604,-0.21617723,-0.5798,0.24455863,0.055464193,0.045799576,-0.006424372,0.37805653,-0.23497353,0.036961637,-0.86534476,0.019494763,0.030148549,0.19351894,0.046953455,0.051535275,-0.48461592,0.6117576,-0.0717197,0.2064253,0.35704437,0.25225767,-0.438082,-0.6895152,0.05617889,1.0376296,0.40837485,0.25655746,-0.32341924,-0.3379785,-0.28430408,-0.16664106,0.14645174,0.50274694,0.7570962,-0.06150317,0.16521165,0.26556438,-0.104007706,0.050661862,-0.10281475,-0.3922207,-0.17344196,0.22220062,0.72772056,0.6611664,-0.14955649,0.3668615,-0.044568352,0.24422798,-0.050650734,-0.43925518,0.70680994,1.1253537,-0.118237264,-0.12655763,0.7587328,0.5815708,-0.3090502,0.6084343,-0.6877916,-0.5514402,0.61723477,-0.16909687,-0.5471524,0.08814759,-0.42386422,0.156278,-1.0521764,0.4285069,-0.35328737,-0.42537925,-0.65658385,0.03784957,-3.309523,0.107814424,-0.37660775,-0.17347027,-0.24048258,-0.24077217,0.4161863,-0.5291971,-0.5249619,0.2390852,0.118655525,0.6105514,-0.006576822,0.21024425,-0.3126957,-0.1029426,-0.26271412,0.22076339,0.2907058,0.2627807,0.010555308,-0.48811376,0.22036828,-0.091289096,-0.34379548,0.0028676367,-0.48189676,-0.6356983,-0.21594623,-0.50819266,-0.37747085,0.5610869,-0.5511903,0.06794703,-0.2031106,0.0068712602,-0.2660778,0.35870603,0.20692846,0.16535881,0.05392548,-0.010551769,-0.11593868,-0.34272173,0.39220974,0.043155484,0.05185555,0.3818043,-0.20367765,0.15928735,0.5459616,0.51643765,-0.076283075,0.92006016,0.47273657,-0.03485397,0.2605944,-0.33675745,-0.40382516,-0.7020773,-0.32739285,-0.17234072,-0.32471746,-0.3776291,0.007222164,-0.28125006,-0.8114477,0.6137097,-0.10919891,0.33531874,-0.19443956,0.24836475,0.39698452,-0.24212262,-0.1065615,-0.11269304,0.00698951,-0.7307613,-0.20613256,-0.78206474,-0.54949147,0.07763077,0.7620761,-0.13655208,-0.07370741,0.103694476,-0.10970264,0.107480325,0.2095515,-0.038759585,0.037244353,0.57896656,0.109818704,-0.83692276,0.59198755,0.063717455,-0.065053016,-0.6267928,0.3687293,0.62135404,-0.7208265,0.42274967,0.6093812,-0.029815426,-0.04267114,-0.48002535,-0.30430177,-0.24201587,-0.16622011,0.37846082,0.18067844,-0.79356,0.530959,0.40542632,-0.26647016,-0.7851318,0.5493343,-0.006041678,-0.12346638,0.16963045,0.3434046,0.19144191,0.08747797,-0.10182015,0.20720537,-0.4659069,0.28501865,0.09184143,-0.08426164,0.38292557,-0.1400514,-0.092221566,-0.8561373,0.06310268,-0.5251429,-0.26904666,0.0920176,0.073410034,-0.12109751,0.34439597,0.09086467,0.40603468,-0.10727361,0.073378585,-0.13777536,-0.34096915,0.34583458,0.57114804,0.52286786,-0.43806523,0.7594561,0.066659205,-0.15282384,-0.109964415,0.010129475,0.39275837,0.13712515,0.35081065,0.12546064,-0.3323068,0.21528523,0.7330192,0.18570012,0.5738912,-0.047802787,0.001686275,0.37051913,0.16617237,0.28790885,0.049456183,-0.5187646,-0.08305835,-0.4686216,-0.020783829,0.50399905,0.11846157,0.42088002,-0.12818323,-0.11648483,0.034401715,0.038157463,-0.029210063,-1.156487,0.4692826,0.21442547,0.6841308,0.64440686,-0.14594579,0.16821851,0.78297544,-0.37676418,0.0050977594,0.36136296,0.21715233,-0.5042589,0.68094975,-0.87753254,0.4116084,-0.17974363,0.13951775,-0.06367612,-0.03026809,0.3201499,0.8157496,-0.22379485,0.058542363,-0.072608724,-0.3910485,0.31952617,-0.45761812,0.21941763,-0.5017955,-0.17284921,0.74887836,0.47855127,0.29135334,-0.18444262,-0.059235968,0.062040273,-0.12383412,0.2743749,0.026309889,0.014438712,-0.056333356,-0.6051743,-0.18541215,0.62597185,0.004594363,0.19292644,0.0150187295,-0.15913273,0.29770246,-0.30469128,-0.030373152,-0.08170894,-0.6763171,-0.12480216,-0.2874768,-0.38198745,0.5917861,-0.43593374,0.19724132,0.21850087,0.15969276,-0.253977,0.09231683,0.24360286,0.5478364,0.11620903,-0.34685114,-0.36418825,-0.003128084,0.24728945,-0.17418163,-0.22909194,-0.08494007,-0.11329719,-0.47833017,0.49317396,-0.29341665,-0.163929,0.078605205,-0.26498425,-0.023496522,0.6102091,-0.023641856,-0.14260253,0.18450461,-0.14231429,-0.2777755,-0.1302654,-0.11382853,0.28680024,0.27605394,0.05140578,-0.19958463,-0.27974442,-0.20134386,0.29047954,-0.11066453,0.27550504,0.3119224,0.06278772,-0.28539884,-0.18468904,0.065008506,0.43445662,0.06869432,-0.18188961,-0.15824877,-0.41269472,-0.33406317,0.04637963,-0.136623,0.24666384,-0.0038009034,-0.41838852,0.72986054,-0.13337444,0.99965465,0.012096967,-0.4766335,0.12348202,0.49129847,-0.15514758,-0.051894136,-0.29932737,0.89393675,0.44675958,-0.16333954,-0.17094828,-0.5953527,0.046207152,0.26398155,-0.16922225,-0.20263806,-0.051667623,-0.61217415,-0.34560552,0.36378437,0.4436115,-0.023056097,0.018660618,-0.042248204,0.26029742,0.13757831,0.6526473,-0.50687003,-0.07574176,0.34891242,0.30530232,0.021102218,0.14074276,-0.27074462,0.43946213,-0.5962935,-0.02073862,-0.3825726,0.041622803,-0.41254786,-0.3356735,0.20029235,0.1315203,0.40792227,-0.1578024,-0.33047566,-0.24633199,0.5661447,0.11692,0.0912946,0.6213572,-0.285271,-0.035694595,0.047179278,0.46380454,1.1136775,-0.3725672,-0.029878823,0.18179105,-0.32688463,-0.5950274,0.60098743,-0.60556614,0.15193973,0.0983254,-0.32929686,-0.5218058,0.052620776,0.2674065,0.0981205,0.18864878,-0.6217238,-0.14054781,0.21389325,-0.2798929,-0.24542156,-0.22696151,0.23506238,0.49456835,-0.36533037,-0.19001985,0.055440526,0.31243452,-0.21749766,-0.55265695,-0.067496344,-0.27997497,0.3678767,0.18594998,-0.41814497,-0.072696514,0.26099417,-0.4418352,0.0025356503,0.11393236,-0.35966602,0.1011,-0.34978908,0.28653458,0.7217778,-0.16325396,0.18236017,-0.7367264,-0.37366262,-0.7984822,-0.31349266,0.60106915,0.26969716,0.10181706,-0.53168315,0.03318704,-0.12679504,0.059210487,0.0037794297,-0.5695573,0.56177074,0.23303911,0.45558354,0.083296224,-0.702227,-0.015253002,0.07490198,0.03167804,-0.70261997,0.503383,-0.10911744,0.80147636,0.1451526,0.12731025,0.22057398,-0.5238332,0.008767857,-0.20406574,-0.3076145,-0.6864863,0.055350836,174 -623,0.23508285,-0.13497165,-0.70761263,0.03973901,-0.4161046,0.15051955,-0.39106977,0.08477128,0.1993538,-0.55698836,0.012265637,-0.26266837,-0.06311646,0.29103345,-0.035220437,-0.53381926,0.052783545,0.44032186,-0.6261978,0.7250906,-0.37647003,0.27201578,0.28227976,0.24576154,-0.098706454,0.070217684,0.23289187,-0.18862425,-0.049948674,-0.23455653,-0.13850711,0.083456315,-0.5596725,0.39475626,-0.07461907,-0.39062655,0.1610638,-0.34857857,-0.13620299,-0.66392887,0.009306147,-0.7560407,0.6305184,0.11235228,-0.25738412,0.2290423,0.3808214,0.20060757,-0.069170214,0.0487634,0.21572201,-0.48787135,-0.61032295,-0.422109,-0.37359473,-0.46902063,-0.5682844,-0.14751595,-0.53167516,0.116918966,-0.34575206,0.37841687,-0.36328653,-0.12733687,-0.20996942,0.413987,-0.33041957,0.32098168,0.1623242,-0.32366997,0.11198903,-0.50505,0.017905822,-0.13175549,0.18445018,0.21684207,-0.27920386,0.14622304,0.26685187,0.7075673,0.20113581,-0.29005948,-0.32209042,-0.22043107,0.1341477,0.56931126,0.019553801,-0.040421046,-0.21677485,-0.2627158,0.25710118,0.33974805,0.00540118,-0.22291343,-0.1731403,-0.36526102,-0.28889495,0.12207244,0.42376012,-0.37682426,-0.13936864,0.4386967,0.26184615,-0.11822883,-0.18106978,0.15810393,-0.05478339,-0.5846714,-0.2680443,0.22278056,0.05907353,0.49920756,-0.2215895,0.3649336,0.61684597,0.00635491,-0.3334144,0.08145322,0.00029083856,0.045650266,-0.28122193,-0.07622487,0.3570366,-0.54738486,-0.09843208,-0.4049086,0.7972942,-0.071041234,-0.66775507,0.37086293,-0.61611336,0.1296947,0.05248906,0.78813577,0.7463046,0.7582734,0.08550675,0.8742007,-0.35281834,0.25646466,-0.24447481,-0.25767827,0.16398628,-0.04966702,0.46825936,-0.36606914,0.18503952,-0.11460078,0.0016208612,-0.008760769,0.8436223,-0.46189374,-0.3397355,0.039151587,0.8491,-0.27382553,-0.14633083,0.66781294,0.8576132,0.9189748,0.07181342,1.274213,0.3830508,-0.14662439,-0.24744003,-0.03671768,-0.8359372,0.1596975,0.091832645,0.5566454,0.10237789,0.14403298,-0.24966821,0.53333306,-0.18580039,-0.23759486,-0.24445167,0.25149325,-0.1664252,-0.1458555,-0.29424584,-0.3874434,0.16148883,-0.1458427,0.37521335,0.47960517,-0.13627289,0.73104817,0.054123897,1.7531657,-0.094696775,0.15585886,0.2154471,0.14608277,0.32363003,-0.033891227,-0.11202638,0.51637787,0.16314451,-0.08856131,-0.57184637,0.040183607,-0.1348995,-0.5641614,-0.19990213,-0.22412099,-0.3112237,-0.3460191,-0.19567083,-0.3889582,-0.16646884,-0.5069349,0.35908172,-2.5083232,-0.1435791,-0.0729042,0.29583237,-0.24288188,-0.2216065,-0.26181224,-0.478015,0.7131662,0.25608763,0.5671746,-0.50729823,0.45417506,0.44331744,-0.4559194,-0.28690296,-0.83705735,-0.038488373,-0.08272162,0.4589686,-0.12648019,-0.42652544,-0.2150983,-0.26487863,0.6062826,-0.18093652,0.14502159,0.50092024,0.5648536,-0.033825282,0.5119423,0.013140935,0.73976666,-0.508678,-0.30821896,0.31372184,-0.5003827,0.5735086,-0.1686953,0.067964524,0.4348669,-0.4566504,-0.69623727,-0.4380706,0.024124531,0.9608339,-0.36936644,-0.5530725,-0.01158309,-0.3659546,-0.14614369,0.15674923,0.53646415,-0.009512873,0.079843834,-0.5890528,0.026360832,0.047463957,0.48044586,-0.046580706,-0.0031155485,-0.44796917,0.6301218,-0.14790998,0.75213474,0.4947682,0.15693809,-0.40797657,-0.21336962,0.19677892,0.87006754,0.14695062,0.09162671,-0.28782362,-0.39854905,-0.123130694,-0.3329317,-0.089128144,0.6261925,0.5389255,-0.108884975,0.1940554,0.45656264,-0.3367216,-0.03715246,-0.31074885,-0.3517952,-0.18520373,0.12466948,0.47160047,0.7453159,0.102162525,0.4778391,0.0010248239,0.44166696,-0.34976628,-0.66762614,0.6179706,0.57122904,-0.240539,-0.20447108,0.64359474,0.44242284,-0.13649838,0.58506393,-0.52917945,-0.5936274,0.29325706,-0.03630437,-0.50726235,0.12775265,-0.21599467,0.0021110636,-0.85940117,0.04167974,-0.31521717,-0.5574165,-0.71457744,-0.051660415,-2.5906847,0.2319104,-0.31331727,-0.06787907,-0.2211004,-0.05707242,0.114181906,-0.23926584,-0.38989764,0.15162988,0.326561,0.48732117,-0.13133456,0.16539481,-0.36843726,-0.31538236,-0.26941797,0.2490615,-0.071464874,0.15101098,-0.28580415,-0.52751386,0.09886729,-0.121053904,-0.17634854,-0.07263757,-0.68675953,-0.21215843,0.007960086,-0.2996512,-0.37149063,0.6391388,-0.3479505,0.020481901,-0.44672346,0.09359605,0.13462433,0.24080513,-0.034658004,0.23862466,-0.010026391,-0.19940679,-0.17488582,-0.20471624,0.06052856,-0.11362048,0.28760904,0.5332153,0.0013999847,0.12644821,0.3844479,0.5255397,0.03497999,0.88101834,0.24415728,0.017572755,0.29356045,-0.1107099,-0.20760895,-0.45418623,-0.18040484,-0.20316352,-0.51120955,-0.33741167,0.12109562,-0.28813484,-0.9141178,0.7853928,0.35829207,-0.29476318,-0.050160807,0.66775614,0.46772724,-0.2661028,-0.048419956,-0.22276634,-0.3034979,-0.28836682,-0.47741917,-0.7778617,-0.45193607,0.17761843,1.1656839,-0.41272208,-0.009404402,0.14977425,-0.2820926,-0.16038671,0.5084617,0.11296581,0.28538853,0.46910858,0.02321742,-0.6265862,0.6355801,-0.21085276,-0.10861328,-0.56273574,0.30364567,0.57943594,-0.8416102,0.3866919,0.5096934,0.04446446,-0.07869485,-0.7878091,-0.18524916,0.13886383,-0.24994276,0.31604502,0.33434618,-0.8319739,0.6185265,0.263757,-0.07392398,-0.97002834,0.0074207094,-0.032322966,-0.39467862,0.025329646,0.32755104,0.18207106,0.17060553,-0.34252375,0.0881884,-0.4536945,0.30749366,-0.017899714,-0.17622031,0.47592053,-0.4434239,-0.27525532,-0.7681507,-0.080589086,-0.53445846,-0.2865259,0.3453186,0.060028084,0.12322479,0.16410185,0.0882179,0.27760702,-0.34363043,0.06583108,-0.29987553,-0.21336064,0.37325615,0.4024695,0.207244,-0.5549729,0.6786762,-0.037373513,-0.091984384,-0.09474034,0.043653194,0.371203,0.15370086,0.5972602,-0.09726914,-0.17467394,0.20793557,0.87108266,0.12241921,0.36951384,0.24653032,-0.033494804,0.5450629,0.012645217,0.17893738,-0.10248419,-0.49048072,-0.11165815,-0.33286604,0.3189732,0.6006912,0.17094305,0.7229223,-0.06958098,0.09476423,0.10299547,0.1691096,0.06562522,-0.76087433,0.4468455,0.33551413,0.5309659,0.5782618,0.17901948,0.054352872,0.79468226,-0.43342793,0.17648576,0.2609057,-0.19475079,-0.25514358,0.710287,-0.7986857,0.28564554,-0.27341932,-0.012313281,0.15513614,0.0063415216,0.4453813,1.0473832,-0.14279245,0.0972279,-0.013863937,-0.38674262,-0.011300115,-0.14034213,-0.03654596,-0.44302866,-0.4017111,0.69108766,0.27508837,0.49734402,-0.33758357,-0.062106546,0.36076954,-0.030412756,0.17232227,0.109148756,0.049258754,-0.0820106,-0.37525484,-0.051196754,0.8350229,-0.015068054,0.24185163,0.20641294,-0.21912374,0.3925889,-0.12998685,-0.17942649,-0.14623497,-0.47854567,0.21221901,-0.3519891,-0.57677835,0.5826426,-0.0053728614,0.18581659,0.14602242,0.11753725,-0.22786936,0.46666738,0.060890444,0.8002915,0.0785705,-0.09678362,-0.034299836,0.006167054,0.17927216,-0.36286637,-0.09714831,-0.19307202,0.14966199,-0.81584686,0.3527202,-0.25860408,-0.37630442,0.15739194,-0.15501168,-0.0870796,0.44856754,-0.08266808,-0.05550025,0.068594545,-0.17294209,-0.40674523,-0.2332386,-0.20386201,0.19921468,-0.11817488,0.00029785818,-0.19324988,-0.0654263,-0.075372964,0.39454472,0.03217659,0.021548977,0.22614273,0.22572173,-0.4137099,0.22246951,0.18118554,0.66144526,-0.09629214,-0.016659755,-0.20654644,-0.21227019,-0.35749483,0.36119908,-0.14021425,0.17584863,0.048136625,-0.40078813,1.0712606,0.010619888,0.8689203,0.03548938,-0.26247686,0.11591336,0.5404507,0.16488358,0.19493955,-0.26875484,0.9416104,0.43566,-0.08431096,-0.11859703,-0.52081835,-0.13051948,0.45026547,-0.36834273,-0.10371472,-0.064212225,-0.7446481,-0.108604945,0.18562382,0.07801456,0.06589882,-0.32305983,0.15375704,0.12748027,0.19448665,0.17669916,-0.6500416,-0.03836246,0.35540062,0.29684114,-0.1525005,0.09956268,-0.35426092,0.43798226,-0.6956695,0.30432814,-0.24024627,-0.032369055,-0.058506165,0.01976846,0.25974935,0.03628883,0.17797302,-0.28923327,-0.27539554,-0.061350934,0.42874452,0.4416134,0.45211047,0.8612193,-0.25019747,-0.0064216396,-6.309839e-05,0.6194259,1.188527,-0.46602324,-0.24754861,0.32601345,-0.27131188,-0.81250703,0.15104939,-0.37836966,-0.17230909,0.031101497,-0.44673917,-0.26515344,0.25661343,0.15701869,0.005058949,0.08540474,-0.6569776,-0.0320146,0.18865493,-0.37377453,-0.21356465,-0.30044034,-0.029600987,0.76173884,-0.008761536,-0.23047444,0.019451784,0.1340034,-0.413926,-0.5670806,0.12470468,-0.5740529,0.18365607,0.21878503,-0.34081808,0.042729232,0.12224393,-0.71571213,0.048283935,0.24493894,-0.20560834,-0.022286724,-0.47717813,0.070647255,0.7930984,-0.06426359,0.13489524,-0.14982626,-0.6088431,-0.67852664,-0.35869974,0.2861172,0.0035015047,-0.029596861,-0.50323254,-0.14776573,-0.09886419,-0.34633234,0.07218075,-0.55926764,0.45707172,0.11894401,0.16335715,-0.15924686,-0.99506575,0.27524793,0.06951797,-0.28831017,-0.3933884,0.40970275,-0.3011613,0.9744914,0.113267645,-0.0937502,0.44796398,-0.8106635,0.38805625,-0.3659314,-0.30762962,-0.719068,-0.20757344,176 -624,0.4850915,-0.30374128,-0.59936535,-0.23907068,-0.36204183,0.012470186,-0.117875576,0.54557663,0.42202282,-0.2759507,-0.21318534,0.043360915,-0.09386459,0.5855928,-0.04037216,-0.689147,-0.14834116,0.39603505,-0.7070935,0.33455828,-0.5447762,0.33419684,0.032869585,0.6314402,0.34613177,0.1016307,0.047295276,0.14561652,0.046928708,-0.023588635,-0.13507096,0.06802028,-0.6738506,0.16562063,-0.124606244,-0.47148356,-0.12522994,-0.6431639,-0.46390417,-0.8619999,0.31685528,-0.80570805,0.67365205,-0.18012494,-0.41762236,-0.005221344,-0.13251002,0.45976508,-0.24762344,-0.044403236,0.06185821,-0.3137874,-0.021870123,-0.07822948,-0.21904516,-0.2665578,-0.6422437,0.08956626,-0.36801973,0.056468066,-0.036780927,0.20924759,-0.32529134,0.19088922,-0.26828325,0.45707244,-0.42313722,-0.0372695,0.33985013,-0.03162516,0.11869724,-0.55241495,-0.08771643,-0.124559216,0.24908789,-0.063489676,-0.44029078,0.43239185,0.12382027,0.5158889,0.031948544,-0.33609724,-0.36992413,0.24635626,-0.1047926,0.52176386,-0.04454496,-0.14608835,-0.2517667,0.1559796,0.41980588,0.16540115,0.15594281,-0.30901968,-0.045176193,-0.091759324,-0.0036532064,0.40259778,0.5716725,-0.11068843,-0.34798643,0.37618113,0.5681459,0.2050763,-0.145134,0.13776976,0.03427378,-0.446303,-0.26853037,0.052091785,0.0115374625,0.61551976,-0.06046558,0.09431729,0.6670481,-0.16864859,-0.17442217,-0.16073965,0.016823424,-0.01817772,-0.2151498,-0.4307022,0.39080402,-0.41142145,0.14557594,-0.15112998,0.70900434,0.15116,-0.88779837,0.32415628,-0.6059834,0.17923234,-0.12139486,0.57193416,0.8497869,0.5639684,0.4204519,0.929521,-0.34096593,0.23267728,0.08336795,-0.25173455,0.05842581,-0.36300188,0.10262347,-0.578334,-0.0731225,-0.20491745,-0.41066784,0.2323922,0.37094492,-0.52995586,-0.2077999,0.14324124,0.5345137,-0.37877047,-0.13766812,1.011734,1.0271122,1.4669833,0.008874022,1.3313669,0.51232064,-0.21302794,0.08391642,-0.2750935,-0.7375324,0.19676143,0.24927877,-0.071811154,0.5695589,0.2110621,0.051551003,0.46193865,-0.46249834,0.14517072,-0.053583078,0.07520158,-0.06847232,-0.2527725,-0.6714236,-0.3762059,-0.034960486,0.09007345,-0.1062839,0.20645168,-0.22437309,0.5625596,-0.082292095,1.4713603,0.13443601,-0.102161855,-0.17717507,0.49161574,0.1503224,-0.40743554,-0.20505606,0.16401243,0.44834307,-0.060623664,-0.54842955,-0.01523019,-0.21574384,-0.23797584,-0.3383651,-0.3160186,0.09557601,-0.19396609,-0.2980832,-0.45681483,0.123854086,-0.33914807,0.42069948,-2.2718992,-0.38257995,-0.0004890424,0.44111776,-0.2317964,-0.2993233,-0.34592983,-0.52518976,0.2321654,0.28957975,0.45318073,-0.65332484,0.53984326,0.37008965,-0.60662407,0.0080823535,-0.77737737,-0.0057412717,-0.040259197,0.10011094,0.061471164,0.015858008,0.02130166,0.25676885,0.53952396,0.001182657,-0.091760635,0.3492281,0.5134437,0.015241535,0.58808476,0.12960881,0.6301244,-0.2802337,-0.15595399,0.5056461,-0.41128725,0.26913476,0.015308435,0.1137968,0.5715493,-0.55508846,-0.96061075,-0.67998636,-0.22687952,1.0973128,-0.23751648,-0.44141,0.16125718,-0.43493763,-0.27556032,-0.013859218,0.3622728,-0.25720122,-0.14335373,-0.7671871,-0.28570688,0.0104536135,0.17315117,-0.15887544,0.12772718,-0.4305383,0.728444,-0.22953771,0.44430712,0.32827452,0.29144618,-0.12114586,-0.5409809,0.12730144,0.64772826,0.41656816,0.037877623,-0.38065946,-0.17988107,-0.3093694,-0.106847286,0.07302875,0.6771222,0.82821345,-0.13560233,0.025038539,0.39151695,-0.11995772,-0.003557824,-0.093555965,-0.2657178,-0.20758596,0.07484623,0.71087563,0.86379296,-0.016083479,0.57734144,-0.2081872,0.36814228,-0.0902651,-0.6412243,0.42812902,1.0548947,-0.08777615,-0.327956,0.55596775,0.2903645,-0.3922083,0.46183822,-0.6548337,-0.15293801,0.54889137,-0.12917353,-0.42686528,0.06618762,-0.29912958,0.17848851,-0.960344,0.24678575,-0.18277279,-0.76595265,-0.7329976,-0.11639003,-2.409611,0.23034477,-0.19249766,-0.03659759,0.14774022,-0.2754238,0.10518393,-0.6129292,-0.6780042,0.1432376,0.10712687,0.77111787,-0.13750489,0.11033575,-0.23079923,-0.38944536,-0.5898832,0.11694532,0.22567087,0.38766003,0.18669364,-0.44986537,0.0065792296,-0.35064286,-0.57105607,-0.11987886,-0.5066324,-0.5863912,-0.17091586,-0.61321265,-0.24284038,0.75424665,-0.17781116,-0.01844268,-0.26269552,-0.07813854,-0.03008771,0.31041953,-0.036463786,0.17018102,0.2183555,-0.116012216,0.05051162,-0.22262612,0.14513296,0.13122591,0.27304807,0.2818101,-0.28399172,0.34897742,0.7293087,0.86659235,-0.20366624,0.80856353,0.64076483,-0.060429677,0.09125516,-0.2855763,-0.33211783,-0.5544884,-0.3004637,0.03867685,-0.5463116,-0.5393836,0.022762362,-0.42980674,-0.9012815,0.5045481,0.050709084,0.2338999,0.01417185,0.18976879,0.46674532,-0.14070979,0.07250631,-0.21701597,-0.21847233,-0.48825103,-0.52911896,-0.5724139,-0.81199265,0.0003515436,1.5716617,-0.22604735,-0.10104329,0.07299283,-0.47354227,0.22397092,0.17160845,-0.015123367,0.22870715,0.39084688,-0.18189393,-0.7184218,0.16810082,-0.15535937,-0.07603859,-0.6817159,0.25095236,0.8439734,-0.6784068,0.5584539,0.26117644,0.09858456,-0.012215889,-0.61225986,-0.23878966,0.043980367,-0.22639173,0.598726,0.18321027,-0.613171,0.5166077,0.18047282,-0.34763744,-0.82512534,0.34913927,0.02789358,-0.19111618,0.15128693,0.30806285,-0.019569525,-0.12690265,-0.14443733,0.18343224,-0.2988581,0.21685314,0.31401294,-0.0032336162,0.043029718,-0.135689,-0.10636163,-0.86429024,0.04916317,-0.49281585,-0.23588815,0.100024,-0.013643329,0.2993077,0.10334036,0.31995642,0.4029735,-0.28235114,-0.007836049,-0.18464173,-0.3956159,0.3546788,0.39043632,0.3461315,-0.6066069,0.41082558,0.019842682,-0.047416206,-0.16573256,-0.109485865,0.50860494,0.12969472,0.30603957,0.033410322,-0.19807778,-0.026170429,0.6972742,0.14231645,0.33463022,0.11299021,-0.27614796,0.2034766,0.17848638,0.37995753,-0.16830167,-0.33834165,0.096842125,-0.13774301,0.12904137,0.41242367,0.12777187,0.22484706,-0.1552584,-0.2174216,0.24696253,-0.05946815,-0.12689625,-1.4413153,0.34163183,0.2656494,0.7881348,0.40527514,0.083776586,-0.028837048,0.5427391,-0.320947,-0.028242959,0.37518212,0.07445033,-0.42609993,0.3886864,-0.8124279,0.7357362,-0.0023488174,-0.07602322,0.11283016,0.28185174,0.64011735,0.73446363,-0.19290353,0.1421803,-0.09830657,-0.21480642,0.09935036,-0.427474,0.07535012,-0.74255586,-0.2961049,0.84616387,0.47939974,0.21785532,-0.14693156,-0.033725794,0.12691043,-0.14055657,0.21755633,-0.09354151,0.0180298,-0.0979581,-0.5771754,-0.10261158,0.39893436,-0.10545553,0.1007029,0.089774676,-0.2556799,0.20151018,-0.007999329,-0.13050058,-0.08381862,-0.863566,-0.16062821,-0.27415258,-0.31392428,0.35485518,-0.21571186,0.2156225,0.31372282,0.10297756,-0.28229827,0.25792646,0.16192767,0.92269295,-0.024551813,-0.13693729,-0.24684022,0.43884417,0.4507096,-0.29057792,0.1407196,-0.21662034,0.15470974,-0.5282455,0.5208152,-0.1136819,-0.37107605,0.24129097,-0.010003943,0.11925352,0.47569358,-0.41179106,-0.05784715,0.06412207,-0.14431018,-0.36733896,-0.03976554,-0.37837875,0.17889158,0.22716962,-0.2643908,0.05322526,-0.1169442,-0.026736412,0.6177209,0.096146055,0.45393452,0.29228115,-0.07543153,-0.5467026,0.033052288,-0.04345296,0.5607985,0.08498581,-0.3540146,-0.43087056,-0.14656268,-0.17590424,0.53434426,-0.11330093,0.22169194,-0.07090182,-0.22987872,0.747583,0.22285904,1.336092,-0.06158749,-0.40692917,0.117280684,0.43174013,0.0937867,-0.04582715,-0.40291756,0.8386074,0.5761285,-0.23453853,-0.16784708,-0.51250046,-0.2633261,0.20238511,-0.29361948,-0.2784731,-0.07479981,-0.6390223,-0.3307049,0.2861245,0.072139755,0.28857836,0.015838921,0.2309852,0.2263643,-0.009116737,0.24813154,-0.30646896,-0.05647662,0.3099306,0.30254197,0.1262376,0.14216632,-0.4431335,0.2764838,-0.7293111,0.20292324,-0.28780425,0.2363564,-0.064819574,-0.4106825,0.25655302,0.28185028,0.28842023,-0.25135672,-0.31840461,-0.2111505,0.7154738,0.09866944,0.3284282,0.6404246,-0.37952673,-0.056404114,0.11947692,0.29433915,1.1954093,-0.14580499,0.07225268,0.4299464,-0.25354654,-0.5726929,0.42167705,-0.2845463,0.19158009,-0.23059757,-0.13447258,-0.52629536,0.2339332,0.14158115,-0.07915783,-0.019576816,-0.52969843,-0.06577717,0.4133926,-0.32916468,-0.24801056,-0.52493036,0.14645208,0.5344285,-0.19288823,-0.53664887,0.15103036,0.35538864,-0.2640669,-0.3042646,-0.05857639,-0.35299274,0.36308765,0.0036565156,-0.5041597,-0.10132969,0.107636735,-0.44249514,0.14537184,0.3085931,-0.24904467,0.08075416,-0.2690908,-0.03031081,1.0264008,-0.18913788,0.33086884,-0.5985777,-0.54457414,-1.0148141,-0.22289586,0.24870084,0.28525797,-0.15722473,-0.8130747,-0.025147915,-0.068555556,-0.2736935,0.09091788,-0.3163031,0.37155226,0.12351458,0.34821442,-0.13705133,-0.9621607,0.08315016,0.13138393,-0.3128114,-0.51408905,0.57487065,0.10689933,0.8193274,0.12598008,0.2126335,0.06114857,-0.4766768,0.32749635,-0.31075552,-0.011977638,-0.58548015,-0.14504327,189 -625,0.5056971,-0.14045796,-0.7092669,-0.17623088,-0.1889676,-0.05624054,-0.16536275,0.57932854,0.4030167,-0.58197045,-0.029933687,-0.15417242,0.049662385,0.32393014,-0.11102597,-0.9100244,0.04012336,0.102350764,-0.31859922,0.37066585,-0.5309399,0.23720933,0.012384562,0.43985754,-0.0032285315,0.3432789,0.047344215,-0.16735809,-0.23732966,0.08680061,0.110667855,0.37532216,-0.6416407,-0.012260542,-0.20190524,-0.53676426,-0.011241629,-0.4004621,-0.3135412,-0.8121396,0.23895656,-0.9414254,0.5818247,0.10246888,-0.23874448,0.10887631,0.06747702,0.3597023,-0.17108376,-0.008381454,0.069970004,-0.13230838,-0.11035024,-0.055502467,-0.36825606,-0.40340585,-0.7048045,0.13148521,-0.54295933,-0.14388403,-0.15534171,0.176783,-0.39516622,-0.045315165,-0.044341806,0.40822938,-0.43925434,0.0007252005,0.47270775,-0.26064676,0.244968,-0.494103,-0.15778781,-0.114514045,0.25269663,-0.34060115,-0.19675387,0.19699809,0.35058963,0.6567334,0.01998098,-0.22484763,-0.46668437,0.122325465,0.1555818,0.46856144,-0.32591864,-0.45402622,-0.2562161,-0.003663627,0.15783194,0.18017527,0.26371816,-0.32301766,-0.028705252,0.27870587,-0.3118604,0.54186434,0.51904666,-0.42552102,-0.33812454,0.28646448,0.6905309,0.16300732,-0.109896615,0.23603126,0.13952607,-0.631503,-0.17758912,0.086058766,-0.00890686,0.5729404,-0.12513022,0.39408982,0.6974067,-0.2694553,0.06988193,0.13069037,-0.06073194,-0.06904158,-0.4689485,0.021266231,0.33368963,-0.554113,0.17305861,-0.25948766,0.66977566,0.20290898,-0.7821313,0.5271858,-0.5988294,0.19003186,-0.1881106,0.45350948,0.7618809,0.363373,0.18618724,0.711462,-0.50053203,-0.030077608,-0.16098131,-0.43620747,0.18022236,-0.18523829,0.18056811,-0.56073844,-0.04750618,0.10956991,-0.010203783,0.14651111,0.42213762,-0.7669001,-0.19834067,0.0888577,0.9532187,-0.20124982,-0.30091858,0.78686213,0.93457425,0.93084234,-0.004734484,1.3060964,0.23963414,-0.1359489,0.39600563,-0.24738643,-0.8934291,0.34668657,0.2148606,-0.44868377,0.38438734,0.114440314,-0.13828024,0.67346615,-0.0839426,0.13638255,-0.24590485,0.1442443,0.09341756,-0.22358854,-0.24130957,-0.15074867,-0.10746614,-0.12513056,0.16137783,0.22169748,-0.17873494,0.2786555,-0.047079865,1.7141589,-0.10871542,0.16212787,-0.009462396,0.4453955,0.22432338,-0.009896123,-0.08066854,0.14527723,0.10147548,0.21158998,-0.44535863,0.016240034,-0.35619453,-0.38114703,-0.18255973,-0.28754783,-0.079952836,-0.15220676,-0.6061715,-0.02656732,-0.23394577,-0.24159074,0.51285917,-2.6080606,-0.46088293,-0.06546379,0.3531067,-0.29662278,-0.4672824,-0.25229752,-0.50094444,0.38773707,0.29098222,0.6224978,-0.6821892,0.53665245,0.4649674,-0.51924396,-0.19469476,-0.61294395,-0.02372215,0.0077803116,0.17547092,0.01500519,-0.20107096,0.0636808,0.067605644,0.46066907,-0.1115931,0.012980044,0.16899508,0.5318369,0.034531567,0.50924563,-0.18967216,0.57556546,-0.4265533,-0.35779646,0.421968,-0.5140184,0.22188465,0.06215691,0.19173428,0.33418098,-0.38214386,-1.1269794,-0.7104736,-0.21827963,1.0404203,-0.077706866,-0.39873645,0.24414761,-0.24572141,-0.37997568,-0.070600815,0.47583383,0.104624666,0.12918499,-0.984269,0.13134386,-0.22482744,0.10170819,0.074842535,-0.03499544,-0.35683715,0.682676,-0.07366009,0.3180175,0.45117614,0.21581668,-0.32033885,-0.44665065,0.014930775,0.9713509,0.2654628,0.267953,-0.23990703,-0.15938346,-0.42408556,0.006477113,-0.03962861,0.4567959,0.76797396,-0.043661237,0.10426761,0.39161575,0.098034345,0.0834713,-0.15072764,-0.5435949,-0.14202839,0.10878681,0.54283834,0.7309406,-0.4614625,0.46518677,-0.04710158,0.30151328,-0.16330583,-0.53524274,0.55448794,0.74513364,-0.30970463,-0.2825094,0.5211626,0.28453708,-0.5660082,0.5604066,-0.70057285,-0.36701304,0.38903424,-0.12298965,-0.5371708,0.1511685,-0.37567872,0.082775064,-1.1526299,0.33728755,-0.40633598,-0.20893258,-0.38473716,-0.18083474,-4.0253034,0.3272038,-0.28446567,-0.012115465,-0.1285004,0.053697143,0.22427002,-0.6511863,-0.67972213,0.061288558,0.07464767,0.7104542,-0.19752708,0.23239782,-0.21848282,-0.19620475,-0.27823588,0.09545044,0.30347925,0.26419163,0.16237105,-0.5046384,-0.13733752,-0.19996572,-0.4167022,0.19608487,-0.7805638,-0.56003857,-0.17487676,-0.67243415,-0.45023945,0.8298202,-0.46530694,-0.05431857,-0.25563082,0.0736317,-0.18981239,0.5022641,0.02761209,-0.022310909,0.12495036,-0.028791877,-0.12247959,-0.31896812,0.23820625,0.056860503,0.3913002,0.5009599,-0.18550865,0.3008157,0.76911074,0.88917965,0.08312443,0.7547282,0.41027215,-0.03298148,0.5156586,-0.3213348,-0.23238172,-0.5703167,-0.3088468,-0.14781576,-0.51312315,-0.48363918,0.10524011,-0.47958058,-0.804511,0.67352706,-0.036413677,0.21643569,0.02848067,0.2465879,0.50612324,-0.22922009,-0.04489263,-0.046992872,-0.1281529,-0.65966755,-0.2184073,-0.62101454,-0.7527527,0.29358435,0.97761977,-0.23975648,0.13097824,0.14100455,0.05755993,-0.059807695,0.2586344,0.027749704,0.023602795,0.42752403,-0.13392219,-0.67396134,0.2692444,-0.15779015,-0.23426184,-0.7186357,0.20660533,0.66162056,-0.75953037,0.67420095,0.45087084,-0.009200765,0.17545575,-0.46480274,-0.22098824,-0.073364064,-0.15126348,0.43319356,0.15741429,-0.8728227,0.30309445,0.58215725,-0.40951693,-0.766952,0.5349939,0.0010140401,-0.051229276,-0.26296562,0.35991937,0.3546345,0.03087853,-0.09638921,0.13458739,-0.62302697,0.18077613,0.31308177,-0.15571795,0.6990309,-0.03968393,-0.2200033,-0.81461406,-0.035634033,-0.6003936,-0.2101159,0.32219216,-0.031966303,0.0739384,0.17290555,0.19301279,0.31858653,-0.3582168,-0.056275897,0.042980433,-0.3672557,0.34295514,0.4899792,0.46114329,-0.4719132,0.55312085,0.042433456,0.014429687,0.20167473,0.048509717,0.5615541,0.03822631,0.42568704,0.24513103,-0.229093,0.10613643,0.9297434,0.05550613,0.5349124,0.13521956,-0.068245456,0.20715433,0.13504909,-0.039709788,-0.02235315,-0.6770052,0.1046933,-0.05681192,0.31693304,0.7054583,0.17426819,0.4113262,-0.04104883,-0.32252836,-0.038994495,0.22394362,-0.024630278,-1.3894426,0.3371844,0.25088698,0.88736284,0.44681823,0.02791948,0.14176022,0.46228102,0.0031569095,0.3799414,0.3886132,-0.2278967,-0.56170404,0.5650657,-0.7293597,0.49341744,-0.054605342,0.10968404,0.005559903,-0.025224468,0.53841734,0.7205691,-0.10033217,0.089490525,0.032848544,-0.21175869,0.0802302,-0.39669976,0.04241127,-0.47496212,0.0043684775,0.7266003,0.7106037,0.44665247,-0.29696035,-0.044644687,0.08902935,-0.15226871,0.1888097,-0.19470263,0.11259708,-0.04276941,-0.61754006,-0.29681316,0.69490504,0.34722683,0.22468887,-0.100532,-0.29240987,0.41856554,-0.20561828,0.0011302003,-0.11551531,-0.59907866,0.02358046,-0.42477494,-0.5491969,0.5421802,0.09004469,0.22298828,0.21378095,0.119203515,-0.4077751,0.62161297,-0.18787311,0.7450023,-0.093878284,-0.23910233,-0.52485776,0.28588736,0.3104514,-0.29572052,-0.21685347,-0.4181088,0.06887508,-0.4120132,0.468963,-0.07597707,-0.31283984,0.06206518,-0.0626687,0.08473361,0.512246,-0.21208392,-0.20916547,0.13672183,-0.10690796,-0.36666644,-0.22920145,-0.08376704,0.38581496,0.19203441,-0.15606873,-0.18661068,-0.33978537,-0.09246038,0.31504014,0.09131804,0.19166987,0.6052858,0.29891348,-0.40402335,-0.22295941,0.4713165,0.63959056,-0.03223961,-0.2867892,-0.39407298,-0.44964063,-0.43668908,0.18340406,-0.039457038,0.29871178,0.13878478,-0.45973492,0.8862504,0.24477316,1.4474883,0.16803357,-0.3398258,0.17271669,0.38690245,0.006276449,-0.08759807,-0.4284202,1.0230597,0.6166087,-0.29662606,-0.16935118,-0.521048,-0.20797648,0.095586725,-0.35535547,-0.06999591,-0.048364595,-0.71777225,-0.255604,0.20858786,0.33403173,0.23910214,-0.19554369,0.21386887,0.20544806,0.00060529204,0.219692,-0.58659387,-0.22821061,0.21096256,0.6080569,-0.10171522,0.14418888,-0.37508953,0.3868685,-0.54380184,0.06635905,-0.38913295,0.230275,-0.14847967,-0.41477963,0.20684472,0.046011187,0.43375486,-0.2402089,-0.4209908,-0.20208128,0.4457445,0.28608087,0.14419974,0.825714,-0.2138684,-0.1458691,-0.061578605,0.70205176,1.1234404,-0.13340195,-0.0836405,0.5803227,-0.17841229,-0.8583361,0.32822338,-0.5236353,0.37636185,-0.21758506,-0.2827579,-0.627938,0.16080546,0.18487993,-0.1541141,0.04454002,-0.5710548,-0.1752747,0.12553813,-0.3982343,-0.23372246,-0.29471564,0.118934885,0.7490691,-0.30983174,-0.12813848,0.20780112,0.3618849,0.021069584,-0.51317585,-0.14434856,-0.31151068,0.3268067,0.35281917,-0.39176565,0.033704493,0.033657417,-0.50472444,0.17318238,0.3083132,-0.3285487,0.22052765,-0.29061976,-0.14628802,0.9902419,-0.11725419,0.32829314,-0.53032273,-0.44267258,-0.88631654,-0.2300412,0.4157458,0.14449888,0.047196526,-0.5464671,0.010385142,-0.068252325,-0.20848283,0.07385972,-0.48895404,0.47762555,0.010659133,0.53629595,-0.20221378,-0.7165765,-0.05635623,0.31300604,-0.18146865,-0.7374542,0.5281241,-0.18761031,1.0632963,0.19812185,0.096509814,0.42770547,-0.49271104,-0.24939856,-0.41708013,-0.18206438,-0.709516,-0.09896273,190 -626,0.20477882,-0.08458596,-0.39049208,-0.19586754,-0.09386916,0.1827458,-0.122330554,0.2957713,0.01850297,-0.5033947,0.12522501,-0.17999503,-0.1068534,0.36508366,-0.18968216,-0.27911204,-0.09100746,0.022265894,-0.24504343,0.18822142,-0.5479484,0.29106477,-0.08187294,0.21285686,0.031136008,0.07164049,0.39994806,-0.15351263,-0.072378196,-0.21783638,0.13049617,-0.050930396,-0.49801236,0.10377158,0.019490251,-0.4065782,0.033972558,-0.33849537,-0.5640776,-0.65717274,0.46838644,-0.87382126,0.50903374,0.116080284,-0.11915918,0.32875806,0.3216662,0.21496648,0.015309712,0.039334636,0.30735332,-0.24301562,0.08872135,-0.15346947,-0.27661854,-0.29374793,-0.5612515,-0.0803935,-0.43092456,-0.29967827,-0.31169483,0.21291515,-0.4370023,0.028585318,-0.10224169,0.40438682,-0.39755866,-0.0004956814,0.17524385,-0.14445844,0.40488213,-0.60474503,-0.23770769,-0.07344048,-0.012081728,-0.3304234,-0.09646519,0.37123492,0.2012777,0.4380589,-0.316201,-0.008870242,-0.3074345,-0.19228975,0.15131709,0.6538852,-0.28781644,-0.25101736,-0.05003865,-0.12298338,-0.020755332,0.10505337,-0.07811698,-0.38666412,0.0076988065,0.2712819,-0.29962867,0.47221616,0.6416546,-0.23180297,-0.20295176,0.27852517,0.35057205,-0.07420507,-0.18658948,0.011571238,0.08682077,-0.45172116,-0.111706,0.13626346,-0.011394778,0.5420595,0.049613435,0.48305756,0.5230792,-0.3652617,0.11495251,0.032081183,0.068750426,0.035340328,-0.19810581,-0.34597296,0.21428853,-0.4208337,0.088577196,-0.20433477,0.9360475,0.0100042615,-0.8161631,0.41095084,-0.53112227,-0.061247624,-0.23935845,0.6134278,0.39100555,0.3244174,0.2423595,0.71903694,-0.5902488,-0.054087356,0.092804715,-0.3629135,-0.017832216,-0.12898244,0.014794409,-0.37372458,-0.12759,0.30013555,0.069243215,-0.028720928,0.3502797,-0.42012867,0.01472635,0.09018445,0.8410623,-0.28550205,-0.0129343085,0.41885802,1.1578132,0.7392315,0.11162559,0.9525279,0.21027216,-0.16318688,0.16124734,-0.14971952,-0.82897466,0.22009522,0.3044458,-0.038555108,0.18461983,0.19029333,-0.20205714,0.3043384,-0.47998613,0.076253325,-0.18058327,0.12619339,0.2446314,-0.17617665,-0.25024888,-0.13379699,0.07801509,-0.10477121,0.058037035,0.10487667,-0.44088686,0.10776247,0.07928714,1.4699222,-0.09009469,0.2433675,0.18321633,0.48807347,0.03440649,-0.044345334,0.04632622,0.16123177,0.36022455,0.15715843,-0.54624146,0.1702625,-0.13797387,-0.48238948,-0.16937336,-0.30218318,-0.12507272,-0.009649648,-0.4998565,-0.19549887,-0.037323568,-0.43112752,0.35773665,-2.9810367,-0.08142893,-0.09910075,0.39327922,-0.2988229,-0.19855365,-0.12551366,-0.42281768,0.48738098,0.51485527,0.30427477,-0.60045236,0.33939463,0.4153159,-0.22241487,-0.112466045,-0.52705956,0.04889426,-0.12861001,0.19349474,0.15041545,-0.09092719,0.025982546,0.21107286,0.36602226,-0.082540914,-0.0058842944,0.26644224,0.35910258,0.05565761,0.36432993,-0.1126962,0.35284662,-0.3826658,-0.19046292,0.30349535,-0.50908434,-0.0678657,-0.08152454,0.1313469,0.2874037,-0.3520706,-0.83170307,-0.6448498,-0.35000926,1.1511142,-0.13461001,-0.52412385,0.32184923,-0.10180144,-0.3144715,-0.18469736,0.5443782,-0.11608628,0.11473997,-0.78758717,0.13605224,-0.25571015,0.3930391,0.005291047,0.050173856,-0.42872187,0.48556402,-0.19843568,0.45946768,0.43065804,0.19258411,-0.4226678,-0.50493157,0.07785997,0.77985644,0.22525932,0.24389744,-0.12552972,-0.06772811,-0.1052431,-0.22950107,0.19795687,0.46160457,0.7973491,0.07834438,0.20699103,0.35370892,-0.058066133,-0.05252973,-0.11666643,-0.2674731,-0.027492596,0.024686823,0.54692346,0.31055403,-0.11142845,0.38566175,-0.07819267,0.26362962,-0.41173,-0.22811112,0.3359998,0.6538789,-0.048757963,-0.2862453,0.5003027,0.6280937,-0.41860893,0.34917676,-0.66768414,-0.3226435,0.52407074,-0.24687687,-0.5065743,0.10335612,-0.43042147,-0.00945465,-0.7716841,0.45354557,-0.21691759,-0.54027915,-0.48196492,-0.28548926,-3.5824862,0.08050286,-0.32468435,-0.25596985,0.008580413,-0.030147033,0.34631884,-0.41052407,-0.4026261,0.05862083,0.042546336,0.6637148,0.012595223,0.012376023,-0.26014125,0.17141268,-0.27876106,0.13622172,0.10035913,0.12295817,0.086254,-0.37065172,-0.011175907,-0.23906237,-0.5480351,-0.0039772233,-0.2964062,-0.38752323,-0.13905936,-0.44920552,-0.4564568,0.7127018,-0.39527783,-0.049574897,-0.2733927,0.008672957,-0.18890196,0.5971367,0.22682616,0.05115867,-0.015725356,-0.13257162,-0.026819339,-0.29768828,0.49197805,-0.016185531,0.21357392,0.5717427,-0.19761588,0.018942852,0.47579175,0.37787917,0.15663816,0.77381414,0.4086749,-0.05683289,0.25699243,-0.41462106,-0.11017036,-0.3893131,-0.23481736,0.22214195,-0.29034072,-0.48365706,-0.010558789,-0.32458878,-0.6938395,0.50779593,-0.23193663,0.15824078,-0.06843269,0.18289709,0.2021624,-0.06890004,-0.16598314,-0.030827474,0.029258244,-0.3562004,-0.306019,-0.6425509,-0.5653814,-0.049767878,1.0563571,0.05268779,-0.08904353,0.09956217,-0.15135688,-0.04370908,0.063132375,0.15822998,0.38832444,0.2517429,-0.10023452,-0.7222745,0.37470335,-0.35206795,-0.052290455,-0.74967355,0.019550433,0.51964116,-0.56564325,0.33546463,0.33658588,0.31441432,-0.24978065,-0.53391194,-0.22935075,0.029358167,-0.24218546,0.34366146,0.0045787464,-0.8929852,0.43324777,0.34113768,-0.24019617,-0.5619672,0.52424437,0.038032472,-0.22457801,0.14877309,0.29248136,-0.058739003,-0.070820406,-0.079220004,0.2673015,-0.44043982,0.40472874,0.13376294,0.03245514,0.77935016,-0.17206207,-0.06702563,-0.39457342,0.15387964,-0.4430674,-0.13404146,0.081492186,0.046977036,0.11710356,0.5660833,-0.15980114,0.4107735,-0.2905045,0.05439176,0.027055992,-0.27029732,0.36215895,0.39871562,0.376147,-0.37995404,0.66121763,-0.058331665,-0.12847564,-0.22726417,0.04747434,0.4657597,0.1992545,0.32351595,-0.118253484,-0.1242474,0.25886676,0.9061526,0.2610865,0.49664366,0.22281648,-0.14760843,0.2593019,0.081783816,0.045797274,0.23256642,-0.41031697,-0.09475383,-0.2490401,0.27443,0.44775283,0.097789235,0.45288798,-0.2423102,-0.35291708,0.087461606,0.312062,-0.21803449,-1.0057667,0.40953228,0.1204019,0.66916835,0.44567123,0.012912085,0.10536719,0.433137,-0.10553916,0.14212343,0.21685173,0.044040523,-0.45035335,0.6092077,-0.5312539,0.37071764,-0.11665133,-0.04062436,0.040169854,-0.035601217,0.41255298,0.7229401,-0.013153063,0.17094612,0.08916387,-0.29450768,0.19888853,-0.3873871,0.43809494,-0.487253,-0.17151007,0.5100953,0.3623586,0.19563998,-0.109143846,-0.02632195,0.08854248,-0.05278916,0.14694682,-0.11314759,0.19890498,-0.14994517,-0.6187345,-0.3192307,0.47005576,0.2549535,0.06743611,0.076448664,-0.09942214,0.24977733,-0.09755591,0.05747984,0.0065213614,-0.5710392,0.117910236,-0.21169215,-0.45790857,0.31361625,-0.4075057,0.38430035,0.243583,0.011919815,-0.4387622,0.18102345,0.42553294,0.556461,-0.14482765,-0.15003198,-0.35609525,-0.17486623,0.18931296,-0.16264868,-0.13094872,-0.16981462,-0.012637883,-0.56235176,0.47157538,-0.11386948,-0.02148985,0.3252111,-0.13404678,0.06832616,0.6064899,-0.021785783,0.021063577,0.1751058,-0.1912187,-0.20844667,-0.02940895,-0.16653109,0.22834142,-0.036336754,-0.05062843,0.015353113,-0.23336238,-0.26776424,0.20682801,0.008755993,0.31998143,0.41469285,0.2864719,-0.28090966,-0.20438018,-0.21360882,0.6265309,0.042408235,0.030993305,-0.31923404,-0.44241858,-0.098480575,0.29552796,-0.108802944,0.20649913,0.10797736,-0.61311376,0.66551006,-0.10933089,0.9236485,0.02067269,-0.25465825,-0.03113825,0.45373732,0.04955444,-0.10591824,-0.41853765,0.780541,0.64642185,-0.019383715,-0.16926762,-0.1285532,-0.049032494,0.24532212,-0.17336117,-0.34917262,-0.048133723,-0.73820347,-0.25368837,0.17710534,0.2899631,-0.11120297,0.019295802,0.14070736,0.20198056,-0.060956977,0.3627621,-0.3630831,0.104175,0.32064694,0.29574355,0.14857706,0.19275714,-0.36687055,0.25614816,-0.5218737,0.05684724,-0.17534648,0.05291883,0.10829181,-0.17472045,0.22632918,0.15203227,0.36142984,0.016118225,-0.07222358,0.0003735377,0.38281286,0.12902237,0.28410932,0.654314,-0.10950352,0.15065797,-0.11219546,0.4687874,1.0636036,-0.22975148,-0.04711237,0.29513198,-0.3568454,-0.6813491,0.46937326,-0.34775478,0.16763268,-0.026211482,-0.2518169,-0.27006525,0.30282715,0.27395982,-0.18232642,0.070380755,-0.35773674,-0.3917665,0.21075815,-0.2627115,-0.3151105,-0.4528974,0.06254713,0.5238149,-0.18661052,0.06580822,-0.019804899,0.5922855,-0.14771962,-0.5680996,0.14895791,-0.26529264,0.2183795,-0.06726134,-0.2327074,-0.1833287,0.039773367,-0.32793278,0.29990327,0.19189939,-0.37830406,-0.06117042,-0.19954509,-0.12725341,0.6890315,-0.20317627,-0.20806743,-0.6689438,-0.44961455,-0.9529021,-0.38360915,0.36796242,0.25130507,-0.106793575,-0.4811274,-0.11137827,0.17473485,-0.16865133,-0.21295375,-0.37074074,0.35354507,0.0030366103,0.4231552,-0.053814474,-0.61201036,-0.09830383,0.14435302,-0.24532032,-0.43216148,0.54252744,-0.030337526,0.69123185,0.07014157,0.096742906,0.28471217,-0.2929532,0.21309695,-0.1317801,-0.38819313,-0.7207935,0.046894662,194 -627,0.54662263,-0.22879829,-0.3458368,-0.010699485,-0.46350962,-0.11336089,-0.28206286,0.20882599,0.25757712,-0.14144628,-0.48436683,-0.12248909,-0.0641081,0.17608026,-0.17827612,-0.5209476,-0.19284593,-0.024769796,-0.7752743,0.679711,-0.38526133,0.4269255,0.24991424,0.33419374,0.37009394,0.33088824,0.33332342,0.10282168,-0.28891703,-0.3512491,-0.053602256,0.08380683,-0.76881397,0.12290631,-0.40045434,-0.313806,-0.04930675,-0.6980418,-0.26361558,-0.9383159,0.23977426,-1.0784065,0.52338564,-0.1526036,-0.012215101,-0.12767841,0.29447803,0.27356294,0.061292253,0.00046524635,0.28941244,-0.13648081,-0.008452227,-0.1508473,-0.10242927,-0.49518305,-0.65424377,-0.033184443,-0.5216971,-0.28852922,-0.13535026,0.31145233,-0.44284916,0.030347627,-0.2044638,0.40020996,-0.43798402,0.23201841,0.21908171,-0.2035262,0.18323818,-0.72128093,-0.13204923,-0.12905607,0.35447925,-0.034576517,-0.114469066,0.36446187,0.368989,0.14593302,0.24887186,-0.28596,-0.14418913,-0.10049825,0.118566886,0.60441536,-0.20253041,-0.2902791,-0.17332378,0.025303097,0.70046145,0.4092846,0.18287101,-0.09344255,0.0076317135,-0.15373217,-0.25720656,0.68235564,0.44217178,-0.13627683,-0.36742434,0.28451207,0.58148015,0.41535032,-0.22599176,-0.1491288,-0.055680018,-0.49563736,0.07873844,0.30587614,-0.14783219,0.57615876,-0.05229008,0.18628757,0.9033973,-0.35049966,0.22543739,-0.00047439337,0.013742245,-0.08460055,-0.1802006,-0.17634502,0.2569359,-0.5280241,0.12541056,-0.38014486,0.77689654,-0.001449852,-0.7379243,0.4370505,-0.57292813,0.14185585,0.10624976,0.57262,0.6080971,0.43335646,0.3942564,0.7209133,-0.11531401,0.20186485,0.11801156,-0.39542013,0.05941933,-0.3681738,0.19430536,-0.36434937,-0.07231747,-0.14174691,-0.022694092,-0.114569634,0.57690585,-0.57022667,-0.17667429,0.06338524,0.76857656,-0.20464121,-0.07734002,0.8852824,1.0231177,1.0637176,-0.01049666,1.2266313,0.35751644,-0.11022027,-0.050330516,-0.13590823,-0.71564996,0.30326033,0.42628428,-0.8220576,0.41258118,-0.05575931,-0.1495606,0.22418879,-0.36994183,-0.10267511,-0.11081779,0.28943998,0.28325483,-0.09524965,-0.46903908,-0.30521086,-0.04882117,0.04662711,0.23435467,0.20784459,-0.27504608,0.36534697,0.12244683,1.2918513,-0.17085508,0.028288115,0.18211812,0.57666576,0.22725098,-0.24244264,-0.0038543206,0.25853083,0.36666912,0.075548,-0.58518434,0.21602756,-0.41488138,-0.2953372,-0.23171856,-0.28319675,-0.2452337,0.1727328,-0.30746055,-0.11138452,-0.065366335,-0.27848482,0.28441563,-2.6075313,-0.15043168,-0.22670385,0.2751695,-0.28853458,-0.28656995,0.036165833,-0.65483546,0.18898733,0.28829506,0.51614535,-0.71003014,0.30062813,0.5701934,-0.6242311,-0.15526155,-0.798563,-0.022720668,0.07122864,0.5653534,0.009829512,0.019546747,-0.118934624,0.2307668,0.71198744,0.33125597,0.1679754,0.536748,0.50899065,0.16729948,0.45961776,-0.00830997,0.5098617,-0.16809033,-0.2041242,0.62393653,-0.32838458,0.3919783,-0.17321923,0.14045024,0.5902792,-0.32863095,-0.85675174,-0.51507324,-0.61558306,1.0665646,-0.34178594,-0.52172303,0.003738456,0.16749316,-0.19042096,0.02437681,0.6347096,-0.32480776,0.140721,-0.6371485,-0.13912496,-0.089043625,0.16861007,-0.026962748,0.10924042,-0.29351023,0.74697316,-0.05149138,0.3713013,0.15195979,0.35832003,-0.31121683,-0.5149396,0.1925326,0.8669093,0.42481503,0.047746714,-0.40051448,-0.09881054,-0.20821674,-0.25438696,0.00047379272,0.44527876,0.70999515,-0.07234522,0.10004132,0.3994104,-0.12351375,0.043501936,-0.13642189,-0.21001352,-0.16418225,-0.04190189,0.5296209,0.7416311,-0.1423714,0.5796702,-0.30914548,0.23510233,0.048145115,-0.48796985,0.53487915,0.46768755,-0.25229484,0.05510986,0.40771642,0.3431793,-0.46496704,0.491291,-0.5998122,-0.25200194,0.64289993,-0.11114771,-0.6252949,0.16638678,-0.3052769,0.11421875,-0.6164233,0.6296868,-0.39069846,-0.43957278,-0.41335294,-0.024228688,-1.901376,0.15871175,-0.0029885494,-0.3061614,-0.37265408,-0.15900125,0.28227556,-0.6010953,-0.6834868,0.09484784,0.1466061,0.52042645,-0.09496034,0.13124345,-0.13079044,-0.23676786,-0.33826086,0.18054256,0.3100136,0.38727346,-0.34291893,-0.2880778,-0.08747713,-0.057411194,-0.5045545,0.18669035,-0.6818625,-0.7424812,-0.10105566,-0.39541024,-0.37111157,0.63746285,-0.5369971,0.03996735,-0.2685619,0.028205983,-0.14242265,0.24043407,0.15540233,0.16604866,0.071761034,-0.11142373,0.11770031,-0.24640726,0.72045016,0.14594251,0.49693388,0.121714786,-0.10724384,0.33000666,0.5090899,0.60583293,-0.033379618,1.0999472,0.23086932,-0.140197,0.12744214,-0.13531703,-0.2293577,-0.6480836,-0.06966313,0.25003192,-0.42623737,-0.50468504,0.084644094,-0.27538896,-0.9293238,0.59420323,-0.092827015,0.46913207,-0.067913875,0.33415407,0.35899454,-0.1370512,0.049917158,0.017641626,-0.06903795,-0.52778685,-0.34810784,-0.70708406,-0.58213043,-0.034703042,0.8599926,-0.23335266,-0.06474225,-0.08561604,-0.41993803,0.22203077,-0.06992913,-0.22205292,0.1259736,0.39020795,0.07009225,-0.6362327,0.364075,0.024160229,0.07544945,-0.48436177,0.2272914,0.738092,-0.5421312,0.46538374,0.38873467,0.0015868911,-0.27621442,-0.53142846,-0.16543314,-0.086123355,-0.19691053,0.3470741,0.23619041,-0.6584963,0.51192117,0.09704818,-0.54439473,-0.77957976,0.33913863,0.08572852,-0.130274,-0.020508008,0.36113828,0.061711524,-0.13417698,-0.212721,0.3253853,-0.3821398,0.36023188,0.050271466,-0.10920595,0.39717653,-0.04582296,-0.45042866,-0.58120656,0.26787612,-0.4258011,-0.44638878,0.4345252,-0.06607346,-0.09924483,0.2943036,0.2613109,0.36784488,-0.17260577,0.027599642,-0.041703384,-0.3780523,0.32007116,0.45999622,0.5009258,-0.40542138,0.5386562,0.20869602,-0.19992469,0.38200822,0.14766221,0.30759218,-0.013778955,0.14111938,0.12415894,-0.054483935,0.15369721,0.62584084,0.31307375,0.5501335,-0.013956373,-0.20524162,0.43135574,-0.014095946,0.3380866,-0.058227226,-0.60181797,-0.057803545,-0.07980286,-0.06497584,0.54078364,0.12672934,0.26392868,-0.08347285,-0.15418823,0.08540637,0.12942187,-0.24985956,-1.2485657,0.14710024,0.14097604,0.9588874,0.2697194,-0.07885361,0.06465222,0.858636,-0.24216257,0.12132614,0.40044892,0.15691009,-0.4850333,0.6382863,-0.5741848,0.37908238,-0.24253017,-0.012711101,0.09565577,0.09883705,0.38826653,0.8458201,-0.3109834,-0.0637828,-0.19410071,-0.15655294,-0.04588075,-0.3181627,0.40400785,-0.3818341,-0.46976027,0.89688677,0.357416,0.3122698,-0.16584462,0.090926155,-0.22390395,-0.31329793,0.27020532,-0.03468635,-0.18419772,0.16230899,-0.55883205,-0.21426898,0.5609436,-0.16059996,0.044932716,-0.20283908,-0.20399342,-0.023600053,-0.22769131,-0.015062653,0.092989914,-0.85918707,0.16526125,-0.16646883,-0.5415322,0.18404509,-0.24733448,-0.015291413,0.20250705,-0.059351627,-0.07212827,0.21236636,0.32765678,0.80083156,-0.011238025,-0.30319977,-0.31546652,0.094430596,0.2047023,-0.26030207,0.18192007,-0.2173308,0.103771456,-0.57082343,0.67618,-0.1372856,-0.59909785,-0.013428312,-0.24056885,-0.21453881,0.6942854,0.041630488,-0.0570954,-0.03621919,-0.22153719,-0.3566834,0.1267843,-0.2539983,0.059497245,0.42180926,-0.42098287,-0.12403013,-0.27772805,-0.06397919,0.42385885,0.009496414,0.6312068,0.43455788,0.10696028,-0.37568888,-0.14676973,0.15572786,0.5713321,0.16401955,0.0024936704,-0.508929,-0.3306044,-0.3289851,0.5729147,-0.18127568,0.23949613,0.03573278,-0.44119194,0.89629143,0.018226244,1.3396757,0.104443155,-0.43012497,0.035371058,0.7096722,-0.17697014,-0.075459905,-0.48195928,1.0401723,0.40847743,-0.17931701,0.045378786,-0.44792175,-0.05083582,0.3084246,-0.38177893,0.009080978,-0.07869242,-0.46018043,-0.23714636,0.055949237,0.22115326,-0.16894454,-0.08475279,-0.02047848,0.32880783,0.042650342,0.4745272,-0.58613586,-0.18591467,0.24952716,0.09563686,-0.25627837,0.20009369,-0.3888454,0.36968553,-0.75649035,0.29176933,-0.46953204,0.22470954,-0.2531354,-0.47761536,0.24714044,0.06249129,0.60441613,-0.50352246,-0.48992297,-0.095641226,0.26233715,0.19129713,0.23971002,0.53578734,-0.20541224,0.109240994,0.030050324,0.5936056,1.4464746,-0.31922027,0.14546257,0.20558184,-0.52446866,-0.53790855,0.36604896,-0.30138117,0.04294997,-0.1788435,-0.44031274,-0.3772054,0.27813852,0.13412216,0.10087237,-0.12081254,-0.62859285,-0.21321939,0.2859199,-0.33840582,-0.29047742,-0.33323196,0.28407097,0.7054382,-0.23613097,-0.43613917,-0.059183512,0.37092832,-0.18143736,-0.3883753,-0.055483297,-0.14353393,0.34647655,0.006954122,-0.3201757,-0.26878738,0.13569736,-0.44059712,0.06584921,0.1455321,-0.43291503,-0.07036516,-0.036545042,0.13446634,0.79904616,-0.2744281,-0.41739866,-0.6029183,-0.5269913,-0.8419292,-0.6039537,-0.09168245,0.2859848,0.010658266,-0.37710956,-0.06472166,-0.21522999,-0.07415212,0.03680961,-0.65826637,0.3013263,0.177837,0.71191025,-0.4304803,-1.0987432,0.13200492,0.20555452,-0.060651045,-0.7100137,0.6579418,0.057173435,0.7337576,0.17484471,0.031667665,-0.1902021,-0.4387333,0.009437754,-0.3089,-0.20065968,-0.94207007,0.40937117,206 -628,0.4692182,-0.15126151,-0.2879655,-0.19129989,-0.2817441,0.07484869,-0.08445683,0.25939167,0.28944683,-0.2962572,-0.14814848,-0.32371014,3.988009e-05,0.3393238,-0.1998523,-0.7077353,-0.10560738,0.029046072,-0.67465854,0.38618386,-0.5065337,0.34948397,0.1989065,0.43884298,0.13469759,0.12942328,0.3122273,-0.031582076,-0.06805702,-0.06334999,-0.22218381,0.12549919,-0.7455302,0.08282064,-0.0179835,-0.20310394,-0.21924551,-0.4305693,-0.4285761,-0.7095928,0.473327,-0.97187245,0.47098827,-0.16473047,-0.2984408,0.05928543,0.11723181,0.25260606,-0.17870876,-0.0487394,0.21044111,0.0070486804,0.076057404,-0.022851877,-0.25905547,-0.46431792,-0.5510334,0.102001436,-0.4233192,-0.17794129,-0.1949146,0.2633137,-0.2712339,0.086065836,-0.13985915,0.47709432,-0.2667828,0.089960486,0.22724012,-0.24700134,0.36124516,-0.5862059,-0.17961222,-0.14098272,0.09842922,-0.04257135,-0.25777876,0.21463236,0.46748763,0.40151146,-0.118470006,-0.17973208,-0.18967764,0.07420229,0.11465342,0.35214835,-0.08818192,-0.42390364,-0.26394895,0.0057744337,0.27794585,0.12631956,0.26826817,-0.4238615,0.08619371,0.07209378,-0.14052805,0.44562736,0.59466106,-0.105497964,-0.37317255,0.28881967,0.2859655,0.23601294,-0.092502944,0.002853843,-0.019784676,-0.5461273,-0.10265077,0.17639494,-0.1346452,0.6386148,-0.16117543,0.29726207,0.7367413,-0.054988716,0.17904687,-0.14901659,-0.092427365,-0.20699804,-0.12892406,-0.041326173,-0.040911045,-0.42149228,-0.005229354,-0.25193974,0.70641243,0.19584288,-0.84343845,0.39814594,-0.5199574,0.24921972,-0.09094617,0.49438703,0.8399864,0.34735987,0.15361309,0.847626,-0.6427988,-0.0060018804,0.14967027,-0.49643564,0.1948519,-0.34238088,0.100830466,-0.5456099,-0.21543679,0.2194362,-0.04380101,0.022998022,0.44201294,-0.43514436,-0.0069326963,-0.19621634,0.7563267,-0.27169067,-0.077529564,0.8884417,1.0522996,1.0091364,0.24552242,1.4729917,0.35603106,-0.101451226,0.35050157,-0.2951392,-0.7760446,0.28760785,0.30738664,-0.2532558,0.44862592,-0.03369107,-0.051216938,0.28651226,-0.24296631,0.07727598,-0.12759386,0.16123417,0.1700091,-0.19698414,-0.22884156,-0.27778453,0.151661,0.13035382,0.083438925,0.14632195,-0.13953026,0.45797715,0.11858865,1.3216622,0.012154171,0.016605474,0.014846722,0.3927154,0.08484897,-0.18446445,-0.024354119,0.21646637,0.46020496,0.12674221,-0.5337619,0.12756455,-0.23011857,-0.47414553,-0.21702102,-0.2675649,-0.22127149,-0.0040431437,-0.32168415,-0.23208156,0.050836615,-0.41534182,0.4508097,-2.457977,-0.16905585,-0.25864962,0.40441763,-0.21186827,-0.18594892,-0.1332112,-0.52324396,0.3118884,0.6053275,0.26578444,-0.7971679,0.22054657,0.25252402,-0.43704638,-0.21597226,-0.7118807,0.034125272,0.038172044,0.43552145,0.027294952,-0.08788026,0.036572695,0.22277474,0.5551199,0.25090423,-0.1419058,0.18201467,0.61102957,0.01812965,0.49457985,-0.008365576,0.42873663,0.02211269,-0.025291543,0.5042498,-0.49895513,0.20509934,0.11316304,0.1648868,0.49866676,-0.43764466,-0.70830715,-0.79553753,-0.5128994,1.2920501,-0.2650935,-0.40640238,0.23150781,-0.15556327,-0.31481007,-0.08705803,0.7594529,-0.2367428,-0.006934496,-0.77594566,-0.08272943,0.032062773,0.24602129,-0.18070933,0.0748666,-0.38261622,0.8008626,-0.11691423,0.39129984,0.25321463,0.14247242,-0.32017425,-0.5986729,0.10874491,0.8221239,0.35244545,0.0763476,-0.17909224,-0.043466635,-0.39428207,-0.26882437,0.07925472,0.67341673,0.6274785,0.013858325,0.11562058,0.2615027,-0.15954575,0.04907731,-0.16974145,-0.23922132,-0.054871604,-0.027349569,0.6128362,0.79167217,-0.32144216,0.36186054,-0.2551832,0.14624995,-0.12127287,-0.45407847,0.6307484,0.97831315,-0.22172032,-0.29955056,0.35503995,0.35065684,-0.48197585,0.39477363,-0.45432875,-0.27675003,0.501949,-0.03582336,-0.53494054,0.23015748,-0.2836239,0.055319443,-0.87534374,0.43384597,-0.10517417,-0.45312506,-0.63221484,-0.13724683,-3.450203,0.13319525,-0.15086296,-0.28462192,-0.2524904,-0.181594,0.35909462,-0.5764867,-0.57148796,0.032248277,0.009426688,0.50315166,-0.06845225,0.20931944,-0.2391945,-0.08119499,-0.3569454,0.16602851,0.12842754,0.31225622,0.09160225,-0.24334778,0.07699507,-0.33668762,-0.5236653,-0.0743124,-0.5294723,-0.78271234,-0.13726388,-0.43192673,-0.30993143,0.6725844,-0.3997436,-0.08313378,-0.28701484,-0.13640653,-0.20730409,0.5696728,0.032864764,0.05110242,0.047607407,-0.017228732,-0.16722092,-0.2674811,0.36209363,0.11624189,0.26642525,0.44456258,-0.25942644,0.38745007,0.4981267,0.6777044,-0.021550976,0.6603353,0.280494,-0.0895184,0.36083874,-0.24626628,-0.18284185,-0.5326873,-0.20596933,0.077152856,-0.39554217,-0.42698243,-0.24841148,-0.3474889,-0.7832312,0.19956191,-0.12391749,0.30732638,-0.040634137,0.115511164,0.39385203,-0.013786004,0.21128358,-0.07189399,-0.1863955,-0.5715102,-0.48166865,-0.5615117,-0.71019226,0.13716021,1.0370013,0.10321458,-0.21624176,-0.005649195,-0.40263933,0.06932657,-0.15045819,0.09242083,0.14835018,0.18199466,-0.15487258,-0.8301507,0.44234136,-0.09666462,-0.07856459,-0.6326328,-0.0065057073,0.8166592,-0.5553943,0.5473661,0.28630832,0.09272477,-0.062057927,-0.42905095,-0.2597915,0.0558296,-0.16483012,0.5221275,0.27851826,-0.46868816,0.33602884,0.17935716,-0.059496615,-0.55857384,0.47468847,0.03145617,-0.12239301,0.004265235,0.25329557,-0.17955726,-0.043570545,-0.09629713,0.19216159,-0.4636268,0.18969965,0.2639287,0.15903912,0.5446277,0.12111168,-0.117878124,-0.60288864,0.09437247,-0.30113563,-0.24220656,0.13415529,0.1914034,0.22964169,0.103175215,0.010930561,0.33026358,-0.16068126,0.09807301,0.047816046,-0.19637702,0.2824564,0.51834303,0.47153908,-0.51447767,0.5076419,0.034514345,-0.06535162,0.14887792,0.011236429,0.38597852,0.4787718,0.23914704,0.08634117,-0.18030581,0.10091209,0.6320263,0.13192937,0.46277273,0.1647845,-0.22094774,0.40618497,0.12710427,0.2823478,0.0059239496,-0.4927665,-0.11976742,-0.25554737,0.14069936,0.39464834,-0.010201901,0.13262579,-0.0928929,-0.2819374,0.103843324,0.052924316,-0.07277811,-1.3157188,0.2891479,0.36869505,0.70483536,0.4648605,-0.2537824,0.01920676,0.52693856,-0.23786896,0.15148821,0.43255508,0.21104702,-0.54613656,0.3952902,-0.609973,0.42260933,-0.1541083,-0.035894595,0.03461606,0.18542838,0.27373472,0.90538347,-0.0639072,0.057277746,0.020194994,-0.33529922,0.151516,-0.4796556,0.19824305,-0.5213477,-0.30830485,0.62084705,0.46106866,0.1955475,-0.38380045,-0.024248544,-0.057488378,-0.12955667,0.10822983,-0.18333776,-0.15146652,-0.024989413,-0.86110145,-0.21102165,0.5035419,-0.06653492,0.0072293878,0.13258201,-0.29078537,0.10258235,-0.18125485,-0.1094447,-0.086803265,-0.6594654,-0.1933225,-0.17924394,-0.46303156,0.33020046,-0.3424552,0.18505278,0.29399985,0.08435463,-0.30768377,0.09538336,0.27602738,0.82158285,-0.048488695,-0.08023442,-0.521862,0.14238922,0.2785393,-0.33286998,-0.25320333,-0.113189094,0.039433543,-0.22803885,0.48273486,-0.06574695,-0.28183615,0.08891388,-0.102033734,0.083265506,0.4884562,-0.32815966,-0.179245,0.1699324,-0.05875471,-0.2516578,0.118954584,-0.32652488,0.31613237,0.192611,-0.085273035,0.13981281,-0.088085644,-0.08837045,0.31338364,0.106747225,0.3659151,0.42122588,-0.018260416,-0.4205607,-0.07664799,0.00873574,0.50724983,0.32046568,-0.0954277,-0.41010433,-0.443443,-0.32518154,0.46041358,-0.0912881,0.068567075,0.11614014,-0.5957278,0.67668355,0.20769297,1.1548313,-0.028347263,-0.3116562,0.04583689,0.5247623,0.12777436,-0.045098886,-0.61634356,0.9235066,0.590879,-0.23859484,-0.14872965,-0.41513067,-0.1455957,0.31649685,-0.26970905,-0.2606497,-0.070337184,-0.87462336,-0.18097426,0.003105047,0.13942209,-0.11809724,0.11656691,-0.03835003,0.08427711,0.032606475,0.5089816,-0.3480193,-0.08241967,0.23652197,0.14536443,0.07572847,0.14605643,-0.43270296,0.36063495,-0.59054404,0.13404725,-0.4182153,0.107846774,-0.077915944,-0.32885394,0.1750873,0.10439094,0.36513254,-0.26733577,-0.37352088,-0.37074852,0.6721524,0.19254535,0.34656623,0.64948076,-0.14395258,-0.10287972,0.12157425,0.6542445,1.601829,0.028090578,0.13669346,0.24338792,-0.4343751,-0.7052558,0.18122277,-0.3203897,0.2660874,-0.16939312,-0.17100471,-0.32013002,0.28016308,0.0023442002,0.06468559,-0.029260593,-0.4729799,-0.43117955,0.52264184,-0.33969295,-0.27978522,-0.41174617,0.122123,0.5467819,-0.31659728,-0.17184684,-0.007642863,0.4282333,-0.26463646,-0.5189349,-0.106776014,-0.21059991,0.46184734,-0.006886739,-0.31410158,-0.012755742,0.27355295,-0.44330853,0.3588856,0.009945769,-0.4195938,0.07831415,-0.10155775,-0.2022937,0.9373427,-0.11698857,-0.053034898,-0.79317605,-0.532501,-0.86608917,-0.4538935,0.14668192,0.21928841,-0.18147582,-0.5188217,-0.22295325,-0.021493673,0.2019655,0.08265877,-0.5471984,0.45171517,0.09804834,0.6945441,-8.275876e-06,-0.83761215,0.02592674,0.08305315,-0.16516961,-0.6877482,0.68435127,0.013659615,0.5893946,0.058093026,0.16073802,0.23072457,-0.56513774,0.25591046,-0.28701305,-0.2809969,-0.7523048,0.3273338,210 -629,0.39340746,-0.22584367,-0.73725164,-0.09378685,-0.42159316,-0.05323661,-0.29728916,0.5093676,0.17373498,-0.34982756,-0.10708194,-0.04369543,-0.15441066,0.49336067,0.024733594,-0.6232207,0.07283921,0.48609814,-0.8786119,0.7366172,-0.34782538,0.37687668,0.2202669,0.35437223,0.21799657,0.12185968,0.017343411,0.1772024,0.062446337,-0.24009758,-0.22161704,0.2735797,-0.5879956,0.25800174,-0.108786345,-0.53776544,-0.2148826,-0.4119492,-0.28292242,-0.8665381,0.23021507,-0.83012617,0.63354564,-0.054337006,-0.4175451,0.030247709,0.10389013,0.32313105,-0.1307589,-0.080844775,0.19553845,-0.28251314,-0.33170277,-0.26391447,-0.1635177,-0.34702015,-0.45160997,-0.00630101,-0.5738773,-0.06169249,-0.27707258,0.29745606,-0.27219975,0.019218417,-0.20950922,0.38286403,-0.40560627,-0.059020206,0.070953526,-0.25627783,0.19399221,-0.65047514,0.014960198,-0.22806175,0.18647908,-0.07574313,-0.5464106,0.2647087,0.14282405,0.6620049,0.15389398,-0.29501435,-0.24552114,-0.06376564,-0.0367578,0.46646485,-0.18043306,-0.23490418,-0.23949772,0.13598341,0.49730793,-0.023474813,0.1661912,-0.33105835,-0.08926788,-0.20588763,-0.085303456,0.3924196,0.4678457,-0.30932415,-0.37311256,0.37878302,0.6317072,0.20510787,-0.018568397,0.2842936,-0.026429167,-0.41779634,-0.15444167,-0.01264993,-0.18788815,0.4222202,-0.21801776,0.21442972,0.58178955,-0.12764272,-0.3173339,0.18072914,0.17613462,-0.016328564,-0.24611881,-0.32318848,0.4517852,-0.5147377,0.02604988,-0.20525339,0.70985,0.09301706,-0.59630287,0.30511433,-0.5774341,0.2189362,-0.027858524,0.4837448,0.9234655,0.7497579,0.1583645,0.9048411,-0.24364607,0.18829867,-0.093581155,-0.12999286,0.10934135,-0.26587868,0.012051156,-0.6534436,0.032172468,-0.24710585,-0.3861335,0.24181029,0.80420554,-0.7437526,-0.20674229,0.15747967,0.57252127,-0.36222303,-0.04396161,0.98321503,0.8853377,1.1402272,0.18686914,1.1824051,0.2509337,-0.15565135,-0.100162946,-0.103260234,-0.9490972,0.17322557,0.46657407,0.016320009,0.41270912,0.109609365,0.05468703,0.51397234,-0.44485146,-0.1575262,-0.29486006,0.2861124,-0.22881149,-0.15940827,-0.6255707,-0.18302855,-0.022095777,0.2733342,0.04989197,0.3306057,-0.25423574,0.67553735,0.077513546,1.6804669,-0.23370449,0.017447146,0.029083828,0.21595325,0.40262678,-0.26193935,-0.21292473,0.25454205,0.2934658,0.025893496,-0.54300827,-0.016249986,-0.29148802,-0.38735846,-0.24989718,-0.20277049,0.05567258,-0.2584024,-0.30341053,-0.5304561,0.030293979,-0.42480892,0.37207666,-2.0971446,-0.35240155,-0.10194744,0.33975813,-0.21297434,-0.38496652,-0.2667107,-0.46033117,0.3625558,0.33225065,0.5929089,-0.63778627,0.3786252,0.3183608,-0.70948493,0.008625799,-0.5476064,0.024506,-0.0010259908,0.297166,0.04662821,-0.2189444,-0.24084178,0.0155659085,0.4602297,-0.23529376,0.01717439,0.5373019,0.34132764,-0.05754374,0.26959297,-0.017332068,0.6947384,-0.45374694,-0.42631373,0.47928783,-0.32682225,0.15572394,-0.17188542,0.18694729,0.6285665,-0.6669713,-0.9779974,-0.7570877,0.1289163,1.2188385,-0.21563363,-0.481698,0.2171902,-0.5160013,-0.32454613,0.19810796,0.39847642,-0.24888515,-0.21365203,-0.80069745,-0.034295302,0.021972766,0.47972634,-0.056282878,-0.17642055,-0.4820475,0.7122151,-0.1452118,0.43977958,0.24550201,0.23059365,-0.31295136,-0.45320335,0.06055168,1.0518134,0.60710883,0.11520701,-0.31546083,-0.12439509,-0.3823113,-0.063571334,0.0154419495,0.46783173,0.76037407,-0.111829534,0.11982116,0.36223397,-0.07867778,0.021583932,-0.21443638,-0.2741264,-0.091954075,0.27260855,0.622333,0.5341933,0.12230878,0.6679946,0.0009066944,0.2815048,0.08716813,-0.85100335,0.5348455,1.1018584,-0.28922474,-0.48695976,0.7305694,0.17979948,-0.22778057,0.5191895,-0.5110841,-0.40936503,0.2450596,-0.1763364,-0.27669743,0.29385078,-0.33068404,0.33146387,-0.9652981,0.3236078,-0.20800105,-0.6963074,-0.64985055,-0.031635303,-2.8354225,0.26000497,-0.11035906,-0.009628243,-0.13201731,-0.22385915,0.2504737,-0.46877337,-0.6548555,0.05559029,0.20302328,0.9550902,-0.008907139,-0.06776514,0.027745852,-0.6307287,-0.22338957,0.2474274,0.08808712,0.27057856,-0.08574339,-0.5025905,-0.15004483,-0.27849707,-0.41702616,-0.10472037,-0.8598229,-0.45375875,-0.18938385,-0.8346866,-0.098613665,0.70584404,-0.13657996,0.06206637,-0.39005834,0.015514195,0.197534,0.093635716,0.05092331,0.08963271,0.33945453,-0.08645657,0.033530198,-0.24793825,-0.031773064,-0.055625446,0.11738641,0.297248,-0.21058556,0.4104738,0.76846576,0.8691863,-0.38197047,1.0033323,0.7095037,-0.30430943,0.2943445,-0.08328468,-0.54596317,-0.63739544,-0.20929353,-0.15444548,-0.5787412,-0.12772141,0.09568857,-0.41549048,-0.99108696,0.7571182,0.072650015,0.1609951,0.109325975,0.45676988,0.48063204,-0.17836529,-0.097253166,-0.2312403,-0.3243907,-0.42431056,-0.22416364,-0.59368074,-0.6526875,-0.041412838,1.5123367,-0.28020227,0.086827345,0.1477774,-0.1644102,0.049064398,0.1717306,0.08432837,0.37314862,0.53720367,-0.05980023,-0.54971,0.24390484,-0.17488411,-0.011906491,-0.44594532,0.34811667,0.6349577,-0.73946124,0.29201144,0.18245283,0.052368615,-0.10979426,-0.52372736,-0.026282724,0.16726892,-0.25510007,0.4623612,0.3672756,-0.7086042,0.62372214,0.29327965,-0.28163823,-0.77710795,0.15245189,0.0600324,-0.2647714,-0.1528807,0.43775213,-0.07417921,0.0049993303,-0.38564762,0.18280624,-0.20371482,0.3195475,0.09665031,-0.33743873,0.22348188,-0.49931702,-0.33641356,-0.74595666,0.13797449,-0.4651933,-0.37647703,0.20254612,0.07839855,0.11711591,0.04450742,0.121078536,0.5092392,-0.26800746,0.041426238,-0.26985195,-0.44336227,0.40695345,0.49686435,0.32119936,-0.31868193,0.70357555,0.059968792,-0.22503193,-0.4763042,-0.055383485,0.6211446,-0.13549168,0.4065456,0.09583064,-0.16962235,0.191199,0.86389416,-0.03140222,0.34381488,-0.076758824,-0.15874907,-0.04850305,0.118338786,0.16291769,-0.05873209,-0.49762633,0.099518366,-0.2276722,0.028207155,0.64204067,0.26716945,0.3553469,-0.12353635,-0.2676949,0.053825535,-0.008935983,0.20192154,-1.4596195,0.3316376,0.26213413,0.6947532,0.47612637,0.14832388,-0.13135482,0.6647125,-0.33858067,0.16982879,0.18172099,-0.27107394,-0.23701072,0.4583851,-0.80556285,0.50359666,0.0032185225,-0.03525356,0.3182192,-0.11739358,0.52448475,0.8987074,-0.21599957,0.16906546,-0.03323068,-0.25325558,0.037849355,-0.19240293,-0.14262949,-0.54915977,-0.45008653,0.97707164,0.30028015,0.4550237,-0.22294165,-0.010438951,0.1440238,-0.2994723,0.2655961,-0.11042113,0.206787,-0.1896862,-0.326018,0.017129926,0.5121819,0.2752303,0.09642368,0.10766235,-0.2429226,0.27639884,0.016359806,0.011534361,-0.18027498,-0.5800526,0.006717526,-0.499817,-0.2633898,0.4501009,-0.15382592,0.090396866,0.18670684,0.050151348,-0.22501977,0.6331944,0.09320258,0.8521128,0.22027276,-0.123059064,-0.08537786,0.5684389,0.09253489,-0.26995632,-0.034004845,-0.29513404,0.15972002,-0.70031446,0.55414534,-0.082718775,-0.5513306,0.300435,-0.07263132,0.11405904,0.2831247,-0.21198955,-0.08449901,0.028300345,-0.09357978,-0.2664521,-0.3184479,-0.2501439,0.30423605,0.095787935,-0.09160764,-0.30815095,-0.0766315,-0.068237275,0.58878475,0.024358515,0.20401834,0.2766368,0.24276775,-0.4380948,0.13459674,0.2911515,0.5057514,-0.010671644,-0.18847695,-0.23059872,-0.26072958,-0.5753736,0.16396578,-0.11919998,0.4132276,0.11097434,-0.23189251,0.8790032,0.26525003,1.3284787,-0.19476166,-0.39007586,0.27832934,0.55341786,-0.091235444,-0.0819025,-0.28531882,0.89380205,0.6543102,-0.07271809,-0.1509681,-0.513266,-0.29796392,0.2975876,-0.38349983,-0.16039951,-0.05121902,-0.6414409,-0.43205076,0.28173417,0.24121715,0.07888636,-0.19573191,0.18263179,0.24165517,-0.13675275,-0.01167125,-0.4517357,-0.015853213,0.3433656,0.16763128,-0.075990826,0.044737097,-0.51281154,0.39109457,-0.677997,0.037440456,-0.23521835,0.19778201,-0.018992113,-0.3631572,0.22406301,0.14779755,0.25074035,-0.5072569,-0.3004347,-0.15664218,0.598953,0.098670915,0.030953903,0.7418572,-0.36940473,0.14841492,0.024037452,0.24669306,0.9171615,-0.25704336,-0.022151938,0.2703598,-0.21110636,-0.6409889,0.47858498,-0.37832448,0.14939007,0.05438534,-0.38985592,-0.55600923,0.3167823,0.24921982,0.13299078,-0.045856003,-0.6123534,0.17475997,0.28793627,-0.15190342,0.01951353,-0.3933987,0.06375353,0.5268676,-0.10063569,-0.6881142,0.3269431,0.22246936,-0.19086543,-0.6380629,-0.16809027,-0.2966101,0.26198658,0.08709526,-0.3888368,0.017441677,0.091711946,-0.60824883,-0.10401295,0.28931606,-0.28918105,0.17422397,-0.454439,0.11659812,0.9949792,-0.37620443,0.3381661,-0.5199098,-0.6016289,-0.88926095,-0.14455827,0.6330561,0.18790744,-0.029085118,-0.99928737,0.06344669,-0.31044585,-0.108826995,0.12391978,-0.38428518,0.5593484,0.17991978,0.42496192,-0.23687223,-1.0181702,0.38287634,0.11495876,-0.18172783,-0.37694725,0.47488913,0.041213818,0.88017315,0.12869407,0.11358234,0.32409054,-0.84225583,0.118296504,-0.16653708,-0.029598393,-0.6149547,-0.20422174,211 -630,0.3957238,-0.18953325,-0.5668139,-0.30752084,-0.5693444,0.19701742,-0.21851622,-0.026381163,0.31429031,-0.4317888,-0.088599995,-0.15942687,0.03213934,0.55453867,-0.30963638,-0.620411,-0.03184878,0.22686145,-0.85457224,0.49144056,-0.45893776,0.28585866,0.15341806,0.2505414,0.16616522,0.008144363,0.41144472,0.041537106,-0.067181386,-0.099965766,-0.15579209,0.06969796,-0.58724743,0.26993108,-0.18216369,-0.4961589,0.047859266,-0.57440495,-0.18759492,-0.720107,0.5102726,-0.8731645,0.5443932,-0.18386866,-0.1818888,0.22552776,0.32746738,0.18764988,-0.22809282,-0.022512244,0.34436682,-0.31497642,-0.15138648,0.025141168,-0.39960396,-0.5297129,-0.6710415,0.08711949,-0.7239784,-0.032374,-0.2386678,0.2374079,-0.2930115,0.15126374,-0.10909419,0.44334576,-0.37359625,-0.08606926,0.22470161,-0.0372786,-0.071450315,-0.4600689,-0.30831724,-0.1866574,0.4206961,-0.16398114,-0.17712633,0.3964369,0.15481132,0.38821995,0.0671628,-0.33539647,-0.25247523,0.027313102,0.07536626,0.48511854,0.1440308,-0.25691402,-0.2136284,0.03226976,0.43413073,0.3269841,0.15893298,-0.14176203,0.07188214,-0.11193867,-0.2197002,0.640622,0.45045596,-0.33514506,-0.39580837,0.44358727,0.359742,0.038103662,-0.1360551,0.11120503,-0.08966789,-0.67680424,-0.21122018,0.3114756,-0.0027762859,0.528729,-0.14104915,0.25600263,0.6717524,-0.26114434,-0.1492663,-0.12021859,-0.04416557,-0.16167384,-0.21726418,-0.095258,0.2966685,-0.67472017,-0.013531197,-0.31342378,0.7377579,0.007716196,-0.787885,0.19364572,-0.48187965,0.24187082,-0.09674342,0.68671477,0.81602436,0.5166134,0.31311607,0.9375572,-0.3328625,0.20866282,-0.12202473,-0.36364636,0.017346947,-0.2263418,0.04064295,-0.47298098,-0.021560825,-0.114872254,-0.0012703309,0.03232744,0.5346213,-0.49270695,-0.16589059,0.03552167,0.6346732,-0.38693973,-0.15514888,1.1704088,1.054614,1.1943073,0.18938573,1.2392794,0.3125378,-0.14992079,-0.08576692,-0.047598474,-0.71915245,0.23788507,0.26334587,0.08979968,0.32766035,-0.00014336292,0.11393787,0.27142423,-0.3994791,-0.2275323,-0.06732815,0.34786886,0.018288048,0.015693197,-0.24197325,-0.3344639,0.12918013,0.107679255,0.2009436,0.28670454,-0.18439706,0.81027406,0.10959541,1.1882544,0.10251077,-0.030519636,-0.11367304,0.454596,0.24459916,-0.13849458,-0.20354524,0.16067146,0.29591057,-0.164042,-0.60414505,-0.13806851,-0.30479702,-0.28742746,-0.24196988,-0.4040928,-0.068378486,-0.36407524,-0.09201296,-0.23126301,0.08671602,-0.49174228,0.45558497,-2.4595277,-0.2797427,-0.23636898,0.36431012,-0.057167407,-0.24791981,-0.25508487,-0.6773303,0.4798237,0.41001013,0.41455376,-0.5545418,0.44431037,0.34637135,-0.6036986,-0.1799635,-0.8417508,-0.03930401,-0.14754765,0.32667682,-0.04352679,-0.07503577,-0.124847926,0.2303768,0.53484786,0.14594005,-0.0074371602,0.3301162,0.73956835,0.060624048,0.7207564,0.1403881,0.64036494,-0.43294474,-0.09023353,0.28807837,-0.4986416,0.36108935,-0.06783068,0.19156529,0.6836862,-0.631566,-0.9353208,-0.5479823,-0.17660362,1.1682115,-0.27143797,-0.35403493,0.23258512,-0.19736885,-0.08107667,-0.017478747,0.457392,-0.14016022,-0.05781569,-0.59350246,-0.1833218,0.07318664,0.16389486,-0.15221907,0.025664646,-0.4581862,0.4805126,-0.109337136,0.39692926,0.2307033,0.22590402,-0.53065264,-0.50986236,0.3358148,0.8258644,0.38124296,-0.06415785,-0.2551497,-0.2128214,-0.25043055,-0.34570578,0.1328308,0.39524123,0.62648875,0.030264301,0.21955845,0.43197024,-0.21051572,0.12262627,-0.18421474,-0.20611158,-0.27287066,-0.055684473,0.6357781,0.7000411,-0.026980937,0.49417013,-0.085528776,0.21657148,-0.16244806,-0.5040336,0.5615301,0.809652,-0.09312829,-0.26207703,0.6172057,0.48064947,-0.16779925,0.5188742,-0.43925476,-0.3769843,0.6048454,-0.09738842,-0.38628185,-0.123431645,-0.33734906,-0.018977482,-0.89892757,0.2275455,-0.013768911,-0.53552705,-0.6106707,-0.123428784,-2.8167088,0.024722485,-0.21806079,-0.072894625,-0.12473444,-0.36224863,0.18720943,-0.39801934,-0.7128079,0.21662697,0.11787583,0.70646083,-0.08960747,0.23418894,-0.27011728,-0.26486772,-0.42797136,0.113400236,0.14107102,0.43465537,-0.038637858,-0.35833052,0.15106831,-0.47201654,-0.48877034,-0.0602202,-0.4638347,-0.36557162,-0.051005363,-0.6310025,-0.32350528,0.7513719,-0.16130525,-0.16393144,-0.33224732,0.0538094,0.1511639,0.2928993,0.050927844,0.21917017,0.11291814,-0.08926695,-0.012274714,-0.29171744,0.26747146,0.07695487,0.14308609,0.4394914,-0.16720702,0.32067442,0.40652114,0.72082865,-0.08256279,0.90177375,0.091950215,-0.1307469,0.20952225,-0.23513919,-0.36631006,-0.6269783,-0.22892064,-0.054892905,-0.5080536,-0.42362103,-0.116302475,-0.31062663,-0.8883986,0.5587194,0.22388095,0.20361081,-0.28510615,0.20418385,0.23783001,-0.2162141,0.17773312,-0.17169435,-0.1653921,-0.467967,-0.45541817,-0.788722,-0.5998774,-0.094358645,1.3599688,-0.27564615,-0.14317468,0.017989222,-0.33544916,0.28926784,0.26758835,0.014207868,0.39881957,0.29782298,-0.10754435,-0.6529426,0.47986147,-0.23571777,0.1818757,-0.37729856,0.09243392,0.7783164,-0.54197943,0.32176203,0.5142175,0.08793016,-0.072669834,-0.60036856,-0.13553753,-0.069392726,-0.05967239,0.36590818,0.3168948,-0.80798507,0.66225135,0.07835957,-0.3673039,-0.8170451,0.34072554,0.07630365,-0.026431946,0.28868946,0.35024044,0.33898047,-0.074222036,-0.43020126,0.22119887,-0.41500646,0.35766643,0.12448169,-0.0035756642,0.3207016,-0.28926802,-0.54031366,-0.6349458,-0.10462893,-0.5357049,-0.180906,0.0907677,0.038553394,0.122297876,0.21937667,-0.0094480375,0.35103768,-0.36773846,0.054105144,-0.071188696,-0.2434002,0.28834227,0.48235688,0.43385983,-0.6220735,0.7030765,0.07435061,-0.08954,-0.0047014216,-0.028164927,0.2058189,0.2900525,0.21189298,0.23182808,-0.25443593,0.13202544,0.61218035,0.12517752,0.18121053,0.25181395,-0.32066762,0.364802,0.118290186,0.25420907,-0.116043694,-0.3288254,-0.010412106,-0.1946449,0.047658384,0.28406918,0.01145036,0.33556637,0.042817004,0.035482362,0.02409537,0.086696625,-0.2882834,-1.4061608,0.31370208,0.19165447,0.723496,0.51920927,-0.03766694,0.035843085,0.710181,-0.3834329,-0.072885044,0.31575915,0.17189237,-0.2597454,0.5276156,-0.49753475,0.6105789,-0.13796376,-0.00087608397,0.093168385,0.28323597,0.34230042,0.9624622,-0.1178034,0.06278625,-0.06753529,-0.19479115,0.2687642,-0.24278821,-0.009177531,-0.494971,-0.2304311,0.87451375,0.2045664,0.36753353,-0.08823157,-0.016542275,0.10568913,-0.17856668,0.041165616,-0.10055157,-0.102323376,-0.26177236,-0.6077102,-0.11958578,0.5290282,0.056462582,0.23916985,0.21268076,-0.358721,0.13500413,-0.12550066,0.09643298,-0.08022494,-0.7493753,-0.21837507,-0.17743972,-0.47178572,0.24295966,-0.4473518,0.27228695,0.3088413,-0.03612473,-0.27471894,0.07585316,0.20124577,0.6976814,-0.0022058212,-0.077265576,-0.26250812,0.045427322,0.25826102,-0.4817945,0.19642822,-0.1528987,0.1374183,-0.61915207,0.608143,-0.09506081,-0.39098123,-0.049643032,-0.091007434,-0.040206883,0.39538816,-0.09546907,0.12723304,0.122012615,0.07960127,-0.20478293,-0.102000766,-0.43760204,0.16483815,0.1762791,-0.09448274,-0.069634765,-0.03567711,0.11542135,0.6851864,0.0656218,0.12052941,0.12371673,0.053319573,-0.5245903,0.09518561,-0.12032005,0.57947195,0.019444585,-0.24722418,-0.36601794,-0.16502914,-0.238376,0.6187611,-0.16178145,0.09080161,0.01896763,-0.36991245,0.6923977,0.11573624,1.1784027,0.018398311,-0.47806937,0.18046273,0.6555177,0.08006914,-0.006316969,-0.22314993,0.97137386,0.46132877,-0.24934532,-0.20463778,-0.60133094,-0.123162985,0.2832446,-0.352348,-0.18723574,-0.114160985,-0.5182296,-0.25528446,0.26654053,0.07854325,0.20173317,-0.282304,0.1368772,0.22485963,0.14835599,0.38350666,-0.6673351,-0.16177717,0.31391746,0.15110232,-0.015052419,0.10362442,-0.39004713,0.37433082,-0.679435,0.24240783,-0.29460016,0.18856889,-0.12296871,-0.18695733,0.3037825,0.34344393,0.36304325,-0.2526757,-0.39576986,-0.31686783,0.69045615,0.34013674,0.35087663,0.7827849,-0.33719888,-0.14406824,-0.023958476,0.3751286,1.2910328,-0.051490095,0.05472354,0.29796445,-0.35493073,-0.59830064,0.2751911,-0.43125364,0.07197059,0.01796031,-0.27390018,-0.36985874,0.28519613,0.22296605,0.29614392,0.12276887,-0.5910846,-0.18331626,0.42173052,-0.17275167,-0.28210837,-0.41415197,0.061658364,0.61209273,-0.15935005,-0.33093598,0.117141314,0.35707074,-0.23669583,-0.74716944,-0.059492495,-0.30305263,0.44159552,0.11583788,-0.25314313,-0.22197025,0.034157258,-0.41464707,0.22484551,0.19216508,-0.33240458,-0.034519076,-0.23880276,0.00391407,1.0596994,-0.16707776,0.28247553,-0.51588774,-0.46823597,-0.9044234,-0.17416981,0.12063285,0.14594749,-0.0859758,-0.552765,-0.20873043,-0.03301825,-0.11342454,0.21465053,-0.53051937,0.32737917,0.1489763,0.23418058,-0.11790789,-0.98465097,0.073655054,0.04607813,-0.2521269,-0.41312927,0.575321,-0.12535463,0.47403526,0.11427628,0.014704539,0.11318558,-0.41765293,0.35586312,-0.31365883,-0.15867224,-0.394612,-0.0544846,212 -631,0.3290613,-0.04997078,-0.64484066,-0.056480415,-0.15199013,-0.008720605,-0.23726441,0.54036385,0.41964,-0.5067823,0.018239724,-0.040123835,-0.00065657496,0.1690162,-0.23435125,-0.5573369,-0.054123804,0.19775401,-0.5303414,0.57294106,-0.3734926,0.27354482,0.22868626,0.24978042,-0.053737342,0.21907641,0.012344356,-0.15970853,0.04367321,-0.12550062,0.02363178,0.19513133,-0.4642673,0.33279622,-0.1220185,-0.12943108,0.047809288,-0.37780836,-0.40108678,-0.7684351,0.10609992,-0.7074166,0.54651344,0.03610563,-0.4189439,0.1698226,0.001907649,0.14272952,-0.25170547,0.045023486,0.3093025,-0.21803635,-0.5419687,-0.28334385,-0.29724076,-0.48676902,-0.47405085,-0.14567049,-0.45785713,0.28385085,-0.31942636,0.22117516,-0.30666262,-0.0154713895,-0.21928999,0.36346248,-0.45932597,0.26721132,0.16471331,-0.051657908,0.4627703,-0.5976193,0.04432952,-0.12269013,0.15624431,0.16410202,-0.35881594,0.32170883,0.08981873,0.6187976,-0.097858004,-0.10556693,-0.3038948,0.09130164,-0.059430383,0.4168487,-0.2824741,-0.107071675,-0.1747697,-0.08070827,0.36866134,0.30788282,-0.18721618,-0.38878843,-0.10144453,0.005988107,-0.38005373,0.41943994,0.58593154,-0.092834204,0.108618245,0.4192701,0.36685672,0.26116404,-0.26043314,0.10517548,-0.13387762,-0.5656177,-0.22565348,0.07275853,0.0058145477,0.4394397,-0.09752385,0.10986643,0.6583353,0.0014692178,-0.2682777,0.18312621,0.14755373,0.0929356,-0.14455853,-0.18265165,0.2946133,-0.63226086,-0.14025773,-0.3379892,0.63088745,-0.12962992,-0.96283305,0.40353787,-0.3859546,0.072037585,-0.16204707,0.7141057,0.82469726,0.8426357,0.07576804,0.90079814,-0.66491574,0.012856511,-0.23403105,-0.37672248,0.42021805,0.020566909,0.035242837,-0.44404528,-0.29006672,0.08702927,-0.2869115,0.121797055,0.49173906,-0.42707422,-0.33493587,0.10445145,0.58045304,-0.36414176,-0.13546176,0.50057256,1.0997844,0.7592944,0.19277444,1.2434611,0.07824834,-0.10668422,0.013578773,-0.15131743,-0.7973777,0.27034616,0.23780641,0.14484888,0.13211495,0.18255416,-0.044699267,0.284153,-0.10222367,-0.27343372,-0.13507025,0.3350482,-0.2430117,-0.09802858,-0.26373294,-0.36472642,0.04467751,0.16474196,0.026987245,0.2456381,-0.1862851,0.19960557,0.2808129,1.4335009,-0.111213885,0.012093612,0.13031076,0.123961225,0.29883906,-0.16198143,-0.1988612,0.43932799,0.38427818,0.019585064,-0.6217126,0.095253855,-0.07185674,-0.3318729,-0.10156015,-0.20735945,0.094385706,-0.1376349,-0.28102487,-0.17232966,0.0002736094,-0.66678596,0.5286599,-2.7283123,-0.038303215,-0.008305591,0.38514048,-0.011802875,-0.23451048,-0.3528171,-0.49623632,0.4417944,0.32945964,0.59013164,-0.47675964,0.4131565,0.4326573,-0.6232394,-0.12585126,-0.75694394,0.011032861,-0.03390919,0.18869518,0.09393603,-0.08624358,-0.0080888085,-0.023070775,0.4514119,0.0049849106,0.15759343,0.45080596,0.47490963,-0.09787367,0.48044747,-0.22213088,0.49430627,-0.3054849,-0.09846897,0.22327016,-0.26972142,0.25498372,-0.19522974,0.19097377,0.39725304,-0.4592225,-0.799013,-0.43650293,-0.049663864,1.3038821,-0.42566812,-0.45567256,0.2221772,-0.145651,-0.28790763,0.061192673,0.67474043,-0.17928974,-0.061982915,-0.78723466,-0.13749428,0.019687848,0.44829047,0.018392816,-0.007901325,-0.3938715,0.63602406,0.013388147,0.6808316,0.44797057,0.13493209,-0.12918893,-0.22239974,0.048817195,0.84798086,0.30380544,0.16848278,-0.2608541,-0.09225222,-0.28950465,0.05148065,0.053278368,0.64445245,0.57255286,-0.1673056,0.068867855,0.42759016,-0.23745863,0.011373346,-0.14218631,-0.30940178,-0.12309189,0.10120343,0.52621025,0.7431679,-0.0038994963,0.17319356,0.113936916,0.33095136,-0.056610264,-0.65060896,0.38595402,0.6204735,-0.13411643,-0.2792803,0.5805258,0.49882835,-0.018891223,0.5574243,-0.4790827,-0.48474312,0.4985804,-0.022053044,-0.44249102,0.36428055,-0.3644283,0.07668848,-0.7540747,0.20854998,-0.39495108,-0.7393925,-0.34920242,0.06575502,-2.4795847,0.27009627,-0.106680945,-0.1108612,-0.086828575,0.015428112,0.37130144,-0.36840317,-0.6193815,0.013520222,0.34964234,0.46797693,-0.016570369,-0.09526897,-0.2403953,-0.30700442,-0.30202186,0.1850868,0.14330646,0.2313322,-0.12744525,-0.60184455,-0.311114,-0.1897517,-0.18750317,-0.025552187,-0.5427781,-0.24038744,-0.0575156,-0.66115963,-0.3210028,0.5585062,-0.43421504,-0.02669505,-0.10888757,0.039424498,0.12653463,0.27068678,-0.28022307,0.14216545,-0.08720649,-0.18759878,-0.14182955,-0.2952823,0.3183969,0.051939055,0.14699909,0.32892603,-0.071548834,0.046414085,0.76935196,0.60185236,-0.21510823,1.0922264,0.4632074,-0.009919453,0.11799698,-0.020658858,-0.17681734,-0.6871844,-0.0503755,-0.29472938,-0.53533834,-0.08352104,0.100082435,-0.41620815,-1.0148411,0.5608891,0.15129124,-0.07242871,0.14039114,0.3525844,0.35790524,-0.04621158,0.039246693,-0.23681849,-0.3371926,-0.46652144,-0.3433066,-0.832888,-0.30069587,0.14700437,1.1791921,-0.32087544,0.194908,0.061669275,-0.16349524,0.048522923,0.13995603,0.005411675,0.2857786,0.4014242,0.035926737,-0.47577098,0.3603515,-0.2326805,0.07100027,-0.6356642,0.232733,0.61427546,-0.79813373,0.42562735,0.40535083,-0.0108137615,0.024278838,-0.7335507,-0.29761994,-0.011774559,-0.1767288,0.5207139,0.23374255,-0.96266717,0.54055804,0.28344434,-0.22774762,-0.7422923,0.36800683,-0.17656633,-0.19204037,-0.021224352,0.26830417,-0.049908385,0.028196167,-0.23894912,0.122526355,-0.38831088,0.40106437,-0.029259672,-0.20603308,0.26995432,-0.106400795,-0.0016636115,-0.89144367,-0.11376064,-0.6409396,-0.20195073,0.39008886,-0.029147752,0.03981232,-0.018571189,0.20410262,0.45910007,-0.32175812,0.117840394,-0.44582698,-0.36553735,0.640926,0.5760117,0.47295552,-0.31287748,0.5254865,-0.09113913,-0.084633,-0.31130183,0.22655572,0.4017731,0.07035808,0.36720133,-0.08109457,-0.21328834,0.10681209,0.8222581,0.20479801,0.2105342,0.023614787,-0.06798342,0.2422631,0.05818101,0.14339264,-0.19448288,-0.55265284,-0.023345493,-0.42977995,0.1646367,0.5477828,0.24539311,0.45314205,-0.15764305,-0.22953017,-0.0666232,0.24166647,0.30873543,-0.8712771,0.46808916,0.14621775,0.3983362,0.68232447,0.16071132,0.012243862,0.62005687,-0.076546624,0.22112466,0.1995174,-0.032534745,-0.3838474,0.41963392,-0.7727794,0.3432981,-0.05280649,-0.048464578,0.3590904,0.013267613,0.45505187,1.0092162,-0.035512384,0.20746034,0.040938117,-0.16202904,0.18804106,-0.33175847,-0.052722856,-0.48955253,-0.5040999,0.61346656,0.40764326,0.5966015,-0.20201008,-0.106998056,0.058422275,-0.15520594,0.28678086,-0.03456235,-0.059376523,-0.24480905,-0.49011052,-0.09116945,0.5391846,0.041700702,0.11074129,0.028723657,-0.007780882,0.49609888,-0.020845817,-0.043699466,-0.18785235,-0.6433734,-0.028232204,-0.41568437,-0.270284,0.59200656,-0.1956065,0.32281584,0.175514,0.05825076,-0.20422564,0.32609308,0.16223475,0.7222162,0.09804832,-0.23687671,-0.2720502,0.0899375,0.19966528,-0.28751692,-0.16840135,-0.29011595,0.005844162,-0.7892783,0.26821136,-0.29610398,-0.21074031,0.301984,-0.0670424,0.019917719,0.49736512,-0.11377736,-0.25380978,0.08409012,0.015237863,-0.281994,-0.42648834,-0.30537716,0.1147242,-0.084779516,0.015597921,-0.044456463,-0.20141497,0.05853174,0.26068056,0.09222668,0.15389329,0.20305167,0.35295933,-0.3116711,0.1044053,0.2614708,0.61915904,-0.075927325,-0.027043384,-0.31737417,-0.18201311,-0.2727854,-0.02357812,-0.051239647,0.4534243,0.1845418,-0.23117863,0.8285692,0.0075046006,0.75508314,-0.08075702,-0.19045022,0.09589006,0.50001913,-0.014189113,-0.2002666,-0.25715658,0.75909203,0.7133845,-0.114405684,-0.08553735,-0.53642213,-0.21318942,-0.014479348,-0.30988201,-0.1817453,0.013044215,-0.76919544,-0.21397766,0.14561656,0.17300566,0.10762089,-0.18740067,-0.057519324,0.122686386,0.12728333,0.02561493,-0.4000721,0.06162371,0.1708501,0.19612479,0.022323979,0.18958451,-0.49431655,0.2704901,-0.49366072,0.09102298,-0.27944085,-0.017380165,-0.18272002,-0.27133548,0.12285599,-0.026300251,0.27345043,-0.20106035,-0.30281267,-0.19684808,0.4402264,0.315366,0.25484616,0.76595074,-0.30912465,-0.062282316,0.013234879,0.59480995,0.9385453,-0.4393257,-0.09543034,0.5042484,-0.32852352,-0.533451,0.050657757,-0.36341682,0.029272325,-0.06532153,-0.32424673,-0.24201521,0.33834013,0.0017657166,-0.14272335,0.04435271,-0.64740986,0.11562784,0.050368402,-0.17995375,-0.157181,-0.20797521,0.14512393,0.67089623,-0.39927924,-0.46588933,0.07021011,0.10876794,-0.10222844,-0.47616732,0.088450365,-0.39757535,0.24090873,0.19564992,-0.3603348,0.035845462,0.0015256542,-0.524374,0.032496914,0.13410585,-0.28126246,-0.060425382,-0.327956,0.06882454,0.84428877,-0.045538142,0.11027778,-0.23940231,-0.5164869,-0.6474997,-0.16177852,0.18099913,0.13165952,0.0067371484,-0.49494222,-0.034859076,-0.18481919,-0.17445841,-0.17422372,-0.39500573,0.61979395,-0.025803594,0.321948,-0.24815321,-1.1185145,0.31347054,0.1775061,-0.23956618,-0.5120811,0.49051157,-0.18952414,0.96491444,0.11611735,0.09881732,0.2674592,-0.6659114,0.11540366,-0.32536426,-0.27558237,-0.55728483,-0.0557287,227 -632,0.47886398,-0.19752581,-0.59770036,-0.08005032,-0.38711196,0.059901755,-0.29893747,0.0883544,0.4083397,-0.1826593,-2.8488728e-05,-0.058994785,0.058295663,0.4649418,-0.07667816,-0.80334485,-0.019886823,0.07250383,-0.7447606,0.73905087,-0.364467,0.22849448,0.0038479657,0.49923393,0.22004208,0.42403692,0.3128613,0.16269387,-0.106950395,0.06711844,-0.09260626,-0.17418225,-0.7453964,0.20985621,-0.22752164,-0.42176068,-0.17062703,-0.4812923,-0.35371134,-0.78725123,0.34854904,-0.8830366,0.3811514,-0.17822559,-0.27684137,-0.028801877,0.13644348,0.2587336,-0.2859394,-0.13828447,0.2757975,-0.4113692,0.02472149,-0.16462046,-0.3066668,-0.50522697,-0.51718533,-0.090524554,-0.45573,-0.27566513,-0.19995672,0.24481949,-0.27086586,0.031141588,-0.3836373,0.41971308,-0.417625,0.04913124,0.37188143,-0.38354412,0.20185944,-0.4991431,-0.17927231,-0.11650972,0.07330895,0.21368074,-0.16660868,0.3721257,0.091551885,0.43021268,0.23649234,-0.29326597,-0.34861806,-0.09273617,0.3307829,0.45818424,-0.00737331,-0.0903465,-0.35529807,-0.39274108,0.08054546,0.24873048,0.06926347,-0.42161736,0.19521178,-0.0048868796,-0.07863916,0.3718283,0.48977235,-0.2660379,-0.20064057,0.22740373,0.5138901,0.111686304,-0.40986758,0.13851728,0.010935539,-0.28465855,-0.29507986,0.349411,0.030419676,0.5995435,-0.078560844,0.2549452,0.7154538,-0.045277156,-0.05570484,-0.26010698,-0.09180936,-0.117893346,-0.5426208,0.05220533,0.3802386,-0.54659104,0.33202484,-0.32090524,0.5354751,0.1818095,-0.6704291,0.38630503,-0.60264146,0.15246776,-0.010211174,0.556747,0.71736825,0.3972187,0.11434233,0.9448987,-0.40072492,0.06570163,0.05140659,-0.23820694,-0.037541136,-0.22082637,0.5252831,-0.4498656,0.14158954,0.040111654,0.07346987,-0.012713075,0.20624296,-0.15343955,-0.22928485,0.024780402,0.85056233,-0.25174963,0.06725286,0.9276208,1.1438197,1.0578816,-0.08031095,1.3174752,0.39730108,-0.27785963,0.017505554,-0.19713587,-0.6932175,0.045673314,0.30555105,0.4849425,0.32045534,-0.0018793253,-0.113654904,0.47518376,-0.16549365,0.13469185,-0.034724686,0.024965078,0.097374715,0.009059759,-0.39253664,-0.35679862,0.09465651,-0.0015480518,-0.17723306,0.2961627,-0.09207019,0.67366517,-0.08019309,1.286106,0.06511723,0.13598795,0.102377616,0.63305336,0.21307868,-0.28695473,-0.027244912,0.20537768,0.18903807,0.099459775,-0.4518631,0.12384743,-0.46875408,-0.5870832,-0.10347082,-0.48571905,-0.104831494,-0.0014636058,-0.48875183,-0.28455836,0.02566592,-0.25612992,0.3114486,-2.4351556,-0.09129203,-0.24385346,0.22303008,-0.3689882,-0.100933,-0.22114347,-0.5825672,0.27846402,0.4104937,0.5371611,-0.556176,0.40964955,0.41305843,-0.50331146,0.08967542,-0.54800713,0.010955735,-0.066692226,0.4507327,-0.06606059,-0.13832003,-0.07405259,0.2541601,0.8436681,0.21077076,0.030000338,0.3352345,0.40035424,-0.24183017,0.44745725,0.032181546,0.47267196,-0.47633892,-0.14712438,0.4510818,-0.5551428,0.4249542,0.067692645,0.24942707,0.62383497,-0.5125812,-0.7882072,-0.6726582,-0.41123036,0.99471843,-0.33756235,-0.7178242,0.33092144,-0.12838612,-0.14433195,0.10447465,0.67786896,-0.044465225,0.15776429,-0.46036005,0.015488678,-0.086407185,0.26177436,0.02511426,0.109605536,-0.3169632,0.8617194,-0.11923694,0.48076814,0.2608885,0.24420485,-0.10631265,-0.3268759,0.12652113,0.6204064,0.41664836,0.15392978,-0.08241368,-0.121198945,-0.24679483,-0.44969383,0.10138574,0.74142194,0.62018734,-0.12394642,0.1347399,0.376929,-0.26718032,-0.053818308,-0.06443748,-0.4221512,-0.15690756,0.15214403,0.38566494,0.84207475,-0.05929319,0.24266097,-0.17115323,0.34040943,-0.16271535,-0.5577646,0.469334,0.6367211,-0.12620698,-0.11740981,0.5680514,0.42412314,-0.50927544,0.47213942,-0.5262124,-0.41107467,0.644692,-0.036712885,-0.57526743,-0.08934139,-0.3030569,-0.056158945,-0.72745633,0.05418724,-0.28131846,-0.54556745,-0.38331082,-0.1549748,-3.953833,0.221496,-0.16018263,-0.16377082,-0.34596178,-0.06797177,0.27307895,-0.59424883,-0.5419603,0.099471614,-0.008191425,0.69683796,-0.04410765,0.21287963,-0.41607797,-0.059417907,-0.5216165,0.43048877,0.061595403,0.3533377,-0.28252247,-0.3243003,-0.12402133,-0.20683649,-0.6862136,-0.05097021,-0.7012343,-0.35004717,-0.28274506,-0.39955872,-0.47060782,0.60572064,-0.34351444,0.059813935,-0.31494066,-0.11282912,-0.2642566,0.4360256,0.4267775,0.2958656,0.195549,0.026316,-0.30278835,-0.3312244,0.015742756,0.12386895,0.30226517,0.47724703,-0.19495371,0.19492254,0.35118052,0.69266516,-0.05217347,0.81509584,0.061309136,0.061495826,0.61564755,-0.22635563,-0.3660348,-0.78588176,-0.19750205,-0.16780451,-0.33137527,-0.5812682,-0.12808274,-0.4023153,-0.7593956,0.3960373,0.33538005,0.36997747,-0.036098134,0.04689568,0.32132527,-0.26617417,0.09190002,-0.0989103,-0.09723937,-0.6886638,-0.4484838,-0.7016522,-0.7856216,0.17056957,0.82418376,0.056229673,-0.30287132,0.13032189,-0.59732324,0.14736381,0.37317145,0.124780305,0.077855915,0.433668,-0.01245379,-0.73478264,0.68956214,-0.08378412,-0.08827799,-0.5258386,0.11282542,0.6328615,-0.540331,0.8186339,0.18480158,0.34282777,-0.21632811,-0.45527872,-0.2839704,-0.167234,-0.16595769,0.4930186,0.3154434,-0.78858626,0.29175436,-0.00660074,-0.1128114,-0.65229416,0.3617391,-0.04114971,-0.10232261,-0.014932708,0.48973578,-0.04506245,-0.14333403,-0.012523023,0.11456004,-0.6527176,0.15111922,0.37854058,0.08677408,0.5087572,0.038090475,-0.35897747,-0.5845813,0.11820744,-0.45735458,-0.08492343,0.2820649,-0.026739923,-0.073087424,0.18236841,0.09140952,0.3162133,-0.08430934,0.29308653,-0.2092686,-0.39508897,0.49146557,0.4603644,0.30261192,-0.668733,0.682583,0.09417284,-0.25079566,0.045671824,0.1631121,0.4434075,0.39506647,0.48150724,-0.09130604,-0.19148037,-0.1396612,0.5514442,0.21516408,0.52839893,0.1145624,-0.24105461,0.5353019,0.12957016,0.15128665,-0.13576618,-0.5452459,0.08056274,-0.1917232,0.19499095,0.33505931,0.024200954,0.38871014,-0.045763496,-0.084269196,0.21506213,-0.045437768,-0.23664075,-0.9891561,0.1954808,0.25657013,1.0541995,0.5751865,-0.14185348,-0.19077028,0.6455196,-0.17931761,0.11927566,0.34960228,0.01062152,-0.4451291,0.82827,-0.53557086,0.42032677,-0.12753932,-0.14928065,0.31227362,0.37840447,0.5664047,0.6818311,-0.34436625,-0.031772457,-0.0469945,-0.26172787,0.11640398,-0.21552141,0.26074868,-0.47359398,-0.51176846,0.6059549,0.38016045,0.3886296,-0.46427897,-0.06737652,-0.1290308,-0.08254301,0.39523715,-0.08923002,-0.08337128,-0.067826204,-0.5794367,-0.3736601,0.56317246,-0.49014428,0.0679984,0.15178153,-0.38330808,0.080583066,0.07433749,-0.03839933,0.008472633,-0.801673,0.23597635,-0.23667833,-0.5590258,0.4078118,-0.3134876,0.2634251,0.21734264,-0.061343588,-0.36696413,0.17248455,0.021571279,0.8796,0.10608979,-0.05408395,-0.3475917,0.010322868,0.37383237,-0.3462622,0.12192563,-0.26751432,0.0011079862,-0.50753057,0.62195265,-0.16985711,-0.2411634,0.04889472,-0.14776513,0.07639157,0.6155093,-0.1820054,-0.22058049,0.0025339127,0.2538708,-0.49196783,-0.14364323,-0.29913628,0.28704798,-0.034908894,0.10331377,0.062174123,-0.0803736,0.097288445,0.27821398,0.062156614,0.20591627,0.26668102,-0.17290193,-0.4801052,0.18634082,0.09031057,0.31912452,0.28249872,-0.010932698,-0.14100444,-0.40585047,-0.35155517,0.44633704,-0.024335463,0.31749243,0.10243408,-0.28812826,0.7870028,0.06931657,1.2172611,0.12736546,-0.3757916,0.20482804,0.387909,-0.023653595,0.0042760004,-0.38387984,0.8190582,0.50769985,-0.29063195,-0.054117646,-0.3435807,-0.070966214,0.2375084,-0.17122306,-0.13454643,-0.14481094,-0.7593342,-0.035531554,-0.004342086,0.33874562,0.15532112,-0.16050003,-0.143996,0.09735355,0.15622279,0.38567117,-0.4235873,-0.22899406,0.48636845,0.02091986,-0.055386372,0.23273812,-0.17882036,0.4039804,-0.7409059,0.31399724,-0.6363518,0.0847691,-0.08748135,-0.37433514,0.12657279,-0.03513398,0.5602849,-0.30894846,-0.30567294,-0.34643155,0.674469,0.40553644,0.37598947,0.8394629,-0.06917185,-0.111273736,0.10249719,0.55986917,1.1823289,-0.19688429,0.06406306,0.25380284,-0.31670564,-0.7451801,0.2579904,-0.24580553,0.14705849,-0.17280857,-0.36109352,-0.4489201,0.039743207,0.18653867,-0.297698,0.057306305,-0.65979004,-0.17838383,0.22993279,-0.34488663,-0.2756262,-0.4678333,0.29290205,0.6097057,-0.21624914,-0.26032576,0.1991243,0.14483912,-0.25921634,-0.5252773,0.069278,-0.27290386,0.38421646,-0.085533306,-0.55210876,0.050873574,0.4223842,-0.5771518,0.09029606,0.1446544,-0.40725982,0.015656697,-0.22477102,-0.20187269,1.1998652,0.12294258,0.116056405,-0.66661704,-0.6019092,-0.8653611,-0.7249874,0.12580062,0.18961906,0.013842881,-0.32840124,-0.18206605,-0.32882383,0.19166748,0.07825298,-0.57432973,0.38976303,0.15587664,0.5563862,-0.1132605,-0.85056084,0.2377456,0.24066666,-0.12671718,-0.37304705,0.39299348,-0.24498051,0.6510277,0.078532256,0.00892677,0.123113245,-0.5781753,0.31700188,-0.3069775,-0.24785246,-0.5389418,0.21916543,228 -633,0.45631498,-0.43142018,-0.45334986,-0.000255924,-0.3718727,-0.16152655,-0.16190965,0.46206158,0.2304882,-0.10957685,-0.2607488,0.13966396,-0.034697726,0.30763704,-0.21957901,-0.59618163,-0.17381158,0.022587858,-0.5975861,0.7709812,-0.5286955,0.20345658,0.071844764,0.35727164,0.38472888,0.33990434,0.107432045,-0.028544022,-0.14871019,-0.17184326,-0.1485153,0.11593513,-0.58400923,0.29717973,-0.36622936,-0.28830707,-0.024725242,-0.545356,-0.28199095,-0.85105604,0.12430465,-0.83701485,0.33735484,7.5386124e-05,-0.2770394,-0.18152659,0.07176017,0.24799758,-0.4414667,-0.15615112,0.20984581,0.037381608,-0.045545194,-0.22595072,8.995258e-05,-0.38793918,-0.5120693,-0.118006185,-0.5601796,-0.1276653,-0.06135616,0.23501706,-0.293856,-0.025555234,-0.36860693,0.5707109,-0.32649451,-0.03439448,0.16445395,-0.11843775,-0.0058644367,-0.671997,-0.10249631,-0.16003093,0.28523907,0.13611665,-0.25048757,0.39569044,0.21434046,0.16400626,0.23983772,-0.17118219,-0.2750867,-0.08606425,0.2401743,0.31882238,-0.15873893,-0.41341898,-0.3070262,-0.027575364,0.44135427,0.3114854,0.1495128,-0.2203649,0.04324972,-0.15510112,-0.23256454,0.66709816,0.54981,-0.14597464,-0.18083285,0.39068285,0.52116245,0.46028548,-0.3555409,-0.23881385,0.0029895352,-0.54185015,-0.05189628,0.34227753,-0.056928314,0.6405358,-0.10557008,0.09039719,0.76855576,-0.11972873,0.043145206,0.16127355,0.21230195,-0.24916913,-0.3943664,-0.30124182,0.16002597,-0.65050507,0.13876615,-0.24587758,0.7850504,0.14152458,-0.7212534,0.3348091,-0.5601345,0.18072301,-0.0837754,0.5096321,0.5885679,0.61470723,0.2574475,0.65577734,-0.1212337,0.14370371,-0.102212854,-0.33369386,0.09528232,-0.15136386,-0.099895805,-0.35745656,-0.032954983,-0.31646156,0.13468295,-0.11497963,0.52323085,-0.4779075,-0.2568194,0.17413053,0.60136086,-0.22727098,-0.1932784,0.70924973,1.1337142,1.1279913,0.025089923,1.0904868,0.23405951,-0.1563388,-0.013577645,-0.13892107,-0.7273162,0.1657113,0.19728312,-0.501947,0.26088765,-0.06244072,-0.18324521,0.39004156,-0.11276225,0.0065510273,-0.14416756,0.18739833,0.08001624,0.0077288975,-0.4534092,-0.4281762,-0.13299681,-0.0020838953,-0.0016272939,0.27148765,-0.3472624,0.23652223,0.0725576,1.1765918,-0.022515627,0.031169113,0.100274034,0.5995754,0.28280348,-0.19165784,0.13396761,0.407598,0.34553733,-0.045436364,-0.6458405,0.24233572,-0.43703476,-0.49350268,0.019211601,-0.41017658,-0.16691016,0.1245338,-0.57895696,-0.092182264,0.017188344,-0.10660566,0.5114515,-2.7147665,-0.18199012,-0.10560823,0.17644289,-0.3283587,-0.25177363,-0.04631863,-0.53832537,0.12455625,0.19476,0.64504254,-0.6604305,0.47366634,0.57468784,-0.58115107,-0.09639073,-0.76953626,-0.07936393,-0.03029774,0.47688878,-0.052630644,0.16380869,0.04629038,0.018788131,0.7341869,0.20227417,0.26050282,0.46399757,0.3382664,-0.001727769,0.5837405,-0.016028615,0.56714606,-0.4873179,-0.11456709,0.36259466,-0.4847331,0.5132231,0.035654232,0.09721574,0.76244015,-0.33953717,-0.86254406,-0.37817138,-0.26218107,1.214419,-0.3979203,-0.31183746,0.20553705,-0.22426353,-0.0544412,0.010905064,0.480233,-0.10260184,0.035455752,-0.54657656,-0.020991338,-0.10526277,0.18654929,-0.03128787,-0.05932057,-0.13197139,0.8142074,0.0678387,0.6743567,0.18877071,0.2674216,-0.2069597,-0.442975,0.0062526236,0.69430864,0.43116724,0.020877592,-0.1730621,-0.33237684,-0.14026935,-0.07489216,0.09614428,0.6192834,0.6090359,-0.16751117,0.17141311,0.39670107,0.053971484,-0.0071462486,-0.06320139,-0.34196752,-0.22396871,0.22723651,0.4164875,0.99971443,-0.13843803,0.41346726,-0.13503386,0.20759764,-0.1041747,-0.52708983,0.6358678,0.66170204,-0.21125391,-0.010875628,0.42375186,0.6377725,-0.39866126,0.4896456,-0.49365756,-0.2143783,0.7125809,-0.11648084,-0.39565834,0.1653002,-0.23347029,-0.060113303,-0.7265609,0.4557036,-0.49439174,-0.44326442,-0.52395636,-0.06245047,-2.9299102,0.23640245,-0.261187,-0.20261548,-0.3707913,-0.10908369,0.26477242,-0.8259166,-0.58169115,0.1188929,0.26093376,0.45947587,-0.10271985,0.032528345,-0.26617426,-0.32861125,-0.062663406,0.26537043,0.11565702,0.3622478,-0.31956115,-0.37463462,-0.060721293,0.00063662115,-0.3246101,0.19464119,-0.596115,-0.37259835,-0.027715357,-0.59323764,-0.2588351,0.5841642,-0.36455756,-0.038015056,-0.05491378,0.15229955,-0.24128345,0.15209465,0.013974831,0.15925978,0.06338392,-0.16616613,0.022070222,-0.2757281,0.3797372,0.032679096,0.46894738,0.25548804,-0.12127583,0.112514846,0.49822026,0.6232894,-0.23678783,1.1012782,0.2367958,-0.17378369,0.32000622,-0.061693147,-0.40410295,-0.6809838,-0.2698724,-0.054669023,-0.24079657,-0.44813177,0.16629292,-0.19095455,-0.9170953,0.55004895,-0.075162634,0.47007972,-0.08842595,0.057788096,0.5183604,-0.22179747,0.060141202,-0.03531186,-0.05400155,-0.5451057,-0.37991613,-0.7969822,-0.37318328,0.033186417,0.8471562,-0.3354659,-0.07157469,-0.0814217,-0.49233177,0.014094614,0.09426911,-0.04528836,0.24229883,0.35252267,0.06475,-0.5236603,0.44366473,-0.045844767,-0.025889067,-0.028239928,0.24612783,0.84086156,-0.7148219,0.62562644,0.38408,-0.026289139,-0.26514742,-0.6327063,-0.24480994,-0.014292797,0.017876199,0.4975662,0.3156009,-0.84443885,0.47045612,0.245797,-0.54486424,-0.7117253,0.45571467,-0.032202758,-0.102699526,-0.31359842,0.38699788,0.12940437,-0.04271915,-0.07199608,0.3248194,-0.35929102,0.14233822,0.14053813,-0.21975985,0.07342301,0.10131732,-0.19899262,-0.61831474,0.24024671,-0.54584694,-0.2931333,0.48790395,-0.12862922,-0.08447135,0.019673029,0.23036979,0.38789293,-0.31401473,0.15507682,0.049068727,-0.2689628,0.4841185,0.52541584,0.67280287,-0.38594306,0.50371367,0.28583634,-0.08948974,0.2932852,0.07318508,0.21947877,0.007695299,0.47622272,-0.10156758,-0.038237218,0.30115932,0.7161658,0.2794713,0.5503107,0.009033099,-0.14522544,0.3892206,0.09210614,0.3059188,-0.18988273,-0.5157694,0.054147363,-0.06466844,0.17772055,0.5061914,0.08569845,0.2301511,0.038164344,-0.018582977,-0.06503617,0.27870238,-0.025013823,-1.0759734,0.31242687,0.29651207,0.88463783,0.47524944,0.11206427,-0.22141393,0.72149825,-0.30466172,0.09495079,0.498878,0.18853357,-0.52881217,0.6270325,-0.47304037,0.48538405,-0.18010877,0.025651451,0.23660165,0.11426936,0.43550655,0.64612716,-0.18179783,-0.07191337,-0.05431616,-0.3658164,-0.08422108,-0.41065982,0.19171621,-0.4059887,-0.47624284,0.8679973,0.54553103,0.34531072,-0.13600203,-0.0660764,-0.00068319764,-0.2090168,0.32855526,-0.07681053,-0.01904992,0.06710733,-0.60093194,-0.14498448,0.6311019,-0.38243893,0.18935595,-0.21465851,-0.24824955,0.14384213,-0.12358184,-0.013164883,-0.009703407,-0.8975064,0.10659076,-0.15499227,-0.48903587,0.31297487,-0.37344804,0.14009494,0.21543702,-0.1262462,-0.23558146,0.26501685,0.114189826,0.7443939,-0.27197745,-0.12168658,-0.30768412,0.15123042,0.1631654,-0.12342106,0.1237636,-0.32750654,-0.053010233,-0.60228455,0.47569194,-0.15036342,-0.35807827,-0.1393769,-0.26215458,-0.14821619,0.77030444,-0.05572858,-0.21543446,-0.3971148,-0.08092542,-0.44435757,-0.07657829,-0.15366536,0.13897473,0.41165975,-0.04830951,-0.0607607,-0.30545744,0.12609217,0.36092255,0.04896305,0.5022474,0.2937636,0.07409695,-0.27503794,0.0065509905,0.21905906,0.33843488,0.2978978,0.07797592,-0.47624972,-0.18987788,-0.44172207,0.1200334,-0.12660712,0.26279375,0.0212314,-0.31088817,0.8159843,-0.08320128,1.2626078,-0.0055133286,-0.51885134,0.005206952,0.67367786,-0.10507402,0.05135198,-0.3975724,1.0011357,0.46858236,-0.17923895,0.013409243,-0.5956684,-0.1690292,0.24567583,-0.3396303,-0.049408086,0.04800117,-0.31789726,-0.041111372,0.12093287,0.2209287,0.09908947,-0.065404415,-0.21297786,0.29869795,0.17206591,0.39660108,-0.69521344,-0.30391997,0.081432804,0.14603545,-0.07905297,0.19401306,-0.43080002,0.36806455,-0.74991167,0.34776598,-0.44426057,0.2564646,-0.42693684,-0.41826746,0.13173008,-0.040148318,0.4611234,-0.43189436,-0.4653996,-0.13691033,0.49617723,-0.022035269,0.27509525,0.64448166,-0.34440154,-0.035650752,0.09511674,0.67486453,0.9783341,-0.48414734,-0.29142812,0.26127785,-0.44513658,-0.8068607,0.23848502,-0.39087075,0.057743482,-0.1461875,-0.3934471,-0.5477938,0.29557914,0.16056651,0.18521911,0.08861171,-0.8327424,0.11584469,0.22885285,-0.22759357,-0.2617215,-0.15380792,0.2909865,0.7518167,-0.3303148,-0.5479049,-0.08416868,0.08763492,-0.12021875,-0.38223508,-0.03540159,-0.34904596,0.20168616,0.00744385,-0.2877309,-0.14067763,0.18781526,-0.46264464,0.05483705,-0.014101198,-0.26509225,0.101098776,-0.12047453,-0.011547109,0.9858796,-0.18516773,0.022257127,-0.4677784,-0.566325,-0.68339646,-0.6298497,0.102416515,0.15213156,0.016914772,-0.50681406,0.09478522,-0.026685933,-0.24390341,-0.079353824,-0.57877064,0.55415064,0.15190776,0.30097598,-0.2679219,-0.90066093,0.24892852,0.21115668,0.07654514,-0.5862899,0.49633276,-0.16755168,0.83589566,0.16504961,0.04082729,-0.13218926,-0.4346423,-0.032435205,-0.39377168,-0.14459927,-0.6390579,0.2167643,239 -634,0.1816979,0.043992676,-0.6802766,0.1427717,-0.19783328,0.2619542,-0.62079775,0.10725181,0.30702835,-0.43478853,0.12727359,0.1945831,-0.43651316,0.13296425,-0.024529563,-0.51954496,-0.13993487,0.22243544,-0.41557628,0.52944845,-0.25552526,0.2663949,0.011779061,0.38318473,-0.025756534,0.35309485,0.0016646797,0.060326245,-0.2953105,-0.5348994,0.10645191,0.015037555,-0.30638504,0.4104468,-0.23065604,-0.16248645,-0.07447731,-0.27572182,-0.2950186,-0.54353213,0.21503454,-0.598854,0.6910314,0.014116347,-0.12138954,-0.05461561,0.35004103,0.12307791,0.33428282,-0.16109252,0.30618402,-0.48521268,-0.4819892,-0.67502296,-0.41522247,-0.46273744,-0.4072494,0.050092634,-0.4492676,0.07466171,-0.18230845,0.3959467,-0.17081334,-0.120191894,-0.2632759,0.3631689,-0.23130934,0.07950393,-0.17839769,-0.39745766,0.1459264,-0.8716718,-0.10578633,0.06760487,0.22717573,0.1866906,-0.10818766,0.26610836,-0.016316222,0.5212797,-0.078790516,-0.17005223,-0.619656,-0.025385123,0.35122362,0.5672871,-0.45299017,-0.034173746,-0.20493118,0.06263927,0.78418833,0.14514528,0.010194994,-0.3185625,0.121347204,-0.29617506,-0.26466718,0.55112845,0.5599051,-0.026416104,0.19999768,0.3192282,0.5269703,0.37540004,-0.3186336,0.010021145,-0.37746572,-0.21126968,-0.041777078,0.14404415,0.08850251,0.32898572,-0.043081723,0.26113594,0.3103968,0.10276698,-0.07078083,0.25815704,0.10046285,0.1972081,-0.077695414,-0.0347814,0.24268116,-0.49464476,-0.027263531,-0.47158563,0.34241182,-0.3799954,-1.0094416,0.38171607,-0.48834324,0.099360004,0.0055124606,0.6052054,0.73183316,0.7502116,-0.018512657,0.91625947,-0.32950422,0.0718857,-0.09082357,-0.09874804,0.2063342,0.08037666,0.08011606,-0.5541057,-0.08383457,0.09946013,-0.19140321,-0.023750242,0.73108613,-0.42272785,-0.17937356,0.032607313,0.88414425,-0.12321688,0.029537411,0.67250663,1.1859463,0.84491056,-0.041372214,1.0376502,-0.020772008,-0.16568692,-0.48935655,-0.29771703,-0.6498703,0.18547128,0.30508068,0.12367834,0.4781745,0.09736867,-0.118266545,0.40552807,-0.019150456,-0.3284613,-0.17059399,0.18635099,-0.023867836,-0.0834949,-0.26777938,-0.12638074,0.22785021,-0.007434831,0.22108687,0.37179238,-0.5236897,0.6076079,0.09223107,1.0615739,-0.31036884,0.08269136,0.15962678,0.013123169,0.17404458,-0.084140815,-0.06547362,0.185011,0.15965587,-0.06467871,-0.34749016,0.094611414,-0.18758646,-0.6136993,-0.12809229,0.02329538,-0.3093654,0.0342383,0.08557187,-0.37173364,-0.0053776205,-0.5905225,0.17400275,-2.4389167,-0.161507,-0.12972023,0.23776516,-0.0065822373,-0.50747716,-0.14281794,-0.25222036,0.6112496,0.2363918,0.6249207,-0.28809363,0.118083596,0.49721864,-0.6424938,-0.33825448,-0.50191087,0.007529864,-0.007956266,0.6044394,0.06247942,-0.37518045,0.19428346,-0.061938643,0.45909876,-0.1605591,0.11362709,0.5963293,0.47726578,-0.26246712,0.0986071,-0.09442901,0.6285625,-0.32329032,-0.3555733,0.40261376,-0.40059218,0.416931,-0.36080864,0.19703548,0.28840536,-0.17503023,-0.56358963,-0.27243173,0.104280934,1.4386128,-0.022649966,-0.9073425,-0.061087534,-0.060291674,-0.4855385,0.08598522,0.6197819,-0.24045609,-0.011235636,-0.57974976,-0.09043276,-0.32983753,0.40495926,-0.13043813,0.11985286,-0.47404525,0.69008696,-0.04053235,0.3501975,0.6660419,0.3428982,-0.45581084,-0.07465456,0.107401244,0.8566566,0.3742188,0.0764181,-0.24269484,-0.09180231,-0.06759313,-0.3205851,-0.004845665,0.6072936,0.56684345,0.03564676,-0.077631585,0.44781864,-0.31099588,-0.055155434,-0.21087533,-0.644498,-0.38910297,0.0651965,0.66903305,0.49253,0.30155504,0.49861732,0.24306099,0.24163018,-0.23505352,-0.46270818,0.5245472,0.49250004,-0.37616107,-0.25867528,0.580401,0.31452402,-0.21800925,0.6317149,-0.6489086,-0.4719115,0.19676232,0.09193866,-0.56933314,0.27020624,-0.40673006,0.12440848,-0.70874524,0.28087905,-0.47262794,-0.7434318,-0.7955837,-0.104459636,-1.508089,0.2720514,-0.32474086,-0.18110675,-0.330293,-0.09149216,0.11998524,-0.30511236,-0.65317917,0.06602729,0.33399597,0.46850485,-0.17555486,-0.119213805,-0.12116305,-0.4817623,0.01992123,0.34393618,0.10886671,0.118798524,-0.32215464,-0.2076452,-0.003606041,-0.19157553,-0.055725235,-0.21922365,-0.41291568,-0.13327095,-0.031537157,-0.2807706,-0.0012059028,0.6765901,-0.6969678,-0.09705767,-0.43818885,0.09827626,0.46617824,0.2580965,-0.101489015,0.12686442,0.29532012,-0.2269668,-0.08177989,-0.19011036,0.2396382,0.11811895,0.32560337,0.67059135,-0.027537325,0.20035312,0.5559945,0.76054543,0.027116863,0.8431927,0.22538403,-0.1757124,0.21656825,-0.35471064,-0.124484375,-0.4666157,-0.07207422,0.2859243,-0.36575636,-0.49034265,-0.10053796,-0.29344043,-0.8457695,0.55572295,0.2823512,-0.018994598,-0.09269944,0.60578233,0.4381947,-0.084703095,-0.13868015,-0.19115354,-0.2469944,-0.31218657,-0.37754875,-0.7727317,-0.56745267,-0.07648992,0.85865283,-0.18786761,0.21220897,0.47549182,-0.38637036,0.11310014,0.19902512,0.06554871,-0.044625264,0.016928783,0.27195308,-0.52932125,0.054361727,-0.12540719,0.12941343,-0.5099968,0.32691744,0.76296705,-0.58620316,0.1335206,0.48613596,-0.03738713,-0.3102067,-0.8458098,0.0547142,0.3587095,-0.12909612,0.35229683,0.32459497,-0.4915319,0.5356444,0.30378354,-0.04400228,-0.68730265,0.1651308,0.12817791,-0.009086797,-0.11449622,0.43132275,-0.17731531,0.060086973,-0.18815087,0.18908122,-0.16855206,0.47579193,-0.10569365,-0.108905666,0.08187023,-0.17841636,-0.35359663,-0.7843673,0.29519695,-0.5653843,-0.42788416,0.52196383,0.0277604,0.17333683,0.06512064,0.31284493,0.4436556,-0.38334274,0.08222389,-0.344446,-0.29492265,0.4140112,0.47237828,0.48341343,-0.48893136,0.38429883,-0.064495556,-0.31700248,-0.019930478,-0.12016931,0.56889504,0.09383941,0.2561457,0.0006829821,-0.06388621,0.097736426,0.7025173,0.20496601,0.31717792,-0.17063206,-0.35750896,0.13675228,-0.06876292,0.22728617,-0.2989923,-0.5218615,0.0046452237,-0.0173638,0.19067672,0.46823725,0.17213114,0.5708769,-0.17703643,-0.17542171,0.15210317,0.10206582,0.17102386,-1.0289812,0.681006,0.18727128,0.68056273,0.44794184,0.16051126,0.06320204,0.82395214,-0.25343508,-0.10300084,0.31290346,0.117997974,-0.35458437,0.30548796,-0.7871982,0.17881988,0.01722066,0.17914031,0.270975,-0.21728924,0.40637553,0.8932582,-0.19306025,0.24142344,-0.18516758,-0.037287213,-0.3581505,-0.11763417,0.25739008,-0.19996892,-0.49894163,0.8618629,0.07566533,0.55982727,-0.18345734,-0.025972191,0.32872376,-0.09406987,0.52241445,-0.020855043,0.19996071,-0.10884041,-0.37990206,-0.046882637,0.5610108,-0.040516596,0.065099545,0.03520828,-0.16618322,0.11827975,0.0033845145,-0.20674053,-0.025242776,-0.27849168,0.16082692,-0.38453004,-0.4785779,0.34498402,-0.10204803,0.075700775,0.11205943,0.16876361,-0.12346183,0.2652392,0.24230362,0.73595566,0.12566063,-0.042358153,-0.054078873,-0.051051214,0.06313476,-0.29692432,-0.09714188,-0.02812856,0.14871962,-0.84347725,0.3407663,-0.49301958,-0.48652777,0.23875839,-0.23227765,-0.10354634,0.35455862,-0.22704275,-0.25823647,0.38408056,-0.10669991,-0.21358839,-0.36973748,-0.38399827,0.14203136,-0.26623726,-0.13433191,-0.3934593,-0.07525852,-0.4600261,0.06398242,-0.09225054,0.12844603,0.53455603,0.3350368,-0.56915087,0.07889565,0.19046554,0.47606975,0.07424741,0.14602453,-0.2229449,-0.39461404,-0.47129604,0.42837474,-0.038642254,0.23683009,0.25031155,-0.48605415,0.6759657,-0.07742636,0.9964737,-0.06730219,-0.21981509,0.08614091,0.5338192,-0.04724797,0.03834151,-0.47534305,1.0675328,0.58392334,-0.10683628,0.08581038,-0.6672264,-0.21154356,0.21676104,-0.313563,0.043139722,-0.07022225,-0.7458163,-0.2567881,0.30798298,0.23798934,-0.16948317,-0.02299246,0.12110546,0.1763486,0.16579556,-0.005014524,-0.43628204,-0.06340551,0.38684934,0.183916,-0.18993284,0.18800613,-0.45017081,0.17930724,-0.6588193,0.18437631,-0.3922585,0.070922986,0.09282185,-0.26053667,0.15288879,-0.04571456,0.17748629,-0.3447534,-0.41400117,0.011316506,0.19702354,0.2204797,0.29717195,0.48037452,-0.33497217,0.1439471,-0.110025845,0.45326287,1.1360815,-0.25797638,0.044171877,0.12199218,-0.43509504,-0.5734552,0.035927694,-0.45138258,-0.17413174,-0.057241075,-0.3779521,-0.23103008,0.26798075,-0.02048409,-0.057782333,-0.2662815,-0.50729257,-0.06821498,0.011991251,-0.23100108,-0.118836865,-0.2121575,0.016683001,0.65573394,-0.1260886,-0.499793,-0.111533836,0.3533026,-0.32525942,-0.45627654,0.31561968,-0.39151317,0.26800895,0.1539161,-0.29367283,0.01492186,0.026311487,-0.5054761,0.061622363,0.27779552,-0.29231074,-0.12768775,-0.16826329,0.33618826,0.3971367,-0.18780282,0.091264,-0.11355138,-0.5811765,-0.6654797,-0.3388333,-0.41942102,0.32669666,-0.055636767,-0.80679554,-0.086314805,-0.4753229,-0.08755645,0.119886965,-0.57931596,0.33319968,0.134897,0.4987771,-0.7564305,-0.9159628,0.39220428,0.15945576,-0.12082483,-0.40753496,0.30742794,-0.035933055,0.86177444,0.21557675,-0.036092784,0.12248121,-0.9907305,0.39087275,-0.30664596,-0.24548666,-0.7283752,0.039829474,247 -635,0.532754,-0.26672328,-0.6846828,-0.22367324,-0.39800963,0.03981383,-0.23092812,0.4232003,0.45230097,-0.41417584,-0.08572777,-0.0738126,0.09308581,0.61188245,-0.016506275,-0.72511685,-0.07314648,0.29891607,-0.66502774,0.5344049,-0.42148435,0.33571264,0.08898394,0.23542306,0.124629684,0.14128385,0.21903232,-0.015574098,0.063204646,-0.07868101,-0.09095994,0.1108483,-0.6449217,0.22205932,0.04973562,-0.28698504,-0.041883927,-0.48292568,-0.38236177,-0.7494147,0.36237967,-0.7769501,0.67822975,0.027015567,-0.28211135,0.176887,0.03774266,0.28443915,-0.26606274,-0.057100557,0.22281407,-0.11336695,-0.2450214,0.0057347557,-0.14147258,-0.45653766,-0.5470154,0.050823454,-0.5603788,-0.2742432,-0.37138656,0.1849125,-0.31883538,-0.007536448,-0.21855576,0.5635609,-0.3022139,-0.09116724,0.28467077,-0.33894908,0.2253585,-0.5234375,0.05716711,-0.009573983,0.06228333,-0.18381938,-0.22819565,0.34990028,0.2655177,0.5944177,0.13736686,-0.31830388,-0.31963888,0.013095831,0.035059936,0.6107514,-0.07510604,-0.63061047,-0.25175482,0.1269418,0.15401626,0.010093231,0.053119503,-0.40294182,-0.12873422,-0.11798357,-0.10144416,0.53833795,0.48640823,-0.29990345,-0.26792282,0.4951313,0.49626845,0.1464862,0.11823026,0.10433598,-0.041387513,-0.68709916,-0.30088645,-0.074695215,-0.29658964,0.40760252,-0.24346262,0.1835467,0.43298832,-0.05242805,-0.09621,0.19481689,-0.08521688,0.013731895,-0.3475507,-0.13498434,0.31468633,-0.4763311,0.08346711,-0.21616203,0.82798165,0.13467123,-0.72273314,0.4265302,-0.49053007,0.27197585,-0.15168819,0.48136103,0.8363151,0.55221564,0.21984515,0.90645117,-0.46610844,0.28108808,-0.12138304,-0.5083857,0.11568361,-0.14816317,-0.0061513325,-0.6249357,-0.018921642,-0.14124669,-0.2831858,0.07371701,0.57567775,-0.6729683,-0.13017784,0.12714884,0.7255103,-0.29245922,-0.15776528,0.7273115,0.97944844,0.9890067,-0.022047212,1.3679745,0.3059968,-0.12681097,0.13013572,-0.33326986,-0.8546254,0.25975296,0.41455695,0.10770014,0.30693224,0.07735609,-0.06274618,0.46738067,-0.31619805,-0.21101013,-0.16190833,0.43399385,-0.1737743,-0.20282708,-0.60662645,-0.16549475,0.02663113,0.23606125,0.062345333,0.2902257,-0.27390397,0.2968361,-0.045692977,1.6797303,-0.18584153,0.08723908,0.0011162529,0.44079527,0.39838612,-0.2911305,-0.251023,0.25278243,0.37505385,0.049368557,-0.66807616,0.009290131,-0.29268652,-0.39875486,-0.1992573,-0.30046412,0.03786234,-0.11414851,-0.32101265,-0.14136179,-0.0072934353,-0.4108919,0.45259264,-2.3782473,-0.19830611,-0.11183468,0.33297107,-0.30361134,-0.40903255,-0.037893202,-0.41667217,0.35352176,0.3498734,0.6098433,-0.59777427,0.32463872,0.330578,-0.6589132,-0.0005773008,-0.51759326,-0.07081266,0.0028711604,0.41304207,0.09866403,-0.2088829,-0.18060233,0.24982664,0.5125109,0.006332346,0.026174726,0.37477022,0.45766675,0.0076084277,0.50357777,-0.23401953,0.58070093,-0.30821338,-0.24977519,0.38228762,-0.21646675,0.1700438,-0.2916434,0.117359795,0.26760638,-0.62186944,-1.195706,-0.73404694,-0.15763193,1.2070812,-0.23619741,-0.51705384,0.42120478,-0.27073815,-0.31175262,0.21109849,0.3865867,-0.07995439,-0.040046293,-0.7952367,0.17906171,0.008899176,0.27404934,0.13803989,-0.07765227,-0.49482918,0.78496623,-0.040964983,0.45460635,0.24456947,0.22927381,-0.23499078,-0.43472782,0.08188396,0.9970652,0.35767224,0.16839205,-0.15330979,-0.10423959,-0.3595844,-0.1772404,0.068666175,0.5391414,0.8114375,0.017358404,-0.03702046,0.1858862,0.04658737,0.10676958,-0.05329394,-0.33452737,-0.11753602,-0.01898982,0.6187228,0.6504195,-0.2310567,0.4933581,-0.16341859,0.14780726,-0.03362147,-0.6006963,0.6587766,1.0280795,-0.18733302,-0.28187606,0.77350813,0.28180486,-0.13170607,0.49141878,-0.6030518,-0.4086639,0.33956006,-0.15544578,-0.42447916,0.14820138,-0.23338208,0.06288497,-1.1286067,0.26627177,-0.24128175,-0.6639118,-0.19496009,-0.10937349,-4.024043,0.26722342,-0.11443681,-0.014154414,-0.0761545,0.034479145,0.22627273,-0.5068525,-0.70724803,0.19818434,0.045911577,0.75461704,-0.082234055,0.22109835,-0.14148585,-0.32558018,-0.27184117,0.19496253,-0.008209194,0.32678658,0.17889848,-0.44828445,-0.045567457,0.032510124,-0.5044323,0.13866478,-0.818653,-0.46453226,-0.2969651,-0.7612361,-0.1191734,0.6882749,-0.04052441,0.024696074,-0.23883072,0.18856424,-0.007418284,0.16438666,-0.17594427,0.2540468,0.18239893,-0.090595946,-0.030087654,-0.14389636,0.27385283,0.029126085,0.3134701,0.24718955,-0.31059155,0.16035546,0.69904125,0.75100064,-0.30608493,0.9194958,0.6478242,-0.11078553,0.31926277,-0.104619846,-0.32733887,-0.51714206,-0.39426932,-0.10248081,-0.47622278,-0.31127706,0.01794828,-0.26889852,-0.7344953,0.6370199,0.07085712,0.23984483,0.019899795,0.11663855,0.455322,-0.29814565,-0.067006625,-0.13338794,-0.30939916,-0.5835603,-0.27467304,-0.48714402,-0.48755074,0.12881406,1.0896554,-0.22893606,0.12316033,0.008296655,-0.06948182,-0.033320133,-0.027802072,0.066362746,0.35927004,0.30033106,-0.18827213,-0.725751,0.45179674,-0.093895875,0.06639823,-0.50227636,0.40226585,0.49639335,-0.45318174,0.44363996,0.28488618,0.23454975,-0.067230925,-0.5951668,-0.26687425,0.23730999,-0.15781426,0.427275,0.19079328,-0.81762093,0.5676782,0.437019,-0.45032597,-0.8568914,0.33749717,0.044892825,-0.20116991,-0.19888711,0.3317417,0.11932195,0.050820276,-0.3459759,0.24038228,-0.4192934,0.38243014,0.1363597,0.028993933,0.31381714,-0.25411856,-0.34427297,-0.7242844,-0.24004705,-0.5600812,-0.26685962,0.13983943,0.07056034,0.088938676,-0.0044175936,-0.053227607,0.54946315,-0.31137902,0.028045015,-0.11944994,-0.5203571,0.43779856,0.45436418,0.44490704,-0.43727896,0.6213936,0.021395495,-0.10590316,-0.22000016,-0.12839006,0.59324396,-0.02608016,0.40140474,0.05272185,-0.15430178,0.16950242,0.94448817,-0.008695146,0.374218,0.040115595,-0.22283116,0.22920081,0.16292709,0.13042927,-0.037597552,-0.6323105,0.05268952,-0.2357305,0.14374708,0.53677166,0.27316415,0.30537784,-0.10750809,-0.4160123,0.0895118,0.06032485,0.05850037,-1.2822171,0.36928067,0.17809214,0.8196837,0.5003555,0.050477937,-0.07973405,0.6833344,-0.14704858,0.119746685,0.3013167,-0.22877374,-0.4519354,0.43777406,-0.76924485,0.39700314,-0.05455372,-0.0733813,0.3189709,0.109576456,0.44312933,0.88462704,-0.16348232,0.019961994,-0.14399618,-0.25622827,0.14057735,-0.38792208,0.023583233,-0.597575,-0.4126053,0.6912704,0.4146691,0.36359766,-0.15166293,-0.06824781,0.18964949,-0.17280596,0.093040995,-0.050342903,-0.12021204,0.05424892,-0.6204744,-0.13841309,0.51534086,0.44072288,0.22250035,-0.15160277,-0.0044800364,0.23531005,-0.33260518,-0.27333874,-0.15904234,-0.6880244,-0.10129536,-0.35301793,-0.23462527,0.43754262,-0.20731041,0.19281766,0.083257206,0.13174197,-0.28177336,0.35028127,0.015343024,0.8894731,0.31787464,-0.21407357,-0.29788324,0.2253748,0.100063175,-0.26853353,-0.024695035,-0.24851605,-0.09504594,-0.7106603,0.4633128,-0.057406314,-0.54675907,0.41097134,-0.066537015,0.2082384,0.44144127,-0.15179406,-0.21127136,-0.0366599,-0.12147407,-0.26160818,-0.28905642,-0.06247034,0.25562656,0.13595816,-0.111758746,-0.17111582,-0.0068041477,-0.055420276,0.45947218,-0.031733017,0.2563437,0.17759922,0.23799118,-0.21419552,0.10367024,0.42432833,0.62483764,0.015704475,-0.14817582,-0.26554602,-0.2701843,-0.3970428,-0.1452774,-0.080374226,0.28195333,0.07670294,-0.17220153,0.82529706,0.3037511,1.2667699,-0.16952252,-0.3238467,0.13309328,0.5517628,0.08710795,-0.052951653,-0.4651286,1.0030094,0.6110242,0.0044406196,-0.15119226,-0.573443,-0.04253832,0.268501,-0.33762935,-0.06674525,-0.041877266,-0.6964637,-0.31165266,0.34687942,0.2758747,0.1141831,-0.12716071,0.16430172,0.18345888,0.084987834,0.2313931,-0.56618476,-0.07060364,0.23174715,0.4098722,0.087359555,0.17632848,-0.5533171,0.30401337,-0.719643,0.25347292,-0.061431985,0.13207568,-0.21443431,-0.22348192,0.271354,0.11477601,0.38645217,-0.35486427,-0.39009184,-0.22455941,0.5587844,0.12462559,-0.012330727,0.7326079,-0.30655855,0.061914306,0.1651342,0.419425,0.98783237,-0.18003467,0.18908681,0.36134928,-0.32626554,-0.6953193,0.3428388,-0.19524035,0.13511361,0.0027524186,-0.32342324,-0.56030744,0.12843893,0.0527054,0.016899228,0.15633425,-0.5788508,-0.053108137,0.3233587,-0.1476045,-0.23046805,-0.14731978,0.152285,0.5859521,-0.19977634,-0.418705,0.29245535,0.2833038,-0.09490069,-0.72105587,-0.11029867,-0.28381294,0.20638832,0.021827308,-0.43985373,-0.24700871,0.087181956,-0.5390247,0.069280475,0.18539988,-0.4132949,0.15379204,-0.40307263,-0.059930604,0.9098357,-0.21300378,0.36222976,-0.73334444,-0.56078184,-1.008517,-0.1988736,0.4688923,0.05538908,0.056820154,-0.7036197,-0.061733466,-0.15232502,0.04288843,-0.058865085,-0.41610187,0.3715712,0.06292686,0.4623865,-0.21549,-0.93021834,0.12166678,0.1619269,-0.27201557,-0.5443984,0.49098116,0.029071964,0.9132964,-0.041964464,0.030406965,0.24162076,-0.67345715,0.034061167,-0.1946438,-0.085636586,-0.5675141,0.105264954,248 -636,0.40791732,-0.2724486,-0.48890635,-0.1224891,-0.23300055,0.15884201,-0.14443114,0.57806647,0.36819723,-0.36602217,-0.035221394,-0.14074388,0.042104796,0.2673791,-0.16225335,-0.4745639,-6.187879e-05,0.21052083,-0.4452561,0.55112517,-0.23554823,0.23668358,-0.08472545,0.4366291,0.24779317,0.40814403,-0.034716986,-0.024775198,-0.10645978,-0.20748895,-0.08006362,0.124993294,-0.4289476,0.17404667,-0.1406017,-0.06576629,-0.023352278,-0.55798525,-0.41151804,-0.7971465,0.4008795,-0.8736471,0.5129269,-0.023004564,-0.35258424,0.3231112,0.23656988,0.3356353,-0.22478205,-0.04925429,0.28691667,-0.15483944,-0.0729198,-0.1428199,-0.17919014,-0.20362407,-0.5379034,-0.10017046,-0.3265683,-0.28311288,-0.28437436,0.27461582,-0.3433581,-0.0410925,-0.131404,0.8375593,-0.41028774,0.1359839,0.19136442,-0.4524578,0.4094968,-0.6736836,-0.0131700635,0.006163455,0.34515303,-0.006450039,-0.057797037,0.1442793,0.19757271,0.30056757,0.009551415,-0.22311704,-0.38056767,-0.166213,0.11371672,0.58251464,0.050542496,-0.30033362,-0.050056197,-0.1572428,0.09962444,0.06296244,0.26540965,-0.40347078,-0.18705034,-0.039642446,-0.2785788,0.46313283,0.37416986,-0.2916905,-0.056979068,0.44770506,0.71630067,0.10397957,-0.20987129,0.15083733,0.023949184,-0.54064447,-0.054168403,-0.024315394,-0.23369224,0.51465535,-0.22429116,0.20575632,0.71355945,-0.108049236,-0.13438447,0.0659705,0.15164004,0.051137522,-0.4312979,-0.12866817,0.25796932,-0.3508042,0.16908778,-0.2062032,0.6815593,0.18766266,-0.49546644,0.32490733,-0.5163185,0.11991754,0.026857715,0.4016433,0.43942404,0.4941627,0.30708745,0.81999695,-0.49849877,0.07226034,-0.05852004,-0.35570362,0.06408713,-0.107089505,0.124974556,-0.4145655,-0.0033035278,-0.07185609,-0.22620443,-0.07163144,0.40901592,-0.47123364,-0.10106402,0.23397954,0.9840278,-0.25005677,-0.064613946,0.7849797,0.9506661,1.0161434,-0.08378822,1.159484,0.06291365,-0.23067474,0.008248852,-0.3091501,-0.7053065,0.31015623,0.41985697,0.4615038,0.12447734,0.088187166,-0.033585005,0.5158731,-0.33429962,0.090380155,-0.16793476,0.2133207,0.20290725,-0.16451383,-0.54652494,-0.21141608,-0.025768647,0.17692828,0.25813803,0.08000858,-0.3063531,0.34716946,-0.07743817,1.8518565,-0.24096023,0.18926637,0.24023129,0.4637515,0.23878469,-0.17256619,-0.15744273,0.5328268,0.2703327,0.21891573,-0.61523765,0.25659335,-0.21898219,-0.48625565,-0.24591559,-0.34594995,-0.028779875,-0.105026245,-0.40442637,-0.16688734,-0.16802146,-0.47099134,0.3219753,-2.6543088,-0.25734064,-0.16878554,0.4408259,-0.2648146,-0.25165555,-0.04255536,-0.47003588,0.29178175,0.36040667,0.5458347,-0.7152461,0.36833686,0.5855704,-0.5911249,-0.1637605,-0.5327335,-0.14199834,-0.095517926,0.4404235,0.11804792,0.009365071,-0.09277881,0.22052486,0.5070629,0.08523266,0.12731187,0.45855284,0.42468813,-0.09605917,0.5069361,-0.06622282,0.48723844,-0.036040656,-0.21286538,0.33834898,-0.4120881,0.07883231,-0.19554019,0.034899004,0.40326735,-0.3141584,-0.9221223,-0.72784,-0.025719358,1.1865277,-0.25945613,-0.53268564,0.4121998,-0.38475868,-0.39970714,0.08595888,0.59115434,-0.08184973,-0.01707237,-0.80172217,0.025057912,-0.17062838,0.17210586,0.056589916,-0.22141396,-0.5253981,0.8352463,-0.087654956,0.6841266,0.3461482,0.20313817,-0.39335915,-0.37617543,0.032828625,0.86435235,0.3536835,0.10483355,-0.1765721,-0.011489228,-0.2941407,-0.13930921,-0.055504978,0.6978477,0.5169668,-0.07765797,0.10782961,0.24628662,-0.10386863,0.03546724,-0.12711956,-0.4026502,-0.14511663,-0.01723726,0.45818093,0.65293705,-0.11589448,0.28814808,-0.14642087,0.38826534,-0.057149928,-0.5348249,0.40882438,0.91383845,-0.314963,-0.3830276,0.643664,0.34594277,-0.3956362,0.41272524,-0.5770333,-0.1913638,0.44936448,-0.28046182,-0.59838647,0.15690583,-0.23937607,0.053145345,-0.7603117,0.18009456,-0.26351386,-0.62803924,-0.21712539,-0.19526552,-3.1924853,0.22002986,-0.22049761,-0.26825625,-0.2147169,-0.11756113,0.087707356,-0.57307726,-0.5985256,0.13876957,0.15398803,0.70336825,-0.14607134,0.1610464,-0.2767083,-0.18436447,-0.19025029,0.21876019,-0.097324625,0.38219386,0.039500043,-0.46744746,-0.07802537,0.009476891,-0.5356789,0.059704043,-0.6327037,-0.37535015,-0.21355408,-0.53341603,-0.27036068,0.7185039,-0.269423,0.09989238,-0.2903105,0.099232286,-0.13935135,0.22007836,-0.08216346,0.27762944,0.068990864,-0.035368994,0.09757249,-0.14255191,0.24583618,0.046926178,0.29340807,0.18995503,-0.08190085,0.11908608,0.58363956,0.60816556,-0.19686416,0.9820101,0.38569185,-0.06695306,0.19565056,-0.13289341,-0.19531132,-0.4669992,-0.257884,0.2681328,-0.4756147,-0.3339973,-0.06977495,-0.37838665,-0.73371124,0.5394936,0.12594233,0.17542244,0.122841746,0.22654754,0.5209927,-0.27530944,-0.050856315,0.053193074,-0.17613246,-0.6370251,-0.115674846,-0.63033897,-0.42593816,0.08938515,0.8959952,-0.32039437,0.12400195,0.097005,-0.34685305,0.015469388,0.18742225,-0.10241677,0.07034662,0.5887652,-0.1374169,-0.63722223,0.35340574,-0.26436168,-0.05609653,-0.45966294,0.32737747,0.53051585,-0.47638887,0.68007255,0.1926589,0.016834598,-0.43603718,-0.51739347,-0.16107577,-0.092552915,-0.24717453,0.46504927,0.24472883,-0.7598231,0.30307764,0.18242033,-0.3260624,-0.757526,0.36873677,-0.2525342,-0.35883725,-0.16805246,0.47554186,0.057085138,-0.1323732,-0.24629416,0.23358926,-0.33804783,0.23817681,0.24413553,-0.110342346,0.31943983,-0.23932208,-0.18728368,-0.7536632,-0.17945202,-0.415349,-0.30754077,0.2290127,0.006286057,-0.0243301,0.1957319,0.122005895,0.42155075,-0.2663119,0.0684261,-0.16082639,-0.27965814,0.43723175,0.41117042,0.57745355,-0.5486159,0.49228844,-0.020832213,-0.048592154,-0.077055655,0.0022192735,0.50529647,0.047547605,0.5365335,-0.055408996,-0.13369742,0.35401157,0.6272401,0.1757336,0.5947225,0.08579977,-0.24322928,0.17166844,0.08416697,0.25198293,-0.17882918,-0.7686829,0.273788,-0.34716287,0.07718706,0.5869146,0.17645007,0.3782164,-0.023053847,-0.5021452,0.043291803,0.060102575,-0.08463346,-1.2043191,0.2886195,0.1743962,0.98022693,0.43606883,0.040091358,0.10995226,0.83199203,0.119220406,0.025757454,0.22640084,0.05784993,-0.5721992,0.4761532,-0.8545617,0.41849402,0.15816562,-0.06397083,0.17148796,0.07989689,0.32386371,0.6609338,-0.1474029,-0.0057032597,-0.12077025,-0.27348724,0.2571618,-0.422389,0.0593757,-0.5732356,-0.3240738,0.423172,0.6154282,0.43168575,-0.17924294,0.047504727,0.05583378,-0.039325636,0.25544035,0.08096014,-0.09424209,-0.03980914,-0.76595676,-0.22755347,0.4302349,0.10586676,0.0991069,-0.1596947,-0.13173887,0.28978232,-0.26686242,-0.12845933,-0.046401277,-0.73599786,-0.07424196,-0.122332975,-0.53577936,0.3149645,-0.0821368,0.22461599,0.11239565,-0.059895746,-0.22210786,0.39472434,0.12693207,0.9449746,0.13289602,-0.05693819,-0.33696702,0.10501825,0.081881635,-0.2966521,0.123266764,-0.34636414,0.105156034,-0.7159418,0.42456242,-0.03115869,-0.3963428,0.22789973,-0.26144496,0.06671885,0.6755361,-0.23436211,-0.14799121,-0.11314727,-0.15459083,-0.16633382,-0.26575363,-0.13929883,0.19235174,0.100863494,-0.15122756,-0.15822458,-0.06217873,-0.030273493,0.4373403,-0.064081,0.48115233,0.43142354,0.014361333,-0.31336644,-0.057144605,0.258046,0.5104409,0.08492743,-0.15067483,-0.22612119,-0.5997975,-0.39389148,0.31206724,-0.01959734,0.41486883,0.051571928,-0.016676683,0.9724095,0.12866347,1.1991142,0.036507897,-0.41557154,0.14634034,0.63472486,0.076111145,0.061754588,-0.3611709,0.8401383,0.4601956,-0.15980849,0.029507527,-0.5586522,0.012295196,0.20451659,-0.18795076,0.041478302,-0.14389372,-0.7661826,-0.25653827,0.18956056,0.24241185,0.3290469,-0.1760342,0.1291123,0.29609945,-0.06403539,0.3296628,-0.540124,-0.080866046,0.38409218,0.15728715,-0.004629016,0.04856973,-0.4679336,0.43167204,-0.53446466,0.16846116,-0.19418468,0.20880938,-0.24699934,-0.23214532,0.24314785,0.03417868,0.3814783,-0.45675084,-0.3855024,-0.232075,0.54597217,0.2721836,0.018780576,0.6779074,-0.28934473,0.0555522,0.085554965,0.6118621,0.78433186,-0.22010943,0.20266297,0.4555102,-0.48619416,-0.7386106,0.10433137,-0.19971953,0.18976119,0.058079056,-0.26498806,-0.6231933,0.3177204,0.22058567,-0.08248249,-0.08612276,-0.5180579,-0.30647475,0.46431968,-0.32834122,-0.105182774,-0.22007245,0.057871636,0.39728215,-0.13984415,-0.568117,0.15102054,0.2542941,-0.17319614,-0.5883373,-0.18334113,-0.38459155,0.33067152,0.026391,-0.48153627,-0.23258099,-0.0048279027,-0.5028608,0.1859571,0.030106746,-0.26551288,0.11824637,-0.3845994,-0.18228596,0.86299366,-0.14202274,0.1462304,-0.6416983,-0.36812884,-0.9450103,-0.21459183,0.31478456,-0.10092313,-0.017290883,-0.6570313,-0.13058478,-0.38584456,-0.06795376,-0.028850578,-0.45010632,0.4689514,0.13099203,0.4944442,-0.28936833,-0.93722475,0.20962682,0.13404971,-0.21453342,-0.6405633,0.5005425,0.06361564,0.7101383,0.004729491,0.16062655,0.18665178,-0.4367472,0.092445284,-0.16693637,-0.27012712,-0.62293,0.040926777,252 -637,0.52842206,-0.21684225,-0.66116536,-0.059876617,-0.30716315,0.060477775,-0.11877258,0.6452166,0.2936108,-0.67409647,-0.033187132,-0.102716796,-0.18445046,0.19281858,-0.1739631,-0.63773596,0.07193823,0.06990946,-0.49230325,0.65379417,-0.27886894,0.3563623,0.0032345515,0.35224688,0.16308735,0.2989753,-0.035194643,-0.054672047,-0.16947123,-0.26275432,0.19346556,-0.065056846,-0.8139644,0.20563444,-0.30302957,-0.31346175,-0.10680173,-0.47397417,-0.48610818,-0.93685716,0.3529148,-0.8806352,0.48706123,-0.022919875,-0.3066033,0.09819483,0.10054546,0.3310921,-0.07980896,-0.22127853,0.13663676,-0.10426958,-0.10425945,-0.19711015,-0.27541292,-0.45488504,-0.58439755,-0.06116841,-0.5026055,-0.13950504,-0.3321328,0.15351783,-0.5121877,-0.12948738,-0.17731476,0.73984826,-0.29317927,0.032265786,0.3668305,-0.15032473,0.3452096,-0.73843163,-0.16316293,-0.15279599,0.1665019,-0.097792774,-0.1577203,0.5459482,0.13780172,0.42311478,0.06781617,-0.3177275,-0.2745995,0.055167403,0.19784106,0.34201998,-0.16661857,-0.502479,-0.19241007,-0.09370434,0.39228952,0.21455325,0.16071571,-0.24794456,0.0519497,0.22935654,-0.2907515,0.7473557,0.5592353,-0.13016988,-0.064157635,0.33333194,0.5093774,0.12857623,-0.22904539,-0.14851612,-0.042403854,-0.48683962,-0.14963926,0.20152436,-0.31231454,0.5302943,-0.24381875,0.15688208,0.7672793,-0.3741772,0.044772845,0.27911142,0.047732983,0.02696575,-0.47454655,-0.08578431,0.304126,-0.5567574,0.24013454,-0.55508333,0.74090904,0.23744759,-0.67482305,0.23223051,-0.71990484,0.20935914,0.023922814,0.4715886,0.79817384,0.6457581,0.09357207,0.7787749,-0.4796144,-0.058826648,-0.050420146,-0.32705098,0.09905377,-0.41539747,0.32283136,-0.25266764,-0.1274084,-0.07734646,-0.21247484,-0.049676325,0.29854676,-0.6084926,-0.31502816,0.06784058,0.9119934,-0.14640985,0.012232909,0.8104638,1.0097818,1.0005065,0.0073521617,1.361407,0.1170976,-0.2145622,0.3202102,-0.098242365,-0.7629179,0.33172545,0.18925196,-0.4084317,0.31778085,0.021656262,-0.24232318,0.33544043,-0.46411216,-0.12132828,-0.15941086,0.41244337,0.09446045,-0.20604508,-0.26575336,-0.10130549,-0.034300517,0.04522442,0.21387163,0.38160086,-0.15760769,0.2650301,-0.0476097,1.1473899,-0.095149085,0.19156076,0.042913694,0.5656036,0.16744779,-0.08863508,0.10687421,0.20812596,0.14762655,0.24818052,-0.63406664,0.027995123,-0.40686673,-0.31972396,-0.10664332,-0.33797568,-0.17946234,-0.17331907,-0.49787918,-0.12364109,-0.18402077,-0.2530102,0.42316863,-2.416222,-0.34299013,-0.13769667,0.3730961,-0.38591433,-0.3665363,0.014390351,-0.69963086,0.56386673,0.2163557,0.60349077,-0.7162145,0.3627337,0.5182771,-0.58575004,-0.06739901,-0.59756047,-0.12080378,0.0500459,0.37240002,0.027299514,-0.1182351,0.11388016,-0.12954794,0.50751305,0.20769979,0.03086672,0.2827471,0.4556187,-0.2498111,0.51241755,-0.09162809,0.5748975,-0.59272134,-0.058072448,0.4008414,-0.63728243,0.30513123,-0.19730887,-0.040677473,0.56855977,-0.53806376,-0.85889786,-0.66827595,-0.33294612,1.2902876,-0.017992629,-0.49674422,0.09655338,-0.3602913,-0.14692734,-0.16691937,0.67349845,-0.04547803,0.14755313,-0.67692226,-0.007224512,-0.30052292,0.17251268,0.01394298,0.048325337,-0.38643163,0.7707549,0.009197136,0.508946,0.18635726,0.21455051,-0.4423954,-0.4486483,0.0689859,0.87404317,0.4716863,0.12012832,-0.1988878,-0.11917228,-0.44130453,-0.21052602,0.00092230394,0.769651,0.6110224,-0.14045085,0.03550742,0.44856343,-0.08177797,0.18303023,-0.12863551,-0.55387086,-0.3811145,0.062091008,0.598043,0.75564945,-0.27256292,0.33106974,-0.090969294,0.18918747,-0.19189896,-0.5345902,0.6129565,1.0830039,-0.25173128,-0.13735709,0.5204271,0.46228033,-0.54457325,0.5774573,-0.47863898,-0.50219476,0.5745404,-0.19410601,-0.58699346,0.036233142,-0.26716062,0.046371117,-0.78848207,0.31558737,-0.7210379,-0.47415146,-0.53248906,-0.1643506,-2.867316,0.31387055,-0.2924745,0.042420592,-0.30477193,0.015389745,0.25354,-0.5930526,-0.5944385,0.21105947,0.119422406,0.8481503,0.0049374225,0.16521972,-0.38651532,-0.28181356,-0.38748753,0.17302898,0.2234548,0.19627205,0.0052442322,-0.3155173,-0.18689156,-0.08784657,-0.55272114,0.12176407,-0.6517792,-0.47664744,-0.3588481,-0.5744359,-0.30720395,0.7766832,-0.31731117,0.10387714,0.06662218,-0.011539088,-0.017596098,0.28266698,0.027613498,0.22136758,0.23968054,-0.2068484,0.19536318,-0.3518048,0.3353995,0.17894994,0.53478473,0.46265805,-0.22365515,0.26962948,0.56030977,0.93032277,0.13572754,0.9395155,0.12637956,-0.10758634,0.5290681,-0.29495975,-0.5057372,-0.65405595,-0.09338395,0.11043679,-0.30521104,-0.28185833,0.22699155,-0.2987831,-0.8367953,0.57509816,0.087859645,0.3585857,-0.013914509,0.25572938,0.5591647,-0.26066583,-0.04146203,0.014979248,-0.09428498,-0.56482154,-0.22622024,-0.684016,-0.56402296,0.081607334,0.8985484,-0.18010852,-0.12250361,0.06626614,-0.1728662,0.15710688,0.14624046,-0.037388828,-0.18357609,0.43017212,0.06831605,-0.59112936,0.38301358,-0.036009423,-0.040113274,-0.5791216,0.5227407,0.87088907,-0.64905274,0.5211608,0.3305953,-0.06429165,-0.36693338,-0.470214,-0.02394806,-0.010300429,-0.15917741,0.2597176,0.16701348,-0.87944096,0.28682038,0.2763558,-0.3093715,-0.6714754,0.5298598,-0.013267384,-0.045624394,-0.3885368,0.49978307,0.42299026,-0.017341448,-0.045497674,0.40839836,-0.50344974,0.15305246,0.14102402,-0.1327429,0.36571822,-0.027492179,-0.2718479,-0.74808353,0.19089288,-0.71770567,-0.26546147,0.4505175,-0.1084574,-0.083143815,0.21633475,0.33714172,0.31361097,-0.13388728,0.08958979,-0.14201912,-0.4298541,0.5355084,0.44283068,0.66127396,-0.6396354,0.7420785,0.089381546,-8.2994884e-05,0.4074704,0.13008688,0.545386,0.10583437,0.5881682,0.16969472,-0.07772829,-0.015566672,0.80621344,0.15207669,0.6622061,0.15657187,-0.121367946,0.08318384,0.062243894,0.1542671,-0.13230087,-0.85818857,0.09137487,0.02895115,0.00940732,0.4804279,0.109742165,0.29567498,0.08992187,-0.26106784,-0.14193669,0.08897523,-0.19432384,-1.6260393,0.56060207,0.22540991,0.95810497,0.3553772,-0.040695105,0.00897093,0.6979438,0.10169765,0.18882623,0.5609506,-0.113773674,-0.44395894,0.5288298,-0.7431786,0.43806502,0.12944995,0.113025256,-0.021763977,0.123781785,0.5186336,0.74981177,-0.26624396,-0.035438538,-0.11765773,-0.45290068,0.28619918,-0.3713131,0.19784595,-0.4069628,-0.26297355,0.488272,0.65137064,0.2841859,-0.20872802,-0.040745847,0.15819556,-0.07426517,0.34736687,-0.17255391,0.043663,-0.053912148,-0.43015766,-0.21809277,0.48799375,-0.10922154,0.2410632,0.07270717,0.0040925397,0.30363905,-0.03864812,-0.07907818,-0.07731223,-0.82646877,0.006538192,-0.45946553,-0.477729,0.36969024,0.0016955045,0.29943192,0.24954937,0.11112286,-0.3859267,0.4472998,0.058332577,0.53503263,-0.28456235,-0.3189589,-0.39737627,0.26006886,0.11593492,-0.42986014,0.13807833,-0.1078316,0.003053115,-0.38059726,0.38757208,-0.2565676,-0.2271413,-0.01658851,-0.15219966,-0.08643012,0.60801405,-0.20109683,-0.044711266,-0.0101234,-0.27679193,-0.18080924,-0.19021004,0.01998341,0.19296297,0.19744407,0.08336333,-0.2149694,-0.19141814,-0.0059635593,0.32933697,0.018147798,0.1722768,0.46236897,0.11361141,-0.4163894,-0.1713418,0.4354996,0.60018355,0.12603006,-0.108964615,-0.2671926,-0.3433494,-0.46354407,0.38782597,-0.08599233,0.32849926,0.1382399,-0.40630847,0.8104514,0.09527354,1.2426001,-0.08796624,-0.32538027,0.036290567,0.4982138,-0.029992979,-0.11486184,-0.53721297,0.96242553,0.46658024,-0.2639979,-0.051973358,-0.56676614,0.04395357,0.18363975,-0.37120873,-0.1618432,-0.06971465,-0.70082533,-0.24177995,0.17331551,0.40892237,0.054866806,-0.26623565,-0.1238064,0.36990133,0.12034755,0.41694406,-0.63116497,-0.24390517,0.24759707,0.32922158,-0.0033578528,0.24856319,-0.36011025,0.34733948,-0.6144324,0.23045553,-0.14018007,0.095208205,-0.286426,-0.43082052,0.17056274,0.036181413,0.41957295,-0.29944918,-0.53365517,-0.19851057,0.42496496,0.21754034,0.14426692,0.77018064,-0.27996218,-0.13034037,-0.028406449,0.7248484,1.0750597,-0.019010603,-0.015384734,0.23018257,-0.43705824,-0.73534256,0.22713128,-0.43878153,0.3606487,-0.19093587,-0.2577893,-0.5691071,0.19578655,0.05125274,-0.10429557,0.05063481,-0.8228305,-0.35535115,0.16349095,-0.4573527,-0.22499512,-0.35321456,0.16360521,0.58746135,-0.16200143,-0.2703173,0.18521158,0.18551472,-0.12494368,-0.53659207,-0.13757545,-0.31199104,0.14566444,-0.07126166,-0.39199764,0.051483933,0.05533024,-0.6218329,0.21462049,-0.09343119,-0.49824142,0.029139025,-0.1325259,0.008039267,0.88238645,-0.09355186,0.3235213,-0.29145637,-0.509806,-0.6554237,-0.37718412,0.23848604,0.121669546,0.016918045,-0.6932903,-0.22198156,-0.122133456,0.016989907,-0.067560636,-0.41326168,0.26709592,0.20347016,0.4649839,-0.15147966,-0.8353559,0.1785927,0.21144997,0.022690488,-0.68216634,0.38703588,-0.18984899,0.77061236,0.19428168,0.026920604,0.1981929,-0.5120832,-0.012600129,-0.2353676,-0.19657084,-0.57498306,0.21178807,255 -638,0.3652087,-0.23442292,-0.5348655,0.018204862,-0.19373399,-0.095366605,-0.19531824,0.5103989,0.3149485,-0.08971003,-0.043111682,0.1189774,-0.1432772,0.35011816,-0.01449533,-0.4950153,0.051096145,0.17639181,-0.52529466,0.6285484,-0.39726683,0.06686967,-0.29229325,0.45087245,0.32428077,0.2930597,-0.064492464,0.10126387,0.010499961,-0.11489738,-0.0032843442,0.11589641,-0.6696314,0.17214021,-0.05436933,-0.21698108,0.048122324,-0.4754116,-0.3589217,-0.8828299,0.28036198,-0.59498024,0.5900574,-0.12132221,-0.25287932,0.31361362,-0.02882464,0.45111004,-0.4208633,-0.13060531,0.10634732,-0.17816637,-0.2563089,-0.06213898,-0.033886578,-0.2246935,-0.6055099,-0.058441933,-0.3200798,0.03611245,-0.15953766,0.083591655,-0.43486947,-0.041847523,0.04812628,0.41068083,-0.45920706,0.25366485,0.16226146,0.04152717,-0.101165876,-0.71138984,0.047302835,-0.21689121,0.29852393,-0.040670175,-0.3039694,0.33839032,0.22821252,0.2768512,0.010166654,-0.100600995,-0.23252344,0.06546534,-0.053530134,0.5247417,-0.080174014,-0.27491295,-0.11048489,0.12190595,0.12884091,0.21418467,0.0906331,-0.08369929,-0.23843127,0.08786818,-0.18290994,0.4467753,0.49521524,-0.2889992,-0.20993812,0.41306514,0.5860567,0.3319996,-0.085990414,0.01586296,0.05235376,-0.5397567,-0.17273913,-0.011164954,-0.23278816,0.40815455,-0.12868798,0.20016864,0.6655397,-0.22310919,-0.26662177,0.0858869,0.21656558,0.0063782153,-0.35242373,-0.36899203,0.31705776,-0.53176415,0.24372035,-0.08002814,0.5498018,0.3644357,-0.5078967,0.27244136,-0.5043175,0.13001275,-0.1398425,0.49073407,0.9205802,0.53438085,0.40626657,0.8218013,-0.39643887,0.17163633,-0.0617212,-0.3097113,0.16409232,-0.22678334,-0.15050022,-0.53268194,-0.0485932,-0.10914434,-0.16743194,0.25357082,0.1047321,-0.47983977,-0.07374007,0.073576175,0.7042984,-0.16575176,0.009504855,0.78656924,1.0359694,1.1612632,0.05027639,1.1038489,0.22591528,-0.18593293,0.17458937,-0.19373196,-0.833896,0.22505309,0.20302072,-0.24434958,0.2283029,0.21961021,-0.19868104,0.40388596,-0.48069778,-0.09445564,-0.07098695,0.32028043,0.1987701,-0.103710376,-0.50437725,-0.30936944,-0.21532935,0.06468174,0.04428263,0.34288305,-0.23489965,0.2834104,0.022167504,1.4165815,0.009645649,-0.009341604,0.08326931,0.6349932,0.21787363,-0.32560748,-0.29978284,0.28697455,0.5899574,0.26138407,-0.5342271,0.07385574,-0.16298215,-0.32183763,-0.13247806,-0.28624073,0.019976946,-0.014573427,-0.15904742,-0.3137612,-0.06677823,-0.09917832,0.61808085,-2.8178084,-0.014019875,-0.022108708,0.346697,-0.1581614,-0.29133484,-0.14371373,-0.5481285,0.322351,0.23447484,0.58546245,-0.62616754,0.38902003,0.31196785,-0.735784,-0.022319267,-0.6597098,-0.17996421,0.07696013,0.33275598,0.008498586,-0.03811894,0.024988843,0.11530486,0.58422387,0.16481128,0.050577547,0.33429495,0.23024175,0.031836793,0.53726333,-0.010764835,0.5542154,-0.1537058,-0.15527914,0.11607463,-0.3168289,0.36503348,-0.22117744,0.09273055,0.5768445,-0.37755534,-0.98690075,-0.5702665,0.24730195,1.3353051,-0.24600077,-0.33282253,0.17380379,-0.6437981,-0.24944574,-0.16451095,0.2993523,-0.15587504,-0.28458104,-0.648826,-0.047214203,0.055688437,0.24115135,0.011962558,-0.07560832,-0.44765523,0.5099572,-0.16436537,0.36160988,0.35343936,0.18010794,-0.099577576,-0.48167202,-0.036378786,0.6692326,0.38588268,0.07537331,-0.2804715,-0.16910301,-0.31509256,-0.021635102,0.06488229,0.4430601,0.50783336,-0.25443652,0.17311676,0.25043133,-0.11651712,0.072712295,-0.100052744,-0.29597914,-0.17439936,-0.009818488,0.5063068,0.84368557,-0.018880973,0.43416166,0.041766856,0.17261368,0.10067439,-0.56844246,0.4739235,0.9165708,-0.2736403,-0.27345437,0.40989855,0.37930584,-0.12358317,0.46674716,-0.38413817,-0.10095091,0.30574992,-0.085548684,-0.22274496,0.007984872,-0.25495422,0.030804487,-0.58531344,0.2991429,-0.24129549,-0.49782997,-0.55783355,0.042170856,-3.3535814,0.113357425,-0.33850092,-0.1754365,-0.054121934,-0.111617655,0.2072436,-0.65857804,-0.567633,0.23107591,0.17274202,0.7231988,-0.20086578,-0.10723831,-0.2025698,-0.45497674,-0.550504,0.13510485,0.21087827,0.3265611,0.18239564,-0.46439424,0.0020833658,-0.06821599,-0.37763822,-0.07908039,-0.4843659,-0.24141961,-0.090848655,-0.5811922,-0.29241535,0.6926843,-0.18146229,0.030508349,-0.26401392,-0.00656696,-0.046746586,0.25114664,-0.010968343,0.03566351,0.11080685,-0.09148361,0.07711856,-0.15487891,0.164628,0.00866209,0.32540095,0.13272792,-0.030182637,0.08277989,0.54237723,0.6813609,-0.23154536,1.0472106,0.6203194,-0.20194489,0.160379,-0.15336198,-0.26683024,-0.372349,-0.3036256,-0.045861088,-0.4756576,-0.27496234,0.109207675,-0.3931518,-0.7667485,0.55670744,-0.10780643,0.11810304,0.12029752,0.29042184,0.6380955,-0.17271854,0.12794426,-0.017390665,-0.10984507,-0.46146232,-0.12278307,-0.4332712,-0.48950964,0.17745532,1.0140779,-0.5305668,0.16499402,0.09818793,-0.4577151,0.037967887,0.1392433,-0.15902947,0.14423272,0.3414583,-0.01670296,-0.55274147,0.24037196,-0.21839362,-0.0076906155,-0.82492566,0.2869187,0.5007855,-0.66877025,0.5125312,0.21511751,-0.09295834,-0.13831434,-0.59353405,-0.26415026,-0.08970647,-0.23858224,0.3780535,0.31398386,-0.89589435,0.4188945,0.23886248,-0.31525886,-0.61984354,0.45228228,-0.027981011,-0.14272651,-0.009953012,0.29051572,0.17229149,0.1065478,-0.2814328,0.24994506,-0.3452052,0.20374492,0.098099194,-0.16280094,0.08888002,-0.13012801,-0.016924767,-0.68413776,-0.093358465,-0.4178718,-0.31300658,0.30847076,0.08266883,0.099677615,-0.010866776,0.3464424,0.31550997,-0.2498428,0.07637584,-0.1333653,-0.41047558,0.38731006,0.49779242,0.49167296,-0.34874865,0.5875931,0.075192995,-0.18414268,0.071355805,-0.0070902016,0.31349328,-0.0029591413,0.41995335,0.20246162,-0.19496359,-0.026808836,0.7010345,0.1232802,0.4911273,-0.1092548,-0.07352627,0.11456403,0.117580816,0.23479876,0.1642687,-0.5351149,0.13566682,-0.18836318,0.28041875,0.47139645,0.24830844,0.19723752,-0.10038821,-0.2560037,-0.1265203,-0.034434136,0.16649124,-1.5273668,0.4116213,0.16619569,0.81098104,0.35401216,0.072139576,-0.09588332,0.60740215,0.026898466,0.11197933,0.26410565,0.19155718,-0.4768758,0.42223275,-0.845107,0.6696872,0.058882676,-0.00070030644,0.16746393,-0.0511309,0.5065916,0.707682,-0.22660533,-0.04498678,-0.035134874,-0.30072802,0.015034641,-0.31993178,0.13150743,-0.57552725,-0.2777559,0.52144426,0.5781769,0.3607094,-0.17014709,-0.0047427807,-0.030618612,-0.15806715,0.1302213,-0.032695808,-0.054107364,0.005908833,-0.5978419,-0.14799923,0.40516466,-0.27495673,0.097317606,-0.01907113,-0.01974978,0.22564822,-0.14909135,-0.014114151,-0.10002693,-0.74559754,-0.096374944,-0.27092832,-0.33308622,0.4960763,-0.02531964,0.21007864,0.23532456,0.09832696,-0.30240938,0.4534553,0.009341955,0.750407,-0.10067822,-0.11586,-0.3998832,0.1702342,0.14760682,-0.08977736,0.0915504,-0.3086454,0.10694997,-0.49468833,0.40781912,-0.102358155,-0.33596104,-0.07131934,-0.071003616,0.039879,0.51625216,-0.14952536,-0.12517129,-0.068237,-0.30140895,-0.33946612,-0.4003881,-0.24304236,0.060143646,0.33396637,-0.09938639,-0.062465176,-0.23733975,-0.060359873,0.41016564,0.07397599,0.2688569,0.1424298,0.07523679,-0.25414294,-0.21301804,0.14287657,0.5807533,-0.23136641,-0.2940903,-0.517752,-0.5316387,-0.38370463,0.20971686,-0.022188187,0.42559814,-0.026828457,-0.14280957,0.6111209,0.15211037,1.2016754,-0.0637656,-0.37144753,0.10891362,0.65172946,-0.104092315,-0.08915232,-0.31870696,0.84707195,0.46029332,-0.24049753,-0.12205179,-0.48469198,-0.25605196,0.2919341,-0.20429268,-0.05848109,0.025960317,-0.5126518,-0.083352566,0.3156358,0.19042088,0.20970334,-0.119158454,0.08593201,0.42522103,0.15660875,0.27304098,-0.4217609,-0.11003058,0.2915022,0.26574317,0.05320048,0.20397839,-0.4114151,0.33487386,-0.33561182,0.025746047,-0.12566197,0.23265114,-0.13998118,-0.30694968,0.28131297,0.20559731,0.5313253,-0.38678044,-0.34623832,-0.2682434,0.49218976,0.27046835,0.17949232,0.52726245,-0.2681176,-0.09117411,-0.072411165,0.43123415,0.7998492,-0.18870093,0.079828486,0.30667776,-0.2893322,-0.56166494,0.31607172,-0.27567628,0.152582,0.03864277,-0.0909526,-0.66360813,0.23659304,0.16535799,0.17987493,0.1396654,-0.6611573,-0.196591,0.12765104,-0.22413749,-0.07624184,-0.31728423,0.12568805,0.7003423,-0.21210936,-0.48312047,0.10462909,0.24378219,-0.010030884,-0.47426128,-0.13276035,-0.3450092,0.1924785,-0.018750777,-0.42692512,-0.32790515,-0.042246383,-0.4765968,-0.09912276,0.002536549,-0.2135658,0.1099621,-0.26090586,0.067277506,0.8050553,-0.39263624,0.3214267,-0.47131756,-0.43554825,-0.76055914,-0.33353895,0.3627896,0.30976298,0.036402617,-0.74075276,0.05322349,-0.21956946,-0.21875522,-0.055897553,-0.4897311,0.52716887,0.04663606,0.060394563,0.010825955,-0.9164802,0.21213315,0.13378583,-0.24819675,-0.53015417,0.52701104,-0.112574026,0.8323928,0.18768147,0.16116211,-0.022052169,-0.2113575,0.01969917,-0.24127358,-0.23309748,-0.68310136,-0.101080365,258 -639,0.022333251,-0.05842054,-0.4751727,-0.14982487,-0.060963783,0.20296377,-0.057785496,0.46276397,0.11867842,-0.38444564,-0.028883742,-0.1523968,-0.049362805,0.32303298,-0.16729262,-0.4520815,0.0065302392,0.16688465,-0.26940754,0.17044197,-0.43042564,0.25592723,-0.17898414,0.27851504,0.06475603,0.276129,0.21718289,-0.22218768,-0.22079445,-0.22401024,0.025408827,0.31172112,-0.47859076,0.36135468,-0.004038421,-0.17017442,0.23202287,-0.3589231,-0.4824255,-0.5342221,0.25750503,-0.753704,0.38759467,0.019532941,-0.081391454,0.27501372,0.23131536,0.122747,-0.3425975,-0.12563957,0.3083822,-0.3384667,-0.08414892,-0.22886345,-0.1953215,-0.4109974,-0.3759211,-0.03156006,-0.46001142,-0.15071517,-0.46700388,0.11297728,-0.2914372,0.013045811,-0.19310229,0.27426812,-0.3427107,0.016629549,0.17728494,-0.33216184,0.09493529,-0.5687217,-0.18691164,-0.031036321,0.000967247,-0.17067745,-0.06357716,0.40085617,0.18381014,0.26926583,-0.1175333,-0.0044329944,-0.24595867,-0.31715664,0.18082696,0.5480995,-0.086856,-0.38066304,-0.023591977,-0.06007576,-0.05480108,-0.010987117,0.051888518,-0.13959044,-0.12740175,0.14869253,-0.2711042,0.22863418,0.48644236,-0.25869438,-0.21581969,0.41787243,0.41247866,0.09870749,-0.04153568,-0.119744584,-0.08020942,-0.46662962,-0.21716629,-0.1325263,-0.108229,0.43453863,-0.079348855,0.19347733,0.7598717,-0.3359308,0.03955781,0.118009076,0.16952778,-0.014434374,-0.35353056,-0.19719897,0.1855986,-0.348951,0.042503186,-0.14596364,0.9061874,0.041527152,-0.45141917,0.33092833,-0.46698508,0.07417575,-0.03973806,0.60862947,0.3417964,0.37945157,0.33077314,0.6515763,-0.4685402,0.040401418,0.0043309103,-0.29703116,0.2541449,-0.23435718,-0.15062985,-0.2930962,0.015409286,0.26262787,0.06980848,0.045140937,0.2240635,-0.437867,0.07330607,0.16417335,0.8352077,-0.31047806,-0.14181148,0.3576212,1.0574276,0.74407125,0.04528606,1.128906,0.15545636,-0.2683997,0.04129007,-0.005703816,-0.8063217,0.28197423,0.3260039,-0.30600828,0.10273261,0.2864857,-0.06638457,0.28599894,-0.43028763,-0.10012475,-0.14997815,0.3767378,0.09855285,-0.07535134,-0.40188318,-0.31355572,0.084903404,-0.24183846,0.2597222,0.2712798,-0.2274387,0.23191306,0.14577636,1.3931991,-0.014876132,0.22420223,0.07589263,0.48951334,0.12013949,-0.03616949,-0.028993892,0.47234586,0.2841168,0.016875032,-0.61622465,0.17233673,-0.27356768,-0.61157,-0.12888433,-0.32708517,-0.080921166,0.041162767,-0.3054214,-0.17129262,-0.053680837,-0.29333103,0.36558956,-2.8324838,-0.025592478,-0.009394809,0.24080476,-0.28532064,-0.1133128,-0.09375017,-0.3480474,0.33815876,0.49115118,0.42205423,-0.46392345,0.19526619,0.39869535,-0.25820327,-0.31322104,-0.52990615,0.16334714,-0.10937521,0.19352776,0.048119508,-0.027507644,-0.2478822,-0.11841985,0.38019848,-0.11104805,0.080155805,0.37005204,0.2417958,0.060520127,0.26413283,0.013203896,0.54225767,-0.44708762,-0.09282282,0.24768914,-0.6311169,0.47172356,-0.024442067,0.12054336,0.3578522,-0.2012232,-0.74316704,-0.4383399,-0.3363395,1.4036871,-0.30788496,-0.19112404,0.2420173,-0.0931782,-0.23819274,-0.023207132,0.40101528,-0.29093286,-0.0022621774,-0.6399975,0.16785127,-0.158638,0.42953506,-0.019747403,0.057191912,-0.36649853,0.6228456,-0.05338577,0.4657163,0.2113274,0.06372091,-0.3716641,-0.27856773,0.01520512,0.8500419,0.27596554,0.13624573,-0.21620716,-0.19105384,-0.18487872,-0.1064704,0.18209745,0.4293525,0.5954772,0.060440786,0.16246489,0.27372438,0.00813067,-0.10272289,-0.07183269,-0.27963158,-0.021396937,0.16106565,0.6892859,0.4511605,-0.14009568,0.37592062,-0.08437435,0.33806545,-0.33441147,-0.31739518,0.29420292,0.7483051,-0.15708464,-0.26697886,0.6935308,0.5924314,-0.33273953,0.453162,-0.5532627,-0.4557064,0.625266,-0.27088714,-0.39169964,0.08927726,-0.27379268,0.02160113,-0.85769755,0.33802003,-0.041579552,-0.55478674,-0.6230805,-0.25554913,-3.2763608,0.02010246,-0.19125359,-0.23833497,-0.2095441,0.066057436,0.27947342,-0.505735,-0.38002485,0.070022866,0.11982192,0.5994313,0.00842077,-0.01652057,-0.23147812,-0.14736648,-0.08592704,0.14134401,0.11262762,0.20510362,-0.06303001,-0.37671822,0.063213825,-0.28142852,-0.34513855,0.068942465,-0.46494895,-0.310565,-0.22923395,-0.5380499,-0.36095354,0.69414914,-0.64242625,0.03292671,-0.14934151,0.105093114,-0.11714323,0.31389558,0.19231234,0.112467974,-0.01666938,-0.113875784,-0.040667813,-0.4467533,0.48176953,0.007867449,0.48120946,0.54841423,-0.059212446,-0.15670846,0.5316519,0.44335446,0.05375389,0.8267969,0.26157862,-0.06984398,0.39339292,-0.31510317,-0.20951667,-0.46753305,-0.3553915,0.07012357,-0.3017297,-0.39903158,0.052501526,-0.32495987,-0.7920859,0.5645285,-0.05035217,-0.06506956,-0.006706648,0.21317181,0.35410407,-0.08489196,-0.0928253,0.058542058,-0.058905527,-0.39454782,-0.47408164,-0.62524295,-0.29558796,-0.014007769,0.92920107,-0.17210484,-0.1152984,-0.026099913,-0.14105095,0.01007148,0.15279089,0.023608685,0.26357728,0.46259594,0.0575122,-0.6168633,0.55735815,-0.25608906,-0.16869494,-0.4708451,0.02171532,0.5927936,-0.759828,0.46718168,0.49616206,0.14653894,-0.07078728,-0.44639635,-0.28471512,-0.1847287,-0.114094414,0.3234701,0.15062684,-0.81265736,0.47721142,0.22681996,-0.39458084,-0.68875855,0.3135883,-0.11946841,-0.024878016,-0.008844733,0.32933885,-0.041044567,0.032700326,-0.16089225,0.14104268,-0.37513182,0.091417775,0.17720999,-0.13807973,0.56909126,-0.21715659,-0.047640763,-0.552815,0.042377964,-0.40514213,-0.1996478,0.14493331,0.055177476,-0.08832742,0.30039987,-0.103625424,0.38460872,-0.24180983,0.035444282,-0.054899685,-0.23339213,0.46327436,0.3982189,0.42477334,-0.37901527,0.68284255,-0.028697293,0.07366766,-0.12279472,-0.014249148,0.44794062,0.055214442,0.39504382,0.06895703,-0.113805346,0.34667698,0.82374513,0.24990524,0.43464455,0.064816386,-0.006899724,0.24295834,0.01145478,0.12309322,0.24003777,-0.49213395,-0.09308536,-0.25193346,0.15085763,0.40797776,0.08972037,0.54008293,-0.06364123,-0.07695763,0.21129563,0.23274957,-0.050788376,-0.7076622,0.55888,0.21695016,0.604303,0.36457983,0.0024330823,0.087198734,0.6513639,-0.21758412,0.1326677,0.26493132,0.010215872,-0.5336366,0.57625175,-0.61181283,0.4855388,-0.20621753,0.0072335876,0.06737651,-0.01557899,0.45946705,0.7781169,-0.13791251,0.061520584,0.12320101,-0.24509849,0.2148815,-0.3507851,0.3165689,-0.49174404,-0.23141728,0.5623647,0.408841,0.3186027,-0.26026848,-0.04529226,0.058082405,-0.089495346,0.18724865,-0.050386403,0.01993591,-0.06955034,-0.61167836,-0.33129495,0.4842693,0.113336995,0.1969406,0.019189904,-0.18904455,0.27425134,-0.18564193,0.033823732,-0.14957744,-0.37796387,0.16666254,-0.11778586,-0.68657494,0.2001076,-0.27875695,0.32404402,0.22543167,0.04050764,-0.3361211,0.30953705,0.22071102,0.7660855,-0.22251518,-0.20457667,-0.40384966,0.093592815,0.28057015,-0.11099521,-0.14970425,-0.4310261,0.002418518,-0.5412735,0.2973463,-0.31036422,-0.23012172,0.05652996,-0.34482634,-0.0721832,0.50556517,0.104466245,-0.03302705,-0.05030386,-0.26369298,-0.1482527,-0.06640128,-0.22723547,0.22338878,0.1116476,-0.10979361,-0.18092881,-0.2079776,-0.052615542,0.110288635,-0.11535799,0.13838586,0.2903566,0.090877526,-0.24478358,-0.20754123,-0.120442234,0.576018,0.07309513,0.031340167,-0.21453208,-0.2937247,-0.1877075,0.32316092,-0.21787395,0.1809468,0.20311818,-0.44822496,0.67386186,-0.1108359,0.9993427,0.02143079,-0.3818698,0.09060737,0.71299785,0.0537173,-0.023352275,-0.3940886,0.9366734,0.50568473,-0.11547124,-0.24858348,-0.3181718,-0.01867354,0.23125084,-0.13293603,-0.49386686,-0.07945816,-0.6893883,-0.17592937,0.28200743,0.35644773,0.041426387,0.019137293,-0.04995888,0.21950427,0.12407064,0.38498244,-0.43064836,-0.11333673,0.35177782,0.14425506,0.041925885,0.13313437,-0.38249877,0.43130124,-0.6836653,0.068830565,-0.19289912,0.048564516,-0.255144,-0.21196008,0.22059125,0.10281901,0.36967185,-0.27366608,-0.17964381,-0.027807564,0.33099145,0.14151698,0.26891547,0.61991537,-0.2079518,-0.023582097,-0.0161951,0.4695067,0.81939954,-0.25574937,-0.046017583,0.41568515,-0.31711355,-0.633331,0.38923296,-0.46895054,0.07638492,-0.12605602,-0.4436254,-0.27455518,0.31499717,0.25476053,-0.08567192,0.17032088,-0.45329922,-0.05320433,0.13343164,-0.26251572,-0.24411029,-0.2935134,-0.010520022,0.6590162,-0.2975466,-0.16026963,0.16875783,0.37356207,-0.18422253,-0.5157075,-0.038414035,-0.3974194,0.38786137,-0.06386421,-0.206252,-0.10164662,0.02346412,-0.3387058,0.40174058,0.15570666,-0.36470684,0.025681544,-0.19474298,0.17163515,0.45404804,-0.080545664,-0.044431366,-0.6214788,-0.50293326,-0.8797616,-0.21927533,0.55038524,-0.027676225,-0.109586395,-0.34593278,-0.028981619,0.006277268,-0.1610801,-0.23296605,-0.41509217,0.4042602,0.12247812,0.28472096,-0.06078816,-0.89523196,-0.014062662,0.016917692,-0.19059357,-0.47229764,0.46276742,-0.31408623,0.69175583,0.022475133,0.04024468,0.2755661,-0.4089197,0.22904605,-0.27800143,-0.22387902,-0.53949857,0.14297661,263 -640,0.42148414,-0.076404944,-0.4031541,-0.06551619,-0.23945116,-0.06683946,-0.076744124,0.60178894,0.22420996,-0.45301265,-0.116609745,-0.088415496,-0.13730279,0.2038467,-0.14941703,-0.36412433,0.22635871,0.16061227,-0.34099585,0.66273755,-0.4511669,0.37654716,0.059336003,0.29368,0.23623523,0.12888367,-0.008519879,0.11491615,-0.04474819,-0.39075089,-0.1943238,0.30896604,-0.52132356,0.33443117,-0.2476781,-0.5068136,-0.09696691,-0.47559085,-0.14593045,-0.767326,-0.012662475,-0.64236295,0.58611494,0.17821115,-0.33893225,0.07668761,0.20697124,0.16711156,-0.12940086,-0.035413817,0.0810754,-0.07835682,-0.08816617,-0.2524434,-0.06890099,-0.26197997,-0.6203356,0.049711384,-0.4651655,0.0021853447,-0.38139433,0.123504676,-0.34124076,-0.12650733,-0.09943554,0.48264027,-0.3806591,0.019913765,0.02330028,-0.23466237,0.2145589,-0.59615433,-0.057360455,-0.28374702,0.060059097,-0.22323667,-0.35481498,0.3172758,0.36258242,0.5058798,0.10218699,-0.20411858,-0.32625535,-0.119232304,0.013163447,0.40416014,-0.13838969,-0.53835905,-0.13596094,-0.113509536,0.30606925,0.20452884,0.256311,-0.1303655,-0.12380346,-0.009042378,-0.36151412,0.24951905,0.43501168,-0.45245692,-0.27216223,0.31329912,0.5056813,0.092562206,-0.12512971,0.075442,0.030867733,-0.5178921,-0.3009249,-0.093932465,-0.22341846,0.47825608,-0.22268051,0.2165537,0.60138416,-0.16118166,-0.052979715,0.2856249,0.16178179,-0.042995527,-0.40511608,-0.30891997,0.30060914,-0.6203597,0.1577074,-0.15146434,0.7897981,0.05763781,-0.80533767,0.2676791,-0.61459553,0.04714579,-0.03828831,0.4875188,0.630935,0.5151296,0.40078416,0.59361243,-0.3155104,-0.08952929,-0.26668602,-0.19661811,0.041947797,-0.17787226,-0.053956058,-0.43905193,-0.05273241,0.05975072,-0.09318013,0.15464845,0.60503095,-0.50742096,-0.1481645,0.2876865,0.5318873,-0.31683886,-0.14129587,0.7644979,1.0164064,1.04515,0.022057258,1.0646174,-0.003102972,-0.09053353,0.1410127,-0.085989274,-0.5288691,0.2129058,0.3480194,-0.22189723,0.1628736,0.13115194,0.06457686,0.33167845,-0.3229316,0.025990317,-0.03523055,0.17808525,-0.048746154,-0.2191334,-0.39067957,-0.49092534,-0.13506004,0.13254626,-0.06909853,0.37086588,-0.18944247,0.2953419,0.14477171,1.5234852,-0.0945251,0.0935585,0.10296957,0.5033897,0.2715458,-0.22055103,-0.06780012,0.25854543,0.16714028,0.17039111,-0.46568683,-0.0006757791,-0.097487524,-0.56689626,-0.17285186,-0.3284937,-0.15751457,-0.17981383,-0.43025643,-0.2623939,-0.14824107,-0.4708279,0.5283286,-2.6124842,-0.24446979,-0.014215559,0.3296344,-0.22136602,-0.52538496,-0.1629731,-0.38576004,0.42991924,0.18551174,0.50673574,-0.6662168,0.46648118,0.60940975,-0.5801367,-0.23717,-0.58405066,-0.129403,-0.067530885,0.21670991,0.055257943,-0.17300175,0.0036066954,0.07356303,0.68371403,-0.06723995,0.23757014,0.3378326,0.24307063,-0.14407101,0.5269074,-0.025693692,0.5260905,-0.27180177,-0.2832418,0.32011223,-0.4031629,0.25226864,-0.0930357,0.03327091,0.4676062,-0.57233745,-0.9920308,-0.6968208,-0.22511172,1.162732,-0.22056805,-0.30302683,0.28274363,-0.38935786,-0.33412635,-0.0681789,0.55704063,-0.0907947,0.030319352,-0.6257334,0.06888847,-0.1375292,0.19579762,-0.0077340933,-0.059069753,-0.5503341,0.8023259,-0.005827849,0.6042362,0.3007965,0.1338058,-0.61637247,-0.40352264,-0.014881547,1.2327157,0.47346812,0.21567108,-0.25623372,-0.21188071,-0.54796803,-0.023230039,0.18808328,0.5377646,0.6565557,-0.11744415,0.15734753,0.33369583,0.090666756,0.03411854,-0.14904208,-0.26303595,-0.10074114,0.26429752,0.66990155,0.5921736,-0.121807024,0.3404735,-0.053200927,0.24527581,-0.3064651,-0.5645004,0.41265073,1.0490806,-0.12924841,-0.17771414,0.8515917,0.56899637,-0.07060128,0.49884275,-0.51452416,-0.45982215,0.30488414,-0.10577244,-0.29303277,0.1790969,-0.38088834,0.029024573,-0.83525634,0.2188905,-0.373043,-0.61050075,-0.4429499,-0.057714507,-3.1641703,0.2774764,-0.15891376,-0.058176097,-0.09819314,-0.2898543,0.2198054,-0.64791447,-0.49448013,0.001963166,0.19695957,0.75523466,-0.13496915,0.040328067,-0.17447196,-0.47602066,-0.26277506,0.22040984,-0.07628934,0.29418927,0.046379052,-0.4075519,-0.10897764,-0.0498041,-0.4510432,0.06777349,-0.57786983,-0.50933945,-0.13956627,-0.49994665,-0.36473733,0.72260374,-0.4313183,0.11422823,-0.21705921,-0.15307607,-0.009912381,0.2515834,-0.06281029,0.014748862,0.020857783,-0.10725172,-0.11173828,-0.23094834,0.14802745,-0.0056335856,0.31836542,0.42702627,-0.2834205,0.158128,0.61639553,0.6414331,-0.27407634,1.0200818,0.3792813,-0.1381105,0.33122414,-0.09006017,-0.25180423,-0.5807387,-0.24666229,-0.14117494,-0.44421747,-0.26269227,0.06834774,-0.28810507,-0.8355774,0.6079591,0.09521464,0.08209905,-0.07420668,0.35818836,0.39169824,-0.15832075,-0.16629232,-0.20185448,-0.20088148,-0.47190526,-0.32465586,-0.5965467,-0.37043682,0.15506504,1.1559024,-0.41125697,0.04611918,0.21790287,0.08883098,-0.05585154,0.12742773,0.07638817,0.022291243,0.3923874,-0.06503873,-0.50473446,0.35798484,-0.07513886,-0.107679844,-0.30276513,0.31106818,0.65359086,-0.6666318,0.48529613,0.27964827,0.064441375,-0.1380611,-0.66618866,-0.07999261,-0.0983895,-0.27099675,0.5540639,0.38582215,-0.942929,0.4376367,0.31197688,-0.18711184,-0.76246345,0.5192759,-0.12138247,-0.1605881,-0.2664468,0.41796783,0.25089902,0.16166005,-0.10656473,0.28621918,-0.5002358,0.2984992,0.19473876,-0.11804784,0.24224915,-0.26518485,-0.027043076,-0.76644295,0.04174467,-0.4323994,-0.5025128,0.20081595,0.08918156,-0.12256555,0.4600191,0.044840768,0.36153856,-0.34675047,0.14147197,-0.009908771,-0.2321423,0.4112693,0.42890522,0.5845938,-0.35464376,0.52061176,0.09317577,-0.037702266,-0.32936653,-0.05472041,0.34735262,-0.07214646,0.44623485,-0.044106185,-0.1976493,0.33468226,0.7383512,0.1705171,0.3029023,0.03543155,0.06525307,0.06017447,0.07238125,0.2645375,0.05765664,-0.6383777,0.11032307,-0.26074713,0.19435832,0.63539577,0.2448872,0.21515721,-0.06822895,-0.10521196,-0.031069107,0.2331581,-0.16308719,-1.3832968,0.32911697,0.13779607,0.70628536,0.75608826,0.040553708,-0.01521161,0.62627465,-0.22375521,0.16911784,0.24937366,0.06651611,-0.3765822,0.5969889,-0.7935969,0.45121786,-0.028174158,0.024526192,-0.09905301,-0.17375126,0.4902131,0.83376706,-0.04943786,0.050288443,0.011234677,-0.32325986,0.032021802,-0.42833847,0.06983964,-0.54380643,-0.1665117,0.8513601,0.36290786,0.4263594,-0.14795192,-0.053308163,0.07985198,-0.1898451,0.10638012,-0.034260187,0.1288577,-0.065272614,-0.46308178,0.0013449123,0.65820515,-0.025128864,0.17842586,0.14160404,-0.26710555,0.25257486,-0.0473786,-0.087308176,-0.045203403,-0.6482799,-0.036513373,-0.44438392,-0.2494484,0.46109167,-0.1774602,0.046913944,0.29451862,0.07294308,-0.06306647,0.42001274,0.30984354,0.44646052,0.09973162,-0.032836527,-0.1224596,0.37460503,-0.04162085,-0.21655084,-0.11655978,-0.13961302,0.13354096,-0.7688906,0.2431643,0.012865126,-0.3960969,0.09621574,0.018070672,-0.009114066,0.38341168,-0.08394078,-0.13650346,-0.10660766,-0.24363644,-0.13657176,-0.31484875,-0.14027971,0.36806998,0.07815453,-0.03958187,-0.009204123,-0.16414389,0.0068651163,0.20643273,0.03646621,0.34161294,0.25263983,0.059123747,-0.34655255,0.17930737,0.03740882,0.4766514,-0.20334522,0.0821495,-0.25014803,-0.174971,-0.38101193,0.029632183,-0.09648883,0.3293862,0.071667105,-0.12487991,0.9132395,0.0016145065,1.1526955,0.02712991,-0.3895602,0.065968364,0.36867613,-0.09824991,-0.045331523,-0.27083367,1.090654,0.48978442,-0.12627871,-0.16771907,-0.36978754,-0.15669648,0.2055603,-0.20503047,-0.2742339,0.07859205,-0.68393517,-0.21439545,0.21757618,0.22743784,0.11310367,-0.14643973,0.049063973,0.42978242,0.06742854,0.21327035,-0.5031929,-0.038239975,0.39195457,0.32427377,0.037340414,0.06635017,-0.47398156,0.36873466,-0.7181642,0.22559126,-0.1179024,0.19957127,-0.35985392,-0.281395,0.3219846,0.17189291,0.31442624,-0.20279922,-0.41045573,-0.15156385,0.60312015,-0.0770233,0.13086484,0.6259609,-0.35317868,0.050348744,-0.105565324,0.35699508,1.0816208,-0.1734897,-0.1820263,0.31759992,-0.3581249,-0.5903243,0.32548255,-0.28927648,0.080475286,0.09224352,-0.3210365,-0.35197705,0.2811021,0.24240865,0.2525509,0.17065272,-0.70697916,-0.069482476,0.17611727,-0.36191928,-0.15053734,-0.19479983,0.095498964,0.638114,-0.25625932,-0.40366474,0.11298116,0.20517462,-0.27789566,-0.5786656,-0.14222048,-0.28325772,0.20546411,0.13186105,-0.39402983,-0.04093601,0.114953525,-0.47144347,-0.107679404,0.26357508,-0.16640654,0.20168826,-0.56655794,0.07798689,1.004516,-0.13846707,0.23216102,-0.3214783,-0.61221564,-0.7197778,-0.28240588,0.38577893,0.14089498,-0.06821175,-0.6075226,-0.104229435,-0.24370201,-0.26458842,0.04035946,-0.22963649,0.4709904,0.1725754,0.24916665,-0.05534269,-0.71297866,0.28269002,0.19665088,0.049716953,-0.5378162,0.36864325,-0.10219024,1.02689,0.16483314,-0.06756039,0.35447514,-0.71244514,0.06884758,-0.13936229,-0.02020696,-0.58844334,-0.074637584,272 -641,0.30193943,0.070681915,-0.45363492,-0.36278817,-0.30096075,0.18913668,-0.18090479,0.30117488,0.14996666,-0.15977095,0.118453965,0.047754347,-0.19703425,0.39082348,-0.15203169,-0.9110641,0.114691846,0.028660635,-0.49711168,0.34931025,-0.49813592,0.5183052,-0.01305846,0.4257655,-0.08864086,0.35111222,0.26110083,0.027128192,0.29379866,-0.32836157,-0.31043684,0.07009005,-0.5013925,0.11599808,-0.06759015,-0.29867235,0.089268245,-0.19823827,-0.17941009,-0.7181286,0.432388,-0.5827997,0.56862724,-0.067391515,-0.49105164,0.2769553,0.19784036,0.21870235,-0.33260602,0.07444603,0.1667738,-0.24233715,0.075299725,-0.12566891,-0.3744168,-0.47164267,-0.606402,-0.099402465,-0.7475266,-0.20378764,-0.27913117,0.16778024,-0.39819482,0.074897215,-0.008462525,0.3671343,-0.2920595,-0.07909191,0.17264369,-0.1495191,0.23000585,-0.4480676,-0.03921298,-0.06156884,0.16948973,0.08280864,-0.042512067,0.336011,0.24808723,0.5367038,-0.010694974,-0.30404168,-0.084196076,-0.24819241,-0.1568273,0.49016824,-0.15243897,-0.18801025,-0.21018934,-0.14846009,0.26604956,0.21474078,-0.009851052,-0.07689759,-0.008000573,0.012752693,-0.2833861,0.40606353,0.3994813,-0.43999106,-0.12997712,0.40431464,0.37526864,-0.00068119395,-0.36646432,0.2297475,-0.054885413,-0.38670352,-0.211378,-0.10743973,-0.2496917,0.48809606,-0.10954774,0.23157085,0.77829635,-0.13465269,0.064831346,-0.14903575,-0.16599578,0.13280879,-0.15412036,-0.23251727,0.07531692,-0.5018643,0.057090815,-0.37228605,0.83054703,0.11804463,-0.7367468,0.3678591,-0.3527816,0.01860014,-0.11391857,0.6097039,0.7242241,0.5010783,0.14072062,0.86400926,-0.6545854,-0.03805153,0.020856949,-0.17658125,0.045179155,0.002565918,0.1364657,-0.5450487,0.0298831,0.20287003,0.1338487,0.084644556,0.26623333,-0.36308292,-0.099306695,0.096385635,0.71726793,-0.39121917,-0.083438486,0.6584337,1.1607242,0.951464,-0.09050064,1.0055194,0.14969212,-0.15378097,-0.12614773,-0.17733742,-0.33369178,0.1317508,0.28492802,0.31787494,0.3400647,0.047064397,0.080162436,0.39703926,-0.25978816,-0.09395116,0.16580932,0.31499892,-0.049189884,-0.11456072,-0.43986067,-0.27727133,0.3899616,0.043298896,0.2943583,0.27368766,-0.2995415,0.4619796,0.12282073,1.2000684,0.15700696,0.13366663,0.04865208,0.50955224,0.230036,0.038424887,-0.11847346,0.31348976,0.25110638,-0.03962668,-0.67126304,0.032819264,-0.28566682,-0.21108405,-0.12994441,-0.43997672,-0.19518264,-0.117658906,-0.39450726,-0.1450642,0.13523611,-0.4585404,0.3122969,-2.5352685,-0.22172847,-0.17813578,0.230385,-0.15679096,-0.25029275,-0.08774269,-0.43662596,0.4359744,0.38900504,0.21764429,-0.6032783,0.5466093,0.4192907,-0.26641542,-0.078959554,-0.43845,-0.23093185,-0.09467761,0.3261492,0.16607295,-0.15709797,-0.36901098,0.65805125,0.69872963,0.26501295,-0.09515424,0.14308667,0.45193335,-0.18038893,0.64494514,0.16175106,0.5393871,-0.08820311,0.014328282,0.33156782,-0.5872929,0.19553953,-0.0955551,0.20527492,0.3561422,-0.43395835,-0.7824688,-0.56913495,-0.26073667,1.470804,-0.3731349,-0.2898656,0.34269044,-0.13565257,-0.3276013,0.035500463,0.550841,-0.18843684,0.030570824,-0.5464297,0.04073781,-0.09693727,0.25472534,-0.00024393603,0.046708934,-0.40605396,0.6641705,-0.16865756,0.5966034,0.12556699,0.1258448,-0.1486277,-0.36367908,-0.029181276,0.87081,0.5021516,0.06656659,-0.22284484,-0.13013537,-0.20286168,-0.16771755,0.07658631,0.5812753,0.8192557,-0.0055493545,0.023105515,0.27606803,-0.22946122,0.064779304,-0.08258111,-0.3876764,-0.04315079,0.007089367,0.61650264,0.6363986,-0.12328716,0.22207054,-0.0011590972,0.32426694,-0.23912455,-0.51122546,0.46319833,0.8080568,-0.14698221,-0.16801503,0.6487537,0.34633556,-0.28115362,0.3806391,-0.629722,-0.35105243,0.7654115,-0.07504416,-0.45002812,0.085099034,-0.3133394,-0.06797424,-0.8161891,0.18015902,-0.25430256,-0.65473723,-0.35454193,-0.23266433,-3.9505105,0.11151809,-0.14354768,-0.08385585,-0.20393485,-0.07532589,0.41455644,-0.51621425,-0.57259315,0.06352718,0.042829156,0.5580035,-0.010226468,0.14561103,-0.2929274,-0.37721312,-0.28215784,0.26565412,0.007209792,0.21980515,-0.008473341,-0.3248958,0.07513514,-0.34142417,-0.6218305,0.03883136,-0.39060622,-0.48257545,-0.02938473,-0.46521336,-0.18177494,0.7936433,-0.2220667,0.10920481,-0.24955137,-0.09529552,-0.19165413,0.2161702,0.20145522,0.13599804,0.036295846,-0.013824358,0.03495137,-0.41771406,0.16951045,0.13989817,0.4702562,0.09751844,-0.06126606,0.0014381271,0.5911782,0.44380504,0.10724975,0.76914525,0.00726632,-0.082577385,0.37190995,-0.34901348,-0.41311556,-0.60918146,-0.28422153,-0.11713299,-0.39188465,-0.2770659,-0.17032975,-0.39241248,-0.76008356,0.29763037,0.00062156643,0.09991613,-0.25228915,0.41572952,0.25673887,-0.071856186,0.04893495,-0.024642872,-0.20130979,-0.46454617,-0.21766177,-0.74323654,-0.4755877,0.17252673,0.9328179,-0.17603295,-0.014389799,-0.038711015,-0.22246,0.18283412,0.02076601,0.5136848,0.19376078,0.3174164,-0.030958371,-0.76130223,0.32546982,-0.2939641,0.0065243747,-0.7160467,-0.09311623,0.71422833,-0.5595798,0.48061615,0.377885,0.16058405,0.107202545,-0.6879494,-0.10558653,0.12635945,-0.22408962,0.5351479,0.101442926,-0.6740512,0.51604646,0.07261863,0.020563675,-0.50260633,0.44755694,-0.16698135,-0.4232634,-0.006410467,0.44133362,0.100479074,-0.124058716,0.08572081,0.14587873,-0.4179943,0.19928893,0.3186056,0.07895123,0.5245956,-0.03373923,-0.1329405,-0.5711097,-0.165301,-0.6397407,-0.33191493,-0.112307325,0.005471963,0.023359917,0.15386017,-0.1157475,0.33475882,-0.301671,0.26657307,-0.010346811,-0.24394812,0.5656821,0.512253,0.36507416,-0.35620907,0.6469611,0.12811533,0.15646222,-0.08487243,-0.083198234,0.5610419,0.115606114,0.33697316,-0.022871124,-0.13441609,0.20376277,0.5631753,0.24150603,0.27947325,0.15000376,-0.13740028,0.2949359,0.14288668,-0.04058844,0.10792719,-0.3665822,-0.18774417,-0.035464026,0.0010852492,0.54545623,0.118008345,0.2962228,-0.028702516,-0.16942789,0.2202356,0.12091883,-0.40847364,-1.2644832,0.2824323,0.24686843,0.6764361,0.40801144,0.15927427,-0.020665146,0.46519846,-0.24087271,0.038772263,0.38291213,0.16973282,-0.3051082,0.6619666,-0.5064031,0.4908772,0.035401862,0.0011362239,0.088318124,0.1234971,0.3482192,0.9581051,-0.14327136,0.014569833,0.1721112,-0.33641914,0.1011904,-0.42797711,-0.0044400278,-0.38888487,-0.26353246,0.37879783,0.29092288,0.2585754,-0.29852325,-0.04106255,0.029284324,-0.21367337,-0.07306031,-0.22790597,-0.10157757,-0.21099883,-0.41731665,-0.35467726,0.3930628,0.19779849,0.07678355,0.11187211,-0.19226672,0.29959893,0.12370724,-0.04799554,0.033713505,-0.57374805,0.020739555,-0.30110237,-0.49140579,0.39141566,-0.44886458,0.22098412,0.18212599,-0.038185302,-0.21208793,0.0038842421,0.29532242,0.5407951,0.074851386,-0.28893045,-0.25985685,-0.12581228,0.07694293,-0.4369,-0.04816445,-0.43216354,0.16165787,-0.5079521,0.30116084,-0.2856533,-0.13592206,-0.1395836,-0.3227592,-0.0071846372,0.21349558,-0.26905343,-0.006558543,-0.036773387,0.074274585,-0.17736119,-0.1983428,-0.3657155,0.18226497,-0.16335875,-0.14207377,0.09069984,-0.12939246,-0.13859199,0.33924797,0.11999257,0.24070646,0.2825213,-0.122985125,-0.28003186,-0.083223544,-0.08969806,0.28958967,0.055764236,-0.069523335,-0.2763073,-0.4518998,-0.18145591,0.57626253,-0.22239414,0.13163307,0.05777985,-0.2634763,0.71748555,0.19464476,1.0226415,-0.055981535,-0.27823207,0.034402754,0.6979142,0.18576217,0.112123914,-0.14798845,0.8802377,0.4349712,-0.26729617,-0.35029247,-0.38676813,-0.06825267,0.19953135,-0.33608225,-0.28089485,-0.16192338,-0.7194328,-0.21496648,0.24536732,0.19101503,0.13870002,0.019669423,-0.0062749684,0.061517082,0.19456203,0.5636102,-0.45164067,-0.017967489,0.3828888,-0.063192286,0.06614513,0.18391599,-0.38266796,0.35787535,-0.67271614,0.1147111,-0.43227783,-0.009991209,-0.03174082,-0.27584037,0.23311716,0.10660544,0.15456685,-0.25921515,-0.22989413,-0.13848393,0.44054917,0.28133604,0.32531214,0.5772712,-0.16248776,-0.049993798,0.14586058,0.53768307,1.2523268,0.057453588,0.07611914,0.12707087,-0.44833902,-0.57203466,-0.14266032,-0.3455377,0.06501568,-0.06346577,-0.4159516,-0.32914135,0.21218723,0.006081265,0.008130083,0.29711285,-0.43048513,-0.4547213,0.3044988,-0.30925056,-0.2723965,-0.23588559,0.20764428,0.6015974,-0.26775518,-0.15627295,-0.15248945,0.4296065,-0.18678178,-0.7962792,0.07954048,-0.23982957,0.4196843,0.13416891,-0.32402223,0.04556124,0.32304323,-0.44871888,0.28358924,0.430153,-0.44245687,0.02633357,-0.21539053,-0.040649455,0.83629286,-0.014067664,-0.0027958613,-0.64911497,-0.47838905,-0.8063867,-0.42654154,0.25274938,0.16032098,-0.11136301,-0.5041857,-0.15886119,-0.29431862,0.15801205,0.079014026,-0.3745791,0.2154337,0.25288746,0.4457956,-0.041792136,-0.96326196,0.022119092,0.13086532,-0.33869538,-0.5689442,0.66492075,-0.23815268,0.56606543,0.07879484,0.001290452,0.07026526,-0.47081673,0.4852678,-0.33257088,-0.16332196,-0.5144724,0.13969971,275 -642,0.52070415,-0.0655786,-0.53350294,-0.3629255,-0.28516334,0.004829384,-0.2915905,0.48549446,0.33400017,-0.2915897,-0.033658195,-0.06376381,0.08457661,0.35975912,-0.19240959,-0.7688421,0.18576291,0.027687248,-0.45281935,0.32380268,-0.533924,0.2533892,-0.07226106,0.5557346,0.124541275,0.21725042,0.16805845,0.05707741,0.016262898,-0.10289644,-0.11079005,0.20779954,-0.450803,0.059586473,-0.1408751,-0.3791834,-0.12457189,-0.6139983,-0.30479938,-0.7108605,0.4381201,-0.944457,0.518042,0.014104479,-0.43471014,-0.029846784,0.10477241,0.21906564,-0.30448788,0.017746128,0.16838518,-0.05969043,0.05271158,-0.0520681,-0.39539158,-0.53938377,-0.5373522,-0.04949818,-0.39367566,-0.11176216,-0.1731411,0.14248808,-0.27360418,0.11427668,-0.11375295,0.283548,-0.38994408,0.13944,0.3314746,-0.23336044,0.3258229,-0.39452076,-0.171479,-0.14581896,0.12300294,-0.1521486,-0.33744657,0.24074763,0.45039734,0.45534912,-0.11172022,-0.13715893,-0.1434138,-0.07435065,-0.023661284,0.54083055,-0.17296599,-0.44808608,-0.27255142,-0.08544663,0.47198117,0.3620242,0.124830484,-0.303151,-0.062772766,-0.0439449,-0.25779918,0.41458356,0.57675135,-0.22542554,0.016385445,0.23923896,0.11461711,0.2110394,-0.31114167,0.25241834,0.023414103,-0.6343314,-0.20380595,0.062007073,-0.018132769,0.64146084,-0.20007707,0.31058094,0.8146448,-0.04987899,0.090318255,0.003353889,-0.03440969,-0.21750389,-0.34687635,-0.23653457,0.19353603,-0.5359468,0.22132967,-0.20763633,0.6906093,0.22128065,-0.8389294,0.26552957,-0.49716923,0.061795056,-0.2728588,0.46465027,0.7506341,0.3057151,0.22890833,0.8666976,-0.55015653,0.0020582927,0.18689093,-0.3776531,0.11778737,-0.05900442,0.1438454,-0.49243176,0.0149521,0.3016537,0.022269057,0.2980102,0.35051024,-0.36684415,-0.13928145,-0.033294223,0.58998907,-0.37173927,-0.07173562,0.90415,1.1094193,0.9759419,0.2514907,1.4036181,0.25194532,0.06410829,0.12713057,0.10040493,-0.7559621,0.27278298,0.34855753,-0.15832523,0.31007868,0.037758388,-0.095304064,0.29114878,-0.15623012,-0.1150212,0.06248353,0.17127301,0.03103033,-0.192658,-0.45579916,-0.3691159,0.052072305,0.13973221,-0.021394338,0.22168042,-0.18628594,0.45935282,0.0803167,1.1301283,0.11896922,0.019525928,0.08688529,0.45407695,0.30330208,-0.15123743,-0.003390404,0.33400604,0.4102759,0.023848873,-0.5393436,-0.047655124,-0.23567723,-0.4340364,-0.14443508,-0.46667963,-0.19486769,-0.13976176,-0.41289192,-0.13623287,-0.046453707,-0.27244616,0.49542385,-2.6045823,-0.27072096,-0.28700837,0.37764776,-0.08038844,-0.22856101,-0.25883907,-0.35646528,0.36145777,0.48243946,0.38291675,-0.6642462,0.20008478,0.4162962,-0.39981124,-0.025298063,-0.72486234,-0.016245283,0.05832263,0.12600623,-0.031312607,-0.04134782,-0.0035862648,0.44220832,0.6746777,0.26787683,0.056488745,0.15402333,0.6074102,-0.060541015,0.44074866,-0.18127841,0.499293,-0.23069048,-0.10096991,0.16280511,-0.553943,0.3082443,0.08838688,0.2031483,0.50972486,-0.5632901,-0.89066434,-0.6607644,-0.35461363,1.2730033,-0.35324267,-0.3520512,0.32046348,-0.31926617,-0.357893,0.00034903103,0.6988631,-0.14556974,0.024810953,-0.7531987,-0.04516939,-0.14004105,0.09452196,-0.12636988,0.09250377,-0.20940205,0.6389631,-0.03929604,0.5445879,0.2750603,-0.060760442,-0.17682719,-0.5661256,0.026724437,0.6301385,0.42516702,0.17365351,-0.25570932,-0.01967145,-0.3660649,-0.1534461,0.18108211,0.5977086,0.7337833,-0.08581262,0.12698203,0.26396784,0.052909262,0.0140061425,-0.06731792,-0.25876853,-0.05070734,-0.042349238,0.6568934,0.8173749,-0.28827035,0.08906534,-0.19507772,0.30021903,-0.24810754,-0.45859057,0.4686336,0.8215122,-0.16494992,-0.20760764,0.43184245,0.48711485,-0.45638937,0.42965883,-0.47882476,-0.28318658,0.5701366,0.044367008,-0.4304443,0.17866786,-0.42908776,0.102678485,-0.8746029,0.29684895,-0.07720094,-0.6567535,-0.40204427,-0.21711022,-3.7670135,0.32254773,-0.11220991,-0.24880594,-0.35998207,-0.28252766,0.34999365,-0.47285625,-0.72848916,0.1116031,0.023985185,0.67000043,-0.13143604,0.21311869,-0.32879683,-0.13436005,-0.47650433,0.081642516,0.07575432,0.41854975,0.028575016,-0.226478,-0.09409742,-0.14395243,-0.56183624,-0.05772653,-0.6074788,-0.52549845,-0.035475694,-0.4211419,-0.1721263,0.71783984,-0.30112666,-0.030833466,-0.18008186,-0.13889788,-0.32467794,0.36238772,0.16225569,0.016635804,-0.104946285,0.17429723,-0.06708045,-0.18291743,0.29430187,0.03352531,0.2599705,0.1952443,-0.24296334,0.26740116,0.582251,0.5688435,-0.041986145,0.84169775,0.1433716,0.07686801,0.37857988,-0.22148173,-0.36421072,-0.49636263,-0.25462288,-0.15054895,-0.42401668,-0.3619538,-0.11704744,-0.35230318,-0.8054809,0.3033418,0.045688484,0.13810423,-0.12606731,0.113563724,0.3114597,-0.15846325,0.08071894,0.01738109,-0.18897992,-0.47567877,-0.27910936,-0.6170524,-0.4423189,0.18228103,1.0315483,0.01703896,-0.035126273,0.041057423,-0.3757809,0.025017908,0.053513046,0.2262349,0.0714206,0.3035411,-0.14273068,-0.69135326,0.36959934,-0.27967766,-0.21463369,-0.6741226,-0.13208306,0.82310283,-0.61398417,0.5731734,0.47445023,0.18092325,-0.022849688,-0.6573187,-0.23996077,-0.082530946,-0.21427602,0.5216982,0.26475817,-0.62087893,0.46335787,0.20869002,0.08257945,-0.52764684,0.6750527,-0.035800792,-0.030720444,0.06147889,0.31540298,0.043437406,-0.14145438,-0.0076776925,0.34748587,-0.44124264,0.25465816,0.33301866,0.17636098,0.47636122,0.15014863,0.046418622,-0.6153527,-0.15827553,-0.5411759,-0.22089785,0.040955763,-0.06704023,0.21100834,0.02253681,0.0025289059,0.28757524,-0.45994323,0.20703155,-0.17558318,-0.30489105,0.43441552,0.51159877,0.47967482,-0.43961674,0.7279393,0.098865904,0.07389788,0.055921335,0.06724205,0.39722478,0.22193164,0.407857,-0.06419944,-0.18922496,-0.06717538,0.7125402,0.13323382,0.31564507,0.27549368,-0.0771277,0.30595472,0.26476848,0.24475336,0.02048531,-0.34993613,-0.095205575,-0.31086105,0.21840522,0.4541368,0.13391879,0.21131001,-0.03745347,-0.30387354,0.0804719,0.11624265,-0.070126764,-1.477752,0.419491,0.32772538,0.58505285,0.42703635,-0.06190697,-0.10008895,0.4804807,-0.09265811,0.12762177,0.4425321,0.20125414,-0.49608934,0.51754546,-0.44295403,0.4093467,-0.17210084,0.008385392,0.04943084,0.22026491,0.46664846,0.80901533,-0.01495376,0.062924065,0.12671468,-0.49035153,0.14504395,-0.5976485,-0.14301051,-0.45225498,-0.25445905,0.7156662,0.4624494,0.26287997,-0.32099152,0.0028240085,0.06441911,-0.09392312,-0.0709194,-0.069640115,-0.07239577,-0.18554547,-0.7921986,-0.28301385,0.54564327,0.0810371,0.041748002,0.036163215,-0.4019333,0.23769388,-0.09080967,0.114953026,-0.08842479,-0.7575753,-0.18709454,-0.46632844,-0.5835154,0.37655446,-0.4047867,0.23502082,0.290327,-0.0039951284,-0.1513558,0.1697986,0.053157944,0.8668225,-0.121270455,-0.27169263,-0.3480562,-0.070427254,0.4187062,-0.36761364,-0.22639774,-0.40299994,0.13615492,-0.411981,0.421807,-0.12258467,-0.18815543,0.1402188,-0.07504703,0.1279442,0.29471233,-0.419838,-0.14333938,0.13193703,-0.019071983,-0.2602684,-0.04386787,-0.36169192,0.31557643,0.16829793,-0.1145769,0.0079069,-0.048034254,-0.0032826113,0.23647195,0.047447227,0.34425977,0.42867282,0.09705083,-0.1901258,-0.017798148,-0.06712636,0.55951744,0.13178164,-0.15906286,-0.333005,-0.44207904,-0.22327684,0.347076,-0.12579928,0.21282199,0.1412176,-0.22263974,0.67237663,0.086199924,0.95031637,0.026363032,-0.4587954,0.033890724,0.39082286,0.035899326,-0.042901166,-0.18003082,0.8157214,0.4721101,-0.3185169,-0.18431924,-0.3340855,-0.010783257,0.16117981,-0.24910952,-0.25985977,-0.08619071,-0.8011743,-0.08792515,0.124421544,0.13891198,0.18973152,-0.08894908,0.10343843,0.11612462,0.048312314,0.38707623,-0.56485695,-0.05816279,0.12920438,0.2714686,0.15631205,0.047191355,-0.3429709,0.33480608,-0.702204,0.05359237,-0.5239128,0.15828635,-0.07968329,-0.349998,0.07599049,0.03978865,0.385406,-0.29182658,-0.21809545,-0.28271887,0.58247113,0.25064695,0.2978807,0.5160316,-0.13269068,-0.1980696,0.120111145,0.58221424,1.3364828,0.024707876,0.19076723,0.31326184,-0.42169425,-0.6279917,0.10720838,-0.5133956,0.28775424,0.072737165,-0.15091498,-0.43474352,0.23165125,0.1423004,0.14997014,0.15528764,-0.46913,-0.36283916,0.49945885,-0.2179166,-0.37885025,-0.43896464,0.17361487,0.52411723,-0.30834323,-0.2183864,0.06330102,0.19656856,-0.15276517,-0.57617193,0.18076184,-0.32347396,0.4225359,-0.020665947,-0.31883547,0.014192109,-0.039959185,-0.38753584,0.31342676,0.2195377,-0.31867245,0.12677428,-0.38517645,-0.24176484,0.9978268,-0.15399057,0.0743686,-0.8460999,-0.49266788,-0.80347854,-0.32785445,0.11872636,0.25529224,0.012375405,-0.46337363,-0.096494675,0.026869927,0.13279673,0.08524053,-0.3084849,0.52164924,0.07236807,0.60619736,0.0052044024,-0.9148639,0.07135351,-0.012836965,-0.35057515,-0.51282036,0.5452126,-0.06012667,0.70642304,0.1744315,0.024374459,0.108839154,-0.5220873,0.25986654,-0.30471,-0.11301964,-0.64480597,0.25844243,279 -643,0.38585696,-0.22826797,-0.3118259,-0.028173767,-0.36128557,-0.06341594,-0.22462751,0.37177643,0.053329192,-0.25322318,0.113442235,-0.23243767,-0.0747551,0.46217245,-0.055850826,-0.58142555,-0.0556983,0.21418765,-0.7720632,0.47095028,-0.47743994,0.31943735,-0.044569906,0.2337326,0.11522865,0.20669614,0.15195277,-0.06658156,0.08051782,-0.021297207,-0.16378628,0.08759861,-0.7238414,0.03293892,-0.07538373,-0.47269756,-0.0001305892,-0.40591204,-0.46051452,-0.6635672,0.42227536,-0.6385028,0.5440425,-0.016064541,-0.23915097,0.3838369,-0.014838344,0.41477197,-0.16254187,-0.060591143,0.31201226,0.08937312,0.09891576,-0.031067299,-0.06963369,-0.16117916,-0.5616241,0.20120867,-0.6550518,-0.3072772,-0.22755705,0.08620911,-0.2862003,0.08344467,-0.15996419,0.23177862,-0.4392076,-0.0003440655,0.2066204,0.047910087,0.39149398,-0.5368671,0.06110427,-0.0005637224,0.29049727,-0.32474282,-0.08344884,0.36747366,0.17415749,0.5349014,-0.12757236,-0.2337847,-0.22999078,0.05819691,-0.035377637,0.5790507,-0.21535493,-0.17879637,-0.21630232,0.06891166,0.072769456,0.047925882,0.013281242,-0.44289398,-0.15796882,0.011740474,-0.17481364,0.34852225,0.47567955,-0.33085153,-0.41219428,0.44145903,0.6142543,0.25640884,-0.016881568,0.07692206,0.095250055,-0.5999793,-0.1909993,0.06870634,-0.10692864,0.30779508,-0.09288403,0.27676222,0.5287254,-0.15000953,-0.00014780118,0.023539312,-0.09710283,0.08844945,-0.009228092,-0.13862415,0.122028835,-0.52586067,0.10863734,0.0063155983,0.69336754,0.26312354,-1.0324047,0.482663,-0.53464574,0.23886794,-0.21814886,0.5027022,0.85115784,0.29208195,0.10596656,0.66108704,-0.4003204,0.1672634,-0.017906679,-0.33975917,0.10304761,-0.2662551,-0.087527186,-0.636747,-0.24176253,-0.15784399,-0.09664365,0.11327824,0.35756794,-0.61447626,-0.005023663,0.058565255,0.85176057,-0.32116002,0.07201638,0.51521474,0.98029524,1.0519128,0.040070277,1.0615811,0.26499084,-0.26612785,0.43020284,-0.49504006,-0.7660283,0.1646482,0.3784278,0.18008439,0.35756442,0.063966155,-0.17575312,0.4127747,-0.21318339,0.14192517,-0.25406408,0.2232592,0.023463763,-0.0745122,-0.3364689,-0.2614149,-0.06842144,0.068476915,-0.19492912,0.26192573,-0.216503,0.16848649,-0.14832078,1.7551539,0.058807313,0.08901928,-0.0512659,0.50796026,0.16201332,-0.19618379,-0.3332078,0.12217785,0.36137456,0.18133554,-0.5461387,0.19314322,-0.21509251,-0.26280028,-0.21667616,-0.3147793,-0.009407144,0.022599759,-0.32723382,-0.124309935,0.07259009,-0.22771376,0.47563988,-2.7092996,-0.27337974,-0.036840964,0.28333658,-0.32073924,-0.27811965,-0.16395529,-0.48802802,0.39658806,0.43765905,0.5738473,-0.5172056,0.4205747,0.30336234,-0.4709272,-0.026895102,-0.54182607,-0.2574784,0.15639485,0.3121609,0.012172859,-0.08198082,0.1019494,0.31953257,0.31437236,-0.019473631,-0.13200404,0.27580982,0.3924568,0.215213,0.4225829,-0.18457787,0.41437656,-0.18110792,-0.15861845,0.37206113,-0.05605016,0.09797314,-0.13684556,0.026203077,0.37824932,-0.554183,-1.1066761,-0.62227523,-0.17110196,1.1228496,-0.085169144,-0.41157582,0.3623734,-0.20998643,-0.019750841,-0.114903346,0.21914893,0.003728087,-0.19710754,-0.74417603,0.18183804,-0.0003869992,0.27400473,0.11266388,-0.12009184,-0.4399025,0.5440095,-0.050673053,0.27643636,0.33667472,0.22120523,-0.053994242,-0.40767053,-0.0019238546,0.83366483,0.28768322,0.107301205,-0.25569585,-0.15782693,-0.35151953,-0.13720319,0.028869757,0.18998197,0.7646183,-0.0229565,0.11692445,0.25460657,0.024444746,0.03903342,-0.1457146,-0.38920718,-0.033482857,-0.13121557,0.57631916,0.45463058,-0.06836903,0.62828094,-0.022667289,-0.07089126,-0.037504423,-0.46080494,0.36015198,1.0308225,-0.095654234,-0.15053143,0.41906154,0.30323836,-0.25002593,0.46191108,-0.50357604,-0.20795393,0.4159319,-0.2641146,-0.35676634,0.21786682,-0.2863719,0.022345837,-0.7480104,0.35926837,-0.256918,-0.41635063,-0.41643965,-0.06521039,-3.3132145,0.32101753,-0.28557765,-0.12618777,0.046006925,0.027197931,0.053130455,-0.48669222,-0.43261644,0.13245577,0.030968208,0.71078897,-0.13796574,0.22076324,-0.13596264,-0.15387252,-0.5816707,0.06989597,0.12066985,0.37632772,0.04347592,-0.41016307,-0.035373643,-0.2739712,-0.43289095,0.05500467,-0.5366204,-0.4558819,-0.18217601,-0.54899573,-0.28215298,0.65322673,-0.063643344,-0.036545064,-0.3380537,-0.11279417,-0.04397194,0.39495194,0.06593116,0.15297712,0.108311705,-0.10341994,-0.20612127,-0.30644912,0.17357372,0.14990409,0.25746238,0.30298233,-0.024057636,0.18841259,0.72494423,0.6516092,-0.03110086,0.7488741,0.6283251,-0.2897131,0.24054003,-0.4219867,-0.03968419,-0.44421598,-0.32096216,-0.014955505,-0.33273312,-0.5247651,0.048426434,-0.3587425,-0.5589003,0.4123122,-0.24414675,0.20106679,0.14585368,0.17678039,0.386997,-0.17473032,0.059911866,-0.26089802,-0.041366894,-0.504021,-0.19582139,-0.64377797,-0.6196541,0.123155676,1.0708916,-0.27436325,-0.03343803,-0.0023098404,-0.17176083,0.019999009,-0.18927087,-0.039659288,0.48217303,0.05778877,-0.084468655,-0.84466565,0.41372606,-0.05747594,0.070933394,-0.6111567,0.11893476,0.5222231,-0.56207013,0.40061662,0.16009416,0.14381093,0.1579254,-0.4221103,-0.22002414,0.11400933,-0.27029032,0.35353664,-0.058539968,-0.73834795,0.53795606,0.4098185,-0.3814205,-0.7902063,0.44605148,0.13689524,-0.37779596,0.027323525,0.20078363,0.13047005,0.046881992,-0.23432504,0.20656028,-0.47323292,0.38661635,0.24191254,-0.0020760251,0.2487264,-0.12941232,-0.21209964,-0.44135284,0.13063493,-0.34684926,-0.19335444,0.1510161,0.16598687,0.066035345,0.17778006,0.23448262,0.5134559,-0.17792842,-0.023732327,-0.034984075,-0.27368662,0.24776171,0.3661661,0.44942024,-0.52858037,0.39287668,-0.08173181,-0.22699663,0.05396668,-0.02061433,0.41807762,0.0155507345,0.18544634,0.025992375,-0.21829888,0.18254271,0.82421345,0.061214678,0.3294017,-0.11299564,-0.19079638,0.24656034,0.16150907,0.17258194,0.13195273,-0.41303867,0.13852245,0.069542974,0.25390774,0.55867094,0.091492414,0.058185633,-0.16774672,-0.43139744,-0.07161217,0.11992944,-0.08248111,-1.0762902,0.29582813,0.18926011,0.7187191,0.5399166,0.072442845,0.11481195,0.6074966,-0.14415401,0.14063805,0.2818065,-0.23340549,-0.51652485,0.4103033,-0.80427814,0.45554936,0.00557148,-0.059303764,0.19795102,0.09730869,0.43542054,0.6336868,-0.2269027,0.061022997,-0.059578504,-0.36473292,0.10448758,-0.36757568,0.14213619,-0.48814788,-0.26921052,0.56371075,0.4265386,0.0018518636,-0.09105854,0.016386902,0.087876625,-0.12873934,0.20428218,-0.026590105,-0.026926903,-0.00236094,-0.6891434,-0.05748788,0.51825535,-0.040227547,0.060330693,-0.15773703,-0.08484332,0.21961817,-0.3451174,-0.07619403,-0.046945572,-0.7484216,0.10642259,-0.24206796,-0.1178433,0.40240467,0.090877295,0.2356326,0.24967256,0.07106553,-0.38852963,0.5472979,-0.057861824,0.61680263,-0.12307942,-0.07299944,-0.37924004,0.11224422,0.21509662,-0.12694168,-0.009361029,-0.07841914,-0.07546654,-0.45844942,0.51465935,0.041444607,-0.2996701,0.22987534,0.036758646,0.12364351,0.54881036,-0.16955763,-0.08504529,-0.25555217,-0.18550918,-0.283474,-0.08578674,-0.045446552,0.030943645,0.36041233,-0.20686539,-0.09614631,-0.18075283,-0.13917543,0.7312647,0.016923595,0.468876,0.1911597,0.24332125,-0.39005846,-0.09400452,0.20430698,0.4054887,-0.12302829,0.053053934,-0.31453174,-0.2302807,-0.3006863,0.15770207,-0.117779806,0.23500241,0.0075456477,-0.3092759,0.59118396,0.05917041,1.2184913,0.029727807,-0.09250657,0.14971565,0.40458503,0.03353287,-0.061072662,-0.57892036,0.70474064,0.6626462,0.07088883,-0.118972294,-0.32776773,-0.28810984,0.16001275,-0.2102932,-0.09305541,0.044171922,-0.4534859,-0.3626711,0.24810195,0.19952084,0.05080194,-0.053459898,-0.00774964,0.2446309,0.03917716,-0.026044901,-0.4436873,-0.24921252,0.30812597,0.31806183,0.055447817,0.08807458,-0.5337459,0.30817306,-0.45160607,0.18583933,-0.12291881,0.1141282,-0.1021676,-0.18268625,0.15887429,0.26940653,0.34365308,-0.015046761,-0.45949432,-0.20850655,0.49986377,0.1275668,0.20045565,0.62106365,-0.24582323,0.06251355,-0.07089352,0.35012877,0.92948955,-0.27944046,-0.123533994,0.3683148,0.012060793,-0.56818855,0.386734,-0.15791391,0.049448133,-0.0052115778,-0.11851183,-0.53226954,0.25745958,0.13898028,0.045854192,-0.025016535,-0.52652013,-0.21318044,0.23337461,-0.24148735,-0.28859347,-0.5349714,0.16887243,0.6970284,-0.35457537,-0.11489635,0.26584083,0.30763647,-0.21379226,-0.4610661,0.00093893363,-0.3410384,0.16719213,0.09364842,-0.30065295,-0.16309184,0.2315672,-0.33397844,0.1751036,0.21535228,-0.3670987,0.046858825,-0.06702693,-0.02785799,1.0540801,-0.4060299,-0.049488008,-0.54417664,-0.58856356,-0.85271984,-0.3135957,0.55018437,0.28751945,-0.01108806,-0.57367355,-0.1109033,0.010939741,-0.23168564,0.08343828,-0.35750368,0.33914438,-0.07508458,0.33296835,-0.26275316,-0.696756,0.13188836,0.13260631,-0.3118592,-0.522019,0.54037774,0.065791614,0.79123527,-0.043067355,0.055584233,0.2241556,-0.23288804,-0.030876756,-0.3447697,-0.25684935,-0.68849933,0.013150591,280 -644,0.41679922,-0.10556196,-0.40549347,-0.33600396,-0.24952592,0.10923029,-0.23173568,0.31091645,0.2164488,-0.30431095,-0.091544874,0.081840195,0.098155424,0.25327766,-0.35439822,-0.74735534,0.107077725,-0.0041444483,-0.5206306,0.5304234,-0.58733296,0.31704184,0.118470676,0.45076182,0.062067527,0.2495411,0.22263148,0.06389332,-0.24005276,-0.28441164,-0.105774745,0.06380252,-0.6535398,0.20448242,-0.31753665,-0.29994255,0.01823232,-0.5210822,-0.36888748,-0.7209853,0.35507792,-0.84247214,0.53623706,-0.047821898,-0.49253595,-0.12451163,0.2321385,0.15635589,-0.23526412,0.00094577443,0.11028235,-0.2117316,0.03639456,-0.19055429,-0.20628038,-0.5936153,-0.51948285,-0.030041877,-0.674542,-0.029653035,-0.2401151,0.2595691,-0.2822556,-0.047508277,-0.061876934,0.32232362,-0.41073868,0.038677294,0.13058208,-0.29806247,0.22421195,-0.43777162,-0.22013062,-0.062192526,0.23524478,0.07962458,-0.30848324,0.42394182,0.3140682,0.5030226,-0.016548593,-0.26111138,-0.027434042,-0.063043356,-0.028562518,0.52798563,-0.079868995,-0.58457536,-0.32449597,-0.19562949,0.5566977,0.20594451,0.12557855,-0.24002682,0.03764132,0.014142628,-0.29129133,0.549248,0.6788022,-0.15772706,0.06382491,0.27339086,0.23657614,0.15875028,-0.28928488,0.18815301,-0.017684413,-0.51553565,-0.19237518,0.065754816,-0.019671198,0.8239752,-0.22023922,0.32165405,0.8010711,-0.1418531,0.0057653463,0.19052744,-0.08731323,-0.13767084,-0.034431413,-0.2033063,0.17548952,-0.5718159,-0.15326624,-0.40641075,0.6423343,0.13396317,-0.7168925,0.33369544,-0.48092005,0.047898557,-0.09308175,0.5735975,0.63944024,0.580495,0.34971634,0.786788,-0.44174388,-0.06533839,0.19429518,-0.28028858,0.26672885,-0.16523647,0.11071776,-0.38040262,-0.079821706,0.2003896,-0.0069695446,-0.007310693,0.49279854,-0.42121255,-0.082200184,-0.07740348,0.63256156,-0.35029027,0.0158945,1.0211875,1.2776252,0.9269823,0.13199972,1.2929995,0.1134165,0.016036304,-0.08989636,0.05043045,-0.61697876,0.20505792,0.39579612,0.019286413,0.41619104,0.13318709,0.027927719,0.30589196,-0.37284753,-0.09209785,0.09975844,0.3142772,-0.062992744,-0.12126916,-0.46245348,-0.19692081,0.19471143,0.23377442,0.17301562,0.34670174,-0.2690473,0.4845274,0.116895914,1.1171312,0.08467768,0.024464458,-0.034944,0.5565858,0.23042497,-0.04206104,-0.028054897,0.45958817,0.23762318,0.10932389,-0.57778174,-0.13510042,-0.31338832,-0.49831727,-0.14815599,-0.5016199,-0.15291461,-0.41914532,-0.46266535,-0.124016516,0.012243048,-0.2740598,0.272037,-2.488415,-0.40724385,-0.15124692,0.41751388,-0.122872226,-0.27074337,-0.14127384,-0.4151937,0.49997142,0.43798718,0.36161155,-0.7575584,0.45127818,0.5118231,-0.3048006,-0.1831975,-0.63710314,0.0030284845,-0.0452917,0.33439177,0.04016947,-0.18837054,-0.11284293,0.32686657,0.61037445,0.25066078,0.18936488,0.09006361,0.6011226,-0.26257735,0.51730084,-0.013318305,0.4167978,-0.18191601,-0.074607864,0.19972011,-0.5674889,0.41689676,-0.05968625,0.23611468,0.4747362,-0.6093656,-0.90719444,-0.66575706,-0.27291873,1.2662861,-0.36561707,-0.48258412,0.25715476,-0.1537068,-0.44776413,0.013759512,0.6552175,-0.24193738,0.14635354,-0.7267415,-0.079174004,-0.24098255,0.2488619,-0.17342871,0.27137655,-0.40437096,0.6626053,-0.100964345,0.562312,0.18295462,0.08366825,-0.34202436,-0.5310044,0.19190294,0.84908265,0.6531403,0.055153575,-0.2209776,-0.058280505,-0.30070588,-0.0762023,-0.0007437651,0.668554,0.7533921,-0.08003586,0.07226459,0.3696016,-0.13081421,-0.06332158,-0.1748111,-0.34708196,-0.07016683,0.043859582,0.798746,0.82733184,-0.2397967,0.16321088,-0.0760454,0.41150576,-0.31674284,-0.5069409,0.5587488,0.61035883,-0.12962747,-0.05978122,0.5978759,0.4194752,-0.46452257,0.54224974,-0.5511985,-0.49128786,0.5600342,0.041502826,-0.4756381,0.26610085,-0.28619987,0.10649958,-0.9349649,0.53797317,-0.04447953,-0.61789024,-0.4822709,-0.217987,-3.2924676,0.023550816,-0.07906833,-0.22321653,-0.3743663,-0.23871256,0.2600568,-0.6452229,-0.701242,0.043262105,0.03195542,0.6525346,-0.109983645,0.2067185,-0.29151806,-0.30842227,-0.20701383,0.2261335,0.04016647,0.22893688,-0.12382806,-0.28951466,-0.04586146,-0.321216,-0.5907574,0.040018138,-0.4722301,-0.6368728,0.017811198,-0.51430714,-0.11966236,0.686814,-0.2338895,-0.04065095,-0.3142768,-0.10983766,-0.15070993,0.3042366,0.12336194,0.11665087,-0.026462408,0.037970368,0.07732194,-0.34125906,0.22575697,0.13800159,0.43174267,0.4610736,-0.27130446,0.20496584,0.6098398,0.6191889,-0.0617078,0.9056599,-0.023838501,-0.07565803,0.3191293,-0.24548069,-0.5645287,-0.59094274,-0.32615694,0.033417463,-0.35214964,-0.19389655,-0.16134551,-0.34069902,-0.81340855,0.387485,0.19600107,0.097242996,-0.25747216,0.27543658,0.31219688,-0.18285953,-0.05412399,0.07055713,-0.22581816,-0.55908245,-0.22152941,-0.7657844,-0.53904694,0.086454645,0.8019958,0.055024624,-0.13994758,0.18041867,-0.33394623,0.17893527,-0.07243119,0.186797,0.109531865,0.23412234,-0.114238925,-0.77202195,0.45180318,-0.2878838,-0.054741565,-0.5543713,-0.16136912,0.86909145,-0.6629857,0.30248576,0.60379076,0.24720098,-0.012574031,-0.5513583,-0.11927735,0.0005850975,-0.06301364,0.57981956,0.2054658,-0.7859481,0.50550056,0.0151484655,-0.025627438,-0.44888481,0.5783046,-0.11880796,-0.17377171,0.0868852,0.41259748,0.00050946383,-0.031796437,-0.2845613,0.32625502,-0.5132319,0.25163168,0.41666052,0.13633022,0.67788595,-0.012282411,-0.2578998,-0.693076,-0.17763291,-0.6034421,-0.2357637,0.07203087,0.010288651,0.080381125,0.04418912,0.09621068,0.24894312,-0.4610179,0.23200668,-0.051605266,-0.18078184,0.5040896,0.63537496,0.5938299,-0.4607778,0.78361166,0.28065118,0.10496453,-0.09530174,-0.047239468,0.4185149,0.27577993,0.32635805,0.02631843,0.020500243,0.23545423,0.6693739,0.208395,0.3903579,0.45592275,-0.24540065,0.3077535,0.121773496,0.36228272,0.017327223,-0.34571382,0.088980876,-0.08274229,0.0041510086,0.45349666,0.1394533,0.16435876,0.08284533,-0.27564985,0.078974776,0.26499227,-0.32928035,-1.6724327,0.45054403,0.42081305,0.7165944,0.49062377,-0.025084678,-0.092590645,0.54557234,-0.19201502,-0.048617914,0.3045244,0.20731474,-0.3517952,0.6322466,-0.490326,0.47190407,-0.19836083,0.038870454,0.07052122,-0.06893956,0.40503377,0.9364351,0.02411273,0.16045788,-0.07764366,-0.17052552,0.10576655,-0.53011036,-0.040835064,-0.30432206,-0.27008504,0.5741502,0.27371407,0.30331978,-0.25831836,0.009668011,-0.0059035053,-0.12427668,0.11931968,-0.10488666,-0.11116295,-0.24353679,-0.75253105,-0.28927204,0.5491024,-0.17714468,0.13639227,0.14228433,-0.22957277,0.15524575,-0.04596923,-0.046675436,-0.015353174,-0.72486824,-0.12325696,-0.38266027,-0.55056036,0.33056238,-0.40042385,0.24632399,0.20800146,-0.019910542,-0.14187166,0.017911475,0.14199802,0.7119347,0.09893953,-0.28173226,-0.18096887,-0.038197987,0.3508225,-0.47185522,-0.12358551,-0.3989534,0.15917356,-0.40792164,0.3769547,-0.17852713,-0.2866471,-0.1171439,-0.10819982,0.032882765,0.2693743,-0.32091495,-0.2008788,0.15274061,0.011996737,-0.2175264,-0.0029538847,-0.314936,0.32370678,0.19295089,-0.06154436,0.15713336,0.06970547,0.027819706,0.34944242,0.15670094,0.32391375,0.46922362,-0.12662277,-0.3414685,0.00016908463,-0.07511048,0.62734807,0.110820696,-0.009509353,-0.3009714,-0.44920585,-0.3585521,0.3917949,-0.20217098,0.12274608,0.23667742,-0.19829758,0.7663136,0.18580753,1.1937168,0.11440826,-0.47974318,0.15038726,0.6028924,0.007868969,0.012515389,-0.3376635,1.1293304,0.37623733,-0.44244084,-0.12387726,-0.6147425,-0.17684151,0.18800065,-0.21359316,-0.4262231,-0.20214452,-0.8482806,-0.15798165,0.13461915,0.22358465,0.035701733,-0.09749815,0.054444548,0.2868314,0.09901103,0.32729068,-0.77713203,-0.09063273,0.43910617,-0.012080864,-0.027765442,0.009821837,-0.41354784,0.36896732,-0.5322558,0.027841436,-0.5029968,0.17371526,-0.03540724,-0.55473286,0.17021745,0.04957211,0.40904853,-0.38967997,-0.42909348,-0.2615705,0.5802047,0.2257893,0.23577048,0.5142158,-0.19484782,-0.1784742,0.075951174,0.5093111,1.3628736,-0.049364302,0.2519439,0.2470665,-0.47650993,-0.65627056,0.006557529,-0.4674541,0.13679716,-0.044773944,-0.47185817,-0.45541456,0.30087966,0.063972205,0.072962835,0.14038828,-0.574577,-0.2651901,0.4351012,-0.25132054,-0.32818013,-0.35289353,0.013405185,0.64918876,-0.37355593,-0.35877687,-0.054379683,0.3478275,-0.2062129,-0.64007825,-0.07384233,-0.22106358,0.42093346,-0.063822426,-0.35479382,0.012787191,0.075635105,-0.42640877,0.343353,0.354489,-0.27651736,0.07182148,-0.26511925,-0.14300053,1.0447768,-0.01630242,0.063692704,-0.5646286,-0.5502599,-0.7821325,-0.35631725,-0.045514822,0.17128386,-0.014800365,-0.56536186,-0.06007814,-0.04985136,0.05707741,0.074378185,-0.4763675,0.45627493,0.17159115,0.5953269,-0.02452601,-0.9653549,0.13962287,0.16605617,-0.28883335,-0.5562523,0.6487434,-0.12317793,0.50781727,0.14525035,0.1367128,0.01804461,-0.717583,0.29484022,-0.27998155,-0.10395953,-0.61918414,0.30364677,288 -645,0.4466862,-0.33019894,-0.60028875,-0.1791417,-0.18302454,-0.17135777,-0.11749077,0.53893334,0.3342016,-0.4877644,-0.184188,-0.2193125,0.03249379,0.27360585,-0.052382175,-0.6290192,0.046078876,0.20607863,-0.2851344,0.57390624,-0.41289604,0.048923947,-0.119169705,0.3542793,0.28248355,0.29617873,0.18096425,-0.05900338,0.0393429,0.06195867,-0.24550363,0.50580525,-0.26749566,0.10450828,-0.12120605,-0.34436753,-0.045385424,-0.4778703,-0.46629885,-0.71707684,0.27197495,-0.89434856,0.5196085,0.25039533,-0.3194655,0.15748405,0.07759399,0.19358745,-0.36476767,-0.05310691,0.052213855,-0.098693624,0.019734355,-0.30773014,-0.31843635,-0.4165084,-0.49007756,-0.13875778,-0.4093161,-0.16647547,-0.3052785,-0.0045019365,-0.39012522,-0.089926496,-0.116903774,0.5342254,-0.45699978,-0.02640794,0.4152555,-0.18543682,0.39480397,-0.58371663,-0.21204534,-0.13529688,0.2821151,-0.056220733,-0.36562237,0.1985444,0.42430422,0.53024304,-0.018836495,-0.16814055,-0.36485583,-0.029041748,0.0781734,0.47851804,-0.22706956,-0.6166188,-0.09918526,0.05971634,0.05216778,0.5098703,0.16537362,-0.31881827,-0.07676099,0.16968432,-0.10208864,0.39930993,0.5080103,-0.35252082,-0.2204849,0.23957556,0.52490926,0.16292642,-0.063995086,0.10065953,0.069040194,-0.58264107,-0.28273553,-0.10316087,-0.17924482,0.63632715,-0.19842938,0.22589475,0.7206905,-0.018995551,-0.066015,0.12282574,0.01944131,-0.27242202,-0.39113924,-0.24275324,0.36194164,-0.40172094,0.32103285,0.019869713,0.54119426,0.13128844,-0.5731299,0.41107506,-0.5756596,0.21945761,-0.17006506,0.5288034,0.64873344,0.45536894,0.49588087,0.75600564,-0.47532484,0.09109373,-0.04672012,-0.41067123,0.14210254,-0.18334803,0.034489453,-0.6126426,0.07982775,-0.054660317,-0.039975174,0.16619395,0.5626576,-0.5764941,-0.19011639,0.33524036,0.9690076,-0.27372393,-0.069451496,0.6174165,0.9364602,0.9207083,-0.058341164,1.0193288,0.18147534,-0.21775898,0.33515948,-0.0983572,-0.80105823,0.31118584,0.40150654,-0.024188958,0.3293603,0.09903783,-0.026783235,0.53834623,-0.31841767,0.058183488,-0.24143904,-0.04909151,0.101540335,-0.22978471,-0.6075107,-0.09507605,-0.2334861,0.044791423,0.020232888,0.22701357,-0.08641493,0.44814286,-0.11599995,2.0274906,-0.05922713,0.0688789,0.19516547,0.42732474,0.32655475,-0.18349019,0.054796807,0.51479244,0.3275897,0.33865267,-0.60706407,0.16458684,-0.16443266,-0.49396074,-0.114447266,-0.4215008,-0.05082844,-0.060935095,-0.568064,-0.13781498,-0.2426421,-0.286475,0.32790822,-2.7546103,-0.21004501,-0.090843566,0.35509446,-0.2758399,-0.3269815,-0.13314106,-0.34334883,0.37523544,0.34896865,0.53445745,-0.73151696,0.41409165,0.50009906,-0.58845204,-0.032576744,-0.5996839,-0.03168152,-0.12573245,0.3740161,0.06920015,-0.07811893,0.11642417,0.20511283,0.5997671,0.075629964,0.18153588,0.27348235,0.5532155,-0.103673935,0.55144596,-0.10103389,0.5036264,-0.3558749,-0.23967141,0.30445737,-0.17179929,0.25510347,-0.046037234,0.07223034,0.49281794,-0.49752,-0.9832887,-0.6725736,0.002781822,0.9518646,-0.27758348,-0.45660907,0.33222404,-0.7954979,-0.3483135,-0.16670173,0.48819253,-0.02350278,0.015643211,-0.8493216,0.1326548,-0.010688094,-0.013149181,0.12314635,-0.26020622,-0.47305056,0.7691039,0.06742646,0.6715289,0.46661213,0.060728893,-0.18928741,-0.402828,-0.02419426,0.6805996,0.2713438,0.20585023,-0.23493487,-0.106977545,-0.23749505,0.12924708,0.10288363,0.63054776,0.6141597,-0.1168974,0.116926834,0.33447745,0.13878216,0.033179477,-0.20563188,-0.27870184,-0.10155581,0.06710784,0.48433816,0.7722304,-0.39225256,0.3151628,0.052878816,0.44787347,-0.19125997,-0.39140505,0.44640762,1.3449895,-0.14318784,-0.32745817,0.59377164,0.67825836,-0.3758127,0.44350603,-0.63202196,-0.07221976,0.36916283,-0.14844273,-0.46047214,0.18391432,-0.329476,0.17874679,-0.87695575,0.106050655,-0.18422739,-0.4873796,-0.54609495,-0.15989791,-3.670752,0.35610005,-0.47338417,-0.1715076,-0.11123168,-0.053502798,0.2425172,-0.8249896,-0.6028534,0.23557593,0.08678392,0.6372403,-0.10273683,0.09138993,-0.32318088,-0.3329508,-0.14629048,0.08977067,-0.0699871,0.34636277,0.0011575704,-0.5837779,-0.17477496,0.04676167,-0.4293366,0.046615515,-0.67565346,-0.41902086,-0.16603822,-0.5898785,-0.28934175,0.6115376,-0.099813476,-0.012782903,-0.24058954,0.087550886,-0.20773485,0.17528701,0.05706998,0.2170309,-0.06351804,-0.05751011,0.0974765,-0.19041671,0.1619946,-0.118957706,0.34884322,0.11420877,-0.14745116,0.15210357,0.5670663,0.6698047,-0.12284879,0.9110741,0.6876714,-0.089319855,0.25618207,-0.22766607,-0.29984763,-0.7032703,-0.45250505,0.029312309,-0.43634966,-0.5573033,0.0059910463,-0.48698857,-0.7969002,0.5993055,0.08902684,0.46823904,0.15206239,0.14276837,0.8073958,-0.35174942,-0.025259487,0.11200522,-0.2178352,-0.7047877,-0.12401521,-0.59163797,-0.4539405,0.27125308,0.8459395,-0.39716038,0.08818383,0.19296104,-0.3059146,-0.09729429,0.27022123,0.03374842,0.3530032,0.5385119,-0.20917676,-0.6209746,0.46044156,-0.13880095,-0.27626488,-0.570221,0.21221855,0.5569835,-0.6973076,0.86411035,0.33895344,0.02234144,-0.31248057,-0.617419,-0.32263178,-0.03197681,-0.14867224,0.52622306,0.39583018,-0.7612771,0.3043554,0.4870278,-0.22436072,-0.59877354,0.69358605,-0.21158305,-0.44373623,-0.055066563,0.29228643,0.06792252,0.032773938,-0.08034165,0.21858606,-0.3324381,0.22507375,0.29056448,-0.08354061,0.15887019,-0.15916872,0.0864249,-0.9217899,-0.090830095,-0.5701299,-0.24738382,0.48606822,0.062207684,0.14435554,0.0031410365,-0.08232935,0.34246257,-0.28124592,0.17186238,-0.048318386,-0.31586328,0.4894838,0.429717,0.41583538,-0.46980947,0.6233887,-0.028556285,-0.14947326,-0.031886406,0.20045647,0.31846735,0.124712415,0.6255132,-0.09450846,-0.3096058,0.29082045,0.9251508,0.1627654,0.47749618,0.16162124,0.0552455,0.19891691,0.14350377,0.17830667,-0.17188014,-0.66132516,0.088470496,-0.30209282,0.20259558,0.4916046,0.13405196,0.23337705,-0.12280385,-0.3662798,0.048080675,0.33032468,0.22759582,-1.2574946,0.3447532,0.26282254,0.8505213,0.40816957,0.084775135,-0.23069239,0.6211328,-0.07777733,0.115986936,0.44666064,-0.1139034,-0.54071736,0.5072407,-0.6754601,0.36511853,-0.011701245,-0.014072462,-0.08684129,-0.04746484,0.4332325,0.6729318,-0.13486372,-0.068760276,-0.022886693,-0.3499495,0.2828934,-0.4675654,-0.13579756,-0.5378765,-0.40608293,0.5449064,0.78807837,0.4450418,-0.19364189,-0.04216434,0.15869012,-0.041231778,0.1296259,0.102382295,0.12443003,-0.123550646,-0.89134634,-0.08171498,0.4768494,0.112914816,0.25848812,-0.15351701,-0.33975747,0.46417516,-0.112073176,-0.07856072,-0.047300227,-0.665728,0.10800497,-0.34134233,-0.71995485,0.717507,0.058917757,0.26827767,0.15396073,0.10679034,-0.24218623,0.4636685,-0.3746874,0.97287136,-0.06372348,-0.017961867,-0.55179787,0.12849024,0.14134179,-0.17649491,-0.13092189,-0.440272,0.13583821,-0.5246581,0.44778156,0.23710376,-0.3179294,0.01350766,-0.11042762,-0.03156176,0.61017525,-0.2213602,-0.28892013,-0.32256678,-0.16692811,-0.45430803,-0.41940865,-0.035254154,0.42093235,-0.06459259,0.23016572,-0.17669359,0.00350545,-0.11633066,0.44581223,-0.040710468,0.30633807,0.36730605,0.0773203,-0.01879759,-0.1852673,0.3604091,0.5131099,0.0068929195,-0.27343866,-0.19571796,-0.6089812,-0.34975228,-0.20728779,0.00779814,0.57804734,0.10431482,-0.098045945,0.7440134,-0.06576232,1.2585021,0.0897437,-0.41292554,0.07358035,0.5795949,0.07712368,-0.084717736,-0.21830925,0.89478105,0.5479631,-0.06452417,-0.10812323,-0.39154243,-0.042235468,0.13714743,-0.18758273,-0.067625605,0.08278545,-0.67871845,-0.13913016,0.23482727,0.2132323,0.43682215,-0.16082446,0.21339424,0.25474435,-0.04568595,0.110805914,-0.29837573,-0.52086455,0.21489531,0.20655005,-0.020982128,-0.00407406,-0.5490788,0.41326973,-0.37841046,0.025618719,-0.45762652,0.23741688,-0.3973101,-0.26101607,0.2615713,-0.1941563,0.374708,-0.35365263,-0.19890216,-0.18735504,0.4876054,0.22238418,0.00089582114,0.5688054,-0.23206645,0.058252115,0.15751791,0.55354947,0.97764075,-0.2283799,-0.15102042,0.41107166,-0.48252133,-0.7414694,0.28036305,-0.36973417,0.1662365,0.11460801,-0.2477975,-0.61884874,0.27189717,0.12078988,-0.13021839,0.06007981,-0.69891196,-0.14514813,0.18392414,-0.278703,-0.12096931,-0.34436196,0.15138301,0.5472206,-0.2978175,-0.42683047,0.012438893,0.086190745,-0.03280225,-0.52227837,0.11404657,-0.336613,0.32730025,0.039020777,-0.39790398,-0.029686403,-0.11742568,-0.46314505,0.335041,0.15792862,-0.31598037,0.18615168,-0.47376788,-0.37185335,1.1296184,-0.24712637,0.13964795,-0.47296804,-0.39192492,-0.74796414,-0.36598638,0.53740203,-0.07781879,0.05370017,-0.6284374,0.23797677,0.092324175,-0.0929877,-0.27393934,-0.16452481,0.55227864,0.014937251,0.51797915,-0.06430593,-0.7455844,0.27292663,0.12631558,-0.18173434,-0.61901575,0.61313206,-0.17300926,0.9038601,-0.019132454,0.23371062,0.33369252,-0.4632872,-0.16676722,-0.25699636,-0.27210146,-0.71020406,-0.30196276,291 -646,0.4101085,-0.08386782,-0.71483123,-0.15929025,-0.30844682,-0.27902377,-0.13450077,0.665981,0.24781157,-0.5156882,-0.18144679,0.06700843,-0.18596873,0.36659792,-0.2842731,-0.7932115,-0.038502462,0.11573196,-0.26266772,0.6071806,-0.30899513,0.16705693,-0.21087784,0.55188364,0.36024508,0.23167755,-0.019967245,0.1754573,-0.13753092,-0.24520141,0.0551518,0.45236668,-0.4687908,0.2663204,-0.3108888,-0.32598093,0.027551128,-0.31539994,-0.28766665,-0.8120555,0.24360943,-0.56196356,0.48160756,0.09472447,-0.39983594,-0.004745699,0.3176689,0.18917267,-0.06696611,-0.32408667,0.11455668,-0.13250338,-0.054483216,-0.2928281,-0.3126867,-0.50494504,-0.5732498,0.046308763,-0.5421269,-0.01573873,-0.10401139,0.23177655,-0.37326843,-0.20085883,-0.012450048,0.77918106,-0.32595417,-0.135893,0.34905162,-0.12460195,0.23684572,-0.77889323,-0.22643515,-0.094210744,0.04823504,-0.04964833,-0.2336913,0.45181173,-0.023219535,0.34029454,0.0019263304,-0.3995682,-0.32483414,-0.043737706,0.29770344,0.22633092,-0.5000325,-0.50334233,-0.18259811,0.020444999,0.40019163,0.3124625,0.17862111,-0.1737937,0.10915823,0.026702939,0.016293893,0.6789725,0.66181755,-0.052366395,-0.074538775,0.10224126,0.50266147,0.4176866,-0.14778955,-0.16658404,-0.01573564,-0.5760331,-0.26216272,-0.0068057547,-0.122592956,0.34692776,-0.03238741,0.22101879,0.60225683,-0.03701125,-0.0021172785,0.12874144,0.15663515,0.23566347,-0.69696516,-0.21653393,0.3863022,-0.5214144,0.3178944,-0.27385092,0.70680845,0.025192587,-0.64379436,0.22569281,-0.5847894,0.1893321,0.045024652,0.5574591,0.6781074,0.49815032,0.29663256,0.79232633,-0.32089323,0.07190239,-0.027581105,-0.12942336,0.17084596,-0.28766128,-0.052086428,-0.44802144,-0.03105732,-0.16819352,-0.0015027982,0.25210664,0.22098897,-0.7433437,-0.29439318,0.31936413,0.90404314,-0.09660693,0.015640497,0.7650352,1.0795808,1.0816462,-0.106549785,0.982953,-0.17918505,-0.17414588,0.067726776,0.04970663,-0.6660966,0.24043958,0.38412204,-0.454193,0.35519755,-0.15451714,0.009077609,0.58970034,-0.51333165,-0.2286513,-0.1938635,0.57327133,0.007638647,-0.13925365,-0.63316524,-0.16099998,-0.052194413,-0.033888273,0.09783876,0.42588705,-0.14594024,0.4778206,-0.17161533,1.0873382,-0.16410057,0.15988772,0.30947372,0.38435158,0.35692808,-0.18691467,0.12819894,0.24182765,0.04554589,0.23560905,-0.4458726,0.17291282,-0.36733297,-0.43723205,-0.0054361476,-0.38797548,-0.14871508,-0.009372483,-0.41761154,-0.24504651,-0.12373945,-0.24695174,0.37777236,-2.6040518,-0.030227194,-0.07920293,0.21576688,-0.2209014,-0.45079973,-0.11569198,-0.37442273,0.6707345,0.16607842,0.5658958,-0.3592073,0.09618639,0.50027996,-0.62390274,0.036163148,-0.56734854,-0.20497777,0.047843806,0.45165512,0.19638537,-0.14619729,0.038171988,0.17043048,0.5667876,0.14548367,0.08907983,0.31262457,0.30935624,-0.4455066,0.39744267,-0.15739232,0.46827748,-0.513408,-0.29851893,0.349494,-0.52544415,0.35445315,-0.20244649,0.14777614,0.55711883,-0.4533823,-0.9646451,-0.381676,-0.20606199,1.2056547,-0.0021171868,-0.49965975,0.2042451,-0.39074296,-0.16912279,-0.17081125,0.56293774,-0.08084442,0.06822541,-0.6701089,-0.015219056,-0.31539184,0.12831593,-0.08005684,-0.049778815,-0.39073378,0.62192523,-0.050607927,0.38434336,0.42574942,0.21636519,-0.5480676,-0.47457397,-0.13584386,0.93114716,0.5575577,0.12374522,-0.17290306,-0.21777017,-0.2937804,-0.16247964,0.12257107,0.772261,0.7410307,-0.12981847,-0.025498815,0.41953725,0.06264231,-0.019135058,0.025534473,-0.42088482,-0.3146356,0.040489554,0.70536417,0.7250275,-0.22342187,0.3249717,0.0971636,0.4074611,-0.3217214,-0.37642157,0.38836348,0.9302895,-0.26198816,-0.284793,0.92009395,0.59082913,-0.29287732,0.575314,-0.48686874,-0.43619555,0.49361786,-0.13378286,-0.6039523,0.01953855,-0.3683991,0.028044406,-0.80158234,0.28802294,-0.4933017,-0.5275058,-0.8750924,-0.26752353,-2.0993705,0.25983852,-0.33673775,-0.0029031222,-0.3776584,-0.026357045,0.17466977,-0.6105386,-0.80298316,0.20455883,0.11168489,0.78397435,-0.26314276,0.07499424,-0.22199582,-0.49321446,-0.036892686,0.32704604,0.3503316,0.2572323,-0.07297055,-0.29949707,-0.22597107,-0.032426126,-0.54347247,0.07840069,-0.63040394,-0.4920854,-0.14907676,-0.7306954,-0.0028828245,0.77605754,-0.38683012,-0.0007144648,-0.1403537,0.17223804,0.16711141,-0.02943878,0.077595785,0.4456262,0.2846767,-0.14843231,0.13081194,-0.23198606,0.17535207,0.11210069,0.5702954,0.2683862,-0.1074491,0.26929742,0.6942764,0.8763325,-0.2127452,0.96922696,0.42272323,-0.086983114,0.34746283,-0.21871747,-0.52539706,-0.5993724,-0.24277812,0.31982532,-0.37750986,-0.27294773,0.02323421,-0.4167042,-0.8815174,0.8083879,-0.0013243601,0.3793783,-0.35968685,0.10256314,0.5106531,-0.33813602,-0.2782765,-0.082095236,-0.06294438,-0.5739268,-0.22345556,-0.65955776,-0.53506345,-0.089019924,1.0324728,-0.20959122,0.06125508,0.34546104,-0.20840576,0.052586243,0.10555871,-0.08392877,-0.11626128,0.30712733,0.39337698,-0.584907,0.4209754,-0.06406182,-0.052589595,-0.46287614,0.41219595,0.653964,-0.46365303,0.63296664,0.46966082,-0.07158379,-0.33870518,-0.83182216,0.0030960029,0.13970572,0.0017349606,0.45528713,0.38254526,-0.68728167,0.4564547,0.28926915,-0.25847304,-0.7606713,0.44240555,-0.15747143,-0.060972605,-0.13836266,0.46930382,0.106994405,-0.100462876,-0.067874976,0.4331813,-0.1582286,0.2697227,0.28759187,-0.15197513,0.26728767,-0.24878278,-0.15088429,-0.8855436,0.21477996,-0.7801913,-0.3078118,0.49510786,-0.17589952,-0.16573285,0.08196019,0.15860708,0.31020495,-0.28792825,0.17149065,-0.21982503,-0.43699884,0.48377207,0.5723276,0.6970918,-0.5631107,0.6272759,0.21358848,-0.13245025,0.14398283,0.11562505,0.5144334,-0.14051196,0.510375,-0.15717782,0.041304525,0.076695226,0.77153504,0.09323859,0.27647257,0.042705655,-0.048584882,0.065441065,0.040637158,0.12506431,0.0009904412,-0.67352957,0.14622645,-0.15808432,0.0019400395,0.53907895,0.06576773,0.37298316,0.07807851,-0.2649854,0.0271361,0.21129225,0.0512929,-1.6267827,0.62716305,0.11978963,0.94610095,0.35864884,0.3677216,-0.09265333,0.6558355,-0.0033328992,0.09376569,0.45745605,0.081559785,-0.3390074,0.57548684,-0.6253301,0.5177995,0.027159167,0.074622035,-0.07801211,-0.041891262,0.6759068,0.66257584,-0.15927841,0.010436039,-0.030181656,-0.21792556,0.2926454,-0.40582463,0.14197376,-0.29426476,-0.44769844,0.48358727,0.5191587,0.28179744,-0.28376165,-0.0052413503,0.31082284,-0.14185432,0.21544434,-0.21538518,0.029108705,0.008360473,-0.44945204,-0.16839688,0.40100092,-0.09681462,0.13837932,-0.09782501,-0.08277582,0.23541087,-0.024730848,-0.08559182,-0.10625581,-0.56172854,0.087741815,-0.47850564,-0.5459341,0.40559238,-0.33006757,0.095316805,0.12917247,0.10048525,-0.32368648,0.57167333,-0.09935338,0.73985827,-0.17059647,-0.27907574,-0.26536885,0.26809266,0.02672964,-0.3426119,0.046927627,-0.35886997,0.24897161,-0.4092982,0.44368282,-0.18967412,-0.3825064,-0.077684626,-0.16980185,-0.0681485,0.4322925,-0.07384983,-0.17622541,-0.26463774,-0.32771856,-0.14941801,-0.41495323,-0.104974896,0.17775601,-0.16206712,0.08914984,-0.20514867,-0.1916725,-0.17301625,0.24260893,-0.049479213,0.24220607,0.43079332,0.20360833,-0.32113376,0.055673238,0.29206556,0.54483414,0.048732284,-0.009359328,-0.28775522,-0.3546952,-0.63897353,0.30848196,-0.256079,0.42903966,0.19296408,-0.14076184,0.7402125,0.043845877,1.3188447,-0.17332163,-0.42069575,0.026768826,0.46719533,-0.14800993,-0.090423636,-0.31011006,1.1132929,0.36307862,-0.20863964,0.06571795,-0.46198523,0.21419892,0.2500448,-0.28715116,-0.17380235,-0.06810014,-0.5185785,-0.22911538,0.27095148,0.3913544,0.28744608,-0.3803876,-0.1398261,0.2991189,0.1817355,0.21627066,-0.4177706,-0.013094801,0.23409599,0.21963432,-0.10714375,0.11979437,-0.4707993,0.3258204,-0.55754393,0.2851481,-0.46512458,0.22726609,-0.2746126,-0.5378346,0.17409915,-0.24440071,0.45512727,-0.39757472,-0.23648432,-0.14107545,0.24850768,0.23784758,0.040311333,0.55444264,-0.30757388,-0.013330019,0.14996468,0.603869,0.9357062,-0.28406987,-0.12937742,0.072769836,-0.31500202,-0.68736064,0.0686772,-0.43599904,0.0988088,-0.19631192,-0.43093857,-0.58565384,0.10636515,0.10890383,-0.028864585,-0.07691641,-0.75206935,-0.075310804,-0.05767515,-0.27827638,-0.15870622,-0.35016662,0.01047614,0.48811564,-0.12853338,-0.4806879,0.12559171,0.10670462,0.025561452,-0.5828661,0.15026939,-0.3483198,0.19549306,-0.0029002337,-0.5014972,-0.11986054,-0.13108908,-0.5268484,0.14681828,0.04063807,-0.2506537,-0.07992231,-0.04405725,0.10035995,0.8539661,-0.11746339,0.40473545,-0.30906928,-0.5281786,-0.82473904,-0.3247267,0.18218097,0.11982142,0.10907045,-0.8393192,0.062099006,-0.3087712,0.0905654,-0.15652053,-0.14314505,0.23433487,0.14620078,0.5260712,-0.3881245,-0.75117373,0.4107002,0.26061094,0.0041825953,-0.47510883,0.42413384,-0.054891907,0.83003515,0.08736898,0.024955966,0.16070755,-0.5437848,0.054953463,-0.19113564,-0.27330166,-0.53066623,0.20248541,292 -647,0.3746278,-0.19386078,-0.42970136,-0.08081368,-0.20594062,-0.31414336,-0.29656294,0.6680862,0.3799411,-0.40551472,-0.23671368,0.22176732,-0.18251199,0.29647905,-0.14191064,-0.17228158,-0.009866958,0.21476804,-0.5101976,0.6921159,-0.19635925,0.20599219,-0.14384152,0.62542695,0.41298956,0.12839048,-0.17083909,0.3779473,0.023297181,-0.24090768,0.023588648,0.2088916,-0.4530857,0.17319764,-0.26019973,-0.4350537,-0.3776293,-0.5606566,-0.46099743,-0.7694196,0.35019344,-0.72028345,0.62066424,-0.013461218,-0.34209353,0.16358255,0.09320201,0.23623309,-0.01940613,-0.25337207,0.16115977,-0.12991567,-0.21416576,-0.10138074,-0.072815746,-0.1937673,-0.58105206,-0.09281821,-0.26728475,-0.04055146,-0.3135102,0.1962044,-0.35716438,0.07920799,0.025010284,0.58957916,-0.21285237,0.15961954,0.07480757,0.0039623794,0.112795606,-0.83209074,-0.23844253,-0.12010578,0.18899368,0.011756576,-0.37280953,0.37876037,0.07722226,0.44024354,-0.21054675,-0.031655762,-0.40925023,0.20087503,0.013745322,0.46422136,-0.30837876,-0.34282953,-0.09150283,0.09837807,0.47180626,0.10129888,0.19754076,0.0027145927,-0.1947627,-0.015902016,0.026827602,0.4457639,0.557413,0.040558375,-0.16686183,0.2599382,0.53500533,0.48788643,-0.17165463,0.0521329,0.057879355,-0.5023172,-0.14717707,-0.25994143,-0.14834735,0.3490236,-0.046328824,0.2929382,0.32707754,0.020740459,-0.22280622,0.38121003,0.20314072,0.21082164,-0.3110479,-0.56698054,0.37998772,-0.4291134,0.25430647,-0.1890257,0.45862976,-0.061380424,-0.770461,0.23448744,-0.4664796,0.14165533,-0.04422656,0.4440749,0.9814346,0.48204195,0.3802298,0.72655195,-0.24363287,0.034930196,-0.040080626,0.12763742,0.0012881664,-0.25914967,0.05202424,-0.5623771,-0.1693859,-0.04202878,-0.24709032,0.43870303,0.48759666,-0.46263868,-0.16926914,0.20876874,0.7542872,-0.1399247,0.07494811,1.037858,1.2245069,1.1705512,0.07016391,0.8827022,-0.091040105,-0.088701494,0.035641946,-0.047091894,-0.67343956,0.2560557,0.30139458,0.10587129,0.32034895,0.14429668,-0.1305729,0.42132345,-0.6068557,-0.08148705,-0.009536977,0.06045988,0.14411603,-0.22158346,-0.58421934,-0.17904575,-0.25914007,0.16431363,0.020330433,0.2590384,-0.2832784,0.41141576,-0.13814633,1.3347855,-0.14467219,-0.023152392,0.15358283,0.4952181,0.23027423,-0.41392377,-0.038632445,0.048070934,0.29933912,0.016784204,-0.56171936,0.017770588,-0.1356166,-0.36177656,-0.22234192,-0.28604305,-0.3234061,0.025475685,-0.25366384,-0.3982803,-0.19967164,-0.44761392,0.19420968,-2.6969616,-0.24641715,0.026469808,0.48339665,0.04241493,-0.35006624,-0.16195941,-0.3595884,0.5479059,0.30860597,0.5406193,-0.45203298,0.21890494,0.45343068,-0.727278,0.06386154,-0.55556387,-0.11757003,0.17901564,0.19811663,0.062582016,-0.11473315,0.1415489,0.32817155,0.5116446,0.2599897,0.03579154,0.59691006,0.36814865,-0.43528965,0.31437647,-0.21430962,0.3981007,-0.3957136,-0.28565806,0.38464254,-0.3938374,0.23369576,-0.2419986,0.16217613,0.60943127,-0.44697455,-0.9671832,-0.5140003,0.28243148,1.1760371,0.13751036,-0.60251844,0.28774732,-0.96870226,-0.35889357,-0.21633516,0.6834737,-0.21190885,-0.21545584,-0.72689056,-0.26202568,-0.20540048,0.1144081,-0.038255356,-0.21104033,-0.53406763,0.82285935,-0.013058569,0.59959614,0.40608194,0.1185132,-0.35440043,-0.41919434,0.07421614,0.659462,0.5901141,0.17156526,-0.3381069,-0.022896977,-0.25488383,-0.14219508,0.18358961,0.564488,0.33308858,-0.14948183,0.21852463,0.18608266,0.03618913,-0.025072305,-0.20399131,-0.004652491,-0.2594596,0.05036791,0.6743256,0.80890787,-0.16562667,0.31881377,0.146078,-0.011555537,-0.11172366,-0.37089318,0.31463546,1.0247194,-0.18742171,-0.5085531,0.67351335,0.44055843,-0.14290184,0.40502027,-0.47730678,-0.16482621,0.17988205,-0.012723565,-0.35859635,0.09514594,-0.3885047,0.13840613,-0.5584942,0.2429613,-0.31264842,-0.74404997,-0.8225795,-0.11323106,-1.3321275,0.21060461,-0.32121044,-0.38713557,-0.2750033,-0.4414887,0.096354574,-0.5744938,-0.69483083,0.22384556,0.07978857,0.8713286,-0.1865463,-0.13367139,-0.064761415,-0.48388892,-0.37877223,-0.013584132,0.15852925,0.43517002,0.15400717,-0.21902707,-0.12286366,0.057890195,-0.4568504,-0.19900121,-0.43329877,-0.3807274,-0.02319665,-0.39113384,-0.19232124,0.5571837,-0.1221987,0.12021197,-0.26091996,-0.11774063,0.100367196,0.26995498,-0.022310184,0.23890176,0.18862747,-0.13259417,0.1650917,-0.031408224,0.115977325,-0.07158848,0.17043965,0.24634926,-0.38081008,0.38014677,0.4658674,0.78419167,-0.3228802,1.0168567,0.6710847,-0.09290849,0.21973613,-0.23215815,-0.38664612,-0.45770174,-0.07851444,0.42213395,-0.45196703,-0.3755182,0.11968954,-0.53496677,-1.0168853,0.56502956,-0.03780475,0.19921562,0.110242195,0.07755138,0.4818022,-0.12897323,-0.12374493,-0.17271066,-0.11004024,-0.41307306,-0.28762877,-0.63616556,-0.49707457,-0.1319813,1.2702199,-0.26167402,0.20365168,0.42992508,-0.28335994,0.007514254,0.14973682,-0.11314265,0.057285395,0.24833809,0.054078754,-0.4202192,0.26700863,-0.01585203,-0.14125441,-0.57024646,0.26148272,0.50298345,-0.38844663,0.4943183,0.30200982,-0.10669149,-0.52427155,-0.812239,-0.01179918,-0.12648049,-0.19160257,0.51439464,0.45951682,-0.71537775,0.41121215,0.31352174,-0.14291225,-0.72970325,0.39559713,-0.041030005,-0.3453967,-0.030014588,0.17854333,0.012279437,-0.021500248,-0.0070819994,0.3687797,-0.21562481,0.4212631,0.05156825,-0.18752153,0.025011264,-0.3209212,-0.026273044,-0.60756487,0.14269017,-0.55645186,-0.29615375,0.2556827,0.15092815,0.30394647,0.04096021,0.3300095,0.39398807,-0.3400059,0.12792856,-0.36038965,-0.38644692,0.2731713,0.49734786,0.65424454,-0.38496512,0.56805384,0.06933364,-0.37172163,-0.006288689,0.023495985,0.44330758,-0.17305723,0.3189608,-0.001077354,-0.18922755,-0.162163,0.7698607,0.06379117,0.18566598,0.014414168,-0.093741424,0.16422097,0.032112017,0.31852758,-0.15553102,-0.514845,0.2307846,-0.476086,0.13563477,0.39522612,0.16417345,0.106029406,-0.22689287,-0.38476995,-0.05222157,0.10181236,0.13808143,-1.5609212,0.4854539,0.18057863,0.8524419,0.4009681,0.1482899,-0.1301569,0.79566914,0.060680177,0.055113953,0.21587215,0.20125076,-0.38214573,0.4398778,-0.7402167,0.5919546,0.13540651,0.009046412,-0.016479969,-0.114357546,0.4723584,0.5148715,-0.21127447,-0.0022663784,0.020926237,-0.33510298,-0.04134529,-0.3719354,0.11301042,-0.61821306,-0.29473716,0.8735924,0.5638575,0.34669426,-0.21040776,0.08630498,0.06347522,-0.10863029,0.16166148,0.0016536071,0.02104528,-0.14072496,-0.60704285,0.1349253,0.25049785,-0.23719348,0.12230992,-0.11357893,-0.047064345,0.12329398,0.07714569,-0.12685513,-0.0772654,-0.7067142,-0.02218428,-0.54253936,-0.4627524,0.33758754,-0.14804667,0.15494244,0.33897883,0.10441497,-0.16859554,0.35000503,-0.08890506,0.73110926,-0.07505261,0.0780008,-0.15610303,0.23764804,0.12525055,-0.18198249,-0.023056477,-0.09363182,0.09412764,-0.4555407,0.48995107,-0.08667372,-0.38257664,0.20188788,-0.05398254,0.14511909,0.34099242,-0.3087721,-0.26434204,-0.147583,-0.29757193,-0.23346074,-0.39918178,-0.050078712,0.3480642,0.06402822,0.07459802,-0.060155146,-0.11121511,-0.079288684,0.51303124,0.16235495,0.56290525,0.32674378,0.18284649,-0.3433956,0.027232233,0.10396442,0.57188267,-0.027110828,-0.09774426,-0.53841203,-0.5666977,-0.46658266,0.3177803,-0.03448186,0.46538046,0.13648418,-0.007283151,0.62786674,-0.02531024,0.81368977,-0.054690935,-0.3611098,0.20189425,0.38342032,-0.13401894,-0.21270299,-0.17484419,0.6100183,0.34295526,0.00088889326,0.005107817,-0.31251574,0.09343911,0.30305904,-0.28112504,-0.18315695,-0.13453571,-0.61026233,-0.1120619,0.26360476,0.24697253,0.12275468,-0.24803618,0.19371746,0.4292518,-0.068139106,0.018708335,-0.288087,-0.10597528,0.47295606,0.18213224,0.001014095,8.076888e-05,-0.5233364,0.20593366,-0.40846306,-0.08052071,-0.31334257,0.24851659,-0.08354245,-0.23493661,0.25645357,0.05904191,0.25028527,-0.31297037,-0.14464773,-0.19188254,0.3640938,0.15058766,0.09643286,0.26454538,-0.3241461,-0.027729778,-0.018469132,0.31616122,0.9119019,-0.20702508,0.064904876,0.04011921,-0.30136248,-0.39606094,0.31216705,-0.33266178,0.08062814,0.10244412,-0.08286122,-0.59032094,0.12753083,0.25568146,0.22225523,-0.034539897,-0.8026393,-0.39576742,0.06445173,-0.20326272,0.030852739,-0.43616527,-0.30813423,0.46509406,0.023113796,-0.4407743,-0.02379648,0.38641363,-0.02246207,-0.47576615,0.2696258,-0.47063276,0.22941563,-0.24501501,-0.40226313,-0.36361086,-0.13967814,-0.43699995,0.11452024,0.07383618,-0.2855779,-0.058519747,-0.43634742,0.12681147,0.89422184,-0.23667328,0.36859372,-0.19037192,-0.547732,-0.83000284,-0.1634648,0.15733925,0.34306547,-0.044208586,-0.8599291,-0.01888875,-0.22637105,-0.012507228,-0.105615154,-0.23330556,0.5086986,0.18977012,0.340738,-0.34151605,-0.67744595,0.28870773,0.06687205,-0.25392294,-0.19851683,0.5300242,0.4032285,0.7949572,0.08763724,0.16645254,-0.08134724,-0.4832361,0.13677576,-0.1153688,-0.29268518,-0.5038057,-0.041351873,298 -648,0.4648741,-0.16512807,-0.33638826,-0.20528938,-0.34922075,-0.37682515,-0.18545398,0.37966245,0.33574122,-0.23108497,-0.22175716,-0.018944483,0.23971592,0.54295516,-0.23166387,-0.7887561,0.009957754,0.12387542,-0.5704474,0.67667305,-0.5720644,0.2006996,0.093076035,0.3028045,0.094068095,0.2789696,0.27052978,-0.015732236,0.17403044,-0.09324659,-0.038154658,0.43396994,-0.73007524,0.13070989,-0.1964594,-0.27131087,0.03608334,-0.41160187,-0.13571037,-0.800393,0.097738296,-0.9615974,0.4344858,0.14279975,-0.31433252,-0.13689384,0.3482415,0.33864802,-0.4869844,-0.0006079284,0.16169478,-0.2306524,-0.18174821,-0.35181156,0.16500077,-0.3753956,-0.5710259,-0.13805583,-0.6388073,-0.30580652,-0.30802038,0.1732971,-0.40367842,-0.050741784,-0.15068075,0.46572956,-0.48762062,-0.20171326,0.50790906,-0.08884705,0.44625884,-0.4358382,-0.049829006,-0.060526967,0.4267,0.04646049,-0.2570116,0.550826,0.41275468,0.4176624,0.20966841,-0.48918074,-0.17682186,-0.1968963,0.3419538,0.23730558,-0.24678278,-0.5053977,-0.19442013,0.07712849,0.055791616,0.5489682,0.083901845,-0.2320981,0.029862758,-0.07280535,-0.080094986,0.4519818,0.5145988,-0.2622759,-0.3010051,0.18018574,0.5851133,0.12789582,-0.17284662,-0.06767735,0.02330758,-0.5963123,-0.18005751,0.03434004,-0.09928683,0.64806396,-0.14626494,-0.050857287,0.89542377,-0.14202489,-0.04252078,-0.01167831,-0.006889664,-0.11950894,-0.3724264,-0.22405513,0.21015123,-0.6855395,0.11042103,-0.3094657,0.7356051,0.19805591,-0.8137224,0.2598728,-0.559699,0.20893739,-0.034226708,0.6565732,0.73127204,0.48968077,0.70262426,0.75961655,-0.3864973,0.12282122,-0.062173165,-0.5650118,0.251838,-0.2561513,0.1117347,-0.4783091,-0.03072658,-0.25350267,0.08875757,-0.032166123,0.46107513,-0.48645225,-0.114514515,0.41424116,0.757759,-0.3254534,-0.04186223,0.58233654,1.0672743,1.0099138,0.08010439,1.180746,0.20970191,-0.16469969,0.19998851,-0.16789728,-0.664782,0.18028858,0.32871148,0.046603505,0.24524392,-0.08699436,0.01231955,0.4238384,-0.50761026,0.034383558,0.02249418,0.5647908,0.056389425,-0.23028126,-0.48912686,-0.19815573,-0.064778216,-0.0782123,-0.11541168,0.37973595,-0.101835795,0.23637867,-0.1865543,1.3346435,-0.083826676,0.10381853,0.2111381,0.5823442,0.30898637,-0.034395568,-0.049350914,0.4270589,0.29959103,0.11767345,-0.61260504,0.27381352,-0.4151998,-0.5251075,0.027034678,-0.5463709,-0.055607233,0.07858913,-0.45498234,-0.0145057645,-0.028597264,-0.19033371,0.58024555,-2.6877518,-0.2938913,-0.10078642,0.303489,-0.28841037,-0.0629688,0.0065629897,-0.5598818,0.39406446,0.18628937,0.5714607,-0.6887137,0.55528396,0.5991085,-0.52271754,-0.11049878,-0.65277326,-0.12781559,-0.20801383,0.493271,0.114857204,-0.16554557,-0.09344782,0.27524793,0.87207043,0.093153015,0.3002043,0.4296645,0.17989609,-0.03382369,0.6798242,-0.1587988,0.5133556,-0.202782,-0.21395487,0.20469688,-0.35466173,0.42564493,-0.20022823,0.03476812,0.5380484,-0.4803176,-1.1618528,-0.5914172,-0.4288901,0.93808204,-0.4010855,-0.3765608,0.30215943,-0.23839444,0.13338946,0.046674833,0.6222317,-0.07557407,0.39479098,-0.72743165,0.14152883,-0.002272278,0.07190405,0.15663913,0.0016990831,-0.42595312,0.75814444,-0.040094607,0.5482714,0.2572772,0.11675103,-0.3382005,-0.44961393,0.07505357,0.6445188,0.26905882,-0.041265503,-0.17757207,-0.3093766,-0.10357798,-0.19103721,-0.035327036,0.74806345,0.8582343,-0.18362263,0.10525047,0.16056341,-0.014403133,-0.047532883,-0.16923761,-0.23322178,-0.027406126,0.17153373,0.50955683,0.9042537,-0.25452244,0.2801179,-0.14615537,0.4160214,0.109782845,-0.56721455,0.5541537,0.67040837,-0.08389528,0.03781422,0.5641347,0.6960377,-0.45882273,0.59636116,-0.5283776,-0.20891425,0.80391437,-0.06457179,-0.42879757,0.17040554,-0.36246565,0.034037307,-0.86100703,0.31007987,-0.51179844,-0.38629162,-0.39166778,-0.09063649,-3.402391,0.27159238,-0.17625707,-0.046813205,-0.3320545,0.031871755,0.33597878,-0.7643624,-0.5994126,0.15621215,0.21253936,0.668673,-0.13312843,-0.05543611,-0.375497,-0.30270383,-0.036691338,0.2921552,0.050482895,0.28597838,-0.19132791,-0.44852987,-0.1456363,-0.083977506,-0.54388964,0.24196164,-0.6382189,-0.5051308,-0.14237887,-0.6274283,-0.32495704,0.62272894,-0.39990425,0.107819825,-0.09616424,0.13971573,-0.29655555,0.20464768,0.051355608,0.3445263,0.08230041,-0.09904191,-0.0015924114,-0.23903435,0.47130293,-0.05301875,0.51094407,0.0106063485,-0.082400136,0.2196258,0.5891894,0.7338331,-0.20202534,1.0533772,0.27907425,-0.074802615,0.26942512,-0.38745043,-0.41148165,-0.6675774,-0.47410694,-0.2159009,-0.3673074,-0.4914572,0.12233441,-0.35349414,-0.79525787,0.6483612,-0.013191561,0.4183644,-0.11795162,0.1409329,0.41388416,-0.3223648,-0.030369703,0.008368463,-0.15421858,-0.73022485,-0.25805634,-0.62213045,-0.49185622,-4.5322457e-05,0.6015877,-0.46299696,-0.08637753,-0.124424666,-0.13319932,-0.026422154,0.12365436,0.004083737,0.10207264,0.39749897,0.12471159,-0.58820933,0.52128357,-0.025244895,-0.103259,-0.45142847,0.13856459,0.40738207,-0.7617569,0.91181946,0.39743346,0.070159025,0.0730823,-0.78605753,-0.339522,0.10684305,-0.1171488,0.5072947,0.19746272,-0.8893499,0.4703445,0.4405737,-0.662826,-0.71639836,0.35122567,-0.15983503,-0.45890462,-0.10166817,0.3934949,0.070529066,-0.08600222,-0.20883848,0.28783247,-0.515078,0.199282,0.26988667,0.038644247,0.294812,-0.0128846355,-0.32434002,-0.8969034,0.04715585,-0.60103047,-0.24680749,0.4004028,-0.18081093,-0.28543058,0.1608573,0.27271703,0.29811186,-0.29424745,0.24881037,0.025271488,-0.5091419,0.33390334,0.58973014,0.40031955,-0.40810382,0.52447486,0.19415596,-0.12899981,-0.15783651,0.14328343,0.26726705,-0.0753491,0.53694767,-0.37550342,-0.11546975,0.28639084,0.7661847,-0.00903346,0.4937704,0.08764967,-0.005877942,0.42258042,-0.007089982,0.23772722,0.0452234,-0.43098563,0.15838835,-0.16822958,0.1094327,0.5660355,0.30313483,0.19583939,0.33103612,-0.12754656,-0.022615762,0.45455128,-0.027574796,-1.3575407,0.5609754,0.31699422,0.76404405,0.67690605,0.22979297,-0.19034794,0.66006845,-0.2238968,0.085810535,0.53878295,0.011382433,-0.61181027,0.9074096,-0.6433788,0.3543984,-0.103126444,-0.0875783,0.093232796,0.17820057,0.4204806,0.72385305,-0.049665146,0.04310694,0.020096563,-0.16153343,0.10524988,-0.5246471,-0.120999604,-0.3220312,-0.4344892,0.6738459,0.5011865,0.45979336,-0.16261776,-0.085122734,0.05038884,-0.28117415,0.33015913,-0.2376779,-0.055070955,0.25265467,-0.4240803,-0.14038637,0.58157134,-0.040232375,0.15415595,-0.25714538,-0.05624021,0.08670178,-0.2254309,-0.12936115,-0.059044957,-0.8660908,0.08852335,-0.43860304,-0.38748354,0.63236016,-0.4125727,0.04341372,0.16170527,0.15081325,-0.1088229,0.31501836,0.091711245,0.6165912,0.013578672,-0.30725625,-0.22653148,0.10611402,0.061903503,-0.31578147,0.08842276,-0.36887354,0.12308378,-0.5036528,0.6735988,-0.07463885,-0.3567686,0.04264905,-0.316669,-0.17444007,0.5853949,-0.23120962,-0.33495125,-0.16556923,-0.16143742,-0.2656535,-0.22068049,-0.17782895,0.33092272,0.089445114,0.041172743,0.0370688,-0.28433374,-0.048944823,0.6188476,-0.040165484,0.4546076,0.24451481,-0.10552113,-0.13390413,0.10702476,0.2815937,0.48931196,0.13484806,-0.041948613,-0.5201488,-0.20546755,-0.39595604,-0.22292784,-0.1501534,0.27123407,0.096815,-0.15231197,1.027493,0.09020612,1.2334862,0.0861147,-0.43138164,0.07567159,0.59109783,-0.11230003,-0.037378386,-0.37429377,0.8573228,0.6183976,-0.21361366,-0.10161387,-0.5086405,-0.01743864,0.29970476,-0.4447641,-0.103708915,0.05848699,-0.47306645,-0.28083932,0.14308462,0.32003802,0.19152705,-0.0606489,-0.14038421,-0.060459215,0.24060948,0.4259513,-0.6469046,-0.19618091,0.19769284,0.4105152,0.07063143,0.09095231,-0.37351125,0.48002243,-0.6532039,0.30161548,-0.5667676,0.10270249,-0.4229169,-0.43607858,0.118593745,-0.059827182,0.27980363,-0.18120201,-0.31083208,0.06628377,0.37574273,0.13708374,0.21299829,0.76549584,-0.30144906,-0.0008304073,0.12357703,0.63130164,1.2112659,-0.55643815,-0.19169666,0.23487781,-0.46721146,-0.7200527,0.4442794,-0.48552328,-0.068246916,-0.22141185,-0.5537593,-0.7347142,0.052241333,0.15974593,0.0666644,0.091302596,-0.6812363,-0.16822568,0.30197442,-0.38300616,-0.30602878,-0.2302571,0.5043164,0.8262275,-0.2966277,-0.3829289,0.016023828,0.1270304,-0.20919728,-0.46251935,-0.06312752,-0.14939083,0.340349,-0.0063470784,-0.31063557,0.018542558,0.17240638,-0.42647713,0.07417952,0.291244,-0.18573496,0.31063417,-0.28064877,0.021472178,1.0287845,-0.23030978,-0.1633628,-0.46899706,-0.53948444,-0.92510957,-0.37150973,0.4779158,0.06282313,0.07535934,-0.29334,-0.006380017,-0.045499068,-0.06411804,0.027989324,-0.39620987,0.25285158,0.050961412,0.5404214,-0.17423996,-0.77558064,0.08683644,0.2596536,0.06700484,-0.6872202,0.69075406,-0.2747651,0.88920856,0.010796685,-0.1912191,0.047421787,-0.40447652,0.076822795,-0.40438583,-0.026328702,-0.69104725,-0.05597863,303 -649,0.3058379,-0.1556239,-0.5409863,-0.24325302,-0.17711471,0.0018576934,-0.12324579,0.08489941,0.19743249,-0.20556958,-0.059175346,-0.19982089,0.053835772,0.5520785,-0.078544706,-0.8998862,-0.14380886,0.07522872,-0.6775067,0.35065746,-0.5008762,0.2533513,0.14517382,0.5046208,-0.010323318,0.3118525,0.32755274,-0.16381034,-0.025252085,0.064576074,-0.27682677,0.21331406,-0.6537129,0.051575206,0.17163165,-0.21494436,0.036313623,-0.29432285,-0.25667667,-0.6678458,0.41933548,-0.87905854,0.296563,0.15381888,-0.36403844,0.24107958,-0.14878127,0.30352402,-0.53450304,0.049448308,0.07708561,-0.31953877,0.06727097,-0.1685604,-0.09394952,-0.41230446,-0.4818806,0.0830502,-0.5194701,-0.26704085,-0.25550646,0.075081386,-0.39491203,0.035586834,-0.2828065,0.24667613,-0.545478,-0.20125414,0.33455795,-0.2124442,0.2804298,-0.2768954,-0.12211358,-0.1428111,0.30125368,-0.0452592,-0.18921243,0.2579853,0.33765456,0.58086514,0.08918809,-0.24686524,-0.15406567,-0.046845064,0.23103414,0.40449172,-0.08765503,-0.43787172,-0.23481444,-0.19628134,-0.00086033344,0.34820002,0.008281715,-0.56440216,0.04398732,0.15044202,-0.18769155,0.101052575,0.41659722,-0.37557933,-0.20890018,0.27278057,0.48039946,0.075623974,-0.107785575,0.103138514,0.011843816,-0.54490876,-0.2915899,0.28408232,-0.0975539,0.6988183,-0.10479967,0.2007023,0.7624825,-0.19693811,0.12699112,-0.3488705,-0.28718567,-0.23144317,-0.2902704,-0.0793557,0.2330521,-0.44333854,0.16264145,-0.31297448,0.69511867,0.18247503,-0.87692523,0.38629156,-0.5164745,0.2964607,-0.25963575,0.73992735,0.6552808,0.23668583,0.36819422,0.83908856,-0.67257017,0.053379618,-0.04044215,-0.49016497,0.059538763,0.021320347,-0.0028620064,-0.3931596,-0.05657739,0.02058396,0.0007517086,-0.014778852,0.0023788488,-0.36473566,0.07350773,-0.024503928,0.5328853,-0.43563905,0.061608728,0.7743744,1.013361,0.85072076,0.1769908,1.1874816,0.4346692,-0.16863559,0.2725188,-0.23963386,-0.6470639,0.0709679,0.4505214,0.3871908,0.2793229,0.008316434,0.17990293,0.44627178,-0.2606708,0.22937539,-0.22583853,0.15734197,-0.02563041,-0.07074605,-0.49181396,-0.22865292,0.017043391,0.04530189,-0.122609705,0.2624017,-0.069243535,0.40687844,0.10241675,1.4347373,0.09422595,0.14750545,-0.0638276,0.40486887,0.19696042,-0.14449474,-0.16654465,0.39117724,0.4322022,-0.085753925,-0.7245074,0.09452866,-0.18773247,-0.508241,-0.15154055,-0.45146748,0.07929742,-0.083663,-0.4720097,0.0028078442,0.16260967,-0.33835074,0.46399102,-2.4090345,-0.0967629,-0.23626849,0.23842093,-0.21521927,-0.25006962,-0.022617463,-0.30361846,0.2704696,0.48050097,0.22256204,-0.72617,0.27866188,0.30926582,-0.13505462,-0.09281639,-0.69171894,-0.08217573,-0.06341683,0.27788416,-0.021599503,-0.05267708,-0.12493241,0.30727768,0.5715611,0.038837187,-0.07606644,0.14194681,0.3324348,0.13499689,0.5812077,0.23671624,0.5628203,-0.09728238,-0.13372271,0.31899133,-0.18663344,0.3793938,0.09725721,0.25552255,0.18153678,-0.46688133,-0.8035554,-0.73218125,-0.6434626,1.2953525,-0.59422815,-0.364658,0.35851416,0.090177245,-0.15724032,-0.021515576,0.473042,-0.17727885,0.039408945,-0.69823676,0.11144286,-0.043312643,0.26049554,-0.041345358,0.07045642,-0.22813934,0.6376243,-0.17015727,0.38507235,0.49729654,0.13951613,0.028952671,-0.54142773,0.12698579,0.7822056,0.24405473,0.010495369,-0.15081552,-0.22231524,-0.017358629,-0.15705895,0.16438235,0.35729977,0.9172655,-0.024138134,0.054838262,0.2562988,-0.08605485,-0.07110222,-0.03756591,-0.26117572,0.07328292,-0.008960476,0.517248,0.55876917,-0.11744178,0.31052622,-0.19159888,0.24351303,-0.02176421,-0.46542004,0.6207381,0.923645,-0.10209696,-0.09152404,0.61075187,0.50550747,-0.44696173,0.37927902,-0.5504979,-0.104691654,0.7283064,-0.0028427702,-0.426943,0.13785706,-0.29811662,0.032670055,-1.0358104,0.13146277,0.024230052,-0.3645503,-0.39648598,-0.07115343,-4.5157537,0.24768089,-0.2487621,-0.20089494,-0.110201046,-0.2631065,0.41845196,-0.57236505,-0.5828475,0.12981084,0.03323801,0.41287228,-0.023016023,0.148185,-0.356936,0.045139953,-0.21281508,0.16589385,0.07762062,0.20974873,-0.05366717,-0.39486995,-0.052942015,-0.2913295,-0.62504375,0.11712472,-0.38254073,-0.5506036,-0.24781737,-0.4709563,-0.38013157,0.59699273,-0.31465477,-0.056852184,-0.24313857,-0.097238116,-0.33615956,0.4018167,0.2428337,0.31517547,0.09539977,0.1157138,-0.32912084,-0.35745448,0.10353327,0.06166138,0.2431817,0.21734351,-0.09614064,0.1370813,0.49030507,0.67426044,0.03183379,0.5303016,0.38704604,0.040872496,0.22239639,-0.46982008,-0.22069965,-0.7617193,-0.5425686,-0.2846718,-0.4028155,-0.6450794,-0.2759123,-0.26019222,-0.73577726,0.42829126,0.0118036885,0.07826264,-0.061547086,0.17470981,0.3746075,-0.052969053,-0.021258144,-0.20518658,-0.10989688,-0.6273502,-0.35511371,-0.7126652,-0.5743733,0.21240237,0.85240227,-0.064808324,-0.19537805,-0.10352809,-0.33231178,0.08974747,0.0353443,0.20490687,0.4107649,0.36661085,-0.11731928,-0.6407791,0.5646465,0.02221045,-0.109316655,-0.65611196,0.04126466,0.6548029,-0.7636581,0.65451837,0.29724962,0.1566614,0.2445154,-0.42862958,-0.52811056,0.0918701,-0.25123596,0.53304935,0.1636296,-0.6242508,0.4529494,0.27483246,0.064915344,-0.653134,0.44933012,-0.04917042,-0.23953086,0.2654929,0.30791855,-0.21362135,-0.055603854,-0.14146766,0.08855089,-0.4398443,0.25748345,0.59681386,0.18958661,0.3557803,-0.04153844,-0.17915915,-0.5828367,-0.025101505,-0.6044301,-0.15408665,0.14204942,0.02014914,0.0544476,0.11118833,-0.1500551,0.43877652,-0.36166096,0.15264112,0.08317527,-0.18453696,0.28638917,0.49593508,0.1561289,-0.5163398,0.5846666,0.039246935,0.031699207,-0.18810298,0.022275753,0.5320658,0.35002086,0.29260293,-0.16551341,-0.13870662,0.1468348,0.5973662,0.2049186,0.4872545,0.17774184,-0.036772404,0.4710766,0.26697636,0.15134963,0.025394747,-0.13842425,0.1306037,0.11459185,0.17974475,0.47169283,0.1868886,0.3566044,-0.026861113,-0.15990724,0.22661148,0.21881422,-0.14128709,-0.8990792,0.3892765,0.28576767,0.44880554,0.75404304,0.02511334,-0.04300775,0.36676705,-0.47169986,0.14494325,0.29850584,0.055804566,-0.7091744,0.6703459,-0.6027857,0.29924035,-0.1569811,-0.062783495,0.15556376,0.24928239,0.25830346,0.76494545,-0.007429453,0.06617788,-0.09771147,-0.15275168,0.05491024,-0.42271,-0.0034903747,-0.5218497,-0.35267007,0.39256185,0.36103228,0.32429904,-0.28081608,-0.12205525,0.12495257,-0.16696641,0.037568763,-0.12587167,0.12373541,0.16690944,-0.6697206,-0.5867529,0.59652895,-0.28391498,0.009160883,-0.037730437,-0.48263183,0.20837352,-0.32237956,-0.26370573,-0.019667387,-0.68392956,0.18318231,-0.30904478,-0.360906,0.14847194,-0.5799515,0.38584077,0.17808339,0.025181677,-0.3685851,0.07794098,0.037573017,0.9042369,0.07002722,-0.15564157,-0.44369,0.09224547,0.3704311,-0.25048226,-0.116360076,-0.37215474,-0.10360896,-0.4579902,0.4322552,-0.007619812,-0.2279531,0.026591122,-0.12251715,-0.13227859,0.4921495,-0.3634469,-0.17386173,0.045203157,-0.064893946,-0.2158952,-0.052795522,-0.4170714,0.26096433,-0.02962459,0.112506874,0.18673088,0.04945677,-0.016921034,0.44651872,0.06923548,0.25501573,0.2102196,-0.23431015,-0.37055457,-0.12436405,0.060718235,0.19804558,0.15000273,-0.01837769,-0.30283278,-0.37224102,-0.18493924,0.08098699,-0.25554365,0.28341198,-0.040971436,-0.44944668,0.68641484,0.22168233,1.2412751,0.07336152,-0.31511334,0.0875051,0.4278494,0.12993316,0.10009417,-0.24353899,0.7697357,0.509393,-0.120136455,-0.31244066,-0.33966047,-0.30910093,0.23784825,-0.21146637,-0.0760016,-0.011934102,-0.61213523,-0.33192366,0.10035539,0.3338723,0.16274048,0.17599896,0.005899842,-0.017301457,0.09761793,0.5817868,-0.41081348,-0.11851515,0.27689824,0.08584769,0.11586975,0.2501702,-0.19082625,0.51792634,-0.587145,0.12405607,-0.63282835,0.057670303,0.15815815,-0.24720448,0.12271209,0.0025218038,0.36624497,-0.20948723,-0.27836412,-0.27231228,0.81923485,0.3257075,0.33500415,0.8554911,-0.1725534,0.112247705,0.15013419,0.5431284,1.2372197,-0.13267261,0.056861307,0.2521898,-0.22512099,-0.5249501,0.24653003,-0.20627047,0.07203801,-0.18181099,-0.3933318,-0.5412486,0.2533795,0.043759346,-0.13483393,0.1885212,-0.49424738,-0.30433467,0.5274813,-0.27166316,-0.3342398,-0.5052194,0.44386628,0.7435796,-0.52024466,-0.31678474,0.04691244,0.09250045,-0.17184673,-0.41560012,0.055864327,-0.20075665,0.35290357,0.13212651,-0.37176555,-0.01951081,0.30972993,-0.32216355,0.2002897,0.32151362,-0.20898056,0.19983569,-0.032291017,-0.14808336,1.1457375,-0.02217224,-0.12145496,-0.8144157,-0.5017439,-0.9511967,-0.44627625,0.6226879,0.0783553,0.04038942,-0.47912616,0.04571649,0.09119276,0.11468521,0.057020005,-0.41836765,0.33208826,0.084348455,0.6403438,0.11233669,-0.7758864,0.021124033,0.0292161,-0.11480265,-0.5030729,0.64245427,-0.17887828,0.64166516,0.0063079847,0.057657257,0.027065726,-0.55254734,0.22178903,-0.3935177,-0.26608503,-0.6737449,0.13409077,304 -650,0.47078353,-0.11855066,-0.7087036,-0.10919465,0.017046558,0.15623331,-0.29674533,0.4230941,-0.008211942,-0.5600849,-0.14987685,0.19703712,-0.18192169,0.27797288,-0.2848237,-0.5248858,0.00093505014,0.2923364,-0.33530828,0.37928736,-0.529774,0.3703206,-0.096659735,0.23517871,-0.02078071,0.08062203,0.4316219,0.15452594,-0.036112323,-0.2015606,0.22115809,0.29112595,-0.57926834,0.39884037,-0.09607733,-0.34686595,-0.0682821,-0.20371014,-0.24961585,-0.75886905,0.3882356,-0.93842846,0.6840992,-0.09062147,-0.37771896,0.16962062,0.15357915,0.18821573,-0.24663165,-0.014917811,0.11269759,-0.21545075,-0.40941855,-0.15056378,-0.09085362,-0.33756644,-0.6789111,0.090769544,-0.59855855,0.09657097,-0.32264093,0.3165485,-0.3266787,0.19515404,-0.16319522,0.5165189,-0.35795724,-0.2224172,0.20940956,-0.11914653,0.13015844,-0.74274623,-0.09162323,-0.19259666,0.10877088,-0.2171591,-0.14211385,0.23759057,0.18595831,0.6277853,-0.016179534,-0.24489951,-0.35429728,-0.07066636,0.18588568,0.40830606,-0.27346757,-0.4463773,-0.309271,-0.11971824,0.53287023,-0.047834046,0.0910354,-0.11013693,0.06707917,0.059064653,-0.2234448,0.3610617,0.69308937,-0.39254567,-0.15641485,0.5256355,0.70174974,-0.117889866,0.005162821,0.08935534,-0.1268486,-0.48861635,-0.18568245,-0.02713871,-0.24079186,0.3899838,-0.14968953,0.1519788,0.4164147,-0.25773466,-0.06678191,0.29499784,0.000779074,-0.013241272,-0.19261466,-0.54152864,0.37295553,-0.3719586,-0.0036248176,-0.28123024,0.63809055,0.01094226,-0.7824741,0.37920597,-0.23550497,0.06697101,-0.079199634,0.7731114,0.67912865,0.6610194,0.19348803,0.8523994,-0.5662221,-0.14680853,-0.01641308,-0.1629171,0.078813,-0.12744223,-0.18520729,-0.32028463,0.08356668,0.15720524,-0.17785653,0.065686,0.6748456,-0.4820611,-0.18106171,0.037432414,0.5302294,-0.38786513,-0.102695234,0.77072644,1.2341207,1.0764757,0.0489401,1.2877532,0.29555386,-0.14836214,-0.27577782,-0.038492315,-0.8454683,0.3962559,0.4593132,-0.10530105,0.47270474,0.218543,-0.13776071,0.36397582,-0.62361276,-0.313748,-0.16290428,0.45056474,-0.032855876,-0.010110745,-0.56257755,0.0029782148,0.3516397,-0.024750806,0.283505,0.3687687,-0.3873895,0.48166677,0.17818049,0.9336253,-0.31269258,0.22926813,0.13575676,0.25003302,0.19554329,-0.05958345,-0.01730962,-0.039735757,0.43192118,0.012832422,-0.618934,0.01078889,-0.1688353,-0.5599512,-0.31107503,-0.16081418,0.09592675,-0.060563482,-0.0023391615,-0.23862149,-0.039906006,-0.4753167,0.228161,-2.3320491,-0.25636408,-0.13984719,0.22964098,-0.14949605,-0.43411872,-0.23344499,-0.4878403,0.56740385,0.32477358,0.43738672,-0.5670813,0.40409455,0.27367273,-0.35729665,-0.16417429,-0.6219663,0.06277374,-0.19351003,0.37617314,0.062963955,-0.33018652,-0.030186048,0.354477,0.5621447,0.02774883,-0.060392655,0.5531711,0.20235561,-0.008707175,0.29554394,-0.004249912,0.60787964,-0.49457186,-0.30322936,0.5317227,-0.46205285,0.20318407,-0.28828576,0.18382035,0.25865176,-0.49203014,-0.96953046,-0.6985767,-0.2888317,1.5624828,-0.36186913,-0.5937621,0.10834455,0.013330107,-0.40050924,0.03287223,0.35254493,-0.38735098,-0.0062542283,-0.8489171,0.026769735,-0.12802733,0.3507985,-0.11598861,0.05068094,-0.65618074,0.61014616,-0.27358672,0.5278892,0.44336012,0.3793844,-0.43362778,-0.5032177,0.064056225,1.3401307,0.50439036,0.12044974,-0.27887,-0.10142549,-0.1687563,-0.10317286,0.0864339,0.50574875,0.7474315,0.075504124,0.09229489,0.22617052,-0.12414937,0.10697523,-0.06018565,-0.44494453,-0.2499269,0.15550177,0.7247268,0.35593864,-0.20071037,0.2595354,-0.10233085,0.26955622,-0.19437853,-0.37527606,0.52030075,0.86698246,-0.26492766,-0.43511522,0.75154793,0.39748648,-0.22040719,0.7138592,-0.74260956,-0.47863337,0.16961966,-0.1423735,-0.24571507,0.08425302,-0.45962617,0.2950742,-0.91186273,0.40664613,-0.31812716,-0.69755036,-0.7514128,-0.19829409,-3.2488973,0.23227254,-0.21544477,-0.076711334,-0.11902834,-0.20945357,0.5164852,-0.51291424,-0.72063416,0.1257039,0.16992092,0.67734784,-0.03664093,-0.102412075,-0.116238795,-0.29610988,-0.1565809,0.20235474,0.34718233,0.19346283,0.23726964,-0.51952046,0.029396841,-0.21359554,-0.4489318,-0.19426605,-0.4625201,-0.26785666,-0.21932903,-0.47089434,-0.28149536,0.63099515,-0.39651057,0.044682544,-0.27510962,0.19843353,0.023327768,0.37403056,-0.31282732,0.1809997,0.13029388,-0.3543638,0.18974553,-0.17413968,0.3529814,-0.014376977,0.21346578,0.45359483,-0.55741954,0.023495693,0.5442054,0.6997754,-0.02263528,0.9181434,0.5689714,-0.09174791,0.12475993,-0.17014049,-0.25891495,-0.57553107,-0.29722854,0.12695378,-0.50793445,-0.33353564,-0.046695974,-0.35677212,-1.1252878,0.6726032,-0.2649191,0.32071292,-0.07855213,0.4619915,0.30880404,-0.038114734,-0.13052474,-0.17007142,-0.22591455,-0.2948722,-0.42957255,-0.7215861,-0.48086688,-0.2040764,1.3063018,-0.16435812,0.060903564,0.01254339,-0.017343283,0.19285771,0.09080986,0.2457502,0.11580718,0.31000522,0.14307001,-0.6279584,0.20645434,-0.31958386,0.010053525,-0.61902577,0.14369221,0.6959865,-0.56744504,0.36594582,0.59370935,0.08626097,-0.2690225,-0.7729517,-0.12756619,0.10873151,-0.09273263,0.62645745,0.34952858,-0.8516203,0.7129227,0.3431268,-0.32080188,-0.7946736,0.37766123,0.053010747,0.08697668,-0.14173214,0.46624425,-0.19827828,0.020155929,-0.29976895,0.19658555,-0.35563594,0.26509267,0.12160147,-0.13853222,0.6308421,-0.4536847,-0.15821497,-0.6822853,-0.07129433,-0.72806126,0.006403177,0.052077875,-0.0048983255,-0.014278495,0.11539734,-0.046721797,0.7146379,-0.5467444,0.042837657,-0.12408941,-0.46267134,0.47441167,0.6516788,0.3715434,-0.27506536,0.6185516,0.007923521,-0.11743653,-0.49545592,-0.09470913,0.5744337,0.009791017,0.16984454,0.061996046,0.12936264,0.30777806,0.64710927,0.34390244,0.47586286,0.08192326,-0.2935714,0.16157572,0.11220518,0.2830796,-0.027095221,-0.43756703,-0.14267768,-0.16495946,0.11942502,0.46558952,0.18138696,0.60070646,-0.27340582,-0.21008825,0.1166428,-0.0035300346,-0.06493114,-1.2419446,0.5857377,-0.005725008,0.58585286,0.41080257,0.05194082,0.09407386,0.49437472,-0.11083751,0.008208286,0.18221903,0.054528926,-0.3255615,0.5404076,-0.69408214,0.35471052,-0.044141926,0.09643555,-0.017570872,0.0032535149,0.5241041,0.8857132,0.04799893,0.23975998,-0.081029736,-0.0896529,0.24665986,-0.30083704,0.41157407,-0.36084655,-0.1465244,0.889905,0.2343687,0.5401375,-0.09197552,-0.16190082,0.026025971,-0.143411,0.19823082,-0.16476782,0.1534794,-0.37076408,-0.52652305,-0.24590541,0.36699268,0.5276288,0.15691978,0.078438774,-0.2519673,0.20623611,0.029152807,-0.053010423,0.007120506,-0.46583194,-0.11647114,-0.24189447,-0.27737486,0.29898354,-0.38515538,0.1628609,0.1757337,0.08578697,-0.4679982,-0.009877091,0.18010423,0.64907587,0.11370211,-0.22005361,-0.24662375,0.08101165,0.27045006,-0.36956698,0.10794711,-0.3143973,0.13344349,-0.6579867,0.41553137,-0.2904576,-0.3170973,0.4598292,-0.24717912,-0.1139382,0.47119838,-0.21763131,-0.13035299,0.19050871,-0.20033875,-0.17292716,-0.40629193,-0.26135474,0.065471336,-0.08917032,-0.026422087,-0.13900341,-0.024702348,-0.1575205,0.40987095,0.2402905,0.10499908,0.6260771,0.24653251,-0.4967044,-0.090307474,0.031149754,0.66544753,0.0046463576,-0.13622367,-0.5784031,-0.6728195,-0.2105965,0.28287023,-0.0765481,0.12570389,0.1112016,-0.4224993,0.6211684,0.06941192,0.8901622,0.028275423,-0.3192988,-0.1999746,0.7309989,0.05127174,-0.17744239,-0.20572431,1.020816,0.69478863,-0.26488063,-0.1012477,-0.57755226,-0.12548915,0.20238596,-0.33205777,-0.33621165,-0.19580522,-0.61051995,-0.26720476,0.30485427,0.42187995,-0.033637784,-0.094452366,0.18172987,0.32593074,0.17946087,0.26546595,-0.5538183,0.164903,0.5632567,0.13299687,-0.039852627,0.12418527,-0.38291252,0.15737702,-0.697224,-0.050334197,-0.24233821,0.09583926,0.005070528,-0.45567575,0.3205856,0.14642893,0.2595321,-0.14966123,-0.3182368,0.011952902,0.48649704,0.031068513,0.07719103,0.7120184,-0.31111652,0.14374259,-0.0068207243,0.39712965,1.2038133,-0.23118803,0.17449428,0.10049543,-0.2458226,-0.64036584,0.3309511,-0.39920232,0.25598356,-0.18255237,-0.44611895,-0.5527657,0.21717669,0.17241032,0.062174734,0.17062117,-0.3578698,-0.42498603,0.056128856,-0.3623408,-0.063114494,-0.1567567,-0.08529287,0.60956836,-0.3836014,-0.28096244,0.07575267,0.6606339,-0.15822728,-0.72100043,-0.14417471,-0.24287303,0.2646163,0.15671286,-0.2652138,-0.09708619,0.016476393,-0.42262834,0.191705,0.22191039,-0.25449777,0.038391396,-0.32021806,0.250171,0.48263714,-0.06385783,0.13292998,-0.5398435,-0.37040117,-1.094698,-0.21443762,0.32989663,0.23539744,-0.059853777,-0.855325,0.08644732,-0.38228434,0.07979318,0.080891095,-0.3547854,0.3469583,0.14751007,0.46651077,-0.044511136,-0.6468863,0.04242966,0.024743594,-0.14508882,-0.33268547,0.77214694,0.055997536,0.8654014,0.06853946,0.20202805,0.10525792,-0.83992296,0.17208593,-0.21958512,-0.29197907,-0.6131825,0.038733426,312 -651,0.27585092,-0.2706758,-0.4821799,-0.17857526,-0.20575942,0.26084107,-0.14715181,0.26737326,0.19940928,-0.31684384,-0.068095736,-0.09968241,-0.09909804,0.4935908,-0.07057873,-0.73941714,-0.04934778,-0.045299407,-0.6378618,0.29992026,-0.5214259,0.27546766,0.098981254,0.47338587,0.07154376,0.3204662,0.14947072,-0.06342547,-0.09790724,-0.110076316,-0.17467941,0.10296451,-0.59732115,0.12864545,0.060493,-0.22275805,-0.122224055,-0.42904618,-0.26484787,-0.62374014,0.3627009,-0.8675877,0.34456584,-0.13038148,-0.38035405,0.12576804,-0.09925724,0.32992655,-0.3092995,-0.016645074,0.1793348,-0.10757505,0.10322281,-0.15271623,-0.11382938,-0.47861516,-0.5470141,0.08398034,-0.50316226,-0.18857537,-0.065808296,0.15627632,-0.3311713,0.17669024,-0.16961244,0.32070085,-0.3882945,-0.013069093,0.2741768,-0.2927254,0.16936022,-0.4207691,-0.13340716,-0.08232916,0.2289579,-0.00020417801,-0.18438402,0.07153105,0.4735995,0.58346677,-0.0045605185,-0.12698244,-0.18400568,-0.10360587,0.17150429,0.5481561,-0.022449898,-0.431263,-0.2907994,-0.16656646,0.16488674,0.1539113,0.1987229,-0.4667927,0.02745339,-0.014062403,-0.2534331,0.23847087,0.45867968,-0.31815705,-0.19395575,0.3222858,0.51244754,0.067084186,-0.18935345,0.14603269,0.013401877,-0.45909163,-0.1206516,0.11097732,-0.1001866,0.58569044,-0.10698489,0.39770553,0.722511,-0.043314584,0.35222933,-0.10168958,-0.22335196,-0.2791273,-0.30652884,-0.10888036,-0.01569443,-0.3927081,0.003355329,-0.2945145,0.7012186,0.14765298,-0.9901944,0.39181864,-0.4223922,0.1063846,-0.13897315,0.65971065,0.6867345,0.2626193,0.17046516,0.6907657,-0.55485344,0.011893117,-0.02442818,-0.29750153,0.1259236,-0.08007913,0.11669334,-0.47254893,-0.023260068,0.12452852,0.005008092,-0.02772174,0.24277364,-0.37197545,-0.045392375,-0.058997113,0.6659178,-0.38446248,-0.06458695,0.799585,1.0111222,0.7214522,0.14182077,1.3589541,0.34214953,-0.027529286,0.2264479,-0.30098632,-0.56451327,0.13418825,0.41284788,0.47111323,0.3933077,0.058587376,0.024337191,0.5653862,-0.09523304,0.2095159,-0.093226925,0.12426163,0.050142623,-0.12014067,-0.26220274,-0.31066245,0.19191024,0.05336976,0.021214526,0.29510525,-0.24715516,0.55604094,0.19186586,1.6009268,-0.075804606,0.16958605,-0.03777868,0.40029445,0.09970289,-0.29933426,-0.14519098,0.27936298,0.31890142,-0.1460372,-0.6314005,0.1660149,-0.12827352,-0.5638486,-0.16460826,-0.34227324,-0.2140881,-0.09552685,-0.43815142,-0.082256556,0.007658087,-0.32377994,0.34111103,-2.5651026,-0.23820983,-0.27632335,0.3268542,-0.34452137,-0.3122214,-0.06543779,-0.32299107,0.21490392,0.48049882,0.3076196,-0.8329915,0.43446767,0.36577055,-0.16659784,-0.22341944,-0.6700347,-0.044589557,0.029934768,0.2174696,-0.04532508,-0.065404154,-0.1700237,0.24066775,0.5930995,0.06855281,-0.04750859,0.1695896,0.5237137,0.14033026,0.50246996,0.09543231,0.5567119,-0.10765545,-0.07395134,0.32782745,-0.5083262,0.4917335,0.13770501,0.26950675,0.25904614,-0.40580562,-0.6940438,-0.79533124,-0.49057028,1.3166292,-0.46764275,-0.4243632,0.25215274,0.005944284,-0.31451637,-0.10178639,0.6211583,-0.13962267,-0.011733862,-0.7250872,-0.06343626,-0.22554165,0.32549235,-0.0895787,0.018468142,-0.27971572,0.6985982,-0.095169455,0.53651404,0.31046316,0.12628157,-0.098354265,-0.36664647,0.04009614,0.86075526,0.29427,0.060415845,-0.1344462,-0.12981471,-0.22901243,-0.2401507,0.10289807,0.5257565,0.66419196,0.19576328,0.022825507,0.32000974,-0.23642203,0.03493367,-0.09088676,-0.32390186,-0.08547454,0.08234663,0.6255688,0.7611923,-0.24570847,0.33127278,-0.29737416,0.13012362,-0.18781151,-0.51909006,0.6155514,0.6269341,-0.1645379,-0.1735277,0.44719827,0.41150236,-0.62498534,0.27934247,-0.49859598,-0.20361497,0.6145164,-0.010375523,-0.4206373,0.19661961,-0.28329355,0.009784672,-0.9633935,0.23239096,-0.14902073,-0.5062267,-0.48474562,-0.09686614,-3.7537549,0.21630113,-0.09865689,-0.38578665,-0.21933994,-0.23068087,0.3999139,-0.5946201,-0.46715766,0.08050413,0.06638668,0.44363695,0.030511416,0.173958,-0.36132428,-0.008333834,-0.2813781,0.21199283,0.046252362,0.23145153,-0.020362396,-0.26394576,-0.029615998,-0.26872176,-0.5236288,0.07647789,-0.59436,-0.68917537,-0.14126597,-0.376141,-0.23566176,0.6048362,-0.2909765,-0.04711026,-0.26882726,-0.14898556,-0.37170094,0.57069755,0.1538011,0.1327238,0.078240946,0.026084313,-0.2086189,-0.4327351,0.1837417,0.08084405,0.40793544,0.34881005,-0.1595917,0.1487588,0.55507886,0.6377618,0.18128523,0.53670067,0.20603155,-0.023081256,0.36067578,-0.36828595,-0.19345477,-0.49533755,-0.29725748,-0.056296103,-0.37545493,-0.47888023,-0.17153336,-0.24439773,-0.71445435,0.25734875,0.12854363,-0.063427396,-0.120155536,0.26305872,0.38368383,-0.05038878,0.03736063,-0.058911126,-0.15767814,-0.57077533,-0.45033106,-0.6697041,-0.66702396,0.41524285,1.0153235,0.044820823,-0.027968833,-0.0828389,-0.3778658,0.11650208,-0.013838727,0.21426226,0.16686174,0.21155876,-0.29935685,-0.6775882,0.5209572,-0.22223656,-0.19201726,-0.607103,-0.0079331035,0.7331108,-0.6129042,0.6359234,0.31232867,0.14756563,0.057170216,-0.43366602,-0.22523771,0.069419935,-0.2125267,0.40118298,0.23338835,-0.53324133,0.36220503,0.23024805,0.075637706,-0.6227877,0.43376276,-0.03852041,-0.038246486,0.07532064,0.35148913,-0.16234091,-0.13998426,-0.092558034,0.06562545,-0.51325274,0.17797525,0.447298,0.20222506,0.65387547,-0.010798097,-0.2162371,-0.43394783,-0.012873303,-0.5983061,-0.13224734,0.15138343,0.03261463,0.33757064,0.13235578,-0.09874054,0.38671395,-0.3907254,0.12025734,0.07657095,-0.14722627,0.31972572,0.49734005,0.32247272,-0.49788317,0.50708,0.088832684,0.1659595,-0.03387229,0.06330439,0.49868834,0.52039534,0.29238856,-0.16773976,-0.1733068,0.17048264,0.72224176,0.2597151,0.46252272,0.23127677,-0.14568454,0.38070253,0.09951002,0.13552417,-0.0469738,-0.31150442,0.009214585,0.07003736,0.22849461,0.4654745,0.08960828,0.423103,-0.09621068,-0.37701592,0.18023922,0.13926458,-0.18322222,-1.0882171,0.3023482,0.32954836,0.6503019,0.44302052,-0.0047868853,0.00019992315,0.48817113,-0.28295648,0.16533376,0.28195268,0.1070908,-0.6279797,0.6732064,-0.5924228,0.3162643,-0.14165217,0.06690483,0.15059407,0.045682278,0.29672647,0.80838054,0.012609353,0.035338398,-0.069325,-0.32587087,-0.024549764,-0.42827335,0.1851403,-0.5504212,-0.24097061,0.48970237,0.43571642,0.30953425,-0.2570666,-0.022032376,0.14935248,-0.0010417516,0.0086654425,-0.107098,0.040918075,0.07316108,-0.7227595,-0.47327915,0.56843245,-0.18592359,0.009350345,0.09755044,-0.42222193,0.33829495,-0.18345016,-0.32062033,0.014546852,-0.6349024,0.13311443,-0.23257373,-0.52606165,0.026801748,-0.3654984,0.13633315,0.15457629,-0.019339014,-0.24531664,0.2072178,0.16841719,0.9471114,0.04218834,-0.15252362,-0.43460143,-0.051954474,0.24533628,-0.33292675,-0.19297926,-0.401458,0.09639929,-0.4276532,0.3953892,-0.040177125,-0.23056982,0.12896806,-0.050897516,0.048786458,0.43009853,-0.355955,-0.150283,0.061524827,0.016216727,-0.22333942,0.08345591,-0.36195856,0.38008097,0.22175393,0.100623965,0.18896416,-0.009342686,-0.019110648,0.352543,0.09675296,0.28658321,0.4809569,-0.081102446,-0.34268555,-0.18341273,0.02992742,0.2949929,0.16845027,-0.10398129,-0.36767837,-0.45164013,-0.23627989,0.4545927,-0.22549377,0.25568438,0.008880322,-0.4735018,0.7395712,0.12727715,1.0572791,0.050266393,-0.36622202,0.12645382,0.34288627,0.1396758,0.10187577,-0.36277872,0.84324515,0.45205367,-0.24276465,-0.23538086,-0.3913363,-0.329723,0.23753521,-0.33479822,-0.12060642,-0.07600779,-0.7677002,-0.18785563,0.08100064,0.25618848,0.025970798,0.05806996,0.113379866,0.076888084,0.016120842,0.44819623,-0.5712717,-0.009337526,0.2592282,0.085844316,0.07917034,0.13382027,-0.41070175,0.49260384,-0.8152541,0.1256976,-0.54915416,0.03471673,0.13635652,-0.32044697,0.15463397,0.053898938,0.39229298,-0.30345446,-0.45294073,-0.35157406,0.81479937,0.34204578,0.32875702,0.7320682,-0.16724947,-0.06767537,0.15430944,0.58859897,1.3411925,-0.039774854,0.13914594,0.2334651,-0.27561095,-0.6180225,0.1896453,-0.26858628,0.20408246,-0.05899686,-0.27708444,-0.3965932,0.39003894,0.15454078,-0.0055676354,0.10145523,-0.39261848,-0.3909535,0.43138152,-0.41191483,-0.33092028,-0.45364138,0.23426065,0.71433896,-0.3777494,-0.2074125,-0.08421625,0.3642493,-0.29471076,-0.44565853,0.02597387,-0.281027,0.25706723,-0.0023144025,-0.37421972,-0.1461434,0.22791865,-0.3651142,0.22632116,0.19331916,-0.25762063,0.09474162,-0.08954739,-0.129799,1.0323739,0.12645207,0.0064886245,-0.8498792,-0.5508915,-0.77721816,-0.5128075,0.19298568,0.110076234,-0.08348041,-0.46504566,-0.07681457,-0.026139058,0.1779528,0.1523767,-0.471564,0.38334948,0.10510078,0.6393699,0.09340365,-0.90936685,0.058891542,0.088565305,-0.16881353,-0.6376208,0.5755397,-0.08941304,0.73458934,0.06686302,0.085497625,-0.0031267186,-0.5136729,0.17377903,-0.46442926,-0.36727375,-0.79124254,0.24350587,316 -652,0.29736257,-0.40366513,-0.46440065,-0.069834955,-0.31536707,0.07501332,-0.17165579,0.37037402,-0.031516213,-0.56511563,-0.0017748338,-0.16473058,-0.079543,0.7016665,-0.2003561,-0.5319224,0.086977534,0.14481057,-0.62382823,0.65429634,-0.45642436,0.39201838,0.19368336,0.15559857,0.16090634,0.23881595,0.35322183,-0.1174398,0.008810291,-0.09408594,-0.23956439,0.06191707,-0.3945766,0.23627782,0.02289731,-0.48369154,0.13830091,-0.29712155,-0.2663894,-0.6077369,0.30110067,-0.8292409,0.40020588,-0.027481684,-0.28951386,0.06451604,0.18173884,0.32671928,-0.16646336,0.09627933,0.055235207,0.027486425,-0.15756112,-0.052911278,-0.11374609,-0.5070844,-0.588876,0.0070605073,-0.70184004,-0.47064796,-0.16675986,0.12662114,-0.40394306,0.15134464,-0.16054668,0.14018759,-0.6085013,-0.18119527,0.16257344,-0.14777206,0.19096011,-0.5620408,-0.01990519,-0.17961165,0.09358786,-0.21717443,-0.15852763,0.40037617,0.32236263,0.5498849,0.021213265,-0.13837677,-0.10943897,-0.29573834,0.2365863,0.66648203,-0.11432791,-0.36063752,-0.18039306,0.08788105,0.27542028,0.20835064,0.16505782,-0.3933472,-0.110010736,0.03132104,-0.2749782,0.17291988,0.36804396,-0.4875528,-0.28178224,0.33492443,0.51503,0.055556253,-0.07544787,0.15216771,0.005127102,-0.49045834,-0.20255207,0.109046325,-0.19865505,0.43541864,-0.0894406,0.4971166,0.5996047,-0.19576654,0.21511252,-0.18539836,-0.1477263,-0.24370915,-0.008965263,-0.25080216,0.111249134,-0.5451224,0.1095365,-0.16695091,0.88684434,0.14832088,-0.87871903,0.45332578,-0.54487705,0.15637729,-0.22507344,0.6167912,0.6501722,0.30554846,0.20969103,0.59284234,-0.34864727,0.11673575,-0.1187799,-0.35332215,0.080116436,-0.26832694,-0.10668357,-0.4993922,0.05254134,0.032951947,-0.163574,-0.17257136,0.673913,-0.5722046,0.057373736,-0.0051218364,0.7692111,-0.32223225,-0.08165956,0.62154955,0.89804995,0.9328584,0.15395387,1.1133344,0.32809794,-0.22536832,0.20576955,-0.24038903,-0.6795533,0.2486732,0.78339475,0.4024814,0.46521452,0.16386105,-0.061499033,0.50652266,-0.39224136,0.148867,-0.19149701,0.10810467,-0.10960826,-0.11867304,-0.6878386,-0.3093433,-0.06718339,0.09282288,-0.11313001,0.39363447,-0.2700569,0.48580965,0.05030245,2.0107875,-0.090082645,0.21224369,0.068981305,0.43943322,0.09150558,-0.24380864,-0.08288991,0.10131003,0.39926603,0.019040246,-0.66758657,0.08295938,-0.25551212,-0.5356477,-0.26140773,-0.3935828,-0.08294909,-0.17072989,-0.47369325,-0.10970921,0.053503558,-0.3721363,0.3730368,-2.4756927,-0.3175739,-0.26913592,0.17574212,-0.41752222,-0.30836317,0.07985772,-0.34386972,0.3477081,0.5002602,0.6085686,-0.6496187,0.39055347,0.37458012,-0.30256507,-0.043311544,-0.7269519,-0.12286528,-0.10006286,0.3970041,-0.10533877,-0.14119895,-0.092269935,0.3408218,0.42178887,-0.2061236,0.04366886,0.3770869,0.31942227,0.26043907,0.5669642,-0.062474765,0.448518,-0.31469256,-0.16107075,0.33625683,-0.036682937,0.3396158,-0.0019594522,0.16140455,0.19938177,-0.6624136,-0.9332809,-0.677707,-0.5108903,1.1636572,-0.40863997,-0.34177536,0.44517472,-0.22626194,-0.17897107,-0.17687152,0.44565183,-0.1717481,-0.020507416,-0.80752224,0.13733539,-0.0062093367,0.29552555,0.047475092,-0.14072847,-0.3866282,0.5317203,-0.15023735,0.4631351,0.2844261,0.16988556,-0.15200637,-0.38272953,0.023858968,0.96365136,0.53395486,0.16891593,-0.15464228,-0.3163784,-0.34951794,-0.14255628,0.15908502,0.20261233,0.8127849,0.12577114,0.13834433,0.30204818,-0.11537385,-0.049035944,-0.17081563,-0.21819374,0.053821947,0.14477088,0.65055966,0.3777014,-0.10597052,0.6056944,-0.24228737,0.20233926,-0.14025977,-0.5187339,0.2950894,0.7355686,-0.08821149,-0.010153546,0.6850084,0.6828988,-0.31732035,0.4534599,-0.77638346,-0.30220267,0.46008852,-0.14043853,-0.38286972,0.24586083,-0.3541636,0.2642453,-1.2172977,0.37929615,-0.23798622,-0.4429088,-0.45740443,-0.14620301,-3.3606372,0.27380326,-0.09555503,-0.34257317,0.07088778,-0.07285539,0.3179286,-0.7205916,-0.6396973,0.046814535,0.0011677926,0.58025205,0.064332046,0.030271437,-0.1436324,-0.15728714,-0.18252946,-0.0069002234,0.01725798,0.32947534,-0.058538444,-0.4751976,-0.05822798,-0.29028672,-0.36508867,0.15314986,-0.6853203,-0.70594186,-0.30034375,-0.4679407,-0.34192568,0.575254,-0.10796077,0.04010795,-0.21616665,-0.1309968,-0.0958753,0.31659892,0.2855338,0.07550538,0.12056624,0.04514893,-0.21807347,-0.37097165,0.11953615,0.029123453,0.3192627,0.373198,-0.12932001,0.28375614,0.8026368,0.5566272,-0.04136494,0.668162,0.6274483,-0.19259275,0.19464524,-0.31055692,-0.1289122,-0.5093787,-0.4260975,0.08634409,-0.33346742,-0.7263155,-0.030233653,-0.12898557,-0.68860596,0.5646196,-0.038143992,0.11572161,-0.042825673,0.14214109,0.324724,-0.13882841,-0.1832239,-0.15343586,-0.14343841,-0.6898666,-0.30944803,-0.81596494,-0.5464291,0.21734887,1.2429621,-0.18599749,0.03235285,0.0040435884,-0.315043,0.055107977,0.007941227,0.101721436,0.4383993,0.15033846,-0.14670624,-0.8076018,0.5454329,-0.012231433,-0.025069889,-0.32013825,0.11588095,0.62411404,-0.6627463,0.20388062,0.22601333,0.12803926,0.024163123,-0.3947533,-0.16827895,0.20819356,-0.29974154,0.3781916,0.021139305,-0.76420265,0.5076624,0.4506135,-0.33226186,-0.74311405,0.44286272,0.013152366,-0.0923009,-0.062219225,0.23968282,0.14002839,0.15963028,-0.298746,0.2603064,-0.61608475,0.36954334,0.46822885,0.036220606,0.31657857,-0.3014025,-0.25545105,-0.6121173,0.13234733,-0.47239658,-0.14909866,0.14323719,0.040693264,0.004409735,0.21980835,-0.009375067,0.4258771,-0.31616205,0.010401941,0.072982535,-0.39232016,0.30083412,0.4665487,0.47010356,-0.4186285,0.6649199,0.06203481,0.021796644,-0.44400904,-0.08947928,0.42098072,0.22590153,0.22639146,-0.15113346,-0.20670308,0.45558092,1.0774566,0.22768886,0.42168573,0.11083247,-0.116243415,0.1368181,0.13809076,0.041227598,0.13752137,-0.39556435,0.048584186,-0.0032017964,0.13888264,0.5789713,0.17784196,0.33571228,-0.17004094,-0.304656,0.15096536,0.20539664,-0.13376188,-1.109124,0.31624654,0.23951387,0.51107633,0.6007923,0.024529237,0.11995609,0.636371,-0.35034576,0.1839682,0.23146787,-0.15453993,-0.6708877,0.65653616,-0.72314614,0.48974764,-0.12523529,-0.003940798,0.09539162,-0.06322798,0.42452276,0.8237,-0.011276589,0.11150703,-0.025800338,-0.29004878,-0.011934086,-0.4285567,0.007385566,-0.53294283,-0.40156043,0.56447816,0.35207942,0.2767286,0.051320307,0.01224752,0.10057775,-0.110875204,0.3792536,-0.12414045,0.09784056,-0.10108078,-0.57808197,-0.29928392,0.67568266,0.07181453,0.2153016,-0.03118114,-0.30883157,0.2852495,-0.18437494,-0.18188137,0.06604861,-0.67036355,0.22139798,-0.31660807,-0.34722206,0.31185883,-0.20231721,0.25795645,0.15483944,-0.039520107,-0.34835613,0.24825563,0.075693056,0.7426698,-0.062013544,-0.30976707,-0.13893595,-0.026273109,0.09641051,-0.26554787,-0.024910735,-0.28065902,0.08065951,-0.8517743,0.5223087,0.0058694826,-0.417849,0.24271171,-0.12845519,-0.019514916,0.44706255,-0.06147214,-0.1132648,-0.24891439,-0.09382912,-0.20630154,-0.22874434,-0.12810796,0.24444333,0.11315485,-0.04351823,-0.07248349,-0.035931434,0.06835038,0.54661477,-0.132301,0.35187307,0.26004413,0.12360132,-0.46760005,0.0029986869,0.17214128,0.32767737,0.0085282065,0.14612478,-0.17988011,-0.22800782,-0.19737123,0.11915871,-0.35245222,0.4096499,0.102688976,-0.5060286,0.7843996,0.11843724,1.2434862,-0.02044962,-0.32630274,0.10648884,0.35896125,0.0021085693,-0.025190344,-0.24110533,0.8564514,0.5835609,0.028306391,-0.21897894,-0.5010872,-0.32921618,0.41743448,-0.25102407,-0.13625129,0.057055514,-0.53947705,-0.31717584,0.252495,0.26333252,0.097229235,0.042518914,0.24144538,0.038311925,-0.03753316,0.22216612,-0.42968288,-0.099574395,0.38530672,0.15625653,0.08036023,-0.017325737,-0.4973036,0.408646,-0.6938857,0.23795758,-0.25875103,0.13120602,0.02074005,-0.23786555,0.24066493,0.14623557,0.43087536,-0.20152377,-0.34320337,-0.13516048,0.76195246,0.13091503,0.1319773,0.7238637,-0.36454457,0.26192042,-0.050243203,0.25213897,1.1153349,-0.25822443,-0.054217998,0.16085547,-0.27558193,-0.64647126,0.43306285,-0.28403884,0.11997041,0.10124194,-0.44753736,-0.6384395,0.20136243,0.3964289,-0.049542665,0.11650908,-0.29014155,-0.2661734,0.1922907,-0.33750865,-0.32677788,-0.45950222,0.17017937,0.6005762,-0.38892204,-0.26080528,0.15542406,0.28501374,-0.29011786,-0.43155226,0.028306412,-0.18215631,0.16173424,0.121911354,-0.36200967,-0.073641226,0.1680323,-0.2737137,0.033546165,0.36626858,-0.42348868,0.10611224,-0.38467297,-0.04428238,1.103456,-0.1779961,-0.3795838,-0.77223617,-0.54642737,-0.7816036,-0.506684,0.76189476,0.19097295,0.046222202,-0.5754864,0.1824868,-0.018432688,0.05090878,0.022485444,-0.42251408,0.4184998,0.10796302,0.38660234,-0.037055768,-0.7147674,0.2641862,-0.007088221,0.103372134,-0.43642393,0.51404196,-0.08347858,0.9317973,0.11627315,-0.030088017,0.2011093,-0.47213295,0.07964998,-0.17704354,-0.20269898,-0.7315539,0.07874254,317 -653,0.4404702,-0.27357876,-0.5565433,-0.10301788,0.0022624182,0.23981775,-0.1972521,0.4569587,-0.0010004685,-0.57983345,-0.059660144,-0.18520229,0.08207773,0.3449751,-0.18196464,-0.43465754,-0.122787714,0.30518717,-0.41261798,0.4890378,-0.4961601,0.30700538,-0.08566888,0.40195215,0.0148406625,0.21924862,0.13315135,-0.12732102,-0.34854537,-0.20105402,-0.09069256,0.3765743,-0.5141524,0.029992612,-0.1071848,-0.60368574,-0.040680222,-0.47316054,-0.25634858,-0.71242565,0.24359617,-0.9719015,0.5825592,0.08681404,-0.2829898,0.29269102,0.027555594,0.31433025,-0.072435215,0.1401871,0.19217774,-0.010986952,0.019490518,-0.33167428,-0.35639074,-0.5254042,-0.42791402,0.12011652,-0.38384432,-0.29168144,0.07279542,0.1459998,-0.1730368,-0.013869861,-0.18754485,0.18139093,-0.43440887,-0.16794194,0.14585169,-0.099228546,0.41437536,-0.5212616,-0.24608073,-0.1321803,0.29668915,-0.3769369,-0.053027943,0.069031924,0.33628258,0.5243486,-0.18337396,-0.010718559,-0.37390006,0.007148633,0.110950194,0.6007674,-0.3575896,-0.5688474,-0.16739517,-0.083918616,0.19674642,0.12696558,0.13882364,-0.22712325,-0.06183582,-0.1027685,-0.32745954,0.14689308,0.36457193,-0.56904644,-0.33561918,0.4149308,0.6045043,0.09329428,-0.19077934,-0.077710405,0.035155594,-0.3963053,-0.08476692,0.27509898,-0.17313187,0.5450671,-0.10158697,0.33413947,0.5720026,-0.052540634,0.21547808,-0.10352687,-0.05391023,-0.21472117,-0.17989555,-0.3507523,0.17106694,-0.2520906,0.046250775,-0.32161507,0.66864777,0.09797459,-0.7994188,0.51734704,-0.63228446,-0.034753226,-0.026334655,0.50122,0.37358445,0.44017267,0.065580964,0.42725056,-0.26784986,-0.079611905,-0.20699646,-0.109751225,0.0058469702,-0.09830999,-0.021522105,-0.4941804,0.27571785,0.10688327,-0.13703138,0.08005372,0.52594,-0.4552404,-0.13737458,0.22243008,0.8071905,-0.328666,-0.0087245,0.7045069,0.97152096,0.79615486,0.0030731468,1.3477042,0.27824232,-0.32341984,0.03670456,-0.33871982,-0.74840575,0.27352005,0.4256546,-0.41088045,0.49490407,0.14565049,-0.06077815,0.3315581,-0.20811044,0.12934838,-0.37457135,-0.14418104,0.044924956,-0.024987945,-0.3764126,-0.23005581,-0.055955894,-0.031408567,0.17631334,0.20668125,-0.24859406,0.32585767,0.14152227,1.9152973,-0.21067502,0.14232261,0.0523048,0.39257208,0.09749388,0.0040778313,0.046773337,0.29474837,0.32644254,0.023074461,-0.4465321,0.14529315,-0.06810319,-0.6012291,-0.16742764,-0.094790496,-0.15127836,0.119727366,-0.43461642,-0.057839375,-0.10537647,-0.16537109,0.31104615,-2.5499365,-0.20722674,-0.06792558,0.18389463,-0.3359123,-0.4562103,-0.25312516,-0.34107488,0.37728888,0.38491744,0.44389135,-0.62980807,0.51005304,0.26692083,-0.3601408,-0.14312147,-0.59028494,-0.15527579,-0.07597505,0.19534995,-0.17126815,-0.084650405,0.11556253,0.05766199,0.29047143,-0.15140167,0.049691044,0.31074393,0.3992806,0.2400706,0.3136577,0.031046228,0.49709845,-0.24506181,-0.25302002,0.35805878,-0.4469679,0.36155587,0.104830466,0.12741168,0.2818268,-0.5969313,-0.9206455,-0.8100944,-0.4085094,1.1382874,-0.118116654,-0.39445627,0.11239297,-0.16404827,-0.5884688,-0.17069629,0.43172786,-0.10702874,-0.09200729,-0.8412376,-0.05219569,-0.1217189,0.33288097,0.03441197,0.008167707,-0.5349692,0.5534627,-0.06932858,0.5206101,0.42741993,0.13028263,-0.18055807,-0.37002468,-0.105412535,1.0414561,0.21795982,0.17233603,-0.1684819,-0.21479757,-0.49502227,0.15596148,0.09226214,0.36831233,0.60976434,0.05519635,-0.021827493,0.28516588,0.04840978,0.11187995,-0.12679349,-0.17838955,-0.105392255,0.21588199,0.45938948,0.31503233,-0.253018,0.47228387,-0.2251254,0.3470845,-0.2437082,-0.3340707,0.42401204,0.79543436,-0.16818954,-0.1734147,0.7211023,0.5032648,-0.46441525,0.41564816,-0.53183365,-0.26854804,0.21063422,-0.2739003,-0.28970936,0.45795444,-0.29218817,0.23963378,-1.0144628,0.23117658,-0.37396696,-0.13897444,-0.6656857,-0.019198643,-3.385591,0.2846467,-0.018487113,-0.25787082,-0.043324806,-0.1276571,0.38121015,-0.6287968,-0.67523444,0.06953134,0.07662338,0.55935574,0.025896069,0.13841106,-0.24725357,-0.27373585,-0.16318037,0.19460799,0.14061667,0.2903383,-0.18286602,-0.5276951,-0.19253299,-0.21580788,-0.1612273,0.06923444,-0.7582306,-0.4046931,-0.0575521,-0.60079205,-0.20652859,0.55895984,-0.37277237,0.06339026,-0.20919777,0.0774858,-0.32040608,0.39216137,-0.0174976,0.17828992,0.065763205,-0.15749535,0.06404328,-0.17176296,0.20099425,0.04218239,0.13691756,0.35611436,-0.29238346,0.1968609,0.3889097,0.68558055,-0.040727504,0.68388104,0.50792164,-0.19283533,0.28678495,-0.38396198,-0.26356485,-0.5698134,-0.30046272,-0.0012224179,-0.37859976,-0.68225425,-0.18563351,-0.27057558,-0.6902145,0.6234761,-0.123977415,-0.006703459,0.14091994,0.46576992,0.4576829,-0.22099565,0.086981624,-0.104227535,-0.08991511,-0.43730742,-0.3561303,-0.57924944,-0.30635616,0.18098314,1.0626688,-0.10538978,0.1620761,0.17030272,-0.17595908,-0.002021511,0.2184398,0.1508593,0.043144677,0.599749,-0.14892645,-0.6195816,0.4490586,-0.07613085,-0.35732418,-0.27192232,0.05709133,0.63357174,-0.7307177,0.58596,0.40521064,0.048201647,-0.005553319,-0.47807986,-0.1497713,0.04500608,-0.23646294,0.38886398,0.23764324,-0.6158291,0.33739808,0.49405444,-0.072174385,-0.7181202,0.45923144,-0.017990204,-0.34438103,-0.07835665,0.4417884,0.016391333,0.05902976,-0.25037992,0.17712249,-0.45719272,0.16131662,0.20121154,-0.09002887,0.33988154,-0.3144978,-0.103506,-0.75627995,0.14782347,-0.4788483,-0.28663352,0.30317274,0.053231362,0.13821533,0.24504445,-0.0070791245,0.48503444,-0.5084573,0.13313964,-0.0028522061,-0.088764004,0.23126075,0.23469433,0.37274158,-0.44989723,0.49664986,-0.1163068,-0.2004243,-0.1973404,0.0055152634,0.6130905,0.117013626,0.23346272,-0.0016036079,-0.36774832,0.39809263,0.7484044,0.32056963,0.47579962,0.018817503,-0.16570562,0.1945959,0.11612392,0.07534199,0.009464228,-0.38689676,-0.16709335,0.01754297,0.114980265,0.37163675,0.01105261,0.42397645,-0.27069375,-0.19044913,0.025289187,0.24662144,0.07477085,-0.7972864,0.29686183,0.091414586,0.7301084,0.40637702,-0.028650407,0.15417871,0.49581236,-0.40983975,0.14646865,0.21488406,-0.1396691,-0.6783748,0.6100048,-0.56897825,0.17478754,-0.09916095,0.018602064,0.036482815,-0.21250373,0.5165888,0.73709655,-0.1006347,0.14233099,0.0013517336,-0.18474586,0.031199329,-0.21392256,0.00403829,-0.55947083,-0.19284879,0.63140893,0.31700113,0.44526005,-0.2313923,0.016582603,0.07559733,0.010017418,0.19046792,0.15249106,0.3033293,0.015877102,-0.6884305,-0.21359754,0.5926742,0.0841643,0.024371762,0.02476977,-0.57862943,0.40050572,-0.07580428,-0.02902155,-0.041448556,-0.49000672,0.016168173,-0.4317164,-0.37136596,0.35208064,-0.047459092,0.17919543,0.16682877,0.08471194,-0.25743696,0.40468195,0.13080874,0.7789568,0.18222196,-0.08841006,-0.33463484,0.34285986,0.1602544,-0.20362738,-0.16738823,-0.21695863,0.07309289,-0.54269683,0.44704723,0.096627794,-0.22620481,0.18391186,-0.028200595,0.09839511,0.47114393,-0.08361887,-0.10945936,0.010661387,-0.0016980446,-0.29863715,-0.16595715,-0.09792928,0.22683159,0.24259847,-0.078531355,-0.1868322,0.10312437,-0.13487633,0.55564696,0.00019449912,0.3736036,0.6169619,0.29756212,-0.30213538,-0.103250355,0.03601959,0.40471044,-0.15192384,-0.13405164,-0.26109594,-0.56184727,-0.19767693,0.28268287,-0.13553688,0.27727726,0.20812696,-0.17002708,0.794686,0.007897427,1.0335914,0.023988714,-0.35476714,-0.038196865,0.4522602,-0.096965715,-0.07967122,-0.4639832,1.0303553,0.5419768,-0.027932186,0.08156705,-0.25351134,-0.2300686,0.09567081,-0.23468287,0.075192146,-0.058166724,-0.67973036,-0.4174907,0.18060061,0.32638982,0.15972707,-0.077802055,0.41110283,0.25900874,0.167951,0.16563965,-0.38569292,-0.294716,0.31420162,0.262253,-0.12132837,0.15512063,-0.39178798,0.31670836,-0.60823464,-0.027212858,-0.37138808,0.04546558,-0.036935855,-0.4036132,0.057294685,-0.05663395,0.16980211,-0.39772636,-0.3823579,-0.051589005,0.38380605,0.11782993,0.14103732,0.60327727,-0.17125812,0.24595474,-0.013515839,0.48307604,1.0534866,-0.16428114,-0.019671509,0.42242172,-0.17145406,-0.6667264,0.29574808,-0.3535883,0.29379052,-0.02381879,-0.15483278,-0.5868169,0.4164951,0.28013748,-0.06796389,-0.016056629,-0.41204056,-0.05018889,0.3862373,-0.350722,-0.18031335,-0.31101614,0.13186303,0.71999454,-0.27556303,-0.427908,0.05588029,0.36669615,-0.42685217,-0.46563178,-0.04332828,-0.45249373,0.32819593,0.2167181,-0.29774272,-0.12119259,0.0026406324,-0.35480055,0.16319036,0.3090477,-0.37947333,0.11419961,-0.5783367,0.04889123,1.0241883,-0.0875604,0.114298314,-0.49105576,-0.5733144,-0.87537503,-0.43893352,0.5493805,0.19493967,0.064247005,-0.52130216,0.25563785,-0.090391874,-0.22826256,0.07857384,-0.13711931,0.44775566,0.1433534,0.49862286,-0.21226467,-0.6481679,0.1186057,0.14696676,-0.09829255,-0.4796664,0.5707859,0.042345185,1.0122788,0.055901308,0.07804807,0.4262734,-0.6274125,-0.108890146,-0.2387513,-0.09112971,-0.87425685,0.052497864,321 -654,0.5667153,-0.28393722,-0.71194756,-0.09952371,-0.13164045,0.10087108,-0.25957185,0.49699676,0.2055197,-0.9204536,-0.21705554,-0.15657844,-0.1713095,0.3800381,-0.3114823,-0.81540847,0.14447951,0.0006848115,-0.4003101,0.5559673,-0.28464887,0.36744338,0.29096004,0.26866034,0.2907502,0.1159131,0.39797,0.06940554,-0.27648026,-0.21176672,-0.03345407,0.033680853,-0.63722587,0.29841158,-0.25809768,-0.45722002,-0.15528043,-0.47075906,-0.24159025,-0.9687011,0.23348477,-1.0383828,0.52960217,-0.110922255,-0.26621437,-0.104596764,0.47285527,0.06512614,0.18775453,-0.10475444,0.21647562,-0.17601337,-0.12118767,-0.085998446,-0.44883686,-0.7307694,-0.69674647,0.08127049,-0.6191403,-0.25676444,-0.09626249,0.3000791,-0.46769464,0.06121442,-0.08445243,0.82883316,-0.25793245,0.0015514722,0.30431765,-0.29970613,0.29872516,-0.891194,-0.31134808,-0.18565609,-0.06276668,-0.038837217,-0.21369931,0.3892427,0.41213924,0.40684932,0.21982256,-0.28441954,-0.39987832,0.0037692578,0.3161969,0.4644605,-0.2802541,-0.40887922,-0.3066557,0.057985343,0.5701914,0.19111785,0.3293947,-0.5035759,0.10483433,0.07106979,-0.35772786,0.67152,0.6348677,-0.26403612,-0.22556068,0.27126148,0.4895229,-0.03770992,-0.35803318,-0.18582378,-0.042157266,-0.610081,0.041738093,0.41900876,-0.0955764,0.6499831,-0.12964025,0.18349011,0.6499999,-0.31657094,0.10316126,0.35785022,0.0493171,-0.032978434,-0.38757116,-0.031192733,0.41238004,-0.46901086,-0.042827886,-0.44830668,0.8629252,0.14731811,-0.85212433,0.2845206,-0.45692003,0.15650648,-0.099717006,0.6209651,0.68276244,0.4918035,0.040470127,0.88083255,-0.4499453,0.004649142,0.026085697,-0.30328798,0.011046286,-0.40682027,0.1724643,-0.27928007,-0.018638287,-0.13447715,-0.034953706,0.101995125,0.71947384,-0.5722734,-0.34742314,-0.020185232,1.0262643,-0.17506169,-0.17659591,0.7461468,0.9877803,1.0552644,-0.011343406,1.2935524,0.13932122,-0.027111627,-0.027861215,0.034779612,-0.6779659,0.37153542,0.34894216,-0.089339346,0.28967774,-0.098716535,-0.18628278,0.31950238,-0.27272943,-0.0016537813,-0.24570833,0.21836713,0.28761047,-0.2580751,-0.25410622,-0.068010025,0.053982254,-0.025195552,0.094350606,0.26642454,-0.35009798,0.50435203,-0.12208267,1.4236795,-0.21112765,0.07293084,0.15161194,0.42988095,0.20032987,-0.18784155,0.3852029,0.12516902,0.096845776,0.20055991,-0.42600492,-0.012926212,-0.5186212,-0.50020957,-0.24330984,-0.4356195,-0.34106314,-0.010466935,-0.53570044,-0.2693444,-0.07106263,-0.36598098,0.33624414,-2.4536326,-0.26849726,-0.22710371,0.31984696,-0.4210318,-0.40428936,-0.21072997,-0.6639639,0.50241023,0.30223352,0.5453816,-0.60187376,0.2869816,0.44944045,-0.3437724,-0.23901524,-0.6578274,-0.007435913,-0.02221471,0.45926026,0.00037672886,-0.14461145,0.20532645,0.071328394,0.7013597,0.090593256,0.10710403,0.380253,0.4460967,-0.21848924,0.40795186,-0.117390156,0.58822465,-0.40644497,-0.1674575,0.5903366,-0.6212723,0.19866683,-0.05130651,0.1312221,0.56415963,-0.4367835,-0.7727058,-0.7572993,-0.4499173,1.0631416,-0.057098784,-0.711584,0.118597165,0.14845237,-0.06875154,-0.099045634,0.5755445,0.03162148,0.35950506,-0.7388925,0.01909361,-0.14265865,0.19997318,-0.17763759,0.01866337,-0.37600836,0.7960948,-0.018859886,0.48016408,0.35421732,0.3551817,-0.5528419,-0.5986794,-0.05784699,1.3537513,0.5065535,0.1250856,-0.32512635,-0.01204768,-0.45979878,-0.48097038,0.109047815,0.6380863,0.7672021,-0.014996994,0.07016051,0.48355007,0.089051075,0.13218991,-0.046373155,-0.56494695,-0.34871453,0.15401387,0.53877914,0.64927334,-0.12864342,0.58261997,-0.14872728,0.4163778,-0.20544146,-0.4997607,0.4882191,0.9960972,-0.3303385,-0.37679088,0.3933016,0.3347132,-0.47776797,0.5500491,-0.57228863,-0.5998056,0.6617838,-0.2343118,-0.6461766,0.12144339,-0.3935106,-0.01114863,-0.6547344,0.33152282,-0.5412282,-0.48285154,-0.49306008,-0.43158296,-2.5407164,0.17350046,-0.16938022,-0.08436238,-0.27001703,-0.07999264,0.22106475,-0.57632595,-0.60169804,-0.0074292514,0.11992817,0.69358957,-0.11075107,0.25728944,-0.34296483,-0.21093918,-0.30663916,0.3473385,0.19244443,0.2223521,-0.042948373,-0.26913497,-0.069040686,-0.16921271,-0.56562227,0.06065675,-0.65623975,-0.68208545,-0.3040562,-0.47537166,-0.2926227,0.90587246,-0.56596506,0.06542797,0.10753847,0.10645913,0.035908304,0.27390486,0.20166442,0.14225714,0.17921294,-0.25176796,0.17155838,-0.36171234,0.3340217,0.18761492,0.5020706,0.7799018,-0.20586842,0.43932068,0.6715739,0.77044666,0.12656079,0.9990047,0.14840935,-0.009129419,0.31270438,-0.16104206,-0.36156657,-0.7157173,-0.04072662,0.20064752,-0.3888249,-0.42892516,0.157877,-0.37593955,-0.94487923,0.6291695,0.0026244132,0.3477402,-0.27431142,0.4332447,0.46709985,-0.19203164,-0.21257505,-0.029003484,-0.011445049,-0.51734936,-0.5510486,-0.9009271,-0.7565048,-0.002757054,1.1777972,-0.04779522,-0.25470173,0.018674005,-0.05640156,0.0063234707,0.16215116,-0.12416361,-0.28702238,0.34198034,0.23146367,-0.78982556,0.42349714,-0.22113201,-0.010729249,-0.51263905,0.5286313,0.782438,-0.57851654,0.3153906,0.38956466,0.008321769,-0.37166336,-0.5614233,0.02128615,-0.053137816,-0.21864928,0.38029596,0.110375315,-0.6626245,0.40946832,0.32607615,-0.40768528,-0.69652313,0.4730093,0.049028937,0.11088245,-0.22320172,0.36765903,0.30173117,-0.14576098,-0.25745842,0.25341684,-0.62134796,0.23411186,0.29073983,0.026488258,0.68889385,-0.081600055,-0.50787604,-0.6409649,0.22701369,-0.6816865,-0.29089716,0.2932894,-0.046090808,0.14733617,0.48226288,0.10453624,0.38902527,-0.15703772,0.13572155,-0.21616279,-0.25572762,0.6937305,0.39694303,0.6681114,-0.5789709,0.61474127,0.0888911,-0.22976288,0.39642736,0.21828292,0.50227994,0.31195247,0.40523222,0.08840125,0.071178325,-0.023652967,0.71982604,0.29088107,0.56716603,0.22909506,-0.4034556,0.07268158,-0.0008749068,-0.012663247,-0.029983887,-0.7924521,-0.08612732,-0.16521923,0.062461656,0.618743,0.0017973322,0.40017456,-0.016485436,-0.1854435,0.050846025,0.048561215,-0.13227895,-1.2633626,0.20382276,0.048665173,1.0665438,0.2832238,-0.017305154,-0.092154056,0.6914637,-0.09302283,0.30021763,0.5245099,-0.28443554,-0.504851,0.62248325,-0.79679227,0.48477495,-0.091584004,0.1741244,-0.104469724,0.0893624,0.49266273,0.80407304,-0.18524343,0.17249012,-0.009744246,-0.3290793,0.1895631,-0.5521666,0.27157047,-0.25627697,-0.40984887,0.6369873,0.43401182,0.23465031,-0.14974417,-0.04591145,0.082632884,-0.13128425,0.25097817,-0.13703524,0.19158162,-0.16653362,-0.3059892,-0.17828403,0.57471114,-0.01967453,0.2592492,0.105834976,0.015923537,0.38226,0.01961842,0.03574684,-0.13004875,-0.51888365,0.050299786,-0.39711776,-0.5969746,0.30007416,-0.116208635,0.08696486,0.25704533,0.010439413,-0.38484085,0.4767535,0.29854375,0.5932158,-0.40264395,-0.09306957,-0.5157186,0.09987668,0.06489868,-0.44206473,0.17287531,-0.14412831,0.13534372,-0.6413304,0.50497013,-0.39144808,-0.31947944,0.12618078,-0.13086022,-0.22277091,0.60538685,-0.11295785,0.031787753,0.07878395,-0.12132812,-0.2654548,-0.067159705,-0.028354552,0.17088924,0.029343935,-0.03022209,-0.12150269,-0.29112327,-0.071560435,0.099820904,-0.015636444,0.24549772,0.48137167,0.15864438,-0.630986,-0.06402985,0.26870057,0.64090353,0.28857043,-0.024678847,-0.22481865,-0.5074037,-0.5392647,0.4188809,-0.08219327,0.20816237,0.3025842,-0.47580367,0.7848512,0.061122674,1.5282452,-0.016494503,-0.44731134,-0.017046224,0.57161003,0.13700983,-0.0024084975,-0.4826086,1.0919083,0.6230807,-0.07207678,0.037308253,-0.5786763,-0.052091483,0.28307363,-0.3720825,-0.20525287,-0.05408001,-0.59974575,-0.33657616,0.18840526,0.3769305,0.05084864,-0.37168363,-0.023834417,0.3500566,0.13246569,0.19214366,-0.53472555,-0.098501354,0.24310997,0.52594924,-0.275368,0.08383063,-0.4774814,0.31803352,-0.77038914,0.3345177,-0.1637596,0.1214455,-0.1178367,-0.31285673,0.3047258,0.15690091,0.46096557,-0.25126272,-0.39086196,-0.13750416,0.6110932,0.20242237,0.21127826,0.5958406,-0.2233147,-0.04901975,-0.07906915,0.71599543,1.5736479,-0.16410144,0.106217556,0.29324216,-0.534992,-0.85288024,0.29652235,-0.58420837,0.37352502,-0.17962982,-0.42144197,-0.49109837,0.24976818,0.062187232,-0.25488642,0.16218136,-0.6962125,-0.26969728,0.0663238,-0.560568,-0.30597135,-0.46176198,0.1805158,0.48586422,-0.22842433,-0.15324242,0.11461817,0.47414213,-0.0750663,-0.65093774,-0.049934205,-0.26841888,0.33284396,0.049031638,-0.34277746,-0.10628423,-0.029413031,-0.65593344,0.2807626,0.11070444,-0.4432567,0.034696367,-0.043968365,0.0025807666,0.75795734,0.052977044,0.095859475,-0.53437734,-0.5091591,-0.6505317,-0.46248496,0.1589466,0.21294919,-0.047686465,-0.63600224,-0.37131992,-0.39813188,-0.050953016,-0.0007572541,-0.55869824,0.27497256,0.046229895,0.50138354,-0.33655822,-0.7916944,0.23301688,0.3311192,0.012007759,-0.6754074,0.35416043,-0.14224076,0.9860763,0.22640838,-0.13116322,0.41878414,-0.70658183,0.0056885025,-0.40230238,-0.30167484,-0.5657663,0.16269793,331 -655,0.4060908,-0.28418133,-0.48288763,-0.112924576,-0.1687824,0.10602184,-0.17159455,0.51518387,0.066764906,-0.46229172,-0.23279692,-0.099224895,0.05766911,0.52161515,-0.3037459,-0.4217427,-0.10703529,0.0124837775,-0.44113928,0.27236235,-0.58539706,0.22533864,0.059430666,0.38277417,0.14826438,0.115617394,0.13677293,-0.0761093,-0.035419457,-0.11182961,-0.024863325,0.24495591,-0.48291743,-0.0088704685,-0.12936364,-0.3985804,0.09032743,-0.57109874,-0.35896605,-0.7215281,0.39647907,-0.98747313,0.57933,0.04150943,-0.24079281,0.32950988,0.080213144,0.16824605,-0.25390863,-0.12386981,0.20339264,0.04245452,-0.11853523,-0.06671205,-0.15596487,-0.24429318,-0.59907377,-0.00096468744,-0.6228888,-0.11532406,-0.22241205,0.19645295,-0.43958834,0.15145156,-0.05231824,0.32248446,-0.49335915,-0.0655939,0.10020435,0.001631911,0.10359399,-0.6666121,-0.115138054,-0.06895609,0.19342646,-0.19415125,-0.12983784,0.3301271,0.22528681,0.4322129,-0.11849969,-0.1949926,-0.24320623,0.098157726,0.031356916,0.6678178,-0.13951153,-0.54096997,-0.11236389,0.16526794,0.38251275,0.15004791,-0.06306304,-0.13784085,-0.14326993,0.14010891,-0.1900627,0.39601994,0.5644361,-0.31273457,-0.2965225,0.49265403,0.5216302,0.2517593,-0.03842097,-0.18124177,0.07351984,-0.53457826,-0.13100015,0.051321957,-0.2875768,0.38965416,-0.06273963,0.4249284,0.57356215,-0.28909189,0.32026407,0.05173171,0.124748506,-0.1008168,-0.21417537,-0.30070922,0.08563626,-0.40871525,0.12172846,-0.16745481,0.9631656,0.099170074,-0.7437819,0.4150049,-0.5074238,0.08339966,-0.21160303,0.6084468,0.6412645,0.35492304,0.355713,0.6225951,-0.35436404,0.037149515,-0.1750372,-0.36125448,0.17428787,-0.01771186,0.0013319391,-0.4132088,-0.20075305,-0.0278874,-0.11370738,-0.016831895,0.6674935,-0.54820657,-0.07929624,0.024757339,0.775893,-0.33394054,-0.023996856,0.6103184,1.0594839,0.8003642,-0.0004648509,1.0786059,0.2570527,-0.13631187,0.22627904,-0.32503238,-0.859575,0.36295393,0.5196367,-0.26811653,0.36818898,0.1385263,-0.11837585,0.37273857,-0.47839335,-0.13136213,-0.22351122,0.30662182,0.15324003,0.1505847,-0.5402342,-0.25322238,-0.090273574,0.055824365,0.13223368,0.28060144,-0.4236384,0.13781117,-0.042413753,1.8003218,-0.0990919,0.061318442,0.05077695,0.5059683,0.1917188,-0.04386169,-0.099982366,0.3381426,0.37341216,0.012471731,-0.80789125,0.16245815,-0.24068849,-0.3855376,-0.2509989,-0.36790594,-0.06411307,-0.034206107,-0.41257846,-0.012572238,0.06536133,-0.2929722,0.44512865,-2.5781908,-0.2710445,-0.08987348,0.49351296,-0.3745993,-0.4729128,-0.23824078,-0.5083355,0.5199564,0.31971136,0.5759801,-0.6159653,0.39362213,0.46408245,-0.49640036,-0.14787787,-0.67907757,-0.17922749,0.022406539,0.29529157,0.014241489,-0.16696747,-0.044376712,0.018794857,0.44473436,0.043657605,0.10204867,0.2894578,0.7035376,0.01122772,0.47107968,-0.17325687,0.5780067,-0.36688,-0.13715771,0.31833073,-0.25020638,0.37365076,-0.3638347,0.18064652,0.46143296,-0.52643716,-1.0181977,-0.6409314,-0.1805339,1.2800018,-0.36957583,-0.33618978,0.33947462,-0.21911608,-0.22000445,-0.14103398,0.52259195,-0.168948,-0.27727032,-0.8191484,0.06746621,-0.14899786,0.1476186,-0.038098708,0.10403303,-0.31171873,0.5036678,-0.1805335,0.40966195,0.13272628,0.24831463,-0.12025886,-0.38648465,-0.0061576893,0.7810365,0.4083651,0.0913786,-0.1690345,-0.29914898,-0.24277817,-0.029534074,-0.033989724,0.4514361,0.76691014,0.10672275,0.086352535,0.19900551,-0.10016111,-0.022068053,-0.20639004,-0.36730134,-0.04901932,0.06630291,0.50608337,0.5622097,-0.2915286,0.51501536,-0.10146198,0.16593379,-0.12507384,-0.42512256,0.37365946,0.7719841,-0.15989903,-0.06858344,0.6241217,0.4560115,-0.28259087,0.3400304,-0.7290078,-0.3526323,0.44163698,-0.22447443,-0.43379673,0.090169385,-0.13437682,0.07483502,-0.91375035,0.42804432,-0.18847837,-0.35020238,-0.5652166,-0.06209733,-2.7970874,0.12168431,-0.25179258,-0.11373536,-0.039613064,-0.21635532,0.3414068,-0.64445394,-0.5292144,0.16440326,1.8972616e-05,0.6294066,0.035779677,0.15278493,-0.16191739,-0.1621246,-0.31430322,0.014572492,0.24911365,0.43744075,0.14873932,-0.46298224,0.116671674,-0.08914166,-0.35629636,0.1806582,-0.49320406,-0.56603575,-0.047590297,-0.5277757,-0.16060288,0.6757766,-0.13697761,-0.064291514,-0.0969356,0.2182532,-0.11458867,0.37546116,0.125394,0.10978408,0.05127352,-0.13738635,0.052590158,-0.3523021,0.5584291,0.013943275,0.26183403,0.4088752,-0.0034469275,0.17419197,0.69900364,0.46073797,-0.040062044,0.86696976,0.5044412,-0.20799193,0.12348211,-0.19984175,-0.25865254,-0.37933058,-0.3322856,0.03682226,-0.38792786,-0.37894645,-0.12632176,-0.3845984,-0.8614518,0.48062402,-0.10120757,0.23146725,-0.08553354,0.28156108,0.5414808,-0.13877155,-0.009618433,0.106060505,-0.022139993,-0.6122681,-0.3530512,-0.6855805,-0.40941793,0.05723144,1.0604457,-0.32018945,-0.088725336,-0.17658673,-0.11820202,-0.079356395,-0.23172198,-0.029846797,0.23352131,0.3939077,-0.055892266,-0.709726,0.40137386,-0.06973021,-0.066187255,-0.6537627,0.091487244,0.6028776,-0.6243363,0.34928042,0.46732074,0.14315091,-0.017729916,-0.65045464,-0.17761962,0.13397835,-0.17831025,0.36902797,0.14867407,-0.78394705,0.5435623,0.36909765,-0.40824845,-0.73700786,0.4574061,0.095825635,-0.28357655,-0.08461898,0.2567476,0.27879044,0.115890175,-0.23017788,0.28660643,-0.4216266,0.4325418,0.14886478,-0.102346465,0.59186035,-0.38045284,-0.16225456,-0.6460434,-0.050422058,-0.5128915,-0.26799634,0.27730703,0.015333663,0.2087027,0.1455773,0.18001677,0.4645586,-0.5262034,-0.018907119,0.0059663286,-0.2506149,0.33674857,0.46586716,0.59320086,-0.38451466,0.5784071,0.050959826,-0.19161199,0.16217066,0.005394913,0.36295503,0.034627378,0.26032984,0.0023587483,-0.17154756,0.29979298,0.98376584,0.09061948,0.3542269,0.13567963,-0.25213617,0.22483756,0.023042617,0.0010583195,-0.038247187,-0.5391957,-0.054907702,-0.10206191,0.12618852,0.5756137,0.21953954,0.22920488,-0.149983,-0.21617457,0.1083589,0.10843292,0.04579805,-1.0364827,0.33207732,0.07567484,0.6592394,0.25526974,-0.053876996,0.046902888,0.55864334,-0.10148711,0.037107177,0.33730572,0.0949781,-0.5878073,0.56384623,-0.58266747,0.48465627,-0.11615435,0.023662217,-0.027487801,0.10589023,0.35612643,0.7917991,-0.08507225,-0.025574194,0.13301574,-0.31521654,0.15226102,-0.3765955,0.04233928,-0.6761502,-0.19760528,0.5141662,0.46106374,0.32366607,-0.036361955,-0.033088468,0.071925275,-0.07455499,0.14670523,-0.008301515,0.019191582,0.07280113,-0.827091,-0.17097534,0.4962223,0.28590682,0.24108711,-0.20655407,-0.107362136,0.24470256,-0.25237533,-0.052115194,0.0192418,-0.67729354,-0.19937491,-0.5273356,-0.5903403,0.15784414,-0.16414918,0.26909092,0.18775474,-0.021971593,-0.32245204,0.28099614,0.19972946,0.93813324,-0.102325924,-0.17917307,-0.5651241,0.024470512,0.24044083,-0.25382066,-0.059143092,-0.35514122,-0.02947242,-0.6220198,0.64967877,-0.22226086,-0.2794764,0.06996297,-0.2865156,0.024959601,0.6013838,-0.083480686,0.0012478462,-0.36577764,-0.36913458,-0.3933142,-0.24752067,-0.14950654,0.09302867,0.24581869,-0.08454831,-0.13983038,-0.33097252,-0.19994906,0.59535545,0.0557972,0.38468295,0.46367496,0.2198608,-0.19063272,-0.22380526,0.14237663,0.6832909,-0.06014006,-0.1679462,-0.56786096,-0.36941344,-0.21668789,0.32970554,-0.23304786,0.32185745,0.17437561,-0.24561745,0.66377455,-0.0647185,0.89585114,0.090554245,-0.16641468,-0.034210112,0.52844834,0.17114124,-0.07312444,-0.46907532,0.89032966,0.52737695,0.023690086,-0.15277888,-0.57551277,-0.24719779,0.42932054,-0.2946215,-0.117678694,-0.18262686,-0.6673923,-0.2888672,0.28012705,0.22675307,0.077391274,-0.06763769,0.20056817,0.109377705,0.15824145,0.5012828,-0.55758774,-0.16586392,0.37924162,0.21902207,0.091117784,0.18885292,-0.5372012,0.44593573,-0.40095583,0.08629736,-0.35259908,0.2320763,-0.053603604,-0.18941508,0.16761667,0.16371349,0.44864982,-0.23824668,-0.39021048,-0.13898781,0.54823184,0.18703276,0.11059937,0.54156935,-0.27220476,0.03425288,-0.08908835,0.5997478,1.1424311,-0.18134345,0.18589851,0.35278577,-0.26281685,-0.6489684,0.45422903,-0.38200617,0.14679694,0.03187016,-0.21427134,-0.5908547,0.38175663,0.16844584,-0.033752643,-0.03908412,-0.35146672,-0.2621755,0.30640084,-0.24790359,-0.17564645,-0.22784,0.06737466,0.66102624,-0.3009954,-0.094303206,0.035719138,0.53157395,-0.13409834,-0.50295794,-0.04208443,-0.46603158,0.16931221,-0.007861779,-0.23838748,-0.16173181,0.015851837,-0.34659487,0.13773304,0.040925678,-0.38025495,0.017743744,-0.143217,0.13340522,0.9504462,-0.18510239,-0.06315563,-0.7349393,-0.40082586,-0.8252418,-0.20157006,0.48113933,0.16896142,0.099861614,-0.6356767,0.12331251,-0.00733067,-0.13284414,-0.18911353,-0.55195016,0.4076026,0.06219298,0.26335162,-0.08457515,-0.607976,0.0985669,0.00034156212,-0.3591607,-0.49614507,0.6265763,-0.086453244,0.92358154,0.03935706,0.08163112,0.019865576,-0.3414747,-0.02474575,-0.33411834,-0.23960263,-0.75082135,0.188493,344 -656,0.41385305,-0.24147965,-0.4935366,-0.096243314,-0.48476636,0.0699186,-0.19057226,0.36709067,0.09218217,-0.5042292,-0.117370635,-0.24032561,-0.055247404,0.54333234,-0.24499522,-0.46894327,-0.07471437,0.14563583,-0.4646268,0.2449813,-0.5781421,0.2576922,-0.073546715,0.44282162,0.088906415,0.2611922,0.15937962,-0.09714091,-0.21002379,-0.02106441,-0.17819272,0.07573709,-0.7539362,0.23156945,-0.17038843,-0.45820743,0.050101954,-0.5479855,-0.2724988,-0.6408456,0.31475672,-0.88391197,0.34913304,-0.139042,-0.16817173,0.06079891,-0.060054,0.3781153,-0.21829575,-0.018347513,0.29276344,-0.19932793,0.011439637,-0.28997755,-0.28419062,-0.49858636,-0.6094662,0.061464667,-0.5648199,0.00041769102,-0.15978736,0.15068576,-0.2411158,0.065615006,-0.22286895,0.17663318,-0.47144082,-0.055553734,-0.040052928,-0.030218977,0.101519585,-0.35899132,-0.21287192,-0.16122109,0.18670493,-0.12347282,-0.2240764,0.34180656,0.16564701,0.33694,-0.10428597,-0.10596389,-0.39143842,0.15654717,0.20072791,0.5287216,-0.028211415,-0.37243646,-0.15798657,0.09560899,0.27152756,0.28047207,0.023343492,-0.4260007,0.015549751,0.082848124,-0.34125042,0.32938117,0.53003514,-0.28108796,-0.34015888,0.4118256,0.5486772,0.08715158,-0.17264225,-0.050507985,0.028841052,-0.5302428,-0.20218743,0.25978872,-0.08652963,0.61968064,-0.12177299,0.30641648,0.74583817,-0.4017753,-0.019264776,-0.08696086,-0.022651525,-0.1435466,-0.106199756,-0.19873379,0.130959,-0.4518228,0.08601343,-0.15745878,0.7146996,0.15675506,-0.9906648,0.41049954,-0.6009296,-0.004267862,-0.05252496,0.43655604,0.52494085,0.5903332,0.3551889,0.59655035,-0.47304666,0.1842322,-0.07627252,-0.5817545,0.17468749,-0.20870028,-0.04523752,-0.32472977,-0.23667161,-0.058874838,-0.14135696,-5.924931e-05,0.46009535,-0.3836721,0.03382453,-0.046732564,0.64274687,-0.4089781,-0.14451018,0.8507403,0.9530815,1.0101602,0.19751662,1.2086263,0.21156755,-0.049506865,0.20957701,-0.20878688,-0.71392053,0.2971128,0.3802249,-0.0673213,0.34749046,0.24000336,0.2646374,0.39078096,-0.17294312,0.107065,-0.17565998,0.19977781,0.08061764,0.0186057,-0.39130625,-0.41480842,0.04203475,0.025492746,-0.12155804,0.362312,-0.12166396,0.43692604,0.21138892,1.6327139,0.12904556,0.106043085,-0.0065223714,0.5500851,0.057698205,-0.07395695,-0.17984273,0.2958748,0.22705474,0.08758744,-0.5468147,-0.0054334057,-0.1958057,-0.54651797,-0.13635787,-0.2732488,-0.14363322,-0.3801756,-0.5282113,-0.08695387,0.114449866,-0.23838289,0.5697482,-2.4686046,-0.19229335,-0.003565433,0.29505327,-0.28153867,-0.51865184,-0.080590196,-0.48996308,0.1922901,0.3373873,0.43927053,-0.67184,0.5461905,0.4190368,-0.48327225,-0.17306596,-0.727403,-0.119287305,-0.05764645,0.26104057,-0.07299643,0.072221056,-0.05299414,-0.042051975,0.4638087,-0.16385219,-0.16322634,0.10945813,0.6675885,0.28469497,0.5924486,0.09047067,0.4499866,-0.42361706,-0.031365007,0.33677477,-0.43516028,0.4944892,0.23862281,0.18781692,0.4490759,-0.48649043,-0.95697695,-0.63847446,-0.48177177,1.1799706,-0.27981967,-0.2543889,0.19152695,-0.15545747,-0.3694498,-0.26105478,0.37310812,-0.08086043,-0.003371986,-0.7289667,-0.052021444,-0.1202376,0.27656353,-0.004780391,0.15345478,-0.18968007,0.58607364,-0.02409337,0.42044565,0.39715514,0.12349315,-0.3008166,-0.47864035,0.11115302,0.6600955,0.22024444,0.18778084,-0.18594797,-0.20678036,-0.17362191,0.027559012,0.09744421,0.40403354,0.602404,0.06894427,0.067996375,0.28922895,-0.19897968,3.7986498e-05,-0.17280401,-0.20007664,-0.13082522,0.0059595476,0.49689335,0.75789,-0.2329727,0.53338885,-0.26567662,0.20073095,-0.16526328,-0.35161325,0.33500677,0.70560277,-0.04581896,-0.059097894,0.38133457,0.7216788,-0.43851674,0.34469315,-0.54779917,-0.23276427,0.5281977,-0.183982,-0.40392575,0.08452533,-0.16795543,0.101538554,-0.872992,0.24893077,-0.1785307,-0.6056702,-0.6973775,-0.11267777,-3.070931,0.16470549,-0.09916735,-0.2734055,0.14337572,-0.26934168,0.21966435,-0.5953891,-0.4882975,0.1434493,0.0044597317,0.60536814,-0.029029908,0.18126132,-0.3577181,-0.19421329,-0.31290883,0.26693928,0.24075381,0.28918698,0.028241782,-0.49845332,-0.07002238,-0.4241475,-0.48741004,0.060093183,-0.67821026,-0.5365858,-0.11358343,-0.47775996,-0.45741156,0.7186743,-0.49679247,-0.1612989,-0.03446005,-0.07088036,-0.18706912,0.4351316,0.10220746,-0.0555166,0.04393814,-0.011795963,-0.14771558,-0.36295912,0.37928316,0.091422096,0.39284948,0.47135,-0.029112807,0.13260928,0.7510811,0.7305647,0.13515122,0.8391014,0.11158972,-0.13384579,0.33792192,-0.343029,-0.30375296,-0.70583403,-0.21903774,-0.12619196,-0.33902246,-0.49031103,-0.05210636,-0.33415768,-0.7275448,0.5551568,-0.018057356,0.03215202,0.0039704293,0.22698948,0.40223354,-0.19711104,0.12461305,-0.077121936,-0.16239223,-0.538777,-0.6147486,-0.60830647,-0.63302517,0.018514551,1.3294027,0.011731001,-0.3077768,-0.05417672,-0.34254435,0.17701045,-0.0196955,-0.004978761,0.35706806,0.22148313,-0.16937974,-0.6275622,0.423845,-0.028199764,-0.11866975,-0.40045264,-0.060583856,0.8009815,-0.6878229,0.336802,0.32960102,0.084132224,0.2655174,-0.41468197,-0.2125363,-0.02389144,-0.2004509,0.3501856,0.21918859,-0.7241498,0.4496985,0.21804993,-0.33220255,-0.65606076,0.47370023,0.034287095,-0.043666165,-0.023646198,0.28839105,0.24900834,-0.025665214,-0.2921757,0.24570133,-0.49842724,0.18738149,0.35757798,0.060939386,0.15452327,-0.065271586,-0.039570846,-0.68634087,-0.035312846,-0.15881221,-0.2531236,0.29258582,0.09424706,0.1794339,0.1427344,0.14519492,0.28074488,-0.38560194,5.749097e-05,-0.017286457,-0.18689057,0.27214855,0.3942061,0.4862703,-0.52103233,0.5725411,-0.010544167,0.11776047,0.13159473,0.037665788,0.23994902,0.27455133,0.19451149,0.16081634,-0.31915414,0.042630214,0.8500526,0.3649734,0.59368587,0.11130818,-0.17782713,0.36219552,0.1910349,0.27458894,0.0721922,-0.39413774,0.21103007,0.052033957,0.2102016,0.29902884,-0.15137543,0.27321097,-0.25650734,-0.12761119,0.16469169,0.2582575,-0.12913615,-1.1684549,0.24285537,0.19462532,0.593134,0.53803754,0.02931319,0.19721888,0.553191,-0.42206904,0.06961483,0.4085193,0.13356937,-0.57970434,0.5013842,-0.6162007,0.618715,-0.24068075,-0.042652424,0.0482653,0.010424678,0.4061791,0.86839134,-0.059240773,0.045473073,0.06519215,-0.25688332,-0.008319506,-0.39164215,0.08093056,-0.58675057,-0.088882156,0.67551965,0.50082,0.3559807,-0.094836846,-0.07301806,-0.032825083,-0.10385014,0.3003645,0.021018667,-0.042997103,0.046031576,-0.7067161,-0.2189784,0.6841198,-0.06796226,0.22480904,0.14611807,-0.4870861,0.39990905,-0.14594269,-0.175236,-0.029769907,-0.7567661,-0.030802837,-0.30781978,-0.47520617,0.20272332,-0.13275012,0.32460406,0.26797137,0.069312446,-0.3161252,0.4002554,0.38630444,0.89192265,0.07176326,-0.08154281,-0.33895966,0.074013986,0.30823898,-0.2614248,0.0007083966,-0.28418988,-0.0016155496,-0.511137,0.32500616,-0.14013764,-0.28193358,-0.16916889,-0.039449938,0.06763804,0.5699931,-0.003619836,-0.17934108,-0.09846174,0.16641514,-0.21497767,-0.044169657,-0.30793858,0.21466118,0.117553785,-0.19425796,0.06921475,-0.07497647,-0.0025213545,0.53457594,-0.012517626,0.37907112,0.19170274,0.024316631,-0.33678353,-0.20604776,-0.2286289,0.5767147,-0.02216175,-0.24768756,-0.44946703,-0.14031875,-0.12436641,0.28581417,-0.15357023,0.16419032,0.10846687,-0.5427543,0.8101311,-0.11929046,1.1793239,0.009258609,-0.3496677,0.21248762,0.38136095,0.23253019,-0.0071940836,-0.40847772,0.89606345,0.46095127,-0.24607475,-0.282346,-0.42277873,-0.38357133,0.109690316,-0.31522113,-0.21944703,-0.050507605,-0.59774697,-0.0716551,0.2451024,0.20395687,0.12650725,-0.064687535,0.15580049,0.21358593,0.17061323,0.4343705,-0.36453283,-0.21283355,0.31873733,0.39620414,0.05465593,0.0932306,-0.39469665,0.4895692,-0.5695463,0.2501126,-0.6140161,0.1355473,-0.17150116,-0.2743253,0.16635516,0.26764616,0.4557109,-0.119594015,-0.36423513,-0.27976838,0.71266234,0.25731868,0.4656301,0.65112716,-0.17682761,-0.11376618,-0.052148614,0.30239895,0.9748034,-0.24491332,-0.17217544,0.45775208,-0.32948405,-0.45151842,0.3765051,-0.48229617,0.17636791,-0.029872715,-0.14787665,-0.525964,0.26615188,0.25898057,0.14217807,-0.09631252,-0.39800093,-0.042757154,0.5731909,-0.40899548,-0.33585852,-0.39185625,0.3573478,0.79963905,-0.46035355,-0.26366836,-0.11439355,0.40779427,-0.21507233,-0.2963392,-0.09774894,-0.41563714,0.32028845,0.035316713,-0.30436298,-0.020829061,0.13854179,-0.2792609,0.102722846,0.18318804,-0.431199,0.060724005,-0.25770777,-0.015938204,1.075625,-0.102925666,0.083313465,-0.58435285,-0.57471406,-0.9660602,-0.25418955,0.3277761,0.23504315,-0.038931362,-0.4638235,0.09612127,0.08810495,-0.4284255,-0.07109019,-0.626679,0.439566,0.15064564,0.34592393,0.04132832,-0.90033084,-0.0033948696,0.17608956,-0.17549759,-0.4789777,0.5888395,-0.19005106,0.7176853,0.02456952,0.15610582,0.03834728,-0.36186415,0.2497468,-0.42380667,-0.063625425,-0.6161451,0.08728261,346 -657,0.3876429,-0.18664272,-0.5069942,0.02134613,-0.17535135,-0.10613557,-0.21562098,0.48356503,0.45176634,-0.22442818,-0.19536597,0.08726204,-0.111502126,0.40871271,-0.112401694,-0.6039013,-0.013224572,0.2479984,-0.50169015,0.8837276,-0.28531948,0.18447,-0.13432676,0.47638825,0.2545807,0.23529524,-0.0121126175,0.118360646,-0.081548944,-0.38927764,0.21377994,0.3614601,-0.66635776,0.35376278,-0.27999032,-0.2650374,-0.06589646,-0.4144182,-0.46459764,-0.98513633,0.49262273,-0.69557977,0.47460657,0.1085261,-0.36317137,0.0077195647,0.06123648,0.17687255,-0.11367352,-0.2709281,0.19763364,-0.25831622,-0.16151112,-0.2590078,0.09040487,-0.14649917,-0.6671292,-0.08550509,-0.31738418,0.061888464,-0.47975776,0.19620745,-0.5198525,-0.060672306,-0.21109769,0.65722936,-0.38475227,0.13231611,0.22042535,-0.14754918,0.2990718,-0.74593765,-0.41061804,-0.14620373,0.105115965,0.15511939,-0.38074446,0.50728637,0.17895801,0.39683214,0.04426463,-0.19420351,-0.29479483,-0.059556916,0.32182333,0.32273707,-0.32969353,-0.55923784,-0.121000245,0.04084518,0.22269113,0.17912841,0.11356827,-0.20216924,-0.09767525,-0.01707713,0.025830576,0.49908823,0.62406254,-0.089524716,-0.21547724,0.11616153,0.47254127,0.4653358,0.0037533469,-0.06687843,-0.016400779,-0.59415776,-0.2548065,-0.21921876,-0.40960932,0.59203357,-0.19000901,0.12305093,0.6288601,-0.16133715,-0.3131717,0.22515774,0.18475477,0.1489119,-0.39487204,-0.28459984,0.43181625,-0.54565364,0.26240417,-0.15368894,0.63277733,0.042845942,-0.5552539,0.2531211,-0.6266914,0.22776556,0.00716305,0.52889884,0.70633703,0.5351506,0.5168439,0.85522306,-0.4077935,0.046565533,0.05961385,-0.25923353,0.25849596,-0.27240112,0.0010204866,-0.4424059,-0.16716614,-0.14905277,-0.24297017,0.14931136,0.5043893,-0.6262547,-0.23036702,-0.0048522213,0.67120945,-0.13581382,0.16514191,0.87825453,1.111375,1.2728144,0.09897543,1.3431786,-0.2151255,-0.18001844,-0.01730145,0.0027805795,-0.90816087,0.2493097,0.22778085,-0.14702769,0.18264134,0.030011466,-0.03963745,0.50540173,-0.5790252,-0.18657218,-0.15943876,0.68969566,0.05407194,-0.28937933,-0.4903583,-0.3158043,-0.29314747,0.17225811,-0.17727455,0.41829398,-0.04143382,0.36083362,0.17216443,1.2949469,-0.23350382,0.06721553,0.16836683,0.37257642,0.25835568,-0.20908943,-0.15567572,0.21463276,0.103472464,0.2539833,-0.5207263,0.022166077,-0.3022641,-0.4905942,-0.1121327,-0.26606575,-0.024587473,0.0100284815,-0.12240854,-0.34796715,-0.2976258,-0.22129983,0.47137088,-2.3464637,-0.25000334,0.04014292,0.40191334,-0.18353179,-0.24867454,-0.0067770206,-0.4890668,0.52002394,0.14184743,0.62332016,-0.7353181,0.009338581,0.6411813,-0.90611655,-0.0024647897,-0.4623885,-0.19640256,0.14975391,0.44582468,0.089486875,0.024308534,-0.124876745,0.09431279,0.39179233,0.19690941,0.17502785,0.4149244,0.35276377,-0.39584392,0.26526362,-0.16215202,0.501654,-0.24718522,-0.2729199,0.32089064,-0.2653989,0.465957,-0.4349078,-0.057949882,0.6151262,-0.45446718,-0.82877064,-0.42539662,-0.047028914,1.2838943,0.044191938,-0.7242336,0.34370327,-0.7374316,-0.22097294,-0.10952,0.4941638,-0.18347114,-0.06713031,-0.7649578,-0.006371943,-0.17892505,0.074309126,0.08363937,-0.14492978,-0.5301145,0.84176505,0.121487334,0.3930348,0.57646513,0.057699926,-0.41720805,-0.5181011,-0.014344981,0.875266,0.72409,0.2361928,-0.38077897,-0.112915,-0.33613592,-0.27298287,-0.017790588,0.85000384,0.6080356,-0.28427,0.08798493,0.30275786,0.0017793855,0.029773759,-0.15268272,-0.40592638,-0.21194611,-0.0071705487,0.7667736,1.1604253,-0.2907014,0.20412137,0.15800689,0.22516412,0.08478913,-0.46802956,0.61358005,1.3918096,-0.1889627,-0.20245793,0.912092,0.30574408,-0.26077315,0.5291323,-0.36185944,-0.3743506,0.48646098,-0.0729465,-0.52032274,0.131336,-0.39345816,0.096811645,-0.6865015,0.5386416,-0.63437366,-0.39074376,-0.638004,-0.034919508,-2.2552419,0.2869151,-0.4424842,0.004715507,-0.37509468,-0.061413866,0.07085352,-0.59847534,-0.9134922,0.30610254,0.12172398,0.72073835,-0.373671,-0.047000412,-0.055119373,-0.4936486,-0.23312418,0.21956037,0.24042009,0.36942676,-0.0052910307,-0.4827259,-0.10305312,0.07544072,-0.44752738,0.07431816,-0.4340959,-0.67081255,-0.13780929,-0.6033333,-0.21748474,0.66903436,-0.091526344,-0.06900522,-0.28153366,-0.013549044,0.03405808,0.016707998,-0.09689255,0.25442603,0.13508298,-0.09666211,-0.110044464,0.04028302,0.18122555,-0.10635888,0.5145227,0.4231621,-0.21643823,0.25531504,0.5433839,0.78711534,-0.38195986,1.074835,0.6044227,-0.15989979,0.15801474,-0.18273316,-0.587924,-0.64083,-0.2758962,0.35699382,-0.3907049,-0.40465072,0.034384258,-0.4085298,-0.72077173,0.8228057,0.047542036,0.24814218,-0.03571022,0.11295342,0.42418802,-0.2754546,-0.016103717,-0.15696804,-0.15720378,-0.72069156,-0.14330162,-0.6177034,-0.49467343,0.08479946,0.9293979,-0.51113534,-0.0003110262,0.3728733,-0.2353089,0.007140412,0.14241098,-0.20339495,-0.031640146,0.51631814,0.23208846,-0.62122285,0.47991842,0.2241804,0.091537714,-0.43433154,0.34855586,0.5801944,-0.6080202,0.7569166,0.51683164,-0.17630202,-0.279047,-0.8315488,-0.16516624,0.021714078,-0.2718709,0.53879887,0.45577034,-0.7398981,0.49515527,0.34979752,-0.52079076,-0.76958644,0.4996083,-0.22673157,-0.35094362,-0.19655667,0.51547563,-0.06381333,0.08205526,0.003916172,0.56825066,-0.3214484,0.28438357,0.17231956,-0.23249221,-0.12763889,-0.25802666,-0.30730122,-1.050886,0.134999,-0.6205425,-0.2910679,0.4055789,-0.050552167,-0.2269532,0.046799514,0.6523853,0.4321039,-0.27006626,0.1558489,-0.15510324,-0.48277473,0.46830118,0.56407297,0.76960033,-0.40802157,0.557383,0.00067799364,-0.1445013,-0.04669763,0.0124380225,0.43931177,0.044056144,0.42646152,0.09556697,-0.09071673,-0.079165176,0.97943693,-0.065761775,0.23999701,0.014657784,-0.0003700073,0.15591563,0.09692733,0.54538786,-0.17468666,-0.6864463,0.14517961,-0.33028427,-0.058473267,0.5354395,0.27293116,0.049939614,-0.09696536,-0.54327095,-0.18557207,0.18853566,0.14725107,-1.654298,0.5648782,0.21223116,0.8727373,0.63655955,0.15337904,-0.01027463,0.77760816,0.011018847,0.035574943,0.44603646,0.05472485,-0.48104456,0.4261659,-0.83379513,0.41144282,0.08380491,0.12411002,0.035331782,-0.08857993,0.38534242,0.720973,-0.25696895,-0.16289026,-0.15119076,-0.3925991,0.26054832,-0.42616162,-0.0024684025,-0.5562157,-0.52645457,0.71229565,0.6383059,0.30678904,-0.24983913,0.14498848,0.05041673,-0.15603524,0.46794412,-0.078713425,-0.014022728,-0.10371364,-0.5631931,0.16572969,0.35749975,0.013668476,0.06837379,-0.26227495,-0.041496873,0.16727759,-0.27312994,-0.058236003,-0.20900416,-0.90886337,-0.088520035,-0.61371607,-0.23518173,0.45909324,-0.19011556,0.14478198,0.22106808,0.19950669,-0.26143557,0.32847688,-0.19569151,0.5827695,-0.04534988,-0.1587778,-0.12762672,0.30795905,0.056828592,-0.22743274,0.21185732,0.0049261954,0.12754324,-0.449165,0.6692415,0.013740425,-0.209599,-0.103401735,-0.13264059,-0.024806576,0.48871803,-0.28065968,-0.28307375,-0.22936867,-0.18792024,-0.17399652,-0.3625738,0.061696008,0.11295373,0.38533732,-0.044668134,-0.30551293,-0.17750655,-0.19449936,0.20982035,-0.026246913,0.24650995,0.30714655,0.07506873,-0.47070795,0.017657725,0.30555412,0.50486827,2.6409443e-06,-0.12003733,-0.30089098,-0.5007382,-0.50985914,0.15357842,-0.046614766,0.4276001,0.03203437,-0.1251167,0.6322666,0.14634898,1.0355453,0.048200544,-0.24795988,0.006697838,0.6796811,-0.3006089,-0.18907312,-0.30102545,0.8359076,0.39209753,-0.35816628,-0.016803902,-0.44122,0.38925013,0.2279206,-0.2655972,0.05986581,0.08021133,-0.53007257,-0.11609534,0.2189936,0.43461022,-0.10159469,-0.28643098,-0.2031564,0.3933831,0.21297397,0.1662382,-0.48722583,-0.30336016,0.49166033,0.14071155,0.20444734,0.0808223,-0.42013088,0.36059028,-0.47049987,0.30036908,-0.20157844,0.12322032,-0.3111809,-0.392979,0.2487029,-0.11158239,0.31255367,-0.4405897,-0.31897634,-0.21911496,0.11874855,0.20791326,0.053975448,0.5963918,-0.43375447,-0.14440924,0.25477946,0.5202706,1.0028943,-0.22185895,-0.082287826,0.23749647,-0.40412372,-0.54178846,0.45174375,-0.3007874,-0.08334536,-0.112574786,-0.27438393,-0.8673789,0.07578157,0.1131854,0.082469776,-0.095278755,-0.9050559,-0.22328869,0.081909984,-0.29640183,-0.10224851,-0.251107,-0.08306206,0.74865735,-0.112294436,-0.5794458,0.19336702,-0.0012663695,-0.22828855,-0.61996084,0.030023463,-0.41631475,0.25244263,-0.0026779014,-0.47193888,-0.20667087,0.23487212,-0.57193387,0.106504455,0.13666534,-0.3330256,-0.024548402,-0.3887351,0.043456852,0.88172597,-0.60424924,0.50470215,-0.0123265525,-0.40933686,-0.737028,-0.113928705,0.37764263,-0.039561264,0.08003687,-0.86980784,-0.05644393,-0.16971175,0.13350764,-0.11525807,-0.34559676,0.57474935,0.08406369,0.27508724,-0.26827157,-0.7509229,0.29883748,0.24007735,-0.024050327,-0.4742738,0.49101228,0.0015079471,0.7179482,0.06933732,0.02967745,0.12303138,-0.5509468,0.1289617,0.07881904,-0.19726755,-0.43189934,0.023863632,348 -658,0.45662248,-0.06940386,-0.40450862,-0.0035135425,-0.23345004,-0.0041090916,-0.14977911,0.2517875,0.37264097,-0.32051608,-0.3251893,-0.18059033,-0.037998088,0.19648656,-0.059632026,-0.27029675,-0.0100082755,0.5158541,-0.5884834,0.5720181,-0.15016451,0.26012027,0.10907365,0.5882118,0.1676368,0.041382786,-0.020639108,-0.09015939,-0.11864174,-0.26545164,0.20732641,0.07218823,-0.95305294,0.28618348,-0.43749565,-0.40058157,-0.075700864,-0.49009615,-0.4315925,-0.84669524,0.20748605,-0.76185983,0.64878803,0.08019397,-0.38068658,0.21548226,-0.03751725,0.35319296,-0.01110054,-0.059469108,0.3633723,-0.31659266,-0.15557456,-0.3038613,0.034614887,-0.1825104,-0.51484203,0.1178116,-0.19669707,0.099539086,-0.410436,0.13910863,-0.21766901,0.0032834227,-0.1633626,0.49456608,-0.42041555,0.2770105,0.041172247,-0.042340115,0.3599304,-0.55605245,-0.09652995,-0.20509213,0.28546068,-0.1750491,-0.19129722,0.2374755,-0.07469245,0.5870131,0.005030669,-0.09620938,-0.13842452,0.15836607,0.0110948365,0.42672136,-0.099711016,-0.12571344,0.002815696,-0.21099307,0.12337109,-0.04939199,0.08421048,-0.18475668,-0.044773165,-0.32068458,-0.014836027,0.18739015,0.5831414,-0.100954376,-0.1321799,0.15488577,0.713643,0.27399933,0.0492268,0.05378843,0.034635488,-0.4823669,-0.3022889,-0.07279074,-0.334912,0.569244,-0.09893139,0.14303686,0.5904323,0.04061894,-0.16560186,0.1587808,0.13812222,0.09740896,-0.21073821,-0.50568074,0.63518155,-0.4061222,0.14797226,-0.11291964,0.6882797,0.13040888,-0.6501461,0.2640197,-0.56368285,0.049036857,0.024858452,0.5412529,0.67265797,0.4590939,0.3442605,0.7132321,-0.48652875,0.16490701,-0.028113237,-0.20292854,0.058979254,-0.2525129,0.14390594,-0.29241624,-0.22996548,-0.11228686,-0.33584368,0.023181153,0.4146444,-0.54425913,-0.11676823,0.24837619,0.69417965,-0.20697044,-0.041315094,0.6754639,1.0727448,1.0793172,0.11561433,1.1595167,0.23056124,-0.3465896,0.019467281,-0.08630224,-0.7357139,0.1672447,0.13536757,-0.27788928,0.15722539,0.32188103,-0.073347464,0.49506935,-0.9455317,0.0199564,-0.2006626,0.17434451,-0.13559696,0.016788244,-0.60151714,-0.26856327,-0.22534916,0.08690625,0.05662748,0.23620874,-0.27692428,0.1581982,0.110916615,1.5467308,-0.28349835,-0.0058725188,0.14294428,0.36846793,0.06401388,-0.26034105,-0.17532757,0.10400966,0.29306847,0.066346936,-0.4181236,-0.011520734,-0.033693165,-0.39837056,-0.24030367,-0.059305485,-0.04374238,-0.037158053,-0.3891263,-0.4437564,-0.06181222,-0.53158784,0.43874007,-2.0583704,-0.14553028,0.028240545,0.61928505,-0.35315466,-0.268438,-0.11023808,-0.42043594,0.31190962,0.26886442,0.3462651,-0.56777775,0.33804765,0.56865287,-0.66891503,-0.0829991,-0.60128313,-0.21847092,0.06905425,-0.016059931,0.11527724,-0.10780648,-0.16296738,0.053822048,0.2698657,0.023105837,0.14268702,0.46263158,0.2678242,-0.08031835,0.32447842,0.04933898,0.4584869,-0.46139696,-0.19132076,0.54420793,-0.32831648,0.22822809,-0.4411279,0.06411555,0.4912353,-0.44833705,-0.6851801,-0.5730143,-0.2870373,1.0642831,-0.15917514,-0.5023668,0.1846121,-0.2527309,-0.25444227,0.096873745,0.60242283,-0.05095411,0.06995977,-0.8800643,-0.17120904,-0.13796112,0.35343584,0.10901398,0.04201859,-0.6701952,0.6631676,-0.17763938,0.29285187,0.51845646,0.298562,0.014769738,-0.48301446,0.18378693,1.0511394,0.37757143,0.19302501,-0.4881148,-0.052969966,-0.36019403,-0.03702859,-0.2364838,0.58843446,0.68643516,-0.29400998,0.038432315,0.15064934,-0.048237555,0.018227926,-0.15129127,-0.4324856,-0.084153906,-0.1932869,0.6213437,1.1166134,-0.020492705,0.19328164,-0.12581475,0.2373531,-0.20758358,-0.45228326,0.5186638,0.9221662,-0.16222903,0.04864728,0.7769318,0.3324219,-0.21583956,0.5251429,-0.72718036,-0.47631696,0.24822792,0.04011325,-0.43220806,0.14564699,-0.3512997,0.2865311,-0.6516985,0.5466136,-0.14335926,-0.44017187,-0.7615465,-0.08134719,-1.3305871,0.17549871,-0.30809245,0.009010691,-0.08044234,-0.1721213,0.031768434,-0.40221915,-0.6308202,0.27847427,0.11368036,0.6130841,-0.11997534,0.3001201,-0.0808135,-0.41629952,-0.36277536,0.067361504,0.3939315,0.29458782,0.041920997,-0.37193224,0.008812757,-0.12203283,-0.103995614,-0.14119089,-0.742948,-0.49898177,-0.16708161,-0.48628986,-0.33691055,0.5740414,-0.3549464,0.001878688,-0.31491444,-0.14634511,-0.075102635,0.11882074,0.06506132,0.23528291,0.12806562,-0.18002525,-0.24028212,-0.13737722,0.41124395,0.16063362,0.036674876,0.36119187,-0.23127382,0.15551975,0.3913878,0.7249756,-0.33431453,1.0516958,0.69846153,-0.09436277,0.06725864,-0.15228441,-0.28912348,-0.50201565,-0.13375998,-0.06584096,-0.451488,-0.34970632,0.105310716,-0.3383015,-0.8368533,0.6286056,-0.10608347,0.10354233,0.27359873,0.09700168,0.3981167,-0.28269857,-0.2998811,-0.141368,-0.048776135,-0.6087055,-0.4430806,-0.5243725,-0.4268589,-0.09123456,1.1750005,-0.014393472,0.1674013,0.4966943,-0.16506103,0.07524955,0.086496875,-0.200627,-0.15622947,0.8065204,0.16551307,-0.66467863,0.3351032,0.19023544,-0.06603192,-0.6010673,0.4380449,0.62269235,-0.5603752,0.5223291,0.38275015,0.024145126,-0.15769124,-0.6256291,-0.44225502,-0.13747174,-0.23117803,0.30336604,0.24940076,-0.6369678,0.24197966,0.17923053,-0.34922367,-0.9836802,0.51383936,-0.052640095,-0.50673854,0.14143418,0.24723086,-0.21730232,0.060244117,-0.028560685,0.2909514,-0.29415774,0.46751451,0.15335305,-0.28224996,0.03826545,-0.47769362,0.0074478206,-0.8668194,0.14461862,-0.5100387,-0.50769603,0.09653907,0.12226556,-0.1922833,0.5638602,0.5694995,0.31766525,-0.28066894,-0.0082141,-0.30088842,-0.33782065,0.3478751,0.3533406,0.55732507,-0.47272813,0.5359739,-0.089175135,-0.2212158,-0.2896743,-0.08891516,0.40313542,-0.285391,0.3372645,0.045928534,-0.022677375,0.057879083,0.64533496,0.07350826,0.32225344,0.008942476,-0.10943956,0.34189433,0.05415116,0.2554478,-0.118102,-0.6595447,0.2803651,-0.27302867,0.075681426,0.25436166,0.16111249,0.3347925,-0.08619695,-0.4288302,0.107861474,0.17266501,-0.0745198,-1.2610291,0.302116,0.090829425,0.6906103,0.5972087,0.010522842,0.0719604,0.88730663,-0.0633398,0.11388858,0.21889177,-0.04704052,-0.23257685,0.50753677,-0.5575892,0.23541634,-0.14354767,-0.064302176,0.117257446,0.001839922,0.33472508,0.62706745,-0.14381391,0.010398507,-0.3176592,-0.22978494,0.035378493,-0.32813868,0.39867193,-0.7377425,-0.3820296,0.8753332,0.59278905,0.40394205,-0.24321413,0.17453298,-0.034918692,-0.19353512,0.23996346,0.13193712,-0.15846154,0.34351602,-0.54742694,0.2508671,0.4290136,-0.35814685,-0.11792715,-0.0948195,-0.24143508,0.061547756,-0.344727,-0.22112964,-0.09964614,-0.96558887,-0.18678276,-0.60505086,-0.09192419,0.34946683,-0.0187524,0.18773317,0.13134703,0.07911265,-0.24059692,0.40021926,0.096929595,0.7480495,0.3121414,-0.074564986,-0.18199374,0.4430569,0.27042872,-0.18677591,0.15590443,-0.17955218,0.17281786,-0.54073584,0.3407912,0.047842264,-0.21241197,0.21149364,-0.14443046,0.06842721,0.66337174,-0.044300683,-0.12080201,0.15615152,-0.2947631,-0.18973705,-0.108523995,-0.26028177,0.29210892,0.26354605,-0.24286117,-0.09979301,-0.06722551,-0.20208311,0.43760973,0.06492503,0.52335095,0.3573492,-0.038776875,-0.37665686,0.025918035,-0.03217978,0.67718506,-0.0036556995,-0.24559662,-0.22294539,-0.40526587,-0.36316362,0.56939405,-0.10118169,0.2122183,0.12237969,0.06711679,0.816935,0.39378807,1.0112793,0.042045675,-0.17730466,0.16699776,0.44034898,-0.08314828,0.007967811,-0.64431417,0.9319443,0.40729207,-0.15579851,-0.025418751,-0.10493781,-0.067925446,0.088246055,-0.10285127,-0.055455163,-0.035568025,-0.7946952,-0.042486522,0.13503595,0.46716213,-0.1200072,-0.13338384,0.14968944,0.33185166,-0.10093232,0.40093577,-0.5207163,-0.23144343,0.48606846,0.23542213,0.041199878,0.16052318,-0.2977057,0.3482173,-0.4543834,-0.040966466,-0.39655298,0.08537232,-0.23999588,-0.38265273,0.2075937,0.1927808,0.45291325,-0.62966925,-0.10856671,-0.33517092,0.36324868,0.28395775,0.08762377,0.55283535,-0.29530576,-0.096344404,-0.035116017,0.37772793,0.9106386,-0.43992174,0.25472447,0.40035054,-0.24985097,-0.443804,0.35018831,-0.20282644,0.01625492,-0.11628966,-0.3345372,-0.6249993,0.19554418,0.03601024,-0.21430741,0.109673895,-0.91843915,-0.00788419,0.46892676,-0.1583236,-0.13665663,-0.22214444,-0.0053221467,0.4191389,0.017552119,-0.47342923,0.04269941,0.20996983,-0.32155484,-0.49117836,-0.033615395,-0.59906393,0.15393016,0.07719814,-0.40911028,-0.38646978,0.040322416,-0.54848725,-0.12113318,0.11936033,-0.31395817,0.0116618965,-0.38574484,0.18933609,0.8890094,-0.07343075,0.19002557,-0.2734687,-0.41200745,-1.0369961,-0.18977165,0.35064098,0.22801381,-0.031021796,-0.4763014,-0.14858659,-0.2322639,-0.07882984,0.044199195,-0.40996927,0.3518206,0.35617396,0.41325554,-0.29493484,-0.89408994,0.05083853,0.13280807,-0.39288476,-0.44782147,0.2766251,0.23602046,0.9824769,-0.06702229,0.06361734,0.04281155,-0.6772764,0.17230085,0.04058161,-0.17176077,-0.68160015,0.019821597,361 -659,0.35971028,-0.36468747,-0.48205894,-0.22272827,-0.24908689,-0.13386776,-0.15561691,0.41706812,0.23036702,-0.2952564,-0.22295114,-0.07928608,0.03345733,0.4267648,-0.026248066,-0.6298166,-0.12254857,0.10559634,-0.56204385,0.59299076,-0.54844314,0.19410071,0.118176386,0.49693367,0.119056806,0.27029303,0.29417238,-0.1822456,0.076094314,0.0058019804,-0.19781953,0.3278764,-0.37046435,0.14511569,-0.09662085,-0.36101466,-0.05936218,-0.50796074,-0.08955085,-0.76423043,0.13288651,-0.888359,0.38098648,0.09904099,-0.349642,-0.26770973,0.2817205,0.4603636,-0.41075343,0.022360729,0.21402296,-0.085666165,-0.21999851,-0.15694621,0.05393662,-0.22966957,-0.3896878,-0.1309044,-0.4989227,-0.262124,-0.01526684,0.19666037,-0.41176775,-0.13193594,-0.21362415,0.37669578,-0.42875496,-0.065232545,0.48266882,-0.23950857,0.4244599,-0.534001,-0.07521642,-0.17172012,0.35376552,-0.05825534,-0.41350225,0.32458177,0.3844217,0.36154413,0.122617535,-0.24906111,-0.10508633,-0.189294,0.16629556,0.4098999,-0.25478473,-0.2992944,-0.20234126,0.06738176,0.3142141,0.559101,-0.028161498,-0.4677078,-0.054307397,-0.06845644,-0.120835155,0.34702837,0.48798913,-0.15818664,-0.2623338,0.14069916,0.5360521,0.28692326,-0.23081534,0.073164746,0.1364502,-0.63092506,-0.09579112,0.4008249,0.03870304,0.5223048,-0.06681988,0.15885566,0.88305724,-0.102788724,-0.004044267,-0.017780405,0.04416441,-0.2607167,-0.5419765,-0.26196364,0.2094228,-0.55470186,0.13453048,-0.24482657,0.8328922,0.04512929,-0.7606526,0.2841866,-0.60687065,0.16191587,-0.19804588,0.65243876,0.7338672,0.34644598,0.4083128,0.71355534,-0.22470704,0.15890151,0.08022396,-0.38617718,0.04493849,-0.17026281,-0.017953685,-0.5815226,0.12099739,-0.022744715,0.15005113,0.07734304,0.2891727,-0.5669905,-0.14417502,0.16871825,0.71346855,-0.31537765,-0.04702043,0.56930906,0.9406207,0.9559621,0.15269688,1.0103217,0.29020408,-0.14681925,0.2687827,-0.2728545,-0.6542338,0.14637558,0.36773637,-0.018234005,0.16754839,-0.20115297,-0.1613369,0.35492626,-0.3019976,0.07266908,-0.10690526,0.16475758,-0.011687545,-0.10485586,-0.61478615,-0.2855481,-0.120422564,-0.09478076,-0.0996375,0.15210022,-0.20474349,0.37700638,-0.14248866,1.3425905,-0.09351414,0.061654605,0.17227395,0.50053847,0.20278963,-0.19295517,-0.08343374,0.43891585,0.58998704,-0.07426961,-0.5456372,0.29259968,-0.24458566,-0.46833462,-0.036985766,-0.46699312,-0.11061602,0.0011999791,-0.61041045,-0.15302391,-0.11394104,-0.23985934,0.39071104,-2.9190955,-0.19869398,-0.26836175,0.16785939,-0.25189203,-0.10097206,-0.18834612,-0.39550593,0.25086498,0.29552886,0.54204667,-0.6335596,0.40256235,0.48447558,-0.50196713,-0.17188266,-0.7461552,-0.14790536,-0.04944472,0.33927172,0.009165817,0.029728783,-0.046848692,0.120915905,0.6704662,-0.09207012,0.12808993,0.47483715,0.2843528,0.097702146,0.42907238,-0.03413993,0.5365862,-0.43276164,-0.18445888,0.25930282,-0.21793574,0.2392274,0.15646154,0.094381995,0.5141434,-0.4519699,-0.927584,-0.6738932,-0.4110487,1.0268245,-0.50579596,-0.33568323,0.20414576,-0.2885365,0.04632491,-0.024901778,0.65657,0.017492028,0.16770941,-0.7699538,0.13696748,0.026765347,0.31000468,0.059741873,-0.19017552,-0.21303262,0.66599756,-0.035879478,0.68395877,0.35375485,0.13064276,-0.2595066,-0.47091872,0.052178852,0.70078856,0.3247641,0.053281955,-0.11141659,-0.2877733,-0.12110551,-0.11770395,0.14423428,0.60138595,0.89821726,-0.052553836,0.14889579,0.39304286,-0.11321033,0.033821154,-0.081617944,-0.15498553,-0.10101238,0.1504269,0.41719264,0.5011928,-0.089847654,0.4742131,-0.19236627,0.3373268,-0.0971963,-0.51174825,0.66065115,0.5489584,-0.106182046,-0.083584115,0.39559808,0.6580743,-0.4350336,0.40643805,-0.58399177,-0.08668094,0.6668521,-0.2376524,-0.48621053,0.20674501,-0.38467392,0.2269633,-0.94053376,0.36178896,-0.47472665,-0.44993395,-0.36582205,0.014745548,-3.2836645,0.34013063,-0.19391544,-0.28404042,-0.3397885,-0.057759568,0.33008832,-0.6269244,-0.5198194,0.10268636,0.29161072,0.70756215,0.05010759,-0.061949436,-0.379504,-0.06831288,-0.055661567,0.19115283,-0.012744784,0.23435329,-0.16456074,-0.42725194,-0.123585545,0.011128907,-0.565946,0.18320659,-0.609442,-0.48598942,-0.14703074,-0.6046225,-0.3120371,0.62794644,-0.27887028,-0.06078252,-0.030962948,0.07288889,-0.14406577,0.3717068,0.17740437,0.23312944,0.11941959,-0.056915265,-0.07146896,-0.29126185,0.23019692,-0.08783984,0.20297956,0.075943254,-0.04483402,0.3312575,0.5365388,0.5256245,-0.11142826,0.8042996,0.48174497,-0.027901081,0.2410799,-0.31549627,-0.15189816,-0.47578618,-0.31587458,-0.2078823,-0.33628413,-0.49257982,0.11200314,-0.14143276,-0.79746825,0.61879516,-0.045511525,0.29224253,0.010862357,0.21237707,0.4050887,-0.09747538,-0.019652762,-0.12612788,-0.10731081,-0.47825366,-0.24686025,-0.71781355,-0.44441932,0.1101801,1.0171002,-0.32580015,0.13388707,-0.09238885,-0.34979427,-0.048629794,0.1462085,0.03390294,0.40614447,0.35198674,-0.17191672,-0.54438937,0.32047898,0.08491544,-0.3442517,-0.50713366,0.09240997,0.70249265,-0.74938715,0.6819045,0.21329778,0.02058052,-0.22860672,-0.5796156,-0.3304008,0.04421423,-0.16700205,0.36954525,0.12790516,-0.71151453,0.44904476,0.4648295,-0.28525904,-0.72496235,0.34760195,-0.12332504,-0.3441332,-0.08000113,0.3307475,-0.123855755,-0.12670499,-0.19507192,0.23489657,-0.41542625,0.16182676,0.16656008,-0.108621866,0.4861512,-0.16686152,-0.1065817,-0.5968467,0.15433581,-0.6848535,-0.19139725,0.48022744,-0.057525728,0.010054744,0.060362935,0.014129451,0.350495,-0.20650846,0.13758247,0.029017938,-0.27673286,0.23170903,0.5285077,0.24538986,-0.27280533,0.5801337,0.17884949,-0.04561992,-0.11507307,0.24786347,0.32273844,0.075580485,0.44670156,-0.50094837,-0.31442547,0.38874462,0.8211102,0.11524101,0.5265167,0.021332929,0.06763384,0.25149998,-0.008775353,0.22548261,0.0005896917,-0.23974323,-0.0578591,-0.110954635,0.14754571,0.5055943,0.23584692,0.37290102,0.09524894,-0.1554246,0.08730053,0.3236574,-0.042961504,-1.0104865,0.5636753,0.34798065,0.7667054,0.49169064,0.085013285,-0.28226832,0.5705219,-0.31431916,0.1722778,0.3109059,0.024012158,-0.52336025,0.8727173,-0.68443674,0.5063278,-0.21271075,-0.0625891,0.13897546,0.038449205,0.36712706,0.6698048,-0.077333614,0.07304769,0.008353787,-0.23288253,0.04546908,-0.43364355,-0.017084168,-0.42687815,-0.45161802,0.662861,0.4481437,0.35064122,-0.19862372,-0.072210364,0.17597121,-0.107615486,0.20542225,-0.07390815,0.06564758,0.1406943,-0.6247121,-0.15242502,0.5686227,-0.103374675,0.1493168,-0.124930106,-0.3029433,0.07534342,-0.14315987,0.11959501,-0.045558736,-0.61865276,0.15240936,-0.41338634,-0.47844556,0.38273776,-0.5555793,0.17263664,0.14198266,-0.007920637,-0.13663095,0.40884843,-0.009820416,0.8762643,-0.055511914,-0.25864947,-0.36267716,0.061950013,0.17827763,-0.23044378,-0.07791607,-0.39394933,-0.093621895,-0.5251864,0.5627453,0.1046022,-0.3509995,0.26918414,-0.20731269,-0.0746258,0.5603889,-0.052923676,-0.16005437,-0.13326746,-0.2609008,-0.45004383,-0.03399735,-0.24664317,0.30831325,0.24139833,0.14745936,-0.053659555,-0.1303044,-0.03429598,0.53024113,0.12224821,0.45295575,0.34353536,0.122645065,-0.34159756,0.12236829,0.21679181,0.4346097,0.27908596,0.057544444,-0.38556704,-0.24831054,-0.20984147,-0.06457791,-0.16919623,0.34837517,0.03410031,-0.20012951,1.0050213,-0.051662702,1.0236329,0.035477635,-0.37324584,0.003828819,0.34826204,-0.034692623,-0.014938538,-0.24890019,0.7389316,0.574314,-0.06455215,-0.03274967,-0.31425267,-0.21547583,0.42321056,-0.2655937,-0.1287336,-0.056089394,-0.53169715,-0.36846447,0.19092928,0.20744817,0.23288478,-0.10373409,-0.12798215,0.038612004,-0.014748587,0.20725147,-0.46852258,0.077016346,-0.04617683,0.31328848,-0.02021185,0.17921966,-0.43095696,0.39380565,-0.77793163,0.2875912,-0.48760796,0.09658089,-0.14863455,-0.34941992,0.07419026,-0.106084,0.28459197,-0.24995208,-0.18891114,-0.019661056,0.5637551,0.13064131,0.13287574,0.71888375,-0.2451973,0.17749572,0.16980058,0.46804816,1.1822221,-0.4823233,-0.25692588,0.30497634,-0.44396877,-0.6520977,0.3422451,-0.35784715,-0.010807239,-0.13856688,-0.45601746,-0.44564378,0.24603759,0.29968384,0.10039944,0.064368576,-0.48858228,-0.059615415,0.34697235,-0.26563826,-0.31933314,-0.3588837,0.50058323,0.6179127,-0.19016673,-0.43298537,0.00020601199,0.18687609,-0.1974694,-0.31941396,0.10949036,-0.18999085,0.23903309,0.025559563,-0.32345185,-0.087626144,0.09317071,-0.4839856,0.09989272,0.1960899,-0.2615457,0.1825571,-0.1364989,-0.2179779,0.9721352,-0.25119773,-0.2461783,-0.57435256,-0.38784263,-0.7693637,-0.37734467,0.50789773,0.081629835,0.08298014,-0.4775999,0.20338416,0.038531456,-0.17102018,-0.0957529,-0.3498071,0.41806063,0.119644806,0.38261476,-0.15798444,-0.71179396,0.31768295,0.043573186,-0.061215244,-0.6493419,0.49609616,-0.17405918,0.85047746,0.12043047,-0.12491639,0.10823099,-0.3724186,0.1681678,-0.3421842,-0.17729422,-0.8415816,-0.13845466,363 -660,0.2904438,-0.3339659,-0.4747232,-0.21492504,-0.3568096,-0.1347881,-0.12549068,0.33293015,0.3164558,-0.1556716,-0.2708693,0.092876874,0.05418231,0.5708275,-0.017712131,-0.68815684,-0.07845068,0.28228846,-0.6748972,0.4460751,-0.56528,0.30628005,0.14891805,0.47864228,0.067875355,0.4325659,0.34414017,-0.11299069,0.0649974,0.064826176,-0.10014514,0.29989856,-0.6498749,0.20109712,-0.10056567,-0.4041093,0.040274676,-0.3982224,-0.29359043,-0.78855634,0.12267749,-0.9866617,0.6393915,-0.0862885,-0.13508905,-0.1325608,0.19914666,0.41697532,-0.45788553,-0.0848005,0.21757856,-0.24618402,-0.26474532,-0.19917957,0.09269826,-0.46595445,-0.4653239,0.03130882,-0.5941207,-0.31582433,-0.27571943,0.18990889,-0.30318004,-0.06874769,-0.100061566,0.3309582,-0.37968862,-0.1157052,0.3721395,-0.3997334,0.21359086,-0.5809915,-0.0045354357,-0.031580348,0.4074578,-0.07012493,-0.34645858,0.4672255,0.39119813,0.5457083,0.413699,-0.37915447,-0.18053728,-0.110248454,0.10098258,0.4624755,-0.13822684,-0.22168292,-0.20517002,0.21385615,0.42138475,0.23858379,0.09112268,-0.16293682,-0.05570409,0.015810968,0.08834969,0.3970719,0.5630481,-0.16030894,-0.35653502,0.31004998,0.5346166,0.1906821,-0.12371589,0.005480051,-0.046815176,-0.5435739,-0.28409228,-0.11527665,-0.19805455,0.5986842,-0.22703949,0.048371155,0.9472256,-0.09340705,-0.063112795,0.06833297,0.020535268,-0.28684443,-0.36714083,-0.14473929,0.37182963,-0.47893667,-0.05841831,-0.21663526,0.6847979,0.16767247,-0.68457663,0.39369312,-0.48260644,0.15583012,-0.21310197,0.6836306,0.8018281,0.48431364,0.42641702,0.96797407,-0.2591311,0.3210076,0.1630227,-0.52265155,0.18109155,-0.38347536,0.004452561,-0.6091231,0.11373231,-0.1946558,0.009913518,0.089017905,0.33863053,-0.7879106,-0.04096739,0.24523197,0.8045077,-0.3061994,-0.1327068,0.7056437,1.1065955,0.9948076,-0.06786673,1.217076,0.44832823,-0.26513502,0.28383854,-0.37764394,-0.7442763,0.26834223,0.51918495,-0.15466021,0.35783356,-0.009937688,-0.019102342,0.46005052,-0.57302374,0.030578546,-0.06793367,0.30081585,0.029678,-0.22908022,-0.62446797,-0.046229545,-0.025255147,-0.19492237,0.17994016,0.31859928,-0.25148395,0.32765928,-0.16572863,1.3246144,-0.011062888,0.067274526,-0.0131556485,0.59918,0.28175446,-0.26089507,-0.078514256,0.3588494,0.47839049,-0.13779742,-0.5734669,0.20752014,-0.43948978,-0.56876,-0.15921809,-0.49202678,-0.13570637,0.19672063,-0.28617102,-0.35721982,-0.14226307,-0.3412426,0.3241192,-2.5946531,-0.28280297,-0.087594695,0.46125105,-0.43707502,-0.067894764,-0.03277909,-0.51541555,0.20541562,0.30878437,0.5500015,-0.66823924,0.48659053,0.44976902,-0.6440411,-0.22550589,-0.6681652,0.06884374,-0.110878415,0.53954834,0.0530171,-0.23738292,-0.09728587,0.01517648,0.7442951,0.08715891,0.2390768,0.5846166,0.33791322,0.20164695,0.35825017,-0.16641071,0.73860157,-0.33826926,-0.3154298,0.41428682,-0.17662531,0.34072325,-0.22339915,0.01767583,0.574909,-0.45506513,-0.99938244,-0.74051595,-0.24884237,1.0053899,-0.3473444,-0.57907957,0.31423596,-0.32318592,0.026485337,0.15612698,0.59646726,-0.04626282,0.09195929,-0.7136466,0.11770516,0.009342895,0.12675267,0.1405394,-0.018875016,-0.41102707,0.72971207,-0.11013218,0.55555165,0.23874386,0.38886362,-0.22281991,-0.44548064,0.12067714,0.6671266,0.2862589,-0.062487654,0.011495094,-0.28384012,-0.2145022,-0.27178642,0.04270098,0.5723534,0.8405896,-0.12042062,0.040180124,0.3294969,-0.11651481,0.009861302,-0.076012194,-0.23173314,-0.13449273,0.2551952,0.49467283,0.73752606,-0.32095894,0.51673424,-0.34438694,0.40384355,0.0045755277,-0.7259834,0.808108,0.59602284,-0.23092434,-0.06760586,0.67537147,0.43352273,-0.380817,0.6137829,-0.6962003,-0.34477425,0.63290966,-0.20668727,-0.39007622,-0.13136294,-0.18975121,0.24368367,-1.0678334,0.28310376,-0.22682475,-0.552743,-0.45716876,-0.08353249,-3.0552244,0.1603294,-0.27682766,-0.010539367,-0.34606302,-0.058735747,0.22015712,-0.8425748,-0.5334456,0.17178217,0.20275563,0.74431443,0.053980295,0.2014951,-0.21485975,-0.24110784,-0.12794222,0.23332904,0.07240263,0.2417562,-0.05766178,-0.52214825,0.0064243814,0.09581872,-0.5986408,0.18460736,-0.6843389,-0.4640228,-0.21549703,-0.72993016,-0.23785485,0.5360559,-0.34070876,-0.00334112,-0.2168712,0.26419577,-0.16760813,0.20195502,-0.00080744276,0.16932766,0.3513344,-0.14932455,0.14462592,-0.27899072,0.46841064,-0.058073528,0.5734039,0.091860786,-0.18291236,0.19579348,0.6738746,0.7062959,-0.32701114,0.9772206,0.6385977,-0.05651849,0.26174238,-0.38266203,-0.23594056,-0.639067,-0.5210868,-0.14626667,-0.466703,-0.58013296,0.29179668,-0.29693502,-1.0710869,0.7822619,0.038397916,0.58799654,-0.020698603,0.24870393,0.6110598,-0.20921165,0.014610974,-0.22193053,-0.27432156,-0.59043705,-0.29430568,-0.5569422,-0.590243,-0.027827721,0.96844304,-0.36973813,0.09975903,-0.007201296,-0.3724345,-0.006908685,0.041993115,-0.10993511,0.3315225,0.45099348,-0.1315549,-0.79111755,0.28445643,0.17483465,0.05079742,-0.6206068,0.17849304,0.54155934,-0.8300931,0.6313874,0.20683065,0.014442866,-0.07650916,-0.48958528,-0.30667984,-0.10039493,-0.031479537,0.50350934,0.17377004,-0.7776158,0.6001431,0.33205146,-0.5271035,-0.8071989,0.101490855,-0.14840208,-0.16256014,-0.03985307,0.17964877,-0.025438355,-0.07434937,-0.3017731,0.12718727,-0.46024588,0.24332689,0.21794558,-0.008198362,0.51437956,-0.2192516,-0.3109557,-0.99064535,-0.07921989,-0.5537746,-0.07839678,0.2198342,0.10712956,-0.07812733,0.2428565,0.2940629,0.43975526,-0.2097256,0.20407125,0.062216856,-0.57634157,0.20834854,0.5300429,0.23466757,-0.5579673,0.43852428,0.2294119,-0.35519952,-0.08843331,-0.07741917,0.55266696,0.14919086,0.30706096,-0.123702064,-0.22271322,0.25977403,0.8200722,-0.051619086,0.45509008,0.033986203,-0.076497406,0.36150652,-0.005002439,0.2678911,-0.07524602,-0.62123173,0.06910353,-0.089422,0.20496605,0.46933922,0.5235225,0.31129667,0.14090887,-0.251315,0.03822348,0.114478536,0.112111084,-1.067287,0.48678714,0.44844165,0.9589721,0.41238764,0.0976855,-0.3016632,0.76018846,-0.21355632,0.101760454,0.49006674,-0.20243612,-0.583876,0.6932193,-0.7913997,0.4224293,-0.09408593,-0.11414374,0.13569114,0.20973668,0.4067458,0.8793426,-0.20077842,0.04986729,-0.057059947,-0.124075375,0.108674124,-0.32701573,-0.02280166,-0.5987276,-0.30108097,0.8160439,0.4580579,0.42564875,-0.1929238,-0.1149012,0.13048698,-0.1472165,0.38335845,-0.12388161,-0.0056903777,0.1599604,-0.43410155,-0.1304229,0.49975142,0.34754503,0.27740878,-0.19557208,-0.32698902,0.09321051,-0.37832123,-0.22658443,-0.07287323,-0.65570736,0.01814404,-0.07863373,-0.43358496,0.84707254,-0.17455809,0.19590847,0.15026037,0.041852675,-0.19922656,0.29029778,-0.14207155,0.83884054,0.13464317,-0.38008994,-0.32474375,0.16053356,0.23571719,-0.3077091,0.22776063,-0.3751804,-0.059961732,-0.4156819,0.5802402,-0.06613147,-0.5687626,0.18961431,-0.25082687,0.037913088,0.5188383,-0.11446754,-0.14566085,0.13359937,-0.22225808,-0.5625688,-0.09011534,-0.33587205,0.2479594,0.16157392,0.051849823,-0.30628735,-0.25133654,-0.14136522,0.5679229,-0.01552778,0.3641848,0.10396846,-0.09153257,-0.19397052,0.109820336,0.425899,0.41358426,0.29194447,0.042017724,-0.39045593,-0.33254406,-0.32759768,-0.104758374,-0.027108865,0.26413727,-0.025876174,-0.21371463,0.8578994,0.14870769,1.4671777,-0.02323513,-0.3725391,0.12195529,0.59894127,-0.0039502014,-0.023075713,-0.45031247,0.8727439,0.7179709,-0.056808453,-0.00988372,-0.5913089,-0.22569785,0.5690922,-0.35810497,-0.23103501,-0.054185085,-0.69836515,-0.6210197,0.3191357,0.21474358,0.11564587,0.009752049,0.06628183,-0.12776144,0.031775236,0.37514502,-0.6767209,-0.32196224,0.19940995,0.40430245,-0.049340706,0.11439967,-0.46205643,0.45474848,-0.792273,0.2383125,-0.29951003,0.059756715,-0.34031793,-0.39416578,0.21125351,0.10989117,0.37571144,-0.2956789,-0.46177036,-0.012087317,0.5877524,-0.08093194,0.10950081,0.7716037,-0.4359059,0.017426819,0.10055573,0.4223784,1.2135129,-0.36170834,0.009588987,0.28202498,-0.41503957,-0.7229966,0.68044335,-0.3096809,-0.008174887,-0.14755969,-0.52631867,-0.50252205,0.1464816,0.2478567,0.018888762,0.10707385,-0.5249597,-0.07377833,0.30321434,-0.2536793,-0.09829418,-0.15781514,0.3396599,0.6597732,-0.26800823,-0.4378117,0.14849758,0.34321725,-0.16152123,-0.47960952,-0.14077859,-0.1920099,0.35519713,0.030847536,-0.52075356,-0.05461314,0.14430691,-0.4796201,0.17407693,0.29972404,-0.3423807,0.15488341,-0.31364632,-0.00023852174,0.8725304,-0.18938483,0.065221936,-0.65815353,-0.33690295,-1.0492011,-0.5365808,0.28978556,0.20112036,-0.08556879,-0.5427708,0.13384703,-0.082739696,-0.21060926,0.04978511,-0.6537799,0.37711328,0.098819606,0.5752685,-0.15370142,-0.9574904,0.09516633,0.18563502,-0.0070178965,-0.6876534,0.5828154,-0.15899266,1.0721967,0.0677379,-0.1115938,0.0921021,-0.45789343,0.07683728,-0.35736024,-0.121995434,-0.7793964,-0.11210852,369 -661,0.567862,-0.25396055,-0.53441715,-0.12439224,-0.07181092,-0.011439901,-0.217751,0.5307791,0.07386535,-0.52788734,-0.19862755,-0.10269634,-0.0789495,0.28326982,-0.13422732,-0.55527335,-0.12462803,0.14746459,-0.5179745,0.7818162,-0.3335291,0.30394486,0.054895338,0.45869648,0.3148944,0.26491964,0.451621,-0.055572692,0.075814575,-0.22012265,-0.035674673,0.010373705,-0.7272621,0.2786334,-0.26941454,-0.52476776,-0.042064156,-0.28800216,-0.34330308,-0.96664834,0.3451099,-0.8069172,0.5143491,-0.015810696,-0.4261465,0.3708603,0.048092816,0.24160506,-0.2736429,-0.0039763036,0.031500414,-0.24825884,0.099781126,-0.16331567,0.03082138,-0.40102822,-0.6792623,-0.033513587,-0.5638571,-0.07871958,-0.30484992,0.24606358,-0.3556617,-0.12464591,-0.1833333,0.6320674,-0.5165025,-0.07639968,0.23513362,-0.15592255,0.39244783,-0.75976,-0.076841965,-0.18353227,0.18608302,0.05914502,-0.059855204,0.3076772,-0.031877078,0.44375637,0.30635157,-0.27709845,-0.35804746,-0.18920901,-0.012696647,0.22905779,0.0446413,-0.38366216,-0.04502328,-0.23463687,0.46670565,0.30222338,0.15306315,-0.08174174,-0.08221764,-0.20417927,-0.17322744,0.42170128,0.57891166,-0.27387503,-0.35582113,0.38149935,0.6967128,0.112205476,-0.20521834,0.25404263,-0.097604714,-0.4086412,-0.17646171,0.3039902,-0.20432582,0.48771837,-0.1689309,0.29804358,0.57788974,-0.28507522,0.07292707,-0.026285913,0.061927676,-0.11972009,-0.16371931,-0.314731,0.36826813,-0.5488255,0.122094594,-0.32489812,0.8085171,0.12558377,-0.6140567,0.28066745,-0.53474134,0.08815102,0.07605862,0.7952508,0.8113706,0.48453152,0.34894082,0.7899858,-0.27439135,-0.017363291,-0.20333108,-0.14960033,0.04686161,-0.16247235,-0.024350945,-0.45736223,0.025301086,0.008750393,0.0483995,-0.0893544,0.39227217,-0.5239264,-0.10302198,0.2775669,0.61977357,-0.30943304,0.1191833,0.96061486,1.1087623,1.0966927,0.034437545,1.1882861,0.22855824,-0.32077497,0.100486025,-0.20838727,-0.64653003,0.27056172,0.3168072,0.33635813,0.4347483,0.09513427,-0.04358381,0.3458267,-0.5691363,-0.13418666,-0.23774692,0.102157995,-0.13669322,0.08045046,-0.4924023,-0.19876017,0.036657218,0.05907643,0.19973947,0.2927454,-0.31741655,0.43254662,0.017357584,1.2208277,-0.18583485,0.12109123,0.19490734,0.6329359,0.14530298,-0.24202672,-0.00641843,0.3612376,0.37828833,0.025027605,-0.6353179,0.18207206,-0.31842783,-0.5185822,-0.19417025,-0.40138853,0.00550859,0.09065231,-0.31716025,-0.088648684,-0.14072372,-0.65980744,0.16835657,-2.7442877,-0.15207036,-0.0649327,0.30181307,-0.4067631,-0.18127234,-0.093856566,-0.66475606,0.4170909,0.4387593,0.46836802,-0.57002,0.33143583,0.55808616,-0.57434314,0.032527838,-0.5910352,0.016542636,-0.15894485,0.50668275,-0.11526919,-0.124552324,-0.031200595,0.21994926,0.54749745,0.21694528,0.09782557,0.29483587,0.24528776,-0.094682164,0.36685848,0.112921275,0.34747702,-0.5768621,-0.12656492,0.43937975,-0.4297825,0.21418728,-0.25524837,0.15857737,0.53203803,-0.7146235,-0.8263315,-0.7362982,-0.17898251,1.2175885,-0.24904665,-0.648306,0.21009311,-0.26721746,-0.09196861,-0.0889969,0.65263945,-0.22354521,0.014053798,-0.62285686,-0.087165125,-0.14328705,0.41211003,0.09846204,0.08802899,-0.56815714,0.8552993,-0.12098964,0.54501176,0.1350094,0.31930256,-0.26981845,-0.588012,0.08500531,0.9003573,0.5515531,0.05120554,-0.24511279,-0.19374865,-0.19139482,-0.003911275,0.17503493,0.6321733,0.88009864,-0.06302698,0.074222706,0.3694965,-0.016575424,0.10574473,-0.15528542,-0.20152195,-0.29480773,0.10994522,0.51096886,0.4275322,0.09894541,0.29607195,-0.048512872,0.32498705,-0.18784958,-0.45804194,0.67207664,0.913309,-0.24119934,-0.14053239,0.6549766,0.5893944,-0.25698882,0.63737774,-0.7770987,-0.31029308,0.50882876,-0.18706831,-0.5265205,0.09855694,-0.2630499,0.15188766,-0.84204257,0.06011154,-0.5222857,-0.6181011,-0.6386124,-0.05449278,-3.0901003,0.13934885,-0.2985594,-0.16429576,-0.26301384,-0.38280588,0.23795739,-0.65172064,-0.54812753,0.10130124,0.1785035,0.7747935,-0.124186054,0.086382195,-0.35257453,-0.40813303,-0.47951317,0.26079848,0.18525402,0.26145533,-0.13746163,-0.34317133,-0.01124459,-0.016573237,-0.39970493,-0.087262556,-0.4561847,-0.40572527,-0.35605958,-0.60787004,-0.23761691,0.6162783,-0.17798185,0.020343473,-0.16686463,-0.0029821475,0.042430427,0.3099349,0.23783118,0.24483909,0.13059038,-0.05858194,-0.02795401,-0.39122552,0.09049826,0.017636573,0.30989453,0.28289524,-0.42627066,0.210418,0.46608633,0.55236524,-0.1072021,0.88764626,0.52083445,-0.005780041,0.25556973,-0.105293676,-0.46397826,-0.78269136,-0.21407369,-0.0939232,-0.3742334,-0.47378775,-0.06437301,-0.3117278,-1.0381259,0.6754304,-0.042584535,0.54256594,0.05991539,0.40078798,0.52226,-0.14171967,0.018761082,0.025526332,-0.18221952,-0.49868977,-0.14574371,-0.7321368,-0.5302206,0.059473965,0.89976823,-0.42530838,-0.032920096,0.15225331,-0.16214181,0.04698262,0.123122945,0.09116379,0.08021371,0.4403098,0.13654065,-0.55161256,0.6387043,0.14395514,-0.11423516,-0.47002873,0.28052613,0.5251949,-0.66988724,0.34388858,0.26909497,-0.058419444,-0.35756096,-0.5206616,-0.039415672,-0.09458875,-0.1469447,0.42091635,0.25995824,-0.6988717,0.40696925,-0.09076106,-0.05835137,-0.896719,0.40760425,-0.08289298,-0.46599996,-0.017909361,0.41942495,-0.0042998423,-0.019139597,-0.23709062,0.15028074,-0.3208609,0.21330465,0.22406827,-0.24399532,0.63156855,-0.2950113,-0.1350324,-0.6849402,0.11874343,-0.75463635,-0.1573565,0.42132467,0.16307563,-0.18208522,0.28499275,0.05141149,0.51099163,-0.052937314,0.23646978,-0.078350656,-0.2864371,0.5234687,0.61291045,0.43069723,-0.4251594,0.755895,0.08568445,-0.27903545,-0.20672546,0.068919465,0.28740957,-0.045824762,0.52821976,-0.15297836,-0.19202128,0.22043116,0.5508495,0.40254274,0.4770309,0.04497872,-0.0077371597,0.41256282,0.04134951,0.3436939,-0.17762573,-0.5696913,-0.030300658,-0.38973168,0.04863275,0.51838195,0.118287526,0.5108901,-0.058264103,-0.16291459,0.15410918,0.105337754,-0.38504058,-1.0185566,0.27486178,0.15209354,0.8329786,0.67985624,0.010768409,-0.013198472,0.7187258,-0.1669449,0.12612893,0.32165343,0.14220574,-0.54474956,0.72463006,-0.6729158,0.50910443,-0.015534699,-0.15774338,0.08463057,0.0048362473,0.47974333,0.8025691,-0.17839248,-0.006972077,-0.09640352,-0.26171806,0.25302047,-0.35694218,0.16333422,-0.4898929,-0.33750227,0.64102626,0.4475465,0.3447728,-0.103724465,-0.15460865,-0.0849645,-0.057780817,0.348043,0.024066377,0.05523592,-0.13079235,-0.41222617,-0.33355537,0.42111266,-0.08027108,0.16658956,0.06117381,-0.35604748,0.120084055,0.01944972,-0.06432709,-0.0020429676,-0.7062196,0.15004538,-0.13372889,-0.22867253,0.7245258,-0.33088952,0.37939996,0.17852321,-0.043538693,-0.23806919,-0.040135954,0.21184942,0.5441795,0.07710715,-0.1596537,-0.37533453,0.19996616,0.21225603,-0.3631515,-0.034367718,-0.20318402,-0.023697166,-0.5625821,0.31179267,-0.13295524,-0.29633734,0.12623766,-0.19874977,-0.12522727,0.6016561,0.036386915,-0.03534319,-0.013105794,-0.12341685,-0.33753034,-0.30852926,-0.26011017,0.13401723,-0.010453563,-0.00092676055,-0.13229625,0.13632432,0.12817836,0.49557012,0.13419114,0.26162127,0.23827362,-0.16931102,-0.500692,-0.012215046,0.26960224,0.31211483,0.17300616,0.03820566,-0.14067104,-0.5850879,-0.39455953,0.1076366,-0.06616345,0.25067225,0.12968916,-0.021268936,0.903733,0.14628391,1.0415864,-0.0344461,-0.44725344,0.22488025,0.62215483,-0.04324244,-0.20779863,-0.34585145,1.1069381,0.59121335,-0.15142864,-0.15327464,-0.117193766,-0.042193055,0.24322022,-0.23862305,-0.15659834,-0.010058861,-0.6317459,-0.28276402,0.15678604,0.31954825,0.109636106,-0.14990924,-0.03726045,0.3474903,0.093520634,0.43785155,-0.36045694,-0.19591907,0.4434954,-0.112488866,-0.009223076,0.12574533,-0.3089221,0.43484277,-0.7898688,0.023222772,-0.34350544,0.12702686,-0.16046335,-0.48212168,0.2626684,0.09228909,0.4090854,-0.32077327,-0.49556255,-0.2502964,0.4262644,0.22762868,0.24576876,0.591862,-0.29338053,0.20160708,-0.057656605,0.38808277,1.1175872,-0.25253397,-0.055520717,0.19541039,-0.49411488,-0.8343987,0.17816773,-0.37128955,0.22008851,-0.13723914,-0.37853834,-0.39353615,0.16996962,0.2318201,-0.06762995,0.29230043,-0.7400068,-0.31904903,0.05854493,-0.31961825,-0.18035449,-0.4134897,0.13142052,0.6267703,-0.34184054,-0.46743518,0.08523892,0.25541213,-0.20214151,-0.7491987,-0.11422115,-0.31885302,0.18849204,-0.014466185,-0.3987875,0.014521058,0.33411708,-0.5402268,0.098374195,0.05064459,-0.3063565,-0.06083195,-0.43607002,0.19443229,0.86957425,-0.062246844,0.041850787,-0.38731676,-0.4542146,-0.9372009,-0.43762514,0.5170116,0.17052454,0.14393707,-0.6411397,0.21730272,-0.4403124,0.2584639,-0.06471935,-0.43787426,0.33607572,0.28689402,0.47332948,-0.04486996,-0.7991537,0.35768113,0.10713823,-0.072104625,-0.54421043,0.4637378,-0.1564557,0.8594493,0.11872563,0.063666925,0.18572506,-0.6306164,0.028909473,-0.22579503,-0.2046189,-0.6495448,0.07659893,387 -662,0.41069046,-0.2983465,-0.6712728,-0.12728402,-0.47849113,0.048126824,-0.3705594,0.15552884,0.14266498,-0.2705845,-0.37095064,-0.13840741,0.08932359,0.4617262,-0.14640404,-0.58417386,-0.1696139,0.19156949,-0.7411411,0.47320682,-0.5627225,0.38468403,0.16513428,0.4699052,0.014000609,0.40968162,0.5097348,-0.089939155,-0.3986316,-0.07112125,-0.24471384,0.18454641,-0.8353862,0.0019839085,-0.31260428,-0.539544,0.105700344,-0.43500343,-0.100219734,-0.7573119,0.22568002,-1.1185567,0.6611611,-0.26609975,-0.14433034,0.05163192,0.21716864,0.3712894,-0.4688155,0.16581303,0.10929703,-0.42186993,-0.2616152,-0.3347786,-0.11962773,-0.52285177,-0.49712104,-0.09020118,-0.7788977,-0.22370134,-0.21074182,0.20569748,-0.35600126,0.04906168,-0.11856394,0.21959808,-0.4889829,-0.15080915,0.20386234,-0.24554898,0.26924866,-0.49483952,-0.032801993,-0.1810049,0.48542646,-0.20299679,-0.17149568,0.37120718,0.42599732,0.41748178,0.24327454,-0.22197214,-0.3338229,-0.12015091,0.16592862,0.4391751,-0.089254506,-0.5414213,-0.2728081,-0.04746525,0.46599978,0.38385564,0.1272181,-0.12655231,0.11576311,0.015095747,-0.20233178,0.4825725,0.47773436,-0.33977625,-0.3558896,0.30357653,0.6107887,0.18613076,-0.18626347,-0.042577047,0.02503046,-0.59995645,-0.07924236,0.1794145,-0.17890662,0.68561435,-0.13809755,0.1581436,0.77032727,-0.41843966,0.18169022,-0.17662928,-0.0729374,-0.45496604,-0.039006747,-0.19379099,0.33737066,-0.4910444,-0.035912752,-0.27000996,0.6516477,0.18648292,-0.65751183,0.42898133,-0.550297,0.10400609,-0.10886361,0.67042315,0.64316624,0.4873299,0.44994646,0.7985378,-0.22953965,0.25623462,-0.07992203,-0.47606814,0.08343788,-0.41191941,-0.015592296,-0.4759403,0.087358914,-0.21035412,0.047603387,-0.017042445,0.5240878,-0.6157131,-0.033414323,0.14386767,0.5835057,-0.39878848,-0.061021272,0.8783621,0.9920933,0.86971104,0.08118309,1.3478405,0.58766663,-0.2858313,-0.05105488,-0.16975863,-0.6924232,0.2327532,0.54045683,-0.6226533,0.592612,-0.03426447,-0.011451464,0.2372661,-0.35184243,-0.1076752,-0.16788012,0.25920004,0.11211675,-0.03964562,-0.4991047,-0.0433163,0.08779097,-0.14017569,0.2853214,0.27312565,-0.26025644,0.4578153,0.11122361,1.4558812,-0.12300264,0.022904672,0.024823265,0.49963576,0.41025966,0.072953925,-0.021809412,0.50229615,0.41425037,-0.02671989,-0.71480477,0.19266646,-0.3524308,-0.575435,-0.27561596,-0.3788504,-0.028391462,0.08607384,-0.25517103,-0.19079198,-0.010780482,-0.20599383,0.4062265,-2.2843108,-0.3740032,-0.18810728,0.2884683,-0.4239745,-0.18048471,-0.1373606,-0.54463446,0.2524047,0.37199882,0.4914408,-0.71660227,0.46781942,0.5010256,-0.49967325,-0.34102863,-0.72304535,-0.006887858,-0.058031894,0.5088874,-0.0049101617,-0.42722577,-0.033799544,0.08239603,0.76678014,-0.02697091,0.17325526,0.40568668,0.6291677,0.2378033,0.53173524,0.10058172,0.5320621,-0.28570718,-0.29069936,0.47194564,-0.20197898,0.26432323,-0.1414802,0.15039322,0.5974155,-0.4440177,-1.1130615,-0.73848665,-0.31850296,1.1209229,-0.46637475,-0.64561915,0.025345244,0.13136746,-0.1112584,0.14521255,0.46037996,-0.16330245,0.1839638,-0.8352042,0.15056756,-0.01895982,0.35336134,0.15431598,0.14467552,-0.37077668,0.7316086,-0.16603532,0.40362516,0.25947133,0.4979584,-0.21164027,-0.43199056,0.15873119,1.1025065,0.3134735,-0.047410663,-0.17049734,-0.3773867,-0.027808867,-0.17152572,0.012989654,0.41251087,0.7727341,-0.024623066,0.11933982,0.3874081,-0.09289924,0.047369156,-0.24653079,-0.22201236,-0.088586554,0.15732846,0.48985523,0.7389853,-0.19728157,0.7091682,-0.37973258,0.3789315,-0.017236603,-0.6003719,0.90484184,0.93948454,-0.2831581,-0.03777273,0.64180624,0.4046534,-0.59977114,0.66187346,-0.88046134,-0.3804146,0.740763,-0.18640849,-0.34973508,0.16409577,-0.20223445,0.19252007,-0.9419102,0.26942638,-0.21587834,-0.069846615,-0.56718934,-0.21253055,-3.4865294,0.18164952,-0.17510363,-0.15353268,-0.39089757,-0.17866479,0.3477198,-0.8002366,-0.6519219,0.18072268,0.1806074,0.55397874,-0.113472074,0.301523,-0.35472423,-0.22742122,-0.05528019,0.28599903,0.22542527,0.16363981,-0.23113221,-0.56618893,0.13254417,0.0026085377,-0.57014656,0.061011836,-0.5414239,-0.44242924,-0.21975818,-0.54726803,-0.1984489,0.57356924,-0.46895158,-0.03134368,-0.34127557,0.22662173,-0.29387012,0.26939476,0.03788329,0.21763913,0.26217604,-0.08011823,0.26231766,-0.32517087,0.5923649,-0.040221803,0.17930023,0.14330432,-0.18776673,0.12220487,0.48174456,0.69734865,-0.13671158,0.96731085,0.4020019,-0.08812496,0.23679544,-0.3590592,-0.3347853,-0.7976701,-0.47879204,-0.1736869,-0.44193414,-0.55707556,-0.044014737,-0.27599415,-1.0033513,0.8015801,-0.12868246,0.3882159,-0.15505804,0.5963059,0.477342,-0.24392489,0.02178543,-0.055859767,-0.16060609,-0.5791734,-0.33649927,-0.6655906,-0.5404892,0.008731108,0.78523946,-0.23648259,-0.050530277,0.031318847,-0.19715887,0.06175919,0.011323104,0.05500333,0.29035455,0.5029142,0.05688956,-0.80854887,0.4092574,0.026730042,-0.10040217,-0.5366618,0.07618795,0.7329022,-0.7419223,0.45355445,0.51729167,-0.0009886485,0.23595898,-0.51703715,-0.15766786,0.009138052,-0.112368874,0.44042015,0.13536903,-0.80832994,0.6414318,0.30457097,-0.49041465,-0.82454884,0.39014652,0.08153567,-0.10735123,0.054891817,0.38619936,0.26530787,-0.20048769,-0.43291092,0.07151853,-0.51438946,0.1692734,0.2174765,-0.12651326,0.4804285,-0.1202308,-0.40125796,-0.8989673,0.08234106,-0.42962742,-0.24027762,0.37570578,-0.040381625,-0.025926296,0.1394775,0.07800818,0.38198668,-0.5026597,0.04194852,0.05698835,-0.2862593,0.24667928,0.4775756,0.32674125,-0.45001984,0.58878917,0.07533814,-0.2926833,0.099927135,-0.23323679,0.40278503,0.3110946,0.25993186,0.114955515,-0.21743539,0.3051281,0.6786207,0.16717595,0.51810825,0.2137835,-0.2789452,0.41690725,0.11015984,0.3263644,0.011538034,-0.4026777,0.0048575583,0.14728345,0.046382006,0.5636829,0.35858205,0.36779073,-0.0002833238,-0.10374355,0.054351524,0.24870507,-0.09714731,-1.1130421,0.2260548,0.3177668,0.7915102,0.4098048,0.040318254,0.030836545,0.6056048,-0.47505024,-0.0040801396,0.4437469,0.19464876,-0.488372,0.7658454,-0.5182126,0.24751066,-0.25105852,-0.026415791,-0.014584496,0.1645472,0.24325432,1.0511914,-0.16092856,0.11631698,-0.027884759,-0.042787753,0.0029513377,-0.28985485,-0.07292623,-0.28109005,-0.31318066,0.79851127,0.22895196,0.5020441,-0.15582636,-0.12973475,-0.009682564,-0.20636997,0.34228727,0.01830804,0.16742125,0.17576534,-0.5033705,-0.16468917,0.64784825,0.4035694,0.18729165,-0.17374226,-0.5427304,0.17220515,-0.29599598,-0.08392544,0.07238589,-0.78001773,-0.14479853,-0.17541514,-0.57903516,0.49876764,-0.00019768569,0.09633042,0.17774823,-0.11202483,-0.215072,0.068931825,0.20558807,0.863281,0.18827699,-0.22756775,-0.28919366,0.06763068,0.35554594,-0.30982324,0.118575685,-0.25963962,-0.025785863,-0.43782642,0.63599247,-0.28197932,-0.5034014,0.17270637,-0.28294644,-0.07655359,0.51179403,-0.044125676,-0.17884398,0.27824783,-0.029217161,-0.43894598,-0.20413163,-0.38124663,0.122250505,0.19423327,0.0074452804,-0.15915534,-0.10613562,-0.09717265,0.6952193,-0.047510844,0.38170096,0.3639397,0.13807082,-0.24453309,-0.11236724,0.17863491,0.47570884,0.019708138,-0.04949468,-0.43075764,-0.5875818,-0.23464698,0.05593091,-0.1111317,0.009993718,0.1972555,-0.42753536,1.0020036,-0.07422137,1.3379052,-0.02453598,-0.5037553,0.030787386,0.5884109,-0.09379486,0.04020818,-0.40949428,1.0155221,0.5481223,-0.10655438,-0.04694328,-0.50054955,-0.3322027,0.36473462,-0.45177624,-0.10351718,-0.102565534,-0.543252,-0.60186976,0.26368892,0.32471386,-0.08633513,-0.12936454,0.26256222,0.13754436,0.22412753,0.5601896,-0.69695824,-0.44164512,0.33131278,0.29245013,-0.21242894,0.146538,-0.3378944,0.43894285,-0.679161,0.009186685,-0.67752266,0.10612023,-0.04238128,-0.3239946,0.16993812,0.16724494,0.3424212,-0.2861087,-0.37389034,-0.120696835,0.5574828,-0.025193967,0.1576941,0.5603498,-0.33307633,0.17486909,-0.00763436,0.5817429,1.4460899,-0.5259682,0.08978763,0.30461568,-0.37082958,-0.5650295,0.5617955,-0.39711645,0.073813766,-0.15414296,-0.5751716,-0.5856882,0.2853402,0.035836395,0.13525142,0.024943627,-0.54574245,-0.09913568,0.3197606,-0.35497755,-0.09906257,-0.115731746,0.46456212,0.82388204,-0.32469523,-0.22913283,0.0843211,0.45629832,-0.19819102,-0.47410634,-0.17202164,-0.18323734,0.4333706,0.17421454,-0.28634164,0.05779729,0.23510474,-0.51249146,-0.041641887,0.33279455,-0.3588285,0.09880968,-0.22297002,0.19763455,0.8228366,-0.21526036,-0.107007705,-0.74362767,-0.43928173,-1.1072233,-0.37863982,0.20926043,0.1721227,0.07604094,-0.56877273,0.35806194,-0.13769643,-0.27701494,0.09711201,-0.7033351,0.42352405,0.22056419,0.7373283,-0.29401308,-0.89296025,0.06760617,0.1844653,-0.11000181,-0.6454149,0.6668341,-0.13643366,1.0230904,0.0684988,-0.08621139,0.034627113,-0.5809299,0.065617874,-0.3716284,-0.23108222,-0.915902,0.040227372,391 -663,0.6095721,-0.16081503,-0.51293385,-0.047129236,-0.44097424,-0.18420373,-0.30782384,0.175539,0.4167295,-0.31796044,-0.26854184,-0.13977475,0.11073545,0.19579047,-0.14949283,-0.8346628,0.02600309,0.26567692,-0.69844234,0.6740548,-0.5076211,0.2466483,0.12093811,0.33141276,-0.14594758,0.26875144,0.36670515,-0.14783114,0.26987278,-0.12887304,0.20059404,0.06615205,-0.9945732,0.21209332,-0.28034317,-0.21806438,0.029587714,-0.28139806,-0.3111854,-0.8919439,0.08648141,-0.8587706,0.59568495,0.23399527,-0.35609612,-0.12288572,0.12036768,0.3002457,-0.3802822,0.0075387578,0.27586004,-0.15426967,-0.19322263,-0.33374086,0.1072254,-0.25651813,-0.52492356,-0.051479295,-0.45167235,-0.00245269,-0.44710144,0.08147447,-0.35442162,-0.12315276,-0.22279018,0.5288714,-0.34761617,-0.024877576,0.44077036,-0.10168607,0.53276634,-0.47794625,0.028254403,-0.25767252,0.30640036,0.11893756,-0.31723803,0.3555994,0.15739219,0.47264847,0.41830048,-0.46257716,-0.07481411,0.05076977,0.24097095,0.1748856,-0.19976571,-0.25095242,-0.2634048,-0.032980517,0.15381779,0.1967838,0.10541963,-0.44461858,0.10257515,-0.18277285,-0.065613754,0.57763153,0.5908212,-0.13237597,-0.21617362,-0.05781011,0.6787605,0.17368643,-0.17176533,0.0691512,-0.0051347855,-0.6641347,-0.3000722,0.08728046,-0.034209315,0.5763213,-0.25068247,-0.08375032,0.7208235,-0.10866328,-0.30035508,0.18408665,-0.09639568,0.10052097,-0.31910726,-0.17702629,0.36520594,-0.7676524,0.021352759,-0.37505788,0.63202924,0.18507141,-0.8029854,0.3005591,-0.56838727,0.1950117,0.06752326,0.7547569,0.8575119,0.4773394,0.362621,0.8012263,-0.36265448,0.25924754,0.16361928,-0.4706615,0.16834712,-0.3806404,0.00570609,-0.34537122,-0.07489718,-0.39352992,-0.09819676,0.004407681,0.23461154,-0.48466963,-0.18434931,0.24972439,0.71282005,-0.22816207,-0.042890217,0.59963036,1.2161947,1.0361682,0.19181888,1.2818598,0.27960122,-0.25992778,0.10137982,-0.045080263,-0.8039717,0.20729978,0.32008642,0.20397271,0.32620743,-0.08569436,-0.07759778,0.35607097,-0.6957858,-0.002029474,-0.0872212,0.5279553,-0.035504498,-0.1777683,-0.4421318,-0.20392106,-0.056633238,0.11110253,-0.011969568,0.22058694,-0.046536062,0.27602407,0.08338351,0.84562886,-0.21457274,-0.004609163,0.029455395,0.47666407,0.35506418,-0.18973795,-0.14514713,0.29242772,0.37565723,0.07341273,-0.536986,0.14671895,-0.2065714,-0.19736038,-0.082832485,-0.2268665,0.19359769,0.079753324,-0.1735613,-0.2668154,-0.058016405,-0.400291,0.3905338,-2.37512,-0.16572846,0.045572773,0.33761138,-0.26060757,-0.052590705,-0.18217471,-0.6523746,0.35066503,0.26239303,0.55655843,-0.65502644,0.42426094,0.6754194,-0.7031776,-0.20396706,-0.85690236,-0.15534392,-0.14947143,0.49142715,0.16950494,0.011241532,-0.2027594,0.29415736,0.6666496,0.25515363,0.105027206,0.41053003,0.31020027,-0.07024601,0.5111275,0.05449952,0.48959643,-0.35820502,-0.19824144,0.4450557,-0.06805063,0.19186847,-0.3903425,-0.030453948,0.5575771,-0.5674161,-0.81465137,-0.57441276,-0.4139311,1.2301198,-0.30986217,-0.4837775,0.20954584,-0.2270059,0.052781902,0.24428342,0.5459136,-0.06429359,0.36718258,-0.82743555,0.080285326,0.07017897,0.23016483,0.11834002,-0.17183542,-0.45751017,0.77337044,-0.081681736,0.41856596,0.4644647,0.23757927,-0.00840105,-0.60996735,0.21127734,0.9056292,0.30931315,0.07142562,-0.39867622,-0.077757075,-0.17678073,-0.031970646,-0.14000186,0.68264264,0.8001338,-0.29947174,0.12402064,0.3123686,0.035503063,0.14818528,-0.13900489,-0.3178434,-0.13563678,-0.1835448,0.5339554,1.0875857,-0.18101858,0.14084028,-0.21530584,0.37266976,0.03426919,-0.5370327,0.76203567,0.89989007,-0.0821403,-0.0026664366,0.52298295,0.5343354,-0.39844117,0.6671524,-0.5008716,-0.33236387,0.5456284,0.059007328,-0.4315384,0.15122162,-0.44437632,0.2760894,-0.81704646,0.5391432,-0.5088266,-0.38126788,-0.30919933,-0.04474173,-3.2633743,0.452941,-0.36485514,0.027373012,-0.36523777,0.00047628582,0.34732214,-0.47316155,-0.5183036,0.22155564,0.11145231,0.52506375,-0.1673398,0.03093594,-0.16690221,-0.3755654,-0.22924218,0.22942962,0.34755927,0.17085648,-0.18429129,-0.47618595,-0.2643992,-0.21246828,-0.49405634,0.05561447,-0.6049223,-0.41059777,-0.15123726,-0.6057147,-0.26244396,0.49979395,-0.26831204,-0.039064176,-0.28002182,0.11175153,-0.21076533,0.21008733,-0.1586704,0.36886916,0.085360594,-0.008208468,-0.039314702,-0.18477869,0.49049234,0.08777897,0.11221536,0.0649467,-0.10269281,0.15892474,0.56383103,0.85371757,-0.2703609,1.0625755,0.46955696,-0.08606677,0.26820862,-0.275555,-0.4879781,-0.8157135,-0.22206964,-0.117940575,-0.36514527,-0.37174007,0.3263343,-0.35562497,-0.7635237,0.7717101,-0.05165728,0.33240384,0.11882894,0.09369766,0.32721645,-0.24023016,-0.050521307,-0.15687521,-0.21994798,-0.7144132,-0.10912721,-0.6641521,-0.468582,-0.07941385,0.8572969,-0.39822623,0.17393667,-0.042910106,-0.2247627,0.2931684,0.2299864,-0.0018160527,0.19594957,0.6444878,0.3021564,-0.6257608,0.29468158,0.081097916,-0.1281942,-0.43444303,0.39218712,0.68823344,-0.91033804,0.7387232,0.36098534,-0.008377179,0.03668453,-0.67287546,-0.43812525,0.0061639226,-0.24124774,0.72587615,0.16295502,-0.88804317,0.42428318,0.28248757,-0.67589355,-0.7314927,0.4612244,-0.18651265,-0.32628155,-0.110215984,0.32982907,-0.27117947,-0.0542484,-0.347311,0.234609,-0.24899226,0.32876155,0.09194294,-0.27748606,0.085960716,-0.029824475,-0.16838461,-0.894008,0.04972324,-0.644278,-0.21100436,0.30583805,-0.014315044,-0.35474014,0.1216406,0.3230434,0.4454282,-0.22099529,0.23264915,-0.088902086,-0.5033692,0.44712904,0.56945,0.2545477,-0.42187178,0.6502972,0.1396535,-0.28392297,-0.18069424,0.1050167,0.29481974,-0.19557868,0.39430237,-0.15574107,0.14119802,0.19812514,0.6535793,0.032576382,0.47858965,0.12482175,0.102311045,0.5806917,0.11561907,0.42739394,-0.07837364,-0.43298993,0.08915219,-0.33002913,0.09075847,0.4264487,0.31468484,0.22977525,0.059953365,-0.274045,-0.13756727,0.27347094,0.06476418,-1.5649135,0.35274106,0.18393706,0.6146482,0.6809684,0.13878381,-0.20835516,0.73085916,-0.08352626,0.13377245,0.4945094,0.0014473704,-0.38138294,0.6142677,-0.615676,0.18788542,-0.2249859,0.005462344,0.34838116,0.052187547,0.3326766,0.87656295,-0.20645544,0.060507588,-0.11968643,0.029322777,0.11601297,-0.4792606,0.1281228,-0.35754436,-0.51213235,0.6628294,0.44040123,0.43525028,-0.34025162,0.108734354,0.07348679,-0.12491175,0.3692076,-0.072178066,-0.2636848,0.15532048,-0.5549502,0.015122189,0.43614006,0.04864203,-0.014579296,-0.20723908,-0.19027098,0.086506516,-0.2985465,-0.116601095,-0.12282079,-0.9705681,-0.16169311,-0.37570783,-0.19219583,0.53273004,-0.36522982,0.035886925,0.17549944,0.027353566,-0.14736761,0.26710454,0.05328538,0.61530936,0.23753045,-0.15213038,-0.23466791,0.18547426,0.1599641,-0.3207579,0.18843731,-0.3212219,0.2092929,-0.5190125,0.56605804,-0.1356635,-0.319064,0.1573551,-0.21969077,-0.21109512,0.59899575,-0.08313031,-0.27705786,0.19164151,-0.15453185,-0.23888944,-0.11969411,-0.13978869,0.3219512,0.23551805,-0.07727841,-0.031219216,-0.15222576,-0.12844694,0.491121,0.15989326,0.4401348,0.14359659,0.0792387,-0.27250627,0.13687834,0.16772975,0.52297455,0.19997364,-0.019363271,-0.19068374,-0.3148461,-0.35604045,-0.020853732,-0.12169187,0.10984163,0.040739637,-0.088943355,0.84301686,0.3324706,1.1814954,-0.15919663,-0.34037367,0.07087904,0.5368929,-0.16682278,-0.05882007,-0.44774202,0.9533975,0.5373844,-0.4380177,-0.047152855,-0.49332345,-0.094995975,0.0506415,-0.3187655,0.06021943,-0.03236691,-0.5475529,-0.281551,0.117974624,0.38748264,0.004976529,-0.12648454,0.04423241,0.0048152003,0.03810025,0.30466396,-0.6696666,-0.22509758,0.2563346,0.2152289,-0.06508958,0.12717615,-0.25171393,0.28759524,-0.5674437,0.22722787,-0.34015912,-0.08229689,-0.44116205,-0.4272227,0.059753172,-0.04326646,0.34191358,-0.5291622,-0.27267906,-0.20024167,0.36616704,0.22224984,0.23239042,0.70448536,-0.3253555,0.042363666,0.2041192,0.5202106,0.9872074,-0.48528826,-0.094884865,0.2776793,-0.43350476,-0.5235148,0.31780818,-0.35217953,-0.03622422,-0.3669378,-0.5235669,-0.5958834,0.06583,-0.08176982,0.015710043,0.17059146,-0.87146384,-0.091873795,0.3307904,-0.31218106,-0.11791515,-0.27824888,0.36200717,0.5890773,-0.21341246,-0.4667092,0.07257293,-0.01814712,-0.27810603,-0.54926974,-0.30281073,-0.17624232,0.197669,0.30619204,-0.26725823,-0.12208899,0.25095108,-0.5342079,0.0668358,0.17542437,-0.33761105,0.11712568,-0.21424738,-0.062401496,0.96697646,-0.33013612,-0.067034245,-0.3541334,-0.5847137,-0.9874327,-0.38901776,0.41466346,0.08119129,0.09066277,-0.37969416,-0.036541857,-0.1701688,-0.0067924997,0.17606227,-0.45000055,0.29669297,0.079716094,0.629449,-0.19706538,-0.9839868,0.24537222,0.33813694,-0.039854802,-0.6825809,0.5670038,0.09910404,0.794835,0.056052998,0.049047865,-0.016041266,-0.48337942,0.042885907,-0.21323657,0.02795776,-0.57598853,0.051374022,392 -664,0.39169198,0.024716329,-0.4501772,-0.006098793,-0.2988155,0.10779696,-0.16364051,0.43008474,0.36413142,-0.37515867,-0.2639002,-0.3814183,0.05710777,0.034812946,-0.019284012,-0.6337934,0.1955679,0.45150998,-0.5468922,0.610309,-0.2376189,0.52124035,-0.01066063,0.25737333,0.0020719308,0.18098706,-0.19525972,-0.11770367,0.012303407,-0.25866166,0.13171934,0.22640091,-0.7387532,0.33847564,-0.41848513,-0.38747534,-0.029583372,-0.41312873,-0.50035024,-0.8908288,0.1956374,-0.7560723,0.6612824,0.0098398905,-0.27903485,-0.12691058,0.026440445,0.5663761,0.02170958,-0.08488417,0.28957573,-0.072070114,-0.31505373,-0.053788595,-0.28310457,-0.4668073,-0.44831437,0.07522058,-0.22900942,-0.037803613,-0.21521775,0.25413153,-0.24893847,0.006912094,-0.16341776,0.51617485,-0.38569075,0.4735082,0.22775212,-0.03211812,0.1742368,-0.6886987,-0.13312778,-0.18995048,0.36183867,-0.2951127,-0.35721743,0.18711862,0.37115815,0.53505045,0.08940759,-0.23274279,0.11574267,-0.09514475,0.29313976,0.5063306,-0.12717362,-0.1784056,-0.15812851,-0.034525387,0.16840512,0.14415087,0.27790892,-0.61959547,-0.06118498,-0.19187348,-0.27140978,0.27461252,0.5987906,-0.07267483,-0.2017002,0.23261364,0.68584865,0.11696683,-0.099573925,0.30304706,0.0890059,-0.40998322,-0.2238283,-0.01630408,-0.21117148,0.49446753,-0.17988321,0.110949025,0.6106156,0.0100398045,-0.1902486,0.039867733,0.138839,-0.11119938,-0.4980928,-0.14154615,0.2288719,-0.5783421,0.14862452,-0.24704984,0.8316131,0.20827939,-0.5818541,0.43367517,-0.6272023,0.11208506,0.08385221,0.50181574,0.799419,0.1718503,0.07021815,0.6876911,-0.434035,0.110783085,0.0407195,-0.24326494,-0.09654395,-0.07912098,0.16726439,-0.45888388,-0.12932207,-0.10706195,-0.23224065,0.07413255,0.34823167,-0.65145457,-0.22471069,-0.028729044,0.87127465,-0.30714735,-0.12569514,0.98697853,1.0053341,0.7008928,0.13703424,1.7807028,0.32582018,-0.22164088,0.065097675,-0.30812213,-0.82390743,0.012973929,0.09232327,-0.7793973,0.12550029,0.22955543,-0.12516424,0.5232059,-0.7462581,0.049742147,-0.28891614,0.3881095,-0.068611704,-0.22783338,-0.39407128,-0.13046457,-0.061075136,-0.06818185,0.18243697,0.26878923,-0.13774271,0.28647533,0.17266263,1.129709,-0.10659088,0.0022254656,0.044263843,0.15666708,0.23619786,-0.14004713,-0.115162626,0.3697498,0.28681982,-0.1502752,-0.46457112,0.059747934,-0.23457211,-0.2596089,-0.22759742,-0.03262195,-0.24666458,0.103975266,-0.3628046,-0.27425855,-0.2430535,-0.15459807,0.59080213,-2.3239622,-0.31348684,-0.116777696,0.45820644,-0.24574266,-0.45665672,-0.07940538,-0.4765097,0.43449467,0.05009663,0.38556603,-0.69781494,0.34894806,0.40639222,-0.64917195,-0.1775184,-0.64278924,-0.10063718,0.19878432,0.01665276,-0.036383294,0.0786827,-0.11699128,-0.11905052,0.24083652,-0.11980404,0.2067907,0.5589143,0.40126917,0.038469996,0.11251343,0.18940727,0.6276271,-0.1807833,-0.24994612,0.34836298,-0.3958691,0.34044963,-0.053627886,-0.029871656,0.51115596,-0.36574772,-0.48428434,-0.73815817,-0.6480722,0.692103,-0.08897858,-0.31481934,0.16350645,-0.39718467,-0.3752454,0.050131876,0.71458757,-0.06323253,0.020304946,-0.9607168,-0.15421669,-0.05222342,0.29109514,-0.078682035,-0.07194225,-0.48407093,0.70305693,-0.26996535,0.24874184,0.5445047,0.28979185,-0.29256824,-0.45968622,0.042924866,1.1038349,0.47699717,0.17168155,-0.33166093,-0.120849006,-0.6288695,-0.20096079,-0.10141493,0.6998222,0.58116657,-0.1998388,-0.06303459,0.34514964,0.16676371,0.119810894,-0.19439664,-0.395838,-0.09344048,-0.096488625,0.4440263,0.655061,-0.34543338,0.4428766,-0.24022867,0.2757994,-0.2817555,-0.63810074,0.52804494,1.0168408,-0.27275366,-0.08479854,0.5917252,0.095694885,-0.2777583,0.43719292,-0.6023179,-0.23387238,0.4316898,0.084232956,-0.5787878,0.12507428,-0.28163356,0.071467295,-0.92877775,0.5838649,-0.32229388,-0.6969741,-0.5150245,0.01185276,-2.1645172,0.18298443,-0.21873783,0.09540324,-0.2239467,-0.1388121,0.017745825,-0.1194669,-0.5346035,0.30577037,-0.010182849,0.5254861,-0.10830971,0.29537266,-0.10398969,-0.28569424,-0.2455176,0.10216783,0.2366599,0.25664994,-0.29798982,-0.34881195,-0.03427686,-0.18331376,-0.21923648,0.0649203,-0.97661793,-0.39227107,-0.1696729,-0.74282575,-0.1624363,0.6317158,-0.6262182,0.06303187,-0.34272972,-0.11903059,-0.1548829,0.3263861,0.2445578,0.14621447,0.113148876,-0.014707482,-0.3281837,-0.3002265,0.2597129,0.12951306,0.19028851,0.35979465,-0.0762513,0.31984636,0.18927646,0.8683921,-0.051207658,0.8613876,0.3844661,-0.24337676,0.40010446,-0.15611452,-0.23425214,-0.6480701,-0.23677972,-0.20645425,-0.5292208,-0.52595174,-0.08060134,-0.4669482,-0.6418115,0.35787064,0.18794118,-0.12731816,0.16981475,0.085875675,0.34439528,-0.18090947,-0.033797693,-0.20129624,-0.08325717,-0.5071671,-0.41607162,-0.5359608,-0.4301924,0.3051813,1.1153169,0.039830104,0.23352449,0.23164234,-0.25770906,-0.0048245285,0.29651898,0.015808774,-0.07413325,0.6954378,-0.15836035,-0.5098585,0.36777702,0.1804493,-0.30725056,-0.83685726,0.321637,0.7515204,-0.7754273,0.9001468,0.18517168,-0.10409261,-0.11533736,-0.38496032,-0.32286674,0.058079287,-0.46593994,0.2939796,0.10960452,-0.5392535,0.12100426,0.41844457,0.019027976,-0.79310703,0.5255817,-0.19184828,-0.105636425,0.08379196,0.3784266,-0.08209194,0.040160272,-0.044908945,0.14974402,-0.2506941,0.2663298,0.13422976,-0.32050565,0.3029338,-0.24111745,-0.09884198,-0.92006105,0.048285585,-0.4633592,-0.38520148,0.02001701,0.12904093,-0.16037439,0.3100189,0.5220299,0.2925403,-0.1247005,0.16551235,-0.13828503,-0.35329387,0.24069253,0.3237725,0.45171863,-0.31485933,0.63223404,-0.102187954,-0.18001501,-0.20735525,0.3043728,0.5642676,0.043295495,0.4031296,0.29963797,-0.06767594,0.1488615,0.85024774,0.051652852,0.57582206,0.22456291,0.0022703845,0.14593242,-0.0056239734,0.17899132,0.10089053,-0.56439793,-0.035115086,-0.16743049,0.11649255,0.4527086,0.22383657,0.3016822,-0.12545468,-0.59308875,-0.11578565,0.18665688,0.30668914,-1.2638664,0.20686167,0.3001876,0.8308626,0.42791972,0.0010981285,-0.008166109,0.35288456,-0.079059295,0.31381184,0.2182788,-0.256772,-0.21102987,0.3885589,-0.764457,0.32622588,-0.18475287,-0.01600696,0.28410822,-0.20143065,0.3177714,0.9724618,-0.22025385,0.0056619644,-0.1596744,-0.12828,0.09292006,-0.34497267,0.29326564,-0.45789692,-0.37500462,0.7917109,0.57877886,0.27838528,-0.5204823,0.18201014,0.1636777,-0.22739877,0.09820581,0.026130777,0.10212298,0.08516801,-0.51984763,-0.286536,0.5760132,-0.26519617,-0.034466162,0.19793159,-0.23414482,0.25406778,-0.28092864,0.18255483,-0.01908439,-0.99749047,-0.107833266,-0.360906,-0.3508724,0.4412139,0.06711486,0.11287545,0.22414318,0.12267951,-0.2474157,0.75195855,-0.10749745,0.9748109,0.26865557,-0.04427336,-0.1168511,0.47671303,0.26790857,-0.11465229,0.107821375,-0.09897309,0.10820052,-0.50419474,0.4883981,0.12638249,-0.33224875,0.119366236,-0.046301045,-0.0064810514,0.41841248,-0.17733558,-0.1453524,0.30745995,-0.14529036,-0.14081377,-0.06712469,-0.07338343,0.22776319,0.5797018,0.0053983377,-0.105830275,-0.18237416,-0.29268375,0.1888163,0.0917025,0.33729628,0.59240395,0.20551865,-0.47301775,-0.06990835,0.3419011,0.42870983,-0.24053223,-0.14363629,0.12127275,-0.39120024,-0.35870054,0.29513764,-0.044020727,0.3511153,0.021688405,-0.22085561,0.7733502,0.42831305,1.3362287,0.1583862,-0.3548425,0.09529054,0.47098783,-0.11235334,-0.02567432,-0.44651616,1.0438608,0.49899846,-0.13078068,-0.058230393,-0.37512174,-0.09505704,0.3332662,-0.02798958,-0.12272184,-0.03616394,-0.75825983,-0.30037606,0.17706765,0.41934484,-0.117912054,0.073272735,0.10553796,0.37397468,-0.18476817,0.31905794,-0.79056937,-0.02487369,0.28110167,0.38147053,0.06469929,0.20573409,-0.29464343,0.4346934,-0.6272275,0.13677074,-0.18848838,0.020598246,-0.32378584,-0.28993145,0.050051205,0.16092142,0.32939273,-0.5964824,-0.26702613,-0.399679,0.3767325,0.21573679,0.055561524,0.7631627,-0.16015497,0.012196624,0.035245333,0.5128975,0.894892,-0.23908004,-0.13832524,0.43755376,-0.4416119,-0.5584187,0.39090627,-0.36791295,0.051417787,-0.15055127,-0.2865469,-0.56528974,0.22796117,0.13266018,-0.094054975,0.054322243,-0.688254,0.14599489,0.36521637,-0.25632668,-0.13853249,-0.21872045,0.26211274,0.8803712,-0.15584405,-0.36109003,0.037549775,0.11650955,-0.44376072,-0.59885925,-0.1256523,-0.3780389,0.32428965,0.05423597,-0.29749313,-0.17721912,0.054180283,-0.47278875,-0.11159445,0.15430191,-0.26174697,0.103931814,-0.17377783,-0.14980909,0.76319164,-0.14404248,0.22182114,-0.48524863,-0.54372907,-0.6320215,-0.31018576,0.3407365,0.51332986,-0.12234998,-0.62109524,-0.12591146,-0.20233296,0.03317466,0.17407066,-0.35876495,0.4334393,0.39414245,0.51081795,-0.20866098,-1.1442418,-0.062054098,0.2414954,-0.2744372,-0.64637125,0.33266133,0.11527021,0.85634875,0.06772954,-0.032710653,0.25348008,-0.5776647,0.22836384,-0.19568811,-0.06340037,-0.70547926,0.034960542,399 -665,0.53002167,-0.26943555,-0.41976786,0.0012981181,-0.110187545,0.10680325,-0.199221,0.4529423,0.33282697,-0.317603,-0.1991834,-0.09903736,0.0024756147,0.07614465,-0.052851412,-0.58201593,-0.11682598,0.20323291,-0.49646157,0.4787808,-0.41144863,0.25870568,-0.15317385,0.4725143,0.062838905,0.22396578,0.009017582,-0.070168525,-0.27992004,-0.16229725,-0.07230911,0.3342817,-0.6756006,0.111833096,-0.18964338,-0.3684757,-0.13558555,-0.64630693,-0.33654323,-0.7468357,0.25685304,-0.8558238,0.50583065,0.17291392,-0.23356368,0.5368236,-0.22718756,0.04565966,-0.2870207,0.011760795,0.1362737,-0.05932216,0.12645479,-0.30971402,-0.11249934,0.043077763,-0.5102221,0.09329207,-0.3024406,-0.09394853,-0.20008415,-0.018012019,-0.35281304,0.071038775,-0.056384426,0.4197721,-0.4017633,0.12455959,0.024102243,-0.16487822,0.24521115,-0.42325565,-0.1257698,-0.035291627,0.33269712,-0.25862777,-0.1627797,0.13542308,0.21953371,0.4369784,-0.13077137,-0.09581164,-0.38695806,0.029367503,0.027305553,0.48649868,-0.11450355,-0.552586,-0.06007584,-0.098471135,0.07543932,0.03287808,0.15420254,-0.18296,-0.15821022,-0.15909284,-0.20114954,0.34811,0.50859046,-0.26250082,-0.34979913,0.3738343,0.5723001,0.11917542,-0.007815831,-0.121426456,0.052627638,-0.47484916,-0.17549719,0.060440265,-0.26796153,0.35251486,-0.1367899,0.29944417,0.66246444,-0.20304105,0.0398583,0.17467158,0.03693531,0.06109411,-0.1829816,-0.23946428,0.25520742,-0.22513595,0.0947831,-0.14327325,0.78905004,0.13411357,-0.8378359,0.39045507,-0.5661613,0.0926621,-0.0069375494,0.477434,0.53988063,0.413218,0.39000732,0.58475053,-0.35441473,0.048554942,-0.03811719,-0.32113644,-0.071084276,0.011766452,0.009492664,-0.44960785,-0.030070726,0.008939991,-0.24584971,0.26050866,0.23040605,-0.43839914,-0.057203982,0.15811047,0.7949254,-0.25953892,-0.062040593,0.8953033,0.92515594,0.92970335,0.0625014,1.0819547,0.281103,-0.20071483,0.2087877,-0.4230037,-0.93172604,0.23517077,0.21372506,-0.22549178,0.3790067,0.07653504,-0.05069145,0.16468272,-0.25666815,0.027439026,-0.21036185,0.20413129,0.078863256,0.031744838,-0.3159756,-0.37970337,-0.2421529,0.085220896,0.14872086,0.2358481,-0.29849717,0.3524719,0.1233615,1.7548184,-0.025038637,0.08188828,-0.0349877,0.47490522,0.22646984,-0.07951694,-0.288289,0.29824096,0.22214857,0.023159714,-0.6339613,0.2923122,0.06356135,-0.42816833,-0.07962273,-0.27320033,-0.05633837,-0.12711701,-0.26181525,-0.19001484,-0.14616242,-0.36822942,0.42423835,-2.806212,-0.12806928,0.091429316,0.41586363,-0.22652024,-0.34116676,-0.20488022,-0.43276897,0.3229939,0.27805153,0.45923188,-0.79878324,0.31816167,0.45723635,-0.52151114,-0.19332677,-0.5526351,-0.08948867,0.1459509,0.2044475,-0.02829863,0.058961324,-0.017318824,0.08319863,0.40029246,0.05543306,0.090847254,0.30494925,0.516618,0.08564734,0.29177186,-0.005282824,0.47692686,-0.17159933,-0.16759099,0.31191713,-0.54930925,0.20927042,-0.16598447,0.1080481,0.40253836,-0.44523928,-0.87431496,-0.6097416,-0.08078161,1.1853887,-0.092637554,-0.32334116,0.20392288,-0.3126426,-0.27181536,-0.0816976,0.49478376,-0.17933644,-0.26292264,-0.7973533,-0.07488971,-0.14046572,0.30469343,0.046523664,0.0043459763,-0.36819407,0.6041653,-0.069581084,0.47339338,0.30025145,0.17912021,-0.27257356,-0.4913818,0.14512028,0.9218984,0.2514907,0.17410086,-0.23893632,-0.20614845,-0.20061707,0.026386399,-0.066589125,0.48607552,0.65704155,-0.11020233,0.093978055,0.29045555,0.012387202,0.08442546,-0.13287756,-0.18434502,-0.28004768,-0.085205965,0.5368173,0.7272325,-0.27812994,0.38265884,-0.0778829,0.25803006,-0.14337116,-0.36606878,0.6421366,0.8074439,-0.019092308,-0.15087058,0.48489726,0.37915972,-0.4163171,0.40735003,-0.5144507,-0.23753741,0.4059889,-0.26009744,-0.40746513,0.37658677,-0.17610262,0.049568195,-0.75074875,0.277998,-0.20086639,-0.3042291,-0.53344274,0.045344625,-3.033173,0.080529526,-0.13782163,-0.34995937,-0.16276988,-0.19576046,-0.016291006,-0.5017111,-0.59311473,0.2807835,0.122057766,0.6260516,-0.05743862,0.27296627,-0.17708723,-0.20100348,-0.4219507,0.119771,0.18685794,0.36249587,0.078032136,-0.41010654,-0.17060216,-0.11015658,-0.38153818,0.08346103,-0.51346755,-0.43190274,0.0025898183,-0.61848366,-0.24545306,0.63244027,-0.145999,0.047708366,-0.27370968,-0.070007294,-0.21879816,0.45005068,0.085181825,0.063640036,-0.013723369,-0.10884542,0.08970566,-0.24468192,0.36264497,0.081823185,0.18631674,0.41206735,-0.20283769,0.1401141,0.42671597,0.6480822,-0.017332403,0.7598978,0.324031,-0.07913264,0.2681846,-0.2914872,-0.32819945,-0.3934935,-0.2365074,0.045112655,-0.34337008,-0.43643206,-0.12855874,-0.408937,-0.7669297,0.42728755,-0.052203473,0.0060742726,0.10052199,0.3198319,0.5090036,-0.12752461,0.095061906,-0.07034631,-0.07166804,-0.43038028,-0.15133543,-0.5547933,-0.3326155,0.31173742,0.85834384,-0.18315217,0.08115453,0.09926458,-0.11895188,0.001754041,0.05092735,-0.05299072,0.24060392,0.47236717,0.07049802,-0.5221845,0.40016046,0.0011729277,-0.31283072,-0.5327404,0.18544309,0.6109035,-0.6641462,0.49939096,0.25116202,-0.09905957,0.018659115,-0.34482405,-0.1946573,-0.09256964,-0.109259024,0.21693482,0.27387297,-0.6392117,0.39770392,0.3382608,-0.12476898,-0.7943916,0.26626205,-0.019399848,-0.42251474,-0.14841872,0.3397702,0.051252488,0.073627725,-0.19439855,0.084444754,-0.3400025,0.17326942,0.059519447,-0.056007523,0.2665567,-0.14162613,-0.18017963,-0.68722546,0.07075661,-0.42533487,-0.28884602,0.27075043,0.14792845,0.19141029,0.22238642,0.061385337,0.35486886,-0.35204846,0.03659545,0.07105609,-0.05981922,0.2723776,0.32352245,0.5499604,-0.42565683,0.430465,0.024834292,-0.07111989,0.09129456,-0.034941677,0.38381606,-0.029419852,0.2048714,0.21995999,-0.26085517,0.34872577,0.6626284,0.16172273,0.41350016,0.03258518,-0.13263336,0.40564343,0.09536052,0.25189304,-0.041517,-0.4615052,0.124699384,-0.09865591,0.060624916,0.3257001,0.19297712,0.24777159,-0.06318552,-0.35076883,-0.0765798,0.40140602,-0.039524738,-1.103374,0.17662011,0.03489795,0.84721494,0.5673694,0.033850744,0.23501556,0.621879,-0.1226988,0.15754499,0.19094168,-0.046709154,-0.5989762,0.47838262,-0.6037553,0.43664852,-0.0035082102,0.0065681865,0.033263784,-0.14333321,0.29556173,0.5877825,-0.1191835,-0.004793149,-0.08369899,-0.20963216,-0.019387173,-0.47894728,0.14485711,-0.5121308,-0.12351467,0.6472627,0.437157,0.23342076,-0.11733748,0.09834341,0.02464985,-0.02461174,-0.017549993,0.15580368,0.116466336,0.11016789,-0.7222049,-0.107442774,0.5379975,-0.0408436,0.14343025,-0.13319333,-0.20141469,0.23997267,-0.24115053,-0.31701052,-0.0920241,-0.75056046,0.103986435,-0.258194,-0.3479254,0.27328327,0.1190646,0.20499936,0.21261957,0.050898645,-0.31134304,0.35730487,0.36710933,0.7956006,0.096554115,-0.095052555,-0.43198907,0.39095753,0.17722812,-0.20927882,-0.119564734,-0.08676116,0.00071753905,-0.39443606,0.40902716,0.0037224637,-0.35730955,0.041930363,-0.111306146,0.099638306,0.6383972,-0.13733636,-0.10214523,-0.13675086,-0.26932812,-0.4451036,-0.028778177,-0.08798464,0.251064,0.45902413,-0.22273782,0.015136187,-0.0049473,-0.19369109,0.55025035,0.07841745,0.49281484,0.3110833,0.15548648,-0.40254122,-0.15489134,0.070668645,0.51012766,-0.089279376,-0.08244036,-0.34408906,-0.4393838,-0.32288507,0.2427315,-0.12515415,0.22036894,0.043274768,-0.24114071,0.64861655,0.097958125,0.9087578,0.057025865,-0.18641017,0.13049948,0.29332137,0.06280555,-0.12163003,-0.4405019,0.97514117,0.35772485,-0.21905565,-0.10322069,-0.22826663,-0.21147797,0.054900903,-0.23145384,-0.027911544,-0.048771746,-0.6513654,-0.30943,0.17751524,0.18765756,0.15532123,-0.13806747,0.20946693,0.2446534,0.043672718,0.12012995,-0.4286138,-0.13362995,0.3840787,0.1385556,0.13466899,0.07341636,-0.42098612,0.29794565,-0.40663323,0.065862186,-0.23177932,0.1589409,-0.17297928,-0.2037852,0.21493293,0.15774855,0.32988584,-0.45473486,-0.40864915,-0.40588772,0.349064,0.10750851,0.19978699,0.4582546,-0.22051588,0.17529556,0.02890319,0.5880309,0.81390953,0.050392386,0.048867628,0.42124015,-0.24580106,-0.4962343,0.34764832,-0.13221973,0.083714634,-0.103503354,-0.057231877,-0.604386,0.30210185,0.20329711,0.2134343,0.14133245,-0.62251943,-0.228602,0.33120087,-0.33173102,-0.15369704,-0.39315298,-0.041827958,0.8024536,-0.19610661,-0.24125849,0.16606356,0.13239565,-0.2360471,-0.4098375,-0.20781183,-0.4299871,0.20735352,0.05231961,-0.2851219,-0.19328862,0.11368991,-0.3574853,0.09393449,0.060840562,-0.27360103,0.029037442,-0.2534391,-0.029294638,0.98051745,-0.22739083,0.25351882,-0.4495921,-0.5624357,-0.9015583,-0.25859582,0.50583583,-0.0066828807,-0.076980226,-0.7251349,-0.0126167815,-0.13231272,-0.31100208,-0.00056227355,-0.37127674,0.4205273,0.1055747,0.33336112,-0.08031697,-0.75392145,0.18796931,0.21116208,-0.34749666,-0.6858079,0.5139493,0.08853222,0.7374535,0.017921861,0.007163925,0.30785984,-0.47953245,-0.16184816,-0.26839688,-0.12865077,-0.59095705,0.15619142,406 -666,0.35159218,-0.04062946,-0.30652282,-0.13163343,-0.17718433,0.051708713,-0.09640332,0.3979382,0.22101974,-0.53689283,-0.14267935,-0.06517235,0.02097596,0.3224262,-0.10526514,-0.34651673,0.05099589,0.05572307,-0.30655882,0.4052987,-0.49983782,0.26073068,-0.046867974,0.2939128,0.08776267,0.13674363,0.0664363,-0.06910949,-0.08250875,-0.2073885,-0.03318084,0.11402599,-0.47547022,0.3067455,-0.07211085,-0.34668404,-0.19290183,-0.39880693,-0.43333003,-0.5359286,0.34232923,-0.84649646,0.35742933,0.05844209,-0.07199443,0.21390077,0.22070767,0.2779953,-0.07186929,-0.053248744,0.17488235,-0.13982643,-0.118473664,-0.09525363,-0.23143005,-0.4310125,-0.62658846,0.007855685,-0.45345542,-0.31757754,-0.4087047,0.09011463,-0.29068822,-0.09562259,0.028094081,0.4497856,-0.46942037,0.059725173,0.121715665,-0.11214356,0.2829175,-0.69554263,-0.21768776,-0.03981826,0.23933789,-0.25059083,-0.20696172,0.27421176,0.42464063,0.39167827,0.04429823,0.018140174,-0.3125238,-0.0755735,0.34134606,0.62052333,-0.16217092,-0.44726703,-0.10665211,-0.07535716,0.13723277,0.1778202,0.0970914,-0.47729582,-0.07332203,0.079411894,-0.19649854,0.4533796,0.50014657,-0.16040659,-0.3284478,0.33884567,0.31961024,0.10866271,-0.17865357,0.11832387,0.024072288,-0.37933546,-0.12249721,0.0014501947,-0.10885853,0.4809578,-0.15024266,0.31497318,0.63959575,-0.19255254,0.13119093,0.16736184,-0.056364004,-0.013650684,-0.29851156,0.00686016,0.081427924,-0.4410914,0.19085358,-0.1305181,0.7638871,0.12504573,-0.9172002,0.38424593,-0.5637893,0.028087698,-0.07340704,0.49260804,0.66428787,0.20953134,0.18833426,0.6689949,-0.50743645,0.019867154,-0.07810479,-0.29820845,0.030039238,-0.1697077,-0.047068037,-0.51658314,-0.14050502,0.24913138,-0.056101542,0.11567107,0.39421415,-0.5065089,-0.05618089,0.14325374,0.74745023,-0.24999008,-0.1367706,0.7941588,1.0889983,0.7395764,0.090342894,1.099106,0.09973882,-0.09865899,0.19087726,-0.22296587,-0.55611044,0.18217829,0.2937863,-0.08345906,0.087316364,0.15152411,-0.0076263295,0.2371915,-0.4398893,0.11582288,-0.044618424,0.29716572,0.18142946,-0.32717434,-0.2672428,-0.1810968,-0.0061642597,0.02213888,0.082388274,0.18339603,-0.25103363,0.2850663,0.09358527,1.453471,-0.07393862,0.14443389,0.04471228,0.5331477,0.12468395,-0.17092787,-0.0012232477,0.0694852,0.3536065,0.07774404,-0.54384255,0.06490774,-0.097807854,-0.49491426,-0.20115773,-0.3818919,-0.26347575,-0.01246578,-0.34043202,-0.092184104,-0.016452752,-0.57684064,0.51766366,-2.9921975,-0.23092307,-0.08582743,0.38398185,-0.2497438,-0.24337377,-0.10895153,-0.37171063,0.48796308,0.30005953,0.423917,-0.6822256,0.24786673,0.42375997,-0.45641333,-0.2261921,-0.55607355,-0.022110783,-0.056313813,0.2778753,0.09846199,0.015924646,0.19118944,0.028621836,0.4956929,0.036827043,0.17713822,0.28391966,0.27259797,0.008691705,0.37785882,-0.11188364,0.50644994,-0.20006345,-0.14994164,0.43042052,-0.35163435,0.116147056,-0.18199426,0.12525561,0.27444384,-0.31209803,-0.912892,-0.6761449,-0.5474273,1.0307724,-0.05428298,-0.4863846,0.40553555,-0.34812406,-0.23066308,-0.032663483,0.64465433,-0.003125851,0.1922423,-0.74115986,0.08025593,-0.20165178,0.04938662,-0.014662043,-0.019075146,-0.5473243,0.6897904,-0.11593831,0.44419533,0.34619427,0.31509095,-0.35410532,-0.3541853,0.08505003,0.9947621,0.3257443,0.14415361,-0.13621569,-0.15631786,-0.3592571,-0.31848955,0.22159702,0.556356,0.6210381,-0.014156566,0.1879239,0.24553323,0.041845363,0.010470439,-0.09937556,-0.18860728,-0.11518192,-0.04176037,0.573668,0.51727414,-0.22003031,0.61410433,-0.10280825,0.10421961,-0.27824956,-0.3892399,0.5154377,0.75633156,-0.05900485,-0.13391535,0.5897529,0.354938,-0.16719271,0.29420945,-0.5859927,-0.21013783,0.519276,-0.1424219,-0.48640063,0.059447885,-0.43219426,-0.0056996895,-0.7743739,0.3637632,-0.30269846,-0.77695316,-0.46834734,-0.19344553,-3.1526628,0.10423739,-0.23960136,-0.31164223,-0.11722629,-0.2371017,0.18290435,-0.4761605,-0.5098342,0.18937324,0.059038933,0.7361444,-0.074091695,0.09884904,-0.28090772,0.027219703,-0.22922857,0.07898802,-0.013248058,0.3871575,-0.15544176,-0.26498115,-0.0674767,-0.019982247,-0.5625018,0.059380826,-0.38002458,-0.5323696,-0.01270727,-0.39068937,-0.21127683,0.7190705,-0.5613715,-0.051227845,-0.2726606,-0.10595457,-0.17515557,0.46078518,0.13527891,0.09181296,0.14200157,0.026888648,-0.05344985,-0.21177243,0.40697977,0.12172302,0.3860321,0.5819833,-0.30776325,0.22343196,0.406743,0.55265325,-0.11660425,0.97297037,0.46419948,-0.06092038,0.24328105,-0.34664375,-0.16429259,-0.43477643,-0.36161402,0.028984942,-0.35767886,-0.64209807,-0.13102868,-0.29370946,-0.779755,0.42531878,0.005088458,0.16525151,-0.008225058,-0.02448551,0.28151062,-0.110818535,-0.14245579,-0.22633985,-0.0144149205,-0.60714555,-0.35531405,-0.5577274,-0.62846047,0.017166954,0.8941069,-0.07343507,-0.02308599,-0.025137233,-0.32076088,-0.1403944,0.07099592,0.07656283,0.045060415,0.1904947,-0.13716431,-0.6744827,0.56586486,-0.20513664,-0.13905388,-0.6253414,0.20493577,0.6433848,-0.44447166,0.4557001,0.28010982,0.096064314,-0.14820205,-0.43300635,-0.2662283,-0.20234005,-0.36024842,0.31329286,0.047272187,-0.84512126,0.425511,0.35413584,-0.2380884,-0.68018764,0.5540653,-0.005094721,0.009390895,0.062116906,0.23268461,0.2931627,-0.02913063,-0.16149117,0.34697706,-0.5601208,0.38727856,0.17120752,-0.030330699,0.5724281,-0.098910585,-0.18306321,-0.5757198,-0.0109757185,-0.4961592,-0.25722522,-0.0684652,0.27194998,0.2573079,0.45519844,0.003620354,0.35833663,-0.3011102,0.14428595,-0.041636325,-0.29972112,0.08475053,0.3374273,0.5248019,-0.4499216,0.6060916,0.0035431522,-0.10440503,-0.009723461,0.1146885,0.47560343,0.14870411,0.29503986,-0.0049594548,-0.19276756,0.16252184,0.94542706,0.2382366,0.41179234,0.028967999,-0.17763683,0.3217306,0.04417773,0.22222394,0.1833837,-0.622578,0.021624625,-0.26021582,0.2552868,0.36501738,0.18307194,0.36538866,-0.0989486,-0.279053,0.09923793,0.22470543,-0.059456248,-1.2124121,0.43620723,0.24427833,0.7767999,0.46630472,-0.05290179,0.16076909,0.6636021,-0.09112227,0.18599969,0.30046928,-0.035184003,-0.4663587,0.5544246,-0.79837203,0.5569458,-0.024391102,-0.054434583,0.09864911,0.09444279,0.36207154,0.75247014,-0.053210177,0.09344746,0.030915665,-0.29469872,0.09559874,-0.46616942,0.24563053,-0.45752007,-0.14274539,0.8066405,0.5508387,0.19640757,-0.10059774,0.05844572,0.0811611,-0.0054281903,-0.0061945734,-0.10767731,0.18672012,-0.13022086,-0.653342,-0.25084355,0.43277708,-0.16697079,0.20363949,0.1839303,-0.0030741142,0.20761058,-0.10805177,-0.16466394,0.008530407,-0.6235001,0.058114648,-0.23953074,-0.35523394,0.34199026,-0.37875605,0.25411624,0.12100427,-0.039225504,-0.10051485,0.40415654,0.23209327,0.6070964,-0.060378138,-0.05777285,-0.34395313,-0.016359907,0.21488568,-0.110569715,-0.09666577,-0.14031756,-0.12200959,-0.6671344,0.42805332,-0.08875464,-0.24673326,0.30973953,-0.14220884,0.05350596,0.47745937,-0.048150107,-0.11706508,0.29944664,-0.18147555,-0.17034248,-0.011084139,-0.16109878,0.35707793,0.24225466,-0.0717725,-0.02302539,-0.13787314,-0.19925134,0.02896208,0.025904136,0.47203547,0.27914318,0.059308566,-0.2666372,-0.19744796,0.264133,0.44728532,0.061138317,0.04594251,-0.06660744,-0.4196551,-0.34185356,0.09687578,-0.12837075,0.37059513,0.09069143,-0.24139506,0.44216144,0.030061828,1.098901,0.09242689,-0.354051,0.22852556,0.26659685,-0.021088783,-0.011836982,-0.2668849,0.85165334,0.5388434,0.06931174,-0.13693859,-0.3459412,-0.04402266,0.37074095,-0.15552743,-0.22369258,0.051333334,-0.75960404,-0.26843736,0.24911015,0.15494336,-0.09548084,-0.07021714,-0.0088393,0.19448218,-0.037988964,0.27448177,-0.59720224,-0.05766269,0.414834,0.46820074,-0.003980749,0.09611543,-0.39002594,0.38517523,-0.5599474,-0.0063768122,-0.14759047,0.16082558,-0.30805305,-0.104917526,0.2472578,0.16838191,0.4856748,-0.01719622,-0.30752033,-0.22620772,0.46011978,-0.02365586,0.16337048,0.4491703,-0.22872066,0.038346387,-0.067827515,0.31361657,1.0910562,-0.21121645,-0.007818795,0.35209215,-0.3600386,-0.56623924,0.5119168,-0.29601356,0.37145963,0.065905616,-0.26902005,-0.34017628,0.19164208,0.24594167,0.053791963,0.16376835,-0.47860608,-0.36472258,0.14970633,-0.32561734,-0.33551612,-0.35503864,0.042313144,0.6205488,-0.3123778,-0.22764063,0.08448439,0.41831955,-0.20222116,-0.5548402,0.0206254,-0.13193652,0.24540646,0.017067881,-0.35014403,-0.2616374,0.050026137,-0.32996362,0.19750334,0.17550865,-0.42835385,0.14153616,-0.18879212,-0.086273484,0.834439,-0.20107515,0.099041,-0.6560231,-0.46649557,-0.63238865,-0.46529543,0.18959545,0.33453828,-0.14171773,-0.38039902,-0.12503614,0.0039162533,0.0027143222,-0.075589426,-0.3685084,0.4447386,0.12336059,0.39436758,-0.16072853,-0.7701572,-0.04637038,0.19955625,-0.023677519,-0.59275687,0.54096496,-0.03074989,0.845028,0.11454303,-0.00944839,0.22663209,-0.41315615,-0.0074177017,-0.14053145,-0.2736029,-0.70747906,0.09781388,407 -667,0.29216203,-0.23718733,-0.6186886,-0.18674152,-0.28597784,-0.010277345,-0.2215191,0.33365828,0.23455903,-0.67680305,-0.16153885,-0.33356625,-0.24208236,0.53089905,-0.3028776,-0.7236411,-0.024293402,0.12412517,-0.74217045,0.69264853,-0.27191716,0.37482518,0.25289896,0.36202827,0.27206367,0.11661197,0.2723847,-0.055082895,0.0069559123,-0.12538776,-0.03607381,-0.20347676,-0.6571105,0.10194782,-0.04843175,-0.49444962,0.0050195754,-0.33553997,-0.22880138,-0.845396,0.48460707,-0.8438722,0.41638392,-0.16538474,-0.3266939,0.048691146,0.053144787,0.57021743,-0.17168695,0.09050707,0.09670297,-0.0323542,-0.124073185,0.17011206,-0.21479353,-0.5082176,-0.6754539,0.17395383,-0.40347517,-0.23195094,-0.27939218,0.09506503,-0.41041976,0.16717641,-0.19498378,0.40469974,-0.35034975,-0.19320199,0.33632326,0.02608067,0.4225543,-0.71301895,-0.19959368,-0.36582085,0.20063022,-0.19556099,-0.18166892,0.20609874,0.4104083,0.5393692,0.037354823,-0.026173644,-0.2184624,0.0028146293,0.3295121,0.2688132,0.03677392,-0.39702585,-0.22789064,-0.09098242,0.34466124,0.10200036,0.35594875,-0.40291956,0.031560276,0.07834661,-0.35039192,0.25207514,0.42505696,-0.19393466,-0.2310244,0.2768442,0.6132674,0.36139774,-0.030801224,0.13388847,0.1653772,-0.55836,-0.20177056,0.22922546,-0.30833882,0.5188708,-0.27616403,0.27339426,0.4349618,-0.13455233,0.13628629,-0.17614865,-0.21181631,-0.2794988,-0.08723743,-0.35208362,0.26656678,-0.4676469,0.2163933,-0.39258474,0.65366876,0.33353382,-0.6278489,0.2941341,-0.6018655,0.35681498,-0.061777994,0.43349198,0.83109325,0.34122828,0.1334619,0.7705122,-0.44066587,0.14176334,-0.017149486,-0.22605988,-0.048573263,-0.38661745,-0.26585615,-0.39871305,-0.08645597,-0.22839539,-0.10382126,-0.14247502,0.51462805,-0.5684234,0.028289787,-0.10971388,0.66362923,-0.22998333,0.12073427,0.99263483,0.749579,1.2191787,0.16377266,1.4871119,0.3171438,-0.40777257,0.27786875,-0.0853116,-0.884146,0.38199493,0.4779218,-0.05970248,0.4284795,-0.15922552,-0.024440814,0.52593255,-0.64252764,0.26940665,-0.45408392,-0.16783307,0.05197721,-0.1254387,-0.2570173,-0.1441395,-0.10596228,0.04789178,0.030732136,0.1809659,0.015028023,0.42167953,0.170629,1.2846328,-0.33104345,0.07427667,0.19928874,0.28206453,0.21678162,-0.34217733,-0.060140334,-0.15056324,0.6193021,0.03798355,-0.7952163,-0.02781524,-0.2308959,-0.5706953,-0.37260753,-0.15234576,-0.021509789,-0.086839035,-0.52584434,-0.22314177,-0.10608873,-0.40469086,0.097601965,-1.9268303,-0.3337093,-0.49760845,0.24158181,-0.25992018,-0.2338641,-0.09871973,-0.54399747,0.47368556,0.5173492,0.24724272,-0.6364952,0.32470006,0.52797395,-0.4404866,0.10109794,-0.7493407,-0.18490204,0.00081356213,0.18579791,-0.018589642,-0.07401988,-0.020911392,0.2270024,0.35237756,-0.053530116,0.02631924,0.22808883,0.55007124,0.039298788,0.6378873,-0.046715073,0.6503586,-0.4575494,-0.17791043,0.5566057,-0.38288873,0.1527387,-0.051167443,0.24932194,0.46361732,-0.74611896,-0.7317107,-0.862428,-0.66999024,1.3743954,-0.014043822,-0.40615904,0.38149977,-0.26811308,-0.11426394,-0.12707011,0.62845176,-0.23396495,-0.098700054,-0.92785794,-0.03324348,-0.123962894,0.19771153,0.05779248,-0.16050608,-0.5154464,0.74821544,-0.097239465,0.4647647,0.47550693,0.22432512,-0.176678,-0.67186075,0.08561259,1.0022918,0.53698194,0.24344349,-0.31783772,-0.1526313,-0.67512894,0.010563337,0.037148036,0.2034994,0.88210577,0.02238958,0.07942811,0.30324337,0.113847,0.29014963,-0.11274132,-0.4048341,-0.14554149,-0.09215943,0.6357819,0.3421076,-0.040676996,0.22887316,-0.049510993,0.2365702,-0.17034888,-0.38658231,0.7581391,1.1685072,-0.2628271,-0.3652748,0.53282887,0.4532289,-0.3266803,0.48327684,-0.6748615,-0.34430158,0.4822161,-0.033096552,-0.43951124,0.17346828,-0.55606425,0.3187694,-1.1159093,0.41491556,-0.43809512,-0.27627102,-0.86004037,-0.06781749,-2.7165768,0.28954193,-0.25260073,-0.26414827,-0.46318465,-0.20487401,0.4791755,-0.4884901,-0.9300878,0.113118835,0.024287852,0.8787155,-0.00124297,0.10534386,-0.20568512,-0.23597339,-0.38823846,0.0185092,0.21694955,0.30794996,0.1401909,-0.39841035,-0.09724213,-0.378078,-0.40982294,-0.016208006,-0.49435553,-0.57099086,-0.4530051,-0.521532,-0.39456397,0.62566274,-0.31946552,0.11919836,-0.17258762,-0.1301634,-0.20557539,0.34909388,0.07790819,0.1578548,0.18471663,-0.14895226,-0.22723077,-0.22051542,-0.05059501,0.09549032,0.0012450493,0.18400982,-0.27586183,0.48845404,0.50253356,0.96396595,-0.21299484,0.8716446,0.68060344,-0.065457076,0.30748737,-0.35194346,-0.22480692,-0.55940044,-0.10191197,0.06256096,-0.3447221,-0.7498611,0.23577768,-0.21595861,-0.8019424,0.49680087,-0.015127329,0.17077821,0.114719145,-0.058634043,0.30338675,-0.07141583,-0.06495642,0.0038521243,-0.104872,-0.46985534,-0.45135644,-0.75631654,-0.51116985,-0.08857442,1.2728631,0.04836499,-0.09706437,0.18784975,-0.3687236,0.27832204,0.20447713,0.016819706,0.024585761,0.31300285,-0.005384107,-0.6800463,0.4018335,0.052642364,-0.1000758,-0.7084392,0.13887602,0.8077021,-0.4672634,0.34112746,0.30827338,-0.1483295,-0.17016572,-0.44272548,-0.0044552204,0.10168985,-0.29793766,0.31902027,0.24676313,-0.5209291,0.37091547,0.3153265,-0.08724214,-0.97634757,0.5277288,0.17578384,-0.067748114,0.041114215,0.3317248,-0.036756057,0.13048641,-0.30203703,0.34913555,-0.31578717,0.08888659,0.37924188,-0.13335766,0.14419377,-0.25309926,-0.1895017,-0.76801056,0.12298655,-0.6361183,-0.041863672,0.28208297,-0.064413026,0.16650066,0.11950864,0.22197448,0.34486505,-0.11700957,0.030726526,-0.1468653,-0.3593467,0.20370255,0.48243618,0.36206907,-0.50920635,0.7422911,-0.016584963,-0.16351381,0.08157405,0.09376837,0.41217571,0.1796853,0.38870987,0.20498034,-0.17112376,0.2765635,1.0019228,0.14395675,0.5412864,0.2159753,-0.20609204,0.25787014,0.37847933,0.1689832,-0.08795696,-0.4982817,-0.039479714,0.058831975,0.02087241,0.58475554,0.026844826,0.29299122,-0.117586866,-0.30911925,-0.031216644,0.023531996,-0.17548281,-1.4749107,0.3998887,0.15693368,0.80028564,0.6849571,-0.07231065,0.18967769,0.4727696,-0.17879762,0.12630829,0.33490494,0.003279466,-0.5331466,0.4709646,-0.5796621,0.27240595,-0.09928419,0.026501795,-0.030453386,0.12701881,0.5853003,0.70059454,-0.05274739,0.17944646,-0.16940607,-0.23450504,0.3555821,-0.34252164,-0.050755646,-0.33525902,-0.36811167,0.6086451,0.5090467,0.332593,-0.22080255,0.04441653,0.0013021025,-0.121138625,0.18391348,-0.12629256,0.010340007,0.05649082,-0.67499447,-0.12842968,0.51487345,0.15950471,0.18712543,0.047923453,-0.6764089,0.14517115,-0.08823586,0.0527722,-0.08515142,-0.8741842,-0.08976821,-0.5171724,-0.26355526,0.1465767,-0.27175155,0.2214531,0.38562918,0.06994884,-0.5073963,0.07767063,-0.22409089,0.74789727,-0.08088835,-0.16019355,-0.32685694,0.27920756,0.257206,-0.5322786,-0.07833673,-0.16057517,0.035320137,-0.54654336,0.45524582,0.043157678,-0.26161596,0.30525976,-0.14173485,-0.14600295,0.6011706,-0.400614,-0.05446263,0.25562182,-0.05276635,-0.13385913,-0.26102254,-0.14779039,0.27957025,0.073466934,0.25279588,-0.18857208,-0.012902285,0.0015238294,0.59599376,0.14083639,0.5152292,0.6346922,0.12840487,-0.7551301,-0.11715547,0.1699016,0.5498339,0.12547109,-0.37715954,-0.29804227,-0.4878054,-0.22677842,0.39640716,-0.15959874,0.38806766,0.2042875,-0.66421914,0.6131346,0.42030826,1.1651617,-0.041784685,-0.52689093,0.08141492,0.43508714,-0.08483602,-0.23882154,-0.42820695,0.6205776,0.4564606,-0.26186225,-0.15061554,-0.2886595,-0.07458922,0.113923125,-0.2897743,-0.020251594,-0.13309528,-0.7097247,-0.34180322,0.20795038,0.3304475,0.08270093,-0.1998119,0.19981688,0.119551465,-0.06081268,0.47332513,-0.4738674,-0.24497288,0.24934009,0.06962821,-0.010931705,0.04826272,-0.32375076,0.3591641,-0.70568305,0.011431511,-0.26166663,0.27545065,0.018058363,-0.25607646,0.22983608,0.011855226,0.41561353,-0.32205054,-0.34665698,-0.31774583,0.61111164,0.22643398,0.2851656,0.7295712,-0.3980417,0.1675556,0.16938064,0.80962753,1.1077392,-0.09024776,0.15995084,0.17136781,-0.358664,-0.42395276,0.4237677,-0.49037182,0.21485512,-0.019153507,-0.21574304,-0.6010396,0.20331922,0.30590528,-0.045935236,0.0898774,-0.7017547,-0.5022074,0.39717183,-0.2835218,-0.25986207,-0.43248302,0.03582057,0.36606127,-0.27686808,-0.28521198,0.09086644,0.40793875,-0.20863542,-0.50110394,-0.19976814,-0.20071451,0.44097614,0.1368445,-0.34374857,-0.110077135,0.06494988,-0.5349848,0.14732935,0.02292511,-0.43727323,-0.09655272,-0.2927536,-0.086207286,0.99764484,-0.22695354,0.037270658,-0.43865183,-0.46508682,-0.8900041,-0.28520992,0.6815084,0.27269956,0.10754386,-0.5707889,-0.08079657,-0.12761047,0.17583922,0.22013667,-0.24809936,0.43016693,0.16765915,0.7269039,-0.039315615,-0.5857759,0.20279314,0.12161834,-0.09533966,-0.4480073,0.505114,0.14577805,0.88357836,0.11124824,0.21513098,0.07005779,-0.6319481,0.078030504,-0.020651337,-0.24149033,-0.61462873,0.17791055,420 -668,0.39630306,-0.018253805,-0.40479007,-0.24491388,-0.32377306,0.044087667,-0.04304913,0.24412547,0.40460846,-0.34110063,-0.020516817,-0.12159344,-0.054688156,0.25859916,-0.050124187,-0.695874,0.023444887,0.11865546,-0.7429116,0.42094472,-0.42816338,0.42384127,0.11432659,0.28158957,0.0459857,0.19469574,0.035061084,-0.05719238,-0.09524098,-0.14309913,-0.075751506,0.15335807,-0.7521449,0.20601335,0.024090687,-0.2325899,-0.07452585,-0.32562,-0.3036641,-0.71027046,0.33721587,-0.86281747,0.72081065,-0.09058372,-0.44326767,0.15255481,-0.0070475433,0.3327615,-0.27023947,0.112749845,0.1657088,-0.17312127,-0.017309513,-0.06973385,-0.24272805,-0.42246026,-0.54140514,-0.0688916,-0.5342331,-0.21491726,-0.21216121,0.09388613,-0.3212032,-0.0069362842,-0.33505934,0.59777075,-0.30289915,0.17616533,0.33196527,-0.0745375,0.32725284,-0.5365897,-0.1210234,-0.099043556,0.24579018,0.0012864516,-0.40973324,0.22955292,0.45527446,0.60138994,0.12950668,-0.2760054,-0.013875102,-0.0005044662,0.22335275,0.26791736,-0.12548737,-0.15783618,-0.19861962,0.006562545,0.34378022,0.25339985,0.15229186,-0.4572215,0.16868351,0.2002435,-0.111772224,0.38252783,0.4170317,-0.21018857,-0.34156746,0.4345654,0.461455,0.08413121,-0.022504646,0.3116728,-0.044370174,-0.5111571,-0.27629867,0.23269114,-0.23905778,0.3955683,-0.159988,0.019095797,0.8298267,-0.10359387,0.11722593,-0.09134357,-0.24007362,0.08208111,-0.36966366,-0.070608914,0.063347265,-0.5743961,0.02457019,-0.17467025,0.62953925,0.15104273,-0.73813045,0.25893575,-0.57740474,0.12696533,-0.1054264,0.61534315,0.84453744,0.33091074,0.15259555,1.0236707,-0.658797,0.03177016,0.07463697,-0.24156544,0.10590862,-0.24151272,0.27654558,-0.6140523,-0.1791061,-0.04127513,-0.20205964,0.01647285,0.14096847,-0.51484346,-0.22510716,-0.07193132,0.5158062,-0.3227188,-0.039891087,0.8190402,1.0651349,0.96525824,0.2567377,1.4902766,0.5052729,-0.16430578,0.250513,-0.29221052,-0.65388334,0.07318462,0.23509052,-0.19240904,0.34478074,0.004177121,0.014246175,0.2985534,-0.42427033,0.119856246,-0.09870657,0.349189,0.033485804,-0.2954009,-0.40566808,-0.16097243,0.14972483,0.045378625,-0.050803706,0.116787106,-0.16637124,0.35098642,0.25855824,1.120469,-0.120795846,-0.025818206,-0.036749817,0.28174078,0.25126413,-0.25483146,-0.050661363,0.3648104,0.45008132,-0.16518325,-0.54948395,0.12641829,-0.25926372,-0.27603355,-0.27570868,-0.275588,0.0966157,-0.14251496,-0.25105202,-0.2749926,0.047610685,-0.461832,0.445168,-2.475235,-0.25808552,-0.24337919,0.3370595,-0.20958193,-0.27890533,-0.21666907,-0.44749722,0.27990717,0.32829005,0.3342277,-0.72767985,0.2732803,0.30746365,-0.43366578,-0.053193636,-0.7252028,-0.05892458,0.04444492,0.24284817,-0.046859972,-0.07611963,-0.274332,0.23905018,0.6357749,0.15543197,0.10060258,0.34154174,0.34072953,-0.049056835,0.42886177,0.21457675,0.5988404,-0.09661767,-0.13730057,0.46138972,-0.33849785,0.14529784,0.1688517,0.09582094,0.33459914,-0.4488705,-0.671854,-0.76007926,-0.5061782,1.2840018,-0.35101095,-0.4253163,0.40596274,-0.26873118,-0.19437233,0.12331472,0.43707854,-0.050291777,0.06590022,-0.8196815,-0.044381417,-0.06581555,0.23675473,-0.15307906,0.05601341,-0.2642222,0.76467663,-0.25886977,0.48691857,0.31915563,0.12470496,-0.12399439,-0.41693908,0.09718038,1.1767921,0.5764892,0.060371988,-0.03767349,-0.18411261,-0.3151739,-0.22414629,0.1473049,0.6150785,0.75973547,-0.11328027,0.07465534,0.33656108,-0.23547648,0.07369772,-0.08355352,-0.37694675,-0.020945854,-0.0048247394,0.46787754,0.35577643,-0.081851594,0.49297982,-0.20987852,0.11326362,-0.14805458,-0.62953365,0.5439699,0.7950363,-0.268285,-0.34108666,0.48766863,0.25880587,-0.34314328,0.35127798,-0.47147718,-0.12258832,0.73728245,0.05000815,-0.5129045,-0.019237537,-0.32957327,0.25399467,-0.95765746,0.3258511,-0.24252878,-0.73135847,-0.41001722,-0.03335099,-3.2143795,0.13631564,-0.2870391,-0.07040773,-0.23049249,-0.079849295,0.41003454,-0.23998588,-0.6316806,0.061719675,0.024998458,0.4802146,-0.08891915,0.03937833,-0.24156204,-0.16296816,-0.40179268,0.15940025,0.06274398,0.18118931,-0.055376265,-0.3623366,0.10356298,-0.16268939,-0.610448,-0.06909909,-0.65994805,-0.5974986,-0.21142942,-0.5141543,-0.34487432,0.7148742,-0.41543177,-0.1630249,-0.2898213,-0.02270616,-0.12854198,0.30842498,0.106375895,0.22492291,0.012055278,-0.033119086,-0.26851672,-0.3383789,0.14668491,0.08484212,0.29932266,0.3961738,-0.18288375,0.3143615,0.50001436,0.6401175,0.007933129,0.72997135,0.34596106,-0.17347775,0.31403765,-0.31200355,-0.17465805,-0.7268967,-0.38288307,-0.18016389,-0.4251427,-0.43357518,-0.21664923,-0.31634837,-0.8781365,0.33985144,0.08462755,0.32414386,-0.040831126,0.38344413,0.33942035,-0.03465297,0.14426345,-0.20805107,-0.28768215,-0.5961917,-0.35581487,-0.7282139,-0.47893354,0.29911476,1.1561017,-0.21799073,0.02126766,0.02742206,-0.52712506,0.18717942,0.0830969,0.10342912,0.14030518,0.57515645,-0.09406022,-0.7106615,0.1581572,0.036185358,-0.06127762,-0.73924726,0.12303435,0.9711578,-0.693153,0.6833133,0.17638408,0.16290379,-0.066909954,-0.45899013,-0.23495704,0.20348889,-0.33653846,0.4753328,0.29204985,-0.44917887,0.36537236,0.2852925,0.0155360745,-0.6734565,0.4155647,-0.013938487,0.019363683,0.07823208,0.36875102,-0.09639395,-0.08243867,0.008304522,0.2542878,-0.4351216,0.41033384,0.44504377,-0.08577215,0.14962788,0.050841827,-0.305496,-0.64302987,-0.012827177,-0.5344296,-0.35480732,0.048911598,0.0907575,0.09082479,0.2514024,0.19741638,0.43097016,-0.10957505,0.12779514,-0.14687073,-0.36896196,0.51638174,0.5383764,0.24162579,-0.36751133,0.57211185,0.08215862,-0.1154579,-0.23594628,-0.021018948,0.5064787,0.2522072,0.40229636,0.05427322,-0.09603036,0.18964837,0.711423,-0.01925375,0.3105148,0.0833752,0.013063293,0.31228703,0.168004,0.1546723,0.024498655,-0.39771354,-0.06115124,-0.10039529,0.2181209,0.36116126,0.17507178,0.2334589,-0.029740917,-0.20407027,0.013224089,0.10034631,-0.12621102,-1.3512925,0.3930456,0.27528778,0.54332757,0.5414134,0.0026997786,-0.0031827688,0.41223437,-0.24862854,0.18829148,0.35416126,-0.10152991,-0.31173283,0.44900566,-0.68871665,0.48415044,-0.1615196,0.093084306,0.14498861,0.27843747,0.35307,1.0120579,-0.21041848,-0.07401185,-0.007659509,-0.26323408,0.25250325,-0.3012723,0.17130746,-0.59372437,-0.4775039,0.60764587,0.47947404,0.2502784,-0.38432154,-0.051585987,0.063685685,-0.2664981,0.13443568,-0.09781342,-0.15655789,-0.055748977,-0.54035145,-0.28533944,0.47940624,-0.15678413,-0.03243607,0.13048063,-0.19806473,0.15408958,-0.2854063,-0.0028294371,-0.12627387,-0.7289327,-0.2333779,-0.27962878,-0.27218756,0.18696631,-0.42138177,0.23454425,0.20134884,-0.02457278,-0.27077252,0.05934809,0.05254358,0.5832682,-0.1564843,-0.24030334,-0.20277113,0.13452438,0.19774477,-0.32472903,0.094530806,-0.21236,0.09854702,-0.59574085,0.49477312,-0.20966905,-0.2786558,0.1674896,-0.21360819,-0.12049552,0.3562786,-0.51733124,-0.1403374,0.052789908,-0.22185446,-0.1883355,-0.16625541,-0.23296309,0.22534928,0.10611351,0.07715516,0.061444107,-0.09145835,-0.15128615,0.14012533,0.33705804,0.26459035,0.42022097,-0.13693883,-0.32880914,-0.014555454,0.10217486,0.36712232,0.23081493,-0.09001963,-0.08177047,-0.20119897,-0.28522727,0.33092964,-0.15928017,0.29744637,-0.054471496,-0.558158,0.82793087,0.31396323,1.2622002,0.04425278,-0.2990949,-0.05384693,0.5283266,-0.026142888,0.056309693,-0.29404518,0.8317548,0.63123256,0.011293248,0.020814218,-0.3961516,-0.2064008,0.45484847,-0.105030864,-0.07381043,-0.053193577,-0.7852446,-0.3624808,0.15508237,0.2596746,0.00036241917,0.20251785,-0.025024153,-0.020964792,-0.051369388,0.36034277,-0.51622677,0.07006494,0.16215992,0.19090572,0.121132426,0.2803474,-0.3935377,0.35202518,-0.7792173,0.22294298,-0.20127241,0.082724735,0.035722487,-0.12465123,0.10062293,0.17797372,0.40301242,-0.41143835,-0.29046035,-0.2979832,0.7245986,0.17088653,0.26688144,0.8372272,-0.23929961,-0.033013783,0.24532267,0.5439196,1.3293959,0.09253732,0.16186784,0.19214351,-0.40023917,-0.6809286,0.28896403,-0.24002345,0.19083785,-0.08243525,-0.32289308,-0.25724214,0.3143185,0.06372233,-0.06704041,0.109095015,-0.5839258,-0.27606624,0.42453912,-0.4142814,-0.29002765,-0.33664423,0.20151402,0.5315675,-0.29196402,-0.29340628,0.0010971198,0.2600319,-0.4295743,-0.47154668,-0.048225682,-0.19367114,0.35731757,0.06106599,-0.37822664,0.036604814,0.2780928,-0.5513864,0.005415169,0.24259421,-0.30215746,0.051635504,-0.09446837,-0.16578914,0.7524642,0.0077367653,-0.117277674,-0.6709784,-0.58102715,-0.6679788,-0.21535787,0.27933085,0.2191318,-0.044875327,-0.47426522,-0.17999472,-0.21404082,0.3127795,0.15718427,-0.55120736,0.44777945,0.21670048,0.4863715,-0.04583697,-0.93,0.04485925,0.04891257,0.09444007,-0.6222467,0.5751849,0.08204706,0.607551,0.096242204,0.08583819,0.1633679,-0.55744195,0.3192653,-0.3088163,-0.14190769,-0.6887707,0.11450188,424 -669,0.343856,-0.0948985,-0.5074908,-0.25063604,-0.08810692,0.10914751,-0.15083154,0.5692445,0.1873137,-0.50176626,-0.1739269,-0.018462896,-0.034379803,0.33895972,-0.3079685,-0.37903273,-0.15260777,-0.01936383,-0.45641467,0.5393026,-0.26916024,0.20669022,-0.074006446,0.50660884,0.28035063,0.32390675,0.07101626,0.05307891,-0.038711634,-0.43659586,-0.15048474,0.33899865,-0.4850135,0.3915711,-0.14986897,-0.20409232,-0.024973737,-0.4436005,-0.31932512,-0.7485868,0.23045489,-0.8767154,0.46558148,-0.1175319,-0.26628736,0.24198332,0.3268372,0.17204182,-0.022772243,-0.26910532,0.36777988,-0.1969429,-0.069210365,-0.31689838,-0.12652668,-0.39972937,-0.47804514,-0.11150846,-0.320816,-0.28920907,-0.30192602,0.25414267,-0.2590446,-0.087513715,-0.034785084,0.68788457,-0.47445157,0.28939733,-0.004138644,-0.3484111,0.30590773,-0.7484305,-0.17524019,0.07795826,0.3440994,-0.13805816,-0.10720343,0.3331901,0.14552933,0.29048678,-0.1705899,0.039365843,-0.32719484,-0.2237462,0.17953593,0.5185706,-0.15471125,-0.41209057,-0.045168407,-0.11123073,0.30319786,0.2492409,0.13652548,-0.403683,-0.14727259,-0.07196983,-0.17176008,0.49916995,0.35899633,-0.10262227,-0.07945042,0.41335207,0.4152642,0.3110474,-0.2662947,-0.11901905,-0.12860161,-0.43980423,-0.09994961,-0.12094741,-0.12990576,0.44801039,-0.040553056,0.36061537,0.6320287,0.03590917,-0.08945394,0.07816609,0.1732572,-0.099962756,-0.2608145,-0.14124677,0.16838945,-0.28356472,0.120086744,-0.12050577,0.69493794,-0.10182906,-0.68600905,0.336858,-0.5368284,0.009907945,-0.0911419,0.41945064,0.43097466,0.45260188,0.21652205,0.6809865,-0.45700902,0.022613006,0.05569174,-0.34394646,0.097588494,-0.07998077,0.08820923,-0.6055179,0.045110688,-0.019491963,-0.03899665,0.17786247,0.34747612,-0.5912236,-0.08087374,0.19194777,0.89693743,-0.24917096,0.04276019,0.70104444,1.005781,0.8652939,-0.021982808,0.93347234,-0.048257835,-0.20771953,-0.15041897,-0.07286214,-0.5875846,0.2342375,0.44243434,-0.16356692,0.07954648,0.07397939,0.23323454,0.3699997,-0.27814567,-0.14442874,-0.15463935,0.3352466,0.16946353,-0.11300461,-0.44246963,-0.22560279,0.06190386,0.14400141,0.17425409,0.07440481,-0.3174423,0.3766527,0.20443891,1.8241178,-0.057627637,0.055460252,0.12144168,0.2949855,0.22842953,-0.03546457,0.03679227,0.41868722,0.24590427,0.15939368,-0.47162172,0.21154903,-0.23103139,-0.44903627,-0.08893318,-0.44524178,-0.27633184,-0.05714757,-0.243097,-0.1765944,-0.019293023,-0.33691108,0.3826056,-2.9015913,-0.1066861,-0.24785392,0.37551305,-0.029514648,-0.3559725,-0.068924695,-0.40976068,0.38953245,0.32792667,0.62273765,-0.5405634,0.19419065,0.49579054,-0.5207934,-0.2215666,-0.37812594,-0.12265471,0.10489815,0.3908258,0.17367442,0.021958195,-0.07691842,0.3238947,0.3537687,0.08002353,0.14515577,0.4279687,0.4446676,-0.29707295,0.560522,-0.1560958,0.57981193,-0.069870144,-0.18778434,0.34332642,-0.36547932,0.14580847,-0.17265779,0.11606869,0.4534305,-0.09748059,-0.8591627,-0.53788555,-0.16621725,1.2469573,-0.18669316,-0.56259346,0.23492835,-0.19946139,-0.41164318,0.08821122,0.46761644,-0.1638942,0.081860386,-0.7902547,0.096780665,-0.3001514,0.23954108,0.0065585147,-0.24418443,-0.5038491,0.73625183,-0.021657787,0.74044454,0.3059641,0.1915684,-0.43837196,-0.20487793,-0.032376572,0.898645,0.5116066,-0.018215898,-0.10132863,-0.10066133,-0.45333037,-0.18407463,0.21249554,0.78221214,0.4554914,-0.027458243,0.053006027,0.31514993,-0.026387779,-0.012052624,-0.16897069,-0.35053423,-0.025268666,-0.028179446,0.5107575,0.64511967,-0.059974,0.42898348,0.045181815,0.46586365,-0.114941485,-0.44369617,0.22859544,0.6508486,-0.16050933,-0.34820366,0.71848094,0.4267922,-0.16007999,0.3533293,-0.5434155,-0.37725103,0.5927583,-0.13825212,-0.53424495,0.25634748,-0.2726031,0.06394959,-0.75858086,0.3904532,-0.19458032,-0.7599863,-0.5573258,-0.13380185,-2.4899766,0.18942359,-0.1380563,-0.26068416,-0.27824384,-0.23710236,0.05042032,-0.6316028,-0.70715785,0.10511708,0.045810994,0.51845443,-0.16487297,0.09800568,-0.07393949,-0.24255705,0.09359123,0.27651203,-0.0669901,0.34897768,-0.048712485,-0.38429457,-0.21753788,0.071252026,-0.40836507,0.055488925,-0.5179299,-0.5982994,0.0997634,-0.56693965,-0.07555162,0.6558351,-0.50804806,0.021982102,-0.27092963,0.11780128,-0.065134816,0.077416666,0.18886654,0.107099295,0.14233659,0.041990988,0.06438918,-0.38432252,0.3156792,0.010673802,0.3035011,0.21519385,0.09687367,0.25362667,0.42429477,0.5610381,-0.21309185,0.93092835,0.3208483,-0.06779209,0.107846774,-0.26225916,-0.48009217,-0.4917553,-0.3520201,0.36163074,-0.34114093,-0.28183633,0.004158552,-0.31341457,-0.7132779,0.511633,0.11598532,0.2019701,-0.11441915,0.012412308,0.42709434,-0.15143083,-0.17285424,0.03732968,-0.10331997,-0.6453285,-0.31690872,-0.6826344,-0.45747566,-0.06566739,0.8740566,-0.24217829,0.019143943,0.17736514,-0.2142397,0.12928057,0.061523356,-0.011628673,0.12220489,0.4111374,0.0067413105,-0.65206087,0.40958178,-0.26368484,-0.06038762,-0.5408834,0.26382077,0.63218176,-0.46293515,0.34779704,0.36139858,0.0670078,-0.24853936,-0.40699893,-0.0006311622,-0.11891627,-0.17312989,0.394914,0.15342568,-0.5549616,0.38769785,0.13115293,-0.19223136,-0.7043369,0.528706,-0.14531864,-0.16189758,-0.018361267,0.39094633,0.07457414,-0.09636022,-0.36324582,0.114003025,-0.280498,0.3429024,0.17498933,-0.032534413,0.28859144,-0.18324134,-0.08018549,-0.6871379,0.079217955,-0.498964,-0.42795944,0.23275962,-0.009975597,-0.034107737,0.14892116,-0.02292495,0.2714512,-0.5125538,0.07255482,-0.16528323,-0.42202532,0.5136897,0.45312965,0.6359834,-0.39298072,0.57643056,0.06700694,-0.12220522,0.09719315,-0.0010364148,0.42220575,-0.03986941,0.30819613,-0.004894614,0.045130644,0.35216787,0.5603024,0.24830765,0.34538034,-0.041853603,-0.253533,0.03141075,0.00535581,0.18025826,0.002587291,-0.7802821,0.271589,-0.30704525,-0.0049092416,0.4919031,0.16462411,0.26556608,0.06290928,-0.5331854,0.14452943,0.2148259,-0.038614675,-1.0565362,0.30676368,0.05555496,1.0467257,0.32856897,0.10718958,0.06988095,0.7729941,-0.084965944,0.053171866,0.32740358,0.06209004,-0.33890995,0.50704813,-0.80064553,0.36775815,0.00043848387,-0.03715155,0.15473893,-0.054587882,0.32664618,0.70157087,-0.22221628,0.0667337,-0.048530392,-0.31759247,0.07264908,-0.40980715,0.07101012,-0.30917743,-0.42043594,0.42592114,0.57532436,0.4089864,-0.23794493,0.13963129,0.059883814,-0.11535645,0.13041623,0.011372202,0.06981854,-0.084650606,-0.63251454,-0.08739584,0.3819825,-0.005625036,0.17453417,-0.10956462,-0.15995726,0.37360522,0.06290277,0.1155156,-0.008163175,-0.51596683,0.03679817,-0.32163,-0.4518262,0.3783446,-0.21215382,0.149753,0.17776471,-0.05740908,0.016620673,0.39430487,0.31585538,0.8763873,0.15791765,-0.056180887,-0.38950267,0.18242396,0.12144462,-0.15174024,-0.032013163,-0.4112522,0.13564986,-0.6292622,0.37278306,-0.11002084,-0.42576128,0.04129764,-0.24543296,0.08624719,0.36638826,0.010903707,-0.11596047,-0.16541964,0.02156678,-0.0054763462,-0.13107058,-0.22042462,0.19442496,0.09162622,0.00021869403,-0.2019232,-0.077382796,-0.36355722,0.07335795,0.001485687,0.57080716,0.44918293,-0.069021694,-0.31304976,0.06381233,0.0927097,0.5559096,0.03615533,-0.053395946,-0.10082225,-0.5710816,-0.44076332,0.53540796,-0.06950731,0.3467476,0.2756984,-0.10927113,0.55984294,-0.1621986,1.1320007,-0.0016985948,-0.41189083,0.12600213,0.49906117,0.059116364,0.031811886,-0.3105019,0.9726132,0.46651238,0.04099583,-0.056593813,-0.412031,0.03118045,0.27098888,-0.17234462,-0.061406054,-0.19404468,-0.6274094,-0.421363,0.102954075,0.16932562,0.21891436,-0.13422707,-0.067001745,0.38995552,0.07379123,0.28266117,-0.38031524,-0.17114346,0.20348524,0.08626751,-0.16841468,-0.008108834,-0.5310347,0.35262614,-0.45907623,0.15229867,-0.49126202,0.1820316,-0.2735379,-0.11153335,0.14739448,-0.2943278,0.42547005,-0.42320564,-0.47964185,-0.09913477,0.34663063,0.14158146,-0.029643547,0.49116734,-0.3256028,0.03003542,0.00027223735,0.48486096,0.86551344,-0.33740857,0.1937487,0.4571506,-0.45279294,-0.51942915,0.104696974,-0.32436657,0.123277105,-0.0684784,-0.19864693,-0.29266727,0.35032675,0.27145046,-0.093519084,-0.1054362,-0.4011456,-0.100602284,0.36362627,-0.30584177,-0.15028456,-0.26968363,-0.141719,0.36844715,-0.3499676,-0.4729033,0.11600414,0.29602125,-0.02862057,-0.6351689,-0.041633762,-0.33410507,0.48297003,0.043108344,-0.47365522,-0.3730521,-0.07571534,-0.36056322,0.31649765,0.1357709,-0.23095372,-0.048261944,-0.2247978,-0.029008912,0.8665902,-0.1349391,-0.025372697,-0.44658074,-0.2968252,-0.6422174,-0.34824717,0.20372626,0.06284371,-0.06736329,-0.5832258,-0.20018516,-0.26256046,-0.025217175,-0.17924307,-0.19367959,0.3485431,0.08012966,0.6009134,-0.40655282,-0.951018,0.40974694,0.17830542,-0.022606198,-0.68523586,0.5149224,0.003503866,0.57985604,0.048806135,0.091219984,0.23566912,-0.5911335,-0.1028914,-0.23647764,-0.18480395,-0.471498,0.27989072,432 -670,0.27506414,-0.018000979,-0.41581768,-0.1941529,-0.27825344,-0.08691562,-0.15631384,0.26924276,0.2667783,-0.067048796,0.07018325,-0.010746259,-0.1526925,0.47601846,-0.07709804,-0.84789306,0.071184985,-0.028383275,-0.6882118,0.54178834,-0.5722021,0.2745378,-0.10776433,0.35728306,-0.08044604,0.20256898,0.06786693,-0.07953261,0.15952608,-0.06648321,-0.105281286,0.22886637,-0.6178366,0.35758665,-0.04646381,-0.24557965,0.0727094,-0.2417365,-0.38330925,-0.57232106,0.18487015,-0.5429131,0.59113365,0.044511054,-0.32676938,0.2422571,0.22364885,0.25574565,-0.36116028,-0.021880733,0.27908558,-0.15076983,-0.16401713,-0.15015496,-0.21954481,-0.53759223,-0.54883164,0.02197917,-0.7711905,-0.0909289,-0.24537228,0.22153696,-0.3529355,-0.07517863,-0.26274273,0.47666708,-0.34361127,0.17302468,0.14199881,-0.110319145,-0.065350644,-0.38453534,-0.08330501,-0.09884539,0.29640672,0.020152735,-0.3170217,0.3374052,0.37413904,0.48759687,-0.049121615,-0.24767703,-0.25527507,-0.17645772,0.18196625,0.47071093,-0.018328428,-0.26026374,-0.2189408,0.044349805,0.123988815,0.23286694,-0.061878428,-0.46506995,0.041886587,0.0049647368,-0.32586053,0.58095163,0.40535054,-0.5486348,-0.38362342,0.5220241,0.36098802,0.2026053,-0.24695651,0.16445614,-0.07197123,-0.5361593,-0.2416795,0.17350386,-0.1326073,0.3609963,-0.15676938,0.1752879,0.70299286,-0.19049191,-0.1593332,0.09448438,-0.21882409,0.10231069,-0.32052034,0.025062634,0.037279792,-0.5563591,0.061201558,-0.21640888,0.8062169,0.05042582,-0.8233712,0.28694677,-0.5904843,0.06371541,-0.20292942,0.6620147,0.8342132,0.33709347,0.21924034,0.75336206,-0.5078212,0.08219877,0.06672762,-0.39068043,0.02710124,-0.042492066,0.20088723,-0.6051677,-0.006406885,-0.053151462,0.086837806,0.13148037,0.17590117,-0.39512417,-0.14542745,0.09037364,0.83564335,-0.29479435,-0.30205154,0.7653671,1.098113,1.0268279,0.11007099,1.2047147,0.40358722,-0.10916788,0.14553049,-0.42058828,-0.49770424,-0.0031756805,0.2188155,-0.11219649,0.27716443,-0.02843136,0.13638937,0.43207085,-0.21725999,0.01511848,0.03223068,0.5087035,0.05926421,-0.15502277,-0.17717582,-0.24269469,0.18586993,-0.10507139,-0.03470793,0.35321766,-0.20971915,0.33442286,0.14101234,0.9994853,0.23283936,0.15363114,-0.05772137,0.4379021,0.24641384,-0.10213321,-0.09273608,0.4052486,0.37062436,-0.05706082,-0.56752014,0.07809667,-0.44452265,-0.27381867,-0.18367052,-0.44752643,-0.21235606,-0.03355104,-0.30922747,-0.22483373,-0.0040364745,-0.13165836,0.543366,-3.007884,-0.2371659,-0.15849908,0.20647614,-0.14303707,-0.1321253,-0.12513775,-0.49708843,0.3269511,0.35969183,0.36657906,-0.5580474,0.55684924,0.3203796,-0.41786352,-0.24397938,-0.6973674,-0.18248327,0.056952477,0.3430581,-0.11413883,0.047684744,-0.13796066,0.105451584,0.6598376,-0.07391545,0.026372384,0.14805569,0.5712941,-0.13256243,0.52998745,0.10593592,0.6523049,-0.27481854,-0.15595442,0.26483876,-0.39718232,0.5289889,0.07741535,0.15146627,0.5233912,-0.42702115,-0.9141124,-0.42879596,-0.3537911,1.1105874,-0.28016263,-0.29604974,0.29866183,-0.3012968,-0.13639967,-0.03479329,0.3458951,0.002916203,-0.11501361,-0.6077945,0.19712344,-0.21332678,0.2213289,-0.08797788,0.010548736,-0.19063732,0.68705,-0.061393175,0.55768496,0.2569437,0.09692964,-0.40546206,-0.30658787,0.031119611,0.8405746,0.36832288,-0.011411394,-0.12690352,-0.20708445,-0.22020754,-0.32814163,0.08614178,0.679895,0.47635126,-0.08367057,0.09548993,0.44600445,-0.27214268,0.104974344,-0.11439863,-0.32763317,-0.07361306,0.23161313,0.4303183,0.6548005,-0.22533043,0.66378176,-0.025378194,0.04156742,-0.23677577,-0.44832614,0.5446554,0.47025383,-0.10586922,-0.32562065,0.47422224,0.38578928,-0.20899075,0.3967647,-0.44834378,-0.33138803,0.6953475,-0.0836255,-0.3390644,0.030943481,-0.24314973,-0.15131694,-0.890031,0.28704745,-0.33139977,-0.6447812,-0.4947704,-0.107967615,-3.8110754,0.04313095,-0.2857097,0.07068088,-0.15384696,-0.061952714,0.2556182,-0.43365,-0.40719938,0.21396142,0.18957426,0.44481552,-0.10985829,0.16961217,-0.24916026,-0.27891478,-0.33348128,0.26178804,0.04671137,0.2011945,0.10015479,-0.39900228,0.21815032,-0.11999167,-0.5219294,-0.055111427,-0.38142845,-0.34391367,0.018223587,-0.5493876,-0.20443231,0.74220806,-0.54389656,-0.056268223,-0.3243256,0.041301075,-0.082350604,0.38007757,0.18453392,0.2130566,0.018379541,-0.04408376,-0.27184188,-0.44177192,0.18905303,0.11185797,0.40199375,0.49337357,0.1384483,0.25879824,0.6425492,0.6251765,0.052753273,0.6832656,0.16592942,-0.1961372,0.38238522,-0.24185228,-0.1790732,-0.59565914,-0.44832066,-0.2588223,-0.40903085,-0.5588665,-0.0544815,-0.20483285,-0.74498105,0.47085905,0.21696314,0.02666541,-0.23381259,0.30249053,0.27281708,-0.12545177,0.17491056,-0.17178679,-0.18360645,-0.41479862,-0.4059605,-0.69178903,-0.47890377,0.23572055,1.1220337,-0.24063618,-0.062443033,-0.04365423,-0.33652973,-0.08546483,0.024368923,0.18794507,0.31022274,0.22637513,-0.14231607,-0.6268917,0.35395527,-0.29093477,0.053068757,-0.5643132,0.035321455,0.81229717,-0.7236439,0.64057153,0.19227457,0.1905788,-0.013706519,-0.5739438,-0.34048197,0.055196628,-0.09485273,0.35647964,0.13369504,-0.6928406,0.44243982,0.27689713,-0.18081625,-0.70622635,0.4302185,0.015627421,-0.11280219,0.13772377,0.31225646,0.2611271,-0.09508023,-0.022693377,0.32059538,-0.45167038,0.2379965,0.07464379,-0.034627896,0.2397016,0.008129725,-0.20542862,-0.5499682,-0.15300393,-0.42153352,-0.36224237,0.058727667,0.11975603,0.1921302,0.061615486,-0.08100788,0.26129586,-0.15735966,0.2490041,0.010263479,-0.13663727,0.32567424,0.406462,0.30246398,-0.5482553,0.57614106,0.29942787,0.08264477,0.03970067,0.1515809,0.44184902,0.17107306,0.4558931,-0.08430241,-0.14823252,0.23844655,0.86137986,0.13607004,0.24839677,0.15051112,-0.030917048,0.22999135,0.0690355,-0.027327742,0.09377468,-0.26976562,0.05257869,0.02562621,0.24855742,0.44504637,0.16516949,0.293737,-0.0067590335,-0.06360377,0.13196188,0.22612514,0.07379262,-1.0535167,0.49289852,0.25645375,0.7360202,0.45200032,0.09306634,-0.055299,0.6673408,-0.27594075,0.040377684,0.5253989,-0.029036295,-0.3068848,0.5620307,-0.6124738,0.6465436,-0.13026363,0.074490756,0.22844134,0.16230623,0.22832134,1.0122977,-0.16244675,-0.015619512,0.061200477,-0.40276676,0.06886614,-0.21861324,0.14350374,-0.32858998,-0.35056353,0.6538692,0.43505356,0.14901075,-0.24349032,-0.0104112085,0.060658243,-0.15588555,-0.087463774,-0.15079346,-0.0349262,-0.17525643,-0.50067425,-0.11874248,0.6564372,-0.14096998,0.06481722,0.10581219,-0.16373433,0.36724275,-0.22050546,0.013092334,-0.025467783,-0.5465486,-0.01427468,-0.21476248,-0.49158207,0.28179842,-0.43909612,0.24901755,0.13798885,-0.014306387,-0.23861185,0.49110258,0.038298585,0.6724195,-0.20178403,-0.025386218,-0.21759135,0.050897956,0.256108,-0.2387836,-0.02600329,-0.49086776,-0.00669362,-0.7012206,0.34861276,-0.2651815,-0.37098455,-0.39692357,-0.099527486,0.11335841,0.40487495,-0.28231838,-0.11727974,-0.0051211235,-0.21385002,-0.29095995,-0.018618045,-0.21315274,0.30504093,0.15231012,0.14445028,-0.07986773,-0.25352138,-0.1648326,0.16766335,0.11033487,0.18310048,0.055297416,0.09861675,-0.19071124,0.035177276,-0.062242653,0.40543666,0.20353852,-0.013043018,-0.12728843,-0.13563463,-0.34110802,0.3549606,-0.09537117,0.25019658,-0.040736053,-0.5739947,0.69056374,0.0583558,1.361031,0.08555811,-0.36574686,0.12252743,0.60337454,0.12224959,0.1951076,-0.15573381,0.80154705,0.5327108,-0.04575267,-0.12613787,-0.45332274,-0.24921598,0.35782778,-0.28315282,-0.29645592,0.08535172,-0.5823361,-0.061737895,0.12189767,0.08328785,0.15577577,-0.08500011,-0.27063277,-0.010985489,0.21388935,0.4272959,-0.6575492,-0.06608736,0.20766027,0.37625366,0.065722,0.22913098,-0.3561077,0.34341228,-0.7013804,0.33457425,-0.42374232,0.10771505,-0.2853269,-0.14284907,0.21287915,0.11273584,0.31070006,-0.18608679,-0.27586764,-0.13949244,0.6920255,0.28846586,0.30705863,0.7670987,-0.28854033,-0.1829009,0.060321026,0.5354017,1.0891024,-0.074827276,-0.36102512,0.075190976,-0.2863354,-0.7064472,0.11011289,-0.47849458,0.021419208,-0.049866863,-0.28479046,-0.18538603,0.2805659,0.080863826,0.18943486,0.14117745,-0.6749016,-0.15033549,0.38749915,-0.22991107,-0.31412274,-0.20805621,0.23974395,0.8993903,-0.26757038,-0.2720956,0.11086981,0.19356304,-0.26577532,-0.5388753,0.10999697,-0.31891558,0.29821312,0.16355893,-0.3345714,0.051571324,0.28922248,-0.50919414,0.19291559,0.32773682,-0.31471828,-0.029572196,-0.14267935,-0.2584306,0.9631764,-0.15133867,0.29674688,-0.56656307,-0.5995234,-0.55196273,-0.37694848,0.25822887,0.12341734,-0.0933258,-0.57449,-0.22324476,0.0040509976,-0.08391379,0.116787426,-0.60313493,0.35845274,0.0472979,0.30340323,-0.08250827,-1.0714452,-0.066427454,0.22698127,-0.07795334,-0.65626407,0.4792207,-0.25211477,0.69715494,0.022891285,0.036821492,0.2192505,-0.48732615,0.26694587,-0.49109915,-0.09021825,-0.57533646,0.18821104,433 -671,0.38612556,-0.36577418,-0.64805084,-0.14325818,-0.0023077405,0.055153105,-0.36041215,0.3172119,0.018616028,-0.6378844,-0.08999358,-0.052856866,-0.08284744,0.14065307,-0.18775657,-0.48002717,-0.037628576,0.12420264,-0.5192626,0.40167925,-0.64203715,0.22407605,-0.09539854,0.18044037,-0.12099433,0.078697,0.23109096,-0.094355874,0.121725306,-0.17404915,0.28468752,-0.08704695,-0.62397164,0.25428846,-0.13252237,-0.42164823,-0.01090376,-0.30690357,-0.39031076,-0.7765277,0.31836507,-0.80998355,0.49273905,0.118196264,-0.26742065,0.20860672,-0.044341106,0.2995019,-0.32965267,0.21096016,0.23963049,-0.18447235,-0.18849255,-0.1546092,0.03940657,-0.30945554,-0.5312457,0.05052457,-0.5137011,-0.012320184,-0.24038556,0.19070338,-0.40123448,0.05966068,-0.3032685,0.25848457,-0.43497902,-0.22826006,0.28863642,0.02744895,0.31666666,-0.5797539,-0.1579303,-0.22343516,0.15227993,-0.19412059,-0.21134081,0.22207054,0.14212188,0.485822,-0.041516863,-0.081763946,-0.11246065,-0.088105716,0.5021466,0.4530557,-0.075013615,-0.37311834,-0.2283899,-0.22724034,0.15557133,0.06771266,0.00028300285,-0.2484681,-0.07811273,0.07708509,-0.26228064,0.28099996,0.62739587,-0.18695047,-0.13664082,0.34574705,0.6898061,0.16720557,-0.040943705,0.28038457,0.037483998,-0.53175974,-0.31290415,0.26730523,-0.14777043,0.33767554,-0.20943072,0.33292845,0.45738012,-0.22978657,-0.056800522,-0.00884173,-0.10710733,-0.04617491,-0.30158645,-0.37946904,0.32601207,-0.5137876,0.109315634,-0.38044655,0.6833807,0.06657791,-0.72318065,0.3842042,-0.49404156,0.20665742,-0.03391489,0.8700351,0.769193,0.38983816,0.08271801,0.8065522,-0.53308743,0.030018069,-0.00078081165,-0.35666913,0.27455476,-0.2608303,-0.2011494,-0.3215441,0.003217578,0.08214466,0.0071633686,-0.20646533,0.48183364,-0.5035376,-0.04582008,0.06984928,0.5271621,-0.29633385,0.25934446,0.7467679,1.1157504,1.09625,0.27569023,1.2815922,0.25626293,-0.2725674,0.0044703805,0.0074305166,-0.99613726,0.2920292,0.29139993,0.1571378,0.2639777,0.121738344,-0.3021676,0.4795043,-0.44507128,0.03132347,-0.27496505,0.24187341,-0.24275126,-0.18120027,-0.4364282,-0.067418545,0.10111026,-0.039573487,0.022952905,0.25974068,-0.27793437,0.33365208,0.08535007,1.1090645,-0.37956384,0.18123606,0.075741634,0.24279083,0.18160227,-0.27378613,0.03897887,0.22816795,0.5728918,0.15732847,-0.7032065,0.18694337,-0.14477286,-0.48631924,-0.14055444,-0.15850884,0.052885048,-0.13949819,-0.3388577,-0.17996573,-0.0012985033,-0.44806856,0.21870448,-2.5270028,-0.1786126,-0.18087754,0.2359333,-0.097403534,-0.15613762,-0.0706466,-0.39903104,0.49935454,0.42089707,0.46560752,-0.5355319,0.41246873,0.48429155,-0.4439371,0.11868775,-0.7620331,-0.13695045,-0.19302522,0.29937124,0.13312699,-0.106526986,-0.024025513,0.11395447,0.39247248,-0.15023006,0.12691721,0.2474707,0.44965026,-0.012727453,0.5041948,0.028873939,0.5209933,-0.48650625,-0.17395003,0.37268984,-0.44030717,0.30830732,-0.09740868,0.26854143,0.3567108,-0.5941273,-0.93377185,-0.5880397,-0.42414,1.3419559,-0.12920272,-0.5338854,0.30681878,-0.31989023,-0.39839008,-0.013203463,0.45289543,-0.26931828,0.007849052,-0.9546131,0.004702582,-0.17814478,0.40364838,-0.10826261,-0.0036757635,-0.6497096,0.721534,-0.092476755,0.53666425,0.4490355,0.15603295,-0.2477156,-0.5059512,0.010314813,1.0503069,0.38130283,0.1900042,-0.26169246,-0.031038664,-0.25397283,0.069863044,0.03560746,0.4043122,0.81946886,0.03844542,0.27041373,0.23606946,0.072109774,0.064358406,-0.077629775,-0.3291334,-0.21239226,-0.06364278,0.6391251,0.48944646,-0.11202899,0.1336744,-0.027085373,0.2909306,-0.3279025,-0.37476003,0.500781,0.7914531,-0.061506663,-0.2995443,0.6664662,0.6052833,-0.22369348,0.57237476,-0.6304757,-0.44853476,0.23932065,-0.039941814,-0.3673696,0.33679295,-0.49508154,0.25891382,-0.89032745,0.3848556,-0.6374798,-0.71232855,-0.7121509,-0.26624137,-3.5540633,0.30970255,-0.15754685,-0.1868667,-0.2291517,-0.06162759,0.549274,-0.4698577,-0.6074989,0.16479741,0.10894866,0.73389995,-0.09415773,-0.08120235,-0.3548157,-0.03179648,-0.45404655,0.15638176,0.251245,0.04449995,0.05176099,-0.36988977,-0.18147479,-0.3188637,-0.2950732,-0.07969327,-0.46124637,-0.338561,-0.14238243,-0.3781179,-0.4300279,0.6648363,-0.21330403,-0.0714282,-0.17154318,-0.010371302,-0.1533321,0.47990465,0.052835006,0.24405906,-0.095247544,-0.18808188,-0.21593054,-0.18538244,0.16859889,0.022578625,0.14796475,0.49728182,-0.59353626,-0.090741605,0.3479093,0.6515453,-0.17125061,0.9379569,0.49978513,-0.1660983,0.40830147,-0.16897072,-0.25585312,-0.51100945,-0.20810571,-0.028155813,-0.4595116,-0.5259975,0.045434237,-0.3586439,-0.8071595,0.5426791,-0.11229812,0.10929751,-0.04457983,0.19234252,0.19926745,-0.0077808043,-0.03545425,-0.18056637,-0.120877475,-0.31485498,-0.35898775,-0.81114674,-0.4819628,-0.12161536,1.22898,-0.18695869,0.09053634,0.15368226,-0.17676269,0.17307083,0.21154836,0.05896109,0.24296425,0.34876618,0.16385324,-0.6254085,0.49047568,-0.16261429,-0.2251913,-0.6485258,0.08923447,0.7884997,-0.626688,0.4737072,0.5443598,-0.033296898,-0.19141586,-0.6221998,-0.09828469,0.05185249,-0.13710898,0.57179266,0.22461806,-0.84470785,0.53954935,0.36555788,-0.13135025,-0.6747439,0.53731734,0.084302835,0.058855765,0.053131223,0.43409082,-0.43675998,0.06232941,-0.19197644,0.34078678,-0.27419588,0.33945194,0.19238622,-0.14864218,0.42771465,-0.21937473,-0.12275417,-0.51736456,-0.13019544,-0.68797046,0.01263654,0.27703208,-0.15718427,0.018103536,0.14659296,-0.02462051,0.583043,-0.2528229,0.07143417,-0.099039845,-0.4350453,0.3693241,0.5443804,0.19343932,-0.3622346,0.6809011,0.08047174,-0.26440364,-0.34829727,0.26272488,0.476821,0.041631103,0.57259166,-0.10104275,0.094004355,0.30591172,0.9825023,0.28366244,0.7124442,0.18259764,-0.050475355,0.2119891,0.25164783,0.3086949,-0.0009697263,-0.34361792,0.037936598,-0.032926776,0.26371711,0.3471623,0.00549459,0.48724973,-0.21637811,-0.12784195,-0.0005133106,0.32066786,-0.05906673,-1.2171581,0.58273953,0.10664124,0.7033273,0.64356637,-0.018158723,0.16907209,0.4692313,-0.19063853,0.07542311,0.16635264,0.13749443,-0.49577123,0.4700508,-0.753211,0.2689601,-0.16407767,-0.0024562455,0.17645349,-0.19245552,0.6580573,0.63473225,-0.019788774,0.22196515,-0.12106584,-0.13797377,0.3037813,-0.27750397,0.2965825,-0.26426566,-0.33211473,0.7997194,0.54424304,0.384531,-0.22484732,-0.04083071,0.031600047,-0.08443188,0.15852666,-0.012045879,0.04283518,0.005571429,-0.651512,-0.16173172,0.5386128,0.112484604,0.10587248,0.12703745,-0.3827855,0.22995193,0.043452714,0.11033809,-0.04357366,-0.5980783,0.13627441,-0.3870155,-0.30696803,0.27151912,-0.3525712,0.2730815,0.3191302,0.048571844,-0.37254614,0.008581487,-0.0618558,0.7128467,-0.02592203,-0.1971812,-0.38691285,0.28404,0.3305135,-0.3407374,-0.07576531,-0.40829134,0.048406202,-0.6199847,0.4953895,-0.12149884,-0.25590184,0.44032013,-0.020828221,-0.010401724,0.554903,-0.34370738,-0.22465254,0.21232727,0.025111616,-0.19375786,-0.1815834,-0.14725097,0.19109562,0.11936282,0.21887049,0.02128932,0.18610956,-0.054356217,0.38851973,0.2968734,0.2987131,0.42574328,0.110131554,-0.63899666,0.009083831,0.006050715,0.67469394,0.05975501,-0.113129064,-0.3118254,-0.7098615,-0.24958898,0.18519154,-0.12112231,0.24667645,0.05811021,-0.27982932,0.6814303,0.22606349,0.9601954,0.013110115,-0.40554312,-0.0035177744,0.73519194,0.043389603,-0.20962895,-0.35850254,0.8784735,0.63578475,-0.38214478,-0.085186586,-0.29881126,-0.1845356,0.05157605,-0.26983327,-0.26900804,-0.073147476,-0.791734,-0.07624045,0.16783795,0.3344538,-0.021129988,-0.17332682,0.11127511,0.29491755,0.025382899,0.082005896,-0.68431944,-0.030275155,0.21529767,0.16310175,-0.030474255,0.06390096,-0.30474064,0.23484658,-0.76597416,-0.024642803,-0.17664433,0.07350154,0.027925886,-0.46050772,0.10560233,0.01572572,0.34874582,-0.37138087,-0.21371518,-0.055524983,0.38297784,0.220134,0.33139548,0.8605948,-0.22735724,0.19899045,0.20264561,0.35427406,0.9645062,-0.314272,-0.01489046,0.2762499,-0.3939441,-0.69779235,0.1284276,-0.48778504,0.3323631,-0.17352353,-0.4322594,-0.47480538,0.25599715,0.24264549,-0.055839337,0.09443457,-0.79995114,-0.19018294,0.22836025,-0.18365632,-0.2452252,-0.3980026,-0.01774268,0.6120783,-0.26609653,-0.26611727,0.02867077,0.3494822,-0.4132529,-0.58840317,-0.058384456,-0.46191713,0.3669272,0.09987114,-0.14462504,0.022963643,0.10598544,-0.5073875,0.2661312,0.004644347,-0.26889646,0.021048166,-0.3722901,-0.058336217,0.7507751,-0.23191191,-0.030931445,-0.6122182,-0.58708036,-0.87859976,-0.20921485,0.6470193,0.23462452,0.07939183,-0.5361637,0.05350179,0.07982819,0.28102115,-0.14386015,-0.3461094,0.44241005,0.04415383,0.4162973,-0.11077202,-0.7480587,0.22108918,0.25950545,-0.19802545,-0.46730053,0.48759276,0.021126628,0.6443065,0.18775576,0.26130655,0.103352055,-0.7270967,0.16290042,-0.1617739,-0.20070688,-0.75491804,0.025048275,435 -672,0.5077678,-0.045964736,-0.6411325,-0.11906049,-0.09817219,0.13094462,-0.266324,0.47233585,0.30083168,-0.48895785,-0.058827415,-0.2584228,0.09013828,0.4201409,-0.22728652,-1.1005701,0.036411304,0.17537977,-0.41495785,0.40187377,-0.42371148,0.4501992,0.10084864,0.5990029,0.2287589,0.17364965,0.119942054,0.007174107,-0.21025737,-0.0831238,0.08241533,0.019961122,-0.81617886,-0.05899149,-0.1117977,-0.7290242,0.12520498,-0.28856033,-0.34676364,-0.85443777,0.47612652,-0.9240449,0.73200065,0.017431019,-0.26354438,0.04984012,0.1838035,0.49974588,-0.06080785,0.14321212,0.26169732,-0.12345925,0.095977984,-0.03653479,-0.4831287,-0.72691566,-0.59886587,0.16991115,-0.63911384,-0.20696269,-0.10508839,0.29024416,-0.36015877,0.028107522,-0.075766735,0.4486497,-0.30345407,-0.29276296,0.52462065,-0.087022856,0.49483392,-0.67496836,-0.10569855,-0.10224915,0.14086565,-0.18756849,-0.121096246,0.15454294,0.4457323,0.6013898,0.12940277,-0.30556774,-0.36109537,0.21389844,0.12679638,0.38119358,-0.339169,-0.33480453,-0.3511092,0.026234388,0.3650591,0.24490833,0.34570968,-0.36634716,0.13274175,0.32660082,-0.36844915,0.54685676,0.5630416,-0.5856317,-0.050495524,0.18712837,0.4036514,0.17875718,-0.05732592,0.27548772,0.16923556,-0.5062398,-0.18951145,0.24092612,-0.26043406,0.56129265,-0.17636982,0.31842345,0.7186534,-0.23696111,0.15422378,0.101952754,-0.06880601,-0.06279114,-0.44811985,-0.15836808,0.34017718,-0.6366097,0.023685502,-0.37996605,0.8846025,0.2598031,-0.68465525,0.28149208,-0.66802055,0.16034463,-0.20484385,0.48382106,0.7218558,0.34648398,0.19555518,0.9876552,-0.7432153,-0.04044473,-0.059900828,-0.3432966,0.103011385,-0.21558556,0.020793071,-0.3855706,-0.11667041,-0.11330401,0.09046876,0.17504588,0.57879704,-0.61338466,-0.08853279,0.15641347,1.1236564,-0.32845253,-0.12570003,0.7042904,1.1939569,0.93651456,0.07416104,1.2075508,0.3861851,-0.30158645,0.12954426,-0.21914874,-0.69288504,0.45797044,0.28005394,-0.52105033,0.46495232,0.03022977,-0.0053978907,0.6488289,-0.43316948,0.06329868,-0.21504351,0.1366159,0.07770995,-0.37311867,-0.26280922,-0.08569997,-0.022512428,-0.2244842,0.25039136,0.25328347,-0.13624884,0.2657393,0.014363807,1.3479207,-0.2244681,-0.080430225,0.012479448,0.42208755,0.30596173,-0.030700188,0.13391441,-0.054311965,0.28961188,0.061104454,-0.6290484,0.098264605,-0.36088386,-0.53343296,-0.34057707,-0.08477424,-0.06735222,0.058532834,-0.60991156,-0.18585761,-0.08919033,-0.1376453,0.3809381,-2.217565,-0.4310358,-0.1074985,0.2643388,-0.40941235,-0.43865368,-0.19359629,-0.59353477,0.5642116,0.3554532,0.32616442,-0.7080888,0.48512346,0.37822196,-0.27360636,-0.124545366,-0.7176691,-0.11448649,-0.09238354,0.16723078,0.10320134,-0.34375176,-0.018913796,0.29857615,0.61643153,0.100564554,0.006767825,0.089971215,0.46272108,0.0033345313,0.5045163,0.057669878,0.7225899,-0.19113654,-0.18845892,0.4872376,-0.42972466,0.007489122,-0.054784432,0.2018331,0.3949857,-0.5325525,-0.9314215,-0.834946,-0.29014197,1.0198256,-0.1416972,-0.5042924,0.26450533,-0.07017047,-0.16930725,0.08613502,0.39441264,-0.1764588,0.06905477,-0.95851034,0.03449654,-0.19948068,0.04486992,0.045279477,0.036325235,-0.36025804,0.68146205,-0.20271462,0.33856267,0.46067375,0.23425047,-0.23075208,-0.6827844,0.06345964,1.1042367,0.47396028,0.25163832,-0.3863251,0.020800646,-0.56075704,-0.15673298,0.057353374,0.43218577,1.1056262,-0.05900626,0.04966373,0.29015163,0.054898266,-0.026037235,-0.10519523,-0.73596346,-0.16997847,0.015053199,0.59040666,0.6389058,-0.25957453,0.59550387,-0.2636244,0.38526338,-0.39217582,-0.3632801,0.7649008,1.1894126,-0.39230987,-0.3376481,0.78116924,0.34943488,-0.3735917,0.5791652,-0.72436684,-0.45896244,0.3975286,-0.14014468,-0.5875586,0.1505523,-0.38742545,0.13224414,-1.2681091,0.31112936,-0.44766602,-0.20309447,-0.4606641,-0.2727772,-3.6500068,0.22700736,-0.2753318,0.07890816,-0.24200135,-0.061231434,0.46047628,-0.5107707,-0.73490554,0.051198784,0.07405189,0.7158209,0.04822487,0.3168484,-0.20875515,-0.18356594,-0.24371709,0.23194133,0.41310075,0.15872638,0.10097771,-0.5750876,-0.21214588,-0.22341953,-0.5351154,0.024395406,-0.71876377,-0.56401587,-0.253142,-0.71978366,-0.50068974,0.6839733,-0.49335,0.055286683,-0.38667712,0.10239903,-0.18136334,0.64379686,-0.0016968227,0.17766206,0.16742751,-0.10887054,0.005349966,-0.34110075,0.06854547,0.12003778,0.32193473,0.43736956,-0.14034976,0.21724826,0.65605855,0.8340325,0.01903572,0.76617974,0.6540498,-0.090687126,0.32875612,-0.34753892,-0.3419275,-0.5967179,-0.3318758,-0.13333125,-0.38801906,-0.50672305,0.13290733,-0.5370665,-0.85407674,0.5771161,-0.11009837,0.19502665,0.10802027,0.34389764,0.3622891,-0.25252914,-0.0004225442,-0.17275651,-0.09322837,-0.411943,-0.26157823,-0.70001674,-0.6991305,0.087468,1.0317847,-0.08680169,-0.09025183,0.2368667,-0.07422949,0.066972956,0.1736159,0.13329722,-0.11561342,0.6079198,-0.03914146,-0.74422234,0.23560473,-0.1634404,-0.059258167,-0.77120155,0.117036976,0.5937564,-0.7975627,0.6656247,0.4609186,0.26064113,0.05778189,-0.5411657,-0.0382387,0.11309851,-0.2718464,0.5710816,0.2621617,-0.71043456,0.5227605,0.5536754,-0.37782127,-0.7455124,0.52486044,0.13162807,-0.295001,-0.23399813,0.43307146,0.12517022,0.036895525,-0.27377972,0.10131982,-0.4844515,0.15312037,0.41669592,-0.13230282,0.4321281,-0.115437835,-0.29926512,-0.83477604,0.028496174,-0.75535995,-0.26262662,0.14925858,0.012130146,-0.023573894,0.3343112,0.276681,0.4183663,-0.3268552,0.1017601,-0.18689553,-0.2510595,0.34862298,0.4012205,0.4382618,-0.56337047,0.4973888,-0.025477936,-0.26555318,-0.013686483,-0.026389189,0.6149932,0.16957259,0.38443896,0.1544477,-0.046199992,0.17704208,0.74978226,0.055890806,0.50403196,0.26652384,-0.21165265,0.124904856,0.21259366,0.1078667,0.081207946,-0.54425466,-0.11983066,-0.083391465,0.17777555,0.6614793,0.10094023,0.34304053,-0.017908413,-0.43919343,-0.020569097,-0.13427125,-0.19107917,-1.368451,0.44942415,0.23151618,0.76344675,0.52637947,0.020966705,0.20293695,0.40701932,-0.13489811,0.24328288,0.40072414,-0.048508175,-0.3943331,0.5939646,-0.56231296,0.20791976,-0.14381371,0.16351369,-0.039091494,0.19047128,0.46055558,0.91129464,-0.076583356,0.17490432,0.009068801,-0.21477437,0.041842666,-0.31192172,0.04592686,-0.50276566,-0.21634547,0.7642482,0.44894093,0.25810283,-0.37086105,-0.16248274,0.15632048,-0.263058,0.16036397,-0.14968544,-0.04065569,-0.048154082,-0.6184671,-0.4741193,0.46356437,0.40797022,0.04752457,-0.1598956,-0.34218377,0.118416786,-0.16760992,-0.00096674147,0.0056311246,-0.7776107,-0.078091934,-0.64183545,-0.50783986,0.41410348,-0.14953612,0.04893573,0.11869872,0.13156503,-0.26628283,0.3752616,-0.15102202,0.56065714,-0.14909206,-0.22310577,-0.38593516,0.12751627,0.2796696,-0.3007387,-0.09337719,-0.13974518,0.068078466,-0.4777601,0.5678106,-0.03353001,-0.15303499,0.2610215,-0.12175167,-0.20154946,0.45454937,-0.38770214,0.02140938,0.5736424,-0.03511935,-0.28117552,-0.30056044,-0.15627591,0.14992502,0.0017349261,-0.17072707,-0.13238509,-0.2949699,-0.13870409,0.45483023,-0.004882914,0.31341824,0.729675,0.06389495,-0.4454529,-0.17112017,0.34222284,0.5090816,-0.047526654,-0.1697773,-0.4950039,-0.63421685,-0.23196441,0.18110111,-0.1617987,0.21124576,-0.021243356,-0.47490677,1.0311421,0.41695812,1.5857877,-0.038835023,-0.42403713,-0.0007850757,0.52322435,-0.20251355,-0.12597202,-0.66272247,1.0276127,0.7515841,-0.24429336,-0.051471952,-0.47109926,-0.008895571,0.1745427,-0.2404446,-0.1289836,-0.12360231,-0.65762943,-0.5666187,0.41103265,0.43423763,-0.04808955,0.03188977,0.3063928,0.1022567,-0.033145946,0.4241234,-0.7359779,-0.12615083,0.15128794,0.35059786,-0.025563817,0.16047262,-0.42364818,0.36500916,-0.65592915,0.031090068,-0.33583933,0.09306185,0.058868177,-0.45141622,0.25149286,0.03858445,0.24463296,-0.2710246,-0.28321522,-0.03956846,0.48835355,0.09959461,0.3811247,0.77533305,-0.24568497,-0.062173586,-0.048842136,0.7581886,1.547075,-0.12679799,0.013974025,0.35437062,-0.20751128,-0.84879875,0.3645264,-0.44805315,0.20209168,-0.11382373,-0.46055302,-0.7126506,0.36525455,0.17148891,-0.103066646,0.16686517,-0.5187588,-0.32089284,0.27442205,-0.34299326,-0.34455353,-0.13595083,0.1449195,0.6678285,-0.14577499,-0.1823031,0.1901094,0.6030527,-0.19870917,-0.46693894,-0.13887091,-0.40978792,0.27147454,0.3433804,-0.4195655,-0.0061198175,0.16662183,-0.45784152,0.18251991,0.46311796,-0.36819017,0.07564764,-0.27950227,-0.12591584,0.8958903,-0.10154344,0.14239345,-0.71850914,-0.43789288,-1.0065333,-0.28570315,0.3622952,0.31470916,-0.013497064,-0.6962319,-0.01836399,-0.20805773,-0.033435643,0.16873714,-0.46201563,0.45254377,0.08332557,0.7081634,-0.006499449,-0.616565,-0.11935397,0.3703542,-0.25190586,-0.58371484,0.6499217,-0.060229477,1.0549363,0.07368198,0.05535023,0.27839822,-0.516945,-0.011126929,-0.3413078,-0.22689596,-0.9641348,0.024075674,437 -673,0.485247,0.0043414007,-0.6685237,-0.21352641,-0.40758988,0.17650819,-0.27452457,0.23784432,0.4444237,-0.36991942,0.09494973,-0.21820904,-0.060878165,0.5692195,-0.18995331,-0.8637247,0.14101173,0.025128208,-0.49103683,0.47477716,-0.45755246,0.49886888,0.03396411,0.16312529,0.004781017,0.2817515,0.3930367,0.041042082,-0.20779133,0.13561901,-0.19091848,-0.053238086,-0.5029004,0.27362078,0.061738424,-0.29197255,-0.021176614,-0.35836363,-0.08599463,-0.73456997,0.4784292,-0.7241261,0.5193309,-0.06270626,-0.311959,-0.0046464778,0.10338247,0.24914683,-0.2071464,0.123322435,0.08684121,-0.30307385,-0.1291776,-0.033102877,-0.5634336,-0.74028516,-0.5587965,-0.1748084,-0.7578685,-0.4090059,-0.2855181,0.22884512,-0.37735793,-0.075967446,-0.14729854,0.4272785,-0.35649619,-0.12715359,0.47462323,-0.35063455,0.037486788,-0.6534409,-0.2042594,-0.069409214,0.15899856,0.1193982,-0.043166663,0.4029628,0.521333,0.47049764,0.13976699,-0.30167925,-0.3663883,-0.091957025,0.052955493,0.6764934,-0.103090316,-0.35207382,-0.2740854,-0.053694017,0.3518866,0.2214871,0.29306948,-0.5355798,0.02751874,-0.021527352,-0.24458398,0.41533008,0.39375132,-0.58528477,-0.09875413,0.50483763,0.45124233,-0.04904637,-0.28552377,0.26481444,0.022780117,-0.5728291,-0.15863213,0.22075336,-0.015374182,0.5386541,-0.10961143,0.24914843,0.7066634,-0.13523905,-0.00029112742,-0.06522195,0.011734105,-0.20330484,-0.4432185,0.13674006,0.01915687,-0.40055263,-0.053598188,-0.17671126,0.8899583,0.23302096,-0.8331309,0.28496143,-0.4936542,0.12586437,-0.09423984,0.56273806,0.7031486,0.37035766,0.20623438,1.137501,-0.6514828,0.06984392,0.047415607,-0.37240976,-0.027138757,-0.15116161,0.3720881,-0.54222214,0.29493657,0.07307046,-0.05811197,0.15804185,0.50542676,-0.39488634,-0.16088662,0.0395009,0.7697967,-0.35463068,-0.19944994,0.8848139,1.1215907,1.0079507,-0.010421372,1.1154046,0.4251995,-0.14353971,0.13389063,-0.3776441,-0.52690357,0.15406948,0.3838608,0.2820007,0.4593526,0.11316391,-0.08989389,0.4262822,-0.0040004435,-0.08257527,0.029623875,0.21428178,0.23326954,-0.38131857,-0.3684977,-0.14844412,0.20369056,0.018656693,0.0337369,0.2551401,-0.111694776,0.48538658,-0.09606384,1.2800355,-0.044903442,0.13211703,0.03807422,0.47735244,0.35995322,-0.18644808,0.1048622,0.35580748,0.037976284,-0.098353535,-0.54555243,-0.12087718,-0.43621433,-0.6133834,-0.2107076,-0.34706512,-0.1403621,0.05138165,-0.4135072,-0.17513545,-0.02343334,-0.20567696,0.44862556,-2.429279,-0.24117756,-0.3163361,0.22459888,-0.26769277,-0.2644487,-0.19746603,-0.44577476,0.2253631,0.5170727,0.31669915,-0.63489217,0.32318476,0.39753723,-0.32910424,-0.16087349,-0.56885254,0.22624056,-0.22289507,0.32924125,-0.095580466,-0.28709444,-0.04428902,0.4113738,0.73392105,0.19618203,0.048568264,0.16330811,0.49331105,-0.11279682,0.39692357,0.06722696,0.7416235,-0.22851898,-0.07532215,0.30896047,-0.6729359,0.33914706,0.12139844,0.27612692,0.47510454,-0.3337645,-0.7700857,-0.74568206,-0.3158589,1.044056,-0.38119236,-0.6142638,0.40907434,0.09858379,-0.17933351,0.1309445,0.5151983,0.06093091,0.08174033,-0.4219778,0.1736193,-0.08106131,-0.023865167,-0.105890475,0.12078448,-0.30267906,0.91629535,-0.28396687,0.53451765,0.3473738,0.32077855,-0.25718427,-0.4244626,-0.11120706,0.8554833,0.37244096,0.026545128,-0.10691199,-0.33676192,-0.36154124,-0.5077143,0.23047742,0.48581746,0.6688188,-0.0015428525,0.0617426,0.20724975,-0.14985856,0.08643313,-0.020087687,-0.44149435,0.04160236,0.24331619,0.38553318,0.5293969,-0.30783242,0.44087765,-0.03638666,0.044140026,-0.2618068,-0.6703721,0.5000834,0.7343339,-0.26181757,-0.3658133,0.54791903,0.22344956,-0.5563473,0.37938398,-0.59984964,-0.40548736,0.7549485,-0.043925084,-0.44383985,-0.17947637,-0.35535944,-0.059997056,-0.96744245,0.30279535,-0.15956838,-0.6495912,-0.1824008,-0.21672112,-4.180641,0.24746698,-0.18257199,-0.020810418,-0.11896049,0.10025667,0.15779728,-0.6029278,-0.6436932,0.07802306,0.026834704,0.5756963,-0.14211956,0.25055137,-0.38609907,-0.21900247,-0.29609525,0.3000382,-0.35307053,0.30146366,0.09234962,-0.28335613,0.21042845,-0.24320854,-0.62977284,0.0035853845,-0.64074904,-0.5285683,-0.35799712,-0.60103595,-0.29863638,0.7760714,-0.5007838,-0.1321781,-0.24876657,0.111090675,-0.29888007,0.33356205,0.058104806,0.16541924,0.17708908,-0.09795807,-0.24763478,-0.3685368,0.151248,0.061328277,0.38763964,0.62000334,-0.24504837,0.21985278,0.6773929,0.72221076,0.122829914,0.65240216,-0.062831916,-0.104679376,0.4078678,-0.29241246,0.06694013,-0.70285076,-0.5747268,-0.16166057,-0.3048851,-0.65630764,-0.12728237,-0.3658625,-0.74127614,0.35748026,0.005031251,0.45083907,-0.16038436,0.31320125,0.41068667,-0.19349931,0.097098716,-0.096140094,-0.31562713,-0.52201414,-0.41491443,-0.5418399,-0.6298775,0.5614052,1.1712998,-0.23642081,-0.2976967,-0.03390995,-0.35522687,-0.030276863,0.09433972,0.38273457,-0.022976449,0.13722128,-0.18877324,-0.6615481,0.31324846,-0.30363813,0.04507725,-0.59962773,-0.03274681,0.62007916,-0.3885497,0.6405719,0.3278538,0.35334486,-0.023179086,-0.71999687,-0.2060319,0.24599259,-0.25770712,0.43900216,0.19988228,-0.72777873,0.41356614,0.21931693,-0.36782554,-0.68783367,0.33416286,0.041782938,-0.044880025,0.024439814,0.5250081,0.38382715,-0.20076095,-0.24176401,0.17190988,-0.81844294,0.26204255,0.35004342,0.1186292,0.47828716,-0.033258773,-0.46562326,-0.64337784,-0.31790775,-0.4704027,-0.023201855,-0.019271655,-0.1132394,-0.03771758,0.167146,0.005620287,0.38889438,-0.36632305,0.1678196,-0.007176116,-0.23741072,0.53224856,0.47694808,0.4231323,-0.5312511,0.5669666,0.08779128,-0.06626884,-0.1489126,-0.032936696,0.5252885,0.44445023,0.47036636,0.13467671,-0.049259756,0.10347022,0.65882504,0.17801629,0.27657107,0.3323847,-0.4681301,0.32280633,0.22204576,0.23031163,-0.016404454,-0.34708288,-0.050741013,-0.08330921,0.14175545,0.42693627,0.10681115,0.4348561,0.07636157,-0.16166207,0.20683138,-0.037503753,-0.17323126,-0.98867184,0.19055654,0.34415627,0.65561163,0.40602282,-0.1217876,-0.045260847,0.46317494,-0.120214224,0.0363632,0.42035824,-0.13214476,-0.46769845,0.6375612,-0.5170876,0.52550954,-0.34520978,-0.0091617685,0.22907932,0.4261598,0.4439511,0.89328796,-0.026746068,-0.11067902,-0.14813076,-0.3435227,0.010945604,-0.22495954,-0.02250613,-0.6042405,-0.3223549,0.5291316,0.37122443,0.28027427,-0.13704677,-0.16178177,0.085061185,-0.12039178,0.08672089,-0.14089411,-0.075613946,-0.13252316,-0.5522129,-0.3583531,0.5531991,0.018094879,0.124629006,0.054190297,-0.5094563,0.30776012,-0.23130593,-0.03958466,0.04680644,-0.6660362,0.025671657,-0.12396525,-0.6889356,0.31032938,-0.29198864,0.35486662,0.30839756,-0.06192287,-0.33086756,0.13960132,0.15503179,0.7904078,-0.11644996,-0.25305793,-0.19886167,0.013502995,0.3735131,-0.2796953,0.24916172,-0.1576067,0.085004956,-0.657047,0.55639803,-0.20558816,-0.19248103,-0.054465856,-0.23280217,0.037987083,0.5159959,-0.40039107,-0.12541538,0.005434201,0.083061926,-0.2814517,-0.07019133,-0.37459657,0.30845448,-0.16553503,-0.09464316,0.03981433,-0.12945086,0.12837654,0.1353485,-0.034876235,0.019046064,0.31557512,0.035173073,-0.54712117,0.047127146,-0.025982866,0.47800383,0.19110085,-0.061841767,-0.15661833,-0.41793522,-0.3857941,0.1230884,-0.14257553,0.14751954,0.1103328,-0.5462559,0.83856785,0.1851391,1.5081303,0.049803182,-0.40658945,-0.016731624,0.6592922,0.15729618,0.006747594,-0.2969438,1.0811101,0.82577455,-0.19677837,-0.051018815,-0.45009026,-0.20755032,0.41088134,-0.26441583,-0.12768196,0.028915482,-0.7163648,-0.1933129,0.1758218,0.13619806,0.16561641,-0.13288862,0.014430372,0.13001864,0.23516542,0.45016322,-0.5772079,-0.10859848,0.19313985,0.38345426,0.18851644,0.21921586,-0.30770552,0.3492072,-0.96364397,0.51543033,-0.35154134,0.14911814,-0.21266721,-0.23335227,0.2644347,0.12295545,0.38488537,-0.15025336,-0.30714417,-0.22478789,0.7459749,0.29954857,0.23244601,0.80649704,-0.23227455,-0.14514852,0.15511513,0.6412251,1.4388934,0.07525494,0.10602948,0.3412417,-0.3494228,-0.8430548,0.35692424,-0.41883674,-0.027863191,-0.2724819,-0.30754215,-0.5383139,0.36519668,0.27827072,-0.08971365,0.12452033,-0.40411553,-0.19630986,0.18058299,-0.43087527,-0.3106357,-0.25657827,0.3074649,0.79886335,-0.27885675,-0.31470346,0.14282772,0.33825353,-0.26273614,-0.72789484,0.19848411,-0.069204554,0.51959634,0.1355978,-0.41478425,-0.07530038,0.41146183,-0.47153336,0.16838612,0.21643063,-0.39127886,0.24102004,-0.2850303,-0.13219628,0.9475636,0.1734081,0.31733516,-0.8650701,-0.49942896,-0.9296262,-0.44658133,0.17931238,0.08049662,-0.07278144,-0.5230908,-0.26551184,-0.12037408,-0.031718757,0.08815916,-0.4817053,0.3060169,0.096583486,0.5620501,-0.086324915,-0.92814076,-0.12285091,0.3268748,0.019543162,-0.4610194,0.45040348,-0.23268813,0.90794855,0.19845137,-0.035904467,0.22537793,-0.55367124,0.6424609,-0.33056927,-0.23331903,-0.53075844,0.07429405,443 -674,0.31775296,-0.26094893,-0.31158227,-0.18869501,-0.34846622,0.06771515,-0.31666982,0.33806604,0.34535885,-0.321214,-0.24862,0.0019840049,0.09811905,0.42159575,-0.065914825,-0.7210322,-0.007820975,0.22618745,-0.5958513,0.32731935,-0.65761435,0.24715398,-0.0778516,0.6115893,0.05852376,0.22010945,0.07049276,-0.033442155,0.01939993,-0.21228665,-0.11083104,0.2819102,-0.4119728,0.08135504,-0.13145664,-0.2980518,0.06249954,-0.44456804,-0.24066192,-0.76677394,0.13960534,-1.0621413,0.5383878,-0.12070815,-0.26759106,-0.06932437,0.28170684,0.4420411,-0.26102227,0.045569222,0.19510658,-0.3621216,-0.20418602,-0.3224363,-0.08580538,-0.40113434,-0.41553614,-0.10470249,-0.44978014,-0.3383026,-0.13708168,0.33238205,-0.27477723,-0.0012547832,-0.2488514,0.4627851,-0.37541336,0.03964958,0.41564038,-0.35035425,0.4403071,-0.58147216,-0.059322033,0.06830864,0.47275653,-0.029638309,-0.28997672,0.2708866,0.29315156,0.46785113,0.291989,-0.30154794,-0.17243978,-0.19146544,0.15170583,0.56940895,-0.16067241,-0.23055403,-0.3602092,-0.03647759,0.3150287,0.46166795,-0.05405335,-0.1552737,0.097618334,-0.03464895,-0.08507493,0.58772254,0.48397115,-0.093483485,-0.29393142,0.20503443,0.6611271,0.09708112,-0.22975746,0.08745679,0.14001034,-0.49299335,-0.041201968,0.19672343,0.024487164,0.45294783,-0.21194217,0.13333386,0.8114897,-0.16576406,0.04505894,-0.011974137,-0.030524896,-0.07913871,-0.53166735,-0.3746743,0.2644832,-0.6216767,0.008693819,-0.3152076,0.6987618,0.23161793,-0.521272,0.3538593,-0.48958254,0.182944,-0.122146234,0.64139336,0.53598714,0.37719554,0.3630648,0.7413304,-0.2500344,0.1721227,-0.011007804,-0.2434925,-0.042971566,-0.24664123,0.39373624,-0.43198237,0.1749422,-0.1423545,0.016806375,-0.049789328,0.3605434,-0.5435186,-0.17561309,0.2903525,0.89848715,-0.3469447,0.06491917,0.8639441,1.1176524,0.98090863,0.03636748,1.1962234,0.4707096,-0.18425813,0.04345923,-0.2557533,-0.5856683,0.21715161,0.30035856,0.3021217,0.16840726,-0.053963706,-0.16218759,0.50229144,-0.5766569,0.021089297,-0.07605482,0.33505294,0.06960113,0.13637096,-0.72911304,-0.10121008,0.021925509,-0.15545066,0.32902193,0.19950558,-0.34110418,0.37076366,-0.16240758,1.1432393,-0.17735669,-0.004385444,0.020679392,0.53316456,0.16048545,-0.17992106,-0.0111224195,0.33959547,0.46714866,0.008464665,-0.7050706,0.22280714,-0.35783303,-0.25953162,-0.2364893,-0.34859657,-0.055700354,-0.088541284,-0.2716292,-0.11298061,-0.11360179,-0.32003242,0.3549539,-2.5773401,-0.44098407,-0.27841222,0.42574304,-0.28799555,-0.11547558,-0.0836029,-0.5502931,0.38981885,0.23731057,0.4382539,-0.5706472,0.545524,0.45442247,-0.42313382,-0.21635665,-0.8460305,-0.1071745,-0.079247594,0.39512417,0.104439825,-0.1723218,-0.2869845,0.11064012,0.72092474,0.2516452,0.15551361,0.39806592,0.42718336,0.1102177,0.43397078,-0.07170902,0.7044496,-0.35139766,-0.21774855,0.3307111,-0.3636074,0.23921365,-0.28760365,0.0581753,0.52770287,-0.4928393,-0.8271971,-0.68007284,-0.44839033,1.0544404,-0.33241192,-0.60230696,0.22953483,-0.33746687,-0.18982808,0.11948211,0.6776642,-0.19478893,0.08617341,-0.7797755,0.009251283,-0.101440795,0.3055056,-0.007144991,0.0887808,-0.45102146,0.62998366,-0.26578647,0.52547073,0.13709033,0.38796943,-0.18431237,-0.3479772,-0.034583256,0.7525662,0.30479863,-0.09295569,-0.18203816,-0.2095051,-0.12035535,-0.28118312,-0.11446287,0.7015908,0.95960575,-0.1756986,0.043226577,0.3693024,-0.1890871,0.049935397,-0.069826275,-0.4087585,-0.09242965,0.08913871,0.60724723,0.6490078,-0.044711158,0.5186022,-0.28915185,0.44968364,-0.09783312,-0.48961037,0.57724464,0.4120841,-0.27132368,-0.13646805,0.6830301,0.39564344,-0.46056396,0.5497413,-0.68786967,-0.17312358,0.5247046,-0.19673918,-0.55381817,0.032662775,-0.229969,0.21508214,-0.8018962,0.36882657,-0.35323972,-0.80512416,-0.4919418,-0.112516046,-3.199869,0.20337193,-0.16102156,-0.17168981,-0.35152197,-0.16384986,0.30217865,-0.43703586,-0.5433909,0.23316155,0.13722438,0.6843436,-0.021971872,0.100931995,-0.37283498,-0.055759218,-0.14064252,0.17623329,0.19304046,0.29138476,-0.18348394,-0.348692,0.18342489,0.06749316,-0.5670413,0.25770137,-0.79599184,-0.49480432,0.011123311,-0.61663944,-0.350367,0.58341277,-0.29466817,0.11609154,-0.4042588,0.08426892,-0.15682386,0.2638562,-0.0019249412,0.3237027,0.2920397,-0.10212234,0.16165172,-0.25636894,0.42089036,0.037186936,0.192533,-0.056698818,0.04820961,0.17688663,0.48056236,0.6713157,-0.07856148,1.1383383,0.497403,-0.06962201,0.2141835,-0.34968597,-0.35318547,-0.44583386,-0.31388718,0.03135946,-0.51581985,-0.36659703,0.0516217,-0.24899629,-0.7910677,0.6925825,0.058531098,0.3992248,-0.08063236,0.31554604,0.4746037,-0.107280605,-0.057335734,0.0028319359,-0.111283064,-0.54763603,-0.21124572,-0.7277061,-0.52063346,0.005637311,0.73927283,-0.29359025,0.18426742,-0.042886432,-0.37946707,-0.006605524,0.25527093,-0.02851467,0.26463726,0.55561966,-0.011506532,-0.58869636,0.22255662,-0.07998076,-0.020131115,-0.68289757,0.31245774,0.9508381,-0.7739235,0.7555733,0.3999079,0.002271799,-0.46685395,-0.5313122,-0.2848589,0.007977901,-0.16923593,0.53920263,0.20156266,-0.77693707,0.53925526,0.33825487,-0.31568938,-0.7342988,0.22335282,-0.12830704,-0.20078476,0.017235804,0.45956853,0.056490548,-7.183047e-05,-0.124919586,0.170475,-0.40809435,0.23538457,0.13545324,-0.021789696,0.5556838,-0.283248,-0.20505752,-0.8110436,-0.26268953,-0.74316597,-0.1797498,0.21620625,-0.1305972,-0.088985406,0.4031298,0.07676677,0.33248076,-0.15035945,0.071418256,-0.11536017,-0.5128311,0.24512321,0.51216686,0.31588003,-0.3592555,0.49748024,0.21723141,-0.23596133,-0.009441743,-0.069044836,0.43912596,-0.11493439,0.5826193,-0.30698746,-0.13086475,0.30180484,0.729714,-0.0016785952,0.58818465,0.15314198,-0.025853492,0.42638677,0.0074959374,0.26606253,-0.12407037,-0.42537454,0.12806326,-0.13858546,0.1629701,0.456514,0.4441897,0.4549408,0.19438614,-0.23640466,0.040449567,0.0542379,-0.14360216,-1.3153762,0.49639946,0.14995535,0.91677475,0.20994934,0.17483534,-0.20751542,0.80751103,-0.20704561,-0.0061231647,0.400502,-0.036340214,-0.34785938,0.81132066,-0.7115246,0.3269189,-0.1536069,0.059504632,0.098078646,0.23362881,0.5916054,0.8249401,-0.21246068,0.08428958,-0.17779145,-0.1415815,0.24393202,-0.34338155,0.02733371,-0.47410455,-0.42819244,0.64499164,0.49934208,0.4974969,-0.25002232,-0.06554249,0.18764642,-0.09011444,0.18237805,0.008975405,-0.21707663,0.12055845,-0.5931434,-0.22049332,0.41977268,0.16553035,0.1745143,-0.271326,-0.18981703,0.029951163,-0.23180848,-0.027987314,0.110027395,-0.7152669,-0.15154602,-0.32138056,-0.5927433,0.32510248,-0.32899,0.019615779,0.12420234,-0.056672275,-0.15623657,0.22346023,0.07495691,0.8892823,0.15898988,-0.35814795,-0.35005695,-0.07411974,0.27747294,-0.3668146,0.21223995,-0.40030134,0.10291011,-0.5930008,0.6753298,-0.22765735,-0.6249949,0.31814435,-0.18503761,-0.043029826,0.5601779,-0.18575518,-0.09699166,0.1675646,-0.3753994,-0.5197648,-0.103348345,-0.15689792,0.09394082,0.22930224,-0.0081413435,-0.107883126,-0.30113876,-0.13179371,0.73606193,0.039467867,0.5020966,0.32894993,0.10980633,-0.15354347,0.09481346,0.20491236,0.48118034,0.070934765,-0.03966316,-0.27563402,-0.42394587,-0.17553216,0.37230375,-0.078445986,0.3201185,-0.055463262,-0.25897396,0.9974226,-0.02795225,1.1427633,0.167898,-0.4079812,-0.0283702,0.47520602,-0.14206146,0.14779924,-0.5626677,0.9214709,0.42156792,-0.15215525,-0.0031007002,-0.6823338,-0.08716936,0.4458024,-0.3803844,-0.16350761,-0.22107047,-0.5391937,-0.45701107,0.22119392,0.29054788,0.13832054,-0.05974218,0.22312453,0.037745424,-0.03996312,0.5160236,-0.7479038,0.06396696,0.26834112,0.30673763,-0.1256903,0.20734136,-0.27858686,0.35024974,-0.6511807,0.25009197,-0.45143697,0.072189234,-0.12102992,-0.41380385,0.0939062,-0.013218238,0.28861356,-0.35868707,-0.3573934,-0.035168573,0.5481341,0.1609227,-0.08812037,0.62080574,-0.25981238,-0.036862765,0.3061132,0.6906332,1.4061285,-0.41452742,0.21216947,0.18204363,-0.32140678,-0.71834767,0.4594557,-0.24786161,-0.06779928,0.078320034,-0.53278226,-0.5159509,0.2755449,0.21025041,-0.03929036,0.114645004,-0.32336596,-0.16473685,0.3588672,-0.18483308,-0.16480957,-0.14165942,0.3561265,0.4750689,-0.093848154,-0.41444975,-0.07290498,0.47399923,-0.41826135,-0.4510756,-0.055969957,-0.25259262,0.2986693,-0.034806512,-0.4405944,-0.004802915,-0.04155689,-0.5511641,-0.03821,0.16659945,-0.32618284,0.16099548,-0.17391841,-0.10656948,0.82006043,-0.23455109,-0.060668927,-0.892333,-0.39324972,-0.79532564,-0.34494463,0.11223333,0.25855976,-0.010060411,-0.34879196,-0.020921864,-0.11166002,-0.1482924,0.21244122,-0.60038143,0.33814475,0.19472449,0.6924775,-0.31201616,-0.9171763,0.15879598,0.13306859,-0.2692621,-0.66661584,0.65257955,-0.093483254,0.7942658,0.025384229,-0.017131723,-0.08094602,-0.27514946,0.07095078,-0.24735834,-0.3030843,-1.032845,0.026638445,444 -675,0.3301438,-0.05799749,-0.362448,-0.1857623,-0.3572312,0.025461279,-0.023666332,0.2892419,0.28478742,-0.2938921,0.030903433,-0.045293573,-0.1313643,0.41271222,-0.20923378,-0.7574931,0.009242635,-0.0026604282,-0.53017414,0.41547197,-0.5801066,0.48745254,0.1361002,0.321324,0.03353852,0.45401588,0.14667697,-0.10077845,0.12746678,-0.07093073,-0.29771677,0.1357124,-0.7019405,0.28425044,0.05598315,-0.42288935,0.10710887,-0.16662839,-0.3639027,-0.67318684,0.33565575,-0.7310867,0.4797632,-0.0877241,-0.4327467,0.057812627,0.013744042,0.2650584,-0.515566,0.160434,0.22926015,-0.3466136,0.13608658,-0.24637042,-0.15832397,-0.60320055,-0.5153641,-0.11087206,-0.69501466,-0.20430769,-0.41383302,0.07825167,-0.44732088,-0.06572421,-0.2717387,0.22576721,-0.5718497,0.055451386,0.1777387,-0.2292194,0.18172154,-0.44452494,-0.064650305,-0.15238704,0.0136438245,0.07826675,-0.19995125,0.35081628,0.2234385,0.4894738,0.13797212,-0.30219883,-0.2669218,-0.088284954,0.11415741,0.3677792,-0.1787369,-0.23627752,-0.14348923,0.015440033,0.21850745,0.29388723,-0.10655432,-0.23296162,0.016139291,0.09815183,-0.30564138,0.12701806,0.50350803,-0.39646527,-0.3159811,0.39116016,0.41698247,-0.068348534,-0.19756548,0.31465304,-0.08549142,-0.3522324,-0.34252757,0.12761018,-0.11809046,0.46818113,-0.29933923,0.07725472,1.0254763,-0.22797664,0.14426902,-0.002442516,-0.061798036,-0.1645396,-0.10224971,0.0014219009,0.09505264,-0.54800624,0.08718816,-0.23257521,0.87866944,0.25730184,-0.80013824,0.26328242,-0.46679562,0.18590964,-0.23801933,0.67962843,0.6161717,0.5199961,0.22378229,0.87082756,-0.7078181,0.07487812,-0.0028225183,-0.46716434,0.29397076,-0.19562244,-0.05342454,-0.47377008,-0.027267141,0.025816638,-0.11608425,-0.09068264,0.23807128,-0.45954356,-0.008285478,0.055912517,0.7135928,-0.4277808,0.05269042,0.64124244,0.93718207,0.95596606,0.030071642,1.2739428,0.27818006,-0.18458678,0.19099143,-0.34745884,-0.61233276,0.09690477,0.29818627,0.28603938,0.25659496,0.22274843,0.25349864,0.35952708,-0.26320145,0.1251688,-0.16268298,0.41663292,0.07374985,-0.20944987,-0.33335197,-0.2605795,0.14384024,0.15690099,-0.24436334,0.40682977,-0.0013172626,0.5328356,0.24315813,1.5330198,0.12785104,0.11895464,0.101556465,0.55401105,0.22011669,-0.028640104,0.11562324,0.350865,0.36118692,0.14825012,-0.65650874,0.08113357,-0.30637205,-0.4879937,-0.09742875,-0.40558308,-0.026201276,-0.2206788,-0.5238428,-0.19514205,0.04135535,-0.21830927,0.39687032,-2.3684602,-0.068123825,-0.08970575,0.25373796,-0.25626764,-0.2049509,-0.037758622,-0.4376983,0.23375462,0.4751292,0.43151143,-0.7670355,0.5478519,0.62860847,-0.33507058,-0.056675933,-0.69246453,-0.19909027,-0.1260442,0.40697733,0.029574784,-0.057747737,-0.20399164,0.16146412,0.6527523,0.07347828,0.011310701,0.14507146,0.4817282,-0.04614521,0.64948857,0.2428446,0.5209173,-0.23033029,-0.0922881,0.3511193,-0.5626067,0.3185215,0.16859378,0.1461399,0.37153932,-0.5115524,-0.9778005,-0.65134454,-0.39028805,1.2296449,-0.4275595,-0.3817506,0.4854833,-0.20546053,-0.17253676,-0.14427406,0.29211673,-0.15100926,0.10114642,-0.65511763,0.0845307,-0.10541716,0.2310145,0.053189296,0.09416811,-0.18643287,0.8386864,-0.17086774,0.53447497,0.25746426,0.028994897,-0.16299655,-0.41096142,0.058737405,0.75640047,0.45998973,0.18662664,-0.14268751,-0.23647976,-0.0639218,-0.2526679,0.20245332,0.5115295,0.7350186,-0.0737997,0.08764219,0.4728443,-0.34669253,-0.13002037,-0.1946997,-0.30031088,0.04086314,0.1422176,0.5030493,0.67735183,-0.21378352,0.36786813,-0.05304054,0.2625193,-0.07088391,-0.57044023,0.31849656,0.79808533,-0.11051871,-0.122977294,0.41869593,0.38307902,-0.43293285,0.3518655,-0.6163082,-0.30466366,0.63950866,-0.094384395,-0.4763173,0.026503874,-0.307787,0.0006611164,-0.847664,0.39086834,-0.17610455,-0.74927926,-0.5918395,-0.15227804,-4.075387,0.12066886,-0.34827328,-0.14192544,-0.0886596,-0.07536221,0.35421717,-0.66401,-0.5937834,0.016477294,0.14002842,0.43647954,-0.058860525,0.20846651,-0.34249938,-0.11822777,-0.36950037,0.27569273,0.07009168,0.14732073,-0.04733136,-0.49387008,-0.010497142,-0.16614777,-0.5511928,0.100560896,-0.5371224,-0.5863913,-0.050981965,-0.43553653,-0.29457834,0.75727314,-0.30655175,-0.060664956,-0.19670913,-0.15486775,-0.41282666,0.3097812,0.27790377,0.0022927339,0.026885888,0.123032495,-0.21496163,-0.44424164,0.22725056,0.038996115,0.6173325,0.26690868,-0.19555381,-0.046963587,0.8159891,0.46747193,0.10895968,0.7594201,0.21361175,-0.27091837,0.36174032,-0.40474504,-0.36222076,-0.78342086,-0.45355394,-0.2366476,-0.39680687,-0.41935742,-0.032501265,-0.3939802,-0.8340596,0.37216902,0.18729807,0.08867662,-0.13892218,0.17889251,0.36352703,0.001074227,-0.016688792,-0.06290685,-0.30125666,-0.65586627,-0.33132035,-0.7031266,-0.5509686,0.27698243,1.1302558,-0.18500353,-0.22842811,-0.09260245,-0.26199603,0.09675415,0.13273802,0.14504658,0.15512034,0.327288,-0.15093468,-0.69573694,0.42206606,0.010846524,-0.010488739,-0.63878834,-0.05319556,0.6737659,-0.8102448,0.60880417,0.25380775,0.1708728,0.21242288,-0.52978665,-0.38058552,-0.12804028,-0.19213493,0.5843451,0.090385355,-0.72086704,0.4450924,0.21728148,-0.2454984,-0.47598425,0.41801125,-0.19954681,-0.26337355,0.04637233,0.331397,0.086971596,-0.14868739,-0.015267821,0.3124832,-0.58651245,0.3099853,0.42103237,0.042925224,0.23889884,0.048185505,-0.23584089,-0.7306947,-0.105120294,-0.43842635,-0.20420827,0.01601196,0.011802018,-0.11825115,0.19637749,0.030728515,0.43981138,-0.120493904,0.20020793,0.012540267,-0.3699552,0.49777886,0.5107728,0.3901853,-0.5080644,0.6010668,0.13988239,0.08085366,-0.071878664,0.11887249,0.45343935,0.27008596,0.40581873,0.011862149,-0.1557396,0.29732907,0.88525933,0.299407,0.54940116,0.16208468,-0.052687425,0.48375386,0.2880503,0.0939887,0.0126855625,-0.29984114,0.15834895,0.05851018,0.19047818,0.3874116,0.18392506,0.37420136,-0.029034039,-0.14473857,0.15355161,0.29026276,-0.20086497,-1.0890921,0.24478468,0.3342385,0.65418994,0.6023856,0.07615674,0.01491503,0.6412825,-0.3585664,0.017917361,0.40277264,0.07762267,-0.52709484,0.63234144,-0.70890427,0.56015795,-0.09682166,0.015209248,0.056013525,0.26932067,0.3170888,0.9555155,-0.085676245,-0.08860305,-0.02998802,-0.2961182,0.10093163,-0.5840883,-0.014304831,-0.3975647,-0.2938866,0.53956914,0.38306206,0.28925183,-0.27572298,-0.05053238,-0.08316494,-0.09468583,0.21672784,-0.10783399,-0.06857881,-0.193973,-0.44847664,-0.39851972,0.56201404,-0.19398531,0.18265317,0.04001806,-0.29957274,0.4776603,-0.06005407,-0.2557068,0.013874018,-0.50956947,0.16423562,-0.16166672,-0.44605345,0.37077075,-0.33782685,0.3507687,0.22830346,-0.017662225,-0.41821223,0.11543691,0.1521994,0.58024305,-0.0807069,-0.28255317,-0.317862,-0.004157126,0.1763691,-0.35117263,-0.012450475,-0.32457352,0.07641862,-0.5481892,0.314403,-0.22384971,-0.3187825,0.025647182,-0.2983886,-0.10276516,0.34724584,-0.25298178,-0.25566402,0.0055901823,0.008572074,-0.21536806,-0.14598408,-0.38670304,0.36598447,-0.08592938,-0.017435363,0.08006047,-0.19317183,0.070399426,0.3930143,-0.06533934,0.17017478,0.11842172,-0.09096595,-0.35949844,-0.07369558,-0.008730077,0.34581867,-0.013302649,0.15040554,-0.082642965,-0.46580756,-0.21674183,0.12478193,-0.21057552,0.3257838,0.07053384,-0.59652066,0.89876455,0.019168634,1.2304026,-0.03454101,-0.3335156,0.11012506,0.6304033,0.27707547,0.15157053,-0.101388484,0.89697933,0.7895869,-0.28030083,-0.2491212,-0.50086915,-0.30003157,0.27631044,-0.24170464,-0.24109653,0.07962965,-0.7680169,-0.04576418,0.30241245,0.19450651,0.21107414,0.121580325,-0.17533945,0.097996406,0.28226793,0.4703572,-0.50424474,-0.21209224,0.3182589,0.00020851538,0.16214718,0.1374636,-0.3712813,0.47969964,-0.61286724,0.28871143,-0.33158424,0.1105655,-0.25682193,-0.2753403,0.14478956,-0.0135416845,0.35296583,-0.12853867,-0.36238325,-0.22625396,0.6714783,0.21152687,0.3685072,0.80584943,-0.25043228,0.10661879,0.018510286,0.3547161,1.1341527,0.05615129,-0.18430616,0.27819473,-0.410497,-0.65570843,0.22936313,-0.3612427,-0.024641184,0.0029714017,-0.43452084,-0.2797128,0.24386615,0.13021776,0.010551526,0.20083117,-0.44765505,-0.15891191,0.30938965,-0.46147746,-0.3495436,-0.3159018,0.34613228,0.8040679,-0.53351974,-0.2141307,0.13469611,0.18872762,-0.32381672,-0.44156554,-0.14855477,-0.27412212,0.49660286,0.12109906,-0.439215,0.19309685,0.2976948,-0.26794702,0.05761508,0.45704556,-0.36718628,0.21868268,-0.1512952,-0.0006259932,0.9754839,0.057932414,-0.052177675,-0.8201857,-0.4188636,-0.9205844,-0.25607112,0.6017822,0.25397402,-0.11519301,-0.558725,-0.09674437,0.14755669,-0.026889296,0.045626003,-0.6086058,0.519417,0.112364225,0.31088987,0.015577821,-0.9705438,0.05079276,0.19939181,0.008863027,-0.62744015,0.7199113,-0.5423454,0.69118434,0.04897401,0.05345475,0.02388238,-0.48476908,0.3155511,-0.35720342,-0.36494124,-0.60542274,-0.021572232,446 -676,0.4517142,-0.16423167,-0.7208946,-0.17249434,-0.036343906,-0.20299354,-0.037998155,0.62131,0.3373836,-0.616122,-0.05345827,-0.29957587,-0.013208558,0.58090717,-0.1638729,-0.93254095,0.046948645,0.13786675,-0.2963254,0.39897376,-0.4830987,0.21411303,0.084254555,0.3497181,-0.044471566,0.19413444,0.19370696,-0.24307714,-0.03429312,0.016227493,-0.14476992,0.3776635,-0.43254772,0.013036921,-0.02105978,-0.4832961,0.08224201,-0.4007866,-0.38393953,-0.8810707,0.29607162,-0.8020315,0.56234014,0.26114678,-0.24368383,0.13569538,0.29946157,0.27393964,-0.2222366,0.05367947,0.12996271,-0.14093818,-0.078653224,-0.17005,-0.44635662,-0.46083432,-0.64117366,0.10948956,-0.50504965,-0.22849068,0.045478977,0.20268616,-0.41217974,0.12797196,-0.15758587,0.48931995,-0.35206068,-0.196579,0.48847458,-0.24843779,0.37475443,-0.49680245,-0.1933812,-0.13767359,0.097080044,-0.14323786,-0.28742707,0.2257297,0.30539423,0.66491234,-0.0076360656,-0.32152206,-0.41019434,0.041005787,0.055240314,0.34717962,-0.41378987,-0.4601908,-0.11564001,0.16761972,0.09787856,0.3379022,0.18606336,-0.45165458,0.009966233,0.080460675,-0.36497533,0.40127856,0.55874157,-0.49335164,-0.22774228,0.22236377,0.6303117,0.0990675,-0.06879314,0.18718162,0.113294,-0.63091034,-0.10793049,0.17067152,-0.21133456,0.55144656,-0.14903913,0.21827984,0.7063335,-0.24549133,-0.024209062,0.0762013,-0.065917425,0.014433624,-0.5163467,-0.06474538,0.26655835,-0.48570392,0.1887892,-0.20822746,0.8094066,0.22102803,-0.7096719,0.4055977,-0.61600155,0.21194448,-0.23520991,0.626393,0.58442265,0.3366995,0.43199867,0.80225444,-0.5783332,0.051847532,-0.2028397,-0.34576967,0.0074305534,-0.13866816,0.044402234,-0.51411927,0.035576124,-0.056503017,-0.051923815,0.24512123,0.31878668,-0.6335954,-0.15170808,0.19089589,1.0971847,-0.27284622,-0.22435689,0.6833037,0.941523,1.1018625,-0.0020007892,1.2221657,0.26669404,-0.15178639,0.36728472,-0.25296265,-0.8985698,0.35503483,0.2696591,-0.28000996,0.30025128,-0.014178487,0.016824067,0.5023375,-0.2650501,0.17075542,-0.30336767,0.311221,0.16300741,-0.24653713,-0.27953294,-0.16876672,-0.15468827,-0.19577423,0.093766876,0.20619175,-0.12957118,0.35708806,-0.30324525,1.6693473,-0.16269109,0.122883305,0.17139302,0.42499542,0.21735407,0.14048669,0.022296974,0.22328931,0.1642378,0.24429165,-0.5541634,0.10011624,-0.30109233,-0.5201147,-0.13848445,-0.28627652,0.03475498,-0.18539634,-0.46071944,-0.17028663,-0.16310552,-0.2554522,0.43698832,-2.5832205,-0.2597718,-0.06666948,0.29557645,-0.28996944,-0.3415839,-0.22932562,-0.44270658,0.5222763,0.3805123,0.5330646,-0.64872354,0.43184492,0.45660654,-0.3889763,-0.1389164,-0.70305693,-0.028623484,-0.06490347,0.120015904,0.082208805,-0.20260698,0.07238652,0.113032185,0.553453,-0.09938283,-0.06554308,0.20856938,0.43296334,0.07976767,0.5244128,-0.163947,0.6359435,-0.48425776,-0.319797,0.4459413,-0.6196139,0.23074004,0.1802056,0.0782483,0.4193609,-0.5662421,-1.041247,-0.6049156,-0.25262123,0.95689195,-0.05637266,-0.40920988,0.3216211,-0.31114966,-0.13340928,-0.08271175,0.33661267,0.041873556,0.027736394,-0.8155073,0.12146636,-0.111706786,0.08369536,-0.010783758,0.0033914696,-0.17725751,0.684681,-0.1225599,0.34696776,0.47297227,0.048824623,-0.45051214,-0.5990147,-0.1731034,0.89731115,0.20063403,0.20589128,-0.15499401,-0.21178237,-0.3486619,-0.13734767,0.12006275,0.5321325,0.9944618,-0.19228841,-0.004807085,0.37505454,0.09943051,-0.05707205,-0.116806105,-0.510684,-0.10187189,0.07184182,0.53814536,0.68284225,-0.34478515,0.43707758,-0.038658336,0.44180298,-0.30888382,-0.3351898,0.4625277,0.95243526,-0.30593008,-0.39376733,0.5484906,0.33189276,-0.5449851,0.5317586,-0.58531505,-0.35976675,0.4748483,-0.13202561,-0.5297553,0.08868972,-0.33757207,0.13505812,-1.0801041,0.16814044,-0.33685124,-0.1840322,-0.49396783,-0.37177208,-3.5774736,0.29449886,-0.41389135,0.03867925,-0.13524069,0.1394749,0.110157505,-0.4588248,-0.82731354,0.018739166,0.19411667,0.511066,-0.21263117,0.2573004,-0.2247224,-0.07433233,-0.29681745,0.15357825,0.18050256,0.28206146,0.16625589,-0.48436153,-0.022249788,-0.1924679,-0.56889236,0.0884829,-0.66723084,-0.5098301,-0.22737758,-0.8079484,-0.38252962,0.7022547,-0.43126833,-0.051208302,-0.19985421,0.19144644,-0.12427844,0.4858792,0.05053965,0.16033052,0.02206229,-0.09955641,-0.21810451,-0.20460428,0.04423785,0.10317215,0.3985251,0.38377002,-0.11332726,0.20836793,0.6825768,0.90315723,0.1267862,0.6044551,0.4915989,-0.073932104,0.40539128,-0.3822948,-0.21331006,-0.5422668,-0.37060907,-0.040167883,-0.39599264,-0.59887785,0.16068673,-0.44826406,-0.7543245,0.67748004,0.039937954,0.0911064,0.08118076,0.19979829,0.494549,-0.20667815,0.03027459,0.044143174,-0.16432752,-0.6505023,-0.26783508,-0.5697159,-0.6002665,0.27372503,1.0967923,-0.28652307,-0.008232474,-0.0037827538,0.002770387,-0.20837195,0.25412667,0.033383705,0.21181162,0.3174415,-0.08388301,-0.5964717,0.30676615,-0.07239859,-0.16695905,-0.5739661,0.17912859,0.6566915,-0.7819444,0.7739678,0.23057875,0.059697013,0.056145675,-0.59177303,-0.17840296,0.024605151,-0.16452065,0.42748374,0.08636964,-0.68722016,0.4385408,0.79160124,-0.36267346,-0.7559072,0.29829565,0.01487664,-0.3108524,-0.087924965,0.40827864,0.18514368,0.011480807,-0.08109247,0.16432516,-0.5404562,0.10065244,0.2491979,-0.07301135,0.50998396,-0.20974973,-0.26395166,-0.88874,0.040860124,-0.71133673,-0.13363647,0.36065823,-0.008641963,0.034537356,0.1266381,0.04184491,0.36615828,-0.23685661,-0.0002294733,0.035907142,-0.19265376,0.38254803,0.38023794,0.32791144,-0.5300826,0.5934373,0.07512658,-0.14490315,0.14801516,0.03245525,0.43549523,0.09871006,0.49989843,0.12810661,-0.152733,0.20617032,0.970122,0.021949722,0.3848516,0.14243066,-0.18752535,0.31312507,0.16722108,-0.11107015,-0.0064161923,-0.5116314,0.11315424,-0.12461055,0.2346722,0.57419467,0.2031094,0.42818272,0.017983878,-0.29255626,-0.042843424,0.18973319,0.026687654,-1.2306516,0.2993553,0.17514825,0.79914486,0.4800026,0.1548233,0.14962062,0.5860608,-0.20954297,0.18945128,0.38485548,-0.43419358,-0.5949393,0.625424,-0.63718224,0.42074284,-0.22801417,0.13570412,0.025466355,0.18988334,0.44522446,0.71318376,-0.021275895,-0.0035063922,-0.067001775,-0.2035124,0.23914893,-0.49124452,0.026624532,-0.3596643,-0.2316583,0.6476829,0.4147066,0.34694174,-0.22508933,-0.08427013,0.2756736,0.005314146,0.16938528,-0.12708679,0.095606014,-0.12992255,-0.62401444,-0.24285659,0.69100195,0.2652933,0.22885388,-0.1263164,-0.168792,0.4482837,-0.10783021,-0.123791024,-0.21761107,-0.55007863,0.06831344,-0.28715688,-0.61278766,0.30486038,-0.051354785,0.20112029,0.21357217,0.14012378,-0.5468591,0.5107518,-0.19049476,0.73519546,-0.3408519,-0.07872952,-0.51916164,0.15720358,0.23290351,-0.30667746,-0.123397574,-0.29240054,-0.053309843,-0.36318016,0.5331658,-0.008505734,-0.3373937,0.008213337,-0.14453635,-0.063600734,0.49900347,-0.3458327,-0.14720961,0.001858952,-0.31742314,-0.3368941,-0.23505291,-0.031984884,0.38996884,-0.018497368,-0.1280584,-0.103789,-0.26240775,-0.13477874,0.52020925,-0.07501269,0.1992344,0.3372299,0.28514925,-0.44003388,-0.09375767,0.29725772,0.54982525,0.07341483,-0.15150337,-0.18771745,-0.30711463,-0.30493304,0.11060724,-0.16372862,0.42619988,0.2024811,-0.47789866,0.88480276,0.26604554,1.4686018,0.10503828,-0.32758063,-0.06882959,0.42806962,0.096124664,-0.09660347,-0.4513989,0.8961899,0.692695,-0.24153325,-0.11483187,-0.44242558,-0.028125368,0.1648725,-0.29185537,-0.11126227,0.026621345,-0.65581447,-0.29421267,0.37088314,0.19380906,0.38259447,-0.21262087,0.23364179,0.061346695,0.03497076,0.23792753,-0.334669,-0.23989837,0.19095439,0.5282692,0.02160125,0.03575964,-0.41344446,0.35035354,-0.44651476,0.2191233,-0.3931791,0.19956507,-0.11343817,-0.21511382,0.23173922,-0.14149407,0.31312704,-0.1971283,-0.24885233,-0.02972335,0.4916336,0.2451852,0.18839192,0.81062126,-0.23785727,-0.042031206,0.13920905,0.68495524,1.2001796,-0.2101498,-0.078588754,0.3653384,-0.14024065,-0.78881544,0.44509476,-0.25849092,0.10861298,-0.06396334,-0.28732842,-0.63685447,0.31440413,0.27743196,-0.11994326,0.27988416,-0.6327356,-0.19755857,0.21316549,-0.45503807,-0.24259204,-0.4324202,0.21442915,0.78263193,-0.19891214,-0.23992234,0.30179664,0.18040085,-0.15142344,-0.52149606,-0.010602355,-0.3276737,0.31758925,0.29095381,-0.3203395,0.08472763,0.059209637,-0.5650008,0.060335334,0.2102646,-0.26347554,0.18945166,-0.25950724,-0.19035676,0.88947856,-0.12055736,0.25950387,-0.67281795,-0.42719504,-1.0289443,-0.20822194,0.7038841,0.038168706,0.061057705,-0.55727476,-0.05926186,0.0824631,-0.4336317,-0.033967417,-0.28053057,0.45467955,0.084202126,0.3833445,-0.1471297,-0.6522552,0.032949284,0.35286158,-0.19574833,-0.6780023,0.4676182,-0.09988146,0.9273762,0.14924009,0.011773069,0.5698446,-0.46446273,-0.071169436,-0.34546867,-0.33827665,-0.6288583,-0.15662266,447 -677,0.46679348,-0.258114,-0.48746365,-0.24510612,-0.4291197,0.002858327,-0.36941534,0.27715012,0.23146158,-0.24384299,-0.1565294,-0.22025508,0.15999897,0.32073843,-0.18362696,-0.47251987,-0.13212262,0.05021506,-0.7363552,0.29297888,-0.6637655,0.19486706,0.05113759,0.4211538,0.15650257,0.29264718,0.16881107,-0.0077053127,0.16607888,-0.20694557,0.01800211,0.011641667,-0.7409176,-0.08248993,-0.2354129,-0.47981304,-0.04364474,-0.67854893,-0.38269165,-0.74565065,0.31939715,-1.1682574,0.71237075,-0.021057116,-0.20077714,-0.25223178,0.38538373,0.5500469,-0.227272,0.19060375,0.28766006,-0.15008129,-0.017523352,-0.22611512,-0.09014472,-0.477277,-0.6681848,-0.124739096,-0.5834329,-0.44993654,-0.083679505,0.31391823,-0.22386377,0.186608,-0.13537578,0.17527606,-0.41009971,-0.055059772,0.43303674,-0.11378872,0.51183474,-0.6126381,-0.006608832,-0.094580255,0.4184659,-0.038512293,-0.2699695,0.2906877,0.31603777,0.4376602,0.11744217,-0.2516114,-0.24508773,-0.2289786,-0.060551602,0.5407471,-0.22776446,-0.2625646,-0.31979164,-0.04848818,0.6591215,0.6817798,0.037225418,-0.27043372,0.04451383,-0.0055819703,-0.3523501,0.675112,0.6311897,-0.3085512,-0.34194276,0.19282165,0.55800176,0.17535767,-0.3383971,0.26963308,0.11441447,-0.60249645,-0.15725987,0.10526668,-0.030717466,0.4327676,-0.1360218,0.22368163,0.77544373,-0.17547435,-0.010233361,-0.06363002,-0.14827277,-0.24144346,-0.26518032,-0.3364498,0.18284376,-0.6049453,0.040833957,-0.27971193,0.6416451,0.029097885,-0.7600281,0.43706682,-0.776415,0.20571741,-0.030977923,0.75276226,0.80641395,0.40128958,0.51817775,0.71071583,-0.23004836,0.1047685,-0.12003647,-0.24772035,0.19693345,-0.47439963,0.31651482,-0.44469076,0.094311684,-0.19578725,0.009257784,0.093450755,0.7066082,-0.5323626,-0.06998814,0.32983333,0.777812,-0.32568794,0.012037428,0.70232964,1.2049534,1.0645335,0.09928624,1.2635653,0.40010065,-0.3366585,0.16819102,-0.2956183,-0.6636209,0.14701013,0.31940874,-0.19760616,0.5057352,-0.09686418,-0.03621757,0.31320804,-0.5016379,0.04365585,0.17738718,0.15783852,0.24537775,-0.18215325,-0.5496732,-0.09828048,-0.0015590305,-0.08166616,0.2836912,0.1618367,-0.2667138,0.3377922,0.002825746,1.3485807,-0.14879341,0.06591575,0.16773184,0.5983654,0.22615913,-0.15374303,0.00946718,0.3949513,0.39879754,0.070384756,-0.614022,0.31429067,-0.17323014,-0.37391567,-0.30088285,-0.3875303,-0.31009457,-0.028898107,-0.4681767,-0.295279,-0.14389594,-0.17562184,0.39011952,-2.7252414,-0.48040932,-0.23068437,0.43663535,-0.21940711,-0.15586424,-0.055567943,-0.53484976,0.20279016,0.3956599,0.4787661,-0.764198,0.62003267,0.6651777,-0.5341467,-0.14885522,-0.855463,-0.050979033,-0.096013665,0.4107907,0.089922555,-0.24677493,-0.12528132,0.30247784,0.7422997,0.16809104,0.10423387,0.31698924,0.62630373,0.042204473,0.79584086,-0.18115054,0.44904324,-0.2604384,-0.16229905,0.32545218,-0.25212112,0.1627735,-0.17415515,0.07244346,0.58382607,-0.56789017,-0.9434869,-0.71469104,-0.34479952,0.82579815,-0.15735349,-0.5580492,0.17072669,-0.48122236,-0.1835714,0.032257564,0.76109815,-0.14731005,0.26449353,-0.86559135,-0.043166656,-0.21927682,0.19239953,0.066974,-0.05869478,-0.41143486,0.78502536,-0.19226602,0.56008065,0.2775566,0.23370042,-0.3191886,-0.40266228,0.17659679,0.74032474,0.39556745,0.02882257,-0.23370674,-0.2945639,-0.1547574,-0.26994607,-0.0021114533,0.48820436,0.78593457,-0.12080933,0.21524818,0.49653673,-0.17548603,0.040668026,-0.09723551,-0.17404468,-0.03525934,0.047157783,0.5654558,0.74054337,-0.23323932,0.45258194,-0.3016872,0.33797666,-0.16196664,-0.5022022,0.53102106,0.429838,-0.106530935,-0.10602821,0.6277424,0.58215505,-0.44019333,0.57838535,-0.8348971,-0.29265347,0.53440225,-0.0032482366,-0.54683995,0.2714548,-0.3681084,0.2130293,-0.9193607,0.3795168,-0.25935087,-0.3841987,-0.39043564,-0.2725199,-2.8420932,0.21870469,-0.15088403,-0.039913043,-0.3002767,-0.24988899,0.443351,-0.57854974,-0.7330604,0.0330557,0.100979015,0.62023616,0.06013892,0.14914267,-0.30901366,-0.14777778,-0.22276293,0.25125915,0.15130088,0.32635546,-0.10841559,-0.4130699,0.07787016,-0.12740925,-0.59469175,0.1903988,-0.6352999,-0.5856416,-0.017582532,-0.44629732,-0.36827946,0.6304289,-0.3770209,0.050642166,-0.33821696,0.044060245,-0.21880102,0.34022874,-0.054258034,0.15844356,0.11755002,0.026461324,0.0929555,-0.22187828,0.47667342,-0.097997196,0.274488,0.08351728,-0.07394115,0.20335284,0.44346985,0.6952779,-0.16577421,1.0255427,0.5397111,-0.08291234,0.13249364,-0.25640017,-0.21124306,-0.5630793,-0.26273766,0.0108809015,-0.4276548,-0.5871551,-0.0036435951,-0.2843621,-0.77488035,0.7146098,-0.14866835,0.3779864,0.065150216,0.32274547,0.35644802,-0.08631488,-0.0019067571,-0.0341768,-0.17817718,-0.5940577,-0.34596682,-0.6794665,-0.4869816,0.035850324,1.1122477,-0.11072091,0.13035771,0.10863897,-0.28379446,-0.047307637,0.1848351,0.08825148,0.2464042,0.4545113,-0.045919523,-0.6397813,0.21753357,-0.2194628,-0.26764244,-0.5813469,0.11752919,0.7849597,-0.75033367,0.51671296,0.44702148,0.14571558,-0.21877956,-0.5064706,-0.18989754,0.045521352,-0.38072425,0.5521194,0.1327429,-0.80912334,0.60151774,0.3264708,-0.42355797,-0.7029067,0.5133795,-0.12390112,-0.2371993,-0.109171286,0.24023518,0.24845555,0.005585817,-0.2961877,0.23487933,-0.40887308,0.32948363,0.13370673,-0.043570288,0.43904394,-0.04554713,-0.19411817,-0.7623532,-0.005679943,-0.60860103,-0.29504773,0.3083192,-0.0864937,0.108901575,0.37595522,0.05389462,0.38241023,-0.2409574,0.15408714,-0.07413705,-0.42354038,0.11482299,0.46078536,0.35882616,-0.39853165,0.6466989,0.10430848,-0.26781213,0.05308052,-0.0120094055,0.38710898,-0.10421408,0.39798468,-0.23328549,-0.19636084,0.34760967,0.8134555,0.20661889,0.46538243,0.24542218,0.052971635,0.40814787,0.015604924,0.112606175,-0.026743192,-0.5486286,0.0151478555,-0.21776502,0.23178442,0.52703744,0.2818812,0.3108197,0.0106478445,-0.19371334,0.034470204,0.17638241,-0.34236485,-1.3047105,0.27216122,0.23418294,0.8023576,0.35201243,-0.01352843,-0.0030189843,0.6247078,-0.23363484,0.032541282,0.53521526,0.27076122,-0.3843436,0.78900665,-0.5805365,0.46085307,-0.22762917,-0.0411548,-0.030261708,0.31336552,0.46006152,0.814996,-0.1969138,0.11855517,0.0899158,-0.09387442,0.060937352,-0.33990914,0.0351958,-0.44103116,-0.23918816,0.8804155,0.31160122,0.44053745,-0.110421166,-0.06270074,0.08149932,-0.09165946,0.21824461,-0.12237556,-0.27305892,-0.018381901,-0.6202122,-0.09722757,0.5297892,0.13929796,0.20793414,-0.086971484,-0.4215323,0.0045279837,-0.14589931,0.068033084,0.03145873,-0.6990531,-0.17747065,-0.26458415,-0.62091476,0.5418528,-0.23645419,0.046365783,0.23698662,-0.087687716,0.032657787,0.19294967,0.053129986,0.7983014,0.07974454,-0.24181181,-0.16758893,-0.03631313,0.38891765,-0.33675525,0.02097521,-0.37446138,0.13070534,-0.5907341,0.7385713,-0.17154656,-0.4938243,0.2960007,-0.2140527,-0.04234922,0.6628417,-0.19138001,-0.06304546,0.31403834,-0.2051174,-0.17848325,-0.0823546,-0.37288377,0.2767445,0.22074237,-0.09583517,-0.05468649,-0.3350048,-0.067731254,0.5611629,-0.037242945,0.5780391,0.4417178,0.10998507,-0.1996637,0.0201541,0.1762295,0.6106459,0.12774825,0.030549984,-0.35942045,-0.568943,-0.17109449,0.28464603,0.0386921,0.29022425,0.1659645,-0.2773938,1.0701611,0.045032863,1.1922319,0.13137084,-0.41920993,0.05535058,0.5092197,-0.016406314,0.042671144,-0.4996708,0.8885444,0.5480272,-0.15076326,-0.093501955,-0.4963015,-0.07316804,0.37369007,-0.38841832,-0.210581,-0.13853656,-0.65009874,-0.37601727,0.24312733,0.14277278,0.15717953,-0.06718306,0.31834057,-0.03152525,-0.10775777,0.46420938,-0.5907627,-0.16870292,0.2617486,0.33940008,-0.19332123,-0.005716012,-0.3704038,0.40674928,-0.5996202,0.08882027,-0.63355446,0.09119049,-0.124149635,-0.35504356,0.056968313,-0.0018295416,0.33268648,-0.20020407,-0.35653597,0.06848046,0.548382,0.08958989,0.16588427,0.62267864,-0.30848673,-0.0658132,-0.058573928,0.58896744,1.5626928,-0.5170836,0.106233396,0.23886405,-0.47655562,-0.6970561,0.49750185,-0.4486212,-0.017699186,0.02976859,-0.44973361,-0.4595012,0.23260736,0.14967932,-0.12292601,0.035516612,-0.4703827,-0.33491665,0.36857584,-0.32040212,-0.10324262,-0.17280081,0.40336066,0.65542847,-0.15867358,-0.30872184,-0.072882816,0.60226053,-0.3457284,-0.4321993,0.08603936,-0.16733606,0.38699389,0.06890031,-0.28969333,-0.13263069,0.074999385,-0.5729169,-0.015244434,0.29165265,-0.41436324,0.16913247,-0.33820608,-0.10239559,1.0272807,-0.21657851,-0.2890525,-0.6664221,-0.535418,-0.9303372,-0.42192188,0.059157424,0.3177365,0.008500645,-0.28354946,0.01505943,-0.063130155,-0.2390259,0.13160744,-0.5255438,0.36911073,0.09260217,0.6202849,-0.3674608,-0.8162812,0.09300881,0.12819329,-0.2714407,-0.71169,0.82437736,0.05229954,0.9114202,0.14731516,-0.045596227,-0.118491046,-0.43186203,0.11910303,-0.27072436,-0.27929166,-1.0536376,0.007841312,462 -678,0.2892776,-0.096222095,-0.55279756,-0.23315361,-0.3079243,0.10616893,-0.15809539,0.5833818,0.16556583,-0.45990136,-0.08805764,-0.09088994,0.07103196,0.24568154,-0.13811989,-0.33965573,0.03635318,0.057373386,-0.5094068,0.3099789,-0.44415075,0.19275245,-0.021100132,0.24967018,0.32063565,0.2431412,0.09113905,-0.06038402,0.051309366,-0.23575686,-0.23636106,0.20386097,-0.35464603,0.22159657,-0.14749739,-0.36332005,-0.0270652,-0.54669183,-0.29775408,-0.62796336,0.4148229,-0.71698475,0.49287483,0.016693665,-0.18896158,0.25658697,0.2123127,0.24720143,0.023163052,-0.1757767,0.134967,-0.014457262,-0.078282624,0.048613828,-0.21374084,-0.3021882,-0.46300867,0.05672822,-0.5738674,-0.21047424,-0.18755557,0.11112221,-0.20276625,-0.031414714,-0.21828414,0.5877641,-0.3594427,0.021862773,0.13150565,-0.036308166,0.21114543,-0.6073946,-0.15325688,0.040390767,0.314148,-0.28936937,-0.23288931,0.13426341,0.14875028,0.42394108,-0.16686608,-0.08475714,-0.15777174,-0.08504073,0.13643977,0.55682874,-0.14123307,-0.47011626,-0.04847483,0.032545228,0.24059772,0.1695845,0.18249324,-0.3023206,-0.1788635,-0.08579573,-0.24134597,0.53569853,0.5019285,-0.33504778,0.040184215,0.36346638,0.39989662,0.27624154,-0.13409323,0.026559133,-0.018916331,-0.5568772,-0.1727012,-0.030707065,-0.078447744,0.4788141,-0.08047155,0.4885812,0.32592127,-0.063686,0.051386926,0.18135525,-0.026361635,-0.042740382,-0.21265125,-0.08759463,0.11693846,-0.5120552,0.17228566,-0.106759325,0.67144907,0.08235052,-0.81164753,0.30913976,-0.51177734,-0.026202839,-0.1125671,0.45170873,0.715207,0.28320068,0.19022171,0.58140576,-0.31531614,-0.02005711,-0.23525074,-0.17841434,-0.13394994,-0.015422647,-0.0025772406,-0.6016257,-0.16234484,0.0013809571,0.099953964,-0.01565109,0.2506268,-0.62739944,-0.099873334,0.27929893,0.6230396,-0.25518972,-0.2019698,0.8907765,1.0241284,0.8371111,0.13424899,0.86055154,0.008566911,-0.1694089,0.11190396,-0.11421195,-0.5739769,0.1974521,0.3674968,0.38500708,0.060306434,-0.0033509685,0.08037892,0.3874276,-0.36930102,0.061622698,-0.124647304,0.22048649,0.10326894,-0.014119749,-0.2463936,-0.44189388,0.0315031,0.08804179,0.07368717,0.17274567,-0.32557064,0.28296474,0.0509244,1.4716479,-0.15704168,0.051972803,0.031155583,0.44243732,0.14094175,-0.36504143,-0.20114814,0.14704943,0.4147285,-0.077446334,-0.60574764,0.08166126,-0.10234356,-0.40340954,-0.08000005,-0.35837853,-0.22841658,-0.22403485,-0.4670655,-0.025124284,-0.116102256,-0.476983,0.46167162,-3.1838849,-0.14426436,-0.1471855,0.22824231,-0.19851127,-0.4129969,-0.11559437,-0.35492626,0.4303695,0.22952358,0.42449972,-0.48502403,0.46943277,0.2733727,-0.482299,-0.1277954,-0.643528,-0.13341437,0.08012405,0.15222144,0.03621691,0.10415631,0.07655688,0.21076201,0.39686936,-0.142233,0.23160638,0.18290994,0.37628874,0.13870548,0.51676095,-0.10117916,0.44614542,-0.24664041,-0.14339203,0.24154812,-0.24617492,0.17567436,-0.16391315,0.1527833,0.3757859,-0.49005178,-0.78489345,-0.57506835,-0.3023624,1.258031,-0.20482375,-0.46509174,0.33873212,-0.47480303,-0.24834178,-0.08306154,0.5892166,-0.026768832,-0.21437287,-0.6453718,0.12214956,-0.24797322,0.14091255,-0.14446418,-0.10661995,-0.45342892,0.46445772,-0.062064044,0.56666875,0.31259757,0.1985248,-0.32217664,-0.28001758,0.005920234,0.81816,0.4007549,0.06515745,-0.07565454,-0.09710695,-0.41562033,0.120034605,0.06527214,0.69278204,0.6476295,0.032880165,0.23326534,0.24496497,0.11781226,0.07331508,-0.16966741,-0.27833053,-0.1567382,0.109850414,0.60968745,0.26554906,0.07310362,0.58270085,-0.073388904,0.09746291,-0.3149096,-0.42555624,0.23203531,0.48468426,-0.15708624,-0.27936906,0.5322456,0.5903898,0.025101367,0.31539932,-0.5409615,-0.37629515,0.4814277,-0.21280836,-0.36564186,0.18393192,-0.27713817,0.15480086,-0.859352,0.21208562,-0.26901916,-0.8230843,-0.26901934,-0.030820774,-2.9286807,0.17606783,-0.07992076,-0.2520787,-0.07514573,-0.47380877,0.15373695,-0.28919396,-0.5414116,0.16463654,0.030445097,0.7830439,-0.033471912,-0.018557338,-0.12053038,-0.12819734,-0.2022093,0.11693446,-0.016608147,0.28346783,-0.15088527,-0.24578835,-0.12867738,-0.18681993,-0.4127094,0.06294605,-0.37624756,-0.36068624,-0.085353024,-0.36256278,-0.23982853,0.5928204,-0.28269878,0.010263354,-0.2773584,-0.0037057896,0.055315867,0.31734514,-0.05602663,0.23791926,-0.021870337,-0.041138988,-0.006431843,-0.21307865,0.13094975,0.09250614,0.22059004,0.29430377,0.105524436,0.35644725,0.45963037,0.6366416,-0.034969073,0.86508507,0.39660078,-0.034686718,0.28790432,-0.14091454,-0.22548905,-0.3772989,-0.15131006,0.1424316,-0.4115984,-0.42052138,-0.15325062,-0.19855087,-0.62166935,0.519336,0.13288385,0.14601746,-0.033749975,0.2903077,0.4324442,-0.14872469,0.019326594,-0.17059158,-0.067934,-0.57571083,-0.31731227,-0.59690964,-0.24791978,-0.025347453,1.0540819,-0.3097687,0.15953788,0.002706961,-0.08863215,0.1436217,0.13022141,0.07548188,0.2576589,0.29265544,-0.2610262,-0.6366721,0.30679318,-0.30630022,-0.09703641,-0.456253,0.098250166,0.58181405,-0.47288784,0.29127395,0.16879933,0.10471253,-0.3039717,-0.5543198,-0.08810357,-0.002564758,-0.2925008,0.28178126,0.23734856,-0.88193345,0.53924996,0.24314049,0.036563616,-0.78916895,0.5550103,0.06826406,-0.2272765,-0.15592974,0.28265423,0.14237908,-0.064895645,-0.25683495,0.1268763,-0.33268452,0.33502606,0.20751268,-0.04522947,0.13715726,-0.3211225,0.057278283,-0.47479242,-0.05475229,-0.5584674,-0.18060857,0.14486618,-0.035972767,0.31905064,0.3102171,-0.14525613,0.3231924,-0.3615969,0.12065454,-0.0018623793,-0.27674213,0.19499299,0.421373,0.35735723,-0.4470881,0.53849643,0.100110084,-0.05128732,-0.023525449,0.082927026,0.41111374,-0.08772767,0.2499291,-0.21475968,-0.318595,0.30373868,1.0132455,0.110549875,0.25417712,-0.13181065,0.089232296,0.11797619,-0.06334014,0.11232985,0.05416385,-0.48813704,-0.009011007,-0.23606294,0.12447519,0.463936,0.13088162,0.3093594,-0.025802324,-0.35635334,0.030901663,0.08225406,-0.105268,-1.1920661,0.4878598,0.10563194,0.853418,0.49677354,0.018198324,-0.035068743,0.50234514,-0.1644379,0.16190727,0.17582291,0.10618536,-0.3741188,0.46259066,-0.71655875,0.5722081,0.05024862,-0.053262945,0.016671915,-0.12601498,0.49118507,0.8735056,-0.14995503,0.12632617,0.16688673,-0.21648511,0.13728788,-0.3106394,-0.10377994,-0.79663473,-0.22460644,0.63540643,0.35691673,0.40225062,-0.017341137,-0.0029595448,0.20990625,-0.06586421,-0.0504729,0.07676982,0.16662869,-0.18828462,-0.6126023,-0.1531666,0.48530167,0.006151707,0.07566108,0.034226835,-0.3485916,0.19078746,-0.16003095,0.011334835,-0.09778093,-0.57316136,0.017457072,-0.33184153,-0.35292333,0.35732657,-0.30969298,0.21658982,0.20930058,0.082186386,-0.06253411,0.3374154,0.20726794,0.69593817,-0.10049888,-0.033084843,-0.30711433,0.16245845,0.16078523,-0.1317936,-0.37057912,-0.3250241,-0.002083329,-0.6284791,0.24517584,0.010699987,-0.23025315,0.2630326,0.0129082985,0.10138113,0.4821553,0.029480843,0.113538355,0.020995338,-0.24786064,-0.11437859,-0.12956683,-0.09036117,0.21892956,0.089924246,-0.070678,-0.12952209,-0.042029914,-0.0929458,0.15526533,0.024656834,0.41748527,0.20273909,0.10342341,-0.3750534,-0.0022332072,0.047526672,0.46838406,-0.06655211,-0.12685539,-0.28513476,-0.2059779,-0.22011478,0.22712845,-0.059833348,0.37191072,0.020088973,0.014348929,0.64393395,-0.03541014,0.96609867,0.0018875301,-0.33009848,0.062794924,0.33732063,-0.049096465,-0.13755377,-0.23185284,0.7379342,0.31821647,0.14739433,-0.048892114,-0.31537136,-0.017129358,0.23383142,-0.033433955,-0.2152591,-0.05019973,-0.46206248,-0.15469643,0.21564844,0.13015546,0.2574616,-0.11835175,0.09513699,0.29361373,-0.0627219,0.1967659,-0.5527456,0.032753084,0.3224285,0.2951998,-0.013642645,0.034948662,-0.4928088,0.24694315,-0.5639895,0.032006033,-0.19166708,0.21923491,-0.103984594,-0.1992032,0.17255051,-0.0056752446,0.37802717,-0.1848804,-0.28754777,-0.21804298,0.5631257,0.19886912,0.16742875,0.476394,-0.25931373,0.17819251,-0.02342652,0.46419704,0.7996686,-0.18042403,0.02474793,0.45794237,-0.24726953,-0.5503795,0.24469516,-0.3017723,0.14013794,0.17708398,-0.11990325,-0.25778946,0.27433878,0.41930988,0.109715134,-0.027080046,-0.6245809,-0.2085026,0.3223967,-0.101860136,-0.2430508,-0.43942058,0.045581486,0.4505989,-0.20156178,-0.10370108,0.09205376,0.35509712,-0.17435138,-0.4742017,0.111674055,-0.25604692,0.19296315,-0.06025354,-0.368111,-0.30036572,0.035637803,-0.35809153,0.15546788,0.08382566,-0.21164802,0.024645315,-0.14438732,0.028370012,0.9125281,-0.21196082,0.15800579,-0.4184696,-0.5261669,-0.5319342,-0.29676443,0.21089815,0.032573916,-0.049891934,-0.5406144,0.0024770086,-0.13011052,-0.1744456,-0.043859642,-0.19763573,0.4919713,0.10230397,0.24981183,-0.120362125,-0.8598023,0.3611945,0.027388124,-0.29320267,-0.29942855,0.46723062,0.112426385,0.6369941,0.07033397,-0.017317377,0.18444851,-0.3124763,0.049129937,-0.19596246,0.03292751,-0.63568056,0.25098258,463 -679,0.3773507,-0.26607946,-0.5519564,-0.100700244,0.057584368,0.0068896506,-0.17786814,0.6888168,0.2798844,-0.3467474,-0.16974856,0.13790967,-0.08411369,0.3493107,-0.25829726,-0.4123363,-0.0009548412,0.19569801,-0.33169875,0.5792411,-0.27725393,0.13886186,-0.30581433,0.530786,0.18562943,0.45478284,-0.090969816,0.03696487,-0.24754082,-0.07170061,0.17891072,0.33411056,-0.4138795,0.32086897,-0.18783495,-0.110570125,-0.053223126,-0.35360795,-0.57946783,-0.802126,0.1428101,-0.8869103,0.58767056,-0.037537124,-0.41849777,0.391266,0.02265373,0.25970942,-0.3138645,-0.22012816,0.067727245,0.07137661,-0.15302542,-0.22237056,-0.192724,-0.5319063,-0.37748262,0.028709196,-0.40502226,-0.026652185,-0.21429381,0.11836258,-0.12109232,0.0005049522,-0.11639004,0.5990899,-0.4925561,-0.004744209,0.14417383,-0.14006463,0.16333342,-0.742705,-0.16989134,-0.14385055,0.18297723,0.030521406,-0.19389969,0.08936704,0.33329943,0.36603352,-0.08722716,-0.04390466,-0.2874096,0.0045756195,0.0602688,0.36097592,-0.18714274,-0.6552705,-0.08004579,0.042375036,0.32358444,-0.06976716,0.3040964,-0.16881584,-0.01617079,-0.0024612867,-0.21042424,0.46083274,0.50016636,-0.22257394,-0.10362502,0.257254,0.5785363,0.24511209,-0.1637282,-0.064351335,-0.06676232,-0.39700752,-0.1392686,-0.1263247,-0.21152171,0.6950575,-0.10043751,0.17203537,0.51935285,-0.11707355,-0.1059378,0.28939208,0.1063248,0.12609799,-0.4026329,-0.49401963,0.19500579,-0.31462464,-0.07166779,-0.19301875,0.37074238,0.13256362,-0.7853129,0.40736076,-0.25000608,0.0016934321,0.0015461708,0.45171526,0.5249304,0.48965538,0.259525,0.5250779,-0.29444692,-0.010015017,0.09007508,-0.22742048,0.054524317,-0.15618023,0.010360997,-0.5159372,0.09638306,0.0024739136,-0.33450046,0.12481002,0.34792474,-0.50671345,-0.15631682,0.15402032,0.81092274,-0.26304027,-0.02262982,0.712527,1.1979294,0.7926531,0.056832466,1.1581004,0.3138514,-0.017918114,0.18027137,-0.2619663,-0.6981513,0.22773398,0.3375561,-0.24018827,0.50628173,0.10818023,-0.07995416,0.3011061,-0.41120666,0.09130675,-0.24867564,0.2788048,0.17173547,-0.07008393,-0.5310981,-0.2831715,-0.070379026,0.10226449,0.15816173,0.2419224,-0.329226,0.20643218,0.17076111,1.3603234,-0.06783582,-0.107611746,-0.0038485527,0.6767104,0.23380612,-0.15978187,0.036012556,0.3551119,0.38173342,-0.05025529,-0.52656883,0.06434659,-0.14207175,-0.40082,-0.19485815,-0.31550518,0.04604051,0.03771512,-0.30545375,-0.2322488,-0.031036433,-0.26939905,0.3426846,-2.7390108,-0.18609282,-0.13521637,0.38869566,-0.13947545,-0.21226655,-0.08260775,-0.38459074,0.27402204,0.38972634,0.45055264,-0.49590856,0.40443105,0.5028271,-0.54503036,-0.12656495,-0.45195162,-0.120275706,-0.05174034,0.42400688,-0.057226602,0.07177866,0.0968746,0.2309694,0.5437782,0.09667058,0.14233087,0.4017841,0.20665462,0.0007559428,0.1626028,-0.027171195,0.5559725,-0.12587138,-0.20312871,0.22717908,-0.34140375,0.29319197,-0.09611389,0.19108406,0.3549971,-0.4537501,-0.8028771,-0.7195494,0.053469583,1.3524724,-0.15851113,-0.49248546,0.29707193,-0.60500187,-0.43554094,-0.050689835,0.33866495,-0.010883844,-0.029989246,-0.77757585,-0.069148585,-0.05818344,0.13082828,0.07233084,-0.054015376,-0.4443135,0.7900519,-0.041135646,0.3838121,0.20874459,0.14420745,-0.22403431,-0.5046533,0.06664815,0.88487244,0.47081602,-0.036405005,-0.16496482,-0.12789038,-0.4221823,0.016828729,0.12901717,0.6133592,0.6575748,0.021207752,0.008905358,0.15367739,-0.07532439,0.18926653,-0.19810821,-0.40964168,-0.21740717,0.22501208,0.58675057,0.5563449,-0.36104357,0.3736332,-0.28324816,0.3060951,-0.03759884,-0.36029917,0.5465762,0.76475817,-0.23735425,-0.30623367,0.64052683,0.58472323,-0.4524544,0.3958185,-0.616171,-0.15680496,0.28907043,-0.113312535,-0.36486107,0.40999413,-0.27323306,0.12766597,-0.8869593,0.4666128,-0.34241173,-0.5685309,-0.4343382,0.0065589,-2.9788208,0.23118779,-0.16827556,-0.32785827,-0.21180497,-0.15481465,0.3619835,-0.5926279,-0.62677866,0.25801146,0.026005553,0.58512574,-0.12488378,-0.045292452,-0.075136095,-0.3254873,-0.12286652,0.16362058,-0.026022749,0.29482773,-0.012389448,-0.4749553,-0.15690136,-0.07626024,-0.30056936,0.052718647,-0.7060379,-0.34488395,-0.11980624,-0.5346871,-0.039552845,0.5178009,-0.19721207,0.123527355,-0.27278298,0.10292062,-0.20766214,0.22175948,-0.101309486,0.18100078,0.117319025,-0.031634506,0.12660517,-0.19501029,0.2881932,0.07704825,0.42229638,0.13447055,-0.12242535,0.14745489,0.5568139,0.6924374,-0.16557987,0.9540631,0.54240006,-0.23551252,0.40153974,-0.23396836,-0.36500123,-0.5076244,-0.28073052,0.07292989,-0.35953337,-0.39625514,0.07320999,-0.40388057,-0.86373925,0.543943,-0.12965518,0.17299396,0.12283161,0.1617838,0.5003635,-0.11219794,0.16157103,-0.1498953,-0.21857627,-0.5483726,-0.20872802,-0.64600503,-0.3217462,0.08587499,0.95288235,-0.23397864,0.21592237,0.12384856,-0.2708144,0.1384072,0.028254487,0.06420973,0.1074605,0.43782407,-0.2425878,-0.61636347,0.18202637,-0.096099846,-0.16757832,-0.45821708,0.29877624,0.62218255,-0.6380594,0.7828162,0.33551362,-0.05612445,-0.3864951,-0.5485208,-0.320818,-0.13953139,-0.20528556,0.6043969,0.29573807,-0.8363275,0.3311427,0.41286257,-0.37145123,-0.6545534,0.54021615,-0.24777736,-0.061079565,-0.23819491,0.36036873,-0.09413024,0.095272556,-0.24049816,0.2508838,-0.21106951,0.054208342,0.16360757,-0.105530314,0.24999632,-0.17601545,0.01711607,-0.81077546,-0.08822027,-0.48321384,-0.16256054,0.26752302,0.11332527,0.17737092,-0.038519245,0.050216578,0.4420944,-0.4066548,0.13839039,0.008038231,-0.52034813,0.53828627,0.4762463,0.5971004,-0.320499,0.5470489,-0.013793198,-0.18632475,-0.14223923,0.012971174,0.37793362,0.025326777,0.35090902,0.1492756,-0.060021795,0.31755447,0.8190545,0.21044184,0.71216893,0.07178481,-0.039341513,0.29208997,0.04978574,0.18662585,-0.03784424,-0.50999683,-0.010869127,-0.1800805,0.25239477,0.3988783,0.15426911,0.34041166,-0.19686532,-0.3797936,-0.09917481,0.095729515,0.29917076,-1.1318634,0.4636757,0.17536995,0.74667513,0.3295152,0.16808571,-0.16413692,0.7868362,-0.04698314,0.09192102,0.36166975,-0.0021578257,-0.7509662,0.47229415,-0.64324516,0.31473425,0.02464062,0.028355662,0.18344013,-0.07686438,0.5048986,0.92335904,-0.10888261,0.011650656,-0.039304197,-0.24389139,0.11597155,-0.41678503,0.15591599,-0.49318138,-0.4178977,0.59321797,0.6068665,0.43386656,-0.2317447,0.027227027,0.13846129,-0.05970667,0.2691895,-0.018719474,0.002186218,-0.07929453,-0.79357624,-0.15619272,0.3138551,0.041662678,0.037196957,0.0018627369,-0.18289989,0.2711614,-0.014403064,-0.13347504,-0.015170019,-0.5838716,-0.02715135,-0.2037281,-0.43722403,0.48331207,-0.063209146,0.013387859,0.10392574,-0.036382865,-0.24578007,0.313173,-0.007113819,0.6012367,0.017976884,-0.104492314,-0.44197023,0.20712164,0.08099721,-0.13585535,0.09038444,-0.57348037,-0.0012246737,-0.6238809,0.3948701,-0.036771458,-0.33972442,-0.01672858,-0.13341188,0.16459091,0.40280426,-0.23844847,-0.19606437,-0.10875548,-0.15519343,-0.31745836,-0.42454866,-0.13104701,0.29944247,0.27098852,-0.10870095,-0.13174035,-0.102817565,0.08611875,0.4763417,0.030823244,0.4741593,0.48337027,0.19006136,-0.27075678,-0.114078075,0.20847185,0.5081584,0.13511862,-0.060266815,-0.4585403,-0.55902743,-0.31726155,0.14257543,-0.12321798,0.32333905,0.16544054,-0.1250659,0.7262839,0.06767725,1.2804809,-0.052489154,-0.3458338,0.11233489,0.591995,0.0133575015,-0.021367176,-0.34195393,0.9322994,0.4330257,-0.10738341,0.018435039,-0.62976485,-0.066618316,0.12789264,-0.26520127,-0.20427714,-0.120379046,-0.7433383,-0.2277708,0.14951293,0.38569605,0.15001503,0.08596937,0.35723412,0.089465655,0.066541225,0.2418311,-0.44159475,-0.10343965,0.3259726,0.20996127,0.008497806,-0.0275969,-0.45031342,0.28101286,-0.5128381,-0.017886817,-0.16865459,0.06506637,-0.1650757,-0.5050206,0.099769555,-0.015177882,0.40359205,-0.40050867,-0.46272993,-0.18041195,0.5470504,-0.045708224,-0.008026228,0.33692232,-0.23892544,-0.028979192,0.18130706,0.6234103,0.82093495,-0.12350594,0.074199274,0.20481242,-0.35548654,-0.79378384,0.22260642,-0.29911777,0.41611913,0.009380668,-0.21910451,-0.7350832,0.32840383,0.31473377,-0.17305122,-0.058987737,-0.50747514,-0.41623312,0.21313363,-0.3199511,-0.044071976,-0.28198257,-0.068007044,0.45747727,-0.3965731,-0.465202,0.0143621955,0.14843403,-0.26140815,-0.50596994,-0.062212475,-0.38302854,0.34741163,0.01272948,-0.39200354,-0.29976082,-0.038951874,-0.42440763,0.24138647,0.24751824,-0.38866836,0.03245666,-0.41042322,-0.0051730047,0.65195143,-0.2021653,0.14646903,-0.4180573,-0.48893908,-0.9129057,-0.4429485,0.2574474,0.1853412,-0.16713482,-0.71281326,0.1183226,-0.1700213,0.06412786,0.04593778,-0.21339384,0.47106442,0.024691941,0.5137346,-0.079554,-0.83963335,0.17270668,0.15398833,-0.102998465,-0.5281132,0.5224073,-0.071260676,0.998189,-0.0019232447,0.21836883,0.14695862,-0.5418681,-0.17630593,-0.22256985,-0.16465957,-0.53166807,0.20569783,469 -680,0.39165783,-0.28674686,-0.42994496,-0.17055002,-0.26839757,0.012411118,-0.17865655,0.45396894,0.18469885,-0.45540002,-0.10159512,-0.014693503,-0.125877,0.35409653,-0.1564561,-0.4204757,0.008173237,0.05151888,-0.5271197,0.5701556,-0.28926173,0.30257845,-0.10981006,0.28644097,0.060212724,0.37000424,0.1834662,-0.12918173,0.13980433,0.0448013,0.0008476743,0.041206364,-0.45552048,0.42823797,-0.17770377,-0.3786222,0.065545306,-0.3938684,-0.45727232,-0.6835645,0.31211382,-0.6066389,0.40506473,0.08813383,-0.22977032,0.022907188,0.3257389,0.40447375,-0.290758,-0.053445585,0.14935635,0.20013398,-0.11371365,0.05748946,0.013915961,-0.4635031,-0.62536055,-0.08839734,-0.4296189,-0.05676166,-0.34507325,0.20612074,-0.36346757,-0.09327539,0.09806083,0.45679426,-0.34954965,-0.014491077,0.22880663,-0.14065708,0.23985301,-0.6108808,-0.123439394,-0.17095631,0.45516062,-0.14815545,-0.13981815,0.23388818,0.09005387,0.41182297,-0.06378557,-0.112871446,-0.35235184,-0.053063784,-0.055437677,0.49248064,-0.13530022,-0.4105271,-0.017537566,0.009111469,0.047246553,0.113212794,0.01111026,-0.11297606,-0.12466412,-0.018781176,-0.2418891,0.2515714,0.4116082,-0.2941629,-0.23269334,0.41779897,0.6310572,-0.0012555397,-0.10119014,-0.01954671,0.16312562,-0.37902206,-0.16957489,0.00075718074,-0.006798822,0.44804227,-0.04581513,0.47421524,0.5517031,0.032323387,0.046053015,-0.014066772,-0.019896774,-0.12338478,-0.058553394,-0.24743699,0.093797095,-0.4352697,0.18105555,0.019912353,0.6384084,0.21851602,-0.78252506,0.25814924,-0.4695348,0.11989219,-0.006236685,0.46884155,0.7693213,0.3595921,0.23449406,0.70692146,-0.24863142,0.10293078,-0.15034768,-0.20726803,0.099354215,-0.1386062,0.04063564,-0.54818463,-0.06502317,0.21409193,-0.1014105,0.07501132,0.2681788,-0.4439378,-0.09553036,0.16669485,0.88222927,-0.13182053,0.019994259,0.53047353,0.93763,0.83791393,0.0959384,0.9784628,0.07231559,-0.20591189,0.39811623,-0.3529785,-0.6740965,0.27270472,0.46061662,0.3035202,0.34126422,0.15556325,-0.06090619,0.46399996,-0.41280305,0.14057629,-0.23262534,0.10841285,0.16933621,-0.07806851,-0.3118189,-0.30849096,-0.11636452,0.040871557,0.01990879,0.19219452,-0.1608196,0.18500659,0.13576461,1.760269,0.058203213,0.07483806,0.14794233,0.6334331,0.098633416,-0.35662454,-0.22825654,0.13437259,0.26202923,0.14784724,-0.53962,0.2667644,-0.13888377,-0.48824412,-0.12503529,-0.268675,-0.2200961,-0.04234809,-0.5348758,-0.1318556,-0.20343934,-0.4176648,0.3934855,-2.9961066,-0.17519492,-0.164771,0.40632206,-0.28820807,-0.20091401,-0.086499214,-0.4130383,0.37521183,0.5211715,0.42260906,-0.5671111,0.42756766,0.4374861,-0.62178004,-0.104900785,-0.48735178,0.0043113735,-0.0016427475,0.41253027,0.104767315,-0.071361236,-0.012096245,0.33172843,0.27254856,0.03226719,0.09179621,0.3433539,0.43149045,-0.020201953,0.5440891,-0.059362777,0.3207781,-0.42796454,-0.16670473,0.24979307,-0.5349342,0.22887537,-0.12715796,0.16131225,0.3911336,-0.58330274,-1.0395966,-0.78013414,-0.1710651,1.0338428,-0.0071807746,-0.17636387,0.28045732,-0.7217548,-0.123945944,-0.16869235,0.6533737,-0.029780086,-0.07507919,-0.7990661,0.00056468067,-0.17085077,0.31556436,0.04878777,-0.20424232,-0.56109256,0.694264,-0.031684842,0.67992336,0.18114184,0.1718122,-0.2914724,-0.39083284,0.043479823,0.65641403,0.26841635,0.20170794,-0.26979765,-0.15434252,-0.4373446,0.06876338,0.14553285,0.59943146,0.5031615,-0.032623906,0.10542793,0.18937752,-0.04774895,0.00015350488,-0.15754771,-0.15653977,-0.20589143,0.1398455,0.6227795,0.5268252,-0.06534323,0.24529894,-0.06006498,0.12854105,-0.35534558,-0.28017452,0.40827927,0.7897158,-0.035331488,-0.2360913,0.47129995,0.7369329,0.0053775264,0.291807,-0.6803083,-0.40846708,0.24125499,-0.07488033,-0.3657616,-0.03305914,-0.39531755,0.09165629,-0.8070052,0.21810338,-0.4328496,-0.62098515,-0.5910339,-0.004743553,-3.4950233,0.19883682,-0.018831994,-0.3166722,0.0034179597,-0.15640141,0.34240195,-0.6501405,-0.53477424,0.2027702,0.025990807,0.82758486,0.055945974,0.03200715,-0.27913204,-0.2391981,-0.27534348,0.081187434,0.056450844,0.325992,0.07703839,-0.5715989,-0.15659073,-0.14110105,-0.30457076,-0.031984333,-0.49320033,-0.37483972,-0.22340004,-0.5260115,-0.28064114,0.59031963,-0.1706613,0.124542445,-0.25459197,-0.06329029,-0.24442445,0.41156265,0.11687009,-0.046251792,0.056670647,-0.0882105,-0.05248952,-0.21965617,0.32386643,0.107070774,0.47252968,0.31935903,-0.11165916,0.24901234,0.6728893,0.5007205,-0.15243602,0.83072597,0.44795477,-0.030709453,0.25737953,-0.09316162,-0.1357846,-0.33154044,-0.21369651,-0.0044976105,-0.29577497,-0.35070637,0.11179324,-0.4619231,-0.76997375,0.35861233,-0.118582696,0.058777656,0.16244167,-0.045321032,0.47722414,-0.20343333,-0.019539384,0.0027327584,-0.09170257,-0.50824064,-0.37642235,-0.46996337,-0.46588993,0.06518661,1.1809356,-0.21879779,0.08810865,0.14387293,-0.21174754,-0.032797515,0.15626904,0.025190432,0.19094841,0.33305776,-0.08623835,-0.5464172,0.41469118,-0.24764282,-0.09325556,-0.48216152,0.20740463,0.36896643,-0.5151847,0.4177086,0.2606026,0.09592286,-0.16366124,-0.42393655,-0.19385634,-0.12905632,-0.15959321,0.24000877,0.2321594,-0.793062,0.28415072,0.077356376,-0.16412772,-0.67209435,0.6752378,0.036802802,-0.30700994,-0.16895764,0.14354068,0.19460867,-0.054180667,-0.29636562,0.2337339,-0.15067285,0.294299,0.08742729,-0.06379597,0.42913246,-0.22826226,0.11334014,-0.5990743,-0.06502731,-0.32867175,-0.21716644,0.37760094,0.1777403,0.090892985,0.18775629,-0.042484693,0.2194393,-0.22315417,0.026595125,-0.058316734,-0.3371696,0.288508,0.3629033,0.4332037,-0.4062761,0.5744345,-0.030989073,-0.035463966,-0.073960274,0.10904003,0.32019836,0.09101462,0.4282633,-0.15924142,-0.2844892,0.3223286,0.81098163,0.28855836,0.24789454,-0.053056955,-0.10711701,0.30963105,0.089091495,0.054778796,0.08586466,-0.614087,0.07234431,-0.192199,0.15128866,0.37169743,0.050053317,0.13909562,-0.11863402,-0.32746425,0.02617836,0.13186556,-0.12103589,-1.2577817,0.50553167,0.14439754,0.9021447,0.51258093,-0.04103645,0.020367738,0.82185304,-0.05063717,0.16446082,0.3383153,0.049520567,-0.44724348,0.5228729,-0.6082572,0.6252314,0.12131989,-0.06080943,0.010475055,-0.099266924,0.37539244,0.7342664,-0.119579405,0.05266107,0.040102933,-0.31662023,0.087448545,-0.23127797,0.0995192,-0.74413556,-0.18057145,0.57269675,0.59859765,0.32619843,-0.090782,0.007624351,-0.06450946,-0.045075003,0.15480322,-0.13123009,0.0040324377,-0.044360377,-0.76572984,-0.0125963185,0.4547377,-0.00089172676,0.24104108,0.08574458,-0.30081776,0.14901362,-0.077117555,0.067711286,-0.09873311,-0.5956895,0.011069975,-0.2964647,-0.1371523,0.6291033,-0.2654925,0.31107572,0.27383298,0.02872467,-0.1858616,0.41797206,-0.064723425,0.6815988,-0.08041418,-0.009294083,-0.3772877,-0.086496994,0.21261214,-0.24820283,-0.1349174,-0.45507452,-0.016806712,-0.63198286,0.371,0.11061588,-0.23071326,0.2094915,-0.22552332,0.18950166,0.5116081,-0.11970021,-0.1655259,-0.13247919,0.03638282,-0.234824,-0.15618251,-0.19812404,0.37936303,0.014141931,0.15713388,-0.036248058,-0.1129433,-0.034436278,0.36831018,0.105909154,0.33178288,0.35186327,0.1913383,-0.27396473,-0.014648474,0.060334187,0.64452654,0.059238553,-0.06640789,-0.37144312,-0.4650075,-0.34309414,0.16338855,-0.059662644,0.29824883,0.08818836,-0.25052875,0.52404594,-0.10768226,1.0848857,-0.016792594,-0.3619285,0.15119551,0.40799934,0.064767495,-0.01329134,-0.39075246,0.71267086,0.43576685,-0.09316797,-0.14717868,-0.2578216,-0.040135484,0.11905714,-0.13295019,-0.26098987,-0.027669106,-0.76205856,-0.23891038,0.28744662,0.16332348,0.19657254,-0.01902897,-0.018408217,0.12936231,-0.04012892,0.22546461,-0.41757795,-0.10142905,0.28249028,0.21413949,0.096950844,0.08147964,-0.58290625,0.43391684,-0.6225944,0.019059297,-0.18258968,0.25295335,-0.3237079,-0.34299275,0.19764009,0.11715695,0.5185117,-0.14638022,-0.3340435,-0.2890884,0.61332947,0.1734101,0.1426904,0.40313628,-0.1504785,-0.019911302,-0.036594465,0.48192486,0.78183705,-0.41169208,-0.010138402,0.28287208,-0.31991693,-0.4804157,0.12816356,-0.48870704,0.22809432,0.14749135,-0.13268282,-0.47890833,0.3304095,0.3057182,0.15385808,-0.08273796,-0.6739505,-0.30162022,0.14729787,-0.36214522,-0.23305362,-0.35508063,0.12647113,0.47426298,-0.24586917,-0.19376789,0.1740358,0.3997517,-0.049470887,-0.5508012,0.026424063,-0.36190736,0.22325894,0.039392628,-0.386081,-0.43365282,-0.055123147,-0.38114598,0.26212925,0.18761604,-0.43763632,-0.038122036,-0.42487592,-0.19774716,1.0299853,-0.10619941,0.21850055,-0.36497226,-0.25515202,-0.77582455,-0.37307656,0.47589552,0.33114326,-0.16725738,-0.42720574,-0.01109335,0.00786133,-0.020895757,-0.07211428,-0.38790002,0.39133167,0.13063666,0.46319884,-0.009487675,-0.8376239,0.06692942,0.040306766,-0.23834261,-0.446105,0.5336,-0.029945333,0.9912479,0.040512268,0.09779506,0.20849006,-0.521067,-0.10127906,-0.1952798,-0.1405301,-0.60225207,0.097133115,470 -681,0.46494067,-0.31955165,-0.49006227,0.0074068583,-0.27775788,-0.13978687,0.027098903,0.36092678,0.30686748,-0.14702085,-0.17654663,-0.18210533,0.08032934,0.43788052,-0.07854676,-0.7004143,-0.12874462,-0.0034137666,-0.6080962,0.45479208,-0.543875,0.37339422,0.16227725,0.2820764,0.073135704,0.39920872,0.11830132,-0.11945543,-0.16772032,0.10323822,-0.34143606,0.1533613,-0.571454,-0.039720498,-0.037749466,-0.39030567,0.13063289,-0.47311223,-0.24909988,-0.6063393,0.13955584,-0.81281865,0.5486625,-0.01626319,-0.058334075,-0.024859034,0.039333366,0.33588105,-0.43497747,0.06367464,0.0946511,-0.19412503,0.069245785,-0.52050155,-0.10534281,-0.3531224,-0.48890203,-0.06328305,-0.6043472,-0.389686,-0.11477196,0.046717443,-0.45090505,-0.096065395,-0.111121945,0.28307343,-0.49938604,0.112065434,0.37904108,-0.122008614,0.12529041,-0.44965234,-0.039907806,-0.09571245,0.26760802,-0.13098882,-0.23257956,0.43051666,0.35872254,0.29925883,0.23291829,-0.3558971,-0.19497606,-0.07903829,0.098041624,0.50369006,-0.2514022,-0.45287913,-0.11316535,0.30780733,0.2809032,0.4479067,0.1583958,-0.04987316,-0.09208527,0.01860955,-0.20116733,0.40694508,0.5265518,-0.2781521,-0.42635548,0.35456488,0.5897447,0.14038357,-0.09021192,0.021805223,0.0013368806,-0.4240434,-0.22223602,0.060726427,-0.18805665,0.4200641,-0.057409365,0.1649778,0.871693,-0.37715986,0.06211189,0.101159625,-0.06276436,-0.17995217,-0.28473428,0.0066250013,0.1306889,-0.49336654,0.044793963,-0.18857387,0.82615334,0.298692,-0.7756427,0.38436604,-0.5722743,0.14542875,-0.12690543,0.6704035,0.63945144,0.5646906,0.3962136,0.74433583,-0.4269363,0.19839834,-0.025074009,-0.6575501,0.19077192,-0.29583046,-0.06539677,-0.5810428,0.07291005,0.006514258,-0.05778329,0.104431316,0.31173712,-0.66911435,0.011140933,0.19532332,0.85943544,-0.36814684,-0.15318862,0.6744401,0.960346,0.8398578,-0.056873064,1.1324717,0.29392093,-0.23706509,0.35526708,-0.5119106,-0.68739384,0.15880649,0.42835903,-0.5154568,0.4792691,0.05975804,-0.13987055,0.15263966,-0.10849651,-0.016942225,-0.058343694,0.34426963,0.07358846,-0.21160175,-0.40184563,-0.19303538,-0.25793526,-0.20872349,0.04340434,0.3300533,-0.32779124,0.4159185,-0.11456793,1.5591779,0.0452593,0.10811183,-0.059980307,0.5981748,0.31762716,-0.013713418,-0.057215407,0.62664986,0.2733196,0.13438052,-0.57490194,0.2587354,-0.30869082,-0.6050586,-0.07539826,-0.4264147,0.08380635,-0.07102936,-0.33787107,-0.09709096,-0.11804439,-0.23126748,0.4571519,-2.763409,-0.22777136,0.033063214,0.37295532,-0.3618288,-0.3456531,-0.005778203,-0.47685972,0.060651146,0.2548591,0.5487095,-0.8001559,0.47258684,0.42772028,-0.42800045,-0.2779391,-0.61978954,-0.05201306,-0.065631166,0.43279216,-0.057158526,0.01554497,0.022407008,-0.027606914,0.7283039,-0.10548806,0.032323018,0.42529356,0.47520873,0.12683572,0.5039386,0.031439956,0.7045087,-0.35562816,-0.14121386,0.23960015,-0.23427366,0.24858437,0.1297567,0.06315397,0.40223947,-0.440436,-1.0578719,-0.41126245,-0.17337526,0.9207331,-0.43537867,-0.20667814,0.21705683,-0.21413061,-0.13294917,-0.15144552,0.46048135,-0.04256963,0.11106999,-0.51973057,0.16003507,-0.083157375,0.008762281,0.0447992,0.05191162,-0.16117246,0.5914503,-0.024987984,0.61499727,0.118648894,0.2109113,-0.20564602,-0.32058594,0.11583759,0.76742077,0.2985055,0.015698595,-0.034470797,-0.28159672,0.004238931,-0.12120188,0.1299641,0.4654565,0.9017246,-0.05805128,0.14947869,0.39711654,-0.03825516,0.018987156,-0.07727747,-0.1669322,-0.00045599847,0.05207265,0.3561298,0.7469037,-0.41505656,0.6699118,-0.1315323,0.49794608,0.007382952,-0.6479673,0.60946137,0.62298656,-0.1334301,-0.019641988,0.48837274,0.39879587,-0.63338184,0.43250528,-0.60184634,-0.11672656,0.7665486,-0.20264374,-0.30550945,0.3920315,-0.075858116,0.11634838,-1.0163487,0.36834285,-0.18932328,-0.4630007,-0.36480346,-0.08991533,-3.772402,0.20184313,-0.3051852,-0.20137277,-0.20612353,0.041422166,0.058871888,-0.76067543,-0.46331736,0.1524988,0.29448837,0.5253377,-0.12620626,0.2395273,-0.19642814,-0.1639671,-0.20500205,0.12473573,-0.010977305,0.270576,-0.21561678,-0.3969019,-0.12665406,-0.057148658,-0.66486037,0.3647637,-0.54158264,-0.4825673,-0.07966623,-0.6905089,-0.2675919,0.7134644,-0.15735668,-0.17766438,-0.2508845,0.14652252,-0.23252736,0.264945,0.01388739,0.13606623,0.086273745,-0.09590785,0.221009,-0.3764773,0.43547016,0.046647456,0.702582,0.19543102,-0.17008239,0.07726049,0.5628784,0.62804514,-0.012623865,0.7631474,0.344464,-0.2745185,0.42773947,-0.41733748,-0.1817743,-0.67461115,-0.5483342,-0.14737283,-0.34874365,-0.5545838,0.020794878,-0.2774688,-0.8300692,0.6324182,0.0147717,0.43547535,-0.10851341,0.43322754,0.5434058,-0.22170442,-0.071638495,-0.15437225,-0.2667572,-0.57161605,-0.1284261,-0.61559683,-0.5223637,0.21413547,0.9351451,-0.37360904,0.07593788,-0.27746642,-0.16779591,-0.0027548005,-0.0015313992,0.04518091,0.4304569,0.20061725,-0.20562026,-0.6903636,0.45528156,0.017116722,-0.22301711,-0.46241555,0.016797602,0.5564662,-0.7736646,0.56098634,0.074158974,0.026998933,0.19815913,-0.47070315,-0.12725528,0.03616466,-0.1422273,0.24454077,0.14053503,-0.83981293,0.46374124,0.5790397,-0.5853501,-0.6114396,0.13294646,-0.018413447,-0.3029752,-0.14261031,0.22283602,0.15825449,-0.07866723,-0.18551356,0.18513666,-0.51194006,0.29308298,0.16942343,-0.09335538,0.26272538,0.07733512,-0.4479917,-0.75725543,0.2154105,-0.4546866,-0.1933377,0.3636352,0.09313411,0.00085401995,0.05457913,0.25697815,0.37310192,-0.42037576,0.047662996,0.16804324,-0.46389326,0.24963981,0.4670696,0.3698714,-0.43273354,0.4160511,0.20730904,-0.2696894,0.13985491,0.043653168,0.51441616,0.046603844,0.19348238,0.15079601,-0.30604637,0.40358955,0.7057794,0.09468404,0.55091864,0.16826397,0.04186368,0.42497462,0.15630467,0.06063927,0.20141408,-0.39938685,0.23140973,0.19280913,0.2239592,0.5917852,0.43611315,0.19997492,0.07444926,-0.20631708,-0.026302058,0.36646932,0.020882245,-1.1543972,0.30292556,0.34060642,0.8217445,0.36827552,0.19889584,-0.13336393,0.68069834,-0.18732038,0.06608394,0.39766663,-0.14423053,-0.6372779,0.7093783,-0.6561583,0.52756304,-0.09789773,-0.08782439,0.08131818,-0.0017786187,0.39551815,1.0044729,-0.24390186,-0.12551059,-0.025164586,-0.11379034,-0.016488846,-0.4497399,-0.053012677,-0.45217472,-0.2897592,0.6776995,0.22774476,0.27501184,-0.011870204,-0.050990764,0.12974904,-0.20117106,0.37404597,-0.06190942,0.15662855,0.113194376,-0.48600438,-0.32352698,0.6506927,-0.020465164,0.24284495,-0.26812473,-0.24779616,0.23914215,-0.22234176,-0.31675127,0.011283732,-0.5643297,0.30101398,-0.1521855,-0.6460504,0.48674452,-0.093409695,0.26131776,0.24253093,-0.00025002172,-0.27451527,0.28263676,0.17015935,0.8289718,-0.16614506,-0.41792154,-0.37527138,0.21877597,0.17909454,-0.3191921,0.22962059,-0.24389932,-0.036517628,-0.5203858,0.6762116,-0.031057596,-0.47395563,0.005651286,-0.1628935,-0.063223764,0.44178736,-0.077698246,-0.15809217,-0.24045658,-0.23690608,-0.4228999,-0.15733679,-0.22548944,0.27604848,0.29357406,-0.23214811,0.03673286,-0.17729561,0.11285948,0.6098432,-0.031899765,0.42227834,-0.030977456,0.0829441,-0.20798498,-0.0820866,0.31129682,0.3146412,0.04605814,0.14002748,-0.4350039,-0.2834223,-0.29214844,-0.08676065,-0.21439226,0.32901147,0.04304495,-0.36401013,0.921671,-0.0010338334,1.4267461,0.009748628,-0.2460363,0.100674465,0.56526625,-0.037134048,-0.0009891575,-0.39887968,1.1395621,0.6530036,-0.04013175,-0.13174325,-0.58845943,-0.2884085,0.3699621,-0.45659402,-0.16859634,0.1153053,-0.3931972,-0.4887316,0.25762904,0.07570772,0.27472454,0.024927814,0.029017888,0.17114703,0.06035894,0.11754001,-0.47130007,-0.35149992,0.15732907,0.18592356,-0.059031446,0.14127561,-0.5306161,0.41644585,-0.5957876,0.3962455,-0.2678662,0.18812507,-0.11102454,-0.46143392,0.13121751,0.032125615,0.38829824,-0.23755851,-0.3953605,-0.039249346,0.468301,-0.017905818,0.1723825,0.68744975,-0.28916293,0.03775505,-0.03293516,0.45277756,1.2636836,-0.22563502,-0.076828636,0.34546143,-0.45603555,-0.72232616,0.60420346,-0.16860925,-0.06239722,-0.25250813,-0.36601856,-0.51116693,0.27379873,0.23055166,0.16862835,0.062923744,-0.4290817,-0.2305994,0.2447621,-0.4790626,-0.23007125,-0.2921075,0.41706747,0.9764117,-0.3053518,-0.29431984,0.19582242,0.11633588,-0.24374372,-0.35438892,-0.15879491,-0.114061765,0.3656581,-0.01531981,-0.20403257,-0.004316963,0.21191421,-0.21320699,0.043974288,0.2194407,-0.3991719,0.2680379,-0.138495,-0.12365743,0.9478044,-0.28491196,-0.101488866,-0.7288901,-0.54219866,-0.8853419,-0.6030073,0.40979576,0.04735223,0.012436484,-0.56094486,0.065268755,0.07922184,-0.3995755,-0.06944268,-0.58096623,0.30927607,-0.01575267,0.2945865,-0.2703708,-0.9429463,0.18273929,0.22536659,0.008831634,-0.89155644,0.57690895,-0.2680799,0.84667075,0.1066814,-0.11506856,0.3028321,-0.35156476,-0.01331148,-0.46015352,-0.22799836,-0.66975623,0.041471504,479 -682,0.38969797,-0.29060543,-0.2663957,-0.11714233,-0.13108118,-0.07289187,-0.12515196,0.49373004,0.19919012,-0.28955537,-0.093853146,-0.23619193,0.050282534,0.24608923,-0.14966248,-0.6367692,-0.00320985,0.28522092,-0.270581,0.4734952,-0.5587191,0.20496355,-0.22184001,0.39116177,0.12840138,0.108650334,0.022894073,-0.16656138,-0.07391688,-0.27116483,-0.19154842,0.33272326,-0.56326187,-0.036964934,-0.04069362,-0.37722492,0.05092412,-0.4957345,-0.2905173,-0.8968311,0.27246246,-0.74483365,0.43637624,0.15690678,-0.24305765,0.416223,0.082771726,0.33975542,-0.25676265,-0.03203971,0.20537655,-0.123842,0.06636779,-0.19087921,-0.17720453,-0.24642505,-0.63064206,0.07048765,-0.22036567,-0.23919442,-0.26070815,0.20332097,-0.34668472,-0.11685333,-0.16280161,0.61614037,-0.39093626,0.12643759,0.0034058462,-0.1593323,0.2570468,-0.5612141,-0.2314991,-0.13873616,0.1589032,-0.12333167,-0.22146481,0.34574965,0.26304188,0.35150734,-0.11412993,-0.16886112,-0.38225392,-0.055584982,-0.015766643,0.50752074,-0.17463091,-0.5525947,-0.01657453,-0.011177695,0.03180044,0.14719924,0.16960427,-0.2238175,-0.21248291,0.11950926,-0.4037312,0.46074423,0.53092295,-0.36398178,-0.27102214,0.24752945,0.43957335,0.18760441,-0.11623517,-0.12983185,0.015051087,-0.6111193,-0.113290735,0.12518857,-0.3848602,0.534628,-0.30781123,0.1761241,0.6327734,-0.27774718,-0.06229382,0.04538822,0.15002576,0.09330916,-0.4066772,-0.48112524,0.33564758,-0.3030904,0.28387135,-0.33850747,0.91291326,0.21637847,-0.6245507,0.39686888,-0.6222864,0.19399871,-0.06158708,0.5701441,0.5552681,0.34661433,0.54240286,0.5553331,-0.3191128,-0.0029621674,-0.018887222,-0.23741971,0.044054627,-0.18611191,0.03861421,-0.34462547,-0.037932232,-0.09184202,-0.17104897,0.1155942,0.36307353,-0.49009305,0.060173567,0.14840303,0.7748218,-0.29971978,-0.03605555,0.6130259,0.9426437,1.1857355,0.1371089,0.9484594,0.26614702,-0.25756794,0.22487181,-0.28086954,-0.7177852,0.34570682,0.312149,-0.18825828,0.15765318,0.050151944,-0.04441841,0.34123978,-0.39460367,-0.09279744,-0.11617914,0.19028275,0.35401395,-0.071071856,-0.41226482,-0.44542724,-0.2586658,-0.0058756517,-0.004834819,0.2241332,-0.2720035,0.14984305,0.1232154,1.5246613,0.10882731,-0.022759655,0.13754065,0.5465782,0.10509081,-0.08265771,0.034993097,0.39013803,0.31367317,0.117795855,-0.6722657,0.10424492,-0.1766749,-0.40186608,-0.10587435,-0.17772517,0.0103564765,0.11315211,-0.45333093,-0.21532948,-0.21490589,-0.24735083,0.46882904,-2.498413,-0.09292466,0.07113424,0.40265882,-0.18865837,-0.43114412,-0.07990874,-0.5343421,0.44182867,0.2906455,0.4053485,-0.6931144,0.25961003,0.47890857,-0.47993743,-0.17156993,-0.72080386,-0.26198527,-0.09148069,0.18382852,-0.0028129725,0.13118914,-0.014330594,0.07065381,0.48617035,0.07968081,0.074919924,0.24258725,0.3790859,0.08153557,0.49538466,0.017760845,0.40980476,-0.18639752,-0.14299855,0.2070469,-0.5474497,0.12520656,0.02337017,0.015784632,0.49349028,-0.47134346,-0.8617743,-0.5661478,-0.25121778,1.2514383,-0.17007817,-0.39601284,0.27406687,-0.18296202,-0.17169641,-0.2721759,0.42770416,-0.24639456,-0.32940477,-0.7371876,0.02398667,-0.08917637,0.2938938,0.031533606,0.0017494765,-0.35686225,0.6868257,-0.036323544,0.3123861,0.33440492,0.070049375,-0.32253388,-0.6178952,-0.10168206,0.77632564,0.23397739,0.16241026,-0.26820067,-0.22235486,-0.14183912,0.038129702,0.02149564,0.43636507,0.6535951,-0.22056785,0.16492556,0.3043732,-0.014363931,-0.0033610738,-0.16423172,-0.26497933,-0.07922811,0.008703103,0.5628609,0.657091,-0.19286548,0.37230846,-0.028841317,0.1893163,-0.24690355,-0.26821387,0.39500067,1.3300744,-0.12202323,-0.2742434,0.566082,0.35431913,-0.36617997,0.3986712,-0.5030292,-0.18028353,0.4863854,-0.27207357,-0.41431966,0.13449016,-0.23648089,0.0014323466,-0.6214166,0.3958177,-0.08708931,-0.35460123,-0.6403735,-0.107139416,-3.2126613,0.13202275,-0.26144338,-0.21243364,-0.18286814,-0.081636354,0.06904316,-0.56108445,-0.6532069,0.19504881,0.17886904,0.635211,-0.088929646,0.11969283,-0.23458287,-0.30791405,-0.45593196,0.11626393,0.1420142,0.35560486,0.1714468,-0.42053515,0.0075652874,-0.03483508,-0.4084476,0.16155115,-0.5379554,-0.36552656,-0.097214855,-0.60076046,-0.46585524,0.64197856,-0.36413208,0.03986079,-0.17624341,-0.07517909,-0.11495188,0.45599616,0.13309576,0.12158251,-0.13257143,-0.02640659,0.025697025,-0.18500589,0.281587,0.0012934575,0.1631709,0.2574019,-0.031659234,0.096565045,0.41998944,0.7282584,-0.028078636,0.91309273,0.54559255,-0.05171961,0.28158367,-0.3412774,-0.1872789,-0.5444099,-0.3086866,0.012595003,-0.3650034,-0.3991877,0.017530737,-0.31130153,-0.73946345,0.52927995,-0.20829138,0.08117519,0.12632664,0.23832399,0.5496102,-0.043128755,0.049869753,0.05760139,-0.066623636,-0.49515718,-0.191806,-0.64260256,-0.27790648,0.29136306,0.88346016,-0.2233247,-0.023139307,0.02695813,-0.18887725,-0.11035749,0.13568428,-0.060574096,0.2418902,0.47783643,0.04741587,-0.65823257,0.32644004,0.05372761,-0.18142924,-0.5185365,0.19041386,0.7027038,-0.7321454,0.5935577,0.2353563,-0.047393158,-0.101906165,-0.45079672,-0.31121314,0.049580853,-0.26370722,0.3850096,0.15489075,-0.7421526,0.4253316,0.35800645,-0.18544064,-0.70537305,0.35356152,-0.005867399,-0.5061224,-0.106776275,0.37633684,0.074245736,0.18275896,-0.07933279,0.2518439,-0.5059045,-0.013690912,0.27584472,-0.110255666,0.113374956,-0.1675815,0.028687665,-0.7867546,0.05782682,-0.4280748,-0.31841245,0.13816,0.24059357,0.03618499,0.34380165,0.09771776,0.36225173,-0.104650006,0.1039375,-0.08799085,-0.081879325,0.2621768,0.4171589,0.4619482,-0.3446657,0.6039991,0.071035735,-0.094566345,-0.050225,-0.13421567,0.24246076,0.0470953,0.3726394,0.062233493,-0.29499513,0.38292143,0.72550994,0.2636645,0.5977366,-0.015489734,-0.009813162,0.30709144,0.13708515,0.22459039,-0.024705576,-0.48003948,0.06295141,-0.23979503,0.099396,0.5183478,0.04247709,0.27965254,-0.12270229,-0.19770098,0.015254388,0.30505493,-0.15167196,-1.0622377,0.37101644,0.1594189,0.84809846,0.6260608,-0.01151719,0.11257232,0.57847154,-0.28461555,0.052691616,0.31246153,0.12808622,-0.51550287,0.5752798,-0.6788698,0.33991468,-0.19223492,0.101688266,-0.13147381,0.05867881,0.40634376,0.5714092,-0.23547922,-0.037308518,-0.091356955,-0.21084279,0.19109347,-0.42489237,0.17483704,-0.50205415,-0.24352866,0.6237312,0.42322233,0.30134347,-0.3009154,0.10350033,0.10676826,-0.169216,0.15923288,0.0634754,-0.11589698,-0.0044707814,-0.69898605,-0.07245524,0.6609592,-0.18905717,0.08535076,-0.06886852,-0.14344479,0.18178664,-0.26903397,-0.16758479,-0.008076773,-0.6985257,-0.008129717,-0.14985725,-0.41639492,0.402243,-0.014703567,0.28889486,0.29198244,0.13828991,-0.3308573,0.22873066,0.34079537,0.541469,-0.117623165,-0.005319587,-0.3254966,0.23882093,0.03184732,-0.089802265,-0.025405837,-0.17701899,-0.08508389,-0.3394856,0.40364203,0.005046707,-0.29462305,-0.121092215,-0.08408345,-0.04656631,0.5901,-0.17358865,-0.01659197,-0.082700625,-0.30733484,-0.21780278,-0.22467087,-0.07797395,0.29058906,0.15380135,-0.16339114,-0.18893164,-0.23683871,-0.2239589,0.55341613,-0.08054121,0.34355816,0.30699342,0.1274973,-0.26828438,-0.26912636,-0.14034835,0.56407726,-0.003660147,-0.243799,-0.21945731,-0.42799,-0.2944527,0.1721135,-0.13560551,0.4158252,-0.020522278,-0.436632,0.7822161,0.054519698,1.1730683,-0.079865016,-0.41366702,0.09711027,0.3959565,0.02262673,0.014049315,-0.38195065,0.871509,0.38737854,-0.19502391,-0.08957524,-0.29522616,-0.018799443,0.29680303,-0.059897926,-0.082235664,0.044251904,-0.5443676,-0.30119544,0.2381354,0.19788414,0.108767636,-0.10102567,0.07668103,0.32426384,0.07859976,0.39811146,-0.24828616,-0.005082974,0.22702001,0.20604222,0.19722417,0.16104129,-0.31603268,0.308449,-0.2996963,0.15761563,-0.35635123,0.21460119,-0.06519757,-0.2093388,0.29970104,0.15822817,0.3204635,-0.27506813,-0.38518393,-0.26394218,0.41380072,0.02070001,0.22441237,0.39710525,-0.24847716,0.042621143,0.031754535,0.60825634,1.0103569,-0.061175868,-0.074004054,0.32502142,-0.4838463,-0.6558314,0.45209163,-0.18259433,-0.15593466,0.07857306,-0.121327244,-0.5976673,0.18807885,0.2492017,0.23706895,0.24608847,-0.5023367,-0.4109698,0.37764496,-0.41418082,-0.17429782,-0.2941267,0.16224486,0.6857822,-0.28189933,-0.39759383,-0.014582327,0.111139536,-0.23570636,-0.52275664,-0.08352829,-0.6087716,0.40190536,0.05323744,-0.30936903,-0.09738697,0.16344541,-0.53178287,-0.058239285,0.14555813,-0.33818755,0.179283,-0.27530444,-0.057557087,0.9356591,-0.19798425,0.2526424,-0.5714459,-0.56688225,-0.93941295,-0.2639699,0.6558907,0.09155154,0.063300565,-0.668529,0.048640914,0.03790241,-0.42433923,-0.070006326,-0.40370685,0.5083679,0.27193645,0.28531435,-0.059043936,-0.61101174,0.012906143,0.016461708,-0.19037768,-0.4875329,0.44673803,0.00886366,0.80846477,0.033554055,0.08550538,0.117894225,-0.31054962,0.1424885,-0.12837031,-0.2847175,-0.61555743,0.025539454,484 -683,0.36313927,-0.3790143,-0.3228584,-0.087354496,-0.22513638,0.011488942,0.051946037,0.57417923,0.02965292,-0.37962893,-0.117036216,-0.08115336,-0.09269293,0.13110767,-0.083935335,-0.05116925,-0.2353425,0.10060028,-0.37800202,0.45166126,-0.36132747,0.2026007,0.002332912,0.29830724,0.09339813,0.19648519,-0.07542475,0.090607695,0.088412285,-0.17004688,-0.035566453,0.14308298,-0.58230585,0.18481511,-0.085150704,-0.40431228,0.009824202,-0.4676058,-0.29898977,-0.62878704,0.31011838,-0.8948832,0.43484864,0.045194488,-0.38355556,0.4326014,-0.26601526,0.3321381,-0.15656915,-0.00905763,0.3346658,0.06940765,0.04582813,-0.07929906,0.13238026,-0.2652521,-0.4298324,-0.09737266,-0.10008236,-0.17750248,-0.1426892,0.008901209,-0.21966356,0.0591924,-0.1778536,0.28926912,-0.35988137,-0.0914892,0.18251003,-0.104559295,0.38831902,-0.6291099,-0.024014,-0.22891371,0.18255672,-0.25721562,-0.19897403,0.20348364,0.16496332,0.48351896,-0.22574756,-0.028042546,-0.23345691,0.066881515,-0.111884005,0.37735826,-0.114932746,-0.22754073,-0.079438105,-0.0761846,0.107602134,0.19695161,0.11380903,-0.24679068,-0.05495298,0.13817066,-0.10872274,0.116731375,0.35696432,-0.24487494,-0.25864604,0.2979077,0.58597624,0.12398122,-0.025168657,-0.2073218,0.0065666856,-0.50212365,-0.07608132,0.039383017,-0.41237456,0.55870557,-0.01861477,0.08262442,0.48874775,-0.15432034,-0.025684148,0.060587768,0.036362268,-0.022847231,-0.42457172,-0.39790598,0.3874759,-0.39539778,0.14592281,-0.09412743,0.44547632,0.048192043,-0.6142947,0.20764868,-0.4363876,0.0034841322,-0.081223965,0.38336557,0.5947734,0.42068562,0.10827499,0.67899776,-0.5771664,-0.018656552,-0.23717627,-0.09835135,0.16179278,-0.063566245,-0.029666662,-0.54892886,-0.10977602,0.045370873,-0.20824337,0.012129087,-0.12740459,-0.63397694,-0.0434732,0.3263003,0.5368005,-0.24977154,0.17702326,0.625926,1.0621989,0.73145556,0.20048968,1.1419836,0.0893154,-0.13534018,0.38574663,-0.16762103,-0.7645795,0.10418634,0.40453148,0.0566951,0.11787072,0.1449452,0.12288319,0.4089766,-0.338076,0.05000125,-0.26123816,0.30580574,0.1364751,-0.19541131,-0.4602576,-0.17813395,-0.05831911,0.3197926,-0.16434084,0.18771039,-0.26341113,-0.040043257,0.13783601,1.4780132,-0.17542961,0.11303055,0.22771071,0.25318652,0.08471819,-0.19840632,-0.10513782,0.25661546,0.4542657,0.11324986,-0.4754984,0.34434363,-0.11115393,-0.45865625,-0.103592284,-0.2097782,0.13779606,0.005444224,-0.41866487,-0.19911385,0.015755828,-0.29232317,0.5085939,-2.9080265,0.017121397,-0.2619824,0.34870645,-0.29151827,-0.37840587,-0.02777284,-0.26520893,0.34172827,0.4398732,0.43551058,-0.5729381,0.102674395,0.27038896,-0.60456795,0.02118349,-0.53700507,-0.22582571,0.022725467,0.27013785,0.29464203,-0.020322012,-0.004680835,0.050507147,0.33021492,0.09333165,0.073568694,0.32228562,0.22832632,0.0034740842,0.46532902,-0.043525193,0.36992285,-0.2469735,-0.16196299,0.27875865,-0.226147,0.099940434,0.073742256,0.20773202,0.2600709,-0.39974082,-0.7381572,-0.7330829,-0.22442132,1.3509681,0.00035155966,-0.4356531,0.28726995,-0.44495112,-0.36204025,-0.13322145,0.27554426,-0.08724281,-0.1353381,-0.84992826,-0.017594108,-0.2608158,0.38458696,0.029217703,-0.19659151,-0.6011032,0.67985713,-0.0083162375,0.5269203,0.52228075,0.14840676,-0.04548556,-0.3088613,-0.121991664,0.8014698,0.43331578,-0.007539742,-0.032293413,-0.015619239,-0.24492548,0.1479418,0.29242247,0.32938883,0.5861312,-0.054731123,0.040458057,0.04841653,-0.032912545,-0.023587713,-0.00013341125,-0.17542283,-0.11606209,-0.13823462,0.4795473,0.50695306,-0.09650918,0.23460276,-0.18294437,0.22407508,-0.057974156,-0.4891836,0.31113863,0.73872125,-0.14051008,-0.20870623,0.62304604,0.56858546,-0.099396706,0.30866617,-0.4919907,-0.07964575,0.2188185,-0.08175226,-0.4208712,0.15645303,-0.40270934,0.21475789,-0.7325615,0.18356206,-0.37719786,-0.44505337,-0.72869956,-0.21967578,-2.3674054,0.28417647,-0.14299065,-0.2250234,-0.07083417,-0.19409752,0.41526604,-0.6898114,-0.5639733,0.22332583,0.03001657,0.5411198,0.02688502,-0.16384634,-0.220377,-0.25665653,-0.13756418,0.17584588,0.08125635,0.12906107,0.078419924,-0.44010654,-0.21731088,0.0021722019,-0.40889886,0.033695534,-0.6921192,-0.4170037,-0.17184916,-0.4746068,-0.31636384,0.5899621,-0.22816303,-0.001985284,-0.13584429,0.038348787,-0.07157171,0.23182583,0.041211147,0.2540475,0.123902634,0.026333291,-0.039942123,-0.26265243,0.1331864,0.22473095,0.1319002,0.2852115,-0.36558276,0.08653314,0.47658074,0.6265805,-0.18123068,0.81294906,0.73746884,-0.16139036,0.20153467,-0.23770165,-0.17407902,-0.41997844,-0.3025308,-0.08726247,-0.39994043,-0.45162246,0.09157757,-0.21256098,-0.6494229,0.62660253,-0.09903869,0.031181565,0.23286365,0.13574171,0.43930838,-0.25944027,0.06538845,-0.08078074,-0.018017402,-0.43832833,-0.39719063,-0.4863621,-0.36394197,-0.1503115,1.1557103,-0.1548059,0.21099006,0.12679873,-0.3011492,0.16426131,-0.00854434,-0.07482021,0.08551932,0.42426914,-0.05412696,-0.51388484,0.36501583,0.0920138,-0.1007736,-0.5984625,0.19256212,0.55041796,-0.5205469,0.4250776,0.15049574,-0.02073233,-0.20878448,-0.48041776,-0.25336125,0.009374132,-0.3390637,0.27143443,0.18281955,-0.6394998,0.22584938,0.3814673,-0.04133181,-0.6153634,0.50096184,-0.054810926,-0.35855022,-0.12774624,0.27743915,0.0077424785,0.09825866,-0.0051273406,0.35752138,-0.35467723,0.19943771,0.4540376,-0.020799499,0.20937449,-0.21002898,0.1863816,-0.6581752,0.1537073,-0.27208254,-0.10337908,0.3725176,0.061281208,0.05544334,0.39067873,0.30812597,0.3521485,-0.3253236,0.14916097,-0.10580586,-0.3594399,0.32931238,0.43395218,0.4450228,-0.25230125,0.38523838,-0.0029188967,-0.13917267,-0.18951797,-0.05252729,0.5081757,-0.056854643,0.13664979,-0.32147372,-0.20356329,0.25210744,0.68560463,0.08116984,0.30294803,-0.19519332,-0.06175256,0.1631502,0.039476093,0.19323209,-0.01668069,-0.56702036,0.32189783,0.00076687336,0.21200754,0.2499191,0.07065757,0.1133423,-0.23144963,-0.25801405,-0.046264455,0.14040893,0.17513797,-1.0591261,0.40543252,0.078512624,0.74815327,0.5695,0.10217551,0.04764647,0.39084145,-0.10791151,0.1312557,0.23710534,-0.033622377,-0.4514825,0.37885353,-0.6047534,0.39019835,0.13431652,-0.09363193,0.089541435,-0.17445676,0.40422648,0.7374429,-0.24896969,0.024115054,-0.052978653,-0.26109427,0.045379758,-0.3002226,0.14846037,-0.5381918,-0.36833414,0.6105654,0.51789826,0.37175095,-0.25138667,-0.026060088,0.13801269,-0.06281039,0.26003247,-0.075529926,0.06392648,0.20002754,-0.5064768,-0.013182847,0.33571845,-0.07326106,-0.021802617,-0.15998012,-0.30037436,0.11178664,-0.06524981,-0.08895634,-0.083206646,-0.66366476,0.16853389,-0.47273877,-0.10245769,0.31040192,-0.091352805,0.1770563,-0.023468686,0.0137981875,-0.17809552,0.2899442,0.0015682166,0.7469968,-0.09848188,-0.0037004764,-0.3738941,0.13109101,-0.017959429,-0.07401551,0.080189295,-0.26422068,-0.01780758,-0.6162916,0.25084403,0.083995506,-0.18776067,0.18002954,-0.22824004,0.11097327,0.43083823,-0.11946849,-0.18617003,-0.10321966,-0.051178914,-0.0830298,-0.23908383,-0.16149785,0.22067785,0.10410622,0.22462471,-0.022058047,0.02866535,-0.17860079,0.43905464,0.38118806,0.380545,0.31895855,-0.009276867,-0.22129609,-0.038986776,0.07148771,0.41735741,-0.20497172,-0.12897891,-0.21705343,-0.5530174,-0.2481319,0.14927171,-0.11894928,0.54675364,0.062024813,-0.010251169,0.6472898,0.1402093,1.1164355,-0.0817378,-0.35853478,-0.07876827,0.51631093,-0.040831387,-0.13662848,-0.28081557,0.715165,0.5487021,0.024608195,-0.015394954,-0.04996672,-0.005427434,0.15088572,-0.012360986,0.07864283,-0.14348875,-0.8078851,-0.27184156,0.116728336,0.3094558,0.07983367,-0.040445626,0.08035676,0.23052186,-0.1076572,0.18216808,-0.23374034,-0.14201383,0.26577508,0.23577714,0.00943944,0.17914654,-0.43372032,0.32764578,-0.47833002,0.057080455,-0.28187594,0.10092178,-0.09334278,-0.099788494,0.040981732,-0.11882096,0.42635316,-0.37685326,-0.42715073,-0.20885023,0.54767954,0.12671229,0.13121937,0.5348618,-0.09869581,-0.0027724276,-0.045892827,0.3652814,0.78377926,-0.26034796,0.09461261,0.18071455,-0.3113192,-0.43055674,0.23278649,0.01996911,0.2012961,0.0669028,-0.1706199,-0.38954398,0.2862371,0.22921287,-0.113982886,-0.13547304,-0.552775,-0.21196094,0.17643268,-0.29998782,-0.0924528,-0.31932825,0.22873023,0.56380945,-0.18624696,-0.4529721,0.13260414,0.24812481,-0.24454728,-0.34216627,0.03443983,-0.5069277,0.17342679,-0.020170024,-0.48572657,-0.34545884,0.04347606,-0.41224292,-0.013743653,-0.002980489,-0.2444827,-0.050359707,-0.298937,0.044965487,0.91745543,-0.023446359,0.10107838,-0.4336174,-0.35666576,-0.7567203,-0.41547582,0.52644473,0.2076558,-0.029822316,-0.33462098,0.15431826,-0.20091532,0.058348384,-0.1931014,-0.06312703,0.51166,0.121445365,0.41453546,-0.20468657,-0.5865731,0.15420881,0.017482487,-0.007239741,-0.36866057,0.48174554,0.18727365,0.5732193,-0.098634325,0.16864474,0.03575317,-0.38311687,0.04120437,-0.098353535,-0.11148587,-0.67727,-0.036027428,489 -684,0.41129443,-0.15848988,-0.4143674,-0.37374204,-0.55595124,0.10497449,-0.25126848,0.07307747,0.217644,-0.59411,-0.051971808,-0.25898525,-0.039266504,0.24783534,-0.28095502,-0.8336814,-0.017509073,0.007286384,-0.49403983,0.5338863,-0.60000414,0.31099173,0.12576683,0.12469872,0.092047505,0.295469,0.4564037,-0.28796414,-0.12951055,-0.13519557,-0.066649966,-0.07266942,-0.8005556,0.42031315,-0.18231367,-0.35461947,0.2725218,-0.36302167,-0.2693352,-0.63710403,0.40300104,-0.90672356,0.51108354,-0.04651401,-0.26341248,0.12137138,0.2986181,0.18188198,-0.30810708,0.1477004,0.29541835,-0.23893283,-0.025051478,-0.122713804,-0.2781091,-0.73585045,-0.7059699,-0.024835011,-0.7627185,-0.2705064,-0.4053763,0.3491367,-0.3776091,-0.0721591,-0.28747368,0.45180097,-0.4927642,-0.038290773,0.06504896,-0.19327109,0.35837877,-0.45196757,-0.29707548,-0.18214224,0.12654355,-0.1325908,-0.010237102,0.3506089,0.17770712,0.49904612,0.21288148,-0.34787947,-0.18877046,-0.07919566,0.0905505,0.42817885,-0.031253356,-0.23207012,-0.23722951,-0.15689391,0.18251991,0.3756675,-0.013634159,-0.23686594,0.15494975,0.10433826,-0.42551547,0.4830566,0.47485656,-0.31856588,-0.35798916,0.21811257,0.25090504,-0.28344557,-0.1931229,0.14691065,-0.05796703,-0.44666788,-0.37313846,0.30926964,-0.25305197,0.5552851,-0.34871066,0.23829857,0.8593501,-0.26904207,0.0402349,-0.15066156,-0.10703052,-0.17669106,-0.18913959,-0.094238706,0.24420527,-0.7601173,-0.025674032,-0.34816912,0.87205887,0.07202061,-0.7102891,0.3081608,-0.5271884,0.013279488,-0.18743102,0.59872127,0.54454684,0.47171742,0.27361652,0.7849598,-0.610738,0.03043463,-0.034839507,-0.45016736,0.1803721,-0.28075105,0.2389557,-0.36109522,-0.05576063,0.13128206,0.24412958,-0.24724367,0.47027934,-0.40182698,0.020035084,0.16996704,0.78457963,-0.4176114,0.11543802,0.89040685,1.1433985,1.0150585,0.1141731,1.5407217,0.23575085,-0.24347752,0.1616714,-0.26052597,-0.48899093,0.17366208,0.3800361,0.24390925,0.12043785,0.14808936,0.14902352,0.3737848,-0.32370996,-0.0056351516,-0.18414123,0.27320334,-0.11599306,-0.055970564,-0.5417474,-0.23384163,0.21393606,0.044372484,0.14115268,0.32135704,-0.07591745,0.40820238,0.21818517,1.103016,0.059112504,0.1946454,0.008150715,0.5525911,0.17095663,0.121388994,0.09917518,0.1555971,0.16778935,0.23676579,-0.6168444,-0.10369077,-0.33543462,-0.4636998,-0.25798732,-0.42842403,-0.06819168,-0.38484985,-0.4671653,-0.24379233,-0.069874436,-0.45691353,0.3494446,-2.3296666,-0.36748812,-0.23933417,0.2877398,-0.15375766,-0.1709884,-0.0020360856,-0.60986894,0.5479459,0.48519304,0.49379143,-0.63329375,0.5196921,0.5707064,-0.4343509,-0.08330404,-0.6643992,-0.14135021,-0.33215138,0.47996983,0.096642256,-0.24878153,-0.39154866,0.1487201,0.70679134,0.13496414,0.12652904,-0.009609823,0.5335153,-0.05510632,0.7821507,0.2554832,0.41715506,-0.36159915,-0.06689734,0.25382644,-0.46759132,0.26459953,-0.045104206,0.20816357,0.4651977,-0.72163856,-0.9039241,-0.78364444,-0.7194456,1.0027636,-0.19951695,-0.40730646,0.31029508,0.058385007,-0.29636416,-0.037740346,0.42204666,-0.15568492,0.25859195,-0.68142384,0.12483089,-0.17765154,0.2475276,0.0144214425,0.14213352,-0.4758208,0.8586343,-0.16272023,0.38104203,0.25026646,0.18134008,-0.41798884,-0.43455428,0.22042133,0.9710782,0.4520861,0.13025111,-0.15758404,-0.29145575,-0.023419619,-0.20885287,0.118304975,0.5640234,0.78681886,-0.063256264,0.0069444273,0.47960335,-0.28321642,0.16957949,-0.062383812,-0.33931258,-0.14029573,0.16786374,0.5515493,0.5382021,-0.078052655,0.2845528,-0.1725777,0.38259146,-0.29360723,-0.49083328,0.43859193,0.91371316,0.016896416,-0.05591784,0.73634785,0.70635724,-0.32035553,0.5849424,-0.58437276,-0.51770806,0.53360564,-0.09947182,-0.6110047,-0.19308347,-0.49341008,0.02916034,-0.9570593,0.314625,-0.30350664,-0.510148,-0.46993384,-0.3025251,-4.275504,0.11838729,-0.31861037,-0.023168923,-0.19995227,-0.23119426,0.42333797,-0.58478075,-0.59701604,0.1447563,-0.09261887,0.63584656,0.14381282,0.3098475,-0.41918102,-0.15741822,-0.32110888,0.34450948,0.02123166,0.07189344,-0.060220126,-0.4930935,0.25884166,-0.39793873,-0.47555125,-0.025813993,-0.5406227,-0.61483777,-0.17257255,-0.61428607,-0.6478314,0.77975315,-0.15880075,-0.09821946,-0.24570605,-0.084065914,-0.20209654,0.34240496,0.11645221,0.1530135,0.07986251,0.009523036,-0.23977143,-0.41674307,0.40965682,0.10176338,0.37077004,0.49697983,-0.21156587,0.03626422,0.49691042,0.4736901,-0.0061809216,0.91837794,-0.029662771,-0.1565802,0.46382582,-0.2260452,-0.38791782,-0.98877215,-0.36804244,-0.18846975,-0.41074023,-0.49674562,0.0058142613,-0.37017742,-0.70675874,0.57533514,0.116275616,0.26494074,-0.25035098,0.19262213,0.19727764,-0.119238764,-0.10679478,-0.14744094,-0.20782903,-0.53803307,-0.3732259,-0.9110184,-0.5674207,-0.058468316,1.0383513,0.06553717,-0.2696595,0.18899877,-0.18565471,0.28897095,0.19338314,0.1800985,0.250251,0.51376164,0.0024959857,-0.8319665,0.65377,0.034454457,0.16657227,-0.309769,-0.057637766,0.8166532,-0.7352634,0.54959863,0.54552287,0.250473,0.061392527,-0.44400018,-0.2794154,-0.05851651,-0.2113529,0.47745907,0.24419369,-0.8630508,0.5690453,0.0965044,-0.18575433,-0.71775496,0.63755137,-0.076326326,-0.14637417,-0.0049450216,0.4351522,0.2557301,0.041050937,-0.14075647,0.26517546,-0.5903638,0.3123984,0.33495638,0.07250242,0.558218,-0.16267094,-0.2672879,-0.7705371,-0.31939203,-0.41326112,-0.16464692,0.056601517,-0.11491806,-0.17743233,0.46228868,0.076182365,0.3591664,-0.23996504,0.15169056,0.029782057,-0.2842329,0.23832592,0.50913167,0.42453733,-0.50793445,0.7178033,0.14356637,-0.025243236,-0.30021393,0.06416873,0.3240557,0.28274587,0.39601392,0.0669943,-0.17369369,0.37648866,0.878239,0.25174335,0.47016907,0.31761762,-0.17634198,0.5418425,0.14184622,0.08931299,0.08922701,-0.4020242,-0.008964995,-0.009951674,0.062401667,0.3304089,-0.03924689,0.36736393,-0.11787416,0.0164832,0.06358257,0.24523799,-0.28661156,-1.1293278,0.2598199,0.270779,0.7132625,0.7242771,-0.013666823,0.06342457,0.6466823,-0.42080593,-0.075018674,0.29699972,0.19348064,-0.24352632,0.7946224,-0.44225305,0.4878116,-0.2478637,0.037951723,-0.08459135,0.14958504,0.24736287,1.027883,-0.061499868,0.08563762,-0.015590246,-0.26167205,0.32330042,-0.28364357,0.155169,-0.38362768,-0.17074205,0.64227307,0.4368019,0.38374907,-0.106332794,-0.1432638,-0.107080184,-0.13073964,0.25919795,0.05491287,-0.18771124,0.005000756,-0.59392846,-0.34343937,0.65064746,0.0964781,0.3047833,0.20004624,-0.3944006,0.27316812,-0.08110364,-0.02473864,0.071828775,-0.71904916,0.004620944,-0.2002983,-0.3962069,0.39476126,-0.3510469,0.25053114,0.18083392,-0.00085901987,-0.33530667,-0.31171018,0.37713435,0.35937107,0.17627081,-0.25515667,-0.24053948,-0.36492532,0.30710715,-0.4596395,0.08648382,-0.22962166,0.20194183,-0.58735,0.55815643,-0.121039614,-0.261128,-0.10896769,-0.26654908,0.027259516,0.4166368,-0.088714086,-0.10751809,0.18317358,0.20275787,-0.24289285,-0.14174563,-0.31816804,0.2000651,-0.010608948,0.118014224,0.021871714,-0.16719583,0.0079773115,0.5806769,0.16719058,0.114315234,0.12498014,0.008002283,-0.4736736,-0.056991182,-0.115514114,0.45617726,-0.10159363,0.05247393,0.048028138,-0.30657345,-0.20941088,0.2673228,0.0006904625,0.0411485,0.111217864,-0.39694798,0.824865,0.10568835,1.1093171,0.15020221,-0.3648418,-0.028467132,0.54099494,-0.24866806,0.10654784,-0.24433917,1.1356746,0.5730324,-0.34962434,-0.24967399,-0.60833,0.009486764,0.10920587,-0.31485572,-0.20418002,-0.13723351,-0.73614544,-0.24809821,0.3254297,0.35405365,-0.060320225,0.06721484,0.05313963,0.09340528,0.2498276,0.61084497,-0.76187605,-0.15175936,0.33057636,0.19522108,0.19478963,0.23091283,-0.22798349,0.45321244,-0.7283975,0.28110364,-0.34860307,0.036188558,-0.23136605,-0.28731945,0.19305955,0.07770565,0.42504787,-0.11456287,-0.3795121,-0.312771,0.65908486,0.21543606,0.31360066,0.8057978,-0.18290922,0.022997783,0.06182084,0.4991945,1.3624952,-0.018086186,-0.017851435,0.27042624,-0.42644188,-0.6530565,0.17168196,-0.4906324,-0.097892776,0.033774886,-0.5450535,-0.27680895,0.2670603,0.19912966,0.09009935,0.17867658,-0.50979304,-0.17583561,0.5029286,-0.36048853,-0.40582913,-0.10647628,0.3400033,0.6738176,-0.34178492,0.0230052,-0.049173556,0.48792166,-0.41462347,-0.6632853,-0.09420129,-0.2833789,0.690199,0.027771382,-0.36174026,0.078498006,0.26036984,-0.45853233,0.101387225,0.49011448,-0.32950082,0.009867257,-0.34913096,-0.122141905,0.89978683,0.10864939,0.08842325,-0.6896906,-0.35487196,-0.8545262,-0.2803075,0.25749916,0.2687764,-0.013768609,-0.26721486,-0.049693234,-0.10550824,0.09014741,0.16518937,-0.67401975,0.31058624,0.1977183,0.61620295,0.06822778,-0.9715041,-0.057428323,0.3469928,-0.04353204,-0.4105236,0.6444453,-0.33054098,0.5534707,0.15089723,0.04296191,0.027888967,-0.5394801,0.46829054,-0.3381408,-0.17068546,-0.6822954,-0.07966575,510 -685,0.5090282,-0.22086236,-0.1665506,-0.18345739,-0.091481104,0.30191782,0.008856298,0.45796153,0.115140185,-0.53096974,-0.28341052,-0.27856442,0.008047393,0.23231767,-0.21256542,-0.3596721,-0.06265961,0.075123645,-0.34759548,0.38600698,-0.48405024,0.36185727,0.13925087,0.36527285,0.18144391,0.1320782,0.0711196,-0.09997299,-0.35294417,-0.37284645,-0.14425614,0.013982713,-0.5933162,0.11506268,-0.2237394,-0.46413234,0.041454196,-0.5028953,-0.34490368,-0.6859697,0.31958354,-0.96414304,0.4098581,0.044842705,-0.23830391,0.5359595,-0.10953549,0.08250843,-0.05054362,-0.0701188,0.15402198,-0.13441141,0.076185994,-0.26941806,-0.18124318,-0.3113414,-0.61461747,0.14530635,-0.28374562,-0.20624638,-0.21483469,0.12589866,-0.21955672,0.12496769,-0.15760276,0.42244714,-0.32199398,0.10551861,0.03240838,-0.17535421,0.13845469,-0.59336144,-0.24936946,-0.051044382,-0.0100435065,-0.15632263,-0.048492156,0.22887349,0.20772563,0.49864244,-0.07146365,-0.167343,-0.2953351,0.10237881,-0.053009365,0.5297992,-0.18184575,-0.39557326,-0.10576504,-0.13710085,0.23818551,0.22305125,0.24457666,-0.05038207,-0.023694621,0.022630692,-0.45727178,0.2673005,0.62570006,-0.36203206,-0.3079619,0.36372954,0.4091771,-0.10716748,-0.012599102,-0.29351348,0.03470011,-0.40852544,-0.032957725,0.080221064,-0.3454935,0.60466486,-0.14241053,0.30705217,0.5642615,-0.22644421,0.24289626,0.10620684,0.06530823,-0.038454525,-0.38122478,-0.2606761,0.22888257,-0.44234908,0.06471667,-0.37927598,0.9906116,0.027122539,-0.65457577,0.37255794,-0.4092421,0.095995866,-0.029187623,0.44406807,0.5127556,0.43051174,0.22026494,0.56765354,-0.49563602,-0.07514054,-0.18922976,-0.11367079,0.036693756,-0.19115232,0.27675596,-0.356377,-0.058662713,0.08009631,-0.12989074,-0.05593624,0.50110346,-0.514172,-0.02608792,0.2416504,0.86089396,-0.27561727,-0.08327504,0.8147539,1.1526225,0.81850106,-0.012757645,1.122485,0.3754505,-0.30329153,0.2653394,-0.29812703,-0.5790392,0.21928088,0.28975803,-0.04492935,0.07448563,0.13386424,-0.25637472,0.34885332,-0.412532,-0.072651215,-0.1755943,0.18074645,0.15877166,0.20565759,-0.39323857,-0.36158404,-0.080257066,-0.11206611,0.12403921,0.24908683,-0.4433706,0.2562831,0.034488324,1.5697007,-0.1028109,0.049585205,0.019275766,0.4445508,0.019905534,-0.08336648,0.057176314,0.32328576,0.18060364,-0.05921845,-0.57688475,0.08827932,-0.23590817,-0.5266829,-0.11210956,-0.16115347,-0.12751514,0.029478531,-0.48667255,-0.21732815,-0.101612315,-0.3052184,0.47577316,-2.6798844,-0.13248327,-0.04616133,0.4323911,-0.35306928,-0.5241991,0.13641001,-0.49466595,0.50610375,0.36034852,0.33893505,-0.66552216,0.22227438,0.32017934,-0.37718794,-0.18996103,-0.6645516,-0.038311005,-0.0029085898,0.21829261,0.014670551,-0.06794659,-0.14104894,-0.21744321,0.51923853,0.11826429,0.13081755,0.3427096,0.36606738,0.06076061,0.27259395,0.061336737,0.5408814,-0.32798645,-0.092950635,0.32233348,-0.5598147,0.1965263,-0.10201435,0.20987867,0.4391152,-0.41452137,-0.603853,-0.7402378,-0.3893631,1.2317464,-0.05949715,-0.5132321,0.15409479,-0.004778635,-0.16274577,-0.13608402,0.47039875,-0.09535318,-0.2121439,-0.63740724,0.026743952,-0.09859169,0.21476905,-0.05474948,0.08581615,-0.35060993,0.6892666,-0.104750596,0.29087916,0.2083537,0.2863154,-0.26674768,-0.2983058,0.066206984,0.95642483,0.37617937,0.14358251,-0.15871866,-0.19949849,-0.20069951,-0.12835674,0.11476935,0.36770236,0.67096716,0.07185933,0.026316883,0.28325447,-0.044565532,0.042226203,0.006891787,-0.36021334,-0.23752007,-0.08759376,0.58553195,0.52232987,-0.08821811,0.37504804,-0.2270325,0.28123558,-0.33435866,-0.40172255,0.4175406,0.84982044,-0.1273911,-0.13955787,0.61189806,0.4016169,-0.31707218,0.33529982,-0.6471087,-0.37511533,0.40782374,-0.18674384,-0.5344113,0.027667113,-0.18058927,0.033036944,-0.70474327,0.37063557,-0.16873035,-0.51146644,-0.6607038,-0.14760199,-2.9154904,0.112161525,-0.23547599,-0.21233885,0.02372215,-0.2854726,0.15973538,-0.5350288,-0.2835135,0.14889503,0.023313664,0.5814011,0.100347556,0.2571368,-0.24364045,-0.116342254,-0.46780857,0.11114231,0.09180014,0.25987688,-0.07184973,-0.30660778,0.10876687,-0.04374307,-0.40056944,0.22790645,-0.6458709,-0.60900444,-0.18430826,-0.45084348,-0.32280177,0.6718326,-0.31331035,0.059911814,-0.16033116,-0.020525614,-0.18639381,0.3255072,0.12644257,0.13659313,0.021222414,-0.20154308,-0.020308604,-0.49740526,0.43609384,0.18979551,0.25467426,0.57653284,-0.22272037,0.12219714,0.30201942,0.51996136,0.06951944,0.6908808,0.3206938,-0.12932402,0.3035955,-0.2758817,-0.16873305,-0.4960538,-0.24655375,0.029001493,-0.4235565,-0.2938989,0.02455058,-0.34777158,-0.69100124,0.41173348,-0.09383341,0.15457606,0.036496587,0.32351625,0.60945904,-0.08323741,-0.06246852,-0.057444178,0.044420555,-0.54102474,-0.45345122,-0.7097552,-0.42274886,0.15851013,0.9462331,0.05958645,-0.028026508,0.075908616,-0.069690116,0.008441438,-0.1224588,-0.13628556,-0.15447313,0.3857714,-0.0403632,-0.6631707,0.40491962,0.12339525,-0.14327544,-0.5672072,0.37588516,0.6104647,-0.5539173,0.44105765,0.4549162,0.19106224,-0.03384371,-0.37440616,-0.21525805,-0.08830496,-0.26205713,0.15544352,0.2487231,-0.7028108,0.33336988,0.33883625,-0.20534751,-0.8064594,0.29022712,-0.016884156,-0.31944278,-0.15078798,0.3391897,0.30060938,0.023891173,0.05172692,0.15609114,-0.6029524,0.21825822,0.27117437,0.010204684,0.52861464,-0.18552701,-0.18859409,-0.5690391,0.08148983,-0.46103895,-0.37295067,0.20896152,0.13946119,0.0024752824,0.53217435,0.31342414,0.37763232,-0.20816845,0.019540312,0.07357991,-0.17975913,0.38407356,0.3413417,0.53549874,-0.38336813,0.5175308,-0.013224478,-0.026706379,0.059043128,-0.04003279,0.39559463,0.17952879,0.2674357,0.048674718,-0.31561935,0.28918883,0.693108,0.21206306,0.4964522,0.115701444,-0.116257615,0.3395146,-0.014946048,0.10780425,-0.020046793,-0.6489351,-0.01240254,-0.13087688,0.1465185,0.32611263,0.043052875,0.31396213,-0.11790491,-0.18049566,0.033377673,0.110005505,-0.27902448,-1.0029057,0.20221901,0.0020095683,0.8591006,0.42847776,-0.13240066,-0.023770183,0.69253135,-0.22217844,0.10231086,0.3036601,0.07121905,-0.39025533,0.63220793,-0.6772015,0.35886568,-0.061299894,0.022731006,-0.14004233,0.013505837,0.27441487,0.59639823,-0.14016059,-0.032773994,-0.094705105,-0.4035821,0.11458015,-0.40340278,0.33988607,-0.5981077,-0.17646359,0.66599154,0.3556066,0.3422721,-0.1193782,-0.016068352,0.06964864,-0.115609735,0.15176445,0.21795759,-0.009411385,0.12662183,-0.6028083,-0.22589646,0.54189426,-0.082020134,0.28970343,-0.031105684,-0.19443053,0.11495567,-0.3511831,-0.24350199,0.10941499,-0.49947256,0.011764746,-0.41553497,-0.36145836,0.17630744,-0.044859327,0.13504794,0.094906,0.022982882,-0.24819133,0.036182184,0.49494055,0.710888,-0.0061496864,-0.1617588,-0.512345,0.14036368,0.08557523,-0.2576329,0.10053499,-0.026115537,-0.072893046,-0.65893805,0.46327966,-0.14022711,-0.18239322,0.11866072,-0.16166767,0.03204981,0.54515827,-0.04889113,0.06929596,0.005443449,-0.12760805,-0.29426846,0.016378578,-0.039957292,0.17225121,0.19792151,-0.06677212,-0.00080153346,-0.25998777,-0.17707282,0.37370205,0.07712478,0.31813204,0.4096709,-0.0019699885,-0.25852925,-0.18685181,-0.04502048,0.47358978,-0.051329337,-0.13006276,-0.22421314,-0.49205297,-0.22186916,0.24743302,-0.031675085,0.33511308,0.06826039,-0.25231877,0.80495113,-0.11300899,0.9842291,0.09447496,-0.3055981,-0.069739476,0.47733828,0.024311772,0.03405195,-0.38545662,1.0423543,0.47118548,-0.055075057,-0.12794045,-0.27329016,-0.054429896,0.32772392,-0.101417944,-0.1061916,-0.09074888,-0.76948094,-0.2966566,0.16732618,0.3294732,0.0030540503,0.007617068,0.1450813,0.38013855,0.01072421,0.56159395,-0.40655378,-0.20298482,0.3241033,0.3174372,0.069629885,0.2564004,-0.33274743,0.2924005,-0.6726065,0.048950203,-0.24745645,0.0860804,-0.045963354,-0.14970689,0.25591865,0.19933516,0.45695004,-0.31343126,-0.47817233,-0.22497079,0.432998,0.12896124,0.2135465,0.47522512,-0.12088561,-0.16862181,0.07264068,0.5683344,1.263173,-0.030877706,0.27846798,0.2694511,-0.4340747,-0.74317765,0.5775393,-0.02755912,0.07524833,-0.0051912987,-0.13014825,-0.46464485,0.2792958,0.2804744,-0.13851115,0.20776878,-0.5045795,-0.23545907,0.24422097,-0.36189026,-0.18296552,-0.25219458,0.21451408,0.579812,-0.20389539,-0.067288026,0.0068909023,0.535266,-0.35326612,-0.4598926,-0.10968847,-0.56744224,0.22092707,0.03806956,-0.35259807,-0.14498053,-0.04037582,-0.3039731,0.029144693,-0.065444194,-0.39126506,-0.003000186,-0.26680878,0.12615986,0.7507368,0.16687836,0.08592277,-0.72910726,-0.42049664,-0.7606444,-0.49051648,0.33546227,0.2141814,-0.03706921,-0.45164937,-0.10794093,-0.12829028,-0.14893979,-0.10404159,-0.49151626,0.41292784,0.25003645,0.40267426,-0.01736285,-0.5449308,0.13512342,0.19180062,-0.16712266,-0.5237251,0.36142874,-0.0632739,0.8137195,0.009968469,0.003201205,0.16279595,-0.45712692,0.087458804,-0.24131301,-0.3161956,-0.6475429,0.2119371,512 -686,0.5089107,-0.39344767,-0.5765568,-0.19216156,-0.19188073,0.14993174,-0.1536203,0.5347287,0.18393236,-0.59513706,-0.16576502,-0.2898908,0.03856995,0.030010305,-0.13817057,-0.46506107,-0.19612151,0.29849693,-0.48264763,0.33165792,-0.37161726,0.20055962,-0.08166873,0.512941,0.19115084,0.16720922,-0.080114685,0.0005579178,-0.14535531,-0.2107365,0.12399158,0.2710354,-0.6597372,0.08421034,-0.16516337,-0.52486396,-0.07744459,-0.55495834,-0.32554385,-0.8407136,0.45544258,-1.0964067,0.81780946,0.03233697,-0.42452848,0.28202406,0.12508914,0.38469303,-0.13325946,0.15201792,0.34039873,-0.14285183,-0.11721479,-0.070217066,-0.29668862,-0.32741964,-0.59938174,0.024136182,-0.4114529,-0.12301071,-0.16479929,0.18172683,-0.22732902,0.23105961,-0.16877405,0.41109565,-0.4662588,0.024073623,0.25661173,-0.12416531,0.50293756,-0.61793685,-0.13728882,-0.13522622,0.27878523,-0.31296903,-0.2892869,0.048597332,0.2867858,0.622915,0.004778899,-0.22949699,-0.16343786,0.03811519,-0.050152995,0.4933947,-0.28800362,-0.3272039,-0.2254466,-0.20725808,0.30929,0.30047053,0.23095028,-0.23665205,0.008649936,0.081395626,-0.22908543,0.34237304,0.5198564,-0.35814828,-0.10590102,0.32124227,0.69395745,0.061083134,-0.037819743,0.20423014,0.078851685,-0.52417153,-0.24770865,0.0639207,-0.31311035,0.38861826,-0.16264637,0.15685333,0.55000556,-0.21140242,0.07727383,-0.037560828,-0.013914695,-0.1251801,-0.50634253,-0.60982317,0.38437095,-0.4191613,0.26328075,-0.18319392,0.6940431,0.14624292,-0.6550807,0.3305171,-0.6157005,0.12561457,-0.0819013,0.55189264,0.6195596,0.33563244,0.4354317,0.74746776,-0.31237662,-0.040676557,-0.06572633,-0.011434183,-0.043601613,-0.24232548,0.123422936,-0.4701158,0.08202894,-0.14905931,-0.18924618,-0.029178904,0.71306545,-0.6783358,-0.054378632,0.24870385,0.8322964,-0.35436395,0.0057142056,0.88485074,1.0504963,0.99527526,0.096627235,1.4578427,0.39140967,-0.3527755,0.124912016,-0.14397441,-0.79745066,0.3089562,0.46522048,-0.04999379,0.29171273,0.28402883,-0.15619867,0.6005016,-0.55395687,0.050514594,-0.21495351,-0.044764895,0.04137856,0.003704722,-0.42715743,-0.08433371,-0.03396917,0.022100508,0.14623931,0.07356327,-0.2755408,0.23935558,0.13268913,1.7826797,-0.33779538,0.06408321,0.15354799,0.37718704,0.10803375,-0.16983272,-0.11509096,0.34437877,0.41433626,-0.0030364578,-0.693603,0.12697843,-0.1588636,-0.35239884,-0.28602722,-0.13950044,-0.14099225,-0.09212438,-0.3770673,-0.2771072,-0.23925963,-0.43032667,0.2385673,-2.336477,-0.19935966,-0.18075721,0.4149771,-0.21998169,-0.5032942,-0.08116714,-0.37234285,0.4275878,0.3014855,0.27785316,-0.64945424,0.5678327,0.5010115,-0.47672096,-0.06005567,-0.7484846,-0.21989308,-0.07498348,0.17513315,-0.07508887,-0.16092221,-0.11434555,0.16370961,0.40494892,0.15124032,0.18578163,0.34035423,0.58413404,0.047570292,0.68681526,0.10939272,0.6296756,-0.22097088,-0.23773256,0.45019862,-0.5138396,0.07303015,-0.011639962,0.09605576,0.37876037,-0.6592388,-0.8210614,-0.96652955,-0.45970517,1.1237733,-0.19808133,-0.51588976,0.19871174,-0.49511582,-0.42194477,-0.09189921,0.5932232,-0.08331703,-0.070276335,-0.98574644,-0.15856196,-0.108027786,0.2777979,-0.0056747934,0.035067447,-0.6060516,0.78409237,-0.29957053,0.48814037,0.42740667,0.15358527,-0.15962079,-0.56291664,-0.10626336,1.0849373,0.38032863,0.18593472,-0.17179108,-0.09233824,-0.33581975,0.035519425,0.012604734,0.5268613,0.8260755,-0.038610756,0.12484799,0.33973792,-0.020583896,0.02744523,-0.16504908,-0.42014816,-0.28381985,0.023091912,0.6332041,0.42180306,-0.15926565,0.37803885,-0.2286134,0.4146636,-0.2212076,-0.331243,0.2622506,1.1601914,-0.20509328,-0.36308286,0.90836835,0.35114703,-0.40059775,0.4344517,-0.7731677,-0.15805252,0.30129626,-0.14800496,-0.6043094,0.2718881,-0.3269682,0.08463674,-1.0687928,0.34691185,-0.25152352,-0.5266322,-0.54901236,-0.20288672,-3.020621,0.3213744,-0.2668483,-0.12818597,-0.106886946,-0.30361474,0.34712622,-0.5058974,-0.75012237,0.19579676,-0.036790144,0.6490638,-0.040956557,0.1374719,-0.23533106,-0.27867505,-0.35815552,0.10463948,0.2844055,0.36884293,-0.12453142,-0.45758873,0.02966072,0.015563871,-0.32841095,-0.02529678,-0.74038386,-0.49856326,-0.1286963,-0.70336497,-0.22267172,0.6130468,-0.26090837,0.022557782,-0.3654273,-0.018549332,-0.19363293,0.37292543,0.025951143,0.29456815,0.018937739,-0.17810036,-0.13616621,-0.22530922,0.2074271,0.03287953,0.037112154,0.12709525,-0.31660464,0.20287775,0.30729574,0.63752747,-0.08707281,0.9649836,0.553649,-0.12911291,0.229731,-0.23635975,-0.23949239,-0.5716058,-0.2924171,0.034217633,-0.53192496,-0.48855942,-0.0552224,-0.39621335,-0.82754546,0.6516332,-0.12380001,0.1178525,0.17503211,0.4881001,0.5535377,-0.10775685,-0.04666078,-0.09573459,-0.18438706,-0.52503365,-0.292476,-0.5551587,-0.41596112,0.16124545,1.1183442,-0.14825958,0.20485717,0.39664122,-0.21235721,0.041552186,0.25133798,-0.08338798,0.09935614,0.80054486,-0.10403914,-0.648812,0.1970829,-0.04926946,-0.23823167,-0.64977425,0.28620613,0.7894811,-0.74416,0.7878376,0.42704958,0.064101085,-0.3406131,-0.59929615,-0.17643642,-0.06459987,-0.3353315,0.51270306,0.3016453,-0.76644427,0.38272065,0.42523214,-0.0662068,-0.91249454,0.5545272,-0.12760904,-0.28591898,0.0131222885,0.50510263,-0.010619927,0.046493657,-0.1326583,0.26847035,-0.34086528,0.22893293,0.22476842,-0.20094512,0.10400295,-0.20590773,-0.061146118,-0.77024585,0.058786336,-0.69157666,-0.28226966,0.24610311,-0.09775675,0.056407996,0.46130422,0.14130937,0.53386503,-0.27243155,0.087227836,-0.108306736,-0.37749034,0.2369971,0.49415764,0.3627761,-0.5202841,0.5961564,-0.11030127,-0.1741883,-0.27666503,0.02442597,0.5264069,-0.08129314,0.38943213,-0.124988645,-0.12384435,0.3904333,0.8693852,0.25088957,0.5860098,0.16375622,0.0155448,0.22634667,0.21126343,0.27693835,-0.1671709,-0.6722879,0.05377352,-0.085508436,0.16368912,0.4357791,0.14360894,0.36218676,-0.2135301,-0.33294266,-0.044382695,0.11713365,-0.17760497,-1.0536427,0.23369122,0.0006712744,0.8218479,0.5268312,-0.04910136,0.13048752,0.5302378,-0.11602742,0.016817214,0.3016555,0.06155346,-0.36254817,0.5106675,-0.69639164,0.28361037,-0.17531368,0.07383268,-0.07812376,-0.034425642,0.5778641,0.817097,-0.13553038,0.03396103,-0.111176364,-0.04101452,0.2553114,-0.4997698,-0.010342703,-0.5853218,-0.2663429,0.76062214,0.5977555,0.5181391,-0.30566242,-0.041530803,0.11190552,-0.14764515,0.18461488,0.14165017,-0.033889778,-0.016327139,-0.68698657,-0.2769562,0.4875938,0.077381134,0.062082887,0.007941232,-0.49491236,0.25355676,-0.16596912,0.042714544,0.033236604,-0.81674266,-0.16726646,-0.41374123,-0.45950222,0.3046196,0.09310095,0.0680724,0.2127277,0.062453922,-0.26418453,0.2540108,0.050155144,0.8459063,0.18442413,-0.04843923,-0.36106876,0.19149238,0.13759181,-0.292436,-0.0012111939,-0.27069774,0.2199436,-0.7547355,0.5583127,0.100667715,-0.53265643,0.4167768,-0.15124597,-0.03416568,0.6117334,-0.22588918,-0.110412724,0.2522897,-0.29229015,-0.2465163,-0.28827363,-0.11313323,0.19453672,0.03995103,0.14240903,-0.09331381,-0.034964424,-0.1952152,0.6851034,0.09188839,0.43883345,0.6730236,0.0693216,-0.28916198,-0.07975078,0.10156584,0.57190377,-0.2056924,-0.3481354,-0.13321802,-0.6969203,-0.12693748,0.4071492,-0.08828121,0.43723387,0.08369497,-0.27966845,0.9984944,0.21954864,1.1060665,-0.097901374,-0.39935333,-0.113594376,0.68320805,0.024079856,-0.17015566,-0.43444008,0.9124612,0.51324284,-0.07701351,-0.0051091816,-0.3585205,-0.20711364,0.2277348,-0.15176679,-0.0009410748,-0.13253045,-0.6614368,-0.29680032,0.17721128,0.36300808,0.15347286,-0.08330417,0.5327788,0.3651689,-0.23813747,0.30484784,-0.5064742,-0.17829615,0.37186712,0.20988688,-0.024714649,0.04430948,-0.3233064,0.2975493,-0.5817659,0.0007065764,-0.37589586,0.07601185,-0.065044515,-0.26440424,0.12089015,-0.03144056,0.3345172,-0.47809204,-0.13523847,-0.12188936,0.44759244,0.29947582,0.16565312,0.6154668,-0.2759517,0.12281758,0.05846649,0.59367526,1.1200734,-0.08806522,0.1201049,0.27471843,-0.42249808,-0.6376308,0.44931918,-0.30418384,0.015517216,0.22711664,-0.25815076,-0.42758548,0.31855875,0.330732,-0.19024572,0.10485225,-0.6803824,-0.22875382,0.31297824,-0.21016847,-0.033455428,-0.23172417,0.1529097,0.7588611,-0.1642134,-0.24502207,-0.0099544665,0.38446712,-0.3432711,-0.56055975,-0.061538585,-0.5665242,0.40786332,-0.011631274,-0.3625929,-0.06086529,-0.019472687,-0.40556434,0.050743677,0.21868812,-0.36088532,0.11853178,-0.44526705,-0.11932572,0.9568609,-0.006469543,0.05161116,-0.5655903,-0.45600563,-1.0328988,-0.2951635,0.2696185,0.16409718,0.111264475,-0.45234755,0.082202025,-0.2232962,-0.22625971,0.22266576,-0.3463217,0.45991796,0.21092854,0.74549675,-0.23284842,-0.7404269,0.111493066,0.052715864,-0.29631287,-0.5065703,0.63215,0.14543712,0.8928741,0.05775594,0.03925946,0.10943564,-0.5523168,0.0381254,-0.1274517,-0.17857677,-0.87056553,-0.14672865,513 -687,0.20914426,-0.2966808,-0.33269888,-0.14282367,-0.32173258,0.13666882,-0.21478432,0.39558583,0.14498304,-0.30024332,-0.14002983,-0.09113794,-0.06123455,0.6829671,-0.31839576,-0.63398975,-0.1456251,0.22475931,-0.5894757,0.56309074,-0.3501446,0.33295536,0.20286602,0.29792878,0.21740381,0.10886444,0.391038,-0.010187085,0.018324045,-0.34911522,-0.13558626,0.23314582,-0.42502764,0.42229387,-0.11213784,-0.35749468,0.108089,-0.26423752,-0.4581055,-0.583723,0.35025305,-0.8663488,0.44301206,-0.08500174,-0.36046442,0.34885687,0.35771242,0.067998566,-0.1055826,-0.15675908,0.109485775,-0.08857291,-0.056643836,-0.24375024,-0.22033776,-0.5511415,-0.5263627,0.06477931,-0.636056,-0.22670746,-0.23246266,0.15308496,-0.27832076,0.027620513,0.03470486,0.42672998,-0.32637638,-0.17345873,0.20526996,-0.19047403,0.22914937,-0.652284,-0.02304084,-0.09897761,0.09752226,0.056642573,-0.03422919,0.37789148,0.07790943,0.49039206,0.028769255,-0.29664937,-0.32827213,-0.18490373,0.11398341,0.428868,-0.23770277,-0.42608532,-0.19304968,0.20408522,0.48019505,0.29770976,0.023965565,-0.16608554,0.0361855,-0.067014925,-0.33160892,0.48210484,0.4405002,-0.46881816,-0.30836165,0.5332937,0.45472643,0.1402379,-0.096455105,-0.049243577,-0.009830335,-0.396483,-0.14315093,0.11143159,-0.33235282,0.36207902,-0.2206135,0.15395644,0.59469855,-0.19913626,0.19937691,0.06711074,0.0794493,-0.20726147,-0.20084332,-0.35765022,0.19333234,-0.5322577,-0.025966447,-0.075238146,0.8757487,0.023277182,-0.51418835,0.307844,-0.42216295,0.17868121,-0.20213117,0.582401,0.6962328,0.47754493,0.18767193,0.8496408,-0.3873661,0.05809862,-0.23420347,-0.2118107,0.20421559,-0.23789419,-0.17069355,-0.5197923,0.0684988,-0.0018850679,0.03114936,0.024439834,0.36254984,-0.55889916,-0.11230003,0.25947806,0.85468066,-0.2612329,-0.0066597094,0.57225513,1.2154223,0.9186564,-0.06068974,0.9937626,0.26511556,-0.2299123,0.13757212,-0.10043741,-0.6739184,0.24792796,0.66126895,-0.04205238,0.36050302,-0.13745053,0.06252286,0.2072163,-0.48203418,-0.17776185,-0.31051847,0.38440564,0.071680665,0.13632375,-0.5100803,-0.2562861,0.0696406,0.0022828246,0.12370357,0.3150589,-0.3128019,0.36486083,0.11460929,1.1286107,-0.17049439,0.15592924,0.079958186,0.51328385,0.21866685,-0.028407652,0.050899662,0.27987587,0.24933812,0.047100488,-0.7715095,0.16630608,-0.35320103,-0.49333864,-0.18781216,-0.39904335,-0.047931187,0.087216586,-0.19447653,-0.25013313,-0.030095844,-0.25582185,0.42020765,-2.6076484,-0.21657711,-0.2752328,0.2218305,-0.39577696,-0.24995096,-0.061316784,-0.47835767,0.5376975,0.33035213,0.53791875,-0.43898508,0.21263605,0.39720413,-0.57022166,-0.19356629,-0.5157901,0.100848354,-0.10086402,0.54445213,-0.002178465,-0.33170018,-0.18543823,0.12687762,0.58200496,0.16101912,0.1868102,0.35473076,0.3554116,-0.076734655,0.33555,-0.1222464,0.50743806,-0.5175562,-0.18984734,0.45933583,-0.13368428,0.33017766,-0.28272593,0.18584211,0.4785287,-0.4384989,-0.7487351,-0.6152555,-0.34462655,1.4001069,-0.4345282,-0.6141025,0.149607,-0.009182717,-0.10868514,-0.068321355,0.40426382,-0.102833144,-0.030666938,-0.705749,0.19262768,-0.0777537,0.31015733,0.0807689,-0.08981383,-0.32571566,0.6609515,-0.037258957,0.37277773,0.03946698,0.15607467,-0.39213943,-0.4873403,0.0009617828,0.9551556,0.512778,0.033522654,-0.09932076,-0.21898064,-0.25168324,-0.12634173,0.07625497,0.444963,0.59974617,-0.045488592,-0.021061026,0.2697325,-0.22062953,0.10919845,-0.10508662,-0.3615143,-0.15692714,0.13128196,0.6594066,0.44299638,0.13065356,0.41241938,0.027912725,0.19194862,-0.17554869,-0.5326245,0.5692502,0.79058164,-0.20651037,-0.24560587,0.8684081,0.5998984,-0.1729645,0.5343025,-0.67829067,-0.6265049,0.37637514,-0.22495839,-0.43982103,-0.00095836935,-0.29778162,-0.013912916,-0.8230671,0.1387314,-0.35663545,-0.3425137,-0.5608272,-0.18460788,-2.79047,0.17944512,-0.2875516,-0.12791584,-0.21187328,-0.07018172,0.44549677,-0.5078952,-0.47971126,0.13113488,0.17345564,0.6774155,0.08185654,0.15490547,-0.25977004,-0.23530212,-0.23458283,0.25769645,0.14529869,0.2568897,-0.07574692,-0.4754545,0.13345392,-0.10420943,-0.29806656,0.10054033,-0.5858222,-0.3046102,-0.3651058,-0.5132132,-0.14704572,0.57686436,-0.4591196,-0.00041532976,-0.19230388,0.13224392,0.05878128,-0.030293612,0.07488374,0.114389606,0.14360037,-0.16593273,-0.013349497,-0.5049635,0.49524164,0.10327336,0.3396716,0.26843616,-0.10938956,0.07618152,0.6477843,0.5289631,-0.06735211,0.8945163,0.4936001,-0.061985947,0.2693432,-0.07147597,-0.24393742,-0.50332874,-0.312331,-0.059347685,-0.35396928,-0.46518084,-0.09154646,-0.33491406,-0.88495076,0.663318,0.07237941,0.39022684,-0.16522905,0.31441832,0.40336508,-0.30182403,0.04868259,0.0285338,-0.20468187,-0.51476014,-0.3159156,-0.59639525,-0.27565655,0.13287893,0.98174596,-0.20283943,-0.13332303,0.057390332,-0.28159618,-0.06096476,-0.086413614,0.04209064,0.26888517,0.4139444,0.12628414,-0.61612827,0.551275,0.01902296,0.1520238,-0.44391394,0.24240604,0.6023708,-0.6266104,0.17731652,0.3965092,0.12204779,-0.28451893,-0.45523232,-0.039425492,0.11081584,-0.18585083,0.38200107,0.26466638,-0.8144301,0.4711948,0.17106383,-0.36355653,-0.80962366,0.4268475,-0.054248966,-0.086969584,-0.0406655,0.22709924,0.28715917,0.0734026,-0.2357886,0.121563874,-0.36100706,0.27340433,0.060291633,-0.013864934,0.51024437,-0.4001012,-0.2464666,-0.7800921,0.006219671,-0.49845728,-0.37527677,0.36316285,-0.015079856,-0.104817934,0.27933642,-0.017274048,0.49563506,-0.13699482,0.17253953,-0.095069356,-0.24738759,0.57441306,0.53276783,0.44623283,-0.45933002,0.68111986,0.012655214,-0.12163505,-0.30543068,0.043717053,0.44309947,0.16852483,0.31893027,-0.084107846,-0.13513896,0.40773186,0.7552666,0.082645655,0.19981429,0.043627374,-0.06471397,0.18708041,-0.10643235,-0.010685361,-0.033288278,-0.61313117,-0.16616474,-0.2803547,0.063659236,0.5005222,0.14330848,0.3547142,-0.019696318,-0.12540573,0.102884136,-0.026339961,-0.04383364,-1.0308099,0.33491677,0.09826236,0.50711477,0.48029238,0.015107155,-0.1192528,0.8550714,-0.30582154,-0.024242131,0.45071,0.06553417,-0.3440278,0.6451366,-0.754227,0.53896904,-0.103176005,-0.0058021443,0.011229918,0.22620502,0.3578817,0.969335,-0.097141065,0.09014789,-0.0011437627,-0.3610482,0.17191985,-0.18412232,0.2179447,-0.47559687,-0.34266183,0.5577771,0.26997682,0.38150597,-0.063853495,-0.07960569,0.044801194,-0.10983519,0.2024084,-0.1353356,-0.030741084,-0.2015091,-0.5228174,-0.113842875,0.44175285,0.4341653,0.31695002,-0.07649703,-0.097108014,0.20929143,-0.2413749,-0.11667434,0.06173659,-0.676814,-0.0778072,-0.1856948,-0.43990687,0.38334146,-0.4929276,0.19878064,0.054258373,-0.002121091,-0.2212454,0.11651094,0.2358741,0.7376514,0.08801566,-0.29700235,-0.24800006,-0.15972677,-0.0032469905,-0.23374209,0.010496552,-0.27262232,-0.036382165,-0.78856623,0.54919297,-0.31428045,-0.24873558,0.21141984,-0.26430607,0.044365086,0.46150124,0.025514685,-0.059190173,-0.0643799,-0.31889486,-0.37481207,-0.34268254,-0.14555596,0.09646141,0.049155787,0.086232826,-0.2644707,-0.22207865,-0.19299085,0.4003778,-0.1736035,0.15802996,0.3051148,0.18439847,-0.28920227,0.026091466,0.19475302,0.51438576,0.0071677472,0.11640836,-0.061471183,-0.3152261,-0.35225356,0.12309929,-0.10158171,0.310521,0.010323396,-0.40056208,0.6952354,-0.115515046,1.1488879,0.01278545,-0.3490763,0.09177804,0.4927338,0.0076082144,0.002822711,-0.23995084,0.8619341,0.56718665,0.05068224,-0.18684891,-0.5235741,-0.11401717,0.2700078,-0.26899827,-0.13903579,-0.07265445,-0.5129868,-0.42314318,0.3064968,0.30507347,0.032432124,-0.046773467,0.035284467,0.0163787,0.13574564,0.545283,-0.37902626,-0.05240857,0.33077937,0.25176367,-0.14287871,0.18039131,-0.413657,0.4787172,-0.66628945,0.15257701,-0.42593902,0.057795938,-0.2824197,-0.24292047,0.26604122,0.08593733,0.45226428,-0.25976565,-0.513015,-0.11581536,0.5911359,0.1173492,0.0983533,0.6507995,-0.2985996,0.04019652,-0.08257668,0.54038817,1.0775695,-0.3278697,-0.039363924,0.042598527,-0.46702322,-0.77010375,0.45014748,-0.59336543,0.11688961,0.10098373,-0.37511688,-0.3024618,0.3368362,0.20797107,0.09623904,0.072258204,-0.47297356,-0.12186089,0.14696303,-0.2669632,-0.20958194,-0.2712445,0.18619925,0.42418486,-0.29704946,-0.3579515,0.15167323,0.5691419,-0.19059053,-0.7001979,-0.025040992,-0.34059808,0.24824524,0.09965229,-0.24924126,-0.009547105,0.07054683,-0.47602007,0.0370653,0.10055256,-0.34144512,-0.036276277,-0.17374004,0.2273732,0.5866172,-0.12820962,0.030281644,-0.6450559,-0.43179065,-0.89153916,-0.39360598,0.4233025,0.22472146,0.16991727,-0.5169354,0.068864055,-0.22772066,0.03616725,-0.060840316,-0.4780207,0.32041022,0.09562476,0.53147066,-0.08859314,-0.74618345,0.20057312,0.07699979,0.10203045,-0.513621,0.46941552,-0.25039345,0.86735463,-0.017632624,-0.0011625359,0.20795172,-0.5838626,0.24229468,-0.32709444,-0.32571647,-0.66360784,0.16250291,519 -688,0.44879216,-0.20394604,-0.4532657,0.10141205,-0.3139833,-0.088288955,-0.24372028,0.057105556,0.32635066,-0.22438303,-0.35854167,-0.22445217,0.13676713,0.20226695,-0.032677464,-0.5841843,-0.063384876,0.24201989,-0.82208884,0.58602494,-0.42500064,0.33865717,0.29019588,0.5217706,0.07757326,0.3250804,0.19984862,-0.05271969,-0.27311474,-0.084649175,-0.0036009504,-0.010904088,-0.97428745,-0.066938356,-0.4388309,-0.30859816,-0.024967395,-0.5601456,-0.4360742,-0.8855091,0.38429424,-1.1168237,0.63912797,-0.024959253,-0.036999263,-0.05387117,0.04613351,0.32832578,-0.29540783,0.011735995,0.21724036,-0.47954082,-0.06660354,-0.49685222,0.069368616,-0.28787497,-0.44779623,0.020499326,-0.5651464,-0.19712509,-0.23343185,0.12552625,-0.28891593,0.09958382,-0.2445613,0.43655586,-0.41902205,0.28933614,0.29563835,-0.22755125,0.23459552,-0.5616386,-0.093763314,-0.11110987,0.42794177,0.040377297,-0.23877944,0.45514914,0.30943805,0.5158219,0.3394375,-0.42498308,-0.072023466,0.09919981,0.2107163,0.44559887,-0.14256535,-0.23896298,-0.20490707,0.017298369,0.3766109,0.23774052,0.17896794,0.01322319,0.1296522,-0.12797326,-0.08046666,0.44783682,0.6448341,-0.26359767,-0.2929207,0.059783485,0.6045419,0.18130884,-0.101593524,-0.19244541,0.057829723,-0.5370112,-0.117082275,0.054187205,-0.22850443,0.7751208,-0.07645675,0.07269303,0.8256327,-0.3063927,0.13766286,0.21033849,0.09112762,-0.064684704,-0.27376258,-0.18471564,0.4042864,-0.7149922,-0.05197271,-0.44167122,0.6612328,0.19946653,-0.5452958,0.43066517,-0.51099974,0.21763483,0.066389844,0.67300946,0.64124906,0.5004599,0.6046399,0.7365624,-0.34844068,0.19230549,0.13174751,-0.3979171,0.14158246,-0.45016268,0.3383757,-0.37399152,-0.13052535,-0.2424399,0.013758641,0.0034373861,0.29758582,-0.65195906,-0.15281881,0.28316686,0.9482721,-0.20670062,-0.049014244,0.7491826,1.231745,0.96422553,-0.054199174,1.4628251,0.3710717,-0.3013419,0.06343777,-0.21420647,-0.79187816,0.1777787,0.21710041,-0.33910835,0.2334154,0.13452314,-0.16032726,0.3470662,-0.79122174,0.06648746,0.1266962,0.24637589,0.0070385863,0.048092283,-0.60099864,-0.18384954,-0.14972031,-0.18115605,0.21734849,0.25192896,-0.2877892,0.43046087,-0.045231983,1.2628459,-0.1377444,0.09795204,0.06980081,0.66025513,0.26214993,0.088660054,-0.041494362,0.31783935,0.3376217,0.106491014,-0.47666854,0.19293457,-0.5866351,-0.3487123,-0.24855638,-0.23447114,-0.111943685,0.04703235,-0.39221618,-0.26893428,-0.021594506,-0.2142563,0.2854865,-2.5668893,-0.38569638,-0.0769545,0.60179985,-0.42192534,-0.14872618,-0.0373224,-0.54463744,0.17125617,0.08871277,0.43857747,-0.7977279,0.51072925,0.5007687,-0.56687343,-0.26170814,-0.7590125,-0.151184,-0.0037511748,0.43312904,0.0823517,-0.24633636,-0.39792532,0.033936918,0.77612627,0.11498124,0.17179935,0.59425855,0.53950644,0.009282029,0.5501727,0.10227975,0.64618486,-0.463156,-0.09940198,0.36139604,-0.30607885,0.38145542,-0.2681011,0.10704965,0.6497288,-0.34955603,-0.75130916,-0.55378634,-0.3726971,0.9844822,-0.304896,-0.62997407,0.039140668,-0.36355668,-0.022247832,0.049292088,0.65330976,0.019946052,0.28017068,-0.7215011,-0.13694476,-0.06710158,0.26983404,0.14210567,0.07522862,-0.34283102,0.78915465,-0.017293958,0.29457837,0.2035885,0.4050528,-0.09382219,-0.40432137,0.21932837,0.99167264,0.2854896,0.115226544,-0.28456977,-0.16406387,-0.3069041,-0.23750417,-0.17768182,0.5133041,0.8095703,-0.2171004,0.033942197,0.33945215,0.0455486,0.059228834,-0.08910349,-0.40122253,-0.16634513,-0.08885704,0.55297405,1.0744674,-0.20439483,0.5298849,-0.2999248,0.39638144,-0.043068234,-0.55804116,0.59714353,0.69947475,-0.26292166,0.24007583,0.49304536,0.4059665,-0.6790931,0.5573623,-0.77010494,-0.4918253,0.6399677,-0.06846543,-0.48601085,0.15784948,-0.2736122,0.13825813,-0.6471789,0.48733467,-0.24631287,-0.26828736,-0.4539797,-0.1371875,-2.4563174,0.2505514,-0.21670192,0.06359181,-0.36905953,-0.120878175,0.23568204,-0.50586784,-0.5231076,0.1912219,0.19024959,0.6649421,-0.15697613,0.16679867,-0.28062078,-0.27737278,-0.13279969,0.19798224,0.4210338,0.24986142,-0.24353248,-0.41498503,0.057747927,-0.05135902,-0.3048483,0.20260009,-0.842391,-0.63654625,-0.12064147,-0.48437002,-0.47175688,0.6459875,-0.2474654,0.056584045,-0.44700974,0.04569502,-0.15743674,0.18158963,0.050427087,0.21369685,-0.015750239,-0.10828463,0.13046369,-0.22972742,0.5614075,0.086656146,0.41739988,0.20426634,-0.11571692,0.11812571,0.37002373,0.67700696,-0.14669698,1.08299,0.33890402,-0.19781743,0.28674358,-0.2765245,-0.40802372,-0.7806653,-0.29106295,0.08036439,-0.3834369,-0.40183386,0.19929284,-0.44687653,-0.88791907,0.6898949,-0.042443417,0.3013884,0.1552306,0.51047105,0.5383374,-0.28018805,-0.026678396,0.02500192,-0.10079599,-0.64763737,-0.27498913,-0.6997988,-0.5459785,-0.20293261,0.8276257,-0.20313846,0.10692087,0.1617062,-0.36589786,0.0876443,0.12122545,-0.13586673,0.11919646,0.704378,0.12038354,-0.6860476,0.4059359,0.03737803,-0.06415015,-0.5678727,0.3425998,0.70747215,-0.8641967,0.69642836,0.54371446,0.03134135,-0.042482145,-0.42861256,-0.31868997,-0.111343786,-0.06707604,0.42224953,0.22106431,-0.75420576,0.34128177,0.22073653,-0.57397336,-0.78854764,0.2997165,-0.14864576,-0.37810832,-0.12118939,0.37147486,-0.00041894728,0.01423248,-0.19800803,0.15045494,-0.5025399,0.34411636,0.23361829,-0.15702611,0.36973482,-0.13436507,-0.39276254,-0.74856514,0.1734543,-0.48362118,-0.2474352,0.4744445,-0.090936415,-0.1538355,0.4024177,0.41394186,0.26927117,-0.22799203,0.004029751,-0.04964669,-0.52032065,0.3575555,0.5232408,0.47462577,-0.5078215,0.6294642,0.14085981,-0.4156335,0.10549942,-0.014225116,0.38111675,-0.06093136,0.3735022,0.1313327,-0.040484585,0.22878817,0.722897,0.075484104,0.590507,0.14659368,0.09234975,0.51561964,-0.009782443,0.23442517,-0.047292683,-0.6071006,0.13386308,-0.049712364,0.09027912,0.39035955,0.33062792,0.16765174,0.10401427,-0.21188563,-0.14269498,0.15178087,-0.026822237,-1.2293142,0.17863414,0.18262061,0.8257626,0.17773302,-0.018366477,-0.17555656,0.82878834,-0.14632016,0.10277304,0.46078733,-0.03931817,-0.32747686,0.80059874,-0.57416433,0.4530481,-0.13163576,0.11359182,0.038334534,0.18995704,0.31417623,0.9623804,-0.36028522,-0.056105375,-0.22217767,-0.084846824,-0.04564872,-0.52180946,0.16051194,-0.46604127,-0.49578497,0.96666944,0.34294945,0.39537874,-0.19973351,0.06879918,-0.092497915,-0.3089477,0.46970075,-0.027321467,-0.091700755,0.26411518,-0.5957747,0.0811586,0.45879695,-0.16338246,0.13151759,-0.2249326,-0.089349434,0.084183164,-0.33725742,-0.2238329,-0.07465757,-0.9407342,0.01697774,-0.436387,-0.60607785,0.4931746,0.025988404,0.026575267,0.10975372,0.011822669,-0.22166021,0.48252985,0.0015280613,0.69374317,0.1759085,-0.45524004,-0.3542227,0.11171191,0.23401393,-0.26845026,0.37758777,-0.3951059,0.19961245,-0.40152338,0.83864254,-0.13413502,-0.47003475,-0.06245791,-0.25862136,-0.13742413,0.6702674,-0.12484889,-0.19160047,0.0051796734,-0.25180355,-0.39255017,-0.06807394,-0.19153307,0.15119682,0.47024626,-0.17537317,-0.16503319,-0.36688775,-0.16064757,0.69060475,-0.02289491,0.5051743,0.25033897,0.0060411463,-0.21525511,-0.052874804,0.3249212,0.67939913,-0.044945616,-0.20281996,-0.499659,-0.42860582,-0.37966225,0.36942455,-0.037870977,0.17178401,-0.037865028,-0.08138193,1.1205522,0.08535728,1.3419236,0.21665147,-0.24661158,-0.010306468,0.56614584,-0.21625185,-0.028509911,-0.63647586,1.1103603,0.47970244,-0.1287335,-0.071380146,-0.49549162,-0.07394206,0.3227802,-0.3378035,0.012774364,-0.10405089,-0.57009137,-0.35201794,0.16785677,0.43131477,0.033662833,-0.031104542,0.20073321,0.17901827,-0.0094759725,0.3867486,-0.83285993,-0.40242693,0.46581233,0.20449382,-0.2646912,0.2216627,-0.38030273,0.43512625,-0.6297268,0.20051931,-0.5250604,-0.016456343,-0.111816995,-0.5503645,0.3151283,0.07847366,0.47818896,-0.7322601,-0.3118387,-0.20943841,0.29916236,0.27874315,0.18845645,0.5936892,-0.22934411,-0.15792002,0.16345504,0.61594355,1.3186798,-0.4976369,0.19040087,0.1633125,-0.43263912,-0.6699613,0.44885558,-0.28419793,-0.03624285,-0.19623272,-0.52438,-0.7143556,0.20825823,0.02220914,-0.031234851,0.09433686,-0.7410698,-0.19390967,0.2564522,-0.26971155,-0.16891879,-0.18414395,0.34845448,0.5849857,-0.03392055,-0.25393537,0.042996313,0.3195871,-0.22697943,-0.42152196,-0.13219975,-0.44012964,0.25667408,0.12838395,-0.35690647,-0.14512442,0.17725402,-0.57710266,0.073954515,0.2321853,-0.4239261,0.070763454,-0.14815713,0.031562347,0.8290532,-0.18137988,-0.057830118,-0.5658115,-0.50510144,-0.93050766,-0.29287407,0.12436588,0.13400735,0.017668111,-0.39713553,-0.16576293,-0.09602829,-0.2185187,0.095889375,-0.6830136,0.32505527,0.1524984,0.67824906,-0.43413624,-0.9833152,-0.03308893,0.1985422,-0.25284183,-0.6023401,0.50534177,0.05998006,0.8695667,-0.03138909,-0.03284234,0.05695599,-0.44982332,0.020422658,-0.33558825,-0.1439692,-0.75953805,-0.014414602,526 -689,0.4730344,-0.008141155,-0.6503826,0.090540774,-0.25683215,0.27714622,-0.42355463,-0.017840624,0.11900023,-0.7044454,0.025338786,0.11186929,-0.38658392,0.057584837,-0.078355044,-0.37387183,0.2922253,0.18715747,-0.7628218,0.649184,-0.23114516,0.43420416,0.1279753,-0.02189156,-0.18817958,0.10263947,0.27682588,0.17408516,0.057429057,-0.6051258,0.064028874,-0.16465221,-0.812041,0.57379586,-0.13875198,-0.22961348,-0.24719144,-0.27496535,-0.38147402,-0.7486446,0.1394199,-0.81953174,0.6206237,-0.06414526,-0.33808035,0.08483534,0.19880962,0.18113597,0.2902604,-0.11036868,0.230541,-0.40944722,-0.40566716,-0.24298246,-0.16307935,-0.42363086,-0.51070964,0.1145172,-0.53968376,0.013104806,-0.42804855,0.33122766,-0.39483228,0.11138044,-0.3017386,0.61657727,0.009972047,0.1103739,0.046623792,-0.26885012,0.07112314,-0.53994554,-0.028488997,-0.07754414,0.34131387,-0.0049697435,-0.12078676,0.43353432,0.14046322,0.60935414,0.013741509,-0.3048751,-0.12913217,-0.25269955,0.36638114,0.5920492,-0.1244538,-0.06847698,-0.23702183,-0.19615412,0.5604057,-0.07073835,0.16831297,-0.32623738,0.0015504796,-0.14797495,-0.16689602,0.587366,0.5571843,-0.16996886,-0.008203726,0.3635119,0.66562086,-0.028861586,-0.18318488,0.090740256,-0.1544555,-0.26909986,-0.23762354,0.24270612,0.10436346,0.25533018,-0.20179318,0.33198804,0.5092177,-0.1583786,-0.22905304,0.6043978,-0.029391041,0.34483972,-0.07598075,-0.13980372,0.39146423,-0.75622857,0.0051199337,-0.5836544,0.6801492,-0.13516688,-0.8437706,0.45272824,-0.41542453,0.07919052,0.16138826,0.7081921,0.6877423,0.84061915,-0.060156584,0.9358227,-0.35234377,-0.13925043,-0.077205606,-0.18026403,-0.052955702,-0.267176,0.027190413,-0.2611223,-0.07233917,0.043996327,-0.01730244,-0.07897,0.32599655,-0.42410624,-0.3970755,-0.04407451,0.83645976,-0.19796024,-0.024664283,0.81150925,1.0882124,0.9930893,0.12645374,1.1441727,-0.036013044,-0.17229316,-0.515074,0.2289976,-0.7590144,0.35887656,0.1935257,0.53240144,0.27791116,0.06557681,-0.204792,0.15684308,-0.49679,-0.33245167,-0.06658311,0.29313654,-0.1416946,-0.15231477,-0.30461484,-0.0449995,0.29455253,0.07258298,0.3069824,0.25891787,-0.34053496,0.50338256,0.14890805,0.630767,-0.28575554,0.093159184,0.06696362,0.22081396,0.07856778,-0.35822228,0.0695247,0.14323834,0.26672763,0.23209557,-0.54083,0.022727687,-0.2448275,-0.30675027,-0.26319122,-0.20350493,-0.2984897,-0.102544345,-0.11117841,-0.42617494,-0.19095877,-0.45809704,0.30506366,-2.5677009,-0.13730791,-0.09699479,0.30242524,-0.17236209,-0.24169654,-0.09616903,-0.65055394,0.4170381,0.16079783,0.46897206,-0.53889954,0.42552269,0.4626277,-0.3703405,-0.14163646,-0.5945075,-0.0001583512,0.045401853,0.48048922,0.11708564,-0.18531504,-0.16258198,0.09875835,0.5311555,0.007645836,0.117953315,0.58155024,0.40629718,-0.07469483,0.18544902,0.025045175,0.5665134,-0.52453583,-0.1756991,0.51724184,-0.51632386,0.2554558,-0.2028723,-0.01117505,0.45135567,-0.38890135,-0.5664883,-0.49720544,-0.15734926,1.5004003,-0.17434567,-0.8740274,0.03439154,-0.05028093,-0.3372876,-0.091855355,0.38583085,-0.064834364,0.1313711,-0.5407254,-0.072065026,-0.20956443,0.5543336,-0.20210248,-0.22237231,-0.46242425,0.7251151,-0.052262213,0.72488487,0.31214988,0.31984228,-0.42844164,-0.29110003,0.04492967,1.336679,0.5934176,0.18991579,-0.28757828,-0.07454605,-0.27926522,-0.42575172,-0.022534508,0.76649857,0.5251789,-0.020018853,0.070547484,0.50849205,-0.07292619,0.24228914,0.0585972,-0.42171147,-0.37363493,0.0053193294,0.743521,0.47027808,-0.023037454,0.3293596,0.019234447,0.16202277,-0.30206817,-0.492352,0.48761448,0.7427905,-0.2161689,-0.28787258,0.50962555,0.57037014,-0.3444947,0.57012933,-0.5763436,-0.66160464,0.3524666,-0.07712043,-0.47459376,0.06898789,-0.43396562,0.2581483,-0.39068967,0.57626814,-0.57667637,-1.1166294,-0.32635257,-0.0488557,-1.6124737,0.2859507,-0.20649551,0.0091881985,-0.38849103,-0.13253309,0.23847939,-0.21791182,-0.56300503,0.03761154,0.14665464,0.8454313,-0.09422203,-0.016913066,-0.17295045,-0.36247206,-0.1547731,0.29965398,0.12849285,0.120591596,-0.28081146,-0.10309573,-0.12116151,-0.21644229,-0.12175751,-0.18407425,-0.44095558,-0.31405133,-0.2418015,-0.21596774,-0.17487954,0.6601357,-0.40968984,0.13896751,-0.29262316,0.047385298,0.09791653,0.23202246,-0.042695846,0.18482637,0.05033276,-0.37269592,0.042198803,-0.2849396,0.36608493,0.014939523,0.44438207,0.5199061,-0.40788218,0.075798236,0.3503736,0.6481273,0.13133751,1.0765784,-0.045221284,-0.21261787,0.4403985,-0.03180411,-0.4919441,-0.65345997,0.1725565,0.4807623,-0.382298,-0.199565,0.2186401,-0.23443991,-0.98105824,0.57278156,0.20290415,0.2654925,-0.23851922,0.5395467,0.19701368,-0.17570908,-0.14427249,-0.21066219,-0.28177398,-0.36971074,-0.4079752,-0.7282866,-0.47995663,-0.1320295,1.0071696,-0.09846006,0.07432901,0.33526084,0.020653386,0.27367818,0.15044788,0.16529836,-0.04642048,0.43909535,0.14672497,-0.6396402,0.477459,-0.37233564,0.1024898,-0.41293982,0.5156497,0.61202216,-0.48594317,0.124475956,0.5367857,0.07852332,-0.39820942,-0.6567226,0.13671671,0.0053517567,-0.17740026,0.28978515,0.3082522,-0.8603824,0.5025222,0.19652966,-0.23688293,-0.64918995,0.25699085,0.0024276834,-0.05482064,-0.061961643,0.48498484,-0.12431354,-0.040123872,-0.04459726,0.17143592,-0.34558156,0.32561514,-0.008684392,-0.14968985,0.22532281,-0.2614045,-0.42154947,-0.5421054,0.084622785,-0.8278455,-0.13657102,0.23750472,-0.16241309,-0.0848689,0.47790962,-0.016376985,0.47491565,-0.19966926,0.13069269,-0.28008264,-0.3553526,0.62381274,0.46061713,0.46682066,-0.5598687,0.77520853,0.22992085,-0.20222405,-0.086852394,0.20680879,0.4865858,0.095649056,0.4687607,0.0109869605,0.13345575,-0.034147076,0.81949055,0.34679046,0.32634524,0.0596196,-0.056861877,0.25410667,0.019297095,0.3693071,-0.13737677,-0.6570536,-0.10135892,-0.16216166,-0.0017920182,0.37773877,0.034827266,0.4344789,-0.02686031,-0.14738944,-0.083463736,-0.06704101,-0.17790006,-1.5044205,0.44064033,0.1685634,0.745546,0.21681306,0.18413195,0.021661805,0.7098423,-0.106366195,0.009757672,0.12986046,0.024155827,-0.3370773,0.49259627,-0.78474844,0.2778656,0.06764741,-0.014136798,0.091061756,-0.10221676,0.40795678,0.8376417,-0.13598657,0.18973556,-0.23994437,-0.3136131,0.16561607,-0.36696097,0.54023886,-0.30628648,-0.46353543,0.72983146,0.101493485,0.44136652,-0.30812755,0.07514251,0.10727252,-0.19565865,0.3029742,-0.028195769,0.17036544,-0.3161085,-0.2356836,0.13203624,0.507723,-0.055318337,0.0330635,0.21275337,0.014761352,0.11318027,0.16386183,0.07888622,-0.06361253,-0.7165861,0.3110456,-0.33622858,-0.46224898,0.100496516,-0.19298735,0.0077682505,0.29258066,0.14331304,-0.2158526,0.31350186,0.33702978,0.30239275,0.032714624,-0.14450344,-0.25832742,0.15770909,0.005551118,-0.3998977,0.21026811,-0.008869629,0.19295874,-0.5878058,0.39068285,-0.39764926,-0.3321423,0.44692013,-0.09572249,-0.1260409,0.41032633,-0.045953266,-0.012494729,0.4021007,-0.16709001,-0.18071714,-0.29748806,-0.0103297,0.11691345,0.06037519,-0.13532957,-0.07395414,-0.14220718,-0.2534664,-0.074344985,0.15955822,0.2560457,0.3993061,0.042802773,-0.6597346,0.27819434,-0.0008679812,0.52850425,0.030879421,0.17301312,-0.217994,-0.41679847,-0.46013469,0.6565039,0.062176052,0.107604794,0.15421282,-0.4075219,0.64530945,-0.10696941,0.82659924,-0.011903156,-0.31183964,0.029182963,0.60515165,0.042873416,-0.18322532,-0.36789984,0.93748826,0.44711035,-0.10572868,0.08250291,-0.5624128,0.027713913,0.07373057,-0.24862124,-0.21648718,0.029875685,-0.6633905,-0.1714018,0.14403212,0.413612,0.05619768,-0.21043733,-0.07304126,0.5278629,0.049578905,0.028608102,-0.5297742,-0.11239138,0.383561,-0.05219553,-0.23071441,0.072231404,-0.4937349,0.16376597,-0.8764063,0.06848888,0.04585349,-0.084016636,0.051133927,-0.3255319,0.3562236,0.17132014,0.28849828,-0.331653,-0.21379264,-0.005936359,0.2285436,0.27848396,0.31050593,0.6884851,-0.19338351,0.011398282,0.090552844,0.3491828,0.9278638,-0.058167763,0.031175168,-0.044387594,-0.49546754,-0.73002493,0.066227205,-0.35573688,0.20733769,-0.052727994,-0.4109542,-0.3555463,0.2655936,0.11411505,0.0076545156,0.1250643,-0.90825903,-0.2789195,-0.10977467,-0.44580394,-0.24381612,-0.2715465,-0.021774825,0.53488946,-0.018277435,-0.26245564,-0.04237949,0.38894904,-0.2586659,-0.7654197,-0.10548549,-0.32216138,0.07607742,0.017848881,-0.23946443,-0.16991176,0.13253722,-0.499935,0.17715599,0.11238973,-0.28348047,-0.13545574,-0.34099784,0.08507626,0.3726586,-0.11441869,-0.07954547,-0.24947897,-0.6762534,-0.63879627,-0.37794712,-0.18154882,0.32303736,-0.0053647067,-0.63256115,-0.33803913,-0.4949772,0.049428187,0.0066157123,-0.43138936,0.31426528,0.20714341,0.27070072,-0.26946607,-1.0151604,0.25742775,0.033899095,0.022354722,-0.3731434,0.2620656,-0.019803403,0.5825393,0.18183932,-0.015253599,0.21085602,-0.85361284,0.31750947,-0.23536086,-0.042004295,-0.67459166,0.17810021,528 -690,0.23811346,-0.07309845,-0.3059545,-0.2046873,-0.24830309,0.09492013,-0.0171434,0.39501163,0.24176015,-0.13240942,-0.0048894454,-0.20549704,-0.026525626,0.46161348,-0.012379573,-0.78415024,-0.14671305,0.048294324,-0.57131237,0.35951024,-0.487316,0.2804071,-0.06456619,0.49091128,0.1134413,0.36142284,0.10326373,-0.08145363,0.07214056,0.15744402,-0.27657902,0.18561332,-0.5366342,0.12087667,0.11750566,-0.20949475,-0.11693545,-0.3999349,-0.38725778,-0.6067906,0.34361485,-0.59818465,0.42886522,-0.10938546,-0.28732923,0.1641323,0.072684675,0.23629355,-0.52670956,-0.0092793815,0.2669678,-0.12726262,0.19929364,-0.111771025,-0.29588547,-0.37922555,-0.48806655,-0.06089846,-0.41940692,-0.22226843,-0.27613685,0.06375539,-0.36869806,-0.12834165,-0.17524853,0.47324243,-0.37062213,0.22711545,0.25653416,-0.15709975,0.15578406,-0.43139923,-0.13881639,-0.16076134,0.085861534,-0.021527745,-0.21597753,0.33239767,0.3056528,0.31844383,-0.088569015,-0.121601835,-0.2213915,-0.022641677,0.0074356887,0.432848,-0.21637902,-0.28467023,-0.12223761,0.035100535,-0.014441635,0.18698627,-0.04675613,-0.4446871,-0.04707184,0.13032508,-0.23529941,0.15261349,0.29068625,-0.29842672,-0.2797127,0.37298664,0.24005304,0.16433352,-0.104988165,0.12200098,0.01367558,-0.5106298,-0.2020451,0.16538833,-0.033133145,0.36999696,-0.08033219,0.13126303,0.78200984,-0.14302751,-0.0065295147,-0.1767699,-0.0252811,0.022706985,-0.32917374,-0.12110912,0.05131519,-0.32867214,0.28493118,-0.06342102,0.7586435,0.15241274,-0.8688951,0.3164967,-0.5291576,0.16340016,-0.12354978,0.49812725,0.70527977,0.31116536,0.20240267,0.8423763,-0.47841755,0.05242979,-0.017147861,-0.32024986,0.18640845,-0.026397912,-0.0013443736,-0.53677696,-0.030368218,0.11963001,-0.070021994,0.18347992,0.027302088,-0.43459657,-0.065688714,-0.032459177,0.7713067,-0.33946323,-0.15706357,0.53972113,0.8398612,0.9080321,0.14737494,1.195724,0.29719636,-0.21153274,0.30472866,-0.37819433,-0.6582498,0.16291276,0.28702235,-0.10148107,0.231781,0.045912307,0.025971761,0.22916242,-0.12734857,0.16106136,-0.10940315,0.16742983,0.1695917,-0.120350435,-0.13836968,-0.3884895,0.06392603,-0.04366521,-0.099699646,0.21138474,-0.18924528,0.32481065,0.06418287,1.724189,0.19083378,0.08694708,0.07332965,0.38682142,0.1882469,-0.1096393,-0.13877146,0.45852053,0.35475275,0.06223132,-0.5805517,0.2436286,-0.17103657,-0.4605112,-0.0029975732,-0.4247606,-0.065121025,-0.11804747,-0.4363718,-0.22851986,0.007845681,-0.28195763,0.4451821,-2.9042587,0.0036205994,-0.009115458,0.22013241,-0.27177784,-0.24541415,-0.2783238,-0.3056534,0.29840022,0.4328933,0.38659653,-0.5786155,0.21417497,0.31018847,-0.28135234,-0.312561,-0.5735887,-0.08799878,0.08203392,0.18672647,-0.12191228,0.13409215,-0.11661533,0.19574502,0.5715682,-0.024357852,-0.036911123,0.2680678,0.4998794,0.17364946,0.53482157,0.06395371,0.47147018,-0.13249363,-0.09909045,0.27785036,-0.48993322,0.3018706,0.23807158,0.088057905,0.3979874,-0.38964775,-0.82450473,-0.48407382,-0.36013615,1.2442305,-0.4260432,-0.21485028,0.31342798,-0.25634918,-0.10678319,-0.103947006,0.4533226,-0.1361573,-0.18630257,-0.6454292,0.0194962,-0.060521465,0.33229563,-0.040986005,0.042833064,-0.08778033,0.55856615,-0.05244518,0.47992632,0.3329975,-0.017159197,-0.18240738,-0.46023324,0.112714894,0.6726433,0.18390411,0.18615586,-0.03874342,-0.07218286,-0.052655872,-0.107849054,0.1996776,0.5905661,0.57794493,-0.01109246,0.17416558,0.40143937,-0.2386435,-0.08769524,-0.048408847,-0.20139226,-0.015839221,0.05051644,0.4567329,0.5694579,-0.2412793,0.44114617,-0.07671538,0.17965595,-0.17159358,-0.4718868,0.50309086,0.8231443,-0.14839718,-0.14546844,0.27706736,0.48497933,-0.33092526,0.24127078,-0.47183955,-0.14675349,0.79613936,-0.14457901,-0.33208874,0.14737675,-0.26215336,-0.15112591,-0.75328535,0.15934794,-0.034462478,-0.43193018,-0.524953,-0.10861099,-3.6963515,0.022741826,-0.27249634,-0.326956,-0.18863359,-0.048614137,0.23261547,-0.5032269,-0.5596275,0.012409542,0.063714154,0.44878438,-0.046657786,0.18638285,-0.31744164,0.012248195,-0.36295986,0.1581227,0.019364376,0.39733568,0.071173295,-0.35219002,-0.07263144,-0.2515098,-0.61652946,0.10290216,-0.44659775,-0.41079235,-0.13475008,-0.5509223,-0.28142262,0.6715368,-0.46279588,-0.11686886,-0.14285041,-0.11197022,-0.23217049,0.3846858,0.3751776,0.07993157,0.062098905,0.01660626,-0.29757196,-0.31050056,0.19216236,0.102367096,0.35013574,0.41308576,-0.0018520906,0.15362443,0.52275246,0.58367467,0.11034428,0.5334998,0.27183402,-0.023744611,0.34358212,-0.50822854,-0.034467246,-0.5201161,-0.25376102,-0.2577282,-0.26624033,-0.50417006,-0.17659834,-0.34519672,-0.68330914,0.19921662,0.04268159,0.081159905,-0.023276385,0.072057314,0.36546168,-0.13376766,0.18771309,-0.04511334,-0.15982884,-0.46859643,-0.40079653,-0.5009937,-0.48533195,0.2764509,0.99726135,-0.16994482,-0.21616003,-0.16436094,-0.3919906,-0.08747926,0.04143658,0.06686321,0.32590136,0.24551392,-0.14223753,-0.6327123,0.3312693,-0.1070299,-0.12766753,-0.69811565,0.13190733,0.6114815,-0.6126288,0.6502844,0.0875796,0.180675,0.031028142,-0.4783502,-0.34878066,-0.01722813,-0.13844426,0.37126273,0.09697234,-0.5658923,0.37178108,0.26818264,-0.13469872,-0.5615621,0.39296645,-0.021737365,-0.36618295,0.08574056,0.25253212,0.07836402,-0.092250995,0.071022175,0.268061,-0.48772028,0.18016948,0.2496976,0.04883675,0.35085183,0.084289715,-0.09496788,-0.48206905,0.081597656,-0.3213967,-0.3611112,0.2202582,0.1309706,0.15456489,0.04039426,-0.1270595,0.29075745,-0.1278502,0.083309256,-0.04819358,-0.061876237,0.29462364,0.42084467,0.33150667,-0.50139433,0.4612885,-0.013640711,0.1975787,0.23131841,0.20464513,0.36855492,0.35323903,0.19655353,-0.11094462,-0.27156723,0.15341736,0.5887674,0.14596346,0.35421783,0.031046368,-0.12281629,0.41761252,0.09593666,0.11783986,-0.008597255,-0.2930011,0.010225324,-0.13005096,0.24207425,0.39937815,0.108661614,0.21596028,-0.010321475,-0.18479535,0.14154445,0.28408208,-0.06556906,-0.9461374,0.3390713,0.2968775,0.63499355,0.5501406,-0.02899561,0.05526871,0.5267846,-0.22623135,0.17468221,0.42096123,0.0578787,-0.6321497,0.59893775,-0.6247682,0.5918755,-0.14999436,-0.07674168,0.05698437,0.29779112,0.30718237,0.8757213,-0.07589232,-0.07927973,0.13858652,-0.35438633,0.024730159,-0.42183086,0.18990056,-0.57215345,-0.2991142,0.36290976,0.3634873,0.16443665,-0.36867985,-0.029938968,0.0008280369,-0.16961035,0.090073556,-0.006085694,-0.09020721,0.051962554,-0.62439835,-0.5137569,0.54754186,-0.21593396,0.09487137,0.10282454,-0.22492838,0.3468963,-0.23471092,-0.058713026,-0.06517637,-0.5465937,0.07828351,-0.26891437,-0.47305197,0.24735212,-0.30487883,0.3005298,0.22179733,-0.0018236866,-0.49085698,0.37061617,0.17799972,0.8053869,-0.22977774,-0.14787532,-0.40475973,0.048522856,0.24835514,-0.15430519,-0.24048415,-0.28574798,-0.1248378,-0.32102224,0.36011165,-0.014169324,-0.23603524,0.017134923,-0.13543354,0.013267821,0.3770168,-0.1208433,-0.07935039,-0.3013436,-0.19249216,-0.31240985,0.0612767,-0.33147228,0.4183539,0.05452925,-0.0006631842,0.086534604,-0.13153365,-0.11268464,0.24411613,-0.024736252,0.2718826,0.20592664,0.11515816,-0.25827175,-0.044395007,-0.09391807,0.4003185,0.27422735,-0.031600237,-0.14088625,-0.17630014,-0.2946447,0.28787243,-0.26837066,0.3000646,0.16761369,-0.6645248,0.6540556,-0.008321494,1.0093929,-0.024589868,-0.18783917,0.126499,0.42985928,0.2480167,0.08298084,-0.27219212,0.6561612,0.65395766,-0.024822744,-0.19681194,-0.1442628,-0.27841842,0.26694477,-0.20747529,-0.2691766,0.0064293053,-0.6150652,-0.15587163,0.06642041,0.06950521,0.30966246,0.07955496,-0.25212517,0.058983766,0.13488448,0.3585079,-0.20701121,-0.056083385,0.25095302,0.111333005,0.26344043,0.22229902,-0.35126045,0.43387902,-0.6027308,0.34109193,-0.30723593,0.19910192,-0.14288828,-0.12733954,0.096978195,0.03657565,0.3580101,-0.13299383,-0.24130553,-0.26331857,0.6632118,0.21041836,0.3894207,0.7999137,-0.18286672,0.013367231,0.082544915,0.4829739,1.0243853,-0.08897396,-0.123780265,0.32613137,-0.4313125,-0.60884696,0.21567973,-0.27583548,0.11591805,-0.039220765,-0.092250384,-0.26303193,0.24243182,0.082597815,0.14719023,-0.017296195,-0.5239312,-0.2861238,0.4353499,-0.24179038,-0.2920564,-0.45249063,0.32641503,0.69268066,-0.3617684,-0.21321605,0.18645485,0.18431138,-0.19935611,-0.3499125,0.07711477,-0.38369262,0.35971898,0.111034885,-0.28258863,-0.031066183,0.16815391,-0.3295583,0.15975857,0.14854066,-0.34905034,0.041299343,-0.111111194,-0.1504197,0.9223906,-0.03544758,0.015687564,-0.6475885,-0.45007923,-0.8518098,-0.23767583,0.5157988,0.020768883,-0.19478036,-0.5432354,-0.1767535,0.14126964,-0.21141146,-0.101251125,-0.51118064,0.4294232,0.03627736,0.17895328,0.02445689,-0.789733,0.08021101,0.10573197,-0.14890848,-0.6557254,0.5415983,-0.2997101,0.6570531,0.03181008,-0.071151264,0.28068465,-0.35680965,0.2526203,-0.43962306,-0.25423762,-0.44730398,0.20690249,534 -691,0.6090177,0.04098755,-0.5328307,-0.09267609,-0.12561153,0.08774397,-0.17231122,0.3071688,0.18407795,-0.5368694,-0.4277728,0.022478415,-0.17226832,0.21504182,-0.39114574,-0.80301285,0.1027402,0.21564351,-0.23187762,0.78869176,-0.29621822,0.4412103,-0.0996685,0.23374394,0.12166689,0.13208903,0.29642585,0.07120249,-0.15165043,-0.28285056,-0.118856356,0.34274772,-0.3980869,0.2920903,-0.20012563,-0.23405248,0.023252575,-0.20016098,-0.4139408,-0.8773858,0.25888225,-0.72289175,0.6912936,0.015436358,-0.53184307,-0.12301069,0.19653445,-0.06720707,-0.15923318,0.099943176,0.11450582,-0.2551193,-0.057276662,-0.32154402,-0.40263745,-0.5027727,-0.5070629,0.011471446,-0.37593862,0.10400575,-0.45080784,0.29681233,-0.41654396,-0.18334082,-0.062410172,0.3734472,-0.3829404,-0.027469039,0.10622215,-0.12748367,0.3336349,-0.88762176,-0.3115536,-0.1633574,0.111263126,-0.033584952,-0.16567567,0.39995936,0.21046686,0.67618304,0.01935072,-0.18769082,-0.21204267,-0.18229792,0.085475735,0.5418525,-0.5196203,-0.6244679,-0.21233581,-0.1798837,0.48839536,0.30106682,0.08161934,-0.26656044,0.058528386,-0.29221854,-0.10946748,0.30929154,0.7724275,-0.35047156,0.17113993,0.19139999,0.3445397,0.14291164,-0.1194784,0.054902654,-0.18252578,-0.62432545,-0.38839525,-0.21451943,-0.1476948,0.645806,-0.09656766,0.14834884,0.47233555,-0.09021755,0.21127741,0.33755222,-0.017688064,0.19928163,-0.1445434,-0.2944331,0.25412935,-0.3129279,0.22007996,-0.3743423,0.6399652,0.092733435,-0.61402076,0.31754526,-0.41288787,0.24065281,0.07691837,0.7749969,0.69561744,0.63035935,0.27273905,0.8280305,-0.5552982,-0.0960697,0.23606454,-0.08512707,0.08300451,-0.09220926,-0.21280447,-0.48275054,0.11876961,-0.096717276,-0.11398884,0.10952166,0.5698588,-0.51543576,-0.22285363,0.07406927,0.81751883,-0.274296,0.18303499,0.6649734,1.1028104,0.98216176,-0.19223438,1.3672028,0.24307753,-0.10272991,-0.38773364,0.11664534,-0.7656755,0.2531265,0.45373026,-0.23198754,0.32505116,0.20360002,-0.12693521,0.45643404,-0.65361226,-0.29852885,-0.14750917,0.4360533,-0.111795664,-0.19986698,-0.6595426,0.06801079,0.0874888,0.109563045,0.06943972,0.489411,-0.29196465,0.51172745,0.068498224,1.2304479,-0.1768782,0.11449519,0.18596688,0.4037134,0.27240354,-0.047418978,0.149626,0.12930076,0.22834888,-0.008661187,-0.42415088,-0.061055284,-0.24945384,-0.5169665,-0.19297232,-0.21868055,-0.16562748,0.01753857,-0.29400456,-0.30680335,-0.10545325,-0.44164672,0.29356462,-2.399343,-0.00022746279,-0.07519801,0.30066398,-0.24211396,-0.34407762,-0.16280852,-0.33821118,0.69206303,0.34210613,0.42357937,-0.7183847,0.27989465,0.75702405,-0.46200264,-0.016080031,-0.694642,-0.098872915,-0.106302366,0.6282655,0.27125221,-0.22774747,-0.040025588,0.26125497,0.63970596,0.27290475,0.16520081,0.22067226,0.38380578,-0.35863787,0.2582061,-0.09512811,0.4633498,-0.26284537,-0.15936361,0.49735647,-0.3046838,0.26974308,-0.30740264,0.10667764,0.40262794,-0.5792417,-0.63761014,-0.76095015,-0.23258089,1.190738,-0.020746391,-0.75275266,0.30258787,-0.44087675,-0.35710156,0.010474508,0.67137057,-0.30407172,0.1270282,-0.8000789,0.014607819,-0.21441418,0.16106217,-0.0520459,-0.036737587,-0.68907547,0.93568045,-0.14240462,0.4236002,0.42088747,0.24604405,-0.26323992,-0.5780572,-0.010108124,1.0230292,0.80418193,0.191622,-0.31699535,-0.026105693,-0.25469473,0.012207678,-0.04895733,0.963539,0.63015527,-0.1071362,-0.07954432,0.27654016,-0.059279736,-0.021637525,-0.24789111,-0.34316924,-0.122542344,0.16496475,0.75795066,0.7310994,-0.30685753,0.19112413,-0.16302244,0.374618,-0.42715532,-0.42064968,0.38749272,1.0433737,-0.20282911,-0.17064136,0.97987694,0.57004535,-0.25717786,0.6184139,-0.68839705,-0.5965753,0.41417167,-0.20220588,-0.5935992,0.22910985,-0.4645486,0.118876114,-0.78960145,0.36998522,-0.43292838,-0.5261097,-0.596637,-0.10882894,-2.5159247,0.31082428,-0.36131018,-0.07955663,-0.27196217,-0.118940905,0.42726606,-0.5627614,-0.57261777,0.20986709,0.09427807,0.46710762,-0.07601108,0.0339997,-0.17370392,-0.47676325,-0.1373484,0.16974324,0.16679026,0.2533033,-0.10250913,-0.4878008,-0.1404573,-0.10617456,-0.29247332,-0.048292764,-0.60279006,-0.5287531,-0.12179898,-0.23667619,0.0039622504,0.54714805,-0.4116929,0.09725277,-0.40991578,0.07777619,-0.16459414,0.044076502,-0.008925681,0.41580835,-0.20941386,-0.3037028,0.07054611,-0.24734071,0.39785093,0.110632695,0.3646457,0.50294673,-0.34037,-0.092080705,0.3807389,0.6386284,-0.10294919,1.1170131,0.5506721,-0.06572443,0.34464008,-0.08456484,-0.6301545,-0.6707936,-0.37210506,0.17389861,-0.48529595,-0.25730193,-0.13912684,-0.53521883,-0.89588153,0.59918493,-0.00036483773,0.2802749,-0.112935595,0.2338909,0.46503168,-0.3546949,-0.16464688,0.055700462,-0.21950558,-0.49878305,-0.2830211,-0.68259627,-0.44288862,-0.03690848,0.95561993,-0.0923008,0.09889205,0.17615971,-0.1644937,0.0497416,0.052412704,0.12771852,-0.11807353,0.2955764,0.050951835,-0.7652625,0.4549742,0.11338019,-0.20586099,-0.5527867,0.22258799,0.79884326,-0.5322174,0.5816555,0.3619558,0.0031363093,-0.3094712,-0.90113574,-0.095091835,-0.10061695,-0.2983657,0.5652667,0.2796667,-0.80281126,0.4241493,0.35872915,-0.12418978,-0.6795522,0.518916,-0.11173531,-0.63573045,0.0894666,0.42281517,-0.13148102,-0.11888708,-0.08783269,0.42331997,-0.2557526,0.4192793,0.088726684,-0.006068569,0.24133411,-0.23795924,-0.19129366,-0.96510416,0.032060605,-0.7574272,-0.28173172,0.24274302,0.082597174,-0.2238494,-0.0076749693,0.08891744,0.57601196,-0.4199127,0.37310168,-0.24800764,-0.4253405,0.50064087,0.50115544,0.48932618,-0.2782257,0.7774344,0.12822741,0.020046206,-0.32268095,0.23929907,0.4680814,-0.047401153,0.5226153,-0.35995796,0.006294209,0.23276573,0.7279943,0.19977877,0.333729,0.18569528,-0.103244424,0.30393597,0.07523486,0.16616961,-0.06509424,-0.54166055,-0.12349444,-0.22424287,0.034153495,0.45165315,0.16585511,0.4370411,-0.21137282,-0.2861985,0.09129473,0.22497389,0.18346885,-1.2639658,0.2849642,0.02817579,0.81258667,0.6049834,0.13788773,-0.042496268,0.5709247,-0.047318097,-0.0022262563,0.5257145,0.009971802,-0.27519143,0.4242795,-0.4646116,0.19819432,-0.031719003,0.16707054,-0.00017404786,-0.06357733,0.44594288,0.8306003,-0.1819677,0.13357632,-0.052409448,-0.2757107,0.0930206,-0.35992205,0.12426467,-0.4038868,-0.5457826,0.4451199,0.5113631,0.37854153,-0.19995154,-0.076614134,0.13187179,-0.17264324,0.10811898,0.037221793,0.04180267,-0.42269886,-0.47395295,-0.0063009034,0.45368063,0.1452527,-0.09896446,0.0371309,-0.050492726,0.23700887,-0.09434407,-0.03053744,-0.019828402,-0.4738328,0.08576154,-0.47658175,-0.2889134,0.58539283,-0.33443853,0.1772859,0.15925004,0.006965651,-0.12907784,0.278248,-0.031436764,0.639255,0.20670363,-0.23275667,-0.2910399,0.13614541,0.25534502,-0.3588739,-0.08131074,-0.15127252,0.21831335,-0.54869074,0.3007022,-0.17133263,-0.12405969,0.19573344,-0.21155216,-0.17495833,0.44856527,-0.10584496,-0.30980724,-0.09274781,-0.026838463,-0.29304215,-0.16855359,-0.06531046,0.23908383,0.08366881,0.17192973,-0.093150035,-0.081814036,-0.08494889,0.15771021,0.19192515,0.16548692,0.5285654,-0.061446767,-0.38577506,0.07874311,0.1802865,0.6611852,-0.011073183,0.12842865,-0.11091364,-0.7879568,-0.41883025,0.043863077,-0.3287311,0.25479788,0.14543514,-0.15379262,0.8708983,0.27583292,1.1065694,-0.0026437228,-0.38480106,-0.26625633,0.80258167,-0.22251478,0.020428717,-0.22639187,1.2738012,0.639289,-0.3416106,0.036701117,-0.3537863,0.1724564,0.18112095,-0.22126311,-0.21229456,0.0061131944,-0.6583884,-0.019152144,0.24448389,0.41586986,0.0038799988,-0.021377834,-0.07049242,0.24195717,0.28988233,0.30603427,-0.4587592,-0.046128374,0.4692267,0.15392496,-0.11962635,0.035047926,-0.32704017,0.21224411,-0.60852534,0.037770323,-0.33770898,0.011125566,-0.326359,-0.46737194,0.33686006,-0.10751014,0.28033647,-0.5338491,-0.1438191,-0.087030895,0.18252338,0.10690679,0.094058394,0.49679023,-0.1225598,0.018964635,0.06888972,0.50054836,1.2207068,-0.14586757,0.037964437,0.37825018,-0.54976666,-0.7422698,0.025294028,-0.5476844,0.030543271,-0.190483,-0.5755555,-0.4070994,0.16576649,0.110587604,-0.017820487,0.013954365,-0.5878309,-0.17587735,0.18888593,-0.33327535,-0.17076348,-0.19336846,0.16035852,0.5041343,-0.29955083,-0.39688328,-0.16719334,0.28075716,-0.37513843,-0.9041379,0.080538705,-0.27698612,0.30029285,0.32658005,-0.43155453,-0.124055415,0.0021456708,-0.52208257,0.1446712,0.22183448,-0.33377832,0.030226776,-0.27774075,-0.009355714,0.7389877,-0.19829819,0.19326574,-0.2888503,-0.49541092,-0.85562474,-0.42205244,0.3860137,0.35113877,0.0139424205,-0.77339524,-0.12376853,-0.4291244,0.22661924,0.058413632,0.026462574,0.5365437,0.23020898,0.3677808,-0.27654502,-0.72485936,0.22544256,0.19305642,-0.075695716,-0.513143,0.63842237,0.12681893,0.8996277,0.12973821,0.10420998,0.23975658,-0.7109537,0.22045022,-0.10676163,-0.34481698,-0.5826549,0.07257377,538 -692,0.4056616,-0.17708063,-0.62789726,-0.057793196,-0.23298539,-0.27565858,-0.110915095,0.71206367,0.22970016,-0.4098967,-0.04764477,-0.23650089,0.062159237,0.4977514,-0.23947753,-0.75994086,-0.13953789,-0.007587231,-0.4031391,0.49155384,-0.34696645,0.13226713,-0.10506361,0.52480817,0.31698215,0.18709938,0.060675126,-0.013976806,-0.18689595,-0.022593472,-0.016241623,0.37776878,-0.529919,0.1338542,-0.14341788,-0.36030075,-0.057922244,-0.5604851,-0.37469038,-0.79474545,0.3503853,-0.6470304,0.37271002,0.1678574,-0.3283299,0.16140778,0.16367984,0.36270824,-0.26439258,-0.1556986,0.096587405,-0.045689683,0.032343682,-0.18042172,-0.39251283,-0.35425457,-0.6167449,0.2484152,-0.41898024,-0.10752074,-0.14700936,0.16184415,-0.33276218,-0.08338167,-0.12650847,0.6015471,-0.4270106,0.09372859,0.36072716,-0.094410196,0.38730007,-0.50797075,-0.2527195,-0.07107416,0.056859348,-0.3344164,-0.3740252,0.35997778,0.31854022,0.4172443,-0.077708475,-0.24323827,-0.36705458,0.12268224,0.05627755,0.5174646,-0.378116,-0.62794536,-0.11958117,0.08897717,0.047461573,0.36116594,0.21841358,-0.3780743,-0.10436766,0.1019461,-0.16567662,0.5370228,0.55328697,-0.24008428,-0.13963313,0.22129895,0.35577348,0.20414092,-0.15521277,-0.005848316,0.088055834,-0.7177341,-0.11633541,0.17973782,-0.0071186377,0.50151896,0.0023412073,0.12430028,0.58177125,-0.14432329,-0.11547151,0.1093164,0.047702946,0.1019938,-0.6068541,-0.10294028,0.25971058,-0.38325393,0.23055857,-0.18701246,0.68618834,0.19335777,-0.8664248,0.28037953,-0.72095406,0.09451255,-0.18713567,0.317743,0.6993274,0.39054933,0.39268976,0.6658549,-0.3867995,0.16499883,-0.08603401,-0.42465594,0.052668452,-0.11013405,-0.11377284,-0.42465293,-0.18996364,-0.13404319,-0.08197955,0.21845095,0.18231465,-0.6271934,-0.10613743,0.16244744,0.919773,-0.20768449,-0.1842579,0.80187356,0.89483684,0.9787015,0.019570043,1.0648996,0.080579445,-0.0574307,0.39254856,-0.20477489,-0.69490397,0.25397483,0.22278753,-0.54184854,0.0850978,-0.09008607,-0.05290886,0.54768854,-0.24974498,0.1633096,-0.21360885,0.25496346,0.21289983,-0.21988407,-0.40911546,-0.3003139,-0.1738925,0.00018906823,-0.09017886,0.26516947,-0.07346081,0.23995763,-0.23301473,1.6803752,0.0839104,0.18611974,0.19832823,0.5032337,0.23420373,-0.20342717,-0.18846567,0.03435523,0.17218648,0.2443303,-0.4626148,0.22888035,-0.21405488,-0.46922684,-0.054794285,-0.41242725,0.008649762,-0.2697591,-0.6612251,-0.01822311,-0.10030385,-0.14451799,0.5005915,-3.0144718,-0.13750051,-0.045316383,0.22604224,-0.23346618,-0.4607271,-0.106895216,-0.47815847,0.6678772,0.23438343,0.56192863,-0.5491691,0.30354622,0.3475444,-0.42919478,-0.0507713,-0.6660324,-0.1186546,0.054470595,0.23961791,-0.021438777,-0.032388683,0.18348251,0.03192785,0.5193268,-0.23353139,0.04960672,0.05070857,0.39268377,-0.024011303,0.57155854,-0.2710603,0.50502867,-0.4208083,-0.38962042,0.2667317,-0.40227082,0.2056579,0.16958894,0.092147045,0.37203085,-0.47872654,-1.1455042,-0.5210578,-0.25269535,0.8032369,-0.13353515,-0.34016603,0.37792173,-0.38968483,-0.10541907,-0.15957655,0.37283128,0.1164834,0.12681518,-0.8007657,0.0073434734,-0.16362938,0.06371395,-0.009426295,-0.17866296,-0.27387697,0.4090495,-0.03997226,0.23530036,0.6248645,0.09991591,-0.42247465,-0.5411512,0.03528411,0.91621876,0.18434307,0.16350082,-0.13657348,-0.18486391,-0.28361666,-0.13120781,0.12124907,0.590634,0.695064,-0.07041013,0.12283058,0.22365001,0.12073333,-0.040314138,-0.08241645,-0.36386302,-0.14454235,-0.02999845,0.6689377,0.8587227,-0.060433313,0.6008114,-0.06667708,0.427002,-0.17683141,-0.34180447,0.5271519,1.0357609,-0.06720089,-0.43301246,0.6779693,0.48099026,-0.24569637,0.41246703,-0.3118266,-0.20024869,0.51793545,-0.20155074,-0.49356332,0.25421807,-0.26239502,0.045515444,-0.9217483,0.16365074,-0.37483957,-0.3058109,-0.51431113,-0.21317913,-3.4372673,0.24406657,-0.33354643,-0.13839945,-0.08665712,-0.112636514,0.02774999,-0.54677,-0.645028,0.15249854,0.17532825,0.7174213,-0.21586895,0.1419501,-0.21567138,-0.17560457,-0.109207705,0.08417818,0.3381114,0.3235394,-0.009889419,-0.34184378,-0.27540705,-0.21331567,-0.6519941,0.22629294,-0.71873105,-0.48410732,-0.20876637,-0.75931066,-0.40259218,0.79947305,-0.34870714,-0.12679985,0.004176649,0.109668225,0.05911828,0.34694782,0.1699729,0.35256514,0.035648104,-0.026612502,0.07531184,-0.19112776,0.09520899,0.10422177,0.45666042,0.24511415,-0.06393749,0.38260084,0.589541,0.8383003,-0.05098444,0.8192478,0.5934091,0.010724019,0.25045794,-0.3601392,-0.31153804,-0.45909372,-0.3119567,0.028871408,-0.36302382,-0.37076157,0.056718692,-0.37520742,-0.64077157,0.74619514,-0.116131864,-0.046039782,-0.00045221357,0.21725038,0.47476518,-0.39736712,-0.13568202,-0.05545872,-0.014703374,-0.5401324,-0.3056395,-0.47819468,-0.66686887,-0.039548054,1.0788167,-0.19953893,0.02287221,0.012048547,-0.16867083,-0.049511082,0.14510801,-0.05236957,0.3153709,0.23892404,-0.06128988,-0.6660592,0.4562672,-0.2085008,-0.25478303,-0.5230991,0.2578664,0.56348294,-0.5820734,0.7188726,0.26362637,0.057705063,-0.11481536,-0.6573089,-0.20080318,0.14536446,-0.078132406,0.4111219,0.24877785,-0.87320733,0.46228558,0.6660135,-0.29050198,-0.8068327,0.48185286,-0.011647075,-0.30966237,-0.13584942,0.31675756,0.15106069,-0.07323671,-0.07572002,0.31013906,-0.38549036,0.18552233,0.26235145,-0.021512188,0.36551717,-0.19018191,0.03163954,-0.68228555,0.21671098,-0.5055781,-0.29711148,0.40890986,-0.008034321,0.04130787,0.13213499,-0.009337529,0.25029048,-0.24912558,0.059996467,-0.14923836,-0.26678863,0.19016251,0.49956182,0.52252054,-0.5562806,0.46838978,0.03327863,-0.018556166,0.20940682,0.13438685,0.46179432,-0.11488458,0.40242708,-0.183763,-0.206747,0.24860327,0.79089016,-0.029747518,0.42666963,0.043799594,0.032239463,0.11728729,0.037309144,0.055155627,0.111880675,-0.5511936,0.24558797,-0.03994097,0.26893032,0.54300684,0.010514711,0.3040813,-0.103705406,-0.44119638,0.014338945,0.3527698,0.11708852,-1.4094315,0.4762351,0.16855201,0.8811947,0.4724004,0.2598173,-0.07918271,0.63050365,-0.03154432,0.18892384,0.41551006,-0.13297707,-0.41077846,0.5176344,-0.65795255,0.6926998,-0.068494014,-0.034195356,0.032471158,0.08291514,0.52543426,0.74081874,-0.12697554,0.03498042,0.15834707,-0.34304354,0.21284005,-0.49842644,0.13975972,-0.44217843,-0.3141955,0.6075278,0.686106,0.22442244,-0.18388622,-0.044030324,0.3913115,-0.05666434,0.12727812,-0.15508445,0.07776785,0.089928776,-0.67773175,-0.18495281,0.6145408,-0.031913407,0.26325417,-0.12625928,8.812318e-06,0.31755707,-0.1364609,-0.13822879,-0.21330807,-0.75042504,0.14051278,-0.54112047,-0.46560666,0.34366444,-0.22497654,0.20123388,0.24057946,0.12297675,-0.5295065,0.7357447,-0.11268951,1.0297828,-0.3447035,-0.11138638,-0.47039992,0.22577778,0.26049095,-0.15842448,-0.22783767,-0.43613333,0.03247368,-0.4753531,0.4414372,0.011787627,-0.3630218,-0.16994959,0.0756473,0.024973579,0.50587934,-0.15419616,-0.058744356,-0.12868603,-0.22676903,-0.2010011,-0.11809091,0.0065276003,0.25042313,0.23388785,-0.01582264,0.053961232,-0.10650235,-0.012244491,0.48669037,-0.058878668,0.46741125,0.2922828,0.2674726,-0.16798022,-0.0964405,0.2821328,0.66524786,-0.04249612,-0.1990328,-0.3589562,-0.15488683,-0.25051105,0.14606191,-0.20779821,0.5186027,0.071736865,-0.29401737,0.7247391,0.025138604,1.3660672,0.056849226,-0.3401077,0.1274884,0.27585062,-0.03534762,-0.05067022,-0.40991643,0.9750915,0.4593976,-0.12372523,-0.09327423,-0.19938058,0.044300836,0.05024837,-0.19688162,-0.118674435,0.032547884,-0.5369765,-0.13186818,0.1887512,0.2607351,0.38668662,-0.28185943,0.042468563,0.21837482,0.085966945,0.10515352,-0.391165,0.08400411,0.15259954,0.53407913,-0.020431038,0.106158786,-0.5559644,0.37013185,-0.27456695,0.2363967,-0.40046751,0.18943821,-0.15702055,-0.24296525,0.24743366,-0.2508827,0.4198268,-0.23304923,-0.0949515,-0.19963768,0.43128303,0.24785307,0.108626194,0.7189627,-0.24222888,0.05436096,-0.0013766426,0.58875084,0.9081843,-0.3627922,-0.25556353,0.3082001,-0.124870226,-0.5686022,0.27456528,-0.2714913,0.25001287,-0.1370181,-0.10465552,-0.6289376,0.18500346,0.25205103,-0.042376526,-0.12884086,-0.6731326,-0.11752545,0.23576447,-0.25469628,-0.29653156,-0.48272178,0.1302747,0.70796114,-0.10605175,-0.29287735,0.26783735,0.07460925,-0.018919935,-0.2781088,0.085300975,-0.3465638,0.08280099,0.035206456,-0.39009264,-0.12210517,0.031717267,-0.4109135,0.14537154,-0.013361555,-0.24681455,0.065481566,-0.034872368,-0.21020606,1.1672885,-0.21614406,0.42995626,-0.46976092,-0.60357994,-0.95622647,-0.32717034,0.51277894,-0.029547848,0.01006634,-0.7469682,-0.17666945,0.04247492,-0.39747244,-0.10227369,-0.24941023,0.39850044,-0.042831793,0.44323823,-0.21021166,-0.6986439,0.14718772,0.2862971,-0.19921626,-0.60423905,0.3393448,-0.028149046,0.7944308,0.036701,0.11267467,0.4984775,-0.29567453,-0.1964046,-0.29643834,-0.23281544,-0.64716,-0.023842921,543 -693,0.35816383,-0.13896003,-0.39540946,-0.07878546,-0.16796422,0.056594294,-0.1082544,0.4953292,0.15760191,-0.34612653,-0.10978533,-0.2127011,-0.042428937,0.35834935,-0.020865945,-0.5946268,0.09069168,0.19018391,-0.44009134,0.47085062,-0.41354397,0.22399308,-0.054479744,0.2310707,0.26049247,0.2737064,0.043051746,-0.26035845,-0.016272558,0.03806197,-0.30168912,0.24620603,-0.17897147,0.1494889,0.17277588,-0.26039746,0.021893712,-0.3423227,-0.36699846,-0.6695424,0.39591676,-0.6090945,0.3980369,-0.0027540922,-0.06761057,0.019000271,0.10617593,0.60835004,-0.28101593,-0.01718063,0.23508468,-0.012030845,-0.09007902,-0.087046474,-0.09156546,-0.36186197,-0.5430025,-0.029285578,-0.3790286,-0.3416255,-0.1644148,0.17640981,-0.43986648,-0.13155463,-0.003710169,0.46084097,-0.4543485,0.009647434,0.3472522,-0.1510174,0.25577775,-0.6103469,-0.14311713,-0.05741373,0.49291164,-0.19073898,-0.06724033,0.25950795,0.4117951,0.36263138,0.012205105,-0.120711334,-0.2940292,-0.030842565,0.1123866,0.65456104,-0.24811424,-0.457779,0.0001210662,0.07468957,0.078164026,0.18927462,0.1043036,-0.3184407,-0.101338,0.21252856,-0.21239087,0.20548424,0.2740702,-0.39325052,-0.20492572,0.38954812,0.54382807,0.15500186,-0.056788232,0.02051591,0.09497293,-0.46098378,-0.13322297,0.025007006,-0.22984369,0.41492602,-0.06861124,0.43834892,0.732839,0.0018808658,0.15902121,-0.09786815,-0.03597874,-0.10824765,-0.22973031,-0.23656255,0.10548072,-0.40234885,0.2678801,0.03337002,0.7473206,0.16947764,-0.631944,0.3768938,-0.6201639,0.21675709,-0.20306683,0.4118128,0.629996,0.17645177,0.30580518,0.7347076,-0.42077562,0.049277425,0.006791768,-0.46839175,-0.037640233,-0.040910684,0.023446936,-0.54962665,-0.041197564,0.034116525,-0.05407427,0.16525069,0.09589525,-0.6635221,0.029522149,0.071722426,0.9095872,-0.26801857,-0.08770884,0.5087222,0.90133464,0.89413464,-0.027908228,0.88481647,0.2552395,-0.3335565,0.3915965,-0.5054972,-0.5360116,0.25359637,0.48093367,-0.2741335,0.18824036,0.036853906,-0.19487497,0.5962975,-0.3066311,0.1282587,-0.22908424,-0.0302217,0.16033506,-0.21645601,-0.42283887,-0.33856207,-0.2382161,-0.01605187,0.034031134,0.32123172,-0.111589834,0.22550653,-0.113110736,1.87462,0.076156415,0.086161934,0.14445725,0.4608816,0.1253621,-0.11378349,-0.17755239,0.28826892,0.46713746,0.085225455,-0.5903917,0.26348156,-0.3432294,-0.3529738,-0.0315272,-0.27705923,-0.12245015,0.10850942,-0.46890146,-0.06634263,-0.14578642,-0.28192317,0.5205578,-2.934577,-0.214904,-0.19710304,0.3321272,-0.3192658,-0.29896894,-0.04011703,-0.42743227,0.20526387,0.24207568,0.5649375,-0.59156257,0.4775488,0.3351598,-0.5296005,-0.17546375,-0.6300726,-0.14955367,0.020605328,0.17554328,0.05604922,0.017457949,0.14487979,0.19062024,0.33176595,-0.10381468,0.08500462,0.32234928,0.40352386,0.1669507,0.6312291,-0.09011956,0.56807333,-0.13656127,-0.18045303,0.21965793,-0.25186735,0.116830915,-0.07509504,0.025235187,0.4289232,-0.33165917,-0.9402335,-0.6081529,-0.18089046,1.1777561,-0.23133704,-0.13250592,0.41381344,-0.32125062,-0.11768985,-0.1218146,0.49934322,-0.043743666,-0.24797153,-0.78073955,0.122838184,-0.14377776,0.07344706,0.09195949,-0.25641996,-0.41638348,0.51391566,-0.1429707,0.54235476,0.34238476,0.16972455,-0.071191296,-0.25664812,-0.015097221,0.673758,0.24308476,0.068605125,-0.01896893,-0.050037246,-0.43721315,-0.0005563773,0.093164556,0.45400026,0.64984965,-0.0025464343,0.16228813,0.2945903,0.06626671,0.027381612,-0.102616735,-0.34953254,-0.0057208696,0.06729274,0.46862262,0.5194164,-0.21266763,0.5310574,0.030688496,0.14218229,-0.20040666,-0.35803193,0.41559362,0.9869555,-0.22589031,-0.1514361,0.44768128,0.48586333,-0.11480768,0.23939016,-0.48331717,-0.15015744,0.5128652,-0.25945187,-0.40878546,0.12930308,-0.30462843,0.08907537,-0.92366135,0.29555553,-0.38397,-0.540051,-0.3753082,0.0067583597,-3.505353,0.19047019,-0.45558488,-0.20495392,-0.0070032133,0.048038814,0.10872805,-0.8535966,-0.39541134,0.0973867,0.0794309,0.6463356,-0.094077736,0.047037106,-0.2323641,-0.13310665,-0.25835982,0.0316163,0.039307527,0.33190903,0.11019159,-0.4570312,0.043656625,-0.031578794,-0.37906837,0.18972093,-0.6885401,-0.38134164,-0.073709205,-0.6380418,-0.44915125,0.63294005,-0.27096123,0.17276603,-0.17557567,0.029094104,-0.09673281,0.29595873,0.14697419,0.14220876,-0.057625514,-0.010014396,-0.06236309,-0.21505621,0.2802057,0.010475071,0.40469298,0.07584477,0.039645456,0.212903,0.5694423,0.526006,-0.08543766,0.7903111,0.64708126,-0.13916558,0.19130588,-0.36060098,-0.1724846,-0.42569262,-0.45450175,0.109944,-0.3006372,-0.6843563,-0.0810961,-0.29069048,-0.6143033,0.38715157,-0.052720267,0.3150646,0.0023440432,0.057237286,0.4904208,-0.20531636,-0.029798033,0.0911613,-0.06845553,-0.56902534,0.008725862,-0.6359965,-0.47808176,0.33261442,0.8926396,-0.37609562,0.09915999,0.01802362,-0.3491888,-0.028114822,0.16113044,-0.029981641,0.25379556,0.31991932,-0.34872818,-0.70873463,0.3071992,-0.26106188,-0.086272925,-0.5789139,0.19187333,0.53780854,-0.57537854,0.63770556,0.19268686,-0.05938222,-0.08927514,-0.38589767,-0.26367396,-0.012647037,-0.20011054,0.22200654,0.0722787,-0.7093176,0.22335212,0.44555223,-0.3053969,-0.55537885,0.50820404,-0.015614129,-0.30087572,-0.03478165,0.2758757,0.24317035,-0.06249346,-0.12898096,0.18442297,-0.4565258,0.34952193,0.21520187,-0.18763453,0.15838967,-0.12330006,0.050181333,-0.7112513,0.06210598,-0.40513703,-0.22113389,0.30122307,0.12197766,0.2516163,0.028350811,0.0547569,0.28855312,-0.2064677,-0.032061413,0.13702682,-0.26785058,0.15889956,0.38893017,0.2859739,-0.47621676,0.49409962,0.011549121,-0.111690335,0.04325336,0.08354698,0.42289498,0.05989862,0.46168166,-0.22488506,-0.34082222,0.41254586,0.7572927,0.16010341,0.44030845,-0.017094554,0.0016461107,0.0335444,0.065871544,0.010938313,0.08740226,-0.506218,0.031027608,-0.15153146,0.23828061,0.64038473,0.19103941,0.24723099,-0.13699357,-0.45880458,-0.013500204,0.19638799,-0.04218116,-1.1776848,0.59308416,0.33447948,0.8119138,0.3417227,0.06716682,-0.033372242,0.6498733,-0.1364865,0.14567201,0.27378994,-0.18728612,-0.56179214,0.59533346,-0.8287322,0.4245488,0.058360025,-0.04169544,-0.009992485,-0.1236508,0.30918005,0.6090804,-0.2200174,-0.07994028,-0.06592633,-0.3314936,0.0585686,-0.34974077,0.17407773,-0.80412585,-0.33177012,0.37697843,0.72390264,0.18892011,-0.12555414,0.11307592,0.1507113,-0.04952326,0.19059907,0.016372409,0.1251124,0.08479067,-0.7380065,-0.25580594,0.49216413,-0.3270684,0.1378416,-0.073468976,-0.08819543,0.32098153,-0.2441222,-0.038971823,-0.09402338,-0.42624313,0.1169048,-0.24456501,-0.32404095,0.52031934,-0.038756672,0.28998443,0.18967925,0.07365825,-0.13714376,0.5638556,-0.12473588,0.7130959,-0.10151443,-0.23384021,-0.5129189,0.032168396,0.042577524,-0.014110153,-0.10389609,-0.39919478,-0.019876339,-0.45786554,0.49301112,0.19232494,-0.16873649,0.03289261,-0.24248083,0.0020389785,0.5582965,-0.18654491,-0.016121099,-0.20997629,-0.23044035,-0.27693504,-0.16812348,-0.06651009,0.17992646,0.26023343,0.23602965,-0.14944401,-0.11211956,-0.20571245,0.41482627,0.019242644,0.35763696,0.30044392,0.11531018,-0.095707186,-0.26433378,0.28722686,0.29587346,0.014152231,-0.14919697,-0.36953622,-0.4181824,-0.32901904,0.054518737,-0.17939216,0.5961824,0.014002692,-0.14642248,0.67005324,-0.03917452,1.1839579,0.006983466,-0.31683528,0.03484035,0.5543264,-0.025471352,-0.037467368,-0.22691822,0.82779056,0.49888128,0.050566796,-0.083683915,-0.29347867,-0.20134355,0.22539261,-0.17843,-0.07100557,0.11332656,-0.48259962,-0.3576488,0.22048889,0.10969555,0.26749262,-0.021764288,0.054171447,0.27479225,-0.07050767,0.21685109,-0.3699476,-0.4694491,0.22012475,0.31817257,0.056168642,0.17395224,-0.4998511,0.475385,-0.43635103,0.17160533,-0.23351629,0.22011471,-0.19721015,-0.17926511,0.2773334,-0.046036743,0.4457288,-0.19312249,-0.19960602,-0.13910809,0.50450236,0.20918515,0.06115113,0.6921225,-0.3241688,-0.023439636,0.08814111,0.47881082,0.7808411,-0.2957024,-0.075020514,0.493208,-0.3141333,-0.6264299,0.30463535,-0.18826698,0.044307653,0.14417964,-0.20858333,-0.49420956,0.2527049,0.16212644,-0.010819504,-0.09107128,-0.53608316,-0.2948781,0.15797184,-0.30381778,-0.16093418,-0.3880672,0.32513952,0.55386996,-0.37312853,-0.3411404,0.08823562,0.21862537,-0.109911166,-0.4430712,0.050321106,-0.3270056,0.23338103,0.12629727,-0.37790787,-0.23521468,0.039355107,-0.29483137,0.1374068,0.11903475,-0.36317757,0.17449203,-0.19095418,-0.28155234,1.0303582,-0.27399155,-0.019403577,-0.5670916,-0.28387785,-0.64365613,-0.47382516,0.58504236,0.051131897,-0.118722916,-0.5500735,0.011194816,0.087948285,-0.1918281,-0.2609658,-0.27581355,0.42597005,0.030351318,0.38842872,-0.08745696,-0.6903845,0.21730962,0.036477905,-0.17698534,-0.58748746,0.49932748,-0.081226215,0.93254447,0.022023259,0.09235242,0.24571115,-0.110494606,-0.14057311,-0.28891036,-0.30791414,-0.7507998,-0.16452552,544 -694,0.40010044,-0.4011125,-0.5130579,-0.07328784,-0.10146293,-0.07814579,-0.24375735,0.3928626,0.41587305,-0.20579968,-0.24905902,0.05055678,0.14615153,0.40059346,-0.14415874,-0.70281506,-0.19890517,0.19371401,-0.62488407,0.4810293,-0.46687806,0.27585465,0.009558907,0.40735933,0.104336455,0.38261706,0.16161115,-0.009348557,-0.087450914,0.04158093,-0.17708112,0.39336762,-0.51258963,-0.021028932,-0.2323809,-0.27191177,-0.06819194,-0.35829383,-0.46364912,-0.8071508,0.32637978,-1.0379556,0.5476849,-0.047426745,-0.25425673,-0.14489628,0.22994004,0.3310095,-0.50756085,-0.08473598,0.23136099,-0.21314606,-0.21769592,-0.38962382,-0.068011835,-0.26969016,-0.5348567,-0.008390257,-0.50424033,-0.17612007,-0.1476573,0.30598906,-0.25628722,0.047131684,-0.2889018,0.32387745,-0.40994897,0.042085275,0.55893624,-0.2549481,0.25583,-0.66219836,0.003562863,-0.042787287,0.42662513,0.18644069,-0.35777935,0.39751127,0.5768829,0.4357438,0.29080203,-0.37795708,-0.4300236,-0.0669755,0.21873361,0.47088,-0.31535274,-0.41835684,-0.14678676,0.055824675,0.41809368,0.29866135,0.12219561,-0.13370898,-0.08972238,-0.025069036,-0.0013192686,0.5362605,0.6928953,-0.20766751,-0.40327394,0.2906799,0.6274825,0.37038672,-0.107781775,-0.12015385,-0.08084749,-0.55699575,-0.13656107,0.09123291,-0.2870714,0.61543745,-0.16170758,0.089119725,0.8701217,0.012369289,-0.12405847,-0.06928721,0.03386998,-0.09987906,-0.48736987,-0.10838742,0.19825648,-0.42616907,-0.028474726,-0.22777121,0.46297625,0.08875612,-0.69421333,0.46390554,-0.40956414,0.21836469,-0.007340789,0.6667054,0.75716305,0.6434917,0.4405378,0.95843667,-0.4103395,0.04539223,0.037044488,-0.4317716,0.1011219,-0.3760246,0.1847186,-0.40387917,0.21750242,-0.2989083,0.06765147,0.21583289,0.53032047,-0.58355,-0.20997097,0.24560253,0.7597409,-0.25143465,-0.11102295,0.63278604,0.94898564,0.895078,-0.066097066,1.3379171,0.35473666,-0.20815077,0.07218997,-0.36731467,-0.80390006,0.18110028,0.45324105,0.13087524,0.34710568,0.0056848573,-0.13980922,0.514802,-0.39528656,-0.020708203,-0.11201504,0.27346843,0.16225658,-0.18804012,-0.49628654,-0.04299798,-0.19955325,-0.021822095,0.1996164,0.12515916,-0.33182466,0.33964866,-0.0920958,1.491657,-0.17546853,-0.0069825146,0.09737253,0.50312996,0.31167233,-0.12043564,0.030819017,0.50389093,0.5003521,-0.024343142,-0.58029467,0.22001132,-0.36573908,-0.44229868,-0.13885428,-0.36885172,-0.22774515,0.14276096,-0.43437284,-0.15486453,0.0031765471,-0.10464855,0.33286333,-2.5712903,-0.37292764,-0.22737652,0.39297736,-0.29038838,-0.21225952,-0.057713397,-0.5836167,0.32067955,0.22597793,0.6317062,-0.70383734,0.49287716,0.5264647,-0.673307,-0.032046024,-0.6492968,-0.09027282,-0.069746144,0.51889175,0.07893737,-0.25043407,-0.18910058,0.02562411,0.81575924,0.12388612,0.1219228,0.78635746,0.5354044,-0.28700647,0.509819,-0.14514455,0.71561325,-0.29394788,-0.20276326,0.49263757,-0.291308,0.5102112,-0.28684896,0.028714428,0.6907516,-0.4044389,-1.0472993,-0.53593224,-0.05299323,1.020507,-0.4143373,-0.6180235,0.28663152,-0.4165511,-0.2352766,0.019258497,0.7534546,0.12281636,0.19134524,-0.6745453,0.0198677,-0.12542133,0.21576524,0.047319695,-0.22675492,-0.32987386,0.9548378,-0.040894803,0.66361916,0.31906906,0.1946989,-0.22601286,-0.26245242,0.070847645,0.81134886,0.42521226,0.022968577,-0.12710527,-0.2662006,-0.07918203,-0.25461295,-0.17103036,0.7414342,0.64622307,-0.2051492,0.113393225,0.30130914,0.18168102,-0.18270746,-0.20214356,-0.20122987,-0.2299359,0.07915953,0.38974208,1.0913441,-0.314328,0.30369696,-0.2501745,0.3309277,0.111189075,-0.6962933,0.751633,0.5210297,-0.22601043,-0.1340636,0.7956658,0.36746475,-0.42591894,0.48766062,-0.7414944,-0.25131208,0.64312947,-0.17319417,-0.4543482,0.3259192,-0.31823447,-0.041685656,-0.69829834,0.21193933,-0.17867139,-0.30352893,-0.43129513,-0.13422845,-3.1222837,0.22593714,-0.25636542,0.0068687657,-0.3941471,-0.09805958,0.28041384,-0.7299588,-0.66872185,0.32860184,0.2981656,0.51793957,-0.060901627,0.1359246,-0.1716462,-0.1281627,0.10340735,0.19496796,0.0723129,0.22769362,-0.15906051,-0.54185146,-0.08576916,0.0074552116,-0.5968328,0.21175687,-0.6934343,-0.49802992,-0.14134425,-0.5929125,-0.088455915,0.6040256,-0.4567172,0.0002300556,-0.29397035,0.2005895,-0.17047574,0.08690696,-0.08492542,0.33876494,0.097211875,-0.17300144,0.24107759,-0.121421926,0.5320584,0.029453686,0.47339675,-0.004515171,-0.1359212,0.14763466,0.4063379,0.82243663,-0.4464889,1.142458,0.57741046,-0.07361303,0.22890283,-0.0011785534,-0.26819447,-0.6773206,-0.40574265,0.16289082,-0.57741827,-0.45056045,0.06005744,-0.4909827,-0.9303316,0.633974,-0.049134668,0.5307666,0.05317863,0.28275606,0.586901,-0.44547954,0.039608486,-0.06603651,-0.25356582,-0.5363947,-0.35069895,-0.6109784,-0.55763173,-0.030530801,0.8996289,-0.25847176,0.078874916,0.009323881,-0.350374,-0.0863992,0.15083821,0.01374368,0.19130953,0.7101629,0.055018984,-0.67214274,0.44942126,-0.078127146,-0.08669865,-0.56880426,0.20947228,0.42333305,-0.80542666,0.83096415,0.312803,-0.06365558,-0.032290623,-0.6502364,-0.38967612,-0.20199277,-0.18416712,0.64344543,0.27195185,-0.7313565,0.5378414,0.43694365,-0.64088416,-0.69353074,0.28589427,-0.23488078,-0.33722863,-0.29190123,0.27463058,0.21903093,-0.012715266,-0.1439791,0.15626076,-0.40338737,0.30738974,0.1925042,-0.16369708,0.28815788,-0.19786112,-0.35912684,-0.9779556,-0.040332302,-0.48423958,-0.19383337,0.42419764,-0.14953937,-0.040623114,-0.052566543,0.23033156,0.4192743,-0.3219661,0.1455602,0.051373184,-0.58302844,0.30900744,0.4571339,0.49505666,-0.49402338,0.49860412,0.13768,-0.42860237,-0.0012857777,0.049403496,0.44795698,0.02631583,0.4904204,-0.23251557,-0.035184246,0.3657343,0.9138399,0.025982806,0.48666164,0.12530454,-0.118029244,0.4821631,0.08269335,0.17991462,-0.12637514,-0.6426421,0.08731919,-0.09581113,0.16595362,0.62025267,0.41407472,0.28603995,0.06140024,-0.2733484,-0.0027249032,0.16692199,0.18014309,-1.1912055,0.30230427,0.3453994,1.257133,0.24521755,0.19520536,-0.31787217,0.69347984,-0.110234454,0.11804809,0.4849301,-0.2422072,-0.5527105,0.6789779,-0.6641391,0.31142104,-0.1638681,-0.039062344,0.2657327,0.26890475,0.326259,0.9136304,-0.23526806,-0.028989378,0.026602749,-0.17313674,0.12857477,-0.44393656,-0.058257937,-0.41728038,-0.5392347,0.68874836,0.5870905,0.5309951,-0.24103044,-0.04693655,0.04563568,-0.23031497,0.20419241,-0.144506,-0.081589565,0.0091001205,-0.6814259,-0.018375289,0.49899098,0.16848357,0.18156716,-0.33921528,-0.27619043,0.12981488,-0.32297662,-0.24250051,-0.13445823,-0.80698735,-0.10729842,-0.34339464,-0.7671336,0.60716516,-0.056145407,0.087019734,0.29567665,-0.0772829,-0.15437657,0.491255,-0.16166753,1.1016986,0.06339332,-0.25894326,-0.48575976,0.28454477,0.3122414,-0.25629744,0.33959338,-0.49376696,0.059194207,-0.44705644,0.70292753,-0.22585584,-0.43273816,0.24405967,-0.32153767,-0.048194,0.51534235,-0.22763707,-0.19855836,-0.011097748,-0.26296142,-0.4667285,-0.29264316,-0.29165003,0.24459466,0.27955666,0.027219405,-0.08267595,-0.24665792,-0.22168483,0.56497824,0.0820857,0.43783882,0.33324718,-0.031864174,-0.15669163,0.1251448,0.40630677,0.66616166,0.19032016,-0.17257024,-0.5429094,-0.6535318,-0.4399112,0.26108617,-0.0015640488,0.34223667,-0.027468609,-0.16707842,0.9823441,0.083617456,1.2168218,0.20900853,-0.37327954,-0.04873459,0.7187278,-0.19717774,0.097579904,-0.50780344,0.8071575,0.47436947,-0.13277198,0.19122069,-0.55103153,0.13570857,0.38918126,-0.44078827,-0.04554597,-0.09336197,-0.6915069,-0.41168773,0.19579981,0.18382683,0.2937349,-0.08019649,0.10029804,0.05313817,0.11795466,0.26446855,-0.6459837,-0.49485844,0.27989727,0.20394073,-0.18109773,-0.13882755,-0.45544508,0.47448623,-0.48483467,-0.017765045,-0.5125564,0.08307834,-0.30731076,-0.40570518,0.15840207,-0.19910343,0.4188332,-0.5039583,-0.46206692,-0.06902605,0.3786109,0.10434219,0.09714343,0.55650914,-0.36302522,-0.030248495,0.21836373,0.6763856,1.2244596,-0.6714259,0.13967624,0.38137674,-0.4991318,-0.670914,0.5750407,-0.23134503,0.08563748,-0.005358297,-0.49922377,-0.57454705,0.2428403,0.105536625,-0.0074958475,0.065921955,-0.62873244,-0.2735433,0.36898452,-0.29684144,-0.09849973,-0.014299411,0.37853816,0.7090721,-0.3352383,-0.5307146,0.2457849,0.30423266,-0.18012787,-0.4495306,-0.064820506,-0.35253355,0.24259886,0.039379843,-0.4087334,-0.11805444,0.09909793,-0.6184177,0.08500493,0.24747115,-0.41468212,0.17567381,-0.24766019,-0.11417178,1.0681807,-0.31119904,0.06062657,-0.776387,-0.43605083,-0.9822022,-0.42890328,0.19085161,0.12806135,-0.19881727,-0.55155563,0.010808908,-0.16796145,-0.0029314721,-0.061091576,-0.52007043,0.53154415,0.0543521,0.6898263,-0.38463798,-0.84313864,0.061995186,0.17686334,-0.17043863,-0.5281293,0.7626855,-0.016746558,1.0343251,-0.05112344,0.09421044,0.08148125,-0.4514414,0.07280152,-0.40895572,-0.14969099,-0.86084455,0.06460089,546 -695,0.41994146,0.024352066,-0.5777867,-0.09908808,-0.32584688,0.12520157,-0.2753945,0.036409684,0.4547356,-0.65237653,0.013983635,-0.17664933,0.027649406,0.23208357,-0.09879342,-0.64011943,0.18104467,0.3454998,-0.43602732,0.6939423,-0.53330463,0.23343563,0.23823158,0.39959496,-0.114586025,0.0020532827,0.050365932,-0.29189116,-0.21211842,-0.39323103,-0.05905191,0.056809478,-0.6360694,0.54471403,-0.07085445,-0.1604997,0.111746825,-0.33686405,-0.28760624,-0.74000096,0.1929026,-0.77522653,0.59092325,-0.041264,-0.2849167,0.24432446,0.048141662,0.053354263,-0.17142795,0.14161427,0.14215168,-0.50096923,-0.56030685,-0.29415396,-0.37975752,-0.3617252,-0.5944351,-0.06045999,-0.5498777,-0.08334573,-0.35044828,0.32584256,-0.3583215,-0.058994148,-0.13890722,0.4662207,-0.4169944,0.26113868,0.28435227,-0.33278415,0.20254722,-0.5538135,0.010101834,-0.0038620508,0.24253839,-0.043316398,-0.24376991,0.05717612,0.23007518,0.54026365,0.0852654,-0.3218645,-0.19253911,-0.30271724,0.2928786,0.45155743,-0.252234,-0.20848681,-0.15383208,-0.18366742,0.11732716,0.22123946,-0.13260722,-0.27531707,0.19056419,-0.27993,-0.19306758,0.3930655,0.55482316,-0.30665773,-0.12735678,0.3570841,0.3133856,0.0861187,-0.14302911,0.09522348,0.014473884,-0.66088146,-0.24205254,0.14862145,0.04042884,0.332853,-0.18761054,0.3719783,0.61248255,-0.07038545,-0.090328805,-0.065240934,0.06098727,0.12359877,-0.3701735,-0.101258464,0.39833075,-0.5856338,-0.053647928,-0.40234247,0.8553127,-0.024198243,-0.73234653,0.4435625,-0.43703407,0.08896316,0.06910127,0.7552137,0.7888793,0.609766,0.13087328,0.7363835,-0.42919672,0.071492024,-0.2308956,-0.39829758,0.24289657,0.06150631,0.39061376,-0.34343508,-0.005112772,0.03684043,-0.0046461727,-0.03220971,0.72153795,-0.39802396,-0.25034776,0.098227665,0.8897683,-0.2928785,-0.08390375,0.5943438,0.94492364,0.7547873,0.08202815,1.4800409,0.38274604,-0.13756718,-0.21155721,0.057080336,-0.80029356,0.23810779,0.13716394,0.20580699,0.030354332,0.1647581,-0.14441296,0.39587897,-0.26680386,-0.16739123,-0.2450929,0.30960017,-0.28688484,-0.013228183,-0.47167903,-0.32852608,0.10946373,0.084280185,0.3380349,0.33863136,-0.11821938,0.6662458,-0.06630329,1.4618132,-0.26429388,0.19001998,0.11864409,0.18108438,0.20761491,0.0696117,-0.17508738,0.36142242,0.35949883,-0.0150672775,-0.4908757,0.041480817,-0.013154988,-0.34017313,-0.24448036,-0.2221631,-0.07640093,-0.37040234,-0.28469554,-0.1472803,0.070196494,-0.670893,0.3160801,-2.471926,-0.11169414,0.034656066,0.26713976,-0.05937147,-0.105399854,-0.28980735,-0.40449238,0.7487207,0.16149667,0.51985335,-0.45647234,0.41847837,0.65851593,-0.59449077,-0.23073545,-0.76694715,-0.064490825,-0.2645508,0.35409987,0.043585207,-0.34283978,-0.16115028,-0.014977474,0.63071895,-0.011619341,0.021836529,0.41387507,0.43571347,0.043752853,0.44691548,-0.055726454,0.6692854,-0.28813174,-0.27732277,0.32211766,-0.361293,0.29918376,-0.5071652,0.1027472,0.4623273,-0.3515482,-0.789162,-0.48978245,-0.33447254,1.0220734,-0.3208737,-0.6332153,0.22252482,-0.15046453,-0.41011795,0.27608237,0.6356701,-0.2177736,0.068561666,-0.69016045,-0.052922957,-0.05667385,0.43908623,0.017302517,0.024262419,-0.59296477,0.70500076,-0.045398038,0.52235466,0.4477952,0.27811375,-0.2236502,-0.39053917,0.19849755,1.0388837,0.3089234,0.17932382,-0.41657183,-0.19902417,-0.13535386,-0.13707414,-0.20669991,0.6282873,0.7939208,-0.0114699295,0.042444844,0.4324118,-0.20140402,0.03248123,-0.17762426,-0.47592682,-0.2659225,0.0822603,0.6612764,0.5769063,0.04542493,0.35162947,-0.05164594,0.38395584,-0.15135697,-0.5734259,0.63450724,0.821146,-0.18006366,-0.08654635,0.6931969,0.34545523,-0.3393131,0.5234371,-0.5659105,-0.4505599,0.32355097,-0.0725741,-0.54624575,0.2739178,-0.35202232,0.02033956,-0.8201816,0.29935333,-0.2505493,-0.78110915,-0.58466476,-0.042555068,-2.9357684,0.28779587,-0.18345444,-0.037003253,-0.24845281,-0.01304817,0.23889098,-0.231069,-0.43053085,0.111945495,0.23426816,0.66869324,-0.14150336,-0.016805997,-0.2766242,-0.18267271,-0.1786251,0.066606216,0.172052,0.14469813,-0.15815306,-0.31208098,0.027030377,-0.3371012,-0.18796304,-0.07323046,-0.69385684,-0.20071767,-0.043078043,-0.5800906,-0.27514592,0.72794163,-0.46944538,0.06694614,-0.49999124,0.14806098,-0.009072588,0.20064497,-0.2343224,0.40493238,0.067571595,-0.21240014,-0.29017594,-0.13861142,0.14333017,0.043828547,0.14647871,0.5474054,-0.1385004,0.09364046,0.32009363,0.52506053,-0.021010637,1.1048484,0.25215212,-0.005310994,0.20086047,-0.22337188,-0.22702871,-0.5818739,-0.18563019,-0.07320391,-0.5839568,-0.3375942,0.026505686,-0.39209983,-0.77226776,0.7313582,0.25183994,-0.2715418,0.027842939,0.30444583,0.3153547,-0.19891421,-0.006179557,-0.23135236,-0.20143846,-0.48673466,-0.28992948,-0.72930145,-0.40056723,0.0034487844,0.8838813,-0.34168726,0.07127506,0.2223673,-0.29009265,-0.0028600716,0.36091334,-0.019743273,0.12112396,0.490973,0.21355192,-0.79999554,0.57007116,-0.30291802,-0.09063216,-0.6338303,0.3294495,0.7976252,-0.82330936,0.6732016,0.63835835,0.15641502,-0.062786154,-0.56385005,-0.35576683,-0.021369044,-0.18270744,0.40765297,0.15436994,-0.88495624,0.58513737,0.205011,-0.10352039,-0.8813798,0.26669928,-0.117877685,-0.25441852,0.13396417,0.49653614,-0.07087765,0.18392144,-0.22697257,0.13731185,-0.5023937,0.26053488,0.0043269396,-0.145424,0.42740792,-0.21313259,-0.23531125,-0.77202725,-0.10402247,-0.55759245,-0.28883076,0.25017098,-0.056448378,-0.015975565,0.21301502,0.07032083,0.50203335,-0.39912495,0.046897575,-0.26862043,-0.3350001,0.3881399,0.4591039,0.30589643,-0.48063883,0.71817845,-0.0862866,-0.036787793,-0.21427418,0.17556104,0.5392507,-0.0052859783,0.6125581,-0.27695024,-0.08390085,0.23110884,1.1206373,0.02666571,0.43153828,0.31551552,-0.10058456,0.5918571,0.012090006,0.19750632,-0.24618758,-0.511834,-0.03991193,-0.33948252,0.16931406,0.4418836,0.15060219,0.6870812,-0.03905233,-0.0016742578,0.033895284,0.19748951,0.24110618,-0.77598315,0.40542597,0.30971405,0.6635402,0.50992304,-0.082770586,0.19543971,0.7955348,-0.21183528,0.025265751,0.22737288,-0.14632748,-0.22124997,0.6470789,-0.76961195,0.18284005,-0.14189675,0.14944276,0.30805573,0.0069577717,0.58677495,0.9327771,-0.22004281,0.11351369,-0.19251864,-0.115977846,0.16971289,-0.2286101,0.15462825,-0.41542068,-0.56966627,0.74661577,0.48283917,0.38398796,-0.32445967,-0.07122519,0.41998202,-0.13673452,0.111958556,0.13338211,-0.16083163,0.02024745,-0.5046676,-0.107588805,0.6093691,0.18677856,0.00085257564,0.23321018,0.024358401,0.43866858,-0.29272863,-0.07444246,-0.2417133,-0.7021374,0.07439869,-0.479561,-0.45649618,0.45941353,-0.24937394,0.1710898,0.2202362,-0.0049213823,-0.043942496,0.38210493,0.16003975,0.711169,0.21406563,-0.33672932,-0.119209476,-0.10074917,0.16125692,-0.4308537,-0.21803872,-0.19917819,0.22084881,-0.7407465,0.24893138,-0.43108946,-0.20823182,0.39380378,-0.20035623,-0.024408044,0.57950974,-0.0504243,-0.10364505,0.12858109,-0.19811766,-0.3064389,-0.07516435,-0.28759414,0.10571757,-0.028284954,0.004541892,-0.11811134,0.00039257683,-0.34580362,0.2134133,0.11476852,0.08688773,0.29915774,0.25668934,-0.29711035,-0.05023949,0.2547166,0.6513675,-0.12879927,0.12674262,-0.09895169,-0.23582642,-0.35953647,0.38184264,-0.061105844,0.22855332,0.09097397,-0.33515507,1.0167025,0.07548448,0.65685683,0.06258149,-0.41787353,0.042844698,0.53792256,-0.106423564,0.018184606,-0.40482134,0.9573214,0.47663042,-0.023866292,-0.1377616,-0.698352,0.08346324,0.31650817,-0.3905846,-0.15291478,-0.14436617,-0.7093841,-0.1716562,0.24700055,0.2025858,0.101702414,-0.18581687,0.10512464,0.14895378,0.32871306,0.083429575,-0.8001439,0.20108615,0.42210034,0.24783672,-0.0065322565,0.21072644,-0.15372911,0.3181853,-0.70840573,0.2299541,-0.2783648,-0.07429065,-0.22835913,-0.057338826,0.27400377,-0.08627109,0.22868861,-0.38499472,-0.23110078,-0.23324324,0.28468582,0.4792361,0.1953629,0.99742305,-0.2867426,-0.058476217,0.09027122,0.63816637,1.2296115,-0.33938578,0.054356202,0.45680097,-0.2450777,-0.5645276,0.14189011,-0.44908094,0.086420424,0.14940774,-0.47124413,-0.2529425,-0.058141343,0.1453109,-0.10220885,0.06238895,-0.47100064,0.025004255,0.26593226,-0.087140486,-0.16522701,-0.25439703,0.004202359,0.6904039,-0.15187468,-0.14199401,0.025583807,0.12146783,-0.3680833,-0.634593,0.13428603,-0.43092898,0.2382175,0.08267533,-0.38512185,0.058201525,-0.00968553,-0.62213194,-0.015828123,0.25538987,-0.33852196,-0.024707912,-0.31360298,0.055322472,0.77181065,-0.23916706,0.14973912,-0.43065813,-0.6202703,-0.7094408,-0.2512557,0.16636151,0.045197506,0.043642245,-0.32648513,-0.15768915,-0.38957733,-0.021370951,0.103289,-0.47662494,0.28385922,0.1034761,0.42442322,-0.32515752,-1.0443323,0.34608862,-0.0021123062,-0.4232034,-0.52218974,0.34190306,-0.10843285,0.5426741,0.012303774,0.03383788,0.28756922,-0.61168313,0.11085976,-0.2532771,-0.10768244,-0.8426132,-0.009784561,553 -696,0.37335458,-0.25785488,-0.40171435,-0.18236682,-0.1296548,-0.10749281,-0.08234057,0.5094057,0.25991556,-0.17192292,-0.17462324,0.17247437,0.07713289,0.5562645,-0.14776528,-0.6469847,-0.17041172,0.13035916,-0.5116725,0.39309788,-0.5096212,0.10220691,-0.015510871,0.42466047,0.06536233,0.37821776,0.21112302,-0.036447387,0.032595508,-0.019926507,-0.05837232,0.09139057,-0.28588507,0.1077331,-0.07537772,-0.2568438,-0.017691515,-0.35383046,-0.17446296,-0.77498525,0.1857415,-0.9386263,0.40553343,0.17898244,-0.24993092,-0.0806644,0.24370344,0.31015873,-0.5632704,-0.10805874,0.18984519,-0.19121288,-0.27598125,-0.30351952,0.067041345,-0.2459558,-0.48638922,-0.048432432,-0.4209451,-0.22851914,-0.16049168,0.1372475,-0.34475356,0.094636485,-0.106845416,0.48111156,-0.35942298,-0.26126397,0.49601045,-0.30630657,0.2906406,-0.66267556,-0.0002161998,-0.043165684,0.38197047,0.083176665,-0.1483149,0.33413702,0.3155553,0.39176422,0.11257185,-0.25797474,-0.45850885,-0.15427479,0.10753334,0.40056977,-0.2614675,-0.33701736,-0.0885837,0.1361936,0.32680082,0.34438345,0.09134762,-0.13913317,-0.08802095,-0.086159594,-0.113877065,0.41415113,0.5245645,-0.18799545,-0.23563522,0.22577633,0.558029,0.16227606,-0.16435632,-0.18923269,0.033961758,-0.54809725,-0.08836794,0.058352496,-0.12473878,0.5414559,-0.020405272,0.016619701,0.7939349,-0.04375806,-0.10094983,-0.16305949,0.08412258,-0.04561978,-0.48237756,-0.34452236,0.35684508,-0.4171449,0.03135806,-0.25475004,0.5831703,0.071089596,-0.6887443,0.3727763,-0.41782835,0.17078546,-0.09031563,0.5610326,0.6286176,0.36128286,0.4680252,0.72009474,-0.4069794,0.05772183,-0.12592174,-0.28584015,0.13934019,-0.17985828,0.19798602,-0.49748462,0.11750825,-0.056619074,-0.022576243,0.26642463,0.29799554,-0.4293377,-0.12081657,0.34824005,0.66231537,-0.2580326,-0.071097024,0.60395443,1.1481131,0.97176635,0.02994147,0.9750305,0.23713371,-0.13723344,0.09745137,-0.35266715,-0.5272161,0.15280144,0.43071523,0.16664189,0.32778734,-0.15704927,-0.10093637,0.5613167,-0.4011069,0.06025573,-0.031884983,0.36501363,0.17404467,-0.04789694,-0.6782289,-0.2095796,-0.06263501,0.07275563,0.07366891,0.2770323,-0.21220566,0.24934067,-0.298909,1.2828797,0.022785438,0.13031684,0.29715565,0.422776,0.17193875,-0.18279043,-0.09171552,0.30952924,0.40500024,-0.080357075,-0.49311912,0.29488486,-0.37345618,-0.46947083,-0.05232149,-0.39092684,0.08555441,0.19417885,-0.42654303,-0.0813775,-0.037777636,-0.24440703,0.41316992,-2.8051646,-0.17471384,-0.20319329,0.2801966,-0.24833316,-0.098575644,-0.06246782,-0.48484457,0.29208505,0.2961579,0.5094205,-0.5483825,0.3793211,0.41489077,-0.672539,-0.11129148,-0.6729834,-0.13121408,-0.117974386,0.28763333,0.13405028,-0.18780947,0.016824622,0.2748519,0.871033,0.054045603,0.102136,0.60568565,0.21907267,-0.05903581,0.45576444,-0.1887309,0.4998819,-0.36250055,-0.22687222,0.27699357,-0.31131136,0.26214308,-0.13315347,0.12923428,0.4566536,-0.36295208,-1.0594491,-0.55382,-0.16349131,1.1760303,-0.28322855,-0.45338815,0.33185294,-0.193057,-0.07379003,0.06326246,0.659901,-0.026990963,0.14066301,-0.6781305,0.103899844,-0.032165878,0.18045703,0.110263355,-0.1885661,-0.41363132,0.66592777,-0.1263146,0.6198007,0.36951047,0.3380453,-0.22627701,-0.22197713,-0.010127797,0.68145525,0.3750698,-0.0810905,-0.140872,-0.26713225,-0.08934538,-0.27145836,0.09623588,0.5649967,0.78974396,-0.08936548,0.069187,0.22075929,-0.08852984,-0.09810325,-0.00417274,-0.1785135,-0.14238456,0.09187277,0.48681992,0.7189417,-0.13425742,0.3233169,-0.14694534,0.44786292,-0.06301547,-0.4741376,0.5814091,0.1729901,-0.12185172,-0.05987503,0.7152164,0.46455243,-0.31158537,0.45665455,-0.5632519,-0.23898031,0.5829266,-0.19027914,-0.43281814,0.09800493,-0.35058638,0.06948612,-0.8053275,0.3189618,-0.36009932,-0.40684494,-0.45766416,-0.11895982,-3.284323,0.2534316,-0.24221398,-0.212428,-0.23409939,0.038140878,0.20877555,-0.8159684,-0.59833485,0.24414451,0.29556355,0.6576952,0.047835357,0.0049802205,-0.25894275,-0.2574749,0.11547672,0.11771519,0.0060605705,0.31826442,-0.040209524,-0.32135358,-0.03376511,0.12283272,-0.5257143,0.21551657,-0.63383186,-0.48121086,-0.16995667,-0.6477639,-0.18142298,0.572137,-0.3577102,0.06621565,-0.103817634,0.17096446,-0.15944344,0.19036195,0.072537616,0.29896286,0.15771817,-0.15271114,0.22396877,-0.29020533,0.38054258,0.04146628,0.5039457,0.015002718,-0.124395244,0.1553286,0.6030878,0.76362574,-0.1423176,0.9413408,0.50610536,-0.09440716,0.11882356,-0.22137581,-0.07885267,-0.38942146,-0.48727527,0.024141889,-0.33783948,-0.46236897,0.08829946,-0.30365926,-0.89936566,0.66114396,-0.15848821,0.22873801,-0.011597608,0.11295075,0.4363661,-0.35423902,0.06963975,-0.05721378,-0.10800575,-0.50279063,-0.20751056,-0.606724,-0.44422233,0.05898881,0.8477218,-0.27864432,0.21335633,-0.04309868,-0.37646964,-0.0017258892,0.04342665,0.13075498,0.20673463,0.30171582,-0.015523384,-0.5059925,0.36144572,-0.058336742,-0.1800646,-0.5534744,0.23723768,0.6280738,-0.61118543,0.7555099,0.39812458,-0.04659816,-0.15447286,-0.68956155,-0.37359804,0.030838288,-0.08747509,0.4057614,0.079445824,-0.76308256,0.45923483,0.42882708,-0.5913696,-0.7006607,0.20267338,-0.23572199,-0.41845497,-0.14689668,0.23051286,0.09768418,-0.06545631,-0.22278768,0.19709963,-0.374844,0.14453211,0.17786336,0.0025279843,0.48764932,-0.12760691,-0.15206271,-0.84208673,-0.01665958,-0.6175181,-0.15364417,0.35342237,-0.02389421,-0.08887683,-0.00086685555,0.05510556,0.31086418,-0.37022558,0.09120031,-0.062840894,-0.49481866,0.2855921,0.48474103,0.40061697,-0.3347604,0.55540717,0.12121879,-0.15209699,-0.14385627,-0.085302286,0.43936846,-0.014758564,0.36422488,-0.4431786,-0.20479526,0.39575812,0.6025748,0.015408502,0.3618801,0.17920142,-0.08348766,0.36995938,-0.018644445,0.0050892415,0.0061043683,-0.3340113,0.22698215,-0.10550996,0.20618032,0.43338963,0.26327422,0.2946706,0.18905734,-0.23038816,0.027336912,0.243128,-0.06529902,-1.0185826,0.5601543,0.12239452,0.8550632,0.3913549,0.33421502,-0.32368073,0.739467,-0.17897977,0.042634506,0.29912823,-0.041350465,-0.5617793,0.6887685,-0.6946789,0.48090377,-0.05915087,-0.19174066,0.06162866,0.17861812,0.37968364,0.58544296,-0.18950592,0.02542765,-0.06810643,-0.15713893,-0.030188212,-0.46831375,0.07557152,-0.4870733,-0.51201445,0.7261219,0.3967527,0.46902445,-0.13774279,-0.107540086,0.14769903,-0.08805128,0.3187409,-0.28105116,-0.091780625,0.23124838,-0.64293534,-0.16165182,0.3502679,0.17389959,0.1876238,-0.3128406,-0.1906397,-0.045968734,-0.15272877,-0.20234965,-0.0131511185,-0.6295065,0.05679586,-0.27684033,-0.445045,0.48731798,-0.39929384,0.19352292,0.10001466,-0.040522512,-0.11293011,0.2649346,0.021638045,0.97127944,0.04619319,-0.17081629,-0.3272987,0.14740235,0.028914332,-0.18334855,0.35483938,-0.5359536,0.04439525,-0.5651542,0.6186437,-0.20927033,-0.47302204,0.18775599,-0.2966727,0.008364448,0.5174328,-0.25991797,-0.251164,-0.15626453,-0.29698306,-0.3433893,-0.17185314,-0.2989272,0.2917321,0.18015964,0.061987165,-0.07682274,-0.2003231,-0.0693216,0.56419307,0.09805096,0.3958448,0.3047602,0.03730444,-0.1612259,0.19061668,0.18757862,0.4679682,0.30632788,-0.17268036,-0.70000744,-0.4134488,-0.26832947,-0.0066953646,-0.15627035,0.25310138,0.023644438,-0.034879588,0.8403218,-0.07857318,1.1378856,0.060649913,-0.3260609,0.015015712,0.49355137,-0.09037268,-0.0022056182,-0.33768955,0.8195325,0.5475279,-0.12896952,0.0030264992,-0.57268006,-0.016490089,0.46635062,-0.3554265,-0.1146014,0.016025256,-0.53941923,-0.41763777,0.22512802,0.1191609,0.29176375,-0.121693455,0.15973455,0.013009314,0.17233385,0.36908117,-0.53621125,-0.009193512,0.16044976,0.22446051,-0.008015449,0.12523529,-0.4032705,0.42830864,-0.6003039,0.23926511,-0.4666375,0.06834285,-0.12661079,-0.38290936,0.15660103,0.07238744,0.41425446,-0.38064396,-0.3886002,0.0941325,0.490996,0.14498053,0.10491265,0.60687834,-0.23323737,-0.027308168,0.19095184,0.65710574,1.1955835,-0.5872773,0.12803735,0.29527518,-0.3386604,-0.6862997,0.40885413,-0.14194433,-0.046527274,-0.17358278,-0.52498066,-0.60704124,0.29836285,0.36802056,-0.080457695,0.0642466,-0.36303315,-0.23139018,0.22342502,-0.34038007,-0.24009642,-0.1474142,0.44852483,0.4939749,-0.1990358,-0.53157085,0.04370992,0.3107174,-0.09152831,-0.3964876,0.014349951,-0.25428867,0.25009134,0.054300666,-0.3914908,-0.17825763,-0.035601947,-0.38316876,0.012778124,0.069494836,-0.30907476,0.15254557,-0.25501373,-0.08522039,0.7998555,-0.196117,0.06497009,-0.606371,-0.35717472,-0.9790888,-0.4985518,0.42848256,-0.04657547,-0.10300244,-0.49985808,0.11262076,-0.045726594,0.04801791,-0.021699332,-0.4336572,0.364569,0.08592481,0.50219405,-0.3103376,-0.59902614,0.123615965,0.084862344,-0.14412409,-0.50378394,0.5001933,-0.021956764,0.8879811,-0.03160062,-0.07365355,0.03542889,-0.38561425,0.11434747,-0.43795604,-0.28431168,-0.589012,-0.031290468,555 -697,0.45782,-0.2929919,-0.49779695,-0.19136761,-0.106423296,-0.075431466,-0.15989417,0.5724963,0.0738707,-0.46446642,-0.18997972,-0.10718528,0.01740393,0.23892786,-0.22894455,-0.52256453,-0.03730619,0.016564313,-0.51423573,0.5816759,-0.29453757,0.14116885,-0.15193139,0.41737068,0.27420032,0.34946206,0.140243,-0.08216127,0.11068858,-0.03734906,-0.16127883,0.37724304,-0.312792,0.24504617,-0.0017414895,-0.2641241,0.06780032,-0.27047107,-0.4243852,-0.71562743,0.4893548,-0.72438514,0.4678774,0.117482185,-0.22039925,0.38022995,0.10045266,0.28239518,-0.44301033,-0.10730035,0.22398189,0.060480356,0.11493505,-0.31222513,0.06602402,-0.4566832,-0.43992835,-0.10506554,-0.3480953,-0.32521838,-0.19547917,0.1051647,-0.31009784,-0.09616581,0.060092703,0.64048606,-0.44624525,0.012156706,0.17096457,-0.16656828,0.37856916,-0.79758555,-0.22658303,-0.10926597,0.32426664,-0.12410471,-0.13202511,0.22133805,0.08801731,0.19669169,-0.07399336,-0.04162178,-0.27454332,-0.14417106,-0.12771633,0.41273886,-0.10433451,-0.48907217,0.064746246,0.05029981,0.012295216,0.15045339,0.17010887,-0.18392251,-0.1972529,0.015890956,-0.19073476,0.34745884,0.39663422,-0.16660835,-0.17828736,0.34771654,0.5067402,0.18162826,-0.09112529,-0.06335293,-0.039144613,-0.41697842,-0.110524856,-0.1511236,-0.13715222,0.43977553,-0.21625572,0.44702926,0.67059255,0.003675626,-0.0096324105,0.02609523,0.12976156,-0.08051152,-0.3042587,-0.40300354,0.21051297,-0.39236242,0.19479102,-0.02715766,0.65790373,0.13200209,-0.6438472,0.33293822,-0.45910162,0.025519352,-0.08424877,0.39166382,0.59955627,0.37835073,0.28886607,0.6195154,-0.4655793,-0.020532373,-0.015019756,-0.2930446,0.08236976,-0.013316031,-0.12547351,-0.547406,-0.07774234,0.08823829,-0.02653839,0.18624075,0.21894473,-0.538535,-0.027979195,0.19605635,0.84913707,-0.33298174,0.052246753,0.5909721,0.98900676,0.88468575,-0.009648387,0.78578514,0.066342995,-0.26224157,0.2621486,-0.22079442,-0.6892162,0.3070541,0.49759272,0.10325206,0.2252558,0.07190744,-0.03518727,0.34548032,-0.23742826,0.047085006,-0.20423006,0.20864756,0.11629189,-0.14001574,-0.45924562,-0.23204406,-0.09616904,-0.0038371498,0.014600368,0.18341532,-0.10951665,0.3590126,-0.05575989,1.4549222,0.003002538,0.13915864,0.19920865,0.52591765,0.262066,-0.094694614,-0.14701833,0.43455443,0.41845146,0.27910855,-0.6002189,0.26311633,-0.23807819,-0.4806235,-0.15336129,-0.39415646,-0.011709535,0.08328581,-0.48455077,-0.17597204,-0.13260683,-0.19633248,0.21316722,-3.1167738,-0.1455732,-0.03414057,0.28586861,-0.21577582,-0.20138825,-0.030087702,-0.37904942,0.385886,0.46613052,0.53624636,-0.50770366,0.26336333,0.42827803,-0.5184808,-0.06618668,-0.44079894,0.038040757,-0.12388113,0.39329153,-0.10489874,-0.035960343,0.028428884,0.10584294,0.4185084,-0.026734918,0.07818397,0.19111522,0.34160465,0.053619362,0.43557665,-0.091448836,0.37708375,-0.3590786,-0.1410452,0.2210424,-0.2854126,0.115550436,-0.2125519,0.20105784,0.5329818,-0.50856537,-0.85428625,-0.552206,0.08963346,1.1928048,-0.1087383,-0.2319479,0.31397808,-0.4483454,-0.24250294,-0.09567031,0.41043955,-0.24540776,-0.13181137,-0.7444974,0.053522225,-0.0949266,0.13802348,0.092379555,-0.26427215,-0.49459055,0.74541056,0.12158573,0.64490676,0.30879703,0.10470582,-0.37337396,-0.41369918,-0.0047310498,0.56488544,0.39567852,0.05654337,-0.024008252,-0.010167471,-0.25915027,0.08432135,0.24330434,0.47586167,0.6336061,0.018179419,0.20429558,0.20932175,-0.058375716,0.10065884,-0.10184678,-0.20373672,-0.16099586,0.058763806,0.4624973,0.47667524,-0.1417009,0.28397906,-0.0029593003,0.39812925,-0.16012008,-0.4115473,0.5564676,1.0716325,-0.1347384,-0.41253915,0.5168611,0.559363,-0.12931594,0.31096599,-0.50718063,-0.20371725,0.5114155,-0.29781386,-0.42650288,0.1338109,-0.30867213,0.087518744,-0.8656254,0.212051,-0.37343854,-0.5411516,-0.65106,-0.21634649,-3.1814969,0.12481928,-0.4254169,-0.2538486,-0.21641201,-0.19739304,0.15932934,-0.8087155,-0.4969786,0.25713018,0.062964104,0.78260696,0.050552666,-0.024961503,-0.14752041,-0.30507848,-0.15273806,0.09439158,0.06874036,0.22247447,0.119930275,-0.43084833,0.027072264,0.080517575,-0.4078667,0.048801783,-0.44583958,-0.34752405,-0.21345708,-0.6285673,-0.2778156,0.6000661,-0.11197583,0.085865244,-0.12473877,-0.06471275,-0.08661735,0.192364,0.022441698,0.20181645,-0.0040609995,0.021181574,0.04740604,-0.39819214,0.11598703,0.089511245,0.2881436,0.16058734,-0.11456616,0.13971594,0.44206637,0.49375856,-0.12497024,0.691727,0.53378963,-0.061223105,0.2757664,-0.2562993,-0.34811813,-0.5318119,-0.36827442,0.08653663,-0.23359783,-0.46642753,-0.03259047,-0.4823951,-0.68776405,0.59524405,-0.12316816,0.11470549,0.10554267,0.33235466,0.58183295,-0.12870818,-0.0021426608,0.16268624,-0.13461484,-0.57431906,-0.009487687,-0.5443207,-0.4457369,0.03167455,0.879701,-0.37259516,0.03155125,0.026233952,-0.20074752,0.10250039,0.066344135,-0.07370697,0.37421668,0.25897333,-0.13544509,-0.591727,0.576177,-0.2695756,-0.20431897,-0.3922593,0.17414504,0.4375567,-0.67644256,0.42447308,0.23952998,-0.11463317,-0.33887297,-0.3826302,-0.16763169,-0.010626362,-0.16235925,0.38273662,0.20811908,-0.6705109,0.38342035,0.33190987,-0.20767792,-0.7313489,0.48671392,-0.07330174,-0.5147499,-0.027956797,0.2592635,0.13334152,0.055180762,-0.21504082,0.20164457,-0.2644971,0.1549854,0.02901125,-0.11964119,0.3885863,-0.19277154,0.09481887,-0.6434737,-0.051186465,-0.46790436,-0.18049416,0.35238478,0.122093216,0.113656126,0.11663799,-0.09267994,0.39766657,-0.2254431,0.17804617,-0.16610146,-0.2678178,0.2714527,0.36784616,0.34344733,-0.43883032,0.5676235,-0.029334761,0.034759674,-0.08023913,0.15386018,0.37651983,0.06509987,0.483455,-0.11920757,-0.24022664,0.3658217,0.7094659,0.21160272,0.4703361,0.06590039,0.01303977,0.11171362,0.03814211,0.141061,0.0972935,-0.4725249,0.06344233,-0.2420514,0.12774307,0.48872724,0.0671506,0.2405792,-0.082096085,-0.33375803,0.02087196,0.2881184,0.13561973,-0.8955604,0.54919696,0.21234849,0.7355264,0.4178545,0.058071163,-0.15742978,0.79353017,0.03832043,0.12451315,0.25144365,0.012803669,-0.5376767,0.55533457,-0.6791322,0.53314126,0.04824491,-0.1933472,-0.10183621,-0.061218612,0.3944925,0.6335282,-0.17390516,0.04390222,0.12444584,-0.34237188,0.3159429,-0.42303556,-0.00021283902,-0.4424299,-0.25932777,0.41872352,0.5546544,0.22735573,-0.044823818,-0.06518758,0.04678219,-0.06264968,0.17784408,0.025384422,0.06131712,-0.03401138,-0.6738656,-0.2526296,0.35783356,0.19326305,0.29545486,-0.07641484,-0.113202766,0.32019046,-0.041985948,-0.0037852,-0.051265035,-0.5748966,0.20333044,-0.14020668,-0.35213518,0.56068814,-0.14457823,0.3630236,0.20320176,0.090348,-0.119502746,0.26709288,-0.08365459,0.7090674,-0.099737115,-0.09163766,-0.4006974,0.19983704,0.08373484,-0.17211781,-0.02340485,-0.47440678,-0.0026073272,-0.5378859,0.44868726,0.0924365,-0.16697748,-0.0041736807,-0.21556006,0.05771682,0.559801,-0.05129274,-0.051662996,-0.23321694,-0.2029267,-0.21442273,-0.34303203,-0.19735578,0.30268925,0.13729778,0.3540482,-0.20732005,-0.063843735,-0.0857227,0.58483195,0.11321778,0.48608214,0.1785936,0.05344379,-0.11795396,-0.23738204,0.1522923,0.42789188,0.019572694,-0.12698159,-0.22163679,-0.58729434,-0.3068397,-0.027745353,-0.062266205,0.4680074,0.15280363,-0.081380166,0.663565,-0.11534107,0.9862051,-0.022198327,-0.35731122,0.07355007,0.5240288,-0.0764677,-0.14894739,-0.06704518,0.9111525,0.5760931,-0.055458207,-0.11645913,-0.2144716,-0.05184821,0.16260375,-0.25479373,-0.11585469,-0.11184227,-0.4435179,-0.3199155,0.14004669,0.23133649,0.19330564,-0.09204575,-0.018824257,0.1091255,-0.053509746,0.17322849,-0.3472956,-0.17497307,0.35166058,0.059127733,-0.02088487,-0.0025962775,-0.50642693,0.54212034,-0.4853953,0.1688275,-0.29963094,0.21483533,-0.2699798,-0.29900593,0.19370945,-0.011488144,0.3306207,-0.3710418,-0.38586813,-0.22657882,0.40857804,0.27997488,0.095605,0.50713736,-0.28058985,0.030795995,0.057707712,0.5558361,0.6499299,-0.21864568,-0.093547136,0.20455208,-0.43526506,-0.6245914,0.2345692,-0.20749713,0.15690793,-0.01665804,-0.07343665,-0.488972,0.2430483,0.32690188,0.044518325,-0.09465778,-0.5991271,-0.2665962,0.23682928,-0.36284435,-0.15381558,-0.36500898,0.120060004,0.51546776,-0.33170465,-0.29499093,-0.019942282,0.1361939,-0.0770558,-0.52071327,-0.10040967,-0.37512133,0.41809064,0.13996531,-0.1770905,-0.20611653,0.042079903,-0.3636133,0.36819443,0.012202758,-0.3647352,0.008608231,-0.35330504,-0.11998881,0.84460247,-0.2418762,0.061283514,-0.45089835,-0.32590806,-0.78619605,-0.29002926,0.7402909,0.02187988,0.17166114,-0.7018022,0.17432836,-0.11967835,0.01116798,-0.22846673,-0.13319804,0.42313734,0.04127141,0.39924514,-0.07767054,-0.8013356,0.20832671,0.03271289,-0.26261842,-0.5498199,0.4126062,-0.016868714,0.6599379,0.03867433,0.12979466,0.27881548,-0.3181504,-0.112140805,-0.261529,-0.25975984,-0.5361119,-0.02751551,568 -698,0.3704906,-0.0024966185,-0.6078345,-0.3376276,-0.09878536,0.12660497,-0.15815155,0.10614827,0.12716118,-0.38169414,-0.01965939,-0.2949735,-0.022235371,0.49515992,-0.123758785,-0.88254154,-0.110029906,-0.07786691,-0.6764683,0.5014741,-0.43006772,0.4628828,0.117574304,0.3746721,-0.012941787,0.34378308,0.3536633,-0.13410822,0.10519035,-0.06337169,-0.30515218,0.0777306,-0.73161477,0.18258992,0.22247903,-0.34472463,0.015620346,-0.13988529,-0.21879798,-0.5602292,0.45586997,-0.78606707,0.51165235,-0.03889197,-0.32249227,0.11315564,0.06922117,0.30808085,-0.5150905,0.13904612,0.23102997,-0.13385858,0.17709014,-0.18072279,-0.19761038,-0.53742945,-0.4896811,0.020304931,-0.6591568,-0.33111814,-0.30976275,0.19817623,-0.32435784,0.0943123,-0.2447048,0.37071338,-0.41318643,-0.16770472,0.21867545,-0.34720626,0.30561417,-0.40135098,-0.13930947,-0.06998007,0.20556389,-0.06366516,-0.095218115,0.13326655,0.1153708,0.5587013,0.15844005,-0.13776158,-0.120332725,-0.20079091,0.061294224,0.45058867,-0.008516959,-0.35359034,-0.26317888,-0.15662977,0.06396182,0.23150107,0.04734645,-0.4673372,0.025083922,0.06528172,-0.30972055,0.15549964,0.40163884,-0.53482354,-0.278275,0.44502875,0.35022062,-0.051499195,-0.13557006,0.24511172,0.07774603,-0.37057844,-0.24080302,0.2581614,-0.028914033,0.54088026,-0.09365915,0.34858453,0.8465974,-0.051860604,0.13950744,-0.35795063,-0.29921764,-0.32906854,-0.14490317,0.016485123,-0.032257777,-0.4082926,0.0536352,-0.30904084,0.9665435,0.10964254,-0.69985175,0.29124412,-0.50104445,0.09456228,-0.15842026,0.63847095,0.6566902,0.16543795,0.00039223983,0.947208,-0.78155077,-0.06589315,-0.053634174,-0.46789947,0.051999476,-0.019270118,0.003263125,-0.41766363,-0.053494714,0.26184437,0.15794824,-0.12738179,0.29369804,-0.3139771,0.07167729,-0.04272574,0.61859894,-0.47048706,0.043338712,0.669235,1.0672736,0.8215411,0.12879734,1.3254813,0.36603674,-0.2657211,0.20424904,-0.3618965,-0.60527396,0.18617226,0.47377974,0.5712154,0.29075214,0.05967664,0.1409252,0.401632,-0.20452,0.25863212,-0.034284517,0.13097781,-0.13088554,-0.030317325,-0.36140898,-0.09675277,0.21856774,0.081788644,0.10523792,0.24365467,-0.07466993,0.45681491,0.16877052,1.5409739,-0.09589516,0.2701803,0.06880413,0.44221753,0.22814098,-0.09280384,-0.04497907,0.33261523,0.515924,-0.05629001,-0.72890913,-0.02931672,-0.20883894,-0.4878392,-0.21019793,-0.43449944,-0.12006059,-0.05919582,-0.57266724,-0.0538595,0.102951065,-0.4044246,0.29243523,-2.5042737,-0.1592358,-0.23908004,0.25711364,-0.32585767,-0.2747831,-0.12992099,-0.35366088,0.4501148,0.60351264,0.29025716,-0.626775,0.45889366,0.4085879,-0.022737969,-0.10096605,-0.59827167,0.02307206,-0.13436069,0.38939655,-0.15506744,-0.14792088,-0.29807475,0.33181652,0.49456173,0.0063462993,-0.14716305,0.1022406,0.39782116,0.24029444,0.63522726,0.2632121,0.6745999,-0.0496363,0.03245518,0.3686847,-0.25326177,0.3015849,0.12378986,0.22635542,0.26610997,-0.6037119,-0.6965404,-0.7519516,-0.49166366,1.2428483,-0.54094875,-0.34398368,0.3635046,0.11756534,-0.29182965,0.011949851,0.53165185,-0.1461918,0.0014229462,-0.6825263,0.09546314,-0.08611577,0.366412,0.0088551305,0.028418344,-0.39833933,0.7115653,-0.11990796,0.6001343,0.42601982,0.07431814,-0.046511896,-0.5521421,0.13209987,1.0443099,0.2852264,0.13274124,-0.10720874,-0.20142776,-0.19738986,-0.17913525,0.24348791,0.43225816,0.80574524,0.18231909,0.15394977,0.3871842,-0.2210769,0.032039277,-0.06311304,-0.32540497,0.07437127,0.0438877,0.53180104,0.37878424,-0.15526769,0.39384466,-0.18384682,0.23000516,-0.28434533,-0.42010528,0.6735372,0.781448,-0.12275211,-0.17346868,0.5107866,0.4369064,-0.35651773,0.27670005,-0.5126902,-0.28360432,0.59708273,-0.077135794,-0.4100117,0.15773311,-0.30875885,0.08034511,-1.0700608,0.1208208,-0.10409494,-0.45077446,-0.5620203,-0.2472896,-4.5446544,0.22608344,-0.24572727,-0.20022987,-0.15676244,-0.18803263,0.4945951,-0.62312233,-0.500335,0.026677074,-0.07256996,0.5382846,0.085007444,0.308592,-0.3507331,0.081357755,-0.24333912,0.19732578,0.07620731,0.22085612,0.12042323,-0.3361302,0.12847503,-0.27414656,-0.52316785,0.019529043,-0.3777504,-0.6106163,-0.16314776,-0.51161706,-0.30633932,0.7514979,-0.36180407,-0.0691611,-0.31041685,-0.17417867,-0.30727595,0.4297293,0.17865944,0.14475185,0.021169974,0.056503363,-0.2741966,-0.49852827,0.06843695,0.068593994,0.2904306,0.22134799,-0.26995146,0.025199037,0.4570482,0.42510265,0.07679897,0.40871873,0.33806822,-0.035617195,0.3592388,-0.40951458,-0.14891766,-0.7544132,-0.44508868,-0.2890462,-0.3496856,-0.6235176,-0.3308096,-0.319147,-0.7561843,0.38979685,0.0144517375,0.095774494,-0.026040109,0.25284058,0.2470024,0.06591354,-0.016411178,-0.14693993,-0.19804981,-0.502788,-0.42779768,-0.6396113,-0.55402094,0.27764672,0.9983455,-0.08266051,-0.2918923,-0.033244003,-0.4674911,0.12450567,-0.029615935,0.38131967,0.43151698,0.35628513,-0.11772589,-0.7495959,0.55310804,-0.06309201,-0.017817222,-0.58149236,-0.16416192,0.7012847,-0.7605921,0.38953882,0.2416288,0.19845602,0.18002568,-0.33912256,-0.32298607,0.0816286,-0.29406554,0.51394105,0.14320269,-0.5884494,0.4308343,0.15811405,0.2616398,-0.6484924,0.46063954,-0.089653954,-0.31827608,0.14873847,0.28450277,-0.12773998,-0.04386209,-0.19349942,0.096090786,-0.47902107,0.2875078,0.47855794,0.06531459,0.5546788,-0.101750575,-0.1333084,-0.40126726,-0.047736984,-0.6226486,-0.11740172,-0.027166951,0.14218542,0.060517572,0.15683314,-0.11073436,0.40841818,-0.31252113,0.27491176,0.095369324,-0.12788974,0.3392026,0.43087006,0.15250053,-0.56600374,0.6996615,0.019472765,0.11548297,-0.13262135,0.11808252,0.599398,0.38676625,0.29119322,-0.25129038,-0.17821983,0.24600722,0.5708876,0.2714534,0.43081334,0.29492956,-0.057233855,0.3890949,0.28837216,0.029172858,0.10356716,-0.2058352,-0.0654705,0.106357485,0.23054862,0.35195652,0.13409434,0.43422583,-0.12512472,-0.23224185,0.2670596,0.18784314,-0.4067643,-0.81175804,0.31429064,0.28546137,0.52043885,0.65726715,-0.061120935,-0.008889391,0.40624663,-0.42647776,0.09297173,0.14746477,0.16670784,-0.612316,0.62455875,-0.46424693,0.42813656,-0.22549915,-0.015680313,-0.045665376,0.20980667,0.103288375,1.0160304,-0.029036455,0.087338194,-0.070241995,-0.1527746,0.09081978,-0.42446405,-0.009374142,-0.47231197,-0.25122312,0.55082333,0.29434964,0.27162474,-0.2916415,-0.14760798,-0.03326629,-0.0960103,0.0034406553,-0.13918355,0.043545716,0.08082381,-0.6548503,-0.5313502,0.5712553,-0.047715876,0.07423105,0.10165061,-0.46995604,0.29894632,-0.16736071,-0.02995934,0.026437186,-0.54117036,0.11096562,-0.32373735,-0.5182496,0.16253175,-0.6269196,0.3588803,0.1737208,-0.02457403,-0.19536725,-0.05106122,0.2293356,0.64164674,-0.047707465,-0.19885272,-0.42593908,-0.0791671,0.3283944,-0.33387807,-0.18380943,-0.3265562,0.030456487,-0.55654144,0.31635576,0.015986571,-0.23285338,-0.0062007857,-0.22281606,-0.042744543,0.35009167,-0.29389355,-0.034430675,0.25670296,-0.08242726,-0.17909919,-0.03897386,-0.42855275,0.245049,-0.031615175,0.14913402,0.1898621,0.0027670264,-0.056939326,0.2755435,0.17974922,0.29521048,0.35522473,-0.13969943,-0.2941732,-0.04351427,0.05137945,0.19411789,0.1555362,0.035218734,-0.10409711,-0.4798487,-0.22219552,0.22748202,-0.14327127,0.12856127,0.016208824,-0.5712154,0.6861508,0.2346516,0.9484586,0.14028288,-0.36645332,-0.012950833,0.499754,0.123996146,0.10076763,-0.22648494,0.951306,0.6289707,-0.21529172,-0.3240351,-0.28022182,-0.32028204,0.2932619,-0.26227978,-0.27169755,-0.027865509,-0.6892421,-0.25166124,0.05225011,0.28679878,0.12929606,0.16174713,-0.033634387,0.015412809,0.098608226,0.4570091,-0.5849642,-0.058925383,0.27570614,-0.02444965,0.14953627,0.3000015,-0.38410944,0.5251148,-0.78316075,0.07863617,-0.48914865,0.016378181,0.14858674,-0.22610983,0.13924792,0.04019409,0.39449283,-0.24174117,-0.21843903,-0.28280032,0.7983399,0.18926719,0.3815571,0.8738933,-0.13126579,0.005876825,0.10326339,0.43475068,1.3562093,0.07496767,0.096602716,0.19311197,-0.3180332,-0.5928426,0.11259401,-0.2726093,0.19224486,-0.082831904,-0.4443488,-0.2528242,0.26969293,0.026693119,-0.10974321,0.14111087,-0.49526644,-0.47276127,0.5009546,-0.2431688,-0.33921242,-0.32855308,0.18279296,0.666187,-0.39993063,-0.1720627,0.10615837,0.29312906,-0.2871535,-0.614437,-0.04195822,-0.24253368,0.42021412,0.23707727,-0.24080889,0.10287281,0.36776236,-0.2790095,0.27031457,0.3201463,-0.37987024,0.035015162,-0.25066006,-0.16069461,1.0888652,0.010030921,-0.08398448,-0.77231085,-0.5070087,-0.97626245,-0.52653503,0.5920335,0.014948911,0.031881526,-0.4700065,-0.07874116,-0.09314818,0.33517054,0.20469409,-0.454041,0.45289552,0.14482418,0.648312,0.06568882,-0.89530987,0.047225315,0.07957457,-0.19108392,-0.6428037,0.5904815,-0.20107427,0.46862215,0.013774536,0.083425775,0.22927618,-0.66316354,0.24931091,-0.4611444,-0.21475609,-0.8658473,0.1419757,572 -699,0.36487186,-0.15735105,-0.40603644,-0.10858952,-0.21422479,0.07587158,-0.036278434,0.5649571,0.22209597,-0.30876815,-0.13093139,-0.17546934,0.08698602,0.34677935,-0.23712808,-0.37429258,0.10209255,0.03606982,-0.2936663,0.3297567,-0.37030178,0.14193675,0.10523136,0.28143886,0.08598394,0.2913902,0.24766713,-0.07830617,0.04246454,-0.17772597,-0.2069162,0.2723641,-0.5221668,0.32562062,-0.21798134,-0.19150877,0.17684709,-0.49475825,-0.40121195,-0.618454,0.23950148,-0.76482624,0.3955431,0.30253854,-0.20717217,0.3800053,0.28354105,0.1400258,-0.21416521,-0.2586512,0.09252768,-0.059241794,0.1125129,-0.23433568,0.09505956,-0.27203226,-0.4695549,-0.027588844,-0.40705585,-0.23775527,-0.30755073,0.12670654,-0.33082217,-0.034398057,-0.049606755,0.41541594,-0.37695476,0.037125748,0.28027636,-0.27944553,0.37555435,-0.5579993,-0.21389577,0.030857814,0.15571894,-0.16625811,-0.21262433,0.3289281,0.1584754,0.30884707,-0.20830187,-0.1114603,-0.06729938,-0.11116348,-0.007844293,0.56387377,-0.38590086,-0.4817026,0.035510343,0.07612739,0.09649165,0.0006910723,0.19436306,-0.18825667,-0.14861844,-0.06062585,-0.12053133,0.28698957,0.46780393,-0.26250643,-0.14935772,0.14022371,0.43516424,0.13880783,-0.14417535,-0.09952119,0.0701884,-0.50339884,-0.19237396,-0.19342747,-0.11571736,0.61346364,-0.1285482,0.30513164,0.60439306,-0.10619171,-0.0004105568,0.20337346,0.10566708,0.09551663,-0.25469238,-0.13550456,0.20589226,-0.58784574,0.044305343,-0.16523114,0.7956984,0.16792253,-0.72742695,0.30219197,-0.4836797,0.1081998,-0.08339043,0.3595732,0.59581906,0.3667326,0.29409367,0.6864671,-0.5591088,0.01968529,-0.06891887,-0.34025905,0.25899127,-0.11950262,0.07350041,-0.42969233,-0.06713787,0.11402215,-0.08936583,0.10727937,0.10910424,-0.52970093,0.034138866,0.31761152,0.80344254,-0.21611995,-0.012334457,0.55283123,0.9761511,0.78989947,0.064429365,0.760446,-0.07329458,-0.21778774,0.26870957,0.08577368,-0.64646965,0.17098615,0.3581287,0.5360583,0.028128084,0.13280785,0.09595335,0.41508833,-0.4944331,-0.01696681,-0.16742608,0.33524317,0.13540341,-0.10611889,-0.39425856,-0.40820327,-0.08038007,0.1379245,-0.14051296,0.32386974,-0.011596262,0.39489874,-0.025119938,1.5391686,0.087512955,0.12434785,0.20656958,0.49825728,0.17958157,-0.17152795,-0.10980876,0.2708407,0.19434598,0.17895089,-0.38010788,0.03329817,-0.06493342,-0.43827564,-0.08397853,-0.35903242,-0.13588804,0.10369018,-0.6106847,-0.21709129,-0.17785452,-0.1053445,0.45567995,-3.1364088,0.017727228,-0.013997509,0.3163004,-0.17809513,-0.16251029,-0.021245709,-0.41896123,0.2638531,0.45045346,0.40471458,-0.7250293,0.10738647,0.3858263,-0.47423846,-0.0712769,-0.5306304,-0.07433407,-0.047359724,0.31114784,0.19727887,-0.03815686,0.004069766,0.300046,0.4259308,-0.010850549,0.021450039,0.051839527,0.21390635,0.021358414,0.35116836,-0.1050971,0.20646851,-0.26389673,-0.18044621,0.25504223,-0.39922297,0.14133269,-0.2713465,0.016770054,0.32540685,-0.2356995,-0.8448976,-0.57746917,-0.06593796,1.1248306,-0.19906637,-0.318263,0.3842452,-0.53339994,-0.18166214,-0.17792627,0.4189815,-0.07544995,0.04829167,-0.69563645,0.039243285,-0.17892888,0.036410194,0.04327134,-0.27369606,-0.41860586,0.8631046,0.044234872,0.5093612,0.3775049,0.042112395,-0.36403576,-0.4050355,-0.0641644,0.6234499,0.37810084,0.23893073,-0.09883881,-0.11282611,-0.19130291,0.06352267,0.17322353,0.6009586,0.68987477,-0.10012674,0.14164528,0.2237534,0.019470004,-0.008741269,0.060782436,-0.3047749,-0.020210322,0.07060344,0.6979951,0.8690271,-0.1300342,0.21024229,-0.17208345,0.36621696,-0.16086648,-0.37075642,0.3308096,0.67002517,-0.048630908,-0.1766703,0.5847574,0.6011928,-0.07629934,0.36038905,-0.5292763,-0.36716363,0.44677794,-0.13447748,-0.39908966,0.13676362,-0.36247152,0.13051604,-0.84555346,0.4224925,-0.2769841,-0.55936176,-0.4890343,-0.11993058,-3.331907,0.14892006,-0.29043004,-0.20199296,-0.031736817,-0.084262796,0.24007085,-0.6458901,-0.32709247,0.22959112,0.07369077,0.679696,0.038907316,0.03408392,-0.21555866,-0.30226326,-0.09821362,0.07489743,0.00034820117,0.17390767,-0.113660924,-0.3699608,-0.065756746,-0.24902947,-0.20581843,0.12234871,-0.35199922,-0.5117419,-0.15856239,-0.36399922,-0.35591,0.5555224,-0.37756795,0.063142456,-0.10938342,-0.08380957,-0.21180026,0.14840639,0.13943698,0.15776433,-0.11915596,0.115483746,-0.038107175,-0.33568624,0.3705156,0.080587216,0.51402265,0.40794915,-0.10334595,0.029449355,0.7133268,0.47209594,-0.16104317,0.8802102,0.44832292,-0.030198066,0.27989018,-0.15777133,-0.34679496,-0.44833463,-0.2788043,0.15107176,-0.24771592,-0.2771022,0.09027354,-0.4184148,-0.53129363,0.41237915,0.02647378,0.06754282,-0.029750952,0.098583385,0.46163642,-0.32695484,-0.113814145,0.00078631134,-0.16998744,-0.78207374,-0.23729931,-0.61048514,-0.3510167,0.10749744,0.9547361,-0.31028542,-0.018411666,0.08861833,0.024442453,0.15771468,0.17782345,-0.19979924,0.06722303,0.43626016,-0.095481105,-0.735105,0.5349543,-0.24664567,-0.18110472,-0.5320863,0.028751502,0.31892532,-0.6028829,0.5912987,0.30100173,0.10383158,-0.04933876,-0.5648189,-0.31361723,-0.09418878,-0.24511887,0.4022285,0.25927007,-0.8276809,0.3563175,0.2331914,-0.47087905,-0.6684607,0.45047528,-0.038743872,-0.4084714,-0.130413,0.14425841,-0.0037812178,0.029688615,0.053717468,0.06655186,-0.38933712,0.2621404,0.24553493,0.021414671,0.20402241,-0.15853368,0.044494517,-0.5733832,-0.006178448,-0.38631403,-0.302607,0.27018154,0.022653012,-0.031134052,0.14989218,0.07937172,0.33086526,-0.2578857,0.15969007,-0.08154494,-0.3109733,0.48956048,0.3755663,0.446209,-0.48295778,0.57090217,-0.020160824,0.03570551,-0.09727131,0.10426628,0.3609069,-0.038691558,0.17323357,-0.2175774,-0.21235381,0.22570907,0.9667329,0.10636003,0.34667775,-0.04310389,0.19468147,0.32573044,-0.0209755,0.13003436,0.27151683,-0.5552086,-0.10563533,-0.3066209,0.09698325,0.32191724,0.07990571,0.25959116,-0.019816756,-0.40381426,0.1277609,0.27234295,0.12099433,-1.1278561,0.29309514,0.087579146,0.7249315,0.5890416,0.078352876,-0.04586204,0.8833365,-0.13150644,0.08633289,0.2753619,-0.033942763,-0.46184632,0.59450114,-0.7508964,0.39216217,-0.050725617,-0.16384825,-0.19671535,-0.13778223,0.30825365,0.6422788,-0.26303464,0.0024278255,0.09699763,-0.33619946,-0.01989204,-0.49500492,0.014317971,-0.71850085,-0.21244925,0.4993407,0.42984736,0.37613523,-0.077636905,0.0024775588,0.08819175,-0.06938907,0.048655234,-0.01563572,0.046906646,0.050342016,-0.64830166,-0.07150157,0.57715565,-0.023251662,0.17771989,-0.11790054,-0.14456694,0.3097256,-0.28609392,-0.18225648,-0.11755837,-0.45587867,0.2587191,-0.28284097,-0.38521937,0.7576005,-0.1501302,0.21267447,0.3062247,0.14151451,-0.04774638,0.3277108,0.07386164,0.74113995,-0.20337826,-0.20833698,-0.36716557,0.18142898,0.07573543,-0.038065538,-0.10126583,-0.3030024,0.19074291,-0.35858396,0.4363665,-0.07249643,0.06454779,-0.07984298,-0.19171391,0.08275691,0.60538113,0.032815713,-0.18457168,-0.09546041,-0.13476315,-0.16024445,-0.17629863,-0.22860739,0.21152815,0.05886388,-0.014866618,-0.023400893,-0.23168813,-0.11729583,0.16257858,0.019105779,0.40533713,0.13475114,-0.05441346,-0.32085493,0.070650086,0.091399945,0.30416968,0.0122523755,-0.11366984,-0.336814,-0.4617168,-0.34474578,0.14029959,-0.04012637,0.24084578,0.04606841,0.010848867,0.9192137,-0.14068483,1.004067,-0.024323292,-0.30235815,0.073883414,0.5064039,-0.09290746,0.06411802,-0.2460843,0.7714477,0.4465623,0.055536173,-0.10101962,-0.30912507,0.2349051,0.15252198,-0.089073986,-0.14692242,-0.007294508,-0.57263845,-0.088549286,0.2365784,0.36042306,0.24740201,-0.109700784,-0.091730826,0.22408067,0.043796062,0.26321125,-0.45895672,-0.25988615,0.3227423,0.28336352,0.03501521,-0.032554492,-0.39873427,0.37442926,-0.36012918,0.010770449,-0.24743748,0.14290193,-0.23538734,-0.32850975,0.100060895,-0.19232838,0.39732757,-0.49120155,-0.20163797,-0.22693275,0.4168165,0.14274296,0.13137843,0.41465357,-0.23760289,-0.11899756,-0.05523672,0.4767103,0.7551727,-0.42371625,-0.14022508,0.5331826,-0.22838178,-0.5789301,0.20693396,-0.28635606,0.121796794,-0.11788073,-0.151007,-0.5204892,0.2288805,0.40021098,0.036449146,-0.049711235,-0.6046771,-0.25556546,0.3168557,-0.41721475,-0.2987592,-0.37950963,0.16966292,0.42859334,-0.12612677,0.014226435,0.15641788,0.20908825,-0.15869261,-0.44512287,-0.0036151523,-0.25409147,0.32614067,0.06511996,-0.3271728,-0.27418646,0.24853578,-0.33358085,0.26590303,0.15494926,-0.20351802,0.03222323,-0.29151586,0.18761417,0.88673306,-0.1573971,0.06851116,-0.46804062,-0.43199474,-0.73295915,-0.29144892,0.61283755,0.04544755,0.14306742,-0.5337109,-0.18104461,0.030023117,-0.011706031,-0.25101992,-0.11255347,0.4799202,0.08295868,0.3429472,-0.05461913,-0.6626924,0.11996538,-0.042791665,0.039422836,-0.45831713,0.3744942,-0.032638706,0.8477905,0.060393132,-0.062040623,0.21936128,-0.31222498,0.10694924,-0.18789695,-0.25829026,-0.5805616,0.112458535,573 -700,0.2951019,-0.47747055,-0.3779799,-0.2274859,0.03488745,0.0013182277,-0.072509795,0.5363439,0.22806257,-0.48291272,-0.12893535,-0.20901237,-0.034299973,0.29450253,-0.21028207,-0.37157533,-0.22853246,0.02467591,-0.53312707,0.46513146,-0.5283334,0.13161011,-0.1208648,0.2904093,0.20796555,0.23342909,0.09500004,-0.01965587,0.11234784,-0.19546248,0.0140570905,0.268496,-0.37393174,0.26018646,-0.09928743,-0.30937058,-0.06257622,-0.40234062,-0.4367342,-0.816021,0.34019944,-0.8094437,0.24875514,0.0774849,-0.42129436,0.038872495,-0.13266823,0.24414724,-0.30443928,0.0506447,0.17633702,-0.07690513,0.13622771,-0.13751106,-0.042490996,-0.26972508,-0.5528937,0.09182589,-0.30182916,-0.20826967,-0.05209609,0.13087882,-0.48717138,0.015423389,-0.28316313,0.54558206,-0.4549983,-0.16926406,0.2488474,-0.27218372,0.41588223,-0.7606404,-0.3773542,-0.14614049,0.12740342,-0.08123536,-0.22824925,0.24790621,0.24449264,0.48633415,-0.011118247,-0.03816932,-0.22192828,-0.08152258,0.28319106,0.31362915,-0.10653989,-0.4883482,-0.03458453,-0.11416657,0.14733464,0.28748277,0.19149105,-0.32668245,-0.059260108,0.251594,-0.31999052,0.22715984,0.5001345,-0.31005663,-0.25638515,0.23735796,0.6390134,0.29606798,-0.12502974,0.00734506,0.019128557,-0.53959054,-0.21687375,0.21030211,-0.2472783,0.3607475,-0.101086326,0.27019536,0.68299514,-0.3567846,0.026992382,-0.16219164,0.009225154,-0.3019104,-0.38879293,-0.3530049,0.20813963,-0.26720232,0.11039289,-0.24033754,0.92206985,0.24677232,-0.71007454,0.32801723,-0.3631046,0.22504385,-0.22120056,0.70695454,0.7094723,0.39365372,0.37241906,0.74552464,-0.399048,0.09176107,-0.1507061,-0.14291352,0.10682189,-0.30353305,0.0009828302,-0.48499945,-0.16659003,-0.052217424,-0.13377748,-0.050092187,0.55210185,-0.58208495,-0.02733778,0.1554233,0.6449007,-0.27628046,0.21464667,0.65198165,1.0154315,1.0612098,0.1967316,1.2150362,0.25104567,-0.34449542,0.34259027,-0.32803342,-0.8678865,0.2887476,0.4714788,0.36833826,0.098198146,-0.06440044,0.018577438,0.30879658,-0.5616592,0.2897759,-0.29862642,0.46298033,0.0976009,-0.09837738,-0.41289502,-0.28695264,-0.1324562,0.025301393,-0.16129738,0.13681039,-0.18144979,0.36436015,0.022038195,1.6192061,-0.25436723,0.10890247,0.0779666,0.5733795,0.026662905,-0.3712464,0.06987702,0.30043286,0.47692505,0.03207353,-0.73545486,0.29499772,-0.1399464,-0.41172057,-0.13103594,-0.38317686,0.13317388,-0.020195773,-0.24455017,-0.2546911,-0.009630208,-0.4629497,0.4232354,-2.5864055,-0.231864,-0.21449134,0.3786863,-0.16102263,-0.23264867,-0.043612845,-0.5804104,0.4489187,0.43803793,0.43204758,-0.7341036,0.08008644,0.50635344,-0.43747228,-0.04140746,-0.6396945,-0.123788245,-0.058332562,0.27426794,0.08199261,0.083261214,-0.12967418,0.025130602,0.35335982,0.10192359,0.11945712,0.2447904,0.30251673,0.013553172,0.5233403,-0.013614835,0.4273335,-0.30776295,-0.11153329,0.5000726,-0.45226794,0.13027702,-0.1312794,0.086209774,0.47952938,-0.5916985,-0.695608,-0.69808763,-0.4235616,1.3040494,-0.116312355,-0.53597945,0.4066068,-0.35484698,-0.22301592,-0.36714518,0.54181725,-0.2561061,-0.2246895,-0.86815655,0.01656131,-0.121194325,0.29951507,0.020294258,-0.08783223,-0.32283306,0.5441158,0.0018180883,0.6233861,0.32692495,-0.13243955,-0.15995778,-0.41680485,-0.014898699,0.8911488,0.39452913,0.14724709,-0.18725102,-0.082851924,-0.26613954,-0.039296865,0.1302485,0.4768701,0.7366035,-0.112221725,0.13895467,0.35665828,-0.19566256,0.05692502,-0.10916057,-0.22192731,-0.15239997,0.09764057,0.57896817,0.463893,-0.10586647,0.22753888,0.009175273,0.25079095,-0.038784746,-0.42902285,0.3784248,0.8864245,-0.09431656,-0.22534283,0.51892287,0.5517864,-0.3613807,0.39260957,-0.44968012,-0.20927739,0.5171766,-0.23763426,-0.44631752,0.20541619,-0.43128344,0.2620093,-0.7456089,0.2636603,-0.4094917,-0.38021633,-0.7765802,-0.1363119,-2.5665948,0.1289308,-0.10527576,-0.3138582,-0.024750553,-0.09904964,0.2776565,-0.45547026,-0.56174374,0.14517261,0.18559934,0.54750293,-0.014361979,-0.06266448,-0.29971507,-0.23179197,-0.42526627,0.058940366,0.11405595,0.3181308,-0.009467432,-0.465223,-0.006173863,-0.14314719,-0.42317012,0.05085886,-0.53280705,-0.63135105,-0.24290554,-0.5283538,-0.51656497,0.6213235,-0.07237422,-0.031696014,-0.080421686,0.024048833,-0.0964662,0.30637157,0.11116031,0.12854774,0.030179657,-0.09487753,-0.16819994,-0.34770787,0.1339327,-0.02453839,0.12403871,0.32546085,-0.18743195,0.23653391,0.52186054,0.5952022,-0.028383361,0.6919007,0.6508399,-0.12105938,0.16769339,-0.19151387,-0.2442242,-0.55598694,-0.23612055,0.20982496,-0.44708723,-0.5620359,0.017309437,-0.29050305,-0.7010753,0.4906709,0.0060053514,0.15052748,0.22735284,0.19919914,0.49781865,0.06623501,0.09752607,-0.04425202,-0.06817445,-0.53777707,-0.3056374,-0.823179,-0.47245768,0.28925183,1.0528618,-0.25770023,-0.14663976,0.13586222,-0.37219998,0.046207007,0.04413589,-0.119155005,0.15823682,0.38190192,-0.012047181,-0.46144933,0.33829638,0.15814503,-0.13636523,-0.5145436,0.15357651,0.5920357,-0.699803,0.55511886,0.15322557,-0.022123434,-0.24500741,-0.3312715,-0.25558352,-0.15893991,-0.16876656,0.41280732,0.19413108,-0.692656,0.5567151,0.25151423,-0.044384122,-0.734559,0.36505303,-0.11405521,-0.18615882,-0.027913276,0.3148429,-0.10195708,0.041372154,-0.1877756,0.31383738,-0.4702865,0.28055555,0.26821,-0.22554214,0.39158043,-0.10434242,-0.129588,-0.6999133,0.071140066,-0.58816946,-0.21929908,0.38963154,0.09206548,0.008583454,0.22673383,0.21377905,0.5026277,-0.047744334,0.15561059,0.074788935,-0.15148745,0.34000224,0.3860405,0.45860404,-0.4179524,0.5828567,-0.020427873,-0.04673392,-0.13017358,0.11087261,0.3641674,0.34761792,0.35820845,-0.19009866,-0.3969777,0.4118117,1.0552158,0.1221964,0.4567384,-0.074380346,-0.1267308,0.27871138,0.17142835,0.3226999,-0.16557792,-0.42625517,0.15822864,-0.103482634,0.0659936,0.3583466,0.14660713,0.36892554,-0.14502221,-0.37685812,-0.025943944,0.19257925,-0.075970605,-0.9712134,0.31957,0.029138135,0.85625577,0.6612677,-0.07310274,-0.04399865,0.5226905,-0.13062915,0.12617853,0.21559437,-0.0073792385,-0.6037578,0.4366636,-0.6732968,0.5342337,-0.012825351,0.01805679,0.06910551,-0.16614045,0.50022054,0.5315594,-0.15785061,0.0029222334,-0.06901527,-0.31893033,0.23019767,-0.51189387,-0.045027785,-0.61323863,-0.476353,0.53506786,0.4959768,0.36304876,-0.1632792,0.035102077,0.050737087,-0.16425602,0.26655078,-0.0924687,-0.039701283,-0.005212408,-0.7183448,-0.19505763,0.47264078,0.18692642,0.011945699,-0.024086159,-0.5117899,0.19876102,-0.22279817,0.05100437,-0.10161305,-0.66821533,-0.047525883,-0.37790135,-0.15625122,0.40168196,-0.094825655,0.30662963,0.30072308,0.10722662,-0.2676701,0.030716758,0.09602273,0.8617738,-0.29514116,-0.10120551,-0.5939073,0.147845,0.2579865,-0.2047616,-0.107938655,-0.14843586,-0.11653878,-0.497921,0.6082146,0.059441462,-0.26479873,0.13912779,-0.1846327,-0.10636111,0.66907054,-0.12178914,-0.1531282,-0.1816489,-0.18822543,-0.21180059,-0.16294983,-0.079410434,0.20000838,0.2575495,0.18479435,-0.16237439,-0.12354506,0.03833047,0.45460173,0.14185208,0.22912785,0.34812766,-0.046224717,-0.37543023,-0.03745268,-0.041031383,0.54289937,0.16807358,-0.1075836,-0.11055228,-0.4781883,-0.34305775,0.08351382,-0.15391205,0.44775596,0.00715076,-0.48624527,0.50962365,0.025599498,1.0280795,0.059068523,-0.36519688,-0.063537985,0.52436393,0.025299283,-0.04849464,-0.3504098,0.7196649,0.51658785,-0.13819586,-0.097342364,-0.32651237,-0.17288682,0.33979762,-0.102832064,-0.08176829,0.000555568,-0.7928117,-0.3435163,0.14509414,0.2431515,0.21149482,-0.08247071,0.051180996,0.18341404,0.11398116,0.22810557,-0.38924348,-0.015855514,0.285005,0.05003556,-0.029795518,0.055875696,-0.4666532,0.34216702,-0.51512897,0.18108551,-0.21387137,0.11947824,-0.083382845,-0.27091494,0.24310398,-0.07714541,0.38435757,-0.33697003,-0.48598891,-0.19396144,0.5668347,0.1529811,0.23761562,0.72601545,-0.29934505,0.05992899,0.13119705,0.66379696,1.3415153,-0.14073549,-0.15088783,0.32721984,-0.38695014,-0.64295,0.3637355,-0.16431968,0.06739934,0.010904711,-0.12777312,-0.44880965,0.28669214,0.3046099,-0.12915923,0.07584499,-0.6498161,-0.20248178,0.27373502,-0.42961925,-0.13304971,-0.4959701,-0.013218818,0.57664824,-0.37334788,-0.28010064,0.1368942,0.33744764,-0.38080546,-0.34709167,-0.061325606,-0.40579444,0.29908293,0.059910104,-0.38183948,-0.05928645,0.15884282,-0.3930152,0.10040911,-0.04185478,-0.47171608,-0.060392637,-0.23697075,-0.09935905,1.0937786,-0.2794643,0.2219829,-0.37469,-0.47768638,-0.70829684,-0.12818836,0.72514164,-0.040652506,-0.0682669,-0.5523942,0.026746796,-0.023756614,-0.001427176,-0.102429025,-0.30059144,0.49972886,0.05914143,0.45338637,-0.057715178,-0.55513203,0.37014654,0.16840132,-0.02221211,-0.49303418,0.56976354,-0.018356044,0.61239535,0.033398267,0.06907205,0.18276769,-0.45712006,0.0988108,-0.14147626,-0.3456822,-0.5762665,0.1772557,583 -701,0.46921524,-0.35449123,-0.4258545,-0.2185201,-0.23156789,0.08020195,-0.025979647,0.64141786,-0.05056244,-0.38542598,-0.17611903,-0.048907004,0.05648031,0.41835305,-0.29986075,-0.45293957,-0.30277875,0.03995406,-0.43218744,0.60158926,-0.3777593,0.11590132,-0.23936258,0.42742524,0.18887268,0.24180919,0.05882626,-0.074504755,0.019948598,-0.09870986,-0.104826465,0.30514738,-0.59983927,0.11849825,-0.06294548,-0.54492176,-0.1301026,-0.48696247,-0.45500973,-0.64034843,0.35473654,-0.90221083,0.6278037,0.04985475,-0.2740884,0.42774293,0.15819423,0.2244686,-0.2519077,0.0032331645,0.031040628,0.21491326,0.20407869,-0.19304739,-0.089661516,-0.42232835,-0.71113,-0.035221323,-0.42713964,-0.119228855,-0.12725724,0.05354837,-0.26502004,0.050983515,-0.11947601,0.4010926,-0.563481,0.05136433,0.115984395,0.072107606,0.3252168,-0.58576655,-0.25236848,-0.07346051,0.2261878,-0.18388996,-0.10486378,0.28632465,0.21002817,0.33045623,-0.24696405,-0.1221267,-0.3556171,0.11165906,-0.08367748,0.4817616,-0.26691315,-0.59332794,-0.06833866,0.03936454,0.34947914,0.08933227,0.1890129,0.051776633,-0.1572446,-0.06497375,-0.24025951,0.38209394,0.45094898,-0.42209628,-0.40566295,0.44316393,0.40455708,0.22996514,-0.13487272,-0.06378314,0.0105514545,-0.5443542,-0.11098858,0.10272411,-0.3134203,0.5075223,-0.14286403,0.42638204,0.5205457,-0.15043384,0.15180649,0.120758645,-0.009090011,-0.072160445,-0.17599696,-0.4481018,0.2165439,-0.1529635,0.22526616,-0.13818334,0.68712044,0.008868653,-0.74141955,0.25830027,-0.5932135,0.10053063,-0.15185499,0.38998857,0.6093939,0.61541307,0.15071376,0.5942001,-0.21420401,0.05058286,-0.06358278,-0.22326423,0.09494955,-0.10700873,-0.16721153,-0.58024174,0.04079816,0.09949264,-0.12872522,0.044332404,0.555788,-0.5920913,-0.112973064,0.14492393,0.81516194,-0.30083707,-0.058004014,0.74427766,0.9738318,0.9299514,0.066779085,0.86999065,0.17504314,-0.2238241,0.22389087,-0.3687424,-0.7419761,0.28284198,0.41990674,-0.39678067,0.49192408,0.0068007065,-0.115191296,0.33963197,-0.37805513,0.010145183,-0.22950271,0.08022309,0.2585883,-0.17090024,-0.39064613,-0.3746002,-0.19174875,-0.0139981005,0.10163454,0.27620748,-0.32534188,0.3511809,0.06090343,1.6284868,-0.0018338698,0.057758674,0.11589641,0.64104366,0.19922297,0.04242709,0.05754486,0.24278392,0.4217766,0.21805343,-0.70635724,0.35403702,-0.09839373,-0.67928857,-0.08552318,-0.34721273,-0.18638155,-0.105759576,-0.5863279,-0.31610042,-0.07419854,-0.048528884,0.39916867,-2.6654334,-0.13491458,-0.073391944,0.4820789,-0.27234364,-0.30352747,-0.0788744,-0.38219497,0.49100515,0.3915203,0.4147027,-0.6972141,0.47937328,0.3634773,-0.51316637,0.006102226,-0.58873105,-0.097637855,-0.04254777,0.35296896,-0.054072984,0.08698913,0.4018526,0.18069674,0.39688647,-0.06879352,0.14031349,0.22140744,0.42092833,-0.010926628,0.46170458,-0.10641437,0.43180597,-0.2948527,-0.14154142,0.22210595,-0.40309933,0.11848183,-0.10812127,0.1877173,0.33474356,-0.5797754,-0.9742759,-0.61732984,-0.009314216,1.26924,-0.2090138,-0.35632688,0.12148355,-0.34013277,-0.15779313,-0.26667297,0.37837747,-0.30454248,-0.20067914,-0.9192367,0.07198368,-0.17729655,0.20864855,-0.034544602,-0.0034542084,-0.45077616,0.49422166,-0.027503835,0.6145761,0.26495412,0.13680515,-0.29125318,-0.58796567,0.057856616,0.60102165,0.44777536,0.07496638,-0.08966084,-0.14744458,-0.0797028,0.1379765,0.11901955,0.5527817,0.5183099,0.023210464,0.20221922,0.26623195,-0.11799554,0.11018681,-0.20224437,-0.16167897,-0.26418048,0.011218584,0.50082135,0.56386393,-0.314282,0.39898634,-0.22908953,0.30720723,-0.21297233,-0.47043756,0.50591993,1.1339711,-0.155909,-0.28808767,0.6596706,0.7150081,-0.28047878,0.25157502,-0.56317735,-0.3489183,0.42544234,-0.23935698,-0.35161033,0.10499598,-0.22553103,0.197452,-0.9324306,0.2486051,-0.3866913,-0.30288956,-0.5678792,-0.06774397,-3.1997793,0.11842488,-0.3035502,-0.26086468,-0.2315221,-0.41676065,0.19727468,-0.72705215,-0.63986075,0.1374422,0.13204035,0.5946777,-0.03717508,0.10624313,-0.18456429,-0.17494267,-0.29145372,0.1802203,0.19010568,0.35603845,0.10266909,-0.53987795,-0.06610529,-0.039577182,-0.5499747,0.155464,-0.55565864,-0.4390705,-0.049363974,-0.5644115,-0.34202856,0.5170969,-0.12205843,-0.0114296395,-0.11168819,0.04912527,-0.050402276,0.3383742,-0.08978617,0.120819405,0.047232565,-0.14185064,0.23629211,-0.18990186,0.34990552,-0.03452331,0.33388442,0.20524622,-0.25739905,0.19567785,0.6238747,0.48574126,0.014302856,0.6144739,0.695764,-0.111469746,0.266446,-0.3035999,-0.19169651,-0.5438702,-0.31269243,0.07968767,-0.30370614,-0.5526778,-0.009214897,-0.32305643,-0.8898314,0.5394926,-0.24212343,0.23507023,-0.047104232,0.23470281,0.66772896,-0.063007884,0.10939029,0.017090265,-0.13889143,-0.46513999,-0.3015346,-0.61722934,-0.2936326,-0.049494524,1.181314,-0.19233425,0.06821038,-0.06561947,-0.26189047,-0.007154915,0.09050859,0.008341716,0.18305159,0.38002616,-0.16514263,-0.68851334,0.40163663,-0.061880853,-0.22282313,-0.45587698,0.20817839,0.56795657,-0.6262436,0.39912707,0.31825578,0.015896609,-0.25163257,-0.5541338,-0.09288908,-0.04029008,-0.09870417,0.2443691,0.2834721,-0.77787393,0.49590385,0.32320693,-0.31197745,-0.6865879,0.66326624,0.03206688,-0.4422787,-0.10932275,0.22544803,0.24614127,-0.029845513,-0.12881497,0.26422766,-0.37034962,0.34675962,0.024921127,-0.068700075,0.30146715,-0.11177672,0.15306337,-0.7804391,0.13474193,-0.51826704,-0.29445785,0.45333216,0.044314284,0.22660989,0.14561465,-0.041231174,0.34568164,-0.43765017,0.050214887,0.014419957,-0.27542064,0.25580484,0.3252571,0.4414775,-0.4189984,0.5139941,0.026766159,-0.0063515534,0.16012059,0.14926226,0.42678657,0.13135797,0.40056625,0.04080345,-0.18762325,0.2938607,0.6804269,0.19965686,0.38846105,0.04379527,-0.15077803,0.30424723,0.0068404856,0.0695341,-0.14818671,-0.37696213,-0.07587363,-0.22485925,0.08422041,0.39871496,0.19775607,0.21347696,-0.26558435,-0.26598448,-0.04760148,0.3470089,0.027308602,-1.217382,0.36677596,0.111572474,0.7415022,0.479064,0.07161535,-0.051069837,0.62872,-0.2550038,0.14137506,0.4528238,0.2761026,-0.551751,0.5536841,-0.6247097,0.4854355,0.027901951,-0.03800771,-0.055706896,0.084446356,0.31517962,0.6855371,-0.042243913,0.06526584,0.1629645,-0.47504324,0.051182874,-0.31719434,0.081609845,-0.62104446,-0.07769963,0.6542279,0.4757833,0.2848118,-0.09258171,-0.023903133,0.04871716,-0.14976658,0.19281395,0.10728928,0.16957048,-0.110415615,-0.76287997,-0.11782826,0.5025948,-0.06315841,0.20158389,0.015606784,-0.45650652,0.23136392,-0.15722746,-0.1266515,0.049891505,-0.685405,0.10818133,-0.34388065,-0.27077147,0.4481544,-0.20489308,0.17153706,0.20637268,0.10098387,-0.29598328,-0.041765735,-0.021187397,0.7598635,-0.13879625,-0.2638526,-0.45920914,-0.051253933,0.13719454,-0.21158229,-0.0742418,-0.20298275,0.029620638,-0.27986372,0.41108286,0.1412955,-0.22288135,-0.023985047,-0.1342028,0.1296585,0.4780703,-0.07922462,-0.104960114,-0.19121607,-0.15678619,-0.28848386,-0.2875028,-0.22459698,0.29165122,0.29613495,0.09483734,-0.092545,-0.05335187,-0.12278063,0.7362999,-0.007456727,0.59460723,0.471683,0.2757569,-0.33389232,-0.26190224,0.21272947,0.5322125,-0.07464422,-0.0038836736,-0.44793323,-0.5608916,-0.11965822,0.011551518,-0.25253984,0.37356853,0.06307705,-0.19462575,0.7518067,-0.12045814,1.0263717,-0.021607904,-0.39530393,0.049847227,0.46701,0.03500277,-0.12874737,-0.24851523,0.9964293,0.60527265,-0.026292209,-0.16270001,-0.19153072,-0.047874067,0.083500914,-0.20898588,-0.22302479,-0.117472515,-0.61580634,-0.3686978,0.16479945,0.1084933,0.22908704,-0.006963363,0.110727616,0.20679805,0.011725137,0.3606561,-0.4413013,-0.17265345,0.22931567,0.26966122,0.121716775,0.20825328,-0.5928442,0.27345508,-0.42846283,0.07255301,-0.3001865,0.16626239,-0.022357885,-0.33358556,0.14300004,0.048807565,0.30804464,-0.21597527,-0.34998566,-0.21240889,0.46359533,0.02481233,0.059503928,0.5167328,-0.21932054,0.20336077,-0.034224622,0.6115338,1.0027299,-0.13294086,0.010163922,0.27592394,-0.44523412,-0.8655853,0.31713903,-0.20455623,0.2734388,-0.07659927,0.033062294,-0.5700344,0.3433707,0.25040668,0.06608885,-0.014192805,-0.5969633,-0.31255835,0.41698104,-0.31944048,-0.22266494,-0.4605136,0.13110663,0.6264973,-0.25043052,-0.15203013,0.05664197,0.3512489,-0.09030564,-0.38667026,0.05876631,-0.4928152,0.22577731,0.09069601,-0.34907973,-0.2484996,0.098304085,-0.3228054,0.3184919,0.25948116,-0.23981158,0.10901348,-0.40443838,0.024365513,0.99872726,-0.26711753,0.14070974,-0.5719588,-0.43436578,-0.9731053,-0.40125495,0.5211176,0.25251773,0.00038212078,-0.7770957,0.19637579,0.05346536,-0.4112163,-0.22216225,-0.3440245,0.5020025,0.097807065,0.28031886,-0.053414464,-0.61997765,0.2959971,0.09177112,-0.11346306,-0.40594,0.59638876,0.06941451,0.9659768,0.079547316,0.22376229,0.09228124,-0.45722926,-0.2266822,-0.114496075,-0.19428748,-0.70437753,0.11652662,590 -702,0.49487942,-0.074430555,-0.58837694,-0.027760327,-0.09330961,0.10299892,-0.30858243,0.5837196,0.2772526,-0.3838787,-0.30300546,-0.0344078,-0.13556008,0.42391986,-0.13178477,-0.51168704,-0.076729745,-0.030935256,-0.30676138,0.6497796,-0.27796057,0.19506457,0.024799703,0.5301737,0.08374821,0.072493486,0.057435855,0.11507445,-0.000849733,-0.43438175,0.11152216,0.23601992,-0.81896627,0.12515849,-0.3725037,-0.44926283,-0.16783287,-0.42948145,-0.14781928,-0.9369252,0.22299154,-0.82376456,0.6584476,0.13224052,-0.29238832,0.4878281,-0.024043588,-0.024084412,-0.007788521,-0.11816649,0.041902266,-0.2569169,-0.19366525,-0.27558687,-0.070612736,-0.2686416,-0.564053,0.050939284,-0.50502056,0.0059530577,-0.44518974,0.032802254,-0.32265773,0.057958536,-0.10947446,0.39219564,-0.49503598,-0.010291613,0.096128315,0.017602136,0.24139301,-0.6578853,-0.19617933,-0.08212383,0.16384242,-0.10579245,-0.11504633,0.30090797,0.21664794,0.47814816,-0.098753095,-0.19737779,-0.32833096,0.15296614,0.13198444,0.39268652,-0.25182423,-0.43105337,-0.03367947,-0.055827342,0.42288283,0.22027756,0.28852156,-0.0014898136,-0.094854705,0.042051837,-0.08262445,0.4967945,0.48213106,-0.3069327,-0.16067553,0.24456325,0.62869483,0.3647539,0.030786904,-0.19681567,-0.08221602,-0.5609073,-0.16846943,-0.11398188,-0.3126836,0.43197918,-0.08909308,0.1810415,0.4717913,-0.1465974,0.009344926,0.2673407,-0.057722505,0.09534606,-0.12080973,-0.30161026,0.41514808,-0.35380748,0.2606265,-0.23734643,0.47587988,-0.020248808,-0.66662127,0.23882249,-0.6113361,0.11903,0.058885142,0.5633052,0.8027963,0.66659856,0.41921228,0.7095995,-0.3883901,-0.16734654,-0.069567956,-0.1492478,0.20812902,-0.25223103,-0.04192912,-0.46275133,-0.09992109,0.01621554,-0.20686285,0.27384874,0.4599294,-0.6631781,-0.10564535,0.2230699,0.6904609,-0.17835258,-0.043660123,0.88645434,1.2322382,1.013654,-0.00074246986,0.9899053,0.13494252,-0.17094009,0.0789177,-0.0049437513,-0.7992621,0.32263944,0.43216234,-0.43483475,0.56951463,0.00056659715,-0.026556928,0.32373884,-0.53493124,-0.2742494,0.01831462,0.25328282,0.040694673,-0.3295687,-0.40159443,-0.14928684,-0.052133914,0.22989559,0.062371694,0.42113718,-0.25956497,0.3678654,0.116062604,1.1396419,-0.17215584,-0.031534158,0.098883905,0.32610497,0.26641104,-0.12923615,0.016182771,0.20459501,0.1838037,0.21214335,-0.5283391,0.17033714,-0.20079088,-0.54694086,-0.1022208,-0.24080665,-0.16691484,0.03475624,-0.2602409,-0.32459545,-0.24039735,-0.2841419,0.29158017,-2.4335704,-0.04780666,0.04915458,0.44147512,-0.14216453,-0.39256814,-0.08755,-0.34335473,0.45286995,0.4243936,0.39194414,-0.6119216,0.3000297,0.4631757,-0.6387685,-0.06790978,-0.51641154,-0.12898229,0.10289,0.36310804,0.10528845,-0.24874714,0.14203638,0.22856562,0.62642086,0.22801515,0.15607856,0.4187598,0.4615805,-0.3753548,0.18860015,-0.19295558,0.4547331,-0.2686689,-0.25700915,0.40724218,-0.33411598,0.31584784,-0.40503567,0.14658543,0.3850899,-0.36965272,-0.86062825,-0.60454935,-0.15361005,1.4684203,-0.09294032,-0.63954926,0.15783247,-0.33674246,-0.2387206,-0.081823416,0.61334443,-0.2819359,-0.010891593,-0.77083075,0.018572796,-0.1884815,0.26933038,-0.0060693976,0.043226585,-0.6136258,0.82242733,-0.050777853,0.44604117,0.2815434,0.19611952,-0.2731786,-0.58805996,0.05985037,0.97564596,0.6554658,0.15304552,-0.33456367,-0.1967477,-0.30767086,0.04498746,-0.027385028,0.72050154,0.5475592,-0.07598553,0.06917245,0.14073694,0.10299543,0.08359788,-0.17642106,-0.24823216,-0.078816876,0.05867763,0.6012405,0.86765265,-0.22931668,0.117594585,-0.11651545,0.28785178,-0.11236543,-0.4377494,0.5188168,0.8828733,-0.18399312,-0.15733562,0.7198668,0.51487595,-0.20165464,0.6073279,-0.59068227,-0.49215016,0.4592452,-0.10719834,-0.450839,0.13422006,-0.25954193,0.08913557,-0.752257,0.35477135,-0.52574044,-0.32849854,-0.51700115,0.029337117,-2.7813916,0.23093256,-0.20363854,-0.11170571,-0.40757385,-0.22109023,0.3019622,-0.7782129,-0.84851265,0.015719516,0.056519013,0.6940985,-0.25484896,0.03891647,-0.16286403,-0.6781261,-0.23279212,0.22088228,0.25677803,0.3001127,0.023660155,-0.2871252,-0.18794385,-0.08950085,-0.35621312,-0.13727702,-0.47750774,-0.4756985,-0.27076676,-0.41685915,0.039541975,0.55189157,-0.398732,0.038349446,-0.24233559,0.019184727,-0.06887677,0.09079982,0.01624773,0.19097121,0.11990647,-0.2286339,0.21734715,-0.10510895,0.4085784,0.118609786,0.3716306,0.51035476,-0.3781128,0.27358198,0.49779665,0.7462743,-0.18539554,1.0326756,0.42216367,-0.052611325,0.35552025,-0.20930783,-0.45087022,-0.6817439,-0.25590485,0.14304157,-0.269566,-0.34807685,-0.0044514765,-0.35928625,-0.944865,0.5545193,-0.17911737,0.4156364,-0.0054061688,0.4400981,0.622384,-0.3275396,-0.15809093,-0.06905666,-0.09714617,-0.54913485,-0.25248763,-0.639014,-0.47610807,-0.037656248,0.83917683,-0.10476962,0.071999714,0.27261397,0.14656264,0.234181,-0.057253208,-0.008418596,-0.17297432,0.43580574,0.27549478,-0.62285864,0.44458133,0.08880504,-0.1397555,-0.6064402,0.36573315,0.47939807,-0.5785911,0.4525506,0.44679543,0.0165323,-0.07511625,-0.7344373,-0.027801743,-0.096522085,-0.18413374,0.35430437,0.50099957,-0.8495302,0.4682326,0.3635747,-0.24141566,-0.6500297,0.5218267,-0.07102688,-0.25300157,-0.17752875,0.4463255,0.13383113,0.07834111,0.043784313,0.3050293,-0.3294265,0.2552352,0.10052859,-0.015602774,0.15917894,-0.13675311,0.0021198345,-0.8992414,0.33930084,-0.6075281,-0.48179764,0.23384827,0.020488583,-0.071699694,0.15910792,0.47825387,0.4124909,-0.3719773,0.16966632,-0.16141103,-0.33129615,0.53388965,0.59864616,0.68370247,-0.26025817,0.49197307,0.110360414,-0.112390995,0.11267286,-0.1146866,0.40092516,-0.2062156,0.3615143,0.17040883,-0.17398259,-0.030734267,0.60274446,0.12019364,0.23373975,-0.0047255983,-0.07539363,0.3429612,0.030478518,0.2967435,-0.1845685,-0.70883507,0.10049073,-0.26727903,-0.11213299,0.59746903,0.20077507,0.14178726,-0.09800805,-0.20180799,0.026483396,0.286911,0.042757828,-1.1708323,0.24160904,0.02116053,0.7527424,0.67072225,0.069746576,0.074663326,0.49846077,-0.09715659,-0.055435598,0.5482996,0.18326172,-0.62787604,0.523924,-0.82065994,0.3357982,-0.013295627,0.04602532,-0.024824105,-0.16277379,0.3832373,0.76134205,-0.22997545,-0.033411328,-0.14503077,-0.27218395,0.08555127,-0.4355318,0.08643194,-0.38668382,-0.25491697,0.78550565,0.4016871,0.3306433,-0.3414698,0.042416573,0.07494093,-0.1188393,0.21687,0.027559139,0.10497408,-0.27222067,-0.35259277,0.017488021,0.4221905,-0.073066846,0.07089551,-0.095475905,-0.28687426,0.07368626,-0.22265364,-0.30237362,-0.12368143,-0.7416283,0.03418999,-0.5039562,-0.32088044,0.38947108,-0.014691119,0.07118865,0.22663666,0.14094004,-0.21158789,0.18323551,0.018294005,0.48241255,0.19217542,-0.1334983,-0.21705945,0.48046634,0.106709644,-0.31612936,0.07621897,-0.06071577,0.21888468,-0.4414273,0.3957372,-0.19536622,-0.38313583,0.0188411,-0.012896787,0.007349961,0.5612984,-0.18459526,-0.23401779,-0.25266245,-0.32117504,-0.17209306,-0.48314777,-0.10430953,0.20452735,0.04979098,-0.07184091,-0.17567934,-0.041841034,-0.21208137,0.27755272,0.05030412,0.29202458,0.4171572,-0.016985036,-0.46412504,-0.044744153,0.15426397,0.49083564,0.05661761,-0.1758278,-0.380125,-0.5365769,-0.44160113,0.28619844,-0.098097734,0.26270416,0.20106956,-0.12522358,0.6667788,0.18416585,1.038001,-0.094315335,-0.3686344,-0.0396565,0.54469395,-0.17711337,-0.22978841,-0.32845455,1.0229794,0.46670738,-0.24926382,0.08116806,-0.19242509,-0.0057956944,0.17621389,-0.28503135,0.0724501,-0.14817972,-0.7695092,-0.14115372,0.16263774,0.41422617,-0.007231718,-0.19829684,-0.032459855,0.27714044,0.13796473,0.15385877,-0.3589476,-0.33855793,0.44286,0.12943174,-0.06359708,-0.031495456,-0.42252234,0.19533256,-0.5658718,-0.082568415,-0.38844526,0.07950453,-0.19703981,-0.45021376,0.26288876,0.04483529,0.2982528,-0.3745875,-0.323016,-0.16315816,0.19832355,0.08658365,0.095748864,0.35688993,-0.25104028,0.030754896,0.029689321,0.5919517,0.96613353,-0.05616141,0.21586142,0.10241602,-0.4286734,-0.58505607,0.29367268,-0.34680474,0.22772804,-0.11561759,-0.19720045,-0.5967113,0.18306461,0.0770288,0.01663981,0.12907727,-0.7725276,-0.18062016,-0.005949185,-0.3892079,-0.15652278,-0.26174685,0.014387241,0.64326024,-0.27296466,-0.3768314,0.00966891,0.24963452,-0.13792089,-0.5176059,0.02169958,-0.2797776,0.19030152,0.018335499,-0.5005976,-0.10370238,0.16348784,-0.46088043,0.10867576,0.11227809,-0.30969143,-0.016555123,-0.4874305,0.28559875,0.7522633,-0.19703546,0.21916252,-0.2985802,-0.61373997,-0.88801646,-0.25197822,0.26044178,0.1046454,0.06808043,-0.83811116,0.06727193,-0.27211994,-0.07786747,-0.11381614,-0.25348032,0.32358426,0.20003003,0.5146338,-0.16408788,-0.6770214,0.29126737,0.103408895,0.06503868,-0.48311356,0.42582813,-0.0020942825,0.84120136,0.09499009,0.070680074,0.13924626,-0.76445806,0.059430387,-0.054249447,0.04572739,-0.48223978,0.23529795,594 -703,0.33262697,-0.23322052,-0.4480124,-0.16287711,-0.2591956,0.009403958,-0.14020199,0.61685973,0.16560158,-0.5134455,-0.3039234,-0.1842192,0.046789344,0.42095962,-0.1938335,-0.55754685,-0.06300206,0.1397411,-0.27565295,0.52394354,-0.39975247,0.3210904,0.13940185,0.5075319,0.34545678,0.08546186,0.1959983,-0.16437052,-0.38934964,-0.3372798,-0.28412804,0.31071922,-0.66127557,0.17444518,-0.117443,-0.48831624,0.028475102,-0.5636418,-0.3203065,-0.77267355,0.35849574,-0.98682934,0.42923287,0.08804323,-0.27743334,0.23917507,0.24017191,0.2791115,-0.30432078,0.004691454,0.10863277,-0.2982624,-0.03985681,-0.17479068,-0.14548603,-0.41155154,-0.7866904,0.08471652,-0.3818344,-0.16140562,-0.45434093,0.22895017,-0.3597598,-0.0974033,0.0019918794,0.5556051,-0.45930877,0.006947719,-0.007819478,-0.05995788,0.190276,-0.63230354,-0.34693658,-0.10960664,0.12771946,-0.2257842,-0.22511841,0.23775457,0.37532946,0.34954393,0.007474349,-0.16812772,-0.40392822,0.01115467,0.09762248,0.482701,-0.18181467,-0.69837844,-0.04740695,0.10953275,0.25435936,0.29247248,0.13992622,-0.18636802,-0.12870978,0.10290454,-0.21237373,0.35193202,0.4451335,-0.3229244,-0.34666923,0.35990196,0.26856157,0.036780633,0.005592649,-0.068965405,-0.004691887,-0.62579715,-0.104387484,0.19624971,-0.24198416,0.66357714,-0.1865694,0.21402393,0.754323,-0.28850505,0.0029458862,0.10244395,0.15375121,-0.103263535,-0.15358967,-0.32030255,0.21833222,-0.34625137,0.2815758,-0.2585046,1.098936,0.092329316,-0.70112824,0.17621326,-0.6310576,0.18821806,-0.16393232,0.54451185,0.6159586,0.41239935,0.5572649,0.5800392,-0.43199703,0.050197784,-0.017590614,-0.33284792,-0.11958038,-0.28863543,-0.057592474,-0.45242313,0.016630998,0.07236265,-0.05642336,0.047382098,0.7073134,-0.5358675,-0.036601357,0.15782325,0.8602382,-0.30111468,-0.13525961,1.0002408,1.0132475,1.1758635,0.099899605,1.192829,0.24745004,-0.22792178,0.078545496,-0.14401418,-0.74303013,0.36265346,0.45059937,-0.32248148,0.05730881,0.16594961,-0.067368284,0.24668112,-0.5494485,-0.076872304,-0.27859613,0.19858493,0.14227933,-0.09273936,-0.42145127,-0.37135997,-0.051064875,-0.020342588,0.088420376,0.29323924,-0.20969057,0.52785677,-0.0715085,1.3601284,-0.04752417,0.027788965,0.059724055,0.54988724,0.19868135,0.03325183,-0.020210322,0.3457891,0.383928,0.08698457,-0.6058364,0.10420863,-0.25298077,-0.5846633,-0.12233698,-0.35818386,-0.16016708,0.08000103,-0.45466396,-0.24657065,-0.19459435,-0.30183154,0.42417198,-2.5421405,-0.08736559,-0.0185045,0.27316195,-0.13169333,-0.4264746,0.06248589,-0.54693985,0.6128439,0.36818328,0.52995485,-0.6767598,0.109078124,0.40291855,-0.48228645,-0.21514294,-0.7613624,-0.11095036,-0.07104003,0.442612,-0.13330762,-0.11473691,0.07465586,-0.122445926,0.6951153,-0.033159155,0.1308355,0.3849224,0.36973497,0.053185787,0.45393917,0.05892494,0.56441396,-0.32364178,-0.19136088,0.32856166,-0.51923543,0.32145882,-0.044717975,0.09753831,0.43263754,-0.5835979,-0.89541465,-0.7547761,-0.26515132,1.1699156,-0.1226228,-0.4598106,0.27246183,-0.13702354,-0.03273756,-0.10826242,0.45822966,-0.26899534,0.012820601,-0.8047724,-0.013880604,-0.024121296,0.20810324,-0.03329781,0.13382198,-0.38093236,0.6328073,-0.101350494,0.21715952,0.30124018,0.19654109,-0.5903405,-0.63084817,0.07669657,0.95786464,0.34397826,0.13684043,-0.25104967,-0.27412155,-0.19855484,-0.22477926,0.1436532,0.48290616,0.78191024,-0.021449236,0.24092816,0.31523916,-0.028769195,0.037929952,-0.21249768,-0.25459164,-0.1627346,0.03076501,0.6519493,0.545958,-0.10273722,0.6368194,-0.13107878,0.32825917,-0.18985477,-0.39727944,0.579525,1.2864254,-0.06963437,-0.28040642,0.6760355,0.5523606,-0.26019296,0.46928823,-0.58601385,-0.3711928,0.5591414,-0.21735011,-0.5281403,0.056204602,-0.34241518,0.007517276,-0.8987461,0.37895143,-0.19810031,-0.54486233,-0.7052904,-0.11772421,-3.033984,0.095952444,-0.37722936,-0.20271817,-0.2040425,-0.414193,0.12487494,-0.57013905,-0.47129104,0.15689747,0.11450793,0.6544813,-0.1680425,0.25719914,-0.2541148,-0.12922278,-0.44959357,0.06611001,0.1096829,0.30837741,0.05140929,-0.35298765,0.21912122,-0.22443606,-0.5540983,0.04146773,-0.57588714,-0.5244167,-0.19693463,-0.5142395,-0.46484625,0.6793995,-0.47591722,0.03365693,-0.11308141,-0.048515815,-0.094705276,0.48155755,0.2181917,0.08578592,0.028869238,-0.108007945,0.02082489,-0.33523062,0.39469478,0.030031947,0.29080278,0.48549607,-0.22463354,0.18242992,0.4009975,0.63615733,-0.030796565,0.8502906,0.54831517,-0.007710333,0.19920439,-0.43407425,-0.3199271,-0.5468835,-0.29813477,-0.07907438,-0.38555908,-0.41669843,0.04400222,-0.2948442,-0.9366683,0.61948836,-0.018799396,0.13252777,-0.13017444,0.38116506,0.46454528,-0.21788734,-0.13782288,-0.0074685034,0.047531717,-0.5931384,-0.33645236,-0.6236594,-0.48397306,-0.097573295,0.9690453,-0.093007766,-0.13319382,0.0134196235,-0.23993587,-0.18818787,0.09272568,-0.17249672,0.12724727,0.29871666,0.038919184,-0.81685096,0.54185385,0.083596826,-0.1456181,-0.5053865,0.28258955,0.56858885,-0.7462572,0.40714964,0.45535403,0.067619786,-0.14777897,-0.5148729,-0.3105788,-0.15570909,-0.067741685,0.3210025,0.25693247,-0.7578099,0.57551664,0.40707582,-0.21725559,-0.9027488,0.3777256,0.043430027,-0.3448728,0.01380173,0.30650502,0.1516052,0.07651803,-0.27353492,0.23497787,-0.50390327,0.37820053,0.13985246,-0.026724754,0.46734196,-0.2420266,-0.21301773,-0.78094304,0.17203258,-0.52402467,-0.2816614,0.1611251,0.18861455,-0.083495826,0.24596313,-0.055546753,0.3816064,-0.29049322,0.08388744,-0.1559119,-0.15574652,0.13559762,0.5149936,0.56035113,-0.43463948,0.6909019,0.10616715,-0.09890866,0.026272627,0.06645781,0.39476216,0.15042703,0.4490143,0.048122272,-0.2590739,0.35943377,0.73103803,0.15545617,0.62352794,0.07558366,-0.11287585,0.33571848,0.09231929,0.28742197,0.10929572,-0.5368084,0.04855719,-0.44278526,0.056373425,0.53961575,0.06652816,0.3045178,-0.12599736,-0.18658462,0.14869973,0.23561698,-0.002984141,-1.0515168,0.43756235,0.20378326,0.83044374,0.60764074,-0.13003553,0.101088524,0.76831466,-0.3591333,0.12732264,0.4050213,0.1842483,-0.47472972,0.6846091,-0.8682802,0.48696682,-0.27968594,0.032578588,-0.15673436,0.03738636,0.39415815,0.7528218,-0.1452602,0.07280651,-0.012390465,-0.32611975,0.23136702,-0.49474275,0.20599435,-0.5792706,-0.22822008,0.74201745,0.39061067,0.19204313,-0.124933414,-0.037597027,0.16609842,-0.16002487,0.1444361,0.109448716,0.09467589,0.081503026,-0.6122732,-0.29639867,0.5974235,0.023021642,0.24748328,0.080554,-0.17599359,0.2666337,-0.25085104,-0.22768423,-0.03748118,-0.7380881,0.07941531,-0.19071652,-0.4764199,0.55407333,-0.33624724,0.23519179,0.2912489,0.1654826,-0.38533223,0.06965582,0.41471612,0.74069095,-0.06687985,-0.22353894,-0.3466169,0.11738194,0.209684,-0.15970431,-0.14107169,-0.098819494,-0.157105,-0.56550854,0.43989187,-0.16356781,-0.2577974,0.021565152,-0.1900932,-0.021038247,0.51294065,-0.0332498,-0.17175692,0.03594437,-0.23895217,-0.22899629,0.07151166,-0.14978155,0.40102613,0.22429506,-0.08150188,-0.149607,-0.08158366,-0.18288766,0.46325767,-0.28179696,0.3110057,0.21299829,0.04174704,-0.3397733,-0.24027713,0.003305472,0.5646013,0.018504573,-0.055059608,-0.16559973,-0.3413768,-0.30936784,-0.021168806,-0.20851539,0.28767708,0.13575235,-0.43758222,0.8021339,0.02203558,1.2008564,0.0018488353,-0.50483096,0.14900237,0.5016674,-0.0074049053,-0.031234466,-0.38936725,1.0908259,0.49909732,-0.16045696,-0.13022241,-0.38137627,0.07941894,0.33676723,-0.17662308,-0.3791985,0.016212579,-0.6384929,-0.25413945,0.28095457,0.3006221,0.123133846,0.03641104,0.012185037,0.33577377,0.08029934,0.5390831,-0.38125128,-0.03140543,0.30369118,0.40748623,0.053950135,0.09947287,-0.39713156,0.33797482,-0.54101616,0.20824787,-0.23604268,0.21769401,-0.29552156,-0.36525944,0.3356982,0.21156484,0.48587418,-0.16125649,-0.31931955,-0.22586401,0.55358577,0.11808087,0.23269558,0.50224584,-0.41980273,0.07559317,-0.1037808,0.4137169,1.1546154,-0.246954,-0.1294255,0.3331896,-0.3589363,-0.6749066,0.6837988,-0.37877035,0.07166546,0.085386366,-0.30182,-0.57061714,0.15972842,0.39963472,0.029572707,0.11964484,-0.53994,-0.2307242,0.3654617,-0.22304885,-0.2650172,-0.34081644,0.28222916,0.6161889,-0.27604452,-0.36608425,0.12052366,0.27801815,-0.12778625,-0.49426234,-0.03976004,-0.488627,0.34631926,-0.01165534,-0.3250191,-0.19014524,0.064146966,-0.40051225,0.08144665,0.13388625,-0.26237124,0.1119684,-0.3108223,0.10269166,0.8548098,-0.15048814,0.27929652,-0.72730976,-0.36926115,-0.8982996,-0.15882543,0.67219573,0.046354536,0.04831791,-0.7184721,-0.00400015,0.042717602,-0.20653722,-0.06826474,-0.62644184,0.4579465,0.12275712,0.27115014,-0.016968371,-0.6343972,0.13575682,0.09811081,-0.18105443,-0.550657,0.46698028,-0.05061554,0.8306973,0.06883594,0.028105924,0.35105798,-0.42642975,0.052986506,-0.19650306,-0.30391884,-0.6386799,0.02801019,595 -704,0.49602368,-0.14981247,-0.48584712,-0.11592956,-0.32700682,-0.020034326,-0.26755854,0.414429,0.39258748,-0.13817,-0.17740943,0.15011896,0.019702924,0.23238517,-0.2401689,-0.7093197,-0.054169733,0.13937472,-0.52610564,0.7200023,-0.43614095,0.31013444,-0.057442244,0.43763727,0.32318354,0.50537956,0.21216756,0.059700448,-0.27935308,-0.22970739,0.00402192,0.017136686,-0.5423044,0.23061356,-0.2825384,-0.24124756,0.12687063,-0.47284544,-0.28353304,-0.7272607,0.17299733,-0.8031983,0.47782332,0.17340377,-0.0741145,-0.16442333,0.23681402,0.12755565,-0.28798676,-0.14498445,0.12847942,-0.068657264,-0.028201649,-0.48483336,-0.31327263,-0.49980018,-0.47398233,-0.03317586,-0.6429819,-0.31900936,-0.2026472,0.3106867,-0.275982,-0.18593457,-0.19550464,0.5016524,-0.43039814,0.024569873,0.19219019,-0.35997316,0.11296236,-0.8203989,-0.1457949,-0.08139201,0.19931151,0.106435366,-0.18062918,0.42773965,0.18389748,0.24058048,0.32961273,-0.43814877,-0.43228623,-0.2289595,0.31608754,0.33487993,-0.34254068,-0.3131173,-0.28451037,-0.058796525,0.5409082,0.32480377,0.2261166,-0.14056772,0.157597,-0.2523525,-0.16527885,0.7200235,0.67188966,-0.24182162,-0.2840154,0.24469258,0.53718257,0.19169067,-0.43031123,-0.18746911,-0.107755,-0.32503536,-0.18736888,0.26931655,-0.112786606,0.6080798,-0.05754716,-0.042373933,0.73235375,-0.28066033,0.053009924,0.06757913,0.15049043,-0.04973928,-0.52014935,-0.24100232,0.08178263,-0.5595595,-0.015243154,-0.35130963,0.67721856,0.090980016,-0.7009595,0.33991,-0.46244866,0.020131204,0.08932679,0.5328684,0.526609,0.5704509,0.29200312,0.6569841,-0.14380987,0.21930371,-0.03580773,-0.32817805,-0.07952494,-0.21586122,0.052583575,-0.37235686,0.19243461,-0.23598807,0.08198224,-0.0301493,0.5933999,-0.40222913,-0.20244329,0.25051638,0.86202437,-0.3072914,-0.15868099,0.6111427,1.3440163,1.0694654,-0.107006274,1.096587,0.20126882,-0.1484668,-0.10389233,-0.2736103,-0.62292266,0.1981364,0.3065013,-0.31091684,0.4151488,-0.13048795,0.004825858,0.2440454,-0.2273431,-0.050084617,0.026817117,0.37639993,0.2086734,0.06648984,-0.44422114,-0.22464599,0.0903293,-0.100868136,0.23273516,0.35650954,-0.5740357,0.16556934,-0.08213925,1.0485191,-0.13117655,0.029310625,0.1116461,0.70898116,0.30553746,-0.078942895,0.22958948,0.6321048,0.17324024,-0.16463582,-0.65756196,0.17307279,-0.5732674,-0.457586,-0.08208799,-0.51522005,-0.17567095,0.23588528,-0.34046194,-0.17609787,-0.014657772,-0.2535567,0.33950475,-2.6561785,-0.2144848,-0.13928819,0.31975916,-0.3257243,-0.2257112,0.05873015,-0.4934631,0.2334455,0.120146185,0.44380137,-0.44078276,0.50858253,0.705616,-0.59856665,-0.10710769,-0.627051,0.07684365,-0.29568288,0.7354791,-0.22437835,-0.017168788,-0.06661697,0.17531937,0.9498068,0.27010423,0.2692293,0.5445271,0.32210353,-0.013925355,0.4269633,-0.0064769615,0.6855253,-0.3332523,-0.22197665,0.35324523,-0.4286031,0.47801253,-0.055400636,0.12390719,0.6444164,-0.4814061,-0.84458286,-0.47840658,-0.2866249,0.9842664,-0.33990633,-0.47725472,0.16294517,-0.10952,-0.15311068,0.006371443,0.572547,-0.04327178,0.27707756,-0.46425295,0.1442257,-0.053121917,0.17945684,-0.014180515,0.20734447,-0.06711976,0.759009,-0.0079641985,0.54766375,0.12985688,0.2652983,-0.3227648,-0.33031052,0.10564584,0.81398106,0.30524057,-0.03614662,-0.10389535,-0.21758768,0.029667556,-0.22371355,0.058821622,0.66169745,0.7228668,-0.10944964,0.11427729,0.34894198,-0.025657954,0.014892981,-0.12063014,-0.35266873,-0.29126012,0.16136727,0.4452359,0.7276719,-0.13694617,0.38502482,-0.15042344,0.29103354,-0.2849589,-0.3695656,0.531423,0.51759213,-0.26650655,-0.15026802,0.6696163,0.63892025,-0.7421586,0.5461551,-0.6786471,-0.11993192,0.6953182,-0.27101266,-0.48010826,0.09152622,-0.26528832,0.046088044,-0.7224117,0.26530468,-0.3837748,-0.39370456,-0.20382045,-0.20421019,-2.8007064,0.22101298,-0.23657733,-0.120479695,-0.34856635,-0.04770147,0.18724035,-0.7085279,-0.4527257,0.1303877,0.21228467,0.5728219,-0.22927721,0.119119644,-0.29618055,-0.3239837,-0.16048685,0.44032103,0.0060154106,0.3574031,-0.41918027,-0.29563814,0.06482151,0.011371186,-0.47005197,0.16797918,-0.5362284,-0.31466866,0.040636208,-0.55940217,-0.14315757,0.55538327,-0.4372311,0.009062813,-0.20849106,0.17141159,-0.13017263,0.23568353,0.025690857,0.37718627,0.2810777,-0.1387174,0.100131854,-0.3805443,0.4934542,0.03173925,0.45823926,0.17802033,-0.02018824,0.023615006,0.4465788,0.5649376,-0.040719252,1.1656339,0.21540612,-0.2389057,0.41466972,-0.28334117,-0.39881423,-0.6570384,-0.23463117,0.041290063,-0.3419955,-0.60521466,0.055497248,-0.29135954,-0.8428564,0.6414114,0.071208626,0.55788225,-0.11173929,0.42592505,0.2939307,-0.21851029,0.030385444,-0.0055425605,-0.24718674,-0.48064226,-0.33011,-0.70456725,-0.44441417,0.20471637,0.5630648,-0.3433398,-0.07428042,-0.006243339,-0.49429247,0.038173717,0.08943197,0.1293465,0.25856054,0.45636266,0.16470711,-0.55258983,0.25704518,0.056051478,-0.069810584,-0.24430649,0.11054848,0.67046773,-0.7245754,0.7779116,0.40389407,0.10020665,-0.28952998,-0.61815125,-0.100335725,0.13855383,-0.08672873,0.6053075,0.357155,-0.9774882,0.59261805,0.17734043,-0.600176,-0.8203742,0.36340302,-0.12420066,-0.19381367,-0.40637764,0.5014944,0.23919685,-0.14301592,-0.08572573,0.2880194,-0.28388068,0.20320271,0.22043195,-0.20561783,0.2528468,-0.067133546,-0.461046,-0.81381893,0.15568802,-0.60872835,-0.3987924,0.45555958,-0.15420093,-0.11830197,0.29358652,0.28295395,0.47007376,-0.27978924,0.213655,0.06343598,-0.33295888,0.49881807,0.47661906,0.6450446,-0.36183086,0.43249512,0.119033694,-0.2708383,0.37625968,0.06442373,0.31671807,-0.048041306,0.41579157,0.004768454,-0.0637486,0.26994407,0.5471256,0.26983806,0.5732392,0.15853783,-0.22218052,0.4239699,0.03707945,0.12135513,-0.006905657,-0.62504643,-0.036732003,0.05251703,0.17111206,0.53451794,0.16532382,0.48312905,0.088496596,-0.07195163,0.040448543,0.22507904,-0.099987745,-1.2385886,0.26227006,0.1819124,0.9309062,0.45750782,0.2441513,-0.35117382,0.63300145,-0.30253294,-0.06235826,0.59499043,0.08908924,-0.45401222,0.69585156,-0.3357668,0.41395995,-0.18253404,0.036846347,0.21479514,0.03573198,0.5742533,0.97454,-0.16857164,-0.13078938,0.007607206,-0.24204066,0.06391505,-0.27543885,0.21323031,-0.24026391,-0.45916632,0.7610532,0.29779556,0.38961175,-0.11862709,-0.0998062,0.073990114,-0.26002368,0.2675337,-0.01295484,-0.115716785,0.047478233,-0.5378375,-0.18614417,0.641646,0.031249633,-0.003037086,-0.19796321,-0.20289442,0.14835241,-0.14647582,-0.052820545,0.099617116,-0.771464,0.05794231,-0.024773864,-0.7646285,0.38502842,-0.33248833,-0.09126023,0.15862545,0.0008439559,-0.355734,0.38256243,0.2670707,0.6652612,-0.01427473,-0.11826341,-0.24535717,0.04158066,0.1224619,-0.21420535,0.27821633,-0.42270067,0.13821347,-0.6901398,0.52787197,-0.3233751,-0.37032458,-0.2166105,-0.2599601,-0.19295979,0.62810814,-0.03009245,-0.16476451,-0.13375896,-0.20744535,-0.43257105,-0.29532406,-0.14848348,0.120520115,0.105650894,-0.24337055,-0.20638339,-0.3439002,0.009344073,0.3747327,-0.043020424,0.5000791,0.2248385,0.036897663,-0.22082236,0.06042334,0.17868105,0.36808622,0.051479775,0.15748368,-0.28854963,-0.29062697,-0.29118636,0.39189434,-0.10436478,0.11173015,0.22044183,-0.33205664,0.96760327,0.007003844,1.3972753,0.043463048,-0.5719069,0.07272632,0.76890814,-0.193645,0.093164556,-0.5009681,1.2037255,0.58542186,-0.1807677,-0.020485777,-0.65538305,-0.13025095,0.19055837,-0.5418583,-0.0983805,-0.086078726,-0.39168912,-0.12228605,0.17029902,0.24690022,0.13038865,0.007169132,0.063834734,0.13861229,0.27114004,0.4036682,-0.7125631,-0.23526922,0.35124603,0.2435925,-0.07541858,0.286326,-0.33483377,0.3845641,-0.89752746,0.31584284,-0.3718371,0.11953403,-0.37088424,-0.5633789,0.15381771,0.012554948,0.44903836,-0.40684754,-0.43123457,-0.10478987,0.379448,-0.0023568845,0.18616344,0.5731112,-0.25433052,-0.0055324617,0.06555089,0.67655176,1.1965454,-0.2634418,-0.1865294,0.23707458,-0.5478686,-0.8534054,0.21003205,-0.6183549,0.056646015,-0.060950108,-0.49329382,-0.5198186,0.23097447,0.19968535,-0.021531196,0.04811058,-0.6754529,-0.20086424,0.2562223,-0.2768187,-0.23480788,0.11201341,0.29795104,0.84547174,-0.2118118,-0.47941065,-0.15428708,0.26003996,-0.3566503,-0.56236804,0.003434007,-0.21227218,0.33403513,0.034564774,-0.29768306,-0.06907069,0.15643509,-0.557124,0.07490555,0.3091574,-0.3076642,-0.009584959,-0.16104811,0.06252319,0.73604405,-0.07523349,-0.052826066,-0.5246261,-0.5922931,-0.9562479,-0.67961746,-0.08788896,0.021518432,-0.049483374,-0.47608328,0.037838485,-0.4195316,-0.15805116,0.12002477,-0.7707439,0.44829077,0.06986611,0.57938915,-0.36052,-1.1579083,0.19505802,0.27336645,-0.014490063,-0.7946826,0.53165305,-0.24795693,0.9084176,0.16845027,-0.17596194,0.11490398,-0.62525237,0.14666373,-0.4780793,-0.109710105,-0.7395535,0.22552459,599 -705,0.5575402,0.07421418,-0.5964438,-0.3038337,-0.5781856,0.0008765009,-0.07794409,0.18751079,0.46188486,-0.3033107,-0.10312759,-0.043581966,-0.15509994,0.47486782,-0.08867256,-0.98723096,-0.027977003,0.40488103,-0.69442284,0.57954526,-0.44065318,0.69018406,0.14247891,0.4457536,0.16391625,0.2131364,0.44115862,-0.003927231,-0.11086823,-0.030115714,-0.27763727,0.056025513,-0.5769638,0.49771583,-0.033685762,-0.466589,0.035503175,-0.42686448,0.024636159,-0.73183036,0.3208072,-0.7084369,0.5587777,-0.10661848,-0.29864523,-0.10841654,0.18107542,0.24503341,-0.25208065,0.04002317,0.28207707,-0.2706136,-0.107713,-0.18408951,-0.3656961,-0.5159601,-0.51325524,-0.010148635,-0.37547296,-0.19459827,-0.26365048,0.3625085,-0.21532127,-0.09826799,-0.19895886,0.32198986,-0.240403,0.0051649055,0.23448539,-0.38094535,-0.15639935,-0.46173617,-0.17447184,-0.17515975,0.24927267,0.14543119,-0.37198442,0.34559932,0.19784172,0.60747606,0.3013337,-0.33585453,-0.2515558,-0.10550205,-0.09800349,0.50071436,-0.19877735,-0.12149833,-0.23224966,-0.06498292,0.29805022,0.061238583,0.15881398,-0.32052857,0.025317878,-0.1487321,0.027835902,0.16492793,0.43300942,-0.4277655,-0.22786424,0.45790365,0.3092416,-0.038013026,-0.030813495,0.16319095,-0.06928037,-0.47133097,-0.20702289,0.011818308,-0.01222179,0.40229586,-0.09611864,0.05220365,0.65832,-0.045826092,-0.11103118,-0.059101164,0.07155861,-0.0448602,-0.25427628,-0.18489884,0.37918547,-0.3670835,-0.17954598,-0.2740808,0.8972506,0.10179615,-0.6033701,0.33193848,-0.39872706,0.15584494,-0.0014808178,0.47374198,0.85973555,0.5325152,0.11416065,0.9352223,-0.5052239,0.24773012,-0.03171335,-0.08592547,0.24760808,-0.08976122,0.15570508,-0.54431725,0.23049879,0.05008085,-0.114606604,0.22233063,0.4123079,-0.6135533,-0.25551206,-0.088640176,0.6000081,-0.46338862,-0.007396494,0.87330014,0.9892326,1.1286502,0.17289284,1.4952252,0.455418,-0.2582604,-0.052499715,-0.27476758,-0.5198177,0.14168453,0.22251661,-0.16688244,0.23383135,0.091371074,0.20937552,0.4816413,-0.2317414,-0.15829948,-0.102531314,0.4066643,-0.21625724,-0.034082133,-0.56847,-0.4287185,0.10308305,0.086006604,0.13374229,0.3910723,-0.36309144,0.46235985,0.009420801,1.5517663,0.0002879592,0.1019233,-0.20834933,0.06917227,0.2820831,-0.44351408,-0.11134003,0.21075687,0.170012,-0.24451417,-0.41441706,-0.16524349,-0.409118,-0.4060192,-0.18158779,-0.27909437,-0.0099528525,-0.028648075,-0.19857986,-0.49339244,0.108065404,-0.3871462,0.33437082,-1.9389259,-0.23198766,-0.1890162,0.22610536,-0.0615773,-0.3901432,-0.4361614,-0.5457185,0.15228452,0.2469303,0.38524917,-0.45319888,0.21777447,0.14550155,-0.5124174,-0.28154713,-0.62346715,0.26252726,-0.011991198,0.33934003,-0.24012835,-0.20572871,-0.29968077,0.20442805,0.56750214,0.15650608,-0.07914074,0.33898604,0.5448981,0.21681723,0.40435743,0.22862405,0.8034198,-0.44771916,-0.16177975,0.37030074,-0.59014916,0.40495425,0.07993865,0.24626453,0.55048305,-0.703441,-0.7936166,-0.7701438,-0.24894994,0.9925511,-0.225501,-0.35125157,0.36112154,-0.10652547,-0.19708814,0.21598771,0.516207,-0.12978545,-0.06934518,-0.59355235,-0.17592151,0.059132252,0.15267631,-0.092746735,0.015086771,-0.37070316,0.6452898,-0.21157588,0.4182315,0.3193003,0.25321266,-0.18451905,-0.45168936,0.1056602,1.0252458,0.44901732,0.105636835,-0.08942056,-0.17138878,-0.24588141,-0.22419572,0.21268842,0.49011168,0.7090127,-0.11238972,-0.07173993,0.35442197,-0.10834457,0.0515588,-0.026927246,-0.30004933,-0.10891069,0.058251355,0.62518924,0.5381521,-0.067453094,0.1889753,-0.0063928184,0.36882356,-0.16274646,-0.6405308,0.70050085,0.97194284,-0.1698717,-0.35274842,0.7839035,0.21653968,-0.04025185,0.4756026,-0.55585206,-0.34259266,0.42516083,-0.07327929,-0.3130378,-0.14375676,-0.26855466,0.13705012,-0.9496222,0.4485295,0.07850445,-0.7117062,-0.613006,0.016534436,-2.934174,0.24142835,-0.11221388,0.09923501,0.05830211,-0.14551595,0.20026326,-0.60567385,-0.5477886,0.19340363,0.11078671,0.72934383,-0.0017664754,0.21798691,-0.093284026,-0.55079854,-0.16531342,0.23356797,-0.050009582,0.27563387,0.14502485,-0.28416044,0.25061578,-0.31922418,-0.49761683,0.047669567,-0.70869327,-0.5608764,-0.3574455,-0.7926998,-0.14459015,0.7722188,-0.4846821,-0.06302774,-0.34380156,-0.035687454,-0.0689535,0.18724276,0.20854871,0.23091015,0.27788776,-0.112806484,-0.23613892,-0.37402165,0.062782794,0.22884107,0.3053583,0.55481184,-0.24879692,0.20838448,0.47782707,0.775258,-0.12625955,0.76525205,0.20835258,-0.039660033,0.23038544,-0.3275239,-0.37079334,-0.57825416,-0.5158209,-0.38023093,-0.5688309,-0.31865564,-0.08991469,-0.40625307,-0.8932149,0.48697436,0.115731366,0.15494753,-0.12104392,0.23395255,0.2383085,-0.19290349,0.048404317,-0.22664595,-0.17812508,-0.4112258,-0.41388777,-0.47084224,-0.6773882,0.22470453,1.437245,-0.16411787,0.100313336,0.16482535,-0.26584002,0.119271114,0.059704103,0.06662148,0.15549962,0.39953694,-0.005067078,-0.51062834,0.42853943,-0.10701093,0.056089003,-0.4110524,0.32599148,0.644495,-0.5775103,0.5437038,0.369602,0.20125437,0.07324867,-0.53985196,-0.2541617,-0.025453985,-0.21901523,0.45479786,0.33337575,-0.4278507,0.49677783,0.13889672,-0.1961798,-0.81878704,0.049697995,0.01479893,-0.21143888,0.14175771,0.37496156,0.114756055,-0.067956164,-0.24613819,0.17926288,-0.5253259,0.23860179,0.21756554,-0.0016096991,0.41247764,-0.24075177,-0.51523566,-0.8012609,-0.060474195,-0.41991055,-0.4485616,-0.0807722,0.1820835,0.116868705,0.2180322,0.14503326,0.44636625,-0.3206708,0.175186,-0.21306388,-0.24874698,0.44473317,0.4514205,0.34970972,-0.48276404,0.4151819,7.13055e-05,0.09301718,-0.3380894,-0.02219627,0.5379025,0.21651967,0.23550683,-0.018753456,-0.17039435,0.09572768,0.60488904,-0.01731724,0.068236485,0.10002895,-0.42908823,0.20644471,0.21217245,0.10273127,0.016233059,-0.3239872,-0.117659144,-0.059103984,0.03393466,0.40260902,0.09705646,0.43629754,-0.05916065,-0.23173144,0.3435121,-0.02451982,-0.0420298,-1.2310035,0.3604032,0.035033043,0.69582236,0.62733585,-0.07965013,-0.14709854,0.5793691,-0.3053459,-0.006567995,0.2874215,-0.23102681,-0.2883697,0.44884026,-0.57071817,0.34660536,-0.18877012,-0.109042294,0.24203609,0.34548947,0.34501702,0.9047962,-0.09364472,0.07096478,-0.115216956,-0.16734146,0.11291114,-0.047336128,0.07783665,-0.56120586,-0.444936,0.80908877,0.20466627,0.30644006,-0.4127827,-0.07164713,0.09911658,-0.21155429,0.10205837,-0.18092695,-0.028658608,-0.007024889,-0.46169016,-0.14438623,0.5789811,0.078684755,0.045659903,0.13250247,-0.5119268,0.058174036,-0.21229032,-0.037430067,-0.059323218,-0.68971455,0.03591166,-0.42622897,-0.3435945,0.3630698,-0.38079813,0.22163394,0.17474288,0.20209083,-0.2612193,0.3352633,0.37516207,0.9533354,0.09577996,-0.11281061,-0.101223454,0.50747335,0.34507158,-0.41081128,0.15316471,-0.2804007,0.30279344,-0.7473291,0.44748023,0.025237756,-0.23755512,-0.032351397,-0.036523737,0.19781998,0.30309588,-0.40914005,-0.009922642,0.26264605,0.13375643,-0.29264086,-7.528296e-05,-0.40166393,0.18270478,-0.08533927,-0.17557001,-0.077113576,-0.12709834,-0.12841006,0.28779563,0.020476285,0.07055669,0.08990569,-0.18407337,-0.36314598,0.20383205,-0.017399788,0.29214928,0.16150005,-0.15156937,-0.33938548,-0.10912701,-0.46644053,0.3414211,-0.07130484,0.21477908,0.014513144,-0.35126173,0.8180966,0.3049878,1.3609579,0.081675574,-0.328032,0.12000383,0.64126587,0.039028488,0.05987595,-0.3658095,1.1068511,0.7148556,-0.25537667,-0.14317301,-0.3104665,-0.3954655,0.37621844,-0.43106237,-0.28956982,-0.02876329,-0.720925,-0.4674784,0.167281,0.14205192,0.038384635,-0.15286016,0.007276251,0.1288714,0.07155723,0.42545763,-0.499299,-0.07902153,0.1238488,0.2817546,0.24266252,0.3785567,-0.31264818,0.39814204,-0.9855777,0.3182171,-0.36514255,0.11640932,-0.23502873,-0.3346898,0.23411557,0.30575243,0.27220827,-0.40114468,-0.33936515,-0.31958663,0.75109255,0.044849474,0.21829937,0.8450013,-0.40026262,-0.06894263,0.13358828,0.3723163,1.3233432,0.06940881,0.08772295,0.3958947,-0.3797936,-0.5446104,0.1951603,-0.31720513,-0.08500131,-0.31506136,-0.46852005,-0.37727305,0.24900492,0.31825012,0.064826176,-0.028483527,-0.4952291,0.09800732,0.3350573,-0.24714848,-0.20197879,-0.21963295,0.19570233,0.62516606,-0.34557217,-0.71813244,0.079426914,0.18457681,-0.2557373,-0.7372046,-0.118117996,-0.2912486,0.57514745,0.18485291,-0.48089588,-0.1600822,0.10005946,-0.36416516,-0.022179522,0.32619315,-0.47994137,0.10241115,-0.39899084,0.01031601,1.0105474,0.30214673,0.4246485,-0.6326532,-0.4584542,-0.9173839,-0.5219911,0.13393356,0.13839418,-0.13854703,-0.6813042,-0.08440052,-0.15543967,0.042023018,0.14222899,-0.4583402,0.31804198,0.19393328,0.46130773,-0.15478942,-1.1947392,-0.019763457,0.30465555,-0.22381185,-0.42717463,0.44229332,-0.1905447,0.75949275,0.08218471,-0.09538034,0.27730888,-0.8172481,0.58752286,-0.42142776,-0.10415073,-0.5767798,0.08453059,604 -706,0.4205524,-0.1620592,-0.3067453,-0.15714,-0.1960001,0.065638475,0.118737474,0.6348384,0.3053904,-0.10352929,-0.11547171,-0.14175312,-0.10179516,0.057736747,-0.020510465,-0.46838638,-0.15799163,0.18622276,-0.40176985,0.55399525,-0.36355445,0.1368995,-0.24985419,0.46733108,0.1614587,0.30034104,-0.12584808,-0.06342907,-0.047831032,0.09148848,-0.07018915,0.2905485,-0.31091624,0.1781349,-0.11561061,-0.114643976,0.11140403,-0.27923182,-0.3331346,-0.63956654,0.25461432,-0.5766851,0.2650873,0.11892053,-0.1999104,0.07032031,-0.18274072,0.24273586,-0.32964408,-0.1911895,0.06324073,0.1832673,0.086985715,-0.1587517,-0.0697309,-0.2718838,-0.42775914,0.004024134,-0.1774402,0.012137592,-0.052578073,0.0711098,-0.22761336,-0.16065553,-0.0991934,0.4021916,-0.33242908,0.14545363,0.24856432,-0.012081639,-0.005147567,-0.51921594,-0.1600403,-0.1208905,0.15944156,-0.019745521,-0.2181328,0.26109993,0.24450256,0.31011412,-0.12395994,-0.13986836,-0.1275092,0.030714296,-0.043074526,0.42594498,-0.12483255,-0.40358716,-0.07170456,-0.025184264,-0.14424823,0.15053882,0.05548368,-0.26607218,-0.07220479,0.043656863,-0.1819708,0.10906684,0.35917643,-0.32094148,-0.27693236,0.38685006,0.610889,0.18941806,-0.12993574,-0.15718557,0.09168969,-0.43805137,-0.19131528,0.11407976,-0.26348346,0.52948064,-0.14447139,0.078534715,0.58434784,-0.09303735,0.009108697,0.06765757,0.28061005,-0.22451441,-0.36182868,-0.27795506,0.13574144,-0.3463419,0.10129956,-0.08823796,0.62271607,0.22750197,-0.5445502,0.26813605,-0.49671057,0.11261983,-0.117252536,0.3967566,0.76652247,0.29787996,0.25575662,0.5613108,-0.3058344,0.13006449,-0.045174405,-0.32593006,0.2768394,-0.12978947,-0.011920104,-0.49389675,-0.0053344048,0.09762184,-0.178669,0.012444661,-0.027042445,-0.50696087,-0.16744381,0.16609833,0.72772974,-0.21187069,-0.117986985,0.37525627,0.9423017,0.803902,0.05884191,1.0939981,0.17154764,-0.2759201,0.5378295,-0.3375653,-0.8229417,0.22467598,0.20548688,-0.45596346,0.22853844,0.14103734,-0.09107463,0.46212012,-0.40854615,0.14859556,-0.16188148,0.39660513,0.1419627,0.09914125,-0.31317595,-0.40976202,-0.1192934,-0.02496932,0.09104596,0.3370493,-0.21725552,0.06300516,0.05227629,1.8006343,0.16111836,0.039792504,0.122344084,0.5058,0.11133527,-0.18618383,-0.07242835,0.5339759,0.25635237,0.069058426,-0.51379544,0.17825614,-0.25479582,-0.40927458,-0.039998613,-0.23477626,-0.041708358,-0.06695961,-0.47056836,-0.18308581,-0.19365674,-0.11139126,0.53412294,-2.9691637,-0.0699929,-0.04785147,0.30246606,-0.37920687,-0.39509043,-0.16900595,-0.4599328,0.188813,0.3116135,0.4064883,-0.669331,0.19926207,0.19456665,-0.54124194,-0.13478325,-0.55296385,0.02001336,0.08952821,0.18587282,-0.023883043,0.13370939,-0.06747706,-0.04174119,0.21518442,0.104541555,0.08985,0.35125706,0.29829076,0.19228657,0.3023237,0.060789686,0.4360393,-0.2864688,-0.09889071,0.19167599,-0.5017275,0.46776894,-0.05869883,0.06645103,0.47845113,-0.31509298,-0.6138025,-0.4899411,-0.15346973,1.2300284,-0.2297313,-0.09259914,0.09698205,-0.6022858,-0.2820225,-0.16405913,0.42411458,-0.15839991,-0.3302088,-0.6929807,0.06691395,-0.09131886,0.33188802,-0.042180233,-0.032956563,-0.22428483,0.5626392,0.003457858,0.45732254,0.2790852,-0.0069817486,-0.15888357,-0.45680088,-0.03699119,0.4752952,0.26155722,0.13984129,-0.08206182,-0.052074358,-0.33860567,0.08321386,0.17042468,0.50169474,0.50908387,-0.114210874,0.082970634,0.3914438,0.052530866,-0.0663185,-0.09033457,-0.24248415,-0.1798701,-0.017075015,0.43789065,0.7751232,-0.3193113,0.24918792,-0.07382615,0.18974756,-0.26019108,-0.33948585,0.5586544,0.8414841,-0.15662505,-0.08050133,0.39420828,0.5970954,-0.28432205,0.2906511,-0.48757964,-0.09502686,0.39048225,-0.038293365,-0.25766176,0.07542213,-0.24257313,0.10948917,-0.7343717,0.14477122,-0.13232583,-0.27085,-0.7718035,-0.04085835,-2.5161016,0.0858679,-0.25807616,-0.16295911,-0.09045647,0.10881159,0.11073104,-0.6328611,-0.4787936,0.24330337,0.04127025,0.4625811,-0.064853385,0.055737957,-0.27344972,-0.30581492,-0.3450949,0.0035453576,0.20671114,0.31191066,-0.031406615,-0.4048839,-0.12112177,-0.08831707,-0.25669134,0.16881627,-0.6165443,-0.3400437,-0.057946406,-0.6479941,-0.17677997,0.63549745,-0.304725,-0.04037472,-0.12996583,-0.016193284,-0.12124798,0.2781837,0.10842114,-0.002299141,-0.005590416,-0.03441413,-0.15665007,-0.3372869,0.20232137,0.061566792,0.3642914,0.33059457,0.0122660035,0.18870357,0.4199556,0.5510385,-0.04117996,0.6620362,0.5488043,-0.121309,0.28032297,-0.19916616,-0.074305795,-0.24771173,-0.19860345,-0.1323505,-0.33196086,-0.38588732,0.13879351,-0.36259195,-0.641949,0.29576433,-0.07311321,0.036236487,0.21244206,0.047454424,0.6703529,-0.22160824,0.13596615,-0.025546538,-0.08022492,-0.5403259,-0.40941033,-0.4602969,-0.25394934,0.46975854,0.99344724,-0.30968225,0.027281253,0.076445416,-0.37400597,-0.074215375,0.13301545,-0.18553363,0.13516204,0.40546462,-0.117301,-0.5101422,0.35644156,-0.00093877316,-0.10981847,-0.49974662,0.13041429,0.49752668,-0.71091115,0.61119115,0.16814543,0.023573866,-0.1134216,-0.4373161,-0.3422376,-0.07363665,-0.18735678,0.28218552,0.28063327,-0.6417977,0.1917155,0.23612301,-0.14840849,-0.693239,0.45808107,-0.1303935,-0.31540602,-0.24387547,0.39597446,0.14277314,0.049688358,-0.10665745,0.14727966,-0.3419089,-0.087000355,0.30926323,-0.17862104,0.25546154,-0.17740948,0.13473429,-0.66253364,0.17196442,-0.41241074,-0.38527334,0.40147093,0.06825076,0.15606946,0.112411976,0.37989646,0.17280786,-0.17173617,0.023066796,0.16028643,-0.17678395,0.22469077,0.2818322,0.47720036,-0.431555,0.37508473,-0.012646205,0.17235373,0.0074301222,0.06818343,0.29178917,0.098159164,0.34845835,0.059786692,-0.22127606,0.24705337,0.7811137,0.06083731,0.37071684,-0.010012746,-0.027956787,0.23041138,-0.08926422,0.14751028,0.04154056,-0.56123227,0.04599974,-0.0969183,0.22637598,0.2772621,0.10580476,0.1830459,-0.08415369,-0.24967183,0.016736325,0.26333812,0.02797511,-1.0635939,0.29038608,0.24036404,0.77603424,0.3746916,-0.01586748,-0.08649623,0.5804729,-0.05631192,0.22115663,0.37864038,-0.22454967,-0.49350306,0.50672793,-0.60297257,0.44926578,0.0080641275,-0.049217883,-0.049734704,-0.048341148,0.28606427,0.6448523,-0.19296142,-0.15241441,0.010874276,-0.36756495,0.026404368,-0.2647765,0.21096182,-0.70593864,-0.2113053,0.45847505,0.53064084,0.25091666,-0.28638607,0.031573355,0.02656098,-0.10317132,0.18146235,-0.036879677,0.11106137,0.19163392,-0.7027772,-0.23235832,0.4855798,-0.3193454,0.12664312,-0.066045746,-0.110598914,0.23530719,-0.28356785,-0.017713616,-0.09103069,-0.66892445,0.121266,-0.13104233,-0.36357206,0.56757677,0.0026832544,0.2269377,0.20538047,0.10288632,-0.35454977,0.5165323,-0.06724961,0.8445091,-0.2005721,-0.062755436,-0.54581827,0.21826942,0.07795221,0.0007741646,-0.053589646,-0.37189645,0.035190836,-0.34825808,0.44261348,0.18440358,-0.19859324,-0.24210908,-0.21685992,0.05214949,0.54294074,-0.048068915,-0.19996516,-0.39912364,-0.22975883,-0.29954073,-0.099057235,-0.040305886,0.3218754,0.3086309,0.088750206,-0.08396717,-0.15618752,-0.18551543,0.32268107,0.14355117,0.2489906,0.33021578,-0.0886209,-0.12473763,-0.16205311,0.1330377,0.38472784,-0.04859772,-0.19182286,-0.30123645,-0.29058668,-0.34369597,0.28525627,-0.13236232,0.5220868,0.07176378,-0.09330202,0.57277024,-0.036149897,1.0451666,-0.01069494,-0.25823268,-0.056156296,0.54190344,0.06959781,-0.08390646,-0.42686048,0.7601656,0.41009504,-0.13736889,-0.17965704,-0.20820959,-0.14533171,0.27187532,-0.060443383,0.032371916,0.0039364924,-0.5876324,-0.09573931,0.08299582,0.19599177,0.19767635,0.05041937,-0.09248565,0.120356135,0.0019765818,0.21940175,-0.29753652,-0.14846097,0.19878265,0.24344946,0.16098548,0.32478854,-0.32536218,0.35477498,-0.43897453,0.14439148,-0.23943523,0.22027877,-0.30813742,-0.29799256,0.07662745,-0.009027784,0.34754992,-0.42393002,-0.4002387,-0.41150087,0.5293536,0.25514826,0.14456047,0.4789802,-0.18608175,-0.11761438,0.047612447,0.5077276,0.69688886,-0.12752904,-0.09665024,0.324153,-0.3237416,-0.6669374,0.363063,-0.1408423,0.23707643,0.098504,-0.034165468,-0.5677706,0.3262264,0.16332382,0.11879898,0.047093272,-0.6171472,-0.10686212,0.17329264,-0.21448271,-0.10755502,-0.24470097,0.12946948,0.75234276,-0.17826647,-0.30708873,0.019711448,0.20810717,-0.11797381,-0.31583077,0.030913262,-0.6856485,0.19408692,0.050004106,-0.26754493,-0.31813926,0.012815897,-0.35743573,0.26218864,0.06237108,-0.31818473,0.1422488,-0.14129266,-0.047607813,0.9193706,-0.009721314,0.18388823,-0.39997685,-0.42923898,-0.6127296,-0.48764846,0.370787,0.097751185,-0.09080239,-0.50352347,0.02257676,-0.01083854,-0.17623264,-0.15242909,-0.30321392,0.4865827,0.20143825,0.1416829,0.025797576,-0.8586323,0.053531118,0.07960778,-0.19779566,-0.51631933,0.33854356,-0.19244501,0.8423773,-0.039835665,0.06318889,0.18473631,-0.242475,-0.114041254,-0.2100198,-0.13053015,-0.54711574,0.09198086,606 -707,0.39145285,-0.21813066,-0.47650173,0.0025174986,0.15215217,0.09752135,-0.07173398,0.47080785,0.22729169,-0.4599621,-0.062143855,-0.32216915,0.036671855,0.43057644,-0.19253254,-0.3230336,0.04205855,-0.021973848,-0.39991018,0.40330407,-0.45893717,0.19924678,0.05663868,0.3949569,0.16034736,0.3233463,0.22795394,-0.17462625,-0.14916536,-0.27404034,0.04118413,0.07472832,-0.33691514,0.37762007,-0.09069061,-0.14493324,0.21410912,-0.41069746,-0.52626795,-0.66553026,0.25872582,-0.64522165,0.1772685,0.14674315,-0.11884297,0.056179818,0.04022093,0.17950581,-0.32813746,-0.21319373,0.15144752,0.061412178,0.026504664,-0.19487652,-0.05007251,-0.10889594,-0.3879049,0.07392621,-0.33895397,-0.194807,-0.21030356,0.14418305,-0.29867423,0.03650572,-0.13991138,0.479002,-0.3823476,0.040772017,0.06872116,-0.38217852,0.2293063,-0.5279951,-0.43431303,-0.060389068,0.1372054,0.008799881,-0.11353293,0.20739841,0.15437078,0.32576373,-0.034509327,0.14450066,-0.26397592,-0.31998587,0.36079195,0.4830808,-0.050714713,-0.56430733,-0.053717878,-0.11891627,0.06151486,0.0778225,0.20907417,-0.5067546,-0.15376468,-0.06838889,-0.34331954,0.19224915,0.5678208,-0.2760811,-0.14732678,0.19981398,0.31727824,0.16382948,-0.11260009,-0.14175364,-0.012209437,-0.450789,-0.14385563,0.003076567,-0.10213229,0.47195113,-0.07986982,0.42411754,0.6218213,-0.21738425,-0.0037643635,0.040946312,0.09416739,-0.19490239,-0.33060673,-0.11501341,-0.039851125,-0.22077097,0.0030586927,-0.18918365,0.9250384,0.27589658,-0.5677492,0.49767017,-0.42247164,0.14585426,0.01704027,0.6030757,0.42581046,0.23730366,0.39579093,0.629819,-0.4435785,0.050387915,-0.14602467,-0.36993524,-0.059029076,-0.07322097,0.16609089,-0.2547119,-0.04624451,0.22936326,-0.14740148,0.013887816,0.3482134,-0.3291167,0.0067256186,0.18576226,0.8063328,-0.2170901,0.0957427,0.54816157,0.9388968,0.8670619,0.1100368,1.1527009,0.04204674,-0.37219912,0.13733242,-0.2005015,-0.8955588,0.33946127,0.38275564,0.57917404,-0.053940687,0.13087437,-0.11879889,0.3278626,-0.46899077,0.1931127,-0.09418957,0.53814375,0.19327945,0.053339563,-0.28499582,-0.38052306,-0.1704461,-0.1362481,-0.006441639,0.14860997,-0.15140411,0.26947695,0.038394697,1.8811809,-0.17020294,0.16739652,0.19736488,0.56189144,0.124801144,-0.12491496,-0.06348653,0.4530688,0.18644848,0.03702482,-0.5954818,0.19334868,-0.1517395,-0.5003856,-0.056420386,-0.29294887,-0.14048265,0.08171614,-0.23357725,-0.15594536,-0.13236138,-0.34414726,0.35079002,-2.9158733,-0.2534158,-0.051261894,0.32298422,-0.27880353,-0.18699512,-0.09590356,-0.47358888,0.41199324,0.3687682,0.52431417,-0.72652113,0.08988368,0.459507,-0.27523878,-0.26110822,-0.548634,0.08492216,0.024021883,0.2692517,-0.0011430887,0.039168928,-0.27665088,-0.04637549,0.22328351,0.011746028,0.06629369,0.31205165,0.23928033,0.069614284,0.44961944,0.0347588,0.41196358,-0.35801667,0.044749543,0.31561285,-0.425491,0.29964516,0.004878693,0.118245676,0.36234173,-0.452487,-0.5406474,-0.4942481,-0.35223883,1.2548999,-0.2360265,-0.48895285,0.37962535,-0.36547723,-0.31132507,-0.27009863,0.4795157,-0.10118936,-0.10884265,-0.7766828,0.08712174,-0.16381058,0.35221392,-0.04492239,-0.114050336,-0.3143139,0.67819256,-0.07235889,0.5349141,0.3666979,0.0020649363,-0.32227919,-0.3405918,0.057383418,0.84884495,0.2989798,0.09673422,-0.06893931,-0.14576952,-0.24259117,-0.2736964,0.073568776,0.5445429,0.63524354,-0.0025602807,0.17802572,0.3244434,-0.056140907,-0.02630441,-0.06847758,-0.24413157,-0.17017816,-0.07779138,0.6557447,0.6496302,-0.23289442,0.31806943,-0.15498734,0.30445167,-0.112710424,-0.31734127,0.42738375,0.41795382,-0.114493534,-0.17702524,0.424191,0.38710743,-0.4297528,0.2565389,-0.4324045,-0.30693105,0.48173,-0.099731125,-0.4003021,0.3806814,-0.29889053,0.17687438,-0.87125814,0.28097066,-0.3106095,-0.41247156,-0.47918144,-0.16419147,-3.0796645,-0.016022168,-0.19957222,-0.2710546,-0.0726108,-0.008882882,0.037651993,-0.38989368,-0.47771567,0.090541765,0.09698307,0.4442924,-0.104851194,0.017295433,-0.116403386,-0.25269228,-0.42782655,-0.047024947,-0.060618557,0.42435122,-0.016600784,-0.37993607,-0.010442393,-0.16439143,-0.25653908,0.24634908,-0.44632837,-0.56089115,-0.04477292,-0.37322256,-0.51491636,0.59317845,-0.24723743,-0.04891102,-0.088048235,-0.08177516,-0.30106094,0.30714878,0.14146924,0.085353054,-0.10271395,-0.032843538,-0.21796623,-0.25035793,0.19815603,-0.045828912,0.30574635,0.37876275,-0.053534415,0.15269186,0.2873915,0.5481732,-0.034698837,0.6329311,0.26580015,-0.03492379,0.29677418,-0.3563175,-0.29244852,-0.3028056,-0.101358645,0.2688988,-0.33264357,-0.50569236,-0.10972068,-0.2533918,-0.49846223,0.41893637,0.13490807,-0.11011732,0.12999447,0.071380936,0.50437456,0.18261495,-0.041730028,0.13072923,-0.02659583,-0.77112234,-0.40487385,-0.7927611,-0.37501717,0.3270406,0.76866746,-0.23824467,-0.14457512,0.048562884,-0.43174362,0.019428972,0.062233474,0.015239805,0.14922997,0.42696598,-0.081468835,-0.58474976,0.53117925,-0.12120985,-0.26428267,-0.4550164,0.16932242,0.6889184,-0.73101354,0.5470432,0.13223389,0.20404895,-0.0950695,-0.2804887,-0.27029335,-0.13327655,-0.2032838,0.27685526,0.12883335,-0.5882453,0.39033735,0.35571772,-0.08143974,-0.7489234,0.24081549,-0.047494035,-0.28613696,0.043412667,0.36195886,0.03957941,0.08954319,-0.09985896,0.18685979,-0.38146874,0.26878172,0.33258608,-0.1688887,0.4597705,-0.21566495,-0.14299099,-0.5301559,-0.076232985,-0.4695142,-0.29578573,0.2977572,0.22036386,-0.035335906,0.02696531,0.118363634,0.39696726,-0.18718778,0.057743624,0.023319472,-0.020943156,0.3022545,0.34459612,0.5507299,-0.41643584,0.5928116,-0.039118055,0.008279802,-0.03331832,0.055198446,0.18948695,0.25351685,0.28798166,-0.099615015,-0.28465268,0.28952596,0.84487164,0.20502919,0.48380074,0.08117839,-0.015039123,0.379025,0.113246195,0.16085984,0.07296197,-0.5071213,-0.02280068,-0.17313583,0.25354224,0.32449192,0.23903894,0.38013744,-0.08401803,-0.37660334,0.020621192,0.34607512,-0.07196079,-0.87988937,0.4165818,-0.0013558039,0.6941539,0.61416173,-0.13622645,0.12649514,0.67372763,0.03416627,0.14235121,0.057137366,-0.05318654,-0.59865546,0.5814896,-0.55674326,0.45979106,-0.12779592,-0.011804732,0.050339878,-0.04943445,0.4075356,0.62740827,-0.1510365,-0.07779474,0.12642597,-0.21300608,0.022125725,-0.5259213,-0.03218887,-0.59374964,-0.40674365,0.36204705,0.46863806,0.22520535,-0.1851298,0.10485571,-0.02369055,-0.07967914,0.22472389,-0.12900434,0.11249856,-0.071353994,-0.79598373,-0.24632007,0.5826943,-0.020180285,0.20505309,0.027407307,-0.28889793,0.29556605,-0.094939485,-0.011436572,-0.12128579,-0.48257595,0.06316248,-0.23022017,-0.45131907,0.20177555,-0.039527223,0.4024722,0.25561708,0.020614633,-0.21726483,0.38390842,0.10423791,0.79713947,-0.19836149,-0.2168315,-0.4449329,0.030934265,0.13999914,-0.1769135,-0.05636773,-0.22447623,-0.14572114,-0.51046467,0.5623233,0.1560116,-0.017187906,0.05196563,-0.23017432,-0.09369279,0.60761344,-0.14486924,-0.04845095,-0.17844321,-0.15082887,-0.14500394,-0.081908785,-0.053811606,0.17085226,0.3628472,0.028326131,-0.012220942,-0.15270191,0.0025697579,0.20947662,0.056123503,0.24681844,0.28913382,0.10204098,-0.37252814,-0.15320419,0.056213554,0.43835053,0.23260242,-0.07779924,-0.14595367,-0.5076343,-0.30171213,0.29825544,-0.164924,0.3289429,0.1468939,-0.4058723,0.5964636,0.09089314,0.96690273,0.049024608,-0.08363542,0.15185556,0.4682079,-0.03887135,0.066545114,-0.37848103,0.7765033,0.4544547,-0.19043352,-0.16491748,-0.30615076,-0.030180344,0.13508366,-0.15356845,-0.06524752,-0.06491485,-0.50159985,-0.20759334,0.017737687,0.24688278,0.15310396,-0.11252535,-0.043980792,0.2145551,0.058710776,0.33756006,-0.36092183,-0.25677273,0.25128314,0.13626918,0.050788563,-0.012278814,-0.42745063,0.5467633,-0.56569135,0.19951919,-0.17935053,0.1013434,-0.09069916,-0.25807276,0.14708431,-0.06513761,0.36918932,-0.48442173,-0.38281283,-0.37320423,0.41310963,0.24607341,0.22242682,0.5329387,-0.10412554,-0.091489516,0.16591732,0.63393825,1.123995,-0.14362134,-0.05767582,0.38428178,-0.2795862,-0.5426896,0.2995915,-0.20509744,0.1370485,0.020734727,-0.19851948,-0.66388357,0.25207308,0.30910012,-0.05486061,-0.012524871,-0.5788106,-0.36955553,0.25315574,-0.4743582,-0.23402461,-0.56810385,-0.16051014,0.6256255,-0.3011449,-0.1200566,0.19111457,0.16165155,-0.42122012,-0.53427,-0.12392323,-0.42545822,0.3714334,0.023262732,-0.24464296,-0.36230367,0.16554826,-0.33687797,0.081858024,-0.15448584,-0.34646904,0.047422472,-0.2990915,-0.18468414,0.90812963,-0.18282866,0.16145553,-0.5041593,-0.4225075,-0.68632114,-0.36211586,0.7296412,-0.21053864,0.00691805,-0.40834618,-0.1254107,0.024023,0.034197196,-0.10611624,-0.28206697,0.46917862,0.078009754,0.32036883,-0.028514963,-0.7619054,0.26054317,0.07153439,-0.1176288,-0.52155626,0.5863864,0.0058124615,0.554979,0.091408335,-0.10431673,0.38011187,-0.47447363,0.05330475,-0.1896469,-0.30033937,-0.59022415,0.2705023,611 -708,0.57804865,-0.02166098,-0.4973394,-0.21916151,-0.29274577,0.30948955,-0.25735548,0.031367052,0.06434954,-0.53575003,-0.13006409,-0.2919039,-0.02008268,0.14791118,-0.13886085,-0.7080206,0.043108933,0.038501836,-0.43774968,0.25470307,-0.55787766,0.52994525,0.221002,0.19239591,0.026358124,0.2421194,0.28725135,-0.28828904,-0.31280357,-0.050188277,-0.22194752,-0.11533948,-0.94935644,0.29961938,-0.012839286,-0.3584824,0.23101804,-0.308399,-0.2527083,-0.55803835,0.23681362,-0.7884163,0.4185947,-0.03146886,-0.16813087,0.11874333,-0.15628433,0.31617075,-0.24254018,0.3856516,0.32011715,-0.24921052,-0.00904642,-0.30787408,-0.24097922,-0.75138545,-0.4636274,0.01830545,-0.5721458,-0.27661502,-0.42803782,0.2672454,-0.2339696,-0.008407684,-0.2733403,0.2552422,-0.3030682,-0.07623216,0.13244642,-0.21853183,0.14323834,-0.3459807,-0.10368944,-0.100377284,0.2507866,-0.22827218,-0.0048253993,0.16197155,0.30875334,0.43495867,0.033619154,-0.19454795,-0.09905476,0.033480413,0.038294103,0.5908478,-0.009866129,-0.32184702,-0.14481695,-0.094479054,0.15584111,0.03495758,0.13171507,-0.3918184,0.046304226,0.14204189,-0.28077757,0.40759844,0.5053865,-0.46438295,-0.10479854,0.3912377,0.3010201,-0.16991946,-0.054808017,0.11998542,-0.049508672,-0.3591592,-0.119498864,0.43760717,-0.039244868,0.5774812,-0.1486703,0.24056993,0.6892113,-0.2771415,0.008322496,0.013806779,-0.2024716,0.04585431,-0.07274319,-0.073781475,0.26217845,-0.56828797,-0.06596711,-0.39209315,1.0053344,0.20035678,-0.761181,0.4492398,-0.35252172,0.0601622,-0.03990929,0.5794484,0.4311514,0.565064,0.058481354,0.75454646,-0.84930104,0.06409201,-0.08813123,-0.48276997,0.053758834,-0.11617332,0.13039611,-0.2074735,-0.08004559,-0.11643105,0.024402665,-0.16670784,0.2763682,-0.26662126,0.078953534,0.17096183,0.69615597,-0.51733816,-0.08795697,0.6488966,1.027189,0.8815418,0.23189847,1.1476381,0.42476505,-0.22099446,0.00050521357,-0.2927453,-0.505736,0.24076787,0.40567,0.49651954,0.09721804,0.21888366,0.22641101,0.21905246,-0.23983653,0.16502398,-0.033312853,0.10270095,-0.05270227,0.005220065,-0.4192885,-0.1925415,0.10205936,0.08160358,-0.060738273,0.15263966,-0.15771511,0.35754442,0.18004632,1.3654977,0.07535674,-0.012800892,-0.011927467,0.47970882,0.094413824,-0.0863953,-0.03659419,0.20386678,0.25916794,-0.030080281,-0.5106362,-0.1218336,-0.21646476,-0.5279192,-0.2895222,-0.1979548,-0.017129362,-0.08246132,-0.44735494,-0.22537008,0.35043672,-0.3076697,0.50723386,-2.1675825,-0.18273273,-0.124037184,0.34032837,-0.38762537,-0.42602813,-0.041327894,-0.49009365,0.26675227,0.40388787,0.27455986,-0.67127365,0.47809073,0.20601171,-0.07150194,-0.21870813,-0.7156584,0.17601167,-0.24992622,0.22365674,-0.0077850106,-0.20153578,-0.36288568,0.12570944,0.6462081,-0.120708875,-0.0962776,0.09839822,0.41652364,0.1943286,0.6580439,0.31467533,0.4524647,-0.22338265,0.08659725,0.22723722,-0.36754262,0.13775972,0.20694907,0.22556254,0.206174,-0.65526104,-0.7027589,-0.78777504,-0.49709442,1.2141165,-0.37639925,-0.32997975,0.24719056,0.15970618,-0.22409171,-0.07538562,0.33439907,-0.042123042,0.09047783,-0.5964775,-0.10961814,-0.0147996545,0.26969567,0.008836541,0.018884636,-0.3197438,0.81204796,-0.25123838,0.4069538,0.37782845,0.11847932,0.07057314,-0.41700336,0.14902839,1.1313415,0.23892373,0.12865953,-0.28969973,-0.17835464,-0.25292683,-0.055120684,0.1361272,0.3900077,0.85261333,0.017849358,-0.121504016,0.44896406,-0.15868782,0.044911638,0.020655565,-0.4987164,-0.05568053,-0.11775964,0.66055334,0.51452184,-0.086282805,0.43237787,-0.37302038,0.23566201,-0.13243887,-0.23285645,0.42125127,0.7516925,-0.12816261,-0.1343028,0.41753393,0.470875,-0.34936026,0.33603674,-0.5464475,-0.46583384,0.53736186,-0.105397,-0.40902206,0.16186,-0.41415834,0.11889125,-0.9089706,0.48277557,-0.11690191,-0.575302,-0.29076964,-0.19437984,-3.420521,0.069047645,-0.13183492,-0.010401492,0.10727955,-0.30654418,0.232365,-0.5294677,-0.35649014,0.08762255,-0.020748597,0.5267161,0.16403161,0.25844002,-0.31737247,-0.1435201,-0.34933758,0.3214541,0.21638666,0.072524816,0.1635589,-0.29105234,0.23873076,-0.44693822,-0.31105882,0.07638343,-0.6539399,-0.56885946,-0.16771275,-0.55938333,-0.5451227,0.7660703,-0.540008,0.066565126,-0.14079206,-0.10989033,-0.28712502,0.41493285,0.19452861,0.096869946,-0.041062906,0.007550645,-0.21700999,-0.42562756,0.23445958,0.18511294,0.40429708,0.34087053,-0.07444111,-0.031197878,0.6268475,0.56254184,0.15924677,0.7120236,0.1587987,-0.15564848,0.25118378,-0.33175197,-0.29692668,-0.67612046,-0.39429995,-0.17489935,-0.3506816,-0.32990438,-0.00015089833,-0.3256229,-0.6609968,0.36380944,-0.009926755,-0.017681304,0.041380797,0.32319686,0.28577197,-0.15062013,0.013556146,-0.14241108,-0.0725966,-0.50166184,-0.539154,-0.6011083,-0.5859804,0.18635812,0.9567401,0.12127583,-0.30187747,0.042878468,-0.20444971,0.2004913,-0.042292066,0.16894668,0.12547877,0.548541,-0.1697088,-0.76438725,0.32952517,-0.1581466,0.03765224,-0.42134795,0.07049645,0.7978007,-0.76731455,0.4369918,0.37780204,0.22330707,0.072193064,-0.31745118,-0.3681423,-0.00436759,-0.34052217,0.34943184,-0.06582758,-0.7206749,0.4034142,0.2891145,-0.17279315,-0.51513606,0.5385897,0.078341395,-0.2455931,0.20346189,0.3743006,0.015546464,-0.17229909,-0.33055526,0.03356256,-0.6489563,0.22902766,0.5226293,0.17378251,0.26429722,-0.08058326,-0.2884114,-0.5194321,-0.20111267,-0.38811415,-0.41749424,0.07386105,0.16981576,0.077308446,0.24866651,0.20173147,0.3811779,-0.44521868,0.053038258,-0.20084634,-0.20669556,0.4759124,0.3110587,0.33278942,-0.5188358,0.6301933,0.018647524,0.14931029,-0.25728187,0.068491615,0.3579076,0.34540653,0.08498742,0.10250997,-0.15373431,0.13222615,0.670337,0.36037716,0.59026444,0.3870106,-0.21627103,0.40401953,0.29177397,0.0852084,0.08161455,-0.25872505,0.005511417,0.015608893,0.044673808,0.27752793,0.0019961423,0.23907915,-0.24902967,-0.08698216,0.20077361,0.045211334,-0.1961352,-0.71157813,0.29537457,0.19226232,0.3979689,0.3928801,-0.021627674,0.13194858,0.5040148,-0.36474594,0.03526468,0.061625168,-0.015065134,-0.332212,0.46821243,-0.52149326,0.35945857,-0.19775167,-0.0063615395,0.05135462,0.093404815,0.21559323,0.92001414,-0.13006549,0.113131136,-0.21299158,-0.17211086,-0.06868993,-0.41563207,0.26145986,-0.47429058,-0.2948877,0.7404398,0.25114977,0.26726437,-0.20897388,-0.0069026053,-0.023118895,-0.22804871,0.25524554,0.0050125537,-0.1948344,0.18715975,-0.7425009,-0.36807588,0.55937445,-0.028460823,-0.040972475,0.24862193,-0.30712938,0.432787,-0.21298034,-0.039818663,0.04377228,-0.4770486,0.01691982,-0.43444377,-0.43381703,-0.015514846,-0.13456811,0.33769542,0.08328238,0.041923173,-0.2174406,0.23818438,0.41573393,0.61817265,0.1384235,-0.30513936,-0.49164146,-0.1385244,0.273589,-0.3259186,0.12414006,-0.32939398,0.058346827,-0.6363458,0.38747042,-0.17525527,-0.081914775,0.06811977,-0.090745285,-0.045518342,0.5052184,-0.18840748,0.030326117,0.41444716,0.32229334,-0.06618599,-0.045307443,-0.3520495,0.078618854,0.05382728,-0.17901398,0.08473844,-0.19916914,0.013885129,0.3286545,0.21581925,0.19863194,0.10861368,-0.07553038,-0.30364048,-0.04102542,-0.19081476,0.36106154,0.2442953,-0.10259463,-0.29390994,-0.3192088,-0.061355665,0.2105841,-0.062157713,0.04609,0.07192281,-0.37452894,0.87092555,0.0046781027,1.2209681,0.11275777,-0.2986958,-0.045724623,0.4585044,-0.040600397,0.15495297,-0.5116862,1.084032,0.5495425,-0.111187935,-0.17604023,-0.3563142,-0.4094733,0.109303236,-0.19517139,-0.22359373,-0.077431366,-0.65337586,-0.25954518,0.13560419,0.2524416,0.067650676,0.20143539,0.1772601,0.19655949,0.09841653,0.50312275,-0.4553884,-0.07664284,0.13370822,0.08179597,-0.008535298,0.17749691,-0.2989023,0.45348355,-0.7955589,0.19595687,-0.41603518,-0.13031594,0.14123051,-0.28651237,0.20953366,0.16359687,0.41208172,-0.381136,-0.30024534,-0.24412066,0.6746942,0.14429428,0.4598958,0.6948796,-0.14798602,-0.07657941,0.1288914,0.48299152,1.2475317,-0.010947127,0.087718755,0.38791215,-0.44330108,-0.49867028,0.19310676,-0.1334648,0.07527004,-0.027423063,-0.45445538,-0.36242485,0.2595724,0.10068708,-0.10941814,0.18603677,-0.5039551,-0.22875999,0.5189135,-0.4134685,-0.4180121,-0.16887045,0.50272393,0.6223809,-0.43383443,-0.19757281,-0.03993305,0.34532684,-0.3551529,-0.37913397,-0.02991612,-0.36561716,0.38468316,0.15896177,-0.3559136,-0.12722181,0.27490136,-0.34386352,0.08368877,0.4394166,-0.45161188,-0.08210524,-0.27310437,-0.10040482,0.85662884,0.20700496,-0.04907706,-0.7614137,-0.40413687,-0.95975524,-0.5404118,0.35483316,0.29086515,0.047932107,-0.34103024,-0.119599395,0.01667413,0.03030203,0.09580176,-0.65297675,0.33379662,0.17452732,0.6069648,-0.07347587,-0.9808985,0.0030546372,0.1797426,-0.28623673,-0.58801025,0.48471212,-0.17193666,0.7787026,-0.101738654,0.111427225,0.16233693,-0.613716,0.27371818,-0.3839977,-0.05083189,-0.70675635,0.05524122,615 -709,0.51793617,-0.28434104,-0.5135078,-0.080555014,-0.24590334,-0.06622071,-0.13703953,0.55713,0.30296624,-0.29213244,-0.2107996,-0.22317266,0.10787232,0.2925939,-0.27040407,-0.62878907,-0.040389195,0.12695192,-0.46913987,0.5793421,-0.4225272,0.11152739,-0.0047320127,0.42183435,0.45510688,0.19221218,0.08446552,0.14348851,-0.26897207,-0.12450163,-0.13006131,0.33423248,-0.4126975,0.004810003,-0.3249845,-0.45809525,-0.16374573,-0.5911602,-0.32308966,-0.6945441,0.46751425,-0.8233627,0.40914166,0.17358582,-0.18400033,0.30290696,0.19262455,0.049991388,-0.2710013,-0.117230855,0.077681035,-0.10040136,0.1541639,-0.19696802,-0.19566998,-0.2376124,-0.7229918,-0.077045314,-0.53937346,-0.18118477,-0.21515451,0.013623609,-0.23523544,-0.02913203,-0.0076559004,0.75970924,-0.36105886,0.11827225,0.07574379,-0.14749192,0.088413715,-0.58980334,-0.33725753,-0.06882291,0.18758294,-0.093139805,-0.24516559,0.2171974,0.18232116,0.3450249,-0.23514105,-0.075091355,-0.58247733,-0.004817344,0.15273754,0.36830312,-0.09594439,-0.7498567,-0.15995063,-0.103065126,-0.025144044,0.20150656,0.1991382,-0.12862678,0.001425977,-0.01826067,-0.10172618,0.52027667,0.43684122,-0.38013193,-0.1985042,0.23154125,0.31923044,0.29604957,-0.15934607,-0.24128716,0.13677898,-0.632159,-0.096164465,0.013174562,-0.23956755,0.6820211,-0.067211024,0.35782704,0.46038407,-0.17944847,0.011184447,0.121889405,0.029008707,-0.11630356,-0.41244966,-0.28758863,0.2534532,-0.3355748,0.10657963,-0.15048088,0.734217,0.1308571,-0.7156529,0.3536042,-0.60053116,0.15404925,-0.009724534,0.3525998,0.69830555,0.35639292,0.43918937,0.60652155,-0.23136145,0.024027701,-0.17793117,-0.29832068,0.077260055,-0.1693136,0.06165842,-0.5337692,-0.13592972,-0.04551833,-0.0014231297,0.28908288,0.8014397,-0.45156989,-0.19344558,0.17358382,0.80658555,-0.16546543,-0.08970957,0.7904933,1.144275,0.96131635,0.042974796,1.0601156,-0.04808289,-0.19856013,0.3599313,-0.22268721,-0.6444841,0.25517514,0.15818392,0.013356814,0.20998254,-0.047401674,-0.019082628,0.33816844,-0.33823088,0.08898326,0.0024291254,-0.0057319817,0.33251423,-0.05052072,-0.3793511,-0.32316494,-0.2375814,0.10662282,0.21846558,0.3373174,-0.35153726,0.26831594,-0.14128527,1.6770134,-0.06906669,0.010996127,0.08212737,0.5808341,0.31795007,-0.11282202,-0.16507879,0.36316505,0.14889622,0.25641426,-0.59749895,0.20986702,-0.23096387,-0.42371795,-0.0019947565,-0.5024205,-0.3170842,-0.039093316,-0.51325613,-0.14640592,-0.08320747,-0.4472626,0.336201,-2.8634367,-0.11920417,0.092568636,0.42146996,-0.1548659,-0.41111177,-0.2621886,-0.40920463,0.4672422,0.30457112,0.3853933,-0.64185005,0.2525688,0.5445822,-0.5660314,-0.15162174,-0.47087017,-0.010933912,-0.03480675,0.40991357,-0.07595208,-0.029576324,0.20790586,0.36206546,0.58499324,0.14921817,0.2064186,0.26250225,0.43191686,-0.2648005,0.55762374,-0.21428563,0.39905664,-0.418896,-0.18151698,0.1906469,-0.46550295,0.2345449,-0.2598599,0.1656928,0.5688876,-0.4812639,-1.1318395,-0.5354097,0.14360288,0.97119373,-0.12618111,-0.34950966,0.33399242,-0.6656475,-0.31885755,-0.10967203,0.72116214,-0.14991686,0.027191928,-0.7389141,0.011744408,-0.12643151,0.09774384,0.07328352,0.05260207,-0.4117081,0.6943088,0.13268529,0.6262459,0.20009534,0.082480304,-0.49052402,-0.39490616,0.14094089,0.76374584,0.17661184,0.15851879,-0.20024714,-0.10456019,-0.22712047,0.039325934,0.11222898,0.66960686,0.43304765,0.007656236,0.24349743,0.2863559,0.1117464,0.0012751336,-0.14897448,-0.11742701,-0.13375814,-0.02813188,0.5299674,0.8152017,-0.20364478,0.3063958,0.06528633,0.24898288,-0.32346886,-0.35020024,0.5825245,1.2082387,-0.08984179,-0.27038172,0.56777865,0.5840017,-0.2655612,0.35223204,-0.43810984,-0.37038124,0.4319792,-0.19949624,-0.38329557,0.22778219,-0.39221162,-0.044896867,-0.68419003,0.07226806,-0.1457544,-0.25506642,-0.6713892,-0.25713706,-3.2337236,0.116038375,-0.18647856,-0.3334449,-0.2771725,-0.2458269,0.018452616,-0.7521302,-0.6761923,0.10826238,0.11574536,0.7573563,-0.25911948,0.15078494,-0.23974885,-0.49402273,-0.109381914,0.2885485,-0.02613252,0.49027875,0.034896806,-0.3639159,-0.051304635,-0.0482472,-0.46800348,0.028202537,-0.4087626,-0.26893175,0.042157643,-0.5043798,-0.33732015,0.7135464,-0.41050264,0.017553035,-0.15612325,-0.094058916,-0.045377966,0.32598197,0.13640265,0.25917473,0.08675497,-0.04597818,0.07522411,-0.13538584,0.12590282,-0.03297703,0.3783902,0.5567616,-0.03295306,0.24576375,0.47429526,0.6148313,-0.14188446,1.0924718,0.4489764,0.024964813,0.16370355,-0.1849241,-0.23205963,-0.62101406,-0.19488178,-0.021443954,-0.37213284,-0.44219616,-0.043325808,-0.35436615,-0.9246479,0.43994948,-0.06985423,0.2697791,-0.02197604,0.3577662,0.5603725,-0.39011425,0.028098537,0.0041537206,-0.05721837,-0.46460035,-0.2616591,-0.41894245,-0.38318208,0.01057229,0.735712,-0.27758697,-0.09267139,0.23565072,-0.23839961,-0.069531456,0.18394342,0.024198055,0.21481189,0.4031298,0.15956634,-0.5334197,0.5127773,-0.17905258,-0.18400805,-0.5458001,0.10941041,0.39882517,-0.57685035,0.66233134,0.4859748,0.04170941,-0.2589521,-0.42249453,-0.16951774,0.010908384,-0.04898793,0.3456499,0.3778782,-0.8093711,0.38413775,0.22795255,-0.045607585,-0.7763367,0.67203265,-0.06489981,-0.53143173,-0.26042563,0.39315218,0.12898128,0.06747179,-0.07001326,0.25185892,-0.42833048,0.117734,0.16904505,0.033067174,0.2984495,-0.2680791,-0.012575645,-0.71737015,0.17008251,-0.4683366,-0.22167048,0.40811312,0.104982056,0.27030283,0.2839318,-0.016902955,0.17929776,-0.22748852,0.120537795,-0.038654473,-0.11277339,0.35833597,0.38509354,0.62007046,-0.47584432,0.5179397,-0.0386677,-0.125439,0.24843144,-0.019647758,0.24210538,0.0032368808,0.57971096,0.08496761,-0.32863438,0.33111885,0.7741658,0.22269715,0.39481783,0.14287731,-0.1626289,0.2543249,0.11738312,0.21504712,-0.20448345,-0.61262393,0.08268455,-0.36183515,0.16200519,0.29818046,0.014317677,0.12037729,-0.12451768,-0.20082654,0.08165276,0.47154897,0.0007870014,-1.2737846,0.20581707,0.09265056,0.89333504,0.6635138,-0.0013852883,-0.01876369,0.58328533,-0.05425279,0.17283116,0.3384447,0.21522841,-0.43743393,0.5017736,-0.5806313,0.5857977,-0.13802852,-0.010923505,-0.12406659,-0.11651929,0.39396846,0.51293015,-0.09670072,0.014219126,0.16051237,-0.39123747,0.1286017,-0.38794532,0.21530475,-0.64871794,-0.13919619,0.7405847,0.6250336,0.3030668,-0.126276,-0.040138826,0.05767471,-0.15892738,-0.062290248,0.032464527,0.08563654,0.022118393,-0.8914588,0.050073184,0.48167187,-0.09743964,0.15388535,-0.030785771,-0.2885874,0.24497157,-0.15829006,-0.14622752,-0.090532266,-0.72845703,0.012099117,-0.35316926,-0.6300384,0.5984997,-0.13669974,0.2758458,0.32146904,0.09478013,-0.5059916,0.32384557,0.13618813,0.6791271,-0.18132934,0.161352,-0.38938153,0.096426055,0.13106635,-0.19348913,-0.29293224,-0.26865676,0.2513677,-0.38373536,0.43662855,0.049910802,-0.2508096,-0.23686147,0.031062406,0.20000437,0.6390243,-0.10324041,-0.25019956,-0.2496857,-0.13357595,-0.31674427,-0.12192651,-0.1073688,0.28716305,-0.08199025,-0.0050549367,-0.13446854,-0.11231494,-0.056202028,0.33901232,-0.11739959,0.5224935,0.38187715,0.22048555,-0.13282907,-0.18478987,0.21059488,0.695685,0.007014348,-0.1414149,-0.36479408,-0.5351973,-0.47159952,0.19292332,-0.045039617,0.3061664,0.37594035,-0.054959215,0.6539575,-0.066071704,1.0134131,0.12297387,-0.412916,0.19878957,0.4775104,0.003173576,-0.2419269,-0.26678598,0.95054996,0.39756945,-0.20887998,-0.1586496,-0.21963635,0.14731947,0.105462916,-0.18044598,-0.19259813,-0.09686036,-0.61041045,-0.115032434,0.12216161,0.24258131,0.29986674,-0.27120888,0.07782593,0.23993692,0.15749477,0.14897299,-0.45270663,-0.13071206,0.3719242,0.23542382,0.07788915,0.16867296,-0.4988143,0.32336256,-0.39424944,0.006671814,-0.42463714,0.2753167,-0.24579047,-0.20982282,0.27093711,0.14467119,0.45250893,-0.20581293,-0.25155658,-0.49328864,0.38971016,0.100192636,0.092556804,0.46903488,-0.15945819,0.036765695,0.011629015,0.617396,1.1793664,-0.15851042,-0.18711321,0.2727598,-0.39472884,-0.7210561,0.28654578,-0.6235417,0.1237346,0.12591021,-0.08889083,-0.6232789,0.15446854,0.10424228,0.13057604,0.049252417,-0.7108999,-0.30455548,0.2565622,-0.24676158,-0.16581082,-0.2967667,-0.1760884,0.5594873,-0.16022757,-0.20045972,-0.01476557,0.3638497,-0.044662613,-0.47870728,0.1286992,-0.43714207,0.24494894,0.09752289,-0.24946228,-0.23484315,0.043783657,-0.5052147,0.23589696,0.12806004,-0.33141503,0.12256173,-0.4015661,-0.05972602,1.1576998,-0.2110943,0.24956915,-0.23362105,-0.62015617,-0.92020214,-0.2886174,0.20700082,-0.0968273,0.05916629,-0.7142404,0.12241873,-0.108942814,-0.24632628,-0.19733664,-0.41434655,0.4541233,0.06357671,0.37325874,-0.056923654,-0.6762774,0.09854977,0.09882993,-0.34950924,-0.5750643,0.45965546,-0.016427461,0.8569587,-0.05097333,0.0386227,0.40162185,-0.4163561,-0.13085309,-0.12521362,-0.13096762,-0.43547165,0.029370103,625 -710,0.4313021,-0.12509766,-0.7152816,-0.32557887,-0.2692287,-0.007843971,-0.26436204,0.21580474,0.3738079,-0.607795,0.09315359,-0.35395476,0.14074752,0.21002755,-0.12983043,-0.6699002,-0.08274149,0.35385624,-0.46830565,0.6009122,-0.38867694,0.21783914,0.38300896,0.17282706,-0.01887835,0.15056394,0.25577927,-0.2621671,-0.12541892,0.0007766256,-0.008862798,-0.024690736,-0.7529221,0.15953325,-0.07552502,-0.3805385,0.12485213,-0.38306558,-0.06562774,-0.7886764,0.3505109,-0.92098516,0.5791863,0.10409783,-0.29151127,0.30685946,0.15619186,0.15277773,-0.18255037,0.058539774,0.100503646,-0.4362141,-0.46141323,-0.043686848,-0.34909594,-0.55106854,-0.7024159,-0.03844293,-0.67046386,-0.16128509,-0.40950897,0.077932715,-0.40476874,0.085182786,-0.22372419,0.5024558,-0.3700678,-0.13299721,0.12659043,-0.18469453,0.36390767,-0.44003758,-0.03947741,-0.12154048,0.11619821,-0.1222513,-0.26660225,0.2145657,0.22720554,0.7203026,0.034569208,-0.36568782,-0.25549972,0.013397061,0.020825468,0.46244815,-0.19978856,-0.36246797,-0.27797726,-0.13405496,0.33503228,0.27174535,-0.07479449,-0.4260146,0.06669639,-0.004176892,-0.386065,0.4240628,0.5099255,-0.40192115,-0.048369877,0.4592627,0.31402192,-0.049834747,-0.19451982,0.11074053,-0.06304164,-0.5884093,-0.24702424,0.32700223,-0.13853289,0.4856413,-0.15065497,0.07883909,0.55197626,-0.1534182,-0.14321329,-0.1589943,-0.05732115,-0.08120648,-0.1774979,-0.1983069,0.42334253,-0.57322395,-0.013445341,-0.5437089,0.83785224,0.037278034,-0.937262,0.40920117,-0.60675687,0.27628434,-0.23759207,0.75906914,0.87753236,0.68546236,0.30480972,0.7653195,-0.57659245,0.12486528,-0.0975783,-0.4459548,0.2129275,-0.016090969,0.39627632,-0.47898534,-0.036757775,0.12373231,-0.09225412,-0.080953486,0.7975765,-0.2660445,-0.22306967,0.1289772,0.67924076,-0.3794604,-0.06521057,0.6163402,1.1059222,0.83511645,0.22587942,1.2955581,0.4208355,-0.23463695,0.22767578,-0.04546942,-1.0078088,0.2503208,0.45439273,0.6648179,0.18454853,0.12428911,-0.035428885,0.33736846,-0.31623378,-0.18476343,-0.11317711,0.3162029,-0.23664662,-0.20826973,-0.2609803,-0.20195685,0.25035593,0.13852337,0.03470792,0.33149847,-0.098924845,0.40754658,0.25418842,1.5846204,-0.093884654,-0.028324114,0.08277381,0.4726662,0.22674522,0.035815142,-0.14509927,0.4537393,0.44530246,0.028036915,-0.62634206,0.1033493,-0.1871898,-0.53108937,-0.20641114,-0.36512756,0.096971676,-0.20201299,-0.305893,-0.21441285,0.045298513,-0.64839333,0.21895379,-2.3924558,-0.1431406,-0.098422095,0.33619103,-0.111195326,-0.26887318,-0.16078107,-0.47182938,0.65844417,0.45278135,0.44103515,-0.623536,0.41885343,0.5192037,-0.4420428,-0.030817417,-0.8906575,-0.06731525,-0.41588715,0.33302644,-0.0030973554,-0.3228567,0.037033174,0.23500326,0.576022,0.09512082,0.15300785,0.48256576,0.5578195,0.10075155,0.6945331,-0.054445975,0.49204466,-0.28343847,-0.18577561,0.23591766,-0.30930886,-0.11123017,-0.20671764,0.20288683,0.32664028,-0.67814773,-0.8849949,-0.5769122,-0.1782838,1.1123288,-0.5659705,-0.6047706,0.32306415,-0.11572051,-0.008618408,0.06840924,0.53938603,-0.2898493,0.08459385,-0.791069,-0.009916053,0.01633195,0.30650598,-0.0039634383,0.17929728,-0.44960758,0.7149743,-0.0817761,0.6685735,0.3861049,0.09776212,-0.25905448,-0.5246324,0.2652327,0.86731637,0.084311195,0.09359221,-0.20350266,-0.05204869,-0.13746372,-0.120463334,0.102600545,0.40112466,0.94492346,-0.15580732,0.026838215,0.39680102,-0.2921072,-0.08876486,-0.10052003,-0.5311468,-0.1737442,-0.11357495,0.46178278,0.5481098,-0.071030706,0.27679804,-0.12980433,0.37072837,-0.169582,-0.48163238,0.637202,0.89002573,-0.2115372,-0.12446086,0.62911254,0.5267168,-0.36775786,0.6326068,-0.6316521,-0.4612307,0.5259823,0.009373195,-0.44193026,0.24652703,-0.48125786,0.14728887,-1.0032088,0.21831734,-0.17006578,-0.39552307,-0.4083683,-0.050164003,-3.637943,0.13417952,-0.17500646,-0.080458276,-0.17077373,-0.052618794,0.34048957,-0.3455692,-0.6520511,0.09348032,0.19646396,0.5041399,0.032285713,0.08258099,-0.42050415,-0.22321104,-0.396668,0.14593242,0.064796455,0.18064506,-0.050342355,-0.5135674,0.01644836,-0.3096929,-0.29915702,-0.007059536,-0.47318867,-0.2460493,-0.18461224,-0.62788934,-0.61521935,0.61474115,-0.35691622,-0.00875747,-0.27002943,-0.07425548,-0.0017841321,0.29818386,-0.19379684,0.16040543,-0.13385546,-0.08740895,-0.07347127,-0.3100707,0.09124953,0.05270074,0.13391788,0.3368836,-0.19679922,0.008956511,0.5764241,0.5676378,-0.0043433583,1.0289147,0.50609183,-0.0034721494,0.2805122,-0.34685865,-0.026982533,-0.75925297,-0.14821133,-0.35413963,-0.5384009,-0.31549752,0.048003417,-0.39878094,-0.8584438,0.64325917,0.19722222,-0.006862292,0.12875077,0.43216074,0.3978997,-0.011089847,-0.019388732,-0.19974071,-0.3089916,-0.5445142,-0.28010654,-0.9231585,-0.4732645,0.041885618,0.9021815,-0.097826175,-0.18679713,-0.008939415,0.0074175275,0.10836604,0.23994154,0.07375324,0.42917892,0.4808313,0.058432616,-0.78319126,0.55250835,-0.014284534,0.10732897,-0.729539,0.16542175,0.58174074,-0.84838575,0.36435983,0.597838,0.15319279,0.039493177,-0.52181816,-0.2384052,0.0429702,-0.2284108,0.36214012,0.07543047,-1.0628862,0.76119554,0.23267832,-0.10163911,-0.93938696,0.43358234,0.046063423,-0.32898954,-0.028194804,0.3758021,-0.011175672,0.05900624,-0.3880009,0.077134095,-0.5688808,0.2427931,0.16309403,-0.033101182,0.5213544,0.057588294,-0.13763905,-0.79400957,-0.08589983,-0.61464363,-0.166291,0.2565983,-0.034702335,0.18369746,0.22746508,-0.10339642,0.5433152,-0.23203328,0.103606865,-0.19500819,-0.33108348,0.5253123,0.50138277,0.2535641,-0.47539315,0.7582604,-0.21253827,-0.11943478,-0.3761407,-0.087909,0.32065165,0.22073537,0.39022696,0.08277939,-0.32442582,0.33844596,0.8969934,0.15450987,0.3514066,0.27106944,-0.10995258,0.67815787,0.19402178,0.06321892,-0.20843203,-0.47715285,-0.18930453,-0.06126391,0.11049709,0.5142477,0.102344275,0.54948574,-0.16624786,0.10877897,0.049082413,0.12734975,0.013988804,-0.762903,0.39345437,0.22641958,0.48884642,0.86800313,-0.08634568,0.19725229,0.51387656,-0.4514052,0.16946298,0.26916996,-0.028805178,-0.3096075,0.5525716,-0.60963607,0.29621264,-0.18239261,0.0369854,0.17112319,0.1209699,0.41600865,1.0673716,-0.0021834213,0.16877426,-0.18972905,-0.13552088,0.37511408,-0.32839602,-0.16892594,-0.47139156,-0.37287888,0.63113964,0.19857931,0.41626537,-0.20709005,-0.100042105,0.18235916,-0.2663535,0.24661809,0.05788426,-0.20819698,0.084241405,-0.6267649,-0.2863231,0.7321408,0.34436518,-0.05192962,0.14584097,-0.37997204,0.3329046,-0.22478381,-0.2943215,-0.17469852,-0.67594534,-0.0059760353,-0.24319139,-0.3224047,0.7921565,-0.17757037,0.30322272,0.093927555,0.097032025,-0.2599173,-0.018495973,0.33352408,0.5569386,0.08968247,-0.3512328,-0.12408042,-0.26727587,0.25756186,-0.380379,-0.25772542,-0.1830225,0.034817137,-0.7324231,0.43904936,-0.27507624,-0.40730497,0.3556492,-0.21393402,-0.012182227,0.5081764,-0.2926567,-0.14060959,0.12437368,0.13462637,-0.14435244,-0.30980727,-0.33402282,0.21322486,-0.22861616,-0.013891106,-0.08096575,0.013690389,0.0573388,0.56450105,-0.051803496,0.1137542,0.2303097,0.41469222,-0.43090802,0.08659278,0.26925585,0.49789158,-0.0537984,-0.07476608,-0.22199184,-0.20169847,-0.26558486,-0.023359913,-0.14543563,0.24894145,0.19103715,-0.5839476,0.92837185,0.061152484,0.9828231,-0.04638385,-0.45318446,-0.031000074,0.54959387,0.06625741,-0.0012095983,-0.26905125,0.88201684,0.6266688,-0.07010338,-0.2600505,-0.5738302,-0.15094472,0.30779478,-0.14127217,-0.21295525,-0.10200735,-0.7762903,-0.39218587,0.3326076,0.3192492,0.18534933,-0.1158086,0.21089035,0.033369854,0.280857,0.35054857,-0.5719902,0.049275894,0.23801419,0.2564053,0.1409747,0.24989107,-0.26711038,0.20963313,-0.65919393,0.12947376,-0.4169674,-0.08252375,0.06891528,-0.26281908,0.19500226,0.10715044,0.32241532,-0.14901242,-0.3513263,-0.107150026,0.62664324,0.26043084,0.37500143,0.92116,-0.25349888,0.17783517,-0.0033287178,0.701758,1.3680637,-0.04583548,-0.03077242,0.32680827,-0.35201553,-0.7019319,0.22545487,-0.23052558,0.13968614,0.18016472,-0.3929025,-0.46422324,0.14044823,0.12819044,-0.34155238,0.17959124,-0.5954848,-0.3089903,0.33658203,-0.13479388,-0.27948615,-0.25012964,0.13738158,0.8747524,-0.3918204,-0.070013955,-0.041492168,0.21613446,-0.18916433,-0.62496245,0.05035249,-0.5492179,0.44465843,0.24339822,-0.4267085,0.21872486,0.17394818,-0.68097425,0.11402105,0.3438164,-0.32170025,-0.029821247,-0.4052744,-0.041913364,0.9408424,0.032967027,0.13776347,-0.4950115,-0.67221165,-0.95208,-0.15718223,0.428051,0.007233629,0.049055286,-0.42888933,-0.06041514,-0.14263679,-0.1765725,0.060984556,-0.5697299,0.34442037,0.048296772,0.5041993,-0.014469917,-0.855713,0.12342826,0.00067864475,-0.24044919,-0.48591056,0.58328605,-0.1229872,0.9369246,0.059322797,-0.001486604,0.3176241,-0.7554686,0.13608116,-0.3453954,-0.10969113,-0.68560517,0.009049745,638 -711,0.46990266,-0.24982783,-0.35446012,-0.124314435,-0.062383134,0.023174038,-0.04447324,0.78697556,0.30877072,-0.33955604,-0.30637276,-0.11766147,0.00092461245,0.29954085,-0.16125932,-0.3630196,-0.07887611,0.061648674,-0.22409551,0.55498195,-0.31416494,0.20769833,-0.11544895,0.3543732,0.35012913,0.2519847,0.054290447,-0.06670216,-0.07040247,-0.12893789,-0.17170206,0.03813958,-0.5204771,0.17421857,-0.22890517,-0.25772905,-0.080154546,-0.59675175,-0.45495135,-0.8172994,0.46408632,-0.9324313,0.47036836,0.0016214618,-0.22535434,0.255715,-0.018510956,0.1501515,-0.2728807,-0.19739595,0.12011675,-0.096029505,0.14369322,-0.06622874,-0.047308363,-0.2677419,-0.6272756,-0.034610607,-0.21135996,-0.1349375,-0.30506337,0.103858985,-0.44658607,-0.08784949,-0.1464872,0.4047198,-0.4673043,-0.04831448,0.18207878,-0.26377377,0.24664034,-0.6976694,-0.1810325,0.007481302,0.16192651,0.06857057,-0.07922169,0.43562728,0.039552134,0.38677123,0.05589542,-0.12969981,-0.34377015,0.08006997,0.05250111,0.5931255,-0.18898095,-0.7048601,-0.05266084,0.024531452,0.42199135,0.25012583,-0.0074907998,-0.12439291,-0.18473704,0.09010839,-0.12720586,0.38513356,0.70321643,-0.14837565,-0.3294801,0.36463034,0.5019162,0.24217921,-0.009484715,-0.043543104,0.041861676,-0.46047598,-0.13475032,0.15843436,-0.31465465,0.53895545,-0.11393755,0.27498895,0.6876881,-0.19742472,0.14849068,-0.06313976,0.052153323,-0.15077783,-0.38515738,-0.27288246,0.3042002,-0.30839396,0.3869565,-0.3032694,0.8777986,0.14335561,-0.7624724,0.4361054,-0.46130517,0.21059725,-0.05288942,0.62178683,0.6745114,0.42642885,0.4383761,0.88726074,-0.370882,0.052834567,-0.07904338,-0.33714822,0.019219521,-0.124893956,0.08227691,-0.33957255,0.07036069,0.2334815,-0.20568769,0.12227498,0.27712065,-0.5770516,-0.0598114,0.18991879,0.75566006,-0.28089792,0.10384205,0.869138,1.1057286,0.8892777,0.04476927,1.147697,0.18897794,-0.25731376,0.30195588,-0.29167712,-0.8383474,0.23916993,0.4223519,0.10885508,0.26418543,0.12781776,-0.15973642,0.31431058,-0.54632163,0.094856896,-0.19742005,0.22412325,0.071455605,-0.07639199,-0.55530864,-0.24416846,-0.12963447,0.025187029,0.074221484,0.22715849,-0.34818745,0.2736618,-0.011944057,1.6256815,-0.13492945,0.0264703,0.18139233,0.6928796,0.21622774,-0.1251125,0.057173967,0.32530868,0.4344095,-0.068555474,-0.5885951,0.11499706,-0.33817068,-0.5879524,-0.036520474,-0.35901797,-0.11043881,0.092864595,-0.2947449,-0.24738576,-0.19788319,-0.38276613,0.47621801,-2.701859,-0.12784961,-0.038388386,0.3686133,-0.3437203,-0.2855256,-0.058121763,-0.56798226,0.42291614,0.39408952,0.5520152,-0.80827993,0.1634722,0.51764876,-0.5901,-0.052314557,-0.6775181,0.074469976,-0.020820994,0.35185277,0.10018199,-0.037236597,0.13050953,0.035575476,0.65709156,0.41058975,0.118763834,0.33588374,0.3517533,-0.05215122,0.2849247,-0.21935037,0.4037429,-0.3087559,-0.024002176,0.34889814,-0.45797998,0.25177863,-0.27681363,0.20863888,0.40844086,-0.49046934,-0.68314993,-0.5735553,-0.25938797,1.2796909,-0.20434335,-0.6630647,0.33564642,-0.27706504,-0.08706416,-0.14697577,0.67409503,-0.25611016,-0.15087858,-0.6055976,-0.08570842,-0.25224814,0.06403558,-0.030685188,0.05531883,-0.3852401,0.87184554,-0.16022293,0.5173034,0.21436515,0.23020218,-0.2642493,-0.4812724,0.06299054,0.6590835,0.52364457,0.1387857,-0.13288394,-0.10559174,-0.18724772,-0.35234216,0.09754224,0.62311393,0.86559325,-0.067387305,-0.045760117,0.40754545,-0.058518514,-0.007769518,-0.021435391,-0.293325,-0.19891456,-0.08064061,0.58734,0.5533049,-0.3691109,0.23944257,-0.17246588,0.10977402,-0.17856114,-0.3289665,0.48684236,0.9630417,-0.23051564,-0.08175126,0.4559544,0.34558532,-0.25892255,0.32557008,-0.78881204,-0.23822452,0.45972124,-0.19247557,-0.5406761,0.11992042,-0.20088778,0.09251407,-0.817597,0.31317025,-0.19113328,-0.56156695,-0.5439096,-0.069225356,-2.780389,0.036075737,-0.28076866,-0.24486233,-0.23861864,-0.1979529,0.057889126,-0.5508424,-0.49166304,0.23690249,0.17387167,0.6071307,0.0057380972,0.12960541,-0.23444095,-0.10913718,-0.6349844,0.054151926,6.5946806e-05,0.49263498,-0.014832878,-0.30598342,-0.07554697,-0.0061346567,-0.6763417,0.08833803,-0.4794349,-0.3294748,-0.25347087,-0.54805154,-0.23389603,0.6242438,-0.27473363,0.022808006,-0.18066183,-0.08744461,-0.19129135,0.28314134,0.14630547,0.029618267,0.04478552,-0.09528187,0.23542903,-0.2952992,0.4298039,-0.0061366283,0.32407698,0.4053361,-0.31490642,0.13223848,0.50816447,0.587141,-0.17643033,0.8335037,0.45877072,-0.112776056,0.28866208,-0.2372124,-0.2019071,-0.48211467,-0.30280116,0.21385258,-0.3140085,-0.4793228,-0.22745368,-0.4499481,-0.8329604,0.30976772,0.007310087,0.6139379,0.07664617,0.057524674,0.6288634,-0.15297332,-0.010582392,0.054327708,-0.051303063,-0.64162314,-0.18124829,-0.65074956,-0.43716308,0.2088431,0.7935626,-0.11681052,-0.18455061,0.016099403,-0.3375674,0.021400185,-0.085983165,-0.11222721,-0.0606356,0.20210396,-0.14536698,-0.62826896,0.5214608,0.18341932,-0.18781835,-0.5476091,0.335487,0.4370545,-0.5343746,0.404514,0.16465694,0.02465587,-0.42490923,-0.58370155,-0.16219456,-0.199082,-0.07886529,0.31080276,0.09122084,-0.6172956,0.4311946,0.33923185,-0.22937004,-0.69491047,0.3344918,-0.10402502,-0.19708943,-0.12399681,0.19923027,0.15796845,-0.14895815,-0.14445823,0.26301187,-0.57408834,0.3859654,0.17591974,0.015870782,0.5477361,-0.1490783,-0.058169052,-0.7395954,0.022508917,-0.6655358,-0.09966187,0.3200836,0.1465958,0.034474973,-0.077726685,0.27405956,0.4053871,-0.37193215,0.11370708,0.019433083,-0.25510293,0.4914425,0.39450127,0.49066418,-0.46601766,0.59203714,0.081772715,-0.19743451,0.13234152,0.20008549,0.35880083,0.1376737,0.26816744,-0.04336464,-0.33810264,0.19253881,0.66313267,0.26694047,0.48503497,0.12500718,-0.15705715,0.35349515,0.068535,0.2928864,-0.056844182,-0.6580089,0.10207398,-0.29985005,0.04167301,0.52527195,0.2521566,0.24228397,-0.08647336,-0.23429474,-0.012340676,0.25494125,-0.19454327,-1.1511638,0.37835422,0.015964018,0.9173389,0.46890333,-0.21377341,0.023510002,0.7383263,0.048702937,0.24230601,0.37239754,0.059210174,-0.69389415,0.570055,-0.67528766,0.4796272,0.046300385,0.011094087,0.10033724,0.1638409,0.39400354,0.5333499,-0.20159322,-0.11392084,-0.084497415,-0.23318471,0.19025777,-0.40978178,0.2132521,-0.5816145,-0.30479443,0.44633335,0.44989422,0.3333903,-0.039525643,-0.039176844,-0.08794662,0.021757506,0.21552144,0.0028728002,0.053807326,-0.076498576,-0.7048158,-0.34145647,0.41485256,-0.058260642,0.15156633,-0.12951276,-0.20567916,0.21092139,-0.35060886,-0.12576768,-0.054271456,-0.7608543,0.14893042,-0.16635635,-0.38309574,0.3880346,-0.058519665,0.4401499,0.16028914,-0.05595753,-0.20565067,-0.08042513,0.2513308,0.86008394,-0.07886178,-0.27761075,-0.66713655,0.06980768,0.25060317,-0.32866722,-7.172273e-05,-0.0496975,-0.30246964,-0.45140296,0.42777875,-0.01662028,-0.20815776,0.2815661,-0.27765796,-0.013405858,0.72716177,-0.2260073,-0.13409042,-0.25987932,-0.20683455,-0.29335895,-0.15694486,-0.19496869,0.29678392,0.31576425,-0.057749506,-0.06389251,-0.20843734,-0.10217888,0.34631315,0.046141937,0.20248362,0.30629227,0.017663062,-0.32057503,-0.16137527,0.18306659,0.4345172,0.24198928,-0.13575846,-0.20326413,-0.5865011,-0.42515305,0.015294213,-0.08376021,0.39944845,0.16120216,-0.2737268,0.583932,0.065445796,1.0674922,0.17299975,-0.29836348,0.10616367,0.58064425,0.085680835,-0.0035015987,-0.29962704,0.8801107,0.60575175,-0.106739126,-0.03458617,-0.24019812,0.12572405,0.40699986,-0.20106696,-0.10738525,0.0501079,-0.6946522,-0.2426853,0.32248795,0.24274868,0.11464869,-0.044620506,-0.15339068,0.2472488,0.028404163,0.49848875,-0.27989742,-0.14273515,0.42567775,0.0032127316,0.20162226,0.059751272,-0.4533598,0.31098783,-0.5886562,0.2165667,-0.2779608,0.14225106,-0.32378754,-0.38341558,0.21586034,0.0117365215,0.5642483,-0.3682384,-0.5847045,-0.08008587,0.42905185,0.1938576,0.10801303,0.41553834,-0.25415552,-0.0099764,-0.0028742964,0.5736005,1.0404886,-0.16236559,0.13568519,0.38181144,-0.47649398,-0.76218975,0.4481489,-0.0860031,0.20042539,-0.017751263,-0.21965459,-0.563402,0.2083135,0.2581189,-0.17606892,0.066442244,-0.70824105,-0.41051027,0.18227635,-0.30368468,-0.1776843,-0.50007284,0.18338634,0.63272774,-0.39099935,-0.39355075,0.20741868,0.16803561,-0.12680301,-0.6165158,-0.00191084,-0.3013962,0.3229289,-0.07744757,-0.5037473,-0.1788844,0.108965725,-0.38337904,0.11605199,-0.104405716,-0.40458438,0.120844536,-0.33527163,0.10644878,0.9708027,-0.1844401,0.07147963,-0.7026506,-0.37524158,-0.9548334,-0.48266065,0.5035441,0.29243737,0.06799863,-0.635481,-0.029148601,-0.10029094,0.11180895,-0.26712105,-0.4373449,0.49629524,0.18115166,0.31987572,-0.13229749,-0.5624291,0.2318043,0.12537922,-0.034309644,-0.47110412,0.48528403,0.028208636,0.9658248,0.1597866,0.09285072,0.082129516,-0.6030016,-0.05462608,-0.14151002,-0.36524785,-0.66018355,0.34294584,640 -712,0.5892473,-0.14437553,-0.40120998,-0.3587014,-0.43316644,0.2564835,-0.18138105,0.25863066,0.337845,-0.46195635,-0.16624568,-0.0718216,0.010178236,0.49488872,-0.20492776,-0.9587104,-0.05916918,0.1837963,-0.66143095,0.35533735,-0.5815341,0.3863148,0.25644985,0.3172104,0.07282475,0.24427682,0.38776433,-0.104454674,-0.07937921,-0.09743464,-0.19037032,0.0119514605,-0.7221339,0.46325767,-0.03387088,-0.10875313,0.01657829,-0.44719803,-0.24967885,-0.6177339,0.23979743,-0.7987741,0.5578069,-0.00495437,-0.27655184,-0.077711634,0.2896442,0.22411264,-0.43032536,0.21138176,0.18831755,-0.33586723,-0.06190491,-0.22267577,-0.3752667,-0.5020112,-0.57637304,0.050786015,-0.6252192,-0.12508526,-0.32835162,0.2954669,-0.33382687,-0.00050524564,-0.07220113,0.46521804,-0.3564638,0.07740163,0.37107986,-0.2935622,0.12930815,-0.32024342,-0.20890948,-0.1822056,0.3579369,0.09021333,-0.32027566,0.39533693,0.3525172,0.4833329,0.15909435,-0.37207025,-0.19092312,-0.24947235,0.30741128,0.4173885,0.0055989143,-0.5170052,-0.3877161,-0.15163308,0.3228555,0.23073807,-0.020368733,-0.5160258,0.19468205,-0.04684923,-0.2700388,0.46905416,0.47024888,-0.38316303,-0.11563386,0.4038963,0.33431715,0.015368664,-0.1574482,0.16610728,-0.016163852,-0.7096628,-0.25796595,0.40838498,-0.01699493,0.52069396,-0.17784823,0.14136754,0.7727101,-0.27239892,-0.12443868,-0.21840884,-0.09541288,-0.10161221,-0.28845707,-0.04686022,-0.01276781,-0.40665022,-0.16370885,-0.2840212,0.9753587,0.10414282,-0.74536264,0.25256538,-0.5320444,0.14829375,-0.14537415,0.68888575,0.7506829,0.49087635,0.17062527,0.9338366,-0.5450217,0.06650514,-0.08050946,-0.4160433,-0.016165394,-0.18341634,0.07209413,-0.42749888,0.05214397,-0.012378912,0.11415969,-0.00443498,0.63641095,-0.2808495,-0.13028045,0.023976304,0.6994123,-0.45636413,-0.1294797,0.919773,0.98028505,0.977135,0.15553209,1.4716505,0.4751884,-0.22388604,0.010217657,-0.28568107,-0.53913176,0.24286151,0.24681476,0.16022484,0.22570314,-0.052837316,0.10553001,0.32257617,-0.46417114,0.041773625,-0.067072935,0.36372584,-0.06975316,-0.00896276,-0.46544248,-0.30037877,0.25521445,-0.011432336,0.2752221,0.29583645,-0.24424174,0.48801655,-0.05625556,1.1792365,0.15360935,0.09750088,-0.026629122,0.3056505,0.3019702,-0.05290006,-0.14985657,0.37782362,0.42904314,-0.18475294,-0.68087393,-0.069486745,-0.26560298,-0.35157618,-0.30300504,-0.5447559,-0.15398818,-0.10904069,-0.2920442,-0.2615374,0.097327724,-0.40499833,0.574925,-2.0891533,-0.3063203,-0.24656527,0.34545857,-0.21157953,-0.22013783,-0.4515047,-0.513271,0.49549943,0.35630623,0.39180246,-0.5431996,0.3767567,0.3770464,-0.24209358,-0.25219032,-0.6638458,0.05714445,-0.178449,0.2817999,-0.026295634,-0.2013371,-0.3450957,0.25775892,0.73829883,0.09304993,0.03546756,0.31807476,0.58902854,-0.021211404,0.6409563,0.02009639,0.62968,-0.35172898,-0.09070773,0.26540276,-0.39288676,0.27091524,-0.021828862,0.114375405,0.36990485,-0.6355023,-0.7814984,-0.7739807,-0.51446635,1.1982785,-0.5750716,-0.46710664,0.2658445,-0.02204639,-0.15195984,0.21401101,0.6675082,-0.15002912,0.14320005,-0.7108997,0.07868603,0.18819532,0.3049721,-0.18234117,0.13405688,-0.32768422,0.8125274,-0.31400818,0.54356724,0.18320674,0.2502264,-0.37001187,-0.49472317,0.14341682,1.0513688,0.277243,0.17320916,-0.15644623,-0.3606583,-0.31124517,-0.30351004,-0.00564345,0.7370629,0.7841196,-0.046367243,0.03619498,0.43115765,-0.28607818,0.0960636,-0.05536055,-0.38192898,-0.03922216,-0.09943059,0.65148234,0.49038136,-0.032721944,0.449101,-0.21291678,0.33953434,-0.3169586,-0.50927424,0.6099569,0.79833895,-0.22696987,-0.2567269,0.63313097,0.4696651,-0.35689008,0.44935232,-0.57498145,-0.54625785,0.7405802,-0.024212072,-0.40287983,0.07258199,-0.46371862,0.05654231,-1.01053,0.3150725,-0.060662653,-0.6060301,-0.40193045,-0.246909,-3.6287408,0.16474636,-0.10295972,-0.021373378,-0.20799376,-0.074585795,0.24312942,-0.4205877,-0.5472532,0.07081135,-0.05705786,0.65341496,-0.031976096,0.2676821,-0.33517697,-0.15412058,-0.2706331,0.14482631,0.022728233,0.35613397,-0.007318266,-0.30641106,0.2592108,-0.4387472,-0.45402798,0.1201028,-0.5611421,-0.55674434,-0.10895911,-0.48508924,-0.39923015,0.83126676,-0.6201409,0.09817702,-0.2671775,0.058827125,-0.1785753,0.36449793,0.11558461,0.30957416,0.21094945,-0.08748768,-0.34510374,-0.34966233,0.36161095,0.02144759,0.23746523,0.25348696,-0.06840027,0.06456096,0.4602486,0.5670887,-0.11145251,0.7872877,0.22249979,0.062464233,0.25528568,-0.33217907,-0.38699296,-0.51840204,-0.38392088,-0.1788086,-0.49694985,-0.47762972,-0.22556566,-0.35544574,-0.88483846,0.3762873,0.17801526,-0.019183429,-0.20993617,0.15223314,0.22175997,-0.097316705,0.029384898,-0.09873095,-0.267607,-0.54365146,-0.5589268,-0.60301656,-0.48571116,0.08392882,1.1230532,-0.071086116,-0.29885912,-0.084189095,-0.39256054,0.10091719,-0.014382646,0.1744782,0.17004949,0.2755391,-0.047381017,-0.80362266,0.47296765,-0.19573878,-0.04004466,-0.7328222,0.06386731,0.8369532,-0.70276797,0.62788194,0.45459396,0.2612445,-0.022168856,-0.4198362,-0.3363542,0.13393515,-0.15158845,0.5475131,0.10461367,-0.5516786,0.5853344,0.109029934,-0.05728505,-0.8369292,0.44575852,-0.0012597534,-0.189835,0.18238877,0.41927433,0.067544766,-0.13350241,-0.31689578,0.13564566,-0.5364619,0.3479296,0.34427595,0.1548225,0.47608778,-0.19898833,-0.19489948,-0.7031966,-0.29410756,-0.5931742,-0.3370272,-0.10002653,0.13357916,0.012881994,0.14843836,-0.06858997,0.3722878,-0.33995336,0.12755206,-0.08915309,-0.124954574,0.36584142,0.3242543,0.49189314,-0.4631451,0.6908884,0.06755185,0.16514008,-0.1855119,0.19193223,0.38294175,0.30029896,0.44090125,-0.10363983,-0.021425694,0.19520047,0.59875053,0.1454811,0.26560423,0.3984126,-0.24753274,0.4662037,0.19547704,0.12742437,0.052611608,-0.2374162,-0.21628979,-0.13604246,0.093273595,0.4210033,0.25997013,0.42593253,0.03814674,-0.10762914,0.28246278,0.056243714,-0.22601502,-1.4338322,0.34204796,0.2273938,0.582595,0.46500382,-0.11368031,0.0755534,0.55143726,-0.29435107,0.057600815,0.23988749,0.041835997,-0.24095863,0.5269029,-0.49270937,0.49931827,-0.32402337,-0.06236986,0.059756838,0.29430902,0.35962582,1.0340303,0.09689543,0.18805741,0.013351541,-0.2533685,0.18792708,-0.4188059,0.17252883,-0.6751525,-0.38747662,0.5769609,0.15802813,0.38285035,-0.27429527,-0.101836,0.08114045,-0.2323579,-0.10327704,-0.101533376,-0.21258637,0.082042344,-0.8555836,-0.28313607,0.4659684,-0.16175412,0.08475265,0.26078966,-0.2954821,0.18134774,-0.20929743,0.065666236,-0.059043817,-0.75248104,-0.31095225,-0.40565678,-0.43709293,0.15683796,-0.6414471,0.27360523,0.19543058,-0.033717398,-0.3163096,0.20226361,0.26703003,0.8392331,0.16787481,-0.29113835,-0.27927476,-0.055323403,0.41829997,-0.41716737,0.00032775218,-0.3433353,0.051959276,-0.6629553,0.5311792,-0.144596,-0.27237952,0.13703667,-0.09885537,-0.063582376,0.44623244,-0.2850424,-0.10236819,0.18732572,-0.04479464,-0.15595077,-0.037417952,-0.40714365,0.29212347,-0.03661755,0.033891458,0.16145119,-0.1437392,-0.09470128,0.29093367,0.056710042,0.28216326,0.38277495,0.07371952,-0.13291685,0.1325596,0.0040146527,0.43883294,0.25394642,-0.031484388,-0.2101418,-0.19249047,-0.25664082,0.419161,-0.21039897,0.021574227,0.13864228,-0.47245917,0.7218122,0.17897789,1.0886409,0.23288439,-0.3482394,0.102633245,0.54571784,0.17357913,0.17634603,-0.3532717,0.8824281,0.542541,-0.19749641,-0.22971341,-0.5263546,-0.11598775,0.33048952,-0.31534842,-0.33046675,-0.15741846,-0.69926304,-0.1864155,0.07592477,0.17127515,0.1378643,0.0437052,-0.11659749,0.042851813,0.24984536,0.5073541,-0.6201565,0.23767461,0.2885338,0.28522223,0.1494263,0.25142092,-0.18820238,0.41841894,-0.73493826,0.25898287,-0.35212305,0.13831021,-0.07092887,-0.20413774,0.2605364,0.12805884,0.3562765,-0.2954677,-0.22329892,-0.22274789,0.87734294,0.22938174,0.33654004,0.828822,-0.25070497,-0.26313952,0.15615003,0.6170045,1.4815037,-0.09679189,0.12567848,0.38059103,-0.30253595,-0.56413895,0.25653404,-0.4560782,-0.0036035501,-0.045325935,-0.5292151,-0.37615106,0.32852003,0.07535923,0.10725023,0.12782668,-0.4710526,-0.25859153,0.52280664,-0.1865721,-0.29783246,-0.2153953,0.31412226,0.47327676,-0.2691977,-0.28619,0.041233633,0.35160062,-0.301552,-0.6442102,-0.0632714,-0.39071047,0.3538918,0.11770857,-0.17651002,-0.2179877,0.07154013,-0.4170491,0.2348732,0.24744861,-0.3561451,0.046931062,-0.070318215,-0.17109202,0.9072574,-0.001857627,0.12693137,-0.6929855,-0.44916314,-0.9091853,-0.29141074,0.38846117,0.0980965,-0.12939762,-0.5004565,-0.2647425,-0.07001969,0.041794892,0.11065228,-0.5612052,0.31833854,0.095541514,0.48454726,-0.0073687905,-0.9241439,0.12312384,0.09871577,-0.35006955,-0.62859017,0.5403852,-0.16910975,0.7780675,0.04680912,0.08610817,0.19399783,-0.66709167,0.25555187,-0.2572676,-0.15703847,-0.685208,0.14712027,643 -713,0.32084367,-0.14680034,-0.72764355,-0.17724416,-0.42871663,-0.14537597,-0.021564212,0.7011375,0.3635851,-0.25464404,-0.13899274,-0.03782535,-0.19329569,0.40363836,-0.13528457,-0.7210677,-0.2134505,-0.042988636,-0.5831876,0.5308992,-0.25134534,0.28196853,-0.33117348,0.5567451,0.42970228,0.20466155,0.008725011,0.17788196,-0.020060072,-0.21622922,-0.013656827,0.28615028,-0.51674217,0.20464924,-0.37338865,-0.32137233,-0.11277992,-0.3977721,-0.35372072,-0.7843644,0.38829368,-0.582357,0.36161625,-0.02962889,-0.22751643,0.107204475,0.27198628,0.16801527,-0.08007422,-0.30878437,0.07977844,-0.0983369,0.096391864,-0.29154474,-0.5419926,-0.51682574,-0.56581795,-0.052489143,-0.5723486,-0.12519962,-0.24507426,0.091592275,-0.25041077,-0.17902385,-0.09627343,0.69788957,-0.32840186,0.17857304,0.29959542,-0.10131491,0.037270725,-0.67131335,-0.23968394,-0.11600493,0.06537047,-0.016840044,-0.36472648,0.53296757,0.058710042,0.06005954,-0.036783513,-0.288025,-0.3821511,-0.021692041,0.13631287,0.30385876,-0.36479318,-0.37560394,-0.032628063,-0.005196741,0.4119094,0.45697927,0.20401606,-0.18460883,-0.086996116,-0.08116032,-0.00048374213,0.665902,0.5357688,-0.06039925,-0.075996846,0.33136544,0.4051353,0.3066668,-0.28638893,-0.13986398,-0.12458082,-0.4502229,-0.13163224,0.24895811,-0.13883033,0.38871348,-0.039315738,0.033025358,0.62368816,-0.11793105,-0.01807388,0.11046652,0.08993809,0.17040561,-0.4680263,-0.086496636,0.26060653,-0.43679565,0.39347643,-0.16995965,0.6765694,0.35460678,-0.59470004,0.21607032,-0.68799555,0.14843348,-0.04004858,0.3807055,0.76248556,0.53605616,0.1616235,0.7189502,-0.20352767,0.2047582,-0.12675712,-0.10712572,-0.030121299,-0.33739808,-0.09731482,-0.42086995,-0.035339452,-0.29191753,-0.085585035,0.2201438,0.23683476,-0.464232,-0.35096577,0.28467262,0.88406724,-0.11631783,0.03387596,0.82936466,0.99012715,0.8968856,-0.069156736,0.6697578,-0.2042978,-0.18439604,0.33322796,0.018299699,-0.5937728,0.2956125,0.2968842,-0.25007313,0.13266002,-0.17465112,0.059002306,0.25467512,-0.3588414,-0.11504484,-0.16947725,0.25243276,0.34778294,-0.047715783,-0.23671794,-0.43196455,-0.08571667,0.015385637,-0.075494215,0.4606933,-0.24385327,0.2759951,-0.22113441,1.3698771,0.17435749,0.007176608,0.2867207,0.85336614,0.33546034,-0.2702297,0.040303223,0.34975353,0.108597465,0.23034772,-0.5783217,0.21399353,-0.40981087,-0.4429012,-0.025667645,-0.5009533,-0.27846757,0.062063158,-0.5770923,-0.19651969,-0.11258096,-0.10687273,0.56387866,-2.835691,0.019433241,-0.10761472,0.3657591,-0.2517389,-0.30570826,-0.04265868,-0.54090095,0.5664552,0.15849663,0.5383502,-0.3843678,0.12223606,0.4175823,-0.7186658,-0.020271663,-0.48451534,0.11724644,0.036075354,0.2778896,-0.12786716,0.028547296,0.1692512,0.028388243,0.6141583,0.124378406,0.09626475,0.4208438,0.35999715,-0.38997108,0.6111561,-0.28488642,0.44150975,-0.59751505,-0.22024243,0.3216113,-0.5819615,0.44633374,-0.04085847,0.07199491,0.62672275,-0.5534452,-1.0433676,-0.3842729,-0.05512252,1.1863883,-0.26953566,-0.42668313,0.24250828,-0.6327595,-0.042534914,-0.27847445,0.6842801,0.044285987,0.060828283,-0.47020018,-0.06798353,-0.13451715,0.13161363,-0.06747147,-0.09694116,-0.16242312,0.5619805,-0.05355213,0.4716411,0.23719954,0.20549837,-0.5659142,-0.50897783,0.07204281,0.48689264,0.3244651,0.086213306,-0.18109943,-0.20744991,-0.37310088,-0.12356795,0.22792567,0.8063842,0.5585137,-0.16141534,0.086366974,0.39513248,0.050745305,0.015226011,-0.19987026,-0.25195912,-0.40024722,0.18443817,0.60007286,0.8075727,0.09706958,0.39875224,0.20270084,0.32688972,-0.29934198,-0.4352565,0.275457,1.1415994,-0.20656888,-0.3978667,0.4363597,0.4937367,-0.30094188,0.39334553,-0.38696846,-0.3514533,0.66377157,-0.094188094,-0.63394994,-0.07987221,-0.23292837,-0.13205558,-0.57124114,0.14362505,-0.62159973,-0.48667014,-0.56309134,-0.18354617,-2.4239674,0.09855065,-0.23252806,-0.19552733,-0.27818435,-0.1699217,-0.018338352,-0.5604731,-0.6197338,0.06066286,0.13878366,0.7377764,-0.1834045,0.10826417,-0.42766306,-0.3016895,-0.29304677,0.2378406,0.4742896,0.46834323,-0.1415397,-0.2897518,-0.3081025,-0.0010212109,-0.48560196,0.03683304,-0.40858433,-0.23905611,-0.18262044,-0.6688114,-0.1130094,0.6247095,-0.39219195,-0.069739886,0.0429815,0.10533324,0.23493631,0.017243253,0.2448956,0.2996735,0.20500486,-0.18905331,0.20687246,-0.20876224,0.19444348,0.15540919,0.61655796,0.1279431,0.1412983,0.4042279,0.5383414,0.69592315,-0.17324477,0.87900823,0.35214233,0.12593475,0.40143046,-0.27625242,-0.42394778,-0.5364982,-0.081171274,0.24089548,-0.2640552,-0.320374,-0.0074308882,-0.35358146,-0.8957293,0.59676486,0.07307494,0.2860306,-0.07627914,0.14484684,0.599275,-0.3431244,-0.077789985,0.088553324,-0.024430353,-0.6555259,-0.33844566,-0.5394131,-0.47036436,-0.08909523,1.0665271,-0.2372497,-0.22047281,0.16798204,-0.36825708,0.106091425,0.24298818,0.010285272,0.078698605,0.28085706,0.13259004,-0.46329367,0.40886885,-0.041255593,-0.008931256,-0.5013004,0.49083132,0.54752487,-0.4801294,0.53177124,0.09932833,-0.00059713767,-0.4351167,-0.69390047,-0.0139107425,0.0039899074,-0.07413942,0.27352992,0.28621757,-0.7865137,0.27278182,0.114336364,-0.2312462,-0.7596338,0.548774,-0.13494761,-0.25795165,-0.18702294,0.40675718,0.3820974,-0.17634445,-0.12199478,0.37896478,-0.2693554,0.14212051,0.26181066,-0.055094875,0.028792597,-0.35401472,-0.14086531,-0.6783936,0.33678088,-0.50698227,-0.31413376,0.63841593,-0.12927178,-0.010359787,0.1034118,0.03627885,0.095721155,-0.10019211,0.17974265,-0.2250827,-0.41193148,0.49002874,0.42874545,0.7995485,-0.6019803,0.51062155,0.01859415,-0.05773612,0.5305025,0.29151165,0.3284841,-0.078182206,0.5610155,0.04216705,-0.19932547,0.03119023,0.743533,0.2407585,0.22177857,-0.09231086,-0.07861873,0.1800976,0.10037859,0.08107941,-0.26188377,-0.71663606,-0.00041175575,-0.15457596,0.05262872,0.3394199,0.04233677,0.17741486,0.043458343,-0.22509283,0.15392247,0.12721455,-0.08676626,-1.2393028,0.44755238,0.23833844,1.0444316,0.2719777,0.23715216,-0.19795388,0.71576285,0.033642605,0.0095807295,0.49047893,0.10673721,-0.38693196,0.4833203,-0.6431882,0.7983398,0.094202116,-0.045165163,0.13599929,0.19845684,0.6689745,0.6963545,-0.13574456,-0.06442861,0.14817287,-0.35286728,0.20662935,-0.41092312,-0.004739358,-0.5117079,-0.39365938,0.5394091,0.56511724,0.21196762,-0.2951657,0.036478974,0.019574692,-0.18781108,0.20258123,-0.17004156,0.0058435844,-0.08092625,-0.4728095,-0.10498575,0.41728136,-0.26482728,0.253295,0.045144673,0.060003903,0.32803148,-0.17081608,0.08385928,-0.12682775,-0.61188275,0.19429739,-0.3642686,-0.46446797,0.27037933,-0.27048072,0.33372423,0.32726339,0.013235251,-0.37058684,0.7253182,0.01797689,0.8687989,-0.47725323,-0.16510442,-0.461153,0.13734218,0.093542084,-0.26066482,0.094072215,-0.15823695,0.009490426,-0.36571458,0.3208525,-0.17497547,-0.4261534,-0.24239086,-0.1515204,-0.0023461087,0.5741546,0.06377813,0.010579278,-0.13143247,-0.30184218,-0.43813282,-0.34733883,-0.003636828,0.25307637,-0.15311982,0.08203959,-0.10975431,-0.22262461,0.19802295,0.2512755,-0.2744908,0.42681488,0.22024682,0.2105703,-0.11232356,-0.044760246,0.26253313,0.5576271,0.023977535,-0.006458292,-0.2921208,-0.16276136,-0.4827481,0.23969705,-0.19126743,0.56725514,0.1760463,-0.24269496,0.48884836,-0.23259942,1.1964854,-0.16466692,-0.4229423,0.22147247,0.46903056,-0.013079364,-0.20992804,-0.23440558,0.79397553,0.4077643,-0.024758,-0.045815863,-0.07067757,0.089721315,0.13578986,-0.31015044,-0.19838017,0.014982103,-0.4097818,0.026987057,0.16715391,0.20508698,0.35410994,-0.26648372,-0.2337742,0.19823524,0.14009134,0.08249199,-0.31474692,-0.18504395,0.2743232,0.28574,-0.090264134,0.09308731,-0.5444534,0.3365811,-0.36559412,0.31892917,-0.2876603,0.31452268,-0.27421027,-0.38932183,0.19274066,-0.15552776,0.44384214,-0.23250818,-0.21666566,-0.3964291,0.44398597,0.3088683,0.18729486,0.34722435,-0.24526462,0.07615921,0.017645914,0.60649806,0.7190449,-0.21516465,-0.25088638,0.066745386,-0.38733017,-0.5801325,0.2450769,-0.4653851,0.32320282,-0.03883553,-0.038735397,-0.45674002,0.16059992,0.15243459,0.102820866,-0.052435234,-1.023222,-0.14826928,-0.078895405,-0.2689697,-0.2960687,-0.5731758,-0.009763451,0.56006515,-0.14250793,-0.27013713,0.2180485,0.10403167,0.08195793,-0.3685682,0.22204432,-0.3150137,0.078518264,-0.14323577,-0.518488,-0.17308475,-0.07279788,-0.44866723,0.25367633,-0.19269317,-0.25631735,-0.016371341,0.13549627,0.16633493,0.873783,-0.21737693,0.3451169,-0.30133414,-0.66989577,-0.75033325,-0.35319865,0.20003143,0.19271943,-0.034862533,-0.55679065,-0.076458395,-0.14405102,-0.25177628,-0.21306203,-0.2659955,0.25608522,0.11987542,0.4738777,-0.29028493,-0.72238535,0.46031666,0.13220277,0.03838661,-0.46841767,0.18646039,-0.25425804,0.8717597,-0.0040653357,-0.027839322,0.27069977,-0.30928436,-0.0047939145,-0.13296705,-0.21075517,-0.29142863,0.1956674,651 -714,0.427815,-0.20564696,-0.5945682,-0.27511376,-0.46115765,0.12231786,-0.4213518,0.13973227,0.31082076,-0.50464225,0.013068516,0.010788097,-0.24196896,0.14223984,-0.28094223,-0.48982328,-0.022980634,0.05289817,-0.74152786,0.48489222,-0.6861505,0.21022132,-0.15548134,0.4293512,0.117033415,0.08511981,-0.022485128,-0.023164362,0.02770732,-0.13678524,0.038418815,0.26445344,-0.9087229,0.2956951,-0.21814407,-0.48521504,-0.006633832,-0.45874405,-0.399934,-0.72533077,0.46355075,-0.93516356,0.6754875,0.018000804,-0.2792285,-0.04481621,0.2606138,0.22847933,-0.26787955,0.118446,0.37036577,-0.20151336,-0.19008031,-0.18388756,-0.3278123,-0.4866339,-0.5912465,-0.023356767,-0.60877514,0.20280375,-0.087663226,0.375521,-0.112697855,0.084488854,-0.36413366,0.31088847,-0.52446604,0.13422142,0.023231186,0.11831433,0.18898128,-0.7336649,-0.28359458,-0.18612991,0.21814741,-0.17512229,-0.33528855,0.23451787,0.2863889,0.5696362,0.014090745,-0.11616014,-0.3781678,-0.07280504,0.18816233,0.33763152,-0.1580934,-0.1941545,-0.34313428,-0.13620967,0.54704756,0.38814786,0.12444774,-0.4616821,0.23305008,0.06273049,-0.2807979,0.75816405,0.53972584,-0.28140786,-0.24793394,0.34453556,0.55032265,0.23192056,-0.32978263,0.23417762,-0.11046291,-0.5622715,-0.27378404,0.4541926,-0.09920588,0.41604525,-0.12787154,0.122275315,0.66354424,-0.1327473,-0.12918407,0.12348436,-0.21982345,0.013922004,-0.28427613,-0.25026914,0.16994046,-0.5114783,0.17627645,-0.29615438,0.41589943,-0.07002352,-0.925359,0.24386023,-0.6994574,0.14088045,-0.020937327,0.7008454,0.8859323,0.6702381,0.20092426,0.7604219,-0.4114609,0.08751064,-0.14343014,-0.16846861,0.161407,-0.23951426,0.052358784,-0.43223512,-0.04727572,-0.35720384,0.0037175028,-0.08878532,0.6006627,-0.33716,-0.15669955,0.060795166,0.54155153,-0.36323783,-0.10766934,0.9132899,1.1273769,1.1647235,0.2394965,1.5019481,0.1717376,-0.05648497,-0.17019844,-0.14926219,-0.64351314,0.27876955,0.20097473,-0.112656005,0.34666398,0.14699572,0.21181811,0.47168902,-0.40841082,-0.115788616,-0.044920966,0.3180153,0.034347944,-0.13292228,-0.3533758,-0.17493285,0.24409896,0.15008587,-0.020262696,0.20888954,-0.24924158,0.3594875,0.34213513,0.8386968,-0.075428165,0.017470768,0.13710856,0.40759963,0.11952578,-0.14980991,0.14876698,0.19018452,0.39254028,-0.067843795,-0.6617509,0.018070795,-0.19213006,-0.34116715,-0.193834,-0.3299382,-0.31743115,-0.3992023,-0.32945377,-0.29833233,-0.000824534,-0.3357633,0.48038074,-2.3890016,-0.27030736,-0.20624174,0.2673531,-0.07159209,-0.3103434,-0.14257179,-0.3328436,0.4832412,0.24564272,0.40021294,-0.5722567,0.80300975,0.54361343,-0.6546074,-0.039042167,-0.8064378,-0.24420299,0.021659764,0.38179207,0.026498506,-0.108402744,-0.1943794,0.028060313,0.5926394,-0.058543563,0.07444439,0.3161761,0.7304836,-0.097415015,0.7948997,0.103791274,0.53306955,-0.4964651,-0.22628821,0.45078468,-0.54323936,0.43245834,0.11219402,0.10164464,0.5818973,-0.6714665,-0.9658712,-0.7313885,-0.493158,1.2203033,-0.16316198,-0.61415094,0.13662004,-0.45281488,-0.45284763,0.059113197,0.52881026,-0.23122314,0.012765845,-0.8434766,-0.24871093,-0.24264638,0.47966972,-0.117868975,0.09883853,-0.48356578,0.72579616,-0.053836666,0.51455796,0.4471811,0.07665249,-0.43115562,-0.3132089,0.09370139,0.8480085,0.50840634,0.082801454,-0.21159887,-0.31567365,-0.030289484,0.097021475,0.13275076,0.7539016,0.47412813,-0.09681474,0.16944557,0.44272313,-0.1243656,-0.035094704,-0.28465232,-0.2696104,-0.34031427,0.10333891,0.59382033,0.8353371,-0.05160653,0.3487248,-0.21808738,0.22803156,-0.2904781,-0.46007127,0.37643558,0.7359728,-0.024297921,-0.27824503,0.7093137,0.64312583,-0.30642375,0.5628865,-0.6625973,-0.38821074,0.3818043,-0.08135957,-0.45220667,0.0014613753,-0.5096859,-0.039406635,-0.8959503,0.16676322,-0.4738468,-0.5491881,-0.7127475,-0.26967436,-2.8064122,0.11242199,-0.17782725,-0.0703206,-0.23664334,-0.3181734,0.43199906,-0.41392362,-0.92128056,0.079315424,0.071411505,0.512635,-0.12030891,0.07306025,-0.33080384,-0.22003192,-0.30810192,0.27377066,0.34134957,0.26414093,-0.20277837,-0.4945967,-0.006503175,-0.3054303,-0.40254053,-0.21895812,-0.55987084,-0.4624683,0.065088555,-0.47455958,-0.20702913,0.6075938,-0.4520749,-0.22181763,-0.3539433,0.07064823,-0.07273484,0.427001,0.0707471,0.31093234,0.12062685,-0.014560044,-0.28120288,-0.18549515,0.23354258,0.12670885,0.083954506,0.39600325,-0.28149086,0.16218592,0.3401368,0.7884749,-0.124861166,0.9328038,0.24778165,-0.13417968,0.46232033,-0.1332774,-0.5334582,-0.77550685,-0.11876147,0.02304883,-0.45477343,-0.53486216,-0.017127734,-0.31551722,-0.8579514,0.5613908,0.05774866,0.04900032,-0.16700625,0.20351829,0.24777116,-0.10500564,0.110721976,-0.1469128,-0.22633259,-0.40784517,-0.67432076,-0.7786868,-0.52967685,-0.1895753,1.502317,-0.025112469,-0.007942473,0.44366506,-0.31525105,0.1490083,0.40681583,0.060737856,0.22448595,0.6267409,0.0069379164,-0.70030147,0.28761134,-0.13833801,-0.16542564,-0.45210993,0.08163628,1.0788885,-0.72969306,0.5759574,0.49647757,0.14219114,-0.070642576,-0.78375286,-0.19721413,-0.024672247,-0.306394,0.7264353,0.41245672,-0.75905406,0.5504016,0.28268725,-0.122850455,-0.79872715,0.7125247,0.012213373,0.022889834,0.08867902,0.48650756,0.21134414,0.009255494,-0.010274424,0.48782852,-0.26018447,0.46716467,0.2249665,-0.15266767,0.24307479,-0.09822475,-0.20106465,-0.66960394,-0.05063867,-0.2954612,-0.3378599,0.18683802,-0.20285313,0.1841108,0.22334972,0.20887396,0.4485423,-0.28390834,0.14138526,-0.23091467,-0.31231648,0.06231176,0.57896686,0.570307,-0.50313497,0.70458233,0.14525358,-0.1398967,0.0017576722,0.1687745,0.34592643,-0.019402932,0.41997942,-0.12630986,-0.040821772,0.17338838,0.92155737,0.21072194,0.29086587,0.08297034,-0.040824927,0.37138516,0.2078396,0.31953225,-0.25912297,-0.5277685,0.01878048,-0.10601865,0.21770154,0.38790148,0.026614923,0.32114357,-0.24236701,0.046852175,-0.02675377,0.2742543,-0.21979779,-1.549549,0.30299684,0.21501495,0.87070453,0.56639504,0.12685448,0.24416527,0.58119065,-0.47182754,-0.17053391,0.4880567,0.28968516,-0.26456854,0.49318403,-0.51194984,0.51062137,-0.13212873,0.0602118,0.17225884,0.18288812,0.5685362,0.93668747,-0.13711858,0.07767921,0.14444381,-0.230716,0.17128716,-0.3187303,0.03322065,-0.28684065,-0.29902336,0.9063889,0.6657501,0.45648062,-0.35463592,-0.08036905,0.09005802,-0.27006692,0.0640843,-0.104962505,-0.23684993,-0.26349944,-0.5753086,0.03958519,0.6071831,-0.02168886,0.006375244,0.17721096,-0.41596082,0.37478182,0.08589459,0.081646286,-0.04262569,-0.6775292,-0.2524044,-0.4246306,-0.34168404,0.12913676,-0.19812639,0.014649065,0.23229448,0.002986039,-0.18023705,0.26879048,-0.010127803,0.70341784,0.18570517,0.07470176,-0.13197762,0.06021232,0.23334914,-0.24713168,-0.062250532,-0.39900047,0.24177703,-0.56299525,0.4327232,-0.22903235,-0.31360728,0.05854257,-0.07424101,0.009370301,0.46477413,-0.23848952,-0.22957104,0.2257302,-0.009662573,-0.29635656,-0.2690027,-0.38217175,0.18220186,0.12458653,0.20601834,-0.06384586,-0.05035787,-0.1538261,0.5319804,0.19484565,0.31240925,0.43478855,0.08966525,-0.48649603,0.025025455,-0.15445049,0.68400925,-0.079849094,-0.08627052,-0.12825772,-0.2613765,-0.21942414,0.68330914,-0.11763012,0.13362494,-0.034857694,-0.4130929,0.73779106,0.12945716,1.2133468,0.01867806,-0.51825714,0.054118812,0.6320805,-0.36134312,-0.015059014,-0.34164315,0.8299757,0.52493984,-0.21247347,-0.08030547,-0.5451558,-0.11312454,0.008458807,-0.3481113,-0.21150443,-0.18090732,-0.7105148,-0.03076409,0.15698609,0.24912444,-0.010821447,-0.045838144,0.18162078,0.11763482,0.08277969,0.3467868,-0.55332005,-0.17524607,0.32299283,0.33763373,-0.09187888,-0.036405355,-0.31485966,0.33214852,-0.67799276,0.035605874,-0.58635294,0.085054524,-0.22935821,-0.20622729,0.19736934,-0.04030147,0.3013802,-0.32114485,-0.2438689,-0.21501762,0.57186687,0.17736365,0.4936805,0.740343,-0.18493065,-0.0054105553,-0.033662654,0.47618392,1.0230858,-0.3139895,-0.16158618,0.1663711,-0.4189294,-0.50464034,0.19395913,-0.8592497,0.089298695,0.29392368,-0.3616095,-0.17451476,0.2929648,0.04307795,0.37369582,-0.06730479,-0.777146,-0.08450977,0.4902546,-0.065772876,-0.26765043,-0.12608135,0.12561591,0.776652,-0.18680866,-0.23880126,-0.029632144,0.4229606,-0.3732605,-0.5905022,0.16529582,-0.47879165,0.45535183,-0.03067724,-0.18461367,-0.028709885,0.098267876,-0.52359855,0.096646436,0.39710286,-0.3238764,0.0033901287,-0.41987514,-0.07904548,0.95230114,-0.19214003,0.19165558,-0.52697814,-0.66655266,-0.7691535,0.039897844,-0.13564529,0.40271738,-0.13531399,-0.5283377,-0.06089193,-0.18780485,-0.20218319,0.10962193,-0.56987613,0.5807549,0.15425958,0.59995246,-0.2547484,-0.8545525,0.13304007,0.14417332,-0.08857513,-0.33553174,0.676625,0.06068371,0.6380281,0.09307451,0.09516914,-0.15123788,-0.69276595,0.46876633,-0.24867429,0.019367503,-0.92861724,0.053522266,659 -715,0.2629005,-0.22013369,-0.5764572,-0.0078095975,-0.3591549,0.017774425,-0.19700465,0.22860903,0.16991363,-0.16292867,-0.34826076,-0.21037824,0.1673688,0.66633797,-0.045814708,-0.48491457,-0.19615108,0.20633742,-0.8168775,0.4612593,-0.5350321,0.18436728,0.17781082,0.37320182,0.19952613,0.35107648,0.14799601,-0.060209136,-0.27320293,0.09569605,-0.32067007,0.1560439,-0.35581633,-0.049576804,-0.13162936,-0.3332818,-0.07865823,-0.47926566,-0.32034442,-0.6553307,0.24555302,-1.016288,0.53502667,-0.04125182,-0.022270491,-0.00387079,0.26286158,0.45469368,-0.3852409,-0.12722835,0.12640946,-0.34662464,-0.17427725,-0.37570316,-0.21166399,-0.1337726,-0.4810756,0.0051009655,-0.50466657,-0.36512983,-0.19132668,0.18315665,-0.2601559,0.11304795,-0.1647949,0.31882662,-0.40128094,0.124906436,0.3676926,-0.29152828,0.21758395,-0.47161502,0.07378204,-0.018930487,0.52608466,-0.1801599,-0.18495134,0.388405,0.32103473,0.33531216,0.09115697,-0.16360706,-0.353303,-0.14325133,0.21157616,0.48486054,-0.10779591,-0.25879398,-0.11983084,0.1722183,0.1911644,0.4791106,0.08659852,-0.19949704,-0.12539221,-0.27331412,0.06103049,0.25005654,0.4735195,-0.2685153,-0.47472033,0.2873469,0.7293715,0.32475904,-0.15329406,-0.20179272,-0.0034976625,-0.65865314,-0.18834434,0.11699825,0.04962725,0.5014519,-0.10286586,0.20588621,0.7943877,0.014173632,0.020846037,0.010801231,-0.051380213,-0.24789491,-0.2240218,-0.008396699,0.061093703,-0.34656063,0.102946386,-0.11337696,0.6017325,0.14752573,-0.704367,0.40238836,-0.7370117,0.20455647,-0.06457787,0.5629445,0.4824632,0.53221107,0.29431024,0.75856876,-0.29582956,0.3208659,-0.15279748,-0.47065833,0.07484532,-0.32934064,0.10057001,-0.57743394,0.02040901,-0.25124705,-0.1116406,0.15691032,0.24330561,-0.43383932,0.085577235,0.16881433,0.8985387,-0.35693997,-0.042587735,0.7994792,0.99679524,1.0620462,-0.033229437,1.2496244,0.21297964,-0.26173285,0.14150406,-0.37615693,-0.785493,0.22020473,0.3658783,0.04477168,0.31179953,-0.10354888,-0.105565615,0.33216128,-0.35291627,0.097639374,0.044503193,0.054500956,0.059571907,0.058151565,-0.53054965,-0.26063767,-0.1540435,-0.13079652,0.1451623,0.2259873,-0.12528878,0.6465578,-0.2048401,1.6933672,-0.035977755,0.19342111,0.1533375,0.50393003,0.14864923,-0.04870985,-0.29405248,0.23273185,0.40145335,-0.0040103015,-0.55405253,0.21814038,-0.27116185,-0.44938147,-0.16764188,-0.475874,-0.12690142,0.1323021,-0.39136806,-0.24611689,-0.0953002,-0.3274919,0.49858445,-2.8358583,-0.14542365,-0.062575765,0.36924106,-0.36229923,-0.2101209,-0.116798565,-0.4374474,0.35258147,0.17465559,0.54250395,-0.58862364,0.5154666,0.35975516,-0.58013827,-0.27279478,-0.6774186,-0.07046465,0.0998911,0.40626892,-0.036854077,0.0107389325,-0.021157457,-0.047716003,0.5942227,-0.18751372,-0.02137136,0.56241345,0.2688009,0.20472646,0.4428444,-0.05367369,0.6140412,-0.5377836,-0.22201443,0.31265008,-0.19503729,0.4479888,-0.11930021,0.14622745,0.5005401,-0.5864707,-0.8813753,-0.6973556,-0.28146845,1.0731617,-0.33057326,-0.46353757,0.35700193,-0.459226,-0.041894633,-0.039741013,0.5394361,0.037082996,0.09419023,-0.6580962,0.15067452,-0.041007422,0.30684128,0.042575654,-0.19328204,-0.38298142,0.6880487,-0.03368,0.5313795,0.39658484,0.3031572,-0.08683909,-0.37159377,0.14890946,0.5408569,0.16580948,-0.074055955,-0.08292045,-0.38262716,-0.055459864,-0.33323604,0.07481989,0.46344164,0.54175246,-0.037383575,0.1547344,0.27537155,-0.026873311,0.088173345,-0.16988891,-0.10652509,-0.027989874,-0.0058140205,0.4516993,0.9041738,-0.01710695,0.5861167,-0.24762592,0.4617367,0.002554866,-0.6218309,0.73180616,0.4724126,-0.10541093,-0.08860164,0.5787615,0.42207256,-0.47749278,0.42960614,-0.5273953,-0.24944547,0.5682984,-0.22903267,-0.48289296,0.2128124,-0.17299901,0.12543295,-0.88823706,0.22288114,-0.3350531,-0.48520038,-0.36357978,0.06552524,-3.159784,0.24194978,-0.33352783,-0.16966096,-0.20920083,-0.099402025,0.061476514,-0.6015471,-0.65609604,0.13789994,0.20885079,0.673912,-0.08613717,0.16271646,-0.23350818,-0.12363224,-0.18865189,0.10799274,0.15416299,0.34779012,-0.30344674,-0.38490093,3.870978e-05,-0.10561847,-0.62677896,0.21278015,-0.65013814,-0.35957998,-0.14103189,-0.45379162,-0.2469776,0.60937154,-0.30139235,0.012317951,-0.26149598,0.05696708,-0.1699784,0.23632163,0.10638566,0.2704975,0.28528732,-0.057268612,0.16192175,-0.2007615,0.41493437,-0.11382769,0.3090332,0.17789914,0.011078005,0.2674454,0.37473628,0.8462404,-0.30410576,0.8845042,0.45942947,-0.0073168734,0.19874305,-0.42055976,-0.25687456,-0.39882606,-0.20440179,0.18866092,-0.35259786,-0.6761144,0.0009299299,-0.23384324,-0.81656045,0.6413322,0.054706845,0.30401567,0.043294862,0.11953187,0.5802393,-0.3317354,-0.14976908,-0.1958186,-0.14024194,-0.6412541,-0.21773386,-0.53297174,-0.6928497,-0.12960184,1.1600568,-0.3216264,0.1913779,-0.024603102,-0.56626284,-0.08784146,0.21885978,-0.0029566241,0.4446783,0.34701774,-0.1634902,-0.7562656,0.46341148,-0.0017829514,-0.18935378,-0.5780195,0.23122893,0.68527114,-0.703859,0.53611684,0.2555701,-0.03323448,-0.16234162,-0.46360695,-0.24794659,-0.17381953,-0.13359858,0.3254802,0.20732531,-0.6154565,0.41943735,0.44056892,-0.35138816,-0.82072246,0.17152342,-0.07312763,-0.350647,0.1284391,0.2167585,-0.030597141,-0.09699071,-0.16450475,0.079787925,-0.34490675,0.31206197,0.24291895,0.10988403,0.036672648,-0.20020787,-0.2745388,-0.6365362,0.17513393,-0.47452185,-0.06446698,0.50191903,0.14632775,0.042282626,0.11284005,0.05364378,0.3790506,-0.3078559,0.095477946,-0.058989994,-0.40676388,0.09654401,0.34092653,0.34520566,-0.6203254,0.58235353,0.066228375,-0.31216648,0.059361037,0.034531076,0.49618956,0.05721935,0.4366739,-0.12341499,-0.280053,0.23539136,0.67496085,0.06022525,0.32486233,0.002056585,-0.010865035,0.3742377,-0.036340214,0.18528023,0.084665045,-0.48163652,0.19560528,-0.20499882,0.2093091,0.41681874,0.32540628,0.3898282,0.094312154,-0.16106609,-0.02270203,0.10550663,0.04510607,-1.072583,0.5221131,0.29333627,0.8597419,0.3727546,0.23851469,-0.20477101,0.8188716,-0.33582157,0.08184223,0.36123085,-0.08289312,-0.62654525,0.68642485,-0.8637342,0.5731959,0.010872965,-0.28081864,0.08854621,0.07189798,0.26059076,0.8179854,-0.24599963,0.011964379,-0.015224587,-0.13838533,-0.09485482,-0.47983173,-0.16141836,-0.5980271,-0.40080434,0.7425586,0.32843745,0.49064234,-0.11313444,-0.16275968,0.15822102,-0.0029351986,0.37992364,0.00037490405,0.23438302,0.11174165,-0.5861163,-0.16459234,0.534479,-0.11468681,0.38413593,-0.23349074,-0.2951734,0.10047965,-0.3454471,-0.12658288,-0.10711752,-0.5275001,0.22126426,-0.29889774,-0.6053296,0.29484084,-0.20672177,0.26109955,0.22187597,-0.021884646,-0.2311643,0.48423025,-0.16564457,1.0651821,0.13270403,-0.15227751,-0.2229175,0.2182853,0.23365505,-0.2542129,0.17347418,-0.21318604,-0.070106365,-0.36676466,0.5962502,-0.015322043,-0.53948617,0.22021466,-0.15867464,-0.040959734,0.5912369,-0.03199384,-0.15226337,-0.08161619,-0.20066026,-0.53056574,-0.11549095,-0.17048961,0.22197247,0.38283777,0.012122189,-0.09955173,-0.12456782,-0.021310082,0.5629461,-0.097673945,0.5971783,0.089868896,-0.0131148975,-0.23281449,0.02971823,0.15815929,0.45951456,0.14282776,-0.10847828,-0.4332557,-0.35225853,-0.26645908,0.19849294,-0.06426447,0.22743592,0.10565739,-0.20419714,0.7752993,-0.03252479,1.1848874,0.074647576,-0.23666614,0.19466083,0.3062704,0.012946314,-0.024681266,-0.4103561,0.85121655,0.53213066,-0.027814064,-0.059900127,-0.41675887,-0.042514067,0.33083308,-0.3150205,0.011724248,-0.010223348,-0.4374253,-0.3480155,0.18704213,0.16703738,0.32093576,-0.09490608,0.17311667,0.01673327,0.13932331,0.22201793,-0.39800078,-0.3251015,0.39873376,0.19608098,-0.08145202,0.13939567,-0.49646458,0.4854892,-0.50987685,0.19527976,-0.38891122,-0.038729813,-0.1656014,-0.36514333,0.18827067,0.058731403,0.29475725,-0.21496345,-0.30382088,-0.13777488,0.512325,0.2112669,0.13600987,0.6575723,-0.23355675,0.049174257,0.09649101,0.44266608,0.9388015,-0.52465785,0.008633483,0.27727434,-0.267127,-0.53995794,0.625515,-0.23620056,-0.20522751,-0.06363869,-0.28002626,-0.55728287,0.23826867,0.2554503,-0.015403528,-0.005164231,-0.50617,-0.10002662,0.18503758,-0.34603706,-0.2826305,-0.44383007,0.3148584,0.61442447,-0.074905984,-0.36548057,0.25772756,0.2161304,-0.21146514,-0.20750782,0.11094312,-0.19051829,0.10874233,-0.07108449,-0.31049544,-0.14984328,0.22717395,-0.34562382,0.04833583,0.021322517,-0.33162168,0.21074845,-0.22678415,-0.022701101,0.9146999,-0.40624985,-0.13435473,-0.531572,-0.51333183,-0.9457257,-0.46264103,0.37223566,0.04821729,-0.025343554,-0.5184399,0.11055161,0.00424132,-0.303247,0.055768803,-0.46028596,0.36260134,0.047960263,0.32461932,-0.3396301,-0.7456993,0.27494937,0.08310093,-0.013612454,-0.49255636,0.5293638,-0.019079057,0.7990402,-0.00024975606,-0.05220103,0.16671811,-0.34334758,0.15546516,-0.27929622,-0.20710865,-0.74039304,-0.05578838,666 -716,0.30494738,0.006913295,-0.6487917,-0.09470487,-0.103337795,-0.0056555155,-0.104893684,0.23501661,0.09470206,-0.4423706,-0.06192624,-0.061109625,-0.05609371,0.2742406,-0.18928453,-0.57099986,0.03269508,0.16728012,-0.3622845,0.21713367,-0.50908035,0.39106706,-0.0667417,0.1728421,-0.14980286,0.21720757,0.2516029,-0.1892007,0.046757605,-0.14729084,0.07320767,0.2849971,-0.5437577,0.38771945,0.044703897,-0.283888,0.07205827,-0.37757793,-0.44631073,-0.5747566,0.36122316,-0.7614721,0.4507567,0.24405307,-0.10913421,-0.044124402,0.1315361,0.2897433,-0.3060802,0.17440858,0.27159256,-0.16657053,-0.0896482,-0.22268552,-0.1497578,-0.1653566,-0.46898365,-0.02218419,-0.5685999,-0.06674092,-0.22812112,0.23325548,-0.37133268,-0.056982137,-0.26282027,0.26496178,-0.3904751,0.0053549362,0.23159912,-0.20346902,0.19463524,-0.3866655,-0.10736123,0.00017051055,0.19798444,-0.31047776,-0.18271974,0.24228351,0.13165864,0.4431977,0.041122913,-0.13424726,-0.18321824,-0.15129104,0.19821683,0.57762086,-0.24976079,-0.31578362,-0.15938625,-0.08755307,-0.055900134,0.21832587,-0.16292939,-0.3866202,0.061358433,-0.026049849,-0.1046033,0.27285445,0.61364335,-0.16933301,-0.17503351,0.37788233,0.4277612,-0.06954626,-0.027176132,0.18576966,0.13437127,-0.5393686,-0.36330283,-0.008230984,0.013694293,0.38824132,-0.050574765,0.40277487,0.73044306,-0.25448307,-0.055760648,0.12964112,0.08507312,-0.017334122,-0.30622783,-0.16879636,0.3054484,-0.4338142,0.102252826,-0.03825509,1.0105271,-0.038650237,-0.77626455,0.31362092,-0.49790478,0.06054358,-0.18379626,0.6717543,0.541359,0.40253797,0.05540822,0.84795976,-0.5585563,0.10490727,-0.007094035,-0.5826646,0.056073748,0.08909508,-0.046488386,-0.4066551,-0.18883258,0.27887446,0.06060206,0.040249083,0.2761235,-0.5626818,-0.088109955,0.038324155,0.75369805,-0.33313575,-0.025701366,0.45340538,1.0838838,0.7504171,0.08122574,1.0375348,0.24677035,-0.15931202,0.10590304,-0.24874347,-0.8823735,0.25655052,0.21861127,-0.3690255,0.12942372,0.17492335,-0.16889097,0.29112095,-0.4656873,-0.01744375,-0.21843848,0.29605606,-0.09989696,-0.1392708,-0.39202303,-0.15694387,-0.0013665227,-0.026851106,0.26253217,0.3682986,-0.31081533,0.12794198,0.050664067,1.5377138,-0.098715715,0.4099774,0.13092197,0.39776427,0.27965865,-0.009602987,-0.19183773,0.20885612,0.4094969,0.09387486,-0.5835442,0.16652346,-0.16079132,-0.54532796,-0.13085972,-0.28617096,-0.025733653,-0.23225117,-0.39518827,-0.110567205,-0.073979065,-0.4967947,0.4177522,-2.8215358,0.037011545,0.087816864,0.45911163,-0.1770387,-0.17722987,-0.21931149,-0.36492187,0.36491066,0.38408154,0.44210082,-0.56409645,0.35910195,0.610405,-0.26740542,-0.15525046,-0.5958876,0.18784057,-0.21763809,0.14000167,0.21301924,0.012737072,-0.11433887,-0.08134783,0.2970393,-0.2185854,0.08516429,0.27880928,0.3808382,0.15387648,0.37412736,0.029906806,0.504518,-0.5523959,-0.2508607,0.27612376,-0.4138169,0.1585261,-0.15568678,0.072385326,0.23899852,-0.40291178,-0.8749409,-0.53607345,-0.23195532,1.0955523,-0.25638598,-0.25416097,0.31120232,-0.14404172,-0.29178804,0.045354407,0.48426387,-0.23732,0.07974212,-0.7892276,0.15023616,-0.27592248,0.41036522,-0.04676831,-0.02244139,-0.5130224,0.4486952,-0.16157366,0.547098,0.3928307,0.16093346,-0.34732157,-0.5391842,0.12382461,0.93007416,0.1283913,0.18701823,-0.067392536,-0.043064874,-0.09771101,-0.06723714,0.1403502,0.6215967,0.77034706,0.034924824,0.15147324,0.352245,0.065280296,-0.006283934,-0.053975064,-0.40909517,-0.15632662,-0.032602426,0.58058524,0.6929171,-0.27468726,0.30439478,-0.14602658,0.36973298,-0.46372396,-0.3469319,0.47392827,0.64643604,-0.11574166,-0.2433208,0.6974869,0.5780337,-0.2629948,0.3884199,-0.6851504,-0.48073402,0.3312686,-0.20586263,-0.48633698,0.17695172,-0.35326985,0.13493967,-0.9734945,0.4526442,-0.22960673,-0.6294404,-0.49824575,-0.1948136,-3.6806047,0.20646736,-0.36139843,0.0028726505,-0.0040429556,0.10043047,0.25863403,-0.442474,-0.3349945,0.07701793,0.0709416,0.59248745,-0.006797706,0.09778369,-0.25021175,-0.054720815,-0.15203789,0.15899399,0.18644527,0.1596768,0.16857202,-0.5066641,-0.07888493,-0.19680335,-0.28699887,0.015411358,-0.5282698,-0.29610795,-0.0883716,-0.6703562,-0.536942,0.63007486,-0.44220206,-0.014029219,-0.3006803,0.09701434,-0.12613046,0.5405155,0.034543507,0.13461111,0.024474965,-0.16442434,-0.22457303,-0.22229253,0.46647856,-0.1463472,0.366707,0.4682639,-0.3100868,-0.09140411,0.46292418,0.4695948,-0.030102115,0.7484726,0.46261948,-0.13425292,0.25710064,-0.33699954,-0.18409,-0.47570598,-0.4316511,-0.074231535,-0.4250045,-0.4848058,0.047830287,-0.49488437,-0.77457684,0.6961746,0.013638964,0.05267001,0.018408675,0.11622949,0.32522207,-0.15261668,-0.24513772,-0.039923247,-0.06966947,-0.2799096,-0.29841238,-0.63700145,-0.44308996,0.0031330402,1.0650246,-0.19270478,0.04981212,0.07179784,0.00042588895,-0.14553915,0.13390891,0.1369789,0.38295788,0.4521254,-0.18505083,-0.5266065,0.53445584,-0.42203522,-0.17587644,-0.60457885,-0.048701745,0.66003215,-0.83414364,0.5841515,0.5061254,0.21775158,0.034757156,-0.5602173,-0.24177605,-0.041098516,-0.12005973,0.42669475,0.15603742,-0.8537761,0.48212045,0.32443824,-0.19762094,-0.70261836,0.44250357,-0.04003004,-0.28517452,0.024226364,0.34337145,-0.31601304,-0.03304825,-0.12494314,0.20681293,-0.3347883,0.3613091,0.05813769,-0.1977846,0.55259705,-0.2841088,-0.025755694,-0.4752308,-0.009655742,-0.6431592,-0.18217021,0.13820037,-0.055349715,-0.032682993,0.31026104,-0.22347978,0.45039588,-0.39320385,-0.022813309,0.061563935,-0.2958021,0.3123824,0.41319656,0.31740424,-0.42008317,0.6549714,0.0008504918,-0.05994767,-0.2500745,0.33661896,0.51265806,-0.046144146,0.617113,-0.20907107,0.0065133204,0.46051556,0.8112516,0.18681921,0.4554765,0.10984021,-0.010784548,0.16407968,0.20877872,0.22420979,0.08664779,-0.41430628,-0.024213117,-0.19187862,0.30337474,0.37656352,0.24551283,0.5922007,-0.19431199,-0.27065042,0.08794626,0.38735887,-0.082567364,-1.0477952,0.5955178,0.18348724,0.5477501,0.46207073,0.16214778,-0.018230494,0.43578073,-0.089237794,0.20969182,0.13260804,-0.100321665,-0.42095703,0.5764767,-0.60521996,0.4689874,-0.18616462,0.014331176,0.14359416,-0.12888804,0.43187407,0.7268032,0.15955965,0.12587208,0.06065299,-0.36641327,0.062249936,-0.31025416,0.36974204,-0.63336533,-0.24566159,0.6441174,0.57994866,0.26134002,-0.041325312,-0.10573928,-0.01565703,-0.012239981,-0.027503747,-0.089716405,0.16680548,0.0881067,-0.73382366,-0.24316296,0.56643164,0.1397821,0.06043958,0.0541091,-0.18697943,0.37774694,-0.338695,0.09267081,-0.10288207,-0.45228788,0.2212345,-0.25981468,-0.32466424,0.29198855,-0.42661873,0.42004043,0.17030114,0.0012475207,-0.4056219,0.3025079,0.18125564,0.6778008,-0.04883788,-0.23877107,-0.39312938,0.14693417,0.26307854,-0.2620344,-0.3235904,-0.3867845,0.004015136,-0.50905484,0.30066374,0.09313191,-0.21263434,0.24686076,-0.22237055,-0.0841593,0.58535933,0.0015725952,-0.15380031,0.09692742,-0.2884116,-0.23989886,-0.044177644,-0.2552993,0.25112686,0.24626073,0.060927026,0.04564545,-0.02691799,-0.24486431,0.13610281,0.088457696,0.3043714,0.35884666,0.2331747,-0.21410751,-0.06157277,0.09064979,0.6334423,-0.07362418,0.050590534,-0.27799237,-0.3895015,-0.142884,0.04741867,-0.19251591,0.27141786,0.17132053,-0.25090328,0.7332496,0.14693877,0.96435004,0.14610612,-0.14597903,0.047002032,0.47853068,0.10481803,0.019481558,-0.50343025,1.0738251,0.6595955,-0.24112016,-0.29340103,-0.1993944,-0.12639284,0.08300638,-0.20003244,-0.46443802,0.047041498,-0.68099785,-0.21796241,0.22090112,0.27461845,-0.020872382,0.041018017,-0.0528362,0.15137316,0.052898664,0.044301264,-0.6065358,0.01617366,0.28388196,0.41853082,0.09002623,0.14399722,-0.46304944,0.42806637,-0.55880386,0.06632879,-0.26950538,0.13692938,-0.22342494,-0.25525343,0.11557046,-0.097532116,0.4475922,-0.21577364,-0.011710034,-0.11585139,0.37364197,0.2741769,0.23330215,0.8342489,-0.24953564,0.06926091,0.08091591,0.57592905,0.9504833,-0.40985647,-0.1815842,0.5241158,-0.22134253,-0.7764518,0.18724276,-0.35623005,0.014171949,-0.17224771,-0.4496743,-0.25328365,0.34143984,0.07729583,0.10547613,0.076419786,-0.56927425,-0.048150145,0.2227609,-0.14540012,-0.1956577,-0.25037143,0.22971974,0.7757918,-0.2107095,-0.19711438,0.1450264,0.34029076,-0.1879079,-0.52170044,0.07456251,-0.3280821,0.24907741,0.14645094,-0.14745128,-0.15487115,0.0062988903,-0.32404533,0.2979506,0.27722505,-0.23134258,0.11096488,-0.21810254,-0.10113049,0.6941775,-0.2580546,-0.05972666,-0.65584236,-0.46781904,-0.9363404,-0.248415,0.4778942,0.09530052,-0.08035718,-0.41693813,-0.07780607,0.08369655,-0.20959836,-0.26805252,-0.21852449,0.45336708,0.005892671,0.3546354,-0.06923768,-0.9248848,0.091616884,0.19561052,-0.40655443,-0.61798567,0.603263,-0.16061017,0.77536213,0.026070787,0.038957044,0.43785605,-0.5767994,0.1057492,-0.24809025,-0.12012766,-0.9123026,-0.052107614,675 -717,0.44901937,-0.23810083,-0.33243436,-0.19963719,-0.36332014,0.05897934,-0.18632911,0.33903363,0.38993308,-0.2879418,-0.011399354,0.06114536,-0.039793357,0.43999636,-0.02119731,-0.65291184,0.056341674,0.1504446,-0.7684119,0.64479285,-0.4443464,0.40337974,0.036068875,0.41815993,-0.13090526,0.28476018,0.3417665,0.06981881,-0.064756386,-0.2315577,-0.13672002,0.019258562,-0.7445257,0.17940532,-0.32302904,-0.25518852,-0.08463042,-0.46113396,-0.20388772,-0.9050483,0.20929495,-0.83536077,0.5519424,-0.09903072,-0.26095998,-0.17335327,0.30983654,0.18254513,-0.24698997,-0.18401861,0.16765359,-0.40919602,-0.11066227,-0.5285364,-0.059872244,-0.44764578,-0.58746445,0.011373117,-0.6749539,-0.33389077,-0.09935728,0.33455694,-0.34996858,-0.13598497,-0.16315642,0.8044503,-0.2354987,0.10878961,0.32502052,-0.503276,0.15819599,-0.71496785,-0.09357435,-0.06228073,0.43832266,0.21791522,-0.36018065,0.53803474,0.4623472,0.40364715,0.26042336,-0.5178474,-0.33210725,-0.24779606,0.13655463,0.4843702,-0.33115658,-0.45063508,-0.21352535,-0.012017236,0.40144396,0.27583668,0.13077481,-0.19992846,0.18682423,-0.08169036,-0.11119881,0.9710181,0.60496306,-0.22027126,-0.23839119,0.20852445,0.5967104,0.10905301,-0.4066835,-0.05515059,-0.08443594,-0.60602534,-0.047654096,0.26147696,-0.06017013,0.5895825,-0.26376745,0.046311323,0.8914117,-0.17199905,-0.15883438,0.17045864,-0.030737072,0.21755864,-0.37947467,-0.055353515,0.41423115,-0.53041995,-0.2296854,-0.56866753,0.6082914,0.10825186,-0.76517284,0.50080895,-0.54689753,0.30638024,0.21048829,0.6624502,0.7516059,0.69355804,0.41986355,0.85937566,-0.13203913,0.009033226,0.32504022,-0.1666066,0.061108768,-0.528342,0.24162725,-0.41226673,0.17678617,-0.103420205,0.10179542,0.14725403,0.44196412,-0.8170299,-0.32897723,0.15366462,1.0397283,-0.14487137,-0.03336183,0.87582546,1.1115596,0.91021895,-0.15042317,1.3036608,0.20918605,-0.22769372,0.011946967,-0.05523886,-0.5843791,0.15636018,0.24264039,0.27284685,0.44843864,-0.19511782,-0.21283855,0.3463125,-0.4909598,-0.18665746,0.17986414,0.21485129,0.23447631,-0.06086835,-0.47169986,-0.13427219,-0.09346685,-0.14246295,0.35180786,0.2433754,-0.52740693,0.5923813,-0.079970725,0.7725314,-0.15091167,0.04873058,0.15335467,0.5460605,0.37465617,0.06929547,0.21775743,0.5657651,0.2740557,0.22137854,-0.4653281,0.25062996,-0.6684469,-0.31631932,-0.17869782,-0.42196152,-0.24332982,-0.06637753,-0.21081744,-0.3488804,-0.04973829,-0.3023984,0.27662435,-2.5679712,-0.36193916,-0.21975657,0.44769335,-0.21132669,-0.115326405,-0.15052103,-0.6299581,0.28683618,0.2641911,0.6124276,-0.7809849,0.24502724,0.49460727,-0.640496,-0.292112,-0.7913749,-0.10201267,0.046504892,0.6405005,0.20749182,-0.1931484,-0.1195536,0.079245456,0.89562094,0.27212504,0.106167465,0.6087952,0.4283309,-0.30841604,0.40425715,-0.1704031,0.5522205,-0.40939254,-0.22124287,0.3422415,-0.62183577,0.11261444,-0.21944307,-0.03469471,0.82720935,-0.3375759,-0.85930383,-0.52238166,-0.1587154,1.0527204,-0.0918512,-0.65637743,0.0799233,-0.15398291,-0.08940753,0.01773887,0.9788288,0.06237919,0.36331865,-0.5269681,0.014815282,-0.25152212,0.21935207,-0.07602528,0.0140881995,-0.31561667,0.8652159,-0.04562885,0.5044894,0.07528757,0.26038164,-0.57318234,-0.42025012,0.006650301,0.7700333,0.48316178,0.083318606,-0.006231606,-0.07428685,-0.234279,-0.44432595,-0.18783753,1.0153117,0.74650663,-0.20713204,0.012502566,0.5586078,-0.15268502,0.0791378,-0.065698594,-0.42369094,-0.2571539,-0.026900282,0.58282703,0.8577825,-0.2170469,0.45734113,-0.12752436,0.42012438,-0.09400421,-0.5614603,0.6989993,0.707153,-0.30015084,-0.009724099,0.43527296,0.35501152,-0.79281497,0.5943235,-0.65666854,-0.41278118,0.818572,-0.20466456,-0.56768835,0.084679775,-0.286944,0.120845675,-0.48076078,0.4676237,-0.3885019,-0.5283908,-0.44158223,-0.23542558,-2.6207163,0.2130243,-0.21256731,0.1428191,-0.64396775,-0.011093158,0.054825205,-0.5081127,-0.49077636,0.12729272,0.30842072,0.6375516,-0.30376408,0.15719287,-0.4419886,-0.30436856,0.07064058,0.5313041,0.11669159,0.24266985,-0.23764457,-0.18924151,0.04407001,0.012093468,-0.68521297,0.13739403,-0.7627639,-0.5171279,-0.17030281,-0.7487724,-0.151434,0.80670494,-0.5385527,0.071379334,-0.30885997,0.24744394,-0.0036139304,0.11577936,-0.01769675,0.23585191,0.2356673,-0.17160246,0.3315864,-0.2518593,0.51962835,-0.050322406,0.5726934,0.1601771,0.12703143,0.24590707,0.4494242,0.7518054,0.011936559,1.1658648,0.19478954,-0.091062896,0.41944772,-0.31009263,-0.4602595,-0.675223,-0.23896863,0.32263756,-0.4009984,-0.32508245,0.15429594,-0.3977381,-0.7869607,0.6763,0.0024171884,0.46893904,-0.056389883,0.67399156,0.42718613,-0.3734167,0.11730576,-0.0051991115,-0.18006429,-0.5587889,-0.116079,-0.7775241,-0.58347756,0.09132111,0.6081916,-0.24805576,-0.034186836,0.044865973,-0.29067698,-0.050223745,0.22022022,0.17869064,0.049984034,0.4931522,0.14938116,-0.651795,0.3040203,-0.21295439,-0.17531453,-0.4557627,0.50154525,0.71931785,-0.6632833,0.5240277,0.50069404,-0.060005344,-0.36391655,-0.5888233,-0.0697485,0.0656467,0.024634533,0.34234315,0.12865978,-0.8677902,0.5348871,0.13772438,-0.481561,-0.7398837,0.18756951,-0.26680237,-0.18586683,-0.19654809,0.5154506,0.16382357,-0.20179437,-0.17423008,0.17869417,-0.6005325,0.16219704,0.06780735,-0.016791293,0.58944213,0.06347292,-0.5044844,-0.8594852,0.05767318,-0.73970705,-0.31225368,0.5207672,-0.15902813,-0.044441663,0.24100828,0.103948,0.42834833,-0.046879265,0.20270589,-0.15503177,-0.41428667,0.46023512,0.48389465,0.41782254,-0.58073294,0.72294134,0.26999217,-0.11929954,0.18662493,0.07502752,0.4006812,-0.008178419,0.65545017,-0.041148383,0.02621498,0.14807789,0.5875776,0.18670091,0.50396794,0.28178403,-0.12693572,0.3255266,-0.13944052,0.33386964,-0.085252576,-0.60415936,0.12685966,-0.12878734,0.03638955,0.5285952,0.24711767,0.35155895,0.25591472,-0.31922057,-0.046866015,0.2218446,-0.104338065,-1.712699,0.3643084,0.26050824,0.9807062,0.192106,0.21769914,-0.3405964,1.043899,-0.1486331,-0.04035894,0.6973749,-0.06504094,-0.30937356,0.7927449,-0.81656617,0.5253838,-0.2021557,0.06471149,0.10295042,0.18856488,0.3739757,0.824719,-0.29644805,0.025249664,-0.04657875,-0.20557532,0.1776383,-0.42407635,0.3747417,-0.084108815,-0.49700734,0.5755888,0.13929592,0.3702857,-0.3197656,0.11842072,0.13288182,-0.17936246,0.38320777,-0.18390203,-0.23528692,-0.13912372,-0.53035885,0.0073905955,0.4580202,-0.11975391,0.2903809,-0.039433025,0.06852694,0.017680217,-0.1167558,-0.15917952,-0.09428457,-0.78785074,0.04005962,-0.24756797,-0.81776375,0.69007564,-0.30709168,-0.03182274,0.2485513,-0.02021392,-0.2774061,0.30570778,0.24074993,0.6687626,0.0075663878,-0.40480182,-0.26660627,0.04934444,0.014165897,-0.52270985,0.28561053,-0.2730086,0.12516603,-0.3895755,0.6559581,-0.33350345,-0.48916295,0.10416817,-0.30249432,-0.14295992,0.5571943,-0.22644672,-0.16160525,-0.010684004,-0.26197553,-0.18142912,-0.047116462,-0.17422684,0.31474236,0.25965798,-0.115949646,-0.22426248,-0.32680023,-0.24819605,0.48662582,-0.050463118,0.33398274,0.30244857,0.090839915,-0.24569415,0.20149678,0.38028258,0.55348754,0.21761928,-0.016287126,-0.30458674,-0.41821894,-0.49263456,0.27803883,0.014625361,0.23994645,0.2059734,-0.3632178,0.97236645,-0.13659123,1.308525,-0.01652928,-0.48437926,0.051236197,0.73948723,-0.093312114,0.16832733,-0.6026841,1.1010929,0.49147856,-0.23293811,0.1285515,-0.6426169,0.19395979,0.5969549,-0.4471296,-0.18791144,-0.043575965,-0.55834615,-0.40121943,0.20901799,0.14713465,0.20265485,-0.20734079,-0.01974403,0.1262995,0.14436477,0.32358584,-0.6574298,-0.00045230755,0.3129349,0.24561647,-0.2396705,0.11619762,-0.26711348,0.39758873,-0.8392613,0.32018882,-0.49081072,0.06297684,-0.19055833,-0.33672488,0.33813146,-0.12590274,0.3979969,-0.36147356,-0.48108244,0.074495114,0.31120598,0.18786089,0.075011276,0.6152301,-0.37523067,-0.121854596,0.3501386,0.73994255,1.4066983,-0.3262428,0.2039445,0.004454597,-0.6485767,-0.74593186,0.41220525,-0.43451265,0.06289603,-0.22540005,-0.48253325,-0.45855233,0.13019228,0.17239493,0.16662186,0.058215372,-0.7375987,-0.40946,0.11993523,-0.46441942,-0.15454076,-0.3593273,0.43873882,0.7105747,-0.17247738,-0.342673,-0.029788824,0.3050275,-0.22136417,-0.85260326,-0.014813295,-0.39521158,0.20042473,0.09992209,-0.30300066,0.0317228,0.09215872,-0.8311379,0.293031,0.3077612,-0.43878227,0.06257008,-0.096843235,-0.027911855,0.7138542,-0.16876386,0.010033681,-0.4956753,-0.6223132,-0.8750518,-0.5458101,-0.00032959535,0.16062102,-0.096035756,-0.5914115,-0.22574663,-0.22576159,-0.23675233,-0.020268746,-0.7007561,0.30932215,0.14412704,0.6816121,-0.4188226,-1.1609712,0.043471493,0.19303177,0.052670047,-0.7370189,0.30439037,-0.12705733,0.8121015,0.13344313,-0.10583475,0.088453166,-0.5194281,0.009264304,-0.40041763,-0.21458231,-0.7365889,0.18120511,681 -718,0.59824497,-0.18310545,-0.60231173,-0.0074821594,-0.25282642,0.024038063,-0.21043032,0.53671587,-0.04871463,-0.11201232,0.020334573,0.14090721,-0.10393175,0.36355782,-0.21655926,-0.73469895,-0.16400574,0.13203086,-0.6508666,0.7052272,-0.31442526,0.4344107,-0.3237354,0.49074796,0.1149844,0.31879103,0.08613868,0.09366305,-0.074599825,-0.058637656,0.020104285,0.17579198,-0.745088,0.13026455,-0.07105403,-0.26173145,-0.047563415,-0.20995428,-0.40753004,-0.73615557,0.2973044,-0.71868265,0.5588853,0.038464125,-0.34580204,0.3131685,-0.0545003,0.3090769,-0.41045076,-0.05300526,0.1257099,-0.037842736,0.028058758,-0.43315893,-0.17992304,-0.47899166,-0.53438807,0.004920244,-0.77833885,-0.31782502,-0.117818244,0.17034279,-0.29161966,-0.10713755,-0.21551174,0.11272354,-0.5273914,0.10816261,0.06587082,-0.13782293,-0.029586038,-0.5332583,-0.038893122,-0.0392832,0.29316235,-0.11070991,-0.12900928,0.3108101,-0.1163116,0.3665074,-0.024767151,-0.20309356,-0.40124482,0.01341364,-0.045187917,0.5552464,-0.21918303,-0.5391149,-0.14047036,0.12010668,0.25690883,-0.034501746,0.141967,-0.30245426,-0.07440008,-0.039874017,-0.028231863,0.41907504,0.5619649,-0.21136339,-0.12983403,0.59791064,0.52407455,0.28847495,-0.06976864,-0.13041556,-0.21599643,-0.31792864,-0.07084466,0.062977,0.042090673,0.37090218,0.15394846,0.33788556,0.52633506,-0.07535829,0.011120489,-0.2225522,-0.09998822,0.18025431,-0.07986942,-0.107468165,0.004977249,-0.24837765,0.30960518,-0.07033242,0.74689156,0.16725312,-0.60245997,0.573913,-0.5350738,0.13367638,0.102548376,0.54552597,0.6982963,0.491005,0.041088495,0.6626266,-0.36656916,0.17773598,-0.042899165,-0.36178684,-0.048313398,0.08658496,-0.120414205,-0.42202413,0.12132769,-0.03286267,-0.2043646,-0.030246612,0.4799198,-0.5812714,-0.105313934,-0.08989286,0.748714,-0.35802343,0.019711623,0.64714944,0.99850243,0.801027,0.002703678,1.0528768,0.51776326,-0.119791396,0.1694832,-0.4156475,-0.73986983,0.2575147,0.37550113,-0.23764548,0.6083883,0.07259273,-0.1453304,0.26802137,-0.13758458,-0.11504238,-0.2265026,0.53221554,-0.0009868696,-0.042038504,-0.3796695,-0.12533364,-0.014390467,-0.02690384,0.10091673,0.34440115,-0.36216456,0.1739677,-0.11540298,1.8918217,-0.08552602,0.13284071,0.12526163,0.7182648,0.35886672,-0.08683271,-0.07329734,0.55428,0.3739554,-0.08332998,-0.6561486,0.04451795,-0.42322153,-0.5551371,-0.10851726,-0.34923464,-0.16684167,0.063988574,-0.32301527,-0.17684102,0.23239206,-0.13852423,0.33233643,-2.5328472,-0.04653695,-0.08507085,0.40167353,-0.38688278,-0.47746685,0.011984282,-0.49779254,0.37464026,0.37435648,0.5122578,-0.4965885,0.28363568,0.33507332,-0.29119575,-0.08946814,-0.41093525,0.13544378,0.13920832,0.53825545,-0.3099059,-0.061043687,0.1877795,0.28148702,0.42713693,0.07612859,-0.06436098,0.4893215,0.40498596,0.008664956,0.16832073,0.03720218,0.49873224,-0.19248034,-0.13405147,0.47332242,-0.14727898,0.46415204,-0.120747924,0.11051775,0.15737692,-0.47218725,-0.9023378,-0.24295092,0.09500034,1.26044,-0.4543957,-0.3609675,0.14890002,-0.13013764,-0.10443999,-0.01706491,0.20116259,-0.21684358,-0.19421902,-0.4921335,0.14847219,-0.12987088,0.3868251,0.025350828,0.1506564,-0.32057574,0.54516226,-0.26925305,0.3772859,0.20275876,0.34324753,0.0005638416,-0.5520378,0.22392862,0.7245951,0.35191762,0.062322177,-0.16039921,-0.3041156,0.06476392,-0.1524702,0.10972379,0.56003594,0.6299857,-0.05134324,-0.017101366,0.3112313,-0.05819507,0.034432158,-0.20675929,-0.2647686,-0.2126033,0.0019180133,0.47909594,0.6984755,-0.2220804,0.6874425,0.007081981,0.30132288,-0.041662075,-0.4243849,0.4703522,0.79618967,-0.28331208,-0.12700197,0.31162423,0.34044176,-0.37943462,0.42952994,-0.65449643,-0.2476252,0.5947707,-0.2677696,-0.37598926,0.41004795,-0.23031399,0.052301362,-0.8796981,0.4136843,-0.05655207,-0.4029291,-0.5054575,-0.18722545,-3.185659,0.023317525,-0.29034755,-0.24985224,-0.064976215,-0.14535235,0.0018701416,-0.88383347,-0.59730893,0.07912434,-0.03285844,0.4252358,0.0018689942,0.17919165,-0.21825501,-0.32036334,-0.300225,0.2726591,0.002455598,0.42894605,0.060811136,-0.3394253,-0.24260037,-0.095055416,-0.25423378,0.11516468,-0.46534392,-0.37653548,-0.17989594,-0.72927946,-0.0316178,0.60265124,-0.33824268,-0.019710986,-0.30658627,-0.011073724,-0.13993126,0.32392886,0.35115412,0.13543466,0.31940287,-0.120647185,0.050078828,-0.44816664,0.22072403,0.15627186,0.36128983,0.38245267,-0.045757916,0.10366185,0.52643895,0.57796735,-0.09455856,0.57382387,0.3868357,-0.16777651,0.5194131,-0.4291884,-0.2864047,-0.75739014,-0.47141224,-0.07503324,-0.21835367,-0.5315265,-0.267386,-0.34637254,-0.80764806,0.368076,-0.28416058,0.42971742,0.051313877,0.27238518,0.5913543,-0.09355144,-0.008321663,-0.11681204,-0.067492135,-0.43302903,-0.20682122,-0.5582275,-0.5978092,0.43624693,0.74000466,-0.23932442,-0.23410557,0.03439551,-0.30336738,0.18350847,-0.25444412,0.11418967,0.24565493,0.32174575,0.09919764,-0.5261558,0.43160185,-0.13385203,-0.02202638,-0.547358,0.20325893,0.58115286,-0.69257694,0.16986902,0.14823489,0.2516404,0.1751975,-0.51878893,-0.11877926,0.33755347,-0.10122419,0.2627087,0.104948446,-0.698248,0.3284348,0.3738683,-0.30267784,-0.77761906,0.31160715,0.075314224,-0.36962926,-0.13400441,0.41030186,0.003938487,-0.037650876,-0.25711533,0.21696122,-0.4338913,0.06638299,0.22464107,-0.0632414,0.19983752,-0.0571514,-0.29204178,-0.58496594,0.2883792,-0.37008002,-0.4949552,0.16232255,0.105840996,-0.05123895,-0.10214304,0.12006138,0.47653908,-0.5580184,0.13868286,-0.02412323,-0.28226644,0.60443217,0.4458354,0.646137,-0.44285935,0.72992283,-0.0035067934,0.13356456,0.23802918,0.017653584,0.50263274,0.10036527,0.24064586,0.31551477,0.05764068,0.2289939,0.7627088,0.23481354,0.62279063,0.075203255,-0.34249827,0.07575809,0.24819565,0.16321042,-0.07669537,-0.30707467,0.071235746,0.26133838,0.08324869,0.525697,0.29810622,0.21663475,-0.14891526,-0.35266432,0.19394661,0.21684383,-0.18248028,-0.9036659,0.2869081,0.14600448,0.75222886,0.3659218,0.115623154,0.087570414,0.41363117,-0.1675525,-0.0038699966,0.26843297,-0.055262864,-0.59836495,0.4594315,-0.50380874,0.4946429,-0.16234687,-0.008685272,0.33574098,0.081536405,0.27004653,0.71842897,-0.05378679,-0.012294127,-0.032314174,-0.20601252,-0.2248431,-0.3710361,0.26394564,-0.40280026,-0.37978357,0.5914625,0.34723246,0.23663872,-0.23256472,-0.018764192,-0.08534903,-0.19953766,0.25405753,-0.12502028,0.017515274,0.11554404,-0.55460006,-0.5568158,0.5067558,-0.088270634,-0.031104323,-0.2912956,-0.09879092,0.30322236,-0.24378592,-0.048546113,0.19940509,-0.7873183,0.4207063,-0.32250008,-0.37213892,0.31505027,0.01431611,0.2331094,0.21152243,-0.08328669,-0.41882956,0.22038998,0.068388656,0.9343606,-0.0703677,-0.25829703,-0.3885826,0.23890811,0.31020164,-0.19940338,0.14777216,-0.27148345,0.103445254,-0.5617744,0.2555725,-0.07028539,-0.40950754,-0.09061387,-0.19912034,-0.09755402,0.4316963,-0.029718308,-0.16092007,-0.19789775,-0.20766786,-0.24715717,-0.17007579,-0.27593037,0.11026219,0.23606865,-0.3621474,0.03206642,-0.043462414,-0.08811922,0.4416393,0.07536183,0.34421736,0.56740195,0.21678546,-0.33320442,-0.13998392,0.31330222,0.54601735,0.12379299,0.17314145,-0.38757044,-0.56856126,-0.3587486,0.15306461,-0.4141574,0.12908897,0.3243609,-0.49124944,0.53880244,0.1507313,1.1543788,-0.1427197,-0.29078653,0.15770823,0.6205514,0.16424781,-0.026492098,-0.53454095,1.1491965,0.6101675,-0.13982137,-0.13285932,-0.15563907,-0.56599015,0.32463342,-0.3737291,-0.12114857,0.027946899,-0.43783617,-0.29102665,0.17188774,0.22130607,-0.060235582,0.055970397,-0.040848073,0.16091776,0.09491979,0.32042295,-0.5820478,-0.22737852,0.3643234,-0.09115733,-0.0064449403,0.111111626,-0.4683998,0.3990048,-0.44823366,0.121573284,-0.4511101,0.099221244,0.06294825,-0.38359576,0.15731335,0.20632234,0.4536152,-0.4336062,-0.52042997,-0.21914898,0.3710397,0.14457634,0.055438325,0.58904433,-0.31592545,0.17833894,0.080429316,0.46191755,0.8716977,-0.007093237,0.05393884,0.2745931,-0.4020926,-0.7029674,0.07517678,-0.1071715,0.2814508,-0.22052816,-0.2877278,-0.62662035,0.18657057,-0.010253622,-0.19433525,-0.06908531,-0.6289539,-0.17705539,0.18775868,-0.28884485,-0.268777,-0.37837443,0.14957505,0.9997349,-0.40550944,-0.3207051,0.15056267,0.11314922,-0.14245255,-0.5857995,-0.07569681,-0.28515622,0.19057035,0.110660106,-0.27738792,-0.29125342,0.23793307,-0.35877785,0.102818005,0.29820842,-0.4123445,-0.024530245,-0.065557554,0.008200508,0.9975608,-0.15596518,-0.21948603,-0.65737236,-0.43258366,-0.9625642,-0.71197563,0.5634298,0.15785052,-0.040957205,-0.8293055,-0.0026876559,-0.18707675,-0.05313278,-0.12924562,-0.45903903,0.31429747,0.16129223,0.5189832,-0.10644657,-1.0533615,0.24832295,0.21438977,-0.18395677,-0.808858,0.50445175,-0.21166888,0.7153232,-0.0028630358,0.0060543874,0.29557514,-0.6164525,0.10823516,-0.42184302,-0.09914088,-0.65737116,0.32275012,685 -719,0.2510369,-0.22313732,-0.31103665,-0.17537846,-0.32289645,-0.024375012,-0.06106052,0.35956624,0.17184423,-0.34956872,-0.2476699,-0.14419262,0.16363771,0.41944584,-0.20385808,-0.68419963,-0.08817943,0.078439064,-0.4914469,0.40285775,-0.69770473,0.20853609,0.17511009,0.22614299,0.16470279,0.40925238,0.47031957,-0.28475034,-0.16588746,0.004274116,-0.21156138,0.074152976,-0.5102896,0.28305012,-0.112873286,-0.23688577,0.09819117,-0.44988304,-0.291475,-0.6296899,0.12505007,-0.9119899,0.22573519,0.024320481,-0.06444891,0.050575994,0.13841747,0.24948868,-0.5454004,-0.0905741,0.24079601,-0.02688296,-0.038782872,-0.23258577,-0.05869082,-0.33896157,-0.45275453,0.006048816,-0.40028682,-0.37598732,-0.27164447,0.14600386,-0.36878207,0.018082261,-0.14958206,0.4246073,-0.47805008,-0.20710094,0.3563482,-0.19013691,0.16793357,-0.4037111,-0.042450488,-0.07270548,0.3261956,0.08961657,-0.10521887,0.48659346,0.37251705,0.2015791,0.29029402,-0.23433556,-0.23717014,-0.12767626,0.41281506,0.40160358,-0.13137427,-0.4810221,-0.22020276,0.12504874,0.0016878981,0.26468843,0.047116254,-0.23316073,0.00017455909,0.048222486,-0.36142096,0.37886047,0.52825236,-0.37129912,-0.3317792,0.28036717,0.56800956,0.054872613,-0.21785475,-0.0914689,-0.004852217,-0.57695526,-0.11566954,0.22459,-0.10841454,0.55014026,-0.21320406,0.071745,0.9148709,-0.18863963,0.034547023,0.003446533,-0.06288436,-0.30911475,-0.461976,-0.09549495,0.08827404,-0.5249318,0.040126223,-0.31270373,0.97353894,0.2896016,-0.7873256,0.5017392,-0.46804097,0.16509606,-0.21728815,0.5808875,0.4232497,0.4721343,0.36975902,0.8582437,-0.43149778,0.16496779,0.0012246737,-0.5775959,0.15906551,-0.34508082,0.11205109,-0.3623557,0.14503339,-0.07861857,0.08185896,-0.049066838,0.31851646,-0.5083302,-0.012542433,0.26618668,0.7886706,-0.3778022,-0.07775163,0.532148,1.0330062,1.0105306,0.15451244,1.1991436,0.4069384,-0.24043362,0.29273435,-0.32839563,-0.78356814,0.18086725,0.40201095,0.3252463,0.06280866,0.035506107,-0.053860262,0.23952597,-0.40169936,0.15539837,-0.22839414,0.3654241,0.19985856,-0.022596914,-0.42768383,-0.32881892,-0.03647482,-0.07104388,-0.034118626,0.15625691,-0.1327302,0.3477462,-0.041537993,1.4170464,0.06467033,0.03748128,0.0145231765,0.69958484,0.25139305,-0.03903406,0.06842624,0.4428839,0.3397389,-0.033395138,-0.59004325,0.25225288,-0.26204622,-0.53425395,-0.051263835,-0.418145,-0.082435295,0.15560836,-0.33761677,-0.15537849,0.074327,-0.20569175,0.5698214,-2.8207548,-0.22123863,-0.062719755,0.18397485,-0.32449487,-0.12422509,-0.09968155,-0.6039315,0.3047921,0.3336789,0.6055542,-0.6992019,0.46370733,0.49555254,-0.5369691,-0.14835057,-0.7422221,-0.08076379,-0.17509812,0.42916423,0.15602794,-0.012550657,-0.20026325,-0.029300997,0.6816613,0.107231684,0.17343578,0.35638177,0.25858897,0.24457805,0.5724823,0.14167672,0.59592533,-0.37683153,-0.043137785,0.2940102,-0.3714927,0.39908537,-0.03127322,0.04539597,0.5240556,-0.45444158,-0.96388507,-0.71359646,-0.44425297,1.0903034,-0.46259958,-0.30595288,0.26039955,-0.15722074,0.08839953,-0.033934638,0.33825928,0.023010671,0.1676462,-0.61865133,0.18886067,0.16665618,0.1082578,0.035417974,-0.08373928,-0.15320979,0.8523953,-0.08782098,0.5229237,0.1419832,0.1317084,-0.072460026,-0.3679775,-0.024428193,0.7309002,0.18209489,0.02738192,-0.19192956,-0.38219687,-0.030686663,-0.24700762,-0.014380822,0.4235218,0.74905026,-0.040459815,0.016516084,0.3995867,-0.07311824,-0.018268468,-0.09647106,-0.31048343,-0.080405354,-0.035969123,0.41691685,0.6933116,-0.21949449,0.45822436,-0.3571759,0.33306402,0.03657778,-0.5324044,0.62159723,0.5625053,-0.11507617,0.00802505,0.36004442,0.58661026,-0.518052,0.36003047,-0.5315001,-0.19492663,0.61449707,-0.19308259,-0.39450935,-0.0035714323,-0.20844497,0.05478074,-0.78542775,0.4808682,-0.31792015,-0.43180087,-0.37940824,-0.092988834,-3.94725,0.119628906,-0.21185635,-0.12569652,-0.10376016,0.014242048,0.21313128,-0.528676,-0.4016837,0.11407341,0.12976244,0.4984647,0.044155315,0.17119232,-0.31665727,0.08036743,-0.2934591,0.14233083,0.008136355,0.35685092,-0.14930329,-0.3220251,0.042558093,-0.24991193,-0.48295578,0.30441773,-0.63840383,-0.5048994,-0.0954337,-0.46615124,-0.42130387,0.6599567,-0.35192907,-0.021195428,-0.07543694,0.14440526,-0.40117806,0.2892184,0.14828008,0.085898146,0.053134326,-0.067946464,-0.07540159,-0.42491797,0.5207187,-0.0743666,0.5102721,0.25134894,0.07328511,0.028890189,0.5482069,0.4891434,-0.048430204,0.94792616,0.26464507,-0.12126275,0.23982921,-0.26121414,-0.14714393,-0.6212318,-0.29859817,-0.12702207,-0.3816039,-0.52634656,0.11659228,-0.3023143,-0.7023213,0.5431769,0.10963775,0.240603,0.028435498,0.054447766,0.4799399,-0.025412206,0.0909171,0.007772872,-0.08389688,-0.7732569,-0.28518474,-0.67607266,-0.4490385,0.10464554,0.8574859,-0.3060333,-0.14675313,-0.2933305,-0.51925075,-0.017525068,0.14767037,-0.06780898,0.31575233,0.42984965,-0.05738383,-0.6860695,0.53832823,0.0818274,-0.09074717,-0.33359084,0.13184136,0.6686586,-0.82062614,0.6673799,0.49266493,0.08233221,0.15723726,-0.35627657,-0.43148422,-0.21010774,-0.12904155,0.4097803,0.035218086,-0.791998,0.45735428,0.43074542,-0.6287572,-0.69201446,0.24524556,-0.16076598,0.003070891,-0.04005066,0.21855952,0.22287557,-0.16530807,-0.1638062,0.19280459,-0.5449406,0.25062984,0.17730424,0.0380604,0.4271372,-0.017735971,-0.31576142,-0.6606499,-0.16839713,-0.59122,-0.13866273,0.34971994,0.07311626,-0.17933288,0.11498021,0.14789186,0.4231974,-0.19248813,0.050189577,0.17703475,-0.3162845,0.40411574,0.3613626,0.2667588,-0.34888485,0.55329776,0.09847557,-0.0052241087,-0.0064591262,0.069252424,0.21959867,0.19797285,0.36961624,-0.07436219,-0.17191283,0.37820917,0.76184344,0.15912808,0.5744364,0.005048715,-0.15075636,0.6124629,-0.06222894,0.14957657,0.14089474,-0.44698197,0.081247576,-0.13990341,0.20217334,0.36471874,0.17656732,0.28715748,0.19018713,-0.13362023,-0.059603937,0.2797173,-0.011714311,-0.9079892,0.46158013,0.34020942,0.6966321,0.55692667,-0.14378354,-0.116065614,0.7996959,-0.20582223,0.2108523,0.3721741,-0.055578597,-0.6964757,0.69719625,-0.6895677,0.38822943,-0.28906217,-0.035024557,0.059014224,0.29043826,0.26059946,0.7366378,-0.28593075,0.023392636,-0.06769982,-0.2833544,0.08693066,-0.44093072,0.1481608,-0.41667464,-0.3764103,0.6021911,0.34239155,0.36210024,-0.06231551,-0.07697676,0.0016518029,-0.13272023,0.39909008,0.007089672,-0.09549089,0.1361997,-0.7154052,-0.37001392,0.5904361,-0.12105043,0.34228006,-0.17962581,-0.2956641,0.19273461,-0.342366,-0.08856834,-0.011757305,-0.49418706,0.073597535,0.06378427,-0.5877178,0.36560568,-0.24492407,0.24100263,0.24106935,-0.009467964,-0.14886756,0.1633083,0.08303402,0.77730435,-0.15089947,-0.3041246,-0.41926274,-0.076363645,0.24759156,-0.23429903,0.11214557,-0.3802246,-0.12229523,-0.45780066,0.69875264,-0.21486942,-0.43781278,0.13494486,-0.26874554,-0.1322585,0.6130941,-0.04183237,-0.16581805,-0.21410185,-0.046816103,-0.29807654,0.033978727,-0.21230626,0.24574082,0.28776148,-0.15713851,-0.07048033,-0.5256859,0.030391904,0.48504174,-0.14773412,0.32562175,0.050623056,0.040909,-0.2235476,-0.03334736,0.1694793,0.46336797,0.28061488,-0.019696208,-0.2541807,-0.17927274,-0.2266778,-0.008716143,-0.17257601,0.21734953,0.07967361,-0.3952615,0.7991749,-0.16099024,1.2787725,0.146464,-0.29383558,0.04717072,0.610239,0.12165295,0.1727106,-0.31304213,0.7483645,0.6535689,-0.12775666,-0.07271695,-0.72589004,-0.19207954,0.32641584,-0.16094662,-0.091737874,0.052568056,-0.59016645,-0.23313507,0.23861559,0.15687789,0.30113247,0.0064097047,-0.088657364,0.0050235963,0.11722754,0.48795697,-0.5262077,-0.17928013,0.15674305,0.26422244,0.049250938,0.13237908,-0.44507593,0.45592248,-0.6503244,0.28936276,-0.30943492,0.038429283,-0.41798654,-0.35151848,0.07800667,0.039645392,0.41584998,-0.092106685,-0.5503575,-0.015469919,0.592994,0.20696218,0.27001226,0.74632555,-0.16912058,-0.00047892332,0.13909224,0.533515,1.168188,-0.36303762,-0.13686131,0.3990248,-0.33724025,-0.8003433,0.5044835,-0.30369452,0.010274882,-0.09493208,-0.3870734,-0.5616874,0.26297152,0.26310351,-0.052119136,0.15412776,-0.53591126,-0.102565646,0.35086393,-0.34740588,-0.29832065,-0.30015218,0.41862628,0.6043407,-0.43790007,-0.1949719,0.09373184,0.17931375,-0.31106526,-0.41511518,-0.21127208,-0.26325694,0.31774393,0.095223255,-0.27693966,0.0061647436,0.18283336,-0.2861434,0.12758945,-0.018781938,-0.42672938,0.2224617,-0.06525279,-0.016489236,0.8465588,-0.14991361,-0.02463502,-0.77385074,-0.46626565,-0.8565655,-0.49643543,0.61976516,-0.0016370874,-0.0009049727,-0.43073815,-0.037706118,0.20938642,-0.24803814,-0.0244173,-0.7204386,0.41923636,0.03539389,0.37951863,-0.09848681,-0.82933193,0.09639464,0.11850027,0.08814179,-0.599107,0.5440003,-0.26680115,0.86716074,0.06896819,-0.101527005,-0.05701675,-0.24198611,0.003040213,-0.45267355,-0.3251428,-0.576284,0.14749998,686 -720,0.4522083,-0.15604001,-0.543619,-0.099018574,-0.26392826,-0.09199866,-0.3097502,0.020494195,0.21568339,-0.3026121,-0.35270378,-0.24185616,0.345012,0.6466122,-0.013991494,-0.82286966,0.014606201,0.2694108,-0.84936684,0.5893921,-0.5441915,0.3181504,0.3427201,0.30964786,0.092950456,0.29762286,0.38236004,-0.13603419,-0.2649911,0.036381245,-0.22295378,0.1315725,-0.7061234,-0.0019696308,-0.13105121,-0.5560407,0.0578506,-0.40037602,-0.2277719,-0.6918102,0.22825202,-0.9857972,0.4623229,-0.047849163,-0.064009026,-0.12449184,0.15658368,0.6058584,-0.29213154,-0.046360336,0.16515599,-0.38680202,-0.15064551,-0.2795405,-0.09620795,-0.15850845,-0.48536202,-0.07134437,-0.5274057,-0.47431153,-0.23115641,0.091669045,-0.32086486,0.23207417,-0.11401591,0.3785136,-0.4668143,-0.1459716,0.51359755,-0.1481407,0.45041546,-0.41062844,-0.06129221,-0.07970353,0.6153252,-0.1667343,-0.18192299,0.41737917,0.4102792,0.40543082,0.18767217,-0.37254637,-0.3020898,-0.19309846,0.33969948,0.62433875,-0.2007162,-0.3133807,-0.16529502,0.15027615,0.27769822,0.4270117,-0.0031304727,-0.2707315,-0.1124468,-0.0316068,-0.10391336,0.31225824,0.46184584,-0.25308397,-0.447855,0.095575556,0.6445265,0.20431505,-0.23571664,-0.13772787,0.0819198,-0.5633366,-0.13185142,0.37199005,-0.1668109,0.7118988,-0.057333272,0.19859566,0.9370463,-0.2774812,0.108065926,-0.37115738,-0.097601876,-0.25126305,-0.2816845,-0.16748835,0.24203569,-0.6752523,0.08371329,-0.30718005,0.87017095,0.19734503,-0.7688741,0.39225656,-0.58331925,0.21898519,-0.16702285,0.66314733,0.6017098,0.18025559,0.4728517,0.7393104,-0.33298433,0.34132883,-0.09908453,-0.66638035,-0.10829846,-0.24117653,0.29636532,-0.46810773,-0.00045825884,-0.091582626,0.06677031,0.3082004,0.3321977,-0.46397012,0.06683926,0.16988556,0.85260004,-0.36569154,0.049762394,0.65389496,1.0946206,1.0038618,0.099237055,1.2106525,0.48113486,-0.43909436,0.08327626,-0.23462985,-0.61266845,0.11230854,0.43654618,0.02944949,0.3308001,-0.08046986,-0.102699295,0.36700997,-0.42764887,0.09455217,-0.011455095,0.08487118,-0.028953386,0.042353056,-0.6972295,-0.24807684,-0.23228313,-0.16385573,-0.016048463,0.17927378,-0.048985485,0.62220377,-0.12699787,1.426139,-0.05746997,0.047678426,-0.027962932,0.51729083,0.21128827,-0.04309277,-0.16003157,0.22449853,0.38165304,0.016335877,-0.49351814,0.2101148,-0.33528173,-0.29034263,-0.13927718,-0.27395165,0.23932984,0.2770951,-0.44187486,-0.061008155,0.082649484,-0.19480896,0.45016208,-2.4453628,-0.32740653,-0.20901902,0.13119017,-0.33479822,-0.19033572,-0.13788281,-0.6702363,0.38310778,0.1268315,0.55152166,-0.7419824,0.4352377,0.36471242,-0.47995615,-0.16770639,-0.8504147,-0.266905,-0.03729982,0.31737205,-0.033290353,-0.19151746,0.01687291,0.22342819,0.6663964,-0.061583184,-0.0239986,0.58374023,0.27640226,0.24874394,0.6066285,0.0650577,0.6492535,-0.37901068,-0.18678896,0.34426662,-0.04497641,0.29234582,-0.22405267,0.24025449,0.54160917,-0.45869556,-0.9995088,-0.67022526,-0.5107069,0.9515408,-0.42431912,-0.5589165,0.18813016,0.13457638,0.04127387,-0.0020087613,0.49484628,-0.046112172,0.19480135,-0.7011028,0.16389726,0.03154244,0.20856203,0.16172951,-0.120108835,-0.29024768,0.6310981,-0.10028613,0.30103424,0.36126673,0.40303162,-0.0038670255,-0.3927563,0.18139139,0.93365926,0.2754104,-0.015247409,-0.3090759,-0.32778352,-0.18455115,-0.29113388,-0.031644203,0.26592633,0.98897654,-0.070361264,0.098022304,0.22833559,0.023600621,0.016869418,-0.17120937,-0.3307253,0.04493064,-0.05607674,0.5054475,0.68608,-0.053163297,0.6873716,-0.19427237,0.33221528,0.111991696,-0.519165,0.68321675,0.6913695,-0.038731173,0.01671532,0.38757846,0.302945,-0.5178597,0.51284844,-0.61986643,-0.19174026,0.75782216,-0.1999512,-0.38742495,0.30090594,-0.29310137,0.14435765,-0.90050465,0.36902937,-0.34933963,-0.23256661,-0.30473486,-0.0051723537,-3.8830378,0.31622404,-0.22689319,-0.13571855,-0.14968708,-0.11330835,0.16209921,-0.63597673,-0.5260588,0.29294658,0.13994443,0.7421065,-0.09301123,0.10199596,-0.13848248,-0.18035771,-0.118467286,0.049350634,0.2448985,0.21020284,-0.1558881,-0.46997052,0.10682274,-0.17867678,-0.6361892,0.26761484,-0.5976791,-0.5324191,-0.20222512,-0.5112392,-0.53402907,0.6569328,-0.33149564,0.11204866,-0.27717665,-0.0007957621,-0.2527188,0.41931993,0.16754302,0.29882175,0.06569424,0.07817434,0.08356113,-0.29505587,0.34419298,0.062462803,0.19357374,0.05036809,0.018432947,0.21846448,0.39736968,0.73857236,-0.047480013,0.8055286,0.4399903,-0.13286997,0.113675304,-0.3247688,-0.16533595,-0.67426056,-0.47715455,-0.094093986,-0.38191503,-0.6788982,-0.12632337,-0.3910058,-0.76885414,0.6691312,-0.07569882,0.3406556,0.061815783,0.27772474,0.41316003,-0.22780164,-0.015313128,-0.11796188,-0.08175206,-0.7176499,-0.20110525,-0.7325671,-0.6222286,0.01653227,0.67093235,-0.3694042,0.004378475,-0.03631266,-0.41708344,0.20126922,0.24607696,0.08949462,0.27404606,0.4303575,-0.09620982,-0.73384184,0.5144921,-0.0814563,-0.24012025,-0.62764513,0.16189578,0.7175677,-0.7762778,0.64157224,0.4116281,0.028962173,0.05075833,-0.40968177,-0.38127893,0.011830758,-0.292902,0.3302605,-0.03371908,-0.57090384,0.45188582,0.30820853,-0.44898683,-0.7231456,0.3278162,0.121157035,-0.34968954,0.070822395,0.2745292,-0.026259633,-0.05761876,-0.4017154,-0.056734398,-0.5248304,0.18236098,0.42172685,-0.023885999,0.12714006,-0.049311105,-0.24329185,-0.76291597,0.13179451,-0.38036716,-0.0126934415,0.3601464,0.026328294,-0.048394486,0.11862811,0.13126057,0.32156006,-0.34239992,0.13333625,-0.055246335,-0.519674,0.25043315,0.43277514,0.1420335,-0.44885033,0.6512695,-0.025336912,-0.4404373,-0.14903565,-0.033878747,0.39334673,0.13238534,0.30882627,-0.20017274,-0.37095478,0.27473953,0.6245779,0.083627634,0.48074192,0.20728189,-0.040052645,0.4465474,0.07842273,-0.0073617194,0.1684288,-0.298854,0.0072028306,-0.16070564,0.10233033,0.60168,0.3815074,0.3890667,0.10436999,-0.15635654,-0.008205514,0.1447679,-0.04982698,-1.0059127,0.4432329,0.2588836,0.7445259,0.48098695,0.037390035,-0.19521634,0.54568136,-0.41428745,0.14179662,0.28156084,-0.030945344,-0.48487192,0.91276956,-0.72060555,0.40778574,-0.09690463,-0.11718369,0.17838351,0.15057445,0.28791815,0.89027435,-0.2761712,0.084522605,-0.11832617,-0.09615359,0.031087808,-0.42625266,-0.10576415,-0.49422258,-0.48417285,0.7869699,0.2932569,0.4783063,-0.17496371,-0.044640753,0.05650923,-0.14935265,0.34208506,-0.10054293,0.16494118,0.21529219,-0.6314653,-0.25022107,0.5686455,-0.18054777,0.21451807,-0.20240869,-0.1835948,0.06541233,-0.18555458,-0.052183848,0.0012445783,-0.8964454,0.073812544,-0.40433455,-0.48243392,0.40727362,-0.22250588,0.27030468,0.21989833,-0.021870183,-0.056026094,0.44379514,0.101396866,0.86016697,0.098334655,-0.27847043,-0.24667703,0.18954812,0.38629687,-0.1396304,0.33448812,-0.25996843,-0.10441416,-0.50319254,0.7517309,-0.08719389,-0.25874287,0.17565559,-0.23760432,-0.021512091,0.5878405,-0.30434057,-0.010461644,0.11870836,-0.050212387,-0.41564772,-0.1163236,-0.35224056,0.074635416,0.33796936,0.06450571,-0.040647782,-0.017470658,-0.03833741,0.65335166,0.0011077684,0.5168669,0.13132542,0.07596653,-0.23335549,-0.040765043,0.06054636,0.3683883,0.16602415,-0.123466216,-0.56377554,-0.45208195,-0.2760856,0.058629908,0.013155064,0.25376314,-0.04639336,-0.19776312,0.9523077,0.020249905,1.1460662,0.09433726,-0.41379637,0.06272681,0.3793095,-0.19102216,-0.03994486,-0.47898337,0.8628038,0.4843846,-0.00910187,-0.07670344,-0.39584777,-0.10843475,0.3170798,-0.2208409,-0.008357167,0.085921094,-0.44508508,-0.59479797,0.2269863,0.2536768,0.13297097,-0.11466896,0.2582512,0.103578776,0.106410965,0.42081025,-0.658752,-0.26467627,0.31152564,0.23777682,-0.059549175,0.22855388,-0.26501262,0.46429628,-0.69869983,0.19129062,-0.607396,0.035922237,0.016770106,-0.42308462,0.24699156,0.15857014,0.34791374,-0.35265014,-0.22720355,-0.08128925,0.5637236,0.077821165,0.1468341,0.78823155,-0.31105614,-0.004298522,0.11665935,0.50050884,1.4605429,-0.58739775,0.08778189,0.37091562,-0.28099066,-0.49380955,0.47348186,-0.15173502,-0.022024632,-0.22081973,-0.4623428,-0.6706477,0.1611279,0.16659205,-0.09809403,0.1730739,-0.36206892,-0.16874918,0.35720444,-0.45597664,-0.342529,-0.42767996,0.41058257,0.5621314,-0.3010238,-0.26424626,0.13661204,0.20910168,-0.25329432,-0.31010595,-0.044733223,-0.0892448,0.33155856,0.12774967,-0.29637602,-0.09180526,0.22326067,-0.4651963,-0.118152946,0.09081356,-0.38546926,0.13625282,-0.15466252,-0.24369127,1.051504,-0.38595515,-0.26234648,-0.7190978,-0.5480488,-0.86533237,-0.6203642,0.5882699,0.08627936,0.1571038,-0.33653492,0.097339764,0.008450174,-0.0028417981,0.0840904,-0.36997354,0.2824166,0.15835483,0.47458982,-0.38867602,-0.78124213,0.17435619,0.11257135,-0.13557124,-0.6105085,0.48666206,-0.04482667,0.7778203,-0.015219594,-0.12713464,0.1649234,-0.25733224,0.05580489,-0.35292295,-0.16618465,-0.9119861,-0.060966037,691 -721,0.4954055,-0.0792452,-0.7114861,-0.0674158,-0.42634732,-0.24695206,-0.23791726,0.40889433,0.33897036,-0.36198527,-0.24969317,-0.20297633,-0.1043776,0.37728623,-0.23249578,-0.7396333,-0.03237539,-0.004191408,-0.5295024,0.79788405,-0.22582397,0.20472288,0.21475975,0.34844515,0.5633853,0.3423144,0.17674886,-0.0019399065,-0.03149736,-0.47199586,0.014776725,-0.04634943,-0.89115167,0.21353635,-0.32271528,-0.39408544,0.050742205,-0.6224422,-0.4647411,-0.9147283,0.4624735,-0.7827706,0.392887,0.14228581,-0.14800175,0.20907998,0.21364608,0.34510434,-0.052835252,-0.22262684,0.2530497,-0.01697124,0.0481876,0.021729091,-0.26537833,-0.2918376,-0.6833773,-0.055979446,-0.44898084,-0.039947066,-0.39373052,0.096315,-0.49242762,0.16688761,-0.26260534,0.62222695,-0.39029855,0.065636635,0.19106218,-0.20994343,0.17414138,-0.57027715,-0.3830748,-0.14065799,0.15542957,-0.058901805,-0.08557011,0.5625262,-0.038243648,0.19890997,0.09587805,-0.18141848,-0.24146846,-0.12297459,0.27377656,0.28369233,-0.08870348,-0.28051296,-0.1386021,-0.08546638,0.27868012,0.27000016,0.25268194,-0.19570781,0.0036425819,-0.006901727,-0.2310399,0.5590293,0.5264686,-0.15600416,-0.14433724,0.23989765,0.43146083,0.44883597,-0.15263842,-0.095163144,0.034679484,-0.56332666,-0.17821194,0.10599888,-0.27754,0.5488536,-0.13060161,0.16245125,0.6058315,-0.15906045,0.030607644,0.12281774,0.07765399,-0.045283712,-0.38294417,-0.24672614,0.36682022,-0.5101395,0.45481205,-0.23702887,0.9125896,0.21626729,-0.62144184,0.245523,-0.65797365,0.13194619,-0.053053737,0.45956007,0.66780657,0.4049938,0.30842063,0.73863536,-0.3742061,0.15341748,-0.15433834,-0.34519994,0.051786773,-0.1880242,0.16530696,-0.27563584,-0.18032655,-0.20223159,0.08153538,0.08262194,0.34969866,-0.3271802,-0.13838527,0.04689897,0.91827285,-0.10960185,0.0063620987,0.82783294,1.0639707,1.2700896,0.06008494,0.77348304,-0.07735132,-0.2028214,0.13526349,0.12064845,-0.7864452,0.29612067,0.29047757,-0.054819997,0.049453314,0.06837153,-0.075962864,0.323089,-0.4813137,-0.011694202,-0.15261434,0.2718098,0.05371652,-0.00463176,-0.23549491,-0.3600515,-0.113808855,-0.022958977,-0.034607545,0.36520007,-0.15092537,0.38699847,-0.038295623,1.3243407,0.050239943,0.07783406,0.19393921,0.69764113,0.1481552,-0.12027744,-0.008103992,0.14111057,0.288745,0.12442816,-0.61244094,0.03326998,-0.40504393,-0.3103304,0.07539622,-0.45245063,-0.27274844,0.043440793,-0.45822254,-0.17213471,-0.12869927,-0.2694716,0.3470389,-2.6293273,-0.005606312,-0.0906886,0.2827729,-0.3574535,-0.3292771,0.01171587,-0.7426414,0.5546271,0.19202463,0.54816747,-0.49431455,0.42203572,0.62926394,-0.70765567,0.07525864,-0.5318878,-0.17519763,0.11564414,0.32379824,-0.14042355,0.13649756,-0.028510282,0.029684216,0.46290842,0.40124738,0.09931393,0.29969925,0.41723728,-0.20929544,0.65171856,-0.14356183,0.40373766,-0.54911166,-0.033179693,0.4644182,-0.52752614,0.49230924,-0.4521381,0.09567134,0.60507625,-0.62537354,-0.92372143,-0.47965643,-0.2753498,1.2580857,-0.18252386,-0.60793686,0.31568548,-0.30420527,-0.0817959,-0.08467925,0.62135845,-0.07189219,0.02344302,-0.62438446,-0.0971491,-0.29565042,0.2367548,0.026743345,0.031793304,-0.34094477,0.7845169,0.14430457,0.55624956,0.25835037,0.20961833,-0.26327518,-0.44566947,0.30275702,0.7754066,0.40515798,0.023253085,-0.42974886,-0.2200021,-0.35909188,-0.23990437,0.036284093,0.7158703,0.55877936,-0.20150867,0.1493703,0.40147543,0.112692505,0.031376004,-0.11897564,-0.40743068,-0.28783473,-0.1473458,0.5259399,0.973717,-0.03443551,0.13159211,0.03219851,0.3431659,-0.21307103,-0.38885647,0.44443908,0.8190684,-0.09739142,-0.25998867,0.49656913,0.5828923,-0.19483764,0.5684903,-0.3013057,-0.43121094,0.44128326,-0.051661234,-0.55823696,0.067248955,-0.35760573,-0.07223888,-0.5484054,0.096288934,-0.46489233,-0.30586916,-0.5190696,-0.096055396,-2.755793,0.06714216,-0.22832698,-0.110336155,-0.3464896,-0.15365355,0.096142635,-0.5593755,-0.7999557,0.08079883,0.13937834,0.83438116,-0.20107335,0.14094943,-0.23750356,-0.2436316,-0.40578893,0.21940228,0.34472054,0.345133,-0.13868102,-0.3442333,-0.3154243,-0.13418122,-0.4433006,0.040479586,-0.37348044,-0.4301753,-0.16883191,-0.6014374,-0.29989317,0.68263334,-0.28820604,0.017352257,-0.022519413,-0.044447057,-0.14869809,0.07886301,0.23893353,0.37317866,-0.034260925,-0.14389701,0.07033311,-0.22406259,0.43016237,0.17250673,0.6128622,0.35398117,-0.070428595,0.19467065,0.4021424,0.6487669,-0.12787083,1.0531414,0.18640892,-0.09055603,0.24357483,-0.1801437,-0.5694225,-0.6533666,0.056881927,0.10660085,-0.2782275,-0.35220224,0.13309458,-0.29513237,-0.8346387,0.5552737,0.082884915,0.27204168,-0.07348686,-0.15443149,0.44793952,-0.21767847,-0.06467909,0.15956734,0.10575665,-0.58543915,-0.2714721,-0.6694594,-0.4063972,-0.16857934,0.779312,-0.21423556,-0.2114301,0.2562849,-0.28799498,0.21300404,0.0557897,0.03914673,-0.0839469,0.45688975,0.26742026,-0.648185,0.7444957,-0.112890676,0.063004576,-0.5083747,0.30659702,0.44346935,-0.6083141,0.5299846,0.31837332,0.032163225,-0.24675353,-0.59397423,-0.117952734,-0.24974574,-0.13850512,0.27348083,0.38050783,-0.6658587,0.25961024,0.02325977,-0.30647057,-0.7766553,0.5284297,-0.09224778,-0.37305295,-0.09559198,0.37723938,0.21521713,0.03621509,0.08063608,0.3160525,-0.20103934,0.2904844,0.24565312,-0.20858237,0.19191352,-0.29940322,-0.23353855,-0.6214155,0.24638997,-0.35646364,-0.3482877,0.43956062,-0.08004729,-0.08263774,0.16546954,0.28096583,0.20855647,-0.034484144,0.19123295,-0.16820823,-0.21832865,0.51971483,0.43608892,0.83870375,-0.53127277,0.6945315,0.14024006,-0.048958797,0.55621517,0.12001769,0.19638044,-0.15980762,0.39401075,0.189572,-0.2474683,-0.05917943,0.7841659,0.22874038,0.32781395,0.048410796,-0.06479071,0.36810017,0.09911985,0.0802464,-0.033836134,-0.92169225,-0.017951187,-0.16962689,-0.04841572,0.5972001,0.1119684,0.17224266,-0.0067069107,-0.16423652,-0.10795423,0.06071142,-0.19440402,-1.4402484,0.38444388,0.0739379,1.0153028,0.6766708,0.0066234926,0.08428182,0.6702118,-0.02929593,0.15775989,0.4089875,0.11277958,-0.44829333,0.5778171,-0.3749978,0.54191047,0.10411208,0.077549234,0.19047938,0.03474268,0.51802015,0.603886,-0.25448135,-0.13125776,0.030356,-0.4883508,0.1854461,-0.46677706,-0.064391054,-0.37521267,-0.27589795,0.62087315,0.68488634,0.1905114,-0.26316276,0.02239738,-0.14004754,-0.12032855,0.090206094,-0.012250613,-0.038629096,-0.042599976,-0.54277235,-0.16778564,0.5062039,-0.37466812,0.16555259,-0.07891921,-0.12479388,0.2738171,0.0011079747,0.061642904,-0.21070132,-0.82629144,0.13529152,-0.40437537,-0.3716442,0.032158013,-0.010247552,0.32348126,0.29835993,-0.006980918,-0.24937123,0.5892112,-0.022042971,0.6424066,-0.37318918,-0.2071185,-0.43108618,0.08421092,0.26464105,-0.15658364,0.035111573,-0.18203662,0.11891374,-0.39812675,0.44937122,-0.17608544,-0.22779237,-0.18890819,-0.10462865,-0.1390802,0.6200748,0.04156761,-0.07841114,-0.16148408,-0.14917836,-0.34630916,-0.29504997,-0.017101338,0.061421793,0.13986124,-0.060766555,-0.1569862,-0.17734377,0.2009968,0.23812744,-0.139671,0.40483186,0.19715595,0.089008,-0.46311834,-0.1818797,0.15593085,0.6017391,-0.009793263,-0.17167734,-0.34897715,-0.32462412,-0.5007546,0.5199579,-0.13514045,0.3763218,0.08331777,-0.1421907,0.53209525,0.13963428,1.140597,0.0065866527,-0.34403294,0.12555641,0.55858356,-0.18496396,-0.18099214,-0.3277656,0.863588,0.36007226,-0.24207608,-0.15582329,-0.4906541,0.12455331,0.0023403948,-0.25472608,-0.2033217,0.05525579,-0.36028415,0.09634007,-0.03706278,0.4222999,0.17931366,-0.28833205,-0.3175519,0.33777544,0.3005006,0.36742544,-0.49488991,-0.53105956,0.32510102,-0.029921345,-0.08408426,0.17570972,-0.5044038,0.39284435,-0.3785765,0.20198342,-0.34439272,0.19656716,-0.41131252,-0.32149073,0.22728205,-0.061242197,0.5461298,-0.49358022,-0.28590196,-0.42576507,0.3881524,0.31209114,0.28714162,0.680434,-0.16811135,-0.045774672,-0.07390321,0.7877956,0.78341186,-0.12293181,-0.04914609,0.23369192,-0.42349574,-0.5117196,0.060124394,-0.28667596,0.20659718,0.006097578,-0.20156723,-0.6156559,0.15274476,0.032269396,0.028245002,0.030322867,-0.9750105,-0.21095313,0.1868929,-0.2055754,-0.3943545,-0.4767175,-0.094697885,0.55681986,-0.11842512,-0.2691311,0.15420201,-0.038354572,-0.005463967,-0.54921556,-0.10028948,-0.2388959,0.17462085,-0.15214251,-0.3726053,-0.29617026,0.20609394,-0.48269886,0.24492034,-0.17238909,-0.29550645,-0.056620058,-0.13310859,0.109630466,0.9655925,-0.46051174,0.289054,-0.29881006,-0.57681954,-0.68189883,-0.42303464,0.3110572,0.028498769,0.03862866,-0.5410607,-0.28916165,-0.13879156,0.0952814,-0.13933402,-0.27449358,0.45246145,0.120770045,0.45999888,-0.14236249,-0.7906117,0.2654572,0.10336746,-0.10501607,-0.45057184,0.40317425,-0.069790795,0.71647,0.0803979,-0.051735166,0.15051536,-0.3912258,-0.06848745,-0.114471555,-0.0027184119,-0.3927328,0.2696573,705 -722,0.5911949,-0.35413978,-0.67656314,-0.011729882,-0.45889723,0.12720288,-0.5233584,0.24229428,0.27479738,-0.3435592,-0.14552918,0.1486965,-0.09380333,0.19721791,-0.05029334,-0.53761095,-0.16854127,0.20969811,-0.7805211,0.45377868,-0.4319987,0.3937958,0.042605978,0.41450164,0.16062142,0.24775778,-0.17440858,0.085569315,0.055416528,-0.3045471,0.13376491,0.20608854,-0.6869369,0.0828272,-0.34655377,-0.5715733,-0.106085315,-0.50932926,-0.27028844,-0.7650346,0.21284397,-0.83372855,0.78172404,0.019455548,-0.28708577,-0.10973577,0.13871376,0.3520824,-0.12070424,0.19387676,0.39505112,-0.25972268,-0.13478811,-0.37185276,-0.04983404,-0.28614438,-0.37812364,-0.11638471,-0.52945703,-0.060093597,0.057478283,0.2186025,-0.21695386,0.012603063,-0.34902653,0.22854097,-0.42529482,0.12000414,0.2663067,-0.052610524,0.31045416,-0.8681543,-0.037996586,0.021800641,0.4771166,-0.0020865821,-0.2979843,0.18302028,0.22467814,0.460159,0.09794827,-0.20468841,-0.21759978,-0.06269194,0.07527898,0.51554066,-0.29842076,-0.0016073355,-0.2224931,0.027021408,0.67174935,0.27717298,0.07861277,-0.30788553,0.12359493,-0.2360593,-0.0071211685,0.54651016,0.511098,-0.2002903,-0.1316432,0.08471613,0.6647333,0.6041666,-0.13046572,0.058304384,-0.02264741,-0.48774546,-0.1951814,0.17986885,-0.08411242,0.29786447,0.035387937,0.27811623,0.5233199,-0.033638284,-0.036348574,0.25099784,0.0020263286,0.047540035,-0.21729437,-0.32866624,0.2550593,-0.70674634,0.11534555,-0.37137258,0.46517196,-0.07349547,-0.72128487,0.33467716,-0.8155848,0.0071715494,-0.03470812,0.5664497,0.8792854,0.62901837,0.124738656,0.8299418,-0.23157032,0.11145957,-0.1313937,-0.0586425,0.053196806,-0.17310025,0.05187971,-0.48226908,0.096336566,-0.42385265,0.12943381,0.09251705,0.5054853,-0.60934806,-0.22422288,0.1706991,0.7039067,-0.2523929,0.23382658,0.86406446,1.0869697,1.0366391,0.14526585,1.1690427,0.23933126,-0.37129623,-0.21858515,-0.101040855,-0.7218028,0.28291973,0.39922053,-0.27528745,0.4707224,-0.13190451,-0.07813485,0.45705524,-0.41687855,-0.10414762,0.02232268,0.2213947,0.05926256,-0.19612744,-0.38184926,-0.071701005,-0.005117655,-0.025868008,0.05861892,0.27055416,-0.4556349,0.38399032,0.056113675,1.0895412,-0.3421966,0.02271042,0.0978607,0.19033456,0.3302043,-0.25546622,-0.035483398,0.24704236,0.62063086,-0.12856454,-0.68786114,0.23483308,-0.3764953,-0.25351068,-0.21141602,-0.12721263,-0.4269849,0.05009144,-0.5007888,-0.4321815,-0.0776405,-0.18559355,0.2963016,-2.4370775,-0.3183516,-0.060347285,0.43001807,-0.1874999,-0.32507798,-0.25132176,-0.4185785,0.29923576,0.08908992,0.42420498,-0.5104719,0.66134304,0.591308,-0.71891505,-0.19877894,-0.5728904,-0.13289176,0.21072839,0.3096577,-0.042092945,-0.21484232,-0.13920356,0.09025641,0.6845078,-0.123890765,0.082642235,0.50932324,0.60648125,-0.17129168,0.4527827,-0.094123654,0.5210105,-0.5559014,-0.29469994,0.45428964,-0.32141754,0.26989722,-0.15133919,0.10342272,0.6397858,-0.3987159,-0.85449374,-0.5416345,-0.10725303,1.1765239,-0.16669606,-0.6647823,0.0139869405,-0.58405936,-0.30094534,0.09939992,0.7028498,-0.09615544,-0.0269134,-0.8422935,-0.12367685,-0.27261335,0.25931776,-0.040041428,-0.08517302,-0.40252203,0.76189834,0.093179375,0.68410844,0.29288423,0.3094084,-0.020346714,-0.32487154,0.09752585,0.7783237,0.51020324,0.12774526,-0.30892685,0.036772277,-0.09547519,0.08513296,-0.059507515,0.7609705,0.6000676,-0.14309503,0.18445134,0.22906163,-0.033075936,0.14074597,-0.2896629,-0.29498267,-0.21225788,0.11960257,0.3651017,0.7782641,0.06891317,0.4755179,-0.13250653,0.2217675,-0.25551358,-0.6046419,0.6594407,0.55100656,-0.2735727,-0.1510809,0.5622213,0.5040399,-0.36605915,0.5989308,-0.73299986,-0.2867956,0.48295778,-0.20044996,-0.36703154,0.4358013,-0.41964495,0.3169235,-0.8788404,0.3273165,-0.6024911,-0.41260195,-0.58204854,-0.12031199,-1.9854035,0.38920182,-0.13656977,-0.01117445,-0.5555917,-0.34633937,0.44036838,-0.55116594,-0.7981419,0.08722332,0.27458385,0.66368353,-0.13641798,0.054829735,-0.09484902,-0.50701725,0.0068349103,0.3229631,0.27349246,0.2167528,-0.17593433,-0.20628269,-0.13304873,0.027023673,-0.33272326,-0.037606824,-0.632526,-0.47462657,-0.028761042,-0.25230834,-0.04867391,0.5236451,-0.35909384,0.037977118,-0.23092367,0.06567307,-0.06537801,0.24241808,0.055704415,0.28411868,0.16250221,-0.23414591,0.11549937,-0.2661413,0.4072378,0.0013995629,0.1558147,0.24799468,-0.16105278,0.24879558,0.38860592,0.77376115,-0.1965631,1.12998,0.383421,-0.14950444,0.40001196,-0.3644662,-0.48922032,-0.6282419,-0.07712039,0.15336493,-0.42806333,-0.5449783,0.15564601,-0.33923626,-0.81389356,0.523062,0.04723215,0.22287863,0.110333495,0.5325031,0.47564924,-0.2612868,-0.1505323,0.0067946683,-0.20451857,-0.32415283,-0.30307814,-0.6804393,-0.44592777,-0.22281338,1.152241,-0.31087434,0.2574647,0.2731241,-0.2254776,0.3132617,0.21084929,0.079347305,0.057862025,0.53041947,0.23247483,-0.586157,0.15411904,-0.05009701,-0.21467106,-0.50586617,0.190174,0.8113946,-0.69103825,0.45704255,0.39867088,-0.01396715,-0.26377204,-0.6147556,0.0807703,0.19260715,-0.2536078,0.5580982,0.38145286,-0.5953767,0.4462587,0.55456096,-0.3441653,-0.78629017,0.33687618,0.0013327805,-0.3306726,-0.30384344,0.38800937,0.09917349,-0.081347294,0.04577744,0.36241052,-0.36570853,0.30214658,-0.0145853115,-0.22311746,-0.0631729,-0.17608616,-0.34752655,-0.81972474,0.23972276,-0.5729573,-0.33894762,0.44403744,-0.17311737,0.15882652,0.25319755,0.434571,0.5404866,-0.34132355,0.14523098,-0.26722175,-0.32123607,0.31462896,0.5141619,0.37138286,-0.32554504,0.45936483,0.22545862,-0.20199493,0.2262472,0.23347941,0.4163648,-0.09370173,0.4853986,-0.23895751,-0.09384468,0.22622274,0.8657125,0.10151983,0.31751567,-0.0919387,-0.08132999,0.17829807,0.018157529,0.25480425,-0.16356991,-0.38432354,-0.059001062,0.034234848,0.11769143,0.552426,0.2738221,0.08233272,-0.115304515,-0.26893875,0.014026402,0.34450838,0.06836863,-1.40904,0.55677646,0.13590196,0.9518706,0.37696567,0.14164215,0.08128222,0.50282836,-0.12726344,-0.013200856,0.41127807,0.07937591,-0.3259083,0.5549772,-0.6414208,0.20653501,-0.20292066,0.10394998,0.112847365,-0.17845678,0.47068384,0.8837125,-0.20338629,0.04450921,0.060924727,-0.19076237,-0.17319737,-0.20768763,-0.08468197,-0.44034922,-0.4887717,0.9852159,0.37746164,0.53247255,-0.37798983,0.0007077925,0.118840806,-0.17159043,0.2604969,0.05891156,0.06678819,-0.0076713655,-0.42153835,0.081813246,0.5308394,0.041797932,0.02449164,-0.28502968,-0.4046964,0.14102203,-0.13402681,0.22613311,-0.03224412,-0.822493,0.10989387,-0.7452383,-0.6699235,0.2698145,0.13386303,-0.19108142,0.22444136,0.033703543,-0.080048166,0.47303337,-0.039490435,0.8156471,0.034011327,-0.1575459,-0.25292134,0.34399727,0.23104899,-0.28548077,-0.02038516,-0.19682533,0.3632212,-0.4072792,0.59619737,-0.13721357,-0.39901072,0.21476921,-0.04669273,-0.033338785,0.5687256,-0.25167757,-0.1971665,0.15343532,-0.14848374,-0.48488215,-0.37830713,-0.26929218,0.02957553,0.3652383,0.072992794,-0.26429054,-0.29167515,-0.22365211,0.49061635,0.16412526,0.5799059,0.52512544,0.07691279,-0.5032696,0.15410826,0.30699533,0.44597292,0.06250174,-0.13582171,-0.56960225,-0.55745876,-0.33813426,0.62495035,-0.13139313,0.22858664,-0.07835548,-0.29487276,1.1102958,0.10991435,0.965527,-0.018188788,-0.21350399,0.01291328,0.6346403,-0.40772963,-0.2253641,-0.5038686,0.85094684,0.61045015,-0.17712171,0.15951316,-0.30004138,-0.22507724,0.2167434,-0.49184275,0.1464095,-0.116584845,-0.6578475,-0.3692098,0.067323916,0.31769398,-0.106212266,-0.28255442,0.055388194,0.20524985,0.055053588,0.001191555,-0.7297313,-0.3589945,0.19077402,0.21842195,-0.24874566,0.14979483,-0.49800017,0.24947889,-0.7788089,0.08937478,-0.5409695,-0.005507366,0.055248603,-0.38448346,0.104499824,-0.06053555,0.11006764,-0.5462103,-0.26193103,-0.12219601,0.14716092,0.04806258,0.19440868,0.5528008,-0.26730582,0.105580375,0.15745163,0.62550133,1.0808463,-0.3541815,-0.071128726,0.3122315,-0.48148564,-0.55169785,0.19726685,-0.44932362,-0.030998083,-0.09400715,-0.33941796,-0.53677976,0.313822,0.15979594,0.21939278,-0.24875267,-0.8671147,-0.059749465,0.34758097,-0.2793847,-0.18452096,-0.2247383,0.14096166,0.73478186,-0.08326597,-0.35391235,0.016676486,0.44700396,-0.42545888,-0.4423683,0.2322935,-0.43259022,0.27850297,0.12763324,-0.29883254,-0.058774017,0.069993585,-0.7012682,0.048278477,0.27430418,-0.31298,-0.07495915,-0.3350518,0.13410926,0.8094936,-0.3471256,-0.24850717,-0.2425502,-0.55627626,-0.7906307,-0.2996759,-0.20844258,0.41538927,0.06942735,-0.74389374,0.2131571,-0.25408235,-0.27318484,-0.0009296353,-0.35506848,0.46215338,0.20807558,0.71800697,-0.48219875,-0.9671965,0.28310972,0.26175883,-0.26568592,-0.3907916,0.5105629,0.15062946,0.8866081,0.041925,-0.11369933,-0.1754292,-0.4727831,0.32052577,-0.21227987,-0.05604069,-0.95248544,-0.038519505,711 -723,0.298523,-0.015044625,-0.68726826,-0.12885049,-0.45439437,0.3378185,-0.35466462,0.07907583,0.19703916,-0.30588496,-0.016012678,-0.22798148,0.049942568,0.54633707,-0.043110803,-0.69617337,0.050349258,0.25692943,-0.6392212,0.22600533,-0.5500726,0.44505876,0.024323087,0.35613754,-0.065207556,0.30950844,0.31906444,-0.11658765,-0.14981195,0.0035855724,-0.22166927,0.22997902,-0.72457474,0.31953275,0.015134087,-0.46488577,0.0325768,-0.08517481,-0.18715283,-0.57708585,0.24038097,-0.83916676,0.48371536,-0.31958947,-0.36783308,0.07094849,0.057795487,0.4474792,-0.29787266,0.16794994,0.29520613,-0.3906502,-0.14591277,-0.2304847,-0.39135748,-0.63090867,-0.3905173,0.022713877,-0.62623954,-0.20539856,-0.30392793,0.39648262,-0.21089746,0.053970985,-0.16730994,0.19140953,-0.48951113,-0.021030609,0.258196,-0.33830076,0.11406161,-0.3485777,-0.17493857,-0.12545532,0.5600909,-0.12133508,-0.009451807,0.058547676,0.4079568,0.60483515,0.18958157,-0.21580066,-0.37448695,-0.20111537,0.28102753,0.5159186,-0.017677097,0.06251678,-0.31989956,-0.37362635,0.08870048,0.2411671,0.0029182457,-0.4699586,0.022929413,0.0049961554,-0.26447934,0.18996246,0.33914363,-0.5617397,-0.36645636,0.5015779,0.58275706,0.010608098,-0.2651645,0.2270012,-0.0025125844,-0.4900313,-0.21121743,0.28386736,0.062581494,0.6099109,-0.20951237,0.3715145,0.86001337,-0.15988249,0.08466517,-0.26774326,-0.09121297,-0.24988192,-0.15191747,0.10717824,0.129395,-0.4950924,-0.069060095,-0.14390345,0.6158732,-0.03727356,-0.6602843,0.44099873,-0.45740038,0.02633114,-0.2683403,0.6313807,0.67819273,0.31581062,-0.18081194,0.8752384,-0.50648504,0.07563936,-0.17078495,-0.4386249,0.16535076,-0.09437991,0.08378024,-0.41607168,0.13936259,0.10467354,0.157189,-0.041709542,0.44781813,-0.40895158,-0.08774051,0.026421657,0.5827998,-0.52257895,-0.078302585,0.79453593,0.9504081,0.88771087,0.07220857,1.6003045,0.5766937,-0.25490874,-0.1717546,-0.31782287,-0.43579647,0.11641259,0.22249728,0.25714976,0.24407178,0.18871957,0.17222008,0.60186505,0.012378106,0.12772626,-0.18966539,0.11290101,-0.10845295,-0.014559026,-0.37224212,-0.22938856,0.27908057,0.08939708,0.05552194,0.22069263,-0.088229015,0.5477471,0.115269646,1.4234399,-0.13573779,0.0970628,-0.17694455,0.24042922,0.14388624,-0.15740237,-0.08021738,0.17964461,0.25615126,-0.090902716,-0.50838506,-0.0022046475,-0.20980445,-0.5391787,-0.34185177,-0.34989807,-0.16247787,-0.10785984,-0.44278768,-0.08928064,0.28155252,-0.23813178,0.41168073,-2.3861327,-0.29142216,-0.22552808,0.14789067,-0.27755955,-0.23860429,-0.32764608,-0.46239343,0.3083129,0.42238793,0.35652888,-0.47487158,0.5726002,0.3651486,-0.22541107,-0.35019,-0.66839135,0.06323714,-0.11535348,0.32132256,-0.10205929,-0.2595307,-0.2570307,0.2027834,0.59541416,-0.266938,0.11183348,0.1581032,0.5496532,0.11678018,0.45099062,0.26928836,0.77642316,-0.30293658,-0.20785786,0.56547827,-0.397207,0.33558133,0.0065576984,0.27686208,0.31831694,-0.3798057,-0.9066888,-0.79327273,-0.36754328,1.1623496,-0.40005076,-0.5173487,0.22506557,0.102283254,-0.2825728,0.18315913,0.3544883,0.16718608,0.17771551,-0.74776256,0.15964761,-0.11667307,0.20461208,-0.12862657,0.07343589,-0.35085657,0.61486155,-0.23652537,0.26553714,0.5301155,0.32683533,-0.072178036,-0.24675696,0.113100655,0.95918024,0.24710988,0.09706863,-0.22478032,-0.40566042,-0.23220704,-0.2928524,0.06806532,0.4160047,0.6304601,0.09410202,0.21992296,0.26393378,-0.16859494,0.02176797,-0.15302218,-0.28699166,0.031146957,0.20272842,0.46781957,0.5482012,0.055267133,0.4741754,-0.14866517,0.14360963,-0.28852293,-0.64271647,0.5656216,0.5554071,-0.2293335,-0.226041,0.62800694,0.51450944,-0.45996714,0.40312296,-0.6041588,-0.42765233,0.52607936,-0.1503056,-0.42137715,0.08774029,-0.31362292,0.022472657,-0.8719861,0.16115086,-0.05677758,-0.53175926,-0.34571975,-0.2780046,-4.3604174,0.29547817,-0.058624275,-0.038097497,0.07341893,-0.21635844,0.46142828,-0.51520455,-0.5103156,0.059571024,-0.03990431,0.6055251,0.044815,0.14078826,-0.42678973,-0.058560636,-0.08842178,0.23933777,-0.0009480898,0.098344214,-0.04747983,-0.49658746,0.22070244,-0.46679607,-0.40619147,-0.08798301,-0.62297016,-0.4425643,-0.08379997,-0.36380294,-0.2890464,0.76002985,-0.6450017,0.017647224,-0.36751553,0.015992261,-0.32476467,0.44742516,0.20024434,0.13739693,0.3351827,0.014227627,-0.39892393,-0.39506274,0.1185238,0.044313055,0.076350264,0.49517256,-0.2339653,0.14165334,0.49074584,0.6611918,-0.04751279,0.6037557,0.11784606,-0.0843219,0.376004,-0.26512066,-0.15389758,-0.7065085,-0.48003387,-0.42303583,-0.54319066,-0.6392568,-0.22361849,-0.23120502,-0.7699965,0.58163214,0.22750789,0.10387499,-0.09285503,0.17982222,0.25902712,-0.18879986,-0.08759781,-0.22954069,-0.19825333,-0.47600478,-0.59543765,-0.68367606,-0.7503879,0.20961012,1.2074544,-0.14217228,-0.005929191,0.1805391,-0.4490684,0.060032226,0.29786456,0.27383092,0.051723022,0.42757097,-0.26334158,-0.76263195,0.4461028,-0.20606631,-0.018637188,-0.56651855,-0.055444207,0.7870875,-0.6684673,0.50718874,0.44779587,0.26375705,0.38409093,-0.40785143,-0.42029014,-0.024978079,-0.29675725,0.59864324,0.14354163,-0.69578445,0.46057191,0.151097,0.005530229,-0.64915174,0.48451474,0.06138357,-0.08380214,0.09380674,0.4393736,0.06880225,-0.063898765,-0.2623239,-0.012839689,-0.6044893,0.26213554,0.5170187,0.01099763,0.55253196,-0.12578422,-0.23566316,-0.57254,-0.25178513,-0.33177698,-0.14304067,-0.11351959,0.01334762,0.038496234,0.26197624,0.056148157,0.43049514,-0.6000795,0.124493666,-0.073844664,-0.26219016,0.20705792,0.44965237,0.3018215,-0.5721643,0.58396584,0.04378541,-0.054688863,-0.29347134,0.06127365,0.6002709,0.31464836,0.45875782,-0.11030522,-0.11854855,0.18476966,0.79051137,0.21096209,0.54119307,0.14876634,-0.33619136,0.29908818,0.2817121,0.1374858,-0.028908156,-0.20512104,0.047978923,-0.12125116,0.22932881,0.41536033,0.15372433,0.54500103,-0.048150975,-0.03633318,0.29967517,0.037591457,-0.07744224,-0.6939509,0.25775987,0.3921418,0.62030125,0.50601244,-0.072794504,0.044675827,0.35146728,-0.43639457,0.06455204,0.1393256,-0.08509271,-0.46331376,0.5616045,-0.6230558,0.3087211,-0.29313546,-0.1197282,0.30237538,0.19201387,0.28456295,0.88267094,0.007372549,0.19592318,0.060738586,-0.25003874,-0.015969148,-0.18282329,0.071203366,-0.5732507,-0.25164872,0.75234693,0.40531653,0.32673392,-0.3558386,-0.14326546,0.008485303,-0.05565869,0.08728123,-0.09065834,0.11941433,-0.08662963,-0.60348195,-0.3734778,0.5504313,0.04659631,0.14751925,0.17996153,-0.6225657,0.4084962,-0.2667189,0.005431815,0.020675374,-0.5369942,-0.07788041,-0.37416786,-0.50548214,0.34614402,-0.27772164,0.33537567,0.08592741,0.012819304,-0.26338255,0.29252222,0.011714311,0.8850618,0.21572474,-0.08549392,-0.2250634,0.039213043,0.45424703,-0.30644324,-0.15275644,-0.37845358,0.02363133,-0.47896722,0.30992332,-0.095791064,-0.14306706,0.2053036,-0.13264002,0.06307514,0.43392736,-0.044832144,-0.11172183,0.29783672,0.19672689,-0.32757586,0.118070126,-0.5263592,0.27775925,-0.124657355,0.07697832,-0.0024562431,-0.03841252,-0.12308775,0.21889885,0.08683545,0.054103997,0.3472238,-0.088137165,-0.29542968,0.009238165,-0.14883359,0.33185285,0.07207607,-0.050322197,-0.17327085,-0.46400008,-0.24523076,0.5118552,-0.0756267,0.033356167,0.11506227,-0.3730664,0.79491013,0.1910634,1.1480018,0.15006179,-0.4322427,0.26871198,0.41530785,0.09720179,0.2138645,-0.5265046,0.87857586,0.5481132,-0.24717866,-0.22857237,-0.40791062,-0.3822303,0.2844628,-0.30711606,-0.22338828,-0.062329214,-0.812497,-0.17420325,0.16524237,0.22282355,0.048147816,0.018817393,0.10511022,0.10266696,0.17484531,0.45540607,-0.62922984,-0.1760211,0.44430426,0.35619706,-0.21723829,0.16179863,-0.17314236,0.50997835,-0.8505974,0.073930904,-0.614617,0.016174283,-0.16032256,-0.25041157,0.30485076,0.19156075,0.33890015,-0.13032341,-0.30710417,-0.3065303,0.76979977,0.19669023,0.3594832,0.8513215,-0.2535991,-0.109984726,-0.06858463,0.3604963,1.1363304,-0.31994873,-0.017898945,0.5778333,-0.19896077,-0.5138885,0.20360468,-0.51517326,0.14213878,-0.004920075,-0.50011903,-0.2864785,0.42645153,0.123614974,-0.117235556,0.10837964,-0.39557445,0.095053345,0.3556627,-0.21197352,-0.35499433,-0.18858956,0.3897676,0.7065278,-0.41029838,-0.2621501,0.0339236,0.45159948,-0.41990164,-0.46051386,0.090808555,-0.2567385,0.5002744,0.2803524,-0.40137714,-0.030791782,0.27593768,-0.3507238,0.10611116,0.4690843,-0.23373798,0.21369937,-0.38171312,0.077348664,0.97507244,0.107096404,0.16904163,-0.7263899,-0.4943517,-0.96855426,-0.34398952,0.2910121,0.23972966,-0.061283,-0.3062968,-0.034084383,-0.17084503,0.07766008,0.25200745,-0.5134669,0.39423525,0.0758854,0.5905165,-0.06784003,-1.036497,-0.06257424,0.22678518,-0.30330056,-0.43905213,0.55091554,-0.5411428,0.7461165,0.114228025,0.11355449,0.21484734,-0.54394823,0.3954942,-0.37335655,-0.043772057,-0.91135436,-0.10351935,714 -724,0.41164654,-0.338689,-0.4000464,-0.18695916,-0.32854578,-0.06448952,-0.14552538,0.49138707,0.2920759,-0.4686167,-0.263801,-0.09343112,0.0076190555,0.31134102,-0.14147112,-0.6219544,0.011178464,0.27276656,-0.32483453,0.6185382,-0.42608607,0.27176905,-0.043672517,0.253901,0.39017093,0.29367453,0.044222374,-0.19616316,-0.045816198,-0.22883661,-0.16861609,0.22307365,-0.39846677,0.29574162,-0.081784755,-0.35130256,0.086960986,-0.551674,-0.3592239,-0.72914684,0.21794574,-0.79928464,0.37338597,0.06749392,-0.34199253,0.21617934,0.016063113,0.44256654,-0.25716922,0.05338282,0.2871954,-0.12542148,-0.07617774,-0.12407406,-0.08284512,-0.3723648,-0.49429578,-0.17169744,-0.23270504,-0.17299274,-0.3291221,0.08512296,-0.44194272,-0.08494795,-0.07481183,0.45662796,-0.49624032,0.21747662,0.2625077,-0.19807276,0.35923612,-0.5293901,-0.18120286,-0.14314483,0.310473,-0.16109355,-0.20147637,0.41187385,0.22919211,0.2671654,0.10190043,-0.09369819,-0.25538105,-0.026597427,0.31798363,0.5708159,-0.09363857,-0.30795747,-0.004659648,0.046239514,0.17146489,0.18630807,0.024430394,-0.25090724,-0.20321557,0.19291183,-0.31162056,0.19269003,0.4501813,-0.25859812,-0.15486918,0.40232342,0.5387444,0.21296875,-0.12801999,-0.030756226,0.08939075,-0.52773374,-0.22961389,0.07487227,-0.28423882,0.49321893,-0.24232769,0.22822364,0.77959216,-0.22187884,0.0037355055,0.033366963,0.20773187,-0.21701075,-0.18002129,-0.4657873,0.28376672,-0.39780936,0.19807467,-0.111425444,1.0112232,0.29990992,-0.5799641,0.26062223,-0.5806376,0.2082042,-0.31616938,0.42099798,0.55988735,0.4015921,0.45442405,0.7272829,-0.39257467,0.16190177,-0.013475794,-0.50113356,0.12629946,-0.306029,-0.05806468,-0.48595384,-0.12006144,-0.052610833,-0.20978436,0.1446496,0.3790366,-0.5625428,-0.011155658,0.123066776,0.8775767,-0.29898173,0.05217616,0.6415246,0.94203985,1.0392199,0.108689435,0.98935115,0.26413187,-0.3351631,0.07203062,-0.3040201,-0.711966,0.3179066,0.46970308,-0.29602093,0.21316406,0.23007645,0.10839757,0.39536682,-0.43304363,0.06430478,-0.32122374,0.16954948,0.1408096,-0.16930352,-0.5833062,-0.3227272,-0.25267172,0.175724,-0.18292353,0.21340337,-0.07903063,0.3316096,0.091229,1.7070554,-0.034613702,0.041064337,0.027201368,0.40555793,0.1911065,-0.27943593,0.008588617,0.36330193,0.4396858,0.07998378,-0.7217157,0.1788632,-0.22605754,-0.33791834,-0.16935928,-0.32227248,0.047559936,0.13616286,-0.4120514,-0.10189514,-0.026837949,-0.17086202,0.54269886,-2.57059,-0.15632772,-0.15608785,0.44367743,-0.24600363,-0.2551906,0.05020196,-0.46805224,0.2949374,0.2941267,0.62074864,-0.70284945,0.33648017,0.45566538,-0.69438815,0.025197286,-0.61338615,-0.2670119,-0.12859571,0.30413073,0.11340494,0.14894046,0.048091218,0.18422708,0.38512754,0.07274905,0.13592497,0.2725889,0.36596122,0.11858877,0.6607551,0.030775942,0.4985067,-0.19241293,-0.16930272,0.21263331,-0.28350517,0.27411053,-0.050257172,0.08701897,0.5523013,-0.38445583,-0.89620006,-0.7902686,-0.23116446,1.1422635,-0.17920925,-0.41755897,0.34216708,-0.21334478,-0.362907,-0.14143017,0.2323381,-0.066046596,-0.18436494,-0.8975205,0.0125915725,-0.054102127,0.14518535,0.14762375,-0.28813112,-0.43749925,0.79017645,-0.03170615,0.49153244,0.31927234,0.20556599,-0.030194364,-0.29954556,-0.060365062,0.81200016,0.40692848,0.12728752,-0.35075167,-0.20565653,-0.26075062,0.023723276,0.13736771,0.40436855,0.58351934,-0.21459392,0.01524451,0.31899917,-0.059639357,0.07462445,-0.14137483,-0.34794638,-0.03899197,0.0011426669,0.5169815,0.6188735,-0.1820592,0.42346847,0.023936365,0.33934104,-0.014877374,-0.47156778,0.2789702,1.0897498,-0.052297994,-0.32056645,0.52575564,0.5646236,-0.114338756,0.34808937,-0.5256982,-0.11794511,0.40310076,-0.17786333,-0.3518888,0.09983262,-0.3642065,0.23513684,-0.7966528,0.46004412,-0.261109,-0.6495521,-0.59387743,-0.072927445,-3.2785203,0.23589842,-0.36882803,-0.20640685,0.04924985,-0.0096510835,0.23984286,-0.76755977,-0.5089665,0.3112257,0.11417794,0.77100825,-0.06831197,0.07975586,-0.1868066,-0.17755435,-0.31187347,0.008888061,0.063301,0.33402088,0.13460296,-0.4922627,0.054453135,-0.03339082,-0.37226245,0.1841999,-0.6044844,-0.5632943,-0.20105842,-0.5745983,-0.42028677,0.59153503,-0.21580039,-0.04110786,-0.10452592,0.15582512,-0.22576927,0.2329727,0.1711693,0.0940844,-0.03391991,-0.01769085,0.0058131632,-0.28059876,0.33365932,0.057195526,0.410799,0.04445442,-0.061944988,0.049077366,0.6764123,0.5192347,-0.114996925,0.8744875,0.5931858,-0.24544922,0.071328886,-0.26744276,-0.3383039,-0.5396033,-0.35812944,0.050019566,-0.41005802,-0.47434556,0.02551838,-0.3375093,-0.81661975,0.62778723,0.07515225,0.11862298,-0.0030642003,-0.0039960006,0.5179371,-0.0663866,-0.08584098,0.12040591,-0.13804916,-0.6938001,-0.14351532,-0.61975247,-0.33083314,0.20451117,1.0425547,-0.3950176,0.118794866,-0.030482007,-0.41603667,0.05567705,0.10876933,-0.10521192,0.121379785,0.49593624,-0.12708345,-0.64198214,0.44571608,0.032490976,-0.08256463,-0.6904296,0.31115752,0.6376836,-0.5713982,0.50267917,0.35029703,-0.092298135,-0.04660034,-0.44637552,-0.3939444,-0.08815901,-0.16955186,0.39723,0.06528507,-0.5733122,0.3318895,0.30171984,-0.32994047,-0.62537533,0.53845906,-0.123076476,-0.24843517,0.0026323611,0.1886069,0.08445445,-0.059348993,-0.08765101,0.3703807,-0.35836184,0.33586815,0.25967395,-0.1506441,0.05696666,-0.14577816,0.041077234,-0.9232743,0.030505607,-0.31824344,-0.2028241,0.26412696,0.13183072,0.06788309,0.08744963,0.2823124,0.3862886,-0.22564481,0.076374836,-0.039906718,-0.38260448,0.4800272,0.4384346,0.42280373,-0.38806647,0.57175726,0.07997059,-0.07919517,-0.06888996,0.026592327,0.3764326,0.13529441,0.4455939,-0.034230947,-0.24561524,0.29420418,0.8411313,0.2349715,0.5982208,0.015203114,-0.06840916,0.11809957,0.10540957,0.25901443,0.019279866,-0.61017424,0.1335161,-0.1343967,0.13294142,0.42129976,0.20009759,0.27453858,-0.0700413,-0.4803568,-0.0124200685,0.11051758,0.08846232,-1.3016855,0.5000544,0.21608767,0.7727115,0.39951992,-0.023770185,0.014521516,0.78967434,-0.11705041,0.11527522,0.1982024,0.005357307,-0.53536075,0.410337,-0.746162,0.35471073,0.043165963,-0.07244898,-0.00154299,-0.07064615,0.43851164,0.6219674,-0.2264484,0.0010117659,-0.13462292,-0.4560258,0.16961296,-0.50571406,0.014454512,-0.68579537,-0.3789188,0.5349702,0.5679384,0.3773376,-0.075046636,0.012928502,0.05389232,-0.08706722,0.27272648,0.15706924,-0.036419954,0.15266067,-0.73627114,-0.12652276,0.4846728,-0.33848852,0.18298131,-0.17019469,-0.12756117,0.28827584,-0.11218886,0.03395325,-0.0813434,-0.70596,0.0020709587,-0.2062274,-0.41142184,0.48703486,0.11939342,0.37136218,0.17952545,0.024740381,-0.051729076,0.43020487,0.12771943,0.8460975,-0.017098345,-0.16022703,-0.4506892,0.09235703,0.13451461,-0.041662034,0.0775673,-0.3704922,-0.039431207,-0.6015437,0.43692163,0.0739771,-0.2782436,0.10305352,-0.20134561,0.017426085,0.5523196,-0.13468038,-0.17996462,-0.17651774,-0.15259248,-0.24935032,-0.24863885,-0.12076791,0.25935152,0.31446695,0.008094948,-0.17569536,-0.116973154,-0.10184263,0.46803153,-0.058816556,0.42869264,0.29960543,0.011336341,-0.23539479,-0.37035716,0.0742104,0.4016484,-0.060248367,-0.269309,-0.35223195,-0.5481491,-0.41491944,0.08507901,-0.108810216,0.47121158,0.022250572,-0.23185198,0.67863333,-0.1690797,1.1424421,-0.058737718,-0.4161344,0.090418406,0.5639852,0.13293241,-0.004260056,-0.23828664,0.7965809,0.57721734,-0.11661757,-0.04857699,-0.5956166,-0.10937624,0.14191686,-0.13963357,-0.045057885,0.15868849,-0.6033206,-0.19390163,0.2528741,0.14351906,0.20407845,-0.050027728,0.09441163,0.38438067,0.119066015,0.17984898,-0.3732568,-0.31299114,0.22275235,0.19843143,0.16266908,0.096294455,-0.5818671,0.377196,-0.34410477,0.13002159,-0.29311913,0.20342383,-0.29601,-0.2762562,0.24711147,0.075862974,0.34920913,-0.31581065,-0.32184616,-0.24739368,0.6278521,0.10244706,0.056590743,0.55458474,-0.2661967,-0.012899781,0.13220897,0.39142334,0.90100384,-0.34038737,-0.020226588,0.631332,-0.44817513,-0.53093886,0.29479754,-0.2118869,0.04087948,0.15281177,-0.3527985,-0.69365215,0.2564093,0.19578633,-0.033781327,0.18490306,-0.4957003,-0.17951499,0.29379922,-0.44313353,-0.181952,-0.36922115,0.16625386,0.4759771,-0.37957987,-0.50312006,0.056650206,0.12059694,-0.18775104,-0.32313398,-0.18206239,-0.3294017,0.30173284,-0.06341,-0.36085322,-0.28662187,0.038591843,-0.2584829,0.07366569,0.0465642,-0.3989234,0.14900658,-0.27033454,-0.054786112,0.90624434,-0.30525193,0.08074334,-0.7190341,-0.2820701,-0.73535275,-0.32960862,0.69052094,0.090989225,-0.08275625,-0.5941342,0.06363611,0.15788515,-0.07899232,-0.21819264,-0.4133901,0.48998457,0.1411298,0.31864357,-0.014890997,-0.8247441,0.21551822,0.06845699,-0.22990173,-0.67838204,0.58220774,-0.22435817,0.85970825,-0.039811037,0.19421402,-0.024538787,-0.22044145,-0.018526921,-0.2768466,-0.4772165,-0.72763675,-0.13929603,723 -725,0.3924449,-0.30882046,-0.43866438,-0.15347126,-0.23754069,0.0054624905,-0.16849032,0.668446,0.2826023,-0.36657155,-0.20527227,-0.0935448,0.114337154,0.4576643,-0.09402466,-0.40395182,0.011270487,0.22966638,-0.4981481,0.57113737,-0.38270837,0.111828655,0.003730673,0.5429002,0.45873362,0.22201635,0.0065861484,0.06562582,-0.2991622,-0.119269535,-0.29251024,0.36355206,-0.30294758,0.13957575,0.017039107,-0.2485582,-0.09892673,-0.59346294,-0.26635712,-0.8619624,0.24697877,-0.9134003,0.5665297,-0.041290645,-0.26200578,0.23091239,0.22077635,0.3209788,-0.32443592,-0.33377382,0.09007646,-0.19962837,-0.112774,-0.22203475,-0.086460195,-0.3326662,-0.60532117,0.102712266,-0.4318714,-0.1818611,-0.3299125,0.20489295,-0.26427835,-0.14482667,0.02826824,0.67098457,-0.40375417,0.15883453,0.19044818,-0.26657784,0.21521753,-0.58043545,-0.13590537,-0.12544706,0.19071428,-0.077296294,-0.4419965,0.24231412,0.38714522,0.27009693,-0.021570288,-0.21725509,-0.39531535,-0.038949627,0.09045665,0.40757275,-0.052787594,-0.5536964,-0.11693505,0.059546053,0.22923486,0.24064526,0.35592863,-0.23075536,-0.15648048,0.12262973,-0.10449273,0.45390546,0.37477547,-0.34650084,-0.13975866,0.40388396,0.566128,0.31663033,-0.19528624,-0.17651984,0.022938637,-0.56862664,-0.04976294,-0.01620825,-0.24656321,0.5845303,-0.22024173,0.26626313,0.59117424,-0.13246544,-0.06985887,0.28948718,0.19329055,-0.24146524,-0.2842427,-0.22341985,0.20085964,-0.4242533,0.14825799,-0.15248361,0.69139254,0.18616512,-0.59187126,0.3894127,-0.53484565,0.20817533,-0.20397274,0.37998727,0.69087565,0.452267,0.57207143,0.6026405,-0.2337521,0.025476446,-0.082013674,-0.43288648,0.17686266,-0.3222142,-0.046578843,-0.6460815,-0.026729865,-0.13579684,-0.13317282,0.21458834,0.46457216,-0.6631706,-0.14038761,0.21341172,0.8001534,-0.23436958,-0.3823543,0.85419095,0.926635,0.88213897,0.002069063,1.0891939,0.13286279,-0.17882875,0.29286197,-0.23558313,-0.6279576,0.37603414,0.3919803,-0.8182429,0.32930714,0.07099359,-0.006034888,0.46494314,-0.18896216,0.021734567,-0.15019625,0.0016189172,0.11269767,-0.174558,-0.41641495,-0.36103153,-0.1774804,0.0033110608,0.19670382,0.26454642,-0.3255402,0.51481456,-0.16778876,1.8965918,0.020025088,0.03403984,-0.043324906,0.3945997,0.25930667,-0.24090457,-0.17810756,0.58933663,0.29573774,0.2428302,-0.4733717,0.22559175,-0.28352645,-0.43837172,-0.0974911,-0.4490082,-0.024186896,0.011023799,-0.37160668,-0.16457671,-0.22756995,-0.29069376,0.43800205,-2.7710142,-0.2986473,-0.072666034,0.33371434,-0.27077755,-0.41577005,-0.056861963,-0.43524712,0.24360143,0.24689573,0.602176,-0.7237082,0.26700643,0.27471736,-0.7018155,-0.3031009,-0.7531348,-0.0846433,-0.03968238,0.31510928,-0.03538635,-0.067003936,0.14830953,0.021005373,0.5472616,-0.04418296,0.10253845,0.35081723,0.45663878,0.00071891915,0.49411738,-0.15114899,0.67981243,-0.19848092,-0.30099708,0.3151932,-0.31417722,0.49055746,0.12885568,0.1105659,0.59625906,-0.3294565,-1.0178759,-0.6939602,0.032870457,1.2203013,-0.28187177,-0.40656802,0.111014456,-0.52037543,-0.32251924,0.068882875,0.54438585,-0.008087268,-0.11764046,-0.77110195,0.022803482,-0.00527607,0.11802456,0.0028335957,-0.03554345,-0.34957945,0.6082016,0.04584792,0.4824254,0.22105438,0.23872375,-0.52001977,-0.39013666,0.04917385,0.82509845,0.35337785,-0.016126093,-0.17715184,-0.30256176,-0.5104095,-0.13236628,0.13212314,0.55960363,0.45664075,-0.060018834,0.16030826,0.3663206,-0.0021961606,-0.00039695547,-0.22037032,-0.18664494,-0.051216364,0.10682636,0.50941515,0.73694766,-0.17078103,0.70394254,-0.058727168,0.30177587,-0.030488748,-0.5384687,0.56240433,1.278077,-0.3095681,-0.3894842,0.63696665,0.28192604,-0.39008147,0.45411283,-0.4560619,-0.1904042,0.52443415,-0.124042764,-0.40384638,0.20737535,-0.25170138,0.23339517,-1.0065122,0.22653642,-0.22795361,-0.48415598,-0.5864203,0.10586096,-3.3218014,0.28034467,-0.3336164,-0.21946733,-0.21579869,-0.32104146,0.012507326,-0.85076594,-0.44425255,0.13115595,0.16700281,0.91009414,-0.2304992,0.06297381,-0.23820104,-0.39508688,-0.22173885,0.067841575,0.015921617,0.47312137,-0.20876664,-0.41794255,0.09922429,-0.016733047,-0.47974688,0.054533012,-0.7144977,-0.5392548,-0.09925882,-0.629027,-0.2465996,0.7032618,-0.38250253,0.007845698,-0.18613365,0.17222473,0.07307224,0.32908237,0.027383447,0.069302864,0.17399491,-0.035608467,0.08976586,-0.3302503,0.31045145,-0.024679817,0.27648222,0.33904582,-0.019785363,0.51521283,0.6569507,0.7431201,-0.17662174,0.9025227,0.55397505,-0.10484374,0.15238336,-0.3501438,-0.33327514,-0.42202875,-0.25335994,0.062461264,-0.45750076,-0.37360796,0.04440767,-0.2667259,-0.819479,0.6605107,0.04101018,0.25539476,-0.05540285,0.4168144,0.7734978,-0.24942559,0.028882321,-0.020516805,-0.23624788,-0.7746938,-0.16501954,-0.5254931,-0.59769577,0.23923062,0.82773185,-0.42503422,0.051194567,-0.018014984,-0.26588857,-0.019843366,0.11846136,-0.16104351,0.2959355,0.40416315,-0.20403549,-0.5794769,0.37398985,-0.094606824,-0.15538932,-0.47967118,0.41415337,0.6003126,-0.6218604,0.6252982,0.30126482,-0.0838023,-0.29509115,-0.4581421,-0.15310809,0.010141716,-0.04710751,0.4514374,0.26499644,-0.8282193,0.37193888,0.410763,-0.3240285,-0.76930416,0.53028595,-0.083546415,-0.116146326,-0.24571902,0.42153007,0.1707327,0.06555119,-0.3942688,0.07928936,-0.4354629,0.08103086,0.2702921,-0.074108616,0.30143097,-0.15175249,-0.118254036,-0.82868856,0.1256064,-0.49158967,-0.352385,0.43804085,0.22168818,0.21637987,0.17516367,0.19354722,0.26491335,-0.40145385,0.009566381,-0.10828984,-0.18630661,0.31373912,0.5016428,0.49172014,-0.5409486,0.51777464,0.040497426,-0.09470676,0.05276138,-0.14827706,0.42962074,0.1563646,0.39923745,0.1002972,-0.28518993,0.19812652,0.58168,0.042443983,0.45802996,0.1285451,-0.034200385,-0.028429164,-0.013443506,0.3521462,0.004609664,-0.6611882,0.15038563,-0.45519182,0.21851137,0.5930943,0.21627122,0.20965503,0.05849065,-0.47945088,0.011299271,0.070609875,0.19685808,-1.2332573,0.45398396,0.28145903,0.89982694,0.24740131,0.050962504,-0.094558306,0.86273515,-0.2223507,0.23022142,0.37020046,-0.084592536,-0.5230446,0.48211163,-1.0343877,0.48605186,0.023358844,-0.00899877,-0.03366353,-0.12061751,0.4384785,0.79104775,-0.25801438,0.028848972,0.06976055,-0.2940851,0.20936115,-0.5142189,0.03539519,-0.7443769,-0.30238774,0.57523686,0.50690913,0.4464161,-0.23547179,0.025174966,0.29006654,-0.1543797,0.23623969,0.07914873,0.26865312,0.011237149,-0.6766013,-0.08366371,0.44523138,-0.03717858,0.39891374,-0.10515261,-0.052027483,0.2902989,-0.2734117,-0.094878286,-0.17227474,-0.63464075,-0.15390915,-0.16867901,-0.66557825,0.60176754,-0.04597884,0.18550912,0.25264108,0.06773935,-0.19290906,0.60712725,0.052113973,0.9730577,0.05955368,-0.06326984,-0.44065952,0.44861585,0.082061134,-0.09338824,-0.092216454,-0.29144794,0.09237642,-0.56443983,0.5430186,-0.03790285,-0.46235943,-0.18280002,-0.0106787225,0.137213,0.5363211,-0.24590921,-0.20482522,-0.2516747,-0.33536178,-0.3252309,-0.18810548,0.034789775,0.37219444,0.26362696,-0.06072084,-0.27028397,-0.13725387,-0.16901657,0.26577216,-0.15066808,0.40377238,0.34664232,-0.0681891,-0.16977742,-0.19235156,0.3179234,0.5163392,0.007804476,-0.2582182,-0.38348833,-0.24491054,-0.43901184,0.07824542,0.02741276,0.48824495,0.1955054,-0.14352438,0.7039761,-0.18943161,1.3555597,-0.08196083,-0.5457997,0.11451031,0.5478121,0.054150123,-0.14021227,-0.28362253,0.86574876,0.39418375,0.008871,-0.051741187,-0.585658,-0.15131079,0.39624822,-0.20884529,-0.07792357,0.052116632,-0.5398318,-0.1860721,0.19323699,0.19084117,0.36992472,-0.12364861,0.16699086,0.33404428,-0.13171643,0.2211714,-0.3445706,-0.19375695,0.2430202,0.47130808,0.00069856644,0.10830384,-0.46345124,0.41985133,-0.53553486,0.1550699,-0.24954516,0.29950935,-0.25135234,-0.31065148,0.29974896,0.076085284,0.36595276,-0.3064409,-0.37675434,-0.2822379,0.5004891,0.21800658,0.062494643,0.5662338,-0.31546277,0.028079836,0.05701329,0.3743677,0.94627416,-0.197947,0.025096592,0.38675007,-0.2979386,-0.78990424,0.59448206,-0.47699437,0.2589911,0.10702278,-0.09451881,-0.6321869,0.21326503,0.31310794,0.1221424,-0.10702765,-0.5968915,-0.098547235,0.18973619,-0.28667566,-0.12872872,-0.36306316,0.023442008,0.36982995,-0.26586375,-0.45773584,0.011231496,0.09338037,0.10331844,-0.33396074,-0.20351022,-0.38982895,0.32093444,-0.020896861,-0.450408,-0.10519767,-0.005725104,-0.48389736,0.21434039,-0.03187631,-0.28202608,0.2806569,-0.24343385,-0.025460334,0.938452,-0.27096134,0.18855341,-0.39992282,-0.5213064,-0.58854395,-0.31227568,0.25280657,-0.16725995,0.036968842,-0.7261584,0.11548499,-0.10614496,-0.3493552,-0.14264432,-0.5156187,0.41816616,0.08834163,0.28276226,-0.036364354,-0.7374881,0.19282912,0.068934076,-0.07535153,-0.74347466,0.43008444,-0.18951249,0.90188587,0.033167742,0.15970494,0.38867763,-0.3212229,-0.13751489,-0.3029955,-0.23048316,-0.42596003,-0.15793292,726 -726,0.47906846,-0.17183383,-0.5691011,-0.12135541,-0.11975272,0.01692046,-0.08911881,0.34949854,0.3905303,-0.44127303,-0.08934736,-0.10523048,0.08739614,0.20868012,-0.2243889,-0.7850685,-0.08701476,0.3212155,-0.37761894,0.5085127,-0.52538234,0.17575444,-0.09282914,0.32801777,-0.12706994,0.22191194,0.31225067,-0.14271435,-0.17057785,-0.037310783,0.24111515,0.4331965,-0.80976105,0.14745738,-0.008312244,-0.27362254,-0.06606109,-0.35238045,-0.4969064,-0.92188394,0.5186108,-1.0307306,0.56342304,0.27114922,-0.17558323,0.26003677,-0.028719027,0.046249636,-0.33177325,-0.011308441,0.13450712,-0.3609038,-0.31341842,-0.28380492,-0.11339169,-0.20021406,-0.7790202,0.086320676,-0.51722157,-0.028253106,-0.29871908,0.14231035,-0.43483317,-0.030778326,-0.30331177,0.71907604,-0.43009165,0.0045894017,0.3961414,-0.21796513,0.24344507,-0.45234916,-0.16111296,-0.099614754,-0.011396353,-0.21724297,-0.3993605,0.19948873,0.3818016,0.3771341,-0.057667393,-0.38616583,-0.39139387,0.04782872,0.43485582,0.40553468,-0.29170462,-0.51995647,-0.073253736,-0.033110086,-0.057097122,0.127158,0.23991816,-0.4196623,0.001383433,0.20122752,-0.12603918,0.6255433,0.72514975,-0.1511485,-0.18547036,0.23955266,0.59066606,-0.012196938,0.03525052,0.039090954,0.06518499,-0.609123,-0.250747,0.1910908,-0.23604144,0.65116704,-0.265729,0.085079126,0.5904928,-0.45005795,-0.2008492,0.23451039,0.15369707,0.09821912,-0.438998,-0.29064095,0.6625272,-0.42855772,0.027488094,-0.2666611,0.80602163,0.13051769,-0.82478154,0.4377054,-0.55546325,0.3219752,-0.23450515,0.77865654,0.54369676,0.4291216,0.53752905,0.8351319,-0.52432126,0.037560485,0.08748459,-0.6073913,0.18917741,-0.24487719,0.034533225,-0.3564706,-0.13700326,-0.02647474,-0.2702351,0.07606056,0.47559148,-0.52310604,-0.10462333,0.02071122,0.621344,-0.29696527,-0.19747098,0.60584337,1.2430117,1.1281899,0.19481824,1.4690036,0.39018977,-0.16433305,0.0838089,-0.15615183,-1.150655,0.29940408,0.29868814,-0.4710081,0.44407794,0.12624271,-0.3021843,0.4417501,-0.5389407,-0.1904316,-0.1475336,0.3314745,0.0061193933,-0.23578899,-0.407276,-0.15778875,-0.007694861,-0.021803392,0.127556,0.27512124,-0.2665499,0.26339218,0.14349592,1.225487,-0.11364163,0.106249206,0.09297393,0.3565602,0.18835957,-0.042584416,-0.037500344,0.3189875,0.31607744,0.26814634,-0.65546286,0.07831783,-0.2352776,-0.56009203,-0.25360116,-0.30658552,0.1783372,-0.07080661,-0.43189886,-0.12508097,-0.16585207,-0.3958491,0.3875225,-2.393478,-0.11967142,0.069743454,0.4231946,-0.20035058,-0.27875984,-0.10736062,-0.50757086,0.27268866,0.31523862,0.44618896,-0.8042533,0.29944932,0.45473772,-0.59856546,-0.01155889,-0.82082516,-0.066974156,-0.23989871,0.28852856,0.13164848,-0.10128124,0.11305576,0.14554398,0.48954943,-0.003750549,0.03282983,0.37088427,0.47734106,0.017989708,0.34431207,0.020080786,0.4639362,-0.41665855,-0.4154584,0.35322732,-0.40742442,0.17345916,0.03819017,0.032536708,0.32742172,-0.43194205,-1.0557622,-0.5715039,-0.21094242,1.1984037,-0.35342214,-0.51611495,0.30729836,-0.17708352,-0.3549864,-0.011618426,0.4301174,-0.31215218,-0.085799545,-1.0124551,0.12388717,-0.16567755,0.24235685,0.011632121,0.065681554,-0.45202345,0.67658657,-0.20114239,0.37712172,0.42229426,0.20656437,-0.473718,-0.5959143,0.09766246,0.9924711,0.16517466,0.29369086,-0.2816756,-0.23346029,-0.08755748,0.009408212,0.043171883,0.56571794,0.8615255,-0.11680996,0.04837972,0.37615988,0.07690383,0.084083304,-0.21360016,-0.43930534,-0.084693834,-0.13296407,0.65556717,0.85824203,-0.41792992,0.23739092,-0.03639937,0.34218675,-0.003834399,-0.35866258,0.5384594,1.4146162,-0.07738287,-0.38608947,0.7754832,0.4417617,-0.65256363,0.5954963,-0.6232621,-0.21141694,0.36334884,-0.19281866,-0.45979038,0.2729377,-0.43969932,0.2453102,-1.0379124,0.548276,-0.26589277,-0.32283136,-0.53738314,-0.2306134,-3.977215,0.24715552,-0.37240034,-0.025231214,-0.19646849,0.022188503,0.23728868,-0.5597985,-0.62248987,0.19550191,0.09178957,0.52357185,-0.24389938,0.13862266,-0.0715371,-0.07634702,-0.19330499,0.22461827,0.30701756,0.28572398,0.13385506,-0.48745394,-0.0002741424,-0.113082916,-0.39620754,0.056691136,-0.5657983,-0.49972644,-0.09506819,-0.70105463,-0.5690619,0.64678895,-0.2834646,-0.16460833,-0.33664453,0.1983107,-0.050394855,0.45782802,-0.082019016,0.32578886,-0.0016525433,-0.032069642,-0.11092806,-0.031388637,0.3949989,-0.075723894,0.39165512,0.49634224,-0.42848015,0.0886126,0.55822456,0.7977017,-0.04181264,0.9240853,0.63384885,-0.026885109,0.2872308,-0.21306525,-0.24805562,-0.80371284,-0.3239377,-0.06513085,-0.53392184,-0.32101023,0.066555105,-0.40855402,-0.8366799,0.66532326,-0.16080731,0.23682864,0.093813896,0.44379684,0.5554887,-0.13617112,0.010866027,-0.1338065,-0.3109282,-0.5356333,-0.0964136,-0.64746994,-0.53487074,-0.070756055,0.9361751,-0.12709433,0.060420923,0.14067116,-0.014448909,-0.013494799,0.27816075,-0.025509605,0.25946912,0.48688242,0.096253745,-0.6207928,0.4070188,-0.17215618,-0.12505199,-0.7584107,0.1678002,0.5035902,-0.725579,0.8402598,0.4748205,0.114533,-0.051910464,-0.59647316,-0.43961242,0.15260619,-0.08484424,0.69391906,0.41748106,-0.9063917,0.49226087,0.4990369,-0.44268253,-0.68664736,0.5235066,-0.059165876,-0.18527696,-0.077553,0.5077719,-0.28405178,0.08603001,-0.15998714,0.25580692,-0.3990736,0.13050932,0.26582253,-0.068949334,0.45783025,-0.06174262,-0.14564168,-0.75445247,0.07644855,-0.62680346,-0.19855997,0.16243806,-0.030818395,-0.025910629,0.13452746,0.045231834,0.6172869,-0.2305117,0.06360424,-0.035505097,-0.4915393,0.545413,0.6190529,0.33768228,-0.4705512,0.65151066,-0.0033474439,-0.1795846,-0.34496564,0.014230563,0.5538137,-0.0074043367,0.41854525,0.33266163,-0.00067671906,0.35205618,0.78189343,0.13054189,0.7063289,0.24774401,0.060658075,0.34327918,0.123158365,0.33907765,-0.13104399,-0.58315456,0.03693005,-0.20249715,0.20430878,0.6315434,0.059933607,0.48895544,-0.259529,-0.33709526,-0.105423085,0.3484728,0.06595845,-1.2355542,0.44657245,0.146746,0.6583507,0.57478297,-0.04580261,0.09679083,0.46016905,-0.1916202,0.12526643,0.36533177,-0.080267824,-0.56109715,0.5757213,-0.6942804,0.19818467,-0.25340238,0.045179646,0.0422627,0.007663493,0.40894097,0.7489671,-0.042539403,0.023284338,-0.1289705,-0.18350346,0.2913659,-0.48278517,0.33145362,-0.40073982,-0.28012103,0.7813937,0.46871516,0.55017674,-0.25400972,-0.00041448898,0.23688713,-0.18251981,0.37053907,-0.08308925,-0.10858306,-0.069187,-0.723295,-0.24061608,0.6522834,0.3221938,0.03573338,-0.2043648,-0.20116708,0.30012333,-0.17979993,-0.2972596,-0.14521345,-0.70322156,-0.07142596,-0.17879952,-0.5196283,0.4833986,-0.27418897,0.1776217,0.2695588,0.10891633,-0.6602798,0.061945114,0.24250099,0.74066365,0.013842482,-0.21315248,-0.36024985,0.3309942,0.3026968,-0.1523067,-0.0306285,-0.34778574,0.069622755,-0.47340134,0.5607689,-0.16672571,-0.4494039,0.002115479,-0.029734502,-0.03704519,0.6942016,-0.39998564,-0.2780406,0.032787886,-0.10404767,-0.22021185,-0.31173876,-0.14186536,0.36881354,0.13316472,-0.24048768,-0.23463424,-0.070394546,-0.21785356,0.3873079,-0.020192526,0.17159532,0.40890285,0.246963,-0.4245439,-0.13127716,0.28802025,0.7403265,0.053187378,-0.26264623,-0.5629135,-0.50027454,-0.18657064,0.03411546,-0.06102154,0.300368,0.10535077,-0.3730645,0.9235484,0.14111695,1.2208622,-0.086797245,-0.3004184,-0.09640524,0.64635783,0.07404472,-0.27742055,-0.35256723,0.99760604,0.6064594,-0.35019472,-0.10781936,-0.5428494,0.09421056,-0.008889214,-0.17360163,-0.22859436,0.007572824,-0.753768,-0.08428614,0.19731413,0.4587868,-0.027654286,-0.016373284,0.2574432,0.19053353,-0.00020706654,0.31988138,-0.47224745,0.024929103,0.21977755,0.22071648,0.1202609,0.08467212,-0.32741782,0.27461684,-0.51889384,0.06652844,-0.3085601,0.11322523,0.0653194,-0.2913658,0.28845206,0.036214694,0.37766728,-0.33502176,-0.24680686,-0.2032424,0.37140802,0.1436281,0.04216925,0.90206397,-0.26617754,0.11020629,0.25858894,0.72329223,1.1706188,-0.15315117,0.04310211,0.24465689,-0.27709082,-0.9284878,0.42799821,-0.25514317,0.17433211,-0.22486566,-0.3331508,-0.84714156,0.068460725,0.16556822,-0.11636516,0.24179162,-0.58428013,-0.34484527,0.27426305,-0.37227204,-0.21256858,-0.28758055,-0.0028055792,0.7001925,-0.31862524,-0.27605444,0.0113764,0.14318044,-0.09624397,-0.5376309,-0.21389191,-0.38331544,0.26890916,0.14944795,-0.35885742,0.065610066,0.20568849,-0.49509305,0.25090224,0.3532179,-0.24260154,0.19830187,-0.22226693,-0.104614936,0.7498454,-0.2738046,0.17577061,-0.5392997,-0.7049628,-1.220041,-0.17189568,0.4637404,-0.08221992,0.031412248,-0.7804043,-0.034433313,0.1311205,-0.16466048,-0.11310451,-0.47399676,0.5037102,0.085769415,0.49014232,0.05407828,-0.7128755,-0.0677931,0.14494795,-0.22318557,-0.48838937,0.50419647,-0.0049083414,0.76143676,0.04115852,0.253316,0.26062986,-0.6501184,-0.031514622,-0.14867866,-0.24972357,-0.5857481,-0.10641929,729 -727,0.44933936,-0.1213932,-0.51631916,-0.15280971,-0.1518325,0.34448192,-0.2524888,0.4061635,0.12925729,-0.43443102,-0.035514787,-0.1370768,0.0135157155,0.23677276,-0.2843766,-0.48419985,-0.07198601,0.10122892,-0.4484722,0.32104298,-0.43888515,0.29843786,0.024273345,0.3800557,0.053315327,0.15313372,0.11863733,0.06539685,-0.107799895,-0.10820491,-0.082067445,0.24695495,-0.5813102,0.019932903,-0.2852723,-0.4015484,-0.1284949,-0.54322547,-0.3712996,-0.6258638,0.3823076,-0.94297594,0.64175737,-0.040052537,-0.2822234,0.3522201,0.08787795,0.13173844,0.035333373,0.049886253,0.0590385,-0.19549005,-0.061979063,-0.13692953,-0.52495193,-0.4082467,-0.7572488,0.10840244,-0.6276187,0.03634589,-0.15076171,0.14616439,-0.19321063,-0.0059205294,-0.015509372,0.31454468,-0.27055156,-0.11860904,0.1264562,-0.12331863,0.38788146,-0.5420242,-0.24443604,-0.0066419244,0.36206532,-0.32500905,-0.22521318,0.16017693,0.4327847,0.62195873,-0.21710227,-0.18539645,-0.3693375,0.13601011,-0.18479775,0.5339682,-0.23137267,-0.35379073,-0.2556923,-0.25587228,0.37569863,0.35526276,0.16057798,-0.193548,-0.010038225,-0.075988494,-0.28818214,0.40005922,0.5721905,-0.44754422,-0.2784796,0.4391481,0.54857105,0.1838596,-0.061657432,0.09261311,0.1035368,-0.70040756,-0.11658929,0.12850961,-0.1420815,0.5577855,-0.14689492,0.2781822,0.4291199,-0.13622588,0.0961,0.04009864,-0.05867217,-0.20137024,-0.15514095,-0.23103903,0.20161718,-0.4540459,0.031219423,-0.14798607,0.524562,0.17962208,-0.9225368,0.3752479,-0.56346995,0.107432514,0.15531056,0.46975115,0.7786902,0.5537581,0.13291048,0.59767544,-0.42756224,-0.06817228,0.03734819,-0.16008027,0.18553308,-0.13932648,0.008045946,-0.4796014,-0.1368049,0.09958636,-0.032617815,0.15477133,0.6209309,-0.5220466,-0.2360235,0.15747227,0.6831624,-0.21838805,-0.07873666,0.7463865,0.97130084,0.8660775,0.08168976,1.3275307,0.21365589,-0.11286272,0.11336943,-0.1139439,-0.82153296,0.27461752,0.35411447,-0.5969448,0.66558415,0.06764058,0.019464662,0.32644224,-0.21180257,-0.13259646,-0.062209137,-0.029625688,0.011066945,-0.06341072,-0.21886942,-0.3237724,0.10580016,-0.049241763,0.38426018,0.25356552,-0.2649451,0.477979,0.41478774,1.4959806,-0.13697447,0.19306047,0.07837416,0.31367403,0.2803241,-0.17885502,-0.22630908,0.26753965,0.35743588,0.12630375,-0.37643284,0.04040084,-0.115394905,-0.36863598,-0.18648076,-0.2614288,-0.29227158,-0.11798305,-0.39462245,-0.19292992,-0.08814668,-0.5118578,0.42881244,-2.8703005,-0.14926134,-0.20680024,0.47879732,-0.22391169,-0.4777334,-0.22632465,-0.4067623,0.49236524,0.44315487,0.20169616,-0.57901,0.25056416,0.49486607,-0.3657737,-0.1956954,-0.63547474,-0.076189734,-0.01634009,0.110753015,-0.010233751,-0.2185821,0.1699992,0.26682404,0.33781675,-0.00017361458,0.04914018,0.22816549,0.4884003,0.11052447,0.4765287,-0.25559717,0.48993662,-0.29597992,-0.24729599,0.49117565,-0.5205077,0.15875323,-0.103553966,0.21336724,0.46962595,-0.47431737,-0.70008117,-0.6068864,-0.22950217,1.264874,-0.14891909,-0.47532982,0.1594964,-0.2610578,-0.5206433,-0.19638015,0.6062881,-0.23755573,-0.04014028,-0.79680383,-0.2966485,-0.106532365,0.31988162,-0.13972794,0.13231577,-0.5603679,0.5034634,0.023185097,0.49732298,0.31650403,0.18055606,-0.44759163,-0.5318422,0.09021287,0.97235113,0.295557,0.19657761,-0.23374023,-0.08848484,-0.3034545,0.030855784,0.08858439,0.46834007,0.60977566,0.003574713,0.1652465,0.31010568,0.08782019,0.1686899,-0.15411459,-0.2771718,-0.19528128,-0.17227843,0.57154584,0.5648673,-0.072013505,0.17508571,-0.08490732,0.22751999,-0.29282433,-0.3471843,0.5507677,0.8991289,-0.18655406,-0.27869055,0.63006645,0.37889287,-0.47273874,0.43491876,-0.6728032,-0.34342235,0.41665882,-0.087606266,-0.4627566,0.3417738,-0.34254202,0.088499375,-0.7289381,0.19301063,-0.17469652,-0.23415834,-0.57798666,-0.12282663,-3.6414354,0.19521666,-0.054631624,-0.16912024,-0.18039936,-0.24753585,0.4582467,-0.49050206,-0.6613254,0.14376034,0.013324825,0.7076703,-0.18915507,0.092622384,-0.36032555,-0.41167024,-0.39212915,0.16828753,0.21623625,0.3333372,-0.003354256,-0.250371,-0.021468226,-0.28546014,-0.4370079,-0.023697555,-0.61532533,-0.42709064,-0.17701149,-0.50270027,-0.29415455,0.75872856,-0.41323566,-0.03971023,-0.29033765,-0.027010623,-0.16584004,0.34488958,-0.1088225,0.13061571,0.04998552,-0.17049193,0.024693178,-0.32827955,0.40486434,0.0008113338,0.098016396,0.4350415,-0.27203533,0.17858896,0.31806892,0.8037189,-0.02562411,1.0276685,0.2743659,0.050576467,0.38334516,-0.2942553,-0.21821691,-0.43570474,-0.059656337,0.06679426,-0.49157605,-0.35262102,-0.22705807,-0.32782957,-0.7212773,0.5322525,-0.10389756,0.24930438,0.059080288,0.4158862,0.45896658,-0.30291623,-0.003305238,0.015677286,-0.25549677,-0.24490239,-0.25164992,-0.6002029,-0.53923124,0.14772466,0.837524,0.022720357,0.10813015,0.26038244,-0.122706376,0.039354496,0.07294495,0.2264444,0.14086393,0.37398592,-0.04454014,-0.61507505,0.29230344,-0.20863436,-0.26427776,-0.6577835,0.005850205,0.70040596,-0.5867693,0.44843477,0.52973527,0.035726056,-0.22485317,-0.6415405,-0.14369589,-0.0023168141,-0.3016191,0.4463031,0.34296563,-0.8171504,0.48358077,0.39748493,-0.23647586,-0.67557424,0.5824541,-0.014133905,0.0120946355,-0.06322828,0.5415153,0.057249226,0.122527234,0.2704221,0.11631362,-0.47130257,0.25762564,0.26291186,0.07146774,0.50982714,-0.14119607,0.020542549,-0.5634473,0.04500136,-0.4699356,-0.32108387,0.3835928,-0.034541942,0.28494617,0.18307057,-0.016167382,0.46369252,-0.36298272,0.046443395,0.075578734,-0.15325525,0.21404745,0.4441802,0.6090879,-0.3172536,0.56905484,-0.12224201,0.07093934,0.120157115,0.11197579,0.48305112,0.14963438,0.35141584,-0.024849929,-0.28487045,0.2631898,0.77212816,0.1645615,0.27516386,0.15558568,-0.09100754,0.15872295,0.09150086,0.15194546,-0.12805496,-0.6024347,-0.11448525,-0.26947773,0.17416003,0.5093513,-0.07466399,0.22754025,-0.3047806,-0.21648645,0.011396467,0.23965192,-0.101443596,-1.3437394,0.15070488,0.17023574,0.7682674,0.30289346,0.09974255,0.038398508,0.46571207,-0.17576262,0.1939098,0.30995852,0.15911786,-0.46435884,0.5314112,-0.64829695,0.48696774,-0.003086943,-0.044157293,-0.008907495,-0.06986968,0.43133256,0.8734136,-0.0628353,0.1295849,0.14975837,-0.1639645,0.25258338,-0.3708482,0.12005176,-0.36320302,-0.084481426,0.6724522,0.42472264,0.388826,-0.3134041,-0.07458433,0.03159517,-0.15077618,0.08196619,0.0031936993,0.012454601,-0.30396894,-0.58646846,-0.1563796,0.45289296,0.3816168,0.18792304,0.20862137,-0.38585055,0.22708203,-0.23054144,0.048506048,-0.12128986,-0.806249,-0.14660636,-0.36324078,-0.585888,0.36178458,-0.09728737,0.07725178,0.33220723,0.082423285,-0.27322063,0.23181441,0.18022643,0.82470036,-0.018943707,-0.045053158,-0.36801016,0.17520775,0.21075934,-0.28682014,-0.16479439,-0.38372666,0.10964222,-0.31426007,0.23500459,-0.077089734,-0.3610676,0.062578194,0.060135666,0.115152635,0.6151592,-0.16913691,-0.12631357,-0.033523664,0.09670651,-0.31185755,-0.10567865,-0.22409445,0.22483529,0.16276829,-0.048445765,-0.058482632,-0.17170914,-0.23030998,0.23603803,0.16028646,0.4524179,0.6594423,0.26610062,-0.3077274,-0.043379527,0.051656045,0.65210545,0.014001828,-0.27982897,-0.44686276,-0.5640565,-0.22480297,0.574263,-0.118516296,0.1199447,0.11966204,-0.3416422,0.71239156,-0.10978149,0.8836819,0.009485816,-0.2800646,-0.08585686,0.45383865,0.031784695,-0.2103081,-0.5010536,0.963954,0.40302646,-0.19794035,-0.15485388,-0.119197525,-0.059146795,0.027216563,-0.32505104,-0.117654726,-0.1613829,-0.7338603,-0.14053243,0.09074129,0.1995302,0.24249734,-0.11396535,0.24865834,0.36984128,0.12915367,0.31300223,-0.36816818,-0.023092875,0.4113363,0.328502,-0.09149659,0.21780993,-0.30921596,0.2742088,-0.44011995,-0.16098095,-0.5542564,0.063568644,-0.07387139,-0.39400098,0.24023141,-0.026605729,0.41081494,-0.10420417,-0.33195975,-0.103806004,0.36350018,0.18882678,0.31619433,0.51044124,-0.11954016,0.041540705,0.008466787,0.5013338,1.1664555,-0.12372801,0.06832394,0.33056906,-0.34157988,-0.6568539,0.2208063,-0.55738664,0.4602909,0.03473278,-0.08580126,-0.12792243,0.2131922,0.14474298,0.16779962,0.026772967,-0.5917795,-0.36378655,0.2789748,-0.29413813,-0.14429912,-0.30704734,-0.008663159,0.615529,-0.24009076,-0.1552569,-0.06909824,0.55000645,-0.20106019,-0.6396774,0.06888123,-0.39323637,0.2507343,0.18373297,-0.39670566,0.05782377,-0.056577995,-0.47990844,0.32239833,0.14736484,-0.3648609,-0.09616889,-0.2722423,0.061684854,0.8439523,-0.22256662,0.009427234,-0.46031043,-0.67310303,-1.0789006,-0.272784,0.014234992,0.17822465,0.026590623,-0.53851795,0.061567064,-0.22580363,-0.101934835,0.026837055,-0.24090004,0.448206,0.15996327,0.69008553,-0.095300674,-0.76550007,0.01945877,0.028504696,-0.24696541,-0.6123233,0.65758073,-0.029838314,0.79209805,0.11774345,0.08754054,0.14997645,-0.5287683,0.12200984,-0.26859453,-0.1292313,-0.77820575,0.14440733,735 -728,0.30094963,-0.26222074,-0.67121017,-0.22815846,-0.37706617,0.03356555,-0.33428904,0.35495436,0.06553112,-0.19558647,-0.34543756,-0.013276665,0.08773908,0.20471907,-0.21087824,-0.56726307,-0.18973678,0.1746712,-0.66281533,0.39990705,-0.6696069,0.22381398,-0.020379672,0.37126988,0.17490402,0.3832445,0.22945626,-0.08336316,0.119793765,-0.0626438,0.038958304,0.3633867,-0.5441964,0.018129697,-0.1632089,-0.5410219,-0.003556944,-0.51033235,-0.1846305,-0.80184275,0.25377887,-1.1563743,0.4914149,-0.07479478,-0.24784888,0.05307353,0.28854674,0.27410316,-0.31051746,0.09305088,0.33494428,-0.03266286,-0.23108599,-0.16709386,-0.010277712,-0.32757264,-0.5161497,-0.007768053,-0.52782065,-0.28893253,-0.28982404,0.2395258,-0.3715824,0.05155135,-0.22933014,0.14786871,-0.530784,-0.14224914,0.19632575,-0.10811308,0.3095048,-0.6628942,0.008844774,-0.1169701,0.49640143,-0.1386903,-0.2702532,0.2299214,0.40181985,0.3381096,0.13092202,-0.24413037,-0.20671035,-0.06524694,0.11605585,0.45669466,-0.24280919,-0.3304647,-0.2283806,-0.017533816,0.54210544,0.45813942,-0.032393955,-0.25523916,-0.035993896,-0.076696426,-0.21848756,0.5144534,0.5443194,-0.27664876,-0.32203102,0.40310404,0.48627567,0.3140101,-0.30130398,0.104141675,-0.048633274,-0.5788653,-0.12475676,0.046121,-0.02091775,0.55342454,-0.21684954,0.25886893,0.8777789,-0.08441499,0.19924746,0.032458305,-0.07595377,-0.29808414,-0.24893387,-0.18401195,0.15578064,-0.5919392,0.18610862,-0.1808466,0.5379127,0.06567263,-0.8154266,0.51243055,-0.5762711,0.08354013,-0.20355552,0.6004623,0.6554395,0.3603296,0.3338328,0.78684866,-0.23591012,0.11715747,-0.14737006,-0.45186013,0.08280725,-0.11630139,0.019133367,-0.5591507,0.13419388,-0.12042645,0.2065758,-0.06810656,0.55727255,-0.51103616,-0.072646074,0.23028043,0.41816857,-0.46310169,0.0053650737,0.7263936,1.0357602,0.991979,0.16534828,1.2292037,0.24249932,-0.06565248,0.15581325,-0.19124563,-0.7250914,0.11681255,0.4011863,-0.20310314,0.32353115,-0.02802467,-0.024417518,0.41327065,-0.32509705,-0.024418388,-0.19065541,0.30682883,0.16990614,-0.092948325,-0.39155334,-0.16695823,0.11607682,0.084053084,0.1539424,0.22884831,-0.18712555,0.09364339,0.06664442,1.2752503,-0.1460632,0.06794368,0.15493491,0.60177433,0.32271412,-0.16781534,0.05183991,0.3675637,0.4585294,-0.08416783,-0.70767,0.24613902,-0.17863056,-0.4711804,-0.057248946,-0.3822788,-0.25993288,0.092513785,-0.5372127,-0.17873038,-0.03271853,-0.337908,0.47860637,-2.6715074,-0.2690001,-0.1347097,0.35030115,-0.19133155,-0.30989167,-0.17479095,-0.5878539,0.40931982,0.30431396,0.37961584,-0.60716635,0.59373367,0.5719382,-0.64336216,-0.14126766,-0.8100818,-0.047230165,-0.04796923,0.35715148,0.068963416,-0.17873207,-0.10730649,0.20933107,0.6737357,-0.017212097,0.16432141,0.43483543,0.42095187,0.20710792,0.6503671,0.032695897,0.5517641,-0.23651713,-0.20488605,0.36372072,-0.26834723,0.345957,-0.2723362,0.06633879,0.48182693,-0.53662133,-1.0550691,-0.6327868,-0.4438348,1.1858264,-0.2882586,-0.44416997,0.18468116,-0.22655402,-0.097588226,0.038372852,0.59597063,-0.16217476,0.013435919,-0.7914809,0.04401448,-0.18164809,0.09817325,0.1076456,0.0541203,-0.44351065,0.64381284,-0.009637292,0.7103045,0.20065475,0.1064848,-0.14381617,-0.3495383,0.08114966,0.6721283,0.3670239,-0.06112459,-0.16521941,-0.20253843,-0.1586658,-0.109685495,0.06166423,0.49966466,0.7360598,0.0014304771,0.2104889,0.23881868,-0.0063750446,0.08890955,-0.31236318,-0.15155122,-0.09726724,0.09650283,0.4437424,0.67598855,-0.1006207,0.32783434,-0.26860362,0.24271114,-0.0959967,-0.5949372,0.62634075,0.51138246,-0.094390765,-0.037326165,0.49058825,0.6544951,-0.32010645,0.5424954,-0.67467946,-0.18969157,0.67525494,-0.15156493,-0.4499586,0.103300944,-0.31040332,0.12863488,-0.67432874,0.3205956,-0.4152528,-0.33529583,-0.31556848,-0.19544496,-3.1648114,0.27587444,-0.15580353,-0.11475761,-0.34247133,-0.25752208,0.542873,-0.6335406,-0.71628386,0.13905522,0.12863128,0.62701476,-0.079178296,0.10398579,-0.32859707,-0.14956376,-0.07446658,0.24177739,0.08547911,0.2867064,-0.12414701,-0.36283273,-0.084864154,-0.0773183,-0.5348371,0.09542114,-0.5206226,-0.4239518,0.024620024,-0.44564915,-0.119230695,0.47786653,-0.33177856,0.03902779,-0.20918854,0.07608645,-0.2572109,0.30017975,0.0642207,0.16752397,0.15331222,-0.029584328,0.088577546,-0.23696652,0.54142773,-0.078095146,0.22407283,0.019580098,-0.08617938,0.12835443,0.46272293,0.66412663,-0.2712734,1.2965463,0.36871448,-0.07602861,0.2378101,-0.26201078,-0.2682673,-0.6567142,-0.2779826,-0.16816638,-0.48408478,-0.5139641,0.07665749,-0.2722533,-0.8648358,0.76699287,0.021232843,0.24562131,-0.015486887,0.24966685,0.37050793,-0.16575827,0.10969984,-0.16977333,-0.113508,-0.5605578,-0.27979535,-0.713215,-0.44960243,-0.13952221,0.9025117,-0.29631165,0.023253312,-0.12365723,-0.2404616,-0.058980126,0.0779066,0.041776456,0.36729538,0.43266127,-0.006212913,-0.70457894,0.3002501,0.036949936,-0.16847602,-0.41628516,0.0070198956,0.7200105,-0.69282585,0.5294763,0.46010238,0.051868882,0.05460717,-0.74168885,-0.25369903,-0.0686528,-0.26645935,0.6027644,0.30281448,-0.9308492,0.6249619,0.4227284,-0.34295863,-0.83165646,0.60545564,-0.055005986,-0.11608613,-0.19594209,0.21843235,0.07933792,-0.06965113,-0.23102914,0.24753079,-0.3499312,0.3452164,0.14729425,-0.10164636,0.44322395,-0.17950381,-0.23148154,-0.79019505,0.027405115,-0.5342535,-0.24544086,0.2456322,-0.14469692,-0.14594488,0.27605942,0.076187685,0.41157183,-0.40569815,0.10386087,-0.007824288,-0.30438974,0.050529625,0.47701105,0.3912382,-0.32327688,0.5460875,0.08769998,-0.15781333,-0.008615416,0.007266141,0.36936614,0.0016693748,0.4143781,-0.20559162,-0.20928845,0.3870742,0.8519959,0.188958,0.5036841,-0.07420687,-0.12712501,0.31805867,0.03066745,0.26054975,-0.029597832,-0.44336334,0.02067075,-0.09405967,0.20356049,0.5064194,0.18325934,0.29356375,-0.073847756,-0.13332216,0.0015274241,0.27413386,0.0019419744,-1.0488135,0.5066343,0.32405132,0.78575337,0.60732627,0.039812163,-0.047290437,0.5832541,-0.3942249,0.14863874,0.54361016,0.0777563,-0.54172987,0.5974921,-0.55342716,0.28587836,-0.21255453,-0.039820984,0.1544264,0.17083277,0.26233575,0.8160535,-0.100649476,0.1545736,0.02684048,-0.1340731,0.108542964,-0.2902395,-0.17658183,-0.33988577,-0.2935122,0.84666437,0.49312624,0.44846958,-0.14209302,-0.088122286,0.004167098,-0.24210742,0.11757425,-0.0008822359,0.050170634,0.05752148,-0.47538307,-0.16717781,0.53874075,0.37078905,0.1148036,-0.2980568,-0.522201,0.2413778,-0.30891842,0.08440844,-0.04314186,-0.67152625,-0.039305013,-0.3001743,-0.50888026,0.43167737,-0.07802833,0.07228691,0.26054174,-0.063505605,-0.0018641949,0.10339904,0.02367994,0.71559787,-0.016281256,-0.10419553,-0.2761586,0.024831388,0.30511886,-0.28646758,-0.06515071,-0.38686758,0.13550319,-0.5770975,0.62291324,-0.104544625,-0.38766354,0.24551743,-0.19983785,-0.16867265,0.5908501,-0.083826974,-0.17223555,0.07384082,-0.15529846,-0.40518263,-0.049596198,-0.37647322,0.08033809,0.16498111,0.05695299,-0.21188134,-0.16402355,-0.11037542,0.6073403,0.13111484,0.46098855,0.32486355,0.028065791,-0.35000247,0.052783497,0.14150514,0.5943156,-0.029736198,0.0035006541,-0.32432097,-0.42261785,-0.12991042,0.27938712,-0.0081658345,0.17284076,0.058825575,-0.15631191,0.84805816,0.11826011,1.0830327,0.048022285,-0.36805943,0.088261716,0.549633,-0.084708095,-0.07239871,-0.39099157,0.82672024,0.512085,-0.14342448,-0.04403868,-0.36547136,-0.23429057,0.34552768,-0.3295236,-0.014669051,-0.07497525,-0.71148807,-0.44793823,0.22855714,0.21487276,0.046194825,-0.042485774,0.0690934,-0.02159172,0.1878627,0.40393013,-0.6841662,-0.34620827,0.15669645,0.26133215,-0.20775042,0.14793459,-0.47163773,0.4580382,-0.62118185,0.04950241,-0.58682525,0.13106802,-0.22843385,-0.36392447,0.032192286,0.03127049,0.36606342,-0.11864647,-0.45453766,0.020884844,0.26899672,-0.040022884,0.3200838,0.4897838,-0.27554145,0.13164315,-0.00026830344,0.64006627,1.1267953,-0.25112584,-0.021812009,0.4690881,-0.44319832,-0.60371804,0.20536079,-0.4770057,-0.1155536,-0.013547132,-0.38289532,-0.28750736,0.24453983,0.24608418,0.072234675,0.028994871,-0.6587715,-0.18277623,0.36846274,-0.19452792,-0.18925801,-0.22837189,0.36114758,0.8601595,-0.4726322,-0.3065793,-0.0147989895,0.35591096,-0.23841998,-0.548582,0.09460208,-0.2241661,0.50975734,0.13597257,-0.35380203,0.026550008,0.088489786,-0.45760366,0.07012628,0.33298463,-0.26518834,0.08154419,-0.45397267,0.1639644,0.9635316,-0.22812122,-0.08597231,-0.4861748,-0.47771516,-0.9043651,-0.30939755,0.09415216,0.19904248,0.11614697,-0.46773052,0.21448098,-0.17428207,-0.23531479,0.05642896,-0.34422314,0.5018415,0.13279022,0.64199245,-0.30216473,-0.80083615,0.12673004,0.19296111,-0.12239114,-0.5107024,0.8029282,-0.14956507,0.90703094,0.12497949,-0.1839834,-0.19697335,-0.41904914,0.20718424,-0.4194973,0.03067149,-0.9212483,0.09336236,739 -729,0.5696865,-0.2069855,-0.55112034,-0.21149144,-0.42337063,-0.0766197,-0.11709587,0.42077082,0.36073413,-0.20158297,-0.3076707,0.063227914,0.08119873,0.37435108,-0.039471373,-0.8875367,-0.026566116,0.25420317,-0.66976106,0.54190606,-0.44487906,0.5175234,0.03739901,0.18870145,0.03931683,0.2911579,0.17475322,-0.093918435,0.08689998,0.029996442,-0.14111637,0.28773987,-0.7661893,0.33253935,-0.20723218,-0.4217052,-0.030813249,-0.35311365,-0.11960673,-0.6116453,-0.14722334,-0.7684024,0.6757855,-0.05885722,-0.28875127,-0.30698398,0.101723716,0.26679733,-0.3519734,0.22564353,0.27042574,-0.1549642,-0.22855559,-0.25679594,0.041621998,-0.73656046,-0.40762642,-0.16416304,-0.69199884,-0.1672534,-0.07384474,0.13414827,-0.34204024,-0.024352971,-0.061534368,0.16674429,-0.42193344,0.0048640827,0.41030917,-0.16118607,0.13845456,-0.4166158,0.02539107,-0.14429735,0.48136535,-0.06878508,-0.40896142,0.33739567,0.3998397,0.4773657,0.35378858,-0.38494205,-0.13702407,-0.12595896,0.06108158,0.42865035,-0.22290626,-0.3410786,-0.2855968,0.1283687,0.48965344,0.33587787,0.09630777,-0.14140782,-0.13650289,-0.08994064,0.11280731,0.2545616,0.45895293,-0.24519898,-0.3378414,0.3025813,0.574478,0.33195448,-0.097841136,0.20811036,0.03764604,-0.5270094,-0.21140875,-0.112792894,-0.0946381,0.5480535,-0.08990962,0.046632767,0.9473474,-0.16547777,-0.06158736,0.17275293,-0.066024594,-0.21556714,-0.2228805,-0.12526648,0.28596938,-0.73038864,0.018251158,-0.33324736,0.59536594,0.26073998,-0.70082504,0.37570164,-0.62288064,0.1267733,-0.07238803,0.6864556,0.82618654,0.62319064,0.23358239,0.71671385,-0.23886193,0.2370994,0.020376233,-0.38888747,0.24838671,-0.24381964,-0.14490724,-0.5771654,0.14704631,-0.05444583,-0.10410835,0.11320967,0.5171516,-0.6318459,-0.230325,0.27515206,0.6055785,-0.3365822,-0.19899948,0.7587575,0.9955378,0.9382815,0.05930466,1.3968283,0.38598138,-0.2548799,0.12949872,-0.12460453,-0.6670964,0.068662375,0.3202117,-0.52072495,0.65176404,0.00316464,-0.08025449,0.3241696,-0.37186685,-0.027990596,0.14941359,0.42063951,-0.2277747,-0.31440324,-0.5496945,-0.11951769,-0.14539686,0.0086598145,0.0020457138,0.48479408,-0.18557183,0.3737066,0.11750353,1.3189352,-0.07295471,-0.057089206,-0.034481056,0.29652295,0.3292796,-0.2531877,-0.116567865,0.44953978,0.36935857,-0.051607825,-0.5662798,0.17614831,-0.35098097,-0.46945497,-0.2185657,-0.3131698,-0.13826455,-0.025859952,-0.28647953,-0.20402035,-0.11150625,-0.23749977,0.5003147,-2.3552108,-0.27622825,-0.058724973,0.44639567,-0.29232603,-0.18744287,-0.16669147,-0.5455167,0.0630837,0.1892223,0.45951027,-0.7761845,0.52159774,0.54669875,-0.6387304,-0.2077918,-0.77340627,0.12582439,-0.052804615,0.46430352,-0.057171524,-0.18254958,-0.02435344,0.15416387,0.5687399,-0.002515559,0.1960226,0.4410175,0.42685083,0.12603125,0.41497824,-0.060773734,0.71325266,-0.26488388,-0.15987752,0.30751193,-0.19871685,0.4171661,-0.058327682,0.041435283,0.49513948,-0.5493091,-0.9891001,-0.63759434,-0.23932296,0.93037677,-0.41031855,-0.25926536,0.1827214,-0.19468322,-0.12595548,0.0651463,0.4540406,-0.06007294,0.23750831,-0.6705056,-0.08377552,0.015648732,0.07395603,-0.025243584,0.023690151,-0.32796907,0.79791063,-0.1359256,0.6373122,0.2895908,0.2784716,-0.08080302,-0.43783486,0.07260113,0.7849979,0.46004808,0.059988625,-0.1433816,-0.22720931,-0.28235295,-0.04586238,0.03793512,0.6741593,0.8607558,-0.15151985,0.0071141412,0.30192173,0.102622345,0.1838151,-0.14886051,-0.1189013,-0.06699031,0.21004327,0.3239085,0.93481433,-0.34674644,0.45269495,-0.1843393,0.40328577,-0.005990817,-0.6803304,0.61418366,0.7714287,-0.19880359,-0.019476043,0.5699427,0.35223535,-0.24895668,0.5343177,-0.67895544,-0.20240852,0.66746765,-0.13276969,-0.40041643,0.32702425,-0.26297525,0.30585247,-1.0424526,0.47210822,-0.33890778,-0.60067135,-0.47816765,-0.056400232,-3.005035,0.33106655,-0.20543535,0.035596773,-0.2526008,-0.07069396,0.43221045,-0.99273044,-0.74858326,0.16580415,0.18800828,0.6393782,-0.15098101,0.14262359,-0.23630427,-0.59952956,-0.11766322,0.24733016,0.013193598,0.25823057,-0.21906275,-0.4733634,-0.15751587,0.0611002,-0.44837093,0.153024,-0.5994845,-0.48281166,-0.08544976,-0.64989114,-0.102628,0.60873157,-0.4142515,-0.025007706,-0.13935901,0.041399583,-0.33944905,0.0770328,0.010801543,0.09591883,0.14756086,0.006713434,0.047903106,-0.25700516,0.38747132,-0.016461818,0.5423377,0.097104035,-0.31512716,0.12422998,0.63827175,0.5812508,-0.239417,0.9967797,0.3435264,-0.14392778,0.29802144,-0.18703185,-0.34981456,-0.743959,-0.4731299,-0.22723722,-0.56093514,-0.54763836,0.11853207,-0.34048393,-1.0088083,0.6202707,-0.034574773,0.4056622,-0.12748513,0.2745969,0.55932796,-0.2294726,-0.012308089,-0.18763274,-0.2379121,-0.5367943,-0.26625365,-0.6345238,-0.6509501,0.26109326,1.2493789,-0.41449302,0.18196991,-0.028626623,-0.0996027,0.11080097,0.039368566,0.07335938,0.13533613,0.45542637,-0.06965435,-0.58302057,0.34650186,-0.18301457,-0.15846553,-0.42133707,0.13709368,0.59506786,-0.9240811,0.565463,0.35655925,-0.02569695,0.26075587,-0.78374606,-0.08261152,-0.041393492,-0.1964173,0.43336704,0.29181,-0.71084285,0.41333124,0.37298945,-0.5914092,-0.6648118,0.35947788,-0.09229922,-0.18059331,-0.091778666,0.36550236,0.15398349,-0.14202751,-0.256374,0.35332835,-0.4489198,0.2037347,0.20697007,-0.19912902,0.20197098,-0.010375812,-0.35596198,-0.9267285,0.17635132,-0.4394258,-0.28562242,0.27513212,-0.011845978,-0.03724942,0.14526588,0.29480812,0.44571275,-0.58401,0.11701668,0.060914986,-0.5902739,0.4010321,0.5287065,0.4312452,-0.26565042,0.46929044,0.20200482,-0.14280623,-0.04108572,0.03608911,0.40947965,0.046027504,0.43231556,0.0035887407,-0.1716891,0.37882137,0.89927673,0.061729554,0.35348478,0.0696087,-0.07499977,0.26284623,0.12418553,0.30251104,0.0931867,-0.41980523,0.018927088,0.0518687,0.24555095,0.5770853,0.47582918,0.31634977,0.012741639,-0.12111077,0.17417838,0.20920914,0.11463681,-1.3470674,0.38140014,0.26695168,0.78282887,0.41821682,0.2829787,-0.18449894,0.39377677,-0.29188687,0.17217548,0.4146876,-0.077400714,-0.435538,0.7495619,-0.60587543,0.37705415,-0.17695038,-0.06791038,0.28890646,-0.008420481,0.39454016,0.9774599,-0.10044468,0.027042232,-0.09897652,-0.07328617,-0.029397221,-0.36134398,-0.03441841,-0.5320394,-0.24499318,0.95712674,0.39529765,0.35615075,-0.26174054,-0.070853546,0.085785426,-0.27017382,0.33489954,-0.13427149,0.120643534,0.045732655,-0.41408622,-0.20360534,0.53416324,-0.07108804,0.06924125,-0.31628388,-0.3624676,0.048380595,-0.20208976,0.14287224,0.027772363,-0.8439437,0.09001201,-0.5434481,-0.5727268,0.6012445,-0.096377425,0.036458276,0.2219772,-0.017086228,-0.14319307,0.2868857,0.060214676,0.8085006,0.054971304,-0.28046092,-0.35089114,0.35094145,0.34178102,-0.4072933,0.12175115,-0.42678452,0.27579132,-0.5974236,0.61445415,-0.0002784087,-0.35058883,0.1019021,-0.19323975,-0.07990478,0.4822892,-0.19141378,-0.25147384,0.11548673,-0.13366023,-0.49833775,-0.12422236,-0.34121898,0.21116343,0.17809698,-0.13352199,-0.08375224,-0.16524711,0.010528592,0.29687926,0.056246288,0.3699562,0.36985812,-0.1532179,-0.1391605,0.16533202,0.2950594,0.3492063,0.06981658,0.047053773,-0.569878,-0.33999908,-0.4098509,-0.032248404,-0.2293145,0.2844292,0.00028409177,-0.13360353,1.0334008,0.10795701,1.2734203,-0.021404313,-0.48072174,0.09986369,0.64003175,-0.13003637,-0.17872073,-0.47079355,1.2357908,0.6938699,-0.17246646,0.0033046375,-0.40862572,-0.29379278,0.37480405,-0.43039668,-0.20047572,0.109541826,-0.6100308,-0.3191732,0.26055625,0.13007256,0.008782299,-0.010083766,-0.0064697172,0.072338,0.04282707,0.21775325,-0.70085657,-0.24290179,0.092027776,0.37266123,-0.073547624,0.21093303,-0.3663407,0.39475724,-0.8011787,0.15414777,-0.49023598,0.18295905,-0.28768164,-0.57190394,0.14270924,0.12957807,0.212553,-0.3153507,-0.37649786,-0.08284791,0.4564699,-0.16642052,0.14491084,0.6960631,-0.35794383,-0.09702645,0.082698226,0.54724085,1.2935905,-0.27629995,-0.112767644,0.3318861,-0.5494927,-0.6097449,0.38182232,-0.46192935,-0.04463828,-0.2447696,-0.5293926,-0.62685925,0.2666834,0.18161097,0.22385424,0.19923164,-0.6932794,0.13439561,0.16703026,-0.41113853,-0.19738935,-0.1794454,0.3893811,0.9133216,-0.43232712,-0.44032237,0.061265595,0.174644,-0.20946282,-0.63274866,-0.13762559,-0.13371307,0.35688788,0.09857046,-0.26359898,-0.012577082,0.06654636,-0.3185476,0.10731798,0.39386448,-0.28067842,0.2405766,-0.3910178,0.006509439,0.9091116,-0.062278632,-0.11796535,-0.6034985,-0.5535945,-0.8629065,-0.59470993,0.032922648,0.34054375,0.08240864,-0.4851671,0.22610842,-0.09145541,-0.12845768,0.0930669,-0.36163378,0.48492196,0.237983,0.47544834,-0.31201342,-1.1181757,0.24164644,0.27759016,-0.13793764,-0.7699799,0.6318824,-0.2608561,1.0039614,0.12090878,-0.15175436,0.101112515,-0.59612215,0.22521186,-0.32053953,0.19889832,-0.69937956,-0.11086547,741 -730,0.34502682,-0.18893312,-0.43987247,-0.14202176,-0.29719287,-0.11495774,-0.108938105,0.29419956,0.3513989,-0.27198493,-0.33299538,-0.23775594,0.038002256,0.44007668,0.03004075,-0.83969116,0.056065354,0.29896978,-0.88524145,0.4972363,-0.5849229,0.3492544,0.32955104,0.25930893,0.06651393,0.40279356,0.25427365,-0.19964185,0.073150046,-0.061250273,-0.14061886,0.09547751,-0.65105444,0.12643637,-0.25662342,-0.30297232,0.06994205,-0.44809297,-0.22750837,-0.84395635,0.12435722,-1.017946,0.45601347,0.15693149,-0.18623263,-0.23949443,0.3492057,0.42454073,-0.4967724,-0.026285747,0.30260855,-0.40889332,-0.33351782,-0.42184147,0.08853997,-0.30418342,-0.6135091,0.06478633,-0.42643154,-0.2257031,-0.28833395,0.24113451,-0.41733298,0.02870191,-0.17960007,0.31850946,-0.35801652,0.1196546,0.41740197,-0.28289688,0.021372356,-0.49490628,-0.08488078,-0.14656748,0.56587136,-0.03930799,-0.33611032,0.4976107,0.37534556,0.61225045,0.37819785,-0.53047186,-0.11100424,-0.15680638,0.20669033,0.53117824,-0.2003734,-0.25628906,-0.07841523,0.07123555,0.36482093,0.47913587,0.045940023,-0.21672262,-0.16253108,-0.12838349,-0.081226975,0.26645538,0.54714346,-0.37181532,-0.47468802,0.26469252,0.55817044,0.11275812,-0.11156233,-0.14485613,-0.0040101456,-0.6577447,-0.17749563,0.05649685,-0.18691875,0.522755,-0.19295454,-0.044972144,0.9917538,-0.18694633,-0.10716271,0.055177514,-0.0078083645,-0.15918277,-0.3796193,-0.17217591,0.37684214,-0.5720271,0.025375733,-0.40492913,0.84709126,0.22005889,-0.72250134,0.34552786,-0.6587025,0.2984099,-0.04243072,0.7187005,0.7534354,0.42554376,0.57311183,0.8717886,-0.38305393,0.22329624,-0.02385696,-0.39194828,0.14048925,-0.33660376,0.32637292,-0.51423746,0.06468446,-0.2454662,0.059506793,0.09349025,0.45990497,-0.6685832,-0.10276531,0.21206562,0.67834365,-0.28838906,-0.10761947,0.6700605,0.9346203,0.97314477,0.014139111,1.3722014,0.4118427,-0.29415178,0.27488083,-0.29296127,-0.8192009,0.10244885,0.36773872,0.061814368,0.095337085,0.037159126,-0.02963178,0.45650366,-0.5306283,0.09227362,-0.06967513,0.26146248,0.020657154,-0.14870372,-0.2873909,-0.33592713,-0.11183376,-0.2500606,0.22428502,0.33847257,-0.26843506,0.22606048,-0.19688764,1.4580079,0.05770052,0.076002665,0.16912204,0.44964832,0.20215978,-0.17108813,-0.17880152,0.29751128,0.37480247,-0.08195953,-0.5044645,0.14895439,-0.47156766,-0.48143375,-0.2129433,-0.36290386,-0.07496999,0.14005814,-0.4268564,-0.28498414,-0.14381202,-0.3614807,0.5796376,-2.4261947,-0.3274215,-0.15914701,0.37270817,-0.32899746,-0.2029701,-0.25510642,-0.59937865,0.34001943,0.12861617,0.4847671,-0.70026267,0.45684382,0.46616328,-0.67682683,-0.3406517,-0.8239906,0.019958781,-0.10829335,0.37152004,0.09602455,-0.22460556,-0.20624688,-0.109693676,0.77163476,0.03134169,0.088397376,0.7186823,0.38759264,0.12301838,0.5727328,0.056110024,0.72741735,-0.47092703,-0.2792958,0.47402197,-0.39893314,0.54925287,-0.1250152,-0.048535507,0.6032443,-0.5046893,-0.98394686,-0.6673371,-0.4521166,0.9515384,-0.39864486,-0.3699005,0.19913235,-0.2210934,0.032300647,0.071283236,0.7783674,-0.037546735,0.2056698,-0.6240555,0.12988052,-0.007797457,0.23019892,0.043242656,-0.06342356,-0.33743298,0.7764348,-0.0806083,0.56093985,0.27900997,0.2087298,-0.23697218,-0.2685966,0.17651083,0.7512485,0.23949903,-0.14610602,-0.06551433,-0.40862542,-0.18203704,-0.55146414,0.0018751415,0.6772096,0.76897776,-0.24823347,0.07856279,0.37949392,-0.069355264,0.008575748,-0.07760095,-0.25790736,-0.07212848,0.16066901,0.5174466,0.95054847,-0.11826154,0.5308537,-0.18686983,0.5123302,0.10895967,-0.57606035,0.5670884,0.7384215,-0.06260658,0.079566665,0.53874356,0.43322638,-0.33780527,0.5885151,-0.59546065,-0.3822387,0.57397646,-0.13528243,-0.37010348,0.029371358,-0.31233647,0.1475129,-0.7092962,0.44660342,-0.37017542,-0.41211158,-0.40767926,-0.09860221,-2.9080114,0.32411474,-0.2937112,0.14506803,-0.20232901,0.13716401,0.17681453,-0.67077416,-0.44490072,0.104341336,0.3503407,0.7613094,-0.049828596,0.22274327,-0.2582886,-0.31755635,-0.14970496,0.2432033,0.04971791,0.34296507,-0.26648137,-0.32548845,0.03311462,0.0864751,-0.35441625,0.18743178,-0.79520416,-0.5572505,-0.18776105,-0.6007617,-0.35694832,0.70578945,-0.52749336,0.040798876,-0.24591842,0.035498213,-0.13178712,0.14387184,0.14240701,0.2130096,0.14734112,-0.075004086,0.03681507,-0.3437124,0.5899854,-0.043087184,0.5798986,0.22659001,0.06993261,0.20304023,0.43315843,0.6712039,-0.31380478,1.0246279,0.49240458,-0.038755205,0.12379173,-0.21164244,-0.29360443,-0.6031652,-0.3508566,-0.069687374,-0.48410255,-0.3853957,0.18246597,-0.20863335,-0.9488674,0.65874195,0.04276605,0.15002123,0.024210969,0.19860102,0.45773727,-0.17716518,-0.07540106,-0.19293918,-0.1495696,-0.6123401,-0.33275458,-0.6172259,-0.53992563,0.16108924,0.98323303,-0.39933544,-0.024287483,-0.06904822,-0.3656677,-0.091981344,0.18587978,-0.002328373,0.2572514,0.6809531,0.054081935,-0.68077314,0.46200722,-0.07049591,-0.020964704,-0.59472805,0.253174,0.5682235,-0.8914271,0.749841,0.3158852,0.026847899,0.12670125,-0.5816713,-0.33412403,-0.013226724,-0.17677172,0.23096976,0.15889443,-0.7531564,0.4319221,0.27689335,-0.60707766,-0.7993721,0.19000679,-0.11482675,-0.28468984,-0.016553957,0.33960116,0.08351116,-0.026702337,-0.20676853,0.23453243,-0.45085254,0.3153579,0.17520006,-0.056234602,0.024122348,-0.23336986,-0.36668223,-0.7822526,0.061880056,-0.5074161,-0.2938877,0.2796766,0.08525871,-0.14452045,0.30948612,0.33337766,0.261924,-0.41507313,0.2058374,-0.13977933,-0.5096782,0.17345475,0.38516405,0.37967485,-0.52811766,0.50022054,0.12010033,-0.18518694,0.10147843,-0.016373795,0.5023847,0.025106367,0.33121315,-0.2879063,-0.16562994,0.3209624,0.85510445,0.015410338,0.3441559,0.11502246,-0.021019045,0.3939486,-0.011909585,0.050369345,-0.07126354,-0.63586164,0.103427045,-0.046613462,0.17079602,0.52670836,0.40160003,0.3608169,0.18060622,-0.2529469,-0.03274123,0.21093258,0.030720124,-1.0080702,0.41452205,0.2441462,0.89849186,0.4172041,0.039464228,-0.27070343,0.8282082,-0.2521335,0.0915575,0.36893767,-0.33075765,-0.465706,0.78313476,-0.7329125,0.49103644,-0.11921176,-0.05542066,0.18386817,0.24604566,0.26878718,0.79187334,-0.39404202,0.060599055,0.0033027898,-0.17647995,-0.128788,-0.3649839,-0.015820393,-0.50376534,-0.5345699,0.94122404,0.36720392,0.5043429,-0.050190527,0.06276858,0.11134667,-0.25932166,0.2955201,-0.1033197,0.02446452,0.23607199,-0.45313752,0.038262963,0.6148117,-0.097873725,0.30814904,-0.08728131,-0.18235534,0.050446637,-0.47484714,-0.1674494,-0.17935467,-0.71717113,0.12379413,-0.2834954,-0.49520558,0.5478501,-0.19357857,0.25270143,0.37376964,0.036712352,-0.10700572,0.642418,0.067061536,0.92232597,-0.08381055,-0.3214916,-0.22014236,0.23677275,0.13377255,-0.29059118,0.2761122,-0.4081909,0.1499286,-0.63525707,0.6893832,-0.14919887,-0.519708,0.13253309,-0.33755413,-0.117796496,0.58310324,-0.20060469,-0.15993111,0.086894035,-0.33484146,-0.31205398,0.018122613,-0.249095,0.27607992,0.2352929,-0.006418393,-0.24702527,-0.40871614,-0.09035762,0.37707484,-0.039402664,0.2896554,0.056573026,0.034992807,-0.002602967,0.24786586,0.3268633,0.45566174,0.20862262,-0.0854366,-0.41792676,-0.21781562,-0.3982547,0.16156618,-0.060623493,0.32707694,0.041619148,-0.16157153,0.94337493,0.027984528,1.1889958,0.10169497,-0.314722,0.0055006226,0.5802977,-0.05236061,-0.02530251,-0.2745438,0.8841113,0.62019,0.01861764,0.010462981,-0.50991064,-0.116924286,0.45906898,-0.34975317,-0.06228725,0.05940517,-0.5795667,-0.46352684,0.18598613,0.18184862,0.1655584,-0.16770475,0.038470037,-0.028508846,0.13494653,0.3116744,-0.70880824,-0.33914587,0.19605376,0.34760535,-0.23858291,0.17600456,-0.40636823,0.5108512,-0.8046967,0.360627,-0.44096437,0.058631614,-0.26509726,-0.3037961,0.22874378,0.039829846,0.47662428,-0.4090994,-0.33463958,-0.050092217,0.44091007,0.1734778,0.19504346,0.78692156,-0.3592434,-0.13520017,0.08846637,0.60418594,1.2460867,-0.5191488,-0.007274554,0.2715517,-0.4472005,-0.66285217,0.6246096,-0.2995051,-0.18863136,-0.18701212,-0.56793565,-0.39715713,0.17781767,0.19391401,0.04206826,0.11024552,-0.64333415,-0.045691315,0.23859732,-0.31009886,-0.31834024,-0.32375064,0.46866274,0.8994503,-0.16091593,-0.39740583,0.27567628,0.1541764,-0.31893027,-0.38828436,-0.0014069447,-0.35361913,0.29937518,0.076840945,-0.27470595,-0.08405173,0.15611991,-0.5297341,0.10190062,0.27267486,-0.33650395,0.18461162,-0.15824138,0.048662305,0.9834684,-0.17201318,0.122651175,-0.5104058,-0.4394298,-0.82772636,-0.44945642,0.45060506,0.11850032,-0.1304519,-0.33064657,-0.04525433,-0.005346048,-0.26185122,0.11012379,-0.5740005,0.33473852,0.09496359,0.3645536,-0.34332693,-1.0590961,0.033078123,0.08963383,-0.18035883,-0.617974,0.3944303,-0.23636927,1.0449895,0.103899516,-0.2581244,0.031707194,-0.3849281,0.21126571,-0.32942963,-0.11773689,-0.6955938,-0.071450785,743 -731,0.60195154,-0.098461814,-0.6120564,-0.15019117,-0.19651511,0.0903313,-0.08543165,0.6298993,0.39579803,-0.40574753,-0.14859405,-0.14194955,0.08136304,0.053311888,-0.1627207,-0.59347045,0.07315384,0.26426938,-0.6082197,0.69891983,-0.29613978,0.34810355,-0.06607047,0.41855258,0.339666,0.2433316,-0.24677137,0.09360222,-0.3132186,-0.071511015,0.054936226,0.36138168,-0.51888084,0.06482893,-0.28406513,-0.19663492,-0.23667988,-0.43281043,-0.50438267,-0.82712704,0.16339518,-0.9763572,0.73093855,0.07165704,-0.33006254,0.03935896,0.30192003,0.18642198,-0.16392651,-0.03947017,0.15476848,-0.014446231,-0.102723725,-0.1583258,-0.31956023,-0.42833444,-0.52796555,0.07209025,-0.45644778,0.10627156,-0.19767848,0.23878813,-0.3662682,-0.13654655,-0.09477878,0.6905422,-0.2907116,0.314935,0.15252236,-0.04176466,0.29555702,-0.7032708,-0.3097647,-0.18223074,0.2140091,-0.17651765,-0.39288315,0.17254393,0.3885948,0.40302035,-0.012725282,-0.22338639,-0.2801738,0.10239796,0.051753584,0.33158973,-0.06936496,-0.44957477,-0.09838092,0.05395109,0.23134072,0.22635719,0.38860956,-0.31267947,-0.14592817,-0.17821842,-0.18253991,0.5215189,0.40477335,-0.18781868,-0.12831722,0.24848604,0.48520666,0.26047367,-0.16543058,0.16199687,0.002607318,-0.5881754,-0.03689353,0.19347245,-0.121538654,0.6217848,-0.23659192,0.019707501,0.6118623,-0.2718628,-0.2916971,0.416323,0.32168242,0.06891374,-0.35779402,-0.1802327,0.15581575,-0.45533335,0.043632645,-0.25424707,0.6595411,0.09130415,-0.6656174,0.059585653,-0.57828516,0.060309168,-0.07676225,0.47298628,0.77081954,0.42346463,0.17090115,0.63803416,-0.18025371,0.004045583,0.062909655,-0.25430068,-0.010574921,-0.25017542,0.10190383,-0.54688334,-0.07572006,-0.13097864,-0.27707317,0.1731108,0.56222194,-0.54558504,-0.33594972,0.13406779,0.76529634,-0.25748238,-0.29643345,0.89996433,0.95919514,0.839757,0.084355906,1.3466626,0.13804437,-0.20381814,0.15169755,-0.25036228,-0.77509433,0.39478207,0.03199172,-0.7635014,0.32152322,0.031336095,-0.124029726,0.19079755,-0.41164085,0.062508255,-0.23566273,0.33300176,-0.013221392,-0.16187403,-0.3803476,-0.38390192,-0.22159488,0.025871754,0.38570172,0.10355561,-0.2612348,0.4134895,0.04881082,1.3705714,-0.19019166,-0.14852327,-0.01867084,0.27543986,0.23292817,-0.25975662,-0.23004714,0.50520444,0.33278996,0.12589954,-0.52689993,0.13068733,-0.15718721,-0.26776853,-0.30115426,-0.3762849,0.00344027,-0.027502056,-0.4916008,-0.1895139,-0.27722237,-0.47716856,0.41954154,-2.5570345,-0.30701086,-0.09662156,0.43958429,-0.13905248,-0.38593322,-0.34917626,-0.4889723,0.25502986,0.1337387,0.48571098,-0.66141987,0.41549212,0.32268244,-0.60193324,-0.17308429,-0.7065982,-0.25835449,0.046141505,0.1360365,0.0026004757,0.09671196,0.055140093,0.10757889,0.39330605,-0.06333757,0.15012778,0.4566031,0.4529267,0.005873277,0.4322826,0.02313948,0.6915605,-0.17093737,-0.34034476,0.38946578,-0.40731966,0.26314318,0.093082935,-0.02314694,0.59257674,-0.42579067,-0.90804327,-0.63964945,0.01648442,1.1174928,-0.16262731,-0.33537653,0.17826721,-0.528892,-0.25981066,0.0962938,0.5537112,-0.1739267,-0.031009654,-0.933169,-0.16687177,0.008267084,0.27651635,-0.13669246,-0.0265405,-0.39672068,0.63463676,-0.07974381,0.44042698,0.30358908,0.2550099,-0.4312991,-0.59891355,0.052849844,1.1306858,0.34044626,0.12858365,-0.3911049,-0.17506878,-0.5855316,0.09888926,0.08696756,0.6887582,0.4536889,-0.11443727,0.26461273,0.27145115,-0.05363483,0.21552055,-0.07398576,-0.39225972,-0.29241878,0.15851921,0.50145185,0.64986163,-0.2942611,0.71923214,-0.20980476,0.33244604,-0.15273608,-0.5444186,0.5857505,1.2749915,-0.16150711,-0.42106077,0.73687863,0.39076313,-0.36485973,0.50684,-0.38439548,-0.36375916,0.35758626,-0.1190373,-0.26219872,0.39747843,-0.3591081,0.11049245,-1.1020317,0.25021788,-0.32135823,-0.52852,-0.51473355,0.030571938,-1.7343243,0.2051643,-0.1607283,-0.21724626,-0.19507502,-0.32594264,0.00036257965,-0.50781673,-0.6508923,0.12712668,0.13777983,0.60856664,-0.16828209,0.076445036,-0.051973086,-0.32613203,-0.17464899,0.13609932,0.26922953,0.42679685,-0.17564188,-0.39226356,-0.09404201,-0.12219989,-0.31679285,0.074031696,-0.7965785,-0.6127182,0.010644367,-0.7801391,-0.25090396,0.70344883,-0.2784128,-0.13387826,-0.21040395,0.078202836,0.24337228,0.31979626,-0.038764134,0.17780413,0.10498241,-0.1290938,0.034288432,-0.14077021,0.23075484,0.08435951,0.2751301,0.36083725,-0.073454194,0.4042174,0.45725563,0.67318225,-0.25413164,0.8577209,0.52708477,-0.053153,0.25277174,-0.14799634,-0.30492243,-0.45219502,-0.15286674,-0.1360101,-0.5785637,-0.31793576,-0.033366363,-0.37383208,-0.9351953,0.56508785,-0.10229667,0.05349825,-0.039242327,0.3360265,0.5501854,-0.0075288233,0.06996377,-0.17523599,-0.30234596,-0.50955427,-0.37636593,-0.48441586,-0.3878341,0.019414742,1.2161472,-0.35604388,0.18372495,0.07725851,-0.3581769,-0.0033535718,0.27556258,-0.100309245,0.09143608,0.7212241,-0.20669511,-0.4525646,0.19662215,-0.23251057,-0.14932677,-0.5300864,0.2631163,0.61905926,-0.59137905,0.76767695,0.25238025,0.0077673243,-0.33461383,-0.55716145,-0.17040612,0.070924565,-0.1509318,0.49095,0.34053606,-0.5589936,0.37155765,0.12619576,-0.21585158,-0.651529,0.5280503,-0.0947167,-0.29922712,-0.14348921,0.44990233,0.004338063,0.058582857,-0.27179083,0.22790667,-0.24250695,0.20840296,0.18345875,-0.21424752,0.08916409,-0.1959615,-0.08246316,-0.7819437,0.12990215,-0.44021225,-0.382427,0.20220569,0.17754142,0.09983303,0.23714049,0.21941134,0.280625,-0.42116892,0.015786223,-0.16265392,-0.24792764,0.21792112,0.29029095,0.5323837,-0.54665244,0.4867788,0.0062101106,-0.1996466,0.07471523,0.2855151,0.5377282,0.0135349315,0.29220825,0.25180715,-0.03764566,0.2577647,0.681141,0.023765666,0.3687093,0.064881906,0.013279887,0.04591888,-0.005243274,0.37596056,-0.14342152,-0.5159204,-0.05396619,-0.19478266,0.28531,0.45055503,0.17241003,0.3204912,0.0024522864,-0.6192697,-0.032319333,0.20381874,0.11225692,-1.5698981,0.24375758,0.2582724,0.9317666,0.34497026,-0.041859034,0.014604227,0.57498175,-0.14907722,0.096828304,0.29737514,-0.066340774,-0.4238493,0.47965607,-0.6974958,0.46184736,-0.07399085,0.0012265283,0.010212839,-0.0014234093,0.49167788,1.0066106,-0.20002726,0.04717431,0.12872921,-0.2729465,0.03319116,-0.46991268,0.15590352,-0.6298057,-0.18209933,0.71218777,0.57349575,0.24509643,-0.34476364,0.09177932,0.1609582,-0.19396909,0.16651258,0.081979044,0.094129674,-0.06662666,-0.7168135,-0.031102937,0.54724914,0.004195938,0.10178215,0.14747886,-0.024487926,0.21851614,-0.1091061,0.096721224,-0.17649935,-0.8202268,-0.25487202,-0.3962348,-0.39113334,0.36793363,-0.30142796,0.12185477,0.31042397,0.07216886,-0.26002762,0.6070314,0.28298458,0.8738794,-0.03301946,-0.058884904,-0.43903255,0.3632256,0.20583905,-0.12801994,-0.076677255,-0.2511458,0.16178626,-0.5720791,0.47320816,-0.08421198,-0.41779214,-0.15157345,-0.021522505,0.046021644,0.50902927,-0.19160435,-0.03521978,0.049771056,-0.22144222,-0.39910752,0.025603918,0.011064843,0.24829382,0.5059617,-0.3175948,-0.23388639,-0.07796569,-0.09675571,0.18418129,0.087662354,0.6071731,0.48750627,0.26227632,-0.20641604,-0.0037916256,0.4877912,0.685586,-0.090702586,-0.11115429,-0.3073034,-0.13792303,-0.35689545,0.3371042,-0.079186454,0.27453315,0.13119338,-0.16070963,0.8950028,0.20997474,1.3452672,-0.013127131,-0.46344388,0.11652761,0.46536165,-0.025196223,-0.07911352,-0.342656,1.0395982,0.42363212,-0.014196066,-0.14074956,-0.496908,0.01811292,0.041813593,-0.14509545,-0.1325474,-0.1453716,-0.55120504,-0.36178115,0.29809493,0.19728324,0.2101374,-0.09727531,0.22730407,0.3238614,-0.17242779,0.04573281,-0.57160944,-0.015081846,0.093569465,0.36138767,0.000113762915,0.19187358,-0.5063555,0.33988386,-0.59068376,0.051860396,0.015804114,0.28614205,-0.08774796,-0.3548067,0.13988294,-0.051555183,0.39661804,-0.60629904,-0.18979289,-0.40181106,0.59504455,0.09380247,-0.005304741,0.6484953,-0.27773076,0.1297411,0.1594476,0.46466225,1.0580466,-0.20602615,-0.06058791,0.3517259,-0.38982385,-0.7094437,0.33006734,-0.3405062,0.37156683,-0.2148285,-0.21857022,-0.63339496,0.3629483,0.11570842,0.15622209,-0.08723069,-0.43384907,-0.0891887,0.33712107,-0.24611782,-0.049575154,-0.24232425,0.011136679,0.47963715,-0.03415913,-0.45251825,0.14025718,0.1620622,-0.2359129,-0.5437346,-0.16526964,-0.36262947,0.25972006,-0.060221646,-0.27631438,-0.26246276,-0.0950589,-0.4515088,0.21335632,0.29566675,-0.23995283,0.13852312,-0.19608134,-0.26344818,0.9318896,-0.3347172,0.23722576,-0.36167362,-0.6206985,-0.6417911,-0.31115073,0.19352438,0.07292722,-0.16309491,-0.8134943,-0.07103538,-0.24655518,-0.32027933,0.09760376,-0.30739695,0.55228275,0.16984089,0.2209818,-0.2681978,-1.0334947,0.21873464,0.13703153,-0.23748685,-0.7748502,0.42961833,0.11626422,0.7432237,0.14386143,0.21209247,0.44622272,-0.44221908,-0.05656445,-0.14472707,-0.02732243,-0.6315888,-0.08151717,751 -732,0.36605385,-0.07047821,-0.4231753,-0.19114336,-0.34312704,0.31856316,-0.057599224,0.38753617,0.22529687,-0.47508067,-0.049141467,-0.16488677,-0.089361064,0.5145337,-0.22269095,-0.6534068,-0.1360067,0.071780205,-0.49916425,0.23202252,-0.6276538,0.3713338,0.122346945,0.38441557,-0.0070559797,0.22908054,0.21333951,-0.060046904,-0.019683229,-0.1403085,-0.26919606,0.13531162,-0.4422619,0.24745391,0.025167437,-0.3153729,-0.032587163,-0.43849242,-0.24122278,-0.6079085,0.5104258,-0.9316616,0.59404284,-0.13874239,-0.24240272,0.19476518,0.16111323,0.21932665,-0.33079892,-0.013438137,0.2661851,-0.09681901,-0.024009604,-0.16602021,-0.33890408,-0.4574084,-0.61927944,-0.030662814,-0.4371491,-0.10643533,-0.26809606,0.31332362,-0.21062733,0.22008477,-0.22941314,0.26991293,-0.3434753,-0.046343345,0.28037444,-0.2133974,0.12869605,-0.36187422,-0.17320994,-0.04176696,0.3025703,-0.019752942,-0.08994674,0.2869716,0.10052249,0.5719809,-0.07545031,-0.2238577,-0.24812691,-0.10115598,0.04388764,0.586808,0.016856786,-0.24964087,-0.2685182,-0.055742934,0.2646103,0.2997359,-0.008164967,-0.19196385,0.01603709,0.053476494,-0.3151632,0.30474615,0.35668835,-0.30943334,-0.36455742,0.4929332,0.43423626,-0.19575453,-0.12849054,0.096871786,0.07788114,-0.5666697,-0.3012047,0.1876227,-0.16873303,0.43654302,-0.13639343,0.25323245,0.80351883,-0.07382588,0.046652958,-0.2473694,-0.0109955985,-0.3278645,-0.28119028,-0.17750086,0.04870104,-0.32138887,0.069191806,-0.2928804,0.92022806,0.10244686,-0.737075,0.37512943,-0.5461436,0.044104233,-0.1155787,0.61853635,0.65702945,0.40172246,0.22122297,1.0062957,-0.6124111,0.08334002,-0.031320818,-0.35496384,0.0747926,-0.111474365,0.23826984,-0.4061592,0.022660967,0.25402895,-0.026727187,0.042151596,0.4898868,-0.40853596,-0.038419846,0.052120227,0.7214324,-0.39702708,-0.10015937,0.8179481,1.0209911,0.865133,0.04521248,1.2839679,0.27665016,-0.23783058,0.12787867,-0.3629468,-0.715043,0.20445892,0.34926274,-0.04687081,0.31967995,0.08099499,0.16385219,0.40742606,-0.36838472,0.081430785,-0.007932236,0.22747435,0.036217604,0.050245855,-0.39730486,-0.3370368,0.17927733,-0.055478495,0.39187363,0.29687068,-0.15823208,0.45419028,0.11685287,1.8981729,0.1400834,0.18197943,0.14876702,0.47275323,0.11017716,-0.051379602,-0.1884698,0.3248957,0.40585124,-0.16263543,-0.6198315,0.05889072,-0.20913242,-0.36312106,-0.119963065,-0.34508795,-0.20318127,-0.24357565,-0.32296214,-0.2359504,-0.10066162,-0.37748283,0.42740038,-2.5509667,-0.3298981,-0.20222344,0.27591583,-0.3855012,-0.36919257,-0.30784944,-0.605437,0.38222313,0.4002721,0.3723446,-0.61012673,0.47135147,0.41507524,-0.24766713,-0.18226074,-0.6458734,0.028737225,-0.03147816,0.19832039,0.0139535805,-0.10339337,-0.48415726,0.24693829,0.4048905,0.16551526,0.04139448,0.37956592,0.6281398,0.14195195,0.7261781,0.124527544,0.6137529,-0.38213328,-0.0019949009,0.4233508,-0.45984825,0.40881458,-0.02338735,0.08814885,0.46752408,-0.5004064,-0.73878413,-0.6637748,-0.45728686,1.1773326,-0.47154748,-0.23225667,0.16281027,-0.21846443,-0.405,0.0036605406,0.58710825,-0.1896045,-0.12352307,-0.69928145,-0.0094457315,-0.09690101,0.4309591,-0.0831968,0.022818675,-0.36245984,0.59340644,-0.17404556,0.7980935,0.28863576,0.06391635,-0.32589597,-0.28564578,0.054979388,0.8777463,0.28813055,0.08003838,-0.14309645,-0.25598,-0.3306029,-0.22487132,0.049372032,0.48108485,0.61109906,0.07585899,0.09463305,0.46727532,-0.2316555,-0.13087063,-0.10847828,-0.20264505,-0.1181964,0.036379024,0.53372556,0.6736982,-0.21919666,0.3144784,-0.23773359,0.33179575,-0.26514998,-0.38933513,0.4808197,0.3715809,-0.068069085,-0.15604495,0.6217641,0.5593935,-0.20826119,0.35460868,-0.63546604,-0.36952385,0.53050226,-0.05377183,-0.4386205,0.0009188973,-0.1695265,-0.07782427,-0.9782703,2.6482801e-05,0.0119927665,-0.4603149,-0.6367037,-0.27815273,-3.605469,0.006012268,-0.08776348,-0.09678585,-0.10370581,-0.043311037,0.28714126,-0.545844,-0.6947425,0.11877882,-0.020670317,0.627129,0.15943414,0.33122408,-0.35524845,-0.028854169,-0.2925164,0.078683525,0.1135091,0.33577463,0.057515923,-0.45919874,0.02593389,-0.23762217,-0.5101005,0.038978834,-0.511975,-0.520419,-0.00775398,-0.50786316,-0.3003978,0.7387637,-0.38785583,0.028924074,-0.23756133,-0.10984922,-0.20378791,0.2349507,0.14105476,0.043275457,0.05164195,-0.071611114,-0.0931882,-0.35433128,0.31364712,0.012866324,0.355515,0.2442631,-0.14885925,0.13632862,0.5104391,0.5731853,-0.068255074,0.6969131,0.19698946,-0.09937249,0.28401333,-0.118890196,-0.1868872,-0.57740754,-0.29843992,0.010642423,-0.39073202,-0.43886802,-0.22658388,-0.372063,-0.8371251,0.39625472,0.15767334,0.056376066,-0.16582035,0.10564722,0.33567566,-0.13618161,0.16886733,0.030025413,-0.20140512,-0.5666236,-0.5495218,-0.6618359,-0.40456507,0.3020993,1.3244598,-0.096216016,-0.19237378,0.04311524,-0.5669358,-0.045542147,0.08205014,0.16787992,0.31395906,0.52398944,-0.16806504,-0.63202405,0.45448068,-0.22599809,0.036878746,-0.53904366,-0.014489834,0.81307346,-0.6676649,0.38834286,0.2379285,0.21070814,0.07644307,-0.45922697,-0.25667542,-0.100854985,-0.16889763,0.49724466,0.26995108,-0.5434924,0.4707399,0.06785554,0.0027306539,-0.6823617,0.2979286,-0.042814773,-0.16528368,0.009975717,0.31435952,0.27187765,0.020003174,-0.18078102,0.18474929,-0.46499288,0.25099495,0.32271507,-0.00761873,0.40229324,-0.21278523,-0.024109308,-0.60791963,-0.18656246,-0.4257706,-0.2539934,-0.10123701,-0.024707962,0.057663396,0.14868066,-0.03785817,0.20392054,-0.27071258,0.09318915,0.119267784,-0.0854803,0.31402192,0.27514905,0.39777392,-0.46388334,0.5984472,0.03508522,0.16557345,-0.057274,-0.02701399,0.37761953,0.24920848,0.21777895,-0.09714218,-0.23606792,0.3299336,0.6945324,0.2543258,0.13724004,0.21753667,-0.20109327,0.44557592,0.08445898,0.015406697,0.037165537,-0.5152897,-0.035211407,-0.007720617,0.12085394,0.36202094,0.1942343,0.44922364,-0.031328093,-0.2110748,0.17677633,0.11847278,-0.41770875,-1.1495064,0.2656519,0.20608574,0.791386,0.4063504,-0.026813112,0.10667887,0.6362158,-0.4408776,0.14276792,0.33252555,0.027535759,-0.40796563,0.5210526,-0.39787403,0.5753909,-0.12168347,-0.0008404335,0.021908103,0.18103796,0.30602002,0.8925548,-0.116646916,0.034695975,0.11782791,-0.24026343,0.14023744,-0.25358567,-0.09738246,-0.6495743,-0.20922439,0.5419292,0.40762308,0.4401457,-0.23414057,-0.0747497,-0.039423373,0.00640078,-0.058764692,-0.09472474,-0.059438765,0.032790847,-0.77303463,-0.3462795,0.52285755,0.12147798,0.17781888,0.14010064,-0.478439,0.2658921,-0.22395918,-0.0625646,-0.044548534,-0.7219114,-0.25472677,-0.25564435,-0.40802115,0.12298153,-0.4053084,0.30516255,0.1608689,-0.02850749,-0.26610774,0.1037253,0.22415963,0.84171253,0.067683324,-0.21614522,-0.36360726,-0.059980944,0.2833071,-0.3881464,-0.075397074,-0.43102735,0.10860748,-0.5436212,0.43053213,-0.00664799,-0.30582666,0.109801054,-0.2595084,0.15055376,0.493824,-0.1245919,-0.0061079813,-0.082077876,-0.08601691,-0.3329373,-0.06268479,-0.4677401,0.21401188,0.030990321,0.11261564,0.105352946,-0.13230252,-0.08047449,0.35982385,0.18561623,0.17641361,0.29780504,0.023579927,-0.19593623,0.029676339,-0.12302362,0.49866098,0.035030738,-0.24065052,-0.28119776,-0.19835415,-0.1886772,0.6406161,-0.18150964,0.2068385,-0.001077182,-0.40493476,0.6739983,0.049312226,0.9032414,0.10994999,-0.3709636,-0.042952575,0.5521162,0.2021886,0.19580053,-0.24287888,0.7982582,0.49507082,-0.17792994,-0.30248916,-0.44551834,-0.13255112,0.3240748,-0.30630305,-0.111525774,-0.18930684,-0.80439,-0.19225915,0.20411688,0.07495504,0.2789191,-0.07018984,0.03894661,-0.06297943,0.12665173,0.5738041,-0.5312181,-0.10895427,0.41982406,0.2115802,0.13119973,0.19253223,-0.46978536,0.45536363,-0.58219707,0.22875959,-0.380421,0.08234524,-0.137801,-0.14380337,0.16850637,0.047319002,0.40547994,-0.31339708,-0.43335754,-0.22353154,0.77905715,0.34389925,0.28128475,0.845422,-0.19302727,-0.22957844,0.054954454,0.5821371,1.2047882,-0.1086978,0.14682394,0.27616537,-0.2994621,-0.50794095,0.1522203,-0.3203014,0.13012546,0.1248968,-0.32659367,-0.31666186,0.41669002,0.03781231,0.12986962,0.103978835,-0.40987617,-0.2853641,0.57165724,-0.2034454,-0.29100606,-0.26624075,0.08224659,0.62013113,-0.19441183,-0.21850039,0.103376776,0.4300265,-0.2853829,-0.56288934,-0.1125902,-0.49751288,0.38895878,0.067045525,-0.22623044,-0.086264774,0.04880097,-0.38533798,0.2570656,0.23154989,-0.40960482,0.043057892,-0.40065807,-0.17251427,1.0983001,0.032107286,0.0610855,-0.7475573,-0.35159257,-0.89728737,-0.4342652,0.29519737,0.026698956,-0.18104118,-0.33705884,-0.1815719,-0.07516419,-0.0611074,0.09725404,-0.53695965,0.38993156,0.22837827,0.42875582,0.01792762,-0.8748976,0.026695265,0.013150331,-0.24817906,-0.46531758,0.6551618,-0.07987897,0.71317714,0.044232465,0.13015498,0.17344464,-0.52757794,0.34988675,-0.35828775,-0.102516346,-0.7744828,0.12345934,754 -733,0.29086992,-0.2820068,-0.579842,0.05523086,-0.11208293,0.20043898,-0.35097986,0.24106055,0.022170441,-0.46445176,-0.030790605,-0.05601134,-0.102513276,0.1950252,-0.16374794,-0.39785025,-0.07611609,0.1237274,-0.5257372,0.3457299,-0.61159873,0.2689063,-0.08889227,0.15304643,-0.06032522,0.14899446,0.3032552,-0.10036607,-0.15787055,-0.20459749,0.09661825,0.097696945,-0.3351199,0.1947364,-0.14475273,-0.43454736,0.04282427,-0.33721372,-0.36371797,-0.6443856,0.3074048,-0.82028735,0.5412502,0.0661088,-0.25923762,0.21994697,0.0711165,0.17185679,-0.12222613,0.0022512882,0.1336625,-0.29633838,-0.25165358,-0.4217863,-0.12726215,-0.41304713,-0.48741156,0.119351834,-0.48870155,-0.10667579,-0.12038095,0.24253654,-0.45348632,0.098545365,-0.16164932,0.37068665,-0.2703739,-0.00993802,0.29626262,-0.1858793,0.14035575,-0.62062,-0.1334401,-0.06016591,0.18887243,-0.09120233,-0.1359879,0.15293829,0.07393611,0.5207082,-0.15551835,-0.14254989,-0.28097984,-0.173107,0.2697274,0.5387312,-0.1308152,-0.4372438,-0.17432974,-0.1411192,0.20836662,0.13876796,0.04650023,-0.22485389,-0.052499227,0.13003537,-0.34887922,0.26167628,0.5629803,-0.29431278,-0.0031218736,0.4438805,0.6174469,0.01162543,-0.088689014,0.03531023,0.09637497,-0.45090836,-0.1705251,0.116973765,0.003721957,0.49769485,-0.24435171,0.4984953,0.45628354,-0.2525338,0.0725331,0.1448302,0.049706414,-0.10123045,-0.20110594,-0.104186006,0.18667258,-0.48466775,-0.02408676,-0.21720567,0.8057967,-0.037988313,-0.6276702,0.39410654,-0.55221504,0.16835514,0.07957011,0.7340828,0.6226855,0.35197595,0.1414472,0.7793534,-0.35566542,-0.08232425,-0.110617034,-0.31244594,0.06778752,-0.06982673,-0.028831912,-0.4148771,0.070098385,0.21002391,0.14805031,-0.06605626,0.31621096,-0.48231572,-0.0745128,0.04045351,0.68907154,-0.21713217,0.065992326,0.6923891,0.97214985,0.7806584,0.081070535,1.2776023,0.31787217,-0.21496916,-0.03113885,-0.11113529,-0.86022437,0.23372006,0.28834167,-0.17391816,0.4094489,0.07260125,-0.22983877,0.46191522,-0.31053093,-0.12698027,-0.19671702,0.21275654,0.1270347,-0.17135397,-0.31299195,-0.1507071,0.03414649,-0.12607367,0.35963064,0.25440687,-0.26589394,0.3370245,0.104403384,1.2131584,-0.26669562,0.20342067,0.16660613,0.10602414,0.18985613,-0.17160764,0.07082739,0.39291912,0.2756332,0.11984563,-0.6463708,0.14756715,-0.17607191,-0.5666191,-0.2200679,-0.07731215,-0.14049977,-0.068966374,-0.37765902,-0.15864776,-0.23835382,-0.35005423,0.37279174,-2.7695718,-0.2246595,-0.16004084,0.29304856,-0.31103918,-0.37139577,-0.20782775,-0.40286037,0.2960747,0.33273533,0.40823144,-0.5946278,0.35945547,0.3510451,-0.47384706,-0.2531192,-0.6746339,0.06304121,-0.0515611,0.31364006,0.05863754,-0.2792528,0.06552848,-0.06079926,0.38046074,-0.26443025,0.12778378,0.2879922,0.4878895,-0.0077174744,0.21079087,0.039838728,0.5189066,-0.4826337,-0.27015617,0.37270498,-0.58020437,0.41141722,-0.02683668,0.17727968,0.33877817,-0.40245664,-0.70769894,-0.55954957,-0.19444071,1.3555989,-0.15195657,-0.5298776,0.06388342,-0.21881771,-0.41950777,-0.089520924,0.40586016,-0.19448641,-0.115358844,-0.8559411,0.09809191,-0.17127459,0.42874888,-0.050042905,-0.015608726,-0.35036236,0.61485547,-0.06400107,0.5384578,0.40054643,0.16303548,-0.42025968,-0.2837745,-0.017698558,0.93133026,0.50552773,0.18323709,-0.16415235,-0.20584433,-0.22868219,-0.22995487,0.15314163,0.5183432,0.6464664,0.03917753,0.14463824,0.3514752,0.050097935,0.031209083,-0.11690974,-0.21635386,-0.15084504,0.12737025,0.5938295,0.42344445,-0.25392035,0.26735237,0.032523267,0.2169214,-0.42753047,-0.41165775,0.51993906,0.76556313,-0.10287978,-0.32115147,0.5746586,0.5603867,-0.51133525,0.37368515,-0.61846644,-0.5009742,0.4354202,-0.13252157,-0.44990256,0.25626847,-0.3976142,0.25794995,-0.85816413,0.33887088,-0.40710232,-0.38450453,-0.7226737,-0.20583762,-3.230955,0.2823808,-0.2585015,-0.0961835,-0.2413645,-0.0014996299,0.3026684,-0.48587206,-0.46513778,0.104406625,0.11913793,0.59473026,-0.054866746,0.1001648,-0.20042016,-0.17597982,-0.1729469,0.18256393,0.07591828,0.15564339,-0.05953876,-0.3732181,-0.14388147,-0.1726397,-0.3066633,0.13004914,-0.42703688,-0.40443617,-0.14220732,-0.3824825,-0.28960493,0.594283,-0.45028284,0.010427268,-0.30356488,0.14025949,-0.20164499,0.4567421,0.10200293,0.16242589,-0.04808499,-0.14598078,-0.028709127,-0.2478937,0.25505173,-0.027447293,0.28772599,0.6012515,-0.24424379,0.13720591,0.35031393,0.61169565,0.025321044,0.8004768,0.24525213,0.049350936,0.3888084,-0.15836345,-0.1786477,-0.43119255,-0.2447055,0.17791282,-0.43245336,-0.38203046,-0.04692219,-0.22603995,-0.7291524,0.53433233,0.0030515583,0.014984972,-0.079762205,0.50929075,0.4875654,-0.07620022,-0.017589368,0.04468842,-0.1432363,-0.291527,-0.33539775,-0.6980042,-0.41053867,0.11766224,0.9171375,-0.19957839,0.18198313,0.18235137,-0.15615426,-0.12438543,0.19553192,0.13333026,0.16460146,0.45267376,-0.024916181,-0.6314217,0.42674476,-0.2930152,-0.30290273,-0.5590585,0.053962257,0.6442115,-0.58480746,0.45998514,0.5409019,0.26028168,-0.090482146,-0.52672714,-0.095131174,0.15072472,-0.2853467,0.3698068,0.31330284,-0.72123027,0.49942154,0.46201426,-0.15217318,-0.6525971,0.38631326,0.1542115,-0.017181598,-0.023570271,0.4816671,-0.1706381,0.02396204,-0.08858653,0.1313751,-0.37857673,0.27670753,0.15389219,-0.11178417,0.5094213,-0.19678956,-0.30434683,-0.50806195,-0.0034105342,-0.5692634,-0.14094414,0.2037878,0.0063222246,0.13696599,0.109555416,-0.028461121,0.45508906,-0.28486726,0.07690933,-0.045011528,-0.2189484,0.38872835,0.43139327,0.34025002,-0.43014085,0.726231,0.08894002,-0.07909342,-0.30308083,0.09607815,0.46345142,0.13182499,0.47564352,0.07765612,-0.04727867,0.283138,0.8921281,0.21186407,0.53217304,0.23728254,-0.05108372,0.15139759,0.021596802,0.08374635,-0.03284726,-0.42215064,-0.17768677,-0.14794974,0.32922286,0.41607806,0.07091452,0.5810241,-0.18861239,-0.21167602,0.0033071167,0.32993475,-0.15758643,-1.2052691,0.4186722,0.18048567,0.6958756,0.2872433,0.010210725,0.14836751,0.5567407,-0.10678674,0.18999097,0.2379962,-0.030246885,-0.5143244,0.6445055,-0.70618784,0.2631637,-0.110078916,0.057337943,-0.022246454,-0.08384848,0.37136972,0.689861,-0.054909404,0.07347952,-0.08055001,-0.2438681,0.17919964,-0.26322836,0.238641,-0.3592755,-0.23960432,0.66553587,0.40817386,0.37154514,-0.27472037,-0.0034893544,0.20273262,-6.41793e-05,0.24126591,-0.08987929,0.31522375,-0.16766927,-0.59175,-0.1969325,0.5261683,0.24913906,0.11086022,0.06500466,-0.2839817,0.30615166,-0.078392655,0.07424986,-0.098297045,-0.43231234,0.19326374,-0.32646105,-0.6288769,0.29282025,-0.29036018,0.22166292,0.3202434,0.02307183,-0.37061632,0.19080567,0.091874436,0.81272155,-0.14979908,-0.08242308,-0.30260053,0.20368245,0.31771672,-0.25969446,-0.200662,-0.2928622,0.16838568,-0.67637956,0.52786833,-0.19061224,-0.15139422,0.20617928,-0.10302593,-0.061594386,0.5509531,-0.30538177,-0.13189504,0.19698772,-0.16522624,-0.3074209,-0.20962617,-0.15859622,0.25983894,0.14016077,0.15990752,-0.1218876,-0.045429323,-0.28324866,0.15078467,0.041898813,0.1608963,0.5587943,0.26223826,-0.45327598,-0.142172,0.036315568,0.62378824,0.15902461,-0.13331409,-0.3307256,-0.6839794,-0.20252497,0.3110763,-0.037514143,0.30040687,0.103197865,-0.35736656,0.71618944,0.0034643784,0.9539373,0.013139362,-0.3622267,0.0071442174,0.5236277,0.041514937,-0.13323806,-0.29727697,0.8840171,0.45843422,-0.19899915,-0.06494487,-0.3256775,-0.012504564,0.1385472,-0.25410777,-0.13626331,-0.041276414,-0.7001557,-0.32652405,0.16274807,0.2789109,-0.0368574,-0.22315982,0.1247197,0.23823322,0.045075674,0.2692291,-0.4903671,-0.17917521,0.28116286,0.27377912,-0.018580444,0.110989004,-0.43621427,0.35361257,-0.7688672,-0.0075132963,-0.35806003,0.12982999,0.036703255,-0.2750759,0.15893973,0.1157505,0.29345348,-0.39331296,-0.27644542,-0.13576616,0.33276778,0.30356267,0.14448784,0.6722685,-0.18264714,0.008245707,0.10327916,0.55246377,1.0432845,-0.16119649,0.07938711,0.31059372,-0.38353345,-0.7460256,0.3395084,-0.50193524,0.15724947,-0.112399705,-0.32538164,-0.54536587,0.3281686,0.32907778,0.04688358,0.008259762,-0.6042604,-0.18853499,0.15327609,-0.42547792,-0.27071777,-0.32711586,-0.0320581,0.7152544,-0.13870206,-0.13151528,-0.05208725,0.48038325,-0.30266783,-0.5005193,0.06000551,-0.42512953,0.2811364,0.18030468,-0.124083474,-0.047554262,0.09574692,-0.46755087,0.27351427,0.12205373,-0.24722743,0.020136751,-0.3209902,-0.058675446,0.6658218,-0.22233714,0.14937727,-0.5588877,-0.51841646,-0.83921283,-0.3058546,0.30100894,0.07494717,0.15333432,-0.5905414,0.037375912,-0.01864318,-0.07451951,-0.04699012,-0.35922104,0.42920297,0.12197335,0.3106458,-0.114691205,-0.6614456,0.122071266,0.06335044,-0.13496555,-0.41541255,0.42381394,-0.113408394,0.7015982,0.07694304,0.061992984,0.34056756,-0.5706356,0.18693894,-0.1897975,-0.2994459,-0.8296303,-0.02479786,755 -734,0.4003681,-0.13969341,-0.5014311,-0.1870829,-0.27211338,0.16205679,-0.24317805,0.2329672,0.39670962,-0.017128736,-0.13948298,-0.033176973,0.18136083,0.39158055,0.059266303,-0.7058964,0.014368763,0.07159667,-0.6894578,0.42536157,-0.62031734,0.44134697,-0.09799779,0.34196982,0.09491667,0.48310313,0.23522337,-0.035496704,-0.09230758,0.032659493,-0.043823455,0.107124165,-0.41233987,-0.10348969,-0.057481084,-0.28459418,0.05507744,-0.29350534,-0.22784056,-0.6934785,0.33621013,-0.75152916,0.57982457,0.1323893,-0.26014006,0.016652051,0.16712452,0.36507878,-0.36047804,0.108419076,0.095787086,-0.111316204,0.0022717048,-0.37611932,-0.15060478,-0.37811425,-0.41964337,-0.06667674,-0.67090476,-0.427834,-0.10687806,0.14800161,-0.32764462,-0.087463126,-0.02536411,0.37741646,-0.33225992,-0.011926802,0.46664193,-0.28196245,0.38062543,-0.5890197,-0.020853642,0.033253323,0.51178354,-0.07715051,-0.14998564,0.2126907,0.37771592,0.36208698,0.23988232,-0.23076177,-0.4349648,-0.12508729,0.05968552,0.42805606,-0.2538086,-0.25571156,-0.19332926,-0.005579467,0.16215508,0.38319743,0.20866467,-0.05519316,0.056609247,-0.020199914,-0.11524986,0.59899867,0.5264604,-0.37082398,-0.4130201,0.25332844,0.61462796,0.094693236,-0.3580674,-0.048629284,0.037848286,-0.4940452,-0.15116991,0.04302237,-0.049305037,0.57276845,-0.11478794,0.17833464,0.7865204,-0.29593408,0.029515324,0.17829415,-0.044984896,-0.13426277,-0.2818056,-0.09408365,0.06844909,-0.63835114,-0.08655291,-0.22068664,0.541873,0.19935966,-0.6131094,0.41852415,-0.65310514,0.09607764,-0.12448827,0.45698336,0.69094497,0.30316606,0.21253373,0.7228304,-0.21189786,0.12831861,-0.013769774,-0.43594202,0.2477967,-0.25461382,0.1874841,-0.5711076,-0.06788537,0.0023670883,-0.06447853,0.24683064,0.40214634,-0.5245491,0.02065542,0.1412536,0.8706969,-0.32040244,-0.11638964,0.56266534,1.2421505,0.88607967,-0.14822802,1.0231436,0.35979912,-0.282026,0.17463778,-0.7030771,-0.48214605,0.1867658,0.27229545,-0.3723412,0.5382934,-0.18095364,-0.116928324,0.39433435,-0.24438024,0.09675987,0.16536818,0.2520406,0.21520904,-0.13017449,-0.40112475,-0.11672163,-0.03725674,0.01234852,0.29884684,0.21281464,-0.32764322,0.2641234,-0.20335685,1.1833456,-0.07165431,0.0790972,-0.09887225,0.65176433,0.30001104,-0.13343903,-0.11614393,0.4199575,0.14627434,-0.05065644,-0.6400147,0.35923272,-0.37609106,-0.27241546,-0.23928279,-0.46574217,-0.07258627,0.13405012,-0.32421127,-0.11393854,-0.15162092,-0.31032774,0.30904037,-2.9092689,-0.42193896,-0.0042612506,0.40741003,-0.304515,-0.18616779,-0.073395535,-0.5162779,0.19772807,0.27043182,0.4073071,-0.604948,0.48718983,0.5046096,-0.47738823,-0.31324413,-0.6276483,2.4213241e-05,-0.16961639,0.36146486,-0.006496292,-0.21048066,-0.12669645,0.22883771,0.6357613,0.10099126,0.12384359,0.33952028,0.33771393,0.01558517,0.3989014,-0.050877534,0.70521355,-0.21901542,-0.2529773,0.30373496,-0.26613733,0.08814255,-0.19337481,0.059518356,0.3714484,-0.28702286,-0.9402192,-0.617769,-0.05230933,0.928584,-0.17857169,-0.3383054,0.2083787,-0.40097153,-0.16212288,0.03626054,0.5684286,-2.5625412e-05,0.043840133,-0.65100586,0.122309476,-0.039606478,-0.0042266203,0.0632188,0.0026195066,-0.3354967,0.506647,0.0559331,0.4065506,0.21774861,0.32207888,-0.1136673,-0.355034,0.1455432,0.7122611,0.20155452,-0.02650845,-0.09724358,-0.26953572,-0.1061348,-0.120974645,0.03366315,0.43994105,0.7417154,-0.03759839,0.098043084,0.28308028,-0.22788852,0.121542014,-0.054123506,-0.33264843,0.08611603,0.10286982,0.43025684,0.78977174,-0.20990203,0.58077955,-0.12921487,0.27024263,-0.25074822,-0.5064136,0.7903178,0.49969026,-0.19724587,-0.15306756,0.49367744,0.35418174,-0.64291424,0.50052035,-0.71254313,-0.18488921,0.6525863,-0.3182651,-0.29071584,0.1685506,-0.17545612,0.1225221,-0.89362246,0.21976456,-0.2842622,-0.3560312,-0.148835,-0.028639318,-3.7002308,0.16468838,-0.27871272,-0.042140327,-0.13144824,0.0878056,0.29940075,-0.6857752,-0.48089164,0.1000943,0.24232799,0.63965046,-0.14218886,0.032164868,-0.17091648,-0.24069566,-0.083052,0.24850243,-0.05312086,0.29401153,-0.13523111,-0.5027531,0.2632129,-0.026627775,-0.6489709,0.1385621,-0.4810613,-0.401634,-0.112536624,-0.58686227,-0.24847333,0.6498177,-0.16611037,-0.03485734,-0.34487134,0.21322288,-0.12535825,0.4272709,0.005260073,-0.033603355,0.4065058,-0.017901301,0.18202418,-0.36470553,0.5144066,-0.09928966,0.45777035,0.20206223,0.034681145,0.19420657,0.49107453,0.5510046,-0.02204859,0.8263838,0.4612109,-0.008497799,0.19555987,-0.44532102,-0.16550027,-0.22118293,-0.507834,-0.057897784,-0.25926208,-0.60401845,-0.03617784,-0.37405506,-0.7444905,0.47715852,-0.068459265,0.42062983,-0.070278816,0.36162347,0.44205207,-0.27494317,0.028086148,-0.046763007,-0.2217099,-0.45692176,-0.00045650738,-0.58426386,-0.51701444,0.22373396,0.7849534,-0.51050985,0.2019781,-0.046528228,-0.20795646,-0.0738119,0.17810573,0.15922907,0.2383522,0.34640715,-0.16321784,-0.6163882,0.16130815,-0.18796983,-0.15268768,-0.5927963,0.029067244,0.654853,-0.65165937,0.5829206,0.34277692,0.13018528,-0.07144988,-0.40930155,-0.032611772,0.19241858,-0.14455566,0.47812197,0.097247764,-0.7984505,0.36769646,0.29798302,-0.5099293,-0.6419452,0.41826203,-0.063152775,-0.38952193,-0.24406478,0.27987438,0.17587624,-0.10036223,-0.17873493,0.17883693,-0.45332512,0.1872062,0.1933706,-0.0056173983,0.5836905,-0.109440565,-0.2921494,-0.6762308,0.099907234,-0.5442636,-0.13951267,0.2525602,0.1415238,0.20644648,0.21020643,0.27002886,0.36819202,-0.29269475,0.046109222,0.058136184,-0.44732875,0.21328002,0.3419724,0.27709788,-0.40528238,0.370734,0.0037399898,-0.2921328,0.16723222,-0.1512355,0.48961228,-0.0075053205,0.49330652,-0.008487628,-0.26546216,0.4373174,0.5694295,0.046241336,0.3318384,0.17516048,-0.13926338,0.21423295,-0.04496399,-0.054234207,0.018420931,-0.3780134,-0.06720137,-0.121966965,0.2564016,0.5274242,0.3912976,0.18055955,0.14550231,-0.33588812,0.07933056,0.24214515,-0.14748971,-1.2375247,0.36916828,0.36569405,0.7652709,0.37509727,0.22857212,-0.29510555,0.64775527,-0.2078945,0.07491093,0.5678256,-0.039618257,-0.504324,0.7708594,-0.6071068,0.5758041,-0.038442507,-0.1705319,-0.05798352,0.034967106,0.34432822,0.97115433,-0.1800588,0.07103329,0.07363646,-0.21853805,-0.14320597,-0.28176138,0.016845617,-0.660632,-0.18550238,0.6347371,0.29760492,0.2461386,-0.0801113,-0.13164224,0.14078683,0.024325717,0.31765726,-0.11893214,0.12284675,0.0018871289,-0.7008194,-0.18921944,0.34814718,0.23405388,0.1976815,-0.30487892,-0.13935614,-0.023547549,-0.3765298,-0.065381095,0.020421263,-0.53703105,-0.025763612,-0.14572857,-0.5301529,0.686307,-0.22495237,0.16366106,0.13719909,0.14343828,-0.16827816,0.5043179,0.080704555,0.6807107,-0.026900109,-0.19573775,-0.29900488,-0.007030865,0.24187341,-0.151618,0.06585164,-0.30831102,0.16728687,-0.51039505,0.67409545,-0.1458201,-0.35745034,-0.026817588,-0.20589945,0.037089486,0.6494272,-0.22969985,-0.21710865,0.013264014,-0.27641565,-0.4050914,-0.07111023,-0.1786051,0.21443534,0.20202239,-0.1409746,-0.29193753,-0.2993508,0.01187828,0.55854934,-0.070313774,0.44070345,0.27293846,0.044254567,-0.070680745,-0.054381233,0.3605793,0.32414415,0.12990178,0.04892119,-0.577342,-0.3880558,-0.21212286,0.18814936,-0.026004754,0.010278518,0.119288534,-0.18674634,0.84269524,0.0321584,1.4252173,0.16160403,-0.23444945,0.15749575,0.5302922,-0.069181606,0.04592885,-0.53132695,1.0005891,0.5345735,-0.23338619,-0.07680484,-0.5066736,-0.16009961,0.28516752,-0.38116595,0.016088393,-0.08295167,-0.75590146,-0.363836,0.31356496,0.13740799,0.14725071,0.06329625,0.29578453,-0.036108483,0.09307131,0.26295608,-0.59855276,-0.2898889,0.4100773,0.35005188,-0.0051358114,0.28197563,-0.42976373,0.47683045,-0.7146404,0.20849206,-0.31439108,0.052536998,-0.17057961,-0.5827275,0.18700539,0.1676938,0.23364718,-0.06688155,-0.44593653,-0.034268253,0.43847927,-0.030388126,0.10655481,0.5765295,-0.3846839,-0.12740421,-0.058913745,0.62519497,1.237419,-0.21501142,-0.0040693423,0.3274361,-0.3269448,-0.8715762,0.40869692,-0.33289212,0.013151187,-0.089037456,-0.3247767,-0.5863014,0.2813246,0.07350864,-0.015024075,0.042703986,-0.32006434,-0.362518,0.1388199,-0.3075377,-0.21380281,-0.15833817,0.3398027,0.73549783,-0.21743844,-0.13647538,-0.045802847,0.49412134,-0.25495642,-0.27189094,0.06298054,-0.103929296,0.39727238,0.14279653,-0.32312787,-0.03456879,0.22638631,-0.37821388,0.20626658,0.32877642,-0.3967516,0.106180735,-0.25351614,-0.18406758,0.80986434,-0.14953686,-0.001194931,-0.5035636,-0.47386667,-0.9328756,-0.41997895,-0.021545192,0.045039233,-0.16870001,-0.41619986,0.15569247,-0.019644896,-0.139264,0.15796588,-0.5800653,0.35191455,0.041829698,0.4401179,-0.317942,-0.8156615,-0.10284324,0.20258856,-0.2656929,-0.821529,0.636295,-0.17916764,0.9402328,0.15144995,-0.10097365,0.12421406,-0.20245443,0.14904618,-0.28599042,-0.23873049,-0.85409766,-0.087408274,767 -735,0.45263153,-0.20102233,-0.4351648,-0.11092388,-0.18231954,0.11590826,-0.2287694,0.4212764,0.13977706,-0.53675056,-0.14741005,-0.16596618,0.06070657,0.44290966,-0.19966777,-0.6054223,0.109076254,0.12496923,-0.40373972,0.5339193,-0.57047784,0.3288861,0.046725824,0.39857256,0.32198936,0.080406465,0.16959201,-0.07336627,-0.20602277,-0.36216864,-0.15759477,0.2143967,-0.35942486,0.012772787,-0.08102099,-0.37746227,0.02813368,-0.58034766,-0.3107192,-0.8884658,0.30422866,-0.8238967,0.72811836,0.07476579,-0.19390416,0.24118795,0.25445893,0.3805924,-0.12126342,-0.08524739,0.18405789,-0.2867966,-0.08095369,-0.361922,-0.19386347,-0.51255536,-0.7218678,0.015004135,-0.5443773,-0.40712303,-0.21205306,0.20266128,-0.37846893,-0.17992672,0.0383518,0.6200923,-0.4026977,0.028946092,0.22803122,-0.14316711,0.4389294,-0.6272204,-0.053439103,-0.07962573,0.2488901,-0.1640154,-0.25225526,0.20329963,0.4552601,0.35318327,-0.04510699,-0.28830355,-0.24905413,-0.059473917,0.078785054,0.49184275,-0.2505287,-0.57206243,-0.0027806438,0.031896956,0.35250574,0.29203156,0.33807886,-0.060681906,-0.09748812,0.24878223,-0.29521993,0.6468672,0.35883585,-0.39710066,-0.07019173,0.36819422,0.50071377,0.22132741,-0.16248454,-0.12463801,-0.0367462,-0.65722233,-0.20072205,-0.047329817,-0.4463759,0.5893805,-0.2672792,0.3855352,0.7042075,-0.24310128,0.0526401,0.1759732,0.088587165,0.019508123,-0.23286176,-0.29244903,0.27375054,-0.52930933,0.057755854,-0.18545829,0.7024927,0.19506563,-0.47021902,0.32435882,-0.63134265,0.18119973,-0.08218264,0.43207604,0.61604667,0.47824198,0.39715025,0.6246586,-0.3719517,-0.08269404,0.10031504,-0.3474747,0.1667681,-0.14707233,0.0048028138,-0.53070545,-0.114703625,-0.04829871,-0.0885822,0.15659197,0.44174212,-0.705794,-0.10629852,0.028217133,0.8742416,-0.2649034,-0.1295411,0.76622605,1.1000034,1.0536621,-0.040192273,1.1387929,0.20805219,-0.28678992,0.040969368,-0.13379556,-0.49262488,0.43934923,0.40442607,-0.7166924,0.44493058,-0.059883066,-0.08698273,0.37675703,-0.35365188,-0.13968235,-0.08083392,0.091315344,0.074462846,-0.30902088,-0.5156924,-0.22423516,-0.21753886,0.045040276,0.24645281,0.33075684,-0.2381696,0.36275938,-0.05011762,1.4019004,-0.064411685,0.12959118,0.12391495,0.35396278,0.28041404,-0.048893414,-0.009313767,0.41682035,0.37243238,0.28640202,-0.6202444,0.17784993,-0.2135897,-0.38369095,-0.07976658,-0.37114716,-0.0511918,-0.09436442,-0.42403543,0.022438267,-0.23161823,-0.29071453,0.3530596,-2.6734748,-0.36452764,-0.05837468,0.47552806,-0.15740559,-0.36738867,0.025419427,-0.36843687,0.42747858,0.17083064,0.52896035,-0.7129058,0.38664308,0.42555317,-0.62738186,-0.26423618,-0.7230275,-0.23930386,-0.11094703,0.33690736,0.066089734,0.01654977,0.20744249,0.2804879,0.53279406,0.04590911,0.24686135,0.2251747,0.45928714,-0.1925436,0.6625951,-0.08880852,0.59422755,-0.028895058,-0.27211228,0.32818228,-0.3610527,0.19192675,-0.08425306,0.13541177,0.45248523,-0.32596815,-0.9196631,-0.6939633,-0.20631504,1.1627972,-0.12816212,-0.394033,0.2206178,-0.33154643,-0.3466677,0.003778852,0.57749903,-0.18302345,-0.01936189,-0.79496104,0.028737834,-0.055093892,-0.011850252,0.08541444,0.07825799,-0.5010709,0.5550198,-0.06981147,0.3188036,0.29039592,0.28100938,-0.4762773,-0.4987456,0.0002401666,0.92881805,0.5199973,0.0149911875,-0.12802078,-0.13869783,-0.46638313,0.052700024,0.029910129,0.72154367,0.8223555,-0.11709128,0.09069629,0.27638647,-0.005174334,0.13115495,-0.15665469,-0.31011677,0.01200286,-0.088723555,0.5982951,0.6415225,-0.18568622,0.5694875,-0.051988088,0.34102827,-0.24284783,-0.5161418,0.509894,1.1784567,-0.29843995,-0.27189705,0.6984939,0.3654409,-0.24488407,0.3788547,-0.60485613,-0.2782481,0.5901385,-0.18086042,-0.49904367,0.23311175,-0.21242546,0.12061606,-0.9313031,0.42511994,-0.35240772,-0.5616277,-0.36116415,-0.0001480671,-3.5967467,0.25341934,-0.40355352,-0.17081887,-0.23260559,-0.064311676,0.33141544,-0.7710498,-0.52917457,0.0047202087,0.02720295,0.907389,-0.17868277,0.07409604,-0.20580758,-0.40883362,-0.13244149,0.24283248,0.099542566,0.35732958,-0.0892295,-0.40429047,0.08891311,-0.06188535,-0.5833006,0.12456726,-0.7008399,-0.64889425,-0.12730342,-0.51899993,-0.33563122,0.73410195,-0.22503391,0.10204477,-0.18344235,0.14395441,0.031000448,0.30515045,0.14185797,0.19637336,0.036364883,0.027228173,0.1665269,-0.2664634,0.2725127,0.07606055,0.32025418,0.28167346,-0.073479205,0.3268922,0.49830335,0.6225946,0.04094155,0.90903634,0.41443694,-0.04380554,0.21182369,-0.30737656,-0.40915248,-0.39289606,-0.34904703,0.0022315246,-0.3874318,-0.3918661,-0.15091795,-0.37711635,-0.8126391,0.64845854,-0.045255847,0.30321744,-0.16539706,0.53302354,0.6335652,-0.21524447,-0.05797774,0.11644831,-0.26489064,-0.5895684,0.11638828,-0.68618673,-0.5557508,0.04632507,0.6884688,-0.3329107,0.21249507,-0.037080165,-0.06430289,0.0073648323,0.1721004,-0.14200662,-0.024101194,0.47109714,-0.12726575,-0.7566122,0.40688735,-0.23579921,-0.17970583,-0.57730716,0.25235087,0.81271625,-0.5043425,0.5559802,0.5248401,-0.10750559,-0.3275641,-0.5561274,0.025358833,0.21901971,-0.28398746,0.38778785,0.19228615,-0.79292995,0.4047077,0.40034983,-0.42943498,-0.60434985,0.7823657,0.043714054,-0.3100667,-0.09146408,0.46789533,0.23022754,0.11745115,-0.2383483,0.33809802,-0.47528756,0.18616493,0.14551184,-0.06834253,0.22115758,-0.004730775,-0.13766733,-0.9668996,0.015415916,-0.5178133,-0.37313017,0.3095517,0.08698607,0.24410635,0.2943739,0.25850323,0.41289786,-0.40328422,0.14795256,-0.13144591,-0.27484444,0.42701337,0.63120675,0.48113558,-0.41954538,0.59302765,0.06587715,-0.082323514,-0.031115811,-0.009339016,0.46838024,0.045618113,0.58367574,0.061863247,-0.20768477,0.2855704,0.5157457,0.10827006,0.4578716,0.22953683,-0.062335394,0.0030799943,-0.0093999375,0.28986135,0.045602478,-0.66862065,-0.123250686,-0.18247572,0.13042504,0.6398036,0.1494548,0.22030783,0.023278087,-0.5228023,0.0062539736,0.17891058,0.039297756,-1.3680375,0.5501555,0.27305433,0.7524362,0.2676491,0.07295504,-0.052555885,0.55790275,-0.08521588,0.03878089,0.45847556,0.11528648,-0.5253758,0.6218375,-0.9492557,0.3678487,-0.07828753,-0.027631728,-0.22884025,-0.1821336,0.470774,0.90968,-0.20674965,0.005180272,0.0148479575,-0.31370276,0.2975543,-0.51798135,-0.016863765,-0.5285396,-0.32485154,0.5127149,0.59530103,0.35547546,-0.20577739,0.09694561,0.2995188,-0.1649181,0.3060589,0.0973254,0.19690663,-0.09080955,-0.68616474,-0.16350414,0.41335085,0.015643977,0.2216951,-0.099417806,0.052146867,0.19896783,-0.17992224,-0.12575755,-0.079191774,-0.6000968,-0.08885987,-0.4367565,-0.49060932,0.548903,-0.27105772,0.19209555,0.10665214,0.008247777,-0.10900486,0.26824415,0.14587082,0.61761975,0.104016796,-0.29263493,-0.2745147,0.3083574,-0.051750958,-0.2209274,-0.039114155,-0.16571523,0.20748681,-0.60277075,0.4832344,-0.122898415,-0.2910886,-0.1035999,-0.13127996,-0.015216387,0.46391872,-0.2545266,-0.13955861,-0.2548466,-0.33799535,-0.15911545,-0.35428238,0.09636234,0.2309177,0.28530714,-0.114336774,-0.20857292,-0.1020073,-0.2562569,0.35770628,-0.088711515,0.5856608,0.53823316,-0.016053949,-0.23758382,-0.31758526,0.37704223,0.4030438,0.018434336,-0.16386057,-0.44432443,-0.5068805,-0.32345822,0.1444545,-0.068257205,0.553684,0.044851966,-0.07010269,0.8784015,-0.0584554,1.316145,-0.1514169,-0.52989966,0.049101166,0.64094794,-0.09570433,-0.21791857,-0.3531469,1.083871,0.32077128,-0.12497687,0.0006725135,-0.43622506,0.008106791,0.2665995,-0.25174823,-0.18395105,-0.05475507,-0.4927294,-0.31402892,0.26841304,0.28209874,0.16116363,-0.11256183,0.09892754,0.4169851,-0.14318922,0.37217093,-0.5435075,-0.21645302,0.27771753,0.42295578,-0.046487316,0.07109738,-0.4124688,0.46970627,-0.48930895,0.09799134,-0.3201933,0.21053259,-0.10844182,-0.46905792,0.3506975,0.07039123,0.2368144,-0.27805603,-0.36578724,-0.11562621,0.29535836,0.17179778,-0.033519235,0.502596,-0.31091267,-0.038626965,-0.0073946486,0.6601552,1.2823315,-0.099601455,0.047611393,0.3896692,-0.50529873,-0.75607914,0.4082259,-0.40929487,0.17912666,-0.03811968,-0.261662,-0.6177043,0.20424856,0.21915817,0.16865672,-0.003345884,-0.5475568,-0.2536931,0.26002532,-0.4066771,-0.22168095,-0.24668995,0.16669711,0.48088965,-0.3268842,-0.37875304,-0.1743223,0.2648734,-0.19554274,-0.41322595,-0.0755429,-0.31710607,0.32591838,0.010061998,-0.41459355,0.04006233,-0.089759,-0.49173304,0.27581197,0.033920743,-0.2820625,0.21289611,-0.18833359,-0.09301415,0.73569286,-0.2937257,-0.040233,-0.40841553,-0.51524127,-0.600106,-0.4049028,0.22808519,0.009893353,0.038803358,-0.5816451,0.023827236,-0.09979118,-0.061464503,-0.048749328,-0.31772187,0.35611743,0.12624003,0.35702425,-0.12794924,-0.76112545,0.2125655,0.16858277,-0.19461474,-0.7316077,0.5225427,-0.17442928,0.85603404,0.08124955,0.14383392,0.27397615,-0.30434337,-0.09356272,-0.19633618,-0.27037567,-0.79719454,-0.019303368,771 -736,0.4166667,-0.21341227,-0.49210948,-0.108643405,-0.33039123,-0.09298774,-0.23772544,0.42585388,0.3732385,-0.3789009,-0.23189773,0.2420133,-0.09365216,0.2095299,-0.12720321,-0.33404365,0.283689,0.38706052,-0.7299291,0.8297461,-0.21638702,-0.047348756,-0.23320033,0.46811116,0.3345962,0.17447266,-0.2003168,0.19419822,-0.01912746,-0.2009185,0.03966175,0.4741716,-0.44671577,0.3798326,-0.24903758,-0.121746905,-0.2950737,-0.5169116,-0.5415593,-0.93209904,0.2259082,-0.8005707,0.42743486,0.027468719,-0.47448492,0.05264749,0.32427204,0.24269173,-0.18966007,-0.4056872,0.118596405,-0.10924983,-0.4938232,-0.16870941,-0.05183166,-0.30237105,-0.5955631,-0.14579305,-0.3679561,0.037000895,-0.43371934,0.25019893,-0.3085453,-0.024602206,-0.18194984,0.7833365,-0.27509233,0.33061808,0.22887534,-0.015542209,0.110089906,-0.81710845,-0.06402106,-0.19807495,0.47143665,0.24570507,-0.50710016,0.3752031,0.35857683,0.3486678,-0.12448966,-0.1151285,-0.24465291,-0.00067100616,0.23781766,0.25891563,-0.21676518,-0.4551972,-0.12205933,0.08580263,0.38609564,0.11330882,0.38086998,-0.22699004,-0.20676686,0.09328072,-0.10828082,0.5600207,0.4812372,-0.22528884,-0.016669104,0.2546187,0.6082485,0.448717,-0.2882689,0.04880267,0.040377297,-0.6403607,-0.083663374,-0.09136944,-0.19043885,0.5574744,-0.16775051,0.12404989,0.49777,0.018304734,-0.34687868,0.36910805,0.18992546,-0.01387111,-0.4307973,-0.5204793,0.35778698,-0.5646997,0.18590187,-0.10395535,0.45252806,-0.022201806,-0.7078511,0.23828891,-0.5456955,0.2224064,-0.043439023,0.47231263,0.8953086,0.54642236,0.5169367,0.62553203,-0.10501073,-0.08301413,0.026195662,-0.11492082,0.22783074,-0.33548313,0.14960054,-0.5576302,0.038590375,-0.16392758,-0.24215116,0.12826595,0.54967874,-0.46916947,-0.24589628,0.116290346,0.70561695,-0.098382965,-0.18578643,1.018719,0.9611011,1.0504239,0.2858249,1.0017331,-0.011605112,-0.10895148,0.11281316,0.18110797,-0.66306245,0.26610544,0.27006716,0.16855666,0.17162901,0.20469874,-0.018059459,0.54837984,-0.58556134,-0.061238024,-0.004868058,0.17567796,0.121535495,-0.2624222,-0.4185229,-0.37002823,-0.24177982,0.18277843,0.015288958,0.23275219,-0.08920389,0.36831492,0.121876955,1.2684581,-0.005420749,-0.06580392,0.0053253802,0.35142046,0.2308669,-0.30667976,-0.14812154,0.24705842,0.27322257,0.15863238,-0.5560728,-0.013163681,-0.22908854,-0.22874539,-0.24772644,-0.40608346,-0.33511165,-0.008516761,-0.2917441,-0.35380942,-0.17518769,-0.289898,0.4090919,-2.580816,-0.31436965,-0.15179212,0.46172854,-0.015513017,-0.24386838,-0.13799459,-0.53553134,0.46816248,0.20910144,0.6213079,-0.5785108,0.41305065,0.46743804,-0.81533337,-0.1744445,-0.74267286,-0.15174079,0.19966866,0.18489537,0.06762555,-0.15554348,0.20931289,0.24195257,0.4585134,0.25500253,0.21583048,0.6387586,0.37731272,-0.39546695,0.5146266,-0.21316518,0.50162536,-0.17743447,-0.2985778,0.22781536,-0.30986908,0.5845127,-0.12670173,0.03687013,0.77745605,-0.47285417,-0.9671596,-0.63725823,0.092528835,1.2806276,-0.12050606,-0.5197929,0.23905352,-1.0317041,-0.38665038,-0.083834425,0.7031602,-0.073960625,-0.17133024,-0.773994,0.022231111,-0.052077793,0.08814064,-0.14642125,-0.3543805,-0.45516807,0.8411185,0.050974146,0.58585876,0.29842195,0.070804216,-0.59220034,-0.36292413,0.12005436,0.7736881,0.500629,0.04988978,-0.30413705,-0.1703106,-0.41248003,-0.09412883,0.09497933,0.72150874,0.2080178,-0.26704338,0.2616893,0.37462157,0.06772752,0.00052688096,-0.23541568,-0.21209356,-0.30018833,0.042851128,0.6346099,0.9485191,-0.21402012,0.35046974,0.040408786,0.15736583,0.05403332,-0.48672664,0.49304646,1.0737952,-0.31543714,-0.409061,0.61209244,0.40516883,-0.25822103,0.4461921,-0.27168998,-0.14697333,0.40406826,-0.040771183,-0.33975083,0.063107,-0.5021414,0.1251529,-0.42984873,0.42554924,-0.5159875,-0.65596426,-0.4119863,0.0971232,-2.3392997,0.34563586,-0.3535143,-0.025042213,-0.38541207,-0.4554431,0.056758717,-0.50450075,-0.7443788,0.15635054,0.106527254,0.7681522,-0.29224873,-0.18478857,-0.105726905,-0.6283436,-0.057106677,0.031832002,0.111649275,0.42322123,-0.15080675,-0.3309711,-0.067532696,0.016479721,-0.26085973,-0.14860046,-0.5092408,-0.37203056,-0.11809681,-0.43797606,-0.09017499,0.62559617,-0.3544039,0.1059556,-0.35236135,-0.04587222,-0.11728602,0.18965398,-0.08143146,0.27199772,0.117382735,-0.10739805,-0.08570051,-0.020326082,0.08990502,-0.1074887,0.21709332,0.19030388,0.07852789,0.45129457,0.47975427,0.8055114,-0.33825848,1.2292231,0.66005635,-0.1806795,0.20661347,-0.0535117,-0.51490855,-0.50226575,-0.13949901,0.46439546,-0.5197987,-0.26068714,0.12426508,-0.38654104,-0.7287705,0.464109,0.05950026,0.10280306,0.14592166,0.10317259,0.56224686,-0.19002989,-0.04397098,-0.11462386,-0.25122735,-0.7408607,-0.12887064,-0.56656617,-0.27965504,0.11978822,1.0487225,-0.46222642,0.21896839,0.29272225,-0.28474757,0.04378217,0.3930022,-0.070188895,0.10551505,0.4488929,-0.13436419,-0.31409475,0.18520929,-0.21223377,-0.1889119,-0.43749344,0.50802904,0.6949651,-0.5848104,0.7831015,0.35370377,-0.103580914,-0.53283405,-0.73625636,-0.14073783,-0.09777531,-0.25636074,0.525236,0.5093479,-0.84392667,0.31872287,0.28642476,-0.27109396,-0.8856706,0.65712154,-0.18561839,-0.16774374,-0.13948129,0.45788032,0.18689746,0.03174803,-0.12496717,0.2947803,-0.37168223,0.1562174,0.15888306,-0.2483125,-0.27610016,-0.32335785,-0.081577174,-0.8251613,-0.05702389,-0.66866535,-0.27983713,0.40453413,-0.027012454,0.2022729,0.039343275,0.4423947,0.27437988,-0.3575281,0.18152753,-0.3272652,-0.31164426,0.38763663,0.53011936,0.6260215,-0.4756531,0.66274065,0.22275837,-0.14988641,-0.14583251,0.12836777,0.24017285,-0.05087552,0.5831007,-0.11946038,-0.064128466,-0.055138595,1.0364227,-0.055761997,0.28204423,0.06746138,0.09393017,-0.07448897,-0.06581951,0.42159155,-0.3493066,-0.65673894,0.25367916,-0.50753057,0.08768753,0.5405812,0.37960723,0.024556555,0.05050935,-0.4824338,-0.20087719,0.1639882,0.18291375,-1.7137258,0.5837295,0.3096452,0.8674438,0.54236794,0.13377362,-0.30956796,0.8785324,0.09223657,0.0011860842,0.46399534,-0.060091678,-0.36180803,0.5606852,-0.86636424,0.430432,-0.031119384,0.049854543,0.060647257,-0.009449595,0.36805648,0.6224333,-0.23398319,-0.0328006,0.043465193,-0.3590596,0.27610752,-0.4591264,0.0860204,-0.28499436,-0.5001987,0.64820695,0.54131424,0.6068947,-0.34589893,0.1307728,0.20004342,-0.2914366,0.28918007,0.098169595,0.02464861,-0.2933534,-0.6884997,0.15666309,0.37107357,-0.28505945,0.21894972,0.056728832,-0.022254871,0.22927316,-0.22488433,0.08625321,-0.16667846,-0.8053604,-0.14205942,-0.39425147,-0.5499711,0.52585894,-0.018051147,-0.024306847,0.30566955,0.042567432,-0.11229421,0.755129,-0.26268163,0.6605851,0.0544847,-0.019355224,-0.120934054,0.19968197,0.0199638,-0.2193912,0.08833434,-0.32866377,0.30287835,-0.5358342,0.51379585,-0.0130546,-0.44108465,-0.08160667,-0.07208957,0.042547263,0.3490456,-0.32579342,-0.268012,-0.17947604,-0.21650192,-0.2122925,-0.44911596,0.05054641,0.30234972,0.15852946,0.083294585,-0.22877842,-0.15861718,-0.20215313,0.17880811,-0.06616615,0.43296787,0.4664118,0.08850391,-0.2058112,0.09180804,0.37298915,0.6411461,0.13264647,-0.14188746,-0.44924197,-0.4231811,-0.61037314,0.20235215,0.17504996,0.46090952,0.19431949,0.04677569,0.5108491,-0.2612268,0.92883503,0.014812027,-0.36301777,0.10746108,0.37858197,-0.16286519,-0.17372939,-0.075875625,0.57618594,0.40894067,-0.009330566,0.07068761,-0.52890354,0.093687735,0.16622002,-0.17439087,0.033744548,0.043124575,-0.5107206,0.096876636,0.16519257,0.1751943,0.34612215,-0.23185371,0.14754957,0.3768454,-0.14759336,-0.021535872,-0.5024086,-0.17644599,0.39675638,0.19896,0.014675569,-0.02837406,-0.4228854,0.3821182,-0.4612217,0.028722553,-0.31342664,0.23516022,-0.19090237,-0.1985511,0.25901875,0.13901557,0.3346288,-0.27756542,-0.12423349,-0.23419942,0.5494284,0.25234547,0.07809103,0.5716895,-0.26328215,-0.076915115,0.23150103,0.5760173,0.7687785,-0.2615898,0.027571091,0.12556669,-0.4475411,-0.43963188,0.3883692,-0.53592545,-0.010458978,0.3342581,-0.19541885,-0.46930537,0.11761899,0.23938233,0.29902458,-0.07633572,-0.9668618,-0.2926769,0.082526095,-0.29975274,0.11477237,-0.2855449,0.036404572,0.42925212,-0.15151191,-0.41401657,0.017486297,0.085226245,-0.023432583,-0.5474808,0.11566133,-0.510614,0.20324318,-0.14007415,-0.5490434,-0.2853702,-0.14363356,-0.6136404,0.12084523,-0.0062574744,-0.2634451,0.13321002,-0.35806185,-0.072421126,0.99504,-0.35676274,0.33861452,-0.1753727,-0.5793865,-0.61078924,-0.109132245,-0.10040956,0.06081049,-0.0343489,-0.85448253,-0.20064007,-0.09862622,-0.009619374,-0.11976552,-0.36604473,0.5240641,0.11731256,0.37602827,-0.121648304,-0.9016816,0.3287209,-0.015782408,0.013577016,-0.46918586,0.4281967,-0.056484625,0.79597574,0.06461997,0.2354958,-0.06634005,-0.44542834,-0.13570534,-0.17624334,-0.22275941,-0.47803226,-0.08794982,774 -737,0.38792604,-0.13649614,-0.4770403,-0.028327383,-0.084887356,0.11644705,-0.35148907,0.32620904,0.07816532,-0.4866656,-0.2105535,-0.26213768,0.15325305,0.35647422,-0.21188122,-0.84297913,0.15185128,0.19702013,-0.6634371,0.6446739,-0.36452594,0.40859604,0.058809854,0.36916402,-0.066744134,0.2255388,0.3733988,-0.04921121,-0.11558624,-0.0121481875,-0.068256296,0.35231215,-0.7560005,0.17706957,-0.07435487,-0.38264757,0.09360879,-0.18119046,-0.24039102,-0.8243612,0.15072298,-0.82549596,0.54158723,0.21909745,-0.29613927,-0.059403174,0.13454047,0.5170073,-0.23036566,0.07741351,0.27694055,-0.18426092,-0.15876564,-0.2752498,-0.11971006,-0.64219224,-0.52190757,-0.008006224,-0.72158784,-0.29485765,-0.3783436,0.23654914,-0.13133158,-0.048898302,-0.14950877,0.42135164,-0.5132604,-0.1468073,0.37986997,-0.20845501,0.45224908,-0.5318587,-0.06483777,-0.13250022,0.36563522,-0.30978304,-0.3054845,0.102008015,0.35748672,0.47892797,0.13753925,-0.20004717,-0.201199,0.02726918,0.27786034,0.5432863,-0.28934604,-0.53464895,-0.17896964,-0.12804161,0.13663404,0.05583861,0.22934243,-0.50861555,-0.13511564,0.015855175,-0.11217442,0.31975794,0.5018572,-0.4934799,-0.2546959,0.1856539,0.60438854,0.03916616,-0.08592257,0.218565,0.08237279,-0.551242,-0.15885213,0.26354784,-0.08597272,0.6085913,-0.11935728,0.15861998,0.796958,-0.054545574,0.042860646,0.048784617,-0.079972014,-0.008190889,-0.083692536,-0.24184409,0.42488977,-0.40759033,0.05053214,-0.3832156,0.6429367,0.23010287,-0.6832667,0.32319063,-0.6039219,0.17215596,-0.038258925,0.6441082,0.6350199,0.30561095,0.25890848,0.7597654,-0.4606339,0.019892186,0.04652777,-0.35166022,0.12085148,-0.24172625,0.039652806,-0.39396983,-0.1297105,-0.058940686,-0.054410163,0.08975886,0.24436133,-0.63171965,-0.0016428187,0.07601927,0.78509754,-0.37629554,0.009814895,0.58750564,1.1803359,0.57529604,0.0925142,1.3521212,0.44856632,-0.2783907,0.11693848,-0.30595016,-0.56267047,0.25126192,0.39399055,0.21475366,0.3238754,-0.020836312,0.021928493,0.6225765,-0.5933975,0.17905809,-0.12311827,-0.016758094,-0.13163233,-0.29724059,-0.40551573,0.04705806,0.012464125,-0.12478447,0.10753456,0.23936184,-0.1551629,0.42744547,0.10483233,1.3456197,-0.08260712,-0.0064697266,-0.018838117,0.4613363,0.28038245,-0.06142533,0.13925788,0.27347845,0.46099043,0.038325146,-0.58752847,0.27759075,-0.13819262,-0.44722387,-0.22782412,-0.14551753,-0.026303722,0.20492734,-0.53609174,-0.06319152,0.20298195,-0.09532566,0.30288333,-2.333588,-0.15682217,-0.12866879,0.32608238,-0.16383958,-0.35306323,-0.09527074,-0.4466578,0.5176822,0.38099143,0.37157866,-0.6741863,0.5142908,0.49869892,-0.49577826,-0.14293689,-0.69905895,-0.04381407,-0.11949288,0.3464591,0.08755485,-0.13473518,0.12800096,0.26373228,0.48757207,-0.20759875,0.08843812,0.11721166,0.35135695,0.05088286,0.35533318,0.3386843,0.55077004,-0.18686628,-0.2611567,0.37176043,-0.27344698,0.23381312,-0.0027705522,0.059536677,0.26711825,-0.24800624,-1.004512,-0.7560889,-0.5200566,0.8440752,-0.10794893,-0.4780881,0.13924083,0.028764175,-0.18021232,0.14128643,0.6609436,-0.05109546,0.24164003,-0.88594276,-0.07348839,-0.065432325,0.28973582,0.1416501,-0.11331536,-0.61741406,0.62373966,-0.25288326,0.23608762,0.60510653,0.20097388,-0.22105673,-0.63834834,0.1544834,1.049238,0.2865061,0.21048209,-0.24874511,-0.2375817,-0.28558952,-0.014050731,-0.08174737,0.69805837,0.68426204,-0.068116665,0.14916322,0.12613776,0.051064905,-0.010472298,-0.3382351,-0.49091727,-0.073627904,0.15859428,0.6617091,0.60965693,-0.19409092,0.3748081,-0.1853732,0.3817405,-0.30150136,-0.49973807,0.79786915,1.23299,-0.19057798,-0.058174856,0.8258124,0.30757293,-0.22536561,0.47696385,-0.88062567,-0.40380085,0.46444637,-0.111540094,-0.480272,0.30603626,-0.30043453,0.24481544,-1.0087636,0.5435819,-0.43110734,-0.3433372,-0.62030286,-0.07419555,-4.0495114,0.20250306,-0.26056334,-0.034200326,-0.024225043,-0.110217795,0.33043388,-0.6334604,-0.4439947,0.23819517,0.07072219,0.3744083,-0.04235104,0.102217,-0.34011617,-0.11148822,0.045015913,0.37762773,0.24766111,0.17438364,-0.0622816,-0.5466823,0.21018958,-0.19461957,-0.36918515,-0.024530364,-0.6794399,-0.47171587,-0.36907145,-0.6672199,-0.3033908,0.5839705,-0.5997325,0.00491971,-0.23978956,0.07096992,-0.17979845,0.482139,0.27190545,0.25095528,0.022163097,0.05791643,-0.23399888,-0.2510553,0.035364166,0.17759767,0.06584306,0.46570486,0.011250645,0.20550981,0.41955858,0.5900395,-0.0038647263,0.7509651,0.5966594,-0.051310215,0.30677754,-0.30488977,-0.2737901,-0.6939697,-0.42588538,-0.4507233,-0.4337422,-0.62191427,-0.06942158,-0.45762742,-0.73791176,0.5796515,-0.0684666,-0.19528316,0.14504537,0.18377605,0.34047204,-0.3360132,-0.13329071,-0.19335689,-0.07632732,-0.5960503,-0.30727887,-0.5730291,-0.75067294,0.04793906,0.79190165,-0.12657882,0.04631629,0.1251185,-0.08925702,-0.089277744,0.3875406,0.094567485,0.11130619,0.6119039,-0.05609946,-0.69652593,0.5682805,0.015920121,-0.4771498,-0.8105478,0.3477814,0.53384614,-0.8148683,0.76297724,0.43428674,0.09413709,0.05985604,-0.3667398,-0.3701809,0.16738299,-0.29883906,0.5588312,0.055533193,-0.7059873,0.3620047,0.37854972,-0.29457933,-0.7417931,0.75037205,-0.086003885,-0.4550218,0.2572926,0.27728385,-0.09619837,0.117264874,-0.45468476,0.1888124,-0.49283546,0.09235747,0.40223992,-0.059804305,0.5612648,-0.2033458,-0.18385158,-0.8744878,0.07884503,-0.71652293,-0.25727728,0.08870388,-0.026286233,-0.17848054,0.35559937,0.13665034,0.4180238,-0.33340344,0.19546501,-0.18936239,-0.27386376,0.35352293,0.48030627,0.17039658,-0.3408149,0.65576875,-0.11371163,-0.115991905,-0.3970604,0.067012616,0.58560777,0.16865046,0.55083424,-0.03393038,0.027981978,0.25698796,0.7777428,0.11742333,0.6130702,0.23742819,-0.07271915,0.22000489,0.14520855,0.24688159,0.1698993,-0.39282057,0.04730904,-0.05355737,0.1561564,0.39765263,-0.02559772,0.39038152,-0.1464984,-0.52061415,0.13717665,0.2706653,0.23388813,-1.1405011,0.37137696,0.2569609,0.585962,0.5654004,0.0816871,-0.003181525,0.50415957,-0.40105394,0.074222006,0.17617938,-0.13827604,-0.5179564,0.546349,-0.777299,0.24901772,-0.24350008,-0.01204011,0.00087149325,-0.090362325,0.26400286,0.9721676,-0.19997527,0.15669106,-0.07014736,-0.01634976,0.05474753,-0.3960312,0.12214338,-0.36398757,-0.4633003,0.7910343,0.5307477,0.43845809,-0.33654678,-0.03082226,0.12674361,-0.18185839,0.10472481,-0.041743305,0.24301559,0.07091182,-0.5579305,-0.33659953,0.6832637,-0.23653635,-0.018841136,0.0030160958,-0.47185713,0.26724178,-0.109798275,-0.02663512,-0.13111493,-0.859883,-0.01326163,-0.47816318,-0.3966088,0.7130248,-0.27511713,0.20625949,0.26204967,0.06530894,-0.3152216,0.667366,-0.080708966,0.71532464,0.2819969,-0.11265496,-0.29426703,0.24772581,0.3755496,-0.2014603,0.01710945,-0.3261926,0.25393268,-0.50953,0.40124246,-0.026640378,-0.3362334,0.06280038,-0.13936277,-0.12627237,0.48059353,-0.2270158,-0.3504251,0.50330514,-0.17860797,-0.18098405,-0.32142428,-0.16373755,0.21284556,0.047752228,0.114593945,-0.01655184,0.0085555455,-0.22982384,0.41245493,0.25463113,0.3787587,0.56768906,-0.041379903,-0.4114941,0.09975172,0.16151828,0.4941333,-0.14130987,-0.15315317,-0.17702444,-0.73612106,-0.34790054,-0.14982629,-0.17997397,0.25217426,-0.00053287926,-0.19749075,0.84487873,0.162837,1.2695115,0.04376805,-0.46825832,0.3116479,0.49684447,-0.08244639,0.0041535357,-0.5294404,1.0150468,0.59339774,-0.03961146,-0.014612966,-0.115700096,-0.19862762,0.21523446,-0.2187302,-0.11810802,-0.060929917,-0.7550965,-0.17896062,0.32210636,0.4418718,-0.031138454,0.035736404,0.25872436,0.0835104,0.02303849,0.13629562,-0.76181644,-0.12286575,0.21691893,0.25617316,-0.081651144,-0.017924497,-0.26694843,0.6397402,-0.5042689,-0.102277055,-0.5532423,-0.08811756,-0.27613294,-0.3035516,0.12530547,0.08388303,0.3264217,-0.33340877,-0.10075081,-0.31397966,0.43380898,0.32373288,0.11810009,0.71622646,-0.17635141,0.12733132,0.021343268,0.5960812,1.1556259,-0.55798596,-0.045941755,0.5112553,-0.4370845,-0.5301978,0.2941913,-0.34184396,0.11762946,-0.1557444,-0.45631468,-0.6193319,0.15205954,0.13223074,-0.12686414,0.11563598,-0.7269984,-0.095354564,0.3523374,-0.47642216,-0.3287508,-0.24176165,0.51313895,0.8012431,-0.38746983,-0.3226183,0.08005658,0.2794506,-0.25674385,-0.51397157,0.0075075924,-0.2374784,0.440647,0.2787131,-0.44515926,-0.034325983,0.20122027,-0.49801093,0.0006676041,0.42112985,-0.36483353,0.19044341,-0.3001823,-0.070026904,0.9289788,-0.051146183,-0.085743055,-0.7314511,-0.54071695,-1.0322996,-0.4356592,0.5482147,0.29269826,-0.03681924,-0.56355035,0.07477133,-0.09667203,0.10158633,0.07879866,-0.24648863,0.47291434,0.09473459,0.67061305,-0.073305495,-1.0231297,0.04725268,0.196139,-0.06829657,-0.5095727,0.40164274,0.025735388,0.9961086,-0.026758125,-0.030067077,0.2519803,-0.63120645,0.13613775,-0.38473147,-0.110711895,-0.9026489,-0.009096969,790 -738,0.2081976,-0.42045578,-0.30018157,-0.17713822,-0.46210903,0.002199549,-0.38284317,0.28664732,0.21866876,-0.15680067,-0.15689825,0.054647252,0.030533511,0.38915285,-0.24310587,-0.5456796,-0.3538881,0.088920355,-0.5964991,0.6588602,-0.49061102,0.22333051,-0.19382562,0.4473921,0.15108368,0.36215967,0.3550711,0.10969253,0.062687986,-0.09368928,-0.027415363,0.23119985,-0.47528994,0.2588787,-0.24765627,-0.36224002,0.111393966,-0.475564,0.0002371027,-0.71355826,0.39776427,-0.7328701,0.5022999,-0.09464081,-0.21680114,0.18222205,0.54769886,0.21788876,-0.30651978,-0.119339705,0.19254072,-0.13738035,-0.10734149,-0.48632935,0.0033860619,-0.35400918,-0.46302316,-0.14823362,-0.68149334,-0.33796236,-0.14256893,0.26147947,-0.29252577,-0.050294086,-0.036236003,0.37205127,-0.3626249,-0.012825398,0.2308148,-0.21350019,0.14672567,-0.7600814,-0.10445944,-0.0077237007,0.43827057,-0.0062463353,-0.10833592,0.55641073,0.04431849,0.20124608,0.1866669,-0.3600769,-0.37680274,-0.36156267,-0.015281274,0.3535009,-0.18963616,-0.30833036,-0.2925665,0.0246516,0.25635412,0.41772044,0.08492256,-0.013100037,0.10785698,-0.2392669,-0.0478673,0.76233184,0.38702863,-0.016806204,-0.3727501,0.17174624,0.6074553,0.3056055,-0.41182092,-0.18723682,-0.068886094,-0.41383737,-0.24462198,-0.03198928,0.08048487,0.3001394,-0.1514723,0.26836106,0.750931,-0.1439707,-0.062498808,0.021363087,0.07801747,0.0012111389,-0.4283026,-0.27214253,0.24443682,-0.54816353,0.07241443,-0.31114835,0.52761346,0.109682076,-0.6214669,0.3071041,-0.6556692,0.09902726,0.050353903,0.5189433,0.5410431,0.53774023,0.3347742,0.80715466,-0.038489874,0.06304535,-0.10502274,-0.11379225,0.051743165,-0.32660535,0.16701882,-0.5401032,0.2682327,-0.21285473,0.26822758,0.06404407,0.30469948,-0.52547544,-0.18985489,0.2806379,0.6748089,-0.27350837,0.09971019,0.80247724,1.2139661,1.1753951,-0.101101875,1.0595921,-0.02596945,-0.23843028,-0.056329217,-0.1175106,-0.6377704,0.21929234,0.41367406,0.0070533934,0.45536885,-0.15663888,0.09708564,0.30221793,-0.44277096,-0.15427397,0.13712955,0.46341005,0.4013851,-0.014752372,-0.5045894,-0.16071358,0.068758,-0.00011596313,0.33097723,0.20711218,-0.1948003,0.32666257,0.020524066,1.2606237,-0.08845771,-0.01946301,0.21920456,0.65136534,0.29751417,0.045621064,0.123756394,0.41403368,0.22739506,0.16279373,-0.5179882,0.3023089,-0.32014135,-0.55463815,-0.08107611,-0.40736425,-0.27595437,-0.09073536,-0.19075195,-0.24717654,-0.21165857,-0.26028925,0.15800397,-2.8633063,-0.27694273,-0.108901456,0.31057915,-0.20920143,-0.07068643,0.07118782,-0.3810599,0.42544812,0.2915045,0.40143284,-0.48088625,0.4271213,0.75974333,-0.7140216,-0.067093,-0.5370405,-0.18567361,-0.099309355,0.74559987,0.1275128,-0.15970248,-0.24339986,0.41971922,0.6391725,0.20463617,0.20177604,0.45564836,0.41420272,-0.2765078,0.59967047,-0.0270629,0.432199,-0.49110076,-0.12816538,0.3478526,-0.5015717,0.14635263,-0.33844006,0.048833303,0.59064186,-0.42369205,-0.8866228,-0.5214427,-0.073801175,1.0199257,-0.14501128,-0.55402166,0.20262879,-0.46725085,-0.02933064,-0.07407181,0.4989528,-0.16176802,0.144589,-0.6418941,0.13975438,-0.15740536,0.15723583,-0.05467935,-0.0018208554,-0.652682,0.79858124,0.09499281,0.61284614,0.21729788,0.20395741,-0.4852072,-0.22707517,0.08494207,0.52703243,0.42603067,-0.029339217,-0.0023489497,-0.22067173,-0.05635103,-0.20623578,0.058487747,0.7371876,0.5313649,-0.0568754,0.27997473,0.33864278,-0.18104628,-0.011285846,-0.15569629,-0.12131907,-0.14091411,0.13368294,0.51291716,0.8314661,-0.088045835,0.32480064,0.040881082,0.465065,-0.11280557,-0.4495445,0.52952015,0.56615824,-0.14397758,-0.10724381,0.69508374,0.5180429,-0.36854208,0.48590198,-0.65136725,-0.30820206,0.78046423,-0.27111146,-0.47437197,-0.0024352623,-0.18588541,0.02047807,-0.60238343,0.21516524,-0.36989287,-0.3057935,-0.57191986,-0.25153637,-2.7350833,0.054569747,-0.1792126,-0.13671528,-0.50139356,-0.22589773,0.11519276,-0.7410875,-0.70682865,0.2541385,0.17639908,0.635099,-0.15887783,0.08792749,-0.2627671,-0.41813585,-0.038522117,0.38607088,-0.07371239,0.2063845,-0.1528412,-0.43582967,-0.118913166,0.0072936187,-0.73142076,0.09955177,-0.44561768,-0.350214,0.11046687,-0.6435007,-0.14195287,0.65390885,-0.24503905,-0.04025948,-0.31487894,-0.0016022279,0.019020753,0.056736164,0.082217336,0.16009004,0.3647356,-0.05432952,0.24176,-0.26163894,0.48326427,-0.008161857,0.43898004,0.04156065,-0.012629846,0.18440507,0.40133908,0.6105892,-0.27887142,1.1473327,0.34633714,-0.11486065,0.36862782,-0.29011628,-0.32010058,-0.53535414,-0.24143511,0.30374667,-0.21942538,-0.3753634,-0.06574158,-0.3012388,-0.7548647,0.7477871,0.04196763,0.4016163,-0.22080477,0.23154236,0.28207806,-0.2583628,-0.034435127,0.05722565,-0.15049936,-0.474616,-0.20600605,-0.6034601,-0.43602106,-0.1251955,0.68905187,-0.3364403,0.013724951,0.25286725,-0.32463706,0.20122266,0.16437332,0.13661565,0.30255383,0.36879247,0.29583234,-0.6254705,0.45779264,0.031770352,-0.11685658,-0.32744887,0.12058462,0.6100044,-0.6351712,0.44841224,0.3968374,-0.08002312,-0.34042037,-0.52874625,-0.04036264,0.052738097,-0.17439644,0.45246363,0.27319536,-0.9310669,0.58141166,0.11575275,-0.41528237,-0.6765343,0.3302386,-0.19436227,-0.33546856,-0.12630984,0.36466244,0.31684577,-0.050128307,-0.0930996,0.31761262,-0.26805618,0.21012737,-0.12410001,-0.0039457586,0.35492358,-0.040334012,-0.31400996,-0.77005386,0.10726759,-0.4956957,-0.36883977,0.41666666,-0.15703772,-0.25216302,0.20014328,0.11910199,0.33837286,-0.2784321,0.116934225,-0.01721693,-0.43415928,0.19006634,0.48411682,0.4123631,-0.40337107,0.4597521,0.10907933,-0.16824624,0.20253974,-0.20471555,0.36221042,-0.11915334,0.5628688,-0.10276706,-0.029050099,0.4532844,0.6693345,0.22361138,0.27330664,0.033124622,-0.106172755,0.4423863,-0.08251424,0.1989207,0.0016990167,-0.4423024,0.14403765,0.03138543,0.0070753004,0.4673465,0.290155,0.3867428,0.24501465,-0.2769979,0.027191909,0.19850866,-0.22987865,-1.4392571,0.31150377,0.23930913,1.0161121,0.5009097,0.13142921,0.002227201,0.7972052,-0.13894318,-0.12191558,0.57760817,0.1841581,-0.33307374,0.8431905,-0.4269991,0.5458669,-0.17253658,-0.12244408,0.049033985,0.0700715,0.39323714,0.6760321,-0.24202336,-0.0015834707,0.097518004,-0.18987519,0.106937185,-0.29547378,0.03892811,-0.1899928,-0.36279795,0.57280767,0.35006955,0.39116016,-0.22757635,0.10942503,0.11730768,-0.20935968,0.29811674,-0.13779055,-0.31370395,-0.04286544,-0.4957199,-0.050267898,0.47932693,-0.02395651,0.28531548,-0.2510513,-0.27762702,-0.0005395642,0.014961213,-0.0034318613,0.05011844,-0.63687265,0.15235922,-0.077693336,-0.53499514,0.6510525,-0.34371036,0.015598964,0.36387575,0.054110453,-0.1799944,0.1398936,0.14334607,0.5430375,0.054665584,-0.20833573,-0.18503366,-0.091024384,0.08174462,-0.3191722,0.23418361,-0.39493254,0.300033,-0.45919836,0.62317175,-0.17198688,-0.47607586,0.006237099,-0.3028845,-0.06740807,0.5430419,0.023042591,-0.08210557,-0.10829876,-0.17968628,-0.25528938,-0.27582008,-0.44701767,0.32402208,0.12060295,0.045690186,-0.26252848,-0.3064113,-0.27121168,0.64930177,-0.08503657,0.40600315,0.19569103,0.026695298,-0.20799288,0.2885422,0.16079427,0.5240014,0.0128811095,0.06576702,-0.29798275,-0.39377445,-0.3481149,0.5166846,-0.15121277,0.10533821,0.06243915,-0.30644247,0.90469486,-0.054229006,1.0902743,-0.06663558,-0.45121038,0.124623075,0.5404555,-0.2323235,-0.013159534,-0.3778119,0.848199,0.4828967,-0.2720943,-0.0528208,-0.5046319,0.066064864,0.40334246,-0.41259772,-0.086861186,-0.21451084,-0.4731666,-0.5314421,0.27453044,0.116383545,0.1074088,-0.18562023,-0.13477263,0.07137389,0.1923998,0.42509905,-0.568836,-0.09395656,0.2947509,0.009935713,-0.17018682,0.13602759,-0.48859823,0.39148316,-0.5912112,0.31707942,-0.5526137,0.14756249,-0.4590132,-0.2842675,0.051875595,-0.13629432,0.31450436,-0.32055137,-0.5352901,-0.123606905,0.15636796,0.06202839,0.17218593,0.38694194,-0.24461174,0.15292105,0.03545005,0.56094337,0.94438523,-0.33394873,-0.09254517,0.101470396,-0.5896359,-0.70791525,0.2530429,-0.441625,-0.12882987,0.064643286,-0.32481816,-0.5245593,0.19854857,0.19812125,0.22950587,-0.051369444,-0.5347649,-0.18993303,0.29828686,-0.29871148,-0.23051964,-0.15596806,0.11940844,0.7635297,-0.15837458,-0.25440544,-0.02250465,0.3950308,-0.25962797,-0.6311992,-0.034919932,-0.34344688,0.54285204,0.0049168766,-0.20208052,-0.24881032,0.103382036,-0.5787366,0.10283525,0.40367156,-0.2788332,-0.048675485,-0.12079351,0.106503434,0.842419,-0.23220521,0.09576954,-0.4406484,-0.50189006,-0.9590875,-0.34215906,-0.04929084,0.17398132,-0.019087724,-0.4481207,0.019348796,-0.27766064,-0.318608,0.14375296,-0.48341906,0.2396992,0.17291337,0.4874352,-0.40945,-0.9210033,0.20483392,0.1512905,-0.00041558192,-0.48134306,0.69828606,-0.12077885,0.6566442,0.104087405,-0.14689215,-0.11637434,-0.28317845,0.18173078,-0.20316178,-0.12665112,-0.57848513,0.12461587,791 -739,0.2612925,-0.3004743,-0.3780605,-0.104483925,-0.029050576,-0.040195886,-0.04161811,0.428784,0.12308241,-0.33488163,-0.17059883,-0.33696622,0.08463601,0.2000241,-0.12082373,-0.47130612,-0.24494277,-0.033995155,-0.44429412,0.5980798,-0.3489613,0.07920973,-0.029523104,0.3418534,0.19974183,0.3304189,0.0053112092,-0.14168976,-0.029541254,-0.21180776,-0.12434174,0.18808174,-0.66908497,0.0718403,-0.022264259,-0.11823415,0.00659883,-0.57059985,-0.55588275,-0.5932993,0.3828315,-0.9051039,0.4631845,0.13660023,-0.03952124,0.4634969,0.025139295,0.2908734,-0.345013,-0.06550128,0.18423972,-0.07250709,0.1177429,-0.19928718,-0.103329025,-0.15336484,-0.49370462,-0.041195825,-0.26413736,-0.4743119,-0.3246413,0.06416187,-0.40012103,-0.0945673,-0.13715698,0.5194807,-0.41676757,0.17182356,0.21488388,-0.14320746,0.39551023,-0.5916017,-0.21623626,-0.08769398,0.22478434,-0.21409567,-0.13992788,0.21564916,0.23581603,0.16225466,-0.080703735,-0.051800225,-0.2192011,-0.14607516,0.2890119,0.43945152,-0.18665045,-0.4231933,0.071293384,0.18032596,-0.23795591,0.22329752,0.10293133,-0.35766172,-0.24691504,0.032443002,-0.18700527,0.30282027,0.40684965,-0.15991277,-0.25855872,0.38420922,0.41034713,0.28953466,-0.061169066,-0.17473856,0.044377122,-0.5365407,-0.10514261,0.037261274,-0.28442395,0.5118586,-0.080178335,0.21804234,0.6818483,-0.14201106,0.06768811,-0.03231559,0.03796267,0.023442177,-0.39771622,-0.196819,0.19196709,-0.25063026,0.27106392,-0.016550424,0.6832174,0.17210634,-0.6027968,0.34062195,-0.5855776,0.19347073,-0.11151978,0.48821023,0.51387507,0.37860093,0.49002832,0.58610255,-0.46892774,0.105029896,0.0060780644,-0.42450854,0.06028563,-0.07426173,-0.12476078,-0.4581414,-0.12001885,-0.010145233,-0.13128726,0.11743914,0.16273928,-0.42887035,0.06851025,0.24466673,0.9747601,-0.21207438,0.018812578,0.5815088,0.9368147,0.867843,0.074288085,0.94054157,0.09516309,-0.26804832,0.3098496,-0.27675942,-0.81889397,0.24754895,0.40920323,-0.11309944,0.11939899,0.16311537,-0.005752059,0.22118014,-0.37133318,0.11460066,-0.2545163,0.14200065,0.29079315,-0.19659552,-0.37577146,-0.15712231,-0.22353598,-0.01857585,-0.14068134,0.012049451,-0.10911242,0.30392203,0.013312464,1.7547338,0.021167208,0.16928083,0.102274254,0.38762915,0.14558369,-0.057524838,-0.08458662,0.5245521,0.45049766,0.31160703,-0.6412927,0.26892757,-0.14965881,-0.31418616,-0.080222055,-0.40146822,0.044863723,0.03810531,-0.3224193,-0.09162081,-0.13218667,-0.19761041,0.40840164,-3.1604452,-0.04997174,-0.13967687,0.34598795,-0.2516114,-0.21755911,-0.00899313,-0.37422392,0.44556063,0.36513966,0.5222215,-0.5940961,0.19186133,0.40247154,-0.45622107,-0.16454765,-0.5320715,-0.16058579,0.07972579,0.42436355,0.025424829,0.16452636,0.059927013,0.094705835,0.36795026,0.004296156,0.049511578,0.22140357,0.4720341,0.04634089,0.6622001,-0.08129129,0.4225101,-0.10730395,-0.11738073,0.1914575,-0.17187275,0.30308962,-0.03284258,0.113376126,0.38633382,-0.359734,-0.7625393,-0.54881,-0.37099215,1.1849355,-0.32997125,-0.3126256,0.3473655,-0.28062293,-0.25259152,-0.16631392,0.38541287,-0.110478885,-0.0852762,-0.7875419,0.017860197,-0.10432946,0.27126202,0.0130402185,-0.16740161,-0.46359092,0.63703704,0.021743318,0.46736023,0.46805507,0.048285425,-0.20433642,-0.44973865,-0.07199193,0.7736474,0.29877248,0.11854447,-0.20960191,-0.1751175,-0.16451451,-0.027617987,0.09107339,0.51734173,0.5507794,-0.05507634,0.1729206,0.2694592,-0.0023668546,0.015988262,-0.15484905,-0.20113407,-0.097884424,-0.18857478,0.43442598,0.586844,-0.14602445,0.38728574,0.008243795,0.28159603,0.09485049,-0.32825544,0.3684311,1.0495436,0.003768499,-0.2277299,0.43345514,0.48380595,-0.2797193,0.26781872,-0.32202017,0.007298758,0.6912431,-0.26377475,-0.5579906,0.39770615,-0.24157262,0.00486704,-0.83566993,0.2955085,-0.19006616,-0.52145076,-0.6442748,-0.13476992,-3.6586206,0.119415,-0.36617753,-0.3582896,-0.12513843,-0.13335837,0.117525905,-0.58817136,-0.5328439,0.19978389,0.1041952,0.5169933,-0.1481747,0.13731557,-0.25534174,-0.017099926,-0.19215035,0.16798598,0.19295636,0.2227148,-0.041009232,-0.3799427,-0.22079875,-0.026954876,-0.46359614,0.13045731,-0.5005751,-0.32901156,-0.07995362,-0.56962556,-0.28705272,0.63451993,-0.21545385,-0.07280523,-0.11109035,0.056046642,-0.15985925,0.20794685,0.21647933,0.29766214,-0.09742455,0.008063988,0.042896233,-0.32815382,0.41644093,0.13220051,0.29245698,0.19739944,-0.07102074,0.18671156,0.27314714,0.51227033,-0.053954855,0.6629482,0.4891106,-0.1565412,0.17580599,-0.40413892,-0.3230829,-0.5479446,-0.30563626,0.096681915,-0.29821345,-0.5380614,-0.09229236,-0.32864243,-0.6578871,0.48057446,-0.015006075,0.012092984,0.012517883,0.237804,0.5656701,-0.10903972,0.008202901,0.07757068,-0.0778106,-0.61278325,-0.10754328,-0.4997401,-0.40279862,0.1576828,0.65474063,-0.21858412,0.0122640915,-0.07925717,-0.3840437,-0.033109125,0.050218936,-0.17500421,0.3706781,0.44183797,0.08965463,-0.5714644,0.5940432,-0.102587104,-0.29748142,-0.67118794,0.20106865,0.53327554,-0.6255239,0.67360216,0.23109637,-0.08116167,-0.1527256,-0.40336528,-0.3191343,-0.17691554,-0.1399782,0.19618633,0.061798472,-0.599268,0.33546337,0.3809052,-0.24636687,-0.665797,0.52195936,-0.058946483,-0.45724905,0.1842699,0.23285219,-0.036493316,0.029500447,-0.011633782,0.33434945,-0.26856154,0.14901859,0.20780791,-0.059667394,0.16044536,-0.009839837,-0.065733396,-0.7449655,0.22359775,-0.3403913,-0.26568353,0.41914865,0.1519709,0.13696197,0.09001584,0.055763815,0.36168385,-0.14419152,0.16142409,0.004054292,-0.20464896,0.26354328,0.3470278,0.35022166,-0.5110299,0.5162172,-0.02259039,-0.06896522,0.107026294,0.17957598,0.3563766,-0.029391233,0.27417448,-0.009171688,-0.1300188,0.23809136,0.69346356,0.16795278,0.5739776,0.036755506,0.06084367,0.42933792,0.053684626,0.18289599,0.0526941,-0.6118777,0.18837279,-0.15405777,0.10933757,0.36416215,0.16917625,0.20233907,-0.16311875,-0.3796961,-0.006657853,0.4781712,0.29406914,-0.85002553,0.35164642,0.17339411,0.7675564,0.4588577,0.061798133,0.079960495,0.67158043,-0.095829114,0.0528094,0.29494917,-0.010432798,-0.6389439,0.44208738,-0.6540124,0.41709563,0.07315372,-0.08779511,0.0067724036,-0.058832135,0.3447054,0.64349186,-0.23576975,-0.06730027,0.07517986,-0.23136953,0.16954415,-0.48581484,0.15837945,-0.36769882,-0.34497517,0.44782373,0.6282224,0.20369527,-0.073387936,0.0061790487,0.03765682,-0.16427715,0.14236364,0.10350147,0.014916379,0.06827012,-0.8275318,-0.16773823,0.45530114,-0.18116735,0.19073106,-0.13752328,-0.120237656,0.34277508,-0.20455424,-0.17468296,-0.056465857,-0.69077295,0.26286498,-0.2643128,-0.49651334,0.2618343,-0.084637366,0.38333,0.14023295,-0.041730396,-0.133948,0.38278472,0.04164412,0.9120649,-0.12930363,-0.13152288,-0.54534185,0.104348145,0.0853566,-0.10862308,-0.009381115,-0.35706207,-0.0034765233,-0.4683615,0.47344765,0.09618558,-0.2841313,-0.10402071,-0.22748241,-0.015276512,0.58634675,-0.07758518,-0.061836455,-0.1736169,-0.3043799,-0.23142369,-0.069429144,-0.05284054,0.2889733,0.28468663,0.09079779,-0.039053857,0.017976325,-0.25739977,0.475798,0.049840245,0.5900069,0.17265862,0.06018017,-0.14684899,-0.39176434,0.08126342,0.45707446,0.0061378023,-0.11946269,-0.09286886,-0.4475556,-0.28063905,0.17512967,-0.11140398,0.5313688,0.023643076,-0.17955428,0.58133096,-0.1410423,1.0117817,-0.024782836,-0.32386,0.13798054,0.5799787,0.042577166,-0.14192985,-0.28405386,0.83485794,0.59178674,0.026926251,-0.09700576,-0.23545696,-0.042219102,0.0755416,-0.14856964,-0.13037676,0.013722376,-0.43547207,-0.16486028,0.08635083,0.19521922,0.33952382,-0.08278788,-0.026918415,0.13115685,-0.06724044,0.20963243,-0.31064174,-0.19119644,0.22531915,-0.012597712,0.03718153,0.0058748964,-0.49396974,0.48126903,-0.2426599,0.10223205,-0.3027508,0.18530765,-0.17145556,-0.16431767,0.16829467,-0.13896227,0.45111534,-0.4085844,-0.24016167,-0.2423582,0.3952827,0.193065,0.1714329,0.60623467,-0.19516698,0.18675733,0.020044757,0.5813874,0.7590392,-0.2711453,-0.0405983,0.37503004,-0.4351473,-0.4815219,0.33906958,-0.20944333,0.22802247,0.007259587,-0.06301709,-0.48600012,0.20294847,0.10950764,-0.0022161007,-0.03825494,-0.5792344,-0.3310327,0.21178213,-0.3443808,-0.18214332,-0.39857382,0.16553608,0.731439,-0.30580643,-0.23362753,0.0708887,-0.02864614,-0.13952118,-0.30935323,-0.0663803,-0.29452732,0.25918356,0.021384465,-0.28896523,-0.14413717,0.021914758,-0.27968615,0.23653929,-0.10116168,-0.3465369,0.0206543,-0.05342799,-0.2116083,0.96798503,-0.32031456,0.01964135,-0.60490423,-0.4543576,-0.6699246,-0.33164537,0.7392005,-0.13573964,0.07205625,-0.51714957,0.022595946,0.012261345,-0.14490546,-0.27329424,-0.29061657,0.46115282,-0.006180259,0.44030303,-0.21191362,-0.666061,0.28414363,0.07521879,-0.15549403,-0.74759126,0.5535939,-0.024330208,0.50329727,-0.0049123904,0.14653526,0.28863943,-0.32628188,-0.31032243,-0.25919583,-0.32582605,-0.6322652,0.1214982,793 -740,0.44777218,-0.24677786,-0.48636416,-0.21677725,-0.35503483,0.32909012,-0.40264782,0.41743466,-0.012197399,-0.58576506,-0.14054416,0.10223996,-0.09800225,0.39509794,-0.24348983,-0.5704552,0.015281489,0.24918866,-0.5132228,0.42424172,-0.5707546,0.33554208,0.052481472,0.33268964,0.10119511,0.21967497,0.06920053,0.032250576,-0.14606136,-0.061408166,-0.021512967,0.30183986,-0.5927454,0.449832,-0.083741814,-0.26958635,-0.06073112,-0.44218272,-0.20574856,-0.6434384,0.14288789,-0.73494315,0.45835158,-0.16197146,-0.48748296,-0.01106436,0.07738555,0.26672262,-0.3880083,0.089217156,0.21859895,-0.16168642,-0.2846064,-0.26046944,-0.09921581,-0.4871837,-0.5351584,0.02721968,-0.6091064,0.010758505,-0.18552718,0.28347316,-0.17924558,0.08294474,-0.21030268,0.1485336,-0.48130453,0.042476714,0.28936768,-0.16940166,0.06331502,-0.5759668,-0.1583634,-0.21578282,0.2740118,-0.0038059307,-0.20418574,0.08754224,0.3832555,0.7213549,0.069205396,-0.1931584,-0.10986351,-0.14481798,0.34721744,0.44468406,-0.054571785,-0.2379769,-0.41180304,-0.16427001,0.38371155,0.13441831,-0.018629588,-0.48196852,0.043288454,-0.020164521,-0.23544417,0.27844328,0.38279852,-0.38142425,-0.063019,0.34409478,0.5689417,0.11732464,-0.14524387,0.27772215,0.027890772,-0.4412322,-0.27818087,0.2738548,0.108067796,0.58734167,-0.15827993,0.24780497,0.59046054,-0.033605747,0.05034956,0.0018955126,-0.07379342,0.00059080124,-0.2901367,-0.19855794,0.1346428,-0.4622904,-0.022960229,-0.24940978,0.65982056,0.113389306,-0.6001547,0.37065446,-0.48122296,0.10587224,-0.07039492,0.6003407,0.7990563,0.4183187,-0.070037395,0.8688506,-0.57036805,0.051644977,-0.182925,-0.16345622,0.022264678,-0.111618645,0.10339183,-0.4689429,0.23641366,-0.050550167,-0.016812338,-0.18583068,0.4591537,-0.37254927,-0.18921067,-0.111175284,0.43522936,-0.48238987,-0.020505257,0.9527007,1.0091369,1.0339314,0.21669485,1.5541458,0.37080145,0.08500917,-0.18908978,-0.12628743,-0.53913254,0.14978361,0.2682266,0.5646888,0.19920236,0.13411132,0.06997584,0.52237767,-0.2755763,0.17311741,-0.15479864,0.32549903,-0.091048986,-0.017388344,-0.36169177,-0.24920405,0.18044971,0.054718282,-0.044029865,0.291913,-0.22086252,0.49948066,0.14294943,1.2461369,-0.17874326,-0.041299462,-0.04412963,0.091828786,0.18655385,-0.20343623,-0.10913908,0.17491928,0.45803463,-0.20671052,-0.61209065,-0.09340877,-0.17737392,-0.49944025,-0.22255479,-0.34421355,-0.053040225,-0.32021222,-0.44467437,-0.048179187,0.12635551,-0.32582253,0.5554441,-2.1974084,-0.44229332,-0.3504379,0.32775396,-0.24371368,-0.4024232,-0.31686875,-0.31305748,0.47305724,0.28105992,0.35233575,-0.51878697,0.6078156,0.30307415,-0.31618148,-0.15089561,-0.73846555,0.033059247,-0.07602521,0.20772862,-0.0042257104,-0.3032977,-0.24180096,0.13425504,0.70818424,-0.14596978,0.09228587,0.3665729,0.5526917,-0.1063821,0.54715264,0.14567767,0.5521298,-0.393451,-0.1108631,0.43068296,-0.512715,0.5414823,0.064102545,0.26719853,0.29380408,-0.58615166,-0.721878,-0.86002,-0.5006301,1.2318431,-0.39516094,-0.38229164,0.098250695,-0.21565373,-0.31474292,0.15600434,0.4167282,-0.0031929244,-0.012444625,-0.88157046,-0.139815,-0.040800277,0.1561981,-0.10553773,0.15462501,-0.45472234,0.69489646,-0.24827531,0.59915245,0.61755186,0.21533273,0.12649593,-0.2138853,-0.024487834,0.9662444,0.5328148,0.020514717,-0.27049673,-0.29367658,-0.27214867,-0.20411721,0.03950949,0.6646709,0.61655796,0.057580207,0.10980192,0.29069218,-0.15223056,0.014425294,-0.22168079,-0.3655419,-0.1283308,0.20762242,0.6528261,0.5842781,-0.012609463,0.33218992,-0.2045131,0.20252919,-0.2149745,-0.5657415,0.35986108,0.70373714,-0.12245737,-0.13622269,0.6079508,0.46757036,-0.34214735,0.37878683,-0.5547596,-0.3929332,0.5234188,-0.016902072,-0.26821983,0.07075586,-0.38666075,0.020459335,-1.0456446,0.3818293,-0.31454185,-0.6330379,-0.5331197,-0.33307302,-2.5843318,0.2979849,-0.073055655,-0.05883191,-0.17279403,-0.3476933,0.43366453,-0.434325,-0.65974617,0.18677361,-0.027631879,0.5033958,-0.072029516,0.011567602,-0.31945705,-0.17988198,-0.06622151,0.14127979,0.024427176,0.31701902,-0.026099874,-0.32255414,0.0894932,-0.397504,-0.33762577,-0.03551013,-0.79855084,-0.49883586,-0.060580492,-0.4010873,-0.173615,0.7166951,-0.5055057,-0.078199945,-0.25535262,0.010829659,-0.26072377,0.42785138,0.107402414,0.2376175,0.23918988,-0.03923422,-0.3356066,-0.36486593,0.07305356,0.18231504,0.092162535,0.35227495,-0.24896976,0.26624987,0.5521252,0.67738366,-0.13606158,0.84513164,0.23806928,-0.019861933,0.3426266,-0.2439846,-0.29329115,-0.43500835,-0.40444213,-0.29392654,-0.5452975,-0.48706034,-0.118634544,-0.22766227,-0.87745374,0.38107792,0.12746558,-0.07916951,-0.11077844,0.2316672,0.23014523,-0.13352884,0.03201679,-0.1682145,-0.16717614,-0.5316918,-0.6130314,-0.6343517,-0.5943735,0.09318801,1.3498574,-0.13600455,-0.043152615,0.08199019,-0.4219753,0.11880991,0.2182439,0.1678219,0.020687938,0.38577646,-0.09273918,-0.63697445,0.20661439,-0.099442914,-0.23113619,-0.49052972,-0.012846053,0.9454494,-0.6085183,0.62600136,0.55257076,0.17734753,0.19019549,-0.6035604,-0.29460528,0.120189354,-0.26192778,0.6272658,0.19061872,-0.67448705,0.46988553,0.35743824,0.014203429,-0.77299446,0.5573377,-0.0997062,0.12545927,0.14592847,0.43138072,0.04539915,-0.020298103,-0.23671879,0.24384898,-0.47221628,0.32799795,0.47457367,0.041512344,0.30715436,-0.24814898,-0.32670137,-0.66136384,-0.32047743,-0.5985938,-0.24672024,-0.017102746,-0.056412704,0.018256346,-0.02261273,0.3358445,0.31652334,-0.5759372,0.17678162,-0.18652418,-0.4101558,0.24340893,0.53902984,0.40304178,-0.39512655,0.558217,0.09144003,0.19262491,-0.34713304,0.0121933725,0.39754993,0.2785063,0.37362406,-0.28826106,0.116968796,0.07398586,0.83587384,0.17147948,0.39322215,0.23839289,-0.3769961,0.24291007,0.2489633,0.3855572,-0.22758542,6.533586e-06,0.16976312,0.035193913,0.21021408,0.33217955,0.16052581,0.4202673,0.000120833516,-0.06274707,0.15051256,0.096132085,-0.080018476,-1.182618,0.4450793,0.14117338,0.6557516,0.48709407,-0.030852538,0.23377217,0.3591221,-0.2835758,0.027517276,0.22789611,-0.04343835,-0.38727424,0.57007015,-0.6484818,0.39633295,-0.31655267,0.07038765,0.20644814,0.15572777,0.5486998,0.78045595,0.05691071,0.087429896,-0.015088324,-0.17003304,0.0021923094,-0.41378826,0.051695272,-0.4567194,-0.34533486,0.7570865,0.5227022,0.44338036,-0.3282455,-0.047684684,0.20654596,-0.17175242,0.18721996,-0.1843244,-0.07528941,0.0058409134,-0.7005654,-0.17760047,0.5416585,0.01024889,0.08383051,0.15962985,-0.57095087,0.3378434,-0.19566797,0.12542973,-0.032156408,-0.8131682,-0.12901093,-0.56037104,-0.44295093,0.09150473,-0.3450632,0.16589154,0.22068824,-0.05986949,-0.19526751,0.2691271,-0.034683466,0.9607064,0.1264935,-0.29561588,-0.20014682,0.05706402,0.41963407,-0.34958777,0.044361897,-0.405302,0.2336161,-0.74121124,0.3855023,-0.1953461,-0.14915001,0.41152418,-0.16779166,-0.040167835,0.43327788,-0.2957551,-0.07165844,0.22981215,-0.08148416,-0.20545787,-0.072489224,-0.3843687,0.2574135,-0.032001194,0.09870443,0.030075233,-0.10494753,-0.037745878,0.36798456,0.31191042,0.09760956,0.3970817,0.008424094,-0.2830816,0.06998605,0.05589565,0.44866636,0.24413869,-0.15506957,-0.1432913,-0.41337878,-0.2721281,0.5966286,-0.25313517,0.13090411,0.019834403,-0.26778513,0.7714571,0.20336929,1.1758106,0.16700941,-0.3464409,0.147307,0.512851,-0.009063661,0.077321015,-0.23076011,0.7643105,0.40723854,-0.21770789,-0.03770972,-0.49448887,-0.36483228,0.22468734,-0.29676548,-0.14324456,-0.23566605,-0.79832333,-0.25564334,0.13796549,0.1912462,-0.14220378,-0.06836692,-0.025507988,0.09607407,0.13394627,0.4353857,-0.7010714,0.07388078,0.41704544,0.29565716,-0.03440826,0.08306158,-0.29499963,0.46774995,-0.8299333,0.19764203,-0.60000724,0.010819742,0.013369535,-0.24488783,0.15676333,0.094837666,0.334779,-0.35552672,-0.3843794,-0.3457939,0.60806364,0.3152296,0.1856826,0.7131535,-0.33679694,-0.08578864,0.16902381,0.48902336,1.028891,-0.25932133,0.1534634,0.35135671,-0.2950056,-0.43349984,0.14630824,-0.5174622,0.08249307,0.0012839391,-0.4082134,-0.51368034,0.33855137,0.24163121,-0.02479478,-0.0064027216,-0.60073656,0.054833375,0.37425238,-0.18908869,-0.27509165,-0.23945493,0.25952613,0.6252193,-0.35181937,-0.4412482,-0.017023334,0.39121792,-0.34626552,-0.55297184,0.14457665,-0.43691298,0.3921003,0.073070064,-0.253008,-0.049511734,0.10052848,-0.42139813,0.0040720794,0.2319799,-0.3030569,0.072828986,-0.21121255,-0.0021311687,0.94132555,0.054355953,0.28413978,-0.56756204,-0.5462646,-0.80564594,-0.3202004,0.20762847,0.27418366,-0.07675699,-0.5012069,-0.019274367,-0.1980057,0.017715545,0.24211465,-0.42842886,0.44487378,0.23896892,0.41114527,-0.13117944,-0.8227599,0.042630848,0.11744593,-0.2490008,-0.3363952,0.4468706,-0.20315269,0.69402534,0.022425005,0.055922296,-0.14239891,-0.6601035,0.41487628,-0.3367074,-0.08846006,-0.7227141,-0.056887884,799 -741,0.5468374,-0.009602492,-0.5603284,-0.28547338,-0.23318177,0.06904054,-0.31917825,0.31087846,0.20772217,-0.5760129,-0.17598918,0.001589257,-0.100754976,0.16193959,-0.31151026,-0.76078707,0.17861854,0.09914715,-0.44147184,0.63612854,-0.4525105,0.43421495,0.1567723,0.2522874,0.25539136,0.15632841,0.27588543,-0.07931893,-0.22860476,-0.37975115,0.03387238,-0.046159565,-0.6711273,0.2711499,-0.25983796,-0.13769688,-0.020324528,-0.55373347,-0.32889602,-0.7819554,0.3552825,-0.7959652,0.6400093,0.015979894,-0.23928334,0.2958126,0.337596,0.23606199,0.04965795,0.0619046,0.17008305,-0.09596865,-0.28488043,-0.104285,-0.42155376,-0.39298975,-0.82076675,0.038339507,-0.6529364,0.029003529,-0.31059313,0.29717126,-0.34611064,-0.15706207,-0.14801694,0.5286761,-0.35688967,0.046868004,0.055491544,0.028063565,0.30102444,-0.6378475,-0.32834467,-0.06195951,0.3305561,-0.32204077,-0.10360934,0.30821976,0.2637888,0.480828,0.060169164,-0.30927187,-0.25104278,-0.1819372,0.25209856,0.5128279,0.022810737,-0.30177543,-0.15942205,-0.21467653,0.36202976,0.2904931,0.21242197,-0.18778324,-0.12973088,-0.12715806,-0.27965823,0.5209634,0.41975886,-0.3224066,-0.16625813,0.54404104,0.41022772,0.281146,-0.13070749,0.2075185,-0.13238406,-0.6491565,-0.1254723,0.3441974,-0.22124921,0.4506814,-0.25113964,0.24731986,0.6405105,-0.121917926,-0.08314382,0.14358285,0.040990133,-0.032047752,-0.14278007,-0.15432344,0.22249818,-0.5257585,0.20567688,-0.3020535,0.67876613,0.03835785,-0.80987275,0.16616377,-0.639842,0.056526586,0.12207591,0.5096048,0.65899175,0.3984227,0.23446769,0.691059,-0.34986085,-0.03590596,-0.027524458,-0.33154508,-0.049717344,-0.15970686,0.21382998,-0.45804945,-0.16314651,0.05930887,-0.1186722,-0.07359721,0.72973907,-0.3534649,-0.12510316,0.11564353,0.5106331,-0.2599447,-0.06789002,0.9104215,0.97340715,1.2651119,0.17141898,1.4737496,0.15634884,-0.1343891,-0.09074648,-0.08150565,-0.839219,0.34588817,0.39019173,-0.4304379,0.46871454,0.07791049,0.06827601,0.16930221,-0.45341396,-0.19312146,-0.10228468,0.4471462,-0.070041604,-0.19231789,-0.32672867,-0.38152137,0.060825944,0.0067782197,0.36652476,0.17945752,-0.18460923,0.37539703,0.13855997,1.1902137,-0.17369932,0.13655718,0.20179875,0.37325397,0.23199654,-0.08667207,-0.1962252,0.29002544,0.3580411,-0.06666444,-0.6052148,-0.28536737,-0.28295028,-0.27821207,-0.24919608,-0.42384827,-0.187828,-0.13734798,-0.23786177,-0.19273041,-0.22721638,-0.7052285,0.40217164,-2.5685222,-0.24148726,-0.23565385,0.30857372,-0.21164735,-0.3558211,-0.23635341,-0.5779251,0.67226326,0.233662,0.45613664,-0.47621992,0.33930463,0.6096357,-0.5225752,-0.141291,-0.6602595,-0.12009927,-0.1387639,0.26501992,-0.11371271,-0.11553779,-0.041397996,0.21046308,0.43668634,0.17062455,0.10743619,0.4770544,0.51851094,-0.03860718,0.5529897,-0.01946774,0.5374009,-0.26024482,-0.121434376,0.3890837,-0.5189876,0.3377112,-0.32237768,0.04705419,0.59455776,-0.6615355,-0.70112133,-0.6169408,-0.5063129,1.2667868,-0.15294585,-0.37636426,0.08987819,-0.13670784,-0.30354664,0.053219117,0.5598821,-0.3422814,-0.030962292,-0.69440293,-0.1357677,-0.15335754,0.19808072,-0.16631398,0.28979436,-0.5856124,0.68263465,-0.061590478,0.49581653,0.10867742,0.21196507,-0.49206433,-0.5671971,0.16891135,0.9326879,0.4163616,0.1226129,-0.25693002,-0.082841344,-0.38345754,-0.26205808,0.034172907,0.57473874,0.6079232,-0.1444328,0.23108509,0.33465847,0.018801836,0.20131384,-0.110816605,-0.29195744,-0.30816513,-0.12350552,0.6812782,0.5558256,-0.027434628,0.31464925,-0.17219445,0.13450152,-0.2968221,-0.34754273,0.5491922,1.0310773,-0.14280818,-0.27055264,0.616029,0.46434948,-0.18671523,0.5524993,-0.46139616,-0.4604708,0.5664727,-0.11417078,-0.42681196,0.17987856,-0.3908238,0.025851231,-0.79357105,0.35161048,-0.3606195,-0.42409563,-0.2920246,-0.16570385,-2.5876389,0.10798114,-0.20900276,-0.09876024,-0.2751605,-0.19893345,0.12417109,-0.4524787,-0.8117365,0.16424164,-0.09579863,0.75548905,-0.18686152,0.09852226,-0.17812903,-0.35002697,-0.6044925,0.21304633,-5.731674e-05,0.5252702,-0.019660234,-0.15335491,0.1183646,-0.32687446,-0.40760815,-0.05155138,-0.45780718,-0.35186762,-0.12823358,-0.54778665,-0.40768117,0.63823044,-0.4633896,0.037299022,-0.26537684,-0.18539903,0.04855698,0.36910692,0.05907366,0.41359553,0.12015621,-0.04378197,-0.12899777,-0.26315227,0.5371071,0.05935975,0.21476497,0.48089406,-0.2375691,0.24650961,0.3211694,0.6609358,-0.1493604,1.0534972,0.18252674,0.0630509,0.27556208,-0.24634108,-0.2420618,-0.5977431,-0.13490838,0.12660542,-0.4259093,-0.46674177,-0.17301725,-0.3615538,-0.77117914,0.46100727,0.12857863,0.28213722,-0.1817756,0.14401773,0.24041088,-0.09756427,-0.06589209,0.06804585,-0.15809257,-0.30288374,-0.29473895,-0.7396322,-0.35271627,-0.078126416,0.9460309,-0.13853785,-0.092623636,0.16472703,-0.19808862,0.24860865,0.05652012,-0.0011152854,0.032707114,0.4470372,0.28778923,-0.71893764,0.49939442,-0.070784874,0.057102546,-0.46712893,0.121210165,0.7033347,-0.40828946,0.5633729,0.48080796,0.1467241,-0.3628691,-0.7181117,-0.057916768,-0.056224685,-0.25325114,0.4032941,0.30602384,-0.789327,0.6197806,-0.032501336,-0.21904233,-0.9072628,0.5956801,0.01609726,-0.05555636,-0.037146203,0.5676685,0.09152721,0.043720648,-0.14882363,0.3032664,-0.23163718,0.45299184,0.22109228,-0.034507222,0.47858122,-0.20993064,-0.25235194,-0.6709188,-0.077894285,-0.5177238,-0.40548304,0.04434612,-0.08677444,-0.07904072,0.2856654,-9.191953e-05,0.37855515,-0.37157074,0.19155894,-0.0066478206,-0.13744004,0.31441814,0.4036761,0.6410023,-0.4239254,0.7249264,0.097607665,0.03173039,-0.11580332,0.066024676,0.41320372,0.018671026,0.37935877,0.12227701,-0.10853347,0.12732898,0.6789378,0.19145547,0.34015495,0.30534142,-0.25147673,0.25995126,0.09618243,0.355597,-0.16459192,-0.6224515,-0.0682856,-0.2599016,-0.0018762648,0.5221256,0.023050813,0.23424342,-0.16014808,-0.2517222,0.010519066,0.0058508837,-0.29306737,-1.5452322,0.33693093,0.18065692,0.7920855,0.5999865,-0.07010264,0.1867356,0.58528113,-0.19015358,-0.041149028,0.3073289,0.041449137,-0.30667922,0.5714093,-0.5266527,0.42288134,-0.08948509,-0.060201235,-0.041411776,-0.010347921,0.426005,0.97242767,-0.20071587,0.03506648,-0.0799992,-0.32740995,0.32330927,-0.3540862,0.16422462,-0.37154734,-0.29494306,0.60219574,0.3268898,0.3342767,-0.186217,0.06385289,0.036324546,-0.25757113,0.053856656,0.09166216,-0.11807284,-0.17296004,-0.5124446,-0.22989902,0.5138311,0.1973492,0.13748412,0.2608717,-0.172503,0.1333521,-0.1457103,0.18338571,-0.16419671,-0.9790277,-0.24508408,-0.3656245,-0.33213583,0.037049726,-0.33592921,0.28580636,0.31683162,-0.014946909,-0.15793177,0.24899714,0.39263132,0.569749,-0.06933487,-0.23126651,-0.16001175,0.05991474,0.20311746,-0.30567738,0.13234507,-0.1482186,0.24214743,-0.5667597,0.36011967,-0.19169745,-0.27763045,-0.0103153335,-0.15420453,-0.12005333,0.48457688,-0.2535599,-0.016464842,-0.102449775,-0.18864146,-0.01289696,-0.08985134,-0.026663532,0.12331417,0.28174752,-0.23141244,-0.18764785,-0.008762479,0.006800789,0.1565517,0.016945275,0.2931414,0.40303707,0.20450959,-0.4852355,0.13517173,0.18663652,0.5844912,0.07705314,-0.081351355,-0.17564593,-0.2746744,-0.2536711,0.6084255,-0.1133049,0.07493161,0.08331618,-0.2530111,0.6679714,0.29415208,1.0142059,0.12286265,-0.34867853,0.0061867097,0.6127897,-0.13607608,-0.0621192,-0.28968093,0.9814163,0.3319759,-0.20202413,-0.05619856,-0.4558008,0.029740501,0.030301442,-0.32600576,-0.18539436,-0.034425803,-0.44002655,-0.21011546,0.1259297,0.15228656,-0.06023618,-0.1401466,-0.15516385,0.37083608,0.2642568,0.5477336,-0.6700853,-0.1131055,0.38035664,0.15580234,0.09675254,0.19768961,-0.22898594,0.27301285,-0.6516977,0.22039482,-0.026966158,0.2895339,-0.26512992,-0.3709744,0.28424397,0.13011304,0.5450997,-0.26500207,-0.5146142,-0.15420192,0.40983617,0.15394685,0.19551224,0.7212768,-0.23130395,0.02478645,-0.06750716,0.6099864,1.1440654,0.012029366,0.24081524,0.30861202,-0.3770925,-0.66030055,0.18631443,-0.51895106,0.25045228,-0.09515742,-0.45820287,-0.31955698,0.08094036,0.16328067,0.24682131,0.10423827,-0.6766423,-0.4027594,0.43581718,-0.099049,-0.21861185,-0.3166138,-0.20127524,0.52476937,-0.16832961,-0.3979384,0.12707151,0.069712915,-0.29340693,-0.63202477,-0.005327555,-0.2640506,0.34343246,0.0759044,-0.25253984,-0.03906373,0.019956836,-0.5022976,0.18605992,0.21986508,-0.2612511,-0.120027505,-0.38248903,-0.07139384,0.7478593,-0.28411385,0.2054726,-0.3598321,-0.5027088,-0.8191426,-0.24972725,0.1577416,-0.059337754,-0.045775954,-0.52583563,-0.18089245,-0.16501552,0.06631832,0.1591528,-0.41020072,0.32936206,0.23821022,0.39125046,-0.1574457,-0.9264883,0.21710362,0.10176308,-0.27589983,-0.46010515,0.5238792,0.0017571037,0.5342032,0.18977188,-0.07529907,0.039480966,-0.59359306,0.37608343,0.008866709,0.060562313,-0.5854555,0.25043243,808 -742,0.40474924,-0.3958546,-0.42288283,-0.18337648,-0.0515334,0.02660623,0.030511063,0.69505507,0.21536987,-0.5475938,-0.2512843,-0.22499345,0.033657655,0.44400626,-0.13510524,-0.5918036,-0.094062194,0.22634807,-0.4118027,0.46734828,-0.36523658,0.17039007,0.0036289578,0.49306935,0.25657368,0.20671812,0.122399405,-0.08670917,0.043548163,-0.06499512,-0.13941884,0.16084577,-0.4634666,0.1632467,-0.08315876,-0.2710071,-0.0069397045,-0.46470267,-0.45779037,-0.74749416,0.41255176,-1.0943034,0.5577992,0.056298368,-0.30361617,0.28424093,0.097373575,0.38459045,-0.45248604,-0.07464469,0.23562472,0.045077622,-0.015101469,-0.16110253,0.011742995,-0.47617948,-0.58521324,-0.06747721,-0.18471195,-0.17572564,-0.19010808,0.07256147,-0.37531838,0.08083714,-0.0739456,0.5051103,-0.5123885,0.0956365,0.360988,-0.25481227,0.4117152,-0.57320017,-0.24377885,-0.1121318,0.23876174,0.014124405,-0.20343259,0.32970503,0.20003693,0.4525476,0.0044182814,-0.21007587,-0.11845554,0.006977402,0.10830165,0.36942562,-0.1079183,-0.51329154,-0.036664084,0.022392621,0.219653,0.256216,0.1452639,-0.25406477,-0.09493332,0.056380685,-0.16796695,0.21631405,0.5429301,-0.17729671,-0.26620194,0.4271112,0.74042237,0.070384115,-0.07446548,0.04140332,0.043050863,-0.513735,-0.15346292,-0.1012436,-0.4095969,0.56918365,-0.18982564,0.2999365,0.7844106,-0.19119486,0.07500253,-0.1426133,0.043245777,-0.38344806,-0.45366746,-0.37076208,0.35712975,-0.3377535,0.23193488,-0.20620301,0.77942395,0.2962926,-0.60105836,0.38424838,-0.48001114,0.23099194,-0.23285216,0.57851696,0.64236546,0.41482022,0.42652327,0.8577441,-0.6688928,0.07435266,-0.001847501,-0.3900933,0.12783621,-0.16228148,0.05093141,-0.5386419,0.001113534,0.054196317,-0.11966408,-0.032209203,0.32763296,-0.6368821,-0.081842974,0.07505241,0.9448734,-0.31064886,0.05140509,0.70078945,1.0326568,0.92573607,0.0027839197,1.2011693,0.45399162,-0.3544594,0.36563018,-0.3492273,-0.7854963,0.2827485,0.513173,-0.12592512,0.3304126,0.07221901,-0.08427076,0.51168805,-0.5007112,0.15229356,-0.25602332,0.25349215,0.026707767,-0.19686565,-0.5399064,-0.12462597,-0.12620504,-0.05909055,0.1187472,0.2326768,-0.20867392,0.4332255,-0.04082988,1.934891,-0.10210621,0.16753854,0.11951665,0.44698033,0.07860184,-0.18271743,-0.09753154,0.42360777,0.6402372,0.16916166,-0.64685845,0.2019038,-0.30351874,-0.54518455,-0.15785143,-0.38664988,0.13296773,-0.20337678,-0.24559747,-0.10270949,-0.15161355,-0.316816,0.3378333,-2.7450328,-0.26639974,-0.30947334,0.45804593,-0.4318497,-0.18492797,-0.0027712355,-0.42907414,0.4634557,0.4023318,0.54015416,-0.7214791,0.34746742,0.4088855,-0.6133379,-0.12829942,-0.6286872,-0.019608919,-0.028074585,0.36865345,0.0640309,-0.0021374042,-0.037786093,0.10098116,0.3779184,0.07076992,0.12479127,0.26295528,0.44574553,-0.047977254,0.54596555,-0.12359504,0.566838,-0.34518418,-0.074455515,0.3350485,-0.34583682,0.2597292,-0.16355468,0.050992027,0.47287938,-0.37821823,-0.7144743,-0.72389036,-0.27249372,1.1377046,-0.37514284,-0.39632687,0.1551889,-0.32386845,-0.101936154,-0.118977994,0.42554012,-0.17080171,-0.07122581,-0.8607714,0.049503967,-0.112216674,0.17594407,-0.02916765,-0.119931735,-0.4493507,0.7404632,-0.09963496,0.6306373,0.3071946,0.1313112,-0.17966476,-0.34844002,0.054594297,0.82480013,0.35938895,0.017507078,-0.04188512,-0.15104681,-0.38829106,-0.078966185,0.13360557,0.5121164,0.7042029,-0.095459096,0.056884393,0.31596088,-0.10002769,-0.05015129,-0.16582456,-0.28160527,-0.15154468,0.022553355,0.519846,0.70664936,-0.32539448,0.3639263,-0.2517385,0.32370642,0.02764688,-0.50503963,0.5537887,1.0042832,-0.20429724,-0.24969569,0.64324963,0.40909582,-0.37425563,0.37086198,-0.65299916,-0.15048221,0.58321625,-0.17350191,-0.44842437,0.08318831,-0.1756152,0.19502321,-0.9636785,0.25207216,-0.17984797,-0.4835222,-0.6611738,-0.16458867,-3.119574,0.1543307,-0.41402858,-0.18489577,-0.11793689,-0.145821,0.22028612,-0.7443994,-0.5630322,0.22990233,0.08740734,0.6031686,0.034114398,0.1908097,-0.27284425,-0.078804806,-0.2617572,0.07299784,0.09278529,0.29157722,0.11923076,-0.569118,0.010970657,0.16304687,-0.51526093,0.11064082,-0.6840887,-0.44709137,-0.21195021,-0.61111635,-0.2686516,0.6025905,-0.120243736,-0.042145923,-0.12178362,0.07224259,-0.20795427,0.20344298,0.012632793,0.20256445,0.004178542,-0.084273465,0.061516207,-0.30640623,0.31281155,0.06834254,0.36132213,0.10130199,-0.20225081,0.15506122,0.5531749,0.6130248,-0.07960308,0.6334239,0.5477032,-0.09502257,0.23692761,-0.22933343,-0.2596493,-0.5927694,-0.39649498,0.046721533,-0.4181161,-0.5207452,-0.0037590677,-0.45204633,-0.8190595,0.51882863,0.11072337,0.26993242,-0.0012855896,0.15726727,0.6812292,-0.19879624,-0.030422641,0.035037298,-0.20383777,-0.6767789,-0.26368916,-0.6985217,-0.4068163,0.3317613,1.0796294,-0.23125678,0.0968666,-0.036404986,-0.38761073,0.093446806,0.11129283,-0.22960685,0.03402158,0.35919926,-0.13889949,-0.6575908,0.50297034,-0.013408652,-0.14891686,-0.70246655,0.2837293,0.57295555,-0.62870324,0.7361035,0.15750544,-0.07824635,-0.24585113,-0.48422092,-0.29862335,-0.17664917,-0.20525402,0.41414374,0.12931064,-0.54442424,0.31316298,0.49443606,-0.19217756,-0.6880801,0.4761057,-0.20454161,-0.32553148,-0.09186555,0.20473348,0.06456899,-0.032620165,-0.22442804,0.21999392,-0.45119736,0.32712018,0.18397504,-0.13625157,0.40230793,-0.084194556,0.087513246,-0.8834479,-0.026409227,-0.6190008,-0.22390677,0.3214924,0.14918564,0.07595149,0.11028618,0.10881799,0.36368588,-0.1567912,0.05153151,-0.0038483785,-0.3334843,0.37594885,0.42893556,0.31517428,-0.5521616,0.5981376,0.037844874,-0.020041283,-0.025610153,0.027362052,0.4557344,0.21415713,0.5013033,-0.1405681,-0.27126655,0.40202242,0.726454,0.09349736,0.534644,0.14213122,-0.09531144,0.25569546,0.10705478,0.16898078,-0.03898029,-0.6281896,0.20742115,-0.17896914,0.16464084,0.44851524,0.317248,0.3169304,-0.021459414,-0.44908693,-0.04915174,0.15548143,0.013964415,-1.252076,0.43430254,0.15107603,0.89694023,0.4070897,-0.06913927,-0.095868096,0.7686039,-0.10667809,0.072809376,0.34574032,-0.16870168,-0.5373513,0.5960632,-0.7551044,0.37150776,0.029777873,0.049811747,0.012292147,0.1317985,0.3335371,0.61267096,-0.18410851,0.013390309,-0.107324906,-0.34165472,0.2993789,-0.5056656,-0.0012997779,-0.65787435,-0.3634155,0.43850997,0.62578666,0.43037355,-0.18652748,0.025735948,0.08977527,-0.057007156,0.23008886,0.11149576,0.0030850081,0.14772387,-0.79598373,-0.2784806,0.44090572,0.034502897,0.28856087,-0.07704818,-0.34298193,0.33517164,-0.29498422,-0.05703429,0.015891047,-0.72744244,-0.038743414,-0.22205855,-0.37267402,0.51095974,0.01948392,0.24597715,0.1755525,0.0395699,-0.14428808,0.18211463,-0.14494917,1.0902848,0.08135792,-0.26601574,-0.5490174,0.1673,0.12670615,-0.186542,0.11714848,-0.424947,-0.10521289,-0.4786641,0.6187741,0.12713298,-0.3925524,0.15040144,-0.2941093,-0.04017299,0.7339107,-0.2091808,-0.12256912,-0.18541394,-0.34194645,-0.27010676,-0.27036723,-0.13738748,0.31423473,0.15991813,0.26694348,-0.06943853,-0.03152733,-0.22244498,0.6644527,0.12611046,0.35293347,0.41756102,-0.11778879,-0.19900206,-0.31660637,0.22639753,0.38871306,0.10319422,-0.3025475,-0.22738549,-0.66781557,-0.40835094,0.060439523,-0.11079518,0.55790794,-0.0026282186,-0.16402476,0.73156065,-0.0065238248,1.2692928,0.01701753,-0.28257135,-0.036049053,0.6870368,0.19913766,-0.018641792,-0.28657353,0.8972835,0.64991343,-0.025176821,-0.052760545,-0.44814748,-0.11140775,0.3436306,-0.23474891,-0.18041764,-0.043284018,-0.74456364,-0.37574452,0.14801186,0.29950303,0.38666108,-0.011065213,0.052938085,0.21713123,-0.117122665,0.46021363,-0.3675755,-0.25572497,0.28944653,0.21735671,-0.07207355,0.034444265,-0.48610482,0.3975727,-0.50171,0.18248683,-0.26510498,0.13387631,-0.14282657,-0.33685714,0.1908043,-0.044667576,0.34636414,-0.41983706,-0.45665535,-0.06789226,0.66337514,0.30953223,0.024261286,0.6328884,-0.31009957,-0.02248956,0.1998482,0.5892288,1.029004,-0.28640038,0.15548757,0.41122335,-0.5529193,-0.75302655,0.4535133,-0.05829924,0.29250443,0.03169928,-0.23961376,-0.56502044,0.37721047,0.13232976,-0.2824825,0.05119485,-0.5578964,-0.17440979,0.42442137,-0.30986023,-0.12782334,-0.3962817,0.12912777,0.39560035,-0.24580605,-0.3730881,0.18071839,0.22207697,-0.14158237,-0.515514,-0.3040008,-0.4868198,0.33162647,-0.014638303,-0.44542202,-0.08715105,-0.056242876,-0.44435006,0.23386247,-0.1096241,-0.35014072,0.11523015,-0.33389062,-0.1645191,0.904144,-0.06725271,0.03353373,-0.74396646,-0.12879127,-0.87870795,-0.24513958,0.5926438,-0.010797159,0.026120892,-0.5964635,-0.018973626,-0.032662123,0.032052256,-0.28721306,-0.35401806,0.37122884,0.15685152,0.51903194,-0.037626456,-0.8234815,0.25977653,0.09892889,-0.20981234,-0.66486037,0.6354484,-0.048161425,0.86338055,-0.08763549,0.19897042,0.2481659,-0.45352015,-0.14896037,-0.2731301,-0.37758186,-0.6213121,0.0462063,811 -743,0.51466024,-0.078416824,-0.40440667,-0.13466908,-0.27709866,0.046154834,-0.18316779,0.66535884,0.25702536,-0.45838314,-0.07236874,0.09400467,0.07748172,0.48180962,-0.27216738,-0.6357743,0.28193188,0.1687348,-0.4881835,0.75222516,-0.42305756,0.2625197,-0.036332212,0.3062923,0.20291585,0.26149884,0.18860322,-0.04429467,-0.22501372,-0.14217892,0.12552714,0.2386488,-0.4205254,0.24794716,-0.07305523,-0.3134368,-0.12625097,-0.34268925,-0.38474685,-0.9033077,0.24300912,-0.78683937,0.4737717,0.0152843455,-0.38511163,0.2625888,0.30865067,0.25218642,-0.08897778,-0.18005382,0.15873638,-0.058514796,-0.23311652,-0.25455025,-0.07429615,-0.7289795,-0.5583225,-0.006276719,-0.55672514,-0.1529453,-0.28400844,0.15199511,-0.28842342,-0.15261282,-0.015141396,0.45825502,-0.45004955,-0.074961975,0.31607512,0.025554959,0.29222474,-0.76466346,-0.15950267,-0.119389646,0.38062257,-0.029603729,-0.28013104,0.38746879,0.38589635,0.4335915,-0.07780576,-0.18139234,-0.29464504,-0.059569113,0.09510735,0.349115,-0.307807,-0.6349977,-0.09305627,0.014014253,0.32130036,0.028806873,0.32673818,0.03558991,-0.13736436,0.08906564,-0.30774465,0.5367069,0.49990955,-0.26585263,-0.17276178,0.33811378,0.44406635,0.21794449,-0.35256666,-0.006663249,-0.03373614,-0.6251119,-0.12023988,-0.035016343,-0.021550534,0.5166277,-0.2892589,0.20694147,0.67575,-0.16023342,0.018431537,0.2785071,0.111356564,-0.07336455,-0.10818216,-0.14425696,0.22422518,-0.48810944,0.014702723,-0.27032602,0.7070558,0.11135765,-0.62974507,0.29668847,-0.5129122,0.08480306,-0.15139082,0.48686793,0.8019229,0.3776579,0.24500586,0.66069764,-0.12525544,0.030524515,0.0021578441,-0.33712453,0.25840074,-0.3370372,0.13685432,-0.5635812,-0.015673308,0.13033298,-0.1407698,-0.0066369474,0.42935893,-0.6008918,-0.36035717,0.20917346,0.7522692,-0.23911865,-0.26596186,0.8991943,1.0440695,0.8989824,0.074063726,1.0821992,0.09504734,-0.12545766,0.16980012,-0.15569021,-0.5041292,0.37393263,0.23914154,-0.23161481,0.36622497,0.02722146,-0.12062572,0.3708873,-0.2782981,-0.11777597,-0.23955372,0.3043595,-0.02018079,-0.43341506,-0.48398036,-0.3246744,-0.19084947,0.025740776,0.22796851,0.27713442,-0.06660095,0.34370103,-0.16298914,1.3304163,-0.10053937,-0.15373044,0.02878317,0.55688643,0.21062818,-0.14608857,0.15958157,0.2366084,0.2696743,0.17521164,-0.5227562,0.17872092,-0.24516813,-0.64207804,-0.07460597,-0.44500133,-0.1387044,-0.07177176,-0.49135897,-0.0285287,-0.14325118,-0.20657147,0.411112,-2.8259523,-0.22776367,-0.07937692,0.30414522,-0.16740799,-0.30205962,-0.1702459,-0.4347896,0.4590223,0.35959175,0.5070312,-0.66299087,0.4097594,0.3627421,-0.6418549,0.017859317,-0.6598846,-0.049507353,-0.12524891,0.4610222,0.10475501,0.046299413,0.39925134,0.3690149,0.5004281,0.046168227,0.15494624,0.19706884,0.33276036,-0.2547739,0.41781557,-0.086986065,0.5027737,-0.19558781,-0.22518362,0.26186645,-0.46377712,0.24343626,-0.14719234,0.0663367,0.46629518,-0.35214582,-1.01656,-0.5302993,-0.017621366,1.0998199,0.0012146464,-0.5141642,0.12117383,-0.48819005,-0.20945089,0.06228159,0.51148504,-0.031810503,0.06048423,-0.81690156,0.013074527,-0.17980789,-0.16343683,-0.07189092,-0.0025823105,-0.46285284,0.79426235,0.03559187,0.4207594,0.027321156,0.1306276,-0.5169996,-0.5996959,-0.079110466,0.6467103,0.47121128,0.083055034,-0.13958886,-0.19917724,-0.48549572,-0.036837693,0.16556086,0.84080017,0.56601864,-0.06821267,0.08096317,0.2310071,-0.11717299,0.09635333,-0.057671245,-0.35022444,-0.076255545,0.08184653,0.56481564,0.64440733,-0.2157533,0.5433451,-0.08181871,0.31184483,-0.25586608,-0.52579725,0.54303277,0.87505186,-0.2407723,-0.23992044,0.6259463,0.514673,-0.20697674,0.42731556,-0.5482617,-0.4175747,0.4772715,-0.026928421,-0.27092144,0.16195749,-0.3985306,0.073936954,-1.0772175,0.47399804,-0.50029165,-0.5437378,-0.57417285,0.012710929,-3.1116817,0.24766509,-0.28783134,-0.1692617,-0.3146715,-0.13438214,0.11394609,-0.7221469,-0.6125078,0.15650478,-0.01176638,0.804476,-0.18027584,0.04291431,-0.18219599,-0.3609842,-0.16742516,0.19962265,-0.0154963,0.54437315,-0.22367954,-0.39265424,0.016795125,-0.1629842,-0.40652338,0.11418009,-0.73626935,-0.6254684,-0.17465554,-0.4812614,-0.24834329,0.7129351,-0.29422855,0.062925674,-0.31193,0.024665007,-0.19661924,0.3808839,-0.0013542542,0.060933057,0.16829687,-0.035505656,0.10032464,-0.18912974,0.21779957,0.048696317,0.57597816,0.54476684,-0.15557688,0.41659415,0.7085421,0.6433814,-0.066519484,0.9290484,0.41643712,-0.08252597,0.2957651,-0.25130183,-0.13755837,-0.39552578,-0.34361458,0.01899391,-0.26698673,-0.33808038,-0.18413533,-0.46814096,-0.8245713,0.5266998,-0.052953463,0.14864646,-0.18066798,0.30746734,0.51788914,-0.13310535,0.038691465,-0.04661177,-0.19964449,-0.70061743,-0.18059376,-0.55130905,-0.35752964,0.042673144,0.87165654,-0.34275812,0.023668515,0.01511477,-0.16203536,-0.020118194,0.17998937,-0.072494775,-0.07118848,0.29898697,-0.20063135,-0.7322741,0.5386072,-0.3324827,-0.105005585,-0.34542635,0.3459547,0.52225083,-0.49612588,0.5659195,0.57040226,0.10485871,-0.18480578,-0.54954267,-0.15911902,0.04061175,-0.14197122,0.4544643,0.17108862,-0.9118381,0.54526705,0.35748965,-0.4086576,-0.63726515,0.72663075,0.05551823,-0.19322494,0.04293772,0.346146,0.26436916,0.04436717,-0.42340183,0.29308134,-0.5557863,0.18853474,0.12355567,0.07311051,0.33995593,-0.050337676,-0.214248,-0.7370128,-0.0054897116,-0.58314365,-0.30867583,0.06926289,0.042530205,0.1884341,0.10578334,0.16105604,0.30907297,-0.42697626,0.13585946,-0.12905413,-0.40285146,0.4302093,0.48423004,0.5473737,-0.540276,0.6184909,0.11475451,-0.053705037,0.0054783775,0.08411391,0.41360855,0.23252124,0.5870384,0.29206228,-0.03923904,0.09807498,0.8899137,0.19357315,0.42025533,0.07859883,-0.17224362,0.0051055597,-0.035548724,0.36185038,0.052433014,-0.4839687,-0.08808151,-0.3461726,0.19879802,0.44962013,0.10948761,0.18664867,0.10501059,-0.3872123,-0.0601343,0.13369799,0.0629934,-1.6178266,0.60774237,0.3990895,0.77891403,0.47452626,-0.122757144,-0.0060174465,0.78411335,-0.070099436,0.18381485,0.42143238,-0.013833074,-0.43531588,0.59554577,-0.87519634,0.4593695,-0.12380014,-0.061937526,-0.17770965,-0.012891307,0.29706377,0.8576424,-0.1744447,0.13625439,0.10242793,-0.48837978,0.21151437,-0.44816542,0.08887687,-0.45725292,-0.20669569,0.63495857,0.5641731,0.20366932,-0.19813612,0.12172763,0.17626065,-0.09269883,0.22381423,0.015234278,0.1990668,-0.21888238,-0.6601215,-0.14135653,0.44604918,-0.19388571,0.2515094,0.069863796,-0.077167615,0.28592667,-0.06274075,0.023048254,-0.08418059,-0.7634261,-0.02049123,-0.28859186,-0.3477292,0.6336654,-0.39865002,0.28791714,0.27466768,0.06252523,-0.2504784,0.28380674,-0.11046931,0.5173976,-0.20441426,-0.24619693,-0.2602639,0.09459896,0.22559644,-0.28204176,-0.05837468,-0.14019749,0.16702172,-0.4110351,0.44581664,-0.09965715,-0.24262816,-0.15782793,-0.034543082,0.107395165,0.3491968,-0.1606929,-0.123623185,-0.08654422,-0.059597544,-0.19660565,-0.13341388,0.033048175,0.32488808,0.34053266,-0.2428923,-0.20559001,-0.06527107,0.044607952,0.27870294,-0.14322357,0.39421278,0.4806271,0.26127613,-0.30434462,-0.037939865,0.46438405,0.49645784,0.049821276,-0.092495404,-0.44593626,-0.2846406,-0.41548255,0.12320049,-0.08073389,0.2925104,0.1761458,-0.12710355,0.6924591,0.014439211,1.2734733,0.069850974,-0.4088596,0.14943269,0.39509347,0.05811924,-0.14408289,-0.29432318,0.9559272,0.477068,-0.2050508,0.045065816,-0.48463124,0.09336869,0.36342797,-0.18863432,-0.20677081,0.023641655,-0.5785806,-0.31369656,0.3488448,0.28275087,0.079691775,-0.16302559,0.06448802,0.27833298,0.047883905,0.26430315,-0.5847243,-0.24276191,0.2390823,0.3508101,0.06299447,0.08248803,-0.46179405,0.36166456,-0.76349056,0.11490048,-0.26520842,0.2102111,-0.17987204,-0.45877331,0.17891158,-0.008794624,0.43698585,-0.23143044,-0.35925227,-0.14307944,0.3843388,0.20958713,0.08612331,0.42731446,-0.28388247,0.0055752993,0.16535307,0.5222185,0.98988986,-0.25994173,-0.09232697,0.23306936,-0.30793503,-0.9008946,0.3945759,-0.33219236,0.45572382,-0.11447334,-0.23771389,-0.7637098,0.33674657,0.39082366,0.18148944,-0.13107215,-0.5341224,-0.19949618,0.22234756,-0.3878493,-0.3059879,-0.38721767,0.13058554,0.5266043,-0.32297686,-0.25909603,0.0195181,0.3007968,-0.19645551,-0.5555858,0.022817511,-0.32754532,0.26622194,-0.004022667,-0.36981136,-0.21424708,-0.14254418,-0.4179851,0.544749,0.25127017,-0.28673953,0.19341399,-0.38871428,-0.021454912,0.7685115,-0.31633803,0.1496102,-0.48181117,-0.44006366,-0.69287765,-0.45614734,0.12389566,0.17154214,-0.06839407,-0.6343003,-0.08567299,0.07484689,-0.20266122,-0.10681101,-0.28804466,0.4690006,0.10958385,0.09685474,-0.048473835,-0.822469,0.20570675,0.21541896,-0.050323863,-0.5504245,0.3444945,-0.1631102,0.9319192,0.16266258,0.120506965,0.20413703,-0.2720075,-0.023984717,-0.058154687,-0.17650715,-0.61008286,0.013557563,823 -744,0.5566217,-0.2635126,-0.49485427,-0.15586366,-0.2256692,0.20638353,-0.24861643,0.47290632,0.1915056,-0.7781067,-0.3348341,-0.04185438,0.03676864,0.38677114,-0.23859875,-0.6555465,0.13861391,0.18379545,-0.46438164,0.40058264,-0.42657068,0.28724453,-0.04238665,0.3755245,-0.13462625,0.30360994,0.087647356,-0.07077542,-0.05090477,-0.18253945,-0.12828006,0.29729903,-0.62250775,0.2567587,-0.10532386,-0.30567604,0.14748342,-0.4588506,-0.28838885,-0.66037804,0.094546326,-0.9398051,0.5676394,-0.08477211,-0.32334745,0.08059858,-0.041791186,0.19636822,-0.28878802,0.13233986,-0.1938474,-0.18695985,-0.3117154,-0.2697921,-0.082704395,-0.41170385,-0.45078033,0.08851673,-0.49871746,-0.10656889,-0.23813684,0.144131,-0.28455865,0.080976,-0.101612695,0.51683414,-0.38387993,0.13163617,0.2651506,-0.25763017,0.069827534,-0.66826683,-0.1876387,-0.039004,0.34013432,-0.20435563,-0.3499511,0.0008634512,0.3592563,0.58905977,0.027178498,-0.115534425,-0.18579625,-0.12413417,0.13446528,0.54004025,-0.06518668,-0.53896356,-0.21296388,-0.028860606,0.27417699,0.15603465,0.22156113,-0.16224514,-0.13404891,0.013460983,-0.29069567,0.23537701,0.53699374,-0.40738875,-0.094770364,0.32471296,0.58119637,0.11450943,-0.025270987,0.17925797,0.0458401,-0.4736918,-0.19989358,0.021451276,-0.19858152,0.6127463,-0.12893388,0.3769057,0.48159486,-0.22313097,-0.01130702,0.17519471,0.058376793,-0.074554354,-0.35170886,-0.053347234,0.31621423,-0.39029413,0.011903529,-0.22361559,0.83082145,0.2606444,-0.6312121,0.248696,-0.4338497,-0.05718387,-0.13989276,0.6078871,0.5071786,0.48386523,0.196304,0.746365,-0.50113606,0.09953092,-0.2520619,-0.22933657,-0.17220767,-0.019740788,-0.089479536,-0.35452044,0.18625799,0.13036281,-0.04011834,0.037953623,0.3441297,-0.6165062,-0.030755801,0.11270972,0.65886045,-0.37490353,-0.22734293,0.949606,0.96527493,0.69829464,0.092756584,1.3088088,0.21447508,-0.10024753,0.029823853,-0.023312889,-0.65909153,0.33530352,0.43527353,0.2230251,0.3221424,0.24597289,-0.18730822,0.44539645,-0.2817102,-0.16240853,-0.19575068,0.23971483,0.07090005,-0.014214034,-0.6614648,-0.09673001,-0.08399598,-0.07859777,0.1100377,0.211944,-0.248814,0.4818155,0.08588651,1.3927001,-0.1355649,0.14162916,0.026881557,0.31448576,0.26744145,0.001733365,-0.108212985,0.43392244,0.3171673,0.05654835,-0.6582643,-0.00874544,-0.097327724,-0.57653755,-0.19168207,-0.29790804,-0.1193022,-0.17812599,-0.45675534,-0.09940266,-0.099786155,-0.31625035,0.52023757,-2.5453389,-0.32053906,-0.15766588,0.5993134,-0.32968113,-0.36611798,-0.16578865,-0.341816,0.3199643,0.3322123,0.4618696,-0.4791807,0.45399383,0.43954733,-0.4565266,-0.2681309,-0.65378314,0.10665818,-0.018443704,0.35131356,-0.0009329273,-0.3057509,-0.082824245,-0.13365014,0.59217834,-0.035958137,0.13884218,0.2999875,0.4037731,0.069400735,0.26721394,-0.00405252,0.6595964,-0.37263218,-0.23054272,0.3210888,-0.36092263,0.41003186,-0.06486655,0.19107498,0.44077793,-0.44456312,-0.78720284,-0.77765596,-0.2518087,1.2660611,-0.2502696,-0.4924586,0.13181043,-0.38702202,-0.33783847,-0.007872939,0.48645094,0.039555207,-0.050459918,-0.8090226,0.10252893,-0.113286614,0.23775145,-0.0034585595,-0.0045725843,-0.47008926,0.6637528,-0.18820015,0.5286001,0.2640722,0.3083477,0.046228684,-0.2430164,-0.08519965,1.1093314,0.40005928,0.29472664,-0.24490558,-0.2651959,-0.29951087,0.13891517,0.0538866,0.6480514,0.6655983,0.10307983,0.045903765,0.23336992,0.14387321,0.11369908,-0.2599798,-0.22459468,-0.17868087,0.12133147,0.6352286,0.43209442,-0.25489992,0.4022683,-0.14492081,0.294329,-0.24196829,-0.40151274,0.3973578,0.6893154,-0.3244998,-0.3368277,0.71557134,0.55417645,-0.44812503,0.37385994,-0.78169924,-0.41604668,0.45415694,-0.15346019,-0.3415601,0.23907876,-0.23605765,0.3641046,-0.97899556,0.3286462,-0.3551536,-0.60160327,-0.3824334,-0.119671665,-3.53809,0.34752178,-0.10341929,-0.14945401,-0.09498359,-0.3309023,0.21876425,-0.50435835,-0.49048138,0.24250712,0.007718011,0.70026237,-0.10328613,0.21099776,-0.21485966,-0.29881155,-0.051809423,0.11999829,0.10415467,0.21226004,-0.0937639,-0.41636986,0.08388043,-0.16322081,-0.27350342,0.10570867,-0.639266,-0.5342536,-0.11751747,-0.5128035,-0.16210732,0.56350017,-0.3654224,0.05984309,-0.330421,0.24235518,-0.18245292,0.31341532,-0.17523998,0.17369464,0.06401744,-0.08199635,-0.09700486,-0.32689983,0.24295601,0.085725784,0.12362926,0.4065997,-0.28045517,0.12110877,0.5904662,0.56784225,-0.01893696,0.8566757,0.35764027,-0.06825461,0.3900619,-0.13765998,-0.4325679,-0.4974263,-0.36713517,-0.01924345,-0.505942,-0.36696517,0.07820663,-0.35808834,-0.871468,0.6653645,0.034279548,0.08803756,0.068802394,0.60952175,0.6929022,-0.17413422,-0.11828954,-0.005665944,-0.22311541,-0.5256735,-0.34896007,-0.525701,-0.29534847,-0.0062620686,0.9535623,-0.36247987,0.060272194,0.018967362,-0.1258496,-0.064388424,0.24757624,0.13733095,-0.035086777,0.5000092,-0.08307788,-0.58625674,0.3291283,-0.17991854,-0.48601988,-0.4107048,0.19122536,0.72787505,-0.8916226,0.5400613,0.4879704,0.10477002,0.055080276,-0.46355835,-0.18516651,-0.0033884416,-0.20165235,0.44231078,0.30495232,-0.9720357,0.44441906,0.35916793,-0.08273174,-0.74897677,0.55431795,-0.07509542,-0.26742664,0.026555676,0.3960346,0.098282665,-0.063464135,-0.31923902,-0.053021945,-0.41746515,0.30063975,0.22757936,-0.054169975,0.44451317,-0.29614213,-0.16562718,-0.84982264,-0.22172864,-0.5885201,-0.14875793,0.29677776,0.031657454,0.09618175,0.16782239,0.20223786,0.5148031,-0.6222417,0.028798819,-0.10847517,-0.37670738,0.42522982,0.49693573,0.39972416,-0.31540903,0.63881904,0.01720671,0.004517327,-0.16954398,0.14365241,0.57944864,0.027609257,0.4527615,-0.06430632,-0.18455864,0.1111639,0.9645432,0.07136534,0.57993644,0.21162829,-0.020591088,0.2606933,0.116611116,0.2556023,-0.009907539,-0.47373435,0.06832287,-0.17257176,0.048800036,0.45117134,0.34166887,0.37365377,-0.013236174,-0.2502588,-0.029064242,0.14843625,0.09701676,-1.0285573,0.24830996,0.074348934,0.72468746,0.2332446,0.06669909,-0.03173273,0.50159657,-0.08858511,0.1695539,0.25110814,-0.083897844,-0.40075704,0.35465476,-0.629572,0.484801,-0.20712826,-0.052958146,0.13258402,-0.10066835,0.43977657,1.0659038,-0.14147006,0.04442088,0.07199863,-0.20337814,0.11795141,-0.52179563,-0.1099943,-0.66062826,-0.23905292,0.7117274,0.5280973,0.5703056,-0.26297882,-0.044570748,0.21530178,-0.03504815,0.18393418,0.062381074,0.13100998,0.015465514,-0.566713,-0.27443212,0.56549656,0.21490741,0.103904724,-0.003845169,-0.26234186,0.39728865,-0.10460997,-0.10404229,-0.013143379,-0.49584293,-0.06759943,-0.5162563,-0.6691956,0.24969314,0.03602815,0.10206222,0.2872221,0.024023114,-0.28695622,0.27136308,0.08292714,0.9013248,0.1147031,-0.27582258,-0.5978016,0.20385668,0.42831025,-0.2802014,-0.017113594,-0.31304285,0.16045786,-0.7148336,0.37020683,-0.09041062,-0.22534297,0.21864669,-0.090319544,0.009787897,0.504678,-0.15231544,-0.20005406,0.1239237,-0.23317719,-0.32327503,-0.21077463,-0.2563866,0.2018501,0.1548083,-0.13080344,-0.054969303,-0.1744278,-0.0040334463,0.24442601,0.23059545,0.18880223,0.2920372,0.032879554,-0.2903625,-0.03472646,0.21029614,0.62513196,-0.23164949,-0.1598161,-0.25656417,-0.6305864,-0.37305596,0.119787216,0.06428142,0.22941747,0.17424004,-0.14599861,0.79676396,-0.026863547,0.9510661,0.055061523,-0.40079692,-0.002133718,0.51001793,0.048723478,-0.07417788,-0.37186053,1.0673243,0.48182684,-0.017273473,-0.056263823,-0.4708064,-0.08939798,0.1449911,-0.28907716,-0.19585985,-0.15602805,-0.5981401,-0.32192534,0.1521762,0.23989399,0.1928704,-0.0067956275,0.25485784,0.31230348,0.016759321,0.14634529,-0.75674,-0.06624903,0.31575534,0.25138742,-0.057135556,0.021004558,-0.35556495,0.3594621,-0.78842914,0.055153828,-0.34092653,0.09235497,-0.16199623,-0.3598135,0.19995275,0.07563658,0.37149376,-0.41616657,-0.42679405,-0.24345915,0.44939998,0.08817257,0.0030686306,0.5278361,-0.14934161,-0.017980708,0.03004253,0.64366966,0.9709205,-0.21107318,0.2851897,0.49486822,-0.22589129,-0.5967289,0.15786941,-0.43593147,0.2422185,-0.07349871,-0.119590335,-0.537146,0.309093,0.3642168,-0.01773093,0.029872198,-0.6345402,-0.101254314,0.27366713,-0.33850157,-0.12760177,-0.07089487,0.13247989,0.6816922,-0.19238597,-0.19366394,0.076222904,0.4031328,-0.17016372,-0.5516449,-0.17253274,-0.38661894,0.26127273,0.06940938,-0.29537863,-0.1835405,-0.08974542,-0.37399134,-0.01343673,0.28732762,-0.24570164,0.05403187,-0.3923559,0.092416376,0.7557612,-0.1186376,0.3076762,-0.52809036,-0.4478078,-0.84990335,-0.16572572,0.36598316,0.13828422,0.12849398,-0.49939245,0.10255924,-0.08492219,-0.14179176,-0.082247734,-0.42317083,0.5803899,0.16549928,0.5272172,-0.08875212,-1.0101737,0.21354127,0.13765925,-0.42701003,-0.47680086,0.40193456,-0.13112146,0.9316264,0.053507593,0.07981859,0.211033,-0.7239663,0.01184412,-0.23452313,-0.043126877,-0.7739723,0.0059659663,826 -745,0.47876438,-0.18223588,-0.491929,-0.17565392,-0.31188107,-0.07411852,-0.09620139,0.62497747,0.27674004,-0.26010495,-0.22490153,-0.14693382,0.096032724,0.3839648,-0.23117307,-0.33327672,-0.13307662,0.1859641,-0.46939284,0.44386667,-0.32632515,0.061695613,-0.06598174,0.5686352,0.23664959,0.31094414,-0.07842199,0.008408317,-0.023050686,-0.1997194,0.02020981,0.33172593,-0.49259514,0.044216894,-0.2493833,-0.4146694,-0.053531434,-0.6547244,-0.5098577,-0.7063784,0.35582367,-0.8073339,0.43324152,0.17828688,-0.2549458,0.32110196,0.21652876,0.41037148,-0.2180298,-0.2592308,0.12920769,0.06680573,-0.01844655,-0.0976882,-0.098843575,-0.2692472,-0.6172676,-0.04399666,-0.24836224,-0.09583827,-0.20803906,0.11337865,-0.18883762,0.14247975,-0.061565913,0.49886197,-0.3784189,0.116191186,0.1649833,-0.16646224,0.22454913,-0.4587372,-0.19757873,-0.07305381,0.33578414,-0.18169403,-0.24830748,0.21005608,0.115357205,0.27580473,-0.2366301,-0.052348394,-0.44079462,-0.07018424,-0.109876975,0.5592538,-0.11341942,-0.46911204,-0.047242753,0.049075928,-0.055736475,0.21160811,0.09271462,-0.15600154,-0.10766317,-0.09332474,-0.12925868,0.47793722,0.45563275,-0.1618212,-0.16186619,0.25912002,0.49091795,0.2310902,-0.22576849,-0.1522115,0.07920348,-0.6082749,-0.077577226,-0.16749851,-0.20539245,0.43838686,-0.015922956,0.35577968,0.5521871,0.029828187,-0.08155257,0.08086646,0.064862475,-0.03919422,-0.38496664,-0.30343848,0.37455592,-0.24511649,0.31092688,0.047535457,0.5729333,0.04785545,-0.8385842,0.31373447,-0.641849,0.09457019,-0.16808377,0.36440057,0.52020437,0.24306844,0.46102226,0.6213861,-0.13845634,0.15097381,-0.020029591,-0.21851943,-0.04880541,-0.08794944,0.06545748,-0.52664024,-0.048575755,0.077852234,-0.2096338,0.29848355,0.2972174,-0.48875505,-0.11776691,0.43085402,0.8957323,-0.21190381,-0.05432489,0.74446553,1.0284207,0.826707,0.07048896,0.89500165,-0.047458664,-0.2154839,0.3293533,-0.25675717,-0.7598864,0.27685335,0.33325437,-0.057656087,0.25131983,0.06927525,0.076144174,0.37566808,-0.3867088,0.05654293,0.018864898,0.041065756,0.34403706,-0.02596752,-0.5570917,-0.28250453,-0.19976027,0.056670092,0.17843863,0.13961568,-0.19531171,0.24453679,-0.044854973,1.8465677,0.08574895,0.035220407,0.2210785,0.58496326,0.21039207,-0.27864102,-0.27500322,0.2666067,0.19554816,0.18972643,-0.41274807,0.30753165,-0.13219415,-0.44825464,-0.08015405,-0.36666277,-0.20871744,-0.07420189,-0.4603459,-0.09610136,-0.14686787,-0.3292876,0.40881914,-3.0735147,-0.06615431,-0.14164196,0.31041035,-0.12305359,-0.31626764,-0.09948989,-0.378604,0.30657285,0.45672962,0.47661364,-0.5917838,0.4334324,0.48881027,-0.6471173,0.014138148,-0.53016704,-0.19370529,0.12606512,0.28668317,0.055808607,0.049660917,-0.06378949,0.29505408,0.27609503,0.119269595,0.069453545,0.25585032,0.3546509,-0.0071099857,0.6079691,-0.1808336,0.34331134,-0.27398205,-0.21098372,0.24290334,-0.4316106,0.18520547,-0.1533967,0.14967933,0.51926076,-0.47602007,-1.054519,-0.5162376,0.018957766,1.0291007,-0.1627682,-0.24422564,0.33676305,-0.73041546,-0.34954083,-0.0014505937,0.5437694,-0.09399006,-0.07314278,-0.8318595,-0.17377223,-0.28167436,0.18584163,0.028332118,-0.16030478,-0.48140338,0.6533927,0.025969861,0.55381405,0.22681616,0.06663253,-0.3808257,-0.35531425,0.0005386082,0.6309481,0.18525685,0.15427707,-0.23665474,-0.24069048,-0.38621548,0.021966819,0.13162185,0.6331422,0.4666188,-0.051106386,0.13591234,0.19369599,-0.0069013974,-0.059366904,-0.11303636,-0.14201397,-0.096324354,-0.024527458,0.5340694,0.7748582,-0.19883603,0.44936305,-0.07602856,0.3584293,-0.17995748,-0.24641539,0.31091243,1.0018367,-0.015118608,-0.4051169,0.7419191,0.6614494,-0.34461233,0.33363116,-0.59960425,-0.13011494,0.22724144,-0.066231444,-0.3809066,0.1782659,-0.2856587,0.12830777,-0.84720516,0.082059115,-0.09559569,-0.39158243,-0.61987686,-0.1731128,-3.0388455,0.13189395,-0.111439556,-0.31272697,-0.050540812,-0.23531672,0.061700225,-0.6340214,-0.76942927,0.21411875,0.05958367,0.71808565,-0.11844084,0.18357159,-0.18238999,-0.18627483,-0.22249049,0.2766967,0.15439613,0.40221235,-0.04487046,-0.50884575,-0.32817265,-0.05272991,-0.38413733,0.10465522,-0.6552613,-0.35733965,-0.0660143,-0.6028208,-0.08872637,0.5645295,-0.27790004,0.02044493,-0.16578147,0.011798041,-0.16620973,0.2136953,0.040405147,0.06845965,0.08381482,0.02266955,0.09218777,-0.22703703,0.41151127,-0.051527016,0.3971554,0.21350288,0.009499247,0.2817387,0.50739765,0.653397,-0.14653759,0.88372624,0.5197557,-0.0221547,0.13283649,-0.21835779,-0.22910342,-0.3791497,-0.12598255,0.020799749,-0.32934254,-0.32027707,-0.013380032,-0.43557295,-0.7030445,0.58808047,-0.06301687,-0.093462355,0.16897112,0.16792573,0.6049789,-0.2897222,-0.016397094,0.044695977,-0.06378116,-0.60798717,-0.2989526,-0.4263386,-0.33084407,-0.062303882,1.1195387,-0.22642271,0.032790657,0.11099616,-0.33602735,0.0013773653,0.275956,0.007985206,0.15771297,0.47220188,-0.06278188,-0.5131545,0.4680635,-0.32632974,-0.2619951,-0.51515836,0.19489346,0.31965834,-0.5514758,0.60409504,0.28049538,0.15339053,-0.28171894,-0.4699302,-0.29117352,-0.059645988,-0.13832761,0.43049464,0.3671091,-0.7836095,0.23360273,0.2559651,-0.08701824,-0.8059698,0.60377604,-0.08973764,-0.45278805,-0.1556743,0.23423216,0.051698063,-0.014012878,-0.101757124,0.1545905,-0.11392975,0.13954058,0.15448783,-0.052898057,0.23890553,-0.316201,0.16309763,-0.7119496,0.11485672,-0.29680106,-0.18818389,0.41275105,0.02410349,0.18740486,0.19337603,0.013275468,0.20065716,-0.24096921,0.010147319,-0.198867,-0.34182853,0.28142133,0.30139375,0.6041974,-0.51957977,0.4976298,-0.00030809926,-0.081302375,0.13328211,-0.065122776,0.34470505,-0.22411187,0.35228962,0.017690722,-0.23934871,0.19855088,0.7002483,0.19371264,0.2778179,0.06614602,0.037633557,0.2670342,-0.09544984,0.14575578,-0.04530897,-0.6455249,0.23647778,-0.37660253,0.09872143,0.3069258,0.08542255,0.14705913,-0.06168317,-0.43979228,0.033002708,0.22710595,0.111570634,-1.2422484,0.37060654,0.14551575,0.9952421,0.4633687,-0.008057954,0.014380505,0.7763711,-0.064583026,0.17506728,0.36360568,0.12645465,-0.32069695,0.49276623,-0.5634917,0.64945644,0.040210146,-0.11421357,-0.06939541,-0.18562292,0.45933965,0.66381556,-0.2268904,-0.0372376,0.17568523,-0.2857184,0.07670697,-0.29385784,0.032795534,-0.7564709,-0.09757973,0.6492675,0.63942236,0.33821347,-0.077596396,0.05244273,0.08128117,-0.01519658,0.11444022,-0.009044765,-0.03206988,0.10223206,-0.7673328,-0.025076417,0.43247062,-0.03166836,0.15634724,-0.028101103,-0.17377523,0.25495908,-0.12185744,-0.20541793,-0.1386383,-0.71380526,0.026822526,-0.31726158,-0.52414954,0.44008255,-0.06434424,0.24061956,0.22981074,0.037033454,-0.26950514,0.4295548,-0.035190728,1.0079161,-0.016313076,-0.013023446,-0.34453124,0.065743476,0.12129091,-0.16000889,-0.22612332,-0.5298492,0.15687165,-0.550837,0.475705,0.05858612,-0.48231924,-0.09739749,-0.011781381,0.22844015,0.5009454,-0.07009672,-0.22950552,-0.23523507,-0.042319354,-0.14455026,-0.061037343,-0.24638136,0.2935096,0.14786153,-0.17290941,-0.06892363,-0.050573286,-0.03475899,0.54105365,-0.088791244,0.61657935,0.3346091,0.21126707,-0.19781302,-0.13402954,0.15419945,0.6939106,-0.20801093,-0.28130755,-0.23661575,-0.32610735,-0.2729326,0.38533723,-0.08362488,0.47402138,0.25771236,-0.05595314,0.58434397,-0.10217608,1.0312098,0.06776124,-0.30372623,0.18508574,0.345393,0.0457912,-0.07562527,-0.36038172,0.7617055,0.42827865,-0.09894499,-0.15995291,-0.27972284,0.23843414,0.048342083,-0.09362193,-0.09519709,-0.08222687,-0.58113265,-0.060315408,0.1779775,0.2140313,0.3683707,-0.19318956,0.18241572,0.17295446,-0.041210715,0.18272458,-0.32947475,-0.15273851,0.2835243,0.2262415,0.057756085,0.07074991,-0.5901943,0.34146485,-0.32645944,-0.058555122,-0.4819256,0.23331884,-0.30728137,-0.311794,0.14524965,-0.059117243,0.4378575,-0.34750956,-0.21413377,-0.40202147,0.4718788,0.28593987,-0.0056440784,0.3659918,-0.21830764,0.10376457,-0.0026941162,0.5555793,0.77226424,-0.339014,0.056042906,0.22151041,-0.19951428,-0.38095936,0.18884636,-0.44931924,0.2745108,0.16103145,0.0012170741,-0.6715198,0.2500827,0.17304413,0.006044351,-0.03409829,-0.55303764,-0.18490021,0.25706407,-0.26975664,-0.10749348,-0.4267408,-0.005950556,0.5530242,-0.023663769,-0.18711948,0.1431129,0.14401878,-0.05936202,-0.39576536,0.14051345,-0.517438,0.20014538,-0.13127142,-0.43527257,-0.48813227,-0.026156357,-0.45441312,0.35909632,0.21401633,-0.29626498,0.08078825,-0.36540586,-0.07950383,1.1977997,-0.21439615,0.28266734,-0.3707627,-0.49876234,-0.8560915,-0.26353934,0.35807088,0.03923401,0.008154344,-0.56163466,0.086278275,-0.108215794,-0.39595082,-0.10818862,-0.31450287,0.36723253,0.089552574,0.53103006,-0.080031715,-0.9414148,0.1121714,-0.024894714,-0.39987448,-0.50311506,0.49135917,0.12314187,0.8066031,0.0126914885,0.23559068,0.2255076,-0.352696,-0.11131036,-0.084907584,-0.058914755,-0.6214774,0.15772592,827 -746,0.39844248,-0.044501368,-0.6767394,0.010239516,-0.39041153,0.17572825,-0.16945031,0.5264071,0.37180108,-0.37153906,-0.2360692,0.10268749,-0.1962977,0.43095148,-0.16732086,-0.59865063,-0.08127805,0.18793216,-0.54066217,0.9016613,-0.13826221,0.32983583,-0.070759244,0.46611232,0.2988366,0.36163995,0.09974864,0.055326305,-0.18420322,-0.41145724,-0.10212536,0.07729633,-0.53437424,0.40170133,-0.2793048,-0.2553028,-0.13553473,-0.44958988,-0.25473675,-0.7356559,0.3221684,-0.78765553,0.43561175,-0.10281999,-0.22397074,0.3061867,0.22392645,0.14038685,0.058176424,-0.20484422,0.051680293,-0.14255872,-0.106473595,-0.19768143,-0.3018325,-0.47221482,-0.50074756,-0.053753413,-0.48637426,-0.18052687,-0.22309044,0.16826107,-0.3962682,0.03290239,-0.17467324,0.6662753,-0.3405329,0.2163558,0.016235083,-0.2514141,-0.21975301,-0.57241493,-0.30378422,-0.045041826,0.3060603,0.16891249,-0.08778301,0.27343765,-0.010343694,0.10980951,-0.002269323,-0.12816119,-0.2778358,-0.24251641,0.2800727,0.5566791,-0.024162237,-0.37604067,-0.09044234,-0.13006797,0.2814641,-0.12206617,0.3011812,-0.14606652,-0.08551152,-0.27141428,-0.26002482,0.25513172,0.2942756,-0.19536504,-0.19421792,0.3059737,0.369737,0.4035791,-0.43709686,-0.15980117,-0.037317596,-0.33675623,0.009446831,0.096449256,-0.039760325,0.4794312,-0.13591178,0.32363558,0.49055684,0.010983426,0.06657459,0.012229496,0.24549039,0.0036637187,-0.13455209,-0.31189764,0.23631085,-0.430511,0.15787274,-0.19110616,0.78656375,0.12011099,-0.5806596,0.41029522,-0.49851194,-0.0078065787,0.09956878,0.3127902,0.679625,0.5149024,0.011539461,0.552118,-0.12723419,0.080100074,-0.006876338,-0.18322721,-0.12771338,-0.2887565,0.14237484,-0.44323653,0.08656265,0.031540476,0.04512123,0.05530353,0.45322222,-0.3334937,-0.35316703,0.075331256,0.84774196,-0.14038153,-0.10020283,0.81394666,1.0391076,1.0832072,-0.05241287,0.93309176,0.07324822,-0.3136357,-0.12636371,0.039615337,-0.59000516,0.26381075,0.24199373,-0.010209946,0.37229186,-0.10777176,-0.12480486,0.24750453,-0.3356614,-0.014265448,0.0007312802,-0.0073669506,0.23816174,-0.043369338,-0.38839632,-0.3909356,0.03521145,-0.009188693,0.38997272,0.29214257,-0.21680014,0.573568,0.17964366,1.5291717,-0.0769339,0.012218604,0.20307367,0.60862505,0.23808584,-0.26069668,0.10022683,0.2024532,0.36611468,-0.017318249,-0.5538862,0.15452152,-0.36918333,-0.51829374,-0.10462098,-0.45550358,-0.428572,0.11229296,-0.41125482,-0.27662712,-0.041580696,-0.112752214,0.33297765,-2.7336159,-0.020828614,-0.24306515,0.21070546,-0.2144946,-0.28279158,-0.17965876,-0.5451736,0.27906525,0.14940585,0.47527263,-0.41920802,0.4001369,0.5108904,-0.5920306,-0.14930405,-0.38554433,-0.111239396,0.12849638,0.45048273,-0.15722704,0.20224708,-0.07674213,0.19982876,0.40838096,0.05878786,0.09154639,0.47621825,0.3237718,0.035011776,0.4061514,-0.012062637,0.57229286,-0.42825648,-0.017721057,0.40969557,-0.54238117,0.5680101,-0.26780823,0.15212509,0.542084,-0.40529266,-0.8386058,-0.4889816,0.006854979,1.369123,-0.2816092,-0.58607864,0.15330629,-0.33590826,-0.32843164,-0.104855485,0.5365702,-0.12230158,-0.19742829,-0.5354535,-0.00827181,-0.116903335,0.35431096,-0.09197047,-0.14869255,-0.37129515,0.67570275,0.12234545,0.74084854,0.026705356,0.15032856,-0.15894626,-0.32332665,0.09335272,0.60065144,0.3434868,0.17926455,-0.19533181,-0.08657711,-0.45499432,-0.1711738,0.01927963,0.7341219,0.36478317,-0.007273085,0.097348414,0.15058431,0.048740342,0.26464537,-0.16813216,-0.32575417,-0.369407,-0.008840561,0.4594559,0.61287826,-0.11336957,0.4030338,-0.010564135,0.2957039,-0.21283568,-0.32185903,0.49560282,0.8596887,-0.21132821,-0.29471117,0.41115144,0.5941973,-0.28857425,0.33195716,-0.5320337,-0.36728626,0.41224,-0.07801244,-0.36326593,0.14743276,-0.26425108,0.09570419,-0.617411,0.20588925,-0.43000075,-0.521541,-0.4197105,-0.06285111,-2.535553,0.19653003,0.005965948,-0.2560562,-0.47892725,-0.16177177,0.10709739,-0.5664268,-0.59420353,0.14617997,0.14386812,0.67098546,-0.11926671,0.1022533,-0.24737868,-0.48476788,-0.3020086,0.30585235,-0.014072271,0.4286661,-0.29789448,-0.21806087,-0.17248419,-0.17069787,-0.2181183,0.062598616,-0.5747187,-0.4165429,0.009165702,-0.32402822,-0.12311491,0.5468903,-0.3972584,0.11200324,-0.20667213,-0.015184125,-0.2782933,0.049846716,0.01979319,0.14439766,0.07488047,-0.11971469,0.22964859,-0.2551433,0.37569302,0.14506578,0.4928137,0.3851507,-0.032130416,0.18977903,0.3918404,0.56232494,-0.08404667,1.0046769,0.06629085,-0.0804429,0.45309347,-0.15467325,-0.45382273,-0.46689504,0.02153248,0.28315517,-0.25741002,-0.40157744,-0.04742784,-0.30700466,-0.7557574,0.38578466,0.16656177,0.20240006,-0.035629056,0.28742185,0.44639,-0.12510888,-0.030362936,0.07774896,0.030018728,-0.497227,-0.45312193,-0.6410313,-0.4044105,-0.11423133,0.77200866,-0.26155803,-0.038166575,0.12565368,-0.5171009,0.0499165,0.39016092,0.16320269,-0.0071535204,0.5153757,-0.015493354,-0.6908313,0.6251514,-0.32728034,-0.00825713,-0.29657567,0.27392828,0.41209015,-0.6253676,0.4403934,0.30355263,0.038338516,-0.2969926,-0.42036444,-0.11689789,-0.17716892,-0.13289684,0.16706046,0.3893269,-0.7034617,0.2642073,0.0059769154,-0.17311965,-0.66869724,0.42694885,-0.047407206,-0.19423126,-0.14414114,0.44453353,0.15391174,0.03356381,-0.10854716,0.16039771,-0.36158064,0.23157723,0.09382708,-0.06770084,0.040007703,-0.1830068,-0.27149928,-0.60096157,0.2973851,-0.38865444,-0.45534527,0.32287252,0.05594526,0.13515422,0.17959116,0.109245285,0.25699097,-0.30280316,0.11195656,-0.19788915,-0.19106759,0.5107127,0.31939882,0.64646566,-0.49042395,0.6012663,0.088073455,-0.054326456,0.40406844,0.25638768,0.30466038,0.10161199,0.54099834,0.15144484,-0.21078348,0.008026586,0.8580458,0.31162307,0.29888743,-0.015299926,-0.16874823,0.3216313,-0.08240093,0.107384995,-0.026816074,-0.68033856,-0.2869774,-0.2538991,-0.011437899,0.55872655,0.0658545,0.25412723,0.014037178,-0.1844031,0.05929504,0.07317562,-0.17475222,-1.1589068,0.29232457,0.13451275,0.9931687,0.32428965,-0.054453947,-0.021960616,0.7487699,-0.09169547,0.17434429,0.24367967,0.17679071,-0.52187544,0.57495797,-0.4202112,0.45697477,-0.049654834,-0.026212169,0.22251011,-0.0636964,0.4727646,0.8117394,-0.1820855,0.043430652,0.026816647,-0.44325912,-0.04664839,-0.37412417,0.017878298,-0.5459311,-0.2679269,0.57961106,0.5375942,0.3781047,-0.2477754,0.12139774,-0.049350165,-0.15108074,0.11882607,0.10259853,0.148762,-0.05292364,-0.5346502,-0.05343596,0.5923865,-0.30028293,0.09322553,0.1852418,-0.33879125,0.3148206,0.058775105,0.082200564,-0.11755859,-0.682541,0.21156867,-0.29896787,-0.5670823,0.24984677,-0.14742365,0.13889678,0.3302655,-0.016393818,-0.13096306,0.43614405,0.20572457,0.65084594,-0.124898784,-0.0781583,-0.32873347,0.110116884,-0.017366659,-0.27498013,-0.12081526,-0.25441185,0.15506288,-0.3942345,0.3821523,-0.049294554,-0.15675654,-0.20256864,-0.1152141,-0.009063656,0.55965394,0.023808774,-0.06222169,-0.09650911,-0.020038446,-0.23970912,-0.2172224,-0.053020112,0.21489999,0.24160844,-0.2553457,-0.17550263,-0.0915207,0.060836628,0.12875599,-0.24398209,0.515019,0.4166716,-0.012348865,-0.4403318,0.031142367,0.3219247,0.38802788,0.058115356,-0.027329365,-0.33115885,-0.4217706,-0.47656572,0.6715939,-0.04335136,0.34414798,0.15034246,-0.17802133,0.59813344,0.025712462,0.7531092,-0.013495367,-0.31931055,0.30449608,0.5027025,-0.015519211,-0.13758421,-0.3212967,0.89608073,0.28785992,-0.025512954,-0.045256574,-0.46502084,0.038118463,-0.009271363,-0.3293721,-0.100801595,-0.04531,-0.4517298,-0.121630535,-0.014376705,0.16827218,0.26645842,-0.18646568,-0.019220127,0.28379074,0.2311946,0.21362112,-0.6213583,-0.34402257,0.2830488,0.01970447,-0.13241622,0.07586905,-0.56994635,0.31306747,-0.7107906,0.12996951,-0.2705946,0.20490606,-0.40674564,-0.3564588,0.27709422,0.21077181,0.3399372,-0.57785773,-0.2734505,-0.4572398,0.3874367,0.2295163,0.26224363,0.46521303,-0.16215454,0.036647778,0.1630067,0.61276144,0.76291496,-0.07479633,-0.003048594,0.30909592,-0.5039149,-0.50069255,-0.1124484,-0.31308362,0.45091197,0.05744603,-0.035895236,-0.68757606,0.25213152,0.25368664,0.1163413,-0.08894067,-0.6260927,-0.27952927,0.19396551,-0.3170794,-0.2372447,-0.37484887,-0.15478131,0.4255633,-0.146808,-0.32563514,0.014422426,0.18285824,-0.18143408,-0.54547083,-0.085660204,-0.2876201,0.24616553,-0.05626993,-0.30184883,-0.4130346,0.11279547,-0.49957788,0.29192817,0.092984915,-0.3695188,-0.057249006,-0.34326145,0.087418206,0.82666427,-0.21271823,0.14037797,-0.47564065,-0.5680524,-0.6502014,-0.6175759,0.09574875,0.18898283,0.059440143,-0.48017251,-0.075991794,-0.27366108,-0.18573287,-0.044357188,-0.33440134,0.3159743,0.17007293,0.31288937,-0.11104668,-1.0980902,0.27978075,0.009793951,-0.08342747,-0.36487994,0.25594273,-0.15026794,0.9179717,0.10311249,0.0530982,0.17486045,-0.44777682,-0.015381116,-0.12522456,0.0650299,-0.6028293,0.42495447,829 -747,0.32811433,0.022411274,-0.69021904,0.0064756344,-0.25107765,0.15160863,-0.43367812,0.15901388,-0.07588506,-0.36752993,-0.02768539,0.17649105,-0.15493096,0.113235965,-0.2627414,-0.67686087,-0.0142487865,0.112897076,-0.41283953,0.5506057,-0.45829502,0.41117862,-0.012059794,0.058280595,0.276794,0.17898844,0.28097612,-0.0029743267,-0.31181636,-0.63028777,0.12493161,-0.02469011,-0.5993796,0.2790279,-0.05981602,-0.39694273,0.13911715,-0.37616083,-0.35063827,-0.63993204,0.4121133,-0.7045117,0.537892,0.036853235,-0.24304055,0.19558181,0.050096802,0.18931451,0.009501595,0.05587008,0.2754559,-0.35720998,-0.14287642,-0.27683914,-0.31005824,-0.36185426,-0.5295269,-0.018324612,-0.7147035,-0.016248453,-0.34334093,0.28842768,-0.45231247,0.038936835,-0.41859382,0.45908812,-0.38921112,-0.1063031,-0.055979803,-0.04883277,-0.0026015318,-0.72658783,-0.27885807,-0.06017006,0.0085872505,-0.17438914,-0.034124877,0.22761263,-0.026492719,0.22476739,-0.022747748,-0.10944852,-0.26677138,-0.31668854,0.35186943,0.52147907,0.062703356,-0.1457271,-0.19711874,-0.19821963,0.38530165,0.17708246,0.081641674,-0.12031727,0.054096203,0.04779557,-0.32286474,0.53868496,0.6046126,-0.21686462,0.08594705,0.28563794,0.5061315,0.2753909,-0.15469788,-0.06082896,-0.12245842,-0.34872916,-0.08729148,0.2555809,-0.12285332,0.50241786,-0.12378303,0.32909286,0.5365966,-0.3959831,0.1148076,0.09759935,0.103948005,0.0812804,-0.17416109,-0.2932365,0.32619703,-0.5434649,0.21322414,-0.31759965,0.93489033,-0.015055264,-0.4800362,0.29557288,-0.59255725,0.09049814,0.056076985,0.750365,0.35220733,0.43623975,0.09580803,0.62945426,-0.32071516,-0.039007943,-0.15014371,-0.29976112,-0.1015205,0.10726009,-0.12038299,-0.22583607,-0.14377004,0.011462251,0.097302906,-0.14836198,0.5449045,-0.3230469,-0.08948373,-0.016010748,0.7271897,-0.34821394,0.015023291,0.76735777,1.3045655,1.0510657,0.00057468965,1.0408276,0.014558544,-0.14558595,-0.47059727,0.11965818,-0.66468626,0.34450802,0.4519613,-0.21880534,0.35445037,0.114060566,-0.29987636,0.3646595,-0.35828206,-0.26824814,-0.10195058,0.23830758,-0.06162123,-0.017360257,-0.3502073,-0.17723332,0.28460523,-0.104915746,0.23703124,0.28372172,-0.57453686,0.21228684,0.17063253,0.9156853,-0.22156644,0.09206119,0.16288656,0.37632635,0.15546998,-0.07248923,0.14766341,0.2779125,0.34055567,0.0034048648,-0.7446675,0.108264975,-0.32515827,-0.5083123,-0.16718125,-0.26328433,-0.19442067,-0.018586231,-0.38481325,-0.11424271,-0.05188472,-0.36311814,0.20598346,-2.5039973,-0.06407921,-0.19505684,0.32837218,-0.16492952,-0.33414635,0.09909951,-0.45341322,0.49827576,0.1749367,0.4900435,-0.35203838,0.45885512,0.5692847,-0.29786947,-0.08253812,-0.649685,-0.08979429,-0.059185617,0.57527673,-0.16065457,-0.09391041,-0.063509665,0.08551406,0.5383113,-0.08893208,0.17765735,0.3047167,0.33158097,-0.037491914,0.32724416,0.22474366,0.5079216,-0.4866716,-0.14107858,0.4814673,-0.44717944,0.3416825,-0.17835118,0.14408451,0.39797843,-0.27597392,-0.7245454,-0.38118413,-0.28220642,1.5342841,-0.372749,-0.635957,0.102946356,0.1193521,-0.32188085,-0.08280727,0.35907826,-0.2360635,-0.14114788,-0.54144067,0.023864944,-0.26638657,0.39002985,-0.14169337,0.28416097,-0.41552523,0.57532877,-0.06216679,0.49554852,0.277475,0.4972394,-0.22838186,-0.3138886,0.084449545,0.9866857,0.49777216,0.07491862,-0.31348088,-0.16489506,0.033436343,0.03788303,0.116864175,0.62314737,0.71813744,0.10132299,0.1738015,0.31395486,-0.10114734,0.16072893,-0.097029395,-0.47242415,-0.2958352,0.019261297,0.6941,0.36482456,0.17351954,0.39056313,0.12654337,0.16650352,-0.46250412,-0.34544685,0.4070666,1.013269,-0.22290963,-0.30970466,0.69525963,0.64883393,-0.39819404,0.58105886,-0.6477708,-0.26883304,0.49799743,-0.09072092,-0.36793804,0.15125714,-0.36196205,0.07962105,-0.60248905,0.409603,-0.47216728,-0.77238214,-0.608256,-0.39806777,-2.9192674,0.105792716,-0.31883866,-0.17879272,-0.30136782,-0.33029065,0.24747565,-0.58792853,-0.40538543,-0.010245717,0.12643734,0.599935,-0.1919727,-0.016135685,-0.23733613,-0.29468197,-0.23227297,0.29397297,0.29315704,0.108562574,-0.23993836,-0.22024263,0.052671667,-0.15752527,-0.29544827,-0.081805415,-0.3165291,-0.22068428,-0.06737931,-0.33130136,-0.20446979,0.6295191,-0.4061558,-0.037215866,-0.18608035,0.05356974,-0.030578313,0.31245503,0.10238473,0.29679868,-0.022878526,-0.26739973,0.0064464393,-0.43443733,0.32158646,0.16185108,0.4029802,0.4258059,-0.21844317,-0.060550198,0.41417748,0.37875068,0.15773249,1.0363917,0.1091677,-0.09810213,0.33063808,-0.18854761,-0.43052304,-0.6882733,-0.1865486,0.13277437,-0.3540789,-0.40740484,-0.21522151,-0.1536651,-0.9267942,0.5573762,-0.03464308,0.28571394,-0.16519707,0.5349032,0.21179631,-0.043062337,-0.2101226,0.037863377,-0.022723423,-0.21238978,-0.32309788,-0.8747648,-0.3284151,-0.23646094,0.82173896,-0.14369659,-0.09857396,0.16224886,-0.2794604,0.21298553,0.03680911,0.22141767,0.13966522,0.4018336,0.22138348,-0.5571562,0.42403904,-0.2980023,-0.08215989,-0.46422327,0.0186758,0.79181534,-0.55876565,0.26792508,0.5738019,0.15503103,-0.1872608,-0.51893115,-0.016478041,0.18038934,-0.15205655,0.50791,0.4264156,-0.8251038,0.532298,0.07337119,-0.14358988,-0.5681794,0.5556541,-0.004958704,-0.15818729,-0.1414172,0.4632112,-0.12368771,0.021863183,0.029836755,0.36371332,-0.15861705,0.22486192,0.21584016,-0.19521914,0.14307752,-0.2937399,-0.35830528,-0.47877863,0.21087016,-0.49958712,-0.27075562,0.14302118,-0.18097998,0.056356784,0.40015042,0.010388704,0.4992428,-0.30542833,0.11255769,-0.034570135,-0.2611307,0.56934744,0.5385799,0.54343593,-0.44788817,0.6646865,0.09272982,-0.1579949,0.17561711,0.16108689,0.49572027,-0.0562515,0.4519007,0.09928762,0.101640426,0.25879624,0.7639526,0.41958082,0.5966381,0.10704965,-0.19690259,0.20849451,0.101061985,0.23235932,0.010222962,-0.50683665,-0.1582342,0.077884965,0.11623221,0.6145483,-0.013153624,0.4115044,-0.1975925,-0.03939092,0.16778596,0.08600195,-0.31090453,-1.18518,0.49554384,0.11107529,0.5932221,0.39308378,-0.014223296,0.1859804,0.39615992,-0.24435568,-0.08468112,0.14858483,0.48741797,-0.34934658,0.48421156,-0.48088774,0.42620865,-0.11047962,0.12358609,0.012984147,-0.22876756,0.56069064,0.8793303,-0.18951191,0.11952638,-0.044654887,-0.25243473,0.064994015,-0.25564277,0.33057445,-0.38608503,-0.18718995,0.7865884,0.31661892,0.42585927,-0.1621885,-0.030284861,0.20212851,-0.070721544,0.19630463,0.00077600207,0.1695897,-0.16271386,-0.47167698,-0.32827997,0.49524057,-0.110969864,-0.053476755,-0.028727086,-0.23059723,0.25647485,0.14230686,0.120985046,0.039665367,-0.6836545,0.2593456,-0.3230788,-0.6213375,-0.037494563,-0.34869197,0.18651792,0.2632387,0.074202195,-0.4166549,0.12762398,0.40027523,0.5344781,-0.17744574,-0.08129243,-0.41335818,-0.01861101,0.31899655,-0.2053655,-0.04233229,-0.2835225,0.23628336,-0.71538293,0.3208722,-0.4617223,-0.31793836,0.00473878,-0.1724828,-0.2781424,0.6342923,-0.05415597,-0.13457361,0.26836383,-0.2646976,-0.16421154,-0.27584237,-0.065619916,-0.042360082,0.075068384,-0.27745983,-0.21031523,-0.03627769,0.056572206,0.13033843,0.08559927,0.26029235,0.42085934,0.1903664,-0.5406399,-0.2743359,-0.07254785,0.57741606,-0.113540426,0.080165915,-0.39253992,-0.6026422,-0.20991924,0.57171875,-0.26919177,0.18120703,0.11991927,-0.41342017,0.7106674,0.07038919,0.9742798,-0.0005987516,-0.47569367,-0.09029953,0.79357326,-0.05414261,-0.17664768,-0.32360724,1.1670128,0.30408844,-0.22958826,-0.21033962,-0.4867005,-0.18180619,0.013958349,-0.2706098,-0.25446945,-0.11827762,-0.38009724,-0.07947779,0.108759515,0.3422391,-0.17877664,-0.053726196,0.03174706,0.60780436,0.17641903,0.40150362,-0.6871902,-0.047784116,0.38130012,-0.02383974,-0.19846691,0.21017522,-0.51659036,0.27832678,-0.75792885,0.05218106,-0.2131934,0.17988569,0.012083017,-0.3320925,0.366055,0.043167397,0.3048038,-0.45703968,-0.20342547,-0.11905242,0.24161886,0.2779086,0.25061876,0.68511677,-0.1602917,0.22287409,-0.09210526,0.49894235,0.98054016,-0.057788577,-0.08357441,0.16255021,-0.57832146,-0.7435001,-0.050145112,-0.48485246,0.13456522,-0.15092935,-0.48724762,-0.5843049,0.3391643,0.07557749,-0.050038822,0.020449363,-0.6772678,-0.20156458,0.067755505,-0.21480574,-0.36462653,-0.2225133,0.001063168,0.8045544,-0.24722022,-0.28461093,-0.14573823,0.45382687,-0.22456673,-0.53372467,0.027282171,-0.39496863,0.32774585,-0.09918638,-0.07942497,-0.03215345,0.14709982,-0.40232027,0.16970904,0.24175246,-0.14153963,-0.23726486,0.026005318,0.18098886,0.4279362,-0.21988586,-0.050089248,-0.39853507,-0.60687375,-0.7159604,-0.5440756,0.0054406477,0.07545814,0.12782183,-0.5345547,0.03862667,-0.20776406,-0.03810899,-0.112152845,-0.48983112,0.3796268,0.2222248,0.48138043,-0.119546644,-0.9044307,0.1998792,0.013233721,-0.31362838,-0.48959744,0.48396096,-0.23239261,0.525952,0.12027787,0.0646363,-0.021921545,-0.5693077,0.3358497,-0.21652725,-0.1765615,-0.7163441,0.24966857,830 -748,0.3877919,-0.32045493,-0.29427102,-0.20586132,-0.18842432,-0.22387369,-0.07681875,0.583027,0.21970147,-0.4072994,-0.25000837,-0.1550462,-0.02387731,0.3003195,-0.13069198,-0.67263573,-0.15425783,0.20880279,-0.34655565,0.5220633,-0.4039793,0.18989556,-0.08174436,0.36424467,0.2347566,0.067390814,0.057877056,-0.23661104,0.064086735,-0.106361,-0.24109745,0.4805054,-0.43589833,0.14982884,-0.094905265,-0.26505768,-0.045554504,-0.5408328,-0.2719781,-0.9515326,0.38372695,-0.75192326,0.24435654,0.1989073,-0.2980986,0.39406717,-0.120738275,0.23023906,-0.3254137,0.07134776,0.13841325,-0.106443815,0.022519086,-0.12659547,0.0092558265,-0.23347682,-0.6084939,0.059167888,-0.10563184,-0.18699437,-0.16141853,0.20323928,-0.3532289,-0.10225247,-0.15483437,0.5454091,-0.40678474,0.04658934,0.17384055,-0.15922745,0.3204171,-0.5803684,-0.18741576,-0.16804299,0.23898707,-0.027987134,-0.15457891,0.30445555,0.26086164,0.3637076,-0.09145562,-0.18446292,-0.28520918,0.016594827,0.05204916,0.3577763,-0.14330214,-0.648133,0.039223187,0.009519264,0.029109292,0.13325521,0.047283046,-0.4473322,-0.27221224,0.06883974,-0.26478583,0.3877122,0.4466621,-0.22255124,-0.3194824,0.2771509,0.46922594,0.22174208,-0.050869428,-0.14298707,-0.01190686,-0.70367277,-0.080258235,0.12815447,-0.2603075,0.55061716,-0.21746686,0.23856552,0.6273645,-0.11196931,-0.13306652,-0.023790376,0.11885887,-0.066078536,-0.36772603,-0.32201883,0.3304976,-0.29235026,0.25476316,-0.20364405,0.98864925,0.109301895,-0.859915,0.37040645,-0.52318436,0.31477773,-0.21287936,0.59072846,0.56404376,0.38758177,0.46932486,0.71702635,-0.43679616,0.0014476455,-0.014841855,-0.34134468,0.010722239,-0.07017861,-0.18445747,-0.453728,-0.0103616025,-0.06407161,-0.09969035,0.083523855,0.20137654,-0.59637326,-0.0650971,0.041869245,0.70488137,-0.26869652,-0.033583824,0.7022493,0.8382644,1.1448355,0.103862,0.9972191,0.12247058,-0.14655222,0.33458328,-0.34674776,-0.8206049,0.29070094,0.304105,-0.12664968,0.032169893,-0.044401765,0.031040214,0.3649189,-0.4095408,0.046760302,-0.22528219,0.30903113,0.2024611,-0.115570635,-0.428659,-0.42632324,-0.12855607,0.112307586,-0.053800765,0.18842593,-0.21223491,0.23282051,-0.03691102,1.4525125,0.093768984,0.0114062335,0.108276576,0.4654404,0.13783291,-0.07436127,0.02430726,0.3179183,0.4566313,0.09017478,-0.6767738,0.21297154,-0.24000494,-0.5064069,0.026563283,-0.2790896,0.09075915,0.03346997,-0.35754716,-0.17555393,-0.2021313,-0.33217737,0.5309721,-2.634213,-0.20303807,-0.09382509,0.27157497,-0.17326976,-0.27005288,-0.093266875,-0.43664205,0.36944944,0.31590542,0.4891515,-0.75568545,0.24481773,0.40870592,-0.68319,-0.18118447,-0.7147751,-0.05988799,-0.03409081,0.3523104,0.12009366,0.21170448,0.030488024,-0.049986977,0.42576855,0.094277516,0.08690116,0.23286605,0.3409548,0.09657172,0.39669946,-0.08272065,0.4050267,-0.24959572,-0.12339478,0.17567253,-0.60245144,0.21202022,-0.05587388,0.09483528,0.5587461,-0.4899379,-0.77932733,-0.58252394,-0.28728634,1.2750543,-0.18747059,-0.37674582,0.41715115,-0.23643266,-0.071452506,-0.17658646,0.37690157,-0.23681197,-0.3213272,-0.77579916,-0.03577516,-0.044931073,0.30638254,-0.07078727,-0.20109114,-0.27366072,0.5583829,0.010980846,0.3156306,0.44936973,0.0348364,-0.40106323,-0.5695916,-0.111023106,0.7046241,0.27884498,0.06882183,-0.11395672,-0.1411898,-0.16619888,-0.0752598,0.13305861,0.52818066,0.7811126,-0.15169959,0.09189933,0.37150806,-0.011076518,-0.030632414,-0.13521266,-0.2142875,-0.041488048,-0.047163304,0.5372897,0.7660418,-0.252585,0.26473063,-0.095452115,0.2664463,-0.08212679,-0.29641372,0.534979,1.2896265,-0.14782672,-0.1556902,0.5344932,0.5007315,-0.3798521,0.4237789,-0.5221235,-0.059666608,0.46178925,-0.28477126,-0.46774483,0.03758641,-0.24118243,0.12688096,-0.75195843,0.3154506,-0.11644281,-0.40474895,-0.71427816,-0.009074972,-2.604659,0.15162691,-0.4049152,-0.22659768,-0.21896003,-0.10229635,0.042642806,-0.5294098,-0.54077643,0.10340181,0.23471148,0.585441,-0.05090322,0.12319643,-0.2749086,-0.10963358,-0.43851933,0.022844043,0.013358217,0.36196396,0.20760426,-0.4952747,0.06903873,-0.2126333,-0.37114292,0.14246272,-0.44272906,-0.3372273,-0.022301555,-0.6061583,-0.43042865,0.5686632,-0.17894319,-0.04249799,-0.15724304,0.038098074,-0.11562185,0.3186622,0.16577186,0.12739168,-0.11207254,0.019345481,-0.0130343605,-0.20429172,0.30419353,-0.036731787,0.17680332,0.3881828,-0.18353984,0.13754773,0.45866188,0.723979,-0.11895983,0.8524505,0.6188828,-0.06634804,0.22795552,-0.16834839,-0.2373812,-0.49832395,-0.32552704,0.07775232,-0.34381694,-0.42219397,0.0503788,-0.2541971,-0.74899393,0.41785035,-0.047360238,0.18419345,0.043466724,0.01756881,0.5721051,-0.10374848,0.1099674,-0.012562184,-0.1436731,-0.43072906,-0.19885129,-0.6726793,-0.2830456,0.16210835,0.9300712,-0.22058535,-0.039134577,-0.0387913,-0.29998425,-0.08144501,0.15900476,-0.19930363,0.25968352,0.22963484,-0.039065305,-0.6583506,0.48810384,0.13904826,-0.17460766,-0.3963461,0.24280247,0.5240689,-0.5352627,0.52240235,0.20537567,-0.10052934,-0.15501738,-0.6065273,-0.25879717,-0.07519733,-0.13002601,0.3494926,0.14517236,-0.54090464,0.45307624,0.42405832,-0.21982694,-0.7577396,0.34731495,-0.044838566,-0.43309656,-0.025198221,0.34832424,0.04888773,0.015585134,-0.10293896,0.22002088,-0.48400152,0.20008373,0.18637142,0.08255168,0.18432127,-0.074271925,-0.014607227,-0.88228375,0.017026471,-0.4309723,-0.2212785,0.33478248,0.17440912,0.028424181,0.07091619,-0.037759203,0.3886011,-0.14116001,0.10204939,-0.023830703,-0.049188,0.30696765,0.47552204,0.45538086,-0.40321591,0.5781298,0.17678696,-0.055313803,-0.04293196,0.0028843696,0.2916959,0.12167417,0.38193324,-0.11022311,-0.2572644,0.3026451,0.64112926,0.0956964,0.4438489,-0.047890887,-0.081405014,0.38973987,0.091232546,0.33454946,-0.06883431,-0.43169573,0.021524154,-0.15183128,0.105741754,0.46674237,0.0875503,0.3405525,0.011218016,-0.3918942,-0.043560922,0.30512545,0.02086693,-1.2110641,0.40024248,0.17763239,0.86221707,0.7060613,-0.07524841,0.021228759,0.67576444,-0.17291988,0.13660978,0.34592298,-0.0004650125,-0.5687598,0.6256422,-0.6706266,0.41169465,-0.060765944,0.0033234518,-0.09865671,0.03819014,0.31376442,0.47372642,-0.14191559,-0.06315193,-0.14518501,-0.36092874,0.28364405,-0.43030852,0.16566148,-0.44311193,-0.33460477,0.43014616,0.564972,0.25474387,-0.1707148,-0.019754572,0.21178454,-0.046024825,0.14507595,-0.03438247,0.0012428428,0.024414461,-0.7342638,-0.02325808,0.53109735,-0.05577223,0.037372127,-0.036029212,-0.24755533,0.22810483,-0.35370848,-0.18003327,-0.16303349,-0.67385805,0.06887409,-0.053810026,-0.28920522,0.48975378,-0.20984118,0.24093665,0.24282888,0.052484374,-0.3241434,0.07524335,0.09972135,0.7603142,-0.012926376,-0.16558418,-0.42115325,0.20871228,0.12297751,-0.1256941,-0.10865675,-0.119072035,-0.18600799,-0.34396803,0.52625304,0.103600346,-0.14484096,0.063678354,-0.128139,-0.047750887,0.5759272,-0.12510325,-0.1172559,-0.23421365,-0.17687154,-0.21083,-0.20470794,-0.17503849,0.42133623,0.2705872,-0.0017673866,-0.16086413,-0.14806274,-0.1927117,0.67717624,-0.021231445,0.3311732,0.17807955,0.028755363,-0.38660696,-0.21232532,0.050105877,0.42242038,0.119098574,-0.20569351,-0.22216953,-0.16232274,-0.34572,-0.01186624,-0.1487973,0.5430668,-0.076539405,-0.41076672,0.62903476,0.14047125,1.2522329,0.047410205,-0.27647394,0.10839018,0.5010819,0.033879887,0.022160295,-0.30130866,0.86741954,0.5327057,-0.22569558,-0.13891026,-0.29400972,0.022177907,0.18904355,-0.09481079,-0.095463045,0.02416911,-0.61046004,-0.28621924,0.21345884,0.21898334,0.1433461,-0.060142774,-0.1260177,0.25171122,0.07607806,0.5877789,-0.16779503,-0.07577492,0.10960584,0.21116763,0.18929537,0.05686438,-0.37684566,0.35914627,-0.45533594,0.33465284,-0.2416463,0.26505265,-0.35775694,-0.24228951,0.27244025,0.093368955,0.27918243,-0.3363234,-0.5162978,-0.23081245,0.539347,0.1229573,0.15706638,0.46450302,-0.34574872,0.15386778,0.0068045547,0.50469035,0.8986562,-0.15436147,-0.104979426,0.35923642,-0.37468782,-0.703184,0.42888567,-0.13240403,0.0053237355,-0.1651251,-0.14069541,-0.5246201,0.27642867,0.3275371,0.08917726,0.059615944,-0.67857254,-0.23733735,0.3646065,-0.37687805,-0.18936707,-0.34872216,0.24730743,0.6059711,-0.29116303,-0.5224132,0.04576474,0.043764196,-0.22657865,-0.51577914,-0.06685337,-0.5702472,0.32768345,0.14982282,-0.45656055,-0.1333203,0.07730871,-0.4706032,0.017445385,0.06343749,-0.26989385,0.08083599,-0.10365331,-0.16142677,1.0089059,-0.26013023,0.3648911,-0.5589041,-0.4136832,-0.884872,-0.14738987,0.75938004,0.18372943,-0.00036678405,-0.7141677,0.036621295,0.06486973,-0.41332272,-0.12222535,-0.36564952,0.45727172,0.13374224,0.27363995,-0.02830531,-0.66383463,0.014791085,0.19280455,-0.14586666,-0.47147936,0.42406756,0.07848411,0.8105673,0.0033681656,0.12182109,0.14368488,-0.25872046,0.10224025,-0.15621513,-0.28957605,-0.5445171,-0.010545345,832 -749,0.20133765,-0.07545114,-0.68413126,-0.12928554,-0.26805356,-0.17584808,-0.17553261,0.6802436,0.31869683,-0.29912886,-0.06696049,-0.10577522,-0.043785375,0.6668185,-0.28592333,-0.6392886,0.09612711,0.030656416,-0.46544883,0.5894194,-0.32279256,0.13545515,-0.15671268,0.5433145,0.25579327,0.27992412,0.046151392,0.050476816,-0.07432424,-0.15929939,0.085323945,0.30412254,-0.4013552,0.021207985,-0.17258857,-0.29587874,0.04309499,-0.43272966,-0.46855247,-0.8438418,0.32156193,-0.7558705,0.48512986,0.0382214,-0.3237962,0.13476077,0.27527362,0.4537479,-0.15367529,-0.27989888,0.15292045,-0.066599526,-0.005737642,-0.15676777,-0.40655696,-0.41623497,-0.5736384,0.048571434,-0.58238244,-0.19295035,-0.23606373,0.12240929,-0.33811718,0.00036409727,0.052012477,0.5110237,-0.47091615,-0.019215263,0.3202329,-0.12431781,0.31235796,-0.50296295,-0.18324447,-0.060406044,0.23982272,-0.13557789,-0.13885386,0.41418517,0.03467403,0.32361713,-0.08461087,-0.2246433,-0.45032597,0.009714897,0.09725181,0.40285873,-0.26199093,-0.4782157,-0.05742096,0.01692105,0.18344545,0.33122027,0.1581514,-0.13619897,-0.1355346,0.2269254,-0.14678866,0.4512695,0.59123,-0.094691426,-0.061364718,0.17674328,0.53692174,0.34045565,-0.24954574,0.024433833,0.0048892405,-0.6496217,-0.23421995,-0.22574475,-0.010645051,0.6550401,-0.05616526,0.30646625,0.62979627,-0.07843837,-0.072242886,0.10654155,0.022969475,0.059724662,-0.30613482,-0.058163088,0.25388893,-0.35718775,0.27524957,-0.10484875,0.5520719,0.13422069,-0.615235,0.32002264,-0.5804483,0.08385856,-0.053872652,0.49184692,0.58199537,0.48633355,0.38502708,0.7179025,-0.3813345,0.15513302,-0.07390526,-0.2733097,0.10236542,-0.3071861,-0.025528807,-0.4268433,-0.16882266,-0.09010252,-0.17281145,0.2786368,0.1487669,-0.5440487,-0.13088956,0.22670385,1.004969,-0.1739304,0.008345576,0.8695927,0.97347504,0.9707165,-0.098319165,0.9342883,-0.07914802,-0.12896222,0.27520198,-0.058563992,-0.8052796,0.2959666,0.30081302,-0.26135412,0.2988362,-0.09081283,0.079974815,0.5334032,-0.49378598,0.023018856,-0.13227405,0.24834622,0.10926676,-0.2533869,-0.40947574,-0.207937,-0.108073205,-0.017747484,0.055885587,0.3302182,-0.09113398,0.43849358,-0.17760111,1.5659605,0.020893238,0.06257881,0.20276079,0.64631975,0.2362984,-0.07547236,-0.18210846,0.19176611,0.10351796,0.24592239,-0.45748284,0.12755479,-0.32321894,-0.4712376,-0.080817476,-0.4081933,-0.1541532,-0.26346275,-0.59494984,-0.13971259,-0.16419882,-0.19293717,0.35325968,-2.8409843,-0.2139814,-0.081418276,0.28846362,-0.19823092,-0.24687687,-0.018342724,-0.36616328,0.5468402,0.28636456,0.5319609,-0.47041985,0.42690784,0.53096527,-0.5652778,-0.12356091,-0.53145874,-0.12831351,0.07816185,0.33067873,0.066947594,-0.011647976,0.09406637,0.27844578,0.41940588,0.03097303,0.040173035,0.20290129,0.42072275,-0.1797997,0.45319998,-0.11466527,0.43818635,-0.3985537,-0.21132992,0.27453855,-0.54141283,0.34814236,-0.10838974,0.16276413,0.33908132,-0.42765373,-1.0116035,-0.5450233,-0.11494211,1.0919865,0.04696665,-0.5179709,0.42029032,-0.6250778,-0.26530674,-0.10189472,0.51606375,-0.11614619,0.21473354,-0.77684623,-0.06313643,-0.30584532,0.08738459,0.020694604,-0.12097038,-0.34920514,0.56643736,0.010466477,0.32640678,0.4698016,0.10832525,-0.38566527,-0.44307584,0.0055387067,0.6628453,0.36893323,0.08990486,-0.19138272,-0.255702,-0.35506132,-0.19819608,0.059032567,0.59053886,0.70497555,-0.15402953,0.09034146,0.29228473,0.033730682,-0.07338765,-0.16348408,-0.36471403,-0.07306548,0.06708645,0.60486233,0.91865563,-0.2538964,0.34907436,0.10217316,0.4398773,-0.19367297,-0.36778927,0.43098375,0.7816902,-0.14916863,-0.38612545,0.6829026,0.529423,-0.30950844,0.42992666,-0.48886746,-0.3098144,0.4845255,-0.050096534,-0.5053369,0.17045179,-0.25812843,0.110364,-0.8548431,0.20202263,-0.34479234,-0.48104954,-0.61011606,-0.1786165,-3.2103734,0.05213125,-0.24712753,-0.24269725,-0.2003581,-0.056662466,0.052331284,-0.66657215,-0.8993943,0.06894557,0.024934752,0.786127,-0.19262174,0.035258822,-0.2321806,-0.33403683,-0.19327655,0.13712193,0.26131922,0.33166412,-0.04507367,-0.51212233,-0.36970183,-0.21287118,-0.6363554,0.108177505,-0.5814295,-0.41667587,-0.23607485,-0.66359526,-0.0007960063,0.72509044,-0.1878478,-0.04934201,-0.18707074,0.10344648,0.036193933,0.26762038,0.20779783,0.14887019,0.10824699,-0.038891308,0.27405494,-0.18594855,0.19323371,0.038228072,0.5724639,0.29056948,0.023481937,0.39236715,0.75164074,0.8143407,-0.18757719,0.8832457,0.4086238,0.009552569,0.25478727,-0.3164086,-0.3818104,-0.4120198,-0.37278828,0.24150005,-0.2892419,-0.32474962,0.0006290399,-0.37691244,-0.8218742,0.7407187,-0.055312976,0.098325215,-0.08029853,-0.04967285,0.37147897,-0.33729416,-0.12944281,0.034130383,0.022137014,-0.6647443,-0.2361975,-0.6141897,-0.5656352,-0.086880445,1.006886,-0.21275035,0.033393886,0.18141314,-0.36739784,0.035516184,0.09459035,0.06352966,0.055396087,0.24040483,0.053031437,-0.67283225,0.38845202,-0.3085212,-0.16036233,-0.5148484,0.2033565,0.6496829,-0.45569083,0.47712782,0.3682466,0.021535583,-0.20520848,-0.6727845,-0.12524782,-0.020952752,-0.042040862,0.39009413,0.19456142,-0.7466617,0.43263686,0.36877236,-0.33027557,-0.64895684,0.5185055,-0.21563156,-0.21686603,-0.11203994,0.38552797,0.13767602,-0.01802649,-0.2838895,0.2980259,-0.23514669,0.09119736,0.37816054,-0.088388436,0.3333804,-0.21591124,-0.035958007,-0.78588253,0.05424019,-0.5062795,-0.26815352,0.32844183,0.012338779,0.05122326,0.029755987,0.1528726,0.21350506,-0.34498942,0.09021522,-0.18244043,-0.36606297,0.3957663,0.44749025,0.71902937,-0.64259267,0.6500397,0.060164258,0.016715812,0.31032503,-0.034395657,0.49692884,-0.24671881,0.4307226,0.114092104,-0.021861415,0.10803909,0.8592418,0.14085798,0.35123953,0.1252055,-0.10526187,0.18748485,0.05078388,0.007450498,0.11694939,-0.6206007,0.21006542,-0.31044686,0.07321387,0.5685449,0.17384264,0.25641885,0.08003771,-0.48625457,0.07476009,0.1883612,0.036090955,-1.5771161,0.5217543,0.24022537,0.82494205,0.32684496,0.27724966,0.033484124,0.79348314,-0.0010996369,0.11193525,0.47447437,0.019073816,-0.53812766,0.54320073,-0.7376661,0.6263447,0.18814391,0.057908203,0.053329542,0.04863701,0.5667873,0.6857157,-0.06497066,0.01950667,0.16980228,-0.32572338,0.17155784,-0.51303154,-0.164586,-0.43233,-0.19734842,0.48854145,0.64552104,0.2419098,-0.18710984,0.052800205,0.25758883,0.009270404,0.26203525,-0.1950964,0.06648706,-0.13176678,-0.5161032,-0.15268539,0.43945444,0.021495122,0.25668043,-0.1325051,-0.008775537,0.30953965,-0.086040944,-0.18025912,-0.16572134,-0.66766137,0.17016652,-0.45287022,-0.5255728,0.34521836,-0.20757715,0.33092815,0.18612178,0.09359182,-0.44002965,0.73036605,-0.31747925,0.77794063,-0.18219215,-0.16723992,-0.14426062,0.1676378,0.25917152,-0.295916,-0.008653902,-0.35135847,0.1668213,-0.29719466,0.38850313,-0.16428629,-0.4340557,-0.08569161,-0.12522855,0.16515893,0.43968436,-0.26700166,-0.15247038,-0.11971578,-0.17047907,-0.1621301,-0.33645555,-0.04840718,0.32339412,0.16232806,-0.09884001,-0.15719087,-0.12878476,0.021178147,0.47583893,-0.25181657,0.36428878,0.38944003,0.06699208,-0.22844124,-0.15960601,0.1671275,0.601397,-0.04078519,-0.13108772,-0.44893157,-0.36650044,-0.45658728,0.34512997,-0.1329528,0.44744503,0.34004435,-0.18117179,0.61323065,0.123504326,1.2701861,0.035224494,-0.381128,0.26600224,0.44294488,0.12123638,-0.087368116,-0.3422751,0.83689606,0.41507736,-0.3888866,-0.14523473,-0.39052165,0.14917485,0.16780373,-0.20353658,-0.17082515,-0.08672344,-0.59458554,-0.08255206,0.33610263,0.29606026,0.2966618,-0.32022592,0.03418384,0.12202915,0.105138615,0.1835399,-0.39436594,-0.119417876,0.45840263,0.21872894,-0.05971888,-0.012133727,-0.6025604,0.37110043,-0.29080725,0.04005277,-0.2841141,0.27921125,-0.34506762,-0.38324922,0.13873205,-0.18569638,0.403987,-0.3271268,-0.22035037,-0.30551094,0.44497073,0.3526816,0.05102318,0.47737363,-0.27394506,-0.039826307,-0.07898405,0.604362,0.79336315,-0.30199987,0.011831359,0.27629504,-0.1884993,-0.6634209,0.12658095,-0.40679118,0.26815513,-0.1437442,-0.14211652,-0.7788564,0.16490534,0.1953345,-0.11469392,-0.04222492,-0.60125434,-0.20806943,0.09348537,-0.22460869,-0.25863177,-0.5286052,-0.0801639,0.51384014,-0.1160863,-0.3366285,0.24796306,0.20566805,-0.008962833,-0.39806682,0.08745839,-0.12676479,0.2603386,-0.021358628,-0.46658704,-0.18483712,0.0020300562,-0.4359516,0.30464488,0.17093134,-0.29178613,0.03020132,-0.1638212,-0.014731657,1.0390477,-0.23903844,0.4080293,-0.3488178,-0.5169306,-0.89704955,-0.38165548,0.3735983,0.120305896,-0.069769,-0.6814322,0.006478053,-0.07340254,-0.15015498,-0.098053165,-0.2507996,0.36605003,0.042240016,0.48290223,-0.31340873,-0.69288623,0.10797635,0.1358533,-0.23146598,-0.5191138,0.60779005,-0.077688105,0.76718134,0.007923986,0.12192956,0.2680031,-0.30198175,-0.06380589,-0.104591794,-0.19656643,-0.38057724,0.12616035,833 -750,0.5451335,-0.019092241,-0.5739606,-0.104259044,-0.2778795,-0.11617115,-0.30906492,0.41745886,0.3745169,-0.2614949,-0.1260756,-0.06071178,0.041664008,0.34833378,-0.033323288,-0.60925364,-0.09536266,0.2109665,-0.6638203,0.50676864,-0.54931235,0.30178395,0.011482,0.5366774,-0.11467229,0.2892378,0.1727991,-0.00050128193,-0.034523293,-0.029942347,0.02348423,0.28742677,-0.7423115,0.11954935,-0.18250953,-0.34838647,0.033958122,-0.45446613,-0.11906926,-0.68061376,-0.012417739,-0.77302676,0.63040674,0.17095917,-0.3036015,-0.16645986,0.22009657,0.29808787,-0.4063821,0.1971333,0.19642499,-0.05206869,-0.20848113,-0.3462258,-0.21703061,-0.58424944,-0.36631757,-0.06456319,-0.6142036,-0.2809691,-0.19627056,0.2817295,-0.18149346,-0.05603762,-0.23991984,0.29143855,-0.40974823,-0.043840863,0.29193652,-0.18175633,0.18965873,-0.5040356,0.0029680592,-0.121408775,0.32130414,0.100603156,-0.2955404,0.25275558,0.47430816,0.5829269,0.27516693,-0.27658617,-0.28623885,-0.1533858,0.20124143,0.29367408,-0.38883036,-0.29381981,-0.3081513,-0.107630566,0.30348647,0.41882282,0.21897835,-0.36400142,0.23869632,-0.014448483,-0.17566697,0.41645083,0.52764183,-0.448727,-0.28628266,0.16376558,0.6393025,0.27187568,-0.19500384,0.15245925,-0.022296969,-0.47367257,-0.25291634,0.09983286,-0.02161004,0.29594326,-0.086591706,0.07135581,0.7441173,-0.09588457,-0.10620124,0.073887505,-0.036996678,-0.08960902,-0.44019637,-0.24627678,0.22828096,-0.59144914,-0.008349135,-0.23427846,0.52494174,0.08305781,-0.7703692,0.3095703,-0.7415457,0.08736944,-0.07802708,0.5825415,0.84068084,0.5691256,0.3020991,0.8381179,-0.3674453,0.0921692,-0.06322658,-0.2785517,0.19269548,-0.30403855,0.117271826,-0.5280521,0.2308946,-0.13638732,0.020083042,0.10380495,0.4593163,-0.59322864,-0.23754331,0.39524025,0.89430076,-0.30775914,-0.13072342,0.6304919,1.232924,0.9871838,0.101517946,1.3339653,0.4092064,-0.26892582,0.16487029,-0.27241528,-0.6859808,0.17794225,0.45104745,-0.26201037,0.29585755,-0.18138899,0.062227312,0.31993037,-0.3299511,0.034143925,-0.02259879,0.3890527,0.16842291,-0.25325435,-0.3046653,0.019047793,0.09766313,-0.14112388,0.13070184,0.3163681,-0.2967038,0.21163781,-0.123458356,1.1553613,-0.11832519,0.12968454,0.045971274,0.5116189,0.39052424,-0.09835194,0.05069393,0.48350975,0.27811986,-0.06420366,-0.46531698,0.34605104,-0.3310099,-0.5355566,-0.057725843,-0.22578144,-0.1822229,0.15048908,-0.42289373,-0.17886159,-0.054738976,-0.14318174,0.40258992,-2.5577126,-0.28515232,-0.079010576,0.3159544,-0.23570201,-0.25840247,-0.21563624,-0.31220788,0.27709904,0.18470806,0.43542153,-0.46749213,0.60784185,0.587921,-0.51776505,-0.26398632,-0.5697357,0.05573301,-0.11118264,0.46578187,-0.1316885,-0.2925865,-0.12913933,0.21088345,0.72861016,0.07161368,0.2678315,0.5378564,0.4242702,-0.059698444,0.47586572,0.01253692,0.60701597,-0.3740124,-0.33670786,0.26032802,-0.3901518,0.25409424,0.023863481,0.057705007,0.57085645,-0.47561726,-1.1129243,-0.6629869,-0.22887428,0.93514943,-0.31718123,-0.4526266,0.2085626,-0.29426453,-0.1332772,0.22829737,0.58164096,0.12126536,0.20567106,-0.7758831,0.28770596,-0.08366036,0.2364199,0.050006848,0.059159867,-0.26969436,0.7777779,-0.095701665,0.6512369,0.3064697,0.21200365,-0.22941163,-0.34373173,0.053789534,0.9290664,0.34144,-0.014295559,-0.11362083,-0.26609397,-0.16814572,-0.21843185,0.12195657,0.5972709,0.7471729,-0.12119862,0.11063381,0.25421765,0.016521422,0.04557604,-0.18194617,-0.40550983,-0.116291836,0.2695469,0.27335244,0.66371024,-0.27239597,0.46489716,-0.1655748,0.28729013,-0.21600692,-0.56051004,0.71191853,0.5414616,-0.27860495,-0.044518955,0.6712647,0.46503448,-0.56436306,0.583936,-0.7899764,-0.2567619,0.4461044,-0.13358106,-0.42463508,0.22527887,-0.3160544,0.18177618,-0.8924092,0.34770107,-0.4305566,-0.3323038,-0.31761116,-0.23713945,-3.1869986,0.2991509,-0.117500424,0.042717263,-0.3216948,-0.0643966,0.41428667,-0.5878915,-0.7731866,0.10819379,0.1894529,0.47597063,-0.14958104,0.16441019,-0.26619998,-0.30198857,-0.13637166,0.33764368,0.104032986,0.2510531,-0.012556415,-0.382459,-0.13287094,0.07129065,-0.5258145,0.105760254,-0.63579494,-0.35140216,-0.20467259,-0.5212119,-0.09374441,0.5665321,-0.54519475,0.08112062,-0.31944275,0.15051065,-0.22589478,0.30305248,0.09520976,0.28073162,0.21322256,-0.06630896,-0.059683297,-0.23738518,0.23130694,-0.012235623,0.23761702,0.1402562,-0.095838346,0.10305248,0.4500968,0.8890623,-0.19324547,0.95383584,0.28069392,-0.23245849,0.40161273,-0.37707454,-0.20559205,-0.696421,-0.4133999,-0.29109973,-0.38758653,-0.48573992,0.2180168,-0.3093057,-0.8384342,0.5817142,0.02066196,0.310678,0.09560101,0.36892474,0.4224301,-0.30012205,-0.12739672,-0.16208237,-0.20948625,-0.6124991,-0.2500174,-0.6207049,-0.49749047,0.3084892,0.9189005,-0.33939725,0.07931647,0.064875096,-0.13396788,0.06729203,0.26569113,0.11658122,0.14218205,0.5704086,0.10228666,-0.6063846,0.1292657,0.06275673,-0.18040434,-0.565962,0.25082144,0.71765953,-0.95163167,0.8487904,0.2659876,0.187341,-0.01050509,-0.60861784,-0.2701245,0.10304849,-0.11211049,0.6094475,0.23688897,-1.0068517,0.4013027,0.6368085,-0.55006826,-0.73329663,0.28902647,-0.093069665,-0.09883021,-0.2584233,0.38766834,0.22108942,-0.15239576,-0.15399978,0.3207526,-0.4442899,0.23399507,0.12992924,-0.17083177,0.34518427,-0.16005525,-0.3366501,-0.8223039,0.05097935,-0.6482217,-0.35455805,0.35228527,-0.16303381,-0.22388,0.22766858,0.2354123,0.37460917,-0.26145434,0.20902522,0.016596574,-0.3984135,0.3640237,0.452582,0.3699187,-0.24895416,0.50904655,0.15431732,-0.31806052,-0.008008071,0.022542467,0.30776703,-0.10509924,0.3967877,-0.069439396,-0.16279767,0.35923192,0.6499478,0.09044867,0.38622475,0.055321082,-0.0345463,0.45621064,0.007621075,0.087151654,-0.07248225,-0.38496172,-0.045762602,-0.015805671,0.2170337,0.4673904,0.3778218,0.12729628,0.1600652,-0.108078994,0.012499461,0.2852967,-0.0047336724,-1.078753,0.39069876,0.16031271,0.83392656,0.5768107,0.06347652,-0.23093511,0.61115205,-0.14265361,0.021203332,0.4657653,-0.037591264,-0.4691815,0.7324734,-0.6301457,0.256957,-0.27138665,0.04431421,0.17693521,0.12040249,0.49783012,0.8571258,-0.16640083,0.02205825,-0.010965826,-0.084448166,-0.039684337,-0.18131968,0.07219201,-0.32367605,-0.46859604,0.8489063,0.33608928,0.4290508,-0.4108786,-0.14688186,0.16260011,-0.26421735,0.19989306,-0.15299727,0.0015232873,0.12157146,-0.37197164,-0.22982852,0.6462276,0.1955893,0.10247338,-0.087737136,-0.35125384,0.16394028,-0.28280523,-0.010273833,0.07548773,-0.5783071,-0.042103786,-0.3027491,-0.5497428,0.46659505,-0.014473705,-0.13468814,0.12370319,0.11618592,-0.06465228,0.56962115,-0.0625236,0.7124697,0.03870722,-0.2237965,-0.15641512,0.22835793,0.1056255,-0.24847497,0.049345758,-0.31162325,-0.025343575,-0.6096498,0.6118292,-0.101276174,-0.43350792,0.23777883,-0.08370919,-0.075608,0.4879419,-0.16109739,-0.31022966,0.052058097,-0.2951321,-0.38251993,-0.21077521,-0.1949543,0.27873573,-0.024198946,0.002835448,-0.13171102,-0.3217819,-0.16423506,0.46830213,-0.020746896,0.2192631,0.39389345,0.19030823,-0.2663134,0.15023495,0.27376702,0.41879824,0.09205316,-0.007355603,-0.14300968,-0.4976763,-0.43423033,0.046456516,-0.13004194,0.22267923,0.0938867,-0.3925143,0.97900784,0.13498427,1.3303267,-0.026663749,-0.3741047,-0.00245117,0.5280666,-0.18607427,0.0065873633,-0.3890036,0.87057006,0.76256996,-0.21485662,0.02013683,-0.517003,-0.29119813,0.22051191,-0.5430756,-0.06725682,-0.08672742,-0.72590375,-0.32557267,0.14134362,0.24320476,0.07164424,-0.060250357,0.13987456,0.08490651,0.06210752,0.3013075,-0.6497188,-0.2621252,0.21603711,0.512534,-0.100866064,0.05044718,-0.33804387,0.265223,-0.8213624,0.18448837,-0.48010466,0.07115932,-0.32321882,-0.5348491,0.036277153,-0.020609388,0.26900223,-0.21877326,-0.42677256,-0.01427055,0.42671487,0.046806075,0.11511051,0.7381394,-0.28976512,-0.022785535,0.13695966,0.54207015,1.1612915,-0.33591813,-0.19542393,0.34025797,-0.30920893,-0.7386315,0.37821978,-0.5968656,-0.057251792,-0.1077935,-0.48043635,-0.49101478,0.18726753,0.12462835,-0.032348495,-0.08613001,-0.6383561,0.020557614,0.25856632,-0.1376378,-0.1328783,-0.055169936,0.33651003,0.9623157,-0.2737016,-0.27344707,0.09065027,0.34039146,-0.35574138,-0.5883519,-0.09939223,-0.3863284,0.32940677,0.3064818,-0.3762713,0.09865616,0.061365385,-0.58732915,-0.013855373,0.26282027,-0.31458202,0.243656,-0.35764897,0.0045569954,0.7771409,-0.034656584,-0.039658573,-0.3869591,-0.5747249,-0.9612839,-0.2533912,0.2677744,0.11768882,-0.048594154,-0.557439,0.14354406,-0.1637999,-0.32832277,0.16612819,-0.4698652,0.25831458,0.078257285,0.66033256,-0.30597916,-0.97343373,0.11610855,0.2730501,0.12123306,-0.6783141,0.5607135,-0.18396422,1.0860903,0.03613825,-0.23065832,0.007914396,-0.5968185,0.18170181,-0.42821252,-0.028941255,-0.6048088,-0.01984295,834 -751,0.3024558,-0.14345345,-0.36237445,0.054663062,-0.17828281,0.079571635,-0.31098145,0.39965072,0.30615476,-0.4620025,-0.14300631,-0.3233953,0.03256344,0.30245438,-0.14598252,-0.59937716,0.052761417,0.17697228,-0.62744725,0.524141,-0.3739321,0.29880422,0.16720422,0.310629,-0.0726579,0.057195153,0.23012242,-0.14801146,0.19264163,-0.09221762,-0.00013955739,0.16865963,-0.78582764,0.24567135,-0.33651355,-0.43461707,0.16017789,-0.6089016,-0.53262794,-0.855662,0.32198027,-0.7978828,0.65620714,0.3929865,-0.10082364,0.10400099,0.09021847,0.36772186,-0.21762389,0.03524414,0.25544998,-0.2376252,-0.0011806213,-0.40718985,-0.22594555,-0.27579162,-0.63068956,0.09748824,-0.45436093,0.008025197,-0.29108948,0.24963456,-0.16166407,0.03898605,-0.17166358,0.42234242,-0.39168966,0.053515073,0.24706186,-0.2071111,0.46570382,-0.64113396,-0.021845102,-0.16507703,0.31056574,-0.43499535,-0.28422683,0.22505966,0.26562503,0.55629885,-0.041243132,-0.28459147,-0.23158683,0.09744824,0.14251265,0.4982701,-0.20239513,-0.5282973,0.026299072,-0.011136676,0.116184585,0.07588924,0.08889042,-0.44611084,-0.1254366,-0.23058695,-0.084919624,0.47298166,0.6836004,-0.36505702,-0.28910714,0.2313419,0.6796254,0.16294795,0.10532678,0.11151516,0.06942455,-0.7016183,-0.21648768,0.07582581,-0.2825229,0.4777717,-0.15878445,0.20413853,0.62932956,-0.09691548,-0.18308392,0.21722382,-0.12280235,0.052980974,-0.2241984,-0.27479425,0.32894677,-0.36736026,0.11742993,-0.25824726,0.6916293,0.2541596,-0.6977843,0.22721726,-0.69721985,0.20321208,0.1066755,0.5543554,0.5788876,0.59531265,0.27948156,0.871829,-0.5366559,0.12931904,-0.058207273,-0.24181388,0.13998124,-0.24949224,0.055275753,-0.3887238,-0.18595362,-0.28944433,-0.14417475,0.247042,0.24841824,-0.56031704,-0.059077825,0.16485223,0.79997975,-0.21745157,0.031346437,0.74292445,1.0038264,0.94965357,0.05407754,1.3639382,0.23409103,-0.24308611,0.093234666,-0.1073122,-0.8619057,0.2765381,0.34876654,0.07436861,0.17201479,0.114560716,0.00979275,0.40929848,-0.6956264,-0.012773241,-0.22430478,0.10546044,-0.005821118,-0.36626816,-0.24400638,-0.13565412,-0.10621865,-0.049060818,0.21695104,0.21680689,-0.22068399,0.30856034,0.15929678,1.2270983,-0.0014407497,0.09453594,0.09579469,0.35994127,0.30966124,0.07924971,-0.049973626,0.16975302,0.27530092,0.13092205,-0.57667124,0.12578826,-0.017099533,-0.38562787,-0.22173034,-0.14846052,-0.047303922,-0.029570542,-0.412848,-0.21243161,-0.0656682,-0.1795246,0.4286638,-2.5010228,-0.13876547,0.11824182,0.3991894,-0.19303305,-0.28900844,-0.16040275,-0.54127085,0.64231724,0.30092126,0.40294918,-0.7400497,0.3843392,0.52506185,-0.7615254,-0.10604771,-0.66697764,-0.13134922,0.042745676,0.24376018,0.29786363,-0.031831805,0.09038765,0.114689216,0.49264145,-0.13846298,0.038858574,0.2689282,0.49050567,-0.0668796,0.36951828,-0.029910726,0.5625816,-0.4771104,-0.28912002,0.5083076,-0.34930676,0.11818942,-0.15761405,0.013458353,0.4461227,-0.47356975,-0.969068,-0.77360344,-0.3094376,0.85463834,0.032392584,-0.42258245,0.12712294,-0.18567327,-0.21868967,-0.06016433,0.7865347,-0.11228049,0.11474597,-0.872209,-0.15352899,-0.1052172,0.42441082,0.05495315,-0.12739,-0.62908465,0.65848225,-0.032923676,0.30495846,0.62651974,0.14863183,-0.31583259,-0.5595473,0.10206643,0.83877784,0.27885097,0.18211314,-0.2944338,-0.14766718,-0.16512808,-0.008036444,-0.16630442,0.79103416,0.55792457,-0.22426976,0.028616726,0.23408347,0.21052696,0.1298087,-0.2810782,-0.37076995,-0.18738535,0.05614312,0.6387606,0.87698716,-0.25032094,0.056396767,-0.1294851,0.49016154,-0.20543051,-0.43472508,0.72778934,1.2134647,-0.07431719,-0.05332005,0.7326529,0.3007841,-0.19630536,0.5022495,-0.6175162,-0.5467578,0.40311053,-0.15678619,-0.50841963,0.29506114,-0.27862695,-0.0078832265,-0.76181537,0.3513196,-0.45227286,-0.32571566,-0.6545519,0.014897608,-3.3965793,0.24293217,-0.34068334,0.112984166,-0.16366665,0.048602104,0.1151782,-0.35411647,-0.5573504,0.2835198,0.23595619,0.5580434,-0.22495858,0.25269163,-0.28375444,-0.21798769,-0.38777953,0.28029102,0.28285983,0.14347826,0.049768236,-0.44504753,-0.08250684,-0.17114235,-0.31967145,0.0978458,-0.64108306,-0.21926561,-0.27464744,-0.5632817,-0.38091767,0.6731837,-0.45824617,-0.058621205,-0.21551703,-0.01214705,-0.053988934,0.34768316,0.04199995,0.19660242,-0.111272685,-0.07337026,-0.07003099,-0.067349195,0.36428392,0.12444652,0.10888402,0.36482954,-0.09110569,0.03660256,0.38516933,0.8021211,-0.17062873,0.9429074,0.39452422,0.037846167,0.34889892,-0.10557736,-0.46569267,-0.5314878,-0.14544985,-0.112553686,-0.3882782,-0.46027103,0.10690035,-0.46519873,-0.71718967,0.51774716,-0.025688943,-0.16654569,0.22264364,0.23636581,0.4164381,-0.4293865,0.024436556,-0.07578754,-0.21340516,-0.51507384,-0.21375522,-0.5588281,-0.56320727,-0.05728442,1.0920489,-0.059261765,0.09616877,0.20044602,-0.037871484,-0.048889976,0.2948267,-0.09454783,0.24382159,0.6527299,-0.003637222,-0.80926555,0.5979138,-0.028653502,-0.41343468,-0.68550366,0.41921595,0.6652405,-0.77762955,0.6824594,0.37728485,0.0068014264,-0.043371778,-0.5611069,-0.30708158,0.0020554662,-0.2009057,0.43001983,0.17438892,-0.6932929,0.36220407,0.28297532,-0.45032963,-0.7982078,0.5609405,0.06572976,-0.50515246,0.11799681,0.41067788,0.0056760726,0.07516423,-0.2154143,0.21596439,-0.30278483,0.37636536,0.15327889,-0.07754281,0.17728941,-0.22470053,-0.090528265,-0.85248876,-0.013408803,-0.57809347,-0.36486334,0.23107004,0.14320903,-0.1233426,0.15627858,0.10777332,0.46587133,-0.18225679,0.15863106,-0.17183271,-0.27944794,0.32762903,0.30594906,0.36530966,-0.4194746,0.6310413,-0.15254542,-0.2133952,-0.17995879,0.2526251,0.46670386,-0.09097731,0.4605028,-0.023999132,-0.009418139,0.32365793,0.7747571,0.11010531,0.19639191,0.05020792,-0.024640927,0.3721512,0.17384604,0.11386897,0.035159286,-0.6852669,0.22625223,-0.27980846,0.06116601,0.50825596,0.07391395,0.335254,-0.1946822,-0.4736728,-0.011350164,0.40981498,0.23314212,-1.0539215,0.22264692,0.10589591,0.80303,0.5358258,0.10993035,0.15093143,0.62101835,-0.15711334,-0.04849094,0.2672107,-0.03712827,-0.31289053,0.5200051,-0.6751138,0.369319,-0.04987675,-0.029986624,0.08520154,-0.078871235,0.31029564,0.9263972,-0.22320469,0.06338432,0.025354909,-0.120851465,0.042908356,-0.44083244,0.10742851,-0.39519817,-0.3816571,0.7704048,0.55867386,0.369875,-0.20670532,0.05313375,0.148004,-0.20062438,0.15038145,0.048086863,0.03464598,-0.044120345,-0.6288933,0.09953013,0.6812774,-0.021875607,0.12651423,-0.054371737,-0.2547572,0.30790144,-0.2853768,-0.17384185,-0.24553753,-0.8862705,-0.14230584,-0.47150058,-0.15229066,0.5310715,-0.102369785,0.29162204,0.30448556,0.16232938,-0.30940574,0.5406224,-0.030781802,0.7941317,0.21569674,5.371754e-05,-0.41645366,0.30948493,0.119363435,-0.23498178,0.06574322,-0.17471798,0.10833946,-0.40937102,0.425623,-0.024142586,-0.2678866,0.11987838,-0.08616496,-0.050826706,0.638381,-0.26372454,-0.22314739,0.2901119,-0.13148405,-0.17220828,-0.21265274,-0.15059341,0.2064724,0.29131156,-0.005600214,-0.06806799,-0.09181289,-0.22957699,0.4627668,0.07499523,0.45544484,0.29918316,0.1199814,-0.38080418,0.07757099,-0.00831919,0.64541245,-0.109021194,-0.23122412,-0.048613556,-0.6017916,-0.4000065,-0.07307872,-0.09913705,0.11748329,-0.041757636,-0.099858314,0.7788102,0.24052726,1.1505262,-0.073685415,-0.34774286,0.19652775,0.4478833,0.02532378,-0.1323893,-0.630961,1.053399,0.49337274,-0.12016089,-0.041163903,-0.19133282,0.113924116,-0.035886623,-0.21038836,-0.06716626,0.008143317,-0.6511474,-0.23534265,0.31336433,0.3413513,0.18535465,-0.11720505,0.14242037,0.27793986,-0.050364103,0.07982468,-0.6174142,-0.29116338,0.2886512,0.32958964,-0.052317917,-0.039535,-0.47720873,0.3994443,-0.39478174,-0.09771672,-0.3312268,-0.033258878,-0.39674044,-0.23982143,0.2383932,-0.116625294,0.3821861,-0.4610294,-0.31320626,-0.14113697,0.2884188,0.26579395,0.25797677,0.6632335,-0.12330063,0.075765185,-0.06834293,0.6750529,0.9775806,-0.5842037,-0.1515287,0.531264,-0.43558884,-0.43955657,0.35416597,-0.36421162,-0.031388145,-0.12140925,-0.17863461,-0.440029,0.17331325,-0.05779022,0.17491642,-0.11887724,-0.86359704,-0.1411334,0.45270523,-0.48328003,-0.33981782,-0.4141545,0.32769597,0.73341656,-0.14182237,-0.37482306,0.24587242,0.2284005,-0.32168505,-0.63858867,-0.025380492,-0.31268156,0.2069497,0.22731112,-0.3155988,-0.15384386,0.19387498,-0.65789413,0.085651144,0.069252774,-0.34965894,0.05219764,-0.33979255,-0.11486717,0.93720776,-0.3559341,0.14418499,-0.57757765,-0.5634212,-0.99469936,-0.26298752,0.6559439,0.29431075,-0.017169205,-0.62150866,-0.17205088,0.0056369076,-0.27154657,0.061464887,-0.18119612,0.47983837,0.087930426,0.6037077,-0.24882795,-0.9804698,0.13579991,0.11780889,-0.2076923,-0.52990156,0.39844593,0.32185686,0.9322554,-0.032407165,-0.055473067,0.44136745,-0.6203864,0.076118864,-0.32527834,-0.13927136,-0.7053563,0.06610025,839 -752,0.44597057,-0.3487859,-0.38750377,-0.10546681,-0.17697874,0.062443897,-0.31760454,0.568277,0.32759148,-0.56448275,-0.10819196,-0.10570064,-0.0614992,0.15663274,-0.09466295,-0.6441329,0.1265483,0.018252978,-0.491471,0.71965086,-0.50083345,0.2810052,-0.14599913,0.28577408,0.18442766,0.26611632,0.16025008,0.112871334,0.13725914,-0.05451015,0.065372124,-0.03184321,-0.42620105,0.31091675,-0.27558425,-0.5123148,0.13117594,-0.35801828,-0.4662466,-0.8541867,0.26569638,-0.6463105,0.5862992,0.021638999,-0.24793845,0.10802789,0.11364249,0.4109302,-0.2612345,0.08185817,0.14300863,-0.095755264,-0.023788564,-0.15432812,-0.27941975,-0.5910569,-0.46860653,-0.123032674,-0.45563066,-0.2801169,-0.14094886,0.24222524,-0.29270518,-0.10489294,-0.16109112,0.5539917,-0.48546675,-0.1327216,0.2742835,-0.09973567,0.20313047,-0.9185852,-0.33014405,-0.08766179,0.10113322,-0.04332942,-0.2584735,0.34038082,0.0969541,0.38803875,0.15428437,-0.17370635,-0.099843994,-0.13431484,0.055331785,0.5946508,-0.09809725,-0.23980355,-0.19218826,-0.14487658,0.3661037,0.168007,0.15117522,-0.35430205,0.09309047,-0.0017622411,-0.28834373,0.41245052,0.55191654,-0.33102766,-0.18677293,0.09936735,0.5824739,0.17076096,-0.24594954,0.102064446,-0.069931485,-0.3840756,-0.21031827,0.15767087,-0.052798536,0.4148855,-0.17179702,0.37655511,0.45243028,-0.1573026,0.18537919,-0.028676685,0.035888486,-0.03622272,-0.3659221,-0.4911266,0.35062996,-0.54266655,0.24723238,-0.4315082,0.5365931,0.22372842,-0.28837055,0.26175755,-0.5256577,0.076349154,0.032921672,0.52791506,0.77690315,0.25908226,0.19983871,0.76101977,-0.35911143,0.005384431,-0.08039828,0.11913383,-0.091355324,-0.1195724,0.29505017,-0.44707435,-0.056676902,-0.030259756,0.02283549,0.13931558,0.31488273,-0.56886715,-0.15925233,0.123403735,0.8446328,-0.2400411,0.24345255,0.8155075,1.3416593,0.8781891,0.007421395,1.2074319,0.4321278,-0.29850295,-0.023869194,-0.18449834,-0.48137525,0.1979402,0.37602574,0.3001619,0.28824055,0.09844327,-0.31572625,0.5804382,-0.49050763,-0.05335302,-0.15584995,0.043616597,0.05128829,-0.14437227,-0.47455317,-0.09648777,0.029519321,-0.13300836,0.17797206,0.20944087,-0.3311901,0.33254766,-0.083549194,0.8112881,-0.24021663,-0.073882416,0.1277444,0.57361025,0.28855446,-0.11767837,0.21350068,0.20724848,0.45755735,-0.058089834,-0.6549037,0.28961536,-0.34535614,-0.3991672,-0.1578959,-0.30648977,-0.17794646,0.07324968,-0.5011812,-0.25375974,-0.103015386,-0.12471425,0.15459314,-2.6999242,-0.34586424,-0.20429918,0.37517786,-0.13344964,-0.2558195,-0.08053573,-0.36758316,0.55303335,0.28988913,0.4594504,-0.5104437,0.4741698,0.5649616,-0.58398545,0.041314423,-0.57381016,-0.098443344,-0.08319202,0.45245644,0.06321129,-0.11192021,0.088666745,0.26522562,0.5781265,0.015867455,0.13051628,0.1611335,0.43388388,-0.32648566,0.33508873,0.05610188,0.49347907,-0.5347064,-0.16137563,0.31007275,-0.44629952,0.17706992,-0.3018071,0.15873139,0.566117,-0.28349793,-0.6939316,-0.5769767,-0.21046403,1.0290467,0.091868564,-0.5731263,0.07268231,-0.47557443,-0.2157366,-0.1468474,0.76256853,-0.06482499,-0.047150455,-0.72237265,-0.05770318,-0.12341015,0.11351877,0.08999845,0.05816755,-0.5812553,0.8482701,-0.056753658,0.4728405,0.37379107,0.29543197,-0.2177671,-0.36926624,0.10917965,0.4878756,0.5458556,0.21717459,-0.15734029,-0.035606265,-0.13895157,0.028028946,0.14108677,0.747131,0.6568269,-0.2214177,0.12391293,0.25463817,0.020947745,0.12702082,-0.27032205,-0.43150952,-0.26876563,0.24355537,0.50041527,0.2707592,-0.018278036,0.10060526,-0.02439588,0.21076657,-0.3822374,-0.4601157,0.4903239,1.0000865,-0.247969,-0.16134249,0.49638116,0.47100565,-0.12075615,0.46328095,-0.8155476,-0.38105598,0.39489397,-0.08813242,-0.37441522,0.07849479,-0.4081652,0.14110552,-0.83658224,0.33743307,-0.52835214,-0.4933958,-0.6876049,-0.25824264,-3.2594032,0.22476038,-0.37377247,-0.01984798,-0.2236904,-0.24244978,0.2935079,-0.5444568,-0.41713163,0.2988644,0.01950118,0.5818952,-0.0259776,-0.114586964,-0.32850665,-0.3108115,-0.35788426,0.18781258,-0.10357906,0.31592605,-0.023552785,-0.37243235,0.16171323,-0.017266925,-0.5398166,-0.047359534,-0.5253497,-0.19851485,-0.31889185,-0.60875475,-0.1815376,0.5946442,-0.19148317,0.1322311,-0.21694987,0.01027585,-0.13136207,0.37546495,0.18558781,0.2746912,-0.017527647,-0.044172738,0.023036055,-0.25333256,0.0772814,0.27367938,0.1082668,0.34732917,-0.115273386,-0.030968845,0.31197488,0.5661255,0.013241479,0.88469416,0.2724671,-0.10171269,0.5129839,-0.17175037,-0.33989444,-0.5152577,-0.45266804,-0.027880916,-0.23894164,-0.52307117,-0.056303903,-0.39808756,-0.6580144,0.4098538,0.052886106,0.2132187,0.18513654,0.3110595,0.379209,-0.19371851,-0.02295059,0.072476074,-0.026976297,-0.34873983,-0.33020562,-0.6533324,-0.5391668,0.093735024,0.77609104,-0.20836179,0.09378362,0.27255422,-0.24784502,0.09515459,0.35162777,0.10094671,-0.08005706,0.399766,-0.0392176,-0.617532,0.37735075,0.13571933,-0.3051095,-0.6135947,0.3683789,0.67352873,-0.6545282,0.6128958,0.30683783,0.069665484,-0.4153978,-0.49004358,-0.22090855,0.06369646,-0.2849215,0.4329931,0.039240763,-0.7114898,0.33316085,0.22308527,-0.1900915,-0.6907702,0.7256603,-0.090236075,-0.28710184,0.034682926,0.36457917,0.18981896,0.08310329,-0.1215617,0.3277783,-0.29062954,0.26909333,0.120705254,-0.06699438,0.51920897,-0.083010904,-0.084408484,-0.7052006,0.01153178,-0.6316774,-0.1895648,0.29477382,-0.13166912,0.08955535,0.25362805,0.011920198,0.34184724,-0.09275654,0.19681717,-0.18134683,-0.4583254,0.39392406,0.41991886,0.25276443,-0.22546552,0.70352143,0.037024107,-0.11537511,-0.069068044,0.29590195,0.33520702,0.22057009,0.6434809,-0.19492033,-0.091310054,0.11403137,0.9025891,0.2960127,0.38868448,0.1315545,-0.053215064,0.23728015,0.123602696,0.04941137,0.10698053,-0.24967244,-0.087599464,-0.22144292,0.25200891,0.3934158,0.0065938463,0.27567786,-0.07107298,-0.32378456,0.0077345646,0.27681637,0.04411114,-1.3349149,0.35766786,0.12992083,0.79779977,0.43184692,0.12698731,-0.26013067,0.47062048,0.08705267,0.005898751,0.24512036,0.08863216,-0.31382316,0.626324,-0.45161492,0.3900823,-0.08795253,0.062169526,-0.023928128,-0.07672808,0.529353,0.80424094,-0.2374693,-0.03931034,0.029849874,-0.2724768,0.077288866,-0.46337092,0.17173988,-0.33357114,-0.4029569,0.53604025,0.5077675,0.32125786,-0.30882385,0.02403593,0.0053895293,-0.14474581,0.1302378,-0.054593746,0.09018278,-0.18462484,-0.5956943,-0.18233758,0.40925968,-0.29913116,0.06709986,0.14041448,-0.3185733,0.14059983,0.1132176,0.1355761,0.117107004,-0.82376087,0.099867396,-0.32660568,-0.35352406,0.56546545,-0.17054719,0.20124935,0.32766873,-0.031135999,-0.18444887,0.37552974,-0.08012491,0.67072105,-0.034824204,-0.1661562,-0.399668,-0.0060166763,0.3442413,-0.31723896,0.13593996,-0.24573898,0.19492318,-0.5192921,0.5190221,0.066151254,-0.09759111,0.2906806,-0.13548523,-0.05761939,0.55204874,-0.18300197,-0.206899,0.18604572,-0.24546412,-0.30567595,-0.39524728,-0.049596127,0.26624358,0.056024905,0.3606925,-0.18766268,-0.2721317,0.048117336,0.3368191,0.19482501,0.18832889,0.4101658,0.06231784,-0.44188616,0.11640909,0.056962278,0.42912865,-0.11207753,-0.06931421,-0.06969898,-0.6420915,-0.4537974,0.10540729,-0.0866949,0.37977993,-0.017981797,-0.23840731,0.79294,0.15050325,1.0263944,-0.14495239,-0.4323917,0.09493317,0.65700257,-0.19669801,-0.030176204,-0.24621226,0.9338289,0.56657577,-0.051800694,0.010727768,-0.27690825,-0.018965263,0.29141444,-0.25205716,-0.14729832,-0.17059389,-0.7076301,-0.22992887,0.33285162,0.41341957,-0.075502,-0.04300103,0.13562606,0.2719317,0.04080069,0.34138563,-0.7520683,-0.18419005,0.3094128,0.13600752,-0.07070535,0.17277354,-0.34228188,0.3678524,-0.66958946,0.17776379,-0.34065452,0.041208666,-0.2426481,-0.3283803,0.26980448,0.002639789,0.41200414,-0.4898669,-0.38837022,-0.2819901,0.31096298,0.12301154,0.19268438,0.5614169,-0.13371992,-0.01274671,0.040211957,0.56718105,1.0444006,-0.21521385,-0.11787248,0.31480926,-0.6795384,-0.6019668,0.12052222,-0.33741543,0.04307052,-0.003044642,-0.2921593,-0.47253132,0.17221618,0.20281652,0.10336682,0.054432027,-0.66450024,-0.2702548,0.13507722,-0.41865274,-0.22342697,-0.39958674,0.26280215,0.58534914,-0.30059066,-0.1969423,-0.055002388,0.39212766,-0.2947927,-0.6552042,0.12940177,-0.29397088,0.47812277,-0.0008767247,-0.16853593,-0.19374742,-0.050651625,-0.4471522,0.041464202,0.0886091,-0.32595205,0.0030195438,-0.288957,-0.1672708,0.7040118,-0.08219899,0.10079013,-0.5476248,-0.52986676,-0.78981024,-0.47135532,0.28969103,0.46093014,-0.04719699,-0.5680948,0.08070871,-0.1338228,0.15015809,-0.027145097,-0.1386393,0.38894588,0.16185577,0.5441018,-0.10933207,-0.8647524,0.19591087,0.1578472,-0.10593875,-0.25090706,0.38072416,-0.009754405,0.898667,0.1244775,-0.027420044,0.08186034,-0.34856832,0.26857427,-0.27144337,-0.29884955,-0.7437048,-0.03164486,842 -753,0.38696644,0.0537536,-0.36227766,0.06936265,-0.09627478,-0.016592402,-0.18792571,0.13681544,0.25132173,-0.50558037,-0.36685625,-0.3766006,0.047983453,0.11099394,-0.16930349,-0.6632842,0.0005340668,0.18723664,-0.40491676,0.89932644,-0.23687807,0.556551,0.16687049,0.22598106,0.26136658,0.3964275,0.52176166,-0.071550384,-0.21799609,-0.052142043,-0.004582671,-0.17091945,-0.75639164,0.20735529,-0.3534417,-0.44035152,0.0015912607,-0.61346954,-0.5523326,-0.86583316,0.35894442,-0.87656814,0.4582392,0.1093264,0.03235432,0.21730152,0.16554919,0.3862065,-0.13202102,-0.044811763,0.12783402,-0.012173552,0.058790587,-0.15517512,-0.6056949,-0.24746796,-0.68575424,0.014290154,-0.36683705,-0.15464112,-0.34585956,0.062477347,-0.25397488,0.0135317035,-0.10968356,0.073593885,-0.6316467,-0.25365368,0.2949192,-0.22234155,0.11089395,-0.6388805,-0.29565448,-0.27628613,0.19560693,-0.38739568,0.032130573,0.5322829,0.20089601,0.4251304,0.1604101,-0.238914,-0.13439831,0.024023045,0.20757815,0.65013665,-0.14912659,-0.13560079,-0.0900166,-0.09688605,0.5877237,0.30378902,0.23168142,-0.22547904,-0.019855198,-0.32994902,-0.14677607,0.32650062,0.5814267,-0.23201217,-0.3984407,0.24707463,0.67886615,0.25626186,-0.10666117,0.032576486,-0.1260783,-0.27996537,-0.24379492,0.40418416,-0.25473085,0.5476188,-0.038905896,-0.055890404,0.7163131,-0.37508965,0.19166991,2.0384789e-05,-0.09944428,-0.12062876,-0.117442384,-0.2138199,0.49383467,-0.41766402,0.24707428,-0.42495522,0.5047913,0.35978776,-0.54886836,0.44671646,-0.6120596,0.17667617,0.14175305,0.7942845,0.57531273,0.27280584,0.4608862,0.83580106,-0.46980813,0.17102954,-0.11919455,-0.21756795,-0.046628837,-0.13365628,0.053657345,-0.27939427,-0.04875604,-0.034876864,-0.3444188,0.02826383,0.31847346,-0.64422727,-0.015251017,-0.1346848,0.68993,-0.3069189,-0.08340512,0.8252086,1.0813878,0.9588137,0.06633036,1.4645146,0.3873409,-0.2778734,-0.030518936,-0.3267631,-0.56015134,0.11510616,0.47725213,-0.39074707,0.6434005,0.2392501,-0.08842056,0.035654083,-0.54321605,0.06985566,-0.24875942,0.053658787,-0.178943,0.018563004,-0.35375646,-0.3414592,-0.1091951,0.03101359,0.3068396,0.24858025,-0.23755826,0.21669373,0.18718857,1.5507983,-0.013431733,-0.014202421,0.21941432,0.55805784,0.22356778,-0.08969641,-0.029629707,0.34808117,0.32578817,-0.07884441,-0.53154916,-0.033440147,-0.41071928,-0.3402353,-0.1365696,-0.33730757,0.13327853,0.15957157,-0.11327985,-0.018657446,-0.04619835,-0.45106778,0.5037051,-2.1848128,-0.18585123,-0.25129473,0.34515798,-0.28351778,-0.29609215,-0.37971914,-0.51480055,0.5229927,0.26171115,0.3592051,-0.6835644,0.13509999,0.66479516,-0.7528585,-0.104443185,-0.62774277,0.18179692,-0.114117034,0.3973789,-0.06774262,0.08040611,0.16438825,0.15775071,0.40388414,0.19415575,-0.017145528,0.35090148,0.5218719,0.10049497,0.4712394,0.2842015,0.44342157,-0.37934765,-0.1954812,0.586817,-0.401806,0.55778426,-0.24596158,0.01602565,0.4163281,-0.52628225,-0.72310245,-0.5426998,-0.7889957,0.9983393,-0.1424252,-0.5059783,-0.012738306,0.17984955,-0.069916695,-0.2216827,0.6398088,-0.29573697,-0.021695204,-0.580508,-0.21048339,0.051003125,0.2149284,-0.00073632825,0.2643274,-0.5479875,0.7235994,-0.22883788,0.20262307,0.29199558,0.35847062,-0.18178004,-0.59547055,0.2657854,0.8319452,0.4503446,0.087573916,-0.2408035,-0.23316382,-0.17443839,-0.29605624,0.011148792,0.43031633,0.7592469,-0.28712532,0.0020750384,0.56516165,0.16433099,-0.011805227,-0.16672502,-0.4092855,-0.23587006,-0.2044234,0.61650026,0.58810043,-0.28864706,0.2506271,-0.20240799,0.26602787,-0.079170465,-0.40381643,0.4559895,1.0600979,-0.15486155,0.03027346,0.51941836,0.34465247,-0.35233223,0.5749424,-1.0119622,-0.30004656,0.4903974,-0.055623464,-0.4924534,0.2276516,-0.18663393,0.004003346,-0.73143506,0.5212414,-0.21110779,-0.06870547,-0.49551594,0.041625556,-1.9616557,0.070006825,-0.3404735,-0.10134165,-0.17803563,-0.14743748,-0.18469238,-0.52343404,-0.6628894,0.34458795,0.0657821,0.42533132,-0.062717065,0.17634234,-0.27263921,-0.34077108,-0.4557092,0.23908314,0.30951816,0.49343997,-0.4634919,-0.31423488,0.056547496,-0.18476525,-0.56613576,-0.051595263,-0.5217416,-0.3297483,-0.4544767,-0.7300698,-0.25819933,0.6580562,-0.47291204,-0.050762,-0.25429422,-0.09724752,-0.061068222,0.3727114,0.37433258,0.28745073,0.16757672,-0.04786941,-0.074085556,-0.29051566,0.4903871,0.33372322,0.044068363,0.43079665,-0.25008252,0.1592255,0.11656074,0.61356163,-0.103126206,0.7539998,0.36342618,-0.27724102,0.36106735,-0.27450377,-0.30832735,-0.8113404,-0.41284806,-0.16678514,-0.23176321,-0.8738226,-0.20007579,-0.4282997,-0.7795674,0.534243,0.000686132,0.38036442,-0.053791825,0.1513439,0.45087308,-0.29195124,0.1299002,-0.019849231,-0.08479928,-0.51947886,-0.37347132,-0.7185182,-0.48363048,0.39347804,0.57107204,-0.128885,-0.24746059,0.2174205,-0.1964953,0.14219771,0.12774669,-0.007621592,-0.007228026,0.5538191,0.03667123,-0.5015361,0.56248194,0.31360328,-0.32698077,-0.6459141,0.35049403,0.7527634,-0.641614,0.64312416,0.37671998,-0.079643086,-0.11069936,-0.47216034,-0.28328118,-0.12343714,-0.24760197,0.24093515,0.078205556,-0.43376416,0.24537157,0.13373213,-0.38750556,-0.72489583,0.7713921,-0.05612909,-0.20576707,0.05719516,0.46912336,-0.06150073,0.07114954,-0.43860105,0.2111457,-0.3401955,0.14266488,0.3800489,-0.09295236,0.4723375,-0.08827007,-0.3444293,-0.8490327,0.5121292,-0.48653844,-0.33483604,0.243087,0.046953864,-0.2839864,0.30279994,0.31488153,0.36378703,-0.2260753,0.20252657,-0.041085456,-0.13356115,0.2326764,0.2947625,0.44769844,-0.4280521,0.6714449,-0.048345704,-0.16051602,0.12585285,0.11217614,0.28599647,0.027708054,0.03115047,0.25699103,-0.061058503,0.120325215,0.51101124,0.24366505,0.2247946,0.3337397,-0.10682117,0.41269785,0.18454851,0.29249835,-0.054904107,-0.4265073,0.13984941,-0.03734318,-0.15761775,0.38360772,0.17706409,0.28064793,-0.14545295,-0.3935808,-0.059507944,0.28090912,-0.2291557,-1.0011567,0.1456097,-0.04202728,0.6206325,0.64689547,0.015974667,0.21445201,0.4068116,-0.3698578,-0.07982181,0.34450373,-0.042790037,-0.45092183,0.49992326,-0.38094616,0.5172293,0.0030600291,0.08803265,0.1166044,0.12510231,0.27412075,1.0302584,-0.3800038,-0.050766844,-0.43420073,0.17888458,0.1762139,-0.37450406,0.49880654,-0.3044724,-0.5851494,0.726864,0.2117245,0.6055785,-0.05575057,0.0040098736,-0.0917445,-0.42770487,0.4044037,0.11649143,0.056528524,0.059250932,-0.595766,-0.24114695,0.567175,-0.5037385,-0.063115634,0.11533569,-0.0679565,0.05074845,-0.19490506,0.07513575,0.010346399,-1.1115137,-0.081246726,-0.34697026,-0.18655708,0.16080359,0.017804893,0.40665838,0.12526152,-0.1697065,-0.360435,0.46051592,0.25925538,0.8355955,-0.11397086,-0.35311514,-0.2733613,0.23838252,0.38720295,-0.25528744,0.37856337,0.054116823,0.17605278,-0.71440274,0.5490057,-0.07245053,-0.41363227,-0.12379926,-0.2790231,-0.38696787,0.5823464,-0.1176688,-0.24537688,0.07561461,-0.30531025,-0.15412265,-0.18428119,-0.16950217,0.08046989,0.32326862,-0.20266977,-0.02509855,-0.077701956,-0.07331051,0.45494393,0.16925438,0.22177836,0.1789082,0.19046673,-0.5221936,0.18719643,0.016607134,0.27350968,-0.06155932,-0.033068545,-0.06691037,-0.49699894,-0.47919142,0.3105091,-0.18596114,0.2925345,0.075927354,-0.11253416,0.6791003,0.18764463,1.258725,0.011723823,-0.41391817,0.08494775,0.69773716,-0.06059784,-0.22600073,-0.29926583,1.1944965,0.5513228,0.036645457,-0.15747693,-0.15060575,-0.19935352,0.15848035,-0.23804514,-0.07886701,0.11400532,-0.52353925,-0.34094244,0.16449052,0.4419514,-0.012620779,-0.07582043,0.072388425,0.226744,0.13262755,0.53046167,-0.43576968,-0.50512433,0.43790007,0.010813126,-0.14974247,0.18140496,-0.22164561,0.45907813,-0.45338833,0.31126043,-0.38825804,0.11028187,-0.13081071,-0.3733247,0.20328529,0.025239496,0.6733617,-0.5577705,-0.44729105,-0.3983312,0.3342087,0.14494576,0.2558298,0.69939435,-0.23060223,0.042309966,-0.26236385,0.7194014,1.2946061,-0.12852696,0.09446537,0.2180891,-0.6614857,-0.48189703,0.35011134,-0.37479213,0.022165481,-0.2623895,-0.40532568,-0.34735802,0.022917591,-0.009131642,-0.08387604,0.08028454,-0.79039186,-0.39392674,0.0785474,-0.14943613,-0.274888,-0.52101195,0.37172845,0.92193854,-0.1546424,-0.54534584,0.1874075,-0.089874856,-0.36867383,-0.6702559,-0.03922069,-0.07917063,0.38217402,-0.019281946,-0.13503914,-0.17484148,0.18009077,-0.3938278,-0.045883305,0.00036166265,-0.396786,0.011075556,-0.17448327,0.05836993,0.8085622,-0.22577229,-0.020294936,-0.47900063,-0.45034915,-1.0499456,-0.44405282,0.3683589,0.23830494,-0.08369747,-0.48310453,0.16091497,-0.24879386,0.20163749,0.14007378,-0.31426623,0.3270938,0.16981994,0.51549023,-0.411007,-0.9700568,0.1435779,0.010922615,-0.042221308,-0.6245383,0.37854245,0.14329672,0.5994605,0.1975083,-0.20962904,0.23469867,-0.583994,0.050993882,-0.331109,0.028805617,-0.72586036,0.21610586,843 -754,0.47065565,-0.11485429,-0.2605904,-0.14604276,-0.06283002,0.015143509,-0.18390578,0.49461254,0.29682344,-0.5108727,-0.041646883,-0.2785196,0.01901539,0.32494992,-0.2844805,-0.4944679,0.101237245,0.17885184,-0.32329035,0.5067795,-0.49722248,0.33096412,0.058320098,0.34230047,0.2924195,0.17271072,0.2565922,-0.114173524,-0.20074457,-0.2391327,-0.0982814,0.05352178,-0.37236926,0.17396615,-0.18592587,-0.3169832,0.016869549,-0.52298963,-0.38004854,-0.75668836,0.4666808,-0.7756721,0.43438846,0.056252472,-0.17609583,0.18053295,0.24106258,0.21694328,-0.19165649,0.015733004,0.09913938,-0.14418398,0.023868024,-0.100634284,-0.16756943,-0.2409748,-0.67540795,0.034124143,-0.3373749,-0.34603617,-0.38197342,0.12256325,-0.3504831,-0.04970698,0.067401275,0.65344167,-0.3838345,0.006427169,0.057874963,-0.1616901,0.161854,-0.6529782,-0.3076696,-0.10183597,0.25400165,-0.14674574,-0.1305394,0.31643993,0.23851976,0.44310263,-0.08114035,-0.09162068,-0.3586658,-0.17586543,0.11691365,0.5014571,-0.048823357,-0.64579195,-0.017044425,-0.07760735,0.03883735,0.16939647,0.25571865,-0.29704565,-0.028335005,-0.067748226,-0.34845066,0.43689397,0.58977574,-0.37538064,-0.19644257,0.28783023,0.4029699,0.089854546,-0.17897609,0.0043128454,0.08218548,-0.5194134,-0.16155218,0.09356443,-0.25610664,0.63377225,-0.11666421,0.36134258,0.48940542,-0.20653182,-0.007499571,0.021088572,0.076954365,-0.003860203,-0.26652426,-0.40624598,0.1720166,-0.40082836,0.074385434,-0.2369462,0.9464541,0.22974601,-0.77623665,0.41223642,-0.51714855,0.10642079,-0.06398967,0.4007294,0.58089596,0.3947048,0.53725535,0.683279,-0.46474472,0.0314123,-0.057721954,-0.35303319,-0.02208734,-0.3490429,0.12133872,-0.32512107,0.025558434,-0.019827183,-0.08451422,0.106278986,0.4350025,-0.30362135,-0.09148995,0.22815934,0.7818416,-0.22076409,0.04849624,0.7297926,1.0502784,1.1985368,0.010769069,0.918295,0.24593137,-0.29205295,0.25774187,-0.15121129,-0.66278297,0.26312822,0.30664897,0.15665524,0.05379688,0.023611885,-0.030930804,0.3541439,-0.43894702,0.086427525,-0.0879908,0.08934285,0.3441435,-0.08730778,-0.39855078,-0.3410525,-0.18351184,-0.06961242,0.17433926,0.2578219,-0.25570613,0.24311699,-0.019158583,1.681038,-0.0741127,0.073967725,0.13621327,0.7263199,0.24547458,-0.13758712,-0.01936047,0.1917572,0.2417213,-0.03631058,-0.6149303,-0.005066303,-0.19645357,-0.422823,-0.0837896,-0.40363795,-0.22920044,0.020845184,-0.48091525,-0.20418122,0.0032593906,-0.34133038,0.39768267,-2.9213088,-0.21429944,0.038582418,0.33014914,-0.24313119,-0.3166166,-0.09282612,-0.52713335,0.4922276,0.35650778,0.38887957,-0.6294502,0.24580456,0.55402744,-0.379107,-0.24714023,-0.6058138,-0.10584665,-0.16852403,0.22813895,-0.017153297,-0.083233394,-0.1320391,0.20306325,0.5209428,0.19721676,0.1331644,0.111147776,0.35794732,0.03344069,0.5267675,-0.1593187,0.43820888,-0.274427,-0.061806485,0.26842198,-0.50980306,0.05503834,-0.3238206,0.17004779,0.48861545,-0.48577225,-0.8365399,-0.7470255,-0.14395227,1.0553757,-0.06422956,-0.35346383,0.35240555,-0.3928305,-0.17750885,-0.20642437,0.695135,-0.06961623,-0.0105025405,-0.628728,0.052997634,-0.097267814,0.14905527,0.11129593,-0.037172448,-0.46333426,0.6341525,-0.03166478,0.6080691,0.33761886,0.16324146,-0.39135483,-0.41451687,0.021491515,0.8440748,0.20434883,0.26463157,-0.35736436,-0.045396917,-0.36194038,-0.16191167,-0.012893289,0.45303443,0.6682253,0.042771697,0.11339657,0.2323449,0.008393609,0.072134145,-0.02192412,-0.27570853,-0.061857,-0.016387293,0.6044198,0.5559705,-0.13967758,0.33846042,0.0025202162,0.08842251,-0.43105236,-0.25591677,0.54809755,0.9187011,-0.043020323,-0.25412086,0.60210717,0.3964154,-0.2109232,0.45866108,-0.570703,-0.27222168,0.4885217,-0.17140803,-0.39199096,0.23936528,-0.40343362,-0.019866614,-0.6678098,0.16944918,-0.18582156,-0.22509421,-0.51798713,-0.14551249,-3.3858545,0.076981835,-0.065843575,-0.2521364,-0.110013075,-0.13834634,0.11308242,-0.50069314,-0.54012614,0.26791674,0.075418994,0.76166016,-0.04665383,0.093330786,-0.2368021,-0.21705271,-0.48188034,0.11735388,-0.15912811,0.38380003,0.13914791,-0.35295397,0.090091586,-0.25935572,-0.407898,0.05068799,-0.34715384,-0.43034348,-0.12311756,-0.41035903,-0.52415717,0.74021965,-0.3734311,0.13633496,-0.1832354,-0.15276214,-0.14620015,0.26676065,0.19329245,0.15596318,-0.08304639,-0.086121954,0.011266481,-0.22245733,0.31256348,-0.07026473,0.16211642,0.38227147,-0.0022005988,0.032975562,0.40581796,0.6637235,-0.15313266,1.0055099,0.32138368,-0.070979886,0.21685298,-0.2919765,-0.314354,-0.36371034,-0.18129826,0.047640577,-0.31015328,-0.4855076,-0.07036189,-0.4047042,-0.6012975,0.3837283,-0.030104151,0.27929175,0.08130719,0.20774958,0.39954165,-0.14178543,-0.01961284,0.086633444,0.058725376,-0.567885,-0.30283788,-0.6116753,-0.45968768,0.13696447,0.79630315,-0.067783974,-0.11966345,0.08064038,-0.11380411,-0.13979964,0.028433075,0.029000567,0.1378311,0.32923,0.034456927,-0.761674,0.4343415,-0.10928618,-0.12033406,-0.5865707,0.185208,0.6108827,-0.574188,0.53834015,0.35411784,0.05344164,-0.2693286,-0.48419872,-0.3252065,-0.008741752,-0.103019744,0.38195136,0.12224785,-0.7969369,0.45050097,0.23912843,-0.21025237,-0.6814245,0.49675053,0.004718707,-0.3948134,-0.12529172,0.31907147,0.26278275,-0.02297915,-0.21641137,0.08737819,-0.5301232,0.18774536,0.18534066,0.100961775,0.29845625,-0.34603685,-0.15998888,-0.6836624,-0.123218976,-0.44263873,-0.3310948,0.16185156,0.15812427,0.3132666,0.42333654,0.00074877875,0.26525557,-0.16527662,0.11185102,-0.09003288,-0.09970084,0.32570103,0.30114156,0.4954804,-0.45623666,0.56619364,-0.10993444,-0.06547172,0.036789957,0.080079794,0.22292906,0.1702391,0.34348127,-0.106121175,-0.42761517,0.27662766,0.82968056,0.2755623,0.32902482,0.21395448,-0.15018041,0.35792205,0.17956558,0.09994666,0.22729832,-0.5780122,-0.019544981,-0.42387417,0.16794673,0.41377145,-0.019348392,0.33798864,-0.078782134,-0.39285067,0.061624352,0.2546892,-0.26338235,-1.1207727,0.27395394,-0.0044378457,0.8860306,0.58389324,-0.040745556,0.08998403,0.72096485,-0.07023214,0.22133633,0.30323026,0.008032954,-0.4131494,0.59657234,-0.5463563,0.4734634,-0.08465516,-0.09365919,-0.1595286,-0.059649907,0.42484134,0.4879332,-0.050688762,0.07871994,0.11017655,-0.2584544,0.22878835,-0.46362466,0.08456381,-0.4591713,-0.10603494,0.52732074,0.42361084,0.23130892,-0.012689132,0.059020802,0.06510744,-0.09081558,-0.13669917,0.08664063,0.0055610766,0.037111953,-0.6913092,-0.07665735,0.5809449,-0.13042036,0.13885145,0.0061228643,-0.12564445,0.24774367,-0.20023783,-0.09520487,-0.059341006,-0.68779814,-0.051949896,-0.24516204,-0.4601318,0.46828097,-0.13289586,0.28018445,0.21895266,0.13221797,-0.26732805,0.3347121,0.43336186,0.5263849,-0.15630037,0.0403613,-0.43821532,-0.04769065,0.088834636,-0.15999486,-0.20927423,-0.2561707,0.05354281,-0.47638035,0.39654306,0.0014347159,-0.12097445,0.059952717,0.05459945,0.070917614,0.7553918,-0.21743141,-0.013866063,-0.03483884,-0.15049958,-0.17316169,-0.13220027,-0.070182696,0.24000105,0.15907216,-0.15751992,-0.054342654,-0.15824579,-0.097257525,0.2548421,-0.07582916,0.49572748,0.17378367,0.10766257,-0.22091757,-0.20433332,0.019500732,0.54111266,0.092647165,-0.23889175,-0.27538475,-0.39101455,-0.28843865,0.48706782,-0.008853831,0.2221199,0.16102949,-0.32337755,0.651312,0.046001136,0.8908506,0.049874082,-0.43032134,0.13128072,0.43499973,0.05365532,-0.03100176,-0.32434937,0.81593317,0.41483152,-0.088435136,-0.11602917,-0.28203005,-0.010527776,0.07370574,-0.25272787,-0.17576137,0.037475105,-0.6046218,-0.20518282,0.22148679,0.27478662,0.18681985,-0.1639253,0.08209939,0.35087517,0.14915457,0.3394828,-0.3753721,-0.09999499,0.39809301,0.39120886,0.13290511,0.02428947,-0.3525626,0.3104416,-0.58811474,0.018091353,-0.32779095,0.20256527,-0.19109932,-0.22103272,0.29139498,0.21579051,0.4680423,-0.19489095,-0.37967202,-0.31349203,0.43650115,-0.029018788,0.18526986,0.31820768,-0.18869792,0.049315754,0.062112458,0.6086129,1.1219633,-0.15036032,-0.018103361,0.40046203,-0.32382938,-0.61814606,0.31912532,-0.3598654,0.20843513,0.12087532,0.017015548,-0.5434374,0.17090419,0.2936602,0.08104605,0.111751154,-0.47164935,-0.5555135,0.33026278,-0.279849,-0.259853,-0.33337396,-0.11010495,0.48148787,-0.23772581,-0.17877333,-0.055832826,0.3932479,-0.2224204,-0.6916185,-0.065697454,-0.27816996,0.35830706,0.12407183,-0.19024223,-0.19715492,0.06831116,-0.5462849,0.2026822,0.13309385,-0.39014333,0.06127782,-0.44849852,0.024479646,0.967217,-0.11916888,0.09786553,-0.3942373,-0.48073882,-0.8268073,-0.42670357,0.5813395,0.041958585,-0.017756123,-0.5216514,-0.11841134,-0.13099541,-0.0026894074,0.04116272,-0.44058177,0.4194229,0.1251159,0.3106084,0.020627715,-0.6675344,-0.15168858,0.057219386,-0.4175873,-0.44220445,0.4864086,0.102828436,0.92246467,0.049575362,0.038141396,0.22762981,-0.29986048,0.13158076,-0.24247995,-0.33721182,-0.57043594,0.22185993,863 -755,0.65355045,-0.026394458,-0.602476,-0.15418187,-0.24727169,0.21570924,-0.1563414,0.49831098,0.32286188,-0.38745245,-0.20109592,-0.10669789,0.06228812,0.551967,-0.17328279,-0.6562824,0.09686111,0.19161429,-0.44009545,0.49626243,-0.47863913,0.34041545,-0.06468121,0.33892462,0.16522077,0.27650663,0.23593174,0.09912631,-0.014365168,-0.0024443131,-0.31335303,0.20277889,-0.37645754,0.10262807,-0.07940957,-0.45547235,-0.105526686,-0.5657423,-0.42439908,-0.6922332,0.40154675,-0.81990206,0.5395428,-0.029638914,-0.14959455,0.062441733,0.26105165,0.37680238,-0.31058437,-0.0055856477,-0.013814087,-0.10876424,-0.074364685,-0.16699632,-0.2647169,-0.47997153,-0.6567038,-0.08922717,-0.42088413,-0.18790314,-0.29470026,0.07990739,-0.28566435,0.07572525,0.079521194,0.36153567,-0.3751241,-0.17940044,0.33624524,-0.20787518,0.14335053,-0.5129572,-0.107441135,-0.061684094,0.32113707,-0.11523783,-0.27247086,0.22633108,0.3616373,0.414804,-0.029368341,-0.15401688,-0.43930596,-0.14221361,-0.027804017,0.56670034,-0.10245573,-0.5996543,-0.27314955,0.116489284,0.1120406,0.34827965,0.08617438,-0.1276585,-0.026652588,-0.021420367,-0.30118102,0.45585153,0.49967334,-0.4287762,-0.27520525,0.35867113,0.4150316,0.086055905,-0.12336038,0.02015574,0.043398984,-0.58002025,-0.14276536,-0.10603951,-0.21092972,0.6001223,-0.20576048,0.2983232,0.6392407,-0.010308286,-0.029729761,0.0776904,0.01936061,-0.24454874,-0.28300223,-0.14161152,0.13992907,-0.34698942,0.22506021,-0.045909937,0.5790238,0.36015496,-0.6429112,0.36216205,-0.60847557,0.12931257,-0.15045026,0.3518117,0.7185353,0.37585723,0.13367592,0.88199675,-0.3865264,0.20273665,-0.1389562,-0.305432,-0.057845004,-0.10407345,0.06527598,-0.6621606,0.25585496,0.14218388,-0.005608877,0.33886915,0.40578353,-0.4469817,-0.1232495,0.20633186,0.88482785,-0.27717397,-0.11473329,0.8092836,1.0267383,0.95997745,-0.03907127,1.0220584,0.2563514,-0.2596703,0.16608045,-0.28360224,-0.7412725,0.24019688,0.3908656,-0.085372694,0.3731922,-0.004371423,-0.053766064,0.30571663,-0.3276955,-0.07708439,0.06640856,0.15242423,0.24359575,-0.1709151,-0.42733404,-0.13213575,-0.07460176,-0.014131661,0.33661482,0.28942698,-0.17483391,0.49520496,-0.015741508,1.6604676,0.03600227,0.05754733,-0.043248635,0.5922506,0.4372272,-0.099775024,-0.1763263,0.17853117,0.34326795,0.092764035,-0.47491395,0.14036892,-0.19072495,-0.42367223,-0.11975928,-0.32057407,-0.09586407,-0.13963486,-0.33572438,-0.09800681,-0.061295945,-0.2453467,0.43001848,-2.918809,-0.28315645,-0.1328211,0.35248905,-0.28914553,-0.41655684,-0.14949591,-0.4483146,0.4285378,0.39751217,0.48509583,-0.5690988,0.33616114,0.4100092,-0.6137522,-0.07768752,-0.5856374,-0.1045175,-0.006215122,0.35438913,0.034081485,-0.17954126,0.0079978425,0.3243542,0.4966887,0.0076003717,0.08647073,0.21700874,0.36717606,0.017332243,0.49939534,-0.25192267,0.70341706,-0.35852483,-0.053104334,0.26951826,-0.403976,0.19639444,-0.28490973,0.11189019,0.5165488,-0.4693685,-1.0736724,-0.6121174,-0.035442844,1.0115435,-0.21741918,-0.29640415,0.2206321,-0.52351385,-0.24883887,0.12846047,0.5165431,-0.115890115,-0.10463751,-0.7149173,0.029001107,-0.06306987,0.04974363,-0.039714452,-0.07452564,-0.4697692,0.59579825,0.066557616,0.5853968,0.14200044,0.26421657,-0.25600427,-0.38584167,0.021095006,0.80455387,0.2935917,0.15123664,-0.19317561,-0.10636445,-0.5805763,-0.18364738,0.12563159,0.64535743,0.65816087,-0.10549317,0.092764035,0.166399,0.15678763,-0.009095265,-0.13920087,-0.1895191,-0.050825562,-0.07708459,0.57999814,0.6163751,-0.2527382,0.45582283,-0.099022545,0.3835428,-0.33252752,-0.4499311,0.7623472,0.88134205,-0.14576691,-0.36398587,0.53933996,0.47622278,-0.23728873,0.40158427,-0.7440827,-0.43340078,0.4725873,-0.08870839,-0.29363427,0.054517206,-0.3130553,0.08013492,-0.92616993,-0.0539948,-0.28178203,-0.48090044,-0.4477145,-0.1781453,-4.0927577,0.08617164,-0.097491845,-0.15615775,-0.15026638,0.01957323,0.13577984,-0.51116735,-0.78605664,0.3139374,0.028063703,0.8876191,-0.17062484,0.29148304,-0.2072787,-0.1639699,-0.40289176,0.24128625,-0.0069491128,0.33029762,0.04722422,-0.46195012,-0.09004441,-0.07462482,-0.65058744,0.13784416,-0.6636946,-0.3890662,-0.10161464,-0.48024356,-0.11428574,0.681165,-0.32285118,0.045730233,-0.11408525,0.05014945,-0.265889,0.28120172,-0.031961028,-0.0219572,0.09682084,-0.16841295,0.2351528,-0.26887882,0.40104696,0.052612856,0.42162946,0.24519125,-0.09079381,0.19666499,0.50016904,0.72964156,0.10115577,0.8980455,0.36484128,5.8547237e-05,0.31570223,-0.38732117,-0.26190707,-0.30306605,-0.28862825,-0.10500565,-0.39138743,-0.49436635,-0.13019249,-0.50097966,-0.8012055,0.34070104,0.1393351,0.21990901,0.0479223,0.20349345,0.55023104,-0.34792134,0.115515575,0.031101657,-0.13875622,-0.4627978,-0.21616493,-0.46668524,-0.49759594,0.12157769,0.9576927,-0.20960453,-0.027439447,-0.20547731,-0.26730803,-0.14131556,0.30295298,0.113621935,0.1329543,0.42779812,-0.14317721,-0.66850793,0.5043797,-0.37872887,-0.2752703,-0.72702086,0.13250126,0.49278042,-0.6238798,0.509195,0.33603552,0.13237002,-0.1750707,-0.44339684,-0.17570604,0.03112953,-0.19022228,0.24298964,0.2283071,-0.75591385,0.39619783,0.29346272,-0.1998764,-0.7246736,0.6855721,0.052955188,-0.29438463,-0.1871803,0.22766916,0.3440324,0.04938686,-0.33546102,0.14193992,-0.41467652,0.22064827,0.15656629,0.14450124,0.5195013,-0.19380921,-0.056265943,-0.7286363,-0.14085387,-0.47561756,-0.1494064,0.26520908,0.08657228,0.3364821,0.13327803,0.048906606,0.31439516,-0.41945845,0.12504362,-0.1685795,-0.3407171,0.25563142,0.3163281,0.40192607,-0.4262638,0.6805169,0.019149417,-0.0052473387,0.21586564,0.01385631,0.37076253,0.05113828,0.61318016,0.25711757,-0.30748287,0.14717166,0.7151905,0.18884364,0.07192531,0.22169921,-0.101854764,0.22332844,0.020704636,0.026757548,0.17789957,-0.64874846,-0.03287142,-0.35898605,0.13972367,0.45169765,0.2430265,0.32743803,0.07823539,-0.38557273,-0.0054178145,0.14691299,-0.11191782,-1.4444906,0.44718167,0.2203644,0.93454194,0.39879182,0.0327787,0.011815162,0.55148304,-0.07993281,0.25779006,0.4254988,-0.1392763,-0.3224458,0.4637501,-0.65882325,0.60750645,0.11548679,0.0071129594,-0.09914921,0.08644119,0.48357356,1.0011971,-0.21658574,0.08805193,0.15677422,-0.38521236,0.27619487,-0.33957994,-0.28308967,-0.7218918,-0.14111155,0.7057717,0.51337373,0.3044244,-0.10665886,-0.06317348,0.13434294,-0.0020323717,-0.043169998,0.13132243,0.12276983,-0.09287533,-0.66982883,-0.28794596,0.42484745,0.25956747,0.2744052,0.103584245,-0.20501794,0.32254142,-0.081792206,-0.034404453,-0.09616817,-0.6614967,-0.087579384,-0.34211567,-0.43174097,0.51057345,-0.060804423,0.2871035,0.2251067,0.017520057,-0.16941231,0.46387774,-0.060146507,0.78462756,-0.026820842,-0.26145726,-0.3842078,0.088431865,0.19307111,-0.30550405,0.015865434,-0.2898557,0.026300477,-0.5011896,0.5966902,-0.026336381,-0.38158268,0.16862202,-0.06605008,0.0965294,0.47081274,-0.27951586,-0.17082033,-0.08261972,-0.10366351,-0.33549705,-0.17631482,-0.27450675,0.23059687,0.048357006,-0.04739087,-0.10837857,0.0521567,0.007612859,0.4392278,0.022236297,0.3488485,0.36148623,0.18136165,-0.25940517,-0.14120004,0.31012487,0.63909334,-0.11853155,-0.27976596,-0.25522014,-0.47542906,-0.44171426,0.1333302,-0.034105726,0.36613977,0.16097058,-0.14012244,0.38538477,-0.117707305,1.1118877,0.024793016,-0.3499443,0.08188773,0.46502966,0.05557786,-0.17109522,-0.3623336,0.9639219,0.43365347,-0.14227332,-0.1363716,-0.34030658,0.1833846,0.16685827,-0.21180354,-0.2229078,0.014821445,-0.629111,-0.33328372,0.1637001,0.114216715,0.45495576,-0.09992071,0.14756587,0.22291514,0.13592106,0.23678508,-0.43476874,-0.18113253,0.34353554,0.36475536,0.0021058137,-0.010021191,-0.4897315,0.304091,-0.47610262,-0.11826132,-0.26124054,0.18682307,-0.24368939,-0.38539892,0.3447404,0.24405655,0.25353307,-0.17163096,-0.40953657,-0.32418615,0.46575972,0.20333377,0.1119153,0.4232086,-0.19798917,-0.06636558,0.095262416,0.5635447,0.995341,-0.23431356,0.10916296,0.35437885,-0.4269765,-0.61224616,0.36299005,-0.26872355,0.37984753,0.13357696,-0.17177626,-0.7626307,0.33237913,0.04611602,0.15698512,0.17152801,-0.5005939,-0.31973502,0.21441433,-0.2916951,-0.34020963,-0.3608363,0.07834648,0.5888423,-0.17530563,-0.18915118,0.256558,0.24879983,-0.11023839,-0.6791289,-0.04242649,-0.27204242,0.31573975,0.07812594,-0.31217083,-0.23945695,0.0033123929,-0.48671958,0.41493797,0.03379753,-0.37415266,0.087737545,-0.49960387,-0.21944663,1.0348585,-0.3701237,0.2632621,-0.56779677,-0.4138778,-0.79153866,-0.25124085,0.42028475,0.004387158,-0.10810443,-0.6602137,0.006017096,-0.021676796,-0.0880295,-0.064073406,-0.32345027,0.39632827,0.045358904,0.40092593,0.082369104,-0.864774,0.10091399,0.08707828,-0.3624594,-0.50631136,0.46909487,-0.02399229,0.9331871,0.0417834,0.11575986,0.46143574,-0.50183177,-0.08318413,-0.18611765,0.018433925,-0.67972654,0.26029265,864 -756,0.4461004,-0.2574291,-0.4045904,-0.19726287,-0.1482038,-0.018312575,-0.08092617,0.55465454,0.34309906,-0.49957213,-0.2004142,-0.16932389,-0.043672122,0.27765706,-0.11359695,-0.63101894,0.012385146,0.19098407,-0.35547718,0.678898,-0.521562,0.2013267,0.05488266,0.43756735,0.24700148,0.00831306,0.25961626,-0.21103191,0.036769923,-0.10662318,-0.16021316,0.31641862,-0.45840576,0.1934421,-0.091453806,-0.40268803,-0.018618595,-0.4762134,-0.25410953,-0.8229285,0.27002195,-0.70983845,0.42631868,0.2984353,-0.38820022,0.1703368,-0.05312324,0.2705956,-0.37670282,0.05963724,0.079365596,0.012092517,-0.08414782,-0.121157795,-0.040110305,-0.16707389,-0.59935534,0.073745005,-0.36859682,-0.001958102,-0.21088299,0.14333938,-0.39940923,-0.16198233,-0.12545994,0.6255919,-0.45494795,0.0040648533,0.2562537,-0.2026659,0.3725348,-0.567615,-0.2974481,-0.13594566,0.15226294,-0.12169988,-0.35608035,0.22007425,0.3003037,0.5382628,0.0415579,-0.20703167,-0.37113005,0.0035696488,0.04655298,0.3369827,-0.12027018,-0.54166293,-0.15025987,-0.031132616,0.15178691,0.13181926,0.14726296,-0.33226946,-0.13499993,-0.03414893,-0.25484127,0.42009237,0.50860363,-0.293381,-0.18118261,0.2711539,0.48466232,0.109480515,-0.005018991,0.13017803,0.10050607,-0.6758518,-0.16625397,0.19954889,-0.31772706,0.53780705,-0.25180146,0.20948285,0.64462036,-0.105341874,-0.066799715,0.15224144,0.12270292,-0.13384034,-0.3795245,-0.31619167,0.37065905,-0.30793798,0.069124624,-0.2751882,0.91812664,0.03234049,-0.8190776,0.22983855,-0.5641608,0.1679609,-0.15858896,0.6660372,0.7102145,0.30777803,0.537459,0.7879005,-0.4409064,-0.012211511,-0.021617703,-0.316145,-0.019013882,-0.080160625,-0.12839581,-0.5047443,-0.0038087459,0.05802075,-0.10618797,0.07954792,0.4452191,-0.592383,-0.09230609,0.21785036,0.65834385,-0.24887463,-0.09199858,0.730983,0.99595493,1.1651995,0.1458228,1.0871838,0.27864486,-0.16868131,0.20210226,-0.31344464,-0.7546345,0.35147002,0.35954902,0.088344015,0.32841492,0.030355917,-0.0419263,0.32305494,-0.48093656,0.039899513,-0.22323605,0.17254885,-0.0010806414,-0.053217813,-0.5006713,-0.37670434,-0.16018894,0.042782333,0.039345603,0.14707094,-0.1829981,0.28788635,-0.013028173,1.5777013,-0.14105026,0.060270593,0.12865996,0.4520489,0.19174439,-0.12388183,-0.10429324,0.31667092,0.40151867,-0.014551639,-0.68419874,0.13824509,-0.14031288,-0.4499194,-0.09704773,-0.27728814,-0.0019022708,-0.13154101,-0.40388834,-0.14406496,-0.12957391,-0.5694816,0.4134372,-2.7179537,-0.19664747,-0.11815631,0.25334975,-0.24195123,-0.1832013,-0.20736033,-0.48714715,0.35944125,0.45827976,0.5105016,-0.8420556,0.36867934,0.4990738,-0.5782943,-0.109405234,-0.74809456,-0.123064265,-0.15551907,0.24432404,0.060604475,0.031347428,-0.042345222,0.1991559,0.49802348,0.11627349,0.14482114,0.2831972,0.3287094,0.01889282,0.5044705,0.051336758,0.38347656,-0.27460024,-0.19506662,0.35054496,-0.46408388,0.1909895,-0.048792936,-0.004015635,0.44388866,-0.52509284,-0.8917312,-0.6805204,-0.3029316,1.2596309,-0.24004793,-0.36615637,0.22391623,-0.18165174,-0.04579155,-0.12841564,0.52022016,-0.17145747,-0.17596349,-0.8833813,0.028564215,-0.023617927,0.33762395,-0.02864544,-0.113652535,-0.44089684,0.6978699,-0.023729287,0.5104118,0.41168663,0.15067254,-0.3098477,-0.49753782,0.0697351,0.9397681,0.31838208,0.18277518,-0.3451781,-0.1720069,-0.31110826,0.16813459,0.12295778,0.48534778,0.7633126,-0.20988637,0.1350672,0.41617492,0.075820915,0.01730423,-0.104824185,-0.22517855,-0.19888268,0.061604068,0.6398702,0.7212554,-0.21294767,0.2399203,-0.08085064,0.22349215,-0.102908686,-0.3447558,0.57135355,0.8550679,-0.019949757,-0.27393645,0.6120632,0.5686002,-0.28147233,0.45331654,-0.58909196,-0.23542263,0.35873172,-0.10048224,-0.33282757,0.10518852,-0.3962355,0.17453958,-0.9181344,0.29500082,-0.20586188,-0.30634454,-0.6281272,-0.04784619,-3.2449086,0.27291825,-0.27332097,-0.16780542,-0.1225346,-0.06735012,0.13864684,-0.53898853,-0.64645666,0.09593563,0.17131704,0.627334,-0.0132764,0.08840923,-0.28661203,-0.2091578,-0.35354137,0.12016162,-0.012460417,0.3252907,0.24343982,-0.45157015,-0.0021874583,-0.19294903,-0.31456864,0.05451472,-0.503944,-0.48403412,-0.147552,-0.68389666,-0.3749663,0.5682959,-0.21565741,0.028863417,-0.17606544,0.006667238,-0.03133691,0.33848858,0.058083877,0.072197825,-0.053814594,-0.095674396,-0.19502313,-0.17785603,0.19381998,-0.022419872,0.15767981,0.32862446,-0.21618043,0.21920255,0.550408,0.59562564,-0.2173989,0.72569597,0.5654009,-0.10131307,0.14853726,-0.10978257,-0.1255421,-0.519423,-0.29333517,-0.10385533,-0.41400832,-0.3994786,0.088762686,-0.26602483,-0.8523073,0.5152196,-0.111776285,0.19447596,0.083561644,0.16779849,0.54949313,-0.07033278,0.048549093,-0.08819025,-0.15508175,-0.41146368,-0.33000505,-0.74454755,-0.26922166,0.21606809,1.0610465,-0.3246523,0.1609323,0.1298658,-0.11424741,-0.10395626,0.18407306,-0.017283656,0.24986269,0.45240676,0.08341401,-0.50537795,0.4017289,0.050316457,-0.15930812,-0.4461951,0.17827593,0.5981771,-0.6029378,0.586313,0.31547314,0.030460583,0.027920635,-0.5670546,-0.3076356,-0.060631793,-0.1424327,0.47047326,0.24001628,-0.6654711,0.41055897,0.34731975,-0.1931784,-0.80652976,0.3810674,-0.08395186,-0.40728348,-0.100715324,0.31226116,-0.022536488,0.12599938,-0.15547019,0.20319249,-0.40188012,0.18165673,0.11359581,-0.16414419,0.31662443,-0.15674774,-0.0268776,-0.7533747,-0.0144344885,-0.63047653,-0.30822167,0.20471825,0.1315491,0.008037943,0.16221197,0.02459019,0.37532505,-0.12167554,0.047382135,-0.027852656,-0.15731582,0.35391173,0.5800657,0.41190207,-0.38221133,0.60333276,0.07346533,0.021123635,-0.31319046,0.03070852,0.32180336,-0.028234271,0.45677254,-0.11195008,-0.24459127,0.45472303,0.6767473,0.13414234,0.4901467,0.010813566,-0.039670065,0.3826935,0.07320137,0.25086015,-0.20588373,-0.44320723,0.02628426,-0.28639483,0.13698044,0.41930866,0.17311686,0.27342463,0.010916567,-0.30053857,0.070682034,0.27161887,-0.09227285,-1.1575143,0.2952727,0.18028277,0.7259298,0.7396912,-0.09992835,0.06787939,0.6297899,-0.26834655,0.09801919,0.32026064,0.009674168,-0.4784172,0.6688968,-0.60320497,0.38578635,-0.1832709,0.0016731918,-0.07592355,-0.06647844,0.401604,0.53634536,-0.13468918,0.020550195,-0.13498332,-0.30128792,0.07091131,-0.50362784,0.12534866,-0.6083101,-0.21314965,0.674078,0.6096331,0.3477292,-0.2061798,0.010949933,0.056037374,-0.10407495,0.10945309,-0.023182154,-0.09094512,-0.045827873,-0.78998435,-0.015229505,0.5319154,-0.026846446,0.16127242,-0.030185465,-0.2513439,0.10949172,-0.09053664,-0.12728937,-0.10734543,-0.6836834,-0.15325275,-0.2950535,-0.22161163,0.45704836,-0.3459922,0.25497767,0.21971366,0.11289569,-0.2979452,0.12493537,0.09022922,0.6996121,0.08823094,-0.1288895,-0.38282198,0.19558048,0.1364268,-0.12723994,-0.23417057,-0.24652314,-0.01555186,-0.4930968,0.4453454,0.17293288,-0.2425267,0.08880382,-0.07753154,-0.06309194,0.6356065,-0.14605829,-0.100020155,-0.11372277,-0.27632958,-0.23776732,-0.14584033,-0.1781906,0.36805552,0.16418847,-0.10983903,-0.05933288,-0.022136245,-0.101207644,0.51159847,0.10556621,0.30155614,0.29744422,0.09921355,-0.512302,-0.017665194,0.15219904,0.5833314,0.124373905,-0.17674352,-0.22320928,-0.27069065,-0.31769565,0.08946085,-0.20549652,0.36376226,0.05070362,-0.2544522,0.87308943,0.26109183,1.2252814,0.0065909633,-0.37505662,-0.06696398,0.47427735,0.052318435,-0.0054697786,-0.30160502,0.94997305,0.49044374,-0.19583075,-0.15650107,-0.39029577,-0.08947027,0.14882642,-0.19441845,-0.14708734,0.015346921,-0.6729606,-0.33581156,0.22673622,0.23732448,0.17867254,-0.12805822,0.014079497,0.18170562,-0.046261292,0.39046186,-0.2996705,-0.021027248,0.14749655,0.23175356,0.18055342,0.050400797,-0.43107656,0.34323943,-0.59926564,0.098825805,-0.23923436,0.16651358,-0.2764785,-0.26763424,0.29354084,0.087071076,0.35429347,-0.36223274,-0.32374543,-0.27548912,0.5909218,0.14487287,0.122851536,0.6708581,-0.27188018,0.15257543,0.08285473,0.47268465,1.1479132,-0.20672959,-0.14456911,0.35359028,-0.34689835,-0.672967,0.2839241,-0.3844325,0.109252185,-0.10932917,-0.36888486,-0.67807204,0.29041815,0.16795756,0.07837363,0.28198746,-0.6720848,-0.20040314,0.3829923,-0.30218267,-0.15591073,-0.32826048,0.06780377,0.5564964,-0.19138162,-0.4981815,0.07268643,0.16738357,-0.18751346,-0.6818567,-0.051197145,-0.42160618,0.301726,0.054735914,-0.33104375,-0.12887147,0.10434754,-0.43235797,0.0036857473,0.35945213,-0.2843826,0.136183,-0.36089438,-0.0702966,1.0031434,-0.16066067,0.2498009,-0.5284487,-0.37396383,-0.90628743,-0.18268728,0.8011819,-0.0035050923,-0.037440635,-0.6384675,0.0070277224,-0.02459822,-0.23518816,-0.115139775,-0.3415158,0.50415057,0.16248947,0.29291147,0.04253556,-0.72697884,0.1999952,0.06850476,-0.22041321,-0.59325594,0.46021098,0.054592464,0.94905853,0.06212791,0.042641215,0.23927683,-0.538054,0.102845795,-0.22177154,-0.24430513,-0.61285,-0.021179523,869 -757,0.38643676,-0.27282193,-0.576538,0.011148861,-0.23685251,-0.071556084,-0.2044688,0.36800736,0.2641115,-0.47068092,-0.14873503,-0.03886286,-0.005298209,0.32796243,-0.042923715,-0.47163847,-0.064024225,0.28877357,-0.48655,0.7778186,-0.29014695,0.08413558,-0.16541219,0.49118713,0.061050005,0.3096608,0.0571728,-0.043051325,-0.06800563,-0.07214535,0.17680416,0.26814002,-0.8037523,0.23774782,-0.06546961,-0.3241437,0.06404417,-0.37103578,-0.32797,-0.75328964,0.08583534,-0.7099875,0.5762595,0.1342178,-0.307614,0.16786382,-0.15804133,0.36732265,-0.3112269,-0.043479256,0.16462828,0.011088382,-0.12433147,-0.14619146,-0.085868195,-0.21250364,-0.5258075,-0.040332492,-0.3393521,0.0483654,-0.28122965,0.01046407,-0.34850687,-0.24013267,-0.10408772,0.6366996,-0.43630534,-0.012568325,0.25444075,-0.0033725272,0.41676214,-0.53234696,-0.03676198,-0.28649816,0.14231963,-0.2033022,-0.3125831,0.17673884,0.21651186,0.41942376,-0.07478692,-0.12893832,-0.2853011,0.0555828,0.3871222,0.35636234,-0.112877525,-0.34410244,-0.101673566,-0.010709522,-0.07167042,0.120866016,0.21562117,-0.41211334,-0.10632867,0.00427402,-0.02223611,0.33107564,0.46836612,-0.1370472,-0.13826789,0.22045414,0.7002822,0.2681432,-0.16720179,-0.040678732,0.08008854,-0.4898632,-0.24041308,0.08379751,-0.21920887,0.59762585,-0.18784444,0.19715089,0.5675277,-0.15501095,-0.23440757,0.11923942,0.0120100975,-0.010322809,-0.3426062,-0.36970058,0.4147693,-0.47274715,0.3802099,-0.040829126,0.47858793,0.2929087,-0.6986122,0.2693426,-0.5930339,0.16109425,-0.11005073,0.545618,0.723538,0.35215744,0.4217024,0.78954124,-0.5176803,0.1061935,0.02745819,-0.34058857,0.11397072,-0.15742084,-0.15101402,-0.53889877,-0.11461584,-0.08295286,-0.31192276,0.011475036,0.03014238,-0.49041998,-0.06798646,0.23020035,0.7165317,-0.21561721,-0.06215282,0.6219091,1.0869292,1.0391897,0.22319911,1.2669251,0.14110655,-0.17684203,0.1833506,-0.12570614,-0.8295011,0.2543146,0.38492393,-0.1246965,0.33694395,0.146874,0.04034676,0.6123961,-0.5679823,0.10976812,-0.17417742,0.33993164,-0.021429475,-0.26863283,-0.4753534,-0.15436706,-0.21371351,0.073484235,-0.21262869,0.20935914,-0.07460983,0.23628967,0.10400491,1.5333924,-0.16055888,0.06603742,0.115060166,0.4117886,0.23322494,-0.32011482,-0.23650695,0.31711662,0.4292928,0.22691661,-0.46210515,0.12653813,-0.13639596,-0.36091724,-0.105712295,-0.22374581,0.060619377,-0.031002581,-0.2960193,-0.18184185,0.017097564,-0.296149,0.51692873,-2.7169337,0.039892357,-0.07529789,0.35318258,-0.24776667,-0.28950804,-0.07893301,-0.32554516,0.40152076,0.34184998,0.47577918,-0.6722516,0.3167608,0.48765263,-0.66976917,-0.015981985,-0.6781752,-0.25537407,-0.062687986,0.34080264,0.14579202,0.13245176,0.03772766,0.25747854,0.43135265,0.03673716,0.10710362,0.21341212,0.16145737,-0.031039778,0.45982155,0.10619182,0.40211377,-0.2130314,-0.17352964,0.24857286,-0.22151569,0.31738552,-0.09417237,0.07618358,0.47205025,-0.35569125,-0.88834244,-0.73292947,-0.22065577,1.1104901,-0.14484128,-0.31213093,0.28266767,-0.5552783,-0.27390492,-0.042489387,0.3749285,-0.044518284,0.010188373,-0.94781363,0.06458388,-0.052221637,0.2742046,0.06482469,-0.11351147,-0.5937761,0.6017582,0.006788641,0.40407303,0.64088434,0.1578945,0.07434508,-0.40297222,-0.059743505,0.9317805,0.38497427,0.09257217,-0.34305206,-0.1411368,-0.3249081,0.17880018,0.05438171,0.43416235,0.69297975,-0.26831394,0.12237021,0.23209716,0.019988898,0.04564619,-0.12185109,-0.31891567,-0.033243172,-0.045252893,0.51013154,0.826903,-0.13595065,0.3584902,-0.052039407,0.15529118,-0.09575044,-0.4554863,0.6600123,0.9172927,-0.12903307,-0.19682892,0.62376046,0.49401143,-0.371965,0.5261172,-0.44347417,0.007871408,0.34278825,0.036141172,-0.32148784,0.08678666,-0.38743693,0.35198233,-0.91020465,0.3728798,-0.4251035,-0.5585907,-0.5016321,-0.11325802,-3.252972,0.32887334,-0.28849655,-0.18509248,-0.14077918,-0.05515343,0.36478618,-0.65470636,-0.66859555,0.2764748,-0.048509035,0.599336,-0.19104345,-0.117608026,-0.12921637,-0.4333744,-0.30265525,0.18995704,0.24776694,0.2610578,-0.015026226,-0.59636354,-0.2605034,-0.16464113,-0.4290209,-0.036224265,-0.58606666,-0.29665348,-0.19188404,-0.5876284,-0.26796934,0.6360798,-0.08882075,-0.052297253,-0.2567108,-0.00011730882,-0.09473275,0.28740317,-0.04031241,0.24509001,-0.012663671,0.0061975466,-0.12822428,-0.15519184,0.0021177302,0.05031275,0.12691617,0.2042525,-0.12367822,0.2721345,0.567824,0.8237943,-0.2496222,0.9697556,0.7786281,-0.20366882,0.2129897,-0.26286405,-0.25877017,-0.61894864,-0.40534478,-0.16704601,-0.40998718,-0.53971857,0.15267242,-0.2889064,-0.7801284,0.76284784,0.02563912,0.21342681,0.19042364,-0.028769385,0.46415168,-0.33638403,-0.101252094,-0.042166874,-0.1895446,-0.6422885,-0.20848638,-0.57341677,-0.40044215,0.1236394,1.0827061,-0.40321332,0.098859005,0.13740103,-0.32046416,0.18354271,0.26368183,-0.10562979,0.09889562,0.45524156,0.23481542,-0.5635833,0.3296564,0.040436737,-0.12683335,-0.6420908,0.27949265,0.76275563,-0.6331468,0.7338005,0.24817356,-0.110228054,-0.10990524,-0.5896425,-0.32732788,-0.03332236,-0.23590319,0.45457026,0.3248668,-0.81493056,0.18983921,0.39807114,-0.2706862,-0.67292523,0.6442317,-0.13318445,-0.19373606,-0.0940458,0.3371486,-0.16801713,0.060780928,-0.29589367,0.32653892,-0.28534296,0.0897598,0.36936876,-0.1572884,-0.022845205,-0.15557718,-0.031067688,-0.81762946,0.0662232,-0.5126282,-0.2086017,0.43656936,0.09164233,-0.058371656,0.083652884,0.40577012,0.28834504,-0.32295433,0.16183461,-0.17272152,-0.4159061,0.4423359,0.5987335,0.31614187,-0.2864586,0.6100529,0.006597434,-0.19185,-0.26864845,0.023978243,0.3819819,-0.061611913,0.38837445,-0.051481918,-0.12475158,0.0031200922,0.7245362,0.0012747967,0.5493826,-0.03253472,0.01809888,0.20211378,0.16714689,0.37362942,-0.0017484243,-0.45315212,0.266748,-0.21389452,0.16922775,0.2715717,0.15654701,0.2021119,-0.056555774,-0.39312384,-0.038242437,0.18396832,0.25371727,-1.423671,0.5446385,0.16347234,0.7340101,0.69270813,0.15079287,-0.051319104,0.6340528,-0.06912758,0.17348267,0.4582814,-0.14392287,-0.49707377,0.4208365,-0.7365828,0.34379512,0.069278315,0.027090427,0.058602657,-0.204642,0.43381497,0.8343949,-0.19898693,0.021154316,-0.14458156,-0.16195314,0.06281178,-0.37272522,0.10447923,-0.55407405,-0.45491442,0.65489125,0.64105946,0.50507724,-0.2776987,0.028338332,0.17792228,-0.089558125,0.2885532,0.073294386,0.09098614,0.20819491,-0.5880397,-0.11142925,0.47414458,-0.30199975,-0.0015872625,-0.14978136,-0.20141004,0.264297,-0.1764063,-0.042283025,-0.010670872,-0.78126615,-0.0955269,-0.432356,-0.30350512,0.6081878,-0.17186883,0.18681486,0.044658713,0.04896683,-0.21112162,0.5490978,-0.12018846,0.5916208,0.009832584,-0.0038489287,-0.22216323,0.29619166,0.17176726,-0.12697464,-0.0030061924,-0.2947219,0.106891945,-0.48143432,0.36048162,0.164317,-0.41482565,0.02534031,-0.17474915,-0.020794097,0.5791563,-0.119436875,-0.3566615,-0.053753827,-0.30158827,-0.19751358,-0.41309193,-0.07755875,0.38993958,0.15440185,0.042361088,-0.022475008,-0.0021575002,-0.016390113,0.26441202,0.20728216,0.30006218,0.2743302,-0.07872427,-0.45927054,-0.17580615,0.15186185,0.4309591,0.049414244,-0.22586186,-0.16424039,-0.4398679,-0.4879314,-0.087393954,-0.11126844,0.4847678,0.06073361,-0.13298097,0.7325678,0.28653625,1.1986117,-0.11004294,-0.39774,0.033536337,0.5031407,-0.028066112,-0.09946552,-0.35268694,0.8718293,0.48324144,-0.27636942,-0.112613216,-0.4132621,-0.16152675,0.102438085,-0.13181037,-0.012173369,0.0145496195,-0.6740874,-0.091021545,0.27935898,0.31342375,0.20060775,-0.16637413,0.12331946,0.19425748,-0.06505399,0.17709115,-0.37046117,-0.06057425,0.3723535,0.23954126,0.07611801,0.047247376,-0.3530532,0.270759,-0.4339456,0.056707166,-0.14525384,0.15173908,-0.2484394,-0.37931442,0.18178703,-0.047797665,0.41718096,-0.47699028,-0.24552606,-0.35807163,0.5322753,0.28264517,0.10253679,0.66817343,-0.24872929,0.025372963,0.03182241,0.38694313,0.80249333,-0.37338415,-0.054117974,0.4230059,-0.3104504,-0.5655072,0.17043771,-0.31388754,0.2642319,-0.1200348,-0.27932087,-0.73158073,0.1038338,0.07650717,0.0024978747,0.13060643,-0.73493415,-0.22049235,0.20442155,-0.24630645,-0.1081226,-0.24966274,0.050163325,0.5964161,-0.3042367,-0.52966845,0.056414723,-0.032285057,-0.11389963,-0.35487345,-0.15605897,-0.24283153,0.20994337,0.14229962,-0.497639,-0.109315544,0.092839554,-0.5184077,-0.022750936,-0.033731528,-0.28701302,0.10944777,-0.35580984,-0.11180456,0.9974805,-0.3341988,0.2294057,-0.25117022,-0.4826358,-0.84791535,-0.27194956,0.5280645,0.040429857,0.049465537,-0.5183448,0.18495652,-0.058038525,0.09382549,-0.014046685,-0.37314722,0.4253741,0.11097563,0.286972,0.01813161,-0.87051845,0.21106526,0.19576846,-0.042051055,-0.5520513,0.5216167,0.029344132,0.84999347,0.06483504,0.18659592,0.030220866,-0.5033744,-0.05406517,-0.1484206,-0.116167866,-0.5574931,-0.054141197,871 -758,0.44506678,-0.24129036,-0.6911946,-0.0507617,-0.35843387,-0.052944995,-0.17373851,0.62738967,0.25431138,-0.44259068,-0.15353559,-0.24412942,-0.13508219,0.5191915,-0.2328163,-0.4152603,-0.21390001,-0.016201628,-0.47372147,0.69908464,-0.23763332,0.16626245,0.117412,0.35663053,0.52252746,0.14136535,0.16059262,0.1624035,-0.22361477,-0.2833474,-0.047160722,0.07388925,-0.66616493,0.1528429,-0.33174482,-0.5543338,-0.20719422,-0.6828229,-0.2851788,-0.99100655,0.46236166,-0.95093346,0.42596823,-0.008850968,-0.25174636,0.19092487,0.35139477,0.29114553,0.015660264,-0.36490828,0.2236023,-0.12031254,-0.012632756,0.04164946,-0.42155716,-0.2636646,-0.60632807,-0.08328306,-0.37793973,-0.13912472,-0.15704833,0.1594924,-0.3741778,0.10456026,-0.21984838,0.7696671,-0.333867,-0.12820177,0.30402648,-0.05029738,0.30298615,-0.74776065,-0.27358526,-0.20351778,0.06955007,-0.09392938,-0.18535735,0.57439303,0.066556424,0.1810724,-0.028524546,-0.21705535,-0.33478612,-0.124518886,0.1045251,0.27762577,-0.20684844,-0.40434164,-0.14198217,-0.08259919,0.35495436,0.41290408,0.3269423,-0.2172367,0.120401494,-0.0049724486,-0.19888017,0.5225594,0.44459274,-0.22999822,-0.067500845,0.27817896,0.63271916,0.37701094,-0.23868242,-0.3056669,0.028187545,-0.509098,-0.07376147,0.24445216,-0.23165832,0.45920455,-0.09264057,0.19432592,0.49482253,-0.29895902,0.13108715,-0.024175782,0.11883836,-0.07529613,-0.6012103,-0.4242399,0.37962323,-0.47730687,0.41859674,-0.3456628,0.7284896,0.14927195,-0.48738366,0.24449581,-0.6883925,0.1698603,-0.029976066,0.4819435,0.71254116,0.39834923,0.31893393,0.77662456,-0.12921478,-0.09001687,-0.21792497,0.03391129,-0.117098734,-0.3547778,0.30869323,-0.40169203,-0.025820872,-0.2432584,-0.014703086,0.06851619,0.26938468,-0.45477566,-0.30796698,0.13435951,0.80917114,-0.13148645,0.09229605,0.88513595,1.0160761,1.193181,-0.039695557,0.7862024,-0.07606192,-0.21413714,0.20471478,0.09233642,-0.610551,0.32204264,0.41432348,-0.08307505,0.0893718,-0.06283596,-0.12906048,0.45815688,-0.37247616,-0.0021439607,-0.16636676,0.12883392,0.25474295,0.11503834,-0.34082508,-0.3307374,-0.10243205,0.013377208,-0.05618873,0.29886273,-0.20823413,0.30220965,-0.03811479,1.4142289,-0.14662863,0.106143884,0.32071528,0.5926116,-0.049242634,-0.29552713,0.05952062,0.109183155,0.096820556,0.07501068,-0.52568424,0.2473525,-0.37293264,-0.4539951,0.079572275,-0.46625233,-0.34891495,0.06458845,-0.5760914,-0.20591925,-0.15769999,-0.16054298,0.3776372,-2.7100134,-0.052135102,-0.16957599,0.20236367,-0.32810932,-0.43945485,0.089599736,-0.6398127,0.60028386,0.18975694,0.43453565,-0.41067314,0.20701903,0.5347952,-0.6496526,0.049039014,-0.66641164,-0.123345934,0.15663712,0.2549713,-0.16787942,-0.13473074,0.21768849,0.05870823,0.28628922,0.20963822,0.18645056,0.34008127,0.24820362,-0.22271205,0.6059005,-0.1125507,0.37727326,-0.7051964,-0.1262338,0.46387312,-0.5508969,0.39366448,-0.15191144,0.12619184,0.6655683,-0.61942583,-0.8253803,-0.57727504,-0.3050784,1.2295781,-0.21190095,-0.65776265,0.2392485,-0.40003034,-0.027842682,-0.27981803,0.6295737,0.047990542,0.014485698,-0.5868622,-0.006365744,-0.26925975,0.22247997,-0.1550193,0.08363759,-0.36626515,0.6843867,-0.029622091,0.5353964,0.39641884,0.093391106,-0.5270099,-0.43529928,-0.060652193,0.7615252,0.51283777,0.058008067,-0.1968467,-0.103821926,-0.5185645,-0.1837546,0.14318533,0.607659,0.6775725,-0.0065443562,0.19509116,0.29108825,0.012094855,0.101330414,-0.07813518,-0.35441992,-0.38272408,0.12697941,0.5905642,0.5532187,0.060441118,0.3990595,-0.04154891,0.17960149,-0.20018448,-0.4402634,0.20749117,1.007185,-0.30418885,-0.23787381,0.5375997,0.55619246,-0.3405096,0.49773863,-0.41755792,-0.46883604,0.4551773,-0.13325502,-0.6717073,0.09562905,-0.20697792,-0.008314848,-0.5258134,-0.10713459,-0.70635545,-0.23355825,-0.60011417,-0.21646707,-2.2670476,0.35096678,-0.056145243,-0.15534092,-0.23845533,-0.2700189,0.17026056,-0.6414616,-0.8027266,0.09469331,0.07890938,0.7703717,-0.16592321,0.0009893454,-0.27520037,-0.24431285,-0.3155287,0.23760271,0.18274738,0.30686614,-0.22334638,-0.3674564,-0.2290601,-0.037382323,-0.47239238,0.03832429,-0.5338142,-0.41850471,-0.27626193,-0.5166318,-0.4020239,0.6739823,-0.25735432,0.13435155,0.049853936,-0.09458201,0.06387024,0.04937878,0.23182514,0.5167682,0.063770406,-0.17050417,0.034767047,-0.18818349,0.06294782,0.246881,0.41614568,0.44361848,-0.14521183,0.48998627,0.40511227,0.8208255,0.04216935,1.0049125,0.21668312,0.0044520935,0.23914744,-0.14205094,-0.3293743,-0.57172686,0.08229024,0.12012669,-0.25996572,-0.44525582,-0.027723359,-0.21447116,-0.75934917,0.74806345,0.005459272,0.4094028,-0.07689439,0.2700338,0.5083977,-0.37002483,-0.005298801,0.041114565,0.1312214,-0.6612715,-0.33478525,-0.6591502,-0.5027938,-0.0102671245,0.85180736,-0.2713018,-0.08490066,0.30966023,-0.31559354,0.2224372,0.097237974,0.003085847,-0.15049645,0.42135686,0.13849679,-0.590161,0.5381885,0.09912114,-0.015469558,-0.41901156,0.47391322,0.6284023,-0.47573793,0.6076958,0.19820645,0.013788242,-0.64874446,-0.59068924,-0.027645264,-0.08789505,-0.28185743,0.34556866,0.36254328,-0.63561195,0.16697796,0.21700071,-0.10144412,-0.8115693,0.5010879,0.089114,-0.36347204,-0.12800139,0.38987908,0.34601548,-0.014278371,0.07364196,0.26467198,-0.25915077,0.18228628,0.33037594,-0.042144716,0.26123005,-0.3711417,-0.23941796,-0.4727607,0.4531338,-0.44670266,-0.26729175,0.54191107,-0.1419549,-0.13413857,0.36239132,0.21894374,0.23407364,0.06008701,0.18213604,-0.1531248,-0.27987263,0.48090914,0.45441166,0.6519181,-0.5467891,0.64808375,0.049104705,-0.19423291,0.33557656,-0.06295075,0.3543909,-0.013990306,0.5130088,-0.11672424,-0.34395888,0.040889814,0.6910748,0.1668707,0.36050415,-0.10687138,-0.06543254,0.10816402,0.058225192,0.13975248,-0.12700026,-0.80987513,0.03475178,-0.15040742,-0.11636876,0.54994667,-0.014169065,0.27464387,-0.018577393,-0.19033708,-0.006077707,-0.084048934,-0.35346413,-1.3648608,0.4816414,0.11224934,1.0692073,0.5806558,-0.07075795,-0.17052875,0.6501013,-0.12934457,0.09819715,0.40916803,0.14349084,-0.55127114,0.61563873,-0.47938046,0.5503489,0.053372804,0.0298433,-0.071099386,0.1125602,0.6539512,0.54926956,-0.30172294,-0.079264596,0.024651404,-0.2976814,0.31120417,-0.45237494,-0.067498565,-0.53451484,-0.34700972,0.515481,0.5431298,0.285821,-0.16711529,0.0068883416,-0.029695395,-0.130382,0.31032336,-0.01721667,0.11080156,-0.083640225,-0.3902899,-0.08167795,0.4507397,-0.4215759,0.16363427,-0.043512907,-0.29277852,0.12919234,0.14395723,0.04031805,-0.10434299,-0.77468884,0.21693197,-0.5549959,-0.4345453,0.08953249,-0.16797958,0.19586895,0.23991181,0.08225714,-0.24012038,0.5194877,0.114185885,0.7000317,-0.5427978,-0.0789181,-0.3582308,0.24193947,0.063536294,-0.10724917,0.18321855,-0.044259492,0.09900606,-0.4363337,0.5802651,-0.17685224,-0.35480303,-0.05500762,-0.1131837,-0.07378023,0.5952968,-0.05070218,0.049450524,-0.16042185,-0.18543953,-0.30443284,-0.33939713,0.037873797,0.119650826,-0.055284753,0.25409505,-0.19397466,-0.17386797,0.12721373,0.42917207,-0.12396038,0.3979306,0.4801437,0.19591318,-0.5727968,0.0074735973,0.12893069,0.6517086,0.04149615,-0.16243932,-0.38792166,-0.26139122,-0.33265796,0.47902447,-0.16581027,0.55088484,0.114869446,-0.19025205,0.84880215,-0.030784043,1.1239021,-0.10435842,-0.50142974,-0.10889912,0.47533643,-0.096531995,-0.26324338,-0.29824424,0.7850154,0.3571378,-0.112859815,-0.009925907,-0.2761202,0.07997641,0.3150036,-0.18756345,-0.14080025,-0.02861336,-0.46851012,-0.08119701,0.029135792,0.3793851,0.21744147,-0.37619796,0.019575957,0.42998186,0.114973545,0.33529934,-0.34955838,-0.16848141,0.26633975,0.17594443,-0.18779637,0.23982432,-0.5283297,0.3377729,-0.61081463,0.29927033,-0.39107817,0.22654735,-0.24336347,-0.34632385,0.14159863,-0.08225166,0.45896384,-0.2937851,-0.34444898,-0.24339673,0.43114752,0.25182343,0.1422136,0.5662599,-0.1457161,0.025093969,0.0020471124,0.6784919,0.9722353,-0.16656344,-0.13237886,0.0006939356,-0.34217983,-0.67865336,0.3082618,-0.29836428,0.13591978,-0.007916469,-0.06451337,-0.60759455,0.03044183,0.21593751,-0.13122264,-0.09669936,-0.889541,-0.22436915,0.120714225,-0.25474614,-0.2827605,-0.6105748,-0.07367664,0.43475887,-0.074907176,-0.32649598,0.0841205,0.21561462,-0.07462856,-0.51846784,0.051094867,-0.25753975,0.15885809,-0.12706167,-0.4521166,-0.11086834,0.1579348,-0.48512176,0.17594638,-0.28122026,-0.26912776,-0.06584852,-0.08206351,0.16084656,1.0661057,-0.08881542,0.22013003,-0.20739375,-0.5919295,-0.6416218,-0.42522258,0.16781078,0.0026388397,0.08949372,-0.58629984,-0.0142553905,-0.25349504,-0.055579368,-0.05542324,-0.16405998,0.40404022,0.12320647,0.48860946,-0.19561622,-0.6354542,0.44782272,-0.002130561,0.13981804,-0.28043988,0.34863186,-0.0032817882,0.80059755,0.14091939,-0.003464098,0.1111784,-0.41030914,0.08254468,-0.09394029,-0.08925912,-0.35809788,0.24356405,877 -759,0.50488985,-0.16454393,-0.5293517,-0.17000352,-0.2804147,0.11283132,-0.19164899,0.22966796,0.2953761,-0.22115152,-0.27858257,-0.071717896,0.17205404,0.40608552,-0.08338984,-0.9348218,-0.09683072,0.2184278,-0.7528382,0.31528282,-0.6920115,0.40532494,0.08465176,0.37255558,-0.037921224,0.31192365,0.31242493,-0.2703877,-0.001881847,-0.1477414,0.001709562,0.07089643,-0.7338455,0.188999,-0.11917861,-0.24860543,-0.053969033,-0.4819829,-0.29655758,-0.8223902,0.18812236,-1.1015633,0.48304027,-0.057529885,-0.14527997,-0.25594553,0.19936815,0.43873575,-0.45392036,0.26880074,0.23433624,-0.2729503,-0.2075465,-0.3408652,0.038843725,-0.42781323,-0.41618913,-0.09073082,-0.4661169,-0.29975873,-0.21805191,0.29973787,-0.42567953,0.030103339,-0.15775153,0.037750702,-0.45509374,-0.024919037,0.40287402,-0.32318053,0.27515322,-0.4272488,0.02883469,-0.111009054,0.5869647,-0.029324321,-0.21837792,0.43805504,0.37763426,0.41772333,0.31550005,-0.3164582,-0.09737485,-0.14134493,0.4304067,0.5564169,-0.22383429,-0.22813104,-0.29138714,-0.007046846,0.31268424,0.46296743,-0.03647619,-0.30726096,-0.05990433,-0.17113478,-0.12715667,0.48120254,0.5067518,-0.25251466,-0.4733175,0.38593844,0.6370714,0.3118057,-0.09104851,0.17280926,0.12177348,-0.6184031,-0.06707784,0.25833657,-0.016815342,0.43437943,-0.14848487,0.12874985,1.0361336,-0.30454525,0.054871082,-0.24763091,-0.16426541,-0.21858047,-0.3719996,-0.097563416,0.15488842,-0.53628254,-0.0765684,-0.26991266,0.7237438,0.3348997,-0.6453729,0.38772663,-0.58657676,0.2009686,-0.08672167,0.823376,0.6636678,0.31036207,0.31818193,1.0165786,-0.44096008,0.17596367,-0.014856293,-0.5425774,0.10046491,-0.28234753,0.15913388,-0.45449036,0.09080006,-0.14068995,0.14301008,0.012685271,0.5456363,-0.4427058,-0.13347921,0.031698607,0.752997,-0.43638816,-0.04188955,0.768663,1.0035214,0.80260336,0.08175176,1.3821406,0.49817038,-0.19579212,-0.016148897,-0.2823332,-0.8125706,0.19706582,0.32999313,0.021657284,0.3010598,0.05861008,-0.16492929,0.1803441,-0.5151123,0.06892106,-0.18485379,0.35175145,0.029694129,-0.06876951,-0.39869705,-0.109273836,-0.07618173,0.0131565835,0.3718505,0.17269666,-0.2423111,0.2852708,-0.08618906,1.3241944,-0.1490288,0.024156086,0.0024647932,0.54967844,0.29962462,-0.0051539997,-0.13136259,0.40174425,0.53422856,-0.11003124,-0.7101377,0.18064353,-0.20285495,-0.49114594,-0.08284019,-0.3213989,-0.14342757,-0.09893854,-0.24963096,-0.10238708,0.0109893745,-0.3351515,0.5498631,-2.3751843,-0.36613148,-0.092484936,0.3637454,-0.23432146,-0.09915709,-0.28957647,-0.50281394,0.34908274,0.23580784,0.5181509,-0.68815243,0.40880865,0.5599647,-0.50519025,-0.24905656,-0.7438758,0.04323358,-0.025244461,0.3957532,0.06595899,-0.06270509,-0.13152479,0.10114072,0.7678943,0.042002074,0.17570066,0.57075274,0.52909404,0.14089228,0.5712257,0.031315617,0.6981031,-0.2872933,-0.35178545,0.3737515,-0.41001034,0.39868677,-0.44366756,0.07745818,0.46821082,-0.34394816,-1.0925527,-0.6537354,-0.6041577,1.1052816,-0.40212804,-0.53147775,0.21104933,0.04355095,0.051297527,0.16357669,0.7422687,-0.12772274,0.20629069,-0.65877116,0.035722516,-0.09627259,0.176454,0.14613064,0.022031574,-0.23352772,0.78728706,-0.14952274,0.45848215,0.19394375,0.2137347,-0.12935421,-0.38662726,0.24029873,0.9127632,0.21158105,-0.012710436,-0.098868564,-0.33295992,-0.06676085,-0.3123015,-0.112751946,0.6662462,0.9047625,-0.1128799,0.099803954,0.34107834,0.009190578,0.031099655,-0.06692035,-0.2535115,-0.07303938,-0.08783539,0.45479548,0.8173517,-0.09405209,0.41140193,-0.33552557,0.25746262,0.02391649,-0.51816136,0.7594744,0.50570273,-0.19547534,-0.017306464,0.42761496,0.43321735,-0.42925632,0.5728379,-0.75039935,-0.31536564,0.67423207,-0.13679439,-0.44477364,0.26162207,-0.1956161,0.022183584,-0.80072397,0.40373814,-0.28308818,-0.45149463,-0.32617056,-0.15381287,-3.3714647,0.2803784,-0.21711275,-0.13899207,-0.47372425,-0.06872897,0.30941027,-0.44807333,-0.57098013,0.21702436,0.18497664,0.6508404,-0.034824196,0.1244918,-0.28023925,0.07652451,-0.09619357,0.15551153,0.059461173,0.34041616,-0.114113316,-0.35292667,-0.03199525,0.0041198637,-0.5219122,0.16777219,-0.69716775,-0.5704882,-0.0022181226,-0.48049784,-0.22281653,0.74285597,-0.7025417,0.06415132,-0.26432115,0.13881999,-0.34504122,0.346522,0.16300681,0.28955132,0.13379279,-0.12238769,-0.114476904,-0.20001896,0.65054893,-0.08907627,0.27615166,-0.03541163,-0.23453505,0.09685973,0.3617042,0.51696754,-0.21622899,1.0258685,0.19748658,-0.09499623,0.13334237,-0.32153624,-0.22791123,-0.72196126,-0.33755776,-0.081474155,-0.5587834,-0.6854983,-0.13878714,-0.3022396,-0.90074825,0.54331243,0.15757436,0.3100425,-0.09912639,0.19029823,0.33421662,-0.1407585,0.077431954,-0.13322505,-0.14782964,-0.5597294,-0.29086292,-0.5557134,-0.5009907,0.12225921,0.73680335,-0.35841992,-0.05894953,-0.07740052,-0.33862352,-0.06878535,0.03216789,-0.0795019,0.1721746,0.5430974,0.023949413,-0.6074574,0.46961787,-0.06831752,-0.1431382,-0.7398513,0.097741164,0.7142249,-0.889099,0.70105004,0.4562271,0.005270859,0.25924692,-0.49828145,-0.2809361,-0.15511261,-0.14432806,0.33811834,-0.068935186,-0.82606167,0.5597616,0.3247205,-0.5712887,-0.6936748,0.41108423,-0.114973456,-0.17471243,0.11223371,0.35683537,0.16864857,-0.06037806,-0.37535217,0.2033436,-0.44596407,0.37708193,0.06127242,-0.11865546,0.45331576,0.033559024,-0.5813237,-0.7657516,-0.046681546,-0.47364622,-0.27699023,0.2621609,-0.20512453,-0.16145024,0.11550697,0.23681863,0.43912455,-0.3763025,0.07460882,0.020507185,-0.40080833,0.13568267,0.45049095,0.47822702,-0.43327475,0.66053116,0.19491495,-0.23774458,0.22499411,0.19938253,0.53235984,0.17111863,0.44044983,-0.22587845,-0.052665032,0.2922689,0.91354597,-0.014204287,0.50663084,0.09566759,-0.24576777,0.49122518,0.15448959,0.2806733,-0.13448313,-0.42832822,0.166344,0.05826404,0.17970978,0.4325798,0.51731515,0.39742863,0.18423519,-0.16499138,-0.061703384,0.3725659,-0.07168204,-1.1266215,0.39681005,0.36867338,0.8178358,0.3293956,-0.1151056,0.06717504,0.58569694,-0.14328796,0.13142787,0.3766573,-0.16423838,-0.47647893,0.666319,-0.70439756,0.29202864,-0.2995361,0.030222306,0.3157614,0.35524148,0.4204973,0.8567832,-0.12669423,0.045554396,-0.16349055,-0.11141299,-0.084766254,-0.3311669,0.16792808,-0.457657,-0.44812113,0.7479123,0.4504586,0.35682958,-0.15088224,0.026523145,0.014110274,-0.23617122,0.1759871,-0.07898048,0.020655572,0.1906512,-0.6989146,-0.18388955,0.5695184,0.014097352,0.037243158,-0.140431,-0.24381536,0.13342085,-0.38629267,0.030226482,-0.08677114,-0.8014135,0.03858257,-0.3393079,-0.4092689,0.28440526,-0.19381224,0.21263528,0.28151008,-0.021707136,-0.12069383,0.2811341,-0.0073905266,1.060344,0.15361659,-0.55656564,-0.5559422,0.09546929,0.3241744,-0.4400601,0.04665061,-0.40038025,-0.017932829,-0.4069448,0.6424475,-0.32796142,-0.4101292,0.41715235,-0.41791227,-0.22507717,0.55923986,-0.14077748,-0.23077825,0.19331929,-0.37022063,-0.36952102,0.27629,-0.29671928,0.25921634,0.31139252,-0.10322352,-0.06644442,-0.22342198,-0.21628428,0.47470462,-0.06174544,0.42157158,0.24058221,0.14540918,-0.07272583,0.013425791,0.27802557,0.5693581,0.21937889,0.06656045,-0.2027026,-0.449621,-0.27089602,0.14945371,-0.19197315,0.19596142,0.088105015,-0.3320011,0.81499225,0.18800987,0.98618835,0.31041056,-0.38502425,0.1759807,0.56506944,-0.13529226,0.027012685,-0.5481399,0.8949554,0.5188246,-0.21787244,-0.0047441847,-0.5435846,-0.19100784,0.47246596,-0.4785647,-0.024888309,-0.095083565,-0.71491784,-0.49727422,0.2676349,0.16318448,0.1904545,-0.025369756,-0.025481822,0.07988365,0.19365095,0.52433276,-0.84405065,-0.27247328,0.18015625,0.25607532,-0.07849275,0.08913867,-0.20949635,0.52026814,-0.60680896,0.12198452,-0.5406407,0.120759405,-0.28594843,-0.31991082,0.1724208,-0.10267247,0.48854,-0.24406777,-0.49869233,-0.0014780256,0.3811909,0.19356214,0.20791116,0.6849293,-0.39825252,0.03813358,0.14116724,0.6509713,1.3647168,-0.548132,0.19778985,0.4920597,-0.40942332,-0.5128103,0.47228998,-0.42777854,-0.09438447,-0.1351324,-0.5945221,-0.5396075,0.30071095,0.15475792,0.1311517,0.1844539,-0.6432284,-0.056105394,0.32362863,-0.10988426,-0.33872733,-0.24083987,0.49637046,0.99136925,-0.35694605,-0.48196313,0.28787053,0.2676032,-0.43978184,-0.59877884,-0.07449167,-0.29000002,0.3444503,-0.04171054,-0.18224955,-0.024335958,-0.03095704,-0.49779797,0.20107096,0.21514997,-0.34579155,0.15899219,-0.0089021325,0.02381023,0.8613015,-0.27475855,-0.05413151,-0.8690872,-0.35284525,-0.9325123,-0.38751128,0.31583154,0.3211417,-0.017571606,-0.2741643,0.013991434,-0.14570038,-0.09043885,0.063744955,-0.7800401,0.37542835,0.07458269,0.6036578,-0.3179603,-1.0620599,0.14057069,0.118605174,-0.37448466,-0.85728234,0.5954183,-0.22161537,0.76814556,0.025040297,-0.12872015,0.05173727,-0.47460893,0.100642495,-0.42939156,-0.11871871,-1.0401073,0.23944257,881 -760,0.26586443,-0.016535621,-0.5182121,-0.20805505,-0.29732674,0.21980876,-0.312302,-0.03878878,0.34455016,-0.16169812,-0.1162911,-0.009563684,-0.053773362,0.4491956,-0.23313233,-0.9513601,0.13518898,-0.013897523,-0.54728466,0.3643279,-0.3370441,0.39300266,0.16310652,0.4818711,0.047063496,0.25354597,0.20995982,0.06443817,-0.10743503,-0.23840687,-0.15326168,0.2929408,-0.5311569,0.15868305,-0.0693273,-0.38329744,-0.06677393,-0.26617426,-0.29314494,-0.6403853,0.49952602,-0.80598694,0.56931734,0.07672504,-0.23106083,-0.15678342,0.28054932,0.12892225,-0.2765412,0.05999333,0.23747794,-0.36220935,-0.15983818,-0.106088966,-0.36879426,-0.47467673,-0.60614884,-0.023673791,-0.6105663,-0.124543376,-0.14188607,0.32053804,-0.2856375,-0.005311379,-0.124508254,0.30875066,-0.2543878,0.17741624,0.27072793,-0.4564757,0.0012001899,-0.5169523,-0.23547642,0.023870882,0.37202275,-0.048876606,-0.22807215,0.16718377,0.5258779,0.6178838,0.18001643,-0.2592673,-0.27366704,-0.25378606,0.1549487,0.56999177,-0.20651422,-0.34502938,-0.1976408,-0.08674427,0.46320403,0.28658843,0.030536365,-0.41603428,-0.0006932983,-0.14355703,-0.1179115,0.5256168,0.52064484,-0.33563474,-0.042656496,0.32418835,0.2209758,0.23023184,-0.22804877,0.25415075,-0.058265686,-0.52629524,-0.17377976,-0.034591395,-0.028572317,0.55628836,-0.09149544,0.2631716,0.6868943,0.043054298,-0.057653163,-0.044815842,-0.07627083,-0.0014685759,-0.22229382,-0.030968199,0.20377384,-0.3250392,0.119917005,-0.09055208,0.5141684,0.021624615,-0.9092313,0.35256228,-0.5323463,0.07781002,-0.01398468,0.6457554,0.82966816,0.33572516,0.20310618,1.026904,-0.54408157,-0.03998507,0.0704862,-0.38428056,0.010277975,-0.081489876,0.019018687,-0.4835285,0.17576057,0.03544803,0.21231422,0.3519713,0.36758277,-0.32246095,-0.10452617,0.10574537,0.76788604,-0.26595265,-0.02373788,0.89061314,1.0609231,0.78424674,-0.0056513133,1.3388727,0.22534722,-0.08662189,-0.15572762,-0.08857376,-0.5453197,0.13207015,0.32161793,-0.12819985,0.3600734,0.112731494,0.0010585842,0.4105759,-0.29398623,-0.1929167,0.04654204,-0.04545853,0.20059255,-0.099871054,-0.284752,-0.013779842,0.19771184,-0.004978001,0.16021736,0.13255818,-0.2978134,0.35373944,-0.034480486,1.011553,-0.040300764,0.14178747,0.09214588,0.32799038,0.2805104,-0.08347632,-0.03927948,0.23935214,0.3037894,-0.008074701,-0.52854675,-0.046096463,-0.24911691,-0.47567332,-0.20986438,-0.35276428,-0.45358178,-0.031905375,-0.25899434,-0.14031482,0.054456793,-0.38648033,0.48080364,-2.7307086,-0.28782302,-0.29550093,0.27764323,-0.12876406,-0.21536872,-0.2688865,-0.36288726,0.34935907,0.36495012,0.38084266,-0.6184912,0.3799849,0.456091,-0.38498878,-0.32893556,-0.49915048,0.0013883802,0.0041902075,0.40307996,0.03175253,-0.25286624,-0.19253384,0.26521876,0.74812734,0.10046367,-0.053325567,0.25257307,0.5877313,-0.13999303,0.47370228,-0.057236332,0.6619838,-0.22509506,-0.21661726,0.27596638,-0.53078455,0.35827044,-0.045913942,0.10180605,0.4228707,-0.29539034,-0.91780925,-0.5550748,-0.3702744,1.2599139,-0.37119272,-0.5343667,0.32190222,-0.122885905,-0.41605332,0.061095055,0.7942552,-0.14330222,0.13717738,-0.580247,-0.03717282,-0.27253938,0.31767416,-0.06344907,0.035867017,-0.37734583,0.8093304,-0.08571366,0.53449154,0.34092978,0.15374213,-0.27785224,-0.31555018,0.06774773,0.8922724,0.39094764,0.08769842,-0.11801267,-0.020000495,0.023595516,-0.34973258,0.06355692,0.9318637,0.4465143,0.08155607,0.13192672,0.26435944,0.06143337,0.019749692,-0.10733518,-0.4457273,-0.17905995,0.1234577,0.7054113,0.86703277,-0.19730495,0.36716878,-0.002625658,0.22159061,-0.0899639,-0.49142677,0.528201,0.74271965,-0.1147668,-0.30675438,0.70772374,0.3681417,-0.35662988,0.31635416,-0.6086858,-0.43094617,0.6116812,-0.0031274145,-0.5795778,0.31947392,-0.3426314,-0.117272295,-0.7232723,0.21543096,-0.108267434,-0.62481594,-0.41068473,-0.28018257,-3.8293648,0.11669832,-0.30088648,-0.05441687,-0.36819118,-0.12623021,0.2259249,-0.46794793,-0.6811593,0.06741168,0.13883665,0.3515837,-0.19515309,0.2276286,-0.2522752,-0.22555135,0.009446456,0.3356147,0.015760817,0.2336234,-0.012637377,-0.21333869,-0.14086545,-0.10940517,-0.44673985,-0.0018046453,-0.64077187,-0.5446736,-0.05974876,-0.5051428,-0.059275277,0.7262373,-0.73822266,-0.097112946,-0.42583132,0.047166817,-0.22727595,0.1651923,0.11402297,0.347172,0.10746314,0.09442889,-0.16809466,-0.15334117,0.36018687,0.15699056,0.35294768,0.38149422,-0.019365687,0.05599531,0.3973983,0.5745464,-0.13660572,0.89978826,0.19823262,0.08822293,0.34440917,-0.2352771,-0.44765365,-0.7217935,-0.2843805,0.10426628,-0.55452216,-0.4924226,-0.16113879,-0.29936007,-0.83997756,0.44851002,0.11257474,0.14921233,-0.23588115,0.29343545,0.43822795,-0.15858458,-0.029575301,0.0055234064,-0.19653963,-0.34288964,-0.37093413,-0.5329907,-0.5797011,-0.10636968,0.9985755,-0.17898189,-0.0017519078,0.16520251,-0.31517667,-0.08057522,0.061598063,0.40476844,0.016987223,0.5024858,0.089994505,-0.7596871,0.5180716,-0.5335902,-0.14960378,-0.615706,-0.10970464,0.7639376,-0.67516994,0.7481372,0.5314839,0.2462473,-0.06994895,-0.663215,-0.3112993,-0.08725221,-0.21213141,0.61590326,0.30661806,-0.5500831,0.51790446,0.124587685,-0.06277725,-0.6481038,0.5150002,-0.19879898,-0.25207722,0.14825305,0.5032117,-0.071108386,-0.19146988,0.25532296,0.21521536,-0.28014973,0.4049377,0.20182054,0.0036118764,0.47622287,-0.018525656,-0.34858686,-0.6430155,0.09761664,-0.44706675,-0.28617746,0.08725259,-0.046392083,0.20029028,0.14042756,-0.25443652,0.46584937,-0.39672107,0.20196556,-0.121069856,-0.20206524,0.15436564,0.54202455,0.43162835,-0.5595357,0.5823096,0.18353559,-0.14231464,0.18146946,0.1684994,0.5607245,0.14147322,0.41137555,-0.308011,-0.04242655,0.13742714,0.6741816,0.15456411,0.2012772,0.11482433,-0.10964791,0.37309152,0.14033608,0.09306737,-0.07996743,-0.50775844,-0.15197101,-0.1689932,0.17673641,0.3933099,0.24985123,0.43160313,-0.1547665,-0.26891372,0.24679478,0.18377136,0.09944209,-1.186454,0.30746394,0.13555847,0.8893971,0.344307,0.12389393,-0.027949674,0.5479496,-0.1687784,-0.014586996,0.46895,0.030540068,-0.34042275,0.5790339,-0.44787928,0.5014979,-0.19630477,0.048197433,0.14950086,0.23388276,0.2766442,0.87828815,-0.16856673,0.009351836,0.054186013,-0.3862052,-0.08995358,-0.41726843,0.14232546,-0.45830944,-0.46492803,0.6473688,0.55851084,0.23851076,-0.32577708,-0.035539273,0.0290791,-0.09349087,-0.17078583,-0.088296264,-0.024291933,-0.24841274,-0.7490146,-0.18797135,0.71416664,0.08916647,-0.019255606,0.058192033,-0.26213744,0.26410004,-0.17369758,-0.05624914,-0.11432317,-0.58180916,0.013339543,-0.4303138,-0.79446083,0.18198846,-0.35210794,0.23634195,0.26665455,-0.13306418,-0.22261332,0.39925548,0.12855464,0.8722074,-0.0870215,-0.11762762,-0.27419335,-0.09094817,0.19112168,-0.25656253,-0.28692344,-0.40648687,0.24476722,-0.4369822,0.47019035,-0.2671289,-0.19165108,0.016301192,-0.11844186,0.06590247,0.35506445,-0.1752886,-0.13557875,0.31280196,-0.10608235,-0.29852623,-0.051609866,-0.3978496,0.2395684,0.07724713,0.029097924,0.07122937,-0.25027692,-0.28544542,0.057939712,0.015209088,0.41271496,0.42030495,0.046761062,-0.1739302,0.07485587,0.046600483,0.53873146,0.19269392,-0.1026789,-0.105349466,-0.5790813,-0.3744221,0.5243937,-0.07709217,0.18107912,0.014763555,-0.45593327,0.697753,0.17358273,1.1795824,0.0663923,-0.47073427,0.030883243,0.60394704,-0.15044579,0.15564911,-0.29058093,0.99233097,0.6228424,-0.034507845,-0.1125576,-0.41971746,0.046934567,0.21254778,-0.38009235,-0.25037324,-0.06899924,-0.5498298,-0.13866965,0.026280155,0.16271432,0.052619662,-0.06551465,-0.03107767,-0.03127614,0.26257375,0.24834475,-0.71630895,-0.13455716,0.37112528,0.27278012,-0.09097452,0.0043979837,-0.32842514,0.42111868,-0.68834454,0.0033386166,-0.73978966,0.0873259,-0.22395454,-0.16387087,0.17731388,-0.17807521,0.36980087,-0.31309742,-0.11493946,-0.21262752,0.46215776,0.22424981,0.24330086,0.7189256,-0.27321702,-0.12612678,0.21771026,0.60509384,1.4572091,-0.23885058,0.0821757,0.20275919,-0.3412871,-0.4668455,0.03847098,-0.5995891,-0.029901706,-0.03384185,-0.25438255,-0.27759823,0.23284477,-0.058256224,0.1558722,-0.08282054,-0.6156733,-0.32708603,0.44398263,-0.21091072,-0.31483904,-0.2487777,0.17618355,0.78020185,-0.24658407,-0.1373063,0.08840942,0.36103648,-0.32149446,-0.6496308,0.36256784,-0.3067543,0.47013906,0.09365054,-0.29266986,-0.09663673,0.23292628,-0.5327376,0.27303636,0.3310331,-0.30726507,-0.029783305,-0.09506115,-0.12382787,1.0413026,-0.12891056,0.2881579,-0.7462483,-0.49259618,-0.90518516,-0.2746237,-0.08902323,0.27584058,-0.13275793,-0.5633571,-0.20207682,-0.24883248,-0.10513069,0.01968978,-0.4255937,0.3846958,0.12298015,0.8257048,-0.24400641,-0.9654435,-0.0063968827,0.093686834,-0.268596,-0.5230754,0.5490002,0.14858031,0.73812515,0.057860613,-0.0085821245,0.26602647,-0.6017242,0.27802658,-0.20108387,-0.24951302,-0.9245888,0.227595,883 -761,0.45448187,-0.18834403,-0.60018146,-0.13517891,-0.43239748,0.2763038,-0.30009145,0.36593866,0.41583565,-0.40538087,-0.22848704,-0.054232113,0.09078831,0.30747792,-0.19860482,-0.5200984,-0.07539966,0.1595503,-0.63798994,0.37792605,-0.44301268,0.31938776,0.15889215,0.36201847,-0.037030652,0.31663227,0.14643161,0.008087624,-0.09764982,-0.14781989,-0.23505391,0.17382513,-0.43443954,0.053727012,-0.21610355,-0.46520007,0.009804914,-0.4217779,-0.22023264,-0.6550575,0.1732595,-1.0718057,0.58777416,-0.024158249,-0.16022815,0.11836283,0.1646294,0.13936733,-0.23734048,0.028907351,0.08766972,-0.42035383,-0.20660877,-0.4538144,-0.30241042,-0.41597092,-0.38990885,0.047940936,-0.62438786,-0.2755438,-0.22297761,0.12860979,-0.26646322,0.15144798,-0.14312635,0.23835553,-0.15185148,-0.0984428,0.2167252,-0.34236303,0.09687598,-0.47550172,-0.103710584,0.022673164,0.35683763,-0.07476427,-0.2570271,0.29936406,0.16073205,0.5000392,0.09253542,-0.25516808,-0.43880036,0.0010523704,0.10592183,0.46793658,-0.25497335,-0.22678559,-0.28444093,0.16261618,0.508888,0.22900182,0.083636686,0.008982757,0.025536167,-0.16452135,-0.26052836,0.6190735,0.57831454,-0.4063004,-0.25361446,0.23338358,0.6369315,0.09001374,-0.17397928,0.06253198,0.00760401,-0.5282096,-0.113986425,0.013354549,-0.058353845,0.56922144,-0.11632352,0.12170808,0.57892257,-0.1254964,0.011191646,0.2095401,0.09188195,-0.08822978,-0.20817845,-0.16223104,0.27238095,-0.5786228,-0.14915378,-0.28439993,0.5929858,0.008660825,-0.7420867,0.44308117,-0.4088198,0.09113077,-0.058425225,0.48369706,0.5994622,0.65849185,0.27167866,0.86018986,-0.36791736,0.18050186,-0.19313982,-0.1577114,0.028950004,-0.29941532,0.09956258,-0.5281409,0.2676238,-0.06452539,-0.050089303,0.39403594,0.4716929,-0.6281257,-0.19779712,0.25206432,0.78364146,-0.2824323,-0.116092436,0.8062166,1.1159256,0.94808537,0.036604363,1.0735208,0.29661098,-0.24975179,-0.0712361,-0.13403644,-0.67279524,0.19267403,0.3308732,-0.17188662,0.4848649,-0.007501726,-0.078185864,0.16296802,-0.31048092,-0.13262679,0.11151622,0.14378585,0.10798423,-0.03973272,-0.48771498,-0.09448919,0.06771216,0.0003093481,0.37140256,0.23610929,-0.20503853,0.59071916,-0.007276558,1.1789868,-0.080128506,-0.013186655,-0.0156197185,0.44811246,0.31580755,-0.024202036,-0.081330985,0.46632883,0.15168218,-0.03644385,-0.49615705,0.10698537,-0.32347262,-0.27258366,-0.09185011,-0.3242142,-0.19493397,0.054063626,-0.13600366,-0.32878363,-0.05519742,-0.37160593,0.34162155,-2.6215832,-0.30187628,0.036237612,0.42990535,-0.17560223,-0.2813346,-0.31115583,-0.49767116,0.24416722,0.24958548,0.5397123,-0.5876233,0.30984926,0.49910238,-0.63522047,-0.21580465,-0.65659434,0.012031651,0.00078274193,0.43614307,0.1056474,-0.22889464,-0.097498216,0.17681812,0.64601314,0.12403914,0.08088191,0.6628169,0.49311697,0.12558138,0.4814143,-0.036875587,0.68924785,-0.52684975,-0.21389842,0.3497399,-0.3743939,0.37028933,-0.06638004,0.18457064,0.5206824,-0.3627658,-0.9421192,-0.50170493,0.045312844,1.359757,-0.2364031,-0.56687856,0.14089163,-0.27202743,-0.3422672,0.114742905,0.5626699,-0.0837702,0.07447204,-0.6817721,0.031632707,-0.018707417,0.19336154,0.07249113,-0.102409124,-0.20672299,0.6533005,-0.11647602,0.5394512,0.1487973,0.12258882,-0.23730813,-0.27395818,0.0658835,0.9928264,0.32049862,0.1296038,-0.1113757,-0.29930747,-0.16315335,-0.17680629,0.025328089,0.5828385,0.5466292,-0.03452088,0.037046067,0.36347267,0.085741356,0.068203576,-0.17250842,-0.14743412,-0.1422999,0.032007758,0.45465484,0.87589103,-0.20136632,0.33691075,-0.1410145,0.40107667,-0.09361443,-0.5835352,0.4918623,0.5716234,-0.24043535,-0.28755495,0.5701318,0.3432306,-0.53220445,0.5124953,-0.68848836,-0.5127795,0.4954438,-0.18001571,-0.40154272,0.2710487,-0.30354244,0.24630788,-0.6427119,0.25006106,-0.15471284,-0.3169585,-0.41845897,-0.07163088,-3.264114,0.2820145,-0.08499016,-0.059294045,-0.2585835,-0.09692201,0.16323583,-0.5114802,-0.62645555,0.04780199,0.18448171,0.5790471,-0.16500565,0.1971585,-0.22870176,-0.36497352,-0.10519664,0.23342991,-0.0025878274,0.28901538,-0.12636732,-0.35342222,-0.06830668,-0.02559814,-0.4440039,0.10332409,-0.6610089,-0.40608317,-0.07557395,-0.4808113,-0.13510261,0.47843134,-0.38417333,-0.015852602,-0.30639508,0.18872115,-0.03282039,0.05741525,0.0016454504,0.15415318,0.107202634,-0.116400085,0.23803766,-0.27634338,0.4433661,0.0017903561,0.2717921,0.33231768,-0.11021502,0.06729196,0.53683406,0.8102703,-0.17710194,1.0799989,0.20920141,-0.14123997,0.33316138,-0.06757809,-0.37092543,-0.56799686,-0.18173483,-0.023753222,-0.4740724,-0.31992757,0.22161764,-0.35582063,-0.9191023,0.63102883,0.06333354,0.25040123,0.031521305,0.59843963,0.6139585,-0.29011318,0.02437419,-0.18718632,-0.3191219,-0.58975667,-0.28006494,-0.5589271,-0.49090275,0.09948739,0.8608588,-0.32778233,0.31846327,0.04129263,-0.10348078,0.02837166,0.215635,0.14102188,0.3094855,0.5450655,-0.034779336,-0.5663549,0.2845847,-0.18467572,-0.19473816,-0.43068472,0.09497476,0.6047227,-0.76587796,0.44195506,0.4109478,-0.038421173,-0.038005523,-0.4771818,-0.101687685,-0.18733929,-0.10160046,0.35348722,0.27420107,-0.8013471,0.52461404,0.41975978,-0.5496544,-0.6866738,0.19078809,-0.16885789,-0.17674455,-0.10491168,0.3172758,0.08901077,-0.07956019,-0.16251339,-0.05178943,-0.3954743,0.23386994,0.045387607,-0.068050034,0.3365992,-0.12898865,-0.4426171,-0.8309835,0.07106411,-0.5724154,-0.26858187,0.3991475,0.018099498,-0.061881907,0.12826918,0.095557764,0.4160864,-0.3058572,0.0154484445,-0.07801955,-0.36440256,0.49343407,0.2890918,0.5264041,-0.3902686,0.5215619,0.0195359,-0.15599193,0.06960854,-0.14613973,0.47780573,-0.07917413,0.33064058,0.13275026,-0.20479536,0.17333482,0.7431205,0.07529108,0.34698042,0.19199911,-0.12679881,0.456965,-0.04944394,0.036432464,-0.112167545,-0.60817057,0.13275354,-0.30613977,0.10167872,0.4137786,0.27506214,0.3463933,-0.027987711,-0.15963426,-0.076663926,0.25286412,0.07551111,-1.1925199,0.16617166,0.12937789,0.7713922,0.22056343,0.19799702,-0.14707914,0.6423676,-0.23411387,0.17540342,0.466443,-0.019965071,-0.4488951,0.4626332,-0.52955586,0.47004843,-0.17662725,0.08302375,0.20288152,0.14760517,0.3559255,0.9321947,-0.2016243,0.055999856,-0.017530736,-0.15744019,-0.08502885,-0.33345234,0.01757579,-0.37920988,-0.35694757,0.7686129,0.25194278,0.61000425,-0.07725418,-0.11105359,0.026463678,-0.08627307,0.29190668,-0.018913366,0.1250604,-0.035263725,-0.5188625,-0.0168838,0.5701676,0.54995143,0.23885356,-0.25852042,-0.21829864,0.16072433,-0.14625901,-0.08464419,-0.1006769,-0.48682392,0.011927976,-0.19828993,-0.7219172,0.42711252,-0.1056898,0.023862066,0.24960548,-0.053122327,-0.120346315,0.23269628,0.07296904,0.76647305,0.15277545,-0.27396426,-0.36718464,0.22020887,0.20295006,-0.28281114,0.16935405,-0.31707323,0.20004278,-0.50996333,0.6128334,-0.34194934,-0.47417957,0.16680428,-0.2001209,0.08900197,0.53625983,-0.21071008,-0.19166653,0.022955857,-0.12444509,-0.46724778,-0.28977668,-0.20306693,0.21547511,0.22643143,-0.2825367,-0.16909331,-0.28363693,-0.024725337,0.44344583,0.09715671,0.40353516,0.18939129,0.0821844,-0.26853102,0.1788593,0.21273932,0.45331806,0.07126435,-0.13078019,-0.44558424,-0.47967127,-0.38575652,0.23257428,-0.06704087,0.14309064,0.12749784,-0.08409341,0.8898822,-0.21603976,0.9837979,0.042033654,-0.28683165,0.0025703083,0.61844325,0.020130713,-0.07521698,-0.3810353,1.0171205,0.5917993,-0.13366333,-0.021455096,-0.5508437,-0.08519371,0.28345075,-0.41512075,-0.097770855,-0.07713682,-0.5701036,-0.42839673,0.18738453,0.20825975,0.3645737,-0.2280766,0.3884819,0.07824599,0.060508635,0.21076983,-0.49652132,-0.3604713,0.29777473,0.26862082,-0.24119605,0.015240183,-0.4473567,0.29707938,-0.61355495,0.05057333,-0.4647333,-0.023205029,-0.12432737,-0.33439943,0.1399464,0.11328855,0.26067036,-0.3623317,-0.44818863,-0.053519405,0.30673188,0.10648476,0.08968146,0.4294329,-0.23504736,-0.14524086,0.18060721,0.5458883,1.1648952,-0.3376358,0.10177118,0.45486355,-0.3242342,-0.5661574,0.37399757,-0.24549259,0.09815642,-0.092086084,-0.3318017,-0.42812464,0.24618237,0.20233633,0.10585436,0.09909026,-0.63227403,-0.08396021,0.13856217,-0.4039903,-0.0955009,-0.1534357,0.1999006,0.6669471,-0.16411519,-0.3626068,0.054091748,0.43817294,-0.16361156,-0.6140732,-0.020341529,-0.20834193,0.27420002,0.27084425,-0.35501736,-0.034988508,0.18822053,-0.5603931,0.0092628915,0.1636278,-0.45121047,0.008968817,-0.45406187,0.17404729,0.74731064,-0.22403763,0.19730799,-0.5226859,-0.50908554,-0.934671,-0.32447827,0.09780128,0.13239248,0.04237133,-0.47659633,-0.004642835,-0.15017025,-0.29972485,0.07443938,-0.4747886,0.54800725,0.13557766,0.39136598,-0.3852927,-1.0146519,0.14504288,0.08571294,-0.19569996,-0.6215441,0.49539137,-0.053015344,0.79916394,0.075053796,-0.09914604,0.35081992,-0.60536,0.08097014,-0.32580888,-0.04086025,-0.66172796,0.01671913,887 -762,0.42199266,-0.13821255,-0.46356174,-0.1405729,-0.2028628,0.15984184,-0.15295817,0.60492384,0.15386908,-0.5073157,-0.09160706,-0.14345168,-0.07398497,0.52261305,-0.43137467,-0.4460728,-0.098373644,0.11104499,-0.3738186,0.39893097,-0.4470341,0.39919317,0.03495546,0.39098895,0.23106036,0.3225537,0.18335429,-0.11841922,-0.36173245,-0.36977813,0.020727703,0.019262027,-0.5500307,0.14786614,-0.32984418,-0.27936712,0.05754309,-0.64811164,-0.41067153,-0.721506,0.22649407,-0.7932244,0.6809647,-0.047250196,-0.23184739,0.19728881,0.2911479,0.2785277,0.07308878,-0.06569901,0.3721252,-0.115661554,-0.033605754,-0.017317222,-0.37474397,-0.4823402,-0.67366207,-0.021449635,-0.41863987,-0.16723996,-0.2501083,0.17638463,-0.19684157,-0.075720794,0.036498204,0.43312058,-0.3965047,-0.04170301,-0.031378433,-0.038578052,0.45923555,-0.56584924,-0.3160933,-0.05605026,0.27228734,-0.3691426,-0.036115758,0.35215044,0.20365223,0.3940482,-0.10292453,-0.13526686,-0.45601743,0.022414794,0.1409617,0.68593127,-0.37599394,-0.35778987,-0.10345569,-0.22838761,0.34212297,0.16253494,0.10186406,-0.35209042,-0.1614882,0.014963388,-0.27349257,0.4038889,0.47098124,-0.16000322,-0.037035994,0.48529193,0.3413297,0.21286082,-0.08361149,-0.038813148,-0.013709598,-0.4825648,-0.23090331,-0.018034771,-0.13013066,0.58550876,-0.1583611,0.4102854,0.6222691,-0.035652988,-0.04739407,0.06012305,0.23899494,-0.16916054,0.13576081,-0.3600512,0.08803945,-0.4871763,0.002897689,-0.039359257,0.6720181,0.20541754,-0.9273806,0.40577132,-0.5656375,0.051429715,0.13869078,0.3484589,0.5157595,0.50729126,0.25747877,0.6175865,-0.37318265,-0.0023276256,0.13403694,-0.25505778,0.21699923,-0.17206262,-0.0068744714,-0.51951015,-0.1629716,0.23544072,-0.12858485,0.043529313,0.37366757,-0.3950241,-0.065118186,0.1724983,0.80287623,-0.26931036,0.08142356,0.7199886,1.2153853,0.9874143,0.08962265,1.312749,0.07116673,-0.25345057,0.03610479,-0.19418485,-0.7906046,0.2544907,0.424228,-0.6407722,0.40954843,0.18515931,0.088775024,0.3895632,-0.39709342,-0.070954435,-0.16275324,0.17691046,0.04658282,-0.24072233,-0.48784298,-0.33156174,-0.05606114,-0.0055244793,0.014641927,0.21897449,-0.21762808,0.36473545,0.36975846,1.588025,-0.10834129,0.15658572,0.06616927,0.4257707,0.08722807,-0.15909089,-0.045315422,0.13249424,0.22130847,0.1162654,-0.42606196,-0.037561838,-0.16991566,-0.56362337,-0.10411954,-0.3111107,-0.2902808,-0.16653164,-0.44716564,-0.20884515,-0.1406718,-0.40112674,0.4487427,-2.7473373,-0.053255722,-0.09599483,0.36975873,-0.109252386,-0.4367989,-0.044090986,-0.42834777,0.6936605,0.29637378,0.52076244,-0.62510574,0.31781313,0.59006715,-0.46236256,-0.11773205,-0.58886,-0.09311126,0.030736921,0.19598466,0.052823786,-0.120985515,0.09875249,0.3439462,0.26988378,-0.09731073,0.18657735,0.26527855,0.3278235,-0.027902126,0.44273227,-0.17523733,0.51063406,-0.28082657,-0.15508899,0.24956425,-0.6323631,0.14730069,-0.149906,0.19596967,0.41316864,-0.48350203,-0.792364,-0.56306785,-0.31076956,1.0879653,-0.09102157,-0.29666626,0.3523153,-0.27345875,-0.52348363,-0.031663805,0.3264963,-0.2878647,0.071768716,-0.825924,-0.10383546,-0.15704568,0.17723121,-0.040507726,0.13451856,-0.5878055,0.6880284,-0.16650115,0.40535957,0.38164294,0.17728959,-0.4639371,-0.4232744,-0.006651046,1.0288984,0.57223284,0.15394965,-0.13470976,-0.14414245,-0.33193108,-0.3047113,0.08220099,0.40525278,0.716206,-0.032895006,0.030355912,0.18623391,-0.022986481,0.03792614,-0.062618926,-0.32271692,-0.029062161,-0.004126182,0.60777223,0.56445014,-0.2141038,0.28945324,-0.13777357,0.36144602,-0.19106907,-0.34282982,0.4486162,0.8269216,-0.038629726,-0.17089412,0.7697693,0.42448145,-0.22990447,0.49087194,-0.5631308,-0.4453316,0.4367706,0.0032327403,-0.5775851,0.17479672,-0.24185435,0.06678262,-0.8858398,0.54058486,-0.12069027,-0.48030588,-0.5144788,-0.19367181,-2.9335017,-0.023618784,-0.057946842,-0.35246998,-0.083950475,-0.09010247,0.1905321,-0.7579899,-0.75309974,0.08720911,-0.076986626,0.725731,-0.00047089046,0.10532176,-0.0040627536,-0.34753415,-0.3965604,0.21153678,-0.01893911,0.40791115,0.0782631,-0.42829177,-0.22031006,-0.31241384,-0.5799276,0.086460866,-0.6850945,-0.47862127,-0.15402396,-0.4227436,-0.37669343,0.73545486,-0.43622434,0.011747697,-0.25910994,-0.09646177,-0.30277106,0.4507543,0.16715254,0.18274087,0.028956423,-0.014081494,0.042261593,-0.347871,0.30505913,0.21487363,0.36993173,0.48751628,-0.17129827,0.3280006,0.5572032,0.8584865,-0.07388961,0.99858624,0.39049658,-0.13066015,0.23814462,-0.38326314,-0.29679418,-0.53735715,-0.3098957,0.112448126,-0.34899533,-0.3360268,-0.12340693,-0.38081935,-0.71017903,0.54668975,0.05085284,0.12714808,-0.09632739,-0.040968455,0.18348163,-0.17953461,-0.15996304,-0.034039453,-0.14171973,-0.5566631,-0.306063,-0.73449135,-0.4609772,-0.06452214,1.0036591,0.05860079,0.09075531,0.2651517,-0.2803934,0.17510238,0.029298764,-0.031045772,0.025686612,0.2428205,0.119823106,-0.69741714,0.50995666,-0.10562606,-0.0048956047,-0.53887993,0.023105025,0.73373234,-0.44016173,0.5156921,0.4915374,0.19312176,-0.18542624,-0.50361615,-0.23585807,-0.090206474,-0.24055497,0.40548176,0.15325826,-0.7495352,0.49918577,0.32512566,-0.32422787,-0.7308721,0.55161047,0.08109458,0.033898517,0.045021936,0.3468264,0.12796932,0.012269978,0.01786779,0.31828466,-0.32108945,0.38392913,0.30218276,0.12820768,0.41744468,-0.17639178,-0.16648445,-0.77110046,0.11053394,-0.31963497,-0.33691555,0.009728597,0.0049109343,-0.053725645,0.1290819,0.1196217,0.28048867,-0.5255924,0.18167995,0.07889027,-0.24595307,0.18526393,0.519511,0.59908,-0.31857732,0.5947105,0.00703689,0.021553122,-0.18614835,-0.18543826,0.46559852,0.21840233,0.18934822,0.16860853,-0.26988065,0.23732468,0.7459542,0.20177521,0.37407154,0.17809297,-0.26598948,0.22177656,0.10464681,0.15186508,0.10144312,-0.63653886,0.10423644,-0.106605604,0.010236878,0.48287874,-0.023757068,0.22098094,-0.1429865,-0.33495352,0.075988404,0.25387126,-0.19611219,-1.558633,0.3539476,0.10757171,0.77174824,0.5719945,-0.07954808,0.06629339,0.72829616,-0.2462344,0.043833997,0.35647795,0.021032682,-0.56069654,0.5657591,-0.7559358,0.34892818,0.0012164575,-0.018282946,0.00017727338,0.014753332,0.34844735,0.7545707,-0.081245884,0.14722429,0.023270901,-0.25183532,0.19170281,-0.42945164,0.2440487,-0.29739618,-0.19182189,0.591869,0.36262482,0.36811036,-0.170398,0.171019,0.037930492,-0.19670238,0.30120733,0.07927632,0.05224116,-0.26126096,-0.63978374,-0.2355668,0.62294894,-0.008496111,0.22244596,0.15853435,-0.3077243,0.17428468,-0.0645671,-0.03324672,0.02546951,-0.81624943,-0.033167128,-0.37708616,-0.3715673,0.3238497,-0.103447124,0.30205137,0.26396668,0.06288462,-0.22173151,0.31375557,0.35364974,0.7133106,-0.033135153,-0.17785318,0.06941343,0.16690312,0.16546907,-0.12662408,-0.028803643,-0.2818211,-0.009231723,-0.34426954,0.33866823,0.0149696665,-0.22339953,0.14717351,-0.16273744,0.16887826,0.465823,-0.23119281,-0.055988666,-0.11829584,0.10653642,-0.023598662,-0.16605908,-0.1610322,0.12633856,0.28827026,0.012741602,-0.07127008,-0.12041748,-0.18146256,0.2780877,-0.03969087,0.48673242,0.61953217,0.14399089,-0.6122789,-0.17170022,0.034164842,0.42061278,-0.0026477552,0.013680761,-0.32477725,-0.44520867,-0.2628469,0.2771509,-0.26638675,0.25741693,0.10277675,-0.31615904,0.64081573,-0.004972371,1.0886092,-0.01210154,-0.36831373,0.0017773142,0.5115604,-0.0845969,-0.09556888,-0.40064353,0.8911265,0.4081251,-0.27355412,-0.13450171,-0.42421213,-0.059356946,0.22338794,-0.16430408,-0.27201673,-0.06224199,-0.6901375,-0.3534014,0.2605851,0.12944399,0.030429102,-0.07358033,-0.03724432,0.43083775,0.16814001,0.5176289,-0.49104732,-0.106240936,0.44613874,0.2178028,0.05372363,0.028634993,-0.44329026,0.39158803,-0.390055,0.04632308,-0.23581854,0.20199409,-0.28916994,-0.40284982,0.103989474,0.04710454,0.42126685,-0.13094285,-0.47669697,-0.11486216,0.48572236,0.055552814,0.07658359,0.46389169,-0.17611621,0.10384011,-0.13429527,0.39532852,0.96395695,-0.21522944,0.17547446,0.40498713,-0.4204964,-0.4538421,0.13943541,-0.36443418,0.21354516,-0.08673651,-0.3458562,-0.5456915,0.23728797,0.30616662,-0.01342895,0.114967465,-0.3476515,-0.23731738,0.41723305,-0.32100254,-0.29148972,-0.34304273,-0.090456165,0.5959734,-0.45700365,-0.2209816,0.053553667,0.23896901,-0.25729975,-0.36048508,-0.008357497,-0.19482297,0.45241103,0.08896799,-0.5008759,-0.1635717,-0.07809197,-0.30502245,0.07690152,0.20464435,-0.3631941,-0.06542279,-0.27521265,-0.086330146,0.83211666,-0.10247484,0.10380007,-0.4819864,-0.49296442,-0.87331843,-0.45876122,0.26610035,0.1986863,-0.12523778,-0.6903654,-0.03292841,-0.07317592,-0.08288046,0.022869166,-0.31350276,0.37211052,0.19401935,0.38688084,-0.101404384,-0.64227784,0.15757892,0.14955123,-0.036061954,-0.4445116,0.6016875,-0.051968317,0.75081825,0.16036305,0.015837623,0.02178978,-0.5576529,0.25471961,0.0074601346,-0.20920442,-0.5945189,0.30683768,889 -763,0.4807566,-0.40984088,-0.48710448,-0.08241738,-0.35354185,-0.0013075242,-0.19323125,0.6205939,0.22049053,-0.6262122,-0.22957459,-0.17501146,-0.0014194146,0.100627296,-0.32901174,-0.30397618,-0.06401329,0.2983468,-0.3009916,0.571644,-0.2410066,0.26244742,0.11775613,0.32794878,0.36547488,0.1216374,-0.09813457,0.08873503,-0.075254604,-0.37278476,-0.11193395,0.29875717,-0.46883106,0.40262026,-0.35862386,-0.5075843,-0.02144687,-0.61340183,-0.49394223,-0.84384024,0.3070722,-1.0082202,0.7496027,-0.09577819,-0.39165798,0.077995606,0.32376453,0.28369045,0.13068105,0.055642027,0.2969271,-0.2357932,-0.040812995,-0.19911303,-0.23428085,-0.58374417,-0.63358176,-0.035160538,-0.38111994,-0.08131926,-0.41671324,0.3707975,-0.22739193,-0.11391346,-0.19024643,0.67694294,-0.4266874,0.14066245,0.12864736,-0.1295038,0.56002575,-0.76171976,-0.25571272,-0.061348878,0.1109968,-0.16120349,-0.31600195,0.17755398,0.35910177,0.46400756,0.04459176,-0.21547405,-0.3423668,-0.058973394,-0.00888299,0.54841775,-0.3358855,-0.2371281,-0.09102488,0.09382996,0.44322065,0.42098352,0.18447569,-0.28759602,-0.014120849,0.066262014,-0.22939652,0.48160955,0.54767936,-0.1818228,-0.07457893,0.23892051,0.52813995,0.10151116,-0.23228715,0.20294657,-0.107557856,-0.5503419,-0.12497342,-0.0398049,-0.24094994,0.5957722,-0.2222348,0.30018422,0.6287011,-0.19392933,-0.043565027,0.32297972,0.22876292,-0.1203136,-0.40619844,-0.47654402,0.32552433,-0.58962655,0.058077298,-0.1985076,0.74197257,-0.17919518,-0.519142,0.19518577,-0.6511605,0.09965363,-0.14665669,0.37209287,0.62457097,0.6230962,0.32223433,0.82925117,-0.29376253,-0.026387606,0.095568895,-0.22234614,0.09460551,-0.36883715,-0.0061182426,-0.5036096,-0.12058671,-0.26682347,-0.14010563,-0.07682022,0.7669131,-0.7774,-0.236962,0.1264635,0.9090481,-0.2426307,0.0055158986,1.0075332,1.1405509,1.2717931,0.09693908,1.1176865,0.26161763,-0.23153745,-0.08927098,0.004661734,-0.6096591,0.33489913,0.46874678,-0.11215173,0.13620672,0.17378396,-0.059414778,0.62152743,-0.5043286,-0.19351648,-0.31154618,0.04128591,0.100592844,-0.25063106,-0.6908699,-0.18586077,-0.07316326,0.20486125,0.028626762,0.18331172,-0.25235766,0.44741824,0.039542735,1.4068525,-0.22676834,-0.010659928,0.1868077,0.37750134,0.18728739,-0.24664044,0.10377726,0.12102453,0.385627,0.33533132,-0.45684907,0.0776608,-0.213507,-0.41455618,-0.20969948,-0.2880997,-0.19439782,-0.16282204,-0.49766195,-0.4043051,-0.1987765,-0.36412507,0.25044006,-2.4686244,-0.27274045,-0.20461163,0.43294826,-0.15622322,-0.45782655,0.24834186,-0.48556864,0.6248013,0.43069428,0.539421,-0.6772657,0.3419491,0.59747314,-0.5282666,0.006433771,-0.8152144,-0.16476974,-0.19024651,0.36081725,0.13963738,-0.20578788,0.08230514,0.022207508,0.54761547,-0.064826116,0.22789446,0.37448215,0.40822887,-0.31780034,0.5437434,0.07995284,0.5417505,-0.14203757,-0.32784107,0.45023552,-0.30424753,-0.01684535,-0.105229266,0.021777878,0.5411042,-0.5464902,-0.89490837,-0.9452802,-0.2063024,1.0379243,-0.059247274,-0.67898047,0.28009126,-0.49504244,-0.49881443,-0.034628153,0.5287623,-0.042020816,0.1576058,-0.9034555,-0.10875574,-0.14110146,0.114645466,-0.034285363,-0.17706913,-0.75187844,0.9466569,-0.22666542,0.46156585,0.43633074,0.38795295,-0.40044308,-0.5257392,-0.14277512,1.0567732,0.66074556,0.09720277,-0.30677626,-0.0016142565,-0.17286846,-0.11137654,0.20317411,0.6296906,0.6352803,-0.07496826,0.12162711,0.44331518,-0.017607931,0.08415655,-0.029589634,-0.49959707,-0.22682913,-0.064168096,0.71791965,0.72872216,0.0917151,0.5885918,-0.21752647,0.5628011,-0.17755798,-0.4970937,0.267536,1.2713027,-0.14911182,-0.5382707,0.8732049,0.46989873,-0.19081013,0.43230522,-0.6147578,-0.34475043,0.19163066,-0.20666203,-0.72564656,0.22235471,-0.3965738,0.22444381,-0.9134435,0.48096168,-0.32771567,-0.8495818,-0.66081196,-0.25963628,-3.0011296,0.363379,-0.38274643,-0.16943468,-0.16126712,-0.39281875,0.2701483,-0.62137675,-0.62004554,0.057858907,0.027900435,0.79571,-0.09064953,-0.019270202,-0.14583696,-0.45606804,-0.23761518,0.24725193,0.23764172,0.3089455,-0.12002222,-0.36878327,0.0018699307,-0.08255401,-0.5831794,0.013587149,-0.9188671,-0.68787485,-0.16931556,-0.5723038,-0.35633057,0.7293967,-0.2153346,0.058526892,-0.3974563,0.07017975,-0.011090453,0.20733452,0.071102075,0.3025014,0.10747996,-0.15225898,0.16550249,-0.26645902,0.14425509,0.050275568,0.36374962,0.22587395,-0.2535269,0.3574879,0.57154685,0.6848183,-0.2908521,1.2134387,0.6428891,-0.1566318,0.146782,-0.088958375,-0.4474538,-0.65053046,-0.2801479,0.2525919,-0.55573225,-0.27593544,0.1396046,-0.48942846,-0.81462026,0.7429713,-0.04085394,0.3794251,0.002325269,0.39968652,0.6079553,-0.22498855,-0.30310774,-0.007249383,-0.31563473,-0.573581,-0.27157247,-0.6056606,-0.621164,-0.22663032,1.1786114,-0.11810087,0.21870361,0.30362374,-0.15633672,0.07544514,0.14545101,-0.06937433,0.04929858,0.5761947,-0.27718848,-0.76587677,0.32953212,-0.16852869,-0.14245181,-0.5579708,0.4959796,0.850953,-0.57109016,0.5755666,0.44004643,0.20289429,-0.5332558,-0.613959,-0.11270222,-0.07141546,-0.24686477,0.67816836,0.36997956,-0.7348559,0.47039095,0.34215993,-0.1543525,-0.7407472,0.660171,-0.22468421,-0.22123593,-0.009933426,0.34011868,0.051751766,-0.011948178,0.015874583,0.2964647,-0.2985519,0.32418698,0.21357553,-0.13223681,0.11066718,-0.31440845,0.00600785,-0.825878,0.19044226,-0.58001494,-0.34933588,0.31103283,0.06260434,-0.013534193,0.31381336,0.1428093,0.49547905,-0.17844535,0.089402,-0.32515156,-0.5052279,0.4090503,0.5760489,0.5048813,-0.3985174,0.4723929,0.09216903,-0.23347656,-0.19706856,0.11911015,0.47653005,0.03877447,0.5320488,-0.12380899,-0.061979312,0.35237217,0.8214312,0.21774295,0.6470328,-0.05269356,-0.008034787,-0.022743229,0.13655263,0.38577354,-0.11534904,-0.7699481,0.13966714,-0.44031546,0.18199499,0.5082575,0.028359026,0.23837426,-0.22069822,-0.394248,0.033885412,0.15828753,0.14846438,-1.5567597,0.37871736,0.21472563,0.9737726,0.32446605,0.07135056,-0.17726296,0.8409167,-0.058173385,-0.03262911,0.42476007,0.19090632,-0.2897549,0.53914464,-1.0455906,0.33166158,-0.07431459,-0.009900708,-0.1640003,-0.10573024,0.57879364,0.8914286,-0.22642693,0.035196066,-0.022070093,-0.35093725,0.33095393,-0.48489827,0.2251145,-0.5291927,-0.4432104,0.8006619,0.52136165,0.44630894,-0.14869381,0.08545354,0.080610104,-0.18099976,0.3995922,0.1349167,-0.028017465,-0.3136749,-0.64379305,-0.13237442,0.40101144,0.0066515896,0.17934373,0.0024274725,-0.21005043,0.2840111,-0.096984714,0.08969646,0.087600976,-0.6276686,-0.06944968,-0.35757568,-0.51788354,0.5140768,-0.050625376,0.046123292,0.16701017,0.038439013,-0.18042406,0.23320507,0.066688605,0.83153343,0.15763211,-0.17989816,-0.26196858,0.0961389,0.11576119,-0.28144407,-0.12708825,-0.17946577,0.28961346,-0.6640166,0.42516953,0.023952693,-0.56080616,0.32798812,-0.106900685,0.0075459685,0.49425015,-0.21028045,-0.18967935,0.12993021,-0.050770577,-0.14937386,-0.29452503,-0.024506519,0.28029707,0.0915237,0.020027189,-0.14483775,-0.21543993,-0.36941716,0.50993353,-0.086908534,0.60967517,0.5213545,0.031999048,-0.3536084,-0.065177664,0.24387115,0.55469644,-0.16736275,-0.100271024,-0.17374937,-0.62394774,-0.36852866,0.25372145,0.06752013,0.47005087,0.14934936,-0.031101776,1.0263441,0.046080966,1.3246906,-0.034205027,-0.5021811,0.046120163,0.56198,-0.070588775,0.011156905,-0.41202527,1.0226109,0.6052125,-0.14843395,-0.026831407,-0.5732961,0.10740713,0.22153774,-0.16514541,-0.18495552,-0.0146250175,-0.80432945,-0.26337856,0.24567914,0.41767508,0.149053,0.02460299,0.15391515,0.5989638,-0.13402304,0.26461652,-0.40912098,-0.16720062,0.36056006,0.37846655,-0.19661973,0.06029968,-0.6009948,0.3062825,-0.42556885,0.12070867,-0.31546915,0.21649545,-0.17269564,-0.35311472,0.30507973,-0.22931258,0.4671305,-0.31229427,-0.2340455,-0.11889632,0.5731245,0.018433042,0.01566385,0.54937935,-0.30708778,0.07018216,0.081239395,0.534407,1.2374753,-0.40476003,-0.07606962,0.37298998,-0.55163795,-0.59619504,0.35085136,-0.322712,0.12013145,0.30141985,-0.3532055,-0.36013845,0.20433356,0.26959637,-0.05952659,-0.058446113,-0.4733977,0.02294318,0.31768417,-0.42276186,-0.10325669,-0.17866342,0.3336542,0.38412032,-0.26179945,-0.3954767,-0.08330894,0.4219151,-0.16311055,-0.49842924,0.11719862,-0.3605787,0.42554167,-0.027171751,-0.5622952,-0.19737762,-0.1624052,-0.48625815,0.09926675,0.23476307,-0.30469382,0.06891178,-0.41502947,-0.15478285,0.9379601,-0.20416927,0.022324782,-0.67881525,-0.43563715,-0.8451613,-0.36836258,0.1050078,0.21362628,0.02740502,-0.664758,-0.15515852,-0.2788807,-0.12323152,-0.09791844,-0.31089416,0.5471478,0.22288138,0.69694334,-0.28203514,-0.9006743,0.34620363,0.0588442,-0.15543896,-0.625983,0.77422655,-0.024969826,0.6657244,0.08599559,0.27506155,0.080565885,-0.43026653,0.10934593,-0.056723878,-0.4343983,-0.9781612,-0.2373074,891 -764,0.3616658,0.0254627,-0.3880445,-0.052233525,-0.2734767,0.09284214,-0.06000587,0.45664522,0.18339767,-0.4513067,-0.1044439,-0.035377137,-0.1635606,0.307941,-0.23610705,-0.6160908,0.05467885,0.047032017,-0.31318936,0.57580477,-0.2774894,0.6577542,-0.027935734,0.37694898,-0.07315118,0.18518981,0.15669933,0.0044720266,0.19259056,-0.37228358,0.0004227253,0.03337823,-0.8089677,0.31197459,-0.2099997,-0.4608099,0.28686598,-0.48886675,-0.2373084,-0.62093484,0.17624386,-0.5738953,0.8235241,0.16320957,-0.17276353,0.104850754,-0.03369744,0.30414316,-0.10278349,0.17268941,0.26576024,-0.12482696,0.09150367,-0.33100647,0.092284255,-0.34188792,-0.35329336,-0.11715141,-0.3815593,-0.3245905,-0.16287497,0.1983464,-0.11527296,-0.038007975,-0.2023181,0.27559218,-0.5907353,0.08334657,-0.01320449,-0.25974143,0.045077045,-0.70128906,-0.20690629,-0.023996238,0.22663198,-0.2821967,-0.060749695,0.2991718,0.058490273,0.43090242,-0.0031813933,-0.057867374,-0.038276024,-0.27103484,-0.1410814,0.596025,-0.29256913,-0.319974,-0.14726366,-0.016684573,0.42447457,0.01445287,0.18610588,-0.22050375,-0.11423587,-0.33757517,-0.10192391,0.339619,0.48761526,-0.3416618,0.13200289,0.2129783,0.478471,0.28802982,0.054542813,-0.028703423,-0.10443824,-0.39139065,-0.078074604,-0.13105315,-0.15845546,0.30284736,0.09901544,0.24277037,0.53504425,-0.13677892,0.07869895,0.09305897,-0.016867233,0.21045424,-0.075696535,-0.47419697,0.36574215,-0.35006392,0.216811,-0.17603335,0.57322943,0.0031020413,-0.43749806,0.25948963,-0.5331758,0.038325127,0.013980497,0.4510288,0.28417614,0.52590364,-0.05940012,0.71033317,-0.5818542,0.10082065,0.00082083617,-0.04218122,-0.134517,0.24923292,0.035038777,-0.30074602,0.15834676,-0.14417465,-0.15010183,0.12460712,0.0520756,-0.7211749,-0.033739604,0.22329995,0.7854211,-0.28847593,0.16847119,0.7262997,1.180085,0.8622784,-0.09118596,1.0620606,0.17444435,-0.19408926,-0.43769962,-0.012853971,-0.4661105,0.07533348,0.5102902,0.002074801,0.2681138,0.09883519,0.01572178,0.29978535,-0.5914621,-0.26717243,-0.14319062,0.58552325,-0.0074910326,-0.28740516,-0.44204915,-0.0127215935,-0.012911453,0.0010291499,0.08232654,0.2809399,-0.4794836,0.14179425,0.04526575,1.1731803,0.13554586,0.10236626,0.09603512,0.39852187,0.3177603,0.08094292,0.16239454,0.24327832,0.26442748,-0.037076775,-0.5148044,0.15321891,-0.27131608,-0.53873837,-0.069706246,-0.15544814,-0.2478314,0.026830755,-0.42407608,-0.23009513,0.0095127225,0.074698456,0.37828392,-2.4177885,-0.17672297,-0.16594617,0.47918895,-0.119481474,-0.30671012,0.0016249877,-0.101157576,0.41913173,0.4008137,0.3927264,-0.48292178,0.34477422,0.5844464,-0.36881542,-0.20795487,-0.35202214,-0.0446263,0.14302531,0.27293167,0.14792415,-0.111480795,-0.030478861,0.26640308,0.41915587,0.028549125,0.14723152,0.32607225,0.4106248,-0.26269403,0.3233403,-0.015336366,0.44326383,-0.21692075,-0.10389581,0.315085,-0.3651744,0.18066496,-0.34579998,0.040331814,0.32992426,-0.22075066,-0.6937238,-0.3096272,-0.10007168,1.0404962,0.047709983,-0.51870966,0.123527676,0.10275721,-0.24361423,-0.038903303,0.45165676,-0.31876278,-0.062162038,-0.6746533,-0.03365815,-0.26459596,0.44238046,-0.04747754,0.09266547,-0.64238703,0.63915026,-0.18068658,0.45661163,0.4970736,0.40582472,-0.14732984,-0.37029126,0.021591287,0.8220656,0.69950515,0.07203008,-0.18654655,0.06633754,-0.019970087,0.06780982,0.029243818,0.71766484,0.69343376,-0.10672284,0.0036526276,0.19434412,0.16277257,-0.027564071,-0.1814284,-0.34087563,-0.15906137,-0.017931608,0.4091604,0.5329697,-0.23896226,0.21693142,-0.12152194,0.3731129,-0.2018967,-0.3967221,0.34828237,0.26785487,-0.21858686,-0.032811046,0.6248372,0.40822983,-0.090513304,0.32549492,-0.7725817,-0.37610957,0.46865243,-0.045763418,-0.38646272,0.27517053,-0.3132703,0.09732514,-0.8620799,0.50894296,-0.31721574,-0.4239999,-0.57263935,-0.37416136,-2.1415503,0.07159981,-0.21730123,-0.040480264,-0.25895217,-0.32156086,-0.04139442,-0.74422413,-0.5944761,0.2964309,-0.070402935,0.4111476,-0.06946249,0.19943355,0.033955447,-0.5902795,-0.06866956,0.3940997,0.033587635,0.16937247,0.17638487,-0.21648332,-0.08737393,-0.0016679366,-0.42413533,0.10756711,-0.44628322,-0.25290948,-0.11814018,-0.46539968,-0.0894833,0.61762214,-0.2667132,0.12657012,-0.16178681,0.06048973,0.011287212,0.12086631,0.22803518,0.14166477,0.026069313,-0.06038084,0.039609518,-0.23614189,0.24638847,0.29148486,0.4132716,0.17547148,-0.18053685,-0.12030269,0.39710805,0.6176405,-0.12657571,0.64915335,0.17224585,-0.27441007,0.41354254,-0.25258172,-0.41622674,-0.54464173,-0.5326793,0.2547468,-0.26331124,-0.5923287,-0.051789444,-0.3824738,-0.5855809,0.49643344,-0.024049915,-0.0074982345,-0.04689012,0.2556555,0.23147374,-0.2904968,-0.14003538,0.012717201,0.068453416,-0.24661233,-0.27567214,-0.6034679,-0.25742725,-0.15828909,0.8525787,-0.24483699,0.07716697,0.304903,-0.0034714364,0.26379097,-0.000623593,0.14952874,-0.07180286,0.2576275,0.092607096,-0.53128445,0.43882403,-0.19301136,-0.24625836,-0.59331894,0.09179818,0.6355458,-0.59758973,0.27971345,0.38123852,0.08533262,-0.10843231,-0.44423854,-0.109375395,0.23246314,-0.24849519,0.2783346,0.0047005415,-0.4097174,0.3394081,0.29368168,-0.3232587,-0.6712837,0.4883409,-0.05434707,-0.52917737,0.14258514,0.3089089,0.2263245,0.033407595,-0.104111075,0.24972796,-0.28726766,0.367253,0.1860058,-0.11877717,0.45453852,-0.17645001,-0.2162269,-0.8481151,0.2164307,-0.45798445,-0.41733822,-0.08768828,-0.022088083,-0.2821297,0.26177898,0.22454883,0.44329116,-0.6031773,0.16780734,-0.2806886,-0.37729982,0.47780174,0.44154784,0.5044076,-0.10406731,0.5312749,0.079512686,-0.038574357,-0.01877717,0.04430314,0.47054386,-0.10065894,0.075794294,0.017257543,0.15126947,0.21216136,0.64084786,0.09791506,0.18748124,0.11789629,-0.27608955,0.19743422,0.16061953,0.15852962,0.08414871,-0.30942023,0.33067077,0.03151502,-0.11079454,0.40262428,0.36264896,0.15861504,-0.063000746,-0.3660924,0.06424335,0.3752724,0.093933925,-1.0316398,0.25876933,-0.11093721,0.78842187,0.47510162,0.254917,0.18362603,0.43924662,-0.07102445,-0.13446933,0.08625025,0.11586578,-0.18789479,0.3911308,-0.3760535,0.2622951,-0.04427451,-0.020775795,0.17697889,-0.17600836,0.36720482,0.69937855,-0.11596056,-0.022955088,-0.07015802,-0.12804732,-0.2063471,-0.35457242,0.25773236,-0.28631324,-0.3032145,0.61134493,0.24701871,0.15418516,-0.23520707,0.05433099,-0.04469133,-0.24401543,0.28192136,-0.10982016,0.028771244,-0.02357864,-0.19032834,-0.17342371,0.49322128,-0.2869274,-0.1477099,-0.264687,-0.24843924,0.14602245,-0.09742521,0.04967706,0.05482822,-0.7526076,0.29516056,-0.43603528,-0.062325127,0.2633004,0.04481005,0.29005855,0.024296353,-0.04578542,-0.09557596,0.4743342,0.1440243,0.6868524,0.055151388,-0.19617026,-0.20437646,0.32179627,0.1432884,-0.20530897,0.25278482,-0.18038484,0.19727223,-0.6011833,0.28694436,-0.11197127,-0.18752891,0.011303397,-0.33897984,-0.076279216,0.27278343,-0.047729455,-0.057530794,0.06515204,-0.3139553,0.13003089,-0.2697165,-0.44593745,0.14327744,0.19918774,0.02898219,-0.1506378,-0.17312871,-0.33131617,0.44309372,0.15546802,0.3461617,0.23632017,0.07332924,-0.5849097,0.09997916,-0.2863366,0.3905234,-0.21574871,0.05141657,-0.10281587,-0.65273607,-0.388597,0.30577624,-0.3691934,0.09689646,0.04748781,-0.13057175,0.8426208,0.47274244,1.2162944,-0.18592884,-0.43334058,0.06782843,0.709136,-0.18088843,0.03999549,-0.27125928,1.2623032,0.5050794,-0.12741916,0.019533511,-0.022122484,-0.122151025,0.17892449,-0.2652809,-0.10185269,-0.13715975,-0.42684343,-0.31880647,0.123460926,0.28598595,-0.15739202,-0.01836741,-0.11110302,0.3651063,0.0815117,0.25045705,-0.6912359,-0.065769546,0.32736307,-0.05039024,0.048336305,-0.03615223,-0.34668085,0.45322832,-0.5565371,0.1985865,-0.39406,0.09089918,-0.28114992,-0.21049537,0.06820577,0.059632327,0.29742992,-0.7247379,-0.4106884,-0.039411448,0.21182749,0.05484529,0.087714046,0.57391727,-0.20115791,-0.054511968,-0.2315297,0.5050384,0.8552045,-0.32879496,0.046862647,0.4864689,-0.54982144,-0.48403072,-0.053262074,-0.37146437,-0.151501,-0.34695297,-0.29495537,-0.54764,0.22713701,0.056997437,-0.108475395,-0.1407141,-0.6831579,-0.16086242,0.48400497,-0.23979068,-0.2152209,-0.33390296,0.27339843,0.8386573,-0.2108438,-0.4301501,0.051514048,0.356637,-0.32801676,-0.7507642,0.12811294,-0.3830202,0.50952744,0.13060902,-0.25737095,-0.49693415,0.064971834,-0.3767169,-0.006972258,0.28510833,-0.18195525,-0.03345349,-0.2315259,0.2524163,0.59135664,-0.0327156,0.06883211,-0.55730444,-0.39934254,-0.93574977,-0.35514405,0.43865854,0.4104726,-0.19548811,-0.78575045,-0.1214317,-0.3437926,-0.08329419,-0.19112664,-0.092986494,0.29722887,0.18723775,0.66231143,-0.37473577,-1.2007403,0.12352516,0.046260852,-0.3187484,-0.35450077,0.43648702,0.28322238,0.63086253,0.070024244,-0.22364837,-0.018321143,-0.61140466,0.34833643,-0.33967048,-0.090184554,-0.5480965,0.34899646,892 -765,0.45730764,-0.13988641,-0.64794403,-0.13000634,-0.11671428,0.08513566,-0.2248598,0.18586317,0.26868442,-0.5174976,-0.089782625,-0.11070751,0.08455295,0.34719265,-0.11712634,-0.742693,0.14389266,0.32443392,-0.50899494,0.5056862,-0.50649273,0.39550957,0.06839162,0.19608848,-0.048636172,0.12916747,0.2732473,-0.04328279,-0.06373722,-0.29122147,-0.008064669,0.017302994,-0.60928476,0.2285874,0.0015764832,-0.47657442,-0.0023593444,-0.3553549,-0.44614804,-0.8253752,0.26114404,-0.9014199,0.56621563,-0.029011132,-0.3298259,0.3418179,0.081985965,0.25171897,-0.19845955,0.07251408,0.09705159,-0.32920727,-0.37177467,-0.3357512,-0.2675557,-0.38439396,-0.6577107,-0.041229468,-0.5817824,0.11001739,-0.34343383,0.115017615,-0.5029173,0.28384194,-0.22022255,0.42511258,-0.23060766,0.032640237,0.2345087,-0.12358941,0.060827173,-0.35899633,-0.09444466,-0.12231907,0.06483274,-0.008162673,-0.35621136,0.36752015,0.29812983,0.53277683,0.03746684,-0.36470094,-0.31854314,-0.047854804,0.27314755,0.4700932,-0.08233543,-0.4330528,-0.20951508,-0.03234743,0.19193341,0.1292127,0.17953953,-0.31337997,0.08356815,0.17029317,-0.4416746,0.44581315,0.5887402,-0.2965321,-0.12574512,0.34819758,0.57607484,-0.1768431,-0.09368939,0.16751143,-0.10670435,-0.60024196,-0.23998755,-0.04193455,-0.22909704,0.6361171,-0.30583966,0.097227775,0.5791957,-0.35484773,-0.26886475,0.32874286,0.063978516,-0.17482303,-0.23107216,-0.2868241,0.5051761,-0.64012486,-0.010802975,-0.20932443,0.8822991,0.11087041,-0.73423266,0.4169828,-0.61620164,0.2713912,-0.14691314,0.7143933,0.6255316,0.6086028,0.3927737,0.74708396,-0.58466077,-0.036940493,-0.083917156,-0.5803694,0.20963739,-0.26258707,-0.044347122,-0.387393,-0.03461613,0.073391825,-0.26671344,0.02150948,0.6640201,-0.35291007,-0.09915678,0.0402259,0.76543045,-0.39642665,-0.18155043,0.80163074,1.117841,1.2359812,0.21566452,1.320013,0.49585077,-0.117854886,-0.07313322,-0.09139746,-1.0773654,0.33462998,0.20210099,-0.40481365,0.42357528,0.13603482,-0.09848769,0.35753638,-0.5087629,-0.20899323,-0.046178136,0.3719043,-0.010955696,-0.17271203,-0.43704844,-0.32276016,0.18470731,-0.0632872,0.25301564,0.46689188,-0.28299916,0.46871904,0.21367405,1.2910413,-0.10432386,-0.064302996,0.14039192,0.30287144,0.24594344,-0.16183956,-0.026163243,0.19736011,0.43917763,0.11885666,-0.63997084,0.006064876,-0.20122232,-0.522311,-0.21410066,-0.20544481,0.036085792,-0.26113746,-0.18760516,-0.3145352,-0.12838647,-0.46992227,0.46177387,-2.2924502,-0.25043216,-0.059303317,0.3105581,-0.0968483,-0.33170074,-0.108074866,-0.6168777,0.30358347,0.3038019,0.4631663,-0.7422097,0.45235273,0.5191492,-0.48790088,-0.0056195143,-0.67150086,0.03527591,-0.23346502,0.31743506,0.111551575,-0.03415664,-0.08672248,0.17704147,0.5823238,-0.13261418,0.1916354,0.45934722,0.45730355,-0.11647514,0.36772993,0.05334331,0.7144754,-0.4666856,-0.14194515,0.309079,-0.5272831,0.113459535,-0.091514125,0.1842993,0.39260116,-0.43225104,-0.82953954,-0.6279215,-0.16196333,1.3775623,-0.40244505,-0.5352049,0.24492596,-0.049758546,-0.23268096,-0.045490835,0.26762116,-0.40903282,-0.09895686,-0.7962367,0.14044635,-0.008661444,0.3199991,-0.16343972,0.04512476,-0.32124692,0.600285,-0.098442905,0.5330833,0.30916113,0.22340542,-0.32472324,-0.5431016,0.18727861,1.0399938,0.35025123,0.17390272,-0.38444933,-0.19729845,-0.17038496,-0.1472719,0.19858263,0.4258081,0.84376436,-0.19123824,0.11991611,0.36774394,-0.039904073,0.031873778,-0.07660016,-0.40105087,-0.07753876,-0.13709049,0.6156272,0.7797193,-0.17274903,0.3541778,-0.1432298,0.4317018,-0.16704136,-0.6075641,0.65399873,1.2726135,-0.2040439,-0.42066997,0.69587857,0.4884432,-0.40809816,0.7401364,-0.61397797,-0.42937627,0.38959825,-0.08393591,-0.39983308,0.14219591,-0.37554714,0.20623027,-0.837781,0.45260465,-0.16909193,-0.65177476,-0.44859442,-0.025157807,-4.0378046,0.17311716,-0.24859825,-0.075322054,-0.14009787,-0.06819362,0.25578067,-0.34093586,-0.7454884,0.21994737,0.21987364,0.77754027,-0.12572847,0.19522792,-0.17510106,-0.21713169,-0.395604,0.15918534,0.25243443,0.2064916,0.13827302,-0.48260787,-0.09823547,-0.2619592,-0.42465788,0.12708524,-0.73912716,-0.43886662,-0.09523886,-0.5818532,-0.61523944,0.66638255,-0.3531678,0.01989865,-0.3178756,-0.027463647,-0.09305541,0.40556198,-0.21300521,0.029290965,-0.058522563,-0.21269837,0.008808434,-0.18742186,0.3432892,-0.053158734,0.34625039,0.34564286,-0.24313919,0.045745593,0.46970206,0.7360457,0.04289146,0.8192978,0.3214807,-0.15375292,0.3105141,-0.15024765,-0.3066392,-0.6498111,-0.3057161,-0.052808695,-0.49328735,-0.34266546,0.033887096,-0.36085966,-0.9735594,0.553861,0.041978322,0.056774303,0.047652915,0.38915083,0.43305126,-0.10454646,-0.09862819,-0.042752128,-0.34242398,-0.44249514,-0.33430618,-0.9789811,-0.35715738,0.10597616,1.1527832,-0.033220217,0.01749778,0.018711096,-0.07994558,0.0567633,0.27909052,-0.009807756,0.2414057,0.57842666,0.017664222,-0.7102511,0.4439307,-0.37270573,0.017214097,-0.7158574,0.20481804,0.62570804,-0.77731776,0.46401304,0.5248096,0.15057112,0.019361576,-0.5000326,-0.28410816,0.044947304,-0.12345098,0.54748577,0.46277764,-0.94488645,0.5514269,0.3816813,-0.47237998,-0.71713835,0.35424134,-0.11864771,-0.13090077,-0.059822902,0.5086429,-0.17442349,0.09364487,-0.2223838,0.092947006,-0.44523513,0.2689872,0.25073385,0.04569377,0.123013146,-0.08456703,-0.072023936,-0.7109048,-0.15838696,-0.5726655,-0.09251937,-0.01051044,-0.027048746,-0.006783059,0.22322692,-0.09774857,0.36572087,-0.2686624,0.05095106,-0.053474206,-0.4632209,0.6793458,0.5588051,0.40565413,-0.3915456,0.7586981,0.07333123,-0.14840218,-0.18978928,-0.004099204,0.3360699,0.09386502,0.54158485,0.45305464,-0.014586554,0.32568452,0.7743861,0.23048991,0.54499173,0.30199003,-0.15062734,0.3055519,0.1528043,0.36889976,0.0060243607,-0.5332568,-0.0408194,-0.3262369,0.23806565,0.6700793,0.12149526,0.45914248,-0.063490495,-0.3932924,-0.019577738,-0.0025299971,-0.11286701,-1.4614056,0.47699574,0.15377879,0.5867994,0.58840156,-0.0050541665,0.21935837,0.52380776,-0.24161513,0.14635979,0.28584242,0.017139025,-0.34781796,0.64025474,-0.79138684,0.43962348,-0.19504033,0.14497161,0.016994072,0.10550892,0.39668688,0.9754441,-0.12793726,0.20819518,-0.11222387,-0.29676652,0.26173243,-0.43098253,0.15448588,-0.4455962,-0.3658333,0.82142216,0.30945268,0.5494092,-0.21747524,-0.10321239,0.10059753,-0.15776652,0.05079717,0.035818044,0.037386358,-0.24081472,-0.7195228,-0.12289678,0.6180159,0.26223555,0.18258892,0.07866435,-0.11851156,0.2300472,-0.2668129,-0.2272823,0.027763424,-0.692829,-0.15216725,-0.20081249,-0.49944514,0.15793514,-0.26685092,0.19695896,0.3353557,0.14687833,-0.52353704,0.018160177,0.15291156,0.60894173,0.055126853,-0.2338183,-0.18136604,0.16983296,0.28845838,-0.3495175,0.1866751,-0.309838,-0.059202358,-0.5465588,0.59866405,-0.23695086,-0.3561471,0.25593063,-0.14931203,-0.046186987,0.5679939,-0.30419922,-0.16464195,0.08231267,-0.02130623,-0.17066042,-0.37989727,-0.17933647,0.25489688,0.048849728,-0.19334687,-0.0037377293,-0.09542697,0.016891552,0.32909063,-0.12951526,0.23009516,0.36558563,0.10515426,-0.4239874,-0.067162685,0.117981665,0.6956581,0.053841487,-0.32004818,-0.50529826,-0.4618848,-0.18830983,0.08090366,-0.024841528,0.31518608,-0.013877513,-0.37356436,0.7750146,0.107312694,1.0899588,0.10395272,-0.39339602,0.012013912,0.62470275,0.13670625,-0.17655197,-0.19889075,0.97964346,0.5283957,-0.19606209,-0.26982838,-0.6772222,-0.07460194,-0.03641389,-0.2630917,-0.42188266,0.04990047,-0.67779094,-0.15899706,0.23555396,0.3228113,0.12310849,-0.07521907,0.3023072,0.514609,0.066216305,0.30442283,-0.48307472,0.024581987,0.3735337,0.19675589,0.1008278,0.069770426,-0.39204648,0.2335655,-0.68727237,0.07240919,-0.104794815,0.06061512,-0.017059969,-0.33057305,0.34238002,0.30377427,0.19271165,-0.47327912,-0.32133776,-0.1381217,0.5089778,0.176783,0.27981022,0.8055845,-0.23668233,-0.047689393,0.21014386,0.5642601,1.0248567,-0.050459724,0.029676042,0.20128441,-0.5391445,-0.77840734,0.51316255,-0.09789632,0.11419478,-0.052071176,-0.47168332,-0.7293993,0.3662268,0.10330104,-0.007733831,0.43900827,-0.52778095,-0.2368305,0.20654249,-0.34700316,-0.2734676,-0.35122225,0.14939652,0.57256407,-0.2909697,-0.31945917,0.060829803,0.2347494,-0.20662615,-0.53879344,-0.28547108,-0.48527497,0.33203924,0.07919412,-0.2361339,0.080502026,0.14593357,-0.43786418,0.3023837,0.24090448,-0.22187011,0.2543244,-0.25758392,-0.18391807,0.65348977,-0.3397508,0.12663108,-0.71790373,-0.6183126,-0.95184547,-0.2545935,0.5616052,0.06257811,-0.076922186,-0.58791035,-0.1769999,0.058858827,-0.273042,-0.049332783,-0.42549464,0.420109,0.10168694,0.3239573,0.03667812,-0.8436214,0.043536086,0.14883493,-0.2499641,-0.43012887,0.48504508,-0.13771118,0.8954576,0.13241805,0.1734558,0.31159097,-0.5843365,0.16791286,-0.12798157,-0.10363186,-0.5722039,0.012786072,896 -766,0.6074062,-0.048998628,-0.5170523,-0.037493806,-0.31044033,0.014882737,-0.2512493,0.33563295,0.33047375,-0.32866284,-0.23311043,-0.14385428,-0.09093285,0.31210762,-0.15651336,-0.6264318,-0.2040326,0.1504263,-0.40096062,0.8526773,-0.31116167,0.23314336,0.03468955,0.36730495,0.4324618,0.11238742,0.18054877,0.039566416,-0.22717796,-0.26351535,-0.026694454,0.20392457,-0.6091184,0.1813968,-0.18897645,-0.3979922,-0.09972046,-0.4956681,-0.3440037,-0.7856306,0.40580684,-0.74884903,0.36638606,0.041000545,-0.18311456,0.3546133,0.2287182,0.24406312,-0.088557094,-0.2074851,0.121750906,-0.108843125,-0.03252,-0.083643965,-0.38490814,-0.21864584,-0.7657355,0.03842873,-0.4218912,-0.20237572,-0.39787585,0.13489719,-0.38030815,-0.02315248,-0.22296308,0.65218854,-0.4918969,0.0749164,0.09179108,-0.0815672,0.091357715,-0.84198225,-0.35273913,0.0046180347,-0.025568824,0.033010583,-0.09509396,0.21310498,0.1604418,0.37526697,0.07646223,-0.23610497,-0.57552207,-0.110761076,0.3048384,0.5039987,-0.0005465654,-0.2001775,-0.19536726,-0.03174836,0.21013114,0.29648617,0.38624462,-0.13827549,-0.042005584,-0.13827087,-0.24533492,0.51068455,0.500168,-0.32614404,-0.36913416,0.32739693,0.53768444,0.31589526,-0.14371274,-0.15350525,-0.069335505,-0.49992365,-0.06293798,0.23629893,-0.38144302,0.59873116,0.0017399621,0.12627429,0.49204797,-0.15156434,0.13887547,-0.02066471,0.08358538,0.061271053,-0.49985048,-0.29573876,0.33989912,-0.33584183,0.32345244,-0.08536343,0.90516675,0.033115573,-0.69190276,0.28229147,-0.5786018,0.10021329,0.03863164,0.48116717,0.64572614,0.27384135,0.35220715,0.788017,-0.21189213,0.05705337,-0.12085493,-0.09817021,-0.14090785,-0.105177715,0.22700302,-0.49075097,-0.11673311,-0.0686612,0.0003119982,0.21416165,0.6050793,-0.32182658,-0.14576696,0.27476338,0.8728965,-0.13001516,-0.11027675,0.91043526,1.3146987,1.4313846,-0.01894217,1.0561193,0.112633675,-0.27398768,0.028844027,-0.24614851,-0.6611817,0.19247445,0.27505052,-0.16320919,0.22637922,0.036999933,0.004432889,0.43390396,-0.42616814,0.123574495,-0.10159986,0.10312564,0.2643066,-0.026342694,-0.5328283,-0.35135034,-0.08564564,0.052310072,0.008028181,0.26540634,-0.2791562,0.19139484,-0.04180292,1.4644196,-0.14602375,0.012228741,0.2655231,0.4239777,0.1526795,-0.2185812,0.09421674,0.22426862,0.27998206,-0.09553185,-0.6336802,0.112746805,-0.33261627,-0.40833044,-0.15292518,-0.43605006,-0.07192935,0.05888841,-0.37438518,-0.19369163,-0.19791172,-0.49701184,0.48241064,-2.9023683,-0.022168994,-0.07872859,0.26306474,-0.30236226,-0.32702163,-0.0075335894,-0.50853604,0.4758239,0.22090127,0.48131004,-0.46854395,0.26798704,0.45690182,-0.71212536,0.046924964,-0.649427,-0.24565479,-0.004399873,0.48408306,-0.10357718,0.06438328,0.052089408,0.21269442,0.5941567,0.2625292,0.24267401,0.4031514,0.37480038,-0.27621028,0.46247414,-0.11591785,0.4913855,-0.25153378,-0.16311568,0.42794168,-0.41998762,0.3962135,-0.3258667,0.16957569,0.50610507,-0.39859676,-0.9339524,-0.5243549,-0.340913,1.0148823,-0.2670453,-0.6653291,0.33088037,-0.22124122,-0.099612586,-0.061107066,0.5151149,-0.07891024,-0.25211784,-0.7306151,0.022095177,-0.09026054,0.140417,0.00012853972,-0.006884974,-0.43571588,0.85653746,-0.06097478,0.48108834,0.31989008,0.44946972,-0.2091603,-0.30405995,0.08944552,0.93168896,0.4011213,0.07881196,-0.34670416,-0.10077858,-0.26252386,-0.26379153,0.119593754,0.5525269,0.68161094,-0.15198506,0.14497769,0.34208748,0.05444291,0.06638359,-0.07373747,-0.31281117,-0.24750155,-0.07421389,0.45534882,0.7560107,-0.0064349542,0.39512414,-0.02051844,0.16091275,-0.2364038,-0.32356438,0.48503417,0.828462,-0.09103041,-0.3165228,0.58298934,0.5957173,-0.2562721,0.5708686,-0.44955567,-0.20392752,0.52995366,-0.18665077,-0.41670778,0.014622303,-0.48137188,-0.19871551,-0.6990038,0.21882893,-0.43144462,-0.41998482,-0.48218888,-0.20958057,-2.3580127,0.17563698,-0.3109489,-0.2504072,-0.1900027,-0.0954433,-0.09774494,-0.6765762,-0.7074655,0.11891334,0.14800376,0.6506924,-0.1489722,0.085713536,-0.19310245,-0.34138992,-0.43659866,0.08235006,0.07653374,0.44784096,-0.1392873,-0.31140438,-0.0009949964,-0.07409591,-0.35725623,-0.054543562,-0.47365955,-0.36219856,-0.11863144,-0.44321978,-0.18838233,0.6398278,-0.4093973,0.025703628,-0.2893138,0.015607363,0.00011468392,0.17830823,0.22112559,0.32298067,0.15781872,-0.11320378,-0.061955318,-0.23565228,0.43351904,0.13844317,0.4148496,0.61767185,-0.17153539,0.1950462,0.36506134,0.5252085,-0.08980259,1.0319308,0.43295747,-0.13338062,0.22759174,-0.18747255,-0.22220048,-0.7020737,-0.13203517,0.052818887,-0.37305367,-0.6407295,-0.20175669,-0.32659495,-0.86245483,0.44492647,-0.0322846,0.57508767,-0.053643517,0.20171738,0.4703901,-0.17642571,-0.021815883,-0.06903574,0.021456517,-0.38826662,-0.43573233,-0.6880704,-0.38015085,0.15052143,0.96047914,-0.15004133,-0.118415944,0.24793316,-0.3762291,-0.10935784,0.2071853,-0.07000014,0.010298527,0.47473225,0.3094458,-0.6318835,0.5062376,0.043445505,0.042454958,-0.45417303,0.18813199,0.45565712,-0.41306293,0.61708844,0.21688029,0.14673892,-0.118324265,-0.6230388,-0.23254374,-0.026499419,-0.12588619,0.31163967,0.39521253,-0.70722616,0.43496007,0.09340374,-0.25754994,-0.9214356,0.46698782,-0.08844723,-0.2684301,-0.047152616,0.40004805,0.25557238,0.034489512,0.014528293,0.2977721,-0.39052922,0.26691872,0.20431453,-0.104022816,0.173061,-0.13615663,-0.22225468,-0.73050684,0.14354132,-0.3607254,-0.36386007,0.22114362,0.12420352,0.062026437,0.374297,0.34064117,0.34230286,-0.15224046,0.27736542,-0.12159591,-0.15716611,0.4160164,0.39610225,0.79623264,-0.5040568,0.56979984,0.041159026,-0.17619416,0.14097062,-0.015487596,0.33005974,-0.07417968,0.37347955,-0.032913096,-0.19269124,0.12077452,0.6478434,0.20871855,0.34450597,0.061529838,-0.20288755,0.45947793,0.0044459244,0.10479513,-0.08781587,-0.70264846,0.022465605,-0.3069172,0.09093172,0.49751097,0.04133165,0.3126297,-0.11939727,-0.09561278,0.1057601,0.1992334,-0.27927023,-1.0423452,0.16522019,0.018384036,0.9421718,0.71125,-0.024268266,0.094718106,0.49511245,-0.18947461,0.04935371,0.4762804,0.03930848,-0.5062474,0.6251379,-0.561929,0.587668,-0.101309314,-0.020111639,0.012482194,0.07447608,0.51738846,0.68952334,-0.37241885,-0.15929915,-0.072387114,-0.4635573,0.09710583,-0.3174753,0.2667639,-0.5417472,-0.35379183,0.7704781,0.60655934,0.29299456,-0.17776097,-0.03205248,0.088694826,-0.16507241,0.13559881,0.009636523,0.04305923,0.032064978,-0.634502,-0.074614756,0.42410645,-0.4327474,0.049256746,0.0738195,-0.16355082,0.10919252,-0.11923982,-0.18542807,0.05193464,-0.79803556,0.010145079,-0.23879424,-0.39993078,0.21204615,-0.1493743,0.33594185,0.145935,-0.022400549,-0.26542094,0.25670263,0.17310493,0.5838029,-0.07781922,0.057253845,-0.28047058,0.09221314,0.038524583,-0.119872324,0.06129879,0.074101724,0.2495765,-0.6846026,0.5384115,-0.17066447,-0.2167746,-0.118329994,-0.22452694,-0.019323103,0.71400875,-0.18224144,-0.012866766,-0.3449927,-0.23045397,-0.26962727,-0.22042543,-0.028428402,0.14168221,0.085459545,-0.20743439,-0.12291492,-0.12331792,0.05673921,0.16300859,-0.037746347,0.36495337,0.23149487,-0.0025970845,-0.42577922,-0.19495402,0.15149365,0.42864752,-0.0061815013,-0.16387232,-0.26918587,-0.37042558,-0.3921504,0.40137476,-0.036051873,0.3696543,0.055459674,-0.19138663,0.7002998,0.16714838,1.1997378,0.02974411,-0.40304992,0.042486884,0.59570086,-0.17751104,-0.119070634,-0.2623618,0.9313479,0.46373132,-0.014706268,-0.12746271,-0.37973145,0.05402614,0.1879174,-0.24734871,-0.068456635,-0.017934404,-0.4301472,-0.0887376,0.08432312,0.22596033,0.08538026,-0.2651309,-0.050820485,0.27687886,0.12050017,0.4447279,-0.39499715,-0.33296674,0.35371727,0.15818323,-0.013300249,0.2101833,-0.37979856,0.3162257,-0.7043584,0.22326161,-0.19174653,0.14818023,-0.27515915,-0.15709202,0.4028428,0.1038354,0.49601313,-0.3718535,-0.35318455,-0.3116441,0.38577932,0.17306294,0.15753135,0.5212346,-0.19862773,0.014377682,-0.020623028,0.61441934,1.1029611,-0.102587745,-0.06822359,0.19548963,-0.40779817,-0.7499328,0.34073538,-0.38163647,0.07985409,-0.10919325,-0.24500205,-0.66305923,0.15490964,0.19352429,-0.043655936,0.18211061,-0.60238296,-0.34430602,0.038600214,-0.34150356,-0.23281462,-0.20218055,-0.071221195,0.7167617,-0.0994114,-0.39705357,-0.047701064,0.18569033,-0.08644143,-0.47999606,0.10559873,-0.32540953,0.28896528,-0.016755732,-0.30486575,-0.25205696,0.20342074,-0.4818344,-0.05141095,0.16637689,-0.29966673,-0.10747772,-0.37307817,0.007202066,0.90024275,-0.20394543,0.29405773,-0.37483466,-0.5652489,-0.75230896,-0.5156615,0.3940519,-0.03194727,-0.03805518,-0.5588702,-0.031391144,-0.33490303,0.018207647,-0.07226361,-0.46251327,0.4443305,0.12811746,0.34125122,-0.24881011,-0.62441766,0.10702447,0.09826912,-0.0813039,-0.48134944,0.30128404,-0.02792581,0.82594234,0.077003844,0.028095208,0.11635128,-0.50023204,0.1542864,-0.14826457,-0.20212676,-0.50921273,0.15079048,897 -767,0.52933306,-0.1416482,-0.53106964,-0.091046385,-0.13519487,0.013822055,-0.049563143,0.66676384,0.24945973,-0.5318075,-0.09349027,-0.29402196,0.1867711,0.53133196,-0.0816975,-0.656356,-0.042125337,0.20783871,-0.43007058,0.6371963,-0.3845668,0.3316952,0.035108328,0.41088942,0.25886866,0.34677616,0.03479685,-0.12992407,-0.32713282,0.101987325,-0.124865174,0.24769786,-0.65699476,0.03256735,-0.011283178,-0.36081696,-0.07081788,-0.37251604,-0.47168154,-0.62394226,0.34361818,-0.7885994,0.57103306,-0.038456276,-0.14237235,0.25359666,0.035791747,0.3333182,-0.3118815,-0.011921534,0.037005875,-0.005196617,-0.0049652066,-0.29231045,-0.407637,-0.6571658,-0.6009939,-0.027305167,-0.37067434,-0.22469807,-0.37117746,0.06534473,-0.3441496,-0.12281246,-0.05167071,0.39471644,-0.38565907,0.2591293,0.18951271,-0.028085778,0.31796265,-0.43721518,-0.28404433,-0.19219758,0.20394462,-0.27031514,-0.14024353,0.33005828,0.415848,0.36237377,-0.12221313,-0.0437114,-0.32523096,0.072298564,0.10501984,0.47071588,-0.31528118,-0.67067516,0.008676311,0.037227135,0.13145383,0.26701605,0.3467707,-0.2745766,-0.09135124,0.06578268,-0.32653058,0.46457973,0.4197709,-0.34447187,-0.4766709,0.39679688,0.3724388,0.11563527,-0.23487093,-0.041130725,-0.038808957,-0.48333457,-0.11024182,0.21199414,-0.21555567,0.57030004,-0.048235793,0.11673581,0.6829072,-0.26463622,-0.0070820334,0.020132972,0.04874653,-0.01927639,-0.27424273,-0.19427289,0.14081591,-0.3695877,0.09537632,-0.18075055,0.7837261,0.30150884,-0.81765735,0.42685163,-0.56786793,0.14351556,-0.10170877,0.39992332,0.6940629,0.40626925,0.16040061,0.6151914,-0.4982077,0.09550074,-0.043146227,-0.45311612,0.16077791,-0.16739868,-0.12897588,-0.56226736,-0.051672652,0.03529165,-0.25579002,0.1897309,0.44824404,-0.6152469,-0.20537789,0.12482806,1.0085437,-0.34651348,-0.23398592,0.74040693,0.9141957,0.73239505,0.033663385,1.3027552,0.30536312,-0.26350817,0.45545945,-0.5104979,-0.7556063,0.26351258,0.260686,-0.7091262,0.4144282,0.12755929,-0.1055632,0.121606275,-0.102812916,-0.0007316883,-0.0849356,0.1285648,0.00779615,-0.24948655,-0.35591257,-0.34556538,-0.25582406,-0.15278961,0.1790861,0.24140635,-0.28292996,0.29324052,0.028320324,1.8267039,-0.009983237,0.10107463,-0.080897935,0.6080985,0.27611503,-0.13871136,-0.11830138,0.50048196,0.43891463,0.29580086,-0.5992062,0.19564845,-0.3117084,-0.6140198,-0.12213487,-0.4450242,0.10784142,-0.0646065,-0.4546122,-0.083756156,-0.15336385,-0.28413457,0.5170317,-2.6359982,-0.2548262,-0.12863399,0.4334394,-0.2892819,-0.35299352,-0.18191454,-0.4211885,0.33055857,0.20508875,0.5163518,-0.7502965,0.3020857,0.28138983,-0.4205845,-0.23379542,-0.6160257,-0.0369593,-0.006668138,0.3710887,-0.24395452,0.24034742,0.26482645,0.1883151,0.40956226,-0.13267806,0.07557161,0.26429555,0.45792294,0.16237989,0.42676976,-0.12651986,0.6626581,-0.21612193,-0.23493136,0.14085633,-0.3472262,0.16511801,0.14477614,0.12939838,0.29128462,-0.4534387,-0.9759511,-0.48404026,-0.18594867,1.0223291,-0.33208498,-0.36440402,0.2923095,-0.25869334,-0.14725758,-0.14329942,0.53150445,0.005891392,-0.024027197,-0.7625106,0.08586796,-0.03506107,0.14682844,0.0004317004,0.07816002,-0.26118028,0.45030624,0.009824538,0.5162426,0.16072758,0.20090191,-0.40421754,-0.54582953,0.1338285,1.0275868,0.069342904,0.12622732,-0.073907696,-0.34826565,-0.38939416,-0.026300857,0.14170863,0.52895105,0.668787,-0.04709872,0.09372151,0.32080847,0.025703214,0.20495926,-0.10640126,-0.35792395,-0.13302289,-0.12964892,0.44795233,0.55318594,-0.40828106,0.78193134,-0.2295991,0.2629458,-0.12200082,-0.48419872,0.6487986,1.143904,-0.2680206,-0.19679686,0.5694352,0.3431989,-0.52909744,0.43287876,-0.4570681,-0.0996005,0.63923085,-0.15767524,-0.22111201,0.3640417,-0.1941043,-0.078828536,-0.9266007,0.3635529,-0.29464686,-0.47096184,-0.22391686,0.07096027,-3.8960302,0.1498321,-0.29485786,-0.31646186,-0.14961056,-0.056418963,0.1786937,-0.62940055,-0.49787605,0.21452448,0.16838983,0.70292366,-0.030693272,0.14254496,-0.2985398,-0.24579495,-0.2390797,0.11372425,0.16142686,0.37715212,-0.029820463,-0.475246,-0.16709223,-0.07201558,-0.47921765,0.16802791,-0.69285274,-0.42856294,-0.13077448,-0.7593756,-0.2723462,0.7779985,-0.36861122,-0.010657044,-0.23303369,-0.013375715,-0.18268088,0.2392656,0.009946619,0.128176,0.0879519,-0.031306837,0.12107145,-0.24855271,0.1838993,0.08333748,0.43897894,0.17441337,-0.16391708,0.08251421,0.57168865,0.6702388,-0.0028863412,0.7789014,0.6073829,-0.12189192,0.37133533,-0.3395471,0.022082053,-0.54945576,-0.4835976,-0.24294113,-0.29507694,-0.59768057,-0.18965171,-0.28632113,-0.72205997,0.58663464,-0.14615804,0.3580918,-0.06619202,0.30286005,0.5282908,-0.22073999,0.07485521,-0.14185116,-0.26259953,-0.64494324,-0.19094199,-0.54579204,-0.39722353,0.39511025,0.78435606,-0.19820179,0.03293274,-0.25935704,-0.28973705,-0.038169548,0.19197804,0.028110322,0.24222206,0.39083067,-0.28286383,-0.6643223,0.4619415,-0.23630343,-0.1851218,-0.6107451,0.28323135,0.5817655,-0.6317348,0.76314694,0.18237187,-0.069714636,-0.1693317,-0.36624634,-0.32050043,0.12631838,-0.11448013,0.23445328,0.09888576,-0.93705434,0.30622506,0.41975874,-0.38083073,-0.53577125,0.7648411,0.0048627947,-0.28081694,-0.105293974,0.27756622,0.16856946,0.05228152,-0.34828627,0.2624976,-0.5240016,0.23848622,0.280079,-0.10003304,0.20830916,-0.03727205,0.016513119,-0.7960742,0.11798501,-0.4501676,-0.20487414,0.34456795,0.20323507,0.15194973,0.08294109,0.061493047,0.27836525,-0.33599937,0.087010585,0.0428245,-0.2094342,0.40566108,0.3736624,0.43965337,-0.4736431,0.47413686,-0.026444813,-0.3068179,0.2756922,0.24541026,0.5326336,0.28818116,0.2737268,0.27639848,-0.3754881,0.31797716,0.69733745,0.20252196,0.49536562,0.13005875,-0.0904965,0.2932512,0.1605477,0.07833343,0.15339755,-0.367357,-0.0738357,-0.061373755,0.24169856,0.56070966,0.15575226,0.26169956,-0.14194092,-0.44011614,-0.03572618,0.23500364,0.13572666,-1.2261208,0.38473347,0.21023147,0.70700115,0.35939312,0.032347776,-0.13366447,0.5542258,-0.072302744,0.14098863,0.40524918,-0.06606483,-0.6088892,0.48799583,-0.6895231,0.40633774,0.0006258442,-0.04383209,0.1700715,0.11173526,0.3086719,1.0538176,-0.11464803,0.030253913,0.09571551,-0.26565057,0.106784195,-0.42852995,0.11378842,-0.57249016,-0.27767578,0.59822965,0.39871693,0.24068475,-0.23473631,0.04395277,0.1020868,-0.15190437,0.10174997,0.043543916,0.21548778,0.01536936,-0.70088035,-0.26355,0.61239237,-0.13987309,0.13882264,0.10950499,-0.1501722,0.3723162,-0.2983708,-0.09198051,0.06836519,-0.7408849,-0.061809078,-0.27935582,-0.38363,0.49366787,-0.17753047,0.38085926,0.15250562,0.020682981,-0.36847666,0.52079195,0.20088822,0.70276845,-0.14129485,-0.2739228,-0.4639772,0.1943282,0.24954136,-0.2140309,0.05080668,-0.21171682,-0.18195912,-0.57283974,0.403918,0.19320315,-0.18491855,-0.08187572,-0.096114404,0.1442312,0.524983,-0.06796372,-0.0797006,-0.13929422,-0.15011314,-0.24410091,-0.19329461,-0.026434751,0.27647105,0.26748732,-0.20203355,-0.050822716,-0.013987541,0.09710041,0.30494773,-0.091165766,0.46823502,0.3412894,0.39700383,0.07997312,-0.25258183,0.40098888,0.411384,0.112718455,-0.12733212,-0.26433548,-0.3148726,-0.37799314,-0.13224968,-0.1351977,0.4420734,0.08090015,-0.33238217,0.7136665,0.04915033,1.1784856,-0.02444624,-0.37541956,0.010735732,0.34626624,0.010935879,-0.07665756,-0.31352285,0.99246174,0.64468354,0.13045299,-0.16778898,-0.24150452,-0.2464576,0.17747028,-0.32683218,-0.33184546,0.09739256,-0.55609876,-0.27218392,0.23529068,0.14172693,0.30863872,-0.028286012,0.31503537,0.3116255,0.030525547,0.18336064,-0.4913936,-0.045246575,0.26392344,0.4901516,0.0659703,0.20857008,-0.44872564,0.39746433,-0.47819936,0.13953243,-0.18307152,0.21488787,-0.1373623,-0.4839548,0.2394478,0.13384336,0.43140417,-0.3127248,-0.36166483,-0.31977382,0.5587156,0.1049947,0.028758626,0.6148423,-0.2666024,0.044270165,0.054089885,0.5167029,1.07854,-0.15353003,-0.16868089,0.43793187,-0.5690318,-0.8383777,0.39129046,-0.10870823,0.35018173,-0.13638419,-0.086285844,-0.56029004,0.31278288,0.11505081,-0.07033083,-0.00037160746,-0.44386667,-0.3530666,0.21507232,-0.34134722,-0.31607148,-0.3004515,0.28792495,0.68398416,-0.3917518,-0.35277116,0.17752916,0.17549832,-0.112731986,-0.44625917,-0.2442492,-0.39678398,0.30114788,-0.0006847198,-0.38063306,-0.1552468,-0.045093272,-0.30010983,0.2671684,0.09690123,-0.38319686,0.22287062,-0.18915822,-0.31244186,0.90952015,-0.22635767,0.040596724,-0.57509464,-0.44045755,-0.7710918,-0.5700233,0.5084023,0.059992455,-0.07382962,-0.6150194,0.05629986,0.009239467,-0.20720442,-0.058966205,-0.3810209,0.36520463,0.04220206,0.24764313,-0.11965583,-0.9148398,0.16642621,0.23391843,-0.15270866,-0.919814,0.5478264,-0.2331174,1.0121592,0.018034546,0.18301322,0.56445,-0.40265766,-0.3647575,-0.2471514,-0.14981729,-0.6080591,0.15381703,903 -768,0.3814673,0.062906615,-0.51841414,-0.14141974,-0.20062743,-0.02283134,-0.05713276,0.5006672,0.327463,-0.4215233,-0.2985853,-0.10822652,-0.031863328,0.21698533,-0.084245495,-0.71385455,0.058425207,0.20570771,-0.4856322,0.5104383,-0.42644662,0.45188782,-0.049141094,0.34749812,-0.019251855,0.32044685,-0.07586132,-0.2204442,-0.13397726,-0.15118122,-0.2340562,0.3658495,-0.42780846,0.24478434,-0.095954105,-0.28121144,0.02776913,-0.37035692,-0.46531126,-0.75065064,0.34259313,-0.72967273,0.5077722,0.035100803,-0.23913607,0.024426881,0.051228836,0.3883416,-0.12755398,0.022221029,0.060677543,-0.065334804,-0.14640734,-0.2602728,-0.40088606,-0.26881886,-0.4578207,-0.04789236,-0.27316058,-0.09658722,-0.27415365,0.21308938,-0.31424236,0.009775137,-0.15776531,0.5175861,-0.42878163,0.3341697,0.22278121,-0.10639409,0.15736455,-0.5753877,0.010034836,-0.12714781,0.33949506,-0.28402308,-0.27688286,0.3465679,0.271972,0.46003377,0.034476105,-0.21540605,-0.29991052,-0.21184275,0.022367248,0.53114235,-0.2875324,-0.56935537,-0.038794316,0.13091747,0.08315475,0.39723247,-0.06916392,-0.22090465,-0.1332518,-0.03653725,-0.21251263,0.3483836,0.5875179,-0.06443757,-0.38339466,0.38060838,0.44425446,-0.042261302,-0.04334604,0.008138565,-0.034102768,-0.49673468,-0.22162507,0.02677044,-0.23691794,0.41323382,-0.16404067,0.20801279,0.6271719,-0.15110329,-0.16794108,0.1546873,0.041042108,0.12622264,-0.3471362,-0.1628388,0.12323059,-0.49299586,0.2633311,-0.07669612,0.8748921,0.20249547,-0.7382596,0.29336563,-0.55327076,0.07750359,-0.08966594,0.4662657,0.5385692,0.42872557,0.33704,0.691434,-0.39464384,0.1533837,-0.119507775,-0.47338766,-0.14434715,0.084852114,-0.021119293,-0.3822149,0.12429115,0.014008494,-0.22254053,0.22084998,0.27271992,-0.655815,0.008197426,0.009879296,0.90399414,-0.36691713,-0.23918924,0.7790171,0.77232367,0.8159972,-0.02645697,1.2586515,0.22789611,-0.29708257,0.36118263,-0.5217499,-0.759367,0.36444885,0.22468391,-0.37090948,0.09766698,0.07137884,-0.035073,0.1748027,-0.41207308,-0.14324169,-0.2897911,0.3013992,0.13948172,-0.06189337,-0.40842226,-0.2809049,-0.21977735,-0.07189925,0.295634,0.23234934,-0.22846593,0.32904482,-0.018751265,1.4980052,0.05518401,0.059659775,0.12856828,0.4144785,0.25187638,-0.014829709,-0.2235685,0.5037133,0.21875358,-0.03721195,-0.63785934,0.054317575,-0.31336117,-0.28067273,-0.07087641,-0.2733587,-0.024203297,0.027734088,-0.28479493,-0.31135383,-0.2938796,-0.2677673,0.60933787,-2.5900805,-0.16514198,0.034386136,0.48904622,-0.34646577,-0.4069867,-0.16585915,-0.6331471,0.37805086,0.16444565,0.55995214,-0.63753563,0.3721429,0.44251028,-0.54422146,-0.17840211,-0.5714522,-0.004283474,0.10579167,0.14143999,-0.11978546,0.014910304,-0.14527209,-0.25194716,0.4575538,-0.034852352,0.107498884,0.53949845,0.4293211,0.19656219,0.3345985,-0.082529016,0.6563435,-0.28519937,-0.1517621,0.21317345,-0.42509305,0.31288412,-0.18462881,-0.011751785,0.52969897,-0.5768317,-0.7656799,-0.691879,-0.3393697,1.00859,-0.11621543,-0.20893504,0.30350274,-0.3990317,-0.29044485,-0.11107417,0.51955575,-0.094578184,-0.11066547,-0.6736755,-0.0641257,-0.11936991,0.31086123,0.013585732,0.005356408,-0.2656859,0.5750051,-0.24930246,0.34970134,0.112846605,0.16773437,-0.42456877,-0.5747494,-0.03890942,0.8982585,0.3441472,0.24942812,-0.09251615,-0.3096064,-0.36530113,-0.2504881,0.036689974,0.7561526,0.80234826,-0.09597126,-0.049326167,0.3645562,0.05322593,0.06616478,-0.24689649,-0.25224596,-0.19567622,0.03740186,0.47478196,0.34892786,-0.2938852,0.5619406,0.01211588,0.4229357,-0.18514243,-0.3380341,0.3337789,1.0934854,-0.18258436,-0.35066617,0.6299607,0.20569786,-0.27715585,0.41479158,-0.5101647,-0.28496653,0.43393177,-0.2239557,-0.5499004,0.10119363,-0.15874705,0.09640638,-0.7692139,0.3179379,-0.2888351,-0.8111342,-0.42964175,0.06519563,-2.7111914,0.11828233,-0.25596973,-0.13341606,-0.04352277,-0.10282559,-0.19876997,-0.31299752,-0.60327286,0.29189152,0.12340326,0.5660581,-0.21172954,0.22752358,-0.04933874,-0.09223577,-0.421457,0.1741771,0.27648103,0.29378474,-0.04969029,-0.44302055,-0.028415803,0.067998976,-0.48956606,0.31220216,-0.63831073,-0.4251529,-0.12653798,-0.7905748,-0.20354953,0.72051406,-0.46320283,0.026892098,-0.26610672,0.010668452,-0.15523073,0.28325644,-0.07173823,0.19884263,0.07058024,-0.19805798,-0.021490455,-0.22858873,0.463642,-0.0017874837,0.43217924,0.22586188,0.0040343357,0.118956104,0.44332978,0.64149606,0.080515474,0.76825625,0.46590665,-0.094825774,0.32162946,-0.26561007,-0.31363103,-0.38533685,-0.26659173,0.039302807,-0.4606511,-0.32470828,-0.12451018,-0.5212577,-0.7890826,0.35884187,0.10320819,0.018659042,0.07351588,0.33822423,0.5232947,-0.04874015,0.10712286,-0.074251145,-0.07775961,-0.56119007,-0.24352802,-0.48973158,-0.36424506,0.33661225,0.9486768,-0.29004204,0.03888254,-0.14880411,-0.122406214,-0.14688136,0.19705266,-0.053901415,0.24676195,0.48270628,-0.32187927,-0.45912963,0.36382622,-0.0533048,-0.25715032,-0.5594217,0.25037703,0.6447698,-0.781412,0.70020765,0.23810603,-0.025049258,-0.023960825,-0.49015805,-0.36391765,-0.019379687,-0.24805737,0.28361413,0.24148777,-0.644379,0.33508906,0.36878803,-0.16321722,-0.83352405,0.4477803,-0.027129184,-0.4071342,0.0027696078,0.42141885,0.09024009,-0.05842062,-0.25557625,0.104018465,-0.18856548,0.20385228,0.16879252,-0.09680299,0.20139764,-0.35717678,-0.22184673,-0.9198283,0.05070194,-0.56787735,-0.20934187,0.30629966,0.14286293,0.056110676,0.13730717,0.188788,0.43999326,-0.33173588,0.063665375,-0.14613412,-0.30173016,0.29247972,0.34948972,0.4317902,-0.44236463,0.4299034,0.0071934415,-0.09264032,0.036097363,0.1851189,0.51607424,-0.13850345,0.44397575,0.19668,-0.28770158,0.2732774,0.8373651,0.20716517,0.3338761,0.048962116,0.10122771,0.1891165,0.041963197,0.10505768,0.17053328,-0.51017666,-0.1246626,-0.22014776,0.11470766,0.522663,0.32396466,0.22161815,-0.002649807,-0.4026779,-0.11831559,0.25161836,0.031216292,-0.9583773,0.42929128,0.1268314,0.84134746,0.39885888,0.124591365,-0.009446818,0.52147037,0.03941953,0.27978098,0.27462712,-0.18278407,-0.43243223,0.39104718,-0.65305096,0.55093265,0.013819016,-0.0052907295,0.07628837,-0.06772722,0.33092433,1.0643324,-0.13977972,0.017235288,-0.012892737,-0.1639437,0.20463601,-0.4913266,0.00013392247,-0.6700452,-0.308613,0.59324163,0.39066437,0.25410488,-0.05371546,-0.025842201,0.17866684,0.010390452,0.057986658,0.068346694,0.1287579,0.014567022,-0.4980157,-0.25727496,0.6271085,-0.0053845462,0.13510606,0.0812249,0.12177165,0.40649244,-0.1685056,-0.039529048,-0.11928547,-0.65032345,-0.01371314,-0.20755188,-0.29645243,0.19937855,-0.047207475,0.2319029,0.22998068,0.110005125,-0.47268915,0.38831836,0.2620546,0.7529831,-0.0406265,-0.17749152,-0.3687234,0.25470325,0.20143965,-0.24928233,0.17891055,-0.236722,-0.16141978,-0.7040848,0.50119126,-0.026633663,-0.37244767,0.07144504,-0.15930066,-0.059044525,0.4126221,-0.11701722,-0.11020335,0.087766096,-0.24090584,-0.30617076,-0.06353971,-0.16990052,0.180526,0.4469879,-0.11660138,-0.08936819,-0.16333672,-0.20604159,0.46930045,-0.0667374,0.3357945,0.19647385,0.23971604,-0.19570777,-0.12974606,0.1766393,0.61546034,-0.06894694,0.15444763,-0.058964465,-0.28676796,-0.25148982,0.13191582,-0.032198425,0.44154456,0.08016389,-0.36132473,0.6103697,0.08479501,1.0933862,0.045635503,-0.19994357,0.012319551,0.41393483,0.085838884,-0.051219422,-0.32414654,1.099649,0.4773008,-0.043047883,-0.09198561,-0.3523501,0.048685256,0.114555754,-0.07736582,-0.15028879,0.12627168,-0.46845546,-0.36060983,0.2592755,0.19421746,0.15786396,-0.014941573,0.043508057,0.22820646,-0.03871941,0.19347483,-0.47520095,-0.04188371,0.24980766,0.20506321,0.21371382,0.2270411,-0.47737783,0.3879597,-0.45344603,0.12419235,-0.1405654,0.2326157,-0.26025242,-0.32041502,0.2532453,-0.03138622,0.34225732,-0.27662557,-0.3624905,-0.3536,0.516092,0.16212688,0.14090763,0.5554694,-0.14967799,-0.012462282,0.050781514,0.6169723,0.87955374,-0.07316243,0.015830802,0.3569587,-0.37682182,-0.5418834,0.3794271,-0.18291084,-0.13144487,0.046811506,-0.14465627,-0.3955221,0.31139782,0.13687025,0.18525933,0.17313704,-0.5504579,-0.08853948,0.26177335,-0.3402244,-0.19035424,-0.36630514,0.4026903,0.8351524,-0.18603882,-0.188526,0.2375109,0.0013940334,-0.33725706,-0.5885835,-0.0865798,-0.30532214,0.25803515,0.037324097,-0.20906195,-0.2885005,0.041430257,-0.36323068,0.13185307,0.10834748,-0.27690837,0.1304496,-0.23115815,-0.24448362,0.7821875,-0.21313286,0.06781529,-0.5016743,-0.30663437,-0.7665118,-0.2867104,0.394542,0.20852995,-0.015271342,-0.7183911,-0.20212331,0.017147716,-0.27459285,-0.03083593,-0.3323831,0.4239136,0.13239841,0.3088494,-0.17460635,-1.0614101,0.2007213,0.2011453,-0.2718046,-0.6472664,0.37753862,-0.053395733,0.89131206,0.07136813,0.04597638,0.44439596,-0.37745878,-0.08294874,-0.22603191,-0.102572985,-0.75197375,0.032000616,905 -769,0.64875436,0.020265441,-0.28925794,-0.2736715,-0.24582277,0.12999552,-0.31390685,0.38258302,0.012548795,-0.6389298,-0.2467684,-0.17362037,-0.078177914,0.2434144,-0.2011494,-0.9894396,0.24928845,0.241258,-0.28781265,0.4064345,-0.652942,0.48392507,-0.16324168,0.362031,0.080419466,0.08666763,0.27188066,-0.11734977,-0.11475118,-0.25103053,0.07276354,-0.029717756,-0.50627816,0.12754749,0.15364623,-0.38937744,0.21661319,-0.25469717,-0.19284955,-0.7598,0.15569445,-0.7175257,0.6015405,0.107802354,-0.30493498,0.047368314,0.18073137,0.1272687,-0.16133401,0.4056163,0.2058433,-0.073453374,-0.05605261,-0.31782252,-0.13526572,-0.77123886,-0.4884874,0.056646697,-0.25060707,-0.17784339,-0.28068718,0.2644202,-0.22240904,0.041817132,-0.07744014,0.23150858,-0.44827086,-0.17663068,0.06841439,-0.21150248,0.24248838,-0.7589335,-0.32645556,-0.28576887,0.19526687,-0.03372904,-0.15944465,0.1308158,0.42401823,0.59405494,-0.008053752,-0.054514185,-0.090961106,-0.24121363,0.30453035,0.596784,-0.4188407,-0.5795464,-0.2074597,-0.29360807,0.22872931,0.16155003,0.18611544,-0.45260298,0.100293145,-0.014703012,-0.513645,0.23499472,0.60187316,-0.6745501,0.14079127,0.14810498,0.3353391,0.120193966,-0.052869048,0.23861977,-0.028898653,-0.567405,-0.27609587,0.12715451,-0.11377572,0.6045028,-0.19598016,0.040756684,0.41681355,-0.30619627,0.25777242,-0.051334407,-0.0407955,0.16657315,-0.30748823,-0.40155938,0.25739366,-0.36612046,0.0699742,-0.46184114,1.0437105,0.18253864,-0.5182696,0.39191136,-0.50995547,0.12883195,-0.12568791,0.49394864,0.50838816,0.3926495,0.108451515,0.6801067,-0.4095095,-0.11713655,-0.004370146,-0.04606426,-0.040296797,0.057277855,-0.16305314,-0.25157496,0.32998616,0.03614193,0.06558792,0.028519949,0.7146213,-0.3941369,0.069969915,0.2948259,0.86689633,-0.4402961,0.09333205,0.59980613,1.1263257,0.87755054,0.14115237,1.2556707,0.48295277,-0.13529834,-0.016515883,-0.017449535,-0.56515884,0.19423954,0.3991893,0.24743487,-0.016382337,0.20784079,-0.11580992,0.5677176,-0.53544366,0.08332124,-0.28667867,0.556588,0.07283567,-0.1876506,-0.32789218,-0.044429474,0.12836716,-0.15989031,-0.004926269,0.30393416,-0.3904198,0.1381788,0.020138323,1.1292012,-0.076020114,0.16272007,0.04651207,0.4698636,0.26961592,-0.0033727884,0.21526836,0.29534572,0.2864419,-0.13110612,-0.56652635,0.082876086,-0.2008691,-0.66755736,-0.2589852,-0.113365225,-0.0628311,0.20921366,-0.3944837,-0.19434272,0.14745435,-0.16489209,0.43286258,-2.0764062,-0.21922453,-0.18020783,0.36841652,-0.17370412,-0.43791363,-0.011508112,-0.38647667,0.6735396,0.4143345,0.29685482,-0.606869,0.5114929,0.52051425,-0.2571194,-0.17482154,-0.7514312,-0.09011333,-0.010923742,0.3163492,-0.03159132,-0.22931641,-0.20725435,0.22656973,0.54032797,-0.15334703,0.21212648,0.2232618,0.24248382,0.17076054,0.2831245,0.023697706,0.596721,-0.14520049,-0.19973148,0.2676228,-0.4405518,0.0795775,0.018138152,0.16077974,0.21569446,-0.60279995,-0.6935284,-0.9705724,-0.5951085,1.1414701,-0.10721874,-0.49264562,0.29609343,-0.03716207,-0.29012802,-0.042945173,0.41914096,-0.21163265,-0.07589042,-0.7419439,0.08469233,-0.08711782,0.3833962,0.07984397,0.05154862,-0.385634,0.8202535,-0.25033844,0.33514807,0.4710248,0.1977924,-0.28297612,-0.51399,-0.17872326,1.1889087,0.44506022,0.2332142,-0.16397533,-0.109832495,-0.32499593,0.081506014,-0.009710296,0.588161,0.7221542,-0.019445103,-0.0054811183,0.16117099,-0.058719154,0.036835466,-0.11021519,-0.53378737,-0.077892184,0.1074115,0.6534356,0.34067,-0.1902101,0.35151476,-0.23543121,0.36169797,-0.45547214,-0.22722226,0.5015585,0.9391613,-0.15369593,-0.12110991,0.762,0.5039744,-0.36315697,0.45341477,-0.7424136,-0.3440401,0.4272916,-0.1647355,-0.3160846,0.1622598,-0.5183632,0.13342501,-0.87185985,0.5024491,-0.4617604,-0.49696118,-0.6647732,-0.25114867,-3.8428004,0.30723295,-0.07771872,-0.11718849,0.023163516,-0.21318826,0.5653974,-0.40875947,-0.47413668,0.20163567,0.040413138,0.4719784,0.00804246,0.1959394,-0.35742947,-0.26684955,-0.31935266,0.1894481,0.035375245,0.2492592,0.102017,-0.4079947,0.23252527,-0.15246965,-0.24521941,0.092077985,-0.61994755,-0.5367361,-0.15016836,-0.41741973,-0.28256828,0.639993,-0.6967325,0.16121219,-0.40371993,0.022842344,-0.42954063,0.35942462,0.08422398,0.22999851,-0.18683611,-0.14280814,-0.28051788,-0.43521398,0.26567218,0.30932763,0.08884551,0.4161238,-0.12404156,-0.1011157,0.4131524,0.44757998,0.19283986,0.8516234,0.41799226,-0.09565498,0.40714204,-0.35163754,-0.23811802,-0.340857,-0.4520648,-0.19490427,-0.39820564,-0.48569605,-0.1482932,-0.28608662,-0.78273046,0.38907558,-0.119445324,-0.02228989,0.22464758,0.25778422,0.09544758,0.00020925816,-0.032147042,-0.0127468845,-0.01128168,-0.46708542,-0.32727462,-0.65352064,-0.35426432,0.23941776,0.9209181,-0.06670632,-0.012955813,0.19469163,-0.13970013,0.10431829,0.05390667,0.24187732,0.016847987,0.27490354,0.047311697,-0.8149346,0.3099454,-0.043588974,-0.252861,-0.6891309,0.21977851,0.8597812,-0.81442,0.5207586,0.38806745,0.19136246,0.09848487,-0.6032969,-0.36193207,0.13162822,-0.46945733,0.3970717,0.16452214,-0.8819863,0.46022475,0.3820998,0.04395141,-0.7861065,0.52517444,-0.056962784,-0.5107547,0.06835452,0.43072632,0.20023766,0.016526511,-0.24019442,0.3232991,-0.53135306,0.25516975,0.3323654,0.005502647,0.46581003,-0.31165978,-0.22540879,-0.80741763,-0.113411196,-0.6708677,-0.40782115,0.074811384,0.16281031,-0.034102052,0.40085417,0.19528484,0.48394746,-0.3525976,0.23912199,-0.11439563,-0.20151544,0.37521428,0.4273378,0.36959344,-0.26279712,0.6345471,-0.059179123,0.037928298,-0.26930445,0.1758909,0.35697952,0.032676477,0.38295114,-0.11094833,-0.042120613,0.30133474,0.7292923,0.19901496,0.5280952,0.20936564,-0.2074879,0.4248954,0.17380275,0.05131513,0.2213383,-0.45201316,-0.20307149,0.17365725,0.14129163,0.49692738,0.15421651,0.36008006,-0.2123978,-0.30064148,0.030096225,0.22423628,-0.04144354,-0.98485035,0.3066962,-0.028568331,0.66970783,0.8431893,-0.10125283,-0.028917097,0.48291963,-0.25302646,-0.09696604,0.16421655,-0.011989046,-0.36456558,0.3349076,-0.4624926,0.0837713,-0.38587424,0.117274776,-0.029338956,-0.0118460655,0.3792817,0.76933616,-0.006043065,0.14354931,0.12968706,-0.32343307,0.0656103,-0.28149793,-0.026815264,-0.5901937,-0.20707376,0.6524799,0.36145547,0.28279966,-0.29073778,0.013950891,0.09983897,-0.25338206,0.07542395,-0.00037033283,0.008318406,-0.18264112,-0.68478453,-0.43632352,0.6260194,-0.033191103,-0.07036435,0.22325942,-0.41037273,0.22546722,-0.11132686,0.11448535,0.13968505,-0.49641302,-0.005194508,-0.42882076,-0.36240867,0.249171,-0.09471769,0.18302038,0.22061592,0.12729003,-0.17391348,0.31754827,0.32168463,0.6107214,0.11973568,-0.24995266,-0.39478686,0.022486357,0.09220692,-0.22501312,-0.011031169,-0.3024902,0.06397386,-0.8200118,0.4759944,-0.09906112,-0.023668047,0.25018018,-0.12627338,-0.22165808,0.5183491,-0.26924798,-0.01904782,0.40385726,-0.15042713,-0.19898735,0.021058768,-0.22412711,0.21818858,-0.11551973,-0.020826403,-0.037145417,-0.2028798,-0.02227024,0.370647,0.11361347,0.19950086,0.6670016,0.09096129,-0.25447047,-0.17357925,-0.19056822,0.64299804,-0.14181556,0.09395434,0.0056221667,-0.8356333,-0.36101687,0.016426425,-0.26922095,0.15527678,0.08874615,-0.5209909,0.85657,0.21107146,1.212393,-0.04918212,-0.42754757,-0.14274469,0.615448,-0.14936016,0.13233724,-0.49099413,1.0725137,0.65546477,-0.2641671,-0.1286113,-0.24999817,-0.25719863,0.19981828,-0.21238524,-0.14213333,-0.026563952,-0.6795937,-0.3052383,0.08801662,0.33513314,-0.13823552,0.15623412,0.22140187,0.18046738,0.10742945,0.3423562,-0.59336096,0.10167311,0.3030954,0.33265263,-0.0044516004,0.11608637,-0.15974793,0.2585027,-0.7782565,-0.018580753,-0.4987777,0.009945126,-0.08677326,-0.30194905,0.19111712,0.23188779,0.18112113,-0.36855978,-0.1959103,0.010280586,0.6030474,0.035458382,0.23269749,0.54872316,-0.17823216,0.097115725,0.026282083,0.5376241,1.4433757,0.015502008,-0.12829106,0.3258774,-0.5129699,-0.7218271,0.23673582,-0.51587486,-0.021712514,-0.069665894,-0.5115693,-0.5546285,0.40793464,0.26723683,-0.1451858,0.03735608,-0.51770854,-0.24007908,0.3950402,-0.22853248,-0.3855987,-0.17364533,0.31254476,0.74424875,-0.50946605,-0.20560786,-0.14947885,0.45957857,-0.4691637,-0.78858054,-0.02790295,-0.46220785,0.5434219,0.41114756,-0.26603007,-0.10531605,-0.058205064,-0.39876464,-0.12142809,0.24022835,-0.46202967,0.19241406,-0.37898195,-0.037817605,0.75098187,0.061446276,0.06449394,-0.6244366,-0.64128184,-0.91731966,-0.45420885,0.6596838,0.3182873,0.00028245265,-0.51124567,-0.07563556,-0.13548979,-0.025742462,0.15588944,-0.25726277,0.58219254,0.21427168,0.682908,0.042150773,-0.74586225,-0.15757391,0.3058198,-0.30993706,-0.6611383,0.44859555,-0.20885475,1.1170766,0.042739954,-0.050921135,0.08915443,-0.5262651,0.35319504,-0.39160407,-0.32697004,-0.6855649,0.20797484,910 -770,0.23416077,-0.061994188,-0.6554382,-0.12728342,-0.3085221,0.21592313,-0.14307345,0.40491003,0.2570133,-0.28491342,-0.07390972,0.025698157,-0.0043242825,0.49690282,-0.13585685,-0.61502844,0.067196116,0.08697988,-0.3791801,0.35917658,-0.397645,0.3316971,-0.08781651,0.45632565,-0.007273197,0.26948056,0.037197348,0.02100974,-0.06015075,0.12766717,-0.12646806,0.6117268,-0.44014058,0.19178857,0.07188536,-0.30829242,0.019886484,-0.28501213,-0.44145057,-0.59412867,0.38976824,-0.79615176,0.5328122,0.055333808,-0.39458486,0.11724827,0.003273322,0.22805251,-0.3959595,0.048049226,0.21098804,-0.31745183,-0.09336933,-0.21213017,-0.3526669,-0.53703886,-0.57978666,-0.050927408,-0.5585546,-0.11914666,-0.30454746,0.23023854,-0.18819141,0.019595928,-0.22460607,0.17786294,-0.4568211,0.0553088,0.39029628,-0.28202194,0.06900745,-0.38943222,-0.10987818,-0.068087585,0.28204912,-0.045511365,-0.15786067,0.1534017,0.38854307,0.5571235,-0.0443422,-0.26877645,-0.44534147,-0.02987494,0.10124348,0.5076255,-0.11606283,-0.26086167,-0.213039,-0.032249514,0.1889191,0.20216878,-0.06392212,-0.3292996,-0.0082589835,0.016853146,-0.16481942,0.25700128,0.37375128,-0.43881485,-0.20327242,0.48183754,0.4840035,0.16946165,-0.1659643,0.13333711,0.06572035,-0.53277785,-0.21317975,0.05428441,-0.07832551,0.6323831,-0.019544354,0.19675389,0.6950757,0.07760833,-0.11427113,-0.16681267,-0.07456322,-0.039475977,-0.25135633,0.05317233,0.0632791,-0.3020744,0.1771589,-0.032731626,0.5716137,0.102455124,-0.6925612,0.39234585,-0.4631512,0.1096273,-0.11722152,0.5675412,0.7258918,0.39491814,0.14974712,0.91037714,-0.62356275,-0.05318696,-0.0743352,-0.42947575,0.11765324,-0.033569213,-0.009485809,-0.49522063,0.09209268,0.050384063,-0.0758088,0.1326522,0.295523,-0.31981122,0.010023222,0.073884405,0.6348801,-0.43136165,-0.1813897,0.61085737,1.0119764,0.85214204,0.026709804,1.266289,0.30350372,-0.00603508,0.037797105,-0.36347806,-0.57436985,0.132018,0.31649393,0.07418576,0.34171438,0.25090045,0.1389522,0.60846674,-0.07581043,0.061322965,-0.024815917,0.19786717,0.110739775,0.011013682,-0.4181137,-0.21092899,0.1272048,0.24428853,0.015253535,0.13548762,-0.14056522,0.34727895,0.15996996,1.5082917,0.00089673814,0.04721891,0.019087378,0.26769254,0.251432,-0.0643224,-0.18277934,0.27625805,0.34026605,-0.019225027,-0.42997605,0.105135985,-0.21526727,-0.40110344,-0.15633205,-0.22970806,-0.10554393,-0.1907174,-0.6094085,0.043304734,0.051826913,-0.2895115,0.60401255,-2.667966,-0.32324883,-0.20013149,0.32879475,-0.11508478,-0.3723027,-0.33087793,-0.34212697,0.26779526,0.38322374,0.32665217,-0.60132426,0.50922406,0.310533,-0.34561047,-0.11449497,-0.5934629,0.062613435,-0.10766531,0.32470343,0.15571219,-0.13328184,-0.14820778,0.28825933,0.68277466,-0.17765747,-0.10938756,0.21070692,0.50308764,-0.12432386,0.6188487,-0.087173775,0.6201769,-0.18669073,-0.21565653,0.40552637,-0.4180362,0.53016204,0.011552141,0.15936305,0.30465963,-0.29055592,-0.9037496,-0.58107984,-0.32208368,1.2349029,-0.30508846,-0.20717405,0.27776617,-0.38996178,-0.32135957,0.048882768,0.46056944,-0.029340914,0.025934,-0.75567627,-0.016663369,-0.21068665,0.07833391,-0.057930812,0.05681088,-0.26308843,0.72252023,-0.17863351,0.489246,0.5098028,0.13871789,0.085653946,-0.2949905,0.0076664113,0.71924007,0.40605348,0.15167704,-0.2501364,-0.28998896,-0.05784971,-0.03223646,0.12634234,0.57758987,0.47943237,0.035679743,0.07073595,0.26530245,-0.038603928,-0.17882262,-0.22862795,-0.24416715,0.09446711,0.16247836,0.5146334,0.9374541,-0.24485458,0.18688999,-0.16313706,0.11007186,-0.09209363,-0.54349446,0.34709483,0.62628937,-0.10254535,-0.24084865,0.61690557,0.46694726,-0.29967517,0.24786195,-0.5769889,-0.25237718,0.56373715,-0.15732005,-0.34436873,0.118897825,-0.373507,-0.13085721,-0.84228814,0.25209266,0.020144416,-0.5857797,-0.3871329,-0.16346046,-4.3036804,0.18255943,-0.19823432,-0.019740045,0.03139537,-0.072198875,0.35195228,-0.656839,-0.57226,0.12348815,0.087409936,0.39576927,-0.10550495,0.08140759,-0.37078002,-0.13590299,0.121154696,0.25108498,0.06496358,0.26408705,0.092390224,-0.46010223,-0.02217134,-0.40150994,-0.5150561,0.026270907,-0.638753,-0.36546496,-0.05449377,-0.4899264,-0.21078682,0.6853589,-0.5689971,-0.0671547,-0.30823892,0.1286264,-0.3329471,0.31754825,0.08310689,0.19903544,0.11215002,0.031090917,-0.14836748,-0.3489451,0.24159311,0.038412943,0.3055843,0.33440542,-0.09261762,0.17293984,0.68071485,0.62956583,-0.17742588,0.82097405,0.4350643,-0.0687018,0.20701891,-0.18721852,-0.22338563,-0.6665542,-0.53437936,-0.19476032,-0.4722614,-0.39882258,-0.12593627,-0.31250018,-0.79258156,0.44301572,0.065985866,0.0674222,-0.111911625,0.0355435,0.42897135,-0.40988106,0.024873588,-0.06782372,-0.2521032,-0.63137066,-0.49998617,-0.50024533,-0.6644963,0.17022575,1.1412978,-0.22104883,-0.010290593,-0.006796266,-0.34169355,-0.099888764,0.2370488,0.21946353,0.06582865,0.4264486,-0.16754714,-0.6481886,0.29852608,-0.29706222,-0.098511405,-0.606908,-0.08332797,0.63863385,-0.49728018,0.68715954,0.41378725,0.19329016,0.37029237,-0.6012388,-0.4978652,-0.039323248,-0.2046267,0.47974902,0.21829627,-0.702189,0.4230345,0.21349168,-0.21723725,-0.55172104,0.47118613,-0.18348886,-0.13984159,0.062432233,0.3276532,0.094675176,-0.07931498,0.0039004546,0.23033181,-0.3632118,0.31342417,0.34941864,-0.07039731,0.22455853,0.011891956,0.04020581,-0.6959296,-0.2848596,-0.32021955,-0.21968955,0.059991397,-0.016756188,0.06164916,-0.22007516,0.052822452,0.39700133,-0.4412786,0.09778741,-0.066750534,-0.2985172,0.220677,0.5040427,0.3496946,-0.3972022,0.50382245,0.08983498,0.1629584,-0.0553224,0.06512805,0.5088139,0.040757455,0.47072765,-0.20328686,-0.023709297,0.19590065,0.7528331,0.13151175,0.34605753,0.052655533,-0.2580565,0.34299976,0.18221428,0.10404645,-0.15216161,-0.27073333,0.19989647,-0.2512603,0.26217258,0.4807739,0.23877338,0.40998003,-0.14574978,-0.2268348,0.23038483,0.17833886,0.068407565,-1.0196689,0.31504232,0.1873158,0.6922217,0.3476944,0.1472722,0.101921946,0.48983324,-0.32169276,0.00059135375,0.49664184,-0.10536324,-0.51510173,0.43040422,-0.65574116,0.41456133,-0.18049134,-0.056296356,0.3233444,0.27779165,0.33626688,0.75769264,-0.058435135,0.00064635504,0.025428824,-0.2637782,-0.06258564,-0.30479577,0.05541298,-0.60635304,-0.3483463,0.5757536,0.77826256,0.40908575,-0.31238258,-0.106623724,0.096618846,-0.053278677,0.05257904,-0.24329111,-0.033140328,-0.07157768,-0.7076928,-0.123810135,0.5275551,0.11472754,0.022375057,-0.07747905,-0.38895658,0.37922928,-0.2416688,-0.12837254,-0.068400875,-0.54938984,-0.09431909,-0.4104461,-0.6510181,0.4127621,-0.38677725,0.32486093,0.19934297,-0.051687654,-0.21094571,0.39628527,-0.0635352,0.99682677,0.10163069,-0.09461068,-0.38753197,0.0627276,0.34735993,-0.1972507,-0.07809133,-0.42361477,0.17092143,-0.50944686,0.30536577,-0.19326662,-0.16208257,0.09259084,-0.24047214,0.17668507,0.5273982,-0.2016322,-0.287472,0.09856244,-0.0146792,-0.27558568,-0.12876667,-0.42779046,0.2823306,-0.13377512,-0.044913907,0.07433252,-0.15623449,-0.10701743,0.19756967,0.17965858,0.19505641,0.3065468,-0.07987707,-0.1782498,0.00018487527,0.050394434,0.50151324,0.14603385,-0.23952958,-0.31698152,-0.41828534,-0.3422858,0.15323125,-0.12710457,0.23186272,0.09229764,-0.27422264,0.7503681,0.16503301,1.2338084,0.2130271,-0.38302964,0.099608816,0.57002056,0.1617155,0.22167921,-0.40657595,0.73776776,0.5555904,-0.120755665,-0.18400048,-0.36240742,-0.14002272,0.13715225,-0.22350408,-0.17040403,-0.066885516,-0.9020503,-0.14731632,0.24708962,0.14070305,0.33300972,0.0104581695,-0.04531368,0.022451542,0.19707553,0.4124913,-0.41057572,-0.12367351,0.38440785,0.37879795,-0.058168486,0.11557121,-0.35870346,0.48152557,-0.53081393,0.040193934,-0.65759873,0.14280826,-0.25836352,-0.18824312,0.17962739,-0.124017246,0.31268597,-0.28937557,-0.25703523,-0.20604119,0.62282246,0.20960167,0.14399998,0.7185996,-0.2626796,-0.28355244,0.08400054,0.50197136,1.005606,-0.48863345,0.12265457,0.5172376,-0.165788,-0.5127968,0.09189104,-0.40118077,0.16844012,-0.080769815,-0.4090546,-0.44455698,0.3507468,-0.015753087,-0.04423555,0.046933915,-0.37990695,0.018167239,0.39686728,-0.2986892,-0.17079121,-0.17369798,0.19440658,0.6273129,-0.39525527,-0.5900025,0.14749435,0.3667625,-0.16308476,-0.49222836,0.1465557,-0.25248465,0.31318313,0.24532166,-0.4216612,-0.08052562,0.2854405,-0.3600613,0.014528362,0.35956976,-0.3505581,0.102593936,-0.30611253,-0.0005434476,1.238854,-0.08868311,0.3014645,-0.6584301,-0.43433028,-0.9344255,-0.2444395,0.3068226,0.17294192,-0.18145816,-0.40238905,-0.07073482,-0.012190869,-0.16167568,-0.042876557,-0.49821413,0.4527663,0.08390299,0.4446355,-0.14259219,-0.7973652,-0.13213243,0.1290036,-0.28010258,-0.39697793,0.57089525,-0.21352936,0.80295664,-0.08284115,0.12463506,0.16881102,-0.5076547,0.20398079,-0.3096774,-0.047304712,-0.7740256,-0.0947281,912 -771,0.13668847,-0.17989771,-0.58713263,0.046026066,-0.10506734,0.15121935,-0.4686609,0.256594,0.22621158,-0.47113067,0.17879318,0.07953688,-0.122851305,0.296719,-0.14236388,-0.7636864,-0.093925826,0.17359349,-0.5121006,0.8175077,-0.4602442,0.1784814,0.009538559,0.3273111,0.032202993,0.14075328,0.15653795,-0.19264592,-0.30570185,-0.12867962,-0.019632697,0.29812258,-0.26890624,0.43326774,0.05834198,-0.23175937,0.12403552,-0.27862334,-0.34626076,-0.81650835,0.26607463,-0.67252505,0.5290577,-0.026641242,-0.32141164,0.22345735,0.308187,0.22430651,-0.09905648,-0.16434506,0.1598302,-0.47114384,-0.6822542,-0.4604651,-0.31414744,-0.6143387,-0.63089085,-0.10183419,-0.64785725,-0.0305143,-0.2119469,0.38248938,-0.35948026,0.017521627,-0.24501108,0.55686474,-0.46466783,-0.06442742,0.11830531,-0.23186061,0.10792998,-0.85810983,-0.1753326,-0.020039538,0.1459125,0.36795843,-0.13023211,0.17426807,0.20873639,0.41981637,0.13585247,-0.3205214,-0.51937294,-0.23178719,0.35809025,0.38859436,-0.26240692,-0.2393786,-0.1845203,-0.123658724,0.29758203,0.14691976,-0.0726543,-0.2769875,0.09831648,-0.085032925,-0.36736166,0.27211335,0.51789945,-0.39390054,0.056067623,0.37591383,0.38792646,0.22082582,-0.33369943,-0.050485298,-0.119145185,-0.48003414,-0.05623734,0.16204812,-0.117578655,0.5046533,-0.1153221,0.29023033,0.35240218,0.04178917,-0.26188308,-0.058846857,0.10284298,0.18246533,-0.2044805,-0.14240237,0.23563954,-0.4362152,0.04974673,-0.36227593,0.71865475,-0.215007,-0.6213007,0.510558,-0.38318747,0.039814793,0.12574531,0.76315665,0.7113819,0.70048344,0.12740313,0.97260326,-0.430799,0.05139478,-0.21655843,-0.22576526,0.19428633,-0.030860106,0.37928993,-0.45524538,0.2358895,-0.08916196,0.008883478,-0.119774394,0.799536,-0.33811328,-0.16287269,0.05799313,0.76297176,-0.2923781,-0.11431912,0.6889748,1.1933255,1.0086765,0.16125153,1.1405078,0.35818723,-0.21261175,-0.3252037,-0.18140276,-0.8154119,0.3080721,0.22896744,0.22918595,0.16859528,0.13264778,-0.002684914,0.67842925,-0.1898982,-0.16768496,-0.20898408,0.40075538,0.006906129,-0.034128897,-0.45803085,-0.20264465,0.27630913,-0.12862046,0.4446063,0.28234065,-0.24285914,0.6445445,0.103626475,1.3787643,-0.32670376,0.1584498,0.16653281,0.24567956,0.18467301,0.12107185,-0.0023372374,0.38171107,0.32736397,-0.062055953,-0.6801281,0.13565212,-0.29361543,-0.54769444,-0.15181574,-0.2046834,-0.1226448,-0.12697722,-0.11639782,-0.356208,0.09379576,-0.47237697,0.20895617,-2.7904017,-0.15927908,-0.11274739,0.07944024,-0.0823362,-0.27524948,-0.089983515,-0.4221149,0.7070947,0.233751,0.46142638,-0.38687786,0.39687645,0.5737963,-0.5858257,-0.18720675,-0.7185346,-0.14601663,-0.17720453,0.56285894,0.022714991,-0.4382156,-0.15892312,0.03036026,0.6471894,-0.15234993,0.17036834,0.432325,0.3734957,-0.108610205,0.363599,-0.051533993,0.6934113,-0.30507186,-0.21374395,0.27875048,-0.36437193,0.38486364,-0.30803522,0.1823561,0.45627645,-0.2640185,-0.5988597,-0.35814413,0.074338004,1.2427298,-0.3926946,-0.66498506,-0.01272426,-0.22880028,-0.18384083,0.21616863,0.5181663,-0.12491916,-0.09147132,-0.67531896,0.011748176,-0.019060062,0.34763166,-0.092941694,0.20474546,-0.51223195,0.6564833,0.040166378,0.65441126,0.54424757,0.25652507,-0.38039196,-0.281139,0.041502394,0.822297,0.21763127,0.13998762,-0.3197091,-0.25193548,0.0051693367,-0.161155,-0.13889006,0.6022567,0.5574207,0.036419347,-0.027026312,0.33570635,-0.36383507,0.031162241,-0.2212082,-0.46103546,-0.27291805,0.15262106,0.50710434,0.56539,0.10194295,0.5302107,0.06854482,0.43027642,-0.21371344,-0.4713958,0.58792007,0.6467567,-0.35297972,-0.19335519,0.69298923,0.51771843,-0.14913127,0.54907125,-0.56301886,-0.38932434,0.39191964,-0.13580321,-0.44031417,0.15538679,-0.44984198,0.080954,-0.8997068,0.052190945,-0.44243973,-0.64162135,-0.8621801,-0.059287097,-3.1782975,0.07161224,-0.22901653,-0.095620565,-0.21305138,-0.10810934,0.21054904,-0.4600921,-0.5464931,0.09253058,0.36516184,0.2628915,-0.19779088,-0.17527731,-0.46714354,-0.18825099,-0.0875879,0.32049134,-0.027810883,0.13632053,-0.13204607,-0.5067489,0.14765443,-0.43516314,-0.14436378,-0.09450455,-0.5279697,-0.16831708,-0.011039012,-0.52110904,-0.370238,0.7165699,-0.6523548,-0.033886813,-0.48380405,0.22961777,0.17982458,0.2618726,-0.13379475,0.23388356,0.25600523,-0.19498524,-0.015456214,-0.24782069,0.14835948,-0.03944164,0.17011306,0.5497707,0.13379437,0.053462245,0.57140106,0.7010324,0.040486313,1.0871545,0.48349607,-0.16576959,0.2205682,-0.3105572,-0.10186366,-0.5749717,-0.12553647,-0.021311196,-0.4697246,-0.4568443,-0.07216811,-0.3188572,-0.78346455,0.70564216,0.19052924,0.060011305,-0.02822119,0.4720654,0.32758448,-0.11924016,0.06880255,-0.21416205,-0.15899302,-0.4425925,-0.40663078,-0.8632754,-0.49315643,-0.066958375,1.0152367,-0.2500396,-0.15294717,0.1677037,-0.47818425,-0.10118217,0.31284252,0.24554788,0.25630924,0.3192032,0.2765985,-0.7231188,0.47676343,-0.13724521,0.09708175,-0.51498795,0.22849727,0.6718419,-0.7252098,0.47490147,0.5136372,0.097316876,-0.10869738,-0.8023061,-0.22612807,0.2966758,-0.15277979,0.5336853,0.35840452,-0.69946617,0.75373256,0.317445,-0.18211725,-0.91142815,0.18022561,-0.24954152,-0.11698271,-0.007629688,0.51956207,0.11979438,0.23486987,-0.24779285,0.07576838,-0.480911,0.2832902,0.0076001287,-0.13961837,0.30563143,-0.20307428,-0.13041945,-0.8648077,-0.028010666,-0.47679046,-0.21245167,0.39835614,0.0951254,0.20194568,0.06639142,0.15691456,0.4170162,-0.3291468,0.12888172,-0.16799265,-0.2133785,0.35578114,0.55817217,0.2192029,-0.44867098,0.57618296,-0.11794118,-0.0020941955,-0.16431867,-0.05002649,0.39583635,0.19710436,0.5130371,-0.12058388,-0.048879977,0.20135999,0.983978,0.18978526,0.367615,0.05745451,-0.27954346,0.34113625,-0.062199276,0.13144125,0.015956145,-0.4111575,-0.18985325,-0.20179392,0.27092797,0.5160352,0.20419621,0.6564777,-0.11103185,-0.15256865,-0.047252174,0.14945203,0.15029833,-0.8095474,0.646011,0.14738041,0.6331471,0.5654944,0.22424911,0.08277651,0.69101685,-0.3820412,0.017011601,0.40886974,0.009125965,-0.2900334,0.5880751,-0.84864175,0.10979306,-0.1968921,0.1457545,0.22857645,0.07674168,0.48502022,0.9435317,-0.12618347,0.14834413,0.012170909,-0.23228787,0.13469918,-0.2057226,0.04454114,-0.15161976,-0.4177813,0.52020675,0.35478672,0.45856702,-0.21343888,-0.010246956,0.33077666,-0.075770006,0.3971397,-0.026975665,-0.008398359,-0.1354354,-0.50573236,-0.20803292,0.54308885,0.13718241,0.14206077,0.016443707,-0.21617801,0.46513602,-0.08554653,-0.25340578,-0.0072982437,-0.47413766,0.24263987,-0.15159687,-0.77027345,0.57766,-0.17750388,0.07978906,0.06391208,0.12925996,-0.28454548,0.1396669,0.005703651,0.77949595,0.06675622,-0.13281962,-0.07162829,-0.3194559,0.11739823,-0.23141888,-0.05743124,-0.19398744,0.31077605,-0.76267093,0.45133755,-0.5278472,-0.36282822,0.03360692,-0.2845084,-0.013414552,0.46486458,-0.36825892,-0.1633343,-0.017899577,-0.05459597,-0.19207767,-0.42278856,-0.38567093,-0.0054669483,-0.3499524,-0.025618961,-0.24345867,-0.15252744,-0.2627767,0.36102295,0.09168245,0.08345831,0.3176101,0.18768404,-0.4141159,-0.059695456,0.27962226,0.53499615,-0.07730515,-0.11539796,-0.29531804,-0.28107485,-0.38784328,0.31291822,-0.007178687,0.30471706,0.08656942,-0.5620223,0.85639614,-0.07589729,1.0895038,-0.010903358,-0.52147555,0.07565439,0.6078365,-0.018904746,0.19377872,-0.37751293,0.77612936,0.6009358,-0.07670903,0.021423506,-0.8443073,0.0003815431,0.4636169,-0.33685017,-0.05290321,-0.09213103,-0.69670653,-0.21141627,0.30899176,0.24174072,0.053828325,-0.12504338,0.040979378,-0.025342405,0.46862978,0.2255492,-0.46233404,0.107263215,0.47819236,0.09405173,-0.039167065,0.2023263,-0.2811448,0.24291672,-0.6439724,0.2254246,-0.463731,-0.0056043174,-0.10706313,-0.036929015,0.34635514,-0.026890341,0.16422628,-0.16147563,-0.3751752,-0.023549424,0.4355005,0.2647319,0.26341724,0.7712288,-0.22987741,0.085391134,0.1447522,0.6142541,1.1159263,-0.45588526,-0.058978003,0.15790811,-0.23820662,-0.7952777,0.14584936,-0.3452934,-0.05965381,0.0629566,-0.49081084,-0.58613116,0.13342835,0.068616375,-0.09812207,-0.014019717,-0.36416614,-0.1541854,0.2584561,-0.26258183,-0.10727252,-0.12552814,0.022350889,0.70750934,-0.33761984,-0.4920136,-0.10257328,0.3942943,-0.33407694,-0.55384606,0.17861396,-0.44310564,0.4155729,0.37647772,-0.31522462,0.021521516,0.21110035,-0.6778028,0.09463457,0.40638527,-0.29434225,-0.08365197,-0.32402003,0.2461477,0.816837,-0.17577018,0.17601317,-0.4689485,-0.5538466,-0.7708477,-0.2762679,0.059880022,0.0038648753,-0.115582906,-0.55487293,0.02294296,-0.37618065,-0.09786166,0.04336029,-0.7307719,0.45372418,0.06651092,0.44774157,-0.27516717,-0.939677,0.10441962,0.18755385,-0.05401065,-0.32198018,0.47676805,-0.23114412,0.8875951,0.04987057,0.18125857,0.22868927,-0.61642545,0.3597759,-0.3938328,-0.353226,-0.72849625,-0.03471787,914 -772,0.4235214,-0.30012378,-0.4511391,-0.01766689,-0.26355156,0.14559802,-0.09744671,0.49499363,0.30831286,-0.40423977,-0.28295296,-0.11248343,0.13106865,0.39307517,-0.20868029,-0.48064855,0.012137807,0.3050399,-0.42354122,0.54960036,-0.3661575,0.2307133,0.12415154,0.34634262,0.40505952,-0.0058145532,0.0001513958,-0.061042666,-0.33924216,-0.3421828,-0.46071383,0.22896484,-0.23603883,0.27646834,-0.07963332,-0.389262,-0.072112635,-0.5441246,-0.35635927,-0.7339477,0.22683686,-0.751934,0.5281545,-0.09287056,-0.22793151,0.1460182,0.31251937,0.3612641,-0.08953018,-0.13630931,0.20130971,-0.16312853,-0.10152699,-0.2446843,-0.3074949,-0.53852934,-0.6776759,-0.17283219,-0.2675235,-0.18764599,-0.19510746,0.32443902,-0.35072866,0.032424863,0.027669443,0.48236597,-0.30382773,0.23113999,0.13869397,-0.111340605,0.20613113,-0.67126185,-0.27758384,-0.028023062,0.16112797,-0.09173837,-0.33005765,0.22526997,0.46020338,0.23932849,-0.08482062,-0.11518073,-0.2614794,-0.15592432,0.09649977,0.66555625,-0.3077364,-0.54721165,-0.05800235,0.09835473,0.47266886,0.32114366,0.18753982,-0.31533054,-0.037416775,0.21272898,-0.36798513,0.41514322,0.24651766,-0.35545355,-0.03644373,0.30736688,0.32308847,0.16124487,-0.24362986,-0.20406379,0.014961334,-0.52439606,-0.03218514,0.20365074,-0.37561306,0.6358455,-0.19143926,0.31174314,0.57149625,-0.21389927,-0.052946083,0.18487048,0.2600737,-0.120238215,-0.32667425,-0.38604605,0.17454155,-0.4649966,0.11727778,-0.10876456,0.98776907,0.04880256,-0.572249,0.31379455,-0.6223952,0.07584903,-0.20659846,0.2490341,0.48049942,0.46315187,0.2940044,0.6742398,-0.37139133,-0.12909824,-0.07901691,-0.3162972,-0.12993647,-0.18504198,0.18034731,-0.5384584,0.027583249,-0.045931697,-0.08955094,0.31443012,0.5170992,-0.5927838,-0.23011255,-0.017089656,0.87483525,-0.30100453,-0.18849127,0.7986084,1.0448709,1.0521464,0.019067425,1.0670316,0.3187938,-0.21760684,-0.02548192,-0.11400983,-0.43984747,0.38201046,0.3700125,-1.0815431,0.16221759,0.04346744,-0.033674743,0.28189725,-0.25037855,-0.057343967,-0.15048432,-0.08477382,0.2218013,-0.15650068,-0.38795334,-0.4260348,-0.19414656,-0.018680014,0.14119364,0.24204026,-0.21631585,0.5364819,0.17838573,1.5243398,-0.084390655,-0.07919704,0.054756816,0.20574853,0.24328367,-0.0741244,-0.015190968,0.2516214,0.3225094,0.07335219,-0.4505994,0.11463433,-0.30607048,-0.34006265,-0.14009412,-0.15736529,-0.18943718,0.18274611,-0.37363705,-0.30052185,-0.1362894,-0.2420139,0.5395984,-2.7206607,-0.37430513,-0.056790728,0.30385244,-0.2036232,-0.5869462,-0.06648847,-0.58642584,0.39695483,0.018538503,0.57068163,-0.6336633,0.26178747,0.2878081,-0.6138712,-0.28783256,-0.7388653,-0.10950352,0.07929473,0.1692444,-0.023976097,-0.008196776,0.14083976,-0.008841212,0.5413424,-0.11083082,0.13455653,0.38162297,0.4456351,-0.093342945,0.56052303,-0.07994187,0.73769057,-0.17117518,-0.20424546,0.26185396,-0.42735556,0.34376848,0.06678062,0.18043351,0.6647911,-0.34048912,-0.76522255,-0.648409,-0.10304871,1.0325373,-0.14088185,-0.31296793,0.18319534,-0.35853162,-0.398255,-0.13758536,0.37392733,-0.11212291,-0.09265467,-0.75052065,0.034417767,0.063854866,0.093896955,0.021133631,-0.2055049,-0.20200147,0.5949973,-0.04909026,0.4245606,0.31569952,0.21792902,-0.44399226,-0.27541658,-0.104807444,0.88239706,0.5144143,0.12450673,-0.24118485,-0.08408319,-0.45975095,-0.08281803,0.09214912,0.4943266,0.5916528,-0.05556266,0.0528813,0.2947219,-0.0033179612,0.084093094,-0.08924428,-0.3862861,-0.06729072,0.0065279603,0.45020518,0.51872027,-0.018675685,0.7414993,0.08280253,0.44309264,-0.1429948,-0.5146834,0.44286457,1.3464062,-0.29566795,-0.4561235,0.5933266,0.33310825,-0.15647417,0.3351596,-0.4047275,-0.33362293,0.49988744,-0.1785958,-0.5247849,0.15621355,-0.27428088,0.100165404,-0.69804627,0.3839525,-0.31614143,-0.48067045,-0.38481063,-0.106616735,-2.4028816,0.2764633,-0.30952498,-0.14757627,-0.13224022,-0.23131885,0.006920081,-0.6623231,-0.48668283,0.1606341,0.28795996,0.71015745,-0.02959675,0.04519534,-0.028622326,-0.2548091,-0.08424293,0.12868387,-0.02620047,0.35925263,-0.028773006,-0.4118732,0.04805649,-0.06436612,-0.39173386,0.20196986,-0.7109136,-0.44443575,-0.05545921,-0.52117515,-0.52993417,0.7809354,-0.5497182,0.11946971,-0.13987805,0.14710023,0.05403935,0.26855147,0.09684534,0.095274046,-0.07679892,-0.029606186,0.19338916,-0.27191097,0.22530644,0.062364437,0.2659039,0.34097487,0.06531422,0.39764303,0.44159368,0.64478534,0.077351406,0.8594678,0.41102192,-0.108760685,0.08564322,-0.1753375,-0.46161515,-0.433752,-0.29148504,0.13932659,-0.4155078,-0.35059005,-0.13854629,-0.27935272,-0.67237335,0.5643664,0.15903424,0.16866867,-0.09597637,0.3779976,0.5744857,-0.28302997,0.07305508,0.076564424,-0.17777498,-0.5951296,-0.26442564,-0.5681158,-0.35114914,0.1749832,1.0952754,-0.33189502,0.19110394,0.020385921,-0.33079332,0.011314163,0.21278766,-0.14772996,0.043119576,0.42149937,-0.3922308,-0.6706992,0.28776997,-0.28625104,-0.18655106,-0.42822102,0.45872954,0.7730412,-0.5457555,0.5013826,0.42845318,0.0202115,-0.30609438,-0.36442822,-0.09851014,0.0826065,-0.18778917,0.37182057,0.25269726,-0.60969055,0.25034043,0.37522423,-0.31855172,-0.6149831,0.53023875,0.04085267,-0.31138185,-0.1780027,0.392378,0.35382217,-0.006488539,-0.055352155,0.08684875,-0.40873355,0.25668877,0.038598243,-0.028575612,-0.026120214,-0.19235413,-0.17211336,-0.8980131,0.122733936,-0.38432142,-0.37645784,0.2999658,0.12504321,0.2592034,0.23704435,0.07623445,0.2611295,-0.47897977,0.048188146,-0.13997093,-0.2964932,0.33599633,0.415023,0.49682486,-0.26443836,0.49125788,0.09030844,-0.15351914,-0.0003684117,0.031632457,0.40884268,0.25366843,0.40426606,-0.013891477,-0.27666062,0.36966795,0.68768936,0.121813536,0.34896952,0.04042798,-0.14228085,-0.16618453,-0.05386639,0.25524247,0.11516975,-0.5842767,-0.081343815,-0.39096242,0.11955197,0.5129684,-0.08660091,0.21945542,-0.104807205,-0.42121476,0.02700498,0.040226314,0.17322387,-1.1970071,0.4696374,0.2242476,0.8157782,0.30866763,-0.05579144,-0.13329403,0.69004565,-0.24640872,0.20364247,0.35767287,0.014855476,-0.33551788,0.47057045,-0.82567066,0.48488948,-0.042627737,0.018826861,0.0054041226,0.03282006,0.35026735,0.87530136,-0.23604153,-0.012909352,0.10734903,-0.4872058,0.12059419,-0.44525167,0.054500606,-0.71850514,-0.44400883,0.6873198,0.49064004,0.42207208,-0.14778982,0.034672365,0.24354824,-0.16518322,0.20579419,0.11390995,0.2238044,-0.10078209,-0.71273035,-0.035503928,0.42789766,-0.027777625,0.30235374,0.04485991,0.026760118,0.21737133,-0.15196422,0.05774832,-0.0873712,-0.5862814,-0.010685169,-0.3854117,-0.575581,0.446475,-0.25879616,0.10519728,0.2229103,0.06368239,-0.04337615,0.48487267,0.37939495,0.85004646,-0.02974088,-0.10225366,-0.25571287,0.28078163,0.022245921,-0.025305588,0.09330761,-0.15816863,0.13049135,-0.7114778,0.5711465,-0.10324281,-0.15604533,-0.028330078,-0.09618103,0.15754224,0.43180344,-0.26988935,-0.08807169,-0.21641353,-0.032629233,-0.20727803,-0.13573074,-0.05368305,0.2418358,0.39071178,0.116081126,-0.20982376,-0.3526953,-0.36845878,0.10524146,-0.15842159,0.48575848,0.33871153,0.07943102,-0.21536604,-0.24107185,0.09385408,0.4192742,-0.0132002,-0.2869101,-0.38766187,-0.3949644,-0.40266922,0.2047484,-0.0330435,0.4053197,0.037224695,-0.1163561,0.83077997,-0.22077672,1.2209531,-0.029639363,-0.378169,-0.072603896,0.4270624,-0.12148949,-0.10282489,-0.12694378,0.89601296,0.4850827,0.09629337,-0.07048565,-0.4643559,0.057907693,0.20054308,-0.23154886,-0.099224254,0.1197925,-0.41677624,-0.44938284,0.1800766,0.08433808,0.15720852,-0.08862233,0.107762344,0.51184785,0.02677201,0.21887878,-0.36479828,-0.09708995,0.22591121,0.37675107,-0.04598747,0.2933809,-0.46763223,0.33217922,-0.46698138,0.20612827,-0.34624916,0.19102618,-0.14868332,-0.14350048,0.28567642,0.21440798,0.21899632,-0.33094183,-0.27321735,-0.055080123,0.44413823,0.100233786,-0.045179807,0.4619308,-0.29680884,-0.15312946,0.02065494,0.50553244,0.9822194,-0.3467852,-0.12340387,0.41205978,-0.39788035,-0.4523474,0.4677195,-0.24261746,0.07948008,0.113989204,-0.090987355,-0.56171644,0.29380938,0.3947179,0.07751311,-0.080595136,-0.51762354,0.020592557,0.25131696,-0.42714706,-0.17154004,-0.24863304,0.3159324,0.27384374,-0.2807503,-0.3844035,0.059254467,0.18296146,-0.1002976,-0.2987472,0.004264992,-0.42440277,0.21605372,0.06462753,-0.24198912,-0.16376813,0.006995485,-0.47389752,0.020803057,0.10814951,-0.31851885,0.22497147,-0.20711423,-0.17973843,0.83316296,-0.25800386,0.122705825,-0.5776565,-0.29330096,-0.42744234,-0.5152716,0.26525503,0.106212124,0.00929395,-0.74969107,-0.13272788,0.05100971,-0.23531431,-0.09648728,-0.28916013,0.51999915,0.13138627,0.39257765,-0.1929761,-0.7826712,0.1500054,0.017243495,-0.059355512,-0.5891821,0.31870762,-0.13690211,0.78855455,0.042524572,0.015073623,0.50891787,-0.3327435,-0.07915003,-0.263917,-0.32951406,-0.70442927,-0.08976392,932 -773,0.5515579,-0.099528074,-0.6158635,-0.3929587,-0.2676689,0.20854884,-0.20820437,0.34287226,0.3867438,-0.3997663,-0.09555873,-0.0029612505,-0.07083308,0.32104543,-0.17087951,-0.9137253,0.15265135,0.22411579,-0.6934407,0.30089352,-0.4780636,0.36255786,0.014109208,0.29734087,-0.020966332,0.19254486,0.002182548,0.06091214,0.1443045,0.04345516,-0.21368282,0.1279412,-0.69447577,0.14449173,-0.042589802,-0.4166195,-0.12996474,-0.44046286,-0.2614101,-0.83233607,0.5130584,-0.8775886,0.5351077,-0.04923926,-0.43518803,0.11574335,-0.1446322,0.103878506,-0.41226262,0.0654592,0.1798536,-0.2109317,-0.11126088,-0.1190494,-0.2629656,-0.497101,-0.66172135,0.033718403,-0.41940907,-0.071356006,-0.2734988,0.17049639,-0.34935492,0.04251615,-0.32514888,0.38778433,-0.35074776,0.041906916,0.19092456,-0.19718647,0.019759191,-0.49348485,-0.073658675,-0.17556173,0.19220176,-0.035779588,-0.33218274,0.14613467,0.37161556,0.76086944,0.12102655,-0.37204272,-0.079112664,0.07834211,0.024313666,0.3888128,-0.25006023,-0.49489486,-0.20522235,-0.15408093,0.2963545,0.10253684,0.11922161,-0.4849076,0.0018669006,0.019638687,-0.2996832,0.3928076,0.6084321,-0.5186657,-0.16772754,0.4281076,0.41504022,0.00967611,-0.13866447,0.25999436,-0.045564897,-0.5890594,-0.4044972,0.16352382,-0.09772842,0.60756123,-0.21797313,0.17825016,0.65808415,-0.049557988,-0.038103715,-0.066912375,-0.09620566,0.0040889885,-0.35766375,-0.12408208,0.18000236,-0.5564728,0.1173163,-0.35333025,0.7413763,0.33979723,-0.88565814,0.47832453,-0.448782,0.18376344,-0.17788158,0.6194394,0.8674033,0.47527775,0.07517129,0.903792,-0.6649695,0.046062145,0.114361115,-0.3449586,0.08665287,-0.011515255,0.16448912,-0.4796278,0.18017925,-0.03312195,0.0155850835,0.04445805,0.33990496,-0.38902107,-0.2208499,-0.00652984,0.7131596,-0.41898102,-0.01298379,0.6897465,0.9117681,1.0411911,0.1302242,1.5975763,0.3689596,-0.13239184,0.1772264,0.012030995,-0.8037573,0.13460454,0.3308763,0.5806037,0.16973709,0.11046973,0.1519367,0.3523766,-0.2205848,-0.00075323763,-0.03008609,0.15269583,-0.029088827,-0.1861577,-0.2201896,-0.2286691,0.20409995,0.1936356,-0.11953679,0.3210258,-0.08806502,0.3964609,0.3109543,1.3154225,0.05851255,0.11737123,0.044032626,0.43863788,0.21996967,-0.27263615,-0.06364787,0.20502557,0.48327512,-0.14949171,-0.5712675,-0.028795429,-0.26703578,-0.40657154,-0.087613836,-0.34185892,-0.19637646,-0.077279314,-0.47906354,-0.20508605,0.044890072,-0.35316724,0.5237323,-2.2145495,-0.3061601,-0.1176699,0.33418816,-0.059776586,-0.379545,-0.23380738,-0.47526768,0.28416765,0.28458717,0.22780114,-0.7794455,0.40488422,0.46613222,-0.3820333,0.0018686423,-0.74168295,-0.11809338,0.0011966503,0.2912849,0.042003732,-0.09119313,-0.22010294,0.32873985,0.59807515,0.23421523,-0.021249212,0.3080103,0.54819834,0.016113387,0.52014494,0.018186565,0.6601659,-0.31170565,-0.08312193,0.31494635,-0.5753483,0.3643903,-0.04257563,0.2718351,0.48839903,-0.46915972,-0.7414516,-0.79538524,-0.40344986,1.2806085,-0.306939,-0.31780705,0.4913317,-0.14748889,-0.26565665,-0.10436451,0.5352198,-0.088478774,-0.11519364,-0.6179621,-0.12560664,-0.05831424,0.19813706,-0.13898923,-0.060177848,-0.31075758,0.8865316,-0.11166391,0.5607649,0.26719823,-0.014389198,-0.002173167,-0.44517496,0.076280706,0.9065169,0.42736262,0.17289501,-0.20016098,-0.08990001,-0.40160143,-0.040560644,0.060816612,0.6298914,0.7265163,-0.02673025,0.0020876504,0.2384472,0.075179964,0.048597775,-0.20483612,-0.3674841,-0.071830064,-0.074191764,0.42659774,0.58876216,-0.3262585,0.02039658,-0.17023805,0.029914673,-0.12925838,-0.5477756,0.6142712,0.9508871,-0.09606739,-0.18691455,0.48648483,0.22069469,-0.56904024,0.4526874,-0.57996315,-0.19822524,0.6037651,-0.005737064,-0.40113074,0.10996633,-0.3609812,-0.043657325,-0.73243207,0.34532234,-0.14989172,-0.5504574,-0.19432174,-0.14603749,-3.8911922,0.29910544,-0.06549054,-0.02675613,-0.3230337,-0.17687389,0.3885515,-0.32986993,-0.6059605,0.09030425,-0.04595501,0.5460676,-0.08145075,0.21925679,-0.22825839,-0.116657905,-0.44113016,0.104420304,-0.022381105,0.2537682,0.02084306,-0.22938214,-0.06414222,-0.24375965,-0.44034874,0.053391837,-0.68185055,-0.4665709,-0.12482051,-0.3928812,-0.23964915,0.62716365,-0.3990317,0.04589506,-0.30917817,-0.13765992,-0.47739586,0.34865877,0.03134369,0.06203447,-0.1943024,-0.03739734,-0.16565596,-0.2219926,0.1850593,0.093882136,0.35952193,0.33371463,-0.3349284,0.0981139,0.4729797,0.8420712,0.010281169,0.86294806,0.12097379,-0.0045243273,0.54061645,-0.014125537,-0.33483136,-0.69128996,-0.26450586,-0.16867755,-0.50916255,-0.2565193,-0.017006222,-0.41328943,-0.78582245,0.19566053,0.08526925,0.13100848,0.17241666,0.23391834,0.37230122,-0.12406197,0.16219491,-0.22544256,-0.32351434,-0.57046384,-0.47228146,-0.5697266,-0.48445606,0.26073474,1.1023458,-0.18837214,-0.11474133,-0.04553688,-0.21771577,0.17496324,0.24720527,0.17679718,0.13051699,0.4703085,-0.34463963,-0.66983914,0.44782254,-0.20377462,-0.04728357,-0.5908663,0.0030460174,0.67047757,-0.6272507,0.7085282,0.30202144,0.12587295,0.13869761,-0.6103135,-0.30592516,-0.09725107,-0.25523245,0.59803426,0.18951383,-0.7703349,0.51211923,0.2732923,-0.022417916,-0.67043334,0.39468992,0.0133016985,0.007521409,0.014850026,0.3733962,-0.14004919,-0.16228005,0.028250149,0.20035568,-0.549191,0.28668377,0.3898247,0.19746931,0.13230887,0.023393286,-0.13664554,-0.6071732,-0.1665908,-0.5802082,-0.19948174,-0.050056215,-0.06840621,0.20649682,0.060640637,0.106157035,0.55758244,-0.37758482,0.31492087,0.11322134,-0.35757717,0.4092442,0.40310913,0.42063016,-0.4826894,0.548537,0.06022721,0.07272743,0.038775966,0.1890897,0.4679382,0.39720842,0.4394315,-0.07461973,-0.041034248,0.1870937,0.88547397,0.2221566,0.28814682,0.08996049,-0.18294074,0.43897164,0.3259989,0.20027138,-0.0490825,-0.46944427,-0.08330447,-0.041057665,0.14645253,0.57895064,0.07847385,0.22304495,-0.14665984,-0.12087609,-0.007974058,0.072212376,-0.101432286,-1.2500125,0.16641596,0.2102307,0.7589564,0.52746373,-0.14549395,-0.04151488,0.2646295,-0.2918832,0.2972862,0.4779897,0.082426436,-0.4870811,0.4669986,-0.58092463,0.4177884,-0.14987916,0.08006019,0.341682,0.20460683,0.46764633,0.9670969,-0.08663066,-0.030762713,0.04218649,-0.23123527,0.19417746,-0.51188385,-0.044831477,-0.5110217,-0.29919514,0.6775011,0.5376101,0.22371545,-0.4384515,-0.034911074,-0.023023963,-0.07798534,-0.099399686,-0.07988251,-0.05699787,-0.19601037,-0.674714,-0.22930059,0.71871215,0.100631624,-0.12608832,0.080560975,-0.51893723,0.30718324,-0.28847423,0.07317869,-0.1551346,-0.8236669,-0.058762792,-0.33855245,-0.40332377,0.3418581,-0.22798237,0.15657578,0.35765675,0.036187604,-0.28229973,0.18389884,0.10637658,0.7431861,-0.004593762,-0.087863885,-0.480859,0.1439082,0.27025887,-0.38674986,-0.07044307,-0.3731224,-0.013594969,-0.5421523,0.42333624,-0.039147798,-0.16594109,0.30032885,-0.0031208396,0.14471044,0.5933602,-0.37007597,-0.15845402,0.03314295,0.151889,-0.19199361,0.012092022,-0.3140291,0.3424519,-0.0054551386,0.062796794,0.046433054,-0.14274035,0.04976159,0.21485019,0.1891974,0.20023043,0.37658823,-0.07757951,-0.38771915,-0.0026567394,-0.011494983,0.52114654,0.18880977,-0.19234984,-0.20573139,-0.25540137,-0.2907362,0.443885,-0.12604287,0.2616915,-0.05175584,-0.362473,0.6050902,0.19986765,0.9959215,0.12963209,-0.40963423,0.05709028,0.55286384,0.105060026,-0.020946672,-0.31557724,0.8101208,0.44593334,-0.1789538,-0.16909868,-0.33668217,-0.15318607,0.11601746,-0.20752598,-0.086369924,-0.07647391,-0.93184114,-0.03794033,0.075096115,0.27093875,0.2023534,0.03085373,0.015710918,0.1628155,0.14431117,0.5529834,-0.6757999,-0.08180474,0.12805691,0.21062693,0.04263145,0.086854406,-0.27951676,0.32005247,-0.75917584,-0.008218775,-0.50113535,0.000640527,-0.21673217,-0.41899714,0.14912106,0.06435773,0.25528696,-0.32172364,-0.40618637,-0.3681212,0.62373173,0.3083078,0.45170167,0.74897426,-0.24684905,-0.0046431995,0.24818999,0.46415395,1.0831965,0.0107781235,0.054103535,0.3428171,-0.41168234,-0.7053532,0.08379483,-0.396719,0.19642879,0.05818489,-0.1221906,-0.3589336,0.22374131,0.1823084,-0.09073491,0.20660426,-0.830174,-0.25156555,0.45315796,-0.1874996,-0.2728484,-0.31187597,0.2943954,0.8455936,-0.5253119,-0.31545618,0.12747392,0.28193432,-0.2420152,-0.74852854,0.08375576,-0.4565211,0.5259664,0.1726577,-0.42862982,0.039537504,0.0887499,-0.54523194,0.1846049,0.22018205,-0.33516195,0.014041323,-0.35636738,-0.10057053,1.0025189,0.18616024,0.17635599,-0.5536898,-0.5675432,-0.8800701,-0.35233214,0.24755576,0.30424875,0.08288811,-0.51718986,-0.17742833,-0.1655524,0.10040507,0.082020134,-0.35441458,0.44065985,0.13389371,0.47398785,0.03259173,-0.9937638,-0.00012592628,0.06498745,-0.24267492,-0.37098652,0.60282165,-0.16256817,0.7784142,0.0063465904,0.010570208,0.05477277,-0.754488,0.2706899,-0.58959997,-0.0050643133,-0.57757914,0.22106992,933 -774,0.6309437,-0.17951417,-0.5457561,-0.027444322,-0.1920278,-0.07251166,-0.23628531,0.42251232,0.42489865,-0.48023993,-0.20291328,-0.26522356,0.1260586,0.25865895,-0.22006318,-0.56279325,-0.05398003,0.22157647,-0.53726804,0.678223,-0.35005713,0.24634616,0.106956966,0.44134873,0.18419805,0.19340464,0.0981266,-0.005846991,-0.3016679,-0.23057629,-0.09202159,0.2450489,-0.79120314,0.012368679,-0.2818076,-0.47609183,-0.1837647,-0.5231025,-0.47757372,-0.84419954,0.252953,-0.90653807,0.65277237,0.15756585,-0.3090669,0.37914452,-0.1628244,0.16479531,-0.20079397,-0.051484987,0.07035459,-0.12041729,-0.15429442,-0.24181916,-0.20027281,-0.22564347,-0.6980493,0.10367206,-0.40622938,-0.028232766,-0.318485,0.031896785,-0.3024816,0.01358143,-0.0019913774,0.7177124,-0.33028105,0.11111769,0.15448236,0.068017356,0.30969912,-0.4940762,-0.17299876,-0.20955387,0.2407395,-0.26521206,-0.20348102,0.16325487,0.2048835,0.4998363,-0.08028854,-0.19202067,-0.36968228,0.19159259,0.21339546,0.34109715,-0.1333182,-0.70862126,-0.081167094,-0.0034639745,0.066611886,0.007303467,0.38152182,-0.3459709,-0.08455351,-0.04388732,-0.16403848,0.60848844,0.5095369,-0.3329825,-0.12281931,0.18571952,0.58131516,0.22179674,-0.016102633,-0.06018389,-0.026002783,-0.6931523,-0.20591237,-0.023777429,-0.2350765,0.6942511,-0.1610696,0.17978151,0.47726867,-0.25237125,-0.23357016,0.18119049,-0.094655305,-0.028956322,-0.20113853,-0.2518863,0.44819084,-0.3408806,0.18111151,-0.15065421,0.67409664,0.25871268,-0.82548785,0.3574263,-0.6792648,0.19332038,0.088439666,0.53195614,0.6624806,0.46644104,0.4025944,0.6602129,-0.43462855,0.0682177,0.053435225,-0.47558886,0.03279912,-0.28897613,0.021432532,-0.47693428,-0.20248684,-0.04608563,-0.34238523,0.1463079,0.45147833,-0.5516155,-0.023352034,0.095779255,0.7141091,-0.20545913,-0.21820052,0.9596929,1.1319573,1.1177971,0.1115513,1.2825873,0.2435715,-0.2498809,0.22801377,-0.2728361,-0.81605655,0.34339648,0.30865875,-0.6071384,0.5697072,0.15906535,0.0019540512,0.3865272,-0.4626365,-0.015113058,0.024688445,0.1299378,0.01788964,-0.080814674,-0.54655075,-0.28718823,-0.26515797,0.09030518,0.11024405,0.31759077,-0.1459541,0.28287366,0.14924107,1.4727517,-0.18696798,-0.014846804,0.07050132,0.42263225,0.19391258,-0.21073541,-0.25393584,0.28386158,0.21298991,0.14837871,-0.53202856,0.024536463,-0.08720891,-0.3513387,-0.16993658,-0.26409924,0.07112826,0.0068489085,-0.25298202,-0.23679315,-0.2180437,-0.47718588,0.43469495,-2.3975549,-0.16550647,0.028154602,0.36099818,-0.23514828,-0.48411077,-0.11076998,-0.5690734,0.26421818,0.277095,0.4717485,-0.74705607,0.26858878,0.52194965,-0.5851774,-0.26901495,-0.70908266,-0.18510954,0.0030589746,0.30119303,-0.035659138,0.030878829,0.15827304,0.20787011,0.43137115,0.13483153,0.112351924,0.2518982,0.4237957,-0.14900337,0.45985353,-0.03657641,0.44815806,-0.21989432,-0.12998854,0.43712837,-0.20884132,0.22488198,-0.19416378,0.17583863,0.44004828,-0.55520815,-0.87107307,-0.59499943,-0.11387029,1.2180191,-0.16147819,-0.506763,0.24288982,-0.3458155,-0.24077691,-0.06520243,0.542174,-0.0610807,0.06458522,-0.8482543,0.08019415,0.01579477,0.16164456,0.041323144,0.027625378,-0.46368805,0.67009825,0.018787824,0.33989435,0.55952597,0.2549992,-0.15967193,-0.66617835,0.20762128,1.1374015,0.22367351,0.23174077,-0.5315422,-0.21224786,-0.38409123,0.0930489,-0.1588645,0.5028673,0.675891,-0.14330308,0.11845226,0.2663258,0.18481387,0.20093773,-0.14712276,-0.271649,-0.13111888,-0.093303666,0.5528329,0.89681816,-0.25825906,0.4828563,-0.044756625,0.16037607,-0.17597015,-0.3524021,0.6703581,1.2894047,-0.17261957,-0.23732604,0.69777274,0.37260893,-0.35627124,0.52914137,-0.4785091,-0.2836679,0.33280137,-0.15032925,-0.42297876,0.3080627,-0.25265366,0.1927933,-0.91151345,0.31234974,-0.22082628,-0.33541864,-0.53937787,0.05998849,-3.2826293,0.29824623,-0.25909546,-0.20515302,-0.121570095,-0.18184243,0.10390489,-0.5866367,-0.70057577,0.1747563,0.031473987,0.70316327,-0.30438823,0.14270706,-0.052347124,-0.45500416,-0.2752593,0.18976201,0.27071312,0.38852435,0.04258662,-0.49994656,-0.13759255,-0.16616032,-0.35315132,-0.014725112,-0.53371656,-0.40510792,-0.12813455,-0.6302557,-0.29554525,0.70344317,-0.28101796,0.0829034,-0.32274422,-0.030912098,-0.09325095,0.3033048,-0.1335126,0.2839805,0.007549649,-0.011941339,-0.04127163,-0.12624682,0.17682287,0.096899256,0.20341113,0.36885756,-0.2799504,0.32949525,0.48870498,0.90686184,-0.06966433,0.9849546,0.5252383,-0.06500951,0.18515283,-0.20278054,-0.32186958,-0.6855379,-0.3274656,-0.0141048385,-0.38535696,-0.55799365,-0.13406986,-0.31159702,-0.8030562,0.6692288,-0.15904385,0.25094637,0.11774263,0.2253491,0.59923893,-0.2955217,-0.052796178,-0.15772769,-0.14874502,-0.6097806,-0.19577415,-0.59355795,-0.3890268,0.12041289,0.9595099,-0.19099139,0.07336453,0.18618315,-0.21612933,0.049251676,0.1064965,-0.02399713,0.026865661,0.4842513,0.15779641,-0.6473447,0.41907603,0.051345173,-0.16341724,-0.60071635,0.22201866,0.6238687,-0.6461014,0.63371044,0.30626976,-0.075267784,0.004763365,-0.49960232,-0.2883465,0.004993365,-0.18843222,0.44769397,0.45072657,-0.7188437,0.28579754,0.32873538,-0.31829935,-0.78138757,0.5923104,0.0858826,-0.28233224,-0.084115475,0.42589256,-0.016594378,0.1508686,-0.3184449,0.18420905,-0.32892925,0.22497548,0.297654,-0.11044449,-0.108962044,-0.15023343,0.039304394,-0.8933494,0.15457764,-0.51200324,-0.32052904,0.22729227,0.22675452,0.08097669,0.21172285,0.22617333,0.2325764,-0.38690358,0.09470483,-0.049678687,-0.3083634,0.48455268,0.5096902,0.4901157,-0.39660564,0.5797146,0.024480421,-0.12454402,-0.096785106,-0.1574538,0.39062464,-0.028950058,0.19771582,0.346615,-0.2656287,0.10604345,0.6060547,0.16209577,0.46186832,0.2611058,0.03863599,0.38530922,0.06466326,0.3595444,-0.07738293,-0.591309,0.05195484,-0.4132745,0.15188634,0.44289196,0.11133187,0.19063582,-0.19559255,-0.40571338,0.018745743,0.22473162,0.05118769,-1.2826384,0.12495096,0.14528304,0.69021004,0.760025,-0.048091613,0.054671504,0.585269,-0.087640636,0.12303548,0.45257425,0.07857696,-0.545213,0.5441312,-0.639395,0.39712632,-0.0505964,0.073189,-0.024251666,-0.1486183,0.27060792,0.72228426,-0.26460668,0.044826884,-0.13534616,-0.10908772,0.06434397,-0.50985545,0.1163058,-0.53034586,-0.22164124,0.85397935,0.46075124,0.43203098,-0.22842506,0.10629837,0.1385484,-0.16382283,0.1669694,0.12921122,-0.0054988493,-0.032736655,-0.7166704,0.080759645,0.5571063,-0.06452133,-0.0051645315,-0.13106848,-0.1960551,0.080055185,-0.37545982,-0.3301137,-0.13478644,-0.8643912,-0.21748754,-0.46317512,-0.38151214,0.47180727,-0.033218686,0.17159666,0.19070816,0.14042829,-0.3053067,0.33957675,0.1728016,0.6946657,0.23221014,-0.08187492,-0.2711464,0.32782632,0.18862931,-0.17282611,-0.09536866,-0.122178465,0.039668087,-0.47701403,0.4404604,0.021932181,-0.3117103,-0.09133332,-0.055557307,0.05972,0.664581,-0.19018275,-0.24875487,0.09236769,-0.1474327,-0.19342946,-0.2909548,0.046436742,0.34077257,0.2840668,-0.26615322,-0.038757287,0.001300179,-0.096070565,0.22462025,0.06466705,0.4506966,0.41110295,0.07954086,-0.3190379,-0.1788826,0.19468692,0.56153864,0.0743304,-0.26009205,-0.38271147,-0.4135751,-0.411106,0.088542625,-0.03274605,0.17214702,0.09230303,-0.103164636,0.6750899,0.27006772,1.1709952,0.029533941,-0.39741457,0.10386555,0.3662567,0.00071251165,-0.19637793,-0.42929113,1.1580316,0.36771843,-0.16865699,-0.11773329,-0.41994488,-0.01566465,0.15315312,-0.13362342,-0.061721005,0.008857338,-0.6351143,-0.098398834,0.25072196,0.33041185,0.11809135,-0.19685403,0.26580366,0.3505343,0.017390866,0.27015665,-0.4382117,-0.26017708,0.45060423,0.22566697,-0.002940563,0.1224286,-0.32717234,0.2793039,-0.38407263,0.007429577,-0.377898,0.08699449,-0.07881876,-0.300327,0.32838744,0.1763729,0.4129638,-0.45061603,-0.29704574,-0.4599363,0.5266405,0.025666429,0.0588043,0.49169824,-0.28059185,0.0015680927,0.036706313,0.5198767,0.98187286,-0.08771029,0.09015817,0.29578808,-0.3355775,-0.53885925,0.4724491,-0.28392637,0.22830957,-0.16584137,-0.13495442,-0.6980352,0.08279122,0.06864663,0.03882146,0.2650193,-0.77451396,-0.37224114,0.2829507,-0.38658327,-0.033439614,-0.2474121,-0.09807988,0.5600202,-0.2669518,-0.40163058,0.026576353,0.03821797,-0.06571592,-0.5232352,-0.1723145,-0.273958,0.13061555,0.25121623,-0.28701115,-0.18491386,0.16109553,-0.4783114,0.08573369,0.059530433,-0.3844125,0.046359863,-0.34933472,-0.13718988,1.0591274,-0.2700969,0.31487483,-0.32399565,-0.69711673,-0.96664625,-0.34400088,0.4198052,-0.08304889,0.09905942,-0.6497739,0.08789032,-0.15322748,-0.19606687,0.03206152,-0.44601992,0.3793774,0.1362525,0.36342147,-0.09314394,-0.8535365,0.17562366,0.16705987,-0.17707366,-0.6748164,0.46685347,0.22255689,0.8710644,-0.02632611,0.17469905,0.31683138,-0.62048304,-0.20424303,-0.058906868,-0.06620196,-0.5028647,0.11890142,935 -775,0.42399964,0.0885355,-0.44392565,0.052306466,-0.20977838,0.11492058,-0.31584293,0.22962403,0.33606288,-0.41624454,-0.28886122,-0.14368889,0.09251015,0.39785478,-0.0689964,-0.8073508,0.18943447,0.46330184,-0.3407284,0.66876507,-0.3911915,0.45619515,0.13703275,0.39036953,-0.114470825,0.17346361,0.23125099,-0.04037265,-0.21462026,-0.26584172,-0.021969428,0.24085206,-0.68054146,0.26798752,-0.31595087,-0.4906856,0.0030680436,-0.5566437,-0.35596293,-0.82624924,0.26653275,-0.64999396,0.77904534,0.1985778,-0.017133107,0.0676182,0.31192625,0.44044274,0.09810294,0.10217662,0.23871097,-0.29153797,-0.39528844,-0.26553375,-0.23937933,-0.1876222,-0.72208935,0.02729832,-0.45793942,-0.017760534,-0.34137058,0.19173248,-0.3522023,0.30164227,-0.12240632,0.37592214,-0.49956462,0.11733726,0.34239465,-0.20051232,-0.052344825,-0.5569465,-0.20155515,0.006438629,0.41253656,-0.28494325,-0.22791754,0.21328583,0.41899678,0.6444859,0.013482594,-0.36296478,-0.29736745,0.017695932,0.07644544,0.814288,-0.4553962,-0.34384683,-0.07750522,0.04602869,0.56781065,0.17555135,-0.09822583,-0.21173164,-0.029857563,-0.33702403,-0.03183454,0.23575331,0.59198296,-0.41802472,-0.21706636,0.21564086,0.40624025,0.08406182,0.02432643,-0.01898263,0.06983222,-0.56927395,-0.0767255,-0.30291387,-0.19526342,0.5634337,-0.07737759,0.1406995,0.543217,-0.071281776,-0.046117865,0.21600458,-0.03231877,0.28167465,-0.2688641,-0.34220314,0.42186773,-0.4366275,0.25395516,-0.3049463,0.6253656,0.21491274,-0.47172478,0.39417094,-0.65798676,0.20791231,0.22607924,0.5268208,0.6757255,0.42831537,0.39006087,0.65108114,-0.46018738,0.08594179,0.03143855,-0.115354575,-0.087737046,-0.07295601,0.29262722,-0.43117592,0.014078214,-0.0989615,-0.26993728,0.33008435,0.56090283,-0.5878115,-0.13585918,0.107650824,0.8790745,-0.23557684,-0.10389598,1.0851821,1.0849532,1.0287753,-0.0748473,1.3391279,0.4025163,-0.16703781,-0.28909495,-0.19539173,-0.6418655,0.015201406,0.2492864,-0.6631032,0.31946406,0.2671431,-0.26918522,0.66208225,-0.7758111,-0.33694732,0.106206164,0.17631009,0.059746027,-0.20364437,-0.63900286,-0.18301164,-0.052737474,-0.16646324,0.341702,0.527599,-0.20519862,0.38504198,-0.013106465,1.3316505,-0.0125684,0.07291549,0.13022867,0.20178065,0.35476077,-0.022941759,-0.041025795,-0.010528014,0.19337541,-0.07189095,-0.39216775,-0.09496234,-0.39431196,-0.24238676,-0.19585755,-0.013163557,-0.4214022,0.03874521,-0.2663997,-0.20996457,-0.1914364,-0.20447643,0.42656332,-2.363782,-0.34857193,-0.14426354,0.54461646,-0.16221306,-0.43649924,-0.09603992,-0.49154916,0.61049885,0.026077468,0.4366747,-0.66228807,0.38535702,0.41735792,-0.81791425,-0.37144896,-0.7460908,-0.08524149,0.007220346,0.17206922,0.12291899,-0.293793,0.17081195,0.11783253,0.5908482,-0.12625581,0.011652205,0.22186397,0.4855015,-0.10396501,0.24313387,0.094523326,0.73027027,-0.18208414,-0.4044994,0.34915417,-0.48151383,0.42389017,-0.34708676,-0.035581045,0.3887715,-0.3164737,-0.93758607,-0.55539155,-0.22360022,0.7426032,0.15725055,-0.4847206,-0.03461189,-0.23935471,-0.3425508,0.045339327,0.63340366,-0.39787146,-0.15352097,-0.7629231,-0.09313757,-0.042442285,0.08136987,0.029160304,0.18465193,-0.6993859,0.62004334,-0.255057,0.106337935,0.591812,0.49194655,-0.21183428,-0.48218182,0.07584739,0.9068112,0.46258256,0.19623032,-0.24175207,-0.15534973,-0.07602937,-0.30999982,-0.22634767,0.7931868,0.61042,-0.22674449,0.0021766196,0.28681776,0.26830447,0.11945788,-0.26134744,-0.48842424,-0.19920936,0.056773152,0.70978856,0.91591877,-0.27637514,0.37845582,0.0011738905,0.22908896,-0.20630336,-0.48036385,0.620486,0.8529542,-0.1858627,-0.03637235,0.5965889,0.17909463,-0.16850574,0.4045628,-0.75418115,-0.37110084,0.27512708,-0.07476668,-0.4463063,0.06843984,-0.22862515,-0.031463053,-0.782732,0.57617563,-0.33867824,-0.37687296,-0.6569827,-0.15079167,-2.5155954,0.1444511,-0.50856054,0.19208159,-0.19921182,-0.14831932,-0.12665533,-0.5399393,-0.71959835,0.36520752,0.007138556,0.59874636,-0.30799615,0.26287645,-0.170856,-0.4383496,-0.31755698,0.2702893,0.34019506,0.3840792,0.042117033,-0.27270806,0.107650906,-0.11452602,-0.43905413,0.09263565,-0.8258292,-0.34379798,-0.11855184,-0.52334017,-0.1701173,0.8092953,-0.4962069,0.16277803,-0.48764282,0.018335719,-0.25774246,0.30322167,0.142143,0.28725508,0.079173416,-0.118591085,0.025639135,-0.09449437,0.29230103,0.18702038,0.3237719,0.42598554,-0.15653881,0.20690808,0.26709622,0.77833873,0.24855894,0.85554814,0.41399446,-0.14298661,0.2055766,-0.4691777,-0.34452227,-0.45839623,-0.4884312,0.07408751,-0.51172173,-0.40993565,-0.21594521,-0.5968859,-0.7804359,0.49532253,0.055342417,-0.14293581,-0.13911907,0.21981147,0.39188495,-0.4172514,-0.12207349,-0.08704197,0.049694426,-0.44827652,-0.23193939,-0.44669655,-0.6576983,0.10396374,1.0967827,-0.20189986,0.2054539,0.14347216,0.00075543846,-0.004022463,0.25469673,0.08091015,-0.17821625,0.5875067,0.017852237,-0.7482232,0.28156874,-0.18195261,-0.44813168,-0.91166496,0.4418875,0.6603569,-0.69112706,0.79592836,0.67113507,0.1695558,-0.058527295,-0.52982926,-0.32334372,0.14462946,-0.28577182,0.19980842,0.13553305,-0.5081614,0.38293102,0.417058,-0.3410269,-0.84167016,0.54807,0.10919805,-0.5257541,0.12514335,0.4801357,0.2786549,-0.04314977,-0.026743092,0.39834264,-0.31897244,0.46753836,0.03666756,-0.31680283,0.6021191,-0.36349827,-0.3668079,-0.9666593,0.08332247,-0.49386084,-0.36032155,-0.0049980143,0.018830381,-0.015811294,0.08692457,0.23767328,0.37534672,-0.53860164,0.059768163,-0.20524646,-0.39375877,0.2307079,0.40566424,0.4603348,-0.32004112,0.65697837,-0.0011587602,-0.06793829,-0.070753604,0.08750657,0.43670338,-0.19505206,0.4277387,0.03287042,0.009970395,0.12243429,0.69256985,0.08626688,0.2014691,0.23728283,-0.06117979,0.2545378,0.0055347728,-0.008956989,0.10404145,-0.3723173,0.14047925,-0.30104142,0.020391094,0.44382188,0.26883233,0.3883042,-0.15634534,-0.47514516,0.000984247,0.16920942,0.08894026,-1.2899538,0.3184567,0.001627867,0.73569405,0.38659593,0.20432395,0.09395544,0.6049351,-0.19861911,-0.05711232,0.32864088,-0.13963877,-0.035066903,0.55939287,-0.6981362,0.369372,0.075408645,0.15979873,-0.004534515,-0.13998574,0.2074038,0.84028023,-0.26680362,-0.1327275,-0.2645389,-0.15158731,-0.08047227,-0.4112272,0.324995,-0.49042815,-0.3791228,0.9764801,0.38656884,0.35736942,-0.1539082,0.11460728,0.24885108,-0.25069728,0.07268433,0.10509239,0.20968741,0.03866736,-0.46831512,0.0936849,0.52387184,-0.11898331,0.018947918,-0.06755073,-0.14688112,0.27605188,-0.15776783,-0.11589351,-0.001957373,-0.864144,0.0116588175,-0.69698375,-0.32416043,0.45780414,0.016145825,0.20085393,0.13014266,0.066468194,-0.23899716,0.7043574,0.023374043,0.742896,0.23051421,-0.36784035,-0.029145498,0.32219866,0.22526854,-0.18449475,0.27073014,-0.17487851,0.37150875,-0.4866443,0.4727993,-0.043284103,-0.15184893,0.13232344,-0.22328909,-0.009438887,0.50227684,-0.3488146,-0.1980877,0.26223344,-0.3636726,-0.12998639,-0.21902712,0.010617664,0.19393612,0.3323341,-0.07191729,-0.16509172,-0.23686041,-0.553033,0.44829828,0.055685475,0.22430745,0.5361612,0.28293437,-0.3838518,-0.011676765,-0.0066668713,0.5548457,-0.25885132,-0.22250476,-0.29242995,-0.5958616,-0.46664983,0.3390155,-0.09447097,0.27564704,-0.08194796,-0.10961361,0.9033469,0.21224448,1.1527536,-0.021806322,-0.35132664,0.05238744,0.6553387,-0.11690057,-0.064355515,-0.2930525,1.2749712,0.53696215,0.015990496,-0.056099866,-0.36990598,0.17133999,0.28546175,-0.25363466,-0.14376417,0.079381,-0.5064838,-0.23057233,0.1981326,0.24754944,-0.052083142,-0.12420317,0.21346037,0.27257952,0.11650471,0.23343842,-0.7972644,-0.21282414,0.51139146,0.38160217,-0.15475951,0.19413622,-0.3524623,0.46164906,-0.38472974,0.08130508,-0.44559905,0.06482848,-0.13191421,-0.17273101,0.40840447,0.15331842,0.27486023,-0.52016956,-0.14277633,-0.23515353,0.23637229,0.3422187,0.06553428,0.63425964,-0.21428467,-0.17073932,0.032269288,0.60660994,1.2254217,-0.35215423,0.21383902,0.3687347,-0.36893824,-0.3658967,0.32790312,-0.19019443,-0.22503695,-0.09140983,-0.27321732,-0.6403091,-0.04111743,-0.06962904,0.07966847,0.0041544577,-0.61003774,-0.24122217,0.2340854,-0.3217661,-0.08034321,-0.33163518,0.2675304,0.8660349,0.0576026,-0.20774242,0.0831939,0.18042682,-0.25783646,-0.8144166,0.022763643,-0.39083752,0.20393728,0.22450915,-0.23076648,-0.30034068,0.10703704,-0.49068847,-0.06008194,0.21816741,-0.3179884,0.1131891,-0.2510522,-0.090072066,0.80335706,-0.35121286,0.40694886,-0.741949,-0.3838033,-0.91309834,-0.26002604,0.3543315,0.28865045,-0.105493516,-0.8720634,-0.18922623,-0.21641842,-0.23133853,0.025306582,-0.30700037,0.20873657,0.28997114,0.54688436,-0.36491722,-1.0061024,-0.008770557,0.029604547,-0.37916705,-0.34619468,0.2848709,0.42812246,1.0464685,0.037349798,-0.058180068,0.29943708,-0.44009045,0.08240586,-0.12431455,-0.20225371,-0.8451646,0.0004851818,938 -776,0.44681945,-0.4151649,-0.56475973,-0.10935107,-0.25229177,0.028870411,-0.4740299,0.35321897,-0.068991445,-0.6743054,-0.14823858,-0.08697879,-0.024248838,0.48706323,-0.14127408,-0.5950542,0.18343687,0.27771962,-0.6516653,0.59035873,-0.4997899,0.19688933,0.11900462,0.08284121,0.098062,-0.025081566,0.22821532,0.01885197,0.37241948,-0.08102829,-0.013736587,0.06674358,-0.61548287,0.23261727,-0.23842001,-0.56289244,-0.0056959847,-0.30854285,-0.29348856,-0.7476973,0.17110337,-0.96153355,0.52144873,0.17201588,-0.50993365,0.1174156,0.09424978,0.2425709,-0.067727715,0.21120797,0.15250112,-0.03880775,-0.27482432,-0.04292375,-0.16433421,-0.66230357,-0.5646458,0.04601016,-0.64290595,-0.14868164,-0.15841031,0.20878217,-0.37142113,0.10597543,-0.22518677,0.043908242,-0.3834353,-0.19015668,0.16946499,0.080281526,0.24781114,-0.52714527,0.057287134,-0.27650386,0.27335584,-0.2400936,-0.37323776,0.2006847,0.17855945,0.8080254,-0.0019404384,-0.2577349,-0.049236953,-0.012660852,0.28717402,0.46153685,-0.16260949,-0.29679477,-0.36656958,0.019139122,0.45137355,0.24595097,-0.012305558,-0.54694307,-0.07001183,-0.020335294,-0.40934494,0.413717,0.47361705,-0.3179955,-0.31830677,0.35243756,0.6926991,0.10844256,-0.14066377,0.3239052,0.0054103825,-0.5606545,-0.17796943,0.27133796,-0.12804922,0.37365362,-0.23735136,0.2820825,0.3576105,-0.20275512,-0.030886462,-0.021404611,-0.16162293,-0.17887019,-0.1472339,-0.3224214,0.20324367,-0.6876614,0.25682566,-0.39010996,0.7265386,0.19352359,-0.8572713,0.3839089,-0.63586134,0.15618804,-0.19431141,0.73324364,0.92004,0.29420418,0.06251621,0.65419936,-0.44003862,0.12099722,-0.32216066,-0.2752137,0.029341193,-0.28553173,-0.1122492,-0.518011,0.009539082,-0.24925604,-0.090222396,-0.26038107,0.7292022,-0.47385916,-0.22052199,0.085740566,0.61524665,-0.32957175,-0.03789268,0.7709392,1.012321,1.1105579,0.24649826,1.2206439,0.32222998,-0.08317955,0.097202554,-0.069852844,-0.7691877,0.30907437,0.5549273,0.6117422,0.37558156,0.043099284,-0.05244871,0.43149108,-0.43651742,-0.03528942,-0.34050336,0.2513604,-0.20512508,0.044634975,-0.4103002,-0.058775686,0.051619615,0.19262959,-0.091916524,0.28927422,-0.27193692,0.14456634,0.19689618,1.4883807,-0.3042158,-0.0416095,0.06300915,0.2997255,0.24799575,-0.31428754,-0.118312486,0.124391474,0.53452355,0.0055466155,-0.74366105,0.031306855,-0.17037216,-0.3467662,-0.28122312,-0.14525904,0.08170335,-0.16713764,-0.3750366,-0.04491265,0.02927388,-0.375337,0.39547378,-2.367722,-0.48852417,-0.14909518,0.3348931,-0.24432498,-0.4908747,-0.114708535,-0.3814731,0.4982827,0.3281468,0.4110542,-0.5920441,0.52226055,0.35958958,-0.47880194,0.023630679,-0.86376643,-0.15168859,-0.05359812,0.45590562,-0.07756432,-0.12546079,-0.16369277,0.2390647,0.5041081,-0.16485144,0.14150015,0.3617013,0.4207379,0.12048879,0.58761096,-0.045486443,0.43875158,-0.5278028,-0.23223859,0.52353925,-0.09771967,0.40700278,-0.11028034,0.18626364,0.35476902,-0.6920915,-0.8785508,-0.7946874,-0.5828556,1.3077654,-0.30623454,-0.36485144,0.18109155,-0.20015867,-0.18866454,-0.091471285,0.41541842,-0.16545725,-0.121408395,-0.8728767,-0.040811162,0.054488692,0.3746599,0.00909683,-0.13143028,-0.3533689,0.58693707,-0.1499047,0.45544153,0.4076959,0.20175138,-0.042053267,-0.38651678,0.054867312,1.1325957,0.43387216,0.12827595,-0.39432192,-0.29551476,-0.40755078,0.10536484,0.010899156,0.39995575,0.849224,-0.14472963,0.06997547,0.27467936,-0.037307106,0.04429078,-0.27475446,-0.338026,-0.07032628,0.28324935,0.61992264,0.36961064,0.031177392,0.41129833,-0.040143736,0.026338339,-0.2345925,-0.42863843,0.26655474,1.0361362,-0.11481038,-0.19507271,0.56712514,0.43963522,-0.1967706,0.58292955,-0.7843971,-0.31904566,0.1459752,-0.02980984,-0.31722662,0.28156057,-0.4944772,0.34034425,-0.9900054,0.3546268,-0.5340718,-0.3488876,-0.62109476,-0.18238078,-3.1196806,0.44618753,-0.029687634,-0.15116364,-0.082035184,-0.1938936,0.6683581,-0.37305334,-0.6643287,0.12090527,0.029016338,0.57847875,0.070967026,-0.020104386,-0.32142365,-0.2744982,-0.41089085,0.19681683,0.22212833,0.25686657,-0.19102472,-0.47829753,-0.1333188,-0.27253386,-0.1507862,-0.02466631,-0.6925977,-0.38330775,-0.18982461,-0.415501,-0.23562652,0.52734715,-0.2562888,-0.04347386,-0.22317782,-0.009918408,-0.027553381,0.45083243,0.1875472,0.07309022,0.16362087,-0.07304721,-0.31439167,-0.31678888,0.09270248,0.13492714,-0.02086655,0.22236589,-0.14824493,0.26250914,0.55285966,0.48303777,-0.25400585,0.83533734,0.5545786,-0.14426787,0.3811495,-0.15712386,-0.34475374,-0.57417065,-0.08274284,-0.26683715,-0.42768103,-0.5701338,0.016330512,-0.22807106,-0.7187139,0.59371865,0.014940767,0.021169428,0.10255599,0.41537535,0.3328718,-0.090524554,-0.076754145,-0.16193035,-0.17772263,-0.5491308,-0.5523635,-0.6521847,-0.52669495,0.08567715,1.1598423,-0.19952165,0.12496524,0.039038654,-0.11497749,0.08294879,0.12892042,0.010216151,0.28408062,0.49366167,0.09702572,-0.7161629,0.3573791,0.1169256,-0.013639963,-0.4829243,0.13206512,0.6330129,-0.6550485,0.37453857,0.35152626,0.10255264,0.09148427,-0.6796414,-0.091746874,0.2435934,-0.36784172,0.5103134,0.22737892,-0.9381351,0.54946256,0.31753772,-0.13923016,-0.7584663,0.5611378,0.12356232,0.027622882,-0.15675776,0.3134497,0.010032911,0.101632476,-0.33442086,0.4598989,-0.36800697,0.28629553,0.25030798,-0.11301732,0.18927394,-0.32156056,-0.15678881,-0.6764224,-0.0055828644,-0.66489786,-0.19044271,0.21136299,-0.10113992,-0.010835638,0.14107326,0.19265996,0.52493227,-0.28138658,0.12573281,-0.097607225,-0.36486033,0.23283114,0.6289987,0.4111244,-0.36317965,0.6900485,0.07335812,-0.21584529,-0.31437322,0.08621882,0.33954805,0.07629788,0.37638298,-0.11250259,-0.008371372,0.3956599,1.1469468,0.22074474,0.49144202,0.019358588,-0.10962452,0.26773706,0.15950729,0.088829234,-0.23260704,-0.41610262,-0.1118209,0.06222713,0.16880178,0.67860246,0.15230824,0.28436428,-0.17848459,-0.12904322,-0.03415456,0.15200552,0.04443002,-1.2787423,0.23594679,0.24895647,0.5232239,0.76799625,-0.07457602,0.2308382,0.35534498,-0.42065176,0.06844299,0.23157993,0.0010500596,-0.5239785,0.50577074,-0.7056204,0.34492555,-0.13462329,0.12146202,0.22476067,-0.07069064,0.52656996,0.8281014,-0.048192725,0.21396562,-0.020728858,-0.15558451,0.18949996,-0.26900026,0.017966133,-0.41014272,-0.37540454,0.72294456,0.5151953,0.4673304,-0.16341226,-0.07854454,0.08960538,-0.20394881,0.18503548,-0.17021649,-0.10021261,-0.18300864,-0.6014151,0.005469868,0.7527627,0.21786243,0.08555794,0.05579756,-0.40181917,0.33002874,-0.049717188,0.09789925,-0.0038889234,-0.9201653,-0.00042996727,-0.49184653,-0.09790272,0.42313597,-0.28199285,0.19258785,0.24875434,0.07457373,-0.23310898,0.24899231,0.05080323,0.72218996,0.1679952,-0.13918866,-0.32299584,0.05163241,0.1684263,-0.34125912,-0.113160305,-0.30158243,0.045189016,-0.8954979,0.53460723,-0.12922071,-0.35724303,0.4429922,-0.012467654,-0.046891175,0.6718743,-0.08407712,-0.16573665,0.071483225,-0.096066564,-0.2854151,-0.22099121,-0.019247394,0.33328804,0.04686896,0.06141373,-0.13423043,-0.0074849497,-0.05828288,0.5192041,0.13972646,0.31852025,0.4078536,0.25436798,-0.40298298,0.18238273,0.19789293,0.48273352,-0.05381656,-0.028237453,-0.096750624,-0.18837427,-0.29617378,0.15005389,-0.18409549,0.3369415,0.06982916,-0.2900113,0.7340208,0.23710878,1.1113402,-0.0042894343,-0.33210456,0.03527877,0.49352705,-0.03475352,-0.17196491,-0.41806954,0.7787014,0.5088751,-0.042181857,-0.10263073,-0.4919492,-0.4535219,0.12563182,-0.338558,0.0767287,-0.06464363,-0.7777891,-0.27477774,0.17958298,0.31352133,-0.0046432843,-0.1595178,0.12888788,0.19341734,-0.036292247,0.27124748,-0.4715307,-0.063125946,0.22436133,0.32216972,-0.110022396,-0.04473663,-0.5200168,0.28153676,-0.65497506,-0.00077039865,-0.4398604,0.13235837,0.08861291,-0.29784083,0.21645238,0.16683443,0.30856153,-0.25984114,-0.38593,-0.056931496,0.6278118,0.2234353,0.27469504,0.68511266,-0.41704607,0.26109287,0.0036004256,0.3590902,1.0242101,-0.3374534,-0.13733724,0.16490872,-0.3748466,-0.6179203,0.33862764,-0.5076745,0.26990655,0.22659317,-0.37885872,-0.47339025,0.3379879,0.20110911,0.043362882,-0.045164183,-0.6758273,-0.010145981,0.1812498,-0.12567177,-0.19964422,-0.33282107,0.094834715,0.8168335,-0.3403622,-0.44446167,0.092251614,0.28043798,-0.31658015,-0.6685062,-0.06232712,-0.3360926,0.23567086,0.23679362,-0.1389435,-0.005990975,0.111276895,-0.58706385,-0.05785968,0.29119927,-0.29320657,-0.03969677,-0.3483117,0.0030769156,1.0115353,-0.18273272,-0.2049503,-0.5735253,-0.616244,-0.70492613,-0.19339278,0.5562042,0.48051813,0.27381855,-0.4904575,0.1579205,-0.16674998,-0.029942453,0.1372555,-0.33481723,0.4527966,0.09400467,0.42374924,-0.050313175,-0.7837654,0.22982107,0.07581735,-0.12312348,-0.42138305,0.49735767,-0.16029105,0.84035736,0.084039174,0.034765158,0.084673434,-0.5912992,0.24592717,-0.21605536,-0.075558834,-0.83288,-0.0124137355,940 -777,0.5414034,-0.29187396,-0.48492938,-0.18283173,-0.27575257,0.28272635,-0.04783093,0.60284173,0.20971581,-0.15193993,0.015812894,-0.10090521,0.008303189,0.48744124,-0.041589893,-0.70353,-0.1195546,0.04443189,-0.62449354,0.32730582,-0.44746944,0.31546313,-0.10382271,0.46716124,0.1015272,0.34186566,0.07615352,0.09732726,0.11695364,0.21870448,-0.15898426,0.25764114,-0.5703259,0.054140504,0.02239306,-0.30412772,-0.16224636,-0.38091025,-0.3262804,-0.52577037,0.40467578,-0.69545054,0.5422525,-0.1778566,-0.40652987,0.18326932,-0.1539077,0.13375422,-0.47825903,0.010284694,0.20772758,-0.022664186,0.13509914,0.005993265,-0.18461339,-0.40136257,-0.54714525,-0.050712224,-0.48641247,-0.060315844,-0.14131509,0.11751737,-0.27055293,0.02256938,-0.06513841,0.31606042,-0.3581587,0.054457087,0.34219244,-0.23533684,0.23018925,-0.45271474,-0.091682725,-0.18514207,0.2370412,-0.093483336,-0.2258771,0.13033447,0.3727838,0.5347896,-0.092470735,-0.13443917,-0.2540135,0.20952933,-0.0713741,0.6016711,-0.030851604,-0.18717869,-0.35046944,-0.14005865,0.07688394,0.04179684,0.10963464,-0.35440108,-0.06588861,-0.039446894,-0.10921558,0.18489657,0.34466755,-0.3874799,-0.24921441,0.38126138,0.4869237,0.23830803,-0.042120907,0.17271401,0.05737514,-0.6285791,-0.23336846,-0.002346965,-0.051540844,0.5837039,-0.18808402,0.32193714,0.73582643,-0.020923348,0.13699828,-0.1670226,-0.0944029,-0.1842115,-0.28167135,-0.089889556,0.13020712,-0.35716695,0.09412698,-0.082131095,0.46838835,0.2346279,-0.8463577,0.37407142,-0.47824675,0.08918477,-0.1602475,0.47485238,0.9188125,0.3954331,-0.03257996,0.8330625,-0.5976974,0.029660206,0.1202189,-0.35681966,0.3476954,-0.042969253,0.023601161,-0.59411323,-0.0839009,0.17437838,-0.052008025,0.14293791,0.25324443,-0.5060718,-0.120473295,-0.04185572,0.5754147,-0.3610726,-0.2117245,0.6162964,0.90102565,0.8002202,0.024211653,1.2617582,0.29910094,-0.1640972,0.28110665,-0.30064282,-0.6157448,0.14212188,0.32794094,0.12526466,0.60889095,0.08210134,-0.06414897,0.5379529,0.07053598,0.08244698,0.048403203,0.016922494,-0.07134379,-0.18585855,-0.3514009,-0.28721416,0.10481025,0.052571084,-0.10279349,0.27026102,-0.2796725,0.38086668,0.19512646,1.7698922,0.06639911,0.09419597,0.011945675,0.2827605,0.24157077,-0.25073877,-0.28141534,0.31442994,0.4178826,0.09578942,-0.51766497,0.31311384,-0.111764774,-0.50898874,-0.07412654,-0.34437153,-0.23008196,-0.21933553,-0.6100624,-0.023013212,0.03310906,-0.22766942,0.46213335,-2.785773,-0.24024637,-0.12160066,0.36827692,-0.29594773,-0.35799688,-0.27592036,-0.25071377,0.07641487,0.50874263,0.34274894,-0.7189826,0.36465338,0.2679572,-0.36078814,-0.09900802,-0.48310485,-0.18708947,0.14878228,0.11635113,-0.11268295,0.034505542,0.003649794,0.44884926,0.51637834,0.01900418,-0.09726494,0.20683624,0.53960073,0.08422288,0.48394525,0.0053063747,0.5282661,-0.19556847,-0.11715314,0.40835983,-0.39695734,0.3373794,0.11131582,0.2499343,0.35939044,-0.36374468,-0.899459,-0.57220805,-0.31830075,1.2256334,-0.4035021,-0.2543547,0.23498361,-0.1365578,-0.2578721,-0.046923574,0.4438538,-0.016480394,-0.16739509,-0.77634394,-0.13773154,-0.052130178,0.22688964,-0.020135237,-0.041505676,-0.2331126,0.6297182,-0.0058293203,0.5582177,0.3984751,0.14481264,0.071127996,-0.56445825,0.08936406,0.6302192,0.32559088,0.22767133,-0.17178954,0.048028152,-0.25731856,0.118246004,0.1296694,0.459532,0.7142481,0.0764916,0.25826314,0.28926295,0.028142361,0.017538745,-0.030111028,-0.23678988,-0.029719405,-0.04376871,0.40841436,0.79002225,-0.30724138,0.2737892,-0.16419117,0.11343467,-0.17429979,-0.5624536,0.65365696,0.85480225,-0.21730043,-0.12323756,0.30822402,0.30098736,-0.34449452,0.32786167,-0.6293841,-0.1332263,0.4849952,-0.121499576,-0.23853882,0.30058515,-0.2569004,-0.031160366,-1.0031046,0.13035509,0.04634607,-0.29803762,-0.44062263,-0.13319013,-3.8546262,0.17800514,-0.15823385,-0.30752066,-0.18794395,-0.11662921,0.5205289,-0.72039616,-0.68713444,0.07891457,-0.045471072,0.5396636,-0.03850166,0.17212875,-0.3740702,-0.17050654,-0.1623001,0.18627074,0.105902284,0.31391206,0.10866996,-0.42882687,-0.13626072,-0.13494833,-0.5535409,0.079384595,-0.5859306,-0.5671108,-0.167015,-0.44781816,-0.13075279,0.65710026,-0.26706177,-0.100475624,-0.16819248,-0.041592777,-0.31861386,0.36433014,0.07909175,0.055485018,0.028309971,0.069614775,-0.12661296,-0.27387062,0.19283369,0.13293782,0.26333362,0.29755887,-0.28176948,0.18392897,0.64401424,0.650986,-0.04411375,0.5502637,0.38270423,0.01917217,0.40715155,-0.24979003,-0.11867054,-0.6099328,-0.26243553,-0.2658106,-0.40123194,-0.51313287,-0.18456878,-0.35621977,-0.81157434,0.2558603,-0.087371096,0.17256406,-0.01107817,0.1563176,0.49420038,-0.31665665,0.10768938,-0.057693098,-0.24901077,-0.52834195,-0.38146728,-0.5270251,-0.6300933,0.3842471,1.1093332,-0.17112626,-0.060245767,-0.052250262,-0.33452857,0.019315593,-0.038352575,0.15066266,0.18383534,0.18486819,-0.21114364,-0.7059049,0.43013003,-0.25846404,-0.15410699,-0.65034986,0.024059048,0.52936757,-0.5142403,0.5050452,0.21646562,0.12608257,0.1818373,-0.54054606,-0.24167325,0.031725228,-0.116741896,0.5363549,0.2988265,-0.61337346,0.41083467,0.20577511,-0.14786649,-0.52696896,0.5293007,0.01617633,-0.13373922,-0.050750785,0.25981307,-0.009714266,-0.041406844,0.00935909,0.17656612,-0.5289058,0.21473667,0.39923924,0.047809236,0.40362102,0.14614004,0.10620949,-0.5514539,-0.07369269,-0.41496673,-0.15571769,0.17280348,-0.02155423,0.38857645,-0.06513883,0.15304272,0.3637275,-0.3208939,0.10024476,0.11148059,-0.29748318,0.23908521,0.5016986,0.4041267,-0.4462994,0.38478342,0.019823859,0.17648548,0.2553176,0.17363968,0.49346623,0.4265246,0.21864134,-0.105757125,-0.13575037,0.19634192,0.6596471,0.10396635,0.29045746,0.08176903,-0.23836938,0.2635217,0.17146876,0.19724265,-0.15351209,-0.41418302,-0.018977843,-0.016856235,0.3155268,0.4805147,0.0885718,0.21681312,-0.19383945,-0.31380588,0.21087044,0.13096382,-0.026635386,-1.0763967,0.23009561,0.32640073,0.73508173,0.41796872,0.0065369513,0.052920163,0.22781955,-0.21476632,0.23201388,0.509407,0.004526762,-0.6044523,0.55267435,-0.5550085,0.40292642,-0.12303492,-0.10641094,0.19551522,0.21480507,0.4261341,0.8452019,0.024205161,0.04040154,0.1708734,-0.39839157,-0.089600295,-0.38183865,0.04464394,-0.74748874,-0.14077783,0.57417417,0.5408398,0.227492,-0.45731786,-0.103142075,-0.060286883,-0.111513495,0.07719595,-0.038405236,0.047966726,-0.09802704,-0.69040257,-0.44303843,0.5046133,-0.047136646,0.008536767,-0.040316902,-0.5135015,0.1189398,-0.16952607,-0.1364354,-0.034306843,-0.8693666,-0.03255334,-0.32242626,-0.527627,0.4431388,-0.0894537,0.088250235,0.17463714,0.03251829,-0.37173754,0.35134125,0.046909627,0.9406162,-0.052427173,-0.1221938,-0.55030906,0.22258955,0.39270127,-0.22557057,-0.31932878,-0.3992965,-0.006061534,-0.13863996,0.4239464,0.0798107,-0.18551207,0.104624115,-0.06970461,0.16802181,0.41080725,-0.24115291,-0.16954687,-0.10567402,0.026432395,-0.4102206,0.078636274,-0.40950865,0.3326267,0.15524796,-0.02443547,0.115768865,0.040615007,0.022305112,0.19795993,0.28581172,0.3024634,0.53339964,-0.113181114,-0.35938406,-0.10289614,0.16636251,0.39562672,0.096799955,-0.19829275,-0.5680693,-0.48714367,-0.31149906,0.24458303,-0.24251267,0.26334518,-0.038503535,-0.40313962,0.7005241,0.23886864,1.0959735,-0.068611465,-0.21812584,0.11637715,0.4113421,0.19956627,-0.09252139,-0.35294473,0.8688921,0.51923126,-0.15709901,-0.32248205,-0.081926934,-0.30947113,0.23715934,-0.28349292,-0.07006268,-0.2000892,-0.8448034,-0.14424962,0.16368856,0.1485912,0.14387348,-0.012866745,0.04350744,0.11468831,0.08270575,0.289096,-0.41595384,-0.18994966,0.2405749,0.28278166,-0.021932097,0.21806255,-0.4083126,0.44622883,-0.5654306,0.09787187,-0.5335096,0.0712545,-0.038637932,-0.2276539,0.09691828,-0.005203531,0.33906493,-0.24059154,-0.34578726,-0.4023081,0.63249457,0.20737761,0.370878,0.744012,-0.22018598,-0.086691275,0.1325888,0.46700874,1.1183095,-0.023062166,0.010863524,0.39977133,-0.3029838,-0.630043,0.0189829,-0.2804132,0.44958904,-0.16106743,-0.16742116,-0.4357788,0.36103395,0.06287434,0.09818191,0.066360705,-0.5821713,-0.25674558,0.4255096,-0.3242386,-0.27679074,-0.36531323,0.15298764,0.6454543,-0.4123203,-0.29553074,0.13902806,0.29071018,-0.15193847,-0.45535567,0.044549625,-0.49166125,0.25696608,0.1345803,-0.33484906,-0.065451115,0.0772064,-0.3417456,0.27625805,0.24196583,-0.26392132,0.04605089,-0.25679573,-0.14166485,1.0332605,0.04739976,-0.0792474,-0.7478791,-0.47579062,-0.9373775,-0.4339466,0.2820502,0.16810696,-0.1622982,-0.6191069,0.06846878,-0.09806288,0.042660985,-0.11184808,-0.3072317,0.5392312,0.10664903,0.4502578,0.050145403,-0.91059846,0.0360161,0.116913766,-0.4058684,-0.57328135,0.61969787,-0.10234405,0.64039654,0.06501717,0.05942836,0.17541605,-0.53431237,0.211607,-0.46222872,-0.06285615,-0.63799626,0.18569122,944 -778,0.4620255,-0.3336522,-0.38747963,-0.14516695,-0.27364653,0.0923826,-0.025304334,0.7525312,0.21343899,-0.14352667,-0.19283526,-0.1250948,0.1530096,0.51712203,-0.10478521,-0.43011,-0.057805378,0.09809502,-0.6587363,0.49454,-0.35267323,0.0063921395,-0.17785197,0.43838373,0.4078899,0.2495947,-0.06376739,0.13864547,-0.0133784,-0.035402756,-0.12652084,0.29492408,-0.27617168,0.21002564,-0.053292606,-0.2198422,-0.17275156,-0.6562749,-0.36370867,-0.7189557,0.5175917,-0.76828766,0.41705757,-0.10634501,-0.2115102,0.4898763,0.14235114,0.31200266,-0.320626,-0.32379696,0.14502588,0.061991308,0.0035472834,-0.1967192,0.05178293,-0.09963727,-0.49053332,-0.09486472,-0.27467564,-0.33787948,-0.25208634,-0.0052981805,-0.2846954,0.0664775,0.08392501,0.6500317,-0.35698277,0.27167416,0.18544905,-0.13554482,0.092649296,-0.6138266,-0.19784838,0.0053483224,0.3112421,-0.1006944,-0.26384044,0.38820055,0.24781606,0.12884717,-0.18916747,-0.07200415,-0.23680128,-0.07340648,0.07459148,0.5142117,-0.12972094,-0.6939188,-0.017384373,0.12494621,-0.019605644,0.26905677,0.25980493,-0.10225087,-0.2326054,0.04360817,-0.1632142,0.43545672,0.329361,-0.15662383,-0.18663722,0.40582812,0.49226445,0.30725527,-0.12493282,-0.24709596,-0.033198114,-0.56485265,-0.025931166,-0.1808917,-0.1958217,0.43222365,-0.093251295,0.32811072,0.6245361,-0.0057402113,-0.11024892,0.12890564,0.14541107,-0.13060649,-0.3635171,-0.2949714,0.18396963,-0.3593933,0.28675237,-0.013508008,0.6582568,0.28590736,-0.6196285,0.36900395,-0.5288063,0.14098826,-0.13739344,0.22912754,0.726842,0.39243367,0.29503042,0.60526025,-0.25723454,0.061769065,-0.16808893,-0.31763092,-0.029611556,-0.19554034,0.08723442,-0.60565203,0.023424588,-0.06790661,-0.15736485,0.18923858,0.15432447,-0.47720015,-0.088415846,0.12931028,0.81468934,-0.26395994,-0.120891996,0.86008996,1.0936083,0.9032142,-0.023192255,0.80767214,0.08214359,-0.19050018,0.4418387,-0.18588161,-0.64379543,0.25172764,0.4564047,-0.043291263,0.11018184,-0.10830032,-0.0015512086,0.33789495,-0.2544146,0.008938184,0.012336057,0.27258748,0.4476647,-0.12042691,-0.39851686,-0.36356786,-0.19148803,0.006088972,0.024127774,0.18354024,-0.14690992,0.49923265,-0.09721657,1.7816083,0.17438558,0.0764531,0.11851385,0.5401267,0.22728752,-0.264592,-0.373758,0.33791244,0.3892418,0.11924553,-0.60275686,0.40308857,-0.21858343,-0.38021776,-0.042133763,-0.5625463,-0.1821743,-0.022614025,-0.3092955,-0.17560251,-0.1489308,-0.118762165,0.44872338,-3.2687507,-0.19193453,-0.07233132,0.34267914,-0.21131057,-0.32831177,0.09657158,-0.43616915,0.41079757,0.2890731,0.5317541,-0.46617648,0.27423382,0.2708876,-0.7264821,-0.2221811,-0.45651194,-0.11670187,0.15684032,0.32672197,-0.1069539,-0.08170243,0.1063056,0.22960837,0.48773143,0.045818754,0.16023827,0.373743,0.33968312,-0.09135453,0.6126017,-0.4057255,0.5191308,-0.24739161,-0.10543333,0.120966986,-0.24698733,0.22374307,-0.21955885,0.13788454,0.5946398,-0.36714104,-1.0518993,-0.5632556,0.11855741,1.1618663,-0.25330368,-0.300283,0.37370422,-0.64131653,-0.05995264,-0.15888868,0.39963058,-0.028616332,-0.18761803,-0.6337238,0.13505092,-0.018699776,-0.09010513,-0.045292266,-0.28012672,-0.3837853,0.6126633,0.076435484,0.52709824,0.23192427,0.052338798,-0.3749884,-0.27740702,0.09123802,0.3681952,0.34547094,-0.010213063,-0.0066423784,-0.122580715,-0.36791593,-0.21662313,0.15155905,0.5249915,0.41356128,-0.028508268,0.30757868,0.12435711,-0.052348163,0.08443442,-0.1309641,-0.15515406,-0.13671125,-0.046035,0.4835365,0.668126,-0.111535564,0.64429945,7.381806e-06,0.16089013,-0.029426757,-0.41869995,0.535388,0.8805009,-0.1886184,-0.4285041,0.40762097,0.35905713,-0.1510007,0.24366692,-0.25599423,-0.063298024,0.6636188,-0.27909103,-0.37078416,0.12808064,-0.13203011,-0.049912576,-0.68183327,0.06725981,-0.32930377,-0.611992,-0.40523928,-0.07719779,-3.0338864,0.097256035,-0.17908737,-0.2984608,-0.2263284,-0.27889362,0.0036922486,-0.5999332,-0.58251417,0.29981977,0.08336219,0.8779498,-0.12963778,0.017918877,-0.14682773,-0.2969003,-0.28556368,0.08026947,-0.080080524,0.49321076,-0.023156065,-0.40258107,-0.046569373,-0.028672457,-0.6226212,0.13498323,-0.44802874,-0.2512191,-0.11237425,-0.5387546,-0.37340996,0.6634341,-0.18729459,0.11614284,-0.08954922,0.03000512,-0.080001995,0.21131016,0.031113936,0.12720877,0.087272644,-0.08271174,0.22608946,-0.20368645,0.24305223,0.06886157,0.39289874,0.117659084,-0.01223212,0.35649157,0.44335905,0.6939065,-0.059240304,0.7603314,0.4276388,-0.005151932,0.2842422,-0.3598803,-0.30550286,-0.27278602,-0.23915738,0.18017404,-0.296124,-0.36614484,-0.21523578,-0.4074282,-0.61689657,0.4324387,0.09711846,0.1936159,0.007236202,0.17727591,0.65745604,-0.33777648,0.088644296,-0.008962672,-0.055490196,-0.6747738,-0.0686721,-0.51546794,-0.38658148,0.100185394,0.7365329,-0.32699093,0.025202077,-0.10596996,-0.44890344,0.18966678,0.1715531,-0.13418707,0.34129253,0.17890249,-0.30116066,-0.6076256,0.38866812,-0.24485157,-0.2552857,-0.5482169,0.36884242,0.31434616,-0.41720062,0.6355343,0.16136946,-0.05743474,-0.39842063,-0.33641678,-0.119100384,-0.011036603,-0.18395633,0.19003569,0.2589506,-0.84286696,0.40813163,0.3939161,-0.22011214,-0.814268,0.5048171,-0.03774563,-0.3593661,-0.06303402,0.1712756,0.44719124,-0.00014650592,-0.3020299,0.14843409,-0.44073015,0.22358707,0.006031314,0.0055534793,0.17678261,-0.13301036,0.0017841,-0.64588267,0.0663406,-0.36064127,-0.27573916,0.31071785,0.15324256,0.27929145,-0.031295035,0.10844188,0.24309501,-0.25104374,0.10885258,-0.16226722,-0.34906787,0.19551413,0.44020584,0.44759914,-0.44181272,0.53174806,0.0027213509,0.016610801,0.31831792,0.011220806,0.28857735,0.16619538,0.41400072,0.07926467,-0.31905046,0.22103374,0.65293133,0.13043298,0.29512593,0.031616144,-0.026226558,0.010448864,0.019671323,0.21351221,0.100937255,-0.53197396,0.12607032,-0.28741857,0.10706796,0.5848037,0.18103038,0.04660966,0.012966385,-0.5129118,-0.05738216,0.20820533,0.03484703,-1.1860902,0.52227604,0.22992395,1.084044,0.36022732,0.010224302,-0.20414028,0.77072513,0.090475455,0.15354219,0.3072787,-0.012638152,-0.49396423,0.54366666,-0.90804,0.649627,0.09623839,-0.12367415,0.048005626,0.044878226,0.31724685,0.6140284,-0.18868293,-0.06605168,0.1390041,-0.43583834,0.2369047,-0.469012,-0.1850802,-0.62064964,-0.25058043,0.3543279,0.50853336,0.29157048,-0.1600356,0.05225003,0.15435672,-0.15377559,0.081903495,0.14145502,0.016366767,-0.034683388,-0.784422,-0.14413546,0.3332283,-0.0692245,0.39372367,-0.038823403,-0.034876265,0.29066837,-0.1713092,-0.0643834,-0.07301992,-0.62644136,0.15247776,-0.31163815,-0.42732388,0.43496567,-0.05975406,0.23441403,0.2554697,0.0629773,-0.1047393,0.57423955,-0.13479562,1.0121473,-0.17027651,-0.16106087,-0.3426369,0.13796307,0.08337101,-0.13392518,0.1075051,-0.3791322,-0.1678246,-0.41760942,0.6021069,0.08065455,-0.3084594,-0.10306204,-0.18991295,0.1813185,0.55615354,-0.21011013,-6.8293166e-06,-0.39880323,-0.28961036,-0.27313542,-0.32285628,-0.08150008,0.30867767,0.24174435,0.15542592,-0.12962396,0.003605939,-0.026625248,0.57180136,-0.1275699,0.5017081,0.21703003,0.13871692,-0.066954635,-0.27442712,0.30181462,0.4905681,0.07194873,-0.24418351,-0.48753884,-0.47574407,-0.32764876,0.13204397,-0.03474429,0.5411777,0.036752254,-0.06692138,0.4456964,-0.24932994,1.0506829,-0.00093575165,-0.3386407,0.23607701,0.45372853,-0.027645338,-0.15674004,-0.15038344,0.6755371,0.28385904,0.121453844,0.004822002,-0.31155604,0.042443596,0.31973416,-0.20584208,-0.08304921,-0.037247226,-0.43920198,-0.28888667,0.043298006,0.12801851,0.45172375,-0.19349553,0.039506946,0.28045604,0.05797885,0.13351148,-0.27478462,-0.1909357,0.33408102,0.18296582,-0.044213388,0.047189217,-0.5887724,0.4583373,-0.36727974,0.10399104,-0.25376394,0.23919128,-0.26452065,-0.23051938,0.23309955,0.14639364,0.31427124,-0.16457035,-0.39394924,-0.29924864,0.49481204,0.2427095,0.051819555,0.3667819,-0.23508745,-0.08471397,0.12761012,0.4728389,0.5064235,-0.17654863,-0.06051796,0.22389992,-0.44973162,-0.6236111,0.48437345,-0.07472068,0.31914705,0.20430185,0.22019173,-0.66556835,0.28098553,0.3065853,0.12579955,-0.17257258,-0.61390936,-0.28614515,0.31762916,-0.2987817,-0.14714424,-0.43812215,-0.042460956,0.44713226,-0.21905349,-0.23784201,0.1437988,0.11332765,-0.02206282,-0.31016794,-0.061801538,-0.4458211,0.27117598,-0.19824535,-0.32419878,-0.38686484,-0.034546643,-0.47337145,0.33827877,-0.33473304,-0.25956914,0.07946663,-0.12578672,-0.106188424,1.0379083,-0.29007137,0.2285352,-0.49470586,-0.4813035,-0.58723485,-0.3524616,0.41226763,-0.04699522,0.010728375,-0.7367169,-0.052794613,-0.07887439,-0.18327525,-0.21477446,-0.33251607,0.34617144,-0.012824496,0.2879058,-0.022016622,-0.73485315,0.37722155,0.016437503,-0.12979089,-0.58463866,0.34874216,-0.09502939,0.67655176,-0.0760464,0.14136289,0.19870354,-0.15849994,-0.21747945,-0.25671098,-0.24574691,-0.40024525,0.14854406,947 -779,0.30555272,-0.2786982,-0.5565662,-0.010603988,-0.2657715,-0.20521608,-0.044047438,0.67431694,0.08604646,-0.522303,-0.07800913,-0.23173569,-0.02996291,0.40411136,-0.24419403,-0.44363025,-0.17028926,0.15542604,-0.2244629,0.47320336,-0.25759217,0.22785218,0.023793302,0.4726916,0.062938675,0.29982743,-0.013154681,-0.0059377644,-0.29837218,-0.20604748,-0.050473254,0.17810924,-0.711715,0.025499392,-0.15021703,-0.6396455,0.081942745,-0.52550584,-0.30910528,-0.750347,0.23765662,-0.81302357,0.5517579,0.1497393,-0.19617778,0.20937075,0.1438422,0.4154352,-0.11394898,-0.021719387,0.17450668,-0.12510088,0.080808,-0.1986364,-0.38095394,-0.30038527,-0.5523237,0.087133236,-0.38915202,-0.35149992,-0.16514675,0.05569291,-0.32240206,0.040602203,-0.008301661,0.40658304,-0.45479077,-0.09193499,0.25616938,-0.23873717,0.3587874,-0.45770842,-0.086246625,-0.22997192,0.026761252,-0.46384394,-0.09276645,0.41218123,0.07850556,0.58003044,-0.0828847,-0.27853847,-0.48545074,0.1348431,0.011082409,0.35048887,-0.35903925,-0.4995815,-0.061301686,0.0151418215,0.20619027,0.24103469,0.25503537,-0.22002935,-0.05773479,0.09677581,-0.26383206,0.25358513,0.45322946,-0.29269853,-0.20667544,0.19401127,0.6391132,0.18058611,-0.0624935,-0.0048694517,-0.019806175,-0.35200408,-0.27859014,-0.07092133,-0.16219355,0.60773355,0.060624145,0.29176342,0.69348115,-0.26990414,0.07675007,-0.037292227,-0.10054514,0.021216769,-0.32670933,-0.36100787,0.42336434,-0.36042845,0.32660148,-0.083884865,0.6836427,0.23759955,-0.8495938,0.3948536,-0.5965973,0.0908951,0.022727827,0.4978997,0.41818315,0.64884883,0.4764077,0.59335285,-0.5020355,0.095606856,-0.15195307,-0.26108253,0.04952975,-0.20933135,-0.021343552,-0.3917551,-0.008007242,-0.07074057,-0.28925034,0.06590553,0.2083252,-0.62392205,0.0077680647,0.24294876,1.0055379,-0.24679321,-0.116423525,0.6316135,0.9620623,0.9351267,-0.025739614,1.1698006,0.095482275,-0.21753035,0.39478397,-0.10748721,-0.8500052,0.18157683,0.49388367,-0.22951151,0.35741812,0.17118405,0.08600506,0.5419246,-0.3910465,0.14475879,-0.19859725,0.08609818,0.05685819,-0.21338771,-0.41516507,-0.19601887,-0.11564464,-0.081856914,-0.26723883,0.35124862,-0.054801866,0.324158,-0.02342397,1.9718888,-0.018702853,0.18375383,0.14349006,0.64528316,0.017125975,0.08613371,-0.103754245,0.24666959,0.051794544,0.2954692,-0.31773362,0.1339137,-0.19982435,-0.62364125,-0.0938569,-0.2461448,-0.07250799,-0.17282456,-0.4896786,-0.17184687,-0.15045987,-0.14876188,0.3671746,-2.473769,-0.04404735,-0.06614138,0.3303227,-0.34182218,-0.4554568,0.092123955,-0.42703968,0.4785033,0.41298205,0.509302,-0.6731943,0.39932626,0.48203883,-0.4689861,-0.102689,-0.5661587,-0.13450941,0.0036118662,0.29825544,-0.05455361,-0.092826076,0.06773008,0.05023219,0.43369716,-0.16761567,-0.06321465,0.16821083,0.34815195,-0.0072775576,0.5521171,-0.2011461,0.3672175,-0.3878903,-0.25734657,0.35333925,-0.5095958,0.13635494,0.16955422,0.079889566,0.2951453,-0.557468,-1.0214084,-0.7170938,-0.4670847,1.0719854,-0.019268064,-0.34084004,0.39115328,-0.41767973,-0.24777505,-0.2825143,0.35914594,0.008357238,0.17793244,-0.78418064,-0.0151702855,-0.32601225,0.20953362,0.15721534,0.016903698,-0.48587015,0.5998182,-0.12559032,0.4992835,0.58782536,0.08951576,-0.3665612,-0.49705252,-0.031289354,0.9640523,0.37661013,0.24062452,-0.13978621,-0.22215329,-0.3457248,-0.03944208,0.05033608,0.38372344,0.93196255,-0.20565504,0.05256403,0.268964,0.045154355,-0.08681851,-0.17284335,-0.3249191,-0.08695315,0.17224255,0.49830362,0.61037624,-0.28495198,0.4322589,-0.14831915,0.5403516,-0.13326539,-0.42628348,0.23621456,0.70396966,-0.15314414,-0.067556396,0.6933423,0.52086455,-0.48714468,0.5486381,-0.6156064,-0.2272264,0.43588603,-0.16009484,-0.5402709,0.2647598,-0.24277122,0.11189897,-1.0091708,0.26750368,-0.32901594,-0.29951045,-0.63610774,-0.23626608,-3.256419,0.17091331,-0.22198783,-0.21946785,0.015968801,-0.1407738,0.14684604,-0.708697,-0.79738057,0.033292774,0.10285085,0.595893,-0.07583639,0.012335759,-0.2315286,-0.26120883,-0.2660509,0.16623253,0.36936358,0.17083813,0.0443994,-0.64893365,-0.35695145,-0.28845268,-0.56391436,0.07789688,-0.73143566,-0.4138772,-0.29087862,-0.79869944,-0.38624492,0.66956174,-0.2857471,0.07173797,-0.22970408,-0.083427384,-0.17540087,0.32878223,0.1361774,0.19598426,0.008362289,-0.062351044,0.03808696,-0.24169841,0.022965688,0.17767972,0.38985536,0.27349347,-0.22458445,0.22662497,0.63455254,0.9380766,-0.061613306,0.76880455,0.5991261,-0.24827674,0.48686022,-0.40619043,-0.35748595,-0.8037956,-0.370734,0.07399413,-0.33032593,-0.5115987,0.1961766,-0.3983188,-0.80389434,0.8833351,-0.113771886,0.059378207,0.081317954,0.22855149,0.43506587,-0.38254923,-0.17496936,-0.11859333,-0.001968118,-0.64336246,-0.3097224,-0.5164144,-0.5673883,0.03447903,1.1856788,-0.0119540505,0.051943786,0.2550311,0.03408698,0.11596779,0.15137775,0.042162813,0.11108235,0.42399758,0.048711464,-0.59315264,0.43106192,0.052365907,-0.11309297,-0.4623502,0.2376826,0.5584145,-0.7864999,0.54296505,0.19214028,-0.038869467,0.027272075,-0.54841757,-0.1303835,-0.08829293,-0.06168459,0.31343895,0.17989019,-0.76040584,0.26169455,0.70781493,-0.30558902,-0.7836708,0.3176964,-0.110592805,-0.274631,-0.1370016,0.29521468,0.1401858,0.022449017,-0.18303499,0.17676815,-0.41064242,0.096629456,0.48736027,-0.048880365,0.2761248,-0.14621554,-0.104453124,-0.89281696,0.42360395,-0.3922485,-0.27013236,0.39944208,0.029686065,-0.20334387,0.3412047,0.13573608,0.32631472,-0.20121591,0.017373582,-0.044986524,-0.36728376,0.38877508,0.39919728,0.49359387,-0.55274147,0.58575034,-0.061974987,-0.12165502,-0.088019334,-0.18564738,0.516931,-0.07442451,0.14308818,0.12052954,-0.33521253,0.2298632,0.79659724,0.11734501,0.5395627,0.019374022,0.023635488,0.26589817,0.27879512,0.07380401,0.2679373,-0.57046187,0.36818945,0.059476793,0.09911764,0.50697076,0.118865915,0.31484923,-0.15267166,-0.1671171,-0.062670305,0.24143878,-0.046817206,-1.1701052,0.33222535,0.10443126,0.8342024,0.55911785,0.33417588,0.14908956,0.70241034,-0.23131593,0.12676302,0.40869856,-0.11524259,-0.64154524,0.6412112,-0.5936886,0.5273199,0.1372266,0.03971099,0.042208195,-0.102574736,0.5936321,0.6671785,-0.15659246,0.009431945,-0.08275476,-0.11432049,-0.010345142,-0.5199085,0.042596035,-0.41498676,-0.23613669,0.6321163,0.40804517,0.30867055,-0.13419527,-0.04382181,0.12655202,-0.18220781,0.34883624,-0.17759481,0.040918224,0.049334545,-0.37902388,-0.24341632,0.6802485,-0.024797421,0.13341777,-0.1370449,-0.35092264,0.25030047,-0.04800248,-0.23349921,0.008781006,-0.6640076,0.16008925,-0.49624714,-0.26459342,0.3841674,0.14365496,0.19573918,0.13749285,0.10894179,-0.44285825,0.63633597,0.08142789,0.6934416,-0.08633285,-0.17005311,-0.14117303,0.34022665,0.11811658,-0.21737821,0.01882102,-0.1719901,0.09266916,-0.5142929,0.3620137,0.04071915,-0.4050673,0.08962314,-0.174621,0.0071943034,0.44204447,-0.062902324,-0.14931448,-0.090942875,-0.119314395,-0.1596538,-0.35342818,-0.092273474,0.33633834,-0.07990547,-0.11825721,0.0018443695,-0.20139037,0.04779776,0.6963335,-0.10255655,0.32690266,0.29236633,0.12364884,-0.5098032,-0.11682543,-0.043464303,0.50705934,-0.16886891,0.077062,-0.24638191,-0.34916255,-0.30227983,-0.03298823,-0.28178668,0.4824475,0.13628492,-0.4801917,0.8776295,0.17285237,1.458367,-0.10126127,-0.42665973,-0.025291044,0.3915313,-0.12108599,0.04254719,-0.43350407,1.1094123,0.57982796,-0.11842407,-0.23027182,-0.26952806,-0.17825545,0.15956523,-0.25218433,-0.12540701,-0.04989206,-0.5555481,-0.25972295,0.2741973,0.3763245,0.2423699,-0.085901156,0.22601968,0.21034148,0.07143371,0.17677332,-0.27062014,-0.15339667,0.47584504,0.25053674,-0.106025405,-0.06485948,-0.47733572,0.35873228,-0.4059201,0.25996906,-0.3323043,0.11383632,-0.21835232,-0.38327914,0.14533776,-0.059082493,0.3762145,-0.33906284,-0.3381439,-0.1638156,0.48892725,0.114277594,0.20211247,0.6534366,-0.29210597,0.1311525,-0.20379351,0.5088111,0.9254531,-0.18265373,-0.08935519,0.27942723,-0.16675243,-0.5460503,0.435578,-0.13730761,0.01857081,-0.13148911,-0.15041408,-0.56664413,0.13596544,0.28356594,-0.27821323,0.11147017,-0.50594634,-0.15896419,0.13756372,-0.4595909,-0.26391393,-0.4245081,0.17900573,0.70318234,-0.24350159,-0.3234525,0.25962383,0.2699251,-0.13183485,-0.25150442,-0.22273795,-0.1584467,0.23425943,0.18938072,-0.65210754,0.03509098,0.16211806,-0.33083364,-0.17170876,0.27010542,-0.33261207,0.08727844,-0.279961,-0.03424868,1.0011946,-0.014321694,0.16372475,-0.35626096,-0.5802132,-1.0030023,-0.33376652,0.59033763,0.24268572,-0.02191362,-0.5929927,0.007625291,-0.20274268,-0.34512183,0.01056689,-0.2945283,0.26735184,0.097104944,0.55433625,-0.31582177,-0.6283785,0.18616049,0.29817858,0.06200012,-0.55910563,0.5252307,-0.029474076,0.910406,0.08322646,0.010028582,0.47901428,-0.49478182,-0.08642746,-0.2693451,-0.22626819,-0.4626558,-0.056376807,954 -780,0.6949909,-0.11773289,-0.41583735,-0.019228967,-0.38013908,0.28399405,-0.32618877,0.28893808,0.041143224,-0.699907,-0.3555462,0.14678133,-0.15400821,-0.105881214,-0.30988222,-0.736977,0.10711694,0.13169524,-0.2639126,0.83393186,-0.43652982,0.37774655,-0.16996185,0.18673316,0.28306583,0.3705342,0.26754558,-0.06425632,-0.09136633,-0.47327995,0.17644487,-0.0049690465,-0.6739918,0.47188032,-0.08954701,-0.4502816,0.11916445,-0.40146655,-0.3401173,-0.73258656,0.42265394,-0.9204824,0.5073035,-0.0021971373,-0.26821515,0.15754022,0.2850096,0.12723075,0.1369541,0.038653255,0.15390211,-0.17383562,-0.058607683,-0.4291973,-0.2243438,-0.49277526,-0.557696,-0.0549802,-0.4275952,0.024530906,-0.35812286,0.2725149,-0.20927748,0.000212541,-0.31771293,0.016972143,-0.50355947,-0.010320475,-0.03455949,-0.032156054,0.04622917,-0.6722091,-0.2638119,-0.26495135,0.18927242,-0.048122432,-0.019166008,0.5120326,0.12378338,0.51319575,0.15592988,-0.22863261,-0.3142718,-0.16208938,0.44765678,0.48617914,-0.3861346,-0.22577451,-0.23265529,-0.2162706,0.7470633,0.3454752,0.14852849,-0.13346674,0.15521383,-0.10369281,-0.24007383,0.6257165,0.77736974,-0.46974605,-0.13486482,0.2653705,0.526117,0.10098905,-0.2535804,0.078612894,-0.10307048,-0.3285324,-0.40065092,0.23733616,-0.16452448,0.2804557,-0.20637536,0.085277595,0.47659022,-0.41100237,0.41613638,0.24609672,-0.123557165,0.04087483,-0.16771021,-0.30730283,0.35114706,-0.59599197,0.26409242,-0.5003854,0.8932673,-0.040494718,-0.62353545,0.45332056,-0.547985,0.12877963,-0.0033173584,0.68612,0.5961215,0.62488467,0.2182441,0.81583464,-0.21549733,-0.03158835,-0.108796306,-0.124138586,0.03742162,-0.044550594,-0.008070505,-0.2513043,0.09154768,0.024409793,-0.027228603,-0.1852625,0.6383832,-0.46352154,-0.21490662,-0.019504238,0.72359204,-0.34378174,0.052925825,0.7336271,1.1593759,0.88083637,0.044669714,1.1935996,0.13595237,-0.122022636,-0.2834385,-0.1260121,-0.63775784,0.23374686,0.43850005,-0.2512862,0.44221255,0.20992129,-0.04959344,0.19466877,-0.63871384,-0.12017281,-0.20136715,0.51379883,-0.098197505,-0.020212488,-0.4383449,-0.041236207,0.30290562,-0.1533168,0.346944,0.45229632,-0.559632,0.3361649,0.27163082,0.9746262,-0.09650113,0.13486472,0.1256207,0.6721448,0.20792834,-0.037555456,0.2712135,0.19131199,0.1555762,-0.20579672,-0.6816418,0.074962184,-0.30964854,-0.6970686,-0.14820133,-0.43195784,-0.28758913,0.25567466,0.022298392,-0.4005289,-0.0407452,-0.18518558,0.3490038,-2.3955255,-0.05177563,-0.2011934,0.30968446,-0.29448262,-0.41335046,-0.13294116,-0.6356027,0.52026504,0.15331332,0.43326804,-0.6816189,0.36765215,0.7966877,-0.6216093,0.09125536,-0.62389743,0.044803023,-0.16670778,0.53765523,0.020871427,-0.1035739,-0.06574877,-0.10299528,0.58817035,0.2301701,0.13122444,0.33252364,0.43872958,-0.04966841,0.36733568,0.065396756,0.390938,-0.47959453,-0.19591144,0.4897604,-0.3937802,0.5123874,-0.18466176,0.081483476,0.48553717,-0.59716135,-0.49845207,-0.798146,-0.47126308,1.2218788,-0.21647845,-0.7337051,-0.00073600735,-0.2614651,-0.2464044,-0.005782173,0.49873102,-0.30336654,-0.09358358,-0.60325277,-0.04697599,-0.25748476,0.39493662,-0.048256095,0.2439457,-0.41614324,0.9859506,-0.16452573,0.39119643,0.21317379,0.41531843,-0.28827146,-0.51649106,0.113267586,0.88147914,0.6108881,0.21156766,-0.3785437,-0.24889007,-0.053882103,-0.34211192,0.03714744,1.0379992,0.4765023,-0.15452436,-0.21552365,0.47642773,-0.13210429,0.034704376,-0.21993682,-0.3786492,-0.38156503,-0.16379555,0.71987957,0.620877,-0.15784726,0.2632775,-0.12008638,0.39884666,-0.36842126,-0.37867495,0.5113781,0.7132827,-0.21757743,-0.11333183,0.840114,0.7022957,-0.2993409,0.6210183,-1.0174146,-0.40144846,0.31520727,-0.13114713,-0.45999655,-0.033982478,-0.38230532,0.27794373,-0.609031,0.47431195,-0.5654177,-0.396514,-0.6867896,-0.03134887,-2.1381495,0.12763295,-0.24464947,-0.013592156,-0.2957698,-0.25394714,0.31086272,-0.6035632,-0.5063114,0.304291,0.13093087,0.518791,-0.023370806,0.03743328,-0.34938732,-0.41768953,-0.39071915,0.23301095,0.24912244,0.34132317,-0.4072707,-0.23822998,0.21234947,0.025512818,-0.084860794,-0.11967242,-0.4099812,-0.55583286,-0.2155575,-0.2892586,-0.18339978,0.5411657,-0.59128857,0.04608734,-0.2700721,0.024234973,-0.21069075,0.12462802,0.16471688,0.15382852,0.11910127,-0.13409221,-0.0068208505,-0.4634484,0.70495135,0.103009544,0.39909685,0.6201206,-0.26260367,-0.13319919,0.30562457,0.49786693,0.15627839,0.9425194,0.076529875,-0.27741084,0.34351143,-0.1244193,-0.5085591,-0.6784985,-0.11152457,0.08060905,-0.29081294,-0.46315098,-0.17522979,-0.43660927,-1.0080034,0.5198791,0.08301242,0.51771945,-0.18398945,0.46695608,0.39815617,-0.100907646,-0.087112814,0.1724936,-0.07761184,-0.63959825,-0.4144128,-0.73597974,-0.2353151,0.16309205,0.7837231,-0.06400813,-0.13307267,0.3908715,-0.22218545,0.14049993,-0.011493476,0.03106202,-0.020397572,0.5138818,0.121504314,-0.6091528,0.64453083,0.17938921,-0.047726993,-0.45242512,0.35915205,0.74442226,-0.6587893,0.21003488,0.47196245,0.07342977,-0.284516,-0.61505485,-0.049481906,-0.13505915,-0.2903735,0.44608784,0.41812235,-0.82054925,0.38838404,0.14284584,-0.15371102,-0.6828094,0.60122687,-0.056639366,-0.13965064,-0.062523715,0.5047901,0.19331002,0.039390363,0.10980134,0.4178992,-0.34911218,0.33832246,0.042860128,-0.051954113,0.28321308,-0.26196066,-0.46550962,-0.80851245,0.2456436,-0.6606074,-0.4170296,0.40954116,-0.0009200481,-0.061895683,0.3262525,0.37265846,0.5980015,-0.26601264,0.21903491,-0.08401636,-0.102149375,0.57066524,0.4011175,0.52182424,-0.4442083,0.7354565,0.17869195,0.01096979,0.20637694,0.26456988,0.3191009,-0.10453452,0.39652982,0.065405674,-0.045942947,0.0397216,0.7596268,0.46958044,0.3749554,0.12813312,-0.25326356,0.30672348,0.059690777,0.30471987,-0.0012368972,-0.7464232,-0.23141773,-0.035215102,-0.07157945,0.42405975,0.14035605,0.2942994,-0.17510591,-0.05459641,-0.019499917,0.04725879,-0.21508922,-1.2218922,0.15437937,-0.0053226626,0.727313,0.6472987,-0.19528945,0.20699373,0.6965781,-0.27423576,-0.014882023,0.4352284,0.16569728,-0.4411247,0.31514513,-0.42278436,0.23624992,-0.12692167,0.13956285,0.016749356,-0.1154766,0.3257995,0.8765907,-0.252474,0.091762856,-0.04579238,-0.34633777,0.10079081,-0.12919234,0.36989358,-0.44232163,-0.3308624,0.5875068,0.3912028,0.58983314,0.00051454856,-0.047217663,-0.20624854,-0.21302843,0.27650613,0.03678624,0.09249317,-0.24361323,-0.45556405,-0.32490832,0.5281027,-0.12968506,-0.0010999441,0.06705399,-0.2349651,0.24446808,-0.03596053,-0.09567864,0.00013985083,-0.6657854,0.11523194,-0.14495888,-0.38072756,0.1881966,0.059036914,0.18298642,0.24722873,-0.0683694,-0.08476036,0.20614961,0.32131135,0.4668855,0.06774413,-0.19334064,-0.4519872,0.13985373,0.16284825,-0.336895,0.1002812,0.030430097,0.3243238,-0.6836357,0.3941407,-0.23807767,-0.3455092,0.060997512,-0.20932968,-0.27515525,0.624493,-0.034610685,-0.20580666,0.09712553,-0.07025279,-0.32213253,-0.19593757,-0.16566974,0.09061667,0.063746616,-0.05847464,-0.21529484,-0.32363793,-0.12559494,0.17238998,0.13047062,0.20335929,0.43158516,-0.055337217,-0.5569203,-0.079674534,0.24702397,0.5516992,-0.009746606,0.17954943,-0.14490397,-0.6416159,-0.49273145,0.4324605,-0.14835654,0.099998474,0.10002002,-0.41092828,0.6187433,-0.20477279,0.97333455,0.046579566,-0.31028253,-0.12870303,0.72562313,-0.16592279,-0.021912782,-0.355652,1.0849102,0.50698715,-0.27039957,-0.06263642,-0.42152098,-0.07495262,0.1925337,-0.2009957,0.030537091,0.07849883,-0.63801104,-0.070495404,0.22467582,0.4687392,-0.12468959,0.0034052224,-0.08767304,0.2130664,0.21113355,0.6167915,-0.37399417,-0.54450166,0.47700214,0.091128975,-0.10795907,0.26386452,-0.29794216,0.17025137,-0.69248766,0.10933674,-0.6679419,-0.017180903,-0.13734078,-0.40434858,0.26664415,0.12024032,0.43748686,-0.49173197,-0.59930456,0.050032377,0.33267227,0.14733627,0.32246172,0.42737374,-0.068403706,0.008605827,-0.010039793,0.5127985,1.2230132,0.008114135,-0.08993937,0.19977225,-0.6509284,-0.84526545,0.2209222,-0.5363384,0.017648298,-0.023619175,-0.59186774,-0.30631992,0.22291125,0.058343153,0.07166035,-0.008779622,-0.8988958,-0.3067689,0.04528308,-0.27419335,-0.25062767,-0.21824318,0.26872033,0.8390278,-0.38193133,-0.31266072,-0.17601348,0.2505396,-0.40742347,-0.6513447,-0.057439223,-0.22192486,0.30444866,0.09402085,-0.16425923,-0.16901706,0.2116579,-0.50505424,0.046688113,0.2312701,-0.48920372,-0.022248112,-0.16490188,0.2891009,0.572086,-0.116879925,-0.045367368,-0.30629432,-0.5207484,-0.7743174,-0.41612688,-0.084603466,0.45595175,0.0566437,-0.44417027,0.025053611,-0.2498624,0.05369126,-0.046211533,-0.5521752,0.6354813,0.24158779,0.42958105,-0.046283416,-0.8337498,0.0943429,0.11458738,-0.011919599,-0.5943269,0.524564,-0.21381705,0.96891534,0.17036428,-0.006432171,-0.08200126,-0.7038953,0.26492456,-0.27158022,-0.1655865,-0.9038918,0.32193688,955 -781,0.61974186,-0.28734,-0.6573937,-0.15085295,-0.40634203,-0.11980861,-0.069573455,0.3249591,0.36055008,-0.26186788,-0.37049377,-0.020117998,0.10096594,0.3734159,0.03264141,-0.9271145,-0.1440447,0.35271257,-0.8372517,0.5827916,-0.50615275,0.27183515,0.0041227844,0.40526834,0.21799472,0.35196787,-0.071750626,-0.095036745,-0.109181374,0.2054355,-0.10547122,0.3162478,-0.3935789,0.07621439,-0.056687847,-0.26701096,-0.16176523,-0.51508266,-0.14995195,-0.7971488,0.19253452,-0.8743967,0.430345,-0.09353241,-0.2205179,-0.26050204,0.029293515,0.4168522,-0.37747076,0.0013827452,0.12904404,-0.07036187,-0.193529,-0.24081582,0.015432954,-0.15540758,-0.51400334,-0.037255935,-0.3997479,-0.15038994,0.10211043,0.08681852,-0.4135815,-0.026634078,-0.31554273,0.3991093,-0.4188581,-0.01799233,0.54736596,-0.12576903,0.101924434,-0.51438004,-0.06351663,-0.028970562,0.5125301,-0.044901725,-0.3303302,0.37450936,0.18803594,0.47929996,0.3739916,-0.27890885,-0.03976876,-0.0853825,0.17659368,0.5098513,-0.037705276,-0.37950695,-0.20694259,0.068031915,0.23788632,0.33695662,0.033309862,-0.3504226,-0.13736399,-0.18167026,0.02349892,0.25437647,0.4410149,-0.13438693,-0.35715288,0.3983897,0.7415057,0.34398195,-0.15833282,0.05734152,0.05732697,-0.648525,-0.191827,0.20411518,-0.041568305,0.4781101,-0.12133547,0.22277993,0.7419834,-0.12284495,0.040165856,0.09808254,0.036765512,-0.22965695,-0.49092242,-0.24442863,0.19525176,-0.5063792,0.13873285,-0.21696578,0.7402963,0.29747432,-0.71437335,0.37578928,-0.6280172,0.22683941,-0.07361495,0.72015643,0.87821555,0.26518625,0.30436257,0.6303407,-0.081821844,0.2722897,0.08175169,-0.50097823,0.00826986,-0.09683636,0.14701457,-0.5416634,0.14860977,-0.17423478,-0.041312072,0.13198186,0.43683177,-0.6404628,-0.17474549,-0.119420394,0.63283324,-0.3103457,-0.06429027,0.894071,0.9123561,0.88081205,0.09451545,1.4082776,0.3979867,-0.3168057,0.3428782,-0.55911964,-0.8072755,0.2218596,0.2219122,-0.42285368,0.53433603,-0.037120268,-0.22557321,0.4429661,-0.27454156,0.11132109,-0.10646344,0.34862715,-0.14207752,0.03407544,-0.63191885,-0.2753991,-0.18647835,-0.056763455,0.17416587,0.3219234,-0.32519266,0.40338972,-0.11329263,1.4526647,-0.10434224,0.06228988,-0.071140274,0.32530752,0.2173152,-0.30648354,-0.23716229,0.4684275,0.50862825,-0.18457443,-0.70815194,0.35693315,-0.32290787,-0.29806498,-0.18127514,-0.45462972,0.024439398,-0.13884367,-0.3970381,-0.16817664,-0.077255875,-0.33916774,0.38834792,-2.5299551,-0.37296283,-0.094313785,0.3794386,-0.2579615,-0.2898006,-0.23880926,-0.5193633,0.13857779,0.08993854,0.5573647,-0.6821867,0.5560316,0.45567846,-0.5947839,-0.16405055,-0.81492716,-0.049742654,0.182141,0.25880638,-0.056866206,0.061724994,-0.06556935,0.030135265,0.43728146,-0.033557918,0.082157135,0.5552276,0.41093272,0.24164368,0.38133353,-0.027190711,0.7098172,-0.31178346,-0.09909534,0.3147735,-0.24327111,0.31103617,-0.08834268,0.07159416,0.61834824,-0.47711006,-0.8819789,-0.5442151,-0.40494794,0.9828137,-0.48031828,-0.37187943,0.19453344,-0.23517159,-0.09308045,0.052842356,0.65395534,-0.09650861,-0.15393415,-0.76902825,0.03933141,-0.0073568914,0.20822929,-0.009760352,-0.051369723,-0.2378054,0.53182495,-0.019663077,0.5959021,0.19731314,0.3012523,-0.14737763,-0.42605972,0.20567568,0.6491622,0.1924428,-0.07820575,-0.113406435,-0.24875014,-0.16493446,-0.14158076,0.003433764,0.56834567,0.77305794,-0.046232894,0.12447843,0.34507707,-0.0067730406,0.17002593,-0.15450177,-0.15009686,-0.14739884,-0.06783176,0.41433054,0.76566374,-0.27722338,0.6758992,-0.27729222,0.25684616,-0.067304365,-0.59033966,0.6738845,0.6770454,-0.2712429,-0.13310957,0.53283656,0.35280862,-0.49340117,0.5229069,-0.55840236,-0.06071971,0.5793785,-0.17586859,-0.33508837,0.34070036,-0.1821797,0.26162362,-0.99325764,0.2713349,-0.32849705,-0.49516532,-0.45091337,0.13212568,-2.805297,0.29060096,-0.18427876,-0.13811086,-0.18882054,-0.14660218,0.15728961,-0.75300246,-0.616083,0.22299163,0.22196929,0.7056512,-0.1716579,0.0931625,-0.27761704,-0.30010945,-0.21276177,0.0646706,0.027805887,0.40026826,-0.25055063,-0.38878077,-0.083308,0.0062512984,-0.46473277,0.2161533,-0.8001938,-0.5240991,-0.09550463,-0.8118233,-0.17757472,0.6963214,-0.22077648,-0.104247294,-0.18079893,0.019014465,-0.2109049,0.36197442,-0.005542526,0.23040716,0.29299542,-0.016248813,0.05316957,-0.24870147,0.3429156,-0.07711827,0.38401935,0.12162574,-0.15055616,0.35603064,0.48736283,0.7180387,0.028060151,0.8267517,0.56506085,-0.09872769,0.23703854,-0.33251396,-0.26964617,-0.5263516,-0.37477154,-0.09342366,-0.39806038,-0.62805855,-0.06118265,-0.3693238,-0.84469247,0.5320593,-0.013787527,0.35511667,-0.113856874,0.16220382,0.62923086,-0.15338184,0.043066606,-0.12682523,-0.23567082,-0.48479974,-0.19756435,-0.694261,-0.48553684,0.22931466,1.0704176,-0.3771462,0.2234638,-0.2062914,-0.42796278,0.040615294,0.14892626,0.008709862,0.39702702,0.3579915,-0.19935161,-0.52792263,0.39650983,-0.11014472,-0.21369442,-0.44585815,0.08642511,0.60210115,-0.8007215,0.7174765,0.1338965,-0.050091267,-0.046193175,-0.46084034,-0.20190237,0.11634783,-0.21620676,0.40953782,0.28114098,-0.49981195,0.4707022,0.33101428,-0.2278296,-0.8149391,0.28919417,-0.11574303,-0.18410832,-0.13642329,0.37433994,-0.11760699,0.04389495,-0.3686915,0.07286179,-0.41609997,0.18563703,0.33059248,-0.23426011,0.13028684,0.036488798,-0.23783149,-0.7196773,0.14831306,-0.6083137,-0.15979427,0.36079186,-0.00025927907,0.18797605,-0.07821028,0.28518456,0.4477536,-0.41044363,0.023022117,0.10642608,-0.29536277,0.105151325,0.48915446,0.289612,-0.4576755,0.37592712,0.14491118,-0.118029,0.08028188,0.069855645,0.3741152,0.16504055,0.40247557,-0.12251957,-0.27322203,0.24447213,0.7808799,0.05209981,0.44481248,0.06303027,-0.091268465,0.21751015,0.02378844,0.3700321,-0.023403963,-0.31633568,0.04124966,0.18114427,0.21536018,0.5790467,0.4660645,0.36089674,0.036731668,-0.33765063,0.015537171,0.280599,-0.0044608023,-1.2900211,0.461635,0.28867376,0.8361842,0.5325808,0.10312362,-0.24355419,0.4558419,-0.20745167,0.22637479,0.35257497,-0.25669506,-0.5946283,0.7368422,-0.678745,0.47159898,-0.15502095,-0.06388189,0.15730268,-0.041067645,0.32402802,0.75180733,-0.16412984,0.05234079,-0.13349918,-0.10110001,0.012295282,-0.39403662,-0.0632182,-0.6051478,-0.31950697,0.64096355,0.43532383,0.31669638,-0.19398023,0.0011848853,0.17075601,-0.08378328,0.16539167,0.11377639,0.10228157,0.30647624,-0.64622504,-0.40693805,0.5432241,-0.23968643,0.06461761,-0.15609668,-0.35791916,-0.01485831,-0.20716132,-0.038541853,-0.07676195,-0.7935019,0.101529635,-0.34278643,-0.4996597,0.28663,-0.089557104,0.06840123,0.27209952,0.047934063,-0.31771642,0.41453993,0.023937276,1.0896138,0.057333782,-0.24461001,-0.36761034,0.31639534,0.33568698,-0.2840158,0.047984764,-0.392669,0.09675085,-0.40108812,0.7134224,0.12698518,-0.3853679,0.10931059,-0.19084051,-0.0059686312,0.42419836,-0.20987114,-0.12506706,-0.19759256,-0.16439949,-0.501813,0.050580934,-0.27291828,0.18274818,0.46123078,-0.0034706134,-0.06598903,-0.071563035,-0.0648057,0.7261886,0.07904546,0.47478187,0.4923269,-0.05171836,-0.15935619,-0.028448949,0.43149754,0.43767172,0.16574067,-0.03125761,-0.63210326,-0.29416972,-0.34258837,0.18452145,-0.096290775,0.34226182,-0.056024663,-0.12695873,0.86210895,0.1547001,1.2394553,0.036792535,-0.28906927,0.10866283,0.3933121,-0.15100549,-0.05792959,-0.4854409,1.0067861,0.36972097,-0.11001013,0.044546314,-0.52064353,-0.35440034,0.4551341,-0.26435637,0.006116796,-0.04380887,-0.48017782,-0.44783896,0.13855216,0.14418729,0.11459296,-0.066163585,0.044086438,0.0745254,0.03019461,0.11647458,-0.66787463,-0.15929581,0.08059735,0.21148852,0.045504753,0.2907899,-0.3794256,0.50039506,-0.7833399,0.26892048,-0.28988367,0.24033979,-0.047396783,-0.3772549,0.17828855,0.10882656,0.3599293,-0.33129945,-0.34900826,-0.33027312,0.6139563,0.052504696,-0.014958749,0.7517385,-0.31840977,0.117292404,0.34294382,0.6015923,1.2057064,-0.15498106,0.053552788,0.29367557,-0.33926848,-0.68691456,0.35105845,-0.21747765,-0.048095226,-0.21493313,-0.34139845,-0.70153576,0.29643565,0.13985628,0.12338427,0.17924947,-0.5223885,-0.13210899,0.23223804,-0.33466065,-0.116659455,-0.44671977,0.2877533,0.8478988,-0.24917075,-0.3313598,0.097723044,0.10038327,-0.27641943,-0.2961991,-0.09668911,-0.35482973,0.2588855,-0.11286728,-0.19651915,-0.25814888,0.107524864,-0.3375243,0.14354075,0.21372017,-0.2553009,0.3059294,-0.12332128,-0.19617844,1.0547054,-0.2041896,0.033894684,-0.69626105,-0.5137316,-0.8244387,-0.53392893,0.12782606,0.12814853,-0.048110656,-0.6203715,0.3224562,-0.029769646,-0.12697253,0.083010346,-0.3955413,0.39208126,0.114814796,0.30922502,-0.2584487,-0.9804773,0.2046594,0.15570985,-0.30268133,-0.68687886,0.5579868,-0.071503714,0.8330464,0.086469725,0.031102227,-0.04884762,-0.34120747,-0.015505075,-0.34342745,-0.0935949,-0.91168743,0.017145423,963 -782,0.48981428,-0.10195083,-0.6170635,-0.13873447,-0.45486948,0.13943693,-0.25906056,0.14484452,0.24277145,-0.095479965,-0.23635581,0.12400646,-0.23645757,0.24815185,-0.14638892,-0.832303,-0.06306273,0.13461645,-0.59994066,0.54432243,-0.19733427,0.33481672,-0.1456686,0.32389933,0.30093685,0.4236962,0.11946009,0.169118,0.17597404,-0.20731372,-0.026231894,-0.24000758,-0.7993236,0.3174949,-0.31583533,-0.40649027,-0.10333292,-0.55717814,-0.35936788,-0.7515718,0.5203475,-0.733546,0.6678756,0.2217384,-0.34679142,-0.1576907,0.20488466,0.17982855,-0.21537948,0.066833414,0.3414254,-0.42046982,-0.007816058,-0.14509597,-0.3316081,-0.43300244,-0.6484244,-0.20438609,-0.43248865,-0.013708844,-0.15758187,0.21901202,-0.237918,-0.013149202,-0.3299083,0.14688092,-0.4860069,0.094393805,0.20958665,-0.18710896,-0.12110192,-0.70630085,-0.21945883,-0.06829031,0.2784046,0.27459666,-0.15049051,0.48388082,0.08889522,0.5141172,0.29338473,-0.3130449,-0.3317909,-0.027031284,0.1260311,0.5310368,-0.1650835,0.31197786,-0.3649533,-0.22027662,0.61739296,0.45800135,0.050946347,-0.18775058,0.14339016,-0.32067835,0.03428706,0.36582512,0.60575074,-0.32292587,-0.047482304,0.21904948,0.3137379,0.3825063,-0.17838605,0.11410569,-0.10741076,-0.29675862,-0.3512356,0.16382025,-0.0932367,0.26642695,0.0038661389,0.14493527,0.48808149,2.6909205e-05,0.0764326,0.04509658,0.00884007,0.2747347,-0.25859514,-0.4001601,0.48723397,-0.5831179,0.5232309,-0.2429722,0.420857,0.1714286,-0.6148161,0.2842635,-0.6414408,0.1248848,-0.028692488,0.64625514,0.9620646,0.59903705,0.06800813,0.927634,-0.4299375,0.084486045,-0.068477765,0.05704877,0.062933214,0.0056451103,0.23396192,-0.41825074,0.14454032,-0.23300482,0.06621898,0.21655038,0.28686583,-0.16807468,-0.20647874,0.0640409,0.724404,-0.26092154,0.17285626,0.77736914,1.1540805,1.124771,-0.089792326,0.9595055,0.05500212,-0.21474622,-0.5298718,0.04399291,-0.6010638,0.061089627,0.30079386,0.15524699,0.47055465,0.2374541,-0.040157977,0.4041999,-0.39528185,-0.16847871,0.120611735,0.083053075,-0.044722464,0.0014617259,-0.5211116,-0.33416468,0.16525462,0.05153192,0.004832011,0.449259,-0.33960024,0.4947707,0.04442778,0.8693758,0.13041037,0.17483248,0.24230263,0.3804895,0.24553023,-0.28657013,-0.055133276,0.06970357,0.27800572,0.021721043,-0.5780891,0.060761515,-0.4371821,-0.32353354,-0.07145503,-0.42495066,-0.42770126,0.06802036,-0.33480978,-0.30954468,-0.06559871,-0.2878019,0.40897185,-2.460156,-0.058573678,-0.16407418,0.37982643,-0.26542157,-0.2982127,-0.14690813,-0.48909634,0.2573089,0.19508079,0.38242033,-0.3525629,0.3830126,0.3919946,-0.632661,0.11621192,-0.49175632,-0.17689255,0.17724122,0.28834864,-0.1265419,-0.13299619,-0.24040031,0.3694078,0.71898264,0.35491684,-0.07575223,0.31216547,0.43830007,-0.24223192,0.33164927,-0.082875624,0.5011205,-0.5521828,-0.22524033,0.44969752,-0.36778036,0.6118999,-0.3239383,0.09429167,0.4970979,-0.45703554,-0.703616,-0.3334665,-0.28675425,1.2651392,-0.35447386,-0.71610713,0.06322941,-0.37076572,-0.1843963,-0.05225784,0.5999065,-0.22099003,-0.1204681,-0.57478446,-0.18662442,-0.26111317,0.24257992,-0.03671101,0.1149042,-0.44866377,0.9074837,-0.097644314,0.63035935,0.2977754,0.27518314,0.16363968,-0.30458266,0.19482714,0.5216747,0.69769704,0.16688119,-0.29986757,0.053793445,-0.008576145,-0.30249023,0.20001027,0.9162407,0.5258275,-0.28981176,0.057889573,0.2703351,-0.062472012,0.10145338,-0.11069831,-0.40695965,-0.30548337,-0.059810344,0.50551057,0.8266522,-0.018522121,0.12946454,0.007961443,0.2757912,-0.22387585,-0.44731963,0.31666124,0.72052765,-0.093673915,-0.09660853,0.77144563,0.54091394,-0.21903545,0.5563653,-0.73830855,-0.3279045,0.62620896,0.0070499,-0.45546442,-0.102714725,-0.47008708,-0.039142154,-0.5975625,0.17452934,-0.31703794,-0.5202039,-0.51986206,-0.21659015,-2.5470095,0.09480412,-0.3283404,0.10019317,-0.32398394,-0.26973546,0.34040153,-0.6255094,-0.7113298,0.08884262,0.012365644,0.5803482,-0.2536912,0.13686039,-0.24150303,-0.36613384,-0.36560407,0.37809467,0.31601393,0.3255033,-0.23803157,-0.1592786,-0.07696463,-0.013836856,-0.40324387,-0.20708431,-0.4936219,-0.30932772,-0.06550897,-0.35298777,-0.1289964,0.46096438,-0.41412747,0.033123933,-0.21699014,-0.095716946,-0.19885734,0.053384762,0.2488011,0.35770175,0.1559445,-0.11966442,0.014728101,-0.19527122,0.44864517,0.23577353,0.46188635,0.37961417,-0.19449209,0.033424266,0.40121636,0.5909886,-0.17686193,0.9127988,0.13981919,-0.042953886,0.5051892,-0.2769644,-0.65485513,-0.87775195,-0.17660935,-0.015271164,-0.40542188,-0.57871455,-0.116653234,-0.31063426,-0.9795265,0.34315172,0.16465625,0.37861922,-0.14064763,0.06705849,0.3486897,-0.1941295,-0.08722997,0.033835616,-0.099801116,-0.35576457,-0.38359883,-0.572612,-0.5619779,-0.03531796,1.0423505,-0.07512415,-0.002870092,0.44188717,-0.34812626,0.20771544,0.11529572,0.24172728,-0.11051623,0.41060454,0.3084216,-0.5410644,0.536894,-0.07937108,-0.06346266,-0.6181153,0.09290891,0.66419655,-0.51673454,0.53361416,0.46925122,0.08655153,-0.0988378,-0.74590653,-0.15842925,0.05713107,-0.34408662,0.55885166,0.46450076,-0.47702202,0.40502024,0.08742457,-0.12527587,-0.63395,0.6698138,-0.05777273,-0.22888246,0.044417128,0.46332154,0.10881996,-0.054493062,0.4300882,0.44237524,-0.1989136,0.42915732,0.2820261,-0.09658524,0.2289177,-0.04098204,-0.2556661,-0.7265898,0.20965579,-0.5881228,-0.28888276,0.4033981,-0.03990615,0.120306656,0.06682355,0.4134046,0.49948865,-0.3754096,0.22025622,-0.19610515,-0.34645283,0.44888088,0.4460589,0.63797766,-0.5624136,0.5217939,0.15637079,-0.109675005,0.41077948,0.27228147,0.40148932,-0.050945446,0.30617467,-0.20702632,0.08466132,-0.25264248,0.5091405,0.27643454,0.02199948,0.073602565,-0.16202077,0.40833503,0.1715011,0.015958332,-0.18620968,-0.55894935,0.039073803,-0.035071455,0.08869234,0.5148522,0.13009265,0.20536889,-0.19215547,0.05027418,0.19406033,0.03381374,-0.31625062,-1.221908,0.30186462,0.10196385,0.83003145,0.45623285,0.1350626,-0.056283332,0.41092414,-0.20264731,-0.009191307,0.52734345,0.12096853,-0.37732235,0.39996618,-0.34538335,0.4509997,-0.1471546,0.015177942,0.3277694,0.21497592,0.6765932,0.6785604,-0.19130747,-0.03904068,0.056047477,-0.3138672,-0.12327143,-0.12964925,0.018597424,-0.55343914,-0.30120736,0.6542736,0.37893683,0.3596359,-0.44041947,0.016025709,-0.1928028,-0.16361842,0.16209173,0.00079916074,-0.07694324,-0.17008628,-0.39639318,-0.15969999,0.44867283,-0.37861302,-0.15360276,0.03836208,-0.22873856,0.066320725,0.028180229,0.10266225,-0.0487659,-0.8791081,0.19355941,-0.39857927,-0.3816485,0.29408485,-0.10978068,0.057409942,0.24471451,0.006660397,-0.22508715,0.38869402,0.017325806,0.73263156,0.05770951,-0.07781931,-0.32231152,0.1587031,0.2222604,-0.21564484,0.25925785,-0.1795195,0.32392126,-0.4055589,0.43741804,-0.31437498,-0.18399686,-0.03372339,-0.096758,-0.2022149,0.47539717,-0.11585545,-0.15235224,0.14966908,-0.043453496,-0.38533586,-0.3235486,-0.44463918,0.06273001,-0.08706053,-0.06306049,-0.24475725,-0.14760566,-0.106969245,0.1745668,0.10980061,0.12924555,0.29465312,-0.2339278,-0.41883084,0.10471532,-0.006305089,0.3572319,0.0039145947,-0.052223112,-0.320667,-0.43767932,-0.39863852,0.74607074,-0.2718116,0.21529852,-0.033065695,-0.14303243,0.7077145,0.12804976,1.0615544,-0.06565176,-0.4161282,-0.04250324,0.644002,-0.27642617,-0.123969026,-0.2541354,0.8770965,0.5447135,-0.1213313,-0.19175856,-0.2467087,-0.052673016,0.016503109,-0.37331775,-0.12836696,-0.054053657,-0.5991215,0.016184883,0.1389936,0.34204558,0.008147657,-0.11442803,-0.15596436,0.20400491,0.35919592,0.27473298,-0.41819617,-0.3829912,0.4963441,0.106724925,-0.16481815,0.19563077,-0.31304532,0.3364238,-0.75202966,-0.044435795,-0.7274678,0.040086802,-0.107218266,-0.40636677,0.2376453,0.030654807,0.344717,-0.5861912,-0.22836766,-0.17875552,0.25350952,0.26957506,0.35975164,0.59780073,-0.20577644,-0.15776516,0.03895577,0.5342642,1.038644,-0.2249387,-0.007716491,0.2641714,-0.4866975,-0.576668,-0.12053021,-0.48797697,0.04141305,-0.119218096,-0.32292894,-0.38877127,0.15915471,0.011849339,-0.037296984,0.16053563,-0.7959505,-0.21782812,0.075627916,-0.3149319,-0.29452896,-0.33627522,0.21180129,0.76547635,-0.11856886,-0.28045318,-0.011581751,0.28257042,-0.1257098,-0.5728966,0.4191605,-0.3900894,0.21843912,-0.14155814,-0.4580362,-0.12027106,0.3438112,-0.46258947,0.22585575,0.2824427,-0.31610376,-0.053698704,-0.29403633,0.1367088,0.96635306,-0.031438038,0.065640144,-0.3525612,-0.5417435,-0.8970266,-0.39293554,-0.16995311,0.40720198,-0.08897155,-0.49506298,-0.084222585,-0.46801198,0.015886787,-0.11454297,-0.30301327,0.3831088,0.25212446,0.5368329,-0.19205149,-0.85126156,0.21107887,0.18677571,-0.41229588,-0.18656412,0.54805416,-0.13503002,0.7438192,-0.00027021766,-0.08556089,-0.23136179,-0.65227973,0.5478557,-0.22987276,-0.050724488,-0.67097163,0.054445203,964 -783,0.3582496,-0.2447257,-0.5162185,-0.21936284,-0.18384813,0.15474437,-0.23914358,0.4285823,0.16426262,-0.44222167,-0.23145904,-0.3064537,0.098496914,0.20864843,-0.23019664,-0.47830296,-0.045512266,-0.0007757613,-0.4887409,0.6047729,-0.4011576,0.21083912,-0.00237276,0.39651543,0.21257654,0.22042114,0.15486431,-0.12428197,0.07932679,-0.26839298,-0.18326594,0.236649,-0.5468216,0.19794083,-0.14711672,-0.35669076,0.0730087,-0.47891515,-0.25295225,-0.6888545,0.34654438,-0.93092334,0.47324196,0.17811991,-0.31770432,0.40830386,0.19513883,0.22467826,-0.3529359,-0.110046916,0.0891981,-0.055883408,0.01986592,-0.16954242,-0.12836257,-0.2669078,-0.4796644,-0.06684343,-0.37193662,-0.27332926,-0.3415583,0.06354617,-0.27361786,-0.045059375,0.037271436,0.55593073,-0.44068295,0.10193952,0.24850136,-0.22794448,0.45285624,-0.5914763,-0.20773765,-0.10022569,0.4314895,-0.20145464,-0.1596929,0.12503038,0.3442084,0.32030663,-0.11603253,-0.081691355,-0.087838836,-0.21023569,0.11952551,0.41914126,-0.09678137,-0.47660595,-0.09360372,-0.15284213,0.15076627,0.27534434,0.24089848,-0.2943633,-0.18967634,-0.05915598,-0.34019965,0.5236598,0.36818585,-0.30912235,-0.092947885,0.35993928,0.4787129,0.3091787,-0.10887228,0.021500904,0.090224095,-0.6340793,-0.16632321,0.034453254,-0.24183501,0.61020184,-0.16481811,0.4086959,0.6169488,-0.06703256,0.01883115,0.007979357,-0.019146759,-0.23409447,-0.3981536,-0.26082635,0.26111466,-0.4035541,0.15532674,-0.11470998,0.7852399,0.106218815,-0.5663333,0.25993818,-0.57204944,0.13001654,-0.14598285,0.46629462,0.47213537,0.3787623,0.31129578,0.6845263,-0.47081405,-0.12985009,-0.019011699,-0.3491001,0.014097904,-0.08207394,-0.21293505,-0.4901737,0.03216453,0.047054432,0.16466847,0.10904893,0.33628485,-0.4275122,-0.05115625,0.19227637,0.865021,-0.24824198,-0.051396325,0.67413676,1.0277789,0.84023654,0.101491965,1.0257905,0.06464807,-0.25372493,0.049371563,0.041505877,-0.798482,0.3336701,0.5038688,-0.1664361,0.2638412,-0.018184781,0.017110558,0.2286579,-0.30921438,-0.019599667,-0.1384293,0.10378687,0.11608087,-0.08530033,-0.3238225,-0.19235435,-0.034254473,0.028477816,0.07072211,0.068062454,-0.08615044,0.3160316,0.16074984,1.3276832,-0.18307778,0.11138344,0.13754354,0.39317968,0.26508173,0.012652965,-0.13992125,0.43028787,0.36714506,0.23537041,-0.7095157,0.25642914,-0.10136063,-0.43502042,0.011516828,-0.34304592,-0.112024054,-0.040259995,-0.48996374,-0.014133293,-0.18846741,-0.20973803,0.4475633,-2.9170823,-0.11881015,-0.18314005,0.3828899,-0.18458723,-0.25222412,-0.04260585,-0.354843,0.5068405,0.36079276,0.46795648,-0.5850645,0.2976602,0.52761775,-0.5289731,-0.16842362,-0.5868998,-0.20015463,-0.074908026,0.33139026,-0.010180547,0.059016142,-0.032746386,0.30595973,0.38750523,0.06909592,0.19870742,0.25650543,0.48614928,-0.0069945683,0.65024704,-0.046298113,0.5033511,-0.22437106,-0.13479692,0.23900631,-0.24339423,0.2259703,-0.072105154,0.13489099,0.5012344,-0.4304533,-0.78971916,-0.6927185,-0.24648912,1.3140447,-0.38233906,-0.43184426,0.3046138,-0.27235126,-0.2385706,-0.0054718186,0.46727383,-0.116034865,-0.03724685,-0.8409253,0.1020773,-0.0028998577,0.23917247,0.07271724,-0.188078,-0.45525742,0.7606418,-0.0009806523,0.54403424,0.42683512,0.119450495,-0.24209836,-0.46416077,-0.075318664,0.7904483,0.4190075,0.076216236,-0.26258847,-0.18636917,-0.5109068,0.07751274,0.072885685,0.50071454,0.5552153,0.006901182,0.2420124,0.28554136,0.10398006,0.14329857,-0.21800143,-0.26575404,-0.16113135,-0.13593541,0.49588013,0.54298824,-0.0970178,0.17033452,0.06956141,0.2842638,-0.22413653,-0.52040446,0.59570986,1.0401145,-0.13782512,-0.27821118,0.6015596,0.62235904,-0.16367632,0.30481425,-0.541617,-0.27177247,0.63144577,-0.15606523,-0.5924982,0.19593228,-0.34955344,0.09365565,-0.8986263,0.12052221,-0.35752407,-0.29188567,-0.34898573,-0.021152528,-3.7624147,0.35121602,-0.2681185,-0.21718594,-0.40608323,-0.11181431,0.33323714,-0.5596454,-0.64924055,0.18793894,-0.0087502,0.72507596,-0.11860202,0.095643945,-0.2298598,-0.10661569,-0.1503635,0.09106075,-0.009299379,0.25615555,0.008804862,-0.45081636,-0.054080002,-0.026810113,-0.39837456,0.023487557,-0.39839047,-0.36640218,0.0458678,-0.5388936,-0.26937595,0.5426152,-0.3719552,-0.0026727777,-0.23158646,0.0799266,-0.22931115,0.17457357,0.03664722,0.21414599,-0.08020392,-0.033462305,-0.16472858,-0.36211315,0.2897066,0.023888435,0.09521666,0.018401759,-0.09037355,0.15429728,0.38039792,0.4640237,-0.11130471,0.835914,0.35318464,0.008444102,0.28071433,-0.1479043,-0.2972849,-0.5395987,-0.19636692,-0.034798805,-0.3360077,-0.4215908,-0.07602781,-0.29359773,-0.7200426,0.5757295,0.06492998,0.18200217,-0.02158777,0.25341237,0.46368644,-0.17432489,0.015884105,0.058341715,-0.13210085,-0.6465944,-0.13496715,-0.7031947,-0.2888908,0.0928474,0.5100942,-0.3601921,0.08789123,0.05480693,-0.29301456,0.06308569,0.17518257,-0.058612272,0.2751907,0.61154747,0.004443691,-0.69342697,0.51440203,-0.06835081,-0.1832322,-0.50243765,0.10873294,0.6560122,-0.6113694,0.5373797,0.4539965,-0.06988095,-0.26406887,-0.41093686,-0.23595971,-0.091180556,-0.35981324,0.3796113,0.20926505,-0.8371582,0.33306423,0.19739923,-0.10858075,-0.6974229,0.8366585,-0.030807715,-0.39001146,0.011562123,0.4012019,0.13875905,0.08846448,-0.1326085,0.23554006,-0.27546996,0.1768902,0.17220497,-0.09948404,0.2855955,-0.107731424,0.008105294,-0.76388615,-0.04659535,-0.52852124,-0.28202045,0.30794492,0.057206444,-0.017469142,0.1444124,0.09325531,0.35465083,-0.23716667,0.18336175,-0.069678664,-0.17801784,0.4252835,0.4785898,0.50577825,-0.35001785,0.677699,0.04428804,0.021452487,0.049819726,0.14171508,0.37290698,0.026023673,0.4943927,0.024411472,-0.17111316,0.4524656,0.5574211,0.2328679,0.41475406,0.16730705,0.06450641,0.33393508,0.108881146,0.19582677,-0.09958071,-0.64045215,-0.03149866,-0.37771723,0.074125,0.5172357,0.19320837,0.18944813,-0.025089474,-0.4492682,0.010064183,0.14378174,-0.0019426896,-0.90078,0.33984926,0.21915378,0.7552385,0.54931873,-0.12186343,0.1154325,0.6572398,-0.121642485,0.04972323,0.38843143,0.19078638,-0.5619765,0.6188192,-0.6614476,0.32210082,-0.15470804,-0.050440393,0.05950145,-0.03264869,0.4004045,0.7397938,-0.12087289,0.07376799,0.05367184,-0.40994072,0.2629275,-0.41343036,-0.10831237,-0.4812203,-0.24313515,0.4888878,0.6747036,0.40142104,-0.28828067,0.092715636,0.11072968,-0.15941899,0.0727392,0.1559317,-0.033642825,-0.14494002,-0.77120024,-0.10692819,0.5449088,0.17976093,0.15477291,-0.11297472,-0.28857386,0.32865286,-0.2921273,0.14482754,-0.14079401,-0.74368954,-0.058030963,-0.3911851,-0.48977682,0.32900268,-0.28986305,0.290157,0.24836956,0.015987864,-0.09869385,0.22836417,-0.06787997,0.7710565,0.08713767,-0.14620796,-0.40039307,0.024652123,0.13307196,-0.18864942,-0.039140962,-0.35512954,0.011316364,-0.49122894,0.39531326,0.020292997,-0.22314581,0.03464531,-0.19492985,0.027881883,0.5688857,-0.12780356,-0.031358358,-0.07869392,-0.11537605,-0.19372895,-0.21516183,-0.15253834,0.20902117,0.2033851,0.1424879,-0.21242854,-0.08726455,-0.22585215,0.19508164,-0.039431036,0.53770715,0.40036148,0.020665122,-0.23952898,-0.1851632,0.25700888,0.52121294,-0.021582833,-0.148141,-0.12033514,-0.59515315,-0.19230458,0.22284752,-0.0066650948,0.3606481,0.0886153,-0.11940229,0.7046534,-0.05082155,0.85788566,0.013397134,-0.44333646,0.035006635,0.54846376,0.0070390976,-0.20171905,-0.19782823,0.8312908,0.34967723,-0.13616563,-0.108826436,-0.3263502,0.015649837,0.018566608,-0.1227901,0.0055734445,-0.12830561,-0.50368494,-0.2950195,0.16104467,0.2917288,0.27242175,-0.06055627,0.01812963,0.22876707,-0.08414216,0.39507484,-0.5769628,-0.2592613,0.16702901,0.13670334,-0.00045823248,0.04684971,-0.42962816,0.47046897,-0.54131055,0.1081295,-0.45347378,0.15640329,-0.22573796,-0.18793803,0.16266641,-0.13647279,0.34582636,-0.43199286,-0.37770763,-0.28935054,0.39271286,0.20578612,0.12813273,0.5734126,-0.27143717,0.06997346,0.097141504,0.56679314,0.83969426,-0.12865992,-0.003992007,0.3473207,-0.51124865,-0.5357532,0.20667475,-0.48428413,0.3364065,0.05166115,-0.106371075,-0.42675394,0.24300933,0.24225706,0.1350084,0.042472463,-0.78941435,-0.25105864,0.45387208,-0.18392882,-0.24219278,-0.26674646,-0.044433508,0.44064587,-0.25827816,-0.2848332,0.02643589,0.12643194,-0.05699354,-0.61747044,-0.009349043,-0.3738734,0.30775687,0.14945085,-0.2785691,-0.18045355,0.05861103,-0.45947057,0.37598088,-0.05020626,-0.317754,0.0071745985,-0.25789714,-0.15798184,0.90305865,-0.34902424,0.03278088,-0.39512378,-0.44215077,-0.6628526,-0.24164772,0.59630144,-0.011428759,0.20602857,-0.41633365,0.12726915,-0.090976484,-0.074526034,-0.07696418,-0.27244553,0.49973994,0.16421254,0.54651386,-0.029223157,-0.7372296,0.29578498,-0.04238622,-0.23163532,-0.6440562,0.48157918,-0.104194164,0.6403767,0.036548574,0.08567602,0.22994551,-0.5153,-0.07348229,-0.15025067,-0.15779103,-0.56190044,0.13978729,966 -784,0.6353742,-0.36174712,-0.4481683,-0.16449608,-0.22282885,0.14298008,-0.1060357,0.65150666,0.28518882,-0.42917067,-0.07591847,-0.109771565,0.027858881,0.13873447,-0.09110636,-0.4308337,-0.13636343,-0.046538472,-0.48625645,0.50315213,-0.3696631,0.13299425,-0.22248635,0.37826735,0.37905425,0.29804727,-0.06336038,0.13841937,-0.08943459,-0.12539056,0.008022038,0.24313578,-0.42484474,0.14174801,-0.11709606,-0.28093678,-0.06706479,-0.46994466,-0.47249037,-0.7562813,0.35778812,-0.8325623,0.48387134,-0.0625509,-0.24055916,0.4423693,0.09770764,0.15313068,-0.105393596,-0.14379969,0.20861766,-0.044068728,0.07893722,-0.29761562,-0.19722942,-0.48674664,-0.5021628,-0.14323963,-0.359594,-0.39927483,-0.21145919,0.109260395,-0.35477012,-0.14818856,-0.10517326,0.79614836,-0.44432017,0.1490154,0.20070824,-0.17374884,0.2912432,-0.8095795,-0.24787156,-0.019994358,0.08435109,-0.08577918,-0.12670392,0.24012643,0.2677925,0.21066977,-0.13043216,-0.12979545,-0.3895122,-0.019067105,0.013393129,0.3506355,-0.18785708,-0.4757128,-0.048574008,-0.033522274,0.06758257,0.2522864,0.3882403,-0.19740163,-0.037069224,0.23488416,-0.37078422,0.4887945,0.4779533,-0.27429736,-0.1215548,0.32134193,0.5051932,0.22808653,-0.28956145,-0.2547701,0.0014391404,-0.42180347,-0.1283117,0.094918445,-0.25965458,0.447243,-0.1802624,0.3770261,0.6434367,-0.18572086,0.112635784,0.09483512,0.25042757,-0.09307603,-0.49256065,-0.24313109,0.17631736,-0.44852352,0.22658275,-0.22951628,0.6711145,0.10053134,-0.39350477,0.25045636,-0.51030606,0.07641978,-0.15348527,0.31765762,0.6263946,0.41870227,0.18298875,0.68147236,-0.4016393,-0.0069310847,-0.06932665,-0.20548485,0.08887572,-0.19516732,0.24549752,-0.53360224,-0.13844746,-0.035054795,-0.050527044,0.08356201,0.41024357,-0.45367447,-0.20300652,0.24339716,0.9182631,-0.20218897,-0.06488331,0.69200003,1.1773597,0.9027803,0.07268965,1.0614108,0.1973323,-0.25199828,0.32923552,-0.17118604,-0.5345704,0.3847346,0.4327729,0.017381366,0.20254923,0.026128251,-0.19819817,0.54421973,-0.17734027,0.03735015,-0.060821638,0.12288873,0.31775922,-0.11795959,-0.23584516,-0.22657299,-0.027828097,0.07831519,0.04216755,0.10911668,-0.25066856,0.23539758,-0.037096914,1.5553216,-0.13185081,-0.039829347,0.14272374,0.4723287,0.24108218,-0.21407071,0.17755127,0.36483458,0.33305183,0.29839185,-0.6140246,0.35852733,-0.26526105,-0.52177423,-0.045367327,-0.36124358,-0.08818182,0.018690888,-0.54884005,-0.12388298,-0.19153255,-0.15078512,0.323531,-2.8961425,-0.088882245,-0.1339915,0.3632537,-0.23725174,-0.42591974,0.13708702,-0.3952666,0.3644991,0.40079483,0.4697006,-0.6169369,0.3892977,0.5224834,-0.75621575,-0.026628705,-0.5316929,-0.09043404,-0.09218221,0.26306814,-0.039007597,-0.04562092,0.10615866,0.13560173,0.5052002,-0.01784033,0.17831914,0.37935835,0.4513706,-0.41211727,0.59100163,-0.0966645,0.40819308,-0.33882353,-0.18858227,0.3485796,-0.39920124,0.053922094,-0.14277488,0.18865323,0.54549414,-0.23912045,-0.8921111,-0.6461264,-0.09879257,1.1373564,-0.17580152,-0.61354923,0.22117552,-0.4702587,-0.335103,-0.07215531,0.56830734,0.038477167,-0.09847395,-0.69249654,0.18899938,-0.15658906,0.051368073,-0.025672125,-0.15301666,-0.48255917,0.84570634,0.05177273,0.5714926,0.23801063,0.18563487,-0.40881282,-0.27808526,0.031586643,0.6794589,0.43292242,0.10149189,-0.23214258,-0.003385679,-0.28341132,-0.023301344,0.19639246,0.63064057,0.48436955,-0.018207682,0.17819907,0.3036564,-0.08033248,-0.028748991,-0.1504821,-0.3082046,-0.15724656,-0.066613965,0.41438338,0.5783673,-0.024627833,0.3798083,-0.05910233,0.2684471,-0.22464368,-0.48976594,0.46101123,1.0536649,-0.20803311,-0.46342438,0.4163033,0.3861697,-0.26095942,0.3418737,-0.5307866,-0.19587396,0.4904849,-0.24356055,-0.45615909,0.14459656,-0.33270007,-0.08080807,-0.73336816,0.13211754,-0.4592426,-0.5425166,-0.51952463,-0.30473694,-3.644644,0.25814137,-0.37371212,-0.2404468,-0.27839202,-0.20539095,0.26150805,-0.71112293,-0.46563196,0.23816094,0.0618221,0.72990096,0.019671623,0.058697045,-0.31294104,-0.33958668,-0.24727413,0.24542609,-0.0038898725,0.28795928,-0.034218337,-0.40781006,-0.08329594,0.11696855,-0.49328217,0.033371612,-0.5858965,-0.42255467,-0.15624347,-0.52271533,-0.36702678,0.62077993,-0.17020765,0.08650426,-0.0926222,0.015464809,-0.14688821,0.36696097,0.07490868,0.18636332,0.06868817,-0.15114398,0.15183939,-0.34566095,0.22272435,0.031507578,0.3587348,0.30258977,-0.04028016,0.20517829,0.39358288,0.5482546,0.014577215,0.8952113,0.30074623,-0.09615235,0.38970155,-0.2011852,-0.23237848,-0.55671716,-0.27811533,0.10811683,-0.27219284,-0.3550685,0.0033058112,-0.367342,-0.6113691,0.42421335,0.025091382,0.32357562,0.18518387,0.37545064,0.6920691,-0.23571728,-0.113580815,0.09405189,-0.08419517,-0.52423275,-0.2853371,-0.5745503,-0.5436113,0.18129888,0.62258536,-0.1408456,-0.039279956,0.037111487,-0.19143285,0.068524085,0.1897339,-0.05733865,0.011339582,0.5164926,-0.15257862,-0.56134915,0.37547064,-0.17715663,-0.2189683,-0.53927445,0.39828587,0.58267534,-0.4435101,0.67181784,0.3482245,0.18067744,-0.3962091,-0.40528506,-0.052513056,0.042169742,-0.24729618,0.3967859,0.34873402,-0.98815596,0.27343187,0.3852604,-0.22232796,-0.6937386,0.6714433,-0.05326218,-0.3599502,-0.29633203,0.29856667,0.29434654,-0.017765332,-0.10423013,0.17681037,-0.47093248,0.120103784,0.06801797,-0.0045612226,0.26000267,-0.0025655557,0.0013299172,-0.5804345,0.11399077,-0.32158148,-0.39362603,0.38722187,-0.12404374,0.25276154,0.38482884,0.119761154,0.23933564,-0.12562543,0.12252894,-0.13225985,-0.29139507,0.3258171,0.37884748,0.44443014,-0.44919884,0.49607503,0.011357011,0.016556323,0.28553194,0.19469929,0.35137302,0.2831851,0.4998694,-0.017101673,-0.18537515,0.26154515,0.72203666,0.19726372,0.53317463,0.06519997,-0.13914293,0.107536405,0.020099644,0.15852721,-0.104111895,-0.6180354,0.11343474,-0.18023697,0.19462943,0.42012623,-0.043324288,0.22198258,-0.11690069,-0.3570186,0.0036215198,0.31683654,-0.05488173,-1.1891829,0.42267308,0.25310144,1.1014688,0.30704892,0.010191711,-0.24332994,0.73098874,0.12651482,0.077332824,0.3215063,0.15300551,-0.40582436,0.55546486,-0.7763306,0.3619823,0.03378332,-0.08443473,-0.14708169,-0.0906715,0.30537236,0.6835813,-0.2618221,-0.11868476,0.040838186,-0.50621486,0.33727977,-0.4050565,0.052252114,-0.5149068,-0.26131013,0.5047006,0.5655316,0.3693902,-0.20612107,0.015067222,0.008439536,-0.16837542,0.18118387,0.10091637,-0.015474117,0.06082581,-0.7503075,-0.26714805,0.2914593,-0.018124692,0.3172705,-0.11120571,-0.17673017,0.21697578,-0.085440286,-0.0712088,0.09784278,-0.6110085,0.08006174,-0.3336282,-0.56045747,0.48037514,-0.027695766,0.13917218,0.20126472,0.061088122,-0.17711264,0.3973511,0.056309912,0.8128301,-0.030137558,-0.087009154,-0.50156176,0.0023167317,0.05182167,-0.18351208,0.008654629,-0.27757293,0.14278021,-0.5592914,0.41881165,-0.0069193197,-0.33106253,0.09932284,-0.17648758,0.19304325,0.5643815,-0.23091157,-0.17274936,-0.183712,-0.083619066,-0.19914661,-0.38210014,-0.049574573,0.30022824,-0.062414028,0.1831292,-0.18465842,-0.16084382,-0.048376955,0.39893293,0.013310533,0.40087494,0.43173346,0.07065873,-0.13536304,-0.16098578,0.25681382,0.53771436,-0.056502484,-0.22863773,-0.3193951,-0.67957973,-0.40112412,0.19711448,0.09610688,0.49633953,0.040791743,-0.2416808,0.7791217,-0.21791855,1.0642705,-0.1198283,-0.39473873,0.086213745,0.49175692,-0.03936179,-0.0946804,-0.3145526,0.84015816,0.5346781,-0.015465517,-0.03169882,-0.24519965,-0.051933706,0.19522038,-0.19021851,0.037059896,-0.14797658,-0.7104077,-0.24328658,0.1179221,0.29072422,0.18334085,-0.07243866,0.13548651,0.39085463,0.016646005,0.3064717,-0.50489384,-0.23616996,0.19609584,0.21903451,-0.13071679,0.23043552,-0.50239295,0.3469192,-0.57256395,0.17450362,-0.33674127,0.17864285,-0.16868693,-0.18778585,0.24709791,-0.0656722,0.39229056,-0.24985217,-0.3654682,-0.22501773,0.37341765,0.18268713,0.09276439,0.5249306,-0.13619058,0.018483533,0.07788401,0.6872091,0.9920811,-0.04770346,-0.0077545503,0.22064263,-0.5608198,-0.6917867,0.32273644,-0.20380059,0.26670808,0.13534158,0.028864415,-0.45014817,0.23862165,0.21250135,0.066355094,-0.024783991,-0.6805718,-0.26865494,0.2881601,-0.41094986,-0.12219005,-0.23546861,0.09014322,0.3822553,-0.24954346,-0.13410114,0.0036681523,0.49056214,-0.032861657,-0.29197142,0.024417754,-0.5010437,0.3469399,0.014433161,-0.3068949,-0.2077695,-0.0898305,-0.48823473,0.29198915,-0.07550426,-0.3247475,-0.0024979848,-0.1728487,-0.094880566,0.7466061,-0.09793584,0.067000434,-0.5576262,-0.49558628,-0.6117688,-0.38713947,0.082920626,0.005325079,-0.006300032,-0.63719976,0.04155533,-0.20620361,-0.04435784,-0.21887805,-0.36135367,0.43912983,0.097451694,0.55934197,-0.084594406,-0.73592705,0.1725323,0.17457914,-0.08790602,-0.6078316,0.5249709,-0.19771081,0.7356832,-0.0929546,0.21520832,0.13830255,-0.33267385,-0.062230572,-0.26786518,-0.33037615,-0.6599087,0.038686972,980 -785,0.5776879,-0.2192989,-0.5475892,-0.15719675,-0.15818483,0.21227771,-0.16512355,0.34703457,-0.033438675,-0.6349197,-0.0840909,-0.24210832,0.02840418,0.3603784,-0.09213572,-0.5249039,-0.017308775,0.35206243,-0.46873933,0.50432324,-0.3240885,0.40957838,0.18274887,0.46337146,0.019330906,0.30908138,0.23143981,-0.06722856,-0.2233773,-0.2339361,-0.20474198,0.33335093,-0.5168894,0.15835282,-0.06302418,-0.5103885,0.024406565,-0.3596026,-0.09817072,-0.6986066,0.1848072,-0.9234899,0.3560793,0.041723944,-0.39119023,0.05858266,-0.001159723,0.19530994,-0.18996763,-0.03065903,0.22099338,-0.3358868,-0.20738673,-0.43422258,-0.100208715,-0.305363,-0.54414773,-0.032499075,-0.5467176,-0.1946384,-0.1827787,0.1708236,-0.19287308,-0.0016513237,-0.1396586,0.30591917,-0.46374238,-0.23281981,0.20512946,-0.2517936,0.20078167,-0.6482235,-0.19267216,-0.18763593,0.25225884,-0.33659217,-0.2663057,0.12498228,0.13160937,0.5670695,-0.061840698,-0.08294605,-0.5392631,0.029510017,0.002735945,0.5469153,-0.17457622,-0.26160216,-0.056083936,0.059676435,0.13764678,0.121130615,0.073562324,-0.22375861,-0.032595664,-0.14537835,-0.054119322,0.15674685,0.5226748,-0.32163298,-0.27488774,0.27564067,0.49504465,-0.02995481,-0.17452055,-0.047062222,-0.04359301,-0.39626485,-0.065109774,0.18041712,-0.14255139,0.65614045,0.08369282,0.19496639,0.5768992,-0.026105078,-0.054011934,-0.10252021,0.07304426,-0.13590859,-0.12832372,-0.13044712,0.48718527,-0.25489357,-0.0024878155,-0.37426996,0.73467565,0.082692176,-0.7316987,0.30713925,-0.36753288,-0.0063421866,-0.06611207,0.5615995,0.496006,0.38594598,0.09476941,0.67065597,-0.42082456,0.1437939,-0.1643625,-0.14085102,-0.1242429,-0.14625895,-0.038230997,-0.5248587,0.018670687,-0.072396316,-0.18120183,0.13947044,0.50117445,-0.677795,0.02342303,0.19159912,0.6062316,-0.36182302,-0.15887278,0.83976895,1.0607045,0.72558665,0.060594168,1.0494044,0.3471251,-0.3492048,0.024507906,-0.33034083,-0.58647835,0.10727199,0.31658766,0.040819682,0.2989236,0.18353364,0.011076189,0.47412932,-0.39370823,0.04436638,-0.2813449,0.03415019,-0.069508664,0.075087614,-0.5134749,-0.08998302,-0.047745917,-0.045040943,0.14809804,0.11428456,-0.30030364,0.47312513,0.120907895,1.8652155,-0.12715493,0.03814685,0.1739068,0.1666964,0.18053651,-0.009903452,-0.11257928,0.19407304,0.24138965,-0.015770784,-0.33733103,0.047694214,-0.26208344,-0.6353622,-0.21301787,-0.19947706,0.053147767,-0.049875114,-0.3602675,-0.1251,0.18367489,-0.44621548,0.29263568,-2.3087015,-0.015133033,-0.08203415,0.45983785,-0.19648212,-0.44051808,-0.13155004,-0.34351963,0.31670904,0.4676124,0.4141912,-0.534923,0.29678223,0.30646235,-0.40852973,-0.20049301,-0.5548478,-0.019935388,-0.0985574,0.35001674,0.036321525,-0.3018969,-0.0316635,-0.13988528,0.4452601,-0.2536709,-0.09172387,0.43688217,0.31521356,0.24946152,0.3337736,0.1591225,0.5887145,-0.2717536,-0.332843,0.47624367,-0.3535291,0.22107887,0.10262482,0.16812323,0.30157137,-0.40432182,-0.76553875,-0.73878056,-0.24321121,1.1862344,-0.038182683,-0.5162241,0.08759578,-0.109675296,-0.45441532,0.014087017,0.45023963,-0.14207612,-0.047511704,-0.8882821,-0.092622,-0.20786236,0.45932326,0.091556974,0.103623666,-0.62999445,0.6777435,-0.20782876,0.4485063,0.37107608,0.39108327,-0.2577519,-0.49077946,0.0023345351,1.137422,0.22660388,0.13408154,-0.22885889,-0.29530817,-0.3166254,0.028544988,0.17500614,0.5426379,0.76779705,0.13403887,0.006781069,0.30355126,0.056720372,-0.11819236,-0.23167178,-0.3270962,-0.15552542,0.15538114,0.63728863,0.4416899,0.0687728,0.60862106,-0.19679824,0.47397804,-0.08044919,-0.3753412,0.36928895,0.84744763,-0.12878753,-0.4018939,0.64405185,0.5047268,-0.3195306,0.43106553,-0.66860604,-0.43715352,0.17176369,-0.19863388,-0.37324625,0.27509788,-0.20826563,0.27542296,-0.9515683,0.2598355,-0.17162672,-0.45017415,-0.82806724,-0.20375457,-2.7051744,0.31860366,-0.035654258,-0.18236487,0.18749824,-0.2498231,0.066902585,-0.78164613,-0.38540396,0.10702271,0.05986353,0.70633024,0.024120651,0.20183006,-0.22390555,-0.39320734,0.1273238,0.38080153,0.23957351,0.21511522,-0.010310026,-0.40271333,0.1099658,-0.22220364,-0.19482954,-0.14148971,-0.6923545,-0.65818363,-0.105513826,-0.6645389,-0.031740002,0.6513444,-0.5934235,0.050795123,-0.276518,0.0093425,-0.061518326,0.21944875,0.14449954,0.3408253,0.22941653,-0.1861946,-0.06608717,-0.33072656,0.19649996,0.09475744,0.08893684,0.5660268,-0.21133533,0.38039768,0.48118275,0.5131104,0.004170468,0.7564617,0.64334077,-0.052898195,0.098247,-0.32855543,-0.305642,-0.7308537,-0.38523865,-0.148051,-0.56047523,-0.40708202,-0.033820346,-0.3953194,-0.7909426,0.7383543,-0.13352135,-0.122744665,0.19504414,0.5341672,0.5825285,-0.15660477,-0.18779217,-0.18055321,0.011071306,-0.31238782,-0.47556192,-0.5747722,-0.4940737,-0.10645223,1.1540761,-0.03177995,0.09439449,0.21805161,-0.10833906,-0.050444033,0.14904514,0.025662733,0.10339391,0.49337733,-0.025759725,-0.56193835,0.3225593,-0.1177262,-0.15800661,-0.48558462,0.26680842,0.45689452,-0.8218479,0.39361617,0.28404066,0.2287239,0.038214967,-0.48478478,-0.1937541,0.11414925,-0.23866668,0.3641324,0.04385278,-0.46594837,0.3746088,0.19788629,-0.035571393,-0.82116324,0.28131798,-0.009830307,-0.51323843,-0.022606455,0.32165006,-0.02568553,-0.06635989,-0.40500826,0.051455263,-0.22883826,0.12211655,0.3672643,-0.12540123,0.22488159,-0.4702695,-0.17468883,-0.8058004,0.27023557,-0.42158487,-0.33491054,0.31403553,0.04651651,-0.002700306,0.31595692,0.1347937,0.46465954,-0.39699763,-0.0064370083,-0.1386823,-0.15892641,0.36847395,0.36654657,0.2761666,-0.5357806,0.5145889,-0.0290615,-0.1140783,-0.34318766,-0.09911592,0.6424618,-0.016038455,0.21666087,0.04987561,-0.14801225,0.33110237,0.7104005,0.14997149,0.5978428,0.021435035,-0.23254275,0.1042558,0.038540144,0.17159009,-0.11779185,-0.39973348,0.2505363,0.024489125,0.036786143,0.4068093,0.09042632,0.5203927,-0.115427345,-0.3241495,0.25812733,0.19485845,0.017853044,-0.91210777,0.28256708,0.020100502,0.7951084,0.40489367,0.0005358228,0.10261022,0.55444103,-0.46514493,0.14621976,0.066882886,-0.30306807,-0.36442265,0.4021689,-0.6685269,0.28927442,-0.029513946,0.0045978473,0.016756978,-0.28151035,0.36884847,0.86978287,-0.1913093,0.23423958,-0.10077473,-0.021824049,-0.046293046,-0.2257294,0.052289035,-0.6013679,-0.3901893,0.79456127,0.41608253,0.5975083,-0.14825676,0.021928208,0.19035545,-0.19118793,0.15088679,0.08150624,0.18952039,0.13844106,-0.3853565,-0.22313818,0.5884604,0.17588042,0.1038038,0.14120442,-0.35807243,0.38112825,0.11728173,-0.098639965,-0.15478656,-0.48678732,0.03896801,-0.59661716,-0.39395747,0.38464645,0.0038669934,0.2546371,0.24042648,0.043150313,-0.37708429,0.41612548,0.35728252,0.9759255,0.17673437,-0.1528078,-0.33826143,0.34091708,0.33159631,-0.21526337,-0.103594795,-0.3282308,0.27676514,-0.73524106,0.2746299,-0.031848844,-0.45137754,0.04756262,-0.08021854,0.008300694,0.417297,-0.025777917,-0.15651552,0.13884519,-0.004231123,-0.214701,-0.027447939,-0.278643,0.115893,0.0049562147,-0.13875426,-0.15039629,0.09648323,-0.14569898,0.4289121,0.108245336,0.3259819,0.4629603,0.031155236,-0.48275504,0.05688739,0.21415046,0.546143,-0.10920607,-0.1631627,-0.21027118,-0.50557286,-0.4231256,0.27409667,-0.11803767,0.27375218,0.37766662,-0.27964145,0.7389618,0.06459284,1.1427362,-0.031733092,-0.40273854,0.03918991,0.45814222,0.029752888,-0.07067542,-0.41705638,1.1397427,0.64163107,-0.016686091,-0.049369328,-0.30122584,-0.11365982,0.24898261,-0.11962508,-0.09709144,-0.19617817,-0.76166576,-0.49088138,0.2118837,0.31177285,0.102598265,-0.056758247,0.30132625,0.20270322,-0.016425371,0.11511206,-0.35764366,-0.21325547,0.2553271,0.15832922,-0.103388675,0.10103853,-0.39753926,0.4429552,-0.62862754,0.046747565,-0.41410843,0.11405922,0.041387603,-0.21991825,0.19524346,0.035190627,0.3107538,-0.5233345,-0.25930575,-0.2548743,0.48447734,0.20104705,0.19702078,0.51400083,-0.1999909,0.11077852,0.057262234,0.3475668,1.1751908,-0.360133,0.13836312,0.3816781,-0.18400195,-0.42628366,0.21291174,-0.31757048,0.100440174,-0.16369207,-0.3344782,-0.5105034,0.31606165,0.24983208,-0.11441834,-0.006589037,-0.41432887,0.023494968,0.40797287,-0.3771916,-0.15946859,-0.18408765,0.24359336,0.5155746,-0.19042397,-0.3687345,0.12723556,0.24954261,-0.28792733,-0.50826234,-0.113189034,-0.39836755,0.36861277,0.25266138,-0.36383644,-0.10441494,-0.079597786,-0.36269352,0.10824597,0.5012529,-0.34543547,-0.037721835,-0.32976088,-0.104841165,1.0058019,0.019127287,0.12925288,-0.54791415,-0.4457927,-0.87701726,-0.48021448,0.45649704,0.15106402,0.013618322,-0.56596184,0.11273723,-0.3277381,-0.2842834,0.012884025,-0.37892348,0.36264628,0.24592683,0.5446614,-0.22454856,-0.91108286,0.18365978,0.17375173,-0.2875117,-0.58517534,0.34698275,-0.0003563991,0.72092575,0.008556062,0.1154723,0.52316964,-0.74601257,-0.04569694,-0.19844946,-0.09464249,-0.6855554,-0.017109655,998 -786,0.73479146,-0.272064,-0.34382078,-0.150361,-0.2869007,0.2271132,-0.013941988,0.5474164,0.20127398,-0.61993295,-0.39537477,-0.37784037,0.023185229,0.06332916,-0.30668348,-0.54260594,-0.08343447,0.15269195,-0.14866133,0.5603099,-0.45283648,0.523786,0.13582921,0.3401443,0.2475972,0.1713989,0.16439858,-0.18880089,-0.43511474,-0.39128718,-0.13509043,0.2566466,-0.6151062,0.16663757,-0.25643858,-0.53278214,0.080939025,-0.54107314,-0.42387602,-0.6782873,0.28108862,-1.1004357,0.50365955,0.10855621,-0.20281328,0.3046251,-0.11363074,0.04787731,-0.15687007,0.21040714,0.17587756,-0.2536101,0.11538315,-0.40287283,-0.40308055,-0.4866757,-0.5946118,0.0051488453,-0.34347787,-0.21314888,-0.21681662,0.058229584,-0.15878649,-0.15110113,-0.02725078,0.22220469,-0.5385589,0.09795836,-0.018769741,-0.044631302,0.28936398,-0.53577685,-0.2759837,-0.2879994,0.005938057,-0.34765565,-0.1253899,0.20914598,0.342679,0.40302768,-0.06114729,-0.0815557,-0.32748398,0.07144725,0.29756463,0.4989121,-0.15001231,-0.57699925,-0.17114998,-0.080198415,0.44454908,0.4501792,0.42094037,-0.22372377,0.024538843,-0.062350124,-0.4284846,0.41506943,0.6210192,-0.35166636,-0.20982093,0.28754535,0.38276526,0.26550296,-0.057995293,0.08793882,-0.053212594,-0.36106893,-0.22448511,0.15908866,-0.37501428,0.70458364,-0.15468271,0.088795,0.74685365,-0.34916124,0.20905112,0.10391829,0.111218445,-0.21679205,-0.22876419,-0.27470157,0.2836974,-0.42162874,0.2045743,-0.30839708,0.9454829,0.24529548,-0.62040925,0.33980212,-0.6149437,0.07432351,-0.15936701,0.5548701,0.31211212,0.56143695,0.31220886,0.67934006,-0.5955498,-0.08437866,-0.004972709,-0.3262687,0.030888328,-0.1928979,-0.14145704,-0.32051328,0.027780915,0.004967764,-0.18794644,0.011884476,0.61112565,-0.5386768,0.05133745,0.06258712,0.79512817,-0.3870031,-0.017852202,0.90528995,1.1174265,0.9890866,0.10929612,1.4417349,0.4263176,-0.26940468,-0.077674694,-0.1464445,-0.8616102,0.20717208,0.38322642,-0.8889575,0.38129926,0.20755476,-0.023234174,0.08207343,-0.43533888,-0.027242826,-0.27725124,0.07950673,0.01264964,-0.2065777,-0.4242196,-0.28024134,-0.25529233,0.07628758,-0.00343058,0.23476909,-0.3160272,0.27153054,0.2512296,1.6572732,-0.0070498437,-0.07435859,-0.0816127,0.5805657,0.26180208,0.13481976,0.11300092,0.4472761,0.2980821,0.061835453,-0.5166604,-0.0065963217,0.009517923,-0.6477854,-0.072367944,-0.23033321,-0.118351854,-0.1104291,-0.4072918,-0.15427874,-0.0849654,-0.24848413,0.53195757,-2.1255288,-0.03587826,0.00689845,0.4696802,-0.15308648,-0.38955823,0.07001782,-0.33043122,0.38912883,0.34705445,0.42512563,-0.9140749,0.3299671,0.7054665,-0.271501,-0.2517644,-0.53856224,-0.11549282,-0.09366352,0.27255973,-0.07804351,0.04338487,0.12907542,-0.12621984,0.52807194,0.088544585,0.2242387,0.1744811,0.5135762,-0.017302513,0.37290072,0.108211935,0.49406755,-0.10210195,-0.13263933,0.40848747,-0.42061862,0.362437,-0.031175384,0.10183501,0.44838914,-0.52590066,-0.67334086,-0.66421884,-0.54802704,1.1064576,-0.18785764,-0.40535927,0.24803585,-0.11692653,-0.43736246,-0.28869024,0.43971753,-0.2541917,-0.0335764,-0.72856635,-0.06440199,-0.048841257,0.0981822,-0.020673908,0.22334307,-0.2826561,0.7573853,-0.03917437,0.39928058,0.40848252,0.1830556,-0.23704512,-0.64814764,0.05961038,1.0859007,0.4778253,0.35483515,-0.29919645,-0.17417534,-0.22435696,-0.11242825,0.1962695,0.51014423,0.8231377,-0.08582586,0.020351574,0.29652622,0.13239998,-0.08498138,-0.1614265,-0.39465716,-0.049593538,-0.062095124,0.60249686,0.60285187,-0.337281,0.45381558,-0.28224388,0.5114022,-0.1744513,-0.425572,0.42917338,1.1201215,-0.13805923,-0.08515689,0.6527408,0.6092451,-0.56606096,0.47020665,-0.85859895,-0.24024649,0.39851525,-0.06591135,-0.43000197,0.30874634,-0.23032297,0.15822425,-0.934653,0.6096955,-0.021947077,-0.3212397,-0.56206447,-0.16244046,-2.7711604,0.10082698,-0.19909985,-0.2936443,-0.19107132,-0.35110614,0.10918387,-0.57495403,-0.70500594,0.04660195,-0.030894814,0.37324575,0.11770179,0.32213143,-0.14475568,-0.24977905,-0.25585696,0.1949172,0.01601398,0.33755228,-0.25064895,-0.52382046,-0.15834644,-0.18044157,-0.29671633,-0.048592374,-0.5762411,-0.5699141,-0.111762285,-0.50180715,-0.29833776,0.6534043,-0.4676725,0.027828922,-0.23405248,-0.14706384,-0.41581425,0.27053797,0.1828758,0.013212184,-0.053389106,-0.03438425,-0.027074764,-0.27779174,0.3236531,0.11194349,0.20276652,0.41272926,-0.28042483,0.060516685,0.38564298,0.65130126,-0.0023902468,0.85968786,0.1962141,-0.2565122,0.33851138,-0.32597294,-0.2793361,-0.7842739,-0.38445878,-0.12798156,-0.5132747,-0.6206035,-0.13129961,-0.41017047,-0.72375137,0.575988,-0.080450214,0.2980257,0.038039345,0.21541756,0.6145912,-0.04225864,-0.16531521,0.17692685,-0.16114114,-0.5771683,-0.35086665,-0.6784952,-0.21452378,0.2863309,0.8920302,0.015633151,-0.16000436,0.2850968,-0.19679673,0.06650388,-0.09570179,-0.20952363,-0.20115788,0.47153914,0.025194049,-0.67071176,0.52408296,0.20489502,-0.3103073,-0.4264703,0.08539343,0.8098471,-0.8388358,0.38970837,0.44915244,0.04589195,0.052464068,-0.39655796,-0.24992071,-0.17149341,-0.23076223,0.41779396,0.37029555,-0.65194535,0.3068119,0.51482385,-0.27042785,-0.7145872,0.6976239,-0.17115493,-0.1366754,0.020811727,0.33055958,0.13710356,-0.03609172,-0.11228513,0.3204575,-0.58939797,0.37619147,0.3895488,0.011170581,0.11795465,-0.07846389,-0.16316651,-0.99716455,0.30572778,-0.41520444,-0.49881124,0.23705971,0.036063243,-0.12997197,0.310981,0.3748395,0.3455249,-0.4485278,0.22155072,-0.05437729,-0.22288054,0.33804235,0.41620567,0.50723714,-0.36741892,0.65950024,-0.021126708,-0.0867427,-0.12017479,0.22814588,0.34797385,0.21581869,0.14189278,0.36365333,-0.30156037,0.32441702,0.73491555,0.31738535,0.53463715,0.25964746,-0.12518954,0.3668301,0.20718579,0.4524406,0.0027983587,-0.49338642,0.059577566,-0.09161507,0.14356105,0.31628653,0.10054326,0.27101016,-0.18379517,-0.26330528,0.028903587,0.4385867,-0.1294793,-1.2272719,0.09164548,0.06590355,0.74342614,0.61834437,-0.15148942,0.22252,0.4000505,-0.23262765,0.14439677,0.52653724,0.10178453,-0.63899654,0.54705733,-0.570303,0.26808578,-0.19727968,0.06605271,-0.12901144,-0.0056700804,0.42881155,0.8050565,-0.06174086,0.055060532,-0.09646853,-0.25572237,0.0054813325,-0.60654885,0.05314515,-0.36391667,-0.30176952,0.7045726,0.34716716,0.3955277,-0.17301746,0.067800544,-0.06212535,-0.22506885,0.27148557,0.1895883,0.11450377,0.0007616803,-0.6498225,-0.24960862,0.60101956,-0.2355141,0.025643164,-0.029455205,-0.35174856,0.28697228,-0.2643489,-0.1691354,0.11669403,-0.8296531,-0.088115655,-0.32962462,-0.5576532,0.24155302,0.18613161,0.13722011,0.23610991,-0.0707872,-0.3236956,0.08694842,0.54244405,0.6639194,0.011629532,-0.25646946,-0.3713621,0.28791675,0.2795308,-0.33323935,-0.13443094,0.049017325,-0.02030616,-0.53384745,0.5047334,0.015904153,-0.2998682,0.0152772665,-0.11981132,-0.083364934,0.54608476,-0.057751793,-0.3264493,0.13593374,-0.10069394,-0.19762027,-0.04818907,-0.20221107,0.20011032,0.21190043,-0.22670364,-0.06943161,-0.08067375,-0.07953454,0.24235143,-0.04591887,0.45649385,0.4265554,0.044699077,-0.44541702,-0.16211258,0.057038862,0.50256854,-0.06788025,-0.086851954,-0.03461044,-0.5603728,-0.2636893,0.03243662,-0.18525158,0.28802267,0.19371128,-0.46978053,0.816235,0.11910665,1.1180058,0.09206755,-0.35825288,-0.023711642,0.57503146,-0.016954875,-0.15039556,-0.38036394,1.237287,0.5264466,-0.2076592,-0.19976074,-0.30536178,-0.13537283,0.28497508,-0.24236496,-0.12183625,0.01055558,-0.7557089,-0.18327336,0.22062899,0.37238148,0.08267372,0.009820933,0.20846218,0.38941026,0.13957298,0.35267672,-0.44289193,-0.27894226,0.33926585,0.14065382,-0.058255076,-0.0069698915,-0.3711383,0.338088,-0.5723165,0.089104,-0.4121544,0.107029974,-0.19519718,-0.35272333,0.096327394,-0.06859676,0.33429933,-0.42277083,-0.4970341,-0.37863386,0.3146756,-0.021635205,0.20024876,0.4502547,-0.31212482,0.1700614,-0.09175094,0.4843928,1.3536233,0.011980474,-0.0077422857,0.43168047,-0.6128896,-0.68981504,0.41350973,-0.31154904,0.10845655,-0.09915784,-0.36486837,-0.603795,0.25184438,0.21086152,-0.005387999,0.24136156,-0.5545159,-0.08298615,0.50230324,-0.33559194,-0.27297404,-0.29403725,0.22065485,0.75595045,-0.42046115,-0.3134471,0.21420361,0.22493215,-0.45555532,-0.4324007,-0.1570559,-0.33877102,0.5031981,0.0035860986,-0.32933304,-0.014487301,-0.08763528,-0.36499846,0.059824374,0.21390784,-0.39521098,0.1631279,-0.41094744,0.04881059,0.9584009,-0.07836267,-0.065453194,-0.64459485,-0.5606194,-0.90626335,-0.516882,0.44256878,0.31426445,0.059246745,-0.40782574,0.12746805,-0.06628731,-0.08524867,-0.010015746,-0.35232353,0.5381887,0.24285157,0.5284238,-0.15290187,-0.8480812,0.2162621,0.20592932,-0.114728,-0.7334385,0.5817689,-0.17717369,0.75908226,0.10791707,0.035647407,0.24209774,-0.64769864,0.12698786,-0.12089991,-0.18558608,-0.6833115,0.20444894,5 -787,0.28517482,-0.3357441,-0.33735025,-0.037421416,-0.064576186,-0.079691134,-0.15000872,0.54744583,0.17414606,-0.21998398,-0.21176982,-0.22565763,0.0026701961,0.4626577,-0.19889508,-0.6738418,-0.21403277,0.09778335,-0.22980666,0.80088645,-0.38029003,0.102313764,-0.06016661,0.46789622,0.3249747,0.15945677,0.29155985,-0.007909782,-0.3397847,-0.2592214,-0.05367503,0.19724973,-0.59980786,0.19262116,-0.12973338,-0.2945762,0.0072931596,-0.5789712,-0.37959817,-0.78065795,0.41049913,-0.7955811,0.23741919,0.109918945,-0.13638669,0.50734115,0.106591344,0.13503017,-0.2865424,-0.21871053,0.09010967,-0.13466169,0.04907809,-0.18270318,-0.19224901,-0.1598035,-0.6937487,0.10087916,-0.24211352,-0.30483449,-0.32931992,0.15014213,-0.4776063,-0.017047843,-0.11542312,0.69940823,-0.45301244,0.010274229,0.12940578,-0.18145078,0.150789,-0.6267257,-0.34315392,-0.044767052,0.09151408,-0.066150784,-0.020682132,0.32086417,0.1523737,0.3035214,-0.12294373,-0.100692846,-0.614291,-0.056135103,0.22872026,0.5870423,-0.14246707,-0.78405786,-0.024472931,-0.046850383,-0.15259741,0.087974764,0.12378732,-0.17897268,-0.22344537,-0.029343048,-0.19864082,0.34503886,0.4489086,-0.22795106,-0.42031893,0.35356593,0.355806,0.30046543,-0.01622452,-0.3181536,-0.042106282,-0.7082316,-0.04197063,0.011177893,-0.15973395,0.7024103,-0.109999515,0.30395594,0.6354511,-0.07055923,-0.073364235,-0.091208644,-0.0026930596,0.016492536,-0.41773915,-0.112493634,0.3245249,-0.04480912,0.35422978,-0.14213888,0.913851,0.035411425,-0.7837593,0.49404845,-0.51207876,0.24384512,0.10357339,0.3997389,0.45644474,0.37711897,0.5641021,0.6069382,-0.31865066,-0.02707311,-0.09965205,-0.21249492,-0.10727233,-0.1189487,-0.00590988,-0.36717725,0.093848884,0.06906726,-0.09801977,0.14666274,0.45154837,-0.35831735,0.053162232,0.22629003,0.9038878,-0.14974982,-0.07408815,0.8073419,1.0274328,1.1965008,-0.0059129507,1.1078811,0.18395166,-0.1890949,0.23820925,-0.16312347,-0.8237265,0.19529307,0.37346315,0.23593287,0.20235054,0.007941944,-0.12467984,0.440796,-0.3940116,0.11143994,-0.2158209,0.18528838,0.4279441,-0.076329835,-0.43883872,-0.34830502,-0.12607533,0.09495159,-0.039595228,0.19768016,-0.12342936,0.33045477,-0.07728406,1.960576,-0.05407523,0.12357682,0.24058239,0.6058844,0.1314659,-0.06630239,0.090046324,0.32325727,0.17354596,0.078790575,-0.66975445,0.1312098,-0.24932325,-0.6195327,-0.013475671,-0.34205115,-0.19280829,-0.032968063,-0.5163029,-0.18553446,-0.2176194,-0.25711644,0.56163716,-2.959863,-0.038304698,-0.07293639,0.20170294,-0.3122835,-0.38278064,0.022967806,-0.47823653,0.5477197,0.42980328,0.58913016,-0.6189467,0.17521578,0.38447592,-0.4948738,-0.166117,-0.6056924,-0.03587496,-0.07117779,0.56611294,0.013762251,0.030181967,0.1204285,0.03365031,0.6057518,0.2181548,0.019092055,0.27854255,0.3328168,-0.08605859,0.43407163,-0.13786216,0.3652124,-0.19573314,-0.07332585,0.29407874,-0.5724781,0.42726007,-0.22138925,0.17279196,0.39312646,-0.36139426,-0.9527963,-0.5218952,-0.29653183,1.1156696,-0.18639903,-0.50532055,0.35914555,-0.20118429,0.037874777,-0.23734277,0.48924842,-0.27983525,-0.16902979,-0.72710425,0.065604575,-0.16008143,0.17536409,0.03100723,-0.09190428,-0.48255923,0.7786897,-0.010959762,0.51604104,0.4353387,0.13495089,-0.36127627,-0.45226955,0.026415078,0.59784395,0.28132382,0.1446648,-0.27296495,-0.19777878,-0.07828526,-0.25755396,0.039961662,0.5240306,0.46190807,-0.0518233,0.10782698,0.30636898,-0.0017203888,0.012749909,-0.051253695,-0.08581895,-0.19951086,0.022984704,0.63980836,0.9540834,-0.32286462,0.14674579,-0.14709438,0.22057463,-0.12881462,-0.20970546,0.47806492,0.9443677,0.0076948605,-0.24177003,0.45235744,0.68175143,-0.29307505,0.38665882,-0.34470046,-0.15339933,0.582816,-0.24442913,-0.4510359,0.09077132,-0.320173,-0.2030937,-0.7310884,0.36410734,-0.2114244,-0.3076663,-0.6912393,-0.21777599,-3.3683288,0.08591744,-0.32074866,-0.40563098,-0.15623869,-0.15382595,-0.12999131,-0.7044746,-0.58005756,0.13462245,0.09094918,0.49611878,-0.12685852,0.1905831,-0.22662778,-0.11798782,-0.3817347,0.09058297,-0.0698827,0.3933587,0.07459852,-0.30332413,-0.09543118,-0.22623806,-0.5838269,0.1353722,-0.44833723,-0.32233348,-0.120778024,-0.564967,-0.27923468,0.5853206,-0.45076606,-0.020470275,-0.19893561,-0.0955923,-0.3005978,0.38788223,0.2494144,0.24261802,0.019588368,-0.079850756,0.09457014,-0.14922398,0.33993617,0.021787962,0.34875083,0.6072655,-0.25986448,0.2227105,0.41684636,0.6359034,-0.13451692,0.820563,0.5349696,0.022776062,0.23708707,-0.3360125,-0.1751272,-0.548762,-0.24888015,0.22563948,-0.25362554,-0.5520292,-0.16603206,-0.36365637,-0.7864027,0.36406603,-0.12811036,0.17729008,0.02952441,0.011362642,0.47852483,-0.24831752,-0.012358949,0.036778472,0.2018948,-0.4948721,-0.36285737,-0.60132813,-0.49247566,0.055982172,0.78913754,-0.025818074,-0.26717836,0.080648996,-0.314507,-0.18542303,0.08125173,-0.08811557,0.10113692,0.2804164,0.27843842,-0.72479725,0.67155284,0.042396456,-0.1428713,-0.43127504,0.16032992,0.4146177,-0.39597082,0.6706764,0.3212616,0.12662604,0.021518042,-0.5173349,-0.35636666,-0.19153851,0.024169276,0.23780727,0.2418616,-0.6659304,0.42581904,0.16257201,-0.2988052,-0.8268401,0.2773357,-0.002681346,-0.33752856,-0.17500359,0.2645967,0.13927487,0.01798804,-0.0980129,0.27543935,-0.5129979,0.26223576,0.12982316,0.0835085,0.28921404,-0.1052422,-0.111973524,-0.6650587,0.10550526,-0.30473682,-0.3316588,0.20905568,0.19548507,0.06565238,-0.018024156,0.1094766,0.2682074,-0.30412602,0.16439296,-0.029277757,-0.111655645,0.30565122,0.41493902,0.6471118,-0.5641823,0.59987193,0.026415586,0.0874038,0.15684007,0.026940107,0.26600403,0.09878385,0.28016487,-0.023778215,-0.18091102,0.11882496,0.62770253,0.23733921,0.494023,0.057118,-0.2450325,0.6318326,0.07903533,0.24367678,-0.014282942,-0.6340497,0.26230606,-0.3029449,0.022257993,0.4880503,0.10988426,0.28912494,-0.09040172,-0.24456792,0.034255706,0.3929368,-0.16575639,-1.0154355,0.17280586,0.030718377,0.8655985,0.7516429,-0.09071437,0.1947639,0.75741154,-0.07852522,0.0786346,0.3466227,0.030652596,-0.6778517,0.6641314,-0.52845454,0.50314003,-0.03579696,-0.027266381,-0.0017177612,0.08968399,0.37566128,0.39357826,-0.20406418,-0.120546676,-0.1306345,-0.3460327,-0.0038395673,-0.4437728,0.286773,-0.38450205,-0.2422527,0.57066244,0.6963673,0.29531857,-0.16601415,0.030732328,0.113781214,-0.011447159,0.08356478,0.042068888,0.019450808,0.11798501,-0.82510024,-0.17724913,0.4955049,-0.3374195,0.20871247,-0.06860451,-0.25473753,0.28913918,-0.28972927,-0.32353207,-0.04731959,-0.76507753,0.2367713,-0.19644113,-0.50593036,0.2776368,-0.14956819,0.40953505,0.15763867,0.019744538,-0.42304578,0.11836904,0.14568654,0.9537594,-0.029766133,-0.11169273,-0.4022604,-0.05638343,0.09026244,-0.13484572,-0.12689586,-0.08552309,-0.18910229,-0.4429946,0.5011073,-0.020296214,-0.09732089,0.057206154,-0.16118897,-0.058298197,0.68945426,-0.1409364,-0.10698128,-0.29102418,-0.17234279,-0.17296094,-0.03992774,-0.012545968,0.346475,0.23155986,-0.08367094,-0.03539096,-0.03537332,-0.023044435,0.45642772,-0.064974524,0.31333014,0.17438494,0.100829504,-0.39257994,-0.16959123,0.006224195,0.53887457,0.20286842,-0.09932095,-0.26898864,-0.42874837,-0.32977417,0.23980665,-0.12776244,0.39066705,0.17576264,-0.3501095,0.49114648,0.1051923,1.1127274,0.10284534,-0.3640975,0.2766042,0.5047901,0.039417997,0.018343912,-0.26959231,0.8801248,0.3591622,-0.12844642,-0.099811316,-0.30644605,-0.0030759715,0.1542558,-0.2419884,-0.014000843,-0.025084222,-0.5151043,-0.1017434,0.15079303,0.14474978,0.20849794,-0.29980788,-0.17833793,0.22732763,0.13197272,0.47897515,-0.25354406,-0.2642651,0.41351172,0.12057862,0.13563606,-0.037772093,-0.44717205,0.39376667,-0.49083266,0.16243176,-0.2814135,0.18863273,-0.34586346,-0.10466883,0.28933907,0.08293822,0.46273425,-0.31510854,-0.3678999,-0.2800896,0.42121303,0.15651257,0.21472706,0.4674984,-0.20421283,0.04047293,-0.008999117,0.62336236,0.91239005,-0.21238534,0.034147914,0.37724254,-0.32596195,-0.60435575,0.33271024,-0.2029795,0.17126326,-0.15105735,-0.08031867,-0.8273413,0.1067788,0.22915296,0.027614126,0.036557425,-0.63148093,-0.37873104,0.29202357,-0.33147767,-0.22437535,-0.42041337,-0.011490047,0.7695735,-0.21900159,-0.37690043,0.113405965,0.086563654,-0.121917665,-0.52547026,0.108664714,-0.3769153,0.29222456,0.043217074,-0.3686843,-0.32545146,0.14729445,-0.42313674,0.06169967,-0.005702535,-0.31205398,0.00017693639,-0.4099799,-0.021141179,1.2235616,-0.24577475,0.44832766,-0.69344234,-0.46467507,-0.91322255,-0.3891457,0.74360496,-0.15630178,0.023591975,-0.6337623,-0.09652168,-0.051676977,-0.28927037,-0.14793152,-0.43017808,0.41751012,0.1627198,0.31484544,-0.18876536,-0.47543907,0.11146548,0.1425666,-0.050111305,-0.45981118,0.3972009,0.13992186,0.82506114,0.019870244,0.053685248,0.18189563,-0.4492089,0.055316553,-0.16487902,-0.31162533,-0.41864052,0.35399953,13 -788,0.66803795,-0.21863663,-0.5954934,-0.125796,-0.34637442,0.22472791,-0.1349184,0.69802994,0.21663089,-0.45793596,-0.17700827,-0.032248598,-0.20949024,0.3971896,-0.20616944,-0.74362606,-0.028875014,0.12881891,-0.31123868,0.8966057,-0.1551644,0.31997108,-0.2777755,0.46152994,0.2699401,0.307992,0.19480197,0.13096446,-0.11153064,-0.27543485,0.057391047,0.19748461,-0.7451058,0.23516959,-0.19209611,-0.47750917,-0.062429756,-0.38694692,-0.346186,-0.82662815,0.49945155,-0.92010957,0.6232254,0.15288283,-0.27069244,0.34217048,0.11628006,0.070651636,-0.13923961,-0.018565783,0.03384305,-0.16445841,0.1399465,-0.25103042,-0.27877322,-0.7612032,-0.70226234,-0.18885326,-0.4515631,-0.18541634,-0.07525989,0.22773902,-0.39739403,-0.02847918,-0.22165686,0.43542287,-0.41639695,-0.0070792288,0.21555497,-0.25732052,-0.07008156,-0.8125663,-0.43478677,-0.14966296,-0.007701099,0.12404894,-0.046865713,0.5504989,0.11964995,0.29388776,0.088661276,-0.24953537,-0.29489002,-0.23413043,0.12381513,0.36940265,-0.2529217,-0.57246876,-0.19270074,-0.09638772,0.47805488,0.17474622,0.31552517,0.01693357,0.01860909,-0.19366352,-0.16260734,0.50189185,0.57197154,-0.3233116,-0.22061302,0.37162766,0.3224479,0.21517813,-0.28187892,-0.13504456,-0.009957875,-0.36050224,-0.10846937,0.040091883,-0.31323949,0.73859316,-0.13940333,0.20855188,0.5874138,-0.24995363,0.113264896,-0.016759183,0.18069784,-0.10120324,-0.4417955,-0.37078318,0.3479224,-0.45884076,0.2701824,-0.39948237,0.7418797,0.29787755,-0.40037617,0.2775563,-0.61100405,0.08747215,0.027932672,0.45783707,0.53798336,0.5562369,0.08333078,0.75608367,-0.24515994,0.060912233,0.11008755,-0.06672748,-0.029494695,-0.5255621,0.11874154,-0.47864416,0.32868248,0.023133108,0.0060657016,-0.04596257,0.5957623,-0.49287185,-0.2945311,0.3136048,0.9599144,-0.261215,0.05574515,0.8185801,1.3430818,1.1326967,-0.13712241,1.1067439,0.10785058,-0.3303248,-0.09704768,-0.021028638,-0.85141104,0.16477357,0.3174518,-0.2683507,0.6136768,0.08505217,-0.2295603,0.20219336,-0.40261933,-0.12850262,-0.14073974,0.15366612,0.23301156,-0.09234631,-0.566457,-0.15015955,-0.05167818,-0.11843455,0.21756661,0.40492257,-0.2321366,0.4300401,-0.13640629,1.0818694,-0.15849037,0.12061635,0.18868446,0.83716756,0.28504854,0.07245911,0.45010749,0.49093655,0.31187287,0.103534736,-0.5479307,0.215374,-0.5029475,-0.5839281,-0.10969975,-0.35552302,-0.21449845,0.1133343,-0.27781367,-0.4123484,-0.11011207,0.07796854,0.21688326,-2.513428,-0.097556055,-0.26600328,0.2914041,-0.36980543,-0.22371222,-0.026470095,-0.5783058,0.4433249,0.35645422,0.3941675,-0.57441264,0.32257333,0.5334907,-0.51046205,0.10737028,-0.43757498,-0.058429226,-0.09212592,0.6763517,-0.17506225,0.016381884,0.13062818,0.20655914,0.49999595,0.24272804,0.27702188,0.14836954,0.3514825,-0.12732548,0.1822728,-0.08674288,0.52558726,-0.3964428,-0.064681,0.3910673,-0.5860426,0.4037323,-0.28593108,0.050226253,0.6936495,-0.44712067,-0.61371756,-0.53779507,0.14896365,1.0786911,-0.31480756,-0.824282,0.08855908,-0.26381543,-0.1433777,-0.21055473,0.33618245,-0.13328719,0.061257083,-0.62437373,0.0774527,-0.029337445,0.14319079,0.061701026,0.13743214,-0.40221623,0.7306211,0.14794534,0.5949743,0.17244045,0.31243184,-0.253325,-0.5155752,0.027620858,0.743639,0.5324987,0.058456093,-0.2595959,-0.018960714,-0.13385269,-0.33671358,0.1594223,0.74013805,0.52568954,-0.124938585,0.09908696,0.37904572,0.122880846,0.28681716,-0.07808277,-0.4352294,-0.36117396,0.05398597,0.55095214,0.684299,-0.37502024,0.25173157,-0.10418305,0.4043131,-0.15220304,-0.50241977,0.5623162,1.1874789,-0.22335692,-0.29689646,0.81987685,0.6062846,-0.67268115,0.5883295,-0.8018877,-0.2733883,0.6214016,-0.25950083,-0.4397936,-0.008499113,-0.33212766,0.0051113144,-0.79037875,0.33926892,-0.32973877,-0.20837663,-0.66730326,-0.26301882,-2.5910637,0.084674336,-0.3811395,-0.16518289,-0.45107684,-0.06858234,0.12685327,-0.81386644,-0.63569134,0.24662615,0.12696603,0.5809972,-0.10048928,0.20321862,-0.32343817,-0.26353988,-0.46863684,0.3230615,0.06406683,0.16780533,-0.10464827,-0.39172348,-0.0049041263,0.05129959,-0.3267952,0.036855906,-0.53662306,-0.19528514,-0.114338666,-0.5600473,-0.022357186,0.6905077,-0.14891581,0.011690135,-0.21863806,0.16396914,-0.20322466,0.011013604,-0.15139717,0.26642153,0.13476913,-0.18612947,0.32654986,-0.36772752,0.55674034,0.065484636,0.53493017,0.36972246,-0.26702598,-0.060118895,0.3850789,0.46635914,0.18142855,0.7967472,0.24097745,-0.13853712,0.4919047,-0.3570087,-0.37294593,-0.75454116,-0.28999642,0.18205146,-0.28077307,-0.61442167,0.09909443,-0.39906228,-0.9617324,0.5932961,-0.16073711,0.63249373,-0.046813652,0.26012912,0.55976194,-0.25877032,0.12091889,0.07710589,-0.03618301,-0.50151396,-0.2634643,-0.70385617,-0.2795074,0.1646922,0.76042724,-0.35726163,-0.24444528,0.1722786,-0.45024207,0.048101474,0.23147714,0.050322924,-0.26477662,0.5345954,0.2056355,-0.7312786,0.64520454,0.023327827,-0.039260063,-0.42718986,0.2668046,0.5316525,-0.86051345,0.5197672,0.5053451,-0.007809038,-0.45722005,-0.5896156,-0.1426167,0.071632825,-0.0767489,0.3233727,0.29537714,-0.68765944,0.2555689,0.16856991,-0.41426802,-0.65074915,0.6668022,-0.159638,-0.22082533,-0.18558986,0.48069847,0.21475947,-0.10716925,-0.09944042,0.350947,-0.41917157,0.21518214,0.07660329,-0.13138777,0.28460273,0.08754108,-0.18451184,-0.8496588,0.42392087,-0.64041144,-0.31610194,0.510606,0.027663613,-0.027165672,0.18315278,0.30877283,0.35675725,-0.33300683,0.3201219,-0.013857134,-0.40833628,0.56914395,0.2487384,0.6477554,-0.55310386,0.7233908,0.06080407,-0.068750896,0.3430545,0.21152222,0.34701857,0.28488913,0.7360837,0.24222179,-0.21331763,0.09041583,0.76391643,0.35634807,0.53181964,0.2645323,-0.20426734,0.27188894,-0.007982678,0.16283166,-0.103860974,-0.60998946,-0.28701273,-0.13942754,0.08437282,0.44152424,0.12482045,0.44443956,-0.047403287,-0.18289489,0.017943835,0.17749012,-0.07134109,-1.2962797,0.13843141,0.25830755,1.0047402,0.507908,0.022543589,-0.034636907,0.6423181,-0.14437722,0.027657678,0.5896521,0.17780967,-0.5210566,0.5286527,-0.3191637,0.3808516,-0.106423475,0.05632171,0.09663477,0.11057752,0.41944394,0.6731582,-0.24486046,-0.009108772,0.022282697,-0.5185832,0.14861952,-0.32414153,0.17232098,-0.42800805,-0.15712096,0.4817792,0.55628484,0.19337298,-0.20948492,-0.030805035,0.1355876,-0.05356586,0.30589226,0.13095458,0.015147656,-0.07306831,-0.6170378,-0.23307562,0.531116,-0.2598834,0.037569303,-0.04621118,-0.42253777,0.30944932,-0.115950964,0.011702764,0.09872975,-0.8300331,0.27275178,-0.007982726,-0.50329393,0.5881416,0.07542261,0.03896028,0.20111574,0.002039044,-0.29250923,0.09279444,0.082306236,0.59416556,-0.20949475,-0.23457634,-0.6546956,-0.16586448,0.05662803,-0.24792464,0.4315982,-0.11681304,0.15869369,-0.19229262,0.58753103,-0.010609533,0.040520016,-0.30736586,-0.24409938,-0.12048578,0.4657775,0.0069086254,-0.06731791,0.02507171,-0.058975402,-0.46331677,-0.20710975,-0.26990935,0.0571042,0.12568918,-0.035277408,-0.32672364,-0.219616,0.039896697,0.36781755,-0.01710861,0.23128456,0.42102256,0.102971755,-0.45989385,-0.08695904,0.32389554,0.44487333,-0.036103293,-0.07913446,-0.16673177,-0.7098115,-0.36565578,0.414198,-0.19538724,0.26421458,0.094645835,-0.32967964,0.8880939,0.06916133,1.211946,-0.13712026,-0.55537695,0.040902864,0.6427579,-0.10112039,-0.08382393,-0.37350282,1.186359,0.65804553,-0.16399579,-0.15210295,-0.4597137,-0.0029697816,0.11752387,-0.32766482,-0.15510003,0.0037796907,-0.5212544,-0.27594146,0.13694675,0.4096315,0.25148073,-0.1562979,-0.004098306,0.356563,0.41643262,0.39103493,-0.64245015,-0.53112274,0.27107364,0.06884941,0.024950242,0.23522316,-0.40399444,0.200437,-0.6681695,0.2539233,-0.35727584,0.0062358924,-0.23034006,-0.42924657,0.109335005,0.032520626,0.41451764,-0.39867875,-0.5301822,-0.19432636,0.3411183,0.08114185,0.1986206,0.43588528,-0.3359425,0.062281277,-0.0074247173,0.64197576,1.0380868,0.0705148,-0.07803584,0.08499733,-0.6388891,-1.0310092,0.19086532,-0.41630864,0.37929192,-0.20140028,-0.29608077,-0.85540074,0.33961606,0.07543143,-0.26244962,0.12268016,-0.68123597,-0.31389457,0.13044508,-0.32400313,-0.2663403,-0.3220589,0.081332944,0.7600662,-0.29313186,-0.14479254,0.008597185,0.35845664,-0.26589456,-0.766329,-0.113583006,-0.50762063,0.32142484,0.036950085,-0.20588098,-0.18016808,0.0552074,-0.5255651,0.3740851,0.2207578,-0.41869447,-0.11816306,-0.3510429,0.08247219,0.7744458,-0.15184905,0.042015474,-0.5666605,-0.5793637,-0.8958114,-0.7075642,0.18978328,0.16452152,0.08085489,-0.77662104,0.113624394,-0.20965713,-0.16194905,-0.14915557,-0.39672145,0.37641108,0.18422185,0.44900712,-0.012999207,-0.9030678,0.25608477,0.20578568,-0.037783105,-0.5926682,0.2712504,-0.25557017,1.1040407,0.13496196,0.067908034,0.08932149,-0.5233297,0.08346394,-0.20478709,-0.15403463,-0.6550849,0.14035149,45 -789,0.50238615,-0.26940906,-0.41880393,-0.23677891,-0.371515,-0.051980834,-0.14154199,0.5841127,0.35998037,-0.39449906,-0.1833356,-0.04780041,-0.040969256,0.5882514,-0.18796568,-0.38911977,-0.23201434,0.25734714,-0.5858237,0.5821874,-0.5057402,0.2669569,-0.0056962953,0.673515,0.4375939,0.23232989,0.12203447,0.07519526,-0.028764017,-0.46822596,0.04850949,0.0266178,-0.62161857,0.021891894,-0.2922974,-0.56846184,-0.06884002,-0.48921585,-0.5145613,-0.9626743,0.5417133,-0.8617995,0.568548,-0.16423069,-0.23468529,-0.0041394173,0.30300435,0.3696077,-0.13421047,-0.13816644,0.1500189,-0.22564703,-0.067331545,-0.24283527,-0.13238661,-0.32820904,-0.68655324,-0.19931078,-0.27772447,-0.10618927,-0.48802152,0.15153636,-0.47557512,0.103373386,-0.084589094,0.52692324,-0.39025518,0.16935039,0.07933373,-0.25766507,0.21444333,-0.58703595,-0.33013853,-0.1724943,0.1932232,0.101392984,-0.27890623,0.5574805,0.28317583,0.30271813,0.091923684,-0.22891031,-0.45540157,-0.008744776,-0.16347216,0.59008735,-0.10370574,-0.6392819,-0.17182846,-0.039542872,0.45675626,0.22458094,0.17768677,-0.19529735,0.06303061,-0.0034592152,-0.22603828,0.8747366,0.61058956,-0.059326347,-0.3075455,0.24529134,0.4156649,0.34623507,-0.17138337,-0.08482685,0.03904577,-0.5866983,-0.24562229,-0.23387194,-0.1958371,0.4162034,-0.08197514,0.29808196,0.7275238,-0.4136083,0.09411395,0.048270296,0.1731988,-0.19252189,-0.37028214,-0.52084774,0.3551263,-0.47814968,0.20235157,-0.35630643,0.93944246,0.09652094,-0.6140148,0.36634883,-0.5750508,0.07792994,-0.034076232,0.5442216,0.6741443,0.47884706,0.5024507,0.6000194,-0.21164507,0.10933278,0.09439453,-0.36062387,0.21000572,-0.2938198,0.18544865,-0.4426806,0.10411588,-0.18686731,-0.12886079,-0.026789024,0.6454278,-0.581825,-0.18892269,0.14542156,0.7112084,-0.2249953,0.212386,0.9181452,1.1436743,1.0857334,-0.008165941,1.2482734,0.27881953,-0.24489982,-0.0054027312,-0.10187898,-0.79780596,0.1913309,0.29248607,-0.78418565,0.3401886,0.07312885,-0.042862315,0.19791043,-0.54451245,-0.22891428,0.03254293,0.54737544,0.20258087,-0.27700508,-0.40278903,-0.35426387,0.0024853647,0.038160574,0.35991478,0.25128016,-0.32570413,0.4413043,0.08570481,1.582264,-0.25875553,0.0676997,0.019748868,0.797102,0.26272774,-0.1641041,0.06376796,0.18277448,0.29765382,-0.0592453,-0.5443031,0.14947571,-0.22053863,-0.22453994,-0.18033512,-0.40512407,-0.1658869,-0.01532713,-0.014789681,-0.39288136,-0.03020895,-0.20195962,0.35077175,-2.3964474,-0.110195555,-0.1358226,0.30865264,-0.25982693,-0.3233016,-0.04591517,-0.7010517,0.5239818,0.11596318,0.57280254,-0.7539225,0.2700702,0.9218382,-0.85882115,-0.06972713,-0.4846438,-0.17978065,-0.14051254,0.46711072,0.045691356,-0.2520732,-0.23909359,0.20209374,0.45972314,0.4147904,0.056455355,0.5053316,0.6370951,-0.31013685,0.80662936,-0.10065208,0.7440013,-0.3325279,-0.19634481,0.50412756,-0.4436039,0.03858632,-0.64076364,0.09547588,0.85335135,-0.37954494,-0.968631,-0.5334337,0.07182238,1.048426,-0.281069,-0.54225737,0.18731289,-0.49643353,-0.18835855,0.069570534,0.5360781,-0.28911072,-0.10534438,-0.7371986,-0.15022083,-0.12141817,0.26395535,0.10941473,-0.064505816,-0.47399423,0.6440641,0.02352721,0.5470278,0.087889455,0.1321308,-0.46006092,-0.36099717,0.20810924,0.7830186,0.3223358,0.102328,-0.2857794,-0.043486133,-0.37846628,-0.18716876,-0.16305993,0.71019095,0.7291918,-0.15191084,0.088446416,0.19589932,-0.12713422,-0.039389875,-0.20413578,-0.3910055,-0.2786188,-0.18972486,0.58488244,0.8927098,-0.25545195,0.3627111,-0.0044559785,0.3005445,-0.084228955,-0.49162388,0.7813473,0.8783825,-0.106108785,-0.2906593,0.7343626,0.39940155,-0.40006194,0.54001915,-0.64405537,-0.2387482,0.59234744,-0.12305608,-0.47798762,0.061793447,-0.25660717,-0.12098161,-0.63664323,0.20026578,-0.4013938,-0.4062437,-0.6037192,-0.12848513,-2.4455347,0.2002031,-0.030404193,-0.23489381,-0.21894442,-0.23035413,0.25752792,-0.5021402,-0.8040874,0.30123535,0.16745217,0.8791259,-0.07186816,0.002678762,-0.20289774,-0.4454778,-0.5108289,0.13267916,0.048592526,0.4310732,0.1488024,-0.50572383,-0.12379981,0.0063427836,-0.48129487,0.11227709,-0.48698935,-0.5235023,-0.10041374,-0.5406477,-0.2598717,0.7913951,-0.27518487,0.061569616,-0.2332194,-0.029371167,-0.09791559,0.21318829,-0.06628119,0.09289199,0.16684079,-0.16179165,0.2380415,-0.023967827,0.4461298,-0.06850795,0.3679526,-0.017920265,-0.0646556,0.06135383,0.31483695,1.0043999,-0.266386,1.2940083,0.30717012,-0.105437994,0.105266385,-0.16294509,-0.48609385,-0.60051477,-0.202843,0.35888818,-0.45069098,-0.16020541,-0.08615771,-0.5206639,-0.84107256,0.78090495,0.28180894,0.22324865,-0.015196796,0.17898794,0.4805561,-0.08859751,0.10023469,-0.070799075,-0.17853464,-0.63611823,-0.048279244,-0.74888325,-0.31512353,0.0979609,0.9939406,-0.32929313,-0.06424392,0.19796896,-0.48308346,0.15090652,0.07464015,-0.04537916,0.04485162,0.7101118,0.16437803,-0.56261,0.32242918,-0.12526302,0.11384198,-0.7479052,0.28260177,0.557905,-0.64934206,0.5580979,0.22177427,-0.01573622,-0.36154342,-0.5283387,-0.25102103,-0.09368237,-0.10992971,0.44053802,0.2507541,-0.78505754,0.41427338,0.044721942,-0.37265548,-0.729942,0.46446648,-0.023262039,-0.2896249,-0.31792915,0.34584,0.24239571,0.10162014,-0.20594734,0.25514933,-0.31898618,0.34269747,-0.064379014,-0.018308856,0.19207503,-0.22956721,-0.2759785,-0.8397499,0.21469481,-0.38487062,-0.5283731,0.30308905,-0.015677074,0.19616133,0.25258088,0.37015095,0.29913178,-0.3395283,0.11687072,-0.24397856,-0.3164684,0.52646464,0.36305276,0.57713836,-0.47226548,0.6697011,0.1684256,-0.27591574,0.16204071,-0.32608375,0.41069666,-0.00023137529,0.45402578,0.1351149,-0.33271602,0.25037372,1.0317019,0.11542976,0.24609448,0.082422115,-0.14669634,0.17196178,0.17019944,0.29907584,0.08778894,-0.7229144,0.11716507,-0.4204165,0.06279971,0.6155521,0.19964366,0.25511593,0.05536982,-0.46441033,-0.080302514,0.12291318,-0.2242947,-1.652482,0.33666834,0.2064523,0.9643933,0.41039896,-0.0030645505,-0.007109523,0.76704407,0.012649226,0.14152525,0.4703786,0.16541262,-0.20418252,0.54476166,-0.5823913,0.48618117,0.05566268,-0.008910261,0.11811327,0.089029826,0.4059488,0.75372165,-0.24899189,0.009699765,-0.08484001,-0.23349464,0.05171774,-0.41529465,-0.11157601,-0.42548513,-0.38629985,0.71121097,0.4825691,0.33422422,-0.14447851,0.08480757,-0.029834822,-0.11583123,-0.04705998,0.044115614,-0.16746302,0.07096261,-0.42210022,0.024272198,0.43678263,-0.06245047,0.10684627,-0.13862027,-0.18509561,0.15209804,-0.25514996,-0.015239379,-0.07984132,-0.9157884,-0.1723832,-0.23943269,-0.40113953,0.42496622,0.13474202,0.14442147,0.2094187,0.11409563,0.14511132,0.39433387,0.2091552,1.0099036,0.100174524,-0.040732954,-0.3195443,0.15954162,0.07647718,-0.35787773,0.19394828,-0.31821838,0.08031418,-0.49266586,0.655406,-0.104865454,-0.3472322,-0.03543042,-0.18566509,0.14978147,0.54703754,-0.20724791,-0.029230228,-0.24459714,-0.11960641,-0.108858615,-0.41243228,-0.30356246,0.21464562,0.19796653,0.015522018,-0.22167552,-0.119434476,-0.19873019,0.41774035,-0.03813501,0.3359129,0.38064292,0.24586678,-0.20278911,-0.12402841,0.13554516,0.9054521,-0.06036134,-0.2873133,-0.39284483,-0.4990095,-0.4049244,0.45061776,-0.06490499,0.3449174,0.10682312,-0.34242737,0.83368444,0.24694689,1.0029243,-0.06507364,-0.57920307,0.12639478,0.59941024,-0.0679202,-0.08542082,-0.54095954,0.9008708,0.17580342,-0.18965693,-0.095254324,-0.46162423,0.085434295,0.41012207,-0.28010237,0.028145919,-0.09256989,-0.6801707,-0.32928038,0.27493247,0.2592179,0.0135711385,-0.15073839,0.17510505,0.39810833,0.22959568,0.5427241,-0.5351717,-0.32438624,0.28738245,0.24603643,-0.07407854,0.2159798,-0.5302603,0.20682208,-0.40967456,0.15985756,-0.6024845,0.18568508,-0.25868022,-0.3432893,0.20008647,0.21635556,0.36951837,-0.45900366,-0.4993693,-0.17692284,0.41376483,0.15635829,0.16153401,0.5255948,-0.32928908,0.02610527,0.06260996,0.6599081,1.0030966,-0.008546904,0.04560508,0.30098134,-0.41527793,-0.5289734,0.3256653,-0.38085148,0.16655403,0.074670605,-0.2203058,-0.6310683,0.23498625,0.074517906,0.045736223,0.263809,-0.6740878,-0.48253104,0.4094689,-0.27491686,-0.14902459,-0.3952353,0.011920117,0.5742615,-0.20132823,-0.39162782,0.13871044,0.34634185,-0.057337243,-0.68746156,-0.22769551,-0.52013993,0.402336,-0.042810295,-0.3338566,-0.3222368,-0.16618271,-0.67202586,0.2321245,0.033902794,-0.47589254,0.07326971,-0.31934053,0.039579645,1.1623653,-0.3781133,0.17477256,-0.60011786,-0.34672093,-0.8149417,-0.23133159,0.3710024,0.018767968,-0.058927298,-0.8410141,-0.04880252,-0.28562805,-0.044671018,-0.0443136,-0.2876372,0.30821037,0.1791637,0.5533449,-0.06006524,-0.9497261,0.18203568,0.06511535,-0.4839803,-0.68929785,0.79812604,-0.02020295,0.9690652,-0.046592217,0.1076386,-0.048846077,-0.42858818,0.19316894,-0.31306508,-0.18565027,-0.51895386,0.4068599,52 -790,0.43715465,-0.24216722,-0.7398023,-0.16327138,-0.37106812,0.19870126,-0.32975903,0.29291037,0.45109197,-0.5252662,-0.051711816,-0.19084032,0.03476955,0.4124922,-0.17409225,-0.8486654,0.02433155,0.25949275,-0.6968455,0.7738132,-0.27056962,0.48803732,0.21621692,0.27545404,0.03613757,0.15490519,0.3451264,-0.29869533,-0.37067306,0.087345876,-0.00855808,-0.14587502,-0.37912166,0.24307506,-0.037852433,-0.23166835,0.2760925,-0.2975926,-0.34272185,-0.7764464,0.42639554,-0.8396506,0.6731863,-0.076973766,-0.23196892,0.119291656,-0.06836288,0.21575552,-0.19869171,0.06702695,0.120703764,-0.41643688,-0.5082314,-0.3223071,-0.27937457,-0.64873546,-0.62026334,-0.15331194,-0.64928645,0.021972923,-0.4318408,0.2027394,-0.3218834,-0.10622602,-0.016156971,0.49105677,-0.38565412,-0.11079997,0.1321022,-0.30347016,0.24059777,-0.8477125,-0.15569365,-0.031294864,0.24851198,0.20907311,-0.15080677,0.53383464,0.34054533,0.5007127,0.19289003,-0.31002346,-0.37377894,-0.12698694,0.3831196,0.3761247,-0.10762002,-0.55310035,-0.08959045,-0.100097805,0.37419152,-0.08016158,0.101112425,-0.32529283,0.07280621,0.07710599,-0.22889926,0.4912621,0.5093588,-0.21676867,0.16100088,0.4174058,0.40833697,0.14022298,-0.10569966,-0.10743564,-0.17122047,-0.52101725,-0.19979377,0.05611877,-0.22810094,0.7755154,-0.2137665,0.16221209,0.54029626,-0.07076109,-0.19158214,0.13283348,0.13789006,0.02216427,0.10568383,-0.09789518,0.36032942,-0.58349,-0.17666884,-0.42780367,0.62904674,0.155889,-0.7878122,0.35468373,-0.45818344,0.09659282,-0.11870428,0.6625287,0.7571068,0.7743523,-0.0044440925,1.008103,-0.47286713,0.13966355,0.01529377,-0.48074758,0.2090438,-0.11277881,0.29443836,-0.5619287,-0.10203865,0.09089091,-0.21706285,-0.0032332938,0.66514117,-0.30123612,-0.13200723,-0.020996107,0.8746898,-0.39289436,-0.20460589,0.5797062,1.1302563,0.7529113,0.066258125,1.43924,0.27064493,-0.45806864,-0.16172251,-0.2442772,-0.8375428,0.3165829,0.27389094,0.052568544,0.46645534,0.09621039,-0.044628058,0.4042375,-0.39343813,-0.11821136,-0.080182604,0.42424843,-0.05200617,-0.22952783,-0.443693,-0.17007808,-0.06655013,0.033022314,0.30656612,0.38620445,-0.023842266,0.51702386,-0.009424557,1.3598348,-0.04378836,0.0452688,-0.026723152,0.32143128,0.2795452,0.091682434,-0.1435615,0.35679388,0.37296793,-0.09027394,-0.62851703,-0.016643971,-0.40578023,-0.60921556,-0.30023026,-0.15026732,0.18009426,0.0078826295,-0.11270393,-0.28908336,0.0776173,-0.569406,0.31809768,-2.0698566,-0.19937159,-0.07712328,0.40244666,-0.13457878,-0.20939438,-0.23783521,-0.5718505,0.46939453,0.37471175,0.52960104,-0.5725422,0.31272975,0.6177729,-0.6390312,-0.237221,-0.44676766,0.029005425,-0.0029561769,0.38094223,-0.13041689,-0.48107925,0.06001799,0.07837799,0.546689,-0.03986669,0.06334696,0.45935702,0.43621543,-0.030469676,0.3556848,-0.204251,0.5405356,-0.26650453,-0.016078664,0.20725703,-0.28760847,0.24771757,-0.46491042,0.23846322,0.5502421,-0.44076428,-0.74646956,-0.36250058,0.028522486,1.2043008,-0.43322852,-0.5984662,0.22592111,0.25976324,-0.17066891,0.22028221,0.5106206,-0.18678473,0.034787606,-0.6654466,0.097703815,0.12383231,0.20034425,0.13965312,0.11229583,-0.44691488,0.5832366,0.026264722,0.5223901,0.40496215,0.36989462,-0.18555216,-0.43635607,0.3262861,0.9543348,0.18917787,0.16407843,-0.3016627,0.025576582,-0.40145817,-0.21285428,-0.055625085,0.40465376,0.89563084,-0.1048921,0.057172477,0.26036152,-0.14854287,0.08531212,0.028064495,-0.58533674,-0.24649303,-0.0013527138,0.42117724,0.8647898,-0.084014,0.42676213,-0.019114727,0.3596867,-0.13598238,-0.5389583,0.9536508,1.050999,-0.3023843,-0.12998152,0.6932034,0.16336653,-0.3022789,0.6824875,-0.71949786,-0.54564816,0.58825356,-0.09547905,-0.46354163,0.14433272,-0.3880987,0.085408844,-1.076549,0.41187432,-0.17565636,-0.41063228,-0.5959303,0.10456789,-3.1632805,0.11630296,-0.4109234,-0.09503964,-0.1715213,0.09519658,0.14230092,-0.5810148,-0.54151255,0.19731502,0.27873352,0.7143771,-0.029515183,0.061674833,-0.21026815,-0.31770355,-0.08174429,0.14191456,-0.050192893,0.19772618,0.012089153,-0.6949732,0.09275923,-0.32281855,-0.31930128,0.11202681,-0.40095642,-0.23235364,-0.3483437,-0.66008633,-0.4387703,0.69729334,-0.50456303,0.044878554,-0.25907955,0.17841922,0.13280953,0.28361943,-0.29268116,0.097581826,0.28977713,-0.12334174,0.13818176,-0.2318964,0.17688923,0.1687278,0.21048649,0.53963023,0.009815837,-0.047227368,0.6621485,0.72605544,-0.04112761,0.7338404,0.52194154,-0.013219204,0.19108824,-0.40233073,-0.2617859,-0.7175767,-0.43518594,-0.10854644,-0.41205832,-0.48424387,-0.01806282,-0.5087965,-0.9219672,0.6273308,0.10856632,0.08641106,0.17357723,0.3122622,0.447888,-0.29221603,-0.008597751,-0.189852,-0.2629985,-0.48204803,-0.29621157,-0.81392497,-0.51500887,0.0353222,0.9948109,-0.13012905,-0.18382698,0.082030036,-0.13832934,0.24232139,0.35136008,0.010997097,0.10095674,0.2934798,0.19515015,-0.9278543,0.57871395,-0.15651412,0.06237295,-0.6204424,0.03894942,0.4921186,-0.75689507,0.21073218,0.65450585,0.105905175,-0.057788193,-0.49896535,-0.34714246,0.19151516,-0.03119806,0.24819809,0.2408114,-0.70895195,0.5368339,0.17903388,-0.38931838,-0.9094804,0.2624456,0.0684009,-0.35444713,-0.06831881,0.46463332,0.022877524,0.0933006,-0.7259631,-0.010526583,-0.59177774,0.31811392,0.104277454,-0.11957606,0.38933113,-0.022345548,-0.28394952,-1.09139,0.013202113,-0.49606594,-0.092275105,0.2785169,0.1602593,0.25309494,-0.092491984,0.27445647,0.3404357,-0.5159794,0.035735223,-0.24450396,-0.401631,0.42639783,0.46810186,0.3420764,-0.49874875,0.54749423,-0.2362624,-0.20504557,-0.20931089,-0.031724244,0.48160183,0.4380953,0.26772776,0.35246328,-0.16451477,0.11006403,0.9096481,0.19281109,0.20975213,0.40522692,-0.39306664,0.41174075,0.039687123,0.45479226,0.07283452,-0.5923479,-0.11336216,-0.12608303,0.06655708,0.60108966,0.15871832,0.60288334,-0.134133,-0.38686618,0.060679078,0.1379373,0.2624435,-1.0040458,0.5000122,0.31693754,0.66266924,0.66453815,0.060749307,-0.030365646,0.586613,-0.15770605,0.24135892,0.20935589,-0.24130511,-0.48819074,0.4422814,-0.64405507,0.1245273,-0.19288723,0.021753952,0.17521884,0.037469853,0.45295516,1.0401173,-0.14548217,0.13713746,0.031449784,-0.029955959,0.112091996,-0.26978573,-0.07810266,-0.5692638,-0.42834315,0.57555443,0.17953347,0.29768276,-0.31427845,0.04471514,0.3258366,-0.21632677,0.43650642,-0.006866167,0.0038949896,-0.06928403,-0.585494,-0.30816138,0.44342896,0.2734489,0.020239927,0.0066123554,-0.048525702,0.14125471,-0.339255,-0.25294915,-0.116562605,-0.7341879,0.09093071,-0.35676286,-0.4493462,0.78896683,-0.103620894,0.2567494,0.18289427,0.15984742,-0.37527692,0.31826726,0.27276573,0.7326164,0.25222003,-0.46535793,-0.16555804,-0.24403657,0.2537646,-0.35792813,0.08630466,-0.01767529,-0.0066250213,-0.75081205,0.65701294,-0.32540625,-0.022413751,0.14257215,-0.47479585,-0.03214382,0.44541118,-0.18637614,-0.16228016,0.2507832,-0.03720324,-0.19006789,-0.3759254,-0.48450473,0.06825324,-0.13887091,-0.027495077,-0.22545283,0.06115681,0.008543819,0.37716892,0.041977208,0.016005656,0.3783085,0.05656879,-0.37512162,-0.13471545,0.36321017,0.50936896,0.08317677,-0.114697576,-0.44873393,-0.328024,-0.30576092,-0.07081171,-0.00816032,0.21582687,0.1518038,-0.3712161,0.7592456,0.14425935,1.0435461,0.063524045,-0.34165084,0.10579836,0.6579613,0.060210112,-0.058539633,-0.43003595,1.0731525,0.64182,-0.08984976,-0.090065815,-0.628015,-0.012366693,0.32648328,-0.27291206,-0.1524177,-0.17098038,-0.6395133,-0.5839024,0.31143978,0.3167124,-0.12329548,-0.26710406,0.16146903,0.09211186,0.39493647,0.22883831,-0.7107007,-0.14041375,0.44610998,0.05332938,0.17942508,0.3266692,-0.24175029,0.25014886,-0.68167526,0.116502605,-0.3161717,0.046453357,-0.002526991,-0.29876962,0.31567916,0.35724935,0.3208566,-0.3073655,-0.46092677,-0.2956761,0.5268101,0.23608871,0.3979144,0.809315,-0.41428414,-0.13340639,-0.10406429,0.6888425,1.2648653,-0.3379128,0.17615849,0.5232105,-0.6077292,-0.6361453,0.40145555,-0.3364385,0.10568788,-0.31504878,-0.44442526,-0.73550195,0.123633124,-0.07394724,-0.29342863,0.15146117,-0.49060258,-0.2651993,0.18520886,-0.34010616,-0.19746284,-0.17082989,0.03076478,0.66679114,-0.4912564,-0.37537792,0.09889933,0.3564994,-0.16228831,-0.41994974,-0.042990874,-0.3933121,0.3437232,0.31669155,-0.41875657,-0.13230295,0.11557433,-0.710269,0.21709031,0.262387,-0.42898986,0.03393702,-0.34403312,0.0639149,0.79202366,0.037933037,0.22404458,-0.41736627,-0.37706116,-0.9167964,-0.32737935,0.1287539,-0.11011493,-0.06087408,-0.6572606,0.15001924,-0.3023887,0.058966924,-0.12980433,-0.3422983,0.39757738,0.05584674,0.4954636,-0.19516546,-0.9609978,0.02847214,0.24661069,-0.34746432,-0.4613938,0.41496292,-0.2846589,1.0490972,0.010954052,0.0072531453,0.33633718,-0.836515,0.26679084,-0.338483,-0.22517163,-0.33752644,0.031290226,66 -791,0.36449492,-0.085535,-0.2809135,-0.10186988,-0.092374325,-0.06580245,0.018643063,0.47915027,0.34772825,-0.49784592,-0.33470142,-0.4186906,0.025759982,0.22295046,-0.118481904,-0.66229033,0.082569815,0.3808364,-0.45695484,0.7224814,-0.33469236,0.21301858,0.093224905,0.37579474,0.12895848,0.08283772,0.13120231,-0.182707,-0.32943007,-0.20798373,0.02266745,0.2652034,-0.74150556,0.2806823,-0.22058,-0.290121,-0.04169957,-0.5213627,-0.34870937,-0.9035943,0.30984527,-0.87585026,0.3561645,0.13547523,-0.18756779,0.3831618,-0.01218612,0.33898047,-0.18545254,-0.21626067,0.20616871,-0.1304652,-0.25500217,-0.26125985,-0.07372154,-0.19262893,-0.6051058,0.16609494,-0.10429215,-0.2444849,-0.43511185,0.13764404,-0.32760173,-0.011818421,-0.117570706,0.49913192,-0.36741123,0.08074967,0.19425905,-0.16133066,0.09699804,-0.5238368,-0.15211149,-0.20057799,0.14437647,-0.15542555,-0.21667866,0.36028942,0.29100132,0.5704284,0.042393375,-0.30440903,-0.29637262,0.09777939,0.2537263,0.45718133,-0.13767181,-0.3782048,-0.033150133,-0.02869322,0.06488148,0.095549785,0.21254836,-0.30646688,-0.15833145,-0.16781755,-0.10959185,0.14408034,0.5485904,-0.279623,-0.35335174,0.3365341,0.48848692,0.003980607,0.039082587,-0.11612735,0.052460562,-0.46259233,-0.20355844,0.06410501,-0.38326,0.61401486,-0.22278784,-0.014002358,0.61836153,-0.08916811,0.019466827,0.048720866,0.10611826,0.002654801,-0.48127094,-0.22411306,0.45955956,-0.4090966,0.18901934,-0.33284017,0.9312903,0.12755875,-0.72866243,0.44380474,-0.46239445,0.2515784,-0.04849984,0.5964685,0.60342366,0.4417143,0.5707961,0.6438298,-0.46907368,0.09888498,-0.1127719,-0.35584328,0.15898253,-0.28428975,0.227112,-0.37052977,-0.04093762,0.017944148,-0.2362502,-0.009882078,0.344316,-0.5297424,-0.07151782,0.27432534,0.7741179,-0.20989056,-0.21884696,0.71101123,1.063207,0.9724765,0.073274426,1.4456606,0.2803469,-0.20999467,0.3956333,-0.2872473,-0.82760626,0.17376347,0.22647302,-0.040300835,-0.06409222,0.33663276,0.008960937,0.46307382,-0.7132887,0.17360501,-0.24078226,0.20016058,-0.007113268,-0.05015133,-0.28715384,-0.35540804,-0.109078355,0.074492775,-0.006283494,0.326116,-0.19931227,0.17109412,-0.07682093,1.8389931,-0.06669419,0.045675308,0.10297802,0.4076164,0.012754239,-0.17549722,-0.08294929,0.27533218,0.12826717,-0.07456503,-0.4628861,0.021598628,-0.27952594,-0.56889415,-0.01754895,-0.1768335,-0.015253047,0.05448693,-0.34239826,-0.24046902,-0.14233595,-0.42787418,0.5796751,-2.3938282,-0.1503826,0.022655865,0.45657682,-0.36695397,-0.37999773,-0.1367083,-0.55281955,0.38088274,0.33872935,0.457487,-0.7802281,0.22399954,0.3615431,-0.6203182,-0.09695798,-0.72671366,0.10304602,-0.11500379,0.21231209,-0.004886642,-0.023011679,-0.079269625,-0.15757819,0.579061,0.16503973,0.12647828,0.4907378,0.2680752,0.094572745,0.33665252,-0.082688436,0.5450012,-0.30940565,-0.19625573,0.2047584,-0.5299406,0.531586,-0.101055436,0.07987056,0.47120675,-0.46633253,-0.72382975,-0.76999736,-0.5350334,1.0753217,-0.15143901,-0.4366916,0.29669127,-0.32634896,-0.101810455,-0.10581607,0.619292,-0.013218512,-0.123420574,-0.75942683,-0.12049288,-0.013624017,0.24454308,-0.031305544,-0.03327812,-0.40283856,0.85411316,-0.26155418,0.35988808,0.2961394,0.17263818,-0.25242174,-0.46484864,0.09256605,0.96508247,0.29993615,0.075777344,-0.22432877,-0.27898824,-0.43830273,-0.39106587,0.03662208,0.4679338,0.66118467,-0.19255699,-0.14990424,0.34892893,0.02915287,-0.061407954,-0.10815104,-0.35829875,-0.111784644,0.016046846,0.5691084,0.9082031,-0.29550466,0.40949893,-0.16210833,0.18839242,-0.092318885,-0.38287148,0.5249429,1.0791687,-0.045089144,-0.04705866,0.6499073,0.39042774,-0.33598462,0.44334564,-0.5599128,-0.2696637,0.32387567,-0.042069107,-0.49784955,-0.0033869569,-0.14652671,0.10188202,-0.79847217,0.5340275,-0.26077673,-0.57662606,-0.6433887,0.05716142,-2.7003193,0.10194242,-0.30003342,-0.14487906,-0.050735522,-0.086838014,-0.11927849,-0.5465712,-0.52915525,0.24359877,0.14257564,0.69443685,-0.1336502,0.21534617,-0.18164831,-0.1916704,-0.39861247,0.043006063,0.12741964,0.3646792,-0.019319987,-0.3935971,0.006448993,-0.0673954,-0.23351257,0.12600148,-0.7921383,-0.5368059,-0.3059661,-0.6757782,-0.39936736,0.5977211,-0.5901718,0.03791478,-0.27268675,-0.114311315,-0.29121935,0.39926788,0.11485579,0.18131346,0.078549035,-0.10694715,-0.28078404,-0.23836511,0.18183832,0.075584024,0.42553365,0.53237784,-0.25172052,0.17411649,0.40992832,0.68606234,-0.25272888,0.8317601,0.59789866,-0.16673557,0.18825491,-0.19320637,-0.10966337,-0.54973745,-0.20609076,-0.1515538,-0.38670194,-0.49786445,0.1093268,-0.3201295,-0.8101585,0.44816062,0.059595745,0.020890573,0.10583088,0.02047897,0.59835595,-0.10571466,-0.029350348,-0.24552268,0.02654051,-0.73106164,-0.49356008,-0.5562683,-0.5276022,0.34716985,1.0024658,-0.04834761,0.008806922,0.09064614,-0.09774346,-0.1008845,0.15785837,-0.2682642,-0.07970225,0.62661856,0.060334038,-0.5162665,0.5032711,0.2620175,0.023782125,-0.5334484,0.49705586,0.5174831,-0.6692417,0.82011694,0.23326226,-0.0044360235,-0.025439104,-0.54192847,-0.48005402,-0.30088425,-0.1519161,0.23040588,0.17621012,-0.75749844,0.29164872,0.45175442,-0.332175,-1.0218977,0.28487638,-0.19246823,-0.23336232,-0.012821093,0.33481392,-0.062022135,0.115882955,-0.20237042,0.25391448,-0.5395975,0.16258873,0.30484873,0.025945848,0.122517526,-0.31249076,-0.1420695,-0.8390303,0.06790836,-0.45140207,-0.28738967,0.15193225,0.2204111,-0.11867836,0.38918313,0.4806628,0.300146,-0.2708021,0.13255972,0.03333651,-0.32715386,0.2257024,0.41910014,0.5243128,-0.55253756,0.47298154,-0.057732582,-0.06050697,-0.21617816,-0.039340764,0.29086152,0.17357726,0.29953855,0.13080496,-0.2444179,0.18023498,0.8509298,0.14474063,0.46420422,0.2505063,-0.086049,0.5360761,0.066603154,0.30347818,-0.081999406,-0.690223,0.24577688,-0.21878207,0.13214634,0.25250313,0.25849596,0.27926552,0.004414546,-0.3998278,-0.15740885,0.16742991,-0.08661806,-1.0681187,0.26182714,0.05777305,0.8048231,0.7292265,-0.120114915,0.08038145,0.73870724,-0.017006801,0.17125721,0.22754698,-0.32270178,-0.51441675,0.5775375,-0.73508173,0.21126918,-0.024019802,0.004596044,0.036835935,0.14829175,0.30796826,0.5114184,-0.25944045,-0.027814187,-0.26188695,-0.15226518,0.10878047,-0.37197706,0.3778503,-0.5842655,-0.377259,0.78767705,0.5238882,0.33837423,-0.18698359,0.07375721,0.05626763,-0.16402422,0.22425778,0.089795105,0.0728958,0.33558357,-0.5693082,-0.10524047,0.57665586,-0.2791091,0.11784947,0.06044662,-0.15681367,0.09341649,-0.37352726,-0.3527174,-0.07916245,-0.8481708,0.0144618945,-0.09836405,-0.28074557,0.42321005,-0.025266627,0.24565826,0.16851062,0.12250593,-0.28906068,0.4340528,0.20406286,0.7764714,0.121293746,-0.21115546,-0.22037452,0.3358352,0.055579364,-0.19420516,0.15869434,-0.07929037,-0.09711937,-0.6646147,0.50613475,0.06381493,-0.3543034,0.079059474,-0.16018553,-0.013448869,0.60368705,-0.103552185,-0.16874383,-0.006763438,-0.21713348,-0.23031648,0.027907148,-0.039671168,0.39074478,0.1862673,-0.16426902,-0.13723683,-0.08012865,-0.13652319,0.33994296,-0.06620988,0.14667822,0.14167987,-0.071712874,-0.31385407,-0.059523493,0.14749433,0.57139415,0.04091726,-0.16108148,-0.060953915,-0.22409219,-0.43549916,0.04361167,-0.001970229,0.48824415,0.11776141,-0.27598408,0.66545254,0.12663737,1.1952132,0.118263446,-0.2540637,0.024304325,0.48094594,0.051569458,-0.08334354,-0.38756832,0.8614672,0.62639827,-0.10237018,-0.006955867,-0.35093817,-0.05113354,0.33667573,-0.09459468,0.103312224,0.13696022,-0.7178628,-0.15720746,0.1679403,0.38183156,0.12469343,-0.16580804,0.09473821,0.25021052,-0.025633067,0.39812326,-0.41401443,-0.23583059,0.3008299,0.3721778,0.23805802,0.11421103,-0.20690425,0.3954059,-0.7405582,0.2529216,-0.13665642,0.0107142525,-0.33481577,-0.2270446,0.277999,0.17753927,0.413837,-0.28769895,-0.3117615,-0.3481531,0.60326785,0.24649625,0.15825719,0.6192358,-0.21912499,-0.037981212,0.071163334,0.46323624,1.0825747,-0.103129596,0.070395775,0.28266355,-0.24742039,-0.61401576,0.7224007,-0.04863603,0.086813964,-0.09489442,-0.3546717,-0.7015504,0.10213765,0.29335672,-0.12125432,0.254737,-0.6849229,-0.13311383,0.1959766,-0.26335612,-0.23718888,-0.30031475,0.119314134,0.7409554,-0.09739581,-0.46577632,0.03895549,0.011273961,-0.31168753,-0.41771922,-0.19727068,-0.56501347,0.2061518,-0.02548082,-0.6454539,-0.115388595,0.13253115,-0.41160062,-0.07264578,-0.025785953,-0.3082077,0.13133015,-0.28810734,0.09692491,0.99819833,-0.097153425,0.42988446,-0.530706,-0.4720104,-0.8973978,-0.29040614,0.5376556,0.14735866,-0.113527276,-0.40319708,-0.13540888,-0.011039128,-0.17441596,0.06713178,-0.4516139,0.32952753,0.23186904,0.21149515,-0.10261929,-0.8924479,-0.017520836,0.24434163,-0.058621388,-0.42329323,0.2380601,-0.05025037,1.0268449,-0.07279547,0.0048630736,0.25064325,-0.4917308,-0.04920137,-0.13520871,-0.13522612,-0.4354143,0.056905616,76 -792,0.5502638,-0.23730938,-0.5114646,0.055038646,-0.3741103,-0.1860727,-0.44110242,0.24172576,0.4344165,-0.13936701,-0.3603684,0.05345365,0.08789206,0.2818191,-0.052618533,-0.60838586,-0.04135793,0.097622216,-0.9563145,0.8355899,-0.38738212,0.18999839,-0.030436033,0.6489045,0.050010324,0.36615968,0.16047429,0.040717706,0.10942819,0.021693567,0.08339157,0.26364744,-0.7088623,0.14381808,-0.38003573,-0.35537884,-0.099226035,-0.5820001,-0.21714556,-0.9552874,0.22594933,-0.949739,0.5439046,-0.0006697811,-0.18759727,-0.25489888,0.10110121,0.21768089,-0.20281695,-0.21100686,0.09896362,-0.25010258,-0.19472218,-0.31608668,0.14311981,-0.3649626,-0.40623346,-0.018921494,-0.4223701,-0.25164866,-0.07665378,0.085092835,-0.4032655,0.0030259714,-0.30816576,0.36975035,-0.3746718,0.19076605,0.5436656,-0.17777298,0.24177182,-0.7203238,-0.159869,-0.0112071885,0.5794928,0.04984056,-0.42406568,0.2805693,0.2758601,0.5351029,0.29922566,-0.24988951,-0.09134337,-0.10215596,0.23429506,0.57357186,-0.19925475,-0.37060916,-0.2987634,-0.0039876252,0.5100139,0.38568354,0.09348231,-0.09875134,-0.02220433,-0.1561753,0.12153009,0.44454262,0.5845468,-0.056374375,-0.32116225,0.034042638,0.5784278,0.6244334,-0.21772556,0.0028346379,0.067441724,-0.5852891,-0.1817634,0.015031676,0.036500458,0.5553706,0.013906983,0.4033736,0.7091473,0.020645618,0.049670696,-0.0007229398,-0.0993577,-0.18605451,-0.34353173,-0.075502284,0.34381258,-0.61848015,0.070626356,-0.33528113,0.44587278,0.12645695,-0.61563593,0.34193397,-0.56684417,0.2926658,0.062360276,0.6946173,0.9644065,0.34407362,0.5523264,0.807312,-0.16450925,0.20307289,0.12013487,-0.32165655,0.13419116,-0.42739215,0.2392761,-0.5187212,0.1253051,-0.092793174,0.20692013,0.06947623,0.30828622,-0.6294298,-0.25310588,0.08478582,0.6333216,-0.14394344,0.08180594,0.96231514,1.0464501,0.89462954,0.08874035,1.4450566,0.23493631,-0.24253456,0.0636112,0.087970875,-0.8601275,0.18323065,0.30898675,-0.20977771,0.54820263,-0.09256529,-0.22394033,0.6396355,-0.44487008,-0.09322246,0.05234563,0.13833468,0.026283225,-0.22105063,-0.670943,-0.21758425,-0.19751911,-0.07668198,0.082385145,0.27473873,-0.23608811,0.45239148,-0.11809132,1.1724204,-0.27458745,0.059998866,0.15213288,0.35956016,0.28818822,-0.2249512,-0.002182002,0.18809582,0.38268247,0.15963851,-0.6071567,0.290444,-0.3365158,-0.349781,-0.1640711,-0.34275782,-0.3453598,0.062726595,-0.5268669,-0.33311003,-0.21435821,-0.027794095,0.22445895,-2.5604355,-0.41879264,-0.29665664,0.4637175,-0.21053986,-0.08700853,-0.16411316,-0.44660679,0.17657602,0.18650277,0.6008988,-0.639395,0.36278903,0.4278339,-0.7861851,-0.14881115,-0.7199407,0.0060273907,0.28907248,0.48796108,0.07735661,-0.399089,0.05784549,0.20899421,0.6575482,0.1375264,0.20856512,0.46658453,0.6629023,-0.12201952,0.29432443,-0.1841007,0.5731961,-0.5535836,-0.24648635,0.45928046,-0.27962425,0.46835542,-0.25405896,0.141961,0.7166125,-0.4108487,-0.85749674,-0.37404636,-0.2030446,1.0465378,-0.2672931,-0.73639303,0.07534822,-0.59908736,-0.04175618,-0.051310897,0.85683316,-0.07590275,0.177392,-0.78039056,-0.02004105,-0.19205524,0.10694164,-0.038951125,-0.09599402,-0.35980824,0.84997773,0.03243436,0.5917129,0.32852975,0.2992613,-0.06260087,-0.45254517,0.23625498,0.68433905,0.4676657,0.1804014,-0.23836172,-0.09293757,-0.18536665,-0.29630733,-0.00068217516,0.78054,0.65603286,-0.13847017,0.22672981,0.26499698,0.1480692,0.15417294,-0.19289415,-0.09282115,-0.2965309,0.0017074844,0.5008401,1.0958635,-0.26684907,0.23562787,-0.15847947,0.28857425,-0.10518042,-0.50829846,0.7392486,0.5551221,-0.3285285,0.054484114,0.5114222,0.5029224,-0.576502,0.43698612,-0.7324858,-0.2972918,0.5792106,-0.043293115,-0.49921998,0.29509592,-0.31917998,0.26658726,-0.7264568,0.47673878,-0.45159483,-0.32092842,-0.50491494,0.07459953,-2.480355,0.3598149,-0.17673647,-0.06579106,-0.6966891,-0.21470559,0.213504,-0.6586787,-0.7491705,0.254442,0.08062049,0.72384876,-0.23843272,0.05925669,-0.2436315,-0.5693031,0.105836324,0.05723555,0.25944516,0.33415115,-0.33466434,-0.20809531,-0.17378123,0.15046571,-0.3545921,0.10198816,-0.6093047,-0.68275493,-0.16114067,-0.36490583,0.0337662,0.6027881,-0.3428562,-0.035063867,-0.42095825,0.020518253,-0.28617516,0.24843228,0.030838216,0.2670472,0.167688,-0.041721728,0.03989814,-0.16225277,0.44850883,-0.06123661,0.3706956,0.31849816,-0.11569344,0.4126407,0.44475067,0.7703805,-0.22679527,1.1622806,0.3719634,-0.08731123,0.30932948,-0.23184882,-0.41482988,-0.6497666,-0.291129,0.15453784,-0.40293506,-0.63590115,0.13174309,-0.3439459,-0.8674342,0.51754713,-0.0006621505,0.56157404,0.14935195,0.33190316,0.55873686,-0.24978893,-0.051597517,-0.035808373,-0.15511699,-0.67769235,-0.12800322,-0.6435576,-0.56880456,-0.05156834,0.7771776,-0.27836958,0.18262474,0.3830446,-0.4657195,0.055132944,0.16243117,0.029980706,0.01898084,0.4693071,0.22738671,-0.6241011,0.42738366,0.012630527,-0.4177482,-0.44236407,0.2786233,0.71991944,-0.73143786,0.6379173,0.46890786,0.052013967,-0.13798447,-0.52105606,-0.30171415,-0.0106716305,-0.19186066,0.44354296,0.38338462,-0.8267128,0.41130754,0.33902678,-0.32056907,-0.7958556,0.48582768,-0.11032558,-0.119549096,0.003951823,0.37984434,0.05306512,-0.03993425,-0.13293988,0.24922861,-0.4543304,0.2917915,0.15592729,-0.19608586,0.22414462,-0.04279365,-0.3636233,-0.6923316,0.22770305,-0.7480697,-0.20335923,0.58049035,-0.079855464,-0.089688756,-0.016920855,0.43073538,0.33566126,-0.39287722,0.12804256,-0.08289276,-0.4900972,0.27714035,0.59439725,0.3529404,-0.48165116,0.6519446,0.19261523,-0.12875594,0.36503646,0.26933393,0.316094,0.042089958,0.4517859,-0.29267284,-0.09118394,-0.06644305,1.044243,-0.0044238716,0.4137945,0.071723424,0.109547436,0.47434697,-0.027424388,0.29058793,-0.22156157,-0.5019563,0.050420504,-0.09258106,0.1508338,0.53427356,0.3793559,0.06404036,0.06115659,-0.24248321,0.049495935,0.43548298,0.10090389,-1.4646153,0.37186253,0.2554904,0.9476382,0.2966435,0.034628022,-0.18138145,0.6903248,-0.05310303,0.093063235,0.44581494,0.0060099214,-0.5683009,0.8455575,-0.57284063,0.36252752,-0.24071515,0.02187161,0.15203767,0.25601482,0.20829515,0.71026427,-0.29767677,0.009222894,-0.26388803,-0.18134616,-0.013445933,-0.36049318,-0.043119404,-0.2420007,-0.5691337,0.88638896,0.5565296,0.45337978,-0.4160048,0.1440656,-0.0018896075,-0.13818257,0.3905008,-0.08341529,0.02963976,-0.0058697513,-0.6535799,-0.06762852,0.5389691,-0.18159299,0.13417494,-0.3135107,-0.42630306,0.109889925,-0.23279919,-0.029593656,-0.086457394,-0.8693428,0.21098894,-0.65547717,-0.81977934,0.5831384,-0.113392055,-0.038792305,0.39601,-0.025221586,-0.09299025,0.45907354,-0.3636123,0.9074543,-0.0424639,-0.30264843,-0.3365158,0.2754039,0.3543749,-0.33767936,0.17005628,-0.32297334,0.36998478,-0.22324407,0.811229,0.08912888,-0.5058576,0.03836082,-0.07217472,-0.05720018,0.60866433,-0.20301096,-0.24232878,-0.05370438,-0.2741724,-0.3514397,-0.35623375,-0.24895732,0.17028765,0.32441393,0.1338485,-0.21772157,-0.28971744,-0.18071075,0.3847597,0.069517225,0.57518744,0.5088468,0.094967626,-0.30762196,0.17810126,0.5041013,0.50290006,0.22618453,-0.16676402,-0.5371329,-0.71071655,-0.51558036,0.31111655,0.00046204776,0.31354755,0.1554055,-0.12090939,0.89615965,-0.068581596,1.0277525,0.11501739,-0.3285518,0.13350661,0.55259126,-0.277707,-0.18851207,-0.4662415,0.9447778,0.4057518,-0.13648675,0.20393865,-0.3288981,-0.094236076,0.37961903,-0.3488598,0.19102068,-0.1627003,-0.55232954,-0.30936792,0.052586112,0.34283733,0.034576233,-0.2723976,0.100878626,0.020136962,0.005112806,0.1975575,-0.8058761,-0.5299266,0.26122162,0.05671975,-0.30225524,0.07381486,-0.39994553,0.3546009,-0.73442715,0.16200124,-0.7475269,0.14098215,-0.057498664,-0.45096207,0.14866251,-0.2155834,0.5044845,-0.6122973,-0.28520587,-0.17033117,0.1561573,0.31456995,0.07349188,0.58206946,-0.34777668,-0.04891287,0.26979187,0.7411534,1.1451749,-0.4607719,0.16355373,0.108663134,-0.5253615,-0.55578154,0.3130431,-0.41101512,-0.041324895,-0.28034428,-0.46251336,-0.6515469,0.053821493,0.1788029,0.12875551,-0.20386375,-0.9141722,-0.26981786,0.22913337,-0.40338528,-0.20287848,-0.41014218,0.19546898,0.7475608,-0.13804494,-0.27961516,0.051138084,0.1696731,-0.107373886,-0.50274485,0.10095646,-0.33144698,0.2589049,0.004998485,-0.37318718,-0.15221578,-0.054543138,-0.61228293,0.23225407,0.19539519,-0.42677364,0.07319951,-0.26969105,-0.061605457,1.1809214,-0.3590542,0.03126697,-0.43974924,-0.63612187,-0.88122606,-0.5129512,-0.15067564,0.34108296,0.1501653,-0.46114063,0.17877476,-0.058814753,-0.055469766,-0.06493687,-0.47576198,0.37568521,0.17224969,0.72434855,-0.48202667,-1.0311987,0.16635995,0.09529894,-0.06989946,-0.4993519,0.36523023,0.05721828,0.8203991,0.11161935,-0.053087488,-0.14598666,-0.5208996,0.012028933,-0.25037995,-0.123234116,-0.86926085,0.18674533,82 -793,0.4266479,-0.092675306,-0.73690957,0.17157833,-0.31836787,0.1267031,-0.44944534,0.25603953,0.542773,-0.17196488,0.0462686,-0.22660536,-0.10279038,0.044560418,-0.15826271,-0.44224384,-0.06925865,0.25161156,-0.49545622,0.6452313,-0.17737508,0.353516,0.14551537,0.35016885,0.24844857,0.2530385,0.045683365,-0.112219624,-0.17101735,-0.31848022,-0.04453737,-0.09328761,-0.6582667,0.29324043,-0.4964465,-0.23780537,0.07927232,-0.54409933,-0.5166865,-0.8426251,0.36770177,-0.83729315,0.6584058,-0.059289943,-0.19734214,0.07338729,0.19638969,0.26320824,-0.017033398,-0.109894775,0.24952023,-0.48899594,-0.31225765,-0.36825657,-0.43032017,-0.43194494,-0.47293344,-0.17252393,-0.34853712,0.1295968,-0.2858704,0.293061,-0.3483756,0.024900317,-0.13932627,0.12791367,-0.38893452,0.2980454,-0.019661367,-0.30365044,0.07944196,-0.74467033,-0.066497825,-0.09787468,0.105588794,0.26525623,-0.1714288,0.28734425,-0.07684357,0.3897768,0.06784837,-0.06920522,-0.37695444,-0.092520066,0.0729711,0.5873119,-0.17432685,-0.035407096,-0.12625788,-0.08247725,0.63776475,0.54257077,0.08203855,-0.19107099,0.12366294,-0.4467319,-0.30337262,0.48446402,0.71570545,-0.15397277,0.22905892,0.15756583,0.35126218,0.5784837,-0.20685546,0.070674025,-0.12953894,-0.27560613,-0.14516726,0.20236225,-0.16291389,0.4648377,-0.068108186,0.10809105,0.51662886,-0.189142,-0.019233892,0.21785204,0.24564616,0.13358438,-0.33277914,-0.33295628,0.46514687,-0.536316,0.08951189,-0.3958321,0.52176017,-0.056767613,-0.7062852,0.4134356,-0.5716073,0.1409191,0.14537132,0.6044306,0.62166077,0.72160023,0.20879386,0.99346095,-0.28776476,0.076061375,-0.11201308,-0.18448906,0.17200847,-0.07193107,0.36388135,-0.34295645,0.08741484,-0.040501725,-0.14815302,0.057597995,0.4996511,-0.25414205,-0.1487452,0.12995057,0.8870763,-0.26785988,0.264904,0.82285935,1.3418976,0.860461,-0.019874332,1.1415256,0.3025854,-0.2477346,-0.3512555,0.17982197,-0.9461463,0.111685045,0.25352287,-0.16896021,0.39853367,0.26779702,-0.29441556,0.19567424,-0.3950455,-0.18022837,0.05968659,0.16123804,0.019755268,0.06438718,-0.3532847,-0.33908656,0.081884906,0.039469242,0.21408723,0.25645864,-0.28672898,0.46716592,0.1560983,0.94150615,-0.18244879,0.00046558058,0.21822171,0.38671732,0.2684716,0.040190738,-0.027943397,0.3381509,0.25316456,0.009372051,-0.50860566,0.0005925248,-0.21560015,-0.22979249,-0.2119587,-0.23890603,-0.3141521,-0.06899425,-0.0231662,-0.4649581,-0.15381251,-0.35577974,0.4252384,-2.8667076,0.1203838,-0.08531237,0.34937572,-0.14046828,-0.117894255,0.04480429,-0.47999063,0.49638072,0.20111553,0.47930643,-0.48994443,0.21890336,0.7081364,-0.72249985,-0.10727176,-0.60624534,-0.16223769,0.023785284,0.34895253,-0.03590539,-0.15748756,-0.18278427,-0.104978435,0.37605274,0.15765311,0.16739981,0.4215691,0.6481996,-0.1641505,0.30583116,-0.18485819,0.59418774,-0.49251005,-0.14546277,0.4029689,-0.55601907,0.38039646,-0.4982051,0.11012892,0.62048453,-0.26757583,-0.5584026,-0.33739147,0.13966902,1.1920246,-0.43657675,-0.89931995,0.15560226,-0.28223062,-0.14025839,0.06548424,0.6429854,-0.15010941,-0.07141683,-0.5047992,-0.2751548,-0.1619596,0.31719133,0.037127297,0.14540453,-0.5064662,0.79940987,0.015145764,0.57796043,0.35667518,0.3121598,-0.24809958,-0.42456257,0.22547595,0.58044416,0.5188398,0.017064653,-0.22385621,0.03737545,-0.034462046,-0.45953533,0.04056188,0.83688134,0.5923249,-0.16530152,0.041219134,0.30496117,-0.23397838,0.19509304,-0.14667058,-0.48677397,-0.29614142,-0.11435791,0.52340126,0.7388441,0.13337,0.37082207,0.12523453,0.3440517,-0.13123982,-0.383943,0.4218364,0.5343024,-0.24330385,-0.14801736,0.59080833,0.5795626,-0.3002921,0.65735924,-0.7379342,-0.46594584,0.45000815,0.13327219,-0.65383166,0.42805278,-0.3607252,-0.09544731,-0.76574916,0.133879,-0.35924825,-0.52415174,-0.5663609,-0.23067534,-1.7843891,0.03683989,-0.29231796,-0.086554915,-0.4086968,-0.1223991,0.15297484,-0.23221321,-0.7058063,0.15065375,0.34279713,0.41012445,-0.20086443,0.16721694,-0.23498821,-0.25781655,-0.37057284,0.27356473,0.14442731,0.15499942,-0.21663891,-0.27799138,-0.13640763,-0.11875787,-0.07293062,-0.12600279,-0.59776324,-0.14208642,-0.06815204,-0.43106198,-0.23195118,0.6552086,-0.6035432,-0.11060747,-0.39868033,-0.021171361,0.081219964,-0.020953542,-0.15368252,0.14598106,-0.01238137,-0.109527506,0.025146151,-0.21550043,0.35400066,0.2211296,0.19160056,0.27288467,-0.06538392,-0.045030918,0.32371643,0.5223406,-0.18633883,1.1009384,0.21488011,-0.19641198,0.40551612,-0.23771356,-0.44440547,-0.5484584,0.01771685,0.15224443,-0.38694802,-0.4774231,-0.24444991,-0.31463197,-0.6999583,0.49384224,0.28116906,0.2780937,0.025653476,0.19698782,0.4378504,-0.023928842,-0.11122951,0.043967936,-0.15884055,-0.2979228,-0.1758772,-0.709646,-0.40214467,0.04215169,0.97805804,-0.22568022,-0.049719352,0.49420896,-0.42404175,0.0031920995,0.26435396,0.096607745,0.10351292,0.5671913,0.31798503,-0.49352324,0.46336234,-0.13098316,-0.060506046,-0.71975094,0.08884751,0.7412136,-0.8968074,0.27032375,0.5359177,0.005615654,-0.38478515,-0.633346,-0.10423506,0.1241199,-0.17938828,0.2689439,0.41395772,-0.615635,0.36182556,0.21635191,-0.19218105,-0.7944145,0.35076365,-0.08312494,-0.33755198,0.0003301526,0.49732006,0.022750458,0.04983646,-0.14928982,0.110815905,-0.3920786,0.4515196,-0.046118658,-0.16322514,0.17092669,-0.15150116,-0.20725118,-0.86300683,0.26249626,-0.3044297,-0.3037914,0.72789603,0.043075938,0.038376313,-0.00808239,0.38205504,0.34708616,-0.40724537,0.24029595,-0.46058783,-0.30087712,0.59369385,0.4997969,0.5583311,-0.5585765,0.61035365,0.03732482,-0.4615992,0.36136493,0.07361252,0.28873247,-0.061445806,0.42254066,0.11442856,-0.10679885,-0.03903268,0.723247,0.17757191,0.38268957,0.079432964,0.03655439,0.4350504,-0.061483145,0.08817253,-0.04188019,-0.7983965,-0.18470138,-0.31726155,0.24166064,0.41558087,0.2094953,0.60395825,-0.09089743,-0.15715623,0.013083135,0.12237602,-0.018426426,-0.9689026,0.2503626,0.096846856,0.7075481,0.60158545,0.04937459,0.044265073,0.73775417,-0.04036377,-0.07669207,0.3930767,0.1960032,-0.32825062,0.5650917,-0.6217422,0.46542716,-0.25212666,-0.005815834,0.36273274,0.20127307,0.69562,0.96037906,-0.31645334,0.0636001,-0.027390769,-0.20945121,-0.21864183,-0.18716611,0.093893856,-0.39770737,-0.4821109,0.7243243,0.22765326,0.45603344,-0.29170045,0.005550871,0.09978124,-0.016621208,0.43852344,0.19256121,-0.0912115,-0.16794765,-0.5018124,-0.1330331,0.6548467,-0.15306611,0.07298731,-0.008541564,0.028035417,0.38065276,-0.09891925,0.00902604,-0.001127561,-0.65797424,0.17317235,-0.3734639,-0.6085176,0.33422837,0.24715976,0.09186918,0.2024741,-0.0067152255,-0.026018212,0.23302813,0.2359825,0.8798869,-0.014601926,-0.29782602,-0.27105793,-0.022825705,0.16307448,-0.26974174,-0.17428195,-0.12452406,0.2694969,-0.4629899,0.41906187,-0.48354077,-0.34039494,0.15073727,-0.31420624,-0.17024384,0.57782644,-0.21349852,-0.10724968,0.21275496,-0.14485587,-0.3352692,-0.36050534,-0.5023307,0.0004164949,0.062968336,-0.090399124,-0.33678293,-0.20122619,-0.12323002,0.16621338,-0.058107983,0.33064517,0.3970501,0.27837667,-0.46694088,-0.03211536,0.16974945,0.60455585,-0.029622862,-0.09065799,-0.27317926,-0.45929375,-0.3551379,0.48881915,-0.008864873,0.23088706,0.0814927,-0.31405398,0.9644108,-0.054835096,0.8176498,-0.09520477,-0.25899243,0.22040707,0.641757,-0.17129505,-0.22209175,-0.5040905,1.025522,0.604894,-0.1019635,-0.03638734,-0.500355,0.014348696,0.18578677,-0.3306609,-0.14625193,-0.049374476,-0.56337243,-0.040926445,0.106215455,0.23360632,0.06466912,-0.12409202,0.1575786,0.32231915,0.24158277,0.124672435,-0.36369094,-0.2659696,0.5998581,0.14916457,-0.12965728,0.10309621,-0.27782208,0.2754856,-0.42923906,0.099101804,-0.79286367,-0.031001413,-0.06752051,-0.19516127,0.095870234,-0.27443537,0.30006793,-0.5372943,-0.30137956,0.041018203,0.2935389,0.35456228,0.34825692,0.44995868,-0.25182402,-0.06278605,-0.12540387,0.62151223,0.91079897,-0.36972797,0.05419308,0.12541471,-0.5733262,-0.51227456,0.26838106,-0.4406375,-0.09087157,0.061342407,-0.35783276,-0.41680622,0.25007072,0.030902142,-0.11347399,-0.29726413,-0.61801624,-0.22033815,0.026626846,-0.16276832,-0.237257,-0.33031195,0.03990679,0.8550733,-0.15464906,-0.40048885,-0.11355615,0.14301024,-0.29121166,-0.56254363,0.19139095,-0.3927642,0.27264038,0.007852777,-0.35656992,-0.10509622,0.2139417,-0.7340689,0.08109485,0.032805223,-0.3077936,0.08147266,-0.27986804,0.32313815,0.76883125,-0.1891228,-0.040842682,-0.33115235,-0.63399214,-0.8205569,-0.3173822,-0.1557599,0.32129017,0.09506989,-0.58362144,0.007581958,-0.42422342,-0.022701278,-0.041948408,-0.5210387,0.38894853,0.120586075,0.6319814,-0.4005085,-1.0654911,0.30974618,0.08545705,-0.45516142,-0.37391052,0.433609,-0.06442067,0.7849191,0.050442692,0.022825753,0.14699264,-0.5986742,0.26330718,-0.16868615,-0.2600018,-0.782306,0.22832082,87 -794,0.4844987,-0.2564008,-0.39991507,-0.34680143,-0.39469948,-0.15099339,-0.1814723,0.46810654,0.32807174,-0.35638538,-0.23139787,-0.032816943,0.104842216,0.42829552,-0.21665402,-0.5779124,0.06013508,0.23036069,-0.78116536,0.79556656,-0.29048857,0.21259741,-0.013525824,0.36220348,0.53173095,0.20194133,0.0069901845,0.18375337,-0.00049267214,-0.17448103,-0.1982622,0.4121503,-0.5512707,0.41370344,-0.07842258,-0.4257444,-0.1415002,-0.3429992,-0.3001399,-1.0296594,0.2516169,-0.9730423,0.36095405,-0.11024477,-0.45389223,-0.008128345,0.50023824,0.49979195,-0.23517506,-0.3582748,0.055906665,0.057054598,-0.1334101,-0.12794773,-0.057918966,-0.553163,-0.6132074,-0.16431227,-0.46618676,-0.2283756,-0.48922637,0.22279398,-0.47582927,-0.0051998645,-0.024555394,0.67087346,-0.49804354,0.2876153,0.22199653,-0.0006587903,0.35398006,-0.6397001,-0.27002728,-0.19404979,0.30315688,0.11443099,-0.54244524,0.5119215,0.5694613,0.17809726,0.039749295,-0.15996172,-0.31819457,-0.08734298,0.1912712,0.27258655,-0.09405405,-0.41729227,-0.16154924,-0.047036946,0.35322177,0.36118698,0.40023634,-0.3028796,-0.122716576,0.13668625,-0.2434702,0.40522507,0.34772587,-0.36963114,-0.22254205,0.40250716,0.623225,0.18618424,-0.3922646,0.08543087,0.046852652,-0.54387146,-0.1302662,0.06838856,-0.23933445,0.6575372,-0.32962698,0.17764439,0.707359,-0.08634445,-0.32554272,0.3041382,0.1859474,-0.37357894,-0.26414758,-0.33604786,0.24635948,-0.5071801,0.099393636,-0.20416404,0.7389469,0.17702289,-0.6586971,0.22355442,-0.6136301,0.29010394,-0.26787326,0.4699054,0.96906924,0.5986449,0.5714851,0.7396923,-0.3389825,-0.00076408684,-0.004952391,-0.4291195,0.2784458,-0.52723676,0.17683439,-0.54494417,0.12652157,-0.08205531,-0.19543643,0.13912626,0.5684181,-0.6027208,-0.24377717,0.16342048,0.72455055,-0.1839875,-0.22936964,0.8594453,0.8956211,1.1255397,0.24780309,0.93202525,0.15161215,-0.1697401,0.35811934,-0.0053649694,-0.6607062,0.39803573,0.39272866,-0.13711685,0.101940475,-0.025604999,0.0567608,0.59509957,-0.3475839,-0.022105359,-0.26903278,0.24172463,-0.013864939,-0.37897697,-0.38848543,-0.46444097,-0.16860558,0.08461022,-0.09099724,0.29725134,-0.014534722,0.656743,0.0060154,1.643772,0.19629247,-0.16935639,-0.0013240104,0.5156824,0.29204044,-0.35464886,-0.014933269,0.37609395,0.34434584,0.24355097,-0.61363703,0.26863566,-0.25430727,-0.38049862,-0.10346743,-0.58987707,-0.23327278,-0.011058249,-0.5554412,-0.4044247,-0.26739967,-0.20462199,0.5143414,-2.6742318,-0.27572566,-0.16703434,0.3903769,-0.10388139,-0.19295913,0.04914831,-0.57830596,0.4011066,0.36171642,0.59122163,-0.7350839,0.3450254,0.35312715,-0.8133332,-0.052548546,-0.65552163,-0.15708427,-0.011837379,0.43126222,0.08454791,-0.054418508,0.22364242,0.20122917,0.4703652,0.1424594,0.30315268,0.40705776,0.42453954,-0.31167087,0.6837001,0.0056617535,0.5965973,-0.118020214,-0.33497784,0.24368836,-0.38250223,0.22413771,-0.021920407,-0.039698023,0.8043199,-0.5465015,-1.1217097,-0.72682077,0.093310826,1.1428194,-0.36450514,-0.4819903,0.28890803,-0.5789478,-0.1542572,-0.044844594,0.5800559,0.017266467,0.008113402,-0.89837545,0.039514575,0.013768609,0.08006545,-0.08438748,-0.28997755,-0.34901676,0.8268418,-0.013073146,0.6370232,0.06162851,0.08339411,-0.6719599,-0.38813558,0.10908294,0.5560898,0.41828907,0.018136805,-0.3593488,-0.3159437,-0.60423416,-0.17345767,0.14624383,0.5957071,0.31195465,-0.28902134,0.29174516,0.4572929,-0.20621853,0.05023573,-0.19683981,-0.27870846,-0.1339273,0.041953724,0.45019725,0.9313677,-0.05032522,0.49810743,0.013760935,0.30726776,-0.066160664,-0.71309376,0.69042325,1.4107875,-0.29279685,-0.40048087,0.57731014,0.5583979,-0.1546409,0.50519675,-0.34880415,-0.1856523,0.506224,-0.019015083,-0.32367438,0.07238937,-0.39907274,0.1293252,-0.8694136,0.25749567,-0.5444489,-0.5461709,-0.5100879,0.094898105,-3.3237312,0.29053876,-0.19359004,-0.21252443,-0.25785676,-0.32052782,0.101128995,-0.91423887,-0.62931806,0.09581361,0.021257525,0.91526276,-0.22429018,-0.04827309,-0.16233568,-0.49520764,-0.16129921,-0.07428449,-0.11389962,0.57671523,-0.08791267,-0.46248326,0.009484655,-0.08885618,-0.5537407,-0.037702795,-0.60324234,-0.6384879,-0.15052576,-0.61486393,-0.43115243,0.7137998,-0.26948664,0.07746888,-0.2544351,-0.074854895,-0.012963976,0.19859828,0.18611626,0.11272079,0.149339,-0.08149679,0.01907902,-0.16637282,0.11387086,-0.19459645,0.3321711,0.2592054,-0.013063927,0.55853516,0.73958164,0.6208637,-0.12655896,1.0848153,0.5214739,-0.019106777,0.16292985,-0.19197476,-0.3490564,-0.53474534,-0.049944837,-0.1297948,-0.47118726,-0.21951713,0.060027923,-0.31265935,-0.809192,0.5933971,0.289148,0.3635418,-0.007915472,0.116359405,0.6333082,-0.05509934,-0.10079799,-0.11201301,-0.37903252,-0.76999503,-0.17079288,-0.7284465,-0.5601933,0.16433488,0.96965104,-0.37872216,0.0075834543,0.07842297,-0.20124388,0.111172676,0.36301008,-0.12527895,0.23257433,0.34774876,-0.21156089,-0.5432817,0.3343571,-0.12881167,0.046741497,-0.5961997,0.47628316,0.41049218,-0.40293363,0.5601626,0.34917498,0.041607324,-0.41476753,-0.5210698,-0.19040696,-0.1541613,-0.23648404,0.5679695,0.37156627,-0.80140257,0.34589937,0.45001444,-0.23657195,-0.71044064,0.74503374,-0.18602401,-0.20610158,-0.252483,0.30419537,0.34997296,0.15450478,-0.27050826,0.17706573,-0.42728814,0.13537346,0.24078386,-0.01208802,0.10708424,-0.060150307,0.041594703,-0.84865665,-0.0097645,-0.52635044,-0.2951324,0.16385995,0.08113659,0.049934596,0.14885752,0.17523463,0.22139275,-0.16390993,0.0007327969,-0.21951894,-0.2157699,0.35945725,0.521499,0.5631563,-0.48709008,0.54082733,0.23390496,-0.00797354,0.0713391,0.08645726,0.31272903,0.22654386,0.5972884,0.064558424,-0.2451545,0.12788819,0.7902592,0.09785042,0.53719527,0.027869517,-0.07513744,-0.011220962,0.10844773,0.5138729,-0.056558758,-0.58085227,0.12499236,-0.5545519,0.09775566,0.60795206,0.16799326,0.046136726,0.09197795,-0.5143066,-0.040685873,0.15648283,0.026979068,-1.8476347,0.49246982,0.44035563,0.88854164,0.6225241,-0.015145185,-0.22990231,0.9628132,-0.20954175,0.17042892,0.39710534,-0.012622379,-0.4127337,0.6761417,-1.2166907,0.39601883,0.0009227842,0.034635805,-0.01757425,0.21105726,0.35255966,0.713105,-0.24361289,0.09051835,0.11379609,-0.5048406,0.42056832,-0.49771354,-0.07890218,-0.57587886,-0.26818582,0.59609586,0.48960456,0.40297532,-0.31880853,0.12477436,-0.011986703,-0.2924988,0.18673551,0.05393992,0.10475993,-0.21259232,-0.6965545,-0.0924693,0.5047217,-0.29540107,0.47341838,0.020595536,-0.18719982,0.28481773,-0.17854227,0.017703384,-0.11241015,-0.7013548,-0.064018756,-0.24574023,-0.41407022,0.8615274,-0.05519511,0.25962862,0.3981677,0.004195268,-0.1537677,0.48345342,-0.18675368,0.70616883,-0.0794371,-0.13381153,-0.17801718,0.14259474,0.11817261,-0.14998674,0.15734817,-0.3173705,0.10293806,-0.4676837,0.510057,0.06879574,-0.4766235,-0.08990416,0.0037227508,0.097446956,0.48545876,-0.21469902,-0.20055096,-0.1864378,-0.09243549,-0.24519534,-0.41154602,0.013465573,0.46221137,0.12386078,0.18125378,-0.19478907,-0.199142,-0.076283224,0.29221827,-0.23435414,0.50397885,0.35799703,0.018928269,-0.31240383,-0.04949412,0.40530673,0.42570135,-0.016279751,-0.18076746,-0.31956136,-0.47101185,-0.62228596,0.16540337,0.0399762,0.5866573,0.15838028,-0.19333334,0.6945879,-0.2838579,1.3273519,-0.07872487,-0.59522665,0.20453353,0.5658768,0.0076792142,-0.17449264,0.05345251,0.6452231,0.53843755,-0.1642974,0.010112082,-0.6660947,-0.10298505,0.24372973,-0.18218048,-0.22329973,0.08684701,-0.60338044,-0.20887788,0.12535335,0.21483426,0.34993598,-0.12392923,0.065472834,0.4209646,-0.14151041,0.18783593,-0.31704167,-0.34759617,0.275622,0.35469034,0.030990401,-0.026267454,-0.48049614,0.4031889,-0.5572038,0.23015128,-0.31548086,0.42384422,-0.26787648,-0.38334116,0.13743955,-0.060355473,0.34091642,-0.1264103,-0.2719755,-0.19010043,0.77366614,0.2180623,0.09645081,0.70125866,-0.3309145,0.0744785,0.24886133,0.3623593,0.8627026,-0.36648488,-0.17159216,0.21953368,-0.52810276,-0.7276981,0.4550085,-0.4309082,0.35950884,0.21794331,-0.15280706,-0.7068987,0.1742603,0.37439904,0.21906404,0.015782038,-0.6650869,-0.18343277,0.21625789,-0.41129622,0.016705004,-0.42036653,0.093136035,0.27015686,-0.2426765,-0.34916767,-0.056762088,0.106828295,-0.06193229,-0.51450825,-0.014491983,-0.31318578,0.39969003,-0.13014933,-0.5145094,-0.14903872,0.056788485,-0.3772874,0.28242257,0.04209323,-0.22955586,0.3802943,-0.4561008,-0.04874141,1.0703284,-0.46224287,0.19177617,-0.43498266,-0.4948503,-0.55666053,-0.26722872,0.311904,0.041904863,-0.062473536,-0.70337933,-0.053358003,0.008145931,-0.19478673,-0.23974593,-0.47146237,0.589662,0.13918048,0.27459028,0.06137528,-0.80328006,0.274327,0.021466032,0.14441721,-0.726816,0.5107152,-0.29343894,0.7663949,0.1817884,0.24514522,0.10525151,-0.43914255,-0.021141589,-0.12851967,-0.36077568,-0.3250036,-0.15845378,88 -795,0.5800742,-0.35068226,-0.36859432,0.010900348,-0.33063084,0.17479974,-0.27079567,0.28402668,0.17053743,-0.6912506,-0.12842286,-0.080183886,-0.06850084,0.313151,-0.12834145,-0.6239112,0.05143529,0.1087724,-0.639868,0.76227397,-0.26358438,0.4330912,0.060309667,0.37087235,0.06410327,0.3841715,0.30853137,0.0053998553,-0.06340977,-0.17099245,-0.08053072,-0.04315563,-0.66061443,0.20879222,0.009070042,-0.39164272,-0.13022895,-0.33988583,-0.43691,-0.6535772,0.36300954,-1.1071411,0.33447337,0.12151777,-0.22925371,0.0055119894,0.030657133,0.07743655,-0.044597816,-0.058610234,0.026257524,-0.28819922,0.057206973,-0.5951855,-0.31496882,-0.6257827,-0.45160463,-0.06802409,-0.52936643,-0.36428428,-0.28633884,0.11523664,-0.37395346,-0.011323765,-0.14494988,0.097931705,-0.5380819,-0.067775674,0.29160815,-0.31554052,0.084118366,-0.62877965,-0.16468896,-0.23513128,0.054878037,-0.05203556,-0.1841582,0.29020068,0.15717968,0.6273374,0.056334216,-0.13192119,-0.20785487,-0.10241913,0.38463378,0.6534464,-0.16127963,-0.26253298,-0.40866825,-0.14857048,0.30303064,0.24631584,0.30640647,-0.5101424,0.052821737,-0.043667834,-0.20942952,0.28557816,0.59492856,-0.23206514,-0.10258871,0.276217,0.32808706,-0.023161525,-0.3152472,-0.08666053,0.005511731,-0.31435302,-0.10217223,0.17060657,-0.086941004,0.637012,-0.024552843,0.23866682,0.54599446,-0.17599094,0.21309036,0.01675796,0.043134544,-0.14644854,-0.28366318,-0.09952275,0.3648808,-0.37476102,0.11481032,-0.3717974,0.5883471,0.3050058,-0.6111629,0.48690006,-0.58510417,0.29591942,-0.06383353,0.5492929,0.57127005,0.4164504,0.035552192,0.90032846,-0.50811714,0.15534052,-0.027777592,-0.093883954,-0.056059584,-0.2795135,0.0976195,-0.3915803,0.16338255,0.15801488,-0.10357114,-0.04399899,0.5516512,-0.4274263,-0.2518824,0.045874994,0.75606894,-0.3461449,0.19004487,0.55168587,1.0257273,0.86595577,0.02412494,1.1660312,0.38142407,-0.28811708,-0.076034166,0.10064585,-0.8913219,0.09110492,0.4813726,0.32942775,0.48517874,0.15395878,-0.24909687,0.5133409,-0.37663293,0.011353602,-0.25621474,0.12939122,-0.054572493,0.024109378,-0.5325463,-0.06787587,-0.04391912,-0.07467029,-0.08737397,0.4128389,-0.32682893,0.41046786,-0.017423868,1.5486172,-0.27776954,0.12526019,0.14194764,0.5644451,0.2620822,-0.168243,0.21315609,0.4254581,0.27930358,0.03169767,-0.63554543,0.053107977,-0.2736379,-0.6154551,-0.18832922,-0.24949954,-0.25185832,0.12795384,-0.42762926,-0.23495753,-0.042152096,-0.19989522,0.1663106,-2.0696108,-0.1936909,-0.43296412,0.6020543,-0.5259415,-0.26987067,-0.08453856,-0.4227098,0.36504626,0.37608072,0.4577746,-0.6785988,0.22959268,0.5321458,-0.39990187,0.077083625,-0.59260917,0.094111055,-0.07774898,0.45711517,-0.13855085,-0.19320704,0.2680414,0.09239125,0.49470863,0.02396082,0.13014098,0.2651439,0.49592784,0.011643085,0.19770043,-0.10557475,0.58739144,-0.60606265,-0.14726968,0.5918036,-0.2951937,0.49314246,-0.1644058,0.07944434,0.46938646,-0.5905904,-0.5119767,-0.4897047,-0.23295273,1.0836339,-0.63024485,-0.7639273,0.08105316,-0.093110226,-0.17721899,-0.16165332,0.55264044,0.050341096,0.16447206,-0.8021435,0.20382096,-0.016141823,0.17841458,0.034877315,0.06878353,-0.26414943,0.84467155,-0.16666518,0.6323769,0.3570743,0.36124268,0.0015178621,-0.3868334,0.10871383,0.78787166,0.4433802,0.18749489,-0.21800786,-0.06254113,-0.331985,-0.43088612,0.2119406,0.512305,0.6571948,-0.13855372,0.07184114,0.30742508,0.17237745,0.0016561374,-0.27350655,-0.3480382,-0.18725532,0.052087728,0.67085594,0.71001196,-0.2667998,0.2152897,-0.0033737,0.13133597,-0.13011654,-0.5970431,0.44624963,0.9497637,-0.1954676,-0.10433801,0.6854393,0.52816623,-0.8856433,0.5025098,-0.92983264,-0.4449818,0.45670906,-0.0588707,-0.64937335,0.13074104,-0.3389505,0.31327146,-0.79353815,0.42232195,-0.40249896,-0.16187079,-0.5664775,-0.15965007,-2.491164,0.2794045,-0.33686042,-0.23585916,-0.17124157,-0.027229091,0.09019216,-0.70548964,-0.5191727,0.28062013,-0.06841915,0.5391955,-0.01425231,0.24477524,-0.3378499,-0.08273884,-0.27058318,0.16255131,0.07350503,0.37745616,-0.2706903,-0.31270495,-0.034217227,0.0007781883,-0.2728598,0.12792857,-0.6576484,-0.6151572,-0.22582243,-0.37072518,-0.16377157,0.50120443,-0.21903849,-0.01012585,-0.27504525,-0.16374846,-0.2324451,0.23832254,0.25580424,0.32813382,0.1289049,-0.024211964,-0.108929776,-0.37048233,0.19930041,0.13878296,0.15898164,0.35141277,-0.32448873,0.13534284,0.4930065,0.5998806,0.15905412,0.8243046,0.38057843,-0.0678416,0.4706262,-0.22195642,-0.47773433,-0.66462725,-0.35342023,0.044270143,-0.36608925,-0.6502549,0.07516155,-0.20041026,-0.8221372,0.5240278,0.03735675,0.32915872,0.18500476,0.28024855,0.48829398,-0.26871535,-0.2632179,0.031809434,-0.19548863,-0.75727445,-0.30826315,-0.7957716,-0.5525732,0.50789165,0.6428601,0.00028575957,-0.18113194,0.2490137,-0.33966717,-0.0560333,0.11304688,0.16058561,-0.022558764,0.37181938,0.15416953,-0.6879358,0.6120077,0.16696525,-0.15669711,-0.62665695,0.32457805,0.7307866,-0.7632074,0.44911444,0.39504275,0.18851574,-0.08234676,-0.46948186,-0.22920881,0.16138482,-0.36273614,0.20168072,0.22743024,-0.7757947,0.17928444,0.38366985,-0.23989761,-0.6896906,0.7207744,-0.0826575,-0.22422326,-0.16226515,0.3453215,0.055270206,0.10457239,-0.1349013,0.26697472,-0.68220854,0.28886595,0.40534428,-0.041826952,0.5461351,-0.17143877,-0.3338655,-0.6786647,0.32894635,-0.7447687,-0.18761347,0.3896806,0.024334505,-0.058045562,0.19308782,0.23702265,0.35502914,-0.22875643,0.12737225,-0.13090897,-0.29052362,0.59872586,0.39041623,0.5105724,-0.50338864,0.7931497,0.039863,0.0003507336,0.07696405,0.11408961,0.52451175,0.33116448,0.4298295,0.08429866,-0.0047004223,-0.014135294,1.0011019,0.35572815,0.55406696,0.43828964,-0.19833456,0.352378,0.17528196,0.0553142,-0.14884889,-0.52630156,-0.036845893,0.19022119,0.18457668,0.37949696,0.1005525,0.5096569,-0.16148567,-0.27272284,0.13745213,0.07721222,-0.030521182,-1.2656145,0.1406761,0.13511167,0.6356909,0.39822188,-0.07038781,-0.09197393,0.5814151,-0.27147225,0.15958448,0.27395287,-0.28248605,-0.56836617,0.5678904,-0.52838904,0.29256156,-0.31345943,0.037321154,0.14748363,0.30137295,0.47582874,0.74194026,-0.15272193,0.064366,-0.20208812,-0.32424673,-0.046065733,-0.31686002,0.11067697,-0.34657776,-0.5241695,0.63927484,0.40412667,0.36422434,-0.23654693,0.023578102,0.03885932,-0.05993138,0.33720434,0.011249085,0.12764706,-0.024917873,-0.5953693,-0.3018009,0.5475428,-0.14103828,0.015661417,-0.06645489,-0.16570778,0.43517157,-0.14593329,-0.31494233,0.12793736,-0.8538256,0.2440244,-0.5494091,-0.6515944,0.2142322,0.09168234,0.17076086,0.22227104,-0.06863566,-0.3677809,0.31527042,-0.015818616,0.97612566,-0.1304224,-0.2717422,-0.48624185,-0.053817492,0.21276337,-0.18801449,0.38339233,-0.09730154,0.13689323,-0.70188314,0.50120014,-0.17170723,-0.24154453,0.20595515,-0.1778998,-0.14065439,0.48638353,-0.09280294,-0.32125822,0.21570629,-0.18783726,-0.53874373,-0.28395477,-0.14733975,0.23053513,-0.025929233,0.12925142,-0.11364726,-0.107909776,0.06209143,0.4299884,0.1423651,0.30655622,0.5469897,0.20644201,-0.6508061,0.066046335,0.35428843,0.45666924,-0.12973534,0.10266098,-0.1322581,-0.80958015,-0.4466962,0.26376623,-0.21895091,0.45527077,0.12443882,-0.43750605,0.9704371,0.036958754,1.1220886,-0.051183965,-0.3511205,0.040627588,0.3708668,-0.080259025,-0.14136802,-0.39203605,0.9264242,0.716387,0.03405832,-0.15961303,-0.32139924,-0.30633214,0.24501024,-0.3644905,-0.005166819,0.03952412,-0.6492223,-0.2760514,0.02007608,0.36662707,0.0134623675,-0.12187887,0.3116009,0.21059173,0.09088194,0.2046774,-0.6215579,-0.46710858,0.3422954,0.20391373,-0.17349903,0.04341213,-0.22462213,0.36140168,-0.6753437,0.2353822,-0.38104013,0.05059284,0.15639107,-0.35442218,0.06871096,0.047932256,0.4445138,-0.53635895,-0.34107313,-0.24163587,0.5953323,0.22039855,0.17948854,0.5813273,-0.25541672,0.1578915,-0.029408654,0.63796943,1.2370868,-0.07291635,0.17263818,0.22908527,-0.57443565,-0.90164644,0.43771124,-0.18691641,0.360674,-0.100888394,-0.28943813,-0.58315015,0.09490872,0.18545492,-0.37373877,0.049064517,-0.6566047,-0.34916735,0.27446595,-0.43319976,-0.3218551,-0.44641185,0.18999928,0.5439989,-0.16908443,-0.10511246,0.021861454,0.27527568,-0.2710129,-0.4872545,0.04989311,-0.3822049,0.23151682,0.14250408,-0.37513757,-0.027756155,0.12740791,-0.5711174,0.08411827,0.100782216,-0.47431538,0.090851925,-0.2980384,0.018488526,1.0196959,-0.064212866,-0.1988594,-0.742086,-0.62867063,-0.9791358,-0.75069696,0.2541885,0.2763783,0.17405908,-0.49076995,0.11125652,-0.0015237182,0.26196405,-0.043794658,-0.4647933,0.38732228,0.19760786,0.57271564,-0.09734172,-0.7205902,0.19560963,-0.005518295,-0.09209788,-0.54235244,0.44131592,-0.12255671,0.9746135,0.18787692,-0.14770685,0.2511233,-0.7065194,0.09445357,-0.13966481,-0.3545424,-0.7354049,0.12786148,89 -796,0.61645675,-0.46041796,-0.55795765,-0.24016047,-0.15515983,0.16658138,-0.04867841,0.61398596,0.27644876,-0.5459471,-0.31489208,-0.091094255,0.1642821,0.24682052,-0.1962602,-0.70256716,-0.060228884,0.20509957,-0.43671283,0.40089998,-0.30289456,0.15013462,0.015561094,0.4759139,0.13283832,0.21090285,-0.016020412,-0.112800635,0.06956624,-0.0760076,-0.14842753,0.35704458,-0.45978224,0.35085323,-0.07605611,-0.2680423,0.010706991,-0.5758602,-0.34238485,-0.7600479,0.3427538,-0.9761131,0.5871043,0.014773983,-0.27123505,0.2356609,-0.029301265,0.08089068,-0.2971582,-0.11525831,0.1819912,-0.12593645,-0.15162586,-0.26568818,0.06922453,-0.45151123,-0.5096216,-0.023219317,-0.3646239,-0.100488156,-0.30851486,0.14066362,-0.41583833,0.089758985,-0.13450225,0.7072329,-0.33633828,0.21411829,0.20846646,-0.4298928,0.32190266,-0.6866229,-0.17410187,0.039572142,0.28472877,-0.03811495,-0.26226714,0.20083873,0.28817034,0.45086455,0.0696277,-0.1870627,-0.12843464,-0.08857738,0.073179565,0.47053862,-0.11719421,-0.6443674,-0.17106962,-0.026227832,0.23748744,0.050296456,0.14916895,-0.15958859,-0.14172484,-0.013466503,-0.10622382,0.3779192,0.5185393,-0.24563785,-0.21608399,0.42111573,0.57408804,0.070477664,0.022996834,-0.10193742,0.06985637,-0.59962827,-0.25613263,-0.13122578,-0.36953643,0.5318803,-0.27104226,0.46289432,0.7359268,-0.11457762,0.044786066,0.20344515,0.13316895,-0.13725847,-0.4497186,-0.22605316,0.34643316,-0.4095069,0.08778864,-0.22527158,0.868753,0.16891275,-0.5845193,0.258647,-0.5607837,0.14222948,-0.115801595,0.5606114,0.652472,0.57548684,0.2788268,0.7746506,-0.40954852,-0.0066826493,-0.03889361,-0.34975505,0.05700776,-0.14877695,0.12694293,-0.53153247,0.035682816,0.05162907,0.046209723,0.060130496,0.3945004,-0.6131505,-0.19511072,0.05388537,0.9360258,-0.24946393,-0.0682716,0.7938065,0.9328814,0.7361043,0.034718018,1.2766175,0.16377951,-0.2823563,0.13903213,-0.11076612,-0.84216046,0.42536673,0.44573727,0.035389856,0.27124968,0.087004185,-0.19111653,0.60118884,-0.4940776,-0.04364411,-0.1433722,0.21983181,-0.012336224,-0.17827117,-0.66609234,-0.12300242,-0.04489377,-0.020760221,0.22591944,0.26133266,-0.13648735,0.5924285,0.08249227,1.5739703,-0.10288521,0.20309646,0.15573679,0.24581285,0.17092358,-0.086761154,0.004369676,0.37246695,0.50779927,0.22037745,-0.5950535,0.24422789,-0.26973173,-0.5033844,-0.23533809,-0.30031982,-0.17276101,-0.15292458,-0.3703858,-0.13483441,-0.18373875,-0.1659255,0.3016024,-2.6042268,-0.2992032,-0.10078186,0.51321584,-0.3254047,-0.31387672,-0.17118846,-0.38495186,0.34967816,0.22401492,0.6582565,-0.6409903,0.42519274,0.43907332,-0.6867953,-0.12736508,-0.5537875,-0.010416265,0.06553271,0.32733446,0.09997979,-0.14725469,-0.101880014,0.002693842,0.5531606,0.094429456,0.07462646,0.35433188,0.52493113,-0.06265678,0.35717812,-0.18876581,0.60732156,-0.3382294,-0.16802531,0.2869602,-0.37845734,0.28627264,-0.23112719,0.12860233,0.574799,-0.33369693,-0.877564,-0.7258335,-0.051366225,1.1037556,-0.28155088,-0.48807678,0.1441287,-0.4888405,-0.3016927,0.011479452,0.4845651,-0.19842307,-0.0025766094,-0.8349101,0.13624293,-0.179686,0.15029642,0.033583302,-0.21754289,-0.57732993,0.92633086,-0.03178292,0.62531203,0.34318927,0.23010999,-0.16587497,-0.40775195,0.08341378,0.9537819,0.4404389,0.15382437,-0.12448808,-0.024563977,-0.3877298,0.03759392,-0.02971159,0.81693006,0.528869,-0.0112320585,0.022986533,0.23682117,0.034993242,0.0972262,-0.094021976,-0.28617272,-0.2858522,-0.045253932,0.6187656,0.7569316,-0.36651865,0.28382078,-0.24965079,0.3950609,-0.08763999,-0.45694283,0.6589206,1.040108,-0.23957483,-0.30301937,0.81391406,0.3270368,-0.30198327,0.32170087,-0.63079053,-0.380016,0.3836451,-0.23643081,-0.50902146,0.12953776,-0.12264239,0.22139335,-0.96181685,0.31947693,-0.2567245,-0.58326864,-0.53712153,-0.068925135,-2.9462101,0.24452145,-0.41140306,-0.1263663,-0.3869027,-0.13978465,0.16833031,-0.8002362,-0.5474242,0.26075545,0.071264625,0.7078936,-0.10600408,0.17363043,-0.13276516,-0.29538116,0.0664879,0.12805781,0.12596369,0.20590198,0.02775643,-0.43932787,0.045741145,0.19716938,-0.4497477,0.22031541,-0.73231727,-0.5379469,-0.112283446,-0.5847549,-0.2643019,0.62725586,-0.17305286,0.040871024,-0.16749966,0.2544058,-0.18118744,0.20126565,-0.19771236,0.1941127,0.0016357402,-0.049436558,0.18758857,-0.21745543,0.44992137,0.036385555,0.49970445,0.25337592,-0.3169217,0.12804957,0.6186231,0.59125364,-0.07692974,0.8746433,0.4946877,0.013287552,0.23718882,-0.07402977,-0.48021522,-0.57840943,-0.34539166,0.15869047,-0.4650136,-0.29778102,0.08592341,-0.45584893,-0.9437273,0.51225996,0.1334473,0.15882115,0.063206166,0.35275736,0.7656104,-0.2969043,-0.15344554,0.09626195,-0.22200714,-0.60801965,-0.22728837,-0.6308724,-0.42940697,-0.061238233,0.9877405,-0.30181575,0.19539249,0.025136886,-0.14097947,0.03937305,0.21809776,-0.10188133,0.07353028,0.5552431,-0.0572432,-0.72397995,0.5571038,-0.22611682,-0.29012504,-0.59804946,0.25123975,0.5039959,-0.719495,0.56666297,0.47016883,-0.09280628,-0.35422006,-0.45407927,-0.1505612,-0.09947685,-0.14447646,0.47911295,0.30125925,-0.6711804,0.39822423,0.31522223,-0.2247687,-0.8019877,0.50467056,-0.19147182,-0.3675413,-0.16885997,0.42070755,0.081201576,-0.079598814,-0.0843547,0.11069619,-0.39672056,0.40769497,-0.041770607,-0.18241991,0.41392943,-0.12922849,0.0652318,-0.8611439,-0.20263839,-0.72485065,-0.19289792,0.33251712,-0.004437283,0.21418042,0.095087714,0.071447946,0.4442339,-0.4136481,0.013777654,-0.07584164,-0.42735338,0.30622822,0.43923745,0.4929252,-0.4843911,0.5771503,0.116143025,0.002598564,-0.05787013,0.2131538,0.4911625,0.023097,0.5774979,-0.22782741,-0.18198843,0.2117082,0.8386266,0.072987735,0.49349245,0.123672456,-0.035541743,0.14444272,0.010044818,0.28559712,-0.10599953,-0.7360024,0.0011509011,-0.32691172,0.03578933,0.5380612,0.122956075,0.35892388,-0.16693139,-0.39041385,0.03133085,0.24218625,0.30267692,-1.3557087,0.4212863,0.19311953,0.95497435,0.2402069,-0.033804253,-0.1288883,0.81614274,0.030933836,0.13130033,0.3366849,-0.11983483,-0.45916668,0.6174093,-0.74189615,0.27387413,-0.116702974,0.06412833,0.039852846,-0.10900104,0.29924706,0.8027444,-0.1898105,-0.10358154,-0.07657063,-0.4487852,0.32552445,-0.51268595,0.06874592,-0.6404133,-0.2264747,0.60755664,0.66681415,0.38454416,-0.2593748,0.022635581,0.21539557,-0.0146226585,0.20100725,0.106332935,0.069499664,0.044198632,-0.83753973,-0.16201536,0.49440685,0.21536422,0.36006573,-0.085951604,-0.15761615,0.36028445,-0.21778542,-0.09835618,-0.12916426,-0.61718225,0.03471896,-0.4271276,-0.6660967,0.5383389,-0.01171944,0.08562996,0.15744622,0.12226955,-0.25771448,0.29452592,-0.062290013,0.9998005,0.22688407,-0.32553864,-0.4893731,0.17576139,0.16033205,-0.26087758,-0.04479435,-0.36214757,0.10102429,-0.5576181,0.5478142,0.028053612,-0.3284317,0.1869189,-0.20743327,0.073490314,0.5089664,-0.16923366,-0.11690989,-0.20829259,-0.14503352,-0.29852772,-0.31767654,-0.08005767,0.21692431,0.32495347,0.24724074,-0.20971294,-0.13543218,-0.343083,0.40763915,0.2676495,0.3583865,0.4416181,-0.0466308,-0.20424734,-0.17540692,0.3930955,0.49858215,-0.041678157,-0.32596555,-0.38008738,-0.6423937,-0.342844,0.12451607,-0.0254856,0.4028963,0.04220611,-0.022926465,0.80779904,-0.08857691,0.9259376,0.010249969,-0.33438182,-0.043861587,0.6333903,0.0835092,-0.057891935,-0.29681367,1.1059386,0.46900162,-0.06598795,-0.04652646,-0.5488635,0.061293423,0.2355767,-0.21506691,-0.108930565,-0.18016827,-0.6962976,-0.32361016,0.21109508,0.3568283,0.2443068,-0.07100671,0.05116639,0.2965679,-0.06745609,0.28825676,-0.6200686,-0.23048945,0.28468904,0.16472603,-0.022952681,0.17599046,-0.46478903,0.35354233,-0.6311611,0.17584342,-0.31859317,0.09898496,-0.32339427,-0.15909135,0.22435792,-0.044813734,0.38298646,-0.43300268,-0.42106447,-0.19653483,0.39081287,0.28121662,0.006789468,0.65397495,-0.2218486,-0.06316022,0.20260721,0.6140699,1.0285549,-0.22342853,0.30479738,0.4889412,-0.4078733,-0.6568773,0.29878744,-0.24878246,0.26184022,-0.005557651,-0.19069023,-0.6581936,0.32659414,0.1919288,-0.0016728739,0.009995244,-0.69163984,-0.18683958,0.30111814,-0.3881012,-0.05376482,-0.14190185,0.048460543,0.46995234,-0.22265632,-0.2931148,0.09227172,0.2953312,-0.063745014,-0.55851966,-0.20734668,-0.51398164,0.20344372,-0.038366787,-0.38641453,-0.14952444,-0.04674158,-0.45880246,0.24389225,0.037532706,-0.3004996,0.14367412,-0.3733244,-0.0990093,0.80659056,-0.07422546,0.1537071,-0.6486149,-0.2689487,-0.8015637,-0.3750418,0.38266015,0.034950152,0.072919995,-0.6285185,-0.07939301,0.001777033,-0.045202803,-0.27228522,-0.40466246,0.477582,0.17757763,0.5771463,-0.040402666,-0.8401472,0.20937197,0.052244544,-0.2117203,-0.6287882,0.52835494,-0.052977253,0.84292716,-0.0746473,0.16735947,0.25819874,-0.56046945,-0.23958308,-0.19617552,-0.21684234,-0.6876829,0.04551394,94 -797,0.22198999,0.1331043,-0.71064585,-0.19986522,-0.3244717,-0.093843795,-0.23143847,0.24392259,0.43887773,-0.16785808,-0.018061355,-0.053945333,-0.02068618,0.5487176,-0.12362116,-0.8443852,0.1801939,0.04904375,-0.62727326,0.2822285,-0.5889118,0.23640855,0.02366738,0.6123751,-0.10116038,0.30775157,0.3888336,-0.14000185,0.017260134,-0.1782999,0.092991866,0.3235668,-0.57793576,0.11142626,-0.06734515,-0.35857114,0.114391565,-0.37901533,-0.24164887,-0.6249055,0.35875142,-0.79607993,0.4368851,0.16206203,-0.33888683,-0.15653192,0.09640991,0.23744702,-0.2719341,0.062391132,0.31356338,-0.26698112,-0.03690252,-0.10249222,-0.19848005,-0.48981404,-0.565178,0.020490298,-0.641455,-0.30728102,-0.2997947,0.20384435,-0.25676537,-0.03836943,-0.23415639,0.46153107,-0.4421365,-0.06652128,0.19730179,-0.478309,0.14611839,-0.3479723,-0.16154419,-0.106597036,0.36149332,-0.04210642,-0.089762986,0.16252027,0.24178748,0.4443995,0.01569887,-0.10652373,-0.3412812,-0.11067607,-0.03259769,0.43961048,-0.21137142,-0.41079676,-0.17272931,-0.18068086,-0.01588644,0.17662847,-0.033481713,-0.35268125,0.028981103,0.079311214,-0.14307533,0.36138132,0.39775404,-0.3992778,-0.07416546,0.29398748,0.3036424,0.2069964,-0.27744678,0.18328737,0.033611123,-0.6347149,-0.29050842,-0.051524222,-0.032018792,0.5954397,-0.10700205,0.3277963,0.83503026,0.003464505,-0.0659796,-0.14180048,-0.19678752,-0.009400685,-0.14768386,-0.017066339,0.2515204,-0.36185372,0.12404955,-0.14968741,0.6716332,-0.010316301,-0.9787864,0.47612062,-0.5177093,0.031221414,-0.22619854,0.6583271,0.8074487,0.2679188,0.18774252,0.8478722,-0.6037186,-0.00022094448,0.13667175,-0.49014792,0.24236678,-0.0042303675,0.21729095,-0.46490037,-0.05873844,0.2224989,0.19989131,0.26423553,0.32222733,-0.41050902,-0.01115188,0.1603507,0.74984246,-0.33865035,-0.10016122,0.6951148,1.295166,0.8885687,0.10529927,1.3430414,0.25621364,-0.08694764,0.15722178,-0.16603445,-0.68340784,0.12751178,0.35148546,0.09511467,0.19608164,0.15295321,0.21947749,0.6010999,-0.29387867,-0.061158746,0.06357653,0.19131303,0.036817554,-0.14889936,-0.31193188,-0.26595604,0.13298279,0.13258465,-0.043964952,0.2805033,-0.23796403,0.35619387,-0.052482035,1.1553966,0.14651929,0.25271073,-0.032260075,0.57702106,0.14252637,-0.1578979,-0.17984642,0.20211013,0.24404104,0.097261526,-0.47459558,0.04501097,-0.30023655,-0.52451724,-0.21325032,-0.40053225,-0.12434306,-0.11401232,-0.3832337,-0.044958267,0.07387953,-0.33877632,0.41462365,-2.7213514,-0.08498206,-0.2336964,0.27275842,0.046648305,-0.19785576,-0.27545294,-0.42083773,0.42292118,0.522232,0.5338821,-0.56068224,0.5872562,0.4120132,-0.35074496,-0.15623875,-0.6402457,0.17246628,-0.15435886,0.33226848,-0.018967325,-0.20133509,-0.19552676,0.3211631,0.73675257,0.1390096,-0.07809934,0.025617758,0.45003697,0.030610358,0.5424934,-0.016689314,0.6171773,-0.28171965,-0.29153714,0.21222818,-0.5175327,0.2752402,-0.027711416,0.16191171,0.2854738,-0.4907011,-1.1363955,-0.6501985,-0.18525362,1.0976573,-0.25886583,-0.3828528,0.48129177,-0.07166157,-0.39969516,0.21159346,0.76974636,-0.22535898,0.12308162,-0.7030409,0.09457705,-0.21317284,0.282342,0.023175457,0.034135524,-0.54856104,0.6709697,-0.06267103,0.4776369,0.2794578,0.042107623,-0.29278687,-0.34860516,0.11547619,0.8533643,0.22073574,0.12401593,0.026880877,-0.15987268,-0.1103962,-0.14202374,0.09231931,0.77924806,0.57514834,0.0337368,0.1270586,0.2981056,-0.16125537,-0.043014903,-0.035387173,-0.36939248,0.06494188,0.18179683,0.5834906,0.7886202,-0.25327322,0.10344193,-0.021256393,0.42557654,-0.25874892,-0.41005075,0.41989803,0.44996798,-0.06540575,-0.20495151,0.6888642,0.64135695,-0.3907971,0.42288312,-0.57740474,-0.47927165,0.42284238,0.030003456,-0.4980477,0.010197431,-0.37657154,0.13033411,-0.8722432,0.33096594,-0.13725983,-0.8473738,-0.43232766,-0.22984733,-4.913692,0.1613619,-0.23269315,-0.046938103,-0.153917,-0.021080235,0.41409674,-0.5931079,-0.49605265,-0.14293645,-0.031851497,0.51267797,-0.15115233,0.1259108,-0.3135564,-0.27283478,-0.07648563,0.34788778,0.075362444,0.32189372,0.1463091,-0.2792867,0.086115815,-0.30500737,-0.37627158,-0.06133966,-0.58081955,-0.4742054,-0.109381825,-0.60985035,-0.2425213,0.7234359,-0.5350271,-0.03599085,-0.4240373,-0.031370018,-0.34498668,0.44150135,0.27597198,0.16976069,0.049051832,0.1709454,-0.36654794,-0.32894877,0.22451834,-0.01784155,0.39996347,0.387179,-0.0021356146,0.08519975,0.5656842,0.5674188,-0.018545775,0.88953835,0.19443786,-0.056548174,0.22897951,-0.37906012,-0.38810313,-0.80397016,-0.45146275,-0.17539017,-0.46008933,-0.4483557,-0.21408756,-0.37408677,-0.66872996,0.56189895,0.08467195,0.01872144,-0.02849706,0.13891353,0.22551262,-0.09790037,0.0103490455,0.018617189,-0.1387975,-0.55006295,-0.2184763,-0.657432,-0.64091754,0.011884277,0.9816368,-0.21107398,-0.0724652,0.21997339,-0.2751607,0.069785625,0.18756421,0.33826885,0.24340932,0.3630166,-0.18298133,-0.7566475,0.47336772,-0.5130641,0.000531435,-0.70334774,-0.04270635,0.7586367,-0.7757074,0.76041055,0.46944645,0.4029759,0.2577814,-0.47386804,-0.5294404,0.034369946,-0.183924,0.54101455,0.27969655,-0.84362286,0.48091507,0.07461777,-0.13733564,-0.648722,0.5592281,-0.21384211,-0.2745972,0.1886371,0.3910551,-0.030192515,-0.11731791,0.028382765,0.17764366,-0.36150396,0.30420318,0.2467047,0.07251448,0.6977325,-0.17119491,-0.081005,-0.5921323,-0.2621274,-0.50759536,-0.19584435,0.034974802,0.09581896,0.08841723,0.21613128,-0.13019376,0.3775407,-0.31577647,0.19068082,-0.11687064,-0.28160217,0.29952148,0.63746405,0.37515488,-0.51452,0.67845774,0.108435206,0.062266093,-0.12290996,-0.029679677,0.47885552,-0.026961451,0.500749,-0.1254981,-0.15195554,0.10216827,0.85570645,0.14210817,0.3413038,0.080572955,-0.03823709,0.39785638,0.1314535,-0.01566425,0.028414994,-0.50272065,0.08454541,-0.12418464,0.30943438,0.35766983,0.16835858,0.31630918,-0.028523276,-0.2380216,0.26334396,0.28695294,-0.0016658654,-1.0497884,0.46716404,0.2303458,0.5943358,0.60186696,0.09572195,-0.084661216,0.7052358,-0.22980483,0.09979832,0.23871474,0.054239113,-0.5302635,0.68796223,-0.49698877,0.47441506,-0.23176412,-0.11649542,0.15986641,0.19513178,0.33545056,0.78933454,-0.103200294,0.1387895,0.120595224,-0.27990568,0.05055198,-0.24385329,0.119570345,-0.5569126,-0.23436944,0.6674064,0.62083286,0.27449223,-0.34894797,-0.10015616,0.028386744,-0.080951065,-0.0014982609,-0.28350973,-0.062402517,-0.04725338,-0.859232,-0.18028508,0.6195919,0.060145896,0.050265487,0.17431748,-0.47254565,0.4139872,-0.088758916,-0.07349654,-0.07014594,-0.39264885,0.084934436,-0.22437797,-0.6383075,0.40279448,-0.3720849,0.4812338,0.07906123,0.09763739,-0.2647541,0.3620795,0.046340335,0.73473674,0.053901877,-0.09180113,-0.14401327,-0.020766186,0.26564565,-0.31334853,-0.3945888,-0.7065294,0.09199204,-0.44197264,0.3030764,-0.23238565,-0.30865398,-0.24349213,-0.030965209,0.17174608,0.43906534,-0.17267644,-0.25219384,0.22979093,0.091854185,-0.21016377,-0.057388466,-0.5692249,0.27262637,-0.06177536,-0.024273952,-0.08557073,-0.12328415,-0.11347085,0.30537495,0.02587212,0.27127874,0.30639967,0.11525515,-0.13487546,-0.032801375,-0.057385493,0.46652138,0.16746227,-0.02444761,-0.23026137,-0.45969343,-0.2848187,0.2800712,0.010242981,0.1552567,0.2931701,-0.33358097,0.49825454,0.23867173,1.211738,0.15612702,-0.26220277,0.20261829,0.46813384,0.06061773,0.1489343,-0.3394438,1.0340654,0.5524366,-0.3755816,-0.15610792,-0.520701,-0.1336836,0.07374623,-0.24721587,-0.31569687,-0.18949296,-0.7613246,0.030841598,-0.0039394945,0.3018346,0.22753008,-0.044585675,0.066306494,0.015530583,0.26811936,0.27622014,-0.52896005,-0.2323658,0.5346517,0.3381996,-0.08415983,0.10511515,-0.3017952,0.4874947,-0.63227636,0.06015609,-0.67735934,0.088929325,-0.3403362,-0.37809896,0.06619048,0.06931731,0.3976287,-0.069168635,-0.21144438,-0.21792667,0.672887,0.37000212,0.32449993,0.8142519,-0.18486111,-0.23010123,-0.048800096,0.63768065,1.2565732,-0.17089492,-0.0053198137,0.31995222,-0.15776812,-0.5777314,-0.10605439,-0.5712618,-0.15324445,-0.08764622,-0.38053593,-0.34391677,0.27542362,-0.04578659,-0.17247014,0.0551216,-0.38574418,-0.12908046,0.40347973,-0.13434958,-0.3510168,-0.37781525,0.31560373,0.7303762,-0.3986586,-0.25574967,0.016854504,0.32553706,-0.21673845,-0.60938054,0.0628618,-0.097917,0.4126192,0.2140146,-0.54233986,-0.12455621,0.3537589,-0.47418404,0.2942362,0.3099493,-0.32473293,0.08844178,-0.37392965,-0.06909549,1.1663948,0.094998725,0.26302978,-0.58983034,-0.5712233,-0.96125156,-0.24678652,0.22351192,0.13243456,-0.09870259,-0.39872375,-0.1620097,-0.10758793,0.009445767,0.073841095,-0.47435078,0.29509258,-0.017059509,0.68764836,-0.064745076,-1.019073,-0.06721467,0.14810199,-0.1941074,-0.5462622,0.51500887,-0.18667643,0.7994408,0.027260462,0.048018243,0.27996546,-0.490285,0.32662043,-0.3284137,-0.09842336,-0.65987873,0.16296066,108 -798,0.14415647,-0.30022344,-0.82338625,-0.1720907,-0.09647717,0.07851353,-0.21138817,0.5710449,0.30870143,-0.24412555,-0.20002478,-0.18224913,0.016669126,0.43902412,-0.13557804,-0.3027682,-0.27995035,0.13286535,-0.49578655,0.26469132,-0.4607019,0.02166004,-0.21391775,0.41780603,0.12541656,0.07287347,0.051859543,0.09066462,-0.039538283,-0.08084627,0.35669872,0.24463809,-0.63625365,0.06315688,-0.24865873,-0.43553343,-0.22236025,-0.44612637,-0.5006663,-0.71639234,0.5189311,-0.9013218,0.48089013,0.16413529,-0.16437425,0.59479755,0.10715872,0.18705744,-0.29137048,-0.1456033,0.1588233,-0.088810824,-0.10845124,-0.12559512,-0.23440246,-0.23318183,-0.6169712,-0.0077282214,-0.34498522,0.026094994,-0.29979947,0.03484156,-0.3622187,0.16572967,-0.21576925,0.36641407,-0.35665902,0.10768401,0.27300382,-0.053696226,0.34062943,-0.51028234,-0.21767952,-0.17492636,0.06902993,-0.2723821,-0.25803763,0.24294317,0.31916514,0.3093449,-0.34528708,-0.07735949,-0.30526218,0.006234283,0.07821654,0.4050988,-0.17306888,-0.3334296,-0.10960722,-0.24078684,-0.10257998,0.0991835,0.19870096,-0.26911476,-0.09669227,0.0953119,-0.2609341,0.3892456,0.42405534,-0.13096105,-0.25536278,0.36654618,0.5308875,0.3338679,-0.060746867,-0.16191787,0.028360812,-0.56291866,-0.21876104,-0.13520311,-0.16411911,0.5652751,-0.098352514,0.19373631,0.5302783,-0.21747877,-0.22902818,0.060305726,0.12014391,-0.092319466,-0.44905496,-0.34000745,0.43534127,-0.43658367,0.28637612,0.0036327417,0.4872509,0.0027841032,-0.68734,0.34138212,-0.64133424,0.11137023,-0.04503706,0.45439634,0.6105744,0.3976183,0.40787196,0.6420174,-0.29489493,-0.020175437,-0.094772905,-0.3474778,0.23556595,-0.21306263,-0.10679841,-0.45597884,0.04178684,0.14050657,-0.088491976,0.20796156,0.34755996,-0.2584461,-0.12644438,0.281805,0.6375887,-0.24483877,-0.05465587,0.5356851,1.1918826,1.0103396,0.08172505,1.182558,0.10752813,-0.26722056,0.2906849,0.0657037,-1.2316227,0.289749,0.25074366,-0.25483623,0.39281878,0.08635812,-0.0017165752,0.42524397,-0.5128223,-0.005042076,0.07259292,0.14567797,0.24405307,-0.24972929,-0.29456422,-0.41090226,0.04317255,0.017887076,-0.020180566,0.1911421,-0.14772373,0.08200073,0.12388263,1.5193082,-0.086076535,0.083537795,0.19478388,0.50094265,0.12662284,-0.24895518,-0.24681644,0.24350627,0.33573386,0.14547761,-0.56666166,0.3211548,-0.048377793,-0.5067552,-0.08510235,-0.38092732,-0.19081457,-0.058993507,-0.48436633,-0.12001131,-0.24182408,-0.35488176,0.3390505,-2.8801727,-0.057492714,-0.092968516,0.33378315,-0.09276136,-0.18271494,-0.21819393,-0.37241957,0.3566154,0.44461307,0.346241,-0.5362262,0.3165846,0.44536138,-0.5880683,-0.003316899,-0.5421846,-0.12431767,-0.0703441,0.14231291,0.041933417,0.005421365,0.10993602,0.31071267,0.38145646,0.021080628,0.18193345,0.41361836,0.42394933,-0.12176734,0.4281625,-0.15160303,0.5090752,-0.5151842,-0.24697757,0.2680998,-0.51679146,0.19860528,-0.18180875,0.046608955,0.48973227,-0.40376756,-1.0312883,-0.47974202,-0.0480073,1.3215898,-0.3908178,-0.4049615,0.30173078,-0.5780427,-0.33931795,-0.15100724,0.55870426,-0.18625571,-0.11401486,-0.9980271,0.023080379,-0.22962968,0.26512828,-0.084106766,-0.031841222,-0.46209225,0.59494853,-0.005144755,0.6869941,0.44315615,0.02565968,-0.4149252,-0.31879592,0.14876306,0.6097252,0.17412238,0.1738892,-0.34368277,-0.12525403,-0.3558941,0.086728334,0.20456617,0.3989303,0.41519165,-0.0694119,0.2750531,0.20037158,0.13721444,-0.009460777,-0.19692408,-0.13409372,-0.11364075,0.02734077,0.56844527,0.73879784,-0.16093765,-0.08464333,-0.061509073,0.2298563,-0.22309037,-0.41315213,0.39255646,1.0165769,0.037616476,-0.1896404,0.64706635,0.6940909,-0.47165182,0.5226059,-0.5112,-0.25330555,0.37627375,-0.13245226,-0.40958357,0.14910053,-0.41393343,0.044237673,-0.7930646,0.11342869,-0.17975827,-0.15648896,-0.5689288,-0.21518815,-3.2565758,0.20006232,-0.15462397,-0.30967677,-0.24862985,-0.08554823,0.29671046,-0.5017178,-0.8378394,0.100850515,0.036641166,0.79291487,-0.13683702,0.061528135,-0.24509566,-0.19823076,-0.29511064,0.11431831,0.21860029,0.3194163,0.01879388,-0.52455467,-0.27118838,-0.25605735,-0.39815938,-0.08473142,-0.33625913,-0.1424341,-0.00550509,-0.53329426,-0.43832302,0.4071926,-0.2225691,-0.072219156,-0.18954313,-0.04503554,-0.2001403,0.42682195,-0.050888095,0.21451026,0.0876492,-0.08037045,-0.014782645,-0.070950024,0.35546407,-0.018593958,0.28816494,0.38094845,-0.25837642,0.051999044,0.47160044,0.7105665,-0.08455775,1.0163118,0.527331,0.09977911,0.31330732,-0.12791418,-0.11280876,-0.48595858,-0.15793407,0.032503974,-0.45033133,-0.3118729,0.056042697,-0.3058129,-0.776958,0.5865521,0.015637329,0.14375226,0.17083704,0.11976815,0.37522873,-0.2088316,0.05756156,-0.07403877,-0.122626066,-0.39242625,-0.19152485,-0.60206383,-0.40754065,-0.09337298,0.9628187,-0.12218668,0.03200522,0.14858614,-0.19800436,0.1600938,0.3407984,0.06615186,0.30562696,0.5843715,0.107124686,-0.4395081,0.3618492,-0.18797249,-0.19429614,-0.66785884,0.026018882,0.4226873,-0.49257043,0.6984852,0.4890903,0.18067348,-0.117090285,-0.5580288,-0.33177313,-0.06337284,-0.28302863,0.43104616,0.5061044,-0.96005994,0.4185499,0.40790737,-0.263418,-0.73905164,0.75934553,-0.06072781,-0.0049378076,-0.097440936,0.33699086,-0.09957818,0.095055915,0.10224915,0.29209292,-0.2454285,0.15252122,0.16247737,-0.030665353,0.23396224,-0.1426586,0.24138354,-0.5209658,0.116680585,-0.4124894,-0.14870794,0.2546266,-0.08848981,0.11014799,0.18632405,0.0016958466,0.30919042,-0.22488661,0.06495292,-0.14418812,-0.40041557,0.46395698,0.43779492,0.5319352,-0.3920217,0.6291225,-0.08494654,-0.14621094,0.0021582816,-0.03961234,0.3689874,-0.13723935,0.4621409,0.16097338,-0.18689835,0.242797,0.7559182,0.20196019,0.23685347,0.04920538,0.06648456,0.23107924,0.109877855,0.2977487,-0.061352357,-0.6252509,0.06581717,-0.29884347,0.23871274,0.47059724,0.05977462,0.3331618,-0.29261076,-0.29315484,0.060049087,0.3343074,0.052819043,-1.2415365,0.29145548,0.10548713,0.8371482,0.73631305,-0.055210363,0.07343092,0.43162242,-0.14775343,0.0809018,0.4191055,0.0761571,-0.5459351,0.5431708,-0.65247303,0.53790915,-0.13045873,-0.03027915,0.10837024,0.020865342,0.5165674,0.63589376,-0.064889066,0.08465282,0.192572,-0.4193896,0.25606564,-0.3739859,0.22731946,-0.54787374,-0.13226514,0.65044814,0.55724734,0.44158706,-0.2768983,0.019080192,0.057934523,-0.2046342,0.065175734,0.040600546,0.046742443,-0.14063688,-0.80267715,0.011814539,0.46217504,0.21832488,0.10072321,-0.08094921,-0.4480339,0.28540364,-0.17232974,-0.12226152,-0.068030484,-0.64468926,-0.020291567,-0.38478756,-0.45481965,0.2987447,-0.13078439,0.28936115,0.3875527,0.08968479,-0.4190739,0.2517096,-0.08223091,0.8709585,-0.11245944,-0.17406464,-0.30460528,0.21556006,0.2586752,-0.13539326,-0.07469258,-0.44968334,-0.018933645,-0.25215968,0.53955406,0.027727582,-0.27319828,0.20055564,-0.07755051,0.16280209,0.66877675,-0.13264562,-0.07145084,-0.11760066,-0.06464996,-0.24759914,-0.29803804,-0.19819798,0.28435284,-0.024376592,0.12690906,-0.10996912,-0.021087011,-0.020128379,0.37679824,-0.020742754,0.32331502,0.49133334,0.21145217,-0.31789407,-0.1203232,-0.0122031495,0.7265975,-0.062639676,-0.35851762,-0.44285622,-0.39402613,-0.17182232,0.43672743,-0.07402684,0.37797,0.11040185,-0.2137627,0.51941466,-0.045367986,0.81697035,-0.038606834,-0.36789152,0.055095006,0.4843837,-0.021364497,-0.33719602,-0.35644647,0.5497782,0.38683596,-0.24200584,-0.25820398,-0.22401564,0.009488565,-0.17352493,-0.2427193,-0.1624014,-0.12582304,-0.7266906,-0.029064551,0.04651344,0.39201903,0.14603575,-0.20974775,0.32086498,0.27986482,0.031041643,0.19646321,-0.3199829,-0.12605499,0.29098043,0.16427767,-0.05313613,0.08013472,-0.4010503,0.30455118,-0.45964238,-0.14753927,-0.28718433,0.11106639,-0.16719763,-0.29917297,0.18470837,-0.15334417,0.35942528,-0.1810279,-0.02621798,-0.23122413,0.31802192,0.11925048,0.21966892,0.57152206,-0.21902962,0.119338214,0.12226441,0.5057009,0.69156927,-0.17287952,-0.018843174,0.17467324,-0.3291215,-0.60578835,0.3687694,-0.4660491,0.40195933,-0.08883572,-0.021584483,-0.6056935,0.27134955,0.17756309,-0.04156248,0.14481385,-0.76544553,-0.23966007,0.21411943,-0.31086153,-0.12140285,-0.3812747,-0.22447102,0.6101337,-0.14449129,-0.102124654,0.11489522,0.26146892,-0.059474647,-0.44362625,0.09641891,-0.39439902,0.22028816,-0.09373111,-0.37038526,-0.1627835,0.067672126,-0.41540876,0.37967005,0.01591291,-0.17957957,-0.040446598,-0.40729317,0.016027907,0.94170094,-0.23845953,0.21079777,-0.2791664,-0.6231984,-1.0410172,-0.10819011,0.38401926,-0.03580715,0.014060658,-0.5870192,0.07792484,0.055642355,-0.3283886,-0.23020439,-0.14547242,0.40993834,0.03181885,0.48845062,-0.021699468,-0.68944216,0.004506687,0.0849816,-0.16919948,-0.30625156,0.59412956,0.05389164,0.75165945,0.10809932,0.21175297,0.10617911,-0.50722617,0.15482917,-0.05579679,-0.00875816,-0.4426264,0.14230938,127 -799,0.48413393,-0.218581,-0.7071578,-0.070760846,-0.41831556,0.09670945,-0.25648674,0.20965737,0.2464792,-0.49668667,-0.14632176,-0.15610686,-0.009203737,0.405095,-0.20121533,-0.74567175,0.06024608,0.2581248,-0.61852187,0.17417264,-0.5877182,0.5147875,0.20984812,0.5162899,0.013713981,0.0731194,0.18241316,-0.0704752,-0.040216547,-0.10328424,-0.29676548,0.09510705,-0.5997314,0.22876406,-0.18696177,-0.52508974,0.11399513,-0.40470684,-0.3679792,-0.7379305,0.4630116,-0.8699203,0.64826936,-0.12735309,-0.42187676,-0.0858122,-0.017861864,0.33387208,-0.54612887,0.30020446,0.10848817,-0.33309087,-0.06123962,-0.18385702,-0.37141526,-0.29529262,-0.60982466,-0.010440049,-0.5624949,0.18179916,-0.21318053,0.32463288,-0.33695304,0.16346817,-0.20164575,0.17198618,-0.48856363,0.012319803,0.25161722,-0.12321228,-0.054599553,-0.55860907,-0.1828782,-0.17698209,0.28420162,-0.024657378,-0.23794818,0.18251128,0.18087101,0.6154528,0.17942564,-0.25825778,-0.31297174,-0.030862898,-0.22698523,0.62374884,-0.025567004,-0.17434709,-0.34085155,-0.11751477,0.50917774,0.30680266,-0.021846622,-0.2045942,0.088430576,-0.33608508,-0.2571182,0.40765557,0.5531866,-0.41977656,-0.09320571,0.37878636,0.44014192,0.10235455,-0.08415987,0.2883589,0.019130656,-0.6316338,-0.3035185,0.10355037,-0.003007561,0.7566244,-0.2872642,0.38941583,0.57826,-0.22187786,-0.06685009,-0.05344406,0.027255714,-0.13357809,-0.17264758,-0.27961856,0.28226486,-0.44798228,-0.05923338,-0.28869197,0.85961944,0.10541105,-0.74955374,0.3252577,-0.54370004,0.16541593,-0.04750067,0.7453758,0.6416191,0.53590137,0.21650036,0.9189358,-0.5784251,0.14410089,0.04538493,-0.30669215,-0.0017070895,0.0070513487,-0.08467257,-0.3718722,0.05980585,-0.16604495,-0.13947326,0.13765532,0.68786174,-0.36921665,-0.26977757,0.08148811,0.69110864,-0.48337913,-0.09048459,1.0221757,0.96864605,1.2218605,-0.036971275,1.4468621,0.45582315,-0.090853564,-0.43208823,-0.051769387,-0.6431016,0.1614141,0.21200784,0.21560912,0.34323943,0.30108222,-0.14662297,0.50972134,-0.2998716,-0.23041016,-0.19853242,0.1279362,-0.17071684,0.08644251,-0.57440066,-0.3044592,0.07267796,0.11352997,0.10209575,0.3150718,-0.20322709,0.5660158,-0.012933965,1.2082106,-0.048382055,0.13755299,0.0500202,0.39556193,0.22168124,-0.20381482,-0.054365586,0.099767245,0.47211123,-0.08748484,-0.7278817,-0.19300203,-0.2654318,-0.30894077,-0.30119526,-0.24136786,-0.044127252,-0.26241246,-0.3830829,-0.18523137,0.028532693,-0.32179543,0.41018105,-2.0950046,-0.28140703,-0.069078036,0.40475306,-0.18092911,-0.31725746,-0.30639896,-0.44469595,0.3754367,0.3857861,0.50719196,-0.63526326,0.56865066,0.47637978,-0.33038345,-0.09250646,-0.7781324,-0.019227305,-0.12909295,0.1709259,-0.044140633,-0.23341715,-0.24012214,0.017059753,0.66461825,0.026215231,0.062040687,0.12320125,0.6345172,0.07547494,0.6130461,0.17943086,0.6620372,-0.4155682,-0.19809186,0.34111428,-0.5836023,0.32949042,-0.16055238,0.08049228,0.52622414,-0.7626949,-0.88000137,-0.62296486,-0.18514393,1.2776109,-0.35622564,-0.42736506,0.23099904,-0.0960978,-0.28762996,-0.03718431,0.51165056,-0.23171942,-0.086442865,-0.60240096,-0.17757761,0.013130303,0.35065684,-0.09157956,-0.008190681,-0.41413522,0.68755054,-0.2729927,0.41781756,0.51610714,0.2793087,-0.07511213,-0.5133377,-0.04205243,0.74695843,0.28261587,0.19565631,-0.38061717,-0.20110218,-0.070493154,-0.07231774,0.10540786,0.5642914,0.7293148,-0.06729745,0.15610076,0.5484876,0.03278191,0.07527108,-0.084680796,-0.40470698,-0.32490918,0.0067237415,0.6790193,0.78112936,0.00049623224,0.31895956,-0.09194204,0.30287895,-0.17818125,-0.5097012,0.5358601,0.80432916,-0.15394552,-0.25927174,0.69935536,0.41453925,-0.47406697,0.4684439,-0.6374335,-0.36691606,0.39269444,-0.01573277,-0.4536287,0.17109735,-0.33929524,0.033987373,-1.0305452,0.2979358,-0.067006804,-0.6375626,-0.6001275,-0.23261511,-3.269101,0.349002,-0.37898865,0.06372583,-0.034185987,-0.36704293,0.13540235,-0.56434745,-0.6277662,0.18649739,0.11665547,0.4000229,-0.14403374,0.3114804,-0.37905538,-0.33640262,-0.3455108,0.088618256,0.29885367,0.24152885,0.06978363,-0.46156022,0.15388858,-0.24541157,-0.4314073,-0.026410341,-0.7352926,-0.398204,-0.09963577,-0.6006637,-0.23548527,0.8278977,-0.2793854,-0.11304451,-0.38818884,0.07965894,-0.1966237,0.24664895,-0.023695862,0.27383366,0.037086915,-0.19920664,-0.16554427,-0.20810276,0.18297608,0.030909324,0.085799344,0.19933538,-0.3072347,-0.05441512,0.4314845,0.6834573,-0.21077919,0.72279686,0.25115556,-0.011135233,0.14133851,-0.035942752,-0.4332842,-0.6274244,-0.32703364,-0.12052858,-0.61466295,-0.41399035,0.039602507,-0.4338232,-0.90356207,0.6295503,0.047900807,0.041418064,-0.026369134,0.40743533,0.47580895,-0.058427304,0.051411763,-0.028579958,-0.26696837,-0.35255995,-0.47686148,-0.68949455,-0.5580165,0.006506195,1.4765056,-0.2245522,-0.03668417,0.16820844,-0.2785938,0.10295829,0.2899984,0.10026578,0.11995556,0.43521723,-0.1647315,-0.6493548,0.32330927,-0.2672977,-0.14958231,-0.6515356,0.037934005,0.90524644,-0.7477171,0.6209018,0.54683375,0.14982599,0.061093282,-0.7726452,-0.34206772,-0.076093554,-0.0883655,0.6420502,0.22517705,-0.6524646,0.54963803,0.19273306,-0.24402086,-0.67783386,0.379614,-0.11375689,-0.45324397,0.15048257,0.47912765,0.012403806,-0.07438409,-0.27712628,0.111726575,-0.38464484,0.4093883,0.25991356,-0.08324336,0.2667935,-0.26563942,-0.26373208,-0.60384905,-0.15537989,-0.5129714,-0.01999706,0.079921596,-0.025750788,-0.016754806,-0.035492998,0.080081284,0.579894,-0.37879634,0.0657107,-0.25805867,-0.18650131,0.32615668,0.44743252,0.4282167,-0.6018594,0.6100742,0.13202311,-0.08685359,-0.070195146,0.24156076,0.4728601,0.07857267,0.4393022,-0.19339925,-0.06829064,0.13506687,0.6401209,0.19044395,0.47156882,0.34325644,-0.19280572,0.44083798,0.33386782,0.21040432,-0.0941895,-0.22991697,0.04383868,-0.15499483,0.13602698,0.37726438,0.16679187,0.5207748,-0.19069825,-0.06559508,0.14989607,0.113926284,-0.11220463,-1.0308293,0.14169301,0.11236161,0.6665902,0.37141857,0.0926001,-0.054688614,0.593924,-0.30614612,-0.12643875,0.27799392,0.18441708,-0.26938188,0.596845,-0.44099888,0.46991566,-0.3189924,-0.007609648,0.1353462,0.26055387,0.5275923,0.85054755,-0.023363715,0.049614727,0.013596616,-0.08909149,-0.1087259,-0.41572404,0.13954823,-0.5412033,-0.21758509,0.7157309,0.3005146,0.42139658,-0.34437594,-0.13314082,0.09936929,-0.16428845,0.042154778,0.035374347,-0.07731573,-0.1631035,-0.74174184,-0.16982067,0.5154249,0.14668529,0.20619315,0.124019206,-0.3340191,0.39018723,-0.12351953,-0.047748756,0.029733775,-0.77272326,-0.12546746,-0.456746,-0.41155812,0.09802708,-0.27787378,0.33651745,0.2959006,-0.02650703,-0.27532268,0.21505181,0.025818931,0.9848426,0.12065265,-0.09090086,-0.3811033,0.16364141,0.45778242,-0.3440306,0.028351525,-0.19503136,0.188339,-0.5021084,0.41383934,-0.09563557,-0.15025651,0.13312599,-0.05260623,-0.06779932,0.51079154,-0.1924054,0.013746209,0.3857576,0.05261439,-0.39016843,-0.10771153,-0.50154805,0.19851243,0.07125395,0.005317653,0.12444302,-0.13065735,0.011420873,0.5132708,0.16454142,0.32481262,0.29787078,0.027405528,-0.4352822,-0.043627977,-0.20572019,0.5569415,0.016749732,-0.26443878,-0.41344306,-0.539856,-0.08062142,0.41580728,-0.13368218,0.08528001,0.017433017,-0.27618197,1.0273534,0.32498607,1.1183141,-0.04246067,-0.31945452,0.08716229,0.69995624,0.1351208,0.12403896,-0.24009842,1.218417,0.64336175,-0.3074673,-0.257462,-0.42639843,-0.19515993,0.03674403,-0.37776694,-0.3511939,-0.16039114,-0.5499606,-0.09945258,0.22448057,0.30049738,0.1832165,-0.093846776,0.32431278,0.3739375,0.12981527,0.44701505,-0.62558967,-0.13234796,0.3756411,0.25194862,-0.026063472,0.14424837,-0.3744409,0.36745343,-0.70956117,0.15912168,-0.37676108,0.17975332,-0.017287448,-0.40839753,0.26733455,-0.038115785,0.2725104,-0.49250785,-0.18400602,-0.28989774,0.6701817,0.3642976,0.32001612,0.79952437,-0.32118908,-0.1430525,0.032299943,0.5283474,1.3092929,-0.20180011,-0.0026293893,0.3520927,-0.32330444,-0.56926566,0.17504983,-0.45336494,-0.10202792,-0.1681272,-0.3700266,-0.4899666,0.27373627,0.10704237,0.072310485,0.16750962,-0.5063587,-0.0033293988,0.4551835,-0.18086128,-0.15559712,-0.34760913,0.3746624,0.65600103,-0.15562014,-0.45489332,-0.049279302,0.3957093,-0.32226714,-0.6701948,0.08966172,-0.446673,0.42380455,0.07378062,-0.19176285,-0.13600759,0.15088308,-0.46387073,0.07473144,0.19151556,-0.2268997,0.1612508,-0.2838603,-0.050151143,0.947807,-0.0009513398,0.26556817,-0.75093025,-0.458048,-1.1309338,-0.20206942,0.37210777,0.3050962,0.031563904,-0.68418676,-0.056442548,-0.15693416,-0.15722801,0.028004626,-0.35072684,0.41387495,0.16191487,0.40804207,-0.09924232,-0.9460979,0.17041461,-0.006785234,-0.66471547,-0.4505415,0.6137869,-0.12469884,0.6933611,0.1473372,0.10932913,0.095462024,-0.55086917,0.39108256,-0.28842768,-0.26979628,-0.80444413,-0.1505021,130 -800,0.63322747,-0.23686962,-0.33810577,-0.14790703,-0.12589721,0.18432207,-0.18983392,0.43867216,0.27762243,-0.46143237,-0.34319806,-0.21322243,0.050149556,0.19728361,-0.17755719,-0.60296535,0.10990363,0.18390135,-0.355652,0.46986774,-0.4306835,0.2875452,-0.02428481,0.68162704,0.11405057,0.21436127,0.22620714,0.01700146,-0.31493402,-0.4205643,-0.1090386,0.4735718,-0.6983226,0.26267716,-0.29359755,-0.44906965,-0.049141515,-0.596569,-0.28461406,-0.7364482,0.13283378,-1.0145144,0.6070024,0.05447339,-0.23939298,0.30803123,-0.07806111,-0.031077852,-0.15068996,-0.033669997,0.004983256,-0.24351485,0.047744423,-0.2953507,-0.257977,-0.28240493,-0.5602011,0.10014369,-0.43320695,-0.17622982,-0.50365615,0.10859436,-0.27788267,-0.07059062,0.1443007,0.5713374,-0.42292118,0.2652571,0.004742076,-0.17556034,0.19115168,-0.3891395,-0.27888274,-0.24261063,0.21387893,-0.3453404,-0.2633946,0.16614088,0.32046673,0.4051442,-0.10871265,-0.110378854,-0.29440644,-0.057144735,0.09279812,0.5614233,-0.12339205,-0.7380534,-0.19597745,-0.13816702,0.17054272,0.05972654,0.29133168,-0.21993883,-0.07659612,-0.112266935,-0.26882258,0.58393335,0.46486616,-0.32316718,-0.27822354,0.24921514,0.35566804,0.05202058,-0.12890865,0.0025450934,0.12682031,-0.5096625,-0.15449397,-0.07851467,-0.077457,0.6672287,-0.11496696,0.38568512,0.6354573,-0.37520525,-0.049343992,0.097296305,0.044916596,-0.20850599,-0.19222802,-0.2418396,0.34736165,-0.38093862,0.04465298,-0.24647017,1.0013549,0.2313416,-0.76322144,0.3216149,-0.52168673,-0.11028135,-0.091780454,0.46105662,0.46554574,0.4370034,0.35081473,0.5545731,-0.40171215,-0.0704949,-0.009038019,-0.49727878,-0.038147677,-0.27306077,-0.067762226,-0.33435568,-0.07752537,0.09746516,-0.11688063,0.14875625,0.5544098,-0.5082492,-0.06588126,0.20065308,0.7079229,-0.3869281,-0.25902298,0.9744315,1.022012,0.85920143,0.075456314,1.2530751,0.35347793,-0.052188247,-0.00033231577,-0.07360241,-0.7370937,0.38740405,0.2880945,-0.5491994,0.29709634,0.16651101,-0.0732872,0.1835013,-0.37050557,-0.16600138,-0.18440627,0.14866649,0.107451655,-0.002094239,-0.49245998,-0.37007096,-0.030218268,0.020473788,0.292577,0.21141426,-0.32477272,0.5514565,0.07421651,1.5031937,-0.0341541,0.023717513,-0.13085054,0.6705151,0.26858565,-0.006651312,-0.1859713,0.3465933,0.24533038,0.08924662,-0.57135135,0.016405175,-0.080644526,-0.4216113,-0.20670716,-0.38159788,-0.057607513,0.006027907,-0.25537667,-0.15106778,0.009790228,-0.3446156,0.5105767,-2.6301167,-0.11288634,0.107751556,0.41546166,-0.16376977,-0.3743495,-0.18664587,-0.51764804,0.35604832,0.32706162,0.420781,-0.6057434,0.22977622,0.57479805,-0.3477629,-0.3673083,-0.59030986,0.16630505,-0.18871166,0.31946933,0.05004223,0.016220788,-0.10819142,-0.016415536,0.70427436,0.043105185,0.16273747,0.17437315,0.43597695,0.06563633,0.31168973,-0.03174084,0.6144547,-0.19595592,-0.28809428,0.40705395,-0.28062776,0.16693456,-0.31836018,0.16207401,0.48849893,-0.4438208,-0.8807399,-0.7649223,-0.26030594,1.1395171,-0.15415813,-0.4316496,0.053902835,-0.07652446,-0.296949,0.012519161,0.5072004,-0.2866269,0.050106887,-0.6306183,0.037357945,0.021523306,0.111964226,-0.0040196627,0.09699901,-0.4709996,0.48189768,0.008958645,0.26930818,0.20053624,0.3261695,-0.2483697,-0.62505186,0.23259918,1.1163362,0.25621238,0.22389932,-0.41542625,-0.21006113,-0.1895066,0.013788794,-0.02941746,0.5883846,0.65949845,0.0009873646,0.15636447,0.33568773,0.12412974,0.112057745,-0.0947214,-0.2819246,-0.13159646,0.0010401806,0.69846827,0.68875855,-0.20739035,0.44332853,-0.17522074,0.4320741,-0.21643583,-0.42694333,0.6060837,0.9771328,-0.20494378,-0.22865087,0.77094364,0.45571744,-0.46394768,0.42987236,-0.6833047,-0.38070926,0.4497324,-0.20972149,-0.4617664,0.25790638,-0.24743716,0.12536854,-0.82232314,0.42478248,-0.029499436,-0.5224332,-0.49309942,-0.04777882,-3.9393823,0.16060664,-0.14586693,-0.26292595,-0.18619685,-0.29029164,0.17844681,-0.5142154,-0.38158083,0.17606086,-0.0035933654,0.8311341,-0.09228613,0.21703869,-0.1741945,-0.2868407,-0.25200328,0.08041287,0.17773636,0.39238873,-0.054110277,-0.30557334,0.097937524,-0.2525867,-0.33033213,0.05815233,-0.4647263,-0.577048,-0.015116982,-0.65676725,-0.31646517,0.6768779,-0.49082884,-0.02034069,-0.32091537,-0.001046747,-0.15008946,0.39912197,-0.03698623,0.10777732,0.12588187,-0.010109906,0.07758018,-0.34757924,0.4665617,0.047877375,0.13316126,0.48364767,-0.28345945,0.21478014,0.48887035,0.40936217,-0.053782377,0.894084,0.36465302,-0.046111524,0.26892292,-0.3145051,-0.41977015,-0.51315814,-0.24257766,-0.04657859,-0.4914285,-0.33469787,-0.07731487,-0.28862992,-0.825896,0.6857452,-0.032767463,0.22247498,-0.10107714,0.3334136,0.49820065,-0.18124281,-0.07949752,-0.023301765,-0.0716509,-0.49602893,-0.34803,-0.5747941,-0.51896024,0.017187187,0.7619907,-0.16258569,-0.022902116,0.09221747,-0.003063942,0.0053122393,0.01024128,0.021781547,0.0629307,0.5348821,0.012875046,-0.76085377,0.43028644,-0.15435894,-0.18832551,-0.5612537,0.20034361,0.7527283,-0.8118163,0.46444333,0.5117741,0.06507662,-0.04946685,-0.42533574,-0.25548604,-0.12338557,-0.10028651,0.399376,0.34150115,-0.9603348,0.50192076,0.21351291,-0.29560283,-0.7861615,0.4964743,-0.018467383,-0.2755942,-0.022063322,0.39470363,0.15044515,-0.002337883,-0.2757387,0.19133301,-0.3788481,0.202493,0.009122789,0.014479227,0.41737887,-0.20438154,-0.052648474,-0.7115162,-0.073575504,-0.5587161,-0.49574825,0.13129327,0.12867738,0.05313869,0.38644662,0.041922156,0.29256386,-0.45531312,0.086747855,0.098939426,-0.2396158,0.34022263,0.4315547,0.6983792,-0.39699832,0.5891636,0.07079109,0.018419355,0.1300348,0.023351485,0.5002671,0.021887481,0.39850652,0.20934594,-0.20930225,0.18457831,0.77268356,0.20184381,0.61690545,0.12446061,-0.09267708,0.30272833,0.08354763,0.36203265,0.08543825,-0.5951201,-0.09148257,-0.40785193,0.101060666,0.5302379,0.22615527,0.27460644,-0.034896377,-0.42169046,0.13844952,0.114825524,0.012524165,-1.1432508,0.2098897,0.09733554,0.78680545,0.3544728,-0.054044712,0.09633329,0.6799945,-0.07881716,0.1839658,0.27680972,0.040116027,-0.4546561,0.5857913,-0.60610485,0.4262366,-0.12203737,-0.07567909,0.014299353,-0.12647404,0.30803436,0.7770135,-0.19512929,0.2274162,0.02809906,-0.182191,0.11696453,-0.63529867,0.25585455,-0.5243893,-0.10214186,0.7797281,0.53851753,0.24193633,-0.22031455,0.061851736,0.08368478,-0.053929668,-0.017482886,0.09722374,0.06292116,-0.0118924575,-0.73159593,-0.15299025,0.6937185,0.26418558,0.12740092,-0.068751164,-0.09655618,0.2710798,-0.22738199,-0.12487944,-0.03212614,-0.6661667,-0.04128234,-0.3360258,-0.5716472,0.49478117,-0.083506666,0.12274174,0.16346996,0.08050262,-0.2646956,0.33186123,0.43537435,0.69234353,0.2571229,-0.17053187,-0.3640779,0.23973124,0.37358585,-0.32742944,-0.18848269,-0.3032308,0.013474271,-0.5210606,0.22017519,-0.106167555,-0.4478949,-0.0018457124,0.09293156,0.09084833,0.5658658,0.12113852,0.016200176,0.113595076,-0.2090858,-0.4148074,0.07046252,-0.249672,0.22836442,0.30492836,-0.3978577,-0.111436896,-0.1319798,-0.17975299,0.2847425,-0.048199445,0.49908915,0.34644425,0.090780646,-0.25254464,-0.0987879,0.07155715,0.70467025,-0.03481105,-0.18734454,-0.27812675,-0.32060823,-0.29201522,0.27090612,-0.034845006,0.090420105,0.26625824,-0.33206466,0.6606454,-0.019008264,1.0181562,0.07716903,-0.44610605,0.19354074,0.4438688,0.034574736,-0.0547175,-0.4703822,1.2077551,0.2883539,-0.14239778,-0.28372845,-0.40515232,-0.037056025,0.0919804,-0.28488594,-0.2650455,-0.23330085,-0.71793586,-0.2609167,0.27023438,0.34254536,0.21348898,-0.06104197,0.25027913,0.38914815,0.029741758,0.4068085,-0.5682903,-0.14132182,0.41926143,0.406979,0.003590713,0.20290227,-0.29351962,0.37845743,-0.56725097,-0.007687012,-0.40227315,0.1566461,-0.3425138,-0.36422208,0.25805077,0.23548599,0.44504797,-0.26231062,-0.4991045,-0.332765,0.39345184,0.095744826,0.14054184,0.38307032,-0.20974104,-0.07087836,-0.18596907,0.47826982,1.170936,-0.07182161,0.21351047,0.5406586,-0.2443216,-0.527413,0.33728686,-0.3500248,0.31781173,-0.10433605,-0.18814135,-0.42573962,0.2907009,0.1320118,0.035715554,0.11675283,-0.5384187,-0.101408064,0.41308415,-0.12595437,-0.19353189,-0.23797925,0.04114646,0.55698186,-0.21823435,-0.25739312,0.12850194,0.340518,-0.15689889,-0.52392226,-0.23059237,-0.24099381,0.34287772,0.07116748,-0.31385818,-0.14731704,-0.13916847,-0.4788978,0.13515545,0.19745927,-0.39204633,0.08275617,-0.250914,0.13815407,0.9606841,-0.21351366,0.1028117,-0.4789168,-0.54219234,-0.9126475,-0.28879836,0.46452975,0.08285623,0.05019185,-0.5513522,-0.027719835,-0.13214691,-0.24700606,-0.08428657,-0.42177153,0.3279291,0.16215634,0.60125893,0.0010181492,-0.986406,0.14135605,0.20219664,-0.3108281,-0.8017292,0.40316805,-0.15923968,0.8829997,0.09151492,0.01258073,0.331762,-0.6017881,-0.13137095,-0.2701681,-0.16545027,-0.6367959,0.31754076,137 -801,0.43221655,-0.25019357,-0.43143913,0.0706752,-0.37111935,-0.029276466,-0.23935784,0.57134503,0.2585113,-0.3841648,-0.17827709,-0.25547972,0.030723602,0.26768258,-0.15247881,-0.09914252,0.033247292,0.16118734,-0.5429389,0.5996351,-0.32686114,0.25641534,-0.019025704,0.49882603,0.44903216,0.43147126,-0.021933874,0.2946218,-0.01541698,-0.18016784,-0.26299262,-0.19513898,-0.7123526,0.19714886,-0.3708454,-0.59348243,-0.12248165,-0.64327043,-0.56830496,-0.83161765,0.6486468,-0.9617675,0.5198768,-0.00893568,-0.17229472,0.29669914,0.30580142,0.42580295,0.009490694,-0.1873724,0.08659321,-0.09972197,0.3402004,-0.39179602,-0.124375015,-0.32115784,-0.54127085,-0.1569191,-0.40878233,-0.22397375,-0.19541408,0.1837792,-0.3210563,0.07686864,-0.108100645,0.45461473,-0.33024096,0.33678058,-0.013258715,-0.23102105,0.038228557,-0.5238454,-0.16631968,-0.110856235,0.24871321,-0.051244225,-0.12794857,0.40692914,-0.035015196,0.21491891,-0.18925802,-0.021639893,-0.33522883,-0.072047025,-0.07586082,0.5009574,-0.14990868,-0.50055027,-0.14049514,-0.08739707,0.46617457,0.24922584,0.32721135,-0.08731914,-0.06676194,-0.22424264,-0.13191068,0.5669356,0.5318602,-0.12645523,-0.17709374,0.27624607,0.687859,0.21143816,-0.37587634,0.03656669,0.14673452,-0.42697784,-0.11404506,0.007948478,-0.105895996,0.66690487,-0.055744004,0.39231643,0.45246553,-0.42916933,-0.030741593,0.21065712,0.17519237,-0.032446027,-0.15799804,-0.41487074,0.34658182,-0.31896117,-0.007588014,-0.2707548,0.5394109,0.12628941,-0.6302705,0.35415354,-0.7057721,0.04961482,0.109013855,0.36505738,0.57652265,0.6131513,0.41228664,0.7445747,-0.24132274,0.016808897,-0.2905689,-0.12306247,0.11386839,-0.30279323,0.20820306,-0.3674806,-0.08903261,-0.03188666,-0.15742777,0.042101685,0.47606003,-0.5209154,-0.12911926,0.07659324,0.6844112,-0.19809043,0.022500744,1.0085152,0.96193457,0.9493656,0.041459512,0.74717206,0.11215097,-0.12625496,0.045510728,-0.028836563,-0.77675986,0.216211,0.14687237,0.00045766434,0.5612343,0.0748225,0.1404217,0.14370322,-0.49167252,-0.006648836,-0.047770593,0.20677917,0.19285351,-0.070552275,-0.38735342,-0.34238863,-0.054053824,0.14087321,0.2542623,0.32353094,-0.354517,0.38935566,0.083102904,1.799727,0.14758605,0.09809148,0.2280345,0.8126197,0.295287,-0.43443534,-0.08692547,0.32613328,0.19653322,0.16311069,-0.57391423,0.13280226,-0.21244073,-0.40823862,-0.056864034,-0.39787412,-0.15807214,-0.24827276,-0.38185036,-0.3957092,-0.22039044,-0.21615808,0.33217385,-2.8940036,-0.11599871,-0.048457105,0.5565824,-0.32806733,-0.41815087,-0.12322316,-0.5738897,0.26072016,0.30191085,0.40284202,-0.70619553,0.42449674,0.54227114,-0.55122787,-0.068029754,-0.5369055,0.07037306,-0.03495678,0.30388793,-0.13086812,0.003846243,0.26467484,0.1631263,0.44775364,0.11381942,0.057880938,0.24162167,0.5422221,0.017634341,0.5600201,-0.06356559,0.2051516,-0.4770031,-0.13829626,0.37336078,-0.5901095,0.04156057,-0.21021755,0.124145925,0.63744515,-0.5433707,-0.7904064,-0.5665359,0.23595862,0.94464904,-0.13484257,-0.7103502,0.10277843,-0.6672628,-0.41949287,-0.32835063,0.61748815,-0.19254166,-0.04806942,-0.5211345,-0.21378545,-0.2936274,0.29042307,0.06645136,-0.083263636,-0.3116254,0.7751236,-0.04488367,0.5183835,0.14306866,0.13516794,-0.70519155,-0.530462,0.25571486,0.54663396,0.40355852,0.05948912,-0.14833592,-0.13911913,-0.2053122,-0.08373847,0.11297812,0.7071504,0.62597245,-0.17371424,0.23701783,0.4147396,-0.10716513,0.050234508,-0.26138887,-0.25974774,-0.338509,0.09877352,0.62891287,0.82245,-0.08961151,0.34258637,-0.022548534,0.26588494,-0.29628333,-0.543984,0.38130936,0.7653287,-0.073492475,-0.293587,0.41630152,0.60483027,-0.42564598,0.4284315,-0.7683282,-0.43563342,0.33622566,-0.100580074,-0.5144914,0.29117057,-0.22457911,0.12644152,-0.45613933,0.11059889,-0.11368775,-0.42012623,-0.5536923,-0.13362205,-2.0949757,0.11301752,0.030335188,-0.33345208,-0.11492625,-0.30130523,-0.012273818,-0.60258967,-0.56033987,0.22243802,0.10628331,0.9141054,-0.08029528,0.1510279,-0.2036617,-0.3988247,-0.47345996,0.21649873,0.19253434,0.39019454,-0.15429772,-0.41217032,-0.19031899,0.004051499,-0.58012176,-0.014538054,-0.38792738,-0.32320556,-0.28200498,-0.45479372,-0.36305654,0.5930895,-0.22685416,0.08899488,-0.34619108,-0.1846916,-0.03082143,0.34861585,0.10406992,-0.006772349,0.11726991,0.008790448,0.32500124,-0.2288049,0.25500485,0.015066594,0.3688712,0.3470912,-0.124680854,0.1732406,0.37049296,0.69476193,-0.05954883,1.0299801,0.21722424,-0.123937376,0.40519503,-0.05847907,-0.3599731,-0.36444554,-0.010641371,0.27157637,-0.30284417,-0.24086489,-0.22989173,-0.3779478,-0.7584365,0.44574976,0.1275299,0.3270407,0.08485388,0.47276488,0.5966707,-0.2072369,-0.04563946,-0.06045546,-0.20327957,-0.64702415,-0.38246524,-0.52038735,-0.37970462,0.2902677,0.8495192,-0.2966337,0.025911339,0.2353431,-0.30270723,0.059838813,0.18505232,-0.2293642,0.06381296,0.41277122,-0.23817702,-0.52856714,0.40707418,-0.29791373,-0.24429916,-0.5738629,0.2742715,0.5498385,-0.55827093,0.29388148,0.019578636,0.056776505,-0.4830365,-0.4776756,-0.02834247,0.07999812,-0.1927644,0.26957354,0.4487444,-0.8591097,0.24777704,-0.06778506,-0.34045827,-0.6611746,0.51410526,-0.04912473,-0.41527343,-0.52424353,0.30219635,0.18378703,0.034341816,-0.26250574,0.06419591,-0.44516423,0.11165679,0.19953074,-0.019844295,0.22099382,-0.13654484,-0.16802992,-0.56841415,0.3058408,-0.40030053,-0.2860968,0.46968865,0.06611159,0.14825608,0.33365414,0.09879386,0.18308552,-0.3429799,0.12766099,-0.10594559,-0.14126836,0.4853952,0.3464651,0.5835896,-0.58347094,0.5820431,0.16884239,-0.14693995,0.36897373,-0.0025270383,0.27182218,-0.09613732,0.30540028,0.08789251,-0.3193849,0.07245293,0.8337374,0.36032298,0.4474977,0.0044401684,0.010890226,0.103477396,0.090813,0.20764148,-0.013581794,-0.6840491,0.09099477,-0.33650294,0.0763433,0.47163352,0.064846665,0.3226035,-0.09138056,-0.27357307,0.08012412,0.20900856,-0.29413152,-1.4610858,0.08146923,0.121631615,0.95158917,0.5191662,0.002948304,-0.0456471,0.76183814,-0.052404653,0.17492068,0.27021146,0.28941098,-0.4583306,0.59226733,-0.632405,0.616573,0.05945086,-0.16141193,-0.048783284,0.076506175,0.4929601,0.6763563,-0.27285913,-0.05760358,0.06406385,-0.24260306,0.04619247,-0.39225593,0.19071573,-0.77561903,-0.29464957,0.6456184,0.3685108,0.45626035,0.0709121,-0.012334589,-0.07854978,-0.0931035,0.03319936,0.00024569035,0.12746851,-0.04008604,-0.66315883,-0.08055442,0.5332424,-0.07212711,0.12914258,0.06980031,-0.1115545,0.16537966,-0.12599045,-0.18069045,-0.07359638,-0.8970146,0.18466842,-0.27791455,-0.45820627,0.68406326,0.047858115,0.21725242,0.28328708,0.04185623,-0.23482496,0.3128044,0.3965989,0.59870845,-0.20479374,0.011680879,-0.4218975,0.2580028,0.124420725,-0.25040576,0.09177259,-0.013235201,0.08663404,-0.5160603,0.40835667,-0.040719375,-0.13744062,0.0026372473,-0.100654,0.07470193,0.7353532,0.06890609,-0.07418411,-0.026729828,-0.2334439,-0.22816773,-0.21731603,-0.25614598,0.21305592,0.17613375,-0.25735867,-0.034281913,-0.118326224,-0.07600004,0.41869593,0.018643558,0.5807669,0.23756933,0.2353841,-0.3693433,0.13373278,0.002749741,0.5986702,-0.06254535,-0.080245234,-0.38003477,-0.50523347,-0.4779539,0.5087246,-0.007602284,0.2382635,0.15048902,-0.07297533,0.98365325,-0.050332233,1.1587445,0.046070367,-0.35954773,0.36613917,0.5083279,0.009610668,-0.045351654,-0.4426696,0.87431747,0.32333183,-0.052730028,-0.10258532,-0.074425615,0.045057323,0.22629182,-0.3162213,-0.22118759,0.02463615,-0.52056044,-0.19061466,0.2221307,0.24683511,0.1575178,-0.26987022,0.17328985,0.55207676,-0.109011106,0.35285047,-0.3778635,-0.17729859,0.50067955,0.18718602,0.03996952,0.09023515,-0.47964525,0.30818275,-0.38857833,0.040084653,-0.48285052,0.27800414,-0.0067782104,-0.46833754,0.10031592,0.067869715,0.4951278,-0.47757474,-0.42661333,-0.2871935,0.47268116,0.1723149,0.2667449,0.24674685,-0.2232523,-0.048717584,-0.24500196,0.46255684,0.7342997,-0.30106947,-0.03346766,0.37530681,-0.46336177,-0.7622657,0.3665808,-0.31798533,0.26009542,0.08131453,-0.022612205,-0.3549784,0.24658917,0.28304413,0.06721667,-0.22116898,-0.7800233,-0.31603566,0.299027,-0.19887145,-0.12896846,-0.46352938,0.11840313,0.5092552,-0.06693391,-0.27130732,0.0770231,0.37424245,-0.13628255,-0.3794782,-0.013976905,-0.29829794,0.16414826,-0.19787128,-0.28667846,-0.2844768,0.24784613,-0.52892524,0.18278511,-0.06306664,-0.29323956,0.069469675,-0.24657564,0.022152072,0.978533,-0.22622192,0.0322499,-0.32224903,-0.5276529,-0.9435735,-0.38405037,-0.03467882,0.195804,-0.0021264472,-0.7017514,-0.10577756,-0.17229111,-0.30931625,-0.012159586,-0.38253602,0.46325448,0.1990099,0.37348923,-0.029885843,-0.80421656,0.16210182,0.11442507,-0.3441057,-0.53482497,0.58682543,-0.04619621,0.878345,0.19581725,-0.02995991,0.20820837,-0.5116373,0.101765156,-0.19683616,-0.03606379,-0.72145814,0.18883973,142 -802,0.4736614,-0.4135653,-0.37719646,-0.39644182,-0.19600224,0.07099403,-0.24809368,0.54363364,0.17821603,-0.6732175,-0.32665107,0.027459584,-0.20370658,0.2887254,-0.21943597,-0.8280806,0.05139764,0.29089165,-0.44319037,0.7276272,-0.33223757,0.27785143,-0.12765472,0.21854705,0.2501862,-0.010499218,0.19384825,0.21021903,0.15008877,-0.4635636,0.11658793,0.101180054,-0.28300592,0.4774063,-0.035013963,-0.44110408,-0.07329655,-0.19258241,-0.20668699,-0.8191676,0.26279178,-0.85031533,0.3535898,-0.17411004,-0.41697773,-0.03634131,0.23360781,0.17690659,-0.08512581,0.15024678,0.04989228,-0.08053725,-0.31091198,-0.19464476,-0.2425276,-0.5754164,-0.68152183,0.12699963,-0.28957537,-0.066439666,-0.10815525,0.394024,-0.26256475,-0.08820974,-0.3684086,0.7684538,-0.27911726,-0.057859167,0.19851755,-0.14191273,0.30666167,-0.6553339,-0.20638289,-0.08954564,0.24262704,0.0004348755,-0.33096132,0.1790772,0.2618222,0.6044591,0.011020889,-0.26203772,-0.19866014,-0.22928579,0.100842506,0.4449325,-0.2118923,-0.59357196,-0.24888285,-0.19803433,0.42447445,0.34026083,0.40220508,-0.3708643,0.13563572,-0.02247417,-0.32443717,0.5015783,0.61938584,-0.41691044,0.114414304,0.27484164,0.554908,-0.08688996,-0.27197793,0.18045855,-0.01871186,-0.6061474,-0.3000823,0.38668966,0.010614852,0.3425378,-0.29440126,0.21411389,0.28749445,-0.123196214,-0.03470848,0.21604355,-0.127421,-0.1099055,-0.42723277,-0.46437374,0.35970676,-0.4222058,0.081039704,-0.6246279,0.76110166,-0.052242015,-0.8040386,0.3608857,-0.44112325,0.25100923,-0.26100838,0.5804682,0.7838256,0.5289568,0.16006118,0.7814382,-0.19578552,-0.10541576,-0.17828172,0.0746331,-0.029197784,-0.18094623,-0.14088254,-0.45888937,0.033026744,-0.05166157,0.10445408,-0.07792479,0.65961236,-0.5080547,-0.28209195,0.15705802,0.8566614,-0.27762204,0.09390909,0.8751672,1.0675809,1.1475803,0.21543597,1.2174504,0.27763948,-0.053536255,0.039615434,-0.061414137,-0.581865,0.23156185,0.56184906,0.567563,0.07266665,-0.18219042,-0.096881054,0.5264325,-0.42636338,-0.02708154,-0.23709273,0.2638549,-0.12714858,-0.060163397,-0.46093348,-0.15307307,0.25114962,0.00045285,0.09278408,0.32268393,-0.30651045,0.55774164,0.07202123,1.1433028,-0.22049291,0.07888753,0.07516415,0.5142129,0.12327087,-0.36031243,0.30883786,0.003801922,0.49529088,-0.22029994,-0.60361934,0.25335908,-0.1486802,-0.49228707,-0.18540448,-0.37216893,0.031054607,-0.2733952,-0.302866,-0.34210935,-0.0070447563,-0.43171147,0.3421626,-2.4059927,-0.20062758,-0.27781546,0.22237442,-0.24749857,-0.4080135,0.06464601,-0.5181116,0.7695899,0.32112023,0.42066696,-0.5746748,0.401436,0.43990085,-0.5311814,0.06242995,-0.9585615,-0.017738923,-0.15396483,0.5024813,0.20035698,-0.11449412,-0.04584161,0.095712036,0.49369454,0.04606965,0.24209802,0.48115852,0.29249644,-0.2345789,0.49140847,-0.10059538,0.5198047,-0.5396531,-0.20153351,0.4155203,-0.48476708,-0.037207544,-0.011407122,0.17717534,0.49799815,-0.76854247,-0.6026917,-0.95660686,-0.6355794,1.2755253,-0.19911897,-0.713898,0.19203459,-0.31304368,-0.21579635,-0.039111298,0.8007396,-0.24967742,-0.07714621,-0.82416373,-0.102191366,-0.24647613,0.48821056,-0.19186532,-0.243939,-0.53302425,0.67957526,-0.15439211,0.4261547,0.3915458,0.20645559,-0.48541823,-0.4483726,0.009274651,1.1404324,0.44396126,0.091556646,-0.075497456,-0.0549739,-0.3997544,0.062437892,0.06948945,0.8900835,0.49042475,-0.098215304,0.031758573,0.46930978,-0.22002274,0.10034388,-0.14520462,-0.46720275,-0.46349716,0.12496028,0.8182071,0.4077581,0.27420732,0.3043695,-0.1237697,0.2748854,-0.4950408,-0.44654,0.4441085,0.80604535,-0.18462501,-0.37306273,0.78897,0.5660727,-0.20606871,0.44824076,-0.76727515,-0.45909628,0.33591452,-0.09581888,-0.5087339,-0.021952609,-0.49817804,0.37164256,-0.7494848,0.32285967,-0.6971404,-0.47396716,-0.65165085,-0.15278386,-2.8108892,0.24202526,-0.017478263,-0.1872126,-0.21032894,-0.3507739,0.5707622,-0.2788696,-0.47436634,0.06650955,0.10056751,0.762412,0.029755838,-0.14239551,-0.525154,-0.1738307,-0.32060686,0.21677661,0.039627474,0.30150226,-0.10826272,-0.4006963,0.12462599,-0.20354255,-0.37002078,-0.05741905,-0.7366349,-0.47229087,-0.2208277,-0.51954967,-0.3089878,0.5555729,-0.2236983,0.120320566,-0.3223684,0.011218789,0.011746119,0.110669285,-0.05183951,0.17854132,-0.01613576,-0.24706401,-0.12836194,-0.37944794,0.13502938,0.09262713,0.039588545,0.34330082,-0.25507304,0.21070777,0.39630786,0.5353752,0.0023119797,0.9779973,0.47571316,0.03732747,0.42283964,0.054712985,-0.20864837,-0.4164723,-0.06721238,0.08029672,-0.6311066,-0.2449547,0.075705,-0.24136691,-0.79924613,0.5222728,0.16032928,0.21351852,0.11029162,0.35108885,0.37023854,-0.09412918,0.10132081,-0.044466753,-0.2919295,-0.41388312,-0.48397338,-0.8427646,-0.413169,0.0038891237,1.1696924,0.084175594,0.06423435,0.11948592,-0.20612456,0.12306065,0.3249127,0.00703909,0.18722849,0.1546288,-0.051689804,-0.6282209,0.3778306,-0.021618938,0.1117843,-0.39429688,0.5366102,0.88098985,-0.5339512,0.32423583,0.32469192,-0.0054414924,-0.6578214,-0.61635345,-0.038032692,0.048541177,-0.1129087,0.4638025,0.3807143,-1.0029829,0.5656192,0.1707484,0.20321614,-0.8343957,0.5489836,-0.14107578,-0.084081866,-0.04678149,0.35650015,0.097752266,-0.049288,-0.30537978,0.2584095,-0.3898277,0.21942027,0.11078497,0.02740707,0.30674592,-0.33348575,-0.07726588,-0.84441644,-0.004884007,-0.91122514,-0.37375522,0.3393847,-0.17357814,0.12926538,0.39086106,-0.037878793,0.50664973,-0.020956332,0.24748783,-0.026168471,-0.33649576,0.49267206,0.6485425,0.24074781,-0.35797492,0.6639842,0.20871894,0.13953902,-0.48287198,0.19133,0.41811815,0.16066085,0.5860246,-0.3613807,-0.21084501,0.4524438,0.87852836,0.19253182,0.29636037,-0.10550698,-0.24049236,0.04016615,0.015923113,0.29194668,-0.14645462,-0.49712315,-0.19250703,-0.17425478,0.14762898,0.46590567,-0.08992106,0.47926092,-0.03054894,-0.30870816,-0.0026427854,0.07401014,-0.071539424,-1.4671243,0.33764258,0.1072804,0.8746206,0.6097567,0.027878946,-0.27120033,0.7470886,-0.28539005,0.08761609,0.32134447,0.062382013,-0.11372057,0.499463,-0.7077353,0.42299366,-0.11026821,0.13838102,0.010696232,-0.10612776,0.43812618,0.73278505,-0.06894968,0.28990427,-0.0918409,-0.31368393,0.3263812,-0.27439275,0.20419447,-0.48653507,-0.34251985,0.5848801,0.3827301,0.53861815,-0.31167236,-0.018645465,0.16942413,-0.006033717,0.024763584,0.009086999,-0.08530074,-0.434137,-0.5425022,-0.14140652,0.38674465,0.12115768,0.114131,0.26177958,-0.41220784,0.12080413,-0.040063065,0.1555496,-0.06945916,-0.46412468,-0.04805985,-0.25921395,-0.060910255,0.3266177,-0.41181687,0.094216645,0.26945034,0.086945355,-0.24644543,-0.098359756,0.1360947,0.642869,-0.027448693,-0.11833572,-0.37517938,-0.22420923,0.021817235,-0.42824554,-0.09583828,-0.24442632,0.048224498,-0.93357897,0.35482517,-0.034540534,-0.32733423,0.45717597,0.019946061,-0.08047189,0.53966355,-0.11350111,-0.2087541,0.26369336,-0.11574229,-0.11846372,-0.10061406,-0.06630673,0.4249387,0.02512387,0.4153442,-0.0685341,0.005252523,0.047695994,0.43048063,0.11457813,0.14691837,0.4632611,0.08754036,-0.38028374,0.2910172,0.026563196,0.6612327,-0.10911108,0.14452493,0.017178258,-0.43493965,-0.35518515,0.25893193,-0.12266179,0.42825437,-0.029023424,-0.3971977,0.62607294,-0.079994746,1.0047044,-0.09834796,-0.5120614,-0.11309449,0.47760323,-0.09197063,0.0077081122,-0.20356573,0.8352912,0.4450176,-0.2602394,-0.019410163,-0.31970012,-0.12459939,0.13937767,-0.09156642,-0.08563196,0.02211518,-0.67602944,-0.10256188,0.1733268,0.4109392,0.109754644,0.08155907,0.014148772,0.17566995,0.019507283,0.2946953,-0.4821402,0.23162653,0.19569276,0.2907066,-0.08262814,0.20077701,-0.34889284,0.05061611,-0.8315489,0.35121384,-0.3836716,0.02186045,-0.13495465,-0.27920517,0.37032115,-0.018165201,0.2508413,-0.29908746,-0.48086002,-0.12441205,0.5742522,0.097552665,0.36510062,0.73483723,-0.1991446,0.11095673,0.29330212,0.5784584,1.3089755,-0.18077254,-0.036218744,0.16538826,-0.506258,-0.9388686,0.22397451,-0.34840402,0.10289707,0.27196276,-0.41731402,-0.18095873,0.1466303,0.25126344,0.102050096,0.17441408,-0.57469887,-0.31465352,0.13259526,-0.25437936,-0.27296272,-0.3447698,0.1613049,0.29880795,-0.3623948,-0.5462566,-0.085403115,0.39581683,-0.32583776,-0.7270228,-0.040084135,-0.38550696,0.19023608,0.1078647,-0.44640318,-0.16819195,-0.24003987,-0.47510388,0.012228287,0.123005986,-0.27532926,-0.04439598,-0.28598905,-0.22957306,0.7229627,-0.07985507,0.057399243,-0.39253202,-0.64016896,-0.63615566,-0.31622735,0.26263228,0.31219187,0.03532359,-0.51580936,-0.05053589,-0.42646673,-0.05052198,0.13426717,-0.224804,0.53300685,0.24032515,0.5712877,0.054210823,-0.70303345,0.39297903,0.14023417,-0.05220716,-0.41068873,0.4687886,0.02193451,0.912869,0.085759364,0.06058469,-0.037698466,-0.67027885,0.3005354,-0.24657416,-0.29249904,-0.41072357,0.13492332,161 -803,0.374939,-0.016761223,-0.6923046,-0.14943753,-0.25818634,0.16213422,-0.4391514,0.21304804,0.17406172,-0.31922707,0.27548638,-0.5008337,0.11590147,0.37292865,-0.030446475,-0.74213225,-0.018666754,0.16942084,-0.3948854,0.4407684,-0.47979107,0.3381083,0.30613694,0.26134983,-0.24752907,0.25849923,0.35835803,-0.242132,0.096452855,-0.2832768,-0.24668203,-0.22198904,-0.6446367,0.09115925,-0.02679987,-0.45181766,0.34909463,-0.31341478,-0.22156596,-0.58912444,0.19139187,-0.7674885,0.5947282,0.11413578,-0.22121684,0.33500943,0.15315415,0.21507353,-0.21687944,0.29523644,0.28242525,-0.45140752,-0.16948564,-0.3515061,-0.35068345,-0.72836447,-0.68268126,-0.26966023,-0.6495426,-0.257667,-0.3057978,0.15719031,-0.39427516,0.09772802,-0.0995031,-0.024778595,-0.46885207,-0.14934164,0.097363256,-0.28576863,0.4369513,-0.4030427,-0.015138726,-0.23072402,-0.031169757,-0.08491335,0.008197278,0.112428874,0.16360885,0.62067014,-0.13842691,-0.17542414,-0.39665928,-0.022989234,-0.06628267,0.56907344,-0.16378397,-0.021876087,-0.16834716,-0.14261241,0.24489492,0.4615921,0.018833226,-0.111365415,-0.08601317,-0.28711268,-0.5120071,0.12659658,0.5004644,-0.510102,-0.063243136,0.40589568,0.39038023,-0.00934346,-0.13685887,0.24614471,0.033890206,-0.38777637,-0.1541629,0.03689282,-0.16588302,0.5962,-0.1792164,0.3656591,0.7192169,-0.116566814,-0.038800195,-0.13242306,-0.18038447,0.07079548,-0.034292087,-0.115679085,0.455798,-0.6599925,-0.036768865,-0.43533036,0.817136,0.09187316,-0.9098983,0.31353346,-0.5778041,0.089089096,-0.16163634,0.7528968,0.5057756,0.67885035,0.10078132,0.813545,-0.6446288,0.26083332,-0.18295585,-0.33298615,0.50816685,0.0430841,0.20257561,-0.48018393,-0.022936925,0.07407871,-0.23934318,0.067561865,0.74109936,-0.35866857,-0.059262257,0.2565774,0.77623135,-0.3853331,-0.0076064668,0.2319951,1.2341049,0.82318497,0.013199091,0.9883682,0.26205945,-0.30487582,-0.11399982,-0.030737743,-0.9154622,0.07070095,0.21810572,0.60095614,0.35355243,0.15824609,-0.06894504,0.29244876,-0.26955473,-0.038573865,0.117408775,0.071516685,-0.18921977,-0.20829535,-0.26131693,-0.20125592,0.058740813,0.016378794,0.06899623,0.44388512,-0.090558976,0.6368368,0.18596707,1.8427516,0.10437382,0.12788789,0.1697734,0.39629063,0.31371266,0.16765194,-0.13853142,0.3522936,0.25018445,0.22864206,-0.4932909,0.1354081,-0.05864847,-0.57673454,-0.2388921,-0.20283194,-0.05948439,-0.2950457,-0.29737535,-0.2826074,0.079108216,-0.39172944,0.357465,-2.4663448,0.011289115,7.8077115e-05,0.30539894,-0.17319627,-0.1215866,-0.010775353,-0.43088794,0.53793347,0.55307966,0.35963377,-0.5970458,0.42653403,0.70234376,-0.31220564,-0.058972817,-0.6791232,-0.21850501,-0.24626549,0.32134175,0.040481914,-0.31436267,-0.09760809,0.2728452,0.5523538,0.017642215,0.06577044,0.25425926,0.50425845,-0.041127335,0.6004204,-0.027261278,0.46593794,-0.2271524,-0.16618232,0.27834412,-0.37837806,0.1008948,-0.29898092,0.10298125,0.300854,-0.41855943,-0.9423682,-0.3375082,-0.03417551,0.9835221,-0.423838,-0.43289062,0.2593733,0.14952874,-0.09319985,0.0066412836,0.4444236,-0.08130917,0.050109264,-0.64350575,0.03224155,-0.10140253,0.4525713,0.22583087,0.03709024,-0.5378732,0.73340726,-0.10665226,0.7308504,0.47152686,0.04929586,-0.10709909,-0.48225307,0.112726055,0.79268795,0.21244043,0.22652598,-0.4048414,-0.044396788,-0.22839563,-0.1264757,-0.02157014,0.231291,1.0014293,-0.10893717,0.16915864,0.3843267,-0.23964025,-0.104857676,-0.11876614,-0.5370725,0.11043354,-0.07605662,0.56596416,0.7841985,-0.032073434,0.29233152,0.069833435,0.6191023,-0.26756993,-0.4569459,0.5866325,0.5869732,-0.123597465,-0.09457898,0.5648165,0.5314812,-0.30977857,0.5834338,-0.7970722,-0.56340176,0.510422,-0.04749101,-0.6271079,0.40964076,-0.2438708,0.020951495,-1.1003174,0.24646206,-0.2847758,-0.32964543,-0.57853836,-0.13243952,-3.7010238,0.16885096,-0.4072524,-0.15983856,-0.039527643,0.036379855,0.3302301,-0.6181764,-0.53552425,0.07472999,0.24331224,0.5295384,-0.104437746,0.15583898,-0.47465435,-0.17665143,-0.30885473,0.43489566,0.12504171,-0.043282658,0.07323208,-0.4777739,-0.017816754,-0.32079458,-0.22710097,-0.05458401,-0.3719231,-0.18352681,-0.16871691,-0.5514303,-0.42458108,0.6656954,-0.18332128,-0.037752505,-0.31669497,-0.022530504,0.0087258415,0.14245957,0.069052346,-0.041513782,-0.16790001,-0.116358906,-0.18184143,-0.37508062,0.10118646,0.06779092,0.28870657,0.2962517,-0.14829473,-0.17334403,0.57274747,0.33719411,-0.0027281374,0.8424072,0.3736215,-0.14516926,0.36412296,-0.40747097,-0.10716722,-0.58056045,-0.33814406,-0.25449222,-0.433252,-0.49047437,0.025881598,-0.37610164,-0.84868985,0.59799945,0.12976323,-0.05264592,-0.008821875,0.49304017,0.34052667,-0.23119886,0.0110879885,-0.054638013,-0.25504425,-0.42210373,-0.10769701,-0.84139705,-0.44021764,0.23884167,1.0407585,-0.19848466,-0.040435597,0.1388782,-0.022887858,-0.018819744,0.13656358,0.26497743,0.44471964,0.34111544,0.11451975,-0.6656197,0.6120527,-0.30797204,-0.044920295,-0.78652334,0.03522872,0.60582745,-0.9190848,0.12871717,0.548498,0.10108936,0.17953753,-0.710119,-0.06319066,0.101179294,-0.25649717,0.3466381,0.036121674,-0.9250147,0.561986,0.22663595,-0.28829798,-0.71241504,0.4636921,-0.041943427,-0.6436241,0.062775694,0.38646343,0.03256382,0.25912672,-0.4183394,0.1717607,-0.59353817,0.21000046,0.21486063,-0.21333236,0.5526447,-0.085535206,-0.122979224,-0.8116134,0.08347925,-0.42164993,-0.31399104,0.36224058,-0.05720502,0.031318773,0.27172723,0.14368504,0.470966,-0.4151523,0.06432647,-0.20652544,-0.35442838,0.561922,0.44056642,0.22453338,-0.40260625,0.77166957,-0.12195062,-0.20228136,-0.25051275,-0.16270769,0.45582342,0.00024443617,0.37242398,0.09691883,-0.35217357,0.27069744,0.8162896,0.16565259,0.3453411,0.2795324,0.0024551302,0.59726024,0.25926116,-0.20275791,-0.011614491,-0.43700185,-0.060693603,-0.16309504,0.17934649,0.51563144,0.08025185,0.63882977,-0.26508942,-0.008015096,0.07359674,0.28374708,-0.102959774,-0.6150975,0.18667047,0.23452455,0.4574864,0.7819276,0.08172113,0.10625347,0.64032084,-0.40139833,0.072439745,0.35735247,0.17950816,-0.31975904,0.7261676,-0.6821807,0.25181758,-0.15764882,0.012029569,0.23980393,0.050758492,0.5107225,1.0212258,-0.07634691,0.1652354,-0.06886748,-0.20832193,0.06105331,-0.27543768,-0.06311839,-0.26471364,-0.26183736,0.62636465,0.11082231,0.28734446,-0.11965492,-0.08505761,0.124984674,-0.049516603,0.4686626,0.08409522,0.08382207,-0.040603925,-0.36224505,-0.26236406,0.74208933,0.0393837,0.0067790947,-0.034283686,-0.21901977,0.46210122,-0.15318477,-0.15988488,-0.06908382,-0.54899687,0.17019685,-0.3249215,-0.47093463,0.7475498,0.03196909,0.29456916,0.108147375,0.1042628,-0.20890053,0.16277483,0.25695378,0.55097437,0.14852422,-0.3075677,-0.23125292,-0.14715305,0.21372949,-0.34799805,-0.037627667,-0.19905548,0.09937823,-0.6089255,0.40173277,-0.34328473,-0.39182162,0.07163031,-0.36317834,-0.06273054,0.5003117,-0.094927154,-0.10923645,0.18037264,0.016697414,-0.3776423,-0.29897,-0.3679035,0.15961237,-0.36126912,-0.17611589,-0.11135807,0.00081656873,0.15861757,0.53169256,0.025877101,0.15333977,0.25185928,0.19117993,-0.45720294,0.08695218,-0.12719283,0.40712595,-0.18792017,-0.0011404852,-0.31890026,-0.5271519,-0.21497838,-0.044583935,-0.21468426,0.29473397,0.15417348,-0.37384376,1.0843011,0.17960405,0.83635044,-0.09229412,-0.32587662,0.13292177,0.62966067,0.1508742,0.03896323,-0.42669377,1.0699822,0.7651417,-0.24482305,-0.36756912,-0.24738944,-0.31049547,0.22688113,-0.37497392,-0.22751819,-0.024725223,-0.82814914,-0.20885213,0.38071048,0.16899602,0.21044827,-0.16695367,0.37809762,0.20586443,0.2634505,0.21368808,-0.517834,-0.28418455,0.36681283,0.04285973,0.029590806,0.10231926,-0.26039234,0.34164855,-0.5121457,0.0058404603,-0.58417696,-0.049025018,0.17996228,-0.26076856,0.16590069,-0.066844344,0.13637236,-0.20101441,-0.3620343,0.050869618,0.38495374,0.4747635,0.59367543,0.840103,-0.2173521,0.12919632,-0.10799531,0.6035299,1.3869458,-0.37148944,-0.1026122,0.38143435,-0.35072926,-0.8286915,0.15696792,-0.32809153,0.08722896,0.024231195,-0.47587192,-0.49749604,0.23676209,0.085596085,-0.28649655,0.20857589,-0.4220678,-0.23586607,0.23944654,-0.33557138,-0.3589202,-0.24827635,0.2781013,0.87959975,-0.17947517,-0.18506582,0.089774214,0.2715069,-0.36710772,-0.7350733,-0.04773724,-0.43419623,0.39974698,0.42262682,-0.40678462,0.3712969,0.2419165,-0.58989054,0.10807005,0.42653427,-0.22066693,0.042502075,-0.6153973,0.13202554,0.8129867,-0.10567812,-0.36218724,-0.519144,-0.6821506,-0.89668185,-0.41494313,0.5210037,0.05137941,-0.014794994,-0.5051565,0.00089714926,-0.17449592,-0.06197171,-0.030586096,-0.4713224,0.38740036,0.067704655,0.5336487,-0.19500093,-0.90260047,0.20904994,0.06656567,-0.38899526,-0.6496441,0.5051355,-0.3512341,0.9155118,0.15804046,-0.134721,0.5368494,-0.6431539,0.39586392,-0.3970605,-0.23422253,-0.58742684,-0.061871976,173 -804,0.46526024,-0.10481372,-0.71177715,-0.046052556,-0.26146457,0.029456714,-0.2735314,0.44125322,0.21798266,-0.49189302,-0.25958654,-0.024236897,0.11190814,0.37681136,0.0036306356,-0.8114589,0.15892231,0.3791504,-0.8043983,0.7564063,-0.37908974,0.22199988,0.020912835,0.39447775,0.06344831,0.20031059,-0.03174932,-0.06930982,0.14516364,-0.17971706,-0.16759805,0.23538756,-0.7618173,0.22217107,-0.09826886,-0.5976341,-0.28227186,-0.30847517,-0.32631043,-0.9057136,0.21899374,-0.7648395,0.52908295,0.0045689493,-0.40218243,-0.15207994,-0.0394627,0.5456527,-0.031703208,-0.10335964,0.030483821,-0.16490665,-0.30098835,-0.24103896,-0.07585975,-0.34270218,-0.57129,-0.06174771,-0.5284092,-0.0572356,-0.22106583,0.20680487,-0.36712468,0.095334016,-0.19986981,0.66548413,-0.21097188,0.29613447,0.22770423,-0.090204895,0.30301425,-0.39237666,-0.07276901,-0.11420349,0.42748213,-0.22349228,-0.5438439,0.115287624,0.2660375,0.5121419,-0.04128426,-0.20115697,-0.14508495,-0.031697918,0.12884033,0.4411415,-0.029440517,-0.67626554,-0.18543983,0.11465288,0.16022146,0.13185282,0.09813007,-0.35549733,-0.09946587,0.008332382,-0.19703937,0.63197273,0.40549028,-0.2882612,-0.22466843,0.28594056,0.74962616,0.15790729,-0.14202292,0.021537656,0.090378255,-0.58440465,-0.16116515,0.026665194,-0.231396,0.60596204,-0.24042617,0.30862185,0.4942919,-0.014263536,-0.41434002,0.26746723,-0.069252655,-0.0057716616,-0.13623068,-0.24550712,0.37074265,-0.65571946,0.22728945,-0.3173647,0.75935644,0.28410688,-0.7229295,0.415094,-0.7480752,0.177157,-0.04354235,0.59629774,0.850063,0.42014384,0.17424488,0.63775235,-0.25843358,0.1050364,-0.09268608,-0.41752017,-0.005612632,-0.13118646,-0.0478871,-0.45765767,-0.027205685,-0.17983426,-0.19313848,0.042180512,0.36789897,-0.6819258,-0.2905454,-0.006425157,0.6296256,-0.23552148,-0.30274352,0.8670008,1.0161601,1.0549711,0.13276118,1.1206251,0.20300563,-0.2815005,0.10316757,-0.11989081,-0.7302358,0.35354447,0.16291988,-0.28472412,0.5108763,-0.050838154,-0.016598016,0.5099559,-0.2940702,-0.052216858,-0.07519085,0.28217116,0.07517723,-0.117410906,-0.31612512,-0.26256922,-0.08567048,0.03321133,0.21291459,0.35443756,-0.2011979,0.57743853,0.23582228,1.4268316,-0.00417191,-0.04427595,0.009366319,0.2470376,0.27106252,-0.3352224,-0.28603527,0.19809544,0.2949091,0.18408765,-0.69296473,0.14943841,-0.28363314,-0.2806538,-0.13173817,-0.26227084,0.010159105,-0.22511892,-0.36175823,-0.16967453,-0.22783864,-0.22824521,0.47373033,-2.4469976,-0.33810285,-0.16310911,0.3899761,-0.24635749,-0.41020086,-0.100257985,-0.529624,0.18933542,0.14900838,0.51453507,-0.7719726,0.5514547,0.4003164,-0.6815138,-0.027844643,-0.6735181,-0.09531832,0.072405614,0.200563,-0.08808436,-0.11266915,0.04120817,0.08794654,0.40217158,-0.18193795,0.0042361417,0.40848264,0.44057858,0.04157943,0.53273517,-0.09463247,0.60281664,-0.35871628,-0.13921948,0.37924543,-0.38826004,0.21859825,-0.023641964,0.015497242,0.50072575,-0.4470855,-0.887667,-0.7713242,-0.2698163,1.1419467,-0.31044662,-0.39670172,0.07823109,-0.42175627,-0.21856578,-0.11625614,0.6067843,-0.02189981,-0.12001046,-0.797142,-0.03895506,0.007006028,0.3982123,-0.03196756,-0.005963554,-0.4456607,0.53771836,-0.032951403,0.48376015,0.33041573,0.16162999,-0.36547676,-0.6202436,0.11880747,1.0151826,0.16129836,0.16239238,-0.36621404,-0.26612154,-0.5297501,0.24483971,0.05112366,0.88314945,0.6573319,-0.21862541,0.13044801,0.44008422,-0.020774746,0.09260581,-0.18440783,-0.2745746,-0.17736156,-0.0059509575,0.69178295,0.7319427,-0.21854465,0.5244429,0.024147466,0.23781954,-0.21050338,-0.4493651,0.5013465,1.3078898,-0.29339576,-0.49277148,0.4987056,0.27341595,-0.2913215,0.47288355,-0.5429666,-0.31946206,0.4793038,-0.08484754,-0.32058707,0.2308994,-0.26426995,0.38131145,-0.97504765,0.2821213,-0.6355748,-0.7018935,-0.59594905,0.12681764,-3.1267605,0.40948305,-0.07536234,-0.06598147,-0.26243368,-0.18465354,0.15603687,-0.45371556,-0.7844908,0.194139,0.118302524,0.9252983,-0.19645691,0.13969937,-0.2585276,-0.46398512,-0.26683053,0.33784142,0.40555882,0.26999742,0.010855014,-0.42420825,-0.19040783,-0.18024635,-0.2321822,0.09361428,-0.721672,-0.49347767,-0.057893794,-0.7187957,-0.26625526,0.6843152,-0.4177285,0.026235553,-0.18989389,-0.009900041,0.03271465,0.3299698,0.016481047,0.031563506,0.22399385,-0.089688994,-0.03714302,-0.280926,0.10388622,-0.0101104565,0.38275537,0.06272728,-0.09247569,0.50981784,0.63661975,0.9249816,0.17615835,0.93382406,0.5263319,0.001859804,0.24602258,-0.28775814,-0.42257372,-0.44458926,-0.0054316274,0.00860472,-0.37907466,-0.2934245,0.008467868,-0.26071557,-0.8620227,0.5088406,-0.050957758,0.040512115,0.089143336,0.51936144,0.6801889,-0.2329963,-0.0037977844,-0.13483706,-0.21078604,-0.50593585,-0.27430412,-0.55670685,-0.46480462,0.11377982,1.034759,-0.2623699,0.18383217,-0.0464434,-0.20318872,0.021571085,0.4957702,0.037856977,0.14544447,0.6750049,-0.27336404,-0.62466556,0.296602,-0.20659073,-0.22914977,-0.578095,0.3946974,0.62034196,-0.72839546,0.4858879,0.22471404,-0.07923932,-0.21455626,-0.47177896,-0.08159083,0.17523086,-0.24680783,0.26440942,0.36935103,-0.74976844,0.26711494,0.3558009,-0.09695309,-0.69919974,0.6185649,0.08584396,-0.33353844,-0.23707883,0.46354762,0.03406107,0.041039452,-0.26011726,0.08358052,-0.34153327,0.08861118,0.115855336,-0.21821487,-0.12472149,-0.077465184,-0.042151403,-0.8968468,0.21918112,-0.5862486,-0.25297946,0.31917554,0.09015735,0.3408803,0.1956956,0.21164508,0.32610175,-0.22035588,-0.014002991,-0.33328828,-0.3814318,0.29421586,0.5942799,0.2985105,-0.47245297,0.65467864,0.20896192,0.11202342,-0.010172267,-0.012199382,0.43077445,-0.110305704,0.66069,0.25266197,-0.25503492,0.06553282,0.659825,0.3147097,0.47484946,-0.04552229,0.21758161,0.14340676,0.12153002,0.35429308,-0.044232886,-0.4899923,0.038020123,-0.21707623,0.118040465,0.69867283,0.07442672,0.23699784,-0.059510496,-0.52250016,-0.06762403,0.17063372,-0.084407784,-1.5502354,0.52828234,0.41226813,0.82570815,0.45818806,0.113941275,0.08139986,0.58991444,-0.19905277,0.29546326,0.4111463,-0.03417312,-0.2617655,0.57131726,-0.86704665,0.6092772,0.08344459,0.011217372,0.049509782,-0.31190315,0.26678023,1.0392841,-0.29207304,0.0786651,-0.03797512,-0.21927553,0.10400933,-0.4633427,-0.0001634856,-0.69708616,-0.31700584,0.80507225,0.55828375,0.38741872,-0.4467866,0.056146603,0.19164948,-0.089752935,0.23032613,-0.063810594,0.110805415,-0.07536635,-0.5047119,-0.07022546,0.56013924,-0.19028479,0.12899579,0.16641134,-0.10801277,0.39635512,0.054026794,-0.11865141,-0.20998168,-0.7489888,0.012323543,-0.4138225,-0.26024136,0.56370866,-0.20886476,0.15955047,0.23774637,0.17272943,-0.41772154,0.5456336,-0.011795759,0.60491025,0.27335986,-0.23282313,-0.18471797,0.24658705,0.14593394,-0.2557363,-0.12605439,-0.3529676,0.011375765,-0.5896317,0.38993326,0.14722136,-0.3976719,-0.0066906177,0.030737877,0.087294884,0.43167904,-0.19630384,-0.20396905,0.08319486,-0.086887725,-0.22023277,-0.2149119,-0.103929244,0.22128558,0.28681722,-0.17685252,-0.1125665,-0.08734276,-0.16655317,0.3837599,-0.0854638,0.42235613,0.40273538,0.21638398,-0.21946728,-0.10457554,0.2499965,0.47204876,0.073462084,-0.24633378,-0.26550332,-0.29222143,-0.44886145,0.24654841,-0.093488194,0.52037907,0.017089054,-0.30261973,0.6536096,0.013234821,1.2129812,-0.12028509,-0.35240087,0.08680582,0.47092423,-0.00392036,-0.13295819,-0.37923825,0.96069884,0.25317892,-0.13035204,-0.10660389,-0.32883728,-0.07151029,-0.0092332065,-0.26701722,-0.1609063,0.12399858,-0.45565256,-0.12229558,0.18946165,0.31189904,0.26189607,-0.14387663,0.051144768,0.3631954,-0.10615774,0.17686212,-0.35465422,0.0045441785,0.3106254,0.29336682,-0.053047825,0.15947758,-0.38977924,0.35523042,-0.5780879,0.09207804,-0.40534282,0.19952528,-0.14657404,-0.50260776,0.36599696,0.24887562,0.2835373,-0.34401277,-0.29280055,-0.4005561,0.51680505,0.19554596,0.1838869,0.7137776,-0.15628235,-0.0047317743,0.16731162,0.4438084,0.77170676,-0.2530653,-0.22770219,0.27234823,-0.43002912,-0.5787859,0.33300653,-0.4181926,0.30896792,0.1624891,-0.18505462,-0.64667326,0.25742546,0.07733663,0.20745201,0.096677266,-0.86859304,-0.1895351,0.1396811,-0.4535904,-0.08440897,-0.39831933,0.17083894,0.4974769,-0.11379719,-0.22424895,0.08438128,0.13094518,-0.18302162,-0.5872584,-0.10920618,-0.53717685,0.18470268,0.057401,-0.4344945,-0.19404872,0.24886443,-0.5608223,0.17456193,0.23162986,-0.36480844,0.14222644,-0.2972339,-0.19370157,1.0110329,-0.38720348,0.12043377,-0.29626903,-0.5542506,-0.6433751,-0.2037164,0.3180947,0.08069525,-0.03929959,-0.8662403,-0.12224261,-0.12700212,-0.3255043,-0.04336043,-0.39634335,0.41368282,0.18189304,0.40418682,0.05094965,-1.0464166,0.2237951,0.12107518,-0.21254426,-0.6102149,0.28332207,-0.07143802,0.935198,0.069349065,0.2823988,0.44594812,-0.6480705,-0.08620707,-0.15031956,0.15762644,-0.685543,-0.055381328,179 -805,0.36307552,-0.48188505,-0.55787677,-0.05006011,-0.30998197,0.061343923,-0.22976987,0.42005745,0.36517325,-0.24900572,-0.29637745,-0.0024656851,0.09027579,0.43227604,-0.085056335,-0.47707224,-0.1615852,0.19340503,-0.90800875,0.5247078,-0.44116846,0.24018593,0.012777676,0.5453896,0.21362989,0.36948976,-0.0694877,0.00033040842,-0.15562868,0.0101079,-0.16808724,0.21329588,-0.28819564,0.15311605,-0.34072772,-0.36372194,-0.07157229,-0.55409044,-0.21894574,-0.7719647,0.24117081,-0.896365,0.41281608,-0.08587208,-0.17987792,-0.10990999,0.13562578,0.3263569,-0.43941274,0.012749898,0.14784779,-0.25885823,-0.124304034,-0.42996237,-0.108821005,-0.17269869,-0.43880963,0.014467905,-0.61379045,-0.20983405,0.111945994,0.1479901,-0.2507194,0.077390805,-0.1504556,0.3909777,-0.34698835,0.037473034,0.25702497,-0.22314803,0.118887536,-0.5427708,-0.10048329,-0.13896897,0.6621554,0.010564745,-0.31143963,0.19202852,0.019258827,0.34299496,0.12906967,-0.033075258,-0.39020595,-0.045917902,0.010708089,0.42244852,-0.036722675,-0.3000025,-0.22449452,0.00443319,0.3361118,0.3285865,0.18316269,0.0052715354,-0.10157832,-0.39843807,-0.049920764,0.39896145,0.52408284,-0.118168555,-0.2208517,0.26433957,0.70010585,0.22616434,-0.22287494,-0.13815863,0.15449262,-0.46065864,-0.12115151,0.16480136,0.118129365,0.502572,-0.15498655,0.36654124,0.68048,-0.0831125,-0.07394511,0.3166686,0.26299548,-0.23046567,-0.11683202,-0.2587407,0.20184632,-0.44850495,-0.106601276,-0.26609704,0.6334899,0.11165205,-0.6666587,0.30350313,-0.54466325,0.14829664,0.07368386,0.5633994,0.6583462,0.66592693,0.30151984,0.5801154,-0.1032238,0.27351937,-0.17156929,-0.20609212,-0.048543725,-0.2982944,0.038293574,-0.48199368,0.047742967,-0.23460786,-0.117695265,0.13828285,0.23626135,-0.40039766,-0.16747682,0.23868118,0.7687004,-0.25842905,0.008146058,0.9844044,1.0514184,0.93852407,-0.023770193,1.1212845,0.22548981,-0.27619907,-0.0099558085,-0.29624236,-0.75835544,0.2830234,0.19945087,0.010880251,0.31496838,-0.20954658,-0.122106604,0.36383566,-0.4275484,0.02547366,-0.021073157,0.07298247,-0.055271637,0.12819585,-0.549155,-0.4302788,-0.090252094,-0.041002158,0.15146005,0.31074923,-0.21116225,0.8087384,-0.11532954,1.2002219,0.017400006,0.12900381,0.05530333,0.5311151,0.15170075,-0.38998964,-0.26675072,0.3325608,0.4542651,-0.02450279,-0.652872,0.20829718,-0.35601643,-0.26661798,-0.2299252,-0.43277565,-0.23475103,-0.091332875,-0.39653122,-0.25912288,-0.1386187,-0.26732242,0.32204646,-2.9004104,-0.15970826,-0.06738346,0.2991434,-0.20767812,-0.19075735,-0.09934324,-0.60763264,0.16264264,0.1402138,0.5222369,-0.5766847,0.56318575,0.53431535,-0.55934256,-0.19212551,-0.7352967,-0.09269027,0.04940496,0.3829787,-0.020926228,-0.02644229,-0.11229285,-0.0680452,0.42151037,-0.12094157,0.14534287,0.58391976,0.37158772,0.17264505,0.40070787,0.00973096,0.5826177,-0.6956131,-0.22641182,0.29697433,-0.49724355,0.2978268,-0.09292061,0.1141826,0.7193659,-0.5351178,-0.807828,-0.5645597,0.10910604,1.2236485,-0.2137508,-0.4099582,0.08440582,-0.4567727,-0.24470067,0.008446634,0.6006294,-0.16331235,-0.03741617,-0.6599908,-0.12955785,-0.040245015,0.40591025,-0.033732913,-0.22794072,-0.3156648,0.5174852,0.06691125,0.47836974,0.20297569,0.26673725,-0.38948452,-0.31831047,0.18989289,0.7470445,0.29068872,0.09884571,-0.16745155,-0.27581692,-0.13024104,0.0354398,-0.005564188,0.60969657,0.5741716,-0.057892993,0.3098152,0.39885625,-0.059948664,0.18911104,-0.13613802,-0.15528844,-0.30054712,0.10745553,0.43069968,0.88120484,0.07445953,0.4824929,-0.14945708,0.33836278,-0.16836546,-0.58529884,0.663846,0.3725666,-0.15009928,-0.102232374,0.51875687,0.59382313,-0.4457613,0.4548813,-0.50334835,-0.40176797,0.4888177,-0.21893823,-0.4807122,0.2954333,-0.21483193,0.32941595,-0.92465204,0.28992102,-0.33354023,-0.66916484,-0.61809134,0.095038615,-2.5342076,0.17513423,-0.08588792,-0.2503282,-0.28349096,-0.22439058,0.09424428,-0.64764816,-0.55103654,0.12982725,0.2764674,0.7225626,-0.081302784,0.11590654,-0.2816514,-0.34612927,-0.22393768,0.14246337,0.25504032,0.32963774,-0.21875028,-0.38214707,-0.2178493,-0.09529825,-0.3065385,0.0861362,-0.7039311,-0.39254078,-0.115133174,-0.5640369,-0.22027718,0.5486564,-0.117744885,-0.084312685,-0.29875395,0.10569444,-0.0042643226,0.1642693,0.14180581,0.19334812,0.33305648,-0.19376232,0.16218686,-0.27825853,0.30220526,-0.0710236,0.2995368,0.1939257,-0.047158808,0.261951,0.45184007,0.73552084,-0.18991889,1.0513563,0.290899,-0.09527326,0.3248487,-0.29135728,-0.50842094,-0.3999475,-0.0454606,0.13667957,-0.396722,-0.46056107,0.08684346,-0.3489267,-0.8794953,0.5996347,0.043047786,0.15567292,0.044687778,0.4169536,0.61990213,-0.2382114,-0.008686185,-0.096073575,-0.14076053,-0.41059077,-0.1715674,-0.58577245,-0.45370165,-0.050163638,0.9796079,-0.30613664,0.29302797,0.13641891,-0.3753238,-0.01863969,0.37008473,-0.081905395,0.42045176,0.29661688,-0.05958948,-0.5318213,0.377786,-0.07583474,-0.11013844,-0.35293683,0.13342385,0.7053227,-0.7707443,0.48756632,0.4099989,-0.22717087,-0.27100155,-0.32123992,-0.17888461,-0.19813816,0.07634201,0.30804673,0.35625347,-0.7287156,0.39603305,0.23400605,-0.31018558,-0.78693324,0.18541966,-0.08884447,-0.2907145,-0.09033672,0.3178878,0.026182557,-0.023369124,-0.3262116,0.024720812,-0.14174609,0.2251123,0.1259668,-0.1609508,0.19657348,-0.19145328,-0.21009858,-0.59918106,0.095837474,-0.6996618,-0.0888525,0.58730656,0.06409419,0.05334571,0.09657026,0.040636253,0.29330435,-0.34012607,0.018943598,-0.088837594,-0.30796793,0.038575575,0.4011283,0.4997207,-0.49698368,0.57865506,0.21591474,-0.1570359,0.15291503,0.12971602,0.38966164,0.01869937,0.6059908,0.029804984,-0.2858347,0.3753147,0.717926,0.14933015,0.4903108,0.11505831,-0.048130322,0.20419516,0.011455932,0.29348293,-0.082555614,-0.29557237,0.14280905,-0.25262523,0.15052259,0.3872957,0.21589704,0.4840289,-0.01434346,-0.21435463,-0.015235364,0.21563102,-0.042618882,-1.38646,0.3393103,0.27420118,1.0307516,0.24689646,0.15841256,-0.2580882,0.9674294,-0.3450351,0.06665416,0.411939,0.032304317,-0.47795844,0.74426794,-0.73228794,0.63360745,-0.06135839,-0.10217222,0.16248192,-0.07843161,0.42155644,0.82713705,-0.1781546,0.035001893,0.13568844,-0.2949384,-0.018801322,-0.38849267,-0.041654978,-0.60586166,-0.24920423,0.7087837,0.20927906,0.4065937,-0.16085498,-0.00850017,0.050334517,-0.08498132,0.34652033,-0.028837243,0.15275294,0.010731672,-0.57694453,-0.15717496,0.4401944,0.0071362355,0.29112545,-0.20632668,-0.21202129,0.13085063,-0.19344972,-0.01542341,-0.0814074,-0.5495787,0.14620103,-0.40273514,-0.6135693,0.5520107,-0.077091396,0.13897176,0.32511592,0.029806962,-0.37580732,0.5764942,-0.06276991,0.89902335,0.05408145,-0.1957876,-0.2574958,0.2984257,0.34289542,-0.2769731,0.07118821,-0.41986713,0.08572116,-0.40894738,0.5474251,-0.1107653,-0.48800114,-0.07657053,-0.10982394,0.10443496,0.62868994,0.004277756,-0.12917687,-0.0051299483,-0.10218062,-0.54320043,-0.12149901,-0.3329155,0.23858233,0.5113357,0.08391412,-0.15264829,-0.1453606,0.10855779,0.5482823,-0.056762848,0.5487938,0.28826535,0.047970247,-0.23009323,0.14881647,0.20191844,0.52291673,0.107294224,-0.09317773,-0.56141937,-0.34888116,-0.35206565,0.30912694,-0.10017016,0.22161962,0.052245144,-0.07399897,0.9142604,-0.106045984,1.070146,0.08134045,-0.42290413,0.2546941,0.48258352,-0.05435745,-0.054746762,-0.42929587,1.0507463,0.32766515,-0.20399855,0.045276266,-0.500278,-0.10926113,0.22189343,-0.31693432,-0.18441705,-0.09165716,-0.43847314,-0.21433748,0.2176673,0.20162497,0.37020028,-0.18299842,0.20344682,0.15963899,0.041258875,0.060861606,-0.56532633,-0.20440382,0.36164376,0.19178851,-0.1611663,0.12054652,-0.49521646,0.43016466,-0.6647265,0.17209864,-0.36457762,0.17447768,-0.20726258,-0.61313206,0.19598271,0.14640388,0.322736,-0.5001194,-0.35078827,-0.29287165,0.5127844,0.22618783,0.16966265,0.48855448,-0.32007158,-0.030159488,0.108640075,0.4590701,0.8274744,-0.4201795,-0.060724467,0.31757903,-0.33792236,-0.691133,0.4001089,-0.41276634,0.10398826,0.050305855,-0.29004422,-0.5828685,0.32894167,0.28074488,0.2572836,0.019326182,-0.5256676,0.065086365,0.21250357,-0.27490622,-0.22245,-0.2959074,0.19009246,0.44103646,-0.14359845,-0.3594946,0.07319348,0.25444514,-0.334403,-0.18310094,-0.15931717,-0.27248582,0.166362,0.04153293,-0.35887408,-0.30176368,-0.07896947,-0.47933707,0.120403,0.11880431,-0.36730465,0.059145138,-0.25423846,-0.08296165,0.91152906,-0.3832368,0.10524962,-0.5218565,-0.5026959,-0.86272925,-0.38241026,0.25067452,0.12860058,-0.07597902,-0.61290646,0.1480356,-0.21194269,-0.36493537,0.03421603,-0.48566106,0.49505547,0.16019075,0.24327934,-0.27702728,-0.9620168,0.3485336,0.12959455,-0.3253775,-0.56166685,0.47088757,-0.05278362,0.7286075,-0.0029768895,0.13531174,0.20085007,-0.447194,0.034484338,-0.251161,-0.08235856,-0.592613,-0.089061834,186 -806,0.66361815,0.043847654,-0.6982226,-0.028268794,-0.08655733,0.19402355,-0.16673009,0.5024548,0.29160753,-0.5790163,-0.1801002,-0.17891054,-0.036470275,0.27098343,-0.14709453,-0.6402609,0.3180212,0.2990785,-0.5597796,0.4671965,-0.51725954,0.45469907,-0.16966839,0.4725242,-0.010999362,0.2430085,-0.02874502,0.16307357,-0.2066306,0.060237486,-0.061568778,0.20433705,-0.2675428,-0.118141465,0.07008481,-0.38494816,0.020168785,-0.21450768,-0.30521303,-0.68090653,0.2664643,-0.6709965,0.67995715,0.09245121,-0.33222583,-0.02431511,0.1811043,0.13758646,-0.21594326,0.11369786,-0.020994306,-0.13695823,-0.01872576,-0.2766275,-0.49417496,-0.3900396,-0.5418133,0.11564139,-0.5070978,-0.10607308,-0.23330833,0.17825644,-0.272585,-0.04223032,0.07477999,0.33530974,-0.30580524,0.1438848,0.17101623,-0.32955894,0.18987043,-0.61987346,-0.15206112,-0.0076287254,0.2874556,-0.2684891,-0.35139382,0.125107,0.33895373,0.58699214,-0.15256618,0.15477021,-0.4564086,-0.060029518,0.01083601,0.66788673,-0.2867775,-0.4872413,-0.18064465,-0.024595404,0.2371263,0.15274547,0.33136502,-0.29260394,-0.14046867,-0.22793996,-0.28476658,0.433751,0.50798166,-0.5197334,-0.11182525,0.39640796,0.59382564,0.12855631,-0.19765921,0.27830574,-0.021898627,-0.5518891,-0.26942644,-0.11358603,0.109234445,0.7057001,-0.1014091,0.32517585,0.39342606,-0.23568018,-0.032803398,0.23322688,-0.027359918,0.10336859,-0.29253078,0.070995316,0.109731674,-0.25112185,-0.05538876,-0.12875007,0.4711529,0.060700584,-0.74437875,0.41398355,-0.60660094,0.0582653,0.013448293,0.4521779,0.5727526,0.56541806,0.17287493,0.5687358,-0.41606662,0.07405,-0.14153115,-0.2000072,0.09355568,-0.06024733,-0.14998142,-0.5612791,0.13507268,0.07001691,-0.24087304,0.5474791,0.65264255,-0.49083233,-0.14992741,0.13016264,0.7467637,-0.38385007,-0.2811249,0.6918885,1.0897603,0.8170131,-0.10295924,1.1577847,0.20830555,-0.0043029026,-3.4078956e-05,-0.27244467,-0.76045966,0.29949573,0.21778035,-0.39598045,0.47720647,0.09332093,-0.13016725,0.37679848,-0.22102882,-0.033625662,0.065056846,0.23919438,0.08149562,-0.2719499,-0.38896403,-0.00013074279,-0.07087713,0.011486311,0.25923812,0.21183203,-0.32799017,0.5824825,0.0024354954,1.6030515,0.1305301,0.13334347,-0.06443924,0.48921728,0.36717525,-0.17222834,-0.13350528,0.44755706,-0.03793234,0.025650905,-0.43185782,0.038467154,-0.118097246,-0.54615635,-0.28999388,-0.2059291,-0.13938577,-0.18320058,-0.36262855,-0.23667921,-0.07294063,-0.368109,0.49203315,-2.7863894,-0.27875748,0.023746975,0.5439965,-0.1418935,-0.56845385,-0.22502895,-0.27084026,0.36299333,0.33723333,0.42819285,-0.6158519,0.523793,0.43427798,-0.5023324,-0.19397326,-0.49502757,0.067733295,-0.035706062,0.21948433,0.04775917,-0.025272042,0.16887371,0.1405786,0.45865428,-0.29330692,0.11286157,0.37136093,0.45573464,0.1329262,0.41026166,-0.12122374,0.63401884,-0.27651316,-0.16314629,0.3801051,-0.4879249,0.1020914,0.06378254,0.14233114,0.42647567,-0.3972648,-0.8455638,-0.65735877,0.1560568,1.0188036,0.008999395,-0.51085526,0.20438582,-0.678868,-0.6410661,-0.068172954,0.45973194,-0.19616811,-0.1078189,-0.8031594,0.005654648,-0.13021968,0.2504318,0.03789373,-0.18206702,-0.30335405,0.6123737,-0.0037555757,0.40277246,0.3434911,0.18551035,-0.48435363,-0.4157451,0.02887843,0.96849614,0.23474164,0.21344332,-0.2146879,-0.08329216,-0.43992567,0.096446596,0.0803216,0.6033417,0.41742507,-0.053062964,0.07072451,0.2912378,0.09555992,-0.027865447,-0.28038672,-0.177655,-0.16807555,-0.041436356,0.55257785,0.7833473,-0.38273898,0.33999708,-0.10238144,0.04349572,-0.41348758,-0.5166912,0.5650678,0.6926984,-0.23381086,-0.44528088,0.60509366,0.3036029,-0.5594929,0.39784917,-0.6251591,-0.38099858,0.46353707,-0.30610424,-0.2366877,0.35477504,-0.2902525,0.16298816,-0.9557109,0.10340592,-0.18861824,-0.40477905,-0.3979644,-0.03016244,-3.0072606,0.360492,-0.15262514,-0.23905315,-0.07059709,-0.13530625,0.08204684,-0.40827358,-0.54091054,0.11805918,0.100104965,0.58983856,-0.088570334,0.1853549,-0.1754563,-0.37028658,-0.2382363,0.15543576,0.040293876,0.4874955,0.107426204,-0.5384522,-0.0025538306,-0.16053692,-0.43475223,0.19631398,-0.65146166,-0.43082568,-0.10756233,-0.46172103,-0.20011185,0.5976884,-0.39973196,-0.044143338,-0.49853206,0.07354302,0.09916196,0.3049375,-0.047014147,0.10315505,0.07559421,-0.09260989,0.033517938,-0.23342896,0.2007355,0.028472856,0.13943361,0.57529265,-0.14901245,0.10262063,0.41938806,0.7135655,0.08269159,0.8153374,0.36769593,0.14560209,0.39518824,-0.28581598,-0.30554032,-0.27574834,-0.23535724,-0.009269071,-0.49893287,-0.34843564,-0.15429558,-0.4627644,-0.80059105,0.41383648,0.06589061,-0.03466886,0.082434304,0.65966827,0.45872536,-0.30754405,0.103290774,-0.091588326,-0.2057222,-0.44518626,-0.28802142,-0.52678204,-0.5427085,0.2409801,0.9804856,-0.30630627,0.18222249,0.034581657,-0.1269684,-0.15289873,0.22778028,0.121620215,0.26247987,0.2963692,-0.3571165,-0.5327932,0.26830494,-0.30475512,-0.45304367,-0.59760743,0.20002306,0.67335254,-0.57094383,0.5115958,0.2796265,0.02914158,0.13836773,-0.5090761,0.10991336,-0.051332425,-0.32040492,0.32973135,0.25244367,-0.9124894,0.43051156,0.3942007,-0.14708972,-0.631118,0.5607206,-0.063809805,-0.55921537,-0.18687983,0.38751134,0.20107459,-0.09128795,-0.57629687,0.10281532,-0.5028795,0.1858226,0.13610227,-0.0427409,0.4261774,-0.16868846,-0.2494997,-0.79997706,-0.12647432,-0.5776445,-0.25451317,0.24503577,0.19321197,0.29543284,0.11315924,0.06751793,0.41852093,-0.5119783,0.036669876,-0.16923623,-0.13418867,0.17431565,0.32148147,0.542167,-0.47494972,0.6072983,-0.012313242,0.10263523,0.057237294,0.1443286,0.5759672,-0.11272588,0.5068721,0.3308003,-0.2189889,0.19390596,0.62589335,0.0694649,0.3810196,0.1660595,-0.26158312,0.17412423,0.08345691,0.12076909,-0.08015436,-0.46000186,0.04503438,-0.26206592,0.15209289,0.57979566,0.11279454,0.42479792,-0.11641415,-0.3678843,0.110471785,0.30346817,0.12243745,-1.1790189,0.09676973,0.2444561,0.781557,0.3878958,0.13434893,0.07832342,0.4966599,-0.20631969,0.21844481,0.2897174,-0.08929193,-0.3654548,0.25311115,-0.57240695,0.5169856,-0.09823065,-0.06002638,0.15129478,-0.097637616,0.46161485,0.85283566,-0.10598753,0.19199516,0.2717835,-0.3450121,-0.052515764,-0.41375256,-0.014441535,-0.7565158,-0.09364044,0.64373046,0.49993506,0.34376478,-0.1974184,-0.10712352,0.31437275,-0.10903367,0.016689396,0.02693107,0.2956012,-0.33109444,-0.67058754,-0.17057526,0.52439576,0.38923123,0.12708658,0.17903902,-0.23130976,0.3455659,-0.12162169,0.008544554,-0.086036414,-0.47352073,0.050042797,-0.29653135,-0.5531797,0.42050323,-0.05153358,0.29362655,0.29059908,0.117153905,-0.2894101,0.7044993,-0.015757114,0.71235496,0.22026776,-0.10670149,-0.41710475,0.2567463,0.31595555,-0.23401497,-0.07470438,-0.21294932,0.14382695,-0.31846467,0.32445982,-0.009843458,-0.22904782,-0.066665165,-0.07660693,0.15091312,0.5503691,-0.21591671,-0.25389007,0.079106666,-0.09302368,-0.27937496,0.0007464613,-0.09404137,0.43117094,0.20568068,-0.23604609,-0.05219217,0.04400413,0.009192884,0.3490108,0.07123479,0.2668632,0.38332328,0.068027824,-0.30105606,0.0012941584,0.16023938,0.72914773,-0.13515075,-0.03635381,-0.07258708,-0.6182334,-0.43368316,0.10017771,-0.14961204,0.19986673,0.2809931,-0.06070735,0.80710346,0.21000005,1.3021489,-0.044565856,-0.23628205,0.16712034,0.34011284,0.06482551,0.008930889,-0.42896232,1.1047862,0.471982,-0.30992126,-0.20020331,-0.27822572,-0.2008236,-0.0006955266,-0.28332737,-0.17040046,-0.01816287,-0.69698787,-0.27902606,0.2678502,0.1447118,0.28912643,-0.14125152,0.4669228,0.26452953,0.006056588,0.070953526,-0.47128722,-0.25246665,0.29792124,0.42083797,-0.15496908,0.044743463,-0.43320724,0.39961863,-0.533647,-0.019667268,-0.29240945,0.13983165,-0.21638143,-0.29018652,0.2377128,0.16016215,0.20969154,-0.30856782,-0.2217315,-0.2379589,0.44902083,0.16254707,0.12881804,0.4642323,-0.14203997,-0.07581818,-0.011217167,0.5236743,1.0054287,-0.022123247,-0.1392346,0.5855644,-0.27737895,-0.85288507,0.24789476,-0.46976832,0.16971831,-0.13879889,-0.14852424,-0.4798464,0.36627886,0.112629116,0.11205455,-0.034468234,-0.4773266,-0.22113998,0.23417969,-0.43424773,-0.09126264,-0.22619434,-0.021612717,0.54828024,-0.22745843,-0.43086958,0.08160973,0.42117432,-0.2443883,-0.6396045,-0.003916671,-0.3331466,0.22519648,0.2649039,-0.3673152,-0.12121097,0.11223031,-0.40943226,0.067285605,0.21730351,-0.29423794,0.13439511,-0.53338796,-0.20570862,0.9292472,-0.23007597,0.3967569,-0.30328572,-0.6351915,-0.9253171,-0.2758527,0.20501524,-0.0014473001,-0.15027311,-0.78676385,-0.11052696,-0.2771641,-0.39157185,0.08196027,-0.061498255,0.6396899,0.10088942,0.21229273,-0.1701075,-0.96712327,0.076108254,0.25257614,-0.50913745,-0.81146604,0.5263795,-0.045538645,0.8646286,0.1086227,0.1694283,0.5985798,-0.51822925,0.13745692,-0.28831115,-0.13150781,-0.5210084,-0.07877285,224 -807,0.44415584,-0.25978157,-0.36992458,-0.16637297,-0.3478426,0.15238054,0.08399606,0.5977604,0.401767,-0.19049478,-0.17001791,-0.025314676,-0.015675718,0.5357148,-0.19455878,-0.797297,0.18124707,0.06001224,-0.39250198,0.5357175,-0.3217403,0.2915806,0.08085189,0.21970494,0.1258248,0.18506362,0.18532415,-0.013953383,0.123378634,-0.19917822,-0.044787597,-0.05469716,-0.5008761,0.35446584,0.11747851,-0.11447785,0.05645451,-0.3435613,-0.2162873,-0.69836956,0.26447758,-0.76381534,0.5355763,0.056859285,-0.32999614,0.28541026,0.16818672,0.12732154,-0.21860218,-0.12663837,-0.060977295,-0.015721252,-0.105387606,-0.10279518,-0.06444582,-0.50644535,-0.6363112,-0.10770196,-0.45046213,-0.095048666,-0.29445592,0.060224753,-0.39017963,0.062491614,0.056950048,0.5032534,-0.3482124,-0.053813726,0.35632244,-0.1333343,0.15376268,-0.64496845,-0.15184934,-0.06093083,0.2102242,0.17732374,-0.30636427,0.35591665,0.4847208,0.30016172,0.084062554,-0.23771147,-0.18573838,-0.16052873,0.23974757,0.37406287,-0.18403679,-0.48621812,-0.079616114,0.104334705,0.25003836,0.1726209,0.32194534,-0.021371624,-0.11500149,-0.011473765,-0.2969118,0.39371732,0.41331908,-0.4142159,-0.32306758,0.3603342,0.5297809,0.09071136,-0.109571956,-0.029693121,0.03418209,-0.622652,-0.15916151,0.043101598,-0.41363248,0.5483119,-0.24671881,0.10597078,0.7056906,-0.40603533,0.06015518,0.3435935,0.08468017,-0.14096273,-0.27050427,-0.18909656,0.20919293,-0.65431446,0.028943181,-0.26164064,0.8808182,0.23759256,-0.53860635,0.25183377,-0.452983,0.19959815,-0.23404145,0.44832322,0.7055951,0.42458367,0.33127442,0.6690251,-0.3617253,-0.015943313,-0.07514882,-0.37620953,0.29582667,-0.2715862,0.0985887,-0.42341468,0.043128762,0.18821977,-0.35576043,0.10780869,0.11525965,-0.5759937,-0.08627608,0.16059148,0.64966184,-0.12189039,-0.28908634,0.6100387,1.049635,0.8966883,0.11790341,1.1531066,0.11840729,-0.18722998,0.16460092,-0.024903512,-0.6787844,0.25541475,0.3264188,-0.2026885,0.4063824,0.043844555,-0.18347454,0.3135344,-0.45087084,-0.16577844,-0.11501646,0.7316331,0.171848,-0.3440059,-0.4328048,-0.29988816,-0.10759554,-0.0032013655,0.14954163,0.2993635,-0.14358443,0.36317077,0.049014777,1.0246361,0.034547616,0.05075842,0.024872294,0.44766355,0.24679752,-0.039991923,0.18594877,0.32806292,0.19918077,0.2026422,-0.6021698,0.08032017,-0.28499663,-0.4058125,-0.08488295,-0.40726027,-0.16695046,-0.027998766,-0.2886869,-0.3246772,-0.14418332,-0.08774433,0.6272375,-2.8756893,-0.18282808,-0.13265808,0.2859274,-0.21672325,-0.28295985,-0.023170277,-0.5343905,0.25890934,0.4102893,0.44558764,-0.75904655,0.14146884,0.43684697,-0.68572134,-0.17679715,-0.5982806,-0.016261637,-0.062321037,0.4059604,0.16783042,-0.11381904,-0.02942946,0.13090558,0.5227948,0.2502562,0.1280088,0.25982913,0.2511894,-0.2179275,0.3551264,-0.034481853,0.51257277,-0.058123272,-0.100403965,0.17190547,-0.32775322,0.5139641,-0.19115092,0.121690966,0.49695387,-0.16867326,-0.838226,-0.6459903,-0.24725847,1.2507786,-0.12234676,-0.39163938,0.20034629,-0.35110292,-0.22771196,-0.19310355,0.4727697,-0.14947988,-0.0029619138,-0.6148167,0.12206861,-0.027681718,0.049279567,-0.051389158,-0.12387138,-0.34060642,0.78315425,0.05241223,0.4134312,0.22923832,0.113134086,-0.23484047,-0.50122863,-0.057805195,0.6806392,0.5136483,0.08579531,-0.13628997,-0.22889036,-0.34840083,-0.14263915,0.1957674,0.57491976,0.5606833,-0.12339244,-0.05466622,0.17381518,-0.0838133,0.16888912,-0.0020979953,-0.19920643,-0.08836635,-0.0895574,0.50650257,0.815042,-0.35641873,0.32325765,-0.065450296,0.28463995,-0.12987897,-0.47659886,0.63442993,0.7238216,-0.20654309,-0.27542573,0.71200067,0.4194764,-0.27764788,0.4206569,-0.5157291,-0.1879654,0.5609999,-0.071588166,-0.25454426,-0.070726804,-0.3861364,0.0874433,-0.68172383,0.3962098,-0.27818322,-0.42542076,-0.3652295,-0.03939393,-3.1102083,0.100067176,-0.28602692,-0.050246567,-0.22246647,-0.113706194,0.22603814,-0.74428135,-0.5205504,0.27558675,0.076951884,0.69421744,-0.2408792,0.0057095475,-0.19642723,-0.39885107,-0.32926795,0.14327918,-0.15716372,0.2539132,-0.09474663,-0.31658292,0.18099587,-0.021981286,-0.3663561,0.20821619,-0.40002537,-0.58479244,-0.24571443,-0.33743823,-0.19106041,0.7499412,-0.36275566,0.010274221,-0.16589311,0.12589684,-0.1534032,0.25402758,-0.06235603,-0.025209414,0.11444208,0.052430093,0.104538314,-0.32505727,0.6071308,0.032932635,0.54175776,0.48690167,-0.19340579,0.17501317,0.74303466,0.5992057,-0.082113855,0.83233446,0.26662436,-0.19225888,0.38930002,-0.16151245,-0.26644877,-0.27977553,-0.32534453,0.1267299,-0.37985823,-0.2689877,0.021691272,-0.38586846,-0.7056721,0.39240822,0.1047479,0.2632116,-0.14333987,0.21295588,0.5687724,-0.27504823,0.056762308,0.06994007,-0.22364946,-0.7055952,-0.32356718,-0.5766534,-0.2256457,0.3591644,1.0368767,-0.41380283,-0.102225244,-0.11826078,-0.21982253,0.058284253,0.059332747,-0.11097586,-0.18677859,0.21967566,-0.10528479,-0.6653538,0.55317163,-0.1824253,-0.09373786,-0.57780784,0.18764357,0.41592988,-0.5839519,0.34259745,0.4466255,0.045042377,-0.077500455,-0.4920418,-0.121822156,-0.031104423,-0.19664772,0.2436756,0.3640969,-0.79476863,0.37833688,0.34172428,-0.3433967,-0.6250625,0.39323863,-0.07568523,-0.17378087,-0.18488358,0.3087331,0.3566375,0.047795665,-0.1264201,0.13139339,-0.5750465,0.18595624,0.25864384,-0.0034129329,0.41104388,0.18313546,-0.1060131,-0.76947314,-0.022033012,-0.49489534,-0.2155828,0.1604568,0.18046798,0.15603305,0.26150084,0.42015442,0.42123482,-0.35141823,0.13932721,0.013554543,-0.37411404,0.6034557,0.40116405,0.44141063,-0.36315107,0.62556916,0.05403727,0.07472035,-0.025364667,-0.03188476,0.46163955,0.055720445,0.43058372,0.2173645,-0.17988257,0.116838746,0.7414362,-0.04165271,0.18579918,0.11989709,-0.065845184,0.2211218,-0.09284949,0.2079718,0.30746818,-0.59932774,-0.120072484,-0.33553776,0.104596876,0.50385696,0.13012818,0.054503124,0.09078205,-0.34145865,0.010966308,0.12864487,0.056199294,-1.3493309,0.26121867,0.14418061,0.60826474,0.487751,0.0645167,-0.05330349,0.64016235,-0.113325395,0.18999784,0.46397284,0.0774369,-0.40175867,0.536634,-0.74812216,0.4917585,-0.12546147,-0.11382025,-0.13954414,-0.037745494,0.21846054,0.9216609,-0.18729241,-0.17353423,-0.009987779,-0.38642237,0.13652344,-0.4395227,0.025502557,-0.5778825,-0.31240776,0.45145822,0.24326222,0.29223517,-0.18157648,0.009154458,0.061101526,-0.066612475,0.2924802,-0.15041007,0.08169668,-0.11687594,-0.45789227,-0.16586232,0.42291936,-0.14138465,0.3179554,-0.13143042,-0.06730965,0.105322726,-0.21698563,-0.19821806,-0.048735112,-0.5739005,0.019880392,-0.12084368,-0.5769599,0.5449371,-0.24974991,0.18008149,0.18784516,0.11173358,-0.1593873,0.19361258,0.18880148,0.56630474,-0.13999842,-0.133916,-0.41697058,0.13250165,0.009668835,-0.19592597,0.14923991,-0.034073737,0.117366284,-0.37668145,0.5495569,-0.1530123,-0.22563612,-0.14081536,-0.31868708,0.008244338,0.39285764,-0.33418027,-0.16188712,-0.10047596,-0.3974917,-0.04841784,-0.2620268,-0.060237627,0.27464363,0.23947544,-0.0778267,-0.13477634,-0.31816584,0.027950972,0.053314555,-0.0041195564,0.15993166,0.3287461,-0.21831937,-0.32900643,-0.26204178,0.16708654,0.28625578,0.041620083,-0.2837486,-0.5328131,-0.5074098,-0.35333285,0.100266635,0.024848074,0.24840379,0.05778105,-0.23917092,0.6924243,0.02174913,1.1791376,0.00430427,-0.31270698,-0.017885327,0.6675317,0.052488577,-0.046474483,-0.17280789,0.8381564,0.5112236,-0.12349736,-0.11327064,-0.51786214,0.12493014,0.31023657,-0.13171008,0.020033116,0.10431748,-0.6194675,-0.22348939,0.31796652,0.21473503,0.07436994,-0.034270924,0.035823222,0.19768965,0.115844876,0.36123478,-0.5161307,-0.055425193,0.37442574,0.29802272,0.22775453,0.17061274,-0.36743286,0.30555347,-0.696908,0.1834218,-0.17802668,0.08155569,-0.20551087,-0.33269373,0.17509176,0.16987085,0.36580026,-0.3450594,-0.48880187,-0.21052234,0.5304182,0.08561096,0.13982825,0.4557407,-0.27993008,-0.27020052,-0.017922327,0.60921466,1.118868,-0.061954662,-0.003096126,0.21072058,-0.4413453,-0.8320298,0.46212876,-0.33336404,0.37167975,-0.07680569,-0.16869052,-0.6181414,0.2406553,0.29656926,0.11863634,0.15563576,-0.52800864,-0.47003865,0.09170473,-0.5872955,-0.12410814,-0.26855662,0.19018336,0.5961745,-0.2680072,-0.17091013,-0.04722688,0.3582667,-0.22411261,-0.45005962,-0.15839802,-0.20877905,0.33276415,0.02428875,-0.3061532,-0.15420283,0.11022691,-0.4180285,0.2554057,0.01547344,-0.26436225,0.30917633,-0.31452978,0.2559351,0.59729177,-0.099321626,0.13393915,-0.5849729,-0.4487145,-0.6716235,-0.31110376,0.23109972,0.012368162,-0.01211772,-0.5361543,-0.11420574,0.0321632,0.1998444,-0.1557232,-0.35797027,0.49463177,0.114382245,0.13021086,0.13058639,-0.8992851,-0.12674595,0.0073627434,0.06794201,-0.5451681,0.49899137,-0.24261941,0.95146537,0.15516187,-0.05485561,0.07486863,-0.39621165,0.1417016,-0.14564721,-0.2574053,-0.45423272,0.14515048,231 -808,0.3639386,-0.08790997,-0.5856405,-0.052128058,-0.44570437,0.13774048,-0.3535323,0.31812468,0.21908565,-0.24607123,0.07027935,0.11530473,-0.20293339,0.3723402,-0.24463753,-0.5847393,-0.06354282,0.03953086,-0.6678149,0.48855114,-0.50736016,0.2876692,-0.14571646,0.43926224,0.081457235,0.27609932,0.036000017,0.06385407,0.15782963,-0.3077058,-0.16319874,0.08105356,-0.72812796,0.49404156,-0.19488227,-0.3702043,-0.041128907,-0.43640196,-0.29875168,-0.72807693,0.18271162,-0.7161031,0.63014454,-0.044563245,-0.40383554,-0.07849388,0.13785864,0.3519664,-0.1943087,0.11171659,0.35066548,-0.32711294,0.055144217,-0.3218745,-0.31956366,-0.27134797,-0.42796862,-0.25003946,-0.62811494,0.009756943,-0.21509087,0.17982633,-0.29066506,0.053269964,-0.34063414,0.267328,-0.33419704,0.1671462,0.027219897,-0.21392708,0.18072522,-0.45034286,0.03889667,-0.06996513,0.29892114,0.01747694,-0.20466948,0.2955119,-0.055273697,0.30801895,0.15129994,-0.11753818,-0.25951216,-0.21979149,0.15304881,0.40113655,-0.0324066,-0.10438702,-0.3033287,-0.16040717,0.40593806,0.36539814,-0.12611449,-0.41218987,0.12599523,-0.2948343,-0.21341312,0.6349967,0.4858644,-0.16793187,0.06844419,0.3068096,0.51075155,0.3091746,-0.3613803,0.20002943,-0.07485739,-0.4240911,-0.30986372,0.23305285,0.06503251,0.30377233,-0.10573845,0.28445956,0.58421147,-0.117580645,-0.12974158,0.12977675,-0.137269,0.25003985,-0.32161197,-0.21072294,0.119895935,-0.55284125,0.29065618,-0.26668373,0.70212156,0.054173965,-0.805715,0.2018174,-0.68684053,0.0026522055,0.0006005193,0.62510556,0.623243,0.6930814,0.057761192,0.804869,-0.35435104,0.07917878,-0.19977792,-0.18309416,0.030869016,0.12191784,0.20789666,-0.37969112,0.039784342,-0.18425326,0.10212878,0.041945633,0.081058875,-0.1963448,-0.20948903,-0.02627013,0.68237144,-0.3548614,-0.003093044,0.95084333,1.1946324,1.0154083,0.051951658,0.9443958,0.09935961,-0.064589344,-0.38048902,0.03476951,-0.60147595,0.1790223,0.3502525,0.3452808,0.29212525,0.027015023,0.04699562,0.25671875,-0.31714118,-0.14752229,0.08723345,0.33794487,-0.030037364,-0.02404379,-0.30689913,-0.3866422,0.22643293,0.0876095,0.0052511245,0.26433533,-0.2914699,0.52068657,0.21742272,1.0203758,0.103151105,0.17265594,0.13524212,0.45148364,0.2537736,-0.20821172,-0.12063575,0.25565112,0.25401637,-0.029506018,-0.59232694,0.13076133,-0.26047552,-0.25194404,-0.029311523,-0.43312874,-0.15422131,-0.23403935,-0.35898924,-0.044525117,0.015783204,-0.3566126,0.4773594,-2.7893455,-0.1481878,-0.08294446,0.3074865,-0.1727398,-0.26538262,-0.2155902,-0.42697588,0.47496963,0.13937984,0.4739902,-0.45224658,0.6575768,0.4745777,-0.3276557,-0.039926022,-0.59919596,-0.13517244,0.114559196,0.2870753,-0.055635255,0.017829945,-0.23859929,0.26606575,0.59729934,0.03548896,0.037363146,0.2847234,0.4468347,-0.21023488,0.6719098,-0.033470143,0.5351427,-0.5592775,0.027412502,0.33902726,-0.59321004,0.39337206,0.045786604,0.16456454,0.49609217,-0.5892055,-0.8375063,-0.573683,-0.32955548,1.3132014,-0.3696011,-0.5967744,0.20081611,-0.2691165,-0.2668536,0.14640516,0.5525932,-0.117276765,-0.040931415,-0.5774165,-0.06596985,-0.27487627,0.4467217,-0.07889671,0.112737514,-0.34841025,0.6017489,-0.13482638,0.6808395,0.28418633,0.13458143,-0.1261005,-0.30457124,0.11341377,0.6889582,0.5474023,0.099742025,-0.16841395,-0.20812678,-0.12281722,-0.0978257,0.080300756,0.91315836,0.4852195,-0.14133526,0.05342045,0.3280683,-0.23863256,-0.0014131218,-0.2737835,-0.26673305,-0.24250974,0.13507862,0.5526673,0.6845607,0.12884958,0.24434054,-0.015955068,0.23843072,-0.30029762,-0.5129561,0.23098896,0.42966294,-0.06687043,-0.23836224,0.51968783,0.60870177,-0.17840172,0.45150927,-0.5231201,-0.42890128,0.47351646,-0.030663468,-0.4792688,0.21830471,-0.23039353,-0.05051364,-0.79393387,0.19904639,-0.5709304,-0.9787612,-0.40727708,-0.119862705,-2.9739351,0.09882462,-0.005357273,-0.16913237,-0.39796305,-0.30437392,0.28180692,-0.39074692,-0.668968,0.0669025,0.017733077,0.5838178,-0.17710479,0.09117047,-0.29494688,-0.21327122,-0.24396695,0.26589254,0.20281975,0.3295619,-0.22192271,-0.2241174,-0.23318666,-0.12591262,-0.5330571,-0.029390454,-0.49932623,-0.10601011,0.06295779,-0.37399897,-0.2353574,0.5350617,-0.4696207,0.09713715,-0.09483006,-0.098465495,-0.1442367,0.34884644,0.2928597,0.3048393,0.12906857,-0.121281065,-0.25072268,-0.34282422,0.11748936,0.10282167,0.22835182,0.33822426,-0.18598521,-0.01241536,0.3459266,0.74311,0.051016465,0.9351458,-0.15925401,-0.09266215,0.45075837,-0.33964762,-0.6141781,-0.5951168,-0.18414755,-0.0029023339,-0.2944758,-0.31925398,-0.19307081,-0.2938317,-0.8316386,0.32798877,0.34024286,0.07763109,-0.15173627,0.21805823,0.214548,-0.1655374,0.06191257,-0.018812457,-0.104692794,-0.47287393,-0.36568105,-0.6370758,-0.5605117,-0.012181121,1.0074464,-0.16155131,0.055372063,0.10796402,-0.34959614,0.21534155,0.22768979,0.18086706,0.19488685,0.36357746,0.0065151155,-0.428252,0.3930353,-0.25635758,-0.16140728,-0.47511944,0.13298917,0.9560936,-0.6000455,0.44997248,0.27823067,0.1184149,-0.24227972,-0.57116777,-0.09089351,-0.08040104,-0.1774606,0.40482116,0.22906756,-0.7755478,0.44885042,0.07422373,0.027988335,-0.63226825,0.44593355,-0.018863207,-0.22958435,0.12191603,0.52487636,0.103552856,-0.12445062,-0.007459432,0.20954412,-0.23916392,0.32560083,0.19453107,-0.0033552349,0.12538365,0.049709085,-0.21213043,-0.6278246,-0.12746917,-0.66465497,-0.28732434,0.29541162,-0.09985005,-0.051845476,0.012547205,0.0064986446,0.3972944,-0.35704038,0.2650167,-0.30570516,-0.16509996,0.42999032,0.47245553,0.49434268,-0.50101465,0.6442179,0.29987994,0.06669483,0.10836845,0.26006138,0.4003397,-0.15223368,0.4570315,-0.1367213,0.10956538,0.13799864,0.5223442,0.31177938,0.29106024,0.0890829,-0.010447949,0.38696364,0.10129646,0.31351438,-0.09066237,-0.41570863,0.16058709,-0.13078813,0.0855271,0.4505464,0.12571457,0.36695388,0.079638876,0.006214132,0.05644994,0.23089443,-0.4343934,-1.3914531,0.5027411,0.16421174,0.79026634,0.43820748,0.20940572,0.100136705,0.6922731,-0.24413025,0.021048315,0.30301854,0.26257285,-0.29029503,0.6572713,-0.55419797,0.47530404,-0.01464749,-0.029209673,0.24584156,0.08614843,0.59235704,0.8634682,-0.137776,0.010374869,0.015692601,-0.19475411,-0.00786839,-0.30220276,-0.008021717,-0.37708375,-0.46203718,0.5350129,0.35218915,0.49111006,-0.33120435,-0.080423646,-0.0001501441,-0.061115604,0.089568526,-0.14091061,-0.15271248,-0.16793735,-0.45593277,-0.18837707,0.6145815,-0.33863235,0.12975629,0.16196351,-0.20429938,0.35504678,0.21892376,0.08647847,-0.0043607564,-0.7477322,0.2339976,-0.394846,-0.22281848,0.08900366,-0.54367,0.32815903,0.2190605,-0.10188576,-0.1819123,0.33342662,0.24598868,0.64271677,0.032924175,-0.12015977,-0.19886017,0.19881074,0.117203556,-0.3049935,-0.09062434,-0.26237544,-0.02592936,-0.60976744,0.11493876,-0.2828691,-0.30107698,0.18062162,-0.106957264,0.049208302,0.50972605,-0.06838182,-0.16224277,0.09025404,-0.008315911,-0.3352196,-0.32735586,-0.34597662,0.19709067,0.17435856,0.09276304,0.07430318,0.014491449,-0.021816378,0.2593852,0.26646468,0.37933198,0.14026958,0.01673849,-0.3138435,0.039408024,-0.020330263,0.45004463,0.1455414,0.10656778,-0.048844393,-0.27526945,-0.273891,0.53170145,-0.28288817,0.23949455,-0.008026123,-0.3843687,0.71780235,0.023646077,0.9165711,0.028983995,-0.3859547,0.20541207,0.5445173,0.03373425,-0.04529633,-0.21078521,0.87971395,0.40901288,-0.220976,-0.027312348,-0.44204724,-0.2823894,0.04656383,-0.25444245,-0.23953456,-0.10697529,-0.46988496,0.068377964,0.17686558,0.2869228,0.036958124,-0.08643376,-0.25494778,0.25563613,0.058636088,0.35319236,-0.5158752,-0.02599513,0.35351777,-0.033914607,-0.019291801,-0.018708592,-0.3516283,0.38039017,-0.71943736,0.24032778,-0.6126943,0.018230474,-0.18896765,-0.16770174,0.18305485,0.04204269,0.20734598,-0.32953027,-0.23661493,-0.07820422,0.45489708,0.25251982,0.33847883,0.7152236,-0.20713349,-0.08394999,0.055811256,0.4330589,0.68796045,-0.22852981,-0.07116806,0.28960654,-0.3946507,-0.53368,-0.0038883735,-0.37903896,0.07189632,-0.004427125,-0.35840094,-0.17321469,0.26233536,-0.022852818,0.2094421,-0.020938454,-0.7442589,-0.033887297,0.21282929,-0.2601369,-0.31258014,-0.4285643,0.16820978,0.67857987,-0.18354899,-0.41509795,0.06124488,0.12074623,-0.22748917,-0.5407192,0.026562465,-0.17817135,0.104265966,0.011366378,-0.3558966,-0.05552895,0.48133698,-0.5001957,0.03227452,0.081469774,-0.30044392,-0.0030278538,-0.19397129,-0.08945622,0.8824217,-0.2312511,0.0557764,-0.37546477,-0.6007926,-0.6086877,-0.24824263,0.022818573,0.30843014,0.019783879,-0.58355194,-0.09880888,-0.36349872,-0.10600863,0.03547716,-0.38203022,0.3944285,0.16078417,0.4093893,-0.21009563,-1.0815308,0.34294024,0.25127718,-0.19892295,-0.36400533,0.48327455,-0.18074755,0.4472116,0.048624218,0.046158403,0.0046202443,-0.7304902,0.32525185,-0.25766298,0.025594631,-0.67193896,0.25357577,234 -809,0.21964554,-0.28227362,-0.482843,0.013751794,0.02459614,-0.026654245,-0.25895324,0.6054237,0.31187388,-0.2966067,-0.3044397,-0.13195105,-0.07856973,0.37422895,-0.17687981,-0.412482,-0.008759906,0.12094594,-0.25082514,0.5717358,-0.27618524,0.053426106,-0.012534936,0.47414434,0.23821743,0.09076238,0.16926579,0.112879865,-0.10878586,-0.16126658,-0.059215363,0.382768,-0.4175636,0.1473612,-0.44223085,-0.33837947,-0.13477623,-0.6556956,-0.4976621,-0.7626409,0.31601417,-0.8214143,0.45598245,0.08769097,-0.23706575,0.26448217,0.03146091,0.15754333,-0.07609554,-0.15266947,0.038974106,-0.20180541,-0.07784363,-0.01877963,-0.18859571,-0.17453885,-0.60113627,0.023864733,-0.42984918,0.008692701,-0.19452816,0.17331348,-0.34302345,-0.05664393,0.08840089,0.49529442,-0.37040356,0.031557575,0.08156844,-0.13083999,0.21422233,-0.6773827,-0.344744,-0.078325436,0.38431406,-0.17046528,-0.18034606,0.18634684,0.17711301,0.46646562,-0.23429756,0.004617249,-0.4436444,0.055820614,0.045484584,0.6266623,-0.2070998,-0.6865911,-0.10964054,-0.054277066,0.16390501,0.18195017,0.021354685,-0.12680879,-0.051370252,-0.1949652,-0.19879852,0.42580009,0.5382171,-0.13897507,-0.15603621,0.2459377,0.3950522,0.4644023,-0.13832536,-0.0331793,0.11094951,-0.6248713,-0.10302616,-0.20947309,-0.1803204,0.76003766,-0.104297124,0.40262413,0.37105343,0.016003335,-0.02628834,0.06259627,0.047745276,-0.20439868,-0.240436,-0.27512887,0.2747791,-0.33200866,0.3049402,-0.036686167,0.6056703,0.10234807,-0.727132,0.42824265,-0.4012716,0.17706394,0.05734312,0.5338164,0.77952605,0.24058478,0.5194758,0.69042236,-0.34953198,0.02040642,0.081070475,-0.23445934,-0.0069336295,-0.23614435,-0.13467866,-0.46122786,-0.06184717,0.034272105,0.060699493,0.3537053,0.4178481,-0.44196627,-0.16513604,0.3536822,0.8057053,-0.1090348,-0.009235665,0.7686467,1.1569347,1.0486773,-0.08143254,1.1207716,0.057055008,-0.22062378,0.13852562,0.092365086,-0.8423589,0.22708143,0.32563427,-0.119872905,0.30328658,0.11679254,-0.11043473,0.42406604,-0.5160907,-0.0592812,-0.117968984,-0.14621447,0.24116577,-0.15127142,-0.48051107,-0.184992,-0.15341358,0.04646786,0.07613122,0.2698321,-0.1863712,0.4405589,-0.05348596,1.4750015,-0.0595779,-0.05861729,0.112971164,0.5421855,0.26388538,-0.18432756,-0.056142177,0.25507855,0.36734983,0.09463004,-0.5266497,-0.00681976,-0.24190404,-0.31465372,-0.05442916,-0.2711459,-0.23592205,0.09423357,-0.31531823,-0.24438834,-0.156431,-0.3882077,0.4763951,-3.1279957,-0.15775819,-0.08313358,0.1845574,-0.15361744,-0.30572978,-0.26140884,-0.4182347,0.5437924,0.40662813,0.5015984,-0.5627375,0.03880747,0.42341623,-0.5652928,-0.13794005,-0.5479767,-0.053741198,0.027140781,0.4804124,0.17228232,-0.1431691,0.07646102,0.24475001,0.51282793,0.3023071,0.1118358,0.34421143,0.42129922,-0.10806664,0.23581243,-0.24644287,0.35867834,-0.39090946,-0.1846308,0.3905387,-0.31444564,0.3168397,-0.47050261,0.20410043,0.5362986,-0.37462536,-0.8126593,-0.5758627,-0.1241787,1.2635552,-0.027342834,-0.5151248,0.2696133,-0.43272552,-0.3239288,-0.21898215,0.77644986,-0.20402704,-0.053509522,-0.7187634,-0.1342411,-0.0722919,0.07725964,0.0021169707,-0.14954998,-0.5478401,0.64450616,0.080878876,0.36195898,0.47975025,0.090489,-0.24599327,-0.48568916,0.08832828,0.7432611,0.370916,0.2226821,-0.39176568,-0.014555818,-0.31896433,-0.0100459205,0.0055516423,0.5607732,0.5841524,-0.110129565,0.23194478,0.28093135,0.33447763,0.10643797,-0.108735375,-0.27617696,-0.2586902,-0.04293755,0.6413147,0.8649978,-0.20176655,0.10676362,0.064252906,0.100162126,-0.1555274,-0.2184496,0.53618234,1.0350643,-0.08829239,-0.31570005,0.6328959,0.46026012,-0.29959273,0.41044676,-0.54549366,-0.3042091,0.36067834,0.01602594,-0.62443894,0.20398183,-0.38656172,0.022335136,-0.7212639,0.10182709,-0.13400063,-0.32874814,-0.6535633,-0.11173547,-3.1320832,0.07373466,-0.1986805,-0.30925998,-0.28767493,-0.26083672,0.20709918,-0.39971498,-0.6087157,0.21714611,0.04436527,0.54008687,-0.19809346,0.034045514,-0.31237426,-0.39093986,-0.34878758,0.077119775,0.1290836,0.35784677,0.030485958,-0.37892914,-0.27429348,-0.29003355,-0.39274368,-0.046020467,-0.46854365,-0.26244125,-0.089876376,-0.4044931,-0.16465382,0.54516596,-0.38994455,-0.012391768,-0.2888029,-0.030731937,-0.15945838,0.19129854,0.049037512,0.1323785,-0.106042646,-0.16939257,0.056088746,-0.09838434,0.45840606,0.083284,0.1810105,0.40635493,-0.14369392,0.19159742,0.37332046,0.71049637,-0.37708202,1.1014323,0.5009933,0.03457148,0.22907078,-0.09645948,-0.27992937,-0.406654,-0.13973726,0.1724055,-0.42513156,-0.52430123,0.017936429,-0.3995172,-0.7836501,0.5217976,-0.116588764,0.37215984,0.12071215,0.08537365,0.5108335,-0.2626138,0.0021742533,0.007376107,0.03051725,-0.4443761,-0.33682773,-0.55677503,-0.5310984,-0.07695056,0.6731549,-0.19275011,0.10191231,0.311563,-0.31997627,-0.19605894,0.13763674,0.09419551,0.042320352,0.35028538,0.094951786,-0.7154939,0.5112203,-0.11517793,-0.2188195,-0.6010557,0.11798058,0.46529353,-0.56377155,0.71613127,0.51360685,-0.09194077,-0.3012242,-0.6238031,-0.31007996,-0.28474298,-0.18531992,0.32234588,0.36173713,-0.71630436,0.40221846,0.2339478,-0.1743568,-0.6863354,0.5208283,-0.055989195,-0.11970409,0.04087838,0.34878838,-0.024312416,0.06610246,-0.023844272,0.23390807,-0.15235622,0.28741595,0.0041265837,-0.058408562,0.33516538,-0.266255,-0.010434779,-0.5989898,0.12564187,-0.56444496,-0.24577598,0.37242332,0.1288206,0.19949055,-0.019424967,0.113981746,0.26484078,-0.23724282,0.09263575,-0.0970006,-0.23025633,0.23446767,0.47818354,0.6939021,-0.39792904,0.60502416,0.0017355854,-0.18010573,0.034556407,0.0839758,0.31101334,-0.012171361,0.35714248,0.003254056,-0.21038657,0.15554954,0.82120156,0.25524786,0.30168155,0.012543763,-0.02563087,0.44189158,0.111628674,0.1774437,-0.085291624,-0.6533554,-0.05162151,-0.5704884,0.16285141,0.45314622,0.042538125,0.20095284,-0.23339249,-0.23664378,0.022436911,0.30881867,0.19567966,-1.1389391,0.179842,0.12830256,0.8873046,0.42151126,-0.03700375,0.025945565,0.75319767,-0.0014735857,0.11537498,0.50779605,0.11193237,-0.47300777,0.50057083,-0.5553302,0.50255704,0.06442125,0.037287146,0.10532856,-0.14205875,0.4148191,0.60937005,-0.13429219,0.009340875,0.13507278,-0.22907068,0.023536017,-0.44217005,0.18434854,-0.4254926,-0.16455477,0.6148089,0.7169984,0.17141448,-0.20834094,0.052590568,0.00043349713,-0.06760082,0.016279718,-0.01642007,0.09950926,-0.29493165,-0.84711725,0.13572903,0.44796196,0.07077681,0.036475714,-0.055153325,-0.18942426,0.20488088,-0.16658217,-0.06974737,-0.20070155,-0.6953676,-0.06868353,-0.2962104,-0.516879,0.57624036,-0.14460938,0.31663898,0.2788839,0.1116691,-0.28610894,0.3276631,-0.19455247,0.82743263,-0.025608564,-0.0050300304,-0.35389265,0.05582379,0.21710652,-0.22303586,-0.2777044,-0.35621476,-0.14519612,-0.30156574,0.4670569,0.044133324,-0.22263145,0.11911573,0.01898739,0.07640191,0.65515405,-0.032502007,-0.06916621,-0.050168633,-0.044406414,-0.29963598,-0.17952351,-0.17064522,0.34085214,0.2504036,0.07763373,-0.18148798,-0.12515445,-0.17086339,0.24534963,-0.058741793,0.3660448,0.3417648,0.1048427,-0.18915212,-0.10878388,0.1339808,0.69596416,0.118413635,-0.25803795,-0.24983741,-0.51696116,-0.3797743,0.27743116,-0.06938747,0.38671803,0.2106639,-0.0832837,0.40957892,0.111045875,0.9060165,0.09223786,-0.41249064,0.15859209,0.48556533,-0.051666755,-0.18034202,-0.36340192,0.81759673,0.32167906,-0.08912226,-0.077569745,-0.27157316,0.21187903,0.026995482,-0.11914677,-0.11324254,0.015273272,-0.66062015,0.036958024,0.19322127,0.3101226,0.23393963,-0.13424969,0.056223582,0.2464621,0.0773397,0.21636182,-0.3643097,-0.25206387,0.41672292,0.24362469,-0.117847525,-0.036341056,-0.4015877,0.34299365,-0.44225708,-0.29995224,-0.42362344,0.14628112,-0.41452944,-0.36009452,0.21362366,-0.08818444,0.52314484,-0.2932609,-0.20755072,-0.3364106,0.30956924,0.2088935,0.14100459,0.28890723,-0.19963403,0.007465651,-0.00603137,0.46526286,1.018332,-0.3629379,-0.034695942,0.3549403,-0.23811941,-0.5434117,0.24278061,-0.56358653,0.39461938,0.07449674,-0.071837716,-0.5879683,0.077660464,0.054845527,0.09953638,-0.036041316,-0.6386753,-0.26469433,0.11459917,-0.11281233,-0.17176634,-0.39177546,-0.14984636,0.530461,-0.20800517,-0.4134868,0.049071044,0.3094655,-0.0990391,-0.6159366,0.18556829,-0.30665135,0.21099831,0.025186008,-0.36378184,-0.26261708,-0.06476948,-0.5864525,0.30256143,0.18389325,-0.31680235,0.021489287,-0.30172005,-0.07874727,1.0760652,-0.44298783,0.31548443,-0.3598975,-0.44854212,-0.81862444,-0.28776395,0.43237743,0.18313205,0.16744532,-0.5758417,0.109453104,-0.25250298,-0.083604336,-0.07385028,-0.24130225,0.4549179,0.114332296,0.44825277,-0.26170418,-0.6299284,0.22016345,0.006058616,-0.16986042,-0.47178555,0.4759995,0.18927467,0.937529,0.06350758,0.10106223,0.24093068,-0.44975662,-0.17636967,-0.10166901,-0.1801598,-0.50876707,0.19296311,238 -810,0.4996561,-0.08738481,-0.3903396,-0.25991443,-0.42596027,-0.19849472,-0.056433033,0.1380352,0.23700197,-0.2198679,-0.305723,0.0039916136,0.043275226,0.47265676,-0.13627775,-1.1260662,-0.04020175,0.2335455,-0.64105874,0.46787915,-0.6412947,0.4875622,0.2053051,0.13952011,-0.11989566,0.3846923,0.66803837,-0.3702536,0.07361406,-0.01925237,-0.22140515,0.08449406,-0.58514756,0.28443983,-0.016301423,-0.19872941,0.18594272,-0.14022048,-0.05793674,-0.75504845,0.2894428,-0.8457889,0.34198394,0.05943514,-0.11892319,-0.27604762,0.10497519,0.32924148,-0.46014038,0.14694308,0.26208436,-0.3354696,-0.23109019,-0.31673184,0.30222276,-0.39276877,-0.36945888,-0.09810131,-0.50373334,-0.4122651,-0.29613623,0.19098942,-0.50858986,-0.08170704,-0.011377196,0.3230797,-0.41891825,-0.2550288,0.3558706,-0.46812686,0.26001275,-0.560988,-0.028962374,-0.09062529,0.6441528,0.11451751,0.03327407,0.62646717,0.27752918,0.35330406,0.46251836,-0.4187962,-0.1889587,-0.23560233,0.20609702,0.48552665,-0.1894282,-0.59565324,-0.037269842,0.068657935,0.0637259,0.19320141,-0.11216891,-0.2433123,-0.08082827,-0.13596918,-0.058800172,0.46725282,0.53803927,-0.18579046,-0.1733485,0.32323432,0.47600642,0.042857114,-0.031044075,-0.126942,-0.008960863,-0.6223018,-0.22750689,0.12239369,-0.087976016,0.5297961,-0.28438368,0.13094221,0.87362975,-0.2377836,0.10452182,-0.054511372,-0.041594084,-0.29258233,-0.07283386,-0.2464829,0.22185093,-0.53802204,-0.08756187,-0.36652234,1.1151685,0.23383002,-0.65736246,0.5311556,-0.4629459,0.21346517,-0.17785978,0.7168233,0.58244467,0.38474658,0.21467237,0.895345,-0.4982581,0.16367505,-0.009508073,-0.5857573,0.09001658,-0.081631035,0.1616072,-0.43824625,0.09167042,-0.18853955,0.20646997,0.029168757,0.120077424,-0.5527905,-0.024010537,0.17838079,0.76549643,-0.43100145,0.12514378,0.5772819,0.9987052,0.82964164,0.11305511,1.2105273,0.4285766,-0.3669536,0.18711221,-0.35763228,-0.7492676,0.23616965,0.56972396,0.1690199,0.27346408,-0.13011618,0.002485114,0.2497062,-0.5684846,0.13246875,-0.214693,0.568487,0.036977213,-0.17774297,-0.6172902,-0.04813816,-0.02724316,0.057046443,0.20594959,0.3002136,-0.07956702,0.452749,-0.11262437,0.88094807,0.061277006,0.15157837,-0.088120304,0.59684724,0.37586233,-0.06781479,-0.07495352,0.34376535,0.48567453,-0.13892879,-0.6467497,0.1507364,-0.43350574,-0.3474413,-0.09679258,-0.3208437,0.03132559,0.4031588,-0.13814585,-0.30011037,0.09705881,-0.16865619,0.4333396,-2.3695645,-0.28337628,-0.20646441,0.19013923,-0.30625072,-0.046771754,-0.2195818,-0.58586556,0.35420093,0.3512608,0.53194577,-0.53710985,0.38774696,0.49747106,-0.50768256,-0.15555021,-0.6496745,0.081725895,-0.20277368,0.44178542,0.20720343,-0.2888598,-0.23925811,0.13501759,0.74771667,0.17421146,0.026837623,0.43535516,0.25613657,0.22230951,0.47937012,-8.498629e-05,0.5849057,-0.40600368,-0.23277931,0.24414551,-0.16490065,0.24050456,-0.45486662,0.07729071,0.40866604,-0.56959575,-0.99002105,-0.7308385,-0.40065917,1.1917826,-0.27368268,-0.48590767,0.3825473,0.2477088,0.16001487,0.20287849,0.48034307,-0.11420894,0.15142769,-0.6428686,0.06879719,0.09936895,0.14852186,0.2171217,-0.2373718,-0.44561592,0.7100765,-0.04448593,0.43188632,0.24600172,0.2552677,-0.24079819,-0.47251973,0.09648008,0.746068,0.2474731,0.012504091,-0.02159146,-0.22001915,-0.027532032,-0.2390036,-0.06256596,0.43849257,1.0530957,-0.10865816,-0.18278162,0.3430175,-0.101763956,0.22502577,-0.013925624,-0.30362353,0.00021197896,-0.043365452,0.4859316,0.59152985,-0.078073286,0.34892452,-0.15213874,0.43458807,0.0074348315,-0.48391628,0.8336286,0.72614366,-0.12631328,-0.0146440035,0.4447492,0.40039125,-0.3509318,0.59037894,-0.55787164,-0.49409914,0.61837083,-0.20214875,-0.39895284,-0.08876526,-0.3870784,0.1692837,-0.94500166,0.44725165,-0.5065004,-0.44457304,-0.47597918,-0.124773145,-3.718619,0.27179202,-0.33010355,0.09947357,-0.28981748,0.10461348,0.28776884,-0.77368754,-0.41482535,0.25626704,0.20295365,0.5966998,-0.019801473,0.17056692,-0.19824564,-0.10970638,-0.06569502,0.14627172,-0.09565433,0.22799444,0.050327796,-0.4421291,0.2373172,-0.052399393,-0.47317564,0.27429965,-0.511509,-0.46881643,-0.23306644,-0.6558277,-0.3352656,0.62571096,-0.39077926,0.04203826,-0.20367436,0.23883714,-0.29661414,0.15194647,-0.080854185,0.12854646,0.19527389,-0.14962474,0.011795069,-0.27789423,0.65135837,-0.07464159,0.44121483,0.00034852079,-0.15659997,-0.0711469,0.5992191,0.4188206,-0.18943107,0.92021805,0.3910202,0.030477742,0.16990294,-0.36236218,-0.2827687,-0.6525545,-0.60384744,0.15340413,-0.39487243,-0.48159686,0.020717278,-0.38398576,-0.9035589,0.5824688,-0.022350112,0.22837187,0.011505852,0.07310626,0.22699688,-0.09972965,0.027840294,-0.08336603,-0.12451434,-0.52737105,-0.074455686,-0.60827595,-0.38968804,-0.07973727,0.7449975,-0.37478307,-0.066922545,-0.1650611,-0.22440915,0.13346484,-0.08443295,0.101800285,0.27250987,0.29186025,-0.08892693,-0.7128379,0.5131267,-0.171308,-0.025732726,-0.56890255,0.06990942,0.5209061,-0.86169034,0.5558299,0.48578393,-0.047797408,0.09301893,-0.42962876,-0.30482903,0.005122771,-0.017796978,0.42872682,-0.074914195,-0.54548746,0.52265567,0.30369225,-0.56975955,-0.83418447,0.24084944,-0.06732077,-0.38085213,0.15783486,0.26662055,-0.0295765,-0.10480994,-0.37601873,0.046734314,-0.4792812,0.33898982,0.10490345,0.02962266,0.5118516,-0.061514314,-0.48790312,-0.8527263,-0.17560764,-0.47384867,-0.063601434,0.15453528,0.006680353,-0.21128279,0.022076309,0.09156547,0.44990468,-0.14206848,0.13793884,0.12467641,-0.47794497,0.25238407,0.39045525,0.2788237,-0.42381445,0.63920027,0.16957879,-0.21172793,-0.21516974,0.10940138,0.48197708,0.23486483,0.33116642,-0.14682066,-0.05287485,0.5216043,0.8263097,-0.01012909,0.34279737,0.039548665,-0.09697297,0.5867712,0.15806733,0.24069916,0.10721014,-0.34540856,-0.033656437,0.035292562,0.064400144,0.49062183,0.30822808,0.39914104,0.1734941,-0.25366196,-0.05144235,0.344287,-0.14108741,-1.0685833,0.5972802,0.27239475,0.6823538,0.48965678,0.03925652,-0.27302197,0.5995408,-0.17309372,0.13618286,0.14162947,-0.19892244,-0.44491592,0.75517064,-0.5489112,0.110681914,-0.17537825,-0.14760514,0.021587497,0.15443699,0.20992969,0.76973486,-0.052880198,0.07961547,-0.25202218,-0.14786778,0.038297955,-0.4057093,0.079248995,-0.42659223,-0.31940192,0.5200817,0.16495666,0.27016506,-0.1316204,-0.0825766,0.10371578,-0.084974885,0.31851128,-0.17260952,-0.026481649,0.23938783,-0.671021,-0.1990215,0.4774232,0.25037187,0.22665252,-0.17202614,-0.24858952,0.17425586,-0.34386936,-0.12203153,-0.17550306,-0.6068749,0.103156716,-0.11321265,-0.28734103,0.45422578,-0.21004383,0.28004763,0.22675556,0.055436373,-0.14839081,0.13342057,0.13100894,0.7368552,0.1581228,-0.37904856,-0.4076202,-0.03137323,0.18768673,-0.30652073,0.1485864,-0.34717473,-0.14971416,-0.45796064,0.66247344,-0.17354196,-0.18033655,0.24761201,-0.37989092,-0.22167571,0.4875908,-0.27624056,-0.06251826,0.23525433,-0.14932005,-0.24220932,-0.005788535,-0.48622823,0.18093859,0.31261358,0.11371913,-0.1999345,-0.25903204,-0.1501065,0.6618424,0.031171486,0.21766095,0.028168857,0.07259288,-0.17764594,0.058827013,0.23518805,0.5085675,0.22952473,0.10494272,-0.4324763,-0.41930023,-0.26094684,-0.23402129,-0.058849115,0.08919412,0.06819219,-0.38696957,0.6286816,0.23694186,1.2797041,0.21271408,-0.24779864,0.051211596,0.566415,-0.019735763,0.10059285,-0.33438203,0.95590687,0.6638813,-0.31773537,-0.06945182,-0.6022451,-0.048494205,0.33540615,-0.29195818,-0.05097152,-0.05741166,-0.5400364,-0.65705377,0.38211688,0.27752078,-0.026310617,0.08025815,-0.10336166,-0.13038908,0.23680007,0.5031144,-0.7679234,-0.26296487,0.2165329,0.071736835,0.24928679,0.16520321,-0.24089451,0.5540888,-0.76998883,0.18954976,-0.41064188,0.009412822,-0.36990604,-0.33632484,0.2446866,0.15992731,0.3998282,-0.19674444,-0.53477156,0.052742492,0.4598371,0.130304,0.17614289,0.7143481,-0.3226763,0.034537382,0.22241576,0.6683046,1.2181318,-0.34788188,0.05633557,0.2536279,-0.37819675,-0.53796595,0.46432844,-0.20731778,-0.28755412,-0.27943775,-0.63375765,-0.62142414,0.21162312,0.113871515,0.032690678,0.18851466,-0.52969104,-0.2065347,0.2803055,-0.43058422,-0.2967633,-0.16726267,0.66757745,0.6837606,-0.4353529,-0.37007987,0.15673985,0.30377117,-0.333006,-0.5841068,-0.17784084,-0.12722059,0.4424578,0.26637825,-0.23906334,-0.10659912,0.19366618,-0.40284276,0.11048754,0.23794878,-0.38320205,0.17160685,-0.15065464,0.010932659,0.7265119,-0.25549078,0.1220207,-0.87194085,-0.24503107,-1.0066893,-0.3248099,0.6775792,0.1524789,-0.019027626,-0.539041,0.010198821,-0.027886264,0.08792826,-0.011280924,-0.48928508,0.30392298,0.09196284,0.6369234,-0.11099684,-0.96426296,-0.022569729,0.17612892,-0.18129373,-0.5826864,0.49443483,-0.06195947,0.9736662,-0.003570035,-0.19504811,0.06236954,-0.5397945,0.17706896,-0.34432396,-0.23787618,-0.80878067,0.094067164,257 -811,0.4194357,-0.047383368,-0.59614724,-0.18387966,-0.42945597,-0.081390694,-0.24508373,0.061316382,0.32383463,-0.22671212,-0.093355276,-0.1604021,0.059323873,0.3726677,-0.12284392,-0.91276425,0.07365666,0.12806447,-0.74158174,0.42342937,-0.4297429,0.6358444,0.17878039,0.46757922,-0.08201424,0.21679695,0.23789589,-0.101647206,-0.043170977,-0.387614,-0.19229154,0.11395293,-0.95031637,0.36662543,-0.02942619,-0.39525998,0.093988575,-0.4634305,-0.17916463,-0.66726404,0.16599865,-0.66054314,0.7759808,-0.038386002,-0.33850646,-0.13106884,0.11496299,0.106652655,-0.17911176,0.2403115,0.30578786,-0.49137148,-0.04309835,-0.33400837,-0.37284935,-0.8088781,-0.6929113,-0.09267952,-0.63826495,-0.19501317,-0.28120938,0.2386157,-0.4756074,-0.112563394,-0.13542992,0.2868273,-0.30217806,0.34016228,0.2123611,-0.30550268,0.13959268,-0.4075022,-0.19915895,-0.25577927,0.26573446,-0.14683937,-0.44103518,0.23632492,0.44341448,0.39961854,0.10700535,-0.2930301,-0.16782552,-0.23836017,-0.11077269,0.54081553,-0.113157034,-0.35288095,-0.1529995,-0.09143445,0.42341208,0.17918813,0.22549514,-0.24611033,-0.2156495,-0.12164873,-0.09424663,0.4685279,0.43578172,-0.24797992,-0.18576527,0.48625788,0.10068219,0.11293474,-0.21959907,0.34173527,-0.0554726,-0.57733494,-0.20100439,0.061259568,-0.0377343,0.55564964,-0.37349907,0.23778377,0.77993745,-0.38755986,-0.2969912,0.12937726,-0.05922919,-0.06104635,0.0047195554,0.0008171995,0.37454143,-0.47713408,-0.12598358,-0.34693277,0.771591,0.23838836,-0.7176574,0.2286858,-0.5967118,0.19094367,0.07220365,0.696506,0.9218819,0.71044713,0.25153333,0.8345062,-0.37637118,0.15799433,0.3264788,-0.40498015,0.12447243,-0.2376136,-0.092552684,-0.45895496,-0.012479126,0.12172396,-0.13801982,0.22522736,0.4730247,-0.5832609,-0.1787038,-0.024086952,0.54942083,-0.33006534,-0.23877032,1.0519258,0.91340715,1.1155256,0.31465396,1.4873133,0.3658495,-0.09855288,-0.1978925,0.024932051,-0.6766651,0.15403171,0.16984259,-0.6825104,0.52060753,0.05925176,0.13349135,0.15348952,-0.39949653,-0.17952223,0.10406538,0.3365295,-0.09380114,-0.46086845,-0.476517,-0.25357038,0.075878076,0.18688758,-0.06844447,0.3534757,-0.03917076,0.7784415,0.16516133,0.96703297,0.13444285,-0.12578674,-0.05503371,0.3516704,0.3309882,-0.19378674,-0.15996133,0.3029952,0.3340378,0.16709606,-0.51406354,-0.21062584,-0.30379143,-0.5225672,-0.42638907,-0.23757303,-0.07158921,-0.41172585,-0.08993537,-0.42087734,-0.041240517,-0.29536283,0.44170845,-2.1366975,-0.10531763,-0.0424228,0.44460413,0.049834087,-0.28376988,-0.25983724,-0.5590277,0.24183445,0.33171776,0.5287904,-0.8311338,0.27378845,0.36960152,-0.5472299,-0.44196478,-0.7367463,0.078971624,-0.060149837,0.26237464,-0.044599857,-0.2716296,-0.047372907,0.22296603,0.6666643,0.012857924,0.012719867,0.27169117,0.59524816,-0.2105742,0.3822002,0.16902453,0.60291666,-0.11967641,-0.20610213,0.30601326,-0.5749224,0.13976292,0.21382655,0.054215174,0.47721168,-0.64508957,-0.8310859,-0.5049126,-0.15889579,1.1013463,-0.33052993,-0.3717552,0.17285137,-0.17196123,-0.3357009,0.10368368,0.5823064,-0.32968128,0.26211238,-0.5071065,-0.14342242,-0.009021829,0.31854972,-0.083419226,0.12884021,-0.46585393,0.75756216,-0.2419206,0.38861904,0.3531811,0.12052205,-0.62708217,-0.59780276,0.08801583,1.0445257,0.4646615,0.15515853,-0.20946892,-0.18311162,-0.4066472,-0.21018922,0.11129838,0.60019004,0.73110914,-0.28847435,0.11522859,0.46340504,-0.17000856,0.26653695,-0.06010297,-0.17913692,-0.040178545,-0.04647966,0.6594102,0.91448736,-0.054991852,0.63535863,-0.11912131,0.5314603,-0.06538638,-0.6515057,0.60553217,1.1556221,-0.1473627,-0.34780923,0.6216211,0.09391091,-0.32270193,0.47678736,-0.34805354,-0.43144897,0.69503874,0.005982049,-0.47293937,0.43945512,-0.33258983,0.26643816,-1.055377,0.650933,0.06764459,-0.75650954,-0.6563126,-0.07873448,-3.2155876,0.16197066,-0.16323505,0.010261744,-0.31652638,-0.2564607,0.17632441,-0.63093597,-0.53930485,0.034175187,0.058772504,0.679801,-0.28537586,0.20804016,-0.2226742,-0.70548326,-0.1996376,0.47169712,0.18201673,0.27168727,-0.08471259,-0.26542807,0.1632392,-0.3193579,-0.5996153,-0.13454904,-0.7120514,-0.6305372,-0.05980349,-0.77782726,-0.33582583,0.86603904,-0.45874432,-0.052129537,-0.3335495,-0.013434917,-0.06756955,0.29463187,0.12797889,0.12343911,0.037723254,0.10487651,-0.039090145,-0.08329025,0.054303866,0.11263243,0.46756482,0.40356073,-0.26822135,0.3036367,0.51003975,0.6689603,-0.16207393,0.9384207,0.29121205,-0.16243832,0.27503204,-0.29581994,-0.5518511,-0.75505084,-0.40156606,-0.07881764,-0.57475585,-0.3227655,-0.07357114,-0.15884428,-0.8342543,0.62071323,0.078187875,-0.06326554,-0.078320764,0.553128,0.2099461,-0.060367335,0.07229813,-0.2033257,-0.34864983,-0.3586562,-0.24434292,-0.75762177,-0.69262415,0.019555554,1.3367977,-0.1304685,0.04531287,0.1822496,-0.13737021,0.21886922,0.050071478,0.25552475,0.18277471,0.33230624,-0.06513197,-0.6375571,0.41270038,-0.34055352,-0.10607401,-0.51588917,-0.035505075,0.8485184,-0.69907093,0.44572064,0.36161432,0.11067275,-0.055302966,-0.5416727,-0.17201935,0.10118725,-0.21808128,0.38300633,0.2341786,-0.7509392,0.52020574,0.16220967,-0.31523374,-0.47686458,0.45429423,-0.04796647,-0.09989443,0.17935993,0.4596169,-0.016931176,-0.11119618,-0.33087516,0.29581463,-0.45924807,0.20968175,0.18334514,0.07892612,0.28363794,0.008055736,-0.47507298,-0.81725186,0.13657744,-0.43800822,-0.5443799,-0.12905966,0.12624653,-0.0075326175,0.29339656,0.1236892,0.37048033,-0.41460872,0.2029597,-0.20524664,-0.2775903,0.5234681,0.51348233,0.37168816,-0.47812834,0.7579641,0.2597305,0.058084566,-0.16690779,-0.123331696,0.47241235,0.07655845,0.38020393,0.31480214,-0.18799703,0.0035764973,0.7129391,0.17032288,0.43544182,0.25341824,-0.16321106,0.20589156,0.2031855,0.36796236,0.12170291,-0.37867472,-0.047553603,-0.09752673,0.09590912,0.40670753,0.15974335,0.30947456,-0.11472395,-0.22584064,0.1260689,0.14535235,0.15206322,-1.4268818,0.3181699,0.40812823,0.5910304,0.5213247,0.14425293,-0.0018773079,0.6475261,-0.3504839,-0.10299765,0.16405986,0.034910966,-0.34343693,0.6414955,-0.6592241,0.46537623,-0.21272208,0.044530407,0.120016575,-0.00718156,0.28567854,1.210396,-0.11475015,0.18814509,-0.011480804,-0.16070713,0.10671725,-0.5265178,0.15648355,-0.33795705,-0.2697076,1.0031134,0.10023739,0.3283436,-0.29070345,0.08464196,0.13029462,-0.22985037,0.27050683,-0.10655543,-0.026391536,-0.3344696,-0.50878674,-0.19520806,0.6708757,0.0225548,0.009074244,0.10832996,-0.2556401,0.36096475,-0.10202669,0.032884855,-0.11496103,-0.55491793,-0.056579757,-0.54990745,-0.6877373,0.36538383,-0.305007,0.26967767,0.36801305,0.043649774,-0.21185462,0.1696185,0.3530507,0.6243671,0.1329159,-0.31599826,0.048687916,0.32107034,0.22374006,-0.50832564,0.010501553,-0.27632645,0.28381285,-0.55850875,0.4334532,-0.20095278,-0.46596608,-0.18776815,-0.10786741,-0.011911143,0.16113564,-0.053006966,-0.09427909,0.47144115,-0.0046389005,-0.09047085,-0.20380168,-0.36560395,0.3722545,0.16052961,-0.28174865,0.025654132,-0.07315689,-0.14471921,0.20084985,-0.02364107,0.42576978,0.2946187,0.024651637,-0.4308723,0.18886472,-0.05473401,0.49368533,0.19056995,0.0051469007,-0.25848457,-0.3756077,-0.23473279,0.33220518,-0.16194691,0.23862426,0.21012795,-0.27328745,0.8990653,0.19558054,1.3373631,-0.068301894,-0.5815549,0.19198602,0.53807455,0.09594711,-0.08934853,-0.25010693,1.4799781,0.53929585,-0.3572775,-0.14001486,-0.4983329,-0.30578637,0.165754,-0.30535713,-0.47514296,-0.04119646,-0.68087715,-0.24484126,0.14425233,0.06346791,-0.011135836,-0.055446487,-0.013155547,0.30408636,0.09152617,0.15531369,-0.6624961,0.019280681,0.3548995,0.16802692,-0.09060213,0.114361525,-0.36623612,0.38613245,-0.6658525,0.35712442,-0.38488337,0.23094706,-0.054972295,-0.3744429,0.25209776,0.16649188,0.261807,-0.4100765,-0.26172101,-0.3047662,0.5810651,0.11553117,0.275661,0.7884074,-0.27781245,-0.13738662,0.04363958,0.5529277,1.4847131,-0.006875401,0.053200077,0.40788546,-0.4742163,-0.544015,0.26645464,-0.38928404,0.012132118,-0.21188492,-0.44133094,-0.52783376,0.1406448,0.08925312,0.27351877,0.15630805,-0.44836077,-0.1359172,0.2989428,-0.5520482,-0.22866912,-0.31477574,0.304616,0.75016737,-0.32958075,-0.5234795,-0.067923464,0.08912906,-0.30881485,-0.6952441,-0.024715463,-0.05467506,0.45231986,0.11123779,-0.3561875,0.036841303,0.21379405,-0.4828886,0.23963551,0.43811262,-0.37144062,0.08640593,-0.28468677,-0.095855676,0.83336586,-0.23060738,0.1734643,-0.50969595,-0.70425415,-0.8615772,-0.4668815,0.099557765,0.33213308,0.06291308,-0.74619204,-0.1815493,-0.004303848,-0.15896408,0.10588208,-0.5002869,0.38797727,0.2358994,0.54824424,-0.2704277,-1.2569141,0.18099642,0.25945306,-0.13128658,-0.7571502,0.5463787,-0.1173189,0.7223237,0.21084853,-0.029060883,0.46317366,-0.63928634,0.35846654,-0.06721794,-0.025724495,-0.5723732,0.055997167,261 -812,0.25515553,-0.1966867,-0.41208756,-0.29867846,-0.44896117,0.16726035,-0.23658586,0.44846526,0.20281525,-0.39290845,-0.14534055,-0.07544453,-0.019163245,0.18524718,-0.106972136,-0.49251947,-0.16229174,0.10499724,-0.59649247,0.43770227,-0.53005874,0.3961018,0.039102037,0.33738363,0.047330316,0.3063145,0.38851795,0.026233098,0.3069794,-0.23423259,-0.057445794,0.14420201,-0.6052608,0.39007154,-0.35891452,-0.40549326,0.19930522,-0.18604434,0.01857998,-0.5641493,0.15741472,-0.7879445,0.55007327,-0.043607872,-0.1797752,0.21583648,0.48406497,0.19162875,-0.19575675,-0.16643555,0.19095016,-0.19696437,-0.13795058,-0.25802588,-0.16624933,-0.50137097,-0.4236308,0.03364493,-0.650408,-0.35488272,-0.2973598,0.25934163,-0.30813023,0.04353041,-0.15686522,0.33366325,-0.33878002,-0.00509653,0.20161664,-0.3210859,0.18868856,-0.57188314,-0.07087914,-0.1510127,0.3510214,0.04133301,-0.0088805305,0.35698524,0.22995673,0.4691422,0.23221998,-0.2631529,-0.240876,-0.39896035,0.050212022,0.38333055,-0.1285689,-0.15601276,-0.31266734,-0.089440435,0.3227001,0.37257275,0.1061461,0.0038185965,0.111559935,-0.36165848,-0.2670711,0.6546822,0.38792896,-0.38301015,-0.45233586,0.22909625,0.66378444,0.09133182,-0.4001358,-0.039834145,-0.054809228,-0.43871906,-0.2433265,0.019179128,-0.06870059,0.28930524,-0.11028186,0.040586695,0.81995326,-0.12017473,-0.06246516,0.06304395,0.0020893465,0.013208471,-0.36279276,-0.035386577,0.19875242,-0.6654896,-0.07601982,-0.31590018,0.69513035,-0.015928933,-0.60565275,0.4199967,-0.650191,0.1401638,-0.0020372719,0.5158985,0.42960504,0.5100679,0.11277837,0.69386894,-0.19113411,0.014791623,-0.100010686,-0.09803928,0.17875095,-0.3746415,0.1135203,-0.37395713,0.46668157,-0.15366602,0.3241864,-0.07638976,0.2900935,-0.5969122,-0.1411301,0.51980114,0.76549023,-0.2625362,-0.12449023,0.5790239,1.0699731,0.9747662,-0.16962965,1.3169609,0.05684047,-0.18727557,-0.026403138,0.07861039,-0.53774196,0.1523277,0.36388174,0.24149406,0.22701347,0.01572486,0.07125244,0.23167036,-0.27896217,-0.15801115,-0.08437743,0.3118715,0.12010724,-0.03087213,-0.45715427,-0.27114165,0.34070656,-0.09081764,0.2702903,0.17652409,-0.1777054,0.35188735,0.039243665,0.912615,-0.051661015,0.16359015,0.21554606,0.4764043,0.18296526,0.073049225,0.061210405,0.3965486,0.1504835,0.16421093,-0.54175013,0.3149965,-0.34029174,-0.43712243,-0.087118186,-0.5244098,-0.39653865,0.07831807,-0.25030854,-0.33530334,-0.21571581,-0.2926648,0.25713035,-2.9152424,-0.2948067,-0.20301203,0.21799631,-0.2219008,-0.065385886,-0.06076728,-0.46174464,0.3033811,0.38293815,0.4547052,-0.46743786,0.39165553,0.7919113,-0.5287412,-0.29000777,-0.50636226,-0.13344811,-0.06183639,0.6570244,0.13880892,-0.18355553,-0.3816376,0.19456935,0.7216597,0.1344564,0.298242,0.42198193,0.417956,-0.11770066,0.59549624,0.0037095894,0.56677145,-0.4784684,-0.113492765,0.39444816,-0.39110804,0.2960598,-0.32622382,0.022452572,0.50555414,-0.39284006,-0.82530683,-0.5563696,-0.3554192,1.1912012,-0.190399,-0.3562484,0.10709492,-0.24042736,-0.084911235,0.005629744,0.42166606,-0.03748088,0.27020338,-0.5562854,0.1552409,-0.10388418,0.2245388,-0.083569825,-0.07712337,-0.46852192,0.94524837,-0.037773278,0.51720715,0.1458777,0.1994756,-0.20805354,-0.20575555,-0.033469822,0.8218918,0.50002354,-0.07382298,-0.2250719,-0.27892622,-0.2524632,-0.20252614,0.0046981126,0.6419479,0.6323516,-0.06323714,0.16961806,0.36067513,-0.054353457,0.07087094,-0.13090485,-0.18351395,-0.20373571,0.10623461,0.44798508,0.72722775,-0.071743764,0.16163029,-0.0669887,0.3555907,-0.14439386,-0.5230646,0.32200432,0.31372732,-0.043673858,0.038194917,0.87657523,0.6356322,-0.4083345,0.48534563,-0.75651664,-0.39122653,0.70942384,-0.27329934,-0.48171556,0.020072797,-0.28281954,-0.09736198,-0.63435966,0.19840634,-0.45864725,-0.40778527,-0.30289972,-0.22586574,-3.2956512,0.34063396,-0.15837342,0.030140469,-0.51113623,-0.08739019,0.21797194,-0.5883518,-0.6494088,0.09207957,0.2472726,0.45961905,-0.13740472,0.08042974,-0.35896996,-0.3764533,0.05958885,0.3444368,-0.074074395,0.09330537,-0.34086296,-0.2681431,-0.028391758,-0.10031054,-0.38962594,0.1765574,-0.50255495,-0.36209598,0.030700123,-0.37393725,-0.17253838,0.641599,-0.39260614,-0.018409438,-0.30754474,0.09094892,-0.11253264,0.056509193,0.019546192,0.17172682,0.29096678,-0.14160888,-0.052444693,-0.44978067,0.6438544,-0.018247373,0.49349287,0.1576597,-0.1345702,-0.07730196,0.3281935,0.4744433,-0.14302045,1.0385004,0.082750574,0.04123644,0.49757507,-0.13237204,-0.43938938,-0.5660792,-0.06626731,0.02255108,-0.34296545,-0.44835648,0.21971373,-0.2155125,-0.8151464,0.7242592,-0.07242813,0.28245082,-0.24442701,0.33906934,0.23172761,-0.21577843,0.009232941,-0.16024478,-0.0958815,-0.5104349,-0.3956289,-0.75629044,-0.43849155,0.049847152,0.9838298,-0.4315841,0.076019876,0.08742174,-0.09109185,0.2402876,0.28691366,0.31342146,0.23839836,0.62546104,0.16135652,-0.6565669,0.53062516,-0.039079923,-0.18919308,-0.22416604,0.21471684,0.63344926,-0.72930217,0.3689866,0.51057225,-0.02101705,-0.019445807,-0.59856755,-0.011633324,-0.12216226,-0.22074513,0.4794909,0.07038782,-1.046513,0.5133619,0.07863464,-0.41416702,-0.8123161,0.34105828,-0.25127482,-0.10242259,-0.27261522,0.32120243,0.3382772,-0.05070745,0.15624194,0.14831017,-0.38681853,0.16210797,-0.07129576,-0.038364545,0.45265317,-0.07361826,-0.28582242,-0.66716814,0.040759664,-0.5766093,-0.3555212,0.3342564,-0.20566587,-0.1977082,0.46784958,0.06197242,0.44641376,-0.14159708,0.1732239,0.18881333,-0.4327036,0.3809979,0.38936362,0.42016473,-0.3787069,0.55892557,0.12357711,-0.08000908,0.063147545,-0.111130476,0.38764933,-0.16187616,0.4684296,-0.18472885,0.029867344,0.39019,0.73044604,0.21328676,0.27474615,0.061495874,-0.04230622,0.42766532,-0.14782281,0.03625823,-0.030112125,-0.65894026,0.07586237,-0.023645878,0.02918312,0.46341094,0.18764639,0.46113953,0.11633899,-0.032722984,0.06273954,0.18646318,-0.20003681,-0.9361987,-0.031193087,0.15240227,0.8824312,0.40677294,0.21367896,0.010207255,0.78131104,-0.29160175,-0.062656455,0.52683824,0.098101676,-0.24027729,0.81199217,-0.39570796,0.41647515,-0.32023677,-0.068896085,0.059547108,0.119149365,0.44222435,0.9216407,-0.19335563,-0.069972716,0.025971415,-0.14859004,0.07912898,-0.36371335,0.16248824,-0.22622813,-0.1284614,0.65662974,0.3043009,0.31379178,-0.33216542,-0.02834489,0.064343475,-0.16255379,0.23211135,-0.18096708,-0.08109378,0.022245735,-0.28149247,0.042183246,0.4912665,0.24554805,0.30132654,-0.20058638,-0.40229544,0.1532195,0.057892084,0.11176769,0.053769868,-0.58790326,0.19194539,-0.026333908,-0.6471284,0.6005459,-0.15670164,-0.075202264,0.34892967,-0.105475456,-0.015524119,0.10401984,0.11447116,0.49440444,-0.028107742,-0.067382075,-0.31670555,-0.10842493,0.06537081,-0.3533591,0.15358424,-0.3888924,0.28602627,-0.5937108,0.48526993,-0.21253853,-0.5366456,0.10029838,-0.25574502,-0.14572714,0.44220492,0.1891769,0.035333563,-0.026851118,-0.2065342,-0.22318156,-0.1593493,-0.19737077,0.1986345,-0.0018329421,-0.1487787,-0.20727472,-0.32898927,-0.08001151,0.33654535,-0.013577677,0.2916932,0.19605888,-0.11710695,-0.2801852,0.38067952,0.03271612,0.36233974,-0.02070733,0.056124583,-0.1302252,-0.28784496,-0.24954556,0.57130235,-0.07959921,0.025966525,0.17520912,-0.30880928,0.80335885,-0.18383169,1.0273099,0.014276721,-0.37082878,0.15961947,0.6782561,-0.059616398,0.12852459,-0.40007272,0.867443,0.53644735,-0.20751162,-0.20133577,-0.4493189,0.010960023,0.1637164,-0.42130122,-0.10526329,-0.12928171,-0.53188556,-0.33482042,0.18044071,0.24402583,0.21620707,-0.10552464,0.032432564,0.16871877,0.14469649,0.6259678,-0.60143566,-0.27985516,0.24382329,0.26049435,-0.2677118,0.16417153,-0.3493434,0.4089702,-0.77856207,0.23586214,-0.471737,-0.088295996,-0.49632147,-0.22450064,0.054071482,-0.13452335,0.28260913,-0.20958717,-0.43484473,0.01662516,0.16532008,0.05704552,0.23558338,0.5678134,-0.29871318,-0.071713895,0.017246911,0.49908185,1.0074017,-0.24629152,-0.18269612,0.16958404,-0.35502282,-0.6236436,0.26311827,-0.5787378,0.084724806,0.06145213,-0.42748252,-0.15624748,0.30024707,0.39168668,0.021708885,0.1571597,-0.60719305,-0.12607016,0.12612525,-0.27243173,-0.20670378,-0.08149194,0.16593117,0.7785129,-0.21243478,-0.2133165,-0.10329809,0.43564382,-0.31272903,-0.8406102,0.01650542,-0.35853466,0.5198391,0.13383222,-0.14301375,-0.07075108,0.13353355,-0.5722836,0.15834947,0.40469286,-0.32813928,-0.027890896,-0.3970313,0.25928047,0.7806256,0.014584293,-0.14502841,-0.3917532,-0.5009942,-0.8980794,-0.41265365,0.06363133,0.17257781,-0.09724533,-0.15777259,-0.10358065,-0.2352478,-0.22560513,0.17847352,-0.47004166,0.20897694,0.15961818,0.5120968,-0.2955936,-1.0507402,0.060581367,0.19626057,-0.00021928549,-0.5678937,0.46153346,-0.25863716,0.7062046,0.22008024,-0.26665887,-0.029691659,-0.35197803,0.29505172,-0.3856841,-0.08145597,-0.58784634,0.14979358,268 -813,0.66734296,-0.29792315,-0.68798035,-0.14355241,-0.2187432,0.010019444,-0.075561054,0.3545662,0.4115931,-0.52918607,-0.05889061,-0.05817233,0.23897314,-0.016560277,-0.17249556,-0.4231286,0.12078485,0.22894807,-0.41787472,0.6476387,-0.34694767,0.1027318,0.067005016,0.35439026,-0.13025856,0.19385822,-0.09461259,0.03439927,-0.1390263,-0.035164174,-0.08146825,0.36773777,-0.74821883,0.29741958,-0.14461733,-0.20211278,-0.1387301,-0.37595537,-0.28168514,-0.83567053,0.22476391,-0.9861868,0.5332412,0.31124985,-0.43515816,0.028868387,0.13865441,0.26770815,-0.2640263,-0.057630602,0.10657299,-0.21878265,-0.16375762,-0.21458225,-0.12651004,-0.46625447,-0.648013,-0.040197812,-0.5445681,0.07501483,-0.20979585,0.21950941,-0.17053936,-0.09006715,-0.22608262,0.7096944,-0.29398015,0.02181676,0.2992855,-0.2797159,0.6656906,-0.66910386,-0.092315875,-0.21917601,0.07552355,-0.16184811,-0.6011173,0.06225084,0.37859464,0.59761524,-0.052180443,-0.28757405,-0.4699615,0.11122503,0.11925904,0.20008735,-0.17099734,-0.62854594,-0.16632175,0.011915331,0.13628203,0.16377448,0.2871449,-0.5273009,-0.019702235,0.07841512,-0.24582845,0.5273883,0.5569535,-0.36089277,-0.19917025,0.26422724,0.87073827,0.08671749,-0.10967403,-0.14605872,0.05620562,-0.6512959,-0.12500389,0.38405347,-0.32161835,0.7491212,-0.17895806,-0.0028653939,0.5219222,-0.33652863,-0.31512454,0.44451022,0.12441218,-0.028962672,-0.5962758,-0.3102879,0.38466525,-0.5030734,-0.013348843,-0.37965968,0.615936,0.0464965,-0.7329109,0.2614093,-0.51626456,0.089566864,-0.1285815,0.53928584,0.77269816,0.6117272,0.2804939,0.90673494,-0.541317,-0.0758395,-0.22860259,-0.33453688,0.35198462,-0.23016918,0.12798396,-0.50565785,-0.070765935,-0.13236736,-0.3276324,0.0731749,0.38873097,-0.6394691,-0.21767287,0.3027301,0.5842908,-0.1835882,-0.31901547,0.5982565,1.1408211,1.0345635,0.2693995,1.3677925,0.072377905,-0.10130942,0.16259561,-0.00852409,-0.8105552,0.38332787,0.316087,0.12934652,0.33115005,0.16933538,0.056944888,0.4326638,-0.4328513,-0.0048488975,-0.21918242,0.43733826,0.051454965,-0.15899156,-0.3861123,-0.17423137,-0.059450123,0.17486525,-0.062956,0.19348331,-0.29552516,0.12543696,0.1608757,1.3178042,-0.2964275,-0.03604106,-0.019557891,0.32979414,0.3287594,-0.13216701,-0.005932192,0.47274947,0.16726579,0.46525493,-0.5124721,0.04726556,-0.2174509,-0.4042265,-0.13164856,-0.29171282,0.099486865,-0.10025511,-0.4424139,-0.18558311,-0.046494175,-0.3443817,0.589523,-2.6563642,-0.08104221,-0.029770022,0.32985404,-0.32623965,-0.45945033,-0.10384368,-0.48931065,0.263741,0.34927547,0.5428125,-0.7734892,0.344595,0.3751203,-0.64388084,-0.05275948,-0.8144881,-0.21560758,-0.1661811,0.28101072,0.3173936,-0.19604214,0.098141044,0.16787875,0.55372167,-0.023318449,0.010761117,0.2809126,0.16828275,-0.21541424,0.6051037,-0.023003886,0.51423043,-0.24794875,-0.28727704,0.3722882,-0.47970644,0.23107727,0.19269802,0.060058344,0.55488724,-0.33601752,-1.0215048,-0.99096555,-0.009124239,1.0229836,-0.22486454,-0.5377791,0.07426169,-0.6068871,-0.5115497,-0.059900954,0.40022424,0.07563177,0.07027815,-0.9682732,0.0006566371,-0.08215789,0.51399344,-0.007284593,-0.08943677,-0.51343614,0.85339755,0.010565554,0.5258826,0.50047857,0.21906845,-0.46146348,-0.37217972,-0.07314595,1.1837198,0.30747995,0.16669677,-0.32277367,-0.13857335,-0.39485207,0.30141228,0.12529017,0.6879634,0.53359216,-0.17556441,-0.006306452,0.31926748,-0.11943152,-0.05332172,-0.045575332,-0.4510169,-0.25474086,-0.017003788,0.5411184,0.97541,-0.30418783,0.29008597,-0.12203476,0.2861967,-0.041222636,-0.59438807,0.685517,1.0851401,-0.15808432,-0.4502301,0.73549956,0.46547988,-0.4380933,0.61839384,-0.635153,-0.35454345,0.20346981,-0.07728114,-0.36672768,0.19469096,-0.5030687,0.22481062,-0.8251691,0.41792837,-0.39789057,-0.2985265,-0.5835394,-0.18685041,-3.0305092,0.38915506,-0.086389065,-0.075017504,-0.19354261,-0.05493878,0.1699814,-0.7180353,-0.63746834,0.13158834,0.14667094,0.5085427,-0.18656397,-0.15784012,-0.18282723,-0.44812676,-0.075938806,0.2683725,0.12566088,0.17957373,0.02052194,-0.5040005,-0.076339774,-0.06259187,-0.28203186,0.0838485,-0.734422,-0.577863,-0.17660461,-0.6144324,-0.41489485,0.7306908,-0.3692809,0.022641147,-0.21872075,0.11733063,0.14875081,0.27985758,-0.067302234,0.26318082,0.026985893,-0.015214008,-0.07589888,-0.23443882,0.009709935,0.08536935,0.09265951,0.5342485,-0.22514008,0.264025,0.6821043,0.8275363,-0.25773147,0.84873223,0.64019233,-0.046134915,0.25966635,0.012523711,-0.34988773,-0.6383666,-0.16004176,-0.102003485,-0.65495086,-0.067104526,0.19072656,-0.3393533,-0.79549474,0.60223025,-0.0025944065,0.028199509,0.165218,0.60720056,0.63520354,-0.45075926,0.036484342,-0.0036924034,-0.30185804,-0.53456247,-0.421427,-0.46947336,-0.27902135,0.0660558,1.0404825,-0.22721612,0.124214835,0.29270878,0.12827753,0.1742597,0.2618916,-0.046709526,0.057893377,0.65699416,0.067697145,-0.42868063,0.36454523,-0.17841537,-0.18090926,-0.5017765,0.5412416,0.54578876,-0.66149193,0.67217714,0.38113102,-0.021355035,-0.2753801,-0.6158766,-0.22914724,0.05687407,-0.18488626,0.5458135,0.38868967,-0.9212523,0.20679253,0.25387743,-0.22274087,-0.5867359,0.566575,-0.18774669,-0.4211378,-0.4552435,0.43302557,0.060893435,0.22579814,-0.24154234,0.14744236,-0.49485275,0.01516745,0.32304177,-0.03196935,0.22083814,-0.09514129,-0.069569714,-0.87457013,-0.011133577,-0.5949153,-0.37392488,0.5181847,0.040606398,0.117507644,0.18588586,0.1839183,0.4024117,-0.37512675,0.12167245,-0.10582922,-0.25825024,0.57509667,0.5093465,0.57964855,-0.5562583,0.49531397,-0.013941172,-0.03998199,-0.31131104,0.004541099,0.5216959,0.025058405,0.46844077,-0.0020578105,-0.038326126,0.33248857,0.70142823,0.08099394,0.39042425,0.03300979,0.04425313,0.14459261,0.06925821,0.34382543,-0.14712408,-0.62057847,0.2612917,-0.39336303,0.13386126,0.3524394,0.018954262,0.23007576,-0.034227256,-0.30548155,-0.1308678,0.33424306,0.08113403,-1.4853948,0.29372895,0.30965933,0.7840226,0.6283272,0.10109365,0.02907625,0.65697515,-0.17083369,0.19020343,0.2984614,-0.07558683,-0.30127493,0.550149,-0.8221505,0.46326497,-0.14303546,-0.001719296,-0.101212464,-0.26923436,0.41958317,1.0050378,-0.29193893,0.13109067,-0.116395004,-0.1401561,0.17112036,-0.5521973,0.12008426,-0.6090221,-0.48964572,0.7149417,0.46075293,0.7572022,-0.26754656,-0.09614595,0.16483861,-0.10294505,0.24305458,-0.19080837,0.036368325,0.18242204,-0.6753531,0.10613936,0.51607925,0.06298938,0.11894404,-0.12572816,-0.124822944,0.19251406,-0.014561787,-0.14170301,-0.11135521,-0.7026894,-0.17926876,-0.35148337,-0.34723726,0.73032445,-0.2348602,-0.010725384,0.14738162,0.060123812,-0.27534142,0.4781634,0.29867157,0.77288324,0.23393331,0.046403587,-0.546002,0.3483559,-0.011566904,-0.09610861,0.027491877,-0.288999,0.17254792,-0.5881818,0.36486563,-0.15626703,-0.58751196,0.0037041008,-0.031902496,0.19057679,0.65596443,-0.33317468,-0.42380178,-0.04892453,-0.19807325,-0.14755072,-0.1463827,-0.0013711428,0.33030188,0.06402423,0.026497401,-0.0980958,-0.15113294,-0.07606316,0.1802603,0.1774354,0.30163956,0.38815752,0.17702867,-0.4421327,0.13633005,0.1510207,0.6665346,-0.13532926,-0.20633669,-0.19668019,-0.37478605,-0.4753085,0.030492002,0.05875137,0.3132674,0.19574372,-0.15825723,1.0160861,0.05948494,1.4823428,-0.076220416,-0.3486645,-0.026894122,0.584278,-0.083589695,-0.026604056,-0.41922235,0.9839938,0.4486018,-0.20800997,-0.088534735,-0.48209152,-0.036704708,0.00788791,-0.15461524,0.12353476,-0.04483221,-0.7632163,-0.21738863,0.23945688,0.44408986,0.2659666,-0.13177209,0.1381832,0.33923134,-0.053546607,0.21529157,-0.45004225,0.10535377,0.19940609,0.42046392,0.022305219,0.12500823,-0.39931628,0.2995235,-0.56072,0.019414088,-0.2550329,0.11204943,-0.15658249,-0.2796334,0.2923046,-0.032877166,0.36396965,-0.48175207,-0.4186318,-0.17860979,0.5595281,0.24431546,0.09244258,0.8134992,-0.05849569,-0.06463169,0.09310884,0.51225895,1.0574998,-0.3921859,-0.060659643,0.28704345,-0.4453626,-0.73160815,0.2973673,-0.38362575,0.28259596,-0.010315935,-0.35669217,-0.5539411,0.17267872,0.19181556,-0.0411488,0.044706147,-0.6707017,0.041899323,0.21916099,-0.45417896,-0.03231789,-0.07327784,0.23515171,0.48237845,-0.16280304,-0.41297355,0.11058404,0.2888716,-0.06623327,-0.48813525,-0.23103024,-0.40290782,0.22495122,0.117506824,-0.4621748,-0.05718595,0.10681168,-0.66702765,-0.013070817,0.16523373,-0.20317914,0.26078248,-0.43660906,-0.14579095,0.8498602,-0.0386619,0.2590142,-0.39977947,-0.52372724,-0.85204935,-0.04613437,0.18146504,-0.10327328,0.020960242,-0.7326698,-0.08946928,-0.15858632,-0.104869045,-0.123468876,-0.30943432,0.71756434,0.13760161,0.39480445,-0.1511582,-0.9160586,0.20915298,0.18701184,0.13428394,-0.66211545,0.4255601,0.04086053,0.8423147,0.03260571,0.22764201,0.48231032,-0.7303602,0.05010371,-0.2483811,-0.10938952,-0.6844538,-0.0938208,269 -814,0.62466854,-0.17467098,-0.36381137,-0.16267124,-0.13292828,-0.14101972,-0.16904472,0.51446366,0.3377231,-0.43275285,-0.24754375,-0.28087926,0.08407062,0.27603224,-0.12754099,-0.7289093,-0.024919642,0.14204513,-0.45757368,0.5296087,-0.50353867,0.4028356,0.016097903,0.35252205,0.19071116,0.3343524,0.10659551,-0.05494404,-0.14555392,-0.27600658,0.007895728,-0.084589295,-0.67763335,0.14010838,-0.121623315,-0.4809812,-0.1325707,-0.63186485,-0.43260872,-0.775657,0.36322105,-0.86230594,0.5425108,0.1376939,-0.20608665,0.32739875,-0.041227683,0.25073987,-0.16228214,0.13129126,0.14361045,0.05544688,0.0187835,-0.18163736,-0.16552508,-0.28202644,-0.72043705,0.14889035,-0.30437222,-0.31165886,-0.30986366,0.11089623,-0.3908516,0.06833083,0.03544603,0.46449235,-0.33419958,0.12963408,0.085309826,-0.14394994,0.24014384,-0.5023878,-0.23368175,-0.050246764,0.27210602,-0.22706078,-0.2101901,0.23405273,0.098735474,0.46891,-0.043714833,-0.17233527,-0.36024654,-0.06657522,0.115488835,0.57805306,-0.15134108,-0.42474428,-0.027742976,0.06925357,0.17351745,0.078189634,0.2344501,-0.23512469,-0.21455006,-0.061821535,-0.3377124,0.44542703,0.65604347,-0.32422593,-0.34108782,0.38282552,0.46647266,0.11359451,0.013233635,0.09519703,0.055751085,-0.529505,-0.18488139,-0.08186984,-0.13674913,0.41379383,-0.17867184,0.3466333,0.66434485,-0.18047278,0.05193119,0.10882636,-0.047807544,-0.039783314,-0.13430369,-0.34205922,0.25994638,-0.35516396,0.13201238,-0.3092718,0.9149625,0.10549199,-0.8789704,0.43011543,-0.63132715,0.1878789,-0.0019468889,0.52195805,0.7343824,0.27013433,0.46919844,0.7451866,-0.3697505,0.03722597,-0.06815388,-0.29171035,0.13507219,-0.1979746,0.15760882,-0.46678004,-0.16620706,0.17789257,-0.2817983,0.31367436,0.420208,-0.41410804,-0.0036030586,0.22704656,0.77434736,-0.2611886,-0.005550603,0.81264144,1.0797782,1.2290459,0.18142498,1.1571913,0.20288368,-0.3215487,0.24437697,-0.43115857,-0.72579986,0.3674222,0.3457954,0.022631636,0.36812115,0.050779354,-0.028627358,0.2556418,-0.45297205,0.19517384,-0.042628895,0.16722552,0.12654684,-0.1633578,-0.42820367,-0.32256907,-0.28952056,0.044348095,0.13958402,0.20781802,-0.27682662,0.2724277,-0.0076111034,1.6410574,-0.051858947,0.038719755,0.004052773,0.52659845,0.10575231,-0.30037642,-0.08589532,0.050599594,0.4898812,0.05359366,-0.7062728,-0.025200313,-0.127971,-0.3257814,-0.18735804,-0.37559834,-0.07735147,0.008653666,-0.32064202,-0.20385742,-0.22622909,-0.48237142,0.31498915,-2.6864948,-0.29219666,-0.0010021074,0.41913858,-0.09280589,-0.3380569,-0.20908575,-0.5791526,0.40636587,0.40863252,0.46790454,-0.6454901,0.32233772,0.50887305,-0.57832026,-0.14769414,-0.7316415,0.16530032,-0.14381932,0.16751766,0.019547412,0.0071774223,-0.0450269,0.17618968,0.4553635,0.17345206,0.036865354,0.27829173,0.42143095,-0.060936723,0.5275709,-0.10282899,0.39928016,-0.087458275,-0.10657537,0.22408895,-0.43834043,0.0021290828,-0.27890137,0.16904391,0.39622116,-0.6600233,-0.8351753,-0.67255473,-0.27340993,1.1633979,-0.04428209,-0.39863643,0.41978648,-0.27498814,-0.3480188,-0.106259316,0.6058608,-0.17691243,-0.27094707,-0.74668473,-0.13438402,-0.1049413,0.14234768,0.021727404,-0.11454698,-0.54947466,0.71049196,-0.05200073,0.45047972,0.22704624,0.15580194,-0.08475224,-0.41105676,0.170623,1.1118474,0.33665502,0.19134527,-0.46115747,-0.1508201,-0.41675165,-0.1558624,0.05704367,0.49027,0.7251981,-0.16512837,0.08997389,0.25471762,0.13747026,0.058907498,-0.0863539,-0.13205975,-0.08034004,-0.12851296,0.66818887,0.79847425,-0.20332539,0.4219365,-0.12549625,0.19015495,-0.28513822,-0.30355844,0.6660095,0.81722736,0.062797,-0.28786218,0.57281214,0.26642075,-0.25709036,0.5899386,-0.54426044,-0.2508603,0.2831501,-0.18863487,-0.3405061,0.28500295,-0.34224573,0.10820412,-0.88340807,0.4047977,-0.050432414,-0.38548803,-0.46661785,-0.13241057,-3.161959,0.076980405,-0.095552355,-0.25217724,-0.14779384,-0.17013562,0.1665258,-0.5449248,-0.67368674,0.24867003,0.14314882,0.8698039,-0.09302781,0.1842426,-0.044461053,-0.27483776,-0.5829119,0.013448074,0.079001844,0.5164264,0.29229534,-0.19562449,-0.018595317,-0.08705574,-0.34806976,0.0597759,-0.40199742,-0.48011932,-0.19345044,-0.51984847,-0.39685822,0.65621173,-0.16928594,0.12553011,-0.2505305,-0.13016985,-0.22574066,0.3924938,0.03901334,0.029104972,0.04622079,0.03466473,0.12725402,-0.1377065,0.42401528,0.0073569543,0.34023073,0.41528782,-0.24759108,0.30669641,0.48763037,0.637014,-0.20976727,0.87770104,0.52476704,-0.016786143,0.110268496,-0.2792218,-0.08763391,-0.43518475,-0.33712342,0.02401209,-0.44150198,-0.46513334,-0.19816941,-0.31961006,-0.7257714,0.34427288,-0.059868127,0.16109045,0.087468766,0.17314748,0.3865167,0.111380555,-0.06834083,-0.0402852,-0.069594726,-0.46409306,-0.11387929,-0.72237676,-0.4349403,0.3364023,0.97610664,-0.12715481,-0.021427734,0.13455446,-0.09483108,0.042627454,0.079066865,-0.04364224,-0.023857147,0.39548254,0.049666498,-0.6668808,0.35873505,-0.12784117,-0.1707126,-0.7383624,0.15670575,0.66294205,-0.61214966,0.44494104,0.18984295,0.08047106,-0.08348546,-0.2918788,-0.23186083,-0.14636397,-0.17012094,0.2764959,0.102762915,-0.7160363,0.37637135,0.2585163,-0.25441423,-0.80922526,0.3558807,0.023738503,-0.39811173,-0.006535977,0.190585,0.14015819,0.11121389,-0.16473,0.1760572,-0.4287405,0.26409736,0.23265226,0.0012441179,0.3296258,-0.0628207,-0.081921756,-0.74657106,-0.115309514,-0.34301448,-0.3234669,-0.079889454,0.22163306,0.29305705,0.3180416,0.16995388,0.3710904,-0.24390705,0.18029375,-0.14252396,-0.20394814,0.3513708,0.27849147,0.4583324,-0.45200387,0.61565036,0.13531381,-0.09135971,-0.040943265,-0.09167632,0.34363547,0.02933151,0.19841714,0.09711987,-0.3092005,0.21333313,0.6245864,0.24309272,0.3634921,0.22462623,-0.104205914,0.29733673,0.11734662,0.20195095,0.05687636,-0.622152,0.04797725,-0.3232068,0.050060153,0.42775726,0.16001299,0.29618564,-0.08588529,-0.40696236,-0.029624276,0.24249434,-0.21586885,-1.3017913,0.3120745,0.025032332,0.83106667,0.69344896,-0.08451445,0.07795405,0.67820174,-0.12848152,0.118451186,0.10769778,-0.032689247,-0.44807947,0.54032356,-0.73359203,0.52514493,0.06653663,-0.0057477057,-0.14864771,0.0028817256,0.34481737,0.6251981,-0.08602518,0.10207021,-0.12641221,-0.15938921,0.06686697,-0.4796737,0.16792692,-0.59929127,-0.16776125,0.8235794,0.38948116,0.31596792,-0.03390785,0.116653584,-0.06036295,-0.07250147,0.011540013,0.054036256,-0.13753006,0.043743666,-0.7179932,-0.14461574,0.49463293,-0.049285233,0.11735288,-0.07326694,-0.20076077,0.08669891,-0.17424,-0.17710944,-0.08139068,-0.7073136,-0.007799434,-0.38802147,-0.40539503,0.33879617,0.011396021,0.32593223,0.28378078,0.07149785,-0.09019657,0.2247699,0.3253793,0.629093,-0.0038121268,-0.21341912,-0.25303793,0.38057008,0.14457472,-0.3071064,-0.11071804,-0.24162014,0.07696799,-0.5040545,0.4926068,0.05355571,-0.44546333,0.13911904,-0.060499728,0.09434769,0.60929817,-0.28203493,0.08395952,0.17705323,-0.32836178,-0.19300641,-0.11886569,-0.177377,0.35677636,0.32171246,-0.32446033,-0.018089399,-0.04656376,-0.1030185,0.44750044,-0.018053109,0.49110404,0.30928397,0.16731064,-0.32125357,-0.21365409,0.09183667,0.5372507,0.06428825,-0.25167918,-0.34084985,-0.4796978,-0.3740835,0.30353534,-0.0059860647,0.316509,0.08677909,-0.2766544,0.48551962,0.2293167,1.0484983,0.12338904,-0.37458804,0.25343737,0.37353468,0.040619433,-0.16236825,-0.40106758,0.9954457,0.4468534,-0.21726508,-0.16455881,-0.49169174,-0.09292845,0.13237907,-0.2562026,-0.17071618,0.083559126,-0.6745073,-0.481145,0.2767479,0.15125446,0.1396888,-0.12894756,0.29054818,0.1994618,-0.037344407,0.32413396,-0.3678311,-0.25494373,0.31725898,0.12016994,0.19869228,0.02406554,-0.47622204,0.29803288,-0.47117588,0.00060183805,-0.19985111,0.15488811,-0.08515888,-0.2894441,0.3482273,0.38597548,0.5288263,-0.41576,-0.5143669,-0.3619316,0.46629825,-0.02131997,0.18643107,0.4020457,-0.23425107,0.071826614,-0.012217847,0.6322438,1.2837783,0.04568285,0.29899478,0.48931184,-0.4389172,-0.5869991,0.26342484,-0.24268796,0.12747765,-0.020340623,-0.22114724,-0.60554165,0.13839644,0.19822903,0.1621926,0.33496633,-0.42906246,-0.5705026,0.22579509,-0.36029863,-0.16130893,-0.34833562,-0.0870136,0.7108431,-0.2262733,-0.2608126,0.10039488,0.1983353,-0.2336725,-0.5768204,-0.20285426,-0.2252049,0.35813567,0.0064769736,-0.22550392,-0.1935202,0.05849864,-0.3950447,0.12666689,0.022803625,-0.45696497,0.14841448,-0.49839482,-0.13942167,0.95702153,-0.241875,0.299786,-0.6191805,-0.56322974,-0.84968156,-0.40611264,0.55848956,0.0556203,-0.103734255,-0.5016597,-0.0576693,-0.09363987,-0.10898081,-0.012169163,-0.39644703,0.447688,0.1518919,0.304971,-0.07478572,-0.904854,-0.049034193,0.14948498,-0.35528743,-0.63689363,0.5392572,0.20677924,0.8120358,0.105632246,0.06410193,0.16178028,-0.47826838,0.08356655,-0.07454171,-0.14856483,-0.73613214,0.222365,273 -815,0.7007806,0.0012189249,-0.7173865,-0.2144735,-0.54488254,0.39059663,-0.14096913,0.23388274,0.303751,-0.5986899,-0.14872368,-0.19483294,-0.12991345,0.28249237,-0.15540107,-0.83663553,-0.06312791,0.14945501,-0.5717961,0.49844506,-0.28161627,0.51092535,0.22375633,0.47307006,-0.07836475,0.2812024,0.46195626,0.017332867,0.115966916,-0.34387502,-0.18497632,0.13557738,-0.81516117,0.25351214,-0.12873228,-0.35944173,-0.10419189,-0.35015163,-0.22018473,-0.79338455,0.38777152,-1.067067,0.7067881,0.075612426,-0.337926,0.034989282,0.14775531,-0.03289708,-0.1906523,0.12815042,0.26727295,-0.43032113,0.106807224,-0.3117687,-0.51485884,-0.606151,-0.5734544,-0.06878068,-0.5898429,-0.20567684,-0.49384603,0.22042139,-0.329851,-0.01724712,-0.4354742,0.35237226,-0.53042233,0.062037498,0.30724412,-0.52049035,0.31098258,-0.49853384,-0.212008,-0.215025,0.12951517,0.017690033,-0.11724925,0.24345876,0.16646971,0.69117594,0.20896481,-0.2368229,-0.25578335,-0.03565678,0.053646386,0.4835428,-0.1813642,-0.049433082,-0.2907549,-0.1890461,0.39862657,0.42824113,0.0833081,-0.36296138,0.16449249,-0.13054572,0.01482635,0.58699405,0.50148606,-0.44139895,-0.19515733,0.41309166,0.3315661,-0.065796554,-0.21560399,0.088678814,-0.13339196,-0.49879143,-0.13501722,0.25296962,-0.18979566,0.7758756,-0.1943572,0.0052286885,0.7955268,-0.2575851,-0.053089757,-0.28777504,-0.106798016,-0.076122425,-0.37151346,0.06938415,0.54355115,-0.41425672,0.03375426,-0.42970964,0.637556,-0.038622588,-0.7412529,0.2527052,-0.625691,0.12094132,0.015415405,0.71891385,0.60222894,0.56842774,-0.05005482,1.1014374,-0.7187502,-0.009538963,0.060467243,-0.32958403,0.13763146,-0.1326314,0.06616124,-0.4252781,0.24973707,0.028388053,-0.06739348,0.065348856,0.32958576,-0.31323022,-0.17887776,0.2743625,0.6469951,-0.3994504,-0.011045595,0.6883249,1.2761532,0.9782316,-0.060045194,1.3988293,0.20944746,-0.19718654,-0.14001527,0.11613843,-0.63697624,0.119085096,0.30801526,0.27747202,0.34474608,0.14797558,-0.109967135,0.19223738,-0.3307668,-0.19612998,0.053268105,0.1388973,-0.0622488,-0.08197912,-0.49133134,0.06963048,0.32409447,0.14262736,0.0195627,0.15466875,-0.20758806,0.43683156,0.1104621,1.047343,-0.06377285,0.21950547,0.21459936,0.48740435,0.29694542,-0.055523068,0.1591134,0.43630016,0.26545557,0.14161374,-0.48162958,-0.043245554,-0.37325558,-0.4776504,-0.16913445,-0.4809166,-0.11226263,0.08941728,-0.42355692,-0.16351642,-0.03132398,-0.29874265,0.3033428,-2.2374809,0.017330075,-0.17514582,0.2542617,-0.2504549,-0.2924489,-0.14431521,-0.67506886,0.4465039,0.4570285,0.34332561,-0.54548025,0.3770772,0.5137529,-0.43081915,0.043663938,-0.55650043,0.10330089,-0.0660871,0.50319165,-0.117912084,-0.34389842,-0.27447784,0.27421156,0.6958247,0.2692741,-0.03194244,0.26264116,0.46775898,-0.045200005,0.5338878,0.06512948,0.671525,-0.27401844,-0.18818939,0.6536143,-0.3291326,0.33142158,-0.22359748,0.018000817,0.45691392,-0.5201059,-0.8839638,-0.6865623,-0.43247208,1.36804,-0.54806054,-0.7251987,0.2280352,0.1777929,-0.1447593,0.022685481,0.5069748,-0.034056526,0.3220226,-0.6745744,0.01458621,-0.16276826,0.34386286,-0.03058806,0.19427545,-0.47907642,0.9060089,-0.11150479,0.4928944,0.46639013,0.22530659,-0.24721652,-0.6366373,0.023834802,0.8772586,0.38073167,0.12979761,-0.18312792,-0.05018286,-0.17467594,-0.28303874,0.15250523,0.788799,0.79271936,-0.112646155,-0.04878973,0.5056142,0.16623904,0.08555144,-0.079561375,-0.3361423,-0.23148288,-0.11108247,0.49622583,0.73159593,-0.19003654,0.08183418,-0.14212878,0.3818893,-0.06790947,-0.3952063,0.6097674,1.078836,-0.1486647,-0.25442752,0.8319847,0.39645097,-0.58644575,0.5364952,-0.7423732,-0.47463515,0.6875723,-0.13017972,-0.6093965,0.049620975,-0.22382253,0.086410515,-0.83829284,0.20396285,-0.15981525,-0.41841564,-0.40818223,-0.40745822,-3.803569,0.2361787,-0.34353587,0.08365656,-0.25006786,-0.10930309,0.2742845,-0.59567744,-0.57320255,0.032949165,0.0028249014,0.5036767,-0.19301873,0.3162507,-0.38899234,-0.20160569,-0.2547445,0.42562023,0.12710905,0.08780802,-0.09442133,-0.2584379,0.042841803,-0.037524607,-0.53609693,-0.07733555,-0.6006735,-0.48403072,-0.14800236,-0.5578214,-0.0454808,0.6542677,-0.42933515,-0.027555905,-0.2088203,0.17332695,-0.19970721,0.0881656,0.15947463,0.35993052,0.026320964,-0.020170918,-0.16383013,-0.33201876,0.3280275,0.22890408,0.41916263,0.31404975,-0.38229945,0.003889988,0.37086213,0.5244908,-0.038824588,0.89447135,0.16635115,0.045231763,0.3863821,-0.22178465,-0.5188009,-1.0583912,-0.17849386,-0.12330476,-0.5172104,-0.4870559,0.013878502,-0.4011966,-0.98471576,0.69121665,0.012798677,0.5083325,-0.09755809,0.437884,0.37867948,-0.34545168,0.06739935,-0.046602443,-0.22378297,-0.5773993,-0.44028524,-0.745629,-0.5831524,-0.037043642,0.9733289,-0.046134125,-0.0873465,0.26143113,-0.2513488,0.1871825,0.1667267,0.3008763,0.0072110393,0.67977357,0.24335057,-0.75955766,0.5235582,-0.051626664,-0.015892232,-0.66300505,0.29854998,0.66012126,-0.66541195,0.5553042,0.43153417,0.28649557,0.040674504,-0.6232734,-0.40283644,-0.07498551,-0.25729463,0.5877264,0.22696514,-0.68428105,0.4380777,0.015673677,-0.13566512,-0.6881068,0.64536625,-0.18260567,-0.3265304,-0.057409864,0.47086832,0.03518625,-0.06072263,-0.058470592,0.35868064,-0.47207907,0.18222453,0.32472837,-0.014264707,0.5472074,-0.13609336,-0.36543676,-0.734346,0.19196141,-0.6584006,-0.3858876,0.2552278,-0.027514039,-0.23837268,0.29476494,0.036842894,0.5409394,-0.048819173,0.40565935,-0.021324048,-0.23799141,0.66195446,0.44289598,0.5138164,-0.8217762,0.7806398,0.09415832,-0.07185497,0.079461955,0.23090631,0.6043405,0.07084909,0.36451888,-0.1743675,0.023940355,0.04248518,0.4143118,0.30690053,0.291634,0.22371906,-0.13072813,0.58826536,0.23308194,0.08156096,-0.21914636,-0.77183485,-0.12950884,-0.06910725,0.02808415,0.36728606,0.09318397,0.42488542,-0.060912084,-0.057719667,0.27078915,0.018038487,-0.22636567,-1.0275873,0.037324924,0.22502065,0.8327436,0.47636247,-0.016196271,-0.10950505,0.5807749,-0.36181727,-0.1402127,0.57692164,-0.02632291,-0.34046713,0.62449574,-0.48073325,0.2595142,-0.124781914,-0.04666133,0.25943518,0.4443036,0.31941357,1.015565,-0.24461724,-0.007726284,-0.17075141,-0.12824541,0.18315463,-0.4203978,0.10548634,-0.3670566,-0.41319332,0.6256389,0.37874636,0.33037254,-0.5457267,-0.17363943,-0.002226154,-0.15988512,0.23147209,-0.014010896,-0.08886445,0.032104198,-0.4719223,-0.20209968,0.51814026,0.096841395,-0.068925984,-0.113262445,-0.27890527,0.2670318,-0.12483078,-0.13271426,-0.07981181,-0.76649404,0.05213334,-0.36143014,-0.51059216,0.3790493,-0.27109152,0.28195375,0.21956389,-0.07019692,-0.1824261,0.057220846,0.14734556,0.7919554,0.07138327,-0.23195453,-0.4181734,0.18295085,0.18707605,-0.37312123,0.17805141,-0.23324287,0.12493336,-0.38405728,0.44639766,-0.2907413,-0.2568334,-0.040500533,-0.26557767,-0.1331064,0.37551904,-0.02248016,-0.049861137,0.3608359,-0.11166009,-0.50271255,-0.1251574,-0.2651556,0.003975501,-0.20042582,-0.11154717,-0.07623283,-0.08424157,-0.0644519,0.2731051,0.13769315,0.1379176,0.2015725,-0.19918619,-0.5028282,0.14326756,-0.06253591,0.45110154,-0.01664254,0.06412444,0.073401965,-0.6919821,-0.30122095,0.43131217,0.005836328,0.2547851,0.10306629,-0.40613678,0.83331347,0.36663413,1.0966444,-0.1474328,-0.3909649,-0.12136912,0.8082983,0.12732325,-0.075871736,-0.41871396,1.1814356,0.77356786,-0.146876,-0.1813211,-0.29643953,-0.06835961,0.023465818,-0.40893897,-0.21843262,-0.119124286,-0.56529397,-0.21679789,0.06417003,0.47339472,0.21100038,-0.11487013,0.031765178,0.17311887,0.2233436,0.50880766,-0.46958193,-0.48777533,0.32512382,0.14542058,-0.14965208,0.15302888,-0.19072314,0.3487024,-0.7402349,0.14182109,-0.4778525,-0.014090013,-0.155115,-0.26866612,0.103889436,-0.10051706,0.3401865,-0.40337446,-0.2996162,-0.19098973,0.50401956,0.22870326,0.29148352,0.79571384,-0.20456947,-0.05343449,0.07487449,0.49432692,1.4537352,-0.04321611,0.1849001,0.23776422,-0.55894107,-0.6389153,0.02401641,-0.4879494,0.22909914,-0.14996995,-0.51920074,-0.2460844,0.20195985,-0.14892018,-0.20828573,0.20827584,-0.712378,-0.24366768,0.33054805,-0.2776309,-0.27411175,-0.27952906,0.40198573,0.77443856,-0.27883253,-0.3718835,0.094400205,0.14754012,-0.33386615,-0.9903784,0.06832,-0.31047404,0.3920804,0.0010062853,-0.47989914,0.16062628,0.25953895,-0.5148798,0.21630502,0.34598804,-0.39817214,-0.02607531,-0.35236374,-0.056019276,0.9718079,0.10862071,-0.017311716,-0.5876335,-0.4814969,-1.1041542,-0.453034,0.1453665,0.06935096,0.07828552,-0.46902752,-0.18945341,-0.45596334,0.07377334,-0.0062986366,-0.4284834,0.33836445,0.26437733,0.8603727,-0.1385033,-1.0123729,0.12536424,0.14983469,-0.12546054,-0.5804957,0.43342957,-0.12419328,0.6714227,0.025252573,0.040061597,0.2520469,-0.8773914,0.37488317,-0.13518552,-0.15392074,-0.65596205,0.17878069,274 -816,0.41298103,-0.12337211,-0.7475688,-0.22263561,-0.39870918,0.093526065,-0.39986786,0.25470877,0.37886307,-0.3096392,-0.11243609,0.038532693,0.0040770844,0.28763,-0.14354764,-0.79887265,-0.02187092,0.23800516,-0.6720682,0.54809856,-0.36346152,0.2866092,0.17899752,0.36760625,0.07093784,0.28313342,0.26504114,-0.0040626875,0.05665471,-0.4157218,-0.2949454,0.28678116,-0.49675846,0.1458414,-0.12889044,-0.3931148,0.1412263,-0.39026085,-0.12113964,-0.7802291,0.18329304,-0.94091415,0.7682374,-0.006005837,-0.28532156,-0.118541926,0.44393086,0.35229203,-0.1339718,0.19185238,0.32839823,-0.54611176,-0.099285305,-0.51415294,-0.30414757,-0.6303596,-0.36402044,-0.17499618,-0.6530974,-0.17664142,-0.13626347,0.28452063,-0.32941714,-0.14782153,-0.33298394,0.20977592,-0.42876324,-0.066910185,0.46339425,-0.3696566,0.4217817,-0.53483635,-0.0039884397,-0.025031522,0.56003,0.027253568,-0.14963834,0.27294505,0.3700521,0.5789757,0.3583857,-0.30821905,-0.24945964,-0.47809628,0.22874095,0.5053425,-0.20513724,-0.20421036,-0.33517066,0.049750905,0.5794075,0.7146662,0.061416764,-0.22389102,0.12133219,-0.17436182,-0.110450245,0.8197322,0.6013865,-0.42008844,-0.27892226,0.28553572,0.53038865,0.29999784,-0.25731838,0.21141778,-0.092826866,-0.34539494,-0.21865956,0.14853565,0.0702968,0.46390542,-0.110285185,0.17217314,0.7550222,0.017654648,-0.06961594,0.14913154,0.016548946,-0.18169113,-0.3354423,-0.13420182,0.30890992,-0.7076991,0.101038545,-0.47273052,0.5715002,0.066391535,-0.5648136,0.34768713,-0.5805975,0.12500249,0.17361309,0.708328,0.7879161,0.68764925,0.14039792,1.1212419,-0.33394745,0.044625234,-0.08918645,-0.24941151,0.022787096,-0.2126873,0.28291237,-0.47697327,0.40955806,-0.16370346,0.23341863,0.121119894,0.5742474,-0.5608974,-0.28744328,0.358104,0.98974913,-0.29099336,0.08807536,0.89080507,1.108491,1.0924902,-0.1482292,1.2089853,0.09508413,-0.22575837,-0.37523127,-0.07814234,-0.6085045,0.18244511,0.5989978,-0.005922228,0.30416945,-0.2394415,0.028957734,0.25803724,-0.397396,-0.046589483,-0.038399484,0.32833126,-0.11965337,-0.32722148,-0.55007154,0.09954784,0.14568977,-0.16388577,0.29552695,0.34653464,-0.3760961,0.6042946,-0.19341756,1.0038041,-0.4131066,0.23730595,0.116797,0.45800677,0.43221262,-0.041763693,0.23929523,0.36692464,0.19928986,-0.18541552,-0.5117039,0.06640967,-0.52400905,-0.46184027,-0.19823976,-0.50225693,-0.41514876,0.05004431,-0.1959034,-0.13954593,-0.10228893,-0.24487162,0.25218558,-2.5842006,-0.28066695,-0.2887701,0.15788774,-0.36941457,-0.17769569,-0.04427914,-0.6551928,0.44811115,-0.023652056,0.65116686,-0.48526064,0.5914963,0.7108099,-0.5926618,-0.12586023,-0.7467758,0.11621734,0.02787014,0.51945156,-0.07156327,-0.43898904,-0.16882968,0.1520039,0.86894816,0.24488465,0.13639182,0.6457565,0.48342383,-0.060008723,0.26582342,-0.16467111,0.80551696,-0.46615645,-0.17912148,0.5099442,-0.2805929,0.31974664,-0.4696785,-0.05166751,0.675517,-0.6052928,-0.9455004,-0.66413844,-0.14227375,0.92323905,-0.41662994,-0.6080092,-0.031494364,-0.017389802,-0.20333135,0.25283238,0.7567741,0.008156717,0.2699521,-0.651401,0.017467445,-0.22324462,0.2607487,-0.022779679,0.007368932,-0.5652122,0.7900674,-0.025671871,0.6197796,0.22272663,0.28395975,-0.3284008,-0.3893695,0.05378997,1.0490981,0.562715,-0.014222096,-0.16513199,-0.23773356,-0.24906571,-0.23849572,-0.09612441,0.8866277,0.584093,-0.16050573,-0.063291505,0.46563336,0.022741223,0.090191774,-0.1860183,-0.44167468,-0.21399911,0.22054644,0.5001552,0.5940744,-0.058352027,0.39308295,-0.07136922,0.40527,-0.43846694,-0.6967848,0.852567,0.59764856,-0.30999115,-0.21535844,0.9059685,0.5794526,-0.43369523,0.700263,-0.7395859,-0.59723526,0.48067227,-0.265789,-0.5534523,0.1675101,-0.27148008,0.18948011,-0.73719543,0.034594845,-0.5663728,-0.58385605,-0.39950833,-0.0988968,-2.6045878,0.20809032,-0.17415303,0.078620195,-0.5772212,-0.08910362,0.34024903,-0.52563226,-0.8694075,0.0813544,0.34980235,0.6812579,-0.15994185,0.15286784,-0.25374487,-0.426805,-0.038701374,0.4376808,0.039303433,0.13199392,-0.24806286,-0.2981713,-0.111230224,0.16797227,-0.3731371,0.12358122,-0.63049656,-0.18988615,-0.16522576,-0.533542,0.025765916,0.5939438,-0.5806133,0.111590564,-0.41593257,0.217898,-0.1436191,-0.06909203,0.0048071765,0.3301395,0.21757887,-0.2818682,0.19492847,-0.21041067,0.4919822,-0.054858416,0.3666626,0.09531555,-0.16334239,0.092203595,0.34023428,0.6683967,-0.12153078,1.2533947,0.22521722,0.023265779,0.3732694,-0.33259335,-0.46460328,-0.76472235,-0.27920312,-0.0034552515,-0.57610464,-0.62465215,0.008178368,-0.29998037,-0.94234544,0.61082274,0.25368738,0.71720916,-0.13262953,0.5274064,0.39847192,-0.34137896,-0.0036877394,-0.0014831424,-0.17864482,-0.4973686,-0.18547106,-0.8387367,-0.4440465,0.149441,0.6760402,-0.33806232,0.019466402,0.25658584,-0.15950361,0.045284066,0.40128386,0.26896754,0.039796274,0.6893907,0.11109132,-0.6142078,0.28848234,-0.05030176,-0.004854093,-0.53606194,0.23352844,0.67979836,-0.685164,0.6045111,0.31859824,-0.005329887,-0.5326076,-0.69658947,0.02698384,0.10597768,-0.26646549,0.6671719,0.3577198,-0.7272146,0.4337845,0.21025692,-0.35122523,-0.73847437,0.31984735,-0.14535688,-0.27398002,-0.12493386,0.47151753,0.29997197,-0.16356453,-0.06476927,0.23069203,-0.38026378,0.34908366,0.21200375,-0.18380165,0.3961886,-0.22214676,-0.6441744,-0.8762761,0.00472944,-0.8888218,-0.35214877,0.3642485,-0.011714642,-0.1304649,0.29196063,0.13827656,0.489073,-0.25744188,0.31318316,-0.07319105,-0.3544736,0.4805175,0.5266729,0.39757863,-0.5060399,0.7463975,0.25401685,-0.38866505,0.04390532,0.18899961,0.49582806,-0.12153655,0.6455582,-0.1956581,-0.18585674,0.31149527,0.6928794,0.30962613,0.34238315,0.3676798,0.039420653,0.34186724,-0.084905244,0.13399726,-0.13134916,-0.60143965,-0.16310972,-0.20739417,-0.09535009,0.6509708,0.26531553,0.32103968,0.22332849,-0.10091295,0.0318862,0.15843636,-0.201388,-1.4337119,0.41345263,0.3689982,1.0227332,0.4361861,0.1793952,-0.23854147,0.6692422,-0.26080242,-0.0071980185,0.48259673,-0.09629199,-0.36673054,0.86495537,-0.5103035,0.27715686,-0.15882663,0.042819276,0.19234037,0.08703885,0.43162325,0.9541846,-0.16554506,0.12128656,-0.20388277,-0.2570599,0.07365418,-0.08772632,-0.034912236,-0.28055304,-0.6301263,0.6497425,0.31491446,0.5659385,-0.3318127,-0.10021607,0.014336452,-0.087637305,0.07441041,0.012895271,0.015642157,-0.117111154,-0.2370513,-0.17866515,0.5410337,0.2735365,0.12462976,-0.12310908,-0.32592276,0.20909922,-0.11202619,0.18228944,-0.05745773,-0.6528684,0.023299748,-0.48044014,-0.75020033,0.4825474,-0.043321133,0.012582955,0.068143845,0.040755488,0.085395336,0.39888978,-0.007382711,0.6011059,0.18496759,-0.23899852,-0.33687532,0.31047136,0.102053784,-0.30659518,0.13195123,-0.19948624,0.23037918,-0.6807251,0.52595854,-0.30023023,-0.5217561,0.29702833,-0.19926246,-0.18184783,0.5473251,-0.05130415,-0.18555135,0.29155704,-0.3257149,-0.5181007,-0.36908484,-0.32244542,0.077212386,0.042168155,0.10140253,-0.2931137,-0.10967436,-0.14522974,0.42359543,0.06078888,0.15535861,0.37500224,0.21576358,-0.2779204,0.28569826,0.23564106,0.58641213,0.23300253,0.2048825,-0.034690004,-0.61937755,-0.5166794,0.37510777,-0.17926304,0.20082866,0.077839054,-0.09833121,1.0108724,0.15166552,1.2135514,0.109345786,-0.50978214,0.048391223,0.72021085,-0.18643408,0.029448437,-0.45779637,1.183154,0.5949823,-0.08530333,0.08173082,-0.6024274,-0.036908817,0.26374283,-0.486442,0.023777207,-0.0024169683,-0.62304544,-0.41273323,0.27603164,0.20725183,0.24662483,-0.17454381,0.017379751,0.24300444,0.18742366,0.30173308,-0.68631697,-0.48051396,0.33498624,0.20267887,-0.23870124,0.08421304,-0.38773838,0.28938976,-0.93672925,-0.09339446,-0.536537,0.027666725,-0.22974499,-0.55978507,0.28418946,-0.26275393,0.17241098,-0.47885522,-0.42522725,0.099992335,0.27658865,0.13520657,-0.012053105,0.7474621,-0.17407827,-0.01453653,0.18822347,0.6343239,1.2099756,-0.3559307,-0.006259749,0.24194975,-0.6298856,-0.8857846,0.18103087,-0.7472165,0.022139013,0.10587004,-0.7753062,-0.3453773,0.19506,-0.062067404,0.016012596,0.061712313,-0.6141674,-0.04352948,0.30652192,-0.28203154,-0.19166468,-0.119728826,0.32382938,0.7565275,-0.059730694,-0.48245803,0.111166306,0.41788518,-0.40589654,-0.85006255,0.05127284,-0.074733905,0.30015948,0.108232595,-0.40304545,0.05704719,0.13337496,-0.7197202,0.049340744,0.349709,-0.3592459,0.097711496,-0.4186183,-0.09359869,0.8163946,-0.3330674,-0.1010929,-0.5394128,-0.4467328,-0.7321841,-0.38260853,0.040931065,0.15241018,0.05498913,-0.62851995,0.004710036,-0.47980985,0.0057980516,0.106692344,-0.32735708,0.45411953,0.08304848,0.70290357,-0.42709243,-1.0354785,0.33643898,0.2405989,-0.1354749,-0.66073143,0.58350044,-0.09855429,0.9524073,0.112284474,0.010304034,0.1470065,-0.79609203,0.16156285,-0.37484252,-0.023599394,-1.0512055,0.09608439,281 -817,0.40368327,-0.18667789,-0.7265353,-0.009778909,-0.29603556,-0.073436536,-0.34801182,0.74382406,0.2522354,-0.5739235,-0.06659732,-0.13519664,-0.007725516,0.37193704,-0.3147,-0.5096944,0.12826632,0.14585923,-0.67812246,0.42781433,-0.43263724,0.22506298,-0.032566182,0.5060305,0.22331254,0.2788922,-0.00887775,-0.10236158,-0.1495453,-0.19828804,0.021619355,0.04926211,-0.6343003,0.07108807,-0.2728722,-0.43003452,0.017042145,-0.52757484,-0.33817908,-0.8190537,0.30402982,-0.82369304,0.5048509,0.06645511,-0.3193574,-0.113260545,0.20992143,0.44044933,-0.09407177,-0.057734013,0.14372124,-0.08700053,-0.06470295,-0.24347836,-0.14570004,-0.40190545,-0.5733599,0.0816715,-0.48777366,-0.09184899,-0.20458572,0.21063764,-0.30781472,0.11917309,-0.09267666,0.51822263,-0.34707102,0.14050545,0.08330275,-0.17745359,0.27680504,-0.53156424,-0.077474765,-0.15484126,0.40530977,-0.30838475,-0.2391402,0.32651255,0.12351239,0.44347677,-0.05827993,-0.073283,-0.36177257,0.037780713,0.07055786,0.47749758,-0.24602337,-0.6015714,-0.06934994,0.046430845,0.30923906,0.129456,0.1704573,-0.34067667,-0.2009327,0.062820755,-0.29532027,0.5835387,0.55930424,-0.23907442,0.045414377,0.24241656,0.581146,0.35173023,-0.20931476,0.1085271,0.10402072,-0.7352516,-0.19586547,-0.09707641,0.0542172,0.68357307,-0.2700583,0.4907446,0.6380151,-0.1812287,-0.11872967,0.40741774,0.023132445,-0.02487582,-0.11241158,-0.22177887,0.22869885,-0.42957368,-0.009058595,-0.27146533,0.6221609,0.21192746,-0.78097224,0.36094794,-0.727627,0.05196176,-0.046574276,0.3780764,0.64441425,0.6249561,0.12926969,0.6461649,-0.36751357,0.06591331,-0.135161,-0.38267365,0.23014192,-0.24155438,-0.03086356,-0.31262562,-0.19177435,-0.10480955,-0.13936172,0.16608398,0.5120294,-0.55756086,-0.1086571,-0.068990074,0.8189445,-0.17325468,-0.12467765,0.8214504,0.9508867,0.92166394,0.056550223,0.928423,-0.09963278,-0.19065891,0.20208375,0.07761686,-0.8797993,0.46727213,0.36969993,-0.027228525,0.19529241,-0.025907869,-0.027326606,0.50141215,-0.3710643,0.026170665,-0.027896293,0.23048103,0.24439776,-0.26783705,-0.22808735,-0.35992232,-0.0070437365,0.011204283,0.0065473914,0.3130035,-0.11865231,0.3779119,0.009240453,1.5892801,0.03923772,0.14775956,0.13873513,0.62881017,0.1725008,-0.21883424,-0.20186864,0.04090626,0.09074751,0.3318078,-0.50058216,-0.109752335,-0.19598134,-0.5251127,-0.13461183,-0.21261777,-0.36107126,-0.2768893,-0.5900729,-0.11014921,-0.19554871,-0.21538146,0.35180962,-2.543793,-0.35520825,0.036688484,0.4799006,-0.25720614,-0.4940451,-0.1206607,-0.5311839,0.53621787,0.2706882,0.62712353,-0.7169154,0.6054832,0.47243738,-0.4763731,-0.22226728,-0.69023675,-0.05993642,0.14915635,0.1229603,-0.037230927,-0.045613438,0.19410314,0.014328837,0.40021026,-0.22578873,0.014905323,0.17556095,0.48759183,0.107067466,0.5294116,-0.24328601,0.53370374,-0.6074936,-0.202242,0.32402351,-0.51763403,0.12502334,0.016188726,0.123771995,0.4188025,-0.5579278,-0.9845169,-0.7011056,0.003211538,1.1569458,-0.026524508,-0.46337664,0.2924541,-0.46110705,-0.3172228,-0.14795655,0.69868153,-0.036882915,0.18733196,-0.8197245,-0.1290542,-0.22327924,0.3325126,0.10315164,-0.12697642,-0.46227577,0.5192354,-0.03252129,0.43817973,0.4299101,0.0571394,-0.5544109,-0.57003945,0.20161964,0.87112117,0.3106992,0.30163392,-0.12836662,-0.08022844,-0.51514554,0.1117241,-0.002275082,0.64369005,0.5863424,-0.0942264,0.13371675,0.2709953,0.045832265,0.07272575,-0.17626299,-0.45806408,-0.16302872,-0.0063068867,0.5947978,0.8974032,-0.1724124,0.37250233,-0.040713716,0.3205609,-0.3983592,-0.3434032,0.566796,0.70413655,-0.20328254,-0.31089225,0.43211088,0.4315257,-0.3431687,0.44944167,-0.52151436,-0.5753992,0.30102,-0.115778826,-0.51458234,0.22238159,-0.3042148,0.19993515,-0.7690613,0.36104593,-0.5079189,-0.49605155,-0.5444302,-0.092275836,-3.243304,0.2920495,-0.09241667,-0.19911976,-0.18122439,-0.14790517,0.09936774,-0.56270224,-0.83782965,0.1108891,0.028958699,0.8065967,-0.15645002,0.09261892,-0.23164892,-0.40855965,-0.27286938,0.0813361,0.4075404,0.34030905,0.053216893,-0.44783148,-0.30835217,-0.18960278,-0.4501873,0.13140991,-0.7037633,-0.53129816,-0.1636572,-0.5960031,-0.24578731,0.7648738,-0.3525548,-0.0012077764,-0.13375644,-0.09961498,-0.11131993,0.42635807,0.099443115,-0.024472171,-0.008476411,-0.005695045,0.122303076,-0.16649443,0.18228172,0.08668736,0.4455464,0.33552468,0.047670662,0.26168784,0.76011086,0.9982534,-0.1162489,1.0305098,0.2604381,0.07098546,0.40148976,-0.35423052,-0.5224743,-0.3166419,0.06489354,0.26669493,-0.34896883,-0.24508858,0.07571605,-0.35576773,-0.7855785,0.5013897,0.0130799115,-0.20249696,0.23589297,0.14403339,0.38347042,-0.162196,-0.114687495,-0.09473456,-0.06610427,-0.674963,-0.20280331,-0.56569296,-0.59622186,-0.05281781,1.0582551,-0.15864523,0.101497866,0.15467387,-0.13284507,0.046753973,0.13340352,-0.008963428,0.17507865,0.3531618,-0.2000879,-0.75242764,0.36370894,-0.39465335,-0.18246335,-0.45358694,0.18471141,0.7125233,-0.6835249,0.3568406,0.29189608,-0.07297418,-0.2540934,-0.46835867,-0.0861549,-0.079092205,-0.21988113,0.3462373,0.291563,-0.89386004,0.32437903,0.32577595,-0.33123574,-0.69102246,0.6099724,-0.0031966146,-0.23102833,-0.19963376,0.38048753,0.18977176,0.040598497,-0.3131808,0.20853817,-0.33987316,0.3007585,0.24675293,-0.1290469,0.36949,-0.21178706,-0.093572296,-0.72950935,0.003788218,-0.53943944,-0.2729583,0.35267696,0.19120026,0.13597095,0.11383861,0.100827605,0.21420218,-0.305037,0.02003964,-0.18880008,-0.21128349,0.34159708,0.47927102,0.7445318,-0.630147,0.64840597,0.08802188,0.067428015,0.25240883,0.046533775,0.3776174,-0.042078894,0.43104193,0.23107135,-0.060969215,0.119871475,0.9779613,0.2374248,0.42470917,0.039848942,0.0030937393,0.04237652,0.10117362,0.15806872,0.12378407,-0.8007472,0.10754082,-0.2103563,0.17264985,0.5543305,-0.014828811,0.27467483,-0.10760343,-0.4608418,0.014817246,0.28826255,-0.16447155,-1.7478074,0.530862,0.2775619,0.8027515,0.46147814,0.13105373,0.12929209,0.7718899,0.014095955,0.23418467,0.4195037,0.12861876,-0.56511706,0.5979797,-0.7536676,0.57735044,0.08245287,0.08210359,-0.014241665,-0.06297643,0.4325184,0.75034714,-0.052594513,0.20510353,0.10276428,-0.27736306,-0.034953203,-0.56917495,-0.12987217,-0.4892728,-0.06495944,0.7252441,0.5805485,0.2702836,-0.25408116,0.03258812,0.08979989,0.022332383,0.15385377,-0.13555141,0.16878843,-0.21224321,-0.7595754,-0.032478143,0.7000818,0.015181388,0.20744991,-0.008527714,-0.16018546,0.33106068,-0.05715209,0.032318905,-0.2532523,-0.7476294,0.066919394,-0.5744634,-0.40292716,0.31194493,-0.013315,0.25084898,0.2797731,0.1655352,-0.36727563,0.725723,-0.012653798,0.6195459,-0.10598689,-0.10036969,-0.2016011,0.29619333,0.19406693,-0.2742965,-0.11315569,-0.33933893,-0.054752585,-0.36018145,0.23826377,-0.0936986,-0.33297405,0.065600105,0.06493989,0.08829584,0.53904516,-0.1650446,-0.22711249,0.27438596,0.01242134,-0.14967474,-0.29713368,-0.05202396,0.25153103,0.4423802,0.0065619373,-0.15849482,-0.2049583,0.01035209,0.42848325,-0.15163447,0.5735691,0.5457756,0.25074834,-0.33709893,-0.19192976,0.091888465,0.6825754,0.118783556,-0.17708959,-0.5050877,-0.36036804,-0.358641,0.33228207,-0.036068734,0.33543786,0.19150616,-0.24971378,0.6019243,0.059205603,1.2574618,-0.0063776523,-0.25473937,0.25750586,0.24614899,0.014333914,-0.17646396,-0.43394867,1.0221409,0.35568228,-0.37627292,-0.057361722,-0.39264083,-0.0986839,0.031419836,-0.21786435,-0.25560915,-0.047837824,-0.6247471,-0.06837129,0.22121792,0.35249814,0.16497286,-0.3201503,0.08073826,0.39036712,0.033082444,0.03207959,-0.5952647,-0.17967713,0.4183235,0.40119746,-0.06975328,0.01712131,-0.59524363,0.33461228,-0.47850463,0.01731276,-0.37045798,0.18704991,-0.17702933,-0.45577797,0.18097566,0.15466557,0.34340152,-0.2918425,-0.35325336,-0.24987628,0.46843067,0.19845633,0.2214647,0.5966143,-0.1839542,-0.11736729,-0.09231181,0.55215144,0.70187443,-0.21891229,-0.11166948,0.4220712,-0.28577444,-0.63631743,0.24762516,-0.4246118,0.28557405,0.014822642,-0.080709346,-0.6204476,0.28659734,0.2020613,0.08541011,-0.17739673,-0.79175645,-0.18531479,0.3272513,-0.29037464,-0.34889543,-0.5123429,0.032838594,0.48306885,-0.15974157,-0.22128999,0.13205172,0.34825984,-0.10412896,-0.43635026,-0.0982872,-0.32912293,0.11989879,0.13839985,-0.3763517,-0.13127916,0.11821254,-0.4911828,0.29607674,0.017265609,-0.42648324,0.16647205,-0.21804465,-0.09338852,0.95901936,-0.22276302,0.25024292,-0.2697475,-0.50698024,-0.8084245,-0.32528904,0.22030127,0.24360009,0.0032327871,-0.7904957,-0.09215117,-0.048519332,-0.39003086,-0.0033950855,-0.24093656,0.5436907,0.12909018,0.5597405,-0.13176037,-0.8570876,0.13832222,0.18313037,-0.20536327,-0.603347,0.5039055,0.021574529,0.925883,0.030913144,0.07201094,0.44507197,-0.40207377,0.002847592,-0.14667545,-0.06882743,-0.5871229,0.12993604,283 -818,0.5070371,-0.42462504,-0.830434,0.03006535,-0.35535288,-0.13169046,-0.31133547,0.49371514,0.13396163,-0.4383136,-0.20194249,-0.20854759,-0.14682664,0.55623645,-0.19377781,-0.50605756,-0.06023687,0.36135805,-0.6720515,0.4408628,-0.17529993,0.31447515,0.13579513,0.37893224,0.15990457,-0.09878812,0.07409117,-0.0019637297,-0.3364379,-0.5069993,-0.059629444,0.022860885,-1.0948567,-0.0064116023,-0.3238164,-0.52582383,-0.22591835,-0.5556099,-0.21735553,-1.1137004,0.22561151,-0.9835953,0.74198604,-0.23064058,-0.3111739,0.062458295,-0.013442407,0.726525,0.0542212,0.12864797,0.20041735,-0.39234957,-0.20198016,-0.037889812,-0.26147053,-0.44886196,-0.69845635,0.1534173,-0.5052981,-0.06201284,-0.1402483,0.23860641,-0.39063573,0.115616985,-0.19872458,0.7143976,-0.37298346,-0.009249779,0.3419628,-0.037716296,0.5272421,-0.8363822,-0.026604118,-0.3148028,0.16802365,-0.27385035,-0.35012618,0.22036803,0.23514552,0.37385485,0.048192322,-0.24387668,-0.21702792,0.12809141,0.16998284,0.37195238,-0.088502206,-0.3743415,-0.09294632,0.19200438,0.58553547,0.09386418,0.23776178,-0.37846455,0.022421082,0.1670054,-0.24185002,0.494624,0.569107,-0.13308127,-0.12462964,0.19614603,0.8475728,0.34296823,-0.022561038,0.050285872,0.11022595,-0.50853425,-0.09109858,0.37730324,-0.15943329,0.63191646,-0.2689457,0.2222714,0.683464,-0.5753333,-0.1718118,0.2661009,-0.05254412,0.014896746,-0.12097586,-0.59774065,0.56478614,-0.4953736,0.22826232,-0.49028683,0.8352327,0.19949012,-0.835258,0.20884341,-0.7804811,0.14367153,-0.10778964,0.67463845,0.6958396,0.76238316,0.27685612,0.8157091,-0.23111264,0.1285114,-0.051023766,-0.4427576,-0.1492218,-0.5854068,0.023720047,-0.44653538,-0.42993855,-0.35489854,-0.43011317,-0.05107079,0.56398696,-0.79230714,-0.23022366,-0.12641005,0.62786365,-0.33102775,-0.1211352,0.9866187,0.8783732,1.3009156,0.23990393,1.1838734,0.4101243,-0.38323817,0.012259439,-0.07017902,-0.7890257,0.43565404,0.18605107,-1.0007175,0.50566524,-0.060116623,-0.06794586,0.40020618,-0.5707733,0.058146592,-0.2164387,0.10314631,0.06844291,-0.18330985,-0.35269538,-0.16790007,-0.08048567,0.11483583,-0.051997337,0.18716662,-0.21731107,0.70864445,0.17337625,1.2318635,-0.24332523,-0.07516892,-0.018952193,0.29271713,0.063903816,-0.32690975,-0.1815738,-0.01748087,0.48765656,0.26842913,-0.5563367,-0.0007799224,-0.15954624,-0.36881098,-0.48117757,-0.058900777,0.11552399,-0.32679904,-0.4245256,-0.28169337,-0.09251255,-0.32973373,0.457948,-1.8030814,-0.16289721,-0.14858235,0.32674935,-0.41489658,-0.4513295,0.03204629,-0.67624885,0.30357727,0.24976514,0.42356172,-0.71407527,0.31047866,0.39490637,-0.54343545,-0.05066107,-0.8522659,-0.3726089,0.07590928,0.23426056,0.21332578,-0.20801164,0.23930578,-0.0090013845,0.39266226,-0.24286918,-0.13049564,0.32845306,0.3835545,-0.04313126,0.5603094,0.014677305,0.5842036,-0.46411058,-0.25830254,0.5668165,-0.35884818,0.04166624,0.07172624,0.031453922,0.43960187,-0.460258,-0.842071,-0.9397991,-0.41325736,1.311234,-0.13585486,-0.69217616,-0.067394525,-0.031044057,-0.20919715,-0.15210585,0.37000403,-0.085095756,0.09949387,-0.8514721,-0.16659783,-0.12933348,0.46830258,0.038568832,0.057321787,-0.5564421,0.62988746,-0.15516388,0.07005508,0.68206304,0.27498123,-0.38576818,-0.7530845,-0.06612186,1.2076489,0.46099722,0.2002755,-0.48849428,-0.09213995,-0.45641986,0.12697221,-0.098216794,0.44460312,0.97471064,-0.16855001,0.049970407,0.29223076,-0.090650775,0.27555004,-0.16932295,-0.58513826,-0.2179073,-0.08746139,0.7213437,0.62870985,0.16680187,0.9115858,-0.20151997,0.29276696,-0.065876275,-0.538305,0.7051398,1.4520736,-0.281549,-0.39972827,0.40931138,0.22391273,-0.31821677,0.55139714,-0.6256892,-0.3276755,0.4050382,-0.081509225,-0.63035685,0.38099372,-0.2758781,0.3099412,-1.0819759,0.47674653,-0.608603,-0.5625634,-0.6729586,-0.11829021,-2.2331626,0.46502662,-0.14133431,-0.08569721,-0.20903866,-0.50141644,0.15058984,-0.5046758,-0.8117116,0.04869099,0.14778717,0.8518004,-0.10129544,0.065869816,-0.2633582,-0.51637363,-0.3455638,0.27691546,0.5529098,0.19863147,-0.06527868,-0.47457418,-0.013260146,-0.23199739,-0.43864226,-0.076547176,-0.8722729,-0.7618385,-0.3004387,-0.6337914,-0.4709324,0.7551484,-0.35188127,-0.016106794,-0.20104699,0.09095097,0.2662702,0.48213163,-0.10910654,0.22757779,0.18947053,-0.18678005,0.048289627,-0.1771269,-0.01729536,0.14536358,0.1129537,0.33343902,-0.3487763,0.5524673,0.70739704,1.2062671,-0.026935091,0.96955806,0.5872336,-0.15017182,0.17212649,-0.2769486,-0.54492134,-0.72207594,-0.124328524,0.17768978,-0.4130012,-0.32852113,0.095133275,-0.2027344,-0.83299494,0.83725023,-0.1263466,0.12047399,0.16742271,0.600168,0.4879276,-0.14818712,-0.07533731,-0.13313468,-0.16350563,-0.47286463,-0.42355514,-0.51319236,-0.7677074,-0.40622267,1.501412,-0.0032870322,0.098747455,0.12660243,-0.15687506,0.27250317,0.110317715,-0.13884936,0.08895966,0.30389002,-0.19554214,-0.80293256,0.07202398,0.037346315,-0.035371743,-0.80165356,0.38077024,1.0100332,-0.65333414,0.25607923,0.25864306,-0.20058125,-0.16789138,-0.50006074,-0.04390602,0.12803756,-0.32880065,0.36692134,0.26747802,-0.41532433,0.406202,0.39698872,-0.27744257,-0.84389704,0.37933126,0.19819635,-0.24093215,0.060615648,0.40979803,-0.035463523,0.021742085,-0.41380796,0.108492024,-0.36626127,0.17884983,0.4294332,-0.20784344,0.06641126,-0.15107362,-0.13400665,-0.86414737,0.3251238,-0.47240135,-0.3387922,0.38181818,0.07020105,0.15666252,0.4803541,0.3300185,0.41122806,-0.22184013,-0.13087909,-0.290085,-0.3381739,0.49459305,0.6078737,0.3840189,-0.5566223,0.61458856,0.09498348,-0.22938274,-0.06758002,-0.11074611,0.64271396,0.01916788,0.3229424,0.5734652,-0.31592143,-0.00684198,0.75154084,0.1198137,0.76120144,-0.0585454,-0.00992759,0.07341813,0.3020192,0.50610644,0.055432934,-0.7159367,0.104580194,-0.07100448,-0.02654717,0.54382145,-0.084124774,0.32635686,-0.1523314,-0.39911008,-0.114226185,-0.0012709498,-0.06256456,-1.6474361,0.56944364,0.28411722,0.7267976,0.31008363,0.05166233,0.13982032,0.6909385,-0.26109052,0.032183383,0.29439524,0.25320268,-0.3319499,0.5212347,-0.9686324,0.52559185,-0.11358126,0.05774683,-0.08987499,-0.05843793,0.5439926,0.9126697,-0.2535883,0.06937368,-0.24298869,-0.15432172,0.16952537,-0.5007974,0.09183874,-0.5990891,-0.29575673,0.9561561,0.39804104,0.41588882,-0.17790222,-0.018098282,0.14371806,-0.23711742,0.4250606,-0.038529918,0.11097213,0.04619363,-0.52032,0.090643175,0.56583303,0.07482869,0.102623284,0.056056377,-0.1437959,0.16462989,-0.13338922,-0.058178652,-0.17479686,-0.79023963,-0.07130626,-0.69632846,-0.33836016,0.21449481,-0.21851164,0.18544,0.25142232,-0.0047762,-0.43396845,0.40224862,0.35160747,0.9278736,0.105044305,-0.15014307,-0.12950782,0.4790086,0.2793055,-0.30215016,-0.004247745,0.14339243,0.00196745,-0.5131943,0.23902877,-0.15927993,-0.63396114,0.1899121,-0.043099612,-0.23924136,0.5986533,-0.33742788,-0.027631894,0.3564414,-0.17014128,-0.01002498,-0.24194014,-0.051100206,0.16930227,0.1735364,-0.17181742,-0.15924162,-0.09922683,-0.19172502,0.54952717,0.022051359,0.5449147,0.4829804,0.23924239,-0.6317976,-0.118067004,-0.011001016,0.7536194,-0.04519281,-0.19424224,-0.57135373,-0.3280093,-0.29370227,0.26651847,-0.0108330855,0.26509967,0.113770746,-0.54055226,1.05016,0.23152953,1.5048748,-0.028515661,-0.38161454,0.11447226,0.3888733,0.117866375,-0.12458822,-0.58225507,0.9538682,0.39108542,-0.12618881,-0.10480183,-0.41742447,-0.083257236,0.09056264,-0.23517245,-0.17482044,-0.066734575,-0.55676585,-0.38062397,0.4463885,0.3317082,-0.017434144,-0.14123188,0.26452968,0.5023467,-0.14877538,0.3049399,-0.37438044,0.13427863,0.3227754,0.30721614,-0.1798832,0.053270902,-0.45782447,0.25625247,-0.59414554,0.078277,-0.31952894,0.19095011,0.044188667,-0.2304116,0.32537702,0.22324379,0.3845806,-0.50128764,-0.29862416,-0.21214573,0.54700416,0.19570129,0.2888237,0.7628172,-0.3141489,0.06262358,0.058785807,0.47247794,1.2203268,-0.52142054,0.10516689,0.41625452,-0.18236364,-0.44496205,0.54707223,-0.2300573,0.14449741,-0.15610647,-0.18919046,-0.69169694,0.14167735,0.31739667,-0.039674554,0.04726863,-0.6095048,-0.026151896,0.526731,-0.4120084,-0.14132918,-0.48780414,0.2419572,0.42044434,-0.19027121,-0.6247837,-0.08848527,0.41426417,-0.14540367,-0.15271556,-0.22392415,-0.063881844,0.32477382,0.16585101,-0.40706757,-0.0128043005,0.21772873,-0.5731594,-0.066186585,0.072476976,-0.33399162,-0.033928506,-0.041805822,0.03569402,0.7308329,-0.4530206,-0.055224154,-0.37022033,-0.5240776,-0.92507553,-0.15460308,0.35476944,0.31181166,-0.015550974,-0.8845158,-0.12803544,-0.27954504,-0.2364837,0.12052688,-0.34257492,0.39733472,0.26600933,0.6714902,-0.1777281,-0.744889,0.44758675,0.100649394,-0.034347605,-0.62965596,0.41057262,0.14445165,0.66207093,-0.0061522997,0.28085935,0.34200802,-0.60772586,-0.036799636,-0.05132215,-0.15814854,-0.8153415,-0.103851564,290 -819,0.36213425,-0.025023798,-0.6125385,0.030315168,-0.057006586,0.026233843,-0.20279877,0.5108591,0.20497286,-0.32808903,-0.23116125,-0.2778111,0.04844464,0.44041443,-0.11664486,-0.3838496,-0.07991357,0.32980892,-0.52863485,0.5124971,-0.20876946,0.23950414,-0.091928184,0.4877378,0.09685429,0.25408563,-0.09318837,0.055930395,-0.24676658,-0.18850736,-0.05439983,0.39539894,-0.5308067,0.096891165,-0.19879349,-0.32880896,0.0053257844,-0.50134367,-0.32699716,-0.688859,0.2743464,-0.74520713,0.63600206,0.124800585,-0.18279944,0.19478838,0.1778117,0.3883128,-0.16040388,-0.1028006,0.2994277,-0.14462319,-0.031992476,-0.40977958,-0.33368912,-0.23813398,-0.47603187,-0.08805579,-0.46335253,-0.26525745,-0.23128824,0.16538681,-0.18680614,-0.028630866,0.09213972,0.3207161,-0.44037285,0.18624265,0.11468016,-0.103935815,0.34404936,-0.5329456,-0.23134471,-0.12230843,0.37841406,-0.35924956,-0.2032044,0.17783071,0.25994003,0.28467295,-0.25674653,0.048267733,-0.36411795,-0.050536763,0.26439154,0.5437487,-0.41403535,-0.41722456,0.010407339,0.1662638,0.12313682,0.45112,0.20223506,-0.33948848,-0.07447171,-0.0737808,-0.060993407,0.35624528,0.41034842,-0.21379153,-0.079823546,0.33848596,0.5519453,0.33871865,-0.09625453,-0.008843586,0.043043543,-0.4589095,-0.108082,-0.1535734,-0.3027533,0.6113833,0.03655002,0.23931503,0.5663884,-0.03552664,-0.14578204,-0.040986706,0.11052712,-0.10874626,-0.20373367,-0.2351817,0.24891119,-0.23501001,0.35766825,0.11610401,0.49435365,0.14906214,-0.7770235,0.388701,-0.6855611,0.0386188,-0.06621314,0.38147542,0.5951732,0.43827143,0.38320994,0.5959094,-0.46801722,0.12717576,-0.04359022,-0.24562299,-0.024518067,-0.0787713,-0.18123119,-0.64620644,-0.0138757825,-0.06651145,-0.19922882,0.46878502,0.3707501,-0.5584194,-0.040201288,0.19554198,0.9257706,-0.2866881,-0.13066457,0.72338945,1.0845336,0.7276039,0.027306026,1.0319772,0.110420674,-0.3124196,0.16852821,-0.13821821,-0.7814062,0.2508625,0.43547344,-0.85584116,0.34309983,0.25126985,0.07278207,0.3941444,-0.41010913,-0.031503145,-0.14198433,-0.04264742,0.04760563,-0.29816598,-0.34931004,-0.063040435,-0.18740012,-0.083756484,-0.054154824,0.24161403,-0.19751735,0.45934466,-0.027145743,2.0427659,0.025609931,0.08539465,0.07167317,0.22278975,0.27830568,-0.092787564,-0.25562742,0.6130097,0.23363344,0.16893263,-0.3274961,0.15239665,-0.15838677,-0.41808572,-0.09280467,-0.17483531,-0.035410088,0.069929264,-0.31367114,-0.10946459,-0.19726764,-0.19513857,0.5006922,-2.8443334,-0.11860707,-0.007016164,0.4098439,-0.1760261,-0.40415642,-0.1890117,-0.2126594,0.5100987,0.24949999,0.4849491,-0.51541895,0.1416067,0.31207064,-0.52093786,-0.28550532,-0.37652317,-0.008868356,0.14152388,0.18121254,-0.15024638,-0.067906596,0.1357545,0.06137689,0.34150365,-0.11599102,0.10693041,0.42604813,0.47048903,-0.029405525,0.4500433,-0.21488185,0.64519614,-0.1770041,-0.3933176,0.28036258,-0.2899467,0.30636445,0.037838295,0.121150404,0.410398,-0.3768648,-0.838732,-0.6160498,-0.12649114,1.0385869,-0.122324966,-0.33922994,0.19346993,-0.31286874,-0.36524057,-0.049975365,0.47166622,-0.12921312,-0.09591917,-0.9506166,-0.008587167,-0.020716354,0.19840266,0.055876303,-0.12226844,-0.45767453,0.51733387,-0.07067751,0.45554307,0.5019544,0.06355517,-0.35700056,-0.46161738,-0.0059138336,0.88789654,0.37296817,0.16199715,-0.12966889,-0.19757552,-0.4280952,-0.06975755,0.10183453,0.52937,0.6066912,-0.100693196,0.08077661,0.30036572,0.07711553,-0.037771363,-0.26965067,-0.2796694,0.066672795,0.019857025,0.40412995,0.6213373,-0.16129227,0.64533037,0.063681975,0.2196659,-0.045734685,-0.3438184,0.38743994,1.061439,-0.18981218,-0.43563685,0.5508645,0.28976312,-0.32128713,0.36851916,-0.42601606,-0.13845198,0.46612182,-0.09269019,-0.46233097,0.37266245,-0.22127531,0.12085789,-0.97785956,0.1411899,-0.2102798,-0.4077294,-0.57660955,-0.055042356,-2.9334514,0.16978948,-0.27862057,-0.2552709,-0.0795021,-0.13713907,0.025260257,-0.6026558,-0.73385555,0.106658846,0.03510827,0.48974597,-0.24023867,0.23635082,0.03735051,-0.42181373,-0.02045413,0.26806548,0.21402065,0.3709507,-0.07293615,-0.44856822,-0.3203012,-0.040049512,-0.3460239,-0.033116218,-0.6839648,-0.28073516,-0.09995774,-0.66793555,-0.07029729,0.61519665,-0.5471205,-0.026516952,-0.26767915,0.003742342,-0.019639453,0.1822362,0.2551839,0.22009452,0.11105489,-0.0664233,-0.009415376,-0.22964168,0.22391069,-0.0055348105,0.13846418,0.33888435,-0.092522465,0.37133017,0.32953668,0.79251647,-0.17116499,0.6800485,0.5909753,-0.14537908,0.14764757,-0.5060995,-0.3686773,-0.5367469,-0.3739616,-0.09150859,-0.42065546,-0.63045853,-0.15591767,-0.37228036,-0.80603033,0.5919451,0.056039453,0.07934874,0.10252646,0.3896345,0.52108526,-0.38130116,-0.06252687,-0.03867839,-0.07911753,-0.569758,-0.1569173,-0.47493243,-0.46178517,0.13639738,0.8895766,-0.2572159,0.13874169,0.19765486,-0.2492583,-0.01189061,0.15239482,-0.0066366442,0.16254212,0.43728665,0.016812095,-0.5109717,0.33571923,-0.08610038,-0.2904103,-0.7537609,0.19111876,0.5891676,-0.5876782,0.713427,0.36113557,-0.039528985,-0.11066265,-0.50602853,-0.13902023,-0.03253829,-0.20672745,0.3391362,0.26060343,-0.6284171,0.23962738,0.48591062,-0.29236045,-0.7536254,0.5728495,-0.022206912,-0.38726816,0.08826152,0.28518996,0.04261318,-0.14233917,-0.2846321,0.29515558,-0.19895113,0.27157322,0.20835978,-0.191236,0.14000593,-0.29947442,-0.18537718,-0.87142867,0.38506296,-0.40158084,-0.3498921,0.3894365,0.16176383,0.023513138,0.104168095,0.1917633,0.30306447,-0.47691464,0.14813185,-0.1528871,-0.1654181,0.1166257,0.36946845,0.43211612,-0.45030677,0.47034082,-0.14368518,-0.11960608,-0.027677367,0.17254597,0.5166676,0.01943458,0.28302157,0.14550954,-0.20719473,0.118909426,0.59743077,0.124870636,0.32608962,0.10079479,-0.10411823,0.053512543,0.13428293,0.17119555,-0.031415705,-0.5706658,0.2366981,-0.2706747,0.07808702,0.5230507,0.19431587,0.14853576,-0.14060988,-0.5256161,0.06084094,0.34813365,0.32786012,-0.9893996,0.44769338,0.11821634,0.7441116,0.3576521,0.21515249,0.15439476,0.49414515,-0.27747825,0.13242407,0.3773974,-0.09265866,-0.45841756,0.41521332,-0.7171536,0.38727584,0.08030359,-0.04179539,0.14810507,-0.085292585,0.45028663,0.81772166,-0.20474051,0.012992856,0.1387149,-0.19766413,-0.026090195,-0.33135647,-0.12556727,-0.54251814,-0.36467078,0.5738821,0.5319669,0.2901989,-0.20613258,0.053218562,0.087720744,-0.12751178,0.12375129,0.23881036,0.32808265,-0.00678462,-0.662381,-0.13752325,0.537752,-0.010385971,0.10401798,-0.079048775,-0.17968102,0.3931884,-0.115986384,-0.029429292,-0.08026684,-0.67670923,0.13025348,-0.43190753,-0.4090474,0.43678412,0.09050552,0.19516347,0.17627184,0.13025783,-0.17052396,0.8326816,-0.027999131,0.90082175,0.034059066,-0.17530365,-0.20532227,0.4706627,0.14542039,0.029416328,0.032509744,-0.37088242,-0.014167746,-0.5563735,0.52067024,0.17692547,-0.29941416,0.035848122,-0.09238279,0.11811548,0.55383855,-0.06255311,-0.1397713,-0.15158165,-0.30481806,-0.32709277,-0.3351567,-0.17496355,0.1610365,0.20222092,0.08831245,-0.23621465,-0.009880632,-0.33482477,0.24504025,-0.13881414,0.5028738,0.24936907,0.17815469,-0.20833246,-0.20495696,0.13412349,0.34110728,-0.09855753,-0.18675177,-0.1539218,-0.46484044,-0.4157186,0.016212344,-0.1673991,0.3842233,0.33149263,-0.111780725,0.64360136,-0.05039086,1.1620506,-0.007032613,-0.33948335,0.15665184,0.5624349,-0.08146626,-0.21860214,-0.27626818,1.019826,0.69239014,0.07929191,0.007851447,-0.17920835,-0.1447506,0.10678486,-0.21579976,-0.14903808,0.05192846,-0.4593114,-0.3285176,0.1845782,0.30627057,0.3009819,-0.1065771,0.20071225,0.27465343,-0.015120059,-0.072831675,-0.24740116,-0.40852475,0.2997463,0.27200958,-0.15559953,-0.088487886,-0.4721255,0.5163741,-0.32422736,-0.0007210523,-0.47626054,0.20130932,-0.17791347,-0.30692402,0.043373015,-0.17845084,0.3033028,-0.25770637,-0.11089351,-0.23086536,0.34531772,0.2740008,0.14120884,0.5131788,-0.27932456,0.16273883,-0.12135919,0.39188245,0.7524242,-0.36440346,-0.2229737,0.37198496,-0.2870001,-0.49363723,0.32521006,-0.40206036,0.18737392,-0.12584426,-0.110533334,-0.57806784,0.14187688,-0.050633103,-0.04594099,-0.28401694,-0.5929015,0.07406131,0.2365034,-0.23088185,-0.09817342,-0.33300674,0.09882376,0.67017716,-0.17774384,-0.38149843,0.20506053,0.053138178,-0.122998774,-0.45825663,0.053020414,-0.30596814,0.22574788,0.07429355,-0.3925984,-0.15171732,0.057980444,-0.35924658,0.114708744,0.07885241,-0.29756162,0.0948615,-0.3311228,-0.10681928,0.9403036,-0.375006,0.11666278,-0.34559178,-0.40525198,-0.6416397,-0.18239415,0.45331445,0.05210508,0.039490607,-0.7712249,0.17583442,-0.21662863,-0.28237066,-0.23208056,-0.19147955,0.4045483,0.12570646,0.4847766,-0.4118034,-0.83703136,0.22313611,0.1184207,-0.28441688,-0.6588305,0.44060853,0.05938831,0.8928562,0.00079812604,0.029217,0.5762405,-0.56233126,-0.082552545,-0.1674854,-0.17231846,-0.537211,-0.07476943,294 -820,0.60890645,-0.32464716,-0.7739196,-0.042022973,-0.3519751,0.08342034,-0.26782733,0.30684343,0.32056114,-0.3244687,-0.25291082,-0.12480041,-0.07207375,0.5769887,-0.26493958,-0.8056291,-0.14884152,0.12697174,-0.4956495,0.45390424,-0.6618393,0.04142191,-0.0673936,0.70638514,0.24324943,0.19198978,0.20444874,0.0211398,-0.097569115,-0.114788026,-0.12863648,0.37939727,-0.81547755,0.073812164,-0.12418779,-0.4769388,-0.02095232,-0.6309503,-0.33283412,-0.89252573,0.45656136,-1.0738918,0.7519307,0.16964929,-0.30651173,0.014506797,0.048137728,0.14775772,-0.34024176,-0.03534073,0.3697835,-0.38545498,-0.11958009,-0.24838711,-0.2983399,-0.5875457,-0.8507207,0.05216816,-0.43881905,0.1729011,-0.17833988,0.25839517,-0.32791412,0.19552368,-0.42886367,0.47150484,-0.54460245,-0.1300128,0.2421291,-0.20125528,0.15248336,-0.60013986,-0.345685,-0.16859059,0.18947811,-0.0023340385,-0.30101758,0.17114936,0.29316798,0.58413535,0.11890105,-0.4504815,-0.45778823,0.11006111,-0.10734067,0.3457332,-0.38359305,-0.6589714,-0.21830165,0.12898663,0.4855897,0.3854698,0.115183316,-0.16221228,0.17097668,0.18422641,-0.10646918,0.6586979,0.57864136,-0.21200745,-0.37320924,0.22771563,0.42592856,0.07019752,-0.20205943,-0.1403376,-0.011382879,-0.5795362,-0.2203104,0.2337835,-0.25910854,0.6118937,-0.14189653,0.1238058,0.8582466,-0.40815997,-0.112685025,-0.11962176,-0.07049152,-0.15750156,-0.28021094,-0.29281446,0.37578604,-0.46228477,0.27428004,-0.4191164,0.6959582,0.051252574,-0.9304778,0.31996214,-0.60039586,0.02459886,-0.045851607,0.7805931,0.87013054,0.4496483,0.628283,0.8222688,-0.45731863,0.13557298,0.024057483,-0.49112558,0.26088557,-0.14244877,0.20586796,-0.5400201,-0.1435527,-0.13075458,-0.24812084,0.06431176,0.683707,-0.4885814,-0.027177317,0.13436824,0.5743198,-0.33597216,-0.11868701,1.0554309,1.1897496,1.3060548,0.13432269,1.4060682,0.33623257,-0.22790985,0.13085295,-0.28198937,-0.5840896,0.3368683,0.29453108,-0.6558567,0.6273311,0.18400301,0.13305692,0.63032824,-0.5033917,-0.03258358,0.11603097,0.21033458,-0.027134508,-0.007906836,-0.698198,-0.26090598,0.0050991364,0.059367687,0.22458595,0.40637478,-0.299685,0.58803934,0.08720094,1.3537945,-0.066197656,0.16876692,-0.07445269,0.48410296,-0.025832264,-0.13487102,0.058540065,0.23154593,0.4548482,0.11733518,-0.62481725,0.012598925,-0.2976167,-0.30229574,-0.31383613,-0.35622954,-0.016571328,-0.30414122,-0.39922214,-0.049606886,-0.06434333,-0.36926922,0.3594521,-2.093802,-0.22126102,-0.09191161,0.2819776,-0.09296527,-0.57481486,-0.12095923,-0.5501216,0.3588612,0.34112358,0.41722706,-0.8384573,0.5854945,0.34397018,-0.8061776,-0.10246875,-0.86755323,-0.056012254,-0.22137026,0.48954841,-0.10074285,-0.29114506,-0.27450654,0.14052029,0.6783431,0.1642704,-0.10192954,0.10099095,0.80577546,-0.21571095,0.8301499,0.15951312,0.68953896,-0.36413822,-0.27311578,0.54535794,-0.3685657,0.54588,-0.10523906,0.032976884,0.50217944,-0.45691136,-1.1762443,-0.6470525,-0.42586946,1.0550605,-0.3015298,-0.38620126,0.07925861,-0.24959199,-0.52859354,-0.07836006,0.57192606,-0.30573407,-0.04364947,-0.90039676,-0.08347895,-0.18049999,0.18095684,-0.12705515,0.29451576,-0.56629103,0.7725708,0.023083022,0.411731,0.40583548,0.24446608,-0.3044299,-0.545561,0.080185466,1.0681478,0.35200396,0.14816833,-0.28314885,-0.19519792,-0.082204856,0.016452476,0.020428231,0.6698544,0.635786,0.025220199,-0.024236823,0.3386726,-0.1803153,-0.053942144,-0.2610239,-0.3684758,-0.2186157,0.10991603,0.7759097,1.0767014,-0.37273362,0.42317128,-0.24006897,0.5144179,0.06522563,-0.33125308,0.5363049,0.94272107,-0.036974087,-0.15633047,0.8144825,0.49259362,-0.44747415,0.58456105,-0.78649265,-0.21119541,0.46338686,-0.0782887,-0.49249396,0.037457585,-0.32004747,0.09450803,-1.11582,0.1392907,-0.17831624,-0.4989771,-0.81846905,-0.18113738,-3.5834484,0.18662687,-0.36959627,-0.062070042,-0.1003502,-0.2821913,0.5148705,-0.8934634,-0.7205842,0.11043197,0.059262518,0.6586467,-0.23283172,0.29155836,-0.25481352,-0.3035554,-0.15773161,0.28341624,0.32683805,0.2745041,-0.061701104,-0.42980313,0.27052078,-0.23574318,-0.43816498,-0.089203,-0.62899673,-0.6267466,0.0006457418,-0.61675483,-0.30643517,0.7824633,-0.33141848,-0.22269136,-0.29635534,0.12474991,-0.10522396,0.42944965,-0.08033374,0.13875094,0.24692936,0.020337781,0.051674336,-0.11754837,0.26411557,0.049245197,0.4303255,0.44018936,-0.17696936,0.23994197,0.62804866,0.76038265,-0.03406847,1.0022146,0.52078754,-0.051065475,0.0521818,-0.17484866,-0.49410442,-0.96822566,-0.46978477,0.11955812,-0.58230644,-0.36988592,-0.18925285,-0.39737776,-0.969053,0.8543355,-0.066086546,0.16203828,-0.1970336,0.33408263,0.5707934,-0.39438072,0.10735142,-0.088801205,-0.11528639,-0.5978558,-0.437048,-0.583236,-0.71753806,-0.16611932,1.2800429,0.05206408,-0.18583278,0.15183313,-0.32364088,0.13579513,0.11292964,0.06423534,0.20754509,0.72151065,-0.009925991,-0.7768895,0.45177498,-0.27983344,-0.15254004,-0.70279485,-0.04534595,0.7786649,-0.76093644,0.73270154,0.40099275,0.20775338,0.048341352,-0.6489976,-0.25045612,0.17994438,-0.059427682,0.7907891,0.47165546,-0.52814156,0.5276989,0.19035949,-0.23747413,-0.64041054,0.4732667,-0.013716601,-0.20600902,0.024495244,0.3854097,0.04121213,0.041346647,-0.23310655,0.30380353,-0.36648977,0.2864237,0.34021565,-0.060389757,0.2723162,-0.07340622,0.035313014,-0.8823127,0.14434597,-0.4410622,-0.38224137,0.19022052,0.06526873,0.18981715,0.2100312,0.11573091,0.3633598,-0.4588666,0.11291027,-0.2160747,-0.35170734,0.31792918,0.6215865,0.38703594,-0.6133057,0.73113054,0.11983133,-0.17626542,-0.0066815615,-0.12065381,0.48998547,-0.023853987,0.2872978,-0.05253656,-0.33505058,0.17208524,0.7716996,0.149175,0.49037778,0.1785013,-0.0053046294,0.42656156,0.061968636,0.31959954,-0.09639027,-0.62723345,-0.052226126,-0.10544022,0.08171876,0.5013582,0.08521827,0.28610155,-0.17092699,-0.18751945,0.32580853,0.23290652,-0.0045620003,-1.5729538,0.37954125,0.13050197,0.8453985,0.4276826,0.060121,-0.03685363,0.70500326,-0.5135197,-0.16858144,0.5547444,0.31550652,-0.44894513,0.59178025,-0.52837104,0.41566232,-0.33350262,0.06705937,-0.109827615,0.06285272,0.40747118,1.0269011,-0.40196228,0.03308467,0.04503128,-0.1023429,0.11331892,-0.40457225,0.08463287,-0.54309684,-0.3406391,0.94250244,0.48219696,0.54015213,-0.27974042,-0.16075876,0.16599977,-0.100864895,0.15148892,-0.13318025,-0.23271191,0.016500339,-0.7972348,-0.043759335,0.5413814,0.16915761,0.19474654,-0.027225846,-0.48392668,0.26535144,0.005089591,-0.30986133,-0.095169626,-0.6440653,-0.2739863,-0.39503157,-0.69542974,0.33996883,-0.35912654,0.26883015,0.29326925,0.098811485,-0.16402696,0.123977415,0.2488801,1.1186787,0.30270022,-0.08286036,-0.31065097,0.27329338,0.40848795,-0.34031406,-0.24857621,-0.34040228,0.34028175,-0.53055114,0.58750933,-0.21221733,-0.5160135,-0.18340869,-0.0813563,0.07321415,0.5435129,-0.25834134,-0.22641386,0.13734578,0.04297359,-0.27471963,-0.24924403,-0.5078387,0.20861828,-0.09026315,-0.07708327,-0.08976766,-0.055764865,-0.18764739,0.57439655,0.21134882,0.24653418,0.5757243,0.012456278,-0.25887027,-0.11239517,0.016510438,0.7027597,0.050043,-0.5190236,-0.47394577,-0.2870871,-0.41199186,0.41171542,0.10324446,0.14240174,-0.027288923,-0.40163937,0.7363181,0.12964489,1.3947077,0.07479211,-0.5515119,-0.095842905,0.6465928,-0.09084817,0.086890936,-0.44968033,1.1133122,0.5296474,-0.28987962,-0.14447545,-0.7383184,-0.04319107,0.41563037,-0.43240428,-0.16662787,-0.25791982,-0.83810234,-0.09552487,0.25164053,0.37121615,0.08993127,-0.051794767,0.24912888,0.15813105,0.22588646,0.57662797,-0.5116157,-0.17677324,0.4177499,0.16827428,-0.112761416,0.06984892,-0.29464298,0.36166617,-0.5731623,0.1461326,-0.6708998,0.18593061,-0.27625844,-0.33273605,0.2936205,0.05574158,0.47718772,-0.4145919,-0.24782509,-0.19634874,0.7696858,0.21614873,0.2960423,0.7847221,-0.27478436,-0.21158361,0.0679014,0.41941082,1.5496974,-0.30510256,0.27332607,0.24140473,-0.23849817,-0.5518642,0.37126866,-0.5524084,0.010942261,-0.03725426,-0.52372307,-0.5127039,0.17437029,-0.032921623,-0.036398094,0.050512474,-0.45954633,-0.13514769,0.6487187,-0.36667815,-0.08692518,-0.17722857,0.27254525,0.7155482,-0.37367043,-0.4713885,0.007765571,0.59388196,-0.1460309,-0.48657107,-0.18159242,-0.36890462,0.58612144,0.012573771,-0.2443444,-0.043901008,0.19403769,-0.43025926,0.1894546,0.2684354,-0.38157764,0.11843904,-0.3502805,-0.108794875,1.156094,-0.048130196,0.31015578,-0.70325404,-0.47110164,-1.0141298,-0.33207867,0.009306778,0.026135406,-0.10550783,-0.71730465,0.053730417,-0.13296427,-0.09521245,0.048081126,-0.56518906,0.41164997,0.04222418,0.76220495,-0.11316124,-0.84800357,0.07550198,0.24818327,-0.0973376,-0.4810445,0.8149669,-0.032944113,0.8392255,0.10363718,0.43006173,0.033535387,-0.6486792,0.18526672,-0.29172727,-0.21315008,-0.96896696,0.086249925,319 -821,0.5707794,-0.26846611,-0.35241222,-0.18668228,-0.29941195,-0.14802967,-0.2689481,0.442192,0.4854227,-0.2742309,-0.16595787,0.0251033,0.1947047,0.13076656,-0.17045532,-0.5946873,-0.22239937,0.05095409,-0.5832929,0.58390105,-0.67418617,0.22919695,0.03582695,0.3613622,0.080326684,0.40052018,0.13993098,0.04090224,-0.18350367,-0.16742928,-0.20203827,0.299294,-0.45991752,0.11144352,-0.14639969,-0.12270671,-0.012366359,-0.5277841,-0.3804913,-0.6991574,0.057137102,-0.8056225,0.35020176,0.18127239,-0.23360968,0.056095112,0.07151646,0.1387407,-0.44013548,0.02271534,0.027320763,-0.005228033,0.066499,-0.47628292,-0.20987111,-0.25251564,-0.53671724,0.014518219,-0.53237003,-0.26902208,-0.031429846,0.10023418,-0.3029993,-0.008881781,-0.2027065,0.69734293,-0.32115072,-0.07442533,0.29888085,-0.19839115,0.17313695,-0.49652767,-0.004613454,-0.1515837,0.23901992,0.057141006,-0.41771176,0.33491158,0.3440939,0.31450382,0.122525275,-0.23519003,-0.4167451,-0.20413126,0.17390668,0.31478676,-0.17503685,-0.55703974,-0.31120744,0.048716675,0.22724849,0.25601578,0.20576614,-0.13016981,0.20890681,-0.039844114,-0.41800138,0.7793346,0.50061905,-0.26350644,-0.28259745,0.29542962,0.5588703,0.16951245,-0.2828025,-0.14357564,0.022399416,-0.7182192,-0.20422234,0.26420823,-0.118771255,0.602421,-0.34890854,0.07365558,0.62846684,-0.1595767,-0.14206277,0.41774634,0.03874999,-0.06573612,-0.4834828,-0.2589109,0.25483486,-0.5938773,-0.062278196,-0.31179148,0.7241912,0.24019487,-0.7693345,0.5048019,-0.5352477,0.10283626,-0.10642239,0.56897426,0.64726835,0.5954464,0.43929386,0.68562603,-0.28295803,0.13466372,-0.008078198,-0.32539555,0.13195626,-0.2550948,0.19221918,-0.43513498,0.100335896,-0.03290425,-0.015429811,0.15570782,0.3325849,-0.43759397,-0.29478788,0.24914317,0.7562584,-0.18646343,-0.16247593,0.68106556,1.1142861,1.018291,0.041610375,1.0794016,0.22068906,-0.21816693,0.14180689,-0.23134239,-0.6784169,0.25886998,0.2690347,-0.39465848,0.34494272,-0.30889332,-0.101932265,0.17879386,-0.29987463,0.009088886,0.009957527,0.36744323,0.11045388,0.008027892,-0.46924886,-0.31168,-0.01529561,-0.07825646,0.17671633,0.3045718,-0.22129096,0.43677226,-0.14371157,1.0676702,-0.016823387,0.043831434,0.016059866,0.7241253,0.35771903,-0.115036584,0.03162129,0.6065789,0.24740398,0.18406059,-0.58245045,0.29692915,-0.2695789,-0.20097767,0.008728619,-0.4394745,-0.011827926,-0.07659118,-0.35396162,-0.06659407,-0.069926925,-0.23566456,0.41554686,-3.029811,-0.3080444,0.0017976165,0.24195826,-0.24368466,-0.21917176,-0.13434307,-0.5459732,0.27112377,0.22556108,0.6540287,-0.71113366,0.35250592,0.60006464,-0.5239215,-0.14572859,-0.72033834,-0.072815485,-0.04971528,0.43753323,0.086162746,0.03728187,-0.062323,0.15374354,0.6628875,0.14820075,0.23155606,0.30258504,0.44133702,-0.024052667,0.6632849,-0.07943326,0.557519,-0.4418317,-0.166851,0.24624227,-0.5224847,0.17868787,-0.06762449,0.06461791,0.6351678,-0.4119209,-0.920739,-0.47013697,-0.019742846,1.0851327,-0.39694476,-0.47805095,0.0837272,-0.37073886,-0.2908434,0.022588253,0.48698595,-0.038467746,0.03455772,-0.70906,0.12196853,0.014618824,0.20404501,0.021467298,0.005082602,-0.1862937,0.66026026,0.13579416,0.55381066,0.10715803,0.027348824,-0.49780592,-0.36186993,0.058557253,0.9061911,0.33035746,0.057304416,-0.17391296,-0.21926498,-0.16835435,0.0418257,-0.048116412,0.7083721,0.620632,-0.18010058,0.13675497,0.45595077,0.0014721999,0.149538,-0.07737806,-0.27045447,-0.11489455,0.038581345,0.4708209,0.97555,-0.22189917,0.4036608,-0.14002338,0.46630275,-0.072710425,-0.5584629,0.7659888,0.59964776,-0.20305832,-0.19182861,0.52603257,0.6052002,-0.5709422,0.57532126,-0.4910525,-0.20978783,0.5398988,-0.055180673,-0.4576334,0.30340037,-0.30391794,0.095822014,-0.7765262,0.3106002,-0.31970695,-0.30717716,-0.4223524,-0.05876343,-3.5351207,0.15199213,-0.19982304,-0.15447447,-0.37589,-0.0676885,0.121978484,-0.47909448,-0.6155125,0.14144228,0.20207565,0.5343219,-0.17844556,0.12179812,-0.23108603,-0.18146013,-0.15198854,0.20461376,0.11131936,0.2665788,-0.09460177,-0.36361918,-0.20335926,-0.05457716,-0.49283263,0.23808622,-0.6235717,-0.40081987,0.02463678,-0.6938161,-0.2782181,0.55947584,-0.22227003,-0.09427166,-0.20141612,0.17747454,-0.090068094,0.2248636,-0.0366488,0.22985362,0.03510209,-0.121592104,0.11798548,-0.2977393,0.3688971,-0.051642302,0.36312124,0.20376031,0.048100606,0.18589415,0.46276727,0.7643578,-0.046785593,1.0171193,0.14712097,-0.14060463,0.36579037,-0.1930439,-0.4050444,-0.5191128,-0.17652218,-0.10320098,-0.37198076,-0.30720374,0.09311495,-0.38521957,-0.76571685,0.5944759,0.09185467,0.18973754,-0.012291421,0.42156863,0.5534086,-0.22334337,0.17093806,0.0015210608,-0.1940551,-0.53795165,-0.06534829,-0.6748805,-0.2789133,0.25659055,0.6812108,-0.23875804,0.033620052,-0.017383054,-0.18381257,-0.13818638,0.21310394,0.010031412,0.36558148,0.4244727,0.023156619,-0.47351503,0.35640225,-0.10040333,-0.120310046,-0.36293843,0.12775724,0.87056726,-0.79130775,0.77791435,0.43690363,-0.0052640713,-0.28820968,-0.464327,-0.32073995,-0.048061747,-0.07750843,0.59621006,0.23627217,-0.97813636,0.37977222,0.35426724,-0.5426205,-0.6009722,0.39698818,-0.15931119,-0.2945986,-0.31556782,0.37026563,0.14505205,0.08309334,-0.16398783,0.1502787,-0.30611935,0.039324086,0.034863,-0.014949594,0.38823113,0.06290977,-0.29650608,-0.7016311,-0.15462382,-0.64832634,-0.32596332,0.46121702,-0.03245492,0.033351272,0.05999723,0.003822883,0.28709164,-0.13802491,0.061850328,0.123109855,-0.26914752,0.4308698,0.47315875,0.49610448,-0.42664874,0.5069049,0.25614882,0.0351229,0.08491548,0.00020331144,0.17816675,-0.08983564,0.5461343,0.1987855,-0.1555569,0.37820444,0.67592734,0.10771706,0.43994153,0.28195193,0.001474152,0.5157495,-0.1149933,0.21726853,-0.018813826,-0.5685188,-0.04358821,-0.23535259,0.22555475,0.30895117,0.15199341,0.19619167,0.07026168,-0.11702484,-0.14928417,0.3694372,-0.099490464,-1.3061123,0.33370414,0.27111772,0.7005523,0.454075,0.15345101,-0.20903926,0.839112,-0.169581,0.15283701,0.48788372,0.100452326,-0.48020282,0.68931836,-0.47835365,0.44978067,-0.20284466,0.12111765,-0.020429054,0.15522583,0.41517365,0.77839273,-0.30507597,0.048048258,0.066341706,-0.21560816,0.07898045,-0.48262715,0.17451298,-0.3245891,-0.34918308,0.65467364,0.24295749,0.36607206,-0.13680102,-0.11853554,0.114175625,-0.10625621,0.14248069,-0.038473524,-0.079179734,0.102607906,-0.73272985,-0.118257195,0.5477689,0.17183499,0.19122875,-0.22815971,-0.04463029,0.1216524,-0.21995415,-0.16191775,-0.053842854,-0.5303859,-0.001517574,-0.15545087,-0.65273494,0.46099785,-0.25078866,-0.0036623925,0.12997197,0.017936975,-0.25893787,0.32484955,0.0720484,0.6023647,-0.021928975,-0.15337911,-0.33065248,0.109554596,0.15542853,-0.19970441,0.017399818,-0.3403068,0.14353354,-0.48786512,0.5686708,-0.18028979,-0.53807473,-0.16923659,-0.023198595,0.07931062,0.54937726,-0.20232548,-0.30215064,-0.2397724,-0.2328276,-0.40323547,-0.19962727,-0.10584653,0.43523312,0.33983088,-0.07323936,-0.093867816,-0.3289691,-0.012476727,0.47783658,0.060697332,0.38589737,0.16335781,0.23095165,-0.21534331,-0.06787983,0.13002773,0.5667198,0.1311243,-0.1557895,-0.35584816,-0.1820517,-0.36622015,0.17903773,0.049895238,0.27618387,0.02551195,-0.31817716,0.77184314,-0.24836421,1.2311869,-0.058121342,-0.3318936,0.04010048,0.52510756,-0.1197724,0.060580138,-0.29570445,0.8960791,0.36685172,-0.2507439,-0.04601131,-0.78710586,0.03980141,-0.01736705,-0.3263317,-0.13673861,-0.062785335,-0.39175928,-0.14481188,0.2576441,0.21835762,0.368875,-0.053321052,0.21574755,0.10456584,0.07367201,0.3146787,-0.56645757,-0.13061796,0.28747985,0.30858377,0.027300471,-0.00461147,-0.34742287,0.19933647,-0.5777268,0.29789498,-0.3732265,0.129566,-0.34980586,-0.34890065,0.1318137,-0.015800526,0.30126542,-0.3935249,-0.55419344,-0.15626508,0.45045552,0.10062507,0.21504681,0.6139293,-0.21724202,-0.03623164,0.20387514,0.71213216,1.1013116,-0.20906389,-0.13849087,0.21459289,-0.39094532,-0.8352673,0.36459732,-0.3120432,0.2290643,-0.05621909,-0.24613833,-0.47764245,0.17520845,0.043684345,0.29683623,0.11304162,-0.66362095,-0.11511756,0.1810652,-0.24951506,-0.18720317,-0.2080038,0.19066608,0.64028937,-0.23848408,-0.32765272,-0.11340871,0.24960315,-0.23290052,-0.44040152,-0.20849377,-0.2402919,0.26293007,0.28045687,-0.21444036,0.021010915,0.055426568,-0.55361587,0.17182517,0.13898383,-0.3630909,0.17124896,-0.1568624,-0.21793605,0.76822895,-0.27155522,0.16713756,-0.41651857,-0.6761649,-0.7984132,-0.21924092,0.1083738,-0.13476236,-0.043482512,-0.57026964,-0.018574512,0.0022226796,-0.2328584,0.069687225,-0.49476933,0.48961556,-0.01852116,0.41634867,-0.26040536,-0.91928005,0.12193245,0.31088597,0.004919561,-0.7144778,0.51948184,-0.11189129,0.74559164,0.09578296,0.061034236,0.1413979,-0.42305598,-0.105710484,-0.35425702,-0.084934056,-0.5841547,0.12785096,333 -822,0.25476158,-0.1094178,-0.6950211,-0.13033952,-0.18008119,0.13865356,-0.2640089,0.37856397,0.03861251,-0.66222245,0.0089290785,-0.2752875,-0.14568739,0.17354834,-0.14796166,-0.57739884,-0.005749376,0.23050146,-0.3289893,0.76524967,-0.42612424,0.17126489,0.5229095,0.17236592,-0.041480195,0.0712705,0.34967616,-0.106648974,-0.17030473,-0.45338377,-0.083651714,0.08357238,-0.69535357,0.36279234,-0.16297327,-0.24595332,0.24289007,-0.28947583,-0.08132738,-0.7993788,0.048250783,-0.8998831,0.486509,0.0026749223,-0.37699497,0.3435718,0.2581862,0.048585277,-0.07991894,0.0144100385,0.21729481,-0.4378371,-0.3824931,-0.2501072,-0.39300922,-0.7024925,-0.5329239,-0.1834969,-0.48772526,-0.1616155,-0.34292403,0.15035138,-0.44675863,0.012061852,-0.47984496,0.34562492,-0.5040478,-0.08567283,0.052637067,-0.1417253,0.29688153,-0.65277725,-0.018688986,-0.154844,-0.12557875,0.2768691,-0.14261998,0.28646353,0.38209286,0.49518308,-0.0019297799,-0.18753637,-0.06064907,-0.3131381,0.1462835,0.37960157,-0.31303802,-0.22461021,-0.20540534,-0.18228577,0.50746703,0.6142877,0.053395066,-0.2158764,0.1748095,-0.18984117,-0.4524761,0.25482738,0.52424115,-0.24038915,0.026163762,0.3189884,0.15448594,0.08038718,-0.25293395,0.14018045,-0.12645476,-0.37023684,-0.12912683,0.33737707,-0.12030202,0.4726024,-0.036005937,0.073569804,0.69155437,-0.11734706,0.11219513,-0.07150431,-0.06597894,-0.052585647,-0.44087192,-0.3099467,0.46589446,-0.8378849,0.02642704,-0.5626773,0.6887424,-0.22865224,-0.7767949,0.306232,-0.4808217,0.06471505,-0.19212222,0.7464997,0.6249321,0.6770232,0.07108471,0.8714147,-0.4382198,-0.023328125,-0.22038521,-0.096960716,0.24000418,0.07177651,0.3099521,-0.35058674,0.03740074,0.007899329,-0.11336479,-0.20088488,0.39335904,-0.31471103,-0.31277558,0.2024525,0.80597514,-0.38236615,0.00036341944,0.49856755,1.2337013,0.8732662,0.12601475,1.1650809,0.32030615,-0.18758889,-0.1972572,0.32972163,-0.70546895,0.10000894,0.49745765,0.44814992,-0.022961637,0.068305105,-0.24529266,0.41611198,-0.22821842,-0.16476175,-0.21621476,0.23692967,-0.19935493,-0.14434786,-0.42196965,-0.1974958,0.16389383,-0.105519794,-0.0128831165,0.46659252,-0.11287755,0.49923047,0.25516894,1.3504158,-0.21428871,0.044997346,0.21192364,0.33784696,0.1529466,-0.014224701,0.23976481,0.45334098,0.3516558,-0.08766989,-0.5273281,0.2379746,-0.22833359,-0.6305646,-0.0595075,-0.48183298,-0.08098104,-0.24496908,-0.29584357,-0.20462257,-0.1077841,-0.4649888,0.26476616,-2.6084387,-0.0012758821,-0.2293734,0.14374171,-0.29121804,-0.18030906,0.02352115,-0.3891798,0.7319019,0.313113,0.44836316,-0.54488295,0.42120734,0.67432475,-0.1983332,0.046963964,-0.8729494,-0.21130145,-0.27244547,0.47761765,-0.095064424,-0.29117754,-0.016068816,0.021243116,0.70338774,0.24643324,0.32109246,0.37190065,0.40010038,-0.2690772,0.35802647,-0.020526528,0.61373895,-0.3377924,-0.18218513,0.13746552,-0.31422496,0.38074216,-0.25939694,0.15492527,0.4741834,-0.31711313,-0.41005465,-0.41754282,-0.33209717,1.1935071,-0.66718656,-0.674537,0.19230671,0.1739682,0.02702268,-0.13634093,0.5720983,-0.13630946,0.16370757,-0.5127535,-0.008071368,-0.09773055,0.3400537,-0.10531596,0.19872434,-0.39173308,0.8188023,-0.13847958,0.7253247,0.52165884,0.19276048,-0.3487948,-0.3193827,0.0015299817,0.8508244,0.40547776,0.012656915,-0.22295499,-0.12960567,-0.10682591,-0.22768807,0.14804296,0.636324,0.86955315,-0.08713106,0.064362206,0.33778176,-0.25807765,-0.095140256,-0.16506116,-0.63767415,-0.11106771,0.19347638,0.43925726,0.3744386,0.030793056,0.46490172,0.0345083,0.34519348,-0.31505296,-0.5193322,0.3071251,0.59480846,-0.23107804,-0.0723961,0.821707,0.7606707,-0.36575595,0.5546128,-0.64070517,-0.3798829,0.59269804,-0.08292795,-0.6967013,0.28836092,-0.23058385,-0.04497869,-0.7684538,0.14703505,-0.6146649,-0.5086475,-0.5188584,-0.05256459,-2.5876877,0.2542419,-0.20037991,-0.19350302,-0.31272623,-0.23784961,0.37867284,-0.41075826,-0.5397435,0.16325994,0.26017678,0.40245298,-0.018760601,-0.08287086,-0.40638718,-0.3399118,-0.010598862,0.31972995,-0.051395644,0.0010157848,-0.472236,-0.3980486,0.016055847,0.0025745258,-0.3024544,0.046197087,-0.49267352,-0.3940208,-0.14875247,-0.30911455,-0.22936516,0.6716244,-0.5358302,-0.013613584,-0.22328047,-0.014590498,-0.06712986,0.22493356,0.06406767,0.33201313,-0.2348241,-0.13808869,-0.0957944,-0.3967429,0.03272381,0.025698707,0.40667406,0.4067167,-0.21189575,0.045392554,0.5035663,0.490774,0.16695297,1.01713,0.20903015,-0.1207684,0.42437533,-0.14819334,-0.16285501,-0.73006153,-0.1197747,-0.14131683,-0.3673325,-0.40279898,0.08276337,-0.27710733,-0.6776485,0.67800933,0.34625217,0.08199886,-0.044913393,0.62772423,0.37760052,-0.11578863,0.009880826,-0.23924935,-0.16807795,-0.5592137,-0.30193663,-0.98067474,-0.36441913,0.14167584,0.8577635,-0.23048024,-0.23686959,0.10419971,-0.108173646,0.12610374,0.2140861,0.17677677,0.16397537,0.38723585,0.13630824,-0.7147978,0.6977388,0.15181883,0.0777772,-0.66740316,0.20760252,0.79122156,-0.7600562,0.41712785,0.52161574,-0.0007071197,-0.35983372,-0.8111717,-0.17499399,0.1081296,-0.194736,0.51836854,0.24613155,-1.0065136,0.51195866,0.30052865,-0.0014803087,-0.6985505,0.41459253,-0.25221604,-0.16856243,0.05829199,0.41237903,-0.021687618,0.14073516,0.015922084,0.08992093,-0.46506715,0.30415085,0.28091216,-0.19945748,0.46829474,-0.25588524,-0.14244054,-0.7800512,0.2777917,-0.5781681,-0.30946726,0.43053827,-0.19610412,-0.033299282,0.4771134,0.016611755,0.3895825,-0.21108705,0.2348814,-0.2482121,-0.38918567,0.63490707,0.47687754,0.43026552,-0.3610206,0.7769074,0.035869043,-0.3048377,-0.13083674,0.31109202,0.38954994,0.3294123,0.41208735,-0.32676023,-0.121078454,0.28616846,0.88902456,0.24285842,0.38007072,0.22141315,0.14853771,0.4230909,0.01963894,0.14602064,-0.05299555,-0.6150957,-0.20728463,-0.23312871,0.100161225,0.50341135,0.14932548,0.4997693,-0.07522278,0.1446571,0.025737813,0.17950737,0.0884361,-0.70990163,0.3313784,0.2241958,0.6108887,0.623506,0.06927816,-0.004722784,0.5511878,-0.38326526,0.20953031,0.3920842,0.18450217,-0.25621402,0.7916576,-0.697148,0.1511926,-0.19900943,0.15951277,0.084981196,0.02607719,0.4906238,1.0824673,-0.27179348,0.049664963,-0.099896275,-0.33925483,0.32330287,-0.21999459,0.06463956,-0.12883787,-0.6047004,0.45361838,0.14144722,0.33848774,-0.23470716,-0.16086744,0.22511458,-0.17336817,0.4371791,-0.003312568,0.027207606,-0.1444941,-0.28300187,-0.29921743,0.72431034,-0.11251631,0.17543583,0.03367095,-0.21168704,0.44149837,-0.09918946,-0.16718054,0.09099864,-0.6398772,0.25138658,-0.4049447,-0.64960426,0.46090436,-0.21787356,0.08442182,-0.006686432,0.0038060944,-0.11303956,0.016946608,0.28380224,0.44947073,-0.21365625,-0.22174436,-0.21599203,-0.20902438,7.0539616e-05,-0.37866628,-0.029908681,-0.016677383,0.10640836,-0.6993293,0.3601521,-0.4781185,-0.33094704,0.15727565,-0.14283516,-0.25767946,0.48995757,-0.094479404,-0.03751411,-0.10309147,-0.1525269,-0.29844382,-0.40614483,-0.15572406,0.23184407,-0.2803562,0.13484012,-0.21563756,-0.15185775,-0.00023208062,0.1643341,-0.0054317564,-0.008045803,0.34010413,0.22228368,-0.45746747,0.10031348,0.0056196055,0.40895247,-0.10428103,0.056030393,-0.16486281,-0.3508816,-0.28639254,0.10877827,-0.21686317,0.448447,0.09742426,-0.43177631,1.1401948,-0.13997042,0.8461825,0.049100194,-0.4386896,-0.13988197,0.5500126,-0.08080328,0.0143382205,-0.16533819,0.8281148,0.6706178,0.054727,0.008449872,-0.5149818,-0.17093657,0.5256259,-0.22224194,-0.2012664,-0.0013120522,-0.76284105,-0.066713594,0.1898063,0.36574867,0.07274269,-0.17337932,0.068345614,0.34328178,0.1970734,0.43243623,-0.55028564,0.08052619,0.23349774,0.1754273,-0.09392238,0.12769501,-0.3251996,0.23767602,-0.8106303,0.30719492,-0.52546984,-0.12966277,0.19294171,-0.1883566,0.06464921,-0.13619824,0.26203275,-0.12039578,-0.28526625,0.06357404,0.47063228,0.26789406,0.43583047,0.7520582,-0.20065916,0.14605549,0.04200073,0.5392572,1.3263569,-0.27443388,-0.27385107,0.15919496,-0.52829784,-0.9965935,0.17837518,-0.3621323,0.11378717,0.086969756,-0.5962482,-0.23755546,0.30687585,0.17985356,-0.38726756,0.08040962,-0.5132327,0.048086554,0.11898818,-0.30682537,-0.24927606,-0.33917335,0.23197965,0.82123655,-0.31774935,-0.19066758,-0.15743236,0.20444012,-0.4725883,-0.6930265,0.07357426,-0.46015653,0.34301963,0.12947495,-0.5209258,0.36616158,0.116821416,-0.60117227,0.17090903,0.12398253,-0.2146637,-0.08539203,-0.3058519,0.21969979,0.6540217,0.14091071,-0.44370928,-0.41985032,-0.73599,-0.5051055,-0.48089623,0.2387501,0.10864825,0.24522816,-0.52873784,0.088432826,-0.22178386,0.07486453,0.031113872,-0.4849328,0.41159964,0.2851101,0.48874307,-0.15369648,-0.83870906,0.16589251,-0.014458508,0.055259686,-0.4725987,0.5725243,-0.43252537,0.889514,0.1099622,0.0005075733,0.1784572,-0.66216296,0.38102254,-0.3709018,-0.30766448,-0.5827842,0.075113826,351 -823,0.2691832,-0.17276919,-0.3753003,-0.19889002,-0.1889699,0.17313732,-0.13141353,0.52076256,0.43970227,-0.4937714,-0.26271105,-0.08520921,0.08969369,0.28722167,-0.086360715,-0.6134738,-0.050489243,0.1239251,-0.42772707,0.53092474,-0.40023065,0.14574613,-0.12377206,0.37289655,0.20015757,0.1345947,0.00073530275,-0.100711636,0.061113477,-0.22400956,-0.024822697,0.39947197,-0.52347946,0.279748,-0.079472534,-0.34819257,-0.10991073,-0.50499374,-0.45707044,-0.6977353,0.3279189,-0.8100643,0.56493455,-0.015572146,-0.1786354,0.33002976,0.06771883,0.1910045,-0.070318595,-0.05707547,0.05557582,-0.21054675,-0.1809447,-0.029090896,-0.36161658,-0.388684,-0.6373505,-0.019845432,-0.45558187,-0.18208474,-0.45418707,0.10164002,-0.34393203,-0.14974844,-0.07295685,0.6336834,-0.41066512,0.08040773,0.22742124,-0.14225005,0.257586,-0.6751733,-0.12010608,-0.10146052,0.26527753,-0.24919884,-0.2761349,0.16836573,0.3178825,0.42417476,0.07739275,-0.06323197,-0.25579906,-0.11454066,0.4633359,0.4453701,-0.045643043,-0.45943534,-0.15560909,0.02627434,0.14415763,0.28195587,0.26444125,-0.15876476,-0.19550066,0.0567876,-0.24793105,0.6576748,0.35198328,-0.24413711,-0.48670164,0.30976978,0.51963115,0.2761293,-0.014605552,0.20816775,0.029781142,-0.51606864,-0.1871587,0.036895756,-0.2866542,0.3642011,-0.28046075,0.26276016,0.5529627,-0.25378114,0.07273633,0.135906,-0.027513603,-0.039697636,-0.42080918,-0.044802908,0.13819662,-0.6122875,0.28300488,-0.16256765,0.87572354,0.08015712,-0.6310766,0.29071602,-0.54719836,0.23582117,-0.069852725,0.61547136,0.77920026,0.25095233,0.2939533,0.72228676,-0.33329108,-0.002197494,-0.1214196,-0.42434236,-0.1372103,-0.18628453,-0.05018094,-0.4441572,-0.09988254,0.06363125,0.064192526,0.02924884,0.45272923,-0.56348485,-0.06433756,0.081672646,0.8239121,-0.20981842,-0.18898034,0.8696556,1.0059527,0.984698,0.08532142,1.3335367,-0.020711342,-0.08532754,0.09708891,-0.26057985,-0.7106018,0.24757718,0.29947478,-0.021393022,0.22350593,0.12924115,0.055211365,0.37173584,-0.50778127,-0.0074377707,-0.15529196,0.2506237,0.090367265,-0.22125228,-0.3978397,-0.18531425,-0.12451992,0.013301303,0.1762764,0.107194334,-0.14014833,0.38545752,0.10852214,1.0356232,-0.23059995,0.10199565,0.040136855,0.35729852,0.20203006,-0.20947307,-0.017682523,0.2567438,0.4544679,-0.007942383,-0.728995,0.14814857,-0.16696762,-0.29880312,-0.19535506,-0.39725447,-0.15149473,0.08051722,-0.24930249,-0.16426305,-0.25077417,-0.49777457,0.52906907,-2.808218,-0.23596977,-0.09044865,0.25008163,-0.12648691,-0.2541671,-0.05647242,-0.43679777,0.34990963,0.30180383,0.4681411,-0.5388026,0.3658111,0.615402,-0.57747525,-0.037114296,-0.73801136,-0.17759915,0.002994309,0.29297456,0.10376629,-0.0023170311,-0.13822763,0.01598542,0.54677826,0.1305083,0.18099512,0.4376109,0.2939587,-0.19541466,0.43202806,-0.18429695,0.5729096,-0.11007013,-0.18642752,0.31042424,-0.27823743,0.36331055,-0.3201336,0.09683573,0.48141214,-0.32832918,-0.7140084,-0.7131087,-0.5854236,1.2930351,-0.15967105,-0.39971387,0.41825798,-0.50918573,-0.27318284,-0.1449495,0.7097993,-0.1236175,-0.13617267,-0.7346421,0.074225694,-0.10649049,0.028970562,-0.059576362,-0.050343677,-0.4605308,0.7287748,-0.1199008,0.41360763,0.27110085,0.21915185,-0.23116489,-0.30848962,0.02163309,0.8779389,0.323006,0.23505391,-0.3413409,-0.18239777,-0.4822085,-0.08126195,0.0076638856,0.7094369,0.6096054,-0.055855066,0.16805567,0.30651182,0.061389077,0.11526683,-0.16661541,-0.19785126,-0.17240264,0.010127445,0.5117507,0.37359908,-0.21726836,0.4501698,-0.018008582,0.023174947,-0.19626725,-0.46917453,0.3898379,0.85412675,-0.2579871,-0.3028557,0.8010931,0.40399337,-0.22916333,0.38927105,-0.47231603,-0.18334071,0.54110074,-0.20886733,-0.51381767,0.081899814,-0.3607756,0.07533448,-0.9196238,0.24012887,-0.438957,-0.89411443,-0.32117182,0.009322226,-3.4899614,0.18527997,-0.26653063,-0.1317804,-0.35224602,-0.21947797,0.22026062,-0.32751593,-0.7052676,0.12539782,0.12016409,0.6682873,-0.24354093,-0.01573056,-0.1825528,-0.1920038,-0.2783458,0.13478947,0.04494901,0.31272492,-0.13599227,-0.2503177,0.02488161,-0.0033948321,-0.3277866,0.03860389,-0.46062288,-0.46284366,-0.02949071,-0.56551266,-0.18960948,0.65291303,-0.42182776,0.014104978,-0.36440822,0.06300821,-0.057523478,0.39586115,-0.08087924,0.19518328,0.115128435,-0.07591544,-0.14137019,-0.16685553,0.46098828,-0.027846724,0.3845601,0.43889514,-0.2147507,0.26487538,0.43465266,0.58560663,-0.0442856,1.0592369,0.4552718,-0.17010872,0.3010404,-0.16749436,-0.36293006,-0.53379804,-0.2590002,0.21667518,-0.48116744,-0.5583448,-0.2011435,-0.23588897,-0.8172743,0.41251794,0.049977437,0.44822812,-0.0041049547,0.15993927,0.47534677,-0.034939535,-0.00085357827,0.015304089,-0.18199383,-0.52017236,-0.3215362,-0.6576497,-0.37795487,0.13355936,0.8618179,-0.2624105,0.11940917,0.04285829,-0.41076735,-0.0458521,0.31222224,0.055634636,-0.019130426,0.435766,-0.04522301,-0.51502043,0.39412746,0.014690901,-0.20070733,-0.682348,0.14861052,0.61726326,-0.5875619,0.7457617,0.27292806,-0.02870331,-0.22730213,-0.45349693,-0.1864245,-0.24818261,-0.286312,0.40785122,0.32047972,-0.90798396,0.39917815,0.30556354,-0.022483448,-0.81282943,0.4738914,-0.10781319,0.018829936,0.008002485,0.3817579,0.2081105,0.09670683,0.06138298,0.22004934,-0.24493949,0.45400307,-0.021398028,-0.11224624,0.3173902,-0.083818056,-0.1393181,-0.7345913,-0.16799326,-0.64915246,-0.1397906,0.17912483,0.05459286,0.17063236,0.23443031,0.16011535,0.49020576,-0.10852852,0.15659478,0.05756257,-0.43612626,0.30948249,0.49663273,0.43399975,-0.31892627,0.63531464,0.1235893,-0.042167082,0.088634856,0.21924748,0.45845696,-0.036855143,0.5643876,0.014069587,-0.2668958,0.16038205,1.0459869,0.08980394,0.43136334,0.047480542,0.07349142,0.34678006,0.047423493,0.24668585,-0.114369996,-0.5916403,-0.018835843,-0.42870435,0.17692263,0.37833512,0.25796878,0.2755603,-0.0786491,-0.31938878,-0.03957908,0.22161533,0.08175179,-1.1235696,0.16233923,0.24740952,0.98090744,0.50163394,0.015568882,0.049025044,0.51445645,-0.027730873,0.12818046,0.4737154,0.12808669,-0.5461307,0.6327589,-0.7329591,0.5310903,-0.12810804,-0.09346012,0.10031066,-0.061743062,0.38185576,0.8575689,-0.26122764,-0.05645975,-0.018973842,-0.23120558,0.25649083,-0.5138084,0.062267322,-0.5440431,-0.17240427,0.6957515,0.6428923,0.31021246,-0.25632766,0.0121086165,0.09312538,-0.07334735,0.10463613,-0.03081317,-0.083071746,-0.11229553,-0.6806565,-0.075820304,0.38951755,-0.029957464,0.21143906,0.1139374,-0.19548805,0.20451386,-0.14505354,-0.15441193,-0.15403509,-0.60226023,-0.17184341,-0.20159447,-0.58958507,0.38560852,-0.31072113,0.1509258,0.2760562,0.0619926,-0.18708992,0.25553933,0.015439372,0.6842873,0.035382003,-0.029898183,-0.39355373,0.15597163,0.19316812,-0.20441294,-0.075613044,-0.1990143,-0.03207175,-0.62881064,0.31457523,-0.14098251,-0.45257068,0.2286704,-0.098131716,0.009045641,0.48872527,-0.064643346,0.016576363,0.05483977,-0.3637937,-0.24630344,-0.08719621,-0.073902994,0.2743559,0.10478143,-0.029341787,-0.18722296,-0.16792254,-0.12617038,0.07987986,-0.009418495,0.36188218,0.3240103,0.07476582,-0.21987449,-0.25721407,0.27812287,0.520829,0.037897702,-0.09152516,-0.08024782,-0.42368403,-0.28912652,0.19212835,0.04001023,0.39187065,0.053818136,-0.36965835,0.5758706,0.13717702,0.9437507,0.10884452,-0.31975922,0.120553575,0.42423105,0.053595472,-0.12725203,-0.32415178,0.84457797,0.3241139,-0.04534048,-0.08760601,-0.4014542,0.12517555,0.2578716,-0.08321703,-0.08534371,-0.030200884,-0.6579377,-0.14803106,0.33359453,0.22083616,0.14206715,0.020222805,0.0032836497,0.21764721,-0.08307821,0.38254324,-0.5154004,-0.15169556,0.29492828,0.20475936,0.10920326,0.11412374,-0.418113,0.30087543,-0.6032793,0.030159721,-0.087815665,0.11785654,-0.4361247,-0.19615488,0.33844018,0.049947213,0.54543465,-0.18770508,-0.43239787,-0.2847713,0.38917243,0.0110458685,0.14874427,0.5328035,-0.20703556,0.055173073,0.115276895,0.45827422,1.030858,-0.06684029,0.12721686,0.2706978,-0.35446683,-0.5952681,0.33268282,-0.4686557,0.29616427,0.06739005,-0.19546175,-0.3340524,0.19592296,0.19508588,0.0906406,0.2582818,-0.47138146,-0.32614592,0.06473134,-0.23372996,-0.12900719,-0.2433691,0.036238447,0.5876713,-0.30263144,-0.23921831,0.063457824,0.29135546,-0.25523707,-0.51842815,0.020829797,-0.12054909,0.19313234,-0.16247547,-0.4370668,-0.08213994,-0.03949993,-0.48886415,0.045878574,0.084379174,-0.29198512,0.10484606,-0.20386969,-0.07271165,0.7944836,-0.34823337,0.15529136,-0.45062867,-0.5535787,-0.7068949,-0.24162574,0.3268983,0.17861392,-0.07286513,-0.40737367,-0.023050815,-0.059699148,-0.022458896,0.14627516,-0.48493996,0.4635227,0.110706836,0.43142948,-0.0674377,-0.8170635,0.20132725,0.15482864,-0.014587606,-0.6972613,0.47209564,-0.08820506,0.72246003,0.14641432,0.0877069,-0.0010185441,-0.5267119,-0.043663505,-0.1835746,-0.15809543,-0.61997455,0.11229187,353 -824,0.49796352,-0.2697957,-0.46565452,-0.057399303,-0.32320553,-0.06773582,-0.073013656,0.75910234,0.38539127,-0.13349235,-0.1426747,-0.1340318,0.030845622,0.45705938,-0.15571368,-0.51465625,-0.04920579,0.123458564,-0.30633312,0.4149343,-0.4379114,0.23510075,-0.2227959,0.44311818,0.33624256,0.26956952,-0.16467358,0.11503833,-0.19825989,-0.12984815,-0.119140975,0.26000103,-0.20465636,0.05142348,-0.007955735,-0.30584118,-0.16164628,-0.6167524,-0.4233099,-0.6315591,0.49878109,-0.76906663,0.44812667,-0.031154731,-0.2413605,0.42101946,-0.04049708,0.31006882,-0.1092859,-0.15194018,0.047161847,-0.021949356,0.024048137,-0.2383095,-0.24549668,-0.29100838,-0.6499904,0.071913,-0.38131395,-0.28829315,-0.17405991,0.06322015,-0.28941652,-0.012467076,0.030949524,0.56402767,-0.45781696,0.23322405,0.0664604,-0.084551156,0.022430763,-0.58127326,-0.2107761,-0.013231501,0.23104751,-0.19888568,-0.21286552,0.23375398,0.2424895,0.22763185,-0.22607328,0.015973978,-0.50218886,0.073201425,0.032752022,0.61766076,-0.041207593,-0.7111912,0.045439884,0.09570092,0.17018147,0.22082944,0.2889962,-0.09452024,-0.14362767,0.02745375,-0.066759594,0.7054832,0.41021037,-0.17277904,-0.21569782,0.3585584,0.5400505,0.3474373,-0.100166164,-0.051146653,0.063927345,-0.572676,0.005029609,-0.15340576,-0.16904624,0.55167264,-0.03993765,0.34355783,0.5865841,-0.20456783,-0.004390154,0.1592397,0.009735807,-0.0124539435,-0.222784,-0.23096573,0.18059105,-0.32071662,0.14581905,0.05393141,0.65339595,0.16319533,-0.78641564,0.3820151,-0.5281492,0.12222937,-0.14077519,0.33736697,0.62021613,0.33349356,0.34496936,0.5224236,-0.18528523,0.17242877,-0.10149276,-0.3805376,-0.026835402,-0.16596562,0.013255581,-0.5492544,-0.13888873,0.05224975,-0.3556501,0.34153855,0.3073113,-0.4882872,-0.066318564,0.17364772,0.76953506,-0.23192157,-0.18357998,0.9090479,1.0927877,0.9179426,-0.043793615,0.8424914,0.075117774,-0.017055502,0.2183301,-0.46718502,-0.5190435,0.24570428,0.21153305,-0.48647928,0.4084607,-0.08582735,-0.032767404,0.37805733,-0.20626305,-0.02247504,0.0024596553,0.28539374,0.41151866,-0.2684879,-0.488894,-0.40035412,-0.21736646,0.15029591,0.21887648,0.32752058,-0.32223466,0.3155472,0.019806236,1.665182,0.12263385,-0.022684991,0.051961232,0.6342748,0.21928878,-0.24412835,-0.07966408,0.1940161,0.23444296,0.06763512,-0.57614857,0.23010091,-0.11798748,-0.5202549,-0.12731154,-0.35664964,-0.2147706,-0.12761883,-0.3558675,-0.13450018,-0.22420907,-0.3132678,0.5440176,-3.0485537,-0.20609732,0.06466586,0.37396464,-0.0070001483,-0.46438363,0.044091742,-0.37638426,0.23868383,0.26233038,0.4647933,-0.7472765,0.43747357,0.38410744,-0.64699596,-0.10631762,-0.4788425,-0.051989723,0.056714743,0.3458705,-0.021295292,0.14929228,0.31110632,0.22350782,0.45071545,-0.08017983,0.1093693,0.24015851,0.41182923,-0.11685765,0.35172603,-0.24293637,0.40797928,-0.07920034,-0.18675096,0.25926444,-0.3506042,0.19963944,-0.19988094,0.11289721,0.32488328,-0.2557876,-1.0048773,-0.43165198,0.12850721,1.0916387,0.064443834,-0.31877288,0.37974682,-0.60371363,-0.26392075,-0.23771052,0.44675672,-0.12705058,-0.3195714,-0.63664836,-0.08157284,-0.1493294,-0.06839814,0.028111314,-0.16536178,-0.3723533,0.5150328,0.0133991465,0.34618464,0.24973236,0.13859026,-0.46902883,-0.41662827,0.11038306,0.54764086,0.31980106,0.10581634,-0.22483365,-0.15395711,-0.28826064,-0.09373957,0.16346483,0.51692396,0.54673886,-0.03603532,0.15926027,0.14446758,-0.06297649,0.029860312,-0.18729119,-0.07464684,-0.06510341,-0.0016595721,0.57144076,0.7878882,-0.25473043,0.640493,-0.016872024,-0.010625879,-0.21930945,-0.33963332,0.47196245,0.90618616,-0.11932764,-0.3563546,0.5342173,0.45413843,-0.3176739,0.21586074,-0.4747746,0.07681464,0.4116434,-0.27194643,-0.3402544,0.25055906,-0.12883526,0.05135706,-0.7716965,0.22662741,-0.1562902,-0.58505756,-0.49600402,-0.05122937,-2.8433545,0.060083617,-0.17508547,-0.44902134,-0.10203407,-0.4002522,-0.14554602,-0.6539411,-0.63747674,0.21353191,0.13500936,0.66740316,-0.18477277,0.14975126,-0.09403339,-0.2668927,-0.2807697,0.12880905,-0.048817486,0.5408106,0.09641854,-0.24033551,-0.09942625,0.015427329,-0.57955986,0.16463907,-0.5045996,-0.39743498,0.010873179,-0.5532608,-0.21508242,0.6393408,-0.22085728,-0.017139146,-0.24680926,0.006664125,0.0022534777,0.34980264,0.0325763,-0.07486754,0.19975339,-0.009208153,0.39897725,-0.06997502,0.3320427,-0.024834173,0.46841803,0.23256075,-0.1254908,0.3265616,0.54755336,0.7591975,-0.034738783,0.83251333,0.40564713,-0.030465126,0.13627036,-0.27886444,-0.21087475,-0.2765948,-0.25680402,0.12022597,-0.3309441,-0.52429795,-0.21951097,-0.37511888,-0.76535124,0.4823006,-0.028781937,0.13318713,-0.009688401,0.26149747,0.6423211,-0.22922331,0.054339845,-0.021409651,-0.103089355,-0.57220274,-0.15593706,-0.5030086,-0.3359921,0.17963015,1.0074555,-0.27151665,0.045793284,0.09814021,-0.3857604,-0.09440596,0.083845936,-0.051037002,0.09090218,0.05484262,-0.30198538,-0.51497084,0.2902967,-0.22102128,-0.24365385,-0.54825014,0.0929643,0.48036528,-0.34201893,0.4438838,0.12282926,-0.031191962,-0.14225088,-0.4163442,-0.10735736,0.02006656,-0.14321879,0.41138592,0.35972607,-0.7783678,0.3814321,0.46680388,-0.20757847,-0.6029028,0.50887907,-0.078960516,-0.29448888,-0.19716068,0.20912488,0.45075202,0.0046360246,-0.2986335,0.22720008,-0.3888698,0.21531892,0.12732537,0.012049873,0.17602009,-0.08975639,-0.006009052,-0.7236514,0.091655254,-0.3082197,-0.31304705,0.084487,0.24733059,0.45727167,0.08431544,0.1340215,0.21010049,-0.4138324,-0.03667466,-0.054727633,-0.3063366,0.20766331,0.34061837,0.6395363,-0.39130113,0.50791556,0.0341555,-0.03363334,0.34534106,-0.08533224,0.42465147,0.0057396046,0.3078665,0.34056556,-0.372723,0.2090552,0.78966266,0.06925871,0.39745927,0.044847935,-0.08618707,0.12886417,-0.015808642,0.2874877,0.024241269,-0.46588445,0.16265717,-0.3384994,0.19522877,0.45018816,0.14721249,0.19939996,-0.09174181,-0.57688755,0.022014461,0.3286862,0.048856754,-1.4186772,0.22395511,0.2804916,0.90097666,0.29308683,0.10399425,0.046264518,0.7242346,-0.004468473,0.09063,0.33925986,0.2555693,-0.5713009,0.43583915,-0.7526204,0.6709285,0.02911075,-0.11567729,-0.0063048503,-0.07897058,0.3661619,0.4874555,-0.15414922,-0.1339942,0.09132215,-0.35150024,-0.11624241,-0.41951844,0.041156914,-0.7289927,-0.048689585,0.7410782,0.60810775,0.26435837,-0.050447453,0.055941958,0.22586083,0.03453346,0.01901052,-0.05883028,0.086624555,-0.069013566,-0.68861914,-0.09343252,0.35306755,-0.088283785,0.13835679,-0.23529238,-0.06830457,0.17022699,-0.24879237,-0.38049772,-0.07757486,-0.73438615,0.09281536,-0.12520288,-0.59210426,0.43390647,0.06004029,0.25561643,0.3036938,0.10385344,-0.2781426,0.403819,0.15010439,0.8931466,0.028133372,0.03740182,-0.41431764,0.19797187,0.14822932,-0.1006572,-0.15698941,-0.14225465,0.03452565,-0.34048045,0.39200416,-0.025960783,-0.41570878,-0.19723241,-0.12550397,0.26838478,0.5138797,-0.30377242,-0.16850972,-0.17157167,-0.3916181,-0.23108584,-0.1982183,-0.12432114,0.29135302,0.34842682,-0.37211564,-0.1293172,-0.09696916,0.0048046783,0.4414494,-0.051696867,0.56209964,0.265763,0.2283587,-0.09898021,-0.38199964,0.14950563,0.59253377,-0.0921246,-0.19344407,-0.56485647,-0.41535124,-0.20660956,0.2143333,-0.09335569,0.3211188,0.14199293,-0.13538875,0.55998534,0.1162134,1.1587653,0.07586279,-0.35801756,0.43514776,0.31593558,0.08997498,-0.16780365,-0.27644137,0.8703682,0.28539324,-0.11631227,-0.19829203,-0.36579645,0.058724836,0.20717601,-0.21306072,-0.04092129,0.06644249,-0.62729,-0.08244484,0.43916824,0.068653375,0.17587276,-0.18295647,0.2397996,0.3791226,0.015424263,0.27496907,-0.3909509,-0.105307795,0.28497696,0.24960436,0.15882643,0.11592519,-0.5766313,0.23223941,-0.37350821,0.09268231,-0.30639207,0.2679883,-0.20074786,-0.25216207,0.2229455,0.24555571,0.3777322,-0.24707793,-0.36274847,-0.367884,0.4404633,-0.019053617,-0.037717517,0.17495783,-0.28183052,-0.036937907,-0.08480538,0.40954754,0.85066414,-0.050922763,0.007511983,0.3096014,-0.3198575,-0.68704224,0.3786874,-0.22868319,0.21256213,0.030997908,0.10093135,-0.7287538,0.30951592,0.29863706,0.13492452,-0.047908485,-0.40998152,-0.3739173,0.21104665,-0.34248313,-0.1294021,-0.38881,-0.13913172,0.6571401,-0.19018905,-0.31970662,0.059811145,0.43177798,-0.07077828,-0.21280019,0.072385736,-0.32184994,0.24395542,-0.17386077,-0.2841204,-0.3714812,0.03211325,-0.32833865,0.20293538,0.08472663,-0.24003148,0.2145075,-0.22856021,0.03149578,0.92788935,-0.34682772,0.37329432,-0.5361583,-0.5686248,-0.8174775,-0.48682487,0.20098181,0.03122284,-0.07423713,-0.8321211,0.06267492,-0.031809587,-0.3081946,-0.05638581,-0.3966639,0.45537862,0.031091457,0.1511095,-0.091571964,-0.81826633,0.05498904,0.12232707,-0.40639758,-0.64034224,0.51507443,0.08025955,0.82418877,-0.0045207404,0.13866149,0.09680581,-0.21755636,-0.058518816,-0.22746907,-0.24838902,-0.45018658,0.17564897,360 -825,0.63092357,-0.26233086,-0.5572039,-0.011875686,-0.1920706,0.029617153,-0.10887793,0.59732527,0.43189347,-0.230915,-0.19048156,-0.08137605,0.018321106,0.48783693,-0.08478785,-1.0425683,-0.073550664,0.3671123,-0.6816693,0.8009626,-0.29693797,0.49744728,0.00082707405,0.3484477,0.31403777,0.19277339,0.066463776,0.10679678,0.014693886,-0.039266884,-0.08063974,0.20304102,-0.5754669,0.3068368,0.02164642,-0.5629028,-0.11586823,-0.43874252,-0.36573383,-0.8406283,0.2915106,-0.67190164,0.75857645,0.022381878,-0.3860651,-0.07923689,-0.2284816,0.48353612,-0.212601,0.08171246,0.037710946,0.015788754,-0.1507414,-0.31208786,-0.056924094,-0.52369404,-0.57833767,-0.059008975,-0.32014754,-0.025283104,-0.07798526,0.06584259,-0.27254897,0.1610524,-0.06964425,0.30750874,-0.37641263,-0.010308244,0.41787907,-0.11031693,0.054349024,-0.67099094,-0.20618069,-0.20811458,0.19772863,-0.14031433,-0.5180313,0.16183268,0.38848484,0.48663977,0.0489409,-0.24677818,-0.045537192,0.0307329,0.16317604,0.52089906,-0.25722882,-0.5651563,-0.30947128,0.07526729,0.73856086,0.0010143667,0.38426295,-0.35987607,-0.06304905,-0.16013172,-0.13398474,0.3398805,0.49919662,-0.31155416,-0.15331261,0.22511053,0.76288337,0.3383758,-0.046588067,0.13090284,0.065724365,-0.4846805,-0.04240105,0.05034332,-0.20753479,0.48482051,-0.19216645,0.089574136,0.6494623,-0.045246333,0.023453748,0.20033531,0.0490912,-0.29418933,-0.24301527,-0.29392365,0.41168466,-0.4303452,-0.04659452,-0.34422672,0.7065871,0.28319815,-0.4946077,0.35579506,-0.57988614,0.22389257,0.023823464,0.46007085,0.8764598,0.29106966,0.1324089,0.76496714,-0.3928473,0.0057053813,-0.04467095,-0.21118514,0.05132767,-0.102656834,-0.048029464,-0.5738104,0.043960575,-0.12337919,-0.33579364,0.37658063,0.49240935,-0.70202017,-0.191864,-0.12199137,0.5456028,-0.33423758,0.017185846,0.96989065,1.1615175,0.809318,0.050964158,1.709215,0.45216608,-0.31404325,0.12705848,-0.42407545,-0.7897094,0.1925038,0.42078057,-1.0748957,0.9002757,0.04120078,-0.03371794,0.39479935,-0.4512358,0.02631636,-0.084865965,0.15510063,-0.0434909,-0.44142988,-0.5469649,-0.15923904,-0.13011599,0.039676595,0.12788804,0.3173912,-0.4019575,0.47842398,0.20641737,1.2739067,-0.063858144,-0.18820113,-0.20996524,0.11034355,0.36994433,-0.36396465,-0.10945097,0.26814857,0.5172784,-0.1986192,-0.7034738,0.18035395,-0.247009,-0.30677706,-0.31959388,-0.04805386,-0.09346018,0.14317946,-0.24278958,-0.30204836,0.1277719,-0.145086,0.4429327,-2.1750906,-0.36439896,-0.04972981,0.39147338,-0.07970014,-0.41675273,-0.223803,-0.4530653,0.099583425,0.27538243,0.3625127,-0.7822082,0.320398,0.47430634,-0.7405606,-0.10440003,-0.6344217,-0.004550956,0.09273253,0.32266694,-0.00029864907,0.026426842,0.23536575,0.37814915,0.41342744,-0.056615192,-0.059131477,0.36731339,0.38669348,-0.11051998,0.28149715,0.2051851,0.66587895,-0.11805612,-0.2731662,0.40384066,-0.3344668,0.36462995,0.1260149,0.09700477,0.46405005,-0.29650247,-0.87972,-0.62482595,-0.1868804,0.8020263,-0.18434243,-0.41403452,0.111533165,-0.29305327,-0.45646015,0.07784333,0.5396959,-0.2759739,-0.33777258,-0.9738322,-0.20499907,0.015738292,0.1711151,-0.12247184,-0.15809765,-0.47357702,0.8657183,-0.11310104,0.3983018,0.35952652,0.3469946,-0.18695812,-0.65952694,0.2298897,1.0257066,0.5317599,0.103081726,-0.29212916,-0.022042671,-0.3763665,0.18758881,0.10076862,0.60639906,0.71073717,-0.19916458,0.03072876,0.27406508,0.11069086,0.07390739,-0.11376061,-0.12184181,-0.1725624,-0.06226032,0.50987226,0.79908735,-0.3465692,0.25480542,-0.23666419,0.32011652,0.0064694933,-0.7729473,0.92315865,1.2664161,-0.21273291,-0.35353398,0.77057844,0.19042736,-0.29550216,0.4609526,-0.59114575,0.012129396,0.47347426,-0.04478104,-0.21570058,0.4930338,-0.24149792,0.31999347,-1.0194143,0.40402427,-0.21055444,-0.41799447,-0.6124961,0.097768314,-2.6532402,0.22714292,-0.2430743,-0.19078101,-0.2219159,-0.12737553,0.2433393,-0.6536519,-0.7155251,0.19293725,0.12333569,0.506162,-0.08113495,0.017496416,-0.031703204,-0.49846384,-0.12793903,0.1877646,0.16650103,0.32835403,-0.050560232,-0.42729458,-0.0025865932,-0.17432006,-0.45580316,0.15401946,-0.8167862,-0.51192766,-0.20398752,-0.6589105,0.0054376223,0.66151065,-0.27110007,-0.0076395646,-0.1996079,0.029787928,-0.09180423,0.33818388,-0.02633777,0.019788822,0.1516227,0.0752889,0.07933048,-0.225913,0.17309777,0.15517879,0.38626638,0.27291062,-0.22068578,0.29334474,0.4934365,0.8728759,-0.11954459,0.805645,0.6113406,-0.108544976,0.1809821,-0.22035594,-0.3474873,-0.5603762,-0.40005198,-0.19830294,-0.5646314,-0.4080665,-0.20321141,-0.34655747,-0.91561365,0.37584925,-0.11545678,0.12018611,0.13114305,0.28974143,0.52967817,-0.18107855,0.101831496,-0.1617759,-0.28700927,-0.32506248,-0.19549674,-0.6271661,-0.49370775,0.41231665,1.3361186,-0.21000572,0.25492415,0.11676947,-0.38108444,0.17854036,0.11233013,0.019845089,-0.0011475185,0.4110445,-0.049180683,-0.46201053,0.2555413,0.024403164,-0.40270078,-0.73051447,0.21688236,0.53990453,-0.79057115,0.5971119,0.08903476,-0.13837434,0.09605983,-0.30312622,-0.07030653,0.09870546,-0.35669944,0.51047945,0.3775619,-0.3577867,0.3574767,0.46009067,-0.20235002,-0.6663416,0.38468647,-0.05135115,-0.27952898,-0.06736217,0.33037835,0.005477642,0.028371744,-0.19591145,0.27714685,-0.4002219,0.21177031,0.24324976,-0.18492758,0.060143847,0.014022008,-0.22606343,-1.008222,0.17954397,-0.4741381,-0.28609267,0.08543708,0.19286601,0.2661431,0.028885132,0.34185147,0.3683466,-0.4736025,0.19739546,-0.15127788,-0.371614,0.43290162,0.48024622,0.268909,-0.11774523,0.299074,0.018693307,-0.02244241,-0.12423036,-0.12533191,0.5718469,0.14293332,0.3784552,0.23748,-0.09171033,0.26552543,0.6516442,-0.06339815,0.27799436,0.1848297,-0.108835764,0.036542613,0.19038129,0.3280809,0.058874916,-0.42914426,0.00829788,-0.007418548,0.18939076,0.59284747,0.17296474,0.103072286,-0.25147983,-0.62601644,0.030515978,0.13514918,0.24249943,-1.6889662,0.2506696,0.17699397,0.65444326,0.5818005,0.10279242,0.010591269,0.27787313,-0.2047164,0.13252445,0.37557563,-0.14823575,-0.42247632,0.30918,-0.7332373,0.40306905,-0.026302144,0.06607295,0.11128404,-0.15741742,0.25890025,0.97838384,-0.28940618,0.020369371,-0.17617817,-0.12528986,-0.09629994,-0.42337617,0.00895523,-0.6446957,-0.39495274,0.8146479,0.42586294,0.33261093,-0.27897748,0.1267645,0.18484879,-0.16653427,0.1152864,-0.0051001343,0.24021317,-0.015352872,-0.46957144,-0.19942148,0.52458715,-0.22923303,-0.20645379,-0.2145981,-0.38063237,0.14787531,-0.12102544,-0.031644884,-0.103460036,-1.00451,-0.1398346,-0.47535387,-0.49490976,0.55262905,0.0588537,0.0543446,0.30054343,0.006646319,-0.2338742,0.6239541,0.06595289,0.9584608,0.12340853,-0.1292395,-0.15747134,0.63552445,0.20063019,-0.2747563,0.11128372,-0.08398253,0.31162336,-0.47961155,0.7548766,0.14020203,-0.4497641,-0.030342868,-0.060561318,0.13782717,0.3440541,-0.532432,-0.2940998,-0.02831024,-0.17233093,-0.104631625,-0.4091556,-0.24765413,0.19885744,0.35353315,0.016021306,0.019201657,-0.1306327,-0.0106098065,0.41954637,0.18418975,0.45485643,0.6956455,0.017815018,-0.5470016,-0.037853792,0.41514444,0.30137765,-0.045974936,-0.26147717,-0.4077356,-0.58714557,-0.62679124,-0.01903665,-0.18197699,0.29351643,-0.048692446,-0.26066005,0.82078,0.31878233,1.4235029,-0.041329518,-0.4733982,0.2095285,0.7788027,-0.09456036,-0.18844311,-0.31745175,1.1075782,0.4466165,-0.22840305,-0.109018736,-0.36032578,-0.24418141,0.34099352,-0.32318318,-0.036523163,-0.053835183,-0.65518665,-0.4520255,0.21586788,0.26673445,-0.046953723,-0.045507696,0.37495968,0.29280093,-0.17676233,0.10334021,-0.5832204,-0.072384395,0.1316482,0.20228986,0.12135989,0.24765484,-0.46232262,0.41220883,-0.6966684,0.072757535,-0.32823163,0.091212064,-0.03497711,-0.363122,0.1159559,0.29956213,0.1501316,-0.58799285,-0.3650012,-0.37099472,0.57151824,0.016547972,0.10880538,0.71201664,-0.2303927,-0.0860019,0.06604781,0.55030614,1.2616246,-0.14235188,-0.02868239,0.3413523,-0.4455308,-0.55054796,0.31849632,-0.3010507,0.1595599,-0.30689907,-0.27437288,-0.77289265,0.304014,0.056595024,0.1466673,-0.058385458,-0.6516178,-0.26066902,0.41249862,-0.41859016,-0.13731398,-0.44677505,0.12929875,0.5850162,-0.32425538,-0.63741606,0.12734044,0.23746854,-0.28103957,-0.6278839,-0.2102073,-0.3251656,0.4090351,0.1189942,-0.29758397,-0.13335097,0.0063693426,-0.44313732,-0.0057822242,0.17486174,-0.41465545,0.2590102,-0.26185128,-0.077813186,0.98221046,-0.12091244,0.3234244,-0.74150914,-0.5978232,-0.85534984,-0.53584045,0.45897377,0.29363683,-0.1200246,-0.95819086,0.040212706,-0.112354845,0.03454982,0.18312927,-0.09701834,0.5117522,0.11843252,0.61267525,-0.06957943,-1.1130534,0.18645586,0.25430152,-0.20067078,-0.77060276,0.47296035,0.121243395,0.9468386,0.12615912,0.04727447,0.11600316,-0.67254955,0.07982678,-0.28634873,-0.08121807,-0.77452105,0.16894405,366 -826,0.45149723,-0.16686709,-0.5143641,-0.19389842,-0.004983598,0.07874029,-0.30243346,0.840473,0.16895212,-0.38395953,-0.05519764,0.015207271,-0.052369326,0.3320572,-0.2454298,-0.66799474,0.047131438,-0.021495702,-0.35838607,0.5439169,-0.4847908,0.27925643,-0.093111075,0.44617745,0.1043131,0.25376248,0.34037402,0.2589077,-0.083007134,-0.16654304,-0.04891328,0.05935354,-0.52376956,0.29424474,-0.17505755,-0.23909168,-0.04131401,-0.40122545,-0.34994295,-0.7914288,0.38613388,-0.6593473,0.32677883,0.13710189,-0.33782864,0.09566507,0.27206036,0.12963921,-0.33272573,-0.08821422,0.11811521,-0.15811881,0.10016174,-0.14067246,-0.05288546,-0.6305843,-0.5843115,-0.08424715,-0.5491912,-0.051186223,-0.003303945,0.24551766,-0.42630032,-0.222807,0.023424553,0.62718314,-0.39775273,-0.40974155,0.35309944,-0.3355044,0.19196235,-0.85783035,-0.15920167,-0.10749822,0.1592498,0.042618394,-0.2159893,0.3725098,-0.046133026,0.339897,-0.057141673,-0.18877558,-0.20045245,-0.24095166,-0.043324042,0.4298834,-0.27446938,-0.60981315,-0.16214477,-0.09237704,0.3296979,0.1547412,0.26262623,-0.058461726,-0.11696026,-0.074444175,-0.19327205,0.5750341,0.62584215,-0.19223905,-0.012832627,0.3368189,0.6835165,0.20955026,-0.15732028,-0.024407187,0.03489698,-0.5551226,-0.21113615,0.012237226,-0.18915083,0.5191631,-0.22434963,0.3961633,0.5449373,-0.21412249,0.043669302,0.09727762,0.22328697,0.014922802,-0.21532117,-0.2933804,0.34736958,-0.45319572,-0.0690307,-0.32888398,0.7121115,0.244675,-0.60390776,0.3362633,-0.2996112,0.0465693,-0.055456463,0.66654795,0.8244133,0.42881238,0.3366952,0.94799787,-0.39300957,0.07810057,0.0117761595,-0.06639161,0.18619692,-0.25197813,0.12397834,-0.44742784,0.10922364,0.23054874,0.06603081,0.064072944,0.4806207,-0.5459285,-0.19897306,0.43232283,0.7028573,-0.19784975,-0.011255483,0.8428135,1.2069951,0.9858276,-0.011606932,0.8127702,0.027389893,-0.19663258,-0.012783219,0.16263323,-0.77928895,0.28312925,0.4347173,0.58945936,0.40837398,0.059794385,-0.03205648,0.40901506,-0.55023736,-0.11877516,-0.12035134,0.38979855,0.16157164,-0.08475397,-0.32405356,0.045645982,0.027810214,0.15853517,0.05657971,0.32184446,-0.25983086,0.30047998,-0.100205295,1.1855651,-0.12334295,0.091939986,0.1922574,0.52902937,0.2648996,-0.4210154,0.31131852,0.3603499,0.44339085,0.14011633,-0.57743275,0.06527435,-0.36844325,-0.6907764,-0.13075034,-0.33947793,0.04620916,-0.096587546,-0.45716718,-0.23752517,-0.086962104,-0.1140678,0.3355641,-3.0881793,-0.15099497,-0.23985629,0.2772629,-0.19821109,-0.21800832,-0.12361785,-0.49777338,0.5091849,0.5942836,0.4140779,-0.64576846,0.09733797,0.37194073,-0.45926058,0.016817546,-0.564405,0.065698035,-0.11262595,0.4873235,0.09710961,-0.2271276,0.07324994,0.47550288,0.50643235,0.22823347,0.22436123,0.10348272,0.382068,-0.31435552,0.26950905,-0.13284664,0.38766813,-0.43426713,-0.17315787,0.3135524,-0.6371333,0.1199914,-0.4876366,0.16073531,0.53744674,-0.17544909,-0.8256356,-0.5040781,0.12901208,1.2102863,-0.16040601,-0.7294685,0.13670413,-0.24733348,-0.1323835,-0.0908038,0.55614936,-0.17903852,-0.08970338,-0.6165952,0.08156046,-0.36988544,0.1392281,-0.07411951,-0.010831823,-0.53807807,0.81506443,0.00998396,0.51025295,0.33934188,0.08618816,-0.6239886,-0.37005875,-0.06058373,0.7842174,0.63031954,0.09928688,-0.19257323,-0.048990708,-0.1657508,-0.16450089,0.222151,0.7744995,0.81998825,-0.1048905,0.21539827,0.33827415,-0.07425539,0.05795771,0.09429663,-0.32637125,-0.26442686,0.25695404,0.7168676,0.59770304,-0.118171036,0.14932309,-0.0647525,0.16459651,-0.2634485,-0.47570714,0.39558005,0.7935167,-0.18536568,-0.3233962,0.560353,0.47902367,-0.22378969,0.6621671,-0.7086828,-0.4758842,0.49753428,-0.12516315,-0.34427705,0.13432789,-0.38629195,0.10238904,-0.75814277,0.27454486,-0.36538282,-0.60040396,-0.739454,-0.36580846,-3.2761047,0.20819353,-0.32654276,-0.13386686,-0.24153256,-0.18584792,0.21476442,-0.73757166,-0.5693023,0.1900676,0.0894249,0.71340877,0.018916365,0.017785585,-0.32482162,-0.3267688,-0.112868905,0.18697853,-0.017867932,0.21039951,0.07210681,-0.3238041,-0.101555966,-0.047094915,-0.39818358,-0.15256646,-0.40681243,-0.4728122,-0.25007865,-0.5164792,-0.079244606,0.6622832,-0.30735746,-0.032711364,-0.14677346,-0.01474001,-0.074977495,0.10181267,0.001829187,0.19922282,0.027623514,-0.10631671,0.055244815,-0.4288546,0.15425014,0.066771366,0.47029042,0.25833043,-0.1883791,0.12583716,0.6075552,0.5566645,-0.16294473,0.86403656,0.41817796,-0.05437538,0.29420897,0.03330676,-0.1152828,-0.52429277,-0.36536124,0.30229667,-0.47012004,-0.33504197,-0.14452045,-0.33201084,-0.87638515,0.46007586,0.038588624,0.58868855,-0.12119169,0.4433279,0.34091076,-0.25502762,-0.13978316,0.022325685,-0.13484356,-0.46630108,-0.20329838,-0.5987367,-0.35017335,0.30099872,0.80563897,-0.37956536,-0.12202326,0.20828335,-0.17046846,0.0138738705,-0.0022521715,0.079366855,-0.09960624,0.3290882,0.062004745,-0.587272,0.44030452,-0.2401657,-0.022148123,-0.50649786,0.0980992,0.40864873,-0.43376896,0.57349306,0.4372541,0.07772002,-0.3388139,-0.7582226,-0.09540657,0.06558597,-0.1332269,0.41850838,0.28776145,-0.74843025,0.5525573,0.086755864,-0.41001233,-0.63551563,0.48511043,-0.08227763,-0.20858096,-0.15921186,0.23165995,0.13619958,-0.027039543,-0.15424152,0.36615786,-0.2808631,0.23506917,0.1723709,-0.041493047,0.5912749,-0.083089374,-0.16002811,-0.58296067,-0.052309494,-0.7442048,-0.20650937,0.29483262,-0.18417907,0.053782433,0.08905974,0.04964316,0.35139474,-0.33904216,0.24090953,-0.0851384,-0.33953795,0.5177791,0.5677194,0.57845896,-0.5046219,0.6789887,0.16502474,-0.008933057,-0.05228362,0.012159526,0.48439702,0.12030822,0.43783227,-0.16077513,0.0012518564,0.20076223,0.77500194,0.27351654,0.40861008,-0.060548726,-0.071497925,0.08020388,0.053842414,0.27254006,-0.03575516,-0.6277633,-0.03712389,-0.23601979,0.053885013,0.45547438,0.18818922,0.39294425,0.11038057,-0.35603622,0.042959273,0.12461395,-0.0794894,-1.430953,0.4727893,0.21829616,0.9052105,0.3808786,0.0024271756,-0.04827286,0.6794769,-0.07426231,0.06434103,0.4004883,0.00060335424,-0.37444147,0.5707132,-0.70020944,0.50576735,0.029654743,-0.11087579,-0.07210955,-0.040487263,0.5909483,0.48661232,-0.20740636,-0.009790971,0.043475732,-0.22578955,0.18023473,-0.4094944,-0.057743043,-0.527482,-0.2800386,0.53157085,0.48010978,0.30588645,-0.04313883,-0.07193205,0.093827866,-0.06313628,0.053448807,-0.2430225,0.05545525,-0.18492673,-0.60903555,-0.25620496,0.4397478,0.037146453,0.13718212,-0.025596509,-0.20080392,0.11525094,-0.08400092,0.031971827,-0.02401062,-0.77171296,0.052691262,-0.21241431,-0.45932516,0.85617733,-0.30609128,0.23373759,0.24442428,0.008248996,-0.033667725,0.14558788,0.020142952,0.8103668,-0.2910532,-0.23026596,-0.5053516,-0.040328633,0.20452213,-0.29796037,0.020584038,-0.3081921,0.070778824,-0.45670247,0.41318926,-0.20344369,-0.08955252,0.26825702,-0.24536765,-0.060159955,0.58353657,-0.070893325,-0.034465168,0.034214765,-0.3924968,-0.0911906,-0.20249961,-0.36209884,0.23940723,0.03895251,0.105697244,-0.14153534,-0.15427549,-0.05557056,0.19249316,0.088046074,-0.02589638,0.4024636,0.042332824,-0.43140054,0.057415936,0.2462327,0.5203703,0.09396129,-0.14188635,-0.30541536,-0.6737926,-0.4761748,0.3366913,-0.13944836,0.2787434,0.2518625,-0.058463488,0.8142233,0.041626472,1.0872902,-0.026879543,-0.5889836,-0.1348445,0.69021916,0.043890476,0.015029204,-0.2994589,0.93279195,0.49464127,-0.037796848,0.049860377,-0.3972415,0.18929805,0.43881336,-0.13726634,-0.2785679,-0.21206611,-0.6474935,-0.20207983,0.46600845,0.2716014,0.2234204,-0.15608364,-0.07824074,0.4110558,0.11433811,0.3321019,-0.6375015,-0.07035343,0.25611153,0.10890916,0.020304346,-0.03587227,-0.40499285,0.29346192,-0.6820321,0.027658528,-0.3902665,0.25567415,-0.254649,-0.55192477,0.23191637,-0.14793281,0.5504345,-0.30687633,-0.3946992,0.05263135,0.3412937,0.32187402,0.1915753,0.38756704,-0.24605255,0.019299813,-0.07490186,0.48395917,1.0162364,-0.3357124,-0.012384196,0.38961026,-0.47799316,-0.96175575,0.101165116,-0.550697,0.15531622,-0.12879777,-0.3350666,-0.5466757,0.28945926,0.32879946,0.030944278,0.089440785,-0.5856591,-0.31660578,0.08691593,-0.21972097,-0.24682009,-0.3793203,0.07144338,0.73055935,-0.3368515,-0.3586733,0.12674691,0.5962663,-0.11472422,-0.71668077,0.14610212,-0.33105335,0.31064713,0.019800948,-0.27448663,-0.17013498,0.041166823,-0.46720704,0.4273905,0.1953181,-0.24643536,-0.0924415,-0.16723682,0.16285004,0.8444843,-0.05381917,0.30367678,-0.46431383,-0.320257,-0.7393515,-0.46892095,0.37633905,-0.018242663,0.05170003,-0.771811,0.030051127,-0.27352306,0.040224966,-0.2602393,-0.30358532,0.51286703,0.13568264,0.3808719,-0.06941333,-0.6933213,0.16668911,0.037326258,0.01402128,-0.4321381,0.36386633,-0.14846504,0.9543864,0.08972657,-0.050145924,0.022008449,-0.63858217,0.34951875,-0.3161757,-0.4042549,-0.57856363,0.27828076,370 -827,0.30907848,-0.39294997,-0.43636298,-0.22854419,-0.22407478,-0.10063062,-0.21873103,0.2504592,0.16866839,-0.35696593,-0.21475697,-0.3361809,-0.059684347,0.6703151,-0.25121453,-0.72135264,-0.03868786,0.185418,-0.52219886,0.83955735,-0.37746415,0.17703497,0.33324727,0.35345307,0.21607225,0.097409405,0.49551392,-0.07876418,-0.10750863,-0.15659352,-0.10667229,0.059610214,-0.8706514,0.22532655,-0.25506923,-0.37971473,0.06561538,-0.28778055,-0.46985975,-0.89223367,0.32175753,-1.0065039,0.50608784,0.18121886,-0.28725478,0.08416658,0.32682195,0.19151741,-0.18584482,-0.088937156,0.10028332,-0.1419449,-0.030334687,-0.0069440603,-0.18665385,-0.5430039,-0.79608303,0.05435351,-0.60700065,-0.27762544,-0.27934,0.22246428,-0.4105216,0.0075984946,-0.06767613,0.70201254,-0.5966124,-0.29286557,0.20585035,-0.096193366,0.6288424,-0.58595467,-0.19509935,-0.29369453,-0.0950435,-0.15057828,-0.12744687,0.35509205,0.3177502,0.38317132,-0.009761676,-0.3969262,-0.26054773,-0.06321262,0.1360066,0.44454047,-0.07018328,-0.5847659,-0.25747183,0.14802994,0.012807672,0.22351821,-0.055876583,-0.531956,0.07361307,-0.27190128,-0.21661122,0.47112635,0.54759234,-0.36779192,-0.35480273,0.092384376,0.3612008,0.136856,-0.12799564,-0.0655638,0.117069125,-0.5983489,-0.124843776,0.2618342,-0.37783194,0.7125853,-0.20044951,0.09987458,0.75137764,-0.28164676,-0.022648096,-0.119399995,0.033460107,-0.21000521,-0.1075213,-0.3683858,0.46713397,-0.5779913,0.12176696,-0.22229493,0.8095813,0.1485161,-0.6917823,0.21577562,-0.59750706,0.18010537,-0.11934925,0.60603946,0.7326772,0.2815393,0.6449943,0.6304882,-0.33752576,0.22569157,0.08275558,-0.42996383,0.2006098,-0.43810812,-0.04354036,-0.35452166,-0.19317968,-0.26828706,-0.19519466,-0.31876436,0.5114108,-0.6096551,0.08560421,0.15966208,0.87480736,-0.17566256,-0.15115198,0.61331344,1.1026434,1.1637887,0.07851285,1.3095431,0.40744007,-0.21420346,0.24946064,0.039737526,-0.8004233,0.38083628,0.6291538,0.14522552,0.37484884,-0.016493052,0.03840435,0.33828723,-0.717261,0.17550667,-0.40041253,0.31083035,0.12797292,0.03835811,-0.72549766,-0.36177778,-0.066015154,0.11718563,-0.060901117,0.28436592,-0.12089663,0.28899148,0.035780217,1.6382914,-0.17805262,0.121738315,0.15013413,0.60020906,0.18377894,-0.056234896,0.017529873,0.24538553,0.27253133,0.3452871,-0.67481995,0.10675343,-0.33199513,-0.40398595,-0.31660298,-0.37301478,0.2369871,-0.030954799,-0.5050564,-0.24111187,0.041734412,-0.3742241,0.48403963,-2.207467,-0.19061309,-0.17551184,0.06948849,-0.37796286,-0.1583148,-0.005313953,-0.47787547,0.57685506,0.52079266,0.5426396,-0.7712801,0.09965768,0.54806,-0.5726855,-0.022819469,-0.6706927,-0.15618828,-0.2310722,0.59368205,0.1106833,-0.19123976,-0.014066647,0.25428924,0.43983746,0.058610737,0.16758084,0.23930408,0.30650613,-0.07011801,0.44256556,0.048894692,0.27781403,-0.41167542,-0.17594413,0.4977529,-0.1328965,0.376116,-0.3457372,0.16208644,0.5219659,-0.75134295,-1.0232807,-0.6236577,-0.7013127,1.1409186,-0.36996314,-0.58311814,0.30951035,0.18449746,0.02138122,-0.08360133,0.5961633,-0.23634668,0.3415784,-0.73719853,0.013704021,0.08196629,0.22576888,0.099054754,-0.072284326,-0.45118448,0.7843656,0.020457076,0.102489,0.357924,0.333599,-0.4293621,-0.93246984,0.10754356,0.9957838,0.46119747,0.129873,-0.42638135,-0.24658291,-0.12481294,-0.17000179,-0.027536387,0.41827568,0.9793553,-0.16452146,0.095480226,0.27436888,-0.0648699,-0.023019241,-0.05369993,-0.42480478,-0.004354082,0.06788688,0.72096854,0.798801,-0.1990096,0.43653026,-0.21911184,0.431906,0.036460366,-0.47656956,0.47487366,1.295018,-0.05960214,-0.17496628,0.7520757,0.5202019,-0.43170223,0.6044493,-0.7375102,-0.45134577,0.46897283,-0.095400296,-0.6370338,0.19589572,-0.45389786,0.056035925,-0.91432804,0.51895547,-0.20488904,-0.26130196,-0.6856957,-0.18898274,-3.7137775,0.36404297,-0.2855653,-0.14533934,-0.14104837,-0.08713143,0.3226898,-0.6443415,-0.61256224,0.30761698,0.005018167,0.5132626,-0.11934361,0.1456338,-0.17325349,-0.227031,-0.2705878,0.30151203,0.31168392,0.23233359,-0.17878999,-0.5355234,-0.02873204,-0.29039335,-0.5072635,0.09301996,-0.6611313,-0.6642399,-0.46810874,-0.72186965,-0.40137252,0.6918332,-0.043134045,0.03650582,-0.17986305,-0.009123241,2.8789043e-05,0.2801461,0.30800137,0.4667364,-0.035904545,-0.088240646,-0.22880723,-0.18824898,0.32048467,0.02703487,0.31673887,0.38757387,-0.13983135,0.24627213,0.7155462,0.5851145,-0.26107812,0.8667958,0.7168614,-0.15799963,0.17732161,-0.100981824,-0.3320097,-0.6602228,-0.39802817,0.09680409,-0.32589737,-0.5195177,0.060869288,-0.23279332,-0.62235016,0.80043125,-0.17422302,0.32085222,-0.06611701,0.031487603,0.42530814,-0.32249957,-0.13880755,-0.16248083,-0.06675344,-0.69420034,-0.47294354,-0.71393156,-0.60602236,0.03752521,1.0035058,-0.056256324,-0.24082334,0.079993,-0.2939473,0.00576519,-0.07526266,-0.058125228,0.19147782,0.36457077,0.15906961,-0.9101282,0.6272673,0.2323969,-0.01711682,-0.42101946,0.37413415,0.7237656,-0.6742413,0.5752799,0.46361613,0.12573043,-0.20434983,-0.673932,-0.45162544,0.09689955,-0.26488984,0.44893932,0.094627716,-0.7637868,0.49552956,0.21082835,-0.64097214,-0.8919964,0.5886046,-0.096841164,-0.21164083,-0.049583506,0.51731217,-0.060567122,0.1520692,-0.45849583,0.27641836,-0.46053484,0.11629615,0.27628872,0.012928896,0.37021258,-0.2012077,-0.21986957,-0.8434885,0.20494421,-0.44586077,-0.40277842,0.32589287,-0.06277323,-0.37808502,0.33577514,0.012639731,0.37766218,-0.09098852,0.080234356,-0.04834209,-0.36435166,0.45450833,0.54733205,0.53798956,-0.51572984,0.7299836,0.054812323,-0.08789978,-0.26239216,-0.036563158,0.38340685,0.10797355,0.3526789,0.048993807,-0.042168453,0.31798574,0.88285565,0.15656962,0.6444629,0.26266375,-0.0038210948,0.36628306,0.00900285,0.12260753,0.039507296,-0.56688225,-0.0036835074,-0.25701797,0.06339007,0.5891097,-0.0941939,0.3817732,-0.19310562,-0.29305282,0.18454361,0.34869394,0.10348076,-1.213075,0.21018012,0.17522903,0.59570116,0.7323198,0.043556023,-0.0069415173,0.86791116,-0.31466463,0.029988103,0.45146748,0.13323462,-0.5663068,0.8036633,-0.70861006,0.38383052,-0.13362604,0.05085565,-0.14150046,0.2559103,0.36188698,0.7089241,-0.15295254,-0.047737718,-0.26347488,-0.18564594,0.21621484,-0.540093,0.32346895,-0.3073829,-0.5681074,0.6568065,0.4907359,0.13322873,-0.079539776,-0.06116295,-0.069029175,-0.18313412,0.40817067,-0.026275346,-0.11548557,0.06442162,-0.72803,-0.1050451,0.5557149,0.14411661,0.19388713,0.057066146,0.058728784,0.13841286,-0.3007269,-0.20317383,0.028172761,-0.9697558,-0.06476381,-0.39905754,-0.35247675,0.5741802,-0.6112371,0.24480677,0.009225105,-0.0156167,-0.63552564,0.07620182,0.09261272,0.7260254,0.1142743,-0.20075583,-0.21562712,-0.013677504,0.11969113,-0.2756802,0.06715586,-0.2690479,0.013457951,-0.68106,0.7468485,-0.14516486,-0.5090528,0.032388944,-0.14001675,-0.18992585,0.71167517,-0.050413072,-0.27833235,-0.12619282,-0.18391053,-0.11802914,-0.21233672,-0.03793506,0.31312472,0.2045223,-0.058947522,-0.17670906,-0.01023497,-0.025173217,0.62795836,-0.22203256,0.38757297,0.30768695,0.21300496,-0.37576437,-0.031741094,0.11940267,0.53038925,0.17093472,-0.038744528,-0.018477896,-0.285601,-0.32813475,0.003061076,-0.08902701,0.23243974,0.12213731,-0.3359793,0.9518666,0.16173786,1.3831749,0.006977121,-0.4535999,0.09354351,0.5036114,0.010977815,-0.10619768,-0.45170748,0.9582378,0.6696906,-0.115371644,-0.319227,-0.42401972,-0.05009063,0.27885965,-0.2426846,-0.065986715,0.024539294,-0.6778336,-0.3382819,0.23314519,0.4843603,-0.0012300014,-0.16148812,0.100694805,0.1650457,0.10421076,0.525478,-0.35276666,0.04168423,0.41387033,0.3309135,-0.012704412,0.21276076,-0.25644058,0.35504702,-0.5600961,0.17331143,-0.514853,0.22750835,-0.202909,-0.3759664,0.31461594,-0.016756365,0.58502406,-0.28302765,-0.12264276,-0.14049904,0.69559234,0.20829014,0.14074807,0.75091743,-0.30336222,0.17160143,-0.010085049,0.56835407,1.3055766,-0.6006631,-0.08813393,0.06399154,-0.24336658,-0.7276352,0.6691904,-0.5056712,0.21761853,-0.034087855,-0.37860146,-0.581863,0.124186784,0.108307295,-0.13914204,0.056142733,-0.5367173,-0.16566205,0.35631815,-0.22296107,-0.22466664,-0.5236802,0.22869761,0.49045467,-0.20043118,-0.35391286,0.1239602,0.15395771,-0.26116848,-0.64401144,-0.106312715,-0.27353606,0.29763278,0.12028333,-0.34255943,0.052235257,0.04278585,-0.5690215,0.079492025,0.20228177,-0.371737,0.03221177,-0.07932521,0.059692513,1.0773674,-0.33423916,-0.20049123,-0.70735407,-0.53544575,-1.1498666,-0.22093163,0.87681025,0.114736296,0.14750026,-0.5421476,0.15485537,-0.15169916,0.21243036,0.044871926,-0.50773984,0.30264243,0.07881489,0.59862006,-0.08962801,-0.75731045,0.1882879,0.10437769,0.11677904,-0.6372297,0.47356665,-0.12332487,0.8226056,-0.0044244477,0.0954772,0.23768596,-0.44729593,0.16794656,-0.17228025,-0.37678966,-0.70900106,0.19998892,371 -828,0.26363564,-0.10444322,-0.5769257,-0.20922524,-0.17679816,0.13084625,-0.4289472,-0.113573425,0.15387958,-0.46266463,-0.14526515,-0.19190587,-0.044894207,0.50493544,-0.09700615,-0.8302627,-0.27063212,-0.053076137,-0.4553859,0.49772015,-0.4899752,0.24732168,0.0770815,0.33265552,-0.018455481,0.28423822,0.3733828,-0.26726344,-0.11854198,-0.06850278,-0.15195619,0.28733465,-0.8168526,0.16543142,0.17678948,-0.39987993,0.12779139,-0.28468102,-0.19711995,-0.76630515,0.5207725,-0.9740855,0.6216312,0.09787033,-0.10088877,0.04497582,0.26440737,0.32251838,-0.18969357,0.18485759,0.36737934,-0.5143587,-0.059247147,-0.21415854,-0.32447544,-0.60575444,-0.7284872,-0.01707536,-0.6809347,-0.28257355,-0.2621911,0.31725854,-0.4786612,0.046989594,-0.28208598,0.40476927,-0.3833399,-0.3243637,0.31162444,-0.27587786,0.5470037,-0.47856054,-0.21907514,-0.17200458,0.36117443,-0.33613852,0.05872522,0.22487675,0.41825005,0.56889874,0.078144826,-0.22135895,-0.29545364,-0.101833306,0.30106544,0.47242022,-0.18819518,-0.32394272,-0.18790285,-0.049716055,0.18900554,0.4556282,-0.27339047,-0.36548495,0.14030226,0.1769625,-0.20553535,0.31114703,0.29039714,-0.41776428,-0.51988214,0.27819085,0.36072335,-0.012723473,-0.1243969,0.01309063,0.20023681,-0.5339637,-0.2092218,0.62347424,-0.15145016,0.5113831,-0.10668627,0.29266497,0.9200193,-0.15771592,0.0047085085,-0.49707213,-0.16793175,-0.17005973,-0.23483725,0.022480875,0.27449104,-0.53930724,0.18949513,-0.2511662,0.79699516,-0.08669859,-0.781799,0.21545202,-0.6642246,0.06656281,-0.13461791,0.857168,0.72182447,0.07663456,0.36832032,0.8737766,-0.51212245,-0.032869406,-0.038021367,-0.55361754,-4.009406e-05,0.040614445,0.025231093,-0.40407977,-0.037968915,0.04578486,0.14925571,-0.030347593,0.33147952,-0.40399346,0.27699766,0.07093161,0.801857,-0.38371563,0.043031286,0.6438213,0.96050006,0.93232447,0.06243692,1.4385881,0.21782674,-0.19959952,0.18838435,-0.49824128,-0.5487797,0.23732138,0.5228531,-0.17548436,0.32874003,0.051340748,0.15148284,0.5001243,-0.38001713,0.030228177,-0.15229174,-0.03360917,0.00069538754,-0.0074448236,-0.43749252,-0.18653661,-0.03826458,0.017804405,0.14325859,0.19200842,-0.14998804,0.55580664,0.17866527,1.2537065,-0.25902656,0.3511548,0.06731566,0.25382772,0.02863091,0.04388086,0.03420484,0.35204384,0.47766104,0.05413446,-0.7042168,0.0065976568,-0.33354864,-0.38103566,-0.28156167,-0.31219634,0.058444798,0.02763915,-0.47087345,-0.11130554,-0.03431188,-0.43222857,0.30529884,-2.3976133,-0.19052243,-0.30299485,0.13778208,-0.16501729,-0.3141988,-0.25798437,-0.5577252,0.45585606,0.46306476,0.36596504,-0.61097145,0.39575765,0.5656757,-0.37193063,-0.22400306,-0.68424064,-0.04612724,-0.22745074,0.40502426,-0.10727694,-0.28435284,-0.35688075,0.33615848,0.6168346,-0.031032493,-0.00703234,0.2551817,0.51381874,0.26721045,0.6404695,0.17102218,0.6105857,-0.2062919,-0.29861662,0.3997217,-0.20606877,0.30223915,0.067207314,0.042092633,0.33956409,-0.5135412,-0.9584972,-0.8039406,-0.87873346,1.0810784,-0.47062543,-0.31967324,0.30853352,0.12353003,-0.35891733,-0.053927105,0.6490138,-0.35891247,0.16217774,-0.8610415,0.18000148,-0.2627264,0.36950615,0.033085965,0.03861693,-0.49928188,0.558572,-0.15851985,0.16074018,0.48045754,0.11288903,-0.27914003,-0.5961929,0.077459395,1.1578428,0.25465512,0.18566854,-0.18082325,-0.2901206,-0.028765837,-0.0915971,0.10668977,0.36256528,0.73652935,0.12923567,0.17259087,0.34617546,-0.16991083,0.04777349,-0.16146298,-0.3180786,-0.027362509,0.12257373,0.5494725,0.4474628,-0.020966323,0.33711037,-0.0964623,0.18060885,-0.032187693,-0.3636903,0.5444229,1.0008316,0.035943016,-0.06862165,0.84702665,0.606109,-0.4425145,0.520019,-0.62185663,-0.34342453,0.6632026,-0.18872683,-0.63363427,0.06912902,-0.44120786,-0.00586023,-0.9738148,0.114469975,-0.24462934,-0.4149522,-0.51018286,-0.11445666,-4.4062924,0.18766485,-0.39406145,-0.23255853,-0.17329395,-0.22880019,0.5596345,-0.67708445,-0.6668367,0.112184845,0.13122474,0.43653154,-0.1768656,0.19579627,-0.39725092,0.09785526,-0.05615298,0.3134,0.36891744,0.014725651,0.060306504,-0.5042544,0.16839594,-0.30610967,-0.5404052,-0.012434085,-0.4831679,-0.51800966,-0.1462344,-0.58959,-0.47199497,0.72166777,-0.45364448,-0.1033136,-0.2512655,0.09226346,-0.108974196,0.5218553,0.24718527,0.33527064,0.10073625,0.06521894,-0.43294123,-0.25835857,0.35901678,-0.048399646,0.21573555,0.38369146,-0.15442966,0.23176102,0.3643717,0.51046944,0.15629753,0.8875084,0.51105374,-0.042773504,0.19145435,-0.37667462,-0.21664578,-0.94129425,-0.5316591,-0.23896022,-0.38621843,-0.7033368,-0.15955885,-0.3316746,-0.8324334,0.64921016,-0.12111244,0.20376302,-0.086854406,0.30919147,0.21419592,-0.1988657,0.043061525,-0.102033086,-0.12837328,-0.54020786,-0.38727692,-0.77605885,-0.70394516,0.013065268,1.0000948,-0.087944776,-0.0122231245,0.079004884,-0.4884011,-0.035769474,0.2993492,0.32124805,0.36579132,0.6811743,0.04920815,-0.7794803,0.47337088,0.029962068,0.00842655,-0.6156363,-0.15519762,0.78644896,-0.80152655,0.7186165,0.39516136,0.13271171,0.04585662,-0.43613973,-0.44050142,0.008906906,-0.35848364,0.5461344,0.24808191,-0.51788026,0.41181985,0.12492537,0.0075908103,-0.76497513,0.45350528,-0.015351675,-0.14990284,0.2209803,0.46705046,-0.14724554,0.08968961,-0.09124448,0.3113002,-0.28247583,0.27712217,0.3313779,-0.032534495,0.53075314,-0.13731778,-0.1673612,-0.7123762,0.19494434,-0.48566994,-0.23250253,0.04943191,0.032585364,-0.047147736,0.3253648,-0.21119773,0.5097505,-0.17019361,0.18857129,0.09109044,-0.32615653,0.11240044,0.501223,0.06688158,-0.4445097,0.80117583,0.07496381,-0.2311997,-0.3040978,0.11770156,0.48284325,0.13435064,0.3153855,-0.29556546,-0.36029562,0.37378028,0.68661374,0.15880239,0.44647726,0.25402543,-0.012960981,0.48677957,0.17035069,0.03740721,-0.071075365,-0.36400974,-0.10310497,-0.07024176,-0.019080793,0.4738616,0.1031669,0.5285405,-0.20813312,-0.16690612,0.24156465,0.33160427,-0.17681675,-0.780335,0.33380723,0.28702036,0.546665,0.6465788,0.02915132,0.09472983,0.5089159,-0.5293587,-0.11860173,0.37602195,0.25147116,-0.51757264,0.86835074,-0.4995965,0.28263938,-0.15208048,-0.042486954,-0.022518495,0.15742292,0.23301357,1.0967668,-0.20052786,-0.0024694402,-0.18470664,-0.032253236,0.18622096,-0.12613729,0.13495708,-0.49861237,-0.37748566,0.57188654,0.40352866,0.44162527,-0.21507667,-0.20571733,0.103937715,-0.058942735,0.13417661,-0.10983794,0.000928099,0.13216181,-0.6409759,-0.30760857,0.5807718,0.068029635,-0.0025620784,0.05017972,-0.4348874,0.19353043,0.00017076482,-0.1258849,-0.06849071,-0.6570699,-0.037236422,-0.46147737,-0.5523383,0.30895963,-0.7402268,0.36720097,0.1436881,0.041211527,-0.31764263,0.021912793,0.2524449,0.8699119,0.149845,-0.09983364,-0.29985693,-0.009812991,0.23586889,-0.19411038,-0.02225081,-0.37503853,0.065077655,-0.7296577,0.54708976,-0.15015425,-0.3726574,-0.037743647,-0.18761621,-0.070141114,0.4232738,-0.10964233,-0.077906966,0.22055583,-0.11048571,-0.24817686,-0.11160946,-0.4184607,0.19696581,-0.06931233,0.119612776,-0.12691511,-0.09825545,-0.26895502,0.52585584,0.11182255,0.09602228,0.2553464,0.040243983,-0.42566124,-0.077050485,-0.043947857,0.4533395,0.18015473,-0.05015539,-0.10257528,-0.44259873,-0.06848026,0.2663447,-0.054654937,0.2678896,0.028380485,-0.5372505,0.84222406,0.15557514,1.0394114,0.20963486,-0.40044406,-0.06657608,0.4974853,-0.018039053,0.08300879,-0.40528622,0.9430523,0.568681,-0.2053191,-0.21865447,-0.3824904,-0.1964361,0.18936105,-0.18050438,-0.02738001,-0.23859859,-0.79357463,-0.33243528,0.2150269,0.30836645,0.1783884,0.081057824,0.0903636,0.05503648,0.08399477,0.67722005,-0.5522225,-0.06553027,0.2127965,0.22603251,0.02925995,0.3101857,-0.21119408,0.60788,-0.6541286,0.23924641,-0.5860196,0.06302812,0.08287931,-0.22664537,0.22612941,-0.09793219,0.45807147,-0.10023055,-0.2180296,-0.16622923,0.7991707,0.09250487,0.27730256,1.0842062,-0.29630658,0.07283495,-0.069697864,0.42023864,1.5862554,-0.2344778,0.11632788,0.26571837,-0.18443692,-0.43762556,0.29581574,-0.469321,-0.013435234,-0.058660835,-0.6128071,-0.23171718,0.12387395,0.025631748,-0.07659928,0.08696561,-0.3591542,-0.26596734,0.54922754,-0.29405764,-0.3015156,-0.15693413,0.44052362,0.7972602,-0.39629355,-0.38880825,0.02619349,0.43336022,-0.34481385,-0.37945077,0.056819785,-0.26231384,0.47362694,0.29471514,-0.34454274,0.20332642,0.32082722,-0.3405331,0.008213538,0.45978656,-0.29788372,-0.010064691,-0.17384176,-0.21084587,1.1831857,-0.18086255,-0.0778107,-0.6598224,-0.33994094,-1.0237378,-0.3167021,0.44490144,0.23490278,0.088784985,-0.18083425,-0.008433993,-0.122034825,0.14026897,0.22237349,-0.6284515,0.42222133,0.10163107,0.7956009,-0.10061881,-0.72750306,0.03223002,0.18318294,-0.14059478,-0.58335716,0.37535933,-0.20788427,0.71312445,0.16884331,0.11684343,0.1402302,-0.442085,0.22994907,-0.33014354,-0.26702335,-1.1050473,0.019657055,373 -829,0.41962647,-0.24215575,-0.4231162,-0.07121038,-0.2287366,-0.026348716,-0.09918063,0.54684407,0.11272981,-0.25240216,-0.16269861,-0.21478426,0.08625043,0.41847536,-0.14124256,-0.41189805,-0.15663813,0.17687404,-0.50174457,0.4236226,-0.42373767,0.0318412,-0.045377746,0.4370391,0.15096708,0.29919618,0.017456122,-0.047366813,-0.14318216,-0.14622818,-0.21856058,0.23243602,-0.59346336,0.17192058,-0.08690069,-0.3421227,0.014468848,-0.6642474,-0.35128596,-0.64152855,0.25533667,-0.90524364,0.36868277,0.0062858663,-0.20923813,0.51585937,0.007966776,0.44105956,-0.24352391,-0.13004543,0.19492102,-0.1489572,0.12019012,-0.31985584,-0.06798258,-0.033087257,-0.36068806,-0.0771467,-0.17714667,-0.41450545,-0.31787464,-0.01503545,-0.30784228,0.042968046,0.04806937,0.29918584,-0.45723245,0.22935577,0.12633294,-0.2246209,0.2456451,-0.434618,-0.14471276,-0.11994123,0.306399,-0.30436492,-0.20347846,0.4192067,0.14369173,0.19146085,-0.13881211,-0.016526729,-0.2766452,0.0029722068,0.15939057,0.5991043,-0.25216365,-0.29050934,-0.004367826,0.024380123,-0.0009909669,0.23517215,0.07282208,-0.23687315,-0.19392188,0.0061786473,-0.21763448,0.17034025,0.3603343,-0.3101643,-0.20456219,0.35246134,0.59081346,0.17791522,-0.19185525,-0.2531718,0.016744621,-0.4763023,-0.106176965,-0.041785568,-0.16555937,0.5844604,-0.08584232,0.25319594,0.69694924,-0.22180438,-0.018907085,-0.08474958,0.04461323,-0.049734652,-0.27354947,-0.32794297,0.3174813,-0.28578413,0.18808158,0.005493954,0.73843384,0.20936291,-0.6691475,0.49695277,-0.6082843,0.14331114,-0.21299629,0.3390499,0.40763247,0.5994348,0.34554765,0.5719581,-0.48238218,0.16870148,-0.18225265,-0.38105965,0.14968969,-0.1304275,0.0804388,-0.45605895,-0.09904886,-0.017439136,-0.202457,0.30732566,0.08940182,-0.40916118,-0.0080032,0.23319013,0.7931904,-0.2707924,0.036672294,0.5573152,1.0824825,0.86735445,0.0292712,0.86926943,0.23903972,-0.21861525,0.32710195,-0.15022703,-0.71629435,0.2400593,0.5039503,0.035842817,0.14856005,0.20543201,-0.005293722,0.3360436,-0.34484127,0.043413386,-0.19690435,0.06101479,0.3033131,-0.08993742,-0.3978955,-0.28806928,-0.14138657,-0.01775009,-0.2693214,0.2512659,-0.13738938,0.40709043,0.09752182,2.041231,0.14419085,0.13093422,0.119496174,0.56882304,0.15111764,-0.064672105,-0.16006117,0.44609317,0.26857364,0.24052083,-0.4242293,0.29675904,-0.05893604,-0.4611107,0.00988694,-0.39383888,-0.006790817,0.076308206,-0.43238294,-0.08256304,-0.11049944,0.0022093505,0.53417397,-2.9519968,-0.098296724,-0.008013062,0.45320186,-0.25399894,-0.34805176,0.031130895,-0.4148133,0.31011865,0.32609007,0.5667159,-0.61298436,0.34424296,0.29831377,-0.58778685,-0.14197898,-0.53017396,-0.1590534,0.011248848,0.21076006,0.017715072,0.044240624,0.0005022486,-0.007502382,0.40062007,-0.054653924,0.015328073,0.2978033,0.35989463,0.05563861,0.62773156,-0.12642139,0.35774836,-0.35586998,-0.22125165,0.17805177,-0.21471472,0.22274369,-0.0660811,0.07684178,0.3786117,-0.25591344,-0.946544,-0.7279174,-0.17874797,1.276076,-0.30838308,-0.40965214,0.31000054,-0.27718756,-0.26625225,-0.20797984,0.29116192,-0.0067681274,-0.0650567,-0.7357388,0.047658045,-0.10821357,0.21332575,0.15430248,-0.29770836,-0.39263666,0.5654754,-0.14521827,0.49411932,0.42170724,0.012421156,-0.027746096,-0.19094509,0.027755693,0.67152375,0.24702889,0.1426653,-0.18438636,-0.20476924,-0.16603373,-0.07759546,0.08240603,0.3665718,0.53921217,-0.056744333,0.09411526,0.20878588,-0.11285583,-0.0040284446,-0.18071687,-0.21565163,-0.037027482,-0.07194232,0.530832,0.76630956,-0.07670797,0.38228163,0.02407361,0.27002907,0.04349551,-0.36420354,0.2768683,0.821743,-0.05544689,-0.19526684,0.3989013,0.5069907,-0.28427118,0.31092742,-0.44567463,-0.12590365,0.41918692,-0.17532992,-0.45924637,0.21736409,-0.16109604,0.108453095,-0.5869159,0.21444412,-0.35226965,-0.42936635,-0.42735913,-0.11748185,-3.3181257,0.24506299,-0.22737092,-0.36213875,0.079099126,-0.15277778,0.08166645,-0.7484047,-0.44448698,0.16958348,0.084291995,0.633064,-0.0959532,0.0052282587,-0.2849134,-0.2553893,-0.31952503,0.04592591,0.09282895,0.3170389,0.026194364,-0.41889644,-0.13569732,-0.059743565,-0.38754272,0.16124727,-0.66792226,-0.26287004,-0.054447968,-0.45406875,-0.40409002,0.5882842,-0.33378196,0.03746411,-0.06334969,0.011568014,-0.19947648,0.13281882,0.19783504,0.16389965,-0.05841024,0.028332775,0.062269967,-0.2620375,0.366596,0.077755064,0.30793598,0.096553765,-0.102279134,0.09168041,0.50368065,0.5702499,0.0037099272,0.76045924,0.43333685,-0.10054956,0.17431171,-0.42321673,-0.27551773,-0.49410942,-0.28862274,0.07399116,-0.2950208,-0.42550454,-0.08164534,-0.31354502,-0.6524515,0.5992548,0.021744633,0.010204424,0.10038275,0.20473723,0.5303719,-0.23625867,-0.1189301,0.019440634,-0.04512304,-0.7750456,-0.09364072,-0.54392976,-0.4069049,0.07841111,0.85875803,-0.26854846,0.15600246,0.025288343,-0.22437839,0.04185289,0.1493633,-0.23291962,0.25871027,0.48341295,-0.21848035,-0.59707505,0.30792853,-0.09638542,-0.32609764,-0.714909,0.41208354,0.49693406,-0.6731821,0.70853215,0.25681022,0.01438914,-0.0034513872,-0.42947736,-0.44878468,-0.15231293,-0.13196237,0.2239406,0.09310102,-0.77947974,0.226016,0.43144354,-0.38268974,-0.60090137,0.51560086,-0.106232785,-0.47771516,0.050658137,0.13081847,0.13828483,-0.10057708,-0.014387831,0.18316452,-0.4327244,0.27554372,0.19314058,0.018349776,-0.009806282,-0.08771237,0.061156314,-0.6615651,0.1970557,-0.14683096,-0.35609365,0.40188417,0.089273654,-0.019340781,0.146945,0.17583126,0.3040391,-0.2467351,0.07240299,-0.100941785,-0.31476724,0.43639624,0.3551928,0.45918655,-0.5211466,0.53574365,-0.037221164,-0.0445251,0.035840508,-1.6490618e-05,0.389464,-0.042416263,0.2966024,-0.12975852,-0.30354193,0.15575044,0.5055741,0.23637593,0.45534372,-0.10600128,0.054879773,0.2291594,0.14409834,0.1912388,0.07858941,-0.5958707,0.24038602,-0.19279158,0.08028663,0.47520903,0.13196409,0.20827074,-0.113540046,-0.34061074,0.01214428,0.23619036,4.9407285e-05,-0.9430244,0.41061744,0.1544214,0.73359674,0.40048265,0.05082062,-0.05309176,0.79325414,-0.14517182,0.108798005,0.16288428,-0.0020825714,-0.5412918,0.5373078,-0.75547504,0.45896408,0.19268398,-0.07650063,0.02612281,-0.002295509,0.32276446,0.50180084,-0.25798586,-0.078671396,-0.016362377,-0.4020164,0.0839909,-0.51701975,-0.024243861,-0.73070604,-0.24385327,0.44274127,0.6023697,0.35036543,-0.1436802,0.05788913,-0.0035325864,-0.09701892,0.2255677,0.10915189,0.14848013,0.2262553,-0.74618083,-0.06702434,0.63729835,-0.358958,0.25387067,-0.1327666,-0.18122248,0.45729876,-0.12079116,-0.1938078,-0.057521153,-0.5518167,0.3044514,-0.36668798,-0.2912588,0.35614172,0.1181913,0.28634346,0.16777702,0.029876495,-0.14126165,0.6164086,-0.03497117,0.9719487,-0.008684439,-0.2426774,-0.54815215,0.24814671,0.0420972,-0.0067120045,0.18949284,-0.38595986,-0.14040858,-0.39426923,0.35960928,0.0906279,-0.26561937,0.05950415,-0.1137265,0.05781843,0.67640954,-0.106326036,-0.14212856,-0.37984666,-0.15337278,-0.32723954,-0.25083992,-0.12550856,0.19206898,0.19439267,0.10306406,-0.04400715,-0.04308887,-0.12744214,0.55130345,-0.032922026,0.557801,0.07304668,0.07543903,-0.12665386,-0.32391575,0.015416066,0.4050922,-0.11716338,-0.155834,-0.3352814,-0.49146923,-0.20889823,0.17466158,-0.11329385,0.48813185,0.13753115,-0.017465798,0.692378,-0.31368807,0.9422929,-0.026361967,-0.26484752,0.24360116,0.48409274,0.07788659,-0.045205098,-0.2754085,0.79869866,0.532309,0.02479322,-0.075528495,-0.27371812,-0.20528036,0.03622684,-0.18019243,-0.09493139,0.06118913,-0.47566566,-0.14408019,0.10581293,0.19720592,0.47681007,-0.0642567,0.20323335,0.34267482,0.091436334,0.12289411,-0.21668117,-0.424257,0.29357502,0.23485851,-0.09308851,0.0578792,-0.51518273,0.44566572,-0.24349074,0.14514405,-0.45425358,0.110213935,-0.107945144,-0.20133658,0.1324011,-0.044272203,0.36415043,-0.2478661,-0.24857013,-0.14650021,0.46991834,0.28807762,0.2212904,0.5286606,-0.22335784,0.08268917,-0.0641278,0.4169136,0.6006146,-0.3513292,-0.1355988,0.4920117,-0.2949657,-0.47312275,0.33759192,0.02486004,0.044603035,0.072497346,0.08377299,-0.67079955,0.22342066,0.067678,-0.13404225,0.029425493,-0.6325214,-0.187819,0.3167042,-0.39740613,-0.2607101,-0.54417396,0.24968094,0.6469534,-0.27123895,-0.3165766,0.10799948,0.079679824,-0.08176511,-0.24138723,-0.11106271,-0.3471043,0.14686401,0.09217157,-0.36543342,-0.20221984,0.10207832,-0.259901,0.13493277,-0.07151113,-0.26745924,0.12944013,-0.31168035,-0.049918164,1.0259782,-0.2645416,0.023188373,-0.5538453,-0.39743993,-0.6942982,-0.33791542,0.5890601,0.0403035,0.00042966506,-0.441681,-0.07091777,0.059324462,-0.29465023,-0.31038198,-0.3376119,0.44714728,-0.0050350055,0.35831547,-0.16200985,-0.7154847,0.34460554,0.041040253,-0.09034085,-0.6090438,0.48470488,-0.107448466,0.8313079,-0.111156486,0.04720347,0.25475705,-0.22631657,-0.190396,-0.30166072,-0.33610806,-0.54443043,0.005555878,374 -830,0.24982458,-0.40945628,-0.41597423,-0.044439554,-0.04474616,-0.08159276,-0.18722029,0.61466116,0.12752877,-0.6263152,-0.33669296,-0.17554994,0.1347147,0.51251674,-0.25644943,-0.5393891,-0.1111199,0.1953137,-0.48595396,0.66275793,-0.36876956,0.13430424,0.15718968,0.46368885,0.060284484,-0.0040046684,0.38649294,-0.031968106,0.13534343,-0.11159209,0.08182072,0.21804857,-0.7298891,0.21355684,-0.14815246,-0.6900138,0.06241183,-0.56294674,-0.28530478,-0.76068753,0.26803753,-0.9634099,0.7927095,0.28971723,-0.34694242,0.045450386,-0.05403887,0.45302972,-0.3587514,0.13234241,0.16452666,-0.08639627,-0.057513148,-0.110717595,-0.08904773,-0.35793796,-0.58314383,0.11574483,-0.43780437,-0.014408509,-0.010009806,0.23512666,-0.15310252,0.15160252,-0.3373351,0.42489684,-0.6268112,-0.1974718,0.25363386,-0.09225166,0.5924177,-0.6713915,-0.15802474,-0.24217944,0.15736155,-0.39310265,-0.34757307,0.14455189,0.3862438,0.51489455,0.038823888,-0.29442585,-0.18038552,0.00094045204,0.039655637,0.47325668,-0.14788128,-0.6105147,-0.20691603,-0.02518343,0.3171099,0.1766665,0.114608325,-0.53667784,-0.09977746,-0.15106149,-0.20600252,0.24098007,0.49096295,-0.4181441,-0.199134,0.15755244,0.65978414,0.19758004,-0.06325481,0.09669549,0.076039374,-0.6259432,-0.18758993,0.21242593,-0.37509492,0.7153222,-0.17707582,0.21971522,0.5217867,-0.053994667,0.10944054,-0.054949608,-0.07265537,-0.33802995,-0.33188987,-0.50779057,0.5380602,-0.3425996,0.24259563,-0.42336106,0.6872743,0.11525056,-0.76558965,0.33236733,-0.6495521,0.072047345,-0.1721546,0.6370811,0.61062855,0.34282365,0.35131767,0.63818103,-0.3303138,0.14461814,-0.110669166,-0.26418188,0.055448562,-0.06694856,-0.20663448,-0.5033314,-0.07773133,-0.17308877,-0.14918427,0.07215737,0.52528006,-0.71913594,0.02785707,0.24600725,0.6870115,-0.28850293,0.0036327243,0.7082786,1.2477949,0.9382648,0.12695114,1.5504144,0.23104157,-0.24953596,0.024355173,-0.18960936,-0.6741271,0.21804784,0.603085,0.15166819,0.5244185,0.11765453,0.03773121,0.5155648,-0.62474626,0.14321204,-0.044382017,0.020449324,-0.14582762,-0.18965574,-0.51873046,-0.08041886,-0.0034578096,0.02256535,-0.053864274,0.17229252,-0.27153414,0.33029136,2.2192797e-05,1.5557429,-0.21327937,0.10184193,0.068727344,0.32227707,0.15080081,-0.15613098,0.10885372,0.3068212,0.60699385,-0.008326988,-0.56544024,0.13136421,-0.22947931,-0.61303574,-0.24623097,-0.13569205,0.056266963,0.06660915,-0.54327756,-0.046133686,0.11232375,-0.1822923,0.29954723,-2.4105318,-0.2635149,-0.28936592,0.2869514,-0.2582784,-0.3332085,-0.052223444,-0.32282546,0.57676905,0.49219513,0.4156301,-0.7465835,0.43993017,0.4725882,-0.50133115,0.014507587,-0.75373656,-0.16239347,-0.014264475,0.34449065,0.0039756745,-0.061078016,0.12243318,0.23771472,0.4282889,-0.122524254,0.090317756,0.16251452,0.31401515,0.08283996,0.41749716,-0.0029571753,0.5526115,-0.44975147,-0.25955164,0.37294018,-0.18444264,0.32673785,-0.050355047,0.13746469,0.39874184,-0.5300043,-0.91159177,-0.79397947,-0.68118733,0.84017444,-0.2711312,-0.475938,0.17942633,0.011591415,-0.26274776,-0.053539112,0.7018636,-0.18413782,0.06256551,-1.0663234,-0.12239971,-0.083993524,0.46285948,0.030542716,-0.094031475,-0.77456135,0.60716844,-0.0930034,0.44043866,0.8062399,0.2315671,-0.10760694,-0.63292044,0.026086519,1.0471433,0.37173513,0.16915971,-0.2570975,-0.145732,-0.27041715,0.24697097,0.089630194,0.42170978,0.78006315,-0.08774814,0.022733167,0.24492462,0.17066936,-0.03291543,-0.23074186,-0.39717066,-0.06345882,0.18519153,0.66870433,0.63706285,-0.27326104,0.21593587,-0.3362132,0.6412173,-0.096068166,-0.52044946,0.6200345,0.98796076,-0.04622275,-0.17614628,0.98954344,0.5030597,-0.4016315,0.5669091,-0.86868316,-0.14791799,0.43140173,0.0024790664,-0.38032266,0.2612092,-0.37960768,0.32975116,-1.2017223,0.35388517,-0.37255585,-0.17956126,-0.91866606,-0.18604994,-3.552417,0.2453389,-0.307832,-0.13794418,-0.059163403,-0.26795244,0.37520257,-0.83873844,-0.6518181,0.32846826,0.1786722,0.40485105,-0.1739968,0.13127713,-0.25066045,-0.25847098,0.0041689673,0.32205695,0.3969663,0.1120593,-0.10131901,-0.57968146,0.062509306,-0.104101025,-0.5318318,-0.009020095,-0.774502,-0.3229257,-0.22191077,-0.77653784,-0.25489083,0.5244382,-0.36072063,-0.15043165,-0.101657234,0.20045011,-0.044686932,0.44479287,0.15165293,0.34412405,0.08012411,0.071913995,-0.14877406,-0.1901354,0.17990251,0.19947775,-0.08907626,0.12269833,-0.23701508,0.26926404,0.46712446,0.7014563,-0.19823165,0.7747519,0.81508845,-0.024361035,0.17628737,-0.13012297,-0.25602293,-0.72891706,-0.51848096,-0.1331992,-0.45882866,-0.86779696,0.05615754,-0.23523499,-0.83716327,0.8419113,-0.18285452,-0.030157944,0.20089693,0.24567549,0.43707475,-0.34060225,-0.092731,-0.058876857,-0.1185532,-0.52804035,-0.48581252,-0.65231496,-0.5838774,-0.18817948,1.1819811,-0.09274045,0.25355202,0.24010508,-0.12775593,0.009950727,0.24962316,0.09634098,0.08657827,0.5139296,-0.04420775,-0.7342684,0.40387273,0.2895147,-0.50891596,-0.60586613,0.3223653,0.7345574,-0.76178473,0.66387343,0.24789996,-0.047588304,-0.2721012,-0.63463473,-0.3788283,0.14494397,-0.2696284,0.6633072,0.26643857,-0.56784636,0.42323363,0.35974702,-0.21722406,-0.9026939,0.616043,-0.16269831,-0.2771817,0.075113736,0.41167954,-0.25485685,0.15806833,-0.31450167,0.2602975,-0.38414836,0.09504893,0.32651034,-0.13630913,0.38751897,-0.30623665,0.11123756,-0.9641412,0.30365568,-0.52848023,-0.21392739,0.22089599,-0.007669285,-0.054761246,0.2876592,0.046930343,0.42153922,-0.28612134,0.23075408,-0.016673813,-0.4156387,0.25485682,0.61595124,0.22618848,-0.29770136,0.6075694,-0.09872762,-0.26365513,-0.44489563,-0.04238824,0.52613705,0.06037274,0.3991125,-0.20763223,-0.023113899,0.3788612,0.8509252,0.23109926,0.4083061,0.1928162,0.05849482,0.3013417,0.15720485,0.2269214,0.021116039,-0.5300536,0.06855241,-0.061914742,0.09636489,0.4695859,0.122028776,0.3755919,-0.22690201,-0.4283575,0.16075097,0.26373664,0.29398343,-1.1700615,0.23003815,0.0686682,0.6392718,0.6965122,0.12572691,0.023900678,0.58724636,-0.43039966,-0.012468462,0.39654934,0.07011499,-0.4049135,0.593934,-0.7155282,0.313112,-0.16036175,0.054336082,-0.050819125,-0.28796056,0.4426558,0.9014897,-0.149076,0.13244388,0.02553094,0.054297302,0.066949174,-0.4275445,0.018990526,-0.37842214,-0.46867976,0.7577136,0.5108534,0.47257033,-0.3330727,-0.04847899,0.28086808,-0.11749687,0.2611648,0.02962335,0.14524573,0.14554024,-0.53202385,-0.12642014,0.6960352,-0.04978181,0.038943138,-0.093689166,-0.47598645,0.1858807,-0.14121246,-0.19049962,-0.01049678,-0.9458651,-0.24924423,-0.46598974,-0.22351277,0.612398,-0.27211007,0.14596628,0.007041288,0.067101754,-0.253674,0.44935593,-0.070321575,0.9849084,0.37944195,-0.0143358195,-0.1744558,0.25305775,0.22948901,-0.085728556,0.13180979,-0.37170017,0.024404904,-0.6581485,0.504766,0.15342097,-0.43992576,0.021008397,-0.065050036,-0.055159424,0.4765923,0.022685358,-0.19153555,0.18563293,-0.16911477,-0.23525803,-0.4739059,-0.21044536,0.31765735,0.17393635,0.34480146,-0.07974874,0.027767234,-0.22615556,0.7543605,0.2377839,0.37521413,0.36089802,-0.01716187,-0.47287536,0.023283577,-0.09288671,0.45454368,-0.20923883,-0.27431688,-0.11275568,-0.61470985,-0.22613911,-0.104942046,-0.20858665,0.36787465,-0.087991536,-0.1642946,0.8118474,0.25402853,1.373959,-0.09023342,-0.60310227,-0.016141394,0.5288601,-0.051323224,-0.1605624,-0.45454872,1.0421034,0.5707924,-0.054491464,-0.13167079,-0.13680713,-0.09191513,0.15502451,-0.1394208,-0.073395975,-0.054647427,-0.79225564,-0.18447442,0.12402894,0.49176893,0.04805395,0.022921637,0.32451373,0.21018817,-0.06076966,0.23508193,-0.5490743,0.07362514,0.3300935,0.31060117,-0.02243931,0.07805491,-0.46183667,0.396657,-0.49801013,-0.010377844,-0.55545884,-0.050745994,-0.17455657,-0.28005472,0.15046857,-0.12945858,0.39671576,-0.45141935,-0.19383006,-0.15053457,0.59347826,0.12737413,0.16928507,0.7810159,-0.11706395,0.2481138,-0.05407236,0.52243495,1.290264,-0.6620548,-0.0903612,0.28979996,-0.41076493,-0.47704026,0.36591506,-0.4544654,0.10631446,-0.08209094,-0.33574283,-0.6142506,0.13098122,-0.07980866,-0.22311153,0.0015776964,-0.687555,-0.08514458,0.47921443,-0.3710222,-0.23664005,-0.40868306,0.30544528,0.65949565,-0.2041542,-0.64258796,0.06311899,0.26153925,-0.22967525,-0.6211542,-0.13255395,-0.26600575,0.371554,0.2063021,-0.39409614,0.0021469493,0.10871712,-0.46314645,-0.08523812,0.38173875,-0.3011459,0.11536176,-0.40077734,-0.16224729,1.0812137,-0.1492394,0.019510472,-0.73698425,-0.45280495,-1.1301248,-0.40194893,0.6603554,0.26738974,0.012399043,-0.5652336,0.22713543,-0.19449043,-0.091272146,-0.0019552708,-0.049779475,0.543733,0.15246168,0.8957963,-0.07513456,-0.7955957,0.23267214,0.045851987,-0.03169774,-0.5043845,0.4190618,0.22762226,1.0370563,-0.06694703,5.5852037e-05,0.1741606,-0.6508464,0.13377208,-0.27679026,-0.24487717,-0.80344445,0.049473394,393 -831,0.37134942,-0.3724428,-0.56502086,-0.047969237,-0.21196242,-0.03431101,-0.18209565,0.63821095,0.22500162,-0.29479423,-0.19985123,-0.051484853,-0.031784445,0.3910662,-0.17067462,-0.51248515,-0.26893464,0.3015379,-0.75360924,0.8022814,-0.36540118,0.1752457,-0.2822965,0.59889346,0.39053866,0.19252296,-0.20257998,0.1438277,-0.16783798,0.10164654,0.07252168,0.4137298,-0.51087683,0.12795506,-0.20302196,-0.43458727,-0.21125953,-0.46532485,-0.5520044,-0.8138554,0.39940917,-0.7495832,0.6858881,-0.11501571,-0.3040087,0.20173597,0.16893901,0.39870787,-0.123939246,-0.13389188,0.1471232,0.035903193,-0.04522403,-0.12256127,-0.29038638,-0.45742905,-0.7073118,0.032201495,-0.5570635,-0.05189644,-0.08545879,0.24645412,-0.30522594,-0.18499054,-0.06449043,0.6660172,-0.40367857,0.11915451,0.12366575,0.14689279,0.08293063,-0.6671112,-0.29802704,-0.15339462,0.38581228,-0.1557911,-0.25466654,0.25016478,0.23656048,0.27320346,-0.16097464,-0.09384155,-0.49230528,0.11843667,0.1005871,0.4565247,-0.08493966,-0.6208474,-0.07827092,0.1576883,0.10854753,0.13363259,0.39248034,-0.17691125,-0.07771634,-0.1174773,0.011712611,0.63635355,0.44462153,-0.22069462,-0.39919427,0.3841652,0.7435727,0.43200827,-0.22577085,-0.02096959,0.050185908,-0.6588702,-0.06251093,0.07657786,-0.1535036,0.5669935,-0.09886796,0.2878509,0.48040316,-0.10244733,-0.27117783,0.19651063,0.16261122,-0.11239711,-0.18486536,-0.38623643,0.3168771,-0.2603233,0.11766649,-0.041594177,0.54148746,0.14510506,-0.7573158,0.24987173,-0.64770275,0.16156682,-0.036623597,0.41747418,0.8976707,0.47434807,0.36678752,0.49803355,-0.017358614,0.1440473,0.07658094,-0.2775305,-0.07062683,-0.34350464,-0.12575297,-0.70948976,-0.11030483,-0.20969881,-0.12627454,0.13120554,0.55709773,-0.5646449,-0.1845762,0.19183202,0.8407459,-0.201136,-0.29414275,0.82298094,1.0292455,1.0864615,0.03387622,1.2266613,0.092536725,-0.2761283,0.20204979,-0.47098717,-0.83726543,0.28780255,0.18696956,-1.0770503,0.5481551,-0.05959777,0.062498618,0.46402514,-0.45020723,0.18876171,-0.19027399,-0.04968816,0.27494228,-0.25198781,-0.5041981,-0.4041431,-0.2826297,-0.001892969,0.19838111,0.27112392,-0.21060419,0.4590292,0.06006977,1.6967968,0.016335854,-0.05204567,0.060162142,0.6170189,0.16055132,-0.33647427,-0.090413034,0.13942854,0.4938196,0.103333734,-0.5172116,0.22189343,-0.18836556,-0.3766582,-0.29869595,-0.37993765,-0.12150881,-0.095015846,-0.3544949,-0.29099262,-0.16055042,-0.24924235,0.42988598,-2.591583,-0.18787408,-0.08738359,0.32414088,-0.18489568,-0.41406783,-0.20186673,-0.49074328,0.27143642,0.15263806,0.44366273,-0.5407794,0.5259152,0.33440757,-0.6860771,0.012714326,-0.6888225,-0.31127268,0.12596875,0.41731003,-0.14239171,0.20589788,0.46102276,0.30100915,0.31841156,-0.16933368,0.10170695,0.36824015,0.50796866,-0.06015703,0.5507211,-0.08898785,0.5151069,-0.26370117,-0.28768635,0.35972342,-0.45619783,0.23692827,-0.014231672,0.09082935,0.65654176,-0.5211748,-1.0647881,-0.45630467,0.17021966,1.1223603,-0.1737928,-0.34307685,0.12100784,-0.6381331,-0.2595192,-0.2540063,0.4680799,-0.23375987,-0.3034854,-0.9098537,-0.15401644,0.0013025211,0.26828998,-0.023955913,-0.07003481,-0.52628887,0.4399083,0.14445375,0.52706265,0.30015618,0.18561234,-0.5546797,-0.66694,0.024821743,0.76528305,0.24970238,0.13524254,-0.35451102,-0.20302628,-0.39491785,0.15648435,0.014023165,0.58256346,0.39641193,-0.13446185,0.29737598,0.27367344,0.015083708,0.20552675,-0.32279024,-0.264522,-0.34453735,0.1150889,0.4539084,0.79246706,-0.30773038,0.7481629,-0.072316445,0.03647719,-0.09162751,-0.42022637,0.58450925,1.451342,-0.23542176,-0.34481704,0.68818146,0.63718706,-0.33444273,0.40056124,-0.27670023,-0.13966799,0.5602787,-0.2824725,-0.30191913,0.22856928,-0.22078432,0.103974484,-1.0490571,0.21637857,-0.26141652,-0.42011228,-0.8286002,0.15538457,-2.7606392,0.101037204,-0.18249865,-0.2381636,-0.13391604,-0.42991844,0.0028330584,-0.6636091,-0.7695282,0.22060525,0.14627953,0.63394624,-0.24488378,0.07848767,-0.16411385,-0.37544417,-0.322333,0.10495859,0.40665463,0.4603095,-0.06563597,-0.6071995,-0.11399367,-0.13510497,-0.426651,0.052305102,-0.73945314,-0.30808637,0.038494382,-0.76353073,-0.31529322,0.6524684,-0.16895278,-0.07950788,-0.30235243,0.07012602,0.23911901,0.28410769,-0.12915057,0.19584769,0.22251685,-0.18570302,0.11996305,-0.015683472,0.20528953,-0.053634554,0.35114214,0.2652302,-0.11556015,0.48971054,0.6579481,0.9272744,-0.102603786,0.9404356,0.77279717,-0.12299124,0.220381,-0.21569736,-0.2450422,-0.59344417,-0.16229574,0.0917764,-0.46616852,-0.60621756,-0.044561192,-0.33356038,-0.8691351,0.67505527,-0.11266627,0.24209772,0.074589886,0.25265697,0.67727643,-0.14961886,0.1509365,-0.23505694,-0.17473173,-0.36970282,-0.32101113,-0.52507144,-0.48017165,0.03918721,1.3040787,-0.38907722,0.16705604,0.2093782,-0.48401883,-0.011457756,0.39555368,-0.0690193,0.20998888,0.45844916,-0.11083472,-0.5682002,0.33202943,-0.118450515,-0.12653334,-0.44809565,0.2046837,0.5719542,-0.54103464,0.55910444,0.2558411,-0.20566404,-0.38720286,-0.5170412,-0.2557337,0.059266165,-0.053966444,0.44155893,0.425733,-0.74090123,0.3703831,0.21039271,-0.4099058,-0.7563433,0.66058135,0.017109461,-0.25956976,-0.09615668,0.3363085,0.16932933,0.05708896,-0.43269196,0.28102353,-0.23220678,0.24449389,0.10753101,-0.14421022,0.025153616,-0.2182147,0.040757086,-0.8723237,0.33599052,-0.514095,-0.41645172,0.42868724,0.11274061,0.33581683,0.16657478,0.13302271,0.17394245,-0.36074305,0.016070588,0.009913783,-0.30632055,0.08782196,0.34434974,0.49574533,-0.594576,0.37592244,0.055755775,-0.22880207,0.08466863,0.16511224,0.44027892,0.094625175,0.49432993,0.29822728,-0.21909547,0.27940848,0.8241939,0.1554499,0.43289927,-0.05190918,-0.14409243,0.15717961,0.025789412,0.3573172,-0.18519217,-0.48082113,0.14556605,-0.17935239,0.33477747,0.6122396,0.14759918,0.29394925,-0.2507127,-0.48488393,-0.013001372,0.2704095,0.11261338,-1.6622219,0.28076234,0.38526925,0.9400986,0.4314367,0.15391785,-0.031742617,0.6330438,-0.18983887,0.08737304,0.502579,0.09118295,-0.5134763,0.5058766,-0.6602488,0.64032304,-0.009254538,0.042948347,0.018188754,0.0077490136,0.4188412,0.73868084,-0.16885817,-0.010491162,0.23571952,-0.29944602,0.021806696,-0.3022841,0.1262726,-0.5410343,-0.15915684,0.69623643,0.6682188,0.29696414,-0.2567081,0.10287851,0.17075415,-0.21540864,0.2212566,0.027183155,0.05720297,-0.12733312,-0.83566314,0.038152903,0.45727775,-0.25732228,0.0072886646,0.05450854,-0.21419275,0.22112496,-0.16810507,-0.025744775,-0.047091275,-0.870049,-0.13963845,-0.2737727,-0.3770943,0.56918406,-0.024082491,0.08590657,0.3851045,0.13398768,-0.46440527,0.46357703,-0.19270968,0.72324616,-0.012849897,-0.045506436,-0.32853606,0.20959993,0.15167885,-0.17258316,0.04927978,-0.39417568,0.059947822,-0.26082075,0.50233823,0.25836328,-0.39947185,-0.27046087,0.06911055,0.092502445,0.48486552,-0.10585416,-0.035214495,-0.21225436,-0.18080258,-0.2583082,-0.2880874,-0.110475264,0.29979226,0.49658194,-0.06059574,-0.19515814,-0.04342394,-0.0077109137,0.6333356,-0.024153432,0.5428226,0.5531194,0.31830204,-0.27477187,-0.14700665,0.3168089,0.64124906,-0.15378167,-0.18260889,-0.5146462,-0.32806465,-0.30650377,0.30414632,-0.1685593,0.42756283,-0.038257178,-0.22129446,0.62403536,0.04002026,1.2740074,-0.017571816,-0.5478998,0.19746776,0.4449592,0.13324134,-0.16203666,-0.45629692,0.92960185,0.29032543,0.061633814,-0.12545927,-0.47823206,-0.03703314,0.0128132,-0.22275595,-0.16047491,-0.022050649,-0.4989191,-0.16078639,0.3110652,0.17076135,0.25849178,-0.21162772,0.32501394,0.3702457,-0.007228171,0.15970428,-0.48569536,-0.15447329,0.16423772,0.28697917,-0.0111449165,0.051608723,-0.5459276,0.25080988,-0.39436194,0.084815465,-0.1922208,0.29427934,-0.2041023,-0.40049395,0.22466677,0.10644215,0.36169994,-0.30798805,-0.23918171,-0.35588264,0.53977376,0.10237795,0.09098903,0.46476987,-0.31381267,0.23046596,-0.0149417715,0.39908543,0.9969797,-0.20787656,-0.19636922,0.2056169,-0.3889514,-0.77512765,0.28343013,-0.33785176,0.34856096,-0.031726483,-0.060141165,-0.8292191,0.2677345,0.0791777,0.2613894,-0.2022792,-0.5770517,-0.21128917,0.3009807,-0.36857677,-0.10253135,-0.4526656,-0.09802959,0.5045066,-0.24118592,-0.44824114,0.0492554,0.1785713,-0.102283925,-0.31387517,-0.105663024,-0.5130497,0.23965414,-0.065914616,-0.4177257,-0.40688112,-0.1428498,-0.45721766,0.3037375,0.31854227,-0.26061568,0.15699394,-0.27154538,-0.24607503,1.2049123,-0.53480595,0.27266863,-0.38711488,-0.63707083,-0.87045336,-0.36529875,0.26689056,0.22638847,-0.09792187,-0.96864986,0.13828988,-0.07350489,-0.5303616,0.07752953,-0.32365927,0.45198348,0.09960105,0.26678246,-0.1902253,-0.7833266,0.2197151,0.13133046,-0.19343974,-0.5424766,0.57696337,0.07001797,1.0080436,0.0047267624,0.30847183,0.16865034,-0.29841352,-0.1518779,-0.15952201,-0.044721868,-0.5813524,0.0010746518,394 -832,0.18438314,-0.06712983,-0.5809528,-0.21488993,-0.15501611,0.2288882,-0.15135927,0.5084624,0.15331867,-0.27004355,0.07929175,0.034397196,-0.309916,0.5028694,-0.19410203,-0.8277963,0.047391083,0.08318346,-0.6949911,0.70816326,-0.34200284,0.2084527,-0.021396017,0.288065,-0.0403546,0.040855438,0.30402374,0.12816186,0.02450102,-0.27692798,0.060928714,0.099054106,-0.5935497,0.50201917,-0.025108814,-0.11603832,-0.05946973,-0.46083474,-0.07465526,-0.72987574,0.20760965,-0.49818072,0.5476856,-0.109761335,-0.4098389,-0.041630883,0.13963018,0.0730839,-0.18943523,-0.04976781,0.29526293,-0.17900622,-0.09843534,0.13037997,-0.30715105,-0.40979278,-0.5339238,-0.11149418,-0.57676834,0.0019692082,0.006599615,0.27420756,-0.4325721,-0.18142766,-0.42222556,0.42856088,-0.34260908,-0.25476673,0.34227738,-0.17748368,-0.10136857,-0.5563496,-0.118429266,-0.08188658,0.35109332,0.023933416,-0.23786145,0.32501897,0.18954231,0.48922548,0.10225574,-0.25918123,0.04283522,-0.3123758,0.28267053,0.565334,0.03827096,-0.38031313,-0.26932004,-0.07420012,0.39134526,0.26333484,0.15749295,-0.38653025,0.04120415,-0.16808026,-0.084696986,0.5289325,0.5186755,-0.46425757,-0.14537239,0.48176387,0.37439513,0.49367204,-0.148479,0.21819139,-0.17092031,-0.36150208,-0.3321624,0.2389266,0.01862449,0.41796878,-0.08701802,0.26706788,0.5376687,0.0613268,0.019737238,-0.1419345,-0.08766084,-0.06980487,-0.32201567,-0.18454774,0.26731125,-0.5418083,0.22226112,-0.34499124,0.5626964,0.1036839,-0.61728096,0.30085868,-0.44547284,0.1313203,0.09204636,0.66884446,0.897813,0.40200892,0.011788043,1.0382957,-0.38566634,0.08823362,0.12227172,-0.0521024,-0.054198157,0.1028049,0.08839828,-0.5184009,0.23482297,-0.0775537,0.12580557,-0.04733737,0.04968788,-0.5115883,-0.3008056,0.0801576,0.53628594,-0.25475755,-0.15661146,0.7383051,1.1464804,1.1527127,-0.1951914,1.408206,0.24283539,-0.1310515,-0.27888784,0.080707304,-0.4702022,0.13018638,0.43307352,0.37001,0.39773574,-0.145632,-0.026568627,0.48952642,-0.28450975,-0.092679,0.059473295,0.41021955,-0.0866432,-0.30446592,-0.49446234,-0.08944583,0.3235149,-0.1019708,-0.02523614,0.3248955,-0.30630806,0.4604396,0.04766051,0.94457144,-0.07125168,0.13975202,0.12175261,0.2193503,0.2631149,-0.30937788,0.11916822,0.26265308,0.34734425,-0.26462868,-0.52605754,0.01913821,-0.54188186,-0.40476468,0.004603175,-0.59295535,-0.37387395,-0.1398771,-0.41180226,-0.012932439,0.08421812,-0.13882798,0.4766958,-2.8600705,-0.32316795,-0.3949271,0.074186996,-0.28530025,-0.25127736,-0.3069765,-0.35711077,0.40026653,0.23630898,0.49034515,-0.3690492,0.3628818,0.4273822,-0.24710512,-0.002718995,-0.659853,-0.07359529,0.15811552,0.28248718,-0.13738602,-0.10264055,-0.1330464,0.40638566,0.53826016,0.33208042,0.0005390495,0.38099623,0.5736803,-0.18312526,0.31723967,-0.1482151,0.70058227,-0.44524977,-0.04375757,0.35437313,-0.35530952,0.8855877,-0.19821505,0.13080831,0.57170874,-0.27552694,-0.6441197,-0.29430056,-0.42915034,1.3088189,-0.4819571,-0.5090262,0.12803553,0.13918738,-0.09984138,0.010044728,0.5919503,-0.0034715533,-0.073123515,-0.41508853,0.07142341,-0.13390015,0.35011196,-0.30076298,0.1396216,-0.39144084,0.66643256,-0.12789577,0.7325156,0.36011398,0.22067387,-0.14746024,-0.3262232,-0.07493419,0.87126523,0.57648575,0.07840335,-0.18549187,0.0035352658,-0.4568572,-0.18246269,0.097082905,0.7547906,0.4222065,0.029495252,0.02069825,0.37816846,0.07123909,0.14893594,-0.13125068,-0.48193192,-0.2833201,0.19119294,0.6450115,0.49986354,-0.25347006,0.41847822,-0.0015051117,-0.15243581,-0.38634112,-0.4814707,0.3571451,0.44090188,-0.28546923,-0.18900484,0.5191029,0.3987763,-0.19786389,0.45812368,-0.61573213,-0.39595017,0.7136232,-0.04402082,-0.3906881,0.05612266,-0.24609514,-0.13636194,-0.7844658,0.2334563,-0.4091488,-0.67591596,-0.5831738,-0.24392502,-2.258521,0.08293036,-0.081728615,0.025282884,-0.31727633,-0.12717749,0.25244924,-0.545352,-0.7547167,0.026945377,0.0626932,0.4546033,-0.2134489,-0.02926541,-0.23940392,-0.4555668,-0.1968231,0.39983344,-0.024116153,0.15067859,-0.15210544,-0.19791378,-0.06540191,-0.039814617,-0.32224122,-0.031105697,-0.42911562,-0.37162986,-0.04771827,-0.2771759,0.13218419,0.6996166,-0.6420044,-0.048090708,-0.12532786,-0.05880397,-0.022979328,0.12815835,0.17891097,0.3873391,0.06877239,-0.19296461,-0.19063143,-0.28275296,0.15972482,0.24183655,0.37391075,0.5687481,-0.16785032,0.26387957,0.4570733,0.7513013,0.15368718,0.8087233,0.054028686,-0.027156321,0.49957252,-0.13943683,-0.31341562,-0.5790949,-0.3107157,-0.030062819,-0.43521392,-0.6557111,-0.040679455,-0.23651437,-0.7313318,0.25972912,0.31293347,0.54744315,-0.33979174,0.28349397,0.31806538,-0.32828906,0.17186548,-0.026463456,-0.07673304,-0.36633512,-0.44148663,-0.8121779,-0.46738687,0.24255683,0.97600365,-0.2424509,-0.15046597,0.10849575,-0.29609954,0.042616438,-0.015520061,0.22338259,-0.0066989907,0.16598941,0.07220559,-0.68281335,0.37046576,-0.11228093,-0.0060592196,-0.3832738,0.14383739,0.8013487,-0.33525726,0.41231132,0.28059295,0.14669432,-0.38376632,-0.7373304,-0.07367362,0.2334351,-0.19366185,0.44847807,0.21259844,-0.5411003,0.43437704,-0.049800485,0.057921153,-0.6731079,0.57011366,0.022130214,0.15632997,0.14039145,0.42165437,0.12176102,-0.07942265,-0.07492801,0.43836737,-0.41499528,0.4473387,0.4340383,-0.05235648,0.29113454,-0.09143051,-0.46963117,-0.50898594,0.0061129183,-0.7845885,-0.40385988,0.12932183,-0.020604754,0.045190502,0.1055071,0.09669223,0.4378706,-0.33478168,0.3775176,0.059385482,-0.31527236,0.6285531,0.51321363,0.35348645,-0.44080457,0.5853165,0.2224235,0.12439054,0.09014842,0.15933028,0.47964814,0.32187644,0.40824232,-0.36592352,0.08690397,0.019034922,0.63412005,0.22313166,0.1175842,0.12178128,-0.18303919,0.17613514,-0.0150873335,0.18303137,-0.18347822,-0.47696552,-0.112236224,0.09464743,-0.00877817,0.6182453,0.101961076,0.15909599,0.17952721,-0.15815991,0.225563,0.06307126,-0.3101006,-1.262937,0.50164646,0.13839763,1.0218638,0.3987882,0.12880588,-0.049416166,0.29216334,-0.3315651,0.15088388,0.5859609,-0.029396215,-0.44069877,0.73975587,-0.42903474,0.4054868,-0.2213778,0.08099454,0.23642659,0.14828676,0.4762728,0.8261259,-0.1777336,0.10479156,-0.21287994,-0.1984132,0.15011895,-0.28572068,0.17857839,-0.37682864,-0.49304876,0.48137307,0.34364557,0.25263593,-0.39257157,0.044214975,-0.049285535,-0.2702462,-0.035492495,-0.10582361,0.10565353,-0.1740197,-0.36786318,-0.2131287,0.5947024,-0.36056653,-0.06293275,0.023633962,-0.32184678,0.16609515,-0.0151405735,0.22318335,0.004422406,-0.75958306,0.046479475,-0.4204688,-0.43923387,0.11465907,-0.38590863,0.22154026,0.14676987,-0.06745768,0.013707439,0.34787127,0.0075179436,0.5661797,-0.22986268,-0.07601055,-0.3447934,0.24466574,0.12485134,-0.265001,0.09883708,-0.2896032,0.18549906,-0.4944847,0.27204344,-0.069353655,-0.38373888,0.01766622,-0.014735264,-0.13124497,0.37105858,-0.08775283,0.07798145,-0.077529244,-0.3595878,-0.18077195,-0.067087166,-0.3122038,0.24581821,-0.13181688,0.19638719,-0.14252336,0.061733667,-0.08490751,-0.034582987,0.2897421,-0.09055016,0.41463947,-0.0071446574,-0.59808373,0.19701695,-0.019180506,0.35105944,0.3386089,-0.09524839,-0.24842674,-0.28167087,-0.46306872,0.7181633,-0.32949227,0.23165183,-0.046960194,-0.36215624,0.6238647,0.18140002,1.2008247,-0.057672054,-0.4680606,-0.06787715,0.7639548,0.17802654,-0.100620955,-0.3009962,0.8572976,0.4009833,0.12711066,0.13382697,-0.34554777,-0.27265474,0.3243675,-0.18209119,-0.14029439,0.060231198,-0.5327765,-0.14526652,0.053276855,0.14560074,0.13910487,-0.22512893,-0.4214313,0.27929807,0.21197218,0.4832064,-0.67984366,-0.36063877,0.2249781,0.14833419,-0.055629462,0.1358218,-0.2870929,0.2811569,-1.1080198,0.28728625,-0.53337115,0.07009962,-0.13978498,-0.3634443,0.21828406,-0.10638691,0.42543432,-0.28087762,-0.32236442,0.050365325,0.4784191,0.33737317,0.22362001,0.7025277,-0.21361987,-0.0924552,0.14688653,0.47985652,1.0939852,-0.079533674,-0.14483668,0.16337754,-0.46501315,-0.79986596,-0.19341226,-0.6416228,0.3261766,-0.27711767,-0.4191654,-0.25681877,0.092151366,0.0016870102,-0.063619375,0.039660722,-0.711379,-0.12800327,0.26494902,-0.17304087,-0.25038773,-0.3899932,0.00078008574,0.7512997,-0.2822677,-0.38073203,0.05022199,0.1635502,-0.30991682,-0.8889396,0.23530205,-0.38915148,0.28708985,0.06736233,-0.38633373,-0.03661422,0.19496803,-0.5078211,0.28209224,0.2369823,-0.30566722,-0.18840735,-0.09737966,-0.14685506,0.8884974,0.05689943,0.014101602,-0.44651437,-0.55542284,-0.5209797,-0.44859013,0.15198143,0.16997051,-0.069717765,-0.70264345,-0.08264006,-0.37385657,0.16949125,-0.08140779,-0.2652891,0.22696143,0.16141123,0.45806623,-0.17639603,-1.0322412,0.19712871,0.033901054,-0.013112068,-0.31432977,0.37463066,-0.12969787,0.6645474,0.052838694,-0.061098233,-0.13345093,-0.8828977,0.3139643,-0.31018797,0.034353346,-0.4632957,0.44868407,400 -833,0.30118203,-0.5466114,-0.6223716,-0.15959503,-0.2136596,0.14784272,-0.32625034,-0.03915971,0.259436,-0.3898153,-0.2041363,-0.025330657,0.08365596,0.7168574,-0.19061832,-0.88016653,-0.17133999,0.2842042,-1.0814236,0.6935425,-0.3081173,0.24856287,0.33559847,0.4151021,-0.14379652,0.035273414,0.41615328,-0.14172088,-0.18913625,-0.17878236,-0.19498973,-0.23662686,-0.8489482,0.1188153,-0.20025587,-0.2790746,-0.03561036,-0.3031928,-0.03125168,-0.95831496,0.23150294,-1.0846306,0.5193068,-0.1052534,-0.14801703,-0.12771428,0.24984126,0.49500632,-0.5380429,0.074176595,0.1795689,-0.5119501,-0.4283557,-0.5652189,0.14523591,-0.6162846,-0.5051617,0.018589104,-0.73848915,-0.27356678,-0.069515124,0.2664306,-0.2978296,0.041334778,-0.2531505,0.5560077,-0.1921934,-0.20758174,0.39541626,-0.29100224,0.43593645,-0.6153168,0.012862886,-0.19624327,0.49487796,0.055724394,-0.24049926,0.3130531,0.24750434,0.49091938,0.3882185,-0.4196992,-0.1907217,-0.013334925,0.35793912,0.3726424,0.092731275,-0.6987855,-0.120552756,0.103595205,0.18766457,0.14401531,0.1244635,-0.4105134,0.0879002,-0.14076908,-0.104849994,0.5786038,0.6046647,-0.35936055,-0.3114908,0.12491962,0.76819324,0.23560505,-0.14120048,-0.07823471,-0.04334123,-0.6947098,-0.062486615,0.45477113,-0.10678199,0.7359292,-0.28110123,0.05737542,0.81935996,-0.21719736,-0.2953212,-0.062897466,-0.0934486,-0.15017007,0.05531917,-0.28695333,0.417326,-0.42520067,-0.16142319,-0.7016068,0.7526493,0.19444485,-0.8430802,0.3602631,-0.6104341,0.4071274,0.01770392,0.7193513,0.72554207,0.6070257,0.28572044,0.83122087,-0.3787959,0.12453375,0.077055715,-0.3919276,-0.052394092,-0.5069845,0.14315172,-0.3374673,0.0789536,-0.5141522,-8.597473e-05,-0.25310057,0.46753561,-0.5061224,-0.10815191,-0.12777734,0.6298597,-0.2976853,-0.033106368,0.7672028,1.0396787,1.1733685,0.20372982,1.4641422,0.50542265,-0.41802648,-0.101364404,-0.0458221,-0.713573,0.18650937,0.284167,0.2909719,0.4529165,-0.30689144,0.025326759,0.3910319,-0.62243795,0.1951658,-0.005969137,0.36526623,0.0323745,-0.092250295,-0.3840302,-0.06190728,0.039746407,-0.05982529,0.18773691,0.11746112,-0.17841959,0.72939634,0.06974552,0.9837592,-0.18545151,0.052145008,-0.015419312,0.25240955,0.30788532,0.14206704,-0.029359499,0.31603444,0.5742225,-0.068948634,-0.72939825,0.12810464,-0.397645,-0.3822306,-0.32286462,-0.24936444,0.012702187,0.008837636,-0.24434483,-0.3048023,0.20329332,-0.24900408,0.33349058,-1.9215728,-0.22436784,-0.26851586,0.2683716,-0.36353424,-0.056039672,0.056943834,-0.638276,0.32095528,0.31614593,0.4729596,-0.72735375,0.5666285,0.47305885,-0.44823977,-0.17933756,-0.7508056,-0.24926679,-0.068414815,0.5884534,0.017026743,-0.32631946,-0.11967492,0.07555705,0.7774647,-0.024775112,-0.041970376,0.7395293,0.35493755,-0.07074127,0.6244919,0.10628301,0.60792094,-0.57658154,0.00631695,0.4122404,-0.37654945,0.27435878,-0.16131759,0.09894096,0.5978499,-0.44488287,-0.8196098,-0.7102831,-0.2962378,1.3013417,-0.3661933,-0.6680357,-0.0056804814,0.34255275,0.08967137,-0.043064382,0.75626206,-0.074623756,0.37416705,-0.7154502,-0.030673578,-0.024354309,0.41680095,0.05014317,-0.027578846,-0.32988605,0.8844294,-0.10552192,0.49992085,0.32921538,0.35188577,-0.48634195,-0.6065212,0.30678305,1.1190994,0.17329247,-0.029179895,-0.07135942,-0.33684444,-0.14704873,-0.25006318,-0.22449301,0.5713234,0.9188035,-0.090503864,-0.008607651,0.3199087,-0.29265347,0.109598875,-0.10890609,-0.4357551,-0.07517638,-0.073806286,0.49959245,0.735892,-0.056817397,0.52925116,-0.4042479,0.4114686,0.078095265,-0.4869319,0.9181257,1.0679208,-0.20935495,-0.1256651,0.3213053,0.26662028,-0.56086713,0.6212803,-0.6380544,-0.5513359,0.812037,-0.18933141,-0.47359076,0.29714903,-0.24287541,0.2817159,-0.89612293,0.3905597,-0.41907966,-0.15543793,-0.6870635,-0.14726985,-2.951749,0.32378715,-0.2064979,-0.028219322,-0.49584332,-0.112809815,0.08449733,-0.37173864,-0.62154764,0.23636883,0.27849156,0.6631153,-0.045855854,0.26624337,-0.19783615,-0.12930682,-0.0750343,0.3834164,0.14398511,0.124618836,-0.22088946,-0.3252906,0.15532762,-0.1143187,-0.3503581,0.15107922,-0.6701414,-0.5034355,-0.22758032,-0.55944186,-0.40200695,0.7703031,-0.41924587,-0.030777127,-0.2179421,0.034139283,0.019093363,0.25216773,-0.006963114,0.29834154,0.28463206,-0.2135156,-0.04252633,-0.20845766,0.16116108,0.01282828,0.12573613,0.13820897,-0.26994407,0.21943349,0.3803045,0.89514464,-0.11604303,0.75136167,0.38100877,-0.014051318,0.2134005,-0.2736309,-0.52170044,-0.67227477,-0.25162736,0.012049596,-0.36947298,-0.4726027,-0.030241301,-0.3135955,-0.82565516,0.6647652,0.024592737,0.09019103,0.20462531,0.57091427,0.42433926,-0.23424001,-0.0029647846,-0.17990609,-0.17966656,-0.43572167,-0.37585476,-0.74801785,-0.44671974,-0.2275825,0.83783835,-0.096246004,-0.09228671,-0.040308278,-0.30268112,0.22637348,0.27085593,0.017216375,0.33808407,0.3903555,0.19973814,-0.7251509,0.4747622,-0.004884993,-0.15372872,-0.47296515,0.33626235,0.72865134,-0.8309763,0.39374366,0.42935157,-0.22608559,-0.055106323,-0.33181265,-0.15554178,0.039017413,-0.1737535,0.3169825,0.024542972,-0.46235904,0.50727075,0.28288063,-0.4209317,-0.93743515,0.15806253,-0.08692818,-0.42921543,0.04195505,0.3885769,-0.109148264,0.02534409,-0.545837,-0.0154179735,-0.6021024,0.115739666,0.24238272,0.0038955808,0.08513701,-0.17189366,-0.4079695,-0.8519774,0.21831791,-0.7249122,-0.2089517,0.3528591,0.17508219,-0.037445337,0.20948626,0.08943388,0.4839717,-0.23469968,0.07997111,-0.1500323,-0.27793643,0.33264473,0.60254085,0.16202994,-0.4885571,0.69287926,0.13596605,-0.2077622,-0.16829383,-0.039381977,0.45237303,0.32421604,0.44077078,0.14880009,0.07015652,0.357808,0.7441438,0.050967023,0.6776109,0.29286554,-0.23260318,0.46097314,0.020366112,0.39629507,-0.06884791,-0.35124627,0.18579824,0.13002925,0.10976824,0.4718989,0.17353421,0.46993482,0.13544875,-0.1682757,-0.053661942,0.3769599,-0.088230066,-1.343211,0.49319467,0.3274324,0.89261013,0.60163236,-0.014899393,-0.014326732,0.6486791,-0.3868327,0.030814812,0.27976528,0.025420552,-0.31628036,0.78028053,-0.5731804,0.19391344,-0.2781193,0.08676174,-0.026911953,0.14277779,0.13749366,0.97571343,-0.12798063,0.04711689,-0.24378651,0.09392587,-0.029717395,-0.44205216,0.14568047,-0.21430469,-0.75333613,0.71564704,-0.016737381,0.50772667,-0.35421702,0.06420031,0.036130387,-0.16345902,0.45792747,-0.11233238,0.008118595,0.21476448,-0.61471397,-0.08737254,0.5100935,0.009711432,0.09463217,-0.059444774,-0.22884612,-0.031540405,-0.17020868,-0.16602087,-0.13970293,-0.8487258,-0.08808506,-0.3564445,-0.4958897,0.47312403,-0.4341369,0.128288,0.28751025,-0.040670004,-0.42332065,-0.035081495,0.120785035,0.769463,0.3162099,-0.33615926,-0.28554407,0.087124385,0.21898328,-0.4430329,0.3758998,-0.23620683,-0.03399583,-0.6161158,0.6870992,-0.19933426,-0.4939233,0.27389646,-0.36399713,-0.36347055,0.675683,-0.3597568,-0.08070942,0.2661982,-0.22277623,-0.01832625,-0.27651736,-0.27271375,0.3086684,0.13825537,0.007901815,-0.08555332,0.007722477,-0.062711865,0.6411409,0.11853977,0.4345858,0.3402178,-0.046599507,-0.37117136,0.09233481,0.09426731,0.45326152,0.36881927,-0.118669085,-0.38782397,-0.6231614,-0.27009004,-0.022713104,-0.08368736,-0.00049177307,0.1364906,-0.3307945,0.9273274,0.22444604,1.2036237,0.18822443,-0.2473998,0.14191356,0.55079556,0.095487274,0.025783831,-0.54906434,0.92355293,0.43313503,-0.038912345,0.09736562,-0.54594857,-0.13143651,0.42047834,-0.351413,0.069045216,-0.09734789,-0.672113,-0.5570784,0.13933918,0.2805287,-0.15543495,-0.20718046,0.0013726801,0.17463566,0.03905948,0.48961604,-0.7163784,0.055079132,0.33368874,-0.034302913,-0.08000043,-0.012332712,-0.29373986,0.4341377,-0.71659535,0.14846377,-0.50445604,0.023568856,0.077423476,-0.20772922,0.2182076,0.20379257,0.12498126,-0.5235674,-0.48354957,-0.036081105,0.6755419,0.31969664,0.2651159,0.796187,-0.29658827,0.017105363,0.31286404,0.610295,1.4176589,-0.64204645,0.14802586,0.08958224,-0.39756978,-0.58039695,0.65446085,-0.1787806,0.03229584,-0.22451043,-0.51223546,-0.73314255,0.13368045,0.14774619,-0.059206277,0.19309461,-0.7626245,-0.2982702,0.67972344,-0.61101955,-0.22271395,-0.28216556,0.49781632,0.5257681,-0.19909944,-0.44816235,0.040831387,0.2522121,-0.42660776,-0.52413565,-0.20901231,-0.28461468,0.28956196,0.1923343,-0.2832506,-0.102954745,0.26305154,-0.81498146,0.14612062,0.14858897,-0.37548244,0.059333097,-0.031647455,-0.122592725,0.6849707,-0.33869055,-0.0888274,-0.6668089,-0.48651478,-1.0935222,-0.22420041,0.43864414,0.027845422,0.088461034,-0.74126524,-0.17993478,-0.14739406,-0.026373321,0.15649319,-0.48613977,0.30268905,0.17707258,0.55871516,-0.1656849,-0.9635811,0.2801409,0.012481585,-0.16417047,-0.47858366,0.39796874,-0.032616798,0.6303862,-0.08612466,-0.057521597,0.108083405,-0.7644132,0.05123816,-0.23048638,-0.17826231,-0.6225063,0.11456386,405 -834,0.41307178,-0.3016015,-0.78751546,-0.14961426,-0.27707267,0.25424647,-0.19615783,0.5745319,0.2609366,-0.73196936,-0.2489224,-0.077347815,0.05231856,0.29194286,-0.16899155,-0.52270025,0.00013493498,0.38677672,-0.47479343,0.40811595,-0.2979924,0.14563094,0.09737114,0.5436875,0.28392798,0.085639395,-0.13720815,-0.123135306,-0.17603791,-0.2855131,-0.19037716,0.3361275,-0.4080089,0.278456,-0.29467493,-0.6118714,-0.110997416,-0.41147575,-0.48384237,-0.75701886,0.16975026,-0.9870283,0.85464144,0.020508716,-0.43966952,-0.048145134,0.2647708,0.26734418,0.12782075,0.08648423,0.23414786,-0.2989342,-0.14490394,-0.26260397,-0.44911703,-0.6431742,-0.5855832,-0.093730874,-0.42822945,0.12377902,0.07636011,0.35148504,-0.29757285,-0.048814785,-0.2469893,0.35690156,-0.39507782,0.32264033,0.14207815,-0.13289745,0.2797921,-0.67326236,-0.3692402,-0.11811817,0.21719821,-0.13095525,-0.24546134,0.13600293,0.092528425,0.5524941,-0.0041288235,-0.090031564,-0.27804464,-0.00962481,0.09838635,0.62650853,-0.3136208,-0.14955966,-0.28002015,-0.037000615,0.3862296,0.23607974,0.23745406,-0.29344934,0.10358003,-0.19350497,-0.25551778,0.39803696,0.6107369,-0.20708607,-0.29048958,0.2533234,0.40570977,0.07887565,-0.3210092,0.11497489,0.06256137,-0.42070803,-0.07761068,0.048853476,-0.11335514,0.5362581,-0.114614844,0.3048127,0.39329323,-0.19242883,0.013398995,0.21184587,0.30507144,0.027401596,-0.42435697,-0.50470465,0.42711583,-0.53935605,0.010766474,-0.24934427,0.73494864,-0.04526782,-0.6280212,0.20046921,-0.56786793,-0.016209511,-0.10358432,0.48282728,0.55577475,0.39366186,-0.029262925,0.6575095,-0.13485764,0.013804778,-0.012408048,-0.014241626,-0.061385196,-0.35924363,0.23388658,-0.5791082,-0.045646995,-0.06627391,-0.050313745,0.14387709,0.64252657,-0.64708924,-0.49911204,0.23375231,0.9636949,-0.35183835,-0.110687785,0.8664349,1.1067692,0.8958187,-0.028752869,1.2021604,0.2770426,-0.24709038,-0.26107013,-0.16616607,-0.6546679,0.33896077,0.091059506,-0.55518264,0.361086,0.17095047,-0.14657168,0.47131944,-0.44126603,0.0323213,-0.36512208,-0.08207903,-0.014334996,-0.028234722,-0.5685279,-0.3152616,-0.09981284,-0.14351755,0.22883976,0.16006267,-0.447582,0.6093074,0.086069144,1.306591,-0.29416478,0.00069422275,0.09608549,0.3460668,0.06665868,-0.10161635,0.17871113,0.24698605,0.35954818,0.08321228,-0.45542097,0.017348707,-0.33284983,-0.3714287,-0.30456427,-0.16127995,-0.2468956,-0.003127632,-0.47798762,-0.32392564,-0.06020305,-0.29680023,0.26546878,-2.3447814,-0.26491967,-0.14376174,0.41482666,-0.27228543,-0.44379422,-0.3078204,-0.5017998,0.32642215,0.19285144,0.50922424,-0.5592892,0.559087,0.33559546,-0.43164656,-0.16061507,-0.80006474,-0.20093124,-0.09082994,0.15233774,0.027068308,0.011859134,0.15245833,-0.21596193,0.46033946,-0.26578006,0.14975417,0.272306,0.4884757,-0.058017895,0.27209416,0.14851505,0.6512213,-0.5483109,-0.24922371,0.42138448,-0.5753693,0.14266993,-0.12521932,0.14185886,0.57977563,-0.43169785,-0.6622257,-0.7812336,-0.24026245,1.1571702,-0.0639954,-0.5046219,0.03318261,-0.3200315,-0.41367468,-0.08077401,0.521154,-0.21267177,0.019006163,-0.81134254,-0.17921348,-0.08247938,0.17188315,-0.120665886,-0.026283868,-0.4181771,0.55607295,-0.15816681,0.4614644,0.47617027,0.33186245,-0.16174509,-0.35994014,-0.015927767,1.0349854,0.31972954,0.20119189,-0.3413159,-0.055916145,-0.39024183,0.12806807,0.07205343,0.54981226,0.60127616,-0.05395356,0.16080602,0.4624864,0.05459304,0.23144953,-0.08205556,-0.53791314,-0.33876798,0.20292914,0.54843724,0.45602885,-0.07460556,0.62570906,-0.14976856,0.55921596,-0.31062064,-0.48380914,0.20325428,1.2541689,-0.38321152,-0.48082566,0.81328326,0.5109305,-0.39107418,0.5353236,-0.80646104,-0.44920778,0.21905406,-0.083801515,-0.49727774,0.13759638,-0.20555843,0.3087834,-1.0215845,0.42108706,-0.29518715,-0.6788171,-0.6079801,-0.20930071,-1.6204447,0.30679616,-0.3185359,-0.09621834,-0.25273937,-0.3701179,0.24445917,-0.5271486,-0.41350856,0.037931174,0.16669983,0.55485535,0.01000008,0.11885438,-0.18746744,-0.3765031,-0.16296391,0.3987781,0.32283553,0.26433787,-0.21398921,-0.5029961,0.057767626,0.0630094,-0.1592737,0.115641505,-0.943927,-0.4805498,-0.005912623,-0.56839913,-0.26476875,0.70823735,-0.327095,-0.030299796,-0.305431,0.18080805,-0.051657956,0.16876818,-0.07114149,0.22691523,0.014092207,-0.20639147,0.086063124,-0.25843778,0.23040426,0.09064102,0.24780159,0.5214902,-0.14217055,0.22624065,0.44550633,0.5296424,-0.044747695,0.8520837,0.58476895,-0.13713221,0.20686038,-0.20630771,-0.3370668,-0.55836195,-0.20434071,0.17690347,-0.52935433,-0.42906857,0.012193498,-0.3821908,-0.9735767,0.714433,0.10989403,0.20293814,-0.026064435,0.4547012,0.60034555,-0.14529474,-0.13498582,-0.07757347,-0.13650203,-0.41274127,-0.5398331,-0.6738667,-0.48150158,-0.12881972,1.4868202,-0.15624276,0.35956702,0.32121944,-0.23770846,-0.044532508,0.5194058,-0.060270894,-0.20575665,0.6829532,-0.19387297,-0.6163478,0.2079304,-0.12438813,-0.18714094,-0.619824,0.35862145,0.70851165,-0.80657226,0.41556206,0.4752097,-0.030617507,-0.45152032,-0.5500222,-0.1317989,0.039970938,-0.22207838,0.55448073,0.270803,-0.35009933,0.23700239,0.2209916,-0.2040689,-0.55309874,0.44006243,-0.14024164,-0.31739685,-0.040135287,0.45766166,-0.012799243,-0.0053455927,-0.09067271,0.12196824,-0.27210233,0.43989384,0.07129781,-0.1898552,0.16510163,-0.3777006,-0.13674432,-0.79243773,0.14184205,-0.7185128,-0.3434881,0.3640896,0.04696365,0.24034637,0.40744886,0.14045806,0.3427666,-0.4433335,0.04085366,-0.27592474,-0.39809623,0.48339677,0.3086176,0.4094882,-0.4242493,0.5422459,0.08788409,-0.33772373,0.038469184,0.2326606,0.5956393,-0.011424969,0.4988831,-0.092683546,-0.160864,0.29018134,0.90738374,0.29352638,0.5054353,0.041890413,-0.1635801,-0.07359192,-0.03125496,0.14052975,-0.23633327,-0.4883997,-0.14607644,-0.3992988,0.2479112,0.466913,0.0747525,0.56916744,-0.15267597,-0.2037253,0.094322145,0.069934204,0.14214982,-1.3507805,0.1776576,0.16561586,0.85722286,0.13808517,0.0077199093,-0.089407094,0.62411654,-0.15918975,0.19722761,0.39925256,-0.068131775,-0.26723588,0.6155137,-0.6273393,0.387869,-0.13887414,0.1805296,0.0060431226,-0.15854631,0.49739423,0.8553369,-0.1320805,0.1263515,0.1282624,-0.3343245,-0.012078084,-0.31089804,0.22761138,-0.6840121,-0.22320545,0.806201,0.5943614,0.59947675,-0.20094042,-0.018324887,0.2931507,0.014124672,0.36965418,0.21629119,0.27156493,-0.050272223,-0.69772696,0.037798654,0.6072103,0.11078188,0.030964077,0.1873625,-0.31343052,0.29026666,-0.061998025,0.18964845,-0.0700606,-0.4115213,-0.12741075,-0.4540952,-0.51632625,0.4170444,-0.25646302,-0.0023975458,0.1962539,0.21580078,-0.20619595,0.30577964,0.08590194,0.8819682,0.12267947,-0.16248359,-0.37578273,0.28454545,0.25802392,-0.29152635,-0.10443934,-0.32208392,0.20537136,-0.4951252,0.38399723,-0.09537715,-0.15538044,0.105264574,-0.20504765,0.0026461494,0.47364795,0.00036268434,0.07459587,0.19448233,0.1875356,-0.524229,0.0064010173,-0.15184505,0.2684741,0.2744707,0.047546554,-0.2856975,-0.2027862,-0.14742355,0.2512455,0.03914519,0.4185636,0.60592085,0.12686133,-0.29049516,-0.07426807,0.25967914,0.6335528,-0.04400088,-0.1513045,-0.13627402,-0.5469853,-0.24898405,0.38489008,-0.17858417,0.31758365,0.18123262,0.032986462,1.0600108,0.01296404,1.1847938,0.04638807,-0.37832502,-0.003540665,0.47996387,0.086932965,-0.056473404,-0.28496498,1.1189156,0.55501,-0.030139035,-0.102879465,-0.4482486,-0.07959104,0.20616733,-0.20664203,-0.23637791,-0.078843094,-0.65609837,-0.19090398,0.31083488,0.30083275,0.19457929,-0.04065308,0.3768654,0.3230298,0.008819046,0.1916861,-0.69564635,-0.13669665,0.17510271,0.383906,-0.16487257,0.29080012,-0.43544206,0.27672827,-0.61221075,-0.031134807,-0.20173661,0.13597782,-0.08971543,-0.22910815,0.19021513,0.03768409,0.3437623,-0.63948137,-0.18642415,-0.1771097,0.47342828,0.1814682,0.029937305,0.56336707,-0.21280652,-0.050372645,0.10457484,0.54443353,1.2319192,-0.41644824,0.059908777,0.4850143,-0.47912553,-0.80825645,0.25158405,-0.44202673,0.18589222,-0.02093353,-0.33619848,-0.57492137,0.41734993,0.17166798,-0.16926081,0.06637996,-0.33902225,0.18945044,0.20607449,-0.2509043,-0.17765139,-0.2995715,0.2467679,0.29631048,-0.11000648,-0.40505576,-0.08064115,0.4650443,-0.22089891,-0.3274177,0.07300676,-0.4413302,0.20896429,0.155316,-0.3351383,-0.059514627,-0.24071027,-0.45531586,0.10965956,0.43745804,-0.29336298,0.13884343,-0.33297247,-0.079228744,0.65417594,-0.07992047,0.08914303,-0.63642603,-0.36562207,-0.72152585,-0.39171967,0.047152665,0.3269184,-0.071440876,-0.59603333,-0.03063599,-0.21837734,-0.4395094,0.0030759622,-0.34378576,0.543892,0.2202781,0.32446355,-0.21414852,-0.85779786,0.27339283,0.08663682,-0.26201132,-0.5110788,0.39106926,-0.115265556,1.0258886,0.14911303,0.16489793,0.2630957,-0.5754152,-0.053413883,-0.21605909,-0.23132975,-0.9100585,-0.3596723,408 -835,0.45053414,-0.12968606,-0.43032527,-0.08667877,-0.34911296,-0.16173112,-0.20125102,0.4814901,0.33572602,-0.1984907,-0.1649515,-0.061711233,-0.16920608,0.30436474,-0.15201536,-0.6326561,-0.14460324,0.075104475,-0.530755,0.80364925,-0.29602942,0.18582936,-0.060223695,0.4995667,0.25838736,0.340873,0.1485113,0.15508768,0.098144054,-0.29006362,-0.022031672,0.11624777,-0.5413442,0.28029084,-0.098686844,-0.2171356,0.019309515,-0.5106959,-0.3735455,-0.7478841,0.3547417,-0.6946196,0.3023201,0.06623758,-0.21847437,0.26434073,0.2880452,0.22658531,-0.1833943,-0.20015447,0.07344675,-0.016495334,0.05966306,-0.17146266,-0.14117329,-0.2660478,-0.5837718,-0.060795236,-0.4107958,-0.28261283,-0.36213407,0.14663316,-0.3837417,-0.0085680485,-0.15117148,0.5406888,-0.4122341,0.024083292,0.2718427,-0.21578614,-0.015779153,-0.7355535,-0.18184519,-0.058749873,0.25844917,0.15892369,-0.13563989,0.3311257,-0.051819026,0.092387356,-0.028838431,-0.11850527,-0.42691377,-0.13092521,0.04057621,0.44892302,-0.05490197,-0.297556,-0.024141813,-0.048082292,0.05152754,0.26706377,0.18222241,-0.014875382,-0.1197241,-0.265109,-0.24206477,0.2354135,0.4077607,-0.22525121,-0.18429703,0.3245487,0.402383,0.30933437,-0.23388807,-0.14429443,0.025869288,-0.5074816,-0.031735834,0.061292876,-0.14268313,0.4863936,-0.052360967,0.12007984,0.63790697,0.036112085,-0.10574204,-0.025206573,0.13826783,0.08455249,-0.44535318,-0.15656357,0.36542037,-0.26781544,0.31238577,-0.113827385,0.63991326,0.21814753,-0.567969,0.24123025,-0.50856805,0.061935153,0.013851009,0.43112326,0.5624628,0.43885565,0.37571922,0.67723674,-0.15474133,0.24054801,-0.20398033,-0.07536561,0.012124668,-0.18793811,0.074822225,-0.47783384,0.10613504,-0.12683462,-0.16141622,0.11016939,0.23716147,-0.41080585,-0.108448364,0.2938111,0.8020093,-0.16291411,0.0184531,0.6869505,1.0904828,1.0612577,0.03552113,0.6795421,0.022588203,-0.29482034,0.17170674,-0.14844944,-0.6441513,0.22283249,0.27936995,0.36025858,0.15324046,0.03325823,-0.0689654,0.29359555,-0.38299665,-0.066751726,-0.011522633,0.2028603,0.38737252,-0.018643787,-0.43770614,-0.35731182,0.012705256,0.00062051415,0.061032888,0.25925973,-0.23798136,0.3382958,-0.08191682,1.4589968,0.14677875,0.057468012,0.31108359,0.6363405,0.17325175,-0.234537,0.11355134,0.3741726,0.22575676,0.1287461,-0.5480903,0.27188066,-0.25232676,-0.45761228,-0.093904875,-0.39893183,-0.12395722,-0.091774546,-0.38038716,-0.19246785,-0.13310057,-0.11146123,0.5092799,-3.1013381,0.20238006,-0.13032922,0.24090302,-0.33750066,-0.18544406,0.13150196,-0.44261464,0.41885892,0.42513016,0.4003378,-0.4236132,0.30439842,0.51089895,-0.7554088,-0.05039029,-0.46146822,-0.14551426,0.04337482,0.47109663,-0.0852815,-0.009223759,-0.111897446,0.1433952,0.49355194,0.085995354,0.23440562,0.2904365,0.3480347,-0.14105599,0.56606156,-0.022343969,0.44530687,-0.40116358,-0.104341865,0.3068864,-0.6323262,0.3997828,-0.20815761,0.107710995,0.5233994,-0.33471832,-0.94417953,-0.32145998,0.09543737,1.1835542,-0.29088742,-0.5407383,0.25254574,-0.46855286,-0.025928995,-0.07552681,0.3292746,-0.08619788,-0.05643637,-0.6094027,-0.04743822,-0.13172697,0.29612598,0.011281774,-0.19478898,-0.44609714,0.78071696,0.10228857,0.53853273,0.12766625,0.11791158,-0.38324085,-0.31520253,-0.0078078485,0.5046384,0.33682916,0.045180917,-0.22643715,-0.121915035,-0.24936573,-0.1501232,0.19970094,0.66657096,0.32130912,-0.057876855,0.08646389,0.23290634,-0.14692396,0.012892987,-0.13914002,-0.12615874,-0.29092103,0.0670385,0.5625491,0.8714115,0.0874528,0.186974,0.08247944,0.41659904,-0.14988814,-0.39125332,0.3024076,0.86326295,-0.042142376,-0.30202246,0.46643496,0.69446295,-0.19135119,0.36419368,-0.4729942,-0.3020039,0.46884397,-0.05297023,-0.45044044,0.02159667,-0.2776619,-0.095701076,-0.5143369,0.07156682,-0.3914877,-0.52521396,-0.67763203,-0.17012925,-3.0113401,0.09152123,-0.15871255,-0.36025807,-0.24409036,-0.11128535,-0.0094388025,-0.661238,-0.6146072,0.15610938,0.14457053,0.69905496,-0.18291067,0.08408585,-0.30388233,-0.26420662,-0.30001536,0.3324484,0.104284085,0.3303227,-0.06559158,-0.36673012,-0.2512473,0.024939187,-0.3583497,0.09609148,-0.5771745,-0.23364985,-0.12811422,-0.52048063,-0.13099584,0.5922473,-0.32478037,0.051259298,-0.101489045,0.03424187,-0.15154476,-0.014006806,0.12714343,0.27448303,0.08036459,-0.17749697,0.031120569,-0.1991105,0.31604797,0.08052195,0.49342838,0.24554682,0.056979913,0.12524289,0.3975524,0.53096396,0.0158521,0.93810636,0.3369627,-0.011414922,0.2163157,-0.21353601,-0.26669797,-0.4396397,-0.11429875,0.22411354,-0.28782076,-0.29179588,0.010417628,-0.3381681,-0.7250417,0.44944742,0.13538752,0.06005727,-0.009134951,0.107161194,0.46411037,-0.2774953,0.059000175,0.13848592,0.095686086,-0.529485,-0.31007472,-0.45626426,-0.22945191,-0.07799927,0.9524625,-0.27622953,-0.11591199,0.055483777,-0.3770238,-0.122707,0.34806266,-0.0015807375,0.12509996,0.4018116,0.1783482,-0.6075373,0.58317965,-0.2198381,-0.07062544,-0.38070354,0.339559,0.38550022,-0.42415038,0.64115644,0.20855975,0.09432725,-0.30467358,-0.583992,-0.23386808,-0.04769157,-0.0015547549,0.2007512,0.37339702,-0.7052722,0.28938755,-0.012263906,-0.35416052,-0.72140455,0.3534322,-0.15095527,-0.5260315,-0.09912232,0.29268727,0.15863807,0.017580131,-0.2812769,0.27625751,-0.26199827,0.063168176,0.12795405,-0.031226685,0.12821941,-0.2071687,-0.10983666,-0.620506,0.11929528,-0.16486685,-0.29860738,0.47203317,0.010904876,0.109077595,0.15832518,0.12560277,0.23569076,-0.039790887,0.13797319,-0.27098164,-0.20193535,0.5333579,0.37656072,0.66243124,-0.55214685,0.5925985,0.11825154,0.063399956,0.2851027,0.08127191,0.2612558,-0.09590566,0.5831156,-0.030769527,-0.18859749,0.13520524,0.66957045,0.15549676,0.24058072,-0.06084068,0.00062366825,0.44021574,-0.17325298,0.1731879,-0.06887158,-0.66524893,0.11974918,-0.2679925,0.095454484,0.35918677,-0.010335515,0.24923348,0.038491957,-0.21969248,0.013872738,0.1378954,-0.098468326,-1.1427876,0.26623145,0.18366157,0.9820182,0.5277207,0.08978953,-0.017332753,0.91938514,0.021610491,0.029222438,0.2502751,0.20583083,-0.44369796,0.5097075,-0.54677063,0.65834856,0.040694147,-0.12495202,0.024383346,0.025743319,0.46062824,0.6813106,-0.24275148,-0.0953873,0.033959884,-0.46570408,0.020211577,-0.33993673,-0.034241676,-0.5017569,-0.3308518,0.6162874,0.5671909,0.32157367,-0.2249128,0.04566586,0.10388625,-0.09281653,0.14778362,-0.043070305,-0.115916185,0.013663036,-0.5375121,-0.114641674,0.3794193,-0.3222622,0.13392504,-0.01739595,-0.06265852,0.31601852,-0.036467124,-0.10948441,-0.09035424,-0.61340743,0.31729957,-0.23377351,-0.38966784,0.31610766,-0.08843261,0.32339874,0.17435805,-0.050822366,-0.26238647,0.53764635,0.02856788,0.87224984,-0.2278171,-0.01635614,-0.36762294,-0.13411772,0.008043289,-0.1423722,0.08513141,-0.31587875,0.20042665,-0.4685222,0.48995924,-0.13273999,-0.31376117,-0.21971919,-0.1502241,0.01689162,0.542326,-0.05918285,-0.21202187,-0.27095833,-0.15807115,-0.27094522,-0.2351812,-0.2162847,0.29586968,0.03303061,-0.0560413,-0.051784564,-0.017683335,0.20534097,0.41826093,-0.15222734,0.3484495,0.18637513,0.14791036,-0.45963082,0.0449139,0.031830996,0.60585564,-0.12774996,-0.049331564,-0.21102862,-0.50700647,-0.50499874,0.33926442,-0.09382743,0.5760402,0.0985831,-0.17296368,0.5906893,-0.0569372,1.0334376,-0.114846684,-0.4317796,0.21509741,0.5620695,0.010817919,-0.10222585,-0.1911603,0.81496304,0.43670988,-0.017838046,-0.09493134,-0.33506665,0.10308098,-0.040076975,-0.1685416,-0.09189197,-0.0194054,-0.44613084,0.014978233,0.101607054,0.10472044,0.34764683,-0.27161875,-0.07275844,0.17107171,0.19607021,0.19287372,-0.40969738,-0.15705319,0.3445319,0.011938234,-0.01613759,0.099482596,-0.55329037,0.3600154,-0.45923004,0.25356057,-0.323195,0.26410818,-0.3549888,-0.24696703,0.2007044,-0.08503776,0.42549098,-0.55394334,-0.21551013,-0.3062885,0.5219054,0.3825984,0.26481283,0.43341216,-0.1193239,0.08909758,-0.027868101,0.64828056,0.63323313,-0.30009645,-0.06439012,0.10061572,-0.4458553,-0.6258742,0.110033415,-0.3569757,0.16021663,0.08081104,-0.08518827,-0.63896185,0.22345285,0.18457107,0.1935529,0.059354197,-0.6932916,-0.20265387,0.0953004,-0.32641742,-0.25159395,-0.43188456,0.06524919,0.5254813,-0.0630799,-0.2813423,0.10078668,0.06751921,-0.068727635,-0.4836805,0.0077841133,-0.51183504,0.24878334,0.04476893,-0.31214762,-0.452999,0.03313761,-0.4445307,0.2609601,-0.01841312,-0.26619855,-0.056189165,-0.30268982,0.11099607,0.94430333,-0.27264252,0.3456602,-0.48574802,-0.48585665,-0.8034094,-0.30602935,0.3105545,-0.001881803,-0.05593048,-0.5376684,-0.19322588,-0.2360934,-0.25892267,-0.22156107,-0.43234196,0.3637983,0.0307986,0.30401558,-0.15564471,-0.87117416,0.30934033,0.05042355,-0.08927029,-0.44767824,0.22960506,-0.08524573,0.7857154,0.031298485,0.047793508,0.10363682,-0.30447567,0.04239772,-0.1586345,-0.069353454,-0.3849474,0.22316633,414 -836,0.33530164,-0.3668265,-0.560308,-0.0716576,-0.008330777,-0.035952155,-0.14190225,0.25662723,0.091609545,-0.52545446,-0.14971864,0.013052541,-0.044977665,0.38672987,-0.18467422,-0.55474573,-0.0748446,0.06941301,-0.40005437,0.77188486,-0.22754896,-0.019816542,-0.07141036,0.38745716,-0.015546153,0.21334712,0.42423794,-0.04514508,0.035072286,-0.14246412,0.04759693,-0.011636019,-0.63631743,0.31475073,0.0043343254,-0.32681143,0.11591091,-0.25312954,-0.32287517,-0.6195701,0.20233311,-0.8916807,0.48212886,0.09060731,-0.23665337,0.10917834,-0.07319447,0.29573122,-0.37664673,0.079117246,0.15776233,-0.1232101,-0.052071106,-0.17836785,0.17838643,-0.46848997,-0.43404052,-0.056769982,-0.33501792,-0.18801318,-0.15504967,0.15459968,-0.4063516,-0.11239711,-0.08459435,0.5436594,-0.5631226,-0.24123399,0.13219605,-0.3328179,0.48743233,-0.7378134,-0.122979976,-0.1804939,0.07696127,-0.2323528,-0.14541806,0.18144763,0.11752007,0.4913186,0.13129263,-0.08081331,-0.26528534,-0.04979269,0.29545656,0.43468747,-0.17032088,-0.6132651,-0.08723098,0.040477604,0.04758993,0.10240799,0.0018089911,-0.4297255,-0.11828113,0.19454534,-0.056055408,0.2055927,0.5338325,-0.29747894,-0.263696,0.30740777,0.52702415,0.027178338,-0.11370199,-0.11799207,0.022735955,-0.40628967,-0.24509054,0.09219226,-0.26703405,0.81993407,-0.13014312,0.33148944,0.7009208,-0.13737157,0.10902294,0.027450735,-0.055159543,-0.2566144,-0.313951,-0.2733886,0.41540432,-0.3416817,0.22297625,-0.27582154,0.6301109,0.103250034,-0.78950644,0.351805,-0.39627144,0.07563854,-0.29268923,0.65262383,0.5699473,0.23322432,0.19317158,0.851235,-0.59833217,0.021960557,-0.0051347166,-0.42417148,0.16136354,-0.04914118,-0.2382242,-0.52505416,-0.039663,0.118500926,0.039282184,-0.13360593,0.05551998,-0.5676088,0.001462996,0.20969616,0.71460444,-0.24805768,0.09954699,0.40844956,1.1262897,0.7791068,0.055710193,1.3884562,0.06446918,-0.22901022,0.10050406,0.041302115,-0.7632976,0.15166914,0.57201004,0.61386245,0.13898145,0.2141313,-0.13505018,0.51259416,-0.5517406,0.16862373,-0.26227683,0.48807546,0.029812893,-0.24622309,-0.48568952,0.052122515,-0.08711324,0.15449785,-0.15572475,0.15750816,-0.17452134,0.17303473,0.09212359,1.5791229,-0.28948715,0.24717538,0.073879,0.45349443,0.095689975,0.032699954,0.21253587,0.24678992,0.546856,0.22467737,-0.5511747,0.06598896,-0.1505236,-0.6075904,-0.17317384,-0.1993616,0.09218589,0.14904934,-0.4805878,-0.104643546,0.0144417705,-0.16668738,0.37135926,-2.7672796,-0.080187924,-0.31544286,0.30938128,-0.43360844,-0.23183538,-0.05406214,-0.27264696,0.5625208,0.55245376,0.5549324,-0.78585356,0.3261482,0.4128643,-0.34142664,-0.017468056,-0.6033659,-0.08097363,-0.13262963,0.5753611,0.21951592,-0.2920236,-0.03823096,0.1400752,0.43813226,0.06708279,0.044163574,0.1662366,0.09745773,-0.0030768712,0.4021354,0.02334652,0.5258111,-0.14918698,-0.109270655,0.295424,-0.11690325,0.2671028,-0.17732131,0.22130519,0.29593456,-0.24485652,-0.9591756,-0.85910916,-0.27388605,1.2413636,-0.25722829,-0.68196297,0.3415368,-0.09098274,-0.2448529,-0.09158663,0.2443444,-0.06710341,0.12987006,-0.93868166,0.22159147,-0.17194617,0.27419794,0.08101461,-0.19538528,-0.6959195,0.7752116,-0.04650423,0.53440666,0.7106995,0.21495783,0.048275203,-0.4011704,-0.046355028,1.0505432,0.48614255,0.009536505,0.0021730985,-0.091790594,-0.16213651,-0.1593163,0.26967648,0.586633,0.73827815,-0.041615974,0.094251156,0.22259027,-0.09679335,-0.0889692,-0.03992934,-0.29819787,-0.081953295,0.18349992,0.6132355,0.75342655,-0.22698373,0.3019797,-0.11512076,0.23427713,0.00936084,-0.42033246,0.6341673,0.7442443,-0.06418134,-0.16235982,0.60953397,0.45749107,-0.27075496,0.3965609,-0.7485876,-0.21910618,0.39600122,-0.01849381,-0.38383412,0.035135064,-0.5370106,0.29974985,-0.9724191,0.41422763,-0.393525,-0.42465994,-0.75384694,-0.4154749,-3.524975,0.12521727,-0.4845117,-0.21497114,-0.16095354,-0.18861187,0.4520432,-0.82877135,-0.41108298,0.3093131,0.08463049,0.43314,0.021799406,0.08657289,-0.26085553,0.06427891,-0.014548525,0.23052041,0.1449772,0.041873503,0.07116721,-0.49756444,-0.05820999,0.08636012,-0.42764565,0.1678945,-0.45550263,-0.41288486,-0.2597873,-0.38098314,-0.2514175,0.70923567,-0.2658334,-0.09841463,-0.14791004,0.05575956,-0.32086167,0.3459619,0.12102006,0.13734852,-0.036965366,0.13438685,-0.060264233,-0.2938974,0.07469636,0.04185394,0.29138052,0.22054088,-0.45685053,0.030504083,0.4685932,0.4134234,-0.23136972,0.69465643,0.8925125,-0.08493057,0.2249163,-0.11000057,-0.24515676,-0.60866165,-0.65770394,-0.08432913,-0.4241921,-0.5103736,0.09157578,-0.24092735,-0.8086366,0.46596718,0.015496075,0.09150365,0.12696548,-0.013812979,0.42354688,-0.22338152,-0.16211613,-0.0061544105,-0.11712861,-0.7231057,-0.3962046,-0.63050634,-0.48123083,-0.09384332,1.0343517,-0.14102037,-0.13332637,0.17446828,-0.29469594,0.03525974,0.2642242,-0.026326546,0.04792896,0.42157486,0.058626276,-0.7266709,0.5986369,0.06352201,-0.12853692,-0.7786005,0.1799928,0.51258683,-0.606327,0.4093791,0.29868862,0.035207387,-0.2066329,-0.48692688,-0.38337883,-0.14489795,-0.14057447,0.39320433,0.12937461,-0.6458619,0.37469888,0.28391334,-0.07787448,-0.596419,0.61621124,-0.07383811,-0.13945974,0.008238246,0.19988638,-0.03719804,-0.00024219106,-0.23072372,0.25374132,-0.44305018,0.29755083,0.34163293,-0.10178673,0.44082534,-0.044612337,-0.15464668,-0.71544546,-0.010626306,-0.57060474,-0.14347266,0.23717229,0.011588689,-0.016844235,0.07148398,0.052098114,0.4354014,-0.37427154,0.2092252,0.007773792,-0.44889057,0.44021568,0.47278103,0.27053562,-0.4605141,0.70223117,0.055715498,-0.1569275,-0.46423587,0.090209804,0.57729846,0.19328684,0.29402873,-0.31932887,-0.05924253,0.19361128,0.7629475,0.1473233,0.51775837,0.015715161,-0.002730896,0.35097682,0.09671999,0.17219125,0.11915609,-0.5561971,0.13035159,0.04572931,0.24267767,0.2821707,0.19760565,0.39146078,-0.04999408,-0.22588842,0.07257492,0.25433752,0.12907855,-1.0515827,0.42178378,0.23459323,0.7800563,0.6100778,-0.053414356,0.06902236,0.6368874,-0.16142279,0.14795387,0.27900976,-0.0995093,-0.55578667,0.65327144,-0.69206,0.298023,0.029444082,0.023120366,-0.014587258,0.049628492,0.22686402,0.69306487,-0.11886272,0.13221383,-0.24093919,-0.108407654,-0.09011236,-0.29515338,0.10334454,-0.34135357,-0.41244042,0.655055,0.555209,0.4355451,-0.18568386,-0.06917569,0.19727404,-0.04134219,0.34981653,-0.12335082,0.22316803,0.17492408,-0.59712225,-0.3030757,0.59186727,-0.12798828,0.13668096,-0.08071997,-0.26269814,0.2601607,-0.0022937257,-0.1357152,0.007819126,-0.54335356,0.19387865,-0.24916089,-0.20808727,0.8475497,-0.39921084,0.2690005,-0.0043740943,0.04308486,-0.13979535,0.15312888,-0.056114513,0.7796038,-0.015815655,-0.07162307,-0.5731521,-0.031449422,0.09851969,-0.057247538,0.032906104,-0.34951186,-0.08894632,-0.6915352,0.39395848,0.0038856443,-0.12356189,0.3168429,-0.32951277,-0.07508718,0.43091425,0.017104102,-0.2062978,0.20260091,-0.15861385,-0.23603976,-0.35065368,-0.19631682,0.33179972,0.11529541,0.33013645,0.022602806,-0.027761055,-0.16682518,0.22544676,0.29349837,0.10276965,0.2568262,-0.051105637,-0.32580957,-0.26588055,0.19010238,0.39416113,0.005992415,-0.010898262,-0.10155297,-0.8325732,-0.45415354,-0.2789512,-0.10528784,0.3548768,0.061259795,-0.19194879,0.5351822,0.23213972,1.2605268,0.025938155,-0.38062456,-0.090120584,0.6222354,-0.11521991,-0.049122553,-0.21533959,0.929061,0.7433026,0.0750347,-0.08856818,-0.37307587,-0.18756855,0.2729782,-0.11981038,-0.0157631,-0.024888838,-0.76753855,-0.34143057,0.27488264,0.34432808,0.045427185,-0.07501692,-0.10199863,0.13789472,0.063834086,0.26741728,-0.4969244,-0.13353288,0.3026159,0.21825619,0.021548659,0.1904789,-0.3853978,0.3853564,-0.52068263,-0.085145555,-0.29610264,0.077656515,0.033571158,-0.18803555,0.13305669,-0.111901365,0.44280002,-0.32887217,-0.27631953,-0.14885375,0.6698394,0.2517908,0.13228165,0.7840623,-0.14069119,0.024221092,-0.18737066,0.36092445,1.0708104,-0.49491537,0.15123188,0.33397838,-0.3063686,-0.68631977,0.2961898,-0.3191883,0.3419353,-0.14434105,-0.44111028,-0.5899392,0.17828846,0.09697463,-0.23087008,0.06719756,-0.671957,-0.36423385,0.12556979,-0.37990692,-0.19943243,-0.33481026,0.1501482,0.6573819,-0.389354,-0.349075,0.20866652,0.30245245,-0.09472451,-0.5867937,-0.032757122,-0.26872438,0.3495325,0.16828902,-0.5084296,-0.17153801,0.18130521,-0.40561923,0.07072649,0.09550025,-0.3185005,0.02682273,-0.2946745,-0.12056898,0.9705283,-0.04911373,0.17210932,-0.7268064,-0.28581432,-0.79906344,-0.4068384,0.4027001,0.24540393,0.013795223,-0.53634137,0.06374439,-0.069495596,0.31118393,-0.2588547,-0.33497834,0.4993575,-0.020663934,0.47754708,-0.13306434,-0.6619578,0.112130694,0.1556926,0.14520277,-0.42560253,0.4567894,-0.041788813,0.81619,-0.0013756308,0.13211331,0.12955476,-0.5291092,-0.09770876,-0.20731144,-0.3966445,-0.6951662,-0.0077561457,416 -837,0.36147222,-0.35028967,-0.46228337,-0.072776526,-0.0765855,0.24892731,-0.1755478,0.55909276,0.10223934,-0.5338808,-0.21737625,-0.1884361,0.06757313,0.6650375,-0.22310913,-0.40139404,-0.059348155,0.2154655,-0.69299674,0.5368156,-0.5152107,0.16980606,0.008884132,0.5675348,0.35075822,0.21959507,-0.027314106,-0.031823453,-0.48075727,-0.26281756,0.106505595,0.1839699,-0.41849998,0.17868944,-0.2885026,-0.35662904,-0.2556826,-0.6356163,-0.41853794,-0.82608026,0.30704924,-0.98909265,0.64216846,-0.0733156,-0.20609085,0.20228708,0.25382695,0.4767015,-0.18643558,0.0069456645,0.23873204,-0.06022605,-0.16251464,-0.20219499,-0.38146648,-0.30431458,-0.593701,0.10095542,-0.4724295,-0.15451808,-0.004705722,0.12486323,-0.14398123,0.039180394,-0.10707053,0.4288731,-0.47784853,0.11385697,0.114284426,0.1154573,0.3255086,-0.5257887,-0.29666817,-0.14537358,0.3768693,-0.26052058,-0.20383231,0.13919288,0.16112918,0.27153346,-0.20783634,-0.013150022,-0.29784873,0.03054261,0.26184577,0.53337365,-0.19909115,-0.59707415,-0.10887734,-0.023440802,0.3596836,0.2396702,0.24832587,-0.26854554,-0.010379334,-0.06501174,-0.20967591,0.45849028,0.47299588,-0.14007069,-0.22920232,0.38693252,0.49235925,0.2954757,-0.16834418,-0.10718878,-0.00425715,-0.55439687,-0.034924123,0.3331661,-0.09574619,0.5010442,-0.08178104,0.3030347,0.562938,-0.25101322,0.07237146,0.058806077,0.10651513,-0.11546894,-0.061407432,-0.40582845,0.1280325,-0.3124986,0.12031594,-0.24217278,0.6191212,0.18630265,-0.8054554,0.33298197,-0.5417481,-0.058315944,0.02799653,0.41806534,0.6713354,0.45327398,0.23952639,0.46354046,-0.1504973,-0.012744069,-0.20106815,-0.2552292,-0.13232583,-0.25727955,0.012379408,-0.5165415,-0.026148587,0.045330476,-0.3277462,0.018039228,0.635542,-0.47210607,-0.092708535,-0.05467224,0.7227728,-0.2680046,-0.11146625,1.0583817,0.9900444,0.9054148,0.14340247,1.2234498,0.2931252,-0.23800516,0.207388,-0.34619534,-0.64319915,0.35595682,0.30405614,-0.60711044,0.46876073,-0.04600802,0.06864434,0.24428236,-0.38536093,0.1828195,-0.16545452,0.0016308824,0.030581782,-0.072362065,-0.33987585,-0.40821347,-0.22412162,-0.06819786,0.23469321,0.24083018,-0.30227327,0.47003937,-0.002487858,1.7234708,-0.11876628,0.02558245,-0.11642515,0.51368976,-0.014232379,-0.22929372,-0.28188023,0.19292684,0.49131474,0.03230693,-0.5455,0.07313036,-0.09174443,-0.3962622,-0.1991332,-0.3383443,-0.11748961,-0.15944384,-0.4339927,-0.12798332,-0.14000623,-0.39885616,0.32012662,-2.6516972,-0.18234836,-0.07109717,0.3794277,-0.3122525,-0.44943753,-0.28053156,-0.46982273,0.44081393,0.16514748,0.42873988,-0.56213874,0.50408727,0.26197934,-0.5681339,-0.2235089,-0.6678533,-0.11408798,0.04027294,0.3452411,-0.1835335,0.14891173,0.24856551,0.07822461,0.3782272,-0.11323918,0.119463764,0.3558227,0.46701947,0.17974757,0.5148606,-0.1696306,0.5899193,-0.37288466,-0.15902565,0.3318213,-0.41236028,0.28919455,-0.12107196,0.18448426,0.45109335,-0.61521524,-0.87600213,-0.7996175,-0.3170924,1.2201116,-0.11941895,-0.3041562,0.10023334,-0.4648719,-0.37213853,-0.10597962,0.7234389,-0.12062863,-0.08166466,-0.75490874,-0.25543702,-0.060937632,0.23008795,-0.10505625,0.11726108,-0.48015133,0.35832608,-0.033884887,0.41549048,0.21277992,0.11680422,-0.35625562,-0.41633388,0.08884629,1.0068884,0.24861908,0.18866406,-0.08049906,-0.2728101,-0.52171034,0.015411426,-0.014589992,0.6520128,0.52696913,0.060935408,0.17252322,0.20102002,-0.09031976,0.23626797,-0.18291272,-0.28051147,-0.28634915,0.13171734,0.55094886,0.37511697,-0.0964321,0.8846963,-0.21773611,0.2919507,-0.27737883,-0.33132392,0.4417889,0.9486838,-0.19290869,-0.20507504,0.6943818,0.5315754,-0.36117497,0.43536067,-0.53276527,-0.38033947,0.38253883,-0.18156068,-0.38491395,0.3561319,-0.2247278,0.22148268,-1.0113505,0.2802724,-0.39478564,-0.4873464,-0.52401274,0.030244233,-2.6165564,0.16933203,0.0329481,-0.3882521,-0.16143586,-0.4042158,0.05301583,-0.5228961,-0.645189,0.167924,-0.020271989,0.7956133,-0.017852884,0.06404875,-0.23550205,-0.32517195,-0.20242687,0.09046644,0.15616387,0.58070546,-0.1982119,-0.49706396,-0.085865915,-0.32714757,-0.20904438,-0.012689586,-0.69177073,-0.52618635,-0.17182195,-0.54012316,-0.23851436,0.7431006,-0.31300303,-0.013690156,-0.19520533,-0.007299622,-0.14499031,0.4051591,-0.033578087,0.26909283,0.2882186,-0.24181515,0.117488,-0.15992047,0.2270034,0.16760947,0.21533884,0.4188086,-0.07224175,0.5413716,0.3903943,0.665085,-0.08482923,0.9571251,0.4876287,-0.16505705,0.22429311,-0.39678803,-0.17361589,-0.49563327,-0.14922711,0.049023822,-0.41635668,-0.6534867,-0.21540032,-0.33188593,-0.80715275,0.63549584,-0.040381588,0.14150411,-0.017023025,0.29693598,0.49666408,-0.13403334,0.09189424,-0.12441939,-0.050225765,-0.49375084,-0.2958052,-0.5416338,-0.37183383,-0.029414216,1.2033798,-0.030265436,0.13363114,0.11802036,-0.4145267,0.0901075,0.13185026,-0.07918519,0.01068301,0.31333938,-0.16904522,-0.62013704,0.35759518,-0.18676978,-0.17567773,-0.42459312,0.2700888,0.7967413,-0.56883854,0.59143895,0.39283165,-0.06460012,-0.31966665,-0.29829696,-0.14344364,0.009051929,-0.101849504,0.24931103,0.25444964,-0.6868897,0.37200046,0.34119055,-0.1826138,-0.8525017,0.55859095,0.013131182,-0.16568424,-0.048134733,0.37019798,0.20743747,0.05839849,-0.4955325,0.2563805,-0.4243208,0.32793555,0.23947053,0.0020869772,0.1561345,-0.2107348,-0.1495605,-0.83741635,0.22573519,-0.5176321,-0.32864356,0.368793,0.045367558,0.2953173,0.34211743,0.15882954,0.30839005,-0.49896303,0.028120646,-0.088257484,-0.22566342,0.092438616,0.3771639,0.45989183,-0.44440722,0.6079463,0.061862785,-0.093325086,0.017961195,0.046420053,0.42397705,0.14340156,0.400254,0.054898053,-0.41833082,0.28095075,0.8365826,0.30954158,0.39887825,0.0783967,-0.20813228,0.094231986,0.08104228,0.32327297,0.07210624,-0.49528828,-0.059634898,-0.11318431,0.113342844,0.3897008,0.06697155,0.284096,-0.04362753,-0.42048398,-0.033844028,0.13509433,-0.037122194,-1.3141135,0.41217938,0.06232362,0.74226624,0.4594265,-0.0024304714,0.05462794,0.61140203,-0.21380068,0.09836569,0.4138259,-0.085578345,-0.61797553,0.60999423,-0.7129157,0.5648691,-0.0034100327,0.061591774,-0.039227765,-0.1159828,0.5246349,0.8713452,-0.042639542,0.13120829,0.15180512,-0.2631711,0.17486703,-0.42271423,-0.0018315626,-0.69879436,-0.28829876,0.6863478,0.40735427,0.4998692,-0.0778774,0.046650544,0.10309234,-0.115407825,0.14794387,0.15176135,0.29182348,0.08806858,-0.8042528,-0.0695431,0.5047156,-0.029217025,0.1490503,0.15250298,-0.34536973,0.3267069,-0.19452988,0.019820148,-0.057768982,-0.8418923,-0.08518051,-0.5914832,-0.45729044,0.10892651,-0.173582,0.16436766,0.30692348,0.02143875,-0.2367162,0.4877883,0.2239006,0.8456035,-0.07695109,-0.27955464,-0.19490308,0.35682333,0.3397119,-0.2572968,-0.06666678,-0.16512902,-0.024801603,-0.5963433,0.42338133,0.023243926,-0.45793784,-0.06657078,0.020306163,0.10753638,0.6102889,-0.08956462,-0.039618988,-0.028495127,-0.334916,-0.27873728,-0.17422058,-0.13789578,0.24826832,0.42999735,-0.052923393,-0.11485674,0.07348907,-0.05598901,0.43126592,-0.08528378,0.56181175,0.5981313,0.25928542,-0.17259717,-0.15680705,0.11292878,0.5598256,0.03775306,-0.16281347,-0.3991412,-0.23529935,-0.32333592,0.39773098,-0.086162664,0.4375945,0.15183316,-0.32025546,0.5396289,-0.13424735,0.93803406,0.045300215,-0.3469925,0.14589624,0.3363441,-0.030574663,-0.16746758,-0.42062807,0.86219674,0.35139504,0.0033434331,0.022649286,-0.42548797,-0.16157383,0.25895542,-0.2769291,-0.26343942,0.0053297975,-0.51212496,-0.28111526,0.23589264,0.18149734,0.23800832,-0.1451693,0.3784156,0.19943862,0.07036758,0.16943836,-0.52288204,-0.08249289,0.4849856,0.37202105,0.028946325,-0.011118789,-0.4639224,0.28939387,-0.52309644,0.04012795,-0.11492163,0.17654686,-0.14556392,-0.40048194,0.2392615,0.25393242,0.35780036,-0.33448777,-0.39780465,-0.35328278,0.55248195,0.18342185,0.12792401,0.45711198,-0.31141332,0.08321486,0.082837105,0.59730333,0.9347866,-0.16395463,0.082315505,0.43065393,-0.37839222,-0.6643949,0.4194484,-0.3154485,0.35666633,0.02688774,-0.12053167,-0.59699565,0.31408677,0.3704879,0.084472,-0.13009435,-0.3652879,-0.19408311,0.39691177,-0.22841424,-0.25519246,-0.45840153,0.052126188,0.46622673,-0.27488202,-0.34070864,0.09348485,0.25788617,-0.3461,-0.31680703,-0.16437665,-0.30734387,0.27573493,-0.13049866,-0.4172682,-0.3003627,-0.20647116,-0.41390717,0.21622084,-0.0070452243,-0.43775022,0.055215564,-0.29041734,-0.21426387,0.95658296,-0.35948744,0.019222012,-0.29691067,-0.5009979,-0.7173676,-0.37010908,0.12613277,0.13619865,-0.12269289,-0.57929677,0.14228702,-0.1651472,-0.32876694,0.10413747,-0.36670926,0.34670186,0.07622239,0.36041972,-0.06693222,-0.76557165,0.36068392,0.14406013,-0.21038824,-0.60496277,0.47199082,-0.034650028,0.8978706,0.033991236,0.15316005,0.3355504,-0.4256055,-0.1737554,-0.00978089,0.013202999,-0.8120989,0.18314576,421 -838,0.3006641,0.03711903,-0.48590174,-0.16693991,0.06052093,0.04349509,-0.20053726,0.4215006,0.42587027,-0.319959,-0.30871126,-0.45778835,0.1399073,0.39716807,-0.118234545,-0.7782378,0.13174076,0.07342293,-0.5162337,0.63652706,-0.43312514,0.4289168,0.23573445,0.36910298,0.062908895,0.29791585,0.36791185,-0.081186526,0.029949853,-0.19919734,-0.1166658,0.016780207,-0.47892806,0.030525846,-0.27140728,-0.34381056,0.09221992,-0.62195945,-0.5259876,-0.70916337,0.33042482,-0.81488544,0.5557601,0.25245303,-0.06007127,0.14288181,0.13285062,0.20180283,-0.3268602,0.0113055995,0.090792395,0.028389243,-0.036473546,-0.007400453,-0.52920485,-0.2614905,-0.57758254,-0.019794753,-0.42907083,-0.30985415,-0.319896,0.017171822,-0.25404707,0.121324874,-0.035519708,0.37106717,-0.39232135,0.16035068,0.28001943,-0.26897427,0.22302486,-0.5262124,-0.19515349,-0.24533717,0.2348553,-0.32388034,-0.2042054,0.2601927,0.33913818,0.38236752,-0.07032012,-0.112131365,-0.19462049,-0.09997296,0.081088856,0.6308121,-0.21216445,-0.4638482,-0.16035277,-0.075606845,0.15142466,0.3393961,0.19007917,-0.34691134,-0.131808,-0.23265533,-0.35584787,0.4058216,0.52245665,-0.35905048,-0.31209084,0.27732095,0.27379763,0.26581392,-0.07006886,0.024776498,0.032843437,-0.59673494,-0.16572598,-0.026181787,-0.18471648,0.7000871,-0.064154156,0.14279902,0.6662485,-0.100281596,0.053477466,-0.071221046,-0.14673358,-0.15839039,-0.22673185,-0.13772605,0.21495736,-0.39460966,0.2402935,-0.20117116,0.6840742,0.31239507,-0.53937215,0.39690694,-0.60302514,0.21572717,0.03313082,0.44197333,0.6289042,0.28299144,0.29082635,0.6011455,-0.40376493,0.10106465,-0.02288269,-0.24635458,0.083242886,0.011514981,-0.053685922,-0.4344903,-0.1616803,0.16014087,-0.23014146,0.5580008,0.39552972,-0.44456613,-0.05158106,0.029457768,0.89683455,-0.20589232,-0.19060123,0.80323404,1.0912075,0.83178276,-0.014978959,1.3249929,0.24107341,-0.2109565,0.11334888,-0.16267085,-0.78290766,0.06789906,0.30488807,-0.47392678,0.26976943,0.07711614,-0.13353743,0.20563471,-0.34950662,-0.019143483,0.07351423,-0.08280045,0.034866404,-0.22761959,-0.2514468,-0.28576833,-0.16099657,-0.029994385,0.31977215,0.27528626,-0.12607712,0.4250044,-0.08189497,1.2882236,0.07151619,0.0349528,0.040475354,0.46607184,0.42933175,-0.03955479,-0.14680867,0.31712583,0.4145325,0.0020340334,-0.55528086,0.09354039,-0.19889294,-0.26121065,-0.038851526,-0.35497245,-0.21126322,0.12622485,-0.2939038,-0.020183353,-0.09403503,-0.24964382,0.32141343,-2.9004667,-0.22328125,-0.1237421,0.3573973,-0.10635957,-0.16465805,-0.24734674,-0.48057154,0.5542613,0.30180633,0.55820036,-0.57573336,0.2584491,0.49532893,-0.6042782,-0.2700857,-0.56104374,-0.035825204,0.027555672,0.2909661,-0.074614316,0.2036374,0.16363983,0.3819377,0.45629978,0.24640441,0.12294976,0.21188849,0.5853485,-0.028347686,0.41267386,-0.11991344,0.63400036,-0.18127711,-0.20004743,0.21837896,-0.370316,0.386225,-0.34109357,0.03814618,0.39762935,-0.36394706,-0.83601564,-0.4317008,-0.42910644,0.8950953,-0.18738933,-0.2871723,0.28765616,-0.29286125,-0.25404242,-0.07190783,0.9566204,-0.22948404,0.0850715,-0.68205327,-0.10320866,-0.023989573,0.19566838,0.055460382,-0.10339906,-0.4657003,0.5696243,0.020111052,0.4833363,0.3489875,0.121428706,-0.26932123,-0.5978493,0.20313956,0.93175673,0.22039665,0.19998603,-0.17045969,-0.1703093,-0.4495804,-0.068074234,0.06653298,0.61442137,0.46198186,-0.08112864,0.15109593,0.3008441,0.32866707,0.04856545,-0.08527724,-0.30774447,-0.032340225,-0.13450356,0.5448152,0.8449642,-0.36035,0.2291012,0.00024753343,0.4500247,-0.21119313,-0.47094774,0.73294854,0.8926013,-0.044921756,-0.1157128,0.5742247,0.34270915,-0.19501781,0.43924376,-0.50275415,-0.23549491,0.5580327,-0.089874364,-0.37219775,0.36836156,-0.20538878,-0.10915405,-0.9056389,0.25729764,-0.13157831,-0.12795849,-0.30305478,0.057861436,-4.1829047,0.046173353,-0.22587554,-0.23969108,-0.26251075,-0.06670704,0.06506271,-0.38455772,-0.696958,0.27227625,0.038449854,0.6024299,-0.27952766,0.18652473,-0.22064061,-0.22349168,-0.3091612,0.17612024,0.06560641,0.4050009,0.017042384,-0.40970668,-0.1611286,-0.10044994,-0.5892608,0.14208661,-0.49454522,-0.20675613,-0.1779656,-0.7364123,-0.15635398,0.73083496,-0.34687924,0.014821082,-0.22099257,-0.025965473,-0.17408828,0.23615919,0.2838288,0.19391806,-0.099855654,0.049404938,0.047852665,-0.09952211,0.35730043,0.24322219,0.20353746,0.20539403,-0.029884165,0.14469038,0.28783348,0.6295168,-0.101479255,0.7712055,0.35548273,-0.046290804,0.26443005,-0.2577341,-0.24178724,-0.55543286,-0.28784502,-0.09036163,-0.30840117,-0.65006363,-0.2016492,-0.30924007,-0.6963766,0.345373,0.07667586,0.13025013,0.05023709,0.06153378,0.3041465,-0.2257965,0.12149406,0.07055224,-0.013399561,-0.4391658,-0.12309507,-0.55575603,-0.3409494,0.3455243,0.6674202,-0.22369711,0.048125025,-0.0117563745,-0.12568106,-0.046177585,0.19488658,0.1498775,0.20456667,0.4194218,-0.12679733,-0.6031721,0.5276617,-0.19774397,-0.4336563,-0.760122,0.2557837,0.5523604,-0.7234724,0.75907737,0.3640891,-0.060372617,-0.12011305,-0.46810094,-0.36044577,-0.04271615,-0.082067855,0.18836771,0.14567617,-0.69118625,0.29109433,0.120233715,-0.2570332,-0.6633069,0.72343904,-0.079763226,-0.45650116,0.048160106,0.36239052,-0.04552408,-0.038545694,-0.17805599,0.16369547,-0.2544447,0.21155381,0.21628666,-0.076781146,0.49390182,-0.17668597,-0.058100987,-0.7710008,0.18126988,-0.4610599,-0.16077414,0.10587881,-0.016782552,0.0928468,0.10734322,0.059909463,0.17983238,-0.18084443,0.21445668,0.013964285,-0.21468814,0.35327852,0.335255,0.5768648,-0.24698128,0.63224345,-0.061019078,-0.111937605,0.22182511,0.24740012,0.35816967,-0.021157106,0.30775318,0.18927689,-0.3007606,0.10905069,0.62203246,0.14315337,0.060504425,0.33156547,0.016178856,0.36377835,0.11339363,0.002413607,0.14614101,-0.5843785,-0.14298598,-0.34737274,0.088848,0.45482412,0.1768146,0.12968771,-0.14250916,-0.54422766,-0.048605938,0.2864438,0.29428473,-0.9929301,0.17873871,0.06883578,0.71397257,0.4820136,0.102188975,-0.12582992,0.40162173,-0.102916785,0.20625223,0.28705612,-0.016065983,-0.4959365,0.5761228,-0.45965552,0.67613727,0.1162622,-0.011186537,0.07133666,-0.08409411,0.21273454,1.0931908,-0.14665976,0.03908459,0.045700505,-0.16337545,0.09780896,-0.53999734,0.009824793,-0.36294666,-0.36451873,0.75241774,0.35478342,0.13830306,-0.19236839,-0.03616123,-0.0214035,-0.124792,-0.13828665,0.03327547,0.20325382,-0.14924553,-0.7178295,-0.12846683,0.5732673,-0.16004519,0.097891726,0.0057589025,-0.19504671,0.30242833,-0.23974375,0.020026492,-0.11491404,-0.95505005,-0.12040484,-0.41055062,-0.3112228,0.29368275,-0.22188966,0.3790647,0.15290096,0.025066068,-0.2469464,0.69199306,0.07270222,0.7541997,-0.07805318,-0.16740651,-0.2589397,0.21970946,0.24548332,-0.22139935,0.017355464,-0.2591389,0.07475852,-0.44866154,0.42785537,0.094929196,-0.27663627,-0.14900061,-0.09021034,0.08516124,0.50455546,-0.12102225,-0.13580133,0.09116777,-0.2328579,-0.33887455,-0.056156006,-0.0770651,0.20082025,0.3940648,0.01838406,-0.06375743,-0.13716206,-0.12938237,0.17695726,-0.03388879,0.42129362,0.2558541,0.3308091,-0.1984818,-0.026302397,0.13586678,0.42905334,-0.0107509345,-0.12957035,-0.13774605,-0.5300775,-0.43021205,0.13595806,-0.13692683,0.3863761,0.106978394,-0.059486687,0.4607451,0.15417945,0.7997218,-0.00831614,-0.41940644,0.22482233,0.43782067,0.04745853,-0.2483862,-0.18757184,1.1533794,0.45761076,-0.059749704,-0.21848758,-0.12825309,0.026067153,-0.10231402,-0.24630593,-0.23253739,-0.051166583,-0.55193007,-0.07568375,0.14017843,0.28289452,0.41443935,-0.09479848,0.19431585,0.21669276,0.15288614,0.17821486,-0.7411461,-0.31476948,0.4105126,0.205557,0.11023811,0.16744912,-0.3737605,0.46240056,-0.37248802,0.076297544,-0.3668425,0.07624469,-0.32282126,-0.27650264,0.20787726,0.009900428,0.49910092,-0.4091781,-0.26747277,-0.48801443,0.3147692,0.16682953,0.22887324,0.6503103,-0.115021534,-0.049428344,-0.059758414,0.7009225,0.99728173,-0.16438179,-0.13724762,0.4632454,-0.4524599,-0.4343078,0.16346927,-0.4494451,0.17687605,-0.08284851,-0.0051694117,-0.5415231,0.104500614,-0.13516437,0.14521927,0.17844094,-0.73691624,-0.32087168,0.21480119,-0.16325879,-0.35045096,-0.5265897,0.1682623,0.70944005,-0.09263611,-0.18084757,0.25756308,0.015826354,-0.15384157,-0.7449599,-0.026993096,-0.1918151,0.3917303,0.13787618,-0.22709364,-0.07348836,0.05387071,-0.43483993,0.25927225,-0.06867989,-0.33693206,0.048285082,-0.36073866,-0.28255698,1.0315589,-0.3365477,0.06055669,-0.5051768,-0.5718051,-0.65518165,-0.5160827,0.62706107,0.058515895,-0.10687586,-0.5849489,-0.12820615,-0.1270197,0.1222535,-0.01008596,-0.11557368,0.41198516,0.07176565,0.4884572,-0.14190024,-0.9059295,0.15381323,0.0848755,-0.30800465,-0.70800096,0.3362942,0.09420872,0.72040826,0.0857295,-0.12732418,0.6150508,-0.47810593,0.03289619,-0.3458779,-0.025008053,-0.4782864,0.24480808,426 -839,0.40313807,-0.4503812,-0.38844034,-0.20038478,-0.3545233,-0.119619876,-0.18417384,0.3913255,0.40901175,-0.16982375,-0.22456543,-0.14937979,0.08076143,0.6196217,-0.19780298,-0.60329866,-0.20551904,0.138492,-0.8246326,0.53446615,-0.579121,0.101569176,0.02843109,0.6478316,0.12279434,0.0920192,0.2629954,0.023943752,0.12672399,-0.09586834,-0.09707453,0.4574871,-0.70040256,0.07430432,-0.2637898,-0.3693298,-0.13347577,-0.54094523,-0.28031406,-1.0656953,0.24390234,-1.1174997,0.60023075,-0.111219965,-0.28442678,-0.1362903,0.5518201,0.4359231,-0.45392978,-0.012186043,0.23895387,-0.29104626,-0.19472325,-0.23253757,0.010543197,-0.50906724,-0.6998516,-0.08934671,-0.5517542,-0.34232256,-0.26548368,0.33494052,-0.3799999,0.025631694,-0.21881811,0.5900088,-0.38934875,-0.05183484,0.42359623,-0.1304944,0.565099,-0.5456267,-0.0460151,-0.14856197,0.41111338,0.06099065,-0.53577584,0.40165827,0.49300894,0.11003544,0.17293413,-0.30406168,-0.28162715,-0.027282774,0.01845328,0.3036741,-0.25402394,-0.5285287,-0.1444932,0.16151504,0.4114213,0.6970537,0.07604602,-0.238355,0.040963117,0.05689111,-0.073208265,0.88245577,0.57259744,-0.13730653,-0.50034237,0.2116701,0.60583377,0.2140301,-0.31717524,0.05931821,0.076154366,-0.7164753,-0.06952574,0.2975799,-0.19115347,0.5096072,-0.25031146,-0.02548325,0.9566615,-0.27554515,-0.29109335,0.084369265,0.09312507,-0.24577975,-0.27905026,-0.32658496,0.36556473,-0.5030317,0.07565407,-0.42058828,0.7619781,0.07586919,-0.74905825,0.14402258,-0.7234084,0.26216128,-0.014766593,0.7035869,0.9434468,0.63138884,0.70557183,0.88207906,-0.04046495,0.23905085,0.037139546,-0.40631446,0.1544017,-0.5869985,0.14250204,-0.56489515,0.053979266,-0.24568802,0.026531557,0.15309107,0.58812875,-0.7081876,-0.2576472,0.23600312,0.68692714,-0.25461793,-0.15271406,0.7737184,0.88256335,1.1300414,0.10762579,1.1642538,0.44639525,-0.17281811,0.25318143,-0.20297277,-0.803566,0.30374566,0.281299,-0.68222475,0.31552956,-0.23217273,-0.004525905,0.23089129,-0.64391834,-0.034815338,0.01549852,0.38401818,0.290167,-0.1831367,-0.47550353,-0.12888806,-0.12515639,0.0076059154,0.201997,0.24929135,-0.24945356,0.5132933,-0.09757928,1.3239901,0.046651583,0.055247784,0.065776326,0.6324517,0.27919987,-0.058321446,0.0691741,0.381826,0.44471478,0.2419982,-0.5923167,0.31591424,-0.23521398,-0.37457785,-0.1289769,-0.4834052,-0.058286086,-0.012389779,-0.3497331,-0.31758234,-0.22219075,-0.10986104,0.45650733,-2.5666063,-0.25712317,-0.025025347,0.31138313,-0.23312749,-0.14945512,-0.15582682,-0.7108753,0.4531381,0.3511833,0.52480966,-0.6511806,0.38326105,0.50899655,-0.72029537,-0.16159871,-0.98089606,-0.2832177,-0.082864255,0.52821594,0.09111861,-0.18859096,-0.006052756,0.32148233,0.8617652,0.1559711,0.2243375,0.6172499,0.6169949,-0.104166925,0.86521626,-0.13948755,0.47083005,-0.43367946,-0.2876034,0.25915226,-0.4419056,0.16642551,0.0066803196,-0.069283344,0.8995505,-0.51536024,-1.3003627,-0.49965724,-0.12761463,0.91463304,-0.49375868,-0.57528496,0.24754083,-0.33658385,0.01784687,0.033235412,0.84300685,-0.11825784,0.20780669,-0.7933542,-0.033902675,-0.024589172,0.27402988,0.042894695,-0.1310512,-0.33369875,0.69589525,-0.09967188,0.42577282,0.109214075,0.11877948,-0.8309863,-0.68476933,0.09529742,0.78530526,0.28966105,-0.115754165,-0.18787716,-0.39354602,-0.11814954,-0.22424872,-0.1047484,0.7721477,0.7229247,-0.1727913,0.28996205,0.47669482,-0.27694222,-0.107676454,-0.33574653,-0.28817227,-0.18869591,0.08210551,0.66978407,0.87069035,-0.20386137,0.77920073,-0.20523976,0.35944238,0.041090798,-0.59287804,0.7724204,0.8780701,-0.1437539,-0.11277174,0.5674339,0.49709812,-0.41219243,0.5727278,-0.53677636,-0.3817784,0.76873416,-0.24290186,-0.64697224,0.19359465,-0.29419506,0.075520635,-0.7875745,0.2504642,-0.38478163,-0.35735145,-0.63463384,-0.10754921,-3.10011,0.21113782,-0.10139779,-0.23293985,-0.52491933,-0.16054727,0.177161,-0.66468924,-0.70033073,0.1860985,0.2862518,0.6610204,-0.18342014,0.15542673,-0.3804771,-0.08631915,-0.13335897,0.3171949,0.29792917,0.37960878,-0.0743075,-0.46178904,0.04368347,0.023279516,-0.6676635,0.112330765,-0.7293741,-0.5685058,-0.089901276,-0.7492421,-0.38694045,0.72808313,-0.4647968,-0.11987919,-0.28371117,0.2358848,0.16334467,0.3135879,0.13866241,0.26693165,0.22331555,-0.13223106,0.124432385,-0.09734646,0.42889297,-0.17499463,0.2451735,-0.006427283,-0.122188866,0.3509936,0.5593595,0.8496337,-0.15995397,1.1896195,0.6054829,-0.0040116482,0.15821867,-0.24487518,-0.35197592,-0.720071,-0.17673309,-0.16213088,-0.49411345,-0.33710727,-0.035824556,-0.30292043,-0.7865111,0.93397903,-0.017237728,0.34448043,-0.116618305,0.3325762,0.5554026,-0.16470863,0.11058563,-0.10425662,-0.24961787,-0.5084821,-0.1991949,-0.48184657,-0.677392,-0.17970896,0.8917689,-0.3271208,0.04897702,-0.14355788,-0.27802533,-0.06990502,0.24059387,-0.059750292,0.43127835,0.56706315,-0.007922833,-0.7511628,0.3722502,-0.024964178,-0.104614414,-0.74084574,0.40303087,0.78518075,-0.7906795,0.7445688,0.19272192,-0.05941397,-0.5060443,-0.6651411,-0.25702706,0.031490196,-0.11065915,0.5474581,0.1304987,-0.89082456,0.6882758,0.4480455,-0.6222276,-0.68863875,0.24884641,-0.19700246,-0.43851808,-0.033207797,0.29311383,0.1702624,0.07271131,-0.41262445,0.31450644,-0.39973202,0.14757508,-0.01319322,-0.047136564,0.38887823,-0.17999242,-0.2437545,-1.0323507,0.1871938,-0.62231755,-0.44316742,0.426386,-0.0023526002,-0.1646353,0.36262754,-0.17824419,0.31200972,-0.15345985,0.10559202,-0.14271021,-0.38945803,0.21697104,0.559004,0.32097557,-0.4759272,0.7188824,0.20203269,-0.343091,-0.065010056,-0.086908825,0.2935695,-0.054303348,0.57819086,-0.20250721,-0.25700602,0.40568328,0.6997799,0.015320365,0.6529176,0.046617907,0.06821527,0.29490992,0.014114599,0.2776979,-0.19801772,-0.58133614,0.16890936,-0.37118506,0.14165601,0.56170434,0.24232495,0.35690507,0.17730153,-0.24595912,-0.03492464,0.27851674,-0.04815604,-1.6614476,0.44181016,0.3660957,1.0593079,0.4292195,0.1225098,-0.027475381,0.92529327,-0.2692498,0.012343925,0.58274835,0.20681651,-0.32262692,0.91663057,-0.87068844,0.41979793,-0.24238144,0.022740424,-0.013347837,0.327004,0.4738458,0.88523865,-0.22439174,0.036584787,-0.09795693,-0.09390473,0.31306353,-0.47840914,0.14385004,-0.29713145,-0.5074065,0.6438685,0.36926386,0.50880605,-0.19923155,-0.023219155,0.07900085,-0.1662514,0.28669295,-0.09647102,-0.21463574,0.07113417,-0.63220406,-0.01261736,0.6364827,0.16893859,0.18732445,-0.19098113,-0.13144611,0.16669603,-0.18871953,-0.020406261,-0.11969352,-0.88947815,-0.1164907,-0.2072498,-0.55880564,0.7893183,-0.46957552,0.09517092,0.25963125,-0.010084261,-0.25764772,0.078731656,0.14157693,0.94801205,-0.019236708,-0.26750562,-0.24404915,0.05851658,0.13052498,-0.34351906,0.08730956,-0.4127083,-0.09561926,-0.38737187,0.58942443,-0.12664104,-0.6872197,0.10315021,-0.17142832,-0.03988422,0.6111124,-0.063307546,-0.07860358,-0.089194596,-0.41692758,-0.25609526,-0.19951351,-0.17710279,0.36721393,0.2393203,-0.057582293,-0.17295583,-0.07220588,-0.1529954,0.6911566,-0.19505446,0.49315813,0.41026223,0.32553008,-0.032414626,0.1565247,0.20502484,0.69755125,0.2746748,-0.11576951,-0.43327084,-0.39249966,-0.26932752,-0.03158356,-0.08170659,0.36491212,0.013644591,-0.43139789,0.94136924,-0.036384568,1.3437909,-0.022475548,-0.51643205,0.12255031,0.55147177,0.041787084,-0.042528585,-0.48707774,0.7782392,0.50153774,-0.0972004,0.1489899,-0.60334986,0.06979678,0.5200829,-0.39329365,-0.2603736,-0.11682612,-0.5280369,-0.38973996,0.2694055,0.18175316,0.22398424,-0.2335363,-0.07521615,0.14031558,0.016245976,0.53952754,-0.45016274,0.0323112,0.11673234,0.4376779,-0.048003603,-0.021927029,-0.4315907,0.3016579,-0.5332986,0.30213904,-0.63236624,0.3049269,-0.28706503,-0.29390103,0.14337488,-0.07087726,0.4623493,-0.08400708,-0.32712424,0.020910004,0.55630815,0.29147887,0.12624799,0.6863323,-0.28740373,-0.0044869557,0.16835235,0.58870804,1.4422178,-0.73298097,-0.031532988,0.24073581,-0.45532617,-0.7637794,0.744384,-0.29757264,-0.020746192,-0.0030340205,-0.5123338,-0.35852286,0.16538198,0.17403616,0.2943287,-0.16319413,-0.4969519,-0.17290811,0.49186638,-0.28094202,-0.15198165,-0.3877512,0.4572042,0.61550266,-0.17743821,-0.5048075,0.07138535,0.3364917,-0.2219999,-0.5183373,-0.07882441,-0.2967185,0.38632992,-0.0028115276,-0.33796015,-0.011685133,0.121021785,-0.69053674,0.1029641,0.02853325,-0.34228548,0.17388006,-0.24943167,-0.051651824,1.0243894,-0.45809212,0.006139969,-0.684194,-0.5022936,-0.9566024,-0.21526338,0.2788201,0.05999953,0.041336957,-0.6339918,-0.09393164,-0.057074185,-0.37508568,0.044650078,-0.55025536,0.39724755,0.12576462,0.497818,-0.29102194,-0.8474795,0.23632812,0.16726351,-0.047324717,-0.6650663,0.71865493,-0.1397196,0.81869936,0.014397167,0.13649784,0.18807583,-0.38209605,0.021854855,-0.26777756,-0.18203847,-0.85051996,-0.09696373,428 -840,0.32783356,-0.14121215,-0.80863315,-0.19212647,-0.34795097,-0.07910989,-0.4074962,0.13533454,0.40132746,-0.052700203,0.07182936,-0.09848285,0.033634033,0.52881104,-0.05934388,-0.91293436,-0.046712816,0.10141548,-0.7183413,0.5371384,-0.4738265,0.26756778,-0.3278687,0.5458364,0.2696471,0.25678626,-0.010623217,0.038536977,-0.082148604,-0.040225834,-0.17303903,0.3603249,-0.4349996,0.17099996,0.021018812,-0.28511444,-0.05854169,-0.2940679,-0.20786373,-0.7498687,0.35422418,-0.599468,0.6551707,-0.0861497,-0.374282,-0.092389785,0.30001888,0.38395348,-0.2988533,0.17016329,0.17996442,-0.25259998,-0.055832703,-0.1935,-0.4781233,-0.5321174,-0.6042631,-0.046075106,-0.8089991,-0.17027377,-0.21082897,0.2841814,-0.3348248,-0.17391771,-0.22513752,0.51341313,-0.3676982,0.17876285,0.27788952,-0.06210458,0.31988743,-0.4927437,-0.18678685,-0.11103027,0.37060586,-0.13294423,-0.4747287,0.25500885,0.4045259,0.28762245,0.09757918,-0.15548514,-0.29357305,-0.27519137,0.13163574,0.32066408,-0.089924656,-0.3868716,-0.34426594,-0.076472886,0.10768827,0.37247518,-0.064368255,-0.44898593,0.119787075,0.011776105,-0.048912365,0.5294847,0.37081003,-0.14151146,-0.4179039,0.27759323,0.3548975,0.22121316,-0.2022749,0.2624067,0.042073894,-0.4950552,-0.18733983,0.0967258,0.20165019,0.46898606,-0.06897301,0.31045088,0.6583452,-0.26553956,-0.1700495,-0.1349352,-0.07021574,0.009882431,-0.46192098,-0.18139331,0.06772641,-0.65643185,0.10357078,-0.18628877,0.5197167,0.07012891,-0.742888,0.2793183,-0.75954914,0.10718425,-0.045367163,0.6519857,0.9700165,0.4335269,0.2429489,0.76040655,-0.3544793,0.17149138,-0.024131685,-0.4177054,0.13148502,-0.08011644,0.1541066,-0.6389793,-0.14074285,0.0339983,-0.085521124,0.14883637,0.4091312,-0.57632875,-0.022076374,-0.045897532,0.71886325,-0.3810853,-0.11697819,1.0375754,1.1372632,1.0297323,0.03720804,1.3015872,0.34499952,-0.17563593,0.052936535,-0.23408179,-0.4233035,0.26103553,0.07893294,-0.33123174,0.47503698,-0.03891887,0.022205437,0.482114,-0.28800085,-0.08352488,0.09184656,0.26378372,-0.001402835,-0.2085286,-0.3339161,-0.25736594,0.1363455,0.045602545,-0.086301126,0.38029456,-0.26127,0.6127019,0.035428327,1.2689477,0.05054004,0.08683408,-0.1682371,0.46989822,0.23378591,-0.276758,-0.20536333,0.3218254,0.35840544,0.118543774,-0.5822745,0.014700632,-0.3425587,-0.32784572,-0.29469863,-0.4418123,-0.016462406,-0.3535439,-0.28125682,-0.17131619,0.021306323,-0.22044908,0.46070996,-2.676391,-0.2360789,-0.19736208,0.17743045,-0.07056721,-0.25730228,-0.1457852,-0.41004407,0.40883872,0.30990574,0.3471965,-0.45661506,0.48159358,0.47528902,-0.47709003,-0.15783225,-0.6742069,0.027180491,-0.048965532,0.32812056,-0.23635195,-0.0008553763,0.0053429133,0.25677904,0.6106294,-0.0608898,0.10561796,0.19915096,0.3637123,-0.023312578,0.47551313,0.05788344,0.66416603,-0.29572818,-0.18921797,0.29235217,-0.3539333,0.2916441,0.08081878,0.0595813,0.5803261,-0.56631553,-0.9653823,-0.5356793,-0.21900551,0.9645334,-0.31985566,-0.39184716,0.3405273,-0.3268158,-0.33022586,0.04582077,0.47199544,-0.056669395,0.10639358,-0.7479449,0.043334797,-0.013608803,0.22411604,-0.08587766,0.08036217,-0.4970862,0.3891109,-0.09468863,0.35795784,0.44308516,0.1675445,-0.44350263,-0.50457406,0.16587518,0.74915767,0.35848716,0.04785494,-0.14442939,-0.23252022,-0.16672574,-0.13064939,0.17319883,0.5796159,0.5799404,-0.070323385,0.29777256,0.33007726,-0.35913953,0.23153548,-0.13852699,-0.26289776,-0.068057254,0.27179787,0.56644183,0.6911908,0.11036533,0.6571892,0.05011657,0.17206798,-0.22877991,-0.6135851,0.63529724,0.9071357,-0.16652237,-0.41033086,0.6360393,0.42074904,-0.4060916,0.48527423,-0.33583546,-0.10451286,0.65632236,-0.16652803,-0.49692246,0.09632966,-0.2729173,0.040722,-0.9804418,0.20654249,-0.13787948,-0.80002016,-0.4343575,-0.026367769,-4.0432043,0.14341669,-0.2578001,-0.23617043,-0.1524966,-0.22651494,0.38600788,-0.46607995,-0.75410074,0.06513911,0.12757947,0.6309246,-0.22562988,0.015572533,-0.20652507,-0.31957218,-0.2740157,0.33741602,0.16000195,0.24625237,-0.05855288,-0.4119468,-0.017156659,-0.17783737,-0.64826506,-0.011878227,-0.45770562,-0.38812736,-0.052333966,-0.73540825,-0.18964799,0.8001767,-0.29297945,-0.159379,-0.37180722,-0.02850095,0.022039192,0.4277371,0.15493353,0.29645786,0.33116713,-0.02913248,-0.16053666,-0.19878499,-0.01063924,-0.043403387,0.22735365,0.26103184,-0.020051053,0.441378,0.42901823,0.74260616,-0.05823512,0.8365585,0.25534785,-0.09904013,0.34746668,-0.5012847,-0.41101936,-0.524951,-0.3950273,-0.20494771,-0.44079807,-0.5607094,-0.27726483,-0.36752465,-0.8299308,0.53239775,0.1297111,0.33141723,-0.22749883,0.22775328,0.23253055,-0.19481586,0.030673137,-0.19806664,-0.15283649,-0.45580444,-0.2537384,-0.6134386,-0.68332815,0.2117595,0.9838149,-0.33960596,-0.0019441334,0.10899782,-0.4545795,0.04942509,0.49985766,0.27416882,0.33193362,0.3503677,-0.050931826,-0.6518693,0.30893633,-0.1495343,-0.15174171,-0.6846681,0.09386295,0.9361908,-0.66629946,0.6226519,0.38420382,0.16632754,-0.24691863,-0.45582283,-0.19503753,0.15279539,-0.26345634,0.661809,0.38619804,-0.75721234,0.3822012,0.1014493,0.00047030053,-0.5865264,0.5708697,-0.07023962,-0.1763205,0.19321321,0.4313849,0.031697903,-0.10726962,-0.1952526,0.3856096,-0.2427668,0.2171429,0.22794133,-0.07317657,0.37049222,-0.0775599,-0.34033167,-0.7097232,-0.018632168,-0.6203138,-0.34624735,0.18059595,0.08274726,0.22479863,0.1814472,-0.029686704,0.2927879,-0.3867782,0.13515331,-0.17241216,-0.29039624,0.04533476,0.49938145,0.3343561,-0.5976079,0.6287923,0.1391457,-0.03160136,0.100563735,0.10550579,0.5014077,0.01937717,0.7612756,0.005374814,-0.2660673,0.24262583,0.74584395,0.13235384,0.47545874,0.13051736,-0.13250698,0.18055618,0.120205045,0.22911851,0.07613311,-0.15981276,-0.013152045,-0.21364002,0.25222918,0.5344222,0.10090735,0.35634816,0.0064708665,-0.21687436,0.30927572,0.15903954,-0.08656976,-1.4199991,0.58130056,0.4996511,0.71566063,0.5973009,0.22548616,-0.050321043,0.48132542,-0.30736747,-0.08008341,0.48234165,0.17783333,-0.4672083,0.70168227,-0.6512381,0.5960906,-0.074226476,-0.07115138,0.14889084,0.105940394,0.5025947,1.1180955,-0.14519116,0.21888232,0.14950027,-0.19668572,-0.011799921,-0.26002213,-0.06672376,-0.57507324,-0.35438752,0.7253851,0.41156888,0.2810956,-0.23916064,-0.16181423,0.22255497,-0.11861787,-0.062884085,-0.12597425,-0.008353104,-0.2467748,-0.5864132,-0.31496412,0.45590016,-0.16618407,0.11709121,0.089841045,-0.22108977,0.22022486,-0.12920593,0.0400022,0.04216826,-0.6874168,-0.04084873,-0.34783402,-0.54106456,0.56528366,-0.62729186,0.29337063,0.28343946,0.17687334,-0.34098253,0.51026016,0.023333317,0.7593424,0.040779304,-0.0808644,-0.06421036,0.16079135,0.3942795,-0.30746332,-0.20880377,-0.36665273,0.11491597,-0.6098087,0.40220198,-0.027266553,-0.42068088,-0.07097267,0.05204979,0.13978635,0.40854517,-0.17363025,-0.20572267,0.14697504,-0.13496771,-0.25891685,-0.26091745,-0.272779,0.3264427,0.03389463,0.100259,-0.094520666,0.04531299,-0.0802479,0.3550277,0.08833325,0.2752458,0.35165584,0.07781742,-0.16709392,-0.04694299,0.0063373647,0.45983467,0.14776237,-0.023548925,-0.13797532,-0.16249143,-0.33377767,0.33202097,-0.1809064,0.15135454,0.09683933,-0.47037062,0.8131544,0.20051564,1.2900367,-0.041328803,-0.4692192,0.2665235,0.35431468,-0.021631598,-0.02515187,-0.25962743,1.0712386,0.5746929,-0.18349732,-0.21015687,-0.56518674,-0.3646543,0.18000674,-0.3589141,-0.26288384,-0.13262533,-0.5899952,-0.10408121,0.2997261,0.16402988,0.16383314,-0.06307875,0.06507603,0.19862658,0.10558987,0.26678622,-0.6251959,0.111685395,0.29302707,0.37460145,0.027472207,0.13161021,-0.30411157,0.43364868,-0.64978933,0.21880513,-0.4326372,0.17248897,-0.3135475,-0.36426446,0.19053693,0.07938557,0.18393476,-0.12586592,-0.16406976,-0.38272485,0.71393937,0.14832516,0.19080073,0.8419624,-0.31618384,0.014650375,-0.02779339,0.3318117,1.0989479,-0.12514763,-0.26549426,0.31511527,-0.36812493,-0.72774357,0.19081752,-0.50512147,0.24134856,-0.021529237,-0.4186209,-0.31904668,0.17198877,-0.07525108,0.04243059,-0.1392061,-0.49497938,-0.083098896,0.26182362,-0.1814149,-0.32561448,-0.3397467,0.26222888,0.7223576,-0.32222047,-0.410249,0.043317214,0.3474786,-0.23383565,-0.5152723,0.12445328,-0.008263677,0.46622476,0.0510038,-0.39125454,-0.022102779,0.2561036,-0.4459417,-0.025629679,0.3542225,-0.19489424,0.18206233,-0.20099163,-0.30744195,1.0864341,-0.29313496,0.27686736,-0.58040965,-0.63051766,-0.84893703,-0.22631018,0.008117378,0.1493285,0.006884247,-0.6747535,0.14377165,-0.049433004,0.0011016031,0.14686094,-0.4896609,0.4131324,0.05173758,0.46697333,-0.10091462,-1.0797492,0.09833535,0.27927816,-0.2912254,-0.7106897,0.7075146,-0.31203702,0.6647506,0.16990499,0.22796382,0.25836775,-0.5926882,0.3048477,-0.18746763,-0.1674012,-0.685689,-0.05814408,442 -841,0.42296317,-0.052017223,-0.70880556,-0.03987619,-0.2345366,0.03712285,-0.24867964,0.580204,0.2869381,-0.4309534,0.029281782,-0.2975029,0.16177149,0.38377714,-0.025805587,-0.60385567,0.031196913,0.15334423,-0.58623683,0.5039192,-0.527541,0.3291439,0.23556478,0.21014036,-0.07312775,0.30452457,0.14180307,-0.27963218,-0.08210889,-0.17845489,0.022809312,-0.11499723,-0.6193334,0.17271858,-0.16647576,-0.27224028,0.18142955,-0.51511174,-0.2308327,-0.4553407,0.15757404,-0.7762229,0.44677982,0.14088723,-0.20987451,0.23751032,-0.07940657,0.30716205,-0.1379193,-0.03957927,0.18104608,-0.22877403,-0.46090093,-0.26894933,-0.19782679,-0.36300078,-0.65360874,-0.091828674,-0.5714206,0.009745588,-0.2974775,-0.09713483,-0.27861264,0.16696973,-0.00861762,0.02437373,-0.3418609,0.1400578,0.1369365,-0.23488365,0.11577002,-0.3566105,0.016029526,-0.036687598,0.31408733,-0.026226776,-0.18821818,0.36518797,0.24988787,0.49715194,-0.14570595,-0.0005223602,-0.25854912,0.011046323,0.103446476,0.64709824,-0.11407358,-0.22542489,-0.10003719,0.062954314,0.20090628,0.25248533,0.009563297,-0.19572203,-0.024902822,-0.08901552,-0.5400229,0.29990235,0.42078137,-0.3526781,-0.056800764,0.49668908,0.32054573,0.14930303,-0.11185545,-0.018257113,-0.04366648,-0.51725477,-0.16685532,0.05501124,-0.17417979,0.5007505,0.0196096,0.24089873,0.6007379,-0.12271532,-0.069117665,0.009928332,-0.06064483,0.02551321,-0.065887615,-0.09636378,0.29542252,-0.56026167,-0.17394502,-0.31972152,0.8313172,0.07452961,-0.93030024,0.45374337,-0.52306324,0.0094038285,-0.116275914,0.56244797,0.67217296,0.6663955,0.08268163,0.7604075,-0.6298675,0.15243433,-0.1845063,-0.5280841,0.46119216,-0.0010933504,0.29339278,-0.41857782,-0.100802936,0.27454266,-0.19766064,0.2777175,0.5185521,-0.41787782,-0.16449234,0.04928915,0.6023001,-0.31367722,-0.23204128,0.55674654,1.1806499,0.64042044,0.12428533,1.0957137,0.23502183,-0.18472119,0.1827334,-0.23042436,-0.8597725,0.13951705,0.26565143,0.050370097,0.272072,0.20354323,-0.14570187,0.29623893,-0.050092507,-0.09547899,0.100717865,0.32683447,-0.15579735,-0.18653363,-0.2549049,-0.4419055,0.018701242,0.00907598,0.103553504,0.5294815,-0.17205675,0.4783894,0.05814593,1.7457167,0.15224421,0.20723684,-0.03203569,0.38097063,0.2059433,-0.16095321,-0.31497797,0.34146252,0.26475415,0.09137287,-0.44297266,0.024933686,-0.13638616,-0.48184153,-0.044800628,-0.38507438,-0.030590782,-0.14984265,-0.23388696,-0.11599362,-0.023696415,-0.38635072,0.4756768,-2.915374,-0.16136265,-0.05658439,0.4538701,-0.16895944,-0.26530394,-0.16482499,-0.475304,0.31039384,0.34071663,0.5150088,-0.5434322,0.3452928,0.3685336,-0.5994572,-0.1474322,-0.60188156,0.06910961,-0.09612429,0.2348011,-0.10146699,-0.17021419,0.05776051,0.06663843,0.38509092,-0.06542458,0.05122673,0.35039982,0.6096911,0.17204493,0.50980514,-0.25053707,0.5921955,-0.39856216,-0.114972435,0.10574273,-0.3024095,0.38682786,-0.19743252,0.16279452,0.26834735,-0.32763898,-0.8646838,-0.25001144,0.065545805,1.1257414,-0.5098559,-0.2572073,0.26650274,-0.107820295,-0.27542827,-0.103215866,0.6516002,-0.04621954,-0.14038442,-0.579465,-0.020202776,-0.046209678,0.19528417,0.013157298,0.047408123,-0.32949343,0.5505418,0.109209895,0.67475575,0.3718406,0.010927807,0.01560162,-0.18423288,0.27496347,0.8864808,0.14108694,0.29062274,-0.24524494,-0.070943974,-0.3275832,-0.09906969,0.07500297,0.41890118,0.51650745,-0.030999178,0.08773434,0.28478086,-0.1588686,-0.028280007,-0.05352914,-0.4059545,-0.10432277,-0.1631476,0.5531573,0.9384963,-0.10967841,0.35810325,0.06326332,0.23668022,-0.24692816,-0.544076,0.567643,0.41628662,-0.105832696,-0.020105114,0.49189663,0.598533,-0.20876616,0.48630503,-0.4411644,-0.4873689,0.41379666,-0.1100199,-0.39484942,0.44575164,-0.21424349,0.11337263,-0.8371268,0.10123753,-0.2544264,-0.49014947,-0.40757465,0.16419573,-3.301053,0.22196639,-0.06776908,-0.25212917,0.023383088,0.118308835,0.16780673,-0.44952753,-0.41805875,0.19315831,0.24023162,0.6397651,-0.053516556,0.059886903,-0.3867544,-0.42280138,-0.21094382,0.16819459,-0.0090993,0.19257389,0.03392138,-0.46939826,-0.12568347,-0.2636378,-0.13217005,0.10938772,-0.51369643,-0.3113126,-0.08860776,-0.36936966,-0.46556982,0.6832726,-0.4746485,-0.125174,-0.07322814,0.010319288,-0.0028116603,0.18390198,-0.20908375,-0.10216906,-0.059227377,-0.08302527,-0.03530222,-0.43598256,0.3711563,0.0752311,0.519536,0.5266888,-0.078480415,-0.099617295,0.74905187,0.4392389,0.14578632,0.8737576,0.22058874,-0.10495844,0.22086291,-0.32395726,0.013752893,-0.48078927,-0.13248639,-0.35504434,-0.34919837,-0.33667135,-0.014026861,-0.30640325,-0.7206817,0.49815226,0.20727618,-0.08324965,-0.0032618914,0.4038304,0.32011762,-0.17987923,0.039625872,-0.1885312,-0.20781912,-0.43173054,-0.205746,-0.73187065,-0.38210464,0.40876773,0.90105075,-0.20538396,-0.0436035,-0.008551528,-0.21635734,0.05723447,-0.03927936,0.12418381,0.3044537,0.2923642,-0.13494171,-0.63549757,0.59369856,-0.31670627,-0.09338024,-0.7739193,0.0058440245,0.5167222,-0.77662396,0.2524046,0.48309544,0.027092883,0.25180194,-0.42744184,-0.20536186,0.112156786,-0.19285627,0.12105747,0.14883615,-1.0748521,0.42095575,0.21445839,-0.362155,-0.7155821,0.38339064,-0.10921329,-0.22195435,-0.08013772,0.21825172,0.19671036,0.10298443,-0.27930853,-0.0026170823,-0.60494214,0.27398035,0.17391519,-0.096458636,0.42720476,0.0699266,-0.066354305,-0.7163358,-0.12533227,-0.34258366,-0.13352425,0.48044315,0.10840899,0.34044066,-0.07390986,0.3138536,0.23148017,-0.548863,0.0058057145,-0.16542868,-0.30155605,0.6046373,0.46084538,0.44872975,-0.46854576,0.5915422,-0.08273322,0.05218019,0.029120097,0.04455598,0.3975263,0.1179016,0.15764335,0.24692304,-0.42535457,0.20394816,0.81925434,0.19155668,0.24884063,0.21146883,-0.024695838,0.39484215,0.054581165,0.08002991,0.06447878,-0.6418376,-0.112017386,-0.15460391,0.1738143,0.46588275,0.16313879,0.38038406,-0.19287701,-0.21487617,0.06727513,0.19690214,0.17860873,-0.7593619,0.38638362,0.17526847,0.36173224,0.5970351,0.017111504,0.051853534,0.641753,-0.2442503,0.20784055,0.22146599,-0.15953273,-0.45869482,0.5813555,-0.73402554,0.49445522,-0.027861044,-0.08665537,0.30133754,-0.14969653,0.42352363,0.95181733,-0.070109636,0.050471947,0.04327256,-0.3726921,-0.05270167,-0.23408665,-0.19424795,-0.64054626,-0.25467858,0.70645314,0.29084125,0.45520344,-0.015562098,-0.0031657096,0.07102046,-0.14600833,0.2660884,0.04265527,0.12566097,0.020064272,-0.62339497,-0.19298953,0.6968608,-0.008803246,0.20082678,0.110773884,-0.05592978,0.5179027,-0.25117335,-0.30316925,-0.15466118,-0.5402411,0.22520006,-0.33085996,-0.51462257,0.65008754,0.13434167,0.4453968,0.20878617,0.101091236,-0.20459844,0.5219212,0.22912216,0.8495304,-0.09735512,-0.4567324,-0.26555893,0.06772804,0.20151623,-0.2745225,-0.11036538,-0.28014678,-0.075822674,-0.6081229,0.25487968,-0.27274185,-0.25443485,-0.2265705,-0.093886115,0.20461905,0.42511824,-0.10137954,-0.0667735,-0.11631008,-0.017904684,-0.2822723,-0.21535511,-0.39135313,0.033787426,0.11724297,-0.13271281,-0.067128666,-0.06994586,0.11352361,0.25598976,0.008006036,0.19497938,0.08674107,0.23265012,-0.2014784,-0.15743405,0.24715507,0.51214147,-0.045573216,-0.11368352,-0.5928871,-0.3056483,-0.3212255,0.028223723,-0.046302553,0.34194255,0.18737829,-0.32898912,0.72123957,-0.1991849,0.7701526,0.057438314,-0.24236353,0.23382263,0.5050582,0.12944227,-0.1298341,-0.3458136,0.95785713,0.5188975,-0.15122853,-0.1776275,-0.540866,-0.26490805,0.05356242,-0.2738841,-0.33211628,0.09391681,-0.5777128,-0.14448595,0.17572713,0.17345269,0.2859966,-0.22095306,0.25776047,0.23719655,0.28136525,-0.038593963,-0.4486409,-0.34884632,0.24377875,0.2707614,0.12105731,0.12907135,-0.4400022,0.338199,-0.5617202,0.15600248,-0.31486753,-0.031193443,-0.048552092,-0.24581258,0.1479022,0.19960018,0.35691747,-0.32558027,-0.33154732,-0.082391895,0.44480625,0.30840242,0.4674919,0.73791915,-0.21617214,-0.23506431,-0.08352325,0.52878255,1.0754625,-0.2566785,-0.0542267,0.5971964,-0.35778335,-0.6470385,0.19774915,-0.1710182,0.28545165,-0.07088128,-0.298798,-0.37438235,0.23614155,-0.0170713,-0.13915215,0.06263074,-0.4685893,-0.12378082,0.16355814,-0.43414137,-0.42293334,-0.39888033,0.10308203,0.81404954,-0.32772863,-0.2059774,0.09178442,0.14060846,-0.2239012,-0.33685616,-0.07940218,-0.39719164,0.06623083,0.21731007,-0.33220115,0.02497004,0.23995824,-0.44238773,0.2626751,0.07391996,-0.33519658,0.023676356,-0.4522679,0.07678409,0.9947445,-0.1365603,0.025436094,-0.31028283,-0.57796854,-0.6978554,-0.4652665,0.2689091,-0.022041043,0.0034876342,-0.32935473,-0.060209442,0.006376141,-0.22139542,-0.27260423,-0.4884192,0.44864354,-0.03337876,0.24213803,-0.06465843,-1.0771533,0.10772303,0.044030298,-0.34969768,-0.63602537,0.36791983,-0.30062836,1.0368584,0.10368628,0.08369169,0.46049976,-0.59596163,0.08765891,-0.4248676,-0.0826981,-0.5206046,0.0722707,448 -842,0.6461529,-0.11692968,-0.62517256,-0.21784914,-0.21264414,0.35960105,-0.16800654,0.49234644,0.32534263,-0.37760186,-0.17044751,-0.16161726,0.04226749,0.55255824,-0.13929884,-0.858126,0.021294,-0.032687422,-0.39159,0.19244963,-0.74641275,0.3516817,-0.035351794,0.57224363,0.102099605,0.33106595,0.32323864,-0.00859492,-0.3981003,0.13762303,-0.121082425,0.29617777,-0.4605824,-0.037554562,-0.044611428,-0.4316825,0.054661036,-0.24892955,-0.32297316,-0.7022273,0.42654085,-0.96625835,0.5449589,-0.028565267,-0.4111537,0.1492524,-0.07204083,0.1541573,-0.29856214,0.100862116,0.20342481,-0.2646384,0.02502209,-0.27228522,-0.47133312,-0.7908845,-0.5971925,0.082893066,-0.5534316,-0.22126609,-0.29120815,0.27918062,-0.22582145,0.030852938,-0.18753654,0.22205722,-0.37071776,-0.21906237,0.40523908,-0.28023136,0.22267084,-0.3723527,-0.14477144,-0.1091427,0.22578174,-0.061547566,-0.112466566,0.12888461,0.38648164,0.642127,-0.0013573306,-0.19945775,-0.3726236,0.13681848,0.16827798,0.5243447,-0.23366976,-0.60310066,-0.40078446,-0.19593243,0.22432764,0.12826115,0.17517543,-0.23143673,0.2829943,0.32642925,-0.19946043,0.50371563,0.5687488,-0.3925643,-0.27776775,0.3949697,0.5634727,-0.06566115,-0.12971656,0.09445083,-0.06116088,-0.5769618,-0.21795712,0.15947883,0.022673195,0.7396958,-0.17201914,0.2274661,0.8703559,-0.14081691,0.13153593,-0.1750701,-0.09633859,-0.1920336,-0.16445784,-0.040380284,0.09114441,-0.40388528,-0.09674117,-0.28154576,0.7769776,0.26597133,-0.729873,0.49011073,-0.32703698,0.11381122,-0.12195516,0.6027723,0.63189334,0.2415687,0.16426836,0.95520824,-0.7959345,0.021055585,0.09055189,-0.42790642,0.1737317,-0.1849848,0.15341282,-0.32979903,0.14740764,0.14575644,-0.16186243,0.014395486,0.62321615,-0.5016223,-0.09168017,-0.018895427,0.8385742,-0.5557001,-0.20356049,0.72937155,1.094431,0.8585537,0.0027479727,1.542974,0.5656689,-0.2168296,0.13305669,-0.43102375,-0.59574944,0.36172888,0.2815059,-0.053778425,0.4392778,0.19890843,0.107913055,0.61398524,-0.15252255,0.053855956,-0.07550695,0.2368777,0.04382522,-0.11895424,-0.39875567,-0.056857605,0.13776524,-0.015751222,0.3235349,0.22277965,-0.27653968,0.42675424,-0.105113685,1.6674813,-0.1316368,0.031241506,-0.218774,0.42515612,0.19985045,-0.12556864,-0.02240479,0.3455352,0.2985334,-0.0013121702,-0.560492,-0.03082273,-0.33922216,-0.53531003,-0.29302308,-0.3862802,-0.07721744,-0.068104945,-0.37023333,-0.041469816,0.07633634,-0.27807644,0.4834857,-2.2116597,-0.3678908,-0.16802196,0.38806048,-0.2339197,-0.4064114,-0.22173695,-0.36392593,0.24326777,0.5799876,0.37207413,-0.67158175,0.35693732,0.30877402,-0.14374492,-0.16362242,-0.60149574,0.16765134,-0.1194397,0.46153903,-0.04436924,-0.23316194,-0.18996894,0.42747214,0.6331536,0.18420541,0.05213892,0.09724253,0.77367586,0.028733455,0.4710193,0.15669492,0.7107311,-0.2455409,-0.14721681,0.5328854,-0.6768108,0.44638622,-0.01925508,0.34693012,0.3337172,-0.5185345,-1.0277421,-0.77684873,-0.25303903,1.1418155,-0.27624083,-0.3940351,0.28276643,-0.11877168,-0.42681885,0.015647948,0.4338697,-0.13080075,-0.029544959,-0.85386306,-0.0671067,-0.0036809247,0.08054734,-0.059709176,0.24315028,-0.27440897,0.7316434,-0.22864544,0.32193124,0.26116827,0.16177468,-0.14238529,-0.54940313,-0.030381752,1.0280737,0.33364853,0.22659814,-0.16659276,-0.22138286,-0.29895917,-0.13683604,0.15318029,0.515906,0.8986294,0.19117542,0.055264186,0.32748428,-0.11772651,-0.18060589,0.00044321516,-0.4682819,-0.013759136,0.0075508556,0.6600232,0.75381607,-0.37084332,0.36569712,-0.31762594,0.35444525,-0.2529079,-0.41929957,0.6395035,0.8577559,-0.3108202,-0.15924098,0.635242,0.2601073,-0.6907219,0.51292676,-0.7758047,-0.3319423,0.6557979,-0.034678858,-0.47407508,0.06356703,-0.34954008,-0.016187442,-1.0838364,0.3386536,0.08808068,-0.56684196,-0.46383265,-0.27077404,-4.4372888,0.16273981,-0.16697401,-0.10641,-0.08567864,-0.07119086,0.36271158,-0.6274317,-0.56230164,0.021799749,-0.038832147,0.4461671,0.059042573,0.319542,-0.48070955,0.03239631,-0.22881205,0.25163004,0.16482951,0.27228367,0.027374068,-0.47385767,0.14635521,-0.37721792,-0.4234302,0.034915134,-0.61546594,-0.66034216,-0.19923873,-0.4790989,-0.22085941,0.77678066,-0.47992852,-0.07777298,-0.40771067,0.04379117,-0.35552844,0.42910227,0.07061424,0.045268606,0.22784609,-0.08717712,-0.10379502,-0.41308522,0.11351415,0.1298737,0.33523235,0.46436062,-0.21849544,0.10081446,0.67203206,0.7790799,0.07277699,0.6684994,0.2214927,-0.00047649443,0.36235118,-0.37478194,-0.10601765,-0.63995916,-0.5495529,-0.22446515,-0.53038245,-0.6459742,-0.2370062,-0.45360705,-0.82202154,0.3494602,0.01703309,0.23661543,-0.14065926,0.3392773,0.48325858,-0.20952213,0.035937514,-0.14191249,-0.2684758,-0.7259197,-0.4004139,-0.5340921,-0.8234647,0.4880711,0.935381,-0.11348482,-0.18129216,0.0054742596,-0.36972532,0.10843035,0.08322682,0.056530625,0.036970954,0.350029,-0.17423661,-0.72690123,0.40121257,-0.23446257,-0.10737654,-0.7172561,-0.11648149,0.82414055,-0.70930386,0.71175903,0.50889415,0.22930777,0.36782086,-0.46437764,-0.34985527,0.09500649,-0.16524924,0.6160762,0.22599381,-0.58788013,0.4746214,0.31240103,-0.16634507,-0.69078094,0.39794818,0.029492103,-0.106366456,0.09860661,0.42454028,0.06949078,-0.09951931,-0.39648852,0.1269617,-0.6042112,0.23279245,0.5553073,0.2586479,0.4594239,-0.09671497,-0.29365972,-0.66537017,-0.2288096,-0.59461564,-0.17052688,0.04273206,0.030750299,0.12673792,-0.02323846,0.10904261,0.40884113,-0.463473,0.15601662,0.091610186,-0.30325508,0.35061225,0.48402616,0.35891104,-0.54786927,0.42557105,0.097217225,-0.04965448,-0.0011617094,-0.02478137,0.5503008,0.42744246,0.33146688,0.20245339,-0.048112106,0.33404532,0.67718405,0.21072932,0.49884796,0.38046268,-0.42086568,0.36587867,0.26437172,0.20208776,0.05450428,-0.41767797,-0.07526436,0.042114988,0.25747198,0.42616722,0.16917461,0.35700512,-0.03938591,-0.1810884,0.28601316,0.05506146,-0.20691116,-0.92042345,0.21804023,0.23519528,0.7044327,0.38192573,-0.15631437,0.09751556,0.31973565,-0.22635464,0.13513285,0.36605525,0.05504181,-0.7148218,0.58862436,-0.5509373,0.2998725,-0.31184325,0.10784122,0.03557214,0.30542782,0.52894783,0.9317439,-0.02289736,0.09311381,-0.09432449,-0.09344485,0.08143835,-0.34907207,0.12126372,-0.6156152,-0.24482512,0.6343592,0.45089516,0.3989286,-0.2730018,-0.20061584,-0.0135495765,-0.0066219023,0.030694218,-0.21517341,0.08114689,-0.12810679,-0.86830693,-0.53114706,0.5508509,0.37234282,0.09687062,-0.04539506,-0.5395456,0.38758394,-0.34318212,-0.13335562,0.14935516,-0.6167969,-0.18289919,-0.2326281,-0.72518975,0.40343705,-0.28899738,0.18536325,0.26103902,0.08774996,-0.3920069,0.10219181,0.117000334,0.8762587,0.16278844,-0.27086642,-0.51610357,0.119333744,0.45874822,-0.49061725,-0.13223962,-0.43198428,0.032047484,-0.44233048,0.52525693,-0.04885775,-0.45449948,0.039372683,-0.18254876,0.072149046,0.54518855,-0.3868492,-0.26210627,0.3047277,-0.008075605,-0.19150357,-0.071200885,-0.35616156,0.28538898,-0.08898923,-0.14729412,-0.022285879,-0.096265465,0.04173219,0.33624876,0.15837581,0.18355854,0.59412414,0.072142646,-0.348024,-0.11069258,0.08967384,0.40068075,0.19154526,-0.18502341,-0.3513513,-0.585367,-0.3379279,0.15421005,-0.24251588,0.07122505,0.20574541,-0.4500905,0.7899187,0.1481746,1.3761716,0.14682426,-0.38470516,-0.04482514,0.6053011,0.22369987,0.16648829,-0.6266274,1.05053,0.52274674,-0.34380195,-0.20974214,-0.52703923,-0.40741596,0.37693286,-0.36911237,-0.14277564,-0.33464384,-0.9800842,-0.18016534,0.27422085,0.3579978,0.1329404,0.037133355,0.37731346,0.111111045,0.14168279,0.53597564,-0.5196384,-0.18557103,0.35105157,0.26580614,-0.07710827,0.018507808,-0.25538588,0.40088844,-0.69932896,0.017541463,-0.51469505,0.05154489,-0.058138404,-0.46146086,0.23105021,0.06505097,0.2817432,-0.35950637,-0.4066038,-0.2504898,0.7962883,0.40264452,0.3002684,0.6646106,-0.2506226,-0.24564202,0.16977102,0.5577689,1.580574,-0.10333664,0.24687566,0.44964418,-0.30082527,-0.74910396,0.30696753,-0.39209807,0.22328727,-0.18805617,-0.55153376,-0.5611967,0.3905177,0.17090963,-0.1908922,0.047280055,-0.3595145,-0.1476493,0.4325087,-0.4437991,-0.2791613,-0.18425727,0.24463056,0.7772861,-0.6198965,-0.34359264,-0.010237713,0.57569605,-0.40256128,-0.5442157,-0.038262192,-0.2830646,0.62888604,0.17576212,-0.39913702,0.04897939,0.0827174,-0.4119614,0.36065945,0.33166304,-0.43451008,0.19993202,-0.3486835,-0.14700407,1.0095433,0.20641679,0.04817618,-0.9701398,-0.3145707,-1.0763398,-0.39890042,0.1499334,0.13323738,-0.10557572,-0.43933627,0.028667452,-0.114827424,0.050470978,0.17829712,-0.6132206,0.4463495,-0.016683215,0.74273103,0.001834297,-0.994281,-0.201694,0.3118367,-0.32032105,-0.6916971,0.63456583,-0.34533465,0.75619966,0.12285773,0.2788315,0.31818378,-0.58324283,0.29036734,-0.47256526,-0.18216431,-0.8220169,0.20711039,457 -843,0.3635993,-0.31528375,-0.31806636,-0.12502895,-0.06681312,-0.079418115,-0.06491435,0.7151827,0.29666474,-0.48275304,-0.20388012,-0.07203819,0.0029575874,0.38116026,-0.07638203,-0.44215536,-0.019655282,0.22299655,-0.42752528,0.48243752,-0.4782711,0.1326068,-0.057572234,0.49738005,0.24056323,0.10706382,0.04384719,-0.09815142,-0.19216911,-0.16075122,-0.025102785,0.2922058,-0.4901563,0.30845463,-0.2675817,-0.40128875,-0.16767173,-0.8030606,-0.44071946,-0.7511861,0.22574656,-0.729902,0.4927794,0.0021619946,-0.20091183,0.23381376,-0.050522882,0.23170024,-0.20042832,-0.120734245,0.24243791,-0.0585487,-0.119763434,-0.00072916347,-0.094862126,-0.18620308,-0.6160129,0.06548538,-0.34302375,0.015088809,-0.32095546,0.08559764,-0.32445112,-0.068332486,0.031994563,0.4142375,-0.4218706,-0.06205109,-0.028512567,-0.024730345,0.3092815,-0.4842113,-0.1932121,-0.14647667,0.32803392,-0.26586023,-0.32317522,0.27871087,0.26416174,0.39054775,-0.13146032,-0.017980209,-0.2502557,0.12248274,0.18394864,0.60208154,-0.1923505,-0.6387957,-0.15126006,-0.0870007,0.12171022,0.18860507,0.025432209,-0.23433824,-0.09726692,0.012386878,-0.19410627,0.47322857,0.5369393,-0.12489218,-0.27863327,0.36255383,0.45031774,0.28976128,-0.06346089,0.010672058,0.09156537,-0.5862258,-0.16566825,-0.042818833,-0.21787398,0.47259414,-0.18101026,0.29791602,0.6446554,-0.13338147,0.054201275,0.14947772,0.046246413,-0.109280884,-0.19494243,-0.16638063,0.17419563,-0.45368817,0.23040032,-0.16744919,0.7883374,0.15374847,-0.7410593,0.37938473,-0.54023796,0.14092585,-0.109874964,0.5036528,0.84690934,0.30793762,0.4485396,0.6337326,-0.36806825,0.07924803,-0.021665744,-0.40946662,0.03119246,-0.27165768,0.017574051,-0.4980215,-0.21255386,0.03708598,-0.17060052,0.16789939,0.4475534,-0.5168516,-0.12825762,0.116341054,0.72587186,-0.2288961,-0.13419773,0.9774968,1.06844,1.0963894,0.024905002,1.2139114,0.14308184,-0.13143285,0.25452372,-0.22898443,-0.79584765,0.29131404,0.33555523,-0.11460888,0.07407963,0.1772887,-0.08606553,0.39747226,-0.60510826,0.010349358,-0.14885305,0.19177318,0.019574502,-0.14993559,-0.539887,-0.45521328,-0.26690516,0.08640926,-0.004295071,0.24342608,-0.28199044,0.4392732,-0.020781994,1.648171,-0.030211389,0.042415038,-0.10175339,0.58252656,0.15183644,-0.27243435,-0.2811034,0.13893451,0.46873245,0.04177658,-0.55317473,0.17399447,-0.18145446,-0.2855639,-0.050389152,-0.33720174,-0.106408656,-0.1435717,-0.39493135,-0.08048051,-0.037558753,-0.46182215,0.559717,-2.8758032,-0.29587683,0.0050209314,0.30089578,-0.14670646,-0.32182112,-0.19501863,-0.45544264,0.49243656,0.27971956,0.5878172,-0.6230073,0.2501367,0.4229865,-0.5991423,-0.12530543,-0.6946972,-0.10460528,0.03946564,0.3555689,0.09873643,0.097668566,0.10566327,0.021794787,0.5348813,0.13709699,0.11813123,0.25178578,0.39683926,-0.07300681,0.41301623,-0.15396397,0.54310495,-0.3186241,-0.19133711,0.29092526,-0.35401025,0.3190376,-0.41016972,0.13826859,0.45800304,-0.4567779,-1.0472254,-0.62008315,-0.34603086,1.170278,-0.09570793,-0.25180137,0.282949,-0.36133638,-0.16049995,-0.00741378,0.69024485,-0.15845752,-0.09277586,-0.7483194,-0.121550106,-0.026681691,-0.035725314,-0.07046413,-0.033162307,-0.5056512,0.53651863,-0.008219724,0.44059452,0.31054413,0.22436662,-0.21421759,-0.43534088,0.13169432,0.8825412,0.348946,0.21001054,-0.27222332,-0.049354147,-0.4202118,-0.09480729,0.0027081731,0.548628,0.64486223,-0.1050967,0.20579605,0.25249684,0.19831936,0.08404052,-0.052833606,-0.1795891,-0.21039887,-0.013299475,0.5962742,0.7574766,-0.11292698,0.51725966,-0.051321805,0.06424846,-0.21286444,-0.3872241,0.4923921,0.7719738,-0.115697734,-0.066028796,0.6240189,0.4591715,-0.061872292,0.41925952,-0.43455768,-0.3117056,0.37866583,-0.15833108,-0.4991496,0.16208975,-0.23839758,0.026396802,-0.86225414,0.36879525,-0.23734789,-0.7504938,-0.5718162,0.04506007,-3.11481,0.1239754,-0.15931764,-0.2807682,-0.12132612,-0.2712542,0.2038755,-0.5290111,-0.6007126,0.25294277,-0.012616299,0.77596515,-0.14195336,0.05979991,-0.2495591,-0.1659774,-0.45413804,-0.0052198023,0.0490322,0.45556578,0.07189641,-0.36415246,-0.08677465,-0.25364533,-0.46717033,0.08587727,-0.63321584,-0.47199655,-0.043666374,-0.52695626,-0.39032102,0.73502237,-0.30801752,0.02714228,-0.19273357,-0.010732651,-0.1837867,0.46398512,0.084907465,0.13623863,0.018821849,-0.18123977,0.039845586,-0.11946244,0.418296,0.1302296,0.21897954,0.3650274,-0.24002719,0.30200684,0.5288845,0.6929254,-0.23245107,1.0485889,0.5547174,-0.16900033,0.11095103,-0.30077112,-0.27164507,-0.41474044,-0.31595814,0.09047922,-0.4053963,-0.55489665,-0.11173701,-0.34029174,-0.84446317,0.44910645,0.058980092,0.32138792,-0.013896805,-0.14475642,0.3944234,-0.2445964,-0.0023776118,-0.091507934,0.0100065665,-0.52747977,-0.21641646,-0.6947155,-0.547938,0.082009815,0.98667675,-0.12695673,-0.016162673,0.14334835,-0.31693718,0.012905109,0.048759002,-0.1646752,0.06423869,0.2447031,-0.056905765,-0.7137067,0.4977902,-0.013613194,-0.13950478,-0.5861749,0.24710435,0.6439805,-0.57856506,0.53481764,0.46892658,-0.013457959,-0.120032676,-0.51102155,-0.30560485,-0.22905983,-0.06868679,0.31450534,0.22211313,-0.8569071,0.42802787,0.32278252,-0.29366845,-0.8233838,0.49689326,0.008090851,-0.036462646,0.022556761,0.3146645,0.1763181,0.021407137,-0.25301048,0.367771,-0.42387915,0.5809398,0.041760176,-0.015840987,0.29268834,-0.19621031,-0.033679496,-0.6950863,-0.038730007,-0.5830239,-0.26195264,0.18624544,0.087812744,0.19022517,0.13285163,0.1261748,0.256376,-0.30831316,0.07180204,0.0033703148,-0.3561726,0.1438656,0.5304268,0.613196,-0.3316126,0.6140347,0.105798036,-0.07921261,0.071614675,0.13802059,0.3278061,0.08705357,0.40470755,-0.069494106,-0.32156584,0.12003202,0.88228273,0.17876203,0.33219746,-0.041092686,-0.18753405,0.20485966,0.11659413,0.4067417,0.045756686,-0.5816106,0.11286188,-0.3684287,0.19732141,0.42822647,0.17469136,0.16736549,-0.029480522,-0.40531504,-0.046984717,0.26162422,-0.00427104,-1.5518737,0.50960714,0.28031817,0.9518607,0.48579112,0.03397273,0.063501574,0.7088435,0.009310037,0.13584848,0.39432564,0.017427072,-0.53982383,0.5652984,-0.8533945,0.5908039,0.012662083,-0.0025314193,0.052753255,-0.17070235,0.4415531,0.6232115,-0.1538292,0.08394074,-0.027185967,-0.30973604,0.19855703,-0.44828764,0.16960211,-0.65685785,-0.19780447,0.7249424,0.67156833,0.14423244,-0.08148653,0.06531957,0.022875557,-0.103579044,0.022679828,0.10018453,0.091531634,0.018589618,-0.89654493,-0.047721874,0.4913379,-0.14466985,0.24754329,0.033476487,-0.080856405,0.20448153,-0.26119173,-0.099999525,-0.08895627,-0.74278545,-0.1104289,-0.402526,-0.23145859,0.38489938,-0.25367704,0.30036458,0.20310558,0.12495468,-0.09439912,0.40852013,0.0705777,0.77503806,-0.007849147,-0.24570847,-0.39695215,0.28336775,0.21218853,-0.18790686,-0.16240981,-0.2167328,-0.18412836,-0.41681066,0.5203541,-0.031487525,-0.2972783,0.23431651,-0.051286813,0.104571044,0.567519,-0.059489056,-0.037485197,-0.15913509,-0.11950368,-0.28248814,0.053642858,-0.107940495,0.36441445,0.41928712,0.015992576,-0.09196654,-0.045382846,-0.24594255,0.34839115,0.0336782,0.40912804,0.24466719,0.18866281,-0.2740973,-0.19978328,0.25250453,0.5768519,0.062103868,-0.12945999,-0.29360434,-0.28574407,-0.38315263,-0.0074032843,-0.20303774,0.41419676,0.06727322,-0.0897102,0.43179384,-6.406506e-05,1.0238439,0.16247864,-0.36645913,0.18789184,0.44681087,-0.004226332,-0.21870889,-0.3877987,0.87451106,0.33892965,-0.1758727,-0.022097737,-0.3921446,-0.05560699,0.33541012,-0.2122035,-0.3638549,0.045903247,-0.71529096,-0.17189221,0.25118187,0.21423535,0.22478063,-0.08058824,0.008462508,0.4510335,0.04241531,0.2815331,-0.45504078,-0.22336411,0.40911487,0.4012799,-0.005266145,0.15714167,-0.35455287,0.32547605,-0.43808174,0.063882686,-0.1675244,0.1963477,-0.4464798,-0.34532967,0.26587796,0.22619112,0.49539974,-0.104796976,-0.382138,-0.24971318,0.44786,0.10100556,0.14858986,0.48164794,-0.28875193,-0.042100668,-0.054393813,0.3529614,0.89062786,-0.3239548,0.027879447,0.5473497,-0.22066064,-0.5003029,0.4136515,-0.3070616,0.34156188,0.014538705,-0.19715965,-0.6185393,0.24669844,0.05645923,0.057661917,0.1017315,-0.61581326,-0.08460379,0.2923527,-0.08749872,-0.29373398,-0.47925982,-0.015482977,0.5493984,-0.35277796,-0.45143282,0.21345524,0.17800517,-0.17811923,-0.5865176,-0.048293322,-0.42799103,0.14930119,-0.02691035,-0.4587845,-0.19471914,-0.16362451,-0.4308082,0.26517832,-0.084797055,-0.31445256,0.1319681,-0.20338076,-0.035860613,1.1151694,-0.35739723,0.3052142,-0.5112731,-0.4754497,-0.72019404,-0.249839,0.48484865,0.25705734,-0.18014045,-0.5589376,0.0051656864,-0.04352792,-0.1776856,-0.12698518,-0.43798876,0.4574122,0.08776284,0.35005483,-0.14754525,-0.7809749,0.2099812,0.20761992,-0.14405556,-0.62161094,0.43620014,0.07218022,0.7842862,0.06431954,0.11533982,0.15969527,-0.30428126,-0.16772467,-0.2047341,-0.12141351,-0.5358451,0.12019112,458 -844,0.4364792,-0.28320318,-0.6573085,-0.10535417,-0.31381926,0.13893674,-0.04878521,0.54235286,0.40872964,-0.6052756,-0.17745769,-0.12233957,-0.107887186,0.25627595,-0.013775479,-0.5613577,0.01582095,0.32925606,-0.5635332,0.40885735,-0.28975204,0.36553597,0.18758155,0.1319413,0.1855094,0.18185139,0.04562934,0.06636509,0.12832084,-0.33442476,-0.02713567,0.13046688,-0.5484266,0.36394337,0.0008092125,-0.35408762,-0.21864985,-0.55981857,-0.14489305,-0.6607453,0.39184403,-0.6987433,0.61104685,0.059658904,-0.2163914,-0.016366443,0.04683569,0.2793084,-0.06916193,0.052158743,0.28453878,-0.06252993,-0.18489362,0.05319706,-0.13302954,-0.3940544,-0.62737834,-0.04308701,-0.24685502,-0.2455401,-0.058566403,0.21799685,-0.25290063,0.10913101,-0.29415628,0.7709603,-0.28075758,-0.05454651,0.36531988,-0.23526816,0.15292247,-0.60898083,-0.025020929,-0.020852635,0.096791714,-0.16682255,-0.26565686,-0.015242338,0.26790997,0.64680886,0.108133115,-0.16374378,-0.15966074,0.015526245,-0.016394496,0.512379,-0.1856817,-0.32682022,-0.12693627,0.038487013,0.042180847,-0.0040249303,0.30680847,-0.4206089,-0.056638747,-0.18866324,-0.09372034,0.2988146,0.47417286,-0.17846388,-0.12529723,0.21488841,0.5945482,0.061337557,0.04340918,0.3480985,0.16079088,-0.41960564,-0.2730638,0.002812316,-0.14198388,0.34502456,-0.25254652,0.24377584,0.4459324,0.024437621,-0.09102025,0.15482213,0.063888036,0.13846473,-0.2707182,-0.3126838,0.3064585,-0.50567144,0.07171177,-0.1507272,0.7555155,0.12587275,-0.6406945,0.33478844,-0.5048563,0.11888287,-0.052592278,0.45481098,0.76523274,0.33099103,0.027884245,0.7351964,-0.2969834,0.18731642,-0.23100407,-0.047398087,-0.0771208,-0.04853506,0.08650739,-0.4521846,-0.044429656,-0.105383776,-0.40000042,0.052417535,0.41561997,-0.7397695,-0.1505675,0.14065166,0.68169194,-0.28556362,-0.066896826,0.8503788,0.9751906,1.0356342,0.11580518,1.3066401,0.34167704,-0.24520187,0.05298415,-0.22838049,-0.782188,0.1201968,0.24049282,0.23769112,0.3348457,0.07757242,-0.033504788,0.4948846,-0.67991114,-0.0014426237,-0.26908526,0.38718143,-0.061836123,-0.13090606,-0.4393929,-0.15766917,0.0226018,0.24911453,0.036457013,0.23325318,-0.30577114,0.20547183,0.14315365,1.514967,-0.33949903,0.068861075,0.07924502,0.14724769,0.09140897,-0.44578174,-0.17187376,0.11349351,0.5389934,-0.08253647,-0.64599365,-0.038920864,0.046012823,-0.32107353,-0.2885389,-0.13388278,0.035928156,-0.24031526,-0.3690124,-0.37163427,-0.13004327,-0.5103845,0.4083147,-2.464685,-0.048988853,-0.09977574,0.426069,-0.18234622,-0.39729533,-0.097648025,-0.4230961,0.19201617,0.3321171,0.29178536,-0.6961109,0.48695865,0.41000152,-0.59669733,0.13153733,-0.6145351,-0.0024507642,-0.026936622,0.25472635,0.057977196,-0.034512743,-0.15007228,0.25657296,0.25636742,-0.063491635,0.1736178,0.50620747,0.22877438,0.09251172,0.34534872,0.14102088,0.5686385,-0.33357143,-0.23345144,0.39795136,-0.23065066,-0.052616376,-0.15634792,0.013982604,0.2755945,-0.5745558,-0.7097003,-0.8486962,-0.27961257,1.0565494,-0.17412,-0.2198761,0.37100253,-0.40585354,-0.33901075,-0.05474304,0.4930745,-0.13754027,-0.19949551,-0.88822293,-0.12968707,-0.09165504,0.291173,-0.0076797195,-0.16678004,-0.7403596,0.81567687,-0.36985204,0.55185264,0.47580776,0.2150299,-0.25089088,-0.4367545,-0.037699718,1.2483674,0.5243389,0.15650016,-0.19399911,0.020481825,-0.43016353,0.032264534,0.039888084,0.75896806,0.88017017,-0.064615846,0.10397004,0.29090452,0.13138653,0.10524436,-0.15087287,-0.45967278,-0.20810503,-0.001029737,0.6210606,0.31965607,-0.025340289,0.46606854,-0.20061083,0.2863585,-0.1520972,-0.51770633,0.26523194,0.70400137,-0.10556245,-0.3902923,0.7232155,0.30627105,-0.12904786,0.41432175,-0.56536406,-0.15153849,0.2784426,-0.17733581,-0.44718006,0.41695073,-0.30733636,0.32712916,-0.8745231,0.49933895,-0.21436654,-1.0696431,-0.50321865,-0.16868001,-2.6489818,0.26038638,-0.14022501,-0.13080768,0.116161376,-0.27313492,0.15056463,-0.49466422,-0.7525658,0.27327552,-0.038304333,0.6695669,-0.023324018,0.12368029,-0.001398156,-0.3486553,-0.26105532,0.25393793,-0.008965931,0.16485642,0.121575475,-0.35553977,0.011362463,0.031835195,-0.25038978,-0.047562826,-0.89990926,-0.61288947,-0.093212344,-0.62109107,-0.17007451,0.5372584,-0.20038353,0.14885317,-0.28997838,-0.012833379,-0.15141308,0.19772293,-0.074119374,0.15142232,0.04955925,-0.04794183,-0.117417805,-0.0151324915,0.08173216,0.06979519,0.25649205,0.26333988,-0.1932292,0.37969086,0.41725945,0.82467985,-0.02556748,0.8702875,0.64733803,-0.14439338,0.19498597,-0.08033681,-0.18320866,-0.43352386,-0.23943567,0.050748598,-0.5781078,-0.40204564,0.07319477,-0.27604857,-0.8309515,0.44274735,0.1429652,0.1294544,0.21887426,0.0983119,0.46599552,-0.033947732,-0.05917569,-0.21426575,-0.19763552,-0.3986304,-0.23814298,-0.59891844,-0.25196767,0.19601083,1.4007844,-0.2191691,0.32726693,0.22655535,-0.23892719,0.13502644,0.15910709,0.07407581,0.13082565,0.59207267,0.025468903,-0.524387,0.12795267,-0.1440928,-0.04420371,-0.57021457,0.18681721,0.6589916,-0.6395492,0.57311255,-0.0408162,0.031143665,-0.38493538,-0.45651722,-0.10563948,0.12208605,-0.39600214,0.4436321,0.35395467,-0.58552283,0.39336398,0.20791323,0.013102755,-0.868488,0.21933328,-0.050568655,-0.08336705,0.010130018,0.2453537,-0.0709881,0.0016175011,-0.09935909,0.1918058,-0.19584614,0.24232365,0.18712282,-0.11207622,-0.1276228,-0.49288306,-0.06015859,-0.646334,0.060972784,-0.6535053,-0.25792286,0.05744003,0.05592838,0.19041611,0.4020721,0.08115702,0.41786954,-0.28840685,0.114905775,-0.04057937,-0.49857497,0.45798466,0.29257363,0.15066338,-0.32598415,0.47132602,-0.039903518,-0.0048183077,-0.3137747,-0.11979184,0.5527948,-0.104899615,0.31312093,0.066964686,-0.21670975,0.4554362,1.0342246,-0.02147991,0.35529044,-0.1210148,-0.002213766,0.10582381,0.104021214,0.10656127,-0.033454318,-0.5830919,0.05335732,-0.004568994,0.14011472,0.24437083,0.2710162,0.44493625,-0.2232374,-0.4946603,-0.0018462291,0.09183354,-0.044448163,-1.3529624,0.29500234,-0.034611944,0.7779827,0.6010032,0.18251169,-0.011681658,0.39694735,-0.11464194,0.21898471,0.17523652,-0.17756367,-0.2969415,0.3045043,-0.5285018,0.31833813,-0.057254136,0.0070280028,0.0040906467,-0.15735815,0.44276738,0.8069343,-0.201478,-0.034420826,-0.19654842,-0.23264122,0.025358269,-0.44232643,0.017893642,-0.7958495,-0.41363403,0.70674473,0.5262403,0.4713414,-0.11122342,-0.027162677,0.12605216,-0.034409788,0.10123038,0.06627509,-0.01597456,0.03205923,-0.5766533,-0.24889039,0.49641132,0.011338155,0.07011578,0.030076772,-0.43689048,0.1611361,-0.064865,-0.13104951,-0.22160721,-0.7656819,-0.08922288,-0.44662693,-0.2698803,0.3235836,-0.049864154,0.021641115,0.24055521,-0.0010916753,-0.32680622,0.30012405,0.29445454,0.71116066,0.0022748485,0.019619694,-0.036212374,0.44205233,0.088510506,-0.20224567,-0.024348937,-0.19810693,0.3084897,-0.79958373,0.46297368,0.19055013,-0.45502877,0.5044729,-0.0125157125,0.14734179,0.50844914,-0.21232845,0.0072936863,0.21078722,-0.40942457,-0.14209338,-0.3657702,-0.22314928,0.17841716,0.05173437,0.018134668,-0.07618775,0.03245281,-0.14256789,0.3780481,0.35966143,0.38011226,0.48327425,-0.001629124,-0.54368687,0.013746222,0.088810004,0.35854593,-0.022912046,-0.14880766,-0.2009896,-0.37999114,-0.361413,0.14068906,-0.096311204,0.41094315,-0.07847607,-0.12905863,0.869694,0.34047946,1.2294756,-0.090617985,-0.36980036,-0.08607439,0.498415,-0.060455907,0.027160563,-0.35871974,0.90740347,0.5019723,-0.007997549,-0.16294347,-0.35839486,-0.03859714,0.29887256,-0.024635958,-0.1715727,-0.057014663,-0.6505948,-0.32710275,0.3463484,0.20610125,0.03700312,-0.015573124,0.34650055,0.32314357,-0.24993174,0.1451217,-0.5152365,0.14310415,0.19621278,0.18089183,0.1877339,0.014538598,-0.5159637,0.20276849,-0.76486593,0.20770524,0.003316154,0.07418049,-0.08371966,-0.19884598,0.09803331,0.11975237,0.2746686,-0.47808048,-0.2998513,-0.25750008,0.6886406,-0.058967095,0.10703059,0.63671607,-0.30314347,0.0330305,0.07672935,0.5843429,0.9409322,-0.04726109,0.12784809,0.37804404,-0.29186973,-0.531951,0.21620023,-0.06007744,-0.09030813,0.008455341,-0.2758262,-0.5432749,0.16962312,0.29612583,-0.11295568,0.29193845,-0.43202272,-0.20373894,0.32754767,-0.3283917,-0.15130603,-0.28549722,0.19210088,0.58021706,-0.3441815,-0.36265305,-0.02055952,0.31418702,-0.35754856,-0.5116718,-0.18939276,-0.23077208,0.23882596,0.079766735,-0.37022945,-0.2605497,-0.014745593,-0.31750807,-0.20734842,0.23898156,-0.30800918,0.025382385,-0.34394494,-0.11320681,0.79317635,-0.07573531,0.17736042,-0.55659705,-0.4508277,-0.7995963,-0.390064,0.2801828,0.1486492,-0.089648664,-0.71325725,-0.097241364,-0.22553886,0.0024414163,0.124027275,-0.1267906,0.5724724,0.24657303,0.3800477,-0.18067628,-0.9393156,0.2693694,0.17842811,-0.26105478,-0.46948192,0.49671292,0.3036822,0.7450569,0.06457729,-0.03366803,0.14636914,-0.63176024,0.2474007,-0.13064015,-0.039689824,-0.7250609,0.14084633,460 -845,0.43468145,-0.32778743,-0.6378153,-0.07537391,-0.22286658,0.0014487902,-0.24980967,0.5680304,0.19973443,-0.23412816,-0.12468111,-0.26197764,0.104857825,0.5576377,-0.20768309,-0.7494345,0.008806233,0.1365617,-0.602349,0.36861277,-0.5255426,0.4077092,-0.064956866,0.48495516,0.09715178,0.20840067,0.19165371,-0.03115061,-0.032823235,-0.17069846,-0.06626991,0.10086295,-0.47331032,-0.1718897,-0.00080262247,-0.49247012,0.16798961,-0.32860032,-0.40202776,-0.7886472,0.48319232,-0.8533456,0.5444115,0.16255331,-0.40104005,0.12620278,-0.06729282,0.29299927,-0.36570486,0.1278951,0.13260199,-0.043319363,0.1448191,-0.34695137,-0.34313694,-0.59892464,-0.52529025,-0.10800981,-0.64593387,-0.22161657,-0.27916446,0.10475788,-0.38011912,0.06217432,0.06277213,0.03803088,-0.5180028,-0.086959004,0.23042472,-0.1464588,0.35289,-0.59240466,-0.16862762,-0.16540973,0.07589836,-0.054151442,-0.07151825,0.33539864,0.28367326,0.5181174,-0.1383204,-0.13962246,-0.23565096,-0.06611648,-0.10396841,0.58276826,-0.22462924,-0.5435249,-0.20286275,-0.06958641,0.30187944,0.29261252,0.112519376,-0.11663694,0.021125654,0.16163714,-0.36667967,0.36916795,0.49694154,-0.4120945,-0.11798153,0.38705316,0.3537395,0.3179913,-0.09228077,-0.1295821,0.0625107,-0.5474675,-0.22993092,-0.016065026,-0.3187267,0.5943188,-0.1491173,0.32775566,0.75516814,-0.2769083,0.25443247,0.0070634335,0.08230103,-0.26642284,-0.12689157,-0.26341763,0.17338397,-0.4920163,0.12798254,-0.22968914,0.7305677,0.2422501,-0.48936835,0.40759793,-0.6144001,0.20949109,-0.13114482,0.50198066,0.6246523,0.4342718,0.27711114,0.63921916,-0.35001037,0.028343031,-0.06839686,-0.23467867,0.41900802,-0.11466536,-0.13484725,-0.43848673,-0.07384939,0.10581652,-0.08066111,0.20254247,0.7310481,-0.7000818,0.0190653,0.038066614,0.81773585,-0.33839583,0.12395424,0.4978304,1.1405934,0.95738226,-0.10435811,1.166765,0.30637783,-0.34402764,0.18427734,-0.16099165,-0.8910801,0.3255132,0.43821657,-0.57311064,0.5628775,0.029623033,-0.11393402,0.43854782,-0.22367871,-0.06320438,-0.17491882,0.17535351,-0.0110611515,-0.15673833,-0.40472892,-0.23292035,-0.17871487,0.053756464,0.040957004,0.35970864,-0.34646836,0.21079904,-0.12510242,1.6096225,-0.060927648,0.079478465,-0.014804646,0.64376837,0.2846066,0.014734118,0.08511704,0.46053943,0.34493637,0.20925796,-0.81195,0.15103602,-0.32432714,-0.47822514,-0.18323769,-0.34125766,-0.03703774,-0.121746026,-0.57029897,0.0727072,-0.019028932,-0.20243323,0.26956603,-2.2692046,-0.32648847,-0.21148781,0.435339,-0.25432223,-0.30387792,-0.108122796,-0.32036915,0.45107567,0.3448635,0.48474565,-0.72574204,0.3058966,0.59507173,-0.4627348,-0.06865216,-0.5621698,-0.1423498,-0.15511791,0.2845238,-0.027363976,-0.18755007,0.13160504,0.33141991,0.5663989,0.023659488,0.23025428,0.118510485,0.62327987,-0.098898135,0.4175036,-0.12764682,0.49132648,-0.27142295,-0.17767431,0.28261948,-0.4708527,0.27174905,-0.23965698,0.14332752,0.42916545,-0.46184158,-1.0332993,-0.5392585,-0.040673513,1.2490892,-0.40313712,-0.4558861,0.3466197,-0.19190198,-0.19361897,-0.08894268,0.6041493,-0.17794447,-0.103881665,-0.8383789,0.16489233,-0.1552632,0.12661622,0.092876665,0.11307057,-0.21113239,0.64597183,-0.015749725,0.3381028,0.14303547,0.21579534,-0.1749232,-0.50349617,0.05121843,0.7044843,0.50453264,0.13066101,-0.11927682,-0.16582388,-0.39923653,0.08998406,0.11958472,0.38447914,0.81905013,-0.0054069213,0.18987362,0.2646994,0.050803095,0.0024577181,-0.29792282,-0.36380133,0.11342412,0.06307279,0.5963059,0.7518668,-0.2163213,0.35757485,0.060107056,0.27433398,-0.27117658,-0.48493174,0.5374944,1.1014739,-0.22829014,-0.024173537,0.60574466,0.5743809,-0.52365375,0.5823479,-0.8677711,-0.44730827,0.5071706,-0.13981093,-0.41277936,0.2520177,-0.29271165,0.117085494,-0.88158035,0.4052968,-0.1476142,-0.16358918,-0.52955943,-0.13329042,-3.837535,0.24645321,-0.34735635,-0.1507623,-0.14602792,-0.015776915,0.44834018,-0.86221343,-0.5805947,0.022199722,0.07169509,0.6678495,-0.0952257,0.07280054,-0.26572448,-0.44194445,-0.3434523,0.15565902,0.08627965,0.32777607,0.009513855,-0.56568843,-0.09377909,-0.18441482,-0.4966631,0.16960816,-0.6385654,-0.4770769,-0.19772714,-0.57492554,-0.22622709,0.73831797,-0.033591706,-0.031719875,-0.20536196,0.008323519,-0.1156345,0.24069785,0.22358716,-0.040516336,-0.076749586,-0.11804446,0.041198473,-0.33269867,0.19071741,0.062922634,0.30253816,0.18786968,-0.141952,0.015936106,0.7471269,0.66350365,-0.06524366,0.8670804,0.52813077,-0.1037642,0.26471445,-0.28832453,-0.31833476,-0.5163911,-0.41365895,-0.099099696,-0.3529618,-0.39060232,-0.18221445,-0.32233164,-0.75663805,0.5702872,0.06010686,0.38158128,-0.13352804,0.2829392,0.47674838,-0.09235714,-0.0928591,0.09329403,-0.16098152,-0.54107314,-0.119636066,-0.6624513,-0.3741612,0.46867982,0.8102947,-0.31446812,0.055401534,0.13385306,-0.11360752,0.115595184,-0.009673521,0.06486491,0.06779344,0.31446505,-0.0948151,-0.72686774,0.44875765,-0.075552665,-0.12939723,-0.72208714,-0.019126922,0.6934213,-0.7023893,0.3136761,0.44531405,0.16537993,0.03477857,-0.5419633,-0.0186238,0.24655561,-0.15507732,0.20395863,0.21164544,-0.7299984,0.34087434,0.36390457,-0.4410626,-0.4783372,0.7591321,0.004365807,-0.3577856,-0.17412753,0.41391388,0.22184277,0.13514672,-0.29428402,0.40873694,-0.57185614,0.26212138,0.29895863,-0.112461925,0.51526463,-0.013212125,-0.15267918,-0.8209025,0.22550605,-0.47366634,-0.3999587,0.26169524,0.036973383,0.11087588,0.2144966,0.17105883,0.3991252,-0.4430038,0.060322892,-0.071374156,-0.29101273,0.5168557,0.5464495,0.53157645,-0.32411674,0.74106294,0.055158705,-0.15457268,0.23820657,0.011373748,0.4326109,0.032844495,0.5213975,0.11744813,-0.2541832,0.38295457,0.8534271,0.103293516,0.34093884,0.16455893,-0.11150966,0.16676916,0.21280809,-0.04141204,-0.019778142,-0.4584596,-0.08299256,0.07142968,0.21280806,0.719248,0.1532297,0.29535303,-0.013991068,-0.39428496,0.19726408,0.28694776,-0.035986796,-1.334855,0.25851986,0.24334736,0.6642985,0.5016798,-0.0061913184,0.015834963,0.43824276,-0.12541576,5.0519902e-05,0.35788378,0.10078772,-0.6285989,0.7115574,-0.59648395,0.4082137,-0.1710322,0.04007521,-0.06478617,0.051377963,0.4333993,0.8129433,-0.07335081,-0.056339473,0.09332299,-0.39306298,0.002992183,-0.407168,-0.05659665,-0.5930199,-0.29213956,0.5034406,0.45451102,0.2635859,-0.20251285,-0.015140157,0.0021009545,-0.19811969,0.28268543,-0.06342112,0.043977547,-0.21623991,-0.7118148,-0.30787036,0.4636664,0.11828646,0.19066697,-0.10477164,-0.19970576,0.34882447,-0.28465092,0.07851851,0.11909708,-0.75541836,0.03410038,-0.56279,-0.60259455,0.35929433,-0.030630061,0.308725,0.20151426,0.031651437,-0.35701153,0.2917328,-0.07424768,0.88936776,-0.02161105,-0.32492957,-0.35389042,0.13559987,0.123230666,-0.2582234,-0.15526606,-0.29967955,0.096868984,-0.37268606,0.4704553,-0.12125028,-0.2091559,-0.089731865,-0.27810556,-0.033071984,0.4643226,-0.19702005,-0.3123853,-0.21902442,-0.13155837,-0.3380301,-0.33937135,-0.21878009,0.19002075,0.0751096,0.02704519,-0.16193524,-0.17362387,0.14148687,0.5735886,-0.0753211,0.30505848,0.5561245,0.30316907,-0.28853512,-0.26362953,0.26136085,0.5627782,-0.103973456,-0.04298061,-0.44789353,-0.6448752,-0.38976905,0.14935142,-0.32538182,0.47630307,0.215223,-0.3442336,0.8586676,0.097689055,1.1054982,-0.13796109,-0.34551477,0.04946643,0.7045744,0.009752795,-0.14722134,-0.42461395,1.0468912,0.5496555,-0.2517901,-0.3481935,-0.3371123,-0.29325712,0.3482984,-0.37957776,-0.20615955,-0.116542935,-0.7460905,-0.32858655,0.20272334,0.4512001,0.19021003,-0.04609414,0.25673983,0.21600562,0.20443778,0.25693157,-0.60154504,-0.3981553,0.34043404,0.23942153,-0.12412796,0.1311509,-0.40229404,0.43026295,-0.46142054,0.010997802,-0.42575562,0.19856791,-0.048993815,-0.514909,0.18897648,0.003361779,0.28450927,-0.30804113,-0.39385024,-0.19121878,0.4390413,0.13203983,0.21943177,0.5688741,-0.39610443,0.030927265,-0.10099503,0.71287966,1.1627444,-0.12244239,-0.11057352,0.45954534,-0.59248483,-0.87996656,0.34981743,-0.3354477,0.14416118,0.030238977,-0.34484783,-0.69608873,0.4083188,0.02335906,-0.062085103,0.13873766,-0.438761,-0.29695714,0.31199095,-0.30555347,-0.31476712,-0.4325179,0.20432086,0.6230083,-0.39270028,-0.18086445,0.090168215,0.444803,-0.16635828,-0.6073637,-0.12905051,-0.4495714,0.47878805,0.117934205,-0.3973503,0.1380776,-0.04589175,-0.48588145,0.15547948,0.26059085,-0.35628104,0.17642236,-0.3833324,-0.027417326,1.0398469,-0.19622523,-0.16527694,-0.6980717,-0.45744416,-0.7640919,-0.4159218,0.60224044,0.22531821,0.12004294,-0.678675,0.17501782,0.0061290674,-0.07401656,-0.15619296,-0.26748526,0.43631387,0.14550622,0.48798504,0.04705253,-0.66397625,0.15589847,0.10031108,-0.454891,-0.6642371,0.6472674,-0.30349913,0.8321271,0.16371413,0.09963576,0.23893769,-0.36027035,0.016467681,-0.27022693,-0.25439999,-0.7077131,0.19873774,465 -846,0.39498043,-0.1846466,-0.45923853,-0.048765987,-0.14194578,-0.25621954,-0.07456515,0.6306386,0.23242573,-0.3445705,-0.24152379,-0.19105506,0.04437296,0.4929615,-0.14326704,-0.65039915,-0.124863185,0.22396636,-0.47205043,0.63467216,-0.29675588,0.12653889,-0.05949043,0.52479464,0.15144731,0.13235414,0.19694877,-0.03475495,-0.021960616,0.06540939,-0.019790133,0.29414544,-0.5124518,0.12572,-0.110549115,-0.4476095,-0.12713324,-0.5577552,-0.42262658,-0.71396416,0.4257101,-0.7305996,0.5095436,0.19019906,-0.28204662,0.40148762,-0.115849115,0.2619875,-0.35138285,-0.17011636,0.033868033,-0.056694206,0.022683987,-0.31959477,-0.122723736,-0.13310438,-0.5984611,0.12477374,-0.34161362,-0.035141762,-0.32669127,0.13489772,-0.32293585,-0.115035415,-0.0031230499,0.47051588,-0.43773842,-0.107787974,0.1827846,-0.043037713,0.5250706,-0.55884856,-0.1472153,-0.20898652,0.18349324,-0.27816716,-0.21855848,0.40449348,0.13480304,0.45241866,-0.09973931,-0.15445496,-0.48638096,0.14539774,0.08214589,0.4710625,-0.23806633,-0.6764942,-0.031014303,0.10818762,0.061650634,0.21759538,0.20350654,-0.27205274,-0.11389816,-0.08951471,0.0071471133,0.426716,0.5365912,-0.1391356,-0.30552956,0.35558447,0.59854907,0.17648691,-0.05747639,-0.13052581,-0.010463144,-0.5674457,-0.22187693,-0.12179614,-0.24688238,0.64014125,-0.16304286,0.22148061,0.5544966,-0.11352697,-0.112430096,-0.034102768,-0.053670686,-0.018675208,-0.3512303,-0.3135691,0.45098162,-0.2359302,0.32910326,-0.11582901,0.6895118,0.23799467,-0.85873324,0.41358694,-0.5596879,0.21124025,-0.15920241,0.5728101,0.81413645,0.4470559,0.39100692,0.7352647,-0.44978634,0.12084105,0.0011402766,-0.46952057,0.07848633,-0.18906434,-0.14720415,-0.5407229,-0.14959306,0.036383193,-0.2686944,0.28311613,0.19319057,-0.5769201,-0.02908056,0.2213761,0.72896963,-0.27263775,-0.10002605,0.8134901,1.0975164,1.079846,0.021860063,0.9966143,0.1713868,-0.31935894,0.42895755,-0.43703112,-0.8524339,0.25845483,0.28617683,-0.31367728,0.30546036,0.09302575,0.03973156,0.39005423,-0.5555932,-0.03488308,-0.23339029,0.11957737,0.003278258,-0.23935981,-0.6231013,-0.19008346,-0.2511534,0.06399628,-0.0077764317,0.31302106,-0.1922629,0.42660832,-0.056663107,1.5396461,0.0038256745,0.09683678,0.043725315,0.5163861,0.21408796,-0.16081442,-0.20464808,0.32479212,0.31266996,0.124316074,-0.6252346,0.20838137,-0.15885915,-0.5373458,-0.06277185,-0.23859817,0.15485741,0.11202743,-0.31256,-0.15741819,-0.1530634,-0.33982202,0.46539295,-2.6925857,-0.18663247,0.057382483,0.37488472,-0.21610934,-0.30924854,-0.07699487,-0.5009017,0.5310425,0.3881999,0.5404802,-0.6870071,0.16474135,0.3275601,-0.5896196,-0.0649365,-0.59858155,-0.12359882,-0.050987486,0.36995038,0.018912008,0.06783143,0.28017202,0.21967228,0.4584471,-0.006420354,0.028275639,0.15401582,0.28266752,0.0024471283,0.25027663,-0.19725831,0.48987722,-0.33058056,-0.27945176,0.22434372,-0.21532829,0.16863938,-0.20696343,0.1434525,0.42661998,-0.43331861,-0.99289036,-0.5120856,-0.065751195,1.0456439,-0.110474795,-0.4136417,0.4139024,-0.34044215,-0.061683137,-0.16297852,0.48461214,-0.1116029,-0.21164648,-0.8309696,-0.048907865,-0.050464194,0.10994935,0.050046246,-0.13688916,-0.5233147,0.6125181,0.032633316,0.38099155,0.41536632,0.21544282,-0.27539012,-0.64042145,0.052416395,0.6563134,0.33302423,0.1542778,-0.2520872,-0.15632033,-0.28830048,-0.035245437,0.103936076,0.4346824,0.7631333,-0.11607329,0.044340704,0.34051895,0.05363814,0.081414595,-0.089763016,-0.24704766,-0.096317135,-0.11049963,0.6336004,0.9125492,-0.27678218,0.38316965,-0.091812246,0.3447611,-0.0654691,-0.32884148,0.6809843,1.2308904,-0.10923847,-0.19085068,0.61199605,0.41150025,-0.26936814,0.51568395,-0.57071024,-0.121716835,0.39358306,-0.18972683,-0.39216506,0.07699216,-0.28338555,0.17826729,-0.9864156,0.2009641,-0.23179038,-0.39535293,-0.82529974,0.0017228723,-3.3333256,0.15492627,-0.4745911,-0.26823676,-0.032958224,-0.17475446,0.09025067,-0.80898476,-0.57243526,0.25609842,0.16733404,0.6978747,-0.11882442,0.19359471,-0.20487015,-0.24775167,-0.2980012,0.061074555,0.26738653,0.3118092,0.19811754,-0.39510584,-0.04593696,-0.10486916,-0.4741961,0.046238143,-0.4804881,-0.30591905,-0.3184199,-0.6861925,-0.35560802,0.5441061,-0.2513503,0.06400014,-0.18152083,-0.106382035,0.01802564,0.3256715,0.07943214,0.28045708,0.12707542,0.025565654,0.15935378,-0.1891879,0.10740035,0.07706735,0.2733995,0.3279226,-0.27306178,0.21599068,0.64052004,0.8603063,-0.18568899,0.7309206,0.88907003,0.057028443,0.1580968,-0.34195653,-0.2606137,-0.6725807,-0.42005157,-0.052294344,-0.34568262,-0.69495463,-0.044130694,-0.4396303,-0.86581916,0.5905685,-0.110511065,0.36566505,0.1241061,0.09422789,0.5818946,-0.264726,-0.006078293,-0.042154253,-0.057972908,-0.5846706,-0.1742152,-0.5591596,-0.5797958,0.06944715,0.99216205,-0.13744037,-0.027709356,0.043070752,-0.1269703,0.03269147,0.16581191,-0.11440762,0.28132832,0.22182584,0.053517163,-0.6126373,0.5207824,0.21899967,-0.24386747,-0.6234016,0.2861567,0.46149072,-0.6200452,0.55305845,0.2343244,-0.12536815,-0.13974883,-0.6983094,-0.26401302,-0.009409882,-0.12794419,0.37931088,0.32584378,-0.78229064,0.4690121,0.48199877,-0.44369534,-0.8268588,0.45109963,0.035139408,-0.47128668,-0.05479008,0.122216485,-0.01956912,0.041728575,-0.36888623,0.32730582,-0.3581908,0.23036341,0.23633225,-0.008602497,0.26798937,-0.23803693,0.08562777,-0.89259404,0.28961632,-0.6260622,-0.1638547,0.30447838,0.2259513,0.09438595,0.04179198,0.21694076,0.3864732,-0.27946746,0.15827294,-0.06811127,-0.21657403,0.18038131,0.5078874,0.4225954,-0.49797478,0.51644963,-0.040159877,-0.17652436,-0.17669697,0.0011887898,0.47439042,0.00786445,0.32768974,0.040192783,-0.27733403,0.055407565,0.56857514,0.1765284,0.3386121,-0.040173445,0.035242874,0.3946497,0.11726737,0.35110986,0.00748088,-0.4414413,0.091558926,-0.22631784,0.1715643,0.46880743,0.16441129,0.32977495,-0.25162387,-0.43158078,0.0014184279,0.26486248,0.12206795,-1.3512353,0.4387599,0.29383263,0.804418,0.73842806,0.19965146,-0.045906752,0.70968604,-0.20933919,0.22486635,0.3382151,-0.0071049533,-0.69619054,0.51069105,-0.82364494,0.37297976,0.010632376,-0.12944268,0.05870758,-0.047849316,0.27875006,0.55717564,-0.21164858,0.097675584,-0.024623385,-0.15837018,0.100206316,-0.4074721,0.1282252,-0.7037615,-0.27047798,0.58771676,0.56830627,0.2550374,-0.18705185,0.02001839,0.15889832,-0.011065225,0.13999663,0.02064105,0.18382053,0.10555809,-0.60235643,-0.2362153,0.42641202,-0.040165823,0.13042311,-0.20729046,-0.19705468,0.094380535,-0.16272287,-0.38277373,-0.05835546,-0.7336922,0.074363485,-0.13465114,-0.18088089,0.6827233,-0.081338786,0.34304562,0.18225108,0.25680813,-0.36647078,0.2675622,0.022092521,0.8198983,0.12139321,-0.2153822,-0.28522506,0.28502956,0.20219582,-0.17021833,-0.039049152,-0.19392705,-0.08452516,-0.34678987,0.63318205,0.091319025,-0.22129607,-0.03234793,-0.05954552,0.06870352,0.624992,-0.14679138,-0.1671719,-0.12284794,-0.22739106,-0.32897407,-0.26396486,-0.13166448,0.32108662,0.26388392,0.046272904,-0.025240997,0.04951315,-0.06312236,0.6736052,0.047119632,0.37618995,0.21898745,0.121347345,-0.37221512,-0.27749744,0.16708319,0.3705939,0.045862336,-0.19384648,-0.2542024,-0.41936693,-0.36775216,-0.2318395,-0.09486374,0.4285945,0.07766176,-0.120034,0.527631,0.23464982,1.1619549,-0.030212333,-0.40320686,0.22319023,0.443656,0.012147297,-0.17295621,-0.31306514,0.948154,0.55720407,-0.16908377,-0.13861667,-0.15171246,0.017086783,0.18977256,-0.20440696,-0.19415247,0.053135555,-0.5816708,-0.28369698,0.28876892,0.2202369,0.29685256,-0.15866749,0.19637525,0.13315131,0.011360452,0.29425934,-0.24270584,-0.19158655,0.38856867,0.278308,0.10032063,0.12199665,-0.3295761,0.37411836,-0.3187071,0.03049565,-0.30900946,0.18367988,-0.22198947,-0.5519886,0.17435496,0.12313048,0.34312353,-0.060725633,-0.27967098,-0.26422378,0.4995595,0.14571242,0.13821702,0.56297797,-0.28103396,0.07650518,-0.10801635,0.30185822,1.0208479,-0.31288955,-0.11570728,0.2700191,-0.26503047,-0.69408154,0.456409,-0.12959006,0.15803866,-0.28915122,-0.12788415,-0.8098914,0.108927466,0.18161368,-0.021938095,-0.0013047172,-0.6271832,-0.27594283,0.18149066,-0.2993687,-0.19077568,-0.4253184,0.07733696,0.604233,-0.32551822,-0.41148105,0.20347631,0.07698164,-0.123678,-0.46160784,-0.10928873,-0.3642381,0.23025036,0.14726175,-0.5283381,-0.10611666,0.20302089,-0.3349729,0.113084435,0.036302228,-0.26801932,0.13454838,-0.41265082,-0.09265804,1.1038938,-0.3007794,0.22629388,-0.49778035,-0.46926853,-1.114575,-0.3240455,0.7242964,0.03583156,0.084474385,-0.80797696,0.11010436,0.011465128,-0.20150131,-0.15701781,-0.16466542,0.3007389,0.12968366,0.3065263,-0.08173359,-0.69131327,0.13388757,0.20965695,-0.03413689,-0.6362897,0.55495864,0.10343114,1.0766311,-0.025069088,0.15694602,0.3047211,-0.43022457,-0.058667164,-0.26001897,-0.3121992,-0.51847833,0.025583217,466 -847,0.47691774,-0.16193405,-0.48991284,-0.36763057,-0.32041317,-0.06409705,-0.32162353,0.19941531,0.26958537,-0.46059224,-0.09610996,-0.04108553,-0.021258041,0.2643075,-0.25772116,-0.73202634,-0.063091315,0.13891818,-0.8203034,0.4689678,-0.55755895,0.17026679,0.30905744,0.42433557,0.18163274,0.33976912,0.21620369,-0.065695435,0.1396621,-0.009571716,0.21112435,-0.20573954,-0.7982855,0.3038131,-0.17060868,-0.38437518,-0.03058925,-0.5547232,-0.39462313,-0.6775376,0.29182336,-0.7079921,0.44065842,0.17656517,-0.23905893,-0.37767053,0.072414815,0.23795736,-0.3507565,0.22871739,0.36562037,-0.2511568,-0.022578625,-0.084693335,0.10506507,-0.5336763,-0.4017261,0.06849151,-0.435563,-0.030326271,-0.10351621,0.15172297,-0.23787351,0.041241143,-0.11977816,0.42174998,-0.48258314,-0.2124893,0.11390203,-0.19752152,0.26183605,-0.50305015,-0.38446924,-0.14864543,0.23551226,-0.12024528,-0.31768563,0.3607117,0.12975313,0.5753326,0.20085645,-0.21759377,-0.056587335,0.09790907,0.06401277,0.48155892,-0.053444054,-0.31120345,-0.2704935,-0.14553373,0.28966972,0.10109773,0.054474384,-0.49431428,0.13712056,-0.008715575,-0.29909885,0.45368278,0.6548465,-0.32217965,-0.037830085,0.27225175,0.15550643,0.3000626,-0.19957201,0.20025969,0.0124542015,-0.45277128,-0.28309712,0.15766068,0.00048167506,0.71626395,-0.13415809,0.38567185,0.67124385,-0.097919285,0.02532879,0.0007315874,-0.018435394,-0.03165061,-0.17050529,-0.45171842,0.35946086,-0.6515536,-0.030464694,-0.36557746,0.6846792,0.16688013,-0.81706804,0.3406807,-0.6843143,0.15400527,-0.29763767,0.5686845,0.8592327,0.46122953,0.20649308,0.7415514,-0.5802516,0.08102374,0.08854952,-0.25680414,0.19044735,-0.14226125,0.24287541,-0.4012846,-0.23397724,-0.042492528,0.12415514,-0.075362094,0.42420062,-0.26655173,-0.12275771,0.12454891,0.6478134,-0.30703062,0.06907328,0.85117006,1.3699918,1.2096654,0.22813708,1.4427084,0.30563548,-0.16350166,-0.115650766,0.101365924,-0.62237537,0.19426809,0.31261957,0.6028732,0.25786898,0.16369309,-0.18528087,0.43738842,-0.6368362,0.17616822,0.02553535,0.26951385,-0.06637983,-0.06303206,-0.40788043,-0.1899507,0.070388086,0.12918414,-0.3577728,0.3088682,-0.13508649,0.26124164,0.05285876,1.0907363,0.11804745,0.039089963,0.036603525,0.6599221,0.14809406,-0.35130402,0.038416844,-0.008644484,0.42773843,-0.07791258,-0.6763191,-0.12915973,-0.30080685,-0.48225296,-0.25158313,-0.43258628,-0.18118958,-0.18575454,-0.5773232,-0.12970938,0.15552849,-0.29499164,0.2585598,-2.389139,-0.320107,-0.20488691,0.4520876,-0.14550287,-0.066591226,-0.20566891,-0.23774154,0.45892176,0.5303744,0.57858074,-0.6900387,0.67700726,0.5027484,-0.40094972,0.04325561,-0.65503156,-0.03833131,-0.11573679,0.05642764,-0.045088097,-0.21745495,-0.08712741,0.18174537,0.60370976,0.14796297,0.0591736,0.1334029,0.53173983,-0.044119965,0.78125995,-0.048922658,0.39159894,-0.41885352,-0.22481918,0.2538608,-0.5493802,0.13473295,0.03259032,0.19265594,0.5929082,-0.5716071,-0.98957795,-0.67077214,-0.33341095,1.1373171,-0.258289,-0.38365176,0.36307105,-0.07376455,-0.23696782,0.069738775,0.6991756,-0.28478137,0.17359103,-0.7912801,-0.052496895,-0.15388037,0.1558498,0.0017635425,0.06581962,-0.52584475,0.79613465,-0.027994903,0.5318726,0.48038152,0.15050842,-0.04791811,-0.44907987,0.26992658,0.83205026,0.44972563,0.10645195,-0.14492875,-0.012430511,-0.23027913,-0.077306814,0.18213822,0.67201835,0.77646303,-0.19028477,0.20497292,0.42804587,-0.23864198,-0.033268932,-0.06087561,-0.5067165,-0.128253,0.14762713,0.68943834,0.9626458,0.0014165143,0.19336838,-0.094940476,0.17130516,-0.29516134,-0.4067018,0.5493016,0.5135378,0.031733114,-0.0972051,0.5683226,0.48493552,-0.2835462,0.42441192,-0.55565745,-0.5181753,0.420041,0.1108905,-0.32841945,0.03588816,-0.5932355,0.11410882,-0.9574384,0.5757708,-0.19692798,-0.5624474,-0.59114295,-0.39263055,-2.89624,0.095203616,-0.30530217,-0.2459157,-0.22200137,-0.17988239,0.41987333,-0.6640334,-0.60228395,0.22119176,0.07810467,0.62896186,0.07495479,0.094279446,-0.21542925,-0.15746462,-0.37516102,0.21993844,0.13738339,0.2470904,0.1688165,-0.35237274,-0.0689295,-0.30107912,-0.41314316,0.085808694,-0.51428604,-0.56214064,-0.020643897,-0.48473728,-0.40623498,0.72646093,-0.18757649,-0.09281907,-0.17327201,-0.16453646,-0.3185631,0.34659806,0.24561436,0.16764264,-0.056290567,0.039940316,-0.39293876,-0.24644147,0.08224248,0.1462145,0.30612007,0.25642672,-0.3032178,0.09561028,0.54948956,0.48557582,-0.119367175,0.7231803,0.34694767,0.00962129,0.33621466,-0.26817125,-0.36001515,-0.6062063,-0.3169097,-0.100579955,-0.37283692,-0.3828317,0.06703718,-0.29024133,-0.78633875,0.35034943,0.11744008,-0.08308225,-0.056315064,-0.06056876,0.064162366,-0.008961335,-0.094320156,0.025407834,-0.023737073,-0.5480374,-0.32412234,-0.90858,-0.5086055,-0.17868656,1.1836501,0.025118887,-0.17424202,0.37283137,-0.37424707,0.28766987,0.114973255,0.05597956,0.03241073,0.31770945,-0.13526097,-0.79999703,0.3542961,-0.30996928,-0.13766527,-0.59479064,-0.0621351,0.900822,-0.6229483,0.55339086,0.5574348,0.25378242,-0.18334843,-0.5279575,-0.44816634,0.012516111,-0.05796976,0.5309575,0.063991405,-0.73498154,0.51158303,0.036701772,-0.2598603,-0.6652833,0.6035982,-0.05312908,-0.2468168,0.31399372,0.22639032,-0.09754904,-0.26989016,-0.15001887,0.52204496,-0.40752423,0.55493206,0.13954927,-0.040137917,0.5133371,-0.008544791,-0.28029022,-0.5381163,-0.12464375,-0.5806152,-0.26782915,0.06442665,-0.006590525,0.07893911,0.22021544,0.088871144,0.32580975,-0.19143985,0.24078561,-0.27279365,-0.40598145,0.26431462,0.6253472,0.4791766,-0.6174446,0.7717921,0.21114711,0.08172501,-0.35560703,0.11257068,0.28105506,0.31600082,0.22444735,-0.23134486,-0.052072663,0.0632864,0.84072924,0.30012825,0.41867337,0.39437357,-0.13099934,0.40581688,0.1646723,0.12534507,-0.14734526,-0.2929134,0.029268406,0.036282625,0.20729357,0.24494927,0.032937996,0.31905305,-0.11721227,-0.12653768,0.19283734,0.2190675,-0.19652705,-1.3245804,0.5148305,0.35494184,0.690947,0.7295406,-0.11902404,0.09608809,0.5978875,-0.15007307,-0.015027653,0.11691496,0.14845626,-0.39682198,0.63883203,-0.37758437,0.4310741,-0.16569753,-0.036788642,-0.025816761,0.08884738,0.46971107,0.6391126,-0.05283824,0.17165989,0.01890481,-0.24687111,-0.19716705,-0.44246793,0.14286968,-0.56210023,-0.3567975,0.84675485,0.39391986,0.14119692,-0.19132541,0.010006945,0.008044953,-0.19794911,0.26608768,-0.16351335,-0.38802004,0.11825833,-0.8261352,-0.22890943,0.62875545,-0.38019833,0.02895803,0.14318173,-0.26262796,0.19894056,0.078380145,0.061468836,0.026174719,-0.7049265,-0.0058275214,-0.54656076,-0.19649106,0.26503414,-0.53630894,0.19200593,0.19622485,0.02886797,-0.06304907,0.19969316,0.07389628,0.6738846,0.13025719,-0.28150627,-0.21871513,-0.20454359,0.25387678,-0.2512764,-0.17255329,-0.60133547,0.11997992,-0.52030534,0.47776887,-0.043966696,-0.053406674,0.22794724,-0.13054818,0.010539651,0.40016636,-0.27254003,-0.12316823,0.30827036,-0.012468721,-0.22447796,-0.055520177,-0.48635152,0.42212498,0.14189686,0.24815275,0.0028164138,-0.060233504,-0.002761364,0.37275597,0.34248912,0.3071349,0.3437979,-0.029598659,-0.47057533,0.091132216,-0.117271245,0.45789036,0.36301842,-0.19241233,-0.41393554,-0.37221393,-0.16111644,0.33944598,-0.21865262,0.110120974,0.08107524,-0.27430865,0.7389787,0.3182791,1.185531,0.008644273,-0.39299902,0.119223095,0.45568717,-0.1710751,0.11845579,-0.43503007,1.0025352,0.5288082,-0.16157539,-0.24643576,-0.5605847,-0.38989496,0.121358104,-0.30742317,-0.41774783,-0.18329547,-0.7336127,-0.10521028,-0.013558109,0.16158904,-0.10979119,-0.027885154,-0.04208744,0.19166203,0.19384663,0.27416393,-0.7969963,-0.121002525,0.27155074,0.20741095,-0.03154858,0.14874046,-0.416383,0.46614417,-0.69903296,0.20217091,-0.5418124,0.031852666,0.013663414,-0.30558074,0.18489797,0.029396117,0.5134842,-0.37202707,-0.19581799,-0.2248283,0.7746075,0.26241654,0.37679553,0.7190583,-0.26491746,-0.08362528,-0.040956616,0.50135756,1.3230695,-0.32613418,0.11348582,0.29584903,-0.35681364,-0.45161334,0.09856704,-0.5157133,-0.039913867,0.013262439,-0.35137174,-0.53061104,0.20820993,-0.09483933,-0.20547496,0.11291853,-0.74340314,-0.29624704,0.5101918,-0.14337151,-0.462381,-0.34811613,0.18597741,0.6181674,-0.35089457,-0.12465721,-0.03153787,0.32868484,-0.30490014,-0.5506454,0.07908874,-0.53685135,0.48725,0.0022784073,-0.24709213,-0.21644938,0.18473889,-0.49885634,0.28181934,0.26304808,-0.26331237,-0.024453903,-0.21290796,-0.1611551,1.2273185,0.16952622,0.3156307,-0.6635654,-0.48576844,-0.8167555,-0.4570388,0.18380986,0.42669192,-0.0698806,-0.46113205,-0.14670801,0.0040592104,0.03383918,0.0061823525,-0.5911127,0.5217686,0.11515385,0.60927176,-0.058513075,-0.87291175,0.09463922,0.08877188,-0.32371798,-0.30853906,0.5043893,0.05157691,0.85552263,0.081885636,0.08257197,-0.23757589,-0.6316754,0.39079043,-0.28709745,-0.2643647,-0.57175094,0.038079754,474 -848,0.3680927,-0.17802821,-0.5020959,-0.09681561,-0.083916456,-0.05829483,-0.21205862,0.4026619,0.20841344,-0.6391501,-0.26950482,-0.15919639,0.14847188,0.2844012,-0.2310756,-0.64751357,-0.069654554,0.16193981,-0.5556933,0.68544513,-0.42621616,0.15217979,0.07578818,0.42804572,-0.05539647,0.13183907,0.25967988,-0.1355461,-0.18885684,-0.08525142,-0.12396642,0.4569594,-0.37894592,0.13780497,-0.3004277,-0.33680508,0.10689247,-0.49968085,-0.06439202,-0.8550853,0.17104274,-0.82022476,0.26955178,0.113072306,-0.27125183,0.15104313,0.081318855,0.23200697,-0.25876242,-0.077595055,-0.040959407,-0.08123361,-0.25987023,-0.23712929,-0.19847143,-0.27743337,-0.50973815,0.032304283,-0.56395715,-0.10172518,-0.11154304,0.1724958,-0.26642358,0.0028044533,-0.1792212,0.7252848,-0.4026785,-0.101094484,0.15483202,-0.07780754,0.2890387,-0.59348804,-0.23093426,-0.19230944,0.30733195,-0.1941445,-0.2645487,-0.025192574,0.3024675,0.39617774,-0.07599529,-0.17757845,-0.32872,-0.12209172,0.17401473,0.4537361,-0.1814978,-0.6898916,-0.12435738,0.1254031,-0.08698317,0.19888408,0.12718195,-0.26445675,-0.03883365,0.011026424,-0.28891647,0.3890581,0.43154278,-0.43010652,-0.16140276,0.28725842,0.58660525,0.1184017,-0.22543307,-0.18703806,0.10443139,-0.58047485,-0.067829095,0.27441117,-0.26035655,0.6353659,-0.16035855,0.37036267,0.32464066,-0.12046385,-0.063895054,0.035866816,0.06502962,-0.09945768,-0.32891205,-0.19305593,0.32924494,-0.32863492,0.144157,-0.31417564,0.7577662,0.09985822,-0.7639168,0.29778728,-0.57171375,0.06886345,-0.105039574,0.4579043,0.6313531,0.261232,0.33997628,0.50248766,-0.2592369,-0.046441827,-0.26601493,-0.22334735,-0.2823026,0.03696199,0.17782788,-0.4021947,0.00915432,-0.0945876,0.006243492,0.018680537,0.19175164,-0.4677752,-0.21482146,0.18638472,0.7026705,-0.25134152,-0.27324256,0.7802126,0.96474665,0.86570734,0.15706451,1.0477813,0.0563297,-0.14543933,0.21794467,-0.22571822,-0.65235186,0.34697708,0.48739636,-0.016956776,0.20974962,-0.064872034,0.009345611,0.4768796,-0.3228402,-0.033066202,-0.16981514,0.057147533,0.18059689,-0.023630932,-0.36948848,-0.2499125,-0.15384872,-0.031266943,0.10373353,0.21383287,-0.1659232,0.17305861,0.10577831,1.3152114,0.0028357257,0.08811456,0.16976328,0.2479387,0.17987269,-0.0975701,-0.07831529,0.29538757,0.2093984,0.19929409,-0.5606661,0.11708444,-0.20533027,-0.39945015,-0.15565181,-0.31653416,0.030204332,-0.035486255,-0.4732393,0.019760981,-0.14664106,-0.46450686,0.48428893,-2.8248692,-0.15618971,-0.2124116,0.38695887,-0.33242828,-0.38454112,-0.17617404,-0.51763135,0.421855,0.3056482,0.5044339,-0.48701605,0.45514187,0.33276936,-0.5351357,-0.107011996,-0.72792363,-0.11625707,-0.07293781,0.31738058,-0.09219267,-0.06764362,0.016294496,-0.04474553,0.46451917,-0.022503927,0.06312462,0.29289564,0.41530475,0.08503589,0.51386297,-0.07541355,0.46877038,-0.4626012,-0.26796433,0.13744275,-0.44739556,0.35423616,0.08251255,0.14617541,0.5219975,-0.5275907,-0.9683178,-0.7245836,-0.3876989,1.2783278,-0.23663945,-0.3895078,0.15660828,-0.23477913,-0.28021362,-0.13820279,0.58389306,-0.013100128,-0.117115356,-0.7355346,0.099408895,-0.14491548,0.37204966,0.0040958,0.027392983,-0.42161146,0.5348225,-0.039235603,0.47889552,0.44609985,0.2188797,-0.409407,-0.31788647,-0.19277768,1.0557438,0.13949938,0.12165292,-0.15697162,-0.35040057,-0.4021742,0.27750865,0.09388695,0.74075985,0.5675491,0.014215897,0.11520877,0.33270726,0.104798265,0.15873285,-0.19236402,-0.32535148,-0.18757741,0.17124517,0.5752916,0.50631076,-0.15881954,0.4485104,-0.042029787,0.2691277,-0.26462778,-0.26594272,0.35145918,0.9674747,-0.09853941,-0.30646852,0.74094385,0.719539,-0.35167336,0.41874337,-0.5260508,-0.3572937,0.39678374,-0.25017175,-0.3767973,0.14686368,-0.3073516,0.16728765,-0.8747851,0.1449458,-0.48315677,-0.31545404,-0.5780743,0.0010515526,-3.424012,0.3827115,-0.109360635,-0.15555638,-0.13798217,-0.15910459,0.018431088,-0.65622485,-0.5783015,0.20994139,0.06746939,0.6809094,-0.122740276,0.13843288,-0.3075814,-0.4329826,0.04763906,0.2099222,0.25434333,0.26720157,-0.059416264,-0.43813968,-0.036172524,-0.116003335,-0.20152117,0.15492015,-0.5981397,-0.48090395,-0.11535943,-0.6537575,-0.28278923,0.54180837,-0.51031893,-0.0089074625,-0.18556423,0.09583602,-0.053083126,0.45567992,0.081845745,0.39932826,0.05941093,0.014935772,-0.13302918,-0.23409574,0.31011805,0.06778354,0.23541522,0.38932326,0.06325383,0.34955302,0.5845549,0.6039702,0.14760168,0.8936169,0.46552268,0.039246727,0.22717594,-0.21896766,-0.32471418,-0.59390926,-0.14267023,-0.058956314,-0.41429797,-0.37917015,0.019844458,-0.18190773,-0.6599408,0.69880223,-0.09909115,0.001403451,0.061128434,0.55974597,0.6587231,-0.23471898,0.025614897,-0.010047853,-0.054871585,-0.35463926,-0.2955975,-0.5357981,-0.3110038,-0.10788178,0.85357505,-0.25452772,0.053947877,-0.04939456,0.014128526,-0.10597712,0.2819809,0.14990559,0.25493518,0.5647495,-0.0056687393,-0.5365109,0.388611,-0.1608354,-0.22556917,-0.43479443,0.19930847,0.64636296,-0.7107871,0.63650185,0.42096996,0.04780018,-0.28461298,-0.53540236,-0.23372777,0.15430146,-0.22394316,0.33417436,0.33336282,-0.74318075,0.36351907,0.27256477,-0.04090199,-0.83145255,0.60773826,0.011119316,-0.43495902,-0.2496084,0.46472147,0.18653458,0.13097341,-0.10472986,0.061486024,-0.18590677,-0.036512237,0.20388897,-0.089826554,0.28353426,-0.36755848,0.010045166,-0.73890036,0.015098144,-0.49558416,-0.1934046,0.4605206,0.036387663,0.020382958,0.30146632,-0.0506373,0.36190984,-0.3248471,0.022556469,-0.10716281,-0.08263152,0.27927423,0.45790133,0.43004894,-0.43771216,0.55160224,0.0761954,0.0035238713,-0.2910907,0.0057200096,0.34161735,-0.093068264,0.46885642,-0.14533901,-0.2855583,0.38040745,0.6747206,0.16858149,0.46839082,0.021459272,0.08767029,0.25260928,-0.009002621,0.18485768,-0.09792581,-0.44267365,-0.01759786,-0.15373796,-0.027357524,0.42607614,0.01530686,0.30338442,-0.06630662,-0.2642001,-0.01427238,0.27547076,0.13692363,-1.0545596,0.36181214,0.07957124,0.8607734,0.5423514,0.008356363,-0.021922419,0.5241275,-0.23899902,0.13711514,0.3453258,-0.06966578,-0.45794976,0.6761485,-0.52976304,0.42854548,-0.15178262,0.015324754,-0.17590208,-0.22519304,0.4211646,0.9027171,-0.1841778,0.11527262,0.14193963,-0.19941129,0.12058446,-0.39560536,0.048696768,-0.5761337,-0.2674315,0.4982275,0.50425965,0.42288318,-0.2740592,-0.011326909,0.24211435,-0.12323973,0.22719419,-0.007071609,0.16106993,0.024796464,-0.6118535,-0.1447489,0.59738356,0.25148895,0.2800387,0.024563989,-0.14956535,0.3813567,0.07926197,-0.10836562,-0.0725881,-0.4563551,0.0034674257,-0.4729656,-0.44060907,0.36560142,-0.18868224,0.25128055,0.23655313,0.09356292,-0.414757,0.3636509,0.23272878,0.685023,0.030600289,-0.013199575,-0.34513053,0.18476315,0.14205872,-0.13200577,-0.08802409,-0.4675368,0.14861448,-0.76402706,0.42604887,0.06751121,-0.43613508,-0.20445114,0.07857543,-0.00295798,0.66916037,-0.0091582285,-0.13805912,-0.19121253,-0.17215236,-0.23363644,-0.18955682,-0.1457638,0.30662978,0.0639665,0.06781434,-0.14392199,-0.12541218,-0.11335526,0.47278056,0.0631947,0.312511,0.3522167,0.32387736,-0.4009056,-0.06123505,0.07694664,0.50238585,-0.084206276,-0.2816946,-0.257107,-0.32206288,-0.2652543,0.08800163,-0.016536668,0.35263705,0.14305891,-0.2731249,0.6468348,-0.07937608,1.1791633,-0.032992203,-0.31403407,-0.10018466,0.32840565,-0.106072895,-0.1626646,-0.2789586,0.85290784,0.35189542,-0.004644955,-0.09580579,-0.39918983,0.1500341,-0.029667,-0.14894325,-0.1393308,-0.01087334,-0.45258352,-0.23812751,0.03907764,0.25344074,0.20783354,-0.11652749,0.17713992,0.22548658,0.038902845,0.24920593,-0.3990078,-0.019840576,0.21123226,0.28630772,0.00030078492,0.10482761,-0.32196563,0.41027805,-0.58076704,0.18018985,-0.42460394,0.23148747,-0.21893483,-0.23339461,0.25763878,0.10446908,0.4271207,-0.22898181,-0.304901,-0.24874587,0.53885114,0.2531109,-0.008401553,0.4579518,-0.061605264,0.04808296,0.03822043,0.5878777,1.0280324,-0.23038262,-0.049731623,0.265932,-0.18498583,-0.64200646,0.23533864,-0.4564383,0.20225249,0.016241482,-0.116034426,-0.6439997,0.20018019,0.24539763,0.13053848,-0.047569346,-0.5365928,-0.21714692,0.23033683,-0.35180655,-0.17945059,-0.32306972,0.15749131,0.5608894,-0.17930917,-0.17932236,-0.099270016,0.113193505,-0.18600471,-0.5064929,-0.079776905,-0.38072324,0.19600303,0.16510856,-0.3093695,-0.14949168,0.07949004,-0.5001359,0.056138445,0.15466931,-0.3054588,0.049749475,-0.22840214,-0.10697479,1.0248339,-0.15210494,0.23264627,-0.28489563,-0.60403883,-0.701225,-0.17489605,0.44654128,-0.09915937,0.044123083,-0.59065443,0.13556875,-0.08597923,-0.33683276,-0.12920116,-0.33641073,0.3973249,0.0867643,0.5178963,0.02853328,-0.71267796,0.09669775,-0.0018144349,-0.105965845,-0.4077413,0.3202885,-0.031813707,0.8605363,-0.026618041,0.13049266,0.42361653,-0.4385073,-0.089540064,-0.15675153,-0.08760571,-0.5363419,-0.016362138,482 -849,0.4197061,0.008952935,-0.6930895,-0.16147007,-0.20514016,-0.17641716,-0.25315595,0.41071644,0.37900975,-0.59944814,-0.16221146,-0.35355556,-0.083976865,0.5962799,-0.33464238,-0.727158,-0.084249,0.1503193,-0.4343659,0.71046454,-0.3997393,0.2933941,0.05791081,0.5613304,0.26224828,0.16260162,0.40686712,-0.062427133,-0.17410457,-0.18328635,0.18518631,0.12888898,-0.6889948,0.10686004,-0.24344672,-0.7173235,0.053900737,-0.5236468,-0.23559736,-0.9238791,0.4597682,-0.89444405,0.585608,0.2842897,-0.2795212,0.07616768,0.451733,0.39879593,-0.12351749,-0.019349152,0.0935773,-0.026864627,-0.062416818,-0.06823699,-0.4652749,-0.56454414,-0.7872341,0.25727776,-0.41607985,-0.27244982,-0.2794682,0.22849013,-0.44358516,-0.02359199,-0.06343154,0.5334706,-0.32147592,-0.3024706,0.4514482,-0.18138091,0.41098198,-0.5527967,-0.26271304,-0.30373368,0.12963246,-0.2592089,-0.15834413,0.23545635,0.3409133,0.6612576,0.003934244,-0.35498548,-0.5455758,-0.0024848357,0.19246435,0.21799172,-0.3009236,-0.6105605,-0.17973489,-0.0053896704,0.1686186,0.33624926,0.3417846,-0.3112942,0.106870614,0.08177408,-0.33886895,0.4240178,0.5426601,-0.5077061,-0.3276129,0.31611872,0.5399456,0.3482908,-0.11493191,0.01582489,0.05558913,-0.6822732,-0.3541056,0.05000006,-0.24899305,0.7118395,-0.1489123,0.22274727,0.6334706,-0.21545269,-0.07344011,-0.065453894,-0.15960658,-0.23185135,-0.37797663,-0.33267266,0.35291854,-0.40749446,0.19144702,-0.33596477,0.7257107,0.14599682,-0.6564772,0.36814275,-0.80470127,0.19855334,-0.06656968,0.5231693,0.77800775,0.35713968,0.43765518,0.7228344,-0.44625005,0.015969634,-0.04697596,-0.30402434,0.13478439,-0.42047283,0.04582702,-0.3492745,0.047369216,-0.09515149,-0.1522033,0.09134385,0.47067627,-0.52144617,-0.07444259,0.3639566,0.85092664,-0.120654225,-0.08504478,0.80329704,1.01613,1.2048804,0.09548926,1.4238142,0.24986996,-0.31677637,0.3555216,-0.13116394,-0.93901634,0.3924161,0.31295744,-0.7481661,0.5107929,-0.011937936,0.18145086,0.5729504,-0.45194492,0.15558918,-0.42336038,0.21468915,0.14914323,-0.25812227,-0.24465953,-0.17874672,-0.108527504,-0.11436918,0.14475627,0.285947,0.043352153,0.15038247,-0.12314906,1.4782991,-0.17853846,0.14656365,0.08306701,0.40713045,0.2621218,-0.15059365,0.010668457,0.055695225,0.19902599,0.16362761,-0.55469304,0.05837296,-0.32857263,-0.51067674,-0.2518014,-0.316523,0.028420143,0.086722314,-0.50357866,-0.06252802,-0.19537552,-0.20092516,0.3021401,-2.3909209,-0.27935743,-0.123878054,0.05390334,-0.30226883,-0.3110532,-0.17794748,-0.5408693,0.6065014,0.3458269,0.35960403,-0.5726184,0.32702172,0.6560512,-0.54872304,-0.011341427,-0.73769593,-0.15291913,-0.17032908,0.39150998,0.0070418664,-0.28688025,-0.049880225,0.3319269,0.44148088,0.1803621,-0.018939978,0.063850276,0.611573,-0.1713835,0.69959885,-0.15179045,0.62459,-0.46803275,-0.3777516,0.45586035,-0.43726873,0.32889065,-0.07994852,0.11160687,0.47021106,-0.6399495,-1.114094,-0.7080485,-0.37264323,0.97815967,0.08689738,-0.5058949,0.28592843,-0.28738552,-0.17451723,-0.1208255,0.51724404,0.013742874,0.26721707,-0.94235444,0.10665991,-0.1704395,0.12725067,0.09484062,-0.013222158,-0.6146388,0.6961524,0.09152942,0.31414437,0.54871637,0.22543752,-0.43380055,-0.7028024,0.113119304,1.0626668,0.35594007,0.1822471,-0.45556894,-0.24605481,-0.5504579,-0.040094834,-0.006564399,0.39263737,0.7849417,-0.12299359,0.11661818,0.2957808,0.17610578,0.080892794,-0.123046,-0.47290096,-0.07614391,0.076716475,0.60184497,0.744853,-0.2559468,0.37167165,0.023224512,0.46887353,-0.3422438,-0.27754503,0.7662112,1.2326105,-0.033383425,-0.25124702,0.8461993,0.4752988,-0.30866858,0.7146179,-0.54113394,-0.39098713,0.34863567,-0.062000707,-0.5100766,0.16633876,-0.48298085,0.086525135,-1.1496662,0.31749263,-0.33543012,0.042236906,-0.8624308,-0.2559143,-3.614584,0.3427603,-0.3084226,0.04180521,-0.16330206,-0.016952349,0.42276883,-0.6078894,-0.9959312,0.10421201,0.07992903,0.9017484,-0.34738234,0.22654288,-0.17238365,-0.26771006,-0.29789314,0.17779781,0.27273428,0.30704135,0.06493336,-0.5597421,-0.15392424,-0.2935807,-0.40532413,-0.019934973,-0.59446275,-0.46124685,-0.3887289,-0.687212,-0.2611499,0.7119941,-0.40191534,0.0024885882,-0.2638254,-0.0087448405,-0.12215953,0.45860517,0.09716863,0.32720348,0.33956918,-0.107381366,-0.06831888,-0.16134748,0.07945591,-0.011545758,0.15561572,0.36246192,-0.20347561,0.4261305,0.5708956,0.94027835,-0.15244864,0.93652314,0.6475689,-0.056016874,0.2644502,-0.36713448,-0.36362147,-0.63772607,-0.37359467,-0.030606555,-0.41216543,-0.60385674,0.085281216,-0.32419816,-0.7940659,0.85407376,-0.1171977,0.22616607,-0.07108337,0.0070191524,0.35846713,-0.35878935,-0.09685969,-0.046240896,-0.10417149,-0.44989792,-0.4282963,-0.5010259,-0.5606676,-0.03945035,0.9821272,-0.07770989,0.039893534,0.33231303,-0.05906439,-0.0012570173,0.17042004,0.11956056,0.030672327,0.5580815,0.14873376,-0.7522096,0.4351885,-0.038019866,0.051411062,-0.6592961,0.23252113,0.64970595,-0.6338834,0.68621963,0.4999105,-0.019826418,-0.09476807,-0.65049744,-0.21051829,0.15443356,-0.1393184,0.41522446,0.27882382,-0.72759295,0.45128426,0.46693325,-0.35669228,-0.992692,0.68147826,-0.022239998,-0.22831923,-0.252588,0.44170296,0.22837047,0.16257913,-0.27448514,0.26226726,-0.37219962,0.04168449,0.29363456,0.017670337,0.38021278,-0.2806277,-0.17058659,-1.0347408,0.13402532,-0.57817155,-0.32747638,0.3070229,-0.00788489,-0.10596158,0.26765198,0.08985028,0.2767368,-0.21488136,0.22149892,-0.14272879,-0.18685515,0.32010934,0.46829298,0.5896683,-0.72001046,0.7066458,-0.0692474,-0.13400784,0.09157107,-0.10833335,0.47689936,-0.15452679,0.4480597,0.079184055,-0.2423537,0.16481057,0.8868165,0.07161015,0.3351073,0.22981568,-0.02890035,0.3380704,0.19983383,0.06271416,0.02764525,-0.68787503,-0.13767691,-0.24364167,0.16111414,0.4979544,-0.054549653,0.335421,-0.0799252,-0.43121707,0.047269534,0.114290945,-0.11770576,-1.2959641,0.31811574,0.16161765,0.894056,0.7683688,0.12786125,0.15974867,0.638351,-0.15377016,0.17212784,0.57023054,-0.0665605,-0.56969017,0.65520716,-0.48290667,0.35421476,-0.02876974,0.0015107145,-0.23417489,0.11652267,0.6218837,0.6019015,-0.22663665,0.22916764,-0.032386195,-0.21319933,0.16126077,-0.32014427,0.11133164,-0.33473957,-0.32291755,0.8206651,0.53778917,0.26640192,-0.23688538,-0.07057571,0.16584626,-0.16268152,0.09594003,-0.15017454,0.05100982,0.082003325,-0.6455774,-0.08559644,0.5864478,0.27633876,0.24698134,-0.06544028,-0.41866323,0.17925502,-0.254432,0.019783521,-0.104352176,-0.70130616,-0.1607227,-0.4651222,-0.48641655,0.54363483,-0.17426401,0.2627668,0.14843564,0.21260794,-0.36204383,0.42034706,-0.11871792,0.64823127,-0.14463158,-0.025226852,-0.2274433,0.36410034,0.18037944,-0.42657447,-0.21152677,-0.29022986,0.30150554,-0.5235664,0.5483082,-0.03266704,-0.36699247,-0.044173975,-0.06327019,-0.047707215,0.68003863,-0.29891577,-0.16101687,0.16099994,-0.22137773,-0.15941961,-0.186782,0.04433364,0.4326633,-0.028324386,0.033330362,-0.20986764,-0.15407205,-0.111937426,0.4631813,-0.12923305,0.20922165,0.54815334,0.150635,-0.3541893,-0.11908642,0.17619938,0.7226756,0.022924483,-0.3358387,-0.3277144,-0.34622812,-0.37999848,0.3261187,0.07244622,0.18278007,0.1669146,-0.46914014,0.63940215,0.42273495,1.3820043,0.046875507,-0.5135828,-0.026799003,0.4747205,-0.16257279,-0.29265746,-0.48054484,1.0062068,0.6435053,-0.22486703,-0.14466125,-0.4119152,0.16160071,0.09738044,-0.33304438,-0.13627727,0.04001561,-0.58413935,-0.26327464,0.2761127,0.45048425,0.14444475,-0.22339207,0.20289725,0.13814956,0.13953398,0.45996174,-0.45164025,-0.3347681,0.3013843,0.5130649,-0.034045275,0.048652917,-0.31268132,0.34154156,-0.6277662,-0.0074743927,-0.5271276,0.20827417,-0.26643276,-0.44017473,0.18266523,-0.08514738,0.2929655,-0.30726814,-0.29974708,-0.1485926,0.49902713,0.20412888,0.18366475,0.6869831,-0.26321003,-0.04534823,-0.061000567,0.72199994,1.2864287,-0.24365985,0.002136469,0.24333255,-0.019142816,-0.6196924,0.44168022,-0.7080769,0.26377377,-0.109585546,-0.28682292,-0.69977957,0.08067846,0.21434312,-0.16264628,0.053637173,-0.66844136,-0.29516098,0.11968521,-0.18908823,-0.20615588,-0.28657237,-0.070643805,0.5493472,-0.16360267,-0.34977826,0.13134374,0.33545592,-0.16563025,-0.5117508,-0.1711783,-0.22728886,0.3657867,0.30249116,-0.372646,-0.0306604,0.12179487,-0.64372736,0.18065463,0.18390667,-0.4071881,-0.101680376,-0.40283856,-0.09511182,1.1908921,-0.15851073,0.32719484,-0.35759392,-0.5041607,-1.062574,-0.26162672,0.5316008,-0.0022874575,-0.023994192,-0.652566,0.053076062,-0.15522878,0.05015863,0.14686792,-0.2966083,0.26124188,0.056745637,0.6839041,-0.16876169,-0.550635,-0.047635783,0.24016808,-0.07309022,-0.59906566,0.61383283,-0.11297759,1.0708766,0.0353693,0.0919801,0.38560346,-0.5107781,0.025256285,-0.16903867,-0.22622108,-0.65612906,0.16585834,490 -850,0.520342,-0.2658092,-0.71149826,-0.042771846,-0.5879007,-0.056008488,-0.096246965,0.3785757,0.15514563,-0.49668285,-0.21395816,-0.079818316,-0.011984487,0.14164646,-0.17352246,-0.30862692,-0.062651396,0.39094055,-0.77205586,0.61897314,-0.14964549,0.26729178,0.15878294,0.356113,0.2954142,0.09248778,-0.049624104,0.13472973,-0.030714171,-0.4771037,-0.047859024,-0.05945371,-0.9219084,0.07439216,-0.21435124,-0.59951967,-0.1453206,-0.6103785,-0.4569035,-0.95973897,0.43114412,-0.95015526,0.67767715,-0.08481363,-0.27047506,0.25034347,0.22072256,0.4240508,0.071554296,-0.09261825,0.33438882,-0.22349799,-0.14139092,-0.10558358,-0.018738827,-0.32063246,-0.6644415,-0.15325789,-0.43129587,-0.260253,-0.26540914,0.2535695,-0.37427536,0.07845341,-0.3084297,0.8508887,-0.42905512,0.40600267,0.11334545,-0.06566826,0.11836406,-0.7239402,-0.13500336,-0.18815927,0.3295369,-0.17943175,-0.16471003,0.29939595,0.21992809,0.22956878,0.10460534,-0.25018266,-0.23334736,0.016347952,0.05729741,0.50553393,-0.18664818,-0.23882794,-0.07782537,0.07521797,0.2629691,0.24788284,0.34818223,-0.1587636,-0.03884752,0.042610664,-0.07992603,0.8471523,0.4432211,-0.35266402,0.013933678,0.4174787,0.7464769,0.28156707,-0.243602,0.10220149,-0.135344,-0.51896596,-0.1391526,0.12770559,-0.29677233,0.4455899,-0.23041292,0.29154804,0.51742136,-0.2813084,-0.3639799,0.3997376,0.061439905,0.07066012,-0.19778742,-0.4421239,0.54101175,-0.628527,0.3652792,-0.19760782,0.6434215,0.035050254,-0.72742623,0.28722754,-0.6649964,0.25939295,0.061125796,0.5523723,0.7140949,0.55847836,0.31309298,0.74737245,-0.3277436,0.13204326,0.076957814,-0.3337066,-0.2701782,-0.37076083,0.13324328,-0.45684066,-0.014836639,-0.48355758,-0.15096574,0.0011316066,0.56545824,-0.64044744,-0.43521166,0.20307438,0.8210357,-0.20148681,-0.17186145,1.1494873,0.9169063,1.3280958,-0.0069330237,1.0532962,0.035583157,-0.14975798,-0.09425926,0.037400115,-0.604391,0.31606713,0.37588024,-0.020788796,0.07943753,0.123782456,0.08563437,0.4548775,-0.47931466,-0.1001299,-0.13574518,0.1778128,0.16376296,-0.24735199,-0.53372747,-0.1957118,-0.08980199,0.1646552,0.05745719,0.2763289,-0.23683472,0.43213263,0.19801068,1.3275372,-0.10489905,0.14927368,0.13591151,0.6027379,0.23217303,-0.27924457,-0.012172937,0.17831671,0.32140324,0.21596317,-0.5258543,0.08088184,-0.29985094,-0.4372361,-0.19249535,-0.35969564,-0.49924454,-0.08741468,-0.39461184,-0.39830813,-0.13558333,-0.44279385,0.33343327,-2.4889994,-0.21100879,-0.15751998,0.44294417,-0.1745234,-0.41926524,0.05324167,-0.6664286,0.35358617,0.21790437,0.6793744,-0.6577699,0.5128326,0.51211727,-0.8159016,0.19627966,-0.68788093,-0.21127439,0.039304744,0.23053907,-0.068803094,-0.13847528,0.0576638,-0.04120626,0.52643234,0.1898756,0.15612951,0.39500514,0.47975227,-0.20216607,0.8017002,-0.017350676,0.5064232,-0.41819975,-0.24671058,0.5571878,-0.31308636,0.21486188,-0.3676224,0.021931099,0.7408963,-0.57381684,-1.0611814,-0.6725464,0.03382786,1.2870256,-0.15810134,-0.6032328,0.21340346,-0.58271486,-0.23075263,-0.10160824,0.49784622,-0.06255526,0.016577335,-0.60313433,-0.1349973,-0.15829796,0.041228037,-0.05340628,-0.030796722,-0.625207,0.7465677,-0.15478538,0.53363734,0.23592453,0.19253348,-0.4917909,-0.3979597,-0.0027694304,0.8648353,0.5083235,-0.0020075936,-0.31374136,-0.13252214,-0.2868018,-0.15778744,0.028375706,0.74699074,0.4908948,-0.18190043,0.14585792,0.4341537,-0.014136613,0.19940864,-0.22024387,-0.34805164,-0.34859416,-0.13409854,0.60960805,0.6492029,0.014709805,0.7812063,0.014270608,0.07654638,-0.09798623,-0.62628937,0.39590684,1.0140544,-0.36391136,-0.5005501,0.6924572,0.30919418,-0.33154032,0.4758695,-0.40897623,-0.26487866,0.45606112,-0.049020942,-0.7307547,0.041227,-0.23920207,0.14741032,-0.5308487,0.19518411,-0.5764479,-0.7901376,-0.42315707,-0.27963343,-2.1318777,0.34768367,-0.34568986,0.09848402,-0.16573435,-0.4688889,-0.14255603,-0.43509424,-0.7726801,0.09317122,0.076063976,0.9162715,-0.19493489,0.12303389,-0.24429588,-0.43469325,-0.35888842,0.3132386,0.25444984,0.3956274,-0.17456406,-0.31258163,0.11880133,-0.036098417,-0.35963917,-0.17508478,-0.70783615,-0.46538067,-0.09552752,-0.5933187,-0.46134984,0.6390025,-0.19926326,0.21704586,-0.3445774,0.0036150722,0.15748487,0.10426576,-0.061465774,0.3003358,0.18647893,-0.19285291,0.12006072,-0.10812568,0.25138763,-0.0534465,0.4142822,0.16391653,-0.2623775,0.39008817,0.42782223,0.91332644,0.0080150375,1.1824275,0.333416,-0.19407529,0.29569834,-0.07656846,-0.43156245,-0.79213595,-0.12228539,0.2870216,-0.4845954,-0.55373996,0.16404088,-0.3326119,-0.9390021,0.80634004,-0.0067745545,0.42177102,0.052263767,0.5191385,0.6842404,-0.23430061,-0.13622765,-0.0598723,-0.24326496,-0.54995817,-0.20080298,-0.6653318,-0.5063523,-0.30582735,1.1752257,-0.46335712,0.023626527,0.23275608,-0.33588064,0.19851585,0.3194599,-0.1445522,-0.012645498,0.5529886,-0.15110162,-0.65340406,0.330663,-0.1977008,0.084128715,-0.6329227,0.45309448,0.64462346,-0.60524654,0.520236,0.3616519,-0.12432758,-0.46264783,-0.68016595,0.0316444,0.07998082,-0.2634363,0.44735715,0.36608526,-0.8374467,0.46709546,0.34168124,-0.14513026,-0.9543991,0.7175146,-0.0062193573,-0.49409485,-0.043573257,0.55061626,0.20937105,-0.070693545,-0.27611992,0.23782794,-0.40608212,0.40232623,0.038280766,-0.18946719,-0.03474586,-0.26467738,-0.37593773,-0.81444067,0.16529985,-0.6354923,-0.29227474,0.30534253,-0.079041354,0.058782134,0.5228193,0.3387543,0.41071928,-0.10098243,0.018735593,-0.4094727,-0.45179796,0.4595375,0.47155285,0.58708525,-0.62349415,0.6826981,0.094993465,-0.36610237,0.08285355,-0.0011371473,0.47716287,-0.13772124,0.63401663,0.27446225,-0.112865806,0.015067573,0.76522785,0.25777063,0.4563931,0.025511762,-0.038456842,0.038149346,0.13717079,0.5020166,-0.27494383,-0.81532127,0.20628984,-0.33012328,0.0055382303,0.5601179,0.009494926,0.16269475,-0.11936291,-0.33849752,-0.04282075,-0.0010365596,-0.19750232,-1.246848,0.36250302,0.3045836,1.0943075,0.5250783,0.040673006,0.01846253,0.8496143,-0.29302195,-0.028417692,0.33240503,0.063979074,-0.22914803,0.541265,-0.91126555,0.56627613,0.078921326,-0.05055231,0.06389579,-0.051458117,0.42410913,0.79168534,-0.21547057,-0.108680926,-0.15805756,-0.33550707,0.28890845,-0.4042687,0.14257605,-0.49052128,-0.24439223,0.8726804,0.575698,0.3188472,-0.25811523,0.1662835,-0.003386562,-0.25723782,0.24735884,0.114588894,0.048066746,-0.13569169,-0.51803035,0.072216325,0.4661555,-0.08197377,0.030482167,0.14569597,-0.13670526,0.391543,0.040418237,-0.021142036,-0.14234553,-0.8632006,0.09053004,-0.24092078,-0.350433,0.29875186,-0.037968498,0.21198839,0.3176055,0.0026882563,-0.17466597,0.31673595,0.021729177,0.55730134,0.014719139,-0.006025642,-0.24367958,0.28787157,-0.023545578,-0.16719688,0.21463831,-0.0634318,0.23102961,-0.62077665,0.4331747,-0.07064399,-0.53499234,0.17187603,-0.035697658,-0.07064516,0.57175344,-0.09311918,-0.09397164,0.041505467,-0.114243396,-0.14306176,-0.3621255,-0.07274213,0.14766796,0.07035775,-0.19729292,-0.3941517,0.019190183,-0.17273748,0.5121607,-0.030533478,0.49417457,0.17679645,0.051319867,-0.56264263,0.09202039,0.22744231,0.68031,-0.28856805,-0.10702872,-0.20207958,-0.27428532,-0.36358544,0.5130965,0.0075695417,0.3212644,0.052731026,0.097603254,0.77816564,-0.07291849,1.2768844,0.011915073,-0.33561432,0.07461143,0.56576777,-0.038342457,-0.25864306,-0.25250313,1.0124038,0.5263315,0.040681858,0.09583449,-0.41120687,0.07889414,0.14873473,-0.14984788,-0.118303336,0.13510005,-0.38372573,-0.075953774,0.14535423,0.29895115,0.2115082,-0.19963448,0.17882253,0.68126637,-0.13007341,0.17307079,-0.5931412,-0.40919027,0.390826,0.2349331,-0.2137479,0.04289932,-0.51052314,0.27720734,-0.6038322,0.22345708,-0.30316338,0.17422909,-0.28995946,-0.28037512,0.2564859,0.12949002,0.49223718,-0.24951144,-0.43715248,-0.17727064,0.3561237,0.3800098,0.04421547,0.57428384,-0.31800416,-0.010869493,0.10545873,0.31293663,0.6521382,-0.073328026,-0.16222993,0.12866066,-0.45703158,-0.74508214,0.544215,-0.41386577,0.15358488,0.22329189,-0.011604215,-0.37540996,0.17567928,0.18700503,-0.09520978,-0.020832727,-0.92225426,-0.05131994,0.30477703,-0.33135262,-0.004577182,-0.34980062,0.116042465,0.63483787,-0.13919967,-0.32816657,-0.13793826,0.2604795,-0.14755498,-0.56209475,0.0892168,-0.44424295,0.26135883,-0.17780845,-0.4560915,-0.23082662,0.036246758,-0.6063269,0.16951312,0.14207298,-0.28096363,0.12815751,-0.29245093,0.11214453,0.8342605,-0.30387908,0.14928927,-0.1888455,-0.52111083,-0.610653,-0.10508738,0.084987104,0.16458859,-0.02874249,-0.7656832,-0.23407543,-0.32794634,-0.3436929,-0.05370428,-0.47249314,0.39311504,0.14791656,0.46356666,-0.10077146,-1.0127312,0.35031286,0.018599981,-0.06963225,-0.44009387,0.44424388,0.08179615,0.7016174,0.03962819,0.16505136,-0.031358164,-0.46879444,-0.07151509,-0.067833595,-0.14404573,-0.5642708,-0.12608342,492 -851,0.46343616,-0.41619137,-0.5334911,-0.04582523,-0.2059081,0.033180084,-0.41266504,0.30400503,0.21699607,-0.35076296,0.028170833,-0.027866667,0.00012880564,0.26644698,-0.15996227,-0.5095085,0.043964665,0.12509392,-0.6371346,0.61034,-0.2502394,0.002171417,-0.27317557,0.45502925,0.12047485,0.24100764,0.005003271,0.11039164,0.02973693,-0.24606864,0.034425173,0.108069815,-0.7397359,0.267102,-0.040187757,-0.3620628,-0.12381408,-0.46765187,-0.516337,-0.8173032,0.32585192,-0.8673286,0.622765,0.024660408,-0.3239994,0.13093962,0.17525877,0.44434473,-0.1088445,-0.012281497,0.2596068,-0.21885307,-0.057211816,-0.23729807,-0.053971227,-0.4887713,-0.6762538,-0.04310869,-0.4591874,-0.24275239,-0.35620484,0.31877723,-0.4398429,-0.012640317,-0.19730055,0.74860185,-0.50354177,0.2694193,0.20060356,-0.079644404,0.480902,-0.65115136,-0.098038085,0.00019278626,0.28665486,-0.11013257,-0.22500987,0.11879108,0.2536586,0.30564234,0.03226876,-0.1712749,-0.2378589,0.05898133,0.07219868,0.42105618,-0.1867422,-0.34144488,-0.14350563,-0.007769257,0.09257553,0.14042164,0.2617413,-0.27394092,-0.08378158,0.24835563,-0.17645437,0.62975496,0.5526455,-0.34797788,-0.1993726,0.32182837,0.64089185,0.14774446,-0.33639184,0.12300553,0.09134787,-0.50706685,-0.15421908,0.12348837,-0.16385192,0.4826397,-0.26966572,0.42535236,0.73472095,-0.17297788,-0.22587956,0.20226765,-0.01257513,-0.04969449,-0.34574106,-0.22001529,0.20437978,-0.47303525,0.29161656,-0.28565535,0.76458454,0.09755877,-0.7600867,0.34548306,-0.6159964,0.24995913,-0.06314022,0.42919055,0.7737654,0.4846519,0.41152176,0.73950815,-0.35510036,0.08029193,0.04106042,-0.3625066,0.1776809,-0.3319828,0.0670861,-0.5938218,-0.17261016,-0.21713807,-0.107873686,-0.0031729538,0.4318676,-0.51340675,-0.08076424,0.3118243,1.0577928,-0.15638064,-0.121298514,0.91375417,1.1084557,1.1843578,0.0892089,1.0188146,0.25975254,-0.23432474,0.14478534,-0.1075446,-0.75351554,0.28852403,0.32085472,0.37628773,0.19146578,0.15984027,-0.034022693,0.6289808,-0.47994757,0.1092942,-0.17998771,0.13045973,0.21592279,-0.4636273,-0.3201755,-0.048023224,-0.07370349,0.045530308,0.024218261,0.119648,-0.16886361,0.49031413,0.07408923,1.5420517,-0.15562695,0.0488784,0.10033467,0.58218235,0.22995172,-0.3333731,0.038370788,0.07618651,0.38531113,0.30980897,-0.51695865,0.30236182,-0.19945621,-0.43626007,-0.24387419,-0.27361688,-0.2947319,-0.17135215,-0.45676115,-0.28027868,-0.09075758,-0.20032358,0.31028742,-2.8569298,-0.21270423,-0.1711816,0.357546,-0.06439507,-0.17167287,0.15164796,-0.4980588,0.45185533,0.35440886,0.4672196,-0.64999574,0.6252162,0.53507763,-0.6124859,0.08668393,-0.76832837,-0.21745062,-0.18905018,0.565708,0.18669651,-0.11848272,0.01837599,0.31024578,0.49370492,0.15846312,0.08240223,0.286142,0.44780335,-0.25230154,0.5658722,0.09666124,0.49863645,-0.14775172,-0.2191227,0.2414648,-0.39615682,0.05750808,-0.11031673,0.022551244,0.5301773,-0.323053,-1.0910935,-0.8042343,0.10052028,0.9403901,0.0121413665,-0.6622489,0.24534297,-0.42801142,-0.33209822,-0.030325308,0.51125026,-0.09328166,0.06546557,-0.85539764,-0.029545298,-0.30219343,0.22889544,0.048025925,-0.3168564,-0.71415824,0.9148715,-0.13822562,0.50021124,0.36102676,0.19747885,-0.40646517,-0.51467556,0.0052678916,0.8438644,0.35884842,0.08570842,-0.39070264,-0.191845,-0.20005314,-0.10637534,0.0046396516,0.595277,0.46340445,-0.14469723,0.23290907,0.3800199,-0.18445623,0.014897303,-0.12915127,-0.4194934,-0.17601834,-0.15643303,0.5797371,0.8308666,-0.11502046,0.4189744,-0.22065772,0.27233252,-0.14103599,-0.4590231,0.507496,1.1508747,-0.15043141,-0.5122412,0.59201056,0.3127133,-0.27241215,0.3575655,-0.5057221,-0.17155762,0.2776836,-0.12712757,-0.5613349,0.11191123,-0.4916577,0.042040367,-0.70832115,0.45197168,-0.39742208,-0.79985094,-0.6242239,-0.30626038,-3.7250443,0.31722477,-0.3646467,-0.18854026,-0.13861422,-0.18335326,0.23685052,-0.57972413,-0.5623389,0.1517592,0.056946233,0.8317762,-0.14730941,0.12612684,-0.2759514,-0.19054453,-0.49926463,0.2731675,0.24268062,0.20975114,-0.022387,-0.32688817,0.024546495,-0.10774497,-0.48698592,-0.024422375,-0.65907955,-0.49145696,-0.04933967,-0.47558418,-0.28711233,0.66201574,-0.13429323,-0.023180187,-0.50078845,-0.034283906,-0.1759916,0.4326795,0.12481771,0.03984176,-0.023246577,-0.12552826,0.07115733,-0.2855219,0.16032003,-0.08490765,0.42682424,0.25967908,-0.114581384,0.17611535,0.57091933,0.5731153,-0.023536662,1.0453686,0.52916586,-0.091037594,0.1920998,-0.21585245,-0.34193027,-0.62824243,-0.26289684,0.23409784,-0.49046817,-0.44943354,0.18818368,-0.47702408,-0.5887503,0.54927933,-0.049188714,0.18364494,0.15643124,0.3006802,0.52399445,-0.098217845,-0.20092504,0.009714666,-0.1981089,-0.49450204,-0.15368499,-0.5700622,-0.74598056,0.036052655,0.97552615,-0.18456827,0.13098292,0.31998095,-0.225622,-0.031517368,0.35613278,-0.23402606,0.095436335,0.52758676,-0.23708938,-0.70537883,0.2705902,-0.36425602,-0.16134161,-0.76070195,0.33135107,0.67132264,-0.4453325,0.72823113,0.40398395,0.19927652,-0.40511957,-0.511401,-0.026091957,-0.104281835,-0.24410348,0.45683596,0.17841573,-0.9063821,0.53753746,0.3857272,-0.21468906,-0.6630584,0.5641543,-0.06408065,-0.33676553,-0.06633223,0.30406716,0.046921562,-0.16079198,-0.29485142,0.38692394,-0.43485495,0.38842908,0.061273098,-0.11793,0.04676796,-0.0911181,-0.113757074,-0.63063025,-0.1642934,-0.5350903,-0.33478472,0.2111485,0.024201414,0.15051363,0.37785196,0.052714605,0.41470793,-0.15559644,0.0460823,-0.23191452,-0.36410654,0.29780403,0.51603407,0.49144375,-0.56787986,0.5740214,0.13247068,-0.08901992,0.14992142,0.15409757,0.4681623,-0.06992119,0.71120566,0.008774404,-0.047442097,0.123664945,0.85743254,0.176068,0.80698806,0.06613154,-0.17726319,0.27740696,0.113764465,0.36563635,-0.013047864,-0.679547,0.30612722,-0.31991342,0.29017854,0.42456737,0.037046563,0.3144534,-0.091571845,-0.39088318,-0.025648003,0.30480728,-0.013437018,-1.5597771,0.37570855,0.3558724,0.94366795,0.40420008,0.034075454,0.02236695,0.9020378,-0.016504154,-0.0020265777,0.3221128,0.23180752,-0.29838952,0.61502457,-1.0258936,0.28256017,0.04933014,-0.024400821,-0.054602932,-0.13350268,0.36749783,0.71365595,-0.241943,0.013254997,-0.14137588,-0.31780127,0.25645083,-0.48209608,0.2808678,-0.27864686,-0.28470936,0.70484525,0.7218087,0.3818756,-0.19435465,0.08658904,0.02168403,-0.062185418,0.078652956,0.13524163,-0.07925492,0.0178267,-0.7957802,-0.17136814,0.47280505,-0.16043425,0.24749935,-0.087727375,-0.17487304,0.3340297,-0.156047,-0.041410007,-0.059842408,-0.65209967,0.09098617,-0.1466032,-0.44566515,0.64101785,-0.015374725,0.21766834,0.241051,0.06363401,-0.14174102,0.37998128,-0.13290058,0.6023764,0.19153188,0.030022025,-0.42776036,0.024472052,0.13026355,-0.28574437,-0.10429289,-0.33880785,0.31004056,-0.47380546,0.39789262,0.040940244,-0.6336801,0.3000668,0.00594868,0.011340615,0.6648161,-0.2605625,-0.25930616,0.2198899,-0.08640623,-0.14420389,-0.29339787,0.049055066,0.27614114,0.1806974,0.0016750097,-0.119725145,-0.115529954,-0.21279943,0.45676574,0.11065712,0.5935686,0.55450344,0.027138317,-0.29476595,-0.23618281,0.14007105,0.6890221,-0.10156027,-0.2837111,-0.24875307,-0.7428369,-0.41940007,0.31651744,0.07537297,0.41390204,0.09151485,-0.20438255,0.6703569,-0.104909,1.2073326,0.015194446,-0.40472162,0.20139123,0.42550936,0.1001557,-0.047634836,-0.42899668,0.77601355,0.6196199,-0.19320162,0.0007875909,-0.4179332,-0.06560879,0.05766691,-0.1701535,-0.10173776,0.018268669,-0.7687702,-0.03704625,0.20154835,0.29290217,0.33851555,-0.19065881,0.15502602,0.476935,-0.13721412,0.102933645,-0.55687696,-0.15851663,0.38869748,0.35556945,-0.12361789,-0.038651723,-0.60623497,0.25955942,-0.38248512,0.1269208,-0.3949809,0.23438637,-0.10834528,-0.3236339,0.28738096,-0.13041908,0.3681194,-0.26713228,-0.10938164,-0.1117953,0.47862196,0.4765062,0.1430274,0.72557735,-0.20691466,0.031551372,0.12282276,0.559274,0.85327554,-0.34989873,-0.0855879,0.2900679,-0.35976994,-0.63736075,0.38089052,-0.2369953,0.1807824,0.16849244,-0.18248408,-0.58252084,0.09914061,0.17218183,0.036076378,0.011727077,-0.68639994,-0.29265866,0.255412,-0.4730517,-0.10793165,-0.22243236,0.13122584,0.6011185,-0.2331355,-0.124781586,-0.06349374,0.39988616,-0.14337581,-0.51258576,-0.053846404,-0.34792122,0.4620259,0.011042863,-0.51804775,-0.20000468,-0.0039871335,-0.5784947,0.18955976,0.22588438,-0.34303942,0.10584915,-0.32121763,-0.2368396,0.8531156,-0.4380573,0.061003704,-0.61797374,-0.38553837,-0.75207233,-0.10894898,0.19123806,0.15330751,-0.007387212,-0.6811579,-0.2759236,-0.17854422,-0.12199986,0.044696715,-0.6079064,0.42457876,0.06278818,0.5599506,-0.07680101,-0.7627065,0.18496944,0.12975466,-0.16203557,-0.66860276,0.7988685,-0.14345448,0.7440899,0.025699401,0.36915568,0.08019576,-0.3411223,-0.0046224445,-0.23585035,-0.3356665,-0.86430097,-0.057143062,494 -852,0.4993614,-0.52453095,-0.6405702,-0.19302619,-0.20565088,0.017973565,-0.23986216,0.293776,0.11151024,-0.47147074,-0.16933481,0.022182494,-0.0014487008,0.46190706,-0.14149065,-0.84546113,-0.08859652,-0.011795341,-0.48838553,0.4250857,-0.60410094,0.32896617,0.0039023906,0.48934996,0.099514484,0.33806786,0.20425999,-0.069855645,-0.12112283,0.062181797,-0.08554045,0.2238305,-0.7028679,0.19185303,0.22230999,-0.4561727,0.030653298,-0.43123963,-0.3083536,-0.65025336,0.32770675,-0.9053592,0.58898246,0.13211039,-0.35258362,-0.026130551,-0.21469301,0.30916944,-0.61188227,0.2903035,0.09373236,-0.24762322,0.005221226,-0.3435935,-0.23652351,-0.39729846,-0.6384265,-0.011516675,-0.5735945,-0.12580536,-0.04353434,0.10448303,-0.40063366,-0.040005505,-0.38246012,0.5406416,-0.609557,-0.19744629,0.24971366,-0.12763706,0.22559637,-0.565579,-0.18722223,-0.26036927,0.12879096,-0.1084793,-0.3880429,0.039679233,0.18453635,0.6754852,0.19256978,-0.31282035,-0.37244025,-0.035591196,0.24418916,0.51530606,-0.17088576,-0.45962515,-0.26870435,-0.03249641,0.28868547,0.23513447,0.054646295,-0.45512363,0.05599167,0.10860199,-0.17074454,0.54828733,0.5670833,-0.21303982,-0.30439812,0.27982673,0.5539916,0.040811434,-0.049316343,0.33350554,0.00839815,-0.46095213,-0.28991887,0.3894924,0.15611327,0.6487446,-0.19390722,0.27251697,0.79829246,-0.33247247,-0.021631658,-0.06433573,-0.13897012,0.088286005,-0.22321981,-0.31747425,0.2784065,-0.5165944,0.08384811,-0.39260408,0.78951234,0.19258142,-0.8873988,0.3003686,-0.48553458,0.19937132,-0.213893,0.8682526,0.71893173,0.4642385,0.25290382,0.70351344,-0.69385093,0.12440914,0.14666475,-0.37095556,-0.095794745,-0.10218493,-0.07919801,-0.37789688,-0.04459876,-0.19873166,-0.12458765,-0.13412966,0.4597012,-0.47380757,-0.02787424,-0.1828571,0.59744817,-0.43043885,-0.052605186,0.9886713,1.0376182,1.053196,0.098294295,1.2792009,0.45234847,-0.12750575,0.06281814,-0.21362258,-0.5772253,0.2684324,0.481956,0.22386025,0.55009407,-0.0024424095,-0.07218271,0.47801006,-0.24786146,0.16377948,-0.23263335,0.1502163,-0.092299044,-0.15404513,-0.56160563,-0.1100212,0.06965807,-0.037640862,-0.17289847,0.31311062,-0.18214393,0.6896911,0.021004893,1.4127522,-0.05519122,0.14291327,-0.09298015,0.4206419,0.20356452,-0.24814947,0.094800055,0.28936377,0.60199404,0.035607353,-0.8823538,0.04093905,-0.31551948,-0.6152709,-0.2713348,-0.399628,0.08763859,-0.3285258,-0.6020859,0.053506706,0.038547352,-0.27580357,0.23666398,-2.243103,-0.26643217,-0.06517772,0.32834914,-0.20216839,-0.35447666,-0.06654274,-0.42382732,0.25917366,0.48679557,0.43273187,-0.91326445,0.53088003,0.5058736,-0.31706628,0.00023096055,-0.8070574,-0.17593347,-0.18103445,0.32423195,-0.15452538,-0.06592751,0.06594856,0.09394977,0.67476934,-0.16259833,-0.057632234,0.045811485,0.5934177,0.011791264,0.61386496,0.22987634,0.5503816,-0.5000685,-0.086230434,0.42336652,-0.41567865,0.3324189,0.14110671,0.1775168,0.35985556,-0.6081373,-0.8931981,-0.70021635,-0.42651176,1.1646641,-0.36344823,-0.41901794,0.19832355,-0.16717225,-0.32030046,-0.24239628,0.3913689,-0.32744798,-0.029070335,-0.8584772,-0.0016644945,-0.10975248,0.20790692,-0.069435805,0.11516055,-0.26193854,0.6272358,-0.19972758,0.47488582,0.5677574,0.20866053,-0.12992065,-0.58634627,0.08783426,0.9393453,0.33852378,0.1765439,-0.28122172,-0.1992587,0.014022599,-0.002403438,0.105068445,0.5797402,0.93381506,0.021581432,0.110175826,0.3714129,-0.10922339,0.112595625,-0.2595029,-0.4107221,-0.28754863,0.22071011,0.62726736,0.62196296,-0.32507506,0.4936492,-0.12933217,0.25569096,-0.058161687,-0.45733523,0.59254366,1.1548194,-0.08504636,-0.21496814,0.6224411,0.4891955,-0.67249876,0.44138741,-0.72167593,0.042565748,0.5758803,-0.17143582,-0.42260575,0.19421445,-0.3493255,0.16459294,-1.0045431,0.40504026,-0.28789297,-0.6369382,-0.592029,-0.24390812,-3.5310354,0.26692203,-0.37137294,-0.24010836,-0.12825659,-0.42286345,0.24946052,-0.85417366,-0.5458463,0.27396917,0.13070856,0.37007606,0.015383795,0.12388459,-0.4006665,-0.061826333,-0.18316191,0.24437277,0.2203923,0.118504375,0.0015399456,-0.34988406,-0.033413846,-0.16997935,-0.57155484,0.08043623,-0.58061355,-0.6463675,-0.12423556,-0.615902,-0.34512123,0.73233265,-0.05684785,-0.124907315,-0.10675516,-0.03429011,-0.28366622,0.45179144,0.050648343,0.3099304,0.06526465,-0.06653326,-0.17145602,-0.30442628,0.09732163,0.06277903,0.4024664,0.24937749,-0.3943604,0.28254095,0.71475583,0.78373903,0.08747738,0.5378195,0.38612735,-0.044730738,0.29073706,-0.3467051,-0.3091301,-0.85047513,-0.47115585,-0.2823098,-0.5194978,-0.5570919,0.059948266,-0.32221723,-0.9128135,0.57973975,0.006307187,0.276064,-0.10030771,0.36848494,0.41130814,0.0053775706,-0.02347076,-0.22090203,-0.21537317,-0.53313977,-0.34711495,-0.79136634,-0.7571447,0.18114668,1.12166,-0.034005433,-0.09118051,-0.0040522516,-0.45873603,0.16426583,0.2941161,0.08768494,0.26535347,0.22753887,-0.16291584,-0.60638684,0.35441867,0.052136708,-0.28488764,-0.5447442,-0.121259846,0.8361657,-0.6990425,0.77850085,0.29911435,-0.055457886,-0.035320923,-0.62947315,-0.43090308,0.12582342,-0.017629514,0.6037068,0.1894297,-0.70631456,0.31511095,0.32995367,-0.074641235,-0.5960447,0.39525452,0.0036232274,-0.18999599,0.12584396,0.43901715,-0.08750826,-0.16058299,-0.16278672,0.31217018,-0.46914646,0.23367858,0.35878053,-0.06389292,0.30168223,-0.035371277,-0.26489946,-0.74830943,-0.0158338,-0.8227079,-0.11999971,0.2222532,0.02758702,0.22032027,0.0012089213,0.06429594,0.541764,-0.4445248,0.13434677,0.04333042,-0.39019442,0.26082093,0.55212426,0.16914056,-0.53812474,0.61929065,0.1830294,0.04521576,-0.051640898,0.35508272,0.45866346,0.29131585,0.44516048,-0.012040894,-0.0885605,0.2887354,0.8621581,0.3092618,0.7557278,0.38032636,-0.13356082,0.38059327,0.23362432,0.33458373,-0.15743934,-0.08641412,0.11370777,0.29027113,0.19075592,0.4806423,-0.039522085,0.5308934,-0.29364672,-0.09096133,0.2895867,0.26036057,-0.056853533,-1.1354244,0.24843115,0.22991507,0.63137406,0.54641944,0.08389958,-0.08352023,0.4226749,-0.39960155,0.005800287,0.3636265,0.13042101,-0.57749265,0.7800224,-0.5031924,0.35104966,-0.2265122,0.16202737,-0.028956363,0.06511859,0.4103371,0.7529022,0.022022093,-0.00022647779,-0.06298473,-0.06924351,0.013204694,-0.62775517,0.064645104,-0.470404,-0.30783102,0.794625,0.49576774,0.35691395,-0.08218012,-0.19045796,0.18520927,-0.06643113,0.29665866,-0.073752716,0.0132722035,0.049592227,-0.6177211,-0.3913047,0.5425258,-0.007377515,0.20436817,-0.05137968,-0.41703868,0.38427404,0.0059494376,-0.23274446,0.04854768,-0.6558129,0.12427407,-0.48907685,-0.54067504,0.3186442,-0.3999051,0.1378284,0.24298346,0.08776033,-0.5000604,0.06901966,0.04333785,0.8672678,-0.06366845,-0.22843993,-0.40840045,0.0701325,0.4156628,-0.34848508,0.100789316,-0.30658877,0.17527731,-0.62519664,0.42325506,0.0055918843,-0.4180862,-0.10420781,-0.050730154,-0.04084143,0.565515,-0.32959536,-0.30730549,0.10301901,-0.09005741,-0.28229442,-0.312084,-0.24976148,0.37070575,0.053724747,0.13268243,0.13665994,0.0396686,-0.0052458644,0.4611297,0.23835717,0.2568329,0.37316844,-0.10117433,-0.54165965,-0.1014267,0.12539828,0.35235667,0.24694002,-0.16173273,-0.3463802,-0.4906589,-0.18314809,0.17086244,-0.27485648,0.33512464,-0.010449062,-0.5640379,0.9491031,0.15452062,1.2930257,-0.036763106,-0.3961326,0.006306559,0.48066974,0.1146124,0.00092152756,-0.1642904,1.0058953,0.5741555,-0.19179118,-0.30819634,-0.5687682,-0.36809552,0.17608742,-0.30302432,-0.28485477,-0.099648595,-0.7261159,-0.09996287,0.26587802,0.14048503,0.17975198,0.056310367,0.14426541,0.13805097,0.013138414,0.38555232,-0.5847197,0.1218349,0.17462908,0.13755943,0.020893475,0.09332079,-0.4250014,0.32303914,-0.6940224,0.3825264,-0.4715338,0.17741273,0.086616315,-0.2834515,0.26371494,0.059113335,0.22483851,-0.4074115,-0.284589,-0.32738855,0.8359904,0.16048272,0.39079687,0.83127713,-0.3075176,0.15219049,0.13249806,0.43873847,1.4162006,-0.06608615,-0.10885068,0.32398906,-0.31419334,-0.78523713,0.2569466,-0.32204852,0.33324566,-0.19793268,-0.44329453,-0.62042063,0.15346353,0.17548622,-0.1185837,0.18738091,-0.53252214,-0.3244343,0.51283926,-0.4478674,-0.25187686,-0.38746095,0.2471602,0.70434374,-0.47150633,-0.31144688,-0.043369222,0.3767183,-0.29320085,-0.37050724,-0.028696133,-0.24355714,0.32352456,0.11080479,-0.35664198,0.080036364,0.2751111,-0.2846638,0.2011009,0.5507856,-0.32949972,0.13588591,-0.0946249,-0.4107801,1.0683262,-0.081864916,0.081457496,-0.56785005,-0.49161342,-1.0512761,-0.4415667,0.46336463,0.20626305,0.05736346,-0.87218803,0.21393521,0.035754096,0.08760336,0.012326658,-0.5123022,0.4895537,0.059185922,0.5368712,0.05066358,-0.8067798,0.082265735,0.22561389,-0.22916047,-0.55669504,0.67747086,-0.16796398,0.6900237,0.09077088,0.25338888,0.11768945,-0.6172897,0.20156397,-0.40437606,-0.38784918,-0.7195093,-0.0491136,515 -853,0.46489426,-0.080914535,-0.5603358,-0.01607945,-0.45637348,0.08908556,-0.26436177,0.044016838,0.38521352,-0.75172263,-0.3867313,-0.20551966,0.056307774,0.1923141,-0.18509795,-0.43364254,0.1748556,0.4596932,-0.6606428,0.4988626,-0.19012944,0.2641181,0.23063894,0.26206836,-0.01952676,0.08608926,0.37358892,-0.22377402,-0.3168204,-0.1538834,-0.11754706,0.20217796,-0.77856225,0.50253373,-0.47575536,-0.32173392,-0.0072146654,-0.5896167,-0.44256935,-0.73573565,0.21753854,-0.88243335,0.6038023,0.28327024,-0.23768939,0.056103896,0.24824683,0.10862449,-0.04261231,0.17465484,0.21968524,-0.48658827,-0.2683849,-0.29916972,-0.42565468,-0.5340615,-0.5896616,-0.0050404766,-0.2819147,0.182018,-0.2813431,0.20310038,-0.16047262,-0.047460306,-0.15438607,0.36836848,-0.21008527,0.13451049,0.26531217,-0.23376715,0.16443649,-0.6718289,-0.28138146,-0.017727332,0.424143,-0.012113555,-0.23064832,0.35057512,0.19576983,0.68962526,0.11399468,-0.3238023,-0.32918757,0.17151435,0.22325128,0.43001652,-0.33970594,-0.18625121,-0.24973607,-0.2716731,0.329667,0.31041396,0.09354269,-0.5253436,-0.012679678,-0.35184297,0.054911237,0.05773489,0.6586571,-0.31090614,0.0068746805,0.3483177,0.28474793,0.2169454,0.099553324,0.082379304,0.1161429,-0.52076274,-0.17792624,0.10878762,-0.1590911,0.72354037,-0.021502987,0.26434448,0.44119433,0.13356102,0.047438044,0.2885491,0.29458627,0.0523587,-0.17253953,-0.2719183,0.5270502,-0.64132607,-0.07574615,-0.3079477,0.76159424,0.0014789067,-0.6927111,0.24807817,-0.5106454,0.08854165,0.09024923,0.4909807,0.59468263,0.75402117,0.014966738,0.9606848,-0.69132215,0.0472503,0.012857415,-0.18665366,0.07484126,-0.18246438,0.22764957,-0.49222812,-0.12141687,0.025027692,0.12098161,0.035447884,0.613228,-0.30517924,-0.33783832,0.19334882,0.9060604,-0.25201973,-0.022665525,0.58435315,1.1401585,0.9788354,0.18903248,1.5388894,-0.0072895787,-0.13219666,-0.3103596,0.16310988,-0.9819463,0.25526282,0.22338028,0.042497616,0.12813662,0.39810362,0.018059308,0.2616624,-0.57643384,-0.14252296,-0.23102057,0.27633688,-0.113161355,-0.050904114,-0.27999,-0.3911244,0.03235189,-0.064794324,0.0008562605,0.29015294,-0.21404171,0.3385719,0.16080149,1.3648256,-0.320645,0.27970013,0.11882273,0.09532428,0.20559092,-0.19784229,0.004360378,0.12105187,0.15651761,0.012039016,-0.24365556,-0.11202011,-0.27928132,-0.4955304,-0.16677962,-0.08323633,-0.19176678,0.046653774,-0.37176636,-0.44686827,-0.14074804,-0.54765254,0.6512199,-2.2453876,-0.07589967,-0.1630513,0.5412848,-0.3218253,-0.18296646,-0.27713364,-0.52281183,0.51837677,0.18368463,0.32399395,-0.5439763,0.2422895,0.54591084,-0.578328,-0.16907929,-0.71551675,0.0968704,-0.055506814,0.110830724,0.0265795,-0.3514026,0.007447183,-0.11159446,0.29818112,-0.0069809607,0.14288606,0.4644545,0.4358708,0.10847229,0.25556374,-0.054175083,0.60609835,-0.6909468,-0.31206045,0.37369108,-0.48038638,0.2921957,-0.096880086,0.10572141,0.6683199,-0.5248725,-0.5227189,-0.73812073,-0.23407884,0.83112764,-0.25650468,-0.51873446,0.23231298,-0.14604937,-0.25423166,0.08191677,0.66606796,-0.041495055,0.2580029,-0.80864066,-0.17352879,0.019924039,0.28494594,-0.042050485,-0.12615202,-0.6553001,0.7910448,-0.009698613,0.5607448,0.6268596,0.3028841,-0.27517852,-0.30020997,0.12188426,1.004996,0.36885405,0.24371439,-0.28643677,-0.05198429,-0.3279193,-0.32074842,0.17714204,0.52182144,0.5699978,-0.3660129,-0.025262676,0.38761047,0.30034354,0.08513698,-0.14527698,-0.45281252,-0.26750633,-0.18114348,0.53210276,0.96619636,-0.058530796,-0.027107084,-0.23836224,0.31860077,-0.2664652,-0.42971873,0.6978461,0.9160096,-0.15142627,-0.19475032,0.7145017,0.54189533,-0.3171321,0.49634567,-0.7034827,-0.6649735,0.27364004,0.0046206363,-0.5829501,0.061549913,-0.38981676,0.22513403,-0.65547097,0.6720672,-0.32873434,-0.43710634,-0.59927315,-0.16533104,-1.7507143,0.26565364,-0.36301747,-0.027615448,-0.2086739,-0.044673342,0.0563546,-0.46766067,-0.5364134,0.3017448,0.009602994,0.6682985,-0.12741886,0.26870412,-0.20931412,-0.2663159,-0.47533345,0.19083948,0.10463367,0.19203442,0.022080516,-0.3960723,0.030484227,-0.12454957,-0.0843815,0.031953633,-0.8895278,-0.32276428,-0.2435946,-0.4890798,-0.4096608,0.6088092,-0.5524445,-0.028436167,-0.40381217,-0.022891497,-0.23442583,0.22978444,0.089727335,0.29387847,0.002704922,-0.24089484,-0.28212208,-0.20332426,0.3552821,0.17055173,0.1445942,0.70120215,-0.41180262,0.07748502,0.20294221,0.7574566,-0.27845147,0.92737675,0.2969319,-0.013705641,0.285651,-0.10696995,-0.46717462,-0.5616616,-0.16529745,0.021299222,-0.54177195,-0.32253495,0.16121288,-0.33162138,-0.7957905,0.60897803,0.22415133,0.15095507,0.12712573,-0.046708494,0.2796847,-0.46710315,-0.27374157,-0.047111493,-0.08082888,-0.39711538,-0.3982537,-0.6330051,-0.47210178,-0.0076304176,1.0754668,-0.105659746,0.16578595,0.6781318,-0.039883774,0.20365252,0.12022341,-0.15145242,-0.16818516,0.6783962,0.27476498,-0.62972504,0.5522768,0.10688049,-0.12395001,-0.58078915,0.4341909,0.5852459,-0.585213,0.7371262,0.61037654,0.13749798,-0.32548708,-0.7700227,-0.40729317,-0.3086619,-0.28522035,0.35533366,0.22403616,-0.7896617,0.27110016,0.31770965,-0.7098362,-0.8314062,0.43259302,-0.12159028,-0.20684119,0.16241784,0.42198125,-0.060501207,-0.008413166,0.2311673,0.2891141,-0.47239017,0.5595214,0.1327994,-0.031207347,0.2871298,-0.3120229,-0.49383664,-0.7499152,0.01292979,-0.4692813,-0.40572098,0.32028982,0.02832134,-0.17734228,0.25407416,0.38359413,0.3482376,-0.322956,0.1488853,-0.12460189,-0.17708498,0.3787446,0.315532,0.7049379,-0.42522183,0.5413931,-0.13885303,-0.036403816,-0.28904346,0.21832292,0.3186312,0.22849102,0.3884997,-0.23989932,-0.11172005,0.056751233,0.98504084,0.04741883,0.26667103,0.16760385,-0.050162327,0.30840763,0.23826714,0.18536274,-0.1173087,-0.79522616,-0.015196408,-0.4372847,0.090374805,0.27509904,0.020029379,0.34342656,-0.09815777,-0.19723046,-0.113595925,0.1017978,0.11990281,-1.5270268,0.30107477,-0.057876673,0.79333115,0.49804425,0.015057147,-0.1312614,0.7143955,0.0052443817,0.0890399,0.27054444,-0.27773845,-0.26565006,0.51681185,-0.5429511,0.14967549,-0.10963262,-0.062202673,0.062401142,0.055060238,0.33075714,0.7308932,-0.099045314,0.0069638393,-0.2592462,-0.33342686,0.19892804,-0.32529545,0.2865139,-0.4461052,-0.4996383,0.6929156,0.4171134,0.43475112,-0.4175663,-0.018594196,0.014516582,-0.15337233,0.21830434,0.25861263,0.042130377,0.06705863,-0.631347,0.1828109,0.6637067,0.18932365,0.034155365,0.10022005,-0.3173081,0.16455004,-0.3323743,0.022530103,-0.15426244,-0.9550707,0.087630056,-0.6273313,-0.20688975,0.23572855,0.10781617,0.05584355,0.21049552,0.052021146,-0.1520134,0.51057464,0.11125171,0.83902043,0.26768914,-0.18626618,-0.2547226,0.39258957,0.22002034,-0.17402194,0.37396002,-0.19636218,0.20385163,-0.52415353,0.37659335,-0.05005924,-0.040785324,0.42371014,-0.014425139,0.095285594,0.6017681,-0.037577588,-0.11368971,0.18443038,0.110530734,-0.3973572,0.004981642,-0.22509044,0.13860776,0.114387214,0.05895633,-0.14183067,-0.3335669,-0.28807297,0.06753692,0.1322214,0.3236408,0.36518702,0.085925065,-0.39612627,0.2773756,0.20503211,0.5889208,0.05433513,-0.17870636,-0.11503763,-0.38558844,-0.40337062,0.26209906,-0.040086415,0.117525555,0.07054291,-0.19847937,0.83474094,0.11844192,1.067824,0.17721815,-0.09756365,-0.09664213,0.57114416,-0.17067377,-0.20348053,-0.399546,1.0003939,0.75110966,-0.073875524,-0.020741686,-0.15290315,-0.004430771,-0.02332878,-0.27370223,-0.1911835,0.013797902,-0.7550661,-0.09635517,0.040866405,0.3326392,0.052912742,-0.26716563,-0.040285736,0.49654838,0.24805696,0.16019215,-0.6342507,-0.31459832,0.30224597,0.30864963,0.14581512,0.2888073,-0.32831055,0.42033625,-0.67349845,0.05373319,-0.31841996,0.027989013,-0.2286833,-0.32681745,0.15576322,0.08592079,0.4440948,-0.3906866,-0.13090356,-0.1522705,0.36935106,0.23304224,0.41916445,0.76356906,-0.04897285,-0.09084255,0.045003552,0.51515335,0.93093514,-0.4949402,0.096994184,0.497403,-0.46582285,-0.6509005,0.31229964,-0.48072314,-0.021643033,-0.22061078,-0.41284332,-0.39269698,-0.011224274,0.09085085,-0.104284674,-0.06427384,-0.8420165,0.08343502,0.3023015,-0.1777158,-0.370899,-0.19103883,0.2665255,0.47950792,0.048566118,-0.2493905,0.11260132,0.10974938,-0.2959933,-0.6647978,0.056953203,-0.5674863,0.21002771,0.13501437,-0.46325707,-0.14604479,-0.10729282,-0.5789389,-0.018849293,0.0023309987,-0.3142484,0.0114500625,-0.29038313,0.038688857,0.8089847,-0.027377367,0.28414705,-0.49172142,-0.42116585,-0.9721172,-0.18535225,0.10533663,0.2180149,0.016108578,-0.539222,-0.29063,-0.22805469,0.13413133,-0.034631494,-0.3758278,0.40240347,0.12376917,0.43609032,-0.23472027,-0.76739854,0.20556982,0.23956211,-0.22504096,-0.27197757,0.41881976,-0.047708612,1.0563544,-0.07734628,-0.086021,0.17484672,-0.74408406,0.29356137,-0.18216045,-0.09828276,-0.6095014,0.023467546,527 -854,0.5388405,-0.075732134,-0.4764496,0.007016465,-0.32325414,-0.109426044,-0.27000263,0.16492535,0.3157039,-0.113277525,-0.077779435,0.20048194,-0.15334095,0.24671477,-0.17374921,-0.6435368,0.016150564,0.22771466,-0.78536886,0.6888378,-0.3384409,0.46726775,0.007326757,0.33318058,0.0062987655,0.19966893,0.18106802,0.082417965,-0.08172019,-0.40350756,-0.051146436,-0.04159929,-0.7604533,0.122224726,-0.30137148,-0.30021736,-0.09551209,-0.5825315,-0.27449286,-0.80718565,0.29654595,-0.62248784,0.5730939,-0.11471126,-0.31750128,-0.08381504,0.11714617,0.31603715,-0.16327797,-0.12895481,0.27852836,-0.31140438,-0.056533486,-0.25293356,0.2623873,-0.22555894,-0.48701033,-0.060096722,-0.52323574,-0.069963686,-0.106180705,0.26068017,-0.4924581,-0.06810358,-0.3686925,0.3910657,-0.23616727,0.09986061,0.15867043,-0.23812938,0.088244855,-0.6975427,0.104463704,0.043997813,0.61965245,0.035550714,-0.07730386,0.54871887,0.046445712,0.33595785,0.12791218,-0.397163,-0.054352075,-0.117262565,-0.06634109,0.50317353,-0.32949418,-0.18111886,-0.12192479,0.18975289,0.57265586,0.2259124,0.073745206,0.17857255,0.06485763,-0.30768332,-0.017987708,0.7135572,0.5874261,-0.108998,-0.120851465,0.1834327,0.65608525,0.6123852,-0.08779774,-0.1288641,-0.11180731,-0.4521428,-0.14580405,0.037272464,0.012501205,0.32173154,-0.11107675,0.29830074,0.6729899,-0.11135411,-0.0697053,0.33057168,0.10260784,0.33468518,-0.05347131,-0.24024232,0.4397703,-0.75129825,0.14449733,-0.47585824,0.54595315,0.15419614,-0.7967711,0.39813003,-0.5203053,0.19308393,0.18142295,0.6496803,0.80592984,0.57467806,0.271149,0.829288,-0.34697947,0.21998377,0.061574757,-0.23853649,-0.03175093,-0.15660258,0.2320563,-0.41538915,-0.117238574,-0.35894606,0.032480616,0.06075452,0.109490074,-0.6462373,-0.41831768,0.07596731,0.7367337,-0.15810005,0.0756624,0.880364,1.1881894,1.0043426,-0.13366164,1.055265,0.016568413,-0.22853106,-0.25507924,-0.08081757,-0.5684135,0.2211235,0.36983028,-0.10588676,0.396407,-0.16465436,-0.22123636,0.21030836,-0.41346255,-0.26395866,0.032996383,0.39038578,-0.008305937,-0.03704716,-0.6037292,-0.23487872,-0.052479725,-0.0445123,0.13407107,0.39620385,-0.36175963,0.283325,-0.041884243,0.83349866,-0.042484034,0.14220822,0.09678468,0.4454358,0.30326062,-0.25638604,-0.065244265,0.23230113,0.44714704,0.04269721,-0.571657,0.24247587,-0.6676931,-0.2673428,-0.03999589,-0.33540976,-0.2714369,0.1081898,-0.17486073,-0.1844634,-0.080958106,-0.103977345,0.27102166,-2.8445394,-0.24047899,-0.015858674,0.4034734,-0.30328414,-0.25270948,-0.12852913,-0.5071723,0.25653085,0.05962189,0.5794241,-0.5087347,0.40637055,0.46135953,-0.6939295,-0.06691112,-0.58464503,-0.06247439,0.21326743,0.48469058,0.06989134,-0.21786149,0.0012392203,0.24663927,0.6508688,0.31023958,0.11443577,0.48487842,0.5206325,-0.045761067,0.3386213,-0.1306764,0.553158,-0.51786804,-0.100726545,0.3467209,-0.4358578,0.28739086,-0.37367523,-0.019470075,0.55885357,-0.33614933,-0.91409284,-0.35367227,0.07120843,1.2300369,-0.19858612,-0.71323586,0.01656405,0.11068779,0.028056234,0.08552089,0.5354257,-0.0030870736,-0.088120885,-0.48018384,-0.13360757,-0.27361596,0.19263814,0.007363303,-0.07477323,-0.40848923,0.67366296,0.008958782,0.5869205,0.09277666,0.4214641,-0.2561599,-0.37604108,0.16633117,0.7932593,0.4922198,-0.033097297,-0.16427372,0.029292053,-0.09625413,-0.13191609,-0.10648817,0.906127,0.68392867,-0.127187,0.04337576,0.36408463,-0.0744121,0.19735956,-0.019527191,-0.3941795,-0.3846432,-0.19198422,0.63878983,0.84169227,0.06908996,0.4977051,0.06852742,-0.05142938,-0.16429152,-0.5321736,0.5962417,0.4465573,-0.35034204,0.13524334,0.41446522,0.41313732,-0.27977583,0.4500076,-0.6332106,-0.3956875,0.6956437,-0.13703506,-0.5752968,0.17349453,-0.20537055,0.12400669,-0.4284731,0.53376514,-0.6405113,-0.8328366,-0.6226842,0.008472954,-1.3576895,0.25299013,-0.26697883,0.017164016,-0.5409212,-0.06560323,0.035674635,-0.6565481,-0.6390656,0.17139399,0.28799814,0.7488113,-0.29911312,0.08493381,-0.28944382,-0.4817386,-0.21553159,0.20992716,0.30441806,0.2604359,-0.07624942,-0.07732294,-0.16420893,0.1820445,-0.31797215,0.09735918,-0.49441376,-0.49118948,-0.10280342,-0.4573743,-0.16012542,0.69328433,-0.32947412,0.12702248,-0.23826742,0.13017386,0.0895231,-0.08051099,-0.02190273,0.29756093,0.1436598,-0.31681207,0.20645057,-0.22110361,0.55805534,0.17646794,0.6274225,0.06364221,-0.13159733,-0.026857957,0.52565026,0.77889746,0.1106222,1.1297666,0.12384259,-0.10187993,0.315697,-0.2688744,-0.45600548,-0.5835714,-0.21646039,0.3690498,-0.41589454,-0.4128606,0.028692508,-0.33467317,-0.8675086,0.5935978,0.08750505,0.57384163,-0.22857885,0.5197485,0.4530588,-0.40081254,-0.080682136,-0.016865104,-0.13446192,-0.3068143,-0.04313776,-0.8049963,-0.3677212,-0.1397547,0.6746073,-0.3992546,0.16703485,0.16478913,-0.17146665,0.26389447,-0.24320333,0.04116005,-0.07430562,0.19947542,0.1099867,-0.4909723,0.31453183,-0.08120961,0.04880173,-0.4862026,0.31712225,0.6763933,-0.58305883,0.41647196,0.40190268,-0.24861081,-0.26317206,-0.7215872,0.13099241,0.27106825,-0.11559514,0.08635215,0.28498366,-0.7222037,0.41393456,0.22338672,-0.40007284,-0.72044563,0.4069914,0.04078434,-0.40031755,-0.10670337,0.34561822,0.059532207,-0.084194005,-0.06908773,0.30482554,-0.4246582,0.5334135,-0.097776115,-0.20259254,0.09080567,0.0004244099,-0.40041065,-0.80928755,0.22999696,-0.7782077,-0.3800284,0.5299701,-0.10943258,-0.14085509,0.23996337,0.33780667,0.37480965,-0.37838283,0.12188217,-0.18741234,-0.38900352,0.5227886,0.4915069,0.6124273,-0.4940989,0.56592035,0.3460233,-0.21299589,0.48287663,0.0063131354,0.46804214,-0.12602079,0.48928866,-0.019812634,0.093347855,0.09037015,0.45709494,0.14709185,0.32111904,-0.07083708,-0.11107788,0.18636446,-0.08253374,0.4016985,-0.06148092,-0.48054203,0.09502286,0.026136583,-0.062946044,0.55086416,0.1425963,0.033888917,0.1072411,-0.36752418,-0.11377636,0.20041697,-0.27219114,-1.4221096,0.75142986,0.21615066,1.0535105,0.2672923,0.33956468,-0.13508116,0.7162742,-0.030390888,0.08217759,0.28014705,0.10231558,-0.3144592,0.6229761,-0.6600531,0.459214,-0.0024291675,0.047012016,0.18955827,-0.100613706,0.35710225,0.73662764,-0.21356289,0.011598177,-0.26618394,-0.18002494,-0.23237781,-0.33154103,0.34310493,-0.3698307,-0.3943317,0.6583786,0.25930178,0.25293496,-0.23735707,0.17158449,-0.17932224,-0.30643752,0.31393573,-0.08106138,-0.0587047,-0.04484059,-0.42357802,-0.012093355,0.4330018,-0.26525453,-0.046777368,-0.28836882,0.120132856,0.080891095,-0.098382376,0.025477692,-0.031087995,-0.83532023,0.32702333,-0.44105542,-0.28553087,0.22089016,-0.13552712,0.095760226,0.15039293,0.12392289,-0.13262758,0.31633142,0.14661002,0.4810854,-0.11787551,-0.46588492,-0.51820916,0.21163201,-0.016153028,-0.28960225,0.24064004,-0.08399775,0.13351886,-0.28214058,0.46375358,-0.23303115,-0.48642853,0.023266265,-0.18284942,-0.144324,0.48760387,-0.15761766,-0.1656164,0.021820545,-0.38553238,-0.2457213,-0.19840746,-0.20230366,0.12266763,0.49733236,-0.23961337,-0.13747092,-0.1425089,-0.31554404,0.4616791,0.13399495,0.44677857,0.4141465,0.2545546,-0.48878717,0.22737016,0.25035083,0.55074537,0.0609861,0.10325691,-0.6004756,-0.36266127,-0.45037642,0.72020334,-0.25288412,0.19226371,-0.12033522,0.030932268,0.9704311,0.05385765,1.1539025,-0.108954154,-0.22195147,-0.13049161,0.6410733,-0.20950365,-0.21633099,-0.5181369,1.084653,0.35780907,-0.11137983,0.19922237,-0.27091804,0.030697992,0.2997159,-0.29990044,-0.15403347,0.015043855,-0.41778883,-0.43091437,0.24882756,0.32951736,0.10708284,-0.19445582,-0.23119931,0.45252302,0.17155188,0.27329925,-0.7345248,-0.34518757,0.23487116,0.1372429,-0.24157834,0.24973206,-0.37876758,0.31357348,-0.73730785,0.25463408,-0.5523873,0.18986791,-0.1060715,-0.43594456,0.22431801,-0.04839888,0.40302786,-0.44565463,-0.47531453,0.090512075,0.030911619,0.31622994,0.09428963,0.4993688,-0.16882797,-0.015228194,0.18539904,0.6318125,0.9748549,-0.29897997,-0.045991093,0.123577476,-0.478542,-0.76356125,0.1632031,-0.34184575,-0.109566174,-0.20595759,-0.36043382,-0.46578574,0.19951141,0.09560878,0.2335844,-0.14898583,-1.0217983,-0.13604264,0.21680729,-0.32113656,-0.17436612,-0.38634527,0.32436725,0.7896655,-0.15396339,-0.38473415,-0.12496967,0.41181406,-0.23844163,-0.7016251,0.03433615,-0.48110488,0.15339395,-0.091080874,-0.34599257,-0.21415438,0.047233712,-0.6307195,0.21911614,0.13160495,-0.30503443,-0.099515595,0.105962075,0.24176194,0.6166389,-0.43939868,-0.042810958,-0.32957613,-0.44626746,-0.7727411,-0.2885402,-0.16120268,0.4559872,-0.067570806,-0.7406582,-0.0063821874,-0.38952732,-0.15163745,-0.15006721,-0.4053111,0.25205836,0.21491419,0.52809846,-0.49176225,-1.0646347,0.19637656,0.11185437,-0.1329139,-0.46283093,0.381997,0.15736824,0.6832836,-0.031957787,-0.11357864,-0.14569734,-0.45781025,0.20498566,-0.324543,0.03525586,-0.77891546,0.31981444,533 -855,0.28974363,-0.43786776,-0.64213127,0.0054681934,-0.36915472,0.06286543,-0.28493205,0.3188917,0.26290622,-0.3875344,-0.20417021,-0.099599384,-0.117679335,0.19166829,-0.17073892,-0.39179298,-0.20832683,0.24738292,-0.761658,0.6349954,-0.27548409,0.29308996,0.19391966,0.39922774,0.15550335,0.15434116,0.15394837,0.12541641,-0.13039784,-0.116763115,-0.14394489,0.26003966,-0.7773592,-0.014614898,-0.46351945,-0.37789008,-0.0065100216,-0.58744305,-0.37363574,-0.956754,0.35718468,-1.1307992,0.73375076,-0.08156783,-0.12214569,0.11178311,0.39210823,0.37285408,-0.057617094,-0.07726734,0.19251025,-0.427675,-0.060173783,-0.35981175,-0.28965232,-0.34135476,-0.5145985,-0.0057997354,-0.6200071,-0.17366238,-0.21339433,0.25694585,-0.33924493,0.025287798,-0.42924607,0.382224,-0.32620475,0.066635095,0.3484119,-0.15059443,0.33879933,-0.6910505,0.06975298,-0.09424462,0.35565105,0.061938126,-0.10248422,0.43617213,0.3279883,0.5046268,0.14401977,-0.34692708,-0.21953852,-0.17453612,0.32314026,0.5008082,-0.17747246,-0.29695037,-0.18256998,0.22649772,0.5993965,0.68333155,0.074816495,0.041476388,0.04587716,-0.17754011,-0.005174806,0.7557575,0.6172593,-0.3796421,-0.47864294,0.12388588,0.7819064,0.34622577,-0.1746161,0.008072714,-0.10281073,-0.4670565,-0.17240125,0.3479115,-0.2552289,0.689353,-0.21342397,0.040171083,0.7323796,-0.14061448,-0.08434937,0.064450115,-0.0017482663,0.02932004,-0.2727305,-0.13653842,0.40865973,-0.7404845,0.22665322,-0.35949823,0.48984084,0.059496637,-0.71907157,0.25881776,-0.5702446,0.27638265,0.33848062,0.5852638,0.7132306,0.7469101,0.37059128,0.94009835,-0.33040237,0.046708267,-0.0069314935,-0.3433138,-0.1321588,-0.37460807,0.1489918,-0.42880812,0.16501907,-0.51670724,0.028426135,-0.060641598,0.40382156,-0.6388871,-0.22972874,0.18514399,0.8933718,-0.20421839,0.09703223,0.94225997,0.91893506,1.2323366,-0.05928487,1.2952794,0.1046679,-0.23418415,-0.035721224,-0.056225937,-0.7865966,0.22058988,0.47426522,-0.06571376,0.37227324,-0.1571322,0.054524645,0.1996109,-0.5596878,-0.071784794,-0.07754093,0.19218333,0.10258164,-0.15363508,-0.5304878,-0.02473844,-0.15363818,-0.023004541,0.041445892,0.2818166,-0.15177247,0.68408424,0.075683735,0.85944957,-0.36470532,0.109743364,0.27513131,0.46109596,0.2821109,-0.09572342,0.08986511,0.39169183,0.36278853,0.20103748,-0.57891446,0.07123899,-0.57046723,-0.26564565,-0.28032133,-0.4181049,-0.3190077,0.1672883,-0.32751492,-0.41558233,-0.24828397,-0.22685595,0.35600066,-2.6005895,-0.16838504,-0.28148916,0.32451436,-0.41316128,-0.2610829,0.15543354,-0.72152084,0.26759943,0.15776886,0.5763397,-0.4633919,0.38836512,0.6081161,-0.80060226,-0.00040451685,-0.7420742,-0.19106455,0.09636215,0.5875728,-0.00048492601,-0.10243026,-0.0015266935,-0.017464058,0.7223859,0.32822087,0.18458958,0.6823342,0.66820544,-0.078422494,0.49948063,-0.1701569,0.5596368,-0.5996868,-0.17918126,0.5943509,-0.26266775,0.5751813,-0.3999246,-0.017037123,0.77811486,-0.49010196,-0.71640635,-0.52182883,-0.25421745,1.2435087,-0.25227857,-0.79631025,0.019644046,-0.2199973,-0.023217387,-0.18216263,0.5937043,-0.013729672,0.23956217,-0.5881104,-0.10296649,-0.28156468,0.2809103,-0.05454427,-0.101411164,-0.3438021,0.7990787,0.0005702488,0.40961275,0.23380013,0.22074789,-0.31747195,-0.462581,0.011960391,0.7229659,0.5940942,0.007497015,-0.22814906,-0.18056566,-0.162979,-0.28165194,-0.14288272,0.76496285,0.577612,-0.2743,0.08858345,0.47209522,0.1811034,0.16639972,-0.21777289,-0.40186235,-0.38388,0.032953966,0.5923801,0.7426493,-0.17287183,0.40479288,-0.10793871,0.202698,-0.108513236,-0.58034325,0.61857265,0.7969119,-0.2860845,-0.09141356,0.7656141,0.59271485,-0.5233132,0.58653885,-0.64389473,-0.26451018,0.75109315,-0.3874778,-0.74535745,0.1798969,-0.30063966,0.088947214,-0.5743679,0.15018211,-0.6272239,-0.35130918,-0.56599444,0.037549753,-1.9711194,0.1954153,-0.3401005,0.08454636,-0.4971697,-0.27019405,0.15384822,-0.38734022,-0.8798733,0.21497719,0.28488693,0.66473645,-0.23263343,0.11171979,-0.2291245,-0.40693748,-0.21969666,0.4500599,0.33980152,0.15844718,-0.4599112,-0.3293015,-0.07715412,-0.029167116,-0.36479056,0.092422724,-0.6191154,-0.40610436,-0.16010426,-0.3835374,-0.0760796,0.5939037,-0.32534268,0.086025864,-0.22476132,0.08648836,0.048232753,-0.05242144,-0.018975342,0.57165474,0.25842717,-0.31860423,0.21025805,-0.19215412,0.56669587,0.0033548698,0.38668644,0.1995027,-0.08531544,0.27171347,0.22516663,0.88530225,-0.1879191,1.1587371,0.2670298,-0.13783334,0.37680855,-0.10178428,-0.5625333,-0.82528406,0.014214146,0.20031266,-0.4234551,-0.69401425,0.083072074,-0.35218778,-0.8145709,0.75480336,0.041842286,0.86307734,-0.065330476,0.576606,0.5560235,-0.4066621,-0.044778924,-0.09256539,-0.25214994,-0.4837052,-0.32426247,-0.75811523,-0.5462374,-0.11238297,0.8062158,-0.23064731,0.029431678,0.21948342,-0.23582093,0.114033096,0.24758823,0.04236861,0.10430806,0.5875885,0.21739535,-0.63067967,0.3465662,0.2989391,-0.021972215,-0.55246145,0.4377799,0.50804263,-0.64369553,0.63899446,0.4178939,-0.19871478,-0.3836197,-0.7143035,-0.016648298,-0.10546881,-0.29830503,0.55122524,0.42068172,-0.65847504,0.41227743,0.26428285,-0.40526745,-0.9698412,0.28288797,-0.080806725,-0.41635442,0.0069441744,0.4172198,0.088567115,-0.04614639,-0.17824632,0.20329313,-0.30977586,0.28061378,0.15627043,-0.22603114,-0.055560738,-0.17967361,-0.47417638,-0.8581045,0.39911494,-0.6216673,-0.20995729,0.6962736,-0.13181126,-0.2589573,0.27720362,0.28070742,0.45104477,-0.023243865,0.1991501,-0.034244508,-0.52307034,0.50721973,0.5145862,0.4418559,-0.6243265,0.6853177,0.18355708,-0.50321907,0.27631336,0.20262444,0.3491163,-0.12971576,0.4872655,0.10321194,-0.27834353,0.16688855,0.77099305,0.2642508,0.5104559,0.19888614,0.10498631,0.5285764,-0.08325764,0.28526124,-0.28543308,-0.79031307,0.032761704,-0.118873,-0.0986014,0.5906406,0.105154246,0.28911954,0.0011142939,-0.0025213335,-0.18046923,0.11397499,-0.012638737,-1.3114694,0.12248849,0.18831353,1.1888977,0.45831943,0.35380745,-0.14559014,0.7913397,-0.34646225,-0.08824899,0.69782287,0.09854925,-0.5149161,0.80147123,-0.62868005,0.449531,-0.10138605,-0.052978273,0.1075929,0.11610886,0.3262881,0.9251668,-0.21323685,-0.16276488,-0.21348332,-0.17986172,0.30082622,-0.32543647,0.14685458,-0.25811577,-0.52890843,0.67952204,0.29602215,0.46885267,-0.3243825,-0.004726795,-0.016077045,-0.2305518,0.3665458,0.13457245,0.10908162,0.028112188,-0.2121476,0.18445659,0.49188837,0.113368176,0.14440836,-0.23013283,-0.27296534,0.101875804,-0.2371196,-0.091333,-0.10404267,-0.9048489,0.052554276,-0.42103776,-0.8871905,0.37151837,0.029806614,-0.07560875,0.2115798,0.025703616,-0.15550835,0.2351054,-0.10377586,0.7000664,-0.10321935,-0.15992284,-0.40203723,0.31253436,0.108414344,-0.24694173,0.42704698,0.07352037,0.27160707,-0.42062917,0.6042539,-0.26276416,-0.6024162,-0.033864077,-0.24926142,-0.28334585,0.7020337,-0.04418218,-0.11987088,0.015054042,-0.3341999,-0.5352189,-0.4999145,-0.1104685,0.14974599,0.23938413,0.012123828,-0.3268012,-0.16774939,-0.1700372,0.6642042,0.072550215,0.37921643,0.22992541,-0.035923433,-0.53294826,0.18648934,0.13584137,0.6041593,0.109290354,0.013494733,-0.2696984,-0.60999286,-0.38761532,0.4719511,0.02885962,0.37592432,-0.02717603,-0.097538024,1.1593335,-0.088668466,1.1161007,0.007810369,-0.31172928,-0.025462756,0.5931467,-0.16610599,-0.17934386,-0.5346028,0.90277857,0.51951855,0.032888252,0.1353875,-0.35790992,0.24839528,0.077967755,-0.32572684,-0.08799293,-0.011472236,-0.44881988,-0.34282187,0.18818569,0.33429834,0.31925392,-0.28522503,-0.06678758,0.36476746,0.042733908,0.3482157,-0.4726695,-0.7431925,0.41479635,0.10866346,-0.20218986,0.110640585,-0.39129272,0.32381627,-0.69859713,0.041376248,-0.51907456,0.04747656,-0.1545061,-0.4107778,0.1819808,-0.2519993,0.37227735,-0.4424442,-0.45598876,0.0058964514,0.2747902,0.26529258,0.12462645,0.5338704,-0.22968946,0.01180917,0.18792196,0.5962386,1.127682,-0.39448872,-0.10604302,-0.013604519,-0.6018027,-0.7221415,0.5360213,-0.48687768,0.06946382,0.038010333,-0.3593423,-0.32859668,0.09022268,0.09406135,0.051121917,-0.22020958,-0.8438864,-0.303508,0.2792116,-0.39589342,-0.07629528,-0.3077302,0.2876743,0.78202724,-0.045491133,-0.43040118,0.06261023,0.2527226,-0.35163307,-0.5565599,0.042642605,-0.24837027,0.16317774,-0.12084544,-0.4812627,0.062370364,0.18427129,-0.70703393,0.038565334,0.23694944,-0.3713342,-0.0956319,-0.30013525,0.10496905,0.8356343,-0.5625878,-0.2821806,-0.16065641,-0.6027782,-0.9032793,-0.26409557,0.05493185,0.13505785,0.08397177,-0.72547215,0.0017538866,-0.4835659,-0.098237,0.15213759,-0.45703176,0.40388575,0.08897393,0.5819741,-0.4054273,-0.8542967,0.34262824,0.12234748,0.12293301,-0.4876937,0.5604474,-0.07414506,0.80060536,-0.022768294,0.04149406,0.09212976,-0.79855686,0.07914802,-0.22401597,-0.107211,-0.86622065,0.081097536,535 -856,0.20015462,-0.11799073,-0.45342574,-0.017225707,-0.07266738,0.13536623,-0.14587136,0.35895947,0.039143916,-0.65271664,-0.10626748,-0.24754727,-0.04619819,0.037442744,-0.24171104,-0.27418527,-0.0722884,0.21493848,-0.47898343,0.21911745,-0.5285193,0.32085988,0.14795732,0.03817646,-0.14631328,0.13794313,0.26890162,-0.23812921,-0.18729667,-0.32222596,0.109641224,0.026846737,-0.7833051,0.28182033,-0.13302046,-0.3025603,0.03908384,-0.4007467,-0.46636328,-0.6946802,0.44376764,-0.88265353,0.5158794,0.118107714,-0.08744935,0.3029053,0.092026,0.31725505,-0.19208823,0.14231841,0.45712975,-0.098437965,-0.05551068,-0.18837143,-0.18847577,-0.16138966,-0.51249564,0.06043588,-0.4576054,-0.21775223,-0.4553114,0.26157248,-0.32775757,0.08086643,-0.27909073,0.32465017,-0.32409033,0.041353602,-0.03954682,-0.08378645,0.3236508,-0.5612709,-0.031829935,-0.12122267,0.106330134,-0.37355185,-0.038862288,0.30161405,0.14080143,0.5111595,-0.052766357,-0.017121777,-0.17615421,-0.075217985,0.14646068,0.49080595,-0.23989713,-0.34274018,-0.021803081,-0.13702302,0.047357883,0.07405925,-0.124425136,-0.3349005,-0.038746145,0.057119977,-0.3446149,0.3299424,0.6717561,-0.24081069,-0.18795045,0.3937485,0.49659744,-0.1052258,0.1403865,0.07714148,0.06864355,-0.54046625,-0.2793912,0.1481986,-0.17437617,0.39151493,-0.071492456,0.255448,0.6308744,-0.35661447,-0.008311641,0.1559667,0.095175944,0.08904624,-0.15264863,-0.30895117,0.2846934,-0.4980527,0.026717743,-0.24710111,0.94128543,-0.0072807926,-0.85051465,0.32478413,-0.48152336,0.055458248,0.038698778,0.63329774,0.45044866,0.5790518,0.15067412,0.7445128,-0.58866996,-0.010889645,-0.13655399,-0.34935763,0.09787475,0.009393573,-0.12288645,-0.17553179,-0.10765002,0.17452681,-0.12727605,-0.21831144,0.44807616,-0.3897836,0.016787728,-0.002112319,0.69940376,-0.3429903,0.07935217,0.513848,1.0518328,0.717459,0.20265524,1.4046768,0.095653795,-0.27943203,0.14933336,-0.17439759,-0.9903566,0.26428688,0.3094009,0.13431758,-0.015992701,0.2990763,-0.09733218,0.15304853,-0.5009926,-0.05462873,-0.3047774,0.25896212,-0.1028151,-0.11712936,-0.29011336,-0.17176718,0.1013318,0.05361761,0.116625905,0.15501922,-0.31938756,0.037293848,0.20543182,1.2529706,-0.2474044,0.33173195,0.21889721,0.32724044,0.07086306,-0.016900113,-0.13593693,0.24108303,0.395573,0.24393952,-0.6253636,-0.07118358,-0.13751866,-0.44709292,-0.12200529,-0.14683785,-0.06177522,-0.076858275,-0.29188862,-0.26088318,-0.14080155,-0.6226742,0.3122861,-2.5677593,-0.067696586,-0.064373404,0.47732508,-0.18637168,-0.24915652,-0.14609434,-0.4327083,0.53648466,0.43019542,0.46086392,-0.6734109,0.34976295,0.5276585,-0.3535377,-0.050041478,-0.57104474,0.049923908,-0.11266842,0.2707719,0.1300305,-0.16690218,-0.16263653,-0.045442265,0.29642656,-0.15284234,0.07133765,0.4075221,0.44365743,0.18352382,0.47551283,-0.04666409,0.45198694,-0.45125794,-0.20761962,0.27948707,-0.5138197,0.032068282,-0.033944268,0.16754736,0.23172492,-0.68316674,-0.83218235,-0.6833413,-0.51808816,1.3697819,-0.28516886,-0.3606054,0.46917662,-0.11297505,-0.34840932,-0.18788572,0.47320354,-0.16565253,0.09271645,-0.8675057,-0.05317059,-0.2481765,0.5337865,0.010847968,0.113711655,-0.53869337,0.6425515,-0.23913622,0.4211184,0.4440712,-0.03255752,-0.5296622,-0.44914934,0.061736804,1.2379532,0.26063907,0.25440654,-0.13665228,-0.16150375,-0.24430929,-0.067366086,0.01631798,0.4766527,0.7470019,0.059478845,0.04147862,0.27473417,-0.00016047557,0.036900375,-0.042860318,-0.38749966,-0.16328971,-0.11786459,0.65156645,0.40467775,-0.09538818,0.2244764,-0.111567535,0.21363513,-0.3102213,-0.27714503,0.3407255,0.6526327,-0.02372425,-0.2479309,0.6283936,0.49227104,-0.25621954,0.44928607,-0.5331703,-0.5667687,0.27588657,-0.22788316,-0.5247043,0.2882182,-0.35973784,0.11614274,-0.72776264,0.5385166,-0.31352594,-0.70003,-0.51622075,-0.19994695,-3.5556939,0.18286891,-0.21097668,-0.18457837,-0.063351065,-0.06884059,0.21383817,-0.3286747,-0.5108308,0.05029181,0.08542162,0.5182153,0.0029591906,0.033451468,-0.1980576,-0.043257892,-0.266069,0.24118741,0.2578575,0.12973036,-0.00403064,-0.38943854,-0.12388512,-0.17277716,-0.16688836,0.006882814,-0.5351679,-0.40776834,-0.07837827,-0.6559928,-0.4534019,0.7523864,-0.412631,-0.040429983,-0.23286788,-0.02019392,-0.14393948,0.45871553,0.10092089,0.18753518,-0.072226174,-0.22103477,-0.24452268,-0.14767526,0.5651395,-0.00786304,0.32315412,0.5061114,-0.41553497,-0.15132606,0.33293068,0.6041183,0.031134715,0.99317855,0.2603276,-0.18328495,0.26561037,-0.1886232,-0.19367194,-0.55778694,-0.12430539,0.061571747,-0.401216,-0.27854148,0.040712297,-0.40015602,-0.7006569,0.5359163,-0.12166223,-0.033801634,0.11342555,0.31011948,0.22355956,0.04086708,-0.19206937,-0.18078315,-0.09087625,-0.39750266,-0.3486173,-0.7267158,-0.2796772,-0.168703,1.1822997,0.061441142,0.13077502,0.14988597,0.020317161,0.111346535,-0.031686783,0.062077958,0.27827552,0.5070084,-0.05560891,-0.6135246,0.38559735,-0.197563,-0.08544803,-0.57699525,0.0510288,0.66344213,-0.67182285,0.53687257,0.4528388,0.13198969,-0.23599708,-0.4515591,-0.3312885,-0.067444265,-0.19851011,0.28936994,0.15186876,-0.81532437,0.412294,0.329803,-0.21458645,-0.73875403,0.48324445,-0.094917536,-0.09243282,0.13173287,0.4809425,-0.3094202,0.047600195,-0.11485708,0.24897473,-0.21545869,0.48179784,0.007514199,-0.073671386,0.50835836,-0.3422121,-0.22565621,-0.5619601,0.078998886,-0.4792877,-0.14512907,0.15054077,0.0037648405,-0.026426012,0.38744855,-0.11499258,0.5417201,-0.3050114,0.03819171,0.052641213,-0.22787617,0.36113456,0.3215407,0.3897055,-0.38513115,0.65570074,-0.013818492,-0.1375464,-0.46323195,0.18602057,0.41266093,-0.055775937,0.26885006,0.090362586,-0.097781144,0.46121225,0.9491101,0.3350583,0.59018564,0.16790496,-0.019301271,0.33889067,0.2287354,0.13898887,0.18810946,-0.6519757,-0.05089805,-0.0869908,0.12677474,0.30437407,0.06204322,0.38551185,-0.29653832,-0.2305996,-0.07142642,0.3978301,-0.13102658,-0.9761629,0.3650795,0.014637157,0.562005,0.5138561,0.02838993,0.16365838,0.5500364,-0.15960056,0.0610023,0.13560326,0.051501393,-0.46936318,0.5513758,-0.60030115,0.34075582,-0.14604832,0.03766923,0.094382055,-0.081881754,0.39316395,0.71659833,0.053723603,0.019426906,-0.13081867,-0.09984999,0.17746536,-0.3669277,0.33119848,-0.32876906,-0.27526724,0.7161729,0.25440294,0.25063702,-0.07093683,-0.024247602,-0.10383946,-0.14975804,0.09093539,0.034425814,0.073154785,-0.025871957,-0.73327583,-0.109211385,0.5330026,0.32753095,0.17394985,0.14918368,-0.21641405,0.36496785,-0.12826908,-0.06998919,-0.110129006,-0.5822385,0.07802217,-0.36226735,-0.24960943,0.033808265,-0.21945198,0.37568244,0.22755341,0.02097094,-0.52924025,0.17097561,0.47887626,0.5523014,-0.04565933,-0.27202925,-0.20652135,0.2132687,0.15639216,-0.21905775,-0.021696342,-0.2778233,-0.072855465,-0.76822454,0.35915998,-0.110433914,-0.23844905,0.37695834,-0.19519328,-0.04413739,0.587827,-0.011312445,0.014609297,0.31180567,-0.17217797,-0.12599783,-0.09812981,-0.17311333,0.13032325,0.30497053,0.06259606,-0.047797773,-0.029083215,-0.20394294,0.3432952,0.08767387,0.29303426,0.2975308,0.4057046,-0.32643732,0.0030984383,-0.12934011,0.6968043,0.038110066,0.07318299,-0.2145626,-0.39495358,-0.16138679,0.26827475,-0.06148382,0.22601992,0.18655439,-0.44265756,0.71260947,0.05132736,0.88341635,0.06414673,-0.1507663,-0.14357899,0.6154178,-0.03652099,-0.13490482,-0.36097836,1.0636332,0.66640186,-0.20232894,-0.19695874,-0.2945696,-0.06460601,-0.11517277,-0.12638429,-0.26095784,-0.058427524,-0.5899183,-0.17426002,0.27658916,0.48458803,-0.10230768,-0.013777991,0.20464306,0.27432212,-0.030616118,0.27709043,-0.5152065,-0.085182585,0.36265263,0.118032195,0.11586085,0.056513846,-0.40263176,0.3240571,-0.64924884,0.06476711,-0.077764116,0.0043327212,-0.06693469,-0.19471185,0.16316493,-0.0743046,0.4694178,-0.32474375,-0.17391682,-0.11379593,0.31011704,0.08067233,0.28367138,0.7437454,-0.11402128,0.1027577,0.07724401,0.49050128,0.8128777,-0.15307312,0.052815955,0.3037769,-0.3616457,-0.5371979,0.333653,-0.3395195,0.020672023,-0.075104594,-0.2976682,-0.09843924,0.34130704,0.17609428,-0.13840686,0.12981422,-0.640806,-0.15294157,0.34804937,-0.23359753,-0.21115895,-0.20570461,0.1669146,0.7192464,-0.24447481,-0.17972429,0.053353388,0.40384388,-0.42381844,-0.6555027,-0.22160548,-0.33838323,0.32023498,-0.026054442,-0.15177841,-0.027160773,0.10807835,-0.3157754,0.121610545,0.060987826,-0.3874353,-0.030210525,-0.25370625,-0.04738735,0.53542846,-0.059130568,0.04007113,-0.5283388,-0.44814038,-1.0192263,-0.08390388,0.44034377,0.12606372,-0.01183226,-0.4436883,-0.19406427,0.01717008,-0.17434096,-0.022893453,-0.42781746,0.46229926,0.08300731,0.48343673,-0.14598581,-0.81426096,-0.0028723974,0.07520025,-0.17998986,-0.5102388,0.52684873,0.10272917,0.7204351,0.08589971,0.09774166,0.25911525,-0.7744377,0.14116906,-0.12478729,-0.23815988,-0.73331946,0.06886034,551 -857,0.3283444,-0.1997674,-0.535592,0.013441605,-0.23627353,0.028263258,-0.27932993,0.23811512,0.4710455,-0.20147939,-0.25040725,0.040686686,0.09394077,0.6258913,-0.08085646,-0.65580624,-0.060902085,0.18576843,-0.75478905,0.5085261,-0.4277452,0.3046485,0.03201775,0.46872064,0.106885396,0.2286972,0.23536752,-0.023439536,0.054349948,-0.23867424,-0.1770157,0.34116805,-0.69083136,0.046171468,-0.3626,-0.17535739,0.013630261,-0.52137786,-0.340587,-0.9572725,0.3859578,-1.0398076,0.70010155,0.051297132,-0.09740728,-0.1012305,0.45263514,0.3191177,-0.35319147,0.008110632,0.27869436,-0.49913692,-0.24209988,-0.47929123,-0.29230884,-0.31520024,-0.5660096,-0.07207564,-0.6904664,-0.142237,-0.22617942,0.2975084,-0.39485013,0.080024056,-0.16326497,0.27190965,-0.3011246,0.17888586,0.33992466,-0.31707782,0.17233388,-0.63804656,-0.03607792,-0.09195235,0.6557396,0.0029180099,-0.33947682,0.5106793,0.43520752,0.44315138,0.18708754,-0.33262628,-0.22052854,-0.11275218,0.15972288,0.5231433,-0.35521755,-0.42571864,-0.1333067,0.12637545,0.53311306,0.5383837,0.07011578,-0.08226351,-0.005223438,-0.28954092,0.05686335,0.7193775,0.6420362,-0.13161252,-0.32237524,0.11288353,0.5923757,0.47489938,-0.1784383,0.0774788,0.008363289,-0.73156506,-0.18947963,0.0023704867,-0.087994814,0.4789064,-0.16436356,0.13699551,0.86883354,-0.018905744,-0.26112846,0.069287695,0.0023549546,0.043714385,-0.22449268,-0.21288395,0.39092502,-0.58960396,0.17635448,-0.4315482,0.44885966,0.15494432,-0.62925094,0.32419065,-0.5714237,0.22291376,0.14775813,0.8059856,0.7662215,0.5249297,0.5979844,0.93170375,-0.38219175,0.10534855,0.022284845,-0.407863,-0.01238133,-0.44536626,0.19253035,-0.42279908,0.2458119,-0.3495182,0.12086662,0.31552503,0.49411437,-0.5139417,-0.26180896,0.1604683,0.96784395,-0.25213727,0.03412422,0.7900386,0.90961283,1.1219511,-0.022579297,1.3122196,0.06933617,-0.25944883,-0.16927075,0.029363662,-0.7379158,0.21643536,0.26522824,-0.4941969,0.32566342,0.023231292,-0.019422397,0.25608462,-0.7303398,-0.29445496,0.11900743,0.15511754,0.1675945,-0.15852378,-0.47979447,-0.078002125,-0.1612376,-0.09764996,0.32934874,0.2327956,-0.32030946,0.6366376,-0.08115517,1.1968007,-0.12107285,0.060631543,0.22675978,0.4528172,0.2698327,0.03194626,-0.07572321,0.42832556,0.51595026,0.0432138,-0.601947,0.013717584,-0.49367237,-0.17033328,-0.146048,-0.3284342,-0.34959212,0.1631044,-0.024572799,-0.27822158,-0.21592952,-0.18923914,0.38197768,-2.5289614,-0.23053582,-0.051476877,0.39940074,-0.28581318,-0.09042302,-0.31059447,-0.63325477,0.3994788,0.04857148,0.510658,-0.57997006,0.25397635,0.5036476,-0.81419396,-0.33176658,-0.67992705,-0.15958251,0.09440502,0.56296843,0.19547935,-0.2830936,-0.24227126,0.16838859,0.83406544,0.2798307,0.01905612,0.7234972,0.67408794,-0.06385136,0.6986027,-0.21643694,0.6955711,-0.480348,-0.2853789,0.42514816,-0.3906615,0.45091832,-0.3849032,-0.03496657,0.64625615,-0.44304633,-1.0608386,-0.48469147,-0.121714264,1.1875656,-0.29627332,-0.57906085,0.07199139,-0.36900255,-0.013929526,0.017999893,0.8974034,-0.140492,0.2031991,-0.57347304,-0.190189,-0.17025669,0.27076244,-0.0064232647,-0.07288759,-0.32011023,0.6781176,0.037600625,0.37210914,0.2059675,0.13878417,-0.3867568,-0.4651865,0.11292177,0.8470547,0.3679534,0.07860843,-0.15229245,-0.1851153,-0.1682768,-0.4284943,-0.25607184,1.024552,0.6257892,-0.25007924,0.08595357,0.363659,0.15002991,0.110775165,-0.30030033,-0.3174725,-0.25391537,0.007897873,0.60062736,0.9876812,-0.19513881,0.35941327,-0.04481469,0.39815772,-0.03521159,-0.37988153,0.6118849,0.73329085,-0.25129023,-0.040647298,0.64565593,0.291384,-0.4638114,0.58155864,-0.5587369,-0.45473847,0.77762026,-0.19555305,-0.6228456,0.26487955,-0.27128705,0.015728846,-0.5603942,0.15728179,-0.32990253,-0.3620532,-0.51786757,-0.16598962,-2.7226927,0.20297796,-0.23990981,0.11472082,-0.6893447,-0.13424966,0.13342308,-0.38643053,-0.77224255,0.25981733,0.27224562,0.6001902,-0.2726157,0.18662679,-0.33725646,-0.29738232,0.047502134,0.2493695,0.27701196,0.31197497,-0.1733432,-0.3600948,-0.15169102,0.15283743,-0.3713993,0.062534906,-0.65231884,-0.35833266,-0.0025964875,-0.5506078,0.06390505,0.6684594,-0.61811084,0.00062170625,-0.32317206,0.19853538,-0.036274094,-0.01664459,-0.042693913,0.38930252,0.20388345,-0.27891305,0.22168086,-0.05790521,0.66103137,-0.05524872,0.4748372,0.06438818,-0.114734136,0.17305005,0.29352877,0.8512284,-0.37091437,1.2723385,0.38114524,-0.10873578,0.20026356,-0.23927684,-0.6196615,-0.56884915,-0.21341066,0.32998756,-0.5312908,-0.36335906,-0.027523851,-0.4142927,-0.99451303,0.70008403,0.025178978,0.34022543,0.0028660123,0.47019652,0.51482946,-0.32989982,0.029262641,-0.033242084,-0.1798452,-0.5356259,-0.2299376,-0.4853634,-0.6017472,-0.1298367,0.82449037,-0.33281365,0.19243197,0.24343066,-0.21461292,-0.013978581,0.23258133,0.09514312,0.11090746,0.6166282,0.2077498,-0.7575166,0.4404459,-0.205597,-0.23803164,-0.7706874,0.25655958,0.5431521,-0.7943215,0.7479436,0.5000279,-0.21625279,-0.12064504,-0.7786021,-0.20417662,-0.02232886,-0.084289394,0.40852165,0.2693182,-0.65850896,0.50446224,0.30522135,-0.685019,-0.7759622,0.26470435,-0.18147148,-0.44894782,0.12692353,0.47443953,0.15752335,-0.030535927,-0.05054285,0.19345272,-0.25008035,0.39320946,-0.046281476,-0.18496968,0.11827737,-0.20103914,-0.43051967,-0.8906636,0.18632226,-0.57990414,-0.32377172,0.4686624,-0.09262306,-0.17628674,0.07730743,0.22051442,0.34603497,-0.22248395,0.2268912,-0.26317698,-0.48245168,0.28338012,0.5244263,0.49710616,-0.46745816,0.6835284,0.17479666,-0.3647621,0.33477113,0.05793472,0.4268924,-0.26139045,0.43513942,-0.053083494,-0.09557516,0.25890544,0.846945,0.022752075,0.289041,0.03561163,0.03417858,0.46125463,0.06539088,0.23987205,-0.005353853,-0.69164306,0.013513644,-0.21226293,0.08945828,0.61512405,0.3797921,0.29356575,0.1205383,-0.26713625,-0.17506148,0.2569894,0.04454769,-1.395414,0.3917091,0.15963186,0.9382117,0.12401354,0.2786182,-0.028461596,0.8133634,-0.075401865,-0.055177424,0.6335699,-0.04800855,-0.3471006,0.67741364,-0.52849203,0.39409545,-0.113779016,0.086351246,0.19701123,0.21962433,0.30459228,0.9244835,-0.28775847,0.010720696,0.0014878213,-0.12974674,-0.12681024,-0.54014,-0.05791388,-0.2718447,-0.5601892,0.62828404,0.433769,0.4943982,-0.26550192,0.06548046,0.044931103,-0.17587315,0.18478799,-0.14991212,-0.06543784,-0.1188299,-0.603429,0.2958283,0.4638143,0.17597312,0.11847859,-0.30552864,0.06889223,0.28680474,-0.33315086,0.0866221,-0.2554085,-0.726978,0.05328167,-0.4620335,-0.7209936,0.41831946,-0.12377664,0.0330141,0.35333097,-0.01012827,-0.09675338,0.4210445,-0.037420865,0.9703854,-0.02172038,-0.42938784,-0.3350273,0.25322986,0.13545716,-0.38753676,0.2747402,-0.2738134,0.23129785,-0.42609894,0.65636164,-0.32198313,-0.41901827,0.051081788,-0.33486673,-0.09408861,0.5905123,-0.2113987,-0.07596437,0.10436552,-0.36245093,-0.43212524,-0.26698518,-0.33272633,0.17838265,0.33828273,-0.038401004,-0.31095576,-0.28314134,-0.43536758,0.37890497,-0.10235635,0.47615758,0.3126122,0.18669687,0.0072814524,0.19948621,0.23542435,0.8420186,0.16137713,-0.120960794,-0.42895046,-0.59558433,-0.49929282,0.37045315,-0.09256035,0.27375478,0.09783309,-0.10447058,0.8909867,0.08382663,0.9788889,0.0910666,-0.3633581,0.032015968,0.642582,-0.16395591,-0.14389168,-0.4242928,1.0221862,0.51501083,-0.11925471,0.10187168,-0.47890857,0.31965446,0.3084102,-0.43405965,-0.052059557,0.02571179,-0.50775576,-0.3279559,0.2860575,0.2312205,0.2812311,-0.2127905,0.06527739,0.06804282,0.09958079,0.27236652,-0.6474877,-0.3085991,0.31975642,0.19375002,-0.21100514,0.013785536,-0.42366147,0.44791898,-0.48905113,0.008495924,-0.7196076,0.11358089,-0.25248846,-0.2978523,0.26894698,-0.12595439,0.32805148,-0.6099462,-0.29246613,-0.109513305,0.17581661,0.27055895,0.16337727,0.5042958,-0.27531305,-0.14613391,0.24853878,0.66052204,1.134259,-0.5809099,0.13004525,0.29417622,-0.45230207,-0.57955617,0.4260185,-0.4811766,-0.122084856,-0.08133865,-0.5045312,-0.42010316,0.14213058,0.004440576,0.29270902,-0.006560882,-0.73172027,-0.1429876,0.25498495,-0.23430963,-0.1798427,-0.30588147,0.27380052,0.73963934,-0.012824375,-0.48116994,0.088651694,0.26084125,-0.29770032,-0.6749921,0.053306405,-0.24200183,0.27917174,0.09333411,-0.21002704,-0.20372574,0.023689678,-0.7161016,0.21568565,0.14770865,-0.4151651,0.011953925,-0.1719452,0.066016674,0.85396075,-0.5510543,0.03216082,-0.49770474,-0.5037508,-0.89770174,-0.29751846,0.14405325,0.17877276,-0.019982198,-0.728435,-0.10621313,-0.21345659,-0.21164994,0.101235695,-0.37564826,0.3813195,0.07915166,0.6172696,-0.612085,-0.9656897,0.13153885,0.13643692,-0.30477878,-0.621023,0.5507378,0.12567489,0.8248391,-0.044571567,-0.12863077,0.18801223,-0.46753287,0.010348052,-0.2515268,-0.11774939,-0.8566281,-0.0684521,557 -858,0.33907786,-0.13960437,-0.50341797,-0.09088147,-0.3813889,-0.3022633,-0.31075045,0.21167862,0.3523437,0.045321714,-0.2706943,-0.1250026,0.085516214,0.36675188,-0.17604677,-0.6106035,-0.0061023138,0.1640142,-0.71342945,0.66385674,-0.37931827,0.2850053,0.101528905,0.3687928,0.38740206,0.43783212,0.16004023,0.08818265,0.12912552,-0.28928152,0.05385053,-0.14361288,-0.84262484,0.081439905,-0.47284022,-0.30661544,0.17351037,-0.64146596,-0.44859543,-0.7992017,0.2833176,-0.91051954,0.5083198,0.07371169,-0.09239561,-0.2935044,0.23183976,0.35981503,-0.27695066,-0.07493139,0.23081069,-0.27336952,-0.094978094,-0.29203176,0.0007206599,-0.226104,-0.4718142,-0.087655164,-0.5657513,-0.33039057,-0.22003396,0.16641721,-0.3483715,0.15133074,-0.15879972,0.547412,-0.41441965,0.33552718,0.2521867,-0.2768545,0.11288025,-0.56767124,-0.13785826,-0.14435335,0.44527867,0.13524622,-0.17806011,0.5474926,0.08598993,0.14936478,0.16656618,-0.33037254,-0.21849942,-0.20508039,0.05848797,0.5789198,-0.047677007,-0.12995602,-0.18039541,-0.0075019896,0.28669038,0.26804027,-0.058290195,-0.2244252,-0.09469613,-0.24571566,-0.073459156,0.58270234,0.5815411,-0.08458104,-0.18530793,0.12647112,0.46841088,0.4426491,-0.39800987,-0.10928468,0.13750513,-0.50218177,-0.112350516,-0.027127007,-0.09024074,0.76797056,-0.09591179,0.010619174,0.8514218,-0.01817139,-0.19530219,0.003641059,0.1261,-0.011047636,-0.21176992,-0.29447687,0.33676776,-0.5150543,0.33415487,-0.24051535,0.66940504,0.2246231,-0.6416703,0.40038386,-0.6836559,0.120351344,0.020231927,0.4812583,0.6031427,0.47127494,0.49258086,0.68288,-0.17525572,0.29609504,0.012141245,-0.35954794,0.037370548,-0.24883716,0.22997506,-0.29794,-0.06436803,-0.2630745,0.12725507,0.16227879,0.5245622,-0.27735934,-0.09080416,0.39297402,0.9179592,-0.1900232,0.09544104,0.68809146,1.2060434,1.1521721,-0.056293353,0.7885792,0.05697022,-0.1896918,0.042504895,0.021329245,-0.7549818,0.12869309,0.21218388,0.08794723,0.20964678,-0.047302183,-0.004781475,0.35374367,-0.51455337,0.08589793,0.08190066,0.21874379,0.32074672,-0.051617566,-0.50041,-0.32638824,-0.11961647,0.0059394143,0.046963036,0.21700723,-0.24613583,0.24306388,-0.11803383,1.337565,0.124037325,0.0610057,0.21764058,0.82881355,0.3378272,-0.1961077,-0.054990783,0.36737943,0.33667752,0.16211687,-0.5324437,0.14145882,-0.41335663,-0.25438675,-0.13662986,-0.35206762,-0.23388255,0.10958269,-0.49669245,-0.22187042,0.00044325492,-0.2004056,0.38449728,-2.8465736,-0.19028436,-0.12868047,0.41692242,-0.15876694,-0.04449402,0.03313774,-0.57914346,0.17019232,0.2644821,0.57493967,-0.60757095,0.6089595,0.6537948,-0.5696924,-0.09225395,-0.56801325,-0.07280878,-0.007937183,0.4100864,-0.026017427,0.08427009,-0.16092758,0.23112917,0.8056395,0.2988502,0.16107687,0.55041915,0.43094194,-0.01541433,0.7266883,-0.07930892,0.45843956,-0.3944117,-0.14791489,0.35644138,-0.4304577,0.32398036,-0.31970528,0.05207756,0.6952998,-0.49773178,-0.9620604,-0.4947867,-0.050296903,0.9516154,-0.37695718,-0.46532285,0.3908368,-0.5530221,-0.029506743,-0.007947008,0.790292,-0.19894457,0.2871324,-0.4281009,-0.07880361,-0.18336378,0.23357886,0.106605805,-0.08165527,-0.3537198,0.8473463,0.08320466,0.6493642,0.233113,0.17954798,-0.10708328,-0.30374292,0.22716856,0.49951637,0.2500503,0.005999694,-0.3520095,-0.07033684,-0.12736326,-0.29724255,-0.04844441,0.72303724,0.64253736,-0.35614383,0.23114629,0.28184238,-0.06804828,-0.077345274,-0.115418255,-0.22534132,-0.046859983,0.086159825,0.39848268,1.2165767,-0.054784004,0.29356298,-0.08196547,0.46543726,-0.04787454,-0.44388637,0.44987914,0.58502555,-0.031734172,0.004685285,0.3272259,0.6042977,-0.43596005,0.44822732,-0.5774326,-0.22766693,0.68221635,-0.010158978,-0.41338494,0.18955278,-0.44678262,0.04497221,-0.5722434,0.31398168,-0.32096896,-0.51300615,-0.31376183,-0.29508138,-3.318103,0.12236025,-0.24572277,-0.100267716,-0.42704833,-0.041277364,0.22575748,-0.6296132,-0.5662906,0.13224356,0.29675943,0.7507429,-0.12128935,0.1151062,-0.327638,-0.32857165,-0.23483157,0.3987799,0.19562453,0.33857918,-0.23185503,-0.38760176,-0.23732917,-0.029604375,-0.47440204,0.17200224,-0.51528615,-0.38695803,0.032355737,-0.59362817,-0.4599237,0.4649241,-0.29081413,0.021067664,-0.23451476,-0.04923658,-0.32453954,0.061032128,0.09581836,0.18422861,0.12253627,0.023554875,0.24570997,-0.19500549,0.47809586,-0.071702644,0.50568146,-0.08868497,0.15684943,0.057801466,0.43493152,0.4351697,-0.42032805,1.1539093,0.33363983,-0.10595912,0.22606671,-0.13460194,-0.37436703,-0.69663095,-0.17393194,0.07490861,-0.20167808,-0.48914042,0.058216974,-0.32766506,-0.7144173,0.6063209,-0.028812269,0.20367885,0.16270308,0.025547503,0.34509435,-0.17937408,-0.09163233,0.08388006,-0.06294317,-0.523503,-0.16957861,-0.58577704,-0.5130153,-0.30323124,0.8937583,-0.26416144,-0.103209995,0.2170807,-0.5120825,0.090199776,0.23109193,0.12701832,0.2337486,0.56509805,0.16083057,-0.6586974,0.4175615,-0.26794013,-0.07319976,-0.564315,0.15901445,0.6081908,-0.8097043,0.6677766,0.2606232,0.16558664,-0.16991432,-0.6261017,-0.27451277,-0.05437093,-0.16251238,0.37154877,0.28310847,-0.96481556,0.3641177,0.013907808,-0.6873624,-0.72710514,0.34580836,-0.19871639,-0.502164,-0.15317781,0.30399624,0.07979837,-0.15483218,-0.020339916,0.34065482,-0.25923684,0.2531972,0.04582053,-0.20151539,0.11212909,-0.13121457,-0.20678349,-0.6500653,0.124400295,-0.31165096,-0.24704802,0.46736833,-0.16181229,-0.12720792,0.11214914,0.18822984,0.15969649,-0.10402894,0.105854,-0.110651575,-0.4453852,0.304863,0.53371483,0.60854894,-0.468276,0.616218,0.1156447,-0.14515413,0.26321954,0.11078143,0.12602954,-0.23927712,0.44443026,-0.044512253,-0.083194785,0.062363535,0.79679614,0.24569114,0.5270274,0.073276125,0.048503418,0.49017358,0.0032308921,-0.0131710125,0.06340966,-0.6260062,0.16010553,-0.26602855,0.074187204,0.55279154,0.2869848,0.27226087,0.0055577555,-0.14701438,-0.035406318,0.22578044,-0.16988198,-1.2617316,0.27443263,0.24466081,0.8938373,0.4898634,0.14813006,-0.21985197,0.86081725,-0.1966939,-0.016044216,0.43583456,0.16711627,-0.3193994,0.6992915,-0.45289245,0.6951421,-0.0369975,-0.19366415,0.32709238,0.09495545,0.5726071,0.64910847,-0.30773088,-0.14802179,0.135515,-0.2947273,-0.1144177,-0.35241297,0.01965093,-0.47496715,-0.3761269,0.80511826,0.5229786,0.28342196,-0.24450839,0.011584945,-0.15367655,-0.18793373,0.24863337,-0.13063532,-0.26519355,0.17551287,-0.6269964,0.027518844,0.60406333,-0.281963,0.17440887,-0.07174275,-0.20033985,0.23570351,-0.17313534,-0.022435738,-0.15592308,-0.8030278,0.20737155,-0.20398724,-0.57463264,0.5399112,-0.29303756,0.1697157,0.23751515,0.0061959177,-0.057845473,0.5406398,0.017918786,0.7216342,-0.08818028,-0.15292591,-0.29260194,-0.009380515,0.22887488,-0.20752935,0.12640812,-0.52443457,0.13699582,-0.54947525,0.5837677,-0.21668684,-0.30574137,-0.055957645,-0.14268745,-0.12900244,0.7678809,-0.022592494,-0.12455591,-0.016266057,-0.14461458,-0.40769753,-0.30726352,-0.35996637,0.17672175,0.22830267,-0.12973502,-0.16468075,-0.1883985,0.06979817,0.4616067,-0.1369621,0.7605286,0.0070392787,0.18734376,-0.08353323,-0.08548486,0.059785515,0.5936066,0.09312868,-0.13834488,-0.4803883,-0.38414046,-0.28552186,0.27841172,-0.00641893,0.27762112,0.12496754,0.022009691,0.86446315,-0.04309253,1.1557139,0.09704375,-0.35309473,0.3624433,0.52936417,-0.20396967,-0.0381187,-0.41536173,0.92037314,0.403625,-0.27024812,-0.22995788,-0.46787015,0.108232826,0.0032924477,-0.3368609,-0.048116386,-0.08135605,-0.37218443,-0.073575675,0.06832213,0.29879436,0.18174005,-0.18344645,-0.07094991,0.14738837,0.15847324,0.1788133,-0.5370441,-0.352447,0.45205888,-0.023790916,-0.12727964,0.052062873,-0.5221998,0.4552656,-0.48898697,0.24624439,-0.6562765,0.15656452,-0.40629148,-0.35866597,0.15715216,-0.06973538,0.42051712,-0.60567176,-0.08802236,-0.23512071,0.37530598,0.21717338,0.23647134,0.6272463,-0.1786746,-0.14370279,-0.09055037,0.74617845,0.96429294,-0.730725,-0.05036651,0.24698444,-0.47123718,-0.46658865,0.26105317,-0.4943427,-0.1284036,-0.050056856,-0.22869052,-0.6441713,0.085893236,-0.04506029,0.035196498,-0.050166845,-0.7566903,-0.18471913,0.29352263,-0.2633476,-0.27664393,-0.30452418,0.25661823,0.71664333,-0.046685237,-0.41008452,0.06027016,0.09105617,-0.09776876,-0.46792558,0.033015568,-0.20751189,0.28215632,-0.13723353,-0.34352055,-0.25597072,0.39783868,-0.6050332,0.070447,0.15820849,-0.3595903,0.14498794,-0.21309912,0.10440261,1.1350362,-0.50627786,-0.016584694,-0.4297628,-0.6448472,-0.89460474,-0.43544817,0.19775122,0.25343397,-0.030496141,-0.16654444,-0.10309732,-0.14690515,-0.26105133,-0.060684945,-0.5397424,0.39341238,0.0931414,0.51202893,-0.42638683,-1.0776672,0.07853652,0.11891975,-0.25575197,-0.5020603,0.52896595,-0.061771203,0.80905205,0.03762966,-0.023890072,-0.13672729,-0.28921178,0.16033803,-0.26494256,0.032162357,-0.63903916,0.15405728,562 -859,0.48200107,0.0021809042,-0.6145715,-0.19136804,-0.2533081,-0.15175608,0.005125334,0.62549156,0.30923533,-0.26852348,-0.15629894,-0.14982976,0.042206317,0.4307609,-0.1433898,-0.5414991,0.10931649,0.30316532,-0.5019536,0.54442215,-0.46095416,0.36717883,0.03344117,0.6099344,0.40217265,0.18581665,-0.03831787,0.15398024,-0.021969488,-0.25427997,-0.3161059,0.31791392,-0.49868402,0.12461803,-0.12863003,-0.39880502,0.040821414,-0.4555236,-0.39430746,-0.9045107,0.09233528,-0.56916183,0.574866,-0.055566058,-0.40351295,-0.19730626,0.4633505,0.46444583,-0.2199583,-0.04639332,-0.04793698,-0.033504836,0.048556965,-0.20399153,-0.4094982,-0.4634556,-0.59689856,-0.100160144,-0.46877614,-0.08147126,-0.33402762,0.2545477,-0.2990859,-0.095784985,0.0058359304,0.58086354,-0.2731268,0.15626891,0.08206991,-0.008675831,0.15019129,-0.5207758,-0.29466477,-0.19367218,0.0993801,-0.14594065,-0.45989326,0.30342177,0.23595482,0.21574517,-0.22438847,-0.14175077,-0.324255,-0.09900617,-0.30734167,0.5398553,-0.3215423,-0.5539347,-0.11601517,0.029040078,0.24944592,0.63299716,0.2880942,-0.132425,0.01900874,-0.011210263,-0.36274466,0.4281052,0.4092845,-0.37314996,-0.25002524,0.29096135,0.32284182,0.14354903,-0.30214763,-0.0014790446,0.040011063,-0.59905773,-0.16211806,-0.076689444,-0.17857683,0.5328539,0.032959815,0.14729317,0.6160593,-0.118628494,-0.24467109,0.18151605,0.21879031,0.016299346,-0.47464517,-0.40615845,0.29815164,-0.54059094,0.11352771,-0.097631745,0.7384772,0.10461276,-0.6950508,0.15655023,-0.6933405,0.037946317,-0.1486371,0.3583386,0.59894884,0.4478276,0.38254952,0.59726745,-0.3070782,0.0246673,-0.055942614,-0.17475943,0.04157042,-0.20228891,0.051711034,-0.50907046,-0.064447485,0.09111299,-0.21479662,0.4335592,0.53036743,-0.5381109,-0.3872359,0.2586099,0.80815053,-0.32964987,-0.29798952,0.66657233,1.0161492,1.0807484,-0.026803285,0.9055354,0.1633774,-0.17998107,0.18347764,-0.12772651,-0.5385268,0.24278027,0.23379236,-0.8269048,0.24208026,-0.052746225,-0.04818831,0.34380618,-0.1695729,-0.054314952,-0.035630148,0.13162737,0.08906302,-0.10765975,-0.43649194,-0.5560643,-0.08390541,-0.09431403,0.137202,0.34063685,-0.29253924,0.3811226,-0.05797283,1.7612771,0.16061157,-0.09415764,0.0909124,0.59106785,0.35843262,-0.18454303,-0.13925521,0.28748503,0.23461463,0.08668453,-0.40136588,0.15945044,-0.26519164,-0.3936267,-0.12015182,-0.41342553,-0.033369552,-0.25117084,-0.43735316,-0.25044617,-0.23237671,-0.27497724,0.57315993,-2.9049509,-0.1112532,0.05484577,0.30615094,-0.15270285,-0.52849865,-0.09477822,-0.5282701,0.39819348,0.1851501,0.4443777,-0.5439989,0.39718208,0.53831476,-0.5383039,-0.29573038,-0.6890333,-0.1317984,-0.035157595,0.13459428,-0.030125067,0.009410034,-0.08277861,0.15437703,0.57223815,-0.0051313937,0.12322555,0.39281297,0.33388296,-0.097897805,0.6785957,-0.036752965,0.58721894,-0.24038933,-0.22130118,0.23521674,-0.62241656,0.11727405,0.04373784,0.016764726,0.71632004,-0.5703691,-1.0386072,-0.5301871,0.04804385,0.8573416,-0.29887748,-0.089472346,0.41598487,-0.5388455,-0.25999215,0.012811247,0.6370689,-0.14693098,0.081889175,-0.5130608,-0.12609708,-0.022015354,0.21755813,-0.14740628,-0.09514421,-0.24162771,0.52852565,-0.032091677,0.51731414,0.054573815,0.1447346,-0.5773058,-0.4021574,-0.037303146,0.9435356,0.30257377,0.20722967,-0.18495543,-0.1939881,-0.63438874,0.05278046,0.17548132,0.6831255,0.7493823,-0.16821878,0.14794563,0.29636696,0.035071474,-0.03455325,-0.12979285,-0.33973292,-0.04861638,0.14116077,0.57401013,0.56505704,-0.0059120804,0.7001906,0.16606738,0.5010597,-0.33714664,-0.46610072,0.30196583,0.9912095,-0.25175813,-0.39177564,0.75853014,0.4960176,-0.25727844,0.47152734,-0.6164005,-0.42846498,0.6055266,-0.0355617,-0.3207299,0.22477005,-0.21376944,-0.008432806,-0.9084851,0.048229646,-0.3206614,-0.5405776,-0.42208302,-0.019003531,-2.9425533,0.32569212,-0.06112957,-0.15818138,-0.10823673,-0.13467272,0.06051207,-0.5966153,-0.52847713,0.0690509,0.19985704,0.8140497,-0.14959143,0.0014139563,-0.14085421,-0.45021543,-0.34176758,0.21919917,0.14053805,0.4135232,-0.04623286,-0.44643426,-0.15235959,-0.21721585,-0.50608665,0.15744783,-0.67575556,-0.5475495,-0.13064349,-0.8493889,-0.34982455,0.73701096,-0.39432588,0.06697188,-0.1540746,-0.022872373,0.06900125,0.15658762,0.21575846,0.06909337,0.03659576,-0.105951935,0.092085816,-0.29567906,0.10683658,0.036864918,0.4924328,0.12817067,-0.0055086613,0.3180293,0.62562615,0.6764388,-0.090368,0.94901323,0.3469068,-0.09630784,0.24784988,-0.2923806,-0.352072,-0.4170959,-0.10915748,-0.1386349,-0.25875196,-0.23677097,-0.1033667,-0.35353222,-0.66354024,0.6183165,0.06275052,0.2688795,-0.08380418,0.44508246,0.52233416,-0.24093223,-0.07673662,-0.12114366,-0.1892556,-0.43769893,-0.28647152,-0.5550992,-0.45923448,0.15750241,1.1510328,-0.412588,0.0061403713,0.069078706,-0.06316203,-0.026260234,0.29308692,-0.03701121,0.17225903,0.45641813,-0.29472694,-0.54083127,0.28471726,-0.3584926,-0.19092236,-0.52830344,0.29578647,0.63787895,-0.5967822,0.66525996,0.15078516,0.116355054,-0.27965513,-0.5614151,-0.07611143,0.23444963,-0.15249237,0.43483365,0.3114614,-0.97302085,0.33450374,0.290657,-0.39172506,-0.5817155,0.63425833,-0.045340087,-0.55655926,-0.41461623,0.4807581,0.324546,0.13251466,-0.11982524,0.15616788,-0.36748648,0.17281197,0.19479208,-0.0655712,0.20122094,-0.3527473,0.10753822,-0.79918003,0.35733774,-0.25376943,-0.52470416,0.35510674,-0.055533063,0.05021015,0.46255198,0.057490498,0.22795789,-0.44072703,-0.017888904,-0.28013182,-0.27081463,0.48985013,0.41708195,0.6443248,-0.32385388,0.569074,0.10703081,-0.16342038,0.06498044,0.08406957,0.35144734,-0.12435167,0.5505595,0.06368809,-0.38374305,0.3573265,0.48668396,0.13511221,0.21779908,0.13032503,0.17264622,-0.11599275,0.034750417,0.09652945,0.22948222,-0.5351729,0.008388202,-0.38681707,0.18090685,0.638051,0.08022218,0.13942946,0.09426406,-0.26353678,0.06781953,0.08903786,-0.13653187,-1.4163299,0.39053723,0.1884631,0.92998654,0.474057,0.22575788,-0.09738094,0.6256889,-0.17000504,0.26044777,0.34957537,0.14084816,-0.27258882,0.63542026,-0.6419928,0.7225879,0.017583018,0.024550488,-0.07873744,-0.07985247,0.6405832,1.0901198,-0.17146747,0.074097455,0.26189002,-0.29786935,0.18296434,-0.3501196,-0.09694827,-0.84156626,-0.2191881,0.6490125,0.48303393,0.33003232,-0.1263393,-0.13877797,0.16406424,-0.16825603,0.180676,-0.026638964,0.08622811,-0.023819834,-0.5296754,-0.057741046,0.59954685,-0.09944183,0.056243036,0.23782611,0.03444837,0.3674917,-0.09018248,0.1384583,-0.06321209,-0.60924643,0.049612958,-0.4161398,-0.45539021,0.42730293,-0.36670676,0.12672801,0.25179422,0.15788375,-0.28617278,0.5709126,0.3106033,0.7178939,-0.20205148,-0.12696746,-0.23596437,0.26257798,0.0070975516,-0.16121171,-0.05630302,-0.4023342,0.07284049,-0.58380866,0.4165757,0.13211201,-0.44731745,-0.22388236,0.06607282,-0.0070238397,0.39337143,0.0023152877,-0.12974797,-0.41026035,-0.20144837,-0.12139695,-0.19301444,-0.06558717,0.28772175,0.030217448,-0.14233278,-0.0049185134,-0.14018008,0.13435,0.34793243,-0.27155957,0.47597364,0.25131264,0.20028774,-0.20706157,-0.03645432,0.1320825,0.55913275,-0.23876412,-0.15927614,-0.318922,-0.004760901,-0.4602991,0.25366583,-0.12314042,0.551961,0.2022307,-0.254424,0.7839505,-0.073416084,1.2594881,-0.13319476,-0.46141148,0.11507376,0.6100981,-0.036120716,-0.05555442,-0.2979919,1.1442786,0.5340051,-0.07381743,-0.2418227,-0.40049025,-0.033574644,0.18773556,-0.32236502,-0.3508006,0.07754313,-0.49231216,-0.1801122,0.17500855,0.17539813,0.46380353,-0.07608023,0.18375826,0.58106834,-0.0028598506,0.17339875,-0.28127038,-0.014197116,0.20354868,0.40048108,-0.096406735,0.19668962,-0.49361503,0.34643683,-0.49977693,0.19952317,-0.37824854,0.3152294,-0.36035874,-0.44240868,0.21890318,0.08959759,0.30647913,-0.24703324,-0.24471207,-0.21012674,0.5458409,0.16741501,0.20985329,0.5305046,-0.27273598,0.0058891675,-0.10851574,0.5103124,1.0854573,-0.3316057,-0.36289212,0.44178668,-0.41425052,-0.6906288,0.2079066,-0.37706372,0.1996723,0.17841767,-0.20397002,-0.5613962,0.23626797,0.21696012,0.24769445,-0.055562317,-0.5501601,-0.048903476,0.17079578,-0.14221393,-0.14304426,-0.4220051,0.32726365,0.52982813,-0.10919046,-0.26749924,0.07607467,0.119747974,-0.09095186,-0.5771251,-0.01201811,-0.39969516,0.4067265,-0.021298388,-0.3993086,-0.17384432,-0.07521689,-0.5089087,0.23097181,0.24741435,-0.14257406,0.27381286,-0.36504436,-0.077638604,1.0501047,-0.2928867,0.07404333,-0.25170973,-0.55063194,-0.5020952,-0.45616433,0.38246512,0.008136444,-0.14821549,-0.7559014,-0.0028388996,-0.119395964,-0.3942745,-0.048469465,-0.2854847,0.31992385,0.09811439,0.39103726,-0.0040053427,-0.9900612,0.25627628,0.044564564,-0.38609254,-0.67373735,0.4877971,-0.18457323,0.92987126,0.15497571,0.087821,0.5584927,-0.32592404,0.028183505,-0.23507385,-0.068234794,-0.58878654,-0.068096064,564 -860,0.25823024,-0.0054817796,-0.31073985,-0.1282332,-0.53063196,0.098712236,-0.13768496,0.19586997,0.35281312,-0.3303991,-0.35753158,-0.2027952,-0.0614866,0.37524995,-0.059425186,-0.33439985,0.01843354,0.24748372,-0.9776656,0.41707468,-0.4511803,0.38925436,0.16358708,0.38680103,0.36891553,0.20716377,0.22657502,-0.06327938,-0.18544757,-0.12337165,-0.4871991,-0.04761679,-0.41724634,0.24545519,-0.35590878,-0.35562134,0.058256403,-0.6241742,-0.17073442,-0.7171857,0.19847433,-0.8835192,0.6049927,-0.13321559,-0.08705968,-0.19224383,0.6554646,0.3232893,-0.115042806,0.008796572,0.23295295,-0.23101492,-0.1635356,-0.28584042,-0.41337362,-0.33938995,-0.447675,-0.13953207,-0.5045246,-0.3512545,-0.24855019,0.24508882,-0.24257475,0.025078556,-0.04114282,0.3685042,-0.27051207,0.26527277,0.16135986,-0.25900757,0.020663058,-0.6120275,-0.08952093,-0.18964142,0.5366236,-0.019113556,-0.2736672,0.51202637,0.3696598,0.28516594,0.044417173,-0.18729381,-0.28534374,-0.2483632,-0.0043518147,0.5280309,-0.17077471,-0.22050191,-0.13002215,-0.049407925,0.48407856,0.5518082,0.14425395,-0.23416723,0.080054775,-0.2766187,-0.18956272,0.4528474,0.32641125,-0.29879698,-0.30342254,0.24311435,0.39687613,0.23265205,-0.32255694,-0.060955364,0.11597607,-0.51807886,-0.07614499,0.16039574,-0.1768011,0.50186205,-0.053271938,0.28908873,0.69612265,-0.17636389,-0.036957502,0.061385006,0.15183687,-0.1547309,-0.20964746,-0.3031436,0.12622581,-0.5347865,-0.07818857,-0.1185872,0.8007999,0.07941147,-0.5434696,0.3490232,-0.6021107,0.082380444,-0.034165602,0.3786324,0.68019223,0.59144366,0.353963,0.7577413,-0.17715369,0.14495932,-0.011536022,-0.14777309,0.0076204143,-0.3746791,0.3109347,-0.57546407,0.0053631566,-0.15438265,0.16140334,0.23710613,0.633457,-0.4011134,-0.26010242,0.23014982,0.8683292,-0.32194284,-0.22905111,0.68303823,0.9149451,1.0769244,-0.023926064,0.9189613,0.25986496,-0.26103437,0.091534674,-0.21474533,-0.6041346,0.15189706,0.24099092,-0.45646593,0.11002412,-0.13529317,0.0075673214,0.1327215,-0.35396242,0.037562262,0.03688248,0.11725026,0.16394554,0.06420192,-0.3415694,-0.5163624,0.017469486,-0.2062536,0.21933424,0.17720212,-0.39670947,0.37583104,-0.090989865,1.5993797,0.11880535,-0.0224234,0.022486366,0.6486918,0.18912964,-0.18481348,-0.30953345,0.27895167,0.20060772,-0.16484247,-0.46721926,0.18637036,-0.3449765,-0.2901685,-0.11037168,-0.4034435,-0.43979332,0.103204496,-0.25628152,-0.3194333,-0.06187545,-0.54581636,0.42891335,-2.7126179,-0.30161834,-0.0981748,0.34157494,-0.2531968,-0.24765997,-0.28986952,-0.6425767,0.30612472,0.006333865,0.48881778,-0.55897355,0.5132975,0.50634736,-0.5863978,-0.41563976,-0.7030992,-0.06475097,0.05423255,0.1434789,-0.13699414,-0.044013437,-0.04895998,0.12220549,0.6681755,0.06836963,0.1684355,0.53121966,0.449329,0.19090569,0.6902167,-0.13401768,0.7291228,-0.49599814,-0.21597487,0.31840268,-0.4123787,0.23775528,-0.20236863,0.07356844,0.83393794,-0.5167351,-0.79294854,-0.6472686,-0.23769474,0.8888264,-0.35085425,-0.349713,0.2178235,-0.4661909,-0.12578608,-0.024906596,0.92135566,-0.11419582,-0.01660107,-0.5062974,-0.023057967,0.03485409,0.28107682,-0.006200619,-0.08618826,-0.17954683,0.49253142,-0.025392896,0.7263984,0.10639852,0.15037341,-0.62482285,-0.22308187,0.1607898,0.844762,0.28436863,0.01671271,-0.06704881,-0.11589736,-0.42964792,-0.30168155,-0.0013750693,0.48225865,0.6750388,-0.05484884,0.16897255,0.43082008,-0.024846142,0.03192834,-0.15109451,-0.19121206,-0.09056631,0.05879778,0.3980206,0.54325,0.08014701,0.6848939,-0.15006067,0.3121196,-0.2936913,-0.52875346,0.5143781,0.32810012,-0.22363384,-0.04304226,0.5605584,0.5250395,-0.33987582,0.44225034,-0.6626106,-0.4356803,0.6832685,-0.117983945,-0.4771184,0.14468943,-0.29648054,0.18400635,-0.54449105,0.114556246,-0.2689784,-0.37618962,-0.2739122,-0.048024714,-2.2961445,0.17957099,0.020422151,-0.15493026,-0.21692352,-0.07380877,0.022508642,-0.46572125,-0.66261876,-0.00030629337,0.2006138,0.83510685,-0.079145044,0.17381698,-0.1552536,-0.343282,-0.21024977,0.26396397,-0.0299372,0.40136102,-0.21357785,-0.4741015,0.059035074,-0.08390174,-0.5543576,0.07392393,-0.7324784,-0.35631537,-0.08626909,-0.5572378,-0.40379074,0.69644946,-0.67790085,0.07189011,-0.37543392,-0.008642807,-0.08801717,0.14755936,0.20094447,0.14607418,0.093616486,-0.02344128,0.07430217,-0.2907093,0.44958344,0.021361709,0.41487584,0.16989489,0.28556547,0.31187382,0.33767867,0.7614173,-0.25764322,1.1703509,0.22137345,-0.16103469,0.18072437,-0.32595375,-0.26395097,-0.3540381,-0.06504988,0.10951666,-0.38876137,-0.46837226,0.12544698,-0.20759213,-0.7383867,0.6720876,0.15925832,0.28260037,-0.037292574,0.29894024,0.29613945,-0.32296786,0.11492121,-0.10109645,-0.120251335,-0.616961,-0.35808972,-0.51215655,-0.42289397,0.08553579,1.0218688,-0.437989,0.11648142,0.08561487,-0.44026437,0.0952655,0.11259979,0.022780886,0.3391533,0.4239421,-0.09070917,-0.70292777,0.24496996,-0.21263118,0.08307799,-0.43196118,0.15678422,0.7213092,-0.70009273,0.4357319,0.26313874,-0.075252414,-0.34425005,-0.45807353,-0.16661613,-0.15130274,-0.17811604,0.18998529,0.23074335,-0.7624492,0.40341768,0.15355451,-0.47634205,-0.7598405,0.2912147,0.049279016,-0.31992802,-0.10944763,0.31436434,0.3659153,-0.05054262,-0.16056736,0.15660281,-0.4011813,0.41154203,0.06318383,0.018528923,0.24967487,-0.3549117,-0.45070162,-0.7126245,0.2540785,-0.26520762,-0.44619927,0.4998012,0.045399535,0.12752524,0.4974135,0.15788046,0.1301911,-0.20900501,0.05109474,-0.06262896,-0.25388736,0.1426229,0.28870827,0.57996786,-0.41428447,0.535438,0.016309762,-0.11775548,0.32689187,-0.07163912,0.19353867,0.07971945,0.34846187,-0.10735322,-0.51255137,0.31924275,0.7831896,0.20412719,0.06895956,0.020685077,0.093402185,0.17159472,-0.07669,0.023453882,0.15561211,-0.59572184,-0.041159812,-0.33722243,0.19738452,0.41223285,0.18309946,0.30276465,0.08416191,-0.09203496,-0.038045865,-0.018836617,-0.18493421,-1.2303038,0.33713803,0.11118994,0.944393,0.406199,0.11228868,-0.24456763,0.8929077,-0.22233815,0.22497405,0.42072463,-0.061330978,-0.2582496,0.7283048,-0.49310076,0.73136187,-0.020287193,-0.043473843,0.14992349,0.09391647,0.37268457,0.95299417,-0.25250748,0.12455634,0.29408833,-0.2983587,-0.0002825459,-0.23410757,0.008699338,-0.68855745,-0.32707325,0.70102805,0.21219146,0.3521547,-0.12598458,0.032972354,-0.09392885,-0.25750068,0.1305412,0.05913195,0.10234391,0.00090964016,-0.57420117,0.14544316,0.52293545,0.0146642,0.1862278,0.011459991,-0.16772394,0.08863729,-0.29848436,0.13580243,-0.12961632,-0.67667454,0.14164111,-0.38782108,-0.5002505,0.31466812,-0.25059018,-0.020694142,0.17973834,-0.022564203,-0.03028071,0.74875516,0.47288653,0.69726664,-0.1476732,-0.07542882,-0.052025538,0.19896054,0.11331401,-0.27478704,0.24991226,-0.31104735,0.07458652,-0.6492066,0.6775937,-0.036158975,-0.4455247,0.11630996,-0.15945777,0.00028865537,0.5589015,0.07378987,0.005622556,-0.13772531,-0.13175459,-0.49607894,0.0103346305,-0.32941708,0.091230966,0.17317204,-0.03642741,-0.30745724,-0.31452474,-0.17896797,0.39253995,-0.24248414,0.5604293,0.19083823,0.21693122,-0.14988579,0.23133814,0.10524869,0.62236166,0.0569258,-0.007971545,-0.47920677,0.04516394,-0.27868384,0.49443832,-0.08905927,0.21384867,0.08776941,-0.4134059,0.8299207,-0.28918073,1.1124634,0.1524886,-0.3249514,0.02017796,0.4582343,-0.22423065,0.0475485,-0.23680288,0.7874656,0.42201528,0.06726069,-0.05548039,-0.33245608,0.014983982,0.34364796,-0.40507698,-0.26788193,0.08618095,-0.3817648,-0.2972714,0.14786811,0.08336113,0.35588503,-0.24299705,0.22773139,0.2863544,0.11021358,0.29314044,-0.42977008,-0.080676846,0.37224922,0.39469588,-0.12084353,0.1622778,-0.4926965,0.40841427,-0.7332695,0.15202507,-0.5074966,0.21112196,-0.40459976,-0.2684187,0.20977467,0.25601137,0.4292941,-0.15263006,-0.291073,-0.09353677,0.44021282,-0.026722157,0.31684825,0.5382977,-0.24534196,-0.08915051,0.008457974,0.5089197,1.0657443,-0.32209975,-0.05979239,0.23759699,-0.43315184,-0.644526,0.56857187,-0.4046204,-0.1247786,0.18212466,-0.28916597,-0.29679096,0.2849544,0.2818375,0.2634518,-0.12206372,-0.5066809,0.08727715,0.27398905,-0.17033845,-0.28714973,-0.35976687,0.24780197,0.5091956,-0.009010454,-0.19589283,0.0257562,0.4352012,-0.3153819,-0.49694106,-0.08846717,-0.20677757,0.30268937,0.059855524,-0.3644335,-0.27508694,0.007480444,-0.521754,0.08933615,0.056710023,-0.50877136,0.05130738,-0.20833533,0.04544274,0.97905344,-0.14644688,-0.1836407,-0.2575644,-0.5809434,-0.7220559,-0.37104496,0.05089773,0.18201791,-0.24972576,-0.37798914,-0.05062908,-0.20553267,-0.3981746,0.07186287,-0.428159,0.323356,0.19253449,0.38934532,-0.22662328,-1.0194508,0.13510185,0.11419168,-0.11598292,-0.5880143,0.4520227,0.016768664,0.980123,0.12828052,-0.2157924,0.2805545,-0.18390381,0.15260296,-0.3501719,0.022743225,-0.68834496,0.15041615,574 -861,0.30219248,0.032740355,-0.57263374,-0.113830246,-0.11907914,0.045354888,-0.35498407,0.42685422,-0.100812264,-0.7324199,-0.040941343,0.15494521,-0.24596278,0.4225045,-0.19803302,-0.21927615,0.11742101,0.14491847,-0.3810638,0.31527343,-0.5702026,0.3038402,-0.024952898,0.18863954,0.104591995,0.2236008,0.052614544,-0.05694942,-0.21632957,-0.40829337,0.073017746,0.006499062,-0.4530114,0.30511555,-0.1026449,-0.41034088,0.022606641,-0.44654906,-0.14235868,-0.6170375,0.23926197,-0.84487516,0.5220199,-0.01964905,-0.19399925,0.22936265,0.18397641,0.4123399,0.19468375,0.045400634,0.39578226,-0.21849303,-0.16685958,-0.032493677,-0.12442968,-0.68828315,-0.54211235,-0.078339,-0.5880217,-0.19897379,-0.21157949,0.21471597,-0.21438967,-0.073673025,-0.20329024,0.25657162,-0.3386298,-0.18928559,-0.053782914,-0.09864169,0.3958584,-0.9161554,-0.16350104,-0.078790374,0.3721765,-0.4509213,-0.14925498,0.26918682,0.4699284,0.43155074,-0.01620713,0.021750152,-0.41089502,0.004451657,0.12542991,0.49717107,-0.45949635,-0.30743745,-0.1172573,0.005266329,0.49177936,0.14262988,0.15379463,-0.46990478,-0.03556059,0.16055064,-0.37877992,0.37594652,0.3330767,-0.23336935,0.013186623,0.5264738,0.5211142,0.11425584,-0.17707695,0.1298602,-0.035741854,-0.45558667,0.03554021,0.31117454,-0.059826914,0.3441632,-0.05505633,0.3331989,0.5214701,-0.12571615,-0.078859486,0.20222266,0.045953017,-0.12512973,-0.048211206,-0.3082071,0.18918492,-0.502309,0.20649488,-0.18129091,0.7330806,-0.060495347,-1.1342822,0.28356692,-0.4511274,-0.052011877,-0.13823624,0.5203658,0.6357318,0.40174174,0.025357304,0.7199967,-0.5200818,0.06721691,-0.039672773,-0.24784416,0.1912853,-0.078132875,-0.1446269,-0.5309412,-0.068427846,0.03690228,-0.10239658,0.075964324,0.44600162,-0.501507,-0.009885441,0.18091191,0.53182554,-0.29778162,-0.09875361,0.6036437,1.1265198,0.7732788,0.2713559,1.1201756,0.043088824,-0.0560393,0.040609706,-0.2180811,-0.6285297,0.19215465,0.51911145,-0.39079273,0.2231725,0.23535101,0.20588326,0.27391094,-0.23792373,-0.20412649,-0.16483603,0.17188536,-0.13261057,-0.49972034,-0.38686523,-0.12973818,-0.012418668,0.07194845,-0.140785,0.056405827,-0.27355352,0.21523081,0.32363817,1.4574574,-0.32257915,0.14360307,0.10221439,0.28885296,0.06739842,-0.2939125,-0.07847848,0.06831955,0.38971683,-0.0815082,-0.38773453,0.015781537,-0.07574562,-0.65360117,-0.2304654,-0.116635,-0.19396593,0.083044894,-0.2519513,-0.107024044,0.05616991,-0.5213116,0.47657117,-2.8450756,-0.104746126,-0.25749773,0.35807535,-0.1731189,-0.5212898,-0.07466748,-0.22620846,0.5381376,0.37752545,0.4024895,-0.5151203,0.30565527,0.42257753,-0.4260827,-0.11133003,-0.6797776,-0.13639349,-0.09618566,0.23672338,0.13720475,-0.24978487,0.056053545,0.09865583,0.44352964,-0.24025255,0.30889595,0.40827528,0.14138196,0.08299465,0.5470144,0.0457962,0.5922776,-0.07783704,-0.3110715,0.34000096,-0.2819828,0.06238367,0.10270702,0.27983195,0.266503,-0.3506744,-0.8143241,-0.7571896,-0.50258887,1.1456159,-0.054500367,-0.43271694,0.40057445,0.04186408,-0.59549904,0.032951456,0.33652034,-0.20274425,0.004902164,-0.9949359,-0.15065674,-0.25376788,0.35955152,-0.08028152,0.088865936,-0.6157756,0.6574417,-0.21829696,0.43263006,0.46536162,0.23652224,-0.46776107,-0.2710885,-0.15703905,1.2499146,0.43738642,0.0048454055,-0.06511658,-0.12613557,-0.37221336,-0.13419199,0.23248135,0.31544128,0.4965012,0.04871805,-0.07520252,0.14306812,-0.18500853,-0.036116228,-0.0718621,-0.4345669,0.0039739385,0.12099355,0.5199103,0.2843349,0.09899839,0.68307227,-0.23972757,0.12622239,-0.2372822,-0.41364312,0.51535565,0.5334041,-0.1139498,-0.33636197,0.6085065,0.38967252,-0.07655604,0.3849618,-0.53380543,-0.26818025,0.34766114,0.14851253,-0.44020918,0.028400898,-0.386044,0.2336936,-0.96683645,0.38487282,-0.46716943,-0.7538455,-0.5239908,-0.19303997,-2.8579285,0.1278917,-0.055018764,-0.48985147,-0.09867165,-0.23130132,0.4457922,-0.6272373,-0.6602682,0.07122559,0.042390022,0.6562627,0.018676097,-0.09678813,-0.14294375,-0.22935732,-0.10345792,0.27955517,-0.016625373,0.12905662,-0.0123056695,-0.28027824,0.043513983,-0.07701044,-0.27086964,-0.041576713,-0.6927681,-0.38201916,-0.16233885,-0.39973387,-0.43049523,0.73857284,-0.71071297,-0.10525676,-0.22812855,0.069233805,-0.018586734,0.4986876,0.06881904,0.12612455,0.17673862,0.0014785329,-0.21984403,-0.25746855,0.15306671,0.07360981,0.35418466,0.484785,-0.3906902,0.26863578,0.6857503,0.7030635,-0.1135857,0.85993284,0.61710846,-0.13458182,0.08670653,-0.38421407,-0.08543498,-0.51128215,-0.27653953,0.018885583,-0.3716009,-0.4284943,-0.05402948,-0.21523339,-0.73603773,0.5581444,0.025550336,-0.13967298,0.042290423,0.29863125,0.16295333,-0.080199,-0.13248341,-0.05325463,-0.092687525,-0.4280475,-0.36929712,-0.70828027,-0.38542464,-0.17766844,1.1508147,-0.053917196,0.3459004,0.27878284,-0.25743428,0.11388747,-0.016451731,-0.039352044,0.054493535,0.27133128,-0.008467565,-0.6579959,0.17229952,-0.19498439,0.00632675,-0.53127545,0.06948486,0.83408546,-0.36245298,0.42350164,0.3689538,0.18042691,-0.17804962,-0.5497578,-0.07118143,0.03358864,-0.47061506,0.44842955,0.092624925,-0.6148403,0.54998475,0.41295633,-0.17806797,-0.592199,0.50427586,0.059063178,0.25995567,0.19625469,0.25358072,-0.046958435,-0.11620317,-0.08547137,0.25785816,-0.3602674,0.4800547,0.35749552,0.16458876,0.295434,-0.23599143,-0.16775715,-0.61076075,0.027787978,-0.22284858,-0.22642088,0.09569331,0.089551784,0.21152397,0.39008448,0.16906874,0.37241518,-0.52522594,0.20880015,-0.14403331,-0.16541065,0.11106884,0.51245826,0.4277824,-0.44437337,0.46757424,0.054595888,-0.16451637,-0.4469541,-0.195594,0.64051,0.1450715,0.08662363,-0.019542307,-0.1837612,0.25042543,0.8783253,0.21703386,0.3395227,-0.06983032,-0.2137001,-0.03527352,0.035341103,0.31229612,0.09697213,-0.6011966,0.102953255,0.084170066,0.12098982,0.4494268,-0.019191876,0.0693987,-0.26343146,-0.27054712,0.115300536,0.14929356,-0.07784876,-1.1396527,0.6253842,0.17368108,0.5377443,0.41624352,-0.025376013,0.22495466,0.7102804,-0.298569,0.13041945,0.050473947,0.05006258,-0.3309609,0.50602984,-0.7733233,0.21843176,0.061535086,0.0073364205,0.001087139,-0.18596244,0.27825856,0.952553,-0.19966526,0.25277588,-0.101893395,-0.22776377,-0.005410557,-0.18120147,0.080682404,-0.31809953,-0.26565534,0.8318951,0.40995106,0.3812758,-0.11596168,0.008968045,0.12113797,-0.063318096,0.17492028,-0.124299444,0.09550082,0.013585784,-0.39305198,-0.14758915,0.53736156,0.16548072,0.067119814,0.18062158,-0.37341914,0.36261442,-0.036380086,0.057944696,-0.13728614,-0.45951948,0.12314335,-0.19217055,-0.113657676,0.059666146,-0.32635266,0.21661772,0.101578765,0.045486737,0.031245759,0.39485064,0.39840722,0.6699627,-0.09311237,-0.016893512,0.011658654,0.07378573,0.012750402,-0.018718971,0.022954633,-0.36632323,-0.118819594,-0.78978604,0.27212057,-0.1731426,-0.2855055,0.24852371,-0.007114686,0.13563913,0.32590175,-0.26137912,-0.08902409,0.08415613,0.16815786,0.114032425,-0.2650918,-0.35761532,0.13387771,0.08237847,0.1248489,-0.24724014,-0.01429078,-0.36594677,0.13550262,0.18675031,0.55878896,0.36313602,0.21260695,-0.460695,-0.038872298,0.021330168,0.38534388,0.039557297,-0.112633966,-0.07331649,-0.2916304,-0.22958393,0.21694808,-0.18484557,0.26548836,0.13853733,-0.31433043,0.6515585,-0.040792663,1.3847398,0.013595429,-0.36757132,-0.024309248,0.37439954,-0.038446516,0.092106104,-0.18618685,0.80466366,0.5709358,0.040412765,0.09863452,-0.3588543,-0.38199767,0.2024188,-0.18846714,-0.118395984,-0.08553908,-0.7760691,-0.43426538,0.24271144,0.098027386,-0.20814924,-0.027577639,0.12349441,0.36697468,0.045598015,0.35474452,-0.4437271,0.05892547,0.2497197,0.3103014,0.024968931,0.028960312,-0.6372349,0.41333666,-0.7446491,0.108447455,-0.31023243,0.22652476,0.09933821,0.0050519607,0.048697796,-0.07204273,0.39331353,-0.115893126,-0.38132623,0.064821355,0.6904111,-0.002153312,0.25172064,0.5963605,-0.28150097,0.37798497,-0.08118294,0.23604345,0.88174987,-0.3134933,0.16205512,0.3744571,-0.12171636,-0.43027434,0.18870996,-0.41599107,0.120686375,-0.035528604,-0.36742368,-0.20040949,0.2846526,0.32676485,-0.012692906,-0.1108276,-0.48044404,-0.07404914,0.35713437,-0.4350067,-0.29667848,-0.19706553,0.1751446,0.54171723,-0.39719534,-0.5581141,-0.058444012,0.46365058,-0.22189458,-0.37519288,0.1398771,-0.19894798,0.37426028,0.14190818,-0.44273862,-0.15677114,0.05841777,-0.33154374,0.0013367584,0.1953785,-0.34482744,0.0340822,-0.20322023,0.04758664,0.6599709,0.06346003,0.05893289,-0.61920005,-0.44310966,-0.6823299,-0.2674261,0.10048727,0.28867948,-0.02207415,-0.6334181,0.018299228,-0.15954432,0.012072225,0.06075111,-0.37894812,0.5181883,0.10986873,0.5665858,-0.4139539,-0.65477103,0.08647397,0.21145372,0.22176386,-0.5570198,0.4619863,0.06256775,0.91646314,0.15630506,0.030639678,-0.03839536,-0.5441462,0.34540096,-0.08666662,-0.18639122,-0.8216209,0.06122795,582 -862,0.29806644,-0.05422237,-0.51852703,-0.0812731,-0.2624065,-0.08482114,0.07613993,0.5427373,0.38202783,0.016778419,-0.21389477,-0.12825187,-0.112879656,0.27716598,-0.010108518,-0.61563015,-0.21679907,0.35066864,-0.540158,0.55184895,-0.24899113,0.24221991,-0.006512634,0.5286308,0.20569499,0.21960258,-0.00859576,0.043324333,0.019535035,0.02224064,0.0030903418,0.27600458,-0.6705943,0.22099693,-0.22967172,-0.27626732,-0.24540143,-0.5367616,-0.47417966,-0.74744684,0.48459673,-0.6504323,0.6275274,0.09753261,-0.330138,0.1266718,-0.07692316,0.28011164,-0.18745433,-0.11915647,0.07121255,-0.084748805,0.026808077,-0.14396842,-0.21790709,0.06977204,-0.54658335,-0.013618104,-0.16269928,0.046385825,-0.08156943,0.12927142,-0.24272652,0.072144635,-0.17957209,0.5885444,-0.28026038,0.32058167,0.25408384,-0.012131549,0.17320581,-0.49262056,-0.09885349,-0.19075687,0.19435962,-0.08930323,-0.38340044,0.3724608,0.14922686,0.49196708,-0.14402367,-0.14961076,-0.16646299,0.21826208,-0.041872825,0.5057647,-0.3253956,-0.08253864,-0.12012141,0.04996911,0.18940298,0.251894,0.018930972,-0.36872903,-0.027729385,-0.2692935,0.13671587,0.13681905,0.4491253,0.045300346,-0.22393936,0.2112689,0.3021005,0.2379431,0.034304265,0.13394517,0.0047690845,-0.53576916,-0.22081584,-0.048401758,-0.2810233,0.57992536,-0.075710095,0.039055046,0.47316027,0.06807274,-0.12352889,0.018181294,0.27499226,0.1086031,-0.41200718,-0.3024587,0.3547237,-0.32868096,0.2591864,-0.05168357,0.52582985,0.19986022,-0.75203615,0.31944665,-0.6057432,0.21166086,0.006178595,0.479717,0.9805961,0.38611734,0.362703,0.81450623,-0.52512044,0.21575136,0.15566264,-0.24478216,0.12564217,-0.05715451,-0.030418262,-0.5303508,-0.20786428,-0.09764052,-0.44232735,0.2702125,-0.10315976,-0.52812284,-0.09480091,-0.058631677,0.67391664,-0.25677672,-0.038249403,0.8568523,0.9992117,1.0156474,0.06339091,1.1978167,0.17653792,-0.15350725,0.25195205,-0.1705914,-0.8926982,0.124248706,0.2516361,-0.67099494,0.39853796,0.12276716,0.087656535,0.37432864,-0.6366284,-0.019197961,-0.096428186,0.18791471,-0.05818973,-0.112557925,-0.4685382,-0.41651225,-0.07064372,0.14928797,-0.056635488,0.19996405,-0.2142061,0.45523167,0.080881886,1.44815,0.09859986,-0.061825063,0.07792909,0.16864729,0.16524823,-0.26573518,-0.350378,0.23604025,0.36764765,-0.012980133,-0.47261068,0.035850655,-0.13152398,-0.19912477,-0.1705234,-0.14543636,-0.0057988637,-0.087352455,-0.37009454,-0.37622377,-0.09644326,-0.32492122,0.55898094,-2.6123512,-0.09822162,-0.06664255,0.46260837,-0.18743901,-0.33320957,-0.30510294,-0.4191322,0.22938831,0.28239587,0.39238772,-0.5907456,0.08012802,0.15260671,-0.5989047,-0.07404975,-0.5996134,-0.12020755,0.26213336,0.08084076,0.005647067,0.18481505,-0.071577154,0.13165738,0.35295033,0.07477974,-0.01623126,0.28538924,0.39864993,-0.010204986,0.29674792,-0.077037066,0.50588924,-0.27575323,-0.18901469,0.37850308,-0.36447656,0.32000348,0.013025862,0.10372943,0.526388,-0.53551906,-0.6906869,-0.5396233,-0.30126488,1.1229295,-0.235355,-0.30767617,0.28497997,-0.58854336,-0.23593532,0.054624204,0.46941617,-0.15614486,-0.31557098,-0.8245477,-0.24515037,0.038169958,0.2788642,-0.011061902,-0.038628165,-0.32056847,0.61064345,-0.16469763,0.33302185,0.5434443,0.11619679,-0.14120252,-0.5835592,0.036130443,0.56855017,0.49019778,0.07411745,-0.19671667,-0.03765912,-0.21506213,-0.10090474,0.08642518,0.79457134,0.579398,-0.28088567,0.10953734,0.33552352,-0.024038194,0.044376567,-0.017956823,-0.25475565,-0.17060488,0.006739998,0.60307825,0.90027994,-0.18051231,0.2241826,-0.047928736,0.2731903,-0.010203577,-0.59954756,0.42561236,1.086068,-0.08886073,-0.25980422,0.58029586,0.22884925,-0.27062407,0.4268311,-0.48563334,-0.09506913,0.5518792,0.060009908,-0.41925204,0.030421535,-0.1921658,0.068281434,-0.9453135,0.26456597,-0.120551966,-0.6434235,-0.7105666,0.033180088,-2.2533538,0.06619302,-0.34668848,-0.037127543,-0.07827895,-0.08726106,0.12273321,-0.49629736,-0.84274673,0.1657746,0.08373344,0.42179716,-0.1572351,0.12082812,-0.05039801,-0.32876468,-0.23467036,0.13342677,0.43603835,0.28946528,-0.106704146,-0.39400387,-0.21518259,-0.13922401,-0.47247562,-0.049665857,-0.6167359,-0.5441602,-0.14372705,-0.83809525,-0.1356528,0.6011007,-0.3922193,-0.1763543,-0.21116537,-0.06702409,-0.120825656,0.21981756,0.03416792,0.30898866,0.091290854,0.005429335,0.03642528,-0.1356677,0.21969128,0.06999258,0.31253937,0.30404282,-0.20958996,0.3509216,0.44896033,0.81849915,-0.20682824,0.75348026,0.61759555,-0.021638542,0.12640576,-0.39047757,-0.3189117,-0.57446426,-0.26276657,-0.1944499,-0.39154348,-0.2625365,-0.10804441,-0.4286007,-0.9316154,0.42044544,-0.14711475,0.17498583,0.07616825,0.004393319,0.5027335,-0.18139625,0.12300986,-0.14947516,-0.2221998,-0.44570288,-0.32171035,-0.38086963,-0.571668,0.13207805,1.2090935,-0.018035015,0.14402874,0.15332936,-0.39765093,0.027096406,0.029114842,-0.09222958,0.2628158,0.52062017,0.021161282,-0.51583415,0.19791155,0.15340531,-0.14520341,-0.79342014,0.21312527,0.63622826,-0.5560749,0.763606,0.19471103,-0.03659608,-0.083870836,-0.65907013,-0.32763922,-0.008764337,-0.17319286,0.44241726,0.4138124,-0.39207697,0.33175656,0.1731919,-0.15283914,-0.7123863,0.3863947,-0.010410234,-0.19227774,0.040755782,0.34881195,-0.17631555,-0.059425574,0.121014304,0.42570308,-0.04590492,0.26798716,0.22322355,-0.10553219,0.032162715,-0.1616649,0.002099216,-0.79579943,0.24237688,-0.43538156,-0.34579146,0.31889763,0.102246635,0.105800055,-0.0041217827,0.3231163,0.3769972,-0.20409657,0.12760638,-0.17093533,-0.35083798,0.17748974,0.44361028,0.36217847,-0.4934592,0.39947894,0.021538762,0.09195647,-0.037669796,0.12584893,0.43533838,0.027357548,0.1624357,0.07945625,-0.18942113,-0.06058188,0.6006213,0.064601436,0.17561857,-0.081601135,-0.010519718,0.26719028,0.05693336,0.18020882,-0.1707837,-0.3735148,0.14816777,-0.15298383,0.16265507,0.3840104,0.15077265,0.19587462,-0.22331886,-0.4060849,0.11336588,0.15238042,0.18505575,-1.3299209,0.2599952,0.07602356,0.76184154,0.53927046,0.13550664,0.038864527,0.43522492,-0.23190403,0.115549,0.48568523,-0.076403685,-0.4806575,0.3877431,-0.6429285,0.5757816,-0.004272852,-0.03462248,0.14572361,0.1985784,0.37447092,0.7197462,-0.10291376,-0.04002404,0.0034736346,-0.18543018,0.018161252,-0.37501636,0.078541584,-0.60400057,-0.37587407,0.6551562,0.56921035,0.20727538,-0.34353817,0.014299248,0.055088717,-0.10344408,0.19610111,0.070821494,0.08311907,0.073445,-0.5828818,-0.1053962,0.56066513,-0.02101407,0.018818637,0.06676749,-0.080555364,0.3068305,-0.15601218,-0.18371934,-0.21254392,-0.8394777,-0.019496182,-0.3685896,-0.16427459,0.35477233,-0.27279556,0.1706144,0.175851,0.1584226,-0.5017537,0.40034226,0.10342241,1.0023832,-0.082815506,-0.052201647,-0.25908366,0.4400313,0.27869728,-0.12195533,-0.04471718,-0.2658442,-0.054319054,-0.36599728,0.423498,0.08129414,-0.25396767,-0.015571962,-0.037120596,0.07472003,0.42496383,-0.21729384,-0.0886813,-0.054700937,-0.14366364,-0.49792218,-0.20269948,-0.30260158,0.24433424,0.3527801,-0.12096426,-0.031169772,-0.056608107,-0.24746192,0.32938477,0.104414515,0.35014686,0.20434411,-0.018315932,-0.40997323,0.043108415,0.117726356,0.48626745,0.06645712,-0.22959213,-0.26639834,-0.12192931,-0.32678065,0.2528584,-0.17850685,0.3213149,-0.07694878,-0.211403,0.67105323,0.15844405,1.207705,-0.16580386,-0.21170773,0.042615533,0.43294096,-0.010693274,-0.17680752,-0.21026085,0.8354922,0.55469865,-0.07955713,-0.17308033,-0.19803806,-0.06240947,0.15649745,-0.084281705,-0.15462388,-0.006200368,-0.58660215,-0.24829167,0.11570669,0.16663796,0.122689806,-0.058746073,0.0018687894,0.055214416,-0.051796395,0.3095548,-0.13158496,-0.115815364,0.27737325,0.2549591,0.20492905,0.25358614,-0.3997675,0.3238913,-0.51708007,0.14143203,-0.46563855,0.14887573,-0.21175094,-0.28334916,0.06980697,-0.08582022,0.29536387,-0.3787448,-0.102692254,-0.44811532,0.62123424,0.16242243,0.1591992,0.6354302,-0.20030344,-0.048157174,0.1575883,0.375652,0.897281,-0.16976671,0.0038631558,0.15513825,-0.33389363,-0.52484137,0.28368095,-0.11857616,0.10726905,-0.21830247,-0.08837854,-0.5912454,0.06894422,-0.018798612,0.06823558,-0.17951535,-0.5943994,0.010131481,0.24364339,-0.22572558,-0.18950772,-0.43342936,0.08286085,0.55793387,-0.10584036,-0.5479091,0.20997758,-0.022095188,-0.1303455,-0.36183214,-0.0037956338,-0.39972606,0.13692349,-0.027574295,-0.52129215,-0.088775955,0.17087947,-0.3872436,0.08680221,0.052537393,-0.31069198,0.036948193,-0.076515764,-0.10211045,1.1473632,-0.2152931,0.23720586,-0.50837445,-0.5464278,-0.91965103,-0.27522472,0.3510208,0.25460568,-0.1101081,-0.7777162,0.037171762,-0.07008136,-0.1355055,-0.05466738,-0.27904478,0.40345648,0.24926585,0.39419362,-0.17996196,-0.80372477,0.071081705,0.15241322,-0.10762314,-0.44528905,0.40343583,0.1843967,0.7992955,-0.031027654,0.02859272,0.16454358,-0.49213228,0.18306541,-0.107091956,-0.16643889,-0.44850874,-0.060074586,584 -863,0.4182347,-0.33517778,-0.41119745,-0.120538376,-0.07484951,-0.24972771,-0.0031005342,0.410656,0.09491555,-0.22790892,-0.27822447,-0.0764984,0.15480642,0.5284175,-0.13091525,-0.90422016,0.004343102,0.23061197,-0.6923783,0.6479064,-0.5415634,0.17268586,0.047367115,0.27577913,-0.063210875,0.29078123,0.3953619,-0.06652901,0.12017136,0.22426212,-0.16130553,0.16507886,-0.49147078,0.18914084,-0.010705511,-0.31705448,0.019194087,-0.2834047,-0.13981128,-0.7533435,0.23857726,-0.75594735,0.44296494,0.025924757,-0.31457976,-0.15602352,0.16209514,0.29993972,-0.70014066,0.06929793,0.1183,-0.057771128,-0.14258035,-0.31366828,-0.10356471,-0.45060062,-0.6166273,0.027074195,-0.531414,-0.22760384,-0.10186999,0.18290623,-0.42201045,0.0012594858,-0.11465424,0.57278097,-0.39472106,-0.07016846,0.46641648,-0.049250294,0.12392262,-0.48970857,0.0057526506,-0.16447574,0.32745266,-0.07233497,-0.26977405,0.3967955,0.40165773,0.5441633,0.3465879,-0.35190406,-0.22449875,-0.21796887,0.1623285,0.37441158,-0.092377566,-0.7046861,-0.2175976,0.18952928,0.20842917,0.27992344,0.09149101,-0.20180695,-0.031102462,-0.23592044,-0.1386057,0.24830486,0.63954514,-0.22485423,-0.5133357,0.29776746,0.5541901,-0.06695048,0.03352205,0.1821106,-0.07438282,-0.5650882,-0.2524399,0.056470413,-0.19046666,0.61607975,-0.2719012,0.11642206,0.7671108,-0.1093461,0.05314778,-0.102011226,-0.16208234,-0.17908639,-0.48567414,-0.21042092,0.22632463,-0.41608825,0.028455695,-0.39603665,0.84099025,0.356752,-0.74752015,0.49854615,-0.55551046,0.2922946,-0.0982424,0.7665828,0.7253712,0.33971095,0.45362592,0.8540764,-0.40226588,0.26007056,0.19231468,-0.40223274,-0.11693037,-0.21026403,0.071194835,-0.5082159,0.21565336,-0.1635869,0.018786127,0.056850147,0.47484124,-0.67545456,-0.18135458,0.21121688,0.7796169,-0.37553498,-0.09569576,0.72039336,0.98383,1.0756115,0.15752554,1.4358956,0.59476656,-0.28345373,0.3504349,-0.42879733,-0.87461835,0.1285229,0.39512083,0.1933624,0.37527815,-0.14849392,-0.24347351,0.41415653,-0.47493935,0.055491615,-0.25073925,0.54540086,0.09650058,-0.18231861,-0.41735557,-0.12354112,-0.09491414,-0.25655577,0.030066958,0.33838138,-0.21548201,0.46169844,-0.08836795,1.232216,0.014235866,0.04085932,0.17010391,0.44830096,0.27423728,-0.09954607,0.073515765,0.5032828,0.4911472,-0.22343247,-0.7467594,0.079189435,-0.51289946,-0.5058486,-0.23329937,-0.2273407,0.028561525,0.10755501,-0.2117755,-0.27634463,-0.099916816,-0.29110327,0.48923185,-2.4146101,-0.38276088,-0.20348074,0.43819097,-0.44764015,-0.15902947,-0.17693909,-0.51137185,0.40927377,0.26631108,0.48350593,-0.73283654,0.48707592,0.35488343,-0.56188184,-0.054790527,-0.8388377,-0.026371652,-0.12781407,0.25039896,-0.079595104,-0.08543471,-0.0610525,-0.080710374,0.6470149,0.09355716,0.087109715,0.4729685,0.46741715,0.17842717,0.3683962,0.06481748,0.6569557,-0.5330476,-0.073359855,0.3320723,-0.41918626,0.2974978,0.11181697,-0.030173754,0.48550406,-0.7318533,-0.79778385,-0.6343747,-0.42757395,0.85288906,-0.414067,-0.25714728,0.24748415,-0.049753543,0.14036669,-0.12717432,0.52763546,-0.14276081,0.017802492,-0.6782053,0.23244004,0.18418427,0.23483473,0.085238956,-0.035354752,-0.2589504,0.7096073,-0.2630832,0.6163778,0.33359337,0.30745843,-0.24929889,-0.5369961,0.081735134,0.70524216,0.3349481,-0.045919035,0.023508428,-0.28211775,-0.091733396,-0.261557,0.055143017,0.4858096,0.8749323,-0.14213069,0.11137694,0.5116534,-0.10779222,0.054130346,-0.030198798,-0.2740331,-0.2004242,0.09691056,0.42057577,0.7129254,-0.36092344,0.5682219,-0.20834132,0.34719276,-0.09827057,-0.53032404,0.73975354,0.8025925,-0.24388969,-0.099089645,0.47092748,0.28071022,-0.550895,0.468262,-0.68348426,-0.16298555,0.81810784,-0.2012875,-0.32557496,0.051743235,-0.23088671,0.19640893,-0.9210214,0.55255336,-0.37015152,-0.38030156,-0.61964774,-0.08970889,-2.8928852,0.19049476,-0.518976,0.0027077298,-0.27031446,0.028409585,-0.064302005,-0.6975426,-0.71097475,0.36683878,0.2433347,0.34545326,-0.061440557,0.32701707,-0.23025881,-0.11791124,-0.3231825,0.21403472,0.14552014,0.23043899,-0.09668797,-0.5110406,0.055070806,0.19421673,-0.51535505,0.34121394,-0.6791327,-0.42061278,-0.16838862,-0.84202355,-0.3176612,0.58796614,-0.42109382,-0.077962056,-0.23208408,0.099474214,-0.23884244,0.20797914,-0.028961599,0.17411067,0.091584526,-0.14696857,0.106013454,-0.29975075,0.39217034,-0.06962163,0.36956963,0.0068364986,-0.13217336,0.09783254,0.45615816,0.68338555,-0.013214588,0.6086914,0.5880817,-0.051986497,0.32577515,-0.20896439,-0.09593645,-0.61962324,-0.5495538,-0.13633303,-0.42994884,-0.6423021,0.10903274,-0.37821254,-0.8166921,0.4194806,-0.13879877,0.31238294,0.065096974,0.23380114,0.47989956,-0.03756312,0.110490285,-0.14590769,-0.20444334,-0.55234414,-0.28174174,-0.6960712,-0.43570462,0.41135368,1.070784,-0.27852833,-0.061573952,-0.25694862,-0.37567952,-0.05881615,0.18728732,0.05164336,0.35934615,0.32203257,-0.05739287,-0.64979523,0.32851508,0.16013835,-0.2296416,-0.49585167,0.14687575,0.6122832,-0.8225102,0.7910977,0.17396224,-0.056060057,-0.003967704,-0.6829181,-0.37140873,0.18415125,-0.065514125,0.39659277,0.1351719,-0.6428091,0.4864944,0.44197738,-0.48550916,-0.89127,0.13336541,-0.073046096,-0.121247016,-0.07345932,0.4167242,0.007129202,-0.24737602,-0.41522503,0.2543964,-0.39662632,0.33008805,0.15926082,-0.2485578,0.19139016,-0.125165,-0.2860529,-0.802571,-0.012629469,-0.8333741,-0.028888648,0.29529852,0.11931515,-0.15799977,0.016671559,0.14334176,0.47094822,-0.29588887,0.21282487,0.16093178,-0.5095523,0.080268115,0.37749568,0.26513782,-0.41623285,0.57716405,0.13283546,-0.12144149,-0.055228252,0.11005559,0.38833785,0.22124904,0.38476077,0.017337106,-0.010956491,0.44554567,0.8335204,0.06144765,0.44196844,0.28219846,-0.088611804,0.455027,0.06348807,0.07732134,0.07949897,-0.26881698,0.0024283428,0.17814672,0.25377885,0.46503702,0.32295403,0.44500265,-0.012248696,-0.29824564,0.006611629,0.32580566,-0.08623326,-0.94844955,0.369694,0.21514231,0.8669808,0.52882606,0.08322448,-0.17737234,0.5236105,-0.17387027,0.1720016,0.4415383,-0.2178802,-0.42220712,0.76415676,-0.54677814,0.39444026,-0.37694624,0.088754006,0.0472112,0.34052753,0.2404827,0.7661479,-0.18013193,-0.036433514,-0.121464066,0.0031442468,0.09567129,-0.5238195,0.08474662,-0.36130115,-0.39883098,0.6481035,0.22296686,0.2511785,-0.176627,-0.014506561,0.21229601,-0.22866456,0.29498053,-0.058212806,0.029671907,0.16665697,-0.57331043,-0.39723694,0.63478214,0.22244696,0.27313295,-0.092511855,-0.31191334,0.10519647,-0.46240988,-0.20944305,0.0021534462,-0.603798,0.04883339,-0.1763457,-0.34528598,0.52449995,-0.28662685,0.19738014,0.37314427,0.121528886,-0.44298658,0.05522424,-0.069270015,0.80478287,-0.064533465,-0.28980246,-0.32355055,0.07470413,0.2994086,-0.28930864,0.44463563,-0.31149018,-0.15276584,-0.5531617,0.78622776,0.05930844,-0.49704853,0.16056328,-0.311317,-0.22527254,0.6477008,-0.20436697,-0.1342286,-0.009017299,-0.30505326,-0.4619545,-0.27033857,-0.18736519,0.34444132,0.23076607,0.18993992,0.031886905,-0.23198693,-0.064619765,0.5185121,0.14278117,0.28364065,0.17864305,0.16187277,-0.15022187,0.11644357,0.25602078,0.41257575,0.2219221,-0.114317186,-0.22136593,-0.41641378,-0.15313812,-0.34005037,-0.20749503,0.25763008,-0.11010196,-0.3904539,0.7261314,0.13055427,1.401628,0.01365303,-0.30761555,0.0444598,0.5587627,0.084440015,0.009831381,-0.18681693,0.96447915,0.67777824,-0.069586806,-0.06870434,-0.5000542,-0.3156813,0.501839,-0.27412617,-0.22202718,0.19192411,-0.510017,-0.56704706,0.31895807,0.07041689,0.0026107032,-0.058391754,0.023493549,-0.00017905235,0.05407561,0.31913477,-0.6420408,-0.10097653,0.11402133,0.29499704,0.14101256,0.2945698,-0.39837566,0.3352327,-0.7422931,0.36116418,-0.23597519,0.09500299,-0.08561227,-0.37658015,0.13634217,0.005855764,0.36489165,-0.32157204,-0.4618064,-0.05526642,0.63884014,0.19185431,0.27987447,0.71688175,-0.38303304,0.058043096,0.23309815,0.666894,1.4477566,-0.26249325,-0.1832216,0.047775757,-0.43419442,-0.9326164,0.7994334,-0.20312835,-0.1426377,-0.30477557,-0.37452248,-0.643785,0.21159174,0.10486084,-0.07962427,0.22360177,-0.5603848,-0.2471088,0.34003246,-0.3840529,-0.15613213,-0.21962583,0.49517593,0.7918668,-0.24532974,-0.2479006,0.15663281,0.14840348,-0.3271418,-0.60174817,-0.24271242,-0.33970976,0.28251448,0.17010055,-0.2876279,0.010845506,0.20752625,-0.48612586,0.16690178,0.03695935,-0.28398588,0.29304904,-0.09515198,-0.207702,0.8132917,-0.24982162,-0.062507756,-0.79781055,-0.45067516,-1.012076,-0.32198957,0.60723954,0.113620244,0.009703546,-0.6793687,0.10520762,0.1979893,-0.10354612,0.010793735,-0.41501617,0.3722479,0.121105395,0.3945017,-0.30959097,-0.8623398,0.06320662,0.108252585,-0.008140296,-0.6514204,0.40723756,0.0032562416,0.9515564,0.017709464,-0.14508194,0.11334852,-0.4812126,0.010189389,-0.37727872,-0.1802261,-0.5502694,-0.1117604,596 -864,0.3321963,-0.15222836,-0.39556476,-0.13505332,0.106330514,0.12167844,-0.06733379,0.65330106,0.1263629,-0.33364287,-0.006542951,-0.10255843,0.10209859,0.43208537,-0.24033268,-0.50085706,-0.0010432353,0.11371102,-0.31282553,0.631308,-0.31750005,0.01137608,-0.090946,0.44286665,-0.024022901,0.29352036,0.0350966,0.018070241,-0.3331759,-0.03045786,-0.120087355,0.4470916,-0.48267433,0.17088534,-0.06011073,-0.1095046,0.03546748,-0.3131913,-0.3698415,-0.6909326,0.25952956,-0.751303,0.4060854,0.036004778,-0.30989888,0.4915497,0.21536517,0.15784778,-0.32974297,-0.30187312,0.036262255,-0.2232088,-0.026446382,-0.38065124,-0.09399817,-0.49941912,-0.5557366,0.06597706,-0.38988018,-0.15196186,-0.22638579,0.08995227,-0.22842632,-0.031398278,-0.1251461,0.6367236,-0.41736576,-0.0021279156,0.2039485,-0.20197271,0.25913838,-0.6174198,-0.24233986,-0.016254196,-0.0028478552,-0.011067472,-0.19718541,0.3213925,0.29560697,0.38339487,-0.2005787,-0.13175501,-0.37200418,-0.029610166,0.14255951,0.40555215,-0.37509164,-0.79367024,-0.015648967,-0.03741872,0.0030042443,0.042549808,0.2275375,-0.108944915,0.04027472,0.18233341,-0.35124624,0.4491018,0.5862105,-0.46937302,-0.13651349,0.15798967,0.45478725,-0.004385469,-0.24740988,-0.31751874,-0.014668864,-0.47583485,-0.07249942,0.021701485,-0.48957467,0.5841517,-0.103031754,0.006117945,0.49403277,-0.15244393,-0.16266143,0.08396741,0.23819888,0.11976486,-0.44169894,-0.17220838,0.2292432,-0.23605354,0.0052370825,-0.20307398,0.70467615,0.1520561,-0.5422929,0.3410759,-0.347069,0.099465705,0.009948921,0.36065552,0.48453274,0.55369604,0.29088184,0.69582015,-0.40761152,-0.032644957,-0.05651617,-0.23632114,0.15749411,-0.19068043,0.012203932,-0.4711837,0.18853498,-0.053883642,-0.17046571,0.1493683,0.1414966,-0.4966104,-0.13850252,0.28683898,0.91729707,-0.2777454,-0.14480118,0.580515,1.10927,0.74519706,0.013590548,0.9312405,0.23925626,-0.15029146,0.38062218,-0.2076115,-0.6824236,0.2681494,0.35084596,-0.28933537,0.24471009,0.036915433,-0.08630774,0.49236956,-0.34767297,-0.03789642,-0.12917113,0.36835328,0.306526,-0.008197705,-0.49865803,-0.1824147,-0.13144825,-0.11992681,0.24989724,0.15272033,-0.18979758,0.3836554,-0.009958953,1.3510442,0.08442076,0.006623482,0.044884022,0.47824708,0.29168996,0.041107375,-0.004047712,0.50076365,0.17986786,0.14986181,-0.49214745,0.19741626,-0.20133899,-0.61134917,-0.06609095,-0.35164902,0.08858033,0.051058054,-0.47240117,-0.17715324,0.031175025,-0.11015543,0.33534387,-2.8106925,-0.046686824,-0.13881224,0.45381236,-0.3116981,-0.322679,-0.06113008,-0.40817067,0.34206614,0.32320413,0.5066394,-0.57280535,0.21260597,0.18757443,-0.5026954,-0.04459158,-0.510494,-0.15942316,-0.1747539,0.48346078,0.13596213,0.015986234,0.1885569,0.0783355,0.64018935,-0.13687958,0.17830104,0.2606357,0.27180114,-0.11660548,0.4165345,-0.15221836,0.58938295,-0.33200327,-0.1508033,0.23538353,-0.52450675,0.18454204,0.11187339,0.19208546,0.41973063,-0.2823998,-1.0356089,-0.56058073,0.13069613,1.3006972,-0.27493343,-0.58284515,0.18298252,-0.40099216,-0.25545767,-0.07516926,0.39062735,-0.088791795,0.022634313,-0.8185896,0.143673,-0.09159743,0.19101058,0.03484676,-0.020507539,-0.3162626,0.6618566,-0.12677439,0.44894123,0.33246434,0.075507425,-0.38816556,-0.3775957,-0.16289097,0.93900365,0.2719809,0.10793524,-0.06475892,-0.24248855,-0.18526131,-0.09630827,0.12504208,0.5627497,0.41616902,0.009807713,-0.0017071068,0.19926806,-0.08588349,-0.017487438,-0.097405374,-0.47710562,-0.1576183,0.008306503,0.6162775,0.69095165,-0.32066637,0.3141302,-0.23802312,0.34964725,-0.13444792,-0.46926108,0.49766722,0.9987922,-0.16944052,-0.3724672,0.7264189,0.6131647,-0.4453912,0.34729186,-0.5631097,-0.35342136,0.5181332,-0.20353003,-0.31613985,0.2042616,-0.27876577,0.07695343,-0.72437096,0.25880256,-0.37749398,-0.3527756,-0.554026,-0.11872086,-3.6257517,0.22415347,-0.29705665,-0.25053814,-0.2739013,0.04836579,0.102378815,-0.5862033,-0.37657547,0.24435662,0.13871454,0.4207205,-0.010417104,0.13046475,-0.2400857,-0.20586263,0.045829486,0.22324008,0.14106672,0.23972909,-0.10505318,-0.5421065,-0.15002684,-0.13211466,-0.47304752,0.2607359,-0.7781642,-0.48113123,-0.13977589,-0.63102907,-0.32505855,0.6047817,-0.41331577,-0.063975014,-0.17887026,0.14657886,-0.18336399,0.1686977,-0.07583674,0.27493268,-0.021306926,-0.05583558,0.23651321,-0.31474555,0.2520062,0.11818317,0.46444955,0.32678422,-0.018020004,-0.0058492622,0.5747587,0.63680995,0.08843661,0.8518779,0.59674716,-0.014713119,0.35872182,-0.21860236,-0.20112745,-0.503779,-0.35319805,-0.06238957,-0.37673786,-0.22160245,-0.015859762,-0.34691286,-0.67994094,0.57865316,-0.08354908,0.074425176,0.020655636,0.35586727,0.6357397,-0.31981948,0.049779523,-0.15297301,-0.18180095,-0.56561023,-0.3046724,-0.53072816,-0.35794553,0.10656792,0.7541607,-0.049606916,-0.017730681,-0.15481709,-0.24576366,-0.0061053634,0.09773617,0.023988986,0.18960293,0.4848237,-0.07524604,-0.66280675,0.43875346,-0.1654536,-0.24725436,-0.46236134,0.3071269,0.47439983,-0.58980685,0.8754556,0.4732387,0.008451874,-0.13864714,-0.4147296,-0.2677831,-0.010206307,-0.1383032,0.3513756,0.25729918,-0.92804223,0.34313604,0.28494287,-0.4544498,-0.63070655,0.42068323,-0.15867944,-0.31743166,-0.23515594,0.39038,0.040364124,-0.027632883,-0.14363128,0.104574084,-0.46988487,0.19117634,0.18838654,0.01815784,0.5040943,-0.1327852,0.05809726,-0.8331706,-0.051405746,-0.49618936,-0.26830545,0.4087403,0.13574244,-0.028703703,-0.057556406,-0.07963292,0.35140622,-0.3419023,0.10800075,-0.052544426,-0.31337783,0.40860328,0.40565333,0.5143478,-0.4090352,0.52845377,-0.028285764,-0.029391253,0.02590406,0.053329956,0.43406317,0.24210574,0.37834427,0.11751745,-0.065843865,0.3449514,0.6918356,0.12573804,0.6073352,0.090744376,-0.14319569,0.30647466,-0.027076446,0.053731397,0.06102854,-0.47925934,0.10528169,-0.108664654,0.1574005,0.5284908,0.04947916,0.4534441,-0.11583535,-0.27196681,-0.05579142,0.30005208,0.09898924,-1.2275192,0.26660302,0.07547362,0.8367576,0.30845323,0.08754367,0.00017052889,0.7618194,-0.1427209,0.085965425,0.3833842,-0.07515937,-0.46734643,0.59751874,-0.6455344,0.34884346,-0.19170642,0.005236762,0.03711081,0.1202265,0.2962282,0.81159097,-0.14709978,-0.06441563,0.1480007,-0.42068765,0.186502,-0.362883,0.120808445,-0.3828152,-0.37096593,0.4456884,0.61021054,0.39924765,-0.2392451,-0.027204439,0.19482438,-0.041006263,0.1996109,-0.00074345124,0.15593117,0.07713734,-0.85803956,-0.18668057,0.49890053,0.24896522,0.23304193,0.018955627,-0.21476488,0.41107377,-0.16096579,-0.22812836,0.00022497028,-0.4798118,0.10220083,-0.20832002,-0.54350984,0.48872194,-0.2465329,0.19788007,0.1150741,-0.04478268,-0.44168213,0.25315854,0.07459195,0.76423913,-0.06380577,-0.17078651,-0.56777686,0.042225916,0.074614696,-0.0853555,0.24552667,-0.42287782,-0.10302482,-0.30746374,0.3789934,-0.12684815,-0.21376158,-0.20282978,-0.11586419,0.091614,0.57961905,-0.21350093,-0.2232594,-0.28124988,-0.14634925,-0.22842942,-0.45631066,-0.033233497,0.2755981,0.09323895,0.09243444,-0.041960374,-0.12251884,-0.06313978,0.49726304,0.04746894,0.31530514,0.36780426,0.2606158,-0.19484459,-0.07530984,0.28581515,0.49219394,-0.07599031,-0.23191254,-0.26627383,-0.4777008,-0.3402206,-0.09211493,-0.14637429,0.40312386,0.19112796,-0.26011774,0.7745251,-0.24659838,1.1860107,0.023195246,-0.3857073,0.014779049,0.41108355,0.06937584,0.13926657,-0.32784125,0.7475836,0.50106347,0.012797254,0.0045697764,-0.4527807,0.0040864446,0.109407574,-0.17595439,-0.14468378,-0.041917723,-0.62613004,-0.36025926,0.25226894,0.27597204,0.39561927,-0.06125921,0.19130866,0.12619123,0.07920147,0.26573196,-0.35774747,-0.032887027,0.26934198,0.32328862,-0.039052963,0.02937504,-0.36932346,0.34190583,-0.3771095,0.06479915,-0.40562153,-0.033953357,-0.18076442,-0.29803154,0.16684236,-0.14322942,0.3788067,-0.35702923,-0.2022353,-0.12481183,0.54686207,0.17769547,-0.00028371313,0.48851624,-0.13362761,-0.07001098,0.20287709,0.5803124,0.9354065,-0.47037402,0.046417844,0.16986103,-0.35764527,-0.81552035,0.41523778,0.012325431,0.33459413,-0.0749089,-0.15264775,-0.7113715,0.18183704,0.1843077,-0.032060165,-0.11368982,-0.43056592,-0.20364387,0.30707958,-0.45803335,-0.121748604,-0.08812157,0.18770538,0.4782656,-0.2788209,-0.40301585,0.08735559,0.23571365,-0.116115354,-0.36280265,-0.10490253,-0.54777414,0.30700818,0.13379991,-0.34002265,-0.117727935,0.081162885,-0.44269863,0.18231916,0.06292445,-0.3352919,0.017291792,-0.22680211,-0.055909056,0.8121896,-0.15845172,0.29260793,-0.5983382,-0.53080577,-0.9242275,-0.3579093,0.46789145,-0.102323644,-0.046326384,-0.6502714,-0.006601624,-0.036887947,-0.22984,-0.17078441,-0.4496641,0.40526748,0.098118104,0.36927268,-0.035659045,-0.5024551,0.1809128,0.19212162,0.14508815,-0.58160806,0.3298858,-0.05650264,0.9818254,-0.115924954,0.19913864,0.36045098,-0.35525224,-0.25849602,-0.20792985,-0.2984034,-0.46522948,0.08188709,600 -865,0.3036689,-0.11303002,-0.66448903,-0.01171876,-0.13000956,0.048240136,-0.1914972,0.48459437,0.032081753,-0.42069492,-0.14079098,0.053344715,-0.09739033,0.30830956,-0.19730885,-0.5281081,-0.064076744,0.2570682,-0.21010478,0.19091918,-0.4647769,0.1289458,-0.1728373,0.37474653,-0.14805911,0.2813517,0.2640573,-0.029157361,-0.16155571,-0.26183018,0.26822937,0.3866031,-0.6568025,0.3371593,-0.07480037,-0.31203023,-0.025629165,-0.42959595,-0.39709315,-0.66290605,0.2209069,-0.8334472,0.45515075,0.23421562,-0.24314152,0.098839976,-0.08587255,0.25051722,-0.2659882,-0.02048312,0.33378074,-0.35978267,-0.19216625,-0.384389,-0.031900585,-0.23944682,-0.514626,0.02960966,-0.34934977,0.012501326,-0.22892584,0.20468034,-0.40296283,0.08551758,-0.2926521,0.23200174,-0.43539676,-0.14331299,0.25168338,-0.30966505,0.22195876,-0.42216492,-0.08303671,-0.18074732,-0.029864019,-0.34483957,-0.20694733,0.41213873,0.119433366,0.3919009,-0.1450418,-0.15079767,-0.31472138,0.074640535,0.21727604,0.5473955,-0.41278294,-0.33398938,-0.09689057,-0.1094057,0.13290137,0.056901466,-0.15583305,-0.33339438,-0.063547224,0.038978275,-0.07933027,0.06971354,0.6275626,-0.1549792,-0.054298315,0.37745407,0.4824398,-0.051421743,0.02372128,0.061728965,0.077213466,-0.4805584,-0.21836495,-0.12135456,-0.050887797,0.5299167,-0.06792794,0.14761685,0.67800087,-0.31108224,-0.08722151,0.045697857,0.05173916,-0.076606296,-0.30262873,-0.3707401,0.58959144,-0.4021372,0.056632232,-0.14092483,0.781279,-0.039263293,-0.90755653,0.519517,-0.44093505,0.061153695,-0.21149671,0.73150015,0.5036052,0.5762065,0.22714704,0.7941068,-0.5429742,0.066640384,0.03729922,-0.41869965,0.37293705,-0.19726253,-0.22372526,-0.32751957,-0.16018523,0.19736254,-0.28492236,0.17128699,0.40787208,-0.4364178,-0.07809732,0.18364145,0.6008544,-0.37836263,-0.029157007,0.40639952,1.1868849,0.71801716,0.053253204,1.2070872,0.23375602,-0.18115418,-0.030630022,0.031389453,-1.0226918,0.24485534,0.31521958,-0.2864624,0.15620242,0.4116834,-0.2753725,0.5654895,-0.59940463,-0.07076482,-0.15069069,0.14646356,-0.18980412,-0.13244312,-0.5183651,-0.29386458,0.087009095,0.016194701,-0.13593529,0.37372684,-0.34530053,0.36018738,0.13218564,1.4817868,-0.095203854,0.23134993,0.08928016,0.47612646,0.083411954,-0.13874388,-0.16264999,0.22559136,0.31004825,0.20158117,-0.40907732,0.12264988,-0.010770659,-0.6053414,-0.18760325,-0.2784701,0.12936974,0.041208435,-0.28908092,-0.102041006,-0.014768253,-0.3995416,0.44466472,-2.5347357,-4.2577583e-05,0.08286145,0.3349917,-0.1698159,-0.20200993,-0.2781185,-0.33085737,0.3571497,0.48995474,0.54777163,-0.52857953,0.25519928,0.4139694,-0.42089614,-0.07687909,-0.6300743,0.101674415,-0.21269627,0.09334039,0.11259783,-0.13000558,-0.012091547,0.009324257,0.49673736,-0.18143336,0.049257364,0.32177678,0.22700821,0.13361019,0.13597527,-0.05474713,0.55593306,-0.6569019,-0.48569098,0.32343623,-0.25242034,0.23342575,-0.112021826,0.121937335,0.28851035,-0.34350792,-1.1568708,-0.6338177,-0.32153252,1.2533373,-0.41086254,-0.3961794,0.347468,0.0648287,-0.38315806,-0.020104121,0.47513953,-0.30721924,0.040861253,-0.8877111,0.046058815,-0.19918944,0.41960335,-0.043049995,-0.098155916,-0.6237143,0.486536,-0.20449615,0.51820177,0.54875064,0.098668635,-0.18751855,-0.42523003,0.06544256,1.0343678,0.23365285,0.23933989,-0.1632085,-0.10532007,-0.037482537,0.08132493,0.14295167,0.36988893,0.7821787,-0.04366915,0.04635465,0.28598174,0.03521076,-0.18880707,0.03848954,-0.39939347,-0.020592531,0.06678107,0.6817396,0.7316049,-0.13472645,0.23641217,-0.13944013,0.40675858,-0.14902413,-0.37208104,0.42426348,0.6064858,-0.054852594,-0.20630027,0.80819494,0.48320198,-0.43661848,0.67701,-0.6887873,-0.43624234,0.2263398,-0.04133739,-0.482536,0.16218667,-0.31809822,0.2970954,-0.84422034,0.506622,-0.25971195,-0.73083687,-0.6932865,-0.2205184,-3.9296906,0.24131215,-0.36711147,-0.19507484,0.071399815,0.02879149,0.37759018,-0.63886666,-0.42308545,0.118840516,0.2129283,0.64932555,-0.09236911,-0.034849547,-0.30553472,-0.04588896,-0.12190354,0.12600736,0.5009166,0.10305395,0.021303708,-0.5340281,-0.1747436,-0.21712895,-0.2682571,-0.0054962435,-0.6526143,-0.30868658,-0.090875946,-0.58404344,-0.4079747,0.6516126,-0.5408325,-0.031378895,-0.13703637,0.14708756,-0.19514048,0.4021754,-0.035520446,0.23868722,-0.098972924,-0.14759225,-0.13562371,-0.15138133,0.50049525,-0.017416188,0.39904818,0.48886672,-0.4468511,-0.036503196,0.70332855,0.5635366,-0.0811188,0.90532416,0.6163164,-0.16279274,0.12515377,-0.26182604,-0.16435595,-0.59391284,-0.4310873,-0.046606038,-0.5145514,-0.3600153,0.13708888,-0.40109026,-0.9371397,0.7118078,-0.085001774,-0.08182732,0.04234715,0.07631875,0.29758796,-0.3037646,-0.28934368,-0.19324253,-0.14552194,-0.49430522,-0.3124885,-0.6285479,-0.54585433,-0.22017288,1.2987021,-0.13217573,0.256071,0.19658756,0.045668025,0.06505301,0.14153679,-0.051138017,0.24275486,0.5409879,0.06542295,-0.57933086,0.41791764,-0.31920096,-0.08661284,-0.72664493,0.15771647,0.67710376,-0.885863,0.70385057,0.53764063,0.116743036,-0.05750357,-0.6340267,-0.41680694,-0.0023135692,-0.051157225,0.58732665,0.15817265,-0.9768458,0.4665587,0.46478343,-0.5703288,-0.707321,0.46134838,-0.17550842,-0.11777834,0.099986255,0.36611962,-0.44279352,0.017472705,-0.15379865,0.24397278,-0.31892654,0.3186982,0.23512982,-0.08282957,0.53510857,-0.3090396,0.05810937,-0.6697487,0.07890391,-0.46699095,-0.15613216,0.14844811,-0.15778495,-0.25098947,0.14338602,-0.026719982,0.57136816,-0.3647702,0.0844261,-0.12524125,-0.42086673,0.53975564,0.48773932,0.44942704,-0.47904125,0.65427667,0.0107628675,-0.23798585,-0.46537873,0.039932523,0.6666251,-0.037198458,0.30241182,-0.13002294,-0.019839851,0.3575311,0.7480554,0.2776338,0.5940809,-0.06327947,0.04118209,0.18767913,0.25381655,0.3114753,0.063204065,-0.5330423,0.08358172,-0.19175516,0.23257954,0.42770007,0.09122431,0.5732178,-0.23973982,-0.15439214,0.16482252,0.29095912,0.07062668,-0.937771,0.63688827,0.11152025,0.49710953,0.44136527,0.18770744,0.047754515,0.70359564,-0.22633488,0.15224393,0.113289714,-0.0804537,-0.48506382,0.58730996,-0.7854149,0.31375235,-0.020574043,-0.023204066,0.18082972,-0.23611677,0.52128047,0.7469952,0.011829744,0.22657739,-0.031962074,-0.1076322,0.059316237,-0.28006837,0.35606566,-0.52153385,-0.38736427,0.8000121,0.49710885,0.41513315,-0.13435207,-0.060486186,0.0984207,-0.045798767,0.23990728,-0.14291129,0.11822429,0.05508932,-0.77804095,-0.15147094,0.6832736,0.1222214,0.036237556,0.007943784,-0.12884708,0.44051203,-0.16520023,-0.15319003,-0.026243677,-0.37334085,0.11627377,-0.33135423,-0.24270813,0.4096876,-0.2625691,0.34785843,0.11856992,0.093047075,-0.49876466,0.31703004,0.16882657,0.9245103,0.09538426,-0.28398076,-0.29024366,0.3279246,0.35364595,-0.14879365,-0.055524994,-0.5657109,-0.18264551,-0.5980285,0.31233677,-0.19783486,-0.3930395,0.4277344,-0.044585586,-0.022191694,0.64009255,0.0748055,-0.22886948,0.056019317,-0.013836051,-0.32846367,-0.19439308,-0.3265902,0.26308298,0.08152119,-0.008485138,-0.04300795,0.093167126,-0.08421039,0.28674155,-0.02195979,0.27813008,0.26497835,0.26789725,-0.27297428,0.016411027,-0.101723544,0.633979,-0.08467996,-0.032285508,-0.32929465,-0.37488103,-0.13766187,-0.011405975,-0.1851647,0.3982675,0.1782964,-0.19812839,0.65758944,-0.09891429,1.0464697,0.025783896,-0.34635293,-0.10347509,0.66110545,-0.025857568,-0.10584434,-0.39020815,1.1197363,0.6707596,-0.21828283,-0.12046239,-0.4515724,-0.2612069,0.040637296,-0.22938336,-0.44545078,-0.040753655,-0.6983729,-0.108343065,0.26601592,0.5171447,0.07850857,-0.004317502,0.24483776,0.37836885,0.16126657,0.004014328,-0.32896277,0.07481819,0.43864974,0.29246256,-0.028337091,0.08069406,-0.36271027,0.3716141,-0.66598165,-0.013265002,-0.3413702,-0.012161228,-0.16287501,-0.38713276,0.09850189,0.017903993,0.29648927,-0.20212443,-0.09146715,0.07392872,0.4327514,0.2941221,0.23323731,0.87977904,-0.21553417,0.12372196,-0.010309957,0.31457743,0.8113823,-0.564164,-0.10936916,0.42387462,-0.14155509,-0.7268519,0.33525327,-0.32657564,-0.036151607,-0.26105747,-0.47446474,-0.46909437,0.29824144,0.11983956,-0.310646,0.19177754,-0.52381545,0.20448698,0.1157904,-0.15461934,-0.2833881,-0.38882804,0.30419573,0.77192134,-0.23211281,-0.48902512,0.18377669,0.30052122,-0.24137296,-0.41186666,-0.06977054,-0.27291206,0.118427396,0.13107683,-0.42978606,0.077360384,0.07480412,-0.28337404,0.26741633,0.26257026,-0.21188231,0.24800992,-0.22655983,0.11071267,0.717985,-0.1305718,0.10707068,-0.6767729,-0.53392637,-1.034,-0.21835135,0.53781265,0.24301617,-0.07405002,-0.49552843,-0.05341978,0.017115304,-0.099357665,-0.29207912,-0.31010962,0.38154235,-0.08049816,0.4394932,-0.15479128,-0.7116192,0.066877685,0.08129164,-0.08862278,-0.44449687,0.49891743,-0.048680197,1.0137185,0.051477402,0.24330501,0.2645708,-0.6926816,0.044086933,-0.2588912,-0.273843,-0.57770824,-0.02869281,608 -866,0.3250694,-0.21379244,-0.40894437,0.030391486,-0.011176512,0.1001811,-0.16889091,0.6370739,0.17733683,-0.401652,-0.23100643,-0.103298165,0.09112045,0.5059193,-0.17327602,-0.17698753,-0.2070447,0.26528773,-0.49419084,0.513329,-0.3055896,0.059414577,0.036741227,0.5762904,0.0544133,0.1148631,-0.09997525,-0.05654323,-0.47507536,-0.3457234,0.32723925,0.35597205,-0.8946077,0.20755005,-0.42945853,-0.22757751,-0.19582461,-0.56745714,-0.49303997,-0.7481392,0.25968802,-1.0318019,0.6603802,0.10153946,-0.24707912,0.35615048,0.06924871,0.3714626,-0.20743006,-0.0559691,0.30946445,-0.1904159,-0.1895929,-0.21577124,-0.10322672,-0.27457193,-0.6378518,0.041206475,-0.3618678,0.00919046,-0.22272837,0.19242243,-0.1149118,-0.04168892,-0.13550323,0.35079136,-0.44599238,0.22852129,0.06895296,-0.016017133,0.50195557,-0.56810385,-0.21394338,-0.18988092,0.32173502,-0.22695462,-0.17663865,0.1781712,0.100757964,0.29585713,-0.28372416,-0.03208937,-0.36630404,0.2188463,0.13187902,0.41214404,-0.32708824,-0.5242365,0.07019981,0.02462042,0.26255357,0.06945453,0.116439015,-0.20455809,-0.08852974,-0.0723091,-0.09171819,0.38444033,0.53772956,-0.16404887,-0.23615782,0.32532576,0.5667353,0.37442622,-0.06601087,-0.19710195,0.0763449,-0.64834124,-0.04502772,0.15706104,-0.36408553,0.56379515,0.0044063944,0.102217264,0.6333181,-0.21009284,-0.018335901,0.2269277,0.13142164,0.05831762,-0.22352566,-0.3992909,0.31609327,-0.13998584,0.2477388,-0.17860866,0.5728718,0.07605522,-0.7200958,0.3101357,-0.5723246,-0.01839363,0.06256945,0.44935703,0.5956852,0.5551624,0.3370773,0.5850208,-0.28692883,-0.053545535,-0.12726669,-0.20450795,0.21407938,-0.221214,-0.0011754731,-0.4597082,-0.19782092,-0.0019194683,-0.32859024,0.026912464,0.51265746,-0.47844335,-0.066715784,0.25155586,0.7486511,-0.202208,-0.18379362,0.73620206,1.0915114,0.7888109,0.06608788,1.2745658,0.16063248,-0.15566769,0.23207144,-0.18116732,-0.72586536,0.3285959,0.2861397,-0.72020197,0.42219487,0.20743817,-0.050857335,0.19942307,-0.56023246,0.083936155,-0.14128353,0.0784592,0.08546903,-0.1700163,-0.3643323,-0.25390851,-0.14973389,-0.006807497,0.12795389,0.17440183,-0.19163032,0.20030363,0.088493,1.5975493,-0.14376147,0.059473287,0.07253062,0.4604477,0.022014575,-0.069651596,-0.2163284,0.3508129,0.40627208,0.30268273,-0.40704703,0.11573873,-0.09769956,-0.49439272,-0.10880748,-0.20210421,-0.12047999,0.02218456,-0.4531883,-0.20871878,0.009846811,-0.27112445,0.45253742,-2.7200992,-0.08783994,-0.050016865,0.47209612,-0.3410426,-0.38422903,-0.1914155,-0.3068902,0.45241165,0.28328314,0.46719095,-0.6475233,0.36796227,0.31044072,-0.5285993,-0.10138788,-0.56474423,-0.14695828,0.05756147,0.26634452,0.060698736,0.011852871,0.24638526,0.050122242,0.4280844,0.04653551,0.112220585,0.44928455,0.41352138,-0.1120706,0.5106905,-0.23591459,0.4448202,-0.33974776,-0.26975074,0.38905954,-0.44063804,0.32534438,-0.08601179,0.13440974,0.3663905,-0.37653884,-0.93070364,-0.7537244,-0.35134265,1.1597708,-0.116983086,-0.47275606,0.05978323,-0.45059195,-0.4102025,-0.019783432,0.6083507,-0.12568434,0.1948518,-0.9295926,-0.28860638,-0.20024295,0.3515806,0.0014028847,0.08150711,-0.5451351,0.6686284,-0.052057404,0.35089847,0.38945845,0.11229382,-0.2791834,-0.537329,0.06268046,1.0949577,0.18372571,0.15835361,-0.28060263,-0.29023352,-0.3795893,0.13143851,-0.10082505,0.66568106,0.34138325,-0.03667809,0.060009394,0.17367963,-0.100313045,0.03333665,-0.11979862,-0.3542439,-0.17881937,0.09980474,0.6359231,0.8762602,-0.13767642,0.44784704,-0.24857982,0.2534527,-0.029902125,-0.35898295,0.42012367,0.8702356,-0.16487838,-0.1908056,0.8576229,0.58235586,-0.29281533,0.4143571,-0.5559847,-0.52370316,0.25241658,-0.08820417,-0.4053248,0.2723073,-0.31129757,0.070146985,-0.94420576,0.33871317,-0.41085532,-0.36517346,-0.6433039,-0.037777226,-2.7145386,0.0959148,-0.062106162,-0.29097566,-0.17798431,-0.3044176,0.19699167,-0.5583293,-0.6237876,0.17120905,0.043269377,0.5379932,-0.12994267,0.14309382,-0.2650452,-0.27012557,-0.033884358,0.24642555,0.37398648,0.3581141,-0.16609247,-0.5051697,-0.2184066,-0.11378321,-0.16598158,0.05295365,-0.8978543,-0.5744459,-0.06951287,-0.6137796,-0.21347664,0.67324513,-0.6113486,-0.13766968,-0.17294687,0.096608125,-0.12676807,0.34389916,0.041597288,0.2734978,0.17566498,-0.1852531,0.06873905,-0.05872407,0.4788586,0.16201134,0.32856795,0.4170635,-0.3538288,0.3430291,0.394158,0.59552515,-0.31577882,0.9741087,0.62392604,-0.15605895,0.20445359,-0.25387183,-0.27027264,-0.521297,-0.17902374,0.049141586,-0.4647858,-0.45833156,-0.054875087,-0.3461244,-0.89181226,0.70470303,-0.30109718,-0.032512635,0.10586155,0.26348034,0.49773622,-0.31570157,-0.06556586,-0.14348625,-0.034966532,-0.48432183,-0.43570566,-0.46246782,-0.45068958,-0.21172965,1.1152356,-0.024776692,0.1167969,0.24107414,-0.34877586,-0.02016677,0.014054577,-0.07690206,-0.10971853,0.67298216,0.030643543,-0.56844515,0.34988996,-0.09392854,-0.19761632,-0.59351194,0.48381686,0.63136286,-0.6757083,0.725687,0.5239429,-0.07900443,-0.25191045,-0.5608061,-0.3526634,-0.18198164,-0.12460125,0.31563717,0.2413113,-0.7717059,0.26592475,0.30007383,-0.3958505,-0.77092505,0.6223795,-0.08458701,-0.24002711,-0.058838736,0.3837687,-0.16564734,0.06702164,-0.24077795,0.4439578,-0.31913397,0.3758111,0.061627563,-0.11214275,0.16781592,-0.16745567,0.039934438,-0.82925767,0.27133706,-0.2929344,-0.5196047,0.43836212,0.1228744,-0.030791065,0.275646,0.23205964,0.32833064,-0.45842567,0.015156779,-0.14632352,-0.3820534,0.27766314,0.3961446,0.6493406,-0.44617328,0.51846623,0.0029861107,-0.23775856,-0.03449094,0.020843059,0.520578,-0.12559168,0.31480187,0.05607589,-0.10267293,0.25106123,0.7651546,0.22318311,0.52872735,0.038490098,-0.06533141,0.24434227,0.03653233,0.23781927,-0.058218583,-0.80210376,0.16254832,-0.23489064,0.1325947,0.3141204,0.07536157,0.16013636,-0.13498074,-0.30780017,-0.07523409,0.17915718,0.18938439,-1.2945184,0.33838907,0.080198966,0.7571474,0.40231562,0.06070803,0.21327412,0.7867479,-0.1504129,-0.0286675,0.42197385,0.0049941144,-0.5336763,0.61867,-0.72662765,0.4245002,-0.037537806,-0.0057493695,0.010534803,-0.110894166,0.4013319,0.8083291,-0.167974,0.08429992,0.03103376,-0.22052413,-0.024505893,-0.3371012,0.32388374,-0.5926336,-0.33145994,0.7681959,0.6567367,0.5229669,-0.21334465,0.04459242,-0.0021567096,-0.1481212,0.31217602,0.015702704,0.1356635,0.2507665,-0.7719307,0.14740534,0.5097724,0.0375323,0.10962117,0.017668946,-0.20628156,0.26200762,-0.25959402,-0.14295687,-0.17167962,-0.8542262,-0.22203666,-0.60116434,-0.3337345,0.3214965,-0.15086816,0.114481814,0.06695122,0.022820937,-0.21014494,0.4329194,0.14951819,0.8470953,0.14573735,-0.32608068,-0.26432732,0.29216823,0.17165266,-0.1745734,-0.03977793,-0.34055126,-0.047310513,-0.48441318,0.30365643,-0.104353555,-0.37920988,-0.078185566,-0.11793027,0.14391197,0.5799795,0.06215642,-0.14113015,0.06290513,-0.2584739,-0.27238595,-0.14505722,-0.09517604,0.25097093,0.49785492,-0.074702404,-0.121727444,0.01869993,-0.16730995,0.3515077,0.009567283,0.5673482,0.52008885,0.21072544,-0.09450594,-0.05299579,0.123051815,0.7527965,0.022075513,-0.16168274,-0.39000514,-0.2733996,-0.29401466,0.397439,-0.11548481,0.2936756,0.24194606,-0.17102723,0.82104725,-0.011141092,1.061833,0.07164736,-0.19546163,0.09999418,0.48822835,-0.07594808,-0.14944299,-0.6291025,0.93917733,0.46986446,0.038532633,0.007517328,-0.29170495,-0.077521436,-0.0074075647,-0.177975,-0.08587592,-0.12970869,-0.6422186,-0.124047674,0.20697136,0.4151845,0.15579458,-0.10553509,0.25184587,0.18920834,0.04643166,0.26410875,-0.52009004,-0.09199015,0.41640458,0.39245245,0.031692687,0.10211315,-0.37345847,0.34427598,-0.46010947,-0.036957514,-0.40359834,0.009181191,-0.2182756,-0.39668122,0.22606425,-0.039388787,0.4414593,-0.42405042,-0.14970848,-0.15639241,0.42804226,0.089372866,0.11473306,0.5054643,-0.20581222,0.061836768,0.01515155,0.50196034,0.8839851,-0.5846732,0.14433347,0.3374314,-0.22552311,-0.5382332,0.53313684,-0.3571314,0.44067743,-0.05051264,-0.26385197,-0.5479118,0.2427577,-0.017614312,-0.034424704,-0.21192741,-0.6316199,-0.00994201,0.42163387,-0.22049518,-0.17489888,-0.27235892,0.14220779,0.589835,-0.05729488,-0.5057872,0.11172094,0.3572956,-0.2959044,-0.2730526,-0.050221372,-0.4991572,0.10608369,-0.1336426,-0.44920525,-0.2200932,0.028247783,-0.47303033,0.13069569,0.18991761,-0.42547122,0.065913185,-0.38078633,0.028590167,0.99790376,-0.29050523,0.18606722,-0.43028918,-0.4401054,-0.9369159,-0.2867581,0.20763403,0.19122379,-0.06543937,-0.5149308,0.059308052,-0.09673003,-0.26862165,-0.09608388,-0.46124968,0.42674533,0.15285556,0.5786658,-0.27087852,-0.7693167,0.19336939,0.08583936,-0.08167312,-0.609793,0.43080556,0.08779993,0.95551294,-0.08028483,0.2128865,0.22972143,-0.5685025,-0.27873465,0.017759606,-0.04449721,-0.7658759,0.104305685,614 -867,0.67172235,-0.22885726,-0.5560405,-0.09242806,-0.12949409,0.0523061,-0.07591549,0.45044836,0.21295452,-0.3751162,-0.26522282,-0.18008156,0.16536586,0.38672838,-0.23362322,-0.7552016,0.23343845,0.08250344,-0.45345116,0.46405602,-0.5843957,0.39891008,-0.031635087,0.38964447,0.028828481,0.22696362,0.31808352,-0.0041053495,-0.07414625,-0.25601688,-0.15477476,0.016941437,-0.7320221,0.07314614,-0.06456106,-0.49063146,0.11013857,-0.5140823,-0.18683793,-0.64360094,0.24003792,-0.7854025,0.6649409,0.14593998,-0.12602602,0.048553187,0.041448142,0.20756163,-0.3012143,0.17246477,0.048056502,0.001903514,-0.088795505,-0.22298914,-0.026811576,-0.6322878,-0.64515555,-0.024420992,-0.53701776,-0.098831475,-0.15037517,0.00012321521,-0.3322076,-0.01688838,0.1401509,0.18096389,-0.38795677,-0.017977258,0.17284255,-0.06994205,0.26958737,-0.4330525,-0.061273355,-0.09496512,0.31320846,-0.28659552,-0.30832267,0.14577584,0.3797088,0.43339518,0.04053825,-0.15919596,-0.25506592,-0.13308094,0.08477968,0.62914175,-0.028271973,-0.8844485,-0.2929306,-0.0333472,0.15238865,0.38470483,0.2591405,-0.035624355,-0.19011955,0.09594821,-0.23936538,0.43267092,0.47633457,-0.59661967,-0.22432582,0.40114152,0.48601198,0.22062023,0.024720466,0.024111249,0.13334967,-0.6970175,-0.3098917,-0.045582533,-0.1831373,0.7318794,-0.2520183,0.32664278,0.6714651,-0.34879017,0.08329748,0.17308724,0.039199933,-0.2926208,-0.07033964,-0.07929611,0.1730382,-0.53772634,0.071323834,-0.22898805,0.7979601,0.3033614,-0.7540899,0.30377153,-0.69152075,0.04956691,-0.1792583,0.4971533,0.66929525,0.4317049,0.21324718,0.79238343,-0.5000194,0.014610437,-0.175146,-0.52866864,0.14731622,-0.06977976,-0.18979721,-0.50969535,0.071124196,0.24920641,0.03466989,0.19485188,0.65199965,-0.6022082,-0.12279729,0.08591839,0.68615836,-0.3243998,-0.26067302,0.7672451,1.0336331,0.8852079,0.0959824,1.4791689,-0.022102961,-0.16756873,-0.047292184,-0.1373155,-0.73386145,0.2712259,0.30163893,-0.3393935,0.43827963,0.12682448,-0.10380862,0.3086817,-0.21965905,-0.03444871,0.008886397,0.3484279,-0.102558136,-0.37150335,-0.39407757,-0.23734476,-0.102056555,0.11131203,0.24802081,0.4253651,-0.24342914,0.31375182,0.038273703,1.7453581,-0.051309723,0.22142597,-0.06156667,0.4308047,0.4238132,0.011475298,-0.17374551,0.345909,0.3225186,0.4305729,-0.5242653,-0.043787602,-0.23416889,-0.5994319,-0.1744595,-0.3075336,-0.20899618,-0.24454826,-0.39955106,0.037986558,-0.032513734,-0.19055228,0.6955014,-2.6378062,-0.30672696,-0.1382215,0.35503528,-0.26086035,-0.5078963,-0.1855111,-0.391449,0.45156762,0.31077585,0.58853036,-0.84378386,0.39446223,0.34802485,-0.40034425,-0.19429009,-0.5707254,0.014123728,-0.010263736,0.29558456,-0.0047582276,-0.24882591,0.018980125,0.28222355,0.525347,0.028109467,0.060429946,0.11607477,0.4568183,0.08689097,0.57680625,-0.11167119,0.6256017,-0.1521577,-0.12790398,0.20958848,-0.28632104,0.55654746,-0.21565568,0.14755675,0.25743285,-0.3851638,-1.1227471,-0.54262835,-0.10096844,0.9615695,-0.26788697,-0.27257773,0.16060549,-0.3139979,-0.3533227,-0.08977517,0.4458821,-0.26777178,0.1314358,-0.7057468,0.10763705,-0.1275795,0.042502116,-0.019419273,0.05198696,-0.5613633,0.70580786,0.051198255,0.5070489,0.3534247,0.11909751,-0.26919523,-0.5381754,0.056470077,1.1201278,0.4768081,0.17146946,-0.10107537,-0.19329377,-0.5091321,-0.041580122,0.13386743,0.64998436,0.8082246,-0.110035986,0.06631162,0.22741288,0.24854235,0.036464375,0.019118274,-0.20361958,-0.022744209,-0.26368853,0.6503324,0.8104658,-0.46770188,0.57875633,-0.17695087,0.35222185,-0.27928302,-0.47110602,0.65000534,0.8883758,-0.18857877,-0.2519389,0.70996284,0.3566467,-0.38345328,0.4063355,-0.67097,-0.30993158,0.45963502,0.027504772,-0.225771,0.21489994,-0.31907454,0.11187628,-1.1083885,0.37632164,-0.22523624,-0.22370756,-0.40854737,-0.27929726,-3.9959195,0.23629437,-0.22037847,-0.04634908,-0.24173494,-0.15475388,0.17780535,-0.8205652,-0.71913487,0.21773131,-0.05618,0.805749,-0.16544661,0.3350676,-0.09476354,-0.45021668,-0.30923453,0.20618184,-0.07737406,0.29504043,0.06769648,-0.3430402,-0.0705866,-0.14159398,-0.48101854,0.17438757,-0.56875116,-0.56238085,-0.039743915,-0.49819472,-0.33386377,0.84076786,-0.29958165,-0.06576963,-0.07979467,0.0030519068,-0.13247702,0.27696612,-0.013864939,-0.11535398,0.017605713,0.0027565013,0.12760149,-0.24437521,0.16137643,0.06636111,0.41909027,0.27003938,-0.32239607,0.20234263,0.5010024,0.66122085,-0.07923602,0.723497,0.2940649,-0.1204733,0.30291572,-0.36287645,-0.2084152,-0.48547292,-0.5664267,-0.21468614,-0.5380668,-0.5228998,-0.15384862,-0.30586925,-0.8213524,0.6182623,0.12801072,0.17971891,-0.21867807,0.4310949,0.5127099,-0.22984679,-0.08118367,0.07672917,-0.23227112,-0.5511901,-0.21172063,-0.53999925,-0.37719738,0.18682034,0.90509033,-0.43340847,-0.00783094,0.06667915,-0.06925466,0.077376805,0.09216819,0.021837158,0.029316245,0.29318318,-0.054888368,-0.70571345,0.67784405,-0.37941727,-0.30901048,-0.6334341,-0.05612276,0.5844315,-0.68937445,0.37121126,0.52178675,0.07366806,0.24462022,-0.5956073,-0.011473556,0.14698517,-0.1958102,0.27482608,0.34920967,-0.829186,0.512631,0.35446763,-0.25344166,-0.64055634,0.78757143,0.043572735,-0.28253493,-0.18724556,0.31705365,0.37774873,0.038601056,-0.43789795,0.2788683,-0.6704965,0.3047631,0.19500333,-0.031164499,0.5155478,0.1329865,-0.24702804,-0.7766296,-0.043353636,-0.53880334,-0.29432502,0.22275461,-0.013325945,0.14464734,0.1150649,0.28925592,0.29316878,-0.8186715,0.17091496,0.046798382,-0.28949073,0.3398229,0.4608933,0.5874767,-0.4600565,0.5543153,0.051422764,0.115602165,0.13448577,0.08155334,0.5047391,-0.066945694,0.3859836,0.21808648,-0.2708563,0.16184983,0.7415549,0.11558101,0.29807353,0.33078578,-0.041178357,0.0517554,0.17051078,0.2945616,0.21191078,-0.5947477,-0.01303415,-0.046168167,0.16301781,0.57746994,0.30441085,0.20809126,0.040943515,-0.21090424,-0.07472147,0.36867806,0.034466583,-1.4410915,0.38665548,0.25291252,0.68452865,0.4966983,0.054124355,0.09488908,0.25680438,-0.20130654,0.1911994,0.2802948,0.06835101,-0.43143046,0.57949895,-0.6769473,0.43189895,-0.107649244,-0.025709828,-0.026798764,-0.17421383,0.42525664,1.0509876,0.0014473498,0.052252572,0.031194462,-0.24169636,0.10612022,-0.4405822,-0.09139514,-0.64360785,-0.115086,0.78776544,0.47625753,0.28784955,-0.13582191,0.020359334,0.12771,-0.10046884,0.039628003,-0.08571816,0.33530453,0.05792935,-0.67323303,-0.37003025,0.6512391,0.14288993,0.28700185,-0.107976995,-0.271434,0.37597963,-0.09734816,-0.054503605,-0.0014666418,-0.7638385,0.08735153,-0.45049158,-0.4591838,0.54111165,-0.22093783,0.14998828,0.22380714,0.09419621,-0.16280036,0.3921803,0.0884243,0.7168341,0.015210251,-0.2553862,-0.38833964,0.3441004,0.24599873,-0.34097922,-0.14664222,-0.2512058,0.25254604,-0.6398173,0.47289515,0.10996407,-0.37284562,-0.119728476,-0.035408173,0.043384463,0.4386036,-0.11728539,-0.22721075,0.0061246804,-0.22503655,-0.17930023,-0.24757588,-0.2750681,0.18633018,0.2973193,-0.08412737,0.04243527,-0.04006957,-0.16673927,0.28513765,0.10834304,0.3382745,0.41676545,0.11946597,-0.22800219,-0.29374543,0.23565048,0.54719263,-0.3146958,-0.16159044,-0.42321786,-0.60175055,-0.4226029,-0.023335734,-0.1905818,0.3387073,0.22269206,-0.09786165,0.59047896,0.17518282,1.2231674,0.13731124,-0.4313723,0.056838084,0.69439393,0.026491499,-0.20686269,-0.42186865,1.3540615,0.47224018,-0.3394055,-0.24150927,-0.2759434,-0.108002014,0.24263422,-0.3560029,-0.23098314,0.021602595,-0.5387009,-0.3403634,0.27015647,0.24963166,0.21039997,-0.08388597,0.033095848,0.36327472,0.08602912,0.21866238,-0.7087204,-0.28051093,0.31900716,0.41980556,0.036545563,0.09791901,-0.43279442,0.3625137,-0.60236806,-0.03197514,-0.39011252,0.27271992,-0.26617715,-0.43111432,0.22323568,0.18467398,0.40725288,-0.29510733,-0.47807357,-0.18796508,0.24497934,0.23015903,0.17311142,0.651287,-0.23254383,-0.06950254,-0.21517813,0.5204136,1.3059176,-0.14675952,-0.020258233,0.57793665,-0.3510855,-0.6846449,0.32006696,-0.47654918,0.31654796,-0.16647439,-0.31806415,-0.7585921,0.28219035,0.032599706,0.23479342,0.1635449,-0.7067669,-0.27577505,0.18366045,-0.2523875,-0.30807707,-0.31961817,0.18502259,0.98280674,-0.33950242,-0.17923056,0.14413111,0.22042648,-0.17444627,-0.6124285,-0.13670029,-0.22457747,0.35981438,0.05516478,-0.26726818,-0.12936445,0.034812737,-0.39109623,0.27785215,0.2523305,-0.27605164,0.29877377,-0.42877474,0.013940115,1.0104351,-0.30811268,0.1767798,-0.42407992,-0.46834937,-0.7554078,-0.4079754,0.29528302,0.023218244,-0.005066635,-0.5082899,-0.0059464574,-0.064350024,-0.10310823,-0.19554813,-0.23197426,0.50013214,0.105164744,0.37453339,0.13526396,-0.9734192,0.1449272,0.16258776,-0.3318947,-0.74204737,0.54371977,-0.22410615,0.8390785,0.13241193,-0.005726786,0.5049229,-0.6765973,-0.08063764,-0.29132104,0.25366607,-0.89516735,0.17792107,617 -868,0.4248058,-0.24971986,-0.7452274,-0.20822312,-0.075928636,-0.10626746,-0.36919376,0.07747961,0.17784047,-0.67987543,-0.039111793,-0.009790669,-0.10865935,0.21171309,-0.2099027,-0.74569225,0.11310021,0.2710066,-0.699728,0.834338,-0.43190345,0.30864528,0.04787922,0.1757614,0.06233242,0.23380609,0.49385062,0.06550242,-0.19676079,-0.37488067,0.26005343,-0.12883885,-0.5955669,0.5766737,-0.026220283,-0.55111456,-0.10598099,-0.3318216,-0.37751555,-0.7106878,0.33441916,-0.8952581,0.5496529,0.058095235,-0.18107896,0.135742,0.066830516,0.32189292,-0.17664905,0.27530155,0.14558856,-0.2683253,-0.3866159,-0.46724284,-0.09339265,-0.38404188,-0.5381782,0.04158056,-0.6789654,-0.048115153,-0.31909063,0.09591428,-0.33813143,0.14697883,-0.31571302,0.68354446,-0.3757132,-0.21995717,0.19785166,0.01978224,0.27713743,-0.76914716,-0.3368381,-0.22797072,-0.0016446585,-0.16021876,-0.29198268,0.25978068,0.01876475,0.5096819,0.19157624,-0.35225716,-0.13904457,-0.30184385,0.425192,0.3449109,-0.1313171,-0.44920504,-0.31395903,-0.16338414,0.12678248,0.20926835,0.24898507,-0.44546726,0.17864233,0.030961959,-0.4301232,0.54677194,0.5916646,-0.19410117,0.012284358,0.2298364,0.5694849,-0.20166455,-0.20344692,0.15597214,-0.19510937,-0.43243954,-0.4028989,0.18835543,-0.03669322,0.5288797,-0.30475143,0.27534035,0.42844924,-0.36599544,-0.2162565,0.2607278,0.08019499,-0.07218329,-0.39819777,-0.47176436,0.48353818,-0.6734648,0.019388974,-0.4830985,0.9780037,-0.09332297,-0.6968725,0.29389626,-0.5238202,0.13675,-0.050803978,0.77300215,0.55683815,0.42409858,0.101711236,0.8141825,-0.59529036,-0.0023262154,-0.16278465,-0.35260153,-0.28508133,-0.086172186,0.096874624,-0.2772527,-0.036446493,0.026734302,0.077420704,-0.121462055,0.64418733,-0.3742998,-0.26392487,0.009523955,0.71516484,-0.44932425,-0.011827539,1.0420516,1.4516373,1.2457502,0.27894834,1.4597164,0.2585052,-0.15650338,-0.50950116,-0.12940273,-0.89689803,0.35763565,0.3468449,-0.056183204,0.37985063,0.040401448,0.04429363,0.36407247,-0.527908,-0.120552875,-0.18144445,0.6346938,-0.23578902,-0.18712904,-0.2816714,-0.06722016,0.21581493,-0.08056169,0.13193937,0.3672432,-0.26229846,0.21800947,0.240104,0.84881526,-0.34129426,0.19716714,0.1379771,0.28540257,0.20487295,-0.11270734,0.1872375,0.061441332,0.40196827,-0.13368303,-0.78467447,-0.10646125,-0.32766214,-0.7282854,-0.3543136,-0.2265919,0.12655158,-0.08044907,-0.15855615,-0.15396462,-0.18164118,-0.44409016,0.17233711,-2.2030962,-0.2282146,-0.2235096,0.1656952,-0.2594414,-0.3043636,-0.0062689832,-0.481596,0.6324153,0.2883953,0.47607747,-0.587064,0.6348531,0.5894516,-0.30408815,0.16310738,-0.6695544,0.024805104,-0.34734926,0.34657755,-0.027992338,-0.25641546,-0.10511205,0.00070670247,0.49970254,-0.03953698,0.16349669,0.41509488,0.3134816,-0.13799907,0.49634728,0.26790866,0.6008069,-0.7023983,-0.14561728,0.32842693,-0.40490702,0.15756379,-0.18441583,0.12355914,0.35614768,-0.7099276,-0.6404351,-0.68633837,-0.31835356,1.3047472,-0.2603766,-0.65843636,0.11115699,0.090509914,-0.39804542,0.054934908,0.08882988,-0.2751133,0.037211712,-0.902186,0.19538514,-0.23492508,0.14879413,-0.13313933,0.076116964,-0.7229077,0.670669,-0.015143623,0.44873324,0.44903073,0.3149152,-0.49401262,-0.33561444,0.13304318,1.3168523,0.4211981,0.13215053,-0.17458482,-0.106416024,-0.15567355,-0.10737812,0.30610147,0.5692351,0.83643866,-0.038216855,0.057771433,0.5436252,-0.100790344,0.11710104,-0.060053665,-0.59225905,-0.26671156,0.026185205,0.75879043,0.39305153,0.0685701,0.38326654,0.039286632,0.32666454,-0.38959405,-0.3678335,0.6238903,0.9429345,-0.140961,-0.51135004,0.7590506,0.48182642,-0.38448736,0.65935344,-0.53099173,-0.54568714,0.27979305,0.04228246,-0.33233628,0.07118765,-0.5309417,0.33304736,-1.0369784,0.39550337,-0.59301305,-0.64029783,-0.60916615,-0.44254223,-2.884741,0.33508387,-0.35770857,0.041634742,-0.26612225,-0.20959277,0.26212314,-0.33895954,-0.641294,0.27699745,0.059439465,0.6532829,-0.007901554,0.12784058,-0.076846175,-0.13583827,-0.16077273,0.13174848,0.10625401,0.13066778,0.1540962,-0.45435905,0.10746759,-0.19490172,-0.32577053,0.039867837,-0.36632153,-0.3664507,-0.074248634,-0.68046856,-0.53966993,0.54169065,-0.27176514,-0.031701867,-0.319837,-0.112079106,-0.06442284,0.3493152,0.008079289,0.3026633,0.17982095,-0.23905693,-0.08018619,-0.313264,-0.07843362,-0.1317144,0.32573935,0.36029303,-0.4892892,0.060341615,0.20711704,0.7377272,0.14562918,0.632718,0.31374204,-0.19531949,0.36140737,-0.19299173,-0.38659716,-0.8175978,-0.39274737,-0.019760603,-0.33544192,-0.50217277,0.0032777488,-0.34803557,-0.918592,0.68852973,0.054204207,0.21635674,-0.059101265,0.42185712,0.12713884,0.14961405,-0.17761034,0.0039883927,-0.22335805,-0.3048395,-0.32419875,-0.92642856,-0.3252417,-0.10823908,1.0123723,-0.039651666,0.021564415,0.25778565,-0.1645413,0.16629006,0.384279,0.039892226,0.16311422,0.42406318,0.053501423,-0.54901934,0.36954522,-0.083991684,-0.12385374,-0.4964606,0.18623936,0.894094,-0.45474243,0.557008,0.6844623,0.23333336,-0.16786051,-0.50335324,0.023423618,0.2178555,-0.171019,0.67540526,0.41956398,-0.8450795,0.654175,0.34728345,-0.16939431,-0.8283413,0.5484217,0.102267705,-0.16922294,-0.051291395,0.50889677,-0.20409568,0.07763081,-0.30049664,0.32088825,-0.14928938,0.27180037,0.10485345,-0.1333359,0.37283015,-0.27200353,-0.41630498,-0.534181,-0.059568927,-0.72975516,-0.035044145,-0.07911015,-0.15849182,-0.041229066,0.25968608,-0.1644382,0.49177256,-0.18627836,0.29203036,-0.09768942,-0.47752407,0.5510275,0.57103544,0.26623538,-0.48892578,0.8006029,0.09336895,-0.15671422,-0.54957277,0.19728108,0.5980789,0.11392269,0.52315336,0.27088845,0.21818127,0.4884573,0.6556506,0.51578754,0.49923444,0.28775844,-0.047775913,0.18349154,0.17370705,0.39850926,0.04486716,-0.26159057,-0.27054855,0.07236525,0.17875625,0.33202335,0.02214007,0.62498873,-0.067956835,-0.28801593,-0.09968376,0.26375046,-0.35340324,-1.3989582,0.6669741,0.11949769,0.6495853,0.7399523,-0.13519742,0.18559074,0.34190592,-0.2781255,0.075253345,0.110391654,-0.040995862,-0.23106313,0.656014,-0.43607077,0.23208596,-0.14816363,0.16215426,-0.1282019,-0.07571436,0.51033324,0.83045554,-0.16852893,0.2962752,-0.24240516,-0.19554873,0.170433,-0.41236198,0.15535556,-0.23468168,-0.36340055,0.9331241,0.1863593,0.46296135,-0.14902616,-0.12370119,0.20836622,-0.094431035,0.110955656,-0.042849492,-0.107878864,-0.02760764,-0.67584276,-0.32104254,0.48278078,0.2879187,0.13776384,0.19227816,-0.1672744,0.29881236,0.1676292,0.1089584,0.070800856,-0.5804541,0.16499394,-0.12470296,-0.30553886,0.25377843,-0.5184865,0.023789681,0.255652,0.1155869,-0.42560366,-0.0873215,0.12211295,0.41257808,0.094846375,-0.29439476,-0.01439774,0.06692437,0.31386334,-0.24601026,0.1356671,-0.36056316,0.15268825,-0.93222016,0.5448724,0.027460193,-0.36952186,0.26118335,-0.19408135,-0.15983301,0.44845596,-0.3601346,-0.19009013,0.30643794,-0.08450786,-0.00351351,-0.4635422,-0.19978446,0.24446811,0.07249769,0.16835158,-0.14016028,-0.024732957,-0.01483797,0.36079502,0.060176726,0.03389254,0.28793937,0.34063217,-0.5731257,0.015033044,0.19878484,0.51443094,0.053456094,-0.05288419,-0.22268927,-0.42391506,-0.13733779,0.2442097,-0.12398728,0.13870569,0.05940335,-0.4667695,0.74501103,0.27246177,1.1146355,0.07854301,-0.3940784,-0.012835045,0.4987626,-0.14159189,-0.21050708,-0.11444952,1.0658242,0.64264864,-0.30418232,-0.19602178,-0.7882896,-0.036214396,0.083661586,-0.18126754,-0.38576767,-0.014699128,-0.5535436,-0.41944695,0.23624915,0.5029234,-0.15897934,-0.031865668,0.20384924,0.4573284,0.19789653,0.27867666,-0.6584634,0.039669245,0.20726629,-0.12120835,0.032581553,0.11723068,-0.50667125,0.22111996,-0.9036135,0.2047668,-0.06983799,0.04463464,0.039075155,-0.31920764,0.371634,0.22861083,0.17951693,-0.50548184,-0.30059674,-0.118773215,0.41592738,0.14700292,0.11349839,0.8037894,-0.19694386,0.22427945,0.13625811,0.3194809,1.1426512,-0.00950664,-0.11003546,0.03429308,-0.45105395,-0.873267,0.27037504,-0.37709394,0.030353954,-0.09775164,-0.51833385,-0.5906639,0.25257912,0.11602336,-0.14286943,0.38845685,-0.6534655,-0.18994527,0.21190323,-0.23209196,-0.3236527,-0.25116,-0.097874306,0.62387925,-0.23094857,-0.16494569,0.0055392087,0.37136436,-0.32522163,-0.63367575,-0.14843757,-0.33903107,0.5030146,0.10613811,-0.071923696,-0.0442667,0.1359802,-0.49766108,0.21066011,0.38848102,-0.18600018,0.096268475,-0.08731779,-0.076774426,0.51941305,-0.21410467,0.21994583,-0.43564788,-0.47007382,-0.8923054,-0.195751,0.313992,-0.01658071,-0.031671464,-0.67158294,-0.08813467,-0.12004992,0.1679194,0.13179228,-0.44151962,0.3947741,0.21358687,0.44744816,0.081754215,-0.8726831,0.18822956,0.20185502,-0.120572366,-0.3328332,0.467386,-0.11033102,0.61875564,0.058416266,0.16980062,0.18349005,-0.9078247,0.20331782,-0.19525748,-0.26927462,-0.6722142,-0.09301666,621 -869,0.22700723,-0.40521422,-0.41840506,-0.17476694,-0.20552798,-0.1338104,-0.33679783,0.6917226,0.072363354,-0.47570816,-0.2441176,-0.26704702,0.18620141,0.62175465,-0.26671052,-0.5981808,-0.108287245,0.21212064,-0.5523429,0.7089334,-0.3701867,0.11158935,-0.05789281,0.5282528,0.1621915,0.100178,0.08588316,0.2187459,0.19851828,-0.353081,-0.20421755,0.2917873,-0.6133383,0.02599711,-0.3154452,-0.8317414,3.431365e-05,-0.5272551,-0.2158957,-0.86496973,0.2660404,-0.9994127,0.79448014,0.25041717,-0.34301582,0.06229653,0.24846184,0.43324828,-0.21488793,0.03653483,0.10060584,-0.1368937,-0.009234023,-0.28894696,-0.26023704,-0.6479197,-0.72381574,-0.096830904,-0.5426991,-0.08782304,-0.030260682,0.25411338,-0.27726433,0.14545055,-0.19511212,0.39039746,-0.61084175,-0.077871524,0.2834805,0.0016626865,0.42592168,-0.5272338,-0.13498338,-0.16006017,0.24554245,-0.30754265,-0.28281578,0.34006193,0.1474572,0.36140123,-0.07851574,-0.27243814,-0.28832647,-0.02276376,0.037348267,0.6176348,-0.1641938,-0.67197466,-0.22091286,0.013839061,0.24210651,0.4731153,0.17171258,-0.24384479,-0.13245128,-0.02370636,-0.0535191,0.3851579,0.43156075,-0.31568274,-0.33208546,0.13210075,0.55464333,0.22243804,-0.18547387,0.034209292,0.10340861,-0.71834725,-0.22269003,0.07279334,-0.19378375,0.6678879,-0.19880848,0.23444045,0.5164608,-0.09611259,-0.19016308,-0.16260646,-0.0650445,-0.29244828,-0.16396482,-0.48066208,0.5148695,-0.36228576,0.3359243,-0.49128076,0.50616574,0.11021642,-0.6367262,0.2695516,-0.81725097,0.09729708,0.05270968,0.5856793,0.51490766,0.5085892,0.51790893,0.5877846,-0.23052247,0.10011462,-0.15186122,-0.21736377,-0.090827055,-0.23784094,-0.071822956,-0.45587453,-0.10680499,-0.103092015,-0.17879307,0.10761341,0.69535834,-0.65663785,0.023262061,0.19773082,0.78749704,-0.3036497,0.01578963,0.9919188,1.0530382,0.99403876,-0.022725351,1.3190159,0.07434426,-0.28769943,-0.046080787,-0.08466751,-0.7028486,0.17593913,0.4609845,0.058423895,0.5642858,-0.027852645,0.032878846,0.521653,-0.61541176,0.086271234,0.010179813,-0.024707109,-0.035577923,-0.2694111,-0.5397503,-0.049475376,-0.0094683645,0.028855095,0.19971664,0.2801621,-0.047698025,0.60615283,-0.0039722323,1.5764656,-0.081666,0.14757265,0.22975993,0.37660465,0.2323121,0.027532926,0.016627409,0.23547924,0.38253072,0.20343237,-0.5263842,0.12605038,-0.21593045,-0.57319605,-0.1395766,-0.23723823,-0.17897582,-0.13238126,-0.58496326,-0.22858821,0.0317741,-0.07098044,0.3681079,-2.4503164,-0.2646592,-0.170007,0.3044298,-0.19302337,-0.43299055,0.043785412,-0.42462087,0.65050524,0.5005322,0.4303167,-0.7757296,0.5897501,0.5162061,-0.6100412,0.05296768,-0.70351523,-0.22647546,-0.022518648,0.35689893,0.040933926,-0.06614778,0.2537954,0.3235918,0.5294085,-0.08993256,0.196088,0.22991471,0.4408138,-0.36028183,0.6148633,0.00060338277,0.40196598,-0.37568298,-0.18260121,0.33080286,-0.38846374,0.31980547,-0.06377131,0.12276604,0.538632,-0.4754034,-1.0266495,-0.59604764,-0.31819293,0.6701347,-0.098394305,-0.4599721,0.17754833,-0.4281468,-0.27610025,-0.2928773,0.7444537,-0.26002714,0.2829543,-0.90812284,-0.12007194,-0.2368174,0.31217596,0.02624618,-0.039982256,-0.6713729,0.7872389,-0.009991919,0.5466557,0.65278727,0.024822101,-0.49387202,-0.55006623,0.106933974,0.68672234,0.45062086,0.18223341,-0.27091694,-0.2700756,-0.30312523,0.1034647,0.014348224,0.5955583,0.6317508,-0.23411262,0.24277484,0.23254241,0.1056348,-0.05066152,-0.33125904,-0.2335909,-0.06032446,0.2648692,0.597127,0.832375,-0.2760352,0.38158914,-0.09128144,0.7105775,-0.18343993,-0.481595,0.2914956,1.2038366,-0.049542498,-0.13401417,0.9427553,0.7127308,-0.19477715,0.48783317,-0.81047875,-0.27464464,0.49123326,-0.043066144,-0.58421654,0.3062261,-0.23898678,0.20573293,-0.9841852,0.19562948,-0.3816041,-0.24769567,-0.9858675,-0.2778317,-3.3755782,0.25789222,-0.23607545,-0.23644686,-0.097376384,-0.39830008,0.20101668,-0.71456075,-0.81455356,0.33064386,0.07558389,0.5934368,-0.19352578,0.033995796,-0.29648483,-0.43639517,-0.15066208,0.35118738,0.20272063,0.29080975,-0.24493138,-0.6990368,-0.17064023,-0.18369828,-0.7013604,-0.017766831,-0.7319868,-0.25645858,-0.2127681,-0.6637925,-0.18915583,0.6212378,-0.04895697,0.09318775,-0.19022894,-0.12727924,-0.04156913,0.42937407,0.07574526,0.22465687,0.08291957,0.013755719,0.13546807,-0.13044868,0.11720718,-0.034581777,0.16293709,0.22862375,-0.17071815,0.28547046,0.39560866,0.73054296,-0.08404415,0.9184089,0.5905881,0.026182532,0.35601076,-0.18410398,-0.47057927,-0.75781536,-0.34867692,0.027502531,-0.44076845,-0.6535921,-0.17311786,-0.34521398,-0.8325515,0.8786046,0.024235612,-0.10045242,0.020129085,0.19755845,0.37204924,-0.4121084,-0.21866603,-0.09555674,-0.15232165,-0.41844198,-0.4065479,-0.6156253,-0.56324536,-0.29649875,1.1469411,-0.12174467,0.08553236,0.15048946,-0.080815054,-0.012194465,0.48808506,0.08472657,0.08697929,0.4862442,-0.0066591054,-0.71198463,0.61090654,0.078844644,-0.41077065,-0.6458529,0.22297585,0.52961105,-0.63748133,0.5908196,0.33660355,-0.06315472,-0.4014624,-0.6918478,-0.18298687,0.049583945,-0.27494282,0.62614316,0.38130245,-0.66962934,0.350565,0.3331379,-0.23458104,-0.683966,0.7614153,-0.20337117,-0.56503373,-0.06126076,0.41031405,-0.005704785,0.06735919,-0.28537536,0.33147413,-0.33517492,0.21614182,0.25397816,-0.028676376,0.23877186,-0.22391786,0.101232655,-1.1302906,0.24324365,-0.62087196,-0.31946298,0.25730133,-0.12373052,-0.054600615,0.38840815,0.08651116,0.29310372,-0.31157804,0.20466268,-0.16671412,-0.4366645,0.21840721,0.40544006,0.4161726,-0.40056053,0.6958847,0.07923178,-0.15598287,-0.22031462,0.00021173556,0.45713177,-0.11639566,0.61746365,-0.004015863,-0.29863486,0.2154585,0.9288071,0.28095576,0.44256303,0.38740218,0.11116745,0.12594295,0.0971202,0.21302414,-0.006269157,-0.5406628,0.07979755,-0.26745158,-0.018022278,0.5486381,0.057666954,0.2821881,-0.17082155,-0.4223356,0.00893347,0.30052507,0.21649642,-1.501276,0.065379255,0.27893403,0.82654,0.6559302,0.23322193,0.07887354,0.52833813,-0.46387717,-0.17453778,0.38789153,0.22800769,-0.39072105,0.8015034,-0.76613164,0.47909975,0.039931048,-0.01772844,-0.23277692,-0.26692775,0.44630733,0.77420324,-0.09447015,0.05352923,0.05454852,-0.11562862,0.23184943,-0.44496104,0.013360669,-0.27757147,-0.34496245,0.79795694,0.5817826,0.5642986,-0.24498224,-0.040793527,0.32854506,-0.13287781,0.15054673,0.13779803,0.30954263,-0.11183473,-0.5019869,0.03956449,0.6374294,-0.14857359,0.07219967,-0.028939828,-0.5299892,0.24643528,-0.0856136,-0.12550116,-0.10192749,-1.0096002,0.011526763,-0.5705472,-0.42519712,0.6306322,-0.17640877,0.1920187,0.29721788,0.17661272,-0.2602742,0.352038,-0.0827122,0.9369257,0.33773243,0.16170819,-0.046431053,0.17896855,0.21030276,-0.37325883,0.13245611,-0.16927592,0.18960457,-0.5413107,0.42934665,0.13841675,-0.45726255,0.10607773,-0.03403078,-0.038920134,0.38972214,-0.13934685,-0.33108357,0.07706418,-0.18954124,-0.1062564,-0.482888,-0.09560577,0.38563314,0.071296476,0.43775246,0.021973118,0.17583096,-0.17189692,0.777849,-0.03660338,0.38825044,0.396392,0.14661567,-0.43786803,0.15962805,-0.083990835,0.6013519,-0.3661643,-0.10785475,-0.12019709,-0.5697246,-0.45161292,0.09889128,-0.12002347,0.5030357,-0.054683384,-0.12459891,0.81169087,0.13076161,1.0649915,0.040065344,-0.5895925,0.19510312,0.5189107,-0.014878591,-0.20087437,-0.31940985,1.1052212,0.49331346,-0.18502362,-0.1755534,-0.24041687,0.010092762,0.16240185,-0.21873985,-0.12004506,-0.09131435,-0.55936867,-0.04330593,0.25003204,0.33075365,0.32047266,-0.17076279,0.33442017,0.44559625,0.047388364,0.28698862,-0.5036777,-0.05318168,0.47763765,0.18471074,0.036351413,-0.09247493,-0.44902658,0.38535795,-0.21990485,0.10297164,-0.61868215,0.12124103,-0.38210103,-0.30960134,0.23015095,-0.03462264,0.2159748,-0.3658804,-0.16695707,-0.19097133,0.3561891,0.29021597,0.15523025,0.66451687,-0.2577805,0.0843957,-0.06735712,0.39805925,1.0795156,-0.5915489,-0.15508322,0.3074945,-0.55313975,-0.5632224,0.45545873,-0.44451487,0.08619671,0.15201825,-0.26021066,-0.61067003,0.17130506,-0.021100193,0.08207961,-0.09345645,-0.6722749,-0.06741937,0.45447993,-0.38876596,-0.2458861,-0.5235351,0.23004688,0.77692884,0.002858496,-0.43787464,0.1476308,0.22093801,-0.31584647,-0.53351945,0.021974564,-0.275012,0.3954424,-0.066772275,-0.35935274,0.010014449,-0.111896574,-0.42238453,0.037692916,0.37525642,-0.35871613,0.16923511,-0.5931969,-0.122194886,1.2443713,-0.34454164,0.10881876,-0.5395601,-0.55704993,-1.0222101,-0.28802478,0.50776863,0.29356506,0.008631863,-0.70582026,0.15925698,-0.07746789,-0.27436686,0.06368375,0.05597417,0.3956093,0.20205878,0.7173316,-0.07554353,-0.69959134,0.24843533,0.11084107,-0.056436945,-0.34671172,0.631478,0.1423167,0.8274887,0.032049786,0.13017443,0.2538181,-0.5274179,0.1240476,-0.1316337,-0.15862885,-0.71447223,-0.06608072,626 -870,0.35702574,-0.20824464,-0.35261044,-0.18529737,0.013686091,0.04642023,-0.1809002,0.6944024,0.29491618,-0.5351984,-0.16944988,-0.21394463,0.042027023,0.2859977,-0.13150316,-0.5939576,0.0053628436,0.087819,-0.108688585,0.31886616,-0.53744453,0.3451576,-0.20149024,0.40794984,0.2502585,0.13944633,0.23327471,-0.19313496,-0.18310441,-0.19667022,-0.21990883,0.43730012,-0.2734445,-0.04444097,-0.15171461,-0.47074592,0.09762735,-0.4279643,-0.3468175,-0.70177656,0.4606001,-0.7715113,0.48198304,0.21904375,-0.23094086,0.24168392,0.033782665,0.17565675,-0.28056905,0.14544481,0.2009896,-0.13793656,0.0933372,-0.08819145,-0.2509464,-0.402625,-0.48405287,-0.00087397546,-0.49746108,-0.28361264,-0.24054389,0.14515057,-0.36459717,-0.17641897,0.08138909,0.29251072,-0.4503621,-0.21749611,0.02751281,-0.22405173,0.48146367,-0.71975094,-0.36832103,-0.11526355,0.2804161,-0.45497808,-0.12988476,0.23798394,0.30554998,0.51416856,-0.2071733,0.033533666,-0.51221865,-0.081795715,0.014107227,0.63032895,-0.29900494,-0.77577186,-0.09725187,-0.110402614,0.25331715,0.37987706,0.09584994,-0.093687005,-0.10878187,0.07320157,-0.38170087,0.32929063,0.5296715,-0.3538566,-0.29720482,0.2603912,0.30184707,0.2650933,-0.11416441,0.038792957,0.11802345,-0.5075928,-0.08677867,0.0376249,-0.20966744,0.6703375,-0.073134445,0.3837553,0.6518099,-0.20732503,0.31745437,-0.14415903,0.09554514,-0.13046342,-0.23099394,-0.34046963,0.14779523,-0.44010743,0.24091266,-0.18977635,0.9445345,0.15149505,-0.63832635,0.36855963,-0.52520084,0.08111666,-0.16651158,0.59469265,0.5321757,0.13115437,0.47381258,0.54207313,-0.43011498,-0.030239344,0.13689047,-0.21127026,-0.01751413,-0.06052335,-0.20262487,-0.40890214,-0.025190813,0.25701743,-0.003605922,0.2915387,0.52981764,-0.48653495,-0.00039801747,0.23993117,0.8316593,-0.3371122,-0.0029900868,0.60096294,1.1218033,0.9637231,-0.09141769,1.2677114,0.29666233,-0.3506713,0.17783314,-0.2427233,-0.72777766,0.23012936,0.3855119,-0.34827125,0.22687863,0.24087524,-0.07161248,0.36745432,-0.49612114,-0.06095388,-0.20944726,-0.044965684,0.09614816,-0.04350035,-0.59028953,-0.28032562,-0.14327495,-0.061606884,0.047994483,0.21628594,-0.2835867,0.258198,-0.06696344,1.4128361,-0.14091362,0.0662691,0.047659587,0.69244474,0.17551036,-0.020158418,0.064369954,0.4426616,0.43559596,-0.0031124402,-0.71469706,0.05102254,-0.29528055,-0.2988288,-0.14795803,-0.36728582,-0.09483675,0.30340227,-0.47828802,-0.17203788,-0.20435043,-0.3328198,0.40944996,-2.7905152,-0.15854219,-0.038893193,0.27890828,-0.18203478,-0.27621314,-0.08658842,-0.41870603,0.49167764,0.4384396,0.51341647,-0.6088808,0.11060515,0.5868849,-0.2696219,-0.20284583,-0.67279726,-0.13642134,-0.14830548,0.26757064,-0.011404197,-0.10022217,0.058295522,0.18251061,0.52487844,0.14921212,0.12140787,0.058754217,0.46224925,0.14727207,0.3797115,-0.025629437,0.5034394,-0.23558907,-0.23102665,0.2962543,-0.4399643,0.22597896,-0.1608737,0.07810507,0.36937034,-0.33643338,-0.92096704,-0.558636,-0.31464255,1.1914979,-0.03861619,-0.37019062,0.39623156,-0.16577792,-0.20129955,-0.23052764,0.61724335,-0.24443014,-0.10450823,-0.768688,-0.028431458,-0.084009975,0.15025042,0.1478783,0.009867151,-0.44792214,0.55427957,-0.023260677,0.31753394,0.41087213,0.13415149,-0.24033761,-0.53944844,-0.08054809,0.8861535,0.34952483,0.29415986,-0.21223794,-0.12739043,-0.19641592,0.07009167,0.14796762,0.36031273,0.86751753,0.04824863,0.21634561,0.31890753,0.07615141,0.12359018,-0.01478056,-0.37151143,-0.08411113,0.08339121,0.55669665,0.33683124,-0.24090451,0.38347042,0.0071865283,0.11303566,-0.43964696,-0.10713836,0.40803015,0.99976563,-0.09083775,-0.12492919,0.63889587,0.6165824,-0.3749063,0.4640135,-0.71125984,-0.25747576,0.6278443,-0.28337833,-0.50697434,0.17356162,-0.36876395,0.07829679,-1.0071908,0.28047016,-0.12845463,-0.38458297,-0.6752982,-0.16948612,-3.4981508,0.0365156,-0.35398865,-0.24909824,-0.13790645,-0.22549634,0.34418628,-0.6477923,-0.5041815,0.14741519,0.030738682,0.5276879,-0.030316673,0.040887218,-0.37579122,-0.22442578,-0.37510228,0.0869239,0.05796657,0.350423,0.15170747,-0.44803628,0.12240338,-0.09188882,-0.3542494,0.05158173,-0.4094771,-0.4527011,-0.05125296,-0.6096901,-0.25690377,0.7142954,-0.47612533,2.51246e-05,-0.20195602,-0.020525718,-0.18453759,0.35651425,0.23675358,0.21830218,-0.11651278,-0.020333083,-0.036567386,-0.2930067,0.38361105,0.07606575,0.125907,0.37644967,-0.1947798,-0.032094236,0.53149277,0.45859072,-0.061716724,0.8877616,0.5911907,-0.050536197,0.17706744,-0.43977585,-0.16647162,-0.5668047,-0.43126068,0.012728284,-0.32929066,-0.6098726,-0.21103711,-0.27432704,-0.8069906,0.54868793,-0.22206032,0.4979856,0.038600087,0.275165,0.3020865,-0.06370517,-0.035001863,-0.009848788,0.03556067,-0.5047098,-0.1558433,-0.67568046,-0.42305627,0.21658957,0.72199744,-0.29070774,0.07343615,0.2738408,-0.21338469,-0.11999903,0.029977,0.1186311,0.14993264,0.35943416,0.024580086,-0.73015255,0.3909646,-0.02127265,-0.20463772,-0.6884889,-0.08046831,0.5974838,-0.81215876,0.4752178,0.6492798,-0.02830709,-0.011092369,-0.5620339,-0.405118,-0.050339982,-0.07938043,0.26794654,0.11692074,-0.6000467,0.4524941,0.3070609,-0.18157715,-0.6859675,0.63662374,0.009221345,-0.40050742,0.09086796,0.34005412,0.16992839,-0.028884975,-0.07560933,0.28780824,-0.3650967,0.39535585,0.1837393,-0.09076027,0.61327285,-0.22236037,0.03357978,-0.7064491,0.17053418,-0.5667872,-0.053866494,0.19268191,0.10308635,0.11971727,0.2322148,-0.028557995,0.34973335,-0.37993848,0.09999826,0.032064795,-0.19353645,0.24486887,0.36193386,0.5482805,-0.31256023,0.5558513,-0.0038074404,-0.17645758,-0.0007357697,0.14012729,0.44783998,0.05175923,0.3385767,-0.10389469,-0.50784665,0.28686485,0.900677,0.3140287,0.462147,0.03179265,-0.04641262,0.3374807,0.31476897,0.119208604,0.14918108,-0.41626784,-0.19292043,-0.30944613,0.17470877,0.41142276,0.10246935,0.3763957,-0.20212056,-0.2906594,0.17963599,0.37828863,-0.019100964,-0.9087749,0.3421854,0.08104011,0.7419613,0.43233928,0.029290995,0.08060822,0.48365283,-0.13547106,0.06619273,0.49181786,0.109065354,-0.60336,0.6362641,-0.41865572,0.4787748,-0.13871773,0.04288676,-0.09214485,-0.16723351,0.4036592,0.6612668,-0.03629154,0.045403346,0.12287151,-0.35867286,0.07250547,-0.47106072,0.2298223,-0.6015584,-0.023498103,0.59792,0.4749105,0.11839867,-0.09404266,-0.009846219,0.12562416,-0.03566954,0.0070687085,0.0261346,0.105140306,-0.12571274,-0.8240824,-0.17606042,0.586807,0.06832328,0.03191073,-0.18878114,-0.22680847,0.32573316,-0.20523174,-0.01270629,0.00060051057,-0.5500702,-0.02125313,-0.38962147,-0.5011396,0.48280212,-0.2634202,0.40581954,0.22881985,0.10524061,-0.18529648,0.31675524,0.22548218,0.6481012,-0.1971017,-0.17992939,-0.53685004,0.021816865,0.36020637,-0.15816441,-0.33501896,-0.31491134,-0.034225307,-0.35148957,0.43341756,-0.09984374,-0.024650967,0.02120634,-0.23929107,-0.015397827,0.56554157,-0.14408301,-0.018960116,0.0076833665,-0.2271773,-0.26310423,0.011381954,-0.13591987,0.22924297,0.156182,-0.052667484,-0.2781245,-0.34171584,-0.20344162,0.32968882,-0.029619955,0.282065,0.37241268,0.15381815,-0.13951358,-0.29932407,0.050320413,0.44733143,-0.012404182,-0.03203976,-0.28809926,-0.5568707,-0.2867031,0.057249635,-0.250705,0.29702744,0.15660617,-0.3200531,0.73935443,0.04253379,0.8824474,0.062051523,-0.53283054,0.022383174,0.5638469,-0.09656357,-0.047952276,-0.2913967,1.0940998,0.5180669,-0.13856821,-0.22344379,-0.25944626,-0.04931668,0.24494426,-0.19496532,-0.17546912,-0.120508276,-0.66857386,-0.27349207,0.39750266,0.34554967,0.19683857,0.029965108,0.17519315,0.18128198,0.1904308,0.39211264,-0.58388305,-0.27017274,0.30874392,0.32332736,0.1743372,0.20455645,-0.30502966,0.41301224,-0.58486634,-0.07950928,-0.5033285,0.1538903,-0.32424197,-0.33486554,0.22901487,0.03546417,0.47188535,-0.17125864,-0.30633232,-0.21785472,0.43470132,-0.008454601,0.17045295,0.36583054,-0.27406546,0.00975686,-0.09363981,0.39816132,1.2066181,-0.16566564,-0.1949349,0.52063423,-0.30939847,-0.6057815,0.25320175,-0.53645176,0.045592308,-0.049293313,-0.18108411,-0.506998,0.23127373,0.19329302,-0.11480544,0.08072581,-0.3469166,-0.21687216,0.19382219,-0.19008677,-0.33774757,-0.32644728,0.08491242,0.6578098,-0.45450532,-0.21969122,0.014648825,0.52877194,-0.23743087,-0.65803987,0.11475384,-0.31790826,0.45988488,0.2787303,-0.3043542,-0.12355707,-0.040031765,-0.35952112,0.267196,0.29962125,-0.3574086,-0.019245172,-0.36017978,0.05020978,1.0139765,-0.09648872,0.00916855,-0.54740393,-0.32682464,-0.8015132,-0.38334,0.6951361,0.24622606,0.08495229,-0.5717922,0.24749513,-0.1853335,0.018866265,-0.12590064,-0.3303466,0.55260605,0.15377547,0.4563527,-0.15446867,-0.72807616,0.09044238,0.00028629228,-0.3771411,-0.5609029,0.5533461,-0.10338467,0.9614604,0.17913873,0.013657247,0.34587982,-0.28519732,-0.006042103,-0.2623601,-0.4084532,-0.80505484,0.025883049,627 -871,0.28476253,-0.29272214,-0.6586961,0.061589062,-0.5043722,0.062206466,-0.24787281,0.4132383,0.27185318,-0.19521976,-0.41791412,-0.15159772,-0.02760896,0.46334013,-0.14076556,-0.3794984,-0.23184772,0.23690014,-0.9113986,0.5049163,-0.4201922,0.25176653,-0.0021484394,0.53816,0.42812908,0.36090735,0.062339235,0.024738828,-0.4586011,0.09806994,-0.16848707,0.053354185,-0.55026394,-0.021900458,-0.34037828,-0.34898987,-0.17804694,-0.5170724,-0.3481697,-0.793026,0.36694634,-0.9694398,0.62918025,-0.26376125,-0.012169182,0.07601908,0.3109103,0.39478552,-0.28929994,-0.09160707,0.26067224,-0.24655704,-0.13369377,-0.19707523,-0.42016315,-0.29514095,-0.5160537,-0.084055774,-0.6310858,-0.16574173,-0.18211849,0.10582624,-0.25691876,-0.01725386,0.04198857,0.3586779,-0.438351,0.33145905,0.0989062,0.0735501,0.095447965,-0.5364916,-0.08389419,-0.26199678,0.5949182,-0.1775964,-0.29185244,0.49114904,0.2595456,0.08807526,-0.015485714,-0.069268025,-0.38830006,0.036057387,0.14529899,0.4407967,0.011716808,-0.40703678,-0.09525087,0.02342748,0.50878906,0.3990679,0.20657833,-0.17411572,-0.017127581,-0.2569197,0.022229375,0.7521954,0.4051461,-0.019748375,-0.29829973,0.3679324,0.71441597,0.4861038,-0.32382616,-0.25003627,-1.2040138e-05,-0.5855985,-0.09250023,0.1657208,-0.18070738,0.5106334,-0.04973412,0.24087413,0.8081818,-0.36023775,0.031448748,0.12823147,0.2529342,-0.1499234,-0.028159684,-0.25581774,0.12628679,-0.46568254,0.009215328,-0.10092989,0.42769256,0.17891152,-0.7132635,0.29182035,-0.65467435,0.120679736,0.009521879,0.47342992,0.7134857,0.70426273,0.5008507,0.628416,-0.04751569,0.29014698,-0.046704102,-0.42769837,0.055679142,-0.39047244,-0.032295775,-0.65018886,-0.17638819,-0.3906757,-0.2661174,0.12867175,0.5418996,-0.4257302,-0.08101777,0.020064453,0.74372154,-0.36233807,-0.20406991,0.87117624,0.99123985,0.88778955,-0.043264657,1.1624016,0.29186743,-0.25868425,0.18334766,-0.369939,-0.7288802,0.33690596,0.2617021,-1.2082311,0.5912028,-0.12604462,-0.06757461,0.04752603,-0.22727172,0.02262493,-0.059059348,0.11224848,0.1930813,-0.05153209,-0.1788336,-0.3633177,-0.18044905,0.018072665,0.1644804,0.2595699,-0.37626877,0.41548038,-0.057324678,1.5967368,0.07729929,-0.104399115,-0.0669707,0.73993427,0.1648281,-0.19627434,-0.37118992,0.49886373,0.3884678,0.14943624,-0.6166964,0.256542,-0.29392415,-0.443637,-0.23812963,-0.4101522,-0.25118622,-0.027874408,-0.32374397,-0.1822594,-0.15645736,-0.33192536,0.44192624,-2.4811332,-0.24180937,-0.030535122,0.39635095,-0.08510395,-0.23958881,-0.22448988,-0.49706045,0.2656676,0.12743534,0.50799274,-0.67322564,0.43632174,0.53762573,-0.6844565,-0.3415946,-0.65537536,-0.14219092,0.084669136,0.40279767,-0.2885125,0.067342885,0.26828638,0.053283036,0.5670894,-0.12197273,0.09032617,0.56898165,0.66264707,0.103774846,0.56893367,-0.056686353,0.58584887,-0.3477982,-0.25941524,0.26245594,-0.35455474,0.31963417,-0.15343797,0.10643216,0.7490618,-0.5379988,-0.97837514,-0.5058474,-0.102883376,1.068446,-0.25921205,-0.36374244,0.101977415,-0.6291116,-0.1243344,-0.08903625,0.70498705,-0.18722175,-0.08327041,-0.6546659,-0.07332379,0.0029080908,0.17039378,0.0892447,0.056511912,-0.16470224,0.5941935,-0.0043562204,0.3321235,0.14063783,0.18974149,-0.5823835,-0.48209575,0.30134353,0.66737264,0.12283859,0.055162553,-0.18621789,-0.30269945,-0.27738512,-0.15166691,0.11812202,0.44391724,0.5052074,0.0003134807,0.3223456,0.3355169,-0.14332075,0.024316542,-0.2745469,-0.23223482,-0.18986024,0.1860828,0.37280533,0.9334788,-0.123853855,0.88994426,-0.16718377,0.14647467,0.009549518,-0.6046323,0.8136711,0.86041874,-0.25326967,-0.16618443,0.47357428,0.52716786,-0.447705,0.44006643,-0.625427,-0.19799733,0.7244914,-0.21064542,-0.44387922,0.27078187,-0.1613644,0.027227625,-0.80614716,0.22641174,-0.29521778,-0.37606874,-0.38236102,0.12819166,-2.2296228,0.15342471,-0.1277199,-0.4536744,-0.32427427,-0.2199444,0.033125903,-0.6229311,-0.6502718,0.17567623,0.12758592,0.79295635,-0.07414394,0.1514238,-0.13407691,-0.37296608,-0.16506483,0.09839041,0.18243825,0.4671147,-0.32850304,-0.5617538,-0.09480634,-0.07366762,-0.5985692,0.065961964,-0.5317822,-0.35120964,-0.115008324,-0.65141886,-0.30992025,0.6861625,-0.5116692,-0.038107295,-0.23253171,0.094845146,0.092129,0.34682953,0.13001202,0.15473814,0.326313,-0.058543365,0.23336297,-0.17653692,0.39340022,0.03559268,0.2666386,0.057455804,0.030876277,0.46604526,0.36914423,0.88788825,-0.21308656,1.063563,0.3276874,-0.19108935,0.22438948,-0.32876042,-0.23216839,-0.58485764,-0.20273228,0.069522716,-0.34207654,-0.5151139,-0.0058802613,-0.35317957,-0.8741162,0.63716304,-0.12800126,0.26918048,-0.018764736,0.3609194,0.47011158,-0.3241354,0.07832948,-0.15016794,-0.15266536,-0.5494656,-0.29816878,-0.49429548,-0.5307787,-0.051331848,1.0243341,-0.33296812,0.039240256,0.005435427,-0.5456241,0.15585192,0.14324269,-0.20300543,0.31331494,0.16611783,-0.13698928,-0.6229895,0.22245729,-0.046265546,0.007687827,-0.55837137,0.1953597,0.6584453,-0.62848824,0.46902952,0.27658978,-0.18070002,-0.2931578,-0.40215275,-0.12748362,-0.08879694,-0.09530154,0.25247872,0.44826904,-0.7926383,0.3886492,0.19020641,-0.5214421,-0.73907495,0.4308138,0.038669754,-0.21726926,-0.08890126,0.31457096,0.19798954,-0.043843728,-0.6207456,0.17148608,-0.1823303,0.25585362,0.03655827,-0.04621007,0.01312833,-0.105101086,-0.36776876,-0.73345083,0.3824961,-0.20226157,-0.30875865,0.55219847,0.010385687,0.2062309,0.16658121,0.3189172,0.15591402,-0.27713677,-0.037391443,-0.12319633,-0.34357965,-0.027340084,0.38984442,0.5360162,-0.51790214,0.5135659,0.018319009,-0.30805346,0.41352287,-0.0049243444,0.35464695,0.13243832,0.32816446,0.3744751,-0.42403278,0.29490057,0.6917985,0.22541766,0.50135523,0.14010602,-0.09440426,0.21199779,0.026243245,0.39193416,-0.07084359,-0.49005303,0.18398185,-0.14451395,0.15326692,0.47707748,0.113793015,0.28107902,-0.032805115,-0.27669948,0.012802042,0.1380319,0.14895125,-1.5015448,0.23216777,0.35153428,1.0116833,0.35824975,-0.016038755,-0.11516293,0.82179576,-0.23482643,-0.008275342,0.62089187,0.13627595,-0.5603094,0.66098696,-0.6630971,0.6448292,-0.045140807,-0.065249644,0.21283613,0.08345276,0.36171404,0.91225106,-0.21890773,-0.03782138,0.22211762,-0.24636094,-0.08981439,-0.30973825,-0.020372232,-0.7315108,-0.30443016,0.78501487,0.2730128,0.34260508,-0.13671081,-0.070643015,0.025666445,-0.23821263,0.2366154,0.0679995,0.15680666,0.04875633,-0.66785336,0.03339532,0.40715012,0.04229437,0.26106223,-0.03231411,-0.22593047,0.08062837,-0.39837363,-0.04872681,-0.10014484,-0.91387254,-0.056164812,-0.21084283,-0.58989924,0.39739132,0.024607101,0.09561474,0.30913258,-0.0035872806,-0.3284691,0.666089,0.23064272,0.9066558,0.032680262,-0.17489706,-0.122312814,0.35468844,0.2917979,-0.2144094,0.18660973,-0.1845656,-0.09706775,-0.45742044,0.71566576,-0.03336237,-0.57765025,0.006532104,-0.20521636,0.08224826,0.5808318,0.02021502,-0.09237933,-0.22284405,-0.2402793,-0.5750117,-0.08582002,-0.29700992,0.118147224,0.45184803,-0.066242196,-0.313583,-0.00961676,-0.042252082,0.6160488,-0.16313118,0.64475274,0.29472655,0.29440188,-0.18730374,-0.16835727,0.17785303,0.68652034,0.10385878,-0.09931862,-0.6099276,-0.1811571,-0.34502256,0.36184415,-0.110001825,0.15590712,0.19763489,-0.34010717,0.81994146,-0.21488094,1.2196888,-7.331371e-05,-0.40054765,0.3380586,0.47319877,-0.023384163,-0.06748185,-0.37949893,0.8102601,0.34145334,-0.026664311,-0.11558596,-0.47413445,-0.09453404,0.30941823,-0.35206208,-0.25292265,-0.022821898,-0.45200154,-0.37692943,0.34171107,0.11813035,0.18014772,-0.18709175,0.24977273,0.29339057,0.08657459,0.16747338,-0.5081455,-0.20374669,0.3496044,0.3139551,-0.13238502,0.24118012,-0.41706967,0.43209028,-0.53715813,0.17603713,-0.3568648,0.24734606,-0.24801446,-0.3891511,0.13673772,0.31313804,0.42959437,-0.21488172,-0.2901122,-0.37478253,0.5418791,0.04234147,0.29059365,0.36628485,-0.3189355,0.11155996,-0.09797149,0.44839588,0.94355756,-0.38748765,0.06218639,0.30012745,-0.5135603,-0.6298744,0.5859906,-0.50128824,0.071079575,0.062218446,-0.12679623,-0.48983338,0.22512646,0.16521649,0.2807152,-0.14354058,-0.5715391,0.014387965,0.24078232,-0.17771254,-0.124737225,-0.2678477,0.1791352,0.675831,-0.17098849,-0.23826575,0.13608114,0.34257686,-0.19727986,-0.12216863,-0.09473645,-0.26339307,0.40376195,-0.15658306,-0.3715086,-0.21154113,0.008795033,-0.4865617,0.1347708,0.036639094,-0.4610741,0.086235255,-0.115235336,0.014735997,0.9328356,-0.47240868,-0.05256805,-0.3408337,-0.52853316,-0.81445307,-0.3042786,0.029448926,0.22778906,-0.15518199,-0.7258745,0.21366608,-0.17016791,-0.4713103,0.105541624,-0.6448939,0.29016647,0.08570961,0.2891827,-0.29978454,-0.9637027,0.24781375,0.20282662,-0.28642288,-0.7796877,0.55904835,-0.14343393,0.8542225,0.027594678,0.039915975,0.13021447,-0.21243131,0.02093924,-0.26907152,-0.0473603,-0.52199596,0.0672883,632 -872,0.45625365,-0.32920998,-0.45994094,-0.15675546,-0.26815042,-0.31285688,-0.3545424,0.15429084,0.2806734,-0.13558632,-0.27496317,-0.03213143,0.08588124,0.37356773,-0.13795625,-0.8434055,0.009786393,0.055828463,-0.92149574,0.67147064,-0.4801261,0.025901584,0.04383983,0.4844719,0.06479615,0.3612378,0.1033051,-0.062442858,0.193006,-0.13102098,0.099758625,0.41526207,-0.70469546,0.2296502,-0.20307584,-0.2042772,-0.033513464,-0.50770307,-0.3252327,-0.843898,0.06640833,-1.0854146,0.43829486,0.045347538,-0.23441076,-0.31157002,0.17509973,0.4585558,-0.28343865,-0.007418076,0.16034244,-0.1421319,-0.24423909,-0.3300266,0.29972643,-0.2940615,-0.4698322,-0.10919241,-0.3573117,-0.33426046,-0.22750182,0.1598229,-0.41864136,0.10623243,-0.2739232,0.50044835,-0.42699316,0.07268863,0.6445709,-0.120387346,0.46265724,-0.46289405,-0.041917145,-0.09222752,0.5981035,0.17390819,-0.38495812,0.36487722,0.31455877,0.3565657,0.28512263,-0.38241145,-0.08853217,-0.23392229,0.4078442,0.44605398,-0.10892051,-0.39203835,-0.29277822,-0.046935234,0.20904104,0.41071796,-0.0647936,-0.46683857,-0.049054265,-0.15536231,-0.088486575,0.6998522,0.5413,-0.094375946,-0.36506605,-0.0058706203,0.5857475,0.30023822,-0.2596489,-0.013266723,0.1657081,-0.6238059,-0.16950172,0.22446112,0.049829364,0.595077,-0.1825703,0.020261817,0.7766609,-0.11666956,-0.24664839,-0.035300944,-0.13723917,-0.236151,-0.4275236,-0.11099565,0.29780635,-0.6758635,0.13095894,-0.37471583,0.79548925,0.17255278,-0.7751007,0.29282355,-0.6663928,0.20684332,-0.044612635,0.73244447,0.74302655,0.3242257,0.5963101,0.6465321,-0.14592646,0.23942266,0.039555233,-0.649146,0.0551044,-0.32721615,0.3020293,-0.40971375,-0.049195874,-0.27716032,0.121774174,-0.09594381,0.18564485,-0.48019126,0.012035112,0.36906192,0.6850824,-0.2725697,0.12273999,0.7918994,1.2019194,1.0618314,0.24971712,1.1864687,0.33449212,-0.28422317,0.21901195,-0.08235536,-0.79013604,0.26586244,0.30139026,0.3178906,0.24295098,-0.13844031,-0.014807056,0.5101173,-0.5838747,0.015933646,-0.06557292,0.50772685,0.18083775,-0.22015704,-0.6190359,-0.109045126,-0.017477043,-0.10577645,0.0014593502,0.19878022,0.00836059,0.43265828,0.0025162846,1.0669008,-0.10989819,0.032150052,-0.0096986145,0.50347507,0.28687984,-0.2505822,0.0007738471,0.31516442,0.4334928,0.002815996,-0.71223277,0.22444868,-0.352141,-0.31903815,-0.105018176,-0.39488077,-0.04740277,0.13679767,-0.4342976,-0.16684927,-0.07157722,0.033232022,0.51354265,-2.7663867,-0.294656,-0.35307348,0.27202103,-0.21636444,-0.05724154,0.023022324,-0.54911214,0.16580969,0.2777289,0.6364469,-0.7572057,0.66341305,0.59262013,-0.6107674,-0.11587957,-0.75504786,-0.09457139,-0.0121411085,0.4578296,0.2854581,-0.17664783,-0.18103123,0.18450497,0.71315306,-0.012747002,0.22580345,0.4751679,0.37079403,-0.0133817,0.68012327,-0.027150631,0.50190955,-0.47100022,-0.120178424,0.31383,-0.18275626,0.30740476,-0.1486492,0.09591711,0.64120436,-0.44323015,-0.8965092,-0.6750861,-0.46952537,1.0198766,-0.39697155,-0.66069967,0.24103181,-0.2922514,-0.09988288,-0.0026542768,0.51810044,-0.0969306,0.39065084,-0.8030143,0.11499653,-0.1300201,0.21649034,0.023538055,-0.2085021,-0.43846917,0.69677114,-0.0825638,0.41917548,0.4190201,0.2138303,-0.07345179,-0.4162761,0.19176395,0.5865385,0.3028601,0.0057848,-0.38938627,-0.30876845,0.023411244,-0.20592152,-0.08531294,0.7316933,0.8379989,-0.26483887,0.14642568,0.32186428,-0.018194696,0.033934806,-0.06546433,-0.17950495,-0.07137119,0.02755031,0.56401354,1.0797523,-0.20286995,0.21607202,-0.23233084,0.40846348,0.19609247,-0.5507443,0.63210607,0.71352696,-0.051362563,-0.13269813,0.54050046,0.5637421,-0.52198696,0.56863767,-0.5378867,-0.0997985,0.5336073,-0.0017723888,-0.45265654,0.2387145,-0.4618021,0.23370098,-0.9556735,0.56849784,-0.5721448,-0.6237049,-0.41489932,-0.024481127,-3.2873032,0.3246633,-0.18223189,-0.17423297,-0.45540252,-0.096977115,0.22313829,-0.59834665,-0.6295524,0.3463273,0.23461486,0.5554838,-0.101902604,0.060373437,-0.18132047,-0.109594636,-0.031231755,0.27512613,0.23822959,0.24998373,-0.29423597,-0.40710473,-0.22032963,0.056155827,-0.41419443,0.36094984,-0.7170207,-0.64183545,0.023466168,-0.4744726,-0.33489302,0.5233812,-0.19249444,-0.020497063,-0.3209969,0.023165694,-0.34983036,0.25136772,-0.020299232,0.47984168,0.17475624,0.048968893,-0.036896437,-0.20910172,0.46274158,-0.09962114,0.42332578,-0.011852873,0.06943516,0.2853612,0.49695373,0.753809,-0.15424643,0.9604024,0.65066206,-0.010334303,0.1986862,-0.2599408,-0.42969143,-0.6877671,-0.3312334,0.022905847,-0.47926903,-0.47511372,0.07770375,-0.1265592,-0.73601216,0.6649101,0.042309504,0.29728207,0.03562926,-0.06861819,0.35704336,-0.16047801,-0.107266806,-0.09642867,-0.11963067,-0.7080068,-0.16863574,-0.8478424,-0.52205247,-0.13132629,0.73315364,-0.2359684,0.10687039,-0.0531085,-0.546479,0.019653171,0.39677417,0.028854774,0.19823861,0.43395385,0.1605514,-0.5513985,0.41635475,0.044706266,-0.35586867,-0.55126125,0.25833336,0.7056679,-0.8240301,0.87248117,0.3164387,-0.0032516893,-0.13213782,-0.59116983,-0.44629303,-0.044674307,-0.18293631,0.5533483,0.22669564,-0.74612856,0.41315725,0.27393737,-0.49903333,-0.7225464,0.36124274,-0.18088238,-0.2129473,0.041119855,0.24584298,-0.12799305,-0.11697638,-0.15313427,0.24895982,-0.39245656,0.27125773,0.12015983,0.0043685636,0.04134533,0.023746723,-0.24401967,-0.7606965,-0.122403264,-0.81247145,-0.17577784,0.4806613,-0.21093442,-0.14151378,0.008673325,0.13540845,0.3059502,-0.14770107,0.29179853,-0.0136823105,-0.4778315,0.20750105,0.5826554,0.2939918,-0.43598983,0.6377024,0.2676449,-0.20278762,-0.028571978,0.19366004,0.30566648,-0.11288479,0.57306945,-0.4112176,-0.025194952,0.23205967,0.9755357,0.07523259,0.64862114,0.0743303,0.10573607,0.5082373,-0.037265923,0.3734026,-0.080168396,-0.45582625,0.08769166,-0.18166037,0.15190062,0.47226742,0.29837754,0.31022552,0.17076522,-0.20557247,-0.086218245,0.4638894,0.065517455,-1.6568412,0.5075914,0.42312762,0.8277089,0.5944486,0.1628113,-0.15020289,0.824508,-0.31365818,0.08961829,0.4611734,-0.038465846,-0.4797431,0.8765733,-0.62146425,0.3230711,-0.16156442,-0.09597338,0.2006762,0.24330802,0.32647163,0.5908118,-0.281078,0.11013287,-0.1427229,-0.16620573,-0.017469535,-0.58641666,0.005738775,-0.13741745,-0.47392297,0.6902995,0.565742,0.5021879,-0.2533749,-0.062593974,0.19503231,-0.1513248,0.27226266,-0.18720447,-0.16041298,0.24831472,-0.5866098,-0.1549778,0.5960332,-0.1343065,0.2046454,-0.33488443,-0.29801634,0.12733987,-0.21305169,-0.3104436,-0.14770861,-0.87587804,0.12632765,-0.3173125,-0.57164127,0.68531376,-0.33801976,-0.010885075,0.3235562,0.015895814,-0.17390966,0.3323333,-0.26278964,0.86453646,0.14490543,-0.3259776,-0.30517456,0.010951226,0.24983232,-0.252581,0.1871782,-0.5591174,0.039499696,-0.447814,0.68648314,-0.03458002,-0.48412037,0.1383142,-0.1257066,-0.064897984,0.66753715,-0.14187397,-0.23612069,0.16418695,-0.1478609,-0.37544945,-0.24652904,-0.25215968,0.25176954,0.4168429,0.15585646,0.0026205182,-0.2502741,-0.022389093,0.6479276,0.03614493,0.582362,0.2606099,0.06444127,-0.27749166,-0.0036790792,0.35648704,0.47439972,0.20311725,-0.14580321,-0.2885063,-0.4438602,-0.33401677,0.049967576,-0.051951896,0.40355048,-0.0027950753,-0.27555943,0.94860095,0.065687336,1.2146926,0.14348756,-0.36570248,0.30708978,0.38578537,-0.047101203,-0.035473887,-0.48584297,0.8654762,0.47305346,-0.08051233,-0.12885582,-0.5373969,-0.016891018,0.14610772,-0.36688888,0.095044695,-0.10631627,-0.43093088,-0.27996475,0.20950168,0.29008883,0.105000675,-0.14603204,-0.06076766,-0.02816379,0.09623446,0.35208273,-0.7278072,-0.22494553,0.23771934,0.17421074,-0.018660078,0.119805634,-0.2919936,0.39437535,-0.52431875,0.27771452,-0.61282974,0.074729584,-0.3279096,-0.3835124,0.058241084,-0.20167983,0.41233262,-0.42178825,-0.23175763,-0.16366385,0.40746954,0.28156254,0.05285723,0.7199054,-0.18769632,-0.026290676,0.19831814,0.6907659,1.0679206,-0.676194,0.027852833,0.11252216,-0.3475363,-0.46649384,0.37585178,-0.31494653,-0.043133914,-0.109416746,-0.5790186,-0.7104614,0.023851091,0.056165367,0.054974888,0.07353276,-0.7540838,-0.28290537,0.4010532,-0.4424839,-0.21064179,-0.35941672,0.4162854,0.6176207,-0.22805063,-0.43828043,0.077766344,0.060598623,-0.28953815,-0.292978,-0.031413876,-0.17895158,0.28221005,-0.018288413,-0.43541226,-0.11324362,0.14724131,-0.46182838,0.016394645,0.17043127,-0.32754436,0.16754012,-0.13670503,-0.08791234,1.0917236,-0.38556948,-0.055853974,-0.630225,-0.5566656,-0.832458,-0.4415702,0.31470904,0.13523065,0.013472006,-0.2324592,-0.004229536,0.14300792,-0.08914584,0.015573773,-0.51059395,0.4008503,0.06252822,0.6211718,-0.17764693,-0.9875856,0.19873638,0.3611629,0.021269875,-0.7026537,0.6220787,-0.113406934,0.7945149,0.008030062,0.09357542,-0.12636046,-0.35193917,0.052926812,-0.2723594,-0.22917998,-0.8697637,0.08378938,654 -873,0.3415321,-0.111807145,-0.46890816,-0.10305547,0.0077611133,0.22316216,-0.14085248,0.6464804,0.23735468,-0.42937574,-0.18330272,-0.21301259,0.10139958,0.59121776,-0.1405121,-0.51410776,0.08936158,0.10581013,-0.40148166,0.3275254,-0.5215387,0.19534595,-0.036533475,0.38630605,0.2177558,0.21631734,0.2931393,-0.15492113,-0.21624543,-0.10988491,-0.26609662,0.38744196,0.006874293,0.11586502,0.13676389,-0.28055686,0.20427795,-0.40372565,-0.18262501,-0.6552177,0.41611543,-0.73797244,0.49961504,0.09545424,-0.17710318,0.30297574,0.27337483,0.3040469,-0.31042764,-0.14128043,0.08760846,-0.1253624,-0.11238722,-0.19637735,-0.27240542,-0.4680724,-0.45791182,-0.05158062,-0.32318047,-0.39661515,-0.32247567,0.06672363,-0.32740667,0.015997658,0.056455165,0.36137173,-0.44829646,-0.1496834,0.24013294,-0.25484243,0.14256348,-0.66299886,-0.23694064,-0.08153934,0.3604772,-0.12818997,-0.065849,0.26762697,0.45606112,0.4285501,-0.062108416,-0.08625562,-0.42309466,-0.23437162,0.19553764,0.47717705,-0.24520056,-0.6947493,0.019919118,0.04627649,0.19006349,0.23664872,0.29090786,-0.07520551,-0.1264656,0.19563496,-0.27127084,0.3143294,0.32636583,-0.4617145,-0.19661383,0.40069017,0.58150774,0.12902854,-0.17295085,-0.092915006,0.0035482373,-0.55881494,-0.083303474,-0.030935824,-0.28211662,0.5043841,-0.16045444,0.38978314,0.73471946,-0.019331262,0.10995021,-0.024372583,0.006667666,-0.32681242,-0.27012944,-0.22401433,0.019064112,-0.34558395,0.27874067,-0.048781503,0.7966814,0.22038515,-0.5486823,0.5190081,-0.54406273,0.068666965,-0.15613598,0.35999775,0.46310273,0.15931223,0.39060917,0.7003033,-0.44101927,-0.05426385,-0.048678815,-0.41201627,-0.018767966,-0.09977945,0.10765833,-0.5754246,0.2302327,0.09504637,0.0043097422,0.29176247,0.36687028,-0.54678047,-0.023837745,0.26656064,0.88757366,-0.35388634,-0.27806553,0.53796214,0.9796451,0.78112036,-0.055233713,0.9378069,0.22009587,-0.31644025,0.1697611,-0.32961747,-0.57865316,0.28524986,0.5413637,-0.4470851,0.19731796,0.12698065,0.081975386,0.4393003,-0.16499196,0.020050624,-0.16743125,0.068484604,0.27054664,-0.19612499,-0.38858405,-0.25406185,-0.095255874,-0.109859385,0.32137015,0.20750405,-0.15173484,0.29914513,-0.20355459,1.8145008,-0.055939943,0.14191371,0.11248494,0.3886982,0.21609443,0.072494954,-0.07420019,0.469484,0.34278706,-0.010792305,-0.61318964,0.1394738,-0.35088885,-0.5128284,-0.07258113,-0.41322318,-0.02180335,0.20392251,-0.28954256,0.017404003,-0.1826752,-0.23679759,0.51544744,-2.9079335,-0.24545793,-0.21239255,0.18223463,-0.31822345,-0.31749827,-0.1419722,-0.36988023,0.41934958,0.32432213,0.57982177,-0.58414525,0.22208796,0.31635067,-0.48791537,-0.2510282,-0.5675853,-0.120615244,-0.11520497,0.1021219,0.026147196,-0.18884952,-0.06681387,0.21015133,0.44826663,-0.06869385,0.11345438,0.27041644,0.39902496,0.06838112,0.5648523,-0.1292742,0.759804,-0.17399786,-0.20911281,0.33016753,-0.36862078,0.36382747,-0.0586556,0.23027097,0.3763716,-0.148948,-0.9546964,-0.61059666,-0.19134541,1.2338408,-0.20024325,-0.3112108,0.29434523,-0.17035453,-0.24414206,0.013525573,0.4736326,-0.09891456,-0.15974261,-0.75770754,0.24377348,-0.0465837,0.054744404,0.055858877,-0.07887143,-0.36364493,0.7541713,0.008227761,0.4620566,0.21162374,0.1176432,-0.2447133,-0.14829388,-0.091657996,0.6848181,0.36006948,-0.010563791,-0.06525115,-0.22880936,-0.48106536,-0.23938398,0.17246222,0.53267264,0.6018471,0.08724102,0.024822852,0.20515633,0.072722934,-0.016048407,-0.20744658,-0.2807018,0.034806725,0.09432023,0.532962,0.30544743,-0.34180424,0.55539083,-0.0966542,0.26795378,-0.3121167,-0.35318586,0.42572275,0.6755913,-0.30502447,-0.34924486,0.5597586,0.3545121,-0.2512014,0.26486295,-0.6527937,-0.15517206,0.69087726,-0.18767048,-0.48179054,0.0704344,-0.3026153,0.12513699,-1.0691894,0.1618825,-0.2624792,-0.33346924,-0.44575146,-0.08843682,-3.9087,0.17728305,-0.41063443,-0.13630974,-0.18518156,0.020054912,0.027883664,-0.88005614,-0.48853144,0.120284945,0.08103479,0.7478628,-0.12044939,0.054025646,-0.24939364,-0.22592379,-0.09107753,-0.055137057,-0.21131247,0.37852523,-0.003201152,-0.40182403,0.20905961,-0.015134007,-0.42740583,0.17114592,-0.49355724,-0.43247676,-0.2107706,-0.56921715,-0.24365945,0.6696128,-0.59070116,0.06197642,-0.28064054,0.171277,-0.18062355,0.32131597,0.15562767,0.07720943,0.059653062,-0.08048514,0.0671737,-0.38107535,0.3215028,0.010286818,0.32647303,0.4212623,0.08368345,0.07704011,0.54478276,0.6584636,0.031697303,0.73796463,0.37139794,-0.09742695,0.19045888,-0.4395719,-0.12497032,-0.37926242,-0.46969238,0.14620917,-0.37426865,-0.63211393,-0.27048346,-0.24671765,-0.6032872,0.46890852,0.19321801,0.23098046,-0.10026091,0.31809223,0.5292702,-0.23212576,0.03659514,0.13123436,-0.0996804,-0.6128474,-0.16497341,-0.6037779,-0.5064307,0.32471082,0.83529896,-0.39848733,-0.0012621483,-0.058059007,-0.3928577,0.030864215,0.038955327,0.100849174,0.2417329,0.454348,-0.34941474,-0.6492782,0.47074842,-0.22435951,-0.19049847,-0.531533,0.052876562,0.5994017,-0.5344808,0.61862427,0.382671,0.06927209,-0.07966144,-0.5129479,-0.2430771,0.10705515,-0.21891427,0.09152179,0.06252836,-0.6529694,0.38322422,0.4453386,-0.29945716,-0.6522003,0.50048095,-0.046700645,-0.28883848,-0.05484673,0.38292888,0.39389476,-0.02180385,-0.29997423,0.15910117,-0.42414618,0.299896,0.21770792,-0.0070419335,0.4030368,-0.18335803,-0.15023686,-0.79300433,-0.039171755,-0.49429795,-0.1996866,0.18298177,0.14036205,0.17235981,0.012411207,0.052936997,0.32453188,-0.57056713,0.17120595,0.008710275,-0.10011726,0.27846006,0.37714884,0.24253823,-0.4785097,0.6420697,-0.028086903,0.03758982,0.047368187,-0.1202304,0.4831103,0.12676644,0.45435953,-0.076387435,-0.23143542,0.40136218,0.8835351,0.16145098,0.3627286,0.09592947,-0.12800139,0.030788606,0.035329793,-0.03934916,0.1490437,-0.5252938,-0.064120375,-0.2370305,0.2573942,0.58094656,0.21732141,0.29184398,0.13754784,-0.39203343,0.061450306,0.21731813,0.044868577,-0.96018,0.5006299,0.18310823,0.8597931,0.2624159,-0.02222485,0.042615224,0.7006529,-0.2314499,0.23476334,0.17817688,-0.24853367,-0.6721706,0.64535785,-0.6895115,0.35332382,-0.11569882,-0.05261151,-0.024668679,-0.0361329,0.29783192,0.678554,-0.2821193,0.032136623,0.052450243,-0.22684467,0.21870065,-0.4108895,-0.12746446,-0.65157837,-0.26437595,0.40750113,0.61945724,0.28996328,-0.20260578,-0.021080425,0.14774714,-0.057762753,0.037477296,-0.065010615,0.31036755,-0.030944943,-0.754498,-0.30466652,0.384948,0.19162588,0.4187592,-0.096650295,-0.18499851,0.4226068,-0.2685776,0.10167566,-0.14065897,-0.33300284,0.07153263,-0.15118645,-0.60744643,0.30915222,-0.101505496,0.34028223,0.17079966,0.017349528,-0.024021482,0.39431038,0.013093705,0.8392188,-0.18395118,-0.114641696,-0.4689809,0.15398133,0.028318152,-0.13357377,-0.07492871,-0.32642198,-0.015798515,-0.5442218,0.517201,-0.023317276,-0.19455405,-0.02221418,-0.26860586,-0.015435129,0.58199066,-0.20974529,-0.055937555,-0.24230857,-0.37578276,-0.14289717,-0.14932095,-0.1820613,0.3193102,0.06207688,0.16688913,-0.25566387,-0.07130949,-0.17940359,0.26087186,-0.07851363,0.29250312,0.4998195,0.050202284,-0.20776576,-0.1935752,0.13273457,0.35377464,0.0053979107,-0.32147008,-0.36091337,-0.44511485,-0.28924787,0.17153941,-0.14040062,0.366887,0.18697743,-0.30173728,0.61859655,-0.1287374,1.2475631,-0.022099743,-0.40861857,-0.03467598,0.6622427,0.01946832,-0.0725423,-0.16568808,0.8335025,0.42699692,0.03993787,-0.10458827,-0.38497594,-0.022387346,0.38658917,-0.18235075,-0.038591545,0.05831835,-0.51333416,-0.38308167,0.30219975,0.20866509,0.35331622,-0.105181634,0.12162373,0.14993855,0.059471354,0.45785746,-0.37816063,-0.49336338,0.31358,0.34831476,-0.04711941,0.084297635,-0.44615686,0.43757153,-0.63232094,0.124030925,-0.39169088,0.21672058,-0.28245583,-0.16449,0.2426337,0.041669484,0.38875476,-0.22999735,-0.34560272,0.016770998,0.45018432,0.24823432,0.15846677,0.44171107,-0.2524635,-0.0885613,0.14559461,0.48317924,0.8577526,-0.22171576,0.16505592,0.45396277,-0.30729672,-0.6273503,0.44083166,-0.36581305,0.099814884,0.09012153,-0.21009529,-0.5170397,0.38346252,0.38665202,0.040771168,-0.057936776,-0.3627065,-0.21562459,0.3199058,-0.32926098,-0.25668472,-0.3963581,0.14383033,0.50967515,-0.3183156,-0.26894343,0.046230238,0.24932408,-0.16285197,-0.47614977,-0.020742932,-0.26648197,0.525399,0.09741646,-0.2760686,-0.25054362,-0.021211922,-0.4176662,0.30985123,-0.03355582,-0.32659313,0.2645253,-0.29612648,-0.020328304,0.863959,-0.10858309,0.008545312,-0.58414453,-0.28174987,-0.7081879,-0.36248112,0.6293264,-0.14670004,-0.080976814,-0.541902,0.09184683,0.06318136,-0.16032803,-0.10773035,-0.24124543,0.35385144,0.011972924,0.46249208,-0.057123583,-0.6367869,0.16277951,-0.01015084,-0.0902031,-0.5707224,0.43358326,-0.13955973,0.9147301,0.030191332,-0.009724597,0.3644912,-0.2309963,0.018651595,-0.30249783,-0.31903765,-0.6696367,-0.0019327551,657 -874,0.28977123,-0.15914561,-0.7651243,-0.06816841,-0.2092898,0.02311719,-0.2790474,0.6413251,0.37084833,-0.32142615,0.003775527,-0.17657264,-0.04228227,0.2553834,-0.08433438,-0.4806567,-0.15387644,0.18787986,-0.6140933,0.6520725,-0.3773416,0.01677308,-0.029108888,0.4323074,0.008452233,0.1724117,-0.124180295,-0.10081988,-0.014879058,0.062348366,0.045137327,0.27613816,-0.6000619,0.30147406,-0.18285589,-0.14533925,0.072797954,-0.48123214,-0.4019712,-0.7598893,0.14085479,-0.5193772,0.5367916,0.15599827,-0.28332046,0.1882789,0.10952588,0.16207673,-0.33843252,-0.05243786,0.2186629,-0.2058348,-0.3968564,-0.20687862,-0.24384145,-0.4619387,-0.6023529,-0.11486844,-0.50793856,0.08302937,-0.08510906,0.21206065,-0.3383416,-0.14505936,-0.07520335,0.67494553,-0.3459026,0.43791354,0.12408761,-0.13729714,0.32894674,-0.5227618,-0.09448409,-0.029270023,0.17157863,0.1197446,-0.3388145,0.2514368,0.049828943,0.34996605,-0.10656338,-0.056111615,-0.34152356,0.023325669,-0.10305665,0.40279093,-0.07734718,-0.28960246,-0.058577504,0.045711767,0.032076214,0.23878627,0.0013367087,-0.350093,-0.1492803,-0.31114945,-0.1516216,0.2961706,0.49923873,0.058930933,-0.075306475,0.40864834,0.27436697,0.3316082,-0.05331968,0.0116435485,-0.016554631,-0.6025422,-0.16091485,0.030147016,0.10066074,0.46456543,-0.031812895,0.3360807,0.5527955,0.11751322,-0.31018126,-0.024507971,0.055273753,0.12463174,-0.28899565,-0.27501017,0.32302022,-0.44135204,0.03164136,-0.14094414,0.63908756,-0.053903908,-0.9738777,0.34000465,-0.5590772,0.06336016,-0.0794231,0.607238,0.8234206,0.64029706,0.26832798,0.6430072,-0.21915646,0.20255719,-0.07101549,-0.32212862,0.38314882,-0.0068175495,0.22546077,-0.48223522,-0.17134511,0.0032482047,-0.23252426,0.13498305,0.3277188,-0.34179673,-0.18356866,0.3021343,0.8041895,-0.25954077,-0.15126063,0.49122128,1.1080999,0.77566904,0.0830371,1.1780634,0.158499,-0.101366185,0.15808426,-0.14579047,-1.0647446,0.32953244,0.11836878,-0.06648621,0.21309249,0.04680401,-0.23632713,0.3461549,-0.22378552,-0.1705391,-0.051598612,0.3010837,0.005988717,-0.09187893,-0.20637238,-0.3410057,-0.026495816,0.040448118,0.024845349,0.16823082,-0.08447716,0.4397587,0.08253876,1.683474,0.11266144,0.058992207,0.037993886,0.45747313,0.15215574,-0.08771876,-0.28551236,0.6481101,0.29590765,0.1792552,-0.5147884,0.211361,-0.09160561,-0.37589276,-0.099351294,-0.36213636,-0.08338991,-0.24476242,-0.21531607,-0.24921973,-0.15546651,-0.4598376,0.30668202,-3.0926094,-0.011931648,0.09895734,0.35994875,-0.110067844,-0.10414973,-0.16640966,-0.4221176,0.40597376,0.47115096,0.51303595,-0.4260666,0.2466106,0.48518562,-0.6159784,-0.11071992,-0.5465608,-0.05776502,0.007329618,0.3287113,-0.128298,-0.014634371,0.08383896,0.06612689,0.28652766,0.06388533,0.14477585,0.46385014,0.53092843,-0.052524645,0.44513062,-0.23507546,0.35630786,-0.44609225,-0.17479591,0.12010648,-0.308091,0.18879573,-0.15314147,0.05479556,0.551084,-0.5202159,-0.772552,-0.17838085,0.15043227,1.100642,-0.37241924,-0.24441361,0.28218368,-0.39678827,-0.16476025,0.08940678,0.6626727,-0.20370673,-0.10856684,-0.7186757,-0.17025559,-0.03104492,0.4143928,-0.05008186,-0.0069906763,-0.511107,0.5007296,0.06863541,0.6031055,0.4625547,0.085309304,-0.30065352,-0.59611607,0.08386388,0.64096624,0.22170608,0.20321189,-0.17579512,-0.14202413,-0.13965847,0.03880291,0.06130365,0.65788007,0.6255517,-0.18956833,0.26480654,0.39154693,-0.23775072,-0.018479593,-0.17476475,-0.31067976,-0.20850806,0.093027234,0.3998076,0.82695574,-0.12216425,0.40142635,0.107530445,0.4409841,-0.13730903,-0.4772048,0.46028543,0.7640619,-0.1561081,-0.22485363,0.53133494,0.5611024,-0.23745723,0.54918915,-0.40297344,-0.30669674,0.5995427,-0.10314577,-0.5311143,0.28822768,-0.38353527,-0.0046694204,-0.94851154,0.15402052,-0.07679228,-0.62316436,-0.75291705,0.0032309715,-2.6776228,0.09756746,-0.3095558,-0.26787248,-0.0909772,-0.059962858,0.13490246,-0.54357046,-0.56186396,0.25378773,0.23346396,0.44877255,-0.2265772,0.0054369443,-0.18086283,-0.22922231,-0.31064105,0.20771658,0.3005909,0.2748934,-0.015866125,-0.59977037,-0.20774865,-0.07587551,-0.24464254,-0.008966471,-0.46126357,-0.18278311,0.020300046,-0.8104613,-0.296665,0.5651036,-0.30058166,-0.16450824,-0.1632366,0.05269887,0.21969481,0.27915668,-0.11552516,0.17133419,-0.02450507,-0.036221206,-0.12765862,-0.25603506,0.16673534,0.031509973,0.2697174,0.41435492,0.02616998,0.07180963,0.44677433,0.5321031,-0.28196338,0.8295634,0.5224212,-0.051306855,0.28486922,-0.17724991,-0.072439946,-0.4913926,-0.090438455,-0.12131261,-0.4336392,-0.2903613,0.07107798,-0.32673904,-0.7976548,0.6645395,0.096274264,-0.04851967,0.112419434,0.16180266,0.41948307,-0.09747153,0.078757614,-0.23994915,-0.19580323,-0.40023378,-0.21367867,-0.72926164,-0.5118409,0.1978548,1.0613972,-0.30814546,-0.017644184,0.18962468,-0.39401725,0.023131175,0.25298357,-0.010302976,0.50358564,0.4111406,0.19561112,-0.6585663,0.45061672,-0.16045414,-0.014613588,-0.6411547,0.1644173,0.6163118,-0.83250755,0.47118452,0.41523513,-0.036131833,-0.27027857,-0.6352307,-0.2820473,0.016502792,-0.0786846,0.3667412,0.29902947,-0.9435022,0.45936248,0.1722281,-0.37225148,-0.86695796,0.28915533,-0.14728355,-0.3897167,0.13037695,0.22098638,-0.0400524,0.16488901,-0.31024057,0.1663546,-0.17128126,0.202522,-0.049412817,-0.18808556,0.40818688,-0.03470246,0.097131036,-0.7209306,0.06643322,-0.5000518,-0.26337376,0.5781304,0.003434196,0.08178099,-0.00608778,0.056941003,0.34671542,-0.27039155,0.074484624,-0.29878464,-0.28869408,0.3661377,0.5292862,0.42744994,-0.49399152,0.6348979,-0.0309138,-0.21177697,-0.033938903,0.10196266,0.28959063,0.011574735,0.36368325,0.059120204,-0.2055028,0.24107915,0.72950387,0.13877456,0.34827486,0.030016651,0.08275594,0.45131373,0.07803624,0.12925766,-0.18509434,-0.5997409,-0.08103893,-0.46085945,0.22952473,0.4492794,0.118659794,0.435414,-0.14528878,-0.16466463,0.022582196,0.2960147,0.28430235,-0.74324703,0.38419607,0.23816375,0.73186946,0.7124202,0.2310707,0.0014305314,0.75859445,-0.09135505,0.18213363,0.34361258,0.10271413,-0.47942245,0.6079507,-0.5679092,0.42655376,-0.18132348,-0.015122547,0.23650795,0.14841653,0.55411476,0.86369497,-0.12404761,0.020117542,0.114190914,-0.22491734,-0.026064023,-0.34842303,0.1348208,-0.45512548,-0.4159226,0.5051174,0.45577303,0.24054222,-0.25483063,-0.074538946,0.26086164,-0.14706336,0.24651772,-0.026504437,-0.15667647,-0.0409521,-0.7249503,-0.15157247,0.5946161,-0.0037536125,0.10943937,-0.017394274,-0.041703865,0.2953352,-0.19601439,-0.10966433,-0.08417308,-0.5985085,0.026764303,-0.23256122,-0.5538832,0.7313128,-0.2054909,0.20832582,0.2092592,0.09608966,-0.31014463,0.27464652,-0.0074011735,0.73288774,-0.052492183,-0.14206544,-0.14762048,0.016926622,0.28947136,-0.25423878,-0.18575086,-0.31116292,-0.09650131,-0.4983951,0.44566095,-0.14187117,-0.4446908,0.005079309,-0.09475258,0.020577287,0.41518375,0.07491438,-0.07171442,-0.038133953,-0.31617472,-0.4322629,-0.23547904,-0.3742539,0.261188,0.11257621,0.03823528,-0.075589515,-0.063566886,0.085003555,0.39389086,0.10363903,0.22257614,0.17291446,0.28713682,-0.3114658,-0.03227815,0.13385409,0.6614563,0.08549532,-0.06975537,-0.22096409,-0.1891644,-0.3029885,-0.068065666,-0.11722324,0.4008348,0.20698422,-0.45008746,0.6836946,-0.04018172,0.90665644,-0.08156926,-0.37041414,0.2630514,0.48275924,0.046111155,0.032230787,-0.35474598,0.86366576,0.5525909,-0.19226933,-0.18735301,-0.3668886,-0.089013726,0.18827055,-0.27241078,-0.28780866,-0.086719595,-0.54203093,-0.15590346,0.25563154,0.15837544,0.091852486,-0.18705739,0.027198264,0.075133204,0.0372557,0.057127777,-0.37929702,0.10497875,0.15722485,0.14818087,0.19887201,0.11209065,-0.4257431,0.3347338,-0.43062925,0.2530842,-0.41257223,0.09093613,-0.2850786,-0.13083686,0.103651285,0.020404072,0.34653494,-0.27731106,-0.21644203,-0.24276523,0.43193737,0.3036907,0.33051264,0.7391519,-0.25091112,-0.02418288,0.02238504,0.55455095,0.8552844,-0.47453323,-0.17071082,0.43884373,-0.24568017,-0.7461688,0.21733303,-0.3846395,0.10503012,-0.048558008,-0.3166154,-0.4151559,0.102315515,-0.025886545,-0.065280385,-0.028790394,-0.5997864,0.13428839,0.25343195,-0.19897598,-0.18647747,-0.2987193,-0.038023025,0.7748179,-0.24168682,-0.31715906,0.060121104,-0.040705096,-0.10096217,-0.44277707,0.07468174,-0.4311312,0.16520922,0.19292708,-0.49472126,-0.11372761,0.10847622,-0.5158034,0.1467052,0.05076137,-0.20293935,-0.067709126,-0.35003185,-0.099477135,1.0182396,-0.23233174,0.0715521,-0.36424586,-0.5608788,-0.76713794,-0.20656388,0.30585018,0.053822156,-0.025712663,-0.6685455,-0.021109462,-0.14811087,-0.2656707,-0.19146413,-0.36048138,0.5108147,0.075596556,0.30015507,-0.20221819,-1.0107796,0.21421377,0.1767503,-0.38647783,-0.6007256,0.46715608,-0.05833595,0.9318182,0.05824247,0.19467886,0.40039435,-0.60179085,0.15040801,-0.33730182,-0.32265696,-0.43331853,0.027788676,673 -875,0.6683114,-0.07156528,-0.7558418,0.06634938,-0.2201003,0.090909906,-0.25051656,0.34164783,0.32468817,-0.20051777,-0.2222095,-0.09405451,-0.08955228,0.31886023,-0.10471034,-0.9200392,-0.002502136,0.14615957,-0.46946323,0.9327378,-0.2986895,0.3742653,-0.09069976,0.36660722,0.31413028,0.3751255,0.19944371,0.015380353,-0.12730993,-0.4060992,-0.0025748834,-0.06740898,-0.82633656,0.17527722,-0.1867844,-0.44752988,0.049887795,-0.35403752,-0.46740755,-0.8436753,0.36302066,-0.8744765,0.4287072,-0.035201643,-0.23166446,0.2141803,-0.13344193,0.2978323,-0.122511506,-0.17391278,-0.046839166,0.043234337,-0.026296042,-0.14842613,-0.24203104,-0.51425976,-0.57987,-0.0025137477,-0.45525074,0.008625294,-0.27443475,0.11852012,-0.43807733,0.011820029,-0.19315952,0.2828364,-0.45251283,0.08698843,0.29553816,-0.0011297365,0.064393215,-0.53847796,-0.1792634,-0.25057033,0.20141101,-0.19006075,-0.13315882,0.3434256,0.27836433,0.23734117,0.1381223,-0.22292519,-0.2983782,-0.25145325,0.17155725,0.35920522,-0.18348098,-0.4273276,-0.35944557,-0.2449614,0.30120695,0.32983863,0.28694373,-0.06216384,0.06414787,0.06561177,-0.3422246,0.6142656,0.5654068,-0.4526271,-0.44654322,0.45682466,0.65947455,0.42123756,-0.14081797,-0.0445065,-0.0029799037,-0.35537937,-0.19536154,0.13067307,-0.20284148,0.6662006,-0.17877401,0.12513922,0.58966374,-0.46670637,0.13949446,0.0760453,0.058023077,-0.39060447,-0.3040525,-0.24519949,0.30480865,-0.5632053,0.27557793,-0.2731394,0.70402694,0.19647308,-0.5761108,0.27709925,-0.6840605,0.102676295,-0.15654586,0.6309412,0.7442482,0.3224623,0.18226679,0.85186607,-0.35880807,-0.02263236,-0.10012365,-0.38005427,0.13102698,-0.20480861,-0.07376226,-0.48819622,0.08159765,0.21101458,0.048183758,0.09795076,0.37695512,-0.47445,-0.3427362,0.1273095,0.5944175,-0.23681338,-0.22560668,0.7963112,1.2489924,1.1236285,0.014211294,1.2966213,0.2057498,-0.19594437,-0.019197613,-0.17600335,-0.90165305,0.19996631,0.31732813,-0.6266148,0.5410594,0.24532573,-0.06799016,0.32376012,-0.30768302,-0.060680974,-0.09780831,0.3482909,0.01745812,-0.18983865,-0.278769,-0.11913941,-0.04520217,0.048486978,0.31822082,0.32822308,-0.35532606,0.2927749,0.22031046,1.2540207,-0.10538288,0.02151451,-0.015549782,0.4968382,0.3097457,-0.19997291,0.06628787,0.41527125,0.34025475,0.058037996,-0.59729373,0.023092017,-0.46459362,-0.45215693,-0.10491627,-0.3239734,0.013840385,0.10027959,-0.15627141,-0.19682483,-0.13253443,-0.022834122,0.54361355,-2.5937464,-0.19554536,-0.16295813,0.14513007,-0.3306696,-0.33842936,-0.09087149,-0.60383964,0.36928663,0.22630645,0.51076216,-0.6603091,0.36661908,0.5052946,-0.7661657,-0.0025764804,-0.6850669,0.053994756,0.024920657,0.49638036,-0.14937307,0.03668512,-0.018693805,0.16478857,0.48788777,0.3268422,0.084206134,0.29894775,0.5087833,-0.07204058,0.34724978,0.14960478,0.5574765,-0.21515357,-0.225414,0.38988173,-0.28095365,0.81937313,-0.26796484,0.11155913,0.5449633,-0.29902118,-0.8772952,-0.6109387,-0.28620303,1.1406802,-0.33468008,-0.6227394,0.056198593,-0.06901089,-0.373667,-0.16079153,0.4402151,-0.2625039,-0.111995876,-0.50383806,0.016241074,-0.13585986,0.21425788,-0.057590634,0.1654901,-0.41911158,0.73309296,0.035577375,0.34778324,0.26946792,0.29693946,-0.18391041,-0.42087492,0.07985697,0.9467611,0.40147653,0.038758975,-0.40775165,-0.22448468,-0.400802,-0.15015247,0.2261173,0.59689534,0.723546,-0.2242444,0.024916293,0.36823842,0.24835175,0.074725464,-0.055662483,-0.37756172,-0.2672899,-0.30104178,0.60642684,0.8060681,-0.23447943,0.38226274,0.024493909,0.16856103,-0.26247993,-0.4860499,0.9223674,0.94655895,-0.2567693,-0.22671048,0.6016386,0.4368608,-0.5347002,0.68230027,-0.7098225,-0.18092348,0.42797294,-0.048860114,-0.21286464,0.047152292,-0.30114135,-0.03908831,-0.7970741,0.30877468,-0.19007576,-0.19145012,-0.47696432,-0.17294256,-2.72431,0.25362232,-0.21848385,-0.119742356,-0.27837804,-0.040424973,0.22364146,-0.6504324,-0.6988616,0.3543227,0.19958235,0.6756703,-0.19878392,0.18656768,-0.2019641,-0.43900236,-0.5733744,0.20430522,0.059912045,0.36979508,-0.25525436,-0.33896288,-0.02025075,0.04122224,-0.40750298,0.1129781,-0.32110298,-0.3356218,-0.20385341,-0.39938045,0.02651374,0.68843365,-0.35748902,0.05034579,-0.25898257,0.05164678,-0.11853055,0.17266344,0.008018658,-0.01478076,0.07687732,-0.014470766,-0.0046355426,-0.34588706,0.4252346,0.124234445,0.5216053,0.30387318,-0.23406129,0.10394654,0.43165183,0.62166977,0.07918047,0.91894746,0.36806914,-0.17059302,0.27146852,-0.096028484,-0.14848004,-0.6490338,-0.24144088,-0.17877878,-0.5076353,-0.6080594,-0.16734576,-0.20906945,-0.829853,0.39107326,0.15498978,0.6031682,-0.023504967,0.4415888,0.4920435,-0.28289938,0.11836237,0.009900074,-0.16563259,-0.4017059,-0.32027677,-0.61689544,-0.30718458,0.5045356,0.4966886,-0.47547033,-0.15945493,0.053195637,-0.42595658,0.15322311,0.10537216,0.07249651,-0.11820801,0.48210725,0.15226138,-0.51780176,0.6370881,-0.1585591,0.022544095,-0.72374266,0.11109382,0.5988632,-0.5893531,0.39859807,0.372425,-0.03277889,-0.05442487,-0.5903118,-0.08128264,-0.0128137665,-0.33825096,0.31452328,0.43532833,-0.86167794,0.33099964,0.03454068,-0.23100841,-0.6378711,0.8095031,-0.020529823,-0.092291325,-0.34272408,0.45845175,0.31315055,0.13028693,-0.2104903,0.34209725,-0.3285796,0.055932086,0.22710045,-0.24077184,0.37267807,0.10259069,-0.3745794,-0.75349885,0.28608784,-0.5655188,-0.28244802,0.30211195,0.026563695,0.035411205,0.19260477,0.49659005,0.30871382,-0.3985788,0.1749285,-0.07149408,-0.2750647,0.6344052,0.45545444,0.6901676,-0.41076365,0.6638524,0.10990253,-0.12535411,0.25679985,0.008473863,0.43340942,0.023549093,0.42150506,0.4300762,-0.16651194,-0.10721153,0.5934704,0.25692132,0.2849664,0.12275803,-0.069103085,0.17708234,0.15476437,0.31430116,0.14094333,-0.71273404,-0.07833377,-0.18868794,0.120922424,0.65595984,0.1887176,0.16418046,-0.025713623,-0.17167379,-0.022440305,0.019477911,-0.14823048,-1.226262,0.28228027,0.24281545,0.86101794,0.47259364,-0.21932952,0.12377175,0.2735531,-0.1680817,0.18507354,0.44686362,0.025475403,-0.46056828,0.5367644,-0.6296986,0.40742812,0.04557203,0.12932684,0.18138339,-0.041957896,0.38836208,1.0430838,-0.36869183,0.015291467,-0.25938594,-0.29567865,0.10285657,-0.3412366,0.26153037,-0.5066166,-0.2993497,0.6740341,0.47399864,0.32561728,-0.25789902,0.012099278,-0.06693756,-0.2532843,0.10493225,-0.12499008,0.22419886,-0.082913995,-0.55794215,-0.25601497,0.59608907,-0.25825277,0.11136516,-0.1473583,-0.26153997,0.25189817,-0.13272159,0.14432849,0.09214294,-0.876973,0.10389645,-0.059748325,-0.43984652,0.47122112,-0.048237424,0.19005497,0.1831535,0.02741872,-0.08702152,0.45452574,0.017376324,0.73811597,-0.04948637,-0.18433084,-0.45300928,0.25693452,0.15627056,-0.20480485,0.10432271,-0.103173345,0.22425187,-0.53145885,0.47028008,-0.020114943,-0.42653838,-0.2604625,-0.22219448,-0.081379406,0.51900005,-0.1348821,-0.17262065,-0.12031084,-0.20897871,-0.22357355,-0.15315706,-0.10989977,0.10248408,0.26303768,-0.22281201,-0.1647685,-0.18409066,-0.084061116,-0.018045425,0.08718521,0.19418176,0.45811924,0.13518716,-0.46849266,-0.3716801,0.28250352,0.47131315,-0.13254328,-0.21712454,-0.27509388,-0.59540355,-0.52135056,0.38847756,-0.07388361,0.39411172,0.022113904,-0.15957825,0.5776729,0.19256829,1.1866695,0.1065562,-0.39018336,0.0465837,0.8131586,-0.07130644,-0.1730812,-0.44880256,1.1450882,0.46499392,-0.29490316,-0.17707008,-0.30701947,-0.28900668,0.1397234,-0.2865859,-0.04946941,0.11849115,-0.4908924,-0.12936518,0.042837545,0.3285716,0.03038075,-0.02858468,-0.049383,0.4439179,0.30779305,0.40777364,-0.5824035,-0.530065,0.356542,0.07827604,-0.056146633,0.33542976,-0.3259094,0.25213474,-0.72274023,-0.00084931153,-0.35948256,0.19099362,-0.19884223,-0.47449198,0.14682613,0.16857499,0.5136141,-0.44163418,-0.60283226,-0.30183333,0.3089781,0.4042294,0.25638315,0.6028315,-0.1776492,-0.030681066,-0.1824698,0.5040583,1.0854542,0.020118931,-0.08165995,0.37997308,-0.64078933,-0.69717914,0.18594521,-0.4791299,0.48191848,-0.21606816,-0.30672863,-0.5899268,0.27594984,-0.14466506,0.09834719,0.11678315,-0.8175685,-0.32324496,-0.018029528,-0.08782595,-0.15651833,-0.23470068,0.16872793,0.9997259,-0.32745907,-0.35291162,0.0067026266,0.15534739,-0.15944733,-0.63541853,-0.13791305,-0.2381786,0.3295107,-0.08924762,-0.27139616,-0.07654216,0.16838337,-0.52007955,0.23550153,0.045645762,-0.30005154,0.1005164,-0.25267705,0.19013499,0.76098275,-0.27694324,0.13324761,-0.42514113,-0.5053862,-0.653426,-0.5488391,-0.03845948,0.05124103,0.11261185,-0.5106365,0.111266516,-0.1884923,0.107752085,0.047687728,-0.39870596,0.50127625,0.15900753,0.32865128,0.03247853,-1.1919156,0.043816913,0.06479373,-0.09954214,-0.73170537,0.54614395,-0.3030919,0.73051256,0.20111394,0.03817649,0.23013978,-0.66922355,0.0014541248,-0.259843,-0.016572842,-0.7064455,0.34036306,674 -876,0.3079712,-0.23691642,-0.5710659,0.07373459,-0.21657462,-0.34365174,-0.27458438,0.26375517,0.34275457,0.06033237,-0.43842745,0.1020081,-0.008988257,0.3932089,-0.067904234,-0.6339481,-0.05652453,0.22852032,-0.76777035,0.81061965,-0.18478571,0.19018118,0.12570857,0.5740747,0.13633649,0.2848605,0.20559151,0.01452748,-0.15107208,0.0036684896,0.20959984,-0.061947834,-0.7142684,0.0990537,-0.38462377,-0.18511419,-0.19492976,-0.4906639,-0.4426453,-0.9748098,0.23891322,-0.79125476,0.5603856,0.0070171854,-0.22173204,-0.26434982,0.10043753,0.27140346,-0.20365083,-0.17293465,0.099155664,-0.20153904,-0.1898938,-0.4386257,0.008422613,-0.26947454,-0.4497831,0.006245438,-0.52981216,-0.11357489,-0.043879468,0.07855462,-0.36296865,-0.08013985,-0.072385624,0.6818723,-0.35133842,-0.017561981,0.3541874,-0.116811335,0.26652417,-0.7642341,-0.055146676,-0.19315499,0.34378004,0.0045876005,-0.32930046,0.3835108,0.30321062,0.28163603,0.10659733,-0.19545,-0.27372777,0.09718121,0.18255568,0.433413,-0.3435568,-0.40112612,-0.14580591,0.10355855,0.36636138,0.12264252,0.21754839,-0.24211852,0.029241482,-0.18291508,0.13933848,0.6205767,0.5627298,0.07193891,-0.1745003,0.16046856,0.5049701,0.5741686,-0.21037346,-0.074244685,0.058086436,-0.5922183,-0.11100486,-0.031263463,-0.1707627,0.73566586,-0.075921185,0.046831354,0.7044389,-0.024762342,-0.22395869,0.19102687,0.08457064,-0.030721804,-0.1023766,-0.35381153,0.3227937,-0.39103475,0.11973936,-0.14966293,0.36537492,0.20123434,-0.7634682,0.30327544,-0.5557567,0.20623653,0.14458269,0.6247718,0.899836,0.50065106,0.49683166,0.7372531,-0.16684096,0.27889556,0.41008464,-0.30581012,0.12349376,-0.27888525,-0.19587445,-0.44852102,-0.25929642,-0.25242212,-0.29388914,0.18910642,0.31208667,-0.5368398,-0.07668472,-0.024591267,0.7108557,-0.10479,-0.0054473877,0.7254629,1.1975207,1.0060097,-0.010775715,1.2320306,0.230196,-0.14843677,0.02017951,0.0014603585,-0.8760465,0.20879388,0.28136128,-0.5584556,0.6176439,-0.10111604,-0.09919486,0.3631206,-0.71171826,-0.0070172944,0.09860277,0.20918871,0.08926326,-0.24454121,-0.52936,-0.17230944,-0.24826305,0.15855096,0.051856205,0.27878532,-0.2699886,0.3285916,0.034070533,0.94686085,-0.07040679,-0.1073694,0.083088316,0.56101495,0.28851005,-0.21016157,-0.20915274,0.31993833,0.46355006,0.050837915,-0.5274716,0.16971858,-0.3865373,-0.26481727,-0.23437546,-0.1720197,-0.038788002,0.18533139,-0.20345502,-0.38203397,-0.041428853,-0.2800406,0.27560937,-2.4368448,-0.14526975,-0.03404838,0.39054453,-0.20290871,-0.014455986,-0.23237543,-0.42947546,0.13837235,0.19510432,0.5384955,-0.6723383,0.26019013,0.52124685,-0.7637746,-0.10861423,-0.6404576,0.051688153,0.11128504,0.468087,0.16022952,0.0023595442,0.1637318,0.23325841,0.52881795,0.16633655,0.07660445,0.5777058,0.391246,-0.047214627,0.11154351,-0.10579602,0.4846946,-0.37942454,-0.23987235,0.40142512,-0.2855743,0.24215017,-0.25278842,0.12126715,0.60495496,-0.37126374,-0.74611574,-0.291465,-0.13575982,1.1465101,-0.1112169,-0.5337605,0.2226548,-0.31173217,-0.08373997,0.0013054336,0.80990267,-0.22704268,0.22243868,-0.75058883,-0.24987312,0.03355894,0.20675619,0.034598187,-0.0699232,-0.33610097,0.6341127,0.026926422,0.42607537,0.39717078,0.12880413,-0.3026086,-0.6902759,0.25775337,0.7677829,0.4557179,0.107027024,-0.17682724,-0.050451968,-0.24758805,-0.103068,-0.06653826,0.7043027,0.7669215,-0.23079783,0.08795997,0.26147458,0.057042193,0.08236774,-0.11635319,-0.29331282,-0.09691579,-0.099075675,0.5348041,1.1991048,-0.22850193,0.30299973,-0.13497123,0.287549,0.03479413,-0.38867736,0.83210915,0.93677694,-0.32682377,-0.11967269,0.4934219,0.23378456,-0.7225182,0.51222634,-0.60137916,-0.10964236,0.6820257,-0.012615765,-0.46096948,0.33745465,-0.32655177,0.30798802,-0.7713184,0.67084676,-0.30137542,-0.37068713,-0.6142138,0.011620413,-2.1373792,0.14751004,-0.3096178,-0.13854422,-0.5702194,-0.07828577,0.19575466,-0.46629778,-0.6961923,0.18540637,0.22372043,0.53161746,-0.25094542,0.031202724,-0.12973535,-0.42521492,-0.10847312,0.31346256,0.48963058,0.36462542,-0.30582586,-0.31429702,-0.22752158,0.070983194,-0.49242768,0.033305842,-0.6672421,-0.55370027,-0.26834366,-0.75052756,-0.08216255,0.61124796,-0.57170224,-0.021198258,-0.3331852,0.05265683,-0.046955496,0.1882916,-0.024121253,0.20560314,0.14704913,-0.05009612,0.26149622,-0.032397706,0.395638,-0.085437536,0.245753,0.11399341,-0.05695644,0.37657306,0.510148,0.9562566,-0.26683447,1.04065,0.5886218,-0.18397264,0.109568596,-0.25432393,-0.4572276,-0.58763385,-0.31048352,0.19521438,-0.24723993,-0.5271228,0.16721447,-0.385141,-0.83351874,0.538647,-0.21344364,0.3349916,0.30373785,0.21585906,0.45414308,-0.23346816,0.09105456,-0.07880733,-0.2096961,-0.4642091,-0.09547806,-0.55702275,-0.6124705,-0.15495043,0.8738666,-0.20879126,0.094637334,0.20592825,-0.5660066,0.11657276,0.09302553,-0.04268944,0.17243202,0.31704232,0.22241752,-0.63492006,0.21175589,-0.018333495,-0.17663856,-0.47978675,0.24602325,0.6935823,-0.71541405,0.56664294,0.4435844,-0.14963052,-0.3694919,-0.5478612,-0.17660911,0.033300567,-0.12963559,0.3356186,0.32452938,-0.57266045,0.43615913,0.24678989,-0.6884268,-0.7008818,0.44234565,-0.118659995,-0.18888475,0.03529566,0.38664302,-0.43696716,-0.042888407,-0.32320178,0.2744448,-0.12693007,0.2878932,-0.00498119,-0.1957315,0.068665236,-0.003753374,-0.31107846,-0.76462275,0.38129988,-0.6453671,-0.33071554,0.55693674,0.021331178,0.008404679,-0.18745513,0.4661213,0.4024547,-0.22062047,0.10880994,-0.18500233,-0.4044039,0.2853677,0.58252364,0.46326146,-0.35318145,0.613426,0.043169063,-0.12670112,0.16610682,0.06468872,0.26423082,-0.138363,0.3229812,0.21731372,0.011752934,0.089060895,0.73004454,0.0326943,0.44837582,0.15053849,-0.0973404,0.41670153,0.011901297,0.36647764,-0.15174542,-0.3968819,0.063646354,-0.27244684,0.08485661,0.55902535,0.27106056,0.03828987,-0.10897074,-0.43421462,-0.07889822,0.3571204,0.24559946,-1.3830014,0.4558488,0.2635167,0.7128482,0.3423591,0.15391697,-0.18603848,0.77509815,-0.08334494,0.020957813,0.5726249,0.12128808,-0.64941955,0.55785704,-0.54488724,0.44249853,0.03299204,0.019882971,0.19489168,0.04502147,0.27502307,0.8981981,-0.1361411,-0.03889508,-0.18183334,-0.09138638,-0.15228839,-0.504727,0.16336058,-0.30218527,-0.57980746,0.77619505,0.44490495,0.33270296,-0.23578806,0.10738338,-0.020032933,-0.19417758,0.50809646,-0.077328645,-0.1148965,-0.007478282,-0.69190973,-0.027314449,0.41128278,-0.051616084,0.017924383,-0.20742643,-0.073324025,0.09989828,-0.26482555,-0.1275999,-0.23526447,-0.9158275,0.06306519,-0.42386058,-0.46391067,0.60726786,-0.4127603,0.060135525,0.20036365,-0.0051520937,-0.46909806,0.4333836,0.056280836,0.75704044,0.04914513,-0.19519858,-0.055369437,0.35896957,0.2792007,-0.27521357,0.19199,-0.3468344,0.15906455,-0.38893995,0.6845563,-0.07312265,-0.47942498,-0.019432304,-0.14233144,-0.21476638,0.7059353,-0.26561978,-0.35577157,-0.078738995,-0.2884818,-0.29560807,-0.28563955,-0.35840976,0.24203533,0.4609631,-0.054979224,-0.19259508,-0.14041533,-0.15640955,0.4613938,-0.03954482,0.66192263,0.4997485,0.18752582,-0.37742543,0.011274661,0.27278715,0.5919357,0.4011445,-0.06369224,-0.6340535,-0.3878317,-0.41681635,0.08586237,-0.17086606,0.21015376,0.11026588,-0.20506263,0.7468805,0.019644542,1.2537816,-0.042997,-0.28889772,0.10094639,0.5156054,-0.26420996,-0.117667556,-0.4536657,0.95695734,0.5216252,-0.30206567,0.05686583,-0.361374,-0.010389794,0.2507545,-0.33815053,-0.018594662,-0.041853312,-0.5239425,-0.2760851,0.11763612,0.2697181,-0.031112121,-0.16600992,0.08670821,0.039162714,0.08176503,0.15498096,-0.53751594,-0.1525112,0.5084885,0.14387834,-0.13053288,0.0087234825,-0.43929222,0.3193257,-0.5536627,0.14507864,-0.5479171,0.23278217,-0.11415132,-0.62185806,0.1172778,0.065882534,0.5551637,-0.6069888,-0.2932308,-0.27836558,0.39487258,0.13150714,0.110568196,0.5768972,-0.40117383,-0.062336076,0.15618102,0.7686186,1.0339357,-0.48282918,0.05861138,0.0832806,-0.4929138,-0.57376504,0.43539336,-0.39542696,0.124080986,-0.44931817,-0.276561,-0.76152325,0.034100566,0.03209253,0.044423003,-0.1907522,-0.7398663,-0.31880644,0.18175565,-0.22343461,-0.1455233,-0.31674466,0.14225243,0.6062276,-0.23343867,-0.6306806,-0.032027673,0.13068704,-0.11568331,-0.29079485,0.06486232,-0.17355841,0.28630394,0.099252194,-0.33617732,-0.19415678,0.13808745,-0.6218905,0.2299832,0.16976668,-0.45628658,-0.046337306,-0.10614431,-0.07153214,0.78742456,-0.5032213,-0.030365458,-0.35477963,-0.56870645,-1.0408701,-0.4510052,0.07900857,0.3127741,0.021282094,-0.7235647,0.07994158,-0.12033335,0.028779471,-0.026049366,-0.48566136,0.39365482,0.043316856,0.63293993,-0.47147706,-0.9212747,0.11684221,0.1165185,-0.14778401,-0.6349831,0.48042527,0.30480844,0.8999724,0.082320474,-0.051283125,0.013999413,-0.47252902,-0.028727608,-0.17852159,-0.0660559,-0.58485466,0.192073,680 -877,0.45416996,-0.23679943,-0.2921313,-0.093043886,0.017355422,-0.15442318,-0.07822821,0.71212214,0.18799187,-0.48145917,-0.26142946,-0.14329146,-0.05461489,0.45728815,-0.120218694,-0.61446875,-0.13306028,-0.00251243,-0.16060881,0.5569617,-0.4006864,0.1762891,-0.052598074,0.51649904,0.17047071,0.2711515,0.29542172,-0.03801075,-0.16897686,-0.086900294,0.015773525,0.14521919,-0.50759894,0.3016861,-0.17310512,-0.3893635,-0.1216965,-0.45577297,-0.37877634,-0.63622576,0.23399131,-0.75570035,0.5012258,0.1502827,-0.20785828,0.3011075,-0.10433352,0.21861942,-0.31457654,-0.03137897,-0.05464897,0.12712644,0.08499533,-0.12459422,-0.11658618,-0.24099112,-0.47421655,0.15114452,-0.40834138,-0.17041631,-0.31031713,0.13682273,-0.25462756,-0.08960169,0.07659054,0.3418881,-0.429376,-0.20750089,0.1034992,-0.07746191,0.42184797,-0.47753695,-0.2720562,-0.15424214,0.14213789,-0.23489265,-0.15471652,0.27489218,0.2184732,0.45004606,-0.07251532,0.0238365,-0.29125777,0.01345743,0.22179072,0.5869076,-0.26406708,-0.7186408,-0.10729004,0.017414903,0.23387925,0.20797211,0.0692525,-0.27824074,-0.07758715,-0.009304722,-0.18151397,0.24557014,0.542998,-0.16097452,-0.37601507,0.3843721,0.4558924,0.13627122,0.016903758,0.07283217,0.137146,-0.44300053,-0.16483088,-0.090114236,-0.109214395,0.58752435,-0.04125261,0.38261077,0.60490483,-0.22168921,0.19906068,-0.078180544,-0.12595816,-0.17863534,-0.21442151,-0.2245843,0.13548459,-0.31055003,0.19128661,-0.19126661,0.75918657,0.16684626,-0.9104281,0.3512541,-0.4579551,0.07860959,-0.13762857,0.62159246,0.7576243,0.28424275,0.36476162,0.6650955,-0.46697426,-0.016268969,0.011446784,-0.38721824,0.0036720831,-0.13440494,-0.1980757,-0.48263052,-0.17662977,0.34674618,-0.19843256,0.27169743,0.28192976,-0.5930414,0.05474162,0.22562586,0.7390631,-0.28092292,-0.045665313,0.8306586,1.1308521,0.85557824,0.04669981,1.060427,0.3511169,-0.09347179,0.45576182,-0.36023116,-0.6735401,0.30429924,0.52299434,-0.3407105,0.32213676,0.046993356,-0.16829205,0.30548605,-0.57396156,0.117538214,-0.23337905,0.19155681,0.007459531,-0.24468982,-0.6037008,-0.21163239,-0.19919045,-0.015084569,-0.06724244,0.2239132,-0.27119198,0.30921736,-0.054304793,1.5499377,-0.055675417,0.1285988,-0.09114323,0.6884387,0.09731716,-0.3295277,-0.08743945,0.21307822,0.45463085,-0.008400763,-0.5714834,0.075244986,-0.13708563,-0.503236,-0.15710196,-0.34492052,0.07148811,0.12251978,-0.3526694,-0.13703774,-0.13526213,-0.3872958,0.5568835,-2.9892552,-0.3034707,-0.0666077,0.28993687,-0.2565155,-0.27527022,-0.108201005,-0.34700596,0.48597512,0.5466344,0.47227383,-0.63283235,0.07345375,0.38028887,-0.379709,-0.17446129,-0.6168348,0.2060468,-0.14794122,0.35539523,0.016976263,-0.03234108,0.14198531,0.2014993,0.509787,0.13230623,0.10816881,0.17151761,0.19390883,0.06973923,0.18005617,-0.12595315,0.43690053,-0.22179371,-0.25803337,0.2699958,-0.23568521,0.1685958,-0.14740129,0.1958024,0.2264385,-0.5235155,-0.91642475,-0.6595981,-0.51416636,1.1581329,-0.12275254,-0.41455686,0.42339364,0.023860896,-0.24383332,-0.11828879,0.5550363,-0.236826,-0.007829693,-0.7077894,-0.05061717,-0.046585947,0.14374529,-0.03547384,-0.06914327,-0.5420009,0.54479593,-0.11072875,0.34256855,0.39490178,0.31755424,-0.1728863,-0.62737685,0.14444375,1.0292096,0.39225283,0.18305282,-0.11403155,-0.18479861,-0.34885013,-0.06293628,0.22140104,0.3748212,0.9252959,-0.020533549,0.10242441,0.27835116,0.034321483,0.105884254,0.067998685,-0.21444435,-0.09653977,0.044311713,0.6421403,0.6006271,-0.27802444,0.482645,-0.29097542,0.17372407,-0.18703891,-0.30087662,0.70091754,0.66586787,-0.11465903,-0.19168407,0.63647836,0.45086932,-0.26496923,0.43209574,-0.69621056,-0.21263556,0.42486203,-0.13160282,-0.36853215,0.2010709,-0.32664534,0.2140059,-1.1670054,0.37014225,-0.20625897,-0.49933228,-0.63420415,-0.06693479,-3.5944073,0.07407413,-0.16814776,-0.41915646,0.0140873,-0.2839087,0.31565675,-0.63724834,-0.4890895,0.30697182,0.07104314,0.5827922,0.015263538,0.12252739,-0.16797708,-0.10411928,-0.44006678,0.040702436,0.17960383,0.38867483,0.117259,-0.32457975,-0.1262167,-0.088008665,-0.51712537,0.16290568,-0.4161192,-0.46120307,-0.30377492,-0.5491536,-0.22496851,0.6771875,-0.4145701,0.013167094,-0.2209053,-0.046872944,-0.215926,0.49150452,0.18752564,0.04563272,0.09163991,0.038066935,0.10217472,-0.2903245,0.37900475,0.11373479,0.32313475,0.44230327,-0.4173999,0.28590086,0.59070486,0.62223756,-0.24952446,0.6423742,0.6230234,-0.033031743,0.23256375,-0.38346276,-0.1317874,-0.41113937,-0.48525396,-0.06172496,-0.31447372,-0.58725506,-0.18246724,-0.33565405,-0.7788792,0.45164096,-0.1476921,0.45074686,0.01708438,0.08595737,0.38478696,-0.111745715,-0.059026863,-0.094507,-0.016064594,-0.59400636,-0.18840043,-0.63436043,-0.62621695,0.24873418,0.82982653,-0.07880008,-0.044020284,0.039896607,-0.1937893,-0.007193701,-0.12472143,-0.11591596,0.05864669,0.19264613,-0.06608241,-0.72229284,0.45122075,0.066514306,-0.27584445,-0.66274434,0.21694238,0.5494948,-0.5457732,0.38005129,0.225235,0.08046389,-0.04816701,-0.49045828,-0.32204178,-0.20092641,-0.11408768,0.32712522,0.13688004,-0.851621,0.47867465,0.33907762,-0.26100174,-0.7775619,0.4695263,0.010643569,-0.041569013,0.0063999393,0.105391055,0.0719648,-0.022586504,-0.2848478,0.31076238,-0.323651,0.30763283,0.20455603,-0.024538547,0.61820763,-0.10552928,0.04647531,-0.6388164,0.045683723,-0.53967303,-0.23282202,0.1633137,0.26820752,0.09994251,0.025795877,0.023684964,0.3461537,-0.29583332,0.13829228,0.07864564,-0.26700446,0.15847017,0.46820474,0.46609783,-0.3596244,0.60290116,0.07248253,-0.07719241,-0.2103257,0.045270666,0.439818,0.08960902,0.12025074,-0.10368616,-0.25772777,0.18657301,0.5503918,0.22667187,0.35965237,0.03800082,-0.04619983,0.34974506,0.11284534,0.22688657,0.15461674,-0.49077162,-0.019265393,-0.21682191,0.17121331,0.47808346,0.26711202,0.2841026,-0.14456353,-0.28718254,0.1051865,0.27454403,-0.0025555592,-1.263003,0.4839008,0.14650185,0.667037,0.6128904,-0.0127538815,0.020238748,0.6705642,-0.12976734,0.21268316,0.3261845,0.14710563,-0.6408735,0.5780076,-0.7763476,0.47776452,0.0759225,-0.056209892,-0.006611953,-0.06386714,0.32507423,0.674567,0.002596135,0.1944055,-0.05771807,-0.09651959,-0.025052508,-0.3466781,0.24763656,-0.6081616,-0.14986388,0.60824275,0.44873154,0.16665184,0.03550448,-0.025310388,0.08236355,-0.0706447,0.15880185,-0.18720293,0.17576082,0.043214973,-0.67703646,-0.29696992,0.47609878,0.054470986,0.17658336,0.004253956,-0.15739608,0.089172564,-0.22851257,-0.19572477,0.052586887,-0.57900256,0.047440697,-0.28145608,-0.21191414,0.48900655,-0.29001042,0.35841116,0.13409103,0.04725586,-0.10798967,0.074323624,0.17801784,0.76760143,0.008905132,-0.33823323,-0.39296946,0.16181007,0.26666167,-0.2175159,-0.11192278,-0.23477717,-0.32217464,-0.6833346,0.49079692,0.06429791,-0.25998148,0.22402757,-0.08337492,0.11793282,0.53544885,-0.08580128,-0.02234429,-0.034287345,-0.24983911,-0.26674768,-0.069582395,-0.19100793,0.38277158,0.36059913,0.037986804,0.06543437,-0.10923868,-0.12518898,0.3375373,0.11264149,0.41704628,0.24210377,0.16425957,-0.2878484,-0.24319692,0.06857876,0.32902882,0.24352382,-0.06373054,-0.23306926,-0.41347718,-0.34736133,-0.12698328,-0.18202694,0.274605,-0.01428225,-0.24767981,0.47360453,0.1668389,1.200595,0.039969888,-0.369879,0.22596379,0.42494464,-0.046065122,-0.06918383,-0.3787098,1.0486826,0.5476609,-0.12840764,-0.12736244,-0.35566702,-0.2221279,0.34390107,-0.24965824,-0.26322204,0.01354229,-0.64721704,-0.46293154,0.19646455,0.19575524,0.14538969,0.022165308,0.07644464,0.16285796,-0.04569511,0.45203748,-0.33237478,-0.06415274,0.38263357,0.3730308,0.09503761,0.150322,-0.46382043,0.38073957,-0.5479363,-0.030109545,-0.28398678,0.16380672,-0.14465462,-0.52695316,0.11909511,0.20054887,0.5528243,-0.10898143,-0.4993268,-0.17258215,0.63278747,0.04148854,0.12294803,0.5155211,-0.23763354,0.04234922,-0.13704261,0.32218137,1.1807303,-0.2366879,0.022026204,0.35339835,-0.2255549,-0.7013893,0.5055105,-0.28962788,0.43592438,-0.2301169,-0.26887774,-0.5347274,0.18818565,0.1411644,-0.13397856,-0.076331176,-0.4326842,-0.37969077,0.19736807,-0.23099963,-0.21162038,-0.44784808,0.019986475,0.6654431,-0.375093,-0.39368796,0.2253743,0.22666426,-0.23781745,-0.52855325,-0.0715513,-0.13483785,0.270537,0.09112122,-0.4322982,-0.25632453,0.08893857,-0.25242943,0.21231045,-0.078819275,-0.37446174,0.18644702,-0.2956287,-0.030796973,0.9959302,-0.23528288,0.15136968,-0.69556457,-0.46967682,-0.87588614,-0.56771964,0.6452262,0.24402791,-0.032244846,-0.5593614,0.21134804,-0.072422475,0.16681182,-0.14250661,-0.2540984,0.35355783,0.059720654,0.4924587,-0.08433369,-0.6651879,0.13623327,0.1819619,0.06266097,-0.6409465,0.47520122,0.118347995,1.0172673,0.0896483,0.074815,0.22356975,-0.6052768,-0.18388611,-0.18003708,-0.30762473,-0.63216835,0.30325523,688 -878,0.6111341,-0.12712997,-0.7436754,-0.1328441,-0.33919927,-0.25638342,-0.26745686,0.48693427,0.22442318,-0.49375165,-0.19566935,-0.13794874,-0.08605233,0.65092427,-0.24417849,-0.906159,0.13251673,0.32090205,-0.46718094,0.58078796,-0.5564901,0.2624887,-0.02104267,0.6300372,0.39071593,0.23830134,0.37116694,0.1020185,-0.27770594,-0.42733732,-0.077647805,0.05619095,-0.7437315,0.19180723,-0.20973015,-0.75740075,0.048741948,-0.5328416,-0.4121662,-0.93800306,0.37754452,-0.8261843,0.59264493,-0.112039566,-0.32280394,0.09241452,0.27712512,0.4812467,-0.22100161,-0.08505266,0.11615547,-0.09449023,-0.03510712,-0.15638046,-0.30832005,-0.39556536,-0.65143794,0.095651805,-0.44061562,-0.105946384,-0.27381852,0.19403286,-0.34940717,0.14874835,-0.07593424,0.6245833,-0.4012505,-0.080935664,0.39275208,-0.12758927,0.1677322,-0.53932,-0.17954282,-0.22692186,0.117419064,-0.031139208,-0.24303472,0.38464522,0.09470274,0.34517944,0.2099743,-0.38598558,-0.42936578,-0.13978261,0.111419775,0.45934007,-0.21302028,-0.5040214,-0.25303617,-0.045131575,0.20993136,0.22440465,0.26195684,-0.25696245,0.1407338,0.07906264,-0.38919938,0.61084,0.44400778,-0.36931658,-0.20626432,0.09057235,0.52281564,0.19777797,-0.2645814,0.054951686,0.18535282,-0.6802265,-0.30922374,0.03061904,-0.02638237,0.68280643,-0.16799362,0.25602314,0.8412532,-0.39295772,-0.112236165,0.04405415,0.0707478,-0.119981706,-0.55990046,-0.44002065,0.4328208,-0.55509424,0.14458714,-0.31616503,1.0106817,0.23599888,-0.62495327,0.27244714,-0.68410516,0.12412401,-0.24401122,0.49951085,0.5262856,0.3206863,0.41755596,0.74459577,-0.3147024,0.24234462,-0.0050762594,-0.43533078,-0.15115635,-0.18401597,0.17692764,-0.3415273,-0.010881166,-0.28120235,-0.023979226,-0.010086447,0.5168592,-0.50803703,-0.19715138,0.16460837,1.0206809,-0.31200418,-0.18115652,0.9356961,1.0679065,1.3441502,-0.001654475,1.2611371,0.42924973,-0.12759541,0.01942725,0.0059604845,-0.7281839,0.31207296,0.28581896,-0.46280766,0.24834915,0.07450851,-0.04290278,0.5564253,-0.43360198,0.08971617,-0.22940926,0.50934213,0.19474308,-0.15059738,-0.49628153,-0.31256756,0.020859934,-0.25526306,0.14678174,0.3282654,-0.106699504,0.4026629,-0.12791562,1.697372,-0.054530393,0.034140557,-0.0048710457,0.7270684,0.29910967,-0.064653344,0.0706861,-0.05047895,0.31067246,-0.005767832,-0.64941746,-0.105223894,-0.35262606,-0.3384502,-0.2912997,-0.38852763,-0.05489215,-0.08407816,-0.4380953,-0.32844165,-0.1378319,0.015589942,0.31563568,-2.2962914,-0.35405812,-0.059076626,0.20817618,-0.4133422,-0.33656478,-0.021020522,-0.7238273,0.66352874,0.2249365,0.55661273,-0.5839098,0.575689,0.5647715,-0.4732792,-0.0975058,-0.768534,-0.13354155,-0.095251866,0.3555374,-0.124790214,-0.20948057,-0.069922954,0.036981836,0.565784,0.016543671,0.07418808,0.21827824,0.48552808,-0.060224682,0.65715265,0.15671481,0.71138304,-0.61200076,-0.24887729,0.32789892,-0.47658026,0.2460016,-0.18262397,0.13767505,0.6394719,-0.49920675,-1.0078369,-0.7176654,-0.06364915,0.9689948,-0.12213173,-0.5262788,0.19960512,-0.11174067,0.02278932,0.0077333055,0.19366096,-0.09308135,0.073222,-0.59039146,0.05443782,-0.06735412,0.010386169,0.059510518,-0.010166541,-0.35838926,0.59400445,-0.1182476,0.11701912,0.4213461,0.3135161,-0.43557557,-0.5803329,0.087827615,0.96655464,0.29823765,0.22026896,-0.5570324,-0.24202244,-0.41437733,-0.24775128,-0.06659074,0.46114942,0.92229795,-0.24182884,0.14831787,0.4020617,-0.041988987,-0.03239323,-0.081805006,-0.6829603,-0.19452874,0.06902417,0.6509984,0.7420342,-0.10990431,0.71649593,-0.1037729,0.43500146,-0.2816677,-0.3517239,0.6608007,1.1380656,-0.24716824,-0.3717207,0.62653273,0.31251845,-0.43374622,0.6615899,-0.49139246,-0.2756141,0.48931846,-0.085003786,-0.32181552,-0.026599646,-0.2871221,-0.012925822,-0.86772794,0.30620733,-0.4532659,-0.22660752,-0.76108885,-0.49437344,-3.4335167,0.3387464,-0.31179094,0.10537494,-0.14312796,-0.16153409,0.20784009,-0.591151,-0.6735213,0.24095659,0.044176895,0.80499625,-0.034203425,0.29499185,-0.24151659,-0.2735705,-0.43885553,0.14890952,0.26739737,0.36001512,0.09064139,-0.5130958,0.021201387,-0.29634014,-0.5846929,0.062217563,-0.6141781,-0.45323205,-0.1966273,-0.7728538,-0.36111537,0.93456715,-0.37448576,0.10061034,-0.2922878,0.074318014,-0.20147265,0.3912411,0.089103304,0.19149482,0.16265939,-0.18062067,0.10040444,-0.3244066,0.022835886,0.08516902,0.4777002,0.1230197,0.061750352,0.28162163,0.6499152,0.8525584,0.1550274,0.8860838,0.5048518,-0.1392474,0.2782931,-0.33283815,-0.55300283,-0.49235976,-0.3315502,-0.05032895,-0.40252653,-0.4822637,0.06434085,-0.39494655,-0.8116233,0.8684624,0.07074591,0.100752346,-0.0033917725,0.2358525,0.4093895,-0.1626407,-0.15166254,0.014178206,-0.023143245,-0.6323717,-0.3956597,-0.5998346,-0.5630649,0.07364082,1.0457662,-0.14977987,-0.10022076,0.12281885,-0.40148067,0.09205407,0.26665327,-0.14521815,0.023630986,0.389523,-0.052503522,-0.79606384,0.29249966,-0.14906788,0.03878411,-0.7006069,0.23668265,0.8424177,-0.7299812,0.62173015,0.36955008,0.09364748,-0.11169866,-0.50999373,-0.20327848,0.13964379,-0.06730901,0.5688583,0.17788,-0.79497623,0.5504594,0.38846174,-0.44061586,-0.85946304,0.38007483,0.03406299,-0.36826715,-0.05322269,0.33855477,0.29446945,-0.00079652417,-0.3778509,0.16306317,-0.48927853,-0.06326851,0.2707896,-0.19246931,0.4074668,-0.32113698,-0.23247957,-0.7886146,0.04036222,-0.539785,-0.2861235,0.10746926,-0.03664094,-0.04134376,0.2983878,0.23006292,0.08473947,-0.23021646,0.07429643,-0.1599209,-0.288824,0.49176347,0.38232312,0.53161114,-0.62721294,0.6358545,0.09309531,-0.11038783,0.24760132,0.0037364562,0.43731928,-0.007537415,0.43523288,0.20396942,-0.096366614,-0.0062728724,0.7488449,0.14795323,0.6180948,0.18706803,-0.1322477,0.14099996,0.18386428,0.14787884,0.36421934,-0.5681713,-0.08710333,-0.15667649,0.20578186,0.6327222,0.13827819,0.4646155,0.18734397,-0.31913802,0.062329486,0.06209445,-0.34921417,-1.5562059,0.4252913,0.22777776,0.9055829,0.48316917,0.0024945997,-0.0117896395,0.7316949,-0.14788778,0.18384969,0.4502212,0.048578814,-0.38201013,0.69019777,-0.4991598,0.5811865,-0.07079464,0.14925109,-0.11381867,0.12775032,0.60780424,0.7891081,-0.19398205,0.041774526,0.051018637,-0.3211685,0.15373456,-0.5644638,0.09939083,-0.36164045,-0.17979617,0.882895,0.48560986,0.2871787,-0.17541252,-0.056022268,0.19148986,-0.09594969,0.07906606,-0.1940756,-0.11036587,0.036888264,-0.5290534,-0.25611982,0.5879821,0.11991047,0.25408164,-0.051162597,-0.14325921,0.3376683,-0.12015703,-0.01845251,-0.073428325,-0.8378524,0.019602507,-0.31697598,-0.53744566,0.4342977,0.008670797,0.24755894,0.16155319,0.0842346,-0.4298322,0.5355413,-0.063191675,0.61603814,-0.17790276,-0.15573364,-0.31866434,0.16605513,0.31178483,-0.3357412,0.06640544,-0.33042035,0.15916912,-0.5068404,0.3896061,-0.15857063,-0.33869871,-0.124748915,-0.09417194,-0.0216329,0.6241136,-0.19087245,0.09621356,0.11836654,-0.26185104,-0.220025,-0.23404156,-0.053808082,0.23137073,0.14126705,-0.11773274,-0.16112705,-0.26753286,-0.024199734,0.5092327,-0.23115265,0.24262714,0.40065014,0.2620686,-0.3018376,-0.3553972,0.030875312,0.5718785,-0.08887016,-0.18241636,-0.35334063,-0.35115132,-0.33497226,0.6087906,-0.059085656,0.25649944,0.08849114,-0.40066218,0.8694999,0.26878503,1.3524853,0.059711114,-0.5138503,0.15919401,0.51135427,0.014459029,0.08515335,-0.55311793,1.0046922,0.4767731,-0.31152725,-0.28473064,-0.61209756,0.024367189,0.2929221,-0.3066754,-0.36385798,-0.1117394,-0.44447994,-0.20836908,0.29511467,0.37124947,0.123031385,-0.17025109,0.21394837,0.44111407,0.1254111,0.52412933,-0.55621284,-0.12901188,0.45190024,0.39687085,-0.12212723,0.16097148,-0.5703648,0.2817752,-0.5010396,0.2293296,-0.5192509,0.2267127,-0.05271144,-0.41730785,0.30674294,0.16346776,0.33153018,-0.5299174,-0.18002208,-0.17013372,0.51507336,0.32563892,0.1956116,0.6878192,-0.325232,-0.114408456,-0.06822147,0.5200653,1.0733575,-0.2594132,-0.109890126,0.33946982,-0.16070189,-0.72797775,0.44713864,-0.33984908,0.11498201,-0.02454494,-0.32754156,-0.8075054,0.23933981,0.13566591,-0.15769565,0.21986194,-0.6400203,-0.17364107,0.19089197,-0.12895982,-0.2566273,-0.42357764,0.0981187,0.7154488,-0.18934657,-0.30504945,0.19241385,0.37009445,-0.0504618,-0.49081793,-0.16654082,-0.29388365,0.42451826,0.13509233,-0.20335211,-0.12555325,-0.032485414,-0.6194977,0.1452398,0.2661225,-0.3207173,0.068318106,-0.124409296,-0.079293914,0.8716872,-0.102575354,0.42690024,-0.44028965,-0.47960803,-0.9009482,-0.37072203,0.55929387,0.17427985,-0.006464675,-0.72238874,-0.06655408,-0.08912376,-0.11907998,0.26630303,-0.45546627,0.3440999,0.08886159,0.41143808,0.013532211,-0.84904236,-0.016926685,0.14656375,-0.32006207,-0.6284802,0.56025565,-0.29413822,0.926378,0.06055224,0.07593114,0.20333914,-0.32094678,0.056391966,-0.37570944,-0.3963503,-0.6218868,0.02366428,704 -879,0.7134196,-0.094970345,-0.3498417,-0.30214372,-0.1308375,-0.07667435,-0.121168174,0.63910973,0.31542078,-0.7093286,-0.34297904,-0.23705511,0.08278901,0.16366011,-0.31439194,-0.65205926,0.043155,0.13391693,-0.21326996,0.45643964,-0.4676638,0.31337985,0.09085845,0.23226035,0.03712176,0.113758765,0.23380804,-0.15562259,0.20964527,-0.18708783,-0.28805074,0.30304667,-0.6167931,-0.023246646,-0.16891752,-0.34838822,0.026401162,-0.43296131,-0.38384056,-0.7460218,0.37087378,-1.0109305,0.61354613,0.2688154,-0.27117822,0.43420568,-0.13678329,-0.012244607,-0.14967893,0.25555816,0.0041811294,-0.27770552,0.10322589,-0.18225895,-0.15445502,-0.49896088,-0.6552021,-0.025815144,-0.36097458,-0.28352025,-0.34677193,0.07651787,-0.45171127,0.0695482,-0.17466246,0.53715605,-0.44970012,-0.03793657,0.1526284,-0.25740266,0.30530724,-0.69622904,-0.24622934,-0.11345608,0.26068857,-0.16411693,-0.17233318,0.17231877,0.31510988,0.6971192,0.030606464,-0.21666522,-0.22534873,-0.009215574,-0.03150186,0.46798098,-0.20037375,-0.6144933,-0.073774524,0.09338361,0.25694495,0.18961328,0.13989042,-0.104583524,-0.17065538,-0.047323674,-0.3065556,0.48288462,0.56989676,-0.41946682,-0.29538554,0.22080553,0.40894046,0.17730705,0.09048197,0.1673692,-0.04162876,-0.6209166,-0.12088088,-0.0018252432,-0.4496174,0.7538298,-0.24968785,0.31639656,0.58844227,-0.10815843,0.13540502,0.06672355,-0.012396517,0.112052836,-0.3148594,-0.32176688,0.4271718,-0.48574045,0.24616957,-0.24580951,0.88475513,0.14358386,-0.6319874,0.3302857,-0.5066929,0.14732164,-0.25568914,0.59705824,0.61291593,0.4796939,0.35374272,0.8446889,-0.7458339,-0.03311365,-0.09076873,-0.36676303,-0.018092513,-0.016915655,0.06563969,-0.3061286,0.05053972,-0.019321034,-0.017706731,0.12332312,0.33544457,-0.479195,-0.07910461,0.26176623,0.7594977,-0.25760546,0.00987224,0.7554485,1.1132518,0.99741936,0.11450302,0.97223663,0.1288789,-0.23406601,0.15300627,-0.08682209,-0.83783466,0.37634477,0.5475231,0.31405658,0.2627593,0.11793247,-0.05152082,0.30581823,-0.44962016,-0.1756772,-0.27273974,0.25360703,0.13094954,-0.13672905,-0.66326827,-0.08887205,-0.09984747,0.09209605,0.06082425,0.21480574,-0.1928793,0.17897277,0.015247042,0.99520445,-0.06932517,0.15028821,0.17511916,0.4072535,0.2193706,-0.044132486,0.1569646,0.32436934,0.42360103,0.16122483,-0.6447188,0.051658552,-0.2752317,-0.5210141,-0.16931267,-0.34319106,0.12325514,0.15604135,-0.5238454,-0.1977403,-0.17092569,-0.24418713,0.3428948,-2.482436,-0.26443294,-0.059309017,0.47973135,-0.21521473,-0.2662987,-0.14167495,-0.5176258,0.4700153,0.3921651,0.5894994,-0.7607091,0.2527435,0.6603419,-0.45047083,-0.07560048,-0.6021212,0.0004666249,-0.1559239,0.30732992,0.16823155,-0.22380853,-0.057222035,0.12918837,0.6861574,0.2655729,0.0912532,0.11197242,0.45081738,-0.12965208,0.38095784,-0.24385238,0.49965134,-0.24609435,-0.17304349,0.31712085,-0.16380163,0.07554161,-0.44021618,0.18476748,0.42631027,-0.4321846,-0.87644285,-0.6122594,-0.22783859,1.4151073,-0.16380186,-0.57167894,0.46393514,-0.08370074,-0.16167875,-0.16847368,0.5349609,-0.20928484,-0.18105012,-0.7773202,0.045816537,-0.10305771,0.1504634,0.10773092,-0.061807375,-0.46935543,0.85018533,-0.074308775,0.46470413,0.40737787,0.2448501,-0.07583052,-0.43611896,-0.047267187,0.83980966,0.40161753,0.18813448,-0.2828725,-0.093874834,-0.19427447,0.160281,-0.018564133,0.6333234,0.8042688,-0.2101245,-0.049586464,0.19988646,0.25383273,0.10859584,-0.119815804,-0.3002158,-0.14820768,-0.15995422,0.44685718,0.644043,-0.33198473,0.15330982,-0.12665294,0.26281908,-0.19921486,-0.29784116,0.43788636,1.0797734,-0.15996432,-0.18264551,0.8220916,0.36446056,-0.2537982,0.43171728,-0.77498364,-0.31902775,0.4428468,-0.16738474,-0.42252156,0.19394927,-0.44298708,0.20009887,-0.8369836,0.3411698,-0.29832026,-0.32172433,-0.6298274,-0.1759535,-3.5811176,0.26379725,-0.41174832,-0.05936988,-0.18812935,-0.22026336,0.21010627,-0.77568895,-0.59602636,0.29142722,0.19644593,0.63980675,-0.054249182,0.13782226,-0.19520672,-0.39029536,-0.20308311,0.08512931,0.012933172,0.26674575,0.27549207,-0.36683908,0.12667133,0.02557831,-0.3216108,0.025421858,-0.48233366,-0.46449903,-0.113833934,-0.5662532,-0.4147861,0.5175386,-0.2764089,0.047899198,-0.20218545,0.046579573,-0.14212568,0.14220269,0.052301507,0.2526754,-0.02308703,0.08855047,-0.009551674,-0.17235535,0.39232278,0.053162914,0.20709562,0.37663198,-0.34852764,-0.23084687,0.53011286,0.56285137,-0.15402131,0.99682736,0.49667946,-0.064654626,0.2582712,-0.1320911,-0.33619544,-0.7027719,-0.41532293,0.00565284,-0.4293296,-0.4430976,0.016808312,-0.37061706,-0.7989114,0.5766445,-0.14388336,0.4433411,0.13539548,0.43081847,0.6273392,-0.23971854,0.011315753,0.07269502,-0.19316347,-0.51767635,-0.16450326,-0.71137804,-0.29982,-0.06923464,0.8182834,-0.19747108,-0.008583841,0.03720836,-0.05238195,0.026971733,-0.06408245,0.061868567,0.0046687922,0.46989274,0.08722815,-0.63504064,0.4709107,0.010195591,-0.15576981,-0.5874036,0.00058194995,0.45011887,-0.7328294,0.4643263,0.48014423,-0.07399284,-0.17529671,-0.68455744,-0.46769002,-0.07385258,-0.20462006,0.35813895,0.34901595,-0.74639314,0.431177,0.388566,-0.18853319,-0.78045607,0.4631964,-0.122723974,-0.58802515,0.047448352,0.32928973,0.17061615,0.14062656,0.11219791,0.20883483,-0.403711,0.30028287,0.24498528,-0.050298825,0.3919978,-0.13702887,-0.0024517726,-0.9321038,-0.05388704,-0.59666353,-0.20260827,0.29183385,0.08947656,-0.033657815,0.25141048,0.043261487,0.47336093,-0.32373407,0.19226341,-0.083223075,-0.20805895,0.5121365,0.3938208,0.48824143,-0.25013316,0.6567232,0.07080377,-0.1450385,-0.18395098,0.1712271,0.42591003,0.010099408,0.32289335,-0.046574175,-0.2740263,0.17187835,0.8264323,0.19318663,0.30198082,0.21805839,-0.028828016,0.51927704,0.24417424,0.1738125,-0.12389424,-0.56199795,-0.15383284,-0.33777305,0.0061027952,0.43096685,0.19775356,0.22862731,-0.2029739,-0.20359945,-0.0149834575,0.24751054,0.1319936,-1.0999237,0.13294953,-0.062298592,0.76002854,0.557702,0.13328831,-0.09531713,0.50768465,-0.0007530202,0.09255233,0.2943335,0.008213796,-0.4215848,0.4371985,-0.45643425,0.16447687,-0.20635776,0.019685768,-0.03760445,0.011028573,0.3031771,0.5969711,-0.092632495,-0.06631074,-0.1040358,-0.22139247,0.13528258,-0.4551796,0.13577749,-0.5467618,-0.18741255,0.60675937,0.47299156,0.3873525,-0.31729907,-0.009541289,-0.002941534,-0.091380574,0.071612425,-0.040661942,-0.012456882,-0.06356565,-0.59490603,0.0028935373,0.49592316,0.35306978,0.056153137,-0.264884,-0.30884355,0.15743864,-0.14603241,-0.2614779,-0.052841887,-0.67213565,-0.053913284,-0.4343704,-0.4258695,0.2778151,0.025815884,0.3078462,0.15480109,0.012930338,-0.2500327,-0.035255928,0.18423986,0.62489,-0.05617844,-0.12759866,-0.52965504,0.12599273,0.11071516,-0.20230223,0.014189755,-0.17778556,0.07872435,-0.47335362,0.5168539,-0.06252536,-0.13318123,0.11770492,-0.281626,0.008840029,0.59611994,-0.13202877,-0.12062857,0.013647123,-0.33777502,-0.3768524,-0.21630573,-0.17488734,0.29138687,0.026085878,-0.22686751,-0.1285137,-0.12117249,-0.22401853,0.397266,0.1784345,0.23894817,0.20554638,0.05910504,-0.22923471,-0.14126118,0.07642726,0.54612875,-0.053805068,-0.25307587,-0.23873131,-0.70500225,-0.26375997,-0.15051408,0.00034404793,0.3103153,0.05915889,-0.09418922,0.7269841,0.30125,1.0144633,0.014288922,-0.35918364,-0.18725355,0.53392,-0.22288603,-0.19121015,-0.1894002,0.9496781,0.5715063,-0.06644789,-0.058643907,-0.20840818,0.14819495,0.09599814,-0.15056863,-0.041454896,-0.0584607,-0.62045985,-0.26103997,0.36351228,0.36565414,0.20682152,-0.07205539,0.07281912,0.22801477,0.05895667,0.49241993,-0.4537057,-0.23539376,0.14874946,0.12932378,0.13724265,0.09458136,-0.27113768,0.34976792,-0.5682263,-0.011401738,-0.543847,0.07603095,-0.24670096,-0.20994604,0.3374641,-0.017626682,0.5153652,-0.37565005,-0.48550776,-0.22458987,0.30115518,-0.10026139,0.11472523,0.48707977,-0.17014419,0.0071027675,0.09142986,0.69248945,1.2866664,-0.103715695,0.23057474,0.32291344,-0.41244444,-0.6846157,0.34738874,-0.26394224,0.0765979,-0.13236813,-0.11485235,-0.50053924,0.2645814,0.26534942,0.045398954,0.21418203,-0.5355456,-0.42387095,0.26805863,-0.3103995,-0.16390467,-0.121408165,0.11729864,0.64667696,-0.324792,-0.24593578,-0.072157584,0.33617386,-0.1765163,-0.7078757,-0.027261471,-0.35792652,0.31296575,0.23560794,-0.32329226,-0.019527009,0.09395503,-0.52871233,0.026646933,0.117591105,-0.31380892,0.09864373,-0.4675788,0.07575285,0.89144254,-0.15570103,0.17785864,-0.47728088,-0.499409,-0.9523671,-0.18683524,0.7136598,0.18313916,0.19573082,-0.5064257,0.14479668,-0.15366818,0.03069959,-0.30209085,-0.17760502,0.5795447,0.16301683,0.51815516,-0.097267576,-0.7524602,0.011997809,0.03224488,-0.19928086,-0.43782791,0.54052943,0.22071512,0.90300757,-0.019888673,0.14305867,0.1274408,-0.5017563,0.09061825,-0.21854186,-0.14448224,-0.65297025,0.04426579,716 -880,0.56504184,-0.26428002,-0.33035088,-0.17986129,0.09818319,-0.16084628,-0.3438336,0.383062,0.026598861,-0.47307372,-0.37311184,-0.21348034,0.05902947,0.36659554,-0.14781825,-0.8263526,-0.05362912,0.11251136,-0.34322166,0.8264467,-0.35919094,0.2122746,0.0156822,0.4060632,0.2362638,0.19875474,0.42811725,0.036199734,-0.43914554,-0.31726933,0.043551743,-0.36569175,-0.9286998,0.06434122,-0.270176,-0.46369347,-0.056173414,-0.40254298,-0.32532743,-0.9267311,0.46008325,-0.9717479,0.4329706,0.079405926,-0.27793762,0.5336828,0.002757122,0.35238537,-0.19033486,0.1405916,0.019327164,-0.10674933,0.07438059,-0.30664322,-0.03259043,-0.31728122,-0.6982978,0.06208529,-0.39419702,-0.15442495,-0.4226927,0.08009264,-0.39793697,-0.029557435,-0.30101886,0.37957212,-0.54323614,-0.43538523,0.19090278,-0.11374658,0.42322755,-0.7785745,-0.292018,-0.22212307,0.022891536,0.02214151,0.14453939,0.34096003,0.163924,0.45272747,0.098555945,-0.24793518,-0.31054184,0.095359646,0.14148864,0.38398695,-0.1591636,-0.47430804,-0.07078263,-0.13116597,0.40658584,0.22805047,0.178883,0.015877953,0.0029901613,0.039241564,-0.1841466,0.36568108,0.55076045,-0.38551295,-0.34100923,0.18669803,0.56224346,0.11695119,-0.032511696,-0.18703322,-0.095666885,-0.3714681,-0.18257587,0.45094696,-0.58814055,0.7875677,-0.08165566,0.010104214,0.60033065,-0.44063547,0.2203841,-0.09223312,0.056803137,0.0077575245,-0.23089974,-0.38149354,0.5269302,-0.45487592,0.044557467,-0.6713517,0.8412599,0.16057627,-0.7355432,0.2817829,-0.5702171,0.21133971,0.00094397366,0.6815875,0.560647,0.41340056,0.43736053,0.66797143,-0.44184992,0.059548646,-0.074331164,-0.27532387,0.12783875,-0.1677326,0.09511488,-0.2937849,-0.11795161,-0.098537914,-0.23700915,-0.12677318,0.5693186,-0.50591654,0.10159576,0.15919805,0.7255458,-0.23967123,0.0700554,0.7279517,1.354463,1.1961075,0.026573138,1.1588436,0.44298387,-0.2599297,0.12553683,-0.3876592,-0.56101334,0.25511009,0.5227282,0.1611226,0.48625818,0.0566055,-0.19416092,0.34435606,-0.5471676,0.13496782,-0.23699357,0.044721663,-7.417798e-05,0.003238852,-0.38458169,-0.4115477,-0.11350588,0.15791596,-0.03619622,0.36701074,-0.2925505,0.16405766,-0.0023363333,1.3224467,-0.055656105,0.03305657,0.13441895,0.60713047,0.25152704,-0.19269563,0.1531143,0.30658245,0.32128724,0.083238386,-0.66716963,0.09653256,-0.4748703,-0.46459588,-0.21493524,-0.2625894,0.26768902,0.19188808,-0.42168203,-0.1488969,0.033598777,-0.38385758,0.2958391,-2.1420965,-0.11046209,-0.059011634,0.38721666,-0.39082107,-0.38358355,0.0045645884,-0.5720503,0.5557677,0.4379519,0.4888353,-0.6459242,0.23508723,0.51440257,-0.43738997,0.059720974,-0.64955205,-0.16140719,-0.2645702,0.51142436,0.06322292,-0.18723446,0.10558405,0.18287188,0.7899143,0.27439496,0.0767727,0.2029993,0.32784513,-0.14011295,0.38754895,0.23245317,0.31626293,-0.19252236,-0.16924286,0.35755852,-0.45378232,0.3844154,-0.1636752,0.12651418,0.3566339,-0.520022,-0.97331095,-0.8006792,-0.54342216,1.24163,-0.07363575,-0.8302081,0.16134505,0.4535456,-0.17428648,-0.058520067,0.47380635,-0.21867244,-0.0024738212,-0.6811171,-0.06933702,-0.08937988,0.25864294,0.24176764,0.16844732,-0.6764629,0.96384686,-0.12921387,0.15480204,0.23617476,0.37340513,-0.23757581,-0.60586697,0.110683024,1.2114908,0.48078704,0.08696913,-0.3612133,-0.31761068,-0.31069276,-0.1341078,0.1604713,0.4498522,0.9517124,-0.028574288,-0.031716373,0.28514722,-0.062217385,0.03092291,-0.08479437,-0.5556763,-0.2246599,-0.032034222,0.75540656,0.6439996,-0.009921859,0.3474227,-0.19761552,0.31922337,-0.19264789,-0.24208474,0.64094543,1.2366084,0.075389616,-0.030250588,0.6628055,0.54060966,-0.3624512,0.6923816,-0.8596589,-0.3934631,0.5215099,-0.22129957,-0.37591025,0.24748272,-0.3087544,0.004445096,-0.7293605,0.439618,-0.5431461,-0.10299494,-0.8005727,-0.108941436,-3.4126647,0.19606912,-0.2812507,-0.29422453,-0.14652714,-0.15709133,0.2649171,-0.79924923,-0.57443565,0.18145858,0.15441728,0.66826075,-0.037267517,0.21503718,-0.32133707,-0.34151673,-0.607757,0.19361623,0.3115678,0.2907112,-0.11638814,-0.21588002,0.28413662,-0.27736565,-0.37616763,-0.18669839,-0.42846715,-0.53772885,-0.5426485,-0.677428,-0.37628317,0.626443,-0.31051666,0.039706334,-0.20566641,-0.022745693,-0.10441499,0.49400592,0.27695438,0.21569659,0.15673392,-0.17576475,0.060313474,-0.4123137,0.22361173,0.26545212,0.20950979,0.6239434,-0.29565015,-0.029226651,0.43301487,0.4714336,-0.06228007,0.7803505,0.50563765,-0.13382648,0.18159239,-0.31748962,-0.28627622,-0.70923525,-0.37571797,-0.1575586,-0.25035027,-0.58196455,-0.119125225,-0.4232796,-0.8351443,0.45042852,-0.33390525,0.35962403,-0.010479701,0.45822254,0.42026138,-0.1856672,0.015589903,-0.105175644,-0.038527038,-0.48197377,-0.20523536,-0.7407808,-0.4405631,0.15197964,0.70517033,-0.041898977,-0.22159295,0.13103186,-0.13402648,0.16400032,-0.16002405,-0.23121409,-0.16087632,0.45783997,0.22655845,-0.66829205,0.39392146,0.33736858,-0.22485574,-0.57000226,0.3599185,0.6232765,-0.58863515,0.470842,0.4452504,0.12234994,-0.04572307,-0.6202163,-0.095838256,0.0855653,-0.08497783,0.26188335,0.32474864,-0.6864643,0.41755715,0.15719956,-0.24704552,-0.8378346,0.549173,0.02476926,-0.43900228,-0.10486793,0.355656,-0.1619228,0.11557921,-0.3854101,0.34946087,-0.6188963,0.11032017,0.4008913,-0.022427635,0.28049144,0.019905902,-0.17916864,-0.81496066,0.37317792,-0.5905035,-0.376806,0.37413788,0.21316051,-0.14535433,0.36299053,0.37898898,0.48089924,-0.22411136,0.213328,0.006523823,-0.21256156,0.58633536,0.46290585,0.45819834,-0.5380481,0.5287282,0.031700004,-0.31445524,-0.02969049,-0.15759511,0.3464055,0.060287118,0.20478071,0.16466142,-0.14939268,0.21435429,0.3409526,0.22129504,0.65876323,0.3090411,-0.007519815,0.44584584,0.052241772,0.34226513,-0.005633225,-0.522986,-0.0008491675,0.12685578,-0.10321781,0.42593512,0.007005289,0.3608947,-0.16134834,-0.24239586,0.12746552,0.36423588,-0.367522,-1.0339206,0.17934541,-0.02576862,0.8029652,0.93457884,-0.088846505,0.04506499,0.68971604,-0.27335957,-0.052971806,0.3772788,0.3619561,-0.6472454,0.70477957,-0.64466053,0.32092705,-0.08359919,0.00041747093,-0.22023441,-0.0035705466,0.38026595,0.7662339,-0.33572626,-0.057000175,-0.3829045,-0.0703784,0.16194208,-0.3592259,0.5189352,-0.39004615,-0.4094515,0.7315828,0.26972398,0.40953216,-0.026718894,-0.104763575,-0.010792524,-0.22829445,0.4347589,-0.0047748634,-0.0076975427,0.20561196,-0.67819715,-0.26607993,0.42945084,-0.28159383,0.10543198,0.025690848,-0.18268526,-0.01727879,-0.16382399,-0.22549069,-0.01341629,-0.9055242,0.060041886,-0.35998404,-0.2003829,0.401973,-0.24965046,0.29746985,0.13689287,0.007785145,-0.37098244,-0.11696967,0.4507127,0.6344531,-0.042951774,-0.2544999,-0.4852829,0.2920697,0.19732577,-0.3324119,0.20872398,0.0015649647,0.06293199,-0.71664613,0.65129876,-0.26215807,-0.253674,-0.1268486,-0.10600742,-0.28651896,0.8183832,-0.27441227,-0.16547604,0.041240077,-0.23454052,-0.23282565,-0.18533067,-0.039029032,0.09204415,-0.007098069,-0.1987368,-0.15555006,0.05239128,0.011186059,0.6258337,0.1164462,0.22911374,0.39110544,-0.009369795,-0.50694966,-0.14689963,-0.058909774,0.4439467,0.17443077,-0.10447845,-0.52127326,-0.5913936,-0.35064164,0.1795767,-0.016006196,0.20210437,0.07066723,-0.2435873,0.8510001,0.2065686,1.3412309,0.10401791,-0.39804545,-8.930763e-05,0.70803213,-0.17832167,-0.16873227,-0.50365907,1.1297301,0.5701405,-0.18518169,-0.12677571,-0.24794616,-0.07791919,0.17485283,-0.24950643,0.023771381,-0.034646336,-0.7493718,-0.28960487,0.19708174,0.49349153,-0.048921734,-0.1295266,0.13744795,0.35816178,0.20995569,0.54466337,-0.2581304,-0.3325186,0.49559283,0.037676882,0.024353495,0.19806974,-0.1826319,0.31940868,-0.71988577,0.18003927,-0.5057496,0.086438745,0.12419043,-0.5160077,0.34428975,0.084813856,0.4738834,-0.4150394,-0.43965206,-0.20219272,0.606765,0.1770962,0.30317342,0.51590586,-0.2848709,0.05411033,-0.0882681,0.7291882,1.5078692,-0.13846181,0.08398994,0.11762782,-0.36138716,-0.761116,0.5673453,-0.31755853,0.07356299,-0.2669526,-0.4626557,-0.60745937,0.2749655,0.13460824,-0.23625262,0.18428516,-0.6825159,-0.47196338,0.1001387,-0.28336892,-0.21360414,-0.33066207,0.2634165,0.8105922,-0.32825693,-0.4228027,-0.026037624,0.18836217,-0.23817484,-0.5169126,-0.15930773,-0.42418993,0.37449726,0.056616705,-0.32411483,0.060425565,0.2327938,-0.4755601,0.0512993,0.014675613,-0.41790447,-0.0727798,-0.23772933,0.16294658,0.76821685,-0.079105414,-0.09158959,-0.47570232,-0.50604177,-0.9427845,-0.44739744,0.57947445,0.0181901,0.036535166,-0.55757517,0.14877276,-0.38494006,0.27456886,-0.11947634,-0.66467285,0.3267212,0.20667733,0.60457724,-0.10881519,-0.54100627,0.16737337,0.21433872,-0.051129717,-0.5620811,0.36668417,-0.11499705,0.84924334,-0.020329192,-0.0034056653,0.18106775,-0.7063839,0.06534322,-0.23898083,-0.31023604,-0.6123926,0.19635399,740 -881,0.28626725,-0.22461474,-0.5470066,-0.22422199,-0.26713648,-0.11605403,-0.17150748,0.36445013,0.3904377,-0.17925721,-0.24140716,-0.11393613,0.10741057,0.3323984,-0.14592123,-0.7336232,-0.21371414,0.17188102,-0.8794443,0.598437,-0.57147336,0.26833454,0.22461861,0.286931,0.18827713,0.25559554,0.2298371,0.02666459,0.07482877,-0.15367268,-0.20606148,0.1691798,-0.41223666,0.20238025,-0.15278201,-0.3868597,-0.07646803,-0.5152163,-0.0024214287,-0.75147533,0.18608016,-0.872839,0.6652637,0.10374537,-0.22416759,-0.21879353,0.4151217,0.37546873,-0.29296747,0.06035344,0.24445534,-0.10153171,-0.16272669,-0.28122258,-0.1400512,-0.51023746,-0.5445024,0.12187835,-0.61814004,-0.2078983,-0.08206839,0.30469352,-0.22285569,0.051473964,-0.13086225,0.5304157,-0.28547335,-0.08559408,0.37401548,-0.17730564,0.27414903,-0.53663737,-0.07549441,-0.11336822,0.4181057,-0.0892337,-0.45393696,0.19543554,0.45295414,0.34090915,0.265252,-0.3537167,-0.3191791,-0.17857993,-0.15319894,0.32168412,-0.23438257,-0.3981932,-0.2737003,0.14632754,0.47035536,0.45886925,0.16689377,-0.29174,0.029937776,-0.1284511,-0.27077496,0.7328556,0.43195322,-0.39714137,-0.33268675,0.39911148,0.48265037,0.19226728,-0.2446344,-0.10905742,-0.044852298,-0.61969846,-0.1590506,0.1512612,-0.08772791,0.4443283,-0.15218888,0.07384223,0.71665686,-0.016603261,-0.1914394,0.27244782,-0.07469475,-0.29693273,-0.2419985,-0.15586801,0.24355693,-0.6586724,-0.10535566,-0.41900942,0.67171055,-0.11025679,-0.73101145,0.3522776,-0.6724417,0.14350685,-0.06953564,0.5880361,0.9211661,0.58088595,0.4247382,0.69506735,-0.18433523,0.070879705,-0.29091802,-0.25849357,0.15296541,-0.23125906,0.07256619,-0.68205285,0.042693418,-0.10741177,0.081355095,0.1723463,0.5974019,-0.4872901,-0.26709065,0.3332156,0.5559782,-0.25029948,-0.2908531,0.690497,1.0727915,1.1705495,0.05060512,1.2975472,0.18197274,-0.2219853,0.010926132,-0.3886744,-0.5974138,0.35597125,0.33118537,-0.57819206,0.49659395,-0.20898731,0.17095149,0.23893411,-0.26272935,-0.0019261712,-0.0122710345,0.3414472,0.028914591,-0.06512045,-0.42260984,-0.2955518,0.11664587,0.050489377,0.29468426,0.2250117,-0.2978964,0.3388233,-0.048940416,1.2832001,-0.0770991,0.03697085,0.10852874,0.4665996,0.3266475,-0.21166384,-0.0702159,0.3299367,0.26971483,-0.020486703,-0.4793038,0.25043035,-0.2761419,-0.4240781,-0.11940997,-0.3857778,-0.12258646,0.064433,-0.29129267,-0.23363326,-0.2339238,-0.48156628,0.4066973,-2.756627,-0.41153672,-0.21645463,0.23594709,-0.21792042,-0.3016454,-0.20238467,-0.5209007,0.33777335,0.2606557,0.50506204,-0.6626356,0.6688366,0.49925494,-0.6442426,-0.26953307,-0.76432234,-0.0034909844,-0.11530619,0.358645,-0.031351645,-0.22853385,-0.11615246,0.20549762,0.6754508,-0.024974281,0.11460793,0.52483445,0.38528237,0.029553572,0.6466508,-0.016938098,0.6484738,-0.2712516,-0.249328,0.35107318,-0.27573174,0.15188591,-0.03364561,0.029939817,0.65483683,-0.72687453,-1.0114379,-0.5995262,-0.11088309,0.9804244,-0.28870097,-0.32754502,0.113652684,-0.2585659,-0.2523706,0.19296838,0.6285442,-0.08875897,0.008136828,-0.7400623,0.066253625,0.011073257,0.24851108,0.04628865,-0.14490864,-0.4700582,0.70145065,0.012508909,0.66905946,0.22529407,0.2203349,-0.5780869,-0.3303477,0.17496608,1.052095,0.27012706,-0.04863499,-0.20583211,-0.3028694,-0.34692177,-0.10707011,0.13642268,0.5948007,0.5836175,-0.010819959,0.09483892,0.4863234,-0.14089122,0.018126288,-0.13411987,-0.20955978,-0.11482283,0.123998456,0.56111854,0.73125845,-0.06684541,0.66166306,-0.16683777,0.40835568,-0.19871962,-0.57778686,0.8006633,0.6453964,-0.0925425,-0.18189412,0.76270574,0.5245538,-0.22899051,0.5649677,-0.5333834,-0.39118254,0.4482832,-0.18536873,-0.43228474,0.15601832,-0.3434122,0.15381889,-0.9193614,0.081317745,-0.259219,-0.35476983,-0.47876844,-0.061253484,-3.036619,0.25257963,-0.099681765,-0.07228686,-0.26670554,-0.032286514,0.2603815,-0.76134807,-0.752285,0.061591163,0.25348982,0.6792963,-0.076518536,0.18381466,-0.15619387,-0.4305973,-0.066083394,0.2776476,0.024460107,0.24723762,-0.18466274,-0.37531015,0.02037821,0.01448375,-0.5363889,0.13257845,-0.68991786,-0.3238138,-0.012886806,-0.7517731,-0.28228238,0.56491816,-0.40330732,-0.058061976,-0.24736619,0.12819347,0.11326292,0.23977022,-0.040876526,0.09467425,0.28540966,-0.10537579,0.19302602,-0.18983275,0.36998698,-0.14251523,0.34616372,0.095689304,-0.040370304,0.328143,0.4839982,0.7251763,-0.19242652,0.98945695,0.43661252,0.05562726,0.12105236,-0.18740213,-0.17794402,-0.55160123,-0.24527395,-0.101899885,-0.44812003,-0.3599306,0.027866116,-0.12756662,-0.9692762,0.795312,0.091722585,0.25921702,-0.037383646,0.38851652,0.3917822,-0.17802112,0.18140012,-0.17064448,-0.26379302,-0.43520355,-0.24727201,-0.63389575,-0.42020023,0.091010034,1.0525223,-0.34123778,0.2030632,0.01748767,-0.1506329,-0.013805757,0.1642975,0.14925025,0.38478884,0.44718096,-0.17499894,-0.5598045,0.2154517,-0.13351704,-0.12439539,-0.3079219,0.26945296,0.777592,-0.6340507,0.516072,0.28849658,0.11172384,-0.3089993,-0.5820255,-0.12997933,0.07919123,-0.18595223,0.6356794,0.3180461,-0.8041435,0.57633215,0.4160844,-0.38309416,-0.8075352,0.4005972,-0.050462227,-0.25221696,-0.27879158,0.3688686,0.24794771,0.0016830564,-0.35034236,0.22275357,-0.29832536,0.115276694,0.0313394,-0.0978312,0.36337408,-0.13108845,-0.3913901,-0.80636233,0.15164892,-0.5633223,-0.4327229,0.3486253,0.15780784,0.017146775,0.32420692,-0.11185363,0.3787144,-0.34459016,0.15982582,-0.06657814,-0.22334568,0.1582425,0.39038816,0.33397555,-0.35461625,0.5000083,0.022546893,-0.0808822,-0.18795983,-0.2143534,0.44609237,-0.07255675,0.41991225,-0.1658359,-0.20794769,0.5892396,0.5890398,0.064337924,0.20632716,0.16627328,0.037620377,0.22774605,-0.022145666,0.20154274,-0.051285014,-0.44544443,-0.084843695,-0.12971698,0.13746367,0.5241099,0.2658749,0.24518925,0.054444045,-0.17110352,0.00017491977,0.13747878,-0.06004979,-1.313765,0.35460797,0.3331443,0.81070846,0.5652326,0.05378181,-0.21401651,0.7941654,-0.4642035,0.08835722,0.42725834,-0.031971898,-0.33837327,0.7146303,-0.65067804,0.40588555,-0.24399197,-0.05645114,-0.045936927,0.02071797,0.3031225,0.9711523,-0.28110236,0.10054064,0.02115637,-0.14359307,-0.007383103,-0.32891047,-0.035620224,-0.516251,-0.44617012,0.9472745,0.1877377,0.5337096,-0.23207796,-0.032592118,0.12257173,-0.12400498,0.2186592,-0.115101196,-0.089282274,0.12364966,-0.5381149,0.03827845,0.6152165,0.32908627,0.20219499,-0.10971209,-0.1820047,0.09758822,-0.10099089,-0.100613594,-0.17853542,-0.4935901,-0.06792634,-0.26136526,-0.46773982,0.5287139,-0.40143856,0.015916621,0.21887927,0.067968905,-0.05238773,0.3921851,0.19805978,0.5541838,0.16265689,-0.029042011,-0.15273996,0.20952566,0.008396084,-0.22063331,0.017670443,-0.48528895,0.193693,-0.71046036,0.6466715,0.005924868,-0.69892025,0.18863104,-0.13875116,0.080702074,0.5288122,-0.18715835,-0.13879174,0.118055224,-0.35652605,-0.2212921,-0.20494698,-0.24273236,0.3632504,0.18554713,-0.038102806,-0.23759957,-0.16428958,-0.08293802,0.46603176,0.032934297,0.46106446,0.27809685,0.10107871,-0.058568407,0.29939964,0.2013523,0.5063952,0.20174193,-0.06088124,-0.523125,-0.11358833,-0.2576889,0.11955916,0.0073857545,0.09019514,0.02118853,-0.22228843,0.8608311,0.026675263,1.4052097,0.008853704,-0.50898045,0.112610675,0.5403356,-0.11467584,-0.08805127,-0.37825742,0.90297264,0.51395977,-0.08311248,0.007491941,-0.6804982,-0.18131667,0.27924594,-0.41924438,-0.18672486,0.023592815,-0.6356864,-0.4883474,0.31701538,0.11792465,0.082585834,-0.1097393,0.13139035,0.030924683,0.105770715,0.32377622,-0.59028107,-0.019969612,0.13563396,0.27784967,-0.02679086,0.08795226,-0.5583822,0.33455077,-0.7939144,0.28823745,-0.32837328,0.15697126,-0.32861584,-0.41609013,0.19885711,-0.06569619,0.31907773,-0.21350186,-0.40109006,-0.055028643,0.5611033,0.016317388,0.1932504,0.6214792,-0.30209735,0.010136639,0.1477295,0.5729317,1.3450961,-0.34409395,-0.110148616,0.2031132,-0.40521368,-0.72723436,0.33991277,-0.36180368,-0.06201734,0.1314063,-0.46030894,-0.32110232,0.28120425,-0.016006986,0.24887522,0.091205396,-0.5505912,-0.10499573,0.18889605,-0.28577188,-0.15793826,-0.088435434,0.3533243,0.6279168,-0.1206763,-0.35713503,0.005576094,0.47734943,-0.18036611,-0.63400865,-0.12431123,-0.22090714,0.4317441,0.123575665,-0.17459811,-0.02858416,0.022312349,-0.52979535,0.02172789,0.3099781,-0.37620568,0.1947732,-0.3543667,-0.13760258,0.9622159,-0.15922584,0.10739233,-0.4742367,-0.57494795,-0.7765375,-0.29766232,0.03275695,-0.049952578,-0.0879941,-0.48970258,0.033732604,-0.14014693,-0.30059096,0.23921819,-0.50253487,0.47740662,0.08704301,0.48901424,-0.31237385,-0.9574817,0.15697728,0.15185426,-0.032248348,-0.7371171,0.6260594,-0.029718032,0.99303716,0.049343973,-0.07604881,0.13412437,-0.6392962,0.13644935,-0.29971367,-0.08074298,-0.7528227,-0.05530856,756 -882,0.5501302,-0.29499832,-0.7997012,-0.059677105,-0.3441426,-0.08621061,-0.23474129,0.76438886,0.36146072,-0.55728656,-0.27155027,-0.05562955,-0.193349,0.49650452,-0.30901578,-0.36763892,-0.026831975,0.23733337,-0.60443956,0.5240407,-0.2830086,0.23704989,0.108830534,0.6543435,0.4554721,0.047202136,0.016866246,0.22875535,-0.14519626,-0.44345236,0.040270906,0.28527248,-0.76660275,0.28470194,-0.39467096,-0.702044,-0.14337264,-0.7215176,-0.29291028,-1.0028026,0.3218408,-1.00397,0.7814545,-0.07026499,-0.48209378,0.023490084,0.18376203,0.3293096,0.012532148,-0.120108806,0.16778977,-0.10391333,-0.15220888,-0.14432655,-0.33282706,-0.19175208,-0.60244215,0.074847676,-0.33545038,0.17077316,-0.1761452,0.25431776,-0.14044806,0.27900222,-0.07578056,0.48809013,-0.36074793,0.05211374,0.087637894,-0.13394862,0.35053065,-0.67313856,-0.29330215,-0.30511823,0.2859947,-0.34741998,-0.5442261,0.4513453,0.1697069,0.5377274,-0.074371405,-0.21181774,-0.33824828,0.17247152,-0.14692664,0.36030185,-0.5385136,-0.43018675,-0.1677471,-0.01657268,0.7930533,0.21427192,0.1458927,-0.33437046,0.027183488,-0.18666661,-0.24805407,0.5268937,0.43584898,-0.24164647,0.00045109168,0.118403636,0.46727744,0.41015795,-0.14999889,0.11898834,0.024090732,-0.69065,-0.17448853,-0.06806572,-0.10199205,0.47956872,-0.035829287,0.22207116,0.5215857,-0.2674044,-0.22809722,0.36076674,0.18859641,-0.1518478,-0.24502082,-0.605619,0.5044497,-0.5570338,0.19367708,-0.20310418,0.65767485,0.17553307,-0.8836977,0.16823761,-0.61758405,-0.03250854,-0.0039984137,0.38076723,0.82967305,0.78426033,0.25632954,0.71347004,-0.28634295,0.058513153,-0.16238277,-0.06685401,0.11183307,-0.3625894,-0.29963717,-0.3996934,-0.1239659,-0.2931452,-0.27420542,0.30925536,0.54442215,-0.55554754,-0.19499142,0.10620418,0.5623714,-0.21954036,-0.018079937,0.98936033,0.93984884,1.0404358,0.1354965,1.2343636,0.042290032,-0.15807004,0.10750049,0.33805636,-1.0199047,0.46801034,0.454398,-0.79332256,0.41488075,0.009837349,0.07796341,0.2652907,-0.65821373,-0.16771561,-0.10507857,0.037196305,-0.04569983,-0.09948397,-0.44891474,-0.42848125,0.079283014,0.19795358,-0.09709387,0.3776478,-0.2979356,0.6623276,0.11023531,1.425663,-0.08868394,-0.07491142,0.0750185,0.5307967,0.15487625,-0.19767638,-0.31771705,-0.01146848,0.28247342,0.2264343,-0.48413542,-0.059508875,-0.16095008,-0.3381894,-0.18758738,-0.22968848,-0.2585764,-0.28357628,-0.3914174,-0.49873948,-0.06663352,-0.3543161,0.24364243,-2.19289,-0.20663603,-0.06847447,0.2982538,-0.24248946,-0.4910793,-0.37835148,-0.5066617,0.6158144,0.26399973,0.55910623,-0.5331251,0.28928486,0.4460517,-0.7139657,-0.09762754,-0.64990854,-0.031704288,0.09774315,0.18951863,0.003728124,-0.20979977,0.0010097921,0.07859378,0.5377485,0.015725533,0.0072744675,0.43847993,0.40700102,-0.058556315,0.471048,-0.23404486,0.5417124,-0.75463194,-0.38769293,0.47291613,-0.39667702,0.028440028,-0.13778898,0.13886596,0.6655836,-0.8188768,-1.0703505,-0.7428951,0.055443767,1.3278145,-0.10307864,-0.5439237,0.26292804,-0.59991604,-0.2204758,0.07606877,0.5340732,-0.27610898,0.078830354,-0.8359776,-0.2621806,-0.014264159,0.2220825,-0.04687147,-0.073681325,-0.42995152,0.48318422,-0.038374294,0.46932364,0.40189353,0.00047809383,-0.4686954,-0.65051717,0.21252258,1.0741137,0.50137895,0.290375,-0.30409357,0.069569536,-0.4831659,0.026136832,0.04229098,0.5506889,0.75451237,-0.12170557,0.054617748,0.23207204,0.11294036,0.02732479,-0.1865433,-0.32225862,-0.3537087,0.17885494,0.82436544,0.7252714,0.15402777,0.41404667,-0.080177106,0.5159748,-0.051180985,-0.48064947,0.5566165,1.0420967,-0.2171281,-0.44913885,0.88444257,0.43827263,-0.3112111,0.6489646,-0.50147194,-0.5756731,0.31403553,0.018921463,-0.553538,0.20156641,-0.40266943,0.24810743,-0.7269397,0.2673119,-0.40530238,-0.50447357,-0.63865125,-0.058372963,-2.2149317,0.27496895,-0.18959297,-0.12355975,-0.19565707,-0.44069925,0.3834313,-0.42703643,-0.91699165,0.052734118,0.023209816,0.9571964,-0.12999979,-0.03218317,0.0048758336,-0.44066295,-0.37691298,0.03259878,0.49347094,0.39691043,-0.009317249,-0.51942635,-0.23677981,-0.21622209,-0.4493638,-0.19584936,-0.7831809,-0.5500354,-0.10643947,-0.70911145,-0.2218471,0.6961019,-0.41962805,-0.00066748384,-0.121365346,0.082564995,0.05250467,0.28278244,-0.1898594,0.17541791,0.15793955,-0.18862696,0.22352688,-0.0560627,0.21765478,0.12271273,0.22895563,0.13641413,-0.28153107,0.5155503,0.7052476,1.1105012,-0.32448444,1.2354244,0.58713627,-0.031479508,0.14746954,-0.24690701,-0.6353645,-0.5939238,0.105001956,0.12913884,-0.5019325,-0.05249126,0.25616026,-0.3781731,-1.0146612,0.98494226,-0.05623087,-0.047128458,0.10031799,0.21457963,0.4095678,-0.35095406,-0.08765599,-0.13413464,-0.06308449,-0.46221042,-0.37079707,-0.57467633,-0.5487415,-0.3944908,1.4543427,-0.071038686,0.26298723,0.4046283,-0.07583956,0.27031744,0.1563914,-0.12299657,0.13460985,0.64877135,0.0030022338,-0.7382223,0.19878198,-0.20279115,-0.09488953,-0.54260063,0.34161142,0.6844644,-0.7381808,0.35292864,0.39303717,-0.03865764,-0.34671748,-0.5197199,-0.026640834,-0.10469089,-0.16457398,0.5292551,0.40365848,-0.7330305,0.50956225,0.46656606,-0.26896468,-0.9163387,0.4223604,-0.007909159,-0.16072784,-0.0984625,0.51638514,0.073502555,-0.08429965,-0.16076614,0.23490544,-0.22248407,0.29402456,-0.047412544,-0.12598813,0.19109048,-0.3724636,-0.0567798,-0.9034144,0.27182028,-0.5322852,-0.38469735,0.35427317,-0.06774848,-0.016148796,0.24668671,0.17592971,0.330558,-0.31047782,0.037920844,-0.32915968,-0.46397948,0.5183525,0.53389233,0.679246,-0.42914763,0.6305919,0.061750934,-0.1127507,-0.026523957,-0.090503804,0.45347032,-0.2025553,0.32201096,0.01211441,-0.30961785,0.16017492,0.7575248,0.22453974,0.32845,-0.053771228,0.038631424,0.068710424,0.23171826,0.37773368,-0.040608395,-0.7514115,0.07326419,-0.34038082,-0.083862185,0.67048067,0.14855777,0.19934554,-0.17519695,-0.3763349,-0.07281908,-0.06432644,-0.03410892,-1.7433435,0.48407117,0.006243333,0.8072777,0.45965865,0.17155845,-0.061151113,0.8323403,-0.12362108,-0.025299996,0.4583355,0.07758749,-0.30205438,0.48201323,-0.626913,0.7070916,0.06506781,0.12621738,0.09585565,0.016728014,0.6243648,0.937376,-0.09539792,0.20294033,0.15951385,-0.35591945,0.09067183,-0.4560574,-0.09265137,-0.45412692,-0.29478624,0.9733178,0.42908776,0.4371269,-0.25253972,0.065261565,0.16098273,-0.23526911,0.18946779,-0.030186912,-0.02047042,-0.34855554,-0.544904,0.20815443,0.62272435,0.3470631,0.14014721,0.044618946,-0.1298242,0.3474461,0.014298022,0.017561093,-0.2860414,-0.83758765,-0.15520756,-0.7747695,-0.3152081,0.241229,-0.10872086,0.07439137,0.26734856,0.12945977,-0.31167036,0.6505943,0.17550169,0.7525108,-0.047542322,-0.22700869,-0.011938115,0.4049666,0.13392,-0.35285416,-0.1658533,-0.25987688,0.03396882,-0.42613852,0.31844124,-0.093079954,-0.420518,0.23281759,0.108994566,0.07172995,0.35023093,-0.17863327,-0.0015782863,0.075730756,0.09921395,-0.31273764,-0.53578013,-0.30335346,0.08565495,0.184936,-0.016817212,-0.19672269,-0.19234316,-0.09646685,0.59759414,-0.12209157,0.4827172,0.4846377,0.2246776,-0.43707874,0.042888712,0.11528752,0.81191325,-0.12825252,-0.2434137,-0.52821064,-0.22170217,-0.3445219,0.39215228,-0.06328387,0.30932793,0.15491062,-0.33357084,0.7244746,-0.0064231507,1.0817081,-0.13743386,-0.43744788,0.007959385,0.4012312,-0.13957553,-0.2209161,-0.3498484,0.95508987,0.40866053,-0.29847673,-0.16149853,-0.5188003,0.11251547,6.273389e-05,-0.3068424,-0.19593722,-0.20221746,-0.5595776,-0.21119677,0.26924,0.3915247,0.3299216,-0.24964742,0.31476125,0.41916394,0.005621677,0.09022536,-0.31506225,-0.16528983,0.4345202,0.34584093,-0.208824,-0.008790622,-0.5461722,0.27298692,-0.54221606,-0.054442823,-0.3552666,0.14899999,-0.2557125,-0.35282823,0.23959333,-0.023542449,0.2924941,-0.34842148,-0.18410747,-0.22242396,0.56072074,0.02131041,0.17744763,0.5526813,-0.24001892,0.0011756172,-0.11826936,0.48063818,0.8205004,-0.16002552,0.080815725,0.24335258,-0.14880936,-0.339612,0.3052958,-0.3976287,0.30737984,0.14086038,-0.13523532,-0.423422,0.22300048,0.19014077,0.05451094,-0.07816166,-0.93251467,-0.0075847507,0.37908304,-0.12866054,-0.11712649,-0.51841503,-0.014357935,0.29414544,-0.054249804,-0.53564364,0.23343949,0.34232214,-0.046937782,-0.44723102,-0.08546666,-0.31770194,0.16364808,0.21480648,-0.5655479,-0.12104043,-0.05743842,-0.6434229,0.042667832,0.120687984,-0.40468845,0.019746976,-0.3587862,0.11704421,0.98842573,-0.19905104,0.40443566,-0.1307165,-0.6245394,-1.0176816,-0.05978049,0.30053118,0.3902811,-0.01917255,-0.88141614,-0.056628466,-0.3169249,-0.578819,0.074375205,-0.14151973,0.5289805,0.19490309,0.81411797,-0.2778664,-0.7270453,0.5257749,-0.015662244,-0.095504306,-0.32587793,0.4188868,0.23180483,0.85839844,0.02266545,0.04572451,0.38057676,-0.6645851,-0.094209455,-0.07276412,-0.11756014,-0.54394865,0.023466945,764 -883,0.19143824,0.0029545177,-0.5143583,-0.06805229,-0.080997206,0.0086718155,-0.15491705,0.25907633,0.020569637,-0.7418112,0.0058336356,-0.21903183,0.1040032,0.31768847,-0.14141634,-0.58709025,0.16714485,0.30548254,-0.3977389,0.2609787,-0.5293005,0.3150814,0.113782585,0.029461175,-0.2979574,0.16643526,0.32347748,-0.28329012,-0.04693122,-0.20309125,0.036840502,0.2124294,-0.67932075,0.37037602,0.17786543,-0.30705956,0.05141763,-0.21429758,-0.24921815,-0.6509704,0.2697966,-0.7830995,0.44238248,0.103567146,-0.1514284,0.08935714,0.1308154,0.3839352,-0.22924255,0.18221502,0.2700034,-0.35189512,-0.23020448,-0.28992748,-0.2107876,-0.31886947,-0.37848237,-0.05889967,-0.5756491,-0.292684,-0.35765028,0.18007441,-0.41394544,-0.014680435,-0.28764173,0.40159285,-0.3918383,0.04106976,0.17181103,-0.22551633,0.3721036,-0.36946595,0.011288461,0.014785434,0.21377401,-0.45109043,-0.17878012,0.234251,0.23679297,0.55837387,0.027077079,-0.08675174,-0.17047392,-0.25507963,0.40094578,0.6795134,-0.1945933,-0.43155566,-0.17586882,-0.055649925,-0.11646289,0.21767528,-0.13764691,-0.5524603,-0.042115528,0.11422759,-0.28574666,0.29699066,0.5282393,-0.22814357,-0.07353946,0.36208192,0.43887916,-0.21965729,-0.05893768,0.22891219,0.093420334,-0.56338054,-0.29778662,0.21461874,0.075677864,0.32551035,-0.13265051,0.3217842,0.6890053,-0.33582163,-0.046845973,-0.04643831,0.024927119,0.039195523,-0.3496431,-0.10015416,0.35389265,-0.63377696,0.014304896,-0.25262973,1.0857753,-0.062272448,-0.8243818,0.4124863,-0.48031798,0.042066116,-0.21614565,0.7566708,0.37229395,0.42967644,0.07177076,0.71797395,-0.65032464,0.12779218,-0.2274216,-0.6697591,-0.0054218546,0.02977853,-0.120280206,-0.28784153,-0.019656038,0.22624974,0.15823103,-0.091795,0.36473283,-0.45869836,-0.12837733,0.004128317,0.80914587,-0.43706107,-0.024625102,0.42091796,0.99561286,0.6932876,0.18458839,1.4066544,0.078203835,-0.21619384,-0.044172063,-0.11997294,-0.77924496,0.22947466,0.26657128,0.11744233,-0.0074152946,0.27621344,-0.16926236,0.30574408,-0.3213742,-0.061501905,-0.26723838,0.30778775,-0.15927398,-0.15036477,-0.32787,-0.058517616,0.12941886,-0.023540422,0.055977214,0.17783348,-0.21306555,0.23609824,0.10036739,1.5200691,-0.22905819,0.3575444,0.16279717,0.30311203,0.1535291,-0.008802131,-0.05817799,0.357407,0.36510363,0.14673601,-0.59300476,-0.024708895,-0.07088473,-0.6103044,-0.12600724,-0.3262881,0.06694936,-0.19904493,-0.38926768,0.013087829,0.025023868,-0.4911755,0.43845698,-2.6704338,-0.07629693,-0.019862244,0.39859393,-0.24601345,-0.17724384,-0.26043728,-0.31468105,0.45793197,0.3758371,0.5958782,-0.6242196,0.44910014,0.4343339,-0.20032065,-0.102276206,-0.6572806,0.13434143,-0.20717794,0.28441775,0.034492772,-0.15598498,-0.134636,-0.04214816,0.4274707,-0.39285776,0.06614327,0.30407324,0.28238508,0.30816546,0.41697276,0.017820854,0.44257668,-0.49078622,-0.20807384,0.22193259,-0.31232843,-0.020485321,0.07674664,0.12200009,0.093480416,-0.4202588,-0.90681314,-0.62831837,-0.44812799,1.0004317,-0.44966188,-0.40487745,0.42778516,0.115935385,-0.36285767,-0.08143964,0.3797338,-0.09360846,0.14357202,-0.88324815,0.2032912,-0.15858714,0.5072132,0.08269237,-0.075823426,-0.45410714,0.49947104,-0.24369824,0.47578764,0.5515119,0.02085792,-0.450078,-0.4575816,0.0061329044,1.2176296,0.006334821,0.29088488,-0.1456964,-0.1326512,-0.1271748,-0.055688057,0.12450298,0.5733015,0.8469288,0.096188165,0.05631649,0.416942,0.0364528,-0.10085019,-0.14280836,-0.42906198,-0.10975174,-0.13077898,0.61514705,0.3408421,-0.11436934,0.4070013,-0.07847228,0.22941963,-0.25104418,-0.38856295,0.39071092,0.8147252,-0.073831,-0.20075552,0.6061862,0.5618402,-0.35365084,0.39432845,-0.52923,-0.429044,0.46439597,-0.21426864,-0.43462637,0.28389212,-0.3977014,0.22698481,-0.9014346,0.46260083,-0.3596512,-0.75764155,-0.38391313,-0.19857223,-4.3413033,0.27167818,-0.28808877,-0.2163002,-0.061933775,0.07914213,0.1965944,-0.31713295,-0.32462582,0.058968198,0.13958687,0.52576,-0.060491737,0.1128849,-0.3898282,0.09063134,-0.035591442,0.21388905,0.15096192,0.034264684,0.021411398,-0.43515038,-0.17472823,-0.13496034,-0.33400583,0.12313304,-0.6055329,-0.3718674,-0.13264047,-0.6362019,-0.62825984,0.65140975,-0.5580724,-0.06703458,-0.24928375,0.079357065,-0.08889092,0.52244717,0.12564924,0.123129666,-0.15935744,-0.05772753,-0.27284274,-0.26056775,0.33193088,-0.038760874,0.2930901,0.43231884,-0.29432604,-0.13327712,0.49543676,0.43008718,0.2039731,0.7989359,0.29423153,-0.15262496,0.24839342,-0.33394256,-0.12839155,-0.6863673,-0.41030502,-0.14057551,-0.5025528,-0.31388822,-0.009621009,-0.27973086,-0.74705344,0.7229158,0.0055327513,-0.03838274,0.008590606,0.45315397,0.19571666,-0.02753477,-0.26378933,-0.15330069,-0.12387558,-0.4555724,-0.36190784,-0.7757695,-0.455184,0.020035654,0.9348199,-0.18311255,0.16651848,-0.0076007843,0.071739174,-0.056754667,0.26635233,0.15208636,0.42433223,0.4633337,-0.10809764,-0.568796,0.51941395,-0.29813752,-0.18615071,-0.6066691,0.05497474,0.65928626,-0.81677514,0.58424217,0.4253026,0.17807426,0.0017379125,-0.42552006,-0.29684404,0.05204296,-0.24382158,0.42405748,0.0836012,-0.8399091,0.49965528,0.50060546,-0.1057286,-0.6658017,0.41590512,-0.080998234,-0.21818143,0.10734876,0.4663082,-0.2503201,-0.03877911,-0.15647227,0.057319973,-0.45418414,0.28458834,0.1763721,-0.12899356,0.680219,-0.23952298,-0.2249114,-0.4773887,-0.11713666,-0.52713376,-0.073294856,0.09083938,-0.07608755,-0.061436307,0.38195372,-0.25786754,0.5467706,-0.24994235,0.02671752,0.007930954,-0.22791643,0.36683226,0.52557147,0.14542009,-0.44881842,0.6869824,-0.047672063,-0.036828395,-0.5977459,0.27632543,0.5825517,0.11859099,0.552198,-0.085423164,-0.13251828,0.44064614,0.8974659,0.3566668,0.6832795,0.09543613,0.047585864,0.2554278,0.28251973,0.15843146,0.22510625,-0.36049667,-0.009756575,-0.08797634,0.1889301,0.43669197,0.14626698,0.6517418,-0.1833124,-0.3330975,0.023553243,0.4414438,-0.11762414,-0.95502424,0.53606457,0.21584642,0.44631502,0.47271132,0.09154748,0.16889149,0.43765202,-0.16667344,0.29977897,-0.08931557,-0.17175715,-0.41190553,0.6442606,-0.7867945,0.2591862,-0.15298693,0.05332819,0.20938899,-0.1541375,0.32033053,0.7574547,0.11846942,0.11957175,-0.04934889,-0.19967718,0.21500237,-0.40472603,0.1963197,-0.31860444,-0.2979665,0.6058542,0.4624056,0.28302446,-0.23936372,-0.08194072,0.07624806,-0.05526333,0.07769571,0.032043505,0.1483682,0.12272983,-0.7055146,-0.33361295,0.6875017,0.20130949,0.030007198,0.16272113,-0.14528634,0.5239514,-0.11344224,-0.14925404,-0.00919101,-0.43253174,0.2988649,-0.23723674,-0.33840194,0.15025316,-0.32772896,0.41344497,0.12683332,-0.010333012,-0.5070012,0.38119063,0.39464244,0.6609995,0.11727503,-0.25206268,-0.31039163,0.06710323,0.2151862,-0.18030298,-0.12962146,-0.34048736,-0.08345375,-0.81607324,0.32250333,-0.016297817,-0.22628884,0.47122276,-0.059299156,-0.11018399,0.5218548,0.08666637,-0.09030261,0.2240632,-0.09607952,-0.18381767,-0.14740431,-0.18140991,0.16610955,0.11464167,0.10436594,0.005990992,0.08923956,-0.13254307,0.2308361,-0.030166546,0.17366214,0.1398496,0.37928542,-0.29087546,-0.0012432175,0.05573107,0.5629918,-0.083108224,0.047354598,-0.03271738,-0.4092275,-0.15363501,-0.16424003,-0.13368641,0.34705472,0.151464,-0.4396373,0.93059444,0.0641926,0.95754147,0.07673879,-0.27326158,-0.07024009,0.49882755,0.1105293,0.053139057,-0.3513722,1.0505409,0.6661196,-0.20637535,-0.28436896,-0.27270612,-0.17686518,-0.045914922,-0.2186396,-0.34298792,0.09273527,-0.516851,-0.2774721,0.3026936,0.46111655,0.062078595,0.008698548,0.07743395,0.27523708,0.034882776,0.034941483,-0.58895576,0.1876362,0.13474174,0.38678396,0.19330412,0.07299795,-0.36289778,0.44602096,-0.67624944,0.13277774,-0.23016052,0.00022388746,-0.03967753,-0.14813061,0.21358334,-0.037313763,0.30851173,-0.232081,-0.02619583,-0.11894729,0.3519853,0.2648435,0.23823838,1.0251057,-0.056644518,0.22346406,0.1505828,0.46919253,1.0412378,-0.33982718,-0.22405659,0.4916174,-0.33372033,-0.63241154,0.1705085,-0.2861052,0.024550894,-0.07515108,-0.51175445,-0.25229096,0.16320378,0.06316953,-0.1399271,0.18913032,-0.57463247,-0.006347418,0.27769798,-0.3206797,-0.373559,-0.30899158,0.37169656,0.64318943,-0.17542411,-0.23137371,0.07812903,0.29448035,-0.33533633,-0.6130858,-0.095003776,-0.3280778,0.26396587,0.10764023,-0.23111422,0.066763006,0.14203778,-0.32197967,0.12113094,0.2920202,-0.29970846,0.16631475,-0.1600581,-0.17779209,0.6322186,-0.17070915,-0.09527681,-0.714557,-0.42863747,-0.96279246,-0.21940385,0.69326764,0.10712912,0.09800493,-0.33923936,-0.20828016,0.061163913,-0.19105603,-0.12129412,-0.35692653,0.45369616,-0.015550184,0.44048992,-0.038515054,-0.8712497,0.1291679,0.26725063,-0.28658178,-0.55673033,0.46492323,-0.07809676,0.67738706,-0.008882775,0.1236221,0.49252808,-0.6240459,0.038361847,-0.288656,-0.24095248,-0.773875,-0.13620336,776 -884,0.46654415,-0.3897917,-0.5540022,-0.11958653,-0.10412725,-0.05734822,-0.3221345,0.27127096,0.18209922,-0.65916973,-0.27687928,-0.20611751,0.1287729,0.33311933,-0.2094592,-0.563933,0.122911416,0.16611,-0.3775154,0.54020166,-0.55368924,0.08952978,0.12079849,0.37177682,-0.06049937,0.12567171,0.30048507,0.051441163,-0.034221902,-0.3110649,-0.12677461,0.043451507,-0.86257833,0.19509673,-0.14080948,-0.570847,-0.07115794,-0.43650305,-0.3237689,-0.6879358,0.28649333,-1.1387855,0.41242492,0.086547375,-0.30229768,0.2018547,0.13954397,0.35422763,-0.19538136,0.060920894,0.07705895,-0.32949075,-0.041354354,-0.35319754,-0.014758766,-0.35213915,-0.5007421,0.039520506,-0.4385967,-0.1788642,-0.19967651,0.06868634,-0.2653309,0.23336722,-0.2037311,0.31259403,-0.4558114,-0.16580124,0.4507098,-0.17137198,0.4734583,-0.3664453,-0.12902209,-0.10797871,0.13503255,-0.21430774,-0.265478,0.14446513,0.1615358,0.52276605,-0.042783093,-0.1699996,-0.1050873,-0.05432613,0.2792434,0.43779135,-0.23222047,-0.4617912,-0.41055655,-0.15989752,0.12183344,0.16983151,0.10952676,-0.31136012,0.015033628,-0.10338076,-0.39100328,0.4161675,0.6124615,-0.37933314,-0.07137648,0.25334316,0.55886453,0.06931973,-0.23018913,0.062174525,0.15778026,-0.6222722,-0.26624882,0.16350175,-0.19261521,0.7135386,-0.251189,0.27902028,0.5688763,-0.21118538,0.033934508,0.14318709,-0.011808514,-0.20006554,-0.19854195,-0.29768655,0.48487115,-0.5496768,0.18530814,-0.3022946,0.8036377,0.2583537,-0.6125195,0.38701543,-0.5281574,0.20103581,-0.21637274,0.64859974,0.60986143,0.35481846,0.29153445,0.8033908,-0.59095633,0.11790743,-0.24435918,-0.23267679,0.08406714,-0.20687628,0.10485951,-0.33307245,0.011265566,0.002859195,-0.03799814,0.04787535,0.343999,-0.5350009,-0.10124791,0.18136357,0.67689687,-0.23314433,0.032629896,0.78463084,1.1753228,1.1231177,0.18905301,1.0980448,0.31776318,-0.1599257,-0.12247112,0.24180312,-0.69090587,0.24912907,0.39340675,0.45610538,0.1817834,0.253278,0.02173706,0.49376848,-0.511446,0.07140238,-0.18068661,0.3155059,-0.13342969,-0.028416684,-0.32250705,-0.1727676,-0.028870722,0.08285363,-0.09453299,0.3065066,0.058688883,0.617512,0.18892424,1.208528,-0.17183834,0.086090125,0.03956464,0.3648477,0.20069902,-0.17492366,0.041885603,0.05267115,0.48165667,0.0840937,-0.5526518,-0.033944104,-0.048748504,-0.4359374,-0.15875313,-0.24173777,0.016508058,-0.16571648,-0.5463235,-0.10063741,-0.027809232,-0.07918104,0.47996604,-2.73021,-0.10375633,-0.23749131,0.23831117,-0.27083084,-0.24344611,-0.13030107,-0.5240313,0.50933677,0.40031013,0.48937592,-0.7095895,0.47932792,0.4074587,-0.42459098,0.004985945,-0.8296421,-0.12406606,-0.2456706,0.31690723,0.1629365,-0.08916112,0.035708454,0.1401978,0.5275509,-0.02873838,0.30208337,0.12753855,0.30512926,0.013119389,0.51073664,0.13825563,0.48701477,-0.5236246,-0.16934283,0.4479724,-0.3715203,0.19416232,-0.24768656,0.16813238,0.41766596,-0.40767384,-0.9105882,-0.8206873,-0.34136668,1.1501561,-0.33285248,-0.62654734,0.18434303,-0.15412365,-0.28114685,0.01829953,0.34525323,-0.050648104,0.047898944,-0.86086226,0.023936652,-0.10772106,0.3077658,0.06359703,-0.22179882,-0.47557807,0.79785424,-0.19693823,0.34579912,0.5911606,0.1640573,-0.1675428,-0.29387715,-0.012059969,0.96331054,0.3710628,0.2015775,-0.30103174,-0.12550735,-0.23827223,0.034535225,0.116157055,0.6399741,0.8086501,-0.15020911,0.15483792,0.2988453,0.031450994,-0.07989337,-0.12119485,-0.43245658,-0.023335448,-0.0015698522,0.7802898,0.8596375,0.05770284,0.31414056,-0.14763391,0.29796574,-0.22210163,-0.6191141,0.44910178,0.638542,-0.057907913,-0.28345793,0.6845471,0.59927696,-0.2123713,0.5010279,-0.68641925,-0.5798463,0.318863,0.06926325,-0.41642264,0.236956,-0.4177643,0.33980313,-0.8157575,0.36157367,-0.49540067,-0.50752276,-0.5146435,-0.17919354,-3.8421762,0.39934182,-0.23372842,-0.15566127,-0.0658225,-0.2385674,0.38593683,-0.6184223,-0.45558825,0.34895155,-0.04107591,0.6326301,-0.033351768,0.08522451,-0.33778057,-0.07980517,-0.17112629,0.100987464,0.22363722,0.05859537,0.008474181,-0.4322369,0.04060178,-0.15930745,-0.23369056,-0.027942007,-0.656699,-0.49673605,-0.14030962,-0.4838822,-0.5380695,0.5151393,-0.32003602,-0.053756554,-0.2395368,0.016413152,-0.31968215,0.36141348,0.057499517,0.2540839,-0.19267286,0.0042999783,-0.13320921,-0.2673207,0.1068331,0.112667106,0.020299604,0.2905132,-0.27843517,-0.007713089,0.45909333,0.598443,0.035008248,0.8747291,0.5392906,-0.048475802,0.2955431,-0.018946597,-0.21664132,-0.5995284,-0.34219518,-0.2288912,-0.45347306,-0.5317596,-0.0041389987,-0.24119599,-0.687689,0.7550567,0.23757036,0.07548595,0.009575578,0.29949823,0.41674995,-0.23299085,-0.12448899,-0.035326164,-0.13192748,-0.6371438,-0.32555962,-0.7805175,-0.29028234,-0.0100781815,0.89624923,-0.21857099,0.10087329,0.1695898,-0.17962931,0.06999134,0.37904644,-0.08541716,0.06092554,0.6062929,-0.02259325,-0.7513563,0.47229037,-0.11134511,-0.30229077,-0.7438057,0.1588345,0.7609338,-0.7921342,0.68701744,0.6231293,0.065522805,-0.053135216,-0.57750607,-0.326665,-0.11424901,-0.4088105,0.40134814,0.26554647,-0.8669648,0.42267525,0.35708353,-0.30333626,-0.71580285,0.6294416,-0.054787476,-0.27441764,-0.033847917,0.23802245,-0.081760146,0.13141073,-0.122390814,0.066632874,-0.52834225,0.15473892,0.27054703,-0.041637905,0.10987239,-0.1441947,-0.052636266,-0.641122,-0.0828202,-0.60805017,-0.08907768,0.12698738,-0.1240441,-0.08371212,0.22084779,0.056166593,0.3857111,-0.28792262,0.16348644,-0.124975346,-0.3713118,0.42259455,0.5407247,0.357541,-0.42906496,0.7887593,0.08562238,-0.03339589,-0.28852132,0.02816579,0.52388424,0.06292734,0.42258272,-0.10630676,-0.10654276,0.11494348,0.87439984,0.16036464,0.6597062,0.040467534,0.22954708,0.3039215,0.27534345,0.23888607,0.10068462,-0.4629484,0.0014285768,-0.18867107,0.11032484,0.351029,0.14377208,0.5729723,0.011757473,-0.23761773,-0.0075822356,0.1675986,-0.05573422,-1.3202952,0.41960612,0.0687075,0.5985579,0.62053305,0.020302305,0.0047971536,0.5545574,-0.35450873,0.089096904,0.08640006,-0.0032644917,-0.36255932,0.4780011,-0.7689903,0.29138976,-0.17017566,0.03203006,-0.043990787,0.05324006,0.467852,0.7896159,-0.22483869,0.16532362,-0.08320389,-0.26224357,0.10987842,-0.47700652,-0.1503926,-0.5707664,-0.35628486,0.80725807,0.5983148,0.5719722,-0.1359703,-0.10619348,-0.01771341,0.0017832468,0.036929592,-0.024820372,0.08063519,0.023144953,-0.7448876,-0.22297359,0.6627141,-0.094287165,0.23227108,0.034413982,-0.31766835,0.40486047,-0.17603059,-0.1768192,-0.09398142,-0.72890323,0.0676812,-0.4745455,-0.30546367,0.5197951,-0.4125389,0.2914684,0.21343641,0.05722277,-0.12740426,0.19939487,-0.006108556,0.6720197,-0.035250206,-0.27256048,-0.39545774,0.20251215,0.33733058,-0.20909844,-0.04088208,-0.32589617,0.05704856,-0.64716226,0.3877089,-0.1661158,-0.18554282,0.3090242,-0.096941374,0.06444779,0.6811126,-0.114088304,-0.19384956,0.28251186,-0.21170896,-0.3337692,-0.31116915,-0.2127086,0.31957823,0.052654058,0.13256471,0.1251105,-0.0028093357,-0.08908057,0.33289194,0.12563562,0.34344852,0.42846978,0.09986061,-0.39709893,0.015366892,0.11921369,0.5418162,-0.12863529,-0.24020308,-0.23603112,-0.74265355,-0.31259227,0.10964503,-0.009481987,0.3836412,-0.07873813,-0.020492157,0.9754656,0.023239413,0.92367953,0.00043750057,-0.49174497,0.015453092,0.44967508,-0.07336373,-0.0633248,-0.3498471,0.8072221,0.3694115,-0.15013342,-0.044520218,-0.4457806,-0.021176739,0.07446516,-0.1178976,-0.19564192,0.0143891275,-0.67106587,-0.16670747,0.21468802,0.4545661,0.2794928,-0.07662523,0.3323653,0.2892693,0.0767636,0.27523196,-0.6200038,-0.20073126,0.35088396,0.33236423,-0.01277813,-0.0011443123,-0.21320315,0.33596,-0.43783927,-0.054694194,-0.46064317,-0.047443405,-0.10139706,-0.36202168,0.14179604,-0.12829867,0.34998927,-0.4886968,-0.109294415,-0.18422532,0.5281758,0.31112453,0.19924806,0.6258289,-0.17608659,0.07690821,-0.020922115,0.5703704,0.9850154,-0.48697436,0.0066505834,0.49167442,-0.24061692,-0.6549406,0.32585728,-0.1702435,0.16608584,-0.011897068,-0.34702668,-0.6098867,0.16454892,0.17132328,-0.065928504,0.39243925,-0.72935724,-0.09235307,0.31491908,-0.22782587,-0.30314866,-0.3811383,0.29460385,0.5847037,-0.24753869,-0.14648835,0.043290447,0.29067314,-0.20274007,-0.42553273,-0.10475283,-0.303216,0.37614393,0.19735324,-0.20239775,0.051462468,0.12977637,-0.45134652,-0.06463367,0.0944708,-0.17495285,0.11223415,-0.23611955,0.051504303,0.8708717,-0.30086067,0.12443427,-0.5783582,-0.59564465,-0.73136455,-0.16697109,0.60261637,0.07044404,0.08423098,-0.3104089,-0.013384561,0.014680182,0.117375456,-0.06997379,-0.3484254,0.5959591,0.067314625,0.39752102,0.14109944,-0.6167252,0.13779983,0.033534847,-0.056993827,-0.41428557,0.48949274,-0.12668163,0.8050181,0.10537866,0.062161714,0.19299483,-0.5267455,0.13604994,-0.22982483,-0.18510883,-0.8093717,0.024505323,778 -885,0.43499812,-0.14332442,-0.7215435,0.09860978,-0.3560361,0.12558384,-0.6023719,0.4177065,0.16628028,-0.47764692,0.16992813,0.13839728,-0.1951971,0.062040668,-0.2043242,-0.7543163,-0.18789189,0.243342,-0.3767283,0.57445806,-0.25606927,0.23397511,0.11808065,0.26185504,-0.04835798,-0.07238408,-0.10303881,0.05128653,-0.15357767,-0.48488927,0.041232485,0.08839741,-0.5271881,0.4203775,0.06037712,-0.44615448,0.258116,-0.4037551,-0.34589264,-0.6643347,0.27977374,-0.70354414,0.83171946,0.2139873,-0.39481923,0.076410174,0.04134571,0.28525934,0.12004668,0.28126755,0.44021937,-0.7514338,-0.29837525,-0.5207347,-0.48817575,-0.71062464,-0.5737791,-0.18277681,-0.42658815,0.31942952,-0.13581292,0.5070918,-0.15484531,-0.10471081,-0.43910626,0.16275255,-0.57059807,0.03503446,0.1328764,-0.040597234,0.37280944,-0.8210612,-0.12178058,-0.0056049204,0.14466803,0.14600585,-0.21876742,0.17612159,0.011946831,0.533999,0.105960436,-0.28980148,-0.42952147,-0.18770921,0.054789662,0.6483183,-0.43556198,-0.109900095,-0.44355837,-0.016144743,0.793338,0.4949772,-0.06045264,-0.14200783,0.023219263,-0.3730514,-0.11169223,0.49486244,0.60675234,-0.20624013,0.20902102,0.26660934,0.10698432,0.21255033,-0.31904274,0.16094534,-0.32716405,-0.3762915,-0.10375204,0.30407494,0.020142242,0.26052287,0.0802658,0.23123394,0.37130365,-0.05961016,-0.20936139,-0.078370504,0.074562915,0.27202165,-0.32999063,-0.2459138,0.5654458,-0.60809326,0.18575537,-0.53882074,0.6323069,-0.1526847,-0.6808428,0.34506738,-0.49397305,0.04896654,0.10976841,0.77413684,0.71938324,0.8452818,-0.10717329,1.0901034,-0.45412007,0.35284173,-0.23661725,0.009869501,0.14487927,0.15554005,0.11385476,-0.39482966,0.06593413,-0.20044248,-0.10215481,0.044178445,0.75313234,-0.5244774,-0.20364602,0.26469997,0.86798257,-0.27090663,0.101262905,0.76229554,1.1528648,1.078075,-0.12230181,1.0770515,0.21757834,-0.24315919,-0.5821702,-0.08260695,-0.6932089,0.19896756,0.49952182,0.20447688,0.37631962,0.21928883,-0.09188024,0.49458703,-0.2786158,-0.47329903,0.013925363,0.3990945,-0.2693543,-0.28778723,-0.6476155,0.14164622,0.08478058,-0.10269773,0.2155642,0.513101,-0.3236517,0.5820425,0.13653135,1.1258324,-0.4491063,0.21418233,0.33229482,0.0945017,0.32310688,-0.10217602,0.22492428,0.3262622,0.30407426,-0.21234338,-0.53747255,0.03159839,-0.22665977,-0.53102976,-0.15128,-0.002060175,-0.2835209,-0.09305465,-0.23191185,-0.2906771,0.07715874,-0.35074317,0.24734867,-2.3336341,-0.114099324,0.059921294,0.3148286,-0.13584928,-0.55888724,-0.13177387,-0.3778458,0.74501115,0.17373429,0.64054877,-0.2856035,0.37705323,0.39019394,-0.3791529,-0.030075839,-0.8359501,-0.13890459,-0.08291736,0.45506397,-0.058561996,-0.5680563,0.14008687,-0.17184235,0.67117673,-0.030917307,0.099928595,0.25139186,0.5366869,-0.2903202,0.3452886,-0.18176335,0.6887428,-0.33012366,-0.31459475,0.34562397,-0.29752138,0.45853505,-0.31897554,0.1628063,0.6476188,-0.4616929,-0.5687092,-0.2784454,0.0139198555,0.9002921,-0.22938068,-0.6559207,-0.07855556,0.04989801,-0.26756337,0.17416996,0.50302094,-0.1778562,-0.032375842,-0.5032796,-0.3547474,-0.19662143,0.37022963,-0.14512888,0.2654924,-0.63003224,0.5555959,-0.11599707,0.5382469,0.8486624,0.33696768,-0.056906313,-0.31741038,0.04248665,0.8658852,0.55520004,0.17773996,-0.48895776,-0.15773386,0.02503711,-0.015581111,-0.15932459,0.7037967,0.64062697,-0.21601813,-0.040882144,0.30885202,-0.35230467,0.03492638,-0.15461755,-0.60631853,-0.23196684,0.27022478,0.62034154,0.534831,0.14222346,0.60717005,0.17977206,0.33206967,-0.4746929,-0.36564374,0.35858855,0.6202638,-0.35695648,-0.24263479,0.83037,0.44448295,-0.04574275,0.7107894,-0.77823496,-0.39605975,0.3280455,-0.024163222,-0.54244745,0.4153814,-0.34290895,0.06384816,-0.9454158,0.19145536,-0.62624305,-0.8775945,-0.8978742,-0.23615062,-1.1471392,0.14341624,-0.40020004,-0.026444891,-0.27351713,-0.19309384,0.33706012,-0.50320715,-0.6932716,0.15406406,0.29052004,0.4126042,-0.1773846,-0.07070469,-0.27864984,-0.5276106,-0.0613725,0.5788508,0.27481565,0.033496562,-0.23480046,-0.36816755,0.035218358,-0.0013625572,-0.11721989,-0.123125784,-0.6619643,-0.05429397,-0.0029044233,-0.40788135,-0.04722644,0.70208865,-0.6520641,-0.06398239,-0.3046513,0.22001141,0.119359106,0.085971914,-0.19545932,0.367627,-0.0084634675,-0.3506013,0.033091854,-0.22567098,0.02173546,0.19358116,0.26247156,0.3142845,-0.2462743,-0.042493504,0.4582294,0.6513981,0.14652003,0.8688228,0.33499923,-0.14897068,0.23003745,-0.3345225,-0.19278257,-0.75951105,-0.27639267,-0.027305752,-0.5052138,-0.8343254,-0.16723372,-0.48118103,-0.8368201,0.61201304,0.106997855,0.11034589,0.019129897,0.81688166,0.25218603,-0.28406823,-0.13991208,-0.07604303,-0.12010071,-0.2539117,-0.36208442,-0.84911615,-0.43006957,-0.025648465,1.2886738,-0.2718281,0.038399275,0.4391718,-0.3642212,0.019154524,0.37924495,-0.0044077933,-0.099931896,0.2968883,0.4386654,-0.52593917,0.30942386,-0.06663906,0.006211281,-0.6295509,0.22446986,0.7576487,-0.7499778,0.3030844,0.5894762,0.19309019,-0.27876538,-1.0851709,0.010098909,0.54989344,-0.2546197,0.6098594,0.373418,-0.42448792,0.5028366,0.40517232,-0.107397854,-0.76092935,0.28501675,0.0022041302,-0.40707472,0.2572318,0.4684359,0.026685873,-0.062632106,-0.23248307,0.49565086,-0.41607532,0.584897,0.043850347,-0.28785846,0.087295555,-0.29736343,-0.3787091,-0.9612896,0.21368696,-0.8050256,-0.46819317,0.56853706,0.00719736,0.19582842,0.20346336,0.3989921,0.65102524,-0.5399836,0.17856891,-0.5759476,-0.41136727,0.5832219,0.572002,0.39146772,-0.42132545,0.5847413,0.06632698,-0.30514142,-0.05809587,0.2478662,0.58833325,-0.14091522,0.54031205,-0.32335332,-0.10076081,0.10671132,0.9727704,0.3459215,0.33399916,0.20675588,-0.04736189,0.101358734,0.07694313,0.16444708,-0.28087503,-0.41722372,-0.21230717,-0.11822173,0.04018551,0.6491393,0.1648846,0.47360513,-0.25481907,-0.0333934,0.09031307,0.08841094,0.11894896,-1.1019126,0.523043,0.21626176,0.6345816,0.410805,0.3946524,0.23131399,0.40551063,-0.32382587,-0.17247178,0.379737,0.15080358,-0.054279655,0.46038854,-0.61288583,0.09852648,-0.3163801,0.100337245,0.3346078,-0.11414373,0.7861753,0.9944927,-0.24061507,0.16029048,0.039170865,-0.27233362,-0.0894309,-0.041343022,0.08890965,-0.33668968,-0.50427413,0.8176343,0.14234641,0.4583486,-0.16339995,-0.0591121,0.44606113,-0.060629856,0.4464318,0.058492374,0.057367522,-0.06546765,-0.15903874,-0.20381379,0.61349773,-0.1247175,-0.253019,-0.04834312,-0.120252885,0.40037918,-0.051920384,-0.060643617,-0.021583056,-0.5746533,0.26333913,-0.68140966,-0.51149195,0.33718958,0.12954585,0.054883797,0.09693927,0.23289101,0.11676166,0.34273314,0.06192313,0.7667896,0.10379762,-0.31407833,-0.16790362,0.090415396,0.34722304,-0.32026878,-0.14704826,0.07722622,0.37768808,-0.8209069,0.32243606,-0.47439286,-0.3080327,0.20088993,-0.14747807,-0.29072842,0.32892188,-0.07167526,-0.24337976,0.38057378,-0.3261884,-0.34839478,-0.5186768,-0.36181858,-0.04324424,-0.23087166,0.07520909,-0.36721793,-0.029961308,-0.15378453,0.40182695,0.2978821,-0.068845965,0.38148192,0.2553773,-0.5044445,-0.0074358187,0.27252185,0.53000075,-0.13714324,0.03948206,-0.23270452,-0.5122896,-0.3923578,0.50935155,-0.1955565,0.43882504,-0.031115947,-0.39087668,1.153822,0.13182025,0.9379818,0.02896604,-0.5455323,-0.12732112,0.7334819,-0.20238554,-0.015110941,-0.4711641,1.2238063,0.8077703,-0.07271289,0.0012919307,-0.38574103,-0.106588244,0.28890648,-0.41014984,-0.023318762,0.0057941177,-0.61750555,-0.060186297,0.27119586,0.082759924,0.009570415,-0.2096101,0.07952767,0.31667686,0.27736965,0.006734515,-0.53440875,-0.18316476,0.37961808,0.21061854,-0.017776066,0.23828049,-0.35918975,0.015242974,-0.6013798,0.092633076,-0.5676955,0.045549154,0.06520765,-0.2336865,0.37522134,-0.16459204,0.0536261,-0.48795405,-0.26880363,0.12388862,0.23447634,0.2620521,0.29871407,0.6126589,-0.29295585,-1.7868975e-05,-0.1205599,0.42888108,1.1883745,-0.4398577,-0.09032037,0.29232585,-0.43179503,-0.7632136,0.001122276,-0.5882111,-0.05434111,-0.053235233,-0.65709907,-0.49077988,0.25591028,-0.117361516,-0.2594215,-0.17436528,-0.5913463,0.09948442,0.1628906,-0.28104207,-0.25965816,-0.08170354,0.12970418,1.0571774,-0.202991,-0.53998166,0.032449313,0.45689377,-0.45570922,-0.6544576,0.40835524,-0.433287,0.196491,0.17106509,-0.43613717,0.10668659,0.10289059,-0.6021419,-0.13092633,0.41239586,-0.20765595,-0.20694053,-0.29327154,0.28291973,0.7050257,-0.08561895,-0.11804819,-0.4817632,-0.45460543,-0.69030863,-0.49367616,0.017107695,0.31754258,0.22861338,-0.796542,0.040959943,-0.5487825,-0.13953814,-0.031680185,-0.3417749,0.47407582,0.11648762,0.4722092,-0.6286345,-1.0540086,0.3852073,0.13874745,-0.46217093,-0.43632475,0.33454588,-0.23781924,1.0441232,0.115999006,0.07131072,0.14704727,-0.82486343,0.3874997,-0.32976446,-0.16544776,-1.0820915,-0.016746148,779 -886,0.51957804,-0.12651952,-0.54782885,-0.13867673,-0.56650037,0.037111353,-0.23133415,0.29172477,0.27611056,-0.2125982,-0.08107572,-0.16482663,-0.07740155,0.41419208,-0.2218137,-0.85458285,0.06056057,0.34858665,-0.7381165,0.6411404,-0.47543836,0.3037334,-0.056728113,0.4158412,0.2605859,0.10874022,-0.03018871,-0.00053628784,-0.22064306,-0.1289492,-0.19605123,0.09467119,-0.8729841,0.52121073,-0.1784019,-0.47882006,-0.1626289,-0.42366162,-0.35075128,-0.80107385,0.22812258,-0.6630674,0.57964677,-0.19286664,-0.3405178,-0.06043766,0.3372555,0.5280615,-0.294991,-0.042926718,0.24900031,-0.35532984,-0.14245628,-0.32946387,-0.32772306,-0.61693835,-0.58768106,0.041899104,-0.535193,0.117351495,-0.2214601,0.25884527,-0.23954491,0.037724804,-0.20612796,0.41319513,-0.41783717,0.52874464,0.22400503,0.07434336,0.120316885,-0.4080759,-0.1902061,-0.2938138,0.2673792,-0.08593694,-0.47621107,0.42671624,0.452099,0.18561427,0.024894752,-0.28733838,-0.23886906,-0.08846422,0.1284611,0.41346863,-0.046348054,-0.33184198,-0.39996383,-0.03738113,0.44585657,0.28721467,0.085959874,-0.52995175,0.044262875,-0.107623935,-0.22213514,0.62657094,0.42678523,-0.19315185,-0.0996673,0.42545965,0.3340814,0.27754587,-0.2932857,0.030967807,0.0403966,-0.6343358,-0.15183903,0.40252456,-0.10543588,0.60704046,-0.29918203,0.07776622,0.70875984,-0.39051744,-0.32991698,0.115541406,0.056083318,-0.07768079,-0.32287955,-0.21926676,0.2020845,-0.57011324,-0.012103538,-0.13726138,0.8344977,0.22123128,-0.84411734,0.25379825,-0.70534045,0.19403236,-0.026287334,0.4278088,0.8477499,0.6547144,0.40425503,0.8240881,-0.454833,0.15052825,-0.001998509,-0.43287054,-0.022650898,-0.2338153,-0.10890257,-0.5040677,-0.009545823,-0.27552626,-0.09668088,0.057564646,0.46010518,-0.41484436,-0.21843183,-0.15517236,0.6297016,-0.4365655,-0.2936112,1.1517953,0.9790776,1.2762548,0.22453295,1.4314791,0.4829391,-0.013225938,-0.074088775,-0.10156438,-0.5988198,0.2818661,0.1367064,-0.8702902,0.31628105,0.0062146806,0.2023331,0.24980597,-0.15444146,-0.12689704,-0.003722747,0.43598607,0.0077773333,-0.20739977,-0.41184866,-0.4894644,-0.010930136,0.019455632,-0.14926404,0.32637945,-0.009041001,0.6303857,0.2274131,1.057156,0.16710423,-0.052615926,-0.14040513,0.36671543,0.25382367,-0.14177231,-0.20380406,0.23969398,0.24377947,0.110850476,-0.6542685,-0.058426123,-0.34630096,-0.34794426,-0.28093103,-0.27740493,-0.14533664,-0.18165548,-0.37500703,-0.3868105,0.006294551,-0.08575838,0.6726246,-2.2462988,-0.20445561,-0.0037568037,0.29467544,-0.18957354,-0.3693289,-0.22743328,-0.6221029,0.33960006,0.16654198,0.51217014,-0.7470123,0.3870455,0.33743146,-0.5100595,-0.25399226,-0.8359568,0.019573933,0.025191853,0.34078774,-0.19168384,0.0345728,0.11619403,-0.10277054,0.66059804,-0.13273461,0.10414786,0.24935983,0.45767602,-0.031360615,0.4657545,0.13758333,0.7558959,-0.4448603,-0.06992066,0.121183395,-0.40172663,0.4154552,0.17503452,-0.0008269188,0.746932,-0.63298696,-0.79857427,-0.62658685,-0.23620254,1.027527,-0.35430884,-0.28388467,0.11612291,-0.2536521,-0.21737589,0.027390605,0.32910606,0.033383377,0.044641357,-0.56985766,-0.09230751,0.061492175,0.15780704,-0.16152906,0.026213871,-0.16925484,0.7201001,-0.086040616,0.306757,0.4230206,0.1354726,-0.5276535,-0.5542212,0.10560119,0.8300577,0.27183655,0.1363075,-0.28301728,-0.32092264,-0.46914113,-0.14545391,0.21688895,0.5622404,0.5297064,-0.1861874,0.035993505,0.39432874,-0.25222942,0.14346343,-0.026354894,-0.3605262,-0.24297334,0.18314381,0.6104356,0.84706324,-0.12647386,0.70281506,-0.1799028,0.23417485,-0.25403914,-0.71045184,0.7483816,1.2509109,-0.24629474,-0.4542818,0.5630908,0.367462,-0.2894586,0.46226677,-0.25098136,-0.33990416,0.7254239,-0.004030938,-0.38543442,0.05071926,-0.35124567,0.08251054,-0.94495064,0.4506863,-0.39007774,-0.6615009,-0.4601687,0.032990467,-3.1150331,0.23760404,-0.19297184,-0.070742324,-0.14044437,-0.23555179,0.09997336,-0.6064876,-0.6859961,0.16432627,0.1442501,0.6563227,-0.062019795,0.13751227,-0.15418066,-0.3229847,-0.23345275,0.28622833,0.35990706,0.39731815,-0.11231923,-0.5308772,0.153599,-0.38385418,-0.54273707,0.007856786,-0.718025,-0.4206207,-0.14035411,-0.63450193,-0.39650837,0.728868,-0.6222706,-0.08966631,-0.22355293,0.009995447,-0.13032268,0.38176522,-0.051504727,0.22999686,0.13583595,0.048259627,-0.1587139,-0.24423742,0.12808013,0.11003371,0.3631258,0.4236832,-0.04937038,0.28857774,0.5970212,0.82012624,-0.048222993,1.025539,0.24931537,-0.14701594,0.24038452,-0.2023458,-0.41610873,-0.6009919,-0.29376617,-0.4552734,-0.45275006,-0.43527365,-0.062982894,-0.32932037,-0.8868421,0.5156042,0.19635405,0.11031497,-0.11139426,0.32168588,0.2752456,-0.2609816,0.18482053,-0.23036027,-0.32374164,-0.5043259,-0.50622106,-0.5588891,-0.6258026,0.15719324,1.3305222,-0.10520319,-0.11409161,0.08619821,-0.50316066,0.19202684,0.2443911,-0.17530495,0.18652661,0.22085817,-0.13364255,-0.71649814,0.31328672,-0.16058476,0.008579016,-0.47877824,0.35594654,0.9634642,-0.5124696,0.62644655,0.3496599,0.092824765,-0.072883986,-0.5314215,-0.22062106,-0.03925772,-0.2453547,0.6063735,0.28646824,-0.81659347,0.41613296,0.24237694,-0.3005921,-0.6801893,0.60763645,0.12609129,-0.121801436,0.039837252,0.40079466,0.15932085,-0.13815601,-0.23274231,0.32685736,-0.6057745,-0.006891094,0.11619934,0.03580058,-0.05657633,-0.06580842,-0.29586056,-0.7671843,0.04701711,-0.36708865,-0.35239795,0.16569567,0.12996952,0.040866368,0.13321717,0.32250154,0.21766867,-0.38665512,0.15581065,-0.34734908,-0.28990802,0.3562484,0.535131,0.44966635,-0.55383533,0.65360373,0.13166802,0.10031018,-0.038507402,0.17900282,0.44271052,0.22020657,0.42365384,0.14021038,-0.10341495,0.054653764,0.59373564,0.29852965,0.5590434,0.12296334,-0.11738361,0.10697633,0.2081132,0.4876448,0.07665894,-0.16908719,0.030578814,-0.2617626,0.12135446,0.41235685,-0.08374065,0.3161076,-0.06881902,-0.16507734,0.044646725,0.017940441,-0.048066903,-1.5945778,0.55591965,0.34794626,0.56823653,0.5757098,0.0053385496,0.073189326,0.6819089,-0.44026145,0.043822285,0.5255287,0.16105826,-0.24891551,0.5430382,-0.76710266,0.6263007,-0.25583777,0.060079932,0.15360515,0.28214052,0.3867239,1.1113483,-0.16087964,0.09180835,0.1117877,-0.3443699,0.20271112,-0.40455294,0.116579056,-0.55346924,-0.3124152,0.9953874,0.2944634,0.3013654,-0.32302904,-0.009191916,0.14220183,-0.100204855,0.16640663,-0.015568812,-0.061624855,-0.09163741,-0.6965785,-0.13164632,0.6461778,-0.26983282,0.08140138,0.22699505,-0.08778263,0.47925878,-0.2746198,0.06595179,-0.07017299,-0.83249444,-0.10934972,-0.42996156,-0.3949039,0.35459623,-0.47323355,0.16770208,0.122665055,0.09148944,-0.37029037,0.39405492,0.13943143,0.69078964,0.014691249,-0.13378255,-0.12653595,0.2628729,0.4671979,-0.22981149,0.15545554,-0.15233575,-0.12630835,-0.7212556,0.50892144,-0.18941705,-0.29983446,-0.051574882,0.13502279,0.068223216,0.5565761,-0.11785915,-0.2203213,0.04353242,-0.092554174,-0.27128825,-0.14019586,-0.24293447,0.28641596,0.37056676,-0.09148231,-0.026233234,-0.10222257,-0.038528696,0.27560404,-0.1546228,0.43109488,0.14682485,0.04607546,-0.30687007,-0.025953142,-0.057311933,0.5520629,0.22056507,-0.17401518,-0.21494788,-0.03423171,-0.29142395,0.3071588,-0.09759783,0.19289209,0.11097846,-0.37321708,0.8400023,-0.11718687,1.4088593,0.13972269,-0.48136154,0.2641552,0.3734543,0.037176292,-0.08513538,-0.25324723,0.95571727,0.50299615,-0.16291513,-0.069651015,-0.560853,-0.22265698,0.22536252,-0.27041924,-0.34967855,0.103072755,-0.45872986,-0.15191886,0.18465029,0.056381125,0.08453763,-0.15691312,-0.042832028,0.38231996,0.08783541,0.2937508,-0.45982075,0.13413383,0.2729607,0.39314374,0.22519629,0.17473543,-0.37440908,0.27127078,-0.74358207,0.40712366,-0.40679863,0.2517229,-0.28754094,-0.27786553,0.21558636,0.093441665,0.21647187,-0.18648623,-0.3075519,-0.36992523,0.6931146,0.18476033,0.22820465,0.90477926,-0.2941949,-0.18436311,0.13624796,0.42235136,1.002902,-0.32445452,-0.32197955,0.36559716,-0.38121763,-0.71431917,0.44195876,-0.45893374,0.058526617,-0.033946503,-0.29375055,-0.5862344,0.17779191,0.06797382,0.2951989,-0.0055936277,-0.73372006,0.15059383,0.32782796,-0.19803262,-0.38296947,-0.32107732,0.49399328,0.70958894,-0.35528827,-0.537154,0.12999496,0.0673122,-0.18042637,-0.3868319,-0.016482571,-0.25152242,0.3558174,0.10367224,-0.4001796,-0.056600522,0.2364012,-0.44424322,0.048760563,0.17444496,-0.24188411,0.17198472,-0.19771178,-0.11876606,0.96737367,-0.34137467,0.41200206,-0.54733956,-0.6471538,-0.8145282,-0.28859103,0.05850032,0.34757006,0.03419783,-0.6709712,-0.17511575,0.09851912,-0.36600915,0.1367641,-0.64826196,0.6122801,0.15229149,0.10427495,-0.02110284,-0.9738869,0.10607412,0.2363805,-0.039702654,-0.67587775,0.4559004,-0.3635707,0.8548365,0.19782715,0.12981409,0.14675455,-0.5932711,0.36109626,-0.29134375,-0.11483395,-0.53452,-0.0038784842,783 -887,0.42433453,0.10965278,-0.7235157,-0.13569754,-0.56342894,-0.048483957,-0.21842927,0.2150045,0.31662688,-0.0608235,-0.057522893,0.15303272,-0.19403009,0.4073415,-0.04882281,-0.95475894,-0.027754536,0.19546266,-0.71673733,0.5327232,-0.30899838,0.34420633,-0.12204301,0.43148944,0.10454998,0.18092062,-0.110569604,0.09334161,0.11693648,-0.26967877,0.110785805,0.007094905,-0.73249584,0.18683068,-0.039246596,-0.38702098,-0.057903226,-0.5207536,-0.45425132,-0.7111148,0.4807819,-0.69092345,0.6399881,0.13536352,-0.27688092,0.015265651,0.18821146,0.29276368,-0.14171563,0.03631995,0.383823,-0.5070086,-0.00028047213,-0.20055795,-0.14852391,-0.2553223,-0.5926359,-0.267283,-0.49626365,-0.04431893,-0.2516762,0.18861604,-0.34581867,-0.1214126,-0.46339846,0.47179428,-0.47273052,0.17385046,0.26123002,-0.18492137,0.1319672,-0.5706102,-0.1090297,-0.09977911,0.37727436,-0.0050263205,-0.34373644,0.5863487,0.07426072,0.30810907,0.025805548,-0.28554454,-0.2869281,-0.073124245,0.060266167,0.5774496,-0.31327745,0.027082175,-0.18202941,-0.042172182,0.35098734,0.27771086,-0.08039432,-0.25835085,-0.05826639,-0.13445915,0.07912778,0.6500711,0.44668886,-0.2544959,0.018454045,0.46764407,0.48520306,0.3924013,-0.24523754,0.026448593,-0.06825119,-0.54033655,-0.1553167,0.20807175,-0.16379595,0.26805535,-0.005445426,0.049756687,0.69170004,-0.1644552,-0.22594528,-0.07212073,0.08511124,0.4609857,-0.21283095,-0.23241675,0.41402233,-0.55561477,0.44756973,-0.18750751,0.67771274,0.11899959,-0.6364217,0.24307865,-0.65208936,0.16597255,-0.045498487,0.6930318,0.8416354,0.5320988,0.27947173,0.906157,-0.4340026,0.23237224,0.28347537,-0.27416846,-0.075541764,0.08538422,0.26927748,-0.46516395,-0.17524791,-0.36096182,-0.09983399,0.15780288,0.27310646,-0.36560178,-0.2313804,0.03923544,0.77189225,-0.27253902,-0.051210444,0.9004914,1.0347548,1.1261247,-0.08943117,0.7893478,0.04655799,-0.12630068,-0.34116688,-0.11003923,-0.49010873,0.15397996,0.340484,0.03069961,0.31760234,0.06677862,0.06751991,0.45566878,-0.4062489,-0.19006474,0.02263394,0.47593084,-0.03472903,-0.120548725,-0.52615917,-0.18449454,-0.045632333,0.09088122,-0.076611295,0.40846667,-0.30522713,0.2566245,-0.09789608,1.0432863,0.1850553,0.16473104,0.08059728,0.50663453,0.24692632,-0.24025579,-0.12900175,0.14406864,0.3173301,-0.037958246,-0.54981273,0.03845414,-0.42653492,-0.3072925,-0.17432934,-0.40052494,-0.31881937,0.027407631,-0.5019236,-0.16232474,-0.0056638047,-0.20705557,0.45402148,-2.4129775,-0.12151884,-0.08350312,0.3372022,-0.057242308,-0.34180072,-0.19710441,-0.48237872,0.41247365,0.1758892,0.53142256,-0.52941054,0.5619084,0.44959888,-0.5362641,0.10361707,-0.65113497,-0.18230493,0.21715778,0.21658134,-0.1413755,0.025598833,0.102318235,0.27236566,0.62903005,0.25195262,-0.057086542,0.2864764,0.4798603,-0.29191682,0.4833137,-0.036110535,0.57591623,-0.2453397,-0.19548558,0.37627697,-0.38730553,0.4075471,-0.27940926,0.0140402615,0.5565193,-0.5250692,-1.012072,-0.30312696,-0.15861318,1.0518755,-0.25498453,-0.5832333,0.24016963,-0.34358823,-0.2056212,0.031735834,0.6797002,-0.22903407,-0.04496269,-0.570884,-0.103653215,-0.25352982,0.19811134,-0.11260264,0.2598097,-0.41408315,0.7098337,-0.19533215,0.4518319,0.2843438,0.17586106,-0.23957486,-0.4398683,0.10471498,0.6330295,0.57267696,0.09281484,-0.2763081,-0.10412648,-0.1402571,-0.23891038,-0.0042180815,0.9525013,0.5559066,-0.18684769,0.06341525,0.3691676,-0.1404532,-0.06341955,-0.19343458,-0.3862207,-0.23263647,-0.023460725,0.5726356,0.8638628,-0.029332718,0.48995087,0.052164216,0.03314814,-0.17126572,-0.5446974,0.3765444,0.6354088,-0.13404681,-0.23032515,0.5796019,0.31526235,-0.15655772,0.4604118,-0.54460126,-0.21837085,0.604241,-0.12614435,-0.55810785,-0.07255033,-0.3391018,-0.039186504,-0.6547932,0.32151073,-0.4221485,-0.98835355,-0.45973304,-0.17756309,-2.639459,0.21064235,-0.37461242,-0.01939421,-0.22293031,-0.18146145,0.06102402,-0.6306405,-0.55201954,0.114787124,0.0447658,0.66858584,-0.20417476,0.14948872,-0.21432789,-0.33415365,-0.21074396,0.34691855,0.34373626,0.30040953,-0.06253631,-0.21369398,0.14194258,0.007517206,-0.54910034,-0.0843778,-0.41589022,-0.36063942,-0.06731149,-0.48980674,-0.21083193,0.69514847,-0.4253451,0.066220656,-0.26770386,-0.065101534,-0.047746792,0.22169833,0.29056162,0.4827493,0.12966427,-0.07431248,-0.07281439,-0.059191078,0.32481998,0.14094934,0.63300794,0.23645115,-0.011815551,0.18986666,0.5995387,0.76790816,0.058008805,0.9078062,0.323634,-0.11448487,0.16639079,-0.30413,-0.32224658,-0.80034,-0.44024745,0.0009292364,-0.47761226,-0.51272184,-0.060191315,-0.41254607,-0.91146445,0.44815812,0.05662517,0.25932434,-0.10355864,0.2710265,0.390306,-0.30580807,-0.048705976,-0.07827976,-0.09324866,-0.40126002,-0.27181458,-0.6629805,-0.4536147,-0.059264272,0.9833711,-0.31134465,0.01629667,0.26354071,-0.5045603,0.1598788,0.13900942,0.06753553,0.033227343,0.22757526,0.025679221,-0.50863075,0.37766328,-0.32278237,0.09318277,-0.7927522,0.17257945,0.72596806,-0.46988907,0.74024504,0.33278129,0.044770446,-0.23959029,-0.8161395,-0.28278232,0.22930269,-0.25755084,0.3946202,0.21647567,-0.63438153,0.2982748,0.007944738,-0.27415708,-0.68996054,0.58492845,0.06463943,-0.429111,0.20137249,0.4433777,-0.028225103,-0.28870004,0.1023274,0.6063719,-0.35980847,0.3990136,0.18099366,-0.05121829,0.085368596,-0.12391112,-0.30347246,-0.7229163,0.0667099,-0.6474621,-0.43973994,0.11561531,-0.045307714,0.12212968,0.11837059,0.36789623,0.3548348,-0.27299735,0.31322998,-0.36367488,-0.46560922,0.432193,0.47734046,0.5674434,-0.5086778,0.6944997,0.16898155,0.02799075,0.3495226,0.239074,0.6131219,-0.20552312,0.4724846,-0.082605645,-0.0042034686,-0.120452724,0.6845681,0.18603571,0.3228447,-0.022205314,-0.16732891,0.07239085,0.12669231,0.33078325,-0.13786852,-0.46880493,0.104649104,-0.017242143,0.054211836,0.5149392,0.24784012,0.20448191,-0.116078295,-0.10572495,0.1528276,0.13542032,-0.018508783,-1.4224125,0.7059245,0.38732255,0.95610315,0.39875722,0.16849567,-0.04201061,0.6282601,-0.2587013,-0.0034483671,0.4590249,0.014325812,-0.33456206,0.5515521,-0.6134785,0.5569007,-0.02553401,-0.003187808,0.27866018,0.17316818,0.40500402,0.6996515,-0.29199994,-0.042188123,8.8969864e-05,-0.42601535,0.01693368,-0.30037466,0.11154106,-0.52014023,-0.41543067,0.6709776,0.5792058,0.2275964,-0.24150597,0.029266,-0.08472249,-0.2097177,0.13555868,-0.12495921,-0.12513776,-0.1892276,-0.46294728,-0.19319099,0.35136208,-0.46003798,-0.12647519,-0.08835611,-0.021607267,0.31158698,-0.060076177,-0.005049641,-0.078065746,-0.841958,0.12644733,-0.37700343,-0.26544607,0.211255,-0.45895016,0.34425846,0.2804083,0.039282795,-0.14919849,0.44648838,0.04517135,0.696145,-0.053115945,-0.13437873,-0.31274983,0.17052643,0.18205673,-0.18434002,0.20439827,-0.31423596,0.18579455,-0.6754446,0.36896965,-0.4148152,-0.38302907,-0.26191172,-0.19623165,-0.041414946,0.38105503,-0.20438915,-0.20398365,0.073141545,-0.3414574,-0.3205918,-0.13196565,-0.26733494,0.09187838,0.09805594,-0.120253526,-0.17682248,-0.10579511,-0.14508893,0.2924988,0.08159446,0.28405926,0.2732299,0.1419657,-0.35721433,0.021789348,0.0379487,0.5151982,0.04331726,0.028682942,-0.3135986,-0.21915503,-0.33956477,0.59422916,-0.23480421,0.30871347,-0.0038528803,-0.20541598,0.77724665,0.19349028,1.184665,-0.014844258,-0.40475345,0.016473135,0.5824769,-0.11639886,0.04671229,-0.2947694,0.8546276,0.4581796,-0.086953096,-0.07375519,-0.32210946,0.010834704,0.28676996,-0.24905758,-0.23546362,0.013913701,-0.5166263,0.013037209,0.23748542,0.14608575,0.13308531,-0.19140156,-0.2717543,0.29924402,0.21594481,0.21096165,-0.6216545,-0.11868923,0.31308368,0.094866045,0.108617604,0.3084489,-0.31338182,0.3194762,-0.6965472,0.2952132,-0.52941275,0.16344447,-0.19300288,-0.276361,0.18587996,0.12597376,0.3936871,-0.26506698,-0.092790574,-0.11150143,0.3607346,0.37707326,0.23669495,0.6972448,-0.22011192,-0.11501164,-0.057452098,0.44765913,0.9635625,-0.17854668,0.01147072,0.28458259,-0.31253994,-0.7011666,0.08892878,-0.53738403,0.0036193703,-0.17957018,-0.3693535,-0.42873427,0.060973864,-0.0699608,-0.06669008,0.08636909,-0.77382857,-0.12429774,0.25575253,-0.29955882,-0.3037839,-0.36555967,0.33571196,0.8628374,-0.1409582,-0.33524227,0.07605163,0.25069305,-0.13826756,-0.45878422,0.48122966,-0.3106555,0.23091064,-0.1223573,-0.5496709,-0.06571107,0.29319584,-0.4438881,0.218004,0.29859295,-0.28787887,0.037147325,0.05059768,0.119425245,0.8143401,-0.23342896,0.2957855,-0.44996342,-0.53121114,-0.7805963,-0.34301946,0.050044622,0.25235754,-0.16712166,-0.77699167,-0.16023116,-0.23061377,-0.049244303,-0.09678966,-0.5223856,0.4248208,0.1897645,0.47406626,-0.19685501,-1.0773406,0.10699117,0.1447461,-0.30172917,-0.37913302,0.47359347,-0.051670957,0.77103657,0.099478476,0.00052812445,-0.07349389,-0.3809007,0.46032643,-0.29096052,-0.09054222,-0.5647079,0.061427653,798 -888,0.3724642,-0.11015139,-0.44059277,-0.23479451,-0.2799292,0.15087487,-0.1376146,0.30031124,0.45784783,-0.16695099,-0.0848433,0.04249211,-0.17016725,0.31943586,-0.17530848,-0.9129631,-0.02520591,0.021316377,-0.5210736,0.7059527,-0.3434868,0.32462662,-0.06835159,0.38789615,0.11529204,0.3304672,0.20770092,0.22432967,-0.15592058,-0.0010871986,0.10119173,0.34937108,-0.47151837,0.50917625,0.013154987,-0.10066003,-0.19850259,-0.3409361,-0.29408464,-0.78852767,0.46098614,-0.48338065,0.43729672,-0.055237073,-0.3843708,-0.21872109,0.26139596,0.14810438,-0.22587128,-0.09844214,0.21598284,-0.28357962,-0.23675601,-0.097674645,-0.27074143,-0.552953,-0.5606907,-0.09300365,-0.5658905,-0.15862639,-0.13552362,0.2911429,-0.29257438,-0.14146574,-0.1279248,0.7662353,-0.4338325,-0.058127165,0.5445878,-0.41209388,-0.031925406,-0.78440434,-0.25307158,0.0038537309,0.23378076,0.35134038,-0.20551199,0.62315065,0.27990267,0.3269234,0.105753124,-0.41355082,-0.42599723,-0.26408914,0.20548834,0.363969,-0.26463184,-0.39444184,-0.2607587,0.015421887,0.317935,0.17493875,0.20094419,-0.44078335,0.014864791,-0.14330782,0.056514632,0.47309434,0.4929256,-0.15930441,-0.17580128,0.3077426,0.35790595,0.22468393,-0.22930826,-0.0036545794,-0.1758296,-0.451659,-0.22080685,0.06308233,-0.023192724,0.30966046,0.02740509,0.16086584,0.7469761,0.03315659,-0.106536984,-0.020982185,0.18341602,0.12175671,-0.42380872,-0.053064402,0.28784811,-0.30251753,0.032008763,-0.18400855,0.55418724,0.095620155,-0.82990503,0.33113453,-0.47297665,0.022950329,0.067141645,0.596339,0.90722233,0.486825,0.2546215,0.9934302,-0.37068152,-0.012994249,0.14430638,-0.17900605,-0.014454071,-0.24368973,0.2860819,-0.6365023,0.07693175,0.10968229,0.037133586,0.14701961,0.3925633,-0.36014414,-0.3078436,0.093239434,0.85314417,-0.2562044,-0.14419001,0.6892875,1.0981473,1.0672113,-0.008968696,1.018118,0.10104049,-0.13458003,-0.10995144,-0.29684147,-0.38835728,0.27699727,0.2878884,0.031081775,0.41494516,-0.022439694,0.10373709,0.5790364,-0.28559348,-0.07148635,0.11960652,0.25352454,0.2215327,-0.0954816,-0.53055644,-0.3239617,0.28911647,0.11695609,0.038571443,0.33618554,-0.28298545,0.43688726,-0.24042888,1.1847005,-0.032614894,0.18482216,0.19401856,0.41468802,0.1164186,-0.33292744,0.009321973,0.1926231,0.22460853,0.01289132,-0.3699201,-0.022802128,-0.45719573,-0.43281758,-0.14074366,-0.38716745,-0.30074584,0.03549567,-0.28983283,-0.30318055,0.027621636,-0.32079396,0.44122925,-2.5310009,-0.03412191,-0.2195378,0.2976891,-0.23601907,-0.1890503,-0.19851409,-0.46911332,0.36903214,0.35788274,0.4670011,-0.5178916,0.20220192,0.44073534,-0.57313013,-0.17157996,-0.5112671,0.079443276,0.023775408,0.46152246,-0.026639849,-0.18862008,0.047391605,0.32902285,0.579448,0.34904358,-0.03542496,0.28619576,0.41112974,-0.25565428,0.3677889,-0.124298155,0.590051,-0.415643,-0.18253638,0.424965,-0.5892647,0.5434522,-0.27658376,-0.025580397,0.4973004,-0.30583775,-0.7770373,-0.44073287,-0.32888058,1.2501374,-0.39711997,-0.6378301,0.13825674,-0.14054786,-0.26103124,0.063056864,0.68939954,-0.110889144,0.18763715,-0.5416451,0.12934603,-0.121827245,0.13705117,-0.20630486,0.07175499,-0.6002832,0.7371494,-0.027332634,0.7250164,0.45163584,0.118063055,-0.47287917,-0.44489977,0.047699273,0.80581856,0.51401067,0.12034619,-0.037794214,-0.07930008,-0.024519311,-0.45509732,0.1546015,0.99788815,0.57176274,-0.05838744,0.13356222,0.28690758,-0.1549857,0.07992175,-0.09514159,-0.37321138,-0.26528862,0.25151265,0.71115357,0.77160686,-0.1973306,0.2769676,-0.07837549,0.1943805,-0.17117494,-0.47752246,0.39385414,0.49317834,-0.2647724,-0.29390973,0.67595553,0.41649345,-0.370984,0.44157135,-0.47453097,-0.43812957,0.6936653,-0.15816294,-0.60519737,-0.1531553,-0.3733867,-0.11251757,-0.70390743,0.2094623,-0.23748219,-0.7158148,-0.6115031,-0.22781198,-3.021499,0.1526819,-0.19963281,-0.04717678,-0.21731465,0.016558101,0.06123169,-0.74582386,-0.56011397,0.10913825,0.009038714,0.47867203,-0.07354214,-0.012242665,-0.2861773,-0.35597435,0.026114231,0.36287844,-0.033818502,0.27249154,-0.10130447,-0.29019746,0.038174357,-0.108234465,-0.5370996,-0.14778173,-0.6146969,-0.65551376,-0.0654609,-0.5714361,-0.08122959,0.7638498,-0.5972384,-0.08495512,-0.22339137,0.016195148,-0.028025324,0.23637356,0.11200101,0.4886311,0.27984768,-0.12834686,0.016527908,-0.25419605,0.36042586,0.14306633,0.6028711,0.51987207,-0.10283031,0.35246304,0.5948321,0.65560526,0.009470612,0.7935651,0.2009693,-0.16859369,0.26991197,-0.22565956,-0.21793257,-0.6243046,-0.37448815,0.26239574,-0.39920637,-0.38707554,-0.13583778,-0.28035718,-0.8505762,0.3715845,0.07032048,0.47095415,-0.26917884,0.03647155,0.3284458,-0.27444044,0.055686682,0.009381688,-0.0945032,-0.47548744,-0.41433716,-0.5194843,-0.7105157,0.31638166,1.09706,-0.2686728,-0.1326586,0.19142376,-0.42714718,-0.064941466,0.021842234,0.22424908,-0.20602004,0.14352871,0.08131592,-0.80723876,0.45157555,-0.15625098,0.11932522,-0.56072986,0.18889253,0.68215084,-0.30930066,0.85237366,0.43654218,0.20632608,-0.25275484,-0.7394096,-0.3298962,0.19959152,-0.13060534,0.6028907,0.43263766,-0.49750885,0.3408883,0.007590629,-0.43175793,-0.5841827,0.31049842,-0.13935284,-0.18555987,0.1684152,0.59808844,0.15070756,-0.31798267,0.071159415,0.45041433,-0.4029713,0.34152594,0.14950554,0.020015307,0.4969869,0.004899651,-0.24277788,-0.66508716,-0.036841493,-0.5448572,-0.25049153,0.18929864,-0.07399386,-0.04187287,0.12428907,0.18291223,0.36233744,-0.34510708,0.22024648,-0.039016563,-0.4801898,0.4522977,0.51790875,0.6324353,-0.4799229,0.5564038,0.12563725,0.098871835,0.043151367,0.17852479,0.6081845,0.3112732,0.38890287,-0.28139573,0.047930717,-0.026243383,0.5845464,0.20386581,0.20881586,0.014695813,-0.32824543,0.25391653,0.033546362,0.1709286,-0.14149828,-0.42918172,-0.10523111,-0.13254988,0.17275934,0.4829122,0.16725564,0.39407,0.010764927,-0.1760859,0.27121827,0.12022676,-0.052322205,-1.3726257,0.5825529,0.12364795,0.9477329,0.3194231,0.16433425,-0.21283542,0.6640886,-0.103441395,0.14025983,0.50073373,-0.13432278,-0.50144196,0.5640616,-0.47708428,0.6048948,-0.1348201,-0.026772305,0.21712475,0.2835184,0.39764795,0.665956,-0.1801923,-0.021169422,-0.052449387,-0.34733987,-0.017771035,-0.45800352,0.32337868,-0.47451666,-0.54076654,0.44550967,0.5410479,0.29468516,-0.3018837,0.039697584,0.08244082,-0.18106647,0.06932944,-0.26315695,-0.13501324,-0.08535049,-0.6883676,-0.20651035,0.39072895,-0.21186268,-0.07731557,0.06773987,0.054109853,0.18308187,-0.19061291,-0.12193682,-0.032471187,-0.6458845,0.08784202,-0.35867247,-0.72267026,0.42167512,-0.5617762,0.1310633,0.1540613,0.11008229,-0.28435078,0.40267882,0.10081089,0.9900481,-0.16456458,-0.16205217,-0.26785526,-0.11848461,0.16003634,-0.25603446,0.16051982,-0.31142744,0.21232867,-0.41081214,0.50435764,-0.28495336,-0.31622675,-0.060369197,-0.23858654,-0.021183357,0.47793365,-0.1730737,-0.17991751,0.042858228,-0.23968256,-0.32080022,-0.16663031,-0.47663736,0.3473704,-0.07474247,0.051204022,-0.11893668,-0.30698526,-0.10376456,0.1284317,-0.025266623,0.12003255,0.47180283,-0.07699987,-0.26737246,0.23953198,0.10873547,0.5141467,0.2959142,0.0053162673,-0.42698756,-0.27083167,-0.41585281,0.43167067,-0.18722439,0.17545967,0.13671641,-0.2709722,0.74895364,-0.051631987,1.1973726,-0.041496236,-0.45023355,-0.06904158,0.5093496,-0.059197236,-2.6357671e-05,-0.25351042,0.99993426,0.6469098,-0.025616655,0.012728766,-0.52843493,0.032733403,0.38635513,-0.37904787,-0.21678329,-0.12633795,-0.7445362,-0.1894098,0.23411442,0.12039632,0.08660423,-0.17792933,-0.3331846,0.06461694,0.40658128,0.16193382,-0.54396087,-0.014176737,0.2622292,0.33510184,-0.0019185245,0.106835164,-0.42149398,0.38375282,-0.8706186,0.37535524,-0.4498237,0.14335833,-0.4232006,-0.39376244,0.14984863,-0.110469855,0.48022866,-0.2846162,-0.270081,-0.2503136,0.5724029,0.289512,0.1978784,0.6907306,-0.20625119,-0.19337375,0.073751934,0.5991464,1.254609,-0.2299118,0.024480745,0.24918015,-0.44692507,-0.8312556,0.07018789,-0.47612265,-0.12209249,-0.17804147,-0.42759454,-0.45811093,0.1322956,-0.0102491975,-0.054906204,-0.08590606,-0.47225142,-0.20792882,0.21149512,-0.2899816,-0.2645003,-0.34893215,0.17111988,0.62799686,-0.14422582,-0.3926467,0.051302265,0.41895998,-0.24362199,-0.60237217,0.25497904,-0.20043059,0.40928492,0.031067938,-0.4189254,-0.20099688,0.18265946,-0.47601888,0.3428775,0.2225967,-0.3702742,0.047229648,0.024482826,0.051165204,1.0205176,0.089435376,0.31851855,-0.6080115,-0.5248552,-0.83573526,-0.49324524,-0.026153306,0.08012241,-0.32835296,-0.6159475,-0.13545339,-0.2947629,0.14095713,-0.026536876,-0.46547535,0.206738,0.1181973,0.5700167,-0.28586343,-0.7720472,0.0028159935,0.3016025,-0.040957402,-0.40232858,0.35516056,-0.12874503,0.8711748,0.09082528,-0.017022401,0.037951294,-0.7016503,0.35314706,-0.24656248,-0.27761635,-0.49138948,0.24442486,800 -889,0.57593626,-0.2969056,-0.3204511,-0.1750253,0.036240768,0.12829447,-0.111823596,0.59001493,0.4278498,-0.49875712,-0.16213931,-0.16444731,0.09974986,0.254851,-0.17967589,-0.6653155,0.0430893,0.08389237,-0.2873309,0.43124557,-0.63752085,0.12635282,-0.08112318,0.51725805,-0.018527979,0.09890362,0.18288745,-0.04424146,-0.13064332,-0.2166065,-0.21267943,0.33263716,-0.47456005,-0.0059300563,-0.24908046,-0.48844847,0.049086113,-0.5586955,-0.47763905,-0.7869015,0.4061626,-1.1188005,0.58808744,0.1705393,-0.22997569,0.4913105,-0.14137626,0.053529512,-0.15345049,0.02129054,-0.044583272,-0.22667117,0.10759872,-0.35557452,-0.20056134,-0.2910103,-0.55516833,0.09633401,-0.41609946,-0.15973376,-0.30615553,0.020961607,-0.39817682,-0.04630923,0.008782119,0.4814655,-0.40813276,-0.13189441,0.18242109,-0.15590718,0.37364855,-0.4700502,-0.24907015,-0.059707303,0.20798707,-0.28814772,-0.32061625,0.19687754,0.37037277,0.58789825,-0.04392918,-0.23912255,-0.37570342,0.1569126,0.040622007,0.52166355,-0.26198325,-1.0626062,-0.2798012,0.061655283,0.29645982,0.31827208,0.09630852,-0.047050875,-0.06709996,0.098129295,-0.24637093,0.74002343,0.6634473,-0.5249875,-0.26582086,0.263639,0.49295947,0.053151965,-0.084617965,0.01672242,0.052217644,-0.600429,-0.11146673,0.09481368,-0.21637072,0.672348,-0.25310186,0.36286703,0.6822779,-0.33215442,0.03084293,0.13534386,-0.008821438,-0.23973267,-0.31186515,-0.16216822,0.3786489,-0.46867666,0.034423616,-0.34618893,0.8582842,0.08699135,-0.75988144,0.33956516,-0.5251337,0.10158511,-0.15858927,0.67355114,0.5309176,0.41619897,0.54251367,0.7158677,-0.5937765,-0.04264954,-0.09979832,-0.39592287,-0.0742216,-0.19738571,0.05882393,-0.48644248,0.028829262,0.15689087,0.003546983,0.22062235,0.33083373,-0.57181126,-0.054911975,0.18073519,0.8922948,-0.2633866,-0.064397275,0.9344329,1.1705785,0.93392366,-0.02264676,1.2459292,0.3526419,-0.3210237,0.18695207,-0.14175424,-0.8333282,0.35843745,0.3081266,0.077189304,0.4206784,0.09616989,-0.045047294,0.23457499,-0.49401188,-0.14543451,-0.19111003,0.21857081,0.1325946,-0.13238318,-0.4596534,-0.05937411,-0.16501614,-0.10516816,0.24024145,0.19302581,-0.13685405,0.570887,-0.037961114,1.2038409,-0.01760836,-0.01458669,-0.12632465,0.53508013,0.1737023,0.21908599,-0.053151857,0.34385416,0.27246,0.2437361,-0.5807889,-0.021817923,-0.2327231,-0.45476758,-0.10154724,-0.2803401,-0.01996093,-0.048776284,-0.34471324,-0.17157145,-0.22893052,-0.23192392,0.39131466,-2.8378506,-0.3147157,0.06257829,0.36773324,-0.2487061,-0.29344016,-0.104196705,-0.4740089,0.50408256,0.43091226,0.53265464,-0.9379708,0.2919123,0.3915038,-0.49317536,-0.16218053,-0.6718653,-0.11339596,-0.050546512,0.46576074,0.11259543,-0.1612543,0.17358053,0.116547726,0.663374,0.20002262,0.06296388,0.19180696,0.7257119,-0.022307292,0.30582678,-0.0887543,0.5787435,-0.34577504,-0.21761286,0.30703956,-0.4512352,0.23561831,-0.16371143,0.16526617,0.49713764,-0.40968242,-0.9357999,-0.7013092,-0.10988519,1.1640472,0.036363255,-0.6394181,0.07562941,-0.3138046,-0.25811836,-0.18656528,0.46263206,-0.21529932,-0.0747298,-0.74274725,-0.0076992265,-0.11884428,0.018772563,-0.005220353,0.06052963,-0.37343374,0.7634737,-0.080996014,0.19140284,0.33420202,0.18237592,-0.40176025,-0.71337813,-0.020473251,0.89627147,0.28377166,0.3186761,-0.3234698,-0.11645617,-0.31767264,0.029777413,0.078954816,0.60078114,0.75925404,-0.07993743,-0.02572532,0.34388304,0.07852396,-0.06666348,-0.17131615,-0.3185161,-0.24346597,-0.12838715,0.7357702,0.76348567,-0.39102748,0.4229585,0.04436953,0.15951502,-0.26321718,-0.2507622,0.68454266,0.79845524,-0.091896065,-0.2687878,0.5645241,0.48483744,-0.38923967,0.38686025,-0.6341712,-0.44813862,0.3751196,-0.2100659,-0.4738861,0.22400886,-0.2984002,0.15678784,-0.92588335,0.34348503,-0.17985038,-0.42585054,-0.73804545,-0.034436733,-3.5352447,0.30981994,-0.29071054,-0.17661335,-0.24147336,-0.09186206,0.12126201,-0.4946929,-0.5297413,0.1946197,0.06115945,0.6610511,-0.08504236,0.23487616,-0.24291837,-0.1656696,-0.3151911,0.03834791,0.16722609,0.28554347,0.10441092,-0.34379187,0.038303643,-0.058766708,-0.460573,0.1966846,-0.485711,-0.4575574,-0.027454684,-0.46778992,-0.30622587,0.67574805,-0.25930613,0.062284257,-0.3356615,0.086164914,-0.11570228,0.4728533,0.0033702422,0.007085947,-0.04187877,-0.072899126,0.14536922,-0.21827863,0.38150212,-0.012431562,0.27370852,0.47597012,-0.3349564,0.060551625,0.5053961,0.7253688,0.060516506,0.84396607,0.3246822,-0.046258938,0.33996007,-0.18023454,-0.27592856,-0.5833195,-0.40705994,0.0923078,-0.49665514,-0.4459519,-0.08711285,-0.47371888,-0.7577717,0.57224756,0.0031454563,0.3138375,0.10823276,0.6942508,0.7367391,-0.18336427,0.11211777,0.056146245,-0.13578154,-0.48101103,-0.1764955,-0.56019014,-0.5032356,0.017450958,0.5992921,-0.18563877,-0.032414358,0.15208732,-0.13011418,-0.075566255,0.012120527,-0.0529583,0.077197336,0.27786037,-0.12829995,-0.75246555,0.45361337,-0.08612842,-0.28786492,-0.66348016,0.08155557,0.64341575,-0.69825345,0.55672187,0.5932841,0.01576575,-0.08378675,-0.46187124,-0.1702249,-0.09626184,-0.1855235,0.39398465,0.23764636,-0.7685378,0.57027054,0.47470567,-0.186563,-0.6572191,0.46447897,0.11471543,-0.41483817,-0.07363975,0.32103375,0.35238984,0.064893775,-0.17024,0.19421513,-0.586065,0.2504926,0.06380627,0.0346656,0.40539023,-0.029999927,-0.32166156,-0.8207447,-0.1554765,-0.69746524,-0.18796746,0.23209089,0.16899312,0.1410046,0.134552,0.009887199,0.4227679,-0.4150088,0.06843009,-0.06384576,-0.35646746,0.33076867,0.39400157,0.41651675,-0.36180314,0.6436156,0.09771872,-0.09714768,-0.010579243,0.025375372,0.54712933,0.078309,0.39322248,0.26550013,-0.27156717,0.26203874,0.80835444,0.20864911,0.48829687,0.18112266,-0.029346826,0.47173905,0.24593405,0.34243092,-0.023928126,-0.5658731,0.018269897,-0.3088652,0.12635423,0.40477014,0.082554825,0.28395626,-0.045263927,-0.32655582,-0.08097593,0.21281189,0.10915946,-1.3118175,0.18066593,0.16364262,0.83532286,0.22048242,-0.18507688,0.18994431,0.5568249,-0.055499244,0.10278676,0.40206948,0.008588341,-0.5420099,0.6165192,-0.6868682,0.29618442,-0.27042606,0.057898726,-0.05425213,0.06393171,0.39764047,0.63436306,-0.11654634,-0.011845805,-0.16034792,-0.2998447,0.14401054,-0.5316579,0.19288413,-0.53431964,-0.010911405,0.66025585,0.5406407,0.26749313,-0.15785976,0.027975475,0.09634856,-0.0034956213,0.09481908,0.024202505,0.08285003,-0.28565094,-0.8262375,-0.06787903,0.46925518,0.48321256,0.26172987,-0.19253194,-0.11624948,0.3279873,-0.18467446,-0.29966745,-0.13096996,-0.62757576,0.07110909,-0.29853252,-0.5978182,0.55320925,-0.053229555,0.30468455,0.3565495,0.16825087,-0.22143488,-0.007896532,0.1781439,0.7269849,0.05565405,-0.25402775,-0.5371445,0.14249486,0.32617137,-0.2560691,-0.15339303,-0.071147665,0.0012441576,-0.38193655,0.48472747,-0.15667473,-0.3307887,0.11822743,-0.12767293,0.10948617,0.6057376,-0.27740303,-0.09872263,0.0322765,-0.2816003,-0.38234493,-0.12854385,-0.08905417,0.3660663,0.31739444,-0.20361187,-0.14341773,-0.18521278,-0.36720476,0.42582312,0.09126226,0.23848243,0.2982182,0.14906757,-0.2138592,-0.12643468,0.16469854,0.6522509,-0.065429024,-0.24689175,-0.34503475,-0.49497175,-0.33507606,0.044973552,0.057451755,0.24010773,0.0861117,-0.3064337,0.7619299,0.02619666,1.0142117,0.14213644,-0.442976,0.011425242,0.6015365,0.028321764,-0.022802254,-0.49260926,0.971499,0.5678701,-0.25991264,-0.06670258,-0.3689684,0.1426623,0.27479395,-0.17410721,-0.16234228,-0.006575376,-0.6221055,-0.24711154,0.49465832,0.269913,0.26301304,-0.07371167,0.16370836,0.22589503,-0.01579362,0.3648746,-0.56599134,-0.24525507,0.25731203,0.26062647,0.048981164,0.06610412,-0.22996104,0.28919446,-0.53311974,0.064720765,-0.52981776,0.06822625,-0.22704048,-0.29520288,0.31547055,0.008536349,0.33689448,-0.32993153,-0.5434771,-0.0800432,0.28542435,0.1867897,0.09990717,0.42762855,-0.12619077,-0.084819905,0.023601705,0.49774852,1.3026434,-0.08342367,0.06716866,0.46632633,-0.14983444,-0.720753,0.5403672,-0.32485297,0.3505435,-0.06547972,-0.077087685,-0.5369289,0.34098402,0.3980606,0.16368474,0.0057533034,-0.57798076,-0.24703753,0.33274266,-0.32407483,-0.268797,-0.3412163,0.0152412355,0.6687022,-0.19098704,-0.26720446,0.08369067,0.40474162,-0.27075967,-0.68099564,-0.037891056,-0.43527094,0.31224778,0.11196548,-0.2110284,0.09775122,-0.07942372,-0.51414776,0.16567378,0.12859702,-0.40999642,0.031017438,-0.39076805,-0.0013130397,1.0062352,-0.3211134,0.3080763,-0.68505836,-0.3552872,-0.857842,-0.33950153,0.45149365,0.075344086,0.075579636,-0.62584776,-0.01905101,0.01931238,-0.26743212,-0.058232903,-0.3860518,0.5447168,0.15020812,0.54324275,-0.015988236,-0.64810574,0.15397593,0.11507997,-0.360325,-0.6107417,0.55740887,0.061558414,0.73441917,0.047404993,0.13935657,0.4835697,-0.5566581,-0.099327415,-0.2720812,-0.28424776,-0.73965335,0.10860226,801 -890,0.20315836,-0.398681,-0.5301761,-0.09140255,-0.23366226,-0.036314227,-0.3196697,0.14123617,0.26102844,-0.29815128,-0.0016279022,0.14969198,0.24205256,0.4796815,-0.11951847,-0.8276277,-0.018932616,0.20132421,-0.69522077,0.4347638,-0.7100416,0.13606109,0.009028311,0.39765486,-0.018413603,0.5178933,0.34049365,-0.08443371,-0.06997439,-0.0026374657,0.0681973,0.40267408,-0.4035039,0.15125151,-0.020285957,-0.36159548,0.07943177,-0.23960514,-0.2220877,-0.74006486,0.16663992,-1.076283,0.42671785,-0.02390792,-0.18276317,-0.14268193,0.3323195,0.5130963,-0.46667066,-0.005221758,0.21935081,-0.28841084,-0.24970531,-0.48215207,0.14918312,-0.39684054,-0.33165285,-0.037861835,-0.66969186,-0.47210646,-0.27840766,0.24903102,-0.3765645,-0.15183498,-0.1919933,0.37884912,-0.52889663,-0.15997152,0.55731463,-0.30077162,0.4621466,-0.5606205,0.022820583,0.017447745,0.54027486,0.08371484,-0.29311332,0.36606476,0.4775939,0.43070593,0.38040614,-0.38425767,-0.3236164,-0.2382325,0.4326752,0.40311155,-0.25207275,-0.38981226,-0.19333057,-0.058258638,0.102482624,0.31991553,0.027065398,-0.29202214,0.059933003,0.042574733,-0.16826923,0.567475,0.5665164,-0.23201776,-0.3815913,0.19248776,0.6606683,0.12717433,-0.30381846,-0.015261625,0.09470892,-0.43198323,-0.15818469,0.15195034,0.01599953,0.5456817,-0.23786771,0.18660723,0.9420817,-0.18986695,-0.046142265,-0.03399225,0.07206565,-0.36020687,-0.5119303,-0.090705246,0.16318972,-0.6941317,-0.026596397,-0.36692455,0.73377794,0.13053481,-0.60965276,0.4648458,-0.34288883,0.107297145,-0.11565406,0.73736,0.6945782,0.37931374,0.29395092,0.90500426,-0.30856088,0.14669245,-0.17146957,-0.597277,0.14061613,-0.29372132,0.33999,-0.44833913,0.19717652,-0.12990582,0.32656872,-0.04193263,0.36886528,-0.5032528,-0.070827916,0.20104897,0.8139262,-0.4130039,-0.001740242,0.6794502,1.1820148,0.91733664,0.13934243,1.2687746,0.30045047,-0.21968587,0.12278745,-0.33190903,-0.600029,0.19420594,0.4396441,0.54452896,0.14550425,-0.115929544,0.05344983,0.6218832,-0.41148424,0.081490606,-0.20817892,0.46787667,0.0968667,-0.19059102,-0.4926827,-0.017678177,0.060976934,-0.16482185,0.15371597,0.17042024,-0.17691767,0.43169105,-0.24015158,1.190308,-0.26380154,0.15925848,-0.111086346,0.6013584,0.18501697,-0.11101138,0.18481661,0.29167736,0.43230036,-0.09708885,-0.6591167,0.22349347,-0.36678544,-0.54870087,-0.08843836,-0.514641,-0.030134851,-0.025460431,-0.4496819,-0.11529239,0.046062738,-0.24893336,0.3243598,-2.8362865,-0.35983905,-0.17338724,0.30587384,-0.38229597,-0.06922925,-0.008417095,-0.5326678,0.38219285,0.27436182,0.56550556,-0.58779573,0.55630374,0.4866222,-0.53518385,-0.12734507,-0.6785679,0.027995596,-0.23542994,0.55540204,0.16317584,-0.2005045,-0.12953018,0.11198417,0.82917136,-0.057633057,0.2911974,0.46016216,0.23718084,-0.08504035,0.60105735,-0.061285272,0.6329361,-0.503399,-0.3008469,0.26163408,-0.35066092,0.29551002,-0.3875004,0.07170565,0.66536194,-0.3617232,-1.0031418,-0.7502293,-0.40687284,0.94126815,-0.47601476,-0.57705855,0.24081217,-0.18024778,-0.090307094,0.13531601,0.6208657,0.036025107,0.33911586,-0.70633674,0.22985594,-0.20893836,0.04919159,0.07336923,-0.08992052,-0.40524063,0.7896593,-0.075155415,0.48581526,0.20271046,0.26403314,-0.28576496,-0.20098083,0.044015024,0.74722046,0.16752023,-0.10249246,-0.05547018,-0.35181355,0.064915545,-0.24942751,-0.008292645,0.60712767,0.71224165,-0.028302943,0.16320463,0.21152325,-0.17665333,-0.07833032,-0.18748403,-0.39706847,-0.10716329,0.2885064,0.48628584,0.65487677,-0.07291215,0.38828743,-0.2712288,0.31900674,-0.08052058,-0.6718569,0.7177003,0.4619471,-0.120622136,-0.098733045,0.6323982,0.62648696,-0.5528219,0.59744173,-0.61997706,-0.21176362,0.62155944,-0.2885784,-0.36740223,-0.08611927,-0.23595679,0.089756735,-0.82993555,0.21879362,-0.5040991,-0.6511765,-0.34188363,-0.26689103,-4.155355,0.26235476,-0.1907677,-0.10614985,-0.29443967,-0.03851105,0.3659539,-0.58160573,-0.40442142,0.1697501,0.1516583,0.6537854,-0.05170709,-0.037297275,-0.3175913,-0.053850252,0.15413809,0.30292138,0.052884746,0.17497091,-0.2398657,-0.49480155,0.00037903586,-0.0023902704,-0.54222566,0.20897134,-0.64961046,-0.43567705,-0.13214491,-0.5838784,-0.38829994,0.5639634,-0.36095762,0.045951914,-0.25149885,0.18580116,-0.32669604,0.42883858,0.040610116,0.32702318,0.28847432,-0.1383485,0.072166316,-0.36981878,0.38961634,-0.05540819,0.3376267,0.14901145,-0.15110192,0.027001759,0.56248695,0.6529014,-0.08237891,1.190756,0.42014727,-0.13935958,0.2492067,-0.31108776,-0.24602608,-0.70485544,-0.52608293,-0.15008882,-0.456043,-0.56640893,0.09573565,-0.32222435,-0.7759835,0.79357356,0.24615467,0.46276072,-0.014201477,0.23169231,0.31438702,-0.13094269,-0.13383617,-0.09492394,-0.16358382,-0.62571055,-0.2908944,-0.6951609,-0.6111803,-0.015926406,0.49249077,-0.4256045,0.045119897,-0.15122287,-0.2662144,-0.11291233,0.34829715,0.03827257,0.22801025,0.530533,-0.026660493,-0.6453097,0.41689047,0.05064779,-0.049886625,-0.6379506,0.14106111,0.65484357,-0.7739157,0.84616584,0.35794342,0.16166174,-0.010275844,-0.37825218,-0.375518,-0.026554614,-0.18969285,0.58151954,0.22748804,-0.9668376,0.6285708,0.36776614,-0.47939453,-0.78203917,0.24816014,-0.17940052,-0.068688236,-0.074819244,0.29724893,0.08321511,0.025264012,-0.2284125,0.09638986,-0.6582787,0.22443353,0.18388559,-0.03667137,0.62808716,-0.16406485,-0.42522678,-0.8163678,-0.28995094,-0.6816941,-0.077679195,0.27276847,-0.180079,-0.15287001,0.34637538,0.11241489,0.33482578,-0.2526149,0.075476855,0.07743479,-0.47114527,0.20327835,0.57485455,0.22089426,-0.47720632,0.5557437,0.28290638,-0.16296245,-0.12345015,0.012533595,0.42014083,0.2017969,0.62886,-0.32299426,-0.06985397,0.3090251,1.0376836,0.036745906,0.6837,0.08034045,-0.15863785,0.37878156,0.004240366,0.20897491,0.050895225,-0.45145562,0.17907685,-0.17957635,0.15652697,0.49263167,0.44850114,0.48392987,0.31986874,-0.34110323,-0.05345364,0.31396446,0.053090822,-1.2491679,0.6218174,0.40368858,0.885341,0.46701476,0.10924896,-0.2901127,0.79048157,-0.3057743,0.049754616,0.36654723,-0.2682493,-0.41643927,1.006143,-0.8018016,0.291104,-0.14535254,-0.032314364,0.059876386,0.16383563,0.31968668,0.8089046,-0.07101382,0.13229513,-0.060089517,-0.21341504,0.07792335,-0.29771364,0.015033356,-0.2563642,-0.38977012,0.6294399,0.54186267,0.5551064,-0.15845238,-0.12331884,0.13104245,-0.11440629,0.23419957,-0.14266038,-0.05742379,0.12549762,-0.6103332,-0.2606363,0.5916235,0.30160403,0.33417952,-0.20355952,-0.2887747,0.24512112,-0.2089303,-0.2095453,-0.09919257,-0.57907873,0.1230581,-0.19994374,-0.6496894,0.6599213,-0.39737022,0.19684005,0.20207779,0.028582647,-0.07174151,0.2565836,-0.10571548,0.8367335,0.069746934,-0.30234483,-0.38820267,-0.14168875,0.25141206,-0.33725533,0.090754956,-0.474766,0.003981938,-0.40791455,0.6659271,-0.22371526,-0.4948078,0.3493257,-0.24413598,-0.11566875,0.5723845,-0.12518506,-0.16039571,0.2005074,-0.17447424,-0.4564325,-0.19263804,-0.32070494,0.29457274,0.077373445,0.22914921,-0.17188942,-0.24936716,-0.077992,0.7160632,0.08823005,0.36873415,0.18826587,0.0014489765,-0.1441347,0.09097745,0.32616603,0.5343907,0.095234714,0.11952692,-0.22575004,-0.39871153,-0.41170612,0.074742444,0.08293876,0.2663897,-0.02233319,-0.3260124,0.9825539,-0.07107352,1.1978463,0.2791504,-0.3495506,0.21633601,0.4853771,-0.08560433,0.14803804,-0.47966513,0.82617307,0.55403763,-0.09210541,0.053953737,-0.70741004,-0.16395468,0.39512137,-0.38264236,0.003184398,-0.15693222,-0.64115435,-0.5149099,0.39365926,0.2723096,0.25104034,-0.035921413,-0.02777937,-0.04537045,0.08689768,0.41742304,-0.84938574,-0.17085373,0.2288302,0.3761889,-0.10350595,0.064053856,-0.2398748,0.49107805,-0.71368957,0.24919951,-0.48751345,0.030889535,-0.3300512,-0.4127942,0.25113463,-0.12422084,0.4013995,-0.12381473,-0.41567993,-0.03791343,0.49158195,0.10163281,0.09862524,0.75800514,-0.17806798,-0.018908344,0.16464198,0.56142086,1.1103282,-0.6132426,0.029228164,0.31149253,-0.37407282,-0.65253323,0.4451449,-0.32858166,0.06333967,-0.031403054,-0.5574104,-0.48122028,0.1921824,0.21857113,0.047222476,0.07356667,-0.54163283,-0.20640314,0.34463063,-0.41054574,-0.22609647,-0.01539733,0.4663101,0.6276763,-0.31573954,-0.41982016,0.15834121,0.47922894,-0.32571757,-0.34692252,-0.07253563,-0.24021728,0.4497051,0.10377899,-0.47006047,0.01780559,0.1787606,-0.52398187,0.054957945,0.2479736,-0.29135093,0.16669111,-0.18166776,-0.010331161,0.8864155,-0.26363745,0.029392725,-0.80170727,-0.3632283,-0.9119808,-0.34675264,0.2374767,0.11275786,-0.022952214,-0.341491,0.12521599,-0.11912761,-0.1373143,0.12117505,-0.65822417,0.35503307,-0.043891832,0.63390666,-0.12514995,-0.8871894,0.23577763,0.33406296,0.08498194,-0.6797383,0.62109685,-0.42378986,0.9090951,0.006538227,0.0036351085,0.029653495,-0.3344225,0.11802218,-0.3903147,-0.27291283,-1.0219368,0.021097263,809 -891,0.4176611,-0.11601851,-0.86659795,-0.08379372,-0.14044361,0.16941978,-0.46953967,0.4054284,0.08056119,-0.5522943,-0.101920284,0.0985413,-0.071143605,0.21212576,-0.2627498,-0.44644955,0.15305223,0.3619802,-0.6134261,0.17709523,-0.5190786,0.28362918,0.017699208,0.24498445,0.05671573,-0.032281734,-0.076487154,-0.05159657,0.15253396,-0.5315526,0.19344819,0.17388208,-0.720341,0.2738464,-0.11073353,-0.5095288,-0.08973211,-0.34010267,-0.3646371,-0.86489064,0.37844792,-0.7662131,0.77709705,0.044104308,-0.22656071,0.12662086,0.066397004,0.27413455,-0.08459439,0.15419307,0.36070418,-0.25648254,-0.43197545,-0.28153765,-0.1172806,-0.1967386,-0.5507888,0.018312952,-0.45678055,0.11993313,-0.11182352,0.211752,-0.2707714,0.21474414,-0.3204365,0.44500646,-0.36829606,0.18486875,0.2327166,-0.007062619,0.14909406,-0.68840194,-0.10942737,-0.13342033,0.25475484,-0.20287102,-0.30360457,0.051118374,0.17445797,0.53495425,-0.14605607,-0.07541122,-0.15288064,-0.11155933,0.1987323,0.64735043,-0.16604756,-0.15623389,-0.10313934,-0.18823665,0.23086439,0.096260935,0.11085891,-0.32338008,-0.09495614,0.09077871,-0.4058497,0.5219795,0.513459,-0.34644032,0.09715251,0.29153106,0.5721533,0.28114298,-0.14831793,0.2614371,0.018279066,-0.6307846,-0.34231946,0.055076938,-0.09527934,0.26782408,-0.17401297,0.363933,0.49497762,-0.21403067,-0.33981562,0.30742803,0.1046646,0.063847154,-0.20617501,-0.54087824,0.41449073,-0.5184947,0.13792606,-0.2459362,0.8069703,0.06185103,-0.6763842,0.35562888,-0.75112957,-0.036517184,-0.13117087,0.741867,0.5404441,0.600504,0.100199394,0.7446187,-0.39991996,-0.023199616,-0.099507056,-0.22582002,0.019135406,-0.114586495,-0.042413633,-0.1648972,-0.06820733,-0.10890675,0.013886929,0.015447098,0.69462126,-0.41409096,-0.14656909,-0.07034797,0.575044,-0.42176542,0.11613915,0.71557707,1.170251,1.2103513,0.22553183,1.3273429,0.1316871,-0.2263201,-0.3200818,0.1575088,-0.9902516,0.3357519,0.26887885,0.028570652,0.24138536,0.15637377,-0.23590523,0.5030332,-0.40071368,-0.12597318,0.047178995,0.32490477,-0.11743891,-0.24133213,-0.3011395,-0.17104006,0.14355803,0.032523353,0.13607447,0.19752447,-0.3595904,0.17755969,0.36844477,1.0896981,-0.3475,0.12793113,0.08311231,0.14119922,0.18041961,-0.16100122,-0.084381185,0.17950858,0.46158782,0.00026952228,-0.57731277,-0.07967938,0.005667433,-0.31137124,-0.27503526,-0.09857616,-0.28884026,-0.16368553,-0.36229467,-0.30929807,-0.06332978,-0.2957174,0.2242089,-2.3503723,-0.17532055,0.062972486,0.3645376,0.019941092,-0.44473687,-0.2313058,-0.47390655,0.34382996,0.17512941,0.38715148,-0.518133,0.72559696,0.4826455,-0.44001222,-0.14056563,-0.6695824,-0.21558382,-0.03312303,0.019094542,-0.026027521,-0.062412303,-0.19195934,0.021325817,0.43702447,-0.27763337,0.1628471,0.40147164,0.37679625,-0.017255185,0.45617804,0.01846615,0.595668,-0.52358717,-0.12761217,0.34748587,-0.39842018,0.14838378,-0.20091052,0.19742781,0.37312928,-0.4900104,-0.7891035,-0.6598025,-0.048482448,1.3622926,-0.39032555,-0.3673326,0.2521126,-0.46945056,-0.45135078,-0.06562934,0.3475615,-0.26676047,0.00056215125,-0.8113062,-0.11450075,-0.18677904,0.3714613,-0.058032636,-0.020988027,-0.5232033,0.5860262,-0.07130287,0.65649164,0.4052268,-0.022261783,-0.19999842,-0.26613498,0.09515003,1.106887,0.36900035,0.21582492,-0.36725703,-0.13162605,-0.3709589,0.085834794,-0.1753952,0.6109628,0.7170112,-0.0367634,0.22378814,0.12857227,0.08947461,0.15215704,-0.28047654,-0.4124737,-0.0136935,-0.12152618,0.65151054,0.44663358,-0.08965016,0.14364825,0.0045608506,0.33920792,-0.376793,-0.4209236,0.2388587,0.8923049,-0.10238271,-0.4720846,0.7500662,0.47539267,-0.22729301,0.53170687,-0.5119522,-0.45695338,0.3211541,-0.12188842,-0.33105913,0.32324818,-0.4742116,0.20640416,-0.72919697,0.41332516,-0.4752206,-0.6339528,-0.26764312,-0.26655236,-2.7806098,0.290763,-0.23776639,-0.050140534,-0.280122,-0.1252628,0.38968587,-0.2451915,-0.7822284,0.009754022,0.1715798,0.62895846,-0.1802148,0.06269646,-0.06598579,-0.29882595,-0.37319672,0.24585575,0.114448644,0.21887429,0.010988511,-0.32011268,-0.059680343,-0.26434326,-0.039324965,-0.13505913,-0.5791647,-0.26809424,0.1962375,-0.4327258,-0.43513632,0.66163945,-0.43999946,-0.01761131,-0.21095026,-0.051789314,-0.024838038,0.43837762,-0.15805823,0.23671083,-0.20454818,-0.14907348,-0.13035835,-0.18642151,0.19953157,-0.1198245,0.0026307367,0.28842542,-0.2031805,-0.03558928,0.2023594,0.84922314,-0.060653552,1.1404322,0.24315785,-0.1923157,0.30657396,-0.039045047,-0.41510525,-0.51975965,-0.040858265,0.10831186,-0.49893388,-0.19370358,0.021012524,-0.37832198,-0.8457608,0.5394103,0.04451376,-0.25167593,0.09264651,0.46526185,0.25268272,0.0042961114,-0.08803564,-0.16481255,-0.115839384,-0.33829442,-0.25416884,-0.7287863,-0.23371439,-0.3304986,1.2960407,-0.21922183,0.15284465,0.25682738,-0.05386855,0.113467835,0.37100697,0.09027463,0.13460754,0.60347974,-0.028566306,-0.60784096,0.26872122,-0.4399955,-0.21744715,-0.65743655,0.08749927,0.7885856,-0.76538676,0.502739,0.54213935,0.16455323,-0.20984338,-0.67270637,-0.13565718,0.04649651,-0.28006077,0.6102432,0.37086344,-0.8323202,0.48272905,0.45116803,-0.2253934,-0.726458,0.48812413,-0.10513351,-0.13800395,-0.10424315,0.45866132,-0.18944304,0.10443747,-0.091593884,0.09952682,-0.28391677,0.42194185,0.013382892,-0.16879152,0.0019682248,-0.31194946,-0.034477353,-0.68157864,-0.014522503,-0.5594066,-0.1408147,0.093950905,-0.15975048,0.21690618,0.3285812,0.051474255,0.5494199,-0.29978657,0.09975786,-0.21380584,-0.39515278,0.42548907,0.49867535,0.3080038,-0.26429626,0.75822353,0.03687766,-0.19975595,-0.2855924,0.24730246,0.4780996,-0.15883298,0.5136049,0.077501304,0.028688716,0.32307693,1.0186427,0.18085784,0.49040103,0.12602784,0.036941003,-0.045310926,0.13584574,0.21089184,0.18961982,-0.5746048,-0.13127555,-0.108911216,0.20925017,0.7395849,0.07415542,0.48847497,-0.19351403,-0.22719587,-0.07016575,0.22176236,-0.019867728,-1.3296167,0.5248306,-0.008561085,0.76182747,0.49787697,0.023735056,0.22533052,0.3178225,-0.07140994,0.100981474,0.16719663,0.24435174,-0.3825809,0.527618,-0.63312405,0.33452368,-0.2706112,0.042977143,0.22227617,-0.22080566,0.6147005,0.7760883,0.044590484,0.07948463,0.09169605,-0.1533831,0.12030085,-0.45626092,-0.014584561,-0.44000635,-0.16131864,0.83922356,0.5688552,0.49486542,-0.36926198,0.06543977,0.17584914,-0.045043975,-0.0010396689,0.009431083,-0.02925242,-0.18404348,-0.62035125,-0.029955199,0.69577974,0.15681438,-0.09146631,0.07770106,-0.3705252,0.392306,-0.04218642,0.21098553,-0.2314992,-0.6184508,-0.14881812,-0.5480272,-0.5952555,-0.01909755,0.024016859,0.017774245,0.3591708,0.080658555,-0.3179354,0.3263069,0.12023904,0.61524934,0.11698715,0.04643308,-0.22771437,0.37918004,0.2648023,-0.108785875,-0.14540042,-0.417014,0.2920141,-0.6605045,0.3816023,-0.1341532,-0.27243996,0.2998759,0.113548756,-0.059726607,0.60820323,-0.28121912,-0.1187117,0.2501412,-0.1544876,-0.1371973,-0.43997216,-0.3372338,0.0135407895,0.23918867,0.0065027275,-0.19288476,-0.046119273,-0.15296704,0.16143519,0.089502834,0.31633338,0.5102058,0.25644508,-0.3672866,-0.1654022,-0.075153165,0.80716157,-0.16230239,-0.23151976,-0.4246051,-0.54851454,-0.16702987,0.68468875,-0.022433504,0.2262456,0.17240848,-0.22760844,0.7630305,0.25207946,0.8126629,0.129128,-0.24505003,0.06370693,0.60935545,-0.048120916,-0.22670561,-0.44898546,0.8615317,0.38507238,-0.281359,-0.104669325,-0.2935364,-0.19127351,-0.13449307,-0.28515586,-0.21166505,-0.10337681,-0.61811477,0.08326202,0.15608712,0.3606442,-0.06466159,-0.15193485,0.2861797,0.47822723,0.013918181,0.0010763481,-0.6079818,0.05681543,0.29778305,0.1466174,-0.121129744,0.047716975,-0.32622615,0.24443607,-0.63452864,-0.14592545,-0.2401669,0.02650351,-0.039687645,-0.3194324,0.16651799,0.14999884,0.139214,-0.49440527,-0.06555744,-0.08881005,0.24501748,0.14284788,0.29787496,0.74994606,-0.2726299,0.037409544,0.0441308,0.5801568,0.7983732,-0.16750203,0.061992835,0.3880075,-0.46805525,-0.5553525,0.14035578,-0.46446314,-0.05247717,0.0661555,-0.20961118,-0.47149742,0.3482838,0.21335496,-0.08239124,0.1822521,-0.8691883,-0.1445339,0.31108722,-0.15624534,-0.17395101,-0.15583353,-0.002948622,0.6573185,-0.21992816,-0.32715768,-0.060872566,0.34709117,-0.2807694,-0.53162533,0.0891185,-0.42712608,0.3013533,0.20429713,-0.07879121,-0.103817016,0.03672063,-0.5496916,0.07422495,0.20443374,-0.14715616,-0.03303009,-0.4873352,0.076935746,0.63058186,-0.307669,-0.036016703,-0.29226172,-0.7014635,-0.8317768,-0.025666356,0.20589466,0.16868065,0.06174152,-0.62630874,-0.1313018,-0.21749713,-0.14509635,-0.032458894,-0.27743602,0.58403826,0.07660024,0.49018195,-0.05184227,-0.8539416,0.20372403,0.121097304,-0.44031087,-0.32077882,0.50878435,-0.0068698623,0.7176013,0.13956448,0.13533203,0.128584,-0.6923926,0.28541324,-0.19646478,0.009620622,-0.889846,-0.061795946,814 -892,0.3109862,-0.002392888,-0.471386,-0.18875723,-0.1317261,-0.109850265,0.13750905,0.47171685,0.3425533,0.15049928,-0.16923542,-0.017914439,-0.051596776,0.57346183,-0.13906388,-0.8530466,-0.09407631,0.1403677,-0.65225315,0.5610188,-0.39651987,0.325464,-0.10289347,0.51068074,0.29056624,0.27086797,0.19667298,-0.042618286,0.05545118,0.12621559,-0.27917907,0.37516046,-0.580705,0.2054054,0.013713419,-0.22563134,-0.060457766,-0.36515045,-0.3521496,-0.74293804,0.50518686,-0.64855236,0.6507111,-0.11166135,-0.3583062,0.10334525,0.06881696,0.3304097,-0.55048686,-0.14267443,0.0052767894,-0.021715418,0.053105336,0.092742324,-0.2064529,-0.28169215,-0.6171176,-0.07151427,-0.48850223,-0.10084804,-0.2911233,0.15167524,-0.35912633,-0.12036812,-0.09677843,0.47382703,-0.4249598,0.20415513,0.2944593,-0.146907,0.1083023,-0.4183012,-0.11632424,-0.07914283,0.2643863,0.10317635,-0.31036064,0.44058552,0.41902518,0.35755086,0.06311491,-0.13406645,-0.10661196,0.045580838,-0.050151944,0.49815974,-0.11801069,-0.41048327,-0.20876312,0.09552428,0.23434855,0.29956487,0.07873074,-0.40557063,-0.003501296,0.103958555,0.0073256493,0.24059756,0.48351085,-0.15063684,-0.33194438,0.5275199,0.2059058,0.28439102,-0.19885635,0.22238106,0.019768728,-0.5063519,-0.22659881,0.019638628,-0.13153061,0.6067217,-0.077098586,0.23012221,0.82029176,-0.11650894,0.09696471,-0.1413492,0.069919825,-0.25279352,-0.2640535,-0.12723123,0.16768897,-0.48249903,0.123465024,-0.10545371,0.82732147,0.21980505,-0.8229131,0.31116557,-0.50121266,0.22747149,-0.27003738,0.5773112,0.9385031,0.31042668,0.41799188,0.81041336,-0.5518299,0.032830656,0.27089262,-0.557862,0.24846365,-0.10500831,-0.112266995,-0.5375967,-0.19310898,0.18950486,-0.07923216,0.18396373,-0.02726014,-0.49340343,-0.15092817,-0.09999768,0.66371995,-0.39585093,-0.12925938,0.8420863,0.97346467,0.8550275,0.011979676,1.2952644,0.3013661,-0.1850167,0.36062106,-0.26977122,-0.70813876,0.079204366,0.27228236,-0.9060171,0.4465491,0.03181426,0.06855099,0.3579425,-0.2476749,-0.026553592,-0.014462195,0.17990701,-0.149779,-0.22106701,-0.3866664,-0.29568443,0.0648052,0.14062403,-0.046804547,0.35485777,-0.22553217,0.51110655,0.09231665,1.4686288,0.2683331,-0.029895253,-0.08200941,0.40107846,0.23172313,-0.2455128,-0.22958072,0.32170108,0.58985114,-0.05433101,-0.5837062,0.029132793,-0.37131763,-0.32491186,-0.13339297,-0.42057905,-0.049483176,0.022352358,-0.3290353,-0.17680086,-0.011606827,-0.2227938,0.4846309,-2.8741245,-0.16889167,-0.09255516,0.28110075,-0.20491998,-0.20570499,-0.28638896,-0.43353948,0.1665984,0.4023367,0.3561089,-0.7643514,0.1899214,0.27998394,-0.41563657,-0.1803929,-0.5750454,0.006850645,0.11922037,0.3291777,-0.19901021,0.007791785,-0.02097609,0.26932225,0.5157184,0.26531947,-0.0072530224,0.12963478,0.46570876,0.07278478,0.36750433,-0.028344588,0.58135617,-0.020314068,-0.071710296,0.25033987,-0.18417446,0.4698956,-0.10730215,0.122706205,0.44184133,-0.48259208,-0.88064,-0.42615283,-0.24963085,1.188696,-0.5811642,-0.14803964,0.32925215,-0.22926508,-0.13649218,0.11476474,0.4329587,-0.16460429,-0.1809768,-0.6531506,-0.02452592,0.007557126,0.05802756,-0.049180627,-0.0067721927,-0.1571985,0.43717417,-0.07686031,0.528386,0.39953986,0.1691646,-0.2268774,-0.6652941,0.11626771,0.6371313,0.36982217,0.06778487,-0.12850635,-0.111109994,-0.36751625,-0.26462308,0.16029912,0.53286284,0.7708962,-0.06443229,0.14475922,0.33147463,-0.03705305,0.06698519,-0.03394197,-0.28497532,-0.06401706,0.03556775,0.43848157,0.7343991,-0.28460997,0.41022256,-0.033999752,0.19510044,-0.018044418,-0.65526,0.7883777,0.90134186,-0.21109958,-0.22627664,0.54374677,0.27700457,-0.25727496,0.39632115,-0.4294065,-0.012637173,0.7851469,-0.1276929,-0.32053128,0.13605158,-0.17242962,-0.052745953,-0.9725185,0.09309146,-0.11006808,-0.5077431,-0.42013064,0.11708262,-4.0668316,0.08957038,-0.31203738,-0.16815472,-0.25098813,-0.07278641,0.38735798,-0.7041006,-0.6756625,0.22280449,0.11298915,0.55481464,-0.07595777,0.1669961,-0.28988487,-0.23240674,-0.20818675,0.02501095,0.15451148,0.22422071,-0.023138842,-0.4865911,-0.1073666,-0.11031017,-0.6400202,0.09731451,-0.4498109,-0.5603089,-0.10985244,-0.7796114,-0.22586016,0.7653413,-0.33873656,-0.1732723,-0.16098541,-0.034491528,-0.23079018,0.2700609,0.06349535,0.129357,0.04860499,0.078770384,0.04063469,-0.25546533,0.26129162,0.025234714,0.5244918,0.20715255,-0.12657996,0.26691294,0.6290052,0.50393796,-0.16152997,0.67300075,0.4419463,-0.0491569,0.16273877,-0.37067834,-0.22920202,-0.6125748,-0.46197307,-0.35405204,-0.41786125,-0.3471928,-0.17969008,-0.4107205,-0.87845975,0.37471664,0.014851253,0.4740641,-0.16862442,0.07470403,0.40645924,-0.07690064,0.17313342,-0.13404758,-0.2728291,-0.6383858,-0.14987364,-0.6549384,-0.6825997,0.4357529,1.0635337,-0.29314333,-0.15523513,-0.1357449,-0.43290326,0.07031492,-0.029494345,0.013567097,0.3222396,0.24024518,-0.25176504,-0.7362237,0.3388665,-0.17149253,-0.057367127,-0.8079402,0.035897765,0.5299956,-0.52607566,0.5362215,0.13527042,0.055625755,0.0846867,-0.54390866,-0.35319242,-0.0076208613,-0.06626522,0.6028221,0.31795985,-0.6035735,0.43220064,0.2636497,-0.13098453,-0.5822621,0.49455383,-0.045145016,-0.03509532,0.11705986,0.26932126,0.019641012,-0.13753806,-0.0019770067,0.2983467,-0.4573263,0.30762485,0.28969762,-0.041519444,0.43807468,0.14215018,-0.13579613,-0.62664974,0.025748715,-0.5347087,-0.18830983,0.16644412,0.12430576,0.2823265,-0.03714228,0.11008855,0.32478884,-0.2612891,0.18997681,0.04737072,-0.22900121,0.28361598,0.5650435,0.37103423,-0.45063317,0.42801285,0.1619875,0.026790181,0.08481515,0.2257836,0.49964786,0.35961667,0.2463913,-0.024553647,-0.3292712,0.11218367,0.64245915,0.08511445,0.25298622,0.038299005,-0.056026686,0.23445283,0.15349732,0.27303082,0.28549862,-0.30644572,-0.100535594,-0.12093755,0.2583206,0.6199625,0.22542076,0.2206515,-0.031505823,-0.36479712,0.19800492,0.047930166,0.07214516,-1.231545,0.41437447,0.33419085,0.62759894,0.5116065,0.11128259,-0.14071685,0.44877517,-0.16188265,0.18791078,0.49873057,0.023344418,-0.60453445,0.6144555,-0.58717513,0.5500352,-0.0022258672,-0.055489153,0.20671809,0.29909113,0.25094908,0.9356931,-0.025240803,0.056250155,0.07816506,-0.28212443,0.088871785,-0.43726742,-0.051466767,-0.6231801,-0.18657623,0.58480567,0.5177557,0.098753504,-0.3218304,-0.113792084,0.010624598,-0.16760647,-0.117854275,-0.13134187,0.06460748,-0.1003611,-0.6068538,-0.395494,0.5364585,-0.008712356,0.14986058,-0.042875696,-0.17481367,0.32967445,-0.28637162,-0.12303165,-0.10252603,-0.7275955,0.008734484,-0.21253811,-0.3362707,0.54735774,-0.44160688,0.26778415,0.16063696,0.025533607,-0.32811105,0.25929776,0.01347511,0.82126474,-0.23359966,-0.12870233,-0.45667347,0.15051773,0.36944523,-0.19882274,-0.18400073,-0.39527178,-0.14546305,-0.39048874,0.30603558,0.05765788,-0.15304156,-0.19475758,-0.029269822,0.06017378,0.3511466,-0.26635155,-0.0522888,-0.20504348,-0.20522106,-0.4283793,-0.19924755,-0.3905253,0.20271973,0.256052,0.144158,0.047959175,-0.11033749,-0.21011531,0.118311204,0.101867534,0.2660211,0.20565607,-0.12773313,-0.15397857,-0.14792176,0.13892348,0.38722992,0.17838015,-0.17604987,-0.42818186,-0.19689447,-0.31744155,0.077360794,-0.17072707,0.2796741,0.020190204,-0.39316943,0.63862896,0.13715132,1.2288315,-0.037865967,-0.39347872,0.08575977,0.5525839,0.1779033,-0.04337409,-0.09368461,0.834811,0.6579674,-0.0738669,-0.25961718,-0.3625876,-0.30777326,0.40108514,-0.23976249,-0.21110551,0.0028687615,-0.5609363,-0.24515307,0.22071333,0.13430673,0.24664211,0.08437461,-0.2135822,-0.003949826,0.0899147,0.48544607,-0.41369355,-0.14035876,0.26493117,0.36287245,0.2755216,0.33024374,-0.41937232,0.45741442,-0.5909599,0.22618245,-0.418126,0.18213052,-0.27639458,-0.27663973,0.15553926,-0.026166603,0.33853865,-0.17540164,-0.26528478,-0.34485075,0.7517889,0.124235906,0.23535989,0.8022515,-0.34280407,-0.18622084,0.10740516,0.5061711,1.1113139,-0.117727615,-0.07567053,0.34987828,-0.29506662,-0.6973412,0.08477674,-0.30760577,0.30807766,-0.09733381,-0.21542017,-0.44133458,0.20257665,-0.106804155,0.08723655,0.023683736,-0.555978,-0.29286653,0.26782617,-0.24935682,-0.27857116,-0.43900928,0.033732194,0.63803715,-0.44012782,-0.47711754,0.10328188,0.09951925,0.03181666,-0.6077655,-0.052845586,-0.25544378,0.3422803,0.0799186,-0.4261223,-0.061170097,0.22036767,-0.3155187,0.30469963,0.2637227,-0.32059374,0.18094991,-0.08079747,-0.17577441,1.1309966,-0.18905164,0.043827515,-0.5963803,-0.49892545,-0.75536346,-0.40076122,0.30277374,0.20780641,-0.06333169,-0.82268256,0.08675235,0.05928004,0.14304526,0.019050142,-0.37038186,0.4053898,0.079336904,0.3741541,0.07912137,-0.84747714,0.016954193,0.17534308,-0.1029782,-0.6667064,0.61242014,-0.21958067,0.71839243,0.05865358,0.14373598,0.11006188,-0.47069648,0.0049848384,-0.44429398,-0.19101243,-0.5399528,0.19869559,838 -893,0.34229302,-0.33783957,-0.441785,-0.17192166,-0.2530645,-0.16279149,-0.15380774,0.33761922,0.51786596,-0.1361664,-0.2246143,0.09874486,0.13562258,0.31581149,-0.0749793,-0.63942295,-0.12467036,0.20154858,-0.7931638,0.6276062,-0.53280145,0.17844461,-0.030557461,0.33548784,0.24852069,0.28078058,0.07814728,-0.013851385,0.11227215,-0.059822876,-0.0904303,0.16888939,-0.55660826,0.27097252,-0.2595823,-0.24450736,-0.047115564,-0.47912994,-0.46626398,-0.70022696,0.16795617,-0.78172755,0.5276264,-0.0027385305,-0.2500423,-0.26019564,0.10905337,0.30342343,-0.4400308,-0.09316387,0.24329878,-0.10012544,-0.25784722,-0.23492563,0.030949712,-0.2404,-0.44667006,-0.026625114,-0.5461005,0.00044577816,-0.1741879,0.18926042,-0.3392807,-0.11570915,-0.2964508,0.59837914,-0.3652126,0.05003829,0.3081575,-0.08355489,0.17948098,-0.53830975,0.07792113,-0.11255946,0.42234,0.16173352,-0.48353252,0.3675735,0.22902273,0.4062264,0.377617,-0.30261835,-0.15223835,0.008551925,0.16391958,0.35163108,-0.09810752,-0.36679086,-0.355376,0.10694277,0.2876003,0.33928332,0.14989038,-0.19425707,0.027220448,-0.12816964,-0.14302133,0.7236273,0.6194603,-0.06483766,-0.24230988,0.2949053,0.40607223,0.47141647,-0.24879865,0.10552751,-0.022141388,-0.5592333,-0.26176262,0.020318458,-0.15214522,0.5286755,-0.29100803,0.15510523,0.6790249,-0.061252583,-0.23970091,0.3127649,0.021287233,-0.21855946,-0.4894544,-0.10143294,0.18163298,-0.707475,0.08909737,-0.26095954,0.6268361,0.15205896,-0.70407265,0.4509175,-0.5786155,0.27299723,-0.071049936,0.6622347,0.9088154,0.40057865,0.46046457,0.7639752,-0.30414483,0.112115115,0.04817402,-0.49464044,0.16541904,-0.24240905,0.038453963,-0.5053999,-0.007131142,-0.285761,0.050059903,0.036939766,0.20652993,-0.5269305,-0.20807756,0.2425179,0.78298813,-0.2276706,-0.17279375,0.8580861,1.2107844,1.1009785,0.02951896,1.2527407,0.10871657,-0.18476468,0.06873293,-0.30191,-0.7553318,0.22915077,0.25537878,0.0032867193,0.2889872,-0.046994668,-0.037400987,0.35339537,-0.4882063,-0.0780176,0.057683457,0.4086727,0.008534551,-0.12847714,-0.45887718,-0.23095222,-0.138228,-0.017524824,0.05599161,0.23430276,-0.3052279,0.29055843,-0.042075366,1.0581142,-0.08652543,-0.02177821,-0.051640045,0.5004251,0.30535606,-0.2870627,0.014034301,0.31185326,0.51207036,-0.034184333,-0.55696476,0.16730142,-0.38478354,-0.1659608,0.016851127,-0.39587113,-0.11156863,0.00032514334,-0.29837608,-0.14943123,-0.12097258,-0.32632646,0.3540125,-2.9452507,-0.35878488,-0.120633684,0.30241543,-0.22625327,-0.12253627,-0.035526127,-0.5344547,0.21611251,0.20172311,0.6026308,-0.59946394,0.6131425,0.5314026,-0.7242659,-0.06066243,-0.80221564,-0.13368565,-0.0066797137,0.55259454,0.2091593,0.11817456,-0.11468294,0.044470984,0.66814905,0.24733062,0.26153517,0.50202787,0.34354892,-0.13674438,0.5779576,-0.13196607,0.62532556,-0.3846328,-0.09393863,0.30107197,-0.2309217,0.34326276,-0.27586517,-0.016878763,0.69810486,-0.4590172,-0.822025,-0.48603368,-0.20213163,1.2192348,-0.27309838,-0.30717805,0.26111725,-0.42929783,-0.045139175,0.092589974,0.5865651,0.09950764,0.032363933,-0.6575075,-0.10281972,-0.030525826,0.09212389,-0.05895467,-0.21382527,-0.39292005,0.68684953,0.017566485,0.64763886,0.10441861,0.3088431,-0.22333162,-0.2567638,0.21635783,0.7336543,0.38437164,-0.07079023,-0.21569918,-0.16834086,-0.22442944,-0.07564878,-0.024523253,0.8244992,0.52447015,-0.32824054,0.15921181,0.51832604,0.06795559,0.11550028,-0.10990936,-0.26022592,-0.19633369,0.019734511,0.42481527,0.91773295,-0.09683279,0.3957119,-0.11749347,0.22387993,-0.0788059,-0.5969024,0.6477043,0.48564327,-0.23415567,-0.079426646,0.52105993,0.5060362,-0.30854526,0.5652669,-0.4576153,-0.20571728,0.47913384,-0.056558583,-0.3661084,0.08091123,-0.33290255,0.104884095,-0.7628892,0.28598443,-0.41504917,-0.6898799,-0.44855568,-0.008717624,-3.2027254,0.20950975,-0.2574725,0.026100228,-0.30810037,-0.07216427,0.28306672,-0.52192825,-0.67809016,0.27706465,0.2192849,0.5387121,-0.24677192,0.10597313,-0.22996545,-0.18381266,-0.334131,0.20997296,0.059044432,0.29748598,-0.24381661,-0.4014369,-0.17498113,0.02959016,-0.39371124,0.17201328,-0.69016165,-0.27123845,0.09496948,-0.71027875,-0.21609445,0.5966169,-0.215123,-0.11384413,-0.2859471,0.1965288,-0.18287714,0.24522704,-0.15167947,0.20773716,0.08032538,-0.116856605,0.092728935,-0.18100613,0.5370838,-0.08034249,0.4457992,0.09898523,0.031936124,0.19020104,0.563154,0.65313977,-0.31460682,1.0953976,0.46187854,-0.15139078,0.2840325,-0.16815044,-0.3670688,-0.47480556,-0.25893623,-0.065589756,-0.45306,-0.4251003,0.10347245,-0.26100752,-0.9008174,0.5836399,0.22052716,0.5066373,0.04111916,-0.06618124,0.5392327,-0.09775529,0.03290561,0.023905924,-0.25825945,-0.5692672,-0.12772737,-0.768838,-0.4109087,0.092999965,0.7927542,-0.36970294,0.16019076,0.016116252,-0.31339458,-0.039073315,0.16304995,-0.009250323,0.16459632,0.38221917,-0.12443154,-0.4748,0.24838041,-0.08802426,0.033277106,-0.48445258,0.31002644,0.72374684,-0.70234585,0.75926566,0.34191045,-0.07266229,-0.2424953,-0.6139538,-0.25829753,-0.03257625,-0.068966374,0.59644574,0.25546303,-0.9489062,0.45464385,0.2684118,-0.47391248,-0.71140796,0.40680984,-0.23707773,-0.013933902,-0.17766666,0.20689511,0.06113858,-0.02068832,-0.19534719,0.24159145,-0.3306725,0.42761707,0.026884055,-0.06339768,0.05543651,0.07707462,-0.28808695,-0.7911274,-0.17220925,-0.61021405,-0.20596862,0.43229803,-0.04157949,0.037603788,-0.040509503,0.32827923,0.34166446,-0.18784876,0.19360258,0.037502915,-0.49671802,0.27940822,0.5602478,0.49804088,-0.40582046,0.5475512,0.3397106,-0.25817242,0.2448283,0.17838065,0.25149557,-0.105503656,0.5396275,-0.09978137,-0.025985425,0.2872937,0.9410084,-0.003687878,0.40577865,0.06334829,-0.061958443,0.24756165,-0.016003894,0.3850131,-0.06639191,-0.6128053,0.05916834,-0.28924924,0.31373382,0.45679006,0.37038228,0.1295764,0.20641303,-0.4389678,-0.17850344,0.22025774,0.008010179,-1.551639,0.47973838,0.29572526,1.0011152,0.5312541,0.19806266,-0.25249138,0.78112483,-0.09922993,0.0663955,0.5598359,-0.041603837,-0.44217432,0.66614795,-0.6120092,0.5620304,-0.044067908,-0.0041907527,0.20750456,0.02874205,0.3762491,0.91733533,-0.20611356,0.119403005,-0.016359081,-0.11393639,-0.025382206,-0.49035284,1.9227466e-05,-0.3795831,-0.36013713,0.75493366,0.5219699,0.40076038,-0.23200583,0.027680708,0.039122306,-0.092695296,0.18095751,-0.03893563,-0.23291533,-0.03685322,-0.6692796,-0.094158806,0.49101844,-0.08536895,0.2283625,-0.27080402,-0.059719414,0.12013664,-0.23061687,-0.051344395,-0.11857926,-0.75434566,-0.16623558,-0.15399557,-0.3739899,0.49442843,-0.21303064,0.08516595,0.19960962,0.07211797,-0.1441629,0.4082823,-0.06902789,0.66314703,0.015680104,-0.13328452,-0.43559495,0.119696476,0.1999187,-0.21386819,0.08144765,-0.42460564,-0.02968208,-0.44219935,0.62090623,-0.0005723263,-0.5481333,0.05252527,-0.056074616,0.045886915,0.5624744,-0.073148094,-0.2529063,0.0014958804,-0.1996733,-0.5291569,-0.1301029,-0.1659652,0.26733908,0.38445416,0.0112069845,-0.1351505,-0.2866337,-0.060216546,0.3642238,0.023893895,0.48538554,0.26069483,-0.018529078,-0.14770481,0.05338115,0.35842422,0.63255656,0.15506716,-0.10043853,-0.26215774,-0.20082752,-0.41168055,0.09793198,-0.005742045,0.25856212,-0.14518659,-0.17162192,0.7234512,0.027003715,1.349306,0.068277925,-0.3165736,0.12700354,0.48569584,-0.06966441,-0.13259536,-0.46851525,0.8866859,0.48297134,-0.16820385,0.092471026,-0.7333162,-0.13805194,0.25788477,-0.23767714,-0.13216995,0.07899667,-0.54681057,-0.24639912,0.3207219,0.17136554,0.24912007,-0.04298837,-0.16614382,0.16685838,0.07301376,0.26185504,-0.6882712,-0.31758028,0.16731493,0.3904948,-0.054379344,0.10410279,-0.43296227,0.34371388,-0.6070879,0.12735355,-0.27522716,0.17148201,-0.43980756,-0.4660686,0.14145239,-0.054502692,0.4650899,-0.36199757,-0.43442023,-0.1464088,0.39911938,0.014325331,0.08453632,0.63746315,-0.32175612,-0.101610325,0.26640275,0.6070348,0.90443796,-0.4188194,-0.1284868,0.19682848,-0.51634485,-0.7057523,0.32140088,-0.31455085,-0.013913061,0.0101963235,-0.36220825,-0.49950215,0.2420528,-0.051576655,0.22425228,0.17165047,-0.77431256,-0.051051393,0.17384559,-0.25112876,-0.2045591,-0.20490646,0.21448976,0.6972966,-0.3208878,-0.47999218,0.100069426,0.10273931,-0.22905737,-0.57977253,-0.1554607,-0.30198544,0.27677488,-0.01583759,-0.38330165,-0.12970519,-0.06488982,-0.5317327,0.14826967,0.027050382,-0.281387,0.25226614,-0.020593137,-0.20827906,0.92594594,-0.31871566,0.15091866,-0.46310148,-0.5779224,-0.7169874,-0.268414,-0.058248866,0.25102976,-0.096098624,-0.5170159,-0.0038021207,0.008216579,-0.18095462,0.059114683,-0.53733355,0.48525694,0.035278246,0.40185046,-0.26780882,-0.99024504,0.21772937,0.2652472,-0.061564434,-0.7416083,0.55673,-0.11905112,0.7950924,0.08310688,-0.009684831,-0.12312722,-0.2853841,0.055437934,-0.34802762,-0.10005156,-0.72753936,0.073019914,844 -894,0.35313746,0.06724202,-0.6347367,0.08140942,-0.5102296,0.11913839,-0.22436558,0.26040637,0.33482718,0.0072579184,0.18406911,0.10586617,-0.38151255,0.30103722,-0.16559726,-0.8098027,-0.09690859,0.100015186,-0.6378106,0.45623946,-0.29824463,0.4437389,-0.13182901,0.36820826,-0.09354317,0.25549087,-0.04600385,0.12958924,0.010321866,-0.26919785,-0.10051185,0.29712656,-0.6966491,0.36988762,0.075365245,-0.30186883,-0.01174095,-0.32270297,-0.24372715,-0.71575445,0.27251637,-0.674735,0.7155943,-0.15800422,-0.3975296,0.19953413,0.015939096,0.13479547,-0.22958608,-0.032316644,0.17552726,-0.28187862,-0.012231837,-0.18696038,-0.30548742,-0.4805301,-0.41860273,-0.11719084,-0.62549317,0.13742262,-0.29393396,0.318704,-0.33349642,-0.09667599,-0.46847042,0.1679005,-0.26818076,0.17574997,0.2889692,-0.33100143,0.04092783,-0.46754912,0.019596497,-0.09897664,0.36569738,0.037751243,-0.18314928,0.29658812,0.24189258,0.39979103,0.0715274,-0.2545003,-0.34238967,-0.096086584,0.04113919,0.40722093,-0.23001058,-0.08407269,-0.2599804,-0.016782636,0.61212933,0.37773314,0.16214207,-0.08558307,0.00015865763,-0.19140081,-0.09298032,0.39904806,0.35906994,-0.40729105,-0.24700756,0.6014113,0.43450972,0.3296295,-0.16189511,0.2858565,-0.22161321,-0.34656644,-0.17511205,0.04828928,-0.007831007,0.2987322,-0.14671104,0.09251439,0.7150112,-0.098297305,-0.012899409,0.04093041,-0.23040684,-0.0010478199,-0.21559311,0.06404408,0.18713279,-0.45996055,0.1813013,-0.14663558,0.5383852,0.096885405,-0.6779552,0.23365915,-0.55912167,0.16837464,0.06967684,0.5740947,0.8107547,0.6687689,0.080751725,0.9969456,-0.47612843,0.09182169,0.12956847,-0.3462601,0.2634396,-0.025822828,-0.031300258,-0.44477972,0.17808492,0.08469232,-0.123993576,0.18357821,0.15188551,-0.5856669,-0.2244824,0.01644127,0.45977542,-0.2818772,-0.17414792,0.80336046,1.019641,1.0066496,-0.03328861,1.1840189,0.31701863,-0.067494385,-0.1929909,-0.03396898,-0.5857165,0.18172275,0.3424313,-0.38574454,0.5523891,0.055907022,0.00956427,0.27753785,-0.13603179,-0.27825573,0.044799965,0.42941284,-0.060069975,-0.37254548,-0.36116982,-0.050130542,0.27146843,-0.067952335,0.008999427,0.41315746,-0.10880873,0.5398897,0.29623243,1.0186657,0.028396547,0.1855696,0.071240306,0.27826166,0.3000754,-0.3048723,0.10298479,0.33246845,0.26822165,-0.1062595,-0.42547593,0.086663574,-0.3188824,-0.3692176,-0.15883137,-0.34511697,-0.26675034,-0.024804756,-0.2102127,-0.3040743,-0.09521258,-0.10392526,0.4161493,-2.5823128,0.064392656,-0.1972689,0.26378295,-0.18882896,-0.35611805,-0.14328073,-0.5009803,0.22620618,0.16012461,0.45727864,-0.5130363,0.33736685,0.42854074,-0.5080903,-0.14278686,-0.6471066,0.1439804,0.13310999,0.37805519,-0.20777534,-0.15566342,-0.08449767,0.054963898,0.5365197,0.15078102,-0.01623516,0.37125304,0.6552816,-0.16162921,0.25427863,0.039012995,0.7458406,-0.17252834,-0.22273022,0.52530587,-0.40823093,0.63973224,-0.15115963,0.010087669,0.5335694,-0.3405881,-0.8318708,-0.40043533,-0.07821511,1.4188968,-0.41594768,-0.49443784,-0.030314513,0.17315786,-0.31670582,0.1731086,0.28203312,-0.016469618,-0.060907554,-0.4726951,-0.12626274,-0.17420745,0.30682456,-0.06648236,0.12204676,-0.37868336,0.6581668,-0.16151346,0.52738065,0.23451401,0.20184487,-0.1928811,-0.5135021,0.047404964,0.73211545,0.45869613,0.087703265,-0.22593582,-0.20988657,-0.18041885,-0.19922149,0.133738,0.6343038,0.37183246,-0.1531651,0.110587604,0.3548809,-0.036305696,0.157066,-0.1753598,-0.33857915,-0.18953419,0.048815046,0.48193586,0.71870154,-0.12750666,0.3715631,0.021211928,0.1326695,-0.11927996,-0.58484286,0.5399797,0.5260631,-0.30048797,-0.3028234,0.6368889,0.35467485,-0.15280376,0.46096754,-0.43309116,-0.36691174,0.50113046,-0.19575854,-0.39324495,0.13484198,-0.13661923,-0.07941821,-0.596378,0.22453457,-0.40080723,-0.6311099,-0.37571335,0.0021104813,-2.5194087,0.097280204,-0.15842949,0.098650254,-0.33964944,-0.17264809,0.15163164,-0.62908804,-0.81613976,0.09228873,0.11859218,0.394955,-0.259243,0.11470399,-0.2549155,-0.49186006,-0.2722616,0.40251568,0.13345152,0.2597033,-0.15104838,-0.27976394,0.067372255,0.01857251,-0.35557207,-0.030715128,-0.58998424,-0.28378797,-0.007057158,-0.38970605,0.05509388,0.7427635,-0.7493324,-0.09683365,-0.3447791,0.0482306,-0.113514304,0.07128075,-0.060436275,0.17224227,0.19481523,-0.073209055,-0.021516135,-0.24240331,0.42402124,0.11446353,0.45655417,0.46757045,-0.27840427,0.07120619,0.5065567,0.6804312,0.048302457,0.8560893,0.0008730094,-0.10780362,0.36363232,-0.16878061,-0.252297,-0.7698752,-0.21426909,-0.029347867,-0.49005833,-0.47190228,-0.09422639,-0.370909,-0.8562172,0.45930722,0.17811787,0.37821195,-0.18762736,0.573081,0.41519532,-0.1501993,0.22500253,-0.10726521,-0.18149228,-0.41091296,-0.2681986,-0.63968295,-0.5366343,0.4714936,1.0530642,-0.38104784,-0.017172141,0.21551855,-0.2708973,0.08718556,0.051390957,0.12507685,-0.0219419,0.40993062,0.16030753,-0.5336387,0.25360814,-0.16585527,0.06491759,-0.44694814,0.15600516,0.6436231,-0.60595196,0.3669022,0.27742872,0.14093171,0.09019772,-0.79630023,-0.18303962,0.103186436,-0.26444578,0.550001,0.409651,-0.6040259,0.434401,0.21902014,-0.28591907,-0.5569766,0.3957595,0.0056201755,0.017405376,0.058371395,0.425303,0.21849166,-0.17111742,0.0897725,0.26429763,-0.47741327,0.34307232,0.16477425,-0.21584225,0.03872047,0.04677187,-0.49256435,-0.6755734,0.13956176,-0.41863048,-0.475276,0.13464937,-0.01108921,-0.06725826,0.052131563,0.22621827,0.43750763,-0.3062174,0.13689512,-0.13733979,-0.22632362,0.5623857,0.4192591,0.52094096,-0.48131755,0.55583483,0.19035666,0.03227497,0.19794846,0.029327968,0.5477609,0.099264346,0.38651857,0.0970093,-0.14936063,-0.01606098,0.6012984,0.15045136,0.06325365,-0.06734138,-0.17460132,0.14224993,0.14752983,0.34983802,-0.14224671,-0.5685406,-0.04415543,-0.06266148,0.031395283,0.6161565,0.20870261,0.21188648,0.03620482,-0.12009019,0.16673182,0.024644231,-0.23056285,-1.2894534,0.3268346,0.174855,0.78371304,0.41694626,0.19086225,0.14024873,0.56394476,-0.2944911,-0.06491346,0.51280195,0.04547289,-0.39818177,0.47632906,-0.5897748,0.4944509,-0.13315989,0.05761075,0.32008502,0.2131838,0.35518518,0.99377805,-0.15954103,-0.0081987055,-0.08285144,-0.26204407,-0.03614992,-0.095203824,0.22577035,-0.39491925,-0.25727606,0.62941545,0.38140178,0.36100277,-0.4618683,-0.008978954,-0.0774078,-0.24807633,0.06960876,-0.06283194,0.008515249,-0.17708902,-0.19854899,-0.18550521,0.61098486,0.016525984,-0.07113885,-0.16665004,-0.27242282,0.30032364,-0.20753269,-0.04371324,-0.050030816,-0.61901784,0.020285273,-0.33966517,-0.51050305,0.10189852,0.07049853,0.1283634,0.18952467,0.13486801,-0.08473473,0.3448976,0.08429734,0.63541144,-0.11908888,-0.09528681,-0.30380303,0.34369263,0.13931935,-0.18413483,-0.032308314,-0.22699307,0.21848501,-0.38321152,0.24596588,-0.29792616,-0.40824234,-0.18086076,-0.1725394,-0.01910544,0.30137837,-0.16762345,-0.1974291,0.10777233,-0.26117408,-0.4039557,-0.3221365,-0.29641804,0.013289981,0.13115294,-0.1486067,-0.14293665,-0.23842324,-0.1578017,0.023664564,0.09397968,0.14038244,0.29988465,0.03461827,-0.47208014,0.12441673,0.04759021,0.461771,-0.06156404,0.13005613,-0.23585276,-0.48745927,-0.454797,0.61215425,-0.2479134,0.2819055,-0.00786515,-0.39434114,0.720519,-0.05987666,1.1723613,-0.05350706,-0.41214898,0.08686312,0.6207021,0.09138621,-0.08648849,-0.27468404,1.0970881,0.57860845,-0.038413938,-0.028461128,-0.3834214,-0.36327243,0.14512919,-0.40940607,-0.032529622,0.07902897,-0.41467288,-0.059572835,0.18234873,0.08624491,0.06431863,-0.06910942,-0.14395268,0.15555917,0.19523233,0.3677999,-0.5878943,-0.5563331,0.26688007,0.26576006,-0.052414056,0.2198803,-0.31304967,0.29531947,-0.7944889,0.17747164,-0.46184537,0.06622309,-0.17681247,-0.26990134,0.19799496,-0.17097135,0.2565627,-0.34436098,-0.33374104,-0.117236495,0.4319069,0.2757947,0.2544674,0.74684834,-0.21769816,-0.089281894,0.026573235,0.43039712,0.9177305,0.0067623355,-0.19912088,0.23055476,-0.28504595,-0.65784043,-0.030172497,-0.53405815,0.17053902,-0.11349394,-0.4222125,-0.29285073,0.27437094,-0.09458544,0.18668449,-0.039548356,-0.7614849,0.021428386,0.29905176,-0.37491372,-0.21477847,-0.3325574,0.105501294,0.8622315,-0.25935233,-0.48885942,0.114536084,0.24080242,-0.2454326,-0.81287175,0.10214982,-0.20149688,0.2914547,0.0981166,-0.41097602,0.095332555,0.3135117,-0.44891128,0.18475239,0.38062933,-0.29274216,0.11344432,-0.2946951,0.14104524,0.68436646,-0.28296962,0.08793059,-0.5012189,-0.54346085,-0.8307856,-0.44593874,-0.1701439,0.22789662,0.035123225,-0.7515469,-0.07720005,-0.42803955,-0.08474189,0.07896714,-0.44127646,0.46515122,0.18438447,0.5068206,-0.27191827,-1.1541957,0.04860949,0.10875982,-0.073246345,-0.58880335,0.56750995,-0.1905737,0.7025587,0.065455705,0.040414423,0.17315018,-0.72744274,0.41546762,-0.27636108,0.04956316,-0.6531419,0.2684792,850 -895,0.4838986,-0.31513846,-0.39774475,-0.04729781,-0.20619977,-0.16515197,-0.034184296,0.72467756,0.3804036,-0.42644405,-0.24563706,-0.1883897,-0.039441835,0.48074737,-0.0903287,-0.40528357,-0.04493019,0.32605532,-0.42388368,0.5645409,-0.32328627,0.07076294,-0.028349236,0.6041642,0.035319418,0.08604491,0.1269946,-0.04356988,0.021450654,-0.29950616,-0.1015537,0.37622157,-0.77407855,0.31257984,-0.39732847,-0.46342218,-0.060792,-0.5454661,-0.37054488,-0.8228056,0.12176037,-0.82573,0.46528652,0.2310585,-0.37080035,0.31417346,-0.07884355,0.16018936,-0.39621934,-0.13611327,0.1806726,-0.23296745,-0.067434855,-0.3490356,0.044725467,-0.122522004,-0.6901429,0.07510935,-0.3077599,0.036786493,-0.3455598,0.14599262,-0.33347812,-0.08395395,-0.1751339,0.7759445,-0.3292388,0.16188334,0.20042945,-0.2052027,0.2353764,-0.4474186,-0.18800442,-0.20400566,0.13858128,-0.07946958,-0.48472893,0.20395958,0.01887246,0.5238718,-0.059523012,-0.12447066,-0.34801093,0.096859924,-0.035737902,0.39075956,-0.28398952,-0.649297,0.019184167,0.16125336,0.17487751,0.14509724,0.066380076,-0.17778593,-0.16091038,-0.14445393,0.029810267,0.4830813,0.4551486,-0.28517887,-0.27269733,0.33970943,0.5513394,0.12863392,0.038647246,-0.06856895,0.095134735,-0.76039433,-0.20794795,-0.110414565,-0.20102578,0.6447338,-0.20028931,0.34525585,0.61502665,-0.1979465,-0.3560661,0.13451457,0.18307151,0.0308182,-0.4662582,-0.38478482,0.66362906,-0.3767437,0.16015027,-0.27304587,0.7890811,0.14038251,-0.74992746,0.2125082,-0.5454768,0.19212753,-0.08664214,0.6074244,0.7594002,0.7236169,0.5704945,0.6692431,-0.3737942,0.059232403,-0.13723563,-0.2957644,0.079345606,-0.4475812,-0.13999262,-0.37785587,-0.079305924,-0.055119123,-0.13734163,0.18655436,0.28444147,-0.6984668,-0.2579629,0.43618774,0.44994068,-0.15549193,-0.077711076,0.8611122,0.9527121,1.2100917,0.09325683,0.9973552,0.10697148,-0.23488235,0.27904797,0.03497721,-0.8183243,0.31647536,0.2860769,0.028117875,0.13674663,0.06246933,-0.06542677,0.37513062,-0.5964108,-0.16649629,-0.18837889,0.12450257,0.07805983,-0.061496824,-0.6016807,-0.3477005,-0.22837645,0.117628366,-0.11843797,0.32492796,-0.21028619,0.4768921,-0.04844135,1.4249727,-0.03335492,0.09031295,0.25010362,0.42913875,0.14777443,-0.21472478,-0.147047,0.39305404,0.22388314,0.30950645,-0.46918154,0.047065523,-0.21398605,-0.503084,-0.07332467,-0.26080546,0.047530472,-0.0040855086,-0.38776538,-0.3495657,-0.24415052,-0.30047885,0.47640193,-2.6062925,-0.10196129,0.09188681,0.459793,-0.27842844,-0.28536996,-0.07375094,-0.5924806,0.42596936,0.35648513,0.60340023,-0.6763406,0.062097285,0.4368789,-0.790572,-0.13390431,-0.7319073,-0.05507647,-0.11926139,0.34507954,0.081424154,-0.13872279,0.0027555202,-0.027612321,0.522892,0.006661678,0.0991927,0.34514666,0.41904366,-0.16136378,0.4456992,-0.13283649,0.3803935,-0.67826843,-0.2949792,0.3923613,-0.3048317,0.18426554,-0.13351375,-0.030851254,0.57300115,-0.54193187,-1.0009629,-0.5707541,0.05045985,1.3180746,-0.13922279,-0.43885055,0.13502438,-0.49896744,-0.09277725,-0.14061213,0.5499404,-0.13444519,0.0030473967,-0.770405,-0.033132862,-0.003911262,0.29668364,0.012183267,-0.15148537,-0.56487167,0.7197444,-0.013405733,0.45486116,0.4175863,0.08062927,-0.38509187,-0.5959284,-0.05306776,0.7941101,0.30810353,0.20548685,-0.281882,-0.15957539,-0.16233161,0.25035173,-0.014503844,0.5796816,0.5258419,-0.21313995,0.11687534,0.3607582,0.16474448,0.058981802,-0.14512919,-0.17224193,-0.27874124,0.0013710359,0.6397569,1.0684186,-0.16974789,0.17396843,-0.10821992,0.27362975,-0.009802704,-0.40412894,0.49811673,1.2153642,-0.09444185,-0.26889947,0.7275901,0.53255624,-0.024672538,0.49991488,-0.4811217,-0.4114765,0.31805274,-0.28776506,-0.5150259,0.1082071,-0.22752674,0.1400831,-0.7907886,0.28653222,-0.2545894,-0.5088173,-0.912286,-0.0795644,-2.8475845,0.39022934,-0.41577432,-0.11018769,-0.15788907,-0.19337319,-0.014793686,-0.64427084,-0.49840125,0.26568803,0.29961494,0.6765364,-0.26684594,0.23699605,-0.25572568,-0.49447057,-0.24712777,0.059320062,0.17254601,0.29793113,0.117627926,-0.44859624,0.03546837,0.06688013,-0.31471244,-0.023919502,-0.6412696,-0.34592184,-0.17461596,-0.58880967,-0.36421368,0.6282165,-0.2970296,0.018395126,-0.1897403,0.024800545,0.11604201,0.14895312,0.002111045,0.24185656,0.061960384,-0.085533194,-0.12339123,-0.13565128,0.25152633,-0.034589037,0.28175342,0.3291665,-0.41969118,0.17103402,0.64465594,0.8274997,-0.2456946,0.96148634,0.75589734,0.019757971,0.177447,-0.0494377,-0.358446,-0.5989779,-0.17172654,0.014811191,-0.48843065,-0.19444251,0.261013,-0.37583184,-0.9144073,0.82712746,-0.10596948,0.14423822,0.088159226,0.33765355,0.755394,-0.3595363,-0.11732479,-0.039317206,-0.09223097,-0.5200288,-0.27937672,-0.5496964,-0.45404485,-0.07773151,1.141344,-0.26948294,0.16827594,0.16298337,0.0072393916,0.027935192,0.27175447,-0.257925,0.284896,0.5537365,0.123232506,-0.6056397,0.4782156,0.11472807,-0.19225836,-0.44253635,0.45541772,0.58377415,-0.69057244,0.5890568,0.31475803,-0.13277785,-0.18442076,-0.8179712,-0.38415012,-0.19700103,0.013888188,0.37690958,0.39184856,-0.86445594,0.44675946,0.29645982,-0.3502364,-0.93946654,0.3212515,-0.084517516,-0.56846017,-0.010970995,0.243111,0.12114359,0.017034808,-0.11672711,0.28869438,-0.2561008,0.24187748,0.07262803,-0.2151174,0.085684456,-0.329914,-0.0011657426,-0.94637203,0.1269794,-0.57896,-0.50675476,0.41735157,0.18706529,-0.123793684,0.20170414,0.09752092,0.41352597,-0.11905842,0.05668689,-0.29713202,-0.29011968,0.47292247,0.54944927,0.5301866,-0.53538436,0.6515577,0.094483845,-0.11523875,-0.29738316,-0.04830258,0.35164163,-0.17900144,0.5391855,-0.26368043,-0.28900072,0.13512714,0.546613,0.15887724,0.4057641,-0.07762697,0.18517531,0.41558954,0.14907427,0.36803487,-0.20819306,-0.6371271,0.21774842,-0.43922806,0.039814588,0.4642377,0.09665636,0.26267052,-0.13114731,-0.22512239,-0.025195064,0.18712403,0.124584645,-1.3610988,0.275008,0.13998543,0.8539789,0.6271712,0.06853008,-0.084491454,1.0487584,-0.13497595,0.05964735,0.3665397,0.07772092,-0.37068495,0.6582025,-0.86064005,0.41006318,-0.086760014,-0.045020718,0.04324017,0.04164555,0.39532098,0.5126677,-0.15715939,0.003436327,-0.047298353,-0.30211523,0.1228629,-0.46954522,0.27390188,-0.6395175,-0.30965424,0.807157,0.6213713,0.4186709,-0.29101446,0.01945969,0.114837445,-0.19268231,0.19558424,-0.007488484,-0.02733013,0.0983544,-0.687443,0.20850937,0.5481949,0.12674783,0.16674237,-0.1751443,-0.23164213,0.30011728,-0.19241536,-0.36222374,-0.22750938,-0.654979,-0.014715474,-0.36650148,-0.32050577,0.5585646,-0.09414369,0.28516477,0.26775208,0.13254784,-0.35892108,0.19986564,0.040261686,0.93177557,0.021965573,-0.17120688,-0.23992006,0.4088602,0.024257889,-0.15838963,0.011480659,-0.26541355,-0.039203864,-0.39578697,0.33793512,0.019780962,-0.28613904,-0.0051655746,-0.033858508,0.058463525,0.6231044,0.040834706,-0.104256004,-0.107958496,-0.26891193,-0.3883184,-0.23871402,-0.06120482,0.33557415,0.22534609,-0.079594806,-0.13214162,-0.12682208,-0.05467583,0.53678656,0.02607893,0.30519888,0.07683992,0.0957906,-0.2986709,0.15664583,0.03085724,0.58105904,0.06462737,-0.22675198,-0.21822153,-0.3563713,-0.49799657,0.012052705,-0.018389858,0.48449448,0.050979376,-0.01899239,0.8516154,-0.0102616,1.1011099,-0.14136313,-0.4227616,0.126923,0.5974779,0.0075681657,-0.13280797,-0.31161335,1.0202192,0.50907665,-0.104430705,-0.040939357,-0.2500944,0.07473838,0.032752305,-0.14053194,-0.29890954,0.047207084,-0.52623963,-0.10951228,0.21645899,0.2810439,0.35732985,-0.21775909,0.0018782517,0.2771114,-0.115885474,0.32814065,-0.23802269,-0.13233821,0.23175621,0.44212794,0.046909083,0.029973432,-0.3881797,0.35000005,-0.5530353,0.1439211,-0.34310624,0.22565542,-0.45622006,-0.32767108,0.27231494,0.12337917,0.45983553,-0.4562813,-0.30670905,-0.209689,0.46206853,0.2159868,0.14950062,0.6202648,-0.28000268,-0.078815274,-0.010704677,0.28122154,0.93659943,-0.49010015,-0.13391657,0.40341577,-0.23217863,-0.5864236,0.49050328,-0.2484104,0.18595822,-0.05710524,-0.20728588,-0.5596841,0.07899868,0.25033462,0.21519317,0.021925712,-0.8019755,-0.008209109,0.3520906,-0.25846797,-0.1028787,-0.33493415,0.09315469,0.47327504,-0.12360752,-0.54028153,0.18250048,0.105755866,-0.06875327,-0.5100226,-0.07346627,-0.49787745,0.086719394,0.12282255,-0.47035834,-0.13733836,-0.03770404,-0.5871032,-0.06821262,-0.02085498,-0.28860947,0.10861655,-0.49386367,0.014362897,1.0463293,-0.28238735,0.55240923,-0.3402978,-0.49377465,-1.0207895,-0.121769756,0.7151244,-0.024207732,0.14395244,-0.70249224,-0.057969093,0.023930343,-0.41490945,-0.23130198,-0.29698253,0.46485996,0.23013711,0.35298786,-0.14875543,-0.6835671,0.37480986,0.16913612,-0.08331333,-0.49143443,0.2439525,0.15422113,0.93729764,-0.06742259,0.13320358,0.27366433,-0.65732807,-0.08947428,-0.09554866,-0.19958133,-0.492061,-0.0834525,855 -896,0.5093909,-0.21647857,-0.5275784,-0.15787746,-0.47241855,-0.08791115,-0.2747427,0.28103164,0.35746565,-0.23174922,-0.36622146,0.02363482,-0.12937461,0.3775157,-0.17230624,-0.7439545,-0.18069406,0.14098819,-0.75974137,0.59585893,-0.32152244,0.31056848,0.01708962,0.240557,0.42261449,0.3659766,0.11635259,0.011840413,0.091370255,-0.19700007,-0.023274263,0.058641333,-0.703608,0.33396116,-0.15531458,-0.14517824,-0.07560603,-0.5273496,-0.39358458,-0.833597,0.2306674,-0.9262077,0.6180152,-0.12822215,-0.19199939,-0.22193564,0.32966185,0.44860676,-0.2669488,-0.023925826,0.32073978,-0.15023965,-0.2668871,-0.06622241,-0.049549516,-0.34945285,-0.6194069,-0.26566947,-0.653805,-0.19557379,-0.3698472,0.27972227,-0.29196241,-0.14688824,-0.31914717,0.43976834,-0.5376101,0.10567983,0.28335035,-0.025861396,0.43690586,-0.67067695,0.08405008,-0.2731204,0.4215536,-0.0629765,-0.25993982,0.50805634,0.2539012,0.24807608,0.3530215,-0.3135329,-0.25496653,-0.163838,0.3026484,0.21818875,0.022310555,-0.28854978,-0.3240334,0.049648717,0.49999666,0.4500154,0.14554109,-0.45608327,0.02193492,-0.07254567,-0.11543087,0.8993573,0.44676033,-0.030457241,-0.22233492,0.3076874,0.6399968,0.5826101,-0.31280324,0.037749663,-0.07054637,-0.4664259,-0.13991332,0.355688,-0.19850107,0.49195445,-0.0833943,-0.18279429,0.77229136,-0.25394198,-0.17958243,-0.021992497,0.043490637,-0.11588764,-0.13174447,-0.3223551,0.10248073,-0.56172484,0.28491718,-0.23741095,0.5532556,0.16251624,-0.7939485,0.22195534,-0.6710585,0.08793708,-0.009337172,0.70000666,0.7969007,0.64356935,0.37694302,0.8535447,-0.21792738,0.24347629,0.0032725434,-0.36213258,-0.099972725,-0.3793044,-0.06988368,-0.43213236,-0.15552624,-0.40415335,-0.11112326,-0.19981581,0.6304553,-0.50066406,-0.118263446,0.11436709,0.582926,-0.2636524,-0.077420734,0.79733866,1.1272511,1.154755,0.064124994,1.3440751,0.13883038,-0.26558912,-0.01800855,-0.27091065,-0.66039425,0.22472574,0.3492514,-0.20272106,0.38781595,0.006242866,0.05543895,0.17170306,-0.5712512,0.16506608,0.07593884,0.4338552,0.0752232,-0.14418273,-0.35965466,-0.1785137,0.036590815,0.20623215,0.13929848,0.21223621,-0.35630807,0.20928578,0.13396613,1.1766821,-0.2744394,-0.0724936,0.021402532,0.66694355,0.26438245,-0.10367209,-0.19568439,0.3262942,0.6324172,-0.038144797,-0.7822106,0.10508368,-0.30707762,-0.30390683,-0.2054683,-0.43805578,-0.20349753,-0.017556151,-0.23573184,-0.18356414,-0.046352725,-0.5098073,0.5270509,-2.36006,-0.32438326,-0.17612238,0.3131442,-0.4232264,-0.03892824,-0.038421795,-0.61692137,0.29438296,0.08486577,0.5943981,-0.6748469,0.6228513,0.65962046,-0.78819776,-0.16957057,-0.71178705,-0.12382903,0.037004456,0.5355729,0.035626844,0.073552154,0.025056908,0.20978172,0.6899629,0.21561898,0.15500927,0.66203517,0.45373273,-0.04883736,0.7502122,-0.06663468,0.6401423,-0.20323862,-0.09125439,0.48469868,-0.1866587,0.32236084,-0.43572244,0.0091514485,0.66347104,-0.63353926,-0.922558,-0.716252,-0.5620604,1.0757549,-0.42859137,-0.52974725,0.28827825,-0.39283717,-0.007744173,0.15172443,0.6547432,-0.1846658,0.2332,-0.6683571,-0.063146956,0.04285716,0.2639765,0.042087242,0.014775023,-0.51068354,0.87597847,-0.0749092,0.65837795,0.2130072,0.2380848,-0.3058816,-0.51080817,0.29802433,0.82044667,0.3696921,-0.0686399,-0.37440506,-0.14301933,-0.2608655,-0.15485175,-0.042966664,0.7612598,0.54487544,-0.17884134,0.08329003,0.35075736,-0.20035686,-0.023351768,-0.2094689,-0.32776636,-0.18362789,0.028652003,0.46983233,0.84373283,-0.07349671,0.652072,-0.22358851,0.055073734,0.052450877,-0.5414669,0.69476813,0.78010684,-0.094164304,-0.12601721,0.67816883,0.6357855,-0.27880463,0.6083488,-0.6348105,-0.2038542,0.7383539,-0.06537091,-0.5275013,0.21971567,-0.34886137,0.030773118,-0.70903367,0.29403272,-0.518377,-0.64677167,-0.24545877,-0.03591573,-2.4547415,0.1444931,-0.17249663,-0.19981106,-0.3796606,-0.113839746,0.27928463,-0.6712101,-0.84615797,0.23155479,0.15101159,0.7323399,-0.119996525,-0.02257683,-0.23362784,-0.307115,-0.15163572,0.29419288,0.059823975,0.34834722,-0.3557408,-0.43545222,-0.06160875,-0.034209535,-0.6895879,0.053971577,-0.484612,-0.4015158,0.0014487952,-0.6388381,-0.12595586,0.65730065,-0.49307612,-0.015056231,-0.17756683,0.09720406,-0.07573502,0.26665547,-0.042337317,0.3291249,0.29731032,-0.086129814,0.04911405,-0.039095584,0.583206,-0.013143112,0.2584072,-0.04691747,-0.123473145,0.24114628,0.4969213,0.674891,-0.33394837,1.2504896,0.47329482,-0.11961458,0.18910754,-0.12207287,-0.27325872,-0.7787323,-0.16793306,0.014301677,-0.47849616,-0.6434881,0.07890848,-0.21869166,-0.91582537,0.5901743,-0.045996,0.54582745,-0.007111589,-0.15373944,0.33956218,-0.22259694,0.117360406,-0.13137566,-0.25793144,-0.52715605,-0.41749787,-0.669689,-0.37381232,-0.29888782,0.9992382,-0.30982468,0.020512799,0.02910459,-0.5737855,0.20711704,0.14206299,0.029017195,0.18738677,0.36764503,0.1787769,-0.64930123,0.19543749,-0.044661324,0.21267574,-0.4327111,0.32720092,0.844024,-0.55995303,0.5710048,0.23474067,-0.013766791,-0.36082003,-0.6916341,-0.06039187,-0.039052725,-0.31867623,0.50960505,0.22110885,-0.7724262,0.36268297,0.039599072,-0.5856883,-0.8120343,0.67938036,-0.16323537,-0.10419193,-0.08245764,0.4067366,0.17714827,-0.043433893,-0.34357083,0.36450443,-0.18213134,0.27045572,0.12259837,-0.087920405,0.06437534,-0.09421877,-0.3051915,-0.9103791,0.19296275,-0.5258177,-0.3556864,0.3574234,-0.12335809,-0.0010351943,0.15566607,0.3563914,0.39743522,-0.23203336,0.15509556,-0.0069861,-0.517314,0.22595252,0.62693805,0.5607373,-0.41714072,0.56031865,0.20269288,-0.21890163,0.096969746,0.1136175,0.3723701,-0.18504769,0.44082963,0.09034318,-0.1549345,0.23551528,0.94343203,0.15568374,0.5152015,0.16647309,-0.23541999,0.35569465,0.049716245,0.51083136,-0.14581811,-0.7209904,0.09452969,-0.18206613,0.13051392,0.54292274,0.23482418,0.28947198,0.10799915,-0.24173473,-0.051481556,0.13984853,-0.120090075,-1.7397417,0.3990951,0.38273588,0.90479755,0.56425476,0.18238233,-0.037905704,0.6881415,-0.316106,0.025170362,0.5459428,0.13981505,-0.5134337,0.5375909,-0.6678872,0.46903706,0.05129094,-0.077759854,0.29198885,0.10658834,0.49155235,1.0029539,-0.24947983,-0.08012792,-0.030568326,-0.1855771,0.03664722,-0.3947399,0.17424488,-0.502931,-0.5896893,0.7721627,0.5073572,0.3908668,-0.13075462,-0.0078089857,0.04098976,-0.19165182,0.29018575,0.002426843,-0.2629029,0.06936783,-0.5436254,-0.076276824,0.52489597,-0.1326675,0.008681419,-0.112927,-0.062579624,0.042144593,-0.18156286,0.10246689,-0.002468365,-0.9946656,-0.21252312,-0.19833322,-0.31429267,0.17966503,-0.35116363,0.0854716,0.22066809,-0.120406896,-0.14763868,0.40295553,0.27299,0.6962113,0.21440391,-0.19558509,-0.26333848,0.009093697,0.22203211,-0.24422847,0.2334714,-0.116913445,0.05480017,-0.6466493,0.55480605,-0.23744363,-0.6473728,0.2256303,-0.33335122,-0.13737798,0.5693182,-0.04938781,-0.19120677,0.112136446,-0.38643312,-0.34280184,-0.17412455,-0.22797664,0.21006273,0.24468075,-0.08735078,-0.24266829,-0.08215516,0.041912127,0.38734755,0.05582228,0.5984486,0.16908729,0.098017894,-0.25713772,0.0040374002,0.2254887,0.54985064,0.29288572,0.06958661,-0.33189443,-0.3125994,-0.4714098,0.29443464,-0.05157836,0.23799126,-0.07999763,-0.22438495,0.8228603,0.13804431,1.2237159,-0.006608203,-0.42731485,0.1261537,0.6019642,-0.30993262,-0.0650897,-0.40364566,0.8298691,0.5420867,-0.13792562,-0.14338338,-0.59597874,-0.14259763,0.108190335,-0.3236714,-0.04200794,0.01391996,-0.50208116,-0.20057298,0.2710483,0.17918432,0.050996453,0.011183252,-0.13391383,0.2907319,0.24552377,0.48729038,-0.66139585,-0.06014141,0.2552745,0.18395846,0.09257921,0.087964036,-0.2999555,0.37826642,-0.6918075,0.3053763,-0.25771666,0.08042042,-0.4834355,-0.3482429,0.1603866,0.010332778,0.414682,-0.25652218,-0.38451532,-0.1972369,0.5197484,0.0363085,0.1449987,0.6835006,-0.33525327,0.18403338,-0.052856375,0.55125767,0.9666558,-0.503765,0.13485257,0.25611904,-0.61766106,-0.5140402,0.3867965,-0.57478356,0.062174007,0.014431812,-0.48962045,-0.48874855,0.14660524,-0.0009298722,0.17132886,0.15274435,-0.84657925,-0.118149854,0.26051423,-0.11926039,-0.2491685,-0.22945602,0.31225517,0.67716175,-0.25213504,-0.5963838,0.09992581,0.3089104,-0.28426746,-0.4287866,-0.055425603,-0.10521203,0.3511436,-0.31162244,-0.33663973,-0.1463763,0.097347714,-0.51787525,-0.0705267,0.19043346,-0.3748769,0.12520248,-0.09284606,0.007304162,0.795367,-0.4567252,-0.114556275,-0.49502096,-0.46393034,-0.83505875,-0.37935606,-0.08334631,0.2897856,-0.2110167,-0.4651338,0.0460168,-0.23926193,0.04660361,0.21467651,-0.7062071,0.47513008,0.18441999,0.49072376,-0.2787893,-1.0872589,0.2330013,0.19428039,-0.11447113,-0.69368976,0.7376153,-0.123593956,0.7714073,0.038475152,0.01389813,-0.3159538,-0.5121822,0.17975669,-0.13783526,0.049733877,-0.80544376,0.18491006,865 -897,0.31850654,-0.29451072,-0.43434796,-0.26529327,-0.31343898,-0.096464336,-0.3809519,0.28901616,0.14911143,-0.56379586,-0.16955006,-0.08726132,0.1793434,0.4735519,-0.16112912,-0.62833786,-0.018268377,0.098105304,-0.6136138,0.44868007,-0.7356511,0.3712928,0.26975667,0.1946929,-0.085550345,0.30365697,0.46949902,-0.27681157,0.18635722,-0.26697442,-0.30025986,0.10832521,-0.6014896,0.20055974,-0.1392705,-0.38461116,0.17791955,-0.41356865,-0.13869186,-0.6031969,0.1238462,-1.0143652,0.5332199,-0.0138253225,-0.11192756,-0.31253055,0.33803734,0.42709574,-0.19698705,0.18199103,0.12269288,-0.16988797,-0.15318,-0.2795787,0.020069214,-0.48492074,-0.35922208,-0.074178316,-0.65789217,-0.46578714,-0.27678788,0.22053456,-0.36534515,0.1314301,-0.08804544,0.12397774,-0.40063033,-0.029617956,0.3165673,-0.3431088,0.3653934,-0.5556552,-0.0010506337,-0.13619353,0.54691595,-0.019178309,-0.3282141,0.3055395,0.43287006,0.4791584,0.22824176,-0.15107588,-0.049045224,-0.38473842,0.3367602,0.63424164,-0.14703797,-0.45738378,-0.32833305,0.020744802,0.31453142,0.49433365,-0.100172974,-0.39149055,-0.061955947,-0.16284439,-0.36891544,0.53689486,0.44998154,-0.21078514,-0.28334537,0.16813545,0.48667482,0.21723312,-0.2516967,0.23458423,0.0631996,-0.6115312,-0.1799375,0.14453326,0.18109448,0.52149284,-0.27400562,0.33802214,0.8527193,0.0025149782,0.16917305,-0.07626181,-0.13410525,-0.29793575,-0.20733358,-0.03344828,0.059636086,-0.76631975,0.06589759,-0.38049945,0.9700965,0.17015357,-0.75605947,0.48828587,-0.6306754,0.21030562,-0.18078478,0.6116799,0.6442068,0.27755946,0.23635237,0.8046345,-0.33604693,0.14231409,-0.14329076,-0.565403,0.07803715,-0.27319425,0.082784794,-0.2802167,0.22177579,-0.0034195657,0.3580382,0.005203853,0.3767489,-0.47477213,-0.093049794,0.17891605,0.76928025,-0.29231784,-0.030326521,0.6722264,0.9247578,0.8221733,0.17688096,1.2586725,0.2154427,-0.14454365,0.057267327,0.058193784,-0.62900937,0.13822366,0.4990684,0.5211739,0.24803202,-0.08049848,-0.040983822,0.3159169,-0.3432202,-0.02032216,-0.07439018,0.39556244,0.093636625,-0.09687114,-0.5053101,-0.14953794,0.0069654584,-0.105192296,0.09347328,0.22185339,-0.106482685,0.48820677,0.018832356,1.1008685,-0.22304739,0.20226355,0.18884504,0.46969473,0.39931867,-0.19357629,0.111539565,0.46715847,0.42351198,0.003409962,-0.61158067,0.11222857,-0.20815045,-0.43016735,-0.09394296,-0.35767758,-0.25135958,0.21682496,-0.48936856,-0.0329071,-0.067559175,-0.108852245,0.48981062,-2.8050985,-0.40861514,-0.19800073,0.33975402,-0.28433034,-0.17524229,-0.17119946,-0.5212546,0.28552803,0.28733203,0.609089,-0.7496285,0.5638473,0.51221985,-0.34984538,-0.31251025,-0.77230763,-0.13718046,-0.11856133,0.3711065,0.13400958,-0.20153739,-0.22774756,0.06984582,0.63635474,0.0027433932,0.10626221,0.30078962,0.45930323,0.21755405,0.6911001,-0.13885961,0.5480307,-0.43511555,-0.099472314,0.3819398,-0.27956066,0.29181373,-0.16032639,0.09411185,0.43417498,-0.5643774,-0.8430085,-0.7853684,-0.53034914,1.0422748,-0.36318076,-0.43797484,0.26138845,-0.016686827,-0.16634175,0.04264906,0.69511026,0.0076892674,0.3547529,-0.73757225,0.16729432,-0.11247041,0.23068249,0.107070245,-0.22439633,-0.30409884,0.76429063,-0.0987457,0.7762284,0.28670317,0.13775969,-0.09567764,-0.35482594,-0.0029079542,0.823734,0.36609194,0.06584909,-0.21495105,-0.28603283,-0.2867351,-0.19837345,-0.027377715,0.6818364,0.7555749,-0.08162265,0.09512948,0.37207708,0.07310248,0.135513,-0.079669885,-0.121789716,0.021426499,-0.008676559,0.4666289,0.5208492,-0.180376,0.3380917,-0.18491502,0.36536917,-0.21998961,-0.4526595,0.6441438,0.4994819,-0.11233326,-0.005608514,0.50935936,0.54600954,-0.2868997,0.4151156,-0.6749375,-0.28077546,0.6310063,-0.09431244,-0.49976805,0.3127791,-0.31122625,0.16023766,-1.0008521,0.39669657,-0.50276715,-0.44498816,-0.37657258,-0.16867284,-3.806424,0.339159,-0.03402877,-0.101915814,-0.37555203,-0.05706017,0.3129935,-0.552942,-0.6080132,0.25419548,0.10513755,0.533511,-0.06453941,0.1487736,-0.433884,-0.1821058,-0.032277692,0.1642552,-0.12992077,0.13794196,-0.23250164,-0.23244719,-0.042950403,-0.06256061,-0.4276316,0.27828637,-0.5422387,-0.55427545,-0.0073099085,-0.440549,-0.34729218,0.6116987,-0.5117367,-0.041224197,-0.13675094,0.025840053,-0.45998845,0.25582483,0.08957478,0.21053386,0.029798135,0.06975672,-0.04696564,-0.39952672,0.5130918,-0.1036756,0.3152744,-0.02916324,-0.07413985,-0.0016618967,0.4775147,0.5392186,-0.15030356,0.99985546,0.21379292,0.036061194,0.28563875,-0.3399769,-0.3541112,-0.5184892,-0.20868333,-0.011216257,-0.29277015,-0.5169048,0.005208388,-0.14684002,-0.74902177,0.71514624,0.121838786,0.110478304,0.05785893,0.27541462,0.2137193,-0.03523071,-0.07475013,0.052787423,-0.124326736,-0.6704259,-0.21340616,-0.68791467,-0.48177752,0.095496476,0.6908787,-0.311925,0.030417072,-0.07632774,-0.17808904,-0.0530078,0.12554976,0.30139673,0.32592896,0.41039467,-0.1641668,-0.6921091,0.53934044,-0.1700836,-0.38162994,-0.38426876,-0.0036210418,0.7203045,-0.8263714,0.48621583,0.49022362,0.068005376,-0.003406922,-0.47697327,-0.36375895,-0.045160502,-0.24865909,0.37892547,0.051867966,-0.84984374,0.46877563,0.34298298,-0.27757773,-0.667064,0.4548819,-0.021223545,-0.17748976,0.022209292,0.28357714,0.15855694,-0.013877871,-0.13174392,0.06983196,-0.4182702,0.30481884,0.17295541,-0.012611563,0.4971099,-0.14267452,-0.31984994,-0.66142243,-0.16807596,-0.67596,-0.094610035,0.32542372,-0.019615792,-0.019632677,0.16563268,-0.10119909,0.3351616,-0.30271566,0.18241484,0.026030088,-0.25478512,0.2324229,0.43627658,0.25733662,-0.38973668,0.73604035,0.23461443,-0.08339163,-0.018225178,0.09726442,0.2699376,0.09769017,0.5372447,-0.35758233,-0.10266629,0.27964836,1.0894079,0.29203883,0.43507972,0.17588408,0.038707547,0.5266209,0.06879577,0.12956369,0.23238029,-0.42905176,-0.139804,-0.17791043,0.13746105,0.5283254,0.31967643,0.39697716,0.025953509,-0.27185234,-0.0058107018,0.31903827,-0.077856965,-1.1856962,0.35740343,0.31728396,0.6803016,0.49117267,0.04790337,0.008780201,0.663169,-0.2208957,0.21166198,0.19391131,0.021247467,-0.5272693,0.7684831,-0.5670435,0.3084299,-0.33979973,-0.040761426,0.098167844,0.034718603,0.3035891,0.7948704,-0.14326236,0.18033187,0.015640728,-0.18790881,0.033141017,-0.42576376,-0.12317719,-0.3372198,-0.35382333,0.6951292,0.39336443,0.40420866,-0.28007737,-0.041288,0.04360981,0.016288942,0.089767136,-0.12213531,0.0045162016,0.07471763,-0.52614975,-0.19944976,0.76691085,0.13291441,0.35178533,-0.13553171,-0.4527975,0.38586998,-0.047291707,-0.0033198919,-0.119124986,-0.52436787,0.14531915,-0.30949196,-0.6692529,0.32916394,-0.38828444,0.14746793,0.29738793,-0.06705133,0.023301216,0.33540773,0.036736965,0.77143383,-0.036334515,-0.19035982,-0.35390234,-0.022672072,0.26310107,-0.38434055,-0.049000755,-0.4907733,0.042888362,-0.5269702,0.5199409,-0.07004052,-0.25841454,0.2610891,-0.14043075,-0.03246074,0.5659292,-0.07654535,-0.16456068,0.30618027,-0.14652917,-0.42266366,-0.14387493,-0.21132486,0.2148609,0.33801448,0.07540239,0.022012621,-0.22855641,-0.11695925,0.29569277,0.11215525,0.5303814,0.18715252,0.06372299,-0.12776357,0.03521842,0.1644625,0.4132792,0.14296828,0.0002279083,-0.15874869,-0.5277247,-0.21129625,0.038888067,-0.0233874,0.26788023,0.15524948,-0.26574287,0.90513444,0.01374355,0.91796136,0.016300598,-0.34140942,0.17007864,0.39517894,0.011813889,-0.034558415,-0.34341606,0.874556,0.44007602,-0.044337224,-0.032744076,-0.48741683,-0.07218547,0.20395203,-0.32331058,-0.030786723,0.021048082,-0.59386045,-0.3728585,0.1653718,0.15566961,0.1509212,-0.17085071,0.025163615,0.0030732204,0.007828859,0.26691437,-0.7493511,-0.3101534,0.23091984,0.30352667,-0.0871509,-0.08021644,-0.3650584,0.43290588,-0.7274132,0.16541618,-0.6439535,0.124194324,-0.27351668,-0.32352647,0.09431975,-0.121583015,0.4064195,-0.28093898,-0.32000777,-0.08091848,0.44099775,0.06833761,0.29337236,0.6627212,-0.13224079,0.06627173,0.2002924,0.58321327,1.1322511,-0.48121667,-0.059060205,0.32487696,-0.42052785,-0.4860392,0.22365527,-0.3701272,0.06020869,0.08198213,-0.44605446,-0.39847925,0.24329704,0.20411943,0.16181383,0.03989956,-0.68077415,-0.3230346,0.2988452,-0.40652764,-0.36998582,-0.29729816,0.33341703,0.612088,-0.2642828,-0.23445801,-0.05134496,0.28561938,-0.34852841,-0.61631477,-0.16033716,-0.030201294,0.3547094,0.15691768,-0.09498095,-0.1385581,0.2731896,-0.5281722,0.073377684,0.09432449,-0.37738034,0.12892729,-0.20154166,-0.1896764,1.0341829,-0.26996484,-0.4013448,-0.63109297,-0.58616525,-0.80011576,-0.4687417,0.41499245,0.17099689,0.2429623,-0.21112959,0.074626155,0.07747839,-0.08325362,0.037638206,-0.40627623,0.4081227,0.08938094,0.6046122,-0.2101816,-0.95271295,0.16747934,0.16323724,-0.07515746,-0.65143317,0.5592614,-0.121346004,0.85670614,0.08179678,-0.11952243,0.088162415,-0.403386,0.12885372,-0.3788617,-0.06885708,-0.9902737,0.20472746,867 -898,0.59981364,-0.27212232,-0.48513746,0.010088347,-0.2122765,0.118010215,-0.095658146,0.62918764,0.5015588,-0.4369904,-0.4018906,-0.20032363,0.06839024,0.41861776,-0.21400249,-0.69639665,-0.02364474,0.22963186,-0.36167744,0.66576654,-0.22298466,0.40317276,0.3335795,0.32359865,0.110580206,0.13291562,0.27766493,-0.07995002,-0.12987907,-0.26809886,-0.18878074,0.22395955,-0.4848231,0.20078592,-0.37186098,-0.5258371,-0.09433749,-0.73001593,-0.42503777,-0.7331117,0.14083947,-0.9007483,0.6664336,0.13421537,-0.25718188,-0.012789969,-0.13604681,0.26085284,-0.25303027,0.13186178,0.07822227,-0.09873491,-0.04436977,-0.43831074,-0.24388148,-0.33614397,-0.63379115,-0.059574455,-0.36062637,0.12970905,-0.0016855797,0.041773364,-0.34663233,0.09382885,-0.08050611,0.2634529,-0.35488203,0.09910058,0.34669888,-0.2865136,-0.010315508,-0.6048203,-0.21256971,-0.14368282,0.15365522,-0.24495412,-0.39798734,0.3097476,0.2127657,0.56315666,0.041666348,-0.16526559,-0.2204476,0.08917153,0.07595394,0.51070946,-0.3876495,-0.5733429,-0.19097966,0.21143179,0.570705,0.18644387,0.14448418,-0.35451674,-0.038813096,-0.25479704,-0.20315476,0.33881998,0.5742538,-0.36591578,-0.09305241,0.30081883,0.33634248,0.23818974,0.09444117,-0.056498636,0.04018638,-0.6584841,-0.12895124,0.02962567,-0.30883107,0.5370448,-0.12983352,0.16389008,0.5024321,-0.06433903,-0.017089123,0.18156135,0.11064663,-0.22323905,-0.13375562,-0.35180536,0.41912827,-0.46215108,-0.0004894783,-0.24438144,0.6975427,0.25743186,-0.57763183,0.1687675,-0.50484395,0.22122061,0.04273392,0.383777,0.67482406,0.5724789,0.19009681,0.73071903,-0.49508438,0.039616566,-0.11038514,-0.28396386,0.18342078,-0.25282708,-0.13536797,-0.48887467,-0.09561604,0.005411605,-0.23456228,0.6022253,0.3924869,-0.57297313,-0.28026244,0.101199485,0.5669727,-0.26449662,-0.036771204,0.8826165,1.0684844,0.820951,-0.022603827,1.2199042,0.26786172,-0.21083605,-0.084178805,-0.18566424,-0.6131661,0.21566339,0.43886992,-1.1142868,0.5808161,-0.04110944,-0.07644873,0.3358388,-0.3984569,-0.20432164,-0.058143377,-0.16916431,-0.05084823,-0.2679999,-0.499724,-0.2510849,-0.25439048,0.24630082,0.17019413,0.36705044,-0.20996772,0.48566088,0.123248,1.2173009,-0.066476285,0.021413485,0.07923105,0.15920623,0.39629292,-0.12706487,-0.0016216437,0.12744884,0.3526961,0.07033954,-0.491464,-0.09479353,-0.16150872,-0.34651613,-0.07044873,-0.03451016,-0.11499978,0.12886043,-0.35142717,-0.2411583,-0.052911848,-0.1542118,0.4809319,-2.2234838,-0.20600045,0.006103487,0.52661264,-0.14453983,-0.43323827,-0.282537,-0.45637402,0.35244521,0.30453265,0.6028046,-0.75977796,0.12259308,0.42194155,-0.80082995,-0.26139733,-0.5652098,0.17012091,0.01195385,0.21193878,0.06683793,-0.08326142,0.3801168,0.04263257,0.51886815,-0.05254041,0.061777096,0.35053518,0.46104518,-0.09326714,0.3162031,-0.030062286,0.6001759,-0.4910599,-0.28882357,0.27363217,-0.41930532,0.38029662,-0.04531777,0.08239167,0.49644843,-0.49431446,-0.8838287,-0.5311111,-0.035238832,0.9812066,-0.14040278,-0.32203996,-0.054383595,-0.12960716,-0.42042688,0.025963895,0.7440751,-0.21142854,-0.09006443,-0.83982927,-0.2262938,0.061792564,0.21381833,0.051193375,-0.14423192,-0.41732123,0.67287844,0.041112993,0.50841695,0.5967038,0.20870608,-0.23711388,-0.6322395,0.17621505,1.0611402,0.5422718,0.32428688,-0.24541958,0.08883812,-0.22097701,0.19817372,0.09014552,0.5871544,0.6049361,-0.31793955,0.013418411,0.2719659,0.45655325,0.1131321,-0.0639812,-0.2681645,-0.2251035,0.0045886138,0.5748377,0.94218755,-0.26000747,0.11769054,-0.13036406,0.50157845,-0.16695644,-0.64881873,0.73939914,1.0717771,-0.08661467,-0.26608258,0.7679871,0.4800141,-0.02996637,0.4995028,-0.56696486,-0.4210581,0.13475086,-0.25382605,-0.43071344,0.47268304,-0.19205968,0.2629136,-0.90378183,0.48693243,-0.10863459,-0.32682118,-0.5540918,0.08323851,-2.5166488,0.25388134,-0.35021576,-0.17691995,-0.19207168,-0.14398648,0.01910767,-0.72285515,-0.60563374,0.3210318,0.14796285,0.6617361,-0.06315759,0.24817763,-0.086614765,-0.494802,-0.0066426047,0.19219457,0.24824816,0.34923574,0.084967546,-0.45734665,-0.16082601,-0.0057358146,-0.34983885,0.19256608,-0.8653372,-0.29942545,-0.1843298,-0.5830862,-0.123367906,0.55532783,-0.38487217,0.11581006,-0.03892793,0.1821507,-0.0817266,0.17498608,-0.043769073,0.06686744,-0.06907505,0.0638009,0.21691191,-0.12005957,0.394884,0.20040973,0.29237804,0.33901432,-0.3075967,0.08453041,0.49270663,0.8220565,-0.1511304,0.847311,0.56630343,-0.08793058,0.1434197,-0.020149747,-0.3910202,-0.55622005,-0.3816793,-0.10102048,-0.5122666,-0.27113286,-0.03292578,-0.42403194,-0.8729922,0.61836016,0.005237917,0.032001723,0.10593858,0.3007067,0.6778455,-0.46060014,-0.05211984,-0.05648518,-0.21388465,-0.37466773,-0.16487685,-0.6262236,-0.38498116,0.17285495,1.1897702,-0.18956922,0.28177652,0.22501855,0.015482266,-0.0175509,-0.029441252,-0.01750336,0.026766717,0.4810265,0.0024650942,-0.6277684,0.36084077,-0.015008976,-0.35086226,-0.6011624,0.36269692,0.6453994,-0.8355456,0.5023008,0.40789977,-0.009062198,-0.11040974,-0.43872055,-0.26087594,-0.0057718554,-0.24195202,0.35575482,0.30378643,-0.5568958,0.24706991,0.34197518,-0.5390736,-0.59742403,0.53040993,0.084035166,-0.47555736,-0.056440443,0.3230596,0.08605646,-0.022215137,-0.0065201395,0.09776238,-0.3024894,0.38423502,0.1307524,-0.1581388,0.12744083,-0.09648708,-0.08961936,-1.0680767,0.25547823,-0.5154186,-0.33360314,0.27812082,0.042065356,0.03240519,-0.14669529,0.17139716,0.39168575,-0.3948315,0.1645552,-0.19157982,-0.29114738,0.68833995,0.43199635,0.45322797,-0.15676562,0.5272084,-0.023459239,-0.09635988,-0.10688212,0.052969623,0.42881384,0.024535581,0.18953425,0.0013750097,-0.30278876,0.25454986,0.46103057,0.06754124,0.12044648,0.25576302,0.005842132,0.16252008,0.21009743,0.2343512,-0.12083503,-0.59975433,-0.020659596,-0.21182209,-0.011085455,0.48516288,0.045609366,0.19791062,-0.28687626,-0.48949078,-0.054566097,0.119250454,0.44194603,-1.4262894,0.23672497,-0.066994876,0.60870624,0.4272666,0.10022823,-0.12134663,0.5636994,-0.22327049,0.07688948,0.3520966,-0.14967178,-0.40770626,0.40118775,-0.5307847,0.52007526,0.024661863,0.12782831,0.086037755,0.057929445,0.2922592,1.0134293,-0.03717457,0.025675626,-0.08468572,-0.31679776,-0.13996094,-0.4958466,0.09890018,-0.5932911,-0.4502851,0.8422332,0.3411442,0.5795597,-0.25960633,-0.034718283,0.11743683,-0.21551652,0.2620081,0.11250556,0.22112316,-0.11121777,-0.5972853,0.0012760436,0.573111,-0.017164806,-0.004069239,-0.10793391,-0.18631129,0.31077513,-0.3406748,-0.15891756,-0.17916544,-0.8779278,-0.13969465,-0.6787428,-0.4423686,0.43072096,-0.0017273152,0.21368726,0.1481988,0.037455257,-0.19385356,0.59513116,0.2195761,1.140814,0.10585191,-0.3195335,-0.12116599,0.5040168,0.14811994,-0.18689264,0.08414831,-0.07019633,0.083805,-0.5375213,0.48072597,0.13162737,-0.18829615,0.07934555,-0.029910041,0.14564776,0.32748872,-0.29576942,-0.25028816,0.09346441,-0.042585056,-0.40464416,-0.33165792,-0.31175533,0.16712719,0.46201158,0.106291234,0.050334483,-0.11912011,-0.092927195,0.3770976,0.09866169,0.46081546,0.38386372,0.19338454,-0.51941043,0.04323687,0.15077592,0.48278078,0.018991878,-0.3307154,-0.4650676,-0.6054792,-0.52907544,-0.256215,-0.16066605,0.392248,-0.022951188,-0.06350822,0.79354554,-0.057467267,1.1798669,-0.15468027,-0.3827807,0.013089408,0.4764897,0.0034631987,-0.17167081,-0.19686395,1.3540112,0.6160213,-0.10309198,-0.005572463,-0.26133338,0.020742575,-0.0466851,-0.30882946,-0.21763986,0.06597472,-0.5263312,-0.3994687,0.24667858,0.1977431,0.09405425,-0.17568775,0.34735557,0.36631027,0.0781463,0.10905337,-0.5259303,-0.2803544,0.263574,0.31728038,0.12102023,0.10616497,-0.48944867,0.37542376,-0.49181247,0.03408671,-0.44778368,0.081000276,-0.20600669,-0.26476023,0.1920111,-0.010731657,0.31263015,-0.6664976,-0.31876335,-0.26455644,0.5070825,0.04098934,0.051808715,0.70616984,-0.19190641,-0.18864202,-0.03590138,0.6208887,1.11318,-0.3297883,-0.06562968,0.66949934,-0.4590322,-0.39837447,0.27984315,-0.16448458,0.0009199977,-0.20306869,-0.25485507,-0.7011278,0.1575081,-0.020772114,0.22072929,-0.044846535,-0.6631515,-0.00895311,0.347241,-0.42844358,-0.24699439,-0.48774377,0.46060053,0.48176146,-0.12844951,-0.67866635,0.093351044,0.08599613,-0.21832787,-0.42943475,-0.13334464,-0.33590293,0.09793506,0.24540251,-0.26342502,-0.064060524,-0.03735822,-0.48477292,-0.04758491,-0.10406011,-0.37096024,0.11939638,-0.47974524,-0.1384985,0.97499305,-0.3156073,0.36736527,-0.6705603,-0.52367085,-0.8797485,-0.5650371,0.6192642,0.2430401,0.04793923,-0.9029646,-0.06782713,-0.045878705,-0.18919677,-0.22499879,-0.059194107,0.48738268,0.20803756,0.46223363,-0.2694898,-0.75219697,0.35652867,0.16354853,-0.26970017,-0.546915,0.21461187,0.28440696,0.99001735,0.040409833,-0.026515454,0.62313193,-0.7349526,-0.11370831,-0.15448672,-0.16962051,-0.70568925,0.046620235,873 -899,0.5447156,-0.24667412,-0.52978086,-0.22105914,-0.3316753,-0.0604035,-0.13083002,0.35609373,0.3638678,-0.28234988,-0.06700965,-0.18012531,0.1460071,0.69255733,0.00039686388,-0.8607816,-0.09937795,0.21813618,-0.58463055,0.5597341,-0.4701549,0.44807723,0.043645512,0.3362092,0.4155899,0.20358574,0.14683618,0.053251278,-0.059959073,-0.13111077,-0.21237035,0.024217166,-0.5123814,0.13778467,0.031807512,-0.4399117,-0.045715194,-0.40649223,-0.5280948,-0.7119911,0.31825957,-0.81446433,0.5339404,-0.062654346,-0.37569952,0.14014919,0.2616007,0.30497828,-0.32602444,0.124972396,0.20397635,-0.021739177,0.0047879256,-0.029270416,-0.43838105,-0.4803821,-0.6227986,-0.040973812,-0.45828125,-0.2747151,-0.32223478,0.098021515,-0.36991358,-0.021925079,-0.111179985,0.43565896,-0.36261752,0.136755,0.26523772,-0.035836786,0.21180363,-0.489831,-0.13821636,-0.11791589,0.035580818,-0.11320015,-0.29615888,0.32347587,0.3095862,0.3111827,0.073198475,-0.30271605,-0.30159208,-0.08865765,0.042346608,0.6022263,-0.12726362,-0.26606658,-0.2862977,0.039864335,0.1198904,0.3022821,0.117661774,-0.49524418,-0.015150957,-0.14479952,-0.2676445,0.4432074,0.472582,-0.38703355,-0.30178717,0.3223754,0.3193162,0.21229155,-0.18302578,0.04861856,0.11056136,-0.5652793,-0.1329244,0.103646375,-0.09595127,0.5481264,-0.26161554,0.19720958,0.70028085,-0.2987741,-0.051219344,-0.051640112,0.21311475,-0.20239902,-0.36464942,-0.2041082,0.2382971,-0.58407336,0.077874154,-0.042353023,1.037129,0.23266621,-0.68357354,0.30208716,-0.6184784,0.1936354,-0.3339063,0.4450512,0.6724716,0.21003014,0.26298884,0.75484496,-0.3351462,0.16506241,-0.13225503,-0.39725327,0.16607612,-0.2471342,0.060950253,-0.56717724,-0.08708968,-0.00994955,-0.25346792,0.15748715,0.676893,-0.42923966,-0.20858027,0.15764277,0.8597844,-0.33544016,-0.11670657,0.65166336,1.0134815,1.1776239,0.06089678,1.2016157,0.41843486,-0.19476974,0.14057048,-0.2766566,-0.6929156,0.26157042,0.2940296,-0.47263667,0.33617723,0.04553869,-0.06252948,0.31508586,-0.15326308,0.04480816,-0.16600369,0.28012225,0.062015418,0.02393432,-0.5512541,-0.47573102,-0.10551715,0.18717612,-0.056002896,0.31322458,-0.26663956,0.2885812,-0.08083657,1.7251172,-0.07816448,-0.009089378,-0.0355678,0.5195779,0.30418828,-0.40913823,-0.19823651,0.2633463,0.4211364,0.0034929116,-0.58796376,-0.08264089,-0.30240697,-0.17400892,-0.2105126,-0.4403819,0.022555908,0.008875862,-0.42792282,-0.20469809,0.09485943,-0.3628118,0.5514981,-2.596276,-0.2351088,-0.05362807,0.221637,-0.3322675,-0.3898348,-0.20172839,-0.5033105,0.41264057,0.2503517,0.5324777,-0.49378684,0.20288502,0.46941772,-0.5183346,-0.1702195,-0.72662354,-0.11541764,-0.11355424,0.3991498,-0.10568634,0.03660627,-0.067969285,0.24210775,0.48550567,0.075736225,0.10769194,0.26894382,0.3722622,-0.071114846,0.5208258,-0.05670693,0.6910763,-0.2720867,-0.22466125,0.31139502,-0.13570648,0.23518474,-0.24711408,0.059395466,0.63820463,-0.53963417,-0.88067317,-0.5110067,-0.16239245,1.0731473,-0.3732901,-0.39491215,0.35376158,-0.27750948,-0.038199693,0.061261732,0.3417629,0.045950364,-0.051404435,-0.5699046,0.1360156,0.106931925,-0.049442876,-0.04224156,-0.1693003,-0.21286823,0.5479726,-0.04247406,0.11186182,0.18731713,0.26536444,-0.24527848,-0.50034046,0.13791548,0.983757,0.25190148,0.18693697,-0.465884,-0.19951133,-0.3740039,-0.08289415,0.18757115,0.29200712,0.83792263,-0.20914525,0.097456336,0.26849458,-0.064867,0.09949276,-0.011685121,-0.34520105,0.0057798275,-0.086031616,0.5424874,0.6391428,0.056548882,0.69138837,-0.037844192,0.2032717,-0.13792987,-0.56532687,0.519163,1.1822761,-0.08795241,-0.2812308,0.6231534,0.27653182,-0.24060477,0.45139304,-0.40530694,-0.25170752,0.41276893,-0.20736562,-0.30384475,0.24525607,-0.41736162,-0.04680394,-0.8457988,0.3543311,0.03231412,-0.4343545,-0.39026177,-0.17596936,-3.744379,0.33070529,-0.29112783,-0.10587361,0.09824563,-0.11319539,0.17941028,-0.47154927,-0.46176782,0.15458238,0.024814442,0.7435027,-0.15359728,0.22782719,-0.12812681,-0.2265143,-0.4371338,0.17294753,0.0041021407,0.5613293,-0.07253296,-0.46480402,-0.039942604,-0.2133347,-0.5381234,0.09555236,-0.620255,-0.41580042,-0.27136996,-0.75472593,-0.27205765,0.8390251,-0.058863048,-0.061302077,-0.24511541,0.034530938,-0.051277358,0.37121964,0.26759318,0.104072355,0.09931489,-0.01964207,-0.101371326,-0.36271572,0.26063856,0.10954448,0.3006309,0.30752316,-0.01407671,0.15600474,0.5890174,0.5147509,-0.1426252,0.8306317,0.5424625,-0.26953334,0.15161435,-0.21643026,-0.19446231,-0.44943002,-0.36699763,-0.2757052,-0.46639895,-0.48765013,-0.098422945,-0.31486186,-0.65907395,0.5924605,0.077307425,0.24476345,0.022481715,0.00871973,0.4266903,-0.10581977,-0.014281769,-0.13856146,-0.100509845,-0.60712576,-0.35220322,-0.484921,-0.40182245,0.43658733,1.0158052,-0.30732194,0.02140937,-0.056540024,-0.3437786,-0.23107712,0.10062329,-0.058166757,0.2348262,0.17011434,-0.044948947,-0.63262606,0.31572288,0.027207008,0.09153517,-0.5515681,0.26635927,0.7773795,-0.47265372,0.54897285,0.26747754,0.2317785,-0.08845872,-0.4977778,-0.4362329,0.21882892,-0.18859416,0.4573792,0.17204694,-0.8190045,0.45189047,0.2517846,-0.46170625,-0.7324725,0.5433082,0.019823262,-0.24358416,-0.15755281,0.29623264,0.10979787,-0.0007833329,-0.30891967,0.3314669,-0.44460043,0.289755,0.22035265,-0.021252831,0.34561905,-0.11450336,-0.22959524,-0.6128627,0.07572036,-0.3677974,-0.45365223,0.07906599,0.08387218,0.12845062,0.27038443,0.020284394,0.3046826,-0.32531264,0.10592982,-0.14453125,-0.30430132,0.4356736,0.25874335,0.5441635,-0.43703803,0.5785021,0.11473322,-0.10754889,0.118206955,0.10275483,0.43497106,0.19310816,0.36936,-0.025454143,-0.21782358,0.24174051,0.8354029,0.030494802,0.3662797,0.16837566,-0.13354273,0.0010845363,0.057195097,0.14850481,0.21501641,-0.4382724,-0.10576861,-0.45898476,0.26544586,0.45157278,0.11965046,0.2630805,-0.12169693,-0.38547835,0.21878624,-0.08671701,0.046552986,-1.3166904,0.24956298,0.22944279,0.64828426,0.52170986,-0.09200289,-0.18503849,0.6465067,-0.19846438,0.15812303,0.38309118,-0.11699147,-0.42660937,0.58121395,-0.8069854,0.6705818,-0.1027581,0.002405138,0.12786077,0.18995632,0.54510903,0.9102099,-0.20151168,0.051389664,0.089932285,-0.3841065,0.07217293,-0.3818921,0.17264116,-0.68619853,-0.39045402,0.70440674,0.28910923,0.24658579,-0.093509555,-0.0152631,0.068664625,-0.07510265,0.07192445,0.054809738,-0.05202963,-0.08002389,-0.72930145,-0.32857263,0.46409956,-0.076081954,0.19316234,-0.081141174,0.08847288,0.05968364,-0.35993266,0.112464584,-0.03930028,-0.75169516,-0.21336056,-0.40711212,-0.5220065,0.3673291,-0.27506277,0.29351398,0.11183196,0.016110338,-0.24814986,0.53191763,0.21798022,0.87467736,-0.12133924,-0.10480126,-0.34560052,0.07509914,0.21378922,-0.1338438,-0.047452565,-0.21742116,0.04058839,-0.69837046,0.560793,-0.08307075,-0.5188778,0.026922176,-0.0556306,0.07289869,0.6180574,-0.006910453,-0.11417844,-0.23595785,-0.1970529,-0.29778555,-0.14652668,-0.04687902,0.3248276,0.2977142,-0.34952208,-0.17277676,-0.2518667,0.047017083,0.26699612,-0.21885313,0.33740386,0.22219624,0.30979648,-0.13707347,-0.077763505,0.21299879,0.57971567,0.06425656,-0.05605783,-0.29927447,-0.09921598,-0.3894619,0.1816728,-0.08203286,0.38545656,0.1696003,-0.20257686,0.7307449,0.026718562,1.1590705,0.077770025,-0.39102432,0.13566193,0.3977808,0.20323622,-0.08229219,-0.39738503,0.98427993,0.62875915,-0.0033836514,-0.1953883,-0.48603544,-0.21776374,0.37238643,-0.2829379,-0.2426935,0.22801703,-0.5354332,-0.3137205,0.29767212,0.11815373,0.24312139,-0.09132422,0.18555962,0.3957028,0.18358983,0.31627566,-0.46451366,0.07955991,0.26766032,0.50306076,0.087992035,0.40840602,-0.5171336,0.3116102,-0.63741666,0.3328791,-0.20377277,0.27252883,-0.09155396,-0.23456813,0.33285555,0.22123487,0.4442153,-0.27585587,-0.38519642,-0.2107169,0.69678193,-0.010604829,0.13752496,0.6375708,-0.32673594,0.05745679,0.01857417,0.41185212,1.0895385,-0.23392008,-0.102935635,0.42317045,-0.33571982,-0.928181,0.5519194,-0.20120819,0.26261088,0.028230393,-0.33821857,-0.5567493,0.290098,0.109346636,0.035603285,0.16891766,-0.320225,-0.13897896,0.21451499,-0.088072725,-0.21793287,-0.3911405,0.20171177,0.48336664,-0.2101696,-0.36994824,0.213477,0.23798494,-0.17362805,-0.57619375,-0.05537586,-0.2133878,0.21424377,0.08871881,-0.30035666,-0.16357432,-0.113510825,-0.4639803,0.107687555,0.17054737,-0.29081914,0.11316314,-0.14149408,-0.14648674,0.9754979,-0.26224712,0.0562768,-0.7057869,-0.6134208,-0.7634663,-0.3722279,0.44239807,0.11475933,0.011853923,-0.6145318,-0.11942773,-0.029009743,-0.070419304,-0.043370992,-0.4915259,0.42146423,0.02911598,0.15309553,-0.072174266,-0.9151222,0.083518185,0.14796562,-0.3332082,-0.6784785,0.48685193,-0.26093304,0.8419257,0.07070354,-0.013222859,0.32710934,-0.28450996,0.10245639,-0.2226158,-0.31160918,-0.63878787,0.014802944,884 -900,0.33899626,-0.14302982,-0.7732234,0.1683225,-0.109181106,0.09593544,-0.51142913,0.42869008,0.23535788,-0.5352115,0.014184271,-0.15994985,-0.19386254,0.29118696,-0.14421052,-0.37674752,-0.015623544,0.34124812,-0.46085957,0.5985159,-0.342158,0.2789046,0.11101348,0.26515853,-0.10838898,0.14951551,-0.027065387,-0.17482053,-0.4112793,-0.23128001,0.1258505,-0.038980853,-0.65225786,0.24305032,-0.25603965,-0.43854618,0.22043066,-0.6040882,-0.31450555,-0.60512495,0.02765143,-0.8315032,0.6929113,-0.045657378,-0.33749846,0.28725377,-0.21830875,0.28888682,-0.1125891,-0.06725056,0.29490408,-0.3614693,-0.3631256,-0.5722658,-0.43060282,-0.3310493,-0.53779304,0.05161507,-0.5593652,0.1782767,-0.03560243,0.26922354,-0.031764466,0.15175006,-0.2283528,0.004736364,-0.41506615,-0.17197435,0.03800984,0.023960924,0.25602603,-0.7348636,-0.097366564,-0.1657406,0.16306728,-0.039987687,-0.2670575,0.1428233,0.23511368,0.458748,0.03634429,-0.12867157,-0.36954156,-0.003206869,0.2156967,0.4174621,-0.27555826,-0.089942634,-0.17288788,-0.05288588,0.6320581,0.12980838,0.15707108,-0.20199,0.06274889,-0.15424079,-0.54381335,0.18386485,0.5901842,-0.27449298,0.13872902,0.57816917,0.6365333,0.3280193,-0.18284295,0.13319102,-0.16642879,-0.36854228,-0.07531164,0.12145374,-0.19858158,0.6562227,-0.1038599,0.20093091,0.38190496,-0.25724724,-0.13845314,0.051377684,0.037739437,0.017421901,-0.13481258,-0.34262288,0.2498426,-0.40349934,-0.07119267,-0.33817494,0.5553989,-0.0014734672,-0.8259966,0.37124434,-0.46010232,0.009944547,0.052201975,0.6598873,0.68662286,0.91481906,0.16313134,0.7863164,-0.4616556,0.16850281,-0.19920151,-0.1457596,0.07730951,-0.093749255,0.061834857,-0.47419512,0.060629636,-0.012265116,-0.41040704,0.17243123,0.6941488,-0.49242482,-0.1419983,0.20742981,0.56288135,-0.32825205,-0.17547345,0.81410646,1.3037952,0.871525,0.16308565,1.2462691,0.4265376,-0.19594519,-0.28166524,-0.14185177,-0.77875155,0.119340755,0.3195902,-0.24156256,0.5994757,0.120211214,-0.17672366,0.3660914,-0.15193082,-0.1389681,-0.0136482185,0.34398293,-0.16209057,-0.19432513,-0.21491992,-0.080827735,-0.11519983,0.09079379,0.05999143,0.36858892,-0.19371122,0.5044234,0.24125396,1.2313732,-0.08850521,-0.03013244,-0.00027609244,0.22334607,0.2604438,-0.04464598,-0.17035995,0.42713618,0.3331327,-0.05333528,-0.44053152,-0.11505276,-0.21085864,-0.54406065,-0.19802131,0.09421859,-0.049035918,-0.2735469,-0.0683899,-0.32682285,0.095308095,-0.3939335,0.4542221,-2.388491,-0.19538693,-0.05955516,0.37045154,0.046355363,-0.3719211,-0.05010596,-0.37946868,0.49522874,0.31324485,0.38834497,-0.44842252,0.33617958,0.435032,-0.62345743,-0.1692638,-0.6686217,-0.010181072,-0.1009894,0.4515991,-0.075947754,-0.32139906,0.082068674,-0.17634042,0.44750476,-0.22255488,0.15914023,0.41559944,0.45886782,0.12820084,0.28730327,0.08519087,0.6708789,-0.23341234,-0.17147422,0.20909278,-0.510596,0.5529667,-0.09136864,0.26286995,0.40205577,-0.53086925,-0.6878512,-0.48531625,0.10823142,1.3786281,-0.23548062,-0.4686201,0.07119004,-0.2508823,-0.48941362,0.032105815,0.2792412,-0.20191498,-0.068981715,-0.7915611,-0.33622584,-0.0010536785,0.31874666,0.002948314,0.23425339,-0.39584717,0.4085729,-0.014982328,0.45450187,0.7239027,0.109628975,-0.09349596,-0.3487312,0.013697699,1.1497048,0.30723938,0.11044994,-0.3079596,-0.1489029,-0.23258887,0.060507786,0.12986316,0.23651643,0.7145892,-0.0114487605,-0.006689474,0.27593973,-0.09766933,0.03079229,-0.10167142,-0.49157897,-0.16657265,0.063021444,0.51630896,0.85581845,0.026340403,0.5388374,-0.14505444,0.34613648,-0.18802547,-0.5194244,0.49680963,0.72196823,-0.24919319,-0.2032727,0.6106004,0.3926719,-0.2698018,0.5778819,-0.59754634,-0.41042304,0.3164022,0.016005004,-0.34536514,0.45331845,-0.27611133,0.24794151,-1.0564092,0.2914403,-0.29990718,-0.58721596,-0.79557306,0.018537624,-2.1898792,0.19526882,-0.20284067,-0.20501195,-0.13332182,-0.26105353,0.20755619,-0.46714735,-0.6421531,0.26186943,0.36390674,0.3702712,-0.06771872,0.047257554,-0.21415989,-0.43683663,-0.16084658,0.31424704,0.14723383,0.13683249,-0.35939363,-0.53238255,-0.10748442,-0.3141059,-0.16723873,-0.08915999,-0.7578264,-0.18882167,-0.08552451,-0.39045605,-0.18693238,0.5897165,-0.60144264,-0.19462673,-0.38661686,0.14714423,0.10845545,0.29485562,-0.15803401,0.18376334,0.09405714,-0.21672918,0.030504843,-0.26398912,0.029597744,0.19123626,0.14614241,0.5580032,-0.1863637,0.068189986,0.51004636,0.8422,-0.11697403,0.9215674,0.5718715,-0.2558112,0.24347644,-0.30077398,-0.21253538,-0.6756809,-0.25660634,-0.23266362,-0.43115282,-0.54585123,0.054817498,-0.29394704,-0.8797013,0.7280762,0.051466763,-0.28483915,0.19643216,0.859468,0.42068973,-0.28015074,0.116844185,-0.2593589,-0.15785497,-0.40928963,-0.37974843,-0.8419152,-0.4358404,0.03273839,1.2912972,-0.22863829,0.12836513,0.38867983,-0.29478577,0.05005245,0.19830601,0.020353124,0.052760005,0.3089079,0.06679597,-0.64024496,0.31536508,-0.113714956,-0.23488583,-0.56660765,0.2049045,0.9239262,-0.8541859,0.26772067,0.69088334,-0.08512911,0.13779038,-0.63205165,-0.06302624,0.010104309,-0.2704102,0.34129962,0.3718382,-0.60955924,0.5138878,0.38945237,-0.3511002,-0.8493247,0.35679615,-0.06484566,-0.07074801,0.01886741,0.4454272,0.053134754,0.11454747,-0.4042152,0.017238617,-0.3781383,0.26353663,0.19617672,-0.15962096,-0.042826887,-0.08952141,-0.31038862,-1.037413,0.105499804,-0.41164568,-0.21364081,0.52583355,0.14525402,0.21954994,-0.16430892,0.3763984,0.41435492,-0.5986515,0.14544706,-0.26263073,-0.3517789,0.42879918,0.5096834,0.34157622,-0.32043314,0.52773196,-0.15566728,-0.27786815,-0.28796637,-0.08702854,0.5162082,0.014451042,0.13946994,0.20692877,-0.095351756,0.12313663,0.6883537,0.19438536,0.4046165,0.1636451,-0.118984215,0.29120323,0.13054933,0.37308946,-0.080455355,-0.47367355,0.04654391,-0.08811498,0.19753115,0.4200236,0.15300818,0.49226618,-0.23534936,-0.122697145,-0.09803373,0.16223763,0.3640289,-0.8154831,0.35600606,0.19445825,0.37822828,0.6280017,0.2397147,0.18473947,0.57444644,-0.45045146,-0.024769902,0.37385273,0.110187866,-0.4529426,0.39769706,-0.8424427,0.2458932,-0.1251428,0.19614144,0.35080758,-0.10282558,0.75665444,1.1317985,-0.19170938,0.07858472,-0.064843066,-0.06873206,-0.19260144,-0.20295906,-0.08592036,-0.2620162,-0.38971338,0.93921256,0.03471817,0.563469,-0.18435265,0.013987447,0.39064184,-0.23000221,0.6526738,0.074858606,0.16078667,-0.10687175,-0.44408157,-0.08848137,0.61017686,0.17783208,0.13420007,-0.013783996,-0.20372427,0.37901828,-0.23068468,-0.23154098,0.056933388,-0.5302755,-0.01897344,-0.40467405,-0.52671355,0.5384566,0.22319674,0.09094646,0.08798101,0.13355094,-0.09106338,0.4462932,0.02639381,0.82990235,0.12200896,-0.46658826,0.07323355,0.34104005,0.18397929,-0.22523253,0.055536788,-0.066044815,0.17828709,-0.8924642,0.44937038,-0.34967482,-0.41290593,-0.07274429,-0.16557148,-0.012845695,0.3340137,-0.23773761,-0.21640028,0.28950688,0.0016673555,-0.3151937,-0.47718742,-0.38266185,0.044362117,0.22906418,-0.08496783,-0.18818696,-0.091877185,-0.08049796,0.39713502,0.030178184,0.19701307,0.35047516,0.18033914,-0.49763694,-0.111436255,0.09897738,0.49520096,-0.044886608,-0.047030997,-0.4188663,-0.51705354,-0.2617312,0.059378546,-0.098359026,0.35231707,0.23920222,-0.24331407,1.0376135,-0.106494814,1.1445371,-0.091594875,-0.30684385,0.040634792,0.59104854,-0.0942534,-0.09194488,-0.47163454,1.1348935,0.67475516,-0.09836265,-0.05511107,-0.6402276,-0.3476219,0.08916483,-0.30820456,-0.17914683,-0.053472698,-0.6137574,-0.26122043,0.24269779,0.26738644,-0.11305088,-0.16841936,0.48475328,0.23981623,0.1053034,0.036953676,-0.46915743,-0.19124024,0.40001297,0.20591669,-0.08803299,-0.006188708,-0.41655526,0.27308086,-0.63488966,-0.018164491,-0.3506918,-0.050933268,0.059467256,-0.2869332,0.18627916,0.18937843,0.23162723,-0.5205385,-0.46042845,-0.041137513,0.45233312,0.115135185,0.31766742,0.60129136,-0.31167972,-0.09276116,-0.103140175,0.44222498,1.1282266,-0.40244344,0.036042187,0.30486438,-0.22625558,-0.6002367,0.32712883,-0.37867117,0.13230829,-0.09236947,-0.3775909,-0.635413,0.2712047,-0.002664869,-0.124119766,-0.05340598,-0.6433634,0.07963091,0.15591979,-0.35189447,-0.11233052,-0.21549864,0.14017412,0.87486744,-0.289682,-0.7547636,0.045742746,0.24648719,-0.51349217,-0.43502417,-0.090849966,-0.33063585,0.26628152,0.32866415,-0.415352,0.213762,0.26731274,-0.6547846,-0.10124358,0.1741947,-0.38460135,-0.07278348,-0.5067947,0.23016565,0.62967557,-0.19708925,0.20527662,-0.36747846,-0.6295747,-0.7194908,-0.20974644,0.007034769,0.08412861,0.039010767,-0.65243286,0.09203244,-0.2935331,-0.252029,0.041638978,-0.50248706,0.68739885,0.2238576,0.331275,-0.45734832,-1.025813,0.14600031,0.1354604,-0.15256254,-0.5021493,0.34012875,-0.20302467,0.8270586,0.041249912,0.12539594,0.4132454,-0.8310556,0.38769174,-0.27424824,-0.14022112,-0.634504,-0.0368209,890 -901,0.35403526,-0.09823213,-0.57052124,-0.13003004,-0.2964533,0.17557311,-0.3938241,0.38265264,0.055228706,-0.72656745,0.19809234,-0.28217122,0.0044537685,0.23708634,-0.036452074,-0.5987397,0.20149618,0.258602,-0.53165084,0.6897699,-0.57165515,0.12834662,0.2363698,0.13551994,-0.18319352,0.17393412,0.24886088,-0.24602084,0.008788973,-0.27560043,0.01036789,0.03301781,-0.5961186,0.53314704,-0.0048203506,-0.3178362,0.26647064,-0.31766665,-0.016238352,-0.62260705,-0.07295058,-0.81869745,0.5000725,0.09511418,-0.30246362,0.12891349,-0.004904906,0.28581437,-0.23813546,0.1739822,0.38258395,-0.4815614,-0.3781313,-0.45696244,-0.18209873,-0.65099746,-0.4509774,-0.13552584,-0.4927059,-0.06371436,-0.26908287,0.18584315,-0.19729583,0.06800796,-0.12396344,0.122299396,-0.42086005,-0.10228389,0.020129139,-0.35441002,0.25250262,-0.46983087,-0.019977054,-0.18968765,0.17117745,0.16158143,-0.25143656,0.27816495,0.2261945,0.6323221,0.1079432,-0.2680402,-0.11992782,-0.20888881,0.25008157,0.60006595,-0.1574282,-0.11912393,-0.27780998,-0.23235293,0.04311949,0.048959654,-0.059691545,-0.4347342,-0.0072585307,-0.22645585,-0.4316096,0.08416239,0.3857461,-0.50673527,0.09660444,0.37757826,0.3792189,-0.13377377,-0.19621104,0.040454928,-0.05951721,-0.5074476,-0.23927128,0.31622836,0.1083822,0.46841368,-0.008315834,0.16347711,0.6662771,0.06795007,-0.17228492,-0.17475109,-0.039999247,-0.009429176,-0.21703815,-0.23769026,0.31663752,-0.6572682,-0.18707085,-0.5779732,0.9564371,0.008816714,-0.9241781,0.4963294,-0.49161625,-0.09322048,-0.14784229,0.6961341,0.6067176,0.74810314,-0.12567872,0.8003126,-0.48873594,0.17030703,-0.32397023,-0.24658024,0.30895075,-0.026589742,0.3014907,-0.4192451,0.21164536,0.14845742,0.035037994,-0.17408375,0.73823494,-0.20784819,-0.12520039,0.30440387,0.70120853,-0.36347273,-0.03464571,0.45313355,1.2021762,0.641114,0.23490562,1.2725451,0.25770926,-0.26486805,-0.017141024,-0.017120458,-0.81052333,0.22958767,0.40856025,1.0296767,-0.12358699,0.21693452,0.020954618,0.44626155,-0.11032569,0.0107417,-0.1448278,0.2771481,-0.2521848,-0.18353891,-0.33740678,-0.2982227,0.07523251,-0.03197837,-0.032176625,0.42818627,-0.038392145,0.47557643,0.0052889325,1.8123993,0.013960605,0.21331894,0.101972334,0.31868982,0.1637296,0.005389318,-0.21869884,0.2536793,0.23671865,-0.039795436,-0.38996398,0.17223959,0.00047036633,-0.60951453,-0.027983835,-0.31987,-0.05431955,-0.13477136,-0.20788594,-0.25914755,0.28640845,-0.41529894,0.33956146,-2.484944,-0.08718919,-0.12671585,0.22637211,-0.22092664,-0.20786393,-0.22394651,-0.36858854,0.6329667,0.44389638,0.5031443,-0.45497462,0.5338351,0.48967743,-0.35193774,-0.10301294,-0.72125053,0.03876577,-0.27118316,0.38241234,-0.01262185,-0.36054087,-0.22212149,-0.034802724,0.60537434,-0.23171149,0.18501513,0.4118364,0.24976303,0.17616601,0.388176,-0.11284533,0.5448403,-0.37537375,-0.24403907,0.17445655,-0.38186768,0.351006,-0.23131734,0.25719157,0.34651193,-0.51032233,-0.7725482,-0.48095512,-0.2971582,0.99414235,-0.51138675,-0.43992448,0.25806138,0.14201865,-0.31835386,0.17848277,0.4237502,-0.05391567,0.17232783,-0.6367463,-0.08042813,0.17175086,0.50167423,0.07261657,0.06446957,-0.47602454,0.60389495,-0.09426433,0.74367374,0.4928943,0.00882345,-0.067133665,-0.18564576,0.15977158,0.9756017,0.101439394,0.24823375,-0.23623371,-0.18735512,-0.22812462,-0.097192205,0.015175288,0.41096184,0.71504664,-0.006183309,-0.06431646,0.33651367,-0.3426982,-0.19727826,-0.03304572,-0.54473025,0.010431248,0.20871729,0.4963329,0.5327147,0.16266273,0.31790683,-0.08918276,0.5695034,-0.24850188,-0.44175175,0.49631247,0.41407773,-0.14353736,-0.08071934,0.5246448,0.65784025,-0.24458261,0.6098626,-0.43852457,-0.5631004,0.2856737,0.023159439,-0.4692935,0.18708295,-0.4306508,0.2346719,-0.86940914,0.27608293,-0.42880055,-0.64622974,-0.6268361,-0.085236646,-3.6310422,0.23191915,-0.032872345,-0.24428642,0.1634441,0.062491626,0.3041885,-0.4728724,-0.29643106,0.15402648,0.24489331,0.56991315,0.04599136,-0.16186018,-0.41838375,-0.13619284,-0.07259489,0.26843712,0.039888065,-0.014917977,-0.13259272,-0.35141954,0.052524086,-0.39675882,0.03925866,-0.042726934,-0.72719026,-0.31880707,-0.21729898,-0.52973217,-0.49177673,0.6927975,-0.58963436,-0.05882634,-0.22636652,-0.012271664,-0.17012793,0.34634233,0.020414943,0.09248052,-0.10232406,-0.2722902,-0.3708761,-0.4643619,0.046219885,0.0707633,0.19199128,0.5817239,-0.084269606,-0.08121317,0.6516013,0.37965393,0.046146378,0.8187375,0.26923007,-0.1561142,0.29092988,-0.3817114,-0.09731501,-0.5917918,-0.24587257,-0.3470993,-0.42879686,-0.43794894,0.07971051,-0.36544505,-0.67461705,0.62161344,0.27522993,-0.46986413,0.21120398,0.36580873,0.18503927,-0.12639445,-0.026989976,-0.30047324,-0.0040090284,-0.51839715,-0.43342045,-0.72022706,-0.5544862,0.23129265,1.1039943,-0.16501223,-0.03698274,0.22848438,-0.09797705,0.07343796,0.29863086,0.0126255555,0.25102422,0.3960165,0.09897258,-0.73339295,0.64321285,-0.16833287,0.036629874,-0.5269709,0.23824652,0.5605542,-0.94391656,0.39603305,0.48383793,0.21796311,0.13661514,-0.5374057,-0.37408748,0.0972231,-0.24647129,0.34179714,0.037244864,-0.9597366,0.5505362,0.22929345,-0.21331477,-0.92012936,0.19509703,-0.23482953,-0.28186733,0.15693195,0.37618545,-0.087222345,0.10567071,-0.44721308,0.04869722,-0.70152336,0.16585466,0.19795947,-0.103908144,0.4827861,-0.15876801,-0.09901723,-0.6674414,-0.17999327,-0.4399607,-0.2239338,0.38010252,-0.034456823,0.13370748,0.2617015,0.2078347,0.3993169,-0.41109172,0.14225914,-0.16842872,-0.2600271,0.4746717,0.42365885,0.24834292,-0.47728953,0.5920921,-0.23282434,0.06445189,-0.5614662,0.00818187,0.41504678,0.2674069,0.32935077,-0.19798179,-0.0650536,0.16738671,1.0252799,0.21071875,0.35029736,0.19461425,-0.15106241,0.5716612,0.035098687,0.15356956,0.059111666,-0.44320002,-0.09197149,-0.013169289,0.16390239,0.28700328,0.122999884,0.6327787,-0.13632132,0.003132065,0.080406554,0.2647296,0.18734574,-0.5249993,0.48954293,0.17198062,0.37010124,0.86109614,0.024967998,0.09738036,0.7434554,-0.4096943,0.2790017,0.060761113,-0.21252431,-0.368517,0.5833671,-0.7367756,0.07744657,-0.2036166,-0.024329558,0.2613268,-0.16500506,0.49923134,0.8910627,-0.06369794,0.25977907,-0.071138196,-0.17591952,0.020959726,-0.22509623,-0.1734652,-0.33906412,-0.5051436,0.717611,0.24649465,0.48690498,-0.301436,-0.092197895,0.20403421,-0.0153322965,0.3172262,-0.0350441,-0.022691796,0.12653153,-0.49463424,-0.22385979,0.8321659,-0.0134031875,0.12108082,0.3115854,-0.27838954,0.52023745,-0.06258341,-0.23944974,-0.13817064,-0.5007707,0.2953626,-0.4164476,-0.291918,0.5949356,-0.09275081,0.34529778,0.07131127,0.11934212,-0.09131525,0.43836525,0.31596193,0.70045334,0.14516641,-0.29189292,-0.014903545,-0.08461901,0.09569493,-0.31351593,-0.17803927,-0.27485967,0.14665978,-0.9096373,0.3422093,-0.26640448,-0.31427887,0.25674775,-0.02409883,-0.018922018,0.4434118,0.045717616,-0.08414557,0.05806466,0.10548123,-0.30554488,-0.24532308,-0.40549386,0.1496079,-0.29235458,0.12697703,-0.09440968,-0.041392483,0.15225677,0.3770727,-0.0008463785,0.06980691,0.05541865,0.18751252,-0.31243008,0.17610429,-0.06698938,0.44493553,-0.08129609,0.010265201,-0.15795445,-0.0946511,-0.2640648,-0.043475527,-0.16622971,0.21608083,0.1265307,-0.54303604,0.8907933,-0.14280806,0.83080816,0.15098451,-0.3405924,0.13193624,0.4894599,0.019453267,0.11096696,-0.36023402,0.9605627,0.6893189,-0.11580872,-0.03595199,-0.50371784,-0.34887543,0.34187827,-0.24971263,-0.11048042,-0.122489594,-0.8162736,-0.23564868,0.22993998,0.37242934,0.081048645,-0.18380427,0.14158438,0.109813355,0.27077302,-0.065920606,-0.45625266,0.04675466,0.29226342,0.22018503,0.12224901,0.09966087,-0.29012612,0.30694377,-0.921138,0.16373965,-0.41560975,-0.22549449,0.12403903,-0.07909801,0.19537199,0.04169901,0.27699503,-0.14081036,-0.28057078,0.057958525,0.54688853,0.36001864,0.4836268,0.9837756,-0.21585262,0.04425894,0.0018339878,0.4495059,1.0913182,-0.35473147,-0.14189814,0.46702346,-0.22596703,-0.60955256,0.07310095,-0.23697837,0.0013732215,-0.09944477,-0.688245,-0.27770784,0.19712786,0.2457078,-0.3747178,0.035981666,-0.48810396,0.14637297,0.24093823,-0.26982114,-0.46203884,-0.21916904,0.16368149,0.9066272,-0.23121911,-0.35599503,0.033134192,0.108417146,-0.5241224,-0.53633815,-0.050780218,-0.4290445,0.27904415,0.41109964,-0.39428052,0.2454537,0.14579429,-0.62971705,-0.0055764965,0.22413345,-0.34967843,0.0028651368,-0.5021604,0.089859426,0.9138383,0.21200953,-0.060851455,-0.48184142,-0.6339045,-0.68052745,-0.31545377,0.48493275,0.021961376,-0.05253799,-0.2487321,-0.047465462,-0.1603286,-0.11119155,-0.01839869,-0.5017121,0.399948,-0.082451,0.4992236,-0.10769264,-0.92031604,0.14922374,0.2573696,-0.126822,-0.4331909,0.16585462,-0.47895694,0.9912786,-0.012288659,-0.001435419,0.33768272,-0.7710023,0.30394897,-0.58104503,-0.08232365,-0.61703736,0.001474157,893 -902,0.4407859,-0.17065947,-0.52726334,-0.2499839,-0.31617638,-0.060323372,-0.023894975,0.62391627,0.46554637,-0.018690139,0.07001531,-0.019605586,-0.143369,0.49638602,-0.16502474,-0.9298453,0.024050675,0.11926543,-0.62288064,0.4719104,-0.41628763,0.2613639,-0.17334183,0.55031884,0.17423661,0.14761555,0.029265516,0.06470439,0.28483462,0.000529622,-0.06285983,0.21939029,-0.46642253,0.33917025,-0.040301524,-0.24851261,0.029347016,-0.3820363,-0.33518836,-0.87066245,0.43518475,-0.56752235,0.57424164,0.08060575,-0.43897453,0.023680212,0.13284205,0.29610696,-0.45947334,-0.08706658,0.08887624,-0.08252866,0.07589533,-0.02659183,-0.35095248,-0.33940756,-0.6184843,-0.077971436,-0.41394138,-0.12862913,-0.25608328,0.1635767,-0.36165503,-0.11951826,-0.25945407,0.6479514,-0.2982712,0.14691253,0.37772608,-0.18467207,0.21278293,-0.44761062,-0.12949951,-0.093013845,0.09480917,0.18449199,-0.3515686,0.36496723,0.26857057,0.35340902,-0.09863508,-0.26011375,-0.23302011,-0.1406233,-0.06674292,0.3700695,-0.24644786,-0.2894683,-0.21315467,0.062530324,0.2377065,0.35548222,0.0035042565,-0.23253246,-0.017991006,-0.13512789,-0.1195394,0.5587395,0.45802274,-0.25714687,-0.29048893,0.30797634,0.23345439,0.20850806,-0.20750594,0.17586891,0.03774755,-0.57430345,-0.23153807,0.09238684,-0.1512205,0.46054807,-0.084735245,0.15189406,0.82446104,-0.14059468,-0.23218727,-0.0688681,0.11289088,0.038580667,-0.4297121,-0.3102267,0.19937742,-0.50457495,0.110747896,-0.15466343,0.8508079,0.14226007,-0.7668981,0.18132323,-0.58620423,0.10412393,-0.18632956,0.6009671,0.9395828,0.49466538,0.32835126,0.74726266,-0.45586523,0.10132912,0.06943036,-0.26118907,0.124034464,-0.10342121,0.09790298,-0.50939447,-0.034515966,-0.029050201,-0.07634547,0.17016138,0.0210488,-0.46682385,-0.21517245,-0.017749252,0.81758004,-0.2578661,-0.13740633,0.76958114,0.9604459,1.1058893,0.09670129,1.1140894,0.29079822,-0.095021784,0.23003049,-0.2302419,-0.62068576,0.19353946,0.16374932,-0.23198362,0.2428168,-0.05427386,-0.021651268,0.4723289,-0.2422529,-0.059698284,0.0019200556,0.30661973,0.052038927,-0.26463988,-0.41131893,-0.4824792,0.06857165,0.02195265,-0.03288595,0.36073926,-0.2969494,0.3056993,0.0393027,1.1978997,0.3469971,0.03874899,0.047688723,0.44748938,0.2529819,-0.27655426,-0.1911078,0.2896503,0.48140678,0.07356323,-0.5919313,0.2071228,-0.30917585,-0.18699916,-0.060388308,-0.44991302,0.028349796,-0.13528071,-0.4066658,-0.21006499,-0.15609972,-0.104913615,0.4105235,-2.8472373,-0.061427146,-0.09494736,0.12279234,-0.11257281,-0.12651585,-0.054629516,-0.49029422,0.24309766,0.39446008,0.35913268,-0.61880785,0.3745706,0.39546537,-0.54300135,-0.062773086,-0.6752258,-0.22474344,0.078028984,0.26786846,-0.078350194,0.21046853,-0.09618673,0.30023837,0.6269446,0.17971802,0.08060191,0.18821661,0.50410664,-0.10431097,0.52196985,-0.11089006,0.48389718,-0.3941156,-0.10795916,0.15591992,-0.5146363,0.43429065,0.121332705,0.11448478,0.61060184,-0.49058416,-0.9025533,-0.4103185,-0.17477208,1.2292653,-0.36537054,-0.26887476,0.39416078,-0.44020852,-0.16187745,-0.10346606,0.5325925,-0.101032116,-0.16069557,-0.62329376,-0.055425104,-0.021187032,0.29604566,-0.096277855,-0.12896618,-0.079746485,0.5116791,-0.047640193,0.5686782,0.20860833,0.11668384,-0.46092656,-0.5670552,4.3225784e-05,0.5518091,0.37950453,0.08922106,-0.0995048,-0.13928495,-0.18902801,-0.06238538,0.09870228,0.73527294,0.77069664,-0.13333087,0.12459018,0.41011062,-0.20626569,0.0248705,-0.08953912,-0.2576888,-0.15301119,0.06896409,0.4405035,0.7599612,-0.13842617,0.42165127,-0.05829147,0.20002896,-0.19132538,-0.4568931,0.5583397,0.8049666,-0.11481502,-0.23733978,0.5861445,0.35442278,-0.3429515,0.40024078,-0.45543823,-0.15740697,0.76043296,-0.1344185,-0.3903452,0.010695373,-0.28069147,-0.092615105,-0.94176143,0.37278402,-0.29377612,-0.64279324,-0.44529784,-0.021164,-3.9207084,0.16304593,-0.27365914,-0.21883963,-0.2622522,-0.033662777,0.28328404,-0.5674836,-0.59599835,0.15167391,0.20809229,0.5382839,-0.13686685,0.08794132,-0.38599655,-0.30843222,-0.307588,0.1653841,0.16412435,0.2860128,0.0031332572,-0.31628385,-0.05867328,-0.0539338,-0.5706336,0.084922455,-0.582863,-0.4033629,-0.09580805,-0.6758025,-0.16840875,0.821704,-0.25122812,-0.025110478,-0.17349319,-0.04539925,-0.13405125,0.33493087,0.19836225,0.25478983,0.06807104,0.018710986,-0.15518317,-0.31333736,0.20835467,0.042953607,0.49694657,0.16201766,-0.08054952,0.19295485,0.6395152,0.67469054,-0.0003350973,0.75923204,0.38320565,-0.07940954,0.3351028,-0.3709383,-0.38047218,-0.44640234,-0.24385363,-0.17211038,-0.33739635,-0.4015551,-0.07069711,-0.26934218,-0.81870526,0.3637413,0.031136194,0.25829682,-0.16990362,0.17882985,0.3555913,-0.16689889,0.17766671,-0.060548287,-0.21472692,-0.39840588,-0.28532287,-0.6634372,-0.3947183,0.31231955,1.0737575,-0.34110418,0.048446327,-0.07030691,-0.4015272,0.046970546,0.18464416,0.17639816,0.28558728,0.21590261,-0.20254202,-0.63867086,0.40382826,-0.19723749,-0.1264811,-0.68391186,0.07062445,0.820117,-0.5714434,0.76527596,0.12083172,0.015457928,-0.20738347,-0.6666436,-0.3442748,0.14843573,-0.017247101,0.52558726,0.29624248,-0.7054791,0.47534263,0.278765,-0.1496097,-0.6398664,0.4654919,-0.13314618,-0.32530567,-0.017028809,0.3858079,0.12380188,-0.08686149,0.06368526,0.35852483,-0.30284992,0.13229808,0.19498412,-0.07675493,0.23113339,0.055244416,0.057543218,-0.7066886,0.06415876,-0.67760205,-0.17356043,0.29018787,0.038175624,0.14259818,0.08981922,-0.06552831,0.2637817,-0.15122445,0.14073873,-0.013745884,-0.24411379,0.37803403,0.51116383,0.41410124,-0.34980765,0.5521601,0.12648283,0.07983923,0.24009494,0.271426,0.4536165,0.21189289,0.5244224,-0.21442668,-0.25969574,0.22342749,0.73640853,0.12489017,0.31941125,0.09841961,0.023112396,0.2044038,0.16385192,0.06983048,0.061647397,-0.24437343,-0.1472416,-0.14409716,0.23833914,0.53588265,0.09318664,0.22909577,-0.018255508,-0.28091618,0.1970384,0.234459,-0.06433637,-1.2927359,0.4324324,0.25004125,0.7938207,0.39726067,0.28223935,-0.19874598,0.6985416,-0.13751061,0.20147704,0.58403534,0.18181874,-0.47846428,0.6542661,-0.57157815,0.6721535,-0.019505316,0.0095566185,0.08344624,0.26532805,0.37954366,0.8079508,-0.096393645,-0.019641653,0.090298206,-0.3642056,0.108745135,-0.44246197,0.09996179,-0.52543306,-0.35404572,0.5067424,0.5101382,0.15279573,-0.35986912,-0.032825578,0.09703028,-0.082036965,-0.05363092,-0.17290907,-0.17395155,-0.16250119,-0.6196986,-0.2292289,0.45343232,-0.109615296,0.066763766,0.029913014,-0.14675735,0.29157078,-0.1027239,-0.044114094,-0.07560408,-0.7971544,-0.0108579,-0.27806285,-0.49608627,0.5408121,-0.49303687,0.2130708,0.20919792,0.045740705,-0.43280736,0.32832572,0.04715256,0.7386672,-0.24206881,-0.092886806,-0.3600937,0.10965911,0.1030537,-0.25186843,-0.06720417,-0.43780628,-0.02332819,-0.46053088,0.34554327,-0.080060326,-0.26869223,-0.23003155,-0.1253009,0.121987544,0.44509855,-0.2637918,-0.06042259,-0.25654456,-0.28937554,-0.38988647,-0.2232007,-0.28292468,0.2995053,0.102497436,0.0039103427,0.043963138,-0.13615239,-0.110066205,0.25217745,-0.07716604,0.27719593,0.3113372,0.067072086,-0.18282229,0.013287127,0.0027635198,0.40819708,0.1356333,-0.15387301,-0.39121106,-0.22231494,-0.19533002,0.19788122,-0.20167732,0.3011534,-0.08884362,-0.42792454,0.78159374,0.05395648,1.1496128,-0.11585525,-0.4066175,0.10494328,0.45163098,0.09062535,-0.018571714,-0.12682916,0.77195215,0.54250944,-0.07861995,-0.172702,-0.24806571,-0.116302334,0.26317027,-0.27691928,-0.28685912,-0.02570183,-0.63393193,0.049384754,0.22433466,0.10024353,0.2845836,-0.011703898,-0.22915141,0.04749153,0.23874015,0.3819003,-0.43735328,0.12787145,0.12456298,0.3924687,0.24169742,0.20471036,-0.4401184,0.3357924,-0.72129536,0.27976763,-0.4065087,0.17218496,-0.2505716,-0.28982124,0.08549816,0.06248754,0.31572095,-0.26655486,-0.19545062,-0.24512087,0.5970685,0.23624535,0.16002576,0.6667995,-0.23776908,-0.12025261,0.17303784,0.54798967,1.0268168,-0.09111759,-0.30064687,0.12112262,-0.35584155,-0.8964049,0.14453878,-0.39415208,0.1672256,-0.0852265,-0.10201314,-0.35767698,0.19989367,0.12962316,0.13145769,-0.004309498,-0.53674877,-0.36074963,0.4507903,-0.27599305,-0.36709538,-0.33402833,0.29421198,0.6180901,-0.19904667,-0.36459944,0.013584316,0.1990615,-0.1631425,-0.51502883,0.045419823,-0.42614743,0.3285273,0.018172491,-0.51378286,-0.018486291,0.09598645,-0.49716714,0.19956188,0.15072234,-0.29153,0.02388054,-0.06746817,-0.27223098,1.0288206,-0.1412699,0.082084745,-0.6313977,-0.5387153,-0.8409675,-0.3479508,0.4218396,0.26512748,-0.08349099,-0.78109217,-0.051411923,-0.033262096,0.025123915,-0.017760143,-0.4577539,0.41859105,0.11688641,0.27033907,0.102570124,-1.0090368,0.09160442,0.13387631,-0.16737403,-0.6412427,0.51377594,-0.18913858,0.8189427,0.057033617,0.051208694,0.19276147,-0.4143429,0.207209,-0.32081234,-0.30873248,-0.40196028,0.17370753,899 -903,0.37338868,-0.20687266,-0.43836305,-0.21011592,-0.46394494,-0.014422526,-0.42083475,0.16341294,0.32992527,-0.31740236,-0.22133927,-0.0034292303,-0.09009097,0.10813645,-0.17619115,-0.40451518,-0.10984359,0.10535882,-0.87414837,0.5850904,-0.5164202,0.3365513,0.16823316,0.504603,0.08857235,0.21477777,0.36755773,0.032844804,0.08115756,-0.40715873,0.00960809,-0.07875603,-0.7898539,0.2778835,-0.34686413,-0.41642675,-0.025967963,-0.70399386,-0.12392956,-0.85117555,0.32592916,-0.839323,0.60458857,-0.08701346,-0.23523076,-0.1828606,0.6754113,0.19123626,-0.09753748,-0.17032997,0.25203595,-0.33153844,-0.25143102,-0.2589518,0.13960983,-0.45139253,-0.52890337,-0.10113583,-0.52096975,-0.38854074,-0.24671936,0.35615888,-0.37711096,0.09362335,-0.15844579,0.7643867,-0.39645264,0.17386596,0.16736372,-0.24489321,0.19338417,-0.7563715,-0.13192378,-0.069733925,0.5746798,0.14715575,-0.15120932,0.44708595,0.27988887,0.38994554,0.19667141,-0.3853804,-0.24258143,0.033257376,-0.24559145,0.48033538,-0.15812615,-0.2339474,-0.117375135,-0.022391418,0.5699914,0.40488735,0.05311429,-0.049416464,0.10645783,-0.19819565,-0.19986065,0.79222804,0.52686125,-0.30638584,-0.08595332,0.16436231,0.33078894,0.4872358,-0.22238445,-0.078931354,-0.06036957,-0.69852734,-0.2438341,0.077410586,-0.09100965,0.3734981,-0.13050938,0.24091448,0.672786,0.027595945,-0.07666256,0.23081887,0.021648759,0.12161431,-0.14255372,-0.4263982,0.38456142,-0.58646876,0.089957945,-0.44159886,0.72925067,-0.14951253,-0.7039206,0.33929718,-0.61013085,0.15709175,0.14809512,0.5557799,0.91895455,0.745593,0.47499284,0.8735222,-0.043227863,0.025777036,-0.037566047,-0.1398703,0.21597524,-0.4265922,0.2894949,-0.3819891,0.02420717,-0.26965377,0.28101394,-0.0011376739,0.5691555,-0.59178036,-0.17110176,0.25336888,0.7734823,-0.106025435,0.10837301,0.747921,1.0446954,1.1089627,0.1472918,1.0095617,-0.032007735,-0.2372144,-0.008780186,0.18677671,-0.8032279,0.25898948,0.344321,0.041643303,0.20045447,-0.06893241,0.00017161667,0.46008906,-0.37890482,-0.19178323,-0.049943898,0.37797156,0.21674085,-0.14638765,-0.42404106,-0.42855784,0.13122503,0.048539992,0.1893849,0.23712273,-0.34262228,0.332567,-0.11734261,0.9771824,-0.09785235,0.08085767,0.24647407,0.53991455,0.30675098,-0.12601866,0.100386895,0.19173187,0.18550837,0.16089566,-0.63717353,0.2886875,-0.31019577,-0.26021257,-0.1613241,-0.4060793,-0.46280566,0.113794215,-0.41369793,-0.38478914,-0.22737904,-0.2943812,0.2090673,-2.654171,-0.23146307,-0.19192319,0.4327917,-0.21682619,-0.18005168,-0.04179247,-0.58043957,0.3491634,0.3082724,0.69987226,-0.5598657,0.44050947,0.60595,-0.8274072,-0.2271409,-0.62880754,-0.0728947,0.06550184,0.44375697,0.12160162,-0.4005653,-0.21931536,0.12213918,0.7440285,0.2501568,0.15115516,0.51568437,0.52510875,-0.13622062,0.6685937,-0.18907803,0.5103857,-0.34372985,-0.23124285,0.27629933,-0.54502314,0.043489683,-0.34744084,0.03216858,0.84016114,-0.59835154,-0.97933894,-0.56678265,-0.026135633,1.1813692,-0.0894446,-0.7113817,0.1084418,-0.5620996,-0.13850711,0.046128992,0.81059045,-0.16925271,-0.007972066,-0.61203593,0.020197019,-0.2409994,0.29899412,0.011787798,-0.12138909,-0.59007055,0.8803661,0.005075189,0.6025643,0.070052736,0.25903976,-0.6766255,-0.29845676,0.098537385,0.56806,0.60703033,-0.019496053,-0.25644353,0.055260662,-0.11014304,-0.3026602,-0.08435765,0.92718506,0.45793185,-0.099734396,0.22781722,0.40986907,-0.15517813,0.13222249,-0.14242692,-0.24200201,-0.41833544,0.13457012,0.6098122,0.8262701,0.057116628,0.3299807,-0.046027977,0.21197136,-0.30047712,-0.52720875,0.65391254,0.5555253,-0.2329876,-0.008992541,0.5056301,0.6292244,-0.2818043,0.5286327,-0.5687017,-0.48739043,0.4740665,-0.09948885,-0.5586627,-0.023336021,-0.42917708,-0.054521635,-0.50853556,0.31919196,-0.51241195,-0.5403249,-0.47876522,-0.13852602,-2.3021927,0.21518616,-0.24436726,0.049513314,-0.6240749,-0.24329282,0.2622061,-0.5305856,-0.7557869,0.105066024,0.2675867,0.74339765,-0.12177405,0.12205607,-0.21863031,-0.56874007,-0.09543881,0.21160476,0.12868063,0.2905458,-0.004242564,-0.20667839,0.032688428,0.056427762,-0.39390126,-0.031052867,-0.4637933,-0.48362327,-0.026362075,-0.5189427,-0.29403245,0.6338094,-0.3841568,0.069414295,-0.39365327,0.12515198,0.038920708,0.10889101,-0.0027939528,0.25163853,0.197263,-0.19954006,0.09606471,-0.1947302,0.4825851,-0.07057163,0.40690675,0.16629575,0.11573527,0.23711777,0.40276054,0.6622534,-0.20074435,1.2326708,0.21223791,-0.053945493,0.3575605,-0.17439888,-0.43323183,-0.70708066,-0.02229636,0.26692358,-0.34855697,-0.26882467,0.30145475,-0.28389376,-0.7809133,0.6023137,0.037700083,0.32799146,0.024407139,0.3569266,0.42363715,-0.10875541,-0.079423256,0.074846625,-0.12047104,-0.53674185,-0.26253542,-0.7592543,-0.32873818,-0.3086557,0.9926379,-0.21815455,0.107462354,0.33350268,-0.12217516,0.11775803,-0.07559169,0.056894746,0.118505515,0.4648699,0.32798266,-0.6140943,0.24585868,-0.196492,-0.06288785,-0.4744741,0.3993063,0.7680142,-0.6503708,0.5885547,0.57670003,0.09357139,-0.41631973,-0.66024435,-0.0055035003,0.08614763,-0.22461657,0.34405562,0.34413555,-0.7559244,0.5514326,0.15125987,-0.42810106,-0.85539246,0.3778837,-0.030023703,-0.3122432,-0.18392694,0.385777,0.37892005,-0.08225503,0.036606085,0.26277384,-0.4580623,0.4093441,-0.2531845,-0.073691584,0.28013366,-0.10968869,-0.42941907,-0.69787073,0.018092126,-0.6112666,-0.442773,0.38803756,-0.11661529,-0.012730156,0.3752469,0.19599535,0.3809737,-0.030897805,0.13336043,-0.1656445,-0.31846306,0.19825952,0.570218,0.48822224,-0.38072327,0.5330309,0.16079396,-0.0586873,0.1941924,0.16663383,0.1828825,0.0069106705,0.5028641,-0.2611136,-0.12268173,0.14032365,0.915102,0.1644409,0.28953508,-0.029227247,0.02736342,0.483315,-0.064779356,0.25194076,-0.16767712,-0.70878834,0.043703776,-0.19327855,0.054705698,0.50114167,0.058775783,0.24431606,-0.03193924,-0.10240557,-0.07358008,0.312462,-0.4988264,-1.1049753,0.43444267,0.30367973,1.0228674,0.52925366,0.1310022,-0.21925063,1.0615679,-0.09756004,-0.09808701,0.47514662,0.074715935,-0.31455374,0.71332735,-0.5947707,0.49492815,-0.20611812,-0.071894765,-0.06693061,0.20605087,0.19909795,0.6245566,-0.28701895,-0.013737778,-0.14553721,-0.2765824,-0.012539159,-0.2057231,0.17951716,-0.33643046,-0.4512743,0.8267286,0.25156096,0.32158408,-0.40161562,0.15927471,-0.10519991,-0.20522285,0.16669078,-0.015315689,-0.30908152,0.05742353,-0.5179761,0.10373425,0.44021654,0.008245637,0.2932408,-0.08540157,-0.1710283,0.017182777,-0.06644466,0.020670608,-0.08957801,-0.74511856,0.2077173,-0.30599248,-0.5541249,0.458889,-0.2737118,-0.16450699,0.27799344,0.10573679,-0.013952534,0.35442722,0.14741983,0.47701597,-0.16190249,0.026005983,-0.2174402,0.012770772,0.015058741,-0.37698314,0.16145672,-0.34197125,0.23861726,-0.5460803,0.6325082,-0.1698351,-0.41467324,0.26454177,-0.12066424,-0.06274183,0.53819436,-0.17380925,0.0718854,0.1172589,-0.25352776,-0.1728176,-0.24179454,-0.30867392,0.1505559,0.102565266,0.017486146,-0.22679074,-0.22615834,-0.33535132,0.51647574,-0.08099378,0.5115833,0.19055827,0.20805462,-0.335533,0.1799527,0.039845217,0.84355134,0.16925202,-0.057803024,-0.4815285,-0.3869492,-0.40330586,0.45381722,0.07372068,0.093252264,0.07375822,-0.2912683,0.8779921,-0.20118488,0.96927285,-0.22715282,-0.2650351,0.019015292,0.66080433,-0.15395765,0.06697079,-0.33170894,0.8892335,0.35182497,-0.06341223,0.119740725,-0.443259,0.12072003,0.24313855,-0.3511165,-0.08330835,-0.14197588,-0.46006235,-0.30482894,0.18717182,0.2272969,-0.07304784,-0.276293,-0.039111767,0.23385425,0.15691514,0.30022037,-0.6007561,-0.29068843,0.3217046,0.27556744,-0.16154602,0.13776745,-0.52760035,0.196927,-0.8650456,0.2724984,-0.6390927,0.04472821,-0.15709339,-0.2222191,0.22955902,-0.020317784,0.3977816,-0.33790526,-0.41526023,0.023635939,0.30932906,0.23245434,0.22947697,0.5938223,-0.21716557,-0.02319024,0.20261465,0.7445922,1.0703777,-0.3391964,0.09248834,-0.058132272,-0.5756013,-0.57595164,0.28726384,-0.3674188,-0.31782162,0.1380246,-0.23948763,-0.3871051,0.12592083,0.22506242,0.24376178,-0.11160881,-0.8975546,-0.26786527,0.3672622,-0.24529189,-0.1563855,-0.30328253,0.26928398,0.57284015,0.013408731,-0.14381778,-0.12832224,0.5610245,-0.15447827,-0.63451,0.1508912,-0.58516854,0.29999536,-0.073152915,-0.411141,-0.116536535,0.0028965871,-0.6225683,0.068644606,0.17629413,-0.4008861,-0.09110504,-0.25275144,0.115986355,0.7964887,-0.18455034,0.06430745,-0.298112,-0.62343,-0.92405796,-0.14524575,-0.037820697,0.22901623,0.013306181,-0.5373301,-0.208472,-0.22278242,-0.41107735,-0.016142005,-0.6143301,0.18581061,0.1914162,0.5637289,-0.4886985,-0.8539534,0.21753018,0.08907294,-0.054073155,-0.32442564,0.34184822,0.15571703,0.6754597,0.15444238,-0.1369883,-0.29745737,-0.4568744,0.23274462,-0.30724853,-0.19020866,-0.7580454,0.15286954,906 -904,0.17503585,-0.34584734,-0.7015689,-0.14277412,-0.3849735,-0.026464125,-0.38634896,0.27902016,0.034521505,-0.27110374,-0.21703659,0.07197166,-0.0050821207,0.2648256,-0.19612814,-0.4528922,-0.21949951,0.21103425,-0.83288604,0.5053921,-0.5489669,0.26790148,0.001198257,0.47067606,0.06339536,0.2656447,0.28768027,0.025830412,0.10273785,-0.18811469,-0.08454567,0.2934384,-0.5371013,0.25430182,-0.21959615,-0.62838775,0.029584214,-0.4575748,-0.019182742,-0.8476015,0.2800318,-0.9129389,0.56090504,-0.15425144,-0.2371978,-0.011118129,0.34965575,0.3743831,-0.17090571,-0.13479592,0.37273192,-0.13894634,-0.25584733,-0.35890555,0.06403326,-0.2470619,-0.3690339,0.010872508,-0.61821944,-0.32284883,-0.21788251,0.35262856,-0.2674615,0.06956344,-0.24299127,0.3547515,-0.41353962,0.07404568,0.0670605,-0.12323105,0.2630408,-0.61960036,0.09460921,-0.12702322,0.5430908,-0.15176491,-0.23382698,0.22543995,0.1286505,0.34258676,0.057548095,-0.17345947,-0.23211907,-0.16375408,-0.021213502,0.45921394,-0.25491512,-0.28683278,-0.14846192,-0.017973185,0.42927146,0.38320664,-0.0360095,-0.23639087,0.03359774,-0.25394103,-0.21507676,0.6401429,0.43174925,-0.2303877,-0.24146323,0.3383458,0.6174445,0.26342204,-0.32523245,-0.06615217,-0.047837455,-0.52844036,-0.13500714,0.118050836,0.115394294,0.4017334,-0.17404164,0.3896245,0.71235114,-0.03459452,-0.10621085,0.13001674,-0.0353025,-0.2076785,-0.14376928,-0.2728187,0.18153997,-0.563891,0.1482582,-0.23720114,0.7000496,-0.015788613,-0.9132164,0.46838114,-0.5699336,0.044619042,-0.060260523,0.5606257,0.55027145,0.62196034,0.17696774,0.7017348,-0.22975738,0.20153223,-0.1916318,-0.28996268,-0.058652263,-0.13684602,0.11140531,-0.47814667,0.16805644,-0.28654632,0.2340705,-0.047758486,0.23012601,-0.49115214,-0.15948214,0.22452547,0.637077,-0.347388,0.017772734,0.8186066,1.0010939,0.9688535,0.100531824,0.9617974,0.024240104,-0.16293858,0.0127625065,-0.012554675,-0.777375,0.20536841,0.45721066,0.16128632,0.16023491,-0.0991201,0.12264368,0.45677546,-0.25580904,-0.16265272,-0.19166107,0.2896695,0.12496519,-0.016737664,-0.35026208,-0.23330192,0.193835,-0.031773485,0.044554442,0.20645611,-0.23005497,0.4500548,0.15657325,1.3524374,-0.13703072,0.11305956,0.14285137,0.5135839,0.2159486,-0.1236398,-0.09995911,0.2523742,0.39747766,-0.02722498,-0.5832508,0.26622504,-0.21677692,-0.46990636,-0.061179694,-0.28182352,-0.3419167,0.012829469,-0.4649457,-0.30394664,-0.09408712,-0.2480495,0.31191155,-2.888921,-0.23607671,-0.07614759,0.2809632,-0.15716441,-0.36867675,0.0032049443,-0.5667283,0.4171522,0.23278524,0.52021706,-0.51265734,0.62779146,0.42220464,-0.5500539,-0.22986047,-0.7367067,-0.1076951,0.034396045,0.43377006,0.057513643,-0.09385156,-0.24795644,0.07457589,0.5831097,-0.14718087,0.15512626,0.4444908,0.3855028,0.14966221,0.5948655,-0.03621049,0.5769293,-0.5672003,-0.24283928,0.28545073,-0.38702166,0.20149408,-0.08513541,0.08969164,0.5546142,-0.6245665,-0.84961456,-0.73800546,-0.19771276,1.1968793,-0.2002788,-0.3814502,0.17067565,-0.37889862,-0.14453988,-0.00543197,0.46969032,-0.12220511,-0.010282661,-0.66533977,0.04416511,-0.18907662,0.37192702,0.038991645,-0.1554104,-0.4600173,0.61735564,0.020618105,0.6245666,0.271884,0.13416363,-0.30515692,-0.196719,0.09813207,0.61305594,0.28172353,-0.011311556,-0.1221591,-0.20537949,-0.18189968,-0.10061312,-0.02772677,0.66674066,0.54246694,0.051290233,0.2049082,0.25556538,-0.0872449,0.13277586,-0.29107907,-0.2362067,-0.1496847,0.16637845,0.4113483,0.52831036,0.07682275,0.40940443,-0.14229439,0.29080555,-0.1425566,-0.530003,0.5851969,0.48949352,-0.07570964,-0.10751889,0.50063425,0.6383362,-0.38574448,0.44829747,-0.5109592,-0.21425812,0.5095079,-0.25179014,-0.47486934,0.06633768,-0.23699994,0.13121435,-0.6541582,0.12856503,-0.60193205,-0.6284973,-0.44363737,-0.078890614,-2.9984293,0.27716303,-0.08006623,-0.2621433,-0.38797697,-0.2599115,0.25561535,-0.4951576,-0.6631847,0.048609685,0.236445,0.5798029,-0.02332434,0.054360185,-0.2718021,-0.21313643,-0.02294445,0.347442,0.1094375,0.22691023,-0.20564692,-0.3011422,-0.15730496,-0.071582936,-0.4270976,0.030987075,-0.5796007,-0.32931703,0.053258467,-0.47334608,-0.30356425,0.5211713,-0.2565132,-0.015852584,-0.24624902,0.001520291,-0.12495818,0.32142475,0.14902519,0.23014541,0.11742555,-0.12107152,0.12655802,-0.35152873,0.36303568,-0.103416175,0.23881464,0.08058306,0.035007868,0.24141036,0.35562694,0.7736173,-0.17168576,1.1796728,0.33186632,-0.050930675,0.37129855,-0.3178966,-0.54095477,-0.594118,-0.055187225,0.003502454,-0.29154798,-0.2894598,0.18681277,-0.19769521,-0.8252602,0.7924342,0.17344035,0.10318639,0.026037136,0.401672,0.3446213,-0.17847109,0.03092323,-0.13420409,-0.105329014,-0.5261643,-0.29903677,-0.718842,-0.47678736,-0.33723775,0.98771363,-0.29170647,0.18426718,-0.020867428,-0.21521349,0.06193685,0.22419001,0.12219032,0.4965857,0.4221151,-0.060125668,-0.62654275,0.34971294,0.027312418,-0.17272766,-0.34918645,0.1891797,0.67968196,-0.6229653,0.40181383,0.26232806,-0.014018538,-0.22898476,-0.62604976,-0.07350438,-0.10515106,-0.16218095,0.48468998,0.3193619,-0.94994706,0.55957764,0.4256592,-0.2835308,-0.8565088,0.36238825,0.050498847,-0.32322264,-0.18881802,0.28700283,-0.01867204,-0.11221566,-0.24211572,0.16311155,-0.30963987,0.2890032,-0.037316445,-0.07431553,0.22506136,-0.33322108,-0.22913544,-0.5663155,0.07197385,-0.6354953,-0.2734922,0.3616718,-0.03037708,-0.096077375,0.31060788,-0.06255341,0.36392632,-0.29780385,0.127966,-0.12396785,-0.35423395,0.013435721,0.45393372,0.29168865,-0.40128437,0.5297479,0.059236035,-0.1525734,-0.060586423,0.027994772,0.45080277,-0.076157965,0.40630364,-0.26844093,-0.17779505,0.35364607,0.9272416,0.20621085,0.43704364,-0.28858268,0.013048108,0.30334827,-0.01171298,0.25783458,0.10994825,-0.4583303,0.067535035,0.012310912,0.1158821,0.55760694,0.064706825,0.36039087,-0.008581544,-0.1506625,-0.031073553,0.22874542,-0.029782772,-1.0999082,0.5798848,0.27209747,0.89784145,0.51326257,0.18782811,-0.12454464,0.8671647,-0.4120612,0.100069545,0.40897587,0.07029113,-0.33007017,0.7722723,-0.6748781,0.39353418,-0.14432295,-0.108280264,0.26392674,-0.064961076,0.3269895,0.7895875,-0.19565193,0.09737182,0.042996615,-0.19144171,-0.0957332,-0.2896462,-0.17455769,-0.26918504,-0.32091412,0.78307825,0.458058,0.39818347,-0.27427745,-0.035108868,0.030636316,-0.08520895,0.16595863,-0.07098734,0.036875576,0.039364632,-0.36706778,0.0042531244,0.7154133,0.28242928,0.21728896,-0.25067607,-0.4333776,0.24880351,0.006748654,0.012975027,-0.13558485,-0.52919894,0.32709888,-0.30645877,-0.41472924,0.5795178,-0.19396318,0.0142324595,0.23104693,0.058337193,-0.031642526,0.34563997,0.06825038,0.55451095,0.071083754,0.06312609,-0.27460745,0.09916567,0.15750238,-0.24831742,-0.043557715,-0.43400046,-0.021777915,-0.60240215,0.48660812,-0.056340754,-0.50300646,0.25864545,-0.11706068,-0.032716002,0.65250427,0.05543219,0.036936592,0.08131411,0.036381785,-0.31053022,-0.29120937,-0.20325685,0.19193478,0.22549927,0.18010823,-0.28924128,-0.12302742,-0.19269444,0.6707272,0.103458315,0.623766,0.054227125,0.07629328,-0.35732308,0.15013301,0.021307299,0.5571623,0.037809312,0.018607581,-0.17982851,-0.24924026,-0.16266392,0.25995228,-0.027839882,0.14620964,0.1032272,-0.2207665,0.8563626,-0.050197188,0.96245414,-0.021683596,-0.29620418,0.21535306,0.48445585,-0.066836536,0.053775445,-0.40707257,0.7990815,0.4288076,-0.08737984,-0.025302896,-0.2646807,-0.16989662,0.14302124,-0.37240136,-0.0041892924,-0.12128663,-0.51497644,-0.43773124,0.23641928,0.20055556,0.09238991,-0.15714744,-0.008759816,0.08417189,0.06020445,0.26515713,-0.5679514,-0.11802834,0.19528024,0.20403564,-0.21300398,0.14628488,-0.48633957,0.4009516,-0.74665433,0.19386315,-0.5936548,0.15673648,-0.21344154,-0.3830175,-0.00066302717,-0.10696385,0.16605996,-0.14018308,-0.4421921,0.010378187,0.23222537,0.17084752,0.33577093,0.50573206,-0.23753352,0.19757748,0.045245234,0.4593346,0.6857628,-0.40803996,-0.20801629,0.2585477,-0.32674593,-0.5512857,0.2690722,-0.25894937,-0.07257595,0.068514444,-0.20639296,-0.18701701,0.23642081,0.30854955,0.13832839,-0.20017119,-0.7025962,-0.030335864,0.39341578,-0.1767519,-0.18705976,-0.2623236,0.33954582,0.72534674,-0.24271075,-0.3883358,0.036219716,0.4141043,-0.23114842,-0.5270061,0.09592139,-0.28149116,0.34553504,0.061802592,-0.38857785,-0.043230385,0.12008896,-0.52253145,0.04852949,0.259549,-0.26998517,-0.015870778,-0.310343,0.13118897,0.95580846,-0.29043978,-0.07624355,-0.30318505,-0.49749467,-0.7769721,-0.23366325,0.24618565,0.2638857,0.094806105,-0.45550752,0.09703815,-0.105452605,-0.40925106,0.14460324,-0.40246102,0.3676876,0.13194913,0.5691268,-0.32665786,-0.8467873,0.268867,0.22264552,-0.030183181,-0.45070148,0.5041772,-0.12448061,0.7944772,0.08608085,-0.14851542,-0.06564424,-0.45809785,0.19500871,-0.3964436,-0.032803617,-0.74234676,0.056464955,918 -905,0.2830985,-0.34855056,-0.37845054,-0.13836396,-0.07166735,-0.028341135,-0.16206764,0.6584767,0.045927253,-0.37221503,-0.1873707,-0.31918895,0.036939975,0.39727962,-0.10840008,-0.51398414,-0.1597143,0.08141615,-0.5162901,0.54102015,-0.34483898,0.053239126,-0.05372094,0.41956636,0.39398554,0.27903488,0.058232486,-0.07863466,-0.0983578,-0.22687846,-0.1190991,0.1433597,-0.61554396,0.3045957,-0.08844227,-0.09332154,-0.0635188,-0.62946016,-0.48000658,-0.7051635,0.29611382,-0.81688637,0.3626915,0.12448779,-0.12585662,0.29263663,0.22568047,0.36910498,-0.2583545,-0.1454276,0.29043892,0.022423124,-0.012169232,-0.15800503,0.03424572,-0.37966368,-0.5694201,0.0073209503,-0.24342103,-0.5383565,-0.20488296,0.20543809,-0.26655075,-0.069042124,0.008030142,0.7266386,-0.41018972,0.19153546,0.19479807,-0.14236312,0.31786874,-0.6558166,-0.25527987,-0.11963568,0.26731697,-0.09277898,-0.19069932,0.24884023,0.32575178,0.123660825,-0.14612718,-0.027396843,-0.094356455,-0.19299786,0.24927194,0.4494382,-0.19082348,-0.67168283,-0.0065178475,0.10972839,-0.055405717,0.096696556,0.1907661,-0.5702805,-0.27619803,0.062025014,-0.34024838,0.3847781,0.3445121,-0.10408863,-0.23272176,0.34552345,0.4716027,0.27532098,-0.18606178,-0.11950765,-0.012531522,-0.5830224,-0.024856046,0.00891821,-0.13941789,0.50099117,-0.15883557,0.25977054,0.7316447,-0.10534856,-0.17143638,0.07746946,0.09382134,-0.025730083,-0.39881405,-0.3346274,0.1514631,-0.30145547,0.18910265,-0.15129258,0.7792063,0.21318097,-0.73869294,0.3527346,-0.59695035,0.2207402,-0.122568816,0.4441551,0.6849923,0.38475823,0.43267003,0.56058997,-0.40017048,0.1223816,0.029305005,-0.40110663,0.108946264,-0.23093636,-0.16904481,-0.4886178,-0.011364897,-0.07869207,-0.043865066,0.10828421,0.29520962,-0.5642882,-0.022120014,0.09342783,0.9626191,-0.2243789,-0.03147633,0.5904819,0.85758835,1.069265,0.010304034,0.96768755,0.1263979,-0.2908842,0.41204223,-0.2777329,-0.739196,0.33162832,0.4204639,0.094877124,0.207087,-0.06535522,-0.02665553,0.34054407,-0.33963537,0.21936388,-0.20770468,0.14173199,0.33672276,-0.29541764,-0.38022423,-0.2779011,-0.12022679,-0.07664485,-0.11755333,0.025600294,-0.24722074,0.44336048,-0.070639335,1.750286,0.07363098,0.11663211,0.09940896,0.5332112,0.11861381,-0.2453196,-0.00990815,0.5454106,0.45277992,0.34987918,-0.46351242,0.2903919,-0.2544376,-0.44623676,-0.06953018,-0.44787255,-0.17212401,-0.035963196,-0.2619938,-0.1916004,-0.13498247,-0.10665398,0.44782138,-2.9975662,-0.166508,-0.2196601,0.2829611,-0.22460945,-0.18782575,0.025305254,-0.3827786,0.3992388,0.3886217,0.6101354,-0.59605974,0.29654035,0.3694903,-0.52795994,-0.2717469,-0.5482738,-0.0074426583,0.01279413,0.47594902,-0.072741546,0.055184823,0.028368458,0.13251399,0.5180369,0.00020088255,0.10096424,0.2960081,0.4378442,0.09313921,0.6297539,-0.119899474,0.38479328,-0.22789876,-0.14820272,0.27178597,-0.45662633,0.29755208,0.025364855,0.04797517,0.48411727,-0.40329528,-0.92449504,-0.6268139,-0.20098512,1.0787004,-0.3280361,-0.30276394,0.3316017,-0.37992707,-0.18203144,-0.15373766,0.40004167,-0.14217955,-0.0033690135,-0.76506805,0.017308736,-0.035410013,0.23344056,0.03723717,-0.25962463,-0.43861946,0.6457249,-0.02759699,0.43858984,0.3346441,-0.023876548,-0.47473896,-0.47033748,-0.07119563,0.88028914,0.29309538,0.08447528,-0.07361693,-0.15343122,-0.33138335,-0.12928842,0.12556197,0.6063909,0.4427185,0.018053642,0.18444197,0.28014985,-0.06668157,-0.01502952,-0.22128464,-0.26499316,-0.13356532,-0.0152456565,0.5651147,0.5977089,-0.11626843,0.50195414,-0.06171212,0.31301576,0.07198911,-0.41345295,0.45197856,1.130462,-0.026746439,-0.3725934,0.447479,0.4432713,-0.3165765,0.34146062,-0.35231963,-0.053046893,0.68731403,-0.25694665,-0.5936335,0.37808546,-0.19958687,-0.0149666965,-0.7838573,0.27762377,-0.24831675,-0.53052264,-0.6415878,-0.21539076,-2.9852803,0.14991964,-0.23675281,-0.45301422,-0.24066897,-0.041560177,0.10105565,-0.5984865,-0.40902996,0.14971988,0.060952794,0.61650574,-0.10585266,0.085342795,-0.21899408,-0.09965164,-0.3377477,0.1847683,0.045176487,0.28130627,0.023656866,-0.39901194,-0.071412206,-0.14863698,-0.48655602,0.117869474,-0.5093012,-0.42101955,-0.09950348,-0.52070665,-0.34704408,0.67578703,-0.3307484,0.036167957,-0.11341039,0.07901011,-0.1577618,0.23659122,0.26226074,0.1679162,-0.08328185,-0.013042524,0.00016380847,-0.3058711,0.32386142,0.012818457,0.4020119,0.24147503,-0.11417546,0.29152378,0.36533603,0.6790321,0.016202722,0.7338097,0.4507219,-0.052437514,0.34267876,-0.33007905,-0.29790065,-0.42713484,-0.24811791,0.16842882,-0.31167218,-0.48354074,0.02945236,-0.30225644,-0.6047805,0.40996572,-0.064671345,-0.068109274,0.022272259,0.20259582,0.5515944,-0.18177183,-0.029882148,0.02736637,-0.06619203,-0.62624997,-0.13064843,-0.5686547,-0.5355106,0.14461851,0.86069155,-0.2562864,-0.099064715,-0.13685636,-0.5050919,-0.012228116,0.25277755,-0.21914291,0.358984,0.31278214,-0.10934558,-0.75477546,0.44203737,-0.17734073,-0.33678102,-0.53156954,0.2717123,0.5781444,-0.5222601,0.71171635,0.22707379,-0.034139443,-0.24516475,-0.36167648,-0.2414825,-0.16622393,-0.2582625,0.28106442,0.08231603,-0.6108025,0.3294505,0.35323167,-0.25029415,-0.7051196,0.4105363,-0.0854039,-0.2804567,0.10078601,0.31731912,0.1399524,-0.036901202,-0.10529119,0.22286119,-0.3984714,0.13798606,0.16075586,-0.0037501454,0.20618725,-0.05341019,-0.056899797,-0.7471941,0.15537955,-0.36131665,-0.3886299,0.4835309,0.17178255,0.2046082,-0.018993502,-0.030760124,0.32585466,0.049180955,0.084091045,-0.13976987,-0.1798837,0.31743145,0.4644703,0.37517717,-0.57868564,0.5493864,0.06372369,-0.020483196,0.1503823,0.09593892,0.21910189,0.19935465,0.39393187,0.014344673,-0.26314187,0.24401908,0.690811,0.18512283,0.601293,0.11596588,-0.006273652,0.28654888,-0.05739985,0.18674664,0.1508333,-0.616694,0.023072824,-0.1701724,0.15363942,0.51299137,0.109776996,0.25394756,-0.14890516,-0.39396355,-0.0016495181,0.3673698,0.26514688,-1.1560036,0.46745703,0.2928051,0.9287236,0.4798578,0.006476074,0.014810597,0.8988347,-0.016790546,0.010199149,0.31814936,0.027365476,-0.68222624,0.5546498,-0.8505187,0.44933936,-0.027524948,-0.051021397,-0.005633384,0.064419515,0.4940853,0.57026225,-0.1968114,-0.06623839,0.05190423,-0.29289216,0.28641397,-0.5660091,0.25472537,-0.37261906,-0.3353615,0.4068925,0.6000704,0.20579238,-0.18556315,0.06554074,0.076935686,-0.22233248,0.1461872,0.016100561,-0.052335262,0.029280834,-0.94092983,-0.16038255,0.5214936,-0.26458237,0.32775494,0.16003491,-0.17610367,0.37854585,-0.18629234,-0.08661842,-0.11364464,-0.57670075,0.22981954,-0.09377063,-0.5513529,0.4414502,-0.13601969,0.21284492,0.25081238,0.011414657,-0.107318215,0.3896316,0.066090785,1.0694281,-0.18665159,-0.22048597,-0.38197646,0.21262453,0.07980361,-0.13280754,-0.09272241,-0.3416327,-0.108357064,-0.5160718,0.61183673,0.11465508,-0.37689766,-0.14677201,-0.14484145,-0.05579604,0.69017,-0.107857294,-0.1197291,-0.21224773,-0.2776928,-0.04727741,-0.049198765,-0.05550389,0.34744096,0.3069953,0.096141815,-0.12053757,-0.07683592,-0.22295402,0.52287465,-0.06913292,0.53196937,0.34143522,0.1480693,-0.32575792,-0.28886354,0.10274144,0.5080032,0.3090792,-0.18506481,-0.23542118,-0.40853497,-0.3627356,0.20053361,-0.07313117,0.5945804,0.15535207,-0.36987412,0.64024967,-0.2074461,1.2597713,-0.07813324,-0.39975056,0.23022904,0.56465054,0.105622105,0.026487073,-0.34635386,0.6391993,0.4697069,0.00021147728,-0.007550703,-0.35546616,-0.0312945,0.054387778,-0.15956692,-0.23816828,0.011542037,-0.59864193,-0.27177534,0.07426671,0.17040826,0.34859458,-0.12684469,-0.11631233,0.26134464,-0.13348368,0.28570345,-0.22787638,-0.079237044,0.18131618,0.22475976,-0.004557828,-0.12595688,-0.5998834,0.45763645,-0.36555302,0.15884243,-0.3323708,0.19225286,-0.21837719,-0.20918871,0.1818815,-0.056747615,0.36133492,-0.3252441,-0.288788,-0.2117585,0.66357654,0.194592,0.19632046,0.5752728,-0.25484505,0.07459853,0.032954264,0.52340466,0.8587578,-0.36277202,-0.11050445,0.39438704,-0.5153282,-0.61540014,0.3693092,-0.28546077,0.3174193,0.09103241,-0.0012658039,-0.47406983,0.16484794,0.2843791,0.07137938,-0.11060875,-0.6592969,-0.34512684,0.39128542,-0.35689092,-0.14446011,-0.39788136,0.107307054,0.5333473,-0.22269888,-0.23089524,0.008548354,0.062825195,-0.23564188,-0.3875793,-0.18174498,-0.42737797,0.46761265,-0.0132261915,-0.2233011,-0.21883272,0.019342208,-0.4786146,0.27662745,-0.18271148,-0.40090492,-0.008564572,0.021764256,-0.23881374,0.9246556,-0.24182324,-0.010264833,-0.5186865,-0.41384518,-0.70672727,-0.30064902,0.5991902,-0.12508999,0.072874255,-0.57801986,-0.14037819,-0.066395946,-0.27449414,-0.16794908,-0.39013764,0.35939166,0.039071076,0.47908196,-0.052689027,-0.82913715,0.28809282,0.17077339,0.026687214,-0.8776378,0.44665194,-0.08093656,0.6784618,0.03494041,0.2703193,0.27090728,-0.23630363,-0.15610966,-0.2571195,-0.28778288,-0.63576597,0.22824882,926 -906,0.5018525,-0.05673449,-0.40329766,-0.35623217,-0.3514842,0.12833655,-0.19576971,0.110070296,0.34679374,-0.5712886,-0.15429275,-0.04075982,-0.03990066,0.51649195,-0.22711174,-0.86644936,-0.017854994,0.06865765,-0.58266217,0.41394392,-0.56078166,0.22045851,0.040364567,0.43953958,-0.2951479,0.16831015,0.5162225,-0.04610609,0.07080113,-0.15063153,0.109286845,0.11320001,-0.87846094,0.30369362,-0.095465384,-0.25286007,0.012521054,-0.72034764,-0.09983573,-0.769196,0.4647638,-0.8798342,0.58686554,-0.0843052,-0.28219256,0.04668249,0.22240971,0.05408753,-0.12540048,-0.08680568,0.29676822,-0.33488014,-0.24292612,0.10998118,-0.35810176,-0.52958983,-0.696482,0.08103488,-0.65841246,-0.1955923,-0.3729564,0.17263901,-0.35709313,0.026286462,-0.20996828,0.63011175,-0.45697126,-0.12464592,0.36861792,-0.33400884,0.07900948,-0.5828487,-0.15568207,-0.15623952,0.31123504,0.0026606247,-0.18627568,0.50846684,0.34827176,0.6047493,0.21307676,-0.3949543,-0.20652825,-0.087103404,0.23702562,0.59899914,-0.022034913,-0.3339359,-0.26331472,-0.024945071,0.25727317,0.17170517,0.16798835,-0.27310136,0.10973292,0.12876879,-0.032619696,0.6983757,0.4949658,-0.42650792,-0.29777387,0.34367296,0.3815559,-0.032569867,-0.049836148,0.08414355,-0.10834048,-0.5414159,-0.33220056,0.11815251,-0.13173306,0.5558733,-0.079794325,0.05030054,0.8147003,-0.32946193,0.035266723,-0.20679307,-0.28043196,0.13530238,-0.34776023,-0.053794295,0.34224483,-0.39823022,0.06877771,-0.24984433,0.6001254,0.24031931,-0.8071313,0.34354195,-0.37161407,0.15473051,-0.027511701,0.7571895,0.7937191,0.48457217,0.4345092,0.9800944,-0.40305606,0.042702883,0.20220132,-0.20942074,0.0258782,-0.27286795,0.29467526,-0.28799823,0.2341003,0.095974915,-0.055533666,0.11669382,0.34573603,-0.4180824,-0.03906168,0.09696128,0.6551414,-0.27484378,-0.16342537,0.9460376,1.2720946,1.083795,0.09209916,1.6563493,0.14538775,-0.08276489,0.09783548,-0.021608269,-0.74479,0.13604361,0.46668682,0.6165018,0.4026148,0.08365974,-0.06302657,0.35626206,-0.5235765,-0.2728184,0.057400268,0.3599192,0.09573803,-0.18019366,-0.50255036,-0.11509272,0.23821227,0.0638923,-0.0052598887,0.3409516,-0.17712744,0.47226024,0.10013873,0.8551416,0.0060634017,0.11934296,0.034025554,0.33339584,0.12152806,-0.19959502,0.14499176,0.29206058,0.16553004,0.047506083,-0.6938978,-0.027260842,-0.5015406,-0.4851311,-0.34228912,-0.5147636,-0.119850494,-0.22514905,-0.16035849,-0.26345655,-0.15756893,-0.4173293,0.36072764,-2.3716106,-0.29409808,-0.3318182,0.4657692,-0.19282164,-0.2134224,-0.18516254,-0.64244175,0.41273132,0.43531027,0.5004081,-0.55206776,0.49763182,0.414986,-0.67968696,-0.11303604,-0.776789,0.07476213,-0.13812833,0.5200767,0.0046214364,-0.360144,-0.32294008,0.34515008,0.79233384,0.50524473,0.11124009,0.20604783,0.59238297,-0.14708097,0.502584,-0.17940728,0.56101775,-0.25840458,-0.05704094,0.45463374,-0.49104962,0.32083952,-0.37608054,0.033991043,0.6231667,-0.51509064,-1.0721421,-0.81901914,-0.57015496,1.1948539,-0.41430256,-0.6703143,0.45553008,-0.16335161,-0.11755362,-0.044158276,0.6168348,-0.11263477,0.20006716,-0.6401556,0.20156896,-0.20894052,0.02417934,-0.10391486,0.34533966,-0.5342428,0.7674942,-0.23013961,0.4828333,0.2624502,0.15980105,-0.1683942,-0.19124456,0.08028036,0.7405328,0.45621848,0.15191674,-0.14518747,-0.07698051,-0.15290941,-0.4240248,-0.06419466,0.94223386,0.6056488,-0.078394115,-0.036940813,0.20219187,-0.13686457,0.16799103,-0.11334634,-0.25849426,-0.2081757,0.075361975,0.71014816,0.6958151,-0.46035123,0.0445426,-0.11574253,0.3273411,-0.04339214,-0.49467853,0.35095808,0.71856815,-0.19240178,-0.020688688,0.790649,0.5396283,-0.5235297,0.531207,-0.64106965,-0.28586838,0.8491408,-0.003452748,-0.547381,-0.3071937,-0.24362762,0.014615645,-0.65934,0.2848099,-0.26741233,-0.7812632,-0.2163785,-0.23154251,-3.1796367,0.2346642,-0.26939812,-0.040886506,-0.21864821,-0.104997106,0.24616326,-0.5865357,-0.65091664,0.07260849,-0.04346584,0.5565268,-0.21261542,0.17685187,-0.3325549,-0.19974883,-0.19657142,0.32965985,0.033327308,0.34616065,-0.041161884,-0.2545164,0.105173804,-0.12477087,-0.6172337,-0.07504793,-0.5644217,-0.56865436,-0.19374482,-0.49863115,-0.20405316,0.76234895,-0.38835326,-0.124553286,-0.3110485,0.1330433,-0.2571742,0.2625716,0.007902329,0.41941917,0.087166406,-0.06730042,-0.1527294,-0.09976268,0.6704564,0.07327823,0.47227982,0.4020374,-0.25208318,0.19987448,0.42632294,0.67503715,0.038090236,1.0585493,0.29419354,-0.013898787,0.3686755,-0.15291485,-0.38924417,-0.8767622,-0.43515667,0.0704949,-0.44040796,-0.5529074,-0.07481861,-0.4655302,-0.886136,0.482874,0.08280229,0.34452948,-0.24320465,0.16168408,0.26110327,-0.32384428,0.12711243,-0.1287843,-0.052981537,-0.7004245,-0.34841123,-0.71251756,-0.6255448,-0.09501406,1.1271303,-0.063922316,-0.27319312,0.11045935,-0.27783272,0.11307507,0.13407399,0.27787575,-0.07110431,0.56729513,0.07603424,-0.82481664,0.44528142,-0.1339107,0.023289422,-0.6465898,0.25209594,0.6204348,-0.5536464,0.77888393,0.39675787,0.30509365,0.08158066,-0.6913007,-0.31098744,-0.05219284,-0.05648036,0.52058524,0.18428724,-0.9223809,0.5172624,-0.11077809,-0.31892908,-0.6277363,0.50703,-0.16641389,0.12141153,0.11784059,0.42462435,0.18765609,-0.19519329,-0.16722424,0.28277123,-0.51634896,0.4995997,0.2085315,0.18689401,0.72321194,-0.16361861,-0.4307791,-0.8257079,-0.20335943,-0.6064807,-0.22711396,-0.02660645,-0.1431879,-0.100133084,0.16489346,0.16089225,0.559799,-0.20495756,0.22671014,-0.06674672,-0.58094454,0.43673754,0.57180786,0.565782,-0.6582528,0.7480576,0.07394246,-0.08020016,-0.18044512,0.093832545,0.4563633,0.072510965,0.35811213,-0.04917055,-0.048320625,-0.109248705,0.7750995,0.18966268,0.23371327,0.22453894,-0.19714652,0.69859976,0.0006772007,0.2114247,-0.10624366,-0.73297507,0.10742852,-0.13133515,-0.06864341,0.48273805,0.22884321,0.39548168,-0.045296907,-0.13281389,0.12502052,0.085496984,-0.12868752,-1.4359903,0.14884531,0.18881983,0.8168791,0.51356804,-0.029750595,-0.0061029494,0.65751666,-0.16990001,-0.10764774,0.6068497,-0.05771904,-0.53831625,0.7204725,-0.5836404,0.57557166,-0.28521085,-0.06136164,0.12085771,0.30157885,0.42701736,0.90566796,-0.21082877,-0.102459095,-0.20000096,-0.12123954,0.30704808,-0.39345217,0.07716115,-0.4560542,-0.26030958,0.7458318,0.4760634,0.3039566,-0.24223296,-0.0010329945,0.21226732,-0.22050394,0.34706888,-0.1770215,-0.259217,-0.23690958,-0.7397242,-0.19107813,0.4546087,0.0005500267,0.15129666,0.20443535,-0.26674524,0.09508073,0.023089387,-0.26561803,0.0015825698,-0.78679687,-0.19206727,-0.28873852,-0.5905614,0.2441395,-0.33492768,0.16293709,0.27550742,0.097275674,-0.2855892,0.02099663,0.16197507,0.78314334,0.022572747,-0.18784648,-0.3693662,-0.041548807,0.31713852,-0.4521276,0.38563785,-0.29514447,0.15506199,-0.47181496,0.65005213,-0.22100186,-0.20359199,0.10324413,-0.10391903,-0.06680123,0.4760147,-0.15236114,-0.0041172574,0.19137055,-0.2260227,-0.1892374,-0.2213307,-0.39094117,0.28238004,-0.040406395,-0.06080231,0.047849264,-0.15921329,0.040097903,0.43346894,0.07795157,0.09146059,0.16368224,-0.070037834,-0.42186823,0.020882512,0.1166096,0.5910558,0.1342551,-0.092334926,-0.23368078,-0.41689324,-0.20194484,0.48113072,-0.06792232,0.12491011,0.009386569,-0.3725557,0.68688256,0.17523164,1.1931065,-0.031754013,-0.4385701,-0.032849755,0.79352903,0.05390358,-0.021949073,-0.45500383,1.0166119,0.4271501,-0.14277552,-0.15593497,-0.7706595,-0.11366219,0.26034224,-0.26574662,-0.24785154,-0.2630995,-0.77560145,-0.16935344,0.1315789,0.09782157,0.2004515,0.0013031512,0.072716124,0.014500921,0.23813121,0.5049211,-0.6033317,-0.24619631,0.4133215,0.1987866,0.05829124,0.12829672,-0.22058636,0.34766865,-0.7736418,0.22916079,-0.3964928,0.05566597,-0.26552406,-0.24040346,0.23380367,0.12220293,0.49390635,-0.026991853,-0.38175598,-0.07967052,0.4955388,0.09091214,0.27778164,0.824578,-0.2868372,-0.23359184,0.021515632,0.56636477,1.6268415,0.05433276,0.47416446,0.07056854,-0.43225527,-0.6446969,0.15804985,-0.51125985,0.06791598,-0.09609733,-0.26628464,-0.46677613,0.041200563,0.039464176,-0.18896861,0.21556467,-0.59463453,-0.4748577,0.24110109,-0.37921157,-0.19112617,-0.3863741,0.244989,0.93621427,-0.33451757,-0.25125733,0.13213019,0.3297375,-0.0623406,-0.8115087,-0.02300935,-0.20176506,0.38121262,-0.13660844,-0.41638395,0.01310607,0.18750282,-0.49031627,0.2056321,0.19422428,-0.38928714,0.07588766,-0.3479043,-0.026775578,1.0854625,0.13757871,0.3737372,-0.5975926,-0.669405,-0.99105865,-0.25499997,-0.12080321,0.0900474,-0.10951411,-0.2264276,-0.23454468,-0.049189508,0.10145578,0.042382002,-0.672694,0.21001768,0.057657544,0.60188466,-0.14819609,-0.8643856,-0.08580625,0.15857397,0.19135761,-0.50092655,0.32976386,0.027947113,0.70288706,0.17103465,-0.018970026,-0.15953855,-0.6262594,0.29031536,-0.3730807,-0.11888337,-0.43288672,0.2457627,945 -907,0.2352835,-0.23804252,-0.6472769,-0.11161259,-0.39294985,-0.045097966,-0.34566653,0.1274569,-0.096230656,-0.57613236,-0.11851693,-0.3336066,-0.054943834,0.5482524,-0.14048393,-0.54709285,-0.015317556,0.46599028,-0.58886224,0.26924625,-0.3637825,0.44794917,0.1997819,0.020352116,-0.11112997,-0.050602198,0.28734508,-0.18090843,-0.10787892,-0.50589657,0.010933474,-0.13879843,-0.9651162,0.29406604,-0.12032291,-0.68801713,-0.05455935,-0.28744414,-0.19481333,-0.85184646,0.18169184,-0.89981604,0.5829422,-0.19772291,-0.13757734,0.09950155,0.14834301,0.61174613,0.13757764,0.20607872,0.28409687,-0.4191883,-0.40535107,-0.14625484,-0.16028562,-0.45787242,-0.5175409,0.07525032,-0.61819625,-0.32043546,-0.41129133,0.124527,-0.40459427,0.19828296,-0.18853343,0.45441127,-0.16291492,-0.21366441,0.28888276,0.038563177,0.48363224,-0.5699993,0.086737126,-0.1726708,0.2657986,-0.46737787,-0.28214732,0.3427571,0.27379966,0.48307583,-0.03609797,-0.22600605,-0.19952375,-0.19867809,0.27324164,0.62228626,-0.09449208,-0.4123623,-0.12503886,0.025021456,0.33165446,0.04450661,-0.092998475,-0.4256628,0.04225442,0.16646862,-0.30368873,0.34575653,0.47574246,-0.11085733,-0.13137716,0.4602653,0.6127464,-0.039917585,-0.044039547,0.18890978,0.09597678,-0.4712509,-0.1809016,0.21041526,-0.039668825,0.4863739,-0.16107184,0.21640714,0.57326156,-0.4100999,-0.17968427,0.07551826,-0.059397385,0.0059765778,-0.05865111,-0.4754323,0.56995696,-0.76081103,0.08391888,-0.38316575,1.0647702,-0.014017392,-0.86517924,0.37941417,-0.6999776,0.16479617,-0.18072768,0.83933973,0.56666136,0.5985264,0.12768999,0.7018245,-0.38546443,0.09059899,-0.090925425,-0.4164712,-0.10341082,-0.41940704,-0.083460905,-0.3520579,-0.26676628,0.047063585,-0.13411279,-0.105998,0.56900305,-0.51975423,-0.2310362,-0.15833686,0.60300493,-0.46925655,-0.04534753,0.73856664,1.1771418,1.1034218,0.3088632,1.248442,0.2754493,-0.24723685,-0.28475317,-0.012747705,-0.789161,0.29202452,0.21583124,-0.55131894,0.19971772,0.09204218,-0.07471371,0.374261,-0.5752267,-0.050451655,-0.15884753,0.29943076,-0.2948044,-0.21070011,-0.27506098,-0.13073853,0.13647032,-0.023725217,0.09336099,0.31911102,-0.23379226,0.33209315,0.32952324,1.1276431,-0.15794186,0.15576555,0.14144395,0.08774356,0.0743188,-0.28153846,-0.041178625,-0.07406103,0.40603462,0.058907393,-0.55722123,-0.076528005,-0.10568786,-0.40467867,-0.43505827,-0.13085407,0.11971089,-0.11473558,-0.22208524,-0.21540909,0.13491465,-0.43888518,0.6383126,-2.028766,-0.13177024,-0.120659895,0.27178466,-0.2992156,-0.4163371,-0.099294364,-0.64918596,0.42261377,0.2742449,0.42811227,-0.64217174,0.3481063,0.25426638,-0.30975845,-0.15286501,-0.790782,-0.049289104,-0.2005909,0.12614302,0.13812645,-0.117995895,-0.08114519,0.07824595,0.48275694,-0.34815407,0.06588284,0.47251233,0.14206201,0.21652083,0.58332324,0.16051362,0.44033417,-0.36578846,-0.23580532,0.39226928,-0.21918829,-0.06912264,-0.016935175,0.16079581,0.22248013,-0.5659753,-0.8966577,-0.85709125,-0.5861762,1.1548539,-0.25780073,-0.70902896,0.10625257,0.2557875,-0.3684474,-0.064941645,0.35861382,-0.25242496,0.211235,-0.815633,-0.08556387,-0.17468846,0.55001813,0.0040515834,0.0058848686,-0.5840739,0.45358816,-0.35664478,0.23929538,0.5671547,0.2564971,-0.31228748,-0.5648807,0.11901084,1.4674224,0.32519233,0.081165224,-0.4131032,-0.09545169,-0.31736198,-0.02469024,0.052869588,0.36028424,0.9000918,-0.012208671,0.10556477,0.35694543,-0.045617018,0.056590408,-0.0672699,-0.5314257,-0.032760423,-0.18358482,0.7839369,0.32823095,0.29107344,0.7773319,-0.1072667,0.17264374,-0.2765763,-0.3442793,0.51598275,1.313659,-0.19514327,-0.31004384,0.5976183,0.39504996,-0.08415884,0.5285986,-0.6352693,-0.50940305,0.30834463,-0.06623272,-0.44666114,0.2517663,-0.3286388,0.28405735,-1.0169011,0.52599466,-0.42377886,-0.8860946,-0.59254,-0.123277314,-2.7243426,0.32502612,-0.1923443,-0.057073027,-0.05651961,-0.20118241,0.43996385,-0.3212547,-0.5538991,0.15025398,0.16382305,0.8364229,0.015623167,-0.027115917,-0.15817274,-0.15573634,-0.27428484,0.27170983,0.3670927,-0.049551982,-0.0073890015,-0.44527325,0.07972428,-0.3646524,-0.33559537,0.08259231,-0.55137295,-0.46144316,-0.30870947,-0.583499,-0.7266936,0.71878487,-0.67889553,0.0490115,-0.28938448,-0.049469765,0.10868245,0.4530368,0.05765623,0.14544265,0.048150185,-0.18735664,-0.16095752,-0.16211557,0.05596361,0.039366093,0.17603107,0.308819,-0.48078915,0.17705025,0.44948447,0.7199846,0.17877962,0.9200128,0.49307966,-0.16202319,0.052844662,-0.2917831,-0.17067051,-0.5893073,-0.228658,-0.14805917,-0.42432022,-0.3983856,-0.00950933,-0.27338335,-0.830105,0.79382926,-0.05409513,0.044014733,-0.058346983,0.44864264,0.25038144,-0.024436286,-0.22418946,-0.25417674,-0.1333648,-0.3920933,-0.42927146,-0.6836128,-0.60188144,-0.2216721,1.3420442,-0.049544077,0.15631877,-0.03278458,-0.02152122,0.17904373,0.1810875,-0.071392685,0.25587097,0.47396484,-0.14638692,-0.75834656,0.3221533,-0.2039537,0.10593265,-0.77192736,0.3489591,0.86630064,-0.6620338,0.26244816,0.53594416,0.08622033,-0.23004736,-0.5076592,-0.078206554,0.095678605,-0.35453597,0.26335707,0.107263945,-0.7532485,0.6298564,0.2932845,-0.26684645,-0.83227473,0.5136761,0.2311757,-0.16089787,0.1973499,0.36476687,-0.13880078,0.074883856,-0.29894271,0.25414833,-0.33513394,0.26977196,0.2941609,-0.08727645,0.2691668,-0.33545431,-0.10589576,-0.63560885,0.22306746,-0.4126674,-0.18534625,0.015285824,0.006349236,0.11403784,0.55618054,-0.005548189,0.46104625,-0.23569767,-0.040813725,-0.2803916,-0.49029768,0.46215448,0.603815,0.16491556,-0.42870125,0.779072,0.0542846,-0.142793,-0.73396844,-0.034083255,0.54691905,-0.033113334,0.33132067,0.272382,-0.21702544,0.1605469,0.7320544,0.40097204,0.6454771,0.0043279626,0.012387075,0.10490084,0.2373171,0.4366857,0.20969498,-0.5214102,-0.015071045,-0.22998212,0.028288553,0.52791125,-0.026720032,0.5236766,-0.23528688,-0.24142969,0.0018942971,0.02012656,-0.25150597,-1.4086828,0.69828886,0.2558252,0.5396743,0.5432911,-0.10390981,0.28727666,0.4857287,-0.27101287,0.1967923,-0.00082136196,0.042105448,-0.17427611,0.6605249,-0.9293217,0.3102652,-0.033016097,-0.05953437,0.051007837,-0.07843829,0.4003669,0.8581279,-0.07388566,0.25779176,-0.26624084,-0.16994731,0.2683677,-0.2538562,0.2801563,-0.56084067,-0.33716464,0.9692993,0.24690016,0.5116727,-0.15176994,-0.059817284,0.0826683,-0.2303931,0.19612221,0.011918393,0.07609085,0.013121098,-0.50067157,-0.16503339,0.64527845,0.10796425,-0.04004346,0.26445165,-0.12886089,0.27273402,0.040840466,0.0630442,-0.06491974,-0.57574385,0.1178197,-0.48763123,-0.15302616,0.17544962,-0.5105052,0.2817626,0.16111778,0.10152513,-0.39596447,0.18212843,0.63203764,0.70368403,0.1824751,-0.21510603,-0.07384505,0.13941927,0.26190788,-0.3413674,-0.08521152,-0.13899226,-0.07159902,-0.9074862,0.36659285,-0.20830375,-0.30329552,0.5748642,-0.051978197,-0.21017374,0.5507105,-0.16409652,0.12516193,0.5608459,-0.040050004,-0.046417225,-0.20883448,-0.11833707,0.1824855,0.045295034,-0.082949474,-0.07533236,0.12180314,-0.20677216,0.37840882,-0.067613825,0.31470367,0.2904021,0.27046338,-0.44169506,-0.02591391,-0.09274128,0.5681284,0.063992985,0.01887264,-0.38302281,-0.25776526,-0.19988029,0.16800939,-0.05875491,0.2607639,0.020788074,-0.45065615,0.871969,0.08620218,1.0670656,0.036103208,-0.37957326,0.03541653,0.451766,0.08399204,-0.06496427,-0.46857294,1.0428132,0.5316165,-0.10993717,-0.049900457,-0.40306222,-0.1594698,0.18933141,-0.1487024,-0.38631442,0.061272535,-0.5855492,-0.47107133,0.25737402,0.45428684,-0.14620247,-0.03884399,0.20812182,0.5308342,-0.1582031,0.22417994,-0.39788723,0.24353482,0.15897804,0.22820301,0.07243197,0.16085291,-0.2858399,0.27513772,-0.8899527,0.15544371,-0.20337264,0.08297202,0.202474,-0.20546412,0.2877324,0.5075268,0.20654988,-0.11872145,-0.21068867,-0.07183427,0.4949808,-0.00021576385,0.2657995,0.9463765,-0.25240245,0.17812747,-0.053472176,0.2801741,1.2618892,-0.41316056,-0.01642407,0.5098519,-0.40737438,-0.4925989,0.47203505,-0.33057365,0.05909313,0.042876672,-0.61462045,-0.29354942,0.18033506,0.109888844,-0.103331685,0.33029884,-0.6159064,0.00078231096,0.3659602,-0.34015712,-0.28836998,-0.44680452,0.27051356,0.5077235,-0.2317043,-0.4572772,0.018662505,0.43536386,-0.202094,-0.39494964,-0.049759578,-0.24852078,0.3159585,0.07359556,-0.198418,-0.027364016,0.2578136,-0.40969142,0.06260314,0.254508,-0.25286016,0.095858686,-0.20228238,0.06756572,0.70865613,-0.38340974,-0.1391009,-0.6186474,-0.4927005,-0.7967622,-0.29495028,0.4000105,0.37092185,0.025537023,-0.57929355,-0.14006831,-0.08205729,-0.0808035,-0.005081862,-0.41516992,0.2837815,0.23951079,0.4566873,-0.065560825,-0.90313274,0.23700254,0.04981917,-0.20148323,-0.4683112,0.4437952,0.023164034,0.7909624,0.050637275,0.22912721,0.31018403,-0.6709364,0.24449271,-0.07033905,-0.10311856,-0.8924293,-0.110199,950 -908,0.5601714,-0.21992618,-0.4925033,-0.2865319,-0.20425142,-0.12545921,-0.20218253,0.7356414,0.46201858,-0.048678335,-0.31483284,0.10510975,0.020352982,0.2732828,-0.11803248,-0.9750952,-0.008485754,0.11581352,-0.582751,0.7316394,-0.45140085,0.23461246,-0.16200106,0.45499682,0.082175545,0.29138875,0.22441947,0.25650924,0.089606136,0.04346391,0.11397307,0.34484157,-0.5607407,0.2276411,-0.22899461,-0.28750947,-0.17511235,-0.32389748,-0.057725057,-0.924081,0.07428452,-0.62708586,0.48182914,-0.014612204,-0.48976508,-0.06578777,0.16965495,0.12222733,-0.3827127,-0.13520809,0.03040435,-0.11324639,-0.25504085,-0.3158438,-0.02975218,-0.5508621,-0.5344138,-0.14817023,-0.53516865,-0.09466225,-0.089355744,0.20239174,-0.33305928,-0.17416297,-0.13323641,0.57229304,-0.31505787,-0.21575212,0.4434278,-0.1253428,0.19358271,-0.57016253,-0.08435887,-0.14637674,0.34726468,0.32700804,-0.21866657,0.286373,0.36274195,0.46346855,0.3077381,-0.36440682,-0.30237743,-0.18821026,0.12783979,0.2134934,-0.17876041,-0.35285902,-0.37897888,0.09405742,0.42540273,0.32912335,0.37728313,-0.012664606,0.017428791,-0.07035608,-0.103608705,0.72313094,0.5274587,-0.29577675,-0.30614397,0.27431977,0.728762,0.25483286,-0.32182768,0.018099913,-0.057861734,-0.4159485,-0.17648594,0.050355673,-0.13156696,0.5398292,-0.11091723,-0.03927533,0.80252224,-0.1286369,-0.13522604,0.20970695,0.13598128,-0.18818288,-0.4529166,-0.2689166,0.24666737,-0.45257306,-0.13769394,-0.4042491,0.48214224,0.08639407,-0.6308754,0.26577592,-0.44721827,0.22101896,0.07862468,0.54401225,0.8298301,0.47459102,0.34656549,0.6953015,-0.037872564,0.045166597,0.17451112,-0.18158017,0.21588385,-0.3469155,0.10810164,-0.4970391,0.19515729,-0.1897064,-0.053133678,0.19797571,0.43747675,-0.53459567,-0.3423603,0.20269497,0.71004766,-0.13551718,-0.1437735,0.7580185,1.2483101,1.1006471,-0.096085824,1.2247771,0.22226517,-0.105534874,0.04300892,-0.24710636,-0.5893945,0.2214437,0.3337469,-0.3156084,0.6548147,-0.20551391,0.014549832,0.3636574,-0.37057832,-0.09494292,0.18998308,0.52596396,0.094901085,-0.28591898,-0.6487765,-0.07896744,0.07140273,0.07919478,0.2696602,0.41169557,-0.19670041,0.39548182,-0.06425201,0.75533414,-0.105604924,-0.056824993,0.06694416,0.505035,0.30717614,-0.10983777,0.06465263,0.45541546,0.20407826,-0.06345332,-0.53509295,0.31895217,-0.3887818,-0.28982413,-0.019373283,-0.5042513,-0.18259609,-0.070609726,-0.22207554,-0.16935037,-0.14769506,-0.1628056,0.29949215,-2.7195647,-0.3475497,-0.20051439,0.2563393,-0.15736294,-0.020013396,-0.050984606,-0.5323355,0.2606486,0.2946015,0.49415493,-0.60440034,0.5511028,0.6121594,-0.5956381,-0.06286005,-0.7221017,-0.124657266,-0.07323062,0.6059949,0.09526292,-0.101471126,-0.06649738,0.5213704,0.7157266,0.42435285,0.28497604,0.6092013,0.38304064,-0.2609457,0.33458433,0.03020446,0.63513726,-0.17608292,-0.18847679,0.2659984,-0.48083684,0.37317872,-0.30617875,0.13017108,0.605779,-0.30169687,-0.8740916,-0.4372985,-0.09309701,1.1911281,-0.38422897,-0.4285107,0.12775846,-0.18357866,-0.084336035,0.108055204,0.63645554,-0.11142256,0.15332136,-0.6934615,-0.028134113,0.08990249,0.049390897,-0.10372745,0.019318681,-0.4782729,0.7440494,-0.09112412,0.51581365,0.07577985,0.28893104,-0.31895941,-0.4655905,-0.007835937,0.80698705,0.5231121,-0.17720532,-0.24849813,-0.23754644,-0.2661035,-0.08202003,0.048288148,0.7170861,0.6151046,-0.14747046,0.117328145,0.3474323,-0.028111437,0.12797318,-0.1281215,-0.26190194,-0.0842972,0.16453479,0.48424125,0.95306396,-0.30176488,0.2915908,-0.1475998,0.41279802,-0.21235877,-0.52005094,0.57773566,0.52812237,-0.3033113,-0.1632364,0.6265798,0.5427107,-0.5285062,0.7499678,-0.57473785,-0.30847248,0.57453924,-0.13520534,-0.35657915,0.174317,-0.27029943,0.06302807,-0.81627196,0.33529517,-0.4071804,-0.3487999,-0.51915985,-0.12617178,-3.0605948,0.26348767,-0.009618432,-0.10968598,-0.40111563,0.0076818913,0.36276817,-0.87550014,-0.81240875,0.021827957,0.12388077,0.63969195,-0.17103074,-0.12380549,-0.21673787,-0.6200275,-0.09322473,0.36333945,0.1066294,0.36782822,-0.10416695,-0.41872084,0.01354291,0.06715887,-0.5461599,0.07030707,-0.49585494,-0.50391823,-0.14121391,-0.62449,-0.07942376,0.5729241,-0.34921467,0.047040183,-0.35981444,0.1319011,-0.0144385,0.23357706,0.02383673,0.11198733,0.23365521,-0.13410856,0.18295836,-0.17929657,0.32280353,-0.04161669,0.46982506,0.2387814,-0.1326627,0.30158082,0.63448,0.60694355,-0.16821598,0.98027927,0.32399788,0.008737411,0.37585273,-0.23434572,-0.37191546,-0.49353823,-0.31613135,0.008422732,-0.28880435,-0.4578905,-0.008895397,-0.3619256,-0.89264864,0.46133247,-0.11170754,0.550559,-0.14986128,0.3304144,0.5269379,-0.20522797,0.10898469,-0.009855551,-0.36316285,-0.37183544,-0.23357208,-0.68764,-0.5394632,0.253937,0.68735653,-0.3709096,0.010360536,-0.083677895,-0.1966343,0.10521972,0.21224399,0.16985202,0.06776717,0.27010444,0.11771417,-0.43048736,0.27443323,-0.010054852,-0.07870407,-0.5515688,0.11056005,0.6481568,-0.7540112,0.6500361,0.3558797,-0.057031006,-0.25326833,-0.7151658,0.0004897515,0.1883357,-0.04639696,0.66365385,0.24905543,-0.82380104,0.48822102,0.11250564,-0.48522234,-0.6529288,0.3800938,-0.19668859,-0.07213231,-0.3146271,0.4435588,0.063476406,-0.038740505,-0.37308976,0.34567484,-0.36576727,0.056838423,0.20929058,-0.11818919,0.5010969,0.008821079,-0.10011243,-0.71873254,0.0015216371,-0.63076043,-0.3062125,0.38043118,-0.023545966,-0.010044803,-0.018603139,0.3190094,0.2712903,-0.27110323,0.31706688,0.11399835,-0.5457081,0.52188385,0.52508193,0.5759446,-0.24984993,0.42541894,0.23792945,-0.23405927,0.11398839,-0.120536566,0.31817913,-0.025614897,0.51831466,0.09330217,-0.03178972,0.31106904,0.42231992,0.010993473,0.44558263,0.25012746,-0.20775749,0.21604256,-0.15495168,0.28098252,-0.26447436,-0.49558532,-0.07233704,-0.122506104,0.14538285,0.50519675,0.29507825,0.19136149,0.20606048,-0.21620673,0.09779038,0.3212899,-0.112580635,-1.5974818,0.21855839,0.2838428,0.894938,0.4288799,0.244384,-0.32030773,0.472918,-0.1316427,0.09180337,0.6376186,0.11004096,-0.4984771,0.75421244,-0.57422256,0.40814397,-0.26049832,-0.085648775,0.045169767,0.12542808,0.48469892,0.8207715,-0.17678685,0.013220825,-0.12677632,-0.15074854,0.22719455,-0.3871977,0.26852044,-0.25278375,-0.3968811,0.61631787,0.3545549,0.26297653,-0.3536605,-0.09959755,0.14624566,-0.24786341,0.22907577,-0.15632677,-0.062843286,-0.04419209,-0.53836566,-0.13521905,0.34367073,-0.05101307,0.087094046,-0.14497776,-0.25231984,-0.04327932,-0.0031164635,0.03630082,0.094502725,-0.6883974,-0.14519952,-0.22137274,-0.4875749,0.6243129,-0.11955614,0.090395905,0.11002708,0.08716317,-0.2545586,0.14421006,0.049555957,0.573039,0.16287814,-0.12937182,-0.23674814,0.15101026,0.21717739,-0.31585503,0.077892005,-0.38590685,0.3399855,-0.3494699,0.59436685,-0.17819472,-0.620953,-0.134457,-0.17990911,-0.05376959,0.40915933,-0.23581557,-0.22301172,-0.20595837,-0.28240487,-0.27200133,-0.05413619,-0.11261951,0.33162805,0.052147854,-0.1345416,-0.22735791,-0.0009178966,0.047560513,0.5293487,0.0610403,0.30061093,0.7457016,-0.046363086,-0.36769733,0.20814812,0.39776543,0.32357565,0.26138237,-0.081435956,-0.622942,-0.42128685,-0.46524343,0.24631006,-0.123863526,0.038351227,0.050491884,-0.20690393,0.80578166,0.038701687,1.4201536,-0.048829872,-0.3742223,0.11456671,0.65151757,-0.17755301,-0.07117029,-0.4985133,0.9850314,0.51846427,-0.40579596,0.026144201,-0.6221716,-0.23306222,0.34959492,-0.43774548,-0.27064306,-0.14878632,-0.66155905,-0.26399612,0.16666435,0.17236477,0.17149496,-0.1850037,0.09315517,0.1957456,0.17741652,0.4003537,-0.71640396,-0.20442444,0.22931391,0.2564503,-0.04305576,0.107433915,-0.35253444,0.31605706,-0.85172874,0.16472425,-0.40574896,0.12577604,-0.16891284,-0.5937213,0.09154755,0.03912565,0.3193557,-0.3489946,-0.4784707,0.00835863,0.5159337,-0.05862248,0.058263537,0.46046472,-0.36595833,-0.044526022,0.2332396,0.6622216,1.223261,-0.16370404,-0.07444418,0.106335014,-0.51221085,-0.95856786,0.12932646,-0.5278347,0.22895788,-0.34500977,-0.5815897,-0.6498389,0.25467125,0.12088106,0.05067106,0.101613484,-0.40651953,-0.22507632,0.04442379,-0.36331913,-0.08591708,-0.07139367,0.1422084,0.69242555,-0.3399831,-0.36447445,-0.14631233,0.24619357,-0.1936245,-0.59935766,-0.08316368,-0.17257251,0.33714172,0.033479154,-0.2805465,-0.005748575,-0.067194395,-0.52958584,0.19900815,0.2513952,-0.24884248,0.17276978,-0.41790923,0.05259038,0.8219616,-0.01514382,0.028212627,-0.44114852,-0.58157665,-0.79548126,-0.4510649,0.15572435,0.034797907,-0.19802476,-0.69030637,0.13404232,-0.3144561,-0.06447921,0.19357596,-0.42058966,0.2549992,0.117850624,0.47286773,-0.21970432,-0.8675199,0.27924374,0.29756305,-0.0973891,-0.7438918,0.62063843,-0.29382437,0.6484738,0.12635131,-0.04310539,-0.12506162,-0.39657247,0.08126833,-0.39077958,0.00071618956,-0.5254312,0.15140669,957 -909,0.45361748,-0.2776729,-0.55918604,-0.087566435,-0.57913333,-0.11848114,-0.32050863,0.4054682,0.5068006,-0.1629646,-0.3344376,0.010997345,0.08898532,0.41728243,-0.14552546,-0.6749463,-0.08077086,0.40840173,-0.83651334,0.5891804,-0.35900185,0.4316174,0.12880222,0.40786198,0.18020207,0.12632959,0.10927721,-0.05095573,0.13958251,-0.4653518,-0.050481558,0.20784223,-0.7984999,0.1641867,-0.40255603,-0.6596943,0.009166151,-0.5466606,-0.13647752,-0.9193711,0.14719589,-0.77932614,0.77197033,-0.14772685,-0.27588013,-0.28569764,0.22128706,0.57786894,-0.09485006,0.16751562,0.38239434,-0.3271932,-0.15134515,-0.28916582,0.08859829,-0.42087007,-0.46903506,-0.23850374,-0.5042295,-0.0848892,-0.13852574,0.259663,-0.16685742,-0.09682237,-0.15199442,0.29049304,-0.27700832,0.13116054,0.24990588,-0.0584162,0.638855,-0.5939679,-0.009379496,-0.11521288,0.471687,-0.20275676,-0.25492534,0.47171664,0.3738151,0.4341174,0.29644445,-0.37917468,-0.14307332,-0.03797509,0.01039366,0.5625751,-0.37046647,-0.27002704,-0.26748517,0.012933691,0.60051346,0.37307307,0.031848412,-0.20294529,0.15540327,-0.24632138,0.022245914,0.6316297,0.43529558,-0.08546547,-0.11040867,0.055128384,0.46466413,0.5007634,-0.13075286,0.06065021,0.011819343,-0.52144706,-0.2570144,-0.008797944,-0.27913475,0.47565362,-0.15987866,0.15315586,0.86068374,-0.10138627,-0.12635075,0.26313332,0.1771909,-0.06336479,-0.09528301,-0.41378763,0.33920157,-0.8989651,0.12597458,-0.36629617,0.6524729,-0.0022767268,-0.7556675,0.22052033,-0.7657125,0.062471393,0.023715748,0.5217507,0.8254168,0.5156769,0.3147597,0.9276096,-0.15372688,0.19782312,0.08385554,-0.36060944,0.25900397,-0.27904686,0.002559257,-0.56489366,-0.21066575,-0.28134987,0.17008595,0.1727375,0.4490663,-0.79387015,-0.32085353,0.27872872,0.6555891,-0.31963453,0.16403349,0.8403136,1.1608654,1.1403947,0.07121471,1.4429835,0.104495384,-0.3678669,-0.04078682,-0.012308647,-0.73819846,0.29769334,0.39858127,-0.74821395,0.38090786,-0.10747788,0.017550161,0.36297965,-0.6220979,-0.22524054,0.109447785,0.3241847,-0.10693824,-0.40653285,-0.5518637,-0.3546126,-0.043551665,0.15079413,-0.05307712,0.27438748,-0.40214157,0.23045392,0.053935066,1.0458096,-0.20646794,-0.027709166,0.028881969,0.41330028,0.28331962,-0.09841309,-0.27039823,0.07719221,0.44599763,0.21922706,-0.48677993,0.060566466,-0.3380599,-0.31620714,-0.2808526,-0.11032996,-0.2515489,0.10587511,-0.3842602,-0.32859528,-0.09133039,-0.3097443,0.3997626,-2.10623,-0.30302617,-0.048371017,0.40769705,-0.25212693,-0.13262212,-0.18845916,-0.51293993,0.45868346,0.16281262,0.68254894,-0.7136054,0.4956679,0.5861063,-0.73953223,-0.12095225,-0.7536335,-0.20002502,0.1266021,0.27235642,0.2823312,-0.25470623,-0.09816996,0.16418509,0.7355175,0.046906278,0.22034037,0.5709645,0.41375133,-0.20932633,0.48068535,-0.120709054,0.56633955,-0.32610273,-0.24986826,0.36649418,-0.29393324,-0.033934753,-0.30349785,0.0025682747,0.689945,-0.64600426,-1.2213045,-0.60604775,-0.25806907,1.0630612,-0.23379205,-0.49240708,0.3383734,-0.16554262,-0.18151055,0.24530129,0.75321865,-0.16581558,0.2563808,-0.76693535,-0.1238605,-0.044911325,0.057814296,0.03671366,-0.12577641,-0.59996456,0.78292876,-0.075637855,0.49096403,0.23036069,0.33514294,-0.3253846,-0.41852632,0.075513445,1.1520743,0.5938832,0.04750346,-0.18875188,0.006192165,-0.382991,-0.026455695,-0.11989669,0.611474,0.87581235,-0.28524524,0.21090972,0.24110854,-0.025691202,0.082924895,-0.15299655,-0.42673326,-0.12050462,0.015959492,0.5876178,0.8010917,0.12510236,0.55466425,-0.18796122,0.360453,-0.07239311,-0.6309425,0.47927514,0.7928067,-0.14863399,-0.019878222,0.758594,0.37585792,-0.18700488,0.6177296,-0.6091039,-0.6143804,0.54181296,-0.06602954,-0.5854692,0.27827302,-0.30396214,0.24081166,-0.7278853,0.57994556,-0.5781913,-0.69988376,-0.43037876,-0.09703016,-2.5174897,0.3617877,-0.18424706,0.07735347,-0.40201116,-0.11844772,0.3001219,-0.6738701,-0.774923,0.064823665,0.18326688,0.8530853,-0.14615901,0.07557305,-0.053880427,-0.63150394,-0.18619801,0.31498507,0.2604414,0.24198209,-0.110235006,-0.60198885,-0.13257326,-0.064047106,-0.57358426,0.017431712,-0.7941933,-0.6632243,-0.040233303,-0.579647,-0.31599548,0.6965901,-0.4072722,0.15951249,-0.33880904,-0.01350839,-0.042442262,0.2329812,-0.04958023,0.11969075,0.09915811,-0.08283839,0.12857665,-0.07121583,0.45199144,0.12327448,0.27143803,0.046488732,-0.17863393,0.255599,0.55340546,0.7729885,-0.39307523,1.3817986,0.5128568,-0.22533493,0.12639146,-0.22214781,-0.43649206,-0.70830375,-0.30479226,0.017377196,-0.5007003,-0.3006393,0.06384202,-0.29026693,-0.95030195,0.76345485,-0.027851472,0.28586486,-0.033139534,0.07837606,0.29199067,-0.2831749,-0.20479967,-0.1947258,-0.2566426,-0.41309536,-0.085952885,-0.70397395,-0.4741405,-0.38291898,1.0958626,-0.41973045,0.2815041,0.24256597,-0.13670401,0.34229776,0.13542305,-0.07775068,0.05064556,0.5905354,0.16007471,-0.76939243,0.2588832,-0.0078656,-0.03882492,-0.5177224,0.14381093,0.8482985,-0.8184001,0.594026,0.44759393,-0.030998817,-0.16898991,-0.5867123,0.062286884,0.14792544,-0.29239202,0.5297081,0.21497953,-0.62010986,0.5752174,0.25125846,-0.51176745,-0.7924948,0.4828184,0.0154359015,-0.35077587,-0.108837724,0.5421887,0.17366166,-0.14417239,-0.18394077,0.47259712,-0.3727025,0.5938325,-0.046564188,-0.08034341,0.108150184,-0.086598836,-0.38063416,-1.0470716,0.27130613,-0.5433941,-0.3859433,0.2855842,-0.072603405,-0.31727597,0.41180253,0.43118286,0.455295,-0.44264945,0.110411495,-0.21281986,-0.61605906,0.39081153,0.4973794,0.41727972,-0.2998394,0.5124688,0.2509344,-0.4495561,-0.15591687,0.0074825287,0.57871044,-0.16895784,0.5455471,-0.14794092,-0.19255431,0.30721983,0.6727576,-0.03742118,0.29174006,-0.06751626,-0.008720696,0.08251376,0.12019587,0.27022338,-0.03177115,-0.51856714,0.072921015,-0.19521244,0.017322833,0.67508507,0.2921112,0.091470055,0.14025415,-0.3247117,-0.016771195,0.22384389,-0.07071117,-1.7870094,0.61826974,0.28990978,0.9141101,0.5798015,0.13603434,-0.0848883,0.5789216,-0.25437376,0.012480669,0.42800894,-0.005397459,-0.2873815,0.6949561,-0.80342436,0.31325084,-0.15887593,0.03830799,0.21564882,-0.11554924,0.49473563,0.94087106,-0.14040105,0.22272556,-0.04258192,-0.14470248,0.0040815673,-0.35711458,-0.00015952438,-0.54601854,-0.4848399,0.9515614,0.33876634,0.37678528,-0.2476091,0.13324875,0.10949859,-0.19056536,0.41430315,0.026146179,-0.054251324,-0.0071428814,-0.51596296,0.16589974,0.5726269,-0.08648013,-0.018981343,-0.16349667,-0.06035122,0.09175157,-0.21531124,0.18593156,-0.022732625,-0.8885409,-0.14571331,-0.7350159,-0.25465766,0.3862939,-0.16002692,0.069410436,0.22500764,0.10403854,-0.03224188,0.3864937,0.3562541,0.6252378,0.17559601,-0.35738632,0.05265501,0.35232663,0.19418202,-0.40991282,0.02534187,-0.20351678,0.09504217,-0.5659253,0.66067266,-0.048777003,-0.47205982,0.39839056,-0.1236386,-0.02898326,0.46073946,-0.11750511,-0.21805005,0.09900268,-0.053181548,-0.28961506,-0.23026066,-0.2808093,0.0008527686,0.37149835,-0.024830678,-0.17929499,-0.19955592,-0.24198948,0.41213784,-0.061251223,0.6926467,0.38042983,0.16177535,-0.32923266,0.2864679,0.283082,0.48051786,0.03004489,-0.015662232,-0.49484554,-0.30148038,-0.3760232,0.08505842,-0.1718868,0.22959034,-0.021025984,-0.05406946,1.107858,0.20737647,1.2512388,0.04963441,-0.4132134,-0.006812791,0.58969635,-0.40767118,-0.20096952,-0.57978904,1.1761923,0.53268546,-0.33299044,-0.024235362,-0.47854042,-0.060356364,0.30882537,-0.29842412,-0.14238068,-0.0075498275,-0.6514411,-0.5424455,0.23115478,0.39763764,-0.07467175,-0.16845606,-0.016387323,0.37524557,0.16336219,0.11003971,-0.7743833,-0.2359202,0.25570735,0.44177082,-0.12582192,0.24571633,-0.43904093,0.36673427,-0.7781832,0.14385007,-0.32930216,0.14836119,-0.36329496,-0.5690677,0.15592988,-0.024430426,0.28134763,-0.2960479,-0.3448964,-0.0051711746,0.29945347,-0.010254711,0.04164463,0.62242633,-0.32048306,-0.038621146,-0.014137884,0.5237784,1.2396075,-0.48114458,-0.07825627,0.4330815,-0.47665954,-0.58077925,0.32508996,-0.41864538,-0.25341812,-0.12602669,-0.64590335,-0.5247694,0.1605735,-0.03594506,0.13776736,-0.07137669,-0.5965144,0.23352404,0.41288415,-0.30034786,-0.26240978,-0.2024306,0.39373457,0.61312145,-0.22836219,-0.57800645,0.08266868,0.25338888,-0.3928244,-0.46031508,-0.04348262,-0.29182947,0.35709652,-0.027954085,-0.5874884,-0.09352991,-0.012803748,-0.61060226,-0.030084187,0.35733566,-0.3076836,0.0777932,-0.2033463,-0.05691421,1.0462761,-0.32198164,-0.03362848,-0.43531168,-0.464468,-0.7257164,-0.23532222,0.051430717,0.5063679,-0.01259537,-0.57597566,-0.060845446,-0.26796296,-0.18663175,0.08420261,-0.2395432,0.32170638,0.30426505,0.6497172,-0.56220776,-1.0889908,0.43026218,0.29742593,-0.23117043,-0.6311832,0.60011816,0.023242945,0.8080093,0.090382814,-0.04589851,0.1855666,-0.50503236,0.15075544,-0.11750925,0.03899144,-0.8491674,-0.018619316,967 -910,0.32833892,-0.43302998,-0.29686496,-0.091528915,-0.36435196,-0.22495215,-0.22058141,0.5654947,0.11469817,-0.26277402,-0.30850175,-0.048315298,-0.026558718,0.3789158,-0.07964219,-0.49989977,-0.16240849,0.32140023,-0.6869747,0.6137558,-0.5846142,0.070441574,0.055316094,0.5048075,0.014939678,0.2501835,0.39435804,-0.17632735,-0.027739376,0.01059556,-0.069038816,0.4101791,-0.66642606,0.14577508,-0.2366616,-0.39744273,-0.009635667,-0.56382865,-0.09241825,-0.8244011,0.08624493,-1.026452,0.4451182,0.08218273,-0.35588574,-0.1974201,0.15826388,0.32142177,-0.5382034,-0.024089968,0.27918324,-0.23785555,-0.2861614,-0.3282071,0.24155174,-0.34454167,-0.5710061,0.0368147,-0.34145072,-0.23547749,-0.09079141,0.28281137,-0.19014144,-0.056363355,-0.13603243,0.45337078,-0.5529526,-0.21096689,0.1317508,-0.19421954,0.123363376,-0.65178937,-0.009876651,-0.37383413,0.45551836,0.007065455,-0.28340632,0.47587338,0.26713964,0.42512956,0.2663295,-0.28204003,-0.30190927,-0.03666163,0.017855942,0.39602795,-0.37691417,-0.3151382,-0.28468427,-0.11766878,0.17250724,0.20092332,-0.05775137,-0.3187391,0.093479335,-0.27928957,-0.05584776,0.17127295,0.35512128,-0.33877465,-0.288295,0.20042975,0.5361429,0.2499628,-0.19353034,-0.19423842,0.13249378,-0.6807995,-0.19914703,0.087518595,-0.19351387,0.62218744,-0.13207477,0.026148856,0.8051483,-0.018634157,-0.062906645,-0.06038751,0.23111832,-0.16341817,-0.2736009,-0.43306008,0.44978943,-0.33785906,0.10513821,-0.29885414,0.7725723,0.19037944,-0.73379046,0.3652904,-0.6211182,0.096508585,-0.07616919,0.6491443,0.75551224,0.76039696,0.39850628,0.80913514,-0.21021004,0.17774747,-0.0574854,-0.22614433,0.1449129,-0.26193973,-0.09193877,-0.47283256,0.10140165,-0.17198308,0.010972805,-0.08219796,0.4598606,-0.61455876,-0.05276999,0.30791253,0.5964929,-0.310268,-0.09024625,0.64984226,1.0475689,1.0170425,0.06536923,1.3542051,0.44762984,-0.17573428,0.22414494,-0.044403702,-0.94308513,0.06746522,0.49736667,-0.084088035,0.24445839,0.039843407,-0.15948372,0.5904951,-0.56747276,0.09060672,-0.2243303,0.31582066,-0.084987335,0.0530339,-0.6028211,-0.25949702,0.06792014,0.023690274,-0.09214612,0.32489985,-0.2687957,0.23674019,-0.083167695,1.281056,-0.05420594,0.18302858,0.17401512,0.5169044,0.06852454,0.0147722615,-0.040078077,0.33240116,0.3678051,-0.056997288,-0.6111862,0.34006977,-0.32459876,-0.5858712,-0.09261528,-0.27509174,-0.11714014,0.17914535,-0.4231874,-0.34011236,-0.034344953,-0.23843968,0.42276272,-2.3464034,-0.16865481,-0.21669318,0.36392972,-0.2848679,-0.07497275,-0.15679199,-0.43239,0.2709715,0.31609955,0.6008981,-0.733592,0.43245748,0.505095,-0.64133984,-0.1396573,-0.7592673,-0.039504115,-0.1328326,0.3929541,0.056880485,-0.30212715,-0.08966118,-0.20942432,0.71620053,0.017111037,0.2112515,0.55235475,0.18239002,0.19425042,0.4887618,-0.055752385,0.5415881,-0.5637059,-0.45755553,0.29595745,-0.37923393,0.41935667,-0.031377386,0.062824965,0.6100034,-0.6658506,-1.0385798,-0.69856924,-0.3036919,1.0527607,-0.3771437,-0.46864638,0.25738773,-0.16793652,0.07952996,0.14498176,0.62896043,-0.06680005,0.15369101,-0.7384286,0.10189342,0.019163074,0.46297598,0.10489574,-0.054701854,-0.41121694,0.7837387,-0.1755848,0.57196516,0.4280094,0.12533139,-0.34068823,-0.45324838,-0.017727481,0.8542698,0.31222743,0.11412359,0.012258534,-0.35942551,-0.124081306,-0.2538487,-0.0123251425,0.56854516,0.8041255,-0.14463145,0.12709735,0.28929606,-0.030922651,-0.035991807,-0.2076552,-0.3285854,-0.17261894,0.38845766,0.46911398,0.8174205,-0.13853957,0.34610167,-0.25841066,0.4331201,0.1224888,-0.49904358,0.540885,0.67736155,-0.19295757,0.12633629,0.75860834,0.7599394,-0.45735574,0.5071936,-0.613618,-0.36137497,0.49534068,-0.11938461,-0.46503854,0.04485296,-0.3124336,0.3464497,-0.7173023,0.49280012,-0.49902916,-0.44426122,-0.81940633,-0.058629274,-2.9094822,0.27963766,-0.18143971,-0.038242955,-0.098118626,-0.06658976,0.4020492,-0.8476879,-0.5212799,0.21472,0.09962087,0.5137957,-0.0625625,0.04491586,-0.322862,-0.32209602,-0.064355254,0.34136453,0.32762292,0.23487073,-0.17332478,-0.56646985,0.09813396,-0.071744256,-0.3239889,-0.0068446547,-0.8130799,-0.4376522,-0.09450889,-0.79409057,-0.38637206,0.5626708,-0.518001,-0.014788661,-0.22143416,0.1223919,-0.29372135,0.230967,0.07317754,0.21315251,0.16742925,-0.12079173,-0.061585397,-0.18504061,0.3919119,0.03621472,0.101727396,0.066676535,-0.19829233,0.16755962,0.64470214,0.7531232,-0.24038804,1.296139,0.66851217,-0.18574472,0.19257379,-0.25660804,-0.2638114,-0.69482785,-0.3941177,-0.26163688,-0.3607161,-0.46156776,0.360038,-0.2139494,-0.9119527,0.93167067,-0.1616931,0.2024498,0.2201482,0.07510204,0.41024557,-0.30353975,-0.032205295,-0.18253513,-0.015862605,-0.5608955,-0.37250268,-0.682108,-0.5164409,-0.16357571,1.1715776,-0.26216236,0.14817382,0.22044103,-0.33651176,-0.12871341,0.08644453,0.0025248204,0.3416669,0.5779772,0.011804019,-0.7327896,0.29543898,0.11845199,-0.066428654,-0.30525163,0.21372636,0.6736264,-0.98915416,0.794202,0.300916,-0.08624455,-0.11164089,-0.6154701,-0.5628169,0.042919796,-0.10316514,0.4425132,0.09512699,-0.7913254,0.46840444,0.31587613,-0.6092294,-0.8688529,0.17465329,-0.2724611,-0.23102097,-0.04239915,0.39170322,-0.041179877,-0.0959798,-0.21441495,0.2338997,-0.41757426,0.3192694,0.055187777,-0.20133543,0.32439813,-0.3237046,-0.15973416,-0.91621685,0.13345575,-0.55036896,-0.28988716,0.5353162,-0.061283354,-0.3294803,0.21417247,0.26285326,0.278679,-0.2766033,0.07502333,0.06242296,-0.37406674,0.15001087,0.51300955,0.28369543,-0.27724653,0.55624753,0.10855526,-0.031763624,-0.34586826,-0.22698571,0.21493204,-0.04850912,0.3646325,-0.31556177,-0.199548,0.28818095,0.9183793,0.082594134,0.63570666,-0.004727222,0.032613155,0.59048635,0.09131217,0.24373777,-0.025268197,-0.5569826,0.14474876,-0.023305902,0.06807306,0.5225207,0.318794,0.39606515,0.028059125,-0.1345811,0.0066058487,0.16566081,0.07021459,-0.94056416,0.32430327,0.085953355,0.68390924,0.6915229,0.16712527,-0.3648415,0.79498214,-0.39365885,-0.039973095,0.5472321,-0.074870914,-0.5518088,0.76588804,-0.6883478,0.384636,-0.36498296,-0.045173883,0.16567685,0.0774042,0.44036007,0.6671386,-0.14264867,0.038200762,0.029759621,-0.13348983,0.042306244,-0.2891315,0.119370736,-0.3521212,-0.41883254,0.8844569,0.41607356,0.47767273,-0.19849235,-0.016514517,0.050573442,-0.23308754,0.50408345,-0.13936123,-0.090222664,0.17150815,-0.5842098,0.11437819,0.6730099,0.016983887,0.08884063,-0.03952245,-0.40268123,0.23113574,-0.18248005,-0.17773052,-0.08357907,-0.74491984,0.09369447,-0.37396994,-0.35743788,0.54723555,-0.25555372,0.15896395,0.19175589,0.10038647,-0.30941302,0.4768436,0.12466419,0.9538164,0.15999082,-0.20442213,-0.08559481,0.2563388,0.17003684,-0.18964891,0.11397856,-0.525763,-0.031205177,-0.62085545,0.5886557,-0.10897606,-0.4296813,0.20354263,-0.19436656,-0.07150581,0.50318533,0.0036391292,-0.21701078,0.014840168,-0.14167623,-0.47190297,-0.15017663,-0.3613499,0.29604375,0.14305855,0.19560926,-0.21241839,-0.3367957,-0.2760935,0.7389433,0.02178646,0.45326564,0.37083992,0.11884495,-0.14378597,0.12638669,0.16772431,0.5113445,-0.013454467,-0.08741162,-0.505376,-0.29645205,-0.18677996,-0.15432262,-0.052913412,0.4065484,0.09321085,-0.3168957,0.88851947,-0.083528034,1.2778119,0.022586199,-0.39769664,-0.02012235,0.61553186,-0.12822461,-0.048466694,-0.40709615,0.96130323,0.54802996,-0.15821593,-0.027227765,-0.55681264,-0.21018346,0.41320872,-0.3043621,-0.15780659,-0.11426098,-0.68721277,-0.4311413,0.17610498,0.32119328,0.12019536,-0.11428013,0.1036123,0.11015894,0.1301672,0.32321504,-0.46648434,-0.2077089,0.38015357,0.4198557,-0.087186635,0.22956741,-0.2745764,0.45968163,-0.73979473,0.32603192,-0.5875903,0.09060311,-0.36731753,-0.45717993,-0.024194425,0.01621706,0.2966958,-0.21910872,-0.28949055,0.030424438,0.55644226,-0.030803153,0.2951948,0.89103794,-0.27523747,-0.07520034,-0.03837418,0.56498057,0.9686498,-0.5586506,-0.07673794,0.1135433,-0.19290191,-0.5241074,0.60966617,-0.34697405,-0.16449384,-0.0357114,-0.44482458,-0.5975248,0.07627304,0.17921662,-0.14873104,-0.10069767,-0.66659826,0.1103855,0.35223362,-0.104008555,-0.13083693,-0.08471564,0.639801,0.7688699,-0.24210334,-0.5000847,-0.00087932375,0.2671232,-0.2065778,-0.41490868,-0.20513754,-0.49663773,0.32410344,0.27478993,-0.43185923,0.063265085,0.10628884,-0.46864775,-0.10887887,0.19813858,-0.2387499,0.24140124,-0.377553,0.13007168,1.0367097,-0.02999167,0.10227159,-0.41371343,-0.5838436,-1.1040813,-0.34648204,0.50108343,0.28679857,-0.009381592,-0.4030676,0.19935541,-0.14614414,-0.43125775,0.06687492,-0.55731213,0.4489204,0.17033285,0.5834859,-0.26504555,-0.6831088,0.097361185,0.26665244,0.11352714,-0.4238939,0.5381214,-0.13965574,1.1543599,0.022185251,-0.21434636,-0.010370121,-0.45353356,0.021324217,-0.39163753,-0.017468996,-0.6328524,-0.08298228,973 -911,0.3693706,-0.06257349,-0.35587645,-0.49281254,-0.2595562,0.05216668,-0.11744433,0.31654608,0.12815405,-0.35014978,-0.15572886,-0.12361895,0.03787744,0.6621446,-0.19342543,-0.88477606,-0.124255925,0.0037866507,-0.57959163,0.43208233,-0.64093095,0.31020793,0.16980255,0.39735484,0.023839653,0.21319415,0.41374683,-0.17756201,0.12356016,-0.1654459,-0.39773396,0.18091206,-0.62786186,0.2781035,0.22890599,-0.24305795,0.11292308,-0.41841197,-0.13224262,-0.72631764,0.31294617,-0.7598106,0.29574764,-0.10451526,-0.28676486,0.18212478,-0.13073398,0.37248436,-0.46631578,0.0611069,0.24623907,-0.39165652,-0.031132191,-0.18568571,-0.07147839,-0.58020437,-0.55536795,0.12672693,-0.5314474,-0.31593227,-0.26166153,0.12946443,-0.41965792,-0.037551742,-0.24246182,0.46005008,-0.39873013,-0.17592634,0.32003427,-0.16515155,0.18963355,-0.51004297,-0.18534255,-0.116809905,0.28850064,0.033531684,-0.18498166,0.27393582,0.52597713,0.4055889,0.18044287,-0.27336463,0.031408496,-0.29152545,0.3305634,0.4694353,0.022256598,-0.5775959,-0.21900566,-0.05928427,-0.039951336,0.21080263,0.063759856,-0.3892081,0.07675294,0.24534778,-0.42901587,0.34212014,0.40571904,-0.38985956,-0.12625961,0.29012445,0.4162618,0.060793355,-0.14940862,0.05269556,0.05133691,-0.5712576,-0.27685785,0.41198286,-0.25727528,0.55031174,-0.36232352,0.12977476,0.82381344,-0.18079008,0.09953252,-0.3680083,-0.077830456,-0.2762839,-0.22152118,-0.37078607,0.35855827,-0.54072326,0.123690926,-0.45775554,1.1040671,0.19471805,-0.7106984,0.40094185,-0.53171027,0.15746093,-0.26189163,0.6855316,0.79501754,0.33180276,0.23359685,0.9157627,-0.64537996,0.08259984,0.04100202,-0.4260459,0.10696883,-0.23465993,0.2262464,-0.37330154,0.026827574,-0.019973105,0.23649256,-0.07209081,0.17519283,-0.3860936,-0.073232,0.025034776,0.7009035,-0.42032337,0.02611778,0.8037526,0.94496155,1.0724903,0.22079206,1.3680487,0.472744,-0.34918392,0.09431585,-0.117610365,-0.53662235,0.21335685,0.52126014,0.3884622,0.07333511,-0.08176025,0.27023497,0.47040406,-0.4498876,0.21965063,-0.19048935,0.3878714,0.08052857,-0.12901758,-0.5198744,-0.3448279,0.15851356,-0.1082936,-0.02964291,0.31116042,-0.01809675,0.49848685,0.060378093,1.0836693,0.15076356,0.15778059,-0.14008667,0.38070086,0.23901677,-0.021390602,0.16411312,0.28984675,0.5640983,-0.08923897,-0.7954299,-0.036197826,-0.3011383,-0.46662378,-0.2526436,-0.47288594,0.11440454,-0.0014480948,-0.42908657,-0.03946212,0.18664436,-0.20727734,0.4687896,-2.1076899,-0.20115243,-0.28712875,0.24924964,-0.2445265,-0.31825063,-0.050869346,-0.5196232,0.48808572,0.40764856,0.43263844,-0.69157314,0.2299176,0.29147446,-0.25168815,-0.004485627,-0.80653024,-0.12245115,-0.23074812,0.23851609,0.056333918,-0.09110085,-0.26376763,0.18055458,0.7154034,-0.056634936,-0.08074033,0.0991661,0.3048519,0.120886065,0.64329696,0.11651436,0.67954606,-0.2595998,-0.026342267,0.2765253,-0.45316815,0.31757528,0.07200111,0.21334054,0.36048284,-0.53768635,-0.8131542,-0.8057355,-0.67958814,1.2480433,-0.52575725,-0.34033343,0.21979511,0.113185614,-0.17499042,-0.030167723,0.4252108,-0.2569411,-0.11864883,-0.64404887,0.11244232,0.122372955,0.17407028,-0.022115225,0.2141021,-0.2045603,0.693897,-0.14037289,0.38273856,0.3734363,0.06585806,-0.14984836,-0.4491047,-0.07176896,0.9671798,0.5018946,0.084712245,-0.19303496,-0.21625233,-0.26236007,-0.18364972,0.11721012,0.5274294,0.9887044,0.06461519,0.03816435,0.32711324,-0.20641907,0.014584847,-0.0017270545,-0.4612534,0.064171195,0.011893491,0.72004384,0.38021708,-0.12363657,0.4397935,-0.21082382,0.27800342,-0.20124392,-0.50502175,0.6727235,1.254471,-0.14448003,-0.14212865,0.46480095,0.5235962,-0.41216585,0.3402861,-0.5032975,-0.26767957,0.853045,-0.043270092,-0.4563187,-0.11259192,-0.38083684,0.07122407,-1.0335373,0.21262097,-0.173256,-0.5139566,-0.7136533,-0.16101485,-4.3315253,0.14670123,-0.1372179,0.05997016,-0.22577743,-0.16324367,0.40483233,-0.63532037,-0.56321996,0.15638362,-0.027584093,0.6217995,0.0076667047,0.16772993,-0.39336362,-0.06891144,-0.29664403,0.04595515,0.0035771083,0.23865019,0.11808411,-0.23064196,0.20933537,-0.39589903,-0.58968705,0.14012708,-0.5666054,-0.66737074,-0.31320795,-0.44887754,-0.44834304,0.8146799,-0.47207883,0.030182205,-0.04509385,-0.028863907,-0.26283613,0.41601384,0.25017253,0.3041719,0.0819208,-0.06654944,-0.28908744,-0.50067776,0.08489778,0.13092011,0.24583851,0.20685047,-0.020286635,0.0876036,0.6091654,0.7132134,0.05201286,0.689826,0.25527063,-0.052247822,0.3103321,-0.405701,-0.18842788,-0.72892666,-0.52353317,-0.1988377,-0.37576702,-0.6672411,-0.17288078,-0.29964763,-0.73356277,0.29257777,0.06564551,0.04780527,0.024774998,0.251426,0.3641158,-0.055594254,0.052939147,-0.13633983,-0.04741318,-0.72018456,-0.34966847,-0.7947286,-0.5714228,0.15314947,1.0153346,0.011109282,-0.29060653,-0.20446032,-0.3917717,0.06530633,0.08357644,0.21599911,0.29166603,0.2521912,-0.051724676,-0.9206815,0.4868957,0.01762561,-0.18595499,-0.7621359,0.018685153,0.91453266,-0.7685962,0.5064888,0.4699835,0.11461994,0.11099254,-0.29723266,-0.48846254,0.24402218,-0.30446067,0.47048533,0.0044625006,-0.4852241,0.5772005,0.22632565,0.046266943,-0.68501765,0.4211795,-0.08020918,-0.16714312,0.116407774,0.44577357,0.11081353,0.08368064,-0.15278643,0.120710194,-0.69502133,0.10918319,0.5054107,0.2804952,0.42373106,-0.12811,-0.2519286,-0.6123841,-0.18120317,-0.75669986,-0.21477573,-0.055252638,-0.0011158685,0.055987105,0.08726233,-0.03200775,0.31925896,-0.23630409,0.18989675,0.018968506,-0.19192655,0.39036253,0.5336079,0.069816135,-0.42356753,0.6944614,0.119817264,0.18515669,-0.31559947,0.06902581,0.3979636,0.48969188,0.35517988,-0.17951714,-0.18247981,0.24405164,0.8036692,0.21073417,0.48574257,0.24727298,-0.066235185,0.49286464,0.19981885,0.2176944,0.17279856,-0.23968518,-0.10437408,0.06950788,0.056979638,0.51940805,0.04859918,0.344206,0.034731776,-0.076964885,0.19907252,0.09551867,-0.19810408,-1.1463534,0.60318714,0.31892508,0.5448467,0.4897724,-0.13793813,-0.035206497,0.5360391,-0.48578277,0.15314461,0.3329554,0.058748018,-0.5938458,0.7953174,-0.7728491,0.38347208,-0.29884014,0.10524311,-0.085405715,0.30415925,0.46527204,0.78764075,-0.16487382,0.0886616,-0.058984492,-0.2933754,0.3439751,-0.51258487,-0.08256615,-0.44700134,-0.3537613,0.48269236,0.22946115,0.36622727,-0.33280802,-0.13621946,0.13301022,-0.1104849,0.110373974,-0.20213933,-0.09474146,0.011987816,-0.68685055,-0.5552362,0.52521914,0.07848612,0.2660551,0.20837076,-0.30051208,0.3707873,-0.22129874,-0.035413105,0.047682256,-0.73309284,-0.043955475,-0.25147954,-0.57183224,0.31941214,-0.7426374,0.32154247,0.2542827,0.10745665,-0.21485217,-0.041835517,0.19401099,0.683388,-0.062294897,-0.367308,-0.37038198,0.08332927,0.1488166,-0.4266053,-0.0082621975,-0.4159402,-0.06846928,-0.44594678,0.37182614,-0.13599204,-0.14762259,0.041685566,-0.18280281,-0.16875325,0.4985496,-0.48631087,-0.028018156,0.037024003,-0.17604357,-0.10793463,-0.044605237,-0.40901992,0.31493834,-0.011026382,0.19940753,-0.013211712,-0.12252257,-0.14172909,0.47635487,0.11992223,0.22307329,0.17855026,-0.16919585,-0.17797743,-0.25742918,-0.033884715,0.2104816,0.20807417,-0.27084172,-0.15083036,-0.26054308,-0.1689415,0.2238309,-0.15640683,0.2879364,-0.020923099,-0.5170056,0.631858,-0.026967352,1.2556719,0.14425825,-0.5337597,-0.034352448,0.5751565,0.07082124,0.06991657,-0.16313398,0.7143248,0.4748629,-0.08057943,-0.2790973,-0.6544583,-0.1345097,0.49927855,-0.22466648,-0.22839038,-0.0037079006,-0.6483371,-0.40068159,0.22345139,0.29081354,0.026424,0.154931,-0.15312217,0.0052030385,0.2248304,0.679075,-0.53213394,0.06727226,0.335286,0.13239715,0.121088974,0.25292626,-0.19658673,0.40637705,-0.76991314,0.29626927,-0.52268684,0.06448105,-0.047984023,-0.1493994,0.31521276,0.10601035,0.36865988,-0.22457777,-0.4088156,-0.11133338,0.7816927,0.38927016,0.38528696,0.75031835,-0.27765277,0.011937131,0.19563401,0.533436,1.4172145,-0.104383,0.20493329,0.25080314,-0.5206394,-0.5788517,0.2903164,-0.2164495,0.05860545,-0.06584505,-0.44873464,-0.51517123,0.16572735,0.16906284,-0.087436736,0.3212072,-0.3783807,-0.42197958,0.6439206,-0.43392506,-0.41387346,-0.35368967,0.4013606,0.5809057,-0.41343093,-0.39456752,-0.10686507,0.30764413,-0.28216723,-0.42046857,-0.09259498,-0.2877958,0.48570684,0.13923855,-0.35285327,0.22695772,0.3138224,-0.48105133,0.27863258,0.23048455,-0.451956,0.064384766,0.033717398,-0.09221101,0.93353707,-0.117694505,-0.015942072,-0.8813703,-0.58717984,-0.76767725,-0.3706956,0.8154997,0.090438746,0.035639744,-0.48901424,-0.05794166,-0.0046730936,0.036008466,0.05774704,-0.51001215,0.286805,0.25383958,0.4881992,0.1862271,-0.6674226,-0.07677418,0.0004845485,-0.026780069,-0.51145935,0.47327495,-0.30177394,0.58380884,0.004461779,0.097820014,0.00863117,-0.44710532,0.29070818,-0.34853688,-0.2265495,-0.74920946,0.24240823,979 -912,0.2057733,-0.11843746,-0.5424543,-0.08595695,-0.32560393,-0.0013450632,-0.28335056,0.5211661,0.29631782,-0.16633715,-0.3128949,-0.09184592,-0.0029398203,0.14753376,-0.19144915,-0.6838564,-0.119650505,0.24240667,-0.5304939,0.55357224,-0.35904422,0.21309173,0.11214443,0.26111504,0.051492035,0.20778902,0.237318,-0.112335265,0.047508772,-0.24023409,-0.09239545,0.3943901,-0.7461944,0.36677966,-0.3973695,-0.15837695,0.17027856,-0.40826583,-0.23238628,-0.74658984,-0.037982,-0.8033021,0.46609125,0.2507641,-0.26243567,-0.015142093,0.14489736,0.18386073,-0.3132757,0.045434397,0.27237636,-0.24583523,-0.104271494,-0.35888383,-0.09355392,-0.35076872,-0.36202583,-0.06181814,-0.52814263,-0.12635602,-0.18552119,0.12542568,-0.27588245,-0.053010896,-0.31521294,0.24679117,-0.3804319,-0.044736966,0.32706323,-0.34525082,0.31392995,-0.46762714,-0.033033907,-0.09961358,0.45200458,-0.010482629,-0.1384757,0.33341816,0.2516593,0.33134806,0.18490875,-0.29522505,-0.2115897,-0.19702683,0.23358627,0.32908627,-0.18280298,-0.1432388,-0.13112909,0.04534,0.3887693,0.56073564,0.06307711,-0.21778046,-0.10581917,-0.4334277,-0.12983595,0.47099915,0.5495312,-0.35675302,-0.10069934,0.30037418,0.5439884,0.35562778,-0.09074265,-0.095165946,-0.004477605,-0.5075815,-0.099111855,0.08820159,-0.0872795,0.47792348,-0.043200642,-0.098081835,0.70920986,0.008380125,-0.13787092,0.1847511,0.07167743,0.043499824,-0.3914143,-0.18463224,0.3758379,-0.6090581,0.16158994,-0.2853117,0.58685243,0.07144292,-0.6669937,0.31475118,-0.625109,0.13765974,0.10369747,0.4560993,0.49389067,0.63412833,0.36292472,0.8396032,-0.24189025,0.14171548,-0.06366531,-0.24243021,0.090655394,-0.14386122,0.032418203,-0.35224828,0.20862901,-0.29606786,0.13722947,0.08542559,0.10821942,-0.39247194,-0.17484552,0.5225687,0.84593457,-0.17099822,-0.0778104,0.538693,1.111209,0.9882962,-0.048477877,1.0467949,0.06951987,-0.12438526,-0.12141148,0.08609887,-0.78301764,0.11776515,0.5389406,0.043196242,0.16299592,-0.12347057,0.109346546,0.1354324,-0.34170362,-0.057610396,-0.023821443,0.34461316,0.081075676,-0.112778105,-0.37380755,-0.27631924,0.015735684,-0.08428481,-0.13365431,0.26376382,-0.0025358398,0.21650796,-0.053813767,0.97826976,-0.07154239,0.22179873,0.27764228,0.49155775,0.34682712,-0.0917294,0.07793436,0.5224535,0.081337355,0.080968015,-0.41274622,0.15884481,-0.39473262,-0.3753637,0.029108882,-0.3455391,-0.22797315,0.13157247,-0.5219206,-0.020979159,-0.0129393665,-0.172244,0.50684637,-2.9186776,-0.027376791,-0.18990119,0.31420848,-0.28726068,-0.14026396,-0.16454448,-0.53084093,0.2736143,0.19320817,0.6476129,-0.49232125,0.2991682,0.6442085,-0.5447406,-0.22793584,-0.63509625,-0.031958703,0.023460284,0.30427065,0.107447036,-0.04480948,-0.046454262,0.14074248,0.6142745,0.22161658,0.1644961,0.47757554,0.36025167,-0.04016602,0.4742701,-0.22421531,0.5424219,-0.40688953,-0.18531926,0.33753118,-0.3348311,0.505809,-0.09881192,0.041649073,0.6579046,-0.3908324,-0.82790637,-0.41781,-0.3774253,1.1839072,-0.46789935,-0.35808694,0.097225435,-0.08322201,0.016952733,0.109243006,0.54869586,-0.0018230528,0.3420142,-0.5312523,-0.009093533,-0.104983084,0.2960839,0.025879676,-0.108391784,-0.4439621,0.85862356,0.03167513,0.5637248,0.28746778,0.14125924,-0.06661276,-0.44792148,-0.047287796,0.7212364,0.45723686,0.02350741,-0.2180438,-0.2164637,-0.12547138,0.046611577,-0.052670848,0.6418628,0.43772867,-0.28930792,0.11468362,0.36486462,0.24581836,0.016277587,-0.16320173,-0.30977234,-0.10352897,0.08596005,0.39298463,0.9382549,-0.01047194,0.09415897,0.072198056,0.35758686,-0.15390365,-0.5191528,0.46882454,0.2353919,-0.0089814365,-0.07648498,0.48953757,0.77596515,-0.24344297,0.48569632,-0.5441641,-0.3868939,0.49404183,-0.22812754,-0.42171612,0.2722556,-0.29448083,-0.051452,-0.67665964,0.35172644,-0.45511305,-0.32892442,-0.33354533,-0.07624391,-2.8663514,0.25910506,-0.06988361,-0.027861616,-0.39617744,-0.030196123,0.16535826,-0.5313062,-0.6757269,0.09183506,0.22288716,0.39348868,-0.29280418,0.07507017,-0.2789413,-0.45842195,-0.045463245,0.47224703,0.06862076,0.23511557,-0.25434658,-0.33286017,-0.2496111,-0.009582977,-0.1861759,0.2603631,-0.5255291,-0.18032561,-0.044087812,-0.46591845,-0.037052844,0.41871762,-0.56324905,0.11892144,-0.016658338,0.20355736,-0.1436726,-0.11093982,0.20904547,0.27082714,0.056390632,-0.07861122,-0.02546713,-0.26441422,0.5557433,0.08873171,0.32460675,0.2616919,0.003680865,0.024231011,0.5089579,0.5469287,-0.40169394,1.1113847,0.12527958,-0.024002254,0.2892009,-0.17641456,-0.41415718,-0.6409512,-0.11896136,-0.010510936,-0.3574462,-0.40082774,0.20227043,-0.22388965,-0.762234,0.5491896,0.020230865,0.34210667,0.037586886,0.2313798,0.3711928,-0.4899535,0.06562797,0.05423892,0.013167765,-0.39827147,-0.24821198,-0.78552777,-0.32504117,0.10985541,0.8860516,-0.47206292,0.03460669,0.18021716,-0.101475745,0.10129038,0.076559015,0.11085126,0.09646169,0.6564947,0.29714102,-0.45668152,0.35437787,0.0026669155,-0.08876047,-0.32209542,0.17847633,0.53649443,-0.7908041,0.63091654,0.4152752,-0.06680923,-0.23591924,-0.7234499,-0.2217827,-0.005428955,-0.2132508,0.44666913,0.25707212,-0.8527279,0.2444247,0.0005661156,-0.6610465,-0.84503365,0.4505509,-0.16906051,-0.2699206,-0.03170164,0.3647736,0.06883519,-0.21273066,-0.013757326,0.2565765,-0.24831297,0.21865158,0.10334203,-0.1683176,0.22494917,-0.092102885,-0.17840715,-0.7963254,0.07730673,-0.4637154,-0.3653456,0.5116294,-0.10477638,-0.34917584,0.07172524,0.19525762,0.33667025,-0.2127375,0.26089528,0.0061690114,-0.31365865,0.68532497,0.43034968,0.55269635,-0.38309813,0.5297958,0.14668965,-0.1751939,0.029794177,0.21877809,0.29468173,-0.22755986,0.2627087,-0.20512725,0.027896902,0.23851424,0.5995819,0.26891515,0.1784807,0.09660388,0.053638827,0.4069248,-0.045582335,0.1312976,-0.2520409,-0.69021606,0.05351348,-0.25015986,-0.020734485,0.49894068,0.21814485,0.16814516,0.13819164,-0.05068864,-0.07180882,0.3646537,0.0146249905,-0.9416494,0.27115604,0.022018129,0.90095943,0.5264361,0.28183267,-0.089312054,0.65653414,-0.21946378,0.035569195,0.49501637,0.043703612,-0.3548216,0.71107286,-0.48007122,0.42791107,-0.1607294,-0.10211737,0.3485415,0.089647554,0.4197185,0.6649177,-0.19289434,-0.102404594,-0.08257577,-0.24138458,-0.09903708,-0.26897284,0.07892799,-0.33809772,-0.5354828,0.52895576,0.45662966,0.40446433,-0.3523331,-0.026159218,-0.114597134,-0.10168853,0.31367403,-0.042277377,-0.17085008,0.15797038,-0.38114664,0.062522404,0.7209217,-0.14042467,0.07327197,-0.2543205,-0.26546213,0.21297936,-0.24467213,0.07560202,-0.0840474,-0.820343,0.15404452,-0.38257775,-0.50015336,0.29303846,-0.14388056,0.11431473,0.07094561,-0.08679857,0.041399095,0.41705433,0.16327524,0.71377563,-0.06611229,-0.11553076,-0.3229172,0.25729838,0.026777165,-0.10752504,0.114156805,-0.37666336,0.20314205,-0.56188244,0.33412766,-0.18822141,-0.39656207,-0.026275987,-0.12710615,-0.14125194,0.6765272,0.041772705,-0.11203953,-0.081460916,-0.21765618,-0.45574942,-0.08226704,-0.37676835,0.11118419,0.24656515,-0.09506202,-0.18030758,-0.19980888,-0.06802758,0.31133345,0.03504822,0.2738224,0.008502196,0.08970558,-0.30011654,0.23410182,0.032851633,0.52283823,0.16359815,-0.00022217508,-0.08297032,-0.3200312,-0.36678913,0.09343812,-0.20838839,0.3091153,0.17581093,-0.065500714,0.917039,-0.06419875,1.1001968,0.0127516985,-0.38422227,0.09041327,0.52258587,-0.15338387,-0.07998327,-0.34858713,0.9689923,0.5485147,-0.10654831,-0.021935647,-0.22215043,-0.02944699,-0.034905028,-0.21550255,-0.010568194,0.044859905,-0.3799895,-0.11542552,0.14325099,0.30033746,0.19464444,-0.24730104,-0.21405001,0.18495631,0.2161028,0.16878557,-0.567986,-0.46337315,0.20403218,0.20380092,-0.119780384,0.021527888,-0.28573993,0.43638086,-0.72427034,0.12902106,-0.6743308,0.03605331,-0.3667802,-0.36775145,0.047718327,-0.15239055,0.45593867,-0.5263054,-0.37627587,-0.05927756,0.39179268,0.1332724,0.27017707,0.622518,-0.15059827,-0.02991943,0.0478657,0.5850148,0.83482546,-0.5652093,-0.2261671,0.4091524,-0.43270317,-0.58608556,0.18594839,-0.6737172,-0.030502645,-0.20519464,-0.4062135,-0.34491977,0.124882124,0.016174063,0.05055864,-0.0010663271,-0.75258875,0.18088596,0.2501344,-0.29234567,-0.21351828,-0.33781412,0.3423535,0.7813938,-0.12929736,-0.5731134,0.06583472,0.039102074,-0.2678749,-0.4990593,0.039120663,-0.2279628,0.044702306,0.08671569,-0.39554742,-0.04866153,0.26611972,-0.5013829,-0.064194806,0.042206425,-0.25457904,0.077311456,-0.23422082,0.13205712,1.0226328,-0.29243097,-0.1211125,-0.36174133,-0.5783463,-0.8325264,-0.34094942,0.40569222,0.046763923,0.07974473,-0.49969366,-0.09744861,-0.28146526,-0.27342346,-0.122584336,-0.33332327,0.3650202,0.112351805,0.5157035,-0.4285321,-0.97478575,0.39454606,0.14065816,-0.08228656,-0.55303353,0.34608185,-0.14513324,0.9019528,-0.016335957,-0.17844804,0.1623906,-0.5869631,0.1395009,-0.2870677,0.0762781,-0.55289394,0.24704663,986 -913,0.65272754,0.078889646,-0.9591426,-0.16901362,-0.33206287,0.0018424107,-0.40926448,0.43046883,0.4753697,-0.45619413,0.0784683,-0.10469226,-0.07683414,0.029381542,-0.085593484,-0.61435837,0.1800334,0.14552002,-0.4045614,0.5077069,-0.5149722,0.2447654,0.1648986,0.36494267,-0.092328794,0.289226,0.02422675,-0.17221713,0.14755256,-0.16295205,0.1022644,0.027346099,-0.62318116,0.10283383,-0.12495056,-0.15108088,0.10454383,-0.37350515,-0.3018975,-0.5800286,-0.016776001,-0.7737071,0.6809726,0.1657688,-0.19214265,0.20297892,-0.05250896,0.096773535,-0.054444194,0.17694719,0.37774572,-0.2468255,-0.47074258,-0.2086708,-0.3043467,-0.6579854,-0.65883946,-0.13112305,-0.6621972,0.072152115,-0.34709552,0.17401665,-0.3276926,-0.055869013,-0.19871932,0.22585131,-0.43814874,0.002330297,0.09888665,-0.15239699,0.2527859,-0.6516752,-0.0070550838,-0.057053268,0.2261873,0.09225384,-0.06648921,0.004165545,0.18028744,0.392428,-0.031760912,-0.19823153,-0.33321905,0.11326321,0.10732573,0.37596,-0.11805936,-0.11501173,-0.16109037,-0.044781398,0.4411517,0.34694836,0.16096039,-0.334267,-0.020187104,-0.06305951,-0.5164423,0.6126371,0.53802544,-0.5069926,0.21142252,0.57108617,0.46503678,0.38267985,-0.22796895,0.30096325,-0.14249586,-0.42166018,-0.10112416,0.15345259,-0.14168532,0.44283715,-0.075257294,0.24451832,0.70420855,-0.07597075,-0.008709858,0.3852875,0.017456662,0.2934898,-0.29631498,-0.051959846,0.3146033,-0.59053296,-0.06469903,-0.38666192,0.5086145,-0.30442822,-0.7806135,0.36730197,-0.49159408,-0.0152882235,-0.17533946,0.6681113,0.8381767,0.6142714,-0.0010022322,0.79751056,-0.48695013,0.092253566,-0.1335511,-0.25967303,0.34910813,0.067076996,0.45339736,-0.46745113,-0.071057506,0.025521858,-0.30388093,0.1303485,0.56474334,-0.29563433,-0.34080675,0.27730325,0.58780044,-0.2524456,-0.1049545,0.53093755,1.2890009,0.89716214,0.16654134,1.0119268,0.13601123,-0.036585514,-0.28708535,-0.09796675,-0.8206229,0.2531025,0.253998,0.162502,0.3708427,0.06849973,-0.042775597,0.33523884,-0.034378067,-0.14143953,0.05066237,0.33502832,-0.13145675,-0.3225056,-0.242175,-0.32846236,0.16107698,0.14751063,0.03958867,0.34952188,-0.19718938,0.23372371,0.1404351,1.0783274,-0.015015443,-0.09200931,0.031138167,0.28663456,0.27553228,0.034469683,-0.043606978,0.36606243,0.2144159,0.08110029,-0.2873886,0.16600014,-0.15186362,-0.5054491,-0.26656246,-0.3327228,-0.122776866,-0.3045316,-0.2083735,-0.013027355,0.02475422,-0.55606294,0.3112366,-2.703023,-0.062141526,-0.11283449,0.3489436,0.0749684,-0.18191433,-0.2422009,-0.37502265,0.27427343,0.2985574,0.5539047,-0.5184699,0.77125216,0.7004207,-0.64098734,-0.23482119,-0.614509,-0.063818425,-0.16256718,0.348258,0.1362757,-0.3015999,-0.008067216,0.16023202,0.5586128,-0.07106858,0.2350903,0.33339646,0.5957258,-0.20111167,0.637964,-0.058721915,0.4330703,-0.12010205,-0.16115819,0.21738629,-0.38457736,0.25542185,-0.3687781,0.0951682,0.2876682,-0.13829808,-0.8493708,-0.29311642,0.15295693,1.202483,-0.36776438,-0.5222626,0.1962039,-0.13356932,-0.36629176,0.21091163,0.4757475,-0.18352616,0.0653103,-0.80649376,0.026925089,-0.1003075,0.088602275,0.020080864,0.020241229,-0.41815183,0.75182796,0.024471551,0.53413254,0.45744562,0.1889218,-0.023951372,-0.19566762,0.15780272,0.99546653,0.29588345,0.12293708,-0.38257203,-0.1926717,-0.17150582,0.11242074,-0.037935395,0.5654445,0.4359618,-0.06789458,0.18450575,0.27287123,-0.1495672,-0.13591547,-0.39290616,-0.46393433,-0.08271118,-0.0034289882,0.47387123,0.9254691,0.003952086,0.3412887,0.1482572,0.21476264,-0.32582578,-0.55847853,0.36357486,0.360925,-0.1987849,-0.14341652,0.6488093,0.50378746,-0.27894282,0.54246134,-0.6112294,-0.45265818,0.31735626,0.07438803,-0.3702507,0.42966652,-0.4386411,0.03599019,-0.90162724,0.24310823,-0.47643638,-0.43275928,-0.4261916,-0.20989062,-2.797434,0.35551,-0.18462269,-0.11014539,-0.1711912,-0.014326721,0.25497743,-0.5132869,-0.60212594,0.050385933,0.17172976,0.5747755,-0.21620303,0.031453345,-0.269665,-0.56724995,-0.10194942,0.36800185,0.0024646719,0.2269253,-0.046301603,-0.43863937,-0.14729004,-0.07926652,-0.05131686,-0.03821657,-0.49227998,-0.11630491,0.0025357567,-0.36550424,-0.22314394,0.6138609,-0.32254907,-0.046579447,-0.18343991,0.159109,0.22482638,0.30505803,-0.12170348,0.05257477,0.009289692,0.06845954,-0.11675802,-0.16136922,0.21579368,-0.037570566,0.39235485,0.36690375,-0.010488282,-0.09388336,0.65583235,0.41106156,-0.13158141,1.0320095,0.07243513,-0.11446629,0.25585642,-0.1345306,-0.11765895,-0.67190605,-0.2958214,-0.19995917,-0.43057764,-0.26018813,0.05610791,-0.3074398,-0.8216036,0.5012923,0.13660972,-0.09652499,-0.045391083,0.5850572,0.5195147,-0.125629,0.0776505,-0.18235008,-0.121470034,-0.35753906,-0.26526332,-0.8705326,-0.27756628,0.22595586,1.1245676,-0.36667013,0.009328534,0.16051011,0.05080567,0.09730441,0.16128704,0.22522372,0.060911458,0.48376742,0.17766333,-0.6006776,0.31388423,-0.41688225,0.015286717,-0.74660397,-0.12703903,0.7376774,-0.82461065,0.20047228,0.5494176,0.07193225,0.088345975,-0.7259068,-0.17781818,0.21548219,-0.19875352,0.4511548,0.17569214,-0.9726162,0.5791716,0.26773483,-0.28480774,-0.71501607,0.6104431,-0.1769734,-0.26571086,-0.10335723,0.48843208,0.2236008,0.059363633,-0.32926944,0.088732995,-0.45614514,0.422236,0.07467646,-0.3220101,0.44536236,0.08074517,-0.1004403,-0.82809114,-0.18410933,-0.3864467,-0.35809696,0.38462698,-0.16750096,0.07128044,0.055295676,0.27036572,0.32670608,-0.5712215,0.14950062,-0.22726887,-0.2889515,0.64567566,0.4964051,0.4725561,-0.31221065,0.6357041,-0.032412063,-0.22374974,-0.00400576,0.011506294,0.3229058,-0.0363355,0.27976373,0.22739156,-0.16594379,0.17119354,0.7952595,-0.001305682,0.24630783,0.261892,-0.03787831,0.33233956,-0.04275027,0.17232366,-0.28031504,-0.5146421,-0.063209675,-0.28337777,0.28879544,0.42877725,0.0706437,0.5113745,-0.18504544,-0.09710569,0.006288891,0.37397555,0.3115436,-0.94968605,0.1776637,0.24582039,0.3221852,0.5508805,0.03512458,0.12306849,0.50126845,-0.17918311,0.20868564,0.3247545,0.115480304,-0.31951064,0.50639904,-0.6680209,0.25583407,-0.1515516,0.10391418,0.31707734,-0.052777365,0.54237807,0.8929607,-0.12873909,0.04501578,-0.10290844,-0.34305838,-0.2809819,-0.16582836,0.07133897,-0.38365546,-0.2803482,0.8308123,0.39043364,0.48298463,-0.21427566,-0.1004251,0.2196802,-0.1935041,0.2797099,-0.019647188,-0.104765855,-0.024996703,-0.545657,-0.09062075,0.52222514,0.20502038,-0.08441442,0.04873495,-0.057697218,0.2997783,0.0026818167,-0.124337375,-0.103390075,-0.42118314,-0.04669556,-0.5048254,-0.5678191,0.37904596,0.1330502,0.24889553,0.059456248,-0.07670245,-0.016864454,0.37614432,0.17183495,0.588955,0.010066609,-0.21905768,-0.25990307,0.07093111,0.053586025,-0.22936668,-0.22281706,-0.3339926,0.43829918,-0.58200175,0.3390549,-0.49236193,-0.46038982,0.050539628,-0.3651004,0.045705333,0.4897643,-0.17986125,-0.24100415,0.16352195,-0.096619,-0.18330322,-0.24668421,-0.35293174,0.22370408,-0.21774286,-0.3394209,-0.19172625,-0.13856778,0.051967144,0.14964603,0.2055128,0.066562824,0.4743118,0.33790898,-0.39641595,0.014231603,0.30844662,0.6965515,-0.16469054,-0.1783911,-0.5304857,-0.4451126,-0.33718553,0.18977414,-0.16265647,0.19122803,0.19511344,-0.27485827,0.9255338,0.104134984,0.93956584,-0.075038515,-0.29710048,0.20774432,0.56776,0.028663972,-0.11170936,-0.16995811,0.9567191,0.5370694,-0.30600753,-0.1599497,-0.554786,-0.27257475,0.038413078,-0.41364446,-0.022975901,-0.158107,-0.6687042,-0.051657956,0.29070365,0.18288286,-0.054842737,-0.25190398,0.34090176,0.23841743,0.17496127,0.029479668,-0.7787147,-0.18903255,0.25963786,0.23367846,-0.15393925,0.06614099,-0.30667987,0.34931806,-0.583489,0.04653422,-0.3410881,-0.053000987,-0.024715165,-0.20777471,0.12150794,0.040408526,0.3187148,-0.47493473,-0.414685,-0.06862343,0.2538475,0.23744135,0.2842081,0.6578705,-0.29809913,-0.24008457,-0.103816845,0.63950104,1.2465737,-0.24891375,0.083276756,0.45143422,-0.38134134,-0.842706,0.06756383,-0.6605975,0.12841055,-0.013467416,-0.45232013,-0.40973035,0.27016303,0.027795546,-0.046215486,0.14781787,-0.47108093,-0.060012665,0.118797846,-0.25098553,-0.24511524,-0.050277412,0.035956394,0.8917804,-0.28226033,-0.38838565,-0.09866512,0.31217337,-0.18684363,-0.46470964,0.028378695,-0.36960402,0.21929188,0.20059502,-0.08958583,0.17353898,0.02589707,-0.570767,0.18074144,0.2806622,-0.2147228,0.17274576,-0.3967236,0.235623,0.7912435,0.03819732,0.007202024,-0.13047749,-0.68189675,-0.6230025,-0.24974988,0.0037662685,0.057160515,-0.10465614,-0.45210397,0.01410386,-0.27330324,0.100377865,-0.0737408,-0.5714224,0.5143194,0.045146316,0.3488883,-0.4024124,-1.1953295,0.040128943,0.0957248,-0.4516735,-0.5832941,0.51237196,-0.17701048,0.8616188,0.11187547,0.014274567,0.017926598,-0.7186715,0.26815984,-0.40370488,-0.0551808,-0.4915407,0.014523874,987 -914,0.42239508,-0.41619518,-0.385811,-0.1150861,-0.04224274,0.23991686,-0.21762216,0.58215857,0.24838938,-0.4889524,-0.18996453,-0.33908328,0.034200054,0.4009827,-0.074305154,-0.46009287,-0.16300301,0.22398393,-0.4432123,0.43751982,-0.3197689,0.121604465,-0.09970695,0.5498874,0.13782741,0.20516913,0.05198277,0.05095281,-0.31366152,-0.21488781,-0.0506572,0.041569646,-0.534155,0.24526906,-0.19977714,-0.15044434,-0.09836706,-0.6373079,-0.32786885,-0.81077147,0.29677048,-0.97384566,0.60972637,0.10130614,-0.26705885,0.20130064,0.3605535,0.24480022,-0.29323694,-0.017161906,0.3685207,-0.2502478,-0.031255532,-0.09165803,-0.30346194,-0.46734276,-0.56126934,0.026367312,-0.2592672,-0.2794363,-0.19585504,0.24708843,-0.18522443,0.011677988,-0.059178058,0.56490606,-0.37699643,0.15845285,0.36766443,-0.34686056,0.43692198,-0.537215,-0.24257855,-0.16810028,0.2795747,-0.053936493,-0.24682975,0.22206956,0.3748499,0.3654836,-0.045156986,-0.12819998,-0.25771198,-0.06711921,0.20292504,0.45174214,-0.2504057,-0.4530389,-0.27033088,-0.22012039,-0.023445224,0.20234977,0.28048542,-0.26685324,0.007233826,0.011931722,-0.3717401,0.3166962,0.46344543,-0.23926382,-0.176494,0.3636403,0.57158923,0.20754321,-0.13324755,-0.13079906,0.14366192,-0.6000069,-0.17757277,0.19887726,-0.30787805,0.52954286,-0.15759152,0.2706795,0.6952691,-0.08788123,-0.107973136,0.011111389,0.12818955,-0.27791283,-0.56379116,-0.22861052,0.25060785,-0.35289446,0.2118452,-0.15122238,0.62360024,0.20817512,-0.510428,0.35503462,-0.56613225,0.13793765,-0.0116946725,0.38184395,0.64369744,0.4491874,0.38225213,0.82516783,-0.48392308,-0.10015103,-0.07099474,-0.1356979,0.13285899,-0.29679534,0.19461125,-0.545491,0.15010028,-0.0026618391,-0.09305922,0.1028074,0.5950322,-0.452081,-0.12294415,0.18753237,1.1058189,-0.19693892,-0.11532548,0.78379536,0.96303374,1.0139605,-0.044586223,1.4222571,0.2373793,-0.37884465,0.060922842,-0.06490705,-0.77268094,0.35291138,0.38186982,-0.37756371,0.19861977,0.19173966,-0.11834148,0.56774575,-0.25968918,0.16659279,-0.16074406,-0.11140829,0.16806985,-0.116940975,-0.3508869,-0.15254886,-0.082000606,-0.13945405,0.24460681,0.08388376,-0.30158758,0.49753156,-0.063186444,1.8331041,-0.24484594,0.11356803,0.082656495,0.3255708,0.1958258,-0.12385952,-0.029188251,0.5078335,0.32763547,0.27644566,-0.42937472,0.1619957,-0.2380622,-0.46222293,-0.0823577,-0.2673048,-0.13432513,-0.13122396,-0.30636773,-0.241334,-0.16722496,-0.2513053,0.3283515,-2.7898457,-0.20187627,-0.23236395,0.25296026,-0.30414593,-0.28831574,-0.13307433,-0.4081576,0.5258083,0.27716884,0.476369,-0.5195632,0.30729374,0.40859112,-0.60836285,-0.20443384,-0.47471237,-0.109584294,-0.040687658,0.30542985,0.009965385,-0.14985491,-0.076000504,0.17098336,0.5986207,0.107117794,0.21845241,0.46629402,0.55364424,-0.22861378,0.55097246,-0.20642318,0.6262751,-0.41910303,-0.23718621,0.29263353,-0.5748024,0.3461016,-0.102618545,0.15481089,0.5789921,-0.38906276,-0.87653184,-0.7531807,-0.2989432,1.02979,-0.23780866,-0.494514,0.13779068,-0.3670043,-0.38873652,-0.0020751853,0.7220359,0.01424702,0.20957433,-0.7984092,-0.01731419,-0.10178796,0.24743557,-0.011988692,-0.097154856,-0.46640626,0.94412184,-0.006170129,0.4978067,0.380903,0.06791099,-0.38542843,-0.33686936,-0.03233795,0.9896521,0.3184535,0.25542343,-0.1484326,-0.10997754,-0.5648041,-0.17122817,0.016520614,0.6053018,0.43316576,-0.030089637,0.14840376,0.30501023,-0.014792648,-0.01547277,-0.09197343,-0.35334477,-0.14541072,-0.07571911,0.52114683,0.5668907,-0.0654815,0.43061018,-0.2327982,0.44634604,-0.2275663,-0.46232986,0.50629634,0.9778538,-0.26237226,-0.26180223,0.6829737,0.3931084,-0.36229882,0.4552271,-0.6097359,-0.33774284,0.4592885,-0.102237485,-0.66674614,0.2229564,-0.29625067,-0.036684256,-0.8577523,0.16383426,-0.29907584,-0.4095731,-0.47941515,-0.23225848,-3.7798672,0.24858166,-0.13683403,-0.22893186,-0.21806206,-0.025042504,0.106932074,-0.5800047,-0.6450048,0.15802705,0.0066561997,0.746398,-0.14440553,0.20069599,-0.3146973,-0.22067071,-0.2995758,0.14738804,0.016728818,0.33272043,-0.12809588,-0.53195673,-0.06595171,-0.1280405,-0.4523375,0.03757159,-0.86462307,-0.38129592,-0.12091128,-0.63915807,-0.16565989,0.67396814,-0.40393028,0.0020790498,-0.27101794,0.07953378,-0.22131558,0.3950428,0.012314077,0.24143718,0.018435603,-0.3002455,-0.020863483,-0.15258865,0.3393786,0.12172792,0.15967402,0.32508084,-0.13180198,0.24456947,0.3399488,0.70987767,-0.10232952,1.0056517,0.30572483,-0.168572,0.33137548,-0.2450593,-0.16804963,-0.448485,-0.21625076,0.13722886,-0.5035701,-0.49231377,-0.012472426,-0.38000885,-0.75574136,0.5757427,0.114317924,0.14669612,0.111002654,0.2912006,0.41679797,-0.40287873,-0.01916382,0.005749198,-0.11744941,-0.5243379,-0.3479527,-0.5346606,-0.5109903,0.15548171,0.9183505,-0.05262977,0.13039242,0.16073388,-0.3543146,-0.10440195,0.2547476,-0.14295451,-0.04468755,0.41980255,-0.085333146,-0.75496745,0.5045657,-0.10860374,-0.20349564,-0.6361482,0.3629092,0.70631987,-0.57337457,0.88091415,0.50012684,0.11878311,-0.35170016,-0.49201962,-0.23365472,-0.18281443,-0.20004188,0.3754208,0.19995908,-0.7163761,0.29962555,0.45751682,-0.27152324,-0.73579913,0.54666984,-0.24330299,-0.15806328,-0.09545671,0.4862366,0.050438643,0.057019215,-0.2404998,0.2829375,-0.51722866,0.15953378,0.12365226,0.0061133206,0.44132194,-0.17020762,-0.14716923,-0.785731,-0.016434222,-0.50289625,-0.36360827,0.42221463,-0.01265724,0.086645216,0.3158724,0.11121968,0.27722374,-0.23584147,0.14766262,-0.14893667,-0.22799851,0.25374544,0.43324196,0.48070017,-0.5250643,0.67418975,-0.0019379109,-0.039686073,0.051500995,0.13937055,0.42097342,0.16045165,0.65980446,-0.081369996,-0.17941976,0.31915173,0.7358592,0.18709087,0.4976233,0.14708649,-0.1606489,0.1601006,0.12212209,0.24782366,-0.025967194,-0.7893653,0.10428091,-0.41088846,0.1765977,0.4208727,0.11005717,0.34451973,0.03633357,-0.32857653,-0.06622596,0.22047253,0.06671241,-1.1463461,0.3860949,0.17849547,1.0693866,0.34544942,-0.039299697,0.0148485815,0.78222513,-0.067720465,0.04045068,0.33352885,-0.080165066,-0.46540704,0.6372687,-0.8574111,0.3365365,-0.1587588,-0.037467178,0.04219964,-0.05202535,0.5723047,0.8164064,-0.1952961,0.050481766,-0.014863568,-0.17384124,0.35213003,-0.43607056,0.19984405,-0.49671006,-0.4157597,0.6406856,0.5573059,0.39715365,-0.38364443,0.08375924,-0.014170244,-0.11716219,0.10413306,0.20136802,0.09720149,-0.053613793,-0.9972293,-0.10495964,0.49232924,0.016299486,0.38301215,0.01801388,-0.28507784,0.32637876,-0.28592542,0.0071513704,-0.07376234,-0.7807782,-0.060629945,-0.3593317,-0.6125486,0.3479171,-0.022673344,0.12453868,0.15968934,0.00032912692,-0.19627042,0.5629916,-0.03815527,1.0496299,0.13026862,-0.0923442,-0.37956512,0.21729009,0.15879954,-0.24492241,0.06453028,-0.3419803,-0.06277164,-0.5708088,0.6116709,0.022676647,-0.54846364,0.2833158,-0.04336338,0.069277294,0.64478725,-0.13970561,-0.16483325,-0.15584126,-0.27402556,-0.25137466,-0.20382561,-0.07242525,0.37711868,0.13209695,0.14487375,-0.15963183,-0.0009987354,-0.22807728,0.30897728,-0.03025485,0.3806546,0.5703513,0.06141423,-0.31759933,-0.12369021,0.10276425,0.68569374,-0.034660775,-0.39627302,-0.13023718,-0.56259257,-0.4785134,0.3362111,-0.020515038,0.4682262,0.165873,-0.26661977,0.7195261,-0.112425126,1.1384401,0.07440678,-0.40174374,0.06751498,0.5931505,-0.0044303485,-0.13497327,-0.49039412,0.78712016,0.5300757,-0.07634044,0.017626164,-0.4303832,-0.03777019,0.26153648,-0.2089526,-0.08554233,-0.11165017,-0.7420514,-0.21813726,0.15895994,0.3435415,0.4273015,-0.17459698,0.13365178,0.4035976,0.03403992,0.2742751,-0.42355987,-0.20475249,0.37552285,0.37743977,-0.14915776,-0.002279232,-0.37206638,0.36678633,-0.54254127,0.15774785,-0.2962753,0.10284383,-0.41020885,-0.29617235,0.2587872,-0.06402647,0.38774264,-0.33132294,-0.32014665,-0.07772856,0.32691023,0.37114188,0.24102016,0.5606334,-0.16850837,0.049081773,0.176647,0.5497417,0.8726847,-0.44238734,0.09795723,0.3868061,-0.39163518,-0.7464374,0.4457864,-0.39111984,0.25707877,0.14786392,-0.2661422,-0.40113103,0.2684234,0.14954591,0.009649341,-0.048014652,-0.65968853,-0.02961865,0.39023098,-0.19350724,-0.17976807,-0.24864878,0.19175507,0.41785863,-0.10052973,-0.39711985,0.18126757,0.3418614,-0.17417018,-0.5971467,-0.1276852,-0.5251315,0.45945707,-0.014789547,-0.30426514,-0.085970975,-0.2340637,-0.57981294,0.22264862,-0.1480486,-0.37454247,0.12106963,-0.38994583,-0.23365188,0.84444684,-0.1784208,0.04003166,-0.48647282,-0.44812462,-0.80797726,-0.16486973,0.31691542,-0.037151173,-0.04663612,-0.42802384,-0.03868296,-0.19998503,-0.116531946,-0.013058625,-0.38935813,0.40553078,0.05878444,0.5946878,-0.07292505,-0.64103276,0.2021265,0.20757501,-0.12122369,-0.6708906,0.4934686,-0.13856058,0.7875002,-0.08295535,0.117141835,0.40471497,-0.5421373,-0.10426793,-0.24070399,-0.19959098,-0.67410916,0.12473234,992 -915,0.3732612,-0.2594817,-0.45764318,-0.019768171,-0.14950256,0.0030770202,-0.19008833,0.5999317,0.2910418,-0.3567654,-0.13344915,-0.1928504,-0.03673768,0.25746077,-0.11752691,-0.35475692,-0.16288733,-0.014024411,-0.40595445,0.5371534,-0.35310492,0.0610802,-0.15460594,0.56593996,0.22846417,0.19187546,-0.14963217,-0.003945112,-0.22813737,-0.16434671,0.022871792,0.46391663,-0.62955374,0.08950263,-0.2738073,-0.31310132,-0.14935647,-0.49605182,-0.45489538,-0.725163,0.3390173,-0.7782133,0.41468933,0.23040545,-0.17002524,0.40233198,-0.057035714,0.10646861,-0.21849477,-0.1287678,0.094521105,-0.15783612,0.06416687,-0.26903516,-0.17683096,-0.20216914,-0.61900896,0.066649474,-0.4329393,-0.20605408,-0.40118575,0.13018356,-0.31732175,-0.17524217,-0.10383745,0.5222801,-0.35843205,0.3239452,0.027218938,0.0349041,0.32066402,-0.5772261,-0.37220708,-0.1269878,0.28857273,-0.39578083,-0.22511618,0.20215075,0.1984232,0.2401946,-0.28609654,0.029458823,-0.4938693,0.08624222,0.11898449,0.43419638,-0.39516783,-0.69605184,0.052408297,-0.01451086,-0.036876738,0.15840803,0.17685735,-0.2904688,-0.10928928,-0.01843231,-0.102710664,0.597933,0.49081603,-0.1266859,-0.3316467,0.278415,0.4067544,0.32000247,-0.06448406,-0.31682557,0.10755557,-0.6293598,-0.051662784,0.13310297,-0.07184231,0.5681849,0.0472129,0.29144552,0.47214317,-0.27330884,-0.08279801,0.15614583,0.0040429533,0.12852706,-0.2423205,-0.1421902,0.20512517,-0.19197161,0.31938437,-0.12736917,0.7232284,0.075277105,-0.8669917,0.3133821,-0.66518253,0.022640595,-0.0286419,0.42197743,0.7261583,0.4133257,0.4121093,0.48114896,-0.3532544,-0.009399712,-0.06384742,-0.25448963,0.020908272,-0.23252924,-0.039670825,-0.4943253,-0.27288684,-0.044837486,-0.20748283,0.17217328,0.41940913,-0.48779926,-0.016355492,0.29041037,0.7591047,-0.16463389,-0.2028413,0.7669921,1.0693161,0.88597566,0.07525236,1.0476445,0.07437367,-0.20329382,0.45098937,-0.2632461,-0.7809295,0.26807275,0.13629414,-0.37226963,0.16673093,0.23458405,-0.012085984,0.21821345,-0.3949841,0.004504343,-0.055695403,0.038324624,0.24930553,-0.22007398,-0.26523867,-0.25566253,-0.2948129,-0.008745432,-0.008105472,0.25350782,-0.30620345,0.25232917,0.01757229,1.453723,-0.022452364,0.09788912,0.059157137,0.5740612,0.03742824,-0.23534946,-0.16059762,0.35181925,0.27585283,0.34751844,-0.6122768,0.19728482,-0.14173652,-0.46047118,-0.05344927,-0.371351,-0.23168588,-0.024832817,-0.526692,-0.09344985,-0.18158306,-0.27497503,0.5078297,-3.1057987,-0.0527186,0.056618404,0.33961204,-0.12116798,-0.3303285,-0.04245149,-0.38268325,0.41269493,0.28834572,0.38602623,-0.61562544,0.28628376,0.46982327,-0.50308007,-0.1805657,-0.54233706,-0.015652113,0.033261847,0.37870696,0.021221032,0.15311548,0.24760486,0.041592002,0.44712016,0.0018899838,0.13872364,0.18601872,0.56672513,-0.1892335,0.4313911,-0.16140811,0.3840042,-0.40127778,-0.28151095,0.24107178,-0.4315548,0.3531065,-0.08388489,0.09976655,0.4193212,-0.32704416,-0.9356629,-0.50456053,-0.19551682,1.0737334,-0.015805105,-0.3764607,0.24737792,-0.5222284,-0.2489732,-0.19280045,0.69409704,-0.035446446,0.06324521,-0.7631164,-0.045760084,-0.2832677,0.17577188,0.01975105,0.032710116,-0.40662536,0.64277434,0.09227052,0.33201817,0.410906,0.08449912,-0.45577502,-0.6062216,0.07765896,0.7302157,0.17443015,0.21618801,-0.23908709,-0.24502373,-0.09433856,0.06580923,0.10736713,0.7205258,0.35788998,-0.03521882,0.23536693,0.30232468,0.053992543,0.054242153,-0.15109669,-0.1947666,-0.19182622,0.07342985,0.5675342,0.96235347,-0.17525448,0.47443834,-0.0017250212,0.15597217,-0.23590492,-0.1821369,0.36550793,1.009307,-0.046109777,-0.20355837,0.6052249,0.6265808,-0.2613741,0.4033061,-0.44337454,-0.21440963,0.56887984,-0.21517538,-0.46728492,0.2529095,-0.27691543,-0.003728648,-0.8341079,0.3119471,-0.2713873,-0.4834675,-0.6910176,-0.00029408684,-2.9945533,0.109324515,-0.3011668,-0.27888364,-0.17623071,-0.23806024,0.09682119,-0.7193373,-0.4480505,0.118176274,0.0925312,0.56349725,-0.21471675,0.12524064,-0.26205882,-0.32474267,-0.12411791,0.17594086,0.31321463,0.32358962,-0.052448023,-0.3343914,-0.14759576,-0.05125634,-0.22331113,0.06494499,-0.4512709,-0.36274645,-0.096894465,-0.5501239,-0.34963647,0.6688075,-0.4251815,-0.16760506,-0.20381151,-0.048064787,0.0015991777,0.34863782,0.17773454,0.20731342,0.052325595,-0.07470977,-0.08394989,-0.23821647,0.35813951,0.041309025,0.35749725,0.57414633,-0.21343009,0.31652617,0.47413644,0.5231965,-0.06801218,1.0045904,0.54842114,-0.009239475,0.27042326,-0.3188858,-0.22288036,-0.58480126,-0.1747921,0.116813324,-0.35123298,-0.47371876,-0.035304904,-0.36428404,-0.6959703,0.5613727,-0.24575724,0.18515168,-0.0055018864,0.33344316,0.52058554,-0.27280363,-0.10823534,-0.135107,-0.037821937,-0.48224187,-0.30378282,-0.4040661,-0.5099662,0.0076522627,0.7164522,-0.1676053,0.06715719,0.24114467,-0.22504993,-0.040140066,0.14862591,-0.10914749,0.18348247,0.3017771,0.070650004,-0.6166106,0.5277588,-0.07157699,-0.22667068,-0.62733227,0.2191956,0.5183584,-0.62276596,0.63447917,0.3787172,-0.025756663,-0.101481974,-0.5199702,-0.17677534,-0.02624932,-0.019892097,0.2236378,0.344015,-0.8737928,0.34606746,0.32437623,-0.24820781,-0.74497336,0.6487179,-0.10920509,-0.34909606,-0.015129681,0.3154949,0.083036624,0.05431254,-0.07762939,0.3962039,-0.25526276,0.2860237,0.027601948,-0.07038766,0.069187485,-0.07075209,0.017430237,-0.5865634,0.36487472,-0.3946868,-0.3743215,0.45544073,0.13869546,0.18854226,0.3106884,0.16961372,0.25093088,-0.19263832,0.051504444,-0.13099374,-0.25876486,0.14539231,0.41479087,0.69550866,-0.51041305,0.4912772,0.104875624,-0.018782796,0.21347363,0.12348774,0.35962257,-0.23028915,0.4209241,0.09252801,-0.34826016,0.15156461,0.98885745,0.20148647,0.4987607,-0.065377586,-0.02444903,0.30526957,0.07529896,0.23549835,-0.123639196,-0.6089811,0.13324483,-0.34980837,0.18838625,0.3476461,-0.018917115,0.025608048,-0.30813077,-0.34812465,0.05484273,0.5048999,0.2043423,-1.1531565,0.21387182,0.09654089,0.89673567,0.48125315,0.04832072,0.11049303,0.6311982,-0.0077669225,0.08546207,0.44894242,0.067709826,-0.54729706,0.48877847,-0.7486003,0.5202442,-0.06395038,0.028602347,-0.031199744,-0.2603722,0.29688475,0.6523474,-0.28410962,-0.009758949,0.12196356,-0.4055711,0.016170979,-0.47757697,0.48601738,-0.5953929,-0.1523227,0.68019,0.70954347,0.22650321,-0.10829691,0.0048566037,0.17942636,-0.13316697,0.09142247,0.034740705,0.1461541,0.034174588,-0.77734756,0.07882292,0.6136151,-0.110545635,0.15532644,-0.1213975,-0.1022918,0.39878586,-0.3414563,-0.2619065,-0.11842259,-0.77485013,0.2136016,-0.45147762,-0.5516236,0.5049549,-0.13390066,0.33144906,0.34319985,0.19145364,-0.3515587,0.5195169,0.15828599,0.7486648,-0.033177715,-0.05083983,-0.38722983,0.09952245,0.2807159,-0.11186105,-0.27170387,-0.17307562,-0.0051980517,-0.4274795,0.28968468,-0.08480566,-0.25625083,-0.29140607,-0.017264301,0.17375548,0.6607919,0.060849886,-0.119572066,-0.107340015,-0.23754257,-0.3567225,0.104422234,0.039846033,0.28270134,0.27712783,-0.12339753,-0.11842939,-0.15570149,-0.16668825,0.25043708,-0.038275275,0.50921965,0.33328357,0.26282942,0.02120985,-0.20991255,0.15602343,0.6026913,0.040115554,-0.16964133,-0.25739798,-0.28010616,-0.3384806,0.2819148,-0.03530597,0.3652114,0.065846264,-0.33956432,0.5556703,-0.19467352,0.9525712,0.07456088,-0.33629692,0.23409732,0.3538336,-0.047112014,-0.15113302,-0.43173113,0.9673934,0.49041784,-0.06295464,-0.14015661,-0.057603955,0.02721688,0.06471268,-0.25657222,-0.13588801,-0.007962356,-0.55905837,0.1747305,0.24012107,0.3155463,0.21991153,-0.14465195,0.03886972,0.2648153,0.04858913,0.139565,-0.37991628,-0.1490465,0.30389178,0.30873662,0.10810394,0.09667497,-0.3865675,0.35321307,-0.35372424,0.05622394,-0.42327258,0.20602399,-0.3641392,-0.21932888,0.22188419,-0.029490089,0.52774966,-0.1618719,-0.20202573,-0.38297808,0.31121954,0.15969323,0.16227995,0.39802125,-0.21666728,0.102623515,-0.016427608,0.44486824,0.7144607,-0.28861746,-0.2068569,0.3254449,-0.3000245,-0.50215244,0.44215894,-0.50367665,0.19827087,-0.07924659,0.06159761,-0.37459612,0.1495195,0.14976822,0.13107549,-0.18854944,-0.75274724,-0.17533056,0.20576006,-0.24014287,-0.22576977,-0.19926663,0.04429674,0.74472475,-0.20427684,-0.20430104,0.08560866,0.32841897,-0.119945206,-0.29668188,0.15557714,-0.34821084,0.16869867,-0.06282865,-0.39752576,-0.25947985,0.10253314,-0.39757195,0.084541,0.07237958,-0.42876986,-0.020363351,-0.25961038,-0.04615888,1.0053388,-0.27525637,0.28443673,-0.35045418,-0.60013574,-0.79169804,-0.27845848,0.25188437,0.12085644,0.067295134,-0.59462047,0.04409079,-0.047211513,-0.39349318,-0.18567978,-0.47548398,0.4183134,0.043312464,0.485721,-0.2212705,-0.75277215,0.12046965,0.16482061,-0.14017613,-0.79636365,0.4393758,-0.058393005,0.85998005,-0.039965093,0.07902288,0.36345437,-0.3709596,-0.13610415,-0.10710905,-0.18166226,-0.6575021,0.07773427,993 -916,0.4653343,-0.24927996,-0.55132127,-0.22187072,-0.2580658,0.08227157,-0.18698357,0.60947174,0.10001111,-0.3665207,-0.22288947,-0.30599785,-0.040199593,0.33948097,-0.2930994,-0.3392171,-0.10095966,0.020946985,-0.47290584,0.4269951,-0.2902712,0.12543735,-0.0268767,0.43653518,0.42575052,0.15275389,0.016542705,-0.040603157,0.19413705,-0.40181115,-0.23237103,0.4226979,-0.47653466,0.090033725,-0.12287617,-0.6034386,-0.06340645,-0.5081892,-0.27334,-0.7749932,0.43886194,-1.1737049,0.6239144,0.09615009,-0.32478255,0.24790278,0.4332557,0.31380197,-0.03691444,-0.09809635,0.30269757,-0.043169,0.122120015,-0.0035386572,-0.25637448,-0.6129293,-0.59288144,-0.26032192,-0.28298903,-0.37482548,-0.48421076,0.10269768,-0.40118095,0.024018157,-0.058478035,0.3289755,-0.4586601,0.10166537,0.11519351,-0.13989368,0.48710147,-0.6936497,-0.28334785,-0.18551947,0.3476073,-0.33903924,-0.17925315,0.100456424,0.4657533,0.3134536,-0.20116065,-0.025557892,-0.1529595,-0.16236627,-0.17820735,0.51403683,-0.34274867,-0.5139126,-0.13885535,-0.051386762,0.36760083,0.5414045,0.0686444,-0.2278274,-0.050894216,0.16498986,-0.3039856,0.5751737,0.35666588,-0.48721734,-0.22899619,0.24599601,0.44114324,0.51620287,-0.20628358,0.025671037,0.095528476,-0.549335,-0.09379958,-0.011994735,-0.26013562,0.47534516,0.0018090443,0.36687186,0.8186504,-0.17780405,0.103461295,0.0032050067,0.011647826,-0.43764192,-0.31488773,-0.35736907,0.31627566,-0.4686575,0.55688834,-0.0052244933,0.75120527,0.014039939,-0.51334244,0.18896866,-0.74010736,0.014764038,-0.2922467,0.46404466,0.6274426,0.33480763,0.2583203,0.62684035,-0.39563057,-0.15052553,-0.07767021,-0.3200359,0.11059401,-0.18959522,0.08671963,-0.5455487,-0.0086480165,0.059411585,0.11969094,0.0032163777,0.59236646,-0.5328185,-0.10978925,0.15534121,0.8619654,-0.31108677,0.021784402,0.7225077,1.0308706,0.85924697,0.027143007,0.83999753,0.0022069432,-0.18263312,0.17516258,0.11362865,-0.67219484,0.34232304,0.59671724,-0.58537835,0.055418536,0.2136372,0.16047022,0.37036905,-0.28323352,-0.09582932,-0.17781141,-0.057997204,0.23660332,-0.1572687,-0.24716868,-0.17698242,-0.007217169,0.068028204,0.14167382,0.14420272,-0.24666227,0.22274542,0.2398122,1.5092125,-0.23459862,0.08708321,0.2176978,0.41977233,0.1081676,0.007927201,0.10442031,0.16133443,0.4817136,0.27668458,-0.6253946,0.33709368,-0.16335583,-0.46331427,-0.04032241,-0.36233553,-0.28239182,0.05879116,-0.531698,-0.09436799,-0.2809997,-0.27827471,0.39399946,-2.7817056,-0.1487638,-0.23241091,0.23945953,-0.0927838,-0.32970706,0.008010843,-0.43435943,0.5348219,0.32993567,0.40843973,-0.6294901,0.41005203,0.58567184,-0.5146064,-0.12950258,-0.63290876,-0.022698283,-0.08267765,0.2594109,0.07209821,-0.11861062,0.11896279,0.2562786,0.43188208,0.1792506,0.23279546,0.30052227,0.5213942,-0.31235936,0.8590014,-0.18130523,0.5024721,-0.16575877,-0.24885334,0.4227852,-0.18509904,0.15425241,-0.29764643,0.18447527,0.5733978,-0.32047674,-0.96021724,-0.77550125,-0.4181876,1.1948177,-0.28154764,-0.51673824,0.30131215,-0.16264749,-0.32563278,-0.04098715,0.6609488,-0.19011754,0.007903679,-0.7810011,0.11840086,-0.34879047,0.015465487,0.08043084,-0.12926464,-0.56169367,0.70673937,0.06277776,0.587276,0.27004668,0.005703379,-0.3727728,-0.44959986,0.04426995,0.71881634,0.45227727,0.0015500649,-0.08508031,-0.07711997,-0.329435,-0.10517545,0.19095683,0.65085846,0.575183,0.07479153,0.3179064,0.22170377,-0.037227932,-0.07300375,-0.21427625,-0.31468984,-0.05451803,-0.014108994,0.5057728,0.38527715,0.006854059,0.40879926,-0.056146167,0.3151639,-0.24645266,-0.4358382,0.31509203,1.1657044,-0.1963055,-0.31682387,0.81809825,0.5724563,-0.14314233,0.33163053,-0.6571982,-0.24883164,0.5915832,-0.107537,-0.7010208,0.13410085,-0.33858567,0.04901364,-0.8615152,0.037684713,-0.35522678,-0.439061,-0.41173553,-0.26345024,-3.5658739,0.30732623,-0.3791003,-0.18405534,-0.30260083,-0.30947837,0.419536,-0.5369489,-0.75570416,0.03795749,0.116856925,0.7963812,-0.07793422,0.013108081,-0.28588635,-0.09575274,-0.16660587,0.17368542,0.011580511,0.31111422,-0.06599286,-0.38666898,0.001140161,0.20968539,-0.39116496,-0.11548387,-0.50288767,-0.36898205,0.014397024,-0.4196049,-0.32799098,0.64428675,-0.49523112,0.014831946,-0.1898486,-0.051682364,-0.25762168,0.36564776,0.047684215,-0.049439907,-0.048375893,-0.061863974,-0.07147886,-0.3381767,0.47780335,-0.031022586,0.25661966,0.09021192,-0.15184882,0.21845908,0.28707445,0.2399768,0.086354226,0.9834928,0.40823615,-0.01811189,0.12413867,-0.28349364,-0.20635723,-0.5513834,-0.20620684,-0.022824414,-0.40957156,-0.52691877,-0.12750015,-0.22592354,-0.75646174,0.71013975,-0.06776795,0.35155317,-0.017233443,0.31521484,0.48034155,-0.15178514,-0.12397378,0.08754329,-0.11721789,-0.5819258,-0.17850804,-0.5409557,-0.43814227,0.0499077,0.6726426,-0.31704113,0.09837699,0.13849364,-0.22523151,-0.0032377325,0.20327702,0.08690651,0.10415086,0.5454417,-0.18365794,-0.74395025,0.5411681,-0.2154828,-0.07632746,-0.66910934,0.106114514,0.5608719,-0.66807634,0.42052287,0.40332776,0.09222293,-0.47179458,-0.5185974,-0.13685907,-0.052904118,-0.3947046,0.27303073,0.23124367,-0.863184,0.320307,0.4054344,0.049938463,-0.63280034,0.8495479,-0.073507674,-0.35276622,-0.012873814,0.3897689,0.31190464,0.08968736,-0.042627357,0.44718352,-0.34911242,0.3592114,-0.03395813,-0.11668403,0.38404286,-0.10089955,0.068464704,-0.7266704,0.24848507,-0.49877843,-0.3811696,0.33545104,-0.022972148,0.049311105,0.5319008,0.17080842,0.33769467,-0.33417308,0.20130825,-0.19466224,-0.18740667,0.2313025,0.43421772,0.5104567,-0.44585025,0.6930941,0.079651386,-0.028889786,0.19600277,0.13778669,0.44609472,0.050139867,0.63925153,-0.014298391,-0.39977646,0.40556127,0.8218294,0.19473667,0.37596598,-0.04941795,0.024827568,-0.0074155657,0.16066077,0.2709628,-0.040420663,-0.8017361,-0.06722908,-0.44356653,0.12156105,0.72503084,0.09464992,0.09513261,-0.10110236,-0.29931915,0.018524857,0.14220996,-0.07080895,-1.0272349,0.43784237,0.2288783,0.8357287,0.43580282,-0.07402247,0.032018684,0.6329838,-0.026950728,0.026570993,0.4339267,0.22973181,-0.341558,0.66389465,-0.81861115,0.31172675,-0.07517277,-0.10635283,-0.0879622,-0.032996092,0.29521248,0.7975502,-0.22910413,0.076468416,0.066929504,-0.36768883,0.23841096,-0.3637505,-0.015390169,-0.55066127,-0.17469901,0.6262648,0.77229804,0.30834717,-0.27240744,0.082743794,0.022496982,-0.052647825,0.011903719,0.12147722,0.10389995,-0.26320058,-0.7284304,-0.045648217,0.46460006,0.14394262,0.24030356,-0.1671014,-0.38054407,0.34638235,-0.047525205,0.22578582,-0.09641311,-0.72469026,0.0022786802,-0.42364419,-0.5518903,0.44368652,-0.24573869,0.39525938,0.25037774,0.0095782885,0.03431422,0.3123252,0.11488498,0.77316785,-0.083431974,-0.01994444,-0.5182585,-0.044446778,0.03519043,-0.14520824,-0.34526157,-0.23540148,0.09769762,-0.6189315,0.30536518,-0.11109971,-0.39740017,0.16299473,-0.28609237,0.03235168,0.5720671,0.020059131,-0.040671237,0.057745997,-0.13943496,-0.23644876,-0.23075674,-0.17636989,0.23735128,-0.14237858,0.2684233,-0.3475579,-0.10743277,-0.40591475,0.18562269,-0.09948892,0.6309129,0.6320792,0.10934201,-0.019707542,-0.22616783,0.12245918,0.63139117,-0.18232512,-0.22536196,-0.13906075,-0.64333147,-0.23627229,0.22203515,-0.019638311,0.5171759,0.083640754,-0.1611743,0.6199184,-0.15325499,0.8446928,0.09384825,-0.40627053,0.086630516,0.59006566,-0.056397352,-0.31017298,-0.21891402,0.8165173,0.43427905,-0.0033011923,-0.082587704,-0.14066401,-0.038673162,0.17569067,-0.13411446,-0.106937364,-0.087682255,-0.58889264,-0.24898104,0.17005643,0.36772949,0.15066026,0.019647576,0.053062357,0.35723054,-0.061016157,0.52681834,-0.4369154,-0.34049866,0.241904,0.34011304,-0.1467973,0.21266083,-0.44598296,0.50388455,-0.5044997,0.020614803,-0.7074846,0.1876521,-0.3102681,-0.15008157,0.1815285,-0.27801716,0.32890636,-0.14738074,-0.31264547,-0.079080164,0.34083235,0.2494263,0.15749836,0.49918985,-0.31725705,0.10325447,-0.071514376,0.53520435,0.79669976,-0.19144388,0.015741272,0.31476992,-0.45738783,-0.5926534,0.50043744,-0.48880655,0.1776528,0.297142,-0.057767674,-0.10026209,0.3821393,0.2564043,0.008975316,-0.071540356,-0.6940054,-0.05416334,0.35120374,-0.14528783,-0.19555022,-0.26932085,0.14888544,0.5588736,-0.36100575,-0.16362247,-0.06585035,0.47005904,-0.054197107,-0.5604047,0.09218607,-0.39100188,0.4791729,0.01819539,-0.34209776,-0.18213254,-0.13525823,-0.48379257,0.34022245,-0.006806764,-0.2994254,0.1709759,-0.31555206,0.07390244,0.895643,-0.21000452,-0.24697696,-0.48597372,-0.41972187,-0.6179425,-0.3149822,0.24801356,0.28611612,0.09945074,-0.28459233,0.17790867,-0.09324798,-0.058173683,-0.16294573,-0.20645891,0.4484666,0.14081493,0.7548086,-0.055762745,-0.7946125,0.18562655,-0.09659054,-0.0482352,-0.6125066,0.5679913,-0.1763166,0.66267985,0.03169918,0.09543677,0.10198461,-0.3474119,-0.049559418,-0.15057819,-0.27939972,-0.9444404,0.005531685,11 -917,0.39027205,-0.31621617,-0.5783094,0.06238926,-0.3988146,-0.02210027,-0.19525656,0.32306328,0.5647653,-0.1226885,-0.27206028,0.16599339,-0.08911921,0.41056472,-0.059038855,-0.4725394,-0.17813176,0.3373775,-0.9887722,0.38021213,-0.3824214,0.3376276,0.073574096,0.7527599,0.14684013,0.2944525,0.030066257,0.017664801,-0.06262774,-0.23032838,0.07048934,0.039236344,-0.6332049,0.03809792,-0.40651777,-0.4580615,-0.1598097,-0.46037996,-0.51792455,-0.89234984,0.45567977,-0.91232246,0.71317375,0.08794179,-0.18068787,-0.26174966,0.24200712,0.32185063,-0.23248257,0.041452587,0.34337887,-0.51617426,-0.0973645,-0.7142077,-0.1020005,-0.1994841,-0.38270286,-0.07364276,-0.3716215,-0.014757422,-0.061425567,0.21255141,-0.20012508,-0.11935241,-0.2634308,0.5449101,-0.26613024,0.26962292,0.19803548,-0.37148336,0.33621755,-0.7379641,-0.087796524,-0.04200314,0.450401,0.15285161,-0.4685705,0.48078212,0.014839693,0.33517534,0.114247195,-0.13439228,-0.39045802,0.14210083,-0.13719302,0.6412048,-0.45769396,-0.14911076,-0.06861839,0.09300737,0.52876884,0.291914,-0.0009274699,-0.045876253,0.12288602,-0.34486148,0.26393798,0.86685526,0.5787205,0.12022743,-0.0643195,0.11935234,0.44034335,0.5224942,-0.32005265,-0.13829812,-0.014070475,-0.6853946,-0.09641173,0.15763135,-0.0174791,0.532708,0.08482499,0.25472423,0.84270626,-0.06705784,-0.19813167,0.46178916,0.38287008,0.2160768,-0.08521015,-0.4780436,0.4010947,-0.42277336,0.002200842,-0.23939885,0.46191415,0.035639185,-0.53572965,0.305953,-0.6379066,0.1359452,0.13100931,0.54519635,0.6701843,0.8504479,0.3112158,0.795562,-0.12858868,0.14681025,0.11529903,-0.16996633,0.17300238,-0.26611093,0.10718102,-0.42729604,-0.14044572,-0.43271294,-0.07541313,0.32329762,0.6276222,-0.6280294,-0.25695837,0.030065913,0.9804781,-0.22232619,0.054871354,0.73486173,1.0246603,1.0766639,-0.11783283,0.9043912,0.03398256,-0.36925584,-0.28859007,-0.07629065,-0.81288713,0.24410066,0.14073692,-0.7498572,0.41340873,-0.0911629,-0.10073328,0.30284172,-0.6266619,-0.17608823,0.048510443,0.15420772,0.038083542,-0.014903361,-0.6322024,-0.34697312,-0.22606763,0.04649339,0.3945895,0.30305254,-0.58585167,0.38578627,-0.121879384,1.3607075,-0.12757264,0.03991353,0.14077534,0.45805836,0.18837994,-0.18296653,-0.007388237,0.21196751,0.4535614,0.040220488,-0.46774256,0.017700883,-0.32325652,-0.21619095,-0.19010872,-0.28168938,-0.3497114,-0.020442534,-0.34642345,-0.45206755,-0.02092343,-0.32470372,0.08937883,-2.293158,-0.23994341,0.116845734,0.63918906,-0.19343418,-0.075597264,-0.2560732,-0.48786744,0.292742,0.020515285,0.71489084,-0.61576086,0.48578998,0.5320374,-0.7450077,-0.1064765,-0.6145777,-0.07472775,0.20406364,0.21343789,0.09257908,-0.10888956,-0.09357346,0.045768145,0.6209232,-0.022554789,-0.024947925,0.6207749,0.6505421,-0.16894661,0.5188069,-0.3018668,0.6246226,-0.6568498,-0.33255768,0.40297815,-0.5336387,0.16048488,-0.39886466,0.026272291,0.7814133,-0.3814577,-1.0203959,-0.39711943,0.27819854,0.9747791,-0.21752836,-0.4859166,0.14196599,-0.6684485,-0.26077485,0.084043555,1.1018918,-0.20798635,0.06811357,-0.7207657,-0.32324794,-0.08380654,0.25515994,0.07761157,0.03327632,-0.3780712,0.7543635,0.043771833,0.47300968,0.15064754,0.23674335,-0.42310616,-0.3182983,0.2800063,0.7001795,0.4194759,0.15947524,-0.090803206,-0.032419357,-0.15629752,-0.1521645,-0.13898735,0.9974367,0.55277735,-0.23957287,0.11316822,0.37861776,-0.072297215,-0.16227435,-0.39379397,-0.20327902,-0.1860395,-0.034356236,0.577339,1.102655,0.07442188,0.36571,0.046145905,0.4375939,-0.18328136,-0.51785904,0.57797176,0.66859204,-0.28513393,-0.14825855,0.54233736,0.3798623,-0.48451585,0.45749187,-0.7161922,-0.49472797,0.53425956,-0.19446689,-0.42930433,0.29303476,-0.34638157,0.22443981,-0.4524068,0.30210355,-0.313033,-0.5391735,-0.6842856,-0.17601405,-1.4230918,0.1899177,-0.28525114,-0.17037672,-0.44733316,-0.07586145,-0.014962465,-0.5767805,-0.5706545,0.09018964,0.33352596,0.7400623,-0.0775997,0.18736406,-0.1074429,-0.47617486,0.06989025,0.13321456,0.36925545,0.34938708,-0.2091342,-0.44148958,-0.03603516,0.20933667,-0.45282477,0.0009130307,-0.7718597,-0.5906357,0.03970531,-0.5983067,-0.1803177,0.6256251,-0.41383,0.0060575334,-0.37455508,0.071750276,0.1383825,0.13736326,-0.03965011,0.18123406,0.107052214,-0.14902626,0.31577513,-0.07940367,0.55469567,0.070783876,0.31101885,0.022483757,-0.04889537,0.17480388,0.42510518,0.7934749,-0.22846244,1.2628284,0.47330996,-0.07991243,0.078723006,-0.32302022,-0.5545089,-0.46805885,-0.16936421,0.4126197,-0.48604405,-0.2686634,0.16915597,-0.4694381,-0.881984,0.65608054,-9.945306e-05,0.124896504,0.18453561,0.42926627,0.62624115,-0.285054,-0.116835065,0.034510985,-0.21489672,-0.3953369,-0.11534894,-0.5329835,-0.46698835,-0.33437058,1.178951,-0.2410283,0.2501198,0.33414394,-0.45923945,0.1247891,0.16148204,-0.20551997,0.13010553,0.58001137,0.051345114,-0.6175745,0.36285046,-0.21987191,-0.16301613,-0.6886208,0.28125426,0.75674117,-0.9560468,0.4651364,0.37527856,-0.23252869,-0.63202435,-0.5685235,-0.20761698,0.10817588,-0.059717346,0.35465145,0.26517847,-0.45334843,0.43195343,0.23684913,-0.640263,-0.67205936,0.1526642,-0.1452962,-0.6787568,-0.095114164,0.3857315,-0.01364068,-0.04887246,-0.2229589,0.35503176,-0.3382407,0.5247325,-0.2737912,-0.13699043,0.040871542,-0.3656251,-0.3472194,-1.0066129,0.37350005,-0.635127,-0.45548275,0.52878344,0.08786147,0.15739137,0.25084305,0.39033368,0.36059934,-0.18249017,0.021358518,-0.55456907,-0.43934906,0.29236242,0.42362258,0.58548,-0.42913616,0.62650543,0.1805314,-0.22388586,0.4103568,0.09428228,0.5205085,-0.25342783,0.52208525,-0.078946754,-0.1800831,0.20140834,0.89463973,0.15302187,0.319869,0.029845275,0.0027469478,0.27560183,-0.041288838,0.14389423,-0.1224329,-0.6638603,0.099878736,-0.3075731,0.05631067,0.53939176,0.3300617,0.19936953,0.0589174,-0.37635022,0.073164955,0.36647776,0.14173482,-1.5427787,0.46780184,0.30480182,0.9422039,0.17569403,0.30167583,-0.2207867,0.8993,-0.28195494,-0.000990253,0.39769933,-0.027787907,-0.36769524,0.6077604,-0.5815005,0.59415823,-0.17659193,-0.057677332,0.1332706,0.14236914,0.37561694,0.8870383,-0.20389853,0.056729242,0.06383489,-0.21856841,-0.24662186,-0.36400804,0.13634545,-0.61937386,-0.62112623,0.87105125,0.43498495,0.58059156,-0.20479316,0.16640092,-0.09060553,-0.17922406,0.32524216,0.037591163,-0.12190496,-0.07971501,-0.7575706,0.39533588,0.41562846,-0.07088241,0.07977658,-0.23530273,0.13750964,0.21502231,-0.061987247,-0.039046895,-0.31004623,-0.7558527,0.03614404,-0.6162007,-0.55099857,0.29586676,-0.17410849,0.111250706,0.27010298,0.040735506,-0.20596462,0.6114944,0.18687946,0.962051,0.09497714,-0.27496377,-0.26251185,0.50801766,0.24715918,-0.24488735,0.1261241,-0.28643447,0.28019345,-0.466813,0.69437814,-0.3329518,-0.43225154,-0.026367974,-0.204429,0.02594954,0.5760598,-0.22265282,-0.23485889,0.085072584,-0.38458955,-0.59810275,-0.22133654,-0.40056193,0.09151683,0.40622795,-0.018109603,-0.3854782,-0.32740334,-0.23357998,0.5798864,-0.10075231,0.7062781,0.55516183,0.2901393,-0.16201246,0.015935015,0.27638137,0.7652985,0.15898685,-0.11186215,-0.73427796,-0.3239856,-0.49516097,0.47581923,-0.14043695,0.1886192,0.17668891,-0.15967326,0.93122,-0.11389263,0.94718516,0.09310902,-0.20290169,0.14385703,0.66082865,-0.31384754,-0.026678223,-0.52987665,1.0186518,0.4159169,-0.2919289,0.09610888,-0.37662888,0.11251393,0.32826492,-0.49136165,-0.16088222,-0.11591604,-0.57721287,-0.22922641,0.20791164,0.31137484,0.18079506,-0.3657219,0.070948154,0.21331738,0.0258071,0.011818108,-0.60729164,-0.2639264,0.3986432,0.12925786,-0.2806235,0.14302683,-0.3874593,0.3941108,-0.29947546,0.0964133,-0.48703825,0.15837556,-0.21807393,-0.48378485,0.27939928,-0.06643944,0.24642305,-0.62472826,-0.15888928,-0.0846694,0.19887957,0.16337651,0.17507496,0.35309795,-0.28420568,-0.15293838,0.04084648,0.6516176,0.97204393,-0.4925214,0.16169253,0.35440892,-0.431192,-0.6264077,0.51015687,-0.29873917,-0.24667287,-0.1282348,-0.4225625,-0.4071965,0.21029264,0.0095068,0.21264444,-0.27378651,-0.7165013,0.03449787,0.42443788,-0.1472802,-0.20565878,-0.26593098,0.16183501,0.4321775,0.118832305,-0.40294302,0.03953961,0.3480645,-0.22138672,-0.17592405,0.13919193,-0.4390478,0.25930443,-0.071412176,-0.37300184,-0.2009597,-0.034914587,-0.743009,0.16148768,0.08290073,-0.49287063,0.0475311,-0.10389379,0.08051314,0.87344164,-0.33555266,-0.027667327,-0.33022845,-0.46421137,-0.9496189,-0.4153927,-0.08813758,0.44756538,-0.118643805,-0.7435734,-0.02224202,-0.06407028,-0.35611802,-0.05387892,-0.45884132,0.42832777,0.10458946,0.5539648,-0.5689245,-0.99808764,0.24532112,0.18945804,-0.6658981,-0.49177915,0.59434795,0.21563144,0.78037906,-0.045741078,0.017259013,0.09522638,-0.3561679,0.03979427,-0.28577527,-0.10787023,-0.861762,-0.0067627374,17 -918,0.57676417,-0.38611257,-0.3592069,0.030557405,-0.106888264,-0.04410633,-0.15854101,0.60573864,0.30957833,-0.4774587,-0.16524597,-0.30159697,0.05388786,0.4326124,-0.116642326,-0.5700424,-0.102258675,0.16951086,-0.41778556,0.6902926,-0.40745097,0.17858075,-3.846125e-05,0.4603349,0.2104938,0.06916091,0.10823281,0.027588041,-0.3048577,-0.037037995,-0.23853926,0.46240407,-0.5969083,0.13935558,0.008656252,-0.3563271,-0.13456264,-0.57935214,-0.08166329,-0.8110975,0.22354859,-0.7747195,0.52647686,0.061627604,-0.25506914,0.37157518,0.030676115,0.2103415,-0.19869703,-0.0043444904,-0.061877433,-0.07244503,-0.021270644,-0.3010762,-0.28314596,-0.32014903,-0.64500755,0.17362674,-0.4698086,-0.2577066,-0.30100748,0.14631711,-0.4119996,-0.17576037,-0.08362661,0.6295705,-0.42276537,0.13647245,-0.0022028575,0.015907826,0.41459656,-0.66096556,-0.24633004,-0.16191937,0.04213216,-0.3342256,-0.37928504,0.3560317,0.4674987,0.39541635,-0.107437685,-0.10585525,-0.5839662,-0.03832869,0.27056348,0.57360816,-0.20081034,-0.82906973,-0.19411477,-0.015753828,0.21356674,0.36649063,0.40798768,-0.43819663,-0.05526429,0.042634603,-0.25102845,0.6582032,0.495104,-0.27735975,-0.2754143,0.20315656,0.59213185,0.07957292,-0.035262853,-0.12179739,0.06335766,-0.5896967,-0.028632153,0.42942324,-0.349248,0.5455129,-0.18072993,0.17169909,0.48690823,-0.40990055,-0.09963649,0.09068993,0.08380267,-0.069898345,-0.4411496,-0.17561707,0.24231076,-0.3830412,0.096960716,-0.20230569,0.8733725,0.1692582,-0.7716914,0.3656471,-0.47053406,0.14850044,-0.032722905,0.5667521,0.69588524,0.42319953,0.5051925,0.65049684,-0.46677285,-0.0066594915,-0.12662391,-0.40554705,-0.3739278,-0.23100147,-0.005276062,-0.73870295,-0.14940338,-0.13147527,-0.13134629,0.20744243,0.534515,-0.63439393,-0.08488052,0.029947985,0.7718712,-0.28858548,-0.17125979,1.0013361,1.0402924,1.1064882,0.1263803,1.2018589,0.25671625,-0.27939624,0.32762185,-0.5338061,-0.68502444,0.32699755,0.3301354,-0.6913261,0.43528578,-0.051597986,-0.076949,0.22958253,-0.40985343,-0.014990646,-0.14482512,0.1790625,0.24865142,-0.33321488,-0.45309192,-0.20910622,-0.26066262,-0.006780706,-0.011384943,0.23020034,-0.26882038,0.357951,-0.013693273,1.4223477,0.0751492,-0.013092643,-0.036205564,0.43574592,0.257808,-0.062945984,0.020436259,0.47343948,0.3578603,0.23955783,-0.60140574,0.17537768,-0.28540027,-0.54409117,-0.17153555,-0.26155448,0.06308717,-0.06914397,-0.4359326,-0.2131216,-0.18756433,-0.42976934,0.6060056,-2.475365,-0.24643312,-0.027245093,0.2989418,-0.15643059,-0.38591754,-0.026575046,-0.5074947,0.44473922,0.22419706,0.45058087,-0.7642517,0.14461142,0.39186108,-0.43873012,-0.048883926,-0.68941855,-0.08784991,-0.04741675,0.37998632,-0.040869355,-0.0025311736,0.3379711,-0.13319865,0.7289757,-0.25382194,0.095808245,0.28688774,0.47907525,-0.07522829,0.35485017,-0.054093298,0.49523354,-0.3021885,-0.2534155,0.25773022,-0.46940517,0.16578178,0.25163734,0.13309906,0.53282744,-0.33789095,-0.9541601,-0.6791847,-0.3525784,1.0122466,-0.06970325,-0.57733256,0.3093651,-0.13604023,-0.31699744,-0.26423383,0.49371156,-0.11489568,-0.14021504,-0.81128526,0.048224613,0.041130457,0.12096251,0.00068350544,0.048537884,-0.20589113,0.7558181,-0.03975275,0.20121449,0.3679819,0.14456561,-0.7313904,-0.59619707,-0.0021343557,1.0844314,0.34098542,0.1446713,-0.15722138,-0.2619815,-0.23563026,-0.22093274,0.0936152,0.59338415,0.7832567,-0.10696921,0.14673714,0.3773824,0.047268346,0.04517878,-0.16597302,-0.28977865,-0.17161797,-0.021615712,0.57980293,0.51225096,-0.2943022,0.8285833,-0.081913665,0.06741247,-0.12031329,-0.46881685,0.6384479,1.1534734,-0.19128908,-0.38461846,0.49842253,0.42972726,-0.5702085,0.40335143,-0.4231842,-0.15301861,0.5917938,-0.15448724,-0.49250638,0.16654798,-0.22872216,0.07892776,-0.8258725,0.37701243,-0.38044044,-0.5971536,-0.5218376,-0.04898983,-3.2131653,0.25160047,-0.37778842,-0.2904126,-0.1142323,-0.2387877,-0.19327994,-0.624833,-0.47054628,0.17941327,0.26801547,0.669104,-0.15166183,0.10955166,-0.19702072,-0.3286687,-0.3374653,0.186387,-0.071199484,0.3208683,-0.06603826,-0.49081868,0.004363678,-0.0361506,-0.46613052,0.12627055,-0.6082932,-0.5704821,-0.17522399,-0.6399488,-0.55659777,0.7810822,-0.45609033,-0.0875919,-0.19590941,-0.04264262,0.07946125,0.5209881,0.059830524,0.15676701,0.07078931,-0.23136324,0.08637436,-0.21869694,0.16248155,0.0021774264,0.21510428,0.5432314,-0.2035995,0.4474266,0.47568187,0.77003425,0.14357637,0.83314264,0.5448187,-0.1901148,0.331123,-0.35500228,-0.08173364,-0.65050006,-0.4260495,-0.08343842,-0.5558823,-0.6124105,0.022227913,-0.21492372,-0.7245077,0.61069757,-0.20896946,0.36624536,-0.057603538,0.6648975,0.5566574,-0.11508405,0.033213224,-0.25710624,-0.16268545,-0.4198037,-0.27572954,-0.58991396,-0.49759015,0.24313106,0.8861219,-0.12200518,-0.044109102,0.030422766,-0.21207339,-0.19233336,0.1278351,-0.1290129,0.23955292,0.17826265,-0.13147831,-0.59246296,0.4371229,0.10038623,-0.2134456,-0.68533945,0.26036906,0.75151086,-0.60231656,0.5643979,0.062606074,-0.052925695,-0.1146364,-0.44528684,-0.22127308,0.00410793,-0.1360017,0.418495,0.19131947,-0.7449574,0.3897023,0.49349257,-0.15530132,-0.7603115,0.36872518,0.11771836,-0.33088413,-0.18341233,0.5099108,0.22198138,0.06408258,-0.30942962,0.29452407,-0.60042477,0.17669332,0.19969012,-0.09312391,0.1749105,-0.05966716,-0.24701883,-0.871566,0.19064459,-0.4354827,-0.32157868,0.36877096,0.2007487,0.0890233,0.28987905,0.09176321,0.32877672,-0.35654363,0.041724283,0.04514667,-0.12173914,0.05157175,0.5590449,0.42399576,-0.4162412,0.4829462,0.1441608,-0.092072636,-0.058177266,0.065562576,0.43805486,0.18037221,0.4635517,0.18335718,-0.39647806,0.35830072,0.7270193,0.071824096,0.657927,0.063758686,-0.149167,0.23193675,0.15011825,0.37247905,-0.044581417,-0.43885136,0.10562298,-0.04227172,0.11744823,0.561641,0.06130379,0.31252712,-0.116896555,-0.18233806,-0.0071311328,0.4246913,0.04606086,-1.4123362,0.37561035,0.21093582,0.78734094,0.47328746,0.06743658,-0.012625412,0.53123224,-0.34939304,0.11378078,0.37488982,0.115909696,-0.4906751,0.58907694,-0.80549204,0.43607283,-0.18848382,0.045256093,0.04442452,-0.03837366,0.40497324,0.7986752,-0.294472,-0.13277385,-0.003020498,-0.30041146,0.26178595,-0.55122966,0.18634838,-0.43762875,-0.2600199,0.69263476,0.47071883,0.21503267,-0.11783059,-0.019294636,0.32671395,-0.15291633,0.24607235,0.07972148,0.37074307,0.11262767,-0.77100736,-0.11248383,0.5790918,0.031184983,0.2264447,0.1172038,-0.0073317396,0.19203645,-0.18217911,-0.3068171,0.025909217,-0.65933746,-0.036418077,-0.14631997,-0.5338722,0.4478029,-0.08569899,0.20865455,0.21907832,0.14349177,-0.5842356,0.4449755,0.40634328,0.80735105,0.025331628,-0.1498579,-0.30511138,0.40422526,0.213894,-0.20871258,0.088722095,0.14190464,-0.18688358,-0.6332073,0.46347344,-0.008648268,-0.5112232,-0.035800055,-0.018606352,-0.026931781,0.6074316,-0.15704943,-0.23474546,-0.2142151,-0.30385447,-0.11973849,-0.28828675,0.057625934,0.45949954,0.092384696,-0.08064684,-0.075134344,-0.19257064,-0.042638537,0.28458592,0.054537475,0.3889982,0.16543895,0.320696,-0.4603218,-0.032316554,0.14328885,0.4711354,-0.007454482,-0.13964592,-0.18128766,-0.37714452,-0.4272704,-0.3403527,-0.060503688,0.4162351,0.14301473,-0.53188986,0.83667094,-0.009855398,1.5860015,-0.027429072,-0.41459674,0.069860294,0.46145448,0.0303398,-0.09062099,-0.36096472,1.0655081,0.45485032,-0.08913514,-0.10706326,-0.3442911,-0.022877103,0.28141677,-0.2357166,-0.26736787,0.0654659,-0.5729899,-0.35201228,0.23847555,0.10568228,0.23345485,-0.08668468,0.14462478,0.4528902,-0.07457267,0.20214285,-0.2579117,0.0070317117,0.08927031,0.55907476,0.1922421,0.21746536,-0.32040396,0.20482731,-0.6043196,0.29969057,-0.23832059,0.22279096,-0.18374799,-0.2780632,0.23039566,0.2256353,0.34336007,-0.11803436,-0.2772967,-0.2872058,0.5445313,0.149614,0.1693268,0.5171899,-0.2269815,0.10867064,0.07964445,0.36966628,1.2094535,-0.15659322,-0.28913975,0.21186198,-0.34275487,-0.78169435,0.71196556,-0.20582256,0.080555275,-0.07529663,-0.21003947,-0.6280111,0.035168167,0.17832163,0.14405113,-0.05274652,-0.52393854,-0.21527953,0.40671146,-0.40782169,-0.2580354,-0.34588373,0.33675778,0.641065,-0.25918218,-0.44764307,0.06313198,0.21492763,-0.38456982,-0.34156856,-0.13438118,-0.32428697,0.36917618,0.013189032,-0.35209495,-0.02570163,0.11170135,-0.5009256,-0.010907552,-0.050153863,-0.36654797,0.28425053,-0.20538577,-0.19345473,0.881171,-0.43577853,0.33962205,-0.57301253,-0.6087043,-0.9006742,-0.28619346,0.50152326,0.110155724,0.06865611,-0.76885927,-0.11950963,0.0012985454,-0.27610666,-0.068011805,-0.4596344,0.43556643,0.09161677,0.46740168,-0.10518979,-0.73859316,0.28142184,0.3871132,0.108408906,-0.79859674,0.43480852,-0.095409326,0.87253875,0.020976108,0.06754325,0.5466861,-0.5822745,-0.0764109,-0.18734188,-0.24473582,-0.50628245,-0.098309346,28 -919,0.36943275,-0.24521293,-0.5305809,-0.051618338,-0.31731045,0.09223142,-0.10210958,0.49013528,0.19558404,-0.2596907,-0.3140149,-0.36839056,0.03350949,0.34643635,-0.24877949,-0.24925843,-0.22961289,0.2309403,-0.61259913,0.5101184,-0.2889759,0.07221377,0.22053948,0.3804634,0.49661115,0.056780323,0.13118483,0.1530264,0.14628252,-0.31156892,-0.1483786,0.15365472,-0.44723547,-0.015938293,-0.36852616,-0.5654344,-0.14515969,-0.72528917,-0.4395976,-0.80976814,0.49882507,-1.0227729,0.61718464,0.05068442,-0.31325185,0.36331242,0.48908183,0.3480704,-0.050215982,-0.20780613,0.1534449,-0.24417943,0.09827187,0.043278337,-0.41657498,-0.21025454,-0.6140117,-0.09398424,-0.37965515,-0.19713706,-0.3309498,0.10607264,-0.37620106,0.15087141,0.004218302,0.42965043,-0.37055197,0.014742651,0.30045778,-0.2517901,0.2497643,-0.52705055,-0.2030374,-0.03291328,0.31121275,-0.19659692,-0.13463615,0.27092075,0.21927537,0.36388996,-0.17472933,-0.08237812,-0.30875042,-0.12692872,0.01610874,0.6785635,-0.090947874,-0.37866223,-0.12754732,0.1862048,0.35106048,0.58979625,0.28857037,0.040605698,-0.065058105,-0.09939249,-0.123133905,0.6380838,0.40317994,-0.5859499,-0.29030344,0.3566617,0.54525656,0.3851333,-0.14651138,-0.032093428,-0.042820428,-0.51150995,-0.07035962,0.052208032,-0.47648776,0.57704425,-0.14246112,0.287122,0.5574316,-0.17110057,0.016458642,0.038508542,0.058536377,-0.23515996,-0.27280846,-0.24248153,0.4294451,-0.47722128,0.37367907,0.08182729,0.77705675,0.14824954,-0.36275244,0.20136298,-0.6273611,0.2996793,0.026271397,0.37501782,0.65622777,0.38194466,0.45323464,0.8838553,-0.23938726,0.04934817,-0.10362596,-0.36486903,0.005986023,-0.2798305,0.1015028,-0.561431,-0.0380504,-0.024038337,-0.002314134,0.30355775,0.46072453,-0.5419854,-0.21901092,0.21041423,0.7991815,-0.1687016,-0.009910849,0.8709236,1.0707074,1.1245946,-0.11266677,0.9357632,-0.10529005,-0.28443223,0.097559124,0.05797634,-0.6606891,0.2731113,0.5609508,-0.55126303,0.40591142,-0.05728433,0.09507784,0.2652069,-0.5116802,-0.17100644,-0.06034098,-0.1812508,0.15957972,-0.008924892,-0.5009613,-0.16856699,-0.18469748,0.11344864,0.16992027,0.25021866,-0.10683287,0.4595789,-0.03351548,1.4331703,-0.17190991,0.059850443,0.2626869,0.54272896,0.21613628,-0.14026465,-0.08025215,0.40104952,0.2927541,0.24192381,-0.6065149,0.17392917,-0.29805386,-0.18260585,-0.060507976,-0.518568,-0.3022774,0.1510945,-0.2822499,-0.16996016,-0.43725812,-0.30251917,0.4344237,-2.9635496,-0.12042635,-0.18852767,0.33391058,-0.3203398,-0.35143343,0.123599075,-0.5789706,0.38516614,0.31274542,0.6082888,-0.5658281,0.20061742,0.5612007,-0.9119234,-0.088898204,-0.64085335,-0.21271086,0.089507274,0.31153,-0.025961464,-0.1169722,0.20291094,0.20381485,0.40945262,0.34235534,0.109587386,0.31145218,0.59607536,-0.26060545,0.7840032,-0.38922167,0.509101,-0.28130084,-0.112458535,0.28478947,-0.2487362,0.3967038,-0.5886427,0.043704584,0.79238415,-0.4231758,-0.972051,-0.5810757,-0.018738605,1.2704924,-0.35418046,-0.5217529,0.16668387,-0.3282603,-0.21069965,-0.27032778,0.63880926,-0.09404991,-0.14715539,-0.6885256,-0.016436046,-0.081723765,-0.028242566,0.01777745,-0.19047265,-0.4582307,0.71819425,-0.00944447,0.61151236,0.18575855,0.06111274,-0.30136317,-0.38199723,-0.020784318,0.66104895,0.55630845,-0.057216205,-0.32460278,-0.0885747,-0.54810154,-0.1482266,0.04230349,0.58165735,0.49714425,-0.14996423,0.19030382,0.3356412,0.11102578,0.15260425,-0.16935283,-0.29496047,-0.24656259,-0.31364793,0.56841606,0.62734777,-0.06936241,0.28375027,0.1943356,0.20598911,-0.13412789,-0.4843419,0.37315118,1.0878171,-0.17034239,-0.43319118,0.64747155,0.4456201,-0.0761732,0.432644,-0.46224576,-0.3506579,0.61761856,-0.23830682,-0.6679248,0.19670989,-0.20902723,-0.0710551,-0.7614898,-0.116211765,-0.36692002,-0.22564574,-0.39629564,-0.056234714,-2.7176354,0.28088376,-0.4015071,-0.16578232,-0.22762147,-0.29695523,-0.06051283,-0.42087972,-0.8134603,0.12804057,0.21627909,0.80524707,-0.33302295,0.17676017,-0.21117598,-0.35623464,-0.39035285,0.24060312,0.09460869,0.4142258,-0.23505668,-0.42947987,-0.14377202,0.08593528,-0.42155206,0.013715733,-0.4630498,-0.20858426,-0.10102273,-0.40052092,-0.16699563,0.6709838,-0.30916956,0.15733154,-0.101739615,0.01884939,0.05186696,0.07247139,0.013307664,0.12502044,-0.00962974,-0.07648038,0.2642552,-0.18316509,0.60301566,0.049055625,0.38991365,0.11621931,-0.039641682,0.33770657,0.2357309,0.48593512,-0.07031283,0.94141215,0.3047575,0.016408406,0.1419381,-0.13703194,-0.3385883,-0.5205487,-0.0408821,0.07433789,-0.3826995,-0.5139139,-0.23035984,-0.2776201,-0.7892078,0.6149484,0.14549412,0.5752908,-0.20660233,0.61558014,0.73532104,-0.42951107,0.05872741,0.18284778,-0.03623176,-0.59849304,-0.059678208,-0.5883315,-0.28062907,0.13401042,0.58293587,-0.3734227,0.09895463,0.16134882,-0.24698061,0.15237848,0.2767565,0.06665004,-0.022480749,0.72673,-0.0007199157,-0.60105187,0.4612784,-0.03265667,-0.09025492,-0.6641415,0.40399924,0.34067643,-0.49553013,0.47432345,0.39253223,-0.007315736,-0.30138513,-0.3919299,0.09072889,-0.20138346,-0.2759671,0.24544774,0.34102023,-0.65845287,0.3107549,0.036115758,-0.07439084,-0.82861614,0.67635703,0.006942619,-0.4859021,-0.059893813,0.27873203,0.38090333,-0.026104247,-0.16333221,0.19644183,-0.32194594,0.27918652,0.10787902,-0.12665276,0.2541014,-0.17477606,-0.17274895,-0.7792484,0.38041514,-0.40909547,-0.24616732,0.63689977,0.018730747,0.06391301,0.30540913,0.17342867,0.27801454,-0.10208546,0.16666377,-0.18136472,-0.22183639,0.5619181,0.5279259,0.5094131,-0.6971259,0.7065403,0.051842157,-0.34170857,0.31989858,0.10538824,0.39299366,-0.099121094,0.44514617,0.088187,-0.46961787,0.07128853,0.45514333,0.2789288,0.156247,0.16657104,0.165848,0.16435105,0.030373357,0.15186076,-0.20677948,-1.022796,-0.044266056,-0.49010772,-0.08368506,0.5638488,0.119009525,0.11522328,-0.070191555,-0.328722,0.035553653,0.04319571,-0.13319196,-0.9708742,0.11906678,0.13933307,1.0112242,0.5061129,0.04628031,-0.0060013155,0.6844197,-0.1596334,0.018680584,0.43775386,0.26204488,-0.33038348,0.60273224,-0.627157,0.69942975,0.16025604,-0.16496149,-0.02703427,-0.04194891,0.35305378,0.7695113,-0.33145916,-0.03773274,-0.04061024,-0.355426,0.2240929,-0.3515143,-0.13529573,-0.7642635,-0.23091358,0.60680676,0.4525472,0.32113984,-0.14366728,0.077722505,-0.021232039,-0.2314751,0.20959915,0.18226513,0.18241745,-0.043211665,-0.6634243,0.0986358,0.41868666,0.060122013,0.19036144,-0.017439894,-0.15402903,0.22533678,-0.101577066,0.030043678,-0.23036748,-0.78266233,0.0018883185,-0.4352745,-0.6258756,0.39847043,0.008638626,0.3839386,0.18113568,0.046003763,0.061893463,0.4005212,-0.02944734,0.9322237,-0.11180334,-0.08238847,-0.53002876,0.2300765,0.0072676484,-0.14747085,-0.0125445565,-0.1103803,0.21709065,-0.3625333,0.5472009,-0.046940263,-0.33241272,-0.10143032,-0.20526724,-0.0505244,0.5853544,-0.060731675,0.091052145,-0.12029915,-0.21157865,-0.3598098,-0.43675402,-0.10683644,0.10476882,0.14925157,0.13943674,-0.1926884,-0.021866795,-0.11463776,0.37834436,-0.26907575,0.43641624,0.18961026,0.0019925265,-0.26954305,-0.14276303,0.09293225,0.59560543,-0.14969738,-0.322888,-0.26091692,-0.60095197,-0.39774218,0.35562688,0.011768731,0.47871026,0.12925005,0.21719976,0.7051316,-0.13206077,0.985758,-0.07211203,-0.48765525,0.13248184,0.58465004,0.026719032,-0.34758168,-0.21886438,0.94792044,0.35762927,0.06798992,-0.0773695,-0.39942238,0.14644535,0.0076670377,-0.07834552,-0.1374949,0.0237136,-0.34362814,-0.43451074,0.12838767,0.24447675,0.4520755,-0.3157557,0.16580048,0.52760506,0.06420083,0.34808016,-0.30960256,-0.779718,0.35600263,0.1503167,-0.19717306,0.1382696,-0.6119297,0.40084276,-0.51966524,-0.08400006,-0.55583626,0.16217735,-0.18698539,-0.28785273,0.29169938,-0.06668654,0.49295834,-0.2777615,-0.37467453,-0.21246599,0.34642917,0.20076571,0.17479819,0.46804506,-0.29995137,-0.078150876,0.012546823,0.4710701,1.0271327,-0.19102818,-0.021967346,0.26217547,-0.45745096,-0.600793,0.3094921,-0.51580906,0.29117852,0.24797778,0.116653726,-0.42679837,0.15975726,0.061064433,-0.00012790343,0.04907242,-0.7696717,-0.32732388,0.050456807,-0.3134632,-0.098680146,-0.5468245,-0.051353637,0.50424814,-0.10496008,-0.28134155,0.14594804,0.17028776,0.11491526,-0.7208401,0.043305818,-0.23780021,0.14962913,-0.1756543,-0.36047208,-0.18835579,0.101209566,-0.52101535,0.2590516,-0.040757265,-0.2725021,-0.0018175759,-0.35228717,-0.05342187,1.0148177,-0.48442987,0.055966616,-0.2549062,-0.5138393,-0.66545737,-0.38245544,0.2570547,-0.093498826,0.12609954,-0.66244596,-0.054483283,-0.27727854,-0.20210028,-0.04286597,-0.14368461,0.3473376,0.13099402,0.46954262,-0.17323637,-0.7251759,0.4343111,-0.10058446,-0.13438047,-0.64313227,0.46966496,0.06096419,0.7507309,0.027556349,0.1576707,0.33916643,-0.5627962,-0.22857767,-0.06351905,-0.13593945,-0.57974666,0.034971364,34 -920,0.7010103,-0.1462217,-0.5236357,-0.18103208,-0.42684123,0.32289803,-0.27909076,0.065376945,0.24633765,-0.6551354,-0.07858631,0.024812417,-0.23501673,0.30173683,-0.21841711,-0.91917604,-0.14628161,0.10531383,-0.5735349,0.66581273,-0.43901014,0.39442304,-0.047737774,0.1690697,-0.18372796,0.3554764,0.5581359,0.041368257,-0.2345912,-0.17033881,0.09899692,0.018210893,-0.91283435,0.4412166,0.02628048,-0.24022557,0.08401474,-0.5138323,-0.03559363,-0.71042156,0.609657,-0.8449797,0.7625592,-0.12392651,-0.2542817,0.01500179,0.07327433,0.015206412,-0.13172513,0.13132602,0.18464284,-0.28686666,-0.16165105,-0.27531117,-0.28483498,-0.6181611,-0.7206586,0.07647165,-0.7536081,-0.2223854,-0.4381075,0.30129382,-0.3257989,-0.1623199,-0.28359434,0.6510532,-0.4463177,-0.23264576,0.04287283,-0.22788659,-0.02289653,-0.703651,-0.2681776,-0.16844903,0.24080883,-0.04514202,-0.014285732,0.2909344,0.35132197,0.5856297,0.36860406,-0.39480287,-0.25267145,-0.1545545,0.15715145,0.37074584,-0.05852187,-0.5761719,-0.34065545,-0.041307177,0.37362054,0.14817198,0.27762964,-0.32547665,0.24450098,-0.00066729565,-0.10649531,0.8961497,0.48556882,-0.4169471,-0.2173701,0.3003337,0.38695785,-0.2039392,-0.020849,-0.023230005,-0.06791496,-0.4876106,-0.28843993,0.21427794,-0.12664492,0.5881352,-0.23375203,0.14281116,0.56446034,-0.2476971,-0.06648935,0.053968657,-0.1583069,0.13414337,-0.11777,0.024876803,0.38899973,-0.50165755,-0.0062802355,-0.4849603,0.5285674,0.041124605,-0.70326364,0.28683308,-0.5089622,0.053184364,0.1659629,0.68892026,0.80369574,0.6128582,0.07648324,1.0480716,-0.42231578,-0.04898657,-0.018872792,-0.24520727,-0.07548297,-0.049987737,0.23724537,-0.45301706,0.24492235,-0.07704194,-0.04891536,-0.21435852,0.49964717,-0.54579586,-0.1569893,0.18224607,0.73231035,-0.36396244,-0.15371391,0.9837234,1.1676573,1.1133596,-0.088208325,1.6121787,0.21271853,-0.29970255,-0.14797081,-0.22573107,-0.5826835,0.24567851,0.5300205,0.2848686,0.61799836,0.0764611,-0.02306342,0.17395937,-0.4694009,-0.2734108,0.048420116,0.5319259,0.0076922397,-0.049589667,-0.44535848,-0.16295801,0.36836517,0.12319071,0.46300563,0.4183731,-0.43189862,0.48938343,0.061945867,0.8650308,-0.00393499,0.25494844,-0.06477396,0.3445889,0.284729,0.026992511,0.016359407,0.27421895,0.13221572,-0.05795494,-0.7666962,-0.13099092,-0.6165211,-0.31870574,-0.33519194,-0.37224245,-0.07477807,-0.13278623,-0.20350666,-0.31243593,-0.07674651,-0.5278211,0.28190523,-2.1978395,-0.43004036,-0.20905118,0.33968294,-0.3053138,-0.34535483,-0.14899291,-0.5441682,0.3892573,0.29294243,0.41705084,-0.6971543,0.34899056,0.37171564,-0.45708963,-0.16047917,-0.4824995,0.04344876,-0.24913374,0.52000445,-0.263961,-0.53138524,-0.33831462,0.2867347,0.7136352,0.3694152,0.010720369,0.28219917,0.56847763,-0.01723504,0.41127557,-0.014482052,0.5499897,-0.33919007,-0.08388924,0.39354116,-0.34213087,0.244171,-0.28266045,0.0056948336,0.50485986,-0.6943475,-0.72434443,-0.7074847,-0.3883344,1.2733091,-0.23510009,-0.6045056,0.040706705,0.24976026,-0.22124887,0.030556766,0.62053156,-0.20635672,0.04925817,-0.5879576,0.10220192,-0.054255355,0.13237752,-0.04635392,0.28007212,-0.6213758,0.7141789,-0.06563443,0.3817995,0.21676826,0.5481417,-0.29082575,-0.51011145,0.17136005,1.0952258,0.5384708,0.1779434,-0.19391018,-0.054018162,0.08529547,-0.4255007,0.05935173,0.89684147,0.6889647,0.1414754,0.061709426,0.43927348,-0.10755256,0.37895167,-0.09342542,-0.43960854,-0.43427172,-0.04167898,0.71969527,0.33623043,-0.28329974,0.26786125,-0.06350763,0.09896069,-0.16843486,-0.43326285,0.62340367,1.0250417,-0.19483319,-0.16180223,0.91905475,0.43919554,-0.6956061,0.66277045,-0.7560148,-0.4049792,0.6250301,-0.17473842,-0.48754814,-0.28346992,-0.41785786,0.012726066,-0.90602076,0.3052107,-0.28728756,-0.5186678,-0.46014768,-0.3443127,-3.1144896,0.19327205,-0.29741985,0.09749044,-0.23923558,-0.2093031,0.15005395,-0.7298741,-0.6128624,0.17085077,-0.11503004,0.7310621,-0.17699039,0.15756729,-0.16849594,-0.5304268,-0.22701901,0.28560466,0.1411822,0.1581335,0.03129871,-0.16470928,0.32687896,-0.23684758,-0.46371463,0.07782253,-0.44790372,-0.58651906,-0.3373749,-0.70258063,-0.17844516,0.77759796,-0.20677263,-0.13203612,-0.14047346,0.16632177,0.10688171,0.23821492,-0.059902553,0.36374864,0.36518097,-0.19009699,0.0033849748,-0.3245771,0.66004634,0.16972958,0.4813333,0.5837936,-0.31350133,0.30249482,0.44962415,0.67044634,0.2659565,0.89497906,0.09640505,-0.035898045,0.48845416,-0.34773868,-0.40141594,-0.95106584,-0.36924955,0.16170378,-0.52784705,-0.56096363,0.034431074,-0.39291623,-0.85275596,0.4655526,-0.08693166,0.68890876,-0.23367058,0.4097125,0.32588205,-0.18911277,0.1619627,-0.114478916,-0.20168924,-0.37524596,-0.28406703,-0.7142104,-0.5877136,0.10373158,0.8751259,-0.09823728,-0.27699244,0.13167857,-0.19034928,0.36439097,-0.012377099,0.35251236,0.037224825,0.4097108,0.1680956,-0.79423994,0.3754168,-0.12341339,0.08770882,-0.3842521,0.20082259,0.8753361,-0.691717,0.5091086,0.43339956,0.112257406,-0.16731788,-0.54700667,-0.28327072,0.3637084,-0.11591747,0.46352842,0.28415364,-0.8249662,0.43190372,-0.09723932,-0.26056206,-0.7495833,0.5098496,-0.08355778,0.088417456,-0.1188771,0.73783755,0.3766123,-0.055085335,-0.22197843,0.4411733,-0.56109995,0.36680192,0.09804778,0.020869488,0.62620544,-0.11671584,-0.581141,-0.737973,-0.07373867,-0.8463663,-0.4050012,0.15284444,0.05572872,-0.07079899,0.31582204,0.18760972,0.6116793,-0.45272014,0.24942929,0.049671184,-0.3567048,0.42484704,0.56654185,0.5029991,-0.59429103,0.6352996,0.01918963,0.124561734,0.0012751073,-0.01683265,0.54203945,0.26638424,0.30386865,0.1202815,-0.036900103,0.08151415,0.5333641,0.3210109,0.2987766,0.3841321,-0.26098946,0.57323766,-0.0017884509,0.2959835,-0.0837481,-0.611716,-0.18468508,0.21659492,-0.084515914,0.5683318,0.17578231,0.32056713,-0.19105352,-0.009313324,0.20101632,0.15247375,-0.3280567,-1.3699181,0.23072626,0.13082644,0.67887133,0.5202722,-0.033855364,-0.058510736,0.39607182,-0.20480208,-0.015153679,0.6089702,0.048649885,-0.34442845,0.6142747,-0.32898477,0.31414255,-0.26194584,0.11027174,-0.043533113,0.14317077,0.337152,1.055709,-0.1260377,0.016585412,-0.2224625,-0.040904976,0.19736153,-0.18805404,0.2549465,-0.43857872,-0.19049844,0.5844626,0.15074916,0.2712609,-0.19742586,-0.0736242,0.20235115,-0.16033904,0.37647584,-0.12994681,-0.12817521,-0.22485504,-0.39309743,-0.27783462,0.46106625,0.26279488,0.021579348,0.07055647,-0.20485415,0.14336425,-0.021366738,-0.23663673,0.0887734,-0.91465926,0.08520229,-0.15857431,-0.44033,0.29598236,-0.2763244,0.0059311446,0.1906841,0.07359702,-0.33787563,0.06472501,0.50912994,0.6177082,0.061828885,-0.2646396,-0.4305109,0.029861236,0.13109444,-0.5270546,0.39800665,-0.14957188,0.37768993,-0.55694646,0.6121564,-0.18735257,-0.18178257,-0.12903792,-0.09375313,-0.08363208,0.43101406,-0.11497993,0.09925208,0.2976031,-0.15539573,-0.17352362,-0.29479212,-0.4332062,0.11178967,-0.12403939,-0.025069498,-0.28112516,-0.20341371,-0.2030709,0.427699,0.32805663,-0.14839767,0.23270407,-0.011509012,-0.5773702,-0.05388514,0.11008964,0.45671985,0.060417697,-0.021875294,-0.20872305,-0.3225164,-0.27264902,0.44929808,-0.07845745,-0.09733098,-0.011204795,-0.43977526,0.67063105,0.34550288,1.3093301,-0.06455267,-0.3798764,-0.09096811,0.77403474,-0.15318848,-0.015846688,-0.4168546,1.4050533,0.5928712,-0.20876174,-0.22627497,-0.739431,-0.11466047,0.090339996,-0.46975943,-0.09647136,-0.28238076,-0.7025597,-0.37996924,0.28501996,0.29668304,-0.04764664,-0.052023318,0.06372247,0.25699776,0.23858705,0.67436886,-0.6839243,-0.2667081,0.41046456,0.1436641,0.13746718,0.44645873,-0.23407139,0.22307526,-1.0044408,0.314698,-0.27618992,0.086267605,-0.068277955,-0.39204293,0.34267923,0.27680916,0.3634827,-0.2235824,-0.6663079,-0.2444945,0.45249107,0.10492199,0.21701199,0.9066996,-0.24528736,-0.056075823,-0.088099025,0.48849848,1.6023113,0.3373122,0.2611675,0.041257054,-0.55155647,-0.8809237,0.19621207,-0.56327856,0.096509,-0.29393703,-0.39376494,-0.34183067,0.12915808,-0.16953392,-0.07528329,0.100691535,-0.498666,-0.4834933,0.26727605,-0.39636162,-0.08861274,-0.18333559,0.31626555,0.95867354,-0.32879567,-0.29304412,-0.045276836,0.5774105,-0.28263915,-0.9632609,-0.23571391,-0.20880713,0.5043504,0.053111706,-0.29580155,-0.07991901,0.26265976,-0.49559662,0.18612589,0.36822203,-0.32416928,-0.131962,-0.32427552,-0.054045394,0.8517744,0.1749488,0.30790257,-0.43180558,-0.60493624,-0.97333425,-0.46711075,-0.16369466,0.0035651543,-0.047403213,-0.71310896,-0.113300316,-0.40023363,0.054482125,0.096019395,-0.58178496,0.12650236,0.18226805,0.7749086,-0.18362702,-1.078827,0.073877856,0.27197236,0.072221026,-0.56549364,0.45709077,-0.12888782,0.6769825,0.28298077,-0.10444451,-0.12482956,-0.84756905,0.36159077,-0.41217926,-0.115495555,-0.60457134,0.17347641,54 -921,0.46532652,-0.2612812,-0.5616434,-0.2789171,-0.23261906,0.037294414,-0.22700123,0.20462751,0.3424595,-0.3861164,-0.27243087,-0.14855325,0.21924382,0.13793467,-0.12053799,-0.7436494,0.020918516,0.17215274,-0.79264885,0.36135724,-0.65563637,0.33418375,0.21705046,0.25093117,-0.030358959,0.37688872,0.2832398,-0.27315736,0.0111166565,0.016537601,-0.028111609,0.22138904,-0.71299005,0.06548814,-0.2744907,-0.39177704,0.032319754,-0.6135354,-0.30550072,-0.7585306,0.32711688,-1.1036285,0.5758126,0.15765776,0.055321597,-0.07678315,0.22716548,0.18202405,-0.40621722,0.20564723,0.19974166,-0.23428293,-0.13463913,-0.33935297,-0.089224175,-0.537092,-0.45230874,-0.08694743,-0.7491047,-0.3617587,-0.27398348,0.1353359,-0.32190284,-0.11090734,-0.03294493,0.30642754,-0.4205682,0.023955507,0.40064487,-0.2671378,0.41014624,-0.48755524,-0.009028359,-0.13793577,0.5771997,-0.16318399,-0.48792088,0.32411626,0.46057165,0.42919683,0.22038986,-0.22130409,-0.105806135,-0.06718382,0.2823951,0.505961,-0.12065969,-0.48903492,-0.29176834,-0.04445453,0.21759821,0.39479294,0.12625848,-0.34158966,0.08781617,-0.015082463,-0.31355307,0.6097016,0.66329193,-0.16043134,-0.33055916,0.19748689,0.34015292,0.3422011,-0.17540416,0.21384653,0.03812969,-0.63846934,-0.29276013,0.28942797,-0.07049294,0.66060406,-0.24810523,0.26387832,0.9112997,-0.3245584,0.18776374,0.059499387,-0.012382757,-0.23361334,-0.15749876,0.09193988,0.1265499,-0.7308807,-0.01853303,-0.40318662,0.6862705,0.29008773,-0.603839,0.42137402,-0.64385486,0.2110338,-0.20410009,0.59104705,0.83854336,0.31861764,0.32470343,0.73063827,-0.42081812,0.13628593,-0.06602585,-0.60777134,0.20249447,-0.20068437,0.019829296,-0.32669356,-0.07814714,0.0062856455,0.29352567,0.066520005,0.49248973,-0.54764616,-0.11230226,0.16799286,0.85829335,-0.35350272,-0.12300696,0.645487,1.0672238,0.7215742,0.25355792,1.4027294,0.2502715,-0.1851231,0.20433135,-0.025737183,-0.9115492,0.2692603,0.29992852,-0.25791568,0.33884907,-0.042503264,-0.14870419,0.09751672,-0.4612751,-0.031128563,-0.05463976,0.31597078,0.08360257,-0.123002656,-0.19387184,0.00035266037,-0.09838323,0.0023311106,0.08804596,0.12514967,-0.18807974,0.16756004,-0.027882023,1.0870446,-0.049442507,-0.03011461,-0.008305907,0.56815237,0.3431945,0.058966074,-0.064570166,0.5807795,0.46872061,0.16889422,-0.71461725,0.19792838,-0.18051195,-0.39585355,-0.09384329,-0.46171921,-0.122564696,0.045242038,-0.48376778,0.027108707,-0.000923872,-0.39083737,0.43521345,-2.6867263,-0.345475,-0.04595078,0.5136783,-0.25902075,-0.053569492,-0.3888529,-0.51434857,0.23625742,0.28626853,0.550776,-0.71125346,0.5081104,0.52122045,-0.47862294,-0.20514302,-0.7714741,-0.04316981,-0.12067164,0.31330964,0.061589673,-0.11051259,0.015283349,0.095141344,0.7289228,0.16739121,0.10199132,0.33753517,0.6116785,0.15250678,0.63889074,-0.18503295,0.5179882,-0.45709422,-0.18293294,0.27481976,-0.34974498,0.2133214,-0.14308923,0.038335934,0.58921695,-0.4856782,-1.0556171,-0.5995474,-0.41274574,0.9869116,-0.46333846,-0.33778393,0.21196173,-0.22676812,-0.10777685,0.05298336,0.8828022,-0.010259463,0.34452394,-0.7441955,-0.017461706,-0.022793304,-0.0413906,0.10302754,0.08571868,-0.27273858,0.68587166,0.04520532,0.5909149,-0.041116558,0.25450185,-0.32773122,-0.5694447,0.2606517,0.9362622,0.18498248,0.1018548,-0.11723442,-0.24643922,-0.34063497,-0.09400051,0.039228797,0.7413035,0.7420933,-0.1366127,0.3692125,0.4360915,0.15224132,0.071685515,-0.23534237,-0.187369,-0.1039099,-0.060870703,0.42109412,0.6904344,-0.20374455,0.3567419,-0.14518562,0.38691255,-0.23631282,-0.47305843,0.77483326,0.84034383,-0.10658519,0.07832564,0.35992935,0.51830983,-0.6282678,0.49587324,-0.64181846,-0.4385315,0.7692631,-0.079215296,-0.5178829,0.31493416,-0.3058735,0.1348057,-0.7749151,0.40183544,-0.20780586,-0.32953566,-0.2222033,-0.22925945,-3.9258993,0.18441604,-0.16018362,-0.16557914,-0.45951942,-0.0020807276,0.36006248,-0.5031303,-0.5316009,0.20148927,0.072363935,0.70894957,-0.22439003,0.19276558,-0.34833145,-0.06257996,-0.14639562,0.20333296,0.0547917,0.287692,-0.2299239,-0.3538885,-0.0052055987,0.09304831,-0.417963,0.19589639,-0.5889179,-0.51394844,0.028481988,-0.61460865,-0.24937001,0.57781166,-0.49485627,-0.17493536,-0.23164462,0.15388784,-0.29047486,0.46958846,0.16678025,0.17877735,-0.07885695,-0.068655126,0.06897233,-0.20207693,0.7258183,0.011591565,0.2970702,0.14869842,-0.09554229,0.082693435,0.50224227,0.43347368,-0.1437336,1.0366553,0.18371157,0.019759828,0.32053527,-0.2625478,-0.28168222,-0.62736976,-0.2135517,-0.21348737,-0.49710828,-0.59677327,0.07056963,-0.32587883,-0.8730957,0.5832856,0.07071679,0.3289208,0.0008228015,0.44397604,0.32993677,-0.07033194,0.06993239,-0.016518867,-0.20769934,-0.5254234,-0.12492042,-0.6488956,-0.4510117,0.19234748,0.50076586,-0.35757148,-0.0023651964,-0.035581663,-0.09685791,-0.0448904,0.08618183,0.0051292535,0.23475887,0.4534356,-0.07257431,-0.60811234,0.60421306,-0.15794852,-0.2761773,-0.5070495,0.0052280156,0.6649998,-0.9049158,0.687877,0.5193678,-0.02093793,0.017261397,-0.40940025,-0.36479548,-0.17949133,-0.15823025,0.34397566,0.01990845,-1.0140508,0.41271722,0.36578476,-0.51112896,-0.69803566,0.6349771,-0.15512432,-0.09573608,-0.08302203,0.32689396,0.1281923,-0.022993304,-0.21578236,0.2630507,-0.5291145,0.36776933,-0.04312712,-0.08046594,0.6571411,0.10522454,-0.4204079,-0.6903066,-0.012070867,-0.6268466,-0.13181463,0.42686558,-0.059438575,-0.07406884,0.35050336,0.053536512,0.37598085,-0.3177784,0.09915648,0.14482774,-0.34853786,0.14547625,0.6038097,0.4968948,-0.3982918,0.81240934,0.18199044,-0.19668397,0.38549206,0.22677976,0.29776624,0.18477851,0.53074604,0.08194206,-0.25128382,0.3542039,1.0200588,0.15364465,0.5950967,0.17882694,0.003503534,0.52446383,0.17159247,0.2052589,-0.0137142,-0.5193457,-0.12798432,-0.10290399,0.32118607,0.4052502,0.21336421,0.33838296,0.107933335,-0.1992558,-0.036098823,0.46698257,0.10855841,-1.1668673,0.2938824,0.42536813,0.73279935,0.42631677,-0.052442785,-0.027041912,0.39917305,-0.12809847,0.2143252,0.30609325,-0.20200366,-0.61628765,0.64188474,-0.4852495,0.3776088,-0.3840228,-0.014163952,0.078365915,0.24851602,0.27882585,0.9860798,-0.01550743,0.016161807,0.06314676,-0.23799664,0.17744263,-0.5366694,0.006428805,-0.3630712,-0.26081505,0.7637751,0.50629777,0.2374199,-0.23603879,0.0036119642,-0.0630611,-0.16429669,0.27200118,-0.033965755,-0.021043973,0.011593413,-0.8906346,-0.23655723,0.6765968,0.22280866,0.19455758,-0.21858115,-0.2151096,0.26300332,-0.18572842,0.12626165,-0.13794822,-0.7414421,-0.121889666,-0.3619648,-0.7376659,0.38797724,-0.1960163,0.19825631,0.3575538,-0.10917206,-0.22976846,0.4380414,0.073849395,0.71807486,-0.09880542,-0.33624285,-0.6551044,0.13070494,0.39768174,-0.42967522,-0.041216597,-0.47767326,-0.025053501,-0.3980086,0.72925955,-0.07693303,-0.433819,0.21181731,-0.19208024,-0.1252762,0.6402186,-0.062426616,-0.08005986,0.31332576,-0.18906479,-0.60086626,-0.0032104661,-0.41408366,0.25484324,0.32911098,0.0697156,-0.22655755,-0.26672724,0.0054630744,0.23884286,0.035560492,0.46356323,0.3842699,0.2804818,-0.07916081,0.020231497,0.4095213,0.69430876,0.12053574,-0.012507569,-0.28549263,-0.5026386,-0.33876303,-0.02522422,-0.10281904,0.15511698,0.19344582,-0.29872096,0.77992636,-0.050921116,0.9972471,0.17275073,-0.29229486,0.16693288,0.46695727,-0.06458004,-0.1699238,-0.48648036,0.89039344,0.55979115,-0.22197327,-0.04422047,-0.40782443,-0.1945962,0.22247349,-0.3404837,-0.15069912,-0.03990828,-0.73998904,-0.37580153,0.2223453,0.3099346,0.103938125,-0.15114556,0.004348928,0.046301637,0.07446397,0.2020287,-0.97787005,-0.3336043,0.10801442,0.39434594,-0.08490905,0.18615441,-0.19586878,0.5227647,-0.61123407,0.043749515,-0.59595245,0.10704401,-0.2892505,-0.47153023,0.046953883,-0.03538351,0.4987307,-0.10635571,-0.33979467,-0.21683016,0.31930056,0.10086263,0.44479808,0.54469186,-0.1893611,-0.08901936,-0.032263793,0.7568521,1.3167943,-0.28706425,-0.01502572,0.45696518,-0.5694549,-0.6763546,0.3237801,-0.54037017,0.15816604,-0.10238261,-0.49004218,-0.44931296,0.2692992,-0.042016745,0.17623772,0.14053513,-0.7552294,-0.100605816,0.23233718,-0.20959596,-0.4046428,-0.15540136,0.46110526,0.8134649,-0.3869936,0.020657105,0.1199025,0.22683428,-0.2904129,-0.51517504,-0.1277981,-0.32370877,0.37321833,0.07308638,-0.17041922,0.06257141,-0.014704057,-0.5725406,0.36067933,-0.019323431,-0.3235286,0.1415205,-0.102558166,-0.11840575,0.9491368,-0.30220604,-0.31804216,-0.71981186,-0.5308333,-0.91783065,-0.2718715,0.09621766,0.28974393,0.1306352,-0.28442624,0.09104955,0.09305375,-0.10249775,-0.05892615,-0.5790379,0.50301784,0.06987527,0.63667583,-0.3217872,-1.0642287,0.15071104,0.30041698,-0.3127145,-0.98390144,0.5556963,-0.21851072,0.7315721,0.04202871,-0.120271355,0.2243507,-0.357487,-0.07443257,-0.48710632,-0.0010608014,-0.7943933,0.053640887,74 -922,0.46140423,-0.08397564,-0.691663,-0.11277335,-0.5415775,-0.14461981,-0.21819182,0.53555006,0.2940511,-0.1547824,-0.10992663,-0.12389887,-0.06494926,0.48227975,-0.16491467,-0.96625227,0.04583427,0.30353022,-0.5936722,0.46308717,-0.45962617,0.32154214,0.14206195,0.63814694,-0.0087946765,0.034814175,0.22019497,0.29318187,0.06806294,-0.41765884,-0.09600819,0.2324378,-0.8995032,0.14458342,-0.18009819,-0.45494527,0.027955186,-0.47564843,-0.09994802,-0.9123563,0.33057725,-0.5880608,0.7169571,0.19133954,-0.34598467,-0.18677449,0.35273206,0.26030508,-0.2983072,0.008182541,0.3076891,-0.3859784,0.0021591403,-0.18507133,-0.35204136,-0.22015281,-0.79522645,-0.012660601,-0.49079037,-0.101816006,-0.29659137,0.27067378,-0.3396943,-0.012304821,-0.20696382,0.8081182,-0.36996773,0.030747198,0.20005661,-0.2328763,0.23303486,-0.55047536,-0.14522041,-0.13844174,0.059760597,0.031006726,-0.24145843,0.26437607,0.09774268,0.45954296,0.042211674,-0.33198297,-0.4971433,0.0683541,-0.057357874,0.5459068,-0.3569145,-0.2591476,-0.14025363,0.04661184,0.24823557,0.26912212,0.18932956,-0.21175641,0.072682984,-0.18143083,-0.10631467,0.45408443,0.43719128,-0.3693252,-0.12368629,0.09636205,0.29211742,0.031904187,-0.063198,0.16166086,0.03757809,-0.5919457,-0.28688592,-0.01964866,-0.14495525,0.5263907,-0.1441555,0.14892341,0.6887481,-0.14252158,-0.29818246,0.017678587,0.1179614,0.32753184,-0.32964915,-0.37880662,0.42734203,-0.41549066,0.09885531,-0.26365086,0.7091582,-0.0103494255,-0.86365855,0.20079617,-0.6332347,0.15677226,0.13967277,0.5223632,0.6760125,0.5208986,0.517142,0.9116905,-0.4162664,0.17702147,0.1783157,-0.049533747,0.09099798,0.009363088,0.22091703,-0.42170122,-0.0944535,-0.31696844,-0.16919911,0.25627562,0.44287965,-0.54392326,-0.14366402,0.22190356,0.8579729,-0.35389015,-0.10421648,0.86756325,1.2785783,1.3212823,-0.037068676,1.2995358,0.077160195,-0.07586513,-0.20996805,-0.05842864,-0.59599245,0.13954216,0.2220696,-0.1633852,0.4104499,0.068374746,0.027445467,0.60173404,-0.4918597,-0.20402378,0.08611409,0.335518,-0.074419506,-0.23677851,-0.637414,-0.41360572,0.16586097,0.121567324,-0.15227698,0.4071396,-0.20700537,0.54605275,-0.04067577,1.3876948,0.14061002,0.21583241,0.014500964,0.30894172,0.30834377,-0.11364398,-0.25166625,0.1289059,0.07513132,0.2330587,-0.40069115,-0.059546318,-0.32789195,-0.23088928,-0.18911186,-0.26278982,-0.02411306,-0.26537633,-0.43810672,-0.33146372,-0.042689964,-0.21825942,0.3175826,-2.248375,-0.04359332,0.09210684,0.30229107,-0.054231133,-0.4264437,-0.15578003,-0.45828447,0.5541413,0.3634098,0.3809902,-0.635775,0.43245223,0.3102281,-0.4377929,-0.11859166,-0.65150285,-0.15473728,-0.025146572,0.26595876,0.009404689,-0.25270128,-0.27984408,0.40599057,0.7449919,0.08840715,-0.04445794,0.24479146,0.47956392,-0.3850216,0.7436397,0.07442208,0.49209586,-0.24713121,-0.25262967,0.39811325,-0.6364429,0.15356968,0.0021544883,0.081624,0.39195508,-0.56200665,-1.1896305,-0.5979695,-0.038841102,1.1323044,-0.23804146,-0.35445073,0.29883745,-0.26187134,-0.3447007,0.11288602,0.63474137,-0.24733764,0.110503286,-0.6925307,-0.11650135,-0.10695076,0.35035855,-0.000839633,-0.056687318,-0.59479725,0.8139398,-0.22739358,0.2728144,0.53180027,0.18371485,-0.44043055,-0.5073065,0.04638802,1.0999984,0.5559477,0.064720176,-0.22461458,-0.048053686,-0.20121104,-0.015156364,-0.09996044,0.7438385,0.7815283,-0.20883287,0.11241576,0.32982695,-0.13087808,-0.03114794,-0.12702559,-0.46880445,-0.11596859,0.16064318,0.72223604,0.80011994,-0.096242815,0.3882704,-0.008559861,0.46674183,-0.06839711,-0.5607859,0.31421417,1.1452248,-0.08127777,-0.19894642,0.8121494,0.29933488,-0.32607457,0.47208175,-0.4106239,-0.34031293,0.4816227,-0.014315418,-0.39005688,0.14957945,-0.35828188,-0.12258697,-0.9308054,0.39382982,-0.25137922,-0.6037861,-0.547638,-0.28196633,-3.4586928,0.3290246,-0.28225428,0.0940713,-0.1594825,-0.19927599,0.10244088,-0.7284331,-0.7277884,-0.0899786,0.14228036,0.5421536,-0.2239456,-0.008904302,-0.12081575,-0.65226895,-0.2538439,0.44219935,0.33731622,0.19362618,0.18134524,-0.44292343,-0.10162295,-0.35431907,-0.6579994,-0.1532685,-0.67050934,-0.4542506,-0.16744934,-0.7238485,-0.30510274,0.89161664,-0.29387668,-0.085178524,-0.32655853,0.016577026,0.010892673,0.2395916,0.1665588,0.27712172,-0.0049720462,-0.024916975,-0.07345228,-0.15636307,0.04869474,0.10484728,0.47416928,0.38144162,-0.08043077,0.14759292,0.54965657,0.91889805,-0.19723922,1.027343,0.19315724,-0.081057586,0.2754672,-0.38152036,-0.4942392,-0.7647079,-0.35607958,-0.13307738,-0.52642244,-0.10039724,-0.003198537,-0.5038733,-0.78791964,0.67331296,-0.10918407,0.079317875,-0.020010991,0.51002336,0.27792957,-0.3312392,0.0016368493,-0.16889407,-0.13916668,-0.4375963,-0.273204,-0.59814936,-0.62729025,-0.13802567,1.3624848,-0.27030402,-0.03670279,0.1816011,-0.1927893,0.21404758,0.11393211,0.13706131,0.1332205,0.44694564,0.14694834,-0.65456605,0.29814646,-0.20821905,-0.114041805,-0.56626785,0.21350765,0.67775995,-0.6249583,0.87568396,0.27651384,0.19043571,0.14048393,-0.73079395,-0.20396987,0.21582824,-0.106084175,0.60818726,0.4047987,-0.7203704,0.51617986,0.13113855,-0.368803,-0.6745092,0.31835327,-0.080535315,-0.62642574,-0.094945736,0.42360595,0.054537773,0.003313834,-0.16176766,0.3334767,-0.3094507,0.30964586,0.2990668,-0.08294713,0.32804644,-0.24580258,-0.28753778,-0.7587582,0.06465573,-0.4781703,-0.5735167,0.03795954,0.102481075,-0.14330927,0.17800649,0.13857363,0.42846975,-0.41691133,0.21803637,-0.31706086,-0.25959012,0.487856,0.5777022,0.3909465,-0.5389024,0.57512087,0.063589685,-0.08648468,-0.24648142,0.065722436,0.50299174,-0.14437965,0.2532746,-0.11119736,-0.13618153,0.195195,0.44557726,0.05788165,0.31985244,0.14756547,-0.00052016973,0.21201953,0.16353363,0.047052503,-0.0440421,-0.46894178,0.22333501,-0.18069445,-0.0053218496,0.59016603,0.075468354,0.2181776,-0.085293055,-0.16699265,0.2341273,0.33440402,-0.16457482,-1.3913454,0.41518462,-0.008751672,0.7564274,0.64053655,0.2028192,-0.13285774,0.58487135,-0.409265,-0.13795543,0.48726502,0.2469461,-0.2657622,0.78074265,-0.5866813,0.45090115,-0.16485734,0.041692514,0.08707576,0.2033052,0.4810797,0.8377828,-0.11072655,0.060836073,-0.034052763,-0.13776039,-0.18884167,-0.41250277,0.040526215,-0.42607498,-0.34282213,0.73683524,0.3028634,0.29943705,-0.36176434,-0.073564455,0.11148617,-0.24050908,0.25748366,-0.20981096,-0.120684594,-0.058521662,-0.5189264,-0.028487975,0.5968984,-0.11068621,0.025092868,0.10358403,-0.17839566,0.27723023,0.061983045,-0.102360055,-0.021904672,-0.78552586,-0.11954883,-0.64559823,-0.3390879,0.3805184,-0.44409677,0.12752376,0.2505925,0.05329377,-0.27605617,0.30404213,0.25182793,0.6909792,0.05464444,0.062002376,0.014394782,0.5104765,0.071812704,-0.28683534,0.037969843,-0.3768171,0.26301193,-0.3986971,0.55470985,-0.056407962,-0.41083518,-0.17974462,0.015417874,-0.04759891,0.45926502,-0.31662586,-0.033350218,0.08490944,-0.06778345,-0.034966577,-0.32492074,-0.31575242,0.30707562,-0.15127362,-0.11666224,0.017485064,0.015928464,-0.15547124,0.47318137,0.046015106,0.23763691,0.3261447,0.017558716,-0.5785936,0.11512082,-0.24060577,0.49465334,-0.014354589,-0.19154243,-0.4047686,-0.26680863,-0.34588358,0.28421345,-0.21926723,0.16601384,0.054396186,-0.35304335,1.1363009,0.43662557,1.4042617,-0.0960527,-0.43020973,0.10792006,0.5981254,-0.050620124,0.033466157,-0.24732111,1.1543988,0.55528206,-0.40733165,-0.18134183,-0.41911933,-0.16039604,0.16017443,-0.3565718,-0.31762666,-0.17446391,-0.49822378,-0.16232306,0.33088362,0.27886084,0.17382012,-0.21994954,0.07763504,0.288019,0.14327937,0.33396694,-0.45396435,0.05007031,0.37894675,0.2117741,-0.07336697,0.11464921,-0.3312947,0.37733555,-0.71919477,0.31583968,-0.5138176,0.18479075,-0.14282155,-0.4868302,0.22368093,0.047009967,0.25008973,-0.3649892,-0.11718106,-0.15512826,0.5306477,0.23151225,0.14090584,0.80349374,-0.34327853,-0.03495724,-0.009031367,0.47146493,1.3127769,-0.26551604,-0.20696887,0.225911,-0.23938408,-0.6254588,0.17714487,-0.3617609,-0.22059064,-0.33339694,-0.42014924,-0.6491318,0.104812816,0.15944232,0.1387652,-0.063215524,-0.41572294,-0.14738518,0.5154819,-0.3013174,-0.16467948,-0.35068762,0.27150118,0.6467473,-0.11353597,-0.6088333,0.06093147,0.19063225,-0.07833648,-0.69682974,-0.014182177,-0.28773025,0.37609977,0.08003108,-0.38907745,-0.027805718,0.3859318,-0.49069282,-0.029685117,0.36599123,-0.1926539,0.17409015,-0.30363035,-0.08904343,1.0727376,-0.080218025,0.19057097,-0.3840822,-0.66862625,-1.0051365,-0.2783439,0.35772333,0.10250806,-0.06539306,-0.8014731,-0.15884948,-0.32749137,-0.2251368,0.06363373,-0.26612863,0.24662638,0.13707279,0.42756507,-0.28024843,-0.82384866,0.15448704,0.22445332,-0.2151764,-0.39918336,0.51834416,0.00022738088,0.7692999,0.0982338,0.0878324,0.2282938,-0.6571537,0.45638016,-0.18750057,-0.11299346,-0.5023596,-0.082639284,92 -923,0.5233723,-0.3948306,-0.5854034,-0.04004245,-0.3123252,0.13910992,-0.25980327,0.38369256,0.39585295,-0.25581485,0.011433319,0.24397126,-0.18332376,0.28084648,-0.12530357,-0.79652005,-0.013630271,0.16811404,-0.49243337,0.38592947,-0.43686754,0.26338682,-0.096555166,0.5059095,0.120367505,0.199712,-0.08535706,0.44638136,-0.09226373,-0.0024877624,0.066993244,0.03970368,-0.6427731,0.46313703,-0.13796581,-0.4276396,-0.36237192,-0.3976289,-0.2513709,-0.72298086,0.50334144,-0.761492,0.7680687,0.00298988,-0.564162,-0.5920824,0.10070169,0.19625987,-0.0998712,0.052364107,0.3107715,-0.31792918,-0.16724335,-0.36603785,-0.31604984,-0.69478935,-0.61935747,-0.06004338,-0.4969721,-0.16326372,0.24554096,0.5181375,-0.31747678,-0.06343207,-0.2503645,0.8656807,-0.35503948,0.08970652,0.097890265,-0.37384892,-0.1779746,-0.86064047,-0.29775512,-0.021476854,-0.009220156,0.20713373,-0.41078702,0.11324406,0.3061546,0.56575644,0.18773359,-0.46614942,-0.3700943,0.048266318,-0.022248589,0.46348146,-0.24490725,-0.110894434,-0.36297113,-0.13678855,0.55067575,0.029703587,0.22005934,-0.5738142,0.38238695,-0.03506193,-0.015966497,0.62861294,0.5837403,-0.4269678,0.08870042,0.18354988,0.42192984,0.070486195,-0.42565706,0.28649566,0.048529927,-0.39909944,-0.08414695,0.18079571,0.020265432,0.55120873,-0.20586644,0.22286485,0.64207166,-0.03753021,-0.19011784,0.15836763,0.1440857,0.12226577,-0.58416885,-0.38185528,0.2668265,-0.2647136,-0.108693294,-0.21052037,0.6881133,0.049021646,-0.8073328,0.3761014,-0.5291322,-0.04306225,0.056853544,0.43610018,0.98306173,0.7053786,-0.035347067,1.0701797,-0.37831822,0.05941849,0.34694883,-0.005136983,0.023262555,-0.36871812,0.219423,-0.5431019,0.084359415,-0.21749887,-0.13435073,0.03386003,0.80396104,-0.5117703,-0.28046182,0.06478744,0.7649475,-0.28588998,-0.005915624,0.9433868,1.3298955,1.2440464,0.19167255,1.2575661,0.3776929,-0.23708391,-0.21980776,-0.1305685,-0.62091833,0.16178967,0.14811347,0.01974652,0.48301104,0.08249872,-0.05160451,0.8797939,-0.39993975,0.06621862,0.06719255,0.15302762,0.2545155,-0.11100676,-0.69731516,-0.08419654,0.30162436,0.06941903,0.068904825,0.3008535,-0.49484798,0.4870856,0.019990217,0.9471416,-0.25385895,-0.018598396,0.18427008,0.34322184,0.26726726,-0.34162256,0.20445913,-0.050102662,0.3325226,-0.11505919,-0.40542552,0.038840637,-0.38556382,-0.53996426,-0.3700323,-0.09696622,-0.22335912,-0.32829806,-0.51412266,-0.52442205,0.075534694,-0.34170565,0.16238421,-2.1734102,-0.35469222,-0.21651816,0.4389961,0.01028913,-0.34018424,-0.09582236,-0.4076807,0.33397216,0.31752023,0.38750598,-0.6886213,0.51233506,0.4980016,-0.5821935,0.042499736,-0.6914196,-0.10207157,-0.19333722,0.47893956,0.03127101,-0.32152212,-0.15028095,0.13265136,0.88862056,-0.1277412,-0.1295645,0.2350292,0.4092289,-0.43767336,0.34734964,0.08844401,0.74904287,-0.38571566,-0.3941718,0.38671568,-0.8318198,-0.06866495,0.12494256,0.12260914,0.61889154,-0.49691942,-0.9168186,-0.7228798,0.00715531,1.1225601,-0.13017534,-0.59800106,0.15015927,-0.44424188,-0.4161007,0.08533844,0.7497191,-0.2210173,0.07309697,-0.67689043,-0.18813133,-0.087253414,0.23337965,-0.11340863,0.012324902,-0.5020619,0.80626017,-0.243652,0.5681994,0.49550125,0.21195069,-0.30607548,-0.507641,0.038155977,0.98780245,0.567826,0.22312962,-0.31529608,0.20134874,0.09587765,-0.16918968,0.044763114,0.81769663,0.47601974,0.014183963,0.0215767,0.3882027,-0.33742645,0.14269231,-0.09180794,-0.4304415,-0.2784096,0.36333206,0.6375613,0.7587164,-0.046477295,0.37343833,-0.15272255,0.2560852,-0.34194902,-0.46684682,0.53625864,0.93383443,-0.19341736,-0.6474546,0.6568422,0.30170262,-0.57160634,0.2998173,-0.56823355,-0.17863144,0.31606323,-0.20601302,-0.45350018,0.028299587,-0.5523587,0.13378443,-0.9195986,0.38816947,-0.17859755,-0.8620323,-0.833532,-0.5391967,-3.1785598,0.30681822,-0.43549612,-0.02702058,-0.24797425,-0.300786,0.28867376,-0.71268517,-0.6892299,-0.024412746,0.18938832,0.42173588,-0.02600406,0.06501402,-0.23884177,-0.39210176,-0.10532065,0.50424045,0.077908464,0.21217665,0.025571574,-0.32943746,0.15344611,-0.22004943,-0.5906715,-0.10768762,-0.96247095,-0.5813685,0.02215137,-0.72737783,-0.36505988,0.8228459,-0.48405704,-0.14526936,-0.51304823,0.14261971,-0.2379803,0.39012,-0.015303899,0.37845942,0.26882294,-0.1080149,-0.019351082,-0.25719243,-0.0011212013,-0.115794376,0.37114343,0.46134168,-0.19728635,0.22162522,0.5632758,0.9418633,0.21325792,0.952627,0.45475578,-0.14170533,0.3521282,-0.23012143,-0.3269797,-0.7954202,-0.23303626,0.16721806,-0.61534125,-0.4206703,0.12802766,-0.48263156,-0.7859218,0.42106506,0.0504395,0.09901385,0.18782654,0.4193186,0.4470461,0.021494204,-0.072776124,-0.084785685,-0.2438182,-0.291519,-0.5398144,-0.6449783,-0.76176435,-0.01848392,1.5840443,0.10746002,0.07471743,0.34768346,-0.4572891,0.012032514,0.5187444,0.2756586,-0.2212519,0.5098639,-0.028427027,-0.5893949,-0.060951483,-0.29722482,0.02094867,-0.42035455,0.03769441,0.93097043,-0.8160532,0.9183092,0.43903396,0.300168,-0.4108615,-0.71309155,-0.26132318,0.40177834,-0.1034807,0.7060183,0.53357816,-0.33424988,0.47081754,0.14112908,-0.057833754,-0.6518663,0.27658892,-0.12026019,-0.19011974,-0.25642163,0.5641388,-0.14128841,-0.3861268,0.10517479,0.49638376,-0.34888786,0.3292882,-0.062311016,-0.15983368,0.021127403,-0.115015216,-0.2530678,-0.73691463,0.082288496,-0.66147906,-0.44531587,0.05377078,-0.078249216,0.45975313,0.21758085,0.26807997,0.54908174,-0.19874239,0.21720429,-0.31373033,-0.4192376,0.3328586,0.5002878,0.30952635,-0.3715252,0.43820718,0.20543844,0.19134878,-0.16649291,0.18132561,0.55710053,0.253986,0.6380571,-0.26928023,-0.0560079,0.0731825,0.78799766,0.1666996,0.6093535,0.10054696,-0.2543753,0.0862987,0.103860505,0.20180587,-0.3906973,-0.3767208,0.05236644,-0.0685827,0.29126275,0.38529718,0.12339485,0.5348395,-0.31907848,-0.23214732,0.33204368,0.2812116,-0.14344889,-1.4154304,0.3366325,0.3523862,0.8318603,0.38587448,0.27722606,-0.1918344,0.50982195,-0.11983624,-0.020604594,0.67927754,0.004998112,-0.10870562,0.6230058,-0.6780467,0.59131336,-0.35932282,-0.0019358884,-0.03662938,0.18655863,0.27966043,0.63080215,-0.09896827,-0.12853071,-0.028791327,-0.31377515,-0.26720056,-0.569319,0.38216627,-0.53173757,-0.455414,0.9683232,0.51798254,0.3592066,-0.45447206,-0.034051552,0.17270082,-0.11913243,0.19663931,-0.04615258,-0.24124731,-0.09210339,-0.71743464,-0.2163685,0.510371,-0.16921212,-0.063801594,0.04156902,-0.2917639,0.22706838,-0.025619118,-0.17464353,0.09899671,-0.5512965,0.0556247,-0.37168667,-0.7177061,0.31892884,-0.16268644,-0.070362896,0.29426265,0.13994375,-0.38979533,0.26663366,0.16440453,0.83989733,0.13933292,-0.008988738,-0.15796901,0.061412524,0.10449522,-0.29758483,0.102362566,-0.3235815,0.61900187,-0.4547105,0.48720923,-0.27033582,-0.33996066,0.15895368,-0.06356381,0.059198186,0.42232946,-0.49292418,-0.23450522,0.10889301,0.09035086,-0.20670773,-0.31027314,-0.48580682,0.32993433,0.014411991,-0.008567861,-0.024939727,-0.29183415,-0.24143906,0.406645,0.21151467,0.31827462,0.7847305,0.06230873,-0.45494863,-0.016029608,-0.032788575,0.5788222,0.13573454,-0.1452973,-0.39501008,-0.5738076,-0.32415754,0.46845543,-0.09757198,0.2575104,0.053159032,-0.5753214,0.9581677,0.11782002,1.4733748,0.024812855,-0.5576203,-0.015045036,0.51602656,-0.15423451,0.25752237,-0.3727617,1.1235769,0.70385593,-0.1339656,-0.12697653,-0.5713798,-0.10812119,0.27062696,-0.34711924,-0.19570847,-0.18426767,-0.995616,0.017905176,0.1514149,0.23774476,-0.008113542,0.036553655,0.23890181,0.27700898,0.094296195,0.22310781,-0.6659839,0.2867191,0.29712963,0.53152144,-0.14930482,0.25846952,-0.49689934,0.12478396,-0.86500686,0.40750024,-0.6930774,0.060310606,0.036125608,-0.2614048,0.30245402,0.072541565,0.21949902,-0.40809715,-0.1491242,-0.22066651,0.74049515,-0.064175814,0.2316524,0.74907374,-0.26951304,0.024850857,0.21956526,0.5635222,1.5184323,-0.0852589,0.006516543,-0.075782366,-0.29623273,-0.78892416,0.16083223,-0.2994289,-0.023285292,-0.05137007,-0.2531285,-0.62820566,0.2648679,0.08999673,0.036864854,0.031016149,-0.36702347,-0.21289878,0.46865273,-0.57965964,-0.13141736,-0.18430644,0.08453714,0.57202303,-0.16803488,-0.32514745,-0.14283164,0.6570515,-0.34172833,-0.4704961,0.27306202,-0.55515695,0.55511457,0.043233942,-0.49679196,-0.17001435,0.1163985,-0.6236093,0.049106862,0.6055147,-0.3498433,0.029149087,-0.19473056,-0.11024526,0.96520406,0.22456044,0.45185593,-0.7781252,-0.6326862,-0.9906702,-0.08999042,-0.22524938,0.38758472,-0.08519902,-0.89985806,-0.25489438,-0.3437727,-0.16429904,0.1769556,-0.79062915,0.5098725,0.17068835,0.7417535,-0.17325516,-0.90013367,-0.061549496,0.40607575,-0.15643027,-0.29523683,0.41799104,0.05003746,1.0451999,0.105131194,0.14435326,-0.11051772,-0.7761168,0.63020444,-0.23095088,-0.31148374,-0.8766235,-0.108923584,135 -924,0.4229245,-0.33900726,-0.67501605,-0.2750705,-0.18961425,-0.09248219,-0.21503587,0.46021196,0.20505045,-0.6631212,-0.02758957,-0.32037318,-0.034669053,0.49122688,-0.12125749,-0.66042525,-0.025119878,0.18649612,-0.5861128,0.7585775,-0.45908108,0.24873066,0.3132606,0.25421575,-0.108100064,0.11576781,0.0960465,-0.116196156,0.23703896,-0.017156558,-0.06602627,-0.001439547,-0.5285574,0.102466896,0.1506523,-0.49804497,-0.020391317,-0.34179926,-0.25059164,-0.8197491,0.15058585,-0.8795147,0.6588596,-0.05139028,-0.4692085,-0.09497207,0.14594392,0.52736896,-0.27128544,0.116954714,0.14962767,-0.25783992,-0.4984555,-0.09900982,-0.32754958,-0.6253851,-0.809697,-0.2993411,-0.50521696,-0.034129903,-0.2979705,0.08634434,-0.42013073,0.074801534,-0.23721695,0.44371673,-0.5497272,-0.04275712,0.17700964,0.07535928,0.5741072,-0.79022425,-0.00068869715,-0.26700315,0.14434063,-0.0063828123,-0.37153742,0.23930931,0.36193955,0.7484951,0.07524988,-0.15444589,-0.25028992,-0.12818168,0.025801767,0.3839504,-0.09811501,-0.31648755,-0.20334913,-0.12762304,0.48940238,0.34406665,0.031597313,-0.47406188,-0.0074116886,-0.019412108,-0.3652154,0.26734924,0.5254888,-0.31791034,-0.12126379,0.25016937,0.59765935,0.114040375,-0.23106383,0.1700316,-0.035250243,-0.5812941,-0.21048619,0.22503094,-0.17794369,0.692041,-0.10950592,0.12572123,0.44869283,-0.055571783,-0.18088831,-0.20948035,0.0040762345,-0.15344511,-0.07603559,-0.5308989,0.42682543,-0.59837246,0.13100304,-0.49199197,0.7998673,0.08369989,-0.87596184,0.30290824,-0.57086813,0.15814422,-0.27888137,0.78415966,0.824601,0.704735,0.14478363,0.68941367,-0.4427884,0.123886675,-0.12689146,-0.290138,0.27293184,-0.16019934,0.3502448,-0.49940732,-0.23427248,-0.03219966,-0.33398396,0.011404777,0.8271202,-0.6031876,-0.1453198,0.08492572,0.5380011,-0.41177952,0.07174936,0.62204236,1.1539009,0.99954486,0.282987,1.3088535,0.5274621,-0.38626748,0.21945424,-0.06323603,-1.0015427,0.21431008,0.36077407,-0.16392007,0.3312088,0.11065929,-0.04893714,0.61825037,-0.6189132,-0.043895215,0.01868273,0.24030055,-0.2741377,-0.17483388,-0.560885,-0.26027903,-0.11035884,0.17037362,-0.07657986,0.43169966,0.0037468076,0.51222533,0.31776702,1.3876259,-0.1841202,-0.05079701,0.079898186,0.2935078,0.05582739,-0.2951928,-0.07804596,0.09447327,0.69521695,-0.02033064,-0.8574263,0.16932918,0.00203901,-0.3883527,-0.29032686,-0.3094114,0.10118062,-0.34639728,-0.3567191,-0.25676093,-0.041961767,-0.61714673,0.3619438,-2.128794,-0.19869636,-0.15132815,0.44790432,-0.18629013,-0.23440348,-0.05605184,-0.49627483,0.5116038,0.4273992,0.45496777,-0.6624757,0.5182199,0.66710526,-0.53675723,0.122397445,-0.94645464,-0.4042557,-0.070906155,0.23169738,-0.049787845,-0.32888523,0.28130764,0.24013701,0.40061834,0.017109936,0.16829218,0.37341717,0.44909078,0.00951627,0.6685612,-0.12547944,0.6179482,-0.38842687,-0.09092291,0.17962141,-0.06574119,-0.10652029,-0.34166613,0.20129348,0.49866918,-0.7092054,-0.8351007,-0.34600604,-0.3145582,1.0622833,-0.47831288,-0.47508323,0.39014375,-0.24485861,-0.20231777,-0.13321614,0.60067666,-0.09811917,-0.17580439,-0.8986234,0.056771126,-0.03754561,0.32852936,0.06167033,-0.0076464335,-0.6558462,0.4799511,-0.16215748,0.7147065,0.7366182,0.21703881,-0.08083312,-0.67962694,0.07645312,0.92369485,0.38673097,0.13738824,-0.3385763,-0.025772762,-0.24744608,0.10492038,0.13785104,0.27944586,1.0523502,-0.21610104,0.089255616,0.23149137,-0.4113616,0.0508374,-0.13430232,-0.61743003,-0.106432274,0.14694592,0.5827055,0.4860965,0.0062835068,0.5220147,-0.0987001,0.17845382,-0.15625082,-0.5702221,0.5487764,1.0032296,-0.26985043,-0.117077015,0.8320194,0.543733,-0.28488973,0.65413916,-0.62325287,-0.2124125,0.5558704,-0.0065068128,-0.42876807,0.3588698,-0.40434244,0.22849241,-1.3099297,0.20532876,-0.38672245,-0.7310388,-0.7525131,0.18519054,-2.8418047,0.3642501,-0.3114615,-0.19522533,-0.031542588,-0.20851618,0.47233045,-0.69540185,-0.72443825,0.34085453,0.22833766,0.5873079,0.08730702,-0.2118867,-0.38869902,-0.23366413,-0.18225275,0.21645862,0.25463966,0.15554295,0.0028955883,-0.64871264,0.086164266,-0.05972315,-0.29133657,-0.0502247,-0.64941144,-0.34715068,-0.29283407,-0.6369045,-0.46622828,0.86725885,-0.35494015,0.009524584,-0.2691271,-0.021875888,-0.017042678,0.46868974,-0.20771174,0.10647816,0.013478225,0.01367023,-0.03984603,-0.20012955,-0.19599663,0.20242411,0.10126689,0.25185448,-0.2612575,0.061838564,0.89021343,0.7765679,0.15114976,1.070968,0.8406427,-0.103613116,0.28244394,-0.26917624,0.010018148,-0.694304,-0.3288167,-0.33883238,-0.53235537,-0.58445466,-0.01488756,-0.25634897,-0.8230696,0.8098642,0.03921838,0.28632805,0.3133937,0.32276392,0.40056542,0.16145462,0.053255584,-0.35756725,-0.29166645,-0.5474319,-0.18081237,-0.8835363,-0.56081146,0.24113876,1.555497,-0.2185799,0.0066283885,0.09302483,-0.42321613,0.2723563,0.32691643,0.10188799,0.3651553,0.370726,0.16725592,-0.70466703,0.39560908,0.015215798,-0.070154935,-1.0385374,0.19038516,0.8426908,-0.8866789,0.16989523,0.29310653,-0.050010398,-0.3369095,-0.64272326,-0.23889925,0.16597113,-0.28541774,0.29786846,0.23412134,-0.7056185,0.5193732,0.24182779,0.0104880845,-0.9165882,0.6727652,-0.05182838,-0.33582625,0.30631292,0.30253875,-0.020799326,0.13774556,-0.5313528,0.2842991,-0.40691134,0.30959472,0.3731395,-0.16231944,0.26324904,-0.14515379,0.21991014,-0.9650891,0.03616083,-0.70965236,-0.06750761,0.4852656,0.10937424,0.30708927,0.26645595,0.21071194,0.33313015,-0.41603917,0.066538475,-0.22733675,-0.665009,0.602034,0.5524794,-0.033263005,-0.3019326,0.7637096,-0.12929754,-0.090301596,-0.38771343,0.048990604,0.42074582,0.18945466,0.34344435,-0.13129878,-0.46218264,0.18237086,0.9700189,0.3536621,0.32149398,0.19700502,0.1560337,0.4586903,0.27815565,0.041650962,-0.024918836,-0.36234948,0.03611332,-0.067560226,0.19402274,0.5237181,0.16006474,0.56582457,-0.26818094,-0.18706504,0.0035153737,0.060090028,-0.024577769,-1.1909022,0.6970129,0.15771121,0.37050602,0.9325376,0.12259648,-0.04710631,0.44691676,-0.50207037,0.08222672,0.41008055,0.2667266,-0.23143263,0.70598793,-0.8149095,0.35372815,-0.11212135,0.070964,0.06067762,0.15804686,0.5512939,1.1229583,-0.18415004,0.09282147,-0.094334796,-0.1819038,0.29427463,-0.39044,-0.29579723,-0.43226948,-0.5272464,0.69560486,0.07632855,0.5947829,-0.15238793,-0.12626354,0.2056181,-0.16972272,0.54383755,0.053904857,-0.041379824,-0.105011374,-0.56238693,-0.16132864,0.5877771,-0.14556505,0.025523055,0.12435425,-0.35723406,0.2504057,0.019469483,-0.19914562,0.05513337,-0.6947157,-0.1166034,-0.5926471,-0.4020879,0.70832545,-0.34522903,0.33478045,0.1650024,0.08790261,-0.20162684,0.1611319,0.15929909,0.7248272,0.09277826,-0.2696739,0.038020875,-0.23114003,0.2545661,-0.352283,-0.05562972,-0.074165724,0.05230039,-0.6995508,0.38384283,-0.1556564,-0.34579825,0.35579747,-0.23353286,-0.04515535,0.3685526,-0.3284095,-0.0042397217,0.22337785,-0.16616707,-0.028317945,-0.66379714,-0.23571625,0.14561242,-0.43326628,0.34409198,-0.1437898,0.019982368,0.03856791,0.60838914,0.21658182,0.16105895,0.5018064,0.30863363,-0.30971825,-0.07720936,0.041683093,0.48902476,-0.20213844,-0.28601244,-0.5367193,-0.4919307,-0.3304579,-0.17292944,-0.07443908,0.45912582,-0.17142032,-0.50776917,1.0458783,0.101685636,1.0316621,-0.17281355,-0.59807223,0.0062827873,0.44028103,0.01430408,-0.095151186,-0.21999793,0.85872537,0.69570905,0.071867846,-0.32718122,-0.5251494,-0.2452765,0.40220147,-0.24192776,-0.36907613,-0.043452162,-0.79718167,-0.31382638,0.3116239,0.22350918,0.04419547,-0.13319188,0.4593515,0.28920302,0.10669717,0.36805785,-0.6350504,0.15945436,0.23630069,0.084186554,0.16738331,0.19896737,-0.28781036,0.12223124,-0.66524047,0.15286131,-0.3522286,-0.044100057,0.2064328,-0.2508198,0.24020915,0.09539965,0.29624537,-0.112024374,-0.20188767,-0.06861765,0.80371934,0.0054140333,0.2987579,1.012911,-0.28842655,0.038410608,0.05895044,0.6767754,1.5282971,-0.21585733,0.005125815,0.22468868,-0.5478556,-0.5244749,0.32138908,-0.23132715,0.21014981,-0.015983336,-0.3936784,-0.6062487,0.045026835,0.15948011,-0.40967092,0.08727629,-0.3263334,-0.52248645,0.25284764,-0.52942455,-0.19644456,-0.44419166,0.15257551,0.64721245,-0.47697422,-0.15310708,0.01397523,0.35286844,-0.24075331,-0.53058565,-5.888939e-05,-0.3685311,0.2423247,0.29926676,-0.5164912,0.14684677,0.10507567,-0.59190977,-0.086331345,0.17667541,-0.4209491,-0.046729077,-0.50337845,-0.06949783,1.0801822,-0.060223937,-0.071334645,-0.5319769,-0.6781177,-0.68862087,-0.4584732,0.62039566,0.1264337,0.025612561,-0.6980645,0.1898758,-0.10340361,0.09928811,-0.037808593,-0.36500585,0.48374176,0.20886189,0.4435404,-0.12981261,-0.96209335,0.2578571,0.048319396,-0.024793733,-0.40587595,0.7253868,-0.06563046,1.0060216,0.21695946,0.11960424,0.13491227,-0.73167634,0.29810998,-0.20492953,-0.37759352,-0.7966803,-0.12080395,167 -925,0.13979922,0.124566704,-0.6746863,-0.038436357,-0.1389832,-0.067483395,-0.3517182,0.39526775,0.43423566,-0.2961157,0.21992573,-0.37414798,-0.07557663,0.4164994,-0.1436088,-0.72618955,0.18043691,0.16922933,-0.5767311,0.6573964,-0.3807406,0.26891664,0.03802906,0.21965565,-0.21582942,0.45435178,0.19229867,-0.3415612,-0.19698901,-0.03618264,0.10451984,0.08418039,-0.40032768,0.21324782,0.02693119,-0.0004800775,0.3448001,-0.43133813,-0.5149732,-0.6285296,0.3636286,-0.6443157,0.5649811,0.13171794,-0.21154124,0.2213831,0.20991017,0.27326962,-0.25621942,-0.05899304,0.24273919,-0.1431823,-0.25316313,-0.32427037,-0.39921272,-0.46242082,-0.47506922,-0.025559943,-0.63516635,-0.17038625,-0.4833849,0.14019698,-0.23577198,-0.037360772,0.05326337,0.19096288,-0.44625556,-0.038550947,-0.059012305,-0.2380114,0.21601027,-0.7336332,-0.020094378,-0.066057295,0.28052083,0.10707374,-0.09160328,0.4714925,0.25154606,0.3838382,-0.055078615,-0.031819463,-0.24206248,-0.34428564,-0.013880599,0.5487883,-0.2285976,-0.42519587,0.009493535,0.06749071,0.19107665,0.21967974,0.08355181,-0.3602478,-0.01242139,-0.22943644,-0.36862773,0.34644738,0.61658907,-0.24615811,-0.017031197,0.45669413,0.3947024,0.2596805,-0.07510018,0.15417315,-0.21280414,-0.48359105,-0.09382839,0.109550126,-0.059448633,0.7065081,0.092996664,0.21661654,0.5907519,-0.07419989,-0.14657964,-0.17284547,-0.0044090343,0.15689051,-0.16262358,-0.08008495,0.15448727,-0.6062408,-0.13631843,-0.23772377,0.70960134,0.022220036,-0.9727374,0.4995576,-0.32285005,0.077555366,0.034920394,0.6667721,0.6940258,0.5824836,0.265597,0.7400623,-0.4303337,0.2670665,0.031544495,-0.45663443,0.31535912,-0.04419295,0.17649116,-0.58049375,0.017609261,0.42204162,-0.23603825,0.21010776,0.47132027,-0.4852603,0.054006096,0.21148805,0.9497881,-0.3147787,-0.10130748,0.55511034,1.2096652,0.74978375,0.15846902,1.0729257,0.25197613,-0.25753024,0.24572511,-0.13358639,-0.9076479,0.17455457,0.23780899,-0.067497045,0.14313568,0.19287796,-0.20399927,0.15546674,-0.35983887,-0.12674548,-0.10515296,0.45261106,0.020446854,-0.17192024,-0.28198144,-0.26912987,-0.112433024,-0.059496284,0.2254558,0.3183223,0.045406453,0.47705147,0.0011120777,1.4514446,0.18899693,0.12625332,-0.034290448,0.6484303,0.21677364,0.15767342,-0.3645011,0.4797699,0.20497686,0.13720775,-0.50440717,0.07821285,-0.17642118,-0.36612603,0.05058377,-0.24838986,0.018522425,-0.024012523,-0.07878444,-0.21265212,0.010710743,-0.40285084,0.5524297,-2.9838989,0.0031758195,-0.048081007,0.29254943,-0.0070545403,-0.03018403,-0.09612599,-0.3466213,0.5358145,0.5808319,0.489018,-0.39422694,-0.020044386,0.43024242,-0.42531404,-0.16852583,-0.57897437,0.104819514,-0.029726606,0.3822567,-0.058330845,-0.26871425,-0.035935264,0.08155367,0.2609408,0.005011217,0.085106604,0.3082319,0.45688802,0.105002016,0.35016918,-0.1604066,0.48606387,-0.07581296,-0.12693813,0.03233156,-0.37499574,0.36693478,-0.21414037,0.2717645,0.42931235,-0.48201352,-0.72500634,-0.22361349,-0.032253325,0.9609711,-0.2979337,-0.36050832,0.41824293,-0.09354575,-0.14013973,0.003920279,0.62852293,-0.21573791,-0.005695717,-0.6396172,-0.0035689853,-0.00065719,0.32794815,0.097106814,0.019415699,-0.48063934,0.49686405,-0.007495902,0.59550786,0.41578093,-0.011638183,-0.33254805,-0.5758496,0.052271258,0.8139053,0.25990394,0.05001448,-0.112502225,-0.19859195,-0.39167917,-0.3069624,0.051769007,0.52173203,0.7448626,0.029261319,0.03666754,0.243393,-0.27464917,0.018210076,-0.022384597,-0.49706027,-0.16257359,0.06180879,0.64506173,0.6202274,-0.19431624,0.5186443,-0.0052878126,0.32848632,-0.028651325,-0.46044084,0.5413238,0.42994994,-0.20343615,-0.18481363,0.3753134,0.3703163,-0.28824455,0.6420093,-0.39381933,-0.26271197,0.5524962,-0.031796087,-0.6399174,0.42805716,-0.27028608,0.05546119,-1.0562454,0.2608547,-0.21889214,-0.6667456,-0.6220442,0.13326466,-3.59289,0.09661589,-0.22758912,-0.36430386,-0.019492984,0.1716602,0.06801105,-0.38288078,-0.41533157,0.1438328,0.28808495,0.44273683,-0.12442824,-0.10395542,-0.1383695,-0.18833695,-0.23275313,0.11915519,0.04326503,0.10701446,-0.0042708246,-0.39457658,-0.085495,-0.26528475,-0.31609964,0.023462761,-0.53024906,-0.11366957,-0.32518312,-0.7806372,-0.39426422,0.71571296,-0.58372426,0.012944829,-0.26860464,0.110013254,0.041797124,0.28839436,0.06993368,0.064495936,-0.13858503,-0.12390549,-0.04382237,-0.3653986,0.24674056,-0.06042236,0.44142914,0.54292315,0.07896861,-0.025166653,0.66627914,0.5684424,0.006345562,0.70803815,0.37750643,-0.101723954,0.2516849,-0.52026594,-0.038467098,-0.47836077,-0.46584472,-0.08152047,-0.32280418,-0.50684875,-0.13990775,-0.4569145,-0.6274801,0.56717724,0.10029174,-0.15707573,0.21657768,0.39065725,0.27787963,-0.092010625,0.12892751,-0.25150564,-0.11910773,-0.5969068,-0.07160404,-0.8239212,-0.5672105,0.39815226,0.89140373,-0.19174455,-0.09547483,0.082837544,-0.26876116,-0.008714866,0.048839007,0.033042222,0.39100683,0.13258614,-0.057163812,-0.83579534,0.6084543,-0.2541142,-0.094236515,-0.6605742,0.043772552,0.564893,-0.97269803,0.2899416,0.45062038,0.045984074,-0.071349256,-0.5279054,-0.4261746,-0.037769366,-0.15178968,0.24392273,0.08865661,-0.8766758,0.49922934,0.24745774,-0.38823137,-0.7743232,0.17036293,-0.16122827,-0.38133124,0.32397997,0.27574968,-0.00062771275,0.06626082,-0.6759824,-0.112281516,-0.49828383,0.26476747,0.02062477,-0.05344367,0.61578065,-0.08966954,-0.25985593,-0.88652706,-0.023315864,-0.39812672,-0.16461594,0.47833225,0.2132204,0.1959346,-0.06291357,0.22113891,0.35936084,-0.45787954,0.102941535,-0.11934779,-0.27147815,0.3591727,0.40614575,0.29066217,-0.46625596,0.6672191,-0.1879024,-0.044476524,-0.14749841,-0.012323639,0.45796338,0.053765524,0.23590842,0.18414493,-0.22329813,0.10594651,0.85798454,0.2351539,0.27248225,0.11956942,-0.034445725,0.56799257,0.08650263,0.09352649,0.3586705,-0.44747093,-0.15508175,-0.30984446,0.16354725,0.46014836,0.15240651,0.5750003,-0.16384144,-0.25083196,-0.017449232,0.37790462,0.3048559,-0.68673044,0.58202976,0.26332933,0.39556235,0.73649406,0.19769365,0.06847689,0.7894478,-0.15239908,0.23974538,0.21369423,-0.04019283,-0.6025037,0.4841945,-0.7452148,0.47442463,-0.09577372,-0.050333753,0.41355693,0.047366675,0.5861611,0.9880684,-0.106090635,1.50203705e-05,-0.012881285,-0.13755326,-0.046945825,-0.3314647,-0.1278675,-0.26853332,-0.4305421,0.51617754,0.2965208,0.1875877,0.013230595,-0.053505287,0.2410664,-0.059476983,0.40185606,-0.14213863,-0.00045487014,-0.09239089,-0.5723294,-0.2511155,0.6383166,0.03432196,0.1270457,0.13485347,0.15403853,0.44143668,-0.3127159,-0.24661422,-0.14071572,-0.3618415,0.3589306,-0.00012655692,-0.519895,0.7035621,-0.17759508,0.42860442,0.110951565,0.2440237,-0.16938566,0.44081813,0.3326101,0.6979628,-0.0958056,-0.45946008,-0.17002553,-0.11586111,0.15929466,-0.24616447,-0.08970188,-0.22172837,-0.06736416,-0.6734227,0.50185865,-0.37180033,-0.23903099,-0.16604601,-0.23239793,0.032054387,0.3411949,-0.12951855,-0.1009249,0.020302068,-0.16164589,-0.18354797,-0.2374294,-0.36946353,0.10446692,0.098974325,-0.032486796,-0.10588603,-0.07806527,-0.006887257,0.37945616,-0.13872266,0.18072097,0.061674688,0.3397298,-0.25058585,-0.13755625,0.14834565,0.49409503,0.11522278,0.013463692,-0.24302115,-0.26323286,-0.36792785,-0.23250169,-0.077651806,0.3178197,0.22298533,-0.53776145,0.8495646,0.0066228537,1.1018405,0.0018898601,-0.3377765,0.22050811,0.6255757,-0.005014734,0.02258802,-0.37585518,1.1692005,0.7144688,-0.22454804,-0.1259777,-0.4171158,-0.15370737,0.23769115,-0.29307842,-0.25823808,0.04591247,-0.58594805,-0.37218523,0.30333826,0.29420823,0.1181542,-0.117153615,0.19367494,-0.16583078,0.07696047,0.055787638,-0.46973908,0.02303998,0.38861647,0.12628299,0.14350921,0.14270988,-0.21885724,0.3648772,-0.5390472,0.115140565,-0.42273453,0.047744576,-0.0144866,-0.28585723,0.14658263,-0.027631732,0.5038774,-0.21628866,-0.31375834,-0.078953944,0.4150541,0.34577486,0.3367717,0.72809565,-0.21295047,-0.17805225,-0.08020993,0.6268089,1.0753849,-0.3174134,-0.07520412,0.3612027,-0.23277284,-0.6766059,0.16316152,-0.41189128,-0.01947326,-0.36838838,-0.24190168,-0.44138223,0.0033715693,0.13455044,-0.21501318,-0.19393574,-0.45419037,-0.12117722,0.09793091,-0.3237731,-0.31965664,-0.41717854,0.119739324,0.9267734,-0.3150129,-0.3700663,0.10504253,0.06395581,-0.25558627,-0.7243555,0.0095593445,-0.06155107,0.37308013,0.45171544,-0.44555804,0.03919584,0.38231122,-0.5348714,0.20187396,-0.0009845658,-0.39132768,0.059863392,-0.36083087,0.01923156,0.8105845,-0.15163423,0.13166319,-0.5577816,-0.6241305,-0.87170357,-0.3831724,0.3848112,-0.10370653,-0.06890113,-0.5906548,-0.09027617,-0.18302217,-0.07187972,0.015476167,-0.54052204,0.4296919,-0.079584144,0.5303927,-0.42624605,-1.1842132,0.09674559,0.1489193,-0.09100353,-0.64136285,0.46595994,-0.13128132,0.89164144,0.21988964,-0.059166428,0.56667244,-0.60095716,0.23919836,-0.43023527,-0.3153223,-0.45108145,0.21612872,171 -926,0.38648814,-0.47794646,-0.4301028,-0.22897682,-0.08732462,-0.072175615,0.011699328,0.82679725,0.22606984,-0.45549777,-0.24548383,-0.17564131,0.1336146,0.5350126,-0.16400361,-0.45648143,-0.105953574,0.29263514,-0.44550857,0.49942666,-0.41571036,0.003631635,-0.017043026,0.425837,0.2899213,0.16656703,0.23149873,0.0025774078,-0.06564326,-0.020790135,-0.24122621,0.21973683,-0.17024425,0.2511921,-0.028566653,-0.3420923,-0.013419761,-0.696862,-0.2644649,-0.8075228,0.4126477,-0.90771824,0.5049741,-0.015041059,-0.32417694,0.2985281,0.28587356,0.3416053,-0.31408307,-0.1664796,0.10534751,0.056603257,-0.1083133,-0.07044775,-0.16798206,-0.2985052,-0.6391466,-0.0859339,-0.13843222,-0.29200056,-0.26360682,0.1418551,-0.35393512,0.062076222,-0.0017351833,0.75801885,-0.3742036,-0.08758329,0.17709488,-0.23042928,0.2839733,-0.5902565,-0.119038254,-0.09535146,0.26582265,0.020263577,-0.27420276,0.19832917,0.3620909,0.36411887,-0.015766121,-0.17688006,-0.37785834,-0.079970434,-0.0706656,0.48899472,-0.17310871,-0.72667974,-0.18335861,-0.022723041,0.099636085,0.28334147,0.19788495,-0.20736875,0.03410016,0.12891102,-0.28651282,0.42036387,0.35866582,-0.37789953,-0.28377977,0.35511413,0.61099803,0.105849005,-0.07965367,-0.16658813,-0.023302251,-0.57766074,-0.1442617,0.009874896,-0.40837747,0.51421404,-0.20794812,0.37474182,0.5946305,-0.10071747,-0.13866316,0.018188309,0.13833077,-0.23545514,-0.453765,-0.44824123,0.34586582,-0.37539312,0.16835906,-0.033004913,0.6954648,0.16127141,-0.5178895,0.47129232,-0.5663446,0.16017853,-0.24999975,0.3530703,0.61352026,0.38513085,0.4264719,0.61401767,-0.35119975,-0.050239448,-0.04966966,-0.30490074,-0.16269115,-0.22046779,0.2492817,-0.60774285,0.20994519,0.0014489226,-0.10088008,0.13706201,0.33081836,-0.6191813,-0.17364107,0.24682221,0.7751216,-0.27804527,-0.19743334,0.88676965,0.9600922,1.1560607,0.06355346,1.0724416,0.2750897,-0.2614914,0.3128436,-0.27048293,-0.7045474,0.39823225,0.5552044,-0.1652696,0.12463599,0.030518442,0.049932145,0.60401696,-0.41356736,0.012836709,-0.14595847,0.11641414,0.20008983,-0.12571722,-0.67657304,-0.2639813,-0.10689266,0.04366492,0.12907173,0.21755533,-0.1357755,0.4104171,-0.05309731,1.6672158,-0.0343256,0.14481498,0.0955757,0.45624483,0.11800515,-0.109110005,-0.021030473,0.30054152,0.2804987,0.07598143,-0.5528073,0.22214542,-0.2837064,-0.36115193,-0.0836521,-0.32651404,0.00363215,-0.014777232,-0.36256817,-0.22388326,-0.22506122,-0.34347108,0.3868637,-2.8061078,-0.35872346,-0.23333463,0.294803,-0.2398656,-0.3860074,-0.019962223,-0.57886636,0.41255778,0.31367347,0.63147986,-0.62338746,0.3522338,0.29524133,-0.7013129,-0.11133935,-0.67484605,-0.12757283,-0.043249175,0.32232893,0.04316244,-0.037240256,0.03376685,0.15522914,0.52107644,0.12039568,0.16439304,0.35636255,0.3732237,-0.058004234,0.6415004,-0.18888734,0.55846786,-0.41758996,-0.24144012,0.17491859,-0.30304268,0.10611519,-0.1961987,0.11667256,0.5395553,-0.5147736,-0.9660746,-0.642073,-0.1278071,1.2796607,-0.2281344,-0.31530172,0.35421476,-0.48402917,-0.27599755,-0.20882273,0.43206042,-0.15656473,-0.08814626,-0.75716746,0.16478826,-0.030704623,0.01755293,-0.03706939,-0.15930837,-0.47092608,0.7033856,-0.13942929,0.54768974,0.29103482,0.12344053,-0.41291082,-0.29024336,-0.07340577,0.7517977,0.4051816,0.028118832,0.041836318,-0.10348816,-0.40208519,-0.13475123,0.05452266,0.48800424,0.6970162,-0.03376896,0.039532814,0.31186298,-0.020656187,0.11953092,-0.14138038,-0.28946185,-0.11034057,0.06701848,0.5579833,0.5186136,-0.26806608,0.5946982,-0.10368195,0.32479098,-0.09170079,-0.44887865,0.3811898,0.98871344,-0.2355894,-0.3872343,0.70122266,0.39534804,-0.3014254,0.3913867,-0.4832427,-0.17749485,0.45586732,-0.230313,-0.49934128,0.014111492,-0.20406985,0.14980358,-0.8399438,0.23233809,-0.26230004,-0.5136802,-0.4904622,-0.07612188,-3.6411965,0.29838163,-0.30697262,-0.15989512,0.009280183,-0.22464271,-0.003999908,-0.71701545,-0.71133935,0.27484262,0.06994589,0.7180769,-0.1287779,-0.0065366165,-0.17450081,-0.2568513,-0.1417666,0.06793043,-0.099542506,0.40796435,0.0895148,-0.5447204,0.059749473,0.081868194,-0.61684674,0.10657313,-0.8055517,-0.3953479,-0.109363936,-0.7249378,-0.44178838,0.6456439,-0.17925407,0.112293795,-0.17401594,0.123072356,-0.08453545,0.31330097,-0.15137886,0.14773689,0.060744416,-0.047039095,0.21940193,-0.14047603,0.22788233,0.0068306597,0.28127462,0.113863185,-0.11511138,0.3734935,0.67004484,0.82006836,0.051543485,0.85450417,0.58186984,-0.117752284,0.12689087,-0.21681276,-0.19284798,-0.37151182,-0.32454762,0.11625449,-0.43284446,-0.51127535,-0.09453039,-0.2982295,-0.6980384,0.6847732,0.17135082,0.38404778,0.0589022,0.14446686,0.6731231,-0.26623887,0.0604653,0.075327225,-0.18230034,-0.65201545,-0.13184398,-0.60899836,-0.44118282,0.22463487,0.9078058,-0.3113501,0.19229755,-0.0656834,-0.3445678,0.025158552,0.22357579,-0.017857598,0.28518653,0.3464537,-0.3742467,-0.671278,0.32061604,-0.13502182,-0.15569897,-0.43541232,0.31285077,0.5753605,-0.516089,0.6435308,0.2695947,-0.079352774,-0.54906696,-0.40105665,-0.259188,0.023487367,-0.1523048,0.44996214,0.23847857,-0.842433,0.39162856,0.467348,-0.2604238,-0.8142653,0.5024649,-0.14568323,-0.264904,-0.20222425,0.39758292,0.3287762,0.027902288,-0.27118248,0.17759962,-0.3698199,0.2415267,0.107329845,0.0019567609,0.41253427,-0.25200298,0.11090413,-0.8329124,-0.07992964,-0.68344074,-0.16218413,0.34861532,0.09808937,0.12394354,0.17520937,-0.11120088,0.31689948,-0.28839406,0.052932885,-0.022373639,-0.36209556,0.28903544,0.41125298,0.35331622,-0.41139212,0.59878176,0.05571337,-0.014616597,-0.14600791,-0.10476789,0.342911,0.1856658,0.51576686,-0.2201229,-0.38306996,0.33995023,0.6784044,0.13749015,0.30161402,0.027343668,-0.06443724,0.060941923,0.028530417,0.19264413,-0.0822958,-0.6120075,0.09341062,-0.29961634,0.16080171,0.5597241,0.14394389,0.2469237,-0.066679195,-0.4320514,0.04641296,0.06365546,0.017530657,-1.2884291,0.51809263,0.07193765,0.9365385,0.4330863,-0.0054040225,-0.16252142,0.729508,-0.12381942,0.21263704,0.39232433,-0.11798254,-0.49582207,0.62910414,-0.74387187,0.48979455,0.017576767,-0.01749056,-0.13431941,0.1260743,0.39495313,0.6076934,-0.25598508,-0.040360793,-0.033791926,-0.32235858,0.4254382,-0.4788231,-0.03576428,-0.7702717,-0.25270745,0.43687403,0.59394735,0.3734368,-0.15962797,-0.0011092763,0.13934514,-0.04385751,0.14116801,0.063280605,0.13132757,-0.043779906,-0.8614204,-0.1335772,0.4799874,0.3477787,0.35336563,-0.09978189,-0.23486476,0.2175348,-0.087272264,-0.057505056,-0.05065479,-0.64107156,-0.06893987,-0.21732482,-0.45773304,0.47571504,-0.0796838,0.23384666,0.16255356,0.092250586,-0.17177223,0.1845571,0.01927172,0.8703673,-0.048239633,-0.08081058,-0.30785733,0.12302636,-0.038005717,-0.05816902,0.22931914,-0.3767997,-0.08794483,-0.6372779,0.61516553,0.1621789,-0.4212164,0.0930254,-0.14430052,0.08582742,0.576897,-0.14309303,-0.052571937,-0.40359947,-0.17310631,-0.16102672,-0.42024377,-0.03503295,0.391119,0.087824315,0.26765665,-0.21103293,-0.11978791,-0.22830473,0.58875555,0.01145811,0.25354552,0.30888107,0.01852327,-0.15330099,-0.043081786,0.09532061,0.3644909,0.0276824,-0.41641057,-0.2589257,-0.3953107,-0.3082073,-0.0036342687,-0.0030865846,0.45845768,0.065863445,-0.16748463,0.5648462,-0.11916609,1.2646127,0.008697971,-0.4563349,-0.044674363,0.538011,0.07069181,-0.119796365,-0.14885336,0.7319426,0.5327281,0.0074380417,-0.084094375,-0.528758,0.028335083,0.39383334,-0.16142477,-0.12972735,0.07055918,-0.5523842,-0.40912744,0.21320143,0.14623408,0.3966099,-0.112306,0.22274445,0.49590242,-0.02025,0.3724395,-0.29934275,-0.1542636,0.29453078,0.38146222,-0.045562256,0.17106475,-0.48519287,0.2853425,-0.51614,0.2985117,-0.26777637,0.25135478,-0.40110132,-0.23409237,0.22747716,0.09961358,0.33462995,-0.13134359,-0.48429307,0.044415805,0.53238386,0.1249779,-0.040558454,0.48190382,-0.26412895,-0.060457934,0.20835209,0.41247645,0.8972349,-0.17459911,0.045376554,0.28400844,-0.34141913,-0.7307173,0.48793203,-0.03316057,0.26926118,0.1369372,0.03512049,-0.6630763,0.3032458,0.30491602,-0.12618564,-0.049718462,-0.43300742,-0.20439391,0.25475904,-0.32007855,-0.09332605,-0.3366429,0.14992231,0.3038497,-0.38020316,-0.32696843,0.02081769,0.20533237,0.0032725146,-0.47801095,-0.1663899,-0.44071484,0.3595751,0.06652158,-0.4496482,-0.18714601,-0.055157878,-0.45520505,0.14876775,-0.0362563,-0.2907248,0.24103568,-0.32258508,-0.20900078,0.99481124,-0.13100375,0.26578003,-0.41198432,-0.34995115,-0.849884,-0.3311228,0.53037494,-0.09935117,-0.00092380156,-0.7298813,0.06197153,0.018738683,-0.15203848,-0.11737456,-0.19388643,0.44414118,0.09932547,0.4704198,-0.0023498968,-0.65506613,0.11936179,0.07330071,0.032111134,-0.42660075,0.5283752,0.012511429,0.9079874,-0.026888313,0.075804435,0.26745847,-0.28699255,-0.19604011,-0.19404195,-0.3404442,-0.4847904,-0.03922293,180 -927,0.36098364,0.09176445,-0.43681848,-0.12030961,-0.2359662,-0.103101104,-0.124106534,0.2460999,0.52292365,-0.35445297,0.03428079,-0.39511964,0.15905653,0.38176116,-0.15287577,-1.008599,0.19965345,0.19890712,-0.55717796,0.8668812,-0.3827667,0.34618586,0.27543274,0.20513229,-0.1139432,0.21384087,0.5069482,-0.29491913,-0.114008315,-0.21707912,-0.0979543,-0.19831887,-0.67927384,0.3965853,0.09004034,-0.12491002,0.2153305,-0.43869683,-0.3695114,-0.74691415,0.23727113,-0.80203474,0.40723315,0.076612435,-0.199659,0.1059922,0.31697884,0.15730396,-0.31295395,0.05235665,0.09027856,-0.19708182,-0.37996188,-0.24614204,-0.41562787,-0.6948288,-0.69870317,0.0047772583,-0.5256315,-0.08183139,-0.5242339,0.10864067,-0.4831805,-0.0023146814,-0.03945465,0.6323744,-0.4216156,0.12215881,0.12823781,-0.28227997,0.31138572,-0.64131737,-0.08284223,-0.11092556,0.13844118,0.16311769,-0.18349515,0.26847532,0.45908824,0.44605458,0.098845966,-0.27580863,-0.27716076,-0.29489967,0.23283438,0.6085778,0.009739626,-0.62556934,-0.07658525,0.01525648,-0.0005705763,0.26895592,0.1769866,-0.51386,-0.02287711,-0.22701645,-0.34824398,0.48983687,0.5325058,-0.30756572,0.019372253,0.32786223,0.22616984,0.06531572,-0.08517128,0.23684883,-0.06973622,-0.6929718,-0.20931591,0.1825282,-0.20664138,0.7525665,-0.2785424,0.17662896,0.7055458,-0.19639544,-0.33871874,-0.13134946,-0.010568597,-0.08601266,-0.16767535,-0.07121289,0.38842565,-0.64766866,-0.22584423,-0.43938968,0.9902597,0.07049834,-1.0798632,0.36571386,-0.5773136,0.2178825,-0.18476175,0.5656452,0.69586426,0.54401374,0.412189,0.7386446,-0.49770126,0.13044612,0.15787932,-0.63015074,0.17803144,0.024330767,0.2062233,-0.473163,-0.054106656,0.1637354,-0.24922386,0.12531821,0.7449534,-0.2686516,-0.10995305,0.0062171547,0.8705536,-0.31803977,-0.15871556,0.57667804,1.1210781,0.82380027,0.26683044,1.4733624,0.24366356,-0.17541231,-0.11329109,0.06671315,-1.0232551,0.21182603,0.3446061,-0.20893389,0.09339481,0.08411431,-0.1212904,0.28836298,-0.40587494,-0.14058739,-0.18131919,0.56004405,-0.0823667,-0.34569666,-0.30369332,-0.31769717,-0.009339093,0.017925667,0.16610684,0.3649024,0.20179,0.54901886,0.07123855,1.3637838,0.15875582,0.12027721,0.15904249,0.45820618,0.35080585,0.13304305,-0.12238648,0.30423704,0.2930524,0.16184112,-0.55009115,-0.021875136,-0.1277175,-0.41142645,-0.20782705,-0.2379222,0.108284354,0.05817027,-0.08634294,-0.19109367,-0.16996704,-0.52836233,0.59652674,-2.3117118,-0.03521494,-0.11498458,0.32055244,-0.070616275,-0.037201215,-0.2518405,-0.6203436,0.7588985,0.45352602,0.5540614,-0.71181977,0.011584884,0.52385545,-0.58249056,-0.12182584,-0.72366065,-0.11454597,-0.12075073,0.3262367,0.021708738,-0.23054194,-0.017214065,0.21918474,0.4777609,0.012685347,0.18708062,0.47973493,0.507213,0.02078522,0.39594695,-0.14803928,0.5545892,-0.16432063,-0.14318602,0.10224562,-0.24486336,0.21600905,-0.35652465,0.0837024,0.41986597,-0.45212486,-0.87623864,-0.19191791,-0.060359057,0.99919534,-0.4063161,-0.49670523,0.42121297,0.15179038,0.005657865,0.084435195,0.58667845,-0.18440585,0.06920526,-0.7485042,0.17194825,0.27258646,0.116381794,0.1424366,-0.099249534,-0.4573108,0.5895326,-0.057122532,0.55753285,0.60844666,0.11947593,-0.40150395,-0.5570734,0.037124954,0.9807707,0.2791092,0.23335852,-0.37207812,-0.16800103,-0.439527,-0.30362803,0.057806607,0.5414873,0.83441633,-0.15158345,-0.03709233,0.39803174,-0.14734884,0.0057408484,-0.054116283,-0.52618384,-0.12333443,-0.179278,0.5665527,0.7022547,-0.18736218,0.5052739,-0.006327759,0.4059662,-0.0529804,-0.5270443,0.7363297,1.077078,-0.14543357,-0.20591019,0.6595494,0.26198718,-0.2850627,0.58940256,-0.22919577,-0.39654177,0.7090072,-0.0046962444,-0.60961974,0.36422107,-0.4282107,-0.09762797,-0.99659365,0.4917475,-0.2554901,-0.5633552,-0.60874635,0.03204151,-3.638237,0.28566465,-0.34481275,-0.18436922,-0.250495,0.121339686,-0.019294923,-0.39178115,-0.5067321,0.4229949,0.24998908,0.53226554,-0.21564583,0.31643394,-0.055981074,-0.04079957,-0.16620252,0.1548128,0.10993264,0.1448587,-0.082706556,-0.43807852,-0.08229649,-0.03677775,-0.3283169,0.1488175,-0.6439995,-0.44118917,-0.18681683,-0.8658165,-0.4484396,0.78617954,-0.5620501,-0.038499527,-0.41319796,0.010203827,-0.083435394,0.3730698,-0.18877536,0.14940752,-0.1937276,0.04002341,-0.18606824,-0.18655342,0.2769104,-0.1264455,0.34228957,0.38654968,-0.04285516,0.12156434,0.74635816,0.58631784,0.095764466,0.7545792,0.46245328,-0.09795812,0.11185867,-0.32438138,-0.17939514,-0.7553297,-0.31190193,-0.24561761,-0.4548548,-0.3905469,0.026876146,-0.35452524,-0.6594294,0.5637067,0.26514718,-0.16098537,0.05525614,0.15470152,0.25926378,-0.06907925,-0.014081248,-0.19965954,-0.29227343,-0.57127976,0.0392133,-0.8062342,-0.4690564,0.354782,0.89289767,-0.20666236,-0.31328124,-0.014758787,-0.2823222,0.04597682,0.14154547,-0.029290969,0.28629926,0.11153788,0.19007431,-0.7856533,0.5974403,-0.22237311,-0.052063953,-0.72260875,0.033411022,0.63798577,-0.78948873,0.4688171,0.5430878,0.019162904,0.014034748,-0.55907243,-0.49715388,-0.048355546,-0.09851181,0.3238308,0.13858499,-0.8229986,0.5931051,0.3215284,-0.32879636,-0.8593903,0.2774868,-0.10672965,-0.32842815,0.19594693,0.42817402,0.024867589,0.121614,-0.58074015,-0.06964727,-0.5663504,0.32319412,0.029030675,-0.020448565,0.48635438,0.037986234,-0.27532685,-0.9977446,-0.09382404,-0.59140795,-0.120297424,0.20199199,0.26025292,-0.012254227,-0.04379188,0.0938972,0.36639926,-0.36492598,0.24067798,-0.14728822,-0.269829,0.4300949,0.43537667,0.27073607,-0.47115317,0.77810836,-0.16250318,0.021061767,-0.12798233,0.14906055,0.44253644,0.3125447,0.27125266,0.19905001,-0.16700262,0.17090692,0.9463062,0.11838252,0.30708936,0.35453647,-0.015709369,0.58363783,-0.011900845,0.20858385,0.12652498,-0.51692355,-0.03588075,-0.24256429,0.04576721,0.57391316,0.1829805,0.545422,0.015339139,-0.333514,-0.03384254,0.31940743,0.1934009,-1.0817927,0.44050416,0.2462257,0.43564367,0.81368715,-0.052903548,0.028117944,0.7204093,-0.054525577,0.21183296,0.2446933,-0.07425333,-0.28634942,0.64387584,-0.74153274,0.27160916,-0.36164021,0.0017374889,0.21345125,0.34426007,0.3354162,0.9203616,-0.029413223,-0.015769381,-0.17423268,-0.20455714,0.026288938,-0.42980668,0.020571925,-0.2193851,-0.6120924,0.6342541,0.17330101,0.32404068,-0.21290532,-0.004063113,0.35349524,-0.12231532,0.3290849,0.0998828,-0.06821613,-0.15451813,-0.85890967,-0.33530986,0.62009996,-0.01345622,0.18508558,0.07163553,0.15100594,0.280449,-0.38523057,-0.22407085,-0.038936976,-0.64857084,0.012527184,-0.24328475,-0.57617927,0.6524537,-0.26267576,0.26078308,0.17825855,0.13547601,-0.32746685,0.06484825,0.35107183,0.57057846,-0.030308496,-0.23412432,-0.09051473,-0.2265275,0.22637029,-0.27874324,0.11353444,-0.032427635,0.0033045574,-0.6540997,0.56889987,-0.3959073,-0.30986527,-0.048747767,-0.27576783,-0.15239114,0.44016942,-0.27284127,-0.15922579,0.16495952,-0.2546406,-0.07920698,-0.2708452,-0.25509062,0.22274111,0.08791408,-0.04459953,0.013165853,-0.018640734,-0.014850985,0.27304867,-0.14919032,0.13641687,0.009792891,0.37901458,-0.45207673,-0.11606848,0.074156635,0.5405762,-0.049961265,-0.103166096,-0.19851507,-0.3301494,-0.22608684,-0.3715687,-0.09514204,0.15435459,0.18385592,-0.63661456,0.8475555,0.10344048,1.0016054,0.045586225,-0.3337003,-0.011607539,0.5325003,0.013867161,0.060992826,-0.15026222,0.97899854,0.7868917,-0.15455128,-0.32098854,-0.72471625,0.085180804,0.26247898,-0.2662347,-0.36484823,0.20701423,-0.44451904,-0.47989082,0.3257259,0.19351153,0.016066909,-0.15322852,0.030032368,0.19702005,0.17556281,0.28032622,-0.60136324,0.17223018,0.24820466,0.119771026,0.2739194,0.15845236,-0.33489293,0.2647914,-0.538498,0.21166204,-0.47329685,0.06592806,-0.012944481,-0.07785161,0.15926442,-0.019744456,0.46827623,-0.2604245,-0.36391398,-0.12066212,0.51356405,0.3185531,0.30188075,0.91982096,-0.28336942,-0.16199309,0.022935702,0.824805,1.4270126,-0.3167938,-0.012285164,0.3924413,-0.2991147,-0.54507446,0.28175718,-0.28250882,0.010956306,-0.23440933,-0.41683605,-0.54926217,-0.018480869,0.18652393,-0.05011267,0.1482573,-0.45479068,-0.29373148,0.2089523,-0.33913592,-0.29400593,-0.41523564,0.102206446,0.8545391,-0.4320469,-0.2406831,0.10116389,-0.15612869,-0.1597848,-0.60006624,-0.10191537,-0.05823102,0.3267134,0.43200094,-0.4137993,0.055521067,0.25126353,-0.5935838,0.24545175,0.036939915,-0.38183153,0.1460196,-0.15649255,-0.15896294,0.81953454,-0.2739646,0.18892771,-0.6103553,-0.6677567,-0.89694935,-0.3391606,0.5094811,-0.11605836,-0.01845162,-0.6087875,-0.112000085,0.13898093,-0.051122013,-0.03240268,-0.44609106,0.44530782,0.07496513,0.5193771,-0.17909098,-0.9787563,0.05632263,0.103259325,-0.126107,-0.68675315,0.4251772,-0.077426456,0.78345394,0.12041629,0.0509148,0.3835475,-0.7773396,0.13404503,-0.37392962,-0.37700444,-0.39332733,0.19078769,182 -928,0.18536185,-0.12377009,-0.547332,-0.27305153,-0.20106892,0.03625503,-0.17054555,0.56313473,0.17735156,-0.13060342,-0.21233243,-0.16274582,0.25698873,0.6285978,-0.20138621,-0.95095843,-0.09149785,0.11451232,-0.8978746,0.3446107,-0.47964624,0.28236735,0.20821767,0.34692314,-0.0058765467,0.051011488,0.54095995,-0.18038763,0.1626975,-0.30244863,-0.14546382,0.11194933,-0.6210431,0.0737244,0.041516867,-0.3730873,0.043736782,-0.5087488,-0.06410251,-0.7154804,0.10243232,-0.8700456,0.7120653,0.0294972,-0.33793458,0.0030599183,0.39602426,0.41248816,-0.29390186,0.09375518,0.18534018,-0.28452584,-0.16097344,-0.19171633,-0.21832609,-0.6556291,-0.4529665,-0.09427052,-0.61397034,-0.5032317,-0.21365346,0.11098283,-0.4490611,-0.044077918,-0.21705116,0.2497316,-0.4448785,-0.18094355,0.5654827,-0.27097,0.46094382,-0.58535486,0.018942205,-0.06345442,0.48873597,-0.03296949,-0.2409873,0.2902868,0.40071142,0.309034,0.21104132,-0.34046996,-0.052919436,-0.3659443,0.18264796,0.47410825,-0.040529057,-0.39825287,-0.14128843,0.14624794,0.43687075,0.6780889,-0.007796068,-0.22241539,0.033753928,-0.07457836,-0.19229035,0.7545736,0.44415715,-0.35891607,-0.3958644,0.335413,0.5770765,0.5556404,-0.13906509,0.10999205,-0.14464873,-0.6149327,-0.18207811,0.17704506,-0.08223888,0.46077615,-0.012432653,0.078628264,0.96161216,-0.18384638,0.011601404,-0.14182065,-0.030021884,-0.18799902,-0.32777613,-0.1319326,0.33845595,-0.6348118,0.019895123,-0.40154344,0.79376787,0.12409694,-0.66551054,0.35471305,-0.64694905,0.11959633,-0.036923822,0.6064901,0.73950475,0.44780874,0.20410468,0.91363776,-0.24583197,0.17950968,-0.11301665,-0.40319824,0.05727059,-0.053391982,0.14801322,-0.5385191,0.23089825,0.03636376,0.21781512,0.10037875,0.39104775,-0.76882,-0.16430458,0.14723821,0.7729797,-0.21497951,-0.05020683,0.7375193,1.042466,1.0336584,-0.044073477,1.2575752,0.18767977,-0.19280343,0.006849045,-0.09520919,-0.538447,0.2119337,0.6337252,-0.112889476,0.3084354,-0.3701662,-0.16581808,0.19654264,-0.23442918,-0.11154228,0.0789721,0.53551644,0.0365283,-0.38232848,-0.577195,-0.029641537,0.083072506,-0.25676894,0.15489583,0.34338662,-0.2005879,0.34614298,-0.11592806,0.7685612,-0.14703923,0.29308206,0.15432054,0.28796837,0.21902305,-0.05384134,0.081752665,0.3614537,0.3610916,-0.11600585,-0.6698091,0.27075282,-0.47833604,-0.42515498,-0.1246932,-0.4823637,-0.2268961,-0.015317545,-0.29417437,-0.03085277,-0.12579578,-0.1886836,0.4419814,-2.8732207,-0.4183354,-0.21660818,0.12779859,-0.2734136,-0.14141767,-0.07146189,-0.4928002,0.449211,0.29277766,0.64111483,-0.39106,0.3675564,0.41573906,-0.5461126,-0.3191145,-0.7185637,0.022416044,0.07818388,0.3223383,-0.14818576,-0.2600074,-0.04332368,0.18765177,0.7434121,0.24569435,0.16175318,0.43604252,0.41145542,-0.06831937,0.4262786,-0.321218,0.7280666,-0.4571579,-0.10831683,0.3479058,-0.20981814,0.44170445,-0.37535855,0.1345025,0.5773251,-0.26007497,-1.1527174,-0.46511605,-0.5297125,1.1045678,-0.5471327,-0.4001129,0.22276187,0.26633903,0.06862163,0.22330646,0.756286,0.046797182,0.2873986,-0.5397081,0.2312013,-0.09147202,0.16669716,-0.056033697,0.007839874,-0.39963922,0.7057442,-0.033827633,0.44029647,0.23880139,0.28508794,-0.17158791,-0.2712677,0.024642022,0.7390804,0.51682764,-0.11047008,-0.020291502,-0.18600959,-0.33178565,-0.18900941,-0.028379792,0.75202465,0.83070433,0.023719441,0.09273309,0.097105145,0.01663098,0.1772227,-0.13698862,-0.3444699,0.06363037,0.17248799,0.4682885,0.3740299,-0.08702397,0.61073214,0.00096371496,0.27877805,-0.27759695,-0.607873,0.67271906,0.3494707,-0.27325,-0.07153568,0.559369,0.4476627,-0.41584805,0.51952267,-0.6313366,-0.32993165,0.97001576,-0.22887263,-0.66255325,0.3640518,-0.08241529,-0.0066047367,-0.81671244,0.12779312,-0.59812415,-0.4700264,-0.23809429,-0.115838505,-3.4673507,0.33114243,-0.13717642,0.026072746,-0.50102085,-0.038829204,0.32144293,-0.54984623,-0.74352837,0.15118761,0.3659639,0.8125189,-0.23183922,-0.0067283185,-0.1582973,-0.32107097,-0.016147494,0.35229808,-0.13325381,0.09495606,-0.22699803,-0.30243987,0.05375835,0.18890266,-0.57889915,0.28495237,-0.57417464,-0.27022773,-0.1771664,-0.46004292,-0.115099125,0.7167431,-0.6992346,0.055626165,0.013238281,0.21367246,-0.086446375,0.057057682,-0.00049186294,0.44449702,0.16472246,-0.15075512,0.07299155,-0.25014424,0.5473651,0.1133683,0.46591905,0.081432395,-0.06500426,0.26740658,0.43596217,0.6080904,-0.04101659,0.99547106,0.10122185,0.039223645,0.32804993,-0.42705935,-0.24697852,-0.4953375,-0.3851391,-0.21485628,-0.40846446,-0.61551756,-0.15613867,-0.1260214,-0.6859918,0.5662403,0.12728849,0.5813885,-0.18726134,0.43519202,0.36659047,-0.35446057,0.011770075,0.032738533,-0.061464477,-0.4599964,-0.14037138,-0.75756437,-0.41365272,0.063933656,0.787496,-0.4880619,0.029657584,-0.27241886,0.006837715,0.11497771,0.16402443,0.06750758,0.12987764,0.38284457,-0.10318796,-0.71156144,0.38778222,-0.08132447,-0.2119897,-0.6267382,0.115641505,0.57772744,-0.7154774,0.5649167,0.31759927,0.022660814,-0.25961673,-0.54724425,-0.069957085,0.25735965,-0.1968234,0.39405224,0.12146859,-0.69664085,0.51392967,0.3801217,-0.32914984,-0.7169799,0.40028226,-0.047913328,-0.2805814,-0.110048525,0.37051705,0.3934191,-0.14409102,-0.18029644,0.25409138,-0.5662658,0.31704995,0.1472067,-0.054327384,0.6063726,0.023849936,-0.3819343,-0.8277422,0.06718059,-0.67115635,-0.29026863,0.33852106,0.02046053,-0.09413651,0.35238704,0.119164184,0.48342526,-0.31725308,0.16571447,-0.04483013,-0.4954563,0.39033297,0.51051325,0.21946985,-0.24759617,0.6510667,0.1825695,-0.23421817,0.14950007,0.08599514,0.5289331,-0.07722099,0.52633643,-0.31059512,-0.25546548,0.25444108,0.6006736,0.06885975,0.27654552,0.15733598,0.095962,0.21828924,-0.11637273,0.19293894,0.061210718,-0.4230729,-0.099418595,-0.18525667,-0.010444074,0.6028192,0.314126,0.14479351,0.279707,-0.17862271,0.087397486,0.25276002,-0.077201694,-1.0863079,0.59540653,0.22646561,0.92074203,0.50815713,0.15130945,-0.22085348,0.38219917,-0.14460242,0.14873035,0.491726,0.04031612,-0.43866575,0.90532684,-0.75657654,0.32715288,-0.2462789,-0.1875873,0.18403889,0.07045856,0.35545638,1.0652844,-0.20867215,-0.047980808,-0.046485517,-0.17203823,0.13766594,-0.17880286,-0.06567585,-0.47291934,-0.5152891,0.61504525,0.31177914,0.26824275,-0.3060147,-0.12464697,0.12586595,-0.08921974,0.15629269,-0.034951422,0.019179506,0.052012995,-0.30829847,-0.118385434,0.55709773,0.042782556,0.16455191,-0.20710573,-0.24033894,0.027680842,-0.18898211,0.11813828,-0.06261938,-0.7140274,-0.015586301,-0.41326284,-0.5943962,0.32653376,-0.5000815,0.26383862,0.113693096,0.07599086,0.042765345,0.25177768,0.07798612,0.7478104,-0.09813654,-0.32509306,-0.46142673,0.213837,0.065770574,-0.24255718,0.012583158,-0.19835351,0.09061832,-0.60179126,0.50842476,-0.17355384,-0.38311833,0.2668917,-0.24189897,-0.25828788,0.5448099,-0.042882476,0.023847163,0.07025495,-0.52301496,-0.29482073,-0.12036081,-0.21704465,0.18969072,0.11400431,-0.015367037,-0.24372788,0.010526695,-0.10635722,0.3228817,-0.014258832,0.21528187,0.29948118,0.053523064,-0.13478813,0.017791422,0.20246933,0.35604277,0.34537628,-0.006018433,-0.17900468,-0.41708547,-0.35070354,0.17946656,-0.23579957,0.18586282,-0.026724469,-0.097480156,0.9374759,0.2292654,1.0972703,0.055850193,-0.42483205,0.10658968,0.7391975,-0.15079157,-0.29955018,-0.4043431,0.9185634,0.5864038,0.009913033,0.12647371,-0.384079,-0.08212338,0.5281581,-0.42782447,-0.10944981,-0.029290676,-0.5765593,-0.49462014,0.1653778,0.0737,0.21434173,-0.16098215,-0.22064139,0.3054108,0.12197124,0.5154324,-0.7054595,-0.355384,0.11290507,0.32858542,-0.2135647,0.17420115,-0.35162264,0.46753997,-1.0724492,0.14297295,-0.51496065,0.055890653,-0.2163897,-0.43070403,0.13141425,-0.016658036,0.25055254,-0.18140365,-0.39613226,0.17898908,0.41709587,0.12935513,0.15152043,0.66082245,-0.27287358,-0.03348719,0.10939825,0.64191127,1.264166,-0.36504412,-0.17154975,0.31177014,-0.5224948,-0.8091942,0.47214982,-0.6694669,0.10519979,-0.21447836,-0.33970648,-0.27295563,0.27690652,0.12642747,-0.015202809,0.07326296,-0.5304049,-0.047785375,0.25703815,-0.31705052,-0.23184417,-0.35627058,0.3797364,0.9054295,-0.2141936,-0.39007196,-0.0019793361,0.388864,-0.34185502,-0.68570477,0.084313154,-0.087449655,0.3679357,-0.023907585,-0.3132263,0.072922155,0.17741786,-0.6003341,0.15636645,0.06498968,-0.23638101,0.095245406,-0.22276206,0.070566505,0.7751831,-0.28424472,-0.24349967,-0.4774042,-0.47253326,-0.65824723,-0.3045793,0.35914847,0.06496479,0.016100137,-0.4901928,0.18237859,-0.21084954,0.033199634,0.002491615,-0.27056918,0.2197071,-0.08547816,0.5189963,-0.33221123,-1.0287724,0.29268712,-0.027855776,-0.00990934,-0.68022823,0.505403,-0.28571603,0.81329197,0.010256538,-0.18481177,0.033337984,-0.5146565,0.25559482,-0.28205326,-0.12039859,-0.82248515,0.3026322,198 -929,0.38148507,-0.16403343,-0.56628686,-0.0935021,-0.5021137,-0.10930628,-0.08554264,0.560614,0.34076056,-0.24530534,-0.19358034,-0.022983974,-0.2985682,0.2114494,-0.12992388,-0.67579997,-0.072663955,0.4477023,-0.69406873,0.53505313,-0.31126478,0.04913594,-0.057179306,0.4290718,-0.031870246,0.071572594,-0.096556455,0.14764154,-0.030090652,-0.20897657,0.31033766,0.21371202,-0.9239525,0.48373273,-0.24903752,-0.27671087,-0.18126398,-0.6845118,-0.28067452,-0.8527512,0.28417876,-0.5527907,0.5644109,0.10744498,-0.34070495,-0.3046409,0.19782472,0.17216863,-0.14707188,-0.11642169,0.39971897,-0.1398815,-0.35983783,-0.015924508,-0.15617809,-0.14269668,-0.70747,0.034470882,-0.45820853,0.21739173,-0.09301155,0.2996399,-0.19035739,-0.09456446,-0.4113882,0.7839287,-0.46375915,0.1885426,0.22431412,0.14711998,0.2295596,-0.57405263,-0.107832216,-0.3538886,0.16987163,-0.04672109,-0.57150453,0.44603586,0.30848908,0.5587837,-0.03402631,-0.30057243,-0.27673152,0.20575537,0.14021243,0.391726,-0.34587938,-0.15663508,-0.14338753,-0.010964057,0.3213944,0.26966837,0.017705781,-0.44305107,0.1338631,-0.273153,-0.010493728,0.47635058,0.49983722,-0.09684685,-0.18513387,0.29465684,0.41836226,0.21387267,-0.013323751,0.1699099,0.13603117,-0.6620214,-0.33226484,0.31302407,-0.22612444,0.43611735,-0.19259387,-0.05436654,0.6518713,-0.12282142,-0.43237182,0.11261132,0.23224415,0.2518879,-0.30906856,-0.54322094,0.47669113,-0.48518226,0.19373713,-0.18084201,0.5426207,0.051020253,-1.0391036,0.19760355,-0.7565643,0.09996284,-0.0028050407,0.6279346,1.0509275,0.778928,0.41650257,0.8059679,-0.3058595,0.21520422,0.18726183,-0.091219634,0.11557527,-0.20500007,0.05873905,-0.44491225,-0.34004653,-0.41885507,-0.37900135,0.084193654,0.41915178,-0.5445495,-0.28014377,0.05370265,0.7346383,-0.2806591,-0.23476982,0.8819942,1.1625241,1.2266381,0.25115848,1.4799255,0.03566442,-0.11406441,0.069738016,-0.11462858,-0.9263435,0.22612526,0.19049063,-0.3018594,0.24072923,0.12938139,0.046659723,0.5327289,-0.71195215,-0.06671105,-0.123472475,0.37570545,-0.15285902,-0.070280194,-0.41188785,-0.42772505,0.039482024,0.03597556,-0.22002983,0.3937032,-0.11864621,0.37158403,0.12849024,0.9387278,0.09117483,0.13012443,0.117587395,0.17084683,0.10732401,-0.2684304,-0.3385131,0.2395411,0.20969701,0.04110624,-0.5967003,0.067582205,-0.33059165,-0.2457364,-0.26949483,-0.1618163,-0.05971111,-0.30197814,-0.345096,-0.42115366,-0.0060010445,-0.25793603,0.49168473,-2.141081,-0.11324267,0.035803784,0.3830283,-0.054784384,-0.26862705,-0.24727844,-0.5051117,0.41337326,0.2137172,0.5725154,-0.65167123,0.41179276,0.30729005,-0.7183131,-0.036503986,-0.8698736,-0.108072884,0.0884214,0.09573543,-0.08853919,0.031204028,-0.24425611,0.028545676,0.47267482,0.022870844,0.10937254,0.50720257,0.4371519,-0.020538889,0.37327355,-0.060647074,0.42042896,-0.50435597,-0.37774286,0.3233272,-0.43563727,0.3748984,0.07223683,-0.07621808,0.6348769,-0.6954947,-0.9210029,-0.71923465,-0.5263387,0.9991299,-0.22921439,-0.18418069,0.17837195,-0.62416637,-0.19405866,-0.028548243,0.64922106,-0.15202561,-0.046970066,-0.8271892,-0.28717962,0.14494146,0.5184375,-0.12254086,0.047799096,-0.41878936,0.6513295,-0.2559572,0.34306234,0.6426636,0.042861894,-0.6398906,-0.6738108,0.13278228,0.80735815,0.5456842,0.11644383,-0.24729644,-0.115608,-0.29052818,-0.009837595,-0.05403228,0.8517597,0.5592928,-0.30579168,0.075169295,0.4663347,-0.26786298,0.09003901,-0.20360284,-0.34450883,-0.33295125,0.0089197,0.6094962,0.8005609,0.018047772,0.38733646,-0.10400763,0.18157287,-0.00011255254,-0.4722594,0.39990455,1.0393215,-0.1764719,-0.23956423,0.78444237,0.41193935,-0.33213556,0.5125052,-0.44010332,-0.17039451,0.34569097,0.12757513,-0.4157189,-0.12761721,-0.38797104,0.18663901,-0.9073,0.52090716,-0.5051471,-0.8168682,-0.7979613,-0.016716236,-2.061126,0.19477202,-0.33389208,0.0017609055,-0.08131898,-0.21567431,0.27763864,-0.5530994,-0.827212,0.15681197,0.08909262,0.49934804,-0.20820111,0.1053926,-0.14345384,-0.42031842,-0.18116146,0.39631528,0.70723015,0.3006558,-0.0033137149,-0.4086934,-0.032561313,-0.281063,-0.353294,-0.22716756,-0.8073221,-0.59171253,-0.14741626,-0.95526373,-0.3325724,0.72001594,-0.52125835,-0.15566286,-0.19698097,-0.023828458,0.08139309,0.27412862,0.12931484,0.42750913,-0.027875386,-0.13071573,-0.41361457,-0.009680823,0.20284066,-0.014637343,0.17298488,0.4308077,-0.15728933,0.51206505,0.5680082,0.9231945,-0.15040445,1.0276965,0.55550456,-0.10879329,0.14328112,-0.24292308,-0.3322661,-0.7140287,-0.10441677,-0.23452897,-0.4683528,-0.36803588,0.254023,-0.45652235,-0.91880345,0.618834,-0.06788974,-0.12852322,0.23079894,0.11946089,0.30264872,-0.22163586,0.058218077,-0.34830818,-0.18498594,-0.39874098,-0.5902722,-0.656671,-0.6316295,-0.17446704,1.8166523,-0.08018537,0.12503968,0.30698967,-0.38983792,0.050795916,0.12668124,-0.15817569,0.17547627,0.42841384,0.26216373,-0.504347,0.089549996,0.038076185,0.027230626,-0.5698057,0.379483,0.86533254,-0.7376182,0.8368851,0.3237286,-0.083450936,-0.24885374,-0.83067954,-0.3841049,0.12121479,-0.22186762,0.55254537,0.37082988,-0.7399935,0.4171858,0.103832595,-0.39425784,-0.919023,0.47554156,-0.06171223,-0.048393294,0.13890827,0.43853852,0.021652712,-0.058049012,-0.16320866,0.5952897,-0.10721955,0.3420519,-0.07028243,-0.18111481,0.019191742,-0.41096982,-0.12446635,-0.8353842,0.1335107,-0.573354,-0.4876517,0.28700525,0.07291264,-0.09024886,0.24093547,0.50980383,0.43626326,-0.14046277,0.14209732,-0.29083708,-0.4688473,0.17256528,0.57283086,0.49318168,-0.3737898,0.57889783,0.03608865,0.0062706093,-0.33953813,0.15270714,0.31228474,-0.070570305,0.2794437,0.07784086,-0.07618472,0.020743402,0.9301016,0.11266823,0.39658755,-0.0001866384,-0.08585489,0.42951086,-0.032176927,0.3645252,-0.25441638,-0.5010073,0.095325775,-0.15142614,0.05877993,0.45690736,-0.013145796,0.16583626,-0.29998407,-0.29037923,0.05126447,0.18743557,0.23997688,-1.575201,0.44241562,0.08712968,0.6842595,0.70524734,0.15170978,0.025901074,0.7082427,-0.25820965,0.023247588,0.64604205,0.008734957,-0.25000712,0.45484307,-0.703797,0.5507443,-0.15324682,0.043142773,0.21880946,0.040613744,0.43612936,0.77236366,-0.080004595,0.12118824,0.035796225,-0.15766379,0.15821485,-0.26819485,0.25322434,-0.53762776,-0.44252107,0.79605204,0.5105621,0.331026,-0.30288947,0.017200138,0.07936413,-0.26833475,0.32513642,-0.0769414,-0.36167058,-0.07769528,-0.5260502,-0.09401669,0.7051011,-0.25401384,-0.0011009953,0.2602474,-0.078802325,0.27652708,-0.018539883,0.0100103235,-0.14351235,-0.9851116,-0.3233653,-0.64887637,-0.14239532,0.26982424,-0.50251174,0.019526029,0.13196093,0.23104735,-0.51740384,0.6007393,0.23501247,0.7008597,0.06848349,0.059167694,0.21041924,0.30425647,0.1994935,-0.20014256,0.12538098,-0.28145412,0.15453841,-0.59261686,0.56242794,-0.078715585,-0.42639494,-0.08816468,0.06481204,-0.09849275,0.4390252,-0.06647286,-0.16007967,0.06456887,-0.20920776,-0.29473355,-0.16731097,-0.26708066,0.31063703,0.1912828,0.11638225,-0.16533722,-0.115410835,-0.23947452,0.4937339,0.1892717,0.21590701,0.34641275,0.1516809,-0.5781553,0.07733124,-0.013182854,0.62240624,0.014810541,-0.21678708,-0.3682414,0.18508501,-0.18516959,0.31665742,-0.10027964,0.3670592,0.003093137,-0.48457956,0.9545923,0.22234932,1.2803477,-0.06559859,-0.35826316,-0.04704149,0.463014,-0.15482189,-0.15489559,-0.2752076,0.8515039,0.6493351,-0.22552441,-0.17795236,-0.38866755,-0.21322113,0.15292431,-0.15706943,-0.2733312,-0.08651,-0.7122141,0.057173252,0.24038324,0.23497868,-0.006705142,-0.19032536,-0.031878185,0.08277114,-0.107983716,0.09592509,-0.4026191,0.20397097,0.31264615,0.59689933,0.065668344,0.2038628,-0.21175328,0.40647122,-0.7684319,0.41763544,-0.36725938,0.101849645,-0.23503986,-0.28326824,0.043445673,0.08886793,0.26216888,-0.14220208,-0.1392665,-0.3209068,0.7440802,0.22456041,0.23582739,0.9352138,-0.26077938,-0.043343157,-0.026464462,0.4890684,0.87294096,-0.38013658,-0.20614992,0.055408403,-0.19725217,-0.46482122,0.4124399,-0.66287035,-0.060235653,-0.12801649,-0.20624839,-0.4944623,-0.012784478,0.19146647,0.19710898,-0.17553288,-0.75195104,0.25500843,0.43573388,-0.04497522,-0.1181539,-0.33037177,0.306266,0.8557444,-0.11596315,-0.4994601,-0.020242237,0.2624613,-0.20747961,-0.39063913,0.056503892,-0.6279978,0.1369218,-0.045974992,-0.43670645,-0.01077199,0.017927462,-0.47200254,0.042190325,0.2946822,-0.23486833,0.08091027,-0.12474439,0.0060378965,0.9807586,-0.053344704,0.37268278,-0.23311344,-0.669113,-0.99106634,0.08195592,0.12191666,0.47270393,-0.058089558,-0.6768582,-0.14659129,-0.111845754,-0.2678076,0.07864442,-0.5258486,0.47352713,0.22393483,0.3775569,-0.19222169,-0.8748722,0.09550223,0.2245631,-0.01627804,-0.32209295,0.45268822,0.07577453,1.0556295,0.070367545,0.03722987,-0.12984586,-0.5901698,0.312698,-0.27342656,-0.093762755,-0.39440182,-0.14659575,207 -930,0.34862882,-0.2425614,-0.72098863,-0.1476869,-0.2431171,0.19051394,-0.3216853,0.12851691,0.42616102,-0.50674146,0.042660255,-0.2904563,0.063643135,0.28780887,-0.13516697,-0.743252,-0.1565683,0.3660411,-0.22569782,0.33878836,-0.3720794,0.31126297,0.3287429,0.39136553,-0.13858347,0.049357966,0.3533312,-0.30912378,-0.16226928,-0.53338474,-0.059890684,-0.13509284,-0.7122247,0.2808654,-0.1669958,-0.18324834,0.24278833,-0.4286936,-0.39605153,-0.69961077,0.36759904,-0.95648444,0.8841164,0.13951449,-0.14883512,0.13885735,0.31946558,0.07688308,-0.02016993,0.27943724,0.35011554,-0.55030584,-0.5186556,-0.21056956,-0.34047413,-0.6243633,-0.6734205,-0.14601716,-0.49827892,-0.09744525,-0.49320272,0.34951243,-0.33999944,-0.009664568,-0.22676225,0.5218265,-0.31765854,-0.1655318,-0.12143776,-0.43815377,0.42866465,-0.7975985,-0.12805603,-0.07593956,0.007995096,0.11152923,-0.056589022,0.14321545,0.123359464,0.40492153,0.08281843,-0.24172892,-0.47184646,-0.04159784,0.12102905,0.56081814,-0.21112837,-0.39112636,-0.18816067,0.037172142,0.49989355,0.16775304,-0.0935013,-0.4162761,0.11980268,-0.23807034,-0.25386325,0.7129972,0.64343053,-0.20141731,0.26431262,0.31450847,0.17930041,0.29572532,-0.11976112,0.08212744,-0.04512506,-0.4446745,-0.0916395,0.13166666,-0.29363117,0.63571554,-0.13277403,0.06717292,0.62230617,-0.2041463,-0.012875303,0.017838685,0.14952634,0.0862785,-0.09776902,-0.253437,0.48858902,-0.4470621,-0.06745973,-0.58605295,0.8625828,-0.19345576,-0.81791615,0.33541694,-0.5770457,0.10936501,-0.21264262,0.7772757,0.5733636,0.8625151,0.15168108,0.88450885,-0.36286563,0.17136365,-0.02619247,-0.32727468,0.26024222,0.122389205,0.17345859,-0.45215848,-0.07335859,-0.18581416,-0.15324391,0.023921115,0.66106147,-0.3197587,-0.13968095,0.1750617,1.0198547,-0.34365046,0.0029593597,0.39727372,1.4878582,0.8108513,-0.015075654,1.4477787,0.13378328,-0.23954608,-0.49899703,0.12932533,-0.9504339,0.12720394,0.35222757,0.08272392,0.0941968,0.28075588,-0.02777818,0.34999874,-0.6014674,-0.2631617,0.008474719,0.35792246,-0.09044948,-0.14019077,-0.44036695,-0.10859155,0.32057732,0.1864626,0.23679656,0.33715156,-0.31500053,0.48957264,0.18635978,0.93511623,-0.2061634,0.08525772,-0.06733372,0.38459322,0.14960217,0.20703055,0.13583463,0.157745,0.39293683,0.06403015,-0.58458686,-0.022030098,-0.07610598,-0.4767885,-0.4523489,-0.1508054,-0.058903825,-0.12187858,-0.10351873,-0.3806546,0.13013405,-0.5218994,0.27161816,-2.3178353,0.043784786,0.04245899,0.42558458,-0.018005459,-0.23750778,-0.060291722,-0.40499738,0.77555466,0.3074076,0.5109611,-0.4503977,0.40828755,0.61118865,-0.43864536,-0.2520356,-0.67009884,-0.12591672,-0.3094847,0.5067964,0.08617518,-0.44719136,-0.13316402,0.25483286,0.6634762,0.20324607,0.23542951,0.21970691,0.47866553,-0.16596887,0.48023227,-0.060654357,0.6124697,-0.11994052,-0.23267795,0.15744658,-0.3076273,0.12931833,-0.5550714,0.068750136,0.39642698,-0.38641107,-0.7189457,-0.4353404,-0.03455268,1.1872772,-0.46090928,-0.9427671,0.2615476,0.2006252,-0.13437237,0.33441374,0.45911214,-0.3733301,0.12757793,-0.7341654,0.014312821,-0.122943096,0.29327258,-0.0024974414,0.10091709,-0.76363236,0.8881846,-0.17158224,0.5088184,0.6116443,0.36735937,-0.32291967,-0.6057985,0.23686689,0.98809916,0.4021354,0.03996418,-0.33502325,0.02369522,-0.086310655,-0.35115167,-0.040950473,0.72454095,0.9330273,-0.1060472,0.06348397,0.31307608,-0.3901045,0.023798162,-0.103132084,-0.745102,-0.17462236,-0.10651097,0.6845122,0.5526949,0.033403374,0.46047097,-0.05849582,0.7413304,-0.17705896,-0.33668897,0.6154773,1.0861739,-0.18963741,-0.1371785,0.97300756,0.52187914,-0.23908973,0.608551,-0.73209095,-0.5310212,0.45736617,-0.008985118,-0.7083841,0.17574495,-0.4631221,0.00055206905,-1.1403431,0.35961232,-0.20211996,-0.6841187,-0.6943293,-0.331226,-2.9034927,0.06247938,-0.54216826,0.046628322,-0.32154667,-0.0060899314,0.26995027,-0.41992322,-0.58523154,0.12678042,0.1975627,0.51134396,-0.16670987,0.18541393,-0.18703292,-0.11873138,-0.020717047,0.43412,0.2054957,-0.12634635,0.0047116983,-0.5339339,0.22637601,-0.21916999,-0.29070985,-0.12070658,-0.48144618,-0.1544807,0.051358998,-0.6744009,-0.31487882,0.5582779,-0.5562651,-0.16906959,-0.31321195,0.25340703,0.08602391,0.22955702,-0.24345355,0.35659006,0.09473465,-0.13842903,0.1423513,-0.17072493,0.22626644,0.15349928,0.16222285,0.44035622,-0.16240126,-0.13315701,0.620349,0.47653922,-0.16967875,1.0443372,0.4459035,-0.22058764,-0.0121054975,-0.3556735,-0.47195676,-0.6752624,-0.19220716,0.012733817,-0.46041203,-0.23502478,-0.01958432,-0.36553183,-0.8987066,0.67690253,0.21628116,-0.057783544,-0.037234303,0.29397365,0.26314905,0.0020529493,-0.06916228,-0.23748149,-0.11286106,-0.37926102,-0.14986916,-0.79383564,-0.33580273,-0.2774515,1.1117369,-0.06161434,-0.12278405,0.33362657,-0.16810133,0.14907669,0.15357676,0.066188425,0.21339975,0.5594869,0.3810875,-0.9266481,0.40357444,-0.27800408,0.14176339,-0.8866568,0.16353844,0.61413133,-0.8963747,0.32241714,0.76715356,0.20622416,-0.39362317,-0.688898,-0.27679077,0.2621741,0.010765564,0.40733662,0.02832946,-0.63927174,0.8606236,0.30200663,-0.20123424,-0.8063174,0.3927599,-0.0400085,-0.34356305,0.07917158,0.40998796,-0.033163562,0.1640541,-0.33405802,0.2319943,-0.2501074,0.56175405,-0.059402738,-0.05008799,0.4766537,-0.19693056,-0.16376938,-0.9851431,0.10049265,-0.3804289,-0.3157223,0.25403446,0.0031467623,0.058173403,0.27672604,0.08720712,0.41890147,-0.41796312,0.13756509,-0.28751996,-0.3508303,0.6185699,0.4806839,0.3617852,-0.39368182,0.8017463,0.034824505,-0.30090964,-0.2328319,-0.13892837,0.45120466,0.011934594,0.3946748,0.041842844,-0.14673692,0.18466191,0.8395168,0.06767017,0.34092474,0.17603672,-0.023087831,0.54555213,-0.092207,0.16955541,-0.09057468,-0.7415453,-0.19446464,-0.22056602,-0.023792136,0.42287654,0.28573787,0.74002516,-0.09106739,-0.11878573,0.07090823,0.040263478,0.087309435,-0.93963224,0.41028702,0.16891031,0.5344706,0.60924417,0.064310044,0.18385229,0.8034782,-0.30040896,-0.10416773,0.26516446,0.18245354,-0.18670025,0.60211486,-0.601307,0.16001818,-0.2676867,0.10544805,0.20459796,0.13680865,0.5011607,1.125624,-0.1267733,0.18046027,-0.054026898,-0.099761195,-0.011371165,-0.27931193,0.18610169,-0.23763813,-0.40030086,0.82357234,0.17870575,0.4111107,-0.17599483,-0.15503234,0.4211665,-0.12222524,0.41794488,0.12814215,-0.25611025,0.0034356334,-0.72473055,-0.18204013,0.5192632,0.38154414,0.019304514,-0.037382547,-0.09393323,0.3569438,-0.026820077,-0.25081024,-0.0325825,-0.5247241,-0.20457385,-0.382018,-0.59289324,0.31012508,-0.09010622,0.22513662,0.040726032,-0.043446336,-0.023338003,0.030472403,0.41282034,0.6571219,0.31680477,-0.3749015,-0.14936465,-0.28467488,0.16896053,-0.3116862,-0.16797315,-0.1563654,0.18831353,-0.6073607,0.4577734,-0.6369017,-0.34280097,0.3524597,-0.41548574,-0.21238221,0.39420292,-0.096669264,-0.08671873,0.6663393,-0.058570568,-0.211385,-0.34652594,-0.52717537,-0.024583517,-0.28824338,-0.11789942,-0.31985885,-0.16682325,-0.22983271,0.3266084,0.16349143,0.11069905,0.39590606,0.30899718,-0.41714647,-0.26841205,0.026604118,0.67702365,-0.28207806,0.05902525,-0.2637998,-0.50604796,-0.27279755,0.054789305,-0.12744409,-0.017249541,0.14405802,-0.4449596,0.85676,-0.029385038,1.0121169,-0.15386955,-0.47699234,-0.008757147,0.67202747,-0.1188255,0.024693608,-0.5173541,1.1608325,0.7854626,-0.19708386,-0.3257009,-0.9591828,0.12162199,0.40036538,-0.31586823,-0.38161704,-0.32853886,-0.69549775,-0.3481436,0.3490033,0.2983317,0.008818606,-0.04715886,0.2808158,0.2640154,0.26270536,0.3923009,-0.71277446,0.037360128,0.46325186,0.1792122,0.0096342405,0.22782773,-0.28283122,0.13746575,-0.4857089,0.1545222,-0.48428395,-0.10766497,-0.07562726,-0.20349954,0.24550605,0.004479414,0.13056467,-0.24434708,-0.19172853,-0.08230898,0.5682928,0.08590882,0.30199406,0.7170857,-0.15519439,0.052725777,-0.08332863,0.6289553,1.3841217,-0.36592302,0.29696968,0.30801082,-0.38442668,-0.55030364,0.25476804,-0.34281206,-0.19200724,0.041811977,-0.4630785,-0.62249225,0.16584063,-0.18803245,-0.27187067,0.186592,-0.22841696,-0.21614335,0.36650077,-0.19565023,-0.21138836,-0.043015834,0.046423838,0.6072285,-0.25612468,-0.13295613,-0.15890317,0.3264631,-0.31733704,-0.6961459,0.061665222,-0.36038625,0.4480677,0.2564611,-0.35639358,-0.0092502665,0.15468857,-0.6789912,0.025391113,0.2932162,-0.21275754,-0.022548482,-0.30625063,0.26461914,0.5751569,-0.20436253,0.09333501,-0.7015986,-0.56525785,-0.9548527,-0.039325118,0.0664197,0.1805657,-0.05321674,-0.78471684,-0.089419775,-0.31284487,-0.096374676,-0.17054339,-0.7156057,0.223497,0.09946448,0.7224709,-0.3200951,-0.8378912,0.21915509,0.13012472,-0.416286,-0.5533999,0.6764594,-0.023897069,0.8368173,0.13230024,0.019048238,0.1429697,-0.7319639,0.3187707,-0.11654537,-0.33873776,-0.73460096,0.20297828,216 -931,0.17526369,-0.118611075,-0.43132076,-0.2214375,-0.28477427,-0.06371226,-0.15470363,0.505992,0.34201252,-0.40631822,-0.20887613,-0.11543586,0.15957013,0.40206796,-0.14734426,-0.6324327,0.117709875,0.23750524,-0.44536182,0.6585632,-0.36156628,0.18504196,-0.03150668,0.27931213,0.39307973,0.31670514,0.007945093,-0.11599171,-0.18902382,-0.31050918,-0.07509236,0.3951589,-0.35649163,0.62769276,-0.1356494,-0.20792995,0.05504012,-0.5375711,-0.35888568,-0.79292446,0.07462288,-0.7459088,0.3759414,-0.044262853,-0.371852,-0.0032999455,0.53583854,0.35100374,-0.1038225,-0.16447009,0.17099375,-0.22850719,-0.18672103,-0.15779136,-0.2117962,-0.5466749,-0.57644457,-0.20247746,-0.393649,-0.3341775,-0.608872,0.24157186,-0.3965313,-0.20465331,0.019718414,0.60283816,-0.52465653,0.43393365,0.0851328,-0.18050598,0.24589801,-0.5731117,-0.19930352,-0.27526468,0.31669796,-0.17989358,-0.44759896,0.4861221,0.5016353,0.053643372,-0.01598596,-0.07822859,-0.33641765,-0.3693917,0.4490185,0.4913708,-0.07402962,-0.5002174,-0.093587585,-0.107026726,0.1678527,0.3326926,0.2479313,-0.33753574,-0.179288,0.07173734,-0.34037217,0.54727566,0.27359632,-0.23534909,-0.20812201,0.25755244,0.5815857,0.26308286,-0.35650662,0.025988542,0.09295952,-0.51834273,-0.1374996,-0.074050404,-0.28693944,0.5319207,-0.2690374,-0.0052795517,0.76543754,-0.26029208,-0.20565967,0.05067198,0.33130753,-0.16908377,-0.27379444,-0.27320126,0.2710575,-0.48899698,0.13116628,-0.060918607,0.81209284,0.15084675,-0.5466349,0.32644096,-0.6675911,0.112289645,-0.16879363,0.36903325,0.5743594,0.48533952,0.529211,0.5031224,-0.20420271,0.0695059,0.13910943,-0.37734553,0.26729205,-0.48793766,-0.040087763,-0.58409536,0.030998338,-0.06667514,-0.1714289,0.21503568,0.50836694,-0.51213694,-0.09108228,0.21791993,0.8817788,-0.2408954,-0.25301516,0.6904832,1.0249223,1.107359,0.12332807,0.9707195,0.14735575,-0.20747904,0.024760902,0.08417875,-0.5728404,0.2871644,0.40742198,-0.33905917,0.08481124,0.16125299,0.19716492,0.39671758,-0.3491255,-0.06694416,-0.078179814,0.33663824,0.14250304,-0.31075555,-0.4784384,-0.47167188,-0.24683051,-0.03129275,-0.13039224,0.3154682,-0.026046999,0.6123484,0.17339116,1.6412644,0.118900135,-0.023963284,-0.058695782,0.50694853,0.2680537,-0.20670106,0.030519776,0.47231314,0.0928464,0.23399638,-0.469007,0.19223776,-0.22909106,-0.33580735,-0.017997026,-0.5337336,-0.25091788,-0.001336561,-0.3129113,-0.15253948,-0.15184647,-0.16928948,0.61465055,-2.7480125,-0.10976785,-0.07380316,0.34885713,-0.026612906,-0.23113818,0.05740493,-0.48581523,0.39305124,0.2103056,0.668915,-0.65551823,0.18508019,0.5747969,-0.7102476,-0.23794135,-0.5305328,-0.2656601,-0.08954479,0.3427546,0.03467561,0.19705935,0.21806747,0.14965925,0.490767,0.041684527,0.27663505,0.3320916,0.30277303,-0.16999362,0.65303254,-0.062214192,0.59478384,-0.05444622,-0.2956838,0.25920668,-0.43364584,0.4265748,-0.06853464,0.08803756,0.74892104,-0.3403703,-1.0195683,-0.64089817,-0.24650253,0.97107106,-0.33048522,-0.39651147,0.39185134,-0.45186388,-0.30396897,-0.05219598,0.4631678,0.07608444,0.22041234,-0.7136467,0.038643833,0.012580774,0.12944265,0.037980914,-0.22632408,-0.38427565,0.80366975,0.054953158,0.4606763,0.21753,0.04849894,-0.6751716,-0.38186482,0.011543101,0.82020384,0.39386863,0.1286303,-0.30183855,-0.32931924,-0.58580405,-0.21265553,0.13531783,0.65069985,0.37584513,-0.26857898,0.14868157,0.37302455,-0.09689799,0.08592069,-0.1521505,-0.43317345,0.060131494,0.19546348,0.48703498,0.7998102,-0.2069624,0.63065153,0.13125896,0.30442107,-0.05057399,-0.595215,0.36680642,1.2243102,-0.092436716,-0.44789103,0.76237833,0.3717941,-0.28767997,0.45059967,-0.3855797,-0.1698424,0.6953606,-0.072420955,-0.48175433,0.027981723,-0.32487437,0.06927276,-0.7528244,0.4046454,-0.34105828,-0.68191075,-0.5141895,0.0008741211,-3.4757433,0.28004032,-0.09287741,-0.29009783,-0.09602508,-0.022355584,0.10426979,-0.8058775,-0.6409082,0.1815844,0.032005344,0.8023067,-0.23528747,-0.05561869,-0.19377719,-0.37807357,-0.066722356,0.19364247,-0.0018632412,0.4622912,-0.17762138,-0.49141702,-0.048700605,-0.06415264,-0.47543213,0.102716275,-0.5368152,-0.60051066,-0.20664263,-0.78654444,-0.30775878,0.7773966,-0.5408429,-0.0052107843,-0.13370779,0.12742537,-0.14826041,0.11128626,0.3226508,0.23086667,0.03775865,-0.0038082926,0.017902851,-0.18552142,0.34569943,-0.050744936,0.4244944,0.30463865,0.06560599,0.3117257,0.67943805,0.7386532,-0.11529685,1.0930051,0.36956614,-0.15759869,0.113525845,-0.31298873,-0.49243757,-0.49115896,-0.3006386,0.11261999,-0.41978976,-0.31932643,-0.07642606,-0.27257106,-0.7594356,0.7223633,0.16839825,0.16927162,-0.11723594,0.056284178,0.34945166,-0.13758065,-0.09878549,-0.1025073,-0.1804331,-0.7987911,-0.16958708,-0.59329796,-0.4976428,0.24194856,0.7892247,-0.46410915,0.099876665,0.02246513,-0.29031226,-0.026752071,0.36453012,-0.114936374,0.10479215,0.4818247,-0.09210324,-0.60287553,0.50996983,-0.16532977,-0.22505088,-0.55628437,0.4808497,0.6829853,-0.559808,0.64538294,0.38768956,-0.07153326,-0.33654737,-0.474352,-0.35944587,-0.1494521,-0.18405738,0.39131117,0.251301,-0.8411041,0.17789534,0.23737563,-0.5249026,-0.62425846,0.6886833,-0.2173328,-0.103086516,-0.08136778,0.42092946,0.19506198,0.04505429,-0.1479761,0.3241954,-0.33804312,0.16264898,0.2356084,-0.020687707,0.111473195,-0.20107864,-0.15338412,-1.002408,0.03731267,-0.37532148,-0.44327337,0.384387,0.040665966,0.03442307,0.20093927,0.18802786,0.21624042,-0.24180189,0.07290471,-0.12023737,-0.26792496,0.4021612,0.48454607,0.63670003,-0.4213812,0.59547395,0.16786303,0.079665296,0.07758251,0.079949506,0.27082595,0.12640128,0.6084942,0.11262257,-0.27659312,0.12715061,0.95213413,0.23987488,0.5280742,0.016401459,-0.060255397,0.04644161,0.016943855,0.35196775,0.1495863,-0.6575678,0.10551096,-0.49061635,0.117075875,0.6141553,0.12675768,0.20778097,0.08916065,-0.5494181,0.10257647,0.2748056,0.28792986,-1.5472916,0.51166165,0.33123544,0.92706853,0.37795562,0.19472603,-0.08152535,0.8561259,-0.16490275,0.16245122,0.32599476,0.07859147,-0.4567969,0.67243344,-0.9043486,0.5929833,-0.062888116,-0.03919095,-0.053668775,-0.03365369,0.41507205,0.8174385,-0.28265497,-0.058401596,0.16164479,-0.44968936,0.29412967,-0.55925816,0.11236167,-0.4170721,-0.40970194,0.6015573,0.6132084,0.36488488,-0.17169777,0.11317403,0.12868959,-0.17352547,0.20979346,0.10435278,0.10922458,-0.05545008,-0.69479126,-0.08758976,0.6588379,-0.3407236,0.3616487,0.04575086,0.13085285,0.41298988,-0.13014303,0.0873525,-0.06907255,-0.72914314,0.05100341,-0.25615397,-0.6559276,0.6468626,-0.20701951,0.14339325,0.15395346,-0.002960709,-0.061497297,0.7494524,0.18445323,0.72498965,0.07994963,-0.06454984,-0.1668158,0.14737347,0.11313858,-0.11090171,0.12918468,-0.3842864,0.10305774,-0.533458,0.43427172,-0.026390763,-0.50522876,-0.24921994,-0.08994809,0.056507107,0.4811822,0.049122766,-0.24357046,-0.21319653,-0.17689036,-0.21243763,-0.21302375,-0.04848151,0.29781997,0.22603394,0.023316002,-0.19198762,-0.16830207,-0.2958105,0.010818644,-0.33054522,0.5520771,0.35831213,0.035444953,-0.2434835,-0.17366572,0.12670302,0.3955759,-0.09863129,-0.17888866,-0.11954535,-0.30797628,-0.54366153,0.15899456,-0.1002882,0.5496884,0.16180521,-0.4191078,0.6922048,-0.3905091,1.2534012,-0.03957558,-0.61303574,0.28738537,0.43210995,0.02675374,-0.0337226,-0.17107543,0.83884275,0.49351108,-0.06355996,-0.07844572,-0.55652195,0.033170234,0.1786149,-0.20456795,-0.2565831,0.15225516,-0.563892,-0.05257939,0.30960804,0.21323456,0.3431091,-0.12568437,0.0079204,0.4817191,0.107699916,0.23543516,-0.50460076,-0.1644442,0.27828434,0.4295936,0.09592898,0.10253727,-0.4187841,0.41152573,-0.50802237,0.20119077,-0.5175383,0.25839984,-0.5714043,-0.32301468,0.18358497,0.085635185,0.460075,-0.22263032,-0.28269994,-0.31855378,0.5859148,0.07251268,-0.0050067375,0.5140129,-0.24066238,0.0339104,0.10882418,0.37473536,0.74562,-0.43434438,-0.29696777,0.44269636,-0.5345974,-0.5434248,0.4085044,-0.62106395,0.2681185,0.20921141,-0.17197704,-0.6060159,0.033830173,0.26286945,0.17244394,0.043469448,-0.5786343,0.019948525,0.15280521,-0.47495106,-0.17903961,-0.2697692,0.21943521,0.34376028,-0.30426157,-0.3923581,-0.023725716,0.026607232,-0.21108575,-0.4936797,-0.084297985,-0.20128976,0.40140188,-0.088149264,-0.38559315,-0.15225402,0.11625431,-0.43892834,0.1978531,-0.037441686,-0.29066756,0.295866,-0.18841483,-0.023413874,0.8839747,-0.3920804,0.010610467,-0.576199,-0.5241754,-0.5153172,-0.27508456,0.35373572,-0.05108221,-0.08727198,-0.6519506,-0.16741954,-0.04193546,-0.097508796,-0.13754466,-0.39812985,0.43616316,0.123756744,0.33354878,-0.027352648,-1.0386761,0.24987644,0.16002284,0.20285009,-0.937884,0.46113223,-0.42279485,0.88475764,0.09716952,0.11521708,0.24051355,-0.21258926,0.0151646575,-0.14916779,-0.42294243,-0.51925236,-0.022338657,284 -932,0.45674267,-0.15614991,-0.51215583,-0.08574081,-0.37183523,-0.0071070683,-0.078133516,0.7549631,0.37447822,-0.41047165,-0.28985608,-0.06317583,-0.017711418,0.43090516,-0.17138956,-0.67193115,-0.08487744,0.18267323,-0.29057038,0.5938557,-0.21202712,0.47417602,-0.16512363,0.42447472,0.37697947,0.29592654,0.19763446,0.16245954,0.07427433,-0.43394583,-0.24321595,0.15730889,-0.35357943,0.10921946,-0.1654364,-0.47884533,0.09386783,-0.45103845,-0.4861288,-0.8177237,0.394481,-0.95120376,0.7254007,-0.033372935,-0.2581855,-0.0041523306,0.03258646,0.39213753,-0.0011747751,0.07819741,0.062895596,-0.19042373,0.20662731,-0.2605224,-0.33228686,-0.45935717,-0.37794334,-0.26546976,-0.34696046,-0.27616602,-0.2555175,0.21875161,-0.29855892,-0.035141166,-0.41623536,0.2880664,-0.5013644,0.013598258,0.024603032,-0.3958514,0.048591528,-0.7815778,-0.1968542,-0.19659299,0.063133895,-0.08443523,-0.16484834,0.40943202,0.13140923,0.25359127,0.028756263,-0.095518805,-0.1004212,-0.22395667,-0.024817629,0.5581426,-0.0385751,-0.34642324,-0.19388212,-0.18913239,0.6517223,0.43713856,0.1390267,-0.16805613,0.016718723,-0.12608862,-0.28802767,0.5193004,0.5529448,-0.2230952,-0.060562443,0.346755,0.52912,0.26787785,-0.38760427,0.16104446,-0.07663846,-0.3021758,-0.0825771,0.0908335,-0.23149252,0.63242674,-0.07012859,0.20361558,0.71264493,-0.23130402,0.13425583,-0.09870765,0.10721325,-0.23931406,-0.36996824,-0.57323605,0.25453904,-0.5028051,0.54079384,-0.36157933,0.6965835,0.10736056,-0.22491856,0.34480447,-0.60414886,0.24906562,-0.117361076,0.57145846,0.37487802,0.3610164,0.08971057,0.7719389,-0.34626067,0.14514972,0.10111158,-0.0787384,-0.15641278,-0.027469011,0.19653298,-0.35184163,0.059882794,-0.0981294,-0.26092204,0.10296404,0.45401305,-0.531966,-0.20160462,0.12372882,0.9858207,-0.35060677,0.24722165,0.9145416,1.1953734,0.87885475,-0.20629936,0.99817294,0.10099912,-0.25844377,-0.32743207,-0.14663766,-0.5088674,0.09246254,0.47781742,-0.08168474,0.22182602,0.047188494,-0.097524576,0.32239944,-0.41185415,-0.17315093,-0.1093801,0.17747623,-0.011148854,0.010928848,-0.5678207,-0.15591837,0.02546777,-0.0468209,0.28240377,0.28871468,-0.45809668,0.31910256,-0.19787498,1.0028542,-0.006213573,-0.056644022,0.23018852,0.637424,0.29733917,-0.22947101,0.34921005,0.33775273,0.56315,-0.23334089,-0.5875089,0.30943364,-0.41169044,-0.42817318,-0.08519042,-0.34826726,-0.15508498,0.34862044,-0.5107018,-0.24545845,-0.13673234,0.08208186,0.18677917,-2.333539,-0.15338424,-0.29176056,0.3455362,-0.20854296,-0.23954965,0.12735839,-0.47445914,0.39648315,0.32621774,0.4642103,-0.6078999,0.4080845,0.77701896,-0.56975937,0.09574892,-0.81146246,-0.14230913,0.01306786,0.4044029,-0.03574994,0.064462714,0.067829736,0.18502134,0.55891854,0.22167388,0.17476498,0.31035808,0.37800628,-0.26248613,0.32051826,0.0722223,0.59666955,-0.26922733,-0.107518844,0.36963177,-0.45275316,0.36498415,-0.3771045,0.06299705,0.6042176,-0.28953704,-0.6225209,-0.46202815,-0.19728903,1.1888452,-0.30574548,-0.60744256,0.24185105,0.09551747,-0.13658242,-0.10157433,0.75348276,-0.21045643,-0.14105652,-0.53944755,-0.14949371,-0.14575374,0.27207083,-0.026064811,0.03741069,-0.2877083,0.6023708,-0.07699814,0.5518458,0.1861578,0.48931953,-0.2598686,-0.44289857,0.012354601,0.6494682,0.6089214,-0.03833723,-0.25105482,-0.13773522,-0.16919775,-0.06866314,0.018836765,0.61332875,0.7006451,-0.16584387,0.0391266,0.45793602,0.03113706,0.043246966,-0.23690605,-0.5063171,-0.17712528,0.090468615,0.40133455,0.4070754,0.045272555,0.2282044,-0.017384302,0.25378254,-0.33806425,-0.52250046,0.4759225,0.8932685,-0.38018742,-0.089846425,0.7764376,0.46873072,-0.39381656,0.48480302,-0.96936417,-0.08419835,0.5082966,-0.07308259,-0.7226832,0.17591152,-0.15296794,0.104155414,-0.8386929,0.3933382,-0.4905763,-0.63054943,-0.6184831,-0.27146694,-2.7655213,0.08758883,-0.37031573,-0.19334674,-0.16576576,-0.31954715,0.04966662,-0.7453055,-0.4990287,0.28138086,0.13510627,0.5709579,-0.10197194,0.02602783,-0.44133285,-0.31713244,-0.4238076,0.27111188,-0.056448374,0.34386665,-0.26317695,-0.28958717,0.15127645,0.1229903,-0.43881884,0.040214702,-0.52184826,-0.1522594,-0.13020729,-0.51601404,-0.17009076,0.7063169,-0.2143603,0.2185871,-0.20316811,0.006724863,-0.027110301,0.118225224,0.29997814,0.2685667,0.011619014,-0.048911188,0.10351996,-0.32958275,0.25380608,0.15313727,0.36700144,-0.010959959,0.011765501,-0.11882236,0.5053766,0.5601871,0.10110155,0.8720465,0.24089421,-0.07232481,0.3014166,-0.056134127,-0.31542018,-0.66683614,-0.3984846,0.03279672,-0.3151197,-0.65335435,-0.10838643,-0.22577009,-0.78021187,0.53525966,0.24250437,0.4522913,-0.0077539654,0.32261765,0.44224384,-0.21396503,0.020540418,0.07117728,-0.008130502,-0.44276783,-0.19376937,-0.8346388,-0.26629716,0.20028402,0.5672856,-0.3284272,-0.08543418,0.1925488,-0.38252306,0.16188237,0.23294443,0.15970841,-0.21603526,0.37138966,-0.18203083,-0.530723,0.36656657,0.0130386,-0.0747083,-0.7020133,0.26800784,0.7373388,-0.75187594,0.54779,0.24672385,0.00012571704,-0.5873365,-0.556066,-0.21297717,0.088019855,-0.27078816,0.4558163,0.1780459,-0.5736759,0.19081424,0.19504724,-0.11298385,-0.4766092,0.7740284,-0.18907498,-0.42221645,-0.07945945,0.377703,0.14613798,-0.036916174,-0.06467212,0.279869,-0.31293088,0.29990503,0.32192305,-0.14388345,0.30247042,-0.15400241,-0.061428484,-0.8914812,0.26002917,-0.59263855,-0.19672452,0.17646438,-0.07775727,0.01814328,0.35227582,0.15434024,0.31894004,-0.19646087,0.3158943,-0.088863246,-0.39235947,0.78420395,0.30415523,0.4455325,-0.12806058,0.72117907,0.25317731,-0.3049773,0.43933028,0.17964822,0.5056293,0.13465877,0.6367238,-0.03658025,-0.097478434,0.276597,0.70174104,0.3247329,0.4052432,0.12364486,-0.0643235,0.11611898,0.1627406,0.26066992,0.024745546,-0.5428865,-0.16829287,-0.21055609,0.07430149,0.5434987,0.21361512,0.3044513,-0.04251725,-0.33231437,0.09001466,-0.09453117,0.0017454028,-1.2175651,0.28911862,0.26860315,0.9755001,0.3339178,0.14834021,-0.19493271,0.49172965,-0.12994318,0.04479554,0.22973603,0.31556204,-0.37949362,0.462338,-0.46238822,0.42042568,0.07087792,-0.0415823,0.14418529,-0.05766754,0.373786,0.7011236,-0.24485259,-0.026331257,-0.112055086,-0.21324696,-0.014326882,-0.3870492,0.1927041,-0.40648535,-0.49676597,0.5179711,0.48443422,0.3009117,-0.35053816,-0.022314651,0.04112561,-0.056741823,0.16854304,-0.010919746,0.006209785,-0.08807559,-0.442593,-0.32719895,0.4469782,-0.3796024,-0.15075488,-0.26076657,-0.3499111,0.20956235,-0.07138392,0.19120187,0.04393866,-0.8535855,0.15716022,-0.1542887,-0.4606322,0.13039349,-0.024330692,0.25211623,0.06745883,-0.10294444,-0.19946323,0.35791707,0.1786293,0.90760136,-0.20848916,-0.11899281,-0.50276005,0.023677267,0.16208813,-0.17178501,0.22060975,-0.21888013,0.14759187,-0.46810064,0.15704289,-0.066088535,-0.39533672,-0.1226419,-0.3408171,-0.16144739,0.46528438,0.029514248,-0.18691947,-0.05051315,-0.22322316,-0.3771168,-0.23951702,-0.105332635,0.21769805,-0.050067402,0.14555062,-0.27279136,-0.16686875,0.07482069,0.22632283,-0.0058119134,0.40488634,0.55122143,0.04789792,-0.5345695,0.047538877,-0.1649333,0.48895016,-0.29125038,0.0037236756,-0.018886112,-0.62390083,-0.35972247,0.24883513,-0.21027136,0.46010086,0.11037831,-0.2642066,0.8558107,0.11979075,1.1782933,-0.1710648,-0.59313387,-0.020215718,0.7423738,0.0031941046,-0.09537428,-0.23849815,1.0876517,0.5373407,-0.12502427,-0.08400233,-0.28193653,-0.06101158,0.24058224,-0.18206276,-0.19217712,0.00059187954,-0.6688438,0.031372838,0.29350662,0.41041258,0.20033832,0.0878846,0.09914096,0.5750887,0.10163036,0.48613843,-0.75282156,-0.27429092,0.27188966,0.032298222,-0.04906304,0.13196969,-0.42939213,0.3368651,-0.5846279,0.23694994,-0.4934551,0.1124067,-0.19846968,-0.4179869,0.14454482,-0.09302045,0.43604594,-0.5132527,-0.5316303,-0.17331348,0.4407302,0.14660268,0.17502467,0.56866586,-0.12789711,0.12939677,-0.09218553,0.6287447,0.9370987,-0.17901851,-0.23964876,0.34954703,-0.6300843,-0.8629418,-0.055142257,-0.38323805,0.005257742,0.055216443,-0.28061065,-0.43085334,0.21864952,-0.008094018,-0.29959977,0.068048336,-0.6019113,-0.17652653,0.14505012,-0.22376746,-0.25619653,-0.45126536,0.396375,0.6549024,-0.2945282,-0.47346294,-0.19967417,0.29395926,-0.2801761,-0.66968316,0.033548806,-0.15348844,0.48113757,-0.08860315,-0.4167118,-0.19370036,-0.09671453,-0.43439895,0.06417081,0.049084697,-0.23336744,0.20786247,-0.19078363,0.12345675,0.71513015,-0.13345839,-0.24133882,-0.6789662,-0.4126149,-0.70449823,-0.46221906,0.4146836,0.36818418,-0.08327657,-0.75307995,0.034718994,-0.3867157,0.1332088,-0.13724566,-0.32300013,0.42684296,0.123475485,0.7850748,0.07106393,-1.0283806,0.20646586,-0.0115798,-0.20939945,-0.42524797,0.57256097,-0.010967038,0.7710663,0.10598395,-0.033360694,-0.1658737,-0.41506612,0.31575057,-0.35255063,-0.37106588,-0.6574238,0.2973847,302 -933,0.4684005,-0.29137334,-0.55873173,-0.17480673,-0.29207385,-0.2072631,0.046012904,0.70513207,0.5075603,-0.27191126,0.02975729,-0.11627386,-0.116190456,0.5752968,-0.10203159,-0.7368686,-0.09105702,0.34881762,-0.38353977,0.2786114,-0.6111765,0.14184888,-0.096349075,0.61587995,0.2162508,0.1406962,-0.09097897,0.12189257,0.14896433,0.13986804,-0.042627707,0.37210786,-0.46238562,0.18353371,0.088857695,-0.49682721,-0.06489174,-0.7732414,-0.29011375,-0.72510153,0.28541648,-0.58572364,0.7360155,0.13399781,-0.42667243,-0.18766755,0.03703135,0.3151584,-0.39186522,0.013378799,0.15452917,-0.20715694,-0.055483148,-0.16989422,-0.2900345,-0.13622384,-0.6129087,-0.08854243,-0.31630886,-0.134686,-0.0050230245,0.28083718,-0.25825632,-0.04088575,-0.3268095,0.85703295,-0.32257575,0.038635407,0.24185258,-0.2071888,0.2170313,-0.5967638,-0.13823716,-0.16526632,-0.019159412,-0.16389836,-0.528572,0.3029373,0.17277494,0.600894,0.023636926,-0.24805783,-0.4261319,0.14568487,-0.08545396,0.65884286,-0.4332982,-0.33809614,-0.2727548,0.1878832,0.23521805,0.2251042,0.14699258,-0.41532552,0.084115036,-0.0022281788,-0.13643998,0.5527413,0.5380192,-0.28202206,-0.2308155,0.16188668,0.32523528,0.122294694,-0.09142816,0.2148692,0.03785711,-0.58446884,-0.2839738,0.07716837,-0.13751024,0.46980068,-0.094217986,0.0053437245,0.6189314,-0.27574873,-0.25212085,-0.07853776,0.071629554,0.23453006,-0.73840994,-0.63231885,0.4749374,-0.36154887,0.15712357,-0.06476854,0.7025884,0.19925351,-0.8259119,0.33516127,-0.65449864,0.14652663,-0.1638642,0.48108226,0.8039862,0.49149665,0.40060616,0.8038423,-0.4643385,0.18895093,0.044157937,-0.108121015,0.03366648,-0.01518929,0.2465017,-0.51688427,0.0019254684,-0.3065899,-0.4114092,0.32692787,0.18969844,-0.62717086,-0.22142047,0.21691318,0.66842973,-0.3659371,-0.07923826,0.93348885,1.3700706,1.3820934,0.03268179,1.3316827,0.36231005,-0.19690591,0.14422789,-0.21975422,-0.7055715,0.19468194,0.3605456,-0.25036743,0.48718452,0.20692764,0.10949382,0.5670855,-0.4640091,-0.15730502,0.0037262847,0.22035237,0.19206543,-0.2210513,-0.63095593,-0.26034537,-0.06815311,0.0828995,-0.32809314,0.19615966,-0.31941512,0.26989582,-0.10177832,1.4802302,0.1445924,0.07735616,-0.03808002,0.4082805,0.23054697,-0.29658726,-0.019055061,0.19741063,0.32784116,0.019900708,-0.64304787,0.012822729,-0.26905367,-0.3384143,-0.23650561,-0.23229192,0.05264437,-0.2549567,-0.36923495,-0.28560722,-0.093157165,-0.2524941,0.37749472,-2.4919508,-0.27911937,0.056348767,0.47526643,-0.15461063,-0.47088557,-0.23992105,-0.2856949,0.17239295,0.2713796,0.48768607,-0.56205064,0.549176,0.30658114,-0.5905805,-0.07041297,-0.7998385,-0.09512837,-0.11744211,0.18059371,-0.045028534,0.05325588,0.10300341,0.16821271,0.6409537,0.08833312,-0.08380123,0.2262662,0.5217661,-0.09564831,0.7347631,-0.1323713,0.6421273,-0.38817313,-0.22344169,0.18820077,-0.568371,0.04843353,0.31971684,0.07256234,0.5709024,-0.59815204,-1.1213433,-0.6090257,-0.09808645,0.8907175,-0.21870667,-0.28506553,0.4489751,-0.6467616,-0.49794233,-0.23327778,0.35915878,-0.09465738,-0.1636406,-0.76239705,-0.05703058,-0.034960967,0.21242024,-0.029504867,-0.014477518,-0.3693148,0.650551,-0.24311529,0.47818175,0.6378618,0.15545917,-0.39311534,-0.37890255,-0.093010716,0.79094696,0.3523381,0.116555095,-0.14413337,0.07222123,-0.04363923,0.041565634,0.21050578,0.7600178,0.79463065,-0.2598935,0.060526513,0.42427263,-0.19013649,-0.021830462,-0.062539466,-0.39787605,-0.27742508,0.23038378,0.6137971,0.7196438,-0.23223153,0.4435444,-0.015161053,0.22731651,-0.027657455,-0.45133913,0.19405493,1.1018788,-0.099460416,-0.42787316,0.7048035,0.24916087,-0.4676635,0.44332924,-0.4775996,0.10672334,0.37967718,-0.16715872,-0.2847651,-0.018578572,-0.25722873,0.0049996595,-0.9637989,0.29524982,-0.060522977,-0.86206263,-0.5101168,-0.30571947,-2.9547057,0.27940968,-0.23537415,-0.08375972,0.14991984,-0.19161853,0.10127889,-0.7166164,-0.73928696,0.15178709,0.1105537,0.47626552,-0.14544672,0.03511825,-0.21504249,-0.33006558,-0.40676343,0.33221045,0.1188539,0.40223664,0.32805803,-0.45922998,-0.022987844,0.0102524,-0.6330178,0.052286502,-0.6199892,-0.32442173,-0.07228351,-0.8576244,-0.3588988,0.726323,-0.14203802,-0.12319484,-0.30148867,0.094482474,0.025647586,0.31183326,-0.09741575,0.355156,0.14162011,0.07028748,-0.080441125,-0.02802114,0.055837784,0.121420175,0.37741297,0.14806259,-0.2975798,0.16123877,0.7276032,0.99980354,-0.118253425,0.85336757,0.6259767,-0.18348356,0.20776488,-0.35719296,-0.20748311,-0.5946668,-0.45036194,-0.20886718,-0.57166153,-0.3532444,0.08828186,-0.38977537,-0.9116331,0.577483,-0.12581539,0.18687536,0.14224233,0.29775605,0.38077796,-0.23086353,0.08861787,-0.23546715,-0.19174576,-0.37576276,-0.371745,-0.5113094,-0.52298284,0.14619544,1.4938358,-0.2682323,0.14994396,0.18253736,-0.35994053,-0.055836216,0.28704378,0.0140809575,0.28764343,0.3326416,-0.14914784,-0.5278886,0.00912081,-0.06641454,-0.12532376,-0.5677827,0.18752284,0.83387065,-0.5939507,0.9777531,0.021589572,0.062009525,-0.16902776,-0.7230446,-0.4064989,0.2074946,-0.10927935,0.65699065,0.34669808,-0.81527543,0.3969178,0.3712467,-0.36899385,-0.7580065,0.318099,-0.11812368,-0.2515666,-0.20158137,0.3579898,0.19173583,-0.13065217,0.0032880849,0.37605304,-0.39482898,0.21993865,0.19473638,0.012172645,0.19389246,-0.19668697,0.040249344,-0.8979563,0.024887638,-0.5556717,-0.21167606,0.13273588,0.06872511,0.14784132,0.0847702,0.19995667,0.5097706,-0.31151542,0.19726568,-0.18372874,-0.38160935,0.30067846,0.5759547,0.2680747,-0.44401696,0.3794552,0.045373198,0.02182417,-0.2320221,0.033088397,0.41820353,-0.00027370453,0.28722584,-0.1407403,-0.3524502,0.1875113,0.67087597,0.07792946,0.30909908,0.025798379,-0.05669812,0.20757885,0.15029007,0.18744653,-0.15408324,-0.41921666,0.15652446,-0.050837215,0.3042258,0.50889975,0.09593748,0.23263845,-0.2412024,-0.17059487,0.2520386,0.21247075,-0.06300292,-1.3038765,0.3719311,0.04743785,0.842448,0.6314258,0.17524092,-0.17172866,0.36917254,-0.27473682,-0.03143932,0.5296479,0.042585872,-0.32701382,0.5680716,-0.6743067,0.7088915,-0.042158548,0.05781865,0.056498088,0.28971437,0.6571151,0.7683891,-0.19990115,-0.09522318,0.0075521288,-0.13371386,-0.04777889,-0.45590365,-0.03355814,-0.5528357,-0.37011775,0.8245936,0.49677238,0.32907888,-0.3196263,-0.15928258,0.26434895,-0.083825916,0.27663207,-0.088805206,-0.111077316,-0.16322842,-0.6910909,-0.18575674,0.63204294,-0.055949662,0.02419557,-0.02316366,-0.19840178,0.34109572,0.106958434,-0.30809548,0.095705725,-0.7153014,-0.19937268,-0.3348007,-0.36610377,0.42913237,-0.34365866,0.037742183,0.10883882,0.16525789,-0.333235,0.47109345,0.22470793,0.85717624,-0.1240725,-0.028565867,-0.18452364,0.31574714,0.147439,-0.037048634,0.16613303,-0.37524176,0.023886291,-0.5944898,0.5225663,0.08210312,-0.38491362,-0.005616952,0.13008128,0.18496136,0.43572375,-0.43025225,-0.11925828,-0.12940319,-0.1393133,-0.32333115,-0.46148387,-0.35499462,0.41196978,0.034263883,-0.09524382,0.039871678,-0.18384123,0.006845738,0.52527386,0.12339842,0.19752832,0.22168303,0.2082542,-0.39544696,0.07125763,-0.14938487,0.4025442,0.08067305,-0.22635311,-0.28456295,-0.22877236,-0.25264433,0.023518898,-0.15854454,0.3634127,-0.13197942,-0.4378009,0.9793241,0.20396072,1.5073792,-0.26927623,-0.34259808,-0.06782117,0.46867684,-0.0036099092,0.19296208,-0.29214457,0.946841,0.62901413,-0.089049436,-0.15180343,-0.53681856,-0.15461455,0.24457246,-0.30128786,-0.34351158,-0.033222828,-0.62058836,-0.2317633,0.24185148,0.08824194,0.24152108,-0.09934039,0.2575529,0.3213761,0.08824552,0.22380473,-0.3180072,0.14757767,0.20870915,0.56424606,0.22020245,0.19419442,-0.35221758,0.25715986,-0.6902191,0.45602047,-0.31456676,0.1953945,-0.18864042,-0.281745,0.19693266,0.106887795,0.22429748,-0.16199178,-0.1426993,-0.097277336,0.8636549,-0.07366944,0.088124745,0.7459343,-0.27804658,-0.07549624,-0.08470762,0.36838153,1.1529298,-0.10380993,-0.14510423,0.29438028,-0.27546895,-0.70676285,0.33054093,-0.18361984,-0.111909024,-0.1124589,-0.19654898,-0.64510614,0.06457372,0.061797317,0.022001771,-0.045806695,-0.42980728,-0.23925166,0.47112226,-0.3176678,-0.12918948,-0.2476533,0.2623286,0.6607867,-0.20096263,-0.59962225,0.17699738,0.2439076,-0.18312454,-0.40709546,0.025803728,-0.4899712,0.29502597,0.13121867,-0.5994211,-0.038054403,0.1788671,-0.4551992,-0.1836391,0.33258963,-0.21209721,0.27526376,-0.2504472,-0.36863652,1.1529698,-0.03135599,0.48932743,-0.6330962,-0.6341962,-1.1632211,-0.21008329,0.25544944,0.11742105,-0.11928842,-0.8584614,-0.010508001,0.025555177,-0.41128695,-0.036748055,-0.39046127,0.42610896,0.16255316,0.36879092,-0.22487141,-0.8002231,-0.05214174,0.2896128,-0.07725346,-0.4740731,0.53809804,0.0704624,1.0130985,0.07176748,0.05455676,0.18030314,-0.41149303,0.33934945,-0.29059452,-0.36738938,-0.5733917,-0.33199573,311 -934,0.48699734,-0.15204857,-0.5283776,-0.33265272,-0.29386157,-0.111268036,-0.24971765,0.3006655,0.11385885,-0.31478143,-0.090320796,0.058271326,-0.12133822,0.29327643,-0.13976392,-0.96642107,0.0036252195,0.017615847,-0.6046888,0.24890834,-0.6728853,0.3129936,-0.14212888,0.49405468,-0.07608247,0.3180094,0.2289386,-0.09552881,0.12595193,0.11125238,0.050528847,0.008556539,-0.759496,0.06410973,0.032554712,-0.5507219,0.055848204,-0.28262183,-0.32429722,-0.62170786,0.46495584,-0.83249915,0.59146565,0.14630443,-0.18399215,-0.041310597,-0.051106628,0.31149092,-0.46259746,0.22098373,0.19994988,-0.31092313,0.15082783,-0.23403831,-0.08600376,-0.54088444,-0.5182199,-0.09134929,-0.64237124,-0.23775506,-0.25504726,0.12942328,-0.41703942,-0.029935122,-0.19540295,0.40662393,-0.57004744,-0.0799618,0.061828986,-0.18936838,0.15902166,-0.59724516,-0.26781556,-0.14851694,0.22780372,-0.11991697,-0.066565424,0.28339627,0.12193504,0.39362496,0.14412391,-0.1678021,-0.38428438,-0.06272634,0.08393094,0.46986726,-0.14243823,-0.36881372,-0.25516328,-0.18435739,0.064895146,0.18778786,-0.025684685,-0.41567022,0.1850368,0.19245332,-0.25126046,0.55487275,0.60657763,-0.32022306,-0.25531223,0.19187689,0.17823619,0.15465023,-0.1719993,0.24547252,0.10720513,-0.39707005,-0.2859515,0.12974894,0.051931456,0.68317735,-0.034577765,0.38674298,0.8463374,-0.40521514,0.045368865,-0.23872484,-0.11671738,0.08984787,-0.03672125,-0.3659231,0.3251275,-0.58695364,0.08948128,-0.31325015,0.8365791,0.11505771,-0.6748528,0.38231027,-0.65892583,0.04128855,-0.20504655,0.62927413,0.6478743,0.24357294,-0.027507717,0.61142516,-0.56179714,0.096782304,0.17135817,-0.4438179,0.1627047,0.0828751,0.09318192,-0.27294415,-0.23348957,0.10913383,0.08524013,-0.08806645,0.2668986,-0.28877097,0.07547039,-0.09088523,0.80604476,-0.40828,-0.009850327,0.744368,1.3021961,0.91044146,0.06190673,1.201598,0.38818902,-0.16648383,0.09146518,-0.1548811,-0.6786079,0.1517352,0.24643454,0.18267728,0.35338396,0.25720736,0.037039794,0.4159973,-0.3797548,0.03735604,-0.08766974,0.42027295,0.00011853196,-0.09202984,-0.46057317,-0.0700921,0.13204876,-0.023571383,-0.16187568,0.30697736,-0.117707305,0.31948617,-0.006681117,0.9241827,0.18834096,0.21551366,-0.18670999,0.57554907,0.18037914,0.10915694,0.052725866,0.1684925,0.41384533,0.08765131,-0.7582789,-0.013815999,-0.4139536,-0.3801957,-0.3131909,-0.3973628,0.07891648,-0.028927885,-0.51520246,-0.11381579,0.09793227,-0.096860886,0.29957566,-2.5022466,-0.2231858,-0.12472067,0.48861915,-0.14769563,-0.1453378,-0.000420695,-0.44359243,0.3836197,0.47488782,0.4138857,-0.6958514,0.5720434,0.5282025,-0.2770575,-0.05487512,-0.5783261,-0.053078927,-0.07824253,0.42391205,-0.15633434,-0.09559619,0.019608086,0.10669693,0.51385874,-0.039389577,-0.043841127,-0.056522083,0.52258533,0.069794886,0.47830403,0.20709716,0.5313632,-0.48883334,-0.15167962,0.17167863,-0.38769034,0.21776561,-0.040206973,0.19586869,0.34243062,-0.4304528,-0.95193094,-0.53928494,-0.40289316,1.1497512,-0.26230648,-0.28207418,0.3412116,0.080566876,-0.274755,-0.13298477,0.46290568,-0.2949,0.075380094,-0.6581617,0.1438073,-0.15787688,0.18521386,0.17274891,0.12144353,-0.40804625,0.52472425,-0.08342417,0.23325486,0.42957917,0.28653508,-0.03764349,-0.5492645,0.16274758,0.6538851,0.2785883,0.22473632,-0.20555815,0.05155163,0.0961574,-0.17205152,0.16938989,0.54107225,0.87015975,0.03859931,0.2146234,0.29976684,-0.21642537,0.14517497,-0.025927251,-0.35418874,-0.12977694,0.20621191,0.6108629,0.56309855,-0.30565688,0.42678025,-0.02482171,0.24015497,-0.25349128,-0.27339745,0.53525376,1.0339915,-0.022955991,-0.06649694,0.617258,0.48349622,-0.6728339,0.42466918,-0.6431727,-0.2294377,0.67933387,-0.1296929,-0.48039106,-0.121641286,-0.40920028,0.084923916,-0.9870943,0.51542383,-0.26554406,-0.6638277,-0.59848875,-0.43663236,-4.342987,0.16236562,-0.5326372,-0.09072249,-0.20201463,-0.2746231,0.46659964,-0.7492851,-0.41649768,0.1568198,-0.03999347,0.5425054,-0.041770637,0.11586895,-0.37526628,-0.012625131,-0.29163322,0.18888053,0.29947492,0.16657294,0.2274325,-0.46505213,0.12224662,-0.14453769,-0.5603836,0.12744902,-0.3349947,-0.46536866,-0.020494344,-0.62854695,-0.2983934,0.87374574,-0.19843978,-0.16040371,-0.31122902,0.013042232,-0.37450245,0.6718772,0.10460165,0.19520187,0.05192125,0.020361114,-0.19035791,-0.44369012,0.31682408,0.17940688,0.4022145,0.39273632,-0.24687771,-0.10838847,0.60670066,0.59211665,0.23612413,0.5784724,0.16950521,-0.070831604,0.46054032,-0.44955757,-0.350146,-0.6609595,-0.5985586,-0.2093134,-0.34156382,-0.6858681,-0.02790567,-0.4236941,-0.80368525,0.450638,-0.22114849,0.32820818,0.014234874,0.21371503,0.13314074,0.076480284,-0.08688713,-0.198421,-0.04911227,-0.39173767,-0.279535,-0.70401263,-0.71385914,0.053367976,0.94424224,-0.20358776,-0.28425,0.046472486,-0.3785083,0.1493584,0.09272983,0.17100956,0.26288244,0.1577428,-0.06981099,-0.7663677,0.46239948,-0.16398026,-0.14020227,-0.7216642,-0.20583306,0.83872527,-0.8809988,0.4788867,0.4763562,0.07504597,0.15555719,-0.39853352,-0.46858728,0.13546051,-0.11969223,0.46007708,0.074442424,-0.84454864,0.38540956,0.1222239,-0.13404597,-0.4830903,0.6051225,-0.01564935,-0.30097878,0.1605441,0.40778396,0.0427688,-0.20398337,-0.012418861,0.41852617,-0.45916417,0.28708532,0.13680036,-0.0024035086,0.72693944,0.045569323,-0.18844245,-0.57370895,-0.00035275656,-0.6244657,-0.1192632,0.029616768,0.073495954,0.1888439,0.2440493,0.106234126,0.44042665,-0.367435,0.14553337,0.044777013,-0.3837351,0.19423622,0.51638985,0.30375874,-0.50881296,0.6511271,0.12265032,0.12440313,0.14952493,0.21686195,0.485631,0.29777792,0.38724935,-0.037832424,-0.10196807,0.045277044,0.8262834,0.33989784,0.7055516,0.3118488,-0.06765068,0.4621971,0.280562,0.11259453,0.049015865,-0.1912097,0.038301047,0.21599227,0.22563706,0.4735718,0.07231162,0.2918224,-0.16364327,0.06123111,0.29016802,0.465458,-0.11563904,-0.92406064,0.30972832,0.2823146,0.5906171,0.3681091,0.14078541,-0.08796816,0.34986356,-0.14802566,0.0053829146,0.43953618,0.26907778,-0.5268545,0.678459,-0.31159925,0.5032848,-0.26258832,-0.07603144,-0.042822707,0.045787886,0.2838975,0.6518546,0.0630676,0.08393418,0.078406945,-0.20302452,-0.09569166,-0.5817742,0.23513876,-0.4220504,-0.0009882125,0.6401684,0.5127511,-0.079720706,-0.26452786,-0.15674515,0.13240875,-0.03573462,0.17818584,-0.19323932,-0.0018352811,0.066817366,-0.6800472,-0.44826975,0.5078829,-0.060249567,-0.0277188,-0.017433036,-0.23335628,0.3420273,-0.019415706,-0.03948448,0.10735244,-0.7202986,0.3005634,-0.296721,-0.4398569,0.42119452,-0.44789886,0.3574773,0.21479945,0.08286698,-0.41784617,0.11688113,-0.00988737,0.63823164,-0.006782104,-0.114397176,-0.6127844,-0.107497305,0.35802352,-0.28071064,-0.009183981,-0.47468817,0.09115205,-0.41754723,0.5342894,-0.14156534,-0.05377045,-0.28598768,-0.14440283,-0.03246473,0.5057092,-0.19171454,-0.05798119,0.30320942,-0.03481016,-0.19491576,-0.07789647,-0.4298179,0.2877157,0.04848856,0.069664314,-0.003072072,-0.27974054,-0.103863195,0.4682724,0.22919522,0.15611881,0.40312883,-0.050034884,-0.34490535,-0.33325908,-0.039723862,0.34802532,0.104735136,0.0058015017,-0.3145841,-0.5402326,-0.13061838,0.13898191,-0.17214209,0.05544009,0.033485234,-0.5076361,0.5788162,0.24501634,1.1395446,0.10087853,-0.38775015,0.20450737,0.52732986,0.07205567,-0.011303788,-0.4205513,1.142646,0.60333705,-0.31793082,-0.37399882,-0.40861753,-0.44510376,0.24768944,-0.3146711,-0.3908777,-0.17042428,-0.69481486,-0.084415585,0.14105919,0.26877987,-0.23486666,0.13195425,0.056056477,0.14625496,0.26351276,0.47207195,-0.7480819,-0.1823952,0.30339718,0.1867848,0.13621391,0.49228308,-0.33154345,0.39123014,-0.69584316,0.20302577,-0.56691444,0.09017467,0.010310072,-0.43186933,0.17190494,0.26881772,0.30474466,-0.1665646,-0.29690182,-0.29607078,0.57433826,0.042881206,0.42411718,0.7335869,-0.31525514,-0.048080076,-0.15642266,0.38222292,1.217146,0.062519304,-0.13007018,0.3465196,-0.3799736,-0.676449,0.16239502,-0.52258974,0.12597305,-0.35616443,-0.2584357,-0.5284029,0.25951645,-0.005227934,-0.34725177,0.21754393,-0.50997806,-0.37287217,0.34423044,-0.17325416,-0.44180834,-0.2398751,0.44871542,0.888669,-0.5291702,-0.14227237,-0.19746538,0.4664871,-0.13648714,-0.41556224,0.09446179,-0.33383435,0.42318618,0.14874892,-0.27608338,0.03634053,0.2858396,-0.26796797,0.35825318,0.51527476,-0.33659166,-0.023666918,-0.103683166,-0.2539055,0.9421549,0.102702506,0.24559838,-0.65721107,-0.44340497,-0.9772217,-0.50140375,0.30791637,0.35136303,-0.03396988,-0.58584255,0.0839312,0.15179019,0.043740574,0.10829906,-0.50591046,0.39138162,0.060759403,0.62755924,0.10174901,-0.83625835,-0.25042808,0.3268925,-0.42793977,-0.59399337,0.6244956,-0.43617496,0.763455,0.1418099,0.07332907,-0.14417495,-0.34480894,0.33660892,-0.5050946,-0.36820966,-0.56473964,-0.014416584,326 -935,0.5411735,-0.15567102,-0.6589112,-0.29457563,-0.4206849,0.086046465,-0.20403558,0.19810863,0.3128853,-0.39570454,-0.19617496,-0.119758,-0.06808455,0.67960286,-0.1426956,-0.89746004,-0.074757785,0.3062692,-0.695828,0.45862067,-0.46363223,0.30750823,-0.019288616,0.3478111,-0.032857504,0.18270983,0.42232627,-0.14865914,-0.030752659,0.026813777,-0.18637796,0.23571903,-0.8981543,0.373915,-0.09539385,-0.59128934,0.05773268,-0.49519718,-0.07009415,-0.8159464,0.46296242,-1.04966,0.7481256,-0.23231025,-0.30515385,-0.22424412,0.109224536,0.42627394,-0.436669,0.03621536,0.22551216,-0.34283745,-0.3414006,0.05966477,-0.3178017,-0.7368008,-0.653189,-0.06438944,-0.67653364,-0.03629782,-0.24349612,0.34955117,-0.33966997,0.1443678,-0.2612778,0.23262939,-0.5813614,-0.18511558,0.34849703,-0.15822044,0.06102692,-0.47678253,-0.10471019,-0.19419235,0.36420375,-0.10825178,-0.34367216,0.10975129,0.43988237,0.6480726,0.306244,-0.3619657,-0.19820283,-0.041004643,-0.12609024,0.62965006,-0.10428598,-0.37938178,-0.36069894,-0.16436054,0.5707969,0.3029084,0.106217906,-0.33284912,0.1433445,-0.099980354,-0.08183456,0.3409347,0.43651304,-0.4681161,-0.33599746,0.5030752,0.48819628,-0.059070583,0.028124245,0.26924735,0.16055062,-0.5460422,-0.2971295,0.23466001,-0.20534617,0.6649808,-0.23852535,0.2306893,0.80427796,-0.37087795,-0.002052188,-0.13618064,-0.1194683,-0.38769677,-0.1636644,-0.16606863,0.3587257,-0.5713578,0.14670391,-0.23775409,0.85377383,0.19354105,-0.72859186,0.34625554,-0.4678373,0.0711574,-0.25813496,0.74957776,0.88681376,0.44359407,0.33501437,0.9273606,-0.4352972,0.21323982,0.0951937,-0.41425866,0.033925142,-0.19431911,0.07732706,-0.39671916,0.18585259,-0.10687104,-0.056596387,-0.099002175,0.5058035,-0.52179736,-0.112357356,-0.014663144,0.59939456,-0.43586895,-0.29511297,1.0540043,1.172361,1.1567096,0.08029512,1.8208531,0.49848214,-0.11251438,-0.104995534,-0.15143895,-0.71095175,0.15925354,0.44917735,-0.61824214,0.55598015,0.24406752,0.10889919,0.59707916,-0.43788147,-0.07580203,-0.049237076,0.37352931,-0.15183607,-0.045456782,-0.6855187,-0.1391322,0.22970785,0.055126455,0.11878974,0.43344575,-0.14306487,0.61719054,0.28886643,1.3069475,-0.117612354,0.17446715,-0.09456344,0.36666843,0.142614,-0.13578638,-0.042667314,0.074447066,0.4821675,-0.2426555,-0.67286325,-0.074548654,-0.45588982,-0.3534671,-0.40411374,-0.23408818,-0.052993163,-0.14834066,-0.19798446,-0.27863893,-0.11263835,-0.2940502,0.58088183,-2.0294142,-0.4577622,-0.23887682,0.24842396,-0.2782017,-0.25391567,-0.20407413,-0.61042607,0.1897996,0.31183386,0.40020418,-0.7658783,0.4786638,0.4920936,-0.55395687,-0.17561609,-0.8317505,0.12933642,-0.19677725,0.34861618,-0.119718224,-0.42175102,-0.25415632,0.03833192,0.621542,0.24818125,0.13104503,0.17012753,0.6192789,0.24675244,0.572892,0.109739296,0.8179861,-0.4879453,-0.18432043,0.48310173,-0.2606213,0.5789144,-0.13685268,0.108193725,0.50189155,-0.5630807,-1.0329428,-1.0126163,-0.56494826,0.99361444,-0.42603645,-0.46858874,0.21244216,0.08011162,-0.1657797,0.0822994,0.39596805,-0.051351354,0.06844374,-0.7377835,0.012791103,-0.033871684,0.23164457,0.046968445,-0.0012812669,-0.49220476,0.71498907,-0.28108996,0.3337138,0.547903,0.39086455,-0.08312492,-0.66562885,0.014070288,1.0248458,0.35119227,0.09299403,-0.29417765,-0.32569543,-0.21706319,-0.25824702,0.103424996,0.5493888,0.82665217,0.0022583387,0.06866371,0.45516586,-0.06575544,0.12394179,-0.055168286,-0.38113424,-0.260556,0.1773749,0.6167927,0.6897055,-0.294201,0.3791125,-0.24735178,0.19896245,-0.061201654,-0.5389567,0.75370955,1.1718948,-0.3325419,-0.22806558,0.94573265,0.31349608,-0.43508512,0.6226695,-0.8042951,-0.3542966,0.52077526,0.033551857,-0.55180573,-0.2579849,-0.35693303,0.13759352,-1.2623932,0.40432903,-0.22981639,-0.47750986,-0.5511668,-0.119413145,-3.7646546,0.2392651,-0.21069336,0.024120975,-0.03258056,-0.22315615,0.32197624,-0.8671776,-0.8078733,0.3686673,0.064642854,0.5112149,-0.15898436,0.39724302,-0.42030337,-0.2776846,-0.22773339,0.25240862,0.29198998,0.21196114,0.0062361793,-0.6017881,0.3993549,-0.06078988,-0.48653948,-0.0442456,-0.7088366,-0.48440057,-0.24306835,-0.7574739,-0.32712504,0.7719051,-0.4356931,-0.2099372,-0.39255905,0.20087542,-0.34613526,0.42997167,-0.042014338,0.21800429,0.14991613,-0.05547464,-0.28747937,-0.07588556,0.3600139,-0.00070483575,0.36118975,0.26687977,-0.39937326,0.1654088,0.70703596,0.6589124,-0.11152716,0.89253616,0.3924692,-0.10343209,0.2976896,-0.16079082,-0.28502342,-0.8911771,-0.53031963,-0.34601614,-0.59831375,-0.7400167,0.019851191,-0.32219413,-1.0700547,0.7966762,-0.05956328,0.4011409,-0.22367696,0.24633265,0.39890796,-0.2290028,0.15432729,-0.19726948,-0.1757303,-0.70621336,-0.5767985,-0.6532187,-0.6944495,0.19973215,1.4769943,-0.19668259,-0.015094784,0.22139241,-0.440882,-0.014325416,0.18847877,0.20900954,0.20939651,0.62847686,-0.13087574,-0.85233706,0.39554527,-0.09804019,0.15556282,-0.52486193,0.030209249,0.866715,-0.81067425,0.6368402,0.45217684,0.0025279631,0.2113277,-0.7204184,-0.47803304,-0.08982853,-0.15187573,0.58985895,0.29647663,-0.7736445,0.5561331,0.15148364,-0.27145264,-0.8767283,0.53915936,0.036318548,0.3183439,0.23942262,0.48777017,0.25474778,-0.16236597,-0.35475072,0.18312722,-0.5543459,0.37771845,0.20910081,-0.078216486,0.34651053,-0.20930332,-0.21146172,-0.90134126,-0.06517119,-0.5027075,-0.16280162,0.0136930505,-0.04944467,-0.025766963,0.16260771,0.22010836,0.4328871,-0.63782346,0.10570125,0.06227517,-0.34772283,0.23338231,0.5579836,0.3733536,-0.553309,0.6755375,0.049013797,-0.11311076,-0.23403572,-0.031446915,0.46039537,0.3796999,0.24963838,0.12151974,-0.18475685,0.12562652,0.89261967,0.14829168,0.37845144,0.21008569,-0.18523496,0.3911931,0.3017063,0.32585526,0.12294848,-0.46780244,-0.0867621,-0.06366749,0.07683944,0.50534564,0.2441659,0.56191677,-0.19576493,-0.14998488,0.1434613,0.15678972,-0.07113483,-1.181067,0.20651956,0.17686616,0.71829534,0.58401316,0.043018185,-0.06150316,0.46334392,-0.48599234,-0.017603248,0.5418508,0.13281612,-0.33410498,0.66159135,-0.5302159,0.33936653,-0.32396257,0.020238398,0.18908477,0.16729961,0.2777166,1.0683181,-0.0774118,0.006482574,-0.17772926,-0.028656244,0.1657173,-0.30907372,-0.05982606,-0.5593968,-0.18379173,0.94611454,0.5044891,0.29218394,-0.25209424,-0.15599209,0.059359964,-0.08454302,0.2230447,-0.118247084,-0.030821258,-0.032486346,-0.5354428,-0.14978558,0.734462,0.22691299,0.031078942,0.10561028,-0.55814624,0.3338404,-0.37670657,-0.00033000382,0.010735667,-0.83367765,-0.22364236,-0.2387247,-0.41913635,0.3993151,-0.3294721,0.22844185,0.12688924,0.020249784,-0.24622259,0.11545732,0.07626164,0.81764674,0.12826414,0.0017040778,-0.32314435,0.06508956,0.396319,-0.3967763,0.18091537,-0.33511364,0.070958056,-0.6422993,0.59121925,-0.043796804,-0.3551511,-0.009796739,-0.19417578,0.10649285,0.4796302,-0.18683648,-0.16850863,0.45344508,0.054337326,-0.40178367,-0.3242904,-0.51834846,0.19044115,0.12469309,0.14505859,-0.19302537,-0.14189193,-0.2512354,0.31579354,0.15184504,0.04192461,0.26712233,-0.045353174,-0.3013055,0.061703943,-0.061757505,0.5082573,-0.00080114603,-0.2938447,-0.30415583,-0.40244198,-0.0959888,0.1837793,-0.05752571,0.11713534,-0.08813263,-0.33722115,0.8063697,0.31123832,1.3865758,0.05368843,-0.58063906,0.053208087,0.75212216,0.016913814,-0.024316866,-0.39536026,1.2690614,0.60285765,-0.19933552,-0.27060997,-0.5739575,-0.3825033,0.45587617,-0.34205598,-0.23641492,-0.04655608,-0.72948354,-0.15397745,0.37697238,0.27439085,-0.019413663,0.03464466,0.3783448,0.14946304,0.19205791,0.67811435,-0.7204905,-0.30238658,0.2397613,0.4783573,0.13625546,0.30082953,-0.2251175,0.36815625,-0.8515168,0.119090654,-0.64226717,0.10040843,-0.22386785,-0.36711302,0.18282847,0.20332527,0.42339724,-0.18695927,-0.30916336,-0.18054882,0.8297091,0.1260024,0.25934276,0.9573177,-0.3272468,-0.071671195,-0.008807746,0.38050506,1.3702046,-0.24569394,0.027471043,0.2714506,-0.20452166,-0.68162197,0.523353,-0.64323366,0.060953878,-0.07120537,-0.5835633,-0.6194852,0.18528296,0.08686963,0.05993961,0.29728127,-0.6702926,-0.0744195,0.30242288,-0.31585115,-0.13551451,-0.11337225,0.3520801,1.0183495,-0.40446803,-0.5622671,0.070216365,0.46605358,-0.18180245,-0.80826765,-0.2019785,-0.16834806,0.5352757,0.1259823,-0.35849792,-0.0031305307,0.15641205,-0.43909785,0.14507464,0.48444223,-0.2597107,0.22909941,-0.29197228,0.042951766,1.0117072,0.068972886,0.28026536,-0.80156064,-0.49876958,-1.0554785,-0.39510706,0.09300684,0.30704284,0.027901674,-0.48534116,0.19046006,-0.12448685,0.12197863,0.28352782,-0.61834884,0.49156865,0.15149781,0.70339465,0.02192561,-1.1273528,-0.04796559,0.2046813,-0.021089552,-0.53138757,0.62553453,-0.2838474,0.9970797,0.10062218,0.06264632,-0.051546395,-0.6269689,0.3627846,-0.47578773,-0.050523818,-0.9306566,-0.07780352,329 -936,0.5089712,-0.31802735,-0.81285536,-0.20682365,-0.29452607,0.07975662,-0.1473373,0.42172706,0.13501471,-0.65249616,-0.21798259,-0.2847972,0.05220417,0.67694336,-0.21712185,-0.7668041,-0.2597593,0.006675777,-0.7933204,0.6561151,-0.25887898,0.3726556,0.26541138,0.057820473,0.38751885,-0.06923194,0.3473206,-0.1534562,0.23960294,-0.2584112,-0.25109485,0.0607006,-0.62222636,0.35602877,-0.13707577,-0.5584494,-0.034295067,-0.46312657,-0.4076164,-0.6552139,0.269895,-0.9714027,0.72563213,0.12111172,-0.20074853,0.13387933,0.28955087,0.27715552,0.02326136,0.13082029,0.2170879,-0.00272756,-0.115934655,0.008931914,-0.47972992,-0.66956633,-0.5966206,-0.14012267,-0.70306814,-0.33159125,-0.20044747,0.009095442,-0.511053,0.11407154,-0.21393909,0.22439796,-0.494203,-0.19629388,0.18747951,-0.10352809,0.23024407,-0.60448587,-0.19591166,-0.18394302,0.23665819,-0.22497354,-0.13830763,0.25163922,0.24521047,0.45665914,0.014143915,-0.23653898,-0.08516416,-0.24949893,0.3344573,0.66848016,0.27825207,-0.45137805,-0.2591832,0.22696833,0.54334855,0.5287321,-0.016438575,-0.5679088,-0.20055428,-0.27489215,-0.19003941,0.6920268,0.38394654,-0.4140751,-0.29992402,0.52610755,0.4840655,0.33309102,-0.14853162,0.35076985,0.037164833,-0.4951659,-0.10176954,0.24721192,-0.13575892,0.5338282,-0.1221253,0.3015721,0.6558775,-0.35690418,0.043090414,-0.01637836,-0.11398752,-0.321167,-0.12325997,-0.20843767,0.19664723,-0.6763786,0.125656,-0.19692746,0.9740564,0.15428205,-0.71941084,0.24950868,-0.6266636,0.09042222,-0.16428037,0.7411204,0.6750451,0.37150052,0.19027595,0.9154637,-0.4577261,0.19600926,-0.27311823,-0.5537977,-0.22267394,-0.10671973,-0.22958437,-0.6291146,-0.03476964,-0.12603325,0.10132161,-0.11453269,0.7274886,-0.46377876,-0.1607779,-0.00037315759,0.80958056,-0.35599157,0.0009166869,0.77731586,0.8675379,1.175701,0.042630874,1.208012,0.11831212,-0.25416312,-0.10277519,0.04766869,-0.7391153,0.29848278,0.54800487,0.06646553,0.41807374,-0.067028545,0.24469486,0.030550253,-0.5167547,0.08045252,-0.14865208,0.34391123,-0.11817396,-0.077076904,-0.6222904,-0.18710397,-0.12378072,0.068394035,0.109081514,0.3399801,-0.15270065,0.43658936,0.08031785,1.4801277,-0.41164753,0.07708077,0.090351835,0.33137554,0.26276758,-0.17930788,-0.04520152,0.3466376,0.6228476,-0.00927477,-0.85679555,-0.08850505,-0.29851523,-0.38829133,-0.22095229,-0.49646062,-0.15948203,-0.18601255,-0.3818743,-0.11366271,0.04668224,-0.49740943,0.40910873,-2.4505863,-0.24345079,-0.30087128,0.1994449,-0.34711444,-0.32998216,-0.18550168,-0.64865214,0.3565489,0.33326617,0.5473697,-0.57681024,0.2942024,0.72427374,-0.5085642,-0.05259125,-0.70106757,-0.0641088,-0.13681696,0.33216354,-0.16102456,0.05522256,0.10318902,0.31691912,0.48353577,0.007343498,0.06874954,0.3404844,0.6639417,0.00024080276,0.6288882,-0.10542581,0.6941955,-0.40345404,-0.024268262,0.49479502,0.12604915,0.43996623,-0.30501482,0.1920001,0.5782924,-0.5734293,-0.7027149,-0.45288822,-0.54864204,1.1256211,-0.58832526,-0.3804819,0.32559454,0.11329207,-0.009009329,-0.08736748,0.44916105,-0.02431749,0.06978618,-0.7290934,0.12079305,-0.048468564,0.027617766,-0.09834595,-0.0566434,-0.35837862,0.6350061,-0.11360223,0.53464925,0.16812977,0.18999147,-0.14557022,-0.46903965,0.1772307,1.0866385,0.5432255,-0.039960314,-0.43261385,-0.23035145,-0.49335355,-0.07754011,-0.0026217157,0.3875429,0.80618286,-0.10269313,0.045443013,0.27368897,0.109699704,0.14462832,-0.18808016,-0.28713462,-0.034619704,-0.08162724,0.5690387,0.32978654,0.014631605,0.7313804,0.045041595,0.17019354,-0.301095,-0.58836645,0.36716473,0.8383,-0.08172953,-0.35807037,0.80143017,0.60011166,-0.12146699,0.5006595,-0.63712096,-0.37952605,0.63630116,-0.35188067,-0.5625674,0.51506203,-0.35946527,0.16921511,-1.0088692,0.104431204,-0.24024068,-0.38382876,-0.2523985,-0.107367344,-2.4417634,0.27485254,-0.22704378,-0.16429879,-0.14258566,-0.19218569,0.17259659,-0.42656282,-0.76915413,0.1629843,0.06948177,0.7128401,-0.111290194,0.08273411,-0.0706646,-0.19602905,-0.34861383,0.36362875,-0.120130904,0.38475922,-0.07729836,-0.40194806,-0.030381268,-0.07251071,-0.3255578,0.1177638,-0.37421626,-0.42183,-0.05867893,-0.51953846,-0.17542611,0.68213534,-0.20516528,-0.03924211,-0.009657302,0.009902882,0.13841489,0.103481166,0.072530314,0.17708446,0.07120922,-0.1266798,-0.16366754,-0.26133844,0.4661626,0.10521603,0.27469423,0.29694036,-0.16313982,0.22372168,0.45231116,0.44480088,-0.1702357,0.83543456,0.3175692,-0.21743408,0.17737347,-0.11657598,-0.26630542,-0.6994943,-0.2991741,-0.05853246,-0.46288407,-0.76052403,-0.09268414,-0.20689778,-0.8639101,0.5890058,0.23679328,0.5304054,-0.21861662,0.29185763,0.39277804,-0.057548415,0.032104794,0.03443941,-0.23054615,-0.550209,-0.3712389,-0.82863426,-0.4141241,0.21274537,1.3462348,-0.4319873,-0.16930579,-0.14443474,-0.33853987,0.20674363,-0.026514774,0.19655548,0.29669115,0.28807366,0.13139838,-0.58684254,0.6636208,-0.0145792635,-0.029795371,-0.41604242,0.13754381,0.7929523,-0.6297568,0.04186642,0.30811036,0.02668017,-0.12855572,-0.5367015,0.039261293,0.19425505,-0.31816968,0.35178262,0.1927453,-0.6500529,0.4092271,0.21537885,-0.22729798,-0.9369251,0.60843986,0.07882141,-0.16959228,0.09032758,0.42333964,0.17791034,-0.057100818,-0.41157445,0.29651618,-0.37893394,0.3899902,0.34129024,-0.0804283,0.27761707,-0.29246598,-0.44531262,-0.7727314,0.13607243,-0.5170458,-0.2592246,0.24311072,-0.017631533,0.095690794,0.3287449,-0.0062744725,0.4822672,-0.35033613,0.14083366,-0.00042222303,-0.31461117,0.6591506,0.3819462,0.37161618,-0.33179387,0.763602,0.17582594,-0.14865552,0.064825945,0.2493186,0.45051393,0.016683893,0.28412586,-0.013536015,-0.36390302,0.4240893,1.1368527,0.14923412,0.18434663,0.31700325,0.013011336,0.08002459,0.16170023,0.1272039,-0.09016326,-0.59825224,-0.2206133,-0.14767553,-0.012478124,0.54079145,0.18254758,0.3427514,-0.142396,-0.21157217,0.07268929,-0.005941467,-0.016185122,-1.1870773,0.10889853,0.08401413,0.65839,0.6030371,0.1227672,0.08644556,0.34005582,-0.41260484,0.025679938,0.22732696,0.09895923,-0.37884703,0.67839384,-0.47431853,0.6012075,-0.20373407,-0.02126903,0.19538894,0.0548194,0.39212912,1.0104923,-0.16299285,-0.0091793975,-0.04359258,-0.30409572,0.21695064,-0.4659565,0.004526344,-0.65526253,-0.47460088,0.7401404,0.4073005,0.274843,0.09236274,-0.074186176,0.005859765,-0.09306658,0.09500484,0.08752572,0.019350886,-0.04909217,-0.5186268,-0.12112133,0.59168166,0.05647708,0.090502314,-0.043199405,-0.19307798,0.2780042,-0.13619484,0.083043694,-0.013799516,-0.8408321,-0.16697152,-0.6072248,-0.60502714,0.083737165,-0.28732368,0.28485292,0.24283212,-0.14078422,-0.103037335,0.10247434,0.3843154,0.77187574,-0.19303657,-0.2143878,-0.40954277,0.11098025,0.21158639,-0.28693178,-0.057093356,-0.087908745,0.13659881,-0.86515695,0.59058297,-0.057623457,-0.41907704,0.06784095,-0.26040748,-0.17829247,0.6009707,-0.06932576,0.00900792,-0.051349856,-0.41201115,-0.32865298,-0.23073682,-0.2569082,0.19445838,0.12881361,-0.11873818,-0.11131742,0.050369024,0.036863707,0.26062036,-0.0029669187,0.35407087,0.25083694,0.09979921,-0.4606892,0.051043645,0.17706752,0.54148126,0.014944294,0.108548634,-0.045136616,-0.29722306,-0.3359788,0.12291931,-0.21831228,0.3246553,0.16794632,-0.27048934,0.73526025,0.14307469,1.0372028,0.12845224,-0.49321443,0.14649326,0.53370166,0.12035446,-0.2862302,-0.17182961,1.0820167,0.6508058,0.044513825,-0.30872703,-0.52190787,-0.23400389,0.22253461,-0.31943858,-0.16900617,0.33836517,-0.39525613,-0.29080993,0.3515061,0.021985842,0.18570599,-0.31161642,-0.03470006,0.20905614,0.024818247,0.3495545,-0.6742637,-0.27747074,0.05994372,0.11563821,0.05791438,0.082409926,-0.5655164,0.41394737,-0.79631007,0.22746111,-0.25103667,0.17358145,-0.092048906,-0.03446833,0.29314366,0.15017357,0.52904356,-0.39333865,-0.4594424,-0.20123562,0.74149036,-0.03239083,0.19503213,0.7952085,-0.3077367,0.15353036,-0.035328757,0.5336807,1.2995689,-0.11457232,0.043745376,0.39903033,-0.56576496,-0.7471064,0.34089032,-0.7893278,0.50738716,0.06965,-0.28214967,-0.33313182,0.33562323,0.23309174,0.09571753,0.11966608,-0.6235446,-0.14945564,0.34534088,-0.2861984,-0.28328478,-0.4555362,-0.05440725,0.6632714,-0.24952866,-0.32653582,0.06726727,0.20886122,-0.28193483,-0.78914547,0.027734486,0.0324126,0.15407392,0.012642189,-0.16348846,-0.027746003,0.03817972,-0.4658108,0.03146269,0.16259342,-0.26395184,0.08477233,-0.2674325,-0.039631642,1.0377537,-0.4432887,-0.39937228,-0.5868929,-0.55419594,-0.768554,-0.39381483,0.62205166,0.092442185,0.201277,-0.6074738,-0.0030019013,-0.111808494,0.12632363,0.034995016,-0.3021033,0.51365733,0.0943396,0.3355086,-0.06320444,-1.1704866,0.40891477,0.054628752,-0.36686116,-0.6499204,0.52456343,-0.078377254,0.7301786,0.23067011,-0.034917142,0.35183853,-0.6515842,0.25626156,-0.17140085,0.022899134,-0.8263118,0.19419384,350 -937,0.6376568,-0.1266958,-0.86025375,-0.1667313,-0.20108327,-0.21506327,-0.30618224,0.61569506,0.1866024,-0.6133633,-0.14182673,0.019732475,0.004029323,0.25807813,-0.30295327,-0.60266644,0.19825964,0.12880082,-0.48593023,0.36395875,-0.5410373,0.21954961,0.118510135,0.5998411,0.36556098,0.19418277,0.14202927,0.0056024953,-0.24925388,-0.45146272,0.047101546,0.24455313,-0.61870015,0.20146535,-0.18468815,-0.56373966,-0.07369244,-0.52387315,-0.24613571,-0.87217194,0.16963015,-0.93734723,0.50953275,-0.053197697,-0.33518934,-0.043972544,0.32045925,0.49456587,-0.051327195,-0.056717332,0.24831098,-0.21650225,-0.24584116,0.021386618,-0.17123881,-0.47180787,-0.54302734,0.12193661,-0.39320326,-0.1142275,-0.3094156,0.22567138,-0.50730884,0.044446435,-0.23669897,0.4659743,-0.28956935,-0.29929343,0.29077053,-0.1568016,0.38562152,-0.53876734,-0.10180376,-0.184623,0.26302457,-0.33985087,-0.3099229,0.034560993,0.22295041,0.39261657,0.13099207,-0.2258818,-0.18923269,0.017436933,0.1262851,0.44995755,-0.21924797,-0.52978516,-0.2920409,0.094566576,0.2553585,0.32622957,0.09849808,-0.27599433,0.040431537,0.24339381,-0.3166832,0.6999315,0.41816247,-0.23408669,-0.042250928,0.13702425,0.29734635,0.4106024,-0.24409844,0.2267962,0.08440896,-0.6482633,-0.20564885,0.10893195,0.08681163,0.5018381,-0.16586265,0.4412938,0.81789875,-0.18726367,-0.045828406,0.40307617,-0.014616034,-0.20964298,-0.25837305,-0.26077712,0.29825595,-0.75984454,0.3445566,-0.27876914,1.0128227,0.0644751,-0.7035966,0.18690108,-0.65821165,0.05836694,-0.24859676,0.5671963,0.7547311,0.41746894,0.18701796,0.8017141,-0.35977545,0.07787089,-0.09924908,-0.5064734,0.012344653,-0.13737498,0.21856436,-0.44083786,-0.20734343,-0.072070025,0.11376477,0.07619274,0.41080332,-0.39074615,-0.3028576,0.14590448,0.76118016,-0.28391582,-0.11254751,1.0282043,0.89061224,0.9639833,0.21443714,0.9170345,0.07146701,-0.021420462,-0.04680976,0.2774718,-0.6721255,0.49248636,0.28677467,-0.19885674,-0.08656266,-0.041709676,0.05472562,0.6601502,-0.38611242,-0.08084268,-0.2414606,0.21228217,-0.09387147,-0.23052135,-0.46088088,-0.21350503,0.14754638,0.11193674,0.17010732,0.2360937,-0.011534518,0.57233447,-0.06661475,1.1288064,-0.16205448,-0.02499278,-0.07647473,0.5508066,0.10985238,-0.113143705,0.0076007084,-0.27876604,0.4018611,0.071789935,-0.478209,0.074698806,-0.14111827,-0.34709758,-0.19014816,-0.33703324,-0.24005832,-0.22682372,-0.5530277,-0.06050491,-0.18595861,-0.43617487,0.38129798,-2.6313958,-0.22555159,-0.10959633,0.09068302,-0.20932513,-0.37734985,-0.19919275,-0.57499814,0.730623,0.22035135,0.744602,-0.56425244,0.50857717,0.47263443,-0.5639156,-0.065082476,-0.81885505,-0.14918767,-0.08333971,0.3193645,0.23396832,-0.17948078,-0.16299157,0.03275223,0.70230526,-0.08578091,0.04400684,0.07898878,0.36288863,-0.28131688,0.7117011,-0.019961419,0.72803587,-0.5827487,-0.27884886,0.40816566,-0.33765143,0.10042636,-0.16568312,0.12932502,0.45640424,-0.49397984,-1.0798537,-0.7531017,-0.30014506,1.2942865,-0.1142009,-0.34043658,0.33010775,-0.30477107,-0.29873285,0.32343912,0.54753786,-0.19829105,0.17356569,-0.7655537,-0.01488309,-0.33661097,0.03372258,-0.108319044,-0.06541116,-0.53399426,0.60439736,-0.036027286,0.28694752,0.34151947,0.13429625,-0.32317308,-0.47168368,-0.011198381,1.1143479,0.38817587,0.22429118,-0.40415135,-0.072773926,-0.61348873,-0.031784836,0.057647314,0.7843122,0.88496435,0.03757544,0.14981355,0.2062695,-0.051161405,0.026513398,-0.08297077,-0.43937206,-0.24524342,0.023658244,0.6978905,0.5652098,0.15299836,0.5507307,-0.18128164,0.4893013,-0.23896341,-0.4288619,0.66031694,0.5908161,-0.20780925,-0.35293448,0.7820392,0.5149336,-0.033845406,0.49168625,-0.5353641,-0.5694043,0.3959752,0.06606024,-0.5911688,0.14383596,-0.46880838,0.24548583,-1.2050495,0.12981738,-0.6789741,-0.8450132,-0.46976936,-0.23310103,-3.6198547,0.32456455,-0.22767463,-0.07996345,-0.35408154,-0.31360272,0.29219168,-0.3960932,-0.70815897,0.018926365,0.01574956,1.0463939,-0.13651547,0.08141626,-0.25263163,-0.17854749,-0.24047233,0.098672085,0.28802758,0.23811017,0.03581917,-0.28352633,-0.08975475,-0.22487086,-0.5265351,-0.072729975,-0.8087141,-0.62099284,-0.00070104277,-0.45228264,-0.42676076,0.6417768,-0.37455264,-0.03945091,-0.1776256,0.039146617,-0.035271432,0.6037579,0.13062023,0.042709745,0.17800412,-0.036948327,0.06942697,-0.30079415,0.08007354,0.0914511,0.29766354,0.36126855,-0.13042176,0.34152985,0.61068803,0.85055995,-0.018135542,1.1216956,0.31801525,-0.050389852,0.21015826,-0.2947415,-0.6324263,-0.3964096,-0.1044401,-0.034986213,-0.4061909,-0.22079779,0.082273334,-0.27413815,-0.7747374,0.71046805,0.25029376,0.016673446,-0.18563937,0.34911394,0.3478484,-0.29160893,-0.22274238,0.03784961,-0.070326,-0.5522217,-0.21101926,-0.56639177,-0.71403044,-0.50239444,1.1065084,-0.17230095,0.2791315,0.04515846,-0.030500846,0.13129827,0.12817138,0.005493821,0.08807883,0.43047154,-0.1494168,-0.8028568,0.3755732,-0.4156019,-0.15018986,-0.69999397,0.2196683,0.8458933,-0.67890143,0.39757603,0.59784585,0.1841467,-0.24070325,-0.49953744,-0.112020016,-0.03228065,-0.1298827,0.48788702,0.27926943,-0.9122214,0.6637299,0.53610426,0.084365375,-0.7123365,0.63659036,0.19301344,-0.29525563,-0.051214717,0.41470882,0.06762517,-0.02886924,-0.1686695,0.3597285,-0.37790975,0.319718,0.0897336,-0.11523687,0.5613283,-0.2411428,-0.21893372,-0.569268,-0.009665695,-0.7208213,-0.32275584,0.13264082,-0.11450753,-0.0038584063,0.3614128,-0.103966124,0.34245327,-0.38881576,-0.006156378,-0.34690636,-0.32625648,0.28614518,0.679439,0.4652801,-0.5309222,0.8605166,0.23773375,-0.08151496,0.059728276,0.14614536,0.6009044,-0.13129176,0.6574399,-0.12245654,-0.10543304,0.053550765,0.98001903,0.0011472411,0.49014628,-0.05709349,0.07844227,0.0013735525,0.09032852,0.28213167,0.054984048,-0.6868998,-0.09409079,-0.5421036,0.13719188,0.5368511,0.044024084,0.35883087,0.021695338,-0.20205289,0.044737592,0.029307062,-0.12854493,-1.6194236,0.84616494,0.3521629,0.77695984,0.15099448,0.061469987,0.11223757,0.76900387,-0.18106434,0.23470503,0.19421753,0.14630906,-0.2822868,0.6009375,-0.8410016,0.5279431,-0.053207003,0.09895671,-0.049224116,-0.080276735,0.59570724,0.8183893,-0.17334707,0.23701324,0.056835912,-0.43000537,0.25489038,-0.42875358,-0.06828579,-0.5012712,-0.2072958,0.86089826,0.51949334,0.27126482,-0.23900089,-0.023763329,0.2241001,0.079663284,0.0026029618,-0.13220182,0.06653739,0.03748147,-0.66812444,-0.17127243,0.4444629,0.32559374,0.3585709,-0.063457325,-0.096378215,0.41529796,0.01762077,0.1518963,-0.2841368,-0.512911,0.04964707,-0.7013635,-0.45215356,0.2402427,-0.5959652,0.24588038,0.28563583,0.021427764,-0.03375903,0.34330985,-0.0220872,0.72283834,-0.08684499,-0.19808136,-0.32889712,0.21114501,0.27296627,-0.33759993,-0.4487035,-0.38823068,0.107460566,-0.49316072,0.20146655,-0.24771677,-0.59668154,0.3137448,0.0010652948,-0.02119726,0.36750194,-0.075693004,-0.0037243692,0.2524273,-0.15041353,-0.08039196,-0.22245806,-0.12799792,0.31584123,0.27517164,-0.03684401,-0.08189079,-0.14528647,-0.15127084,0.27662337,0.030846195,0.43660268,0.42873427,0.12152119,-0.42046392,-0.074169114,0.24899565,0.7223658,-0.12498551,-0.18008795,-0.3762743,-0.15431887,-0.3284458,0.19043283,-0.060984746,0.28717282,0.18002012,-0.15513149,0.6127685,0.083981685,1.0690193,0.06251751,-0.38901073,0.24225721,0.39895356,-0.19532953,-0.1619663,-0.4635062,0.9279945,0.2671845,-0.29266608,-0.04070907,-0.59610754,0.00935995,0.1463513,-0.16655217,-0.36979103,-0.08633385,-0.46589783,-0.18569335,0.37746924,0.47970784,0.16935903,-0.13222319,-0.016247392,0.35852757,0.017256064,0.33708555,-0.6315696,-0.03424794,0.19196044,0.46630457,-0.25051266,0.07829624,-0.5580792,0.32050678,-0.7172702,0.101946235,-0.44506186,0.30006745,-0.24255008,-0.28073737,0.2723402,-0.11484649,0.43747216,-0.34571794,-0.2520478,-0.05448518,0.3010602,0.35873246,0.22364436,0.6589041,-0.3069103,-0.04679406,0.1274841,0.54722476,0.9215074,-0.29584062,0.041963607,0.39043275,0.048509702,-0.43673185,0.3185466,-0.41268328,0.34141347,0.11586419,-0.3127086,-0.47198868,0.23483062,0.28811017,0.06265123,-0.044683598,-0.6015019,-0.08823776,0.41534746,-0.06372296,-0.35036346,-0.3905796,0.14902972,0.40893576,-0.099135034,-0.26605025,0.06038618,0.35771593,-0.05305999,-0.3512652,0.010089587,-0.10878564,0.19879656,0.07518529,-0.43773296,-0.11012013,-0.0561738,-0.5609034,0.25866315,0.12622762,-0.22404069,0.10737579,-0.114495374,0.026811618,0.9680809,-0.37881252,0.303819,-0.44749567,-0.4681641,-0.50901705,-0.20704263,0.26093596,0.1431657,-0.046875324,-0.5473538,-0.17289227,-0.10824435,-0.029012637,-0.012692484,-0.37124202,0.49325037,0.042779647,0.6260948,-0.09559026,-0.83979553,0.2205696,-0.070101924,-0.30635816,-0.5263772,0.4963993,0.09666107,0.6894813,0.105640404,0.15071443,0.32627535,-0.4967778,-0.07419088,-0.06587272,0.009934258,-0.9917124,0.033116058,365 -938,0.3878598,-0.23697208,-0.7560808,-0.22240216,-0.3888969,-0.041478023,-0.39649865,0.3147587,0.12915562,-0.3679042,-0.3982294,-0.10265458,0.2391973,0.4617985,-0.11690907,-0.7191696,0.2119775,0.4044766,-1.0130814,0.67787486,-0.7164018,0.3682739,0.23975077,0.38144988,0.060958266,0.27760088,0.46618843,-0.106236786,-0.07822712,-0.13396704,-0.1174161,0.11176183,-0.8013393,0.23481369,-0.20662369,-0.5727446,0.036705125,-0.5365686,0.08941009,-0.8696434,0.16510516,-1.0112517,0.6080397,0.04863042,-0.20527703,-0.32657358,0.35840005,0.4526839,-0.56146604,0.18388508,0.17714691,-0.39604786,-0.46962067,-0.31093925,0.011951962,-0.44588366,-0.6373972,0.07955952,-0.7416942,-0.30538443,-0.28921366,0.09135389,-0.26700214,0.1533949,0.06577966,0.24921495,-0.4928405,-0.15302792,0.119585685,-0.25868514,0.13835673,-0.545402,-0.0062796203,-0.3591073,0.71087563,-0.2083476,-0.44008273,0.6349865,0.48746058,0.48244238,0.29250157,-0.41825324,-0.13830568,-0.18957953,0.1748478,0.47785404,0.003033611,-0.46205598,-0.41193792,-0.16536579,0.42263296,0.43674266,0.117443606,-0.32271266,-0.067445174,-0.3245845,-0.21165037,0.40575027,0.57193494,-0.5126629,-0.27226242,0.3699174,0.5762089,0.2967557,-0.22206813,0.05791862,0.03374187,-0.7583093,-0.28744003,0.084040835,-0.10663957,0.62169456,-0.27476108,0.026576502,1.0112557,-0.16035928,-0.17915148,0.012001363,0.030139424,-0.3469227,-0.15010905,-0.26891357,0.32121992,-0.58117497,-0.060180567,-0.3772443,0.8085615,0.31714466,-0.7234091,0.43994868,-0.68886054,0.13736509,-0.16887902,0.66802776,0.8203409,0.52060884,0.51772404,0.8338356,-0.23253697,0.2004991,0.028707374,-0.43890473,0.112905286,-0.38202572,0.02848553,-0.5291342,0.25615746,-0.18807106,0.15472783,0.22839163,0.76960677,-0.44009352,-0.18244427,0.21214153,0.46973744,-0.37789962,-0.18336977,0.80159205,1.0673026,1.1541486,0.08688206,1.5341516,0.3978593,-0.23133044,-0.05467534,0.15537754,-0.8826923,0.18520314,0.38895255,-0.10709162,0.38459274,-0.0015023933,0.115690164,0.2685626,-0.49336156,0.10160358,0.010872559,0.42544606,-0.10604474,-0.1568017,-0.42525432,-0.23806962,0.24353462,-0.07197296,0.031552155,0.39055946,-0.062013734,0.5175311,-0.116037086,1.1907586,0.005141486,0.04081013,-0.09491174,0.6445801,0.37492812,-0.00080374425,-0.13026847,0.46529582,0.32622087,-0.05447607,-0.74887675,-0.0051933066,-0.4430499,-0.41470078,-0.14636606,-0.44126692,-0.1312051,0.0670781,-0.30849344,-0.25750196,0.14032349,-0.3349616,0.6032591,-2.307587,-0.38431007,-0.17581585,0.35357133,-0.16437201,-0.15053768,-0.4296654,-0.53593946,0.35888326,0.20543097,0.6395131,-0.66774374,0.5197883,0.4877966,-0.54473186,-0.3425563,-0.7408809,0.033061158,-0.178637,0.30071506,-0.03208595,-0.46280354,-0.15503551,0.051672403,0.86080205,-0.057004567,0.2110783,0.5860147,0.32397398,0.22671534,0.66590613,0.007502675,0.80521685,-0.5958731,-0.32381713,0.23275088,-0.39026144,0.4110491,-0.1954093,0.06855827,0.67267424,-0.77429765,-1.1769868,-0.69597465,-0.32155097,0.929884,-0.68561304,-0.4895109,0.20704287,0.12373755,0.091174535,0.22604136,0.6354193,-0.03720957,0.3081261,-0.62327117,0.024401354,0.14809927,0.3023369,0.14464271,0.06995103,-0.3128085,0.8238472,-0.1461059,0.67331225,0.30506343,0.15608256,-0.3981263,-0.51516825,0.2781181,1.0981001,0.25749025,0.06356366,-0.24912702,-0.4440067,-0.5545988,-0.46126565,0.027611287,0.4565837,0.830075,-0.1292217,0.20332886,0.23766023,0.015912237,0.058516968,-0.25202787,-0.34785405,0.046488818,0.10208678,0.57230896,0.78923357,-0.13083555,0.43975222,-0.12695977,0.50555086,-0.06774091,-0.64300126,0.79048383,0.7846073,-0.23796977,0.021554552,0.5542316,0.4892898,-0.5386024,0.77342284,-0.71676546,-0.6248073,0.720909,0.08810596,-0.31674093,0.24160375,-0.32643566,0.3219478,-0.85947853,0.3758166,-0.42898875,-0.12588225,-0.30974507,-0.16333094,-3.313584,0.48561695,-0.02240984,0.16127427,-0.31060046,0.004662655,0.1884851,-0.6997328,-0.7157975,0.18804522,0.15872315,0.7201839,-0.32453245,0.100043915,-0.31196406,-0.4815688,-0.07485613,0.34587488,-0.034996785,0.32499266,-0.15060163,-0.49152032,0.17041768,-0.13240567,-0.4920947,-0.0059898277,-0.79558414,-0.5314674,-0.16633761,-0.80947137,-0.3030462,0.6364286,-0.60088557,-0.008577073,-0.114039965,0.06744623,-0.23453626,0.06607444,0.038642243,0.3024256,0.06291758,-0.03322592,0.013871464,-0.24581103,0.3957486,-0.08215627,0.18746439,-0.11924615,-0.11199509,0.07602267,0.56642395,0.6695661,-0.29311648,1.1772107,0.3277176,-0.07709776,0.19728754,-0.3077013,-0.3011716,-0.64594454,-0.398198,-0.31283703,-0.5043005,-0.6018967,0.15412375,-0.1414159,-0.93644214,0.8381625,0.11416393,0.15396954,0.051377904,0.41529274,0.17042428,-0.21642455,0.027460061,-0.20542307,-0.16092165,-0.5838212,-0.29750234,-0.7789182,-0.46145403,0.038399242,0.91005534,-0.46790618,-0.12791617,0.023341803,-0.20219189,0.06591098,0.17798829,0.045477238,0.30516872,0.5195302,0.015380209,-0.8346433,0.41780195,-0.13815926,-0.11432552,-0.36184165,0.047591913,0.63803095,-0.94126207,0.6638978,0.5313566,0.014760955,0.10953698,-0.57215923,-0.23369789,0.0663753,-0.17142586,0.4770919,0.04114318,-0.96849597,0.623445,0.29294503,-0.64093703,-0.88430953,0.4589427,-0.11085358,-0.021898003,-0.030727327,0.4689206,0.12162048,-0.15824214,-0.55769056,0.021911843,-0.5619657,0.27156648,0.09178218,-0.03059242,0.4903941,-0.21899416,-0.46162987,-0.75871813,-0.058545467,-0.5364468,-0.19312996,0.2584864,-0.08968067,-0.151823,0.28501952,0.16583756,0.26776707,-0.48628035,0.19093294,-0.035438005,-0.3638017,0.27851832,0.4764817,0.39481962,-0.3885082,0.63568,0.11654013,-0.048617743,0.0063632294,-0.1557279,0.32071376,0.19917502,0.5027894,0.1357551,-0.1440602,0.17028981,0.75783044,0.21640204,0.4282618,0.3261825,-0.11264808,0.30422217,0.22793283,0.3548835,0.103186674,-0.4059694,0.060194492,-0.075673975,0.03854857,0.5938101,0.32816565,0.35584566,0.1697817,-0.18977575,-0.10336837,0.23819251,-0.036155127,-1.197276,0.5458799,0.25342077,0.62231314,0.5655725,0.12553807,-0.08527991,0.5728893,-0.47002304,0.013086501,0.30195987,-0.14345303,-0.37348825,0.7504946,-0.6217457,0.42297238,-0.3317973,0.053184744,0.23578629,0.2041515,0.40033987,1.0930908,-0.17181139,0.17934419,0.017650925,-0.043695446,0.18944122,-0.42278755,-0.190333,-0.30024338,-0.3254749,1.0512462,0.22998138,0.3988918,-0.24687782,0.001024297,0.046844736,-0.2848004,0.24197723,-0.043181613,0.16620807,0.13562304,-0.6356734,0.05527922,0.8440361,0.2389537,0.15998678,-0.008674234,-0.37020305,0.3845313,-0.321673,0.07491455,-0.18255988,-0.8041197,-0.054277387,-0.3600507,-0.57234246,0.48143092,-0.19055535,0.13743241,0.26127127,-0.037777845,-0.17907481,0.6221357,0.0793487,0.7232825,0.12126567,-0.33326447,-0.090189844,0.29326853,0.38748854,-0.4147162,0.18606086,-0.50596,0.03679975,-0.5209843,0.64773613,-0.12730622,-0.54069287,0.103620656,-0.08927498,-0.18614693,0.55171543,-0.10301059,-0.07977751,0.10971076,-0.094769955,-0.30353963,-0.2055915,-0.48942044,0.12749292,0.177654,0.08581226,-0.28981057,-0.11415741,0.026323937,0.41449106,-0.15931544,0.44016704,0.22442926,0.19317326,-0.19701004,0.26509717,0.13341357,0.608646,0.09575055,-0.14318845,-0.24784812,-0.26801765,-0.29368594,-0.03010726,-0.1032793,0.18239866,0.2308528,-0.15917255,0.83065015,-0.00073792716,1.2838949,0.04222499,-0.40732047,0.19775625,0.5776867,0.042930815,-0.16074233,-0.3108826,1.0870013,0.5020037,-0.31746206,-0.05852735,-0.5609688,-0.22499298,0.29295292,-0.35672522,-0.36976585,-0.05593356,-0.6559209,-0.55291575,0.26790398,0.32310084,0.26110613,-0.2549239,0.31532386,0.16768785,0.2699117,0.18324007,-0.8043661,-0.37787217,0.31116712,0.41960728,-0.15103608,0.1421103,-0.2865942,0.49099767,-0.9082687,0.18520388,-0.6088386,0.09219191,-0.28199747,-0.497546,0.109892584,0.043662723,0.29890835,-0.24571995,-0.31718618,-0.06317613,0.45424226,0.08209156,0.38294137,0.7755565,-0.27733448,-0.0956759,0.06440015,0.5467048,1.1993788,-0.43205306,-0.08840936,0.330214,-0.27223998,-0.6186645,0.44033882,-0.5879498,-0.05632758,-0.18915725,-0.5640276,-0.6535911,0.01357117,0.024995087,-0.0015966567,0.19431292,-0.81777954,0.027028143,0.2905144,-0.17244568,-0.27669916,-0.22640872,0.4250023,0.8754952,-0.27863026,-0.30845764,0.15339956,0.201313,-0.28261366,-0.69959265,-0.09821772,-0.2855687,0.5260039,0.18979074,-0.22999105,0.10264215,0.25695845,-0.62545794,0.12895916,0.2143827,-0.31398842,0.24400349,-0.3673955,0.11325943,0.9943966,-0.3012052,0.1158777,-0.3299035,-0.5868648,-0.9663875,-0.18672553,0.39124486,0.13145883,-0.023823934,-0.46854445,0.10479589,-0.113441296,-0.2973209,0.16853276,-0.50014514,0.42481068,0.047342572,0.51738095,-0.13960798,-1.1337304,0.25282988,0.2421164,-0.16592802,-0.81183165,0.45615652,-0.2708311,1.0946188,0.0674851,-0.22119536,0.18209243,-0.61174846,0.22163433,-0.4451151,0.28583968,-0.52959704,0.07400022,379 -939,0.433946,-0.119195625,-0.4921053,-0.057085373,-0.32679302,-0.21004061,-0.25874928,0.39942473,0.25271913,-0.072294146,0.19180638,-0.16967326,-0.14392978,0.57413906,-0.075377285,-1.0452224,0.00925089,0.103055835,-0.7576379,0.7653721,-0.44988206,0.25377938,-0.21745118,0.35857907,0.1912582,0.18713579,0.12555224,-0.15366274,0.20709096,-0.24053007,0.09357567,-0.030176379,-0.902038,0.22370343,-0.15995489,-0.2647091,0.17215453,-0.37856743,-0.6833966,-0.89267385,0.37621567,-0.5622221,0.4997559,0.16731669,-0.23786345,0.20961815,0.16393624,0.54839265,-0.26287538,0.010684892,0.31528145,-0.13928334,0.052737843,-0.1932937,-0.20671806,-0.6070333,-0.6451071,-0.16885568,-0.7184805,-0.30279472,-0.36071053,0.2855275,-0.49577674,-0.21624942,-0.110368244,0.452314,-0.52557707,0.21713771,0.1941208,-0.070922025,0.24605586,-0.6257328,-0.090437554,-0.1194922,0.031776436,0.053167637,-0.07814886,0.5513385,0.12551461,0.32051992,-0.06711128,-0.25119376,-0.24547528,-0.20348567,0.11348407,0.5599975,-0.14300384,-0.36286798,-0.16098265,0.1199969,0.068185315,0.17260857,-0.105202936,-0.51846004,-0.071122,-0.08236251,-0.17328459,0.6128205,0.5050677,-0.24768977,-0.40477782,0.3855867,0.43371192,0.5170757,-0.08185948,0.014996897,0.06291323,-0.475247,-0.10466959,0.16856529,-0.18536209,0.37209624,0.031896625,0.28321078,0.87333757,-0.21142846,-0.06907103,-0.14163472,0.19829582,0.16753612,-0.36417034,-0.23117803,0.1971578,-0.54820216,0.33265063,-0.10950744,0.99666846,0.052214216,-0.631554,0.31464356,-0.7173107,0.13421844,-0.017112168,0.5642379,0.6528172,0.34539545,0.30503342,0.74136925,-0.39595938,0.22930117,-0.026164683,-0.34240797,0.02780665,-0.17752336,0.22520533,-0.46179894,-0.20594558,-0.19959946,-0.00023564967,-0.07263473,0.31310186,-0.64671916,-0.19105512,0.15195945,1.0574435,-0.23141213,0.16346906,0.41525257,1.0327722,1.2500771,-0.075203344,1.2148736,0.3966045,-0.23517774,0.34339702,-0.2954826,-0.8425585,0.2353756,0.29924423,-0.16103727,0.32866934,0.07858991,-0.026094258,0.4342516,-0.4503458,0.07600356,-0.18179804,0.47561428,0.10438023,-0.18700486,-0.37731352,-0.20950828,-0.09916958,-0.01414968,-0.05573753,0.3538108,-0.43627885,0.0333232,-0.14446624,1.602618,-0.014989307,0.14084662,0.19421731,0.67247695,0.27010342,-0.02999581,-0.08518116,0.48684627,0.30978587,0.19283009,-0.78859746,0.12328731,-0.48525962,-0.25638297,-0.1885703,-0.30773515,-0.08112109,0.033751562,-0.40886652,-0.1450725,-0.16821441,-0.016947847,0.49942634,-2.5462215,-0.33322647,-0.16173464,0.30889314,-0.36140898,-0.15981284,-0.13593741,-0.4734646,0.49267948,0.24424754,0.5173137,-0.50798285,0.37674028,0.6132655,-0.6033043,-0.03431248,-0.5655591,-0.15660848,0.014168152,0.5868425,-0.0675838,-0.009472284,-0.028113311,0.23458098,0.5847048,0.09069078,0.131238,0.37657824,0.5866262,-0.10396168,0.53459835,-0.15507044,0.35909402,-0.37075785,-0.16251203,0.25457448,-0.39510718,0.46768942,-0.2734508,-0.002792716,0.59044015,-0.40028742,-1.044492,-0.32510307,-0.15625133,1.0058799,-0.32821512,-0.47607544,0.37022343,-0.057881773,0.06785241,-0.095485836,0.4640442,-0.12463972,0.14325204,-0.6168889,0.14983173,-0.2078442,0.35387343,0.0632675,0.0072237225,-0.24813908,0.6631407,-0.11320818,0.22190224,0.26538932,0.2391013,-0.38475198,-0.46928623,0.06107149,0.65082544,0.33010656,0.12353026,-0.24995016,-0.19580694,-0.21835676,-0.27360877,0.079907574,0.68670374,0.79509205,-0.23092085,0.17280546,0.36160916,-0.20047039,0.011090717,-0.2788061,-0.45191047,-0.02930299,0.14057396,0.48260844,0.8521168,-0.02878467,0.60168976,0.034132734,0.15699123,-0.2179514,-0.3732687,0.4107973,1.0522645,-0.20986448,-0.16978163,0.47438014,0.42218924,-0.4084421,0.5595425,-0.6606073,-0.3244026,0.6894112,-0.24418063,-0.46380377,0.086548686,-0.40393874,-0.25820896,-0.6364632,0.5425495,-0.45183823,-0.47162005,-0.53118515,-0.2514501,-2.8833337,0.21088682,-0.48067695,-0.07528681,-0.16874336,0.19556826,0.07823956,-0.6522561,-0.42586794,0.1666991,0.14372958,0.72662026,-0.17242077,0.21358271,-0.255137,-0.3109087,-0.46545088,0.21133451,0.033229675,0.26351136,0.045736313,-0.44714224,0.08159008,0.029891046,-0.36635953,0.059231922,-0.5593243,-0.3552895,-0.1413158,-0.6942333,-0.10655882,0.8109365,-0.3464081,0.02094577,-0.25606373,-0.010353581,0.0030396446,0.29391164,0.31809524,0.23423082,-0.00047278404,-0.057766918,-0.28562537,-0.34099105,0.2431686,0.015986634,0.44702914,0.2036498,0.042301048,0.0036019303,0.6151151,0.5641879,-0.004794262,0.9155134,0.3959472,-0.30760917,0.32367888,-0.30999807,-0.103888705,-0.54856676,-0.484752,-0.060069397,-0.30169562,-0.5360235,-0.11677668,-0.2786499,-0.6438472,0.5817513,0.011906168,0.35883555,-0.010759478,-0.04965302,0.3431856,-0.056036018,-0.13203627,-0.025390197,-0.13224429,-0.32481328,-0.3475078,-0.65017325,-0.4198224,0.523822,1.084174,-0.3940666,-0.206625,0.036423065,-0.2888516,-0.17846125,0.061475705,-0.0928055,0.2756456,0.28629336,0.26840815,-0.7316416,0.38487184,-0.032870747,0.06668586,-0.7793736,0.12731677,0.83358175,-0.6761976,0.63180757,0.13839386,0.15844855,-0.175946,-0.70063734,-0.2874486,0.21483727,-0.14838718,0.18300147,-0.020842364,-0.7167685,0.31387192,0.21115264,-0.6603302,-0.7981552,0.5579897,-0.08868072,-0.40957212,-0.018481864,0.43221417,0.32345474,0.011419047,-0.12291145,0.5495224,-0.33790606,0.2337638,-0.028326284,-0.22484417,0.34938872,-0.13870165,-0.2237277,-0.6838041,0.068889596,-0.34937224,-0.5753405,0.37893382,-0.013533755,-0.16228977,0.32865992,0.110095,0.32878783,-0.022845106,0.11742881,-0.110471636,-0.33720663,0.57616496,0.3844875,0.5931673,-0.5001981,0.7282579,0.10123153,-0.1387472,0.31917775,0.22696634,0.39603177,-0.06063156,0.6270829,-0.037107155,-0.031949017,0.14383943,0.93548197,0.19747171,0.56762314,0.0928378,-0.13913965,0.14556818,0.11491914,0.0055717095,0.040163502,-0.51361305,0.09219634,-0.15835091,0.10356229,0.6885668,0.14827342,0.25163934,-0.08904541,-0.4317695,0.11556984,0.27271846,-0.034993242,-1.3461627,0.3599541,0.20574325,0.7722303,0.44458216,0.17895229,0.07593587,0.7848613,0.06668921,0.023166437,0.3100708,0.08334212,-0.48205835,0.65756834,-0.7303093,0.54393446,-0.1852894,0.0708071,0.11844299,0.33250463,0.45739233,0.6383477,-0.30782703,-0.15294704,-0.15098943,-0.6053091,0.02676666,-0.2680511,0.5116648,-0.51184946,-0.61788106,0.42674103,0.7571234,0.058559474,-0.09848046,0.06664393,-0.05906938,-0.18761374,0.10373402,0.025202584,-0.29094225,0.19985951,-0.72765726,-0.012620238,0.52948385,-0.23749326,0.0773035,-0.066654444,0.12987748,0.32844165,-0.37259862,0.09116921,0.07340419,-0.80309397,0.14671355,-0.27642143,-0.3731435,0.29964554,-0.24823256,0.35390428,0.116194695,-0.008307883,-0.35257104,0.48454902,0.04016542,0.88372785,-0.27998415,-0.29120293,-0.4233391,0.087461494,0.09753496,-0.15517558,0.09445607,-0.411469,-0.1217723,-0.6555323,0.3159492,-0.25106916,-0.3009611,-0.17753276,-0.2633665,-0.13541101,0.6978851,-0.059389427,-0.14033462,-0.2766539,-0.5358835,-0.27842295,-0.13282599,0.019225864,0.29731205,0.20657654,-0.16441809,-0.30439532,-0.23771177,-0.14655682,0.2834663,-0.15155637,0.3695384,0.1574278,0.5020333,-0.17412828,-0.09998827,0.1715853,0.5867535,0.13135894,0.089952715,-0.1417024,-0.34659413,-0.49728444,0.40964186,-0.2813028,0.30240613,0.11629564,-0.41037214,0.95427614,0.21481696,1.2682018,0.03428265,-0.19558357,0.25017154,0.6221133,0.01893266,-0.08736627,-0.48382375,1.0193394,0.7104939,-0.05247076,-0.18191361,-0.21133782,-0.29694343,0.26546848,-0.39513782,-0.16246194,0.035978425,-0.5067677,-0.12506622,0.22795461,0.24550194,0.0895624,-0.20244938,-0.23209785,0.27802998,0.21774307,0.47288162,-0.5168911,-0.082257554,0.18440899,0.34592316,0.19484347,0.20707391,-0.3287905,0.3698614,-0.60452634,0.31621236,-0.22442287,0.22279787,-0.29151106,-0.18873411,0.24094233,0.03520466,0.38753927,-0.37632474,-0.21183725,-0.095449686,0.48130023,0.3045509,0.21369362,0.76905924,-0.36365092,0.0662675,-0.09452522,0.6278683,0.9389277,-0.5037739,-0.22855468,0.41516545,-0.4613967,-0.8720189,0.3570486,-0.52139604,0.03492565,-0.18491082,-0.42744473,-0.47527835,0.21938166,-0.059006274,-0.07941408,-0.063298255,-0.79441947,-0.061249994,0.34676802,-0.12732935,-0.2849867,-0.27446175,0.23652549,0.8729201,-0.06905465,-0.40977955,0.14425196,0.17125657,-0.16841511,-0.64368623,-0.015729029,-0.38690272,0.26450327,0.097926766,-0.23354338,-0.046277966,0.17535801,-0.6221634,0.048520323,0.19398232,-0.37413666,-0.1424203,-0.07293914,0.02666132,0.8476415,-0.49195388,-0.017685706,-0.6602297,-0.45087186,-0.82209307,-0.2930535,0.65497565,0.22593746,0.056935344,-0.6093692,-0.052654527,-0.06672546,-0.02489932,-0.10018455,-0.5704545,0.21380472,0.059312306,0.40646917,-0.3156452,-1.1776726,0.12236318,0.30056712,-0.2725799,-0.8752701,0.48439324,-0.34139106,0.76117796,0.07625151,0.029893762,0.11829307,-0.2575802,0.10488805,-0.356507,-0.25665382,-0.71765155,0.2451589,390 -940,0.6599548,-0.20711432,-0.69425005,-0.032104187,-0.23374046,0.12172841,-0.5006115,0.622955,0.25521508,-0.7266007,-0.08044751,-0.09884567,0.022789776,0.47624156,-0.25968012,-0.46698952,-0.051715255,0.30736348,-0.5487381,0.92425424,-0.19826278,0.37065098,0.14067979,0.38393107,0.36168724,0.19278711,0.3320063,0.21891555,-0.2614093,-0.30476353,0.08350777,0.25691056,-0.39959896,0.28523377,-0.35738072,-0.6668437,-0.1873038,-0.5246536,-0.13157582,-0.8160814,0.32564145,-0.9498667,0.8486199,-0.021612762,-0.25266755,0.07176209,0.3461873,0.35149992,0.034239385,0.11288788,-0.00973449,-0.03872987,-0.24603273,-0.2293272,-0.14653648,-0.7032017,-0.4908457,0.053782523,-0.52299404,-0.10880958,-0.06757606,0.19031717,-0.30253944,0.124827385,0.08643002,0.5999785,-0.3971639,0.0019393618,0.09975281,-0.023643393,0.30979797,-0.825683,-0.44371155,-0.089218564,0.39997673,-0.2831362,-0.070906125,4.4324183e-06,0.33284166,0.55305713,-0.123483986,-0.05691211,-0.47275102,-0.055744328,-0.021104895,0.43936223,-0.2639155,-0.690068,-0.18508743,0.1063513,0.36573842,-0.04531075,0.50531775,-0.18892193,0.013526391,-0.21905182,-0.31905547,0.43185046,0.40607417,-0.5236506,-0.2340259,0.29991972,0.515057,0.17852145,-0.19792518,0.12020464,0.017998142,-0.4048935,-0.10229156,0.08971122,0.01568721,0.5175893,-0.13950835,0.47183752,0.24333254,-0.05499899,-0.03272148,0.17309524,0.05849153,-0.28598955,-0.047262374,-0.3371007,0.28236726,-0.48283517,-0.1509932,-0.34133208,0.6025875,-0.025481893,-0.74376655,0.23813581,-0.6733969,-0.03204397,0.038959764,0.32571045,0.71477646,0.3619004,0.038108114,0.67264885,-0.16459599,-0.08979354,-0.19539024,0.008558891,-0.18049699,-0.39924982,0.023711862,-0.6839303,0.2210415,0.20449518,0.021321476,0.104494445,0.68490505,-0.48524484,-0.37698203,0.28473136,0.87778527,-0.14290586,-0.17662263,1.0107733,1.1110498,1.1021477,-0.029838694,1.2535129,0.20959538,-0.33020136,-0.16872287,-0.09090137,-0.57836604,0.39981362,0.40287447,-0.2685077,0.67328084,-0.017953236,-0.02519127,0.20057128,-0.28996593,0.05054793,-0.20616207,-0.09718582,0.15652992,-0.21499161,-0.45290306,-0.25130752,-0.10011547,-0.07690552,0.32108507,0.13049728,-0.12923445,0.5272524,0.12279907,1.4885098,-0.4288992,0.014832418,0.14523846,0.3657853,0.30278918,-0.2473368,0.026372107,-0.026227111,0.22260061,0.20042758,-0.3804631,-0.023389613,-0.1594691,-0.54239196,-0.30555734,-0.19031705,-0.18875675,0.17145418,-0.41468504,-0.1817822,-0.2057518,-0.28789243,0.28375885,-2.5514257,-0.30388805,-0.3058572,0.13599296,-0.2509675,-0.3316666,-0.3367034,-0.3047718,0.51309264,0.47139838,0.42726755,-0.50916886,0.4313254,0.3703991,-0.6278787,-0.1594201,-0.43798593,0.024355633,-0.06647821,0.34078053,-0.16671008,-0.46965578,0.28574908,0.2865493,0.41913554,-0.12846683,0.12607189,0.39588043,0.4227567,-0.116376065,0.310608,-0.09124045,0.46072024,-0.44877818,-0.36264694,0.640107,-0.3444959,0.26677442,-0.028323503,0.15427916,0.45827314,-0.654159,-0.9369862,-0.79926646,0.061094083,1.1720371,0.06551104,-0.69056153,-0.07811661,-0.28339112,-0.4282778,-0.030581713,0.5111092,-0.09315505,0.105182976,-0.9412693,-0.08414132,-0.10161831,0.18999009,0.0074467524,-0.13833237,-0.7098885,0.7791275,-0.0024562962,0.5512975,0.5013516,0.30905855,-0.5258306,-0.49298772,0.0061655315,1.1450535,0.57043856,0.14757964,-0.30065823,-0.11984847,-0.61205935,-0.036964092,0.19888173,0.5647192,0.644499,0.0750611,0.16460277,0.2804074,0.049194697,0.33611146,-0.028647033,-0.4088991,-0.39801013,0.34754202,0.60670877,0.39649117,-0.060757313,0.68194366,-0.098312564,0.34769222,-0.30267808,-0.39015332,0.6677277,1.0769411,-0.29794168,-0.5455161,0.73705655,0.5179918,-0.47219875,0.559486,-0.6298397,-0.5731639,0.090462886,-0.104467995,-0.40608093,0.37842348,-0.43963596,0.27717257,-1.1535609,0.16996811,-0.5453138,-0.080227286,-0.7190697,-0.19429411,-2.6463053,0.40254858,-0.036481608,-0.058866583,-0.30607587,-0.44918442,0.28301275,-0.6717009,-0.85892236,0.14509557,-0.01050812,0.86459833,-0.0758451,0.12728815,-0.04523586,-0.5629596,-0.004552401,0.30882794,0.0142613975,0.39671403,-0.109636,-0.5525871,-0.033490717,-0.1871272,-0.25093588,-0.10035977,-0.6325816,-0.46633303,-0.19380751,-0.5015717,-0.08439552,0.55913824,-0.42876866,0.08790453,-0.31311557,0.016639011,-0.11500976,0.34631455,-0.15266046,0.0142736705,0.26657593,-0.32010138,0.16029698,-0.13647157,0.12152959,-0.04524274,0.1694728,0.5519567,-0.3216318,0.5310932,0.37236795,0.6906852,-0.15234494,0.8012013,0.356388,-0.031221986,0.2721303,-0.23861562,-0.26994184,-0.48799333,-0.13957219,0.091044664,-0.4249401,-0.5397947,-0.06653913,-0.29519346,-0.78918874,0.77836555,-0.06352558,0.17086148,0.13505553,0.58669513,0.47616938,-0.22894841,0.024805225,-0.08497571,-0.11425085,-0.40625545,-0.35491073,-0.5746708,-0.47889173,-0.0015475967,0.8975095,-0.24179992,0.15023734,0.45047605,-0.037676256,0.17946734,0.37578297,0.23864026,-0.09316697,0.5847809,-0.10145183,-0.7124862,0.3207915,-0.2913089,-0.21540776,-0.45366678,0.23066348,0.38125613,-0.46766064,0.31212616,0.5775065,0.16448158,-0.26370108,-0.5080938,-0.048787203,0.14105177,-0.28862283,0.38848066,0.51806045,-0.7092298,0.46914247,0.335338,-0.16815744,-0.83172053,0.5691117,0.1811369,-0.12831345,-0.08346176,0.500246,0.43172243,0.0015430559,-0.329754,0.16230628,-0.3501519,0.28022736,-0.20727801,-0.047628842,0.29129812,-0.2889595,-0.41194603,-0.66262746,0.15773696,-0.5972159,-0.44349277,0.2847215,-0.008524745,0.03413159,0.20577708,0.03138031,0.3926921,-0.55223715,0.10965135,-0.25991994,-0.21014641,0.42714927,0.2830331,0.39543855,-0.53474635,0.54050213,-0.11409991,-0.088597395,-0.1969298,0.08182913,0.55317557,0.2911723,0.31469706,0.23503928,-0.233739,0.15289593,0.73270506,0.3059894,0.26595458,0.20980163,-0.16182938,0.187927,0.053333934,0.102470875,-0.08723467,-0.38634378,-0.34114438,-0.23593248,-0.036198687,0.51077783,-0.05100931,0.2875579,-0.21727018,-0.4349824,0.032495443,0.14016804,-0.011484764,-1.245151,0.21711001,0.09960823,0.7844419,0.5249741,-0.23098463,0.14130455,0.66999745,-0.18386702,0.07051236,0.2671697,-0.034251403,-0.51515007,0.6362193,-0.62770635,0.21517324,-0.059802547,-0.002204223,-0.09762411,-0.061272237,0.3251219,0.6823418,-0.08817088,0.29001227,-0.018693956,-0.18266453,-0.2227326,-0.24314499,0.08470941,-0.3803363,-0.13788487,0.8034775,0.3110117,0.44550782,-0.34146932,0.04693869,0.14453612,-0.16805117,0.24737997,0.14890546,0.27068326,-0.21791063,-0.57399994,-0.023804624,0.5896717,0.5203628,0.21686341,0.13372883,-0.5135019,0.25358784,0.10097492,0.05255309,-0.037317675,-0.6908279,-0.06690823,-0.6284988,-0.42541322,0.5272208,-0.24727002,0.03335434,0.3110629,0.14520416,-0.0987812,0.287862,0.079040416,0.66148794,0.03567398,-0.019718854,-0.115808725,0.3199448,0.14596678,-0.26187673,-0.27163073,-0.18778892,0.28886288,-0.6446887,0.47829658,0.065437496,-0.18597707,0.3155093,-0.02868742,0.08838526,0.50196093,-0.19649467,-0.058682546,0.36236078,-0.028195906,-0.17240584,-0.38706627,-0.18802188,0.2984021,0.15885304,-0.034753088,-0.24744558,-0.08493414,-0.22365604,0.22331086,0.005480273,0.37536347,0.5998771,0.33859974,-0.42831972,0.27104673,0.31112316,0.5268078,0.06561306,-0.18113305,-0.40125218,-0.6077029,-0.32349765,0.24609566,0.030574165,-0.037700772,0.20893188,-0.32862765,0.7852078,0.13298978,1.0398155,-0.036299035,-0.4690534,0.173558,0.3364149,-0.2999873,-0.33704314,-0.2143403,1.061926,0.6451355,-0.020234613,0.13162468,-0.38590318,-0.13553321,0.05441637,-0.3594363,0.026275726,-0.09208859,-0.66992986,-0.5023081,0.22637612,0.32106206,-0.057071235,-0.27586174,0.3531288,0.30342612,0.025770582,0.18222012,-0.52112174,-0.24650808,0.39492807,0.40199968,-0.12599869,0.19721292,-0.44587305,0.24041319,-0.9511141,-0.11485353,-0.46267784,0.25029364,-0.073540956,-0.29672122,0.23822089,-0.082174435,0.33916685,-0.4596276,-0.3950415,-0.27210596,0.41029721,0.070225984,-0.039262358,0.5000206,-0.20219584,0.08353474,0.032368865,0.4881302,1.117293,-0.2188644,0.055303074,0.25971198,-0.31729302,-0.59988856,0.29824993,-0.5950911,0.41780564,-0.112725824,-0.11390207,-0.63890654,0.31424564,0.43078518,0.18404074,-0.21697454,-0.5070429,-0.1277357,0.2953256,-0.32909295,-0.11217535,-0.31202915,-0.17254396,0.42839032,-0.040703706,-0.4214798,0.0410957,0.54373556,-0.19736028,-0.70004934,-0.12660839,-0.25631168,0.36502847,0.29050872,-0.1416018,-0.2443042,-0.023218004,-0.5361216,0.07869753,0.32835528,-0.4271477,-0.09173619,-0.5674738,-0.09110291,0.8418691,-0.07551206,0.38834754,-0.39025956,-0.48536193,-0.85021305,-0.28352094,0.27940074,0.12374928,0.20103164,-0.7499414,0.19286604,-0.42614946,-0.21321541,0.0793291,-0.20649758,0.34744257,0.16838853,0.5855379,-0.3337773,-0.7333019,0.21816729,0.15879753,-0.00074402854,-0.44637346,0.38173753,0.1524856,0.99542445,0.11022677,0.0503706,0.35680076,-0.8405689,-0.025858099,-0.004122001,-0.080987364,-0.7527465,0.025854541,404 -941,0.5076115,-0.35023946,-0.20874335,-0.08229304,0.09557371,0.16416693,0.011757135,0.72024924,0.46122846,-0.26861927,-0.17783321,-0.28630152,0.119913965,0.4590187,-0.11800382,-0.55824304,-0.19279465,0.14419205,-0.35319927,0.4256667,-0.5039384,-0.06363558,0.10269079,0.6703341,0.092464514,0.22142096,0.11944198,0.036303148,-0.3497221,-0.3040609,-0.009432558,0.42589462,-0.5639356,0.06954347,-0.27672547,-0.4050384,-0.20964375,-0.6737455,-0.38764656,-0.81206137,0.2577017,-0.9798084,0.43956822,0.2780101,-0.31772435,0.41804254,0.11749806,0.10045877,-0.29477242,-0.22649874,0.10439932,-0.22915958,0.036643144,-0.32860807,-0.19134527,-0.15055352,-0.64619887,0.022162838,-0.20684749,-0.05996721,-0.25217515,0.04098052,-0.3212425,0.017279593,0.02720862,0.62043524,-0.32762086,-0.008336875,0.24539155,-0.22735806,0.41365355,-0.38432646,-0.28071377,-0.12011693,-0.033851657,-0.20627743,-0.414094,0.19275995,0.36375463,0.3654374,-0.2641796,-0.13347858,-0.4314401,0.1666701,0.0047032726,0.57253623,-0.423684,-0.853603,-0.19484685,-0.10991133,0.028529463,0.29057574,0.108873755,-0.115044214,0.0053501367,0.13427414,-0.26199207,0.5974648,0.47873643,-0.28117943,-0.24551457,0.1658466,0.3421787,0.17820027,-0.10927246,-0.35102403,0.16665114,-0.6200446,-0.101161644,0.06998389,-0.40584117,0.61008793,-0.18257241,0.25008893,0.70846796,-0.28323433,0.047242034,0.16291101,0.093401596,-0.1564784,-0.4908729,-0.289904,0.38614228,-0.30656248,0.19737186,-0.29214442,0.7630312,0.037629534,-0.7019349,0.34612465,-0.56488353,0.12844227,-0.18123268,0.4667567,0.70409006,0.34631062,0.6713232,0.50144905,-0.4276024,-0.11868434,-0.090694316,-0.25904053,0.18412094,-0.33483526,0.16548266,-0.52126783,-0.19263583,0.22498664,-0.11521218,0.35919487,0.33198768,-0.6516521,-0.08743116,0.30201957,0.89699274,-0.1967962,-0.17991723,0.79638976,1.1478599,0.97743535,-0.016088445,1.1114388,0.2551368,-0.14904626,0.35622957,-0.17465371,-0.6264403,0.3249699,0.3464364,-0.7242088,0.3083023,0.029231494,-0.097851425,0.3123915,-0.43878946,-0.10441578,-0.017363267,0.13839771,0.19133784,-0.055100147,-0.53665984,-0.41651866,-0.18029283,-0.029317927,0.12587704,0.32214835,-0.2482817,0.37574932,-0.10887775,1.3970383,0.10111956,0.07265256,0.077067286,0.49869397,0.08045553,0.015531888,-0.114638835,0.31182498,0.20350236,0.23376603,-0.43340674,0.29553804,-0.25461718,-0.35395572,-0.009797928,-0.38629466,-0.053574726,-0.04734185,-0.3483075,-0.12778634,-0.18430279,-0.27297565,0.44863108,-2.9671197,-0.14550471,0.023497896,0.2697291,-0.25492528,-0.3984477,-0.077980325,-0.5513916,0.36018705,0.36488923,0.59866387,-0.7552128,-0.012399441,0.2986872,-0.5645261,-0.25637132,-0.6634214,-0.06768036,-0.047968343,0.3014751,0.124899,-0.1069869,0.12896855,0.107110076,0.62915426,0.19074363,0.14691716,0.22610006,0.38101044,-0.15639624,0.379525,-0.28304294,0.38338575,-0.41466486,-0.2418777,0.31680194,-0.54011464,0.23419929,-0.18758616,0.071233645,0.5287668,-0.17017184,-1.0702381,-0.6623159,-0.28546393,1.1594071,-0.1862573,-0.43899423,-0.0026292964,-0.28648233,-0.24758376,-0.097078495,0.7641441,-0.19678959,-0.005671826,-0.83840084,0.031298283,-0.12950853,0.15557212,-0.0075695217,0.06944495,-0.28231013,0.5987759,0.06124039,0.28159073,0.21761371,0.042378172,-0.5081926,-0.5367811,0.07267791,0.9574425,0.23583554,0.25035843,-0.15180263,-0.13558723,-0.25611943,0.04560463,0.021997713,0.59520555,0.4799302,-0.035693992,0.12072747,0.28066424,-0.007417744,-0.04469557,-0.10068686,-0.22239529,-0.17860635,-0.046901718,0.73552316,0.8562927,-0.2518505,0.30431554,-0.14764614,0.37192476,-0.14083852,-0.29990116,0.54788357,0.92416835,-0.032793615,-0.18981284,0.70908827,0.58616185,-0.40508983,0.46907815,-0.57585007,-0.39731562,0.4749358,-0.20481537,-0.52976525,0.18042043,-0.19138798,0.12518184,-0.76886386,0.19916467,-0.15613557,-0.28312498,-0.61049813,-0.032386873,-3.633195,0.2389485,-0.2208067,-0.41020852,-0.20161204,0.046878137,0.19387488,-0.54702497,-0.5313295,0.06367877,0.07668433,0.67136025,-0.15256423,0.09238484,-0.30877638,-0.23391284,-0.209105,0.019245094,0.20737432,0.3695234,-0.0031351934,-0.4128154,-0.039980482,0.013470542,-0.43771237,0.1422903,-0.6548234,-0.52823377,-0.1518709,-0.52273184,-0.324594,0.7226098,-0.4217431,0.007964605,-0.19837722,0.01915033,-0.11581977,0.42066842,0.24455337,0.0976054,-0.10300157,-0.025370417,0.16171287,-0.1945343,0.44985607,0.09814735,0.33645752,0.5842609,-0.20321707,0.3053851,0.54231745,0.6440888,0.13329878,0.92775023,0.48760653,0.031707004,0.14707294,-0.26918328,-0.17639638,-0.5255218,-0.26425925,0.038147867,-0.37078837,-0.2247301,-0.05779476,-0.38327178,-0.8356157,0.5885583,-0.13624601,0.22076736,-0.024667041,0.41322204,0.66404843,-0.45705768,0.06981986,-0.02923057,-0.13575102,-0.54786414,-0.15205325,-0.58654493,-0.37845972,0.10511141,0.6492982,-0.124316745,0.14034532,0.105743416,-0.1261449,-0.23124439,0.1033644,-0.1317635,-0.0018567063,0.47255784,0.033678595,-0.6688251,0.49277675,-0.048901033,-0.2621861,-0.64322615,0.3776311,0.5890391,-0.72501355,0.6681539,0.50014913,0.07066608,-0.23512922,-0.49183524,-0.33752444,-0.15706551,-0.007902276,0.24571896,0.28994036,-0.74108547,0.37480393,0.3937556,-0.33288375,-0.68658644,0.4647568,0.06888375,-0.4782299,-0.27303788,0.3699336,0.1599311,0.078344695,0.039288677,0.237075,-0.5233324,0.1448778,0.112772815,0.07114404,0.44485474,-0.06257841,-0.008017031,-0.7658665,0.25012556,-0.55443215,-0.4112352,0.3695788,0.15732646,0.1663713,0.37180164,0.07482355,0.25413954,-0.11105988,0.0018881437,-0.117974326,-0.22691607,0.28930762,0.5338787,0.58517045,-0.39599445,0.6421189,0.14492749,0.014973694,0.13504928,-0.060719576,0.46125433,0.014636598,0.45368993,-0.024448026,-0.42716444,0.18983509,0.71628743,0.15992099,0.41891745,-0.071316116,0.15227121,0.3363509,0.03975585,0.33270475,-0.03511584,-0.6546641,0.07271713,-0.4714329,0.15710515,0.50348073,0.061427828,0.13434882,0.011827344,-0.38955268,0.105830885,0.28383175,0.10957618,-1.3834649,0.35486397,0.1696576,0.8429443,0.46255264,-0.105702765,0.009302857,0.7990186,-0.15163273,0.23514418,0.5058423,-0.06182359,-0.5492458,0.7664963,-0.7690014,0.4780064,-0.12408001,0.035817835,-0.21262704,-0.03395753,0.32798383,0.6464457,-0.22678342,-0.03877984,-0.044844475,-0.44263223,0.16626166,-0.585174,0.34283754,-0.6567784,-0.1688795,0.69495374,0.6345327,0.32446477,-0.21524908,-0.000627221,0.038328867,-0.040637437,0.16917898,-0.0042539346,0.15477432,-0.0034629554,-0.912497,-0.07452088,0.5742515,0.022977652,0.30829173,-0.06865802,-0.012127074,0.12798022,-0.15708642,-0.300906,-0.15823083,-0.66494197,-0.005616589,-0.39093435,-0.44985113,0.55443174,-0.21202415,0.21958518,0.24383493,0.11092372,-0.32479417,0.29855874,0.24615383,0.8493814,0.090408474,-0.29192272,-0.39227116,0.34146017,0.14568084,-0.11676364,-0.1809379,-0.2744006,-0.056413304,-0.27316907,0.48027992,-0.1263392,-0.42111957,-0.08263791,-0.01444709,0.20449814,0.55418724,-0.07999742,-0.21314669,-0.35928926,-0.3945645,-0.31444937,-0.043517567,-0.044838548,0.38873526,0.28568527,-0.1025807,-0.045265585,-0.173038,-0.3442735,0.46287486,-0.06509705,0.36195806,0.42755747,0.17745383,-0.17669591,-0.12559056,0.23379244,0.54210436,0.031334564,-0.34145418,-0.47988293,-0.34063652,-0.42480794,0.056049194,-0.117248416,0.4784934,0.10661921,-0.2589572,0.81408274,-0.23847164,0.9848926,0.09188735,-0.36612532,0.029301655,0.4054669,-0.080702394,-0.06965704,-0.43393335,0.8426525,0.43285716,-0.17331909,-0.06754381,-0.28329527,0.09197517,0.27048904,-0.17730762,-0.23113535,-0.014360002,-0.7819757,-0.16164091,0.1867075,0.37217912,0.33070382,-0.09745017,0.15446411,0.20949163,0.037875235,0.43523324,-0.3518414,-0.055457674,0.31304285,0.48904133,0.017737947,0.18632135,-0.29665187,0.31757423,-0.43674755,0.061103996,-0.5622941,0.061054014,-0.34332952,-0.47475827,0.31753948,0.100438975,0.4322872,-0.19025232,-0.39514083,-0.13478743,0.35606864,0.20427586,0.042378332,0.5209443,-0.2230134,-0.029883178,0.086310424,0.5244804,1.2234005,-0.32114193,0.08584443,0.18589792,-0.2714696,-0.7547604,0.6462665,-0.13285315,0.39251944,-0.009351871,-0.020700509,-0.557884,0.17513698,0.18060623,-0.011146829,0.08324787,-0.49233177,-0.1286399,0.27185777,-0.30851784,-0.27862713,-0.40115455,0.14335427,0.4562029,-0.17582592,-0.21037906,0.13881993,0.34152785,-0.12581268,-0.39807215,-0.076096684,-0.5309995,0.18204632,-0.024747519,-0.45378572,0.035683706,-0.10643177,-0.4703987,0.18096437,-0.06789133,-0.30245462,0.10861833,-0.2779856,-0.06502631,1.0392745,-0.13763766,0.20416659,-0.632753,-0.4400884,-0.81290936,-0.2740851,0.49678734,-0.12513155,0.0066733225,-0.49892223,-0.019225923,0.07528725,-0.23177561,-0.19348422,-0.47378168,0.42466688,0.1057319,0.48844197,0.009210722,-0.6489875,0.09733874,0.16250935,-0.039756734,-0.6937137,0.34257224,-0.01048533,0.9466844,0.06652854,0.10421844,0.445278,-0.4589326,-0.22403346,-0.21696176,-0.28849518,-0.5820862,0.22115445,461 -942,0.41468373,-0.09196275,-0.55435437,-0.1214716,-0.11826503,-0.14683099,-0.15782227,0.2198779,0.35867888,-0.18709598,-0.3146702,-0.31576434,0.2846279,0.16742921,-0.06188257,-0.8114487,-0.06568711,0.14635652,-0.53191566,0.4527221,-0.60914856,0.35852468,0.33933425,0.33971366,-0.059890293,0.35047886,0.27039048,-0.29865685,-0.029888082,-0.11161339,-0.24424772,0.24371971,-0.7739017,-0.12531857,-0.21162567,-0.2036048,0.13977164,-0.5641339,-0.3500991,-0.70042455,0.24432544,-0.95734614,0.4606911,0.24878922,-0.0751344,-0.046024095,-0.020077862,0.28752172,-0.2931567,0.02662653,0.0906151,-0.34208474,-0.002066157,-0.44715604,-0.062127892,-0.18601812,-0.41633147,-0.03362689,-0.4822922,-0.2932989,-0.18071495,0.033155546,-0.3779434,-0.09779904,-0.16360193,0.42471418,-0.31878945,0.039113674,0.37039435,-0.33589777,0.32221738,-0.442227,-0.004224934,-0.17997502,0.43430978,-0.27508304,-0.30348292,0.3814306,0.32114103,0.39426127,0.14790478,-0.25982243,-0.07085142,-0.12632102,0.2391735,0.60797256,-0.17542592,-0.6130548,-0.0792402,0.21223901,0.14969274,0.38219917,-0.054610487,-0.27077445,0.014337759,-0.08198594,-0.2533697,0.5973839,0.6143032,-0.12527715,-0.35978687,0.11405497,0.36524916,0.27522066,-0.077755995,-0.19575585,0.062579446,-0.66874087,-0.118875355,0.23571433,-0.29303405,0.77097917,-0.11248409,0.031778913,0.89873886,-0.41248763,0.015608197,0.0329663,-0.046716347,-0.08079368,-0.27210048,-0.15339485,0.22060637,-0.5158376,0.09058625,-0.31688365,0.86081386,0.34391972,-0.69337964,0.3571451,-0.6287071,0.28249434,-0.14130239,0.70648015,0.5733765,0.3390687,0.6177938,0.707979,-0.39581358,0.24032404,0.1475097,-0.8223902,0.116772324,-0.09212711,0.17319344,-0.29933894,-0.18678738,-0.097293615,0.015006742,0.22908849,0.1777355,-0.50169545,0.018276805,0.16769662,0.8107839,-0.28385794,-0.015025312,0.46031407,1.0292039,0.8653759,0.07354442,1.0172328,0.35171145,-0.36108735,0.21806125,-0.08617736,-0.89967763,0.18938078,0.25277415,-0.5586364,0.3761939,-0.07591844,-0.11112602,-0.024085673,-0.50102943,-0.1379978,-0.04010065,0.30900174,0.16433102,0.08352267,-0.5772628,-0.25229168,-0.1917626,-0.12467872,0.15180658,0.123482466,-0.21440049,0.19983426,-0.016272712,1.2549942,0.002748232,-0.027571656,-0.0054207323,0.59438443,0.339283,0.08322363,-0.16882075,0.6369066,0.36253738,0.063966006,-0.58441776,0.15136792,-0.3388516,-0.2334256,-0.030703926,-0.38100398,0.17038852,0.19879875,-0.38602355,-0.011216239,0.016996296,-0.19339241,0.5392911,-2.644583,-0.15856415,0.021060353,0.39258865,-0.3251529,-0.09324595,-0.073048346,-0.5477039,0.12278008,0.22823748,0.5515657,-0.8286682,0.23999853,0.5073494,-0.34494156,-0.23731488,-0.7060643,-0.09566034,-0.099241406,0.25202683,0.17837568,-0.054371174,-0.030307604,0.18946391,0.57678026,0.14012839,-0.024455212,0.3882116,0.49627057,0.2632949,0.59634584,-0.093343996,0.617474,-0.25579283,-0.04988688,0.29167542,-0.18014918,0.16182432,-0.1883297,0.102228835,0.48048887,-0.19753915,-0.7737007,-0.44606903,-0.43852293,1.0528249,-0.6223246,-0.3435864,0.10966144,0.046761915,-0.0761227,-0.15014611,0.63806176,-0.16443335,0.07887698,-0.6650824,0.11843776,-0.007366663,0.3038946,0.15883376,0.070902795,-0.17557658,0.5874482,-0.01390318,0.35160643,0.34017518,0.22097798,-0.09067186,-0.5977724,0.2367058,0.826603,0.16281079,0.044081714,-0.2705638,-0.22862807,-0.025052048,-0.050094996,-0.10095399,0.6875002,0.9649733,-0.25697592,-0.008910465,0.36893636,0.14794411,0.059714172,-0.08184657,-0.34810868,0.03557866,-0.34976757,0.54960436,0.84653074,-0.29979154,0.43303186,-0.12721948,0.45608833,0.22614022,-0.4022708,0.55126613,0.8147377,-0.05074475,0.11878893,0.30470002,0.25987422,-0.5370075,0.42307436,-0.71529907,-0.082321525,0.8087146,-0.19771014,-0.4095373,0.46678594,-0.22663428,0.21422273,-0.9117601,0.6158185,-0.061930634,-0.046547867,-0.35950646,-0.07415092,-3.815584,0.12595716,-0.22275823,-0.15120345,-0.33480757,0.029296564,0.18481316,-0.45524025,-0.45994437,0.2608657,0.20650621,0.59331506,-0.14105724,0.16764012,-0.24992627,-0.22617526,-0.11401326,0.22587603,0.3175953,0.3138998,-0.110022776,-0.27828872,-0.05733393,-0.057353582,-0.3866719,0.3002067,-0.48100817,-0.50390106,-0.025627958,-0.74678934,-0.52845216,0.70726734,-0.32969484,-0.057585336,-0.124151014,0.09018517,-0.24200033,0.19451088,0.16286002,0.20765615,-0.1334762,0.22882175,0.20632638,-0.2905429,0.63656515,0.13414244,0.29295728,-0.15071115,0.12772328,0.028778953,0.38186315,0.52718383,0.04247505,0.88878196,0.3652195,-0.057634678,0.13163163,-0.35872358,-0.2335667,-0.5776398,-0.34129003,-0.0072112354,-0.31299734,-0.383937,-0.118051834,-0.34145296,-0.6811235,0.45698547,-0.22855577,0.28968665,0.21824785,0.42096394,0.56105524,-0.20279603,0.13118722,0.12779164,-0.16156918,-0.6184406,-0.058021355,-0.6859257,-0.36269614,0.021612173,0.474344,-0.25044155,-0.062303305,-0.13821992,-0.23636632,0.09452391,-0.13270348,0.075831935,0.32333955,0.5550867,0.009726779,-0.63680035,0.4642895,-0.05527141,-0.26960853,-0.6155989,0.052518193,0.70425725,-0.9492418,0.5282096,0.52604747,0.021719651,0.13868397,-0.3537662,-0.52611566,0.13976549,-0.19827953,0.20002404,-0.002688045,-0.6216044,0.3152712,0.1996573,-0.5531097,-0.61187005,0.43108085,-0.032857124,-0.53108513,0.044680197,0.3146233,-0.11276805,-0.107530616,-0.26893547,0.020957666,-0.4337597,0.14316799,0.22204114,-0.07987369,0.29330727,0.1892573,-0.16563457,-0.74304825,0.2173625,-0.48126495,-0.31595343,0.47908762,0.043276664,0.079224534,-0.0021680484,0.16388874,0.27770147,-0.26869386,0.066832885,-0.009487727,-0.3518072,0.47082683,0.538049,0.39591888,-0.35014957,0.60189193,0.06692076,-0.097745225,0.29810742,0.029242473,0.26485884,-0.12500918,0.14571701,0.17138341,-0.32031778,0.28771195,0.62744516,0.22828649,0.5100068,0.12503193,0.20650244,0.5644784,0.060926005,0.096098565,0.28051317,-0.59713405,-0.21263222,-0.07867039,0.1772799,0.49564803,0.37516487,0.22020365,-0.024268549,-0.30665037,-0.025352625,0.53365934,0.049967006,-0.88808995,0.31026408,0.17749232,0.6521399,0.41048443,0.15975332,-0.030025197,0.42605492,-0.24217692,0.21560341,0.28508332,0.09281384,-0.52609915,0.7161135,-0.37606642,0.446194,-0.18101634,0.04911323,0.07067147,0.044907644,0.20359187,0.92681557,-0.35340583,-0.031600896,0.024253286,-0.017648047,-0.0675049,-0.6400311,-0.0044783223,-0.43983018,-0.39932016,0.59330183,0.35103768,0.225725,-0.14387143,0.10490182,-0.038996067,-0.27425203,0.26006567,-0.154989,-0.065798976,0.32656497,-0.7976768,-0.08558437,0.59953827,-0.03966357,0.10801413,-0.3093643,0.002504327,0.15168843,-0.36158073,-0.22276597,-0.15455563,-0.7192139,0.077026,-0.27216253,-0.5463976,0.41437054,-0.2738833,0.29141644,0.22317825,-0.03998784,-0.15498972,0.39796802,0.35912216,0.899507,-0.06722627,-0.3870354,-0.602114,0.083060645,0.26067954,-0.19712353,-0.075372465,-0.44949257,-0.08786717,-0.3159276,0.6071389,-0.07526563,-0.33807823,-0.2438528,-0.23863024,-0.06614404,0.7737423,-0.14984424,-0.06812119,0.030247962,-0.21278638,-0.4012521,0.038438845,-0.33750665,0.19510213,0.5610616,-0.26677096,-0.0644934,-0.29199818,-0.28915465,0.42422426,-0.021715848,0.62834793,0.23344989,0.27233046,0.0065888925,-0.31566676,0.04962412,0.54229474,0.16518107,-0.16037582,-0.3867976,-0.2981759,-0.24568881,0.048675373,-0.08625417,0.19459246,0.010061459,-0.3467271,0.96450704,0.04279264,1.130672,-0.06600762,-0.27032995,0.029909855,0.4023741,-0.10190008,0.037134256,-0.4713744,1.0231051,0.4044379,-0.17036897,-0.17290027,-0.3330536,-0.08060198,0.05481175,-0.15160766,-0.027871989,0.033888187,-0.43338802,-0.46810588,0.28626013,0.34787026,0.17224862,-0.07028877,0.050695613,0.04675288,0.07701766,0.38195646,-0.5499669,-0.24490692,0.13194424,0.13522771,-0.031606294,0.16915782,-0.2547262,0.5003412,-0.42174625,0.06647516,-0.76952934,0.06809152,-0.13250014,-0.27667096,0.21505746,-0.14553542,0.45589036,-0.5817711,-0.30724066,-0.18586536,0.30763876,0.030643074,0.35094774,0.63685596,-0.11216123,-0.06331896,0.08429374,0.84275,1.40242,-0.36921835,0.0018304099,0.4316415,-0.46670654,-0.55770665,0.39700648,-0.27988508,-0.024275905,-0.2951224,-0.30643114,-0.6104589,0.09055045,-0.083010904,0.10934841,0.07261829,-0.5903828,-0.258372,0.3138783,-0.4306489,-0.2517041,-0.35514915,0.45214346,0.81211776,-0.2699087,-0.208111,-0.0071903286,0.07391267,-0.09990215,-0.50373155,-0.17926614,-0.15715672,0.29721078,0.123843886,-0.29027557,-0.20083322,0.32837793,-0.5480579,0.17063493,0.12813458,-0.43242761,0.19408153,0.13401024,-0.16860597,0.9092398,-0.3090979,-0.3502766,-0.6154711,-0.59996545,-0.96054214,-0.5265124,0.42534983,0.062921435,0.16953698,-0.40218914,0.050283004,-0.014091421,-0.2550759,-0.14354756,-0.45944998,0.3803039,0.0549363,0.716744,-0.3307141,-0.9966795,0.107012205,0.025318416,-0.30783927,-0.9282655,0.55419916,0.07059111,0.7267962,-0.009467423,-0.16390434,0.23477548,-0.16822395,-0.07160408,-0.3105769,-0.15781696,-0.82840323,0.082508974,483 -943,0.5318661,-0.24511266,-0.74447155,-0.111088865,-0.114138074,0.03133242,-0.35242602,0.326442,-0.020824768,-0.69648623,0.030616414,0.05486759,-0.02831491,0.21328668,-0.25868243,-0.71011686,0.08790558,0.083713524,-0.3907056,0.2758788,-0.5817414,0.11341102,-0.018735908,0.2564222,-0.19205818,0.14806326,0.35481453,0.044020113,0.004517157,-0.31082743,0.38519028,0.099469356,-0.6074958,0.44311878,0.1086227,-0.40637082,-0.071558446,-0.16507897,-0.40071356,-0.5559744,0.17691278,-1.0662344,0.63358325,0.13875502,-0.2989131,0.15332995,-0.121254034,0.16212767,-0.2489802,0.21980014,0.14391202,-0.2964473,-0.23891196,-0.38590917,0.07301721,-0.5697054,-0.47504416,0.12710327,-0.66589046,-0.121523835,-0.15616517,0.34050772,-0.36039734,0.14634328,-0.30971444,0.37054855,-0.38236627,-0.3023334,0.118870854,-0.19503999,0.2924693,-0.47173396,-0.21447612,-0.060421396,0.1281438,-0.27596337,-0.2801097,-0.07846237,0.072062925,0.5826712,-0.12009922,-0.16899997,-0.12219472,-0.07728066,0.50548846,0.51076895,-0.29707536,-0.665322,-0.37888715,-0.17053427,0.35333222,0.11017644,0.069221355,-0.44707707,0.066846006,0.16038495,-0.21673721,0.62703514,0.74854445,-0.41620922,-0.05210275,0.3136226,0.5271315,-0.10587526,-0.10231454,0.2487157,0.004761666,-0.44568816,-0.18138415,0.09913505,-0.003451369,0.548764,-0.042124446,0.33176553,0.5735295,-0.48171794,-0.015154773,0.23285326,-0.20471643,-0.15187424,-0.28745857,-0.18858719,0.29387745,-0.55986446,-0.08374755,-0.32613778,0.8339711,-0.006402108,-0.8341019,0.47849253,-0.36812484,-0.019199127,-0.18735419,0.78969646,0.5569872,0.47786185,-0.020254984,0.7564749,-0.5840862,-0.052038845,-0.14753594,-0.3674506,0.12472559,-0.11250644,-0.06902056,-0.29573515,-0.05886561,0.16708232,0.048060916,-0.2523984,0.6526978,-0.4554079,-0.030348886,0.10732202,0.5254741,-0.318057,0.05243277,0.70269656,1.4453024,0.8017216,0.23098673,1.2806331,0.31192872,0.06895693,-0.17253856,0.17599535,-0.8388013,0.2996829,0.50730854,0.36312893,0.32456586,0.1416055,-0.12823959,0.6608677,-0.39681676,-0.1297749,-0.14381877,0.502538,-0.15291482,-0.2642093,-0.42079258,0.20549712,0.31318298,-0.066120386,0.065948285,0.34302008,-0.42891595,0.27628207,0.23189844,0.99494684,-0.33911753,0.19811669,-0.060148988,0.24318056,0.11776003,-0.13328719,0.22841386,0.14391166,0.48786113,0.03562462,-0.6366661,0.11544938,-0.05973439,-0.80833155,-0.23363695,-0.12897575,0.022289168,-0.18430923,-0.41643333,-0.07155743,-0.0067470726,-0.3320669,0.36138317,-2.5649607,-0.250455,-0.089251906,0.34225857,-0.08791267,-0.38429716,0.020988367,-0.22233354,0.3936982,0.4836644,0.41041052,-0.5597778,0.6805842,0.34128243,-0.22090702,-0.14416002,-0.7314945,0.21881229,-0.32193375,0.5382032,0.08864179,-0.4350169,0.11579141,0.03641239,0.6649472,-0.2973699,0.10916907,0.13666983,0.29675913,0.020813037,0.33079073,-0.0773099,0.5775021,-0.5031337,-0.3080312,0.43085095,-0.35833287,0.15710586,-0.09696992,0.33377817,0.14496416,-0.3945981,-0.97323436,-0.66486365,-0.25830767,1.2185429,-0.20697221,-0.5951915,0.24355522,0.08402132,-0.42284384,-0.010234594,0.28205588,-0.18763013,0.28259695,-0.8091417,0.09629204,-0.29704994,0.26762822,-0.06414156,-0.03420128,-0.58866686,0.63254106,-0.14703494,0.4996599,0.55515635,0.2503411,-0.22255164,-0.36019892,0.14787255,1.188371,0.46511757,0.22282475,-0.09098256,-0.12712765,0.27191648,-0.017444454,0.15358135,0.6187695,0.8050131,0.12964618,0.09758286,0.1959318,-0.06719861,0.017388886,-0.10734425,-0.4783776,-0.09739917,0.23079781,0.78380734,0.5147841,-0.1659787,0.31812328,-0.18919978,0.3332001,-0.34405804,-0.35230073,0.51561254,0.61250734,-0.110419035,-0.4952966,0.7496515,0.52754116,-0.49648902,0.5376436,-0.8247691,-0.36465922,0.19406533,-0.12652922,-0.2652929,0.3464422,-0.4383622,0.41405356,-1.0763966,0.6434171,-0.5508333,-0.61568147,-0.5709348,-0.53249705,-3.9761076,0.2593648,-0.32633093,-0.1324464,-0.18653503,-0.22133207,0.522731,-0.53479916,-0.43919545,0.10032385,0.020584838,0.50067043,-0.07614317,0.039353024,-0.20442967,-0.120112635,0.15127963,0.3945947,0.11549282,0.080392145,-0.05744314,-0.23602585,0.0093584275,-0.13440652,-0.2969137,-0.03499886,-0.53399366,-0.37606448,-0.06965243,-0.28570873,-0.27236468,0.690093,-0.36685464,-0.1519688,-0.20797187,0.074359424,-0.31105283,0.6947868,-0.0068607223,0.1561345,-0.010170356,-0.046839204,-0.0738737,-0.39457372,0.18305661,-0.047068,0.39763406,0.43533066,-0.4870796,-0.061083756,0.5422117,0.46600133,0.12765852,0.74477464,0.20350231,-0.11850396,0.40266106,-0.22575597,-0.25056016,-0.5907226,-0.49447238,-0.0060706516,-0.5444445,-0.3844849,-0.15520854,-0.31563532,-0.80334437,0.7167092,0.0156135345,0.10841675,0.07046968,0.56976503,0.14231634,0.07903897,-0.2643665,-0.09170341,-0.16410933,-0.47779855,-0.45498466,-0.705834,-0.46269885,-0.14484693,1.0849975,-0.0155308135,-0.027918529,0.07080142,0.045740448,0.04248376,0.22047386,0.16146351,0.05129081,0.43002957,0.033644833,-0.6652769,0.29497808,-0.31312874,-0.28417343,-0.6404064,-0.101115726,0.62032264,-0.63744485,0.58376884,0.4888421,0.41014668,0.043249346,-0.43826154,-0.17025395,0.2603724,-0.109248616,0.6838877,0.32786843,-1.1130028,0.59544903,0.52329725,-0.20244637,-0.7472014,0.476649,0.026596654,0.13906993,-0.101538375,0.43500802,-0.2170463,-0.047982097,-0.28138474,0.24841617,-0.5503071,0.3089175,0.102917,-0.08582788,0.6241767,-0.16714941,-0.21314313,-0.51315826,-0.113150746,-0.6615797,-0.0684014,0.080689706,-0.21838027,0.12335015,0.21939507,-0.06393202,0.6259046,-0.3296382,0.1709184,-0.05291011,-0.47978345,0.3421663,0.69659877,0.29288688,-0.3536502,0.7017359,0.13826789,0.046506427,-0.43414584,0.21085744,0.6173353,0.18551077,0.34354916,-0.16959323,0.05004419,0.45137691,1.037778,0.3580945,0.75668436,0.22272073,-0.1675584,0.23980427,0.16111487,0.22127585,0.108790495,-0.422307,-0.09231014,-0.06696685,0.33232328,0.41008618,0.06276224,0.4409353,-0.27212662,-0.20524506,0.06128267,0.49424726,0.0597893,-1.3197169,0.42647693,0.1828468,0.5354083,0.42629144,-0.0025965518,0.20180832,0.21666841,-0.13568376,0.020471351,0.09492843,0.028862411,-0.38875178,0.68414056,-0.78115964,0.18525676,-0.21101,-0.0012051951,0.03429207,-0.09404471,0.33407107,0.7263046,0.0632866,0.2714623,-0.08591562,-0.13723603,0.048465088,-0.2581298,0.23450185,-0.23950242,-0.22131914,0.93400055,0.3849919,0.4809841,-0.25073615,-0.19153762,0.24963813,0.051570904,0.29770458,0.01911544,0.20717321,-0.15089144,-0.6225819,-0.30970925,0.67403406,0.3823824,0.061549794,-0.059629276,-0.3700166,0.36772376,0.02027341,-0.26659966,0.063747354,-0.4202808,0.08180775,-0.40949297,-0.68913406,0.41318738,-0.16334993,0.10175382,0.3030693,0.0035009126,-0.2655342,-0.07546152,0.049933173,0.68341184,0.12710749,-0.17420727,-0.3494717,-0.051500376,0.28240517,-0.27046764,-0.28118336,-0.4999595,0.12754622,-0.72611934,0.36607507,-0.25391924,-0.35491148,0.45508575,-0.055445258,-0.015015141,0.5484913,-0.2249869,-0.27292317,0.45892525,0.03598768,-0.27961606,-0.4595602,-0.17183174,0.16631044,-0.04190575,0.15676211,-0.01664142,-0.08200511,-0.15896381,0.18759294,0.23313557,0.21053891,0.51469564,0.24486643,-0.38421118,-0.15408613,0.06252914,0.568983,0.006222391,0.033703506,-0.23360105,-0.7805904,-0.1563142,0.00012423775,-0.043891773,0.13421626,0.06061952,-0.43888614,0.6237635,0.08926412,1.0134213,0.13133273,-0.29753688,0.09454077,0.6334005,-0.044525765,-0.13722219,-0.3076531,1.1650043,0.68275136,-0.14230235,-0.1206557,-0.4866079,-0.26374432,0.04079199,-0.34079847,-0.23104912,-0.103432246,-0.8297934,-0.1404131,0.1365254,0.47966897,-0.115142725,-0.031433284,0.30315658,0.3126965,0.10977509,0.05729051,-0.6548029,-0.02956211,0.41343707,0.37715366,-0.09521273,-0.05971625,-0.39546746,0.20463677,-0.75204545,-0.06243296,-0.39272708,-0.023822678,0.22462234,-0.25237587,0.11660092,0.082082294,0.24475622,-0.2305106,-0.21709043,0.18114394,0.518754,0.16126443,0.16293806,0.84911215,-0.05686581,0.0975322,0.0022043532,0.41544393,1.1772046,-0.29633895,0.033646896,0.25618723,-0.3407706,-0.87133354,0.25448477,-0.42410737,0.2567096,-0.06206597,-0.5892886,-0.5640586,0.2105944,0.14122313,-0.28818586,0.09457508,-0.6329458,-0.2833541,0.20981936,-0.4322957,-0.13632306,-0.18596016,0.069806054,0.83471733,-0.35129294,-0.18784119,-0.030406285,0.57106423,-0.49039316,-0.54569167,-0.00741536,-0.3257465,0.32289946,0.1256169,-0.31797585,0.13613068,0.17842427,-0.46520853,0.23759142,0.21059841,-0.17976092,0.041088287,-0.22184229,0.024522977,0.5164966,-0.060212586,0.09949145,-0.9038946,-0.6434407,-1.0193925,-0.4599012,0.16135551,0.26631087,0.12401747,-0.53441006,0.11416225,-0.18645038,0.1567696,-0.1735307,-0.5851876,0.4430066,-0.029975869,0.6784616,0.018049277,-0.6897302,0.15024582,0.16293646,-0.10739493,-0.5276199,0.5593239,-0.2561386,0.82113284,-0.040877078,0.054010466,0.1482696,-0.8343656,0.040003482,-0.20041813,-0.38184527,-0.92281747,0.0614527,498 -944,0.6610824,-0.4318547,-0.79166734,0.0822906,-0.582223,-0.1047054,-0.30484316,0.76651865,0.12916961,-0.60741574,-0.12019611,0.14108878,-0.29145402,0.10579144,-0.35336226,-0.4510149,-0.011327559,0.18612465,-0.48550603,0.4843971,-0.31452802,0.5331209,0.14094685,0.281946,0.32389224,0.03997545,-0.23442483,0.19308029,-0.02831346,-0.55991346,0.053750455,0.2267821,-0.74718374,0.3039012,-0.37114188,-0.7683092,0.026526345,-0.59006643,-0.21577907,-0.7849461,0.36953676,-0.7818602,0.75660384,-0.025466204,-0.6059902,-0.17734411,0.0302756,0.52482617,0.08577495,0.05950931,0.22355957,-0.18456899,-0.16288796,-0.22988628,-0.058418762,-0.34170282,-0.69093245,0.10153962,-0.5161529,0.0875488,-0.04747678,0.34609345,-0.31968403,0.1041127,-0.20510374,0.54716796,-0.37762782,-0.0041769133,0.122615926,0.05759928,0.31568202,-0.93206143,-0.04742131,-0.29160726,0.13682579,-0.37912264,-0.3085537,0.12541097,0.09612486,0.65334463,0.15151842,-0.12314867,-0.17654297,0.18388051,-0.23193568,0.40397942,-0.40110913,-0.28381765,-0.13924022,0.09775981,0.6128938,0.2794445,0.26672113,0.027985213,0.098148875,-0.110643655,-0.1841998,0.64247876,0.4167806,-0.2614031,0.18046567,0.007930869,0.73347586,0.24580704,-0.03736799,0.15608579,-0.005968511,-0.57153594,-0.26787513,0.00056456437,-0.23636952,0.49727115,-0.070591,0.3399463,0.46998912,-0.34972745,-0.08018858,0.66234684,0.21012536,0.011702841,-0.103737116,-0.659231,0.4533162,-0.6394244,0.07213765,-0.25412387,0.8474826,0.06356514,-0.6923923,0.029835511,-0.7051004,-0.04457982,-0.012632641,0.5061674,0.6046801,0.8752034,0.14841388,0.7490545,-0.35398793,0.015894849,-0.19246398,-0.090971686,-0.08343742,-0.19685169,0.009029966,-0.34066153,-0.26592368,-0.5194712,-0.2706982,-0.04684632,0.6187668,-0.779602,-0.19073986,0.04531548,0.6259112,-0.29492092,-0.13627546,0.9848175,0.99827707,1.2212809,-0.076447174,1.0433627,0.0652891,-0.14634305,-0.10755489,0.16615205,-0.6421953,0.41317606,0.48715642,-0.15460223,0.40936276,0.22914958,-0.001136811,0.5400646,-0.543205,-0.037335254,-0.17505866,0.13716637,0.015208479,-0.30479366,-0.5893971,-0.31524104,0.10553735,0.18845235,-0.0999697,0.4847422,-0.25950024,0.5867476,0.09516302,1.2060775,-0.24649125,0.15112342,0.2276505,0.34928018,0.039160527,-0.21022578,-0.14076129,-0.3224987,0.28569934,0.2720731,-0.59784234,-0.077368386,-0.111855745,-0.4040206,-0.29641116,-0.14264274,-0.35779336,-0.5061981,-0.59026676,-0.43485597,-0.17627412,-0.2707926,0.2960193,-1.9629265,-0.27391088,-0.09361625,0.46995065,-0.20816651,-0.6244674,0.045479264,-0.4623032,0.4008106,0.19506116,0.54332787,-0.6228802,0.6501925,0.58178675,-0.40040255,0.10200372,-0.70391685,-0.3431641,0.05710994,0.05768696,0.20564103,-0.29286873,-0.0175039,-0.20182584,0.557743,-0.34764272,-0.03066989,0.26216802,0.4389342,-0.27676365,0.7020693,0.010181709,0.5396271,-0.6643005,-0.42659238,0.66484857,-0.49211475,-0.06891909,-0.08245858,0.00058043003,0.41329768,-0.678629,-0.911306,-0.8152905,-0.25280637,1.3361126,-0.056359448,-0.4619686,0.08783645,-0.6834228,-0.39599323,-0.2029873,0.2895424,-0.13638228,0.087849975,-0.7668907,-0.32383215,-0.31000704,0.32574427,0.067825176,-0.100857854,-0.7258583,0.71316105,-0.07641976,0.3786745,0.49688908,0.11739481,-0.30135024,-0.53301877,0.07980058,1.1683503,0.6910934,0.20606862,-0.3693636,0.07391623,-0.20380996,0.41582146,0.021947784,0.7094068,0.7666531,-0.110450916,0.15025462,0.2230408,0.0015738715,0.14125295,-0.063537,-0.5723808,-0.35271966,-0.0027641682,0.8898976,0.8391049,0.11159749,0.43551895,-0.115209885,0.445871,-0.15250403,-0.4477029,0.34049243,0.97179693,-0.24382162,-0.42340127,0.85406685,0.6017683,-0.16986771,0.5758623,-0.5794819,-0.528108,0.18684587,-0.11471145,-0.44639805,0.29274487,-0.3286514,0.33149,-0.98508584,0.42233017,-0.74228853,-0.630115,-0.6182278,-0.23709202,-1.8238641,0.491975,-0.19826902,0.026903791,-0.05317416,-0.5098929,0.2051931,-0.6669209,-0.7961344,-0.034704708,0.15119566,0.71766335,-0.05081668,-0.09845979,-0.035015795,-0.7442539,-0.19697885,0.119934365,0.40480626,0.15196289,0.0065015717,-0.4363967,-0.019577948,-0.34265634,-0.3014537,-0.13440055,-0.90231186,-0.65133053,-0.08328199,-0.62552774,-0.4060826,0.8225651,-0.23282123,-0.043651395,-0.21555905,0.055570375,0.15512466,0.29456326,-0.25741503,0.0397846,0.069071025,-0.24946715,0.07558834,-0.14870375,0.079857446,0.178382,0.43707916,0.33943394,-0.46896428,0.32504025,0.84733987,0.933568,-0.16833733,1.1750985,0.5030539,-0.14385635,0.27368304,-0.16946357,-0.6427262,-0.618012,0.12402162,0.2663152,-0.50681597,-0.15310456,0.35785297,-0.33625612,-0.9310512,0.85471576,-0.20226212,-0.031150877,0.1255688,0.6097573,0.48306406,-0.2988309,-0.42893317,0.04155411,-0.2024185,-0.38732642,-0.42721912,-0.5408054,-0.49806872,-0.6329289,1.7786618,-0.18397747,0.37920886,0.46986458,-0.067446575,0.19768216,0.05827947,0.011402789,0.08771371,0.59075433,-0.21133779,-0.8095614,0.12603615,-0.22685537,-0.06643958,-0.30063033,0.21809706,0.78497255,-0.8378416,0.1296451,0.41327703,-0.020817501,-0.109329075,-0.6892826,0.1410702,0.18444906,-0.29078272,0.5450382,0.511933,-0.5656782,0.43143034,0.345904,-0.2840061,-0.76454985,0.52902454,-0.06637083,-0.41884154,-0.16049789,0.39482358,0.22992998,0.006036466,0.07778573,0.20638758,-0.40874565,0.48231384,0.027472723,-0.18474227,-0.21687722,-0.2777311,-0.24740265,-0.7903187,0.3343685,-0.5378125,-0.58447236,0.35767624,0.059309363,0.08643457,0.47522643,0.50161874,0.5208501,-0.32327202,-0.076787695,-0.34572232,-0.5450659,0.56824774,0.5512759,0.6430682,-0.49288788,0.5388911,0.17711458,0.04977006,-0.11272097,0.13792668,0.59587634,-0.48966244,0.37953168,0.049915258,-0.13342303,0.22159442,1.0765634,0.16061015,0.40407676,-0.10824654,0.008099556,-0.14610499,0.22125855,0.266798,-0.03268321,-0.69739825,0.054404322,0.027792638,0.048307624,0.6651757,-0.07578421,0.17918563,-0.28701356,-0.3225291,-0.09300835,0.17973928,-0.2104939,-1.7403547,0.4461137,0.089724965,0.8655657,0.35083297,0.370177,0.13766377,0.6353227,-0.32144636,-0.00089198624,0.427642,0.18585008,-0.15272653,0.5265227,-0.57549584,0.6347252,0.041152433,0.1397031,-0.068539806,-0.37717655,0.5718887,0.88887686,-0.18833952,0.07064881,0.010134664,-0.38140938,-0.16428326,-0.51652616,-0.07554401,-0.60594964,-0.123675585,1.0227557,0.46402597,0.41159552,-0.191948,0.028366674,0.16589078,-0.12266369,0.4606969,-0.20550914,0.048682537,-0.2480341,-0.33399305,0.19454727,0.6572683,0.1264926,-0.0064616124,-0.06039703,-0.11252118,0.28880182,0.08491146,-0.07932551,-0.18714686,-0.8466547,0.09864055,-0.7621019,-0.21203123,0.123685576,0.0058878334,-0.0851982,0.2926865,0.12563306,-0.35715985,0.46311873,0.04189417,0.5843908,-0.03041656,-0.07590899,-0.096555494,0.4547758,0.08764198,-0.31716105,-0.1916859,-0.13548519,0.45250985,-0.56719875,0.24447137,-0.13324484,-0.40631372,0.118195035,-0.046368983,-0.0946979,0.38953254,-0.20741655,-0.09142039,0.34334043,-0.01216754,-0.022856258,-0.34771794,-0.19459642,0.092336066,0.27966633,-0.19822446,-0.2506387,-0.34566176,-0.0344481,0.50798804,0.10443134,0.45327684,0.47722006,0.19845603,-0.47565463,0.039976254,0.14199246,0.7327333,-0.2732535,-0.0708746,-0.58251965,-0.22913092,-0.33790523,0.6297911,-0.1313821,0.33338895,-0.048445366,-0.35352919,1.1814541,0.4145827,1.3604579,-0.038607087,-0.3133427,-0.011319258,0.54603744,-0.34614763,-0.16168019,-0.4839814,1.2941773,0.38985175,-0.26062486,-0.12836608,-0.5182286,-0.041548092,-0.18065949,-0.34206226,-0.26911452,-0.100340255,-0.5821259,-0.1014739,0.43819606,0.46755487,-0.026515007,-0.17687038,0.21562615,0.576184,0.016866384,0.01788153,-0.41251087,-0.12334018,0.40840933,0.34146583,-0.28648213,0.029136397,-0.637622,0.26474944,-0.758033,0.07775923,-0.38137913,0.15439178,-0.20079578,-0.51092345,0.31348684,-0.1705113,0.30968726,-0.47617912,-0.28055122,-0.03819679,0.26094747,0.04004667,0.20342135,0.6265891,-0.35854125,-0.017233757,-0.25386813,0.3512522,0.8896647,-0.19030127,-0.23989083,0.18210465,-0.30894575,-0.5517234,0.28919217,-0.34809282,0.06429014,-0.0065753,-0.2650285,-0.52210593,0.29486415,0.40169457,0.097722076,-0.10571203,-0.77307606,0.10176389,0.5412868,-0.45478103,-0.2857179,-0.315021,0.17804004,0.64797443,-0.0577948,-0.32062104,0.0020701452,0.63697714,-0.17161523,-0.41208783,-0.0043179337,-0.35483673,0.17204365,-0.08570438,-0.34064052,-0.0928677,0.020469742,-0.5386498,-0.100015596,0.5198692,-0.34384358,0.0033674024,-0.19176155,0.15916711,0.8987076,-0.117452934,0.115329735,-0.16743508,-0.5169461,-0.9508438,-0.28768885,0.18081596,0.50979954,-0.07439233,-0.86741185,-0.14014763,-0.36550573,-0.4558201,0.051723924,-0.08479918,0.5256512,0.24639797,0.6136264,-0.28174993,-0.7989495,0.34444502,0.14395514,-0.1816053,-0.3277304,0.4897981,0.15252568,0.7985458,0.049757812,0.09622779,0.21548805,-0.6061947,0.19567494,0.028551238,-0.038278803,-1.0292283,-0.22610584,499 -945,0.59687823,-0.1423956,-0.5763544,0.01478908,-0.28555477,0.14058676,-0.18093139,0.5031454,0.38927662,-0.4573216,-0.30764884,-0.34465373,0.15015036,0.1212264,-0.18711735,-0.36248106,0.01984831,0.40293473,-0.5237313,0.49378604,-0.22961365,0.23872823,0.22021738,0.50849605,0.16563721,0.16242827,-0.083194114,-0.29472005,-0.334735,-0.52028775,0.14517832,0.19096018,-0.7816723,0.18310584,-0.4857664,-0.36421764,-0.00808825,-0.6386822,-0.5701896,-0.8036611,0.29413462,-1.0410256,0.71436524,0.22685748,-0.25561514,0.2821735,0.24562879,0.27408788,-0.031674694,-0.06565163,0.31654054,-0.30166376,-0.19003981,-0.31463355,-0.28332588,-0.41229114,-0.6622818,-0.009757403,-0.29500648,-0.021331359,-0.4329085,0.26486647,-0.29410133,0.07644855,-0.2908046,0.54410547,-0.37952426,0.42532614,0.08978078,-0.18437591,0.27082703,-0.54447716,-0.311296,-0.25543404,0.25988844,-0.06794423,-0.257218,0.2499632,0.15740927,0.377514,-0.118050985,-0.20959999,-0.3068403,-0.0018924583,0.09283912,0.5836516,-0.46248153,-0.40110156,0.04083648,-0.15055834,0.1083642,0.13845088,0.0953258,-0.23941694,0.037556678,-0.064419575,-0.287501,0.4647788,0.63122934,-0.27725837,-0.12399936,0.18355256,0.28313267,0.16848134,-0.14063682,-0.17741208,0.12144881,-0.57103103,-0.19772048,0.17213167,-0.34661025,0.66015506,-0.13173626,0.19086127,0.6129351,-0.31609195,-0.024056586,0.4279434,0.4050561,0.27954122,-0.37390473,-0.3525391,0.47438872,-0.584999,0.083354965,-0.45095712,0.9336977,0.047165968,-0.49952975,0.33086023,-0.7565325,0.09832616,-0.01542236,0.47897825,0.431231,0.6042824,0.23352566,0.53342795,-0.17353886,0.01669641,-0.0812229,-0.22027983,0.040543076,-0.27965605,0.31208456,-0.25297928,-0.16635956,-0.016459053,-0.18710035,0.12189369,0.4319765,-0.37527427,-0.2858393,0.25675297,1.0189077,-0.24735741,-0.2678424,0.8680195,1.1703657,0.873159,0.0889036,1.4829051,0.19057487,-0.27145633,0.017853223,0.022247167,-0.7646839,0.2875294,0.084030636,-0.73809165,0.053487007,0.2740278,-0.24645938,0.16086638,-0.5646426,-0.16983268,-0.2431429,0.20418645,-0.015262062,0.029670082,-0.5178194,-0.31429684,-0.30211946,-0.12979211,0.25282758,0.19062595,-0.2810454,0.25397962,0.12318111,1.0853778,-0.17703037,0.1063675,0.047661997,0.49961475,0.06296389,0.06236939,-0.015802365,0.2622639,0.30694816,0.38303137,-0.44153145,0.00019363924,-0.23938619,-0.30798313,-0.07385311,-0.1042254,-0.09536707,0.07969912,-0.48573226,-0.39158437,-0.17052966,-0.104033425,0.37264153,-2.4103234,-0.12989284,0.05995244,0.45642567,-0.24315782,-0.4049948,-0.21145396,-0.6370914,0.3507883,0.12966135,0.4857189,-0.6421928,0.28293726,0.43890998,-0.6345439,-0.17960669,-0.7334812,-0.20816995,-0.065311626,0.052206837,-5.1246447e-05,0.075117104,0.0451937,-0.20138092,0.46957967,0.048625264,0.13597962,0.40164745,0.43864545,-0.15460517,0.44977713,0.036093876,0.53322697,-0.5217187,-0.3200665,0.244918,-0.44717267,0.3590722,-0.16083446,0.07842321,0.59557366,-0.53781265,-0.8344234,-0.7927298,-0.06923411,1.1004989,-0.14239886,-0.46595934,0.12983602,-0.37922305,-0.37828684,0.013963011,0.67797786,0.016357226,0.2575072,-0.77596074,-0.20674853,-0.2815888,0.33899945,0.0546532,0.02623272,-0.44332626,0.7208281,-0.034434784,0.29355657,0.3909956,0.20716234,-0.31582978,-0.4566704,0.039698035,1.0948033,0.30572847,0.23219018,-0.320165,-0.2616344,-0.44138068,-0.07651432,-0.05924815,0.81341034,0.6297145,-0.16602302,-0.012674589,0.3566461,-0.009837478,0.25149986,0.014340153,-0.57814366,-0.29938725,-0.10999758,0.5153695,0.8924831,-0.08680063,0.30614007,-0.14316322,0.59548515,-0.13001601,-0.391108,0.3169309,1.1618327,-0.19920197,-0.12064446,0.9829846,0.4932701,-0.42704478,0.5389076,-0.5626393,-0.6060315,0.23297729,-0.10277202,-0.55143636,0.26591825,-0.27990386,0.08747525,-0.7894541,0.5677113,-0.27424708,-0.45293418,-0.4136535,-0.12794195,-2.7000604,0.36094174,-0.35776633,0.007992983,-0.20661329,-0.16090587,0.15324889,-0.4283539,-0.402919,0.26032817,0.18285526,0.65451527,-0.16775817,0.21714784,-0.17931424,-0.41810694,-0.18236518,0.29332954,0.41010398,0.2832717,-0.32424802,-0.4382211,0.04540348,0.065267034,-0.034159627,0.09905167,-0.9252228,-0.5152008,-0.14335151,-0.6658512,-0.43603772,0.6814387,-0.3976,0.036296308,-0.22808193,0.03051619,-0.20340417,0.2838115,0.0023454537,0.3375518,-0.04581274,-0.15184605,0.024525069,-0.23752676,0.57065964,0.10070632,0.4399184,0.27645954,-0.036072526,-0.018457808,0.34417132,0.4920165,-0.2126461,1.058387,0.36238506,-0.16902663,0.22853684,-0.15437669,-0.48023263,-0.6186505,-0.02932002,-0.114867754,-0.49292758,-0.18119453,0.06642695,-0.39723024,-0.80159736,0.71400493,-0.00888708,-0.010259702,0.13046242,0.33713037,0.40425873,-0.25767648,-0.20261914,-0.058590177,0.0036208087,-0.64400005,-0.21402402,-0.630047,-0.42302313,-0.10345899,0.85981935,-0.10189665,0.23309673,0.31398165,-0.20876512,0.04850533,0.21421756,-0.05462738,-0.06765184,0.95730036,-0.041452345,-0.67872024,0.55368036,-0.2697815,-0.06723599,-0.60678804,0.6145912,0.5192875,-0.8005955,0.81129766,0.78489107,0.07268144,-0.3346027,-0.43685502,-0.48334876,-0.12537421,-0.07552448,0.27800784,0.24668965,-0.94387835,0.19532771,0.26384652,-0.4394577,-0.7490788,0.6022534,-0.13816518,-0.46120557,-0.058317743,0.47404596,-0.06779668,0.09410114,0.028147524,0.32158113,-0.3603839,0.39185488,-0.07818102,-0.21802236,0.16656037,-0.21804671,-0.031584717,-0.8104737,0.2802261,-0.42572525,-0.4240795,0.4078867,0.09195732,-0.11110301,0.48293382,0.28671482,0.32796037,-0.35131022,0.10440647,-0.23790435,-0.32068187,0.5364058,0.35539582,0.6618009,-0.6143074,0.6932139,0.007223304,-0.39787188,0.14415275,0.25051624,0.48252365,-0.11439759,0.49635667,0.14390329,-0.121740416,0.09304447,0.8456135,0.219726,0.5598871,0.058501266,0.10599582,0.19752264,0.0806711,0.11651967,0.09847806,-0.81734484,-0.12251561,-0.446451,0.09280643,0.42506,-0.003176578,0.38711298,-0.17300078,-0.34469417,-0.06946675,0.12391796,0.22442746,-1.2838731,0.2172738,0.083724625,0.7868141,0.30505112,-0.047944188,-0.024095839,0.85813135,-0.0054716645,0.05402137,0.22775203,0.057599388,-0.31578892,0.66284335,-0.49439794,0.30422142,-0.21230197,0.100706436,0.06871665,-0.11398259,0.30642363,0.9473259,-0.22853531,0.034254495,0.11131165,-0.33587587,0.16032039,-0.4465342,0.39668074,-0.6423986,-0.27939448,0.7835543,0.50768065,0.4092225,-0.15880431,0.09648035,0.115613915,-0.17728795,0.2681738,0.047732476,0.08602223,0.17483903,-0.81233305,0.13484138,0.64882165,-0.10355339,0.13876317,0.08336855,-0.060960904,0.40423152,-0.314517,-0.0005680675,-0.17324184,-1.0123998,-0.13721825,-0.7627218,-0.5231141,0.27509722,-0.189197,0.09804566,0.09779243,0.103231356,-0.29698288,0.5308098,0.29648665,0.72270393,0.039713167,-0.25639024,-0.41743806,0.28116152,0.12723385,-0.1842369,0.029430855,-0.2548838,0.12249041,-0.5272939,0.3745985,-0.11202776,-0.14402801,-0.22448856,-0.11714708,0.030490112,0.5788698,-0.0149449,0.04742304,0.27952728,-0.06286337,-0.3638202,-0.1698377,0.0044805678,0.10366671,0.50041974,-0.0541775,-0.20985842,-0.35929298,-0.19951554,0.12156933,-0.017250983,0.5863917,0.4794976,0.32198307,-0.01743675,0.011289943,0.11187098,0.6517521,-0.22139154,-0.22475916,-0.3088216,-0.39043283,-0.29459846,0.45027235,0.05946946,0.34658182,0.2934871,-0.043728296,1.0367609,-0.059759423,0.9628618,0.06801062,-0.25153065,-0.0060995873,0.42765445,-0.28405073,-0.22320677,-0.44365403,1.1517434,0.5088775,-0.11068826,-0.10568767,-0.4355903,0.08912515,0.090871185,-0.14474668,-0.20517808,0.03072068,-0.5283347,-0.16091634,0.1645857,0.53502065,0.060330693,-0.18778385,0.29049218,0.3804042,0.048677918,0.31303704,-0.7828494,-0.20724021,0.44684884,0.42647526,-0.05046827,0.38061142,-0.3323269,0.39886856,-0.4779091,0.10482225,-0.3612441,0.0673927,-0.18800591,-0.39788094,0.14125322,0.018883927,0.5233869,-0.6183447,-0.057043508,-0.22198291,0.43743563,0.2522651,0.04960027,0.58553237,-0.21611987,-0.3203897,-0.007580073,0.6931885,0.9601349,-0.43346596,0.008983883,0.47321406,-0.3494477,-0.57602143,0.35572585,-0.3563071,0.11067295,-0.07068923,-0.17322992,-0.52968156,0.25032786,0.11807886,-0.077705495,0.022070317,-0.64549977,0.107564546,0.23809947,-0.20345551,-0.31324568,-0.077840194,0.3389176,0.54540473,-0.09786127,-0.24333325,-0.0010364272,0.25294635,-0.23515506,-0.37980774,-0.03817831,-0.5060671,0.10966962,0.04091444,-0.30478483,-0.26301062,0.02917505,-0.54138875,0.054397885,0.09089086,-0.35569692,0.12387867,-0.2051834,-0.020820921,0.62135774,-0.13503014,0.057159185,-0.4409343,-0.61030257,-0.90590453,-0.3380772,0.02729283,0.2086815,0.107890084,-0.48937356,-0.120736405,-0.047714677,-0.24877526,-0.03439444,-0.35786748,0.51361454,0.24907555,0.41319788,-0.30650976,-0.86025447,-0.07044292,0.08982837,-0.2131981,-0.70063096,0.2668338,-0.071566395,1.0588254,-0.018846376,0.13977498,0.47631833,-0.47768247,-0.15414782,-0.10104471,-0.13712639,-0.8356653,-0.04923031,559 -946,0.5335504,-0.47940782,-0.53678036,-0.14916216,0.016672673,-0.13496001,-0.09117677,0.8210806,0.31645492,-0.36511105,-0.26760226,-0.2652327,0.075405605,0.66012675,-0.06949621,-0.66344756,0.0487154,0.26444858,-0.52026314,0.7481466,-0.39180744,0.15226668,-0.04463575,0.48981667,0.26072675,0.39340603,0.14955455,-0.11691294,-0.196379,0.07823979,-0.04234005,0.0956727,-0.46505365,-0.030652784,-0.16366991,-0.4734084,-0.14122863,-0.53023183,-0.52725255,-0.8184048,0.296051,-0.8899068,0.6193447,0.060695324,-0.3413291,0.19494213,0.07334008,0.4080958,-0.4193327,0.026266104,-0.0049125,0.100966446,-0.02639739,-0.1661266,-0.2265036,-0.64497334,-0.66357607,0.07582159,-0.27691406,-0.022220904,-0.07929592,0.012628313,-0.3516036,0.013916644,0.03491296,0.40476924,-0.5063351,0.019106453,0.2685239,-0.106072165,0.21193595,-0.52689844,-0.3560713,-0.27776912,0.32542327,-0.06322213,-0.22934757,0.2610744,0.4368765,0.5800199,-0.049757328,-0.14360671,-0.30437967,0.096973725,0.04305039,0.5991965,-0.23499058,-0.77737653,-0.20666213,-0.047431782,0.34852856,0.14670266,0.33480185,-0.2591445,-0.059357252,-0.01688915,-0.35096473,0.37812427,0.5600035,-0.4051505,-0.25751448,0.32720307,0.48156434,0.2677748,-0.23455343,0.062921874,0.04843397,-0.5090211,-0.16563722,0.024883877,-0.24606484,0.8581448,-0.2533431,0.27235544,0.6715229,-0.15723892,-0.025561506,0.057841714,0.0769046,-0.28141716,-0.24602006,-0.33798045,0.33133787,-0.3177666,0.026245588,-0.2669365,0.64405894,0.35966328,-0.6706895,0.32298043,-0.57482344,0.31220138,-0.1814653,0.40215448,0.7109206,0.40193412,0.29401472,0.5722818,-0.37794217,0.055095494,0.1755569,-0.35888675,0.08047152,-0.26270312,-0.20579177,-0.5937798,0.19863376,0.22204265,-0.17818269,0.19487958,0.73287106,-0.6158228,-0.22356099,0.05191581,0.85054016,-0.25762737,-0.16177124,0.9682464,0.9448686,1.0969008,0.03639323,1.3829207,0.4719114,-0.26612532,0.29013866,-0.3297728,-0.88254637,0.24646765,0.37611207,-0.65689826,0.62839234,0.0007023107,-0.2442884,0.5401259,-0.2925832,0.06748976,-0.23299819,-0.101274915,0.065553434,-0.36107796,-0.5773333,-0.39921352,-0.27394345,0.038713466,0.15901622,0.27027166,-0.142002,0.4593128,-0.00020168045,1.7029877,-0.006571022,-0.011107043,0.019937364,0.71739376,0.16839193,-0.21806854,-0.030263739,0.26695308,0.51737034,0.17198052,-0.67539716,0.014261051,-0.2930958,-0.6428869,-0.16964155,-0.29903692,-0.06599615,0.07802967,-0.5347778,-0.24028358,-0.26471633,-0.062698156,0.36788273,-2.263115,-0.33015433,-0.31524917,0.5397016,-0.32690445,-0.28745213,-0.24742395,-0.3853656,0.25333416,0.41871712,0.58063835,-0.9622627,0.47244385,0.31263384,-0.5968783,0.03552562,-0.61471236,-0.15377563,-0.07458801,0.41865423,-0.14932369,0.003583919,0.4475973,0.16752501,0.4835451,0.103152126,0.20365883,0.3240867,0.4739561,-0.0033985486,0.26322058,-0.09614728,0.5780589,-0.27843294,-0.17379631,0.18748488,-0.42819852,0.1422618,-0.14492902,0.17268233,0.47010812,-0.68684393,-0.9988428,-0.5801354,0.056350384,1.1607347,-0.2601903,-0.46463454,0.18649782,-0.3133798,-0.23221658,-0.15784146,0.53275454,-0.1555923,-0.04910065,-0.95769143,-0.03856539,0.026963824,-0.07444433,0.014716185,-0.097759224,-0.21462923,0.6719954,0.046935562,0.54701436,0.25241697,0.18960375,-0.2304411,-0.6638826,0.08922216,0.8376261,0.3764384,0.2289938,-0.12578359,-0.23221599,-0.60828876,-0.08546542,0.21340461,0.39114368,0.70422083,-0.13656941,0.1095784,0.3990138,0.21012749,0.2454034,-0.13215876,-0.3598552,-0.29841363,0.007140127,0.6013964,0.8566509,-0.5762988,0.49666223,-0.15364324,0.18494043,-0.0027471618,-0.53980374,0.77803457,1.1412811,-0.30922368,-0.29556015,0.6882193,0.49853298,-0.59715027,0.5323547,-0.60993123,-0.27356455,0.3566869,-0.063342065,-0.29738402,0.29566777,-0.35681772,0.32238638,-1.0715063,0.44851044,-0.30532143,-0.16408409,-0.49745095,-0.008640966,-3.6034882,0.43784705,-0.32880434,-0.21938218,-0.31113642,-0.18571825,0.10175278,-0.7815845,-0.72102284,0.2928925,0.054363597,0.7273489,-0.022729905,0.1514623,-0.2758989,-0.3194044,-0.3048565,0.030140894,0.13142352,0.4786018,0.04462892,-0.68254703,-0.22238235,-0.030675411,-0.42944872,0.25351745,-0.84069306,-0.50840145,-0.11014816,-0.65697896,-0.3537777,0.60550404,-0.18531333,0.0811849,-0.23921989,-0.039109465,-0.3366269,0.39468578,-0.17558599,0.05631192,0.022053735,-0.07641663,0.20427479,-0.078729674,0.19953305,-0.050530933,0.45503023,0.08587087,-0.25950655,0.24284229,0.65014225,0.7948342,-0.029194105,0.74858755,0.7663451,-0.07550302,0.34670356,-0.21899462,-0.09690084,-0.5159811,-0.46587422,-0.08808423,-0.45227745,-0.65825444,0.04389495,-0.36519775,-0.9144078,0.5224741,-0.022842916,0.45345366,0.08685675,0.097419545,0.636844,-0.048894044,0.101275064,-0.16328268,-0.35192037,-0.65559494,-0.08323758,-0.77423745,-0.3997513,0.5093049,0.8475531,-0.20263553,0.05260018,0.05838656,-0.40769145,-0.04784386,0.27511004,-0.07511556,-0.016874898,0.30671015,-0.3493674,-0.8001661,0.3970949,-0.0956507,-0.27378055,-0.53308845,0.18489023,0.51328593,-0.71157736,0.7929213,0.41013864,-0.029411769,0.002765287,-0.5363782,-0.44666204,-0.06092213,-0.10294983,0.3324815,0.3505402,-0.8888481,0.34596923,0.44242936,-0.38725746,-0.6210863,0.82975936,-0.12959868,-0.060826167,-0.10381877,0.30998152,0.1529199,-0.12149321,-0.4086548,0.28891665,-0.5252264,0.30489942,0.2702584,-0.15147215,0.36994556,-0.0392836,-0.005308953,-0.9701923,0.063982576,-0.6275556,-0.1194864,0.3938255,0.14530845,0.26823303,-0.27170038,0.19192408,0.2461595,-0.3473693,0.15660642,0.013761184,-0.35961255,0.3913964,0.34743536,0.475039,-0.5008641,0.65461403,0.04510316,-0.17936529,0.16661173,0.18448947,0.44809473,0.4065132,0.41927183,0.25951192,-0.39915457,0.2857534,0.7816,0.3071435,0.4443163,0.32640374,-0.07081887,0.35938975,0.24799977,0.19818354,-0.089015,-0.43312645,-0.26741326,-0.1545496,0.2651122,0.6133397,0.22224626,0.42043492,-0.23066579,-0.38334426,-0.03783158,0.17564797,0.19289559,-1.5214137,0.23997559,0.35668924,0.7502617,0.5248682,-0.22972474,-0.094364114,0.52749354,-0.21370386,0.17361456,0.43719274,-0.024090929,-0.77073824,0.6722616,-0.5459728,0.4252691,-0.11578999,0.070311636,0.048042916,0.25483555,0.3050409,0.65949625,-0.031132845,0.054031182,0.02127256,-0.40902576,0.008867248,-0.47371358,-0.06835442,-0.63398844,-0.10062745,0.6751812,0.5017461,0.38426608,-0.26083025,0.05913677,0.10553408,-0.16155137,0.19590427,0.058504775,0.2452282,-0.10861272,-0.9600842,-0.1550054,0.521906,-0.06645174,0.27693808,0.1337563,-0.44760647,0.37806797,-0.30226794,-0.08796225,0.03987214,-0.8703428,-0.1699719,-0.3280047,-0.45170593,0.55327857,0.14206572,0.2526962,0.2803628,0.10368762,-0.48788893,0.23494096,-0.34304747,0.8409023,-0.22801374,-0.45966598,-0.4629157,0.13653885,0.3541268,-0.1892951,0.17795339,-0.35482457,-0.21778022,-0.43942964,0.6213569,0.3291279,-0.25267732,-0.012968648,-0.08146275,0.062143814,0.5567402,-0.39029816,-0.19127601,0.07339766,-0.09874806,-0.27410164,-0.3582341,-0.11267298,0.40963048,0.39198416,0.08477941,-0.19143124,-0.087590046,0.11355701,0.5333218,0.003947908,0.31308773,0.64464974,0.33503968,-0.2931175,-0.19687085,0.51404244,0.42669305,0.093742706,-0.31785235,-0.48515767,-0.7324774,-0.36785355,-0.19236611,-0.1547772,0.4748963,0.08396513,-0.25104943,0.8181667,0.060273565,1.3487236,0.06463163,-0.5820632,-0.020313136,0.47845563,0.0519145,-0.20252861,-0.21635456,1.0364845,0.6831332,-0.17168091,-0.22671801,-0.5328111,-0.24519318,0.20612575,-0.33549574,-0.2574619,0.13715924,-0.56350446,-0.42486325,0.16140951,0.23400931,0.38420218,-0.13863967,0.43304902,0.26863915,0.041105837,0.2607714,-0.56581765,-0.47156173,0.1968533,0.31857386,0.047101382,0.20698506,-0.46038055,0.2839603,-0.6024319,0.12181113,-0.28326187,0.2653574,-0.09898431,-0.57689685,0.2121916,0.04591838,0.45260173,-0.43470535,-0.46917212,-0.26025277,0.7108484,0.07320866,0.09272463,0.6089163,-0.43118897,-0.10295456,0.1081432,0.58140415,1.1542993,-0.14879297,-0.057619378,0.43373358,-0.44941643,-0.92330325,0.47073528,-0.12846205,0.61951566,-0.08641022,-0.112090655,-0.98493266,0.41158706,0.1866793,-0.15922242,0.06772679,-0.46364644,-0.39242095,0.3072417,-0.33865812,-0.21195477,-0.47791308,0.20000814,0.54531693,-0.4235038,-0.3702281,0.18852915,0.13485633,-0.15085755,-0.5096975,-0.17991771,-0.45846233,0.3413144,0.19718151,-0.36022905,-0.25832966,-0.21116844,-0.42717925,0.40826112,0.15708572,-0.32214394,0.3016048,-0.5819321,-0.35510752,1.1500373,-0.34880286,0.41808262,-0.54834837,-0.40988004,-0.9117395,-0.66805744,0.57230395,0.13420822,0.02893392,-0.81562144,0.18999995,0.1150012,-0.16078101,-0.06347721,-0.24743158,0.56642413,0.11120398,0.36729088,0.060587123,-0.73785025,0.110933356,0.106592625,-0.17110328,-0.719108,0.5110126,0.050271437,1.3043381,0.1559943,0.25105265,0.4561021,-0.51210076,-0.46008274,-0.2301507,-0.2613289,-0.64050746,0.020239623,579 -947,0.8037048,-0.12326792,-0.37064317,-0.19048482,-0.28422126,0.12661678,-0.26183823,0.5641649,0.39199364,-0.54897,-0.38457662,-0.23914677,0.0013268049,0.3917947,-0.2597335,-0.9597449,0.24265684,0.12479103,-0.3877198,0.6516674,-0.5113407,0.22597612,-0.32956278,0.417663,0.21602258,0.39659908,0.24625611,0.1199308,0.11710394,-0.3076452,0.26470086,0.02153324,-0.538229,0.25848845,-0.02160259,-0.41237324,0.0072636767,-0.5397314,-0.44946444,-0.80339885,0.3657665,-0.8212251,0.5635588,0.019013323,-0.1698073,-0.025995314,0.14141497,-0.07809878,0.12382162,-0.14015016,-0.10537613,0.03940915,-0.32698217,-0.21622299,-0.29394054,-0.7017092,-0.69032013,0.027602,-0.29764375,-0.13079049,-0.41540653,0.038579766,-0.48278219,0.0728235,0.075950466,0.52455467,-0.551766,0.11865311,0.12945794,-0.14386757,-0.12542643,-0.6309111,-0.3451586,-0.12189955,0.25871995,-0.082180336,-0.21530789,0.18049818,0.4653304,0.51274467,-0.036101278,-0.03985009,-0.2244137,-0.032849487,0.33153832,0.7508347,-0.11135778,-0.8441565,-0.1877336,-0.05950948,0.43289003,0.12257309,0.49387833,-0.30616382,-0.004122604,-0.011715575,-0.3343804,0.73475766,0.58866096,-0.5938604,-0.109537356,0.22181673,0.44324666,0.25238585,-0.2651203,0.27173844,0.048721693,-0.5589067,-0.26052824,-0.22130364,-0.07859891,0.53408545,-0.11821573,0.31145433,0.46515477,-0.4378522,0.08184126,-0.044500187,-0.22906183,-0.22009769,-0.26629803,-0.10478024,0.24948101,-0.2556348,0.15004815,-0.38124353,0.85388094,0.20545945,-0.6978973,0.36174735,-0.6170984,0.12742735,-0.04685688,0.58067334,0.70224124,0.36573735,0.55049634,0.58623016,-0.2351302,0.013443909,0.019429414,-0.32987946,-0.045644023,-0.13917015,-0.10977225,-0.31783116,0.23964292,0.10603959,-0.15221392,0.15502809,0.8939823,-0.47763625,-0.054774024,-0.003595168,0.89217377,-0.27248937,-0.21683007,0.81085515,1.1174319,0.9597908,0.11149334,1.4141338,0.2546829,0.001918958,0.054059993,0.13367414,-0.86119676,0.28579003,0.54275805,-0.16135551,0.40630814,0.21824323,-0.11206308,0.41649663,-0.48684558,-0.12684907,-0.07892942,0.4695385,0.32688266,-0.37380522,-0.4574617,-0.10160272,0.09902844,-0.041265424,0.30298474,0.21478137,-0.2564,0.26317504,0.022909435,1.5918903,0.06908763,0.004862097,0.060817864,0.68055683,0.30128404,-0.2317002,0.20996466,0.039325345,0.06948215,0.025735343,-0.656801,0.17129844,-0.18832515,-0.430645,-0.25079587,-0.29002833,-0.42510644,0.11609964,-0.120031,-0.27279055,-0.18742982,-0.0941044,0.46663362,-2.437995,-0.24118096,-0.099930406,0.40727612,-0.10767233,-0.41356304,-0.06789864,-0.43832615,0.3240945,0.2777184,0.39389923,-0.75914675,0.51596004,0.66073674,-0.65543294,-0.10008877,-0.6452101,0.16810374,-0.073140286,0.40713835,-0.026278816,-0.01538851,0.21404529,0.14649571,0.5541125,0.07146955,0.20753886,0.27233452,0.63284343,-0.05293161,0.37074935,-0.2636864,0.5718778,-0.0164528,-0.20218706,0.19738154,-0.25422856,0.23511477,-0.37420788,0.15275432,0.40624514,-0.4899516,-0.93698955,-0.68486667,-0.336522,1.0162796,-0.027305214,-0.62775534,0.2469614,-0.52323085,-0.4016692,-0.18891953,0.6199054,-0.4281678,-0.2500067,-0.66213703,0.08738118,-0.07319044,0.15178066,-0.011404883,-0.05413783,-0.5321036,0.69357324,-0.14164595,0.40326014,0.10644245,0.32343316,-0.22403361,-0.55691904,0.09628489,0.9206415,0.4643324,0.25524467,-0.34060392,-0.12404378,-0.44099805,-0.08757403,-0.029896235,0.9686509,0.42814767,0.032368097,0.05394785,0.15810795,0.1240362,0.08826273,-0.18651725,-0.23824745,-0.3287255,-0.11746542,0.6247957,0.8780356,-0.5437805,0.3250411,-0.019551711,0.03742909,-0.32891354,-0.42707622,0.45372698,0.8593652,-0.25602406,-0.27630216,0.5994141,0.38410243,-0.57034665,0.38747045,-0.76471883,-0.08190415,0.3878555,-0.03011738,-0.34052017,0.19380201,-0.28111613,0.09969643,-0.808219,0.4795618,-0.39918268,-0.38345587,-0.38029462,-0.017236942,-3.6225302,0.2920032,-0.05377495,-0.17566513,-0.27804613,-0.20516807,0.26747176,-0.43319356,-0.7487023,0.20266414,-0.07466144,0.8055256,-0.095274545,0.1895008,-0.24763714,-0.30868977,-0.30293006,0.09516833,0.062977724,0.59664404,0.005744392,-0.3093997,0.09393723,0.062441353,-0.3048031,0.16723976,-0.1779277,-0.6714367,-0.07375794,-0.17786044,-0.17016885,0.6887748,-0.5766331,0.06627195,-0.50933987,-0.059548978,-0.4147648,0.3277807,-0.06879273,0.020369953,-0.04703096,0.038949665,-0.11858437,-0.19697623,0.5641783,-0.042932566,0.5201056,0.5841047,-0.20462953,0.05513899,0.39483336,0.6144298,0.1867486,1.0193914,0.17932151,0.08759935,0.2654666,0.042228352,-0.3193835,-0.40448797,-0.35735103,0.23528719,-0.48225203,-0.4037278,-0.22007293,-0.4510331,-0.7094364,0.29576498,-0.014359073,0.3774974,-0.04812349,0.23451494,0.6356468,0.028972896,0.006627749,0.21065535,-0.15492569,-0.81390667,-0.19259797,-0.40762198,-0.4374277,0.37270078,0.8022291,-0.033712316,-0.070792235,0.1060565,-0.32885572,0.13850144,0.01706112,-0.025256569,-0.041584875,0.21744758,-0.12725194,-0.77170396,0.47822103,-0.3721593,-0.27471226,-0.75897807,0.2723808,0.63820404,-0.62197614,0.4338045,0.2692856,0.1701584,-0.046398092,-0.47827145,-0.022290533,0.020173918,-0.32100502,0.2552658,0.43968704,-1.1954789,0.3562333,0.15216045,-0.064678065,-0.71732134,0.6383987,0.08842332,0.01376675,-0.006027406,0.40516186,0.5182505,-0.051013518,-0.5778374,0.37944385,-0.5218381,0.28159896,-0.054619443,-0.004796597,0.12896757,-0.08055753,-0.15566826,-0.88677824,-0.16429041,-0.5149033,-0.27865,0.12944907,0.15628533,0.48764756,-0.030702634,0.32356635,0.43217075,-0.34196827,0.1772895,0.14649019,-0.38584653,0.2833139,0.5021574,0.56252104,-0.31215486,0.6643031,0.034979716,0.07261785,0.3160908,0.16123971,0.32068413,0.09655792,0.36337188,0.32528946,-0.20583218,0.06125861,1.2032148,0.09050346,0.38566485,0.1314088,-0.2759334,0.5336254,0.011492132,0.2995715,-0.011334446,-0.7565064,-0.17849563,-0.12663826,0.15716009,0.6286352,0.24349405,0.27194196,-0.24442948,-0.480886,-0.0032887838,0.27155894,0.094617866,-1.3890923,-0.10433856,-0.0589466,1.0119572,0.604451,-0.29720688,0.031511866,0.4425092,0.088154264,0.13753934,0.4451312,0.21578103,-0.41634056,0.36845815,-0.5073955,0.35309908,-0.20725523,-0.04826744,0.13963968,0.022381626,0.24119629,0.7803264,-0.1347417,0.00062994525,-0.0931052,-0.09817577,0.0027107922,-0.48360854,-0.044049457,-0.6229949,-0.015601724,0.71832174,0.6623592,0.36460713,-0.092301875,0.072289556,0.061285757,0.0018405609,0.044149738,-0.0075389636,0.079879574,-0.36966237,-0.7196066,-0.43191198,0.4031255,0.023555474,0.052491244,0.11285999,-0.36794224,0.17678393,-0.08373439,-0.19774471,0.12611245,-0.6862974,-0.2011446,-0.22909804,-0.57972044,0.32582033,0.1844895,0.10614974,0.4015772,0.06373401,-0.2845021,0.263135,0.2268812,0.76400757,0.06634975,-0.038737215,-0.5885229,0.055795833,0.32036301,-0.3077773,-0.020515388,-0.10678401,0.12008543,-0.6451083,0.41943872,-0.07633409,-0.4526644,0.24705482,0.034260865,0.10517247,0.58059514,-0.29772168,-0.090101115,0.28226247,-0.107665844,-0.13250247,-0.07529754,-0.09946032,0.23228806,0.02746011,-0.28383902,-0.09272612,-0.11247275,0.04701159,0.010040197,-0.00917157,0.33228853,0.624995,0.29544953,-0.2665351,-0.23631527,0.2351644,0.81806636,-0.03847357,-0.17830773,-0.28995305,-0.72781223,-0.51190555,0.034708478,0.018803434,0.1796331,0.10087021,-0.50189054,0.33403805,0.116348416,0.9339173,0.13746849,-0.46363112,0.20191585,0.5258965,0.017519344,-0.12163889,-0.49981976,1.0055301,0.31272793,-0.25905967,-0.081170626,-0.41044274,-0.10856583,0.1687081,-0.28568092,-0.067226365,-0.024165122,-0.72339594,-0.11617258,0.120112054,0.20393454,0.0083237775,-0.09531965,0.36250997,0.3090318,0.061661243,0.4373628,-0.67763406,-0.35788175,0.30773437,0.329399,0.021920783,0.16265234,-0.3065196,0.17044817,-0.6269467,-0.0071770605,-0.52148145,0.13705835,-0.17554499,-0.2819438,0.13917571,0.36053473,0.56876606,-0.28781483,-0.49484682,-0.2547336,0.49119046,0.04209623,0.24849753,0.44373444,-0.18070492,-0.07977276,-0.03338224,0.6429712,1.3378092,0.074245065,0.22199531,0.2825896,-0.57192177,-0.734248,0.47981232,-0.58738446,0.15733884,-0.0023520698,-0.029038608,-0.60769117,0.2366511,0.26266536,0.007912219,0.09831598,-0.5788619,-0.5601638,0.15411355,-0.32414687,-0.22226442,-0.3503145,-0.12130964,0.8033005,-0.42798263,-0.17105184,0.0029756264,0.49353448,-0.12634867,-0.74521023,-0.3091397,-0.32070154,0.38591287,0.03411046,-0.26216695,-0.51422673,-0.33830994,-0.50500363,0.13502774,-0.007838043,-0.3908582,0.2662145,-0.36222094,-0.00516348,0.81190544,-0.2912656,0.32476842,-0.59000164,-0.5932905,-0.7743911,-0.49496737,0.12716569,0.1394222,0.03359847,-0.5711394,6.785718e-05,-0.039955497,-0.007033749,0.009361169,-0.3857937,0.4711428,0.10240132,0.529438,0.03864788,-1.0581523,0.1526652,0.12533604,-0.21035342,-0.7422437,0.6250084,0.0031730263,1.1072516,0.13380441,-0.020992003,-0.029569643,-0.47777253,0.15038869,-0.29405922,-0.19587833,-0.5522395,0.42898738,586 -948,0.4759487,-0.35324124,-0.44202548,-0.22663608,-0.34515092,0.10785187,-0.06518855,0.5115873,0.13062452,-0.47690734,-0.18419565,-0.2018464,0.0069303378,0.39289942,-0.4394813,-0.55332255,0.10652501,0.2721366,-0.4629214,0.5071177,-0.2917278,0.33502167,0.16917115,0.34128615,0.2850075,0.18997516,0.17575583,0.20442963,0.032018732,-0.45848224,-0.25587028,0.15246755,-0.18348473,0.2668887,0.056751207,-0.38328856,0.098265894,-0.57825184,-0.15138277,-0.8173182,0.5323625,-0.88569623,0.62547106,0.03064348,-0.30957434,0.15151304,0.68818027,0.37681475,-0.008861953,-0.1641288,0.20057462,-0.120724656,-0.17525153,0.0039304276,-0.13225763,-0.4411642,-0.77380353,-0.07334106,-0.23875855,-0.40755063,-0.45219058,0.29657695,-0.41832924,0.13559951,-0.013664167,0.9119953,-0.4097248,0.010103929,0.1507296,-0.31779245,0.2789568,-0.76140803,-0.16019072,-0.030358948,0.34416425,-0.058548067,0.0018553503,0.2195639,0.4689354,0.3343774,0.007966042,-0.18736538,-0.38783824,-0.22575864,-0.17981216,0.6039598,-0.15809868,-0.5488574,0.043981377,0.050016835,0.27874926,0.3005923,0.35552305,-0.06973537,-0.13111533,0.08280995,-0.2949378,0.46480283,0.2796244,-0.4565263,-0.104798466,0.2594181,0.4253576,0.0012149405,-0.13504979,0.024565643,-0.010213983,-0.63004804,-0.13361156,-0.16363792,-0.31088737,0.34347072,-0.1124681,0.4457061,0.60123175,-0.083813675,-0.15663117,0.073835924,0.10339522,-0.11409462,-0.23039718,-0.429028,0.39083177,-0.4889325,0.21153736,-0.042725086,0.92346746,-0.089256644,-0.54465705,0.3414338,-0.5929739,0.12791844,-0.037579782,0.2920535,0.522728,0.35492316,0.4576772,0.6448798,-0.21360126,-0.08230693,-0.038923204,-0.37309694,-0.115377314,-0.17939077,0.21705656,-0.5731806,0.18264484,0.082225375,-0.03577721,0.111103036,0.6964624,-0.6244001,-0.106405474,0.10599206,0.8870658,-0.22911245,-0.20108858,0.8214722,1.0025357,1.0942205,0.08051053,0.90981805,0.06152541,-0.2710908,0.008058369,0.02506475,-0.37708524,0.39575005,0.6311663,0.02162209,0.14742452,-0.015513972,-0.00062105194,0.5919505,-0.30665562,-0.15421158,-0.11562486,0.21663886,0.15023206,-0.37566864,-0.62746257,-0.436151,0.07472373,0.015994001,0.32909977,0.33415967,-0.066792324,0.3487779,0.007701142,1.4620068,-0.062821575,0.24037045,0.21916388,0.30709317,0.14295182,-0.14978693,0.02652973,0.047593072,0.21333443,0.09189951,-0.5023647,0.20977598,-0.24793659,-0.44655752,-0.13925026,-0.37786058,-0.28172255,0.09046782,-0.39352304,-0.25808522,-0.26065817,-0.37005866,0.36208558,-2.5904465,-0.18242273,-0.24332489,0.12705818,-0.1959429,-0.4605424,0.053128053,-0.46361437,0.5825195,0.33790854,0.5602789,-0.5768348,0.46126062,0.39161003,-0.560426,-0.060106732,-0.57150644,-0.20817819,-0.13370313,0.20635079,0.13317038,-0.3992822,-0.06758496,0.38497946,0.5104451,0.14112352,0.08128983,0.38428828,0.3369737,-0.2188326,0.77853113,-0.15989421,0.5151687,0.0001615611,-0.21171193,0.33694768,-0.39217633,0.008333496,-0.27240753,0.1770681,0.6027536,-0.52286136,-1.0500166,-0.6675269,-0.23829955,1.2353959,-0.1270474,-0.45848006,0.41044232,-0.20414147,-0.28085187,-0.00017559528,0.64102435,-0.33586,-0.023494266,-0.7131911,0.13989006,-0.24012609,0.039533496,0.1062673,-0.32205322,-0.69754815,0.74242723,-0.14582461,0.749617,0.22888814,0.17346603,-0.60935587,-0.30759785,-0.07579132,0.9616701,0.5903515,-0.023747943,-0.18392433,-0.055246178,-0.4787769,-0.22987829,-0.031206625,0.6713378,0.593,0.085410446,0.14244944,0.15666904,-0.098870724,0.12112895,-0.14280905,-0.2832766,-0.06593404,-0.07372089,0.7154995,0.38267812,-0.1368545,0.46872905,-0.057539344,0.37371162,-0.20596133,-0.41299534,0.27083275,0.9385586,-0.12803435,-0.5383124,1.026724,0.4879957,-0.06338584,0.3000541,-0.5375706,-0.3383975,0.4990055,-0.23299627,-0.5820663,0.05503246,-0.37059364,0.05851557,-0.8344815,0.25955644,-0.35220107,-0.5832927,-0.5449465,-0.16992222,-3.5572188,0.3658521,-0.15810765,-0.19987124,-0.14530902,-0.27487758,-0.07198041,-0.69508815,-0.71821326,0.16158746,0.079624586,0.8842281,-0.15818335,0.08403817,-0.03427343,-0.44491255,-0.02674318,0.0793276,-0.20147921,0.35289872,0.04403395,-0.28586158,0.108203284,0.053568367,-0.567538,0.12493543,-0.57896465,-0.66200066,-0.21570277,-0.62660396,-0.40309438,0.6363659,-0.36180943,0.21513523,-0.32015762,-0.016047599,-0.0042516263,0.21892025,0.013686413,0.14069743,-0.014721897,-0.17533241,0.24364161,-0.1529533,0.3380862,-0.020148657,0.45265073,0.2594844,-0.11025043,0.2946764,0.64369947,0.7035043,0.0070350943,0.9863365,0.2802121,-0.032427546,0.080760546,-0.17299162,-0.26255426,-0.38185632,-0.19375534,0.34094456,-0.43401432,-0.32021818,-0.10032272,-0.2429112,-0.65639776,0.67209643,0.07859946,0.16837353,-0.16665222,0.44802257,0.44917583,-0.2897878,-0.043764036,0.099460535,-0.14333601,-0.57642096,-0.10929077,-0.6515602,-0.33546898,-0.17034769,0.98432803,-0.37402132,0.13879332,0.0027954795,-0.13330956,-0.007379001,0.16399293,0.15222909,0.11525152,0.4186273,-0.27787587,-0.7214188,0.5042762,-0.43336695,-0.13069902,-0.48742488,0.25282946,0.45746934,-0.4147273,0.46732095,0.37395105,0.1360954,-0.4698291,-0.5174995,0.026768183,0.22809395,-0.22181915,0.38275242,0.40989968,-0.6289198,0.4856817,0.26611507,-0.018533273,-0.8473044,0.44518754,-0.006683007,-0.42443034,-0.19011298,0.44803047,0.3974682,-0.0063818395,-0.27374724,0.16902305,-0.45520055,0.34517717,-0.08784041,0.015026716,0.33711407,-0.27685663,-0.08721972,-0.90960103,0.029857956,-0.6416371,-0.2470769,0.14327416,0.03863811,0.089263745,0.3245794,-0.12454503,0.41243,-0.5169661,-0.013698559,-0.16642264,-0.2671129,0.36137715,0.44186413,0.4172864,-0.48765782,0.668881,0.061467513,0.09982571,-0.19173717,-0.0585147,0.53124946,0.041573774,0.45505857,-0.24550754,-0.25721022,0.27974027,0.6542381,0.1257184,0.31148565,0.12972112,0.052597214,-0.08913205,-0.06437433,0.12356344,0.17443366,-0.66036725,-0.03145996,-0.40439847,0.017538108,0.6899397,0.07777247,0.21205445,-0.02930485,-0.43285105,0.10871745,0.12894093,-0.15082526,-1.3060282,0.4946303,0.11393666,0.9433235,0.45410138,0.0884057,-0.11773756,0.847423,-0.15928048,0.14421675,0.2675174,0.12687671,-0.2823857,0.6772577,-0.8338948,0.37216747,0.0068205134,-0.13016644,-0.23544441,-0.19715005,0.3100968,0.6634767,-0.19138913,0.048319876,-0.015624019,-0.37395546,0.12245858,-0.3481437,-0.09457931,-0.40753564,-0.32204887,0.5719726,0.41262817,0.3283806,-0.15003724,0.18510303,0.13529362,-0.091776565,0.1407024,-0.0029045343,0.022679122,-0.1283081,-0.5853668,-0.06843435,0.40382326,0.3057923,0.29080808,0.042213082,-0.12614101,0.1926633,-0.034592107,-0.1335926,-0.038382176,-0.61689,0.020423306,-0.36506703,-0.5130358,0.2727998,-0.26532766,0.17125179,0.16325554,0.01585538,-0.0660536,0.28632668,0.33434302,0.682814,-0.00037413294,0.018389551,-0.092854135,0.14583692,-0.120783634,-0.19487485,-0.1185096,-0.29165107,0.24337927,-0.75653684,0.4284788,0.03248867,-0.38199723,0.2454115,-0.19962749,0.024580467,0.35003614,-0.2946478,0.044710148,0.003742229,-0.2338532,0.067600556,-0.427302,-0.071947925,0.24213338,-0.052664116,-0.011754941,-0.10683634,-0.04092324,-0.34108132,0.37884504,0.009836704,0.47259247,0.43344498,0.0061262306,-0.31091428,0.07624269,0.010988111,0.47276324,-0.20915331,-0.30450413,-0.44605464,-0.4197302,-0.36479655,0.30182183,0.014833484,0.35573927,0.014587995,-0.22132589,0.82110304,-0.025032682,1.0409749,-0.07789517,-0.4846344,-0.08994262,0.42755172,-0.2153051,-0.062272374,-0.15700364,0.8595267,0.42066023,0.020055907,-0.023659784,-0.49469966,0.20442237,0.22719054,-0.09734582,-0.146717,0.048273865,-0.499521,-0.4344094,0.26610404,0.25871366,0.22349806,-0.24753796,0.19941324,0.5133623,0.009779936,0.44527432,-0.52494806,-0.13970166,0.21377373,0.34487313,-0.118724935,0.118720464,-0.513076,0.33759725,-0.7965136,0.2839835,-0.4057616,0.21890236,-0.26845476,-0.19809571,0.4310479,0.052823815,0.49525395,-0.2212454,-0.2810899,0.008726456,0.49312842,0.04048586,-0.079277724,0.49473622,-0.34017113,-0.047571205,0.16371478,0.6134972,1.1328651,-0.23082586,0.21008067,0.10065456,-0.3208376,-0.54698586,0.37505054,-0.1126378,-0.00023082712,0.27864572,-0.12990178,-0.42442292,0.2628537,0.44578534,0.13598658,-0.05361775,-0.40297887,-0.42186296,0.43181607,-0.52116054,-0.113378234,-0.29948154,0.06911168,0.21899681,-0.17073716,-0.13867426,-0.13516931,0.45743734,-0.13523795,-0.6016789,-0.113245204,-0.26458487,0.44023973,0.035904795,-0.46637908,-0.4220135,0.022569237,-0.45841074,0.1173786,0.19557005,-0.2602454,0.06980577,-0.3982069,-0.05743703,0.87021214,-0.14402679,0.10434318,-0.5208797,-0.314509,-0.7245147,-0.36404827,0.40801096,-0.15752797,-0.0911892,-0.7974387,-0.21245171,-0.2736789,-0.04641627,-0.09458064,-0.19889078,0.21892175,0.18541679,0.51843876,-0.034609903,-0.59210116,0.13704775,-0.12221971,-0.1306702,-0.39776212,0.52896225,0.16064143,0.7689302,0.05167483,0.016035013,0.18181568,-0.4094609,0.1307974,-0.08232653,-0.25712693,-0.69957894,0.06921481,592 -949,0.34195268,-0.2947987,-0.48586664,-0.041148815,-0.14109696,-0.10442039,-0.2562921,0.3771586,0.09083266,-0.4778846,-0.09373093,-0.21867876,0.047056124,0.23503846,-0.32381642,-0.8218512,-0.0033171503,0.24851522,-0.55381316,0.6885018,-0.46266288,0.07040899,-0.10905191,0.4413753,0.26405478,0.063154206,0.35566476,-0.19998561,-0.117264144,-0.42558575,-0.09819874,0.40963352,-0.77863026,0.5137623,-0.038374435,-0.3617605,0.13053142,-0.49292564,-0.21564072,-0.92428917,0.19107994,-0.90899736,0.4880586,0.17856152,-0.31828862,0.2890123,0.29500133,0.3134955,-0.35333064,0.087763764,0.24989223,-0.23106895,-0.18054114,-0.35775587,-0.049332906,-0.37221554,-0.49051186,0.059838735,-0.3786526,-0.2918001,-0.36096126,0.36238965,-0.31962574,-0.09397802,-0.05801077,0.6022993,-0.48229378,0.14284922,0.057857513,-0.21807376,0.34479138,-0.7357815,-0.1693737,-0.23455077,0.27113172,-0.2435738,-0.27627704,0.15670377,0.35619807,0.24627422,0.10758469,-0.122508734,-0.15172498,-0.29533455,0.2705713,0.4477735,-0.31476277,-0.8041288,-0.13540526,-0.0983196,0.101439625,0.18344112,0.17925833,-0.6057446,-0.1396538,-0.06644673,-0.30916336,0.5426086,0.4050371,-0.25075415,-0.19366713,0.20611845,0.4877411,0.2025887,-0.098763116,-0.049620498,0.060543787,-0.7025794,-0.17547102,0.29395697,-0.19679219,0.44897336,-0.20361151,0.22816633,0.7956997,-0.3463752,-0.08011531,0.13973597,0.14530541,-0.06998314,-0.51160073,-0.40008324,0.37753898,-0.49605644,0.20436606,-0.25361225,1.1295815,0.033700358,-0.6947861,0.28038523,-0.6939728,0.022278348,-0.24794032,0.52400583,0.3757157,0.4119104,0.28285244,0.63117814,-0.453522,-0.07535105,0.1277838,-0.46431875,-0.1183868,-0.11863067,-0.23102418,-0.43536803,0.056517676,-0.17471696,0.1740993,-0.035369396,0.44657257,-0.45465127,-0.039781414,-0.06786748,0.7593016,-0.39644718,0.005883271,0.7009788,1.1167158,1.0058125,0.26378065,1.4578875,0.0786847,-0.1714862,-0.09718652,0.13282229,-0.8754248,0.36505082,0.60892946,-0.53910583,0.031227736,0.11266158,0.10620988,0.32087106,-0.4230005,0.063430205,-0.3558788,0.42132872,0.023733051,-0.32474893,-0.28646228,-0.302614,0.11055576,-0.011148212,-0.18340403,0.13266426,-0.09200042,0.33751562,0.21371995,1.2313911,-0.1574966,0.09861324,0.103455976,0.33575833,0.25418276,0.07697799,0.110017516,0.39834413,0.44373825,0.13746077,-0.6555881,0.18126571,-0.0678027,-0.45591927,-0.20455457,-0.20594145,-0.031961527,0.11882263,-0.30445123,-0.20740904,-0.22340254,0.023318319,0.58077925,-2.4865224,-0.05349557,-0.19352742,0.31480083,-0.19858931,-0.28831273,-0.011430424,-0.4361398,0.6056455,0.27981722,0.56504005,-0.63826543,0.34945595,0.4736902,-0.55517364,-0.29564303,-0.68307555,-0.2622578,-0.17817162,0.62330395,0.07612117,-0.072509795,-0.08313918,0.03127697,0.5783446,-0.024180325,0.17101549,0.33862665,0.43080768,0.033900872,0.57691616,0.19628538,0.6049605,-0.27555415,-0.28021702,0.39657623,-0.29746583,0.25265923,0.09533532,0.021803632,0.4898877,-0.44358614,-1.0041037,-0.90308344,-0.36007246,1.0223836,-0.26130056,-0.52008694,0.2597717,0.11825559,-0.17475374,0.08926088,0.22426198,-0.106592156,0.1365202,-0.850079,0.09867857,0.058479037,0.2977707,0.17084417,-0.1835079,-0.57617545,0.74584585,-0.04833901,0.43363798,0.5675342,0.16204196,-0.45929363,-0.5332082,-0.074847415,1.2381275,0.38687354,0.15236478,-0.14223541,-0.1680335,-0.29500458,-0.1680616,0.098797075,0.7498712,0.65467405,-0.06426839,0.1223816,0.3409557,-0.13315088,0.08393279,-0.21919008,-0.493106,-0.23706824,0.104197,0.59151644,0.54509926,-0.112125084,0.45869264,-0.013348273,0.43474483,-0.021593923,-0.3924835,0.5749427,1.5008923,-0.12599124,-0.35499552,0.7384583,0.5795794,-0.26513377,0.3823408,-0.44585907,-0.36597157,0.6805172,-0.18499504,-0.49237338,0.1009989,-0.36145985,0.09761446,-0.94501567,0.4961333,-0.6321145,-0.49736518,-0.7087311,-0.21066743,-3.2768297,0.3292436,-0.5085953,-0.13022093,-0.36581343,-0.11222708,0.2604763,-0.6400026,-0.41983184,0.1547434,0.17950493,0.491205,-0.17476149,0.2886674,-0.22908086,-0.012031403,-0.06215867,0.17366561,0.1563318,0.057117984,-0.035797067,-0.39383557,0.09376658,0.119267724,-0.2581675,0.14369994,-0.69721913,-0.56618756,0.05653913,-0.5830032,-0.4163047,0.68217385,-0.6307073,-0.14936961,-0.06422593,0.09386351,-0.2552829,0.35968247,0.114155345,0.25121364,-0.10488909,0.019253438,-0.11251447,-0.31841823,0.38287175,0.0509889,0.21628651,0.07413226,-0.2570882,0.12259882,0.4284261,0.53370357,0.08851201,0.81051195,0.46987346,-0.0877208,0.22173166,-0.31977057,-0.5055275,-0.70137143,-0.41225395,-0.06182164,-0.4172536,-0.37725127,-0.011257941,-0.2800257,-0.7576287,0.6774215,0.138416,-0.035455108,-0.07766697,0.33144796,0.30653262,-0.006518884,-0.1106792,-0.0746476,-0.14207548,-0.5741304,-0.10362626,-0.6719627,-0.41047096,0.019596238,0.8796144,-0.38810122,-0.021146584,0.11166153,-0.3049715,0.048492488,0.2242267,-0.23652361,0.34138444,0.61981946,0.034359727,-0.70491827,0.5383546,0.015927374,-0.24060498,-0.52291465,0.19944693,0.6601286,-0.6631699,0.6386142,0.4831437,-0.02585308,0.05002339,-0.36257744,-0.13731562,-0.009512869,-0.20595446,0.5082995,0.18307662,-0.6897209,0.6078602,0.44397992,-0.21484135,-0.8354339,0.57339925,-0.023955248,-0.33849746,0.083789565,0.50182885,0.13034703,-0.05997403,-0.15487793,0.4382145,-0.38361323,0.34939867,-0.06854194,-0.17991652,0.12054365,-0.1615846,-0.21580702,-0.8318519,0.09014417,-0.5724581,-0.40371168,0.26982677,0.06676652,-0.21476096,0.2682484,-0.073059134,0.3568648,-0.34452918,0.20282143,-0.091260746,-0.26911655,0.39639112,0.5713441,0.36978543,-0.42082623,0.6030722,0.050357398,-0.0083478745,-0.20230232,0.24946551,0.42056894,0.10571547,0.49341413,-0.15235755,-0.020486714,0.4973357,0.70743024,0.17952631,0.68885875,-0.09047565,0.07245522,0.3229636,0.1816544,0.45943537,0.13173513,-0.6185484,0.04981682,0.0005192431,0.16714849,0.6149929,0.13625924,0.37558565,0.007719633,-0.43306157,0.010978439,0.374827,0.24588604,-1.1359614,0.46229994,0.26815173,0.6546989,0.6602421,-0.1744668,0.26272488,0.82672656,-0.10078283,-0.045477737,0.3628732,0.09406969,-0.38896644,0.5798659,-0.6853718,0.23455815,-0.39882565,0.029377175,-0.0923467,-0.058457576,0.2492906,0.68931216,-0.17210838,0.019963438,-0.07069835,-0.411943,0.1629199,-0.5811968,0.09663237,-0.20428146,-0.31641394,0.64667225,0.7129224,0.29145855,-0.27749676,0.03085971,0.30021355,-0.19737712,0.21841884,0.08011806,-0.040689234,0.11793933,-0.9338219,-0.08195728,0.7334041,0.04335371,0.15766735,-0.13133274,-0.20215009,0.57156426,-0.22004405,0.017968893,-0.16751233,-0.6195007,0.1181706,-0.26592222,-0.37140167,0.3832876,-0.30844924,0.1098038,0.25526515,0.051824108,-0.20173043,0.25861147,0.2264068,0.7828762,0.10445388,-0.13805038,-0.46371374,0.0895307,0.107593305,-0.14848495,-0.10283401,-0.34885094,0.03657283,-0.7725907,0.44865322,-0.14769278,-0.2617816,0.0887289,-0.16780023,-0.16739446,0.5368023,-0.016521601,-0.1032867,0.15698323,-0.16991693,-0.065877944,-0.32547048,-0.15662585,0.2509774,0.3283704,0.2789133,-0.12927018,-0.19007164,-0.5001066,0.32936442,-0.010768817,0.5744615,0.29137346,0.10330898,-0.16040218,-0.21313332,0.11437438,0.586899,-0.17956656,-0.094350554,-0.023774229,-0.5137705,-0.17916268,-0.04505122,-0.23234501,0.18831004,-0.00506064,-0.42670926,0.83834857,-0.07934788,1.2573453,0.06375451,-0.50224626,0.11785464,0.6122128,-0.0713065,-0.089837104,-0.29149464,1.0215095,0.57159,-0.09268682,-0.03813291,-0.55311257,-0.18100652,0.0068538296,-0.18160215,-0.05760256,0.040898442,-0.5047462,-0.41275576,0.21016861,0.32570276,-0.049223613,-0.0697526,-0.13640219,0.3152678,0.029181266,0.44373325,-0.64429307,0.017812403,0.095933706,0.22402762,-0.00808796,0.10064952,-0.5045049,0.53196925,-0.5640428,0.22313985,-0.49943846,0.17808022,-0.29745463,-0.052238606,0.11394871,-0.209828,0.3216293,-0.37825367,-0.21119738,-0.104991384,0.48057356,0.17085093,0.19286384,0.82029307,-0.29860634,0.27801073,0.0802191,0.5008822,0.94610506,-0.42105684,-0.16485348,0.421393,-0.43113545,-0.4207199,0.33063138,-0.3740308,-0.07768735,0.04867855,-0.30871043,-0.6462176,0.11394734,0.22345716,0.2050047,-0.057448328,-0.8565439,-0.07217575,0.49028328,-0.32986638,-0.30990767,-0.29715535,0.29082167,0.63047004,-0.42214498,-0.48786032,-0.018931838,0.04658167,-0.09573905,-0.6093212,-0.17281131,-0.4522158,0.5825676,0.19705757,-0.27731955,-0.18025075,0.15127648,-0.44150445,0.060630307,0.12422239,-0.28967464,0.03861581,-0.067553475,-0.17398807,0.83029026,-0.32272398,0.07817704,-0.6833832,-0.5090774,-0.68053174,-0.26232615,0.68643516,0.08973924,0.22531031,-0.625327,-0.08185838,-0.03704637,-0.20684381,-0.012607228,-0.48964694,0.53136206,0.06696944,0.76583457,-0.04094256,-0.7511125,0.17024198,0.28003526,0.05946429,-0.8183903,0.47376382,-0.059910417,0.6982656,-0.0050583887,-0.0010179338,0.2158606,-0.51203215,-0.0041834223,-0.35695404,-0.37799683,-0.7442951,0.04197322,603 -950,0.41211843,-0.15607926,-0.47161123,-0.15288071,-0.24370454,-0.21236633,-0.15624626,0.38315123,0.24206653,0.018989794,0.2087587,-0.3220966,-0.05677543,0.5484154,0.069185235,-0.9492224,0.07847778,0.24001956,-0.6635856,0.4766679,-0.4974204,0.17537497,-0.24104346,0.494316,-0.037069622,0.26365715,0.2410995,-0.15572414,0.10856001,0.06678739,-0.016542912,0.25667545,-0.73144764,0.10301983,0.13445807,-0.2930175,0.13679016,-0.28551835,-0.42380124,-0.72379786,0.12667519,-0.4472547,0.4630374,0.27016118,-0.3091986,0.11488702,-0.09149185,0.5509625,-0.3815141,0.093845844,0.19127974,-0.06525883,0.15882252,-0.38575935,-0.19142021,-0.42202428,-0.55668604,0.023506897,-0.6404829,-0.35614678,-0.14850444,0.10563822,-0.3567301,-0.21303254,-0.045159645,0.33751705,-0.4129597,0.20267668,0.37700903,-0.12524381,0.19589706,-0.33526665,-0.06328095,-0.0984957,0.10021362,-0.010847948,-0.20985356,0.3405276,0.066612385,0.3786751,-0.09691932,-0.1612292,-0.25158525,-0.021490475,0.020928198,0.7172432,-0.14742164,-0.28069866,-0.14710371,-0.0119152395,-0.28482604,-0.048797227,0.07869377,-0.60781485,0.028699728,0.04376068,-0.21422544,0.41909882,0.43071157,-0.46451676,-0.43060982,0.35385817,0.56304127,0.17136294,-0.1343349,-0.028368868,0.21868826,-0.5665262,-0.20048738,0.14680097,-0.12996624,0.36152768,-0.03185881,0.27476886,0.78188366,-0.253621,-0.02909655,-0.09442463,0.060360238,0.19419529,-0.31316206,-0.18868436,0.26844406,-0.44961292,0.009111093,-0.14775842,0.8497963,0.23808195,-0.6703949,0.5212359,-0.6853018,0.16018362,-0.19928603,0.52495897,0.69155425,0.22863096,0.22076502,0.52480286,-0.3814921,0.21133427,-0.06460252,-0.41357535,0.33737087,-0.12742795,0.22277997,-0.577939,-0.19075552,-0.11038043,-0.13210101,0.050533775,0.2806052,-0.5860692,-0.11541615,0.18988802,0.9948359,-0.31360877,-0.03173336,0.2102177,1.0288895,0.9127651,-0.06325156,0.9786033,0.45663044,-0.21600766,0.49398187,-0.4886777,-0.72239316,0.15822837,0.27819628,-0.26652768,0.46768397,0.04500849,-0.09762621,0.46730116,-0.14525115,0.20696999,-0.21935548,0.37959635,0.1837534,0.061761748,-0.2993228,-0.2985693,-0.09144511,-0.12332382,-0.100009464,0.39779463,-0.34933242,0.051934242,-0.14560457,2.0971909,0.15236232,0.15082711,0.046943925,0.72193414,0.23834354,-0.13153139,-0.19845852,0.4590868,0.17161714,0.19327493,-0.587266,0.30651826,-0.28412697,-0.36619776,-0.11104704,-0.3001026,0.13507734,-0.1245035,-0.46212494,0.046584968,0.080184154,-0.040600196,0.5443663,-2.6405087,-0.23550302,0.09127493,0.4605035,-0.31519318,-0.24927591,-0.19490057,-0.32562244,0.1127112,0.4023176,0.4633784,-0.58948654,0.59367853,0.4181004,-0.34452638,-0.1250363,-0.54527915,-0.04132676,-0.07115263,0.32884547,-0.0807607,-0.0010813231,0.034074727,0.2529055,0.3142359,-0.17703713,0.0021413767,0.25895578,0.3832939,0.18496938,0.40221146,-0.031863216,0.30480188,-0.34730604,-0.22782354,0.26106352,-0.27752677,0.23587795,0.0067736264,0.037343454,0.36196962,-0.1834898,-1.0246395,-0.3975112,-0.0603905,0.9585394,-0.44143477,-0.1594919,0.25273064,-0.11631984,-0.033149734,-0.16064501,0.24897575,0.055787142,-0.10532215,-0.6991318,0.22206949,-0.071456656,0.31414372,0.21190895,-0.055005584,-0.13104989,0.48836955,-0.07909222,0.1548335,0.25516975,0.18099453,-0.1670631,-0.48848403,0.16344275,0.67982966,-0.003916437,0.1521956,-0.22831091,-0.22056888,-0.11235457,-0.009580385,0.053581342,0.31112537,0.7989569,-0.16896936,0.09021434,0.41454637,-0.25883907,-0.091600396,-0.3087216,-0.4752858,0.14925107,0.08934424,0.499802,0.83566207,-0.16658163,0.55161947,-0.022570247,0.027534338,-0.16540915,-0.3852768,0.36533478,0.9388511,-0.18283202,-0.05137551,0.35187635,0.42197388,-0.626545,0.42204884,-0.68464476,-0.16032459,0.60669893,-0.2455031,-0.2670151,0.15226658,-0.21867366,0.02900085,-0.7406652,0.5961458,-0.19269952,-0.13112353,-0.58123356,-0.17629443,-3.832935,0.33018288,-0.30744007,-0.20324421,0.11352716,0.28877485,0.119591855,-0.66453195,-0.21061206,0.04929262,0.050043866,0.5057121,-0.1292146,0.21972452,-0.37161398,-0.26366445,-0.21462299,0.2138537,0.08028477,0.2832984,0.17425181,-0.45390186,0.06586149,-0.13039072,-0.24600679,0.23653013,-0.79509854,-0.41837275,-0.18489288,-0.7832971,-0.27844775,0.72675097,-0.20284532,-0.022972269,-0.2917888,0.0035207977,-0.11781669,0.47262174,0.30567124,0.042665698,0.022331,0.0057637203,-0.24181728,-0.43854332,0.092718795,-0.0018284415,0.44180024,0.21843149,0.13611864,-0.011008512,0.7897995,0.4746946,0.18895578,0.53656393,0.520317,-0.22251816,0.28527912,-0.4125515,0.030981584,-0.373042,-0.47162792,-0.19033824,-0.25913194,-0.49975178,-0.010720941,-0.2814512,-0.5016641,0.65247905,-0.1697414,0.06478394,0.17939347,0.19571644,0.38032663,-0.17719902,-0.109787315,-0.0666719,-0.124187894,-0.49123278,-0.18297166,-0.6313057,-0.5567451,0.7497997,0.8484028,-0.4113003,-0.098524526,-0.03357717,-0.16802905,-0.14677711,0.077584125,0.065753266,0.25432837,0.18358222,-0.12664284,-0.64179647,0.2865811,-0.12492239,-0.050536633,-0.72986245,0.07703497,0.77904683,-0.7267357,0.6361156,0.026550086,0.17419355,0.23838297,-0.41319713,-0.33017722,0.34341872,-0.123157784,0.16272664,-0.14693294,-0.7797477,0.26565886,0.4396958,-0.6180952,-0.6457425,0.4292388,-0.053995956,-0.45055148,-0.09302478,0.23881713,0.17348637,0.03112811,-0.3907008,0.29905903,-0.6585723,0.056105614,0.21634273,-0.10531329,0.4110758,-0.003135226,0.029943444,-0.5432979,0.06584911,-0.35361984,-0.5134382,0.3006178,0.13064776,0.081253305,0.307886,0.12920162,0.24232188,-0.16117775,-0.013253703,0.079384625,-0.18513441,0.47521695,0.437981,0.4149524,-0.5490939,0.53347117,-0.022340585,0.089913905,0.17687148,-0.06742913,0.38491222,0.03494534,0.36975124,0.14322966,-0.20216517,0.22802506,0.84237045,0.25896636,0.6563828,0.098151416,-0.019935422,0.32685068,0.054256137,-0.019305099,0.13950667,-0.27194393,0.014825425,0.15764295,0.3359829,0.59179735,0.16345789,0.30274776,-0.11502547,-0.49135092,0.12023151,0.38244885,0.07989465,-1.0421044,0.18507509,0.36714217,0.5569339,0.5323475,0.20289169,0.08581311,0.6168079,-0.15637921,0.13760221,0.14674239,-0.25243026,-0.668003,0.6629603,-0.62498534,0.499907,-0.18875322,-0.0091259265,0.029699434,0.049490735,0.31514466,0.45077142,-0.159356,-0.13699475,-0.105403535,-0.41631863,-0.19039312,-0.3869875,0.4465388,-0.5632672,-0.3306719,0.39052287,0.623554,0.10960722,-0.19704928,-0.033340253,0.038297597,-0.13675112,0.2502966,-0.09500055,-0.13447298,0.22024494,-0.79075056,-0.27627307,0.67970973,-0.39422658,0.053547528,-0.176119,0.107576415,0.34887332,-0.42837515,-0.20226689,0.03683659,-0.65732986,0.24071763,-0.12822194,-0.36521712,0.6320546,0.10047775,0.19937585,0.097433425,0.072473936,-0.36025518,0.6450077,0.051084276,0.7730898,-0.0204059,-0.10287185,-0.48067915,0.1592684,0.0041057114,-0.1060826,-0.06151452,-0.47379658,-0.032668218,-0.49797535,0.33106402,0.029839927,-0.2909259,-0.2126767,-0.14928247,-0.020458883,0.70302963,-0.09984701,-0.14510436,-0.34077236,-0.38696614,-0.2938727,-0.052649964,-0.05779113,0.2836084,0.13385591,-0.24937734,-0.042572424,-0.23321702,-0.12445646,0.6215126,-0.0067796707,0.37130177,0.3402684,0.45112723,-0.20764971,-0.22200957,0.11484866,0.43361044,-0.015399185,-0.044126164,-0.2777235,-0.118239425,-0.36743668,0.13125,-0.32444084,0.28742248,0.14924483,-0.5998743,0.8931628,0.09041163,1.3917384,0.017509267,-0.18882689,0.27958018,0.34924123,0.2590576,0.19048953,-0.59615195,0.93777794,0.6917996,-0.11668228,-0.3733261,-0.24953395,-0.6062748,0.2485753,-0.37774116,-0.16293867,0.11505723,-0.57266086,-0.16860789,0.2263956,0.27821,0.15025215,-0.14164992,0.112047486,0.13258623,0.14352816,0.14866069,-0.39497498,-0.09819169,0.15375605,0.50816053,0.10616877,0.273347,-0.38258684,0.44028953,-0.39882344,0.3509324,-0.51025325,0.086726636,-0.1193906,-0.21307902,0.19975573,0.21249677,0.38160193,-0.24638166,-0.25453663,-0.122038245,0.4861003,0.3143936,0.2408548,0.7690369,-0.19220167,-0.040521294,-0.0698719,0.53206515,0.8827433,-0.36192867,-0.36577204,0.4891817,-0.20395827,-0.9361385,0.33539692,-0.3229569,-0.07187354,-0.16761364,-0.33302638,-0.55241627,0.20260796,0.027081447,-0.06037918,0.011012581,-0.62275547,-0.1986175,0.1959558,-0.37926236,-0.24510002,-0.4085827,0.22734575,0.9311423,-0.30710307,-0.30027273,0.086574346,0.3218542,-0.11736769,-0.46780795,-0.1377504,-0.57279855,0.17690995,0.2729106,-0.23583741,-0.05965869,0.1129284,-0.41836455,0.09922966,0.28152773,-0.38230804,0.19493446,-0.011921059,-0.008444553,0.973242,-0.18076023,-0.06710827,-0.72239685,-0.5378361,-1.0075186,-0.43589133,0.7345921,0.13220674,-0.09994722,-0.5875983,0.04829488,0.15829249,-0.39644116,-0.11865913,-0.6313482,0.30601263,-0.018823607,0.20542021,-0.018559432,-0.93303895,-0.018370371,0.31290185,-0.30401677,-0.8781653,0.41258004,-0.3451286,1.077148,-0.0991547,0.058368444,0.23174238,-0.15583509,-0.06957403,-0.4940072,-0.4650258,-0.7168165,0.0349686,610 -951,0.62303275,-0.09682106,-0.6748648,-0.18741965,-0.68758255,0.20698069,-0.31987575,0.022289569,0.42176884,-0.52026194,-0.049931634,-0.3248845,-0.083246395,0.2437027,-0.3073003,-0.79609036,-0.012565266,0.32229063,-0.53228134,0.36913717,-0.38672316,0.385596,0.11618051,0.30734298,-0.23960747,0.15819573,0.12924843,-0.09698958,-0.0819965,-0.2519319,-0.0026193857,-0.037550177,-1.0249677,0.55861276,-0.32456812,-0.5301786,0.079664186,-0.53940135,-0.20059347,-0.5898441,0.43684253,-0.95240957,0.806451,-0.15548567,-0.10953713,-0.0906449,0.22540312,0.36526525,-0.13915218,0.2625388,0.21963467,-0.3649657,-0.11198339,-0.22772351,-0.48413637,-0.49036142,-0.6326031,0.046655167,-0.5350293,0.021332627,-0.24583411,0.3602868,-0.14210664,0.2729379,-0.24505797,0.05157907,-0.34878498,0.2720822,0.27982628,-0.125865,0.14799185,-0.42728502,-0.15655659,-0.115011476,0.28147027,-0.24441797,-0.2625059,0.30661762,0.2062313,0.7039758,0.21914119,-0.2718136,-0.32256722,-0.065576814,0.07226375,0.61265665,-0.11848171,-0.038894597,-0.46372202,-0.09983028,0.39705744,0.25673357,0.051421262,-0.3112671,0.23616624,-0.29614124,-0.28524217,0.6053869,0.5413983,-0.3935667,-0.18924569,0.42894182,0.46871567,-0.24337064,0.050056275,0.27825996,0.17288719,-0.5432901,-0.41873637,0.21055526,-0.14857484,0.44559687,-0.21415782,0.21099156,0.6562113,-0.2506084,-0.15549555,0.04442646,-0.09265859,-0.11220364,-0.21036862,-0.10863343,0.22882424,-0.6079493,-0.06835061,-0.25202802,0.88017267,0.08237037,-0.8172052,0.4575427,-0.6936431,0.19794728,0.008691118,0.49616614,0.63966006,0.64916176,0.13142481,0.94688135,-0.5855972,0.25540593,-0.1351828,-0.21376604,-0.013387192,-0.25565568,0.2281671,-0.38107443,0.23778263,-0.058442306,-0.020178087,0.0702312,0.63897246,-0.38007405,-0.19100012,-0.030284416,0.91900593,-0.48574308,-0.057901397,1.0378742,1.0872353,1.087636,0.09018639,1.6263305,0.32147315,-0.10796702,-0.2874466,-0.11163133,-0.84361684,0.20922647,0.2490666,-0.036572933,0.19690499,0.37377998,0.22252807,0.29510224,-0.2809628,-0.22255659,-0.07370193,0.31539658,-0.09694266,-0.08017797,-0.34974068,-0.27099216,0.11305303,0.047293246,0.06522903,0.420333,0.00023800405,0.57825,0.2301042,1.1567222,0.1029411,0.24540626,-0.04133348,0.24791361,0.15648274,0.028120099,-0.0757914,0.034222987,0.07500188,-0.0287448,-0.4758395,-0.091948204,-0.2560717,-0.23032285,-0.2649353,-0.03525936,-0.29097068,-0.28900412,-0.21014076,-0.4140772,-0.15505256,-0.35071155,0.6230802,-1.9379426,-0.40162727,-0.16278824,0.49778593,-0.20151268,-0.3646736,-0.23593432,-0.57017666,0.33402753,0.31192783,0.39959982,-0.4397918,0.66996664,0.41811106,-0.54085755,-0.05225648,-0.7084009,0.14733817,-0.093222335,0.15641531,-0.17390062,-0.36641037,-0.47947928,0.08150583,0.46917355,0.11001558,0.18825011,0.3299223,0.69073206,0.07871991,0.60165465,0.07079661,0.5361654,-0.63626146,-0.06575579,0.33055773,-0.5988613,0.275955,-0.038835015,0.030335952,0.58295745,-0.8858698,-0.87134206,-0.8864623,-0.44582283,0.83543664,-0.20780152,-0.41018727,0.23395209,-0.3344669,-0.39660132,0.021453792,0.32800958,0.039297745,0.11143887,-0.78018373,-0.15961064,-0.10506386,0.37182143,0.015784781,0.02521174,-0.4440641,0.6876663,-0.37124777,0.29200536,0.44687453,0.21484518,-0.21008658,-0.27375954,0.16243944,1.0427713,0.37526482,0.13763165,-0.28605893,-0.17434977,-0.22879194,-0.2190857,0.019041734,0.53618187,0.48700497,-0.17980823,-0.060229477,0.5180297,-0.17668293,0.13160156,-0.028846664,-0.39047515,-0.25560972,0.03521618,0.62400776,0.6899268,-0.056650337,0.24333547,-0.27986884,0.20749468,-0.31701833,-0.56790155,0.4199416,0.9789844,-0.0798915,-0.29417068,0.7722673,0.5395502,-0.33185577,0.5574708,-0.57525307,-0.49251243,0.21152438,0.09108124,-0.5662235,-0.21346043,-0.38026324,0.047088623,-0.94275343,0.23914424,-0.0615447,-0.7258012,-0.39106515,-0.34750798,-2.6579862,0.22816378,-0.14355473,0.0908508,-0.013092919,-0.12019786,0.11439329,-0.35720977,-0.8408914,0.1500595,-0.07191867,0.6021041,-0.124992564,0.4816247,-0.12628268,-0.16504063,-0.38139457,0.30413783,0.41233644,0.16778131,-0.104303904,-0.46465427,0.06260026,-0.28901494,-0.2738694,-0.046590425,-0.8497883,-0.30827478,-0.08921205,-0.53562635,-0.30976012,0.63504255,-0.42739585,-0.09840462,-0.51711965,0.0135711795,-0.31735396,0.31986752,-0.016713731,0.23308396,0.0816212,-0.23449282,-0.32909596,-0.27876306,0.384356,0.035189133,0.24267453,0.4213339,-0.45537966,0.052053176,0.3606967,0.72378784,0.14741379,0.9547877,-0.035507977,-0.16983381,0.31682163,-0.11650515,-0.4336365,-0.8148882,-0.18123052,-0.2774043,-0.5252831,-0.5049131,0.11576632,-0.5186594,-0.77297115,0.50004315,0.23184635,0.007185134,0.10512522,0.3865594,0.31889948,-0.36178267,0.07047914,-0.031358052,-0.2643247,-0.52731836,-0.59929186,-0.43079415,-0.517617,0.24174304,1.5485584,0.080979586,0.1279646,0.3318888,-0.16993882,0.145832,0.3133306,0.16067977,-0.0033080145,0.64977384,-0.02813756,-0.6001748,0.317755,-0.049467,-0.04052935,-0.590523,0.00022051009,0.72085303,-0.7550119,0.6573764,0.42094535,0.25849038,0.17520462,-0.50389713,-0.24072188,-0.24158353,-0.31942585,0.42779347,0.34775993,-0.747487,0.40852186,0.19245921,-0.30666742,-0.980241,0.35180032,-0.047622204,-0.14751373,-0.046436667,0.388515,0.5211142,-0.026583482,-0.12911092,0.21956429,-0.48311746,0.3549182,0.07162029,-0.039092127,0.25849745,-0.27279148,-0.39141515,-0.81100583,-0.25134948,-0.365667,-0.25046554,0.052831646,-0.10636438,-0.19153504,0.2201447,0.3838704,0.42606446,-0.39793682,0.1821084,-0.20561911,-0.3305963,0.18631147,0.39394206,0.55461085,-0.5201947,0.7225784,-0.07195567,-0.013109126,-0.289658,0.11150868,0.46161687,0.02986312,0.24975194,0.29641965,-0.116556734,0.10307003,0.7277775,0.23052764,0.14439608,0.19306192,-0.07804294,0.5967996,0.33093974,0.080866486,-0.14876038,-0.4623799,0.09353601,-0.040782224,0.042976834,0.22833146,0.019989235,0.43521413,-0.24917199,-0.09705966,-0.05269189,0.09795558,-0.25276384,-1.3482779,-0.05322807,0.061856385,0.75667214,0.53042626,-0.0075522335,0.19306701,0.6065066,-0.353984,0.03955946,0.4246443,-0.015384549,-0.08578081,0.522248,-0.51127124,0.40493917,-0.17577939,-0.009316363,0.3061233,0.35054192,0.4191839,0.92538947,-0.02034775,-0.030259132,-0.18758091,-0.17688729,-0.07886882,-0.16178957,0.006121023,-0.5069352,-0.1561126,0.9789406,0.349856,0.516247,-0.3660001,-0.13620356,-0.097044066,-0.11174268,0.20415574,0.12365057,-0.22537456,-0.17153439,-0.60191184,-0.020895194,0.69769067,0.23680286,0.21178623,0.2816941,-0.39324218,0.39159086,-0.13541295,-0.09602061,-0.04745426,-0.86300904,-0.1397184,-0.28609225,-0.2556691,0.24448375,0.04044758,0.123145774,0.1376861,0.12690014,-0.24123357,0.24327469,0.20771743,0.7848502,0.27173948,-0.117107674,-0.17012134,0.15555859,0.2627692,-0.37165645,0.28378043,-0.08685305,0.18037924,-0.6689451,0.5652445,-0.04903784,-0.31122738,0.22847666,0.040396083,0.1958146,0.5309853,-0.08743613,-0.067362554,0.4723725,0.18998146,-0.3365803,-0.15608735,-0.43723947,0.15553078,0.012894403,0.060007952,0.02230085,-0.11387629,0.046300076,0.45268852,0.06544334,0.100053474,0.09287975,0.18855995,-0.48232162,0.10058805,-0.25284252,0.46215114,-0.2157004,-0.13333903,-0.017993147,-0.3717563,-0.19513255,0.5878597,-0.022513991,0.12781821,-0.09722252,-0.4822521,1.0042168,0.1808675,1.1865374,0.031489313,-0.25144494,0.1639268,0.59904855,-0.09376259,-0.03896071,-0.29052445,1.2290932,0.6713597,-0.33665183,-0.22146125,-0.4263209,-0.24896465,-0.01232416,-0.3326188,-0.14101273,-0.12473857,-0.7232513,-0.14581423,0.22265099,0.31231245,0.003378142,-0.15030383,0.35225594,0.22323538,-0.020655058,0.2852043,-0.46171987,-0.19429404,0.39060405,0.422029,0.12650794,0.03932585,-0.25663927,0.27183774,-0.7740585,0.13593245,-0.31327876,0.064556785,-0.13631944,-0.22244835,0.08893159,-0.0086019635,0.26185295,-0.28418952,-0.25232324,-0.2941461,0.5043896,0.29687133,0.34163076,0.94663614,-0.24916857,-0.22995047,-0.046572104,0.48287717,1.0888662,-0.10521715,-0.0019220873,0.26288605,-0.4287196,-0.43853033,0.35694665,-0.5039405,-0.09593911,-0.048942782,-0.37813455,-0.43760478,0.07328102,0.15140277,0.10782747,0.12947468,-0.6553789,0.1259439,0.3965975,-0.20672904,-0.3036988,-0.08741481,0.29911342,0.9039314,-0.045607746,-0.35741994,0.084684275,0.3839402,-0.30474675,-0.6154559,-0.24271232,-0.35283887,0.4307741,0.1281357,-0.32314074,-0.032337207,0.16295949,-0.42995661,-0.09043319,0.22153383,-0.28434554,0.099684484,-0.54196215,-0.08022558,0.8390761,0.040717147,0.35171148,-0.6820074,-0.5956231,-1.076934,-0.09483798,-0.022828378,0.46485993,0.038467597,-0.4219786,-0.27352372,-0.21136309,-0.35348472,0.20908426,-0.7203541,0.33671507,0.19336958,0.47475365,-0.14962812,-1.0267104,0.1258671,0.27574918,-0.25429308,-0.42602423,0.42027786,-0.104270004,0.7833374,0.15888628,-0.09485196,0.13884313,-0.91141695,0.52870125,-0.18622403,-0.05649754,-0.71649224,-0.12065697,613 -952,0.2873601,-0.1408609,-0.3069825,-0.14160666,-0.20287031,-0.08528983,-0.08935505,0.72962165,0.29886281,-0.34750262,-0.2659151,-0.2331478,0.0039674803,0.49543822,-0.1902142,-0.25080442,-0.102775835,0.13257805,-0.21411176,0.79050237,-0.21499918,0.20342827,-0.027729945,0.39984962,0.532929,0.42439947,0.18817057,0.10089989,-0.06996056,0.029210264,-0.13769256,0.04450111,-0.34823057,0.16250673,-0.4480301,-0.3304982,0.050363347,-0.55227447,-0.61360973,-0.7828664,0.4685666,-0.89569384,0.4341407,-0.14682129,-0.1371879,-0.30841085,0.22992897,0.24013424,0.01071057,-0.20039867,0.017371917,-0.037797853,0.16134916,-0.10936176,-0.32126057,-0.6509621,-0.48001367,-0.09575625,-0.39459828,-0.22659835,-0.5244626,0.20066422,-0.37570927,-0.028879523,0.05273801,0.1332079,-0.5234785,-0.10015178,0.10444515,-0.3866811,0.2231639,-0.6853688,-0.31554928,-0.2972634,0.20870958,0.010257224,-0.17131065,0.6668814,0.17162585,0.30492422,-0.0018062429,-0.079091914,-0.36499804,-0.071735434,-0.06115581,0.6224501,0.011114321,-0.51863915,-0.14171176,0.10029678,0.70796394,0.44496682,0.20005278,-0.23737274,-0.05894393,-0.11708789,-0.18355408,0.42988777,0.77634674,-0.031259645,-0.27016932,0.22714776,0.34410658,0.5280046,-0.22041568,0.099238135,-0.024991881,-0.39268425,-0.19726147,-0.011529776,-0.13171418,0.814645,-0.042644575,0.27387974,0.8094862,-0.28988418,0.33367717,-0.09640882,0.24366838,-0.43916738,-0.33547533,-0.20614024,0.14201745,-0.3189336,0.2252541,-0.20823497,0.9336437,0.29186586,-0.6008745,0.41152093,-0.43661025,0.13278984,-0.03869475,0.50904745,0.60891765,0.3884842,0.3980795,0.6579024,-0.15486568,0.10054824,0.03682072,-0.36790276,0.09028812,-0.29641482,-0.14108132,-0.4377366,0.24060637,0.15180297,-0.08462424,-0.11906567,0.62887937,-0.55527556,-0.2514616,0.3048845,0.8374529,-0.22586727,0.14895053,0.72220635,1.0093122,0.91310483,0.02803534,1.2751678,0.16297184,-0.13654988,0.3713788,-0.057713076,-0.8471239,0.19897223,0.46136302,-0.45623586,0.45534983,0.1308342,-0.16338865,-0.012032401,-0.57882744,0.0057798843,-0.20745994,0.2994027,0.20684329,-0.14406869,-0.44546968,-0.23092064,-0.12566555,0.023864383,0.024576245,0.18534218,-0.3743424,0.44432983,0.01325441,1.5843303,-0.14198214,-0.02007851,0.1206176,1.2260039,0.27033356,-0.10940959,0.08848821,0.45477664,0.3479385,0.094062634,-0.50923103,0.036354087,-0.39845932,-0.44437382,-0.10524119,-0.43333843,-0.21260992,0.07429495,-0.20465612,-0.26661393,-0.1240371,-0.12828213,0.49841318,-2.856613,-0.06634158,-0.15836544,0.2944601,-0.3258341,-0.18049498,-0.041401125,-0.42967966,0.38928902,0.3598171,0.5977146,-0.73624134,-0.09974041,0.93630624,-0.61392194,-0.0026648857,-0.5312267,0.18867727,-0.09263741,0.5389687,-0.094123594,-0.10573903,0.021656418,-0.10022922,0.5182929,0.46157533,0.08505091,0.4106413,0.46726352,-0.060891215,0.4101305,-0.21300925,0.43141362,-0.36178273,-0.09229217,0.43245447,-0.39889735,0.35687244,-0.24904169,0.09116502,0.73764384,-0.4144216,-0.74812967,-0.4009545,-0.20057373,0.9188126,-0.40579054,-0.6045398,0.43833274,-0.38261816,-0.082407504,-0.17209773,0.45710737,-0.16437365,0.11017966,-0.50756514,-0.15905043,-0.1746568,0.20242314,0.04804291,-0.12175701,-0.16535799,0.64460284,0.043054506,0.5792153,0.16257627,0.14225739,-0.37116477,-0.55181813,0.09806171,0.32004923,0.38478547,0.12047806,-0.2589575,-0.08249801,-0.33504486,-0.28003827,0.22853123,0.61006635,0.8080531,-0.22549668,0.08910651,0.39324558,0.07466921,-0.021718329,-0.03308705,-0.34431022,-0.28605214,0.03605385,0.3996485,0.8426397,-0.4447293,0.2164278,-0.13986069,0.113030955,-0.11418869,-0.45496872,0.6517581,0.6909451,-0.19685966,-0.22608374,0.53308594,0.49135646,-0.5054189,0.41715762,-0.9451153,-0.02799744,0.60334784,-0.07619888,-0.62144667,-0.027419781,-0.39245474,-0.07012706,-0.8213411,0.17701934,-0.23500104,-0.41308367,-0.5535934,-0.042340096,-2.4692075,0.026404338,-0.17636786,-0.4704119,-0.10579521,-0.2558451,0.19813281,-0.5807228,-0.6448774,0.2468471,0.0715775,0.5999607,0.071431704,0.0006832047,-0.38280156,-0.29914075,-0.7262528,0.082897775,-0.009650501,0.5359204,-0.24602388,-0.5375152,-0.20176387,-0.14812969,-0.57690275,0.19706169,-0.35636446,-0.24439912,-0.43139312,-0.53530234,-0.18606974,0.57403797,-0.30596554,-0.0070040524,-0.12647058,-0.057211816,-0.22071005,0.24672645,0.15358807,0.023092605,0.16731882,-0.08722022,0.25865352,-0.23869367,0.54627174,0.051358853,0.44741067,0.18611836,-0.23264508,0.18773875,0.40419438,0.5709701,-0.39860037,1.0929834,0.2682541,-0.13876271,0.31012484,-0.19888921,-0.21510601,-0.64824575,-0.3271054,0.20194039,-0.39225549,-0.47727737,-0.09678292,-0.38905957,-0.7957744,0.6593294,0.14333372,0.66397816,0.23070721,0.0067715268,0.5059564,-0.18372835,0.0024227398,-0.07313165,-0.14513494,-0.7712834,-0.34826222,-0.7437746,-0.56812686,0.29998806,0.9637354,-0.22301164,-0.21241993,0.1419461,-0.55551267,-0.08064801,0.026343627,-0.08992881,0.09235596,0.30443364,-0.08225718,-0.6545953,0.35728145,0.19172114,-0.08500506,-0.43686888,0.16163589,0.33563405,-0.7373158,0.4649353,0.09905126,-0.1313548,-0.3904979,-0.61829126,-0.35944474,-0.46392286,-0.017553512,0.30875468,0.18252279,-0.77976185,0.24675404,0.032509957,-0.45714033,-0.6388307,0.5745957,-0.19849151,0.057035387,-0.35404694,0.30487064,0.19586273,-0.039476003,-0.2719844,0.27813718,-0.39455518,0.14407097,0.19731522,0.13893504,0.7049561,-0.16943434,-0.13491112,-0.7437559,0.34955224,-0.35023916,-0.22162919,0.5452756,-0.019289399,-0.021599818,-0.04896827,0.3126774,0.2986428,-0.27456763,0.2036121,0.0645227,-0.23690276,0.4849022,0.322305,0.7418382,-0.5417688,0.63942426,0.12847763,-0.24401383,0.14388198,0.037467077,0.25953338,0.18565351,0.37542096,0.12745942,-0.4450988,0.22693014,1.0577896,0.2909265,0.40615883,0.12066851,-0.1240372,0.369032,0.20741285,0.45498773,0.06157792,-0.72988987,-0.121454425,-0.4696208,0.14181441,0.58280987,0.17741688,0.31661174,-0.14528371,-0.18335976,0.042594627,0.18929738,0.10716259,-1.2468379,0.026337832,0.36640748,0.94991916,0.34259373,-0.060380016,-0.14423813,0.73089236,0.045231253,0.2675991,0.43627116,0.11425512,-0.55397296,0.5772986,-0.67825115,0.75585705,0.1244277,-0.16531624,0.27573484,0.2724497,0.5447195,0.60583144,-0.22566213,-0.17750506,0.09423217,-0.30854127,0.1700828,-0.47014377,-0.06317654,-0.4758241,-0.39331102,0.53563,0.5751726,0.15333068,-0.05758356,-0.042688467,-0.12777424,-0.08258942,0.36522475,-0.055257224,0.05289055,-0.24332474,-0.49724683,-0.326744,0.5400951,0.058514953,0.17567855,-0.17570291,-0.25348836,0.21414636,-0.2015088,0.081363134,-0.0012386766,-0.85087943,0.060317505,-0.027302714,-0.622282,0.4304389,0.14448684,0.224627,0.20353031,-0.0030911157,-0.109300345,0.45866802,0.010859045,1.0258149,-0.26661614,-0.11652774,-0.7327061,0.054402124,0.32833257,-0.3401601,0.34236178,-0.24050926,-0.30666038,-0.42155764,0.49645138,0.002613161,-0.20237398,-0.0044422257,-0.31797227,0.00048266622,0.6855492,0.21063891,-0.08474182,-0.25055903,-0.060819816,-0.529956,-0.35232735,-0.2969269,0.29131672,0.26404873,-0.10618667,-0.215836,-0.19738291,0.10749783,0.19953698,-0.0681421,0.26215717,0.17827262,0.13418284,-0.20505346,-0.0095768785,0.28653374,0.63747495,0.21797763,0.068834856,-0.010963678,-0.49293214,-0.5042959,-0.16848275,-0.12329087,0.3820565,0.33109638,-0.22214235,0.84999156,-0.07674259,1.1705652,0.14832437,-0.48093545,0.08790508,0.6969022,-0.023006849,-0.23470268,-0.51984364,0.98231786,0.3974804,-0.02005679,-0.1297454,-0.2124014,-0.0031268029,0.31933117,-0.2500241,-0.027561964,-0.022385152,-0.66226745,-0.096850894,0.21251492,0.22355609,0.24710417,-0.14004292,-0.2159103,0.22444247,0.09693576,0.4526138,-0.3413061,-0.51155335,0.37569588,0.3300358,0.103230715,0.16317323,-0.42814496,0.3720565,-0.60394937,0.2497922,-0.51202905,0.26423705,-0.50095487,-0.5322154,0.053603128,-0.11977176,0.72189945,-0.35537928,-0.5273836,-0.26307845,0.46038535,-0.03485359,0.32179493,0.4562648,-0.3099932,0.02610162,-0.21478514,0.47536123,1.0120238,-0.16644149,-0.2812778,0.3156745,-0.50473195,-0.71010023,0.602751,-0.7394842,0.46664,0.055102207,-0.14092268,-0.5938318,0.064694755,0.3368105,-0.05154054,0.041145016,-0.7072317,-0.52240926,0.030093215,-0.12972973,-0.0895422,-0.40218276,0.23851041,0.6239655,-0.30882323,-0.56611764,0.24194717,0.24805403,-0.040776394,-0.51501876,-0.07938399,-0.10336531,0.39203683,0.01706105,-0.45173776,-0.20922305,0.017999513,-0.45902774,0.32370755,-0.07920195,-0.54169476,0.11766627,-0.29471585,-0.00921141,1.2280415,-0.44836056,0.01121921,-0.52664566,-0.51258445,-0.90186113,-0.36965227,0.461603,0.24555133,0.061645508,-0.5797679,0.15405568,-0.3078316,0.17646275,-0.18985558,-0.550074,0.4614671,0.15898222,0.5268967,-0.18517591,-0.8358095,0.21332671,0.050378118,-0.07778083,-0.70789975,0.7051523,-0.23803343,1.1350205,0.13559394,-0.04332076,0.18847162,-0.4776901,0.040217493,-0.2606386,-0.25890788,-0.33944738,0.306193,618 -953,0.44553918,-0.2590806,-0.5135868,-0.062584065,-0.48091412,0.035316512,0.00899025,0.40238282,0.2347276,-0.29008693,-0.10655098,0.004047936,-0.10395589,0.29267323,-0.196265,-0.7688507,-0.14438777,0.2674494,-0.5992273,0.76594263,-0.16347009,0.26290333,0.0888797,0.42107075,0.22320575,0.21356039,0.026049966,0.01963461,-0.2164329,-0.0725698,-0.196281,0.0119069815,-0.81174606,0.47136948,-0.24035262,-0.37809497,0.01735723,-0.32480124,-0.34966576,-0.80496335,0.3638916,-0.6332653,0.70042634,-0.17889825,-0.4873772,0.073353246,0.10521958,0.31398186,-0.33035257,0.0030587912,0.06953145,-0.31049317,0.0018467036,-0.24079928,-0.29888085,-0.2832773,-0.561422,-0.12627842,-0.47830355,-0.050182126,-0.14037357,0.12847124,-0.4131649,-0.13631961,-0.23621134,0.5865707,-0.53244394,0.26221803,0.37020463,0.059305772,0.3926407,-0.6845852,-0.19949402,-0.20208521,0.01482988,-0.016290653,-0.25734362,0.49795142,0.1480949,0.43851125,0.09221175,-0.27799648,0.077668816,-0.14132999,0.17606604,0.35896707,-0.14061953,-0.16369237,-0.26713303,-0.12471447,0.43940875,0.41008523,0.051594928,-0.38724458,0.1724855,-0.15275677,0.03130499,0.25657132,0.39457753,-0.050071184,-0.20932601,0.18489467,0.39468324,0.21115676,-0.18539563,0.11937897,0.03838311,-0.34686887,-0.35895362,0.17535053,-0.28847378,0.5870693,-0.08877331,0.22753763,0.6752516,-0.27240133,-0.017507136,0.051311776,0.30920464,-0.105904646,-0.42857906,-0.2617946,0.21657468,-0.80345154,0.1977199,-0.36657837,0.61894894,0.20455338,-0.5558121,0.11963554,-0.6730532,0.19523558,-0.07965341,0.62717164,0.78073883,0.5887589,0.16960667,0.93696016,-0.5466244,0.06913432,0.2278728,-0.21872172,-0.04985274,-0.33257142,0.16296427,-0.55456656,-0.13483901,-0.11303821,-0.058674373,-0.21152896,0.054880455,-0.4887114,-0.24348569,-0.036976334,0.705783,-0.3690811,0.15633723,1.1072701,1.0963553,1.296248,-0.021690173,1.4633248,0.29140332,-0.28510788,-0.089304306,0.063390546,-0.66617626,0.1227339,0.43885425,-0.7645328,0.40629146,-0.0045845914,0.10246341,0.30624482,-0.41751766,0.16558744,-0.15348376,0.34147638,-0.1490104,-0.2122313,-0.5947773,-0.2698431,0.13156797,0.1967381,-0.2802473,0.2823716,-0.17892548,0.73207796,0.19561,1.15578,0.02422126,0.005995913,-0.089339264,0.29980582,0.2755346,-0.18158211,-0.04910244,0.1758093,0.45835292,0.17491645,-0.5285878,-0.0562816,-0.32534474,-0.38888758,-0.24761114,-0.2670694,0.15246853,-0.40966615,-0.29662234,-0.36019808,-0.123656705,-0.27608514,0.40349463,-2.3588986,-0.19539313,-0.26718462,0.13587326,-0.14917049,-0.14429758,-0.10300849,-0.43545446,0.35903594,0.33609724,0.34861004,-0.75625426,0.26777253,0.56196856,-0.589617,0.09483803,-0.5354293,-0.29367045,0.09099546,0.33281717,-0.055573657,-0.06618099,-0.0652241,0.07765773,0.67298913,-0.10095064,0.073515795,0.1831151,0.3036391,-0.2470971,0.3144358,0.13175727,0.43967497,-0.40419263,-0.079000235,0.35869426,-0.33252385,0.21141046,-0.050536264,0.13842212,0.6706016,-0.6275292,-0.50558627,-0.63536143,-0.4442644,1.1473597,-0.34870273,-0.52464575,0.22261772,-0.46781436,-0.17687486,-0.040833194,0.34078443,-0.11713336,0.061661743,-0.6587646,-0.05306523,0.0128698535,0.19773509,-0.038231436,-0.002478227,-0.27782068,0.6548384,-0.050248895,0.40894833,0.62807906,0.26082203,-0.265028,-0.48652717,0.030023368,0.8604641,0.6985193,0.07945902,-0.17469898,0.0063209045,-0.24701619,-0.24334575,0.21019417,0.48212606,0.8609899,-0.26301578,0.1514648,0.5153347,-0.18647613,0.14297135,-0.022111893,-0.5500527,-0.16971539,0.14133658,0.45077574,0.6750926,-0.07107659,0.41533107,-0.09790833,0.25685996,-0.04782953,-0.72455806,0.74919724,1.0747199,-0.23161998,-0.2548277,0.74101025,0.5108015,-0.5244922,0.58770347,-0.36832377,-0.20136715,0.71169204,-0.014833117,-0.5372901,0.00013325432,-0.388044,0.05378357,-1.1062613,0.2248786,-0.46315116,-0.63437057,-0.6960233,-0.09861097,-3.2017312,0.20601188,-0.3982177,-0.108596995,-0.30939656,-0.19207263,0.17845482,-0.58294815,-0.7282354,0.18777595,0.2102193,0.5290999,0.033912078,0.13417588,-0.10728474,-0.42435315,-0.31002218,0.17672205,0.16175891,0.021540523,-0.40496838,-0.6281917,-0.07651353,-0.27177188,-0.6306904,-0.08613659,-0.59259206,-0.44344798,-0.23960438,-0.78279495,-0.37924308,0.9114721,-0.07073597,-0.035141543,-0.26582098,-0.095189124,-0.105549574,0.28714085,0.01617887,0.2908182,0.12624635,-0.01131679,-0.043647457,-0.3571272,-0.06639142,0.22079195,0.404424,0.23996949,-0.31910574,0.3187079,0.5222858,0.73838353,-0.09578121,0.9218717,0.17849752,-0.2506595,0.46820256,-0.3205826,-0.42482662,-0.91998863,-0.41712734,-0.16851223,-0.43286783,-0.4282935,0.1388177,-0.30835184,-0.79293215,0.4494004,0.14630121,0.50733817,-0.13227068,0.15207444,0.38630608,-0.15312952,-0.053114176,-0.1968491,-0.32728812,-0.51015943,-0.25757667,-0.882959,-0.5868717,0.10374024,1.3308952,-0.013555416,-0.065722376,0.15915665,-0.539369,0.31971893,0.2678893,-0.11954248,0.1186518,0.3930851,0.031213766,-0.88830924,0.35514924,0.42349803,-0.053331826,-0.53938955,0.10850306,0.93482375,-0.6918271,0.5554768,0.28926837,-0.062438782,-0.2609327,-0.6081199,-0.109306164,-0.16915056,-0.20887698,0.6094001,0.33782756,-0.43219054,0.4077132,0.23300928,-0.108224414,-0.5797352,0.44339415,-0.08892114,0.056524266,-0.017892465,0.42703715,-0.09293067,-0.05069463,-0.10228415,0.42868984,-0.5106008,0.43280622,0.20308542,-0.13114366,0.1750573,0.062506475,-0.39396957,-0.8944107,0.16825281,-0.59098387,-0.31194627,0.30997035,-0.053999685,-0.1457732,0.09992836,0.24629603,0.3246248,-0.16151677,0.14464942,-0.13578334,-0.4941075,0.4767315,0.52842516,0.41910413,-0.48062542,0.7168036,0.19399957,0.0070862393,-0.28152463,0.2531923,0.3491458,0.5385209,0.4377929,0.044379905,-0.20537853,0.15835418,0.49743098,0.1974652,0.45664003,0.18728171,0.005554305,0.26413298,0.19418278,0.32503292,0.045201574,-0.16264772,0.17661588,-0.109542936,0.082904704,0.516523,-0.0062997057,0.3160667,0.02663402,-0.16251186,0.07849803,0.07256177,0.003818821,-1.4278592,0.37525558,0.34270337,0.76995444,0.70826566,0.04906893,-0.0036074668,0.5363087,-0.28249577,0.11166409,0.5027724,0.08749693,-0.32956594,0.75259596,-0.6826265,0.50542575,0.10711444,0.05203543,0.19052882,0.11778762,0.4004092,0.9353249,-0.10409799,-0.05145751,-0.1298344,-0.29676986,0.19923444,-0.4248391,0.012559253,-0.42338488,-0.47821015,0.5227653,0.46102762,0.29221448,-0.36604473,-0.045988306,0.15033631,-0.25300914,0.41354266,0.06946296,-0.043909546,-0.15013354,-0.51590985,-0.22115165,0.43603423,-0.2147766,0.16224109,0.22989774,-0.2190961,0.22878903,-0.05073329,0.0025500385,0.062819235,-0.86261404,0.03573549,-0.14303724,-0.29953337,0.5557589,-0.47628233,0.1625616,0.09256831,-0.023748307,-0.34937608,0.072543584,0.041777525,0.6515596,0.03840544,-0.30011633,0.040403973,0.28245136,0.24932688,-0.30385044,0.2618728,-0.0772455,-0.09242485,-0.5549813,0.51317334,-0.096342824,-0.19914137,0.18327112,-0.12689166,-0.082940504,0.40589234,-0.13406496,-0.07585609,-0.23539214,0.007815816,-0.30226347,-0.33616382,-0.3483059,0.24136502,0.11576185,0.2631628,-0.107777566,0.034721196,-0.069708355,0.359138,0.021964313,0.11593237,0.09327212,-0.24990441,-0.7101333,-0.037753213,0.04059849,0.23276724,0.17145425,-0.13496958,-0.081715174,-0.14401516,-0.28050458,0.20872016,-0.25433624,0.2743702,-0.035917245,-0.38599208,1.1061567,0.2038758,1.4122754,-0.058436085,-0.35391453,-0.10157636,0.54299575,-0.19165438,-0.04157325,-0.12242473,1.1857104,0.65200096,-0.105894685,-0.19641238,-0.5426525,-0.011483323,0.35078645,-0.20157628,-0.37839898,-0.063577205,-0.6573254,-0.36414817,0.23072915,0.26673123,0.05893677,-0.038034853,-0.1444325,0.41130266,0.12635258,0.40918544,-0.37820664,-0.039208435,0.36710748,0.1553703,0.07763935,0.30582038,-0.4105028,0.31552958,-0.7751097,0.39614782,-0.19475217,0.109717734,-0.27432668,-0.2939225,0.16031794,0.011890867,0.38358843,-0.39961395,-0.28090352,-0.35415515,0.6137744,0.15831405,0.22327846,0.94070905,-0.2805969,0.014086019,0.1592285,0.2148108,1.0696687,-0.12489009,-0.17290884,0.16135822,-0.59589285,-0.76765305,0.23653144,-0.24843735,0.11725409,-0.14195642,-0.38209847,-0.4579523,0.08221582,0.05690993,-0.0065075187,-0.017264841,-0.54765266,-0.075091854,0.3254188,-0.3145743,-0.2032054,-0.4021905,0.28434768,0.41709015,-0.228131,-0.33495757,0.10598004,0.12915999,-0.4084563,-0.55447215,-0.1274887,-0.33445692,0.38311443,-0.048980918,-0.4293339,0.13119787,0.23225184,-0.58880824,0.06552164,0.22545844,-0.3696237,0.014636484,-0.09774718,-0.27988026,0.99611247,-0.21164869,0.17081276,-0.50788313,-0.610504,-0.7091741,-0.29809645,0.35131642,0.40176746,0.15445615,-0.78462833,0.041260052,-0.19232507,0.20589618,0.08467873,-0.43636894,0.3156624,0.27344733,0.31016326,0.0483487,-0.7890266,0.28458503,0.25551146,0.06363239,-0.38603246,0.64297485,-0.16455571,0.6484716,0.123124786,0.10390899,0.15652299,-0.66760486,0.26080945,-0.10893993,-0.39873132,-0.3058569,-0.12619954,633 -954,0.53805304,-0.20323324,-0.6133332,-0.17397325,-0.10878301,-0.45849574,-0.14724192,0.36986178,0.28224406,-0.12305047,-0.24107747,-0.14721394,0.23920894,0.60035855,0.04400195,-1.1360235,-0.07985167,0.25979936,-0.75681,0.497264,-0.5604302,0.3326056,0.026201904,0.5669935,0.024808418,0.28669927,0.41533387,-0.12606274,0.15526068,0.0056484803,0.059471823,0.21414696,-0.92432517,-0.13584062,-0.104160115,-0.50105363,0.047239315,-0.3873085,-0.21869522,-0.81260735,0.33446538,-0.92182595,0.6254952,0.25164336,-0.19447304,-0.2338257,0.02538123,0.45521966,-0.4770422,0.12032668,0.19532134,-0.24361238,-0.10252297,-0.40848646,0.08560846,-0.2553387,-0.53924716,-0.029521532,-0.5532308,-0.43528292,-0.3007411,0.021143332,-0.4398135,-0.082484476,-0.1918971,0.4723405,-0.38737383,-0.36664736,0.5827711,-0.21444917,0.46384266,-0.51776487,0.009006912,-0.21404225,0.50040084,-0.2222949,-0.4056628,0.49792245,0.2317881,0.5083582,0.18901554,-0.4749808,-0.21220088,-0.120007254,-0.037287917,0.57035345,-0.31748188,-0.5695747,-0.09237253,0.1888012,0.32226777,0.3719675,0.097320706,-0.14631598,-0.07049421,-0.08228536,-0.019358808,0.6429401,0.67715263,-0.08153307,-0.5184361,0.14319767,0.4883975,0.19196701,-0.021088133,-0.03971936,-0.0073008793,-0.7284056,-0.32458007,0.10932979,-0.10274989,0.712111,-0.023804458,0.039038256,1.0491284,-0.24419442,-0.045372453,-0.16014074,-0.099704266,-0.0069469404,-0.3799511,-0.3820382,0.49542284,-0.55574995,0.13620363,-0.40113774,0.8488634,0.27418628,-0.80967623,0.41675946,-0.65594876,0.29328415,-0.12400909,0.8770012,0.87903345,0.4432999,0.75463,0.6868446,-0.3347449,0.39601573,0.41038772,-0.57943803,0.09015741,-0.26043227,0.10461699,-0.50269693,-0.02614441,-0.2296372,-0.12670326,0.36836138,0.32681367,-0.6354348,-0.07227366,0.30903298,0.6963834,-0.32149446,-0.0017245357,0.66256434,1.1985174,1.1654624,0.088235945,1.227286,0.4203908,-0.34480417,0.37577343,-0.33247635,-0.9030144,0.19914512,0.43593124,-0.019488357,0.5755271,-0.13614349,-0.16469756,0.43797234,-0.70323735,-0.084035255,-0.0018791611,0.35838264,-0.08973783,-0.32667488,-0.77717173,-0.17537202,-0.2239235,-0.27123883,-0.13638355,0.3236509,-0.19028373,0.41393492,-0.3850668,1.1886641,0.088616565,-0.06531483,-0.13954656,0.7597008,0.24241948,-0.19448987,-0.0461408,0.36151475,0.5750464,-0.029079385,-0.67242354,0.2560332,-0.4909593,-0.30693075,-0.18817239,-0.34980944,0.27793914,0.14036499,-0.3134118,-0.15106812,-0.040784385,0.046372246,0.37540257,-2.4837494,-0.33821613,0.025130343,0.41608608,-0.22796687,-0.034367457,0.040443335,-0.5236463,0.33748025,0.2280218,0.7199106,-0.7590582,0.46351758,0.4289748,-0.6239989,-0.011569809,-1.0329808,-0.114971586,-0.13341479,0.42832664,-0.0879905,-0.1703552,-0.019235404,0.3073204,0.7527244,0.03653669,-0.049273897,0.48146877,0.3735428,0.1671295,0.48498344,0.04835378,0.67134476,-0.39017087,-0.2717653,0.16763838,-0.1931215,0.2755191,-0.13838626,0.012814245,0.5740839,-0.5126345,-1.2214651,-0.41216803,-0.2105957,0.70888346,-0.41424197,-0.5039738,0.44485247,-0.136025,0.14572288,0.044602633,0.6465459,-0.17144454,0.0031048087,-0.72011197,0.0022143775,-0.034225456,0.2222649,0.17667995,-0.102915674,-0.45119628,0.45889524,-0.18118037,0.34781405,0.36182648,0.36421645,-0.31894076,-0.6535625,0.24383388,0.65945584,0.17346276,-0.04602324,-0.26088223,-0.4280206,-0.072209015,-0.21228296,0.063591726,0.6542086,1.265912,-0.30014428,0.061194908,0.46213457,-0.021934452,0.07028832,-0.1344712,-0.33203748,-0.1856768,-0.0026564517,0.5589673,0.9575052,-0.31564435,0.45624036,-0.1503172,0.3485101,0.25226167,-0.52668786,0.7816039,0.9259411,-0.01151264,0.07293777,0.5846763,0.30089763,-0.5986479,0.6462501,-0.6735241,0.087734945,0.74032503,-0.10137153,-0.27372253,0.3350004,-0.2981477,0.22851251,-1.3288633,0.524564,-0.30028132,-0.36747277,-0.7530032,-0.047488634,-3.9845116,0.27992222,-0.47868755,-0.013645958,-0.2734683,-0.015250092,0.310748,-0.9016655,-0.55383795,0.34232682,0.2719877,0.6820433,-0.052078295,0.07468524,-0.25006604,-0.2663223,-0.2027012,0.1748148,0.4421691,0.3686085,0.08472842,-0.32225946,0.09420566,0.09838598,-0.58524287,0.12972783,-0.68063843,-0.43985423,-0.21210599,-0.92019576,-0.4640847,0.68135977,-0.19013812,-0.06980016,-0.24858595,0.12664522,-0.16359144,0.2343782,0.1272498,0.3846945,0.116235845,0.016141826,0.27726945,-0.21290702,0.27050683,-0.042887226,0.47244826,-0.41016868,-0.25152805,0.168439,0.58171034,0.74165,-0.04634433,0.84793097,0.89758116,-0.0888024,0.15587112,-0.5117737,-0.24461669,-0.75660044,-0.6595747,-0.15507892,-0.39852953,-0.6446691,0.17723137,-0.36723897,-0.9084415,0.6715977,-0.27430028,0.4056138,0.17518313,0.39879486,0.49901035,-0.17869297,-0.031346764,-0.034251712,-0.15549289,-0.64531255,0.106597416,-0.73131555,-0.64744514,0.047511686,0.7025923,-0.37755013,0.07119717,-0.11517323,-0.30620745,0.17074287,0.11214077,-0.0054561873,0.41317508,0.44675577,0.021531366,-0.57557297,0.39017603,-0.02136374,-0.20937887,-0.6873075,0.22036114,0.59360504,-0.8400564,0.8727116,0.35920122,-0.06726683,0.06652333,-0.72809047,-0.45067823,0.3079706,0.085143454,0.3782585,0.06270218,-0.78157496,0.5531818,0.49066123,-0.76828235,-0.76387256,0.29847428,-0.10715909,-0.5413489,-0.01565186,0.20713948,-0.09948251,-0.042938806,-0.5591001,0.4050165,-0.39213368,0.11111215,0.15298599,-0.12174973,0.38941514,-0.06462968,-0.35548744,-0.8304556,0.37258938,-0.7048134,-0.10798344,0.44469088,-0.030141538,0.0057018427,-0.0027615374,0.3193543,0.38210887,-0.24773303,0.15052505,-0.021170443,-0.61425024,0.17679156,0.6277338,0.28153467,-0.4895593,0.61695886,0.16335559,-0.3725809,0.043549873,-0.008756334,0.5544706,-0.12048972,0.2353191,-0.10889284,-0.22891851,0.14563318,0.64460224,0.05518968,0.49006099,0.038169514,0.19616333,0.48395622,0.2394792,0.17405848,0.24638548,-0.2864916,0.0868282,0.17108168,0.26302674,0.6165505,0.39025345,0.23587547,-0.029341448,-0.39065713,0.0669033,0.42020446,0.013969848,-1.2374238,0.61391526,0.23924632,0.7795217,0.5855651,0.32966125,-0.27727792,0.7488889,-0.4140216,0.052816845,0.36971396,-0.047822107,-0.5809527,0.8012314,-0.61762345,0.46166083,-0.040621486,-0.105044514,0.07315908,0.18030308,0.3773414,0.69281715,-0.26281345,0.05962685,-0.117242076,-0.014956778,0.08465375,-0.4574304,-0.02107184,-0.3438958,-0.36582425,0.9122741,0.30033287,0.21735352,-0.020839868,-0.07102354,0.23770475,-0.27053565,0.4431081,-0.33068296,-0.07969911,0.34944448,-0.584282,-0.28950107,0.5385128,0.03195149,0.11038949,-0.38652232,-0.12575449,0.15648645,-0.20023917,-0.17071623,-0.004500675,-0.9354494,0.18064927,-0.44534734,-0.28043145,0.76993597,-0.27032974,0.24011822,0.2690601,0.13849694,-0.28717247,0.3849868,-0.08288726,0.8195583,0.043366745,-0.541706,-0.2989219,0.22732878,0.31488505,-0.31175607,0.31701264,-0.47807539,-0.06750048,-0.3786274,0.7518955,0.08701873,-0.43534514,-0.042390253,-0.22470564,-0.049575005,0.5143395,-0.2901804,0.08780221,0.19048695,-0.31989697,-0.39799264,-0.2834571,-0.28730524,0.34732324,0.35700348,0.026412953,-0.0980485,-0.1787309,-0.13027547,0.9816343,-0.072380714,0.53872985,0.24750684,0.20994264,-0.06566741,-0.058085226,0.29683754,0.43361986,0.15553512,-0.048156593,-0.6419134,-0.25221917,-0.19761428,-0.2354423,-0.22236696,0.34384874,-0.21697845,-0.22820307,0.91479546,0.20797895,1.351747,-0.12198344,-0.4418044,0.14778922,0.6875522,-0.22428204,0.0039984365,-0.5239021,1.1916112,0.55038047,-0.2738366,-0.099269725,-0.45771906,-0.19749618,0.27366838,-0.38767716,-0.21911444,-0.07309247,-0.53121996,-0.5263691,0.27105543,0.31669748,0.15719153,-0.09029856,0.18978786,-0.07790158,-0.028380187,0.2791076,-0.6506803,-0.23017521,0.11246116,0.24412332,0.06827115,0.20463477,-0.3333255,0.4388866,-0.6843495,0.33219627,-0.6251524,0.19192852,-0.013264352,-0.6231725,0.1320171,5.244667e-05,0.40255502,-0.33077326,-0.23333396,0.12152765,0.3213907,0.09893957,0.28473303,0.88189924,-0.40199268,0.11317585,0.1162757,0.5947292,1.4811879,-0.44241473,-0.15326972,0.2048381,-0.35668057,-0.5894423,0.45775744,-0.2391241,-0.09199974,-0.47693852,-0.49744728,-0.7922504,-0.050592676,0.028586805,-0.21714269,0.21593662,-0.61664313,-0.40083885,0.16126452,-0.3281059,-0.21663222,-0.30573443,0.6301576,0.8963177,-0.28864348,-0.45508072,0.18822242,0.0623204,-0.056462277,-0.48981592,-0.08818695,-0.26008078,0.3818905,0.11264808,-0.53758377,0.043036927,0.29253048,-0.47933042,0.16351794,0.21624951,-0.27609015,0.15768538,-0.1479171,-0.21709871,1.15357,-0.32632935,-0.13117205,-0.66357446,-0.48571768,-1.2560588,-0.53114915,0.6679727,0.120725326,0.029495122,-0.6509708,0.29411873,0.115146466,-0.12781118,0.014971271,-0.43582156,0.29752865,0.046703015,0.69465315,-0.38782266,-0.986655,0.1024893,0.15987973,-0.16586357,-0.91876674,0.6459201,0.14230949,0.98331606,-0.018204376,-0.046353135,0.11769698,-0.34598964,-0.0182231,-0.39949673,-0.21158189,-0.7068667,-0.17831683,639 -955,0.84500957,-0.3654858,-0.571273,0.047905143,-0.4199753,-0.17204519,-0.18318991,0.41993377,0.36417085,-0.42498854,-0.33623436,-0.07554309,0.07494989,0.08275355,-0.12791675,-0.49634263,-0.0643856,0.22413152,-0.78987634,0.96637875,-0.21303965,0.41252756,0.29702377,0.4464835,0.1277552,0.42733383,0.23524566,0.20829296,-0.0065181744,0.044358566,-0.06041478,-0.01998799,-0.6063971,0.3618983,-0.46006393,-0.3646495,-0.13132814,-0.42527798,-0.18810941,-0.8413769,0.180309,-1.0033501,0.47024518,-0.060952462,-0.29238173,-0.5314783,0.1279789,0.17046782,-0.30160806,-0.19882804,0.04115423,-0.3100907,-0.21241368,-0.7165691,0.09461565,-0.4317447,-0.45187148,-0.05638865,-0.49848482,-0.26271147,-0.0388929,0.30039787,-0.27264094,0.0032437472,-0.17404571,0.80911916,-0.25984162,0.01802308,0.5436582,-0.3032781,0.066332795,-0.7304313,-0.2542052,-0.17522687,0.26232478,0.32708934,-0.47235784,0.35131615,0.083896704,0.364048,0.40633252,-0.46397018,-0.19384147,-0.006525506,-0.00024539774,0.36842233,-0.18961939,-0.2714141,-0.18132788,0.10607683,0.39263117,0.42951047,0.26770848,-0.33540282,0.14697891,-0.40467432,-0.029730106,0.48274633,0.642241,0.044281363,-0.28895146,0.115205854,0.66072935,-0.010233435,-0.30503923,-0.24086428,-0.015649986,-0.41844404,-0.053425692,0.1590212,0.09700361,0.69763887,-0.10457444,0.17611155,0.6882376,-0.011745139,-0.058704898,0.31290317,0.30713475,-0.11014425,-0.5202594,-0.098305374,0.51519734,-0.49509487,-0.18582734,-0.5728762,0.7036529,0.046721973,-0.67652094,0.43264377,-0.6176749,0.061151076,0.1438577,0.49349278,0.7594551,0.57956815,0.40960532,0.8076059,-0.05432893,0.20577985,-0.09389289,-0.1300192,-0.13417679,-0.49922988,0.3264282,-0.36812142,0.2746335,-0.14507937,-0.02730362,0.016622717,0.4514756,-0.5682016,-0.52649504,0.44614756,0.8250984,-0.1282388,-0.099103,0.9103649,1.1736199,0.9193814,0.039318994,1.1103072,0.15473165,-0.16815816,0.21385075,0.015095743,-0.83180976,0.20833617,0.35890236,0.2125743,0.50061053,-0.13556793,-0.2772249,0.4663046,-0.42496002,-0.08015104,-0.025379466,0.33558527,0.15680018,-0.07821358,-0.64582473,-0.2854825,-0.060358897,-0.13765456,0.01888904,0.4156996,-0.1933137,0.39868096,-0.23867498,1.1823075,-0.10828161,0.10596874,0.35703027,0.55818224,0.37935588,-0.25830728,-0.020954989,0.47923848,0.08171511,0.12330305,-0.34420738,0.19978827,-0.48412278,-0.4907525,0.008285555,-0.23658966,-0.13052984,0.17587048,-0.5803093,-0.43728915,-0.11164019,-0.24959378,0.22008727,-2.6228678,-0.13934106,-0.13330348,0.54357505,-0.48826763,-0.21478952,0.08654283,-0.63840455,0.06783287,0.15018311,0.62280303,-0.6084084,0.2801561,0.5523679,-0.7537872,-0.16270116,-0.8040839,0.2277864,-0.1029747,0.40878427,-0.110956475,-0.2526929,0.03565719,-0.006147401,0.62588024,0.15641475,0.15425435,0.6827764,0.37657872,-0.122096606,0.27270177,-0.10506189,0.519486,-0.6305375,-0.2449378,0.33057186,-0.51451296,0.2513523,0.021309821,0.030897664,0.7998598,-0.5940378,-0.7173834,-0.5609123,0.034380946,0.87995046,-0.3814824,-0.59732336,0.045088258,-0.27099565,-0.07101994,-0.04049243,0.80372804,-0.054009024,0.32832053,-0.5829781,0.074504495,-0.059601296,0.24203539,-0.023357494,-0.24691053,-0.4985975,0.9371527,0.02207691,0.7255842,0.22659945,0.32566878,-0.41517648,-0.37346423,0.11538319,0.60254616,0.3317377,-0.0110267075,-0.09743764,-0.041143756,-0.18262973,-0.19873309,0.21218304,0.81140256,0.7100639,-0.16481802,0.16267727,0.39450514,0.00030892817,0.1419902,0.014276526,-0.22494961,-0.41249657,0.17059688,0.43433598,0.91808504,-0.17439665,0.2128158,-0.24911755,0.4960576,-0.17146812,-0.65878063,0.6389169,0.6108704,-0.18962461,-0.063394204,0.5633245,0.54694945,-0.64667106,0.5934271,-0.61730653,-0.4495881,0.556027,-0.10280816,-0.6632057,0.12604079,-0.27495593,0.27753153,-0.96715546,0.35231796,-0.3887456,-0.39248502,-0.6146872,-0.048016127,-2.312313,0.27852413,-0.26752484,-0.0032600977,-0.30450118,-0.14139737,0.007627265,-0.92031837,-0.43941107,0.34177145,0.22178084,0.6309399,-0.10549193,0.20192887,-0.25288212,-0.49809638,-0.12275324,0.34366223,0.16312428,0.31657112,-0.31868476,-0.41358623,-0.14883412,0.1449521,-0.46014175,0.15928279,-0.7808073,-0.61820793,-0.2705795,-0.7092531,-0.38861942,0.51444966,-0.15736637,0.05087329,-0.255519,0.04204066,-0.062276557,0.07073932,-0.022785328,0.45065725,0.24689035,-0.07896933,0.2368303,-0.47388554,0.2751995,0.012144209,0.49215004,0.28975716,-0.3195096,0.33571455,0.42189753,0.73742366,-0.26113585,1.0427307,0.26014608,-0.03056132,0.38535118,-0.1345572,-0.39576942,-0.76213497,-0.19001408,0.19796532,-0.35424736,-0.3750777,0.1937893,-0.4047168,-0.7863745,0.7181954,-0.023133676,0.5445479,0.06339831,0.50801826,0.5757686,-0.3621333,-0.14424615,0.008186362,-0.22380252,-0.60736984,-0.2809295,-0.62637734,-0.6194388,0.082172364,1.0169238,-0.24149624,0.039681986,0.24461742,-0.35498,0.1597657,0.19758119,0.043824382,0.049524155,0.621897,0.14031431,-0.4050476,0.40384626,-0.011182663,-0.18278876,-0.2701731,0.48914945,0.4575818,-0.7778128,0.78616697,0.3046728,0.14020151,-0.43663552,-0.5465486,-0.28465423,0.10236507,-0.029413491,0.50841635,0.5440465,-0.89090425,0.16698599,0.22570439,-0.56874907,-0.96044123,0.24864225,-0.18044244,-0.38728675,-0.29774097,0.4994006,-0.014779741,-0.20875864,-0.17232518,0.15091792,-0.4098691,0.074272685,0.12882224,-0.06370825,0.35031015,-0.075226754,-0.29965317,-0.7295913,0.28152367,-0.73176366,-0.25042105,0.6596849,0.022447325,-0.2397676,0.20847028,0.1741621,0.4437811,-0.13850862,0.19035487,-0.29631945,-0.42054322,0.48292992,0.43569204,0.5072001,-0.5441953,0.6440897,0.18377851,-0.25425026,-0.0073376787,0.22410497,0.38033298,0.079280406,0.43562782,-0.26989824,0.019421317,0.095681906,0.6517229,0.20033722,0.5058879,0.23751326,0.022896918,0.32983768,-0.071132325,0.31164172,-0.20231624,-0.63954806,0.10036006,-0.122881584,0.11831672,0.3956154,0.095642515,0.40618375,0.010914613,-0.20893866,-0.0022674582,0.3711792,-0.05322593,-1.3241225,0.20554477,0.19280772,1.0124409,0.3598454,0.13949904,-0.57342845,0.8069328,-0.110470936,0.25854608,0.32431805,-0.2096528,-0.43145683,0.8537554,-0.5027374,0.5608293,-0.21544673,-0.2141679,0.18525161,0.13471769,0.45743668,0.66731215,-0.20568047,-0.06427239,-0.1143123,-0.14272514,-0.08605793,-0.4014611,0.21836545,-0.3889046,-0.5562118,0.75819594,0.37378657,0.46093577,-0.34959346,-0.0445375,-0.057853356,-0.21415855,0.44099626,-0.1339647,0.027557937,0.26566112,-0.48672736,-0.16027914,0.55930626,-0.047329925,0.173958,-0.06860865,-0.1469362,0.024429088,-0.14961118,-0.017681729,-0.029463649,-0.87795866,0.24254131,-0.3754556,-0.60800546,0.42642835,-0.1857958,-0.055734456,0.2271872,0.05481905,-0.22412986,0.28803432,-0.012939618,0.95578665,-0.0035321603,-0.34474367,-0.3878341,0.28000236,0.08819547,-0.2920637,0.43129233,-0.34317482,0.2314949,-0.551148,0.63757384,0.060933437,-0.54457,0.026384912,-0.13967167,-0.1003336,0.71063703,-0.041092873,-0.20838672,0.025671883,0.012810393,-0.42417195,-0.1532083,-0.29235694,0.28753445,0.3072778,0.15793636,-0.07767706,-0.28719023,0.17180377,0.5522352,0.1670145,0.33129534,0.23141123,0.15229654,-0.24782857,0.42920053,0.2769924,0.53233635,0.21724032,-0.058204092,-0.35808966,-0.37070188,-0.46981,0.11622726,0.035473894,0.25971267,0.25061598,0.02218804,1.110217,-0.030919164,1.2288929,-0.058606353,-0.33506587,0.11867383,0.5936363,-0.22307421,-0.1268778,-0.51050514,1.2754916,0.65463424,-0.11369924,0.0861908,-0.37841588,-0.1270269,0.31783485,-0.44209945,0.04921148,-0.11038561,-0.5190403,-0.3355704,0.06423473,0.20602517,0.13577595,-0.27170783,0.07432533,0.2925038,0.066423014,0.06185918,-0.6599198,-0.1037072,0.1679696,0.23819852,-0.10754774,0.20833264,-0.43245742,0.37279952,-1.0534247,0.43007514,-0.5313381,0.15779948,-0.13154289,-0.5050089,0.081872694,-0.00054984743,0.6117832,-0.6178243,-0.3701783,-0.13952166,0.44571447,0.17809787,0.020528192,0.670717,-0.24994868,-0.04285395,0.15784799,0.6120447,1.1797179,-0.39242116,-0.0040291725,0.029738687,-0.62459284,-0.91028094,0.42408752,-0.20373812,-0.06866726,-0.35693625,-0.29606548,-0.7160364,0.09911487,0.27722555,-0.08781987,-0.10548322,-0.77615285,-0.07388312,0.05247437,-0.5381136,-0.15326281,-0.17553128,0.48351032,0.58893496,0.08782118,-0.42935008,-0.047844365,0.24500869,-0.14862368,-0.5032898,-0.13577296,-0.35511854,0.13351426,-0.06896818,-0.4541815,-0.33567464,0.15393467,-0.6388729,0.10208488,0.058170866,-0.29847664,0.080028266,-0.34915712,-0.1266138,1.1107974,0.0054202457,0.096695535,-0.52834356,-0.6772028,-0.9404638,-0.59547323,0.13335735,-0.03198589,0.2693257,-0.6151402,0.013689572,-0.3922467,-0.111660846,-0.11276283,-0.3389479,0.2652445,0.1435466,0.59556293,-0.53822196,-0.9946938,0.34557924,0.23519407,0.04585564,-0.45258057,0.29330322,-0.049605545,0.83292127,0.006434914,-0.061490472,0.14713436,-0.6819782,0.1380867,-0.2848737,-0.101247124,-0.651357,0.1045438,644 -956,0.21710028,-0.5110107,-0.48979387,-0.16708288,-0.19190134,-0.14616512,-0.14355081,0.58925015,0.3304486,-0.008847269,-0.23483635,0.04291961,0.129014,0.5809526,-0.18642563,-0.81344545,-0.27179754,0.08323652,-0.6452563,0.3123191,-0.5242274,0.048086036,-0.15763783,0.3686698,0.043453857,0.31380364,0.10734387,-0.11106448,0.1866077,-0.12528332,-0.25977,0.18331252,-0.30613402,0.1589403,-0.03182219,-0.103403874,0.10964294,-0.44715405,-0.32980594,-0.71015424,0.16059957,-0.97663516,0.4647893,-0.03629376,-0.25276306,-0.21745473,0.15561679,0.36279634,-0.3946365,0.016206928,0.27854168,-0.2615894,-0.17277935,-0.26467383,-0.12301976,-0.5771862,-0.42482805,-0.1806553,-0.40980452,-0.39235446,-0.043604385,0.11952476,-0.54737043,-0.10946712,-0.2726823,0.35352355,-0.38729277,-0.14624362,0.58567965,-0.4891282,0.362389,-0.47181642,-0.063636765,-0.045492474,0.49616775,0.19434732,-0.22133623,0.21501733,0.21851726,0.20351061,0.31359455,-0.21663703,-0.36797354,-0.38159588,0.3661474,0.6510212,0.0013409961,-0.44323558,-0.24771014,0.15181886,0.28596926,0.62609935,-0.009635378,-0.2316631,-0.02107426,-0.07644767,-0.21235873,0.65288186,0.5293195,-0.104773395,-0.25884125,0.33806401,0.44143298,0.322093,-0.2540326,0.12076721,0.05793823,-0.4227506,-0.17483632,-0.025301002,-0.12095225,0.48261416,-0.23135585,0.20161095,0.8975368,-0.14028107,0.079278514,-0.17526346,-0.093627885,-0.38467285,-0.51033884,-0.09752007,0.23538937,-0.51278365,0.2730393,-0.25955963,0.77328014,0.16213134,-0.59964734,0.30324206,-0.5259539,0.4097375,-0.09432446,0.5883898,0.5620734,0.48371106,0.4244732,0.9400911,-0.12927078,0.30749762,0.10336013,-0.5645079,0.095051855,-0.22200494,0.03601949,-0.42506582,0.29565847,0.054160263,0.12014162,0.15558574,0.14446922,-0.60568994,-0.048176624,0.29565275,0.9141954,-0.22635843,0.0923362,0.81765455,0.9565651,0.8975804,-0.029110195,1.1612908,0.26998568,-0.24758531,0.2167756,-0.29400948,-0.80705935,0.18068415,0.4071229,0.1984815,0.37907562,-0.2327611,-0.18267582,0.41828936,-0.46205667,0.06896209,-0.058026813,0.24189726,0.16227153,-0.28619358,-0.6687712,0.030624064,-0.099258296,-0.13671963,0.091190666,0.27448934,-0.1759751,0.55953753,-0.1336988,1.0980967,-0.09242363,0.14887014,0.15204753,0.5713176,0.24620663,-0.094413064,0.28822318,0.54227525,0.47764972,-0.033927776,-0.7802706,0.31712672,-0.37665316,-0.44891825,-0.13780053,-0.38069734,-0.2674065,-0.10450358,-0.3504098,-0.08838435,-0.14959139,0.012126782,0.4074603,-2.8929193,-0.2143168,-0.35474518,0.31284148,-0.3351373,0.060667,0.10301609,-0.52119577,0.1638301,0.32574424,0.69325024,-0.7207924,0.35030147,0.6596877,-0.686502,-0.088221125,-0.7264491,-0.03600903,-0.02890092,0.5485779,0.15756834,0.02182863,0.024453497,0.06999766,0.7528259,0.24204923,0.26312116,0.4126938,0.5327521,-0.08138743,0.42074624,-0.22972146,0.67516357,-0.3169408,-0.053141262,0.18443508,-0.28006652,0.3657737,-0.30089635,0.022642743,0.6129977,-0.26596463,-0.8645515,-0.32543787,-0.30916527,1.1323416,-0.54054874,-0.42354164,0.22400178,-0.15221262,0.035150897,-0.007842671,0.6482265,-0.009437734,0.08118013,-0.6170251,0.21092206,-0.19143902,0.085432045,0.040390253,-0.1778336,-0.2999196,0.7712301,-0.10420012,0.74094564,0.2810289,0.14577205,-0.13352326,-0.3372693,0.015131452,0.43521327,0.43437472,-0.11058144,-0.1534608,-0.26894835,-0.056080926,-0.28938425,-0.02246042,0.8455101,0.6649499,-0.2771711,0.075158365,0.3541773,0.056191422,-0.024360353,-0.07517769,-0.2492194,-0.099242084,0.09893865,0.42831343,0.7595894,-0.32129395,0.31548557,-0.07298761,0.27991194,-0.037361618,-0.6061531,0.65109444,0.4711819,-0.23639907,-0.10969107,0.5472719,0.51276225,-0.437449,0.42786282,-0.6829833,-0.013358398,0.75579107,-0.2472154,-0.6101072,0.2201531,-0.15349713,0.050320193,-1.0061898,0.22285038,-0.3502394,-0.63348407,-0.436947,-0.07060175,-3.5684366,0.06415944,-0.34655523,-0.30660218,-0.47828397,-0.028638504,0.2187966,-0.6540502,-0.76260585,0.2861223,0.25460938,0.47019625,-0.14687121,0.11268663,-0.40987265,0.03495296,0.003645691,0.32072794,-0.098855086,0.28058273,-0.19123554,-0.45461723,-0.10734894,0.27474597,-0.53688717,0.33225295,-0.65140605,-0.30364138,-0.043790754,-0.58547217,-0.051075697,0.54375786,-0.3980342,0.009960627,-0.052626207,0.22235017,-0.34534457,0.10657487,-0.0871218,0.30708548,0.17610413,-0.033505537,0.25437838,-0.15017737,0.5660608,-0.12187831,0.55058384,-0.03115861,-0.11861146,0.13512902,0.60989946,0.58910775,-0.2088068,0.95498365,0.4267537,-0.123604804,0.32397622,-0.22625071,-0.15497422,-0.5880709,-0.51401967,0.018868767,-0.40282252,-0.7181187,-0.002135797,-0.22082125,-0.7483485,0.52900934,0.17765476,0.57287556,0.057660673,0.120949194,0.5272556,-0.17286563,0.018549008,0.17887114,-0.12778665,-0.52631533,-0.07996371,-0.73689884,-0.47940883,0.26605642,0.84012204,-0.2570667,0.0009785945,-0.19082516,-0.5824886,-0.22865658,0.27097407,0.17901708,0.22791333,0.36979917,-0.004882826,-0.5362901,0.3901303,0.027322017,-0.13043952,-0.5345671,0.14349957,0.6938229,-0.7221594,0.7134726,0.23623894,-0.011807405,-0.35052958,-0.42328042,-0.33056936,-0.033754133,0.0017623956,0.49832115,0.17479181,-0.6173746,0.4273015,0.2613631,-0.47042057,-0.63249683,0.23972966,-0.26773158,-0.0246359,0.005399054,0.17742372,0.17977348,-0.26183775,-0.18862009,0.2574042,-0.33780175,0.24397029,0.15864919,-0.09631235,0.42628434,0.13040042,-0.13963826,-0.8961714,-0.09545751,-0.7639055,-0.049433485,0.46344146,-0.16424458,0.037653092,-0.07488132,0.038278334,0.25115147,-0.17795894,0.112491965,0.12406297,-0.41953275,0.4842222,0.5329828,0.22986904,-0.50625557,0.5998625,0.39127037,-0.22288066,0.15897958,0.21194205,0.37358618,0.028229333,0.63130915,-0.2654741,-0.117371514,0.21820536,0.93463236,0.19780521,0.5802216,0.2343564,0.014767867,0.42198867,-0.11194214,0.26228613,-0.096096404,-0.551962,0.05699488,-0.1711815,0.11337033,0.5242484,0.4766016,0.41580045,0.107690595,-0.284908,-0.009837794,0.32723033,0.09830236,-1.3699481,0.4229293,0.3436031,1.0352494,0.2737306,0.26872686,-0.19222897,0.8037104,-0.23157527,0.044676658,0.53295463,0.08099307,-0.56086123,0.79531115,-0.65784466,0.45155373,-0.089598686,-0.15541811,0.27839568,0.35835835,0.37574556,0.60851437,-0.13251473,-0.118763,-0.2058118,-0.2863069,0.04246768,-0.36916077,-0.0603828,-0.41075227,-0.48537177,0.5031943,0.6017144,0.3261854,-0.14627768,-0.091739126,0.11847043,0.07689551,0.2241304,-0.12355943,-0.18519458,0.077102415,-0.565301,-0.24819742,0.6130957,0.022437232,0.3316169,-0.38970262,-0.4384386,0.13265909,-0.26260284,-0.111209035,-0.012989716,-0.57782155,0.05409775,-0.13365628,-0.83270246,0.4654121,-0.20054103,0.22546245,0.123841286,-0.124669425,-0.09056535,0.054993305,-0.22363442,1.0391225,-0.17505664,-0.28364775,-0.521363,-0.0241215,0.16000949,-0.18971421,0.029816281,-0.41016462,-0.06640358,-0.29513356,0.45876637,-0.10943497,-0.5579052,0.19459438,-0.24033284,-0.13670133,0.58141834,-0.109684944,-0.21369225,-0.062051106,-0.37644842,-0.55556655,-0.22778769,-0.3609611,0.25678918,0.24850518,0.18561038,-0.121156864,-0.1028564,0.05393919,0.49305236,0.0034005968,0.36306164,0.24194184,-0.013733284,-0.18065745,-0.06826493,0.21921197,0.48229778,0.22332793,-0.042262845,-0.12739295,-0.5790562,-0.40576723,-0.13512439,-0.10638326,0.5496536,0.056956347,-0.29545763,0.8190495,-0.012235078,1.18982,-0.010923635,-0.5038345,0.16146308,0.6145558,0.05296847,0.085945815,-0.33740222,0.95886785,0.52289397,-0.05287033,0.013974374,-0.7351376,-0.040762316,0.4786793,-0.3226744,-0.034748003,0.038522426,-0.52737933,-0.2896041,0.31745094,0.030110516,0.36062118,-0.14801511,-0.119501464,0.024481183,0.10024469,0.43509814,-0.5697311,-0.39089143,0.17835212,0.19329333,-0.0066070124,-0.09905877,-0.40038022,0.40022346,-0.6115995,0.2259735,-0.51831937,0.16759925,-0.42180434,-0.15305421,0.21446423,-0.3291922,0.45692328,-0.37858915,-0.4525965,0.008126909,0.5012755,0.019110886,0.1192697,0.64375186,-0.30745667,-0.012521828,0.23865533,0.7506153,1.2258954,-0.61816007,0.1789775,0.3898494,-0.5942257,-0.7727881,0.35870486,-0.30690962,0.11885395,-0.023411041,-0.3871877,-0.59718376,0.22668332,0.089424044,0.09559655,0.23540455,-0.42954433,-0.28068125,0.30500498,-0.5079641,-0.26754436,-0.3188422,0.2900264,0.80391794,-0.27949217,-0.5745868,0.1232842,0.2097438,-0.14528783,-0.4476639,-0.0013558011,0.038166977,0.2827226,0.021350466,-0.4168658,0.04410521,0.072998516,-0.47219285,0.17413622,0.05974168,-0.30802718,0.3672458,-0.25564167,-0.23352534,0.96183324,-0.49041188,-0.08726423,-0.88926464,-0.4309902,-0.7878841,-0.54141086,0.33847857,0.097288184,-0.018911958,-0.5396833,0.11405382,-0.05046513,-0.1508378,-0.15931198,-0.51950175,0.46657676,0.0068653314,0.58079875,-0.32852614,-0.8913193,0.2893113,0.26985013,-0.043484602,-0.6832532,0.64440316,-0.14600392,0.9028885,0.0689085,0.12610592,-0.12835278,-0.4416936,-0.041303538,-0.26738933,-0.3178789,-0.8370531,0.3303577,647 -957,0.4672947,-0.12318829,-0.46576083,-0.0483901,-0.18329276,0.029541558,-0.030080687,0.6123914,0.3599162,-0.4739339,-0.327946,-0.4443475,-0.08634953,0.43622884,-0.16597709,-0.6503704,0.02801714,0.19190668,-0.6648846,0.64090323,-0.48307094,0.40244314,0.10902285,0.4661927,0.21729317,0.12024198,0.19468151,-0.110366754,-0.019483805,-0.1354646,-0.16794367,0.038458604,-0.47572067,0.27528402,-0.08837865,-0.42973423,-0.015704209,-0.59244233,-0.14093718,-0.8072439,0.39281493,-0.7398361,0.3928649,0.0913545,-0.2979762,0.25814387,0.14355235,0.3426154,-0.17839266,-0.027255088,-0.024308555,0.0047839093,-0.03842622,-0.25077343,-0.210261,-0.28686187,-0.7323923,0.1891892,-0.21360807,-0.24773206,-0.22322851,0.046401743,-0.3532709,0.18035239,0.10416703,0.31664887,-0.3009551,0.1147671,0.13018918,-0.21502899,0.008801059,-0.5344619,-0.3950306,-0.080485314,0.2646506,-0.23749675,-0.13742475,0.25975513,0.33341715,0.59360605,-0.11896899,-0.108093046,-0.25481468,-0.18544973,0.068368964,0.60360044,-0.17751569,-0.6331316,-0.06218797,-0.07488993,0.2347611,0.22413841,0.23681699,-0.23821133,-0.15199417,-0.34584737,-0.3517815,0.16642445,0.51581424,-0.35947183,-0.3373752,0.3009365,0.513238,0.099405356,0.14058429,0.13635124,0.09392467,-0.5651064,-0.1016844,-0.07112877,-0.40438625,0.5449981,-0.22730647,0.20256825,0.557704,-0.037058827,0.10259209,0.07658278,0.054348446,-0.22429754,-0.2963828,-0.23947121,0.24497706,-0.43807265,0.13968597,-0.2933234,0.9032724,0.33229694,-0.73671705,0.3630241,-0.64364547,0.22147027,0.04023662,0.4909383,0.7101707,0.1758725,0.4246749,0.6816655,-0.3973973,0.058141556,0.038690213,-0.20877385,-0.042053424,-0.258463,0.061140537,-0.4558718,0.16772081,0.13154739,-0.10040164,0.24984303,0.49773273,-0.48833266,-0.10023474,0.20480512,0.8274107,-0.2694607,0.005053997,0.8581892,0.9071333,1.1674514,0.050019935,1.4031314,0.31937936,-0.29901636,0.18985675,-0.23546691,-0.96663326,0.25249216,0.366558,-0.21965967,0.29745752,0.067798495,0.021286774,0.31226087,-0.6319037,0.07454226,-0.13635863,0.104957074,0.1266533,-0.11790137,-0.3429477,-0.47000942,-0.09162101,0.0046509113,0.18693356,0.3397196,-0.10350945,0.40393162,-0.017313974,1.6629704,-0.032847203,0.19333524,0.23363261,0.3727866,0.20154685,-0.25380117,-0.06863033,0.2520505,0.29204312,-0.089059524,-0.6904967,0.018334992,-0.2569702,-0.55581,-0.21115784,-0.22206426,-0.1612532,0.115881614,-0.21094021,-0.3528862,-0.27584296,-0.4247708,0.36538124,-2.4157114,-0.15341236,-0.2274444,0.33452064,-0.24984117,-0.3893979,-0.3035866,-0.5060909,0.37841618,0.4051571,0.39270118,-0.7838125,0.0973342,0.45148146,-0.5510875,-0.14178436,-0.6202924,-0.048744414,-0.018814765,0.031941555,-0.11188728,-0.063767485,-0.01926472,0.09092684,0.41944426,0.1356743,0.09516024,0.42822826,0.4330459,0.12736104,0.4146081,-0.064684,0.49590433,-0.34671852,-0.14077939,0.34659767,-0.5939961,0.21756333,-0.22941022,0.13020495,0.502912,-0.6401947,-0.7390846,-0.6598696,-0.3221537,1.2757142,-0.16226615,-0.46811536,0.28100854,-0.22950147,-0.13808651,-0.20280714,0.627521,-0.4087426,-0.30285013,-0.80999374,-0.038567487,0.02237249,0.22633377,0.02142712,-0.1287567,-0.3799503,0.81837046,-0.02070985,0.3803913,0.19916114,0.050388943,-0.39793712,-0.555385,0.16453736,0.964279,0.44356823,0.22565302,-0.26319215,-0.11433518,-0.6211806,-0.3518751,0.08751394,0.3215297,0.74945015,-0.13155438,0.04555227,0.3691281,0.14992493,0.24826384,-0.019602424,-0.2027288,-0.26085582,-0.13304262,0.6756674,0.7399374,-0.35086474,0.19286132,-0.1013763,0.23279019,-0.24917574,-0.3318865,0.7247293,0.92243844,0.008818134,-0.36083564,0.64473933,0.52860403,-0.32087466,0.41869137,-0.57756835,-0.434877,0.46481478,-0.04850801,-0.40129748,0.029990934,-0.32715526,0.108850546,-0.8222306,0.22095901,-0.13362113,-0.11851895,-0.6832715,0.028299851,-2.7091932,0.22613792,-0.258572,-0.13474375,-0.35609278,-0.023278935,-0.13783379,-0.4469161,-0.7767181,0.21903668,0.08739689,0.68683654,-0.0904656,0.22730042,-0.010731014,-0.3014409,-0.59469754,-0.030883472,-0.17149931,0.43039963,0.30527154,-0.35200477,-0.010032887,-0.1408684,-0.22904162,0.15116729,-0.50605386,-0.47890872,-0.22157167,-0.6085237,-0.3745085,0.5482382,-0.5705426,0.04133183,-0.23348904,-0.2190312,-0.2657424,0.3006467,0.13008705,-0.11819511,0.017315181,-0.15483277,-0.13020205,-0.26444957,0.32362553,0.015639933,0.29954612,0.39830047,-0.18643856,0.19544636,0.23148017,0.7226732,-0.10920021,0.65601027,0.35371402,0.017753506,0.25820762,-0.3350361,-0.03922884,-0.34688488,-0.12615922,0.0116301235,-0.35806444,-0.48129222,-0.0005911643,-0.2525165,-0.7249212,0.23268825,0.05107124,0.1350174,0.089041695,0.19290408,0.48069936,-0.008380628,0.022737037,-0.13560511,-0.046361074,-0.5791625,-0.37316027,-0.67409855,-0.22177698,0.4730096,0.9686601,-0.05897728,-0.033921883,0.09083626,-0.19778791,-0.045318767,0.12738995,0.0077403486,0.10515134,0.47670576,0.034668293,-0.70249075,0.47882202,0.04144279,-0.31551027,-0.59416157,0.1410779,0.48211735,-0.60974646,0.56786937,0.24143614,0.05833461,0.13979049,-0.4515002,-0.2666776,-0.15502724,-0.2392408,0.098361276,0.29352307,-0.557868,0.4038869,0.25913757,-0.0727598,-0.9502809,0.22161227,0.08359666,-0.25852555,-0.039172877,0.4589217,0.16546923,0.10674503,-0.21078648,0.12679364,-0.4999054,0.3161708,0.17418288,-0.010611513,0.30070797,-0.33008978,-0.18922311,-0.7526869,0.123722404,-0.48049676,-0.19729353,0.19996572,0.24693199,0.06760235,0.14209868,0.20440935,0.25637177,-0.3194183,0.16039819,-0.008235639,-0.038489655,0.10573241,0.34033874,0.53596395,-0.5113173,0.65720534,0.0829699,0.04656236,-0.024674892,0.047940113,0.28089485,0.22842659,0.24064918,0.20658241,-0.33268067,0.31104687,0.6255751,0.19292088,0.19341844,0.2533214,-0.07518646,0.43010694,0.16455115,0.10185929,-0.054846045,-0.56965494,-0.060532752,-0.25456843,0.14550729,0.52702457,0.12359419,0.3674844,-0.061794635,-0.2764967,-0.015676081,0.3169526,-0.24577393,-1.1087645,0.1720847,0.031513777,0.8097999,0.6747484,-0.17752632,0.27198705,0.5918934,-0.137291,0.20067258,0.3568106,-0.07698568,-0.47543058,0.67768663,-0.574876,0.42746115,-0.20972382,0.06545872,-0.052311126,0.15258351,0.29754725,0.5998752,-0.13329992,-0.03481593,-0.12182342,-0.30331525,0.072050765,-0.5035644,0.04362345,-0.5772079,-0.14389418,0.60961777,0.3197818,0.19013304,-0.1693268,0.10242807,0.008120585,-0.14455591,0.027965205,0.066752724,0.11544385,0.04630084,-0.7401112,-0.096896,0.5877591,0.0829357,0.289089,0.23090205,-0.29806045,0.1803482,-0.33894274,-0.0903233,-0.123121314,-0.80333996,-0.021391576,-0.17141925,-0.40801084,0.27054426,-0.06113225,0.20616116,0.35527658,0.16110164,-0.34993017,0.3143971,0.03807055,0.7477224,0.010874339,-0.2927907,-0.24283351,0.3620821,0.091452144,-0.276441,-0.0016197237,-0.18356639,-0.07135144,-0.4441021,0.7388985,0.20109606,-0.22221297,0.079002835,-0.20567422,-0.0009360869,0.6802266,-0.2802427,-0.09314141,0.0106139025,-0.20700131,-0.10275795,-0.17959881,-0.23967895,0.38418233,0.33037812,-0.011970899,-0.1412601,-0.096137,-0.133816,0.30418372,-0.06970212,0.31452253,0.26910657,0.096922375,-0.45779255,-0.012169946,0.13120092,0.49082705,0.05011293,-0.28924796,-0.13613339,-0.41846707,-0.31706464,0.43369853,-0.13371554,0.33844423,0.18230699,-0.36985752,0.56628805,0.32498989,1.0790483,0.06177855,-0.32058823,0.014981573,0.3955711,-0.0073279333,-0.16124167,-0.29563186,0.9188049,0.45288727,-0.18159066,-0.16989475,-0.28691027,0.04079484,0.23381463,-0.17360741,-0.076202005,0.1925541,-0.5612406,-0.5004149,0.12246392,0.22920108,0.14747977,-0.19713612,0.11213057,0.21577772,0.018026583,0.38647747,-0.33835763,-0.29746476,0.27170277,0.22024423,0.21081497,0.17240432,-0.39297864,0.31648102,-0.72587466,-0.0053877127,-0.29536223,0.10773511,-0.15807508,-0.33996168,0.22438727,0.23529743,0.43862975,-0.41344795,-0.39262086,-0.37823057,0.60636514,0.18709908,0.27661824,0.47935173,-0.28071395,-0.0008798299,0.16791497,0.59085625,1.1267432,-0.027464002,0.05279164,0.060704652,-0.29653767,-0.5940359,0.5026915,-0.26846787,0.1091702,0.080456585,-0.20496391,-0.77457964,0.24482927,0.2362136,0.15670905,0.18363996,-0.6011169,-0.48624334,0.38168576,-0.30366287,-0.17818585,-0.40227425,-0.063604526,0.5950344,-0.11401956,-0.25528786,0.10954884,0.17193861,-0.26970896,-0.69618183,-0.05386295,-0.4465514,0.34318605,0.19425073,-0.2153828,-0.29159418,0.18947569,-0.46819755,0.21165419,-0.009281695,-0.36316743,0.044957206,-0.4725646,-0.025888653,1.0209762,-0.19706783,0.34876245,-0.63149905,-0.47460678,-0.8884726,-0.42718726,0.73867875,0.022246247,0.13274217,-0.6316564,-0.18292412,-0.061374318,-0.115725584,0.13195789,-0.18172885,0.32084343,0.20424443,0.41346,-0.053527854,-0.67670375,0.06395798,-0.013281868,-0.19568811,-0.56274575,0.35471514,0.19606161,1.0231054,-0.0077547594,-0.0823839,0.3745383,-0.6678814,0.016506704,-0.18352284,-0.10164463,-0.5915633,0.13584167,698 -958,0.5468522,-0.3404453,-0.46790263,-0.18424898,-0.39009723,-0.07683622,-0.16318685,0.3335892,0.34566903,-0.2946072,-0.09867124,-0.18774134,0.0915016,0.50241065,-0.08491126,-0.86816716,0.091292694,0.23280536,-0.7915769,0.67255366,-0.47226638,0.3830262,0.08436782,0.26214507,0.10812988,0.3463412,0.294227,-0.09580738,0.053481065,-0.20554422,-0.08546469,-0.039940182,-0.8036667,0.37602702,-0.098921604,-0.35175863,0.12615098,-0.29239818,-0.393276,-0.67253894,0.25636628,-0.8482374,0.48971507,0.13789749,-0.37160376,0.1958831,-0.049233068,0.31027833,-0.37157786,0.16262402,0.19763058,0.03296477,0.051636767,-0.44022855,-0.14723442,-0.546315,-0.51354223,-0.118189484,-0.63129586,-0.3175631,-0.43670428,0.03667633,-0.30348217,-0.051560715,-0.11016779,0.32307538,-0.39748192,0.25193423,0.17942959,-0.24652252,0.27941436,-0.3344789,-0.08032431,-0.13908285,0.0453411,0.027763821,-0.17000347,0.43815717,0.07709576,0.493197,0.087858826,-0.16912067,-0.27879784,0.12327281,0.12839217,0.4564333,-0.069648355,-0.3988376,-0.22376728,-0.17981774,0.113500945,0.060630973,0.26970407,-0.5212137,0.01926784,-0.055273566,-0.27532974,0.44980496,0.39741182,-0.4570041,-0.24563313,0.28933594,0.35348102,0.08863568,-0.1425866,0.0095477905,0.049742464,-0.5215938,-0.3671529,0.019402536,-0.2673202,0.5119328,-0.21688014,0.23402292,0.8286949,-0.22972998,-0.026855767,0.12590875,0.1026931,-0.16785674,-0.20185882,-0.20529057,0.27070034,-0.63472706,-0.18170674,-0.34960458,0.82649916,0.06712377,-0.67394876,0.392892,-0.6226904,0.17001514,-0.28612158,0.49346477,0.7498607,0.554652,0.006216908,0.6332271,-0.6055403,0.06253118,-0.087421596,-0.4291855,0.5262875,-0.21405517,0.104354024,-0.45753428,-0.22277437,-0.013197682,-0.20861058,-0.004887226,0.5490169,-0.53189963,-0.14137276,-0.001809933,0.9011723,-0.34137747,0.08122611,0.505827,1.1447405,0.89412403,0.023336025,1.3060204,0.2593558,-0.24193062,0.2615633,-0.15243925,-0.9599131,0.23224331,0.35241207,-0.07284528,0.40049192,0.023162263,0.028672451,0.32668477,-0.27011922,0.012270689,-0.18053056,0.37144965,-0.22967547,-0.23229083,-0.3319577,-0.29781362,-0.03673656,0.19050537,-0.15196703,0.45491228,-0.26260552,0.19142757,0.04751637,1.7843632,0.09860241,0.064280495,-0.1577454,0.6522491,0.29371047,-0.17230736,-0.06863568,0.384071,0.21378246,0.23762174,-0.6211511,0.120316096,-0.1088083,-0.52965295,-0.15010233,-0.43903625,-0.05336565,-0.23609807,-0.5226044,-0.117214724,-0.0009450479,-0.14219846,0.31403938,-2.2659786,-0.09225405,-0.08044202,0.49030885,-0.25952563,-0.15708742,0.032211013,-0.3885555,0.10246772,0.3790617,0.5666142,-0.70460075,0.4983962,0.6596981,-0.50431436,0.038148057,-0.4414894,-0.0778476,-0.15193094,0.60552126,0.043232158,-0.008134999,-0.08281528,0.272584,0.4518038,0.031356044,0.2951778,0.27467412,0.5076597,-0.11542355,0.50006795,0.096161865,0.33137643,-0.2973251,-0.13304886,0.27237892,-0.2061769,0.12796998,-0.03626618,0.07696832,0.43600017,-0.43997338,-1.0250995,-0.55185837,0.07104385,1.0339489,-0.5034766,-0.51538694,0.3084256,-0.20548764,-0.19832349,-0.05560758,0.30926067,-0.06360504,0.117075205,-0.8355556,0.14671625,-0.10656543,0.1937478,0.12601177,-0.14157091,-0.37009183,0.8479958,0.10068963,0.40394124,0.03937798,0.17239565,-0.27810583,-0.39859352,0.35808343,1.0089904,0.32660386,0.18697701,-0.15979202,-0.1975133,-0.3509146,0.009010348,0.06506782,0.531612,0.7081421,-0.19459534,0.1749886,0.37661475,-0.19845547,0.02867692,-0.23054188,-0.42748335,-0.03683275,0.09627983,0.48457,0.9862204,-0.12754713,0.26197794,-0.052435935,0.43647158,-0.16402902,-0.62426513,0.56713676,0.8479271,0.009087812,-0.09974215,0.58218616,0.666069,-0.47297785,0.6147049,-0.63387513,-0.47883874,0.3491234,-0.057196315,-0.40405244,0.15798745,-0.30191657,0.21352538,-0.88046265,0.5514046,-0.2775136,-0.269549,-0.35390452,-0.21438928,-3.9211152,0.28785247,-0.1445368,-0.19032282,-0.06145023,0.12921259,0.38916752,-0.7142326,-0.3491949,0.085927926,-0.004585017,0.69410753,0.05168527,0.24783531,-0.23907462,-0.3351018,-0.24053578,0.29122546,-0.032631215,0.1874478,0.0041994127,-0.68686455,-0.30954525,-0.08197499,-0.347069,0.14576131,-0.68489033,-0.5069397,-0.17021026,-0.6535771,-0.2736023,0.6770723,0.10957604,-0.015838908,-0.18444228,-0.08056545,-0.22266744,0.30540723,0.07783867,-0.05568038,0.07148382,0.03260829,-0.15223579,-0.33555168,0.24291252,-0.023858856,0.6832843,0.2641811,-0.26147687,-0.049627826,0.76281965,0.40022343,-0.097362764,0.7790151,0.32381475,-0.14919223,0.38295308,-0.060819816,-0.32425764,-0.6769936,-0.39855766,-0.30746675,-0.3144855,-0.1600892,0.15275317,-0.3822958,-0.6773241,0.6660311,0.14758143,0.21917659,0.0062885988,0.055871964,0.37240413,-0.14111117,-0.26112828,-0.12730494,-0.31487578,-0.5688769,-0.19816126,-0.83313376,-0.39621344,0.45773107,0.87224525,-0.20066155,0.029645367,0.28513983,-0.0647482,0.17573263,0.10626392,0.028622156,0.021878053,0.4238003,-0.0055593033,-0.83420295,0.691424,0.0019034093,0.13732082,-0.48616496,0.10999658,0.6575382,-0.7216448,0.45445433,0.26378,0.19841506,0.24171497,-0.3474801,-0.20330618,0.053435076,-0.19525315,0.34725928,0.28092104,-1.0026468,0.26942945,0.31477463,-0.53559166,-0.5560623,0.61914647,-0.15397516,-0.25079846,-0.31034473,0.24580437,0.050418075,0.06303661,-0.2591804,0.3481131,-0.60752386,0.28298107,0.3282711,0.05733305,0.40164375,0.021694062,-0.10919173,-0.69449943,0.13322346,-0.42724296,-0.44049948,0.24562693,-0.045972034,-0.14173931,0.29986,0.27619007,0.31183904,-0.16727117,0.08663201,0.09893299,-0.38321438,0.76135135,0.477203,0.61719424,-0.50829893,0.59338003,0.12570082,-0.06904536,0.024879206,0.004058491,0.38996938,0.114028044,0.4788407,0.26703697,-0.14614363,0.47924498,0.8329206,0.19525805,0.5222499,0.16572694,-0.055555876,0.24287258,0.09709425,0.1334447,-0.001939508,-0.6104305,-0.039121117,0.10514916,0.27807713,0.5184977,0.08568854,0.27756146,-0.070136674,-0.48662385,0.090167,0.23905605,-0.0487751,-1.4909465,0.080281466,0.28449365,0.59502256,0.68820083,0.010223248,0.0034945228,0.681015,-0.04901966,0.12457094,0.17335017,-0.00051345606,-0.5685694,0.74028456,-0.57842565,0.3673109,-0.13587402,-0.07271352,0.09177944,-0.051169146,0.27594188,0.8253839,-0.021617074,-0.024144493,-0.043235257,-0.5264858,-0.06816621,-0.5155361,0.19935851,-0.5613401,-0.37457266,0.53977585,0.5427174,0.2587384,-0.17274685,0.021505482,-0.06363645,-0.20767374,0.25192624,0.020045714,-0.10669598,-0.03803068,-0.7974163,-0.18170029,0.64238125,-0.029238343,0.14885053,-0.13362509,-0.12597126,0.29992768,-0.35601556,-0.090500645,0.03622747,-0.752474,0.24269108,-0.34599927,-0.29211047,0.5844665,0.12034777,0.12817463,0.18004194,-0.008317045,-0.37542474,0.23482396,0.22629207,0.55986685,0.04046885,-0.16814397,-0.30984476,0.076178715,0.014943928,-0.30624238,0.07965458,-0.21264935,-0.024217801,-0.68036747,0.3463229,-0.00572809,-0.37042668,-0.03431542,-0.07454886,0.15440637,0.5456018,-0.060645558,-0.30386412,-0.10805502,0.059653815,-0.22829407,-0.27259144,-0.1662731,0.34475958,0.114433855,-0.028781867,-0.13894178,-0.1483262,0.21564125,0.42936373,-0.060198583,0.33804566,0.42022246,0.114937015,-0.37403682,0.03947483,0.39823312,0.532374,-0.02552046,0.16860558,-0.28076324,-0.38054693,-0.43110484,0.068578005,-0.19157149,0.42201415,0.08025733,-0.47659448,0.8853597,0.09256587,1.2401805,-0.058562193,-0.27240503,0.33831665,0.5440865,0.090035446,-0.038083427,-0.458792,1.0522208,0.68790036,-0.37851936,-0.2699084,-0.5666934,-0.30368316,0.081181146,-0.43449372,-0.224169,0.16899224,-0.8937407,-0.14423154,0.13464566,0.43587285,0.0425846,-0.09405398,0.23194315,0.30411407,0.07766961,0.17051898,-0.66523796,-0.35125276,0.17456983,0.31169805,0.11913662,0.15965901,-0.54680634,0.38395083,-0.5531477,0.23221731,-0.22512718,0.093736194,-0.31407493,-0.4480446,0.114351295,0.03857726,0.3187328,-0.5034022,-0.49037132,-0.25885606,0.5838339,0.09751093,0.25525537,0.857827,-0.30037445,-0.009062187,-0.04294739,0.45526755,1.0653802,-0.10847103,-0.21021494,0.44880217,-0.53386486,-0.95419544,0.21367854,-0.22089201,0.26373273,-0.018708505,-0.46865904,-0.6049946,0.37904575,-0.07472196,-0.02360021,0.1968609,-0.6913677,-0.13108467,0.19390275,-0.29341707,-0.37330854,-0.23931436,0.17438616,0.5978313,-0.4044402,-0.22055167,0.12130969,0.20348185,-0.19859575,-0.4960863,-0.40977895,-0.39323863,0.29791394,0.09163916,-0.3903832,-0.05057416,-0.0045723156,-0.33861458,0.15292396,0.22243828,-0.31850997,0.19820362,-0.37494043,-0.027012007,0.9662413,-0.08267262,-0.1130626,-0.5988845,-0.6282594,-0.9818661,-0.41737863,0.41304275,0.14980368,-0.058559027,-0.6136546,-0.03921774,-0.012267495,0.016212143,-0.081865005,-0.45272705,0.45080414,0.064564764,0.43288994,0.123920895,-1.0721836,0.1564422,0.42492083,-0.16434726,-0.8517735,0.62946326,-0.4031699,0.89514154,0.07719541,0.06703095,0.24029565,-0.58110607,-0.048368953,-0.25279716,-0.2295198,-0.50308055,0.20695871,702 -959,0.30197522,-0.25191367,-0.7716528,-0.3399669,-0.49627656,-0.09998874,-0.17538978,0.38496152,0.637958,-0.32353842,0.04899876,0.00033923172,-0.08889404,0.30828235,-0.18496841,-0.81936496,-0.016067602,0.36296657,-0.56062126,0.49058333,-0.5430976,0.20751481,-0.13563491,0.50369364,-0.0030854074,0.1479495,-0.10616093,0.09456381,0.050189123,-0.08156771,0.15696537,0.22663817,-0.8370556,0.5008474,-0.1322789,-0.5273724,-0.031943943,-0.5906094,-0.19990772,-0.7979439,0.39242813,-0.7218807,0.6934426,0.17957076,-0.3530508,-0.05051395,0.30760106,0.31629837,-0.22040273,0.004296067,0.37661374,-0.32214448,-0.26551902,-0.21816443,-0.45219672,-0.49340937,-0.69130015,0.06129838,-0.72422355,-0.1174785,-0.06076907,0.35845363,-0.20829411,-0.17111653,-0.561325,0.63904816,-0.5370276,-0.026087213,0.1645361,-0.15434179,0.18958558,-0.60978264,-0.20242724,-0.22110444,0.11421481,-0.1637035,-0.57371706,0.29405618,0.4552582,0.52370745,0.16914049,-0.45129558,-0.42619792,-0.0011168827,0.009772995,0.35174504,-0.37682617,-0.37222525,-0.4210557,-0.018528372,0.4188131,0.32755154,0.18812178,-0.45177123,0.3670076,0.033660192,-0.2754308,0.95519584,0.5543827,-0.36901167,-0.409589,0.22428054,0.44162562,0.00013228437,-0.2293842,0.18115875,-0.027804457,-0.52906036,-0.36997145,0.3100166,-0.14410214,0.4533784,-0.23077251,-0.099333614,0.7533785,-0.29550695,-0.47257873,0.23746052,0.02126713,-0.07644995,-0.65299433,-0.34642488,0.39368123,-0.60661405,0.04037098,-0.31038463,0.69410634,0.037608758,-0.94195956,0.2512588,-0.8322472,0.14169346,-0.11109144,0.63390833,1.0802325,0.6223523,0.4312549,0.8181683,-0.34983495,0.15864195,-0.03916129,-0.2191236,0.31785765,-0.318101,0.15695773,-0.5339083,0.11989199,-0.31037328,-0.21468724,-0.04013833,0.5412081,-0.5256274,-0.2138543,0.21806067,0.66562265,-0.2719785,-0.29507133,0.96852785,1.3397053,1.2944183,0.23321773,1.5830636,0.27525538,-0.26717472,-0.087591596,-0.14510295,-0.7953241,0.31712687,0.26908728,-0.36239493,0.33721325,0.1307014,0.3382517,0.5727605,-0.4751566,-0.16093554,-0.08902209,0.47741076,-0.1467206,-0.15494694,-0.39526084,-0.32567614,0.25693065,0.16102491,-0.028161937,0.5142217,-0.31127957,0.2861761,0.16940276,0.7676414,0.027903723,0.063246846,-0.15446296,0.3791963,0.2323452,-0.20799126,0.08685504,0.20879102,0.10054686,-0.09426104,-0.6006253,-0.018428065,-0.46850708,-0.31899107,-0.28959042,-0.30463284,0.01526128,-0.46972978,-0.45314923,-0.45446855,-0.08793039,-0.308196,0.47643825,-2.124961,-0.38394,-0.04960873,0.2072003,0.05778149,-0.31713417,-0.102039605,-0.54958856,0.46997395,0.24076647,0.39787465,-0.633481,0.8320539,0.46694595,-0.83475894,-0.0045297146,-0.8380843,0.08425809,-0.2570578,0.40832475,0.047371443,-0.20133571,-0.3183162,0.033647414,0.6887014,-0.11467839,0.13612574,0.3271854,0.5829963,-0.253298,0.5198311,0.16771673,0.6897935,-0.344948,-0.44439992,0.24328652,-0.38931835,0.24445452,0.0072320374,-0.0020240925,0.6289095,-0.6236082,-1.0978184,-0.8259339,-0.37124664,0.9388365,-0.10220335,-0.32168543,0.10237749,-0.36946508,-0.43254957,-0.025815869,0.5738053,-0.009306387,0.026355483,-0.8064015,0.01643953,-0.06190494,0.30141824,-0.106946774,0.16611521,-0.5109392,0.82202506,-0.18585992,0.31426084,0.38521835,0.14234227,-0.66359,-0.27349588,0.14987503,1.1095276,0.45409644,0.02780475,-0.31720018,-0.2371645,-0.08061159,-0.11114779,0.120260864,0.67715406,0.5355644,-0.19751334,-0.0018139671,0.57752377,-0.2764211,0.10393767,-0.23531918,-0.39548674,-0.2635521,0.2283975,0.6512528,0.7247686,-0.24019493,0.2891529,-0.12412994,0.25874084,-0.09693031,-0.5334833,0.5238005,0.8840193,0.011831885,-0.35407466,1.0078386,0.54003614,-0.565766,0.64986396,-0.535719,-0.15986982,0.3710313,-0.11195285,-0.4593706,-0.29940608,-0.42809907,0.042248346,-0.9455294,0.39053753,-0.3996393,-0.68024766,-0.46596515,-0.27195895,-3.3893557,0.37499788,-0.1785111,0.25203708,-0.051719356,-0.27223408,0.2962099,-0.7664004,-0.88693994,0.14985922,0.24007192,0.5874414,-0.36143097,0.084137194,-0.1383975,-0.39381444,-0.25795567,0.32825726,0.22606836,0.25885934,-0.023238426,-0.45273498,0.22965866,-0.25661275,-0.55705905,-0.10474814,-0.84083426,-0.36600924,-0.112591386,-0.9677667,-0.43911093,0.7346187,-0.44322455,-0.271224,-0.39773157,0.122051425,0.007468454,0.491885,-0.15672724,0.4207854,0.28186715,-0.078392975,-0.29520938,-0.08540756,0.11488616,-0.20700814,0.34016943,0.39511976,-0.27619234,0.36309063,0.6555312,1.0214267,-0.009008977,1.0121582,0.449038,-0.069011666,0.38192835,-0.15999986,-0.31426647,-0.88782173,-0.44128543,-0.2693875,-0.6158133,-0.4063713,0.15475056,-0.29427373,-0.9718163,0.66049266,0.12030011,0.051688597,-0.04279665,0.40961125,0.23204142,-0.26245916,0.06382532,-0.3650343,-0.28651774,-0.4989727,-0.4790043,-0.7485114,-0.4973686,0.009229356,1.6198857,-0.1592413,0.08980239,0.33713248,-0.20744504,0.24293917,0.49064925,0.08573467,0.17687832,0.65233666,-0.0658056,-0.52209383,0.07969964,-0.09604757,-0.0055862884,-0.38371798,0.2721699,0.9398644,-0.68579733,0.8844421,0.45637482,0.25234395,-0.14346606,-0.7695068,-0.31271145,0.20880246,-0.22537754,0.85825175,0.43162063,-0.9437571,0.63308996,0.2879186,-0.30288482,-0.9639208,0.41772616,-0.12905839,0.09556231,-0.23016228,0.58634716,0.3308131,-0.0052972515,-0.15470733,0.61185646,-0.41201618,0.26613194,0.10684312,-0.10772998,0.13952875,-0.31285238,-0.34529456,-0.89682925,-0.13518466,-0.70793873,-0.3985054,-0.035193454,-0.19120635,0.07592037,0.47497046,0.20418476,0.46637785,-0.26896912,0.13405755,-0.2143826,-0.53713375,0.15885569,0.54981655,0.2891244,-0.49597692,0.6490817,0.20167242,0.03998554,-0.4739621,-0.029852184,0.505188,0.10227792,0.6250979,0.091595575,-0.17430222,0.20589656,0.7830115,0.10704086,0.43328476,0.090606146,-0.12486562,0.14677121,0.151338,0.46458083,-0.2660272,-0.41733292,0.2421784,-0.106936164,0.065694384,0.53375417,0.06956487,0.33936298,-0.13666874,-0.19746245,0.09701955,0.16615783,-0.10276642,-1.8558681,0.34049454,0.2871945,0.78788966,0.79426044,0.21719462,-0.013721363,0.6775961,-0.40556479,-0.14754535,0.52345204,0.13165893,-0.22808002,0.49211285,-0.709275,0.5134864,-0.28550565,0.08212829,0.0857887,0.15491003,0.4114416,1.0225555,-0.19265546,0.08393316,-0.11410386,-0.04722241,0.23565604,-0.30999726,0.103008695,-0.47628143,-0.4160516,1.098974,0.45945656,0.43488207,-0.39629936,-0.04398844,0.2565622,-0.17895374,0.14430048,-0.040181268,-0.32426608,-0.1713924,-0.6926279,0.028346745,0.818968,0.20331368,0.06659455,0.16155222,-0.35145906,0.36101276,-0.08701617,-0.027909702,0.06404252,-0.67612547,-0.20243311,-0.21966648,-0.33302557,0.5364672,-0.34202918,0.0798412,0.15234175,0.2391889,-0.2098925,0.2887949,0.255646,0.5727886,0.25603372,0.055284176,0.10268133,0.24676158,0.1074996,-0.32484514,0.14431392,-0.2846491,0.27153385,-0.6808453,0.6282723,-0.062245682,-0.5166963,-0.029255455,0.09211432,0.13899994,0.41076204,-0.2524355,-0.15294272,0.12418259,-0.06535515,-0.067647435,-0.32718402,-0.3319123,0.28537992,-0.19383463,-0.007279916,-0.22874023,-0.18946376,-0.144456,0.57674795,-0.06711598,0.021295788,0.35839912,0.16677016,-0.3448315,0.15281147,-0.10681477,0.58143574,-0.13879007,-0.19490248,-0.049464893,0.043298393,-0.2642637,0.29766658,-0.013816237,0.18207116,0.07208278,-0.3754654,0.85029644,0.17411469,1.6549412,0.10388,-0.6747177,0.10230322,0.5916188,-0.22820124,0.083650306,-0.28922126,1.000779,0.6622839,-0.26682016,-0.22239019,-0.82565445,-0.16289221,0.10582668,-0.25697327,-0.22095923,0.030553339,-0.936849,-0.17766242,0.31113583,0.23129264,0.09816575,0.0008853728,0.22136673,0.22520815,0.14060643,0.3336871,-0.67931914,0.0989221,0.37073898,0.55739784,0.077400275,0.11773383,-0.26423025,0.19458117,-0.8281395,0.3852855,-0.41606915,0.116290815,-0.31451437,-0.2720585,0.19284977,0.06496784,0.36878303,-0.067701034,-0.20050946,-0.1752368,0.693734,0.0009975217,0.2207792,0.88173676,-0.40104148,0.033788037,0.11356082,0.45159882,1.1848258,-0.21055375,-0.30991313,0.23618712,-0.32270855,-0.7032978,0.26253656,-0.7460573,-0.08416701,0.083109766,-0.3024933,-0.38586682,0.21889119,0.049701452,0.095478415,0.10152843,-0.60664177,0.16318236,0.40872926,-0.13832547,-0.12915792,-0.07507467,0.31531918,0.8697628,-0.38938782,-0.5900856,0.15725118,0.451552,-0.23296018,-0.687976,0.07887826,-0.55365527,0.53615457,-0.04416826,-0.53031784,0.15596214,0.14312787,-0.48594266,-0.0651455,0.6703616,-0.29696342,0.19648375,-0.46970704,-0.11498794,1.0947489,0.07794204,0.7424145,-0.42968836,-0.6627282,-0.91755575,0.057283618,-0.2158019,0.21745925,-0.17036682,-0.63278157,-0.16216572,-0.051729206,-0.3744114,0.35534838,-0.7052354,0.42633712,0.10199428,0.60911447,-0.11939969,-1.0388317,0.045461286,0.40056297,0.088466756,-0.41094944,0.53769433,-0.17443958,1.0677345,-0.019036181,0.046170615,-0.15791777,-0.6980589,0.53791046,-0.4705902,-0.06136867,-0.62691283,-0.19363976,720 -960,0.27539346,-0.4561863,-0.45330182,-0.14884257,-0.16706015,-0.06973816,-0.18449688,0.5960006,0.2587521,-0.23967405,-0.13144924,-0.30254447,0.07230399,0.40466443,-0.15762,-0.44509488,-0.19961096,0.1404946,-0.53303105,0.61442304,-0.27023786,-0.07678681,-0.3114488,0.44554988,0.32000914,0.3706536,-0.11867917,0.042778492,-0.11680731,-0.23229598,-0.20337147,0.1954491,-0.5436878,0.21498471,-0.09256583,-0.08478533,-0.08534882,-0.7025758,-0.6386589,-0.620017,0.2585139,-1.0049114,0.49889585,0.17246924,-0.1688518,0.1983541,0.2756035,0.24000931,-0.3167061,-0.13022117,0.29370585,-0.15220459,0.03606827,-0.3108283,-0.29304454,-0.40981427,-0.47691917,-0.21664204,-0.29484302,-0.42297745,-0.4217335,0.07782397,-0.30632532,-0.035000943,0.0050993618,0.6652882,-0.45333716,0.44541338,0.17275019,-0.17004639,0.21918206,-0.5618889,-0.18054676,-0.12785432,0.23818554,-0.14370638,-0.2980032,0.298431,0.1702013,0.09684773,-0.17916211,-0.0012919361,-0.29230368,-0.1979025,0.27100435,0.5528959,-0.15438543,-0.56203884,0.012419838,0.052586067,-0.22763854,0.27241853,0.14806989,-0.47922114,-0.11971796,0.07591825,-0.07891798,0.56762457,0.37848932,-0.023734044,-0.11097245,0.28679675,0.44605646,0.30482206,-0.26784006,-0.13984413,0.098575786,-0.53360516,-0.12430113,-0.01817726,-0.15530866,0.6080637,-0.10201896,0.18498144,0.6048305,-0.111393645,-0.21011992,0.097849004,0.05002167,-0.0570676,-0.3640916,-0.15943259,0.28607094,-0.2089122,0.27434787,0.004050396,0.6083143,0.25664586,-0.6517554,0.40366924,-0.61590636,0.23172288,-0.09693611,0.4479089,0.6940426,0.47774127,0.5184714,0.60114247,-0.31855345,0.24780248,0.109050184,-0.4107459,0.13471794,-0.28268525,0.010197,-0.6009707,-0.102706045,-0.15276664,-0.13401876,0.22167712,0.42961243,-0.43099403,-0.011708135,0.3378381,1.1541255,-0.19835873,0.044434786,0.73390573,1.0994763,0.79610306,-0.046625808,1.0208023,-0.011043307,-0.25238886,0.36063942,-0.046201706,-0.83789724,0.26443842,0.38909826,-0.14914638,0.13559856,0.20209788,0.06256037,0.35754213,-0.5427878,0.14469413,-0.08881989,0.04079517,0.35941574,-0.2817918,-0.42176282,-0.08878922,-0.24208283,-0.029247366,-0.017796336,0.09503224,-0.18681464,0.6549199,-0.009627765,1.9695302,0.15044892,0.041362904,0.040604834,0.6843958,0.120905355,-0.18288635,-0.0062907417,0.5056042,0.17141019,0.25468433,-0.44409475,0.28084376,-0.16522992,-0.41307995,-0.12547038,-0.44713247,-0.24269797,-0.06407429,-0.33442315,-0.25952175,-0.16023764,-0.1062422,0.4407756,-3.063423,-0.028852792,-0.11573476,0.42032477,-0.07198718,-0.26567715,0.05297455,-0.41042945,0.40950754,0.340488,0.5823907,-0.665752,0.25447312,0.43920222,-0.57268137,-0.22298121,-0.4942753,-0.06482217,0.06688089,0.5433514,-0.048417687,0.0101536065,0.18672985,0.2690228,0.41973498,0.17284259,0.2129322,0.41929254,0.50970566,-0.15997157,0.65957046,-0.17360134,0.389793,-0.18120338,-0.22845294,0.18733606,-0.31212586,0.3148156,-0.03990483,0.089077204,0.5978818,-0.44592163,-0.8517443,-0.60451883,-0.053669084,0.93580383,-0.1866724,-0.54906887,0.29214838,-0.6202811,-0.24664563,-0.18205261,0.6895518,0.022568054,0.07126364,-0.80147165,0.0032578816,-0.13693063,0.18866946,0.053074136,-0.25600785,-0.48657724,0.7933977,0.0025168548,0.56653255,0.3393028,-0.06236081,-0.4679063,-0.47718734,0.06614467,0.60266477,0.25627425,0.17218289,-0.19526888,-0.17352258,-0.28891438,-0.23117161,0.009692144,0.7107005,0.35600033,-0.17524387,0.20429382,0.33221424,-0.13005643,-0.14051731,-0.21543576,-0.22860573,-0.10775514,0.04648241,0.43687162,0.82989955,-0.1258186,0.49602917,0.013753536,0.3744066,0.06687112,-0.30861482,0.28233653,1.2694682,-0.09300206,-0.44546083,0.43043077,0.63443464,-0.38168794,0.35752735,-0.3624287,-0.06372475,0.5329241,-0.065432124,-0.7016559,0.36233762,-0.18108319,0.018782942,-0.6138289,0.1627111,-0.13436888,-0.7049518,-0.68373555,-0.2360621,-3.5365913,0.15597205,-0.2773968,-0.45555055,-0.09314311,-0.17840418,0.029363692,-0.62278616,-0.6114754,0.20306325,0.03299304,0.54596,-0.20712085,0.08304939,-0.23046924,-0.049787,-0.15545344,0.2641212,0.22948171,0.35867584,-0.19732514,-0.4974414,-0.36567804,0.009164878,-0.48661795,0.030568289,-0.70317554,-0.28526774,-0.05981586,-0.69406503,-0.17400867,0.6815899,-0.30259514,-0.106979206,-0.35057318,0.029364131,-0.13405873,0.16768862,0.24722219,0.17944895,-0.127266,-0.06297309,0.05763185,-0.23931265,0.22035833,-0.008035633,0.47367314,0.17680925,0.040987406,0.31352732,0.2720769,0.59644,-0.077600844,0.83643204,0.4513589,-0.10105768,0.23812047,-0.25459364,-0.2335098,-0.4613868,-0.27016836,0.16680239,-0.45700186,-0.530588,-0.07836618,-0.41240683,-0.6887203,0.45916808,0.09966564,0.048569392,0.17086549,0.076945215,0.5864032,-0.13601631,-0.08420097,0.022393221,-0.136272,-0.69889396,-0.18501228,-0.44625387,-0.5138129,0.16764016,0.7518324,-0.2126974,0.07251482,0.21798147,-0.4923108,-0.1008009,0.42306277,-0.17788845,0.2775102,0.411506,-0.08076023,-0.61125046,0.39414436,-0.18454951,-0.23709507,-0.7111814,0.40140608,0.49824288,-0.5902545,0.8971649,0.20663266,0.033265408,-0.39848632,-0.31664917,-0.3357079,-0.40764225,-0.068596594,0.32953623,0.2447992,-0.7333699,0.22977538,0.26212072,-0.15112498,-0.5841522,0.56169087,-0.2333632,-0.37744448,0.085479945,0.19802247,-0.0034441839,-0.013200497,-0.15129782,0.39934948,-0.24235953,0.20496124,0.15509552,-0.0036890453,0.11607237,-0.08312083,-0.12592334,-0.72106194,0.112968184,-0.3639574,-0.40038937,0.44509342,0.058667313,0.13701287,0.108794734,0.043710556,0.15717982,-0.09339286,0.08701248,-0.13127194,-0.34682667,0.23379742,0.4501814,0.62313014,-0.62987506,0.6211132,0.06048986,-0.10137477,0.3091758,0.13295569,0.24266766,0.0908366,0.48943225,0.22574963,-0.14628054,0.12628435,0.86554545,0.23953395,0.58346266,0.1000717,0.13797973,0.2571866,-0.03474922,0.16020466,-0.035147797,-0.7326124,0.2914252,-0.4743837,0.19636863,0.34501755,0.20008378,0.25560215,-0.11963945,-0.4463441,-0.024398988,0.39720333,0.2910663,-1.4095963,0.35166097,0.30058756,0.9113355,0.3244828,0.10212958,-0.06367483,0.9135658,0.062147032,0.0034297137,0.42489377,0.099648066,-0.49613392,0.5041617,-0.70688087,0.44430408,0.092141025,-0.07845351,0.058130346,0.025150197,0.36118534,0.6463223,-0.23417763,-0.16825952,0.10491243,-0.2505925,0.14419764,-0.55159396,0.12131465,-0.38262376,-0.32513416,0.52913,0.72163016,0.32290822,-0.1643727,0.083262414,0.0101001095,-0.20163964,0.080137156,0.1302236,-0.14632693,-0.057452705,-1.0263054,-0.010628533,0.5027845,-0.3106232,0.2284564,-0.0834457,-0.056489263,0.4242486,-0.18872947,-0.18788747,-0.11893411,-0.68711096,0.1676309,-0.25305614,-0.6423064,0.5614813,-0.008776524,0.26192567,0.18727528,0.039694645,-0.19194533,0.68549234,-0.04389054,1.1231312,-0.0037276202,-0.076859504,-0.4473531,-0.024023306,0.18193808,-0.11698601,-0.001011946,-0.47824895,-0.0034883455,-0.549489,0.44035938,0.07438037,-0.5299524,-0.011226719,-0.07543453,0.08959249,0.61071736,-0.04375063,-0.26506707,-0.07478496,-0.17864864,-0.35847858,-0.17328966,0.00093961303,0.38513353,0.23404837,0.14760302,-0.11038776,-0.029597439,-0.20834993,0.4665598,-0.11465094,0.5928771,0.30867922,0.18191256,-0.097861536,-0.2551416,0.06201562,0.67118114,-0.03757452,-0.096421555,-0.07273483,-0.54442924,-0.42405102,0.1565432,-0.036555465,0.6130865,0.25235584,-0.20011388,0.42860925,-0.2315559,1.182856,0.018618481,-0.43783024,0.29971,0.51068336,0.12702155,-0.12403024,-0.23098755,0.76794434,0.5785676,0.04746087,-0.028736364,-0.36835384,0.01547589,0.1544875,-0.08808224,-0.16224724,0.014115805,-0.6461018,0.03322042,0.22197485,0.22573766,0.49294835,-0.18390408,0.114759095,0.2218109,-0.16097409,0.0074173375,-0.31660262,-0.19221759,0.30402577,0.028362973,-0.0013841038,-0.049452838,-0.5788597,0.42562434,-0.17527896,0.060170542,-0.47282392,0.19403262,-0.34348595,-0.099574976,0.1672489,-0.21083091,0.3905614,-0.28976718,-0.10520198,-0.36602834,0.54459405,0.23330455,0.10516913,0.5396087,-0.17229287,0.16141377,0.0069805044,0.49969718,0.76748884,-0.38951454,-0.087120675,0.33215868,-0.51601136,-0.4823968,0.323827,-0.3039281,0.16558112,0.25630826,0.04914184,-0.61310804,0.1885088,0.019531988,0.031717952,-0.009695023,-0.7183806,-0.17128742,0.20058307,-0.24520636,-0.14841263,-0.39473674,0.023967884,0.56052107,-0.1972095,-0.19020882,0.11452599,0.06512852,-0.09602538,-0.3371266,0.04035296,-0.27972502,0.28694776,-0.1580513,-0.38731134,-0.26478308,-0.12773667,-0.32515806,0.31556016,-0.03319572,-0.35185674,0.19279355,-0.10670545,-0.42373314,1.0442277,-0.3731515,0.1091116,-0.5375626,-0.5086355,-0.6704444,-0.26018998,0.28618166,-0.07218574,-0.021686923,-0.5685879,-0.11461652,-0.044769134,-0.2175578,-0.18772869,-0.42934468,0.46461618,-0.020700349,0.59486747,-0.2352729,-0.8785983,0.30396658,0.16325511,-0.072520226,-0.84971434,0.66678584,-0.16120078,0.7024582,-0.030334987,0.2671475,0.3215336,-0.33198872,-0.303134,-0.21805133,-0.30523193,-0.56994116,0.15815337,785 -961,0.40925896,-0.3596358,-0.36296168,-0.21710919,-0.07743738,-0.05560792,0.047086123,0.78767085,0.14591989,-0.47957724,-0.18927383,-0.21026196,0.085715815,0.39282465,-0.03487983,-0.34573454,-0.059230093,0.19670753,-0.46529454,0.48807847,-0.3668049,0.069022425,-0.1253952,0.3330743,0.42768183,0.32523778,-0.09189129,-0.11557546,-0.10957673,0.025926612,-0.058650993,0.024676431,-0.45253074,0.23906294,-0.08454831,-0.26018724,-0.14279205,-0.65682733,-0.4308799,-0.6654197,0.37667224,-0.6567074,0.3641796,0.09082666,-0.2713687,0.07950766,0.08807168,0.5812504,-0.4989937,-0.11908495,0.25057176,0.17172508,0.025914095,-0.002506806,0.03686439,-0.34007034,-0.51643807,-0.106553465,-0.23188914,-0.4076112,-0.21277636,0.09272299,-0.28050113,-0.082376696,-0.0768931,0.67950594,-0.49122617,-0.048755523,0.11559809,-0.039178815,0.22520648,-0.69322217,-0.2609198,-0.124637194,0.34027353,-0.13274048,-0.27158353,0.32169774,0.28204226,0.24197458,-0.046763264,0.00027799743,-0.16271913,0.043854233,0.17718744,0.40576676,-0.19254154,-0.47431234,-0.09651532,0.10653882,-0.084825106,0.19641589,0.31264699,-0.38985088,-0.09466913,0.17132764,-0.2932855,0.34282914,0.4384712,-0.2798095,-0.12737566,0.42486933,0.6570268,0.24532509,-0.14899588,-0.046304047,0.07908693,-0.45686215,-0.1685664,0.16050215,-0.28127706,0.6116645,-0.055862818,0.2162219,0.64174503,-0.109453656,-0.05746044,0.00648427,0.15983368,-0.049747575,-0.441618,-0.4887214,0.27714568,-0.41440964,0.13266255,-0.18949576,0.72510266,0.26740715,-0.6749704,0.3911184,-0.54539585,0.17337786,-0.25578788,0.35531387,0.84508014,0.28260583,0.30687335,0.7292711,-0.39671442,0.08200597,0.0758815,-0.27751157,0.19981839,-0.30521673,0.034464303,-0.515653,-0.08429513,0.028564246,-0.14637579,0.026199596,0.32414246,-0.6480296,-0.12299815,0.2429563,0.84789586,-0.24145178,0.017287552,0.6517551,1.1075892,1.0702069,0.15418006,1.0342726,0.09757538,-0.3855589,0.54321146,-0.2777507,-0.73359627,0.27426785,0.47390655,0.14064218,-0.066668205,0.14551352,-0.033741083,0.6194589,-0.5006831,0.35244912,-0.2022019,0.037515864,0.11876462,-0.1961647,-0.51722276,-0.23909189,-0.1977017,0.03817685,-0.29960775,0.18038821,-0.23546213,0.1422822,-0.0641084,1.8044881,-0.0032360987,-0.001200527,0.08680217,0.5413776,0.0300819,-0.38643247,-0.11729198,0.41020137,0.5646387,0.19405127,-0.670862,0.15983619,-0.23944965,-0.3564383,-0.004651254,-0.4366783,-0.12671314,0.054448996,-0.4991159,-0.19743074,-0.15824498,-0.18499255,0.40937254,-2.8720057,-0.18349561,-0.11934963,0.495182,-0.24919368,-0.2911829,0.060419485,-0.45070457,0.3859414,0.4268286,0.5667247,-0.6145398,0.37027967,0.353799,-0.6825088,0.08149632,-0.7026978,-0.16848403,-0.0388022,0.27097782,-0.053137876,0.011530388,0.18077427,0.08293697,0.46654025,0.1504006,0.21275555,0.34491614,0.3145283,0.022847308,0.7199884,-0.14634784,0.5364732,-0.36110318,-0.11540571,0.054245222,-0.42609873,0.15224172,-0.020215876,0.098221585,0.50658506,-0.5970651,-0.97514397,-0.6919048,-0.2550616,1.1391095,-0.28834975,-0.26516208,0.46137226,-0.6162527,-0.21363464,-0.30860713,0.5986069,0.11343015,-0.149626,-0.8043953,0.024659062,-0.04405553,-0.009316165,-0.021818053,-0.2512253,-0.45403764,0.751824,-0.107616805,0.625782,0.41688225,0.06450128,-0.15064892,-0.31185713,-0.044823233,0.7825657,0.32439283,0.12508993,-0.07366849,-0.09643814,-0.6391319,-0.06956963,0.18640018,0.5089295,0.7040322,-0.10016637,0.16738392,0.36708143,-0.03816454,0.034536038,-0.051822368,-0.40644142,-0.21488333,-0.07125151,0.46331128,0.59315264,-0.126216,0.47774938,-0.060429875,0.16710071,-0.101109646,-0.3421655,0.43118417,1.0376555,-0.14296308,-0.31974533,0.41896954,0.5021795,-0.22176765,0.35688207,-0.37018108,-0.0787437,0.49164695,-0.1636454,-0.44964877,0.10447263,-0.31128195,0.099317595,-0.8363174,0.37080333,-0.48326775,-0.558662,-0.5977034,-0.11153872,-3.3031816,0.2667628,-0.30071643,-0.29008958,-0.046239268,-0.15330333,0.0048431675,-0.7215426,-0.5700004,0.24806218,0.010635897,0.81180954,-0.07929086,-0.049133096,-0.22478175,-0.32216975,-0.3254224,0.039759938,-0.007433179,0.36009708,0.04397699,-0.4908951,-0.03862941,-0.022274602,-0.423166,0.082566544,-0.6553138,-0.3995102,-0.16695581,-0.65773726,-0.40372676,0.8122063,-0.23666936,0.07529188,0.015644394,-0.028637296,-0.10623955,0.18311238,0.08105301,0.25551656,0.000741899,-0.16341805,-0.048687577,-0.23324715,0.08284599,0.1631558,0.53531134,0.044806864,-0.06256798,0.23034811,0.60101527,0.6084567,-0.11326828,0.8189522,0.70569575,-0.23812899,0.19136597,-0.3345261,-0.14952964,-0.49156895,-0.2861643,0.029321779,-0.39700687,-0.60664624,0.0663275,-0.35246745,-0.6165749,0.33026057,0.035109617,0.2872815,0.2161059,0.1140987,0.5286394,-0.024924356,-0.05905455,-0.103410155,-0.032239433,-0.70262206,-0.0298626,-0.65634686,-0.42925748,0.41072732,0.97977865,-0.26262596,0.037114117,0.11181747,-0.40126038,0.14628512,0.19505788,-0.23684727,0.22482486,0.26059264,-0.21228161,-0.6170001,0.32831457,0.052003503,-0.17521253,-0.5339539,0.35665724,0.47168735,-0.6739754,0.83194715,0.20723276,-0.17493473,-0.3832712,-0.4508481,-0.32581395,-0.03867539,-0.19508506,0.3101707,0.04936862,-0.7725325,0.21154809,0.41752216,-0.21585317,-0.768791,0.71050644,-0.24170847,-0.17497127,-0.07781992,0.2528078,0.21548519,0.004796185,-0.18201596,0.3759529,-0.5468185,0.18144941,0.19004427,-0.06658161,0.20086451,-0.11180303,0.04289896,-0.7809196,0.085608125,-0.60255694,-0.10812009,0.5014189,0.12720369,0.29003766,0.13233326,0.36991775,0.29203948,-0.10039141,0.13828681,0.03393332,-0.35719907,0.36886653,0.40419218,0.38625678,-0.54382885,0.46764895,0.07682684,0.0064988793,-0.05284109,0.12726732,0.22815484,0.22556166,0.45621052,-0.13893138,-0.36477518,0.20753254,0.7738289,0.2570694,0.51727194,0.119116284,0.016360663,0.046456132,0.077026434,0.18017873,0.046385504,-0.6761072,0.20299004,-0.08389024,0.2035879,0.36892632,0.1226258,0.15835428,-0.16096155,-0.3722103,-0.04812801,0.41456458,-0.04039849,-1.2185284,0.5890812,0.18134119,0.91110283,0.62456137,-0.025309004,-0.20748848,0.62716407,-0.09577816,0.1906517,0.33573493,-0.13753293,-0.64828247,0.6244643,-0.8036129,0.54392403,0.036687966,-0.02502525,-0.06334919,-0.08999106,0.47901887,0.5195272,-0.16906375,-0.04204187,-0.039383825,-0.30875632,0.24461631,-0.49398568,0.17534159,-0.74840087,-0.2268897,0.56695,0.52338237,0.2175991,-0.120588474,0.06905582,0.054167926,-0.28884643,0.25157693,0.08588195,-0.056024157,0.17524906,-0.9323422,-0.19896998,0.3808854,-0.38394013,0.2611368,0.037375845,-0.17568572,0.29566202,-0.118747585,0.027150141,0.013623354,-0.6874484,0.11958747,-0.3094811,-0.2891967,0.45912826,0.070617676,0.3552662,0.23387045,0.11849663,-0.1743984,0.49570704,-0.1161895,0.8348528,-0.22665697,-0.22666143,-0.5007894,0.087247066,0.12308073,-0.10358491,0.085219555,-0.4614604,-0.07448129,-0.5886082,0.58081776,0.27849498,-0.2764303,0.024110902,-0.08527703,0.05035808,0.6107819,-0.16303845,-0.023805825,-0.2221633,-0.19433628,-0.19494504,-0.27850455,0.03539867,0.21655677,0.17683712,0.3295442,-0.09527891,-0.11647168,-0.102813356,0.4704235,-0.034666196,0.4697933,0.27563816,0.09877778,-0.22234,-0.2538084,0.23794986,0.3414149,0.12632619,-0.22512193,-0.26190996,-0.43087605,-0.46929252,0.03447238,-0.13850969,0.65927494,0.014375668,-0.15947038,0.57351816,-0.20610029,1.253564,-0.011652226,-0.38898277,0.07594523,0.5966389,0.011354823,-0.17226419,-0.19693547,0.8209879,0.6201184,-0.037348274,-0.052934643,-0.39835688,-0.18064035,0.28169423,-0.11903457,-0.20811372,0.11603583,-0.63021857,-0.14105925,0.1646158,0.27645424,0.4771206,-0.0804833,0.14964396,0.39242518,-0.12386691,0.08665859,-0.36300376,-0.3624047,0.18407798,0.18314494,0.07210091,0.085808426,-0.52933127,0.4002013,-0.5248708,0.24600625,-0.117035195,0.14778525,-0.18935484,-0.35347077,0.1736895,0.06755197,0.45935294,-0.1636114,-0.31417906,-0.23458925,0.5830484,0.15968798,0.18870729,0.6545878,-0.19674753,-0.027701521,0.08228392,0.4229863,0.8567908,-0.13381633,-0.2523534,0.25413302,-0.41594782,-0.7773264,0.36798888,-0.3421118,0.28228265,0.1895882,-0.07261357,-0.65363127,0.17237239,0.2568242,-0.1972966,0.05970477,-0.71657795,-0.3782326,0.24602894,-0.25125104,-0.15664607,-0.47079408,0.17641874,0.6269289,-0.4121953,-0.24356928,-0.041027952,0.17115332,-0.085371345,-0.43280593,-0.03835496,-0.5812512,0.21977884,-0.08650672,-0.4447983,-0.21718301,-0.036342572,-0.30669242,0.3250233,-0.15916078,-0.37932244,0.15907548,-0.24038024,-0.29868576,0.9631619,-0.102042526,0.22974926,-0.28322393,-0.4022962,-0.6851408,-0.42453936,0.47385588,-0.02528675,-0.07463903,-0.682379,0.09284496,0.037420217,-0.039247002,-0.20825343,-0.412335,0.5421753,0.111682154,0.35451138,0.033607688,-0.72868866,0.2724475,0.13907632,0.009553715,-0.6969734,0.49182975,-0.15068026,0.92123795,0.06124818,0.19554447,-0.009832145,-0.34948504,-0.19172621,-0.25043735,-0.32892677,-0.45158932,-0.016711874,819 -962,0.48022735,-0.31263334,-0.54866743,-0.11054576,-0.29562524,-0.08888834,-0.2365637,0.85166794,0.14825796,-0.5868873,-0.28402153,-0.1671702,-0.084020965,0.5250971,-0.52083135,-0.58488506,-0.0019068365,0.041767165,-0.35446164,0.5185465,-0.40790513,0.2287054,0.007033412,0.45605373,0.30158323,0.22079648,0.11791213,0.03397033,-0.18278939,-0.32247025,0.2396,0.07719488,-0.8301693,0.17008245,-0.31182313,-0.50811094,-0.04557453,-0.6743846,-0.42728645,-0.9101433,0.3459568,-0.8984023,0.5571575,-0.1115288,-0.32201177,0.008850721,0.20679626,0.45329267,0.061110735,-0.116664045,0.22494811,0.02683202,-0.0823451,0.08202822,-0.048964415,-0.45288622,-0.79237866,0.051602397,-0.43276092,-0.14072388,-0.21658078,0.2554072,-0.44173527,0.19918485,0.055725466,0.45940265,-0.4936529,-0.17213295,0.16656847,-0.013367349,0.27312472,-0.6580462,-0.17362756,-0.14528352,0.16154648,-0.21105026,-0.11531108,0.39992416,0.24671982,0.4767167,0.022434901,-0.21237785,-0.29318377,0.014647088,0.1465273,0.55731314,-0.2074173,-0.6133932,-0.11721497,-0.012988105,0.38915253,0.07113735,0.10884946,-0.107007675,-0.08633122,0.21225996,-0.3819374,0.5171906,0.53633577,-0.20440817,-0.10306161,0.23516545,0.6330968,0.40943357,-0.117097385,0.04824965,0.07835605,-0.6048666,-0.24593778,-0.12767865,-0.2550484,0.6912592,-0.20234539,0.3708272,0.67937756,-0.348675,0.09928929,0.27349266,-0.021502353,-0.24964935,-0.13196383,-0.29763815,0.21017376,-0.47333553,0.17661957,-0.2898696,0.7778569,0.18949333,-0.74207854,0.32722485,-0.61478704,0.05290284,-0.06711821,0.45297033,0.68607295,0.48247325,0.49259022,0.6575905,-0.20145911,0.007070704,0.0028873777,-0.3794769,0.30411524,-0.3113361,0.06633207,-0.38235903,-0.13405748,0.021500498,-0.14835088,-0.16854435,0.4912342,-0.5985567,-0.052130222,0.0063228826,0.8378229,-0.2660379,-0.057373825,0.8324044,1.044904,1.0724494,0.20300585,1.1149158,0.006578673,-0.17613684,0.2971159,-0.01256823,-0.8428005,0.44709107,0.4639083,-0.36365232,0.4113696,0.08667548,-0.0017905235,0.54180604,-0.54399276,0.042730335,-0.034364667,0.36827695,0.19267386,-0.3266016,-0.41067058,-0.19478382,0.06900692,0.12256992,-0.06496065,0.3408439,-0.04349978,0.4219685,0.15853293,1.4262925,0.007191409,0.05651979,0.05369158,0.51618284,0.021056293,-0.090486504,-0.09966745,-0.08824479,0.17768297,0.27775645,-0.51701415,0.115429334,-0.19535437,-0.56711227,-0.1287808,-0.29466966,-0.32138354,-0.29956883,-0.48844728,-0.111759044,-0.22667494,-0.12649404,0.25535372,-2.4716506,-0.23668355,-0.17603232,0.34268335,-0.27238283,-0.52767235,0.04247974,-0.61673784,0.51105314,0.3770155,0.5422442,-0.72832054,0.5519268,0.5040461,-0.5751546,0.04797152,-0.5724337,-0.22122802,0.046027098,0.39905217,0.17262843,-0.09799621,0.09371207,0.30901954,0.37678546,0.0009663213,0.14715762,0.08737033,0.48921144,-0.1811118,0.6037001,-0.22195616,0.4235213,-0.36119336,-0.12817231,0.46601486,-0.5814922,0.2622596,-0.17759424,0.15037583,0.3890855,-0.53027743,-1.0137502,-0.741752,-0.4176223,1.2415274,-0.043339897,-0.32667196,0.26840627,-0.3869935,-0.28248042,-0.17888665,0.38284466,-0.172847,0.101838425,-0.9531605,-0.0829235,-0.2925324,0.036489256,0.07570886,0.015774649,-0.4892873,0.7612177,-0.10621676,0.291467,0.3046735,0.05853523,-0.3771289,-0.50794584,0.072990365,0.8992803,0.5474668,0.24700724,-0.33374724,-0.13310987,-0.5755705,-0.05203197,-0.06395134,0.62465733,0.79507464,-0.095546246,0.038022865,0.09492696,-0.056974605,0.08072502,-0.18302688,-0.44014457,-0.094434716,-0.021805264,0.733477,0.857671,-0.34961888,0.33046433,-0.16412543,0.3652655,-0.12408176,-0.36262766,0.45752338,0.69934386,-0.047541857,-0.20331854,0.6914456,0.6412485,-0.33790362,0.5215748,-0.52656764,-0.5105402,0.3948512,0.027210461,-0.54062533,0.11058534,-0.38213474,0.21985413,-1.0521455,0.45868674,-0.537208,-0.31670582,-0.68818456,-0.18258025,-3.4017432,0.14869978,0.025322147,-0.35838196,-0.15391995,-0.15106788,0.27874932,-0.7795066,-1.0677778,0.14909893,-0.112946436,0.72524,-0.090146,0.12066839,-0.16086307,-0.37211597,-0.30578187,0.21951832,0.32636267,0.35807124,0.15829307,-0.48789856,-0.24345103,-0.33772948,-0.38141146,0.14737685,-0.7137277,-0.887122,-0.1755169,-0.5056981,-0.19174132,0.77580625,-0.16723245,-0.11350536,-0.09829421,-0.07240353,-0.22006096,0.48802623,0.18146177,-0.011251523,0.023252875,-0.11342957,0.28571314,-0.28439558,0.3583029,0.1483087,0.6341538,0.5090411,-0.14842747,0.4914139,0.7994527,0.8402611,0.037992314,1.0349143,0.28584257,-0.0026184672,0.16928965,-0.2547715,-0.39376107,-0.46966216,-0.14167285,0.035745677,-0.36281037,-0.2315581,0.06254331,-0.38546208,-0.83097875,0.62452227,-0.10242358,0.020326294,-0.016509715,-0.10122204,0.26807415,-0.13931064,-0.09565589,0.04623777,-0.022715092,-0.6682154,-0.34577033,-0.6892689,-0.59070885,-0.16222343,1.011674,-0.023020048,-0.026465328,0.043796904,-0.16389467,0.097348996,-0.0015505444,-0.086073324,-0.13689603,0.36760533,0.04399494,-0.8336277,0.47247553,-0.14409173,-0.07197959,-0.6087823,0.07127935,0.6337502,-0.63190055,0.33022618,0.48702306,0.14573711,0.06021334,-0.49790394,-0.024623942,-0.082417935,-0.1591095,0.34926635,0.25248754,-0.6498484,0.37933147,0.3269943,-0.35613474,-0.7063455,0.6548754,0.016794968,0.01075995,-0.20749567,0.32768533,0.22187072,0.10348234,-0.23106419,0.38201046,-0.40654027,0.22602268,0.24085855,0.02607047,0.44711658,-0.05166957,-0.09697118,-0.8691547,0.0077374172,-0.49219358,-0.34460914,0.26915744,-0.054821517,0.028648783,0.12100666,0.48591903,0.22537242,-0.3813763,0.0054172617,-0.0327767,-0.36099693,0.4607667,0.6161956,0.73080534,-0.494175,0.5622587,0.17305389,0.17506018,0.16728811,-0.11648657,0.47696722,0.031647217,0.32290268,0.3740781,-0.15305905,-0.016114695,1.0106711,0.22286168,0.591922,0.1139739,-0.12648441,0.16549875,0.071158975,0.21423556,0.059116866,-0.8341865,0.073166534,-0.050286043,0.009235361,0.6273202,-0.022502786,0.2264134,-0.046579596,-0.34131253,0.008908767,0.34678182,-0.092026025,-1.8642613,0.49274436,0.18192159,0.71207947,0.5888495,-0.078343265,0.3478452,0.7064827,-0.054468013,0.08366073,0.5440503,0.2013853,-0.64766926,0.5916876,-0.67667025,0.5338116,-0.018120164,0.013983196,-0.13100189,-0.04246809,0.47919732,0.70721763,-0.11960518,0.13078426,0.025824076,-0.34760717,0.07398335,-0.6040151,0.01661882,-0.37443352,-0.05458168,0.78215957,0.70105726,0.22862796,-0.116813205,0.08174289,0.041952875,-0.056646656,0.3075455,-0.1120928,0.011197939,-0.12398834,-0.73584646,-0.23254232,0.6803563,0.05009762,0.27767083,-0.13455433,-0.23079419,0.20363578,-0.042445336,-0.2253261,-0.054768242,-0.86598724,0.103212506,-0.51482236,-0.54726166,0.34425414,0.05962579,0.25039834,0.23290285,0.14586806,-0.4068093,0.3068841,-0.013762658,0.59357375,-0.10457024,-0.26356313,-0.17002493,0.17049727,0.2652886,-0.37274057,-0.15948184,-0.2669432,0.13461713,-0.16914037,0.48438227,-0.1362866,-0.43467614,0.039806113,-0.08946225,0.027106266,0.42916143,-0.22483067,-0.101642445,0.047128532,-0.016962625,0.012791357,-0.27023175,-0.12691565,0.25080332,0.23731782,-0.19300622,-0.112468,-0.18140258,-0.10599586,0.61749315,0.008424564,0.4347349,0.73850024,0.14243874,-0.65587586,-0.27230543,0.072126344,0.76283973,-0.05413536,-0.22328566,-0.58474904,-0.38722897,-0.28898457,0.40454915,-0.23275295,0.36798537,0.24494332,-0.5143575,0.5839758,0.19771658,1.3366737,0.1285738,-0.40393475,0.18425259,0.40639532,0.052796874,-0.16111471,-0.52794915,1.0010754,0.40464133,-0.42485774,-0.17177881,-0.5873381,-0.009551704,0.04070451,-0.20151792,-0.26555943,-0.03261992,-0.7433653,-0.20574483,0.35521373,0.3800526,0.032690037,-0.22082004,0.043210283,0.29645598,-0.022763748,0.5179821,-0.49355382,-0.23954368,0.4267494,0.26749623,-0.035122532,-0.04332865,-0.52076703,0.31548175,-0.5196984,0.043781463,-0.47977683,0.17494689,-0.2821431,-0.51899874,0.23736173,0.022929348,0.50024104,-0.15822841,-0.461998,-0.23656473,0.46814057,0.17597394,0.12468717,0.52015877,-0.14808689,0.028881943,-0.044310387,0.61538815,1.0702409,-0.20333542,0.21532327,0.2165688,-0.34187528,-0.49305093,0.2142847,-0.40008155,0.37326643,-0.09758219,-0.20997071,-0.8864237,0.17761415,0.2138218,-0.032722153,-0.07429708,-0.5295425,-0.40808746,0.34903497,-0.4150754,-0.32832766,-0.42954415,-0.032175876,0.68297505,-0.39097396,-0.18319511,0.015031121,0.32261264,-0.0990096,-0.405999,-0.2638037,-0.18166198,0.31101063,-0.042240344,-0.42500117,-0.102152914,-0.0042722225,-0.4253437,0.20991054,0.21654326,-0.47112954,0.06951893,-0.21732527,0.05396495,1.0339127,-0.116028816,0.24171066,-0.49602348,-0.41697234,-0.9055389,-0.28790405,0.383315,0.21038762,-0.07130699,-0.57606626,-0.13851187,-0.063190244,-0.17310056,-0.1081877,-0.46190417,0.4397127,0.113995545,0.66537774,0.03142288,-0.65333617,0.05438998,0.22687839,0.021630807,-0.63079983,0.6380597,-0.09510097,0.88366216,0.08668525,0.17733736,0.022073628,-0.47531813,0.0045303325,-0.09973383,-0.08703295,-0.7388035,0.3436048,835 -963,0.63242704,-0.31933212,-0.3014843,-0.06439713,-0.1270359,0.09157341,-0.35944468,0.44814098,0.11112494,-0.5848563,-0.244626,-0.03168893,-0.12161258,0.49200583,-0.28788283,-0.6881945,0.112648614,-0.010997582,-0.4647871,0.9576143,-0.4485136,0.35268462,-0.10855926,0.60163444,0.11069921,0.281367,0.35306504,0.30597395,-0.15130669,-0.34249535,0.14216965,-0.049881045,-0.4698185,0.38139632,-0.072929315,-0.3269978,-0.07395074,-0.20975652,-0.16397682,-0.96222585,0.49876165,-0.9826601,0.512706,-0.25886595,-0.48458382,0.09056044,0.27373272,0.03723284,-0.34451574,-0.07491277,-0.14774552,-0.17970915,-0.07621761,-0.62564754,-0.064142235,-0.3416403,-0.4688973,-0.0023587488,-0.37481558,-0.25504282,-0.17734517,0.2674903,-0.42010596,0.009670761,0.07053102,0.6984761,-0.44170657,0.13180926,0.0475814,-0.32397294,0.15169714,-0.8018913,-0.34396446,-0.12461361,0.18081836,0.15688743,-0.3263754,0.38215914,0.09677363,0.275749,-0.19201349,-0.049503747,-0.09291548,-0.2740038,0.10385167,0.5261581,-0.333875,-0.6730244,-0.20117775,-0.37614822,0.32803583,0.14460514,0.3336318,-0.189823,0.051742744,-0.15507421,-0.33925423,0.36904222,0.6480765,-0.2646353,0.06574325,0.069136195,0.5111892,0.012588772,-0.3563666,0.01394646,-0.09472249,-0.45599157,-0.16186684,-0.10812116,0.10116451,0.66356045,-0.09629475,0.41326064,0.42747784,-0.3596944,0.0035652085,0.21701545,0.06798846,-0.049550727,-0.17561568,-0.31819597,0.31184375,-0.28574657,-0.071066685,-0.6594792,0.6070335,0.16334023,-0.5078137,0.40509546,-0.36023548,0.076009005,0.042730514,0.5805425,0.67075276,0.7000062,0.18782906,0.58804643,-0.3186131,-0.096545175,-0.03685471,0.10518145,-0.099030845,-0.27352664,0.1268787,-0.36086175,0.2668311,0.12534261,-0.004057288,0.06855574,0.55157846,-0.49394616,-0.15820137,-0.12605686,0.75110173,-0.31690085,0.30036175,1.0871131,1.2273148,0.90044236,0.03979883,1.2882832,0.31410515,-0.09605206,-0.15224975,0.1907258,-0.589811,0.17527503,0.43710604,0.30424857,0.31976035,0.010273408,-0.16386431,0.4631662,-0.41990444,-0.24849115,0.05400635,0.72036785,0.2920831,-0.17288722,-0.46678674,0.14871262,0.2999014,-0.09536708,0.18023546,0.45110244,-0.24125227,0.6859157,0.13834035,1.2641598,0.03129165,0.042287983,0.21215329,0.55055636,0.20371984,-0.15673643,0.33389306,0.21746884,0.2583049,-0.011241588,-0.45649108,0.19888383,-0.1293651,-0.73985654,-0.13470712,-0.32525155,-0.1703148,-0.19302759,-0.24373291,-0.4048569,-0.044768218,-0.027466005,0.0673312,-2.6040037,-0.2701957,-0.22771153,0.41882184,-0.19760089,-0.25606024,0.012507211,-0.34500572,0.6859295,0.4459872,0.39357397,-0.59828556,0.18294168,0.6104998,-0.4749876,-0.039200414,-0.606353,-0.010663307,-0.084367655,0.6726934,0.007217212,-0.27385294,0.035208117,0.19245663,0.46171874,0.015594837,0.095395856,0.23274404,0.304486,-0.22943777,0.19020139,-0.077381164,0.4655277,-0.47704965,-0.1272759,0.35890272,-0.63034827,-0.06267701,-0.11758518,0.15200777,0.40771905,-0.5487632,-0.5997263,-0.8220469,-0.0014014569,1.2400597,-0.036263093,-0.98160225,0.25676474,-0.35524833,-0.38644293,-0.1683328,0.5386638,-0.27818838,0.041468333,-0.6201948,0.058485433,-0.23016073,0.37931922,-0.07014542,-0.03488528,-0.5385528,0.7901058,-0.029707193,0.3573967,0.24635263,0.24736066,-0.64245504,-0.48463285,0.13425301,0.8337511,0.565324,0.14556716,-0.11429725,-0.13651562,-0.23957224,-0.2941562,0.022761406,0.98721695,0.6041527,0.07667872,0.14324746,0.24481899,-0.36236498,0.07250888,-0.15724967,-0.3457515,-0.22141665,0.24110556,0.82458264,0.64498454,-0.055045225,0.18204767,-0.012020967,0.46297437,-0.37288237,-0.44088018,0.4405507,0.7390017,-0.23985456,-0.39687243,0.5687889,0.44902793,-0.6189698,0.36391908,-0.6515804,-0.41462696,0.62920195,-0.19367786,-0.45457858,0.20397286,-0.3318378,0.28321525,-0.6034843,0.46618178,-0.42035624,-0.50050086,-0.6415279,-0.20699553,-3.178902,0.13375086,-0.105729155,-0.33633068,-0.36790955,-0.30846745,0.20587163,-0.5717932,-0.3750974,0.16586633,-0.009760693,0.6020877,-0.078647844,-0.017194418,-0.32575706,-0.5449579,-0.14643763,0.28578424,-0.08625692,0.29960087,-0.11228237,-0.344759,0.03209163,0.06226395,-0.52793795,-0.028884178,-0.39747956,-0.6621095,-0.15937735,-0.28224602,-0.07276352,0.7487002,-0.28677246,0.07150822,-0.43635333,-0.1060755,-0.2259652,0.20696817,0.20806317,0.21649216,0.084257066,-0.106219746,0.26451617,-0.45905387,0.11727513,0.12596127,0.3037728,0.594106,-0.35292506,0.086857654,0.28277215,0.70348704,0.23107634,0.91741747,0.056171622,0.036928117,0.6555915,-0.30245927,-0.55448,-0.31267592,-0.22499298,0.26414958,-0.33002874,-0.120534584,-0.2537923,-0.3789082,-0.5792862,0.5185174,0.0026212065,0.20748113,-0.083084464,0.5044469,0.386401,-0.08480525,-0.17039515,0.08203318,-0.18221149,-0.58054024,-0.20960125,-0.6539571,-0.564364,0.08520331,0.6683748,0.090366654,-0.078304835,0.17170992,-0.20625149,0.049368914,0.18069702,0.16042362,-0.099079534,0.08413613,-0.0067856205,-0.7985252,0.5988465,0.047906753,-0.32747877,-0.61184365,0.2492365,0.7990524,-0.5963647,0.4230669,0.21118179,0.15917271,-0.4649848,-0.38432896,0.06427994,-0.055380818,-0.30423257,0.25930884,0.32494405,-1.0193399,0.40949708,0.36229217,0.1457715,-0.49687764,0.46791524,-0.07164589,-0.4170089,-0.17290045,0.5044229,0.16320612,0.066394985,-0.2697604,0.30198452,-0.58393013,0.17412418,0.020750197,0.036066964,0.60349464,-0.15806478,-0.3134474,-0.78319323,0.041208964,-0.724593,-0.39557818,0.22201404,0.12168474,0.16476168,0.20880912,0.12477515,0.5179506,-0.27054393,0.19815904,-0.25444317,-0.33159935,0.30056143,0.55099446,0.45879367,-0.29270566,0.7504959,0.12055575,0.08763168,0.031231446,0.07212002,0.45377114,0.089093566,0.5399927,-0.15100735,-0.11860576,0.16771415,0.88427466,0.37311402,0.6228688,0.13744141,-0.29656547,0.21481067,0.09265476,0.18948168,0.14159675,-0.46926564,0.08530379,0.08665811,-0.006471597,0.50679123,0.1223757,0.3972481,-0.01739318,-0.37094685,0.03120236,0.113288835,-0.052280184,-1.3804629,0.17116837,0.15479037,0.9057997,0.52995086,-0.15701346,-0.12055945,0.58817166,-0.08561473,0.08547345,0.30578268,0.06869165,-0.35807943,0.5894583,-0.63982886,0.47007382,-0.12558469,-0.03055918,0.052429236,-0.05461681,0.31396687,0.64021057,-0.12026464,0.10594464,0.059377454,-0.38178504,0.14750814,-0.5315437,-0.07768247,-0.23645009,-0.24019207,0.42306206,0.42190114,0.3855655,-0.3111126,0.066880874,0.1902855,0.008513272,0.3155675,0.028399164,0.15437654,-0.4728637,-0.4953439,-0.29068145,0.44925344,0.010520166,0.28413314,0.18869656,-0.18895549,0.19249044,0.14339161,-0.01709329,0.0128701115,-0.5381907,0.22779612,-0.37440443,-0.476841,0.5874167,-0.06410304,0.13177758,0.34884608,0.007080525,-0.30320334,0.113129266,0.14835571,0.55517524,0.13997255,-0.22452573,-0.4330923,-0.014995775,0.19203697,-0.44550982,0.14918503,-0.17772387,0.0033293853,-0.4397602,0.2878726,-0.12925762,-0.20381604,0.048800383,-0.029125659,-0.010069652,0.5072847,-0.09274587,-0.12904896,0.0659114,-0.08565991,-0.16284432,-0.263105,-0.11511422,0.28259385,0.10392085,0.24197572,-0.004800646,0.013472861,-0.080197014,0.34386903,0.076937445,0.24668288,0.53606445,-0.100403376,-0.3676564,0.12784292,0.10671938,0.62798166,-0.051410988,0.15039323,-0.1661553,-0.8795326,-0.4813662,0.40368527,-0.056530226,0.20849681,0.17222764,-0.39226457,0.81121707,-0.02201926,0.8066531,-0.16436031,-0.40837944,0.1080291,0.5648037,-0.137748,-0.0630596,-0.33442843,1.0037621,0.48271248,-0.39113614,-0.036418095,-0.27141258,-0.15360726,0.35443687,-0.27108818,-0.24117184,-0.21027479,-0.7203844,-0.2818127,-0.014577285,0.28140828,0.041057106,-0.12540342,0.12743029,0.43072045,0.13479061,0.2524178,-0.5319485,0.1633306,0.4636318,0.06033447,-0.21112488,0.12656154,-0.28054923,0.14308672,-0.645537,0.14435655,-0.55464005,0.050318424,0.09750945,-0.565921,0.22645336,0.09338021,0.18983859,-0.41987717,-0.38829386,-0.2333005,0.2947247,0.23989703,0.23736101,0.34027502,-0.074074395,0.022745263,0.13206269,0.50640494,1.1089431,-0.036596384,0.08565417,0.03766227,-0.74275345,-0.931747,0.20160604,-0.19929792,0.2996227,-0.062544726,-0.23364978,-0.721328,0.19274908,0.39682645,-0.09362061,-0.13456494,-0.59231526,-0.5712106,0.14045548,-0.48323643,-0.2703585,-0.35563657,-0.018812688,0.40809023,-0.2587243,-0.05605613,-0.20905067,0.39391172,-0.39223433,-0.7715811,-0.23232959,-0.32927552,0.45457622,0.1367411,-0.32443914,-0.2318367,0.1275544,-0.4821044,0.10926005,-0.053338483,-0.39980602,-0.014573455,-0.4181919,-0.015333002,0.62954605,-0.11293923,0.34284362,-0.6429113,-0.61882377,-0.8056481,-0.42549294,0.26726493,0.19158007,0.17915395,-0.7586103,-0.1378194,-0.2631264,0.09188895,0.01536274,-0.19783908,0.37419227,0.15614243,0.48178566,0.019785322,-0.7630732,0.25243342,0.15265597,0.06111795,-0.5981274,0.47018605,-0.15963982,0.7515501,0.10616751,-0.09211287,0.18283176,-0.60768676,0.30654272,-0.11838035,-0.37883675,-0.41407079,0.32893193,853 -964,0.32994053,-0.32601985,-0.68925,-0.108085066,-0.22537942,-0.00056348066,-0.29785827,0.4195629,-0.05518171,-0.65739864,-0.117693424,-0.25311536,0.036785066,0.26206458,-0.15737228,-0.40713158,-0.0052591343,0.39520738,-0.35631981,0.32687104,-0.598939,0.14775814,-0.09805334,0.3119836,-0.12981482,-0.011165956,0.2350583,0.13063598,-0.3143287,-0.35875353,0.056171324,0.022818977,-0.6312301,0.11260235,-0.27923566,-0.58163375,-0.05195156,-0.4083545,-0.30212176,-0.7815046,0.23571959,-1.0529568,0.50276583,0.12261221,-0.31682283,0.30650538,0.29987213,0.49767768,-0.16486736,0.06438113,0.16846485,-0.43809253,-0.21528362,-0.48856008,-0.2688368,-0.39149228,-0.6438889,0.008510157,-0.5621914,-0.18561763,-0.22979806,0.2528107,-0.26217714,0.14519006,-0.40720892,0.72276425,-0.39998987,-0.08511103,0.19831905,-0.0584682,0.30657712,-0.48489615,-0.08725393,-0.20294094,0.010973632,-0.13864961,-0.36986864,0.3175051,0.13025579,0.4190936,-0.23238039,-0.2982612,-0.37725547,-0.12929355,0.31576717,0.4692062,-0.15080684,-0.35845372,-0.18313676,-0.0499496,0.065035865,0.24451803,0.065161854,-0.2921215,0.13978527,0.17151037,-0.3340614,0.39398968,0.7120867,-0.34007645,-0.15947331,0.27916878,0.5619909,-0.2183539,-0.3417075,-0.051842425,0.006937715,-0.4573556,-0.22134042,0.27955878,-0.21932377,0.5991269,-0.21250567,0.19724026,0.44424745,-0.47467557,-0.21445245,0.009264068,0.15525346,-0.022471653,-0.40112373,-0.60276026,0.62554604,-0.6225794,0.06781314,-0.43094072,0.91225815,0.017003251,-0.5418854,0.44868603,-0.62516063,0.15777023,-0.064156845,0.7215146,0.477471,0.66814834,0.56813455,0.57526356,-0.4083695,0.00981099,-0.17298761,-0.31019375,-0.012246748,-0.391346,0.1732954,-0.3475789,-0.02501723,0.031614866,-0.26509145,-0.15173076,0.63374525,-0.36548215,-0.18285853,0.28472212,0.6421743,-0.39703313,-0.015574493,0.7578608,1.2640084,1.2193545,0.25998685,1.2301425,0.33451173,-0.23310119,0.026047034,-0.008588123,-0.7609597,0.3069549,0.24127604,-0.055677067,0.29121506,0.13102423,-0.0073140045,0.47056153,-0.6252226,0.03993295,-0.11816297,-0.015592748,-0.011099295,0.03309023,-0.5089954,-0.12182348,0.20339184,-0.18354706,-0.0065569934,0.4252599,-0.27099776,0.3567835,0.044403244,1.398341,-0.14857823,0.111453004,0.25261375,0.38886738,0.042316366,-0.14171483,0.056157406,0.26487368,0.24091482,0.19876672,-0.47494212,0.085387774,-0.17716128,-0.6171017,-0.21739005,-0.34005907,0.050641872,-0.15575545,-0.56603235,-0.14660296,0.03909136,-0.3970395,0.32882383,-2.4793625,-0.1873493,-0.21051644,0.4223585,-0.32088664,-0.41421345,-0.04229848,-0.6657916,0.52240807,0.44201633,0.3034076,-0.52420974,0.48572978,0.3353717,-0.34001276,-0.06442966,-0.9172693,-0.03975952,-0.3889345,0.32586476,0.06090342,-0.25862953,0.012170618,0.015617398,0.6203402,-0.20402546,0.050867006,0.34670532,0.30049452,-0.09224582,0.6119156,0.12666956,0.40370786,-0.73291034,-0.30456054,0.24661385,-0.48721984,0.10986195,0.12297149,0.05898342,0.48464572,-0.686297,-0.9731213,-0.6589399,-0.2206471,1.1443849,-0.2924082,-0.45644283,0.28309786,-0.3776266,-0.36316803,-0.35956314,0.4108135,-0.05682852,0.096921615,-0.856604,0.09206696,-0.07997494,0.42199385,-0.094986156,0.112987705,-0.49996215,0.5663298,-0.3447956,0.51385695,0.5423979,0.13061365,-0.53714776,-0.34582242,0.017968625,1.0703979,0.27533656,0.16066656,-0.37909558,-0.23896547,-0.065871365,0.010844604,0.13423902,0.45341098,0.6860375,-0.080329604,0.14683706,0.40055266,-0.1622992,-0.034650803,-0.16002831,-0.45665666,-0.12517564,0.09179937,0.7357327,0.49846995,0.01460348,0.51578856,-0.1446135,0.40493232,-0.43558103,-0.2852841,0.25371858,1.1186094,-0.07647154,-0.2828419,0.7384621,0.6475887,-0.57109886,0.63949,-0.59657866,-0.34818757,0.24795757,-0.15983698,-0.5641134,0.18819016,-0.28093874,0.28738356,-0.6102591,0.40925702,-0.2932069,-0.633966,-0.7580378,-0.33669007,-3.5125747,0.4113118,-0.070741355,-0.13690633,0.09023524,-0.32419336,0.19075607,-0.55412066,-0.5239959,0.19721346,0.14233272,0.7391756,-0.07058433,-0.10023501,-0.46971127,-0.32863474,-0.2550493,0.32197192,0.35285,0.15756248,-0.070239335,-0.48046485,0.124758765,-0.30576232,-0.39466724,-0.13440607,-0.7030051,-0.30151328,-0.25675094,-0.6022047,-0.6399961,0.73446006,-0.31971332,0.08365297,-0.32243744,-0.05494733,0.07431236,0.48510763,0.051699992,0.26255763,0.044288475,-0.14408892,0.029038755,-0.2397542,0.06170962,-0.0069462997,0.1549337,0.53049845,-0.20306717,0.10772758,0.5093448,0.7303383,0.041255567,0.9968905,0.5026459,-0.07091835,0.2529651,-0.2636653,-0.17621954,-0.72636133,-0.204742,-0.08332945,-0.56485546,-0.3398239,0.075291984,-0.18657543,-0.8657951,0.91461927,-0.16108671,0.025199635,0.09522371,0.6530619,0.44403365,-0.14640655,-0.22366033,-0.080313794,-0.05251666,-0.44233367,-0.4535966,-0.6666104,-0.45476544,-0.20558992,1.2783984,-0.013461042,0.022745533,0.07100078,0.04255766,0.09335084,0.39357522,0.04251287,0.2672044,0.5944038,0.0035218596,-0.535688,0.23972225,-0.20408791,-0.14910007,-0.70203215,0.337258,0.8555519,-0.6975415,0.62263894,0.51067173,0.20824355,-0.4219794,-0.588737,-0.29720554,0.16677962,-0.17328623,0.6343139,0.3231614,-1.1704751,0.44730127,0.33522394,-0.29606816,-0.7905268,0.53692836,-0.13569261,-0.28837085,-0.1053309,0.44727552,-0.11904457,0.04233021,-0.10603042,0.3154978,-0.40890026,-0.019544471,0.34961894,0.017699081,0.32474333,-0.42734215,-0.038306475,-0.6497169,-0.0044213803,-0.5822851,-0.22097021,0.2375575,-0.07183129,-0.047742363,0.581252,-0.077145144,0.38398123,-0.1939507,0.07411465,-0.14142272,-0.36582738,0.59015703,0.48171538,0.27364987,-0.51274645,0.7783937,0.038276896,-0.14274964,-0.5532976,-0.12257255,0.42738074,0.01565264,0.6125678,0.006281923,-0.30546653,0.39422598,0.84979683,0.41999817,0.9370697,0.2507144,0.016757255,0.08597546,0.18248858,0.2803763,-0.087151244,-0.52206826,0.060086425,-0.25144002,0.19057666,0.34482822,-0.07825007,0.4718954,-0.21330835,-0.0675973,0.061638866,0.0055755754,-0.16774227,-1.2870321,0.4732112,0.17129332,0.56360364,0.48856086,0.11515394,-0.017793475,0.48273352,-0.43493098,0.03550498,0.18818945,0.14434324,-0.27115992,0.6627603,-0.744594,0.37535745,-0.26689863,0.023919605,-0.21884204,0.096064895,0.48061648,0.72673863,-0.15044715,0.2302183,-0.10832309,-0.16616565,0.45225474,-0.36736754,0.33564255,-0.50075984,-0.39951056,0.8950365,0.35361046,0.6387976,-0.13402009,-0.1519849,0.15141365,-0.069209784,0.19931608,0.07269298,0.16224042,0.04279592,-0.75209904,-0.07247357,0.5967691,0.14771795,0.08412309,0.19477533,-0.2978578,0.30425677,0.091101795,-0.13102768,0.10751939,-0.57318056,-0.00026650864,-0.31314948,-0.4845672,0.3893264,-0.26097444,0.21781336,0.22424527,0.079507396,-0.5944548,0.24552868,0.48733672,0.62981796,0.060140956,-0.05899193,-0.18118836,0.18455319,0.15527253,-0.23551041,0.12923673,-0.3653806,0.15403804,-0.6278168,0.43574783,-0.18826352,-0.52802926,0.24665666,0.019961156,-0.1393494,0.780335,-0.049375165,-0.06219137,0.16967171,-0.19076537,-0.13506623,-0.37069666,-0.09610344,0.34647945,-0.20115282,0.03964434,-0.0023514656,0.04558344,-0.0018094019,0.6353209,-0.059039537,0.15052775,0.4295909,0.2815015,-0.39855564,0.06264489,-0.2980933,0.7621044,-0.07495146,-0.20771493,-0.30542448,-0.3242612,-0.16427118,0.152714,0.054136015,0.30319926,0.24273323,-0.2880716,0.9764035,-0.16803643,1.1069596,-0.04345194,-0.4679118,-0.12170289,0.39171764,0.09022946,-0.17884251,-0.33294886,0.9114385,0.53216386,-0.09333858,-0.15694359,-0.49955025,-0.041402925,0.10454245,-0.18217677,-0.43409264,-0.030000823,-0.6921947,-0.042852428,0.25701356,0.35939693,0.24624725,-0.18423901,0.5674057,0.41361472,0.04068966,0.22359218,-0.22149864,0.21558131,0.4390583,0.34822056,-0.08058229,0.015762405,-0.30316913,0.25051016,-0.6610083,0.01611612,-0.30834323,-0.019771999,0.11621124,-0.2742917,0.2590556,0.21894468,0.2632608,-0.21446119,-0.09110131,-0.052446615,0.5247457,0.24029852,0.3029657,0.7030914,-0.14905216,0.21089363,0.051314343,0.507628,1.3323659,-0.2750925,-0.07956174,0.21924391,-0.273737,-0.8845619,0.38603947,-0.30952978,0.17932248,0.05350785,-0.32744625,-0.598918,0.12932605,0.19870782,-0.37063786,0.26100835,-0.41008255,-0.13378982,0.18733273,-0.3393947,-0.21731333,-0.35546485,0.18518664,0.52532274,-0.14260326,-0.2687159,-0.17024164,0.44129306,-0.2368399,-0.34368724,-0.10742066,-0.4451326,0.21918158,-0.0023741939,-0.33543566,0.23941053,0.008153265,-0.5313698,-0.042427965,0.267433,-0.21227235,0.20778441,-0.38421962,-0.06419143,0.81627184,-0.092924215,0.10130839,-0.43369523,-0.6516527,-1.0931332,-0.11069414,0.4165717,-0.12317798,0.1123159,-0.5758498,-0.00015197018,-0.021608148,-0.20796515,-0.07780926,-0.4668504,0.3037713,0.20604537,0.47953895,0.06691592,-0.6047501,0.14984156,0.088579826,-0.19507183,-0.25233987,0.61781865,-0.08221532,0.87272716,-0.019530607,0.22624828,0.261701,-0.5229425,0.25517377,-0.15465023,-0.19163913,-0.60741216,-0.18543124,876 -965,0.6327385,-0.58186966,-0.54289645,-0.19913769,-0.116998814,-0.13614665,-0.03265053,0.61175025,0.11631749,-0.52286065,-0.27771482,-0.23877282,0.17185411,0.22529039,-0.23589009,-0.51242834,-0.0819169,0.23918295,-0.35500115,0.6287998,-0.2394116,0.05112137,-0.10197845,0.5192551,0.43033937,0.34561375,0.003910108,0.020890214,-0.25330737,-0.15415023,-0.095325656,0.1722797,-0.70527595,0.07317316,-0.20092975,-0.3842803,-0.027956974,-0.5678448,-0.43781233,-0.7505772,0.10832986,-0.9878782,0.564947,0.15364237,-0.43346235,0.26188165,-0.045254495,0.32876185,-0.42566517,-0.07994388,0.22246055,-0.12048283,-0.03029456,-0.3038199,-0.04087181,-0.54793596,-0.6084818,-0.14109395,-0.32476756,-0.32747298,-0.17209224,0.04820076,-0.32744035,-0.018602436,-0.11034396,0.7393518,-0.613182,0.055374417,0.1335127,-0.0826729,0.40754578,-0.5660148,-0.21687931,-0.23525342,0.13801464,-0.14438845,-0.27434742,0.21236467,0.12492439,0.30729264,-0.061776318,-0.1444169,-0.27893814,0.047383036,0.113830924,0.3488343,-0.17114319,-0.47650605,-0.11472391,-0.10474736,0.12600054,0.3012301,0.36298257,-0.23724361,-0.09963042,0.19689964,-0.1541803,0.41962042,0.51355445,-0.15835305,0.044557337,0.14895684,0.60365015,0.23313765,-0.20137306,-0.07449501,0.034856353,-0.49850035,-0.2766557,0.053347528,-0.3283226,0.9290068,-0.12698902,0.19344664,0.7269037,-0.25971115,0.010051662,0.07712399,0.1604312,-0.15879078,-0.4018794,-0.55609363,0.46702355,-0.3709115,0.20460391,-0.33931527,0.76932806,0.24763368,-0.50478625,0.2400526,-0.6013496,0.18900609,-0.16743493,0.590215,0.4772713,0.542998,0.5557573,0.43939564,-0.44961688,0.13312934,0.21863914,-0.35513887,0.17229104,-0.26496002,-0.0873071,-0.48782063,-0.16048168,-0.1753092,-0.31229603,-0.15533453,0.61207455,-0.54152846,-0.03545654,0.2410778,1.0012611,-0.3076162,0.018899966,0.72293985,1.227159,0.98688334,0.046063587,1.1248139,0.3135142,-0.3384559,0.15298663,-0.027039148,-0.7437987,0.29920667,0.46744567,-0.23197006,0.41136482,0.18680254,-0.18728824,0.506187,-0.5374574,0.1422175,-0.06591877,-0.027791072,0.034329534,-0.17767352,-0.7883639,-0.19738597,-0.24149412,0.0017560233,-0.3821782,0.36941954,-0.25552502,0.38604262,0.05557613,1.812793,-0.025021486,-0.063997254,0.03840315,0.591042,0.06315256,-0.20632796,-0.020074774,0.49437717,0.45421678,0.3648019,-0.5117416,0.21001972,-0.20072564,-0.42287815,-0.26401475,-0.4325485,0.047030553,-0.10353636,-0.5530453,-0.1325679,-0.14182429,-0.0381852,0.21598949,-2.3145177,-0.055228267,-0.25498828,0.60885453,-0.18231887,-0.31460255,0.27576414,-0.48866245,0.21092682,0.3879388,0.51071286,-0.7625462,0.46131992,0.6249058,-0.5569778,0.012638915,-0.6760997,-0.3687533,-0.11522266,0.46553758,-0.11722922,0.13112797,0.18975852,0.29979733,0.56142676,0.040262286,0.23172717,0.24273413,0.47274953,-0.2945307,0.7062821,0.14882009,0.38752472,-0.123545215,-0.11731913,0.21363544,-0.24229355,0.14597268,-0.017135559,0.115283616,0.5287828,-0.52395636,-0.8907324,-0.6032301,-0.09590264,1.0753764,-0.39576122,-0.39082897,0.2914039,-0.4128814,-0.33093038,-0.23748296,0.39136934,-0.13512994,0.04146916,-0.895615,-0.019634973,-0.060101423,0.084269226,0.015615822,-0.0627547,-0.54101396,0.75681823,-0.07143393,0.56609225,0.5297529,0.23279892,-0.19449963,-0.57142234,0.04352279,0.993685,0.4615847,0.09290979,-0.43268117,-0.15563774,-0.24241239,0.18301448,0.12691112,0.48577994,0.851969,-0.22614585,0.22522198,0.36401433,-0.067848824,0.001014211,-0.19508745,-0.38074028,-0.16484803,-0.06534929,0.48845342,0.8553917,-0.19037575,0.48552325,-0.17410123,0.586514,0.025075424,-0.4190176,0.2533624,1.302856,-0.15884128,-0.19915856,0.7913132,0.68354183,-0.52496165,0.5141457,-0.6285595,0.0017820813,0.48037606,-0.1975789,-0.504795,0.44510955,-0.30533898,0.22426048,-0.99170077,0.50312316,-0.11477674,-0.48176992,-0.70790076,-0.2495097,-3.3828013,0.29908422,-0.48410398,-0.37134856,-0.014931072,-0.36079594,0.28174275,-1.0823284,-0.517678,0.25403154,-0.004529235,0.72532743,-0.031986754,0.052854713,-0.35361665,-0.4346213,-0.17775719,0.15691449,0.2584268,0.22983836,-0.18368864,-0.62490976,-0.06185678,-0.016747849,-0.37245008,-0.030907894,-0.65585226,-0.56391865,-0.1778641,-0.65109617,-0.3137045,0.6627716,0.057234243,0.0947712,-0.1346402,-0.054217257,-0.058892503,0.099757,0.19421583,0.38742554,-0.13234176,0.0056248903,0.11834648,-0.28695107,0.053834643,0.13206433,0.5100243,0.051464316,-0.10207903,0.21329886,0.594249,0.5205378,-0.17132916,0.94754845,0.68556696,-0.26147035,0.22022893,-0.13731344,-0.44597006,-0.773652,-0.54044205,0.00011089715,-0.4269678,-0.4065525,0.071699075,-0.38271588,-0.7343664,0.78911644,-0.11318786,0.3313968,-0.018671155,0.27688113,0.7013406,-0.24958615,-0.32522666,0.026756173,-0.16985002,-0.7343131,-0.104063034,-0.8221741,-0.5372912,0.242849,0.8393104,-0.22338496,0.06340032,0.12989502,-0.30652082,0.24784683,0.1705151,-0.16734606,0.019722028,0.6171437,-0.010041849,-0.66931987,0.5488905,-0.025101228,-0.21829389,-0.5236309,0.20471649,0.69243515,-0.74035394,0.74707884,0.3869651,-0.12950474,-0.18604998,-0.6377793,-0.31515282,-0.14685588,-0.09166169,0.53607386,0.34331945,-0.810726,0.19111495,0.27805954,-0.35735872,-0.71813726,0.8270826,-0.19321309,-0.38975012,0.018660514,0.32722792,-0.032991704,-0.025319178,-0.25894374,0.43521512,-0.29238972,0.16444184,0.5430271,-0.1379505,-0.07323183,0.09379785,0.22213699,-0.9574686,0.27521726,-0.52858347,-0.37448347,0.41606483,0.02724389,0.043788828,0.24742633,0.34737456,0.25167274,-0.31075895,0.112318486,-0.044760644,-0.4842704,0.61016536,0.5488212,0.49554205,-0.47999507,0.54806566,0.031651307,-0.09973485,-0.03139571,0.00714094,0.38275796,0.07245247,0.42917702,0.10353823,-0.22428797,0.2116047,0.7053069,0.31213987,0.89363,0.2625907,0.13101472,0.15703364,0.19958873,0.37185314,-0.023397792,-0.7112976,0.2967419,-0.02657504,0.12979928,0.46026945,0.03949146,0.29929313,-0.21714574,-0.32047734,0.113264635,0.28843093,0.2178877,-1.3060037,0.2588789,0.22179207,0.7318345,0.59367585,0.13126408,-0.19241124,0.56723297,-0.22465649,-0.016485013,0.4302933,0.3456309,-0.665107,0.6451567,-0.7029075,0.38659468,0.036409102,0.05639023,-0.16620497,-0.21116619,0.4096505,0.6978991,-0.14384681,-0.021781344,-0.10154574,-0.3051832,0.17713343,-0.69388676,0.0042518754,-0.4966079,-0.37754527,0.6059976,0.6121841,0.4217695,-0.18964724,0.019547137,0.08200333,-0.2822075,0.4273407,0.12732957,-0.09798017,0.09249315,-0.91943353,-0.2687357,0.42399818,-0.4310489,0.036125444,-0.24780846,-0.28104234,0.15350576,-0.12197903,-0.18695645,0.16551228,-0.84016997,-0.06811053,-0.5175765,-0.58025426,0.6023211,0.07976047,0.13714837,0.122168966,0.012558862,-0.1980651,0.17986245,0.06379271,0.9523062,0.12320461,-0.15523142,-0.37095964,0.13029775,0.27903935,-0.1994006,0.23050858,-0.4232416,0.25623143,-0.6023724,0.46707848,0.18258335,-0.5475988,-0.21880794,-0.15244642,-0.011543593,0.5683124,-0.11231577,-0.30126113,-0.17570604,-0.023999594,-0.20245808,-0.37894067,-0.06523058,0.31754598,0.04399422,0.09131189,0.039861474,0.033431336,0.13350427,0.67187905,0.020585256,0.5717203,0.60606533,-0.15418248,-0.30961877,-0.26689816,0.19363494,0.47355548,-0.06603403,-0.23262487,-0.46032503,-0.7636969,-0.3416125,0.018953241,-0.18458614,0.62402445,0.18407029,-0.039360363,1.0251384,-0.10492523,1.3558645,-0.13958901,-0.7330835,0.07901168,0.7116476,0.017061938,-0.057496134,-0.33053428,1.1174945,0.5149824,-0.18224502,-0.27302706,-0.5465218,-0.13476968,0.25512275,-0.13402626,-0.30951774,-0.062020086,-0.7053495,-0.07792606,0.12608136,0.4511941,0.29530457,-0.0729133,0.42769873,0.51135087,-0.0809705,0.35813242,-0.5244367,-0.2422811,0.28054225,-0.008295959,-0.12937674,0.16927713,-0.44805372,0.3591628,-0.44846848,0.08307944,-0.4284407,0.15429941,-0.009949554,-0.47993672,0.20680016,0.028846644,0.45746925,-0.5426056,-0.19282652,-0.3152354,0.5767489,0.10125765,0.17884456,0.6086001,-0.38587245,0.114942096,-0.052536014,0.5645599,1.3507833,-0.24128708,-0.021352334,0.3926945,-0.66036284,-0.83296037,0.32626107,-0.117624424,0.27685767,-0.016071992,-0.37093413,-0.8220696,0.18884693,0.14796957,-0.2823769,0.19481164,-0.6109504,-0.21058828,0.29170325,-0.45202497,-0.1144149,-0.29609632,0.24062118,0.53016025,-0.34766808,-0.29778585,-0.1179067,0.09556469,-0.09942604,-0.20770726,-0.24050131,-0.45744693,0.35745108,0.0028787742,-0.53404087,-0.118354924,-0.24094075,-0.3360941,0.21045755,0.1910983,-0.31730163,0.17123675,-0.21434823,-0.2834813,1.1504956,-0.07359522,-0.13227654,-0.5304638,-0.5617637,-0.8792997,-0.5516652,0.5075474,-0.026900204,0.07376338,-0.66495633,0.182184,-0.0329154,0.0047636684,-0.2104674,-0.35006478,0.4996207,0.2060276,0.58279645,-0.03894459,-0.9000111,0.29687083,0.20653628,-0.27682704,-0.7737019,0.731716,-0.23314372,0.8979114,0.0117712375,0.29307035,0.12169585,-0.43834054,-0.14046727,-0.27326238,-0.37963483,-0.65126747,-0.12838486,904 -966,0.51283455,0.047634482,-0.7131455,-0.11897061,-0.12860051,0.074475236,-0.22474386,0.56146723,0.23452386,-0.4463816,-0.041753147,-0.10128891,-0.111233145,0.2645516,-0.31196883,-0.34824973,0.10540328,-0.040834047,-0.42324695,0.36747533,-0.35068145,0.22467151,-0.083221845,0.60349256,0.1661358,0.11292644,0.17324565,-0.001290305,0.06050794,-0.44400856,-0.18315794,0.31726906,-0.3242752,0.032092366,-0.17562532,-0.37993324,0.11434808,-0.43287346,-0.26537,-0.6066876,0.25458422,-0.6687658,0.7615228,0.24698,-0.13608856,0.27308428,0.3548117,0.11134944,0.13501887,0.07454113,0.2210113,-0.2649189,0.14173812,-0.3986909,-0.37470883,-0.63868326,-0.47373727,-0.06077514,-0.5773506,-0.39215764,-0.22629458,0.20089792,-0.3874215,-0.18708138,-0.0029757728,0.4227567,-0.38763058,0.21888895,-0.016381817,-0.2802511,0.1579786,-0.6802904,-0.22998919,0.03109648,0.33339527,-0.2635932,-0.14743237,0.0147427805,0.24116787,0.39385584,-0.293565,0.048380807,-0.2570864,-0.27290285,-0.11536252,0.5429872,-0.28533742,-0.4003129,0.049510274,0.18286972,0.34746474,0.43565634,0.15878926,-0.10157513,-0.12770091,0.075500965,-0.24176551,0.7233063,0.5095205,-0.25226822,-0.0827064,0.30052993,0.5075055,0.4622468,-0.17195775,0.097284384,-0.15299183,-0.47061977,-0.08385476,-0.0695085,-0.062127534,0.31170914,0.04729968,0.5891728,0.65147907,-0.14782499,0.06289845,0.13677263,0.031588554,0.07819572,-0.1337574,-0.26594248,0.13665026,-0.37277758,0.32883742,-0.14884157,0.6801576,-0.0032434342,-0.5026613,0.27710548,-0.6187791,-0.15782224,-0.06505411,0.45298517,0.47047156,0.38038597,0.080417864,0.6102822,-0.44818297,0.020821387,-0.0023648413,-0.35903865,-0.039582077,0.05873588,0.01679501,-0.53230315,0.0272677,0.00026741216,0.07710146,0.2584505,0.4369934,-0.60029167,-0.25260058,0.14575268,0.99277824,-0.29111254,-0.09016573,0.64858913,0.9911663,0.6516994,-0.09571788,0.6804848,-0.022260936,-0.13100821,-0.14748031,0.07419971,-0.5769258,0.4112818,0.4933705,-0.6184461,0.29822844,0.13164109,-0.06928653,0.21296786,-0.10895278,-0.18928455,-0.12868512,-0.034910023,0.21036428,-0.31421176,-0.19590741,-0.08859441,0.05376829,-0.07215767,0.31562638,0.095334,-0.43545607,0.38566026,-0.19472513,1.3488567,-0.04120368,0.097012594,0.16078232,0.4834572,0.24378985,0.15223919,0.14467882,0.4415774,0.35613707,0.3423262,-0.48990104,0.28144532,-0.32062533,-0.43523338,-0.09325032,-0.3090341,-0.18829384,0.025634868,-0.3948658,-0.060622696,-0.14612323,-0.15254392,0.30081758,-2.8293397,-0.1916624,-0.13012187,0.34680316,-0.055400718,-0.30028418,-0.18718792,-0.3140477,0.39483443,0.24267823,0.5176524,-0.41662663,0.3935419,0.59689516,-0.41600963,-0.30366996,-0.45458984,0.08676109,-0.077338256,0.13738099,-0.019166114,-0.068526976,0.093388416,0.09606188,0.56539685,-0.13096307,0.062029075,0.3150671,0.6575361,-0.29263103,0.519272,-0.18629263,0.5422563,-0.29041404,-0.22063805,0.4589071,-0.32083416,0.12347825,-0.10579989,0.13138543,0.45327094,-0.20130616,-0.97852135,-0.41394174,0.06350482,1.2811544,-0.16928601,-0.4798145,0.13228188,-0.15827326,-0.46225882,-0.003600008,0.56592184,-0.24514543,0.08357889,-0.67712075,0.053169586,-0.25943312,0.11601847,-0.01631129,-0.037262928,-0.3950063,0.55265135,0.119669676,0.54308516,0.15773025,0.23968115,-0.3661669,-0.29656306,0.05923145,0.7581677,0.4585581,-0.0075240512,-0.15807496,-0.013716126,-0.19072095,0.06572901,0.18158776,0.9131736,0.54980206,0.010082204,0.17702504,0.23431374,0.0762136,0.0070416927,-0.24373315,-0.20146443,-0.18870376,-0.1198704,0.46647042,0.35700098,0.026058467,0.5283956,0.096710704,0.36224923,-0.48998,-0.34615496,0.22766541,0.74504584,-0.3376365,-0.47427896,0.5298987,0.26442796,-0.37519512,0.2839677,-0.74363035,-0.23302117,0.6480686,-0.1082649,-0.68426615,0.17865577,-0.26755235,0.03121055,-0.90857315,0.1357129,-0.388554,-0.51113325,-0.4518752,-0.32761002,-2.7798197,0.1806617,-0.32515794,-0.19089971,-0.42921868,-0.25502253,0.07481848,-0.622733,-0.51901937,-0.01770907,0.15068947,0.6745675,-0.13271374,0.07124997,-0.20693588,-0.46917343,-0.11784779,0.16056672,0.087225825,0.2807941,-0.017237436,-0.2138214,0.09078724,0.124792196,-0.3303653,0.018341897,-0.3069181,-0.3081748,-0.016411625,-0.3831094,-0.165649,0.74163246,-0.41276324,-0.0349744,-0.24935536,0.15204261,0.072585486,0.28565168,0.17322487,0.076526254,-0.0011194755,-0.05395776,0.09052839,-0.46479318,0.34718364,0.018237859,0.3759966,0.35048202,0.044446465,0.07396327,0.37128752,0.33215308,0.09220919,0.71889627,0.042234834,-0.014600348,0.36573964,-0.3346422,-0.36874294,-0.43864918,-0.2857891,0.3054104,-0.4060613,-0.43826172,-0.15454867,-0.26930785,-0.71798706,0.45582467,0.014424768,0.30667531,-0.23357163,0.8180208,0.4866619,-0.20378542,-0.19549274,0.28814223,-0.19267721,-0.49607047,-0.19212666,-0.5099006,-0.43844783,-0.053646628,0.6853162,-0.46196496,0.13342236,0.08624515,0.038347717,0.1523352,0.14093299,0.09831124,0.09640319,0.33713877,-0.27792242,-0.58192897,0.4796838,-0.47690314,-0.237223,-0.66937727,0.049064398,0.68891615,-0.6619256,0.2860864,0.33894718,0.07192401,-0.2519916,-0.60299605,0.06430007,0.15844876,-0.1511818,0.111170575,0.104011804,-0.79070765,0.298481,0.37946108,-0.11503637,-0.44814214,0.68277085,0.055054795,-0.56177175,-0.036292564,0.4783531,0.398721,-0.01607436,-0.17322697,0.12452947,-0.22348183,0.37312773,-0.095791645,-0.062940195,0.39100778,-0.1194099,-0.17853257,-0.61149067,0.21229033,-0.541739,-0.46887735,0.37529954,0.031620957,0.22205152,0.42886078,-0.06465333,0.34921995,-0.54831433,0.2316106,-0.3084466,-0.13242216,0.4243723,0.32583869,0.41961747,-0.38015556,0.54430413,0.12163936,-0.05926472,0.55456024,0.21488124,0.541281,-0.13641006,0.44228113,0.018177388,-0.25324634,0.235076,0.8107164,0.1803048,0.28337535,0.036584094,-0.0666562,0.023560232,0.082640246,0.116339535,-0.14420423,-0.5420859,-0.101855166,-0.26722595,0.07754108,0.67160845,0.09025857,0.16195408,0.037390355,-0.3061526,0.10678756,0.5111659,0.07560952,-0.9011126,0.35760844,0.21107148,0.8740807,0.024877608,0.19378246,0.0287292,0.57502043,-0.09320145,0.0650467,0.24874915,0.20616363,-0.37173396,0.48382246,-0.5554895,0.41368207,-0.08035669,-0.08782404,0.018543793,-0.29788655,0.316815,0.79716486,-0.21865474,0.08019796,0.07616287,-0.25039855,0.10928497,-0.4631028,0.048052963,-0.43824318,-0.19117156,0.61861396,0.624968,0.27075258,-0.28798538,0.02522012,0.07372435,-0.054537967,-0.14212851,-0.037107978,0.18425137,-0.25276476,-0.54444414,-0.054768864,0.4197669,0.3424261,0.115581006,-0.11357973,-0.10246208,0.45413503,0.07582135,0.23822817,-0.09366366,-0.35372284,0.16132511,-0.18968846,-0.69256854,0.30380797,-0.13360526,0.30687082,0.23757623,-0.035148904,0.107384466,0.5791578,0.06548352,0.6431293,-0.12562115,-0.045119047,-0.6116329,0.3074157,0.012577813,-0.1958744,-0.19776407,-0.26843426,0.29193947,-0.45308083,0.25631455,-0.22653985,-0.2751721,-0.10466699,-0.23750392,0.006034133,0.429272,0.0069471356,0.013555896,0.11818163,-0.2931021,-0.2430807,-0.15429169,-0.21173026,0.27020577,-0.11607406,-0.066288285,-0.21573974,-0.14578702,-0.36279377,0.06643884,0.05211751,0.46707714,0.32232654,0.15650398,-0.07697508,-0.067071795,0.069735765,0.6089305,-0.10613739,-0.1437978,-0.111174606,-0.666427,-0.32059553,0.34993237,-0.14102902,0.19492811,0.33830047,-0.10540173,0.66251266,-0.050041724,1.0410101,-0.047402147,-0.22183873,0.07526632,0.6847784,-0.07067729,-0.1759991,-0.22417398,1.1005839,0.5269697,0.08907574,0.009562007,-0.138201,-0.1494479,0.072437115,-0.3647144,-0.07671559,-0.13464083,-0.4794524,-0.30063763,0.19236897,0.24726056,0.15364061,-0.1656137,-0.038290534,0.30175185,-0.025085362,0.19348803,-0.5161434,-0.4353031,0.2697527,0.19884911,-0.31413257,0.07197427,-0.4504997,0.37486008,-0.432771,-0.010443839,-0.5578404,0.19575511,-0.18055469,-0.20676047,0.18733296,-0.1051269,0.2838426,-0.39224595,-0.35604703,-0.0033164432,0.021099104,0.28697166,0.19670819,0.3745897,-0.20830698,-0.04831301,0.002335453,0.50297374,0.8955816,-0.08753792,-0.09027633,0.49313384,-0.4795243,-0.6890368,0.12138243,-0.71708244,0.0974951,-0.09233563,-0.14058413,-0.03422487,0.3594427,0.20292044,0.0711138,-0.18040021,-0.635066,0.015697425,0.24305023,-0.21308881,-0.22274493,-0.3195696,0.06500938,0.66176814,-0.23953246,-0.13121888,-0.1398705,0.5077444,-0.07459924,-0.52493864,0.09352665,-0.22509311,0.3859521,0.12551112,-0.16809629,-0.27291358,-0.071750194,-0.54450876,0.42360276,0.12596464,-0.17192578,0.07461294,-0.21087165,0.10930445,0.49746695,-0.29735693,-0.19950819,-0.3703373,-0.46640882,-0.5915712,-0.24911283,0.12661518,0.036587417,0.037023615,-0.6584862,0.117560655,-0.1500865,-0.27969006,-0.26027158,-0.1942483,0.29408476,-0.06642025,0.6079508,-0.27583605,-1.0407051,0.2708029,-0.08727955,-0.42046747,-0.72331196,0.35736045,-0.07780074,0.60976964,0.036181785,-0.037253466,0.27213967,-0.4525428,0.09687529,-0.39321712,-0.19112045,-0.8668924,-0.01996268,908 -967,0.44238234,-0.34718844,-0.5392932,-0.2041743,-0.21466017,-0.16583458,-0.24309577,0.42883074,0.32792354,-0.16554861,-0.2039463,-0.034506526,0.22359963,0.46817428,-0.1348245,-0.6529674,-0.09818392,-0.02590145,-0.57215345,0.63689065,-0.45315552,0.34039852,-0.011535439,0.26288894,0.3716399,0.45797917,0.13824588,-0.15482713,-0.021228248,-0.21019767,-0.03623452,0.106317475,-0.7627735,0.19548626,-0.35039726,-0.33464983,0.10372307,-0.52948993,-0.42369998,-0.8084268,0.15474203,-0.9740566,0.58015245,-0.056767236,-0.11339109,-0.058147408,0.12428904,0.42731836,-0.43467024,0.05621754,0.2118606,-0.09464862,-0.09650319,-0.21641137,-0.221988,-0.38207456,-0.51081795,-0.20918733,-0.7434239,-0.28458703,-0.33961886,0.076904185,-0.3861654,-0.10125101,-0.13292956,0.28387597,-0.59199494,0.08802893,0.17829861,-0.14115326,0.34650552,-0.48139098,-0.04711355,-0.18864313,0.3948659,-0.11918753,-0.21791525,0.41396296,0.31103316,0.20797259,0.12717189,-0.2840408,-0.25089228,-0.22232094,0.28021902,0.53005415,-0.01023125,-0.5894531,-0.3293266,0.14327067,0.28630224,0.5578782,0.15042341,-0.50789285,0.029635035,-0.109387904,-0.21828853,0.7738648,0.5845347,-0.19237381,-0.2716973,0.37848967,0.5530472,0.52128667,-0.2433392,0.05370202,-0.023509948,-0.48854607,-0.14430319,0.1847815,-0.19363286,0.77798,-0.054390308,-0.04673456,0.86690325,-0.19564065,-0.07833706,-0.046431065,-0.028999375,-0.26594567,-0.36251113,-0.05176073,0.058677413,-0.62282825,0.36191294,-0.25329503,0.68441206,0.30847988,-0.82600874,0.48257542,-0.5653766,0.13588221,0.032297947,0.5643247,0.52470267,0.46446553,0.36930764,0.9067179,-0.3275303,0.24409026,0.031508394,-0.58735794,-0.17160663,-0.25370735,-0.09600557,-0.41961357,0.10213336,-0.057181384,0.06733175,-0.07132107,0.5004457,-0.39568788,-0.15794848,0.25620556,0.8634466,-0.37637627,-0.104223065,0.8779822,1.1341895,1.0406426,0.007862318,1.3221928,0.15396847,-0.12965892,0.10983689,-0.11235377,-0.7632643,0.092386745,0.4569031,-0.22775736,0.2105999,-0.02520536,-0.011359437,0.05930743,-0.3622645,0.05852851,0.113155864,0.5116825,0.1373656,-0.28028172,-0.36079475,-0.09410074,-0.03187261,0.037990972,-0.07006819,0.15392183,-0.3524309,0.16523758,0.042723253,1.3165941,-0.15197521,0.005850537,0.116944976,0.7459937,0.29121575,-0.08973923,-0.06684875,0.5595677,0.51932037,-0.08908506,-0.78285044,-0.0058459584,-0.4800491,-0.4763729,0.018548848,-0.31718442,-0.22578959,-0.037596997,-0.314907,0.15415335,-0.07971459,-0.26722506,0.72792745,-2.6791086,-0.37136194,-0.26302043,0.30766156,-0.38623,-0.124356456,-0.080178745,-0.4859154,0.36545533,0.2285979,0.5956705,-0.6785112,0.49741372,0.5362815,-0.5553967,-0.047176298,-0.6324033,0.0016024654,0.03327229,0.4736394,0.0032708251,0.103761666,0.006034233,0.099339984,0.86125636,0.2314309,0.2429433,0.5566702,0.48426282,0.07192559,0.62793756,-0.19155149,0.62625325,-0.32114565,-0.011206567,0.31968638,-0.2943468,0.5340437,-0.28630504,0.124203674,0.55526316,-0.47779274,-0.9891544,-0.5242695,-0.5545343,0.99197143,-0.54023385,-0.48895204,0.38365415,-0.09241115,0.03207066,0.0337229,0.64731765,-0.013639894,0.25688493,-0.52642,-0.028329724,-0.12421945,0.03728554,0.023061378,0.07480201,-0.16557862,0.85990906,0.009301603,0.6651546,0.31130898,0.15720673,-0.1665933,-0.33819398,0.25657752,0.76153475,0.37218368,-0.10533606,-0.27167702,-0.1481056,-0.21735393,-0.33882925,0.09520037,0.72682226,0.79665923,-0.29683936,0.056422368,0.3811983,0.15983061,-0.008358354,-0.15895526,-0.36882523,-0.0833428,-0.07604831,0.38268632,0.7986166,-0.2399703,0.614249,-0.30660966,0.060188305,0.03879058,-0.5472594,0.56931645,0.5745915,-0.22021975,-0.11672742,0.2836204,0.5450805,-0.5485989,0.56874496,-0.5242531,-0.057368625,0.8599498,-0.15270087,-0.46515933,0.26935452,-0.31708014,-0.09401748,-0.9124279,0.3175279,-0.29886225,-0.5682501,-0.05455506,-0.16512989,-3.1262445,0.15313147,-0.08378113,-0.22301084,-0.5549723,-0.015637165,0.116581224,-0.5492246,-0.93816274,0.328598,0.1754712,0.54187053,-0.12769532,0.14654471,-0.29514846,-0.058207795,-0.19166708,0.27387294,-0.08035426,0.34699926,-0.30136478,-0.40154517,-0.30851856,0.10537165,-0.68465984,0.279364,-0.55752796,-0.34970692,-0.044935223,-0.80967903,-0.12508106,0.5468578,-0.52363724,-0.08770242,-0.07684792,-0.030674024,-0.38949403,0.12050295,0.1366651,0.23990026,0.0478182,-0.08258379,0.08329146,-0.27155182,0.5297762,-0.017265799,0.38086155,-0.22166458,-0.19163942,0.013524017,0.3776744,0.5996959,-0.22388038,1.224183,0.1986874,-0.117615126,0.36047757,-0.27167967,-0.24221095,-0.89257044,-0.40584078,-0.23393846,-0.3600802,-0.69569904,-0.0422048,-0.19632055,-0.8108751,0.53659725,0.23168169,0.6167539,0.054538425,0.16351576,0.34888184,-0.22400211,0.068089396,-0.049236044,-0.06262045,-0.5376443,-0.28663853,-0.6837644,-0.4689431,0.19284667,0.6419701,-0.3067579,-0.18294317,-0.19844346,-0.4357724,0.08223217,0.16776238,0.07027591,0.2981389,0.5088078,0.06958928,-0.6355339,0.3375968,0.09126841,-0.12246737,-0.5049463,0.07805737,0.7647322,-0.6960011,0.8083094,0.20630838,0.03952033,0.018549794,-0.6652677,-0.15513967,-0.056084014,-0.10182684,0.2502809,0.032108024,-1.007545,0.39578837,0.34294403,-0.6122498,-0.7974195,0.63827,-0.0791669,0.05343851,-0.12890019,0.36639234,0.34958404,-0.23146774,-0.35434064,0.263011,-0.32364836,0.34577143,0.06507345,-0.19254127,0.152461,0.11729691,-0.4184983,-0.85985184,0.049058285,-0.45420015,-0.17357534,0.35587958,-0.24142309,-0.17967194,0.023620032,0.32037136,0.2748629,-0.39879036,0.14874618,-0.054691255,-0.44667074,0.35276562,0.50852466,0.49788934,-0.4213007,0.7076401,0.28279507,-0.15656155,0.30871543,0.26995662,0.34732273,-0.03478034,0.35270125,0.27421507,-0.060105205,0.16431281,0.8782477,0.28498724,0.6041093,0.30112812,-0.16035953,0.36714697,0.23494434,0.29562646,0.05291568,-0.4904904,0.16839188,-0.096827984,0.1082514,0.5534117,0.30444148,0.30150363,0.15645711,-0.2006049,-0.1681999,0.41477445,-0.052752208,-1.259515,0.3389261,0.25426427,0.84619063,0.5261001,0.15868813,-0.006048192,0.37169316,-0.073733866,0.0035486235,0.5619866,-0.009150657,-0.56313,0.7151283,-0.62618643,0.4021621,-0.09987909,0.073875844,0.38496226,0.27298835,0.45073786,0.94737583,-0.2443607,-0.111826874,-0.13773333,-0.070889704,-0.047853634,-0.41996014,0.06419352,-0.34227875,-0.4991497,0.86199325,0.5620798,0.35391062,-0.060859416,-0.110021956,0.0077069295,-0.19845909,0.14520808,-0.013412771,-0.054567575,0.0028548485,-0.63732886,-0.2653885,0.6965107,-0.04950945,0.07112944,-0.20072174,-0.18528566,0.38855952,-0.37737033,0.094645314,0.04326384,-1.0156612,0.08682457,-0.17111216,-0.46104977,0.21428071,-0.120890975,0.20247053,0.14139934,-0.059513472,-0.137733,0.29160535,0.07172835,0.95963365,-0.086357735,-0.29105315,-0.30206835,0.08789127,0.28692397,-0.30453002,0.18350388,-0.27575013,-0.20572992,-0.5542358,0.5660087,-0.0969001,-0.4289367,0.11242816,-0.29804942,-0.18996137,0.6707993,-0.052945927,-0.19794936,-0.12508768,-0.3259802,-0.5081994,-0.25952718,-0.23209824,0.21673483,0.34578416,-0.068713896,-0.07287712,-0.099978715,0.09801883,0.29773042,-0.06888764,0.48181096,0.12435122,0.17343968,-0.0665144,-0.11402193,0.3484065,0.44956034,0.2728445,0.0004947009,-0.062352523,-0.23044586,-0.39681414,-0.04532502,-0.16762462,0.35218918,0.026736693,-0.29188415,0.7173927,0.123485476,1.3015915,0.07473211,-0.4612685,0.20259327,0.68106055,-0.24594821,-0.066474885,-0.40205514,1.0814555,0.65485454,-0.14822078,-0.03616434,-0.57612574,-0.17522009,0.31691426,-0.37539205,-0.07376022,0.1466818,-0.34545854,-0.21699828,0.24269728,0.24495818,0.16240965,-0.110700935,-0.15027766,0.22737475,0.17132382,0.4576663,-0.7629549,-0.2696709,0.19419679,0.25487986,0.12069594,0.008000309,-0.27505013,0.32337278,-0.6980918,0.2866308,-0.49440488,0.057526555,-0.4342825,-0.4234622,0.15676744,-0.04401362,0.37099406,-0.27151257,-0.41740313,-0.20853972,0.40471762,0.018940398,0.21129256,0.6253897,-0.29305384,0.004470904,0.038661607,0.6535607,1.0366927,-0.40277436,-0.03292599,0.4682102,-0.665254,-0.71695095,0.4006216,-0.45432308,0.18452138,-0.07037933,-0.44498947,-0.6082501,0.24231838,-0.13704816,0.043226145,0.11375336,-0.79328865,-0.10243575,0.346626,-0.13664913,-0.34115627,-0.11399,0.32861307,1.0825824,-0.35606918,-0.4736062,0.21239094,0.0120460335,-0.28634927,-0.5910837,-0.04648386,-0.049154803,0.29581425,-0.10766372,-0.2820055,-0.12356958,0.26788935,-0.5153215,-0.0274482,-0.0032971988,-0.38203153,0.1709521,-0.06516634,-0.11604491,0.97012305,-0.5309201,-0.14304763,-0.77564925,-0.52580893,-0.7369473,-0.3847108,0.11942003,0.19436298,-0.003412637,-0.39180744,0.23818198,-0.06555296,-0.15774661,0.116979904,-0.58179927,0.40127438,0.13654368,0.5505834,-0.3523038,-1.1809319,0.23628344,0.34453905,0.0064638094,-0.8724607,0.55527675,-0.06695459,0.7076709,0.08635875,-0.073316485,-0.030721588,-0.44765395,-0.10238615,-0.39588073,0.08920557,-0.7561958,0.38374278,948 -968,0.51555395,-0.28385356,-0.50615996,-0.16052166,-0.090637445,-0.20424475,-0.15345901,0.76518816,0.32478857,-0.57692385,-0.14191695,0.05495231,0.0071867923,0.45390692,-0.20624612,-0.7133647,0.05149508,0.20841517,-0.4504554,0.35789463,-0.41579673,0.09332269,-0.13130236,0.56062263,0.34770724,0.06562649,0.09839359,-7.346543e-05,-0.24551186,-0.17565925,0.07557985,0.29648638,-0.5224097,0.1447547,-0.3726443,-0.4234932,-0.122289084,-0.658688,-0.46433118,-0.9559527,0.3960724,-0.73701876,0.64001584,-0.04643009,-0.286847,-0.10006833,0.4029682,0.25989068,-0.24545604,-0.10792455,0.16773094,-0.20110153,-0.21836501,-0.061217383,-0.36632988,-0.36227563,-0.7291083,0.083564766,-0.44229028,0.06317533,-0.12098077,0.24171089,-0.55207926,-0.055173956,-0.09230259,0.8593393,-0.30214024,-0.110987835,0.44023636,-0.273713,0.21937226,-0.77737516,-0.13014412,-0.091775365,0.16071974,-0.0127202,-0.33803943,0.4167739,0.20249623,0.5301149,0.07984144,-0.38271257,-0.41666594,-0.00080322137,-0.038809236,0.5181961,-0.30378515,-0.59070116,-0.17632762,0.044811673,0.34212705,0.33979732,0.07742122,-0.17662336,0.17276514,0.13117144,-0.23087949,0.8423242,0.7077779,-0.18847565,-0.014192984,0.2162815,0.3727585,0.2935804,-0.17632204,0.05641042,0.16862796,-0.6552853,-0.23655137,0.07148609,-0.239192,0.54810804,-0.14546567,0.24607314,0.7537867,-0.29287627,-0.007355888,0.20144968,0.26796493,0.12217125,-0.49743846,-0.49516508,0.3924349,-0.5789592,0.31139967,-0.2677721,0.7985142,0.17864734,-0.4392195,0.28825244,-0.53604925,0.20291534,-0.07168281,0.60262513,0.7629786,0.42906666,0.53848743,0.93232197,-0.4082017,0.02781214,0.03798813,-0.18861237,-0.017573453,-0.30328152,0.22316116,-0.3310037,-0.08720593,-0.10906705,0.017081304,0.13676123,0.36976144,-0.66384685,-0.33055574,0.15739413,1.0414214,-0.16630322,0.002618546,0.9057066,1.1353118,1.3065044,-0.09918747,1.2413585,0.11929097,-0.29044375,0.09366693,0.10149687,-0.7698906,0.34799206,0.24694914,-0.40479985,0.13049413,-0.044012602,-0.13200426,0.6720079,-0.71182615,-0.03994353,-0.12769407,0.24977177,0.17568482,0.0047275317,-0.5957787,-0.1571437,-0.15694569,-0.12515324,0.15816778,0.3196282,-0.31117308,0.49390328,-0.23054184,1.1870328,-0.130103,-0.003463447,0.096366055,0.5636449,0.19778539,-0.16923904,0.05718446,0.04191742,0.5077568,0.05645633,-0.5836446,-0.07647962,-0.4911769,-0.2601613,-0.10773595,-0.45431623,-0.11089563,-0.028040735,-0.371968,-0.39930332,-0.23184747,-0.30858988,0.22394957,-2.5941045,-0.24272646,-0.16180442,0.32934788,-0.34785035,-0.21379705,-0.19024134,-0.6118131,0.65087914,0.17603867,0.67323744,-0.5333601,0.3963853,0.47715986,-0.8280056,-0.05024012,-0.8156298,-0.14749868,-0.007568175,0.31842205,0.16106172,-0.3141025,0.022078648,-0.0426631,0.88449293,0.20030063,0.12604155,0.27812597,0.4644458,-0.3006415,0.50337297,-0.26597282,0.6024458,-0.7383819,-0.2050829,0.2355814,-0.6528211,0.05325693,-0.41379052,0.02993795,0.6405351,-0.5059614,-0.9909918,-0.7051063,-0.02456686,1.2269105,-0.11505943,-0.5974951,0.3272228,-0.5276886,-0.047905054,-0.03106562,0.8031722,0.08550165,-0.07306682,-0.6284994,-0.09198821,-0.15531994,0.044126544,-0.026201867,0.04120382,-0.30961326,0.6876413,-0.1061918,0.253571,0.27047274,0.26390895,-0.52952886,-0.33257055,0.021629186,1.111375,0.43951952,0.26837417,-0.20721349,-0.051411882,-0.42923605,-0.3491372,-0.177005,0.80905515,0.8205246,-0.21631923,0.14678352,0.4570738,0.024943752,0.1241848,-0.09681606,-0.6191923,-0.3471279,0.10243365,0.79644376,0.67586136,-0.0006311102,0.4941413,-0.055025853,0.30705255,-0.31267488,-0.2835306,0.5570477,1.0624156,-0.31562006,-0.2698851,0.86423564,0.36478862,-0.37252054,0.6739078,-0.54209155,-0.5643081,0.53599864,-0.17492619,-0.70659965,-0.018907065,-0.3820363,0.10682416,-0.7121626,0.2575925,-0.4100317,-0.6194225,-0.42176753,-0.34158608,-2.9517066,0.10592062,-0.41289207,0.06510531,-0.32370383,-0.21809453,0.121999905,-0.4743908,-0.77437,0.21118775,0.15508416,0.8290485,-0.26579145,0.17282167,-0.39043933,-0.31937912,-0.30052313,0.110879414,0.31537417,0.32475913,0.12380907,-0.42304116,0.10188972,-0.021869998,-0.5218185,0.01317459,-0.8109024,-0.49396375,-0.1994258,-0.7874424,-0.26816732,0.8776572,-0.26890704,0.049888674,-0.15586047,0.23503913,0.038019966,0.3070439,-0.017261205,0.30264512,0.030374305,-0.22831224,0.17983235,-0.1600035,0.4373193,0.17367233,0.4444191,0.335372,0.054434873,0.2100688,0.7583391,0.8689266,-0.16655152,1.2549329,0.52197576,0.036024086,0.27844608,-0.17583683,-0.5343733,-0.5347545,-0.28755382,0.19364251,-0.53524005,-0.22239326,0.13469046,-0.45160952,-0.94465566,0.7829619,-0.03480817,0.2985533,0.045917474,0.23620997,0.53418833,-0.3189609,0.060382184,0.018187052,0.05868206,-0.4420374,-0.16270219,-0.7056099,-0.53261507,-0.123149395,0.98346883,-0.24270357,-0.09097069,0.10871989,-0.15379487,-0.005758841,0.13526247,-0.0439949,-0.03256876,0.45761302,0.035127167,-0.6555434,0.22960113,-0.2209601,-0.10608551,-0.69523233,0.39245623,0.8595037,-0.7573604,0.8182783,0.39314812,-0.08400757,-0.61603165,-0.67931026,-0.19980635,-0.096944764,0.02670127,0.49021557,0.16860224,-0.8198229,0.49791366,0.47389123,-0.3635607,-0.86257786,0.4013983,-0.20979981,-0.044269346,-0.02288044,0.3369846,0.19926849,-0.08459462,-0.13454936,0.27962184,-0.4656627,0.35236865,-0.005402473,-0.13146758,0.53790224,-0.21482435,-0.20628966,-0.9030474,0.022527196,-0.80757976,-0.2353258,0.49820158,-0.101656824,0.050893947,0.21069899,0.099944904,0.23421821,-0.07465053,0.039182134,-0.22631587,-0.33830345,0.53335565,0.5808826,0.55984396,-0.51057965,0.6907915,0.15424241,-0.18899131,0.102475435,0.06738266,0.4211655,0.015025448,0.7154599,-0.12626588,-0.12342452,0.12698078,0.97264063,-0.01476989,0.4700597,0.09610427,-0.017890371,0.0053779106,0.10043469,0.0752343,0.20878229,-0.8447047,-0.08844226,-0.34531522,0.14525042,0.62392914,0.15220998,0.42851207,0.06585906,-0.3410691,-0.14316644,-0.012324032,-0.18612257,-1.7682036,0.6598578,0.113496326,0.94766116,0.14301148,0.22772108,-0.2463766,0.85997427,0.0930388,0.13176237,0.52380127,-0.05179639,-0.3802704,0.68097866,-0.69806266,0.71336305,-0.13083173,0.14933972,-0.17000084,0.15981865,0.5390386,0.88024217,-0.20833626,0.058835246,0.0033257792,-0.38405865,0.3526325,-0.65231997,0.08240939,-0.46577442,-0.31426027,0.5378044,0.5868551,0.29151657,-0.1607653,-0.011275144,0.23649582,-0.10318342,0.16124378,-0.030732729,-0.23498653,-0.07514818,-0.81320953,-0.006843223,0.50729537,0.054481506,0.3456133,-0.011789262,0.19679956,0.40063456,-0.05047715,0.020342438,-0.14869303,-0.723573,-0.22621289,-0.50147665,-0.71924984,0.3309557,-0.10632215,0.19080104,0.21605574,0.011527217,-0.4371728,0.5237209,-0.092996694,0.8054331,-0.30652186,-0.33963406,-0.4726198,0.1568333,0.13687067,-0.4063076,0.06325981,-0.3809021,0.121645935,-0.42333403,0.4989585,-0.26118794,-0.4980481,0.037463058,-0.15907085,-0.06900229,0.6645909,-0.1918209,0.19795808,0.027601806,-0.44231704,-0.29086348,-0.49735433,-0.109496444,0.24631771,0.1121753,0.15264702,-0.1985579,-0.33700818,-0.2568355,0.43297416,-0.09773534,0.1923222,0.6032681,0.25440022,-0.22458762,-0.101925105,0.1703438,0.98103654,0.1254827,-0.24670133,-0.5390611,-0.38168314,-0.41691783,0.20245433,-0.050435122,0.45309752,0.12542032,-0.23478328,0.7557202,0.09163539,1.2267141,0.116967134,-0.3067014,-0.03454787,0.5752068,-0.036428437,-0.010868024,-0.50968146,1.0009451,0.42478874,-0.1998745,0.0062246206,-0.7305052,0.15100151,0.2829301,-0.23304228,-0.4634491,-0.021975571,-0.56848395,-0.2817975,0.48121837,0.3829037,0.2706558,-0.21135662,0.14862747,0.35420564,0.17673796,0.47291192,-0.6891046,-0.0056893,0.45279217,0.39663896,-0.061831877,0.17341818,-0.44107673,0.32952073,-0.5029608,0.16172034,-0.31602478,0.21326314,-0.27377084,-0.40730035,0.37729314,-0.0680907,0.57664603,-0.32753047,-0.31532538,-0.071491696,0.37816074,0.2585286,0.11980154,0.68877155,-0.2599449,-0.2223247,0.2150499,0.89048785,1.1827542,-0.26017192,0.09554016,0.2582634,-0.3243762,-0.78159505,0.42038143,-0.37834823,-0.019037947,0.032265242,-0.31746694,-0.6002662,0.19283889,0.06837153,-0.18995437,0.2113831,-0.6189175,-0.35387653,0.114183575,-0.17376214,-0.249043,-0.36137164,0.15505038,0.4761342,-0.20058197,-0.42551842,0.036652118,0.46438703,-0.01841212,-0.69834954,0.038756393,-0.46090487,0.20533128,-0.0112151345,-0.36209872,-0.011358217,-0.20424318,-0.7101774,0.20476769,-0.08810587,-0.3889944,-0.0060669915,-0.099491924,-0.07160408,0.75270593,-0.18935555,0.3521581,-0.4007239,-0.44747475,-0.9671371,-0.19732744,0.22878402,0.20835337,-0.116160415,-0.8048439,-0.24716407,-0.17480065,-0.101459816,-0.04016829,-0.4148245,0.45525905,0.10406778,0.5731588,-0.20630623,-0.73792547,0.1980358,0.19116296,-0.14232942,-0.51834816,0.38356832,0.1273378,1.0462201,0.086291075,0.051226508,0.17823206,-0.3763335,-0.118346326,-0.2498892,-0.46271762,-0.61246526,0.020687722,978 -969,0.43785745,-0.21529947,-0.54181105,-0.14853336,-0.19912711,-0.23195566,-0.23009335,0.8508484,0.4205599,-0.27069312,-0.04425769,-0.123405054,0.06539181,0.35413525,-0.190318,-0.28298795,0.13974658,0.0820749,-0.4710825,0.57639617,-0.31939974,0.030009221,-0.085095115,0.72454137,0.3503667,0.25165877,0.09437551,0.23266172,-0.08328212,-0.350347,0.016081369,0.17654024,-0.60418123,0.2648795,-0.25702888,-0.3617566,-0.003575038,-0.6054974,-0.50302243,-0.8430614,0.422629,-0.8219473,0.42710254,0.24148408,-0.23223084,-0.0039198454,0.46173707,0.2906767,-0.21150349,-0.18522273,0.08191243,-0.06521416,0.15417208,-0.2711991,-0.11860022,-0.3372598,-0.50348574,-0.08142347,-0.50901896,-0.13861145,-0.2952061,0.23927735,-0.32732624,-0.15906115,-0.025127292,0.7504472,-0.2705164,0.054135323,0.21855456,-0.21778613,0.4319712,-0.5919777,-0.26821557,-0.11512013,0.16759814,-0.08420014,-0.38885653,0.31151992,-0.0037338166,0.10608061,-0.32047638,-0.06917512,-0.2415722,-0.048762094,-0.2524387,0.4643947,-0.32241443,-0.7411389,-0.027026892,0.12904955,0.2343794,0.31209007,0.40273705,-0.21766472,-0.033300307,-0.16106142,-0.23671713,0.67545104,0.6303208,-0.028830517,0.07381869,0.19150032,0.23657025,0.20493048,-0.35443684,-0.01647441,0.12748593,-0.5025521,-0.11921049,-0.17503013,-0.10816951,0.590086,-0.1302951,0.35519555,0.63903606,-0.19372052,-0.23718505,0.26053336,0.33427516,-0.051633105,-0.4078369,-0.3913318,0.3098574,-0.42248031,0.13199683,-0.12610391,0.68211275,0.11561856,-0.66698265,0.1873536,-0.5545082,0.04079279,-0.12939523,0.43036234,0.79398227,0.48521683,0.4313021,0.71157974,-0.3047841,0.11337224,-0.14774007,-0.21807188,0.21288306,-0.25044325,0.1430967,-0.44963607,-0.27340794,0.06629947,-0.15107045,0.27987948,0.36072376,-0.50944686,-0.26029179,0.2683899,0.8414688,-0.17164384,-0.0604584,0.8568585,1.2961339,0.955617,0.08697964,0.7002367,0.04521703,-0.15812558,0.18124223,0.2485833,-0.903652,0.30216014,0.16414925,-0.24188274,0.17100574,0.06937297,-0.021740489,0.27868107,-0.5669355,-0.16507243,-0.07146334,0.4372201,0.079256944,-0.12804066,-0.24733725,-0.33098078,-0.020969234,0.17754981,-0.017052835,0.18429424,-0.12544331,0.43209207,0.0054788073,1.1873623,0.081051596,-0.017213903,0.08369237,0.86346334,0.24607368,-0.2528726,-0.052896943,0.27021664,0.3955762,0.21278192,-0.577148,0.16924988,-0.16904268,-0.4015835,-0.11487095,-0.40612993,-0.0139457425,-0.10670157,-0.4879238,-0.24505593,-0.2382266,-0.092045136,0.31816623,-3.1849787,0.0013200749,-0.018807525,0.32384032,-0.027993621,-0.1489247,0.17837831,-0.42559117,0.53763634,0.46277758,0.49018288,-0.6443186,0.23514758,0.42045403,-0.6441034,0.034915198,-0.6514456,0.057441536,-0.14460176,0.3695757,0.00964143,-0.03568616,0.2586574,0.31605232,0.4020131,0.18365265,0.26502237,0.2315474,0.41462812,-0.14602049,0.34522593,-0.16990374,0.28944552,-0.49490005,-0.22860499,0.13460456,-0.6420673,-0.026101394,-0.30934152,0.004398197,0.63005936,-0.3917786,-1.0347114,-0.38590145,0.25507495,1.0511708,-0.18446727,-0.62181616,0.26678827,-0.515317,-0.13943352,0.018369026,0.6719843,-0.15291432,0.18268242,-0.7044067,0.009491909,-0.28554803,0.07871874,0.010145139,-0.21810393,-0.4324056,0.7003443,0.115809895,0.3716273,0.25903553,-0.07283569,-0.8348635,-0.4299405,0.17176615,0.5565429,0.42519665,0.10881638,-0.11649975,-0.052839085,-0.30276233,-0.041382097,0.23633552,0.75864226,0.66521543,-0.16665526,0.4269122,0.36376813,-0.17525946,0.042692862,-0.11292717,-0.38368416,-0.22105981,0.17393261,0.74083036,0.8279469,0.026390754,0.47268888,0.010096639,0.2547748,-0.27249533,-0.48200914,0.63582826,0.82394403,-0.07202098,-0.3750958,0.61641455,0.51328,-0.26614836,0.47309148,-0.4990032,-0.4523883,0.5001093,-0.030823566,-0.49293405,0.16095313,-0.2926719,0.1180486,-0.77159995,0.11382327,-0.3957116,-0.59712005,-0.5945784,-0.18833143,-3.1148407,0.1421353,-0.26821625,-0.31447902,-0.296739,-0.36843356,0.24489266,-0.50622773,-0.48513606,0.23463902,0.110381335,0.89828455,-0.10327783,0.08745343,-0.1526153,-0.3253245,-0.41295883,0.07354794,0.20156574,0.40106973,0.07008536,-0.46139434,-0.1911801,-0.023663597,-0.542903,-0.022077555,-0.40863073,-0.3683255,-0.20057307,-0.68223834,-0.37949914,0.50691223,-0.17130233,-0.056526493,-0.21663937,-0.041129276,-0.040615287,0.42661163,0.09492123,0.04375427,-0.008048193,0.018389119,0.20014682,-0.2634045,0.15895614,-0.04284475,0.3900172,0.17376278,-0.017344277,0.18488897,0.4582497,0.660004,-0.16102761,0.93483543,0.392789,0.009192619,0.33718494,-0.15108274,-0.3163851,-0.31530383,-0.11457367,0.11871856,-0.37803277,-0.27694044,-0.014154077,-0.37916365,-0.6774925,0.506439,0.09921358,0.23214854,0.051610053,0.32861048,0.43557504,-0.14005324,-0.04423265,-0.087429516,-0.10435241,-0.62649536,-0.16687435,-0.53688097,-0.23665403,0.039917324,0.7540777,-0.2835918,-0.109406784,0.13860309,-0.20833713,0.0991903,0.34482732,-0.17620349,0.12262566,0.3558211,-0.14227691,-0.6999063,0.35127556,-0.29644844,-0.1931862,-0.671709,0.23892854,0.53195316,-0.5742545,0.70377845,0.19034769,0.15789637,-0.60770833,-0.5770914,-0.21242858,0.033867463,-0.20793776,0.45423096,0.50056815,-0.9856035,0.47981253,0.24212432,-0.40488723,-0.61666435,0.59043276,-0.0031111294,-0.41647664,-0.27915907,0.18973039,0.11294825,0.036942307,-0.35911292,0.21295781,-0.29167172,0.2063583,0.006245591,-0.1302472,0.37272254,-0.1281413,-0.071631916,-0.41734105,0.21882986,-0.5571496,-0.3428415,0.3730713,-0.04452901,-0.00095185364,0.26516283,0.04863299,0.19754046,-0.12513235,0.14365618,-0.36707962,-0.22556743,0.2824342,0.5381178,0.5485421,-0.53792864,0.69432664,0.16149867,-0.12504865,0.1120704,0.17126824,0.35812587,0.15220554,0.41105536,0.11988661,-0.34435594,0.16608201,0.7121659,0.12669411,0.47453868,-0.15045033,0.24428263,0.04305296,0.10395167,0.20128718,0.21506095,-0.5354687,-0.107157595,-0.5188248,0.13322736,0.39673653,0.094150044,0.31621453,0.13429157,-0.3913824,0.059420053,0.29025576,-0.0637705,-1.555379,0.5447191,0.38085464,0.9170631,0.43465713,0.049972057,-0.27226996,1.0350333,-0.03908658,0.029373683,0.24649468,0.2689092,-0.34395325,0.6315456,-0.83715034,0.6126355,0.04630402,-0.11461022,-0.23240696,0.06746539,0.40471983,0.78859067,-0.22077504,0.008301788,0.23831515,-0.42427835,0.009879806,-0.48096982,-0.076231115,-0.6120004,-0.29965106,0.59088904,0.49529693,0.3249591,-0.13468315,-0.040509615,0.13003339,-0.09867115,-0.08147928,-0.036308024,-0.032843627,-0.07651766,-0.7452618,-0.13060512,0.5010834,0.005817351,0.26268017,0.114241965,0.028214758,0.34790042,-0.0747442,-0.008236137,-0.09827206,-0.6983401,0.027236192,-0.2654611,-0.41877174,0.78192544,-0.45974243,0.2941401,0.29867554,0.21741596,-0.1746471,0.34349772,0.053198203,0.7221351,-0.24324061,-0.16817378,-0.30885878,0.10163097,0.19449665,-0.1676547,-0.27752697,-0.25906178,-0.13638236,-0.53961533,0.43064946,-0.16286626,-0.12053284,0.061045192,-0.14820613,0.092202395,0.5831037,-0.062827274,-0.1091047,0.16416727,-0.3785383,-0.18084826,-0.23246263,-0.26696688,0.38286668,0.04981087,0.059643593,-0.08278746,-0.08625367,-0.07538487,0.27879205,-0.13721406,0.39867136,0.29503644,0.38811266,-0.232095,0.04905851,0.06439007,0.706506,-0.06521723,-0.07976344,-0.24333392,-0.48441017,-0.45323142,0.05109767,0.0050356416,0.30948153,0.09933967,-0.10150168,0.8238558,-0.11420096,1.017574,-0.10849187,-0.48931134,0.26174468,0.43466628,-0.13746256,0.01993512,-0.22765207,0.8313347,0.3944707,-0.11441298,-0.004559587,-0.30471915,0.08708647,0.2413115,-0.21206756,-0.38288733,-0.043087635,-0.5256415,-0.14210482,0.4001545,0.36139432,0.22132276,-0.06625866,-0.0029071977,0.43475953,0.04981248,0.28169134,-0.6037571,0.026405519,0.24924435,0.3949913,0.12038222,0.08652854,-0.48249733,0.2839276,-0.47807267,0.09021208,-0.40620658,0.31955102,-0.37244904,-0.52571493,0.02294919,-0.09310841,0.4985384,-0.43203732,-0.16400507,-0.2807736,0.5489886,0.24639668,0.17658249,0.43335372,-0.3621769,-0.0003968938,-0.12825555,0.5085547,0.67610687,-0.34114197,-0.3133594,0.31086913,-0.37053248,-0.8310023,0.31811938,-0.42671862,0.13378285,0.052024208,-0.027612321,-0.50843835,0.1908319,0.30810794,0.14738943,-0.16118604,-0.5952976,-0.26795065,0.29755655,0.05437957,-0.3033432,-0.4038418,0.124754235,0.4566596,-0.11225209,-0.1985967,0.19517232,0.243194,0.06672688,-0.47485122,-0.048229016,-0.35901058,0.3661419,-0.07869523,-0.37451646,-0.28545883,0.07467659,-0.42716464,0.3867879,-0.26657307,-0.20092084,0.054142438,-0.12277821,0.0075341137,0.8178976,-0.42172834,0.19480433,-0.46137398,-0.5338879,-0.69204086,-0.16598572,0.37983048,0.01996335,0.06743336,-0.8521404,-0.13581939,-0.039226327,-0.14584446,-0.16711609,-0.30049372,0.35715845,0.09450826,0.33592203,0.049441587,-0.7621,0.32968166,-0.04937085,-0.04338907,-0.6674345,0.532786,-0.06427366,0.7388605,0.059430633,0.0005910085,0.197364,-0.43527937,0.14147153,-0.16596673,-0.34632123,-0.42390004,0.11673846,999 -970,0.46003637,-0.16567045,-0.67007965,-0.16974756,-0.21101014,-0.1594577,-0.27668777,0.7732242,0.050914686,-0.4916192,-0.42406082,-0.118549086,-0.015549749,0.5217188,-0.20944528,-0.5555681,0.059235215,0.3058947,-0.6955105,0.29559523,-0.42072588,0.3222664,-0.080084205,0.4722415,0.12596639,0.1941849,0.0786701,0.042102575,0.1528044,-0.10543959,0.08263488,0.12129297,-0.5651076,0.14476644,-0.22165212,-0.6805968,0.074751884,-0.6210568,-0.30641204,-0.7739979,0.38736778,-0.7504811,0.7062357,-0.012879582,-0.27899855,-0.009419012,0.14498745,0.53041947,-0.1356797,0.021363799,0.083960906,0.1016943,-0.089725316,-0.03199369,-0.070236504,-0.31963858,-0.67263424,0.14279985,-0.32706562,0.033636205,-0.1508166,0.18978599,-0.2672931,0.2943233,0.024873804,0.3147065,-0.35002232,-0.0053945095,0.06998883,0.06553167,0.23319216,-0.7040429,-0.074820876,-0.09598054,0.5680518,-0.4053933,-0.24024348,0.16383174,0.265894,0.6191317,-0.10324423,-0.07992086,-0.26521212,-0.09837971,-0.39272353,0.7538985,-0.1781005,-0.4908591,0.010649944,0.048878234,0.21432877,0.29554528,-0.04788223,0.03794144,-0.1695613,-0.30905694,-0.2496239,0.31288892,0.53498256,-0.36637062,-0.28260082,0.4713618,0.69256914,0.23269287,0.028230637,0.14698112,0.09501864,-0.7133832,-0.24767947,-0.28057718,-0.1981401,0.44651335,-0.14191537,0.7471445,0.43208137,-0.031699996,-0.041022114,0.20116791,-0.035292983,-0.012947733,-0.08409222,-0.5401243,0.3166101,-0.3126758,0.2594338,0.045764167,0.6220437,0.15853946,-0.8507973,0.14895874,-0.6132597,0.013886874,-0.09426662,0.51138246,0.6530857,0.39093563,0.29123467,0.7741567,-0.2724269,0.17334785,0.014353519,-0.100803114,-0.21523686,-0.039632667,-0.055536926,-0.43309826,0.12344853,0.03134008,-0.15026553,0.3957526,0.38068146,-0.58386356,-0.15357304,0.109577455,0.83374625,-0.26728302,-0.14834067,0.8457425,0.8889335,1.1040801,0.052317105,1.1578054,0.1625729,-0.26658297,0.1662119,-0.17269298,-0.867493,0.39832982,0.4286368,0.13986103,0.42169818,0.067930594,-0.069554664,0.513324,-0.5392296,-0.011648612,-0.072414435,0.118885994,0.1531937,0.020203263,-0.59830433,-0.25312278,-0.2526837,-0.0581594,0.12106991,0.20904139,-0.11943878,0.27726132,0.04171755,1.5462792,-0.011972934,0.047173455,0.09387137,0.44409022,0.18191297,-0.3659354,-0.25294012,-0.08150782,0.23813191,-0.043293715,-0.75539374,0.12300998,-0.19137475,-0.4158698,-0.33462203,-0.15212396,-0.1422933,-0.14344685,-0.30398393,-0.36850753,-0.30414438,-0.25475493,0.42007342,-2.623104,-0.37487784,-0.12269741,0.5304131,-0.3980108,-0.4749872,-0.26899648,-0.44715247,0.44925493,0.40820807,0.57655096,-0.53167313,0.4635829,0.32542023,-0.57741535,-0.0750721,-0.76809186,-0.10093467,0.18131544,-0.044038795,-0.06271,-0.10246129,-0.14176819,0.08114286,0.36244157,0.049953766,0.10472345,0.42544803,0.49199766,0.12660363,0.4851783,-0.29430696,0.46896094,-0.5320722,-0.18718383,0.19281091,-0.5969842,0.11082194,-0.34081924,0.15379919,0.55473125,-0.79253834,-1.0581456,-0.6990747,-0.07998705,1.1544263,-0.12333038,-0.29000193,0.27362227,-0.4619884,-0.1364732,-0.12534864,0.5606877,-0.37295943,-0.22467665,-0.7509993,-0.34672934,-0.19939016,0.3154822,-0.0077396706,-0.050253294,-0.5572616,0.478656,-0.19332923,0.41611964,0.31896043,0.26583132,-0.1429477,-0.45214695,0.00022348762,0.7122451,0.47890526,0.23766284,-0.31200448,-0.14217834,-0.5912037,0.088007405,0.09210623,0.5034467,0.75104344,-0.03851856,0.2213895,0.3018257,0.07962094,0.11300848,-0.13292012,-0.28708655,-0.21270294,-0.014600563,0.59184134,0.5742653,-0.11744144,0.47994432,-0.01687713,0.15798353,-0.37436542,-0.28089052,0.40915623,0.9163941,-0.14428595,-0.24462616,0.73373127,0.29838815,-0.21869135,0.45309076,-0.7429956,-0.45075536,0.29826537,-0.0196244,-0.33103848,0.06405389,-0.18828069,0.20125529,-1.0219259,0.26029474,-0.32536232,-0.4758121,-0.67069024,-0.07691856,-2.1511664,0.2669583,-0.06419905,-0.09479008,-0.09824665,-0.4109773,0.06756546,-0.49808803,-0.86522216,0.30249354,0.060143016,0.7317046,-0.19058363,0.1855,-0.078444384,-0.3677341,-0.5762094,0.05742777,0.40732312,0.41208673,0.20526138,-0.49162617,-0.05562214,-0.056654096,-0.4450124,0.14110424,-0.633548,-0.38855797,-0.13183773,-0.6841652,-0.13798483,0.6775986,-0.18880136,-0.018349674,-0.25428692,-0.030911688,-0.06373303,0.33224458,-0.057620913,-0.04675598,0.084175535,-0.19535704,0.04283584,-0.14216737,0.41782898,-0.012706017,0.29516393,0.16213909,-0.2512905,0.2336472,0.58997023,0.72278607,-0.111110285,0.8381648,0.5607902,0.02213653,0.21518476,-0.19981465,-0.30241528,-0.11560384,-0.16018668,0.047711432,-0.3546752,-0.4448327,-0.06767224,-0.4794437,-0.8695921,0.3452205,-0.16382077,-0.038040303,0.18032318,0.33434725,0.46398625,-0.06441563,-0.1051592,-0.0470975,-0.0496838,-0.47881794,-0.38444424,-0.5006107,-0.3752219,-0.027382607,1.4174106,-0.2639063,0.17266122,0.015061013,-0.04870199,0.0024415613,0.16318148,-0.18692282,0.111300305,0.403546,-0.17816843,-0.6739742,0.37609595,-0.27585977,-0.4033943,-0.6396648,0.06669442,0.5047611,-0.60680753,0.37556022,0.4238378,-0.015308261,-0.17894812,-0.6466676,-0.13869874,0.08363461,-0.28767186,0.20393498,0.31800658,-0.7271215,0.49553546,0.2174209,-0.16082864,-0.8933271,0.76477575,0.08591914,-0.31029445,-0.08969688,0.3152148,0.18235631,-0.087381616,-0.29804847,0.10765843,-0.10987477,0.35915264,-0.0077770473,-0.11310724,0.43558782,-0.46493942,0.084660314,-0.76478153,-0.030294582,-0.6540687,-0.054011475,0.24140134,0.048228584,0.17761166,0.19308189,0.24788491,0.40397677,-0.47229385,0.016895823,-0.26030636,-0.3276303,0.14943814,0.33156312,0.49803132,-0.5207435,0.58184755,0.0132607175,-0.1545781,-0.004352319,-0.013398051,0.3635219,-0.24982819,0.3286878,0.07625528,-0.19362617,0.02371583,0.7590477,0.2737148,0.07032343,0.05775587,-0.0088103395,0.15961418,0.11344167,0.13676527,0.05159406,-0.46243072,0.017015394,-0.32752925,0.044555783,0.63892114,0.17830284,0.20836075,-0.19108419,-0.320276,0.007763301,0.1946539,-0.07475276,-1.1568851,0.44980788,0.033022195,0.87278444,0.50302964,0.063071236,0.2595745,0.5934814,-0.09388826,0.26630214,0.30475843,0.17883725,-0.24973091,0.6160755,-0.5148309,0.73146623,0.11281345,0.015041625,-0.15182538,-0.0017312944,0.46818584,0.7742539,-0.06007091,0.104813054,0.060656983,-0.1325121,-0.00024746655,-0.34686646,-0.13201961,-0.8074862,0.022010688,0.801167,0.40016955,0.18113038,-0.08179385,-0.028351218,0.11139146,-0.043579042,0.13068779,-0.030407554,0.14464906,-0.10255524,-0.6064447,-0.028586287,0.4341744,0.23599282,0.16090682,0.04199589,-0.24671099,0.34572437,-0.023042407,0.11598365,-0.0362687,-0.8424207,-0.13523398,-0.54424125,-0.17198573,0.19534658,-0.066991135,0.21522374,0.31317398,0.16612923,-0.32147494,0.34323555,-0.124347664,0.7702327,0.08546809,-0.16921258,-0.38337484,0.22937231,0.2590902,-0.2612007,0.045724403,-0.40954477,-0.06113826,-0.5772253,0.551878,0.21371698,-0.2936489,0.35367203,-0.06079916,0.017359126,0.43694624,-0.13628237,0.08169473,0.13243085,-0.08833645,-0.19609152,-0.19161336,-0.31897658,0.29892454,0.3203838,0.12639575,-0.10478232,-0.045225393,-0.061055064,0.72712916,-0.059828974,0.43514124,0.32771525,0.2761592,-0.4210392,-0.118287586,-0.0021296293,0.60625213,-0.107504144,-0.3178814,-0.3516976,-0.45005733,-0.15188578,0.4314921,-0.11624755,0.36555335,0.1525933,-0.12455497,0.3830879,0.2219868,1.0346508,-0.038409065,-0.20740196,0.084696606,0.4247485,-0.049035996,-0.2840787,-0.38723785,1.02475,0.39465013,-0.11375674,-0.11256905,-0.19821289,-0.025291178,-0.009387118,-0.1744251,-0.23072433,-0.10842774,-0.4827159,-0.40413037,0.19552289,0.15601775,0.07888486,-0.17396347,0.15049754,0.31621093,-0.09351649,0.23329571,-0.41792804,-0.19729015,0.3378694,0.2873964,0.04722352,0.1500414,-0.5836529,0.34602255,-0.6814481,-0.016040122,-0.35574558,0.26629123,-0.10055946,-0.36918288,0.18375885,0.20888312,0.4024304,-0.3037203,-0.31944078,-0.1272336,0.49242878,0.21158549,0.30770963,0.43900934,-0.28073162,0.09573936,-0.140274,0.50047696,0.87598515,-0.16237684,0.07897396,0.29058224,-0.18220861,-0.48522362,0.3514452,-0.4933055,0.17147133,0.02991938,0.023219252,-0.60494655,0.3581763,0.18949099,0.0846835,-0.06584686,-0.6620548,-0.3577024,0.12948504,-0.25340715,-0.1638454,-0.5205111,0.08138785,0.70708835,-0.0046801297,-0.25554544,0.13369635,0.330516,-0.13184601,-0.6226186,0.1907794,-0.57617605,0.21337008,0.06709801,-0.28073493,-0.46659818,0.015942955,-0.46330953,0.32605976,0.08463525,-0.2587077,-0.0073693423,-0.5162831,0.04745543,1.0122595,-0.23629944,0.2657495,-0.38312998,-0.38809663,-0.8477384,-0.11143877,0.48535043,0.38917118,-0.013366118,-0.78856283,0.11961558,-0.14634031,-0.41092673,-0.016331118,-0.115543865,0.44385687,0.15851527,0.47770777,-0.18849592,-0.88042736,0.09363316,0.02001114,-0.5311832,-0.29768157,0.51504403,0.30510548,1.1475219,0.08047571,0.09518891,0.15556201,-0.48863012,0.10753395,0.005099139,-0.058511328,-0.697187,-0.012970725,10 -971,-0.057643574,-0.14572653,-0.5093993,-0.049719196,-0.12182089,-0.089450344,-0.16710655,0.6396051,0.15733443,-0.4013616,1.4197826e-05,-0.27596885,-0.057852495,0.4131361,-0.15312397,-0.55610335,-0.20730166,0.29222026,-0.67414033,0.6197014,-0.44499937,0.056441866,0.020185411,0.33113942,0.1079584,0.14507933,-0.018458176,-0.028499853,-0.034910988,-0.1358054,7.7039e-06,0.1789721,-0.3103157,0.33221954,-0.033104487,-0.19032745,0.11086748,-0.39052638,-0.2700223,-0.5947369,0.16268459,-0.6213505,0.3625927,-0.07596738,-0.24102196,0.3427735,0.2355767,0.3883009,-0.21070966,-0.23422937,0.157758,-0.14125004,-0.4475495,-0.15005007,-0.4766596,-0.20711012,-0.56371564,0.009120503,-0.25736117,-0.05284409,-0.2325711,0.01672158,-0.29416677,0.036364336,-0.17955033,0.47729865,-0.32918444,0.15519246,0.16924444,-0.03784241,0.19173504,-0.65033346,0.012323132,-0.06344406,0.1559407,0.024066176,-0.26809937,0.2290822,0.22629225,0.38187099,-0.21117035,-0.03711771,-0.31472445,-0.32809857,0.019704778,0.477475,-0.04982657,-0.21087256,-0.15159905,-0.0061827423,-0.021915877,0.29421467,0.037253365,-0.39412802,-0.11638343,-0.18061168,-0.44494948,0.20612581,0.38761362,-0.20786002,-0.19747679,0.43989453,0.46522897,0.316341,-0.2736512,-0.14001384,-0.13464376,-0.568175,-0.12122922,0.18876357,-0.048133366,0.4884015,-0.10940441,0.16943443,0.40969285,0.053057086,-0.20532684,-0.08670403,-0.006189823,-0.163589,-0.34842706,-0.24871282,0.29123813,-0.38608474,0.16569564,-0.19669934,0.6501695,-0.09270587,-0.89720803,0.47403616,-0.5427619,0.18596247,-0.12890945,0.575976,0.63263404,0.53105766,0.310085,0.59404886,-0.28068474,0.13783808,-0.19269472,-0.28027806,0.088778615,0.108247295,0.20425399,-0.49245915,0.12850389,0.022716511,-0.1311135,0.059493005,0.29115278,-0.423671,-0.06850915,0.16515201,0.6496364,-0.31542316,-0.21145408,0.6105476,1.1128975,0.92813474,0.1294422,1.154574,0.1913596,-0.19726875,0.23397365,-0.21284619,-0.886216,0.13527408,0.24785414,-0.06597738,0.17005248,0.07162662,-0.040487837,0.42410856,-0.055775743,-0.09625568,-0.205066,0.2707992,0.034476656,0.07227577,-0.25765845,-0.4356695,0.0703045,-0.092581786,0.008646563,0.24300185,0.022554198,0.5077868,0.2013968,1.8062146,0.12864749,0.15572992,0.10518954,0.35125235,0.05674506,-0.11298349,-0.21430998,0.3488149,0.22515912,-0.001112485,-0.6528581,0.30733237,-0.09229998,-0.4338583,0.01777244,-0.34573707,0.0001329422,-0.27394456,-0.23003808,-0.2031457,-0.15623829,-0.43554682,0.46655124,-3.0930042,-0.015862262,-0.15792878,0.13755754,-0.25783998,-0.32206798,-0.07493782,-0.39807016,0.56707406,0.30510268,0.51079744,-0.4355051,0.31672066,0.3862753,-0.6722298,-0.13625653,-0.71959245,-0.0810117,0.05153046,0.29097003,-0.21084051,0.049394194,0.059297703,-0.0707074,0.21706727,-0.07521121,0.1328656,0.47437105,0.406602,0.045693982,0.5700158,-0.24709396,0.56106126,-0.29985946,-0.096876815,0.026343185,-0.2700783,0.34038797,-0.15614207,0.12752469,0.49309254,-0.477777,-0.6681889,-0.24213147,-0.26989576,1.345795,-0.49072805,-0.3270964,0.18347085,-0.25007173,-0.13774915,-0.21372876,0.44241184,-0.09356271,-0.4331972,-0.6779567,-0.023810893,-0.12106244,0.4784673,-0.08903398,-0.0027795925,-0.41227865,0.3852211,-3.582239e-05,0.55562294,0.5311851,-0.018628165,-0.39131436,-0.28144288,0.034073494,0.5391923,0.1977685,0.031665664,-0.21949601,-0.2508625,-0.36546943,0.014067614,0.12749064,0.43556795,0.46972194,-0.112951174,0.10056245,0.36069608,-0.35016093,0.024741769,-0.25079814,-0.33310464,-0.2525611,0.055256654,0.5411304,0.5688709,0.07085474,0.50433457,0.04392054,0.06637393,-0.21546099,-0.43292752,0.43805447,0.6490086,-0.1741643,-0.23750606,0.48185506,0.5764376,-0.3419125,0.37440398,-0.28032503,-0.12126267,0.60752285,-0.0466618,-0.34768683,0.2423242,-0.24227984,-0.07674181,-0.9994227,-0.09932648,-0.3987903,-0.49235764,-0.81155455,0.14530769,-3.0894744,0.16212094,-0.09571217,-0.31198207,-0.06789838,-0.20784657,0.064895876,-0.25712922,-0.6134282,0.18233833,0.32043973,0.44048738,-0.07237951,-0.12070416,-0.32081473,-0.15744145,-0.24439505,0.09327314,0.038808726,0.31415746,-0.14620826,-0.52538127,-0.060812376,-0.32603726,-0.3290607,0.10357511,-0.52706313,-0.0643159,-0.05384345,-0.7472651,-0.33256105,0.67873836,-0.44170156,-0.056324005,-0.17661777,-0.057749342,0.07307421,0.3227609,-0.12140568,0.1390079,0.09135196,-0.06302108,-0.17992647,-0.31660473,-0.05539902,0.058978647,0.24122521,0.34592193,0.049457036,0.19131418,0.49271423,0.7764927,0.1338487,0.92803085,0.4961875,-0.016524086,0.2921667,-0.32315856,0.17957063,-0.41460043,-0.07809968,-0.23458739,-0.3504251,-0.50712746,-0.07214701,-0.13587224,-0.6050803,0.5902667,0.34384274,-0.15164483,0.07646404,0.35407037,0.40949672,-0.04806315,0.25046176,-0.17433447,-0.20294006,-0.43869275,-0.36229572,-0.7096838,-0.2965181,0.16941252,0.87210286,-0.11959922,0.024668526,-0.07208059,-0.42187533,0.013216895,0.29543865,-0.03730632,0.4803222,0.19574182,-0.007025468,-0.50081915,0.46611285,0.06724333,0.0004511714,-0.55664265,0.3275481,0.6735729,-0.61264735,0.45820504,0.22090557,-0.08045815,-0.329933,-0.56322914,-0.24864988,0.03105005,-0.32331356,0.08903344,0.3144675,-0.87562275,0.4872489,0.34076336,0.0516964,-0.835063,0.4248499,-0.07322421,-0.22171903,-0.09140491,0.23689508,0.19621836,0.3155659,-0.30731243,0.15897247,-0.43331632,-0.021729821,0.09224311,-0.0037107854,0.23534803,-0.13999665,0.058096677,-0.7197243,0.17595978,-0.4452904,-0.23188761,0.5576123,0.10266845,0.30350488,0.01857093,0.07573342,0.26643604,-0.1394163,0.047772247,-0.18196781,-0.16022769,0.17803039,0.46972913,0.15402749,-0.568231,0.52953184,0.021488875,0.17929156,-0.018376421,0.009045154,0.3197158,0.14925571,0.26591113,0.07381539,-0.3734564,0.1510106,0.7082902,0.27561018,0.20938906,-0.024837326,0.11705755,0.44287968,-0.14438766,0.11310425,-0.0062072515,-0.47000456,0.0625384,-0.07511707,0.18714404,0.48984447,0.20009927,0.46196723,-0.13404766,-0.21193019,-0.009613737,0.122347966,0.09421384,-0.5774235,0.5723348,0.2484645,0.63042897,0.824567,0.021717776,0.17957693,0.7330984,-0.29418334,0.24694915,0.43779677,0.0051194774,-0.40787244,0.56934226,-0.65346175,0.53335226,0.030923147,0.0052220374,0.17052576,0.11364822,0.4917553,0.8509058,-0.23460951,0.030178586,0.05661596,-0.20119724,0.10382652,-0.24413309,-0.14070782,-0.41240102,-0.38679606,0.3787589,0.25328678,0.52522826,-0.1858562,-0.040664293,0.27138487,-0.045309365,0.29489484,0.072329275,-0.06414938,-0.1291739,-0.56471014,-0.26447767,0.627914,-0.16357227,0.2515487,0.13168655,-0.25872356,0.37015945,-0.060356498,-0.16250472,-0.03650926,-0.55623037,0.08319604,-0.12532079,-0.4803768,0.5938398,-0.22972047,0.31957585,0.15264894,0.07979337,-0.2844521,0.24351844,-0.01318118,0.8552367,-0.06289092,-0.18457665,-0.042316973,-0.04942907,0.13311553,-0.22004882,-0.15961617,-0.23526478,-0.07576808,-0.60078937,0.3580827,-0.15917686,-0.5155867,-0.04993845,-0.01032604,0.01718797,0.509589,-0.036866236,0.04137537,-0.2991208,-0.30211353,-0.19198695,-0.355606,-0.2462605,0.24398908,-0.11690603,0.18046588,-0.080416076,0.10695364,-0.091357365,0.53620183,-0.047391247,0.13236111,0.18545654,0.27978313,-0.3076908,-0.04856112,0.05172509,0.44412294,-0.080226175,-0.25021368,-0.05668353,0.010189056,-0.31329685,0.32465628,-0.10036502,0.5098152,0.029873382,-0.55338866,0.5998225,-0.1053348,0.934955,-0.12443503,-0.31008682,0.115441106,0.4254536,0.11262522,0.0075028725,-0.2663937,0.7433104,0.47007793,0.03577592,-0.18535869,-0.5824227,-0.16290793,0.19718897,-0.14285721,-0.27240798,-0.024975155,-0.44226646,-0.19725488,0.11325435,0.10092111,0.25880003,-0.14332704,0.010156041,0.1880336,0.20359762,0.40044928,-0.23409677,0.08421454,0.24107626,0.095430955,-0.024835372,0.1478927,-0.30996478,0.31373808,-0.6083746,0.3378294,-0.26947,0.106228724,-0.24654898,0.010363236,0.13077667,-0.1353205,0.22977784,-0.022417564,-0.3228099,-0.13952416,0.5213243,0.2493395,0.34207356,0.8404068,-0.2552616,0.12350045,0.044237174,0.48635578,0.8683051,-0.23983559,-0.31835654,0.25821725,-0.2852236,-0.5845829,0.20931287,-0.20642844,0.15116401,0.1520308,0.059509255,-0.39339906,0.10853281,0.2400283,0.015374494,-0.038924582,-0.46369654,-0.119855024,0.12545554,-0.38396916,-0.17263556,-0.46227694,-0.090502664,0.7574888,-0.28170627,-0.23264518,0.03911394,-0.086851284,-0.16168785,-0.44649523,0.106375694,-0.48233977,0.23654544,0.14860499,-0.49185172,-0.025361145,0.14149782,-0.5225344,0.055669308,-0.011841434,-0.20153275,-0.006339559,-0.3109024,-0.07103564,1.0641999,-0.2800628,0.18968563,-0.3302789,-0.6073303,-0.5929407,-0.20932141,0.30342156,-0.14308223,0.068244025,-0.50373447,0.009127599,-0.16192286,-0.38617495,-0.050798703,-0.34559268,0.43290004,0.051762115,0.093869,-0.117568806,-0.94620883,0.31663764,0.032006845,0.026716199,-0.35827738,0.58509696,-0.20961697,0.90100944,0.095926754,0.10972508,0.20886955,-0.4555261,0.13535371,-0.2119761,-0.30216998,-0.47746617,0.047940344,107 -972,0.34400243,-0.215309,-0.35711065,-0.18712172,-0.17149445,-0.1908216,-0.3114403,0.47895297,0.26434797,-0.34511486,-0.33917996,-0.06950353,0.1479085,0.5129544,-0.2625776,-0.43626028,0.04775242,0.06121563,-0.64337367,0.50784576,-0.44557008,0.15217194,0.22894831,0.4220008,-0.007219578,0.31391293,0.48579472,-0.0013629913,0.22619939,-0.3043583,-0.2118152,0.25131187,-0.7437572,0.056062263,-0.31672308,-0.35562336,0.199819,-0.5676769,-0.08753164,-0.88031626,0.250096,-1.2440329,0.60666066,-0.13658285,-0.16819893,-0.11398591,0.34369808,0.1599537,-0.28853136,-0.24709897,0.10896587,-0.26030836,-0.26075664,-0.30590186,0.07217773,-0.54044753,-0.5277447,-0.0055683106,-0.50473416,-0.35327607,-0.4633425,0.23705296,-0.39058456,0.23755908,-0.15844603,0.35678357,-0.5452983,0.040369444,0.31582183,-0.33107334,0.50009567,-0.62392724,0.019036178,-0.124381125,0.5418443,-0.0039303065,-0.18870643,0.48541206,0.5450467,0.59330624,0.2340945,-0.34278077,-0.3642498,-0.21387395,-0.049133487,0.60280854,-0.21395257,-0.44482166,-0.21881768,0.17217726,0.35126907,0.54000187,0.08813506,-0.16047077,-0.033837117,-0.18280683,-0.22171402,0.68213415,0.7091461,-0.2758439,-0.27027887,0.15113191,0.5869194,0.17728679,-0.18604922,-0.05594318,-0.038849384,-0.5521141,-0.20215921,-0.21343951,-0.23011348,0.7182414,-0.103922166,0.0687681,0.8792812,-0.06490159,-0.0026860684,-0.0030254095,-0.10914715,-0.20660457,-0.30979082,-0.025919914,0.4217072,-0.6248212,0.052731086,-0.38324413,0.6271299,0.0005915724,-0.79197633,0.5080681,-0.4160615,0.233783,-0.083752684,0.6211084,0.6148166,0.48598605,0.5949667,0.84627724,-0.4129331,0.037490357,0.053340625,-0.41071177,0.108070016,-0.3964696,0.28872856,-0.4481412,0.22577834,0.015576839,0.2607574,0.10538708,0.37133336,-0.6073426,-0.16922323,0.5320972,0.9576216,-0.2082129,-0.14669858,0.7984556,1.199876,0.8815649,0.014205757,1.349119,-0.017206993,-0.21604404,0.21714573,0.17548402,-0.7994108,0.15883262,0.62337875,0.23776111,0.31920266,0.09703827,-0.00497759,0.2881901,-0.52642,-0.18279675,0.00035413803,0.32387337,0.31130344,-0.21660845,-0.7099771,0.03199787,0.0622993,-0.05165423,0.014900821,0.24930565,-0.13757665,0.26023197,0.010732603,1.1937532,-0.05118672,0.15095551,0.14936492,0.5191143,0.18317476,0.13739729,-0.023669621,0.35655662,0.18464577,0.18485157,-0.5071279,0.2949711,-0.3445212,-0.40061584,0.016508307,-0.40138063,-0.210464,0.12854543,-0.3168048,-0.11282827,-0.18110302,-0.12053032,0.28903842,-2.7696366,-0.27314886,-0.20486817,0.4447413,-0.29092798,-0.0072249114,-0.008661521,-0.52266514,0.30614072,0.28228745,0.6708573,-0.8542137,0.40266562,0.6572572,-0.6347408,-0.118426904,-0.61472875,-0.045304727,0.12165189,0.524214,0.3206268,-0.44865614,-0.14791135,0.26737207,0.8885627,0.36970973,0.33538046,0.57834053,0.5887035,-0.19370179,0.5921582,-0.36742148,0.61369383,-0.352215,-0.15117696,0.22956327,-0.25791705,0.4108439,-0.40797773,0.09248873,0.5365406,-0.506426,-1.1247475,-0.68412036,-0.4500266,1.0857056,-0.34462905,-0.6580558,0.26422176,0.013638166,0.060510613,0.05764655,0.7842399,-0.11546028,0.40013242,-0.74567807,0.119400665,-0.3015214,0.1602934,0.09345383,-0.08324255,-0.40894866,0.855673,-0.099035844,0.6412717,0.31673756,0.16132636,-0.27388814,-0.33600903,0.09659493,0.77683485,0.47790346,0.021070814,-0.229091,-0.14960971,-0.2513042,-0.397051,-0.06923455,0.8904114,0.88269293,-0.23714533,-0.0066677304,0.22875527,0.20477429,-0.009314354,-0.07595659,-0.31470847,-0.17143485,0.09862738,0.46407884,0.9179181,-0.44185486,0.12411143,-0.15589781,0.47007233,0.09019391,-0.40113878,0.4350422,0.35364476,-0.22693601,0.07990287,0.7825998,0.50239575,-0.41040283,0.51993144,-0.7150071,-0.5173406,0.67045397,-0.08052269,-0.55612576,0.102448046,-0.21413453,-0.053622685,-0.746417,0.39691824,-0.46250877,-0.41739082,-0.11353338,-0.107630655,-3.3977165,0.2613995,-0.081369996,-0.056926638,-0.49770063,-0.14133231,0.19083074,-0.74145776,-0.92897236,0.2493422,0.15105508,0.46867585,-0.12692942,0.10050883,-0.3134882,-0.30411938,0.04495299,0.2919718,0.063317955,0.2513202,-0.21027803,-0.489611,-0.2817346,0.17027113,-0.45953655,0.29945794,-0.6051656,-0.532742,-0.19510612,-0.52798474,-0.11151767,0.57250655,-0.5171177,-0.022172052,-0.3464717,0.19503719,-0.40438884,0.037462633,-0.039242934,0.1785382,-0.00462524,-0.1938512,0.18796852,-0.19543734,0.62418836,-0.06314706,0.5291214,0.11669831,-0.08747561,0.037769347,0.5561982,0.8365448,-0.24770078,1.2670157,0.35783488,-0.1314111,0.2467258,0.013499081,-0.32233554,-0.81393707,-0.3799457,0.101538755,-0.54720914,-0.5092323,0.2798125,-0.32261693,-0.81866187,0.7288412,0.01169914,0.54428905,0.06057186,0.3177994,0.40418544,-0.34843293,-0.12609491,-0.026496524,-0.111970805,-0.8870897,-0.23420635,-0.7092511,-0.47602695,-0.17246039,0.66174877,-0.2574494,-0.0054293782,0.13098691,0.05834527,0.0728455,0.12959437,0.25750226,0.13084331,0.51989853,0.13885048,-0.77921045,0.5521411,-0.001947099,-0.14068823,-0.48609573,0.19322775,0.38730577,-0.8663517,0.6402527,0.40725088,-0.015093371,0.026749115,-0.7158357,-0.40353498,-0.17403084,-0.19047526,0.41251713,0.17270307,-0.9959491,0.48087472,0.29613525,-0.6026327,-0.7091511,0.3550485,-0.34907803,-0.058992952,-0.07665704,0.3441773,0.21686144,-0.19591707,-0.04036646,-0.051875334,-0.50972503,0.34303296,0.0015454709,0.07880974,0.45569307,-0.023732971,-0.30228573,-0.9367021,-0.12526032,-0.61198735,-0.12051697,0.4193132,-0.23606691,-0.4246549,0.10863829,0.18398423,0.37327448,-0.41688824,0.21611658,0.091681376,-0.5956046,0.323934,0.6219365,0.4910818,-0.41002375,0.58820343,0.13948488,-0.31379333,-0.11478088,-0.03056166,0.363883,-0.10853672,0.28051683,-0.22499755,-0.0031142994,0.24888368,0.8888132,0.21273854,0.3813769,0.08912398,0.06575036,0.5541606,0.0063844323,0.21280794,0.110305786,-0.7070948,0.26080117,-0.2494059,-0.09611754,0.65441287,0.26271486,0.18734847,0.13920927,-0.14345619,-0.12491801,0.40401095,-0.12284286,-1.2062136,0.26932684,0.115042016,0.9392732,0.39823574,0.15384609,-0.14568423,0.73501027,-0.08639418,0.10995011,0.6380178,-0.04676978,-0.5124845,0.88424224,-0.63923556,0.27854323,-0.1852403,0.0045663686,0.15813299,0.31763855,0.26099116,0.7943936,-0.28569174,0.014745844,-0.19850992,-0.07801489,0.03296369,-0.5086797,-0.08675248,0.021911483,-0.32096064,0.6246809,0.48208198,0.44382066,-0.20878963,-0.0051711337,-0.098127455,-0.15493432,0.27913463,-0.20893851,-0.12808286,-0.056530714,-0.4478828,0.04916971,0.640799,0.3228714,0.27873763,-0.34108981,-0.29173866,0.20883206,-0.11578195,-0.26441103,-0.0349061,-0.82367915,0.12105961,-0.23758993,-0.5165514,0.6312982,-0.02453644,0.04645742,0.25847194,-0.04364624,0.017877746,0.25349343,0.09979026,0.690163,0.034598015,-0.17984152,-0.43755913,0.0712461,0.17204544,-0.33565426,0.31420708,-0.39061612,-0.026872087,-0.4228314,0.6300121,-0.21057479,-0.48443618,0.24976508,-0.25589222,-0.017352143,0.56992114,-0.014086962,-0.080145426,-0.06761036,-0.23304597,-0.2698349,-0.37388855,-0.29692993,0.24584499,0.06711268,-0.0022285103,-0.13256018,-0.2759574,-0.3403504,0.4481104,0.021727705,0.37375516,0.19519868,0.10882131,-0.11992943,0.2533423,0.15974432,0.7023777,0.06172661,-0.07041218,-0.2473152,-0.58733934,-0.3982526,-0.06439398,0.019897792,0.30004615,0.14258003,-0.08083037,0.7574888,0.011118789,1.1414511,0.12887335,-0.37565714,-0.09007009,0.6795099,-0.2658458,-0.07677306,-0.44112596,1.0940294,0.5836938,-0.101673104,-0.009050598,-0.52465534,0.11088268,0.3618024,-0.3162272,0.016373921,-0.047624577,-0.6413297,-0.45363826,0.19591734,0.25103834,0.08090548,-0.12413788,0.10541318,0.052499123,0.07586036,0.4806486,-0.6269541,-0.51102364,0.22453614,0.15572727,-0.16401836,0.041422985,-0.2791123,0.42506784,-0.59280884,0.1584272,-0.83834493,0.026061874,-0.39675862,-0.3215531,0.0887535,-0.33058015,0.60620683,-0.20159736,-0.3392241,0.14287841,0.16682667,0.22866273,0.08989328,0.52595776,-0.24113293,-0.051435173,0.08734991,0.746061,1.19314,-0.6119355,0.23064518,0.13779284,-0.4073902,-0.5117403,0.37604752,-0.42459854,-0.15257215,-0.14347418,-0.40606576,-0.5512321,0.11366744,0.2443273,-0.049403407,0.10202885,-0.69693625,-0.30334556,0.13627425,-0.36029026,-0.16727237,-0.21804032,0.44328427,0.8343584,-0.26652694,-0.30724087,0.11755592,0.27856356,-0.1360687,-0.79608774,-0.16250801,-0.19181743,0.36349744,0.08952974,-0.43980366,-0.036289036,0.07139601,-0.43861523,0.1010882,0.2097455,-0.3004188,0.18768677,-0.48509678,0.06596745,0.9647152,-0.19529729,-0.023480058,-0.66360044,-0.48519078,-0.84685695,-0.33299664,0.28370914,0.11532588,-0.020494008,-0.25980958,-0.15013826,-0.19998172,-0.16711369,-0.07560621,-0.41644192,0.3370063,0.017133554,0.83067924,-0.4513268,-0.89488447,0.13119106,0.3060773,0.26648855,-0.6072401,0.5912508,0.0240103,0.826914,0.00076364574,-0.09832591,-0.04687188,-0.45243567,-0.01922085,-0.3830579,0.08246754,-0.6750231,0.16466299,118 -973,0.37371594,-0.09779442,-0.33349797,-0.09053819,-0.40293407,-0.020285327,-0.0021999045,0.72096264,0.4784422,-0.61344826,-0.46265164,-0.2441123,0.05705775,0.5372437,-0.35101217,-0.7027739,0.15246099,0.23538227,-0.1284513,0.6476799,-0.24001303,0.5592756,0.21036705,0.4241143,0.17709267,0.2742918,0.30791602,-0.04247739,0.20900905,-0.3529641,-0.17716989,0.32617092,-0.6876237,0.5982584,-0.35353744,-0.54416484,0.3119205,-0.7889849,-0.42333025,-0.7052604,0.24142797,-0.8654606,0.793082,-0.021053657,-0.14003272,0.028089106,0.17279617,0.06566089,0.11846237,-0.009740109,0.00399791,-0.031523444,-0.20553374,-0.032111,-0.38358226,-0.8044756,-0.66401833,-0.013711643,-0.4424262,-0.064229086,-0.48014516,0.25018778,-0.2851264,0.053160787,-0.017104369,0.54924715,-0.42781997,0.25791052,0.039240252,-0.16185562,0.18883081,-0.62123716,-0.28525084,0.0020414093,0.065795645,-0.24083178,-0.09562664,0.45368236,0.36088338,0.52480984,0.16087815,-0.20057127,-0.15345463,-0.07367671,-0.084864005,0.7266854,-0.008364325,-0.5801188,-0.18616697,0.08820264,0.4437394,0.19309388,0.26889363,-0.27414936,-0.19232702,-0.3089428,-0.3619967,0.6588421,0.52333605,-0.34637433,-0.2854522,0.35539833,0.21633255,0.20100553,0.053533096,0.13994792,0.0912859,-0.63144284,-0.2604769,-0.28424644,-0.33689523,0.6838778,-0.11771135,0.44898286,0.6658581,-0.15913582,-0.0019975186,0.16053383,0.15169232,-0.32978645,-0.1356062,-0.21435404,0.31265497,-0.45679754,0.06508684,-0.16554795,0.92038727,-0.052779026,-0.60309285,0.305932,-0.58126783,0.087428704,-0.11268089,0.5143479,0.6113086,0.4970337,0.4518547,0.7334608,-0.47152406,0.076831676,0.059597623,-0.47266167,-0.15133435,-0.33916536,-0.114465736,-0.42312583,-0.084524795,0.084155805,0.14162627,0.22897586,0.47384197,-0.7809316,-0.2586666,0.29052097,1.1091386,-0.22287016,-0.29186946,0.93025637,1.2148079,0.951964,0.05259158,1.4414771,-0.06255837,-0.084342316,-0.20028722,0.018565763,-0.6462099,0.2873056,0.43976888,-0.25139305,0.31645185,0.12766156,-0.049841244,0.29300374,-0.5235015,-0.31051776,-0.11784878,0.35247424,0.053824365,-0.25429392,-0.75024545,-0.21657686,0.00036148727,-0.013589472,0.31901428,0.38952655,-0.25428277,0.37941736,0.15104565,1.0687876,0.006321433,0.10268189,-0.013244713,0.3634339,0.29087144,-0.11138545,0.08092808,0.10598278,0.20706448,0.113409914,-0.49053258,0.052202307,-0.33205286,-0.348094,-0.16166818,-0.30107138,-0.3158652,0.24061875,-0.31991023,-0.22963187,-0.179674,-0.18316983,0.52265704,-2.4370456,-0.28816244,-0.18580961,0.40149552,-0.17797616,-0.27703804,0.117291406,-0.44777194,0.40800577,0.41754523,0.5643541,-0.64629394,0.29154664,0.7238871,-0.76475286,-0.27466613,-0.44490847,0.05528409,0.11343124,0.41211575,0.09561219,0.011407795,-0.08045198,0.0075272294,0.57987434,0.17071182,0.21820407,0.41154855,0.63085186,-0.25176615,0.27975136,-0.04611037,0.54047453,-0.257603,-0.1187943,0.22882803,-0.31187227,0.4345842,-0.39540648,0.025074994,0.64497626,-0.5552459,-0.8880676,-0.5942416,-0.48353872,0.9737015,0.0765785,-0.3481307,0.22346893,0.025891736,-0.15600187,-0.07716898,0.79111797,-0.19355917,0.03129673,-0.56039166,-0.056785524,-0.014380145,0.07732089,-0.07932918,-0.27026552,-0.40965635,0.6163474,-0.02029185,0.3712247,0.35095206,0.42727226,-0.4920803,-0.5003557,0.19494864,0.9410828,0.67491233,0.22321515,-0.31792971,-0.07951024,-0.3898535,-0.0767442,-0.106005296,0.72654784,0.60763675,-0.21205935,0.052004438,0.3850034,0.42550245,0.15817043,-0.09576029,-0.42108002,-0.25792417,0.022549186,0.5186382,0.6395017,-0.45759225,0.23597315,-0.18065739,0.33836773,-0.15872757,-0.44691795,0.47537532,0.9870968,-0.24906471,-0.080232225,0.93592244,0.44568673,-0.2535762,0.47415894,-0.67050016,-0.4718259,0.33402202,-0.024433207,-0.48768526,-0.00029594303,-0.15687072,0.06628337,-0.9613183,0.5150508,-0.09499802,-0.6637368,-0.4176392,-0.14106205,-2.527859,0.26026747,-0.20338936,-0.008380106,-0.19044703,-0.17584802,0.013479674,-0.6792432,-0.7091165,0.4429725,0.09792368,0.5570848,-0.24892953,0.2258708,-0.06608741,-0.5419547,-0.20758423,0.28984353,-0.023344422,0.32292348,0.05766625,-0.45889148,-0.094770975,-0.02524047,-0.5623634,0.15053307,-0.6088499,-0.46028534,-0.32024124,-0.7251717,-0.074168146,0.73625314,-0.38193554,-0.034749042,-0.25754485,0.26400802,-0.10781336,0.07860911,-0.0732823,0.09601784,-0.02742461,-0.14635208,-0.0062565566,-0.112256035,0.73420155,0.14682797,0.5404048,0.32773745,-0.15723595,0.002758318,0.6490777,0.6398014,-0.21872795,1.0929645,0.17936713,-0.22052515,0.35155994,0.11683104,-0.5043291,-0.61019075,-0.39064372,0.17372537,-0.48823333,-0.45779067,0.1707326,-0.24111858,-0.77030414,0.62940794,0.10729803,0.44039184,-0.10953133,-0.09469849,0.40730038,-0.28215224,-0.0810827,0.035579935,-0.06895722,-0.6583551,-0.43065658,-0.650966,-0.37083295,-0.050456453,0.79800427,-0.21330228,0.123858854,0.1416564,0.08098446,0.10820389,-0.021836648,-0.006893861,-0.16282704,0.3369344,0.0042807283,-0.8129282,0.56182206,-0.1023909,-0.17211692,-0.58055264,0.25006565,0.62828624,-0.6470806,0.42963964,0.3402023,-0.08630611,-0.21610999,-0.65766156,-0.38629067,-0.121041834,-0.13686648,0.35588342,0.27216306,-0.8611433,0.37894878,0.19623336,-0.37701574,-0.66745126,0.65235865,-0.19514683,-0.086195245,-0.047046807,0.35988456,0.48890465,-0.03416605,-0.07609932,0.1913155,-0.28634468,0.5164281,-0.14080827,-0.08888702,0.43426722,-0.2233232,-0.13099222,-1.047841,-0.009687388,-0.49900776,-0.26461238,0.15190527,-0.13551274,-0.39933792,0.16408095,0.25758865,0.39429468,-0.31365862,0.16100991,-0.004793915,-0.49693942,0.37218717,0.49516597,0.7522417,-0.19797671,0.6211756,0.04121096,-0.097880356,0.043967664,0.2138381,0.4284779,0.045007244,0.31630906,0.005944514,-0.1351035,0.15530261,1.0516593,0.08635993,0.32920602,0.16767745,0.035511754,0.31751615,0.022227686,0.21471003,0.08905734,-0.64632004,-0.020924812,-0.47518897,-0.16784772,0.6013593,0.10328255,0.24989256,-0.18493435,-0.38570413,0.050519414,0.17432228,0.33994368,-1.2970355,0.1412745,-0.025822747,0.8385502,0.4065966,0.08804081,-0.08411376,0.70117056,-0.0012393385,0.046550017,0.3975908,0.15465227,-0.4099776,0.61159396,-0.4866775,0.3734241,-0.10734844,-0.101726815,0.1953207,-0.00042507052,0.26896483,0.9934044,-0.19033861,-0.026446585,-0.087382376,-0.18878397,0.0057257116,-0.52010345,0.28684667,-0.327398,-0.25563866,0.68931913,0.49069214,0.2067819,-0.23055844,0.012649464,0.049314328,-0.16284823,0.09056629,0.037202287,-0.06991321,-0.20796041,-0.4551403,-0.040389214,0.63796353,0.18076678,0.14419279,-0.08528191,-0.1729547,0.18760894,-0.0786308,-0.099559106,-0.0028774827,-0.9773563,-0.22188373,-0.29802483,-0.53688115,0.48735732,-0.0036245107,0.17589776,0.052763246,0.097014286,-0.20095627,0.39197916,0.34852615,0.73417455,0.19769317,-0.07258014,-0.313986,0.18005054,0.17680554,-0.39253503,0.23302475,-0.20482874,0.04624571,-0.63690543,0.38915128,-0.0059201093,-0.3629958,0.15481904,-0.13907735,0.07105915,0.35922846,0.1356546,-0.10121691,-0.03197859,-0.29709917,-0.16480115,-0.21269818,-0.20745406,0.330442,0.13408032,-0.08807012,-0.04264437,-0.24431887,-0.32060128,0.13720357,-0.04058131,0.31720835,0.11334063,0.09585172,-0.37097055,0.050801743,0.0130444765,0.63985556,-0.21713479,-0.1815871,-0.009669209,-0.35633266,-0.546765,-0.238767,-0.001978776,0.15143834,0.052657295,-0.22417362,0.7469678,0.27825448,1.2065022,0.040769182,-0.4003039,0.018171053,0.5862851,-0.042138208,-0.20059994,-0.33114576,1.3751246,0.5440408,-0.076315776,-0.17091282,-0.47019997,0.13286704,0.1858866,-0.32994598,-0.37530106,-0.03220723,-0.6143138,-0.16802818,0.2608425,0.29139012,0.006965846,0.008410722,-0.03314369,0.49243003,0.034534637,0.55113286,-0.7226881,-0.35475895,0.1272692,0.42664528,0.15910065,0.13545969,-0.5612249,0.33266732,-0.69901836,0.32173878,-0.4026173,0.20976333,-0.79293877,-0.33975214,0.18628183,0.08975866,0.58531463,-0.3817141,-0.48911533,-0.2983423,0.40430307,0.0025546073,-0.04346848,0.5241524,-0.21542855,-0.12652054,-0.110065006,0.7180921,1.2052265,-0.45757517,0.018826222,0.5392439,-0.5860323,-0.5384531,0.16289198,-0.6134503,0.12980232,-0.053155296,-0.22668341,-0.58257115,0.15280645,0.042677958,0.06056998,0.0015298903,-0.52574855,-0.21308343,0.18998954,-0.2829522,-0.16021805,-0.21634829,0.31974703,0.59105897,-0.1844531,-0.48092642,0.18310325,0.3163473,-0.13062751,-0.86205167,-0.17662486,-0.058272887,0.38883534,-0.1512389,-0.31537387,-0.37237817,-0.30757275,-0.41601676,0.03633866,0.12799594,-0.22839043,0.1798763,-0.41375393,0.0882345,0.73127764,-0.1969159,0.30644053,-0.8591088,-0.41124612,-0.84420645,-0.5299481,0.46394855,0.504639,-0.15659423,-0.68508255,-0.14591393,-0.22020388,-0.017252589,-0.21973062,-0.2234621,0.2808708,0.13171616,0.58017814,-0.27878577,-1.3175911,0.18679103,0.13318332,-0.17822984,-0.62855273,0.5119201,0.09483922,0.8728628,0.22792229,-0.12469725,0.17267075,-0.58127606,0.093740344,-0.25895658,-0.09695512,-0.6091549,0.34885955,150 -974,0.29161325,-0.25178176,-0.27319366,-0.1230528,-0.2251178,0.017650312,-0.35908818,0.4845251,0.08226917,-0.57103455,-0.22102126,-0.33101588,0.100861825,0.4700535,-0.2591243,-0.5906677,0.05987046,0.29058537,-0.40967274,0.4618327,-0.53767854,0.4168026,0.16471708,0.42087895,-0.2270397,0.21662363,0.5641359,-0.09534596,-0.021555591,-0.3005374,-0.10349083,0.2217898,-0.8825339,0.30032277,-0.18849108,-0.65457124,0.20681195,-0.65856034,-0.11605177,-0.73416436,0.4173891,-0.9967766,0.7422519,0.4199132,-0.15747397,0.14268214,0.17221019,0.384728,-0.22889356,0.11198105,0.3824771,-0.19325832,-0.037323005,-0.48157305,-0.124788225,-0.3488731,-0.6558678,0.14585885,-0.3723893,-0.16041133,-0.43028355,0.25882256,-0.15266769,0.14121714,-0.2144142,0.07835905,-0.6662115,-0.18931821,0.12860183,-0.32973808,0.3270639,-0.44187897,-0.10354034,-0.2522761,0.38689038,-0.5371491,-0.14732453,0.30167985,0.20668073,0.6510541,-0.01950089,-0.28520226,-0.37980223,-0.05546411,-0.04344985,0.66212,-0.28500602,-0.72985816,-0.055962883,-0.10458825,0.2345591,0.23347084,0.054565053,-0.24988195,-0.09300162,-0.39634895,-0.17920902,0.46270877,0.5063918,-0.6485482,-0.35726172,0.2747763,0.503629,0.017573109,0.13630769,-0.17519625,0.030386578,-0.8365656,-0.2869102,-0.024016678,-0.32387364,0.4951237,-0.07966162,0.30779332,0.80877984,-0.116838254,0.0010358393,0.011580318,-0.261021,-0.22778864,-0.07764818,-0.2776218,0.44135126,-0.27799863,0.11976566,-0.36870617,0.8580906,0.033708148,-0.628641,0.37283128,-0.64808524,0.06738709,0.13909201,0.51344573,0.34780562,0.6547421,0.33173826,0.70753205,-0.45432663,0.12808827,-0.08339687,-0.2761071,0.10462512,-0.109275386,-0.058838435,-0.28232232,0.10576985,-0.07616576,-0.1522018,0.17011812,0.620379,-0.5370821,0.077500165,0.20386143,0.7224088,-0.40295655,0.0128830075,0.91809636,1.01562,0.8730749,0.0694848,1.5190881,0.28187814,-0.13330242,-0.050178457,-0.06821059,-0.79993695,0.19124945,0.5983793,-0.112727165,0.33975437,0.16395947,0.17076655,0.41119084,-0.6111658,-0.23303321,-0.24244554,0.09424911,-0.05309509,-0.1782366,-0.4878695,-0.13295825,-0.0058832616,0.045193322,0.29867834,0.43149287,-0.12398144,0.3414939,0.00532074,1.4394728,-0.03925892,0.21271029,0.061981343,0.5440922,0.21885629,0.13918783,-0.0664199,0.110547826,0.22881901,0.08022138,-0.4932111,-0.07749919,0.021130547,-0.4614204,-0.14134264,-0.009729405,-0.25141793,0.12311041,-0.3109244,-0.21152177,0.011088753,-0.03768441,0.4530429,-2.2552907,-0.10850326,0.02062577,0.38694713,-0.28756684,-0.44289857,-0.16350476,-0.45064902,0.7444998,0.42436904,0.53169763,-0.7359973,0.36964214,0.5252163,-0.74010134,-0.18810399,-0.6293973,0.055115283,-0.1422781,0.26979014,0.1565789,-0.27797025,0.07099705,0.071963266,0.5081619,-0.018460507,0.10658522,0.15552227,0.7033779,-0.10192952,0.58262014,0.102708474,0.65003943,-0.30750087,-0.3460881,0.3558541,-0.41750392,0.2828199,-0.40085727,0.01139692,0.29896235,-0.7200605,-1.1425784,-0.74940336,-0.30262145,0.80424917,0.0364318,-0.43986887,0.2168406,0.021213692,-0.2697627,0.016933689,0.68221915,-0.2190793,0.122058466,-0.9136651,-0.016978756,-0.11567545,0.32221442,0.06991561,-0.041209944,-0.8070322,0.73707855,-0.13438186,0.20829575,0.7006506,0.12714767,-0.41598353,-0.60582626,0.28272942,0.85622615,0.3410527,0.13265856,-0.24231982,-0.24227719,-0.10118611,-0.13795574,-0.07619396,0.7155969,0.5283531,-0.12744352,0.0037691533,0.2446353,0.17330216,-0.0076399804,-0.28485602,-0.21689455,-0.17526856,0.11479261,0.73809695,0.81784487,-0.32215303,0.010227772,-0.28190055,0.5629517,-0.16611029,-0.432729,0.7090663,1.0204693,0.027014047,0.076600626,0.84575003,0.61962247,-0.07522627,0.5582825,-0.66015637,-0.50928736,0.23660424,-0.20222922,-0.4120759,0.09989921,-0.25309175,0.049830966,-0.94374734,0.3882802,-0.31469485,-0.15791112,-0.7884089,-0.14867073,-4.2994404,0.2515626,-0.30303058,-0.04495288,-0.049382478,-0.2087708,0.014820993,-0.59645784,-0.5660294,0.3385406,-0.053357333,0.5079604,-0.14266093,0.2986739,-0.24042264,-0.26998663,-0.1711326,0.29128242,0.1783559,0.269683,0.01786005,-0.5504936,0.020601388,-0.29107934,-0.38177353,0.02551123,-0.75933135,-0.11521055,-0.33515632,-0.7205352,-0.17369677,0.69128,-0.4301104,0.0074020503,-0.22449279,0.1008243,-0.43485194,0.5268405,0.047808032,0.13361666,0.11377041,-0.09255053,0.09922572,-0.118660256,0.3977383,0.077980265,0.08392602,0.28366846,-0.13561411,-0.025394749,0.3088112,0.7906562,-0.118959084,0.93240803,0.44877377,-0.045685165,0.2306647,-0.24073096,-0.46588326,-0.58681154,-0.36864942,-0.17166439,-0.40168104,-0.56636876,-0.070565134,-0.37548083,-0.7384974,0.7526573,-0.044293918,-0.3146417,0.061660003,0.28723592,0.21866366,-0.47277027,-0.12183614,-0.05610574,-0.021896005,-0.6138505,-0.32033718,-0.54366755,-0.38004366,-0.08399287,1.0211333,0.07640553,0.1368864,0.26825428,0.18827197,2.0372867e-05,0.15254822,0.070972875,0.110197484,0.5665495,0.10071764,-0.9524624,0.7539175,0.028312897,-0.35723767,-0.6245729,0.3133158,0.5299766,-0.72254074,0.6126342,0.48578906,0.021095056,0.14727512,-0.44945726,-0.46260422,-0.008782631,-0.1453003,0.39615136,0.11721015,-0.7093714,0.43322736,0.4884862,-0.3953917,-0.90158284,0.5379816,-0.026045155,-0.5364753,-0.017969728,0.40864983,0.018306136,0.06392523,-0.35147208,0.21802847,-0.49809903,0.40151295,-0.03305135,0.07637988,0.470996,-0.3291852,-0.21265075,-0.9665596,0.02715299,-0.48753467,-0.3757761,0.02613635,0.07706032,-0.21069881,0.26149315,-0.016132712,0.3766658,-0.49251089,0.24867344,-0.053067602,-0.21881822,0.18029961,0.23934373,0.54055893,-0.45651355,0.69934785,-0.061321665,0.005617368,-0.30464047,-0.046551704,0.46449718,-0.16401193,0.25256124,0.0039327266,-0.08399409,0.29247147,0.8343813,0.24330792,0.20439346,0.180621,-0.003541261,0.36050895,0.19481027,0.09254678,0.22653142,-0.5721965,0.20244277,-0.2094202,-0.1133876,0.37551716,0.047525268,0.4288311,-0.26508713,-0.27694207,0.060814656,0.4121813,0.1844234,-1.0645857,0.1389871,0.07980606,0.72219306,0.5867692,0.15840037,0.287999,0.74153805,-0.34926397,-0.12242991,0.16203931,-0.06706005,-0.389054,0.6048894,-0.47712988,0.39037046,-0.028055971,-0.09889569,-0.020223552,-0.14918177,0.21384016,0.84677124,-0.14482419,0.12130387,0.027708376,-0.12498732,0.064638786,-0.3645175,0.17754288,-0.30845445,-0.25171274,0.90584886,0.36543405,0.5083648,-0.12955295,0.047653638,0.13265567,-0.063976035,0.047109984,0.06288513,0.14121374,0.13535544,-0.63337135,0.19202848,0.7202284,0.1633537,0.12923144,-0.06640558,-0.43914604,0.38249928,-0.3108674,-0.27905232,-0.12521613,-0.94144285,-0.07544117,-0.5263612,-0.17995556,0.32189712,0.11592784,0.26983887,0.19614299,0.16494918,-0.17709303,0.4207763,0.017183412,0.9747435,0.35436425,-0.021122104,-0.23659499,0.2868129,0.19011433,-0.33817795,0.19609486,-0.1644322,0.021114012,-0.63912654,0.36033052,-0.063636556,-0.30333892,0.24321112,-0.16685668,0.010555747,0.5093037,-0.18915229,-0.146368,0.37172875,-0.15620849,-0.1583156,-0.35277602,-0.21926436,0.278538,0.29872474,0.25740525,-0.026296306,0.04944873,-0.39646593,0.73712623,0.07153923,0.4325308,0.2262805,0.2368814,-0.37142974,0.07933991,-0.27152833,0.60232633,-0.21297356,-0.16397658,-0.20482488,-0.6021546,-0.45348293,-0.022210801,-0.084888086,0.097704366,0.007084371,-0.12285147,0.6279082,0.18257864,1.0468303,-0.0030813874,-0.3395963,0.21910386,0.62946326,-0.08289254,-0.062619105,-0.44418994,1.3805637,0.46047768,-0.16765155,-0.066263996,-0.22060302,-0.04040586,-6.151199e-06,-0.38491812,-0.089967795,-0.060159046,-0.6660676,-0.23301895,0.32179466,0.44242612,0.07528237,-0.16280004,0.35883665,0.24750724,0.19468744,0.2930323,-0.6426442,-0.37102038,0.55491817,0.3086482,-0.052693546,-0.007604039,-0.3613649,0.47826853,-0.35435495,0.0772752,-0.63909996,-0.01178354,-0.29568657,-0.1663385,0.122215554,-0.042196583,0.070094936,-0.40638837,-0.2582666,-0.15566906,0.2687382,0.19817111,0.2922961,0.6259688,-0.17331739,-0.0046023903,-0.20894139,0.62876886,0.90721893,-0.4679144,0.008099305,0.51738244,-0.30041012,-0.2573629,0.3556137,-0.30355945,-0.13811496,-0.15254508,-0.13500816,-0.42821997,0.2275979,-0.078008644,0.052907027,-0.012059498,-0.84801614,-0.12603362,0.49520817,-0.32512212,-0.31789836,-0.3518569,0.42229065,0.9496676,0.04819884,-0.37017232,0.26603454,0.23094305,-0.29388076,-0.73693335,-0.20888798,-0.3419644,0.2836786,0.17821482,-0.26558205,-0.20802906,0.12339256,-0.5960721,0.02239626,0.1355634,-0.3328317,0.19628778,-0.5553622,-0.030172214,1.0117676,-0.2511878,0.3030942,-0.6670464,-0.47866398,-1.2025287,-0.22176628,0.86417407,0.27309236,-0.049127832,-0.63887256,-0.0803416,-0.10949619,-0.27571535,0.04121895,-0.22459646,0.28419074,0.10266203,0.7609475,-0.23913565,-0.8148409,0.14584777,0.19547157,-0.17406969,-0.4318931,0.40577698,0.23177285,1.1045799,-0.053346418,-0.22505574,0.47455508,-0.7204767,0.119289055,-0.22680569,-0.098750114,-0.8827182,0.14785503,225 -975,0.41386852,-0.46429324,-0.30077338,-0.40011406,-0.27096158,0.0229173,-0.25464663,0.37066412,0.47176045,-0.16975972,0.10139263,-0.21862416,-0.037415046,0.5900839,-0.22488663,-0.9165595,-0.054773666,0.071173936,-0.6322956,0.5149453,-0.48383817,0.03000093,0.027740855,0.428856,0.034117162,0.06680885,0.20798627,0.110737205,0.2684332,-0.23675565,-0.15086,0.22840425,-0.8324685,0.38198853,0.022463301,-0.40425944,0.0057462426,-0.49031916,-0.23040166,-0.9178146,0.5004657,-0.95763314,0.6380294,0.04492875,-0.3850885,-0.20560579,0.4854308,0.3175209,-0.36022735,0.08240766,0.3429917,-0.34179506,-0.12026085,-0.105397,-0.6915101,-0.79122275,-0.89965093,-0.03833178,-0.58064103,-0.23087159,-0.27660623,0.43010482,-0.3930313,-0.0010015636,-0.35733482,0.6766404,-0.4484709,0.07616518,0.30982348,-0.23236163,0.4796098,-0.48828062,-0.25854725,-0.14214592,-0.12227478,0.060907733,-0.6017867,0.35832077,0.68863577,0.42428797,0.15568799,-0.29595843,-0.3715062,-0.118696906,0.020898039,0.55539066,-0.2128819,-0.5689518,-0.35266054,-0.010521573,0.5197395,0.5483093,0.20347229,-0.581495,0.25143614,0.021472951,-0.24636273,1.0204803,0.51507956,-0.33569008,-0.36764747,0.2113039,0.2324349,-0.23901984,-0.33393317,0.25767392,0.11052247,-0.533507,-0.19575796,0.5898758,-0.28313276,0.48359722,-0.25405362,-0.07269581,0.830664,-0.3871768,-0.295479,-0.07640858,-0.0641388,-0.0043500187,-0.46870786,-0.31320834,0.27423546,-0.45970282,-0.043906845,-0.42646924,0.8325731,0.047435593,-0.8915334,0.08107183,-0.6202103,0.27243027,-0.2313383,0.8029974,1.0132434,0.6799392,0.6694621,0.9272326,-0.4630031,0.16669452,0.22624417,-0.3495552,0.13447425,-0.49414596,0.11835875,-0.4638432,0.089128755,-0.26356727,-0.16380104,0.05875539,0.7211327,-0.43872756,-0.13800947,-0.015769884,0.9039469,-0.36877084,-0.14409478,0.97139645,1.0920933,1.0813862,0.34411678,1.2518361,0.40242243,-0.13706432,0.40678686,-0.2259285,-0.8154572,0.251957,0.2772511,-0.39187965,0.33691064,0.01485883,0.21431693,0.45614552,-0.43216935,-0.17649272,0.049060266,0.2812456,0.2422318,-0.2678992,-0.408233,-0.2222888,0.19426537,0.10224466,0.017280335,0.20759034,-0.27791774,0.65881044,0.2856446,1.048759,0.046885524,-0.124217175,-0.007832527,0.59379274,0.08389328,-0.23374347,0.23793045,0.26135033,0.4860517,-0.031700917,-0.80859727,0.2184391,-0.34001946,-0.34096965,-0.30008295,-0.48195633,-0.014392158,-0.31367865,-0.25639245,-0.40733337,-0.2684784,-0.2032021,0.41663426,-2.1329312,-0.09506868,-0.2331613,0.3863709,-0.04908865,-0.076143645,-0.14036036,-0.6766952,0.42674765,0.5282952,0.37999257,-0.86670905,0.41315213,0.46531686,-0.58205664,-0.024300952,-0.9791298,-0.08325334,-0.34278235,0.39133546,0.02960509,-0.16182545,-0.22204804,0.20475137,0.7993506,0.2730674,0.24673471,0.2847814,0.69742405,-0.264479,0.66098344,0.05702739,0.5179009,-0.20923099,-0.13216272,0.13469233,-0.7406054,0.12519534,0.18792653,-0.08665085,0.7485794,-0.6841513,-1.0789635,-0.7676775,-0.49625808,1.1015295,-0.47007942,-0.58561856,0.39996845,-0.1216799,-0.2483222,-0.08137617,0.7454161,-0.39405358,0.18700895,-0.794295,0.030828407,-0.021363974,0.4396797,-0.13539878,-0.022407765,-0.22070317,0.7150909,-0.284518,0.5029503,0.18744947,0.04821049,-1.0165603,-0.7539056,0.13436285,0.8082778,0.32414192,-0.02274453,-0.15249786,-0.38228345,-0.076850094,-0.3818892,0.03230728,0.72121036,0.6654603,-0.2511689,0.09545872,0.6035019,-0.5199424,-0.031937283,-0.12517133,-0.40807754,-0.23672327,0.13217965,0.59266144,0.6554983,-0.16718537,0.27408254,-0.18791012,0.40149552,0.011090897,-0.51611805,0.6073986,1.3549244,-0.106419325,-0.33495706,0.6154068,0.4678318,-0.61021304,0.5117138,-0.48454323,-0.18029526,0.69852704,-0.031573806,-0.68754005,-0.20353742,-0.4523743,0.0017671495,-0.98745805,0.45599723,-0.30487853,-0.66674197,-0.6168047,-0.27392942,-3.8737125,0.09472289,-0.26662454,-0.17335004,-0.44608036,-0.06069987,0.3804941,-0.47587585,-0.69562435,0.211885,0.25389767,0.39755583,-0.060745668,0.24225,-0.45035404,-0.011780572,-0.4219101,0.32874203,0.26715595,0.37703538,0.05167999,-0.38470626,0.17085212,-0.0912507,-0.6575231,-0.014521575,-0.87981856,-0.7310592,-0.19432887,-0.9507133,-0.46509796,0.7137991,-0.4776217,-0.14260791,-0.32621473,0.09522605,-0.11981708,0.6251191,0.16614266,0.24191932,0.07604716,-0.09411474,-0.2164135,-0.13661651,0.2693429,-0.06161341,0.46994948,0.162936,-0.10995315,0.38793534,0.676973,0.68728864,0.14235607,0.9056031,0.45905384,-0.029049207,0.30012983,-0.13897288,-0.3094735,-0.78459907,-0.3084461,-0.0893649,-0.46427822,-0.25829792,0.0026075006,-0.33936492,-0.8143419,0.5143764,0.1490613,0.22740635,-0.043618537,0.41548428,0.26222923,-0.009911758,0.2251577,-0.120074704,-0.37828603,-0.6292826,-0.5238887,-0.7190596,-0.6786054,0.3776976,1.1166369,0.1153592,-0.27694097,0.10807333,-0.3367401,0.023654163,0.45563594,-0.07625925,0.30896968,0.46548238,-0.08970429,-0.7266838,0.41965732,-0.041072886,0.10002051,-0.7804597,0.15684307,0.7353546,-0.6609158,0.7898674,0.21334167,0.29762426,-0.40282845,-0.5462657,-0.39195698,0.16294307,-0.1766897,0.6295501,0.26522088,-0.85403764,0.6173032,0.19321117,-0.2296752,-0.63502234,0.32540607,-0.21427381,0.03400681,-0.071651116,0.42252642,0.33596808,0.0016709536,-0.31005913,0.44276938,-0.5216876,0.12301606,0.07967057,-0.035314582,0.29702097,0.07234206,-0.21329018,-0.87577426,-0.06542956,-0.67652655,-0.256638,0.09541844,-0.12949638,-0.020406682,0.34497696,-0.06970744,0.38038006,0.15027995,0.18056433,-0.18320742,-0.28079244,0.1877563,0.600561,0.41049784,-0.42925835,0.73226655,0.26085466,-0.08595599,-0.08771132,0.049709283,0.4441308,0.3718134,0.5804882,0.17186694,-0.32439527,0.11196437,0.80360794,0.09244353,0.5830904,0.10214529,-0.093476966,0.5787635,0.19438972,0.24484459,-0.18938231,-0.5345689,-0.093165904,-0.25204438,0.16314285,0.5744505,0.1252974,0.5162362,-0.09354305,-0.1935369,0.13765085,0.22022445,-0.34324592,-1.5179336,0.22603497,0.41594929,0.746112,0.61865973,0.040141366,-0.09954812,0.76536715,-0.4097678,0.011849415,0.73817384,0.34000984,-0.30847943,0.67330354,-0.70375735,0.4629911,-0.37823516,0.14963162,0.060001813,0.528074,0.27034396,0.96982497,-0.10086347,-0.009838295,-0.03522265,-0.2573992,0.4340089,-0.45529142,0.21483925,-0.29892868,-0.45044184,0.70972323,0.30244297,0.4147707,-0.14725909,-0.060858995,0.2349782,-0.055847026,0.11448836,-0.2084606,-0.5774783,-0.12025305,-0.6794348,-0.17128138,0.6601659,0.15288796,0.17302242,0.23215458,-0.3921873,0.19384038,-0.027410025,-0.3264513,-0.045998167,-0.7042813,-0.29893923,-0.10749736,-0.4844831,0.5547314,-0.56080294,0.23596077,0.31658912,0.08067779,-0.512714,-0.080154456,0.28971398,0.6997427,0.008229929,-0.16413327,-0.1731073,-0.25262815,0.20863397,-0.47745448,0.17066434,-0.24199545,0.11055714,-0.5823732,0.6047736,-0.18787995,-0.6851428,0.03161625,-0.14754276,-0.047744613,0.50824213,-0.40677696,-0.17209436,0.22776763,-0.15243629,-0.09915459,-0.33448574,-0.30847225,0.53948456,-0.19167486,0.043671153,0.07578496,-0.19843672,-0.09389223,0.596528,-0.09559539,0.30453172,0.38509095,0.27848646,-0.21275052,0.12783217,-0.13521159,0.66770315,0.15160416,-0.31060132,-0.07954671,-0.23648436,-0.2777825,0.14442748,-0.07851167,0.40021738,0.038089402,-0.9021614,0.8170813,0.0742661,1.348778,-0.043875176,-0.7415315,-0.037483603,0.6554303,0.04752346,0.020634968,-0.33218542,0.8585461,0.7100004,-0.22976366,-0.19960587,-0.6767022,-0.21516538,0.38718742,-0.32237187,-0.2412359,-0.10985397,-0.9380187,-0.122114226,0.22705114,0.12148607,0.095113985,0.008826489,0.13968854,0.043177307,0.0389872,0.5148423,-0.6278128,0.34093744,0.17119794,0.5023615,0.16700095,0.040095888,-0.31592387,0.19235268,-0.6627201,0.32869163,-0.5263123,0.22722778,-0.19085726,-0.2745791,0.17798905,0.0015220642,0.34212255,-0.03263779,-0.12246553,-0.13254032,0.9252361,0.23137864,0.49982262,0.9494211,-0.2793214,0.03841998,0.20947978,0.66050303,1.7678852,-0.18104331,-0.023986463,-0.13129947,-0.4696319,-0.7485589,0.45868626,-0.48144847,0.003816846,0.16034117,-0.33991545,-0.25216365,0.15504497,0.1672703,0.07899471,0.18862909,-0.45245904,-0.4148644,0.38599166,-0.38884968,-0.30003667,-0.17599279,0.3083295,0.7264096,-0.18487045,-0.3880794,0.059961896,0.3480347,-0.15336542,-0.5045363,-0.115111396,-0.41951767,0.46790257,-0.047932822,-0.46406382,0.111832164,0.08875017,-0.48416686,0.25166246,0.22584641,-0.30107313,0.21295612,-0.09623488,-0.12302933,0.89197075,0.038057238,0.20550999,-1.0664282,-0.4917062,-0.92977464,-0.14566368,0.25909513,0.23215461,-0.17945243,-0.71551687,-0.24677905,-0.027542844,-0.13864572,0.19323973,-1.07624,0.53703773,0.13903566,0.6978451,0.08007118,-0.8228801,0.012663543,0.31351677,0.11402744,-0.6934551,0.6259011,-0.25143355,0.83225834,0.06309907,0.19709647,0.100820675,-0.47270852,0.24648246,-0.25020412,-0.5103598,-0.66710836,0.06898245,229 -976,0.25454345,-0.38206726,-0.5430808,-0.23411474,-0.19402823,-0.0040979087,-0.052266814,0.7367414,0.12974882,-0.30746692,-0.14964613,-0.26068592,-0.13253494,0.272796,-0.27472478,-0.18888596,-0.13626947,0.27825955,-0.41721782,0.25200528,-0.44429618,0.29444307,-0.0806718,0.3535501,0.19176151,0.043853384,0.24987802,0.14392403,-0.09097141,-0.39148706,0.114579156,0.037237402,-0.5150574,0.29714274,-0.26642266,-0.53590834,0.04351793,-0.63168085,-0.37940907,-0.7936164,0.29127622,-0.8144369,0.6068908,0.06913078,-0.37093335,0.02061289,0.3150328,0.37531546,-0.10837658,0.031287055,0.28219765,-0.03721422,-0.03148525,-0.15647754,0.003939605,-0.30155912,-0.52791023,-0.07987105,-0.19215655,-0.057069976,-0.099828124,0.2079734,-0.31137258,0.2314126,-0.18756084,0.7120336,-0.38828617,-0.115266465,0.016561087,-0.054795872,0.33668032,-0.5608736,-0.20053951,-0.21722922,-0.042937957,-0.08102366,-0.23146553,0.39695016,-0.01416108,0.29405332,-0.29169255,-0.11199224,-0.19271488,-0.10988994,-0.17066464,0.5433328,-0.10097011,-0.3760601,-0.04767243,-0.12229911,0.21876375,0.053494237,-0.0057110777,-0.11102325,-0.03620132,-0.097519375,-0.34776628,0.36355937,0.5589963,-0.3032744,-0.0050797,0.25723186,0.4905525,0.075056516,-0.078005984,0.043784693,0.08356164,-0.59944797,-0.28783053,-0.18926767,-0.2033706,0.63099325,-0.1695464,0.36052135,0.4874963,-0.22581294,-0.14388639,0.1391995,0.34985152,-0.10684462,-0.24505575,-0.80297184,0.50477266,-0.49783796,-0.17264375,-0.18934989,0.94141513,-0.05261285,-0.6558255,0.3457098,-0.6136882,0.037937492,-0.15298912,0.5186127,0.3681133,0.6947955,0.383976,0.6411713,-0.2657445,-0.0075468896,0.12137027,-0.19992734,0.13282253,-0.32853433,-0.13426727,-0.33847886,-0.044737995,0.14961818,-0.16368338,0.02447623,0.4990948,-0.44015652,-0.20208366,0.2258128,0.6386236,-0.3382485,0.12382617,0.56285214,1.3333248,1.1206585,0.12528867,1.0504045,0.07662522,-0.2820988,-0.028481677,0.13389464,-0.9660598,0.26645917,0.31386805,-0.16762719,0.2632672,0.18491352,-0.113721706,0.4536546,-0.6834136,0.027047152,0.004692179,0.3466193,-0.04848774,-0.029378753,-0.65755767,-0.5021473,0.14142978,0.08229013,-0.080453396,0.3356491,-0.24190345,0.15585418,0.104596004,1.4640064,-0.09301416,0.07517024,0.09189664,0.53952557,0.12245884,-0.35908532,-0.09787334,0.10565394,0.2699854,0.19788113,-0.44515887,0.16859135,-0.016685594,-0.4684043,-0.1122602,-0.2595951,-0.00512335,-0.29980177,-0.4999846,-0.25450486,-0.070893094,-0.31290582,0.34816512,-2.5877125,-0.08034853,-0.051529717,0.41318908,-0.14861561,-0.31723318,0.02704762,-0.46291023,0.35886863,0.57448375,0.47780013,-0.6772384,0.39033395,0.53182876,-0.4310263,0.018392703,-0.64218646,-0.24163342,-0.06438698,0.22340429,0.10798404,-0.09064124,-0.04098501,0.31029618,0.39381212,0.010460635,0.1193314,0.30254242,0.30492884,-0.06942808,0.57090867,-0.04451924,0.33362997,-0.5898602,-0.20351581,0.20425217,-0.6038334,0.02681675,-0.046158694,0.10636804,0.5036043,-0.6545018,-0.93973315,-0.5170795,0.026507366,1.344549,-0.3250421,-0.31293535,0.31256709,-0.31478786,-0.35105214,-0.11252898,0.45229214,-0.31593117,0.029641401,-0.8309725,-0.1189355,-0.15068923,0.46764427,-0.10487215,-0.045605075,-0.5909399,0.56553996,-0.16262442,0.68817765,0.48894167,-0.012790352,-0.66062605,-0.5365337,0.008968107,0.89334583,0.5364355,0.15629455,-0.32499242,0.012354267,-0.39620826,0.06567061,0.1701497,0.39999074,0.8793955,-0.099152066,0.24369116,0.35985488,-0.107568964,-0.013300655,-1.3653934e-05,-0.34191465,-0.04239855,0.099186994,0.7301334,0.60045874,-0.08231935,0.20066532,-0.09849094,0.49097633,-0.33613873,-0.36381045,0.31816068,0.9380349,-0.0564973,-0.24429682,0.75491923,0.73574924,-0.28144732,0.5408926,-0.51320016,-0.43324608,0.2898473,-0.03305862,-0.4571845,0.26695022,-0.258967,0.15585463,-0.8963324,0.44789806,-0.19136688,-0.5036154,-0.78951967,-0.29523414,-3.1833014,0.21425065,-0.061720025,-0.31423038,0.10822652,-0.22127743,0.29065642,-0.6034694,-0.69687736,0.061145745,0.12751588,0.6806675,0.027801162,-0.11449371,-0.18508002,-0.23357186,-0.36355218,0.2544455,0.23619516,0.25952095,0.13044772,-0.61177313,-0.21919155,-0.3634204,-0.47642308,-0.025536457,-0.63583946,-0.553469,-0.09719081,-0.78860354,-0.4720502,0.7266078,-0.022227418,0.018037831,-0.1685529,-0.0740723,0.031459726,0.28152114,-0.002243191,0.1123908,-0.1163488,-0.16681674,0.029570555,-0.11637209,0.1961402,-0.02000294,0.41769704,0.28857622,-0.24735078,0.02799816,0.68212473,0.6631584,-0.20371553,1.0179703,0.30500454,-0.113264754,0.139426,-0.03017124,-0.24052444,-0.44644326,-0.16229275,0.014712816,-0.5143217,-0.1187489,0.11209111,-0.2840641,-0.8531926,0.66427004,-0.05293218,0.017039502,0.095595345,0.2442698,0.21536846,0.025931578,-0.11988817,-0.16846737,-0.08583887,-0.41101098,-0.3031307,-0.7865567,-0.20145097,-0.09339776,1.3726715,-0.15647689,0.13024053,0.19415846,0.07429327,0.19079712,-0.020988781,-0.07351838,0.3047459,0.40144944,-0.08537785,-0.62801516,0.35315838,-0.3458088,0.008358538,-0.38672996,0.11755409,0.63065237,-0.5675313,0.35299546,0.3657394,0.0895558,-0.3521969,-0.650771,-0.22000845,-0.012694013,-0.1501496,0.70276636,0.26378983,-0.84451735,0.4503182,0.21720871,-0.3398975,-0.71321285,0.53506124,-0.14101668,-0.26819146,-0.21721056,0.34733108,-0.14116473,0.13255617,-0.1791411,0.30573037,-0.3203698,0.2095391,0.10205004,0.025801789,0.4518458,-0.32456142,0.11082311,-0.63283956,0.02537331,-0.4593791,-0.33507392,0.13900463,-0.08227874,-0.17948562,0.4636527,-0.0679034,0.3603569,-0.26939544,0.0032188415,-0.07590234,-0.32425418,0.6679041,0.4817253,0.4805119,-0.38497895,0.63954115,0.05630386,-0.15242305,-0.53316885,-0.12966928,0.333554,0.039791394,0.34817585,0.06656475,-0.16979082,0.4870401,0.6681511,0.32840458,0.503559,0.028784249,0.055200864,0.06819476,0.13842385,0.32746848,0.119549915,-0.5077223,-0.0045639575,-0.3069528,0.1822783,0.42435232,-0.050042056,0.35926193,-0.2691564,-0.24972606,0.17434683,0.21006016,-0.396219,-1.3302718,0.4665262,0.044374492,0.68049836,0.6446245,0.1007182,0.11574235,0.6513226,-0.14961821,0.08184961,0.267999,0.40265578,-0.39829734,0.72509295,-0.57880986,0.562834,-0.10191526,0.012274114,-0.13241313,-0.10978861,0.51568997,0.57962865,0.06460102,0.16566579,-0.015383279,-0.23292932,0.100153044,-0.43998942,0.2675243,-0.5534216,-0.20270932,0.75321704,0.32388726,0.31693918,-0.11958493,-0.075828254,0.085686125,-0.16531952,0.28604132,-0.04263836,-0.09570557,-0.11108675,-0.74532425,-0.06494222,0.57015616,0.062107217,-0.037838217,-0.030858194,-0.23865089,0.13168366,0.079503134,0.04441517,0.08742495,-0.6823146,-0.09390004,-0.31193766,-0.23811834,0.37125653,-0.26407337,0.13316922,0.2128601,0.13646445,-0.418804,-0.07086208,0.44754377,0.547964,0.031172806,-0.015014112,-0.077114396,0.13353607,-0.06512317,-0.1860036,-0.007246101,-0.4865881,0.12332535,-0.45008707,0.4984459,0.007250863,-0.41319808,0.21158615,-0.06570713,-0.05066939,0.48313516,-0.0036744834,0.044972785,-0.083904505,0.0014386416,-0.017025892,-0.33896652,-0.27195585,0.27553284,0.07025913,0.023598442,-0.023456369,0.037730217,0.06069777,0.57980615,-0.12941907,0.39835805,0.42601553,0.059672266,-0.52822936,0.029378995,-0.46360832,0.70469224,-0.1097631,-0.0900268,-0.4890345,-0.25041643,-0.13191293,0.3156326,-0.17631598,0.34857076,0.08567437,-0.21146159,0.83775425,0.1480566,1.0952461,-0.14420156,-0.40738067,-0.07979052,0.6427236,-0.035668276,-0.13058202,-0.35550776,1.098232,0.46239337,-0.30258173,-0.26200575,-0.3937326,0.023258865,0.138456,-0.13608034,-0.5148305,-0.18872419,-0.74827397,-0.10986658,0.20428224,0.39975703,-0.03997399,-0.059630107,0.32772297,0.5925343,-0.025409097,0.31150037,-0.28296724,0.17809269,0.4165523,0.10434451,0.03738105,0.011156544,-0.54669636,0.21890974,-0.65981805,0.11829944,-0.30276138,0.13853736,-0.07837254,-0.40634727,0.023095557,0.093332455,0.23864086,-0.38282022,-0.16724166,-0.037282597,0.48743087,0.07886616,0.26600856,0.63612497,-0.24506679,0.14587338,-0.034306962,0.3634693,1.0313625,-0.3370673,-0.15316117,0.2549554,-0.36551946,-0.6905787,0.21901853,-0.3243321,-0.0007312894,0.03205862,-0.26648208,-0.57295394,0.30497652,0.30107445,-0.042946257,0.15459211,-0.55987847,-0.08988921,0.32877344,-0.23145965,-0.16474703,-0.52901244,-0.05882225,0.40277824,-0.16691044,-0.43411598,-0.12223033,0.35628337,-0.26274452,-0.5620781,-0.06649399,-0.5188362,0.26950222,-0.07741751,-0.3223295,-0.10904577,-0.035347663,-0.4340435,0.21871957,0.23216352,-0.20558289,0.1059523,-0.31661686,0.01509403,0.9662162,-0.012182847,-0.0031435401,-0.498604,-0.56185555,-1.07398,-0.18086687,0.58180887,0.09476167,-0.06301583,-0.6718019,-0.05525583,-0.16586098,-0.2570719,-0.21611877,-0.2342942,0.4307889,0.19165215,0.4067894,0.04667272,-0.746168,0.14881745,0.08275457,-0.20769677,-0.22474173,0.7773798,-0.0014951795,0.88355225,0.08686118,0.16512461,0.17504142,-0.54604363,0.28366318,-0.053846717,-0.23404074,-0.44855723,0.114226006,267 -977,0.30270267,-0.22076301,-0.6189473,0.14926556,-0.17274523,-0.18966845,-0.09590276,0.7959539,0.40552926,-0.19913363,-0.29734918,-0.12748644,-0.27541453,0.3970728,-0.07241086,-0.28980315,-0.38153383,0.31560233,-0.4212714,0.68298304,-0.12951788,0.20565715,-0.12247894,0.6605643,0.3843236,0.26793593,-0.26943463,0.15677586,-0.1166201,-0.31529796,0.12669301,0.41031557,-0.4728244,0.40231714,-0.25671688,-0.43502292,-0.2241638,-0.67856276,-0.5142509,-0.77147037,0.24770863,-0.790959,0.65192235,0.084886745,-0.33371258,0.21515858,-0.20305291,0.29214764,-0.098060176,-0.109171964,0.25643715,-0.052190423,-0.20220017,-0.34664375,-0.19484481,-0.08442042,-0.4006177,0.0641029,-0.18408492,0.02727561,-0.17834297,0.19680844,-0.13251123,-0.08759144,-0.17190008,0.624777,-0.47048873,0.09255152,0.021569718,-0.03528756,0.2754859,-0.7208342,-0.2884654,-0.19589068,0.05538894,-0.2654732,-0.33181608,0.17157844,0.06364829,0.3157216,-0.16742826,0.109820664,-0.5285181,0.09713211,0.11066727,0.513218,-0.35965988,-0.49089193,0.084746845,0.1867263,0.38207474,0.14922129,0.17104083,-0.4148222,-0.10203304,-0.26688078,0.1123267,0.33548945,0.5486258,0.13012102,-0.109762296,0.31072095,0.47567,0.4217588,-0.02630642,-0.048858978,-0.019726684,-0.49480146,-0.025907898,-0.25999492,-0.22429495,0.5755531,0.08255319,0.18189634,0.5308258,0.017910969,-0.17578329,0.23393509,0.2559988,0.121306755,-0.290284,-0.3605376,0.30848366,-0.14148639,0.29657242,0.09328227,0.48282972,-0.10626966,-0.8606348,0.3183192,-0.56649923,-0.03634771,0.0132066365,0.4072093,0.68479896,0.53219473,0.3948111,0.66986334,-0.26891333,0.117462896,0.08895446,-0.17435999,-0.1350691,-0.091905825,-0.3577898,-0.61960906,-0.21388903,-0.18317477,-0.45357442,0.3527437,0.36301047,-0.6265572,0.0004144013,0.1856519,0.6991911,-0.24124098,0.018109512,0.9163747,1.1578156,0.97683734,0.1009233,1.040815,0.05190422,-0.27917105,0.11276581,-0.28197667,-0.72021925,0.19688377,0.35673317,-0.75451267,0.36861467,0.13605925,0.2028995,0.37023354,-0.6134646,0.00044805408,-0.2181211,0.1268613,0.13748926,-0.25108463,-0.64757764,-0.29595095,-0.19406529,0.23889904,-0.20960769,0.33209544,-0.298194,0.20952332,0.051739026,1.625267,-0.1484901,-0.0783536,0.13041314,0.3384114,0.03093117,-0.31791544,-0.099038735,0.107467495,0.25284064,-0.11989101,-0.47728163,0.0048719915,-0.016481891,-0.46471724,-0.24044223,-0.041742682,-0.1638005,0.008424776,-0.32106647,-0.45334035,-0.18347962,-0.3899375,0.5565176,-2.59132,-0.029822985,-0.05196839,0.33755627,0.019497449,-0.46292764,0.026717972,-0.14367788,0.40979567,0.30898222,0.5118865,-0.5621885,0.09110691,0.4942804,-0.66669565,-0.1623046,-0.46798334,-0.03239942,0.19720729,0.30385393,-0.03161588,0.061345387,0.11203964,-0.20340152,0.3790105,-0.07015221,0.13551737,0.5832106,0.34821597,-0.19803487,0.18867114,-0.10097512,0.5630902,-0.26747185,-0.42267293,0.42185515,-0.22547965,0.2610256,-0.21860214,0.06621106,0.4726185,-0.48012704,-0.8196584,-0.55112606,-0.09079864,1.2175156,0.019074077,-0.5374434,0.469683,-0.5905503,-0.41570598,-0.09183719,0.5326061,-0.22538039,-0.17139752,-0.95652187,-0.16538826,-0.129013,0.24495402,-0.08616358,-0.21469721,-0.57774216,0.7442376,-0.022097915,0.28397712,0.6598114,0.20463257,-0.39000627,-0.5552582,0.11743001,0.9987712,0.5724441,0.19381489,-0.1714578,-0.038400866,-0.28158605,-0.029338788,0.19654219,0.62890166,0.52215594,-0.18197943,0.17837603,0.20515785,0.033242792,-0.039196488,-0.25749817,-0.15963969,-0.18630637,0.20398936,0.54398304,0.80827254,-0.14721712,0.58278954,-0.14582632,0.15486154,0.116367295,-0.2942496,0.33197927,1.0038058,-0.15795232,-0.508759,0.6181942,0.5794867,-0.25465012,0.40036505,-0.43190044,-0.057451874,0.2462533,-0.10477483,-0.4825533,0.27054948,-0.25428694,0.137073,-0.89508,0.32133502,-0.20381093,-0.83482516,-0.74573505,-0.022087798,-1.8708279,0.21439426,-0.33377305,-0.3973039,-0.14566013,-0.33303845,0.007344377,-0.6810832,-0.8494853,0.12639761,0.07450078,0.5056664,-0.10757003,0.08503419,0.21708632,-0.37124467,-0.046839394,0.18154056,0.21303454,0.34894764,0.023406547,-0.46814197,-0.34400672,0.025423557,-0.38653773,-0.1025156,-0.8039255,-0.33188498,-0.09943463,-0.70018375,-0.08163136,0.49373856,-0.49444956,-0.0467997,-0.30117166,-0.03309893,0.0049256743,0.13831834,0.030184459,0.15142366,0.22921613,-0.05346313,0.12741894,0.1076742,0.1370761,-0.00019754768,0.2718869,0.28967825,-0.2530299,0.41705623,0.39515296,0.9129421,-0.46902323,0.87496746,0.85025024,-0.24619141,0.072689146,-0.3493914,-0.26364493,-0.5387064,-0.2901848,0.1786824,-0.46474448,-0.52772367,-0.007877481,-0.29915985,-0.89551175,0.665531,-0.109972894,0.05285596,0.28978705,0.053867597,0.49439946,-0.19199203,0.013011667,-0.13756166,-0.04834137,-0.44696265,-0.31496114,-0.5211009,-0.39356047,-0.075319424,1.3975092,-0.0440032,0.20399356,0.43459326,-0.37037283,0.07989882,0.15303285,-0.18246107,0.07918112,0.4207944,0.0445681,-0.56403106,0.12194184,0.17237154,-0.10261308,-0.5626483,0.26022774,0.72434384,-0.51020753,0.67127144,0.07751302,-0.1347261,-0.21861973,-0.5821464,-0.19510281,-0.16112499,-0.2893228,0.5245315,0.47553486,-0.49811706,0.34202957,0.42412573,-0.26290748,-0.8985301,0.28712326,-0.06347017,-0.13115138,-0.047844447,0.27932057,-0.11181512,-0.09271226,0.031096166,0.52358985,-0.050747644,0.4055608,0.080615684,-0.24555309,-0.26136827,-0.35063475,0.030716557,-0.94248545,0.5017021,-0.22569835,-0.40872687,0.24896026,0.25550288,0.14862081,-0.055252276,0.34117502,0.41883516,-0.3269426,0.10983026,-0.3011067,-0.40926307,0.15401785,0.42873096,0.6111764,-0.38810858,0.42567787,0.0026372462,-0.17394291,-0.22865506,-0.08042766,0.5456252,-0.20678806,0.1742096,-0.012864068,-0.25436032,0.19405054,0.6548564,0.16487479,0.40173763,-0.23572822,-0.013203105,0.10199189,0.085073456,0.31546384,-0.16930383,-0.6588727,0.36997557,-0.345573,0.10847793,0.30302006,0.27710375,0.17191657,-0.31568474,-0.532195,-0.038974848,0.27487448,0.3540365,-1.3194425,0.42804036,0.14778784,0.8041746,0.5951282,0.24836175,0.18145049,0.7047471,-0.081322886,0.039450057,0.4379216,0.06171156,-0.56807494,0.30852705,-0.76840156,0.4749865,0.17341043,-0.008089364,0.21416697,-0.14015353,0.46177554,0.6917782,-0.22996917,-0.057888776,0.10114577,-0.26764667,-0.31835097,-0.36494908,0.06344317,-0.67690545,-0.47921228,0.8202387,0.66905785,0.2768576,-0.07485413,0.06855549,0.24263553,-0.03552719,0.28735158,0.08934732,0.07921406,0.07227193,-0.58435047,0.14820807,0.49070144,-0.098472275,-0.086786814,-0.15459765,-0.22593784,0.23153472,-0.08445184,-0.2563519,-0.10063998,-0.69373703,0.061310492,-0.5175457,-0.33065495,0.19097343,0.074567616,0.14450026,0.06058824,0.1340333,-0.2515617,0.58912647,0.15184547,0.9371437,0.0876853,-0.09577666,0.043260522,0.5308049,0.14573081,0.029528266,-0.11784413,-0.17945406,-0.1589956,-0.61573476,0.37587467,0.07217071,-0.46125436,0.11980514,-0.03607369,0.16137244,0.40850696,-0.13427147,-0.24405709,-0.072586045,-0.32826224,-0.24422567,-0.3935448,-0.2490286,0.31259048,0.33871153,-0.029287804,-0.14616136,-0.092346236,-0.14775512,0.42978683,-0.07927437,0.63862115,0.2994381,0.27081895,-0.35024983,-0.07528577,0.17701039,0.5274076,0.03239072,-0.072043344,-0.24045832,-0.30028296,-0.45330983,-0.047408592,-0.18839277,0.5011848,0.14660445,-0.16179048,0.68208826,0.19552186,1.3309797,0.004110202,-0.30171674,0.21561317,0.47605997,-0.20622799,-0.19732976,-0.22852746,0.9668209,0.59532535,-0.051672686,-0.01878149,-0.28788632,-0.07875742,0.2356712,-0.195738,-0.15341493,-0.08432339,-0.65081984,-0.15147603,0.29267743,0.29214102,-0.008675933,-0.11275707,0.16200522,0.2716751,-0.16970274,-0.008781677,-0.15363467,-0.102722704,0.39748782,0.23767479,-0.002400446,-0.11593536,-0.6314426,0.30879968,-0.50948185,0.0356257,-0.25421667,0.2052451,-0.35289168,-0.30751982,0.09691523,-0.054073382,0.3856233,-0.3559731,-0.122816466,-0.32778403,0.6241647,-0.17103049,0.0069992035,0.33717698,-0.40109196,0.20170085,-0.10761396,0.21545449,0.6483084,-0.36133313,-0.08394027,0.2589867,-0.12767771,-0.25058317,0.35106504,-0.25760418,-0.022993337,0.04421516,-0.07421805,-0.7033861,0.09005718,0.1214062,0.096605554,-0.3591244,-0.63032216,-0.07677375,0.30238757,-0.20031957,-0.024369448,-0.32612842,-0.17976953,0.6487926,-0.09596736,-0.70433533,0.1582695,0.074194446,-0.2770633,-0.23131022,0.105625644,-0.38056713,0.21632382,-0.12822986,-0.576424,-0.41820994,0.11784853,-0.34931335,-0.056243617,0.10445938,-0.34599385,0.021253377,-0.36732882,0.107814,1.035338,-0.24539714,0.5493891,-0.39745015,-0.60220987,-0.90197545,-0.27631247,0.5224079,0.22514208,-0.13186684,-0.9401415,0.08476186,-0.28811964,-0.20061472,-0.1141784,-0.13224584,0.48538175,0.19117396,0.54704773,-0.50656193,-0.8028841,0.47531638,0.27674404,-0.0742351,-0.5348644,0.5604002,0.38366356,0.9139946,-0.07520707,0.21150765,0.11969022,-0.61884993,0.01537385,0.12798546,-0.22281972,-0.5429152,0.06150139,352 -978,0.58248997,-0.5155177,-0.5585042,-0.1554834,-0.3319211,0.017544592,-0.3825368,0.43781447,0.30907288,-0.3994363,-0.36382157,-0.15031426,0.0874148,0.09693818,-0.33297044,-0.47944522,0.003825891,0.113105975,-0.56621444,0.33693317,-0.60867286,0.30204067,0.18471673,0.39897582,0.26333687,0.12564333,0.07995675,-0.057871204,-0.03149035,-0.362859,0.09382935,0.24052659,-0.71901685,-0.087249495,-0.4768942,-0.4892025,-0.05199235,-0.8033346,-0.1663771,-1.0403335,0.20132756,-1.1264834,0.52908075,0.09159803,-0.4129359,-0.1611573,0.30996767,0.16866931,-0.247996,0.06757979,0.23071893,-0.06047826,-0.21243432,-0.12411158,-0.20514226,-0.43436328,-0.6616068,-0.031235963,-0.5401629,-0.31204364,-0.2527091,0.26898843,-0.3309181,-0.019972168,-0.36705953,0.3952282,-0.4490127,0.045977622,0.036221363,0.07393761,0.6262288,-0.73566866,-0.21228144,-0.2634518,0.37258285,-0.16805485,-0.55575454,0.32987916,0.71520174,0.31088734,-0.07365684,-0.16729248,-0.29056698,-0.10303788,0.09434132,0.5243702,-0.419043,-0.47661978,-0.22684553,-0.042703133,0.63441527,0.72416174,0.060323514,-0.222439,0.12613788,-0.1385059,-0.31553602,0.75909626,0.65461016,-0.367728,-0.24204187,0.12808831,0.56094074,0.47915727,-0.37999958,-0.084767185,0.076876394,-0.8018511,-0.13705638,0.39586583,-0.23573379,0.71735406,-0.2249206,0.31234708,0.72023743,-0.31434923,0.111448765,0.30945134,0.060052186,-0.15346469,-0.2547549,-0.38405538,0.25277805,-0.76141393,0.11048633,-0.47124052,0.7452787,0.07701273,-0.8034981,0.3520397,-0.7028133,0.19545497,-0.17491788,0.5585547,0.8245352,0.5152381,0.4524657,0.7806853,-0.124490544,-0.019626806,-0.0139942765,-0.37369198,0.32457188,-0.35468313,0.16454132,-0.3908654,-0.07679907,-0.3124276,0.07456128,0.10887375,0.77936286,-0.6221072,-0.2402137,0.13728765,0.53229153,-0.28944892,-0.061083723,0.781175,1.0762863,1.1044587,0.27403915,1.2961781,0.24973798,-0.2482458,0.23060937,0.08487896,-0.7653177,0.35018867,0.27621096,-0.89657706,0.25957397,-0.199368,-0.17422771,0.30762714,-0.3836074,-0.08949001,-0.016162958,0.13224736,0.12657216,0.015652765,-0.571693,-0.37246782,-0.039052747,0.11476196,-0.030061115,0.28583536,-0.2238111,0.18493369,0.04416847,0.9543439,-0.1414309,-0.048155405,0.07973595,0.46333194,0.11015254,-0.14833371,-0.0036985637,0.2992398,0.40704888,0.16282572,-0.74002105,0.2299453,-0.2732069,-0.20034692,-0.00014373063,-0.42896265,-0.30365664,-0.013829028,-0.554158,-0.23263498,-0.18024111,-0.17410183,0.471222,-2.532937,-0.31899324,-0.09188224,0.29862416,-0.17253436,-0.32683724,-0.20879528,-0.55872965,0.35228592,0.18822198,0.6058821,-0.76579064,0.32704094,0.7510699,-0.61968935,-0.17150493,-0.9397398,-0.35427552,-0.037236415,0.3689428,0.123974666,-0.13906305,0.17467925,0.11151884,0.7669672,0.2419084,0.2371666,0.30975726,0.87087315,-0.113387324,0.7536417,-0.20331244,0.38946286,-0.42813396,-0.38079327,0.18882275,-0.4528067,0.31387696,-0.0702965,0.027270153,0.7118818,-0.58609235,-1.1898801,-0.6292645,-0.38558847,1.2110037,-0.30912894,-0.5848368,0.2220501,-0.33679584,-0.113047935,-0.067360155,0.8330914,-0.036501296,0.14278528,-0.8340004,-0.10319202,-0.12635441,0.09129818,-0.012358924,-0.0098244725,-0.33598965,0.76187336,-0.02987414,0.45204955,0.13395867,0.027980745,-0.47061223,-0.5851701,0.13085334,0.94880754,0.400106,0.06104473,-0.31518552,-0.23527725,-0.45173937,0.085132346,0.076802984,0.7036923,0.8526537,-0.09815043,0.36623025,0.36318356,0.05428084,0.10717245,-0.23283009,-0.37433428,-0.22333923,0.012873101,0.6145911,0.7745815,-0.02522102,0.40834093,-0.14227271,0.12280446,-0.17368291,-0.4374237,0.5727363,0.9499313,-0.18181233,0.10106345,0.6792774,0.5986222,-0.53644526,0.5886021,-0.61325896,-0.30996674,0.5525382,-0.1298786,-0.55675936,0.33862552,-0.34269303,0.1064497,-0.7757219,0.45979613,-0.53030956,-0.19178078,-0.44365054,0.012700248,-3.1960728,0.4753852,-0.06887099,-0.019453824,-0.49027044,-0.36122918,0.40141815,-0.5384201,-0.8144541,0.11438437,0.10637965,0.707974,-0.29364967,-0.007348135,-0.251419,-0.4951474,-0.13888457,0.22037145,0.2540563,0.4049727,-0.286736,-0.38756305,0.07456623,-0.07413669,-0.3664286,0.07027016,-0.65544975,-0.77066886,-0.035237007,-0.48864836,-0.34824783,0.70456576,-0.4439655,-0.060413145,-0.11898255,0.15568523,-0.020460587,0.4138237,0.059917856,0.36170852,-0.09861286,-0.034536436,0.10289303,-0.016251069,0.62237245,-0.09084515,0.14030018,0.22327396,-0.1046807,0.18169901,0.6062525,0.7809586,-0.16518314,1.4507278,0.27157903,0.043708228,0.21066587,-0.22706954,-0.4575158,-0.6592939,-0.007733959,-0.14761986,-0.4588353,-0.39545098,0.18565437,-0.10181258,-0.74351984,0.7461983,-0.13404587,0.42584544,0.01782621,0.6077029,0.35039523,-0.12041736,0.06322132,-0.1029249,-0.18774691,-0.5034326,-0.29300943,-0.6994477,-0.34530076,-0.13293992,0.8456483,-0.38165075,0.020329619,0.059867937,-0.06712863,0.11928346,0.022770975,-0.029775506,0.21421805,0.43408594,0.06410129,-0.72825205,0.3268986,0.07711452,-0.1260691,-0.48259658,0.16571645,0.8755144,-0.8925851,0.633817,0.54577935,-0.15477669,-0.28285646,-0.6878928,-0.16500756,0.14402635,-0.30602926,0.61067414,0.19857588,-0.9508754,0.49349517,0.6118819,-0.40166536,-0.7066512,0.827592,-0.07060613,-0.11010505,-0.38437217,0.43698162,0.22539859,0.04307879,0.018539742,0.3735049,-0.46182862,0.35978943,-0.14813253,-0.031561956,0.22875309,0.0028969229,-0.083321504,-0.7900177,0.26697877,-0.5906455,-0.31099427,0.52650255,-0.06732385,-0.018500831,0.5345098,0.17947158,0.45255914,-0.35354486,0.030778294,-0.10182357,-0.35286897,0.24722195,0.5952231,0.51634705,-0.40338683,0.6298608,0.33009464,-0.28612804,0.31600326,0.06905739,0.28099936,-0.0536075,0.42666483,-0.15233728,-0.38370094,0.25712112,0.88955724,0.13873808,0.6455963,-0.06408814,0.12325704,0.30909923,0.17912552,0.37086418,-0.1402466,-0.65975654,-0.12642172,-0.27729294,0.1587917,0.55530584,-0.009763909,0.11232369,-0.025679385,-0.13186865,-0.066433616,0.49953598,0.045609795,-1.3879391,0.29070044,0.15811504,0.88144445,0.5792725,0.041510504,-0.057553727,0.54513335,-0.27651757,0.06859597,0.7262269,0.41423398,-0.51806885,0.76865166,-0.5674574,0.4022309,-0.50070536,0.18804781,-0.056229286,0.11590133,0.41033572,0.95762175,-0.27219272,0.051443357,0.08779316,-0.35209784,0.060502566,-0.47651085,0.24389467,-0.38466376,-0.26468423,0.9479103,0.46652904,0.3396774,-0.16869906,0.02162965,-0.004341171,-0.26923004,0.32511792,0.03908817,-0.03421718,-0.01983245,-0.803316,0.20445009,0.76829165,0.23319674,0.02181903,-0.18566492,-0.2610987,0.20439911,-0.25402912,0.22870848,-0.076182075,-0.8878813,-0.16731188,-0.6415823,-0.68147665,0.30461273,-0.170549,-0.027421664,0.3752852,-0.005393248,-0.23200937,0.35894006,0.31919074,0.6119093,-0.12985548,-0.13477382,-0.33426142,0.21765096,0.24753308,-0.24956593,-0.24721572,-0.2304401,0.18650971,-0.35412616,0.66222894,-0.21862635,-0.5864188,0.0015159845,0.009242264,-0.15998007,0.77013093,-0.14765744,-0.12479456,-0.117927566,-0.07901556,-0.24241671,-0.17071733,-0.11397624,0.18703267,0.27138987,-0.13547057,-0.34683627,-0.3642547,-0.06679928,0.3329482,-0.1651713,0.6105212,0.60413283,0.34606206,-0.23740582,0.14812787,0.07799255,0.69606704,0.032972954,-0.21980497,-0.75416607,-0.21103103,-0.26040268,0.26170284,0.040365897,0.37339193,0.16551343,-0.3530765,0.9818114,-0.12995449,1.059192,0.043445177,-0.44523796,-0.01755861,0.52789366,-0.27451625,-0.23226133,-0.3577088,0.7913976,0.53449446,-0.33710146,0.010891649,-0.4344894,-0.1132102,0.18808493,-0.3662786,-0.12868538,-0.19113375,-0.58571947,-0.074019894,0.16019535,0.39194906,0.18463561,-0.11897153,0.19880785,0.3332333,0.089588985,0.44389915,-0.6766529,-0.28110623,0.0316655,0.60235536,-0.18183081,0.1953672,-0.23800921,0.28962496,-0.6705705,0.21990657,-0.73139524,0.16851345,-0.22352739,-0.45715818,0.018346088,-0.0873846,0.378198,-0.13580741,-0.31947255,0.031956147,0.36526334,-0.040981613,0.32060662,0.5983442,-0.23400351,0.03338954,0.031688638,0.7001654,1.3563786,-0.3604119,-0.28331703,0.20453861,-0.36181682,-0.7820616,0.5355045,-0.6522838,0.012289846,0.069546215,-0.24498609,-0.3461046,0.11271523,0.23950395,0.3383112,-0.25150225,-0.7656708,-0.19032073,0.46274084,-0.13738635,-0.1759392,-0.2813148,0.39619377,0.58669037,-0.3795625,-0.21195713,-0.36465412,0.39222825,-0.16307986,-0.44869298,0.056680508,-0.49822393,0.34086072,0.11840383,-0.3359622,0.038963728,0.1344032,-0.59386104,0.14995794,0.042615317,-0.32166824,0.13573922,-0.31606725,0.11255572,1.0112087,-0.28748626,-0.23955217,-0.29187983,-0.7097847,-0.7706811,-0.19595799,-0.03888315,0.3596117,0.13189521,-0.4342204,0.17685589,-0.1226604,-0.4115215,-0.07673846,-0.5394689,0.45563078,0.1010319,0.5835811,-0.2809784,-0.80110437,0.21843472,0.24187675,0.0038047596,-0.56545,0.68075293,0.019487465,0.78495777,0.17165212,-0.058407366,0.025410105,-0.37856606,0.073310114,-0.15268013,-0.05826179,-0.8885721,0.022545625,418 -979,0.76107115,-0.33354887,-0.6878814,-0.25452816,0.0043636216,0.061218195,-0.3302631,0.8232317,0.36436856,-0.4662754,-0.3061758,0.03907133,-0.042215984,0.62280107,-0.2581543,-0.75841445,0.15727416,0.21948063,-0.39896402,0.48067442,-0.45183268,0.27424437,-0.16797063,0.6385861,0.16299847,0.21131417,0.12721296,0.046425402,-0.011177635,-0.2608758,0.04838066,0.35665274,-0.531115,0.13551936,-0.17568554,-0.4349026,0.025590574,-0.49319673,-0.30447993,-0.88811433,0.30808347,-1.0481827,0.84242535,0.0583152,-0.30615482,0.13830428,0.10470903,0.101464294,-0.26697105,0.06298722,0.07324226,-0.07249192,-0.07477914,-0.2859618,-0.26614136,-0.7520963,-0.47823173,-0.062955186,-0.32651058,0.038876675,-0.34956545,0.124001145,-0.34143656,0.049589496,-0.12360398,0.33035713,-0.5364504,0.03829226,0.11501509,-0.17043371,0.026695762,-0.7160897,-0.29178184,-0.15600617,0.22688088,-0.07324906,-0.28535706,0.13258441,0.34416825,0.55067414,0.023281792,-0.24951248,-0.28912959,-0.04470015,-0.19543484,0.49356842,-0.44594917,-0.64348996,-0.22078443,-0.14344418,0.56029886,0.17340544,0.3094582,0.021491861,0.18077321,0.16440812,-0.35131636,0.5991965,0.63011134,-0.44040775,-0.063975275,0.2871391,0.269671,0.4381064,-0.20844486,-0.06697458,-0.00010195039,-0.5405618,-0.25667766,-0.16128683,-0.3263805,0.702354,-0.06946546,0.2806061,0.61038077,-0.10804232,0.037742157,0.26886225,0.26498747,-0.11974915,-0.25498864,-0.5219434,0.3198513,-0.48108858,0.25426108,-0.335541,0.87099046,0.22280276,-0.40746206,0.291326,-0.50453675,0.019934729,-0.24285977,0.44926682,0.6229442,0.56107783,0.19604044,0.6299086,-0.46283206,0.027663594,0.06828056,-0.19644889,0.22756943,-0.28343195,-0.024998346,-0.416642,0.374948,0.04745242,-0.053753734,0.265599,0.82883036,-0.44700733,-0.3019634,0.3409379,0.9972084,-0.33464226,-0.03504865,0.8648211,1.2064121,1.0059295,-0.045864914,1.243735,0.32672006,-0.2282494,-0.04305157,0.15046509,-0.8765324,0.41638032,0.45356828,-0.5874554,0.45351687,0.19167952,-0.19541505,0.5205971,-0.41202703,-0.3403534,-0.16031143,0.3003194,0.039209895,-0.19341554,-0.71802247,-0.1398088,-0.031900357,-0.061023116,0.3506616,0.34142983,-0.23127356,0.30168867,-0.13754562,1.1517813,-0.2272801,-0.037717454,0.02394698,0.70013744,0.29107812,-0.04517481,0.38629627,0.042595237,0.5642801,0.0726527,-0.70378363,0.21703184,-0.3264979,-0.51073015,-0.11001159,-0.3724157,-0.037574865,0.17619045,-0.52581865,-0.31118608,-0.110335864,0.13539279,0.15710986,-2.2011828,-0.18227808,-0.15521458,0.54517156,-0.2174205,-0.38004476,-0.13414271,-0.40837446,0.5482746,0.25563842,0.51681584,-0.6105675,0.4675506,0.44637638,-0.54876566,-0.0625054,-0.7225623,-0.08235377,-0.16307874,0.39555678,0.14147356,-0.25817862,0.16511779,0.09013806,0.7557828,0.19834426,0.31578547,0.3288295,0.61881196,-0.29279202,0.27164418,-0.19827786,0.7391446,-0.3509359,-0.22836447,0.30417198,-0.4805495,0.14168124,-0.46540552,0.22636211,0.52144676,-0.57834613,-1.1274776,-0.6395138,0.23437342,1.3231552,-0.1279957,-0.6905333,0.15777494,-0.23534298,-0.3376526,0.03589834,0.53219485,-0.2292699,-0.1551706,-0.8211651,-0.06958101,-0.19518504,0.02879783,-0.013614145,0.13659194,-0.36960858,0.68601054,0.023625914,0.48145208,0.09358826,0.32495227,-0.1510875,-0.48285574,0.009481487,0.82517165,0.54841363,0.17328921,-0.20749989,-0.17171887,-0.26082486,0.026597396,0.11545249,0.8257141,0.7088741,-0.13421886,0.044113494,0.15039071,0.15431046,0.20959921,-0.08896743,-0.5516224,-0.31944138,0.10838944,0.65054494,0.6279726,-0.3209692,0.14258851,-0.1100831,0.43199334,-0.33875102,-0.3493195,0.56507224,1.2488817,-0.42327124,-0.20241506,0.86407566,0.35659337,-0.43878046,0.5756332,-0.86346817,-0.5101024,0.36015952,-0.0460855,-0.34649295,0.04760475,-0.3380536,0.1735132,-1.003236,0.38453954,-0.49666348,-0.44088715,-0.49972385,-0.22702244,-3.6957119,0.26078492,-0.28197774,-0.13634655,-0.44448757,-0.30150804,0.45344287,-0.7263861,-0.7104238,0.16352043,-0.015445677,0.7324864,-0.14644569,0.14468685,-0.30732673,-0.44311935,-0.23792624,0.052220292,0.12932728,0.46109754,0.077161,-0.49655432,0.11756353,-0.023069937,-0.351383,0.061868764,-0.7828541,-0.3921109,-0.13751571,-0.6209365,-0.13781531,0.6919366,-0.26381117,0.010760257,-0.3692044,0.26551536,-0.5370556,0.35102007,-0.22867303,0.14596407,-0.07163367,-0.23937015,0.3086532,-0.25036603,0.40265623,0.08898175,0.41364416,0.26441392,-0.32932058,-0.16845435,0.5894524,0.6160768,-0.07499508,0.99458426,0.52525395,-0.058457177,0.43192416,-0.16729233,-0.3499663,-0.4918375,-0.47798938,-0.024776183,-0.5280254,-0.389141,0.041383795,-0.52626723,-1.0200789,0.5156878,-0.06973629,0.4971025,-0.016152669,0.23193395,0.6190909,-0.15089394,-0.10577662,0.04221902,-0.08079006,-0.54800934,-0.10216445,-0.62957394,-0.39054865,0.014983076,0.7607673,-0.18022144,-0.007841313,0.19691172,-0.14996548,0.12418165,0.12664992,0.014516002,-0.25118724,0.61362666,-0.05809685,-0.85180223,0.397092,-0.28472415,-0.14041206,-0.6325384,0.2746243,0.48453036,-0.7522296,0.69172144,0.65025914,0.06718791,-0.19690295,-0.6646942,-0.3430817,0.056385987,-0.07314896,0.35810146,0.23240311,-1.1132221,0.42300463,0.51208264,-0.43110055,-0.5295738,0.69212395,-0.077261545,-0.21828754,-0.17477489,0.50372607,0.15225784,0.0052844523,-0.16012457,0.28611404,-0.5568978,0.54376346,-0.01941717,-0.06470199,0.3520357,-0.07712868,-0.047408655,-0.84291077,-0.00977386,-0.6819855,-0.3315422,0.35118464,-0.027084216,0.24204655,0.031993292,0.252796,0.3941078,-0.5558108,0.21926601,-0.24636261,-0.47198382,0.5228762,0.5479879,0.641657,-0.39166126,0.62782556,0.16127424,-0.28429803,0.32461375,0.2657841,0.44978252,0.08553614,0.5517651,0.06104193,-0.105569504,0.13246484,0.89182776,0.2210784,0.43475938,0.11985467,-0.11618004,0.34372798,0.19119683,0.041043967,0.05138098,-0.5205325,-0.23820587,-0.26489657,0.09307994,0.7076658,0.19632569,0.29458532,-0.039429985,-0.1924413,0.006311202,0.07243003,0.13549203,-1.4000612,0.34711814,0.08716114,0.8372998,0.27481657,-0.004775393,-0.13687015,0.5328943,0.04382139,0.036748875,0.39833325,0.021877874,-0.44730163,0.657668,-0.42496553,0.22773671,-0.22705793,0.06743524,0.00873515,0.16493931,0.38216943,0.89543074,-0.031172097,0.11048603,0.09222296,-0.38110894,0.09235612,-0.5534919,-0.06793509,-0.5562042,-0.098782256,0.6949595,0.58834195,0.41757688,-0.4105513,0.013672042,0.08142565,-0.049196135,0.1161958,0.044099636,0.13524568,-0.12811033,-0.89257944,-0.016553547,0.6263242,0.16942212,0.15479906,-0.04793928,-0.3817929,0.39158133,-0.1786246,0.07445023,0.08082893,-0.71326816,-0.15560913,-0.5544112,-0.56266916,0.43003696,0.120294645,0.10898368,0.22256951,0.13784409,-0.14247201,0.052193295,-0.124595165,0.73328316,-0.13775012,-0.3924558,-0.6964018,0.06791736,0.2340425,-0.35735354,0.018874586,-0.3357772,-0.017594362,-0.3562084,0.40079445,-0.039268147,-0.112666905,0.083953835,-0.13483328,0.07978262,0.51136047,-0.2968301,-0.07491088,0.14401838,-0.12283883,-0.46324173,-0.40087795,-0.21405277,0.29649252,0.15934888,0.06083698,-0.31339258,-0.2217947,-0.07411294,0.3916299,-0.0043887035,0.2852305,0.69831693,0.2604316,-0.05403299,-0.13391913,0.37317905,0.7254583,-0.08861059,-0.3418988,-0.43987423,-0.77054876,-0.43157583,0.15028316,-0.1079849,0.32237613,0.1903816,-0.14113069,0.67287105,0.10614057,0.9962284,0.019379342,-0.48260736,0.018503105,0.7370756,-0.0929242,-0.10255227,-0.4808529,1.1825413,0.56080973,-0.1353104,0.020163335,-0.4497335,-0.059444536,0.24522085,-0.33925933,-0.22783999,-0.20770828,-0.87100714,-0.26444104,0.23769519,0.3868738,0.20805533,-0.015735906,0.35609922,0.44679037,0.28226763,0.35976738,-0.78514135,-0.41292697,0.29206362,0.28619486,-0.08870681,0.21210656,-0.43588978,0.13057463,-0.5850906,-0.1371415,-0.47849727,0.24617608,-0.17862919,-0.55649203,0.29474768,-0.12621717,0.34497645,-0.4706233,-0.33927137,-0.0876385,0.37309995,-0.010974282,0.13643956,0.42646867,-0.30353186,-0.022094551,0.11468472,0.73179924,1.0603579,-0.061592102,0.2656073,0.41938406,-0.5490657,-0.9115345,0.18885782,-0.22855778,0.3029531,-0.1219453,-0.17404456,-0.69487435,0.4142068,0.1522939,-0.09612067,0.13181055,-0.58719933,-0.16824222,0.23405898,-0.14547619,-0.23051906,-0.24287276,0.087376855,0.62411183,-0.37498024,-0.24312058,0.08211042,0.508157,0.013663804,-0.7603016,-0.08967814,-0.55541545,0.4920053,0.1212009,-0.37896657,-0.27647287,-0.26133233,-0.53165543,0.4076189,0.22633728,-0.3588973,0.19075216,-0.58899534,0.09721885,0.75802964,-0.20283797,0.23945908,-0.7038445,-0.5633706,-0.9378582,-0.4831645,0.35527217,0.29579014,0.06603722,-0.76139647,0.18189995,-0.0050913664,-0.16234276,-0.24091025,-0.29020727,0.40627307,0.011122468,0.5236806,-0.06552081,-0.7427475,0.18599558,0.1184745,-0.29442316,-0.5038971,0.50410306,-0.19810739,1.1512175,-0.012286427,0.14129779,0.077940024,-0.61522305,-0.14777678,-0.23170403,-0.21209475,-0.86231315,0.17823504,536 -980,0.25146565,-0.36239854,-0.46195096,-0.17846766,-0.030383293,-0.038663693,-0.14251819,0.60467017,0.08071542,-0.55977243,-0.29627043,-0.23407285,0.066041134,0.5829401,-0.19931321,-0.4372336,-0.08424716,0.036948893,-0.46307644,0.43159837,-0.46095222,0.21861713,0.17253987,0.37726778,0.23958106,0.25667542,0.35697597,0.17047718,0.20813587,-0.2859998,-0.30024034,-0.14760461,-0.33646128,0.054200433,-0.027144387,-0.71718293,-0.1734325,-0.4854104,-0.22499737,-0.5637577,0.49921948,-1.1099613,0.45546237,0.015346269,-0.16491331,0.16454454,0.3034156,0.38559538,-0.0378892,-0.031251557,0.09656974,0.11370997,0.22648223,0.049811803,-0.20767908,-0.6719302,-0.607261,-0.006629196,-0.3630274,-0.38002688,-0.031628285,0.114696644,-0.41344985,0.2723577,-0.02605618,0.30011505,-0.3764512,-0.3970302,0.34434038,-0.26757368,0.5623962,-0.68408227,-0.17326185,-0.13325848,0.05226478,-0.17401382,-0.16875824,0.0366466,0.31785268,0.47127628,-0.19306785,0.024639254,-0.1683627,-0.22315283,0.0039616586,0.53784484,-0.11389546,-0.44393507,-0.17793298,0.09860934,0.23374113,0.27292278,0.36928526,-0.23672815,-0.021434875,-0.05565951,-0.48663402,0.2978006,0.45024213,-0.38383925,-0.2094402,0.325099,0.69800746,0.16371588,-0.1774627,0.16328962,0.11864607,-0.40190515,-0.16346039,-0.13461745,-0.13192126,0.74220717,-0.20137219,0.50364596,0.47221413,-0.14475393,0.29181308,-0.13719226,-0.11439254,-0.56266844,-0.088630185,-0.30495346,0.15950361,-0.54049,0.13224006,-0.15436341,0.68119097,0.18972512,-0.6210319,0.41559115,-0.4491225,0.15006527,-0.20722468,0.41996813,0.6493941,0.15628079,0.15296581,0.632965,-0.3659001,-0.03181108,-0.3245522,-0.18209164,0.10554123,-0.10517621,0.04810431,-0.5896927,-0.008960945,0.40967494,0.012899597,-0.05722496,0.59813035,-0.54094684,-0.030906623,0.184329,0.8332197,-0.26030633,-0.1530753,0.7897295,1.1822182,0.9764759,0.19803278,0.95892274,0.15985918,-0.21533923,0.061662674,0.010924434,-0.70094544,0.17120898,0.5150702,0.2160147,0.5223998,0.09066653,0.14176263,0.54494536,-0.38419345,0.3169902,-0.15465288,0.25976148,0.073010944,-0.100018665,-0.32513303,-0.066341646,0.06294809,0.08663825,0.027362537,0.27235827,-0.083625935,0.5492647,0.11738205,1.6098287,-0.22932334,0.16196625,0.028331721,0.44042388,0.08241896,-0.40713596,0.11875558,-0.09945594,0.6318799,0.00047674478,-0.5615265,0.08124201,-0.052179825,-0.5593338,-0.2508977,-0.26402816,0.08153734,-0.09460066,-0.4242534,-0.18437462,-0.16299477,-0.22523698,0.25812417,-3.0541427,-0.22008014,-0.36111024,0.2682073,-0.31470677,-0.34892654,-0.07668745,-0.45646495,0.5008044,0.6099874,0.3032151,-0.7582136,0.43905106,0.28174287,-0.31623527,-0.012971786,-0.6819671,0.11633494,-0.15565397,0.3746521,-0.004777658,-0.093678616,0.09545787,0.41635942,0.4022603,0.043399468,0.2588596,0.1680002,0.34392446,0.09070216,0.42480263,-0.12445531,0.47148308,-0.16749242,-0.10267912,0.27506557,-0.23630437,0.057430785,-0.36618072,0.25923425,0.3277903,-0.43718886,-0.66205525,-0.7080142,-0.37738746,1.1897832,-0.32453924,-0.50519043,0.20983887,-0.2777659,-0.27111688,-0.12392092,0.5380029,-0.26526585,-0.10016801,-0.8172328,0.08877921,-0.26912856,0.1377155,-0.060359783,-0.32956594,-0.4909719,0.6870039,-0.087008275,0.43054813,0.4218976,0.16767006,-0.24018745,-0.32327288,0.049709253,1.0030338,0.52499044,0.07412461,-0.20601669,-0.08097871,-0.6124064,-0.19578381,0.32838738,0.4497052,0.8770156,0.05616992,0.23105642,0.24465004,0.0650012,0.0025896549,0.0014468462,-0.25802687,-0.0038978006,0.075740784,0.7061713,0.31781274,-0.101489164,0.51368177,-0.19863081,0.1573227,-0.30687958,-0.5023764,0.5060366,0.6360158,-0.0821475,-0.2536915,0.6462416,0.5854733,-0.18799944,0.43528676,-0.6599348,-0.314481,0.3737895,-0.02372005,-0.3472527,0.20387907,-0.42144394,0.2452313,-1.0558549,0.11604321,-0.2641372,-0.5077899,-0.67449147,-0.29413858,-3.6810029,0.24186301,-0.045708794,-0.38862675,-0.033386398,-0.4845708,0.42744023,-0.60769576,-0.76995873,0.29024988,-0.022613788,0.6906186,0.035256676,0.035009008,-0.20564842,0.026508782,-0.32213774,0.0021779598,0.010449916,0.29175797,0.15339115,-0.42168155,-0.09352004,-0.13852815,-0.4669262,0.096406356,-0.5456158,-0.5343258,-0.3078894,-0.4429717,-0.30043173,0.59080845,-0.24727666,0.027278492,-0.23654528,-0.16640729,-0.21570782,0.4231971,-0.0021898418,-0.016026502,-0.05004553,0.059437342,0.086974606,-0.29156655,0.0702867,0.13395925,0.24956533,0.25277615,-0.20853579,0.29060578,0.53533983,0.65141165,0.02607106,0.6429986,0.5553969,-0.015204499,0.25329894,-0.19566508,-0.048588417,-0.31867254,-0.2982521,0.0023973763,-0.4900961,-0.7084067,-0.23453279,-0.20380493,-0.7404719,0.40862298,0.10799199,0.27756304,0.1889734,0.2721776,0.3387161,0.10035913,-0.017762896,-0.16833699,-0.114141144,-0.726946,-0.3803521,-0.68072724,-0.35748744,0.28378028,0.9569088,-0.1333141,-0.057980895,-0.01836977,-0.2053746,0.09231975,0.12983456,0.014093732,0.09742623,0.22504883,-0.22058907,-0.75415576,0.37873903,-0.17092246,-0.21587129,-0.6526051,0.043790765,0.45885658,-0.609529,0.29001933,0.16693126,0.12675422,-0.28252262,-0.39151436,-0.13737163,-0.04793901,-0.43186814,0.2999757,0.19431607,-0.7086452,0.4594244,0.30452102,-0.0070779147,-0.6755818,0.548213,-0.04621318,0.021126425,-0.22816613,0.14291403,0.16925508,0.13764688,-0.19976917,0.045249242,-0.40091118,0.17655928,0.26914915,0.084024236,0.57173884,-0.17064103,0.060973454,-0.49057484,0.15102243,-0.596001,0.013570631,0.061663527,0.045418065,0.27627704,0.3714901,-0.1205284,0.26659966,-0.36558825,0.212751,0.02940548,-0.21026659,0.19994621,0.36015505,0.14652462,-0.4771615,0.7069659,0.12805484,-0.0050783753,-0.2908144,-0.04486268,0.3694432,0.36612505,0.19531626,-0.0800946,-0.3177886,0.22674341,0.92455447,0.22564058,0.29654917,0.034609426,0.1073875,0.15278979,0.0769481,0.038303513,0.19982278,-0.5264274,-0.10808619,-0.26596937,0.092132896,0.47617406,0.17438999,0.46398455,0.010688079,-0.44045967,0.05279116,0.0826319,-0.19128682,-1.2302033,0.31819692,0.21581419,0.66851056,0.6567126,-0.10798297,0.028066855,0.46024346,-0.3640132,0.24032016,0.25778276,0.10192846,-0.4716088,0.5480753,-0.75848776,0.493308,-0.019654462,-0.054971587,-0.20923634,-0.02314666,0.40733385,0.80473155,-0.14659278,0.2051394,0.0524307,-0.19726494,0.087720715,-0.36915112,-0.2278914,-0.65865177,-0.1927174,0.7494503,0.2806104,0.43973747,-0.020316636,-0.071292005,0.09419592,-0.001557681,-0.072523125,-0.08344648,0.20953634,-0.19854863,-0.58968216,-0.35944614,0.5180296,0.23056214,0.17555487,0.13632715,-0.55525845,0.19976725,0.053011365,-0.11703117,0.09470331,-0.7692485,0.02106909,-0.21449736,-0.37149283,0.47899145,-0.38023692,0.29712147,0.18092579,0.025171164,0.07265536,0.09985517,0.11690112,0.68000954,-0.07209325,-0.10040627,-0.41472167,0.043143004,0.10909231,-0.18103197,-0.17036077,-0.3280405,0.06720707,-0.6371404,0.49101108,0.15419355,-0.22132988,0.3317132,-0.13214473,0.06377424,0.4720746,-0.163684,0.16079195,0.34600535,-0.2706767,-0.075044826,-0.23981848,-0.1900035,0.41549674,-0.17927521,0.13606687,0.08313281,0.013730327,-0.19115594,0.26006573,0.14765489,0.34857607,0.41830772,0.019830292,-0.38829094,-0.20123956,-0.088417515,0.3442195,-0.06535942,-0.27372947,-0.20581654,-0.7011366,-0.33602294,0.2138646,0.014942378,0.37424374,0.036925543,-0.08403344,0.52530587,0.18145624,1.0500834,0.01296849,-0.5281436,-0.052318476,0.42800212,-0.036613256,-0.12926188,-0.19019283,0.7113983,0.43092126,0.014468759,-0.13731341,-0.31790385,-0.138254,0.41510803,-0.09619165,-0.27930713,-0.054992937,-0.6185856,-0.3846688,0.19084981,0.26594394,0.11475314,-0.0014808982,0.43198252,0.19907334,-0.17651248,0.46003932,-0.52178836,-0.12001421,0.3770507,0.17854603,-0.009352893,0.0003406167,-0.39072633,0.3019372,-0.621173,-0.12554218,-0.33900762,0.14303368,0.06258216,-0.35945314,0.22727661,0.06794651,0.41208172,-0.2569406,-0.35723227,-0.1113631,0.6339697,0.039190307,0.2656964,0.47666678,-0.21335849,0.15029716,-0.0782964,0.4468503,1.1928475,-0.17043826,0.11126516,0.3616547,-0.36212796,-0.7341191,0.38705525,-0.23974738,0.37413326,0.11592597,-0.2201829,-0.5388762,0.4618104,0.35150686,-0.22980814,0.23647055,-0.30715448,-0.50497496,0.22698197,-0.31993353,-0.32340586,-0.4768513,0.04428351,0.43668857,-0.2640402,-0.1001639,0.03839059,0.5078451,-0.17363098,-0.49738225,-0.16818154,-0.10475986,0.356692,0.16838457,-0.26837784,-0.09580114,0.19244345,-0.31477657,0.16188869,0.03253244,-0.29172903,0.10256374,-0.42495552,-0.15615645,1.0134465,-0.1547524,-0.14616272,-0.6636546,-0.42484665,-0.5164844,-0.56602585,0.4971016,0.10549915,-0.035481397,-0.49427122,0.010575402,-0.026489545,0.12617418,-0.052016426,-0.1197175,0.5438965,0.06704782,0.5613714,0.1666486,-0.49223357,0.055591308,0.028340992,0.025434593,-0.43259087,0.7088851,0.019461792,0.7887747,0.15545525,0.07288001,0.14524925,-0.46404523,0.1705465,-0.15683095,-0.23857732,-0.7843734,0.21565488,537 -981,0.6565766,-0.58204496,-0.79244345,0.04423376,-0.0980864,-0.02889831,-0.4810275,0.5529793,0.19451687,-0.2944923,-0.28679264,-0.10757612,0.023162957,0.835745,-0.08603004,-1.0231092,0.042402614,0.1285729,-0.88607883,0.95980245,-0.34721,0.36601952,-0.16835335,0.58768594,0.35529917,0.37234554,0.4188997,0.2290061,-0.16222708,-0.069297515,0.06875036,-0.22102384,-0.54160345,-0.010601473,-0.0147138415,-0.50394565,-0.17986047,-0.39119112,-0.44306487,-0.8955762,0.5286554,-1.0159135,0.49647933,-0.048240006,-0.44526806,-0.02211957,0.092024215,0.5128347,-0.26678032,-0.05126194,0.023669403,-0.1114594,-0.1047539,-0.26094276,-0.2949582,-0.675012,-0.64989644,-0.090033434,-0.8133329,-0.18091753,-0.128299,0.15308604,-0.43983236,0.069224596,-0.030771494,0.042104185,-0.6113881,-0.528725,0.39610296,-0.28754395,0.14239581,-0.5730325,-0.07266308,-0.18110548,0.27099293,0.04709331,-0.09180322,0.21425319,0.1549572,0.4886852,0.1774482,-0.16102487,-0.26467177,-0.13813245,0.15983579,0.5791303,0.11240274,-0.72024643,-0.36557752,-0.0077948645,0.5143735,0.20943153,0.31991854,-0.27850437,0.01266654,-0.0039784787,-0.2035534,0.5477377,0.46324676,-0.5138884,-0.15874417,0.5426463,0.5941254,0.534016,-0.134666,0.22208276,0.049039103,-0.40716544,-0.18796867,0.066482484,-0.22059445,0.6780467,-0.0060156793,0.50482905,0.66628313,-0.22276978,0.25190488,-0.10821241,-0.052270006,-0.37388998,-0.09327233,-0.14677683,0.23492952,-0.41358313,0.12566231,-0.18978675,0.5593882,0.29756218,-0.42721176,0.53637016,-0.58487475,0.27250713,0.038161002,0.621766,0.81401074,0.37064347,0.26963705,0.8201745,-0.15762678,0.052993994,-0.060720444,-0.18120176,0.200524,-0.24704342,0.10291525,-0.51822585,0.27610308,0.18444924,-0.11128887,0.096082136,0.8848467,-0.52317303,-0.19384946,-0.15673816,0.71380836,-0.2786499,0.13978882,0.90333635,1.0607669,1.0029784,-0.013694435,1.4093807,0.5103174,-0.21935213,0.06891111,-0.11440476,-0.89470613,0.17033759,0.5465203,-0.22973366,0.973303,0.105542615,-0.20507622,0.51219726,-0.3076402,0.106045224,-0.0913322,0.14609678,-0.19350488,-0.115955696,-0.66684026,-0.1469241,-0.039649017,0.034273367,0.27384096,0.4362022,-0.40100947,0.32136148,-0.05894959,1.6392901,-0.34498507,0.13043807,0.017975831,0.7050716,0.43518767,-0.17498021,-0.2704814,0.4365631,0.4880247,-0.084360614,-0.81035244,0.13202575,-0.43442154,-0.40624428,-0.20768781,-0.324912,0.0027176081,-0.05883004,-0.22374758,0.013998792,-0.036236312,-0.28778315,0.2727217,-2.1707606,-0.6373487,-0.3180066,0.52088356,-0.3204367,-0.22264926,-0.07683508,-0.37357548,0.4108838,0.34290054,0.55654967,-0.7110585,0.3038655,0.44236094,-0.6310387,-0.016926004,-0.4643084,0.16114089,-0.036899816,0.7649784,-0.31133297,-0.38732567,0.19298653,0.42150822,0.41981784,0.085731976,0.027293187,0.3664179,0.48560467,-0.13535173,0.2113466,-0.17047642,0.609223,-0.44333926,-0.17825334,0.32214722,-0.3330191,0.7051923,-0.33423874,0.22570725,0.3979668,-0.56439525,-0.9247532,-0.35392344,-0.17083816,1.0602463,-0.601081,-0.5507253,0.13552853,-0.19909282,-0.13831453,0.025661957,0.67190176,-0.16197744,-0.11686947,-0.6872901,-0.0047931285,-0.11560981,0.20095265,0.00049526617,0.16066971,-0.2670231,0.83217317,-0.03588519,0.45533282,0.16486208,0.41002837,-0.23390241,-0.5097215,0.2937709,0.80853826,0.6082472,0.103968546,-0.21720889,-0.22624464,-0.46048313,-0.5166691,0.16534843,0.6712092,0.93457156,0.022709353,0.05026292,0.20954962,-0.12096095,0.09733029,-0.23671618,-0.30808946,-0.053742446,0.09319894,0.61360455,0.7428226,-0.19130412,0.58445126,-0.105549954,0.2467784,-0.15101482,-0.49395117,0.8047396,0.99950874,-0.37718242,-0.063067205,0.54370266,0.4550901,-0.6005472,0.76447046,-1.065932,-0.34798956,0.5622861,-0.06545673,-0.45897263,0.41308492,-0.32340875,0.3110014,-1.141448,0.2967055,-0.21110544,-0.20695758,-0.4748518,0.05710253,-3.607196,0.25780258,-0.19782324,-0.2747318,-0.30963588,-0.14637022,0.22178419,-0.75840193,-0.9197737,0.0934924,-0.053575765,0.8116247,-0.1937577,0.21229109,-0.228888,-0.49549204,-0.30403042,0.115159035,-0.046755236,0.5369242,-0.16749991,-0.47046262,0.031228323,-0.0035387338,-0.48486692,-0.044023644,-0.8237152,-0.42155433,-0.4057645,-0.7568618,-0.089938074,0.6406921,-0.098339394,-0.024463495,-0.3068897,0.015932733,-0.23261213,0.44773823,0.11811032,-0.04997263,0.2458344,-0.08444466,0.14592114,-0.26244053,-0.010702714,0.031594787,0.3847344,0.23894349,-0.33800155,0.28958303,0.6396004,0.7191376,-0.04166134,0.7496166,0.47583634,0.00031681656,0.34827214,-0.22761889,-0.31147033,-0.43633097,-0.3364637,-0.23642509,-0.36183578,-0.68449056,-0.5249573,-0.2771049,-0.8198687,0.430593,0.17848423,0.64963824,0.06453069,0.3162504,0.5277239,-0.1517405,0.021053303,0.14163385,-0.3505749,-0.6273568,0.039730404,-0.6814911,-0.66449386,0.6583883,0.5590948,-0.2203147,-0.1951524,0.17381394,-0.4261365,0.07664124,0.03231888,0.14933464,0.0100914715,0.25199035,-0.020019222,-0.65753686,0.57223,-0.27176747,-0.24774604,-0.6199187,0.058201253,0.63659024,-0.66788054,0.29194793,0.31191525,0.14518422,0.0049932124,-0.43228874,0.06365365,0.27386734,-0.018992841,0.25940615,0.2735507,-0.6919626,0.36952272,0.23398407,-0.36010423,-0.6980717,0.69172513,-0.010985164,-0.038023062,-0.38685954,0.52061796,0.06835692,0.09287943,-0.66640383,0.25082007,-0.65454304,0.035832368,0.3859085,-0.03410187,0.54435146,-0.13173504,-0.36953112,-0.6323546,0.21041605,-0.7368024,-0.11232176,0.5302971,0.043546353,0.15157327,-0.2365547,0.31220135,0.30841032,-0.5524722,0.1264913,-0.08032235,-0.34604612,0.58612037,0.630324,0.48584142,-0.4848435,0.7518834,0.059716392,-0.0066513717,0.16561463,-0.09130365,0.48397884,0.19975224,0.49236307,0.32601717,-0.10473589,-0.016329665,0.8455982,0.15521199,0.40734857,0.27075595,-0.21813521,0.15267491,0.31501704,0.30724177,0.21067524,-0.44848472,-0.1129754,0.08561518,0.10659826,0.7433906,0.36815703,0.31052923,-0.012416986,-0.54172385,0.19171907,0.22330853,-0.15792312,-1.441098,0.37244847,0.39318147,0.678744,0.4973089,-0.074868366,-0.060509406,0.5110942,-0.19389287,0.03462626,0.34019467,-0.044091463,-0.8138447,0.7489854,-0.7093024,0.53570616,-0.2624141,-0.03132015,0.14324327,0.26219946,0.45809278,0.8080572,-0.10225359,-0.06810145,-0.1461645,-0.25651568,-0.110333025,-0.25272077,-0.042350274,-0.47729135,-0.47800606,0.5522543,0.4975776,0.21932125,-0.03835942,-0.006962558,0.008741085,-0.12781553,0.39478025,-0.11824,0.2827509,-0.12389429,-0.753548,-0.50528026,0.42238802,0.063984066,0.25906712,-0.09515935,-0.20047359,0.23820396,-0.112629935,-0.04588159,0.049801815,-1.0494926,0.1302959,-0.5210799,-0.5602825,0.34280863,-0.026626289,0.35422397,0.19091702,-0.035881393,-0.3002322,0.37622896,-0.12983318,1.0579865,-0.094373085,-0.5316151,-0.43272948,0.32627854,0.35497582,-0.43045887,-0.034764785,-0.29877397,0.04341898,-0.6628243,0.70169,-0.15828517,-0.36792874,0.14642194,-0.31710857,-0.06315595,0.5201514,-0.39376777,-0.32622877,-0.019474406,-0.2915361,-0.39563176,-0.48709282,-0.27946815,0.057371162,0.09280278,-0.06794038,-0.25433114,0.17626476,0.10638748,0.58746517,0.047578227,0.36423534,0.7312075,0.35281748,-0.3089262,-0.22222643,0.6482026,0.55166984,0.17676817,0.071687035,-0.43096113,-0.70456946,-0.68513936,0.085223064,-0.17844498,0.24375069,0.2586341,-0.286578,0.6958781,0.24898596,1.2013857,0.021672273,-0.52752036,0.41383296,0.76531786,-0.0764191,-0.31760025,-0.45863762,1.1884172,0.5114846,-0.19128087,-0.09392907,-0.31828454,-0.53387356,0.49486572,-0.5190318,0.033585448,-0.023681536,-0.7189308,-0.2556625,0.2006001,0.3982817,-0.000268507,-0.12603126,0.237149,0.18907934,0.030795107,0.3435487,-0.5922932,-0.46582612,0.4841447,0.05660342,-0.16794555,0.014473555,-0.35041803,0.5195585,-0.89886254,0.09736412,-0.6079858,0.20965724,0.11636369,-0.6289607,0.13483196,0.13919832,0.56504166,-0.50807256,-0.47188625,-0.28385732,0.4967479,0.231005,0.11329211,0.6565777,-0.3600405,0.06367211,0.016793514,0.7084833,1.2563002,-0.059405725,0.27943182,0.14911203,-0.45330054,-0.9240862,0.34760886,-0.5204587,0.3591347,-0.30167946,-0.37057462,-0.9744633,0.2530947,0.012862897,-0.19980565,0.059722953,-0.62605846,-0.4628238,0.05712496,-0.23974268,-0.33194065,-0.53356,0.095974706,0.8478011,-0.3773684,-0.49944657,0.2789951,0.26009348,-0.08508731,-0.76002514,-0.12910447,-0.11746971,0.28782386,0.13422163,-0.44703072,0.071336955,0.15381983,-0.5545533,0.2017138,-0.058170922,-0.50374734,0.2517658,-0.41685924,-0.03087405,1.0912116,-0.25905314,0.0073820325,-0.8496884,-0.6556029,-0.9061183,-0.7386579,0.37006155,0.095847294,0.21119651,-0.6963607,0.3192502,-0.15511082,0.48529577,-0.022159642,-0.54407316,0.415759,0.07642922,0.6045034,-0.120514475,-0.865358,0.18924622,0.1891896,-0.1373372,-0.83495903,0.44614345,-0.252433,0.92898905,0.20454177,0.073594764,0.10993016,-0.6861824,-0.10043786,-0.31690758,-0.07758514,-0.6756034,0.38324013,648 -982,0.78115743,-0.20043102,-0.6339289,-0.055416755,-0.26226947,-0.07364375,-0.22086899,0.3570228,0.28860697,-0.38117573,0.009401793,-0.065911695,-0.15246353,0.5517284,-0.04681799,-1.0164798,0.12106632,0.2094647,-0.68849695,0.7486137,-0.22913122,0.6219919,0.028327653,0.526312,0.07328572,0.37208128,0.38225195,0.25114167,-0.1466476,-0.25152183,0.0515182,-0.5301539,-0.6011678,0.15611541,0.16288741,-0.35991055,-0.07222895,-0.33272266,-0.6289295,-0.76412404,0.49840102,-0.77029717,0.87682974,-0.0053079724,-0.3656199,-0.13863136,-0.12481992,0.26221943,-0.086144865,0.029472673,0.32880554,-0.023565745,0.009752998,-0.49955583,-0.206629,-0.6852113,-0.49809867,-0.10384758,-0.5762937,-0.24307708,-0.5545513,0.24556327,-0.49481806,-0.19670203,0.07599507,0.34314507,-0.43004218,-0.08510054,0.00016577244,-0.33936542,0.13074617,-0.71710014,-0.067755364,-0.22362056,-0.020760138,0.12672059,-0.10253763,0.35981488,-0.062122248,0.64175487,0.19104071,-0.34238964,-0.3308459,-0.039630864,0.09312962,0.73992825,-0.14066446,-0.43696165,-0.31804842,-0.02330687,0.45400444,-0.038773835,0.28920716,-0.33032545,0.10814208,-0.016292829,-0.13331635,0.8183408,0.5650742,-0.32732323,0.15112586,0.40799913,0.38377994,0.22068027,-0.08809104,-0.024491012,-0.17873123,-0.445728,-0.16114664,-0.19635575,-0.38585043,0.5808638,-0.10765457,0.21510096,0.79358405,-0.25171936,0.074920565,0.30452618,0.1716394,0.10499026,0.009950864,-0.3322063,0.38370258,-0.321592,-0.07343286,-0.2681935,0.61447275,0.26151207,-0.5257455,0.51158655,-0.51296985,0.1107067,6.54012e-05,0.5551611,0.6840917,0.3810072,0.18877093,0.9985315,-0.45031995,0.13204707,0.16250756,-0.14899297,0.10448219,-0.116736725,0.23220436,-0.4781806,0.03284215,-0.08755283,-0.35209996,0.1587357,0.7317213,-0.5898521,-0.2084847,0.05555613,1.0495193,-0.32547456,0.18326262,0.61669165,1.1993216,1.0137455,-0.16538152,1.3270836,0.304388,-0.4127698,-0.12589574,-0.16120836,-0.7136812,0.15520795,0.37390703,0.16732042,0.52811944,0.14717987,-0.1094684,0.31110775,-0.47827855,-0.08188398,0.07917288,0.4894343,0.0015597388,-0.23814256,-0.82909966,0.0048945965,-0.10688664,-0.0384385,0.25047058,0.56363934,-0.58273476,0.0737822,-0.18940327,1.5113503,-0.2690233,-0.034925673,-0.027373109,0.63418514,0.30153924,-0.24895081,-0.007919133,0.42885008,0.28339106,-0.10267562,-0.5944604,-0.06472434,-0.44683218,-0.18300557,-0.34759337,-0.24351475,-0.013726878,0.14335926,-0.17791487,-0.29530618,0.03130321,-0.23000221,0.051978987,-1.9757643,-0.44845334,-0.16178277,0.5907736,-0.30138078,-0.21729557,-0.158622,-0.55474627,0.3231918,0.30440956,0.6716674,-0.5909823,0.3593158,0.5295542,-0.54035956,0.014352804,-0.48218575,0.09238531,-0.024723217,0.606896,-0.15468149,-0.31758818,0.12614538,0.30198732,0.4645475,0.21163306,0.041556858,0.3819438,0.49072313,-0.2263438,0.26110277,-0.088531815,0.72457343,-0.2640049,-0.13949177,0.41102868,-0.35878348,0.123218834,-0.624036,0.06221785,0.50172883,-0.5506469,-0.7952662,-0.47669354,0.080971956,1.0812702,-0.43525138,-0.8019947,0.3003064,0.10956691,-0.23681775,-0.010677931,0.384331,-0.019969791,-0.008636939,-0.6879724,0.09109594,-0.10649707,0.1632587,0.0754964,0.077060185,-0.34252754,0.99893063,-0.13742557,0.4161539,0.14969595,0.524237,-0.14444944,-0.38412362,0.4228918,1.1481879,0.5705767,0.11509086,-0.16045281,0.15785728,-0.3342202,-0.4785776,0.012391353,0.53481436,0.8367367,-0.119377635,0.04134498,0.24094006,-0.08019143,0.07718661,-0.13279736,-0.5166664,-0.1334599,0.09611919,0.69959444,0.8306775,-0.27913028,0.52739894,-0.11342646,-0.015851904,0.008798408,-0.546822,0.6861953,0.89078283,-0.2062861,-0.1561228,0.5286189,0.20648351,-0.7516013,0.7267839,-0.88037646,-0.34484252,0.4818471,0.05347594,-0.3674732,0.3256966,-0.32253736,0.27001926,-0.77876157,0.448577,-0.09001326,-0.43190432,-0.31210238,-0.34825325,-2.562194,0.22953112,-0.37381893,-0.1200736,-0.048570476,-0.096971504,0.049750943,-0.6565302,-0.63316566,0.073935814,-0.037242465,0.683474,-0.091042,0.2463288,0.012375474,-0.48159045,-0.25502467,0.2648211,-0.016839897,0.4675437,0.05735294,-0.44447166,-0.05479165,0.06313293,-0.5382868,0.009239611,-0.8209747,-0.4350349,-0.36593658,-0.76019496,0.0085962,0.9131012,-0.105467856,0.11367903,-0.30865547,0.0428815,-0.18253878,0.22093192,0.048301898,0.12123792,0.0736219,-0.12479951,0.19886573,-0.27154738,0.26547664,0.21014616,0.58664286,0.23456016,-0.08482208,0.055268943,0.6049394,0.77820015,0.16520646,0.8878342,0.386172,-0.09598365,0.2233297,-0.20262766,-0.45050803,-0.49944896,-0.48490506,0.022080189,-0.39730343,-0.56459105,-0.08592274,-0.42896694,-0.8670106,0.49418682,0.08013295,0.4596335,0.2113982,0.27044982,0.44835362,-0.13371557,-0.12926374,0.05043,-0.31013852,-0.59781873,0.031770967,-0.69372547,-0.38644665,0.45218483,0.70189726,-0.11347951,-0.15234834,0.17607594,-0.23665643,0.078645304,0.046552442,0.15111649,-0.23771927,0.30060074,0.22997531,-0.6621833,0.2845672,-0.2492772,0.14074458,-0.66232467,0.15650293,0.56896347,-0.72637975,0.35447,0.028290045,0.2369527,-0.24545722,-0.44546652,-0.16439594,0.34231284,-0.04399474,0.24960876,0.12416847,-0.61152184,0.2952371,0.14796756,-0.47974926,-0.6017398,0.46204752,-0.0026020347,-0.3863626,-0.3714728,0.32087487,-0.016965527,0.08388277,-0.53470576,0.30287126,-0.5583109,0.36603326,0.2306798,-0.09702835,0.6135457,-0.07217358,-0.49869585,-0.73602605,0.22981901,-0.6928512,-0.50485694,0.25388354,0.25530484,0.18461673,0.07215016,0.48062158,0.49029654,-0.37272924,0.062676564,-0.16442809,-0.50884664,0.69957465,0.37441093,0.4946739,-0.53031313,0.60930896,0.0861402,-0.12514775,0.08861153,-0.2321188,0.55471194,0.09285999,0.42849436,0.3479294,0.080085345,-0.020861909,0.82379895,0.24171023,0.31322607,0.39321855,-0.23674026,0.2646564,0.08503161,0.07546345,0.07705531,-0.5739447,0.055102576,0.13742384,0.059508014,0.61599725,0.33012873,0.31300515,-0.12995133,-0.5877377,0.15213762,0.047237627,-0.17550506,-1.7867393,0.26827058,0.18800555,0.6402643,0.37639716,-0.1156281,-0.25808793,0.7307721,-0.010668511,-0.034094352,0.35934213,-0.20567942,-0.5625663,0.4748643,-0.55003995,0.41352957,-0.13944814,0.106690094,0.15215087,0.22110465,0.30788398,0.81535137,-0.17731567,-0.054775525,-0.14963916,-0.24302487,-0.11471076,-0.3642526,0.25517267,-0.5062668,-0.4212466,0.6797031,0.25573286,0.09149868,-0.15463927,0.10169085,0.06735932,-0.120243,0.4101724,0.042906646,-0.09711872,-0.14725943,-0.68418384,-0.30634156,0.39260513,0.031626593,-0.028369427,-0.10318524,0.20726462,0.16571641,0.0042395713,-0.16575493,0.08936142,-0.89922106,-0.15118803,-0.43570232,-0.3646128,0.3769016,0.18144423,0.15056708,0.04927223,-0.06477384,-0.31596702,0.5160028,0.3208155,0.72140884,0.0890521,-0.24643102,-0.47632447,0.18454754,0.049814295,-0.26228216,0.34478748,-0.21469542,0.15351124,-0.6484558,0.6274413,-0.29743513,-0.24954076,0.13211887,-0.33798784,-0.027564052,0.5434868,-0.27431625,-0.15036628,0.047116213,-0.5204224,-0.2843479,-0.29844916,-0.10605142,0.009933186,0.006298566,-0.22510424,-0.100626506,-0.1844095,-0.00047867297,0.39711696,0.09402515,0.2830507,0.4717462,0.30901632,-0.4417285,-0.05803039,0.34413114,0.6004498,-0.038352005,0.1752548,-0.31519264,-0.5867076,-0.64597225,0.27782002,-0.16178744,0.23804164,0.120019734,-0.40007696,0.9098915,0.43891373,1.4022238,-0.13482128,-0.31808084,0.1780153,0.769708,-0.08607992,-0.116342604,-0.63796735,1.2942388,0.6663915,-0.042534813,-0.20080867,-0.51924646,-0.33340007,0.41497716,-0.6130269,-0.06428482,0.010047132,-0.69353855,-0.29626268,0.16715859,0.32127845,-0.033514995,-0.047153346,0.29014665,0.3411214,0.24390376,0.258691,-0.72564185,-0.3315304,0.4441409,0.14086941,-0.03812868,0.19480637,-0.32734632,0.35014683,-0.6607021,0.14492154,-0.1514248,0.04660842,0.17804559,-0.6100739,0.17888162,0.3095886,0.4414746,-0.5737956,-0.50363815,-0.22564802,0.52211106,0.04402799,0.024862424,0.62224215,-0.2523715,0.06763433,-0.024921149,0.61432475,1.4007638,0.110005304,0.28320867,0.15328433,-0.5473751,-0.9938137,0.32728523,-0.32398504,0.109420225,-0.35646957,-0.34134617,-0.87978554,0.22950777,-0.23161773,-0.26519734,0.20155752,-0.4982788,-0.57957965,0.20667505,-0.35665822,-0.21074605,-0.29154688,-0.006714529,0.7916523,-0.30088794,-0.3718218,0.11792791,0.5125657,-0.17938375,-0.8808212,-0.15230386,-0.29924774,0.38054878,0.05021636,-0.4611215,-0.079433635,0.06504047,-0.55387574,0.10545541,0.096196175,-0.47697893,0.10187368,-0.26361066,-0.069201216,0.7040287,0.0072543025,0.19600508,-0.75600684,-0.6616162,-0.9768798,-0.630703,0.10874224,0.27451423,-0.06310924,-0.86214525,-0.10719933,-0.450082,0.37950948,-0.0010462075,-0.54580015,0.21810067,-0.054662384,0.5912283,-0.17564511,-1.2302393,0.11892428,0.186307,-0.24173729,-0.7707982,0.42975673,-0.08761506,0.95279276,0.23235865,-0.1214036,0.045576576,-0.63297516,0.042792358,-0.16005948,-0.31810832,-0.60470784,0.39093566,697 -983,0.22060208,-0.12573859,-0.35307154,-0.15060346,-0.05137354,-0.35931024,-0.050344527,0.7688403,0.22205296,-0.57425344,-0.2291017,-0.24889188,-0.019584268,0.56558645,-0.27558112,-0.42603606,-0.041819602,-0.080651686,-0.37689006,0.3146006,-0.38890827,0.036858432,0.14287686,0.4058608,0.36293295,0.1321998,0.25187606,-0.11486761,-0.07548366,-0.22608516,-0.10981192,0.042050708,-0.5917306,0.00880346,-0.27588457,-0.49919662,0.0059797703,-0.71669465,-0.3988509,-0.7537209,0.4985919,-1.1925905,0.38217986,0.078951456,-0.09097118,0.19640201,0.4272511,0.2717242,-0.111148,-0.30485576,0.15345618,0.041852556,-0.03934027,0.1801272,-0.36416325,-0.3572636,-0.5882732,0.006329575,-0.22630195,-0.27524564,-0.43772477,0.0236152,-0.4246394,0.15378758,-0.08352039,0.454331,-0.37483364,0.08536027,0.18239322,-0.15232717,0.3438844,-0.5527824,-0.19138813,-0.19942422,0.18964025,-0.3387829,-0.15893641,0.4487649,0.35988146,0.32994264,-0.19159098,-0.08067681,-0.32097608,0.1272905,0.019247213,0.45505962,-0.45031905,-0.5920683,-0.07785054,0.11425638,0.16250908,0.35602504,0.21387509,-0.22494368,0.03192375,0.2824862,-0.43546963,0.5907038,0.52134216,-0.12674138,-0.07283355,0.09057904,0.2680117,0.34546998,-0.19751343,-0.13688523,0.074873134,-0.53851295,-0.07923804,-0.07459344,-0.15007582,0.6643202,-0.031027371,0.29295072,0.8037184,-0.31190228,0.28634992,-0.07219984,-0.199828,-0.1285533,-0.49207455,-0.10822551,0.29917368,-0.55424625,0.44702396,-0.10890255,0.69633967,0.16325828,-0.6310425,0.46890265,-0.5853471,0.21743575,-0.30465052,0.35500315,0.6396195,0.26838195,0.41950154,0.6929513,-0.5281038,-0.032472186,-0.152379,-0.35834756,0.15151858,-0.22873595,0.2723822,-0.18600228,-0.21950865,0.05519148,0.0021959245,0.14596643,0.33444467,-0.47798795,-0.053875368,0.11495225,1.0145395,-0.21038058,-0.14175329,0.7488383,1.0924528,0.8416904,0.08738786,1.0259142,-0.019893682,-0.20344344,0.51813346,0.20285098,-0.87672204,0.23943599,0.55981225,0.10358224,-0.17174797,0.20683303,-0.0487056,0.366482,-0.45574045,0.04076271,-0.2647807,0.088377856,0.39416325,-0.112336814,-0.28050128,-0.2186718,-0.20414312,0.0030762136,-0.14603208,0.19687891,-0.07926263,0.16586186,-0.1407575,1.576942,0.11198576,0.15177214,0.16459776,0.7492923,-0.079615675,-0.095589325,0.057594836,-0.18454008,0.4008643,0.25189924,-0.49579805,-0.004579914,-0.2706379,-0.3637539,0.040708683,-0.3315343,-0.19664612,0.097191796,-0.48070487,-0.09912579,-0.13608086,-0.23463258,0.44064337,-2.8226352,-0.100281045,-0.24690302,0.2984348,-0.23940459,-0.3349348,-0.12632683,-0.5807996,0.73305017,0.37057728,0.6101177,-0.67042667,0.3889834,0.40995893,-0.4936851,-0.018939376,-0.69940454,-0.033029355,0.05972544,0.21565068,0.018686756,-0.06923961,0.2552028,-0.06680141,0.50534546,0.38742837,0.060968697,0.2517674,0.5248464,-0.1316168,0.763862,-0.4341402,0.3576278,-0.38593888,-0.1388325,0.2220592,-0.4703966,0.10038866,-0.25163937,0.17849483,0.40449792,-0.5740305,-1.0049322,-0.75977147,-0.566857,1.2216476,-0.047817007,-0.48184568,0.6022562,-0.28315,-0.074166015,-0.327047,0.9024557,0.037486337,0.14858934,-0.66133773,0.064067684,-0.342848,0.10811891,0.003795764,-0.08882628,-0.28118926,0.69170445,-0.07282354,0.35085234,0.34523332,0.030143758,-0.3999842,-0.32897455,0.09631573,0.6811964,0.34524524,0.13693663,-0.16541627,-0.045894682,-0.48471817,-0.33282253,0.091781326,0.5394944,0.683305,-0.042082172,0.1355075,0.20724344,0.08130252,-0.053074576,-0.09057545,-0.4682599,-0.24566627,-0.0823553,0.65823716,0.5982557,-0.13565907,0.28734773,-0.12243812,0.27115744,-0.12993607,-0.26868832,0.24785654,0.8064626,-0.08080609,-0.1722779,0.5104991,0.39894924,-0.27370143,0.34993568,-0.448586,-0.29379028,0.38151875,0.0048431023,-0.746699,0.0010667115,-0.3201491,-0.048154406,-0.5853887,0.24276736,-0.5045394,-0.39020973,-0.35214898,-0.24735133,-3.8398461,0.23776731,-0.19911873,-0.2604839,-0.23353784,-0.26432928,0.23491387,-0.4428834,-0.73728245,0.105590045,-0.00048244596,0.74100673,-0.01494046,0.0028538047,-0.34626722,-0.07597935,-0.31356025,0.025885344,0.28712416,0.3713475,0.0091766985,-0.39812127,-0.35961038,-0.098345384,-0.60201275,0.14164962,-0.61965287,-0.49640292,-0.22955814,-0.60323614,-0.40246263,0.76851976,-0.30438986,-0.032929577,-0.025782043,-0.09242176,-0.3231887,0.50882703,0.1747677,0.21005301,-0.16049816,-0.06006656,0.014120078,-0.112735905,0.49908876,0.12742801,0.5084066,0.25219324,0.014732805,0.23990974,0.52117354,0.68948096,-0.076647684,1.0112087,0.33673275,0.0053814957,0.2827316,-0.3714034,-0.2775576,-0.5698695,-0.073376425,0.06714767,-0.34727937,-0.294831,0.10563801,-0.3869169,-0.610036,0.6793131,-0.035474263,0.13628468,0.16837645,-0.081817,0.31889346,-0.030712882,-0.05275485,0.16702846,0.13772032,-0.8153943,-0.2672829,-0.61949044,-0.5597812,-0.17705046,0.6892985,-0.0559557,-0.13107133,0.08434047,-0.21407875,0.14317085,-0.008317774,-0.03501776,0.023734152,0.37175393,-0.18693036,-0.68472517,0.5518936,-0.2344136,-0.08264478,-0.65276015,0.21068959,0.51069856,-0.6603226,0.6913421,0.31123787,0.014036867,-0.36137035,-0.51845944,-0.34711468,-0.4101463,-0.111969136,0.11152949,0.08003713,-1.1172273,0.3165765,0.49448997,-0.13408862,-0.57833934,0.4575862,-0.08019038,0.0077203275,-0.03842283,0.26625526,0.2176688,-0.05976262,0.111419514,0.18708982,-0.42136973,0.29486445,0.17697127,0.03053056,0.6146437,-0.18453816,0.042805333,-0.5737324,0.14488605,-0.38679177,-0.1464361,0.30925292,-0.105209604,0.05047109,0.1894165,0.105943605,0.16521466,-0.11615318,0.14444116,-0.22655106,-0.30849153,0.2566334,0.44888544,0.6402377,-0.57832664,0.68368065,0.040081825,-0.084362395,0.40256986,0.20556085,0.31887618,-0.007369739,0.2401156,-0.012211353,-0.37457237,0.075539075,1.1517938,0.17510174,0.4471684,0.014706677,0.0134547595,0.26290476,0.13304928,0.017733954,0.2165906,-0.81303024,0.019580936,-0.26537672,0.11543344,0.5995576,0.14659165,0.10445336,-0.124270424,-0.259636,-0.14356296,0.09512825,0.06895398,-1.3534544,0.49072176,0.07831002,0.95255387,0.29499903,-0.20351371,-0.017703589,0.69009674,0.1255571,0.25760296,0.3864246,-0.020657426,-0.5717069,0.66413486,-0.5486973,0.6136174,0.108108684,-0.06356378,0.011281507,0.21013756,0.42811975,0.6145499,-0.16045181,0.018243505,0.16611312,-0.20458412,0.27189565,-0.5387614,-0.11112465,-0.26741964,-0.12901035,0.54098594,0.66078454,0.14466111,-0.20002434,0.034776047,-0.123436175,-0.098471604,0.07441055,-0.24246371,0.014472658,-0.17017707,-0.77294,-0.22244315,0.5647564,-0.08314981,0.4219255,-0.05693091,-0.077933714,0.37045282,0.0006972298,-0.06063523,-0.15361953,-0.73674566,0.0044062375,-0.46488112,-0.46459883,0.18662731,-0.083834544,0.37806374,0.19996934,-0.007154256,-0.29193443,0.51346314,-0.06795245,0.61504716,-0.6049569,-0.1374294,-0.6834308,0.029388363,0.18462136,-0.23863769,-0.08765267,-0.2452178,-0.19669059,-0.43213338,0.462188,-0.050680846,-0.4148814,0.098586224,-0.13075192,0.024143647,0.6061034,-0.063275866,0.065308094,0.24591938,-0.061799884,-0.18098831,-0.22379903,-0.069480404,0.26988414,0.14395824,0.2466939,-0.11124866,-0.31023055,-0.11763805,0.39293176,-0.08938937,0.41086954,0.30612648,0.37592155,-0.2759717,-0.1969035,0.13563639,0.7646119,-0.022154415,-0.2682938,-0.27422807,-0.37748262,-0.2393935,0.28421903,-0.0035557388,0.5294918,0.2734836,-0.37523133,0.35097477,0.036355842,1.0274106,0.19258727,-0.28077757,0.012738395,0.37145475,-0.08383848,-0.18774076,-0.25364214,0.5446495,0.4325531,-0.14147095,-0.09349753,-0.2740803,0.12140305,0.22616379,-0.12277098,-0.28608814,-0.02869466,-0.67148626,-0.05949226,0.16823226,0.41113433,0.14357689,-0.089854784,0.08521517,0.1954231,-0.0015737221,0.3260006,-0.49436107,-0.25935444,0.2934844,0.2894969,-0.1196778,0.20917797,-0.45942435,0.3363035,-0.43650618,0.124328695,-0.55378425,0.21906838,-0.2659739,-0.30292717,0.05548668,-0.28979102,0.6950653,-0.05275766,-0.2496992,-0.14949164,0.34472805,0.17551914,0.31175613,0.45462292,-0.13730209,-0.0917424,-0.12507506,0.76702243,0.9766146,-0.17452306,0.11382101,0.2307066,-0.1907771,-0.41684994,0.31183103,-0.2500322,0.2818254,0.12305083,0.17965467,-0.43798476,0.13987978,0.21135128,-0.2808478,0.1156592,-0.6849699,-0.42765903,-0.014846265,-0.08182867,-0.38840872,-0.578213,0.11808519,0.5531545,-0.3440252,-0.034015097,0.19681847,0.290977,0.035262674,-0.29226714,-0.02877282,-0.1860398,0.26704222,-0.03221205,-0.5174061,-0.09992021,-0.11306238,-0.38185257,0.3421023,-0.29684648,-0.35313454,0.12827733,-0.02373889,-0.0707051,0.9401659,-0.112019,0.21331699,-0.49667326,-0.5867871,-0.77057475,-0.3459477,0.39795038,0.3534742,0.10935569,-0.32942954,-0.11272726,0.158689,-0.016311098,-0.06913014,-0.15301049,0.46520013,0.015001433,0.6619722,-0.22324657,-0.5256586,0.09226699,0.027308166,0.015942525,-0.48784018,0.50256515,-0.020557094,0.8863591,0.051345564,0.011479723,0.079472445,-0.11886094,-0.3026142,-0.1491451,-0.35523728,-0.5162457,0.22382498,725 -984,0.4712224,-0.11027461,-0.7904708,-0.3885621,-0.6198593,0.17914236,-0.3270732,0.47385246,0.15292756,-0.7315499,-0.14839938,-0.3366181,0.045405347,0.6036334,-0.32326582,-0.42172417,0.09292362,-0.16738226,-0.9550249,0.37069568,-0.7330084,0.53629625,0.4488655,0.32648054,0.47265977,0.05569647,0.057495452,-0.18517998,-0.0890311,-0.038737297,-0.23656118,-0.0016095638,-0.6999468,-0.29565865,-0.17729993,-0.6280259,0.14986135,-0.63689625,-0.1557996,-0.7726556,0.23387913,-1.1546333,0.8530513,-0.097815186,-0.19395149,-0.05886078,-0.0020861328,0.19794771,-0.041940082,0.47205728,0.18766208,-0.1318395,0.056333385,0.028366983,-0.010890472,-0.7066138,-0.8028485,0.012922463,-0.85375345,-0.31034622,-0.10667713,0.14923479,-0.46124023,0.3477581,0.1538352,0.25021917,-0.63175976,0.05840359,-0.20030804,0.18233614,0.5894296,-0.31539762,-0.09194182,-0.026216973,0.27462646,-0.4377615,-0.23000231,0.1696795,0.51566344,0.4875391,-0.23943253,-0.3407641,-0.11829649,0.033662558,-0.28626147,0.94329774,-0.072937176,-0.49573216,-0.2020565,-0.18334278,0.6997946,0.6274014,-0.0997325,-0.5681164,-0.14842686,-0.061698835,-0.6070614,0.67366993,0.44541407,-0.67183876,-0.43729657,0.49671012,0.25097427,0.56347066,0.036792327,0.28655574,0.12391454,-0.72615176,-0.2870001,0.22232619,-0.06043,0.5596601,0.057324905,0.5659261,0.77160585,-0.45204037,0.036246173,0.11662801,-0.2500059,-0.12317332,0.3551527,0.013371998,0.2702447,-0.6929184,-0.07161608,-0.40423498,0.65321857,0.2418025,-0.74142706,0.41865548,-0.81038696,-0.053462632,-0.23037854,0.4685958,0.6971148,0.65393376,0.31197983,0.806742,-0.39755905,0.067869574,-0.26845342,-0.35274798,0.1495868,-0.32364637,-0.0064751627,-0.58465594,0.023095936,-0.037222885,0.03418058,-0.11275333,0.69287455,-0.5200341,-0.13788864,0.23590612,0.77282536,-0.43614346,-0.012362877,0.9505116,1.0386314,0.6013953,-0.0049579083,1.1457794,-0.03997419,-0.07774758,0.13831548,0.0021992684,-0.4390881,0.19712105,0.44771177,-0.5106347,0.72552574,0.10862295,0.109737374,-0.053273596,-0.16853385,0.16514584,0.16271837,0.028214514,0.1489789,-0.20392644,-0.4106678,-0.28439814,-0.06820197,-0.089142,0.038559757,0.30228266,-0.55162656,0.1526516,-0.020706242,1.6756277,0.10018752,0.09075172,-0.22680703,0.5848807,0.13032505,0.016094709,-0.21982236,0.09617726,0.23368172,0.084331915,-0.5045763,0.19491401,-0.091616794,-0.5758158,-0.19001517,-0.49161234,-0.3114614,-0.23893961,-0.51696074,0.13805468,0.05799464,-0.34210345,0.5104195,-2.5459757,-0.68167573,-0.14192715,0.23926874,-0.26244622,-0.27379245,-0.1751079,-0.46010533,0.18776424,0.46462393,0.58812416,-0.9278018,0.53817165,0.5716909,-0.47711197,-0.2925095,-0.7119557,-0.25305068,0.1618237,0.083945215,-0.22879732,-0.41050196,0.012864763,0.37878233,0.6639403,0.010569465,0.28129157,0.19915465,0.7108335,0.26158005,0.8334938,-0.26600808,0.66571987,-0.34094635,-0.12593672,0.32806587,-0.11946623,0.37179774,0.041507952,0.22554156,0.400779,-0.34435457,-1.1391203,-0.8260206,0.07307178,0.7028768,-0.37432528,-0.28624445,0.26096722,0.2924744,-0.050678354,-0.07203759,0.6058908,0.10327947,0.06792673,-0.5494435,0.05582587,0.02665084,0.12641029,0.08479671,0.11873591,-0.18527845,0.48943663,-0.092016295,0.30913574,0.32354522,0.26761407,-0.3670027,-0.32802114,0.47933593,1.2758777,0.4745296,-0.019310366,-0.32195586,-0.23231478,-0.4133029,-0.22441618,0.1447591,0.23077467,0.98045236,0.044199433,0.39314494,0.07788037,0.023238683,0.038922008,-0.3330845,-0.27905065,0.1781054,-0.0014556065,0.45403165,0.6084053,-0.53382605,0.85244197,-0.2809727,0.039536048,-0.20266512,-0.38737363,0.62270653,0.31455165,-0.033360306,-0.04613515,0.6516248,0.20871392,-0.4330439,0.42647964,-0.67188454,-0.38956577,0.845544,-0.009006327,-0.19567263,0.35847273,-0.23432119,0.30316693,-0.9940957,0.29358527,-0.2132067,0.055618048,-0.30311906,0.06971873,-3.7856135,0.24151006,-0.21066031,-0.09779893,-0.24833247,-0.18514359,0.46991935,-0.6609828,-0.9464735,0.008004582,-0.031126317,1.0311137,-0.36361226,0.27134237,-0.124674655,-0.3817366,-0.4386035,0.41980964,-0.15041319,0.30635318,0.24152307,-0.60034525,-0.10695543,-0.24236934,-0.70207256,0.21931931,-0.45077142,-0.74509746,-0.024942387,-0.44177717,-0.3205746,0.83519423,-0.08714412,-0.113099955,-0.00593026,-0.018784206,-0.10226709,0.35578275,0.2754053,-0.26329565,0.06162833,0.0032064677,-0.1261609,-0.30520254,0.60404295,0.0857007,0.3766914,0.28264138,0.12742876,0.17819135,0.5146406,0.60357296,-0.16555437,0.67512643,-0.017289871,0.097082034,0.35417607,-0.48401013,-0.14410657,-0.46072617,-0.27269146,-0.27814406,-0.5739216,-0.72111195,-0.004610306,0.018862117,-0.8323882,0.63657236,0.09577081,0.28853744,-0.22265223,0.6082564,0.4392867,-0.19966087,-0.16439193,-0.21341462,-0.17525145,-0.5947538,-0.28481704,-1.099028,-0.4104572,0.1564423,1.17682,-0.48065013,-0.03844966,-0.4037055,0.09766545,0.22226992,-0.06811832,0.3097055,0.21059434,0.30817342,-0.32430047,-0.8379432,0.3425556,-0.21174781,-0.12943776,-0.4147281,-0.28923255,0.92197114,-0.8486573,0.34805518,0.33861703,0.18445459,-0.028873015,-0.4854649,0.025969302,0.2088633,-0.4739983,0.27391076,-0.065865055,-1.113745,0.49937478,0.37487516,-0.23813455,-0.71291196,0.83018434,0.2719556,-0.27936092,-0.13285881,0.37124914,0.5117923,-0.05484892,-0.5544221,0.34072602,-0.71509135,0.45410147,0.15089762,-0.015006614,0.4583497,-0.040049054,-0.3377332,-0.7723128,0.10463603,-0.46119684,-0.40565085,0.13388002,-0.03807041,0.16771367,0.3053381,0.03387344,0.2724188,-0.75359726,0.14920303,0.22017784,-0.023129862,0.17270373,0.55629295,0.29340407,-0.4307421,0.52347726,-0.1549658,-0.36375389,0.13900939,0.086599015,0.42286772,0.11528318,0.0742103,0.13997468,-0.5317973,0.21679457,0.8494829,0.3031059,0.27547145,0.49137205,0.07153599,0.3056087,0.10676261,-0.04826335,0.14551672,-0.5799188,0.013806403,0.24411516,0.06235032,0.7685657,0.20568562,-0.025242735,-0.06711409,-0.2803267,0.14067152,0.3308196,-0.20060797,-1.079256,0.24998799,0.31675395,0.5948931,0.72106487,0.15430681,-0.17587098,0.2142258,-0.21872051,0.009856677,0.5124004,0.20255375,-0.5923538,0.73841107,-0.64102215,0.50002587,-0.32889324,-0.061842203,0.04926427,-0.18128112,0.32157314,1.0185616,-0.10840689,0.06517645,0.2593624,-0.3177117,-0.14312138,-0.2262835,-0.1949264,-0.4325657,-0.110009864,0.91794217,0.29641438,0.06395538,0.0051311255,0.11457069,0.11871517,-0.13233376,0.18568298,0.27745694,0.29541162,-0.121475436,-0.37065798,-0.047879785,0.83121985,-0.13537632,0.16181548,-0.20598729,-0.3495005,0.09443073,-0.013434654,-0.058409624,0.049782388,-1.0406427,-0.11743889,-0.59345585,-0.62245905,0.43443346,-0.059926283,0.21248296,0.25188702,0.09028232,-0.064632155,0.7260276,0.5535147,0.5307356,-0.07917668,-0.1401291,-0.42192602,0.30756372,0.18215704,-0.4066636,-0.26077506,-0.2573156,0.042098682,-0.6350134,0.79582304,0.0988276,-0.5076126,-0.0071526347,-0.050817955,0.080212764,0.7833603,-0.0460796,-0.030772299,-0.19050616,-0.27158642,-0.13898529,-0.53084147,-0.10956492,0.14621389,0.36392647,-0.24545333,-0.09508073,0.031283118,-0.2584986,0.2850124,0.0505144,0.57187235,0.47425288,0.16498896,-0.1956099,-0.17280145,0.1132376,0.73261344,0.23438148,-0.19602177,-0.44399127,-0.11088711,-0.020854484,0.31721425,-0.1344218,0.24572758,0.23964241,-0.34606072,0.931105,0.10979843,1.3290739,-0.06807333,-0.39391702,0.11065384,0.5837135,-0.20622483,-0.25969392,-0.47892523,1.3812814,0.53430974,-0.15867987,-0.24048123,-0.16803698,-0.53237617,0.3043394,-0.4966627,-0.12681785,0.0721979,-0.6505621,-0.20777707,0.32528955,0.13944843,0.103572205,-0.33335933,0.25582287,0.5198077,0.1516,0.28472644,-0.81503475,-0.48634267,0.39415216,0.51117164,0.10110972,0.38440388,-0.48846188,0.44077927,-0.8116372,0.15512906,-0.83628625,0.16997793,0.1475929,-0.3773801,0.118150964,0.2817519,0.24487555,0.09806403,-0.31361642,-0.019140387,0.49110308,-0.21371889,0.3100264,0.71586865,-0.1885498,0.10759705,-0.47674266,0.5312211,1.6504962,0.14894141,-0.17514057,0.58938754,-0.53629404,-0.61165935,0.5176369,-0.6804935,0.08878063,-0.1021343,-0.34722963,-0.4756276,0.28095496,-0.03216814,-0.05821365,-0.08077922,-0.7563585,-0.34643397,0.5060481,-0.0692983,-0.30722466,-0.2957922,0.30932492,1.1683853,-0.29137334,0.04487429,-0.004379569,0.50460017,-0.28762895,-0.37360346,0.03016882,-0.25300807,0.5378992,-0.0059755505,-0.38624683,-0.037449125,0.2463646,-0.41973576,0.37922502,0.024568558,-0.2841321,0.10320182,-0.12736782,0.18071337,1.3916733,-0.08912399,-0.2806275,-0.41483337,-0.861348,-0.760141,-0.5698905,0.21487837,0.20605603,0.07164795,-0.4644429,-0.055276126,-0.0028006197,-0.49775305,0.029592201,-0.27854294,0.42065293,-0.0166833,0.39872962,-0.02106688,-1.1125646,0.042865492,0.22214799,-0.36567903,-0.7842063,0.76512074,-0.33375055,0.9131552,0.08378379,-0.15611055,-0.08841364,-0.33682665,0.2689403,-0.45650452,-0.0006445527,-0.78331596,0.13911249,748 -985,0.6239834,-0.31138325,-0.54459643,-0.30978924,-0.29800305,-0.033313464,-0.22618827,0.5994357,0.21644135,-0.6225697,-0.20601301,-0.1504614,-0.063422084,0.30688286,-0.28624654,-0.6354602,0.099618934,0.21674797,-0.4558038,0.35000232,-0.5842536,0.20101666,-0.031926975,0.6697912,0.3666552,0.12657237,0.2928021,0.041074645,-0.095545866,-0.45549306,-0.095996216,0.27283645,-0.5201743,0.32925344,-0.18281384,-0.529354,0.09916197,-0.703155,-0.34997168,-0.8650977,0.18318693,-1.0441678,0.7209197,0.20895469,-0.34309578,-0.11201684,0.36929947,0.19228968,-0.17852025,0.1894679,0.22850963,-0.23677726,-0.19500855,-0.20896468,-0.4414146,-0.3771165,-0.82875454,-0.057224892,-0.3376398,0.14304043,-0.2750778,0.2836748,-0.19928052,-0.024512948,-0.1433123,0.5281123,-0.43360916,-0.1437478,0.015104294,-0.16316733,0.34714487,-0.7189702,-0.41594237,-0.25346795,0.25139928,-0.21506485,-0.3013607,0.34405708,0.35670853,0.4895238,0.021866104,-0.23221858,-0.30925494,0.0018472441,-0.23138909,0.6012843,-0.2761,-0.31523067,-0.31212568,-0.3278202,0.47558618,0.38556385,0.13576777,-0.28321552,-0.08422638,-0.20154317,-0.4057536,0.5236849,0.52087164,-0.39992708,-0.06039275,0.34973767,0.1830981,0.1656763,-0.12616745,0.14954355,0.06559909,-0.69767964,-0.22301602,0.26931962,-0.21138163,0.5957037,-0.16115594,0.42904958,0.6215451,-0.2697276,-0.15185769,0.15534453,0.30765814,-0.27688736,-0.22806577,-0.7825045,0.42792717,-0.54814893,0.119101144,-0.21465759,0.9971697,0.05941516,-0.77798116,0.25107446,-0.6056539,-0.07137199,-0.10497699,0.50910234,0.546683,0.5481268,0.43834916,0.5930307,-0.3272249,0.060699385,-0.048111375,-0.18761529,0.16080317,-0.2170068,0.09929047,-0.32538265,-0.14019822,0.019047294,-0.15306203,0.101169825,0.92832315,-0.35912317,-0.09079703,0.38539514,0.5868174,-0.37056518,-0.0858989,0.6821852,1.2202522,1.2132741,0.14531705,1.3432795,0.24579005,-0.21910945,-0.06864047,0.19700405,-0.93134403,0.44710866,0.42269272,-0.3852657,0.42056313,0.33701307,0.10641606,0.33457646,-0.56667143,-0.1861556,0.024956886,0.17398998,-0.10866042,0.06363021,-0.6825738,-0.55841315,0.046120446,-0.25056782,0.121435,0.18425669,-0.25618663,0.5370556,0.12571034,1.2642684,-0.13429293,0.07201311,0.09427704,0.5755993,0.1441848,-0.15786402,-0.20508376,0.07967826,0.43306294,0.02542072,-0.49849278,0.051187824,-0.13783455,-0.2633277,-0.29143754,-0.42512003,-0.009632018,-0.08203981,-0.36408052,-0.44040504,-0.006556475,-0.3991746,0.377255,-2.3699634,-0.047064688,-0.20355268,0.3755836,-0.12009927,-0.41342434,-0.22049475,-0.52177656,0.6720034,0.29918975,0.4829544,-0.6546372,0.42248636,0.6947117,-0.4744711,-0.16337506,-0.9428757,-0.18931174,-0.22868612,0.19224812,-0.10902558,-0.18333301,-0.05582859,0.079944,0.6613111,0.094109096,0.12528536,0.3181495,0.31310382,0.024170315,0.73515385,-0.052224435,0.56442595,-0.478198,-0.34598595,0.22304673,-0.5868074,0.080205776,-0.21838781,0.1357789,0.7734152,-0.5536483,-0.92833835,-0.6878248,-0.27369404,1.2384117,-0.4702677,-0.29875678,0.21064043,-0.08599036,-0.41591406,0.074148335,0.46351075,-0.4200477,-0.03851381,-0.6825614,-0.24518767,-0.043737,0.38676715,-0.010816229,0.04583315,-0.54294443,0.55724204,-0.16382305,0.4599716,0.24201293,0.13774052,-0.52646434,-0.711645,0.07011415,1.0555408,0.31801006,0.17553052,-0.3172105,-0.16214672,-0.20942655,-0.038348902,0.058518577,0.46794343,0.73521334,-0.15148261,0.26913175,0.4605101,-0.06529875,0.06889637,-0.11848961,-0.42262167,-0.24371633,0.123052455,0.80261356,0.49841136,0.14055547,0.2310632,-0.12519217,0.56742036,-0.26485485,-0.37767643,0.46817937,1.0702524,-0.0616947,-0.25120658,1.0880643,0.47966558,-0.21573511,0.5833262,-0.7778263,-0.51808643,0.29363364,-0.025714982,-0.3903349,0.14217785,-0.35724682,0.1460079,-0.97832185,0.50576687,-0.11852424,-0.42571825,-0.5527333,-0.16372745,-3.4630115,0.2425056,-0.2973772,-0.19859034,0.023778427,-0.40137324,0.38841304,-0.65462226,-0.6057602,0.1667763,-0.005723089,0.80587196,-0.18468502,-0.09661601,-0.3046492,-0.38391814,-0.5220349,0.12845889,0.21364586,0.5266221,0.21153513,-0.46791792,0.41289273,-0.18879879,-0.35403126,-0.12678976,-0.79896164,-0.4712057,-0.10746057,-0.8721846,-0.54000396,0.8179449,-0.39845628,0.0123945875,-0.26558805,0.06514813,-0.049983166,0.46777543,-0.15144911,0.3419,-0.10076251,0.015804678,-0.10384403,-0.18840474,0.3665765,0.08028629,0.13244683,0.27992645,-0.17864278,0.026071157,0.7164601,0.6574707,-0.27243364,1.1109107,0.49803662,-0.004138641,0.07391427,-0.1874151,-0.33141524,-0.4996609,-0.3248846,0.008343118,-0.5247962,-0.13993192,-0.030693293,-0.28121135,-0.8987166,0.8946999,0.008559918,0.14809832,-0.06698639,0.19999628,0.305362,-0.017164875,-0.02807256,-0.12361832,-0.06561466,-0.37358606,-0.37743396,-0.6520499,-0.39071578,-0.15343645,1.009247,-0.21469621,0.072006464,0.33241668,-0.18416496,0.16240573,0.0032740019,-0.027009014,0.1464524,0.604727,0.11886792,-0.73838586,0.32487082,-0.30855185,0.035327025,-0.4634478,0.31992513,0.8207096,-0.7929026,0.58036566,0.5729106,0.20309095,-0.39239606,-0.7207597,-0.3633461,-0.11472795,-0.10540839,0.66646475,0.29109487,-0.89993894,0.65216273,0.23684868,-0.38875094,-0.73121977,0.5688663,-0.18793365,-0.2572661,0.07527286,0.5168954,-0.05743891,-0.055196565,-0.15462737,0.18209179,-0.32469788,0.3199432,0.14586267,0.090266764,0.5793581,-0.22219682,0.101943925,-0.74562913,-0.028769016,-0.58849895,-0.48926616,0.2960498,-0.09467729,-0.03400321,0.41544026,0.022990916,0.33222693,-0.45730868,0.03127677,-0.05375331,-0.19641365,0.39584017,0.6043956,0.59339315,-0.33482003,0.5954486,0.0550857,0.11393972,-0.2746422,-0.08623121,0.4545676,0.09919335,0.37596846,-0.20907025,-0.38893637,0.3035182,0.77989113,0.26249897,0.56170285,0.19027248,0.07163544,0.1303119,0.1606412,0.3504068,0.102050744,-0.6702228,-0.15445805,-0.42570525,0.14369936,0.5494176,0.027494496,0.27909872,-0.22207999,-0.16736881,0.14088745,-0.040724955,-0.09943645,-1.3810515,0.35168105,-0.020477712,0.51934373,0.37369853,0.014802228,-0.110850796,0.83957654,-0.26705095,0.07006804,0.18915646,0.31141528,-0.28308454,0.74953777,-0.50100744,0.5157679,-0.11846932,-0.13905457,-0.2208915,0.07065816,0.45804453,0.9302355,-0.13517587,0.21250291,0.16934495,-0.33419567,0.05099191,-0.5223203,0.20401981,-0.5294143,-0.31490117,0.6892149,0.3409831,0.43300754,-0.19399054,-0.045310877,0.07182113,-0.1521837,0.08588536,0.061122973,-0.22102217,-0.18185404,-0.7467891,-0.1498442,0.6675984,0.3290823,0.14243484,0.18665144,-0.23483698,0.19374885,-0.014271337,0.13501549,-0.10505755,-0.84381104,-0.29902798,-0.44613925,-0.44277972,0.16806573,-0.2939076,0.12815931,0.27088094,0.04960314,-0.078009024,0.31097943,0.54798776,0.7986108,0.08305331,-0.10020001,-0.2653783,0.086084075,0.2455227,-0.24656351,-0.083471395,-0.47803658,0.14957401,-0.578258,0.16675521,-0.041341342,-0.3897365,0.044370987,-0.012447203,0.008388514,0.4791209,-0.0926418,0.1462019,0.13375804,0.04943461,-0.26590222,-0.17085022,-0.31501,0.1827775,-0.010791147,-0.04710591,-0.12204037,-0.20688911,-0.085748896,0.35284072,0.066304475,0.31053358,0.6176352,0.11220054,-0.2547771,0.1509164,-0.21314415,0.82104385,-0.16597849,-0.29838124,-0.38205686,-0.29966655,-0.15816358,0.3436583,-0.09278709,0.1483705,0.07668227,-0.3852057,0.8626642,0.012849679,1.0038198,-0.052288987,-0.44941893,-0.1332972,0.55917954,-0.19445372,0.049925577,-0.30219793,1.0057896,0.48905563,-0.28941655,-0.22252174,-0.52120864,-0.21263003,0.21448894,-0.25640544,-0.41446242,-0.20092432,-0.5527047,-0.1450778,0.2619305,0.15915795,0.09430568,-0.022770545,0.32945153,0.5497403,0.16113718,0.53151494,-0.6758393,0.10985477,0.32318765,0.3432332,0.010622834,0.31626543,-0.36015457,0.36915883,-0.7357436,0.21262316,-0.409005,0.16793655,-0.23701987,-0.34577513,0.2649883,-0.02183261,0.5641107,-0.26578474,-0.13135621,0.026518803,0.589743,-0.09399672,0.38721552,0.75750494,-0.27349168,0.01947191,-0.20059612,0.42790037,1.2055775,-0.20611551,0.17645764,0.4809104,-0.22621855,-0.683217,0.16925362,-0.4133645,0.05132228,0.0594957,-0.32549083,-0.29097944,0.27292272,0.34489548,0.06723029,0.25946316,-0.46917313,-0.14963719,0.4850045,-0.05120002,-0.27993435,-0.3136012,0.0023914934,0.38506415,-0.30250558,-0.42724138,0.010108016,0.31904024,-0.14781097,-0.4798401,-0.01315185,-0.4356737,0.3239517,0.1997716,-0.33335045,-0.09959326,-0.2582541,-0.37461177,0.0027284264,0.25245124,-0.3299522,0.07147976,-0.2834434,0.022764826,0.87467563,0.009423053,0.12797837,-0.5869472,-0.57179534,-1.0560648,-0.27267098,0.3566197,0.28152472,-0.13758543,-0.61771023,-0.030209148,-0.11909075,-0.2449811,0.013462581,-0.37352678,0.42937797,0.19350079,0.61382705,0.092186734,-0.7829574,0.15320483,0.0734449,-0.1969181,-0.41519728,0.57662547,-0.12610355,1.1518826,0.052822668,0.0064946115,-0.104325294,-0.4438362,0.40614325,-0.21324226,-0.33285052,-0.69604415,-0.05497586,885 -986,0.22558287,-0.35619357,-0.48139936,-0.097176254,-0.17115876,0.22614221,-0.28611663,0.3838581,-0.040728975,-0.52117676,-0.12545383,-0.43953562,-0.0900429,0.39549,-0.12504475,-0.3646968,-0.11095252,0.37818098,-0.40335646,0.028642213,-0.4504165,0.31836444,0.044583134,0.24297862,-0.020291101,-0.03585445,0.16791537,-0.15830001,-0.067990825,-0.6620806,0.23919356,0.06720571,-0.8471311,0.33780712,-0.079577565,-0.5298723,-0.0058246613,-0.6300561,-0.34684643,-0.77373946,0.21397348,-0.94298756,0.6204528,0.010820903,-0.14156431,0.27762684,0.0952929,0.5522963,-0.053046454,0.23500538,0.43780175,-0.44344082,-0.18516427,-0.11870819,-0.32119116,-0.40601355,-0.54659545,0.003136009,-0.2865183,-0.18114714,-0.2932902,0.18004404,-0.27637267,0.088287786,-0.17639214,0.18608591,-0.39834917,0.031999446,0.19402345,-0.11096595,0.42220673,-0.53106266,-0.110952735,-0.15772621,0.19050579,-0.5654663,-0.25205788,0.25916696,0.27258706,0.34414834,-0.30608386,-0.00924167,-0.20368087,-0.08648255,0.29965842,0.78060734,-0.025626456,-0.03972756,-0.07659713,-0.18211961,0.12389666,0.12573597,0.017827045,-0.36223102,-0.019139037,-0.031527143,-0.35488537,0.34668195,0.5401622,-0.26591522,-0.124034785,0.4072419,0.52012414,0.23044638,0.0037864447,0.23496492,0.13969095,-0.4026699,-0.18464735,0.351438,-0.07343204,0.27823877,-0.071498536,0.21448395,0.69325817,-0.45041108,-0.10410973,-0.052403677,0.09531538,-0.14631362,-0.15515435,-0.53381884,0.5443288,-0.53604525,0.1823279,-0.2236214,0.9909123,0.07315508,-0.64289904,0.35449687,-0.7324935,0.0049793096,-0.25377318,0.681979,0.3025712,0.49986893,0.1832196,0.61359954,-0.4585007,-0.0076364996,-0.06215931,-0.32082915,-0.082665876,-0.41529852,-0.14005245,-0.22026965,-0.034428798,0.08613836,-0.09308006,-0.12119428,0.4580688,-0.39319712,-0.088664874,0.032842338,0.63085014,-0.4253036,0.0012305558,0.6930967,1.068439,1.000034,0.27847666,1.3283956,0.40708536,-0.31405252,-0.2271873,0.15640199,-0.98231184,0.26381856,0.39555365,-0.24716961,0.20774558,0.34371296,-0.054534502,0.35225207,-0.58688337,-0.025975674,-0.11650698,0.034949146,0.026508266,-0.114174604,-0.39899,-0.23609968,0.0072094337,-0.03176368,-0.096970454,0.20023017,-0.29185635,0.25472352,0.27793062,1.3356853,-0.19184528,0.105597734,0.06777163,0.34083542,0.0076654493,-0.16255596,-0.1123049,0.03418953,0.49447235,0.0783308,-0.5213439,0.12183255,0.07922542,-0.4262394,-0.31495434,-0.171687,-0.08521334,-0.096667826,-0.28724998,-0.2563581,0.048487507,-0.32205087,0.461409,-2.3387313,0.03121909,-0.18407565,0.38330287,-0.13030423,-0.32266432,-0.19639938,-0.4701206,0.39422768,0.37741083,0.38627502,-0.51548094,0.41883296,0.47749668,-0.3714476,-0.115547225,-0.751818,-0.10361435,-0.11627157,0.060252327,0.15351732,-0.02415577,-0.07188488,-0.091741085,0.47621274,-0.38942713,0.12406679,0.3745908,0.37769508,0.17140213,0.51934874,0.032969963,0.5261594,-0.48183203,-0.3057049,0.34048656,-0.33814248,0.1797032,-0.026546676,0.13007183,0.2526955,-0.5518112,-0.91509753,-0.7527541,-0.68913937,1.2778916,-0.35464147,-0.36532038,0.18998562,-0.013027577,-0.46951133,-0.16908579,0.46330777,-0.2671316,-0.09544598,-0.8006159,-0.11162646,-0.16869727,0.48172277,-0.077625796,0.12501337,-0.6016631,0.3986732,-0.31623057,0.44972223,0.4412442,0.12612447,-0.18417169,-0.39162353,0.016766276,1.1629791,0.30972663,0.21961577,-0.47219896,-0.2219162,-0.20772998,-0.039295502,0.07637012,0.44766188,0.8246611,-0.006941813,0.17416383,0.2164078,0.031849608,-0.00013149083,-0.14108238,-0.37052363,0.028568983,-0.010795015,0.6733159,0.18910956,0.2091178,0.48380488,-0.13203903,0.30120152,-0.17050058,-0.29939443,0.18770996,0.9395423,-0.04462639,-0.23427346,0.65311974,0.5224215,-0.41167426,0.44633394,-0.58779,-0.26827267,0.36053142,-0.107670166,-0.44466734,0.33806497,-0.3829572,0.22057274,-0.9259122,0.45787382,-0.27493843,-0.74031335,-0.56078374,-0.23956399,-3.189685,0.11626855,-0.08760224,-0.1386115,-0.13847648,-0.2225085,0.419918,-0.27564737,-0.61158395,0.18310821,0.023818552,0.7253165,-0.07467542,0.038034033,-0.33496314,0.04008303,-0.2842401,0.20188753,0.37350768,0.16354153,-0.13493797,-0.38533783,0.066550896,-0.27326477,-0.19670585,-0.11003735,-0.7227066,-0.43675628,-0.046503894,-0.6702973,-0.5574712,0.7996394,-0.61960095,-0.08582838,-0.22744524,0.06337997,-0.19560328,0.5812191,0.08247266,0.09964696,-0.11102609,-0.14975597,-0.16158679,-0.2017852,0.3029591,0.027814731,0.07441089,0.31948072,-0.30191773,0.035715092,0.5245865,0.555321,0.010317778,1.0096223,0.32934362,-0.12744983,0.20712678,-0.29599872,-0.14454785,-0.5203391,-0.10803149,-0.12617636,-0.60660315,-0.5380992,0.04580742,-0.18612668,-0.6863293,0.73393357,-0.051491916,-0.17569914,0.10926243,0.36450952,0.25395292,0.025973529,-0.12875275,-0.13626951,0.017233562,-0.34643614,-0.35793695,-0.69055593,-0.50644726,-0.100490615,1.2668698,-0.0744011,0.1294076,0.22208019,-0.26516265,0.18100269,0.19740991,-0.062315203,0.11399822,0.5995015,0.13314314,-0.68071634,0.37159094,-0.20838492,-0.11208423,-0.7851295,0.18990341,0.838665,-0.80642354,0.38792682,0.36967978,0.13981152,-0.082397625,-0.3867531,-0.20734325,-0.014662472,-0.30674392,0.30618733,0.053462088,-0.82199305,0.4085776,0.4740345,-0.33004367,-0.7080795,0.5187385,0.032799132,0.03646612,0.2437819,0.3594633,-0.22491741,0.023725849,-0.056254577,0.32072252,-0.36410135,0.31342202,0.1267008,-0.031766843,0.15624662,-0.23707208,-0.08958875,-0.6300994,0.12951498,-0.30502352,-0.21101184,0.12097224,-0.117260896,-0.005254829,0.5949533,0.062277578,0.40674883,-0.28266025,0.025505293,-0.19746771,-0.3219774,0.26544264,0.37620166,0.24369296,-0.43399745,0.7842313,-0.002687639,-0.18468976,-0.36332172,0.040501483,0.5231988,0.031741202,0.30874452,0.08322896,-0.2432777,0.2608424,0.98346865,0.3113184,0.6776464,0.004529631,-0.017553616,0.17626038,0.2767234,0.37200266,0.102691576,-0.50598216,0.05275036,-0.0496027,0.14942381,0.41683537,0.101382695,0.38383645,-0.23322001,-0.2680486,0.007141733,0.159991,-0.12177062,-0.9972456,0.42658305,0.034241192,0.6336629,0.49343076,-0.010512757,0.44491968,0.5506014,-0.21518517,0.08643943,0.07441259,0.07224204,-0.3568274,0.6196128,-0.6690582,0.32409927,-0.22144946,-0.008426863,0.09752922,-0.043912638,0.60166514,0.70665026,-0.08016767,0.16662228,-0.028234744,-0.16691837,0.10689964,-0.41641188,0.3221292,-0.4414102,-0.22018167,0.76991093,0.4851547,0.47440353,-0.21986818,0.04242998,0.015629983,-0.15676925,0.20200245,0.08738748,0.032930706,-0.025297591,-0.623915,-0.10637261,0.77897865,0.08255772,0.01930536,0.06911613,-0.34084848,0.43999583,-0.057909895,0.087313905,-0.048544664,-0.71176374,-0.11962233,-0.58537596,-0.43063775,0.005887312,0.011777079,0.22431234,0.28277656,-0.02003708,-0.3804371,0.24656768,0.53404796,0.7472848,-0.014634972,-0.20940442,-0.33285433,0.20358412,0.21126394,-0.21588245,-0.1602638,-0.2546191,0.042601276,-0.7136037,0.38257635,-0.23776165,-0.48081166,0.53448546,0.010035828,-0.094823934,0.6896615,-0.11520101,0.18408814,0.39228922,-0.32536522,-0.15345046,-0.12656932,-0.31002694,0.048073106,0.084368385,-0.06007147,-0.11086488,-9.691716e-06,-0.2630556,0.24446961,0.000115466115,0.42244664,0.44876376,0.28161415,-0.40664497,-0.08995192,-0.39878526,0.7061008,-0.20819724,-0.18552765,-0.25700518,-0.38300127,-0.065802,0.4834845,-0.05560457,0.4030561,0.1014059,-0.548895,0.8048326,-0.09261276,0.8037262,-0.010092522,-0.36258242,-0.008426649,0.5719939,-0.118275665,-0.16078277,-0.4630041,0.81387645,0.60648793,-0.10474342,-0.19571415,-0.23364373,-0.22920522,0.0940956,-0.26039964,-0.2495363,-0.12534443,-0.6533214,-0.19367291,0.2374877,0.3669479,-0.038370878,-0.115910515,0.48209754,0.47544318,-0.024968887,0.18506157,-0.503654,0.13921754,0.31706384,0.33203468,-0.029761812,-0.05230997,-0.26849878,0.26257682,-0.64374995,0.01665094,-0.33566156,-0.0018531621,0.061297834,-0.13438027,0.1660541,0.07933588,0.2380877,-0.27205095,-0.16398866,-0.035136867,0.30065146,0.08699076,0.42602438,0.82345504,-0.21426506,0.36213484,-0.010804313,0.52928936,0.9612502,-0.30426183,0.0580137,0.5248574,-0.35773113,-0.40617442,0.56762916,-0.35168707,0.088328324,-0.03210781,-0.33607706,-0.24335721,0.23964718,0.3374075,-0.095284775,0.24344711,-0.48789388,0.08202596,0.34271413,-0.32754472,-0.4148698,-0.4701982,0.17073259,0.7229064,-0.14522386,-0.37097302,0.049133968,0.50628483,-0.3740737,-0.30554435,-0.10744681,-0.28846574,0.34483874,-0.06640975,-0.33012345,0.076142445,0.04758629,-0.34048954,-0.058141343,0.13648507,-0.2948354,0.11223586,-0.31188694,0.23613322,0.6569369,-0.35907832,-0.15359099,-0.71125996,-0.5989913,-0.9228757,-0.2273182,0.5426346,0.36362118,0.044677574,-0.29649195,-0.041324146,-0.088971354,-0.28992283,-0.054960914,-0.48313046,0.3358847,0.06579679,0.5477005,-0.036057223,-0.88850373,0.13413362,0.11156634,-0.39104968,-0.4162503,0.48272333,-0.062935874,0.74392295,0.077209845,0.10958467,0.1474689,-0.52226293,0.23523703,-0.08813675,-0.091073245,-0.85585517,0.06336002,927 -987,0.61333513,-0.37083572,-0.6810285,-0.05817715,-0.4062241,0.22033894,-0.2707597,0.82629883,0.43039012,-0.5768033,-0.20648205,-0.12711126,0.11445663,0.40104398,-0.12136312,-0.81960535,-0.16082004,0.2817415,-0.4739046,0.6924756,-0.22277796,0.32747298,0.08004588,0.68159235,-0.24829233,0.2134829,0.22901538,0.0983151,0.47930264,-0.5281834,0.12887129,0.11430027,-0.93413603,0.33393472,-0.21282458,-0.4557736,-0.05062399,-0.47341698,-0.10943844,-0.94655323,0.27910316,-0.9595612,0.86485356,0.20063034,-0.27362275,-0.05533018,0.021266494,0.24469474,-0.15148588,-0.035846528,0.17457673,-0.25976124,-0.24677643,-0.4022573,-0.09049398,-0.5312003,-0.59285057,-0.28273723,-0.28807837,-0.12258802,-0.31187373,0.2144548,-0.15582803,0.13407396,-0.48460454,0.39279318,-0.6381772,0.0213426,0.15329358,-0.39403802,0.29215568,-0.6625283,-0.13752005,-0.1417484,0.080887616,-0.2566122,-0.2676775,0.20059016,0.13065577,0.52569854,0.28485245,-0.35519847,-0.23305288,-0.018007815,0.15359147,0.5158076,-0.065521345,-0.4317451,-0.29345888,-0.22852147,0.14954789,0.17758997,0.34602085,-0.65265,0.104202524,-0.33861518,-0.17818128,0.73283803,0.4608013,-0.5279673,-0.043641903,0.09820823,0.69749856,0.27776486,-0.058869462,0.08149885,-0.015115125,-0.43285617,-0.20272975,0.044535436,-0.11734362,0.356576,-0.18499187,-0.02925397,0.46737647,-0.14509842,-0.25339285,0.16645858,-0.1216708,-0.05313276,-0.56218904,-0.29933697,0.5673072,-0.31947285,0.34831843,-0.5368721,0.83678037,0.09660275,-0.42348552,0.3869368,-0.7684245,0.08206575,-0.07323404,0.58756095,0.5390028,0.5888895,-0.054566126,0.857798,-0.41825604,0.17695452,-0.082388,-0.22389701,-0.055320013,-0.1812514,0.05275507,-0.2873502,0.16751742,-0.16459242,-0.14163116,0.017404113,0.59280074,-0.57388824,-0.23981567,0.24830358,0.9926149,-0.28268093,-0.02040267,1.0918808,1.3140053,0.82044125,-0.023784656,1.446168,0.17129582,-0.23253174,-0.050533254,0.13831034,-0.8867661,0.09947836,0.52892095,0.24150765,0.34270376,0.115484,0.08138587,0.46152195,-0.5926215,-0.16195175,0.017508319,0.3743011,-0.028330004,-0.32918903,-0.67325914,0.14369078,0.18948916,-0.010669005,0.04249795,0.3248158,-0.37097248,0.28819615,0.07463592,0.9771242,-0.19406448,0.16858023,0.093192235,0.365242,0.30491108,-0.1259068,0.08232701,0.17507428,0.19150485,0.0681261,-0.58776885,0.29469615,-0.035243295,-0.51589155,-0.07855481,-0.2920615,-0.20663476,0.20534281,-0.3544133,-0.24549091,0.03500828,-0.07569295,0.27979022,-1.9112905,-0.014043832,-0.06441277,0.507553,-0.21877523,-0.396249,0.21803364,-0.5525101,0.42950606,0.37376615,0.53371996,-0.5836522,0.3998422,0.76022226,-0.6822524,-0.009150016,-0.56534207,-0.06988426,0.029160073,0.37707415,0.076250866,-0.26421908,-0.1122389,0.27465355,0.6515275,0.22315279,0.23214898,0.43132383,0.30636564,-0.41415206,0.41256666,-0.0024519116,0.8421999,-0.42539835,-0.27035642,0.41719905,-0.14309977,0.28288183,-0.43031082,-0.04403047,0.46162587,-0.2989283,-0.9844993,-0.876717,-0.40641093,1.0339897,-0.24992153,-0.69856644,0.1999131,-0.15042333,-0.22966449,0.21375473,0.61993706,-0.23520163,0.13134159,-0.77095956,0.18762231,-0.2319706,0.5129569,-0.032031458,0.021420788,-0.8652927,1.0844761,-0.2840132,0.56000084,0.55354786,0.4423183,-0.07119392,-0.58300716,0.16800985,0.90415275,0.57794785,0.22762981,-0.30785054,-0.1023,-0.29048198,0.09073856,-0.06109377,0.9298666,0.71527517,-0.20875952,-0.058291573,0.20898995,0.060572494,0.071969256,-0.17169489,-0.53933334,-0.30330944,0.09642906,0.52343905,0.6028862,-0.25844494,0.06589945,-0.26688874,0.6008574,-0.1815016,-0.49243027,0.56590086,0.95376253,-0.3426305,-0.15228471,0.9295271,0.416715,-0.3314579,0.7287053,-0.8279794,-0.26724872,0.3801338,-0.08658148,-0.4897291,0.15268715,-0.26972398,0.19288483,-1.0512321,0.16766551,-0.58936375,-0.6507573,-0.36741787,-0.27222648,-3.3075607,0.34917533,-0.049633417,0.042544622,-0.45498523,-0.20455165,0.15913096,-0.7935508,-0.7932513,0.1473801,0.074710846,0.46081418,-0.09565696,0.15938851,-0.32632443,-0.48853454,-0.119893074,0.5643989,0.14105408,0.12269459,-0.19350225,-0.4659067,0.024397489,0.20225301,-0.3652984,0.01510697,-0.95580447,-0.18637307,-0.21614201,-0.62502575,-0.06796566,0.6065922,-0.58261555,0.08109339,-0.21634889,0.20748219,-0.2965893,0.24975209,0.03808489,0.22200231,0.25025386,-0.03173868,-0.16317216,-0.114613414,0.2766359,0.22557895,0.3278826,0.310923,-0.2822374,0.10502602,0.4528635,0.873522,-0.087648086,1.1004077,0.24304,-0.101796046,0.3910504,-0.07074897,-0.5873953,-0.86913854,-0.2748925,-0.060481478,-0.47080785,-0.5600937,0.033355333,-0.40746027,-0.7562292,0.46724844,0.13155015,0.22601485,0.18995687,0.16970934,0.50717336,-0.35166973,-0.19771606,-0.11087289,-0.0776093,-0.6811434,-0.28462583,-0.5978587,-0.56500727,0.03705467,0.95717144,-0.15001035,0.15676963,0.431417,-0.15215096,0.21784373,0.21495923,0.124204494,-0.18341088,0.7759563,0.50114167,-0.63952154,0.45510215,0.12385621,-0.21775396,-0.80032825,0.66693914,0.49145803,-0.9311202,0.67995614,0.16856533,0.10979811,-0.07789087,-0.4608837,-0.3315783,0.18999043,-0.26895753,0.4872829,0.26868558,-0.7315511,0.21745273,0.24974677,-0.023883473,-0.8947371,0.58823097,-0.23967123,-0.35277066,-0.1785787,0.62621063,0.08538888,0.005735281,-0.1020421,0.21362679,-0.47066402,0.11857466,0.18340775,-0.042342536,0.34269947,-0.23493533,-0.015992021,-1.0645176,0.23492697,-0.67130667,-0.3853612,0.13814697,-0.12881193,-0.48059878,0.2284523,0.2422308,0.41127452,-0.18913063,0.46255088,-0.23518236,-0.39846817,0.68849933,0.4463336,0.45895758,-0.23045854,0.7833516,-0.029111873,-0.11689297,-0.03334161,0.054996885,0.4327084,-0.13851902,0.51286143,-0.023038471,0.1568416,0.033040874,0.7315935,0.21080181,0.21401596,0.12395634,0.094602,0.46222815,0.08054639,0.34577566,-0.08409428,-0.7860001,0.2578903,-0.09796533,-0.1962461,0.5488027,0.25251907,0.3570004,-0.12238133,-0.3973042,0.067608126,-0.006172502,-0.09758959,-1.2923545,-0.009973859,0.066643484,0.83219844,0.73717433,-0.04005301,0.0035482794,0.39805967,-0.1316254,0.13285974,0.39680704,0.01007129,-0.24382135,0.4901146,-0.7736075,0.22320497,-0.16139317,0.098811366,0.36951318,-0.09499087,0.33973712,0.99462223,-0.27279136,0.055713534,-0.162536,-0.07231815,-0.08215558,-0.42250818,-0.004044992,-0.28109002,-0.5106503,0.76949704,0.55999756,0.6013433,-0.54082847,-0.072812855,0.072945006,-0.20959099,0.1747722,-0.10276087,-0.054998927,0.124053836,-0.36490673,-0.14160092,0.6857025,-0.13886614,-0.13564987,-0.08509888,-0.49188286,0.2992015,0.0070533515,-0.10625322,-0.05907923,-1.0234302,-0.15522137,-0.49816275,-0.3286501,0.33256045,0.061249554,-0.03651779,0.18433376,-0.010035345,-0.06362786,0.38971764,0.18375455,1.0549333,0.38797423,-0.11523068,-0.47472963,0.38791895,0.21555777,-0.28275377,0.2010874,-0.30220348,0.03279239,-0.46613884,0.15790442,-0.15394142,-0.7110535,0.15171811,-0.039945908,-0.11029343,0.60109293,-0.00027947425,-0.3050414,0.23723392,-0.1761713,-0.095476136,-0.37567288,-0.17017287,0.25866532,-0.11856662,0.18058872,-0.19713466,-0.16094215,-0.2361053,0.16937122,0.3104108,0.34619972,0.50200784,-0.08122437,-0.48128456,0.25312468,0.14893709,0.4541315,-0.29540905,-0.02181322,0.18406466,-0.7540836,-0.57423156,0.0061519505,-0.15315795,0.27582636,0.13307701,-0.16707563,0.77879316,0.33052358,1.3927714,-0.28953063,-0.6385058,0.29248074,0.7581058,-0.18340027,-0.053634237,-0.5166872,1.4264635,0.5122127,-0.12092663,-0.006673624,-0.29549465,-0.23109174,0.26663035,-0.23118457,0.06419657,-0.08984871,-0.72297204,-0.003011477,0.13828799,0.4593727,0.07378094,-0.05084616,0.17775764,0.27722278,0.03368888,0.3714346,-0.6839016,-0.17036676,0.22890231,0.0837587,-0.07330549,-0.0667604,-0.2326976,0.25666124,-0.62545455,0.12043693,-0.5564331,-0.19536617,-0.2511671,-0.19628902,0.07150869,-0.14820698,0.2922836,-0.52734435,-0.37751535,-0.18527259,0.4046269,0.26470822,-0.042141076,0.9053396,-0.12742473,0.07366912,0.16378674,0.5831775,0.9859605,-0.24697761,0.05581416,0.145371,-0.60231435,-0.5675042,0.008496952,-0.2835832,0.028623605,-0.12737978,-0.34984362,-0.6791218,-0.003480068,-0.062658705,-0.30633038,0.19590302,-0.72211766,0.08914216,0.45523047,-0.43962127,-0.17008273,-0.17725763,0.50786144,0.95997727,-0.1268669,-0.47046185,0.21750955,-0.016037028,-0.23925261,-0.90852296,-0.21645033,-0.21428546,0.2282696,0.16697478,-0.5910187,-0.27864242,0.14098829,-0.5292316,-0.13194934,0.2411859,-0.3173671,0.23555732,-0.46626148,-0.22761936,0.98200923,0.022510504,-0.015032237,-0.8688938,-0.7192103,-0.88246804,-0.3688843,0.45422903,0.108350754,0.07670853,-0.6252708,-0.02317674,-0.51617604,0.015873885,-0.10100105,-0.17213798,0.43158466,0.31852713,1.0023994,-0.15261893,-1.1931264,0.44293195,0.2597212,0.1682618,-0.5967924,0.3486152,0.08174029,0.8492777,-0.014862528,0.010756336,0.11505358,-0.87005407,0.11649964,-0.18148185,0.06211143,-0.9112077,0.40624747,937 -988,0.61249304,-0.19665167,-0.8522091,-0.043778487,-0.24296054,0.161942,-0.24101862,0.43948022,0.43319193,-0.35652152,-0.42117676,-0.07619542,0.05022005,0.09568981,-0.14547288,-0.7313519,-0.101359546,0.28928262,-0.66859925,0.46719098,-0.16631344,0.25021425,0.10392475,0.6270949,0.09328775,0.1875016,-0.14477043,0.057518095,-0.16505888,-0.05796534,-0.095273085,0.34847155,-0.51975965,0.26291662,-0.32413077,-0.31144154,-0.2143391,-0.62877846,-0.25270393,-0.6862226,0.29097968,-0.7912275,0.68072546,0.1875056,-0.3777594,-0.21015659,-0.09200314,0.19105932,-0.22161928,0.14689314,0.12930943,-0.24205676,-0.17603703,-0.22710769,-0.40849608,-0.09910141,-0.5706121,0.027134588,-0.39248258,0.19132032,0.09753048,0.17712186,-0.36128783,0.019237686,-0.29765517,0.3764562,-0.24436697,0.13527668,0.46230274,-0.19956748,0.21190977,-0.46953171,-0.15751477,-0.10798129,0.45116144,-0.015315065,-0.5219988,-0.049720924,0.17785227,0.6281625,0.027420009,-0.11563356,-0.2122548,0.08465471,0.10758934,0.51954067,-0.06780344,0.014242873,-0.27104256,0.004009998,0.3802547,0.4016468,0.12599833,-0.33837304,-0.04934449,-0.3768266,0.0746425,0.2563267,0.42568326,-0.031223923,0.0068822624,0.27213067,0.43889618,0.302667,0.030972917,0.24622913,0.14888301,-0.66195613,-0.24375448,0.15896657,-0.038498018,0.64296186,-0.13096449,0.30257696,0.5164916,0.034312874,-0.066795014,0.12028035,0.16901839,-0.021074818,-0.2971117,-0.15980558,0.39847466,-0.4956422,0.083692595,-0.2716382,0.3808834,0.083394326,-0.6691492,0.27666456,-0.58740014,0.20301738,-0.031170428,0.6152681,0.95921814,0.35231027,0.030187493,0.82959634,-0.32520312,0.051647563,0.0013201416,-0.14264421,0.0823089,-0.058332287,0.051300205,-0.51864636,-0.19050686,-0.025500815,-0.19131543,0.31273392,0.2507502,-0.34312803,-0.31754574,-0.17133126,0.64430356,-0.22894469,-0.09324317,1.0099627,0.98237896,0.7867713,0.116090275,1.419211,-0.016311537,-0.16743112,-0.13145205,0.075055696,-0.8207108,0.28917426,0.16444163,-0.45481986,0.58983773,0.078980125,-0.10474306,0.41788405,-0.38885516,0.055972107,0.045218922,-0.12374699,-0.1901543,-0.013314104,-0.58304113,-0.3686598,-0.05512443,0.119616225,0.06630913,0.24571447,-0.07668481,0.53345865,-0.005032009,1.1519113,-0.09948413,0.088310234,0.061293066,-0.10882026,0.23306179,-0.31785637,-0.31175637,0.27829581,0.39938492,0.08311932,-0.4920269,-0.030874813,-0.17222895,-0.14395973,-0.21424031,-0.18063542,-0.09648068,-0.25579163,-0.43582636,-0.1601855,-0.1169129,-0.40857857,0.32040268,-2.4685903,-0.30569515,-0.12580717,0.44736218,-0.22151804,-0.37188607,-0.46912473,-0.4095865,0.25163627,0.2527556,0.40584913,-0.5946446,0.29037327,0.26219717,-0.5229704,-0.14396529,-0.70934963,-0.01205875,0.18838081,0.03608951,-0.049661033,0.073822044,-0.114711426,0.15086468,0.41083008,0.061409015,0.057300113,0.4240767,0.53897905,-0.10235368,0.19871381,-0.08878423,0.5459491,-0.4918167,-0.20525834,0.35616463,-0.37740692,0.43604356,-0.03946531,0.11406618,0.5097377,-0.5935512,-0.47857475,-0.5163282,-0.35119322,1.1833811,-0.37904674,-0.25544947,0.14757952,-0.5426585,-0.4617743,-0.0051974403,0.8450388,-0.11077031,-0.032490365,-0.866913,-0.38966203,-0.06785543,0.27624542,-0.14078522,-0.02936486,-0.45044646,0.5828804,-0.038868725,0.49075556,0.5355273,0.16425292,0.06162583,-0.44771728,0.2700513,0.89309835,0.49338573,0.24118114,-0.33881527,0.100092255,-0.3509496,0.25127906,0.07609219,0.7033676,0.56301844,-0.18859383,0.17280476,0.3566958,0.09859754,0.15196247,-0.05272957,-0.19986896,-0.24825346,-0.15543154,0.63079906,0.92899865,-0.15517926,0.11276518,-0.013263121,0.36623636,-0.21722904,-0.5004126,0.55924225,1.0659177,-0.16195174,-0.24179013,0.82944995,0.4226387,-0.3808972,0.45573348,-0.47953027,-0.33370957,0.33403215,0.06378205,-0.43046004,0.30216455,-0.33369634,0.26835814,-1.0601233,0.19275752,-0.10876372,-0.48803204,-0.55816925,0.014796227,-2.3554385,0.29988465,-0.26901764,-0.2158746,-0.28852862,-0.3056876,0.26570374,-0.42986298,-0.75876456,0.1462737,0.06298755,0.5202314,-0.37768096,0.1678343,-0.054549556,-0.5479527,-0.075422384,0.15318353,0.5103668,0.29346707,-0.15250537,-0.2705285,-0.3345619,-0.11105935,-0.26315492,0.029245328,-0.7320042,-0.56426203,-0.10292612,-0.55124557,-0.012836456,0.55686015,-0.32463485,-0.25382432,-0.18257847,0.07896145,-0.023143638,0.22617301,0.03279794,0.28547773,0.13844167,0.017663652,-0.16747025,-0.12360792,0.3157486,0.16593984,0.18969296,0.33349356,-0.2646464,0.4008437,0.3719979,0.7292102,-0.3026523,0.8530053,0.31052965,0.10969981,0.15455034,-0.069931425,-0.6244805,-0.48490867,0.013724526,-0.12632975,-0.5580902,-0.39431867,-0.1562581,-0.49732047,-0.99811536,0.34995213,0.11231907,0.03883056,0.1517683,0.41268522,0.4936511,-0.22350895,-0.007934904,-0.12314482,-0.23999667,-0.36851034,-0.4089415,-0.47469172,-0.4514247,0.1524057,1.1889203,-0.14852498,0.25042352,0.22317187,-0.35648283,0.031739455,0.252983,0.1357874,-0.015201437,0.57700527,0.1410409,-0.3568632,0.45679992,-0.019977186,-0.25577047,-0.6645974,0.008459973,0.6470436,-0.7413548,0.71251154,0.3609897,-0.07139962,-0.1591328,-0.5164375,-0.31241146,-0.062788464,-0.15453836,0.60720235,0.49779397,-0.509263,0.21266484,0.06647222,0.00023030341,-0.665112,0.5744087,-0.14945576,-0.1988151,-0.040229063,0.41853613,-0.31602556,0.06361653,-0.054409195,0.13067819,-0.109680966,0.2544991,0.23647761,-0.16376755,0.09746552,-0.14711407,-0.025912398,-0.7279882,0.15042095,-0.70319295,-0.26956606,0.4451787,0.13936432,0.122525096,-0.0003241837,0.38359565,0.43475446,-0.45733365,0.11836754,-0.24157366,-0.28069296,0.33706254,0.45816556,0.56403595,-0.5080609,0.48908672,0.074514225,0.039446764,-0.039565515,0.28868857,0.37672848,-0.070808396,0.3625263,-0.009320974,-0.099662304,-0.04017646,0.7137028,-0.021868825,0.23841324,0.33345333,0.08859575,0.23813012,-0.01605446,0.27014452,-0.27888843,-0.5356525,-0.10299411,-0.324452,0.06776561,0.33022824,0.06871069,0.20245068,-0.19306111,-0.24502496,0.04142426,0.31772295,0.17357926,-1.2247326,0.26031938,0.14911577,0.61232674,0.44964004,0.08551721,-0.057902914,0.3936994,-0.16488521,0.1958654,0.4468699,-0.10252557,-0.37990957,0.51466936,-0.41401115,0.4635333,-0.120033994,-0.060340635,0.13514993,-0.08007814,0.42726773,0.9009119,-0.03233501,0.006295231,-0.020065363,-0.1446399,-0.14667264,-0.41916448,-0.07018709,-0.66427594,-0.2734418,0.7259571,0.550189,0.4774271,-0.4973263,-0.01871572,0.062679246,-0.058298785,0.18591395,0.12191532,0.12510312,0.041860256,-0.7441527,-0.043626342,0.6016959,-0.0121137705,-0.030889463,-0.0031130076,-0.22654895,0.20896801,-0.13477764,0.04871627,-0.16303992,-0.8508218,-0.19477186,-0.73091215,-0.591154,0.11427809,-0.21253495,0.12851544,0.23138742,0.02954499,-0.36622754,0.50351554,-0.1125768,1.1875482,0.11522736,-0.04516809,-0.40530878,0.5578966,0.31067768,-0.3200831,-0.21185103,-0.21102445,0.20932138,-0.3547162,0.44461012,0.06289545,-0.3521995,-0.08264863,-0.0072600124,0.024014875,0.44310722,-0.16840652,-0.11482592,0.27915913,-0.02647087,-0.4238391,-0.1762328,-0.39059234,0.14544754,0.3366789,-0.051326692,-0.123809434,0.048698746,-0.07395731,0.20202427,0.25571793,0.23179789,0.49099857,-0.10526744,-0.32169172,0.04492746,0.27799782,0.57050365,0.1324836,-0.2940435,-0.32849997,-0.38379294,-0.36930832,0.527203,-0.043785617,0.26018834,0.10007497,-0.13049057,0.84747255,0.34366965,0.9173713,-0.017310595,-0.20404053,0.11418243,0.45788902,-0.12816484,-0.3403605,-0.26292807,0.97371036,0.3669843,-0.21990342,-0.0941743,-0.34232083,-0.14726985,-0.10345918,-0.1842058,-0.036841188,-0.14965285,-0.67401636,-0.096611395,0.111754954,0.30761236,0.106702186,-0.12264397,0.20913796,0.26245746,-0.091932334,0.035897188,-0.50581163,-0.19074535,0.3077647,0.17685464,0.07076552,0.13512306,-0.36170945,0.43409118,-0.6915235,-0.0035416603,-0.5303684,0.11252884,-0.011251926,-0.36547524,0.06807496,-0.09613441,0.28459707,-0.572189,-0.15621446,-0.4404499,0.4351224,0.19158117,0.26260647,0.7258171,-0.19804649,-0.10250275,0.18880104,0.6296686,1.1064746,-0.16722342,0.076329716,0.43560272,-0.24896061,-0.60364324,0.053354718,-0.42015186,0.23721778,-0.23212019,-0.35563952,-0.6653727,0.09011762,0.010697931,0.14832172,0.013429684,-0.5455803,-0.11685802,0.27936,-0.20716831,-0.19164908,-0.35728717,0.005828035,0.5716826,-0.007095176,-0.52664727,-0.03332139,0.114331245,-0.16085966,-0.33382288,0.03433801,-0.26376367,0.01654091,-0.005185726,-0.338548,-0.04574656,-0.009122947,-0.47965842,0.14083835,0.15459889,-0.2953844,0.17165525,-0.31577268,-0.33267412,1.1311743,-0.16505174,0.10164289,-0.37795514,-0.61357176,-0.8099502,-0.26607254,-0.039213084,0.22038336,0.16035834,-0.71439636,0.02738497,-0.22419052,-0.00935114,0.01053227,-0.14399609,0.4681135,0.2172664,0.59234333,-0.15938762,-0.8849551,0.20615935,0.10542451,-0.5440198,-0.50403845,0.41326776,0.14218685,0.7466277,0.012370895,0.09595038,0.16298154,-0.66635567,0.11569681,-0.06881661,0.023407374,-0.64366794,-0.092973426,958 -989,0.3077379,-0.8225179,-0.5726567,0.007373041,-0.1732082,-0.04983467,-0.38709602,0.4071464,0.19453385,-0.20238805,-0.13108125,-0.13556953,-0.06677808,0.7791251,-0.21755162,-0.6162446,-0.3125584,0.083918676,-0.72732484,0.79874206,-0.31055748,0.07551468,-0.031093273,0.55880994,0.47915134,0.06320906,0.04510158,0.16012008,0.0503153,-0.33901536,0.02421083,0.11290252,-0.7299653,0.25528845,-0.25502428,-0.45710984,-0.08865567,-0.68286544,-0.5203933,-0.8402289,0.37832284,-1.1510655,0.7455877,0.022871494,-0.25976756,0.046585534,0.058977794,0.28870422,-0.046035655,-0.035195928,0.17323324,-0.018531376,0.02880947,-0.23459132,-0.29866743,-0.44818798,-0.60692215,-0.017428365,-0.6385601,-0.27628273,-0.14457819,0.24132696,-0.6367362,-0.012690725,-0.09838413,0.4704779,-0.53064054,0.10828833,0.0015349805,-0.03212279,0.18818717,-0.5942179,-0.22141925,-0.13507509,0.18702982,-0.15666716,-0.24016008,0.1617638,-0.0345402,0.25453767,-0.22318813,-0.13102166,-0.29181772,-0.11561541,0.18225428,0.74118984,0.11594608,-0.69057596,-0.26789045,0.26467592,0.35591027,0.17188624,0.0749989,-0.4732732,-0.12585802,-0.17196025,-0.07882239,0.8610735,0.5048574,-0.15485807,-0.42501324,0.41090098,0.5590845,0.6028457,-0.18767723,-0.10496533,0.15014976,-0.5769415,-0.013284525,0.28911728,-0.10815517,0.5580543,-0.04048351,0.45708972,0.66404116,-0.35470796,0.10968522,-0.028996017,0.051440097,-0.32169968,-0.13842459,-0.2526729,0.2537458,-0.33658746,0.28192517,-0.29708347,0.77584726,0.068501174,-0.7398437,0.29732996,-0.6615446,0.1660949,-0.036113624,0.7081772,0.82412875,0.49096638,0.34782276,0.58716285,-0.06547473,0.1642812,-0.17874336,-0.37336743,0.03232529,-0.39883074,-0.15636328,-0.5553812,-0.256512,-0.116738044,-0.14034705,-0.06513762,0.7641999,-0.4938863,-0.24819979,0.00412541,0.892392,-0.1509219,0.029696226,0.97363615,1.0452284,1.1375487,0.072345264,1.227598,0.17676876,-0.12090763,0.1435605,-0.026966041,-1.0425897,0.37890247,0.48137274,0.16976313,0.70704854,0.0607121,-0.0651824,0.4841029,-0.59744567,0.08806289,-0.23308472,0.17525837,0.2664017,0.03937728,-0.5639744,-0.1476487,-0.17680812,0.17734833,0.009241158,0.28232208,-0.48933735,0.4225692,0.2106152,1.8414621,-0.16798222,-0.021749157,0.022585785,0.6975666,0.12728345,-0.17125246,0.0048426627,0.41829854,0.52678573,0.21200386,-0.8436116,0.24034896,-0.27248773,-0.36071426,-0.24391568,-0.2801196,-0.06673023,-0.34392875,-0.3577676,-0.065292075,-0.13657022,-0.2387712,0.43711066,-2.5692265,-0.3530407,-0.101481795,0.36739856,-0.33755952,-0.41330537,-0.03892138,-0.44851318,0.49246877,0.32268888,0.65566087,-0.74359024,0.21141663,0.5462569,-0.69404095,-0.19225898,-0.7430705,-0.023654884,0.019784201,0.75707567,-0.11703309,0.1107008,0.239083,0.19166724,0.59034765,0.08670971,0.101759896,0.40789086,0.6830428,-0.025187317,0.5323203,-0.18257709,0.3327252,-0.47786245,-0.17531696,0.40819246,-0.29052496,0.42517647,-0.2445068,0.17953335,0.6111963,-0.4778737,-1.0131204,-0.4972202,-0.32321876,1.0439937,-0.397877,-0.547484,0.16009423,-0.109661505,-0.3179438,-0.3066801,0.6345007,-0.3951446,-0.0424469,-0.80468833,-0.042040814,-0.13939145,0.21852478,-0.103385985,0.023835182,-0.3165262,0.5322897,0.00818793,0.29236656,0.21471572,0.24292645,-0.432525,-0.70259607,0.2794908,0.7389684,0.41141734,0.09126967,-0.33061385,-0.16825107,-0.07193661,-0.13576359,-0.13790241,0.67623985,0.70385104,-0.13017428,0.23866911,0.38462964,-0.16449222,-0.05321915,-0.23888712,-0.1355958,-0.23696828,0.2842783,0.6428407,0.9436356,-0.0991206,0.68184954,-0.085862465,0.07764681,-0.04319106,-0.3924972,0.44463557,1.065341,-0.15564175,-0.36182874,0.43921408,0.6082546,-0.5923055,0.4917222,-0.601544,-0.1356394,0.52638066,-0.17137797,-0.6627288,0.40818372,-0.23256716,0.08834137,-0.9356201,0.3936225,-0.17763157,-0.4870437,-0.8048379,-0.104691125,-2.069566,0.11006117,-0.2947364,-0.48692784,-0.29132593,-0.27638954,0.20606256,-0.6593499,-0.7215158,0.1355664,0.16191287,0.6264065,-0.23589873,0.16628608,-0.19624665,-0.289056,-0.28581545,0.19508383,0.25329003,0.366808,-0.13571496,-0.51408446,-0.18331371,-0.014992595,-0.48142618,0.14883071,-0.7122112,-0.4469479,-0.07978984,-0.65400296,-0.14236055,0.7042176,-0.03741648,-0.13349949,-0.21074665,0.092569076,0.07700344,0.47629756,0.13848917,0.122386396,0.11756823,-0.07328317,0.08350561,-0.15535791,0.34357893,-0.04517869,0.25046164,0.33158278,-0.28520378,0.5344202,0.7016448,0.547537,0.051298987,0.9371891,0.5198371,-0.18644226,0.19990206,-0.12378013,-0.30224335,-0.5998155,-0.2602604,0.1987879,-0.3932019,-0.59544384,-0.28201205,-0.1857123,-0.8756609,0.72114104,0.035480667,0.38084102,-0.08812876,0.33036464,0.47546786,-0.15155305,-0.12750404,-0.007817966,-0.10311134,-0.4234619,-0.42977914,-0.68079925,-0.5307699,0.09778668,0.93783265,-0.15006362,-0.14333448,0.094893664,-0.49919575,0.04180547,0.17875998,-0.06136606,0.23112674,0.36102793,0.19771573,-0.71201503,0.58828557,-0.07040469,-0.16075236,-0.72849625,0.12162373,0.7254667,-0.5868303,0.32504433,0.18465789,0.06287581,-0.39978623,-0.43952674,-0.010466492,0.08949154,0.0031223192,0.22030869,0.29439068,-0.75835,0.5200496,0.25842512,-0.35409823,-0.6346098,0.55286807,0.040798247,-0.01965471,-0.1691987,0.3541022,0.121563196,0.04244377,-0.37447459,0.53386307,-0.17116234,0.2387098,-0.08245708,-0.08370938,0.29288077,-0.14631805,-0.2675106,-0.7515332,0.3106594,-0.4947164,-0.41012865,0.57313,0.069257185,0.16144885,0.16414757,0.1115949,0.4076189,-0.35585135,-0.03249471,-0.11258952,-0.29842314,0.37136698,0.5599373,0.6904879,-0.6113868,0.64459383,0.15759033,-0.09522125,0.3398048,0.07685399,0.35264555,0.0006444931,0.42096034,0.13219614,-0.2424657,0.18782702,1.0874727,0.255283,0.6072747,0.11353643,-0.13572522,0.2998151,0.15138772,0.27187848,-0.18846127,-0.6548268,0.051359355,-0.21292737,0.05994904,0.65668666,0.12421538,0.24757953,-0.27110013,-0.4044857,0.039619274,0.12220627,0.20189723,-1.5671355,0.15970373,0.29097757,0.7868336,0.3340873,0.08017975,0.33722943,0.717131,-0.19672461,-0.07261703,0.42970496,0.22238874,-0.6979187,0.65060586,-0.76627064,0.6215924,-0.05834667,0.08138916,0.1764955,0.16128305,0.52146864,0.6545926,-0.34439144,-0.10590048,-0.16100413,-0.34291568,0.0007148713,-0.50019276,0.41041332,-0.546353,-0.53058887,0.69642437,0.71620685,0.2235496,-0.021069322,0.032199483,0.08853134,-0.17171106,0.27359074,0.048083447,-0.098192915,-0.16912556,-0.91993284,-0.0879153,0.59643745,-0.00785408,0.08740339,-0.17169105,-0.007771671,0.31933412,-0.17322448,-0.135363,0.021233622,-0.9208582,0.06384413,-0.4654483,-0.66627485,0.25111896,-0.21829596,0.19285746,0.21660313,-0.06660519,-0.46536645,0.3109432,0.08698309,1.1058899,-0.09301128,-0.22835286,-0.4304533,-0.03912943,0.25929183,-0.32041344,-0.04610895,-0.20866278,-0.05158657,-0.6474988,0.62707067,-0.15937746,-0.4848237,0.06724378,-0.23884101,0.0527362,0.7342581,0.08560936,-0.15156882,-0.13654803,-0.410345,-0.39122233,-0.395012,-0.094558015,0.27996996,0.2824968,-0.08373717,-0.14060588,-0.04984356,-0.14266753,0.48712254,-0.026951153,0.52735656,0.47448856,0.4039755,-0.18495266,-0.22548358,0.19440134,0.6652076,0.14929777,-0.099767074,-0.26622996,-0.46104974,-0.4515739,0.26074076,-0.14987147,0.40399393,0.059209663,-0.46925825,0.76763,0.13809124,1.115771,0.034057982,-0.49240357,0.39162058,0.6169828,0.038357116,-0.22459897,-0.4937996,1.0276998,0.51716095,-0.055475432,-0.17053832,-0.5878709,-0.28009453,0.3585353,-0.37660939,-0.039203584,-0.12692845,-0.43556228,-0.007242358,0.22088793,0.20293415,0.13693957,-0.26527685,0.018371407,0.34043807,-0.019857,0.339461,-0.5316003,0.029028391,0.28967422,0.16968292,-0.035576038,0.0355879,-0.555611,0.37133107,-0.49582607,0.20766935,-0.48214293,0.35467553,-0.1587805,-0.17566316,0.24650426,0.052509677,0.4915523,-0.50401,-0.32394537,-0.20749009,0.47957927,0.2503767,0.17282769,0.6023277,-0.29271856,0.24556093,-0.093704,0.55900896,1.1220131,-0.32805943,0.041343458,0.2574833,-0.5003725,-0.70516837,0.46238384,-0.50763834,0.45812225,-0.03723728,-0.026451314,-0.76032406,0.28427076,-0.011306155,0.16899236,-0.16513136,-0.5761113,-0.24117413,0.33471662,-0.24018395,-0.23549402,-0.47444472,-0.14938398,0.6253904,-0.09790872,-0.5016246,0.08953603,0.33058232,-0.16711597,-0.43041143,-0.019197237,-0.28427854,0.12451039,-0.09306984,-0.3066066,-0.16250929,0.06831476,-0.6264362,0.046071038,0.01349399,-0.37458324,0.030976683,-0.09043411,-0.07897724,1.185704,-0.5989253,0.008190644,-0.79341704,-0.63983905,-0.82105845,-0.3292213,0.37637743,0.22319598,0.23646507,-0.77766067,0.1622596,-0.036432695,-0.1882084,-0.12004441,-0.583394,0.417309,0.012760852,0.42990512,-0.3726334,-1.0061201,0.44021624,0.025706116,-0.1147954,-0.7958693,0.6518799,-0.04380413,0.7854687,0.09283526,0.25623798,0.10874311,-0.58653057,-0.2334096,-0.08287187,-0.29501495,-0.7733036,0.30781856,962 -990,0.3079358,-0.09560775,-0.35384285,0.035303734,-0.10528431,-0.013219324,-0.022698034,0.69088256,0.30916446,-0.5077301,-0.23700798,-0.47601375,0.07743781,0.45498443,-0.09575472,-0.48970428,0.22071795,0.30102283,-0.47363386,0.4671958,-0.47567782,0.35816604,0.11767944,0.5832579,0.1725375,0.15514836,0.26317543,-0.1866249,-0.36761728,-0.21303777,-0.1748556,0.28000697,-0.49835473,0.26738578,-0.30896094,-0.46415567,0.06399224,-0.621885,-0.08125995,-0.6341604,0.094791904,-0.74883157,0.43160954,0.11838858,-0.10462823,0.1460149,0.21096687,0.27371517,-0.17556152,-0.068355754,0.08133869,-0.21113494,-0.06638749,-0.41116962,-0.28811008,-0.30133572,-0.55830514,0.14401236,-0.5148279,-0.12446753,-0.42992085,0.065128475,-0.2268391,-0.17272055,0.22337031,0.36113968,-0.39852715,0.04392276,-0.12369285,-0.22051635,0.10848212,-0.34515512,-0.29113102,-0.14517887,0.3071695,-0.28702518,-0.27864066,0.35980296,0.31435052,0.3783904,-0.120431975,-0.037312657,-0.41821456,-0.01265018,0.0926312,0.6700591,-0.13995452,-0.5909068,-0.07567815,-0.08611819,0.10128276,0.2483408,0.24371836,-0.29540572,-0.05322078,-0.024535745,-0.31525165,0.40327215,0.2939379,-0.46445927,-0.33170712,0.40151328,0.31718537,0.16483,-0.114876725,-0.09275204,0.088153645,-0.5294845,-0.14920579,0.033413395,-0.20889282,0.64001584,-0.007267189,0.38664752,0.6314779,-0.40992588,0.023010395,0.059304476,0.16341922,-0.27282655,-0.09778073,-0.19422713,0.24757648,-0.42152795,-0.10212679,-0.18246257,0.9147299,0.12766019,-0.6201335,0.42383736,-0.638198,-0.028653149,-0.12081598,0.35065037,0.6379504,0.4409793,0.3613262,0.47172588,-0.37662303,-0.0326856,-0.14971061,-0.43269572,-0.03133381,-0.25956622,0.1231007,-0.5628675,-0.1193073,0.35475606,-0.006178379,0.33374655,0.48801175,-0.5817165,-0.17622453,0.22398277,0.7528698,-0.24979961,-0.39603692,0.8072182,1.0867946,0.868019,0.11622791,1.2121124,0.13939354,-0.16526286,0.2771652,-0.13337834,-0.67689204,0.3333653,0.3016779,-0.8981848,0.24778712,0.24743882,0.19427384,0.17471577,-0.38610923,0.059254974,-0.05764549,-0.015594056,0.10589148,-0.107328035,-0.24914098,-0.44874707,-0.1869134,-0.17868811,0.1910675,0.41965985,-0.24124496,0.2659166,-0.11911829,1.7342968,0.21977265,0.11754505,-0.15822046,0.66390383,0.19890149,0.021459216,-0.2428625,0.41367784,0.12092233,0.22387233,-0.4239471,0.14252636,-0.21343541,-0.53393674,0.0287139,-0.31781608,-0.17137456,0.027125712,-0.36495328,-0.14132383,-0.09531238,-0.48731905,0.5991826,-2.822819,-0.25482145,0.0993054,0.40848047,-0.2525095,-0.41278514,-0.31824285,-0.43612522,0.32552037,0.2960456,0.51240504,-0.6507007,0.15733738,0.3624925,-0.45702738,-0.4568061,-0.49498257,0.24349038,-0.10616509,0.17837867,-0.12184346,0.019979488,0.17498784,-0.1622616,0.5127827,-0.14431997,0.05081749,0.3308188,0.45901266,0.1343178,0.38795263,-0.09073848,0.523329,-0.41624528,-0.35148388,0.20997667,-0.51359856,0.38667795,-0.022860652,0.0945324,0.35800737,-0.3763305,-0.9835928,-0.60322505,-0.14811328,1.0018399,-0.13683519,-0.18338947,0.16623275,-0.13216938,-0.22835073,-0.1619555,0.69584244,-0.11369666,0.097079575,-0.59274757,-0.016709274,-0.06367288,0.21532385,0.052613128,0.11633664,-0.2706845,0.3765288,0.04898613,0.40192556,0.12588933,0.16805215,-0.6775936,-0.5033833,0.22317496,1.0340146,0.23227696,0.2425681,-0.19467871,-0.2001454,-0.51404345,-0.22910157,0.19115141,0.58261836,0.56643516,0.012772853,0.13414223,0.39115557,0.13770285,0.03266234,-0.14608575,-0.21627541,-0.09845364,0.10834283,0.6106583,0.74783766,-0.11736312,0.73821,-0.019553477,0.23143668,-0.36175057,-0.2811013,0.5459305,0.77308834,-0.11079035,-0.08780516,0.5534067,0.46727237,-0.47896242,0.46471533,-0.4584783,-0.5336707,0.42356825,-0.17508522,-0.2949184,0.19569822,-0.2356875,0.13044871,-0.88439333,0.29530632,-0.12878856,-0.42196503,-0.45494613,-0.02741382,-3.4551861,0.18411514,-0.06637565,-0.1967796,-0.01846106,-0.036436476,-0.10680425,-0.5523697,-0.2988202,0.11362324,0.080921456,0.8537186,-0.13768137,0.20896387,-0.24911317,-0.55725557,-0.27914795,0.07075504,-0.045120254,0.4711917,0.14506924,-0.4332304,-0.008368629,-0.19654484,-0.2795033,0.062615596,-0.6872957,-0.5247531,-0.19674549,-0.5703967,-0.53558797,0.7765054,-0.79671234,-0.031656247,-0.09876998,-0.040286746,-0.032178517,0.58539534,0.22694404,-0.09766505,0.10407659,-0.050351955,0.039142095,-0.3384231,0.39325827,0.061204474,0.35453188,0.59197223,-0.03582079,0.33848554,0.63864946,0.6289623,-0.11616719,0.76056087,0.33144206,-0.18494834,0.2647715,-0.38327146,-0.1399117,-0.48561326,-0.2736966,-0.21613792,-0.45296448,-0.44950682,0.048167776,-0.20796867,-0.7506976,0.5999118,-0.016695078,0.2574869,0.017302442,0.44224972,0.436632,-0.26023933,-0.103305124,-0.06483955,-0.031317066,-0.5088784,-0.37756258,-0.5433318,-0.46662372,0.38764256,0.67421216,-0.31913012,-0.062846355,0.22528657,-0.04278906,-0.114689335,-0.017253641,0.0014956177,0.05971422,0.39502275,-0.14462891,-0.6146989,0.5047269,-0.2826024,-0.13084629,-0.52900666,0.29730096,0.6073068,-0.82143295,0.42703447,0.34984216,0.059041403,-0.006636369,-0.21889582,-0.29981634,-0.13070314,-0.01799582,0.10927341,0.10629623,-1.0161146,0.3472758,0.35619402,-0.3488059,-0.7390477,0.5101688,-0.08156507,-0.20618281,-0.28307953,0.41188645,0.3714981,0.010835031,-0.2680061,0.119319916,-0.714193,0.20942731,-0.037104093,-0.013084051,0.54933137,-0.24336267,-0.116132304,-0.7104326,0.14828865,-0.32114553,-0.43822104,0.3017463,0.24128565,0.040961098,0.48463017,0.124120116,0.12818244,-0.46877342,0.021028036,0.010352311,-0.025250817,0.1585871,0.36304814,0.6946566,-0.43417415,0.5851859,-0.049894944,0.11415968,-1.24692915e-05,-0.0056295274,0.30408484,0.16628177,0.37148827,0.1142238,-0.5408026,0.19204596,0.6979744,0.22890782,0.41596764,0.06000172,-0.06163317,0.07308824,0.15610267,0.2949069,0.20376721,-0.5752264,0.14150189,-0.41498417,0.0933609,0.5276811,0.122435644,0.2585078,-0.024514556,-0.32827112,0.05633559,0.2980025,0.06539793,-1.0347188,0.42399865,0.15872595,0.67001283,0.35238153,0.028037941,0.18267992,0.6845647,-0.16952267,0.34674612,0.27755818,-0.15258236,-0.4503684,0.645558,-0.74084395,0.6028216,-0.1359859,-0.15473412,0.024675477,-0.11497768,0.34452468,0.739395,-0.1132368,0.041030053,0.15020753,-0.31230396,-0.022895742,-0.40238434,0.28750053,-0.72846556,-0.14321437,0.6771579,0.59487355,0.23793884,-0.17118141,0.069999285,0.029435555,-0.12752953,0.151593,-0.029819733,0.3405835,0.15760976,-0.7372457,-0.06497922,0.6904843,0.17741151,0.2237761,0.20002136,0.0047550797,0.34057644,-0.1473591,-0.15289685,-0.08419469,-0.7320617,0.07443381,-0.2940806,-0.5409044,0.52223814,-0.0037678003,0.33746552,0.3022736,0.09874064,-0.1670855,0.84598476,0.55179715,0.6709548,0.05029722,-0.26361778,-0.39984024,0.4806254,0.14098345,-0.15536436,-0.17360938,-0.24948025,-0.10292001,-0.51257855,0.25262377,-0.012696227,-0.25368953,-0.25133356,-0.005672296,0.07959471,0.58964145,0.19702668,-0.026887637,-0.17953187,-0.2896738,-0.15310663,0.091426946,-0.18110359,0.29508582,0.13053527,-0.2599817,-0.1818609,-0.27675578,-0.2278771,0.025562376,-0.24021511,0.30186814,0.2088217,0.2138265,-0.15285489,0.045792174,0.060733687,0.4358148,-0.03421101,-0.18743765,-0.21151015,-0.039822906,-0.4752651,-0.07694025,-0.063405596,0.18505815,0.3996441,-0.35368335,0.68256533,-0.12241123,1.0914605,0.1120054,-0.2581915,0.25286758,0.330703,0.030327965,-0.14953312,-0.4316427,1.1623213,0.42928308,-0.14928854,-0.23290884,-0.27902746,-0.19905517,0.28729516,-0.36126572,-0.52611506,0.08011012,-0.63341403,-0.28099066,0.20481852,0.19409415,0.27622908,-0.11095697,0.12545553,0.48365515,0.09555725,0.2093682,-0.4461349,-0.24241838,0.35542536,0.69744235,0.04215785,0.2761226,-0.2706264,0.46251068,-0.7551004,0.1301937,-0.4024642,0.18323596,-0.5916201,-0.496404,0.23921311,0.42443413,0.5039422,-0.030328596,-0.34791434,-0.2575243,0.33069235,0.110831186,0.2220231,0.42260146,-0.22480397,-0.1943104,-0.23610303,0.302028,1.0110028,-0.2334847,-0.29205373,0.5677914,-0.24656133,-0.6058444,0.50201035,-0.46906558,0.24767935,-0.07917818,-0.15677896,-0.5170865,0.14070329,0.17943123,0.09215893,-0.13567582,-0.46518594,0.100175306,0.2627023,-0.21095824,-0.35366416,-0.39319173,0.1336445,0.6285859,-0.21166237,-0.32518202,0.18930969,0.26184395,-0.21557252,-0.4288383,-0.15850383,-0.36396402,0.25543875,0.055475898,-0.33950546,-0.09218129,0.03746759,-0.4709975,0.14456932,0.01677283,-0.37277693,0.19947056,-0.3786428,0.11037654,0.94358426,-0.106517576,0.2776162,-0.3535836,-0.5233058,-0.7849141,-0.4035066,0.485516,-0.03485591,-0.032016467,-0.59153795,-0.018055404,-0.07135175,-0.4546401,-0.06062017,-0.46112648,0.30913225,0.121481776,0.35373825,0.018521184,-1.0106684,0.0756845,0.16209626,-0.16110262,-0.8200102,0.30743235,-0.24857359,1.1966503,0.037949722,-0.12735327,0.70783556,-0.38810536,-0.15784839,-0.31864804,-0.009338307,-0.48739845,0.061951526,970 -991,0.6667027,-0.39776924,-0.48975402,-0.41191292,-0.5178265,0.22602181,-0.07271506,0.38303798,0.35669532,-0.5957305,-0.03581663,-0.2611118,-0.05647871,0.3145047,-0.43973055,-0.96061647,-0.120224975,0.032547846,-0.34911457,0.16001162,-0.5953106,0.20305459,0.1925595,0.43027562,-0.081300035,0.1961193,0.44323173,-0.030606296,0.041525256,-0.32959837,-0.15654035,-0.14513025,-0.84354514,0.4206562,-0.115329266,-0.44556838,0.26582393,-0.6565312,-0.17637399,-0.66508853,0.48017102,-0.8001267,0.812819,0.043581612,-0.16830638,-0.044623185,0.18545981,0.057929624,-0.051601768,0.3039526,0.087654404,-0.23930474,-0.018787872,-0.21457128,-0.3852597,-0.7117806,-0.85205925,0.014013764,-0.60402983,-0.26315364,-0.34126526,0.3592284,-0.34490854,0.041235182,-0.093630835,0.72316116,-0.2639476,-0.22695665,0.15087946,-0.20568177,0.2822231,-0.47998208,-0.3566982,-0.021884883,-0.10086228,0.04140424,-0.2380079,0.21110144,0.18970372,0.51056516,0.12684567,-0.38253748,-0.1223158,-0.00058474543,-0.15966763,0.67075735,-0.27525905,-0.46885738,-0.28867695,0.042077113,0.23870406,0.19684154,0.053998698,-0.15840176,0.31339744,0.2458839,-0.4592971,0.6290281,0.5466916,-0.56538284,-0.22435017,0.0041858973,0.18029724,-0.30877095,-0.008784538,-0.030297631,0.056550987,-0.50062585,-0.3872599,0.3615334,-0.23357102,0.60302514,-0.24729152,0.23060784,0.7682781,-0.41259775,0.024802392,0.007522419,0.042459436,0.021647895,-0.20506163,-0.36270434,0.29972464,-0.57678616,-0.20447683,-0.6349487,1.1470968,0.09002385,-0.65294677,0.2927374,-0.6313659,0.02160416,0.011060724,0.7030152,0.44482622,0.48484507,0.26973432,0.81166697,-0.37182075,-0.13372959,0.054320145,-0.23380156,0.24018416,-0.21449924,0.44187203,-0.19147739,-0.060760707,-0.00030167104,0.055887986,-0.09388161,0.7541271,-0.48795882,0.09236531,0.19349849,0.90411454,-0.3924719,-0.01785689,0.57320166,1.2911866,1.0240481,0.15569848,1.5358714,0.13109271,-0.26947504,0.12443614,-0.17330953,-0.34222037,0.43663877,0.5167223,0.50295514,0.37015432,0.102927364,0.073299594,0.51166815,-0.4929436,-0.14812584,-0.022173706,0.2542855,-0.035325143,-0.17903732,-0.6124713,-0.42133632,0.30715942,0.1413741,0.16986904,0.25843105,-0.3866362,0.25586545,0.078718886,1.1027415,0.054627694,0.20786855,-0.009396523,0.42600375,0.004834929,0.13153347,0.11520424,0.10432373,0.11844784,0.1617766,-0.6064558,-0.00926668,-0.35994723,-0.3338499,-0.2952761,-0.35242206,-0.16311961,-0.25260273,-0.5171844,-0.19338365,-0.13379331,-0.358082,0.22691989,-1.9249226,-0.35954022,-0.024887526,0.34999096,-0.25446832,-0.4316276,-0.15025152,-0.5835322,0.30308658,0.48768607,0.30784065,-0.6687318,0.5905949,0.40635028,-0.35129172,-0.010643935,-0.7631765,-0.013653303,-0.2622373,0.4725322,0.07597181,-0.5082326,-0.54769313,0.4164731,0.7975458,0.2475626,-0.14769077,0.14257649,0.5739082,-0.110667706,0.75888026,0.10606809,0.4655053,-0.338837,-0.088945605,0.32401136,-0.58106124,0.092031226,-0.03497969,0.16893059,0.46555632,-0.76018393,-1.1095159,-0.81524485,-0.5662829,1.1930001,-0.35397297,-0.31785065,0.28710896,0.061912227,-0.50315845,-0.109814525,0.45415202,-0.2994414,0.19270954,-0.69019705,0.07384587,-0.07834278,0.23413654,0.0193698,0.2242574,-0.45332655,0.80538046,-0.2988307,0.3645967,0.09221788,0.2446026,-0.4371058,-0.51234686,0.1947746,1.2476265,0.5232304,0.24762528,-0.21716805,-0.041977856,-0.17303695,0.1231281,-0.059600033,0.63360125,1.0057989,0.1423082,-0.11318581,0.31023008,-0.3707901,0.042253215,-0.035956483,-0.47161865,-0.18558629,0.15945786,0.8490733,0.3949241,-0.22301622,0.12883231,-0.22348776,0.3959525,-0.47376508,-0.20922568,0.37237653,1.1201495,-0.01940011,-0.1560178,0.8302969,0.5541757,-0.6356595,0.5264236,-0.815193,-0.49611846,0.4366354,-0.043022808,-0.5332364,-0.12860234,-0.38696232,0.10344406,-0.9567593,0.4209692,-0.06995553,-0.6302382,-0.55147713,-0.52495545,-3.8877006,0.3227966,-0.15503258,-0.03794206,-0.02830186,-0.0782983,0.41460246,-0.54824644,-0.554946,-0.07196511,-0.08673867,0.5077756,0.15681416,0.058203258,-0.11629237,-0.3937826,-0.3804082,0.2811417,0.091684446,0.07642,0.08985411,-0.3605985,0.3025652,-0.47075063,-0.52599084,0.13114317,-0.44937125,-0.67285395,-0.11278012,-0.5131907,-0.42862573,0.9979205,-0.09146129,0.11753132,-0.23560306,0.05397891,-0.11622274,0.40335575,-0.041207325,0.15275341,-0.09082079,-0.22004554,-0.052627433,-0.32389703,0.35597867,0.08535623,0.617622,0.48906708,-0.23943193,0.06655951,0.68901813,0.5245827,0.17523529,0.8957368,-0.16255091,0.031594805,0.28586602,-0.21272412,-0.24362418,-0.73637116,-0.3253425,0.10580482,-0.45726854,-0.21931484,0.04580765,-0.38007194,-0.62689996,0.43353352,-0.15221024,0.11705641,-0.05717994,0.5500215,0.32071114,-0.11983297,0.045752812,-0.066379234,-0.30317348,-0.41927043,-0.44501644,-0.71740264,-0.3411482,0.15753475,1.155399,-0.016009817,-0.28273502,0.023743004,-0.022740161,0.16416936,0.10897647,0.10765655,0.006269574,0.48926944,-0.14906749,-0.8990024,0.27772194,-0.13113053,0.05433333,-0.39094493,-0.05634784,0.88126576,-0.8298413,0.68470925,0.36233497,0.51676494,-0.006969446,-0.33118984,-0.19296975,0.2618584,-0.16050193,0.4791345,0.11052289,-0.7226413,0.5265022,0.012769906,-0.0915872,-0.71193177,0.38118047,-0.0966007,-0.32562977,-0.36394674,0.54204696,0.31413382,0.040697575,-0.22418837,0.3681127,-0.67492944,0.19557819,0.26178488,0.3276425,0.43687448,-0.26129696,-0.120682165,-0.748978,-0.3695508,-0.55075395,-0.39374068,0.08691139,-0.03199511,0.0050603747,0.45777887,0.15771757,0.5139382,-0.30864826,0.1779329,0.06257684,-0.48938742,0.5252514,0.5518652,0.39492172,-0.32649344,0.5505096,0.11556437,0.17098406,-0.44175816,-0.0032492399,0.4122436,0.2217898,0.15702431,-0.05771617,-0.26589033,0.42378289,0.8383724,0.17543377,0.45832175,0.41753173,0.013919769,0.48037797,-0.03345124,-0.06926891,0.028045485,-0.57249236,-0.12051655,0.17334864,-0.09908373,0.4405387,-0.11577995,0.28089148,-0.04510647,-0.038375746,0.22567204,0.44649142,-0.4571566,-1.3183196,0.19514646,0.18781178,0.6408335,0.6196645,-0.046087,-0.06836055,0.44652653,-0.30244213,-0.07638734,0.5810203,0.3256677,-0.19532773,0.8369422,-0.32994628,0.4156769,-0.29769453,0.10632358,-0.2781722,0.09948079,0.4409186,0.9340211,-0.043289326,-0.066117376,-0.15200202,-0.16318682,0.18174222,-0.47120804,0.26166204,-0.52998483,-0.12988655,0.71885186,0.24259798,0.37901023,-0.2249271,-0.06824557,0.07343595,-0.15124185,0.3517774,-0.04479482,-0.39956924,-0.054880477,-0.90204203,-0.14566998,0.65389884,0.3199447,0.13534331,0.21655238,-0.27417582,0.08027084,-0.0044631124,-0.20325765,0.074223354,-0.7554449,-0.18238619,-0.46048746,-0.4932185,0.27824697,-0.3640935,0.09199037,0.28265095,0.20177618,-0.2433575,-0.2406116,0.5610686,0.5336639,0.20011194,-0.41550368,-0.3597579,0.0040504546,0.0070982156,-0.500538,0.027935114,-0.27452374,0.3856048,-0.69612896,0.5127286,-0.14516039,-0.3861175,-0.0122513715,-0.08787312,-0.04852407,0.5097421,-0.36845288,0.08560197,0.054647736,0.08980747,0.0049582245,-0.003433609,-0.30156508,0.23087266,-0.3410284,-0.20419244,0.007179439,-0.27286035,0.09192475,0.6621182,0.41905302,0.080686815,0.3708229,-0.08309467,-0.34259278,0.037540473,-0.43888584,0.56548274,0.08113097,0.003452158,-0.3184776,-0.22590785,-0.12727988,0.41034502,0.051485814,-0.07117024,-0.13010284,-0.7023171,1.1334534,0.12548852,1.2717263,0.032851376,-0.27533287,-0.114831924,0.6866422,-0.11367919,0.0990867,-0.48311132,1.1843504,0.56936336,-0.36622232,-0.45868483,-0.65874225,-0.12784985,0.17294115,-0.36536166,-0.27672583,-0.37343425,-1.0185537,-0.18994056,0.285927,0.51656145,0.10791765,-0.018081272,0.28943905,0.3115558,0.08575277,0.72458047,-0.66721404,0.016026998,0.33862716,0.24926576,0.25789404,0.32235432,-0.2488431,0.2059128,-0.8468009,0.35493702,-0.40541905,-0.009097236,-0.017539626,-0.48858556,0.3079081,0.18580991,0.27489215,-0.18901713,-0.28230175,-0.058350027,0.68262756,0.12975922,0.2542534,0.84409666,-0.23780577,-0.13435987,-0.0882872,0.5255311,1.6788113,0.2317841,0.18029141,0.07455216,-0.48868093,-0.7338333,0.2429409,-0.5536138,-0.1904336,0.08857324,-0.4766704,-0.41824594,0.27240863,0.3852759,-0.1262381,0.20946357,-0.24116698,-0.44189626,0.64460385,-0.4429199,-0.28372318,0.08879089,0.28555623,0.7479416,-0.31117803,-0.05586788,-0.17437407,0.6350311,-0.2905258,-0.6380051,-0.18066773,-0.3614357,0.60939306,-0.019691253,-0.38706693,0.0324261,-0.046803214,-0.48232883,0.045155585,0.46525088,-0.40299425,0.014240821,-0.36643457,-0.20036976,0.8492633,0.30857855,0.04299667,-0.75335616,-0.40460953,-1.1284909,-0.33168417,0.13880807,0.083248675,-0.10328649,-0.3965779,-0.25112748,-0.13269022,-0.086311884,0.124648556,-0.55402786,0.064657494,0.056325376,0.7261652,0.017734628,-0.86866856,0.18033953,0.21564963,-0.13876657,-0.4703072,0.64327,-0.2691483,0.5928393,0.05496446,-0.0014263391,-0.10568537,-0.69280994,0.3205815,-0.35949963,-0.17506835,-0.8816902,0.128867,991 -992,0.66166264,-0.43905726,-0.6052342,-0.09265026,-0.18846497,0.28831106,-0.26524162,0.5187489,0.20000248,-0.6958007,-0.32140446,0.013938576,-0.1229528,0.31272423,-0.30913246,-0.44093233,-0.14865316,0.08547083,-0.685799,0.701931,-0.19157322,0.1987866,0.03304199,0.34213176,0.4247454,0.24469236,0.17582288,0.062093545,-0.04486977,-0.3371398,-0.04940536,-0.29324418,-0.65918595,0.36940214,-0.4344473,-0.39297396,-0.16669051,-0.7468637,-0.401897,-0.8680693,0.35995084,-1.0797526,0.6940479,-0.065985635,-0.22251293,0.07717077,0.121524855,0.29131833,0.0673771,-0.012936413,0.24284144,-0.06981921,-0.0028288842,-0.09947636,-0.2645848,-0.2663835,-0.7269204,-0.10457675,-0.44198352,0.07176799,-0.11927404,0.09650359,-0.30195034,0.03934569,-0.17123757,0.5257828,-0.39157262,-0.04269699,0.13516736,-0.15437213,0.43644905,-0.698786,-0.27678415,-0.04364807,0.4393654,-0.18415049,-0.057200294,0.21667814,0.010450035,0.3477835,0.10985939,-0.19928423,-0.3346598,0.021861427,0.14266375,0.46064416,0.037748348,-0.16714227,-0.30362636,-0.115506604,0.68815964,0.3564877,0.13098195,-0.37518263,-0.006075026,-0.3289057,-0.10277816,0.65473783,0.6228625,-0.086783424,-0.08669892,0.4047196,0.68581355,0.35116237,-0.1150054,-0.030875802,0.0008890495,-0.39190835,-0.20554395,0.42887902,-0.1503578,0.4232622,-0.120318696,0.24797495,0.4006711,-0.19520581,-0.013293299,0.33081517,0.18503815,-0.28114194,-0.004545465,-0.45446473,0.32599124,-0.5330276,0.17965873,-0.46932077,0.7588485,0.091152385,-0.9385107,0.26642495,-0.5832691,0.075034045,0.20181918,0.5211155,0.68561566,0.5439318,0.030936662,0.9106263,-0.28773293,0.095002666,-0.13320166,-0.22735457,-0.015228438,-0.18082812,0.104725495,-0.5004972,-0.2724505,-0.024597203,-0.05085229,-0.21730156,0.37718698,-0.38577282,-0.4125883,-0.02847394,0.6443995,-0.2522911,0.16840021,0.95100576,1.1309191,0.9269148,0.11244647,1.281567,-0.10341612,-0.27550915,-0.19472705,-0.16755685,-0.87008154,0.4285615,0.31015188,-0.32874078,0.7717148,0.073299125,0.15293176,0.1304463,-0.521423,0.09984903,-0.09128497,0.1729987,-0.24257293,0.11687976,-0.54713,-0.45264387,0.007622838,0.13808343,0.2762645,0.2090543,-0.2512135,0.43176222,0.32912812,1.3145926,-0.36409396,0.22100517,0.12619765,0.43272185,0.10349462,-0.16888115,-0.26657835,0.1515481,0.4785379,0.09554714,-0.5223533,0.10795655,-0.121272825,-0.26416948,-0.13744889,-0.39117506,-0.15682188,-0.1639045,-0.18789022,-0.079004504,-0.27736652,-0.7565898,0.24809685,-2.4704108,-0.15481874,-0.15950415,0.40146118,-0.49920464,-0.28072724,-0.16544336,-0.5672564,0.48047733,0.24032691,0.46899194,-0.6161157,0.35044274,0.66263217,-0.58454776,0.07439085,-0.59793216,-0.1080729,-0.0025948018,0.4511841,-0.011551207,-0.10618514,0.07094289,0.4096643,0.38719052,0.29993922,0.099609375,0.46002093,0.42732725,0.04577586,0.5162869,-0.10584577,0.40407056,-0.48468548,0.0018681601,0.34738332,-0.48011866,0.12324731,-0.2619319,0.22022429,0.5486309,-0.6750274,-0.45457926,-0.6303172,-0.31060338,1.3427039,-0.3739241,-0.54965746,0.014967266,-0.20722571,-0.32425177,-0.08282907,0.6067168,-0.36810392,0.073105775,-0.75810784,-0.38299438,-0.2175239,0.35326132,-0.06628455,0.14514004,-0.77709013,0.69399804,-0.05522763,0.62444144,0.32411218,0.27435362,-0.27743426,-0.49866533,0.28747043,0.977132,0.53522146,0.064223304,-0.27271515,0.007824814,-0.4142694,-0.043162882,0.061784625,0.6789015,0.6668886,-0.19995423,-0.050736587,0.4281335,-0.0999581,0.33044544,-0.063149214,-0.40468273,-0.46975765,-0.09856184,0.6239008,0.5652459,0.010597503,0.27655464,-0.13722274,0.2507549,-0.36356756,-0.3292231,0.675162,0.7432084,-0.17174128,-0.28184095,0.6713022,0.5479496,-0.26444504,0.57771426,-0.6829409,-0.34742147,0.29055625,0.022846157,-0.61901647,0.23055954,-0.25157598,0.29839548,-0.9127817,0.21054327,-0.42114776,-0.48048234,-0.52500576,0.06718313,-2.0878968,0.14700468,-0.12678818,-0.35181093,-0.35033664,-0.29888123,0.1572409,-0.6048646,-0.8104738,0.2798741,-0.08706047,0.7927637,-0.08078467,0.07206604,-0.13684082,-0.44890085,-0.4955542,0.19952507,0.06100591,0.3844537,-0.12613514,-0.2802712,-0.09939269,-0.09916212,-0.37061954,-0.03196333,-0.5720914,-0.3667887,-0.20706244,-0.6675687,-0.37562996,0.62393534,-0.12516592,-0.013084319,-0.19048227,0.007913893,0.04418995,0.4638227,-0.06606686,0.28537565,0.2590149,-0.28268808,0.06556736,-0.12707938,0.38111883,0.18409558,0.23095004,0.41799498,-0.41203722,0.34879938,0.41634983,0.8114077,-0.072843835,0.8602109,0.23481897,-0.104405805,0.35384703,-0.3085001,-0.4782055,-0.5027281,-0.049498785,0.21686044,-0.3841023,-0.43794426,-0.21614878,-0.24192336,-0.91649187,0.4377432,0.2226009,0.5258926,-0.024551356,0.13217938,0.49323636,-0.03142901,0.053925622,-0.00844084,-0.2225655,-0.43208537,-0.21616678,-0.70602095,-0.33862203,0.054510463,0.84715205,-0.091122285,0.21521664,0.29956573,-0.3570351,0.4174296,0.03728026,0.0642758,-0.054050278,0.3057058,0.21078233,-0.48098612,0.45695096,0.15626444,-0.11741636,-0.46518523,0.25678188,0.9162982,-0.50634754,0.40091237,0.25267485,-0.10631974,-0.71336573,-0.5298388,0.10931133,0.009850049,-0.07893242,0.32450065,0.38482746,-0.59169877,0.28465325,0.11771176,0.037228465,-0.7522877,0.67238295,0.012695776,-0.14879715,-0.12774917,0.59777683,-0.015801072,-0.04456325,0.0348942,0.16906996,-0.305636,0.2428166,0.17630407,0.004952973,0.34770894,-0.11515812,-0.17620333,-0.7973487,0.2462533,-0.78715706,-0.16910365,0.527073,0.06485429,0.0043833377,0.18788962,0.1794242,0.3629048,-0.3355391,0.2685631,0.035801377,-0.20231406,0.45580617,0.41480976,0.5287514,-0.4884122,0.47498608,0.10877703,-0.021510303,0.06885572,0.14744952,0.43018237,0.16325662,0.2431953,0.03845657,-0.22135803,0.118329905,0.47949442,0.30120865,0.33847532,0.23834357,-0.022995522,0.11305752,0.10833498,0.4527811,-0.28407854,-0.7903619,0.022503257,-0.035225984,-0.104141615,0.265548,-0.026106268,0.1856423,-0.17214063,-0.38123688,-0.07560634,0.17049168,-0.34592617,-1.4952619,0.3179761,0.13838659,0.7647244,0.39637935,-0.018302932,0.07473327,0.5809663,-0.1627912,0.21781917,0.31681257,0.13786218,-0.48829108,0.5083455,-0.4963625,0.44003925,0.13119265,-0.045164682,-0.027799796,-0.13767758,0.39196077,0.7857641,-0.15559027,0.0029275685,-0.22903499,-0.24822387,0.06642981,-0.4066801,0.28556228,-0.5288402,-0.42080402,0.60783756,0.3593406,0.53768235,-0.07251498,0.0041098474,-0.1370976,-0.081184946,0.3437666,0.10825884,-0.034021966,0.050613426,-0.7198932,-0.11231766,0.28850633,-0.015518224,0.07370058,-0.026085097,-0.17706116,0.017560259,0.0045009553,0.09659323,-0.022594359,-1.1304651,0.06592016,-0.3736895,-0.20367172,0.03548334,-0.3135037,0.15183334,0.18715768,-0.16561708,-0.21332045,0.12537923,0.3483165,0.7057503,0.09353855,-0.19988477,-0.40284324,0.22521563,0.13512579,-0.28775397,0.13967682,-0.018939376,0.09459303,-0.4716429,0.24546047,0.059551775,-0.51361513,0.19599423,-0.16861928,0.014470262,0.80172795,-0.0953051,-0.020001601,-0.026640683,-0.057659052,-0.22446966,-0.2049882,-0.23690858,0.102831244,0.32182983,0.004868096,-0.07841999,0.06449177,-0.17075051,0.275748,0.36734223,0.5901536,0.5969374,0.07699593,-0.620727,0.07133659,0.17078848,0.4343834,0.19109218,-0.12243547,-0.3890132,-0.4416915,-0.4650902,0.5329238,-0.11313865,0.20485592,0.10571854,-0.028193105,0.67333347,0.050835203,0.9507904,0.047911488,-0.30411947,0.0014045,0.5626393,-0.07295178,-0.3287595,-0.4383226,1.1264608,0.48370814,-0.24854684,-0.053441633,-0.37153408,-0.14173767,0.07343421,-0.28197172,-0.12903732,0.020011375,-0.6069977,-0.25750026,0.19351871,0.22851832,-0.09705434,-0.20791188,-0.08960671,0.52519697,0.10548429,0.5024853,-0.51265633,-0.07639821,0.36597276,-0.13154514,0.1309512,0.26522082,-0.5382803,0.17770998,-0.7166911,0.22031322,-0.34005585,0.19734046,-0.14953366,-0.42110515,0.1937951,0.04669714,0.51443064,-0.46475387,-0.55692774,-0.17970341,0.41601866,0.10872233,0.17815922,0.5927369,-0.17945682,0.22629806,0.0701633,0.47766042,1.0049372,-0.03131751,0.26345944,0.24274102,-0.49023324,-0.74829936,0.016696783,-0.3159749,0.4567728,-0.19544958,-0.2871253,-0.41298074,0.25806805,0.13697858,0.043355115,0.07852618,-0.7612727,-0.36406586,0.31283173,-0.24792945,-0.18334684,-0.405006,-0.12492429,0.48935977,-0.08639847,-0.43534058,-0.086647436,0.17421757,-0.12313707,-0.47417125,-0.1894739,-0.1871753,0.07391742,-0.09821047,-0.42313272,-0.1278185,-0.016205799,-0.41115847,0.064016186,-0.136251,-0.38598794,-0.06544376,-0.17759626,-0.162786,0.8478735,-0.26457727,-0.014297152,-0.30857,-0.49381813,-0.8094263,-0.42829123,0.013556624,0.085150264,-0.0125121595,-0.6914198,0.10099103,-0.418711,0.16659507,0.04882874,-0.3479873,0.39839706,0.23614898,0.63207245,-0.09246204,-0.9035495,0.5021986,0.13379805,-0.15070382,-0.5634321,0.729627,-0.04998662,0.57467353,0.12245921,0.07473238,-0.07440969,-0.83421624,-0.009074444,0.039690457,-0.11056165,-0.7649575,0.33720097,997 -993,0.39756665,0.27731147,-0.78607666,-0.08212136,-0.47397792,0.0643737,-0.38434187,0.015433874,0.40972868,-0.35787094,-0.10491148,0.0065601934,-0.12078697,0.27522588,-0.12174919,-1.0797276,0.093802996,0.14281395,-0.5328403,0.38705003,-0.5165094,0.5372785,0.17836574,0.66937137,-0.031363327,0.41609526,0.36667764,0.08685541,-0.19070475,-0.7058481,-0.1272395,-0.034163754,-0.57891,0.27625903,-0.08235865,-0.45687425,0.060658474,-0.51077294,-0.25281948,-0.610625,0.45349038,-0.7087534,0.5884344,0.063107684,-0.2613454,-0.42770597,0.5557721,0.22943984,0.06989898,-0.038619194,0.41655982,-0.7134083,0.05868584,-0.60086304,-0.5784041,-0.7303596,-0.4888862,0.038439017,-0.5879333,-0.38121355,-0.23515317,0.32024425,-0.22212774,-0.09334389,-0.18315399,0.60662025,-0.325762,0.18242046,0.15393801,-0.61323714,-0.07184017,-0.6293938,-0.2493234,0.034586623,0.33540595,0.110724114,-0.28869092,0.21635702,0.017105414,0.38879156,-0.032956976,-0.44437426,-0.49967474,-0.0990732,0.028166719,0.58779544,-0.34503564,0.09192559,-0.28306735,-0.026212467,0.7337361,0.3003205,0.09226999,-0.18913095,0.10278647,-0.24667501,0.04396734,0.79019696,0.43239552,-0.38328907,-0.045283,0.20253496,0.17014685,0.2945252,-0.29356372,-0.122157656,-0.1786784,-0.48543262,-0.11498531,0.39366037,-0.05458888,0.29339096,-0.0975239,0.09967011,0.82466006,-0.2731552,-0.13650991,0.22171512,0.11248937,0.51308906,-0.024505382,-0.051088855,0.58198905,-0.41570267,-0.17880245,-0.35261896,0.7376846,-0.11370405,-0.6218419,0.18361354,-0.6526778,0.07748392,0.050828025,0.6858849,0.510802,0.51113725,0.14851822,0.8162026,-0.28942347,0.24289761,0.23301476,0.015516692,-0.10049742,-0.1491425,0.09785321,-0.44642618,-0.0929553,-0.0032783416,0.03435472,0.48951107,0.4909704,-0.5004966,-0.30814442,0.19186811,1.086699,-0.18079121,-0.14467455,0.78197604,1.4016739,1.0015036,-0.23563512,0.94348377,-0.039416656,-0.19039512,-0.7035248,-0.083616085,-0.29680017,0.1541267,0.2131444,-0.35417998,0.57953084,-0.14293998,0.08951315,0.16420904,-0.12333766,-0.2647109,0.14428028,0.27268493,0.06745389,0.026619239,-0.724828,-0.55767035,0.27738452,-0.14730878,0.45871434,0.6350984,-0.4727068,0.74176455,-0.3262193,0.66726047,-0.024223315,0.34703028,0.17565928,0.41966882,0.15329748,-0.10158054,0.046712533,0.21560329,-0.18370311,0.19654962,-0.3783007,0.016664615,-0.5372001,-0.29281956,-0.303668,-0.35459366,-0.36449188,0.07027421,-0.15487462,-0.41713634,0.029529534,-0.2204793,0.2141408,-2.2448685,-0.011656238,-0.12099758,0.49479347,-0.14108217,-0.42059472,-0.22561598,-0.32806224,0.33869383,0.22167632,0.7559386,-0.35912845,0.005596724,0.33401075,-0.56198967,-0.35493046,-0.5590951,0.27712318,0.111937575,0.6837106,-0.3149954,-0.28657576,-0.064982295,0.1624995,0.71484774,0.30254883,-0.03106561,0.3056937,0.6166683,-0.30668414,0.34471425,0.08949745,0.61427635,-0.48515898,-0.44540945,0.38589042,-0.74362206,0.53807443,0.009062956,0.05560206,0.4232045,-0.3042888,-0.9321654,-0.22733273,-0.036000032,1.1570857,-0.2330842,-0.87615466,0.0031322737,0.28814858,-0.35967016,-0.012868378,0.6794202,-0.12486626,0.3557572,-0.4184338,-0.009169953,-0.39751616,0.42496905,-0.08158979,0.07450088,-0.27227658,0.7215774,-0.17518504,0.15739149,0.23875353,0.25117412,-0.79649425,-0.44290555,0.18158752,1.203698,0.37336925,0.14568734,-0.16308793,-0.076185465,-0.09179035,-0.461039,0.16435513,0.8094418,0.7177091,-0.14251763,-0.033096127,0.6023586,-0.2668153,0.052841112,0.06479587,-0.51150954,-0.25829205,0.11870527,0.9582096,0.7143102,0.053023834,0.5992052,0.17904358,0.43532255,-0.31317538,-0.3817607,0.3327773,0.52486134,-0.24980743,-0.44595745,0.71920025,0.34429723,-0.6750702,0.5781633,-0.6766704,-0.733487,0.5768238,0.039311565,-0.6406052,-0.0915551,-0.34165165,0.11137177,-0.6051771,0.6636174,-0.09526406,-0.85771745,-0.4978801,-0.2905622,-1.4484204,0.3172012,-0.42678395,0.037789274,-0.23132092,-0.092072755,-0.0065180194,-0.49038887,-0.59703594,-0.04086657,0.11841917,0.7087403,-0.39549005,0.11292675,-0.22962104,-0.45281267,0.05784158,0.63279927,0.40105045,0.35111856,-0.10618479,-0.0467826,0.2982794,-0.13532332,-0.32862788,-0.24798353,-0.6282324,-0.732758,-0.06477001,-0.7563925,-0.11919979,0.9783589,-0.79645854,0.084720425,-0.4088713,0.30148485,0.17372243,-3.4557448e-05,0.3401991,0.45254612,0.2903267,0.03649278,-0.05665018,-0.24931727,0.28740188,0.18419822,0.63855445,0.46366602,0.23249102,0.21259615,0.27968037,0.8180987,0.3175491,0.8208535,-0.18664037,-0.1076143,0.11109568,-0.44796085,-0.5628538,-0.6458271,-0.27099946,0.2983259,-0.4550299,-0.49910274,-0.14588925,-0.5003481,-0.89694893,0.75536245,0.24821281,0.23177259,-0.2954701,0.623928,0.36509612,-0.3375929,-0.0918506,-0.017449796,-0.07213302,-0.40612432,-0.24992882,-0.74762726,-0.44290555,0.044890437,0.6884725,-0.13196252,0.013792263,0.49259287,-0.22049874,0.013438514,0.07775593,0.07004734,-0.1382726,0.31756642,0.25713432,-0.45333713,0.2994567,-0.43765712,0.15362503,-0.47350132,0.11467976,0.75111634,-0.5817702,0.5323647,0.66892684,0.110993,-0.410307,-0.674462,-0.25061518,0.2606374,-0.055743296,0.3809172,0.25881276,-0.41754162,0.41816428,-0.022243394,-0.26672694,-0.5662255,0.38016546,0.0053087687,-0.3700253,0.18273842,0.64978844,-0.012740678,-0.15119869,-0.15742654,0.3400499,-0.39489576,0.21151347,0.10332769,-0.095778,0.35944,-0.1903302,-0.6499897,-0.82549274,0.28387964,-0.6671157,-0.43325287,0.41787633,0.08112207,0.11278471,0.34369087,0.20858015,0.44340694,-0.16767073,0.18096942,-0.38980275,-0.31790844,0.69838035,0.3575604,0.7406788,-0.7448201,0.6259326,0.1637319,-0.13503094,0.40053135,-0.0489311,0.56742024,-0.10378325,0.3631036,0.05032232,-0.09370711,-0.22380723,0.31648198,0.2899215,0.31315288,0.18996535,-0.019055042,0.25280118,-0.0111497305,0.08944878,-0.08902796,-0.5842525,-0.043967623,0.09222497,-0.108671404,0.38224703,0.08347164,0.35080406,-0.12874252,-0.033200547,0.39465165,0.17922606,-0.32395124,-1.064888,0.633578,0.3080874,0.63979995,0.033258326,0.2791771,-0.30287138,0.8214821,-0.18942456,-0.2036143,0.39121518,0.16744155,-0.40563756,0.5895618,-0.46164003,0.7726411,-0.30208862,-0.039944906,0.016247451,-0.055062827,0.35159948,1.0049623,-0.20982003,0.091427155,-0.1582021,-0.36693573,-0.22431943,-0.38528836,0.4298179,-0.42190024,-0.4318701,0.8615558,0.11017993,0.29456663,-0.27515405,0.12627941,0.13823026,-0.10367153,0.20847511,-0.06619109,-0.005047911,0.08421431,-0.5677087,-0.10807119,0.4273092,-0.31117058,-0.10378425,0.19120935,0.18309474,0.21228693,0.096841685,-0.10256008,-0.21316713,-0.4915584,0.14381617,-0.5034292,-0.7188088,0.0069800583,-0.4079429,0.120467715,0.16990809,0.04726659,-0.24074653,0.5062134,0.5122059,0.6222694,0.14250077,-0.25270307,-0.41115883,0.119533285,0.10361171,-0.2340748,0.1602919,-0.32592598,0.4935557,-0.5911615,0.4948084,-0.609743,-0.45634657,-0.5397597,-0.38711923,-0.05935702,0.34825653,-0.030107941,-0.10453165,0.3205507,-0.38996607,-0.13847998,-0.11067556,-0.46482384,0.23631126,-0.11726883,-0.4522564,-0.37368283,-0.17955539,-0.48407376,0.10404926,-0.13869946,0.38551474,0.378173,0.20574069,-0.3052882,0.2360379,-0.12801073,0.4966257,0.07239012,0.21523608,-0.29251805,-0.37031898,-0.47654215,1.0137758,-0.054750342,0.12528415,0.21384008,-0.20631537,1.0269027,-0.15406847,1.3147321,0.0059945583,-0.34274173,-0.08033866,0.64921385,-0.08047338,0.0015672842,-0.35126567,1.5639795,0.380495,-0.16312689,0.004263419,-0.55758953,-0.062150173,0.24731046,-0.42207587,-0.41797632,-0.228341,-0.3690035,-0.052292302,0.23316973,0.18752111,0.15838706,-0.2196939,0.13231237,0.29260984,0.31249702,0.14665967,-0.5763614,-0.29295403,0.50368565,0.20459527,-0.19232069,0.15082465,-0.2320367,0.36967564,-0.78055525,0.39801747,-0.7315871,0.23157723,0.015773641,-0.6350033,0.22277771,0.10541018,0.37625155,-0.5364892,-0.08452935,-0.25083074,0.20686984,0.503126,0.15714547,0.6016743,-0.24359639,-0.07815831,-0.11540866,0.5764604,1.5112481,-0.059823718,-0.13779579,0.0574533,-0.3094112,-0.80426353,0.13243651,-0.63433266,-0.32694215,-0.1762482,-0.5236935,-0.2600395,0.19689684,0.013012052,-0.11553572,0.052801184,-0.60770226,-0.05901226,0.10391839,-0.24400115,-0.30612236,-0.2803964,0.36175746,0.73156345,0.028206421,-0.36260697,0.04238091,0.51170015,-0.17490667,-0.6276795,0.3568836,-0.3337813,0.20235175,-0.18218537,-0.38572183,-0.051696308,0.040548906,-0.2694809,0.2839897,0.3892533,-0.26974952,-0.035936147,0.028120093,0.2391351,0.44965082,0.00851904,0.3620493,-0.41055727,-0.6069392,-0.9410538,-0.37138268,-0.3401929,0.08157296,-0.093507186,-0.49440315,-0.38699234,-0.5475285,-0.16751832,0.061952896,-0.5250487,0.16849233,0.15430555,0.59620106,-0.65958595,-1.0770626,0.23968904,0.2563463,-0.36252198,-0.44150767,0.23728459,-0.24978751,0.7060531,0.119367786,-0.16867574,0.24400398,-0.65125585,0.33923706,-0.28081048,-0.2890399,-0.86653507,0.24538289,25 -994,0.57579285,0.39263284,-0.6241644,-0.46179184,-0.50873446,-0.04027979,-0.27067104,0.15748627,0.3711079,-0.37041405,0.09770458,-0.13215324,-0.07449428,0.31293836,-0.24493249,-1.0964175,0.20656958,0.16650735,-0.5325617,0.07808598,-0.44073492,0.51349366,0.10460528,0.56313515,-0.19041902,0.47157633,0.4140873,-0.20561759,0.054047104,-0.42206472,-0.0203025,0.012871299,-0.7337308,0.3874849,0.059697773,-0.23945257,0.06307718,-0.40550447,-0.078235306,-0.48788008,0.2528404,-0.7633672,0.65399265,0.08392179,-0.32752603,-0.5223586,0.35105467,0.1800056,0.07044698,-0.029108904,0.4670955,-0.62778777,-0.11934572,-0.18306941,-0.17307538,-0.8106103,-0.3657483,-0.37014544,-0.62300134,-0.3713863,-0.5383497,0.2756843,-0.47274384,-0.20913237,-0.14658526,0.4141433,-0.5079924,-0.057169292,0.25536057,-0.6738021,0.25628394,-0.40825498,-0.1277581,-0.09153928,0.3330209,-0.081256405,-0.27198157,0.36227125,0.36082304,0.35990313,0.11222887,-0.29013455,-0.14215122,-0.31954664,0.29042217,0.7024331,-0.37025234,-0.21182685,-0.29467005,-0.09448079,0.24462551,0.1221489,0.16995281,-0.4275807,0.24487288,0.10588297,-0.00299916,0.8500166,0.51514304,-0.30876514,0.05845029,0.4159586,0.12911293,0.19837734,-0.14224154,0.39915144,-0.13193876,-0.46229732,-0.25762984,0.053592525,0.023218526,0.40025288,-0.08087497,0.15890795,1.1289351,-0.31019974,-0.05049205,0.12686388,-0.10517331,0.365934,-0.13194078,-0.05784583,0.44722047,-0.58681786,0.05775408,-0.2946383,0.8787167,-0.0139818,-0.79038674,0.31308544,-0.49993473,0.011580007,-0.15072621,0.8896024,0.71403706,0.50304806,0.11746921,1.1801171,-0.5599861,0.23706873,0.3771642,-0.35259682,0.11579479,-0.051433418,0.4673571,-0.42910558,-0.014880139,0.08455389,0.18325353,0.28563812,0.35260856,-0.5443529,-0.31205192,0.1630952,0.91037726,-0.40715513,-0.2120393,0.95773125,1.2484515,0.7533131,0.006349004,0.97315246,0.14602868,-0.26953682,-0.22988752,0.10098382,-0.38412887,0.24759786,0.30702493,0.18693548,0.10601635,0.020852739,0.16641444,0.34499547,-0.34188306,-0.32921445,0.047759183,0.45801437,-0.017956667,-0.40608862,-0.66828114,0.029457608,0.39186805,-0.027080558,0.121831566,0.39216074,-0.3799101,0.40397966,-0.21558481,0.7432883,0.12902345,0.18075234,-0.060736783,0.60339564,0.116050616,-0.3521954,0.14367123,0.08811601,0.11538262,0.028119395,-0.44998196,0.075528204,-0.35344198,-0.5793956,-0.28793138,-0.4817159,-0.20420162,-0.29752403,-0.023368742,-0.16665046,0.093294196,-0.24811918,0.33693266,-2.1673138,-0.18451054,-0.2634863,0.51774323,-0.13315378,-0.21609075,-0.15847342,-0.4125922,0.42652068,0.22546095,0.6616042,-0.405197,0.51319915,0.54502136,-0.56819165,-0.25107855,-0.5861108,0.17378299,-0.017195616,0.43421203,-0.11263561,-0.3727768,-0.05965908,0.33167943,0.8455838,0.45623302,0.0935765,-0.03678753,0.6244301,-0.2075718,0.526811,0.04501239,0.73993236,-0.16225305,-0.22919999,0.17320259,-0.6057161,0.17012517,-0.41443357,0.08477494,0.3479053,-0.330672,-1.2060131,-0.5252574,-0.4425198,1.0448856,-0.44391173,-0.7367007,0.39068332,0.327287,-0.36208034,0.30834442,0.62674016,-0.15779927,0.3596586,-0.53860545,0.17960078,-0.44844946,0.08562132,-0.100354336,0.26252067,-0.5697678,0.78476185,-0.3801741,0.47172785,0.08294442,0.33595717,-0.5771211,-0.26897117,0.18132883,0.9681718,0.49777567,-0.05682183,-0.067549795,-0.050765462,-0.24347371,-0.5642178,0.14879285,1.0582422,0.9355797,-0.03171201,0.03631947,0.35230854,-0.2650443,0.103769414,-0.01164589,-0.63564396,-0.090079695,-0.14423212,0.8399482,0.53826076,-0.03350304,0.55456144,0.08450356,0.12740067,-0.26988202,-0.63000596,0.4056246,0.42551315,-0.18489467,-0.2543242,0.81531626,0.18851279,-0.6178006,0.6282522,-0.66667783,-0.5570177,0.5497945,0.041378524,-0.67505634,-0.15766723,-0.30954015,0.076899946,-0.69133556,0.46128824,-0.14911398,-1.3466865,-0.022820227,-0.32792777,-3.0787992,0.19031426,-0.26892853,-0.0022674368,-0.23991673,-0.18047036,0.2428466,-0.41265473,-0.6692032,0.038860198,-0.035119906,0.7619801,-0.19607629,0.1434018,-0.18475357,-0.279489,-0.05313997,0.5777078,0.012158599,0.2466401,0.056837585,-0.16461343,0.27100176,-0.1789036,-0.5830886,-0.01016687,-0.5209252,-0.85214996,0.07950504,-0.7055326,-0.18467799,1.0181078,-0.68639827,0.06443389,-0.27123967,0.17165099,-0.16022396,0.22899383,0.15144597,0.49890667,0.17788874,0.039720163,-0.24170811,-0.06002128,0.3122683,0.11610893,0.8627029,0.1781525,-0.12135865,0.11111244,0.68666625,0.5566951,0.20679706,1.0986606,-0.12233644,0.049862046,0.13706793,-0.28018463,-0.36619616,-0.68073666,-0.562975,-0.013317453,-0.66778183,-0.4816209,-0.0799602,-0.40300357,-0.9082507,0.3780894,0.29079577,0.39782676,-0.325205,0.11387987,0.20280671,-0.36377886,-0.1837417,-0.036281984,-0.059247177,-0.6223468,-0.07638862,-0.83368725,-0.55590713,-0.015006672,0.79421735,-0.2586211,-0.060942307,0.040797856,-0.25665373,0.17508917,0.068811856,0.23547132,-0.102068216,0.3806692,-0.071736336,-0.83320165,0.30850717,-0.6526064,0.26157096,-0.9144388,0.07278742,0.78582674,-0.54354936,0.66623414,0.5778442,0.28255188,-0.3115414,-0.7233772,-0.27164456,0.14662191,-0.13255882,0.5820904,0.052228026,-0.60219306,0.46955532,0.016144838,-0.17290431,-0.49285418,0.70139277,-0.03891565,-0.04679576,0.3472978,0.5296482,0.13396332,-0.23850553,-0.38179955,0.35931933,-0.648632,0.57722926,0.24142939,-0.0078007644,1.0404968,-0.1588028,-0.5562652,-0.8205823,-0.40438235,-0.8001878,-0.31051928,-0.040398,-0.2346006,-0.040400464,0.42736304,0.3293172,0.39266777,-0.4136237,-0.053284306,-0.3233012,-0.49852085,0.5257313,0.558529,0.61373925,-0.70468193,0.7500071,0.36942276,-0.22807969,0.06390828,0.06270815,0.73328453,0.013833786,0.5015759,0.011222088,0.0074777505,-0.2328963,0.7026419,0.21340401,0.2643752,0.19095014,-0.17007726,0.43167603,0.08952211,0.31397098,0.18671864,-0.6990216,0.0049856603,-0.31557202,-0.05203134,0.5267073,0.41317046,0.40710604,-0.05217061,-0.19259869,0.34588507,0.16243425,-0.2142933,-1.4391541,0.85947156,0.48603976,0.81360704,0.28216106,0.01614184,-0.048271805,0.62145954,0.0042843157,0.08061377,-0.038152907,-0.08102888,-0.28058988,0.5869276,-0.66049784,0.48229223,-0.16200973,0.102007926,0.27498358,0.06618112,0.4541502,1.1898907,-0.09636601,0.11747476,-0.09353235,-0.24952242,0.03722406,-0.24250595,0.18623847,-0.36849737,-0.3144561,0.92870957,0.36320552,0.12703565,-0.12776217,0.049162567,0.1330964,-0.19066885,0.027026024,-0.094106376,-0.32173163,-0.033667445,-0.71255374,-0.3565061,0.5749077,-0.089617014,-0.025057957,0.15820463,-0.16171384,0.42331254,0.12611914,-0.09063937,0.03295754,-0.50869846,-0.113888025,-0.43302807,-0.49250582,-0.0035169125,-0.37478665,0.27029455,0.20673858,0.04212807,-0.007926173,0.3690656,0.3925658,0.5604155,0.27822304,-0.51958686,-0.56003153,-0.23444642,0.26732767,-0.43301338,-0.03289014,-0.46116626,0.230948,-0.6111107,0.5716293,-0.48072544,-0.3349873,0.07334781,-0.28415427,-0.017799335,0.32608417,-0.23838824,-0.10703871,0.28754702,-0.33006388,-0.12605771,0.0808423,-0.49659517,0.11277975,-0.17501378,-0.3547348,-0.14874251,-0.13367067,-0.349346,-0.07258526,-0.050699573,0.11915472,0.36062938,0.17108127,-0.24942255,0.17930113,0.098569624,0.61184394,0.0060473285,0.22950009,0.12889722,-0.4175825,-0.525475,0.59361106,-0.11933812,0.17711255,0.24293727,-0.153138,0.7088328,0.16325861,1.2573098,0.05045565,-0.34423432,0.037948117,0.58303803,-0.093516946,0.05429436,-0.34397012,1.3887826,0.61298996,-0.03539993,0.016826043,-0.83400536,-0.18866628,0.4016071,-0.35417107,-0.5199834,-0.21622702,-0.9629608,-0.101458974,0.1927857,0.13292319,0.13975558,0.046602126,0.029306611,0.32319042,0.31202137,0.19723265,-1.0318229,-0.13818748,0.15637872,0.45569822,-0.05692431,0.067015395,-0.15161173,0.4237901,-0.88394535,0.36060527,-0.54090106,0.061235562,-0.30538908,-0.43283147,0.08590684,0.015182164,0.44498095,-0.09518424,-0.1380284,-0.07687959,0.4630511,0.42362595,0.13153413,0.95591384,-0.17129117,-0.16281933,-0.04899483,0.47325504,1.422895,0.16168065,0.17258963,0.5063843,-0.3310565,-0.6992732,0.1848726,-0.61804557,-0.25669336,-0.15231746,-0.54058343,-0.09186987,0.1822592,-0.12688719,-0.1981079,0.08832199,-0.36893016,-0.30109954,0.208439,-0.28582305,-0.35117352,-0.16190985,0.29064375,0.83133507,-0.18102472,-0.17269225,0.02990136,0.3839536,-0.37374353,-0.94452393,0.20236324,-0.13440578,0.48394755,-0.23916271,-0.57139754,-0.07408657,0.015041782,-0.47926924,0.42844453,0.32091957,-0.22396408,0.21575348,-0.06263876,0.038791075,0.6265319,0.20929578,0.29419383,-0.6862242,-0.5268376,-0.93063015,-0.24649042,-0.41482237,0.15173395,-0.20242566,-0.42799604,-0.25232068,-0.4286128,0.28900862,0.005236202,-0.8413091,0.08809164,0.025491923,0.7686743,-0.2576883,-1.323286,0.09993516,0.33284405,-0.068818465,-0.49363428,0.5271208,-0.15285106,0.86408544,0.19372559,-0.058212537,0.060859993,-0.50933933,0.37486643,-0.21177876,-0.1931147,-0.71045285,0.12275168,26 -995,0.55699563,-0.6950253,-0.67488045,-0.15226059,-0.3026416,-0.12844613,-0.41190624,0.5516479,0.053594403,-0.32936826,-0.39628664,0.011113799,0.06724204,0.6881106,-0.16064517,-0.6782664,-0.19009805,0.07057956,-0.8136681,0.85614884,-0.43238553,0.16600464,-0.010240038,0.5013626,0.39161775,0.18978818,0.45579427,0.12800436,0.248451,-0.2033941,0.25991896,0.106607355,-0.71999955,0.31896168,-0.26314992,-0.6094769,-0.24042463,-0.75794774,0.09987615,-0.884205,0.07895878,-0.9283421,0.38615614,-0.0011434588,-0.4102519,-0.2956701,0.3585497,0.4525355,-0.26524767,-0.00052795146,0.37447673,0.023988105,-0.3604616,0.09762202,0.08914571,-0.40148452,-0.6461557,-0.1910927,-0.7178198,-0.24085575,-0.05331788,0.11919562,-0.322807,0.021280117,-0.28229028,0.31627384,-0.52856594,-0.39206123,0.29339048,0.09017591,0.3912333,-0.711358,-0.18955234,-0.35845575,0.51363546,-0.036761932,-0.41286775,0.286816,0.3660103,0.47034448,0.31502363,-0.29163033,-0.33874738,-0.2669124,0.43066365,0.5169554,0.13373148,-0.35022154,-0.5591947,-0.14798686,0.3396891,0.40313685,0.1517474,-0.48130915,0.032655902,-0.29432705,-0.13539986,0.7154521,0.38433135,-0.26938853,-0.32057285,0.2777964,0.8944461,0.7173362,-0.38832647,0.14689143,0.06623479,-0.59940314,-0.21753147,0.33153474,-0.05687494,0.547868,-0.16173322,0.11604447,0.7139933,0.13360305,-0.11407578,-0.048333935,0.038459398,-0.43834293,-0.40069753,-0.5369895,0.29009566,-0.50742126,0.40957597,-0.31619507,0.7272961,0.15426067,-0.9139335,0.35672247,-0.68407845,0.25614148,-0.011329048,0.59575,0.79840046,0.3554128,0.39915565,0.8606144,0.020472076,0.23759812,-0.11375848,-0.13115498,-0.0819278,-0.44631338,-0.073144995,-0.6599725,0.3315039,-0.39010713,0.1971948,-0.11419389,0.6754955,-0.3850257,-0.32239687,0.18728249,0.53787917,-0.23656909,-0.04258379,0.8549943,1.1117793,1.5539304,0.19754162,1.2585839,0.2086873,-0.25110298,0.08316839,0.00014599826,-0.88667035,0.18325312,0.47905242,0.27221256,0.51380944,-0.2228276,0.059284847,0.57499796,-0.42641538,0.290968,0.17333817,0.38511452,0.10273846,-0.18623513,-0.6639544,-0.2390696,0.08023385,-0.10373202,-0.1520586,0.3424704,-0.08748559,0.34104148,-0.008918153,1.2510338,-0.30720317,0.018468112,0.08366121,0.44744137,0.23519972,-0.37525862,-0.21708538,0.11012917,0.50165963,-0.16627005,-0.8461952,0.27983665,-0.36435002,-0.40206343,-0.070563205,-0.37694004,-0.2862632,-0.13602132,-0.50461173,-0.01430833,-0.02507117,-0.35875526,0.37901673,-2.399098,-0.37386015,-0.40163916,0.18523921,-0.26443753,-0.14457351,-0.22979842,-0.45829624,0.44591337,0.21796146,0.70859957,-0.5790788,0.6444143,0.6247245,-0.70016235,0.006102403,-0.73191494,-0.1879596,-0.011400592,0.5003415,-0.049146313,-0.08472614,0.13668767,0.5296935,0.7939462,0.16084148,0.2642709,0.6488914,0.39312556,-0.018562084,0.7282517,-0.1889047,0.501252,-0.8004592,-0.17136094,0.23188268,-0.35430688,0.5306496,-0.18043776,0.14751299,0.7871266,-0.7667348,-1.1444613,-0.63973385,-0.64249027,1.063975,-0.5201544,-0.40281704,0.30530643,-0.14271706,0.12713245,0.13978454,0.6324241,-0.08219153,0.19573489,-0.64750165,0.006260026,-0.023936847,0.115530305,-0.09110204,-0.037532493,-0.44604662,0.9907609,-0.14681236,0.8303633,0.5519229,0.28470004,-0.17580634,-0.3708503,0.1805533,0.7134441,0.43027574,-0.018741956,-0.4276151,-0.14286363,-0.527288,-0.21280149,0.19153064,0.5703981,0.7691168,-0.28078198,0.24341877,0.20648678,0.05983682,0.089920595,-0.33729568,-0.33320615,-0.20652722,0.09138134,0.43967745,0.7518391,-0.11375186,0.32657456,-0.12977536,0.053769484,-0.13093401,-0.59433293,0.5493158,0.5848122,-0.25765947,0.084664606,0.6048546,0.72714674,-0.41938603,0.72996414,-0.6940274,-0.14115724,0.7663074,0.012115585,-0.36167207,0.19635968,-0.5166787,0.14865144,-1.1482991,0.1551841,-0.7432038,-0.39090002,-0.36819956,-0.0823759,-2.4026058,0.5098779,0.20896322,-0.2185318,-0.46170828,-0.09817477,0.21423185,-0.8835796,-1.2334197,0.28439558,0.0014020404,0.72433025,-0.33384255,-0.037880883,-0.2901051,-0.37692448,-0.1254109,0.40061158,-0.12328974,0.4712811,-0.21739198,-0.47106832,-0.057522163,0.02230876,-0.6060341,0.053459823,-0.6902856,-0.67427504,-0.10218503,-0.72673935,-0.26376092,0.5063166,-0.5643636,-0.09039564,-0.053465813,0.011870629,-0.21349488,0.2868602,0.06858183,0.42379862,0.19351083,-0.044190794,-0.1163498,-0.11130299,0.20997937,0.0193182,0.072526306,0.08449942,-0.22691737,0.27116367,0.7117149,0.89908767,-0.23583671,1.3333703,0.3591998,-0.0862135,0.2731198,-0.29569182,-0.105904736,-0.7583214,-0.27842987,-0.35887253,-0.37907255,-0.9944634,0.18884046,0.06257975,-0.8008177,0.6539552,0.100615144,0.50209755,-0.015664915,0.030789945,0.13471545,-0.18726413,0.063982196,-0.06730571,-0.14166856,-0.50859237,-0.4413498,-0.7249072,-0.54712933,0.004376332,1.0007554,-0.3189061,-0.14864731,-0.025146408,-0.56053066,0.22733876,0.25178927,0.02277506,0.34800196,0.32879755,0.27149218,-0.57900023,0.29303756,0.049127273,-0.1723563,-0.25488666,0.13017851,0.8198087,-0.6105975,0.7250518,0.30961567,-0.13167368,-0.26211846,-0.78771484,-0.15135215,0.20872556,-0.08144638,0.48550287,0.2215536,-0.8385656,0.5152788,0.35221767,-0.33713314,-0.9434208,0.7104258,-0.0795239,0.094135314,-0.24759547,0.5173484,0.17458399,-0.07069217,-0.405501,0.43583792,-0.31678098,0.20452087,0.18744291,-0.09663471,0.18338148,-0.09194191,-0.13993722,-0.77785534,0.056889575,-0.7375622,-0.17772667,0.5565288,-0.15059833,-0.17637768,0.23442872,0.28493214,0.29837433,-0.48840135,0.2475057,-0.034900177,-0.5361098,0.43323478,0.5999824,0.29968974,-0.29473975,0.56203973,0.23902996,-0.022884097,-0.031966764,-0.0062968964,0.16394655,-0.13170674,0.5519662,-0.1460477,-0.09166327,0.06117175,0.74877673,0.18874735,0.4989412,0.10614101,-0.2206865,0.3263723,0.22892506,0.57837176,-0.3122071,-0.4032385,0.30361447,-0.09457192,0.057206526,0.6633408,0.1375579,0.21454078,0.20672561,-0.044937715,0.06598774,0.31670123,-0.19887942,-1.6586514,0.48285213,0.16820158,0.8933701,0.9065707,0.08627624,0.024459004,0.34823155,-0.45633513,0.068773076,0.69441825,0.17239764,-0.4353958,0.87063605,-0.6763841,0.44867957,-0.34988892,-0.038778618,0.1842073,0.1601492,0.54194736,0.8308427,-0.17024463,0.0490759,-0.2255345,-0.1498252,-0.02538183,-0.41074467,0.1183057,-0.34790057,-0.5533375,0.96799684,0.58848554,0.60554576,-0.19094096,-0.03543079,0.00026269755,-0.19450468,0.28048736,-0.1279141,-0.1511864,0.15222815,-0.6389277,0.00055827695,0.8441654,-0.28046063,0.115291014,-0.23487899,-0.6908499,0.11681715,-0.053354412,0.18874034,0.11582449,-1.2565455,-0.06436649,-0.41517374,-0.4463351,0.287699,-0.40253592,0.08798541,0.31693134,-0.11442104,-0.25563312,0.24170364,-0.029234346,0.7904713,-0.08674923,-0.15470186,-0.021406017,0.15819234,0.30711898,-0.27055827,0.16264331,-0.25680828,0.13905773,-0.44403183,0.6352964,0.041427713,-0.74620897,0.26871586,-0.12900102,-0.16851118,0.7089127,-0.077469364,-0.08597147,-0.20299429,-0.2183668,-0.34643358,-0.32164946,-0.2788192,0.3065161,-0.12939398,0.15015447,-0.16150258,0.06461612,0.30099618,0.44332,0.15178981,0.5935427,0.49353826,-0.034483247,-0.50168717,0.33750105,0.21829194,0.3585426,0.18189138,-0.03033834,-0.3840697,-0.1628852,-0.41117728,0.1349039,-0.3440147,0.22494173,-0.021835646,-0.31372285,0.65974176,0.110642955,1.387058,0.10119779,-0.54695296,0.21097569,0.5105079,-0.20101754,-0.21237022,-0.37024292,0.90464795,0.63964707,-0.27825594,0.011390518,-0.42745027,-0.31715208,0.2759613,-0.34833238,-0.04197167,0.05816465,-0.5253992,-0.2448118,0.07623288,0.20076562,0.09286331,-0.39624307,-0.11445403,0.27157634,0.080268554,0.47463274,-0.86364245,-0.25620347,0.0054273605,0.21701902,0.055830583,0.104366034,-0.31198496,0.27293763,-1.0918461,0.5059732,-0.589069,0.20325972,-0.32877016,-0.3733064,0.09027785,-0.019710727,0.4534006,-0.1357413,-0.3744572,0.02080504,0.51303184,0.09789922,0.13802081,0.7795579,-0.37134683,0.19555208,0.27142447,0.5478593,1.2062266,-0.50622946,-0.13874143,0.19952464,-0.47126898,-0.7193421,0.29642093,-0.41067755,0.088654846,-0.22140378,-0.49121127,-0.6870896,0.021749517,0.15274458,0.103465796,0.14983176,-0.8243919,-0.028805401,0.34603155,-0.302361,-0.21759492,-0.4096074,0.108948685,0.75601065,-0.2950126,-0.5754988,0.018987026,0.14699513,-0.1613608,-0.5036206,0.07438876,-0.14726196,0.31403124,0.08122393,-0.48348093,-0.062919304,0.18395393,-0.54951596,-0.13322133,0.037754018,-0.2624005,0.04461945,-0.39902905,-0.09585078,1.2388066,-0.348869,-0.06875959,-0.3851873,-0.61610514,-0.7292254,-0.3081531,0.363084,0.05657421,-0.04715954,-0.41460487,0.37070835,-0.17096798,-0.24039772,0.049520094,-0.40220833,0.47529972,0.17428194,0.4709779,-0.1742348,-0.9786937,0.3950163,0.3596219,0.1803988,-0.53077084,0.6001863,-0.1332471,0.8384085,0.113591194,-0.13664688,-0.42859694,-0.8607597,0.2708394,-0.13092227,0.30322492,-0.6575873,0.19006926,83 -996,0.4566279,-0.55835706,-0.18446064,-0.040800467,-0.102245964,0.09463768,-0.15945905,0.520599,0.3593894,-0.64645237,-0.03564771,-0.16134946,0.015578032,0.5025933,-0.15469384,-0.3779875,-0.3616322,0.2822193,-0.4713303,0.83315235,-0.26939723,0.17527336,0.00324191,0.7204508,0.26880917,0.17463702,0.120798096,0.0853257,0.0032465095,-0.5981981,-0.03368906,-0.2936206,-0.7277941,0.31623223,-0.1433546,-0.50237405,-0.0791056,-0.75712186,-0.35770735,-1.0227033,0.49089208,-0.9365213,0.5089783,-0.020615008,-0.15152389,0.2618873,0.23288584,0.28584284,-0.0036805389,-0.20458935,0.2598657,-0.42557144,-0.016515533,-0.35624114,0.06569797,-0.12019686,-0.6230172,-0.12014357,0.016433494,-0.44159082,-0.2879503,0.27692753,-0.42456317,0.12441422,-0.19985561,0.9548382,-0.30491796,0.18236534,0.019694302,-0.45318425,0.17321037,-0.7767597,-0.35715258,0.02146751,0.028353916,0.12883581,-0.17899862,0.40975296,-0.06830795,0.3834964,-0.009967844,-0.22854008,-0.37394637,-0.12945564,-0.12356954,0.66991127,-0.13365681,-0.4655304,-0.1422754,-0.09497944,0.04247764,0.2565291,0.33852595,-0.30161542,0.06526173,-0.1895026,-0.16382922,0.6435401,0.6565869,-0.03680475,-0.1145902,0.16173762,0.51677144,0.11467365,-0.17502207,-0.19085154,-0.034416582,-0.4912724,-0.18994941,0.032247227,-0.33045584,0.41836742,-0.23480412,0.24079466,0.6010882,-0.19845314,-0.010255079,0.16519573,0.36245394,0.22816621,-0.73825496,-0.61179614,0.68432975,-0.3415481,0.32465923,-0.61110044,0.8710379,0.1135593,-0.5600594,0.45551622,-0.6220777,0.18013473,0.03440833,0.54768986,0.41540235,0.5760131,0.43010274,0.8975349,-0.41032186,-0.0020347568,-0.09343571,0.06762804,-0.30098367,-0.4369647,0.43594873,-0.3799032,0.14760491,-0.121190496,-0.0021887189,0.113210596,0.23797809,-0.6015803,-0.24997228,0.32293415,1.1666609,-0.14898327,0.46409157,1.097086,1.1725619,1.5351348,-0.057319395,1.0083599,-0.05147416,-0.37399173,-0.15866,0.019488348,-0.8941386,0.18461384,0.3414989,0.50702935,0.061358504,0.12181011,-0.12288153,0.49589026,-0.63306314,-0.046092127,0.09969494,0.43547255,0.38687074,-0.14165887,-0.6467463,-0.23629862,0.003645271,-0.09745783,-0.03374188,0.31510177,-0.28075328,0.32837766,0.008379976,1.4407542,-0.28074175,0.2365275,0.283551,0.62291104,0.049013667,-0.3906446,0.21042189,0.18460427,0.27662933,0.049694404,-0.5854486,0.29370582,-0.1813346,-0.53568095,-0.13878924,-0.20096394,-0.25208807,-0.027411334,-0.24160814,-0.5584017,-0.27524972,-0.041786484,0.061594352,-2.551532,-0.028044403,-0.118137754,0.44223008,-0.39696917,-0.2669696,0.41353348,-0.5673773,0.47901317,0.2676621,0.45761648,-0.6890952,0.051190786,0.68081886,-0.730335,0.032769892,-0.67392117,-0.25585195,0.015402164,0.48313108,0.03851355,-0.20349342,-0.17012279,0.03001409,0.39619976,0.45695633,0.18907298,0.47098577,0.2866336,-0.19448449,0.4222199,-0.21357399,0.4206135,-0.5513735,0.032210346,0.29306644,-0.69287765,0.07157213,-0.48206636,-0.04435647,0.71158475,-0.44662607,-0.49615023,-0.64509857,-0.042077795,1.1721117,-0.1610541,-0.9261968,0.14190432,-0.21077377,-0.17281397,-0.31277126,0.586794,-0.058958847,-0.1576451,-0.6828282,-0.017376145,-0.34521797,0.30107063,-0.115627766,0.041603506,-0.6912211,0.9394974,-0.0140549205,0.48389244,0.43764693,0.16394936,-0.5513806,-0.29866335,0.072533995,0.81043464,0.44909567,0.20936614,-0.30491188,-0.04647447,-0.38660735,-0.39941227,0.0042085615,0.7085074,0.66600853,-0.23877543,0.1912255,0.26790157,-0.15315929,0.17119677,-0.17494184,-0.32307082,-0.32261053,0.054079965,0.59057575,0.6266915,-0.14759067,0.17647542,0.04473333,0.059932914,-0.28944507,-0.45454413,0.3365847,0.85529685,-0.2319321,-0.32186508,0.57807374,0.4499842,-0.53599507,0.5548413,-0.49078152,-0.32064837,0.57948315,-0.08084924,-0.7279079,-0.0762711,-0.22949508,0.047155116,-0.6260215,0.091968745,-0.3460263,-0.44147077,-0.6887974,-0.24179323,-2.042669,0.28096485,-0.21916026,-0.23165613,-0.33370474,-0.23632066,-0.09361908,-0.49893406,-0.70972425,0.42938995,0.17291826,0.65043473,-0.15752202,0.25484362,-0.20657697,-0.21222074,-0.6037227,0.28260377,-0.06674942,0.19108115,0.15129675,-0.29183972,-0.051627878,0.1851577,-0.5748929,0.036946114,-0.6474429,-0.39861885,-0.19771011,-0.64457047,-0.4801374,0.64961934,-0.11566308,0.19597608,-0.2716589,-0.1826325,-0.15203923,0.1818667,0.17793164,0.24543776,0.20445378,-0.23331414,0.058728524,-0.15714383,0.15750866,0.05645374,0.19314569,0.3576044,-0.27462536,0.22060587,0.16619486,0.91156936,0.16170359,0.9815968,0.21557349,-0.1643176,0.32883033,-0.401967,-0.27574402,-0.57682276,-0.0554725,0.40821564,-0.2928648,-0.45049566,0.04255673,-0.3345812,-0.53007674,0.5928845,0.20869552,0.43103865,0.16199411,0.2877721,0.42564,-0.19683093,-0.12336123,0.046445712,-0.019465737,-0.5179209,-0.23102845,-0.7784077,-0.33548352,0.1472159,0.6441421,-0.16575494,-0.079612255,0.4065432,-0.3783897,0.045522265,0.2496858,-0.1430316,-0.2120491,0.5328684,0.40361962,-0.7472883,0.43692714,0.35279614,0.03725232,-0.51126194,0.5689213,0.58429134,-0.5682347,0.6899792,0.10515193,0.012935261,-0.72543,-0.53164124,-0.16996193,0.0059785377,-0.25426257,0.16601548,0.21539295,-0.6597573,0.33551073,0.29441118,-0.19217771,-0.825526,0.063872784,-0.064904705,-0.64429075,-0.1979891,0.4133813,0.22333759,0.1097246,0.16086584,0.15952837,-0.64071727,0.37709725,-0.047213264,-0.036131416,0.3632102,-0.16963707,-0.1656026,-0.69610745,0.2753768,-0.56997156,-0.26698023,0.41366148,0.062085517,-0.16251683,0.5968699,0.31757092,0.43636778,0.098232776,0.15471049,-0.3713662,-0.36008802,0.5374271,0.426239,0.46475717,-0.5919297,0.77129024,0.12441483,-0.26081848,0.09147534,-0.13618733,0.42487356,0.12827052,0.4914187,-0.12649606,-0.20700438,-0.06882686,0.5996252,0.36691308,0.5395158,0.021211458,-0.027429167,0.46463293,0.074523956,0.16869247,-0.1449499,-0.7485195,0.29799998,-0.27669686,-0.088855535,0.43029657,0.058843188,0.41170698,0.00815307,-0.3494091,-0.11740952,0.08206527,-0.38497096,-1.521399,0.32830298,0.15862915,1.1528072,0.75545985,-0.11922574,0.086793594,0.93307686,-0.109904654,0.09487849,0.40953597,0.05090573,-0.47202766,0.6747922,-0.724662,0.43178704,-0.090274505,0.0008666565,-0.024961762,0.08825743,0.50778955,0.45470428,-0.19072433,-0.1950669,-0.281201,-0.25222903,0.1199739,-0.45040172,0.23279484,-0.3994413,-0.3153431,0.5392532,0.58119303,0.41321877,-0.26202694,0.14724873,0.113294125,-0.07998827,0.1610718,0.17771572,-0.31983054,0.16146487,-0.51849437,0.04914351,0.5741434,-0.26003087,0.016993228,-0.0031644627,-0.24722306,0.19559394,-0.16739129,-0.26200652,0.028838567,-0.8740046,0.25276,-0.27942634,-0.36202943,0.20159732,0.069266096,0.12692527,0.21433,0.14871836,-0.19878918,-0.06268216,0.379864,0.72351044,-0.09187209,-0.20394844,-0.26480278,0.1314308,-0.048330244,-0.1783581,0.38627255,0.033892922,0.07700205,-0.37796077,0.5589628,-0.08585528,-0.21848606,0.15682213,-0.18227236,0.01663433,0.86136574,-0.06356128,0.06345899,-0.11488005,-0.3121446,0.016023874,-0.245272,-0.13883652,0.32145008,0.036896855,0.13886225,-0.1269585,-0.17762859,-0.28602988,0.5875762,0.064074956,0.32201126,0.2810329,-0.028760247,-0.5924236,0.18130694,-0.16514453,0.62715596,-0.10096068,-0.06479853,0.08372215,-0.47139487,-0.5506389,0.74507934,-0.034560494,0.3812628,-0.035253268,-0.29436022,1.0155559,0.250604,1.0216798,-0.09302902,-0.3392321,0.13349849,0.53460014,-0.1849079,-0.064906925,-0.54454815,1.0027013,0.5924583,-0.15132357,-0.0011059443,-0.27940124,0.19153446,0.53466964,-0.26356396,-0.00017104547,-0.050013144,-0.72258514,-0.35892412,0.18686682,0.21254188,0.028563049,-0.27348366,-0.058772452,0.60540515,0.039965015,0.38952336,-0.41758028,-0.08477888,0.37356827,0.0782776,0.0980517,0.11640644,-0.43257815,0.1851031,-0.62591934,0.38931963,-0.30152142,0.063810885,-0.28820792,-0.1646547,0.21436323,0.08848658,0.40989944,-0.47273588,-0.5537004,-0.108618155,0.22829808,0.13508022,0.050304852,0.5587424,-0.12897176,0.07356965,0.19887531,0.5419359,0.8534373,-0.08136216,0.2512056,0.09841264,-0.67526937,-0.89091957,0.40950915,-0.0009644429,-0.106440715,0.05809611,0.044704754,-0.7549785,-0.036987565,0.3129849,-0.20917805,0.10849786,-0.70780087,-0.59064484,0.36919415,-0.40167105,-0.22353435,-0.32887453,-0.12557322,0.62787133,0.008519013,-0.25377983,-0.0094052125,0.19668502,-0.29909003,-0.7701437,-0.06611661,-0.5650772,0.3762615,-0.18191385,-0.5814298,-0.39284778,0.19409074,-0.6184759,-0.07563844,-0.096953,-0.29226846,-0.14883396,-0.43913108,0.052720957,0.9123218,-0.09312202,0.3433769,-0.71297646,-0.588465,-0.74147725,-0.28980446,0.41301557,-0.08358701,0.14333756,-0.6681442,-0.23524468,-0.42241123,-0.0831957,0.0045972597,-0.4879715,0.31282696,0.17316392,0.4760029,-0.25884762,-0.6415539,0.38692534,0.16009745,0.007957141,-0.26564556,0.5300977,0.1281153,0.67882836,0.013434751,0.007443872,-0.07156403,-0.7162187,0.25497445,-0.036664836,-0.3417791,-0.61681694,0.30336377,692 -997,0.3226612,-0.33320132,-0.6281918,0.08433208,-0.21837534,0.2526346,-0.3293374,0.45423663,0.11870519,-0.44908005,-0.022094063,-0.29250893,-0.050463457,0.23448361,-0.11898056,-0.48694694,-0.121304475,0.37601304,-0.31271946,0.4687368,-0.1812971,0.11729138,0.19682151,0.45398247,-0.29420772,0.04358083,0.09423205,-0.17956607,-0.021439185,-0.0683057,0.28087014,-0.14401756,-0.9141283,0.3423541,-0.20836757,-0.38553986,0.2685621,-0.5991843,-0.32329294,-0.5956052,0.13055795,-0.9128933,0.72434384,0.14458744,-0.20918663,0.06421003,-0.26453835,0.031570673,-0.16226637,0.011749221,0.40059954,-0.40712237,-0.3487305,-0.316244,-0.14041367,-0.50604075,-0.6901955,-0.04057473,-0.43201077,0.3120706,-0.22581376,0.14182526,-0.26646173,0.029548274,-0.05997537,0.20085788,-0.5756163,0.099806175,-0.035418604,-0.11956635,0.3071832,-0.5253198,-0.08118117,-0.20192379,0.246072,-0.14043519,-0.1347205,0.07861963,-0.042247634,0.70884776,-0.05822002,-0.045146305,-0.3186271,0.24402434,-0.069570236,0.57951695,-0.03246567,-0.2581869,-0.025295397,-0.120833516,0.12246421,-0.16238648,-0.21694078,-0.18175411,-0.08450263,-0.41780457,-0.23711589,0.2700769,0.58817744,-0.31171957,0.018271737,0.41664574,0.77037454,0.31592792,0.11120061,0.013982634,0.06724116,-0.4811344,-0.16656452,-0.00028157898,-0.27379376,0.7483205,-0.11074887,0.43899918,0.5758408,0.07077234,-0.15785381,-0.122507915,0.021364296,0.12642524,0.075986,-0.38348734,0.61118186,-0.17329155,-0.122593336,-0.17297658,0.5527771,0.08564341,-0.8352454,0.45854208,-0.41861638,-0.027452005,0.0750186,0.72178125,0.47125328,0.86031806,0.053595092,0.8302852,-0.58568835,0.16579127,-0.06491195,-0.3045871,0.34635827,-0.013924162,0.27715644,-0.36881793,-0.098021716,0.008432726,-0.4210564,-0.05294492,0.7626969,-0.4988551,-0.111803085,0.08780941,0.6234958,-0.2952267,-0.1812922,0.4161781,1.0027354,0.76927143,0.14274976,1.2277111,0.18145424,-0.21167381,-0.25004354,-0.034449194,-1.1729898,0.10183292,0.22074825,0.2332161,0.46181938,0.3991738,-0.15151079,0.49809435,-0.53007483,-0.1857157,-0.028076045,0.4896946,-0.13572685,-0.028816786,-0.4652654,-0.12089177,-0.064219065,0.07322792,0.02469237,0.44600594,-0.06686573,0.32502788,0.19405428,1.872861,-0.0050164857,0.1434223,0.091394804,0.30029076,0.15976498,0.09779021,-0.4086226,0.281728,0.17586488,0.21608472,-0.46899876,0.14377788,0.061656296,-0.63322735,-0.23011763,0.0330886,-0.16114296,-0.46354872,-0.1996319,-0.26316562,0.13717067,-0.45814997,0.297946,-2.275334,-0.14376463,-0.049502227,0.67741704,-0.33950055,-0.3022312,-0.2191857,-0.21516806,0.41952062,0.51650023,0.533788,-0.60360724,0.38534826,0.5379132,-0.5631802,-0.08349382,-0.5696032,-0.116508216,0.17771682,0.16989666,0.037737064,-0.4340609,0.19921078,0.03739341,0.01380037,-0.20076445,-0.058381062,0.3588035,0.7372527,0.16323453,0.43768248,-0.33992657,0.3436167,-0.53800803,-0.082790114,0.27327338,-0.36770344,0.5262363,-0.46400186,0.13454999,0.28338343,-0.38281336,-0.8411802,-0.30642658,-0.14749902,1.0326376,-0.38792086,-0.3364454,0.08573161,0.15563826,-0.4360103,-0.023223711,0.4965006,-0.30891985,-0.113324195,-0.90587944,-0.15983932,-0.17960428,0.5793898,0.13458759,0.2670649,-0.7433455,0.60280925,-0.048499532,0.5067764,0.8337125,0.162996,0.11631187,-0.4697387,0.20000319,0.8627584,0.27398145,0.35174683,-0.51137555,0.09787598,-0.05010805,0.16929682,-0.23035349,0.48879877,0.602884,-0.20157287,0.045297995,0.33479077,-0.046354696,-0.10524216,-0.28108066,-0.50978667,-0.18257779,0.00088437396,0.66277236,1.1584302,-0.2821519,0.19625899,-0.13631386,0.17634168,-0.3293799,-0.36370718,0.5633228,0.37498027,-0.21727209,0.013736127,0.4706566,0.37780347,-0.40961626,0.47250473,-0.6673417,-0.5828658,0.28089836,0.025731346,-0.43733898,0.2734144,-0.270622,0.051171802,-1.0402353,0.4118309,0.009385109,-0.5085562,-1.0284595,-0.13907641,-2.0949345,0.15958926,-0.17008938,-0.21276076,-0.011630075,-0.09134085,0.13549049,-0.58362496,-0.7102816,0.41147774,0.08421115,0.32622918,-0.09759304,0.2516388,-0.30945736,-0.31291616,-0.20259957,0.24148387,0.4670244,0.1013043,0.12023927,-0.6025806,-0.13610303,-0.16580333,-0.06696962,0.031504378,-0.60416806,-0.1465715,-0.10531816,-0.52209044,-0.1973184,0.65899163,-0.54703456,-0.14027636,-0.34408164,0.007965167,0.0042148135,0.21922694,-0.18141145,0.041014835,-0.005933649,-0.20178334,-0.22821504,-0.08333084,0.23338816,0.12122533,0.13481587,0.5895684,-0.32167578,-0.024115954,0.68498254,0.7226591,-0.03913208,0.9328571,0.37417197,-0.11470628,0.26843345,-0.28702033,-0.099887066,-0.6397798,-0.17175385,-0.18044007,-0.5753291,-0.44118255,0.1439271,-0.33023086,-0.8512999,0.5820359,-0.067262225,-0.22187525,0.23978692,0.37861216,0.25628287,-0.28096637,0.04450681,-0.1693969,-0.2085967,-0.44177186,-0.5619926,-0.5237182,-0.38566768,0.010221415,1.2117401,-0.07119339,-0.0511004,0.34412357,-0.18395121,0.10562739,0.013204336,-0.034997582,0.13410215,0.4271875,0.36669022,-0.6792243,0.46367392,-0.10159377,-0.08223554,-0.70962423,0.020430548,0.73666817,-0.8610575,0.20815526,0.4383086,-0.042602252,0.13550024,-0.67697644,-0.40115812,0.09067146,-0.1400764,0.11101612,0.20589703,-0.56671834,0.3711416,0.18932655,-0.35521835,-0.89615005,0.41928795,0.015045926,-0.38849008,0.14775313,0.3509858,-0.116484456,0.09031342,-0.53895396,0.19517542,-0.31528315,0.37176564,-0.010068668,-0.41983736,0.51413983,-0.22586271,0.02865845,-1.0124985,-0.053035457,-0.27698243,-0.2950544,0.4869566,0.073279195,0.023377905,-0.054035127,0.5729525,0.43711576,-0.73107475,-0.1640046,-0.20541614,-0.39747536,0.3433827,0.4456717,0.47581154,-0.5822007,0.5693978,-0.12196954,0.06454395,-0.18318318,-0.1330502,0.4570587,-0.13977607,0.055106293,0.15205969,-0.122927986,0.089958996,0.9233391,0.26578882,0.41725838,0.2922993,-0.15228456,0.6060531,0.15175274,0.24302308,-0.30456358,-0.6025722,0.38096538,-0.05583396,0.12201635,0.26035255,0.08951998,0.46978426,-0.4170258,-0.07611328,0.11532964,0.47408634,0.2832235,-0.7340594,0.3238678,0.07506417,0.55708176,0.6730229,0.15741122,0.38541186,0.60996765,-0.18343891,0.18971348,0.32751778,-0.022228308,-0.3246597,0.44033676,-0.5192883,0.1751638,-0.30389488,-0.008494311,0.39464748,-0.10611844,0.5521308,0.8068841,-0.03938369,-0.01131604,-0.18616633,-0.047494605,-0.24378936,-0.27633068,0.15096712,-0.54897285,-0.31996316,0.7331679,0.45238835,0.33181566,-0.2650951,0.014355198,0.11165318,-0.20462853,0.4421899,0.17824203,-0.056118548,0.16998357,-0.61424965,0.026625939,0.85787386,0.17676836,-0.120578796,-0.073913515,-0.27234292,0.4323982,-0.20914038,-0.28799665,-0.10574892,-0.9407489,0.1026288,-0.53910685,-0.24498834,0.5447925,0.3455568,0.32436025,0.10474434,0.01828205,-0.35553142,0.43538225,0.18565835,0.98328644,0.39170447,-0.34475198,-0.3158774,0.048915427,0.2897395,-0.19197315,0.10923711,-0.114747554,0.16268188,-0.38630855,0.34604204,-0.15406315,-0.2911569,0.20971009,-0.3075933,0.09307768,0.5957155,0.121783465,-0.051202025,0.05659106,-0.13395223,-0.19670238,-0.15867776,-0.5628531,0.19537663,0.014534818,-0.01679311,-0.073162675,0.13090245,-0.28101742,0.62211007,0.4765021,0.08697737,0.49725035,0.15699261,-0.5351664,-0.04113554,-0.21034677,0.6784907,-0.05799393,-0.21585536,-0.41884702,-0.631821,-0.26518077,0.32386923,-0.23597015,0.06882989,0.09434489,-0.4642175,0.8854268,0.31092113,0.9339797,0.049247093,-0.18810754,0.21131986,0.64538586,0.045411136,0.11249909,-0.6065657,1.2373308,0.5897362,-0.18665454,-0.17940326,-0.15325147,-0.37331048,0.04850923,-0.2971334,-0.3001998,-0.16886245,-0.8270995,-0.09811637,0.2476782,0.1359275,-0.20311396,-0.1877487,0.16028698,0.25297597,0.13735007,0.087705486,-0.66800815,-0.19253899,0.3723769,0.11738525,0.1505474,0.059411842,-0.22142966,0.35528675,-0.38759652,-0.009677897,-0.6435529,0.07896121,-0.08060201,-0.26052383,0.10279766,0.13119218,0.37135515,-0.43230146,-0.32909986,-0.026287006,0.36417645,0.39058936,0.27278644,0.66777825,-0.18961406,-0.07988049,-0.038530774,0.5379996,0.9642737,-0.6116317,0.301409,0.6634376,-0.34067357,-0.5229993,0.32474187,-0.28599274,0.14018056,-0.39088956,-0.20075828,-0.54224694,0.19557951,-0.0072273016,-0.26894516,-0.27603748,-0.7056881,0.014270451,0.60001975,-0.32539216,-0.14067888,-0.11589345,-0.16536058,1.0437486,-0.11817908,-0.4466926,0.14191523,0.25854892,-0.33991635,-0.55908376,-0.09518549,-0.58716434,0.15902723,0.27292597,-0.35171926,-0.0792543,0.24471444,-0.6028831,-0.05204112,0.23641337,-0.30885404,-0.08466535,-0.5265943,0.30802998,1.0559608,-0.010661019,0.089905106,-0.4168213,-0.42766723,-1.0458881,-0.073878855,0.44530213,0.23065287,-0.15259027,-0.47096756,-0.06443106,-0.3568368,-0.33425125,-0.17246562,-0.582164,0.44301644,0.12792856,0.43804845,-0.23573624,-0.9585264,0.19402266,0.067445,-0.4267887,-0.383718,0.44275248,-0.025491156,0.9112481,-0.11947355,0.10427252,0.25785744,-0.8933502,0.12710959,-0.21632229,-0.14140116,-0.63007045,0.097754344,772 -998,0.43493503,-0.09905829,-0.58263934,-0.0689099,-0.260718,0.03987533,0.15705337,0.81913793,0.4617213,0.024292722,-0.049894504,0.029540747,-0.1482425,0.29664788,-0.023657821,-0.61507237,-0.0784638,0.07001223,-0.39458996,0.6130882,-0.2427571,0.25030524,-0.32327864,0.6106838,0.33194378,0.37143156,-0.079423085,0.23448646,-0.14698353,-0.37004387,-0.1264443,0.12684771,-0.6998662,0.32801354,-0.052678093,-0.18000671,0.14967959,-0.37720406,-0.40340096,-0.57203054,0.23492807,-0.6603376,0.40586448,0.07821731,-0.07567279,0.101643026,-0.0023965603,0.09523606,-0.21162593,-0.23484097,-0.08623694,-0.039368693,0.21981163,-0.4537663,-0.4349345,-0.49005297,-0.47514024,0.013192609,-0.56357837,-0.19343913,-0.42763445,0.1391235,-0.26441494,-0.272028,-0.093601406,0.6481223,-0.2704752,0.43430558,-0.06281307,-0.2103981,0.06579533,-0.4865994,-0.15018308,-0.078117564,0.15700376,-0.047027454,-0.2545095,0.3197887,0.11549288,-0.09554404,-0.014458746,-0.17155418,-0.51218176,-0.01403245,-0.1941921,0.32412505,-0.02320221,-0.5193161,-0.03745476,0.19594505,0.14110973,0.36970353,0.35214207,-0.07888218,-0.03678843,-0.060710035,-0.12627587,0.96031404,0.33565617,-0.3609262,-0.261773,0.56180704,0.35668254,0.13045457,-0.23156862,-0.25325477,-0.13616097,-0.4757539,-0.15934038,0.19345897,-0.26048186,0.49178118,-0.13846946,0.08252885,0.5737326,-0.32984105,-0.27190566,0.27235416,0.10564799,-0.054969527,-0.43788302,0.077280544,0.25586766,-0.47235632,0.22492185,-0.04872848,0.849785,0.14307308,-0.5586843,0.2278569,-0.7552885,0.058683015,0.027591944,0.373326,0.5431777,0.68222535,0.15100867,0.7593171,-0.3830459,0.102362074,-0.22874875,-0.5203027,0.23049155,-0.20804167,-0.18828474,-0.5203372,-0.041604392,0.16374926,-0.2460509,0.34124973,0.2920251,-0.5561452,-0.32871613,0.58465606,1.0048021,-0.16326974,-0.43221533,0.6894893,1.1721169,0.9395941,-0.08940079,0.84857434,-0.25885326,-0.14450234,0.41274318,-0.14474541,-0.7090199,0.2850614,0.15211105,-0.55723035,0.33903915,0.01918695,0.050472047,0.05594208,-0.18896224,-0.017838486,0.025472175,0.5762774,0.27394712,0.04201609,-0.04783167,-0.4888594,-0.0908283,0.0928209,0.32111806,0.339189,-0.13539739,0.19552156,-0.18218535,1.4959154,0.20604044,0.10875858,0.10344117,0.92401165,0.42945725,-0.061506104,-0.026900798,0.67480016,0.058186334,0.4857434,-0.46183494,0.27118063,-0.38913685,-0.43941453,0.07173209,-0.39669722,-0.08751802,-0.0040282086,-0.4054368,-0.25763902,-0.1726339,-0.14525339,0.7781583,-2.993023,0.18521202,-0.09269063,0.39988112,-0.29926226,-0.45992184,-0.008800603,-0.48374507,0.15350688,0.26310402,0.5138072,-0.6005209,0.059567567,0.39400604,-0.6322442,-0.18153328,-0.3946529,0.40123984,-0.08997249,0.51353645,-0.15941373,0.11665394,0.14055932,-0.08359256,0.80665445,0.27503124,0.14680341,0.45538116,0.29019028,-0.3670627,0.6354198,-0.092221834,0.58078235,-0.30828393,-0.18060821,-0.027085092,-0.60008174,0.58299524,0.023703411,0.080897555,0.5915402,-0.3545093,-0.9820642,-0.3242234,0.16335028,1.3395276,-0.3247761,0.01881501,0.17185551,-0.32744357,-0.28037074,-0.21719666,0.5236677,-0.21395105,0.0829639,-0.21195523,0.046005897,-0.17842971,0.23663545,-0.03940673,-0.14591253,-0.212343,0.6302156,0.12304175,0.29846078,0.014745042,0.12656417,-0.7901813,-0.63885397,0.09830996,0.6306382,0.3367184,-0.028926127,-0.16676874,-0.25647974,-0.39126605,-0.10024588,0.3295923,0.905835,0.4528455,-0.21390852,0.09478749,0.5211614,0.080693245,0.047045246,-0.07057983,-0.29266018,-0.32447273,0.06923129,0.43355104,0.9601258,-0.007929027,0.60506535,0.09696873,0.18368125,-0.3074751,-0.50268275,0.57479584,0.78303725,-0.27522376,-0.34851626,0.4103283,0.45818853,-0.565883,0.40777254,-0.42119676,-0.27177808,0.5414201,-0.14633,-0.42771864,-0.019549578,-0.10732232,-0.44209823,-0.8368415,0.08952826,-0.43707892,-0.58170795,-0.32940513,-0.09719607,-3.7053528,0.18248427,-0.24138933,-0.28703997,-0.14938997,-0.11061427,-0.24669218,-0.643135,-0.4310909,0.12718436,0.14954247,0.5445932,-0.2583374,0.20632279,-0.31333655,-0.38458985,-0.65331745,0.48936927,0.23122749,0.42771834,-0.07594142,-0.33379358,-0.13230832,-0.031527326,-0.47461307,0.15109646,-0.4934207,-0.07246483,-0.15229265,-0.98608595,-0.1740628,0.73069525,-0.34858805,-0.04074741,-0.12896776,0.21985616,0.17817678,0.07043134,-0.1861038,-0.051308714,0.2268143,-0.2077089,0.10708968,-0.4335987,0.22443576,-0.058845013,0.76016974,0.13375485,-0.03466413,0.19765642,0.47983712,0.5151298,-0.103128456,0.79948944,0.1378938,-0.14511895,0.3515126,-0.065824725,-0.07766885,-0.55179715,-0.1740843,0.04129667,-0.24280322,-0.41355252,0.111585446,-0.37072974,-0.7356129,0.5534227,0.14524461,0.50295687,-0.031372406,0.5191221,0.64995396,-0.38193995,0.12100359,0.013980205,-0.047630783,-0.5289059,-0.24890026,-0.45871046,-0.27978754,0.46344882,0.5005201,-0.5158616,-0.3543812,0.094613194,-0.26202106,0.038357675,0.18616498,-0.18907602,0.056247685,0.38662115,0.0372129,-0.46123832,0.38639072,-0.20992792,0.06184178,-0.60134065,0.51901853,0.48274624,-0.7079698,0.60927284,0.11241095,0.054007936,-0.3864901,-0.48836297,-0.027197119,0.002731964,0.00025046477,0.20701809,0.37183616,-1.2530277,0.18645473,0.15669149,-0.42591333,-0.634917,0.60821724,-0.21968925,-0.23911458,-0.51487595,0.40836257,0.46295327,0.04108006,-0.40491128,0.18963532,-0.3045889,-0.017192677,-0.02006286,-0.09894599,0.06532664,0.07303366,-0.19670494,-0.65631145,0.27981597,-0.4423408,-0.38114014,0.69549704,0.054729998,-0.0774388,0.12019413,0.18645848,0.08574135,-0.16135901,0.19135627,-0.08247337,-0.35360232,0.6328145,0.3563664,0.8402404,-0.5695976,0.50181067,0.20153923,0.05587782,0.39316875,0.21788111,0.36948714,-0.03762573,0.5262793,0.48101872,-0.39114904,0.17302701,0.37473333,0.14617217,0.40639055,0.098400116,0.14154747,0.04292074,0.06905417,0.32376295,0.009319164,-0.7554773,0.09880294,-0.3908664,0.07774973,0.3306666,0.034264177,0.04809562,0.13657549,-0.10720721,-0.0022883909,0.10968934,-0.07176326,-1.0574473,0.27696386,0.17132513,0.8815309,0.3523485,0.16549107,-0.17643909,0.82315326,0.07219203,0.10529198,0.5015154,0.25414696,-0.3826247,0.49957097,-0.80428594,0.8496993,0.27791604,-0.09935712,0.18936832,-0.108519554,0.42319095,1.047822,-0.25147727,-0.288878,-0.0375253,-0.25347942,-0.03429912,-0.3950941,0.32552394,-0.6378467,-0.27006865,0.5198079,0.44320872,0.23975676,-0.15373632,-0.14030448,-0.010430237,-0.12710606,0.08027834,-0.16008997,0.15917382,0.17963779,-0.5274964,-0.13304496,0.49499044,-0.054238252,0.23940788,-0.006595336,0.1864778,0.544331,-0.24367797,-0.14174132,-0.02963107,-0.7494844,0.32934284,0.11862853,-0.5050046,0.47667125,-0.30777115,0.37012726,0.22215506,0.1212613,-0.27212334,0.55230635,0.3582595,0.75192285,-0.31426358,-0.1801091,-0.5893757,0.34874967,-0.028988076,-0.10922392,0.22955215,-0.101973385,-0.21263471,-0.60580516,0.08439183,-0.16286571,-0.564301,-0.51920825,-0.18002395,0.034020633,0.66437906,0.11822731,-0.18305036,-0.34253758,-0.37718162,-0.31852978,-0.1285241,-0.05391913,0.28269702,0.02153087,-0.14289229,-0.05710553,-0.183666,0.17107856,-0.0838224,-0.08729971,0.33802706,-0.065415174,0.1367939,-0.20722017,-0.1669086,0.2689959,0.5897646,-0.27288455,0.15317512,-0.018502362,-0.21242633,-0.5693413,0.003298793,0.033754624,0.49095923,0.07641205,-0.3259065,0.41186875,-0.1543584,1.370656,0.0066183684,-0.40064213,0.30283275,0.74466884,0.20203696,-0.09218802,-0.3656243,1.3785957,0.48506272,-0.15119074,-0.19306678,-0.26455423,-0.2120301,-0.034057595,-0.36777022,-0.24622996,0.12579961,-0.36086494,0.10776363,0.23699123,0.18327643,0.2964375,-0.020357795,-0.20742781,0.54356486,0.092319176,0.18152384,-0.34476274,-0.22037956,0.13523328,0.43519568,0.06890762,0.10227548,-0.4137208,0.19905035,-0.63342094,0.4127804,-0.12426183,0.3373223,-0.48047292,-0.52943206,0.14278539,-0.09462628,0.5761486,-0.33863807,-0.44219422,-0.47149014,0.35018945,0.33969948,0.3353356,0.60495436,-0.26003417,-0.16453516,-0.074343555,0.40598607,0.7007662,0.099584125,-0.455369,0.28460562,-0.5644698,-0.8051828,0.35267687,-0.34834915,0.23014088,-0.14408752,-0.010398883,-0.262775,0.27315196,-0.034904823,0.23141195,0.09691333,-0.85916996,0.017324708,-0.039190218,-0.083144836,-0.15899451,-0.2261366,0.24043596,0.9331118,-0.05485695,-0.5362553,0.30044383,-0.032666728,0.07638412,-0.4307991,-0.15211904,-0.36999264,-0.067460716,-0.07900191,-0.45291555,-0.35847753,0.051606834,-0.5549042,0.18996562,-0.28796554,-0.28051388,0.27905813,-0.09181823,0.0527455,0.6249302,-0.43832514,0.21972781,-0.34134537,-0.7244289,-0.50815666,-0.33106127,0.17896849,-0.19231327,0.0026092902,-0.57539415,-0.049069922,-0.36431944,-0.44474274,-0.23004058,-0.47260126,0.20958859,-0.039553583,0.21264651,-0.085733235,-1.2009139,0.43592447,0.22430673,0.09662599,-0.9560662,0.20675212,-0.49113777,0.6871876,0.00090380386,-0.0025846194,0.45841676,-0.5129151,-0.051927842,-0.2536291,-0.055096727,-0.46359196,0.28266728,305 -999,0.06896128,-0.60805863,-0.1960318,-0.2034314,-0.0144265,0.12871203,-0.05929203,0.53725505,-0.07680579,-0.37844583,-0.4815363,-0.2966729,0.107821256,0.76444155,-0.08015049,-0.5316976,-0.39612478,0.16511449,-0.55779845,0.23755527,-0.5522176,0.14325525,0.20975573,0.40466356,0.37461635,0.32782465,0.5332184,-0.1331385,-0.040063404,-0.12243548,-0.120494686,-0.29698503,-0.4000504,0.14627156,0.008450586,-0.5294247,0.026189543,-0.7372309,-0.20427279,-0.7346057,0.40098524,-1.024542,0.34869298,-0.29072562,-0.043535925,-0.14136903,0.06266048,0.54282963,-0.23383754,0.040455,0.38814273,0.012889989,-0.05380246,-0.018599458,-0.2197364,-0.18837622,-0.55434185,-0.08341643,-0.27280492,-0.6125608,-0.09365702,0.15113041,-0.32010466,0.106708124,-0.078820825,0.22283186,-0.39199403,-0.43220785,0.4584356,-0.10891288,0.54562217,-0.56559527,-0.23240496,-0.021009307,0.41910338,-0.23666674,-0.017469881,0.41441756,0.36334887,0.30051982,0.23494947,-0.1173174,-0.016599245,-0.118643075,0.17172532,0.78556424,-0.064681105,-0.4447308,-0.12685704,0.03690335,0.16147198,0.4077791,0.05240581,-0.38886198,0.03569254,-0.04529448,-0.34079257,0.242042,0.5203975,-0.033661872,-0.3407722,0.27237046,0.55088353,0.18126956,-0.09935614,-0.20226403,0.029442519,-0.4237343,-0.118963614,0.28798664,-0.16490118,0.6293051,0.05219186,0.40737927,0.9006918,-0.22441344,0.327927,-0.46339095,-0.07066807,-0.40700948,-0.45415735,-0.3043717,0.18373136,-0.4220906,0.19805738,-0.26313943,0.92805225,0.22005484,-0.6940864,0.604475,-0.4542546,0.21301351,-0.14061314,0.62568337,0.35887653,-0.009691864,0.31779438,0.8791908,-0.2300134,0.09364627,0.04584892,-0.28767812,-0.21859561,-0.24897072,0.2952761,-0.54668915,0.023707762,-0.040231787,0.14913748,-0.0770651,0.22823924,-0.5941354,0.03115028,0.20455314,0.8997009,-0.4256292,0.16171692,0.6495725,1.203094,1.1205801,-0.024092969,1.4778324,0.43541124,-0.42895204,0.25703335,-0.5367571,-0.69302267,0.2003319,0.65853554,0.4380541,0.32988113,-0.049251333,-0.3641742,0.45154357,-0.5673156,0.42958277,-0.16464424,0.24815874,0.12629119,0.12930614,-0.7164541,-0.23630601,-0.1666319,-0.17264707,-0.06463463,0.032807335,-0.30383813,0.20837557,-0.35515264,1.7748917,-0.13939783,0.03860865,-0.02624609,0.6094543,-0.15488812,-0.26964706,-0.20273852,0.20345974,0.8094899,-0.22065184,-0.6218365,0.3716371,-0.25479662,-0.38280797,-0.08519015,-0.32259464,0.10429236,0.07575046,-0.22799662,-0.06291756,0.117288575,-0.46956939,0.42486614,-2.8242302,-0.38716853,-0.42611116,0.07650467,-0.48756278,-0.14663121,-0.17628679,-0.48139822,0.42076236,0.3031815,0.4729454,-0.5520454,0.48854986,0.48580372,-0.15208109,-0.07201587,-0.77066064,-0.057028692,-0.0033284314,0.29280853,-0.0043309405,0.068339154,-0.22283673,0.072812974,0.5187361,0.2251624,0.112659335,0.6529293,0.34964964,0.17995515,0.6036564,0.07222695,0.43117878,-0.40104374,-0.0066391937,0.1256394,-0.21559937,0.18223068,-0.34405744,0.10852441,0.4128582,-0.6939944,-0.6727806,-0.7087305,-0.92191184,1.013421,-0.43683475,-0.33186424,0.49897003,0.22300129,0.10223237,-0.17879787,0.6679105,-0.15570597,0.054680064,-0.63985634,-0.020480461,-0.07217605,0.12210302,-0.06954693,-0.027084187,-0.4552464,0.58645463,-0.25622943,0.49458992,0.19038488,0.23472406,0.08495365,-0.17775047,0.10630162,0.79655343,0.19782686,-0.15263906,-0.06807983,-0.09568688,-0.3889017,-0.5067184,0.18861803,0.4814548,1.15373,0.023660472,0.11136155,0.3584657,-0.15259384,-0.039881706,0.001122117,-0.2717933,-0.14577761,-0.11141447,0.5322983,0.158668,0.016209677,0.7118061,-0.5282711,0.15734862,-0.11153419,-0.32333246,0.35543305,0.09617146,-0.16956577,0.073462136,0.39938554,0.43099934,-0.43988585,0.39518192,-0.6844032,-0.057592466,0.77467954,-0.198714,-0.6295544,0.16994795,-0.10206496,-0.06593911,-0.9545188,0.4393656,-0.2936365,-0.6133407,-0.3523676,-0.20005043,-2.9282684,0.19864672,-0.04874549,-0.53906864,0.020166643,-0.11218949,0.28877413,-0.6459894,-0.6395443,0.22058296,0.09456089,0.5827467,0.11268907,0.028552257,-0.21858355,0.17390941,-0.34607124,0.10109556,-0.014891788,0.27158973,-0.083776355,-0.45867297,0.010189112,-0.09584441,-0.74114394,0.3419724,-0.8044009,-0.60967875,-0.23681743,-0.6848476,-0.47357914,0.81295943,-0.24157827,0.07981844,-0.13349986,0.061391015,-0.2642622,0.46615392,0.07029565,0.40112042,0.13489386,-0.122619666,0.2518893,-0.28618157,0.43958956,0.12851371,0.45176962,-0.18629523,-0.1818919,0.34846833,0.385513,0.67917037,0.12936963,0.835486,0.6245309,-0.251409,4.245341e-05,-0.5406885,0.17871732,-0.5008904,-0.42390773,0.047958724,-0.31462353,-0.926005,-0.0009786636,-0.1789968,-0.57161033,0.5351501,-0.0072295777,0.37651992,0.025910616,-0.077638306,0.15016112,-0.0291548,0.10251211,-0.043559525,0.14453672,-0.46722892,-0.23546049,-0.83287406,-0.54023767,-0.023909964,0.5833484,-0.144912,-0.06459862,-0.1503624,-0.86822844,0.37264055,0.033358622,0.02766122,0.18663935,0.15088847,-0.13770524,-0.7600459,0.4369542,0.19756539,-0.016823001,-0.660316,0.14618456,1.0725113,-0.62907636,0.67395586,0.16898367,0.058654316,-0.34403643,-0.27761713,-0.2812078,-0.20411357,-0.19892655,0.14857432,-0.2598164,-0.54485047,0.40720975,0.47010797,-0.34331393,-0.67822903,0.22569078,-0.07900178,0.052573428,0.10244727,0.17149594,-0.042277962,-0.13442227,-0.3899295,0.20510292,-0.44054553,0.47382632,0.23148467,0.16345808,0.5702051,0.06967156,-0.16131803,-0.4929009,0.14390305,-0.45346612,-0.09514974,0.37670505,-0.077732265,-0.16070043,0.33575442,0.08987191,0.2753327,-0.2771875,0.047097757,0.119593985,-0.56840205,0.03761755,0.32933533,0.06716721,-0.4179137,0.5607018,0.10816704,-0.21546076,-0.046034694,0.027083863,0.32585245,0.29339463,0.23913006,-0.5208535,-0.44189703,0.40115455,0.66918766,0.29627573,0.7192365,0.25478208,-0.12850472,0.4312968,0.024805203,0.1926443,0.10382384,-0.32502735,0.12872572,0.12360506,0.07666283,0.36234918,0.19671208,0.400427,0.070490666,-0.29289612,0.037134256,0.14196123,-0.23160276,-0.9236571,0.55741817,0.22437452,1.0365815,0.36462566,-0.08852665,-0.14917809,0.64930964,-0.1029447,0.14312902,0.3702914,0.075866684,-0.6957043,0.9128953,-0.5030354,0.48186544,-0.0510299,-0.11905141,0.07633623,0.18232574,0.35058194,0.7595394,-0.19474933,0.060739227,-0.27304208,-0.0057344586,0.019784674,-0.4491494,0.46330705,-0.5983345,-0.56754804,0.44548827,0.41694158,0.24174055,0.045869567,0.022967631,0.025126569,-0.14615406,0.31166214,-0.025646754,-0.2191145,0.36885202,-0.85689443,-0.5092666,0.5015539,-0.0028159022,0.26736298,-0.14693551,-0.32724592,-0.05932287,-0.23694189,-0.022153996,0.1860478,-0.831745,0.0010163402,-0.1970214,-0.28416154,0.105336145,-0.30124483,0.33286116,0.1206413,-0.1197878,0.05690795,0.044225574,0.21909657,0.988299,-0.18027306,-0.37146765,-0.30992258,-0.054634348,0.22285515,-0.29463604,0.40232414,-0.29048717,-0.30260545,-0.6485846,0.7191764,0.12931871,-0.62550455,0.5440296,-0.25245267,-0.1814331,0.6344017,0.030642897,0.37048274,-0.26288116,-0.3252251,-0.19997221,0.25707522,-0.3951717,0.17846732,0.097226605,0.19728972,0.053749323,-0.11693484,0.022931412,0.7404856,0.08189085,0.5748864,0.30399996,0.22731572,-0.2141167,0.04425575,-0.17890337,0.4699371,0.46227106,-0.037828427,-0.27540118,-0.27752715,-0.074158564,0.26158616,-0.29267684,0.43299574,-0.21934941,-0.4464559,0.6167851,0.09297731,1.2797134,0.15871486,-0.29677305,0.019712305,0.58079535,0.002456326,0.15590602,-0.61582124,0.8282748,0.58316123,-0.119086035,-0.030976646,-0.3785208,-0.27292886,0.74199456,-0.2660616,-0.24689376,-0.040850848,-0.63515717,-0.57171947,0.21909495,0.21240291,0.097800545,0.21941178,0.045128677,0.11137062,0.00021269172,0.83936125,-0.6046965,-0.09875548,0.14341933,0.13798513,-0.058865786,0.21204722,-0.4660996,0.31234503,-0.8161042,0.53246707,-0.3068748,0.085263684,-0.12223193,-0.33036128,0.07297988,0.06883794,0.769142,-0.13042955,-0.54190063,0.053904865,0.51319623,0.022723764,0.1130237,0.6973832,-0.22850177,0.10453066,0.230289,0.5433488,1.4771554,-0.38385016,0.3254512,0.44390285,-0.61302686,-0.67688227,0.5975439,0.063225254,-0.069374144,-0.19393688,-0.39370307,-0.4484206,0.3180361,0.22191966,-0.37829322,0.17491539,-0.3562411,-0.4210546,0.4010754,-0.19670488,-0.34659347,-0.44786823,0.44743901,0.52514625,-0.38060609,-0.40911436,0.17056204,0.4503666,-0.4702627,-0.3348113,-0.14162534,-0.3304479,0.3791782,-0.18993148,-0.41359153,-0.30440122,-0.16486448,-0.32130745,-0.12318398,-0.16345209,-0.5132695,0.113735415,0.06204719,-0.24582468,0.899596,-0.18741636,-0.365823,-0.9797009,-0.3962797,-0.9050964,-0.53713834,0.5816224,0.17387861,-0.3052203,-0.18868808,0.16628072,-0.009122156,-0.07644837,0.13691214,-0.34631187,0.2687271,0.075682804,0.4873145,-0.35378867,-0.81018347,0.2820143,0.090768486,-0.09134899,-0.5959328,0.78036714,0.058990933,0.645406,-0.05346742,0.042899877,-0.25829208,-0.15230197,0.14405501,-0.2067025,-0.18020888,-0.88875335,0.28274745,848 diff --git a/tutorials/zero-shot-performance/embeddings/synthetic_geneformer_embeddings.csv b/tutorials/zero-shot-performance/embeddings/synthetic_geneformer_embeddings.csv deleted file mode 100644 index 461caee60..000000000 --- a/tutorials/zero-shot-performance/embeddings/synthetic_geneformer_embeddings.csv +++ /dev/null @@ -1,1001 +0,0 @@ -,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767 -0,0.35852987,-0.21421257,-0.5082455,-0.07557819,-0.2717296,-0.046913315,-0.17160329,0.62672967,0.20821519,-0.36085624,-0.12240076,-0.2373073,-0.019471364,0.4476611,-0.13190477,-0.52289677,0.005088069,0.045875534,-0.62035394,0.49004474,-0.36717847,0.043673873,0.033167396,0.5337162,0.23451903,0.23550662,0.027586734,-0.07896665,-0.22919114,-0.1494146,-0.0018862442,0.32234845,-0.6470248,0.061529923,-0.24004515,-0.27710667,-0.11289547,-0.62836283,-0.31815663,-0.75342643,0.245698,-0.8391985,0.4552621,0.010651823,-0.17050849,0.25619063,0.14882308,0.37925386,-0.23864624,-0.2619833,0.18028742,-0.19878775,-0.11678218,-0.03336237,-0.23164108,-0.16154546,-0.6375107,0.22528999,-0.45815718,-0.16676314,-0.27613074,0.09936805,-0.2935198,0.04353342,-0.043522518,0.49668935,-0.42555183,0.05965003,0.3732496,-0.18043153,0.18441351,-0.47438297,-0.07960652,-0.20799018,0.19148259,-0.31335515,-0.27983984,0.37289268,0.23708674,0.498062,0.0053665796,-0.20504813,-0.35923514,0.100230776,0.04818035,0.46448332,-0.17679529,-0.4236625,-0.13040404,0.092667505,0.14605764,0.1974096,0.11294488,-0.25068817,-0.19547294,0.004709697,-0.098300196,0.40639353,0.48354676,-0.24269746,-0.16598988,0.16089405,0.59455466,0.31644538,-0.04994458,-0.025399057,0.09972062,-0.61006,-0.15458116,-0.0065665683,-0.034901712,0.50248617,-0.07909846,0.20163707,0.6307613,-0.21504714,-0.06680083,0.08555327,-0.02965091,0.012216274,-0.31239203,-0.15491556,0.3178152,-0.39461213,0.27747044,-0.14101951,0.609749,0.2713639,-0.7044452,0.36484382,-0.5113159,0.21385041,-0.07900966,0.44957986,0.7336626,0.5395524,0.45989183,0.69219166,-0.32560363,0.2340628,-0.14737228,-0.35397214,0.17151575,-0.32719615,-0.10907666,-0.43921915,-0.0473968,-0.2244622,-0.14761224,0.2212726,0.16717274,-0.58418745,-0.0054649794,0.12265134,0.9429278,-0.14444304,-0.14620765,0.91213775,0.8948079,0.9774156,0.0037960252,0.9995383,0.081382275,-0.17344688,0.40148753,-0.09241107,-0.79748493,0.31779397,0.32477218,-0.21265142,0.20961386,0.040076826,-0.14884557,0.6139469,-0.47081614,0.051973917,-0.19269432,0.019845966,0.1443173,-0.09972604,-0.38984865,-0.22869545,-0.13827747,-0.058908843,-0.07361946,0.25611866,-0.08374249,0.5349876,-0.19572869,1.7083514,0.025058,0.17300579,0.031277053,0.65828586,0.10424292,-0.14710875,-0.2447,0.12289012,0.23619753,0.22018744,-0.45184323,0.09286175,-0.20013529,-0.36202106,-0.082233764,-0.39810884,-0.07018452,-0.12834066,-0.4743538,-0.18727106,-0.1573364,-0.16054052,0.3973789,-2.7825809,-0.092058815,-0.013196579,0.3101617,-0.27401587,-0.31114605,-0.11416725,-0.50616115,0.46389845,0.28244987,0.5251516,-0.58482647,0.36139956,0.30665252,-0.6003221,-0.086744264,-0.7000169,-0.10933725,-0.01479598,0.3320495,0.015918072,-0.08760296,0.13040014,0.06615327,0.56667995,-0.087042,-0.004855325,0.17492229,0.4330656,0.10184202,0.48262602,-0.18056388,0.58637756,-0.47347298,-0.32545233,0.28539184,-0.2888145,0.30409607,-0.042861264,0.089299455,0.4913608,-0.42636955,-1.0284902,-0.59471184,-0.13036293,1.2141595,-0.17197777,-0.38714778,0.34882036,-0.45084083,-0.14364815,-0.03551638,0.46654767,0.07671605,0.030774005,-0.720837,-0.09302758,-0.13598947,0.10146491,0.007747714,0.01731683,-0.40135625,0.5053133,-0.121768,0.23985912,0.5059706,0.1595287,-0.24236774,-0.53446895,0.1494827,0.79186237,0.26832575,0.10851414,-0.28202647,-0.27767146,-0.3613736,-0.17143092,0.037914556,0.4694675,0.68648976,-0.052590836,0.17062464,0.2531895,0.08111814,0.0382788,-0.17824148,-0.32133728,-0.20401856,-0.021328917,0.6257246,0.80285454,-0.105349384,0.41095,0.047955237,0.38351974,-0.051984992,-0.44472092,0.4790865,0.8772223,-0.16575052,-0.28938618,0.4838157,0.3671135,-0.24646215,0.5163334,-0.4409481,-0.2431758,0.38901138,-0.1139733,-0.5280659,0.19975744,-0.28189963,0.14150691,-0.9138864,0.27700704,-0.28932628,-0.3520334,-0.6507911,-0.11114371,-3.4041317,0.120884575,-0.23811089,-0.13886738,-0.0743052,-0.09185222,0.081783056,-0.5932658,-0.61430067,0.09286586,0.07068177,0.7767568,-0.19323087,0.049549613,-0.22185214,-0.24845484,-0.38043737,0.08895346,0.37542483,0.38326886,-0.005172634,-0.45754296,-0.20460661,-0.26314986,-0.5001597,-0.03282799,-0.6741115,-0.40062162,-0.25400332,-0.5342658,-0.2824158,0.69047797,-0.29233736,0.06557308,-0.18126278,0.050960336,0.037184358,0.30677027,0.16409205,0.15415065,0.15115315,-0.095216274,0.05301695,-0.21964723,0.20766197,0.12271638,0.34695354,0.37042445,-0.03922855,0.3481186,0.592852,0.943667,-0.190412,0.9222148,0.55266094,-0.027792875,0.28178132,-0.38056836,-0.32257426,-0.43975416,-0.16236138,0.085030146,-0.4773971,-0.41665205,0.18615976,-0.36009684,-0.8747397,0.7054073,-0.063724145,0.03603877,-0.0037498316,0.16089328,0.60294527,-0.3460886,-0.11095394,-0.09118026,-0.0009955327,-0.61761665,-0.24611518,-0.43359548,-0.72620416,-0.07509403,1.0168316,-0.17809702,0.06655235,0.05907832,-0.1759964,0.03699513,0.052764136,-0.061231267,0.19844891,0.373784,-0.07748253,-0.6683351,0.47742695,-0.1639878,-0.17212394,-0.6045584,0.3409216,0.5497869,-0.659094,0.61943126,0.33630842,0.021004265,-0.19195591,-0.510083,-0.23516132,-0.13777253,-0.11043296,0.3327506,0.05850791,-0.7888833,0.39423743,0.45495814,-0.37217343,-0.8074238,0.37709108,0.020798746,-0.16944711,0.04934748,0.32254758,0.106690526,0.00015028616,-0.23220351,0.18133564,-0.38203785,0.122186586,0.28788692,-0.08237784,0.27877337,-0.31383547,-0.18468246,-0.67998254,0.1741653,-0.4154375,-0.30663013,0.3813524,0.12199309,0.062004115,0.070637256,0.1714645,0.3027863,-0.16997705,-0.0088823475,-0.16431178,-0.3208644,0.2669779,0.49267966,0.5397101,-0.595609,0.60183454,0.06571566,-0.1055074,0.179281,-0.042728543,0.4557767,-0.08248653,0.32163286,0.105355404,-0.21827014,0.1016039,0.8252695,0.06995479,0.4673477,-0.067154504,-0.0742215,0.18488051,0.15958166,0.13638894,0.143151,-0.6354755,0.16438083,-0.17437261,0.24007517,0.42747465,0.15334447,0.36577553,-0.06719879,-0.2691957,-0.014763415,0.06846536,0.048051015,-1.4080641,0.35846463,0.23364757,1.0019648,0.3265723,0.12563682,0.0810319,0.8120348,-0.17307596,0.15462966,0.4351671,-0.1322731,-0.5567985,0.54807395,-0.79945105,0.639084,0.1918897,0.008680028,0.11918228,-0.0460124,0.5832197,0.6354703,-0.21541895,-0.057069197,0.040169977,-0.26770326,0.2396595,-0.53309786,0.08523631,-0.45573866,-0.23262297,0.6415722,0.5761653,0.26325536,-0.17267331,0.0071468037,0.15268575,-0.07668133,0.21462587,-0.033202093,0.084191516,0.009145307,-0.61840236,-0.13346218,0.5679427,-0.10728487,0.2562238,-0.113128796,-0.12978461,0.2310974,-0.199944,-0.17744945,-0.2352448,-0.6812897,0.013974544,-0.47269756,-0.43848523,0.36247593,-0.047327466,0.3421239,0.24038619,0.06623384,-0.49062756,0.687019,-0.1809069,0.9047827,-0.16180745,-0.21918978,-0.38831574,0.34008986,0.2938174,-0.17228581,-0.04639437,-0.2888412,0.06793148,-0.36442515,0.32349622,-0.15648825,-0.50942284,-0.020611579,-0.021472719,0.08055806,0.5464415,-0.12836768,-0.01086684,-0.012343312,-0.23510142,-0.36434492,-0.1504065,-0.06422248,0.23340505,0.25427434,-0.08527276,-0.14148301,-0.15394889,-0.0998307,0.53896934,-0.017387072,0.41646135,0.31230685,0.06183513,-0.28754112,-0.18952173,0.2348617,0.6611923,-0.069020085,-0.25605613,-0.4023421,-0.27018687,-0.36251366,0.18637225,-0.13660458,0.45235723,0.117809914,-0.32946962,0.7018991,-0.0072814464,1.312881,-0.0272875,-0.43670556,0.20735115,0.43930048,-0.04821741,-0.052693352,-0.4937976,0.92010766,0.37839037,-0.11609553,-0.1286872,-0.37324366,0.006963118,0.21791612,-0.24265017,-0.20653799,-0.056381416,-0.5087669,-0.10627768,0.24754736,0.3141065,0.3445758,-0.23729374,0.009225086,0.17463459,0.021976693,0.140202,-0.373257,-0.19914576,0.3033414,0.36478695,-0.07949176,0.08514978,-0.48346218,0.4048394,-0.3114684,0.059049044,-0.29273346,0.22590917,-0.21693373,-0.30564144,0.28749526,-0.08790091,0.4115722,-0.33975124,-0.29543468,-0.3283071,0.4218214,0.29033664,0.19630763,0.6041275,-0.28623375,-0.03346907,0.062205095,0.52246976,0.81114185,-0.28170225,0.014253521,0.32024786,-0.06964619,-0.48870242,0.45309952,-0.27832964,0.2576748,-0.108006,-0.10356839,-0.6856925,0.1344535,0.14155337,-0.034988485,-0.06935929,-0.64306694,-0.13577406,0.20815231,-0.22202414,-0.284648,-0.5276857,0.008372796,0.61967,-0.13961855,-0.26854992,0.24165884,0.19226973,0.007988667,-0.40381482,-0.082041375,-0.22282659,0.10700525,0.08978513,-0.5643037,-0.07328473,0.0608361,-0.5252878,0.15786196,0.050977714,-0.2911066,0.049716983,-0.10921212,-0.019390147,0.9387369,-0.28561345,0.35513973,-0.47478575,-0.513146,-0.9543426,-0.3046104,0.4822649,0.070447475,0.043781407,-0.6678965,-0.03710165,-0.20288242,-0.30677977,-0.052346405,-0.49166667,0.35474586,0.061244022,0.36213705,-0.19351985,-0.6305058,0.24790902,0.10619981,-0.12269654,-0.5704042,0.4904651,0.076360054,0.81617224,0.10733033,0.16438945,0.44852144,-0.38379413,-0.24986883,-0.18403314,-0.102278,-0.5122573,-0.049635526 -1,0.39863238,-0.273572,-0.42505965,-0.11031544,-0.27156526,0.101832494,-0.20953748,0.25599176,0.0735204,-0.25725704,-0.38905454,0.034310006,0.14080906,0.38182884,-0.11651803,-0.6582459,-0.14412515,0.11437214,-0.7206662,0.41838297,-0.46793494,0.33624718,0.18360958,0.36085218,0.058530863,0.49295953,0.2939244,-0.13946961,-0.09398083,0.07988773,-0.14484712,0.07990845,-0.5958654,0.27426735,-0.25857994,-0.24809732,0.03778364,-0.34441242,-0.21278521,-0.5799447,0.10596241,-0.92089003,0.52403736,-0.12014156,-0.09864149,-0.009881432,0.09525741,0.25663617,-0.5241462,0.106645,0.14450379,-0.15791616,-0.13395524,-0.3170874,0.08455301,-0.34772086,-0.32250282,-0.050496202,-0.61618835,-0.18679254,-0.11205334,0.103072986,-0.2572232,0.0650766,0.0062198364,0.35349473,-0.4084323,-0.031195292,0.28595987,-0.30284542,0.10200938,-0.565977,0.05794124,-0.026037479,0.5874664,0.023080194,-0.10455578,0.33172697,0.2051337,0.41156387,0.26905197,-0.19210696,-0.20366849,-0.13563575,0.21251605,0.47049326,0.0148717975,-0.36838287,-0.26557276,-0.011147612,0.32647038,0.18432386,0.048443522,-0.11826121,-0.11634935,-0.19896473,-0.11999158,0.31393155,0.44855022,-0.29480156,-0.2669064,0.34810874,0.6103649,0.129971,-0.097051725,-0.094815016,0.07621501,-0.49358264,-0.14199486,0.12987591,0.046100616,0.48321372,-0.047904797,0.33472136,0.75186926,-0.18038456,0.11413305,0.0045523155,-0.021730449,-0.32089493,-0.14823672,-0.02444466,-0.0020016644,-0.37669072,-0.16173391,-0.2100315,0.7620962,0.07616083,-0.70379597,0.32236218,-0.46695226,0.083896734,-0.08417434,0.6051133,0.49964944,0.49440724,0.14528778,0.72121716,-0.34452063,0.14090618,-0.092549086,-0.48010784,0.039230082,-0.17453055,-0.06546699,-0.3987902,0.079596885,-0.07906985,0.08877273,0.013417418,0.3990512,-0.42906982,-0.051273953,0.09747814,0.75955975,-0.3758587,-0.12964238,0.689465,1.0566626,0.772982,-0.092140086,1.2017707,0.37730592,-0.16798313,-0.033106446,-0.36822933,-0.57471514,0.20465146,0.40810183,0.063385494,0.37460586,-0.076419316,-0.14665079,0.34552303,-0.33885768,0.07757723,-0.055272777,0.2934052,0.10272702,0.12080987,-0.5184246,-0.1900593,0.012227918,0.015246908,0.25436562,0.21886618,-0.21253444,0.49377728,-0.062074807,1.3679742,0.05158615,0.20647292,0.038395245,0.4963732,0.31431785,-0.052498724,-0.16143224,0.31632662,0.38964605,-0.16270778,-0.69629616,0.19307253,-0.33801252,-0.4474519,-0.22947769,-0.38627824,-0.15094557,0.11476708,-0.3934181,-0.2002336,-0.0009247192,-0.2830493,0.4120572,-2.7252414,-0.26094064,-0.093524896,0.45402694,-0.45901588,-0.17605159,-0.2457351,-0.5360395,0.20952356,0.2599654,0.50232565,-0.581574,0.5530147,0.4764922,-0.43541998,-0.3266969,-0.5540187,0.066010356,0.020786704,0.3591047,0.037934158,-0.22196914,-0.19977765,0.009962671,0.6160224,-0.10317315,0.12913968,0.5355776,0.30861267,0.26683316,0.38089746,0.012689642,0.5366942,-0.37470087,-0.10298324,0.3129706,-0.23323472,0.38050112,-0.1937075,0.098536395,0.4451365,-0.45682186,-0.82651436,-0.6941822,-0.32661125,1.1738796,-0.3294461,-0.38902798,0.10354824,0.018784964,-0.07075448,0.12900276,0.5237667,-0.12322923,0.11742433,-0.6832886,0.11019652,0.066030025,0.3343757,0.087332025,-0.08958254,-0.3190084,0.67188084,-0.12252311,0.66563046,0.18309177,0.47498518,-0.030713337,-0.37129858,0.1299567,0.93101263,0.28415674,0.005734759,-0.088219866,-0.28191283,-0.1842836,-0.09677468,-0.08488757,0.5051986,0.69774735,0.010340861,0.14355433,0.374723,-0.098613635,0.060089912,-0.07550158,-0.19249527,-0.15453193,0.07447947,0.3819777,0.7071749,-0.11309153,0.4432704,-0.33154193,0.36844066,-0.14843157,-0.55292994,0.85531723,0.42675072,-0.2550969,0.0073331213,0.5010447,0.4258632,-0.44336128,0.42692414,-0.67816025,-0.46588558,0.6039832,-0.22894728,-0.37513873,0.18527818,-0.21073452,0.22772013,-0.8728197,0.38515335,-0.23026255,-0.34457412,-0.41628566,-0.14606336,-3.2181013,0.14401378,-0.1251834,-0.1474211,-0.24243827,-0.08840787,0.24148941,-0.6891543,-0.4037507,0.16652568,0.20595993,0.63180786,0.056931585,0.2535019,-0.24696364,-0.115579024,-0.1083133,0.10623516,0.12892742,0.26600507,-0.096060276,-0.4594736,0.07318372,-0.07608005,-0.4560105,0.2634405,-0.43546417,-0.44803503,-0.12792107,-0.39133862,-0.23549329,0.5848063,-0.31934997,0.12124391,-0.25273934,0.1980678,-0.24381016,0.22877277,0.028401505,0.11243452,0.16886221,-0.13144265,0.15272914,-0.34563354,0.621865,-0.05069574,0.31341076,0.28720507,-0.092982925,0.030901859,0.54471385,0.4114196,-0.17622042,0.811729,0.29505768,-0.04371155,0.27994013,-0.20197354,-0.34126097,-0.5109938,-0.3343093,0.05492851,-0.34880516,-0.47205025,0.06377335,-0.33123994,-0.9645378,0.52603185,0.021226542,0.2195997,-0.056871917,0.30024657,0.48717877,-0.17014728,-0.041902985,-0.06818432,-0.14388704,-0.529167,-0.35292712,-0.66708046,-0.39871696,0.018313587,0.9396835,-0.36785072,-0.021541098,-0.18414159,-0.317799,0.011198674,-0.02548188,0.058711164,0.25200042,0.28447887,-0.06678581,-0.68493235,0.49177504,-0.11485696,-0.15217409,-0.46842614,0.085379325,0.6322929,-0.7945195,0.2873058,0.44131353,-0.038109463,0.06372365,-0.3770337,-0.123567946,-0.1750791,-0.07259835,0.3297348,0.15717523,-0.72945976,0.51500076,0.16313522,-0.380114,-0.7500424,0.20918791,0.059118625,-0.2296047,-0.022874832,0.21908714,0.08072265,-0.19067241,-0.35237426,0.009315951,-0.4730385,0.33187804,0.12184818,-0.10663712,0.5398627,-0.16918112,-0.24370594,-0.63230485,-0.1272938,-0.5146562,-0.08681435,0.309403,0.12752487,-0.021614019,0.03693318,0.0028613487,0.4712279,-0.3723752,-0.019839333,0.13703701,-0.22610752,0.24216366,0.34347448,0.46168542,-0.35919255,0.50823957,0.078575775,-0.14699332,0.1567595,0.09030235,0.3777633,0.22052003,0.29022846,-0.09441755,-0.07298078,0.34743777,0.604705,0.08778469,0.4534213,0.114877686,-0.28536394,0.421078,0.009987741,0.10364906,-0.017109636,-0.33769864,-0.0083570825,-0.027576884,0.08808332,0.4821219,0.42442703,0.37268564,-0.00870119,-0.21343589,0.047270656,0.12924226,-0.03613037,-0.93544525,0.3482452,0.2337579,0.8055239,0.3524537,0.046263523,-0.19568014,0.6633674,-0.2804518,0.19162318,0.23482691,-0.005626274,-0.48028,0.6468097,-0.5015535,0.46044272,-0.14480723,-0.17153557,0.11799973,0.054707963,0.14046787,0.8974284,0.033896882,0.07101183,-0.0029541627,-0.18515565,-0.07153869,-0.34202388,0.04920596,-0.55535764,-0.263445,0.73163444,0.24515724,0.3534101,-0.12585457,-0.14438382,0.028631046,-0.15315612,0.2999727,-0.08054719,0.15228336,0.09204694,-0.5688541,-0.36075693,0.49706745,-0.027756363,0.17443576,-0.16106476,-0.25330988,0.06694684,-0.2320318,-0.020995455,-0.04844915,-0.56774473,0.0152695095,-0.28339434,-0.37441233,0.32032737,-0.2049969,0.1694571,0.15424134,-0.0855899,-0.25397205,0.25446948,0.14490283,0.794293,0.19527404,-0.31977087,-0.45333418,0.03745153,0.41127983,-0.32542756,0.13229147,-0.39991835,-0.05741722,-0.50500786,0.63630533,-0.11891121,-0.23297584,0.20903768,-0.29012045,-0.038238984,0.5491907,-0.0022294351,-0.15821746,0.08565588,-0.041894894,-0.49846077,-0.02707845,-0.44117805,0.14354646,0.34196573,-0.034552317,-0.06413106,-0.22104444,-0.0331235,0.53215986,0.08276609,0.41740724,0.29825434,0.0067322636,-0.26845992,0.034786787,0.22243692,0.44717938,0.19558798,0.028362658,-0.5754324,-0.47277483,-0.30559975,0.0126961125,-0.14893699,0.030104158,0.074027516,-0.20547625,0.7962743,0.039269477,1.0507278,0.18043056,-0.21381375,0.1175412,0.5485863,0.042171873,0.12317855,-0.4240849,1.0732104,0.59503144,-0.11544638,-0.087404355,-0.39427176,-0.23584107,0.28041354,-0.3715736,-0.16411391,-0.14312407,-0.5909063,-0.48613772,0.19580677,0.1578883,0.035135113,0.009452651,-0.021253254,0.020187667,0.15484874,0.33478686,-0.7095265,-0.19996567,0.2865085,0.15706892,-0.03421034,0.29016808,-0.44716167,0.5292513,-0.6843303,0.06879928,-0.38548556,0.176074,-0.09269256,-0.4120596,0.14334224,0.1954236,0.42219567,-0.36425966,-0.52593803,-0.19510259,0.5417152,0.020358844,0.19843303,0.58386344,-0.24453963,0.033554655,0.0453755,0.592228,1.1737021,-0.29348373,0.087489046,0.4026915,-0.4205799,-0.6431249,0.31259054,-0.36196858,-0.012643673,-0.25700757,-0.45634767,-0.49202308,0.39114258,0.18833189,0.068895526,0.111725844,-0.5813592,-0.14203937,0.26197177,-0.2904956,-0.15354612,-0.11730518,0.29819116,0.62841976,-0.2942416,-0.16540751,0.12560149,0.31059012,-0.2222412,-0.4225962,-0.2299392,-0.30343676,0.20487905,0.17325208,-0.18054414,-0.20313573,0.088970505,-0.32933873,0.059311543,0.1391996,-0.37769574,0.03747895,-0.16315429,0.12021746,0.74775493,-0.07230694,-0.010242773,-0.6974209,-0.3749446,-0.91243464,-0.49316505,0.31000543,0.2095644,-0.053366426,-0.50644714,0.037978493,-0.09508221,-0.09680111,-0.013643826,-0.55864155,0.38252956,0.07884494,0.40918282,-0.25449824,-0.8724977,0.09124816,0.10228886,-0.30167308,-0.558204,0.5847507,-0.08737576,0.8607982,0.031209975,-0.14745148,0.12705623,-0.57622576,0.035543535,-0.41525427,-0.100697145,-0.6432126,0.008452156 -2,0.6058696,-0.009347899,-0.4321522,-0.2778716,-0.4641142,0.10259865,-0.26650864,0.041819137,0.3296782,-0.31691402,0.05357182,-0.12753187,0.04816172,0.47952223,-0.16366217,-0.89477795,0.15055166,0.20957755,-0.5828438,0.27973944,-0.6167325,0.44676757,0.1707107,0.25276133,-0.0026590307,0.18589664,0.2976239,-0.12498249,-0.04399254,-0.17766021,0.034133818,-0.015106456,-0.71695536,0.21853903,-0.07112758,-0.4644014,0.087096535,-0.51121473,-0.31716534,-0.55303365,0.2575709,-0.74899113,0.49272925,-0.038294595,-0.26377302,0.062666014,0.07556074,0.42242455,-0.22579943,0.14509614,0.12895793,-0.36270857,-0.14331634,-0.11443852,-0.29654366,-0.43314308,-0.5981704,0.020032806,-0.6367579,-0.13232312,-0.40689155,0.25573877,-0.33340475,-0.017483745,-0.043848872,0.30814758,-0.337405,0.046029065,0.35300255,-0.23724361,0.16714568,-0.23420255,-0.20025346,-0.12169246,0.36477962,-0.09264479,-0.26437017,0.30106753,0.42017168,0.48096004,0.18562365,-0.34954458,-0.18005213,-0.15728116,0.053531613,0.7063565,-0.13030766,-0.21553648,-0.35147232,-0.07631575,0.23772693,0.21784154,0.0045473897,-0.41856378,0.06711047,0.16207044,-0.31266308,0.49723414,0.5065364,-0.46855968,-0.14937124,0.34303817,0.35594827,0.04868049,-0.045856792,0.22214219,0.047861207,-0.554923,-0.2830707,0.24258433,0.09554179,0.58515835,-0.12129136,0.21967933,0.73157847,-0.32890722,-0.06365546,-0.069624424,-0.16916369,-0.0016648769,-0.25780421,-0.08029228,0.24360107,-0.6254301,-0.08911024,-0.27707335,0.9158169,0.2409736,-0.8644987,0.46708798,-0.58155745,0.15988946,-0.19371161,0.600539,0.77207977,0.35706946,0.19870755,0.70074147,-0.57827675,0.21828726,-0.08878745,-0.48045376,0.13940258,-0.13212009,0.18710746,-0.39658356,0.08043645,0.027782751,0.016771723,0.10801971,0.3502481,-0.4049662,-0.08374568,-0.08714269,0.6763302,-0.43132344,-0.09369848,0.9592141,1.0378834,1.04538,0.16817716,1.4176282,0.52499473,-0.15380771,0.07904478,-0.21547095,-0.48874903,0.12602101,0.30350593,0.101585336,0.1837945,0.20709093,0.0039469856,0.3384116,-0.22036695,-0.12051221,0.020325964,0.30790487,-0.15407589,-0.049719453,-0.597122,-0.30993956,0.10279751,0.026790997,-0.06291335,0.41003373,-0.18336432,0.4553278,0.09394076,1.2691069,0.095551565,0.06158424,-0.20191118,0.36540487,0.2601638,-0.22558202,-0.22420819,0.09122044,0.27537194,-0.09419246,-0.53876495,-0.08685016,-0.2822464,-0.25510678,-0.28144854,-0.39864334,0.035987176,-0.16779526,-0.3202398,-0.07636547,0.08532877,-0.33594507,0.64707464,-2.4839623,-0.39178148,-0.032300033,0.36402926,-0.14189097,-0.29678735,-0.14689626,-0.58607864,0.3145531,0.31673452,0.38609666,-0.61973864,0.40841824,0.33554527,-0.31859833,-0.29528496,-0.8650318,0.021730209,-0.15197983,0.25232446,-0.12951235,-0.09080408,-0.194465,0.23211493,0.731883,0.034944944,-0.004106351,0.07223939,0.40262723,0.07815493,0.6047388,0.10031142,0.62653786,-0.24593702,-0.18630205,0.25710306,-0.23847923,0.28358465,-0.1046604,0.15911542,0.3600463,-0.5246393,-0.8908878,-0.69227105,-0.4119127,1.1373062,-0.3740855,-0.37420934,0.26454934,0.081883736,-0.1345432,0.041574784,0.4053122,0.043766737,0.047517896,-0.54418224,0.11693765,0.04053119,-0.025614215,-0.05674381,0.18405195,-0.31982136,0.59746784,-0.3394391,0.29842123,0.32217264,0.30482492,0.014622961,-0.3827674,0.19591066,0.9613424,0.2435437,0.109278746,-0.23284487,-0.33919182,-0.2052856,-0.21969448,0.06801047,0.45814487,0.8955759,-0.05141469,0.11134652,0.40011173,-0.190479,0.22399881,0.0791984,-0.3495531,-0.022552509,-0.1304113,0.62365,0.5669912,0.024299424,0.43628582,-0.11325619,0.10559923,-0.15687779,-0.4774545,0.4798334,0.7309656,-0.23588453,-0.16666918,0.54366314,0.2761338,-0.30614814,0.46698257,-0.5120188,-0.23533256,0.5911297,-0.0012787239,-0.34650594,0.06605207,-0.32394943,-0.0049598366,-0.9403515,0.46841264,-0.09290565,-0.6516567,-0.22360162,-0.0993471,-4.110858,0.26071742,-0.12931035,-0.06484168,0.061586864,-0.2142789,0.35365412,-0.46051043,-0.4389952,0.12620626,-0.03548629,0.65761715,-0.15716438,0.21372442,-0.34363338,-0.16541053,-0.4109021,0.17566037,0.12234897,0.28187853,0.008517759,-0.2225789,0.2362539,-0.45510128,-0.51984435,0.099872656,-0.5881262,-0.5109607,-0.09412212,-0.44524235,-0.5308894,0.88494444,-0.3839329,0.025682671,-0.36654577,-0.03913958,-0.27849963,0.46770597,0.12509911,0.12701748,0.055699773,0.061546665,-0.30134597,-0.39134064,0.39010996,0.14463556,0.27672836,0.34561083,-0.20788436,0.1601458,0.60557836,0.5467708,0.09592239,0.6861225,0.19451205,-0.048899166,0.2340421,-0.3985992,-0.19469701,-0.591638,-0.44085482,-0.36284587,-0.47928572,-0.4905899,-0.20056894,-0.3319673,-0.7295739,0.4638939,0.06756426,0.06518081,-0.2331749,0.21885101,0.29864857,-0.19846983,0.0006002709,-0.09758147,-0.19667901,-0.5746228,-0.35803133,-0.6665255,-0.62891257,0.25816777,1.0454596,-0.1851646,-0.011277258,-0.095529266,-0.19058728,0.18298987,0.09110524,0.21605645,0.14802702,0.39930704,-0.1555917,-0.70597744,0.29330984,-0.32887602,-0.11481087,-0.6372591,0.12773229,0.7364628,-0.62526006,0.54788125,0.4234031,0.27957642,0.21688983,-0.46697998,-0.3004391,0.078637876,-0.218151,0.50983447,0.05874557,-0.8613127,0.5391927,0.23454131,-0.19919078,-0.6515202,0.5922617,0.077211894,-0.08083155,0.1447164,0.3516027,0.22006524,-0.07712083,-0.11485882,0.20544638,-0.65816116,0.35409886,0.33817106,0.10146532,0.41515952,-0.06556462,-0.24324942,-0.5801662,-0.264133,-0.4672512,-0.2743983,-0.034710407,0.06340194,0.14360197,0.1854309,0.20364197,0.43455526,-0.5005383,0.06838802,-0.06431467,-0.32159665,0.3613116,0.5561839,0.45724827,-0.43352905,0.57251376,0.053223945,0.059800923,-0.21649064,-0.0040938174,0.5013285,0.20538066,0.27074176,-0.033663657,-0.18256414,0.013988967,0.59631336,0.16037811,0.34362602,0.24005553,-0.13588418,0.33072644,0.24714826,0.13675308,0.2188627,-0.13847755,0.0058937436,-0.0675426,0.13450916,0.4314348,0.18787266,0.27840862,-0.09384819,-0.2087345,0.13851455,-0.0674175,-0.16856413,-1.2893698,0.29761034,0.20731282,0.49788707,0.4506409,-0.022370653,0.05018026,0.49845535,-0.25650954,0.06355916,0.34222487,0.057354588,-0.21813305,0.5495305,-0.69751227,0.5879601,-0.15414338,0.08104162,0.18799217,0.15719306,0.35929725,0.92797893,-0.090038255,0.1752443,-0.13789542,-0.2509735,0.057208598,-0.35362878,0.102136016,-0.55143464,-0.15700367,0.79454523,0.30858088,0.27251473,-0.20995538,-0.06861709,0.1282069,-0.13077743,0.11828072,-0.00083202124,-0.08210676,-0.039197564,-0.635747,-0.34237072,0.60045844,-0.19093339,0.04949125,0.11823023,-0.2024389,0.26984218,-0.21454038,-0.01033995,-0.013996713,-0.70227224,-0.1605133,-0.44294325,-0.35180554,0.2536095,-0.45764595,0.2652179,0.15812835,0.023884399,-0.25616974,0.2180551,0.2673659,0.847562,0.030383144,-0.34427366,-0.32117224,-0.002326199,0.38309446,-0.3184627,0.021069279,-0.24169922,0.10534392,-0.6655798,0.43869135,-0.21534903,-0.17470002,0.021002522,-0.031181829,-0.011149533,0.42826837,-0.3015971,0.040957756,0.13448516,0.022611966,-0.24556038,-0.016756508,-0.22872151,0.14171639,0.07276417,-0.1896606,0.15948413,-0.21605618,0.08625839,0.27401203,0.08982624,0.23331083,0.113304295,-0.014072333,-0.18611611,0.01366485,-0.14114435,0.27839497,0.008689796,-0.121088155,-0.47368807,-0.12563726,-0.11916561,0.3148063,-0.08006348,0.020851118,0.08265139,-0.31987593,0.7830105,0.032673534,1.1971253,0.1993912,-0.369333,0.17857711,0.4502643,-0.04887302,0.03124699,-0.35173398,1.0005686,0.52815735,-0.12775892,-0.2606216,-0.54387885,-0.37865475,0.24390122,-0.3256057,-0.35348126,-0.0074995374,-0.59051543,-0.21671762,0.08036523,0.09975498,0.117169745,-0.049094982,0.076998435,0.26603064,0.13297643,0.48065025,-0.60920376,-0.036063068,0.2981895,0.41926318,0.061356064,0.3238778,-0.27591652,0.38233835,-0.6869167,0.18450868,-0.44684213,0.09647701,0.00608535,-0.29146072,0.25221404,0.2359551,0.29717645,-0.092423156,-0.31642607,-0.12275352,0.60062164,0.16933462,0.19067006,0.81819314,-0.32799673,-0.25112882,-0.020434638,0.34801355,1.3149902,-0.09313183,0.060946804,0.45374757,-0.2763275,-0.50880444,0.26151183,-0.36193228,-0.028983181,-0.09146146,-0.23558652,-0.5026846,0.24524136,0.12818092,-0.054249592,0.19760896,-0.49179977,-0.20973442,0.2892101,-0.25421298,-0.4045295,-0.30977988,0.3858181,0.69094497,-0.43679208,-0.33809352,0.011986213,0.22278294,-0.21605322,-0.5595956,-0.01569954,-0.16383922,0.30756027,0.105479375,-0.37828058,-0.12688133,0.26330703,-0.30604914,0.02740957,0.36275476,-0.22953586,0.12961617,-0.17371735,-0.069198325,1.0799098,-0.045971334,0.22802809,-0.7377202,-0.60977757,-0.892965,-0.39836296,0.16624829,0.28300807,0.03250331,-0.35056072,-0.09748063,0.11821677,-0.029464126,0.13022436,-0.61687976,0.2824559,0.093301274,0.36517993,-0.02775045,-0.9698428,-0.054793037,0.16464235,-0.26231256,-0.6715189,0.55214655,-0.21007837,0.79930156,0.15312438,0.07471643,0.09206115,-0.47041157,0.2962641,-0.38619575,-0.14542988,-0.6445386,0.014669026 -3,0.42515898,-0.1567503,-0.34909266,-0.2250879,-0.054117795,0.058973845,-0.059497602,0.36686566,0.17119867,-0.554357,-0.20148963,-0.24076986,0.12554793,0.29781628,-0.34085575,-0.91402787,-0.106521316,0.12642623,-0.2670089,0.5891684,-0.42302614,0.35866314,0.029808393,0.10335498,0.0004410652,0.29012865,0.29976812,-0.30298856,-0.39072257,-0.07887215,-0.12288023,0.44212216,-0.52751744,0.17434885,-0.016205018,-0.22621974,0.094745584,-0.42764282,-0.41924095,-0.76436603,0.29557276,-0.8917357,0.41585782,0.17910911,-0.004049503,0.27813154,0.0029857617,0.019714935,-0.26425773,0.1706561,0.08152076,-0.082242176,-0.11376819,-0.15365694,-0.4056556,-0.5547032,-0.66122437,0.13404188,-0.33255386,-0.34934172,-0.17416325,0.11997131,-0.4088671,-0.14838132,-0.11564095,0.4035033,-0.49387836,-0.048604615,0.24721281,-0.085114166,0.19773293,-0.6029084,-0.32915622,-0.1994536,0.16789037,-0.4954631,-0.052993186,0.19805796,0.42802766,0.46204054,0.051296372,-0.18195003,-0.28926304,0.022501977,0.32826847,0.5818357,-0.34564817,-0.83927834,-0.10176949,0.13253905,0.15833338,0.09626949,0.12653027,-0.35971716,-0.051364206,0.15603939,-0.34451205,0.42822626,0.49673426,-0.3801081,-0.26491216,0.2805373,0.35973945,-0.027046273,-0.096986406,0.0015103221,-0.06725198,-0.5023276,-0.17226723,0.45792153,-0.15810555,0.6174522,-0.21246631,0.18958634,0.634263,-0.47321162,0.165807,-0.082147315,-0.04457069,-0.09310529,-0.17787634,-0.20122069,0.18839614,-0.37203312,0.21724503,-0.20511185,1.0184655,0.35336787,-0.8652357,0.39439386,-0.56766456,0.2224442,-0.13450098,0.6241736,0.29968202,0.24372926,0.3870064,0.55333036,-0.519606,0.07229281,-0.05176809,-0.48719832,-0.23264448,-0.046968963,-0.10459741,-0.3319112,0.08069785,-0.010527945,-0.06415927,-0.14353393,0.5069579,-0.4931486,0.016997214,-0.037964728,0.77288777,-0.4171054,-0.13954781,0.7001991,0.9002753,0.91774184,0.10647451,1.3293178,0.45062155,-0.209696,0.10002101,-0.5210176,-0.70637006,0.29863426,0.4960899,-0.56761956,0.24515916,0.06877648,-0.07788043,0.08006798,-0.32847497,0.059079316,-0.50442314,0.1568062,0.110335544,-0.020696832,-0.45024192,-0.17065045,-0.050395012,-0.050228532,0.22174254,0.05995495,-0.20605828,0.12004778,0.11754273,1.4299653,-0.13373497,0.007523491,0.05630559,0.42158747,0.15578038,0.22108838,0.112379804,0.3831116,0.4373389,0.12740138,-0.6825845,-0.08927751,-0.22031267,-0.5787914,-0.15399227,-0.26253635,0.068001054,0.06452692,-0.38824257,-0.13582337,0.006026733,-0.39757445,0.5387587,-2.2428288,-0.16290396,-0.17759845,0.27180105,-0.24605489,-0.39771712,-0.16282889,-0.39808157,0.326112,0.2899515,0.44714525,-0.81315386,0.32989424,0.40761292,-0.27565092,-0.10010863,-0.7247388,-0.022648709,-0.16821066,0.3428079,0.00041090065,0.12909485,0.16585721,-0.06913931,0.4923793,-0.023095636,0.023674872,0.25644737,0.42718756,0.2639863,0.41053817,0.15447924,0.520966,-0.17067896,-0.14936854,0.33920956,-0.31749916,0.18139113,0.07435271,0.10765167,0.11459768,-0.5344622,-0.91599977,-0.7483373,-0.6518646,1.3458651,-0.225768,-0.31933016,0.226346,0.1642336,-0.17863856,-0.22632265,0.27333724,-0.3335852,-0.067911774,-0.77558243,0.099140376,0.045500323,0.17325518,0.07499992,0.20430909,-0.2960227,0.67893577,-0.27928331,0.26250184,0.35523617,0.15802477,-0.1879912,-0.58002484,-0.06975376,1.1683567,0.22158106,0.17353612,-0.10093866,-0.36883456,-0.1078988,-0.073114015,0.06645454,0.48116794,0.7854688,-0.024456583,-0.05720857,0.44169456,0.07204758,0.15357126,-0.23200567,-0.41796604,-0.12779877,-0.05925228,0.59584695,0.14479941,-0.36829087,0.5258916,-0.22433384,0.39675742,-0.0046604024,-0.27341557,0.42197964,1.354351,-0.20425265,-0.24648967,0.5949583,0.48117527,-0.4533157,0.30481544,-0.6831928,-0.1869317,0.44317305,-0.25387695,-0.35080808,0.38564065,-0.32557422,0.12141358,-0.9815273,0.50277746,-0.26037934,-0.33566368,-0.39358842,-0.08100414,-3.7743764,0.14554,-0.43310654,-0.26709443,0.011624419,-0.07933734,0.09135933,-0.54137903,-0.5441208,0.21145883,0.07869117,0.3526201,0.020169573,0.24225599,-0.1466658,-0.023798106,-0.3146801,0.15920965,0.018860973,0.3477551,-0.07678286,-0.475899,0.16543773,-0.18276533,-0.3251781,0.27834398,-0.6378377,-0.5760817,0.0340493,-0.6952307,-0.5125148,0.6222215,-0.46736974,-0.028553527,-0.20961991,0.081377655,-0.3714934,0.43954885,-0.01703775,0.28813714,-0.13587011,-0.05277011,0.013265165,-0.115642466,0.566069,0.07724655,0.2584539,0.29675525,-0.2119568,0.10897167,0.5322495,0.45485628,0.24855591,0.7086792,0.5950167,-0.0807501,0.2385722,-0.3141851,-0.088672474,-0.7033818,-0.51408863,-0.0018238104,-0.38505876,-0.5944568,-0.150677,-0.31186527,-0.758849,0.54373795,-0.2131272,0.10917016,-0.022780318,0.26591504,0.5583425,0.09722642,0.17919217,0.006472927,-0.14851148,-0.44359568,-0.25458205,-0.69626415,-0.2717489,0.11156556,0.8137299,-0.107483074,-0.2214686,-0.12999783,-0.266854,-0.06804986,0.037320115,-0.02382503,0.25273806,0.4719165,-0.12806782,-0.86275446,0.39104506,-0.052471254,-0.22846518,-0.38909,0.16441195,0.7468723,-0.87109345,0.661525,0.3644288,0.0912296,0.040267807,-0.39285976,-0.46157366,-0.028652139,-0.27133214,0.30181974,0.092368916,-0.6410914,0.49673337,0.4933663,-0.22357567,-0.6965185,0.54723793,0.16951157,-0.21983245,0.13407055,0.4179518,0.11156077,-0.081308894,-0.290125,0.29649562,-0.46341902,0.36541444,0.20157552,-0.017131846,0.24303426,-0.0018571776,-0.2056396,-0.75635517,0.06954288,-0.4704108,-0.3994018,0.14520839,0.14745656,-0.08500433,0.16457668,-0.08671255,0.5029181,-0.31951746,0.023546187,0.17220101,-0.17321569,0.14351362,0.33741426,0.30737692,-0.37169155,0.5524363,-0.102754965,-0.04257036,-0.08783904,0.15080395,0.4648876,0.24566022,0.17488848,0.21918161,-0.192165,0.47860926,0.7169623,0.24219392,0.6337058,0.1484033,-0.10504316,0.5346205,0.15350547,0.09665064,-0.07910558,-0.3443603,-0.18530783,0.1499004,0.07036235,0.44442436,0.09032362,0.44788486,-0.22244233,-0.3958248,-0.082134046,0.28580585,0.037581682,-1.0276212,0.26626205,0.022502385,0.6460875,0.6116126,-0.16675392,0.16733009,0.4345819,-0.279896,0.107178226,0.39468926,-0.103265114,-0.643852,0.47449574,-0.40891713,0.2679407,-0.22289136,0.16289029,-0.10414056,0.19069569,0.16890056,0.95413023,-0.075236164,-0.023499493,-0.10565661,-0.1635091,0.14606068,-0.52212274,0.28609383,-0.45409408,-0.18900433,0.57431877,0.4522413,0.3300121,-0.07505496,0.0069547687,0.09730645,-0.17975691,0.27095687,0.05281386,0.095070824,0.07361173,-0.809665,-0.3444142,0.80976415,0.11074098,-0.022765096,0.022084204,-0.32175776,0.40223557,-0.12400421,-0.114514105,-0.0026088862,-0.59457624,-0.110241905,-0.17087437,-0.4453333,0.1543118,-0.17958252,0.3048182,0.29049122,-0.09243755,-0.440321,0.011761537,0.394578,0.5514447,-0.12725395,-0.38248575,-0.49787518,0.04673756,0.3259571,-0.1292949,0.023353457,-0.08359191,-0.049429115,-0.54685366,0.56343746,-0.02192213,-0.3381721,0.0032194233,-0.18850829,-0.18931256,0.5558496,-0.1356484,-0.010489435,0.014374178,-0.118827336,-0.26981562,-0.05962408,-0.08965523,0.17713341,0.31374773,-0.22262059,-0.048935,-0.2379993,-0.1187489,0.4213289,0.014657135,0.3075449,0.4231786,0.34337524,-0.39104223,-0.28494665,0.14233747,0.4390051,0.1035574,-0.10082586,-0.15670505,-0.37272498,-0.15893814,-0.22903347,-0.25677535,0.19570774,0.052849777,-0.685723,0.75720143,0.11104759,1.3191789,-0.020967295,-0.24831173,-0.21295816,0.45226353,0.09204389,0.12065169,-0.2838075,1.108079,0.55237603,-0.0065874136,-0.18426694,-0.4901059,-0.1385716,0.0945776,-0.12653616,-0.26366588,0.11317647,-0.5588113,-0.5992769,0.31682867,0.2470265,0.026380774,0.16539901,0.16483101,0.13957126,0.06818858,0.6125125,-0.5641576,-0.06415016,0.051246226,0.25087345,0.20559905,0.20293346,-0.4132315,0.31478527,-0.40004683,0.22134934,-0.15350524,0.17543444,-0.065917626,-0.16399327,0.22122517,-0.042968955,0.5148567,-0.3347584,-0.467063,-0.14807048,0.61631656,-0.12783375,0.09066464,0.63500684,-0.21215703,0.20086119,0.056588013,0.7563592,1.387,-0.01988964,0.06758605,0.34672868,-0.32020304,-0.6727656,0.37511784,-0.100875184,0.11037568,-0.10903808,-0.19036879,-0.5609559,0.23153001,0.22635548,-0.039094087,0.19243965,-0.35245174,-0.32319066,0.3898431,-0.39076173,-0.28814816,-0.28791195,0.33431652,0.8257961,-0.5873317,-0.22381867,0.036069777,0.1098945,-0.31999376,-0.54004204,-0.17710637,-0.32381195,0.4821417,0.20242819,-0.12549534,-0.12851194,-0.013010764,-0.2217628,0.0816875,0.3213765,-0.40942815,0.12595853,-0.051914968,-0.19758508,0.81035763,-0.19601056,-0.0657223,-0.66879964,-0.41760108,-0.9711539,-0.39764327,0.71437305,0.115133695,-0.044907805,-0.58543676,0.062252674,0.19197583,-0.24359182,0.038847033,-0.48731497,0.4648728,0.09306416,0.5007306,-0.08558107,-0.6982091,0.14496213,0.1299846,-0.030846275,-0.6092954,0.535517,-0.081090204,0.80279285,0.041851915,0.008913485,0.33179423,-0.3536447,-0.12825094,-0.21181448,-0.2872031,-0.73683524,0.11966784 -4,0.443805,-0.34984604,-0.54177845,-0.06778514,-0.27440813,-0.11081444,-0.12182994,0.3305448,0.29875264,-0.11133403,-0.2566531,0.12255074,-0.09610592,0.39969245,-0.07567973,-0.8430162,-0.17277773,0.29881606,-0.86845046,0.71823037,-0.46147698,0.42229584,0.13321398,0.29390123,0.050285775,0.23266728,0.13634065,-0.006304992,-0.07020875,-0.15676372,0.06180271,0.04473565,-0.5691623,0.28014472,-0.14184144,-0.37519678,-0.1100512,-0.4237049,-0.22344258,-0.8374856,0.27180356,-0.8200102,0.64240706,-0.08338689,-0.24555305,-0.13026036,0.13184047,0.3712981,-0.371233,0.051845312,0.32611975,-0.16653886,-0.36976427,-0.23032644,0.20553434,-0.41138932,-0.5427596,-0.06969359,-0.51779,0.0010761534,-0.0859079,0.25807497,-0.29705933,0.098973885,-0.27871862,0.3830647,-0.41412732,0.019718958,0.28170872,-0.023502022,0.07402492,-0.602893,0.10621558,-0.15522698,0.45561734,0.03815582,-0.33355328,0.37159246,0.35511497,0.4286047,0.29019094,-0.31144714,-0.14404488,-0.0014536828,0.066486515,0.40297982,-0.2199349,-0.36242983,-0.119782925,0.21014749,0.5984382,0.25225335,0.14258696,-0.22795267,-0.076743565,-0.2326762,-0.03271074,0.55003947,0.58834964,-0.19605374,-0.2214805,0.4501691,0.46894404,0.29352826,-0.024978569,-0.058901787,-0.09023634,-0.5828511,-0.19319889,0.10826712,-0.104528345,0.54783297,-0.16866057,0.111732736,0.6484114,-0.107587084,-0.2695861,0.15797327,-0.06562201,-0.08454609,-0.20329584,-0.3471754,0.29218724,-0.5325661,0.025861373,-0.39933035,0.61998624,0.109855704,-0.85222197,0.3285591,-0.5743141,0.15787195,-0.072961636,0.7082239,0.88614464,0.6828915,0.22784315,0.7880622,-0.294738,0.24210857,0.02706028,-0.38045582,0.073178925,-0.18402256,-0.100740485,-0.5264953,-0.002819108,-0.34117118,-0.17481089,0.13269503,0.40256187,-0.63014877,-0.24085544,-0.032928802,0.56868106,-0.2862704,-0.12139385,0.9871036,1.0004605,1.1294343,0.16095679,1.2061098,0.3500951,-0.19267742,0.01369427,-0.3705395,-0.7738549,0.2442974,0.30876145,-0.2568684,0.4333658,-0.06481352,-0.08307685,0.341933,-0.34887984,-0.17424473,-0.11504738,0.39878908,-0.069177516,-0.3073032,-0.30677494,-0.12961076,-0.008476696,0.03852127,0.039171,0.29004636,-0.23086762,0.45745808,0.07498254,1.1061089,-0.14231822,0.029344933,-0.010160087,0.25021598,0.30151907,-0.30377755,-0.111590885,0.2726334,0.522056,-0.08630676,-0.6736482,0.16819918,-0.4594654,-0.46997574,-0.19832458,-0.108115815,-0.11633842,0.09549241,-0.35069826,-0.29796377,0.033423793,-0.09951433,0.4451916,-2.5015354,-0.33423635,-0.16556264,0.44993386,-0.26811495,-0.20010647,-0.010703291,-0.51596016,0.39288568,0.104738355,0.5087324,-0.7920107,0.65259606,0.2791245,-0.66975003,-0.15672931,-0.7654982,-0.03416651,0.094401546,0.40901068,-0.016987631,-0.026216421,-0.00168487,0.06272137,0.59416705,-0.061773565,0.13834395,0.6321763,0.5074381,0.035867453,0.3712024,-0.034863625,0.72371644,-0.42826286,-0.14785452,0.3098099,-0.34767637,0.42741606,-0.03742242,0.05644747,0.6133181,-0.6284753,-0.85346174,-0.5582698,-0.16236508,1.0060656,-0.26545617,-0.38456264,0.19026934,-0.30393776,-0.1596829,0.04579727,0.46827865,-0.22690476,-0.07079869,-0.7541572,-0.045364566,-0.018130269,0.2714828,-0.07034213,-0.11076845,-0.35748497,0.7467829,-0.099259056,0.5718921,0.33574295,0.3498251,-0.39020494,-0.4222642,0.079427205,0.7131228,0.503769,-0.076153465,-0.10404278,-0.16301452,-0.13341692,-0.05185161,0.088136606,0.6601719,0.55423695,-0.11295331,-0.008274888,0.28558564,-0.11690613,0.07004479,-0.14802177,-0.1513255,-0.20707515,0.032407966,0.42078575,0.88867337,-0.12300219,0.59330255,-0.17023274,0.27492923,0.07143646,-0.6929162,0.7156364,0.6184121,-0.26168764,-0.13093407,0.5164632,0.2107376,-0.10355925,0.5180438,-0.5234146,-0.22663581,0.49983093,-0.1386724,-0.3343521,0.16958252,-0.22518349,0.17792661,-0.77211887,0.50330174,-0.53876036,-0.55489415,-0.60097635,0.07017262,-2.6001112,0.25826505,-0.27349487,-0.083470725,-0.31553108,-0.0927739,0.26450196,-0.7636122,-0.738392,0.24156703,0.3583424,0.6129457,-0.08064033,0.13914669,0.025762673,-0.40394992,-0.13296916,0.29298028,0.1846977,0.232828,-0.07946717,-0.39290807,-0.19324888,0.07659681,-0.47717986,0.120551236,-0.56251436,-0.5254292,-0.05596701,-0.6376395,-0.19569243,0.68047297,-0.30164057,-0.00693469,-0.18094337,0.0601029,-0.09495652,0.118199505,-0.028866228,0.277654,0.14134802,-0.23565693,0.24395251,-0.12955837,0.30692333,0.011686106,0.40741116,0.1503642,-0.15094323,0.31403086,0.5154998,0.7808313,-0.2695805,0.80210066,0.6227214,-0.121198654,0.18430576,-0.11629016,-0.42369124,-0.64350086,-0.41531903,0.0926775,-0.45421267,-0.42362887,0.15356341,-0.3898379,-1.0410691,0.4479272,-0.04249386,0.21535842,-0.017238757,0.18531151,0.4412234,-0.15126263,0.087814845,-0.15176125,-0.2593333,-0.3587081,-0.27063277,-0.6450558,-0.4540944,-0.038212955,1.2795953,-0.25989124,0.20198894,-0.08859669,-0.27570575,0.13967228,-0.06255867,-0.08786757,0.22347607,0.24070178,-0.12576017,-0.60335416,0.31581494,-0.15586302,-0.09243335,-0.5075313,0.37047818,0.7016533,-0.57023394,0.52127236,0.2980523,-0.106865235,-0.15213081,-0.7405649,-0.084700994,0.17545196,-0.1592904,0.4465477,0.27910945,-0.73694927,0.49806675,0.32727972,-0.52650285,-0.78304845,0.280278,0.10417851,-0.26904464,-0.1287641,0.34633487,0.117014065,-0.15383725,-0.3330875,0.4601243,-0.30448455,0.35383043,-0.01307869,-0.24611366,0.060608607,-0.17497213,-0.3744204,-0.81201756,0.17642792,-0.6165136,-0.20291097,0.32465944,-0.0038312376,0.1547073,-0.052376866,0.25509536,0.54592806,-0.4706702,0.18157108,-0.0051161177,-0.47427914,0.23001477,0.5670287,0.37311822,-0.3005516,0.32727858,0.19161479,-0.19090499,0.026528835,0.10308372,0.54807556,0.071742766,0.29748058,-0.010844682,0.043303855,0.34004933,0.8853909,0.08302448,0.27866465,-0.06814565,-0.25239035,0.23265973,0.015655216,0.38076234,-0.15768838,-0.37046078,0.052901182,0.26907524,0.11668988,0.5823587,0.29479617,0.23699905,-0.051146444,-0.32045624,-0.07644721,0.11991747,0.101686105,-1.2979718,0.5842966,0.18131621,0.9551102,0.51301473,0.21114753,-0.1212132,0.67791575,-0.29966733,0.062195394,0.33296177,-0.119092636,-0.37875694,0.4451711,-0.71322757,0.32087448,-0.02380016,-0.019052727,0.2639361,-0.035284333,0.22063425,0.77948666,-0.15839954,0.03369807,-0.044766936,-0.052744243,-0.10960772,-0.33690712,0.016899185,-0.44392422,-0.4384663,0.92937285,0.28964043,0.30032095,-0.14418276,0.0332584,0.1675214,-0.19620578,0.18508814,-0.099334136,0.071898736,-0.0054119057,-0.341708,-0.10090289,0.52372986,-0.03810731,0.12292739,-0.2267796,-0.22137806,-0.06952502,-0.2535611,0.0075555616,-0.10726238,-0.8463529,0.17313814,-0.37218043,-0.2293082,0.31048536,-0.21321766,0.088132516,0.22345768,0.102892585,-0.23755537,0.3497928,0.0796419,0.7728265,0.07517525,-0.12176384,-0.22211795,0.34777644,0.20057906,-0.27152342,0.34279045,-0.3496355,0.009224913,-0.5664443,0.65254515,0.00016906964,-0.4334434,0.18990946,-0.16037385,0.04341719,0.40618414,-0.3782036,-0.24227452,0.17526361,-0.11647829,-0.36593026,-0.16227196,-0.2508697,0.18099825,0.5311183,0.21092646,-0.1063142,-0.19333093,-0.18278392,0.5473571,0.21859516,0.5151671,0.37459165,0.051107194,-0.3724193,0.08041128,0.2638936,0.46366912,0.30436698,-0.06633722,-0.685136,-0.34771913,-0.36413142,0.0902553,-0.140324,0.19567822,-0.17709926,-0.25689435,0.8081736,0.18239631,1.2307364,-0.030685663,-0.30388644,0.01817195,0.61100894,-0.09693252,-0.1062436,-0.30500767,1.0182246,0.68443435,-0.088824384,0.055744763,-0.463902,-0.20794581,0.35683814,-0.43451783,-0.08644681,0.050032623,-0.59088707,-0.3486466,0.25604126,0.06494629,-0.10756616,-0.10833331,-0.06897782,0.15748262,0.08190302,0.13850185,-0.67062104,-0.10537064,0.13181427,0.21070156,0.0022293436,0.14740226,-0.5462312,0.2675479,-0.7330137,0.225153,-0.32957488,0.19734608,-0.069005154,-0.38126424,0.13495263,0.07396597,0.17872773,-0.4089467,-0.42832035,-0.057321697,0.49323848,0.043619495,0.16359986,0.6182462,-0.303749,0.0684078,0.21678652,0.5194877,1.1007833,-0.3724619,-0.08675154,0.1829268,-0.46326947,-0.6570412,0.3918376,-0.20602994,-0.06398616,-0.28748205,-0.3253974,-0.5596893,0.3526829,0.17831981,0.24417876,0.0024694162,-0.7928308,0.04796159,0.34304303,-0.2992638,-0.1821288,-0.23594114,0.28462905,0.77682245,-0.32165766,-0.45245823,0.20555942,0.3094984,-0.21649145,-0.44526622,-0.12213495,-0.30806133,0.18840013,0.15620883,-0.3639696,-0.19573666,0.049523983,-0.40255922,0.10070071,0.1304345,-0.30025196,0.15617552,-0.21871595,-0.0115100015,0.78570575,-0.2904952,0.06460782,-0.5708436,-0.47880608,-0.9408618,-0.39549622,0.18807529,0.31303352,-0.10072415,-0.883708,0.08857863,0.011623106,-0.15469371,-0.004784039,-0.41578564,0.44603077,0.17173086,0.39325833,-0.33132964,-0.94656056,0.17708293,0.22396556,-0.12578312,-0.47332913,0.5937339,0.04902684,0.8797048,0.044125598,-0.027305828,-0.028502371,-0.5740775,0.09125571,-0.33544612,-0.13294557,-0.60683197,0.023256037 -5,0.73479146,-0.272064,-0.34382078,-0.150361,-0.2869007,0.2271132,-0.013941988,0.5474164,0.20127398,-0.61993295,-0.39537477,-0.37784037,0.023185229,0.06332916,-0.30668348,-0.54260594,-0.08343447,0.15269195,-0.14866133,0.5603099,-0.45283648,0.523786,0.13582921,0.3401443,0.2475972,0.1713989,0.16439858,-0.18880089,-0.43511474,-0.39128718,-0.13509043,0.2566466,-0.6151062,0.16663757,-0.25643858,-0.53278214,0.080939025,-0.54107314,-0.42387602,-0.6782873,0.28108862,-1.1004357,0.50365955,0.10855621,-0.20281328,0.3046251,-0.11363074,0.04787731,-0.15687007,0.21040714,0.17587756,-0.2536101,0.11538315,-0.40287283,-0.40308055,-0.4866757,-0.5946118,0.0051488453,-0.34347787,-0.21314888,-0.21681662,0.058229584,-0.15878649,-0.15110113,-0.02725078,0.22220469,-0.5385589,0.09795836,-0.018769741,-0.044631302,0.28936398,-0.53577685,-0.2759837,-0.2879994,0.005938057,-0.34765565,-0.1253899,0.20914598,0.342679,0.40302768,-0.06114729,-0.0815557,-0.32748398,0.07144725,0.29756463,0.4989121,-0.15001231,-0.57699925,-0.17114998,-0.080198415,0.44454908,0.4501792,0.42094037,-0.22372377,0.024538843,-0.062350124,-0.4284846,0.41506943,0.6210192,-0.35166636,-0.20982093,0.28754535,0.38276526,0.26550296,-0.057995293,0.08793882,-0.053212594,-0.36106893,-0.22448511,0.15908866,-0.37501428,0.70458364,-0.15468271,0.088795,0.74685365,-0.34916124,0.20905112,0.10391829,0.111218445,-0.21679205,-0.22876419,-0.27470157,0.2836974,-0.42162874,0.2045743,-0.30839708,0.9454829,0.24529548,-0.62040925,0.33980212,-0.6149437,0.07432351,-0.15936701,0.5548701,0.31211212,0.56143695,0.31220886,0.67934006,-0.5955498,-0.08437866,-0.004972709,-0.3262687,0.030888328,-0.1928979,-0.14145704,-0.32051328,0.027780915,0.004967764,-0.18794644,0.011884476,0.61112565,-0.5386768,0.05133745,0.06258712,0.79512817,-0.3870031,-0.017852202,0.90528995,1.1174265,0.9890866,0.10929612,1.4417349,0.4263176,-0.26940468,-0.077674694,-0.1464445,-0.8616102,0.20717208,0.38322642,-0.8889575,0.38129926,0.20755476,-0.023234174,0.08207343,-0.43533888,-0.027242826,-0.27725124,0.07950673,0.01264964,-0.2065777,-0.4242196,-0.28024134,-0.25529233,0.07628758,-0.00343058,0.23476909,-0.3160272,0.27153054,0.2512296,1.6572732,-0.0070498437,-0.07435859,-0.0816127,0.5805657,0.26180208,0.13481976,0.11300092,0.4472761,0.2980821,0.061835453,-0.5166604,-0.0065963217,0.009517923,-0.6477854,-0.072367944,-0.23033321,-0.118351854,-0.1104291,-0.4072918,-0.15427874,-0.0849654,-0.24848413,0.53195757,-2.1255288,-0.03587826,0.00689845,0.4696802,-0.15308648,-0.38955823,0.07001782,-0.33043122,0.38912883,0.34705445,0.42512563,-0.9140749,0.3299671,0.7054665,-0.271501,-0.2517644,-0.53856224,-0.11549282,-0.09366352,0.27255973,-0.07804351,0.04338487,0.12907542,-0.12621984,0.52807194,0.088544585,0.2242387,0.1744811,0.5135762,-0.017302513,0.37290072,0.108211935,0.49406755,-0.10210195,-0.13263933,0.40848747,-0.42061862,0.362437,-0.031175384,0.10183501,0.44838914,-0.52590066,-0.67334086,-0.66421884,-0.54802704,1.1064576,-0.18785764,-0.40535927,0.24803585,-0.11692653,-0.43736246,-0.28869024,0.43971753,-0.2541917,-0.0335764,-0.72856635,-0.06440199,-0.048841257,0.0981822,-0.020673908,0.22334307,-0.2826561,0.7573853,-0.03917437,0.39928058,0.40848252,0.1830556,-0.23704512,-0.64814764,0.05961038,1.0859007,0.4778253,0.35483515,-0.29919645,-0.17417534,-0.22435696,-0.11242825,0.1962695,0.51014423,0.8231377,-0.08582586,0.020351574,0.29652622,0.13239998,-0.08498138,-0.1614265,-0.39465716,-0.049593538,-0.062095124,0.60249686,0.60285187,-0.337281,0.45381558,-0.28224388,0.5114022,-0.1744513,-0.425572,0.42917338,1.1201215,-0.13805923,-0.08515689,0.6527408,0.6092451,-0.56606096,0.47020665,-0.85859895,-0.24024649,0.39851525,-0.06591135,-0.43000197,0.30874634,-0.23032297,0.15822425,-0.934653,0.6096955,-0.021947077,-0.3212397,-0.56206447,-0.16244046,-2.7711604,0.10082698,-0.19909985,-0.2936443,-0.19107132,-0.35110614,0.10918387,-0.57495403,-0.70500594,0.04660195,-0.030894814,0.37324575,0.11770179,0.32213143,-0.14475568,-0.24977905,-0.25585696,0.1949172,0.01601398,0.33755228,-0.25064895,-0.52382046,-0.15834644,-0.18044157,-0.29671633,-0.048592374,-0.5762411,-0.5699141,-0.111762285,-0.50180715,-0.29833776,0.6534043,-0.4676725,0.027828922,-0.23405248,-0.14706384,-0.41581425,0.27053797,0.1828758,0.013212184,-0.053389106,-0.03438425,-0.027074764,-0.27779174,0.3236531,0.11194349,0.20276652,0.41272926,-0.28042483,0.060516685,0.38564298,0.65130126,-0.0023902468,0.85968786,0.1962141,-0.2565122,0.33851138,-0.32597294,-0.2793361,-0.7842739,-0.38445878,-0.12798156,-0.5132747,-0.6206035,-0.13129961,-0.41017047,-0.72375137,0.575988,-0.080450214,0.2980257,0.038039345,0.21541756,0.6145912,-0.04225864,-0.16531521,0.17692685,-0.16114114,-0.5771683,-0.35086665,-0.6784952,-0.21452378,0.2863309,0.8920302,0.015633151,-0.16000436,0.2850968,-0.19679673,0.06650388,-0.09570179,-0.20952363,-0.20115788,0.47153914,0.025194049,-0.67071176,0.52408296,0.20489502,-0.3103073,-0.4264703,0.08539343,0.8098471,-0.8388358,0.38970837,0.44915244,0.04589195,0.052464068,-0.39655796,-0.24992071,-0.17149341,-0.23076223,0.41779396,0.37029555,-0.65194535,0.3068119,0.51482385,-0.27042785,-0.7145872,0.6976239,-0.17115493,-0.1366754,0.020811727,0.33055958,0.13710356,-0.03609172,-0.11228513,0.3204575,-0.58939797,0.37619147,0.3895488,0.011170581,0.11795465,-0.07846389,-0.16316651,-0.99716455,0.30572778,-0.41520444,-0.49881124,0.23705971,0.036063243,-0.12997197,0.310981,0.3748395,0.3455249,-0.4485278,0.22155072,-0.05437729,-0.22288054,0.33804235,0.41620567,0.50723714,-0.36741892,0.65950024,-0.021126708,-0.0867427,-0.12017479,0.22814588,0.34797385,0.21581869,0.14189278,0.36365333,-0.30156037,0.32441702,0.73491555,0.31738535,0.53463715,0.25964746,-0.12518954,0.3668301,0.20718579,0.4524406,0.0027983587,-0.49338642,0.059577566,-0.09161507,0.14356105,0.31628653,0.10054326,0.27101016,-0.18379517,-0.26330528,0.028903587,0.4385867,-0.1294793,-1.2272719,0.09164548,0.06590355,0.74342614,0.61834437,-0.15148942,0.22252,0.4000505,-0.23262765,0.14439677,0.52653724,0.10178453,-0.63899654,0.54705733,-0.570303,0.26808578,-0.19727968,0.06605271,-0.12901144,-0.0056700804,0.42881155,0.8050565,-0.06174086,0.055060532,-0.09646853,-0.25572237,0.0054813325,-0.60654885,0.05314515,-0.36391667,-0.30176952,0.7045726,0.34716716,0.3955277,-0.17301746,0.067800544,-0.06212535,-0.22506885,0.27148557,0.1895883,0.11450377,0.0007616803,-0.6498225,-0.24960862,0.60101956,-0.2355141,0.025643164,-0.029455205,-0.35174856,0.28697228,-0.2643489,-0.1691354,0.11669403,-0.8296531,-0.088115655,-0.32962462,-0.5576532,0.24155302,0.18613161,0.13722011,0.23610991,-0.0707872,-0.3236956,0.08694842,0.54244405,0.6639194,0.011629532,-0.25646946,-0.3713621,0.28791675,0.2795308,-0.33323935,-0.13443094,0.049017325,-0.02030616,-0.53384745,0.5047334,0.015904153,-0.2998682,0.0152772665,-0.11981132,-0.083364934,0.54608476,-0.057751793,-0.3264493,0.13593374,-0.10069394,-0.19762027,-0.04818907,-0.20221107,0.20011032,0.21190043,-0.22670364,-0.06943161,-0.08067375,-0.07953454,0.24235143,-0.04591887,0.45649385,0.4265554,0.044699077,-0.44541702,-0.16211258,0.057038862,0.50256854,-0.06788025,-0.086851954,-0.03461044,-0.5603728,-0.2636893,0.03243662,-0.18525158,0.28802267,0.19371128,-0.46978053,0.816235,0.11910665,1.1180058,0.09206755,-0.35825288,-0.023711642,0.57503146,-0.016954875,-0.15039556,-0.38036394,1.237287,0.5264466,-0.2076592,-0.19976074,-0.30536178,-0.13537283,0.28497508,-0.24236496,-0.12183625,0.01055558,-0.7557089,-0.18327336,0.22062899,0.37238148,0.08267372,0.009820933,0.20846218,0.38941026,0.13957298,0.35267672,-0.44289193,-0.27894226,0.33926585,0.14065382,-0.058255076,-0.0069698915,-0.3711383,0.338088,-0.5723165,0.089104,-0.4121544,0.107029974,-0.19519718,-0.35272333,0.096327394,-0.06859676,0.33429933,-0.42277083,-0.4970341,-0.37863386,0.3146756,-0.021635205,0.20024876,0.4502547,-0.31212482,0.1700614,-0.09175094,0.4843928,1.3536233,0.011980474,-0.0077422857,0.43168047,-0.6128896,-0.68981504,0.41350973,-0.31154904,0.10845655,-0.09915784,-0.36486837,-0.603795,0.25184438,0.21086152,-0.005387999,0.24136156,-0.5545159,-0.08298615,0.50230324,-0.33559194,-0.27297404,-0.29403725,0.22065485,0.75595045,-0.42046115,-0.3134471,0.21420361,0.22493215,-0.45555532,-0.4324007,-0.1570559,-0.33877102,0.5031981,0.0035860986,-0.32933304,-0.014487301,-0.08763528,-0.36499846,0.059824374,0.21390784,-0.39521098,0.1631279,-0.41094744,0.04881059,0.9584009,-0.07836267,-0.065453194,-0.64459485,-0.5606194,-0.90626335,-0.516882,0.44256878,0.31426445,0.059246745,-0.40782574,0.12746805,-0.06628731,-0.08524867,-0.010015746,-0.35232353,0.5381887,0.24285157,0.5284238,-0.15290187,-0.8480812,0.2162621,0.20592932,-0.114728,-0.7334385,0.5817689,-0.17717369,0.75908226,0.10791707,0.035647407,0.24209774,-0.64769864,0.12698786,-0.12089991,-0.18558608,-0.6833115,0.20444894 -6,0.49967554,-0.005362355,-0.6118299,-0.27165684,-0.4953663,0.20572762,-0.24548474,0.22578453,0.16468816,-0.3453899,0.03548696,-0.104678914,-0.075576656,0.30582023,-0.08109404,-0.7132856,0.17395552,0.21218468,-0.6500741,0.2984099,-0.4356563,0.36247054,0.017008387,0.3494233,0.07854388,0.3197039,0.11613001,0.033480525,0.004532084,0.037185904,0.06950168,0.47524303,-0.650784,0.20785652,-0.066062674,-0.27756476,-0.070365265,-0.29195654,-0.25790867,-0.66109216,0.17554556,-0.65317136,0.4432887,-0.12611257,-0.41143787,0.10662028,0.05420567,0.26035193,-0.30329394,0.059724636,0.3105045,-0.3310727,-0.12816486,-0.18212628,-0.31442496,-0.5899411,-0.55462325,-0.09759769,-0.598287,-0.034139518,-0.34691587,0.23075333,-0.27763534,0.011871703,-0.08357443,0.31303388,-0.42434475,0.16674796,0.21036468,-0.24077483,0.1010745,-0.2757076,-0.048432652,-0.14292343,0.23184894,-0.011427492,-0.39566663,0.26283634,0.30947676,0.5023751,0.1081518,-0.3123825,-0.27223673,-0.10433073,0.07026782,0.48998684,-0.1051659,-0.06541465,-0.29077026,-0.10340719,0.34018895,0.0795486,-0.046950556,-0.44997507,-0.04579874,0.081937015,-0.18287416,0.25852892,0.53218436,-0.39013046,-0.20201299,0.36708623,0.46526256,0.05841674,-0.2734253,0.2928254,-0.12355547,-0.5346539,-0.17279331,0.13526635,0.052733954,0.38223782,-0.18802404,0.0363396,0.8467388,-0.109256335,-0.12704869,-0.09159507,0.06955048,0.052865017,-0.24094158,-0.04655762,0.1491521,-0.596253,0.05390094,-0.0903944,0.80206585,0.08880526,-0.843006,0.3568372,-0.4791901,0.105778486,-0.12758088,0.5796051,0.9558332,0.42935967,0.14690891,0.78943056,-0.33755904,0.12103118,-0.039854724,-0.3732579,0.22343211,-0.23098126,0.030242205,-0.45948762,0.16318269,0.045117315,-0.11752468,0.15563214,0.37274402,-0.42685205,-0.09337937,0.042363405,0.5421042,-0.47091305,-0.060143877,0.61747575,0.8688613,0.96077645,0.15819281,1.3636032,0.42177,-0.09027512,0.27270097,-0.29431972,-0.49983618,0.15622143,0.26667714,0.25456092,0.2053937,0.21298058,0.24447447,0.5807333,-0.2533812,0.0048441067,-0.012838532,0.14053106,-0.029407183,-0.07695156,-0.42785913,-0.26389673,0.23283845,0.15075794,-0.14922777,0.33950165,-0.15282679,0.43297005,0.18230218,1.3133161,0.14327243,0.045958318,-0.01934874,0.40961403,0.19480784,-0.20006402,-0.11563788,0.31515485,0.35911828,-0.104961395,-0.3667811,-0.040561438,-0.18014571,-0.41960248,-0.23071319,-0.50055146,-0.09258161,-0.17569862,-0.5674071,-0.12745059,0.1824502,-0.2972738,0.44968855,-2.4381156,-0.2787866,-0.13076422,0.26278707,-0.044974007,-0.34808594,-0.475378,-0.49367478,0.18182169,0.31313372,0.35284412,-0.5848787,0.5115042,0.3050934,-0.40299547,-0.18206589,-0.6481279,-0.08117361,-0.12577671,0.3339816,-0.034701683,0.051705487,-0.1287741,0.34471327,0.7314905,-0.16037497,-0.07772742,0.17060639,0.3375886,0.034313098,0.5770011,0.22318923,0.62283146,-0.22200648,-0.2477369,0.3198641,-0.39291078,0.27059165,0.19638215,0.13447754,0.42899632,-0.3826832,-0.93998927,-0.5677449,-0.27915996,1.1832378,-0.45168427,-0.2712835,0.28325146,-0.22233725,-0.29903185,0.03019403,0.35613823,-0.061225414,0.18144354,-0.68425417,0.059518553,0.01569872,0.13825205,-0.09281495,0.1275664,-0.12908565,0.67228115,-0.2142255,0.38107485,0.35584408,0.123643495,-0.047893003,-0.5580463,0.06642834,0.8486676,0.30353236,0.14009301,-0.21750611,-0.24121654,-0.17185478,-0.17525624,0.24585271,0.49517328,0.5533418,-0.0043423474,0.1457467,0.2834507,-0.15886882,-0.03411776,-0.19002748,-0.29822925,0.013018411,0.09954755,0.62087524,0.6142378,-0.17277665,0.40807867,-0.16438176,0.16693807,-0.09667182,-0.5815406,0.39763397,0.9441662,-0.20101064,-0.26684523,0.4298333,0.3593739,-0.37241372,0.35184643,-0.55521286,-0.27441925,0.549268,-0.110405296,-0.39108774,0.08380042,-0.342058,0.06541626,-0.82531697,0.37229586,0.05138555,-0.71330565,-0.49330303,-0.1584171,-3.6018813,0.13680035,-0.095471725,-0.15956903,-0.03922618,-0.22423929,0.3112175,-0.5095421,-0.44229412,0.021748144,0.013857922,0.52199167,-0.045789026,0.026910502,-0.3656268,-0.3917981,-0.13929325,0.21914712,0.11856086,0.3391727,-0.087850735,-0.3983205,0.14152488,-0.34929356,-0.49638754,0.020830475,-0.6749504,-0.5901474,-0.08733734,-0.43761918,-0.2831269,0.68742687,-0.49680248,0.02200938,-0.25374037,-0.044068377,-0.25598523,0.2943203,0.2492247,0.1635048,0.08818822,0.15912095,-0.1225985,-0.3291925,0.14259338,0.10827776,0.28123617,0.40275332,-0.06566627,0.17659225,0.79182976,0.5829097,0.058602672,0.83400047,0.34784225,-0.0827799,0.21651131,-0.30586982,-0.20195201,-0.7148187,-0.34983233,-0.41143653,-0.4629817,-0.34339547,0.00047251582,-0.3053046,-0.8194623,0.4812474,-0.027233332,-0.03883186,-0.13179767,0.20580378,0.3634124,-0.11289996,-0.035653263,-0.080223,-0.3235162,-0.51348996,-0.44281304,-0.65163267,-0.71523356,0.15749882,1.3055425,-0.16588247,0.028208494,-0.10738071,-0.26995575,0.08570935,0.21575068,0.17701446,0.23570098,0.40426767,-0.17394826,-0.6623713,0.3216309,-0.27735612,-0.07759088,-0.6369814,0.045342278,0.692608,-0.6879519,0.5385511,0.3016315,0.20039377,0.09444763,-0.63675404,-0.28435907,-0.05393315,-0.2569352,0.62158865,0.1944685,-0.6963811,0.51785874,0.044662762,-0.22111279,-0.5718675,0.49710685,-0.1404776,0.017568173,0.14060435,0.33707774,-0.0287686,-0.2126229,-0.045089733,0.31847894,-0.45081335,0.2856677,0.4182711,-0.028154392,0.29491964,-0.09616865,-0.0747643,-0.6198287,-0.341707,-0.472893,-0.29544255,0.03074488,0.06415415,0.08407713,0.056196257,0.0039694253,0.3906714,-0.240115,0.11696774,-0.19424263,-0.31842005,0.40257192,0.49622613,0.3971979,-0.32878023,0.5601886,0.12377044,0.13840695,-0.08287,0.09757414,0.52311766,0.12636992,0.3905362,-0.1588464,-0.13805646,0.0662667,0.73935986,0.2847243,0.26976317,0.064434156,-0.18207091,0.2574387,0.2198072,0.11074944,-0.1297325,-0.18490025,-0.08631824,-0.09899032,0.26202214,0.28543413,-0.01324698,0.41010493,-0.13296884,-0.20833966,0.2903448,-0.0048172586,0.063283265,-1.3760532,0.32039905,0.29444072,0.5568278,0.33857912,0.082870625,0.08723843,0.54006636,-0.35300183,0.025727639,0.439813,-0.06939554,-0.2951909,0.51186657,-0.7448341,0.5461654,-0.13549134,0.04498659,0.18612619,0.31729975,0.33583742,0.92122626,-0.109733485,0.11244135,0.019851856,-0.3743492,0.1859251,-0.32018888,0.07603615,-0.54733574,-0.33168337,0.718444,0.4287817,0.28255355,-0.3794652,-0.10776289,0.0059647504,-0.17438118,0.046105705,0.013161626,-0.03567162,-0.07424469,-0.59163517,-0.29116747,0.5613277,-0.08175066,0.023952581,0.16504055,-0.33281717,0.36350042,-0.019356199,-0.03865262,-0.13024946,-0.49696213,-0.12745196,-0.24768458,-0.5467142,0.48439962,-0.35399604,0.25735858,0.3143845,-0.003938061,-0.27887663,0.4236471,0.15382417,0.6821108,-0.042212322,-0.25718448,-0.23890084,0.15898773,0.34536332,-0.21514206,-0.09565331,-0.4124058,0.089422524,-0.53586715,0.22854842,-0.3449408,-0.28532907,-0.0042917877,-0.1219526,0.05341818,0.3441096,-0.07180983,-0.15756556,0.04552698,0.113076374,-0.22751433,-0.072072774,-0.288765,0.26967356,-0.09339531,-0.14957713,0.00927715,-0.22039026,0.065118626,0.34021658,0.077097856,0.27429047,0.23777527,-0.14060569,-0.30901486,0.05686866,0.07654264,0.332224,0.100266576,-0.12065505,-0.29252982,-0.24311782,-0.33112603,0.2663098,-0.1422636,0.1674806,0.14700903,-0.41827238,0.9416137,-0.11139108,1.1973822,0.07857083,-0.34336737,0.23135486,0.47435346,0.124287575,0.18440802,-0.20276418,0.71803653,0.5833611,-0.08514167,-0.33716658,-0.37122908,-0.20541109,0.12508476,-0.28167358,-0.26015347,-0.06395945,-0.8014374,-0.15534179,0.039241403,0.113043256,0.2849952,-0.12571132,-0.09345791,0.15358649,0.029140122,0.39418134,-0.48036346,-0.0067601986,0.28969473,0.353092,-0.079099655,0.16236186,-0.2591653,0.44551122,-0.6346402,0.15774435,-0.41884387,0.10982862,-0.21723917,-0.1793473,0.18853456,0.07867865,0.31189555,-0.22181332,-0.16523449,-0.3201408,0.72201145,0.13757926,0.26886398,0.6656977,-0.24009591,-0.16452512,0.20156574,0.26465347,1.1809131,-0.11094239,-0.016140597,0.41730332,-0.23471574,-0.43843138,0.08114388,-0.3842622,0.13777637,0.017095994,-0.3918228,-0.30035174,0.28742275,0.1025006,0.003893081,0.10672169,-0.4230918,-0.07221669,0.43691304,-0.32763818,-0.26843104,-0.27281472,0.26835158,0.5427482,-0.4553655,-0.33260253,-0.0056955814,0.24706645,-0.37550652,-0.5268498,0.13298887,-0.32882315,0.40704384,0.1701825,-0.49471256,0.12347385,0.33637187,-0.32504568,0.046024792,0.4946233,-0.29467407,0.03031219,-0.26655227,-0.008360803,1.1012633,0.08746097,0.13178606,-0.54489505,-0.52393115,-0.96246237,-0.21902467,0.32535917,0.31396142,-0.03431168,-0.512465,-0.16097519,0.02097328,-0.15317829,0.07689078,-0.5686791,0.3978987,0.19292054,0.35524845,-0.04570064,-1.0531404,-0.0922676,0.1004909,-0.171832,-0.56533647,0.5367769,-0.27266103,0.83696526,0.20323251,0.16627976,0.13712296,-0.4648018,0.30344394,-0.33543432,-0.041838434,-0.7178791,0.06450989 -7,0.2614745,-0.019233406,-0.4816751,-0.17611119,-0.4058563,0.05030082,-0.1432229,0.34655297,0.26998806,-0.26255795,0.042727087,0.025702557,-0.08578718,0.2822681,-0.24314703,-0.7273008,0.10097357,0.18101378,-0.64158577,0.45926154,-0.4560178,0.3666661,-0.17002758,0.33771974,0.056437366,0.26373088,0.0270614,-0.026515337,0.112497345,-0.0022240798,-0.056592267,0.3613356,-0.35828632,0.26579055,-0.058456652,-0.22962376,0.01900121,-0.35952178,-0.3639269,-0.71530116,0.30659446,-0.4800077,0.4924711,-0.055463124,-0.43110314,0.16968913,-0.032255847,0.24125203,-0.3865387,0.043007154,0.21241342,-0.10809307,-0.0995102,-0.13355714,-0.26588517,-0.36231232,-0.44275787,0.0007608533,-0.5890309,0.03047468,-0.30556306,0.19323209,-0.29861984,-0.063718654,-0.20399147,0.31584024,-0.43280366,0.13839397,0.18128252,-0.09193397,0.037704013,-0.37234247,-0.051885962,-0.15575224,0.2059889,-0.085029505,-0.2553067,0.17164713,0.23321387,0.47729868,-0.00086783565,-0.2106313,-0.25328973,-0.06264532,0.04099586,0.3506392,-0.07948939,-0.23927797,-0.24201012,0.13785173,0.14779015,0.20943451,-0.15529843,-0.3311453,-0.07286808,-0.021281762,-0.2996376,0.45318255,0.44055864,-0.33413282,-0.1721828,0.4267359,0.415767,0.26270744,-0.31106707,0.17116234,-0.07231627,-0.4174778,-0.35286316,0.073432036,-0.031842414,0.46991542,-0.11838558,0.21016067,0.7247673,-0.09563212,-0.1376819,-0.004275358,-0.050291784,0.035421956,-0.16752367,-0.18246533,0.09200333,-0.4790884,0.151925,-0.07938907,0.7512686,0.10423642,-0.92836565,0.36946216,-0.480591,0.118290424,-0.19159393,0.58911353,0.7963949,0.4572611,0.2501185,0.7112891,-0.52755195,0.18069264,-0.0057518193,-0.4169346,-0.037979424,0.02367603,-0.099520594,-0.5587928,0.10406659,0.008430858,-0.03513803,0.021174384,0.039778177,-0.32610255,-0.13972804,-0.04876465,0.6774286,-0.3859658,-0.17918916,0.790322,1.0147442,0.9630978,0.14426921,1.1490155,0.27417478,-0.007697324,0.05161092,-0.33505592,-0.52834785,0.2245244,0.2600673,0.03113741,0.29089403,0.1590814,0.1947953,0.39829192,-0.11790419,-0.041117348,-0.159743,0.29503992,-0.06514258,-0.11608158,-0.3612185,-0.33499625,0.17193025,0.15636039,-0.09932906,0.27726173,-0.13904886,0.23170286,0.2147941,1.1864792,0.2471635,0.010272447,0.0057058604,0.3670517,0.16100264,-0.20751701,-0.16043131,0.31610367,0.3802332,-0.025459746,-0.55264354,-0.00980356,-0.2028797,-0.31597266,-0.10617172,-0.30618703,-0.0015515486,-0.19009088,-0.479777,-0.07667664,0.07314251,-0.21936356,0.62024856,-2.7876215,-0.19995397,-0.08217765,0.28379086,-0.16837575,-0.26417577,-0.14425404,-0.38986906,0.33842182,0.35763356,0.3453034,-0.5410777,0.664888,0.19555712,-0.484398,-0.03951401,-0.6522667,-0.056706633,0.08866228,0.4073414,0.0449277,-0.03859785,-0.07189242,0.21952061,0.5990268,-0.067425765,0.049246173,0.21717685,0.57654214,-0.054329615,0.509487,0.10701715,0.4780031,-0.21335743,-0.06792057,0.27496856,-0.3573809,0.4242534,0.12992501,0.08180979,0.37199974,-0.5314234,-0.83270717,-0.4966736,-0.29581484,1.2316278,-0.25912935,-0.3402875,0.24845845,-0.2315448,-0.28809512,-0.05977034,0.2971103,-0.049555056,-0.21968536,-0.6441591,-0.0011980097,-0.030537626,0.2035265,-0.100813374,0.083512135,-0.16618824,0.6435806,-0.083978646,0.5234764,0.3727168,0.14875844,-0.11661012,-0.27780235,0.10260795,0.6719054,0.3636926,0.07049696,-0.22815691,-0.19967543,-0.15913172,-0.038797993,0.16891202,0.6078766,0.5127609,-0.029509788,0.02948929,0.2928339,-0.23638959,-0.028391456,-0.25072357,-0.18729596,-0.07266151,0.11017154,0.59975743,0.64522624,-0.19097398,0.37903377,-0.035879437,0.07868735,-0.09182561,-0.49622682,0.3614865,0.7075972,-0.052532636,-0.30375227,0.42978248,0.3970309,-0.19429107,0.27968213,-0.3369902,-0.18262705,0.5667051,-0.15816341,-0.29180616,0.119846135,-0.2663084,-0.004069664,-0.8928093,0.3104889,-0.1513072,-0.7525931,-0.47842348,-0.08462096,-3.6526225,0.2191454,-0.122886226,-0.11187038,-0.07422548,-0.161158,0.2336915,-0.49316132,-0.56073,0.14945807,0.14402008,0.4770789,-0.07426117,0.06113232,-0.2490388,-0.2748272,-0.24080744,0.16636893,0.0777619,0.3239434,-0.0621381,-0.30405658,-0.05180835,-0.23355117,-0.48622847,-0.01485218,-0.5078429,-0.4122289,-0.031647436,-0.495657,-0.2426874,0.6924291,-0.35787004,-0.0625684,-0.23150365,-0.06658487,-0.18561764,0.44479617,0.17129119,0.25449958,0.010633477,0.06947096,-0.12518726,-0.38397697,0.26239213,0.04183501,0.25612625,0.25129324,0.060169145,0.19685036,0.6502847,0.6644952,0.069839224,0.7237222,0.26879027,-0.19964738,0.35867387,-0.26358077,-0.34733158,-0.66391724,-0.3190215,-0.30452737,-0.359999,-0.32120705,-0.099031165,-0.36934012,-0.71445876,0.29328203,0.05645379,-0.00028645992,-0.00809013,0.24071662,0.3756517,-0.05623389,0.12790239,-0.049209427,-0.24395357,-0.42255655,-0.4542335,-0.57031566,-0.4267812,0.11960385,1.0485082,-0.17608815,-0.014540854,-0.014419059,-0.21035652,0.03417957,0.07621252,0.25102845,0.37179253,0.14987792,-0.24164733,-0.6345416,0.34696394,-0.15513021,-0.09745132,-0.66611874,0.015427237,0.7189175,-0.5574824,0.61224717,0.28073877,0.17241427,0.17060016,-0.63188666,-0.31575045,0.06699525,-0.17529391,0.5019864,0.23323473,-0.7396581,0.5639065,0.30287477,-0.04144264,-0.58975893,0.5671395,-0.112914704,-0.16470976,0.06709163,0.3125801,0.18266755,-0.12026267,-0.016851481,0.19957511,-0.3304803,0.22663762,0.25104302,-0.04143041,0.20324716,-0.034336742,-0.030521575,-0.62845695,-0.23347549,-0.58745897,-0.20644093,0.021875659,-0.022739407,0.13969104,-0.056677066,-0.06611706,0.3439668,-0.29809675,0.16371511,-0.11698716,-0.25520262,0.1868997,0.48216388,0.31771645,-0.41425693,0.57022405,0.072223835,0.25843498,-0.043097593,0.1566762,0.48004463,0.08738379,0.41059884,-0.07481752,-0.095634565,0.12023094,0.82952225,0.21029158,0.34654012,0.06989882,-0.11515341,0.25176626,0.17040174,0.21777931,-0.10576652,-0.14567712,0.07222292,0.04379309,0.22959144,0.37107405,0.07686894,0.1879954,-0.14008935,-0.18252526,0.12257622,0.18708633,-0.02864658,-1.2194474,0.4851181,0.34823975,0.68275577,0.35881606,0.0784479,-0.02932239,0.56955975,-0.25721496,0.10623164,0.39809716,0.0019583304,-0.4468547,0.4324323,-0.59613186,0.6021314,-0.0761158,-0.078921966,0.18911959,0.18573815,0.29700607,0.82202834,-0.15709712,0.04507649,0.077624485,-0.2903558,-0.031104548,-0.36882514,-0.017187564,-0.4351142,-0.31722406,0.65710145,0.5276803,0.3109209,-0.33272398,0.026463313,0.07793355,-0.19236925,-0.0057121227,-0.14049648,-0.091670066,-0.1086485,-0.5393189,-0.20104338,0.5037462,-0.095415436,0.07812011,0.08485301,-0.20603329,0.4129096,-0.06862155,0.014325524,-0.08050695,-0.57888234,0.0029744825,-0.22767061,-0.38523716,0.36496308,-0.22817558,0.33179802,0.15993387,0.11840836,-0.34190413,0.35753518,0.051257778,0.68174094,-0.07695828,-0.081604384,-0.3204523,0.055252638,0.23459087,-0.16331914,-0.19628827,-0.38279405,0.039743524,-0.62770766,0.30135906,-0.26501527,-0.31144714,-0.112025246,-0.08980713,0.13043055,0.3786008,-0.20790829,-0.193892,-0.01391023,5.697409e-05,-0.21850702,-0.16796298,-0.2737106,0.32172993,0.09596279,-0.051598854,0.0058604437,-0.12809321,-0.106222026,0.3228467,0.12480737,0.22420844,0.2449417,0.11409235,-0.22040175,-0.06400223,-0.097779274,0.39505985,0.041348603,-0.06317089,-0.24366896,-0.14945579,-0.2376148,0.28365326,-0.22210354,0.10892406,-0.009854897,-0.33305493,0.6507034,0.049474455,1.0527943,0.04605975,-0.17896062,0.16361451,0.44670343,0.16983981,0.042898912,-0.22637312,0.621824,0.5223324,-0.06374326,-0.16435996,-0.37343132,-0.14857669,0.06739534,-0.22290736,-0.2561747,0.031014534,-0.6514892,-0.14423925,0.14989635,0.109302536,0.16743039,-0.03950615,-0.18304911,0.10853601,0.23164542,0.38357577,-0.4433958,-0.017770013,0.21411571,0.14797375,-0.012373046,0.08028645,-0.3900587,0.44032922,-0.5946699,0.13580994,-0.3187812,0.14585534,-0.1969571,-0.18405816,0.15632153,-0.018468857,0.2859576,-0.20285913,-0.22122113,-0.31783444,0.63087326,0.1903836,0.119468644,0.6224887,-0.18940134,-0.063636504,0.10865031,0.4461202,0.8957405,-0.114280194,-0.19656743,0.3234583,-0.19975628,-0.44815916,-0.0046316665,-0.43946293,0.08436589,-0.0056629223,-0.18528035,-0.32838613,0.32209522,0.13197741,0.068271965,0.014978703,-0.61536825,-0.07237422,0.3615173,-0.26820722,-0.3191881,-0.29362896,0.3189296,0.6814874,-0.31478375,-0.3620897,0.012705215,0.2129392,-0.20267104,-0.5120423,0.12996478,-0.28321847,0.31684828,0.07964298,-0.41042143,0.019816926,0.22444372,-0.38358232,-0.0137834465,0.3599991,-0.30521375,0.0977031,-0.14038672,-0.081337884,0.90768397,-0.13741986,0.33967456,-0.5926396,-0.54138094,-0.75110084,-0.30960763,0.19592044,0.27482083,-0.13315532,-0.58662087,-0.04310361,0.037700024,-0.15451345,0.013576265,-0.48747382,0.4698569,0.08888401,0.27274826,-0.045464396,-0.94036496,-0.08376514,0.04303968,-0.34706828,-0.42316172,0.57697177,-0.32146898,0.6227722,0.008546743,0.16528249,0.0046624583,-0.40173733,0.32574162,-0.47390455,-0.16696411,-0.54716706,0.08912746 -8,0.41878605,-0.12981805,-0.6071095,0.09124798,0.029166736,0.33944348,-0.37968343,0.10310221,0.35892323,-0.5084502,-0.026677363,0.10665892,-0.053024657,0.033289354,-0.09889098,-0.44219765,-0.039899033,0.20894095,-0.62727535,0.57934415,-0.2373465,0.4859683,0.06604207,0.14908883,0.08439495,0.18039273,0.30975562,0.14966422,-0.14278424,-0.35909182,0.15887128,-0.35290498,-0.8290453,0.32688457,-0.22729972,-0.42469615,-0.16880168,-0.5442252,-0.50509936,-0.76654494,0.5563178,-0.8888994,0.75525975,-0.0071246577,-0.17581438,0.21879974,0.17031734,0.2241604,0.043705747,-0.07231857,0.2418425,-0.1595393,-0.11126823,-0.29833087,0.01859206,-0.39796337,-0.593654,0.13638812,-0.4573609,0.15512046,-0.22699587,0.30879116,-0.4542252,0.21109523,-0.33780172,0.24317218,-0.089112505,0.053297784,0.20796475,-0.25638175,0.02043337,-0.5335783,-0.11817375,-0.01814886,0.16426738,0.08273627,0.019449564,0.40263456,0.04655882,0.5632268,0.09190375,-0.41517183,-0.16734919,-0.032242272,0.18984453,0.5892103,-0.18003069,-0.12044271,-0.2957338,-0.23393387,0.5675377,0.008631587,0.21594231,-0.11962282,0.052908596,-0.08951616,-0.19680537,0.533889,0.80498165,-0.28230974,-0.009866785,0.43707994,0.6068033,0.032741245,-0.012203088,0.19891573,-0.15966712,-0.31146744,-0.23199321,0.10634521,-0.18707886,0.4875881,-0.2782157,0.28809375,0.35563204,-0.23703986,-0.026398364,0.33855024,0.051969133,0.117656365,-0.23322996,-0.17782077,0.48030412,-0.6144114,0.034195106,-0.6305873,0.49636582,0.010658504,-0.88054216,0.5102566,-0.43810552,0.27109239,0.33028302,0.6896317,0.74406314,0.6464878,0.1529042,1.1648034,-0.5124628,-0.14991972,-0.0778223,-0.22180207,0.07506069,-0.3095885,0.09290885,-0.32748443,0.16037615,0.20750983,-0.01853726,0.08389271,0.5025574,-0.50618386,-0.3781702,0.049383063,0.8179798,-0.20354487,0.13517019,0.950559,1.1658579,1.0735366,0.09383775,1.212945,0.09458523,-0.20479546,-0.43636948,0.043112095,-1.0345727,0.1989488,0.30782816,0.08758728,0.6626282,0.20199397,-0.16258694,0.21783671,-0.51097023,-0.3060937,-0.03138456,0.17614606,-0.09046929,-0.20263101,-0.35020763,-0.08043526,0.18081824,-0.19866182,0.4495463,0.34521616,-0.44907755,0.36320668,0.26574203,0.9177757,-0.27768296,0.1168545,0.2978985,0.12416237,0.28820413,-0.36145622,-0.0026609302,0.060790412,0.36289194,0.0764621,-0.54906535,-0.025839526,-0.35774472,-0.51080287,-0.26728398,-0.05475178,-0.25880533,-0.13245156,0.008472131,-0.40779212,-0.2543294,-0.42976382,0.2795371,-2.6028056,-0.2609351,-0.19597243,0.33679444,-0.32460153,-0.38056836,-0.08003701,-0.5276059,0.41756278,0.24280955,0.3978097,-0.627902,0.22349699,0.2984531,-0.60456824,0.006206054,-0.5289355,0.031321757,0.060551938,0.47764334,0.18209876,-0.4782111,-0.1573363,0.22192056,0.53558755,0.19208142,0.036506023,0.50313824,0.5703691,-0.14290896,0.10723334,-0.07282429,0.56129223,-0.60445094,-0.18208137,0.631935,-0.8143835,0.35221747,-0.31228754,0.04404008,0.39764294,-0.44822466,-0.5667142,-0.42923453,-0.07254927,1.3873061,-0.26008573,-0.8159947,-0.009217519,-0.08688075,-0.26287812,0.02534217,0.5113511,-0.11048091,0.05681108,-0.51728076,-0.12198104,-0.3471877,0.21415915,-0.19195586,0.03328594,-0.46551073,0.89318305,-0.13775484,0.61154044,0.31891054,0.28284577,-0.5008565,-0.25945774,0.12246307,1.073104,0.6677538,0.17951027,-0.24539438,-0.046263173,-0.25942847,-0.61530125,0.07903288,0.81646097,0.6158334,-0.10372048,-0.069270805,0.36349818,0.08357479,0.24952489,-0.044037376,-0.35664514,-0.43911397,-0.13281825,0.73339915,0.54509366,-0.21001348,0.08982917,-0.053784166,0.15032853,-0.41148794,-0.3262337,0.6181601,0.8248166,-0.19638315,-0.2600653,0.7069274,0.3586973,-0.36283046,0.69882977,-0.7094605,-0.63856924,0.24204694,-0.030890537,-0.51039857,0.18550189,-0.3696591,0.17070678,-0.5606908,0.33895352,-0.3208938,-0.39499328,-0.51180977,-0.18677378,-2.2780187,0.22723015,-0.21365984,0.14947416,-0.4573113,-0.07405605,0.1743106,-0.28751564,-0.8085117,0.27564368,0.10172899,0.7746887,-0.18695675,0.25088078,-0.17241806,-0.3583072,-0.4523513,0.22881156,0.14399162,0.22029106,-0.14122623,-0.09737502,-0.37778983,-0.1675201,-0.3541889,-0.07248017,-0.5182593,-0.33198527,-0.24721694,-0.38632196,-0.2367066,0.58985496,-0.29608202,0.065650865,-0.3300171,-0.059841078,-0.07076678,0.20700932,-0.017077563,0.2271731,0.13615488,-0.49466294,0.19630122,-0.14438103,0.44202667,0.07420258,0.43793377,0.53563154,-0.48792142,0.036506943,0.29344204,0.9052349,-0.076115064,0.91675335,0.10988516,-0.15834716,0.46101457,-0.09806557,-0.32301748,-0.6146847,-0.03905736,0.3933442,-0.40152618,-0.36653122,-0.08432853,-0.2939469,-0.88368374,0.49554238,0.19353107,0.5277722,-0.104134135,0.5133134,0.3350153,-0.13216215,-0.09581307,-0.05414919,-0.28847864,-0.28616425,-0.33038586,-0.63128763,-0.27399507,0.01063201,0.80409616,-0.056446984,0.099676244,0.4433074,-0.01488416,0.13783264,0.12807952,0.20528287,-0.190084,0.458691,0.23275432,-0.62439597,0.39757758,-0.15578602,-0.06533639,-0.575351,0.34417692,0.5375639,-0.38830215,0.4216927,0.5201305,0.11260922,-0.35695794,-0.7226878,0.13299991,0.06772893,-0.18130524,0.39849204,0.40944302,-0.7743881,0.49356258,0.38706625,-0.26871294,-0.6460728,0.3413676,0.06107653,0.0066851927,-0.21085158,0.53909576,-0.122972384,-0.037399277,0.030858673,0.16907552,-0.31384978,0.37197974,0.039026078,-0.06492758,0.33157665,-0.23628306,-0.51234275,-0.62534374,0.1972054,-0.84861016,-0.049018975,0.18621613,-0.04773052,-0.11456506,0.19318812,0.19501916,0.55837536,-0.5089538,0.09747099,-0.11583308,-0.395819,0.62441856,0.47108957,0.3648173,-0.57262576,0.62391514,0.19519448,-0.21328513,0.028529404,0.04452094,0.51179665,-0.10171464,0.3086642,0.22264308,0.21646954,0.005170125,0.53506047,0.25656036,0.35636762,0.2541915,-0.20541722,0.21668969,0.008540795,0.2387684,-0.008465433,-0.7111407,-0.08288671,-0.118146695,0.07594059,0.5538833,0.15323387,0.45136613,-0.15207301,-0.24581257,-0.1837131,0.021174513,-0.33838812,-1.5462531,0.4274449,0.0880593,0.83074254,0.42263016,-0.013478209,0.13057189,0.6087498,0.034975145,0.018744716,0.30718178,-0.18018526,-0.43443605,0.54599214,-0.67984235,0.24868305,0.01478661,0.11376922,0.1746243,0.070036635,0.52296585,0.8390795,-0.12994057,0.03568919,-0.26680604,-0.21615966,0.1364572,-0.32129744,0.4867145,-0.3655116,-0.27536327,0.8117964,0.12529022,0.50374436,-0.20741734,0.122835845,-0.013072174,-0.13619587,0.30769157,0.04979362,0.18800622,-0.32226673,-0.40935203,-0.115270734,0.45790675,0.2612767,0.10510393,0.032035563,-0.09543273,0.06402034,-0.20520331,0.0937992,-0.07324737,-0.89276254,0.25443438,-0.45666328,-0.48751682,0.15735584,-0.061626717,0.22367375,0.29909492,0.070270404,-0.3006987,0.07221953,0.17284735,0.59363437,-0.15848933,-0.31159252,-0.35662296,0.21865508,0.17028308,-0.49516055,0.26683658,-0.095736094,0.22672178,-0.5002278,0.66950065,-0.16415559,-0.23747268,0.3625989,-0.23920721,-0.124073654,0.590083,-0.3207655,-0.085405745,0.25947505,-0.21126121,-0.2472408,-0.44886795,-0.20384704,0.18296383,0.25585106,-0.15178584,-0.15197887,-0.13426386,-0.36289898,0.11247274,0.20449585,0.15984505,0.53771883,0.07792879,-0.5538031,0.17844875,0.09815501,0.59869397,0.09494574,-0.066835515,-0.47831842,-0.634334,-0.40938362,0.8382499,-0.0035792028,0.19999316,0.042898417,-0.15902402,0.6845449,0.06618044,0.8187355,0.10295682,-0.24261989,-0.16390303,0.7634588,-0.038322095,-0.25773653,-0.43865123,1.0500405,0.54216737,-0.22169238,-0.037935838,-0.36344564,0.20270337,0.13416871,-0.27495623,-0.093989134,0.074151084,-0.74107164,-0.2363596,0.12738682,0.3883056,-0.018247902,-0.25611204,0.040814452,0.43645403,-0.0001674753,0.27835083,-0.45849654,-0.2881098,0.64042175,-0.061987393,-0.14427939,0.015700959,-0.5240902,0.16461045,-0.7704438,-0.027552862,-0.27263618,-0.0046525644,0.011656564,-0.5105161,0.36788467,-0.06718468,0.20760092,-0.61359185,-0.41906276,0.13601701,0.10332073,0.3488765,0.24232961,0.57055986,-0.18095376,-0.015892081,0.18669827,0.55828273,1.0777298,-0.06900798,0.30129725,0.053009115,-0.5344837,-0.8551136,0.29760715,-0.21072228,0.22274446,-0.12442107,-0.4205907,-0.56993747,0.31945962,0.13295487,0.13521126,0.10609876,-0.83854735,-0.5830604,0.077959724,-0.394433,-0.21785298,-0.3504905,-0.07230342,0.83612883,-0.025543464,-0.2945142,0.02824557,0.2948088,-0.32650742,-0.90748227,-0.060028452,-0.35365027,0.17585085,0.016972564,-0.23140517,-0.19690108,0.13062105,-0.555301,0.29932514,0.11593565,-0.41859004,-0.096662685,-0.45468503,0.08013023,0.44171557,-0.27777195,0.18972206,-0.372306,-0.5487792,-1.0074433,-0.5307982,-0.091008596,0.24337088,0.063943096,-0.5939292,-0.19731887,-0.5015147,0.07238377,0.036819313,-0.48251536,0.35004255,0.2403957,0.52529454,-0.26892874,-0.77695847,0.015620374,0.13994747,-0.18723743,-0.3308627,0.50234556,0.068959564,0.64086944,0.12527071,0.029127887,0.16639702,-1.0984534,0.23126319,-0.13818058,-0.030894807,-0.75339687,0.2633825 -9,0.50849724,-0.36780077,-0.46201676,-0.17997314,-0.44357806,0.06040158,-0.41297927,0.3304576,0.32103652,-0.31871483,-0.22854535,0.1757577,0.062152594,0.43418038,-0.18074353,-0.5442007,-0.1141921,0.21400881,-0.66240203,0.5423376,-0.52822214,0.2750311,0.09843367,0.40666598,0.3004858,0.39437866,0.29355988,0.08775619,0.026685141,0.017657561,-0.022135228,0.26542592,-0.47490776,0.088169985,-0.19284274,-0.394498,-0.12661907,-0.45181274,-0.17648757,-0.81626713,0.15926698,-0.9280983,0.5133592,-0.20090486,-0.31062448,-0.20932211,0.34762174,0.36456788,-0.32387525,0.15868026,0.19581577,-0.1631602,-0.2673679,-0.2931153,0.002417978,-0.4611915,-0.5123801,-0.08334892,-0.5540419,-0.06329785,-0.13722706,0.306963,-0.30560887,0.048210863,-0.17120686,0.2556395,-0.4788705,-0.10519039,0.27278087,-0.10216146,0.20127507,-0.57030964,-0.09062263,-0.18509185,0.4030031,0.13243903,-0.335236,0.32169676,0.27838692,0.43071654,0.3094831,-0.21610144,-0.30427963,-0.09987138,0.22704391,0.3851604,-0.22846685,-0.16652729,-0.3777688,0.026563987,0.595019,0.3660854,0.031766508,-0.19178845,0.008010838,-0.21417265,-0.19754057,0.49573302,0.45260465,-0.26281267,-0.23264915,0.23540455,0.5418348,0.21834795,-0.2959565,0.17592078,-0.006243963,-0.5373712,-0.14789951,0.17018746,0.024902053,0.42490208,-0.172434,0.16888899,0.6578538,-0.070420176,-0.07350424,0.06339988,-0.03834012,-0.2503227,-0.31247088,-0.2772137,0.15408242,-0.57232785,0.014631838,-0.2193533,0.59559,0.103531085,-0.73706466,0.26473108,-0.5051384,0.2601768,-0.028538715,0.6046151,0.8333515,0.55331707,0.26147038,0.9220813,-0.19423014,0.20532988,-0.15247762,-0.29977265,0.08883336,-0.31097174,-0.03802186,-0.56038326,0.25868767,-0.2522232,-0.06896789,0.16006503,0.68162626,-0.52579105,-0.14078589,0.14851324,0.64162207,-0.39111003,-0.019562088,0.9034894,1.0449728,1.2135623,0.09126777,1.1648542,0.3728028,-0.057032675,-0.124089815,-0.18200749,-0.5938716,0.2427869,0.43366927,0.040534616,0.48980695,-0.07728936,-0.095723584,0.39312243,-0.5111186,-0.09624271,-0.05636964,0.22230534,0.11703184,-0.048426725,-0.50484246,-0.2037196,0.05761312,0.07408473,0.1413712,0.20639284,-0.22521168,0.6332171,-0.050762862,1.1569092,-0.09023295,-0.0019987086,0.12296615,0.45866907,0.31626153,-0.23386641,0.010730177,0.25743997,0.53661513,-0.1714362,-0.57708484,0.14396694,-0.30393034,-0.39804235,-0.16393954,-0.32444254,-0.14667167,0.08356957,-0.4570281,-0.3720189,-0.0321283,-0.25720596,0.3781035,-2.46462,-0.2767554,-0.1577115,0.29337746,-0.198298,-0.26133025,-0.22647811,-0.5216199,0.27625287,0.2740586,0.428921,-0.62248844,0.55261135,0.59445536,-0.6426994,-0.031585798,-0.8686824,-0.12557513,-0.10463966,0.46136606,0.09541363,-0.17867778,-0.058256567,0.20816243,0.8141788,-0.039356284,0.2345238,0.52833056,0.32205662,0.08926959,0.55236006,0.095667526,0.5995436,-0.397278,-0.26537266,0.43501166,-0.29006425,0.17267051,-0.20913419,0.06128272,0.5975244,-0.47272882,-1.0141244,-0.6096679,-0.122192934,1.2983029,-0.3094815,-0.45533925,0.12224132,-0.25461757,-0.08981145,0.16393653,0.5315459,-0.19386336,0.1438905,-0.7970691,0.05452349,0.05831919,0.13889316,-0.06380755,-0.12914611,-0.4060982,0.6681987,-0.14627819,0.6009195,0.28915265,0.31685883,-0.15485232,-0.5125625,0.05481324,0.8319944,0.45290068,-0.0619466,-0.20969006,-0.30457884,-0.08029914,-0.09116289,0.0722186,0.50542367,0.6229646,-0.06367509,0.2655084,0.39985722,-0.09021674,0.052810315,-0.19661665,-0.1778507,-0.1337372,0.11740264,0.51987386,0.7634678,0.016028367,0.3752738,-0.28282943,0.3290841,-0.016915679,-0.6838238,0.58892334,0.68092084,-0.29506713,-0.19382185,0.6242154,0.5069098,-0.28218564,0.52958053,-0.6487363,-0.36397073,0.43869373,-0.11054977,-0.35256752,0.20525032,-0.37709865,0.33029106,-0.7849119,0.412877,-0.38556024,-0.37420005,-0.4906104,-0.16860127,-3.2041502,0.19142936,-0.15266924,-0.16664627,-0.2459489,-0.25908732,0.37774128,-0.6083111,-0.6201992,-0.05752587,0.20361581,0.57373166,-0.07483351,-0.022673648,-0.2339761,-0.35581404,-0.14849563,0.16831088,0.08962866,0.3919425,-0.09810765,-0.52495646,-0.043875877,-0.12226607,-0.4902937,0.032108154,-0.62845886,-0.5059878,-0.092778824,-0.27917185,-0.2935794,0.50777566,-0.28055882,0.06568496,-0.36139327,0.13720328,-0.059710428,0.18821985,-0.021979854,0.24611464,0.13129094,-0.09206821,0.14486471,-0.24556938,0.4413315,-0.14292218,0.1329843,0.24225841,-0.13299179,0.24930735,0.56720537,0.6094081,-0.39621708,1.097002,0.50199366,-0.07618101,0.13830402,-0.13444184,-0.35804093,-0.5617122,-0.2914312,-0.07785497,-0.4980057,-0.39697573,0.019953549,-0.3283843,-0.92503524,0.642304,-0.06539882,0.43032974,-0.111764185,0.20418236,0.4467678,-0.1115652,0.027070608,-0.12858543,-0.36607903,-0.4813227,-0.39051223,-0.7114286,-0.59237236,-0.089806855,1.0607785,-0.30168587,0.16296028,0.01735118,-0.34706718,0.057711594,0.17514223,0.04843191,0.22841288,0.38183075,-0.008610353,-0.6604292,0.3063258,0.023929633,-0.011955664,-0.47493148,0.19328961,0.611437,-0.72893673,0.44222373,0.40760535,0.014048021,0.0039976053,-0.58301115,-0.15407178,-0.13274352,-0.1487623,0.7434645,0.28934184,-0.852376,0.6540009,0.2551664,-0.4772162,-0.62864286,0.34578592,-0.049766917,-0.17762402,-0.11300005,0.29359508,0.03158756,-0.11160983,-0.23205401,0.1688939,-0.3634964,0.45034453,0.14534688,-0.10114919,0.25149506,-0.19533513,-0.27327177,-0.7810435,-0.1118404,-0.6165346,-0.25820592,0.22826274,-0.038228713,-0.033867233,-0.029192552,0.01170246,0.44689548,-0.3257864,0.020566106,-0.029515514,-0.3327375,0.34979782,0.5103506,0.34779748,-0.2393079,0.54417515,0.20490125,-0.22722171,0.09721362,0.015278019,0.38501298,-0.016940944,0.41676366,-0.19184464,-0.098545074,0.34941483,0.5025939,0.124601945,0.36855322,-0.00045021623,-0.28297806,0.36360714,0.01638702,0.18029834,-0.183572,-0.3257311,-0.06364472,-0.17282136,0.21003191,0.53403544,0.3376903,0.4514341,0.021484418,0.0006295033,0.017255172,0.11911556,0.037226517,-1.4682816,0.38209322,0.20529485,0.7465254,0.45304674,0.040865168,-0.20122057,0.6348937,-0.41470608,0.046644613,0.5133958,0.09949933,-0.39268193,0.6983501,-0.63239217,0.5032034,-0.17134981,0.074556045,0.18308528,0.21608907,0.47649646,0.8300611,-0.0622764,0.20095688,-0.0751513,-0.19149387,0.01984973,-0.24637304,-0.024169035,-0.38118201,-0.41698903,0.79547703,0.33345157,0.5470823,-0.16047809,-0.092989996,0.07857939,-0.18863675,0.3608235,-0.037848048,0.063475855,-0.16148688,-0.4637569,-0.12899488,0.51453507,-0.020614747,0.16785501,-0.025352526,-0.3638397,0.028792407,-0.19034211,0.042414233,-0.019913316,-0.5629136,-0.26599807,-0.26656145,-0.3903932,0.41825563,-0.31703094,0.018443175,0.21622221,-0.051770408,-0.1743086,0.029097028,-0.026971906,0.80290544,0.0034039356,-0.256813,-0.18034637,0.12862661,0.33789253,-0.29346192,0.1706336,-0.23684189,0.16416003,-0.56276125,0.53686464,-0.25865898,-0.50428236,0.40215707,-0.16116522,-0.087773964,0.5347377,-0.10229673,-0.20405208,0.13874198,-0.07905716,-0.41176295,-0.26536018,-0.3402454,0.26299405,0.18103945,-0.11153153,-0.10459742,-0.23461628,0.103387274,0.65825784,0.05908042,0.43977204,0.3442824,0.080268174,-0.39602062,0.16653827,0.26737064,0.507093,0.1522363,-0.01507771,-0.5344641,-0.5102652,-0.32587013,0.029145181,-0.17514275,0.14040777,0.022810586,-0.2509861,0.9339027,0.027800925,1.1773891,0.023882784,-0.42318344,0.08204538,0.51621026,-0.12053561,0.05865391,-0.26525253,0.88415617,0.6716775,-0.22540094,0.003531565,-0.7087377,-0.23226647,0.3226286,-0.38870746,-0.12301478,-0.080020435,-0.6581702,-0.43310136,0.18481342,0.12703402,0.14203686,-0.13480538,0.09287604,0.22098112,0.028603882,0.4307949,-0.59797007,-0.26765794,0.23128185,0.3171373,-0.17804247,0.14251705,-0.55824554,0.33258,-0.65694714,0.035812005,-0.3407886,0.25064322,-0.15487629,-0.4130283,0.15883607,-0.056406073,0.2618971,-0.33827546,-0.4834199,0.041045394,0.5134321,-0.07499908,0.108191304,0.55905986,-0.35032168,-0.0027931407,0.13195829,0.4337505,1.3135896,-0.43083063,0.09159039,0.3308742,-0.40328416,-0.6953854,0.33823323,-0.39573783,-0.07732355,-0.053532492,-0.4623373,-0.45914024,0.31691706,0.09484462,0.15557945,0.041266426,-0.3992839,-0.08086916,0.35152906,-0.19561559,-0.19043638,-0.24269642,0.32374975,0.45264027,-0.34764495,-0.5130745,0.008295663,0.34309885,-0.23487474,-0.46402967,-0.09314613,-0.13486578,0.3225189,0.29286987,-0.29479286,-0.10859849,0.04360352,-0.46958387,-0.00882639,0.28867596,-0.2673627,0.15905014,-0.31958443,-0.015564721,0.91831374,-0.3058759,0.034154817,-0.57457626,-0.50275004,-0.95461065,-0.41589218,0.1816194,0.3214535,-0.0069652954,-0.6623019,0.081433,-0.19956239,-0.24095678,0.096587546,-0.49332398,0.50119966,0.15244034,0.38106665,-0.28791016,-0.7268764,0.14661926,-0.0113855265,-0.12376048,-0.4583455,0.6951822,0.019394279,0.93554723,0.21614791,0.007731933,-0.0059272517,-0.5187215,0.12861013,-0.29664558,-0.08560322,-0.8272759,-0.0731909 -10,0.46003637,-0.16567045,-0.67007965,-0.16974756,-0.21101014,-0.1594577,-0.27668777,0.7732242,0.050914686,-0.4916192,-0.42406082,-0.118549086,-0.015549749,0.5217188,-0.20944528,-0.5555681,0.059235215,0.3058947,-0.6955105,0.29559523,-0.42072588,0.3222664,-0.080084205,0.4722415,0.12596639,0.1941849,0.0786701,0.042102575,0.1528044,-0.10543959,0.08263488,0.12129297,-0.5651076,0.14476644,-0.22165212,-0.6805968,0.074751884,-0.6210568,-0.30641204,-0.7739979,0.38736778,-0.7504811,0.7062357,-0.012879582,-0.27899855,-0.009419012,0.14498745,0.53041947,-0.1356797,0.021363799,0.083960906,0.1016943,-0.089725316,-0.03199369,-0.070236504,-0.31963858,-0.67263424,0.14279985,-0.32706562,0.033636205,-0.1508166,0.18978599,-0.2672931,0.2943233,0.024873804,0.3147065,-0.35002232,-0.0053945095,0.06998883,0.06553167,0.23319216,-0.7040429,-0.074820876,-0.09598054,0.5680518,-0.4053933,-0.24024348,0.16383174,0.265894,0.6191317,-0.10324423,-0.07992086,-0.26521212,-0.09837971,-0.39272353,0.7538985,-0.1781005,-0.4908591,0.010649944,0.048878234,0.21432877,0.29554528,-0.04788223,0.03794144,-0.1695613,-0.30905694,-0.2496239,0.31288892,0.53498256,-0.36637062,-0.28260082,0.4713618,0.69256914,0.23269287,0.028230637,0.14698112,0.09501864,-0.7133832,-0.24767947,-0.28057718,-0.1981401,0.44651335,-0.14191537,0.7471445,0.43208137,-0.031699996,-0.041022114,0.20116791,-0.035292983,-0.012947733,-0.08409222,-0.5401243,0.3166101,-0.3126758,0.2594338,0.045764167,0.6220437,0.15853946,-0.8507973,0.14895874,-0.6132597,0.013886874,-0.09426662,0.51138246,0.6530857,0.39093563,0.29123467,0.7741567,-0.2724269,0.17334785,0.014353519,-0.100803114,-0.21523686,-0.039632667,-0.055536926,-0.43309826,0.12344853,0.03134008,-0.15026553,0.3957526,0.38068146,-0.58386356,-0.15357304,0.109577455,0.83374625,-0.26728302,-0.14834067,0.8457425,0.8889335,1.1040801,0.052317105,1.1578054,0.1625729,-0.26658297,0.1662119,-0.17269298,-0.867493,0.39832982,0.4286368,0.13986103,0.42169818,0.067930594,-0.069554664,0.513324,-0.5392296,-0.011648612,-0.072414435,0.118885994,0.1531937,0.020203263,-0.59830433,-0.25312278,-0.2526837,-0.0581594,0.12106991,0.20904139,-0.11943878,0.27726132,0.04171755,1.5462792,-0.011972934,0.047173455,0.09387137,0.44409022,0.18191297,-0.3659354,-0.25294012,-0.08150782,0.23813191,-0.043293715,-0.75539374,0.12300998,-0.19137475,-0.4158698,-0.33462203,-0.15212396,-0.1422933,-0.14344685,-0.30398393,-0.36850753,-0.30414438,-0.25475493,0.42007342,-2.623104,-0.37487784,-0.12269741,0.5304131,-0.3980108,-0.4749872,-0.26899648,-0.44715247,0.44925493,0.40820807,0.57655096,-0.53167313,0.4635829,0.32542023,-0.57741535,-0.0750721,-0.76809186,-0.10093467,0.18131544,-0.044038795,-0.06271,-0.10246129,-0.14176819,0.08114286,0.36244157,0.049953766,0.10472345,0.42544803,0.49199766,0.12660363,0.4851783,-0.29430696,0.46896094,-0.5320722,-0.18718383,0.19281091,-0.5969842,0.11082194,-0.34081924,0.15379919,0.55473125,-0.79253834,-1.0581456,-0.6990747,-0.07998705,1.1544263,-0.12333038,-0.29000193,0.27362227,-0.4619884,-0.1364732,-0.12534864,0.5606877,-0.37295943,-0.22467665,-0.7509993,-0.34672934,-0.19939016,0.3154822,-0.0077396706,-0.050253294,-0.5572616,0.478656,-0.19332923,0.41611964,0.31896043,0.26583132,-0.1429477,-0.45214695,0.00022348762,0.7122451,0.47890526,0.23766284,-0.31200448,-0.14217834,-0.5912037,0.088007405,0.09210623,0.5034467,0.75104344,-0.03851856,0.2213895,0.3018257,0.07962094,0.11300848,-0.13292012,-0.28708655,-0.21270294,-0.014600563,0.59184134,0.5742653,-0.11744144,0.47994432,-0.01687713,0.15798353,-0.37436542,-0.28089052,0.40915623,0.9163941,-0.14428595,-0.24462616,0.73373127,0.29838815,-0.21869135,0.45309076,-0.7429956,-0.45075536,0.29826537,-0.0196244,-0.33103848,0.06405389,-0.18828069,0.20125529,-1.0219259,0.26029474,-0.32536232,-0.4758121,-0.67069024,-0.07691856,-2.1511664,0.2669583,-0.06419905,-0.09479008,-0.09824665,-0.4109773,0.06756546,-0.49808803,-0.86522216,0.30249354,0.060143016,0.7317046,-0.19058363,0.1855,-0.078444384,-0.3677341,-0.5762094,0.05742777,0.40732312,0.41208673,0.20526138,-0.49162617,-0.05562214,-0.056654096,-0.4450124,0.14110424,-0.633548,-0.38855797,-0.13183773,-0.6841652,-0.13798483,0.6775986,-0.18880136,-0.018349674,-0.25428692,-0.030911688,-0.06373303,0.33224458,-0.057620913,-0.04675598,0.084175535,-0.19535704,0.04283584,-0.14216737,0.41782898,-0.012706017,0.29516393,0.16213909,-0.2512905,0.2336472,0.58997023,0.72278607,-0.111110285,0.8381648,0.5607902,0.02213653,0.21518476,-0.19981465,-0.30241528,-0.11560384,-0.16018668,0.047711432,-0.3546752,-0.4448327,-0.06767224,-0.4794437,-0.8695921,0.3452205,-0.16382077,-0.038040303,0.18032318,0.33434725,0.46398625,-0.06441563,-0.1051592,-0.0470975,-0.0496838,-0.47881794,-0.38444424,-0.5006107,-0.3752219,-0.027382607,1.4174106,-0.2639063,0.17266122,0.015061013,-0.04870199,0.0024415613,0.16318148,-0.18692282,0.111300305,0.403546,-0.17816843,-0.6739742,0.37609595,-0.27585977,-0.4033943,-0.6396648,0.06669442,0.5047611,-0.60680753,0.37556022,0.4238378,-0.015308261,-0.17894812,-0.6466676,-0.13869874,0.08363461,-0.28767186,0.20393498,0.31800658,-0.7271215,0.49553546,0.2174209,-0.16082864,-0.8933271,0.76477575,0.08591914,-0.31029445,-0.08969688,0.3152148,0.18235631,-0.087381616,-0.29804847,0.10765843,-0.10987477,0.35915264,-0.0077770473,-0.11310724,0.43558782,-0.46493942,0.084660314,-0.76478153,-0.030294582,-0.6540687,-0.054011475,0.24140134,0.048228584,0.17761166,0.19308189,0.24788491,0.40397677,-0.47229385,0.016895823,-0.26030636,-0.3276303,0.14943814,0.33156312,0.49803132,-0.5207435,0.58184755,0.0132607175,-0.1545781,-0.004352319,-0.013398051,0.3635219,-0.24982819,0.3286878,0.07625528,-0.19362617,0.02371583,0.7590477,0.2737148,0.07032343,0.05775587,-0.0088103395,0.15961418,0.11344167,0.13676527,0.05159406,-0.46243072,0.017015394,-0.32752925,0.044555783,0.63892114,0.17830284,0.20836075,-0.19108419,-0.320276,0.007763301,0.1946539,-0.07475276,-1.1568851,0.44980788,0.033022195,0.87278444,0.50302964,0.063071236,0.2595745,0.5934814,-0.09388826,0.26630214,0.30475843,0.17883725,-0.24973091,0.6160755,-0.5148309,0.73146623,0.11281345,0.015041625,-0.15182538,-0.0017312944,0.46818584,0.7742539,-0.06007091,0.104813054,0.060656983,-0.1325121,-0.00024746655,-0.34686646,-0.13201961,-0.8074862,0.022010688,0.801167,0.40016955,0.18113038,-0.08179385,-0.028351218,0.11139146,-0.043579042,0.13068779,-0.030407554,0.14464906,-0.10255524,-0.6064447,-0.028586287,0.4341744,0.23599282,0.16090682,0.04199589,-0.24671099,0.34572437,-0.023042407,0.11598365,-0.0362687,-0.8424207,-0.13523398,-0.54424125,-0.17198573,0.19534658,-0.066991135,0.21522374,0.31317398,0.16612923,-0.32147494,0.34323555,-0.124347664,0.7702327,0.08546809,-0.16921258,-0.38337484,0.22937231,0.2590902,-0.2612007,0.045724403,-0.40954477,-0.06113826,-0.5772253,0.551878,0.21371698,-0.2936489,0.35367203,-0.06079916,0.017359126,0.43694624,-0.13628237,0.08169473,0.13243085,-0.08833645,-0.19609152,-0.19161336,-0.31897658,0.29892454,0.3203838,0.12639575,-0.10478232,-0.045225393,-0.061055064,0.72712916,-0.059828974,0.43514124,0.32771525,0.2761592,-0.4210392,-0.118287586,-0.0021296293,0.60625213,-0.107504144,-0.3178814,-0.3516976,-0.45005733,-0.15188578,0.4314921,-0.11624755,0.36555335,0.1525933,-0.12455497,0.3830879,0.2219868,1.0346508,-0.038409065,-0.20740196,0.084696606,0.4247485,-0.049035996,-0.2840787,-0.38723785,1.02475,0.39465013,-0.11375674,-0.11256905,-0.19821289,-0.025291178,-0.009387118,-0.1744251,-0.23072433,-0.10842774,-0.4827159,-0.40413037,0.19552289,0.15601775,0.07888486,-0.17396347,0.15049754,0.31621093,-0.09351649,0.23329571,-0.41792804,-0.19729015,0.3378694,0.2873964,0.04722352,0.1500414,-0.5836529,0.34602255,-0.6814481,-0.016040122,-0.35574558,0.26629123,-0.10055946,-0.36918288,0.18375885,0.20888312,0.4024304,-0.3037203,-0.31944078,-0.1272336,0.49242878,0.21158549,0.30770963,0.43900934,-0.28073162,0.09573936,-0.140274,0.50047696,0.87598515,-0.16237684,0.07897396,0.29058224,-0.18220861,-0.48522362,0.3514452,-0.4933055,0.17147133,0.02991938,0.023219252,-0.60494655,0.3581763,0.18949099,0.0846835,-0.06584686,-0.6620548,-0.3577024,0.12948504,-0.25340715,-0.1638454,-0.5205111,0.08138785,0.70708835,-0.0046801297,-0.25554544,0.13369635,0.330516,-0.13184601,-0.6226186,0.1907794,-0.57617605,0.21337008,0.06709801,-0.28073493,-0.46659818,0.015942955,-0.46330953,0.32605976,0.08463525,-0.2587077,-0.0073693423,-0.5162831,0.04745543,1.0122595,-0.23629944,0.2657495,-0.38312998,-0.38809663,-0.8477384,-0.11143877,0.48535043,0.38917118,-0.013366118,-0.78856283,0.11961558,-0.14634031,-0.41092673,-0.016331118,-0.115543865,0.44385687,0.15851527,0.47770777,-0.18849592,-0.88042736,0.09363316,0.02001114,-0.5311832,-0.29768157,0.51504403,0.30510548,1.1475219,0.08047571,0.09518891,0.15556201,-0.48863012,0.10753395,0.005099139,-0.058511328,-0.697187,-0.012970725 -11,0.4653343,-0.24927996,-0.55132127,-0.22187072,-0.2580658,0.08227157,-0.18698357,0.60947174,0.10001111,-0.3665207,-0.22288947,-0.30599785,-0.040199593,0.33948097,-0.2930994,-0.3392171,-0.10095966,0.020946985,-0.47290584,0.4269951,-0.2902712,0.12543735,-0.0268767,0.43653518,0.42575052,0.15275389,0.016542705,-0.040603157,0.19413705,-0.40181115,-0.23237103,0.4226979,-0.47653466,0.090033725,-0.12287617,-0.6034386,-0.06340645,-0.5081892,-0.27334,-0.7749932,0.43886194,-1.1737049,0.6239144,0.09615009,-0.32478255,0.24790278,0.4332557,0.31380197,-0.03691444,-0.09809635,0.30269757,-0.043169,0.122120015,-0.0035386572,-0.25637448,-0.6129293,-0.59288144,-0.26032192,-0.28298903,-0.37482548,-0.48421076,0.10269768,-0.40118095,0.024018157,-0.058478035,0.3289755,-0.4586601,0.10166537,0.11519351,-0.13989368,0.48710147,-0.6936497,-0.28334785,-0.18551947,0.3476073,-0.33903924,-0.17925315,0.100456424,0.4657533,0.3134536,-0.20116065,-0.025557892,-0.1529595,-0.16236627,-0.17820735,0.51403683,-0.34274867,-0.5139126,-0.13885535,-0.051386762,0.36760083,0.5414045,0.0686444,-0.2278274,-0.050894216,0.16498986,-0.3039856,0.5751737,0.35666588,-0.48721734,-0.22899619,0.24599601,0.44114324,0.51620287,-0.20628358,0.025671037,0.095528476,-0.549335,-0.09379958,-0.011994735,-0.26013562,0.47534516,0.0018090443,0.36687186,0.8186504,-0.17780405,0.103461295,0.0032050067,0.011647826,-0.43764192,-0.31488773,-0.35736907,0.31627566,-0.4686575,0.55688834,-0.0052244933,0.75120527,0.014039939,-0.51334244,0.18896866,-0.74010736,0.014764038,-0.2922467,0.46404466,0.6274426,0.33480763,0.2583203,0.62684035,-0.39563057,-0.15052553,-0.07767021,-0.3200359,0.11059401,-0.18959522,0.08671963,-0.5455487,-0.0086480165,0.059411585,0.11969094,0.0032163777,0.59236646,-0.5328185,-0.10978925,0.15534121,0.8619654,-0.31108677,0.021784402,0.7225077,1.0308706,0.85924697,0.027143007,0.83999753,0.0022069432,-0.18263312,0.17516258,0.11362865,-0.67219484,0.34232304,0.59671724,-0.58537835,0.055418536,0.2136372,0.16047022,0.37036905,-0.28323352,-0.09582932,-0.17781141,-0.057997204,0.23660332,-0.1572687,-0.24716868,-0.17698242,-0.007217169,0.068028204,0.14167382,0.14420272,-0.24666227,0.22274542,0.2398122,1.5092125,-0.23459862,0.08708321,0.2176978,0.41977233,0.1081676,0.007927201,0.10442031,0.16133443,0.4817136,0.27668458,-0.6253946,0.33709368,-0.16335583,-0.46331427,-0.04032241,-0.36233553,-0.28239182,0.05879116,-0.531698,-0.09436799,-0.2809997,-0.27827471,0.39399946,-2.7817056,-0.1487638,-0.23241091,0.23945953,-0.0927838,-0.32970706,0.008010843,-0.43435943,0.5348219,0.32993567,0.40843973,-0.6294901,0.41005203,0.58567184,-0.5146064,-0.12950258,-0.63290876,-0.022698283,-0.08267765,0.2594109,0.07209821,-0.11861062,0.11896279,0.2562786,0.43188208,0.1792506,0.23279546,0.30052227,0.5213942,-0.31235936,0.8590014,-0.18130523,0.5024721,-0.16575877,-0.24885334,0.4227852,-0.18509904,0.15425241,-0.29764643,0.18447527,0.5733978,-0.32047674,-0.96021724,-0.77550125,-0.4181876,1.1948177,-0.28154764,-0.51673824,0.30131215,-0.16264749,-0.32563278,-0.04098715,0.6609488,-0.19011754,0.007903679,-0.7810011,0.11840086,-0.34879047,0.015465487,0.08043084,-0.12926464,-0.56169367,0.70673937,0.06277776,0.587276,0.27004668,0.005703379,-0.3727728,-0.44959986,0.04426995,0.71881634,0.45227727,0.0015500649,-0.08508031,-0.07711997,-0.329435,-0.10517545,0.19095683,0.65085846,0.575183,0.07479153,0.3179064,0.22170377,-0.037227932,-0.07300375,-0.21427625,-0.31468984,-0.05451803,-0.014108994,0.5057728,0.38527715,0.006854059,0.40879926,-0.056146167,0.3151639,-0.24645266,-0.4358382,0.31509203,1.1657044,-0.1963055,-0.31682387,0.81809825,0.5724563,-0.14314233,0.33163053,-0.6571982,-0.24883164,0.5915832,-0.107537,-0.7010208,0.13410085,-0.33858567,0.04901364,-0.8615152,0.037684713,-0.35522678,-0.439061,-0.41173553,-0.26345024,-3.5658739,0.30732623,-0.3791003,-0.18405534,-0.30260083,-0.30947837,0.419536,-0.5369489,-0.75570416,0.03795749,0.116856925,0.7963812,-0.07793422,0.013108081,-0.28588635,-0.09575274,-0.16660587,0.17368542,0.011580511,0.31111422,-0.06599286,-0.38666898,0.001140161,0.20968539,-0.39116496,-0.11548387,-0.50288767,-0.36898205,0.014397024,-0.4196049,-0.32799098,0.64428675,-0.49523112,0.014831946,-0.1898486,-0.051682364,-0.25762168,0.36564776,0.047684215,-0.049439907,-0.048375893,-0.061863974,-0.07147886,-0.3381767,0.47780335,-0.031022586,0.25661966,0.09021192,-0.15184882,0.21845908,0.28707445,0.2399768,0.086354226,0.9834928,0.40823615,-0.01811189,0.12413867,-0.28349364,-0.20635723,-0.5513834,-0.20620684,-0.022824414,-0.40957156,-0.52691877,-0.12750015,-0.22592354,-0.75646174,0.71013975,-0.06776795,0.35155317,-0.017233443,0.31521484,0.48034155,-0.15178514,-0.12397378,0.08754329,-0.11721789,-0.5819258,-0.17850804,-0.5409557,-0.43814227,0.0499077,0.6726426,-0.31704113,0.09837699,0.13849364,-0.22523151,-0.0032377325,0.20327702,0.08690651,0.10415086,0.5454417,-0.18365794,-0.74395025,0.5411681,-0.2154828,-0.07632746,-0.66910934,0.106114514,0.5608719,-0.66807634,0.42052287,0.40332776,0.09222293,-0.47179458,-0.5185974,-0.13685907,-0.052904118,-0.3947046,0.27303073,0.23124367,-0.863184,0.320307,0.4054344,0.049938463,-0.63280034,0.8495479,-0.073507674,-0.35276622,-0.012873814,0.3897689,0.31190464,0.08968736,-0.042627357,0.44718352,-0.34911242,0.3592114,-0.03395813,-0.11668403,0.38404286,-0.10089955,0.068464704,-0.7266704,0.24848507,-0.49877843,-0.3811696,0.33545104,-0.022972148,0.049311105,0.5319008,0.17080842,0.33769467,-0.33417308,0.20130825,-0.19466224,-0.18740667,0.2313025,0.43421772,0.5104567,-0.44585025,0.6930941,0.079651386,-0.028889786,0.19600277,0.13778669,0.44609472,0.050139867,0.63925153,-0.014298391,-0.39977646,0.40556127,0.8218294,0.19473667,0.37596598,-0.04941795,0.024827568,-0.0074155657,0.16066077,0.2709628,-0.040420663,-0.8017361,-0.06722908,-0.44356653,0.12156105,0.72503084,0.09464992,0.09513261,-0.10110236,-0.29931915,0.018524857,0.14220996,-0.07080895,-1.0272349,0.43784237,0.2288783,0.8357287,0.43580282,-0.07402247,0.032018684,0.6329838,-0.026950728,0.026570993,0.4339267,0.22973181,-0.341558,0.66389465,-0.81861115,0.31172675,-0.07517277,-0.10635283,-0.0879622,-0.032996092,0.29521248,0.7975502,-0.22910413,0.076468416,0.066929504,-0.36768883,0.23841096,-0.3637505,-0.015390169,-0.55066127,-0.17469901,0.6262648,0.77229804,0.30834717,-0.27240744,0.082743794,0.022496982,-0.052647825,0.011903719,0.12147722,0.10389995,-0.26320058,-0.7284304,-0.045648217,0.46460006,0.14394262,0.24030356,-0.1671014,-0.38054407,0.34638235,-0.047525205,0.22578582,-0.09641311,-0.72469026,0.0022786802,-0.42364419,-0.5518903,0.44368652,-0.24573869,0.39525938,0.25037774,0.0095782885,0.03431422,0.3123252,0.11488498,0.77316785,-0.083431974,-0.01994444,-0.5182585,-0.044446778,0.03519043,-0.14520824,-0.34526157,-0.23540148,0.09769762,-0.6189315,0.30536518,-0.11109971,-0.39740017,0.16299473,-0.28609237,0.03235168,0.5720671,0.020059131,-0.040671237,0.057745997,-0.13943496,-0.23644876,-0.23075674,-0.17636989,0.23735128,-0.14237858,0.2684233,-0.3475579,-0.10743277,-0.40591475,0.18562269,-0.09948892,0.6309129,0.6320792,0.10934201,-0.019707542,-0.22616783,0.12245918,0.63139117,-0.18232512,-0.22536196,-0.13906075,-0.64333147,-0.23627229,0.22203515,-0.019638311,0.5171759,0.083640754,-0.1611743,0.6199184,-0.15325499,0.8446928,0.09384825,-0.40627053,0.086630516,0.59006566,-0.056397352,-0.31017298,-0.21891402,0.8165173,0.43427905,-0.0033011923,-0.082587704,-0.14066401,-0.038673162,0.17569067,-0.13411446,-0.106937364,-0.087682255,-0.58889264,-0.24898104,0.17005643,0.36772949,0.15066026,0.019647576,0.053062357,0.35723054,-0.061016157,0.52681834,-0.4369154,-0.34049866,0.241904,0.34011304,-0.1467973,0.21266083,-0.44598296,0.50388455,-0.5044997,0.020614803,-0.7074846,0.1876521,-0.3102681,-0.15008157,0.1815285,-0.27801716,0.32890636,-0.14738074,-0.31264547,-0.079080164,0.34083235,0.2494263,0.15749836,0.49918985,-0.31725705,0.10325447,-0.071514376,0.53520435,0.79669976,-0.19144388,0.015741272,0.31476992,-0.45738783,-0.5926534,0.50043744,-0.48880655,0.1776528,0.297142,-0.057767674,-0.10026209,0.3821393,0.2564043,0.008975316,-0.071540356,-0.6940054,-0.05416334,0.35120374,-0.14528783,-0.19555022,-0.26932085,0.14888544,0.5588736,-0.36100575,-0.16362247,-0.06585035,0.47005904,-0.054197107,-0.5604047,0.09218607,-0.39100188,0.4791729,0.01819539,-0.34209776,-0.18213254,-0.13525823,-0.48379257,0.34022245,-0.006806764,-0.2994254,0.1709759,-0.31555206,0.07390244,0.895643,-0.21000452,-0.24697696,-0.48597372,-0.41972187,-0.6179425,-0.3149822,0.24801356,0.28611612,0.09945074,-0.28459233,0.17790867,-0.09324798,-0.058173683,-0.16294573,-0.20645891,0.4484666,0.14081493,0.7548086,-0.055762745,-0.7946125,0.18562655,-0.09659054,-0.0482352,-0.6125066,0.5679913,-0.1763166,0.66267985,0.03169918,0.09543677,0.10198461,-0.3474119,-0.049559418,-0.15057819,-0.27939972,-0.9444404,0.005531685 -12,0.44488475,-0.25743976,-0.5159148,-0.0924605,-0.33708933,-0.1578853,-0.22091955,0.1717604,0.18874766,-0.059151586,-0.19924363,-0.1609756,0.2139729,0.5024792,-0.12988383,-0.7563636,-0.103032134,0.16504161,-0.8180517,0.5290792,-0.5772398,0.15623781,0.16872048,0.45626247,0.15885755,0.4627964,0.43618077,-0.17189834,-0.065994054,-0.03917748,-0.12686405,0.30873892,-0.65183514,0.017021,-0.24162439,-0.3001286,0.11559164,-0.51059324,-0.23736218,-0.77736795,0.112789676,-0.97569686,0.48854688,0.055306066,-0.06470038,-0.10284632,0.2816316,0.3544372,-0.4329535,-0.043381818,0.20634297,-0.26804593,-0.13552722,-0.3153532,0.06297776,-0.5137368,-0.52577275,0.0035678367,-0.5254624,-0.3062913,-0.26507047,0.16590089,-0.35872206,0.058769148,-0.12187108,0.4156165,-0.45966625,-0.04136545,0.41700116,-0.24738552,0.21534367,-0.44792625,-0.05388614,-0.09824133,0.46306476,0.0631884,-0.19781561,0.4604408,0.3085706,0.38818875,0.31659746,-0.38857454,-0.25077063,-0.19133233,0.24674839,0.45778263,-0.1533126,-0.4853353,-0.1890519,0.057254013,0.24670582,0.39139727,0.0143709285,-0.19291404,0.030550273,-0.016749699,-0.10034949,0.4644925,0.5596006,-0.24079739,-0.36265284,0.20599145,0.5036919,0.20895928,-0.13510971,-0.17640899,0.031490874,-0.55324763,-0.19267918,0.10960892,-0.02360731,0.62762886,-0.1333949,0.027437815,1.0398839,-0.26239523,0.06274049,-0.28302664,-0.08335173,-0.3046785,-0.3022504,-0.14006743,0.19627823,-0.6183519,0.07944288,-0.30987433,0.79093075,0.19245474,-0.6609511,0.3682669,-0.53412145,0.20058806,-0.07817704,0.6101855,0.67737365,0.34367672,0.53818107,0.6372023,-0.30648342,0.26166365,-0.064141944,-0.5892427,0.1706055,-0.3096679,0.17359611,-0.4263458,0.01781152,-0.15735605,0.112726875,0.012736698,0.48570016,-0.60669106,-0.005460207,0.2929358,0.702979,-0.35912234,0.012733754,0.70561284,1.107064,0.9923254,0.027231162,1.2280993,0.42603454,-0.2284515,0.14954518,-0.27011764,-0.71690696,0.16650121,0.39915022,-0.124428354,0.28439584,-0.08664869,-0.08909921,0.3879238,-0.55161864,-0.012015752,-0.07305443,0.2646555,0.121153265,-0.017152289,-0.48689488,-0.18608329,-0.04570628,-0.07898912,0.1176319,0.29853287,-0.20007804,0.52934676,-0.13683988,1.3766366,-0.0068005524,0.073868655,-0.009255541,0.568177,0.26040405,0.0026366392,-0.035174575,0.39200726,0.4026481,0.13684267,-0.5231424,0.22857358,-0.40316808,-0.475019,-0.1835238,-0.41298848,0.061408963,0.25234684,-0.38628796,-0.08485183,-0.03996931,-0.0951642,0.37159857,-2.5546448,-0.12691669,-0.13249286,0.19963779,-0.2068949,-0.16674389,-0.032150585,-0.5793542,0.26953787,0.21870072,0.5312027,-0.6559433,0.4268551,0.4106553,-0.58555454,-0.09300017,-0.8039849,-0.06959612,-0.13299103,0.6044838,-0.05164906,-0.1448571,-0.09168479,0.1069509,0.85149926,0.084741496,0.22956705,0.38782835,0.3199676,0.21193251,0.6247614,0.14312604,0.5815474,-0.35852814,-0.24812476,0.4202637,-0.11390481,0.41060412,-0.29349527,0.108704545,0.5574036,-0.48468742,-1.0515413,-0.60974866,-0.39721304,0.98651886,-0.44617072,-0.5077446,0.218474,0.009410492,0.102068596,0.02176289,0.4861995,-0.20878226,0.16418676,-0.70587504,0.18593264,0.019250603,0.11318811,0.14739823,-0.002465728,-0.33694735,0.71653205,-0.008019726,0.42489105,0.2839547,0.31171212,-0.12889996,-0.55296,0.18505754,0.84515846,0.3034834,-0.03178374,-0.17563719,-0.34450895,-0.07614377,-0.30190912,0.0522206,0.4852788,0.8988369,-0.07112694,0.17277388,0.26496196,-0.0064680814,-0.00052698754,-0.12432917,-0.22197244,-0.048534114,0.07176395,0.52738565,0.8362961,-0.1807759,0.33371094,-0.28624943,0.46777326,0.18290654,-0.5754454,0.68832886,0.88079035,-0.14985721,-0.00070737995,0.55308443,0.5606731,-0.45886272,0.5240081,-0.6351825,-0.29540828,0.73628783,-0.13761382,-0.37867984,0.1514124,-0.31079742,0.16523856,-0.90300155,0.4032478,-0.27040762,-0.36796603,-0.5035728,-0.17590724,-3.8938599,0.22536455,-0.34000522,-0.11128793,-0.3058875,-0.13866791,0.35806936,-0.76292163,-0.3834504,0.16408774,0.1850019,0.6711964,-0.043699574,0.15727705,-0.25238526,-0.17217344,-0.10920241,0.21128988,0.29019126,0.2737299,-0.17692584,-0.42113164,0.10113869,-0.062504455,-0.5126633,0.18453234,-0.56468827,-0.4754337,-0.20287876,-0.47168928,-0.39883816,0.53887963,-0.331773,0.051765125,-0.19914196,0.056065816,-0.27541223,0.23627901,0.16917048,0.24134251,0.05151392,0.006482768,0.11410583,-0.3443995,0.43702164,-0.047271665,0.41378388,0.11555826,0.06353695,0.13867925,0.42299953,0.5671052,-0.23999065,0.9787634,0.5357228,-0.0046091946,0.081523724,-0.31183517,-0.20714691,-0.7559919,-0.5453406,-0.15732126,-0.42841104,-0.5748001,0.03349606,-0.30667964,-0.84784317,0.6996171,-0.108504444,0.39017102,-0.15573022,0.13165241,0.46092662,-0.2610367,-0.09629267,-0.065165654,-0.1484395,-0.70096916,-0.2225306,-0.7155596,-0.6599166,-0.003128322,0.7761211,-0.28638813,-0.06799737,-0.10643298,-0.32470486,0.046144538,0.11410675,-0.03716719,0.3136436,0.5368561,0.054282445,-0.7633909,0.66550434,-0.020476889,-0.042407107,-0.5112448,0.12314057,0.518061,-0.8512961,0.62072456,0.46568674,0.11384462,0.10708384,-0.4869002,-0.40718967,-0.05175806,-0.07447931,0.5451528,0.15855926,-0.8039342,0.60912377,0.30736452,-0.5725624,-0.7643468,0.29959214,-0.049017157,-0.28221413,0.16298488,0.23845963,0.07028384,-0.07695839,-0.35710976,0.19629882,-0.5395705,0.26649016,0.30070382,-0.032410458,0.28397655,-0.10711949,-0.35126528,-0.70849055,0.045016542,-0.53808033,-0.2018741,0.35685,-0.027101435,-0.18098345,0.05287822,0.08233958,0.386959,-0.2880789,0.16415943,0.05175185,-0.37590796,0.25336775,0.5005967,0.34962818,-0.54315394,0.6503928,0.14798476,-0.32212448,0.062372565,-0.0268941,0.36447638,0.09790412,0.38735646,-0.12418597,-0.195715,0.30931646,0.6622786,0.062363822,0.50393033,-0.0048015704,-0.031579886,0.57510847,0.08882242,0.08302238,0.0721008,-0.42689505,0.014273056,0.06947092,0.14977394,0.5266523,0.33883196,0.36682206,0.09920411,-0.07705409,0.05763266,0.2542652,-0.0016808748,-1.1416361,0.44197452,0.21771163,0.7544033,0.5260322,0.04388769,-0.2667018,0.77918065,-0.31839314,0.025025893,0.43096873,0.11228547,-0.518973,0.7707107,-0.6476638,0.29613924,-0.25143096,-0.03828914,0.09784428,0.1702088,0.24872202,0.77336746,-0.24397454,0.07181382,-0.06374551,-0.1960351,0.08804111,-0.4089522,-0.013400348,-0.34880155,-0.41357175,0.8278906,0.40102616,0.34461215,-0.1682817,-0.17818438,0.05845988,-0.25291535,0.32638586,-0.058243923,0.04688618,0.19511083,-0.61639,-0.17684866,0.60440046,-0.11571162,0.31103882,-0.19937862,-0.3236834,0.03085432,-0.30044705,-0.12897159,-0.030488063,-0.7207041,0.008514969,-0.24413334,-0.58153033,0.57774377,-0.34768817,0.20212583,0.2759469,-0.002958265,-0.29291922,0.2086744,-0.010632225,0.86611927,-0.0297036,-0.32471484,-0.38714072,0.172698,0.36574447,-0.27868405,0.12653707,-0.4157843,-0.072160676,-0.4687947,0.6733204,-0.22747017,-0.49327543,0.074265644,-0.25663778,-0.09561456,0.63530326,-0.09481926,-0.1972831,0.11857352,-0.12910552,-0.3661119,-0.18719734,-0.2648484,0.22307713,0.18358265,0.040123906,-0.117796466,-0.20860699,-0.1327017,0.6016828,0.017990736,0.5610987,0.2052018,0.033947244,-0.19328226,0.029768197,0.14954476,0.43419102,0.19078234,-0.14493658,-0.47978336,-0.43833402,-0.37498823,-0.17385517,-0.115672275,0.1900445,0.11967729,-0.23148426,0.892514,0.006158336,1.3582842,0.08774768,-0.41884467,0.13996206,0.6643744,-0.18369956,0.09953223,-0.4518243,1.0107684,0.55579084,-0.18036844,-0.11392665,-0.5004913,-0.02297307,0.39936525,-0.3825984,-0.10735285,-0.0431636,-0.4889595,-0.47089368,0.22315498,0.31368148,0.17574312,-0.055790298,0.013273632,-0.0094692055,0.13048619,0.6050332,-0.6619469,-0.3177495,0.19390598,0.2814942,-0.12554498,0.264306,-0.34783784,0.49321336,-0.57294464,0.114028454,-0.54865974,0.122082405,-0.24117388,-0.45911723,0.08063619,-0.08147655,0.39502177,-0.3113902,-0.36937076,-0.016848309,0.5493138,0.07302175,0.18948461,0.77495843,-0.29604232,-0.048687767,0.085322134,0.59006685,1.3576273,-0.5854671,0.04436978,0.26266637,-0.37453616,-0.5682282,0.50053954,-0.32683647,-0.17760153,-0.24697353,-0.5711933,-0.58739305,0.17063332,0.16310981,-0.098650776,0.10116312,-0.5642483,-0.08777164,0.31934845,-0.27304617,-0.29256713,-0.23538975,0.4519913,0.66352737,-0.38516852,-0.30513573,0.15289684,0.181524,-0.17046307,-0.5154508,-0.2653232,-0.22470754,0.36122748,0.1827969,-0.3305601,-0.04370706,0.21172696,-0.46203053,0.1337159,0.085835524,-0.34376088,0.16878082,-0.12497196,0.0072327494,1.020096,-0.31676042,-0.04598902,-0.75599074,-0.44852227,-0.99039626,-0.5175731,0.49984464,0.08635678,0.15585874,-0.3757055,-0.011848986,0.03339591,-0.024246557,-0.028152537,-0.6345339,0.2998174,0.047980685,0.6354549,-0.2436607,-0.8657661,0.0057941596,0.2240677,-0.009880892,-0.6480777,0.62058896,-0.10280671,0.92372906,0.063602105,-0.03676086,0.16372545,-0.37532052,-0.025440868,-0.46542442,-0.18305343,-0.8467359,0.070683666 -13,0.28517482,-0.3357441,-0.33735025,-0.037421416,-0.064576186,-0.079691134,-0.15000872,0.54744583,0.17414606,-0.21998398,-0.21176982,-0.22565763,0.0026701961,0.4626577,-0.19889508,-0.6738418,-0.21403277,0.09778335,-0.22980666,0.80088645,-0.38029003,0.102313764,-0.06016661,0.46789622,0.3249747,0.15945677,0.29155985,-0.007909782,-0.3397847,-0.2592214,-0.05367503,0.19724973,-0.59980786,0.19262116,-0.12973338,-0.2945762,0.0072931596,-0.5789712,-0.37959817,-0.78065795,0.41049913,-0.7955811,0.23741919,0.109918945,-0.13638669,0.50734115,0.106591344,0.13503017,-0.2865424,-0.21871053,0.09010967,-0.13466169,0.04907809,-0.18270318,-0.19224901,-0.1598035,-0.6937487,0.10087916,-0.24211352,-0.30483449,-0.32931992,0.15014213,-0.4776063,-0.017047843,-0.11542312,0.69940823,-0.45301244,0.010274229,0.12940578,-0.18145078,0.150789,-0.6267257,-0.34315392,-0.044767052,0.09151408,-0.066150784,-0.020682132,0.32086417,0.1523737,0.3035214,-0.12294373,-0.100692846,-0.614291,-0.056135103,0.22872026,0.5870423,-0.14246707,-0.78405786,-0.024472931,-0.046850383,-0.15259741,0.087974764,0.12378732,-0.17897268,-0.22344537,-0.029343048,-0.19864082,0.34503886,0.4489086,-0.22795106,-0.42031893,0.35356593,0.355806,0.30046543,-0.01622452,-0.3181536,-0.042106282,-0.7082316,-0.04197063,0.011177893,-0.15973395,0.7024103,-0.109999515,0.30395594,0.6354511,-0.07055923,-0.073364235,-0.091208644,-0.0026930596,0.016492536,-0.41773915,-0.112493634,0.3245249,-0.04480912,0.35422978,-0.14213888,0.913851,0.035411425,-0.7837593,0.49404845,-0.51207876,0.24384512,0.10357339,0.3997389,0.45644474,0.37711897,0.5641021,0.6069382,-0.31865066,-0.02707311,-0.09965205,-0.21249492,-0.10727233,-0.1189487,-0.00590988,-0.36717725,0.093848884,0.06906726,-0.09801977,0.14666274,0.45154837,-0.35831735,0.053162232,0.22629003,0.9038878,-0.14974982,-0.07408815,0.8073419,1.0274328,1.1965008,-0.0059129507,1.1078811,0.18395166,-0.1890949,0.23820925,-0.16312347,-0.8237265,0.19529307,0.37346315,0.23593287,0.20235054,0.007941944,-0.12467984,0.440796,-0.3940116,0.11143994,-0.2158209,0.18528838,0.4279441,-0.076329835,-0.43883872,-0.34830502,-0.12607533,0.09495159,-0.039595228,0.19768016,-0.12342936,0.33045477,-0.07728406,1.960576,-0.05407523,0.12357682,0.24058239,0.6058844,0.1314659,-0.06630239,0.090046324,0.32325727,0.17354596,0.078790575,-0.66975445,0.1312098,-0.24932325,-0.6195327,-0.013475671,-0.34205115,-0.19280829,-0.032968063,-0.5163029,-0.18553446,-0.2176194,-0.25711644,0.56163716,-2.959863,-0.038304698,-0.07293639,0.20170294,-0.3122835,-0.38278064,0.022967806,-0.47823653,0.5477197,0.42980328,0.58913016,-0.6189467,0.17521578,0.38447592,-0.4948738,-0.166117,-0.6056924,-0.03587496,-0.07117779,0.56611294,0.013762251,0.030181967,0.1204285,0.03365031,0.6057518,0.2181548,0.019092055,0.27854255,0.3328168,-0.08605859,0.43407163,-0.13786216,0.3652124,-0.19573314,-0.07332585,0.29407874,-0.5724781,0.42726007,-0.22138925,0.17279196,0.39312646,-0.36139426,-0.9527963,-0.5218952,-0.29653183,1.1156696,-0.18639903,-0.50532055,0.35914555,-0.20118429,0.037874777,-0.23734277,0.48924842,-0.27983525,-0.16902979,-0.72710425,0.065604575,-0.16008143,0.17536409,0.03100723,-0.09190428,-0.48255923,0.7786897,-0.010959762,0.51604104,0.4353387,0.13495089,-0.36127627,-0.45226955,0.026415078,0.59784395,0.28132382,0.1446648,-0.27296495,-0.19777878,-0.07828526,-0.25755396,0.039961662,0.5240306,0.46190807,-0.0518233,0.10782698,0.30636898,-0.0017203888,0.012749909,-0.051253695,-0.08581895,-0.19951086,0.022984704,0.63980836,0.9540834,-0.32286462,0.14674579,-0.14709438,0.22057463,-0.12881462,-0.20970546,0.47806492,0.9443677,0.0076948605,-0.24177003,0.45235744,0.68175143,-0.29307505,0.38665882,-0.34470046,-0.15339933,0.582816,-0.24442913,-0.4510359,0.09077132,-0.320173,-0.2030937,-0.7310884,0.36410734,-0.2114244,-0.3076663,-0.6912393,-0.21777599,-3.3683288,0.08591744,-0.32074866,-0.40563098,-0.15623869,-0.15382595,-0.12999131,-0.7044746,-0.58005756,0.13462245,0.09094918,0.49611878,-0.12685852,0.1905831,-0.22662778,-0.11798782,-0.3817347,0.09058297,-0.0698827,0.3933587,0.07459852,-0.30332413,-0.09543118,-0.22623806,-0.5838269,0.1353722,-0.44833723,-0.32233348,-0.120778024,-0.564967,-0.27923468,0.5853206,-0.45076606,-0.020470275,-0.19893561,-0.0955923,-0.3005978,0.38788223,0.2494144,0.24261802,0.019588368,-0.079850756,0.09457014,-0.14922398,0.33993617,0.021787962,0.34875083,0.6072655,-0.25986448,0.2227105,0.41684636,0.6359034,-0.13451692,0.820563,0.5349696,0.022776062,0.23708707,-0.3360125,-0.1751272,-0.548762,-0.24888015,0.22563948,-0.25362554,-0.5520292,-0.16603206,-0.36365637,-0.7864027,0.36406603,-0.12811036,0.17729008,0.02952441,0.011362642,0.47852483,-0.24831752,-0.012358949,0.036778472,0.2018948,-0.4948721,-0.36285737,-0.60132813,-0.49247566,0.055982172,0.78913754,-0.025818074,-0.26717836,0.080648996,-0.314507,-0.18542303,0.08125173,-0.08811557,0.10113692,0.2804164,0.27843842,-0.72479725,0.67155284,0.042396456,-0.1428713,-0.43127504,0.16032992,0.4146177,-0.39597082,0.6706764,0.3212616,0.12662604,0.021518042,-0.5173349,-0.35636666,-0.19153851,0.024169276,0.23780727,0.2418616,-0.6659304,0.42581904,0.16257201,-0.2988052,-0.8268401,0.2773357,-0.002681346,-0.33752856,-0.17500359,0.2645967,0.13927487,0.01798804,-0.0980129,0.27543935,-0.5129979,0.26223576,0.12982316,0.0835085,0.28921404,-0.1052422,-0.111973524,-0.6650587,0.10550526,-0.30473682,-0.3316588,0.20905568,0.19548507,0.06565238,-0.018024156,0.1094766,0.2682074,-0.30412602,0.16439296,-0.029277757,-0.111655645,0.30565122,0.41493902,0.6471118,-0.5641823,0.59987193,0.026415586,0.0874038,0.15684007,0.026940107,0.26600403,0.09878385,0.28016487,-0.023778215,-0.18091102,0.11882496,0.62770253,0.23733921,0.494023,0.057118,-0.2450325,0.6318326,0.07903533,0.24367678,-0.014282942,-0.6340497,0.26230606,-0.3029449,0.022257993,0.4880503,0.10988426,0.28912494,-0.09040172,-0.24456792,0.034255706,0.3929368,-0.16575639,-1.0154355,0.17280586,0.030718377,0.8655985,0.7516429,-0.09071437,0.1947639,0.75741154,-0.07852522,0.0786346,0.3466227,0.030652596,-0.6778517,0.6641314,-0.52845454,0.50314003,-0.03579696,-0.027266381,-0.0017177612,0.08968399,0.37566128,0.39357826,-0.20406418,-0.120546676,-0.1306345,-0.3460327,-0.0038395673,-0.4437728,0.286773,-0.38450205,-0.2422527,0.57066244,0.6963673,0.29531857,-0.16601415,0.030732328,0.113781214,-0.011447159,0.08356478,0.042068888,0.019450808,0.11798501,-0.82510024,-0.17724913,0.4955049,-0.3374195,0.20871247,-0.06860451,-0.25473753,0.28913918,-0.28972927,-0.32353207,-0.04731959,-0.76507753,0.2367713,-0.19644113,-0.50593036,0.2776368,-0.14956819,0.40953505,0.15763867,0.019744538,-0.42304578,0.11836904,0.14568654,0.9537594,-0.029766133,-0.11169273,-0.4022604,-0.05638343,0.09026244,-0.13484572,-0.12689586,-0.08552309,-0.18910229,-0.4429946,0.5011073,-0.020296214,-0.09732089,0.057206154,-0.16118897,-0.058298197,0.68945426,-0.1409364,-0.10698128,-0.29102418,-0.17234279,-0.17296094,-0.03992774,-0.012545968,0.346475,0.23155986,-0.08367094,-0.03539096,-0.03537332,-0.023044435,0.45642772,-0.064974524,0.31333014,0.17438494,0.100829504,-0.39257994,-0.16959123,0.006224195,0.53887457,0.20286842,-0.09932095,-0.26898864,-0.42874837,-0.32977417,0.23980665,-0.12776244,0.39066705,0.17576264,-0.3501095,0.49114648,0.1051923,1.1127274,0.10284534,-0.3640975,0.2766042,0.5047901,0.039417997,0.018343912,-0.26959231,0.8801248,0.3591622,-0.12844642,-0.099811316,-0.30644605,-0.0030759715,0.1542558,-0.2419884,-0.014000843,-0.025084222,-0.5151043,-0.1017434,0.15079303,0.14474978,0.20849794,-0.29980788,-0.17833793,0.22732763,0.13197272,0.47897515,-0.25354406,-0.2642651,0.41351172,0.12057862,0.13563606,-0.037772093,-0.44717205,0.39376667,-0.49083266,0.16243176,-0.2814135,0.18863273,-0.34586346,-0.10466883,0.28933907,0.08293822,0.46273425,-0.31510854,-0.3678999,-0.2800896,0.42121303,0.15651257,0.21472706,0.4674984,-0.20421283,0.04047293,-0.008999117,0.62336236,0.91239005,-0.21238534,0.034147914,0.37724254,-0.32596195,-0.60435575,0.33271024,-0.2029795,0.17126326,-0.15105735,-0.08031867,-0.8273413,0.1067788,0.22915296,0.027614126,0.036557425,-0.63148093,-0.37873104,0.29202357,-0.33147767,-0.22437535,-0.42041337,-0.011490047,0.7695735,-0.21900159,-0.37690043,0.113405965,0.086563654,-0.121917665,-0.52547026,0.108664714,-0.3769153,0.29222456,0.043217074,-0.3686843,-0.32545146,0.14729445,-0.42313674,0.06169967,-0.005702535,-0.31205398,0.00017693639,-0.4099799,-0.021141179,1.2235616,-0.24577475,0.44832766,-0.69344234,-0.46467507,-0.91322255,-0.3891457,0.74360496,-0.15630178,0.023591975,-0.6337623,-0.09652168,-0.051676977,-0.28927037,-0.14793152,-0.43017808,0.41751012,0.1627198,0.31484544,-0.18876536,-0.47543907,0.11146548,0.1425666,-0.050111305,-0.45981118,0.3972009,0.13992186,0.82506114,0.019870244,0.053685248,0.18189563,-0.4492089,0.055316553,-0.16487902,-0.31162533,-0.41864052,0.35399953 -14,0.31714576,-0.43155608,-0.46576712,0.086364046,-0.3016712,-0.038225446,-0.2300445,0.5779172,0.11410383,-0.42458767,-0.09172891,-0.074535064,-0.123573594,0.23337854,-0.17535369,-0.18052292,-0.05302074,0.104425244,-0.3948682,0.6745303,-0.23508765,0.20835455,0.012003465,0.25712565,0.37904248,0.3600784,-0.15778926,0.17149165,-0.12028874,-0.32010144,-0.089165516,0.22163367,-0.5790292,0.35300273,-0.23081267,-0.34219438,-0.19491413,-0.51651806,-0.31728145,-0.78533494,0.19134752,-0.8946587,0.3914852,-0.0037710879,-0.39218324,0.28013638,0.4218712,0.42427644,-0.09746992,-0.229954,0.2761093,-0.10576582,-0.060778163,-0.26726478,0.06378076,-0.31293622,-0.5887328,-0.09538489,-0.35549554,-0.18563756,-0.2695599,0.27426362,-0.24842772,0.04350457,-0.155954,0.6144373,-0.43839625,0.18691264,0.11326326,-0.28354684,0.184046,-0.78417504,-0.10511349,-0.12634064,0.24754153,0.033212516,-0.1838944,0.26545128,0.20682122,0.14706406,0.06840467,-0.097120956,-0.5018339,-0.0974857,0.0906526,0.37331167,-0.27033174,-0.23596695,-0.049742687,-0.022326436,0.28286394,0.17472135,0.14747462,-0.3758103,-0.09452839,-0.030682411,-0.2798365,0.27255177,0.30244967,-0.21531369,-0.084955685,0.44594368,0.63834465,0.27027804,-0.2894613,-0.13491742,0.004511595,-0.47772264,-0.056378838,0.15299176,-0.15650925,0.41475087,-0.08462608,0.15941298,0.61916673,-0.08445094,-0.10573781,0.10931814,0.18501379,-0.009171703,-0.38591626,-0.3340363,0.33514723,-0.33782315,0.19600675,-0.07007997,0.61939514,-0.016232815,-0.598979,0.27429575,-0.56485385,0.12958314,0.07180722,0.1855643,0.6513747,0.7290779,0.25537327,0.7530603,-0.22226684,0.042525,-0.2129632,-0.22808647,0.24982429,-0.23371305,-0.059101902,-0.5023325,0.16077553,-0.05449118,-0.09695416,0.10233839,0.50648606,-0.53655505,-0.0674669,0.14493199,0.66684014,-0.14582877,-0.057282828,0.74189717,0.97822464,1.1179867,0.15679826,0.8633527,0.12922202,-0.18633434,0.1472583,-0.0023355144,-0.6058286,0.2797106,0.45078823,0.23486741,0.19589719,0.1358085,0.06816288,0.50398815,-0.14281748,-0.015010067,-0.14630008,0.16447116,0.26492476,-0.13442434,-0.43665972,-0.3579722,0.025700977,0.16418777,-0.00517241,0.1620355,-0.15130118,0.3261387,0.20896891,1.7060678,-0.21921417,0.10721244,0.29102594,0.34179473,0.28533673,-0.354676,0.061427824,0.39913845,0.17776132,0.27944854,-0.483588,0.15850504,-0.19097662,-0.5704674,0.009800447,-0.29759732,-0.18346946,-0.07163615,-0.50779265,-0.2807525,-0.095101036,-0.23398484,0.5049038,-2.818238,0.053610187,-0.14408755,0.3362181,-0.23260233,-0.501998,-0.021184755,-0.36572486,0.4293268,0.30538195,0.51699936,-0.5630106,0.31044367,0.34641132,-0.79861695,-0.08985378,-0.51537424,-0.09476638,-0.07059489,0.46139663,0.0779562,0.035494383,0.10593749,0.032854836,0.49222305,-0.09794382,0.0941274,0.46075338,0.30356565,-0.26300594,0.62845993,-0.096094534,0.42083067,-0.29116985,-0.30140296,0.3356406,-0.5218905,0.16376117,0.09667999,0.21696244,0.5896469,-0.45567125,-0.9402154,-0.6906595,-0.04826176,1.1566248,-0.2145553,-0.51624644,0.2622581,-0.5469524,-0.35979488,0.0017924862,0.4869081,-0.03556416,0.062176134,-0.7402128,0.024619818,-0.17198081,0.21337965,0.06833445,-0.27005726,-0.5112459,0.9390984,-0.07012393,0.65742594,0.30412254,0.089258656,-0.4126313,-0.32037416,-0.10079213,0.7619628,0.6148675,0.10262394,-0.1431844,-0.1394407,-0.25721213,-0.17792848,0.2616168,0.58675396,0.23365399,-0.119622394,0.15215805,0.23027405,-0.14277048,0.08989101,-0.23469,-0.22935227,-0.11927999,0.11928214,0.5542039,0.67014503,0.04106965,0.28203297,-0.01635042,0.35666314,-0.0030744672,-0.56952286,0.3923466,1.0543458,-0.07694234,-0.38310838,0.52514666,0.5362763,0.043218546,0.28228483,-0.41144544,-0.30740026,0.33799788,-0.21886896,-0.4802024,0.1825992,-0.32938766,0.0049928767,-0.6532683,0.19146135,-0.46162024,-0.604132,-0.5900217,-0.11367637,-2.9442163,0.2663868,-0.17388384,-0.24472697,-0.20975325,-0.2704623,0.19222103,-0.70301855,-0.53905505,0.16114543,0.14453878,0.6092259,-0.21066524,-0.04236603,-0.24583735,-0.370578,-0.22268924,0.33835584,0.0067074415,0.42317486,-0.10052388,-0.3686044,-0.09510959,-0.010096763,-0.50841415,0.032315336,-0.7269035,-0.356212,-0.120965,-0.5691306,-0.41652146,0.6237801,-0.41774654,0.06530895,-0.12704088,0.07316768,-0.15516257,0.2320226,0.046750765,0.05306673,0.15288533,-0.07601828,0.075305395,-0.18424733,0.2217244,0.09640823,0.25197005,0.26344076,-0.20786092,0.20371415,0.59705245,0.73798895,-0.2952266,1.0460193,0.4154974,-0.16770904,0.35089377,-0.15006445,-0.33021697,-0.5530446,-0.24033895,0.03644851,-0.29912868,-0.25719625,0.031270705,-0.378519,-0.776815,0.5855737,0.06479722,0.07333504,0.015996844,0.32621628,0.53411645,-0.28527737,-0.13659067,-0.042663064,-0.15765938,-0.59123456,-0.31553817,-0.47263846,-0.5272227,-0.025179787,0.96959984,-0.33641738,0.05589944,0.15168153,-0.34894985,-0.034795184,0.22743322,-0.07600359,0.13285819,0.44742227,-0.05394117,-0.52401626,0.4808292,-0.18747523,-0.17874555,-0.3806119,0.56869495,0.5728749,-0.5579144,0.5742647,0.2924471,0.08238018,-0.29836974,-0.4864017,-0.013031299,-0.085946,-0.23965904,0.42546034,0.42978913,-0.79111284,0.3325453,0.33746275,-0.29634613,-0.7026597,0.49385062,-0.1402139,-0.19724157,-0.29065758,0.42064553,0.25955877,-0.026920905,-0.06292076,0.17877732,-0.45202824,0.25413743,0.17007165,-0.082904875,0.1380168,-0.18090487,0.032248583,-0.82124525,0.10926153,-0.4220101,-0.32683378,0.44492513,0.061568327,-0.022296263,0.08862978,0.041248415,0.33199096,-0.15754081,0.07883129,-0.2927813,-0.20551758,0.44029266,0.5163329,0.43858173,-0.40553957,0.5655693,0.12105986,-0.06997942,-0.014978937,-0.051927984,0.34409872,-0.015486794,0.4551676,-0.114085265,-0.100119,0.18233685,0.5086986,0.17032878,0.44464293,-0.10846214,-0.07415305,0.072143115,0.047884528,0.2717549,-0.12184841,-0.7725791,0.23596723,-0.3445925,0.073765345,0.5975974,0.0973679,0.25671038,-0.10438486,-0.28041193,-0.089454785,0.21550988,-0.026701884,-1.232432,0.38671142,0.1789439,0.8500829,0.49551013,0.048689958,0.075548686,0.89622396,-0.09416838,0.026805477,0.2942347,0.09880285,-0.51391345,0.51359516,-1.0669981,0.482665,-0.04403966,-0.049424924,0.07946213,0.02918108,0.5115513,0.5853072,-0.19916987,-0.0019261794,-0.007892771,-0.4160905,0.13688584,-0.34229988,0.14552154,-0.42337054,-0.4503966,0.67529184,0.52426875,0.63003075,-0.21048461,0.03534099,0.053844247,-0.17815824,0.33257082,-0.012850476,0.07433315,-0.071533374,-0.66425455,-0.022053609,0.5622686,-0.15161593,0.23842978,0.051726613,-0.26643416,0.4707233,-0.07102812,-0.0069483006,-0.021048317,-0.6372984,0.20363565,-0.26525837,-0.380078,0.39448363,-0.04555721,0.2297199,0.15185936,-0.035322066,-0.13418834,0.43115404,0.16327524,0.9411685,-0.054294676,-0.013089836,-0.28259543,0.22118865,-0.05235952,-0.082787886,-0.07036749,-0.27367276,0.036471065,-0.71898025,0.2707531,-0.085644566,-0.24641684,0.16150853,-0.091914766,0.0679482,0.5564949,-0.15267392,-0.25188044,-0.15910485,0.043492027,-0.16786766,-0.5003033,-0.16186722,0.2303284,0.027699133,0.09710554,-0.07957214,-0.18086179,-0.15027264,0.34099862,-0.048195276,0.47546488,0.31875148,-0.027654698,-0.31749764,-0.07380321,0.21130796,0.3857554,0.02197728,-0.0536622,-0.22401486,-0.5719101,-0.5402334,0.16643748,0.06385705,0.53155947,0.14454257,-0.114300095,0.79077095,-0.36371025,1.1854073,-0.03173283,-0.47036806,0.15737215,0.51042193,-0.10483465,-0.10212309,-0.29675633,0.76649135,0.59571457,0.0031271833,0.041451115,-0.5266045,-0.09702883,0.15291417,-0.18302895,0.0120517565,0.053175468,-0.6287617,-0.21211784,0.069155805,0.17368683,0.09751817,-0.16827162,-0.024066355,0.40214294,-0.000740096,0.20863383,-0.29669496,-0.2891709,0.31872076,0.26915088,-0.12194721,0.008462305,-0.60289,0.4574468,-0.5703443,0.20553185,-0.36583376,0.18670973,-0.31068134,-0.14291045,0.2310441,-0.15347192,0.37900993,-0.34464693,-0.3095952,-0.081888676,0.6157452,0.052040916,0.098539814,0.6108057,-0.31231576,0.07888239,0.021224977,0.45172125,0.63795036,-0.47920308,-0.05648934,0.30930543,-0.42346737,-0.48910233,0.3607923,-0.17166682,0.19301333,0.28377536,-0.09616625,-0.44373345,0.27151722,0.28298992,0.09402078,-0.1674609,-0.6861587,-0.019720068,0.21174791,-0.45369497,0.009531056,-0.25068027,0.17742583,0.39740378,-0.37306002,-0.6117384,0.057118744,0.066492096,0.049481962,-0.41456434,0.023326298,-0.3616343,0.29551333,0.022445632,-0.34605113,-0.2839084,0.22464588,-0.48144108,-0.085596904,-0.105852224,-0.24164116,0.10150809,-0.4051458,0.043394912,0.8134718,-0.21456274,0.1643608,-0.45271495,-0.506907,-0.7577738,-0.3211477,0.24695535,0.08820223,0.13623442,-0.75093967,-0.006675226,-0.2612001,-0.29947147,-0.193397,-0.4627238,0.49695584,0.14241247,0.37993884,-0.24225426,-0.7329482,0.31884226,0.15737705,0.14343692,-0.4556783,0.43715218,-0.09208427,0.7808298,0.10483885,0.116614185,0.1794674,-0.49684262,-0.082777955,-0.102780424,-0.21784137,-0.6429008,-0.08427716 -15,0.56892955,0.1350213,-0.46374968,-0.13639,-0.11054366,0.09072101,0.000116212024,0.32999703,-0.004201307,-0.5944929,-0.3824834,-0.29351565,0.016282989,0.2683215,-0.23223297,-0.6955685,0.16895346,0.14786026,-0.3820137,0.5305149,-0.4155392,0.37787884,-0.027857082,0.34019402,0.1137057,0.31412807,0.32123327,-0.19617535,-0.1424446,-0.19439149,-0.03491452,0.050203674,-0.39276102,0.2527608,0.112313576,-0.30127224,0.10914983,-0.23918223,-0.41130766,-0.59204197,0.21341157,-0.84476936,0.40248108,0.067666225,-0.23932043,0.14667754,0.07738708,0.15716253,-0.24844769,0.073203646,0.24182712,-0.13976294,-0.11442014,-0.34579253,-0.13045712,-0.6888705,-0.45507288,0.09429144,-0.17512076,-0.21899037,-0.46282735,0.09793736,-0.28414547,0.024069538,-0.10432471,0.15695181,-0.566454,-0.055820566,0.2088467,-0.28002435,0.10337145,-0.61292976,-0.2789621,-0.13878812,0.18601152,-0.1298024,-0.13689393,0.31008306,0.24156776,0.5248965,-0.003000268,-0.089651294,-0.26833695,-0.14865066,0.29730862,0.6414723,-0.3325386,-0.5100714,-0.08393768,-0.15031807,0.1394008,0.06010936,0.12454226,-0.3154852,-0.07647039,-0.13334383,-0.29054716,0.1492252,0.57371986,-0.5881528,0.0012585266,0.3333164,0.3481769,-0.052791696,-0.19979899,0.04759511,-0.09020006,-0.45217636,-0.15715715,-0.07215339,-0.100043125,0.6685848,-0.07127948,0.11387082,0.5925108,-0.22705813,0.2557784,-0.021003842,-0.27898672,-0.104421414,-0.055150826,-0.09373379,0.17168392,-0.2930347,0.13459715,-0.35276327,0.87154645,0.027340727,-0.58932686,0.48257288,-0.42661697,0.15303119,-0.06109818,0.50788885,0.42462203,0.38680807,0.23380078,0.6240493,-0.4893559,0.02067693,-0.03520986,-0.31584764,0.13820006,0.061313383,-0.20076588,-0.44368228,0.102300406,0.12792705,0.003863573,0.027927289,0.4785542,-0.3939776,0.045874152,0.28731364,0.74655837,-0.35594797,-0.055771105,0.5443873,1.1975515,0.8190598,-0.020052183,1.1866003,0.3941059,-0.13933805,0.06361329,-0.2838651,-0.5622828,0.17439799,0.49005148,0.5192898,0.10702284,0.27397078,-0.015780734,0.5096382,-0.53858316,0.17930757,-0.25033626,0.31437507,0.08815998,-0.19665071,-0.4636399,0.008065628,0.077991046,-0.061137665,0.053408258,0.39040524,-0.20062985,0.37218115,0.04468041,1.6091472,0.09526156,0.15015057,0.028468292,0.5510273,0.1313027,-0.06679227,0.12103746,0.25819546,0.17175332,-0.061263647,-0.3725792,0.1011801,-0.16489804,-0.76935357,-0.19845316,-0.30053124,-0.18365529,0.037488528,-0.44033045,-0.082590856,0.13135733,-0.19807352,0.38416934,-2.7049332,-0.057563275,-0.23647371,0.2015824,-0.165071,-0.34595403,0.057148844,-0.3514905,0.5846033,0.4913873,0.46540788,-0.56928587,0.44822937,0.5157832,-0.37026945,-0.058589865,-0.58184874,0.016425593,-0.11324561,0.49576405,0.16351168,0.020692255,0.03129523,0.02430345,0.47814777,-0.20226799,0.09117676,0.1543381,0.27570492,0.17004827,0.36313948,0.09917307,0.52561,-0.1517552,-0.14743532,0.24818501,-0.18861532,0.41708905,-0.10072448,0.14344963,0.15487285,-0.52825147,-0.67629826,-0.7914174,-0.43161985,1.0831891,-0.11294309,-0.49071804,0.36362672,-0.14199577,-0.25492284,-0.058455456,0.42524645,-0.21531653,-0.0017673586,-0.77256924,0.0661354,-0.25868288,0.13786876,-0.0061206827,-0.008654682,-0.48221564,0.80682147,-0.14920832,0.42811912,0.44328675,0.111050494,-0.19184354,-0.3273851,0.06039675,0.92059815,0.3276814,0.1970038,-0.3213231,-0.21922286,-0.24214864,-0.12982707,0.15557651,0.59688646,0.51739645,0.072515965,0.00978307,0.16720466,-0.14846244,-0.21838714,-0.22176707,-0.13140376,0.030020222,0.07138585,0.73236996,0.76965463,-0.15979011,0.2812369,-0.26117036,0.4021461,-0.35249344,-0.44691247,0.32985234,0.70921856,-0.053063303,-0.16514124,0.66341126,0.7098554,-0.2627643,0.29442978,-0.6197077,-0.33189312,0.44423106,-0.25599533,-0.3791513,0.12664032,-0.44256237,0.16482092,-0.88691217,0.4687485,-0.21813877,-0.5850411,-0.5534109,-0.19448635,-3.6989517,0.19026123,-0.27520308,-0.22466215,0.07622935,-0.15139921,0.35859627,-0.51727057,-0.3248248,0.0705858,0.067031436,0.51756185,0.06861819,0.07992101,-0.37444067,-0.19261374,-0.111627094,0.26397964,0.0611575,0.3440453,-0.14226736,-0.4177665,0.08133868,-0.15605508,-0.2597198,0.033078495,-0.6201512,-0.6197672,-0.22195257,-0.14310057,-0.20373188,0.55491364,-0.52908814,0.027870229,-0.24964054,-0.08310629,-0.27670264,0.2031022,0.25949588,0.24229898,-0.11952187,0.060680747,-0.13982163,-0.44593415,0.4022191,0.114977516,0.41319245,0.5387212,-0.15980099,-0.024253467,0.48010403,0.44390795,0.03292556,0.749515,0.42276272,-0.08159985,0.25540167,-0.1984583,-0.23532286,-0.54484946,-0.43316582,-0.116224535,-0.43992022,-0.49685213,-0.16145362,-0.3553398,-0.69746333,0.40453586,-0.046272993,-0.102915846,0.0017550843,0.06290086,0.28472838,-0.22275506,-0.1470807,-0.0025359818,-0.009042384,-0.59190696,-0.41366318,-0.57970476,-0.454181,0.083241716,0.99444485,0.032315936,-0.04971404,0.006272137,-0.26217276,-0.03664904,0.11083094,0.09513172,0.067319855,0.24669722,-0.056973524,-0.75322247,0.66616535,-0.045030493,-0.16369703,-0.64183027,0.26200372,0.5420367,-0.6384672,0.48965573,0.43205568,0.121326685,0.14089522,-0.52217597,-0.3432083,-0.175599,-0.36404905,0.30987564,0.16386828,-0.9771338,0.36786416,0.32297662,-0.11179062,-0.7149089,0.49087292,-0.13006267,-0.5402121,0.21154396,0.15675534,0.07623272,-0.17038655,-0.25067922,0.3241434,-0.50318664,0.28170317,0.3262324,0.038602542,0.35900375,-0.16615649,-0.0048682177,-0.67269695,-0.079649016,-0.47836477,-0.184973,0.07005952,0.111316696,-0.030908018,0.1777338,0.11169165,0.4048615,-0.23183282,0.15905164,-0.107250094,-0.22033134,0.32996845,0.46145126,0.49584875,-0.4377966,0.6990423,-0.048281822,0.18159561,-0.20843199,0.15814283,0.553238,0.004632843,0.41982475,-0.19080465,-0.051908594,0.2075051,0.95503384,0.297749,0.58717114,0.21782207,-0.27791792,0.39354473,0.05561175,0.13677435,0.10924651,-0.4624415,0.05299694,0.003567636,0.17958744,0.3587089,0.012504752,0.43557867,-0.20846261,-0.26401544,0.05356008,0.2771508,0.1841379,-0.9322285,0.30711904,0.23725376,0.71292645,0.52163666,-0.08540291,-0.040770292,0.7030236,-0.3074802,0.07011159,0.23377919,-0.06468409,-0.45933595,0.34288105,-0.5310339,0.3665704,-0.116650395,-0.07462597,0.081201084,-0.07384839,0.22731447,0.7257619,-0.2031634,0.107728735,0.19081722,-0.41666397,0.024460793,-0.28682128,0.06846343,-0.5973191,-0.28682604,0.6760874,0.60573775,0.24641491,-0.026614785,-0.06866842,0.035946164,-0.0818808,0.074746445,0.035960555,0.19786794,-0.06969569,-0.6159506,-0.39519256,0.5121541,-0.123448715,0.17406437,0.06273622,-0.35595927,0.16151057,-0.24026452,-0.11355793,0.045680404,-0.40652266,0.15554273,-0.3668995,-0.31444073,0.4406628,-0.27004224,0.42163792,0.12206297,0.05889403,-0.15881048,0.3611305,-0.043910086,0.6122225,0.13754496,-0.272535,-0.44903582,0.015529045,0.29013896,-0.24751791,-0.10962743,-0.283545,0.09776646,-0.6545001,0.23860715,-0.1323525,-0.26000857,0.09408192,-0.14083074,-0.0130909635,0.5696548,-0.017511921,-0.25449377,0.18690325,0.055254787,-0.23382087,0.19023636,-0.15736385,0.30162886,0.002061316,-0.029137237,0.011905764,0.022171235,0.100154586,0.23341165,0.08062359,0.2644819,0.39898777,-0.09452778,-0.2544872,-0.14158313,-0.004774528,0.63546455,-0.10740267,0.124778666,-0.00511258,-0.71660703,-0.3824328,-0.054096997,-0.26937205,0.2603465,0.23101674,-0.2277061,0.658584,0.030317709,1.1443865,0.13062759,-0.3731777,0.10171192,0.59753144,0.032263048,0.16553028,-0.39096698,1.0863196,0.6133667,-0.17553453,-0.19529592,-0.20681348,0.010039636,0.26179373,-0.14834605,-0.27195635,0.05199799,-0.7321731,-0.05025851,0.15080322,0.40757936,0.16669962,0.02996317,0.06949369,0.071446225,0.17919533,0.32772484,-0.43751764,-0.19585061,0.36886352,0.22071366,-0.15322421,0.07531287,-0.29754663,0.39518723,-0.61460286,-0.0344161,-0.36327904,-0.11356183,-0.23347063,-0.34713477,0.18543205,0.082765855,0.3813835,-0.31890178,-0.15429795,-0.115878046,0.5527052,0.15303512,0.25595573,0.501466,-0.069486454,-0.053773012,0.0066392412,0.37812668,1.1618674,-0.31244496,-0.00081574917,0.48909074,-0.44638607,-0.5606986,0.24473305,-0.31383422,0.07995169,-0.09497522,-0.4613605,-0.49614826,0.30334356,0.23243997,-0.25168493,0.081790075,-0.5693612,-0.20522316,0.24319763,-0.3484199,-0.3940745,-0.29378912,0.2439973,0.61205655,-0.3690087,-0.22341573,0.0021971804,0.34923843,-0.38239056,-0.6119588,0.05078081,-0.26477024,0.27811044,0.24884759,-0.45438364,-0.14974536,0.1095177,-0.27230987,0.09581368,0.19788125,-0.4482978,0.13220993,-0.5169011,0.09152417,0.76326686,-0.036948353,0.22958732,-0.66854125,-0.44319528,-0.9346401,-0.57295287,0.69231755,0.22015102,-0.10699259,-0.40963188,-0.21035211,-0.08299322,-0.008413153,-0.065077536,-0.28327134,0.57919216,0.10383898,0.3196617,-0.03622498,-0.82739,-0.00962994,0.14739858,-0.22776733,-0.59970313,0.48482826,-0.1608218,0.9677691,0.03766436,0.1513406,0.28500548,-0.44267854,0.23123002,-0.3378945,-0.2225432,-0.63142234,0.13474317 -16,0.48036602,-0.06444775,-0.40228122,-0.06683991,-0.42656282,0.40786928,-0.032705452,0.24565366,0.027458416,-0.7044058,-0.0037058082,-0.073839866,-0.32939267,0.035550233,-0.16433868,-0.063515514,-0.10851226,0.04035761,-0.52682096,0.6808529,-0.20817201,0.43725199,0.08647963,0.11219144,0.0032195193,0.14063881,0.20059694,-0.05130094,0.13989484,-0.40835407,-0.2219541,0.023147073,-0.70020837,0.43233484,-0.094505236,-0.4270733,-0.009917698,-0.3986516,-0.2515073,-0.67718846,0.3103471,-0.83070606,0.59476703,0.11124999,-0.25727743,0.24117999,0.1515613,0.056888323,0.23213185,-0.08965521,0.3511133,-0.12059974,-0.034521926,0.05253648,-0.16702214,-0.3963682,-0.47802034,-0.034927584,-0.39706865,-0.3079365,-0.25636786,0.18723217,-0.33063132,-0.15793364,-0.30669212,0.48031187,-0.34588665,0.0054860157,0.05834424,-0.2292168,0.21095255,-0.79128695,-0.03493582,-0.102749825,0.23041753,-0.16751823,-0.106789224,0.36934635,0.17735077,0.5331785,0.09335234,-0.18868038,-0.24581262,-0.24370703,0.069367595,0.470006,-0.12861547,-0.20090629,-0.15523812,0.009610886,0.24517448,0.16734518,0.1826628,-0.23949933,-0.024769796,-0.03682779,-0.060795337,0.49950835,0.42964298,-0.27322632,-0.093246974,0.4210265,0.62067735,0.050821297,-0.08707635,-0.08278109,-0.16705711,-0.335463,-0.20347843,0.25730827,0.02074637,0.371458,-0.09134163,0.3327932,0.38236737,-0.28761992,0.02525219,0.039284077,-0.027313564,0.083467014,-0.24788018,-0.09421761,0.3669301,-0.56874144,0.23934783,-0.29878882,0.6621459,-0.092020445,-0.6450018,0.30517343,-0.33232307,0.0041992166,0.07082748,0.584434,0.51100934,0.46956566,-0.15151678,0.85277325,-0.37261432,0.0018793835,-0.11368458,-0.08743326,-0.12423082,-0.16029692,-0.027148928,-0.48141828,0.15816288,-0.024070919,0.10405094,-0.21399236,0.14532366,-0.5643319,-0.23011588,0.30169934,0.7378339,-0.24592996,0.07696312,0.72382516,1.1007978,0.98428667,0.022459146,1.012087,-0.076391995,-0.2799634,-0.09743452,-0.05652135,-0.5509473,0.18139507,0.41073474,0.716526,0.20373347,0.11358235,-0.08812516,0.2756808,-0.5162805,-0.17496654,-0.35926682,0.24782059,0.07710572,0.026092228,-0.37146768,-0.0534966,0.047111697,0.09691287,0.15932007,0.14166866,-0.44349527,0.19336574,0.06434439,1.3289312,-0.31875578,0.12004024,0.1557939,0.3325824,0.021719748,-0.12898953,0.1215258,0.32402086,0.4126537,0.14391597,-0.4347305,0.122026205,-0.32044855,-0.44321457,-0.09409245,-0.29172674,-0.2460021,-0.03887636,-0.47946027,-0.3248429,-0.023941278,-0.40728372,0.37404567,-2.8302367,-0.109058216,-0.2841081,0.23561628,-0.27340135,-0.36352983,0.0032073047,-0.50604624,0.5482279,0.350144,0.32383636,-0.40155554,0.28084424,0.47805935,-0.47812486,-0.07420193,-0.50070715,-0.13832991,0.020860776,0.39291725,0.057618827,-0.13208227,-0.04554112,0.056792967,0.469492,0.028672848,0.18816675,0.33611584,0.3516226,-0.06738845,0.50218296,0.04996497,0.50472873,-0.3760702,-0.07158842,0.4273024,-0.19724382,0.25309947,-0.25118804,0.16700587,0.47497758,-0.3548569,-0.5984107,-0.7803994,-0.33703724,1.2875016,-0.24133375,-0.6531445,0.19532108,-0.3072738,-0.19694436,-0.17594686,0.40886375,0.03354038,0.00036352448,-0.6007331,0.1263344,-0.15453747,0.3821017,-0.15950008,-0.0016522834,-0.57744503,0.6961945,-0.028235441,0.7635689,0.3111603,0.29558393,-0.17985483,-0.27549985,-0.07291226,0.8965796,0.5390054,-0.016907582,-0.22932829,-0.004803302,-0.1953471,-0.06665097,0.19144788,0.70069313,0.6473629,0.03390533,0.029053988,0.31597376,0.11256818,0.12347344,-0.1776624,-0.23850237,-0.31367353,-0.14265019,0.49208114,0.17444743,0.07401057,0.3657871,-0.20075662,0.17670573,-0.2603019,-0.4372192,0.29826188,0.6218103,-0.21408783,-0.15540214,0.6216812,0.6203004,-0.22759965,0.32938427,-0.7047239,-0.37617916,0.5305287,-0.22729649,-0.5901109,-0.005133229,-0.3361187,0.040382095,-0.58617336,0.26160648,-0.35681304,-0.81576115,-0.44211105,-0.29264477,-1.8470947,0.16956179,-0.1898042,-0.093485795,-0.15822324,-0.3736647,0.20507608,-0.41642475,-0.44714123,0.10859471,0.055623926,0.6529166,-0.12597622,0.03142823,-0.2197862,-0.15269925,-0.27694795,0.24665406,-0.02906766,0.07038129,-0.22505224,-0.21361254,-0.028103765,0.0669062,-0.3198773,0.012469081,-0.5168854,-0.3243011,-0.20723674,-0.27507356,-0.20807956,0.68654215,-0.22576581,0.13723196,-0.10596831,0.05392744,0.120695814,0.15043034,0.06626544,0.34296033,-0.003456352,-0.19236127,-0.08359613,-0.37535587,0.53753155,0.12924449,0.3731784,0.3700932,-0.28203943,0.24035719,0.30481228,0.49922228,0.0040119207,0.9112266,0.2502387,-0.21566632,0.38193926,-0.13293378,-0.21024255,-0.65180075,-0.14552762,0.21216333,-0.42499426,-0.44750902,0.23366912,-0.2530803,-0.7898793,0.5016587,0.10000972,0.29912207,-0.09821986,0.3288626,0.34085098,-0.36489055,-0.00051122904,-0.07866453,0.011946963,-0.43690416,-0.50877464,-0.58655703,-0.4049559,-0.17940095,0.96372044,-0.3112441,-0.016039042,0.26307243,-0.121426806,0.2862853,0.08031506,0.14368305,0.025515398,0.37091964,0.0860707,-0.65759385,0.55907536,-0.11958325,0.043571718,-0.41067314,0.4684372,0.53654134,-0.56114364,0.1740284,0.21404004,0.10310999,-0.49815232,-0.6002378,-0.024000833,-0.13869835,-0.30661038,0.3630834,0.08467746,-0.68880135,0.28023976,0.18382256,0.05214978,-0.6972002,0.46022397,0.03830157,-0.15580858,0.12856843,0.31487268,0.19258933,-0.054050658,-0.031300236,0.18816186,-0.4866946,0.41182116,0.16372585,0.00022099273,0.5012332,-0.19848163,-0.39565444,-0.58235747,0.1446367,-0.5839639,-0.2766319,0.33172584,-0.023984393,-0.09955346,0.59802806,0.10171865,0.5071346,-0.17024468,0.20522235,-0.006624644,-0.2804161,0.49187544,0.31520918,0.41791898,-0.4546998,0.51012313,0.0142409885,-0.07940512,0.0051313853,0.1779463,0.48269272,0.10461482,0.42598447,-0.2380532,-0.012061334,0.17947778,0.9142457,0.16924135,0.23863442,-0.07392544,-0.12169148,0.23435004,-0.07459366,0.23904587,-0.0317235,-0.79746336,0.036797054,-0.07404983,-0.03997228,0.39103884,0.1421022,0.20067246,-0.09142069,-0.033595417,-0.041407205,0.0059600896,-0.06281936,-1.1526123,0.32061052,0.13147643,0.9557758,0.29518658,0.04549346,-0.053261578,0.56559396,-0.19127516,0.122216165,0.19527595,-0.022276146,-0.19320825,0.4659454,-0.5401966,0.32978612,0.061662424,-0.09290082,0.13107291,-0.10829973,0.35083437,0.7869572,-0.28255743,-0.084651746,-0.15564044,-0.3066798,0.17794192,-0.26783496,0.289864,-0.49754325,-0.38601765,0.5202028,0.41976005,0.3609459,-0.1326145,0.016011545,0.09966334,-0.19880772,0.27998605,-0.031104283,0.052771725,-0.11028481,-0.29533443,-0.045469724,0.43132845,-0.2321666,0.035170574,-0.08705177,-0.27987558,0.1187192,0.16558564,-0.023954209,0.048095576,-0.7334911,0.32587066,-0.19951597,-0.26443097,0.28153983,-0.2113191,0.09513936,0.07865308,-0.028670518,-0.11420329,0.22639577,0.21318659,0.5110319,0.0406175,-0.008406528,-0.60130703,0.0843019,-0.08691069,-0.2023875,0.21530756,-0.055693183,0.17479645,-0.64234257,0.3098844,-0.15673327,-0.2745376,0.23953056,-0.20145763,-0.016330734,0.42064252,0.07574218,0.031989705,0.062881395,-0.21123222,-0.2527555,-0.16530772,-0.1366533,0.14343716,-0.005978855,0.03292845,-0.13336007,-0.18283142,-0.17318203,0.27624053,0.26896128,0.2891747,0.1253651,-0.093717635,-0.5971255,0.1316684,0.05103162,0.44356918,-0.26017237,0.015699944,-0.012122785,-0.40867382,-0.39167842,0.44502625,-0.092688836,0.37310615,0.07827906,-0.14932404,0.8092105,0.099891864,1.1928848,-0.10039253,-0.42530414,-0.18134348,0.6470726,0.010940467,-0.036289267,-0.30161676,0.8750542,0.5236119,0.054198246,-0.08409185,-0.21478668,-0.0117164,0.18898189,-0.19754133,-0.028392341,-0.091535866,-0.63370603,-0.2985157,0.1151913,0.24460462,0.023610856,-0.09580984,-0.13312724,0.25419152,-0.023514763,0.30498633,-0.4287935,-0.09119392,0.2314599,0.09459227,-0.027411034,0.21797027,-0.42182437,0.27650607,-0.6576363,0.113894515,-0.026561435,0.05952559,-0.091965795,-0.09697242,0.17615478,-0.11908823,0.38610086,-0.21593383,-0.41447887,-0.062026374,0.28143817,0.1864051,0.17171207,0.6058281,-0.21330966,0.14614865,-0.101574115,0.38487062,0.99793303,-0.073712185,0.06609257,0.13579126,-0.47321182,-0.562116,0.12623715,-0.24011748,0.13395841,0.08466125,-0.20835122,-0.13287722,0.24425714,0.30636707,-0.09026696,0.08997451,-0.8477666,-0.1200287,0.037482075,-0.3513871,-0.19038437,-0.3624929,0.25062642,0.5459742,-0.12805362,-0.35606068,-0.014964961,0.4126298,-0.25125003,-0.718886,0.14004637,-0.4731155,0.18477334,-0.1118841,-0.41193908,-0.29067364,0.09710407,-0.47919878,0.06110862,0.121763825,-0.34190375,-0.124932356,-0.20990051,0.093296945,0.71842766,0.056218024,-0.016668703,-0.2771408,-0.47227806,-0.7546398,-0.4483294,-0.0036519233,0.2932088,-0.09017519,-0.4911093,-0.14548661,-0.4033362,0.056785088,-0.14923702,-0.25348768,0.37597114,0.20151663,0.36566767,-0.24463908,-1.0451344,0.18884012,0.13174547,-0.05910366,-0.29378623,0.32791477,0.11328191,0.6376712,0.15219712,-0.027116682,0.10694678,-0.5744621,0.2639939,-0.20515724,-0.01758129,-0.75566965,0.08970086 -17,0.39027205,-0.31621617,-0.5783094,0.06238926,-0.3988146,-0.02210027,-0.19525656,0.32306328,0.5647653,-0.1226885,-0.27206028,0.16599339,-0.08911921,0.41056472,-0.059038855,-0.4725394,-0.17813176,0.3373775,-0.9887722,0.38021213,-0.3824214,0.3376276,0.073574096,0.7527599,0.14684013,0.2944525,0.030066257,0.017664801,-0.06262774,-0.23032838,0.07048934,0.039236344,-0.6332049,0.03809792,-0.40651777,-0.4580615,-0.1598097,-0.46037996,-0.51792455,-0.89234984,0.45567977,-0.91232246,0.71317375,0.08794179,-0.18068787,-0.26174966,0.24200712,0.32185063,-0.23248257,0.041452587,0.34337887,-0.51617426,-0.0973645,-0.7142077,-0.1020005,-0.1994841,-0.38270286,-0.07364276,-0.3716215,-0.014757422,-0.061425567,0.21255141,-0.20012508,-0.11935241,-0.2634308,0.5449101,-0.26613024,0.26962292,0.19803548,-0.37148336,0.33621755,-0.7379641,-0.087796524,-0.04200314,0.450401,0.15285161,-0.4685705,0.48078212,0.014839693,0.33517534,0.114247195,-0.13439228,-0.39045802,0.14210083,-0.13719302,0.6412048,-0.45769396,-0.14911076,-0.06861839,0.09300737,0.52876884,0.291914,-0.0009274699,-0.045876253,0.12288602,-0.34486148,0.26393798,0.86685526,0.5787205,0.12022743,-0.0643195,0.11935234,0.44034335,0.5224942,-0.32005265,-0.13829812,-0.014070475,-0.6853946,-0.09641173,0.15763135,-0.0174791,0.532708,0.08482499,0.25472423,0.84270626,-0.06705784,-0.19813167,0.46178916,0.38287008,0.2160768,-0.08521015,-0.4780436,0.4010947,-0.42277336,0.002200842,-0.23939885,0.46191415,0.035639185,-0.53572965,0.305953,-0.6379066,0.1359452,0.13100931,0.54519635,0.6701843,0.8504479,0.3112158,0.795562,-0.12858868,0.14681025,0.11529903,-0.16996633,0.17300238,-0.26611093,0.10718102,-0.42729604,-0.14044572,-0.43271294,-0.07541313,0.32329762,0.6276222,-0.6280294,-0.25695837,0.030065913,0.9804781,-0.22232619,0.054871354,0.73486173,1.0246603,1.0766639,-0.11783283,0.9043912,0.03398256,-0.36925584,-0.28859007,-0.07629065,-0.81288713,0.24410066,0.14073692,-0.7498572,0.41340873,-0.0911629,-0.10073328,0.30284172,-0.6266619,-0.17608823,0.048510443,0.15420772,0.038083542,-0.014903361,-0.6322024,-0.34697312,-0.22606763,0.04649339,0.3945895,0.30305254,-0.58585167,0.38578627,-0.121879384,1.3607075,-0.12757264,0.03991353,0.14077534,0.45805836,0.18837994,-0.18296653,-0.007388237,0.21196751,0.4535614,0.040220488,-0.46774256,0.017700883,-0.32325652,-0.21619095,-0.19010872,-0.28168938,-0.3497114,-0.020442534,-0.34642345,-0.45206755,-0.02092343,-0.32470372,0.08937883,-2.293158,-0.23994341,0.116845734,0.63918906,-0.19343418,-0.075597264,-0.2560732,-0.48786744,0.292742,0.020515285,0.71489084,-0.61576086,0.48578998,0.5320374,-0.7450077,-0.1064765,-0.6145777,-0.07472775,0.20406364,0.21343789,0.09257908,-0.10888956,-0.09357346,0.045768145,0.6209232,-0.022554789,-0.024947925,0.6207749,0.6505421,-0.16894661,0.5188069,-0.3018668,0.6246226,-0.6568498,-0.33255768,0.40297815,-0.5336387,0.16048488,-0.39886466,0.026272291,0.7814133,-0.3814577,-1.0203959,-0.39711943,0.27819854,0.9747791,-0.21752836,-0.4859166,0.14196599,-0.6684485,-0.26077485,0.084043555,1.1018918,-0.20798635,0.06811357,-0.7207657,-0.32324794,-0.08380654,0.25515994,0.07761157,0.03327632,-0.3780712,0.7543635,0.043771833,0.47300968,0.15064754,0.23674335,-0.42310616,-0.3182983,0.2800063,0.7001795,0.4194759,0.15947524,-0.090803206,-0.032419357,-0.15629752,-0.1521645,-0.13898735,0.9974367,0.55277735,-0.23957287,0.11316822,0.37861776,-0.072297215,-0.16227435,-0.39379397,-0.20327902,-0.1860395,-0.034356236,0.577339,1.102655,0.07442188,0.36571,0.046145905,0.4375939,-0.18328136,-0.51785904,0.57797176,0.66859204,-0.28513393,-0.14825855,0.54233736,0.3798623,-0.48451585,0.45749187,-0.7161922,-0.49472797,0.53425956,-0.19446689,-0.42930433,0.29303476,-0.34638157,0.22443981,-0.4524068,0.30210355,-0.313033,-0.5391735,-0.6842856,-0.17601405,-1.4230918,0.1899177,-0.28525114,-0.17037672,-0.44733316,-0.07586145,-0.014962465,-0.5767805,-0.5706545,0.09018964,0.33352596,0.7400623,-0.0775997,0.18736406,-0.1074429,-0.47617486,0.06989025,0.13321456,0.36925545,0.34938708,-0.2091342,-0.44148958,-0.03603516,0.20933667,-0.45282477,0.0009130307,-0.7718597,-0.5906357,0.03970531,-0.5983067,-0.1803177,0.6256251,-0.41383,0.0060575334,-0.37455508,0.071750276,0.1383825,0.13736326,-0.03965011,0.18123406,0.107052214,-0.14902626,0.31577513,-0.07940367,0.55469567,0.070783876,0.31101885,0.022483757,-0.04889537,0.17480388,0.42510518,0.7934749,-0.22846244,1.2628284,0.47330996,-0.07991243,0.078723006,-0.32302022,-0.5545089,-0.46805885,-0.16936421,0.4126197,-0.48604405,-0.2686634,0.16915597,-0.4694381,-0.881984,0.65608054,-9.945306e-05,0.124896504,0.18453561,0.42926627,0.62624115,-0.285054,-0.116835065,0.034510985,-0.21489672,-0.3953369,-0.11534894,-0.5329835,-0.46698835,-0.33437058,1.178951,-0.2410283,0.2501198,0.33414394,-0.45923945,0.1247891,0.16148204,-0.20551997,0.13010553,0.58001137,0.051345114,-0.6175745,0.36285046,-0.21987191,-0.16301613,-0.6886208,0.28125426,0.75674117,-0.9560468,0.4651364,0.37527856,-0.23252869,-0.63202435,-0.5685235,-0.20761698,0.10817588,-0.059717346,0.35465145,0.26517847,-0.45334843,0.43195343,0.23684913,-0.640263,-0.67205936,0.1526642,-0.1452962,-0.6787568,-0.095114164,0.3857315,-0.01364068,-0.04887246,-0.2229589,0.35503176,-0.3382407,0.5247325,-0.2737912,-0.13699043,0.040871542,-0.3656251,-0.3472194,-1.0066129,0.37350005,-0.635127,-0.45548275,0.52878344,0.08786147,0.15739137,0.25084305,0.39033368,0.36059934,-0.18249017,0.021358518,-0.55456907,-0.43934906,0.29236242,0.42362258,0.58548,-0.42913616,0.62650543,0.1805314,-0.22388586,0.4103568,0.09428228,0.5205085,-0.25342783,0.52208525,-0.078946754,-0.1800831,0.20140834,0.89463973,0.15302187,0.319869,0.029845275,0.0027469478,0.27560183,-0.041288838,0.14389423,-0.1224329,-0.6638603,0.099878736,-0.3075731,0.05631067,0.53939176,0.3300617,0.19936953,0.0589174,-0.37635022,0.073164955,0.36647776,0.14173482,-1.5427787,0.46780184,0.30480182,0.9422039,0.17569403,0.30167583,-0.2207867,0.8993,-0.28195494,-0.000990253,0.39769933,-0.027787907,-0.36769524,0.6077604,-0.5815005,0.59415823,-0.17659193,-0.057677332,0.1332706,0.14236914,0.37561694,0.8870383,-0.20389853,0.056729242,0.06383489,-0.21856841,-0.24662186,-0.36400804,0.13634545,-0.61937386,-0.62112623,0.87105125,0.43498495,0.58059156,-0.20479316,0.16640092,-0.09060553,-0.17922406,0.32524216,0.037591163,-0.12190496,-0.07971501,-0.7575706,0.39533588,0.41562846,-0.07088241,0.07977658,-0.23530273,0.13750964,0.21502231,-0.061987247,-0.039046895,-0.31004623,-0.7558527,0.03614404,-0.6162007,-0.55099857,0.29586676,-0.17410849,0.111250706,0.27010298,0.040735506,-0.20596462,0.6114944,0.18687946,0.962051,0.09497714,-0.27496377,-0.26251185,0.50801766,0.24715918,-0.24488735,0.1261241,-0.28643447,0.28019345,-0.466813,0.69437814,-0.3329518,-0.43225154,-0.026367974,-0.204429,0.02594954,0.5760598,-0.22265282,-0.23485889,0.085072584,-0.38458955,-0.59810275,-0.22133654,-0.40056193,0.09151683,0.40622795,-0.018109603,-0.3854782,-0.32740334,-0.23357998,0.5798864,-0.10075231,0.7062781,0.55516183,0.2901393,-0.16201246,0.015935015,0.27638137,0.7652985,0.15898685,-0.11186215,-0.73427796,-0.3239856,-0.49516097,0.47581923,-0.14043695,0.1886192,0.17668891,-0.15967326,0.93122,-0.11389263,0.94718516,0.09310902,-0.20290169,0.14385703,0.66082865,-0.31384754,-0.026678223,-0.52987665,1.0186518,0.4159169,-0.2919289,0.09610888,-0.37662888,0.11251393,0.32826492,-0.49136165,-0.16088222,-0.11591604,-0.57721287,-0.22922641,0.20791164,0.31137484,0.18079506,-0.3657219,0.070948154,0.21331738,0.0258071,0.011818108,-0.60729164,-0.2639264,0.3986432,0.12925786,-0.2806235,0.14302683,-0.3874593,0.3941108,-0.29947546,0.0964133,-0.48703825,0.15837556,-0.21807393,-0.48378485,0.27939928,-0.06643944,0.24642305,-0.62472826,-0.15888928,-0.0846694,0.19887957,0.16337651,0.17507496,0.35309795,-0.28420568,-0.15293838,0.04084648,0.6516176,0.97204393,-0.4925214,0.16169253,0.35440892,-0.431192,-0.6264077,0.51015687,-0.29873917,-0.24667287,-0.1282348,-0.4225625,-0.4071965,0.21029264,0.0095068,0.21264444,-0.27378651,-0.7165013,0.03449787,0.42443788,-0.1472802,-0.20565878,-0.26593098,0.16183501,0.4321775,0.118832305,-0.40294302,0.03953961,0.3480645,-0.22138672,-0.17592405,0.13919193,-0.4390478,0.25930443,-0.071412176,-0.37300184,-0.2009597,-0.034914587,-0.743009,0.16148768,0.08290073,-0.49287063,0.0475311,-0.10389379,0.08051314,0.87344164,-0.33555266,-0.027667327,-0.33022845,-0.46421137,-0.9496189,-0.4153927,-0.08813758,0.44756538,-0.118643805,-0.7435734,-0.02224202,-0.06407028,-0.35611802,-0.05387892,-0.45884132,0.42832777,0.10458946,0.5539648,-0.5689245,-0.99808764,0.24532112,0.18945804,-0.6658981,-0.49177915,0.59434795,0.21563144,0.78037906,-0.045741078,0.017259013,0.09522638,-0.3561679,0.03979427,-0.28577527,-0.10787023,-0.861762,-0.0067627374 -18,0.3198788,-0.19417654,-0.4986742,-0.08629727,0.06717421,0.18904835,-0.21208255,0.45551637,-0.0483187,-0.50172293,-0.1523055,-0.14000437,0.0035159588,0.44135463,-0.2011985,-0.60555667,-0.05489007,0.0082280915,-0.6001049,0.62348384,-0.37048462,0.22039102,0.027487239,0.2587578,0.12330296,0.2221988,0.13214001,-0.27925083,-0.12791394,-0.1524468,-0.12808195,0.12908222,-0.41570064,0.015508238,-0.17540668,-0.2946559,0.005652241,-0.27832767,-0.31444862,-0.6122084,0.22671299,-0.74808186,0.38008195,-0.04719033,-0.23295327,0.39820778,0.057704728,0.32535598,-0.3498222,0.025343394,0.1390975,0.014108608,-0.04974084,-0.2059831,-0.18690605,-0.6013342,-0.50909984,0.0400625,-0.4137721,-0.27023897,-0.078600995,0.06572318,-0.33839452,0.055806138,-0.19441456,0.34573066,-0.46297905,0.0014737527,0.17678365,-0.07680668,0.21931116,-0.5087257,-0.16834621,-0.1259884,0.16602132,-0.0687434,-0.032690205,0.0927135,0.2557449,0.46058014,-0.13560478,-0.014227142,-0.21685524,-0.15316598,0.18209341,0.4408484,-0.12454093,-0.51331335,-0.07222232,-0.024909882,0.09007635,0.01987787,0.053364564,-0.24318632,-0.15008251,0.03881859,-0.48401126,0.19269113,0.37198958,-0.41757762,-0.40106937,0.38314274,0.52468365,0.20396192,-0.25938594,-0.08581369,-0.041325387,-0.33076143,0.0027825653,0.13931176,-0.19407402,0.546876,-0.15215711,0.29681996,0.59550995,-0.1055706,0.17615186,-0.13366453,-0.09899041,-0.1460504,-0.16321276,-0.2363843,0.04623631,-0.29929075,0.15346405,-0.27080873,0.78143597,0.12325084,-0.6679508,0.40132958,-0.5115648,0.13305148,-0.052130125,0.5201157,0.5341777,0.21568419,0.10053166,0.45666617,-0.34053293,-0.016897658,-0.20599064,-0.24498844,0.0921711,-0.0021839063,-0.117964156,-0.45460054,0.056758635,0.15671021,-0.061415125,-0.1100833,0.2615641,-0.47197065,-0.06391165,0.046858814,0.8266601,-0.3117367,-0.10573185,0.4965247,0.9784086,0.91606075,-0.0011165519,1.1608853,0.27662036,-0.16470481,0.19770685,-0.42357513,-0.68287003,0.1898324,0.305145,0.24034677,0.33014092,-0.0020275393,-0.1326659,0.33643487,-0.18998334,0.15659158,-0.24262549,0.13431133,0.12194671,-0.0035122077,-0.22712652,-0.24559307,-0.003228267,-0.087746225,0.17534615,0.13230355,-0.19942814,0.3102941,0.088155,1.6130577,-0.037675697,0.17915006,0.113829605,0.31215012,0.11737779,-0.017569592,-0.0011415859,0.41953245,0.45468348,0.061734613,-0.6046523,0.21568036,-0.264816,-0.5427122,-0.05523952,-0.34357452,-0.08279102,-0.050373513,-0.54192734,0.043245576,-0.074551776,-0.20075569,0.25659508,-2.8392174,-0.12814112,-0.25927132,0.28510344,-0.29442388,-0.23879178,-0.1503384,-0.37125635,0.36051783,0.33225593,0.42664182,-0.526264,0.507636,0.3136881,-0.3248888,-0.15353197,-0.5574481,-0.109641805,-0.046208,0.45231828,-0.077957734,0.20822906,0.1549895,0.09281559,0.38919845,-0.16060568,0.12514456,0.26989573,0.33168158,0.12125471,0.38520148,0.16834341,0.49315214,-0.2370534,-0.03551706,0.19683637,-0.3207588,0.34523338,0.026228232,0.18058003,0.28856558,-0.32034317,-0.7791784,-0.5625126,-0.30632147,1.372309,-0.29063126,-0.30178487,0.18935302,-0.07146287,-0.28735548,-0.20801684,0.338592,-0.1315329,-0.13071926,-0.780971,0.06555054,-0.16617028,0.3018905,-0.046475198,0.053883534,-0.2555286,0.608131,-0.050941482,0.57990867,0.2659551,0.17168456,-0.046491094,-0.29959202,0.016579533,0.9199593,0.25796056,-0.0025888581,-0.14307426,-0.23455541,-0.37235874,0.04946392,0.1681791,0.47273323,0.6171993,0.17021443,0.08032982,0.21161605,-0.07532653,0.06621288,-0.1627254,-0.24274397,-0.046099346,-0.017991876,0.4777171,0.44147488,-0.31385696,0.40596676,-0.13032085,0.3980829,-0.13672939,-0.3994037,0.47770527,0.7858726,-0.20861572,-0.19496945,0.46148932,0.52905023,-0.32869437,0.28722987,-0.53193015,-0.15557528,0.5409275,-0.3082144,-0.27461237,0.33512956,-0.289513,0.12336743,-0.8778821,0.23620449,-0.39683193,-0.3172711,-0.50828356,-0.083366,-3.5039008,0.18178706,-0.17357586,-0.32589638,-0.14594685,-0.11486697,0.31526136,-0.6323186,-0.4952674,0.04878855,0.11773224,0.57298654,0.07542947,0.15630884,-0.30531913,-0.19160177,-0.22796462,0.1916372,0.08110919,0.27473944,-0.101570144,-0.3983437,-0.050600607,-0.16610084,-0.34900683,0.19364037,-0.45947647,-0.4411726,-0.10059675,-0.35602078,-0.25789794,0.5226535,-0.2660514,-0.01172753,-0.11161211,0.0025584758,-0.20801185,0.3204366,0.15956523,0.16326143,-0.0529096,-0.03960871,0.026459916,-0.3185798,0.18648027,0.10640058,0.31431085,0.44476852,-0.03341911,0.15809868,0.41347134,0.47256014,0.09686084,0.5742873,0.45849302,-0.1062037,0.2946035,-0.25523916,-0.12957482,-0.5021688,-0.22777684,-0.14760056,-0.25103143,-0.56771374,-0.17816207,-0.1892126,-0.7075043,0.35286856,-0.08949513,0.05692625,-0.08883443,0.28209314,0.50371623,0.012378327,0.066122375,-0.002522107,-0.0145034455,-0.396996,-0.3315918,-0.6944379,-0.25218773,0.13319555,0.88763416,-0.10425309,-0.0105694095,-0.17068808,-0.22338311,-0.07711876,0.14400987,0.14659153,0.21497099,0.39214125,-0.2208967,-0.67598456,0.5788792,-0.2215306,-0.29857597,-0.3991476,0.061188944,0.6007776,-0.5937668,0.48969823,0.3651559,0.033803765,-0.078925356,-0.34751147,-0.12801714,-0.026816837,-0.2776014,0.22258335,0.095839165,-0.6068529,0.32320398,0.33840364,-0.085509375,-0.5734405,0.55989265,0.007190585,-0.36786416,0.06600528,0.34251055,-0.045596395,0.030121772,-0.17691013,0.17046623,-0.4475333,0.15683974,0.2587559,-0.06554194,0.24877523,-0.14937435,-0.028692741,-0.560579,0.027747747,-0.4500585,-0.25175035,0.27823278,0.09896158,0.25543123,0.11483299,-0.121701084,0.34575084,-0.21731596,0.12900464,-0.048239328,-0.06609645,0.32849228,0.4002855,0.32528323,-0.34306228,0.5739524,0.030110836,-0.031381197,0.10850022,0.12328284,0.44962117,0.17544495,0.39543998,-0.010566241,-0.2680356,0.38634452,0.6111692,0.3263012,0.52648413,0.06472851,-0.27250674,0.30032045,0.04457348,0.022297764,-0.065838,-0.3288972,-0.17656495,0.05589432,0.16351512,0.49988994,0.05326241,0.3840316,-0.17975336,-0.15475447,0.04294251,0.18825081,-0.084512584,-0.96247476,0.40443358,0.16962455,0.7667815,0.45385557,-0.085955426,0.046393726,0.5072585,-0.2663927,0.1322554,0.29829445,0.06872388,-0.67245495,0.62388366,-0.57054245,0.3779896,-0.05228417,0.06743904,-0.022728026,-0.050099183,0.24634865,0.8605329,-0.19378288,-0.008047589,0.014903605,-0.3573264,0.18250911,-0.277353,0.08167578,-0.39828107,-0.31055892,0.46998712,0.5019227,0.2788439,-0.20217682,-0.013505117,0.045168247,-0.029928211,0.15179081,0.0847934,0.23766646,-0.04598208,-0.62987316,-0.34457552,0.53020155,-0.25620395,0.1958311,0.11631309,-0.35557225,0.35824347,-0.110610805,0.012683709,-0.053665005,-0.48499906,0.05603586,-0.18874653,-0.41718665,0.28617537,-0.329897,0.3352806,0.14782408,0.024164625,-0.34030125,0.14787951,-0.07589148,0.52784187,-0.13249503,-0.21197873,-0.40102056,0.10462185,0.1891567,-0.1687941,-0.015957618,-0.25344452,0.009809987,-0.5626239,0.35084254,0.04170188,-0.27248082,-0.06481852,-0.2460861,0.028617399,0.49894232,-0.094932646,-0.065710686,-0.09558902,-0.116669826,-0.2519803,-0.09186164,-0.08046678,0.23782413,0.108498685,0.017479248,-0.077295795,0.06575046,-0.015770905,0.38513675,0.009084032,0.42015913,0.48817018,0.21193634,-0.32762393,-0.2853741,0.15631543,0.30563042,0.13512418,-0.1645916,-0.2576763,-0.553381,-0.21743569,0.22330745,-0.18901409,0.4751735,0.1857592,-0.32720953,0.64263064,0.0020121078,1.0125827,0.023533825,-0.294009,0.050413005,0.47096145,0.09873622,0.013335536,-0.30556583,0.7262442,0.42421642,0.03502292,-0.1346852,-0.21476147,-0.20405611,0.0072209197,-0.19155025,-0.23395425,-0.0525218,-0.5217144,-0.3493515,0.11541,0.23281187,0.26473796,-0.025077263,0.06813196,0.1750814,0.078895845,0.4150256,-0.4101347,-0.18684149,0.21734628,0.05136644,-0.083149165,0.15035538,-0.47974166,0.39504534,-0.5933692,0.043911893,-0.16781959,0.09583733,-0.055455558,-0.27272326,0.19931942,0.0028597831,0.3166249,-0.3541092,-0.37144855,-0.279796,0.5194033,0.18672441,0.15726538,0.6660484,-0.14019425,0.053572915,0.12775527,0.57545364,1.0146929,-0.18571065,-0.02257696,0.3256857,-0.402417,-0.6788909,0.13022436,-0.2111169,0.33735552,-0.011585397,-0.15437286,-0.43392113,0.40140316,0.12798026,-0.07986718,0.06938246,-0.4715458,-0.31649482,0.35847953,-0.34239623,-0.25882584,-0.26691303,0.15901822,0.578222,-0.40179294,-0.257582,-0.04344273,0.21371046,-0.27907765,-0.5256373,-0.11934164,-0.40066913,0.35441336,0.23687705,-0.18239406,0.030587226,0.06943067,-0.3785891,0.26241344,0.21907955,-0.37242144,-0.029289505,-0.27142805,-0.1457338,0.8680205,-0.19411321,0.05961592,-0.48772278,-0.4570479,-0.6917952,-0.5255402,0.5845014,0.05191343,0.04260341,-0.4448881,0.0748748,0.020713652,-0.12286744,-0.046719182,-0.31560162,0.41729245,0.14590408,0.23160006,0.046613455,-0.6902648,0.08346748,0.0038633824,-0.12118823,-0.5909443,0.51043415,-0.070747286,0.68621975,0.07484631,0.11501215,0.32074103,-0.40448716,-0.08747773,-0.26058605,-0.13608098,-0.6938697,0.13439764 -19,0.49934393,-0.24427715,-0.48407307,-0.13663301,-0.31459793,0.09762552,-0.034383837,0.44843483,0.20333113,-0.36280823,-0.10205736,-0.17418839,0.11372471,0.22912833,-0.061342772,-0.6171644,0.0007729848,0.2806286,-0.55661964,0.5708997,-0.39249548,0.17925741,-0.094573826,0.33800286,0.21387464,0.25607887,-0.014277484,-0.19128257,0.008534614,-0.1760221,-0.23256704,0.3535759,-0.4756271,0.15528342,-0.1097965,-0.19397432,-0.021895504,-0.46819407,-0.36677277,-0.67494017,0.31959412,-0.7362362,0.3829651,0.0072054765,-0.19209853,0.33360374,0.056861408,0.30657816,-0.28915083,-0.19903418,0.30101174,0.019796813,-0.09326508,-0.15499742,-0.014600659,-0.35623488,-0.4729762,-0.08553798,-0.267994,-0.3003747,-0.28146908,0.07534426,-0.3371333,0.011294151,-0.09457766,0.5757571,-0.36254227,0.2445034,0.2241221,-0.14228147,0.17010808,-0.46894428,-0.027804732,-0.065028,0.36075455,-0.13769995,-0.22918826,0.26508325,0.32564843,0.24875611,-0.054332517,-0.12373107,-0.17763217,-0.113232456,0.12678733,0.5058903,-0.16787083,-0.60460526,-0.07196563,0.060193446,-0.2278787,0.123276636,0.10152816,-0.4264369,-0.1532639,0.10786767,-0.23162499,0.39968678,0.33420303,-0.29052612,-0.24791886,0.2673677,0.49146912,0.29016745,-0.15532757,-0.025597285,0.040878184,-0.5193821,-0.1458231,0.050728396,-0.1497869,0.46412545,-0.1419565,0.256332,0.7673575,-0.07272816,-0.09642687,0.09187795,0.030646654,-0.13348296,-0.3068692,-0.1719842,0.23365006,-0.4324536,0.24192439,-0.06890071,0.8181616,0.18551685,-0.67973244,0.4796297,-0.63788426,0.112927094,-0.17274208,0.36409894,0.65727526,0.22377287,0.2740354,0.55003047,-0.37670368,0.02701974,-0.060254447,-0.53805834,0.02498549,-0.06984422,0.059754364,-0.5453366,0.05621044,-0.06099016,-0.07015848,0.03832485,0.20027654,-0.47369638,-0.13768029,0.16283208,0.8733495,-0.31348902,-0.09790143,0.6238001,0.9472589,0.9147831,0.06330079,1.0415642,0.13613933,-0.26814553,0.31436,-0.17315441,-0.70796984,0.2486976,0.3717992,0.25798485,0.07699146,0.13882619,0.083073325,0.40512857,-0.23343469,0.06530869,-0.09093008,0.19945058,0.1782704,-0.07976565,-0.4108872,-0.30114725,-0.118173435,0.0660602,0.08135428,0.06753309,-0.13435178,0.39227197,0.15597199,1.7972214,0.026430022,0.09483054,0.068842314,0.42517567,0.24857451,-0.09707325,-0.18919493,0.3919583,0.35916778,0.14126389,-0.5030265,0.23542842,-0.14488322,-0.3978677,-0.08688914,-0.38963285,-0.2283273,0.0079068085,-0.39028803,-0.07432961,-0.0915701,-0.1968058,0.5025045,-3.0476847,-0.14847693,-0.09101035,0.3224796,-0.18663651,-0.31502578,0.004050644,-0.47458532,0.17701915,0.22848926,0.48101857,-0.6683172,0.48061758,0.3337983,-0.47235993,-0.12219674,-0.50473505,-0.19203101,0.055936288,0.34503806,0.061413623,0.13202816,0.026462412,0.1953208,0.41882223,-0.015480348,0.07675091,0.20072085,0.38112718,0.031513803,0.67889404,-0.07436053,0.5233504,-0.14575757,-0.108318835,0.2201144,-0.16860224,0.28599027,-0.044221725,0.09358867,0.48944762,-0.30478272,-0.7949871,-0.68086076,-0.14423308,1.0191139,-0.3169271,-0.18214951,0.3125825,-0.44191977,-0.2863356,-0.039501783,0.28429997,0.036113795,-0.09881829,-0.7149521,0.11854647,-0.032388855,0.08590526,0.029737763,-0.22042471,-0.3983008,0.765242,0.03999366,0.62027997,0.3325343,0.07767601,-0.1965642,-0.34902754,0.021569984,0.65054226,0.23754305,0.1290677,-0.10823827,-0.14899065,-0.35238793,-0.006589047,0.044363983,0.60458356,0.5197752,-0.023698013,0.16852301,0.26622808,-0.020972256,0.09178685,-0.15528044,-0.23607127,-0.030702667,-0.18714496,0.44948405,0.5913916,-0.20783368,0.4341051,-0.00537453,0.3324602,-0.12840863,-0.3836816,0.44687164,1.0449755,-0.14261273,-0.28199005,0.4147101,0.4216736,-0.21901368,0.25423986,-0.41939524,-0.076831646,0.5070244,-0.24724182,-0.3524895,0.28068373,-0.24843471,0.09501317,-0.7564596,0.21777739,-0.17987885,-0.58394724,-0.40369755,-0.15324338,-3.6047814,0.21508186,-0.2579797,-0.1708245,-0.14727905,-0.014432192,0.1271228,-0.6021435,-0.49148354,0.13864939,0.069275804,0.6235747,-0.07716436,0.11549722,-0.24441138,-0.20518301,-0.11349057,0.13949837,0.057624795,0.3272508,-0.10940192,-0.36482346,-0.04054036,-0.024132859,-0.34107175,0.09539615,-0.66328996,-0.4666614,0.021179114,-0.5705617,-0.3163084,0.65848416,-0.27290446,-0.004457585,-0.16854505,-0.039460946,-0.26537272,0.267889,0.14359413,0.1338083,-0.13837,0.0758395,0.033937182,-0.3438241,0.26253337,0.0072219926,0.31404725,0.16033024,0.023353685,0.16685675,0.46651882,0.5686603,-0.06172518,0.8530512,0.40245745,-0.10239053,0.24074928,-0.2567711,-0.34777293,-0.46270669,-0.31340683,0.06639685,-0.32288128,-0.43259132,-0.1365511,-0.3223943,-0.55656904,0.44508654,0.068734966,0.060161058,0.07500865,0.049123503,0.53365654,-0.23358454,-0.011302781,0.084558085,-0.14598857,-0.64516234,-0.17828801,-0.59136933,-0.4410496,0.14215101,0.8486653,-0.27007934,-0.004024756,0.0068309624,-0.40892914,0.06459867,0.18481807,0.033558853,0.3474908,0.47789133,-0.22680269,-0.57153165,0.57552254,-0.2508095,-0.2737545,-0.49128118,0.19702314,0.53948253,-0.64337605,0.69264114,0.24377593,0.06417422,-0.1509709,-0.3653179,-0.22688685,-0.034718625,-0.18796507,0.3552135,0.19240595,-0.7350663,0.33511153,0.3295868,-0.18672186,-0.70476574,0.56174904,-0.074164,-0.32644606,0.024921954,0.2536823,0.066348255,-0.039120186,-0.14810117,0.211555,-0.4284078,0.18838494,0.11972187,-0.076868944,-0.034563884,-0.16771518,0.06458,-0.66276425,-0.09922574,-0.3392233,-0.26358944,0.20705785,0.036895037,0.20581453,0.09067372,0.006557043,0.26603714,-0.2938156,0.096598595,0.03152058,-0.24110462,0.31412193,0.39095,0.36283714,-0.40967765,0.50861824,0.0027420481,-0.043430746,0.06125581,0.11997219,0.37184462,0.102654226,0.50158876,-0.06644145,-0.16999076,0.26431724,0.9759799,0.14089979,0.46025142,-0.021970289,-0.064748526,0.18347563,0.02430105,0.25955757,0.14093822,-0.6746541,0.08971027,-0.17673787,0.2125333,0.45671108,0.09820579,0.15058818,-0.038293686,-0.5014722,-0.023171136,0.1908867,0.15809312,-1.2361608,0.42525586,0.21970135,0.86134875,0.39697257,0.056659207,-0.02370927,0.66374004,-0.11930822,0.1587626,0.26905313,-0.10226463,-0.5523234,0.5429697,-0.66946316,0.4261478,-0.11798501,-0.106873125,0.047096837,-0.09300869,0.27030322,0.6599649,-0.22131577,-0.017949639,0.055862196,-0.37269497,0.18321104,-0.46102905,0.008579151,-0.44998068,-0.28077686,0.49758127,0.73619807,0.3198661,-0.23262952,0.11712638,0.07543667,-0.09351514,-0.0031460572,0.08292511,0.030044874,0.06051967,-0.8113947,-0.15603603,0.5832161,-0.15636286,0.24448316,-0.123297736,-0.17727624,0.396865,-0.11661736,-0.076049194,-0.14376254,-0.6718409,0.09653784,-0.3041262,-0.527731,0.62029725,-0.020283593,0.21040146,0.21672545,0.022382034,-0.12756224,0.51388085,0.15274352,0.83862877,-0.061548505,-0.012773623,-0.5464276,0.017667007,0.059107468,-0.12051259,-0.19391544,-0.46474534,0.008923433,-0.4928517,0.40157136,0.09124366,-0.32549718,0.014938775,-0.08706519,0.08742947,0.5618622,-0.08992537,-0.12930945,-0.12261728,-0.051448833,-0.26365432,-0.15687118,-0.03842419,0.23822628,0.22368692,0.04084234,-0.12483266,-0.14123283,-0.2192104,0.37143925,0.06067891,0.5975997,0.35983706,-0.02203521,-0.096811466,-0.18233956,0.38369685,0.43311882,-0.080911845,-0.1567595,-0.30915037,-0.38102484,-0.35503998,0.1990477,-0.025306635,0.40710175,0.04043339,-0.17372634,0.6815123,-0.19445318,1.0256037,0.112455435,-0.2852526,0.30086434,0.46005222,0.0514297,-0.00080904167,-0.29315588,0.765527,0.37849432,0.048005316,-0.20028931,-0.27770615,0.012357394,0.097588986,-0.17031911,-0.07703201,-0.030167166,-0.5049436,-0.16261019,0.1478142,0.199021,0.32266998,-0.08445403,-0.028772546,0.2764102,-0.07161629,0.19131282,-0.4077402,-0.23782478,0.23959915,0.18870682,0.02265507,0.09904304,-0.4170955,0.4586439,-0.33896658,0.12910937,-0.37633508,0.22077808,-0.3556987,-0.11818988,0.10172693,-0.020731179,0.33754244,-0.29163456,-0.23223399,-0.29082388,0.43806833,0.25149032,0.06830673,0.52288383,-0.20412925,0.016338617,0.1582748,0.52485335,0.6638498,-0.2400917,-0.10832871,0.41031533,-0.4394721,-0.41805345,0.31058356,-0.14876722,0.11259452,0.11502588,-0.09171927,-0.5550405,0.2933883,0.23411971,0.065542586,0.007212817,-0.6397281,-0.13714303,0.41552356,-0.35024825,-0.24377419,-0.24091782,0.16558628,0.5831726,-0.32934913,-0.28153664,0.08082798,0.0039171698,-0.06551151,-0.567663,-0.077371866,-0.43149564,0.3371636,0.025925461,-0.25101763,-0.15085249,0.061973877,-0.39845005,0.1909776,0.024168829,-0.35915887,0.13270408,-0.19847417,-0.1444604,1.0285596,-0.12090548,-0.044867888,-0.64656574,-0.41351902,-0.6364575,-0.4495893,0.45757928,0.050934814,0.080087475,-0.43595663,-0.06949656,0.07146356,-0.1542703,-0.1605366,-0.34942433,0.43868962,0.063559376,0.36923018,-0.06801726,-0.9099571,0.21453151,0.08351581,-0.16669875,-0.6254645,0.4111751,-0.15123698,0.7197518,0.023112353,0.086867616,0.251341,-0.25441763,-0.19775629,-0.3358477,-0.17990804,-0.74797785,0.05878628 -20,0.31794685,-0.01037313,-0.39937732,-0.32618397,-0.30779946,0.20888808,-0.08883622,0.18959989,0.16105205,-0.32859743,-0.11707541,-0.094066225,0.033459567,0.2629714,-0.29703963,-0.8106551,-0.08670086,0.029161043,-0.49537206,0.33766276,-0.5164772,0.48448008,0.13684483,0.33103803,-0.0039607286,0.25888687,0.35596824,-0.19561034,-0.29445884,-0.13661961,-0.26750532,0.31125054,-0.6959423,0.15769725,-0.10919845,-0.25565135,0.122773185,-0.325046,-0.24795623,-0.6569829,0.28742594,-0.8240501,0.47911477,-0.07545852,-0.28146434,0.2244696,0.19736628,0.12691164,-0.4100976,0.20564261,0.08694891,-0.35188824,0.007933965,-0.11136419,-0.29782522,-0.5441766,-0.49017954,0.052011278,-0.63209087,-0.2997775,-0.2979102,0.17223695,-0.37422928,-0.017195573,-0.24297489,0.23929618,-0.51343125,-0.031714126,0.14607993,-0.13677552,0.20149258,-0.39618272,-0.15183899,-0.07301687,0.17965111,-0.16990061,-0.1918117,0.35388163,0.29094464,0.4411975,0.034172274,-0.32454377,-0.17141068,-0.15825292,0.17223927,0.4023879,-0.09369263,-0.42363268,-0.25476116,-0.034174867,0.22414772,0.24972701,-0.13842094,-0.34278843,-0.04527458,0.05579426,-0.100655176,0.15343618,0.4687695,-0.36168212,-0.25957096,0.34480602,0.17757574,0.13615635,-0.18566473,0.20509544,-0.04115942,-0.42087895,-0.2670148,0.24297303,-0.11427726,0.64430785,-0.050761692,0.12228185,0.76228744,-0.26622283,0.21891376,-0.17426613,-0.0047338866,-0.11512348,-0.15934166,-0.14567533,0.05766853,-0.544893,-0.06299924,-0.24195729,0.90753305,0.16188225,-0.8057499,0.26469412,-0.47226658,0.07091848,-0.22065139,0.606382,0.6294965,0.34214693,0.23200367,0.82880527,-0.64517033,0.092510656,0.06448132,-0.41757354,0.023585528,-0.11337468,-0.12119033,-0.44205016,-0.01686468,0.17532888,0.11894179,-0.07586605,0.26193425,-0.28638357,0.041775,-0.20212787,0.71518993,-0.44294822,0.050192375,0.74909365,1.0376608,0.8921379,0.1438208,1.4037048,0.36187893,-0.11061971,-0.072037995,-0.1640911,-0.463093,0.1484694,0.41970322,-0.08276874,0.28576732,0.038981613,0.13417526,0.28222805,-0.40120474,0.20186695,-0.005930679,0.2719823,-0.15583524,0.03064873,-0.3962366,-0.19924268,0.23295297,0.15561526,-0.1304036,0.18069637,-0.08684016,0.44327238,0.19321974,1.3353083,0.07694981,0.08486678,-0.10210812,0.4413017,0.28542447,0.03190484,-0.0015087798,0.34562466,0.3469875,-0.07022342,-0.5570532,-0.0876744,-0.21828455,-0.50635314,-0.29485968,-0.5222804,-0.0010330677,-0.14492717,-0.43547273,-0.13807002,0.17195892,-0.3194633,0.5243218,-2.4446545,-0.08029424,-0.14168927,0.26495788,-0.2104331,-0.24476928,-0.2238746,-0.39857048,0.42571473,0.41679227,0.30495262,-0.6788555,0.27577603,0.39088088,-0.14560297,-0.23392986,-0.65726817,-0.08134786,-0.18874943,0.4707889,-0.004860161,-0.0627397,-0.17372409,0.25680822,0.60448706,0.057058945,0.017632008,0.0062530227,0.34565467,0.08862158,0.57406104,0.23836263,0.5810672,-0.043001074,-0.0014644172,0.430373,-0.35785252,0.27834973,0.12446499,0.2023829,0.3440665,-0.5025904,-0.7161421,-0.6084595,-0.53165936,1.1946852,-0.47456324,-0.42264935,0.33658212,0.12929067,-0.16433723,0.02359637,0.32418597,-0.12964995,0.18667072,-0.6236445,0.004834899,-0.00896338,0.07442298,-0.04916014,0.19772418,-0.17209703,0.6033847,-0.21288511,0.36227006,0.4296676,0.2582718,-0.07395081,-0.6261256,0.1744881,0.9313661,0.5206897,0.036182754,-0.058931198,-0.26830438,-0.1565283,-0.24000779,0.2786554,0.49508098,0.92187387,-0.012143014,0.0322764,0.29370236,-0.22209662,0.05593899,-0.058935862,-0.3412475,0.153101,-0.03920868,0.5720558,0.4868859,-0.16236377,0.47373492,-0.18945654,0.41658688,-0.11271062,-0.41757223,0.5179774,0.89855856,-0.09971559,-0.14982584,0.48645905,0.502873,-0.34246022,0.34414786,-0.6815028,-0.15528432,0.8332646,-0.03588828,-0.38315225,0.18795842,-0.295335,0.07978297,-1.0984513,0.40287495,-0.03154663,-0.48912847,-0.5251954,-0.28534958,-3.652745,0.04286576,-0.20370428,-0.13309199,-0.08627303,-0.13227402,0.36003053,-0.589657,-0.538644,0.10058597,0.026720762,0.38540915,0.06112976,0.14306924,-0.30824292,-0.07532281,-0.27135462,0.20245597,0.08174942,0.16606116,-0.25026548,-0.39314228,0.07619332,-0.32467598,-0.50954473,0.02622648,-0.37042558,-0.6674133,-0.10096966,-0.45351,-0.29118693,0.8086195,-0.36195755,-0.15893479,-0.118616804,-0.09510705,-0.28912994,0.34473717,0.34802595,0.20255911,-0.0043595918,0.11155777,-0.077264346,-0.38088965,0.17681296,0.15463021,0.21506514,0.3724517,-0.19266401,0.14174402,0.51372045,0.3506441,0.012870997,0.6387829,0.19363928,-0.17345372,0.34419027,-0.5501952,-0.37206855,-0.8003704,-0.4761365,-0.28804722,-0.32421795,-0.4147508,-0.2355814,-0.35526472,-0.77868164,0.4561209,0.061179064,0.17770626,-0.2596182,0.19573665,0.2629517,-0.032724347,-0.02646976,-0.2297238,-0.20453928,-0.42956072,-0.42634672,-0.7617012,-0.5935657,0.02523863,1.02135,-0.074676156,-0.2717345,-0.06779151,-0.18652302,0.07410089,-0.119733736,0.15920669,0.3038139,0.25944477,-0.16020012,-0.73598236,0.5731338,0.07681023,-0.14570943,-0.6026503,-0.16430919,0.70923704,-0.6757991,0.445669,0.43904838,0.23109044,0.14488292,-0.55584085,-0.20986089,0.029757403,-0.21039607,0.6305547,0.043293275,-0.54708505,0.4917752,0.20054314,-0.1648596,-0.6821642,0.6240742,-0.052913643,-0.25293195,0.17032105,0.3247823,-0.06868772,-0.066451624,-0.038936317,0.3212277,-0.568966,0.33617103,0.5176345,0.09107149,0.5141669,0.017893706,-0.3497297,-0.6177943,-0.090022534,-0.46328014,-0.26636878,-0.02972645,0.12767598,-0.05529843,0.18699881,-0.042724997,0.47168088,-0.4403032,0.14764784,0.048581608,-0.21455559,0.3531825,0.44980156,0.33824715,-0.371009,0.666289,0.16337882,0.11684148,-0.2716018,0.14428392,0.4931567,0.3842493,0.14774553,-0.047232464,-0.18556392,0.2598819,0.659906,0.21402368,0.47724006,0.21525505,-0.24875024,0.37375784,0.24570511,0.15513438,0.15097904,-0.1300438,-0.14581552,0.016619712,0.09006015,0.2742485,0.0967733,0.40094343,-0.003675472,-0.11623942,0.29236692,0.13425143,-0.04604113,-0.98307866,0.21995558,0.18435833,0.5298469,0.6097056,-0.014086697,0.1797419,0.3833508,-0.41372007,0.011368893,0.3370722,0.16107102,-0.46918717,0.6686476,-0.5437839,0.4383005,-0.19909726,0.002443865,-0.004367605,0.20143558,0.29959822,0.9768935,0.0051630884,0.10129702,-0.065466814,-0.24011561,0.1618605,-0.29501283,0.12045781,-0.3532062,-0.297903,0.60377127,0.3579011,0.17343321,-0.22077417,-0.1533215,0.093795165,-0.15824606,0.27167696,-0.094533116,0.08611137,0.039045215,-0.5878239,-0.48245192,0.55319285,-0.07616617,0.039951302,-0.015388334,-0.27043188,0.28806794,-0.09628542,-0.06454455,0.008950926,-0.5205746,0.019572496,-0.35943416,-0.4761994,0.42885804,-0.6782719,0.34292412,0.15049414,-0.05028424,-0.2471449,-0.101237945,0.33270273,0.5132512,0.04521647,-0.27103347,-0.31415796,-0.12624896,0.30798262,-0.32880938,-0.15955764,-0.192026,0.16932654,-0.53246194,0.31448615,-0.23606893,-0.14175838,0.044141915,-0.19448295,-0.11262153,0.31684837,-0.23181427,-0.23616433,0.1821484,0.09690246,-0.32469636,-0.03563892,-0.30925876,0.29033107,0.017377708,-0.039011832,0.120613635,-0.08118073,-0.17488825,0.38052773,0.039311048,0.32574093,0.21333724,-0.25919598,-0.4927732,-0.07589873,-0.12740241,0.22979234,0.08536733,0.117431596,-0.19046691,-0.2520991,-0.18854606,0.2098918,-0.30617085,0.084293365,0.1242702,-0.47221076,0.88686407,-0.014058126,1.1566292,0.11945976,-0.32021123,0.048956797,0.5167865,-0.059348486,0.06352488,-0.22762886,1.0387928,0.7763401,-0.07350014,-0.27899858,-0.39566517,-0.13025461,0.30124658,-0.1754762,-0.2963518,-0.079775594,-0.6842032,-0.3116395,0.10537668,0.16870764,0.122785844,0.12899622,-0.17572246,0.07299064,0.18246117,0.58936346,-0.512333,-0.019358907,0.3388518,0.14378732,0.11279696,0.14146453,-0.27787468,0.47854733,-0.61139894,0.20961261,-0.4330417,0.0042834273,-0.19399491,-0.260728,0.19450025,0.020896506,0.21118617,-0.21349186,-0.2272118,-0.32645983,0.59579706,0.050643593,0.32980013,0.72294945,-0.24515787,0.07311688,0.10095336,0.41329738,1.4008571,-0.10577894,0.033013124,0.37429988,-0.44235092,-0.43515855,0.2039788,-0.41994548,0.051206823,-0.10246879,-0.3935402,-0.4518988,0.2528351,0.110940956,-0.010931933,0.014861859,-0.48348957,-0.20638506,0.46891174,-0.2617645,-0.30790013,-0.2762615,0.25049078,0.7282295,-0.42725623,-0.2188982,-0.014096152,0.20892823,-0.3516119,-0.56555337,0.08122576,-0.18304262,0.5234891,0.09622454,-0.30613875,0.21115363,0.4017382,-0.32027096,0.13912067,0.56301993,-0.3907147,0.012306869,-0.077063695,-0.04221758,1.0386958,0.041467894,-0.041276284,-0.7595349,-0.5283352,-0.9007003,-0.36557767,0.35763153,0.2934621,-0.008744284,-0.4922708,-0.009285048,-0.040009946,0.08581597,0.04076959,-0.5730815,0.34827954,0.12190937,0.5253468,-0.008416394,-0.7599289,-0.14128587,0.031564303,-0.15676051,-0.51743525,0.67313254,-0.30713594,0.5301063,0.06493582,0.033770885,0.2188327,-0.5641796,0.30688792,-0.25865206,-0.26865575,-0.60195756,0.0963423 -21,0.49253038,-0.16972096,-0.5960495,-0.07489516,-0.1556792,-0.07462828,-0.19572523,0.11783446,0.31340268,-0.24126188,-0.2840167,-0.10911455,0.17723492,0.43294504,-0.07303596,-0.7499197,-0.14997058,0.08250829,-0.63047355,0.41397768,-0.5055087,0.27921948,0.17155372,0.3258745,-0.08039764,0.32995746,0.365078,-0.24561715,-0.1583617,-0.031623524,-0.09463649,0.2849043,-0.7631375,-0.06765951,-0.22272184,-0.24500637,0.003871773,-0.5493052,-0.25861087,-0.8206218,0.1709287,-0.94407475,0.55664444,0.09883787,-0.00047209646,0.06288817,0.2113364,0.18063717,-0.4351764,-0.014267357,0.15697126,-0.20999844,-0.25430393,-0.26716632,0.0067550326,-0.46309325,-0.49022698,0.04159059,-0.6184891,-0.21580303,-0.16603932,0.016920881,-0.33694598,-0.006286059,-0.21939568,0.27408618,-0.4004261,-0.13841905,0.543898,-0.18937972,0.36019215,-0.5815468,0.022790814,-0.07185344,0.515149,-0.11192808,-0.21610959,0.2745742,0.4440954,0.48009995,0.22666316,-0.29979283,-0.15549989,0.045762528,0.30454922,0.45487818,-0.07035019,-0.5224815,-0.11371891,0.25386614,0.248638,0.45169216,0.0056029386,-0.2505459,-0.028999703,0.0010443628,-0.113681994,0.42467895,0.6342862,-0.28797707,-0.40109068,0.20508845,0.61395884,0.36538687,-0.016247954,-0.11495148,-0.016039586,-0.5819634,-0.16882363,0.23455755,-0.11506621,0.53782004,-0.16094236,0.13821656,0.7365204,-0.24396196,0.02294517,-0.17069766,-0.18833026,-0.20243053,-0.18813358,-0.06330804,0.28660032,-0.527751,0.12000734,-0.27675933,0.5610699,0.28801987,-0.76829845,0.38233715,-0.5908136,0.27587566,-0.07425231,0.662131,0.733047,0.3030519,0.47263446,0.7713582,-0.38540787,0.22066459,-0.0074761934,-0.61216956,0.13584743,-0.2603481,0.09760381,-0.38545138,-0.03843521,-0.172774,0.033639822,0.10689462,0.14352128,-0.63550615,-0.04951519,0.101719655,0.71210295,-0.27448997,-0.09364348,0.6920027,1.0412453,0.8821532,0.14995153,1.3353785,0.36809096,-0.2603244,0.17516506,-0.21632075,-0.76791745,0.18081965,0.33569542,-0.4250795,0.45994785,-0.08284272,-0.09325925,0.28209606,-0.39336067,0.011272061,-0.033548538,0.28392068,0.056748264,-0.15299408,-0.49869353,-0.106572516,-0.28011853,-0.056259092,0.17389798,0.21018577,-0.09532908,0.23755524,-0.017415812,1.2578346,-0.14471309,0.06979154,0.042658336,0.36041853,0.37032205,-0.11095136,-0.059444718,0.43485817,0.43417758,0.029053982,-0.63261986,0.16912426,-0.300328,-0.34633946,-0.15750647,-0.33791938,0.018771097,0.15426017,-0.25037178,-0.06994524,-0.09070698,-0.223018,0.5111483,-2.6100218,-0.2113944,-0.088275656,0.361294,-0.3775434,-0.16389307,-0.08510469,-0.5501525,0.2447214,0.22409277,0.4857628,-0.7458307,0.40037957,0.36340243,-0.6099796,-0.2503743,-0.6863733,-0.014244122,-0.027543932,0.4159041,0.040758975,-0.19717304,0.039683666,0.17647734,0.6715961,0.11896274,0.021632893,0.44068697,0.60115,0.15987237,0.44125006,-0.08147137,0.58310986,-0.2709696,-0.11451352,0.4418592,-0.19875881,0.42643073,-0.23124962,0.12861963,0.41727582,-0.4215243,-0.9642162,-0.5043237,-0.40179357,1.1820599,-0.35319433,-0.45446354,0.02266683,-0.19221582,0.0027929246,0.018360475,0.627503,0.057873935,0.17020439,-0.7268318,0.09351083,-0.14100268,0.13294473,0.10460862,0.08081194,-0.35653517,0.6676408,-0.0723796,0.4402363,0.37396044,0.3686637,-0.058019944,-0.5397336,0.09825994,0.9134794,0.2724996,0.032981258,-0.08522467,-0.26705784,-0.06908318,-0.14350079,-0.026570728,0.5915136,0.82515866,-0.030642483,0.0026084238,0.26892346,0.10468609,0.11610822,-0.066787355,-0.22780745,-0.009869904,-0.12168191,0.47618967,0.886094,-0.38283497,0.46473816,-0.24058442,0.3183813,0.0260278,-0.4602151,0.81995755,0.8511185,-0.1896954,0.042323563,0.39428854,0.31519392,-0.49217933,0.50234044,-0.6969204,-0.2342376,0.70342463,-0.24668762,-0.3867696,0.30357623,-0.25917897,0.11265943,-0.98681253,0.39193973,-0.21384238,-0.007784975,-0.37000003,-0.01971428,-3.7167568,0.23370545,-0.24221835,0.00052416325,-0.3956788,-0.074096985,0.2717367,-0.6400073,-0.5845901,0.26524764,0.15105353,0.5691857,-0.094016075,0.2653926,-0.3173022,-0.23883487,-0.12517147,0.226204,0.27264145,0.30040446,-0.18166177,-0.28130624,-0.010838368,0.028832078,-0.3743321,0.16897996,-0.47203898,-0.49934652,-0.19349764,-0.52021325,-0.13073178,0.62541664,-0.36119694,-0.05357639,-0.11989103,0.16835307,-0.2699936,0.20499031,0.05470591,0.32466236,0.10144089,-0.04211023,0.15893354,-0.30860576,0.5243741,0.049835954,0.376046,0.115792416,-0.03830498,0.18890503,0.41778058,0.7262215,-0.17286769,0.9074725,0.4523031,0.044573706,0.23550925,-0.34654242,-0.2784225,-0.72326756,-0.4525263,-0.10683833,-0.37163192,-0.6158119,-0.08066195,-0.34036604,-0.8454677,0.5155571,-0.06054776,0.47260216,0.052308265,0.376381,0.58864623,-0.27980354,0.068127625,-0.06581952,-0.16286151,-0.662684,-0.14959428,-0.5761204,-0.45457023,0.12950823,0.6217928,-0.2762418,0.08513789,-0.026737468,-0.16853103,0.060313217,-0.14256564,0.08614421,0.24950658,0.4550216,0.0799555,-0.64977646,0.5143457,-0.0068871165,-0.33787712,-0.6392153,0.24603201,0.58033746,-0.76239395,0.6843318,0.5116435,-0.0315736,0.1967992,-0.57616013,-0.32619673,-0.0026862642,-0.17201121,0.34231362,0.13719152,-0.74852145,0.4623972,0.42219463,-0.43766448,-0.74473464,0.43199316,-0.015218316,-0.338376,-0.036373843,0.276677,0.19170544,-0.03897931,-0.29324105,0.0919741,-0.4714458,0.16226389,0.21575907,-0.07553581,0.33368686,0.017904034,-0.3014972,-0.8179632,0.17135003,-0.5666057,-0.13514948,0.45304376,-0.0031665307,0.066914394,-0.06331489,0.16925195,0.3753578,-0.35393882,0.13797672,0.06612826,-0.39306363,0.32928365,0.503118,0.34890392,-0.48048243,0.57887775,0.11883877,-0.30128697,0.22119316,0.103448555,0.39121294,0.09534804,0.16805784,0.065265074,-0.23618643,0.21412516,0.7001633,0.024151871,0.43569332,0.1500238,-0.010877303,0.58008,0.088602625,0.20961936,0.009579122,-0.5152114,-0.07385691,0.102655604,0.1461281,0.50568354,0.4495094,0.22198008,-0.046927657,-0.134534,-0.0025762224,0.38236123,0.11918924,-0.9228524,0.36735684,0.17425565,0.80356437,0.44316006,0.030919354,-0.11848868,0.49849734,-0.21152022,0.14262573,0.41575125,-0.0956494,-0.6654971,0.6765545,-0.5714329,0.25390476,-0.18170218,-0.031283595,0.040833056,0.18922925,0.18476997,0.89854324,-0.21484646,-0.057254408,-0.1494789,-0.03577515,0.088853054,-0.46797237,-0.12212087,-0.3161199,-0.41708627,0.72379273,0.3063723,0.42856744,-0.26649705,0.022585707,0.021185394,-0.16897866,0.20990397,-0.07868494,0.119891934,0.15127787,-0.6331377,-0.29799077,0.46209773,0.09629988,0.20639467,-0.35697514,-0.23988266,0.09632911,-0.46087292,-0.1265038,-0.093912646,-0.767018,-0.07343221,-0.29701993,-0.67327434,0.49031082,-0.10531547,0.21033196,0.27235636,-0.008747603,-0.16580893,0.319728,-0.079702154,0.9726805,0.09276468,-0.33750686,-0.5174434,0.16140267,0.30625278,-0.24165212,0.08139815,-0.32645717,0.08152239,-0.38332716,0.6804229,-0.13014857,-0.43440464,-0.0031725976,-0.28170517,-0.08589206,0.6724939,-0.28888366,-0.13480417,0.19081815,-0.29998374,-0.4093757,-0.16138391,-0.23263457,0.1620239,0.35413912,-0.02413204,-0.08663169,-0.22992513,-0.25936526,0.47427052,0.11440805,0.46798983,0.3293496,0.03269647,-0.15332055,-0.18251553,0.31204686,0.318664,0.22236733,-0.16658743,-0.52343154,-0.60851675,-0.38944206,0.024263365,-0.035981886,0.16305898,0.11014564,-0.20616539,0.7422949,0.070786364,1.1284145,0.09542946,-0.26731217,-0.013808795,0.45379168,-0.057128463,-0.09296537,-0.5032955,0.86186,0.56160516,-0.06597159,0.052053485,-0.36260816,-0.1676627,0.35370278,-0.3658994,0.0936022,0.0757403,-0.57149637,-0.465077,0.19085442,0.23502465,0.019956188,-0.080113694,0.07130364,-0.019573927,0.11917887,0.3902135,-0.66193587,-0.4350075,0.29862124,0.17106213,-0.13068779,0.06874844,-0.33721343,0.4828669,-0.48078585,-0.01562242,-0.49715975,0.10486446,-0.13589749,-0.30881357,0.1591943,0.047161132,0.39504054,-0.42999068,-0.39988178,-0.12591729,0.3292666,0.102830954,0.13305183,0.57815,-0.28345293,0.019395564,0.1843495,0.7438255,1.2713159,-0.43597388,0.055465367,0.33738247,-0.3791303,-0.5576811,0.4595633,-0.3698573,0.017501265,-0.32084867,-0.45302194,-0.62336147,0.22228377,0.1911445,0.058265563,0.1577367,-0.6437971,-0.25283742,0.2645703,-0.48607048,-0.20505682,-0.2801766,0.4409721,0.91938627,-0.41489717,-0.276299,0.08624612,0.12267412,-0.058274705,-0.47243088,-0.09358377,-0.19564463,0.2209497,0.22563004,-0.2611209,0.01689929,0.16380027,-0.50728756,0.20896003,0.12498748,-0.34274715,0.0615325,-0.09361004,-0.11588214,0.8688094,-0.30059996,-0.17381072,-0.64781684,-0.50954944,-0.9911994,-0.5442143,0.22400095,0.029849734,0.22029757,-0.41025558,0.16625288,-0.04611981,-0.10524634,-0.026339918,-0.55998,0.3215806,0.114374585,0.6124913,-0.24254291,-0.8205843,0.03438466,0.16732796,-0.16285524,-0.6541515,0.55350006,-0.07224131,0.85867697,0.03912809,-0.12494596,0.14871527,-0.48725557,-0.06562923,-0.3873143,-0.13135086,-0.8687913,0.07946745 -22,0.53981423,-0.36364862,-0.41150182,-0.07321387,-0.12788092,0.10316655,-0.15245341,0.47414976,0.26408046,-0.5435808,-0.092735834,-0.3016553,0.042083833,0.111442804,-0.15388489,-0.38065335,-0.04317641,0.08336072,-0.32916605,0.44559404,-0.6245381,0.2611863,-0.110870875,0.32133403,0.08698478,0.27493083,0.06064129,-0.14975367,-0.28458557,-0.18600814,0.037912913,0.31820327,-0.56255305,0.12256767,-0.19233212,-0.30767563,0.018560413,-0.476633,-0.43648532,-0.74074656,0.34223124,-0.93314874,0.29794118,0.23410423,-0.19767427,0.19674999,-0.09517566,0.22248647,-0.2702308,-0.013530595,0.16233018,0.019153606,0.035914734,-0.28513205,-0.09149362,-0.3238188,-0.5699856,0.14674331,-0.36713725,-0.23868594,-0.26308873,0.15225723,-0.42054382,-0.054087702,-0.18310969,0.35140324,-0.42913902,-0.036373954,0.17013018,-0.23413302,0.30006433,-0.70705163,-0.38431293,-0.111828536,0.24718206,-0.2885936,-0.21894662,0.12825345,0.46377724,0.49380594,-0.06336594,-0.0046924236,-0.40130207,-0.002493056,0.22589947,0.42378828,-0.18532532,-0.6891064,-0.1289596,-0.060850143,0.1823996,0.273927,0.15420803,-0.25253406,-0.048032936,0.12850556,-0.3805908,0.4595824,0.5554333,-0.4429022,-0.20984842,0.310413,0.5338036,0.2695251,-0.08110575,-0.12755261,0.07395764,-0.5521863,-0.17163302,0.19412804,-0.21024612,0.49914137,-0.1599119,0.33415678,0.59080607,-0.41605112,0.17233953,0.119918674,0.015723508,-0.13751453,-0.25846782,-0.037337847,0.14790589,-0.2903487,0.06646688,-0.16287357,0.8107948,0.22331217,-0.56398654,0.3592348,-0.6174947,0.20215791,-0.09076763,0.60699046,0.62722534,0.36086032,0.41707084,0.71960443,-0.42472413,-0.0816479,-0.14725988,-0.36489102,0.08489506,-0.23413382,0.10596781,-0.34301513,-0.08579289,0.07016431,-0.12195846,0.013764943,0.6914407,-0.6031383,-0.07315348,0.10486771,0.710316,-0.20641683,0.0067505976,0.7419304,1.0056845,1.039563,0.10960372,1.3426888,0.21802813,-0.21436909,0.2640687,-0.3440457,-0.7903615,0.33255145,0.3076097,-0.08220477,0.17982945,0.057797212,-0.05434527,0.2464188,-0.35417563,0.05922949,-0.19531044,0.37118775,0.23598163,-0.023435025,-0.4013244,-0.33906752,-0.19726826,-0.06587892,0.11358857,0.18323825,-0.11518541,0.2196618,0.11906673,1.6064422,-0.2719097,0.22548272,0.13586356,0.531657,0.17969753,-0.09479063,0.075581625,0.35657546,0.24941438,0.19408257,-0.6636311,0.09585117,-0.23217313,-0.56463975,-0.07670833,-0.27575678,-0.2979667,0.2026965,-0.37260643,-0.18364215,-0.22494903,-0.32017282,0.48263547,-2.7032926,-0.31317785,-0.13859564,0.5374549,-0.3404646,-0.41073406,-0.11250684,-0.51441264,0.40083286,0.3281643,0.5178392,-0.80217713,0.15991798,0.6030001,-0.5658316,-0.18524566,-0.5992012,-0.029387195,-0.08815503,0.2681165,0.047969148,-0.13407083,-1.6900209e-05,-0.19838579,0.3454474,0.041041348,0.16373883,0.17505345,0.505664,-0.12474669,0.50870013,-0.04209322,0.4484582,-0.28513077,-0.26923218,0.45313218,-0.43814257,0.35468516,-0.12713145,0.12118505,0.4779136,-0.62330437,-0.84338844,-0.67733985,-0.39409035,1.1587616,0.04741313,-0.50736296,0.25395358,-0.36264214,-0.33454865,-0.30645904,0.5382009,-0.056671564,-0.21133573,-0.9057306,0.011675257,-0.25569618,0.20520546,0.045867965,-0.011657985,-0.33419478,0.762526,-0.017783472,0.36006176,0.3607248,0.040317755,-0.3641071,-0.52399576,-0.045034524,0.9781923,0.36443248,0.20565906,-0.25897062,-0.3197061,-0.2813868,-0.06097022,0.10414072,0.50920033,0.5807587,-0.05714583,0.08674952,0.3219501,0.04029108,0.08359453,-0.1923385,-0.20637785,-0.15945135,-0.05001744,0.6663717,0.69618064,-0.27952665,0.40784857,-0.038030256,0.11817345,-0.240276,-0.34867778,0.46931472,0.8805943,-0.09704566,-0.079392515,0.5885448,0.5578293,-0.39890704,0.36177906,-0.48644322,-0.40501064,0.40036535,-0.29466796,-0.46689838,0.30905488,-0.34532514,0.12852032,-0.72556084,0.33556157,-0.49501595,-0.13734755,-0.60978425,-0.115826026,-3.3913522,0.24166939,-0.23699358,-0.06413347,-0.13296911,-0.13474765,0.2237533,-0.5789365,-0.60577357,0.24726805,0.026737355,0.59121513,-0.18754466,0.07861241,-0.36964637,-0.37001213,-0.41460675,0.06539512,0.171839,0.40588096,0.025087925,-0.38907745,0.15834302,-0.16734979,-0.22639036,0.090939686,-0.45277697,-0.63237655,-0.1882672,-0.5193689,-0.48297507,0.7628543,-0.2243087,-0.0004667227,-0.119025275,0.0417033,-0.21206056,0.39867643,0.09804715,0.11164216,0.0416764,-0.07784438,-0.10661324,-0.2552538,0.3813076,-0.027442057,0.22809379,0.51401937,-0.297946,0.17583257,0.40620583,0.54940027,-0.108928844,1.0157965,0.3583133,-0.11217099,0.29559448,-0.16578534,-0.28080705,-0.53468096,-0.20415947,0.19569278,-0.46835282,-0.5338119,-0.118616,-0.36871478,-0.62199676,0.59859264,-0.11937113,0.20398997,0.10253975,0.37533358,0.60797113,-0.048150294,0.019962775,0.03565056,-0.052717246,-0.6288439,-0.28550196,-0.6830111,-0.4602141,0.3345568,0.7577317,-0.24537556,-0.060281757,0.27186102,-0.27784348,-0.14981955,-0.0652657,0.043290235,0.05399324,0.4239006,-0.051778276,-0.5516252,0.44611338,0.0098214885,-0.17250623,-0.5219394,0.18252708,0.8022404,-0.747218,0.61036384,0.43168995,0.06439871,-0.08553568,-0.41861784,-0.22765692,-0.026509136,-0.33306408,0.2691363,0.20043507,-0.82663375,0.4260478,0.43848497,-0.16460046,-0.83125836,0.61678857,-0.045300905,-0.24007232,-0.107346684,0.41891846,0.29032627,0.13144708,-0.05470117,0.39376956,-0.5809542,0.25073904,0.22401024,-0.19907254,0.38112494,-0.061269548,-0.28416213,-0.7444839,0.05791411,-0.4550808,-0.2765531,0.3719343,0.16184847,0.060137987,0.20925806,0.29317248,0.52051294,-0.29450208,0.07228604,0.08344913,-0.07172946,0.20057164,0.32999727,0.6974456,-0.47300038,0.57526004,-0.023980213,-0.06062264,0.028824743,0.018374847,0.33072802,0.17182483,0.37931225,0.14551269,-0.3264116,0.22647902,1.0739989,0.09946127,0.47198442,0.09093501,0.000116091505,0.27154148,0.2168006,0.31714168,-0.048170622,-0.7147,-0.0109729655,-0.058361273,0.16774327,0.400965,0.17872144,0.25203,-0.25463137,-0.31497303,-0.086091004,0.3887644,0.018032065,-0.977918,0.21482538,0.025948064,0.8110802,0.56279427,-0.035574004,0.15041126,0.558885,-0.10678306,0.07823238,0.33831167,-0.011005998,-0.60597664,0.4745495,-0.5886246,0.4415526,-0.16730286,-0.008005302,-0.12678571,-0.093543954,0.35335493,0.7457848,-0.11432955,-0.10339562,0.03031221,-0.27086383,0.22975087,-0.4383771,0.08613967,-0.61183226,-0.13513692,0.61242306,0.56108975,0.34567493,-0.1746375,0.037661728,-0.031161722,-0.112284,0.30326974,-0.08198357,0.1479633,-0.009132734,-0.81213623,-0.07629154,0.55925137,0.27564552,0.1774575,-0.057661466,-0.30799034,0.34634942,-0.19271861,-0.067801625,-0.14092559,-0.64848125,-0.09771877,-0.43892795,-0.5489334,0.38012302,0.08337195,0.28755844,0.28066558,0.11788641,-0.22159688,0.2505901,0.10179769,0.7846932,-0.16294609,-0.1815252,-0.6499834,0.16248845,0.24267724,-0.2195834,-0.08544889,-0.15286916,0.0957779,-0.5422007,0.5775235,-0.035326175,-0.19412139,0.028610192,-0.17786926,-0.032237783,0.7767462,-0.26460847,-0.18705122,-0.07957308,-0.22204535,-0.40500778,-0.049380027,0.05196557,0.16685145,0.3671598,0.004598223,-0.15144786,-0.26721615,-0.17698497,0.2662827,0.15675323,0.28641826,0.47092357,0.21439113,-0.2936074,-0.19146334,0.19694439,0.49874672,0.01766937,-0.17956275,-0.32294226,-0.61029845,-0.3929884,0.25478193,0.028030455,0.31771606,0.06336855,-0.4115191,0.6460524,-0.083748326,1.0552214,0.05476374,-0.30634516,-0.017404843,0.5220484,-0.1122988,-0.16427967,-0.5056439,0.9693849,0.49069077,-0.26108032,-0.08597498,-0.30584028,-0.10932222,0.14149305,-0.3038054,-0.014816981,0.017805131,-0.7051385,-0.24218719,0.24265245,0.3006551,0.018484341,-0.13505219,0.21078196,0.20909277,0.2166841,0.37649775,-0.53853214,-0.46106845,0.29068676,0.44504282,0.024954991,0.2188805,-0.2067249,0.4322604,-0.5496273,0.19729386,-0.3966262,0.12542258,-0.1200177,-0.30050695,0.23022798,-0.040124573,0.38898975,-0.3216593,-0.51453847,-0.32696354,0.2856088,0.14647235,0.23443006,0.560138,-0.23342115,-0.042336974,0.09215875,0.7073389,1.1691319,-0.011252834,-0.105307296,0.46495312,-0.25897908,-0.60980237,0.5635773,-0.45670694,0.17984335,0.008106117,-0.091887146,-0.4859411,0.30199233,0.31500992,0.024377447,-0.029599804,-0.7588752,-0.15586983,0.2493663,-0.49903983,-0.1440478,-0.31515053,0.057050522,0.9228938,-0.3304383,-0.1714417,0.033113003,0.42396858,-0.31818703,-0.5313786,-0.045779493,-0.45245203,0.30041462,0.00983285,-0.15408915,-0.037290625,0.067482345,-0.4487265,0.12053737,-0.0016382749,-0.39216596,0.122272186,-0.36513376,-0.07356516,0.9635012,-0.27282122,0.34093857,-0.3694619,-0.49747145,-0.76175433,-0.29232767,0.4626207,-0.008807347,0.079445824,-0.4696557,0.087522306,-0.018312356,-0.11290128,-0.11827678,-0.51782167,0.50490993,0.06445987,0.5260438,-0.12583901,-0.73033303,0.09851691,0.24726513,-0.13701639,-0.56723875,0.5765308,-0.08029652,0.80338603,0.16266169,-0.091629036,0.31037152,-0.45033833,0.014056389,-0.2076649,-0.25687006,-0.86304104,0.082180314 -23,0.29131007,-0.21512082,-0.5725359,-0.15163204,-0.027232977,0.15923594,-0.21887194,0.20112197,0.033616878,-0.60983866,-0.024663601,-0.23103304,0.1326638,0.30406013,-0.06732305,-0.43337297,0.16992232,0.101699114,-0.586698,0.38791737,-0.42363247,0.26183435,0.12684889,0.18987608,-0.051132876,0.23791811,0.26366642,-0.19542177,-0.24006774,-0.16411869,-0.07989009,0.057877295,-0.5226545,0.0434767,-0.1963081,-0.25571436,0.043831524,-0.5224975,-0.41517848,-0.69537765,0.12522073,-0.7346826,0.46906948,0.19283088,-0.20588587,0.13559304,0.007388166,0.3892133,-0.123707935,0.25928122,0.28434035,-0.24320719,-0.05485732,-0.17104626,-0.45649752,-0.3869464,-0.5930281,-0.0032752412,-0.50448596,-0.18415453,-0.02548016,-0.006315925,-0.26774755,-0.051983375,-0.14428475,0.26018023,-0.36911228,-0.28778037,0.33040622,-0.08464081,0.57074565,-0.4770288,-0.19879344,-0.10549467,0.38744804,-0.38614607,-0.16114971,0.251896,0.4641593,0.57291275,-0.108175956,-0.09567867,-0.24801339,0.07609891,0.40664005,0.6133999,-0.20343985,-0.20737909,-0.06781238,-0.08276187,0.14721425,0.2360126,0.13131735,-0.44594568,-0.14046314,-0.031630587,-0.14047047,0.043063443,0.4342548,-0.20822416,-0.11533417,0.28531665,0.5242271,0.07105052,0.0032390314,0.07206285,0.001413473,-0.5231027,-0.20808871,0.4688172,-0.23576662,0.5255357,-0.05117471,0.16377462,0.5400394,-0.074151956,0.039954126,-0.02585512,-0.10466944,0.004050008,-0.06892211,-0.2557648,0.21887828,-0.49075207,0.10212143,-0.27914688,0.6469664,0.2837161,-0.9833268,0.3701052,-0.4099796,0.13082628,0.030148562,0.57128066,0.6165191,0.3840819,0.1007669,0.6619279,-0.70381695,0.2064519,-0.081009425,-0.3389834,0.09927455,-0.07075667,-0.036791276,-0.6047468,-0.23289105,0.028793769,-0.1645033,0.13541028,0.26306686,-0.38181928,0.050799314,0.19947553,0.733895,-0.30543151,0.09352072,0.5766307,1.0375214,0.83702594,0.24168447,1.3168577,0.22035062,-0.30522582,0.13969137,-0.28768352,-0.79232186,0.26344505,0.4491612,-0.31625715,0.38317207,0.049370952,0.10911749,0.27566957,-0.38714293,0.11824596,-0.09597127,0.07245497,-0.19254376,-0.34855253,-0.25776547,-0.26929477,-0.13055293,-0.036038365,-0.09755975,0.1171297,-0.13028052,0.44312456,0.17332672,1.5895269,-0.26434493,0.108810626,0.013409346,0.22676659,0.14548512,-0.18396132,-0.21001045,0.2674525,0.38212064,-0.049675547,-0.47147068,0.07284402,-0.09064127,-0.34660706,-0.23773777,-0.10012347,0.15531075,-0.064720534,-0.35165638,-0.071919486,0.017510245,-0.48038,0.5726829,-2.698784,-0.04868916,-0.17457989,0.3072627,-0.3005611,-0.4117295,-0.18092255,-0.36443976,0.56014615,0.35777277,0.313031,-0.6596206,0.23303832,0.30454877,-0.35278028,-0.117582254,-0.66983616,-0.08464199,-0.06217709,0.13753597,0.09050308,-0.16807568,0.03870857,0.2315894,0.27160698,-0.25728178,0.09219786,0.20733516,0.26629514,0.31640694,0.38133714,0.047054905,0.62588733,-0.21317005,-0.22620836,0.2934871,-0.3634696,0.26070395,0.08670628,0.15406778,0.3391838,-0.44730344,-0.6299409,-0.74746627,-0.643551,0.97713745,-0.18545581,-0.23903862,0.29329437,-0.038891222,-0.46235064,-0.10561466,0.45093852,-0.17301962,0.057348114,-0.90719384,-0.22856402,-0.011068001,0.23033024,-0.055228025,-0.007526372,-0.51698405,0.62063164,-0.12204639,0.4586568,0.39961383,0.117111936,-0.11745872,-0.43898082,0.041013148,1.1732818,0.31589285,0.1818004,-0.12725113,-0.20811962,-0.3625109,-0.16882779,0.0856633,0.31855273,0.86772025,-0.15215956,-0.0686685,0.19307634,0.05459941,0.06074477,-0.13869998,-0.35180134,0.020039946,0.0057805693,0.54266405,0.37919027,-0.11537952,0.31498814,-0.1407014,0.25601953,-0.1079881,-0.39223334,0.4722238,0.9406509,-0.06295136,-0.16595681,0.42281502,0.39385104,-0.29820147,0.42532563,-0.54682714,-0.3035273,0.36662412,-0.09770187,-0.39220074,0.2817363,-0.39183447,0.3449483,-1.0304967,0.4024822,-0.47282034,-0.28958994,-0.49335235,-0.07081627,-3.0776672,0.093202315,-0.15045728,-0.2811508,0.105678424,0.026669042,0.27393577,-0.55018,-0.59508944,0.12396811,-0.017162824,0.6467244,0.030962829,0.0427211,-0.25590393,-0.15015353,-0.43632588,0.18782316,0.20756963,0.18214022,0.044158988,-0.3156273,-0.06605579,-0.33835366,-0.3657227,0.026580598,-0.6677943,-0.43030962,-0.4064202,-0.41085306,-0.47801003,0.6060151,-0.45302233,-0.053298358,-0.1669608,-0.009334244,-0.17488196,0.43465716,0.2426631,0.31336397,-0.030196896,-0.08271207,-0.22778787,-0.26776394,0.15171352,0.1888688,0.08663607,0.4713659,-0.20292799,0.16557476,0.29755026,0.8019829,-0.19974642,0.49046227,0.5813594,-0.16394292,0.2719383,-0.36200616,-0.09620051,-0.49258777,-0.42144457,-0.11074356,-0.2917544,-0.65390664,-0.21884982,-0.38686696,-0.7383041,0.31099775,0.043695636,-0.02442059,0.09189786,0.19015901,0.24988492,-0.207032,0.025340637,-0.090046726,-0.09984876,-0.40344232,-0.2865863,-0.62247914,-0.5997343,0.1627338,0.96153057,0.026752995,-0.019392302,0.21603906,-0.17653587,0.12899812,0.12367393,-0.04253826,0.18239887,0.35266623,0.15890782,-0.5539065,0.46022484,0.09319278,-0.27780437,-0.60693234,0.14194238,0.600697,-0.6139446,0.6620881,0.36349177,0.033215918,0.01256881,-0.4901576,-0.21639405,-0.0004525355,-0.29757124,0.3216085,0.046222057,-0.5746419,0.38989535,0.38134,-0.24841152,-0.6305437,0.4058098,0.16425829,-0.17917821,0.19102395,0.38776568,-0.21966071,-0.037828974,-0.13808589,0.2679145,-0.48549768,0.22444497,0.60478413,0.04188289,0.13087355,-0.15602186,-0.16897629,-0.64873505,0.10783814,-0.4902269,-0.19863984,0.3284348,0.11072836,0.07134609,0.117121145,0.15578778,0.45401597,-0.31999347,0.22176398,-0.015115485,-0.24122646,0.2325988,0.33893475,0.23694675,-0.36287627,0.52071637,-0.12301683,-0.14259246,-0.3270549,0.012960915,0.6033087,0.33141088,0.12681624,-0.048928805,-0.28827974,0.28424782,0.74769306,0.17659566,0.305597,0.14378573,-0.035543256,0.15392895,0.12060239,0.09951569,0.10084695,-0.378756,-0.03703379,0.065186374,0.17269155,0.26717743,0.06077073,0.35060793,-0.17336228,-0.24987973,0.019367056,0.18962823,-0.020025095,-1.0115567,0.4613774,0.105486594,0.5722677,0.56671035,-0.00837312,0.11156445,0.39983112,-0.37438157,0.15198374,0.15910986,-0.25451842,-0.5327343,0.38564175,-0.61181885,0.29218993,0.08319887,0.03523946,-0.0012963371,-0.0950168,0.39499897,0.853502,-0.22386004,0.16177824,-0.17495047,-0.078277126,0.16425623,-0.42175156,0.021243999,-0.33368567,-0.41697735,0.7160301,0.2894983,0.43787208,-0.11284928,-0.029302862,0.16661759,-0.09885388,0.23169544,-0.039935265,0.17973658,0.05537021,-0.46314272,-0.2466103,0.5186096,-0.08309943,0.0020000297,0.17937489,-0.2944878,0.19880593,-0.13974033,0.109099016,-0.15663637,-0.6782557,0.094435,-0.48146445,-0.1605121,0.33985776,-0.1149841,0.30318007,0.20382066,0.152757,-0.20000675,0.59538025,0.21366735,0.7916374,0.040785793,-0.1572164,-0.21114771,0.31685108,0.26196438,-0.14868796,0.1310027,-0.21683703,0.038513083,-0.65877575,0.4857102,0.044908535,-0.21519719,0.1914467,-0.14979675,-0.035423644,0.58307976,-0.3709207,-0.11683494,0.10538059,-0.012295784,-0.17009263,-0.1597366,-0.2363878,0.2338203,0.19757119,0.06408841,-0.042485457,0.13922589,-0.07304727,0.3567801,0.20102295,0.38635287,0.3841063,0.09144179,-0.52184623,-0.048868384,0.086064056,0.3999412,0.15747866,-0.0685995,-0.25222358,-0.40064678,-0.29289976,0.047503505,-0.25047207,0.2865491,0.062715635,-0.21179911,0.64831954,0.13934702,1.1694745,0.018220663,-0.35801145,-0.11976539,0.41609496,-0.07476408,-0.083866276,-0.39320678,0.8718928,0.6338674,0.0059928596,0.06820194,-0.13811858,-0.21763363,0.13194628,-0.04317325,0.018189413,0.053933356,-0.6742162,-0.45117992,0.22790487,0.16182603,0.05958566,-0.09070511,0.07146601,0.1835544,0.0035609582,0.18150887,-0.46300474,-0.119038865,0.35817042,0.11854325,0.04780111,0.2325799,-0.40878457,0.35256514,-0.55499953,-7.257717e-05,-0.19571106,0.070803806,0.089412555,-0.29036322,0.17267916,-0.03514717,0.23389919,-0.29703587,-0.1745453,-0.05067681,0.66238296,0.16915934,0.35401177,0.7949602,-0.19952528,0.2402605,0.046755787,0.447882,1.0711596,-0.2669212,0.06186823,0.38060278,-0.21840413,-0.5593452,0.26245612,-0.30097562,0.197098,-0.20992719,-0.44203267,-0.41803822,0.26472768,0.17936563,-0.01683529,0.07837621,-0.44977078,-0.17369692,0.3428324,-0.4503205,-0.3588803,-0.33224416,0.25949886,0.6423017,-0.2937041,-0.30240855,0.2490131,0.11637233,-0.4429976,-0.3323094,-0.003495408,-0.14082232,0.17801584,0.22730747,-0.34547213,0.031646438,0.058805842,-0.2625894,0.12575646,0.17490593,-0.38730797,0.019492017,-0.20905267,-0.11023019,0.7914476,-0.26857314,-0.10820718,-0.56879574,-0.5198088,-0.71227294,-0.395605,0.5980937,0.03927883,-0.02626239,-0.4930999,-0.008063857,0.027268235,0.14654562,-0.062016908,-0.20507479,0.4444749,0.107795276,0.42619377,-0.24986376,-0.5824348,0.10977312,0.13559708,-0.14947526,-0.5626962,0.46461496,0.084954664,0.7701383,-0.01172332,0.020087805,0.37694058,-0.52697027,0.12506679,-0.2985008,-0.05235077,-0.699772,0.06524434 -24,0.38959673,-0.16391477,-0.40309334,-0.16938281,-0.08042521,0.22584017,-0.07481403,0.34004498,0.036707804,-0.7383763,-0.26458633,-0.3102288,0.07293996,0.0991734,-0.3300142,-0.41867626,-0.117788315,-0.0054008435,-0.44251043,0.4152652,-0.35515273,0.3161379,0.22280653,0.27420112,0.21587516,0.17905606,0.28617176,-0.30913755,-0.16457932,-0.22783914,-0.20212562,0.24066482,-0.46071243,0.061793603,-0.12333885,-0.3934959,-0.0071381377,-0.4942823,-0.27729437,-0.7257086,0.41594598,-1.0961726,0.4609515,0.13431022,-0.010425268,0.38946393,0.116402,0.18456747,-0.11970905,0.0914758,0.20506257,-0.04401241,0.07574861,-0.14144915,-0.17723829,-0.37624598,-0.5267053,0.009359077,-0.33990258,-0.47300434,-0.34830812,0.09243429,-0.4133332,-0.08367752,-0.070539586,0.57002735,-0.44437784,0.08015826,0.11808555,-0.21772085,0.42867792,-0.6164559,-0.18570279,-0.10535893,0.37192565,-0.42711356,-0.08371293,0.031623732,0.46868366,0.3021537,-0.05464169,-0.032966275,-0.27973375,-0.13246034,0.11390303,0.4722404,-0.09731544,-0.645663,-0.016660823,0.08238165,0.10047865,0.24213482,0.1855151,-0.31799617,-0.12002105,0.050817635,-0.3211245,0.5159388,0.38205132,-0.47589657,-0.22791775,0.34743303,0.44952282,0.10589792,-0.058013394,-0.12658253,0.066296324,-0.52719694,-0.08545518,0.2808824,-0.21664833,0.5576905,-0.1169406,0.5068278,0.65259355,-0.28773227,0.18995728,0.038364884,0.008214629,-0.0843734,-0.17080715,-0.17241047,0.25879577,-0.3499483,0.11564334,-0.19966006,0.8638397,0.045012075,-0.6378508,0.3380635,-0.52044207,0.044500828,-0.16724798,0.48285314,0.35912955,0.3709367,0.18296486,0.60833895,-0.5581003,-0.092074364,-0.091115505,-0.46837646,-0.11170694,0.027357426,0.0063698567,-0.4350918,-0.09921629,-0.019290136,0.09284372,-0.049260065,0.28967652,-0.465068,-0.13056262,0.053596295,0.7986073,-0.29704756,-0.09864512,0.6792996,0.833954,0.7087095,0.040069398,1.1265541,0.20906542,-0.27246702,0.12041589,-0.22848353,-0.7347568,0.39928192,0.5377399,-0.41908896,0.1505163,0.078037456,0.06747715,0.15938647,-0.29429248,0.016804732,-0.32441413,0.028289188,0.13471155,-0.031477105,-0.36757028,-0.24319169,-0.11410063,0.071686186,0.21921143,0.11021476,-0.20349187,0.26189244,0.17928168,1.6860712,-0.13383134,0.24475804,0.097948186,0.2606857,0.1904203,0.11076461,-0.040319685,0.31523672,0.4180859,0.30545455,-0.62105054,0.21469408,-0.17548588,-0.4895704,-0.14156224,-0.31427068,-0.13780037,-0.028399624,-0.48082268,-0.07884412,-0.10538383,-0.4311268,0.42550057,-2.7444165,-0.2064845,-0.16847607,0.40095404,-0.3336578,-0.2987987,-0.10981589,-0.3899755,0.4414983,0.3091852,0.5506946,-0.6707841,0.2834463,0.5097297,-0.37443924,-0.2550716,-0.61077636,0.061198335,-0.11908049,0.23276758,0.03981138,-0.023319837,-0.024590803,0.041684214,0.4019624,-0.04598802,0.06733411,0.18704557,0.6041647,0.24092112,0.6485938,-0.091903,0.5110985,-0.12744972,-0.19128415,0.2587215,-0.23252736,0.16642563,0.025033249,0.22369565,0.40729067,-0.4040314,-0.7683183,-0.72354424,-0.49766928,1.2201343,-0.28645283,-0.47777265,0.26512125,-0.03360077,-0.2921818,-0.15294503,0.4761794,-0.12818179,0.032389496,-0.8101585,0.12854365,-0.15634057,0.23659772,0.010394246,-0.05077918,-0.45228055,0.6026135,-0.08275644,0.4728526,0.36344248,0.24290203,-0.35552424,-0.40921754,0.059391774,1.0548062,0.29142857,0.066954546,-0.0886693,-0.09180447,-0.2974739,0.13484243,0.0421604,0.52091223,0.6626688,0.16914023,0.10848415,0.26596692,0.0036578511,0.0981124,-0.17756788,-0.26624122,-0.101183325,-0.16879739,0.52205426,0.38140118,-0.17888477,0.6107557,-0.19379602,0.34431335,-0.2594533,-0.373224,0.43614656,0.95497954,-0.14012685,-0.19693913,0.6016188,0.42588013,-0.36094794,0.13630083,-0.566726,-0.285072,0.606617,-0.31510755,-0.56934017,0.26097175,-0.22648318,0.103914455,-1.0499352,0.3450386,-0.2578728,-0.32380205,-0.41581774,-0.018563144,-3.4852998,0.15118222,-0.28466046,-0.23647237,-0.14386629,-0.18667778,0.14207724,-0.6167469,-0.48867494,0.12407842,0.09837267,0.6978562,-0.023498526,0.25707084,-0.17845058,-0.07459076,-0.033718467,0.13348,0.04005212,0.15759078,0.032753564,-0.37901258,0.03936914,0.056947265,-0.43499333,0.16292745,-0.5753412,-0.5627905,-0.025308149,-0.47153598,-0.42823407,0.6893629,-0.27917883,-0.034918744,-0.07112608,0.07629823,-0.115487225,0.39759943,0.10829401,0.18890049,-0.05838959,-0.00089367654,0.05998045,-0.2961961,0.5014196,0.04546303,0.15693313,0.2827714,-0.22257556,0.18339302,0.37453717,0.37590078,0.12668554,0.7362137,0.39939877,-0.10022698,0.22565563,-0.35660747,-0.338646,-0.5724627,-0.29082385,0.12868336,-0.3827287,-0.52364594,-0.17505465,-0.2737131,-0.643814,0.62720406,-0.09146927,0.22753176,-0.076119445,0.54255,0.58159757,-0.12914366,0.0023831176,0.10808746,-0.15290396,-0.5153747,-0.19670725,-0.586173,-0.41274217,-0.049877226,0.6841367,-0.18833661,0.08511254,-0.09727533,-0.121579185,0.015766809,-0.051665742,0.005400362,0.2935828,0.49554652,-0.16981268,-0.67363095,0.663797,-0.19611512,-0.23271634,-0.5835484,0.066078134,0.77389556,-0.61890674,0.45976698,0.3984577,-0.09124798,-0.34446284,-0.32325906,-0.1750442,0.049635295,-0.2624761,0.2088298,0.17299189,-0.6058013,0.3504591,0.38507175,-0.008663891,-0.62704444,0.62664455,0.08824936,-0.47182435,0.025652183,0.3784272,0.09892397,-0.03747105,-0.16008314,0.13877891,-0.40723655,0.23721504,0.1278988,-0.061297618,0.51009136,-0.1103134,-0.07880974,-0.71094584,0.14317958,-0.42792732,-0.266925,0.38271824,0.1481499,0.13206293,0.5107929,-0.17346312,0.46217135,-0.40363076,0.020096745,-0.04328901,-0.06891444,0.22842595,0.3614406,0.30829796,-0.4549951,0.49738884,-0.07219652,-0.071960635,0.03926774,0.22311082,0.4657504,0.10564469,0.29000074,-0.096917994,-0.39737755,0.42006323,0.7310046,0.18815616,0.43130192,0.089850344,-0.00035597727,0.28340447,0.048297547,0.20738338,0.04016324,-0.6007895,-0.087825164,-0.12143298,0.0798949,0.39627558,0.06696303,0.26318526,-0.22242397,-0.41641915,0.026576761,0.28032023,0.2219016,-0.7789945,0.39064604,0.029016908,0.7763647,0.3006583,-0.0684176,0.05351108,0.636314,-0.16926514,0.19543648,0.22463912,-0.07321183,-0.4923248,0.5504964,-0.57767093,0.23753263,-0.039286926,-0.062201563,-0.089119785,-0.06621916,0.27180088,0.8426851,-0.13594855,0.05920119,-0.019278454,-0.2977947,0.21523465,-0.38212088,0.17079021,-0.5401437,-0.23138006,0.46733114,0.5073036,0.25469226,-0.081095345,0.05625336,0.07256103,-0.15787941,0.17652176,0.18224365,0.20632058,0.0074902615,-0.7321607,-0.16766739,0.5903978,0.2296372,0.18434732,-0.14965667,-0.08440506,0.3627626,-0.09897493,-0.031188993,-0.09977746,-0.58036506,0.0139332265,-0.41954768,-0.5005726,0.22873405,-0.25712037,0.26164916,0.13814856,-0.12416157,-0.20284067,0.26576394,0.4764779,0.63988185,-0.030171476,-0.18881734,-0.58076674,0.096636385,0.09379016,-0.09181265,-0.1444309,-0.2127004,0.13746499,-0.6332477,0.403607,0.0033485019,-0.20520085,0.079357974,-0.17835757,-0.07362814,0.5956626,-0.04265158,0.049199224,-0.0531235,-0.22512205,-0.19321857,-0.104481466,-0.17571017,0.21590108,0.26311573,0.001927126,-0.120165125,-0.18054944,-0.52517766,0.28429917,0.1277314,0.614505,0.4018391,0.1492669,-0.22176728,-0.23753908,0.15031086,0.44889596,-0.07964994,-0.16625316,-0.23132467,-0.5379046,-0.16820295,0.09939922,-0.06909895,0.2637704,0.085141934,-0.2140953,0.8066892,-0.15709947,1.0527837,0.08760489,-0.38951162,-0.100559935,0.4901641,-0.1016933,-0.17990834,-0.31354406,1.0865958,0.62370557,0.06539202,-0.0690715,-0.1941414,-0.081979275,0.08408335,-0.17608343,-0.1863529,-0.003544702,-0.47323975,-0.46452028,0.16131124,0.27315018,0.078563415,0.020111639,0.05754502,0.26842245,-0.053232074,0.4885596,-0.53753793,-0.18084182,0.15939993,0.28176516,0.004477868,0.24939528,-0.36490074,0.46983954,-0.53020626,0.1338858,-0.4434482,0.22746779,-0.052186176,-0.13471302,0.23822229,-0.058889948,0.44799095,-0.2826892,-0.42698172,-0.19976936,0.36362046,0.14271076,0.07874204,0.49137777,-0.11665922,0.1886947,0.04223652,0.6122528,1.1435176,-0.13617009,0.13484593,0.39540055,-0.4076508,-0.61401975,0.37912816,-0.31907687,0.21402901,-0.025451733,-0.056288794,-0.33083922,0.26122794,0.2680482,0.040296152,-0.1551113,-0.48461148,-0.25818124,0.48051903,-0.31561133,-0.22105831,-0.30871958,0.15255354,0.49225852,-0.24709767,-0.15253255,-0.08021276,0.28217837,-0.2290926,-0.5209014,-0.08431739,-0.420787,0.35986328,0.13737614,-0.34414476,-0.07332793,0.06643895,-0.3615216,0.1542258,0.02504147,-0.4021289,0.034994338,-0.11180059,-0.011522627,0.87610316,-0.082564645,-0.22095563,-0.6137469,-0.39790884,-0.82669044,-0.34579313,0.49758947,0.04355932,0.020443128,-0.46347564,0.07911576,-0.016080664,-0.16118789,-0.17915824,-0.32089895,0.39625633,0.11364957,0.6296884,-0.10121342,-0.8579252,0.0590637,0.05918522,-0.2360575,-0.6654958,0.5649496,0.028902348,0.69480765,0.024442334,0.06616633,0.43120924,-0.4515887,-0.16680536,-0.21487048,-0.28817672,-0.86785513,0.036874894 -25,0.39756665,0.27731147,-0.78607666,-0.08212136,-0.47397792,0.0643737,-0.38434187,0.015433874,0.40972868,-0.35787094,-0.10491148,0.0065601934,-0.12078697,0.27522588,-0.12174919,-1.0797276,0.093802996,0.14281395,-0.5328403,0.38705003,-0.5165094,0.5372785,0.17836574,0.66937137,-0.031363327,0.41609526,0.36667764,0.08685541,-0.19070475,-0.7058481,-0.1272395,-0.034163754,-0.57891,0.27625903,-0.08235865,-0.45687425,0.060658474,-0.51077294,-0.25281948,-0.610625,0.45349038,-0.7087534,0.5884344,0.063107684,-0.2613454,-0.42770597,0.5557721,0.22943984,0.06989898,-0.038619194,0.41655982,-0.7134083,0.05868584,-0.60086304,-0.5784041,-0.7303596,-0.4888862,0.038439017,-0.5879333,-0.38121355,-0.23515317,0.32024425,-0.22212774,-0.09334389,-0.18315399,0.60662025,-0.325762,0.18242046,0.15393801,-0.61323714,-0.07184017,-0.6293938,-0.2493234,0.034586623,0.33540595,0.110724114,-0.28869092,0.21635702,0.017105414,0.38879156,-0.032956976,-0.44437426,-0.49967474,-0.0990732,0.028166719,0.58779544,-0.34503564,0.09192559,-0.28306735,-0.026212467,0.7337361,0.3003205,0.09226999,-0.18913095,0.10278647,-0.24667501,0.04396734,0.79019696,0.43239552,-0.38328907,-0.045283,0.20253496,0.17014685,0.2945252,-0.29356372,-0.122157656,-0.1786784,-0.48543262,-0.11498531,0.39366037,-0.05458888,0.29339096,-0.0975239,0.09967011,0.82466006,-0.2731552,-0.13650991,0.22171512,0.11248937,0.51308906,-0.024505382,-0.051088855,0.58198905,-0.41570267,-0.17880245,-0.35261896,0.7376846,-0.11370405,-0.6218419,0.18361354,-0.6526778,0.07748392,0.050828025,0.6858849,0.510802,0.51113725,0.14851822,0.8162026,-0.28942347,0.24289761,0.23301476,0.015516692,-0.10049742,-0.1491425,0.09785321,-0.44642618,-0.0929553,-0.0032783416,0.03435472,0.48951107,0.4909704,-0.5004966,-0.30814442,0.19186811,1.086699,-0.18079121,-0.14467455,0.78197604,1.4016739,1.0015036,-0.23563512,0.94348377,-0.039416656,-0.19039512,-0.7035248,-0.083616085,-0.29680017,0.1541267,0.2131444,-0.35417998,0.57953084,-0.14293998,0.08951315,0.16420904,-0.12333766,-0.2647109,0.14428028,0.27268493,0.06745389,0.026619239,-0.724828,-0.55767035,0.27738452,-0.14730878,0.45871434,0.6350984,-0.4727068,0.74176455,-0.3262193,0.66726047,-0.024223315,0.34703028,0.17565928,0.41966882,0.15329748,-0.10158054,0.046712533,0.21560329,-0.18370311,0.19654962,-0.3783007,0.016664615,-0.5372001,-0.29281956,-0.303668,-0.35459366,-0.36449188,0.07027421,-0.15487462,-0.41713634,0.029529534,-0.2204793,0.2141408,-2.2448685,-0.011656238,-0.12099758,0.49479347,-0.14108217,-0.42059472,-0.22561598,-0.32806224,0.33869383,0.22167632,0.7559386,-0.35912845,0.005596724,0.33401075,-0.56198967,-0.35493046,-0.5590951,0.27712318,0.111937575,0.6837106,-0.3149954,-0.28657576,-0.064982295,0.1624995,0.71484774,0.30254883,-0.03106561,0.3056937,0.6166683,-0.30668414,0.34471425,0.08949745,0.61427635,-0.48515898,-0.44540945,0.38589042,-0.74362206,0.53807443,0.009062956,0.05560206,0.4232045,-0.3042888,-0.9321654,-0.22733273,-0.036000032,1.1570857,-0.2330842,-0.87615466,0.0031322737,0.28814858,-0.35967016,-0.012868378,0.6794202,-0.12486626,0.3557572,-0.4184338,-0.009169953,-0.39751616,0.42496905,-0.08158979,0.07450088,-0.27227658,0.7215774,-0.17518504,0.15739149,0.23875353,0.25117412,-0.79649425,-0.44290555,0.18158752,1.203698,0.37336925,0.14568734,-0.16308793,-0.076185465,-0.09179035,-0.461039,0.16435513,0.8094418,0.7177091,-0.14251763,-0.033096127,0.6023586,-0.2668153,0.052841112,0.06479587,-0.51150954,-0.25829205,0.11870527,0.9582096,0.7143102,0.053023834,0.5992052,0.17904358,0.43532255,-0.31317538,-0.3817607,0.3327773,0.52486134,-0.24980743,-0.44595745,0.71920025,0.34429723,-0.6750702,0.5781633,-0.6766704,-0.733487,0.5768238,0.039311565,-0.6406052,-0.0915551,-0.34165165,0.11137177,-0.6051771,0.6636174,-0.09526406,-0.85771745,-0.4978801,-0.2905622,-1.4484204,0.3172012,-0.42678395,0.037789274,-0.23132092,-0.092072755,-0.0065180194,-0.49038887,-0.59703594,-0.04086657,0.11841917,0.7087403,-0.39549005,0.11292675,-0.22962104,-0.45281267,0.05784158,0.63279927,0.40105045,0.35111856,-0.10618479,-0.0467826,0.2982794,-0.13532332,-0.32862788,-0.24798353,-0.6282324,-0.732758,-0.06477001,-0.7563925,-0.11919979,0.9783589,-0.79645854,0.084720425,-0.4088713,0.30148485,0.17372243,-3.4557448e-05,0.3401991,0.45254612,0.2903267,0.03649278,-0.05665018,-0.24931727,0.28740188,0.18419822,0.63855445,0.46366602,0.23249102,0.21259615,0.27968037,0.8180987,0.3175491,0.8208535,-0.18664037,-0.1076143,0.11109568,-0.44796085,-0.5628538,-0.6458271,-0.27099946,0.2983259,-0.4550299,-0.49910274,-0.14588925,-0.5003481,-0.89694893,0.75536245,0.24821281,0.23177259,-0.2954701,0.623928,0.36509612,-0.3375929,-0.0918506,-0.017449796,-0.07213302,-0.40612432,-0.24992882,-0.74762726,-0.44290555,0.044890437,0.6884725,-0.13196252,0.013792263,0.49259287,-0.22049874,0.013438514,0.07775593,0.07004734,-0.1382726,0.31756642,0.25713432,-0.45333713,0.2994567,-0.43765712,0.15362503,-0.47350132,0.11467976,0.75111634,-0.5817702,0.5323647,0.66892684,0.110993,-0.410307,-0.674462,-0.25061518,0.2606374,-0.055743296,0.3809172,0.25881276,-0.41754162,0.41816428,-0.022243394,-0.26672694,-0.5662255,0.38016546,0.0053087687,-0.3700253,0.18273842,0.64978844,-0.012740678,-0.15119869,-0.15742654,0.3400499,-0.39489576,0.21151347,0.10332769,-0.095778,0.35944,-0.1903302,-0.6499897,-0.82549274,0.28387964,-0.6671157,-0.43325287,0.41787633,0.08112207,0.11278471,0.34369087,0.20858015,0.44340694,-0.16767073,0.18096942,-0.38980275,-0.31790844,0.69838035,0.3575604,0.7406788,-0.7448201,0.6259326,0.1637319,-0.13503094,0.40053135,-0.0489311,0.56742024,-0.10378325,0.3631036,0.05032232,-0.09370711,-0.22380723,0.31648198,0.2899215,0.31315288,0.18996535,-0.019055042,0.25280118,-0.0111497305,0.08944878,-0.08902796,-0.5842525,-0.043967623,0.09222497,-0.108671404,0.38224703,0.08347164,0.35080406,-0.12874252,-0.033200547,0.39465165,0.17922606,-0.32395124,-1.064888,0.633578,0.3080874,0.63979995,0.033258326,0.2791771,-0.30287138,0.8214821,-0.18942456,-0.2036143,0.39121518,0.16744155,-0.40563756,0.5895618,-0.46164003,0.7726411,-0.30208862,-0.039944906,0.016247451,-0.055062827,0.35159948,1.0049623,-0.20982003,0.091427155,-0.1582021,-0.36693573,-0.22431943,-0.38528836,0.4298179,-0.42190024,-0.4318701,0.8615558,0.11017993,0.29456663,-0.27515405,0.12627941,0.13823026,-0.10367153,0.20847511,-0.06619109,-0.005047911,0.08421431,-0.5677087,-0.10807119,0.4273092,-0.31117058,-0.10378425,0.19120935,0.18309474,0.21228693,0.096841685,-0.10256008,-0.21316713,-0.4915584,0.14381617,-0.5034292,-0.7188088,0.0069800583,-0.4079429,0.120467715,0.16990809,0.04726659,-0.24074653,0.5062134,0.5122059,0.6222694,0.14250077,-0.25270307,-0.41115883,0.119533285,0.10361171,-0.2340748,0.1602919,-0.32592598,0.4935557,-0.5911615,0.4948084,-0.609743,-0.45634657,-0.5397597,-0.38711923,-0.05935702,0.34825653,-0.030107941,-0.10453165,0.3205507,-0.38996607,-0.13847998,-0.11067556,-0.46482384,0.23631126,-0.11726883,-0.4522564,-0.37368283,-0.17955539,-0.48407376,0.10404926,-0.13869946,0.38551474,0.378173,0.20574069,-0.3052882,0.2360379,-0.12801073,0.4966257,0.07239012,0.21523608,-0.29251805,-0.37031898,-0.47654215,1.0137758,-0.054750342,0.12528415,0.21384008,-0.20631537,1.0269027,-0.15406847,1.3147321,0.0059945583,-0.34274173,-0.08033866,0.64921385,-0.08047338,0.0015672842,-0.35126567,1.5639795,0.380495,-0.16312689,0.004263419,-0.55758953,-0.062150173,0.24731046,-0.42207587,-0.41797632,-0.228341,-0.3690035,-0.052292302,0.23316973,0.18752111,0.15838706,-0.2196939,0.13231237,0.29260984,0.31249702,0.14665967,-0.5763614,-0.29295403,0.50368565,0.20459527,-0.19232069,0.15082465,-0.2320367,0.36967564,-0.78055525,0.39801747,-0.7315871,0.23157723,0.015773641,-0.6350033,0.22277771,0.10541018,0.37625155,-0.5364892,-0.08452935,-0.25083074,0.20686984,0.503126,0.15714547,0.6016743,-0.24359639,-0.07815831,-0.11540866,0.5764604,1.5112481,-0.059823718,-0.13779579,0.0574533,-0.3094112,-0.80426353,0.13243651,-0.63433266,-0.32694215,-0.1762482,-0.5236935,-0.2600395,0.19689684,0.013012052,-0.11553572,0.052801184,-0.60770226,-0.05901226,0.10391839,-0.24400115,-0.30612236,-0.2803964,0.36175746,0.73156345,0.028206421,-0.36260697,0.04238091,0.51170015,-0.17490667,-0.6276795,0.3568836,-0.3337813,0.20235175,-0.18218537,-0.38572183,-0.051696308,0.040548906,-0.2694809,0.2839897,0.3892533,-0.26974952,-0.035936147,0.028120093,0.2391351,0.44965082,0.00851904,0.3620493,-0.41055727,-0.6069392,-0.9410538,-0.37138268,-0.3401929,0.08157296,-0.093507186,-0.49440315,-0.38699234,-0.5475285,-0.16751832,0.061952896,-0.5250487,0.16849233,0.15430555,0.59620106,-0.65958595,-1.0770626,0.23968904,0.2563463,-0.36252198,-0.44150767,0.23728459,-0.24978751,0.7060531,0.119367786,-0.16867574,0.24400398,-0.65125585,0.33923706,-0.28081048,-0.2890399,-0.86653507,0.24538289 -26,0.57579285,0.39263284,-0.6241644,-0.46179184,-0.50873446,-0.04027979,-0.27067104,0.15748627,0.3711079,-0.37041405,0.09770458,-0.13215324,-0.07449428,0.31293836,-0.24493249,-1.0964175,0.20656958,0.16650735,-0.5325617,0.07808598,-0.44073492,0.51349366,0.10460528,0.56313515,-0.19041902,0.47157633,0.4140873,-0.20561759,0.054047104,-0.42206472,-0.0203025,0.012871299,-0.7337308,0.3874849,0.059697773,-0.23945257,0.06307718,-0.40550447,-0.078235306,-0.48788008,0.2528404,-0.7633672,0.65399265,0.08392179,-0.32752603,-0.5223586,0.35105467,0.1800056,0.07044698,-0.029108904,0.4670955,-0.62778777,-0.11934572,-0.18306941,-0.17307538,-0.8106103,-0.3657483,-0.37014544,-0.62300134,-0.3713863,-0.5383497,0.2756843,-0.47274384,-0.20913237,-0.14658526,0.4141433,-0.5079924,-0.057169292,0.25536057,-0.6738021,0.25628394,-0.40825498,-0.1277581,-0.09153928,0.3330209,-0.081256405,-0.27198157,0.36227125,0.36082304,0.35990313,0.11222887,-0.29013455,-0.14215122,-0.31954664,0.29042217,0.7024331,-0.37025234,-0.21182685,-0.29467005,-0.09448079,0.24462551,0.1221489,0.16995281,-0.4275807,0.24487288,0.10588297,-0.00299916,0.8500166,0.51514304,-0.30876514,0.05845029,0.4159586,0.12911293,0.19837734,-0.14224154,0.39915144,-0.13193876,-0.46229732,-0.25762984,0.053592525,0.023218526,0.40025288,-0.08087497,0.15890795,1.1289351,-0.31019974,-0.05049205,0.12686388,-0.10517331,0.365934,-0.13194078,-0.05784583,0.44722047,-0.58681786,0.05775408,-0.2946383,0.8787167,-0.0139818,-0.79038674,0.31308544,-0.49993473,0.011580007,-0.15072621,0.8896024,0.71403706,0.50304806,0.11746921,1.1801171,-0.5599861,0.23706873,0.3771642,-0.35259682,0.11579479,-0.051433418,0.4673571,-0.42910558,-0.014880139,0.08455389,0.18325353,0.28563812,0.35260856,-0.5443529,-0.31205192,0.1630952,0.91037726,-0.40715513,-0.2120393,0.95773125,1.2484515,0.7533131,0.006349004,0.97315246,0.14602868,-0.26953682,-0.22988752,0.10098382,-0.38412887,0.24759786,0.30702493,0.18693548,0.10601635,0.020852739,0.16641444,0.34499547,-0.34188306,-0.32921445,0.047759183,0.45801437,-0.017956667,-0.40608862,-0.66828114,0.029457608,0.39186805,-0.027080558,0.121831566,0.39216074,-0.3799101,0.40397966,-0.21558481,0.7432883,0.12902345,0.18075234,-0.060736783,0.60339564,0.116050616,-0.3521954,0.14367123,0.08811601,0.11538262,0.028119395,-0.44998196,0.075528204,-0.35344198,-0.5793956,-0.28793138,-0.4817159,-0.20420162,-0.29752403,-0.023368742,-0.16665046,0.093294196,-0.24811918,0.33693266,-2.1673138,-0.18451054,-0.2634863,0.51774323,-0.13315378,-0.21609075,-0.15847342,-0.4125922,0.42652068,0.22546095,0.6616042,-0.405197,0.51319915,0.54502136,-0.56819165,-0.25107855,-0.5861108,0.17378299,-0.017195616,0.43421203,-0.11263561,-0.3727768,-0.05965908,0.33167943,0.8455838,0.45623302,0.0935765,-0.03678753,0.6244301,-0.2075718,0.526811,0.04501239,0.73993236,-0.16225305,-0.22919999,0.17320259,-0.6057161,0.17012517,-0.41443357,0.08477494,0.3479053,-0.330672,-1.2060131,-0.5252574,-0.4425198,1.0448856,-0.44391173,-0.7367007,0.39068332,0.327287,-0.36208034,0.30834442,0.62674016,-0.15779927,0.3596586,-0.53860545,0.17960078,-0.44844946,0.08562132,-0.100354336,0.26252067,-0.5697678,0.78476185,-0.3801741,0.47172785,0.08294442,0.33595717,-0.5771211,-0.26897117,0.18132883,0.9681718,0.49777567,-0.05682183,-0.067549795,-0.050765462,-0.24347371,-0.5642178,0.14879285,1.0582422,0.9355797,-0.03171201,0.03631947,0.35230854,-0.2650443,0.103769414,-0.01164589,-0.63564396,-0.090079695,-0.14423212,0.8399482,0.53826076,-0.03350304,0.55456144,0.08450356,0.12740067,-0.26988202,-0.63000596,0.4056246,0.42551315,-0.18489467,-0.2543242,0.81531626,0.18851279,-0.6178006,0.6282522,-0.66667783,-0.5570177,0.5497945,0.041378524,-0.67505634,-0.15766723,-0.30954015,0.076899946,-0.69133556,0.46128824,-0.14911398,-1.3466865,-0.022820227,-0.32792777,-3.0787992,0.19031426,-0.26892853,-0.0022674368,-0.23991673,-0.18047036,0.2428466,-0.41265473,-0.6692032,0.038860198,-0.035119906,0.7619801,-0.19607629,0.1434018,-0.18475357,-0.279489,-0.05313997,0.5777078,0.012158599,0.2466401,0.056837585,-0.16461343,0.27100176,-0.1789036,-0.5830886,-0.01016687,-0.5209252,-0.85214996,0.07950504,-0.7055326,-0.18467799,1.0181078,-0.68639827,0.06443389,-0.27123967,0.17165099,-0.16022396,0.22899383,0.15144597,0.49890667,0.17788874,0.039720163,-0.24170811,-0.06002128,0.3122683,0.11610893,0.8627029,0.1781525,-0.12135865,0.11111244,0.68666625,0.5566951,0.20679706,1.0986606,-0.12233644,0.049862046,0.13706793,-0.28018463,-0.36619616,-0.68073666,-0.562975,-0.013317453,-0.66778183,-0.4816209,-0.0799602,-0.40300357,-0.9082507,0.3780894,0.29079577,0.39782676,-0.325205,0.11387987,0.20280671,-0.36377886,-0.1837417,-0.036281984,-0.059247177,-0.6223468,-0.07638862,-0.83368725,-0.55590713,-0.015006672,0.79421735,-0.2586211,-0.060942307,0.040797856,-0.25665373,0.17508917,0.068811856,0.23547132,-0.102068216,0.3806692,-0.071736336,-0.83320165,0.30850717,-0.6526064,0.26157096,-0.9144388,0.07278742,0.78582674,-0.54354936,0.66623414,0.5778442,0.28255188,-0.3115414,-0.7233772,-0.27164456,0.14662191,-0.13255882,0.5820904,0.052228026,-0.60219306,0.46955532,0.016144838,-0.17290431,-0.49285418,0.70139277,-0.03891565,-0.04679576,0.3472978,0.5296482,0.13396332,-0.23850553,-0.38179955,0.35931933,-0.648632,0.57722926,0.24142939,-0.0078007644,1.0404968,-0.1588028,-0.5562652,-0.8205823,-0.40438235,-0.8001878,-0.31051928,-0.040398,-0.2346006,-0.040400464,0.42736304,0.3293172,0.39266777,-0.4136237,-0.053284306,-0.3233012,-0.49852085,0.5257313,0.558529,0.61373925,-0.70468193,0.7500071,0.36942276,-0.22807969,0.06390828,0.06270815,0.73328453,0.013833786,0.5015759,0.011222088,0.0074777505,-0.2328963,0.7026419,0.21340401,0.2643752,0.19095014,-0.17007726,0.43167603,0.08952211,0.31397098,0.18671864,-0.6990216,0.0049856603,-0.31557202,-0.05203134,0.5267073,0.41317046,0.40710604,-0.05217061,-0.19259869,0.34588507,0.16243425,-0.2142933,-1.4391541,0.85947156,0.48603976,0.81360704,0.28216106,0.01614184,-0.048271805,0.62145954,0.0042843157,0.08061377,-0.038152907,-0.08102888,-0.28058988,0.5869276,-0.66049784,0.48229223,-0.16200973,0.102007926,0.27498358,0.06618112,0.4541502,1.1898907,-0.09636601,0.11747476,-0.09353235,-0.24952242,0.03722406,-0.24250595,0.18623847,-0.36849737,-0.3144561,0.92870957,0.36320552,0.12703565,-0.12776217,0.049162567,0.1330964,-0.19066885,0.027026024,-0.094106376,-0.32173163,-0.033667445,-0.71255374,-0.3565061,0.5749077,-0.089617014,-0.025057957,0.15820463,-0.16171384,0.42331254,0.12611914,-0.09063937,0.03295754,-0.50869846,-0.113888025,-0.43302807,-0.49250582,-0.0035169125,-0.37478665,0.27029455,0.20673858,0.04212807,-0.007926173,0.3690656,0.3925658,0.5604155,0.27822304,-0.51958686,-0.56003153,-0.23444642,0.26732767,-0.43301338,-0.03289014,-0.46116626,0.230948,-0.6111107,0.5716293,-0.48072544,-0.3349873,0.07334781,-0.28415427,-0.017799335,0.32608417,-0.23838824,-0.10703871,0.28754702,-0.33006388,-0.12605771,0.0808423,-0.49659517,0.11277975,-0.17501378,-0.3547348,-0.14874251,-0.13367067,-0.349346,-0.07258526,-0.050699573,0.11915472,0.36062938,0.17108127,-0.24942255,0.17930113,0.098569624,0.61184394,0.0060473285,0.22950009,0.12889722,-0.4175825,-0.525475,0.59361106,-0.11933812,0.17711255,0.24293727,-0.153138,0.7088328,0.16325861,1.2573098,0.05045565,-0.34423432,0.037948117,0.58303803,-0.093516946,0.05429436,-0.34397012,1.3887826,0.61298996,-0.03539993,0.016826043,-0.83400536,-0.18866628,0.4016071,-0.35417107,-0.5199834,-0.21622702,-0.9629608,-0.101458974,0.1927857,0.13292319,0.13975558,0.046602126,0.029306611,0.32319042,0.31202137,0.19723265,-1.0318229,-0.13818748,0.15637872,0.45569822,-0.05692431,0.067015395,-0.15161173,0.4237901,-0.88394535,0.36060527,-0.54090106,0.061235562,-0.30538908,-0.43283147,0.08590684,0.015182164,0.44498095,-0.09518424,-0.1380284,-0.07687959,0.4630511,0.42362595,0.13153413,0.95591384,-0.17129117,-0.16281933,-0.04899483,0.47325504,1.422895,0.16168065,0.17258963,0.5063843,-0.3310565,-0.6992732,0.1848726,-0.61804557,-0.25669336,-0.15231746,-0.54058343,-0.09186987,0.1822592,-0.12688719,-0.1981079,0.08832199,-0.36893016,-0.30109954,0.208439,-0.28582305,-0.35117352,-0.16190985,0.29064375,0.83133507,-0.18102472,-0.17269225,0.02990136,0.3839536,-0.37374353,-0.94452393,0.20236324,-0.13440578,0.48394755,-0.23916271,-0.57139754,-0.07408657,0.015041782,-0.47926924,0.42844453,0.32091957,-0.22396408,0.21575348,-0.06263876,0.038791075,0.6265319,0.20929578,0.29419383,-0.6862242,-0.5268376,-0.93063015,-0.24649042,-0.41482237,0.15173395,-0.20242566,-0.42799604,-0.25232068,-0.4286128,0.28900862,0.005236202,-0.8413091,0.08809164,0.025491923,0.7686743,-0.2576883,-1.323286,0.09993516,0.33284405,-0.068818465,-0.49363428,0.5271208,-0.15285106,0.86408544,0.19372559,-0.058212537,0.060859993,-0.50933933,0.37486643,-0.21177876,-0.1931147,-0.71045285,0.12275168 -27,0.5533228,-0.40894133,-0.5923264,-0.24056841,-0.21911699,0.03586492,-0.25075474,0.6646557,0.19635631,-0.4853088,-0.1797122,0.05646748,-0.024080876,0.35920265,0.0154700875,-0.56281525,-0.0037446665,0.35498646,-0.6640653,0.5251803,-0.39369744,0.16040958,-0.07940073,0.64388144,0.29449093,0.25272897,-0.11867808,0.029960118,-0.15168874,-0.081575885,0.013847397,0.33798987,-0.37735957,0.28115824,-0.18558449,-0.41550696,-0.29132405,-0.60439557,-0.41776758,-0.7423645,0.17995985,-0.7717961,0.6139508,-0.10497458,-0.4089771,0.013359157,0.05777602,0.48066708,-0.31456202,-0.032130823,0.15176545,-0.018159198,-0.30408147,-0.10615325,-0.09527263,-0.17449497,-0.59290755,-0.05450757,-0.33763042,0.079725794,-0.07877839,0.27922666,-0.19996366,0.106882825,-0.112706356,0.5974721,-0.39883798,-0.06685254,0.16431192,-0.10812301,0.36091608,-0.4748398,-0.1197976,-0.16804123,0.36910912,-0.15584596,-0.4308252,0.19357787,0.16494806,0.49115038,-0.062211607,-0.078305155,-0.35180503,-0.012312779,0.043324653,0.5059213,0.03211805,-0.5144403,-0.22673443,-0.036389105,0.18918014,0.19686519,0.1580554,-0.22641745,-0.1825501,-0.18967155,-0.09701499,0.36719117,0.4405003,-0.18806976,-0.08624126,0.31359354,0.63794875,0.12782852,-0.16346754,0.035352595,0.09333288,-0.59079003,-0.19770709,-0.03255826,-0.21213466,0.40287665,-0.13191846,0.33870074,0.42177275,0.034841035,-0.19432637,0.2549281,0.11021193,-0.025831103,-0.33120662,-0.39536947,0.2959553,-0.40380806,0.16472432,-0.24354944,0.4836577,0.23767152,-0.7094959,0.3092791,-0.46402022,0.063679665,-0.084709086,0.40355074,0.79966205,0.46092382,0.13849793,0.7664732,-0.21490526,0.10604984,-0.0474538,-0.09482109,-0.10308986,-0.21875867,0.063896134,-0.6209828,0.05540591,-0.13315384,-0.2321058,0.15644334,0.4615,-0.56423676,-0.16233467,0.21513884,0.802407,-0.29399613,-0.037470516,1.0232155,1.0152301,0.9891274,0.039525032,1.1542877,0.2438676,-0.31755683,0.1349394,-0.31560275,-0.71623933,0.37505376,0.36293015,0.18742102,0.3031262,-0.043907147,-0.06806204,0.55764043,-0.40755108,0.026438741,-0.07264574,0.033831157,-0.04484689,-0.029802024,-0.66194606,-0.34024078,-0.15731524,0.06506029,0.16122526,0.14731985,-0.27652663,0.63976395,-0.067751735,1.6409429,-0.080536924,0.06511155,-0.01008442,0.35098445,0.20602721,-0.3773422,-0.4056784,0.21226525,0.3953495,-0.048078492,-0.5941276,0.13735889,-0.17324565,-0.2611733,-0.29933375,-0.34468383,-0.029454857,-0.20981766,-0.38289055,-0.16073059,-0.03941711,-0.4001118,0.39004612,-2.5923085,-0.3540621,-0.1622928,0.3220165,-0.30965102,-0.4443288,-0.10243152,-0.4082724,0.34730127,0.2577876,0.63049877,-0.5337183,0.5158081,0.3937551,-0.62382823,0.059358083,-0.6425798,-0.2729124,0.09415608,0.16494487,0.03498544,-0.03081683,-0.032644793,0.12919283,0.4184289,-0.106130615,0.0972011,0.40712982,0.20764907,0.067743436,0.45724642,-0.0679077,0.6712373,-0.54045856,-0.23678233,0.3028943,-0.4326315,0.14391613,-0.13680974,0.1707235,0.6307351,-0.6543173,-0.922586,-0.8580155,-0.17311181,1.1235404,-0.18527542,-0.25605184,0.18189071,-0.70921665,-0.36880848,0.10412781,0.52291876,-0.12291944,-0.06243249,-0.8664941,-0.24045603,-0.02661943,0.32981807,-0.16951202,-0.14546323,-0.60574985,0.48190138,-0.056398228,0.5251836,0.32496855,0.20338401,-0.19111562,-0.3893729,0.03318236,0.9096493,0.3525998,0.18681644,-0.27983466,-0.1637875,-0.56831723,0.17879055,0.028083857,0.6017084,0.5866961,0.0006987269,0.12923637,0.2816203,0.033279598,0.15100034,-0.078547746,-0.22221228,-0.29859167,0.22249971,0.66115123,0.5629319,-0.052661553,0.57383025,-0.11171791,0.395371,-0.17333843,-0.46503463,0.44077396,0.9178543,-0.21216896,-0.5161308,0.75244606,0.43288502,-0.22621424,0.48428038,-0.54546916,-0.3157232,0.20688674,-0.052576296,-0.32888317,0.20236538,-0.31055164,0.3928246,-1.0946852,0.12810636,-0.42902324,-0.82491106,-0.65518284,-0.08602698,-2.9035916,0.24532501,0.08362438,-0.28109238,0.05595678,-0.2615907,0.12992369,-0.5372528,-0.79530555,0.27828372,-0.02309802,0.8990322,-0.14929543,-0.046634518,-0.14077197,-0.36222488,-0.31331545,0.18329129,0.23171535,0.36068565,0.097285144,-0.5482411,-0.246053,-0.18371758,-0.36508545,0.037228093,-0.8474544,-0.45454347,-0.10675208,-0.6433029,-0.12775192,0.6123842,-0.10741147,0.047616348,-0.17671707,0.088063434,-0.019812485,0.27404374,-0.071741804,0.17213152,0.26177922,-0.25241315,0.047048286,-0.124729104,0.13615258,0.09822833,0.17866285,0.113461405,-0.167322,0.40704444,0.6165475,0.92960835,-0.18353814,0.891519,0.5336611,-0.057765245,0.22344151,-0.28249544,-0.3826884,-0.27281532,-0.015527684,0.06727762,-0.48995447,-0.45307687,0.022648748,-0.4607095,-0.9014797,0.51793665,0.0426329,0.014640973,0.16635387,0.14570402,0.5436087,-0.29111946,-0.032514308,-0.24515864,-0.1030152,-0.43345338,-0.35375756,-0.55469507,-0.46295932,-0.03724242,1.3758155,-0.20850253,0.23416355,0.0703808,-0.43713468,0.04804682,0.38844806,-0.03660563,0.16912542,0.42084795,-0.15675949,-0.57758266,0.29118553,-0.15623893,-0.22230522,-0.508697,0.325228,0.6268399,-0.63355434,0.6809115,0.29267767,-0.06252175,-0.49451664,-0.50628686,-0.16602758,0.038736757,-0.16991061,0.50436634,0.24644886,-0.6657039,0.35976475,0.2723066,-0.14916357,-0.80816674,0.48684612,-0.032724444,-0.13309158,-0.1897494,0.39771155,-0.04188114,-0.012093567,-0.29452717,0.16608694,-0.1532524,0.23380607,0.16951694,-0.0092471745,0.04891344,-0.44197404,0.09283816,-0.76254654,-0.1329282,-0.6819518,-0.18485086,0.40315595,-0.025160488,0.27573332,0.08443405,0.13426705,0.3572461,-0.33526498,-0.010138225,-0.26625317,-0.4875233,0.25398067,0.42913342,0.412765,-0.46703207,0.6260628,0.06937021,-0.12641397,-0.19663168,-0.013705895,0.5365897,-0.1023884,0.58826464,-0.037220575,-0.19846597,0.18162738,0.8124268,0.25954416,0.29930094,0.024457918,-0.05842615,-0.10137923,0.043816563,0.30159342,-0.08031735,-0.45401397,0.14886865,-0.24215081,0.17483383,0.34601718,0.14631364,0.3342145,-0.10874827,-0.29973304,0.04663173,0.09601934,0.032243308,-1.5756085,0.53561795,0.26887706,1.0617633,0.42169836,0.07122162,-0.111059085,0.71287507,-0.18057297,0.155113,0.3374472,-0.17828694,-0.37882283,0.51851255,-0.73585993,0.612198,0.13368732,-0.0004468973,0.04692413,-0.33033815,0.6581922,0.8946762,-0.2258324,0.16029695,0.09615775,-0.22796114,0.11398744,-0.38191715,-0.19228356,-0.72831506,-0.25189322,0.7657635,0.5551511,0.40179527,-0.15019774,-0.05927652,0.29657784,-0.02630989,0.1489048,0.1019357,0.18496092,-0.013995464,-0.6574593,-0.09357795,0.37955564,-0.008018927,0.1682748,0.19192013,-0.11524929,0.18791558,0.008128141,0.058496237,-0.15111855,-0.67088276,-0.14445506,-0.47532716,-0.242654,0.39205888,-0.16412728,0.16986166,0.20591666,0.10819094,-0.21728815,0.61406577,-0.107820675,1.0450792,0.19486094,-0.14926825,-0.18480165,0.3239298,0.23016731,-0.27437666,-0.046580657,-0.435064,-0.018852536,-0.67736685,0.5090757,0.100095116,-0.5021627,0.28987753,0.024714626,0.17334546,0.45693696,-0.20542775,-0.17696404,-0.023733368,-0.042990573,-0.30113915,-0.16992377,-0.23478486,0.32183948,0.27784225,0.08420222,-0.12402714,0.12952633,0.027466664,0.6950026,-0.024954213,0.46801165,0.34254706,0.16278015,-0.2834698,0.014115453,0.2697948,0.61590225,0.0063952003,-0.18921486,-0.230268,-0.2591307,-0.4537675,0.29238892,-0.09279798,0.44603893,0.037229877,-0.04346941,0.6026014,0.07176034,1.1165183,-0.048825502,-0.3967004,0.17058149,0.50331974,-0.07414648,-0.10894971,-0.45057222,0.92956924,0.261023,-0.1498786,-0.1046698,-0.5236136,0.0067596207,0.09435233,-0.16912396,-0.26394537,-0.103939325,-0.5740496,-0.25600857,0.22352117,0.2262081,0.4306249,-0.1390729,0.25217688,0.36293843,-0.07106553,0.08871988,-0.37234586,-0.01933526,0.38336533,0.29287496,-0.034867767,0.07675632,-0.50302595,0.27093703,-0.63191956,0.017631888,-0.15528785,0.17630187,-0.22400977,-0.55053574,0.27735373,0.24180728,0.19669428,-0.3620965,-0.27777058,-0.33837205,0.63629496,0.17333056,0.00572656,0.47498754,-0.28245813,0.05038951,0.22080693,0.39666763,0.70983446,-0.28961673,0.09774454,0.34173286,-0.2597914,-0.48929417,0.35129797,-0.40198877,0.42486855,0.22647089,-0.30622515,-0.8467896,0.3227188,0.20288962,0.004842584,0.09658359,-0.5956613,-0.094863445,0.3142696,-0.13190803,-0.12750585,-0.39694065,0.0012950989,0.36285037,-0.095490746,-0.40585804,0.30560958,0.13727556,-0.28416026,-0.40174997,0.023452153,-0.42558828,0.1631341,-0.06568693,-0.4863078,-0.32382208,-0.11874997,-0.50243664,0.22880639,0.14795342,-0.32436174,0.15232986,-0.43711838,-0.23966265,1.1075813,-0.2861578,0.36175394,-0.45556968,-0.46187162,-0.7652482,-0.31957287,0.5086459,0.11007354,-0.16677158,-0.80610406,0.09935718,-0.18976498,-0.20237142,0.050421212,-0.2462759,0.42728445,0.1102239,0.38396665,-0.040040474,-0.88602674,0.2771045,0.115342766,-0.3216659,-0.5607646,0.3976185,0.13386843,0.9385204,0.03948122,0.28785926,0.32325083,-0.56338984,-0.18041772,-0.10321213,0.03643503,-0.5505048,-0.032789204 -28,0.57676417,-0.38611257,-0.3592069,0.030557405,-0.106888264,-0.04410633,-0.15854101,0.60573864,0.30957833,-0.4774587,-0.16524597,-0.30159697,0.05388786,0.4326124,-0.116642326,-0.5700424,-0.102258675,0.16951086,-0.41778556,0.6902926,-0.40745097,0.17858075,-3.846125e-05,0.4603349,0.2104938,0.06916091,0.10823281,0.027588041,-0.3048577,-0.037037995,-0.23853926,0.46240407,-0.5969083,0.13935558,0.008656252,-0.3563271,-0.13456264,-0.57935214,-0.08166329,-0.8110975,0.22354859,-0.7747195,0.52647686,0.061627604,-0.25506914,0.37157518,0.030676115,0.2103415,-0.19869703,-0.0043444904,-0.061877433,-0.07244503,-0.021270644,-0.3010762,-0.28314596,-0.32014903,-0.64500755,0.17362674,-0.4698086,-0.2577066,-0.30100748,0.14631711,-0.4119996,-0.17576037,-0.08362661,0.6295705,-0.42276537,0.13647245,-0.0022028575,0.015907826,0.41459656,-0.66096556,-0.24633004,-0.16191937,0.04213216,-0.3342256,-0.37928504,0.3560317,0.4674987,0.39541635,-0.107437685,-0.10585525,-0.5839662,-0.03832869,0.27056348,0.57360816,-0.20081034,-0.82906973,-0.19411477,-0.015753828,0.21356674,0.36649063,0.40798768,-0.43819663,-0.05526429,0.042634603,-0.25102845,0.6582032,0.495104,-0.27735975,-0.2754143,0.20315656,0.59213185,0.07957292,-0.035262853,-0.12179739,0.06335766,-0.5896967,-0.028632153,0.42942324,-0.349248,0.5455129,-0.18072993,0.17169909,0.48690823,-0.40990055,-0.09963649,0.09068993,0.08380267,-0.069898345,-0.4411496,-0.17561707,0.24231076,-0.3830412,0.096960716,-0.20230569,0.8733725,0.1692582,-0.7716914,0.3656471,-0.47053406,0.14850044,-0.032722905,0.5667521,0.69588524,0.42319953,0.5051925,0.65049684,-0.46677285,-0.0066594915,-0.12662391,-0.40554705,-0.3739278,-0.23100147,-0.005276062,-0.73870295,-0.14940338,-0.13147527,-0.13134629,0.20744243,0.534515,-0.63439393,-0.08488052,0.029947985,0.7718712,-0.28858548,-0.17125979,1.0013361,1.0402924,1.1064882,0.1263803,1.2018589,0.25671625,-0.27939624,0.32762185,-0.5338061,-0.68502444,0.32699755,0.3301354,-0.6913261,0.43528578,-0.051597986,-0.076949,0.22958253,-0.40985343,-0.014990646,-0.14482512,0.1790625,0.24865142,-0.33321488,-0.45309192,-0.20910622,-0.26066262,-0.006780706,-0.011384943,0.23020034,-0.26882038,0.357951,-0.013693273,1.4223477,0.0751492,-0.013092643,-0.036205564,0.43574592,0.257808,-0.062945984,0.020436259,0.47343948,0.3578603,0.23955783,-0.60140574,0.17537768,-0.28540027,-0.54409117,-0.17153555,-0.26155448,0.06308717,-0.06914397,-0.4359326,-0.2131216,-0.18756433,-0.42976934,0.6060056,-2.475365,-0.24643312,-0.027245093,0.2989418,-0.15643059,-0.38591754,-0.026575046,-0.5074947,0.44473922,0.22419706,0.45058087,-0.7642517,0.14461142,0.39186108,-0.43873012,-0.048883926,-0.68941855,-0.08784991,-0.04741675,0.37998632,-0.040869355,-0.0025311736,0.3379711,-0.13319865,0.7289757,-0.25382194,0.095808245,0.28688774,0.47907525,-0.07522829,0.35485017,-0.054093298,0.49523354,-0.3021885,-0.2534155,0.25773022,-0.46940517,0.16578178,0.25163734,0.13309906,0.53282744,-0.33789095,-0.9541601,-0.6791847,-0.3525784,1.0122466,-0.06970325,-0.57733256,0.3093651,-0.13604023,-0.31699744,-0.26423383,0.49371156,-0.11489568,-0.14021504,-0.81128526,0.048224613,0.041130457,0.12096251,0.00068350544,0.048537884,-0.20589113,0.7558181,-0.03975275,0.20121449,0.3679819,0.14456561,-0.7313904,-0.59619707,-0.0021343557,1.0844314,0.34098542,0.1446713,-0.15722138,-0.2619815,-0.23563026,-0.22093274,0.0936152,0.59338415,0.7832567,-0.10696921,0.14673714,0.3773824,0.047268346,0.04517878,-0.16597302,-0.28977865,-0.17161797,-0.021615712,0.57980293,0.51225096,-0.2943022,0.8285833,-0.081913665,0.06741247,-0.12031329,-0.46881685,0.6384479,1.1534734,-0.19128908,-0.38461846,0.49842253,0.42972726,-0.5702085,0.40335143,-0.4231842,-0.15301861,0.5917938,-0.15448724,-0.49250638,0.16654798,-0.22872216,0.07892776,-0.8258725,0.37701243,-0.38044044,-0.5971536,-0.5218376,-0.04898983,-3.2131653,0.25160047,-0.37778842,-0.2904126,-0.1142323,-0.2387877,-0.19327994,-0.624833,-0.47054628,0.17941327,0.26801547,0.669104,-0.15166183,0.10955166,-0.19702072,-0.3286687,-0.3374653,0.186387,-0.071199484,0.3208683,-0.06603826,-0.49081868,0.004363678,-0.0361506,-0.46613052,0.12627055,-0.6082932,-0.5704821,-0.17522399,-0.6399488,-0.55659777,0.7810822,-0.45609033,-0.0875919,-0.19590941,-0.04264262,0.07946125,0.5209881,0.059830524,0.15676701,0.07078931,-0.23136324,0.08637436,-0.21869694,0.16248155,0.0021774264,0.21510428,0.5432314,-0.2035995,0.4474266,0.47568187,0.77003425,0.14357637,0.83314264,0.5448187,-0.1901148,0.331123,-0.35500228,-0.08173364,-0.65050006,-0.4260495,-0.08343842,-0.5558823,-0.6124105,0.022227913,-0.21492372,-0.7245077,0.61069757,-0.20896946,0.36624536,-0.057603538,0.6648975,0.5566574,-0.11508405,0.033213224,-0.25710624,-0.16268545,-0.4198037,-0.27572954,-0.58991396,-0.49759015,0.24313106,0.8861219,-0.12200518,-0.044109102,0.030422766,-0.21207339,-0.19233336,0.1278351,-0.1290129,0.23955292,0.17826265,-0.13147831,-0.59246296,0.4371229,0.10038623,-0.2134456,-0.68533945,0.26036906,0.75151086,-0.60231656,0.5643979,0.062606074,-0.052925695,-0.1146364,-0.44528684,-0.22127308,0.00410793,-0.1360017,0.418495,0.19131947,-0.7449574,0.3897023,0.49349257,-0.15530132,-0.7603115,0.36872518,0.11771836,-0.33088413,-0.18341233,0.5099108,0.22198138,0.06408258,-0.30942962,0.29452407,-0.60042477,0.17669332,0.19969012,-0.09312391,0.1749105,-0.05966716,-0.24701883,-0.871566,0.19064459,-0.4354827,-0.32157868,0.36877096,0.2007487,0.0890233,0.28987905,0.09176321,0.32877672,-0.35654363,0.041724283,0.04514667,-0.12173914,0.05157175,0.5590449,0.42399576,-0.4162412,0.4829462,0.1441608,-0.092072636,-0.058177266,0.065562576,0.43805486,0.18037221,0.4635517,0.18335718,-0.39647806,0.35830072,0.7270193,0.071824096,0.657927,0.063758686,-0.149167,0.23193675,0.15011825,0.37247905,-0.044581417,-0.43885136,0.10562298,-0.04227172,0.11744823,0.561641,0.06130379,0.31252712,-0.116896555,-0.18233806,-0.0071311328,0.4246913,0.04606086,-1.4123362,0.37561035,0.21093582,0.78734094,0.47328746,0.06743658,-0.012625412,0.53123224,-0.34939304,0.11378078,0.37488982,0.115909696,-0.4906751,0.58907694,-0.80549204,0.43607283,-0.18848382,0.045256093,0.04442452,-0.03837366,0.40497324,0.7986752,-0.294472,-0.13277385,-0.003020498,-0.30041146,0.26178595,-0.55122966,0.18634838,-0.43762875,-0.2600199,0.69263476,0.47071883,0.21503267,-0.11783059,-0.019294636,0.32671395,-0.15291633,0.24607235,0.07972148,0.37074307,0.11262767,-0.77100736,-0.11248383,0.5790918,0.031184983,0.2264447,0.1172038,-0.0073317396,0.19203645,-0.18217911,-0.3068171,0.025909217,-0.65933746,-0.036418077,-0.14631997,-0.5338722,0.4478029,-0.08569899,0.20865455,0.21907832,0.14349177,-0.5842356,0.4449755,0.40634328,0.80735105,0.025331628,-0.1498579,-0.30511138,0.40422526,0.213894,-0.20871258,0.088722095,0.14190464,-0.18688358,-0.6332073,0.46347344,-0.008648268,-0.5112232,-0.035800055,-0.018606352,-0.026931781,0.6074316,-0.15704943,-0.23474546,-0.2142151,-0.30385447,-0.11973849,-0.28828675,0.057625934,0.45949954,0.092384696,-0.08064684,-0.075134344,-0.19257064,-0.042638537,0.28458592,0.054537475,0.3889982,0.16543895,0.320696,-0.4603218,-0.032316554,0.14328885,0.4711354,-0.007454482,-0.13964592,-0.18128766,-0.37714452,-0.4272704,-0.3403527,-0.060503688,0.4162351,0.14301473,-0.53188986,0.83667094,-0.009855398,1.5860015,-0.027429072,-0.41459674,0.069860294,0.46145448,0.0303398,-0.09062099,-0.36096472,1.0655081,0.45485032,-0.08913514,-0.10706326,-0.3442911,-0.022877103,0.28141677,-0.2357166,-0.26736787,0.0654659,-0.5729899,-0.35201228,0.23847555,0.10568228,0.23345485,-0.08668468,0.14462478,0.4528902,-0.07457267,0.20214285,-0.2579117,0.0070317117,0.08927031,0.55907476,0.1922421,0.21746536,-0.32040396,0.20482731,-0.6043196,0.29969057,-0.23832059,0.22279096,-0.18374799,-0.2780632,0.23039566,0.2256353,0.34336007,-0.11803436,-0.2772967,-0.2872058,0.5445313,0.149614,0.1693268,0.5171899,-0.2269815,0.10867064,0.07964445,0.36966628,1.2094535,-0.15659322,-0.28913975,0.21186198,-0.34275487,-0.78169435,0.71196556,-0.20582256,0.080555275,-0.07529663,-0.21003947,-0.6280111,0.035168167,0.17832163,0.14405113,-0.05274652,-0.52393854,-0.21527953,0.40671146,-0.40782169,-0.2580354,-0.34588373,0.33675778,0.641065,-0.25918218,-0.44764307,0.06313198,0.21492763,-0.38456982,-0.34156856,-0.13438118,-0.32428697,0.36917618,0.013189032,-0.35209495,-0.02570163,0.11170135,-0.5009256,-0.010907552,-0.050153863,-0.36654797,0.28425053,-0.20538577,-0.19345473,0.881171,-0.43577853,0.33962205,-0.57301253,-0.6087043,-0.9006742,-0.28619346,0.50152326,0.110155724,0.06865611,-0.76885927,-0.11950963,0.0012985454,-0.27610666,-0.068011805,-0.4596344,0.43556643,0.09161677,0.46740168,-0.10518979,-0.73859316,0.28142184,0.3871132,0.108408906,-0.79859674,0.43480852,-0.095409326,0.87253875,0.020976108,0.06754325,0.5466861,-0.5822745,-0.0764109,-0.18734188,-0.24473582,-0.50628245,-0.098309346 -29,0.5744159,-0.09790284,-0.55421394,-0.1683615,-0.2648726,0.26215482,-0.19753933,0.40958047,0.092023775,-0.44664985,-0.23455903,-0.12578803,0.0384131,0.24484813,-0.22963113,-0.6725585,-0.055940293,0.11572716,-0.6871136,0.8115297,-0.26072496,0.42531446,0.021241415,0.23742571,0.26813465,0.45229656,0.23828085,-0.14853774,-0.22807698,-0.14648134,-0.1436432,0.0065196957,-0.70229495,0.18850201,-0.3655627,-0.40713978,-0.06434706,-0.38269722,-0.40180147,-0.72350675,0.34052306,-0.87881786,0.5057091,-0.084097326,-0.15656327,0.27498242,0.1891109,0.29438117,-0.2746287,0.039723083,0.095978394,-0.110002734,0.100569755,-0.31869775,-0.20522644,-0.6306572,-0.52303267,-0.008149825,-0.6055975,-0.1740463,-0.3201133,0.11823083,-0.32354546,-0.0249599,-0.20497847,0.43016815,-0.4929767,0.13030136,0.06072314,-0.03631465,0.018814623,-0.60738707,-0.14245644,-0.100514695,0.22018415,0.0009253491,0.041552994,0.41139212,0.0596105,0.35528964,0.13987124,-0.16265768,-0.3218314,-0.17135724,0.16364677,0.33969855,-0.08154678,-0.50712115,-0.0865281,-0.010594089,0.3926535,0.23378244,0.20662323,-0.09890978,-0.10714811,-0.25925764,-0.20878312,0.3775727,0.6402408,-0.34875554,-0.292153,0.3544448,0.4710644,0.1613015,-0.2617832,-0.023894455,-0.105562255,-0.35734582,-0.08306942,0.32009047,-0.21010646,0.57049155,-0.13202843,0.22448564,0.60844254,-0.2862261,0.18840125,0.028620707,0.023675889,-0.061725415,-0.053027548,-0.1761077,0.14778145,-0.46400076,-0.004240334,-0.41206828,0.70929974,0.14686742,-0.579638,0.2333138,-0.53263193,0.1749071,0.132403,0.49110177,0.6142393,0.5283506,0.08545785,0.7442268,-0.17940079,0.10802376,-0.2091618,-0.25642926,-0.051586434,-0.12388077,0.033329014,-0.4090625,0.15431897,-0.009995684,0.009792827,-0.12339948,0.5267654,-0.46004254,-0.11653754,0.064335935,0.84149235,-0.28758538,-0.03400603,0.86607003,0.99429345,0.90296096,-0.009388866,1.1724836,0.24720539,-0.3102001,-0.0067176875,-0.3121172,-0.5984019,0.23785692,0.26789325,-0.032049023,0.45874882,0.102435976,-0.059204705,0.13586293,-0.44916546,0.042741872,-0.2804394,0.15959755,0.11966482,0.06637788,-0.22727232,-0.41936842,-0.03456437,0.058737718,0.30598336,0.19424406,-0.19901402,0.34440643,0.011082216,1.4641355,0.08523446,0.1605477,0.14107452,0.6346773,0.23018546,0.029246137,0.058116626,0.3583579,0.3758874,0.030453138,-0.5980985,0.030075844,-0.39719605,-0.6095215,-0.101719245,-0.44477683,-0.21052247,0.047362637,-0.45798457,-0.16500238,-0.0869796,-0.25692296,0.34427506,-2.5531127,-0.047839973,-0.22311138,0.402188,-0.40633088,-0.2718544,-0.27866927,-0.5206853,0.5026214,0.34164995,0.5232915,-0.57305676,0.41660953,0.45571324,-0.5682707,-0.011484478,-0.4802763,0.020113457,-0.0022611134,0.5768044,-0.22114411,-0.07461503,0.17072117,0.08562957,0.5370342,0.0092378,0.09751486,0.30371562,0.41307297,-0.010393687,0.42454842,0.06465247,0.45188767,-0.37835938,-0.09852403,0.36341703,-0.43986052,0.31188822,-0.18103155,0.15362898,0.46866956,-0.68916094,-0.8331274,-0.6201391,-0.08117978,1.0582143,-0.36809987,-0.5427731,0.08456972,-0.17273876,-0.11008296,-0.2046771,0.4694187,-0.08991389,0.021626767,-0.6363493,0.054593384,-0.13220479,0.22036918,0.01674755,0.17430201,-0.43593526,0.842561,-0.117799416,0.5408988,0.13312505,0.31444886,-0.29722726,-0.53665733,0.17898935,0.8538726,0.56333095,-0.03510427,-0.26034814,-0.34888554,-0.3329161,-0.21647383,0.16753718,0.634409,0.5942228,-0.07923269,0.060817048,0.33592716,-0.11626683,0.23576143,-0.18975443,-0.3264981,-0.2517693,-0.11924501,0.5794481,0.5410691,-0.1653737,0.42858443,-0.063068464,0.41811132,-0.24440287,-0.44171214,0.5490304,0.9130514,-0.19149102,-0.29758346,0.37173903,0.6389213,-0.28785887,0.47657582,-0.6360769,-0.5349165,0.48864096,-0.2489284,-0.33700654,0.34642467,-0.25868985,0.03242874,-0.72778934,0.23662251,-0.4079227,-0.3021109,-0.50267595,-0.08504318,-3.1597936,0.12078377,-0.2779001,-0.19326311,-0.26612675,-0.2636682,0.036149852,-0.6133582,-0.5153544,0.09645416,0.110870756,0.7213057,-0.08198837,0.19485635,-0.17638269,-0.34815466,-0.39475608,0.24033971,0.094455175,0.36793527,-0.29423028,-0.34256607,-0.028710939,-0.12822834,-0.31266242,0.09664756,-0.4629543,-0.4011916,-0.22958098,-0.47160512,-0.29738516,0.56732935,-0.1666942,0.12536037,-0.22707573,-0.01912713,-0.1448375,0.27891564,0.15584953,0.19398257,0.22028983,-0.106274545,0.17669848,-0.3260791,0.37020564,0.05245735,0.44657716,0.38098305,-0.25662446,0.13395679,0.32606336,0.48104817,-0.035317674,0.7280476,0.29335067,-0.14344402,0.40435958,-0.22154075,-0.3392939,-0.6309518,-0.23470402,-0.06026779,-0.29263127,-0.51965255,-0.15402302,-0.40852857,-0.9151324,0.40174535,0.012878362,0.3049563,-0.10845996,0.3253683,0.62937045,-0.09943694,0.00856561,0.025766125,-0.09156157,-0.3646437,-0.25221884,-0.7182406,-0.35872364,0.05774278,0.8773619,-0.17359942,-0.15120785,0.027642554,-0.16672355,0.0656967,0.10478336,0.17947812,0.101414986,0.49520248,-0.09903254,-0.62746316,0.6930982,-0.13900742,-0.29608464,-0.4424552,0.2924911,0.56824255,-0.637893,0.43693265,0.42936626,0.017831698,-0.19102004,-0.42065272,0.035866737,-0.11581834,-0.22078091,0.27575678,0.19212219,-0.60600454,0.34250057,0.03635747,-0.2708059,-0.79037833,0.738502,0.013775978,-0.49133506,-0.00916183,0.39333084,0.09274116,-0.052039005,-0.25562587,0.114145756,-0.49168935,0.29953495,0.25047186,-0.042145543,0.4522718,-0.20316423,-0.2915387,-0.66703415,0.17639719,-0.51595855,-0.29639345,0.40503353,0.20559666,0.11021086,0.05073971,-0.07771613,0.46953404,-0.3407281,0.2251516,-0.07676817,-0.17283991,0.4330901,0.31574598,0.5156256,-0.54800016,0.6909579,0.010209076,-0.13680412,0.24205515,0.26681858,0.33195764,0.09325464,0.35948545,0.20495936,-0.22236544,0.3024519,0.6293278,0.41594136,0.48167706,0.20272443,-0.31202677,0.41883734,0.09396481,0.12332369,-0.059159167,-0.48932582,-0.118491374,0.0063813105,0.085347846,0.37372434,0.13409507,0.401506,-0.12492572,-0.0015756972,0.013391927,0.26898646,-0.21325895,-1.1916925,0.25694564,0.2077755,0.8518598,0.39436305,0.024672203,-0.0328791,0.64164674,-0.17704707,0.09860278,0.29378107,0.065196134,-0.458135,0.50905645,-0.48178786,0.5346061,-0.031466864,-0.03642783,0.051850572,0.1515153,0.30376762,0.87756926,-0.14797544,-0.06619862,-0.06424546,-0.4119777,0.16204911,-0.25724438,0.1341558,-0.51290596,-0.3051368,0.66980284,0.27581596,0.32045454,-0.05066841,-0.036593728,-0.034031242,-0.16721883,0.23529255,0.13282569,0.25938845,-0.04483951,-0.6836552,-0.3571536,0.4477994,-0.47411713,0.16561209,0.24199533,-0.31804365,0.2512575,-0.04969371,0.06535293,0.0034987405,-0.6967466,0.10467811,-0.24287811,-0.25426722,0.40915334,-0.24594818,0.38931853,0.24809873,-0.120209165,-0.4356076,0.1874885,0.22855724,0.62589246,-0.1719127,-0.31069613,-0.54380673,0.15709792,0.26816052,-0.36411265,0.09781337,-0.1422973,0.16092384,-0.5954881,0.43418792,-0.1002334,-0.20240499,-0.034976337,-0.28084984,-0.14655896,0.6153487,-0.11250268,-0.07788108,0.04916017,-0.030513633,-0.37842193,-0.20110178,-0.17228304,0.12347555,0.38468456,-0.07670036,-0.16161981,0.031546637,0.13366266,0.4559651,0.027771037,0.39855057,0.3379988,0.14583525,-0.42796266,-0.0014965683,0.29651555,0.36059487,0.09363204,0.072066024,-0.26613536,-0.5592104,-0.39058292,0.24850105,-0.16291656,0.14879975,0.26310825,-0.19931722,0.80401146,-0.07966313,1.1766536,0.12766692,-0.33805364,0.15914671,0.53908885,0.077986315,-0.022253968,-0.26681197,1.1565449,0.62619704,-0.031727474,-0.14046039,-0.32712793,-0.024614174,0.088936485,-0.3027189,-0.21607696,0.1192311,-0.39600798,-0.36531776,0.08488563,0.23857999,0.100313246,-0.1361376,-0.015518751,0.322354,0.20536794,0.39785528,-0.530894,-0.4461704,0.35172474,-0.035701994,-0.024977867,0.24181922,-0.41807166,0.39933145,-0.6495377,0.011697687,-0.20173678,0.1166365,-0.018594094,-0.27377838,0.30085656,-0.001199156,0.40348792,-0.4807366,-0.4582705,-0.2855623,0.44581193,0.09510201,0.17493072,0.5682482,-0.23415598,0.0751726,-0.060146663,0.6412414,1.1378777,-0.15184063,-0.066187166,0.35175028,-0.50980365,-0.7438508,0.15178552,-0.34074843,0.249271,-0.090973966,-0.3368545,-0.44955567,0.37673336,0.14195056,0.022712998,0.065280706,-0.73647845,-0.29930204,0.34578,-0.3135044,-0.20869699,-0.32115528,0.20399533,0.75650513,-0.27666384,-0.26400182,0.060457934,0.21063331,-0.19593516,-0.7663936,-0.0932837,-0.33568716,0.26801473,-0.073284864,-0.22429562,-0.13768338,0.18954125,-0.42865294,0.19787735,0.05262795,-0.32212967,-0.06897758,-0.31791127,-0.009855837,0.81296587,-0.24033685,0.11804302,-0.41775045,-0.46212247,-0.88625515,-0.39096665,0.1944967,0.15217906,0.11480258,-0.6660136,-0.038354486,-0.108418405,-0.038773514,-0.08538851,-0.3140606,0.37159172,0.24407232,0.33503798,-0.12356556,-0.8611858,0.26375273,0.057287727,-0.23886296,-0.5747103,0.48290324,-0.2137884,0.76281774,0.15520063,0.044866726,0.30768338,-0.68916786,-0.030777976,-0.23173173,-0.08560411,-0.6965866,0.15317607 -30,0.6006928,-0.10688633,-0.49413982,-0.06441079,-0.2945624,0.23441546,-0.07499377,0.28999996,0.15501894,-0.43251368,-0.081774354,-0.45338133,0.07418711,0.36142144,-0.11166052,-0.7536372,0.07599913,0.0011825593,-0.444402,0.29084983,-0.63772386,0.5179695,0.16554287,0.3566663,0.025081413,0.32188708,0.4146717,-0.14041202,-0.32087135,-0.03074945,-0.24004248,-0.012706531,-0.6421525,0.16519149,-0.09945739,-0.34491467,0.19587454,-0.29967874,-0.32430577,-0.65329593,0.3294694,-0.90428257,0.54820544,-0.11558525,-0.3484826,0.14694177,-0.0052029747,0.20319669,-0.255848,0.221103,0.21439679,-0.19143997,0.17848735,-0.2498167,-0.38367516,-0.81618446,-0.52388316,0.089355685,-0.5869852,-0.3002959,-0.20958737,0.13558571,-0.29581514,0.07253994,-0.2571884,0.20091756,-0.39902538,-0.07161212,0.28828502,-0.20783755,0.27687374,-0.47189403,-0.2728022,-0.15162088,0.11615318,-0.031227171,-0.11398705,0.23153333,0.39818463,0.57821476,0.022366693,-0.1272694,-0.3307299,0.066077836,0.0904338,0.5266958,-0.090655975,-0.23578055,-0.27665013,-0.025320102,0.06713048,0.23206258,0.15965824,-0.27546674,0.061942883,0.13165227,-0.16853735,0.25188166,0.44468045,-0.4729219,-0.34927347,0.31871754,0.42123017,-0.004200446,-0.125487,0.1896862,-0.052557807,-0.39450374,-0.22506222,0.10213431,0.038832102,0.69498813,-0.23461042,0.28719667,0.8836273,-0.15312505,0.09019459,-0.26758868,-0.09658863,-0.18391813,-0.20024745,-0.024651978,0.16077396,-0.5030282,-0.12475014,-0.24545029,0.68647194,0.27441138,-0.73432785,0.53136504,-0.41952613,0.078395806,0.017163265,0.5310008,0.6038702,0.28276962,-0.03189529,0.82426065,-0.69061035,0.037281815,0.019663854,-0.5006337,0.16170362,-0.15836655,0.011091626,-0.4478652,0.016609043,0.35902682,-0.08262955,-0.102249615,0.5083223,-0.43159994,0.05451485,0.009801371,0.7443829,-0.45299658,-0.039199267,0.69291633,1.0230974,0.93979305,0.04366644,1.4686047,0.3801988,-0.2715945,0.2550426,-0.32173678,-0.4899893,0.13860722,0.35663518,0.06445738,0.5150198,0.20298174,0.063416526,0.3613663,-0.03294858,0.18117552,0.019543082,0.10386232,-0.09164281,-0.20596576,-0.5265542,-0.22363193,0.08608309,0.07203746,-0.025351439,0.21320646,-0.07692466,0.43142954,0.04702591,1.6320819,0.021734532,0.1364189,-0.025437614,0.43305963,0.24961351,-0.119973324,0.03914719,0.3060997,0.25772378,0.20343426,-0.44062838,0.040909015,-0.34271878,-0.670788,-0.19818117,-0.3717751,-0.07878236,-0.3037128,-0.44902828,-0.119261675,0.14976296,-0.26172093,0.35031253,-2.4059575,-0.24781418,-0.19305588,0.27042264,-0.25850406,-0.3598462,-0.15349343,-0.4226834,0.23829386,0.555472,0.30440548,-0.6397658,0.32650405,0.42332092,-0.25248918,-0.12596463,-0.5753387,0.10080033,-0.09730746,0.52283037,-0.10307374,-0.29117158,-0.16229096,0.19791731,0.5911671,-0.07074937,0.029045863,0.051700424,0.56853646,0.10534304,0.49198195,0.21443565,0.5830361,-0.13726558,-0.027040413,0.45099968,-0.43579182,0.3790421,0.19118237,0.31082115,0.39597702,-0.47671032,-0.7733465,-0.62054175,-0.44294786,0.98146206,-0.24391924,-0.2539113,0.24177636,0.1384701,-0.31729418,0.006091501,0.34863234,-0.016410617,0.16404614,-0.69865125,-0.044793207,-0.0091720475,0.10890127,-0.068491675,0.15432368,-0.32806876,0.84437543,-0.084585674,0.33667263,0.33621174,0.14872313,-0.1645688,-0.4373564,0.06477077,0.95180935,0.3659865,0.16422436,-0.09416355,-0.16981871,-0.27923837,-0.19994502,0.15802662,0.3996969,0.91016906,0.07704631,0.06120686,0.2177564,-0.047386955,-0.000105016996,-0.049376708,-0.25141332,0.12403696,0.047732983,0.5455161,0.5990757,-0.32711536,0.57530296,-0.2726638,0.38551715,-0.25924832,-0.48589203,0.5045668,0.826435,-0.13701849,-0.15479292,0.43820468,0.34961602,-0.5911363,0.408305,-0.67115974,-0.32669702,0.5824762,-0.0548835,-0.4048303,0.23474261,-0.3329951,0.08600301,-1.0271772,0.35276487,0.077532835,-0.4609875,-0.5610291,-0.40432927,-4.1246705,0.2703495,-0.14269552,-0.0680794,0.019121503,-0.091437526,0.4091352,-0.63010776,-0.48075143,0.021647532,0.013825849,0.46166798,0.028751865,0.304882,-0.32123303,-0.23593284,-0.30224958,0.28580198,0.085752174,0.19836392,-0.02115637,-0.4712453,0.08438688,-0.42580646,-0.46904278,-0.05010116,-0.63487667,-0.6722849,-0.23773922,-0.45917624,-0.33896974,0.78195524,-0.28552586,-0.0013313422,-0.20256522,-0.10260092,-0.33591548,0.45201278,0.20700522,0.010908501,0.013826191,0.07922374,-0.16530713,-0.42869553,0.08727193,0.133198,0.4529598,0.5254869,-0.2883322,0.11863935,0.5245459,0.63460255,0.07172942,0.6094863,0.02503115,-0.12136246,0.54059595,-0.26256764,-0.15094145,-0.8923129,-0.45611617,-0.2795362,-0.46454543,-0.67501587,-0.17228372,-0.44664547,-0.6639053,0.38937193,-0.011159931,0.21346429,-0.1225301,0.33621305,0.3638453,-0.25459695,0.027441934,-0.13799122,-0.20675816,-0.56917673,-0.6061548,-0.71527374,-0.7184211,0.27873355,1.045796,0.14293922,-0.24383494,-0.021313688,-0.21181181,0.03997113,0.03396118,0.21457945,0.054972004,0.21182741,-0.18006866,-0.80496204,0.56448233,-0.1533042,-0.08515438,-0.49469835,-0.16623004,0.73662347,-0.67119884,0.48063496,0.38970646,0.32166514,0.21992,-0.3936875,-0.256219,0.06829495,-0.3106053,0.60545814,0.110839896,-0.5749394,0.40883902,0.29162937,-0.18398547,-0.5372733,0.5374187,0.018655747,-0.14791791,-0.032980423,0.28607056,0.08738078,6.75789e-05,-0.21324894,0.21139245,-0.70897704,0.11317098,0.599266,0.20798732,0.47680953,0.064144276,-0.22059014,-0.7145678,-0.10327201,-0.30089423,-0.27577248,0.073959045,0.114038095,0.081774995,0.18465273,0.12675597,0.41558543,-0.31956932,0.1483845,-0.03135899,-0.2204094,0.30464193,0.43746594,0.24111702,-0.56324947,0.51355237,0.025010195,-0.00048179287,0.008112745,-0.070702784,0.40945253,0.4590457,0.26128218,0.1351373,-0.18648104,0.268766,0.8487711,0.23471001,0.5942424,0.36526388,-0.35763255,0.32085112,0.2613184,0.16742636,0.043285284,-0.33405206,-0.0578238,0.13464276,0.14404763,0.37106514,0.006159625,0.22204264,-0.14101999,-0.052662116,0.29728666,0.2531406,-0.05037439,-0.7785197,0.15709604,0.34784827,0.55381215,0.46545115,-0.0501476,0.016198397,0.30153367,-0.3640799,-0.0044020116,0.32592422,0.0047573745,-0.60852915,0.61241245,-0.5079355,0.28935385,-0.2595999,-0.085712746,0.075257145,0.13403033,0.381243,0.9763192,-0.092093,0.111764774,-0.029221764,-0.22070177,0.050676007,-0.36787072,0.19032525,-0.31926784,-0.15190646,0.71175236,0.4169676,0.19513796,-0.26824397,-0.0875288,-0.10228548,-0.19570288,0.21899302,-0.050325412,0.02776211,-0.079481244,-0.7414235,-0.41717646,0.51341057,0.09745181,0.08739101,0.120162725,-0.56235397,0.28337446,-0.11674092,-0.022633774,0.10247086,-0.69303674,-0.006231887,-0.29170135,-0.746191,0.46117878,-0.037358005,0.27225068,0.20569253,0.056840513,-0.31894502,0.07732073,0.15462759,0.7523497,0.118064865,-0.21500123,-0.3332835,0.08337886,0.37893677,-0.41075334,-0.13566348,-0.2841982,0.25491706,-0.5260012,0.5534271,-0.018343465,-0.19192187,-0.052622862,-0.09465032,-0.0039540743,0.38201657,-0.30945402,-0.20192309,0.07442601,0.22828959,-0.18192804,0.037938815,-0.40327936,0.2526668,-0.07681892,-0.21099462,0.113866374,-0.017918918,0.07582295,0.35976407,0.17752664,0.1283574,0.36080816,-0.09332293,-0.5738565,-0.02577568,-0.067412145,0.40150753,0.13718398,0.0182227,-0.19785751,-0.48970526,-0.31420583,0.29128674,-0.10812374,0.06794979,0.2097074,-0.49230507,0.8347894,0.1563326,1.3359861,-0.0043760412,-0.3595415,0.010013374,0.52335155,-0.023577392,0.04733525,-0.5014896,1.111799,0.73496526,-0.26971865,-0.28771666,-0.25297302,-0.3001716,0.29070514,-0.3739784,-0.21293034,-0.1474093,-0.87252873,-0.15369532,0.106773816,0.27148834,0.0821531,0.094385706,0.19515644,0.094957605,0.081167884,0.5274069,-0.5070572,-0.3660093,0.30957475,0.24706706,-0.05299244,0.07400077,-0.36553958,0.5613612,-0.67820674,0.23547387,-0.46326584,0.0008402414,-0.07905274,-0.34257698,0.17781855,0.089306906,0.28978327,-0.3388324,-0.44426018,-0.37962002,0.5623307,0.14693488,0.3655715,0.66714907,-0.22680569,-0.108647786,0.1264594,0.43993086,1.4901068,0.11463,0.01524743,0.43982127,-0.42348367,-0.7125142,0.21760818,-0.40923148,0.17579456,-0.23471282,-0.48534697,-0.44744393,0.3787591,0.19227907,-0.13117419,0.08477032,-0.40279183,-0.18935399,0.46396634,-0.39492205,-0.38923666,-0.26267532,0.34842375,0.7439321,-0.489652,-0.20433614,0.007574635,0.32951242,-0.520696,-0.5563797,0.0138520645,-0.2565636,0.6762414,0.14472191,-0.3162977,0.11682414,0.1773746,-0.36733222,0.183864,0.46850678,-0.50354934,0.10321976,-0.3790032,-0.28443798,0.94433147,0.18197997,-0.08689395,-0.77566147,-0.52479017,-1.0790188,-0.500684,0.24289453,0.14445837,0.044576194,-0.39137763,-0.08832477,-0.08532737,0.07760058,0.069234185,-0.47476482,0.38672796,0.09852003,0.6502868,0.0031604257,-0.9152109,-0.10120205,0.24372236,-0.26621392,-0.58806133,0.64473474,-0.24310233,0.63515484,0.11592587,0.15889981,0.24848118,-0.6396095,0.3294828,-0.34989622,-0.08213004,-0.7257305,0.05420339 -31,0.31048667,-0.10620646,-0.43306655,-0.07459927,-0.084665075,-0.07329586,-0.036448937,0.66060644,0.11307001,-0.4009104,-0.2172517,-0.04182216,-0.11888974,0.3269131,-0.10886268,-0.5626508,0.04775403,0.24373667,-0.26704615,0.53778845,-0.5269705,0.31245878,-0.09446066,0.28244054,0.1566603,0.24376538,0.034906182,-0.2556794,-0.04942077,-0.020513095,-0.28405496,0.48953453,-0.24319752,0.1697537,0.062232018,-0.43103904,-0.053031147,-0.33180904,-0.2597936,-0.66273755,0.30614457,-0.6524192,0.36309943,0.04203038,-0.26058123,0.28102958,-0.1514251,0.2613171,-0.25204355,-0.042181905,0.18388234,-0.0041315374,-0.04044273,-0.17672116,0.000728676,-0.3130566,-0.60890764,0.037704222,-0.33860096,-0.072922915,-0.19122054,0.2262631,-0.4349473,-0.073385656,-0.034021184,0.2518096,-0.49111477,-0.13807756,0.074455746,-0.12351648,0.18912107,-0.6992185,-0.18346503,-0.080519564,0.2783241,-0.25496185,-0.09313573,0.28688976,0.33782637,0.45568582,0.034244403,-0.118241236,-0.34365135,0.044199586,0.03920004,0.56501114,-0.28686675,-0.4955831,-0.069548495,0.03386061,0.20269328,0.06954607,0.019477112,-0.22494048,-0.21987642,0.1345054,-0.29202312,0.1768855,0.46727446,-0.31795886,-0.40202862,0.43865788,0.4968882,0.09849807,0.007129527,-0.041935984,-0.064931326,-0.51817703,-0.111521214,-0.03885408,-0.2711723,0.41249827,-0.13947247,0.30664366,0.6425603,-0.029578106,0.19067171,0.073547766,-0.044892542,-0.123038374,-0.18952698,-0.19432674,0.19635841,-0.31933162,0.2392485,-0.08249296,0.8754123,0.10665776,-0.8502891,0.4371739,-0.45928568,0.11494963,-0.16940263,0.6107556,0.6299442,0.2715285,0.32287452,0.711774,-0.5411045,-0.0070535955,-0.022151526,-0.40596676,0.05750055,-0.011247997,-0.13573067,-0.5496175,0.041142646,0.21501541,-0.0443699,0.1961352,0.32467046,-0.7207912,0.016200492,0.08785884,0.62642914,-0.35699588,-0.10854261,0.66090554,0.9267251,0.9473975,0.01417704,1.0756857,0.17708237,-0.23286861,0.39730138,-0.5739218,-0.6774404,0.28086793,0.49426872,-0.27890572,0.18728957,0.13954374,-0.059439227,0.45722425,-0.31865945,-0.006955367,-0.1908851,0.103984304,0.034122773,-0.108686246,-0.4605474,-0.3878763,-0.1644825,0.047114868,0.08320796,0.32396692,-0.24171709,0.30475932,0.04392262,1.7237017,-0.052232977,0.13020031,0.08774216,0.4187489,0.09595155,-0.100284494,-0.12795907,0.2995996,0.4238053,-0.074142985,-0.56637335,0.10698596,-0.23470682,-0.5195599,-0.060833566,-0.18664446,-0.04583809,0.21551976,-0.37416604,-0.17686209,-0.12704149,-0.3665894,0.46886066,-2.7415936,-0.18990429,-0.095249385,0.30323452,-0.29480854,-0.44365087,-0.20992014,-0.46782523,0.38270232,0.34607476,0.6006203,-0.6506639,0.28463882,0.25597918,-0.4890142,-0.14415498,-0.609332,-0.0653766,0.0077126324,0.18758829,-0.012049641,-0.010434077,0.12888822,-0.13586973,0.4087491,-0.005258496,0.0021861035,0.36493367,0.24697652,0.2720209,0.2810224,0.06752586,0.5375691,-0.17652358,-0.18744189,0.22493964,-0.28788865,0.2727771,-0.1978896,0.1971711,0.36541304,-0.47643808,-0.85593927,-0.6110642,-0.35782588,1.3478355,-0.17900573,-0.24885274,0.40505356,-0.14251786,-0.17306818,-0.18790714,0.38401905,-0.2851477,-0.2781464,-0.80570644,0.044146802,-0.1547702,0.15542994,0.05647478,-0.17436275,-0.440928,0.55306286,-0.09200318,0.49871862,0.3266307,0.19450632,-0.14478253,-0.4168206,0.014283139,0.9095836,0.3090304,0.13820376,-0.105058596,-0.11116375,-0.34789017,-0.0927521,0.16725841,0.35209173,0.7143848,0.058304913,0.06300401,0.36993012,0.116984025,0.063329026,-0.1597642,-0.28377318,-0.091657594,0.133806,0.58757615,0.6074486,-0.2869902,0.42948583,0.002720505,0.09316723,-0.120137945,-0.43952164,0.52762944,0.7814733,-0.1563507,-0.14028165,0.5653969,0.46006715,-0.13507722,0.40602794,-0.55352455,-0.25317866,0.36457494,-0.2837098,-0.35341975,0.09725877,-0.2899316,0.17675558,-0.85227054,0.25382447,-0.2546409,-0.5045651,-0.51367015,0.10112997,-3.304197,0.16927901,-0.39402443,-0.26400656,-0.053755715,-0.13600144,0.18930772,-0.7293738,-0.48324382,0.14325103,0.17252067,0.55524296,-0.0537987,0.011864474,-0.22251384,-0.20384462,-0.308544,-0.010918226,-0.036055896,0.36087814,0.22751379,-0.41807276,0.0632091,-0.05975948,-0.3256709,0.16466564,-0.4642343,-0.3900797,-0.11953438,-0.643815,-0.33055422,0.64122295,-0.46862543,0.036474757,-0.181382,-0.030247826,-0.18130316,0.4027712,0.053673822,0.068799935,-0.01667592,-0.011512073,0.02646779,-0.2413315,0.3645108,0.07379744,0.28743884,0.47753188,-0.21264221,0.16710363,0.60392773,0.6013372,-0.15965725,0.8493821,0.62031007,-0.13923874,0.17209934,-0.31532687,-0.14370838,-0.5561427,-0.4368668,0.046089277,-0.36575463,-0.51183605,-0.074788816,-0.37529275,-0.861071,0.44238853,-0.035740294,0.24852313,0.066757694,0.04871972,0.47912973,-0.06694431,-0.005308094,-0.13448368,-0.034333073,-0.5410501,-0.20124197,-0.71806175,-0.42906114,0.26447916,1.0263127,-0.28746554,0.012653149,-0.035914037,-0.19176747,-0.08352533,0.017008957,0.00033389375,0.12551028,0.25257662,-0.16971834,-0.6700424,0.43491876,-0.017573697,-0.10962633,-0.4693437,0.11331771,0.44900066,-0.61955,0.49146733,0.24465129,0.0063371933,0.1289131,-0.5674319,-0.28378528,-0.13661817,-0.19279231,0.31535128,0.19924138,-0.5846806,0.32871932,0.4778088,-0.19617875,-0.74505985,0.33656073,-0.07333729,-0.19814745,-0.05614511,0.26511434,0.13001339,0.029774755,-0.08926841,0.062763676,-0.48240057,0.47800416,0.2014034,-0.106227785,0.38357055,-0.19749771,-0.0059010247,-0.78409857,0.039537787,-0.54539055,-0.15916674,0.16218534,0.19324173,0.14325362,0.047537234,0.113235064,0.38795426,-0.33052298,0.06855537,0.1841779,-0.12295132,0.14380725,0.39822945,0.490895,-0.3784663,0.47959086,0.034278784,-0.073494144,-0.23624101,0.041895024,0.45758745,0.09750286,0.24755408,-0.0842965,-0.32335502,0.31277892,0.82119113,0.25645673,0.35512277,-0.11884037,-0.12849572,0.16409056,0.03018298,0.17863399,0.13822904,-0.45940349,0.013636275,-0.054673985,0.23034628,0.58521944,0.17945395,0.2402013,-0.18499902,-0.3346391,0.06288996,0.2652082,-0.026159497,-1.02575,0.5343413,0.23924369,0.7463032,0.56620795,-0.006824136,0.02437046,0.5564226,-0.23558778,0.24084964,0.24897368,-0.13930959,-0.67954767,0.58633256,-0.73367023,0.3805677,-0.01681867,0.02831438,0.05583171,-0.14264415,0.28013825,0.66779834,-0.1243811,0.017676326,-0.093770236,-0.26548418,0.007778665,-0.3218052,0.039455533,-0.6060208,-0.12868546,0.5585175,0.5670863,0.27276012,-0.107374065,0.009425988,0.084981255,0.0065898667,0.068225734,-0.022133969,0.20508316,-0.06914335,-0.58175457,-0.26020917,0.47713497,-0.12736043,0.10922984,0.034789972,-0.21640676,0.19990891,-0.2865667,-0.14335938,-0.11090893,-0.45638335,0.13976619,-0.0991321,-0.21768573,0.43326595,-0.07685049,0.27831239,0.15647508,0.12271835,-0.16544344,0.26551467,0.06523712,0.70927644,-0.013705533,-0.20389582,-0.39984724,0.23875938,0.16286983,-0.06605658,-0.083276,-0.21557982,-0.10555197,-0.46222988,0.42678502,0.06779109,-0.128953,0.1211157,-0.11024336,0.020353535,0.49000877,-0.109716244,-0.104004435,-0.0005157819,-0.13824807,-0.26208827,-0.1168594,-0.25758365,0.19277433,0.2751846,0.0963976,-0.12170148,-0.12830596,-0.2556922,0.4391125,0.07968083,0.24618043,0.19373809,0.11488153,-0.27842748,-0.27273935,0.13410392,0.3099671,0.060526617,-0.11971072,-0.2725464,-0.43634585,-0.40185565,-0.011388989,-0.14009264,0.41585514,0.06239162,-0.24666539,0.55602705,0.14781228,1.132849,0.10471801,-0.2406524,0.026410818,0.46420103,0.054085713,-0.015901098,-0.28399214,0.985444,0.598481,-0.10371557,-0.10064106,-0.33350295,-0.1814134,0.30371284,-0.17318083,-0.047602296,0.052855697,-0.6520083,-0.42539388,0.2635824,0.2369776,0.010061349,-0.0005960831,-0.021422245,0.17270008,0.1644014,0.34199432,-0.42487213,-0.32672802,0.2802126,0.2168732,0.08003019,0.2625799,-0.3905669,0.45394972,-0.49174693,0.08313879,-0.22301127,0.13418953,-0.2634303,-0.27830505,0.23208585,0.09770254,0.43641666,-0.12436298,-0.38903776,-0.17983668,0.56037307,0.011439488,0.11045706,0.46960512,-0.34437975,0.0026392569,-0.028103847,0.3800138,0.98976034,-0.18473285,-0.029921012,0.49707538,-0.24903029,-0.5750439,0.3447884,-0.19535066,0.078778,-0.11357632,-0.2713374,-0.4221953,0.30634263,0.17647734,-0.032617502,0.105348736,-0.5061831,-0.23327112,0.13183784,-0.33438858,-0.2477464,-0.2686406,0.24754788,0.7320899,-0.50599515,-0.52091736,0.20702553,0.23194383,-0.13797016,-0.5570894,-0.02667305,-0.35838187,0.2564276,0.1950937,-0.37362245,-0.16594452,0.1725178,-0.3153196,0.10105069,0.2165533,-0.35104477,0.17630757,-0.33394983,-0.017677357,1.0238615,-0.2029683,0.2570713,-0.62549716,-0.3032159,-0.7943154,-0.50351244,0.6439517,0.2258091,-0.05943467,-0.66869164,0.16491161,-0.03569847,-0.16431347,-0.20659655,-0.3014818,0.4961856,0.14848047,0.277238,-0.10024214,-0.68718106,0.1386449,0.090445094,-0.0090891905,-0.5556902,0.45511377,0.054773487,0.8959325,0.12450691,0.046753485,0.22301282,-0.3330415,-0.060995534,-0.36472055,-0.28356007,-0.75547504,0.034269057 -32,0.4372309,-0.23207778,-0.5129313,-0.1505107,-0.3634494,0.22991809,-0.20210837,0.42830157,0.13887508,-0.44921246,-0.21464333,-0.24415077,0.050682355,0.27401868,-0.15017961,-0.37812823,0.0374734,0.23365864,-0.6975457,0.6355338,-0.31056368,0.14427702,0.18788977,0.33175665,0.23579076,0.12245113,0.17191654,-0.06309888,-0.08664267,-0.21743742,-0.34948164,0.22004306,-0.5177804,0.2804833,-0.23115024,-0.25012013,-0.038990825,-0.47206828,-0.40999436,-0.756197,0.24700302,-0.78854036,0.4353037,-0.20303614,-0.29390508,0.27218565,0.12297985,0.33031616,-0.11275032,-0.10072221,0.19491717,-0.23626986,-0.11313645,-0.13503897,-0.16626176,-0.42969012,-0.5224517,-0.050794378,-0.3405571,-0.24559972,-0.31661418,0.23586594,-0.2224473,0.12518609,-0.1300094,0.6589022,-0.4155468,0.22492318,0.2207923,-0.15420291,0.27590397,-0.69979304,-0.0258227,-0.10319634,0.27178735,0.06357276,-0.236632,0.3138563,0.31705773,0.3260627,0.08432958,-0.23138657,-0.28587154,-0.071928084,0.15571845,0.42014134,-0.05255979,-0.36748397,-0.14844249,0.022432012,0.21609217,0.15601234,0.1374452,-0.38278893,-0.10259365,0.09377084,-0.17703564,0.34630516,0.5432007,-0.28921926,-0.11883723,0.30603582,0.59142107,0.245034,-0.19415747,-0.14202738,-0.110766865,-0.51791596,-0.19859843,0.0520715,-0.27180564,0.60554236,-0.2252023,0.23310392,0.6609244,-0.080559984,-0.11082033,0.022976499,0.03607942,-0.1178181,-0.1990046,-0.12887916,0.16988936,-0.49232006,0.09014026,-0.1091098,0.75131094,0.13940585,-0.619661,0.19557634,-0.5455241,0.15753233,-0.016299518,0.4129727,0.6850104,0.5048944,0.21845385,0.6754938,-0.36893606,0.092702724,-0.059605733,-0.42031306,0.027477909,-0.2230806,-0.07632838,-0.6181169,-0.0045621274,-0.24601297,0.0642831,-0.032763507,0.5009018,-0.53682446,-0.11739376,0.06702504,0.81155324,-0.2941447,-0.035550874,0.6791706,0.8862041,0.96365243,0.04529369,1.0891742,0.20958701,-0.29116097,0.09191421,-0.15757328,-0.5334169,0.3759012,0.37447718,-0.03742246,0.14454725,0.022061951,0.08205789,0.4629951,-0.4660792,-0.045932673,-0.24005772,-0.054731622,0.11269383,-0.0950674,-0.43939856,-0.2863617,0.12859625,0.16398406,0.15905231,0.212034,-0.176273,0.49327126,0.23951003,1.5837617,-0.115931265,-0.021881377,0.14812535,0.25443166,0.19749963,-0.14307642,-0.043921556,0.3704277,0.4284556,0.124675386,-0.51894575,0.08929976,-0.27168787,-0.3806136,-0.18221422,-0.28426227,-0.15046415,0.11505049,-0.4963499,-0.18789458,-0.07483339,-0.28424478,0.37749383,-2.4825358,-0.1980811,-0.14580518,0.2926217,-0.21185361,-0.34600747,-0.0137704825,-0.5785228,0.31419253,0.30736163,0.3937756,-0.6629387,0.39200196,0.32618165,-0.64063597,-0.07039616,-0.56401914,-0.19529976,-0.027792852,0.42745212,0.073642105,-0.06735709,0.12693559,0.15384407,0.56446993,-0.09523867,0.10953885,0.4035327,0.43114972,-0.042142063,0.67469305,0.0016474864,0.58258194,-0.2733943,-0.18208002,0.43177256,-0.23982508,0.18164806,-0.09238567,0.14077498,0.5553805,-0.41662636,-0.7917117,-0.7547205,-0.16375701,1.2136562,-0.34062874,-0.4911096,0.27738336,-0.25323418,-0.25486034,0.00053487107,0.42825833,-0.08759057,0.0892176,-0.73456055,0.07579522,0.019897258,0.12278686,-0.06501098,-0.23633432,-0.44901434,0.850123,-0.069813296,0.4778953,0.31231117,0.18145242,-0.23211499,-0.5017984,0.08117761,0.8216889,0.48437595,0.042035,-0.27217236,-0.106719226,-0.3988256,-0.04959669,0.06303328,0.5284824,0.551958,-0.016870832,0.13909666,0.17864785,-0.016667321,0.057846792,-0.2878376,-0.2822064,-0.07948586,-0.13480723,0.55991215,0.52296734,0.010285179,0.43747845,-0.046397552,0.36134842,-0.105519526,-0.5781068,0.5203756,1.163941,-0.31076044,-0.32713172,0.40155298,0.3501656,-0.10142489,0.30780274,-0.56800795,-0.39739126,0.46387473,-0.19139859,-0.5054603,0.1376415,-0.25406107,0.15484998,-0.65780413,0.2388403,-0.16686596,-0.6132312,-0.59103405,-0.015613914,-2.618363,0.38196728,-0.28171706,-0.14879587,-0.27473024,-0.16369757,0.20415077,-0.43907714,-0.41536286,0.121916085,0.10547449,0.57459337,0.0040394417,0.09362882,-0.2507271,-0.22244097,-0.21851435,0.14629921,0.1417814,0.2892748,-0.15538353,-0.4770467,-0.030531565,-0.17608525,-0.45617104,0.122057706,-0.5933149,-0.4638554,-0.20812918,-0.29377383,-0.36030617,0.6431498,-0.3355685,0.09037874,-0.18767326,0.08472754,-0.06804906,0.15092103,0.032126665,0.12291039,0.03420359,-0.11086586,0.06835878,-0.3147095,0.24242058,0.07685274,0.18565477,0.22939374,0.0014640794,0.24064125,0.39038175,0.669186,-0.20855945,0.8898593,0.40895367,-0.022656789,0.23849061,0.0014334865,-0.31466457,-0.47804478,-0.1598322,0.17693797,-0.4778808,-0.37982392,-0.0045533846,-0.33525327,-0.64299005,0.47161236,0.0063450616,0.107324064,0.08658267,0.27231425,0.65518135,-0.36067355,-0.02890056,-0.05483272,-0.25032422,-0.54843646,-0.40890923,-0.66226006,-0.56220794,-0.041718878,1.0362958,-0.124124244,0.009864751,-0.09632212,-0.41621494,0.1186669,0.14626573,-0.059898887,0.1543822,0.46605104,-0.37966758,-0.6626912,0.53465796,-0.17702618,-0.15378545,-0.46670833,0.36055273,0.53733355,-0.4697307,0.37103873,0.33902308,0.039085872,-0.13136266,-0.45671934,-0.046575144,-0.11330163,-0.41373324,0.4336121,0.22091453,-0.68615997,0.4201279,0.14154473,-0.23235506,-0.7518496,0.45517564,-0.051991668,-0.2078114,0.06373639,0.34053254,0.102888905,0.009058364,-0.22853692,0.083572395,-0.46864423,0.29120955,0.22332497,-0.016565211,0.03726612,-0.2491993,-0.07850542,-0.762863,-0.042663552,-0.51625186,-0.2333469,0.2833715,0.11894145,0.18068157,0.15561472,0.10836558,0.39644387,-0.25721416,0.1192495,-0.10613086,-0.35016975,0.3929536,0.4469218,0.39430454,-0.40729463,0.62032557,0.0069580884,-0.16114286,-0.11448521,0.10618294,0.4325308,0.15273571,0.566653,-0.10944089,-0.16396742,0.33272237,0.72504807,0.24160983,0.456304,-0.029231261,-0.22024202,0.20223878,0.040100034,0.2293569,0.061372798,-0.6833876,0.037448674,-0.31754005,0.15502983,0.5512435,0.014491947,0.34024185,-0.075605296,-0.3451854,0.077381685,0.081993945,0.007827661,-1.2584392,0.27893564,0.2789406,0.9850306,0.33420476,-0.0710575,-0.071988575,0.67612857,-0.2161557,0.12997907,0.37593034,0.058791835,-0.3938042,0.4613928,-0.88495857,0.32565767,-0.13840127,-0.049393877,0.18373555,-0.0794754,0.35333234,0.82676625,-0.22808504,-0.01840937,-0.011549483,-0.3660257,0.30313376,-0.40847346,-0.014169665,-0.55022466,-0.45911705,0.5917398,0.5332233,0.3783074,-0.2701212,-0.025206698,0.042493347,-0.29556218,0.16564083,0.1548065,0.057649445,-0.13002479,-0.6600508,-0.100252464,0.38154423,-0.11325857,0.20652068,0.06807203,-0.05554557,0.15651251,-0.10561442,-0.006643085,-0.09870675,-0.67078537,-0.08005247,-0.28752196,-0.37321803,0.48800874,-0.1861383,0.14870773,0.25891447,0.07244025,-0.19772467,0.33313704,0.028238507,0.8264308,0.2508187,-0.063913696,-0.33727875,0.19175293,0.13191625,-0.21107608,-0.036088523,-0.28834558,-0.02081654,-0.54765767,0.39410916,-0.041887697,-0.3261172,0.13908708,-0.20577759,0.02602597,0.5462966,-0.08289389,-0.1237524,-0.101665616,0.1515426,-0.1366055,-0.22056001,-0.04140006,0.19711864,0.15398893,0.1519829,-0.10067034,-0.024199745,-0.2231038,0.42066544,0.04837872,0.44719034,0.38937074,-0.17898795,-0.32193998,-0.13345063,0.08851056,0.4714344,0.06821024,-0.1420807,-0.29474628,-0.45427394,-0.3461485,0.20626704,0.08931467,0.31220776,0.100829996,-0.1198665,0.77250093,-0.10880824,1.2134569,-0.021458037,-0.3274693,0.04608492,0.4564154,0.1434157,0.05657905,-0.3645843,0.6797279,0.39176413,-0.003673322,-0.1530489,-0.32853332,0.068508595,0.17834796,-0.11024614,-0.085930735,-0.06021137,-0.6271931,-0.3158404,0.19825335,0.2744836,0.24260625,-0.07190124,-0.01891003,0.40648124,-0.07214431,0.4169232,-0.42041454,-0.27650663,0.32009628,0.078518994,-0.1175519,0.1290759,-0.50484496,0.42856956,-0.45553732,-0.08358943,-0.29453874,0.10687768,-0.18396549,-0.2598697,0.3356949,0.011719002,0.40484804,-0.41253904,-0.22948326,-0.266443,0.5399789,0.24611795,0.20607425,0.5105691,-0.24131186,-0.05821434,0.080239184,0.45739326,0.93512744,-0.34914094,0.049264178,0.33422107,-0.45069516,-0.4922032,0.4337721,-0.25764504,0.071219206,0.15101063,-0.2413212,-0.31784552,0.35059014,0.24145225,0.02385176,0.053435177,-0.73151696,-0.08366235,0.5103437,-0.39650142,-0.15136904,-0.22479726,0.20644277,0.30537683,-0.3184487,-0.3697558,-0.048404194,0.26676154,-0.23331083,-0.51382536,-0.07814933,-0.34871554,0.25983062,-0.020900892,-0.27208203,-0.055889018,0.049219977,-0.46021965,0.20280018,-0.00094492995,-0.36238593,0.06063593,-0.1943345,-0.071788505,0.8236433,-0.20938133,-0.018123893,-0.4842232,-0.36455512,-0.73408824,-0.4004791,0.27898204,0.13023642,0.06344488,-0.6065912,-0.16745818,-0.17165983,-0.106663294,-0.06485026,-0.22826211,0.4298362,0.14943463,0.46884385,-0.0518118,-0.79008913,0.36228493,-0.011644781,-0.07216482,-0.51820487,0.51809543,-0.0728359,0.70607233,-0.0070755463,0.22243899,0.17298312,-0.45304725,-0.104519844,-0.23460996,-0.18912959,-0.70022684,-0.0013838691 -33,0.28611264,-0.045588456,-0.6601573,-0.09215849,0.01502285,0.17182139,-0.28146034,0.5144429,0.1307881,-0.40398115,-0.01702707,0.080952756,-0.1362218,0.21988402,-0.32696593,-0.51045316,0.085225396,0.06024388,-0.4507398,0.37343648,-0.42840952,0.24556476,-0.15114962,0.20053647,-0.12589838,0.1866342,0.23158763,0.09755587,0.1083341,-0.28990364,0.33914688,0.22611207,-0.66944337,0.27895048,-0.16447753,-0.28114033,-0.04250504,-0.3253732,-0.41118643,-0.7434131,0.26251376,-0.80922294,0.57306474,-0.007300817,-0.4036865,0.3960629,0.27352205,0.17598683,-0.1982103,-0.19060972,0.12017162,-0.06959026,-0.36240003,-0.16648835,0.035836086,-0.31589717,-0.48977518,0.06912727,-0.51924413,0.083594054,-0.39281705,0.20954292,-0.34718192,0.27014765,-0.24743032,0.36445755,-0.40498215,-0.14294931,0.16354752,-0.07992069,0.24678388,-0.44468027,-0.09214806,-0.063183576,0.23985913,-0.005330966,-0.061941784,0.2614406,0.12711391,0.42164236,-0.21329951,-0.103898875,-0.20159823,-0.16293874,0.118529126,0.48422697,-0.24470761,-0.2721905,-0.045822464,-0.09691242,0.3343837,0.09299052,0.08816891,-0.07535825,-0.0670793,0.12471198,-0.3790386,0.32831118,0.56543547,-0.36253107,-0.015282675,0.4658937,0.58446014,0.06528182,-0.03510295,0.15426,-0.06469373,-0.44464457,-0.23324347,-0.1398413,-0.1818534,0.4769315,-0.048241753,0.2881418,0.53575224,-0.15598583,-0.035003994,0.3157097,-0.0058813393,-0.014187849,-0.18061253,-0.23678383,0.2432748,-0.43266723,0.05841944,-0.23979566,0.6204436,-0.12645718,-0.73466784,0.4244614,-0.3720559,0.086979166,-0.046212114,0.63678837,0.7175791,0.63606507,0.1369082,0.8789259,-0.5273823,-0.21464072,-0.06707467,-0.28374243,0.35783678,-0.18601784,-0.023608737,-0.34867877,0.004530797,0.2982055,-0.05982646,0.18749124,0.28410432,-0.44576278,-0.10623335,0.08187667,0.62176216,-0.20792459,-0.024132691,0.74692374,1.3533758,0.93867743,0.19196051,1.0001153,0.055497758,-0.085206784,-0.20148802,0.14612073,-0.9781651,0.2501458,0.37303,0.09362502,0.2853468,0.116137706,-0.10411307,0.44417593,-0.5178217,-0.24676356,-0.0016232178,0.53288436,-0.09728925,-0.24965762,-0.3701896,-0.15999912,0.29245317,0.06642214,0.17986466,0.37090585,-0.22970611,0.32868415,0.24454531,0.8591039,-0.059876613,0.13928157,0.20439078,0.28538805,0.13464016,-0.23944512,-0.003264913,0.152076,0.26757532,0.15720709,-0.54369134,0.11505875,-0.13762699,-0.4311489,-0.1567865,-0.31102097,-0.01639534,-0.21851608,-0.25807902,-0.21924207,-0.23330887,-0.31791827,0.3418915,-2.8365176,-0.17486414,-0.21680523,0.2766635,-0.074659035,-0.13613781,-0.038594764,-0.43278176,0.4331096,0.42473084,0.42458266,-0.5519305,0.48033333,0.45160118,-0.4625196,-0.007640288,-0.54483443,-0.02424867,-0.027342508,0.3724176,0.18472229,-0.1771319,0.008350221,0.2899283,0.3885584,0.022887945,0.14240576,0.30345872,0.3403301,-0.17648305,0.27566078,-0.17261837,0.49374706,-0.37120965,-0.18584412,0.322069,-0.69978994,0.24632171,-0.3363897,0.13566203,0.24633066,-0.38817802,-0.841179,-0.5516461,-0.1556007,1.5492821,-0.27018026,-0.6597185,0.107868195,-0.14285852,-0.352762,-0.04053569,0.3674578,-0.2718611,-0.0340203,-0.85749656,0.08166012,-0.34396964,0.28054315,-0.165074,-0.049698435,-0.53196084,0.65931916,-0.0901425,0.6709953,0.2916733,0.12800075,-0.42993638,-0.30157697,-0.011465659,1.0357486,0.6784164,0.10442774,-0.12693591,-0.11947604,-0.20210545,-0.18335792,0.14966148,0.74244654,0.49937394,0.08607061,0.17062292,0.25480053,-0.0069438657,-0.00027818634,-0.08589783,-0.33975995,-0.09647115,0.09139326,0.71404135,0.6391062,-0.26316884,0.059033062,-0.018113706,0.27074564,-0.28270167,-0.42248896,0.41561854,0.45323408,-0.06232634,-0.2609964,0.72142655,0.59030944,-0.16542605,0.51490057,-0.5674009,-0.57360935,0.23977147,-0.07973427,-0.22237632,0.17184165,-0.29119352,0.10411239,-0.7344066,0.391405,-0.4271628,-0.79708266,-0.4961874,-0.042458452,-3.1104035,0.04361393,-0.07523081,-0.121510014,-0.3261199,-0.093316756,0.35397515,-0.44816086,-0.7549022,0.0070752734,0.09876262,0.6356273,-0.1277444,-0.06528611,-0.09323232,-0.3583353,-0.20016289,0.12006117,0.23421417,0.24220756,0.054110922,-0.3580117,-0.2598477,-0.28769,-0.33901978,-0.10426049,-0.34613118,-0.4382167,-0.13452639,-0.34586936,-0.1825095,0.6167688,-0.3527926,-0.0073516737,-0.29155648,0.020549534,-0.090073936,0.35752928,0.04085488,0.14356701,-0.026685545,-0.24454212,0.10825158,-0.33354574,0.495669,-0.030466259,0.43610147,0.44439527,-0.33795893,-0.0019169336,0.5912809,0.5691181,-0.08327002,1.0329101,0.10388624,-0.07667721,0.37991598,-0.15589556,-0.3090246,-0.42443487,-0.1500229,0.23820797,-0.34685224,-0.20134772,-0.026319297,-0.34843698,-0.83202994,0.4693173,-0.027883004,0.24290441,-0.18743397,0.3244948,0.29215446,-0.018698262,-0.10868655,-0.19519949,-0.157866,-0.45411536,-0.28919703,-0.81820476,-0.36768538,0.012593044,0.96709126,-0.11475844,-0.012048084,0.16570441,0.10917136,0.16345993,0.04921406,0.21805796,0.0643668,0.3496418,0.106278926,-0.64456546,0.39061838,-0.25467372,-0.044742387,-0.6408304,0.05581768,0.48838475,-0.5989593,0.3361509,0.48471928,0.17518005,-0.028991185,-0.72341084,-0.08850336,-0.06783008,-0.23076572,0.4530636,0.3558572,-1.0902123,0.6244468,0.36471635,-0.27411312,-0.59379494,0.5037175,-0.1117472,0.11384256,-0.010015974,0.41724703,-0.011951355,0.019880982,-0.064395264,0.19108321,-0.34362918,0.32051337,0.16382283,-0.1718927,0.5489714,-0.26034886,0.0026559418,-0.5220048,-0.08322878,-0.5965145,-0.07798466,-0.058988035,-0.16452307,-0.14757007,0.18313466,0.068450615,0.46190885,-0.40156028,0.089965455,-0.08251275,-0.35918996,0.47886416,0.55354726,0.5075515,-0.36385533,0.7101006,0.1873743,-0.03746714,-0.19414097,0.014944205,0.46349475,0.003380512,0.34811532,0.1647714,0.06340706,0.23699385,0.8244792,0.16515169,0.33477384,0.06438237,-0.12524644,0.20363666,0.049076274,0.14588788,0.10236541,-0.56638235,-0.060423907,-0.3391012,0.13303365,0.55676407,0.17658156,0.39603487,-0.087062925,-0.313319,0.062931634,0.23701873,-0.21967179,-1.3816744,0.47263706,-0.0046461085,0.6809563,0.38667658,0.08659156,0.10911063,0.5810571,-0.10602085,0.06862248,0.25506586,-0.019124731,-0.45053992,0.651051,-0.86779225,0.481832,0.042650536,0.03929681,0.14370142,-0.041595016,0.42082736,0.7442324,-0.034238517,0.16869868,0.058574576,-0.30929285,0.2124864,-0.36988208,0.15909846,-0.258845,-0.22709168,0.627807,0.4289923,0.47037113,-0.26987612,-0.018195044,0.021555573,-0.19390449,0.20179224,-0.11390884,0.13922289,-0.34159952,-0.45319417,-0.14176014,0.45435122,0.21201529,0.1509175,-0.06059203,-0.104113966,0.240132,0.02379377,0.07457463,0.007246467,-0.52802426,0.10847884,-0.35525757,-0.38487074,0.2472345,-0.11235301,0.25900137,0.263391,0.06023033,-0.3424118,0.085172705,0.077769116,0.5779983,-0.05122706,-0.24428302,-0.19654736,0.15078592,0.16026203,-0.27236497,-0.018066676,-0.39901888,0.11426859,-0.46860936,0.42296457,-0.38542286,-0.35480398,0.2480833,-0.17717694,0.013823757,0.42691943,-0.27659413,-0.11449296,0.013635506,-0.11765304,-0.18840814,-0.39536387,-0.20002827,0.0587711,0.07141857,-0.058293976,-0.09138464,-0.13291083,-0.1704634,0.15454096,0.09179624,0.16406378,0.5438466,0.024460059,-0.4683237,-0.013960628,0.024322303,0.58662456,0.031749465,-0.10110913,-0.476558,-0.6396008,-0.36829174,0.45453116,-0.028546821,0.22607344,0.1268328,-0.17125331,0.5042762,-0.01935548,0.75727326,0.11334122,-0.27024487,0.045336504,0.70471126,-0.02860415,-0.19842988,-0.21550342,0.86258656,0.5173837,-0.2042251,-0.06610553,-0.5118543,-0.02018017,0.10961296,-0.20422395,-0.27911618,-0.046397455,-0.86198723,-0.14821993,0.13214605,0.4139603,0.04889321,-0.13275836,-0.03260732,0.33157083,0.22039758,0.13375495,-0.4596663,-0.14288369,0.5190244,0.09874598,-0.17646316,-0.061668772,-0.34773305,0.19426724,-0.6424438,-0.1035832,-0.2927177,-0.0017166688,-0.12653975,-0.4644775,0.15742208,-0.0018182168,0.24435924,-0.22533189,-0.27712232,0.16368225,0.26775783,0.23700966,0.15415166,0.5864599,-0.14099035,0.019227443,0.12747526,0.5000609,0.85247934,-0.16023342,0.106721014,0.10344183,-0.41035435,-0.78164315,0.13019894,-0.3463839,0.3125629,-0.13020323,-0.37147692,-0.56632435,0.36679834,0.19900614,0.0024980397,0.07125473,-0.45454848,-0.21228816,0.08219561,-0.41031355,-0.21274918,-0.3717562,-0.1028963,0.5345806,-0.17642856,-0.19228008,0.07440085,0.38833237,-0.20082997,-0.5773498,-0.048854902,-0.29739365,0.25331125,0.030811597,-0.38596252,-0.0052962303,0.09643707,-0.36313564,0.382174,0.21938442,-0.24403447,0.0525778,-0.3885116,0.14753269,0.5717649,-0.20769209,0.14144193,-0.51698875,-0.5920138,-0.81786036,-0.32583874,0.3472843,0.21354786,-0.036240127,-0.61589277,-0.08588183,-0.27720627,-0.017285805,-0.15045235,-0.38355243,0.36779326,0.16163523,0.36972588,-0.07067612,-0.7250918,0.013241436,0.027003665,-0.055602446,-0.26380068,0.64288723,-0.13415888,0.64633346,0.10014378,0.14186025,0.14944175,-0.6015075,0.19472817,-0.1106976,-0.070011415,-0.47834498,0.1714449 -34,0.36943275,-0.24521293,-0.5305809,-0.051618338,-0.31731045,0.09223142,-0.10210958,0.49013528,0.19558404,-0.2596907,-0.3140149,-0.36839056,0.03350949,0.34643635,-0.24877949,-0.24925843,-0.22961289,0.2309403,-0.61259913,0.5101184,-0.2889759,0.07221377,0.22053948,0.3804634,0.49661115,0.056780323,0.13118483,0.1530264,0.14628252,-0.31156892,-0.1483786,0.15365472,-0.44723547,-0.015938293,-0.36852616,-0.5654344,-0.14515969,-0.72528917,-0.4395976,-0.80976814,0.49882507,-1.0227729,0.61718464,0.05068442,-0.31325185,0.36331242,0.48908183,0.3480704,-0.050215982,-0.20780613,0.1534449,-0.24417943,0.09827187,0.043278337,-0.41657498,-0.21025454,-0.6140117,-0.09398424,-0.37965515,-0.19713706,-0.3309498,0.10607264,-0.37620106,0.15087141,0.004218302,0.42965043,-0.37055197,0.014742651,0.30045778,-0.2517901,0.2497643,-0.52705055,-0.2030374,-0.03291328,0.31121275,-0.19659692,-0.13463615,0.27092075,0.21927537,0.36388996,-0.17472933,-0.08237812,-0.30875042,-0.12692872,0.01610874,0.6785635,-0.090947874,-0.37866223,-0.12754732,0.1862048,0.35106048,0.58979625,0.28857037,0.040605698,-0.065058105,-0.09939249,-0.123133905,0.6380838,0.40317994,-0.5859499,-0.29030344,0.3566617,0.54525656,0.3851333,-0.14651138,-0.032093428,-0.042820428,-0.51150995,-0.07035962,0.052208032,-0.47648776,0.57704425,-0.14246112,0.287122,0.5574316,-0.17110057,0.016458642,0.038508542,0.058536377,-0.23515996,-0.27280846,-0.24248153,0.4294451,-0.47722128,0.37367907,0.08182729,0.77705675,0.14824954,-0.36275244,0.20136298,-0.6273611,0.2996793,0.026271397,0.37501782,0.65622777,0.38194466,0.45323464,0.8838553,-0.23938726,0.04934817,-0.10362596,-0.36486903,0.005986023,-0.2798305,0.1015028,-0.561431,-0.0380504,-0.024038337,-0.002314134,0.30355775,0.46072453,-0.5419854,-0.21901092,0.21041423,0.7991815,-0.1687016,-0.009910849,0.8709236,1.0707074,1.1245946,-0.11266677,0.9357632,-0.10529005,-0.28443223,0.097559124,0.05797634,-0.6606891,0.2731113,0.5609508,-0.55126303,0.40591142,-0.05728433,0.09507784,0.2652069,-0.5116802,-0.17100644,-0.06034098,-0.1812508,0.15957972,-0.008924892,-0.5009613,-0.16856699,-0.18469748,0.11344864,0.16992027,0.25021866,-0.10683287,0.4595789,-0.03351548,1.4331703,-0.17190991,0.059850443,0.2626869,0.54272896,0.21613628,-0.14026465,-0.08025215,0.40104952,0.2927541,0.24192381,-0.6065149,0.17392917,-0.29805386,-0.18260585,-0.060507976,-0.518568,-0.3022774,0.1510945,-0.2822499,-0.16996016,-0.43725812,-0.30251917,0.4344237,-2.9635496,-0.12042635,-0.18852767,0.33391058,-0.3203398,-0.35143343,0.123599075,-0.5789706,0.38516614,0.31274542,0.6082888,-0.5658281,0.20061742,0.5612007,-0.9119234,-0.088898204,-0.64085335,-0.21271086,0.089507274,0.31153,-0.025961464,-0.1169722,0.20291094,0.20381485,0.40945262,0.34235534,0.109587386,0.31145218,0.59607536,-0.26060545,0.7840032,-0.38922167,0.509101,-0.28130084,-0.112458535,0.28478947,-0.2487362,0.3967038,-0.5886427,0.043704584,0.79238415,-0.4231758,-0.972051,-0.5810757,-0.018738605,1.2704924,-0.35418046,-0.5217529,0.16668387,-0.3282603,-0.21069965,-0.27032778,0.63880926,-0.09404991,-0.14715539,-0.6885256,-0.016436046,-0.081723765,-0.028242566,0.01777745,-0.19047265,-0.4582307,0.71819425,-0.00944447,0.61151236,0.18575855,0.06111274,-0.30136317,-0.38199723,-0.020784318,0.66104895,0.55630845,-0.057216205,-0.32460278,-0.0885747,-0.54810154,-0.1482266,0.04230349,0.58165735,0.49714425,-0.14996423,0.19030382,0.3356412,0.11102578,0.15260425,-0.16935283,-0.29496047,-0.24656259,-0.31364793,0.56841606,0.62734777,-0.06936241,0.28375027,0.1943356,0.20598911,-0.13412789,-0.4843419,0.37315118,1.0878171,-0.17034239,-0.43319118,0.64747155,0.4456201,-0.0761732,0.432644,-0.46224576,-0.3506579,0.61761856,-0.23830682,-0.6679248,0.19670989,-0.20902723,-0.0710551,-0.7614898,-0.116211765,-0.36692002,-0.22564574,-0.39629564,-0.056234714,-2.7176354,0.28088376,-0.4015071,-0.16578232,-0.22762147,-0.29695523,-0.06051283,-0.42087972,-0.8134603,0.12804057,0.21627909,0.80524707,-0.33302295,0.17676017,-0.21117598,-0.35623464,-0.39035285,0.24060312,0.09460869,0.4142258,-0.23505668,-0.42947987,-0.14377202,0.08593528,-0.42155206,0.013715733,-0.4630498,-0.20858426,-0.10102273,-0.40052092,-0.16699563,0.6709838,-0.30916956,0.15733154,-0.101739615,0.01884939,0.05186696,0.07247139,0.013307664,0.12502044,-0.00962974,-0.07648038,0.2642552,-0.18316509,0.60301566,0.049055625,0.38991365,0.11621931,-0.039641682,0.33770657,0.2357309,0.48593512,-0.07031283,0.94141215,0.3047575,0.016408406,0.1419381,-0.13703194,-0.3385883,-0.5205487,-0.0408821,0.07433789,-0.3826995,-0.5139139,-0.23035984,-0.2776201,-0.7892078,0.6149484,0.14549412,0.5752908,-0.20660233,0.61558014,0.73532104,-0.42951107,0.05872741,0.18284778,-0.03623176,-0.59849304,-0.059678208,-0.5883315,-0.28062907,0.13401042,0.58293587,-0.3734227,0.09895463,0.16134882,-0.24698061,0.15237848,0.2767565,0.06665004,-0.022480749,0.72673,-0.0007199157,-0.60105187,0.4612784,-0.03265667,-0.09025492,-0.6641415,0.40399924,0.34067643,-0.49553013,0.47432345,0.39253223,-0.007315736,-0.30138513,-0.3919299,0.09072889,-0.20138346,-0.2759671,0.24544774,0.34102023,-0.65845287,0.3107549,0.036115758,-0.07439084,-0.82861614,0.67635703,0.006942619,-0.4859021,-0.059893813,0.27873203,0.38090333,-0.026104247,-0.16333221,0.19644183,-0.32194594,0.27918652,0.10787902,-0.12665276,0.2541014,-0.17477606,-0.17274895,-0.7792484,0.38041514,-0.40909547,-0.24616732,0.63689977,0.018730747,0.06391301,0.30540913,0.17342867,0.27801454,-0.10208546,0.16666377,-0.18136472,-0.22183639,0.5619181,0.5279259,0.5094131,-0.6971259,0.7065403,0.051842157,-0.34170857,0.31989858,0.10538824,0.39299366,-0.099121094,0.44514617,0.088187,-0.46961787,0.07128853,0.45514333,0.2789288,0.156247,0.16657104,0.165848,0.16435105,0.030373357,0.15186076,-0.20677948,-1.022796,-0.044266056,-0.49010772,-0.08368506,0.5638488,0.119009525,0.11522328,-0.070191555,-0.328722,0.035553653,0.04319571,-0.13319196,-0.9708742,0.11906678,0.13933307,1.0112242,0.5061129,0.04628031,-0.0060013155,0.6844197,-0.1596334,0.018680584,0.43775386,0.26204488,-0.33038348,0.60273224,-0.627157,0.69942975,0.16025604,-0.16496149,-0.02703427,-0.04194891,0.35305378,0.7695113,-0.33145916,-0.03773274,-0.04061024,-0.355426,0.2240929,-0.3515143,-0.13529573,-0.7642635,-0.23091358,0.60680676,0.4525472,0.32113984,-0.14366728,0.077722505,-0.021232039,-0.2314751,0.20959915,0.18226513,0.18241745,-0.043211665,-0.6634243,0.0986358,0.41868666,0.060122013,0.19036144,-0.017439894,-0.15402903,0.22533678,-0.101577066,0.030043678,-0.23036748,-0.78266233,0.0018883185,-0.4352745,-0.6258756,0.39847043,0.008638626,0.3839386,0.18113568,0.046003763,0.061893463,0.4005212,-0.02944734,0.9322237,-0.11180334,-0.08238847,-0.53002876,0.2300765,0.0072676484,-0.14747085,-0.0125445565,-0.1103803,0.21709065,-0.3625333,0.5472009,-0.046940263,-0.33241272,-0.10143032,-0.20526724,-0.0505244,0.5853544,-0.060731675,0.091052145,-0.12029915,-0.21157865,-0.3598098,-0.43675402,-0.10683644,0.10476882,0.14925157,0.13943674,-0.1926884,-0.021866795,-0.11463776,0.37834436,-0.26907575,0.43641624,0.18961026,0.0019925265,-0.26954305,-0.14276303,0.09293225,0.59560543,-0.14969738,-0.322888,-0.26091692,-0.60095197,-0.39774218,0.35562688,0.011768731,0.47871026,0.12925005,0.21719976,0.7051316,-0.13206077,0.985758,-0.07211203,-0.48765525,0.13248184,0.58465004,0.026719032,-0.34758168,-0.21886438,0.94792044,0.35762927,0.06798992,-0.0773695,-0.39942238,0.14644535,0.0076670377,-0.07834552,-0.1374949,0.0237136,-0.34362814,-0.43451074,0.12838767,0.24447675,0.4520755,-0.3157557,0.16580048,0.52760506,0.06420083,0.34808016,-0.30960256,-0.779718,0.35600263,0.1503167,-0.19717306,0.1382696,-0.6119297,0.40084276,-0.51966524,-0.08400006,-0.55583626,0.16217735,-0.18698539,-0.28785273,0.29169938,-0.06668654,0.49295834,-0.2777615,-0.37467453,-0.21246599,0.34642917,0.20076571,0.17479819,0.46804506,-0.29995137,-0.078150876,0.012546823,0.4710701,1.0271327,-0.19102818,-0.021967346,0.26217547,-0.45745096,-0.600793,0.3094921,-0.51580906,0.29117852,0.24797778,0.116653726,-0.42679837,0.15975726,0.061064433,-0.00012790343,0.04907242,-0.7696717,-0.32732388,0.050456807,-0.3134632,-0.098680146,-0.5468245,-0.051353637,0.50424814,-0.10496008,-0.28134155,0.14594804,0.17028776,0.11491526,-0.7208401,0.043305818,-0.23780021,0.14962913,-0.1756543,-0.36047208,-0.18835579,0.101209566,-0.52101535,0.2590516,-0.040757265,-0.2725021,-0.0018175759,-0.35228717,-0.05342187,1.0148177,-0.48442987,0.055966616,-0.2549062,-0.5138393,-0.66545737,-0.38245544,0.2570547,-0.093498826,0.12609954,-0.66244596,-0.054483283,-0.27727854,-0.20210028,-0.04286597,-0.14368461,0.3473376,0.13099402,0.46954262,-0.17323637,-0.7251759,0.4343111,-0.10058446,-0.13438047,-0.64313227,0.46966496,0.06096419,0.7507309,0.027556349,0.1576707,0.33916643,-0.5627962,-0.22857767,-0.06351905,-0.13593945,-0.57974666,0.034971364 -35,0.39797255,-0.11220067,-0.57722735,-0.24562782,-0.48370212,0.086108215,-0.35746977,0.2348191,0.29992616,-0.3305756,-0.2569161,-0.24906777,0.18743426,0.31099054,-0.05720145,-0.70458424,0.15297304,0.3552092,-0.7565742,0.32717085,-0.6244695,0.4185848,0.15710226,0.43957442,0.18172738,0.37345928,0.25016886,-0.06998248,-0.082131274,-0.1492465,-0.2536855,0.14174426,-0.5209823,0.021902302,-0.29651967,-0.4720248,0.10162126,-0.44692978,-0.062328998,-0.8000182,0.14137991,-0.98157626,0.53363895,-0.044001997,-0.23981097,-0.16903411,0.5184727,0.30921227,-0.45670876,0.25313595,0.18335755,-0.38449982,-0.2535386,-0.48429665,-0.28761598,-0.5188912,-0.5574851,-0.19669078,-0.55843794,-0.35758007,-0.18968041,0.27791047,-0.26271385,0.10890524,-0.055751618,0.26701772,-0.37324733,-0.016213706,0.32238102,-0.3571248,0.09039916,-0.48356915,-0.036570396,-0.123593606,0.5921643,0.07864182,-0.23667358,0.35966456,0.41113868,0.5246289,0.28910863,-0.26784986,-0.39293692,-0.26058796,-0.06120469,0.53796315,-0.12744766,-0.183875,-0.28838503,-0.1816512,0.35296285,0.5049013,0.014067107,-0.086422905,0.04029135,-0.32215637,-0.16585176,0.43343204,0.5133326,-0.43964446,-0.28636706,0.17715016,0.54140306,0.018572252,-0.32186922,0.09380691,0.16968364,-0.6313098,-0.24844159,0.04907397,0.045917787,0.5536406,-0.13622223,0.066555284,0.7661854,-0.05237677,0.038640976,-0.051504456,0.12817748,-0.1743496,-0.40659383,-0.28453556,0.33589894,-0.55251884,-0.11829701,-0.39098135,0.6678614,0.08039444,-0.5487702,0.48959133,-0.616246,0.061427884,-0.074873455,0.55838645,0.6322575,0.38006634,0.2769219,0.8179332,-0.20029303,0.23071964,-0.09540342,-0.27668113,0.121562704,-0.27827498,0.3376905,-0.42686364,0.3420468,-0.22741278,0.08322504,0.32324106,0.7345705,-0.43574816,-0.25878322,0.35373095,0.89005876,-0.3646816,-0.059777625,0.6299759,1.0483739,1.1728287,-0.079750136,1.2960429,0.41616076,-0.31403944,-0.2029229,-0.12557222,-0.56849635,0.1401217,0.19530566,-0.08807344,0.24957822,-0.1077576,-0.07571916,0.34556806,-0.323484,0.0034907688,0.01849262,0.19047913,0.09153095,0.11705831,-0.49975127,-0.20664747,0.12992097,-0.070447475,0.47614992,0.27969033,-0.30147383,0.4127812,-0.26613453,1.4720991,-0.05376864,0.07113419,0.23779385,0.5193784,0.37684706,-0.17566817,-0.04261684,0.4113981,0.17146803,-0.1372622,-0.5435255,0.09763791,-0.4016894,-0.2700316,-0.21949029,-0.40409258,-0.18764012,0.037700973,-0.42641932,-0.32824802,0.017236412,-0.36925462,0.38218307,-2.4353075,-0.37471014,-0.15463202,0.41465107,-0.23561452,-0.20982471,-0.5203525,-0.534927,0.35090506,0.106470056,0.5124043,-0.50941896,0.5584667,0.6344892,-0.5164102,-0.361887,-0.6902421,-0.011832494,-0.18877584,0.17958471,0.023707481,-0.40697446,-0.26969653,0.119243145,0.67139906,0.010752697,0.18751042,0.6474156,0.46978092,0.21508947,0.664867,0.04719525,0.6268105,-0.42914233,-0.27757305,0.3582186,-0.49281856,0.16508238,-0.20339431,0.12709872,0.71708894,-0.6017462,-0.99225795,-0.7047269,-0.096714534,0.8813655,-0.36863822,-0.6163541,0.084667616,-0.16670305,-0.18351103,0.20625709,0.7723472,-0.06135507,0.25944206,-0.6953138,0.08748814,0.04440065,0.2986205,0.10961339,-0.0040628817,-0.40775138,0.70479214,-0.18093036,0.47632602,0.08879215,0.24111421,-0.38278395,-0.23985133,0.10499439,0.89424163,0.13242105,0.059732113,-0.22354446,-0.28682846,-0.24605069,-0.27905992,-0.04054087,0.6170066,0.7170848,-0.20412898,0.16095644,0.4354931,-0.06409593,0.08380615,-0.16760461,-0.28552052,-0.08275115,0.13475358,0.5348728,0.79915625,-0.0030090695,0.4287454,-0.22677723,0.5490858,-0.3920747,-0.61678654,0.5440005,0.62548965,-0.20642884,-0.11142396,0.5438474,0.4909948,-0.6019348,0.60817695,-0.8056473,-0.5286562,0.5042108,-0.18569177,-0.42330676,0.1780307,-0.33906782,0.24344124,-0.6529767,0.16626072,-0.19578153,-0.31611106,-0.45173308,-0.33310336,-2.9522905,0.3334403,-0.04514139,0.08435827,-0.23460759,-0.075652845,0.30587906,-0.52356744,-0.5619185,0.08332589,0.23596287,0.73581374,-0.081875555,0.1855091,-0.34160584,-0.35712713,-0.15396605,0.30579227,0.006030078,0.31341556,-0.052981,-0.46256483,0.08293799,-0.019488137,-0.45690867,0.051722784,-0.73263544,-0.4644775,-0.088084474,-0.6361894,-0.3491481,0.6068544,-0.55614144,0.09471896,-0.37065023,0.10716375,-0.19106875,0.017932901,0.1466468,0.24997407,0.18709286,-0.14321494,0.22336677,-0.21549273,0.4323858,-0.12817457,0.2502256,0.13745862,0.09806083,0.0032362158,0.34589735,0.67168164,-0.23171768,1.1204362,0.2310401,0.011683964,0.20208819,-0.29170275,-0.29282507,-0.45466515,-0.31412128,-0.14335403,-0.505041,-0.384968,0.0058789025,-0.32060513,-0.85035646,0.7394718,0.054271843,0.24963917,0.025495112,0.4212007,0.39714986,-0.30203244,-0.058063462,-0.059599824,-0.12635861,-0.38058096,-0.2693848,-0.72033626,-0.5430755,0.23326617,0.97806895,-0.3837046,0.07898005,0.13498607,-0.18806031,-0.0023288017,0.35143763,0.1933658,0.22884059,0.66276836,0.008071088,-0.6271511,0.25439608,-0.2811639,-0.14627862,-0.59972006,0.14251274,0.7225422,-0.89110476,0.70781195,0.5072057,0.07962256,-0.20997477,-0.5181067,-0.23216587,-0.011092415,-0.23799445,0.40207213,0.12278696,-0.8202001,0.41748813,0.21640667,-0.5468616,-0.7436374,0.2043834,-0.21456665,-0.33108887,-0.12389346,0.40273842,0.27355677,-0.1261985,-0.19515419,0.01964378,-0.4527079,0.2543693,0.13655171,-0.07874218,0.514615,-0.23046957,-0.3569813,-0.77344966,-0.12735373,-0.45691025,-0.29269168,0.2886674,-0.07003938,-0.03903451,0.37846866,0.055268984,0.34004456,-0.2571994,0.074556574,-0.20910607,-0.27099082,0.2521689,0.2450342,0.45784223,-0.42315677,0.658535,0.016967379,-0.2425968,0.11926126,-0.032999154,0.3562539,0.042173427,0.6119156,-0.20139845,-0.17967036,0.3028556,0.7116474,0.18207575,0.46642727,0.26760596,-0.06196582,0.30259842,0.073381156,-0.05951488,-0.10819466,-0.4520659,-0.020102564,-0.33902976,0.18206836,0.52631193,0.2207873,0.52187455,0.113869995,-0.111179754,0.030520616,0.22241364,-0.37612152,-1.1251352,0.23218727,0.26272878,0.8708481,0.3533312,0.15260457,-0.32215744,0.60327125,-0.19239958,0.16449703,0.34530416,-0.07459772,-0.33920696,0.7975904,-0.5024104,0.4610853,-0.30435684,-0.069809094,0.09641704,0.20123771,0.41797277,0.82261854,-0.09853714,0.09198889,0.011192741,-0.20277621,0.022639852,-0.252787,0.084642425,-0.4514372,-0.36096317,0.8430053,0.37593862,0.4847214,-0.16990305,-0.15482217,0.014872755,-0.16989629,0.13471286,0.008297732,0.08704743,0.1337884,-0.5912813,-0.029274046,0.5610344,0.10846488,0.19148847,0.039442554,-0.3569361,0.20532015,-0.21564132,0.22493488,-0.08540491,-0.67971647,0.015992014,-0.3543568,-0.59108937,0.51336914,-0.117589876,0.08089293,0.18069285,0.05351563,-0.07937626,0.37080938,0.13570566,0.78316885,0.08509931,-0.16566047,-0.17542681,0.2044099,0.2734695,-0.34660733,0.1368638,-0.46751112,0.19628789,-0.6553358,0.6141436,-0.20253134,-0.44847167,0.30465147,-0.086785905,-0.08380599,0.5437896,-0.15239675,-0.040572014,0.152393,-0.15742522,-0.46497992,0.031314198,-0.45808363,0.18813089,0.09044993,-0.11934969,-0.25040683,-0.19049941,0.062189046,0.53334785,-0.087601885,0.3626839,0.37403548,0.2955467,-0.0847753,0.29731968,0.075140804,0.6955165,0.050639458,-0.039139714,-0.40733194,-0.4002852,-0.26568532,0.4546263,-0.0839934,0.17608148,0.16545175,-0.28877637,1.0783043,-0.025713142,1.0858797,0.0747613,-0.3762253,0.09302902,0.5149488,0.10207906,0.0527014,-0.37216404,1.0768036,0.5838085,-0.2565147,-0.06907041,-0.34143475,-0.13837855,0.38618916,-0.42359117,-0.1786177,-0.086513035,-0.69832104,-0.44817767,0.30007404,0.32622454,0.25648946,-0.2552362,0.42692775,0.093950786,0.19825247,0.2815456,-0.7075773,-0.29689506,0.28283325,0.42582148,-0.16339302,0.22483198,-0.28853515,0.3263141,-0.7977434,0.09303951,-0.65416473,0.04608289,-0.17353882,-0.48333898,0.19685364,0.21434556,0.34601104,-0.37345988,-0.30329192,-0.1088162,0.49451712,0.16932064,0.22293904,0.61397564,-0.2745194,-0.1240374,0.092050314,0.71014875,1.4004188,-0.45980594,0.02795296,0.45180196,-0.4515556,-0.7634385,0.32337168,-0.5389858,-0.12590139,0.006431639,-0.5786885,-0.41170275,0.26510268,0.14580235,-0.0018018186,0.14127992,-0.44620323,-0.000106774845,0.26499608,-0.19794115,-0.20957616,-0.13662575,0.43443763,0.58782387,0.019539138,-0.31480363,-0.018280277,0.39769384,-0.37760845,-0.5890666,0.08977066,-0.3850488,0.37236336,0.17084478,-0.2625715,-0.023041992,-0.01391171,-0.59150285,0.08907977,0.17519954,-0.35080928,0.1932911,-0.4085934,0.08673591,0.8799792,-0.04013588,0.015276661,-0.5048512,-0.5306989,-0.953087,-0.23930615,0.29900283,0.06288673,-0.017631318,-0.3319321,0.08172734,-0.23035452,-0.39124373,0.22277552,-0.42320046,0.36820114,0.22935078,0.44167078,-0.3087289,-0.96614397,0.08289779,0.10760776,-0.4448266,-0.6288859,0.53686374,-0.13951103,0.9311494,0.1528348,-0.08314938,0.14177233,-0.39310697,0.42694232,-0.42329562,-0.06338383,-0.80089164,-0.1458661 -36,0.4338906,0.051807947,-0.4702287,-0.27103922,-0.3137801,0.19133355,-0.12325311,0.29022613,0.24990477,-0.27922854,0.037046064,-0.15964788,-0.12528887,0.3298804,-0.088876724,-0.70420104,0.07620961,0.1482368,-0.74648625,0.5479071,-0.49603906,0.36717898,0.06042134,0.39337394,0.08178457,0.23849702,0.17835213,0.02580815,-0.008586345,0.024136733,-0.09608332,0.29300788,-0.5899709,0.07227706,-0.05809217,-0.17321555,-0.09886539,-0.37281367,-0.20547199,-0.6616285,0.27109078,-0.5167661,0.49974987,-0.056766413,-0.4467596,0.05236034,0.1703694,0.30361468,-0.37400818,0.020328857,0.25118208,-0.10364438,-0.040384125,0.014397414,-0.31889427,-0.50117385,-0.6149228,0.07762458,-0.64386165,-0.14854379,-0.22451262,0.24437688,-0.2762899,-0.01247677,-0.080150284,0.58528453,-0.3260054,-0.05242671,0.21860169,-0.24099398,0.04712295,-0.4082994,-0.14328419,-0.11681488,0.27609128,0.097992115,-0.16751757,0.13391739,0.35556442,0.5707358,-0.041054536,-0.2439709,-0.20701462,0.0046735923,-0.013078707,0.48919147,0.020569468,-0.2078679,-0.24357082,-0.012921802,0.035691563,0.13996467,0.070754,-0.39661723,-0.0155816395,0.053127903,-0.27253225,0.3184388,0.3691759,-0.5347761,-0.27830693,0.39682052,0.44068477,0.11156297,-0.2328508,0.23255159,-0.041212924,-0.51058215,-0.28495756,0.22870718,-0.084348015,0.43375188,-0.107095085,0.21000578,0.70858544,0.009111341,-0.16127163,-0.07533574,-0.068995886,0.04599803,-0.19255129,-0.043426637,0.112118796,-0.41224056,-0.06690697,-0.21915977,0.6784995,0.02046762,-0.871139,0.31807798,-0.48348716,0.099149905,-0.11712532,0.5122997,0.90316325,0.30249855,0.11339567,0.8821097,-0.59907895,0.06193317,-0.03439846,-0.21461463,0.08121907,-0.07906803,0.093465194,-0.6201557,0.05100545,0.15246235,0.012275314,0.06453484,0.24838762,-0.4181467,-0.1826378,0.05989917,0.7696509,-0.33172074,-0.22429729,0.63624597,0.9457268,0.9184831,0.14530583,1.1460437,0.26548904,-0.12464909,0.17438148,-0.4879035,-0.5639431,0.18771172,0.26206815,0.24104628,0.3337455,0.056838002,0.10361778,0.4546381,-0.21840464,0.20715979,0.02130353,0.11784594,0.09232577,-0.06651523,-0.28071153,-0.3161622,0.20790288,0.007615002,0.08308949,0.21046829,-0.20056547,0.33882496,0.030712893,1.468513,0.2302053,0.09832232,0.099617735,0.37794188,0.280311,-0.22071438,-0.23233318,0.32452267,0.36393294,-0.050715048,-0.44909292,0.029118475,-0.2527369,-0.35627607,-0.17653595,-0.3703241,-0.001088957,-0.089572094,-0.50049865,-0.108442426,0.007150857,-0.41899034,0.5273892,-2.8549702,-0.18557432,-0.11411392,0.22916263,-0.20502461,-0.27681255,-0.34468162,-0.46571797,0.26176178,0.5038226,0.3104045,-0.50497127,0.55907834,0.24202485,-0.28624976,-0.1381962,-0.5967162,-0.16342306,0.0064513367,0.29290977,-0.1286783,-0.043089908,-0.29069665,0.45511264,0.60781914,-0.008149131,-0.0053703943,0.2885293,0.47792026,0.012194046,0.6664358,0.15065292,0.45932972,-0.11349082,-0.13211507,0.29489428,-0.52574736,0.29331398,0.21857847,0.14866383,0.4115199,-0.49508223,-0.871287,-0.51841414,-0.12035124,1.1361165,-0.3843996,-0.20345983,0.28207678,-0.14571482,-0.28964177,-0.02091033,0.52691317,-0.10100018,-0.00847114,-0.68983203,0.041234683,0.075467266,0.20843248,-0.10463951,-0.03198417,-0.29923192,0.532687,-0.08635307,0.6163873,0.26851645,0.09248861,-0.24742985,-0.47599757,0.035688963,0.9948482,0.31414187,0.101526015,-0.08441749,-0.1546749,-0.44726995,-0.07736925,0.18407895,0.44432607,0.5748178,0.114122435,0.26707643,0.3717151,-0.30092934,-0.0039062263,-0.107157424,-0.3018275,0.011516932,0.12322311,0.4818569,0.53046095,-0.16959123,0.48076713,-0.08203336,0.12513617,-0.18650764,-0.5021463,0.60732114,0.6386022,-0.108305715,-0.25612342,0.50255007,0.4030272,-0.23048037,0.35831723,-0.45557246,-0.38137582,0.6373789,-0.099500194,-0.32004443,0.16341661,-0.28152326,-0.037412483,-0.9331961,0.12422535,-0.030327085,-0.41238168,-0.43871263,-0.18819278,-3.8195298,0.14285837,-0.045612846,-0.15377112,-0.083569504,-0.08491972,0.31097594,-0.44063658,-0.60407764,-0.028389424,0.0888103,0.60495496,-0.06588823,0.1834387,-0.2826851,-0.21582103,-0.2975523,0.27962592,0.100609474,0.40488386,0.07477582,-0.3670625,0.06929481,-0.3407014,-0.4692749,0.026185745,-0.45917228,-0.47680098,-0.12493615,-0.4647643,-0.30563885,0.6686936,-0.29069197,-0.06577525,-0.32097894,-0.052101653,-0.026861278,0.42787254,0.26473853,0.18100283,0.062682025,-0.057397183,-0.18808013,-0.39763227,0.15545471,0.07598397,0.2638612,0.3900252,0.088860795,0.289637,0.58223337,0.5558999,-0.08295819,0.6287974,0.2653876,-0.001913621,0.376123,-0.3071643,-0.20114341,-0.57410353,-0.28141725,-0.3821558,-0.3721444,-0.44748524,-0.18414326,-0.35894945,-0.7606689,0.3675696,0.034022503,0.016120426,-0.14916314,0.26975983,0.2523066,-0.19911154,0.101942025,-0.17448902,-0.2623502,-0.37570113,-0.43757847,-0.5821102,-0.47967216,0.23763178,1.0509928,-0.20926188,-0.1149325,-0.032204263,-0.21061464,0.044349257,0.0056381305,0.24260876,0.28473213,0.2973464,-0.14782855,-0.6346676,0.37361035,-0.32430524,-0.05393018,-0.677012,0.043096147,0.5517389,-0.5233511,0.58631855,0.1514864,0.23058596,0.04824637,-0.5633937,-0.25425944,0.06843867,-0.23692776,0.6330464,0.15139292,-0.7115134,0.44135872,0.19106695,-0.05441595,-0.6517069,0.49830163,-0.09913016,-0.23657842,0.046672072,0.26799685,0.07102583,0.005560676,-0.18719152,0.17621242,-0.5202905,0.20157054,0.34441814,0.0667747,0.578102,-0.14503,-0.20040412,-0.445873,-0.17120221,-0.51990813,-0.280407,-0.0073770084,0.16341977,0.14759427,0.10129873,-0.23599045,0.31215325,-0.28264531,0.25462034,-0.0046503665,-0.047685616,0.41345394,0.41234866,0.34180918,-0.48314747,0.50365,0.010980191,0.09781129,-0.056871925,0.087278605,0.4632858,0.268024,0.30485058,-0.055181384,-0.13711776,0.33827603,0.46701035,0.17398764,0.2756349,0.2211299,-0.1947845,0.29188472,0.0314889,-0.0036427935,-0.12905052,-0.30141976,-0.06367359,-0.011910828,0.27339944,0.43575,0.025763962,0.3103448,-0.03251312,-0.11341495,0.2058484,0.13945937,-0.15732583,-1.0013882,0.33815235,0.28567028,0.6902062,0.5461469,-0.036907606,-0.026631586,0.5328463,-0.3211692,0.13097441,0.34672928,-0.00803421,-0.52154183,0.52940124,-0.5576636,0.6077582,-0.25470823,-0.08129372,0.13763046,0.22712873,0.4145234,0.89494973,-0.082941025,0.07559211,0.050254412,-0.26690245,0.12731591,-0.23176594,0.09746565,-0.6011865,-0.26444763,0.5864831,0.35621834,0.27635399,-0.44826317,-0.033843696,0.02739818,-0.19635971,-0.024754087,-0.13133635,-0.042413816,-0.112614885,-0.6811142,-0.35761124,0.54885685,-0.04393526,0.021263557,0.19791289,-0.286112,0.2802611,-0.13634859,0.058612093,-0.044055,-0.59325475,-0.13740005,-0.24149552,-0.47001076,0.425943,-0.4493876,0.21230377,0.12684079,0.024418075,-0.4717024,0.38579097,0.15662827,0.64886814,-0.029616006,-0.06636254,-0.2841758,0.06722423,0.19249259,-0.26361433,-0.1732531,-0.49342868,0.12075461,-0.5961355,0.39173222,-0.07787393,-0.38166755,-0.09964445,-0.028616067,0.072613545,0.40485066,-0.14994152,-0.029825438,0.069319114,-0.037742306,-0.16521598,-0.057108257,-0.3335676,0.4547465,-0.039600305,-0.1451068,0.079887435,-0.010209775,0.029140918,0.29564768,0.06282929,0.2118393,0.23044942,0.081716396,-0.32768393,0.19424771,-0.005620424,0.30718374,0.17641261,-0.12322463,-0.26144063,-0.20520161,-0.3162135,0.3232006,-0.1777573,0.12421603,0.029375887,-0.43687692,0.7174226,0.15006964,1.1324288,0.109969266,-0.24470308,0.06574383,0.49375495,0.23928563,0.15407705,-0.24678166,0.66298175,0.53763396,-0.12455692,-0.2381294,-0.32579595,-0.25298458,0.0970322,-0.29737064,-0.30033153,-0.12987722,-0.651262,-0.15376125,0.0420161,0.12311623,0.27343372,-0.07433859,-0.13210776,0.1524424,0.11144527,0.3156147,-0.40879303,0.044972625,0.29549995,0.1861586,-0.015004602,0.16735741,-0.37968558,0.43522352,-0.7679848,0.17656676,-0.2354301,0.12297762,-0.05252901,-0.28843084,0.17908487,0.08986779,0.2631557,-0.21030453,-0.26319462,-0.2505992,0.7230033,0.30363116,0.29523292,0.78495544,-0.2629486,-0.10814573,0.06551425,0.42523864,1.2237877,-0.036182903,-0.1745115,0.19865973,-0.21239202,-0.67591393,0.06465976,-0.39976606,0.1996106,-0.067018114,-0.32380947,-0.23366883,0.2744204,0.122534506,0.073077045,0.0126287555,-0.46173713,-0.19766006,0.43851689,-0.15003671,-0.2434234,-0.2914025,0.23355412,0.5966156,-0.27196106,-0.33066884,-0.010748538,0.30353132,-0.139838,-0.6854161,0.0722493,-0.3007884,0.36643675,0.16870792,-0.28936067,0.014214584,0.21915239,-0.48689678,0.16539463,0.34627628,-0.34312525,0.014832628,-0.2896642,-0.25907734,1.0938861,0.08588246,0.21627754,-0.5030659,-0.5654923,-0.9055271,-0.295177,0.3547378,0.014043275,-0.10641421,-0.53633523,-0.17490552,-0.13843568,-0.056183744,0.10994838,-0.47433552,0.3786318,0.089498475,0.31664744,-0.043583773,-0.8498983,-0.09138629,0.07302448,-0.26493147,-0.49506253,0.54342556,-0.060690485,0.65232044,0.06771652,0.120875806,0.262364,-0.6365645,0.29245102,-0.44556606,-0.047268603,-0.5123792,0.11337895 -37,0.62143964,-0.3350552,-0.5960008,-0.22986771,-0.3550237,-0.0045161527,-0.26430294,0.4151058,0.3776929,-0.20709899,-0.19622803,-0.02805177,0.05044423,0.19057173,-0.014975027,-0.6870808,-0.2303135,0.15409063,-0.79443055,0.67258847,-0.5091475,0.436252,0.091781445,0.3213896,0.08224033,0.45627248,0.10483287,-0.15431292,-0.028689865,0.020079294,0.0496969,0.2764552,-0.66246045,0.1845458,-0.27091596,-0.29990435,-0.087417535,-0.41900447,-0.16683592,-0.7486799,0.051820096,-0.80588704,0.5603972,-0.027244793,-0.3130039,-0.26179254,0.105592534,0.25547698,-0.47977975,0.22755517,0.34262273,-0.15102163,-0.14020115,-0.40088564,0.08304475,-0.41195196,-0.49465513,-0.12355761,-0.6022206,-0.12539752,0.123038664,0.25569624,-0.2411816,-0.050662503,-0.22955483,0.51435685,-0.3049202,-0.13536906,0.4046192,-0.24607582,0.20867148,-0.5131555,-0.103297494,-0.083344474,0.42705384,-0.0613456,-0.37857252,0.22945309,0.25428626,0.5321206,0.3219402,-0.35011995,-0.2617994,-0.042813446,0.03486991,0.4242703,-0.20042601,-0.44549465,-0.30394953,-0.0483531,0.33495933,0.19785075,0.024560101,-0.30441168,0.034723934,-0.23742418,-0.017587502,0.48668987,0.5132667,-0.22078887,-0.3431271,0.2932966,0.61327165,0.09062997,-0.20743337,0.04768711,0.062906936,-0.6209659,-0.14234,0.11064633,0.011176491,0.3915068,-0.14350528,0.13400552,0.7937707,-0.054232128,-0.12755696,0.25979045,0.01868829,-0.080472946,-0.36199272,-0.26400745,0.36419615,-0.5549276,-0.10953461,-0.44353676,0.57716095,0.11747307,-0.62889165,0.27302733,-0.6325906,0.09637017,0.009730196,0.6067397,0.8490554,0.45164955,0.168809,0.724761,-0.30528754,0.29927355,-0.044316847,-0.31143856,0.22545895,-0.34482506,0.20811656,-0.54908365,0.064405724,-0.20709495,-0.079758406,-0.018995745,0.42235714,-0.73607326,-0.31389058,0.151723,0.62675804,-0.33438683,0.058067463,0.81617534,1.0585299,1.0291016,0.067967504,1.2401391,0.37538165,-0.25608116,0.08386923,-0.3707673,-0.7472941,0.25718933,0.24425074,-0.38823527,0.45218465,-0.17749567,0.03169233,0.44564325,-0.31247255,-0.0002861917,-0.0035566508,0.35923845,-0.017643448,-0.06261805,-0.4749397,-0.20488809,-0.022312645,0.12708135,0.15132608,0.28139544,-0.33059344,0.37066433,-0.012535469,1.4066354,-0.24900836,0.020297615,0.21587129,0.27911004,0.3249523,-0.3287096,-0.08908713,0.3784009,0.42468292,-0.020758374,-0.55003697,0.18649188,-0.34371933,-0.3449899,-0.19024706,-0.24850437,0.0026014566,-0.056911103,-0.46209776,-0.29801512,-0.11344058,-0.24840806,0.27590066,-2.5385556,-0.17580488,-0.1739521,0.4415547,-0.22264622,-0.22647084,-0.11217675,-0.589065,0.13491563,0.26840925,0.5426959,-0.6412946,0.5037772,0.49873483,-0.6553108,-0.17014013,-0.709635,-0.016934363,-0.07866117,0.44146416,0.08420734,-0.17849198,-0.052139316,0.07834714,0.6763079,0.0097979065,0.16162989,0.48876914,0.46830347,-0.01568861,0.49320975,0.096094675,0.52909595,-0.49072006,-0.2443301,0.4903761,-0.46970713,0.07035268,-0.036911443,0.025392795,0.6337288,-0.59636706,-0.86309075,-0.59706384,-0.114421144,0.9327455,-0.23848043,-0.38571262,0.036218714,-0.28441906,-0.15155473,0.09326684,0.65673614,-0.15998046,0.09304491,-0.83182347,0.01836579,-0.07428732,0.035660427,0.018425675,-0.012653013,-0.42137954,0.729143,0.0068470975,0.650304,0.2806811,0.23539132,-0.24058232,-0.49799487,0.1460569,0.99733967,0.24717757,0.04044082,-0.1011589,-0.13837348,-0.13939044,-0.016873768,0.08338134,0.61545855,0.7526855,-0.12554543,0.2329511,0.39833164,-0.07023592,0.122063115,-0.1237589,-0.25990373,-0.18524192,0.12458239,0.4240715,0.8563042,-0.14334147,0.40571797,-0.22109309,0.46522102,-0.22379328,-0.6287734,0.6451972,0.79723984,-0.17309189,-0.09756681,0.54210377,0.38264874,-0.2778631,0.5925311,-0.5966539,-0.39095995,0.43742827,-0.250575,-0.3120537,0.23808466,-0.26529855,0.4086992,-0.8933464,0.42390478,-0.3065651,-0.45780748,-0.6520193,-0.21827322,-2.1372688,0.28831494,-0.15019022,-0.0034802516,-0.24505034,0.03727464,0.30354616,-0.7700342,-0.47523358,0.19995897,0.1384916,0.5918621,-0.06551547,0.12547249,-0.338467,-0.4481706,-0.023498476,0.399673,0.18469064,0.35278335,-0.07810931,-0.5027589,-0.08064114,0.17228346,-0.36687815,0.07896237,-0.67848974,-0.5820486,-0.09251603,-0.7196214,-0.16879974,0.6014522,-0.3099089,-0.0036347706,-0.14973643,0.06308763,-0.07851391,0.1859929,0.07398565,0.22300304,0.1768343,-0.022890864,0.12847543,-0.29202828,0.35420552,-0.022810929,0.40269852,0.21895227,-0.20655116,0.17824522,0.394879,0.6000767,-0.27261418,0.96687895,0.41921458,-0.014791974,0.1734607,-0.22004405,-0.35230145,-0.5983285,-0.35166016,-0.04149721,-0.4070779,-0.40592623,0.082152285,-0.39149094,-0.938732,0.64263153,-0.009966512,0.31843528,0.022580694,0.29314983,0.5359431,-0.18939233,0.023885412,-0.1278917,-0.15513282,-0.37880903,-0.1521075,-0.6393462,-0.5198908,0.17896797,1.1892235,-0.31537044,0.15126151,0.006506443,-0.27603132,0.060411762,0.008102084,0.03383491,0.26198563,0.51691467,0.035159994,-0.53701246,0.33514568,0.029302763,-0.23348661,-0.40281528,0.1632845,0.6489678,-0.7720444,0.5955908,0.34013134,0.10742305,-0.035468895,-0.6173098,-0.12409798,0.11263338,-0.09568455,0.5570193,0.23089026,-0.59116036,0.46696466,0.3348879,-0.47068462,-0.7507032,0.25606713,-0.11294373,-0.2948407,-0.10292575,0.35045657,-0.020493574,-0.013211266,-0.3250627,0.40635923,-0.31385952,0.17965229,0.16266403,-0.24826522,0.21216281,-0.10589231,-0.36385927,-0.70978814,0.062119007,-0.6736304,-0.34047106,0.4222422,0.022477308,0.06882242,0.1115865,0.11235343,0.42449632,-0.21697448,0.14791937,-0.06837756,-0.38268307,0.3833926,0.39458376,0.3075053,-0.4486155,0.52737695,0.16922398,-0.27026206,0.01352868,0.07207843,0.49993172,-0.016639639,0.43437043,-0.12281554,-0.072634205,0.42120215,0.72277284,0.15013386,0.4771258,-0.031538233,-0.15503229,0.21181978,0.11445143,0.16605572,-0.14601578,-0.3467364,0.058872335,0.13149936,0.28385633,0.3968049,0.17400824,0.4010174,-0.06149297,-0.25970128,0.07937326,0.25504777,0.009394288,-1.4706782,0.23609018,0.25973803,0.9081755,0.4906456,0.11175438,-0.19539504,0.49467078,-0.30152404,0.14048596,0.35157463,-0.24694349,-0.40999857,0.6834148,-0.5727239,0.36375856,-0.16613026,0.019732405,-0.029536294,-0.025044588,0.36943546,0.7530524,-0.14366703,0.07422034,-0.06566128,-0.11289532,-0.1201114,-0.3127044,0.1338219,-0.42079327,-0.36597088,0.8324163,0.29330254,0.4228436,-0.29187518,-0.07898403,0.10547098,-0.1565163,0.23194641,-0.052612655,0.11397584,0.17272407,-0.5078906,-0.14814693,0.4713805,-0.05602307,0.088511564,-0.17930956,-0.26449886,0.04884022,-0.19613126,0.03077642,-0.19887587,-0.5791991,0.038919926,-0.47450674,-0.31595516,0.57611126,-0.075614564,0.065800056,0.1886542,0.16808105,-0.26846436,0.30138296,0.03469278,0.82178843,-0.015569659,-0.2952447,-0.39225656,0.18470407,0.2294484,-0.3627887,0.026318677,-0.4368309,0.12676579,-0.67715347,0.58820045,0.062805675,-0.5528698,0.16065326,-0.20506458,-0.022836851,0.5632716,-0.1357401,-0.22819091,0.2392478,-0.042076197,-0.39327067,-0.071495056,-0.25889015,0.20854491,0.38644442,-0.0025010894,-0.21591626,-0.19002466,-0.1466534,0.5698915,0.13708551,0.4445582,0.47668132,-0.0107930815,-0.2510871,0.30527985,0.4175059,0.34677848,0.2547782,-0.13431473,-0.5748584,-0.44825605,-0.46433467,0.12870163,-0.20404425,0.27932397,0.01290125,-0.24678494,0.988017,0.022099193,1.3217678,-0.0135932285,-0.31961256,0.076570906,0.60451293,0.049597654,-0.035322133,-0.33604828,1.1185604,0.662522,-0.15008834,0.07668404,-0.31046295,-0.19894879,0.2757625,-0.34329197,-0.07649358,-0.16052474,-0.702196,-0.46684197,0.2927949,0.22968188,0.07621584,-0.2892903,-0.018785112,0.056049936,0.12153916,0.19375175,-0.66308963,-0.17353593,0.005317517,0.24923848,-0.09810551,0.26312816,-0.50837547,0.3247835,-0.6660457,0.22790423,-0.38766572,0.16602169,-0.11006138,-0.33487275,0.17186455,-0.07378467,0.34270012,-0.49898586,-0.48595467,-0.16064088,0.4401728,-0.019731427,0.10065057,0.63386256,-0.34870175,-0.08857418,0.30211937,0.5873029,1.2866591,-0.31325132,0.009571489,0.3081134,-0.41528037,-0.7383433,0.2498239,-0.25662902,0.013227582,-0.22329564,-0.561246,-0.3872626,0.28661245,0.1602269,0.13866547,-0.0001301368,-0.62074596,-0.10386656,0.4070495,-0.42160797,-0.14265203,-0.19842029,0.31168938,0.75726444,-0.23951456,-0.4150031,0.030781103,0.19633135,-0.23280483,-0.49465102,-0.1812182,-0.42174488,0.25193915,0.22380885,-0.22978266,-0.040938556,-0.010360805,-0.4748195,0.2334571,0.28752595,-0.37866578,0.06079173,-0.2677742,-0.16660962,0.9652784,-0.00920995,0.11691144,-0.53565526,-0.47304398,-1.0137919,-0.4130462,0.24037936,0.08205433,0.09496399,-0.4991239,0.10367739,-0.15761957,-0.14608483,-0.0016576211,-0.41363904,0.43532068,0.22486739,0.4456014,-0.34393126,-1.024131,0.12338947,0.35351762,-0.21699238,-0.68334043,0.48803347,0.032758556,0.89577,0.09427833,-0.0005524556,0.20185103,-0.58223844,0.061218563,-0.3135763,-0.10366019,-0.7988654,-0.08438061 -38,0.47101194,-0.12984045,-0.612298,0.049877048,-0.4224376,0.052932203,-0.14775448,0.24579516,0.33359152,-0.34713975,-0.20072137,-0.17349789,-0.23309115,0.13713342,-0.006745326,-0.2661282,-0.20437048,0.26154688,-0.565204,0.7981492,-0.12034104,0.22184119,0.017916467,0.46101812,0.48272514,0.2787254,-0.17921111,0.1030078,-0.30370268,-0.36911133,0.10940377,0.13236739,-0.4655632,0.28719926,-0.3395273,-0.27793244,-0.10835887,-0.6707857,-0.36546883,-0.7930302,0.28231376,-0.7952768,0.54575527,-0.015166367,-0.22670613,0.28733495,0.2725113,0.50017965,-0.07462959,-0.18942854,0.23362719,-0.1429155,-0.123178735,-0.08265029,-0.21505019,0.049727183,-0.55620444,-0.003770635,-0.101536274,-0.112040214,-0.24112606,0.26681736,-0.23226117,-0.021380117,-0.16362654,0.72949463,-0.47996825,0.38847956,0.1842694,-0.175267,0.11055051,-0.75585383,-0.20030467,-0.08003216,0.17945066,-0.08726978,-0.018517597,0.23582087,0.022956612,0.35658628,-0.057560198,-0.13519153,-0.4447001,-0.04527792,0.16629067,0.42666164,-0.15757108,0.089593895,-0.17950316,0.014536926,0.22467725,0.25468284,0.39724016,-0.31280828,0.014221023,-0.18372713,-0.02761442,0.26648527,0.33220538,-0.15371601,-0.1298329,0.2877731,0.6480841,0.34766364,-0.13734417,-0.15590183,-0.03618396,-0.362169,-0.05085198,0.13080284,-0.31388023,0.4625319,-0.0076829004,0.0085583795,0.36960414,-0.07713564,0.001446013,0.10055447,0.22289379,0.17027661,-0.35131058,-0.38360167,0.39708784,-0.3973774,0.23532237,-0.0346367,0.48541063,-0.044869576,-0.5202659,0.30730763,-0.5803274,0.19047582,0.05496897,0.384938,0.6087157,0.40285823,0.42399308,0.7458514,-0.29531723,0.1271393,-0.13708015,-0.12405174,-0.07860953,0.011447327,0.111721836,-0.532354,-0.06640391,-0.20102921,-0.27262586,-0.023185713,0.32601577,-0.57568437,-0.11858863,0.26586142,0.85427135,-0.16901648,-0.06773401,0.8302547,1.1448901,1.2502767,-0.011611492,1.012438,0.19585778,-0.26668182,-0.044872105,-0.3355225,-0.5509206,0.23942494,0.2503148,-0.33562157,0.22621843,0.20100005,0.025168985,0.5641356,-0.39371076,0.12351852,-0.22795847,0.05482644,0.23240876,0.0077504343,-0.46149492,-0.2602814,0.057804324,0.07850672,0.057009798,0.21907274,-0.30604506,0.115467854,0.04541381,1.7772037,-0.17969295,0.03646088,0.21531089,0.15598263,0.024309134,-0.2462778,-0.15575147,0.39160588,0.14370176,0.033010066,-0.43638155,0.05749952,-0.33454427,-0.31199536,-0.14141883,-0.20149328,-0.046480715,0.04249016,-0.3031557,-0.24404344,-0.22405782,-0.48722556,0.5205149,-2.5972083,0.01675084,-0.16451046,0.37433085,-0.39144257,-0.4758787,0.046782825,-0.3292944,0.22996128,0.24538934,0.4395143,-0.49829102,0.31550732,0.4234583,-0.8606809,-0.15215047,-0.503213,-0.15934911,0.05764442,0.1995398,-0.10407216,-0.048240032,0.048102967,0.11117671,0.34852242,0.07591987,0.11235924,0.5854678,0.38190514,-0.056232695,0.5275408,0.09558851,0.44991803,-0.21088015,-0.2968838,0.4855394,-0.37261456,0.349242,-0.05652654,0.041499022,0.48145366,-0.404521,-0.69419277,-0.5787558,-0.16160242,1.1550319,-0.19508424,-0.575777,0.12322911,-0.4028586,-0.34156278,-0.058074296,0.40591654,-0.026522292,-0.08247666,-0.91850656,-0.088386424,-0.11304806,0.2672073,0.024272455,-0.03256433,-0.57563084,0.82389927,-0.14046161,0.58099425,0.4821685,0.3074054,-0.1790211,-0.181723,0.06700646,0.8207676,0.45375314,0.020944582,-0.2749537,-0.07886578,-0.3913595,-0.15592349,0.14972866,0.419906,0.5013062,-0.16400051,0.041191068,0.20830038,-0.15449773,-0.010921882,-0.14880398,-0.3022662,-0.18355381,-0.045238633,0.5275982,0.68834877,-0.022956202,0.49617547,-0.001159106,0.3065248,0.0019838607,-0.43058687,0.21225548,0.94871587,-0.19744848,-0.43200538,0.55452365,0.54786557,-0.31722015,0.48808333,-0.45495012,-0.14130726,0.30996472,-0.10371423,-0.63090485,0.032750938,-0.38137534,0.17158297,-0.59285146,0.34627756,-0.36472774,-0.38198885,-0.55313694,-0.12140234,-1.1327454,0.35341576,-0.3288034,-0.1607995,-0.033800192,-0.08304857,-0.15428136,-0.6081019,-0.75457895,0.055050384,0.13855052,0.59590495,-0.19504848,0.063429154,-0.058964185,-0.4998307,-0.283309,0.14637382,-0.0025215617,0.42053747,-0.10871059,-0.39447597,-0.09238189,0.024769792,-0.21238327,-0.11170574,-0.75694275,-0.3484649,-0.17605188,-0.5248889,-0.19955744,0.51409686,-0.39501768,0.058004033,-0.31907782,0.022861669,0.092356004,0.1370897,0.06598562,0.29100385,0.2111678,-0.09401516,-0.03063098,-0.15787573,0.4055288,0.17461887,0.20010865,0.37025326,-0.08841901,0.24479768,0.344003,0.7817263,-0.18344262,0.80995667,0.45946127,-0.27338353,0.23893392,-0.24539039,-0.28903183,-0.6308467,-0.13919008,0.11044786,-0.39689246,-0.3876783,-0.06723706,-0.3253002,-0.82611984,0.58947754,-0.03866508,0.24045062,0.051114175,0.20116128,0.602615,-0.26397696,-0.08505731,0.031745218,-0.11852231,-0.46103683,-0.28230458,-0.5232606,-0.37932736,0.14983328,1.1229382,-0.3069022,0.13363637,0.35156327,-0.41752976,0.0081282435,0.14548601,-0.1373771,0.01494731,0.65598327,0.07782427,-0.45892826,0.21230245,0.17618808,0.0969921,-0.4844854,0.45076194,0.6741366,-0.37120277,0.70657814,0.2196766,0.14247933,-0.15259124,-0.658649,-0.18716863,0.06747981,-0.3555853,0.34998187,0.3727126,-0.50793463,0.15202749,0.22316715,-0.2174901,-0.8720131,0.47333136,-0.078208394,-0.2738809,-0.16818237,0.48196444,0.036739368,0.070294484,-0.055228945,0.24177107,-0.32329515,0.24340104,0.25906795,-0.18156125,-0.06817927,-0.3462627,-0.18086906,-0.864231,0.30627707,-0.30059186,-0.5152983,0.3818771,0.12264921,-0.15158984,0.25368887,0.44407114,0.38725454,-0.17000905,0.10016068,-0.2990966,-0.20245668,0.43916592,0.5019081,0.544967,-0.54627657,0.46916822,-0.08808445,-0.06732028,-0.1471512,-0.08522917,0.37838045,-0.12027305,0.20470843,-0.0130366,-0.15047039,0.035839222,0.3946421,0.13036661,0.35049847,-0.064458266,-0.11571678,0.10020246,-0.007847599,0.16151358,-0.3596812,-0.7000422,0.28998914,-0.16700909,0.0783213,0.34999678,0.04186042,0.19961308,-0.07729211,-0.43059593,-0.062048238,0.07966728,-0.16607061,-0.9657144,0.25778666,0.010833348,0.87151057,0.6046356,0.03600469,0.03719443,0.551627,-0.11510229,0.014481604,0.37718242,-0.065328054,-0.51451147,0.34158984,-0.63575965,0.44042438,-0.01504973,0.008830019,0.034897212,0.006944354,0.52800477,0.6313338,-0.32006767,-0.08065096,-0.22157438,-0.28974676,-0.007996516,-0.31175217,0.3468027,-0.60939616,-0.51014435,0.5732006,0.60360146,0.49895635,-0.26709694,0.06521984,0.076954536,-0.39767307,0.41260865,0.099884555,0.07780344,0.25138494,-0.600712,0.016452849,0.36479682,-0.32276806,-0.13332355,-0.01520685,-0.03863396,0.0665531,-0.16283394,0.009099648,0.030117946,-0.8369675,-0.007019094,-0.28712773,-0.31047532,0.06784348,0.07630567,0.08174503,0.05214841,0.027527815,-0.19938925,0.5720061,0.04648694,0.9622137,0.017625403,0.05706817,-0.16502981,0.35443968,-0.04670987,0.03671264,0.12569429,-0.13543303,0.19872892,-0.7091719,0.58570755,0.062085163,-0.37105784,-0.09636482,-0.1423601,-0.11823427,0.5889596,-0.20600541,-0.2121625,-0.20780401,-0.2127924,-0.13001418,-0.24349035,-0.038541835,0.12302961,0.10712288,-0.20582353,-0.20419025,-0.08336093,-0.215468,0.3821451,-0.03533861,0.44849578,0.34104252,-0.04156961,-0.6090603,-0.047043223,0.11505188,0.42072052,-0.15815076,-0.19411412,-0.21261056,-0.40165517,-0.40728608,0.5451525,-0.07218842,0.37102562,0.059361525,-0.08327688,0.90056515,0.16014782,1.3736877,-0.08240997,-0.29640964,0.06149528,0.5653969,-0.021920191,-0.10685668,-0.3702968,0.80658585,0.5205631,0.022298558,-0.0204945,-0.40503576,-0.18941103,0.17041814,-0.14779806,0.068631716,0.03471023,-0.40486726,-0.30766663,0.04891894,0.30824882,0.06650164,-0.19982664,0.09352247,0.37011766,0.016106347,0.25384417,-0.29281634,-0.37461478,0.27627143,0.2600749,-0.011816606,0.14834473,-0.4871431,0.41032162,-0.6479539,0.21863239,-0.16437767,0.16615292,-0.23933281,-0.24155259,0.21792495,-0.007650622,0.42125535,-0.55538535,-0.19261768,-0.26406017,0.39567438,0.27502897,0.03474876,0.6462735,-0.25755078,0.024274658,-0.0023527571,0.48922652,0.88530403,-0.15615681,0.029814979,0.19604433,-0.38682795,-0.52796793,0.23627909,-0.29773265,0.02762616,0.027257511,-0.2291347,-0.5869527,0.19715115,0.12763603,-0.199645,-0.17681481,-0.6692441,-0.18040118,0.33137995,-0.3464665,-0.044845056,-0.22540368,0.0066695595,0.5324019,-0.0034012794,-0.5990181,-0.060436692,0.023707883,-0.14250137,-0.38134116,0.056983147,-0.4758349,0.27440092,-0.0802238,-0.31590346,-0.34431186,0.12424577,-0.39439914,-0.1263131,0.04889064,-0.1912948,0.047335207,-0.32238072,0.03351766,0.8339033,-0.12395441,0.16707675,-0.3310769,-0.43693605,-0.8079649,-0.20476332,0.1077688,-0.11021091,-0.017548975,-0.6634332,0.0149855865,-0.45625868,-0.11651259,0.005298241,-0.28347835,0.3664779,0.24672952,0.34064072,-0.49486452,-0.8182419,0.23762633,0.11630335,-0.1414133,-0.43386826,0.3715732,0.12013261,0.7383543,0.0171572,0.036053803,0.1354463,-0.5748348,0.16425346,-0.11140002,-0.09764765,-0.53502417,-0.024128338 -39,0.23723601,-0.31741157,-0.51863974,-0.21602903,-0.1855695,0.025513934,-0.13345776,0.3043798,0.2945879,-0.16280945,0.017805714,-0.15707418,0.0390466,0.48277953,-0.0786963,-0.6817081,-0.20151179,-0.010012343,-0.5163501,0.58149564,-0.42385176,0.2762663,-0.17462642,0.24304909,0.27178928,0.4069634,0.14967002,-0.13867308,0.11445839,-0.0018374095,-0.039061207,0.10254162,-0.49132007,0.11920854,-0.03768372,-0.3421883,0.085700385,-0.3844723,-0.5447943,-0.6371633,0.47668678,-0.82894033,0.56386817,0.093615256,-0.2733864,0.27112362,0.22494327,0.3021899,-0.33021304,0.058911324,0.21170451,0.20261875,0.14710349,-0.08846049,-0.34439608,-0.56014097,-0.6040052,-0.0021314071,-0.57692426,-0.26634443,-0.29227957,0.09289983,-0.3727186,-0.09741732,-0.037480555,0.10593177,-0.50701797,-0.014219591,0.18978573,-0.12064503,0.2583117,-0.5009316,-0.09211388,-0.07902546,0.08481519,-0.21761315,-0.060546644,0.41813564,0.070918046,0.3543814,0.0052529573,-0.18861665,-0.27232566,-0.113527626,0.06188459,0.46548197,-0.15201347,-0.30115297,-0.23113738,0.13934635,0.20864597,0.28152344,-0.12690388,-0.31383073,-0.022867521,0.021504452,-0.09542832,0.46191677,0.44924495,-0.32410467,-0.40712392,0.4362915,0.4141299,0.22473416,-0.056083344,0.071959384,0.17912666,-0.42733952,-0.14570688,0.089444876,-0.21326797,0.3440434,-0.04286991,0.22421516,0.72587305,-0.2221423,0.21034104,-0.09177439,-0.084885955,-0.21482325,-0.24709867,-0.102372766,0.11056205,-0.5069687,0.26931265,-0.08576283,0.84936917,0.0976118,-0.6823789,0.3253983,-0.65288156,0.14563319,-0.25323355,0.6408587,0.7821236,0.15687965,0.3022836,0.72657406,-0.34438026,0.19604233,-0.120080695,-0.5027436,0.32880118,-0.11754906,-0.113061,-0.6706953,-0.09956079,0.13831261,-0.09530962,0.07177631,0.47896773,-0.49359798,-0.05865018,0.17661054,0.9499918,-0.29381093,0.079490885,0.45394012,1.0021559,0.8475411,-0.0021340125,1.2450842,0.24904037,-0.22642507,0.4135952,-0.5716339,-0.8766519,0.22382896,0.43662247,-0.37467167,0.3720904,0.13496384,0.13905749,0.22379883,-0.39999786,0.12992978,-0.20334196,0.31050327,0.04530175,-0.0072946046,-0.43152764,-0.19209117,-0.0911744,0.05227252,0.18339866,0.26923192,-0.3151507,0.06404987,0.015730321,1.7644706,-0.16166535,0.1499337,0.09565416,0.5613585,0.26325205,-0.13503274,-0.14810051,0.37479994,0.47959545,0.050409075,-0.70262563,0.21784078,-0.28760192,-0.41860044,-0.16019453,-0.42615703,-0.047699623,0.019036083,-0.3122779,-0.055266403,-0.029753773,-0.44025066,0.3939566,-2.8608623,-0.12164876,-0.14083073,0.23053044,-0.3311507,-0.1176573,-0.1313314,-0.39636838,0.44267422,0.4429301,0.4163407,-0.5355333,0.22047265,0.64799404,-0.5533806,-0.0054508355,-0.47061428,-0.033550207,-0.11043039,0.5655752,-0.056967326,0.002569891,-0.12529936,0.49235246,0.2897122,0.12470555,0.10678708,0.35209534,0.44452852,0.11473232,0.3063143,-0.067906536,0.4216817,-0.17514008,-0.21801092,0.33397192,-0.16397358,0.35739473,-0.10358273,0.15404174,0.38325214,-0.45740348,-1.0038518,-0.52038735,-0.36341742,1.030193,-0.3372853,-0.30833203,0.401893,-0.3611267,-0.13546422,-0.112912536,0.49504873,-0.1701952,-0.16308157,-0.7953519,0.17031655,-0.18463963,0.16565546,0.122129515,-0.009564941,-0.30902955,0.6380415,-0.044514094,0.3682121,0.11185185,0.040263914,-0.17911185,-0.39558363,0.119921915,0.7259715,0.3679072,0.09424185,-0.24323867,-0.26746315,-0.19844256,-0.22218587,0.049164873,0.434005,0.8170439,-0.050856348,0.024057444,0.26769862,-0.25233084,-0.025963545,-0.15839726,-0.22016133,0.03895799,0.043851018,0.46325588,0.5161981,-0.088013224,0.43907323,0.003236069,0.14925933,-0.21291365,-0.39835328,0.484071,0.75310576,0.087525286,-0.16864027,0.69703424,0.60826993,-0.28669143,0.53531396,-0.7409493,-0.12707046,0.46282944,-0.22995909,-0.40582854,0.15697318,-0.4138379,0.044890944,-0.93689847,0.22875403,-0.09783486,-0.3659236,-0.37544954,-0.10444586,-3.7245374,0.14927444,-0.27182415,-0.27554253,-0.16346142,-0.017908482,0.49152344,-0.5779662,-0.61961544,0.14710881,0.07767132,0.70404065,-0.0026898568,0.14530146,-0.18351197,-0.11941065,-0.36424637,0.14627448,0.0372653,0.30487525,-0.019472856,-0.5037655,-0.1697482,-0.05846131,-0.40819496,0.13671216,-0.5160901,-0.36370367,-0.22841246,-0.7378843,-0.07263062,0.6052323,-0.10922316,-0.10048839,-0.2880089,0.04666076,-0.09417677,0.3561603,0.25622928,0.08164982,0.14871684,0.024034735,-0.07684328,-0.3167896,0.467009,0.0025374019,0.46933997,0.35297912,-0.090670936,0.14337257,0.5750462,0.4050671,-0.14588578,0.7074458,0.5953571,-0.17682728,0.21259154,-0.23005135,-0.16238227,-0.50766903,-0.39644894,-0.2782071,-0.31291935,-0.5283191,-0.24557616,-0.35518634,-0.78472286,0.5538099,-0.039623592,0.41301364,-0.019681403,-0.06255894,0.40075234,-0.022118052,-0.026830005,-0.022183742,-0.23749122,-0.40899545,-0.26525268,-0.57531774,-0.39479524,0.5136484,0.97425616,-0.2839809,-0.08423188,0.06476196,-0.26254943,-0.18369819,-0.039058384,0.08369867,0.41515413,0.42653793,0.12183338,-0.62680274,0.5307575,0.06448081,-0.018586388,-0.51429486,-0.009678107,0.5230115,-0.59882903,0.47115898,0.15582058,0.12487265,-0.009507399,-0.4912546,-0.17595206,0.078321464,-0.18053912,0.38559306,0.22306725,-0.81352425,0.3855664,0.26012465,-0.30192447,-0.74542207,0.48234856,-0.032992575,-0.2627406,-0.18099426,0.23718295,0.05781922,0.035610676,-0.11708157,0.43008703,-0.26976895,0.30112785,0.17661852,-0.08984613,0.46397576,-0.17562817,-0.1359716,-0.62372786,0.11850143,-0.37175024,-0.2951283,0.32750013,0.015780669,0.12251329,0.16067736,-0.036356654,0.35726264,-0.34845978,0.08902417,0.11633983,-0.2807306,0.36826575,0.38650683,0.456269,-0.36606672,0.5546437,0.0050251232,-0.1268515,0.15682319,0.07554588,0.47088617,-0.032692246,0.29240027,-0.013785133,-0.21900108,0.39867738,0.94613266,0.09322552,0.37621593,0.021887949,-0.09206944,0.24479148,0.068641074,-0.10611253,0.06266431,-0.5560207,-0.12936503,-0.06762089,0.22208947,0.36202717,0.20438808,0.23762989,-0.15732247,-0.32761967,0.15966463,0.24343158,-0.05515149,-1.0927793,0.24445917,0.23475745,0.59834313,0.5845473,0.013189531,-0.024866374,0.70247585,-0.15323287,0.09157748,0.42586216,-0.0071955966,-0.6263292,0.5869511,-0.55618125,0.5834044,0.0245165,-0.07013343,0.0764927,0.13469249,0.29996544,0.84059644,-0.1240638,-0.08900615,0.028568882,-0.31311563,0.16257557,-0.19219524,0.19648936,-0.6171707,-0.31990668,0.48255965,0.58908135,0.17345181,0.03966478,-0.0500783,-0.04958064,-0.020276723,0.10205193,-0.01759785,-0.12293197,0.023707118,-0.7800588,-0.29264075,0.40730408,0.13999228,0.13499582,-0.19153151,-0.14087102,0.19271299,-0.32425025,-0.054303177,-0.05341351,-0.68181,0.07347288,-0.22854519,-0.4150883,0.5394169,-0.36310437,0.302407,0.08362213,0.015930153,-0.30989265,0.349865,0.10283006,0.78234303,-0.13055107,-0.09485397,-0.4316889,0.044548906,0.16559717,-0.17521238,-0.17614794,-0.3576744,0.015683692,-0.7649187,0.52869225,-0.09604122,-0.45652348,0.043189764,-0.24069493,0.1188895,0.4467736,-0.016405033,-0.25694457,-0.31410423,-0.29113153,-0.31048265,-0.16701987,-0.22797336,0.19049074,0.15893942,-0.19563405,-0.18847407,-0.14136547,-0.1435934,0.41888678,-0.082543865,0.3372418,0.3915825,0.22019264,-0.11786776,-0.09477374,0.33533397,0.581548,0.0020444302,0.11677925,-0.16224912,-0.28590012,-0.32371476,0.16512798,-0.23875104,0.35989887,0.14533305,-0.3796098,0.5879732,0.05737812,1.0979252,0.0740587,-0.2810766,0.114315234,0.5294451,0.14586109,-0.13105632,-0.40842313,0.8460855,0.7085969,-0.05082411,-0.23252045,-0.40218294,-0.15087602,0.26614684,-0.3089957,0.016617142,0.022069873,-0.72906774,-0.22116736,0.38993073,0.29084063,0.11869938,-0.032855473,0.09792212,-0.05812156,0.087042876,0.38738126,-0.4492634,-0.10334941,0.27420202,0.10286784,0.23394845,0.26776022,-0.5500474,0.37185276,-0.5402545,0.10372203,-0.3140906,0.18062589,-0.1981521,-0.31888103,0.18807562,-0.07525751,0.48182303,-0.19481403,-0.42152703,-0.29527208,0.5670741,0.09094851,0.11979391,0.6992677,-0.28553337,0.2521016,-0.108475655,0.4939251,1.1204472,-0.1825179,-0.04679946,0.25681263,-0.3238719,-0.8511787,0.24457504,-0.45835397,0.21959308,-0.057945963,-0.24291739,-0.35808864,0.25046295,0.07814404,0.08993174,-0.06882334,-0.44580272,-0.28962997,0.16765057,-0.13628168,-0.2644073,-0.38190416,0.072012104,0.80514234,-0.28227562,-0.2258994,0.15454045,0.35520172,-0.14379017,-0.5556449,0.00021986548,-0.21718827,0.2746054,0.052439187,-0.33132,-0.08911614,0.054752257,-0.3729237,0.23817798,0.24034779,-0.37016127,0.061491627,-0.20902443,0.013209838,1.0267149,-0.26486605,-0.064291276,-0.7341065,-0.43100378,-0.94328505,-0.36132902,0.5854522,0.14265035,0.036897037,-0.4242531,0.22421573,-0.009362056,0.16205469,0.025383115,-0.5215066,0.43400222,-0.0014618177,0.46963173,-0.1132526,-0.9478339,0.16495815,0.105837785,-0.30415684,-0.7506767,0.6960042,-0.33484605,0.8257475,0.12643518,0.07939366,0.1384463,-0.35937613,0.057028327,-0.36639068,-0.28975603,-0.85127044,0.19708978 -40,0.413376,-0.14857484,-0.6249626,-0.08067673,-0.27434894,0.3011815,-0.34049076,0.18195432,0.11729793,-0.58347756,-0.06263754,-0.27754936,-0.15766248,0.14473629,-0.005999746,-0.4768649,-0.20599246,0.32515845,-0.7272269,0.6701456,-0.38489768,0.31170025,0.384423,0.12084119,-0.15381879,0.10335718,0.06813598,-0.24982058,-0.17196336,-0.26222837,0.023602527,-0.12749639,-0.5704857,0.38818333,-0.20847043,-0.3293338,0.05729505,-0.4129996,-0.24571368,-0.70445544,0.14150688,-0.68105406,0.656024,0.120544754,-0.26214826,0.21168967,-0.0044153533,0.19876562,0.0054591657,0.092424266,0.36775443,-0.3272216,-0.5142849,-0.39015993,-0.25076494,-0.46602026,-0.60734075,-0.04977119,-0.5118874,0.06733085,-0.015814686,0.3067742,-0.17173344,-0.13198796,-0.25232258,0.45675427,-0.32780755,0.07883005,0.109292954,-0.20336641,0.19196956,-0.63423496,-0.0060288827,-0.15540284,0.11509702,-0.020933663,-0.17248923,0.038779147,0.039915085,0.7204437,0.07066861,-0.18602389,-0.18799524,0.047241457,0.09819751,0.44578373,-0.12915944,-0.0030053179,-0.03742265,-0.08932042,0.38052103,0.08190542,0.11522787,-0.41801167,0.028685471,-0.2993529,-0.35337517,0.24214874,0.53940797,-0.24043986,0.059058126,0.50579655,0.3636512,0.10967031,-0.16357055,0.006796849,-0.13458495,-0.3669229,-0.049519096,0.4041652,-0.09630955,0.5552509,-0.096734494,0.27443942,0.38527665,0.033062946,-0.20884858,0.17325792,0.016338404,0.122635484,0.05351611,-0.16431107,0.37909192,-0.52511215,-0.118849024,-0.52583957,0.59092206,-0.13861097,-0.872079,0.5044424,-0.4879331,0.022415435,-0.024247544,0.66227967,0.8184837,0.62812793,-0.120480545,0.9144691,-0.47584164,0.106742226,-0.3950875,-0.18579645,0.16991572,0.16963218,0.29726785,-0.49030384,-0.17733099,-0.09558453,-0.25263304,-0.2362686,0.59693706,-0.42623833,-0.2303895,0.08939753,0.5857198,-0.26211402,-0.0818921,0.71324146,1.0287077,0.7774819,0.21834736,1.2638278,0.36599082,-0.27560467,-0.13420935,-0.29981807,-0.7357848,0.21930799,0.20514724,0.41444293,0.1457118,0.10659705,0.0058532753,0.35501882,-0.24999198,-0.07135677,-0.27151746,0.16529217,-0.2545374,-0.0047251624,-0.1510564,-0.12472468,0.09132719,0.019712625,0.22913279,0.16089468,-0.24147715,0.23097517,0.28979272,1.6130854,-0.18916525,0.08900125,0.1103884,-0.16217308,0.19748695,-0.072099015,-0.11391496,0.31191623,0.2288638,-0.09296041,-0.47673368,0.036997434,-0.12738517,-0.56672865,-0.20456208,-0.06676216,-0.058315415,-0.34536484,-0.30683085,-0.2674685,0.07286739,-0.72259176,0.2822859,-2.5638433,-0.29953247,-0.0069368044,0.39873627,-0.273828,-0.36523122,-0.10151943,-0.3546976,0.6175198,0.2466813,0.3461159,-0.63249534,0.58554935,0.38532767,-0.455608,-0.1958674,-0.6922683,0.06384544,-0.05486016,0.32572138,0.029258879,-0.2609758,-0.09518298,-0.122089,0.30274254,-0.29596668,0.049939577,0.5199244,0.488906,0.1371,0.30468163,0.03857545,0.55018616,-0.2954304,-0.22545023,0.4765879,-0.32591993,0.18399422,-0.09898294,0.20471402,0.36331895,-0.4133938,-0.43885198,-0.64799684,-0.16557841,1.069258,-0.23513293,-0.44240066,-0.0061418414,-0.10450063,-0.33562738,0.06788694,0.51556736,-0.09688158,-0.17524926,-0.8313593,-0.25289127,-0.038725205,0.5373198,-0.036179364,0.17654,-0.4321427,0.6308157,-0.057623707,0.5668249,0.59733754,0.24560761,-0.2751585,-0.17716233,0.29326996,1.0545155,0.3177155,0.034891985,-0.18997717,-0.2510184,-0.14774169,0.02078158,-0.040022936,0.48155054,0.6435843,-0.016251957,-0.10957443,0.43972003,-0.23245764,-0.051098086,-0.28709528,-0.3856006,-0.17637137,-0.06245214,0.42269418,0.5819566,0.18702255,0.593813,-0.08719449,0.3830342,-0.15961371,-0.44902766,0.49440953,0.7198656,-0.16747381,-0.1316023,0.33928666,0.38539746,-0.19266978,0.53148913,-0.57514584,-0.38301545,0.15730263,0.025647538,-0.4138257,0.35743856,-0.31585345,0.28247336,-0.9307655,0.32207662,-0.191066,-0.42515135,-0.76753384,-0.032871805,-2.0610325,0.16322406,-0.18196693,-0.026897682,0.037252847,-0.117327906,0.13901494,-0.4217782,-0.5466736,0.016491093,0.28698698,0.5301441,0.12716623,0.20241459,-0.14510079,-0.36681122,-0.10376366,0.4346646,-0.039388258,0.10006794,-0.13157503,-0.2622749,-0.072182626,-0.34097573,0.0082706455,-0.09799077,-0.6574036,-0.28562132,-0.110398814,-0.43019262,-0.31603733,0.64095116,-0.3942413,-0.06341062,-0.32288638,-0.0038428982,0.27897814,0.25840554,0.20421867,0.14660266,0.07693814,-0.10723664,-0.1427138,-0.3260642,0.10961895,0.06819215,0.04059536,0.65500957,-0.072580844,0.28144532,0.32034752,0.6147998,-0.048401874,0.833178,0.47628433,-0.081939556,0.25083658,-0.19367531,-0.083772354,-0.59517354,-0.1185311,-0.2361395,-0.49718508,-0.31002468,0.04634412,-0.28651094,-0.78173983,0.42823952,0.22915736,-0.15110208,0.246128,0.5823449,0.50743496,-0.14227177,0.088034734,-0.24391665,-0.31376833,-0.27086937,-0.4905129,-0.8144675,-0.33836094,-0.047811642,1.2467494,-0.0075916806,-0.030003624,0.26426914,-0.14478976,0.040579233,0.0043649874,0.13064082,0.13097566,0.4111565,0.103767544,-0.5464493,0.40394866,-0.085838586,0.031065647,-0.5302916,0.30022362,0.8138849,-0.6522861,0.12578799,0.38845742,0.13617381,-0.12281907,-0.5530636,-0.115979545,0.20849821,-0.3037821,0.26158813,0.09974139,-0.52519184,0.5561374,0.28888226,0.007852221,-0.9257418,0.17509769,0.06582164,-0.38267213,-0.058264744,0.38520387,-0.024370614,0.06600979,-0.31371212,0.21677954,-0.37150404,0.2860994,0.10805824,-0.24463387,-0.00597713,-0.28929153,-0.26781633,-0.76460016,0.105558716,-0.40132982,-0.4094416,0.2764554,0.1366644,0.24940303,0.34561634,0.26003075,0.45869344,-0.46220866,0.15866414,-0.24267322,-0.17082281,0.33125067,0.41860715,0.28344563,-0.3382761,0.5067865,-0.19970217,-0.10862505,-0.3303272,-0.012260823,0.37465218,0.0904829,0.05108246,0.13313475,-0.07690627,0.29815826,0.7191954,0.067658335,0.24133795,0.06212611,-0.34426436,0.3483496,0.040884245,0.23349787,-0.36051908,-0.55020535,-0.19784327,0.08552793,0.27506843,0.30670148,0.088576764,0.5254816,-0.24944833,-0.18335561,-0.03951982,0.09098593,0.14286773,-0.67571044,0.34308738,0.10672331,0.6810876,0.59835696,0.039337937,0.2011966,0.4869259,-0.43830472,0.14994213,0.18819806,-0.30047545,-0.32664916,0.38765654,-0.62571126,0.027110223,-0.14161082,0.029561218,0.16362089,-0.11959832,0.39877266,0.9267667,-0.16617304,0.17018503,-0.14538637,-0.16380736,0.023762917,-0.273058,0.042306535,-0.46085003,-0.49775326,0.70408595,0.22028814,0.459268,-0.2898831,0.052073166,0.24989204,-0.21750031,0.46825328,0.14399341,0.18326643,0.12344432,-0.3683451,-0.11023987,0.70373756,0.03395335,0.06263211,0.15456657,-0.27494666,0.1782233,0.0031189919,-0.12892127,-0.20916656,-0.61605436,0.07963668,-0.46998724,-0.32964543,0.44524983,0.027781157,0.19222072,0.12772006,0.030221997,-0.2056537,0.27318203,0.4131679,0.6998933,0.22279827,-0.09683361,-0.02585449,0.08867404,0.099951714,-0.20939788,-0.13681994,0.04240203,0.25830173,-0.7827785,0.44224054,-0.15594174,-0.39064282,0.247932,-0.22080322,0.02779669,0.5276866,-0.09160972,0.022035027,0.26810473,-0.0854999,-0.330175,-0.16783524,-0.28133726,0.23146158,0.04340807,0.06533502,-0.2449475,-0.031606443,-0.21667005,0.3094076,0.26838976,0.22373642,0.40094578,0.1519131,-0.59417397,-0.032961804,0.23626325,0.32112586,0.06377344,-0.045463137,-0.2288376,-0.15498392,-0.382491,0.2805603,0.0039135017,0.12011936,0.06277221,-0.46954188,0.8830468,0.22836466,0.9634525,0.060786407,-0.16279931,0.05871037,0.42230323,-0.0308091,-0.002748706,-0.4475097,0.9152925,0.66316473,0.08179114,-0.047477294,-0.3060794,-0.17860538,0.27819145,-0.18750323,-0.016172325,0.022582889,-0.85584044,-0.4539736,0.1791367,0.16397946,-0.16760737,-0.21329369,0.12337422,0.07855361,0.016938707,0.12080871,-0.5324659,0.0040099104,0.3428398,0.10994939,-0.09706931,0.23347855,-0.40386397,0.33438027,-0.62629354,0.12281652,-0.26864088,-0.03434328,0.19188581,-0.016670406,0.12947878,0.11581969,0.08955755,-0.33799475,-0.45194754,-0.16880642,0.4816305,0.1561025,0.36285383,0.75750446,-0.23688337,0.14318071,-0.027227037,0.5234141,1.1980236,-0.28565073,0.08062816,0.27926704,-0.39009687,-0.5697366,0.15048738,-0.30779588,-0.019149622,-0.11840861,-0.33028564,-0.273777,0.3695195,0.03712214,-0.14446887,-0.052213132,-0.5516816,0.0069094617,0.37183225,-0.27596474,-0.19664374,-0.18025367,-0.04698873,0.7372761,-0.24537954,-0.32747617,0.007554738,0.24299963,-0.49601373,-0.44887882,0.12739493,-0.5358283,0.16168621,0.35279453,-0.20494716,0.17184952,0.069814526,-0.5682572,-0.036935624,0.27256182,-0.38068804,-0.1898714,-0.40672773,0.13930371,0.792683,0.04972617,-0.09242266,-0.28808162,-0.5909963,-0.63143003,-0.44329053,0.035941817,0.1371975,-0.037618365,-0.668382,-0.0172986,-0.31558648,-0.17478769,0.043341443,-0.45167258,0.502457,0.22245973,0.4686756,-0.37347183,-0.96709454,0.15317583,0.1533308,-0.2709246,-0.39849085,0.42555434,-0.0012384971,0.8762586,0.007814201,-0.067971475,0.37788773,-0.8934408,0.2643746,-0.3705288,-0.10388199,-0.67069954,-0.006134029 -41,0.5811227,-0.08411075,-0.5846306,-0.08817162,-0.48351565,0.2234381,-0.47091478,0.23104432,0.26361206,-0.5776421,0.18241633,-0.19601238,-0.025480857,0.23299721,-0.15667245,-0.39610004,-0.16065969,0.28628948,-0.45872444,0.5637519,-0.34104863,0.3766318,0.3682559,0.1976588,-0.13119704,0.09866396,0.11089875,-0.20091464,-0.2672312,-0.38431007,0.06622707,-0.0016729023,-0.7832717,0.37454754,-0.15088366,-0.47978354,0.18772367,-0.45849642,-0.17855693,-0.60192066,0.12387973,-0.7134856,0.7102269,0.058462795,-0.292761,0.13681646,0.035770535,0.31147408,0.0097378325,0.13237958,0.42456707,-0.4316372,-0.55983204,-0.2247615,-0.2465167,-0.52945715,-0.7815998,-0.1423479,-0.52658373,0.15959065,-0.2670045,0.38454315,-0.21348725,0.024314959,-0.074265204,0.34570557,-0.39675036,0.15094396,-0.03590225,-0.19973119,0.20834541,-0.54380643,-0.13894032,-0.14572784,0.14202721,-0.032129187,-0.20738773,0.11911235,0.15333362,0.61483425,-0.015053781,-0.2765027,-0.44834048,0.16414738,-0.19832124,0.67579347,-0.32582965,-0.19996105,-0.16870432,-0.123451635,0.46109053,-0.03686903,-0.11082784,-0.36757833,0.068296656,-0.2277235,-0.46795985,0.41254774,0.45797554,-0.57547,0.049381487,0.39698032,0.30842718,0.036241233,-0.16737427,0.027678678,-0.076978005,-0.3968512,-0.08999936,0.21447192,-0.1433564,0.3818131,0.015611148,0.34999147,0.39210632,-0.16356413,-0.24456279,0.15939876,0.020502005,0.1456827,-0.09521789,-0.318371,0.46625522,-0.6845669,-0.08620871,-0.3912876,0.82519203,-0.14133999,-0.89939827,0.4257064,-0.5340403,-0.097125545,-0.00077113084,0.5949542,0.66096836,0.8060413,0.0063787997,0.7318443,-0.36947876,0.01653853,-0.26153827,-0.16599713,0.30991346,-0.11623105,0.39275867,-0.5153019,-0.19866082,-0.024916185,-0.22812937,-0.12214763,0.8151662,-0.4386064,-0.09800279,0.261484,0.6374735,-0.2914517,-0.02850707,0.6681914,1.2497804,0.88791066,0.16310592,1.1648835,0.31511274,-0.16003653,-0.16337924,-0.16749355,-0.6919652,0.2216867,0.36341313,0.24347307,0.18539901,0.3179805,0.032686375,0.3907318,-0.1317211,-0.23718973,0.035791814,0.2071537,-0.15260006,-0.11755566,-0.34746012,-0.33424452,0.15703149,0.035804085,0.06902424,0.35281923,-0.23656127,0.28169006,0.31650236,1.5151561,-0.086988285,0.083752215,0.21794327,0.04370431,0.13021,0.06400629,-0.14692894,0.058476992,0.22914015,0.09886117,-0.35268298,0.10063387,-0.0756901,-0.50864166,-0.27249482,-0.08720426,-0.085089885,-0.25139382,-0.29699844,-0.25571457,0.08265841,-0.5899274,0.38524628,-2.4716713,-0.118087426,0.03753469,0.3801618,-0.06897292,-0.44791487,-0.12193557,-0.46909338,0.60413045,0.33994988,0.42545968,-0.44563502,0.5546735,0.37787572,-0.54825425,-0.2115535,-0.7774462,-0.12553188,-0.21568179,0.33731428,0.073064156,-0.4192166,-0.12640703,-0.12515043,0.494138,-0.17231815,0.1441534,0.3500858,0.47578675,-0.09804142,0.49484703,-0.051975224,0.44189262,-0.32370955,-0.26534012,0.35307533,-0.35361257,0.11122321,-0.18703006,0.20963791,0.36337477,-0.53471357,-0.801864,-0.5165913,-0.06325088,1.1640831,-0.19151543,-0.49870178,-0.01941264,-0.07430101,-0.2830514,0.08421921,0.42660615,-0.07280823,-0.07240329,-0.69637537,-0.101544276,-0.08650703,0.38525248,0.048004832,0.21279773,-0.52764714,0.6266222,-0.09103311,0.49905533,0.608084,0.2708703,-0.10052284,-0.2376983,0.19456284,1.0174363,0.24324778,0.14579637,-0.42757422,-0.046213515,-0.047151804,0.05487935,-0.09584594,0.42549962,0.65944165,-0.077801205,0.089203015,0.23309733,-0.26526585,0.06370037,-0.19753326,-0.5912929,-0.20679061,0.12974024,0.46173373,0.61842585,0.13565512,0.45211172,-0.008961767,0.26257452,-0.16499875,-0.36410132,0.31211188,0.7345832,-0.26517183,-0.18485777,0.6583316,0.42309684,-0.1075695,0.5398679,-0.51493436,-0.5532066,0.10723361,-0.09007762,-0.41271064,0.32878748,-0.38432756,0.05836469,-0.87429523,0.3324173,-0.30768946,-0.5887702,-0.57800865,-0.07268483,-2.816734,0.25889477,-0.12149508,0.06786771,0.21907432,-0.08775164,0.28916174,-0.47915488,-0.5127123,0.08470913,0.28200006,0.537095,-0.07805194,-0.0029995102,-0.23901343,-0.3549729,-0.2377309,0.44743136,0.29655537,0.12233966,-0.024319844,-0.42298296,0.07655619,-0.3549006,-0.011956667,-0.0450096,-0.62445897,-0.33954945,-0.08628031,-0.5593935,-0.5099233,0.7371046,-0.5395032,-0.027633611,-0.28814158,0.0641801,0.06842728,0.3029907,-0.081536576,0.089180455,-0.07010071,-0.12912746,-0.017182916,-0.25024372,0.22629526,0.10343188,0.23828371,0.6125668,0.0011947921,0.13309231,0.66602296,0.5364849,0.035453174,1.0288004,0.4263246,-0.17103328,0.19106688,-0.20391048,-0.12174188,-0.66550446,-0.105827585,-0.22550747,-0.45994133,-0.273735,0.21575542,-0.42851618,-0.721628,0.80359995,-0.01477428,-0.18833365,0.06255372,0.52326936,0.4091461,-0.13450499,-0.12411525,-0.19737312,-0.19906773,-0.33309722,-0.40639827,-0.732662,-0.42425272,-0.03851882,1.3574126,-0.09055682,0.08949132,0.2975892,0.09477185,0.021278087,0.1719186,0.08814509,0.13118707,0.45771456,0.1212813,-0.8259935,0.24707642,-0.37453824,0.0912105,-0.62869614,0.25200728,0.5804626,-0.85251236,0.22100653,0.5120749,0.28223148,0.07634057,-0.6398743,-0.18869507,0.2277231,-0.20784283,0.37942335,0.10255982,-0.75967664,0.5715334,0.19820921,-0.33054426,-0.8558693,0.29632086,0.051632743,-0.416892,-0.02613539,0.40793875,0.20698656,0.0151882935,-0.35621598,0.22168557,-0.4575964,0.39985976,-0.019326286,-0.19442545,0.20908165,-0.26155892,-0.13611706,-0.82061976,-0.093955286,-0.34651414,-0.45674995,0.29794982,0.035883926,0.120290935,0.30907127,0.30278116,0.41990978,-0.47642162,-0.058917176,-0.32205683,-0.37100902,0.4634928,0.47371227,0.43750742,-0.30777022,0.542008,-0.05087201,-0.09583996,-0.3738862,-0.07934179,0.39389873,0.010873233,0.19841845,0.015600922,-0.23466134,0.23936327,0.87414706,0.20311442,0.39242363,0.059051733,-0.17611396,0.36593717,0.03332947,0.1033992,-0.107572965,-0.51986015,-0.036609925,-0.16193059,0.12368883,0.5073019,0.07291559,0.45647022,-0.3616628,-0.038440865,0.07331922,0.034267433,0.20841901,-0.84027106,0.2919561,0.02846708,0.45683196,0.58929473,-0.042317364,0.16859093,0.62936634,-0.30627272,-0.051841445,0.27604952,-0.039487924,-0.11950655,0.5579761,-0.66833067,0.2448838,-0.089286104,0.08946766,0.20628868,-0.17632754,0.42911905,0.8702988,-0.1350505,0.14395788,-0.057546325,-0.17377517,-0.16526319,-0.2031988,0.12411375,-0.44738445,-0.21941973,1.0009338,0.25082916,0.51309305,-0.06290748,0.0062818727,0.1780578,-0.110689774,0.49816546,0.09787024,-0.07108712,-0.062249362,-0.44842842,0.030999307,0.7390581,0.1572664,-0.025100576,0.09632693,-0.20520756,0.2986016,-0.051047828,-0.14769995,-0.09349823,-0.6156501,-0.034495987,-0.5943138,-0.34953716,0.5581897,0.2233021,0.15666449,0.022821337,0.20685951,-0.13330282,0.31917286,0.3830453,0.63935727,0.22858457,-0.27527592,-0.0059384448,-0.07178978,0.11230801,-0.25196293,-0.23940587,-0.1847264,0.26253107,-0.9122119,0.29472575,-0.41548815,-0.31991595,0.21958672,-0.05447477,0.07623429,0.4726049,-0.013017123,-0.015864128,0.25340983,0.15181829,-0.2337574,-0.361696,-0.3005568,0.055883314,-0.17543332,-0.20395045,-0.17873856,-0.23490612,-0.19475737,0.2871108,0.14197436,0.21290484,0.2576645,0.258626,-0.4437658,0.05380669,0.102873825,0.6044097,-0.19072923,-0.14651854,-0.48604462,-0.3106138,-0.2439141,0.21238957,-0.027237777,0.12609053,0.031059269,-0.47979718,1.0569326,-0.06915361,1.008042,0.0452871,-0.3138698,0.07766708,0.45406774,-0.19945757,0.04591121,-0.39783546,1.0860401,0.7041481,0.06569444,-0.17623556,-0.49460474,-0.18090336,0.17356446,-0.28580338,-0.100998364,-0.012170716,-0.73876953,-0.1659724,0.16808738,0.20964508,-0.0032457155,-0.21064912,0.27029374,0.21005403,0.13802265,0.13167405,-0.4904882,0.0025895494,0.36028177,0.3304887,-0.06820123,0.27284056,-0.4104487,0.27711424,-0.66828763,0.18838933,-0.49200985,-0.08283799,0.024037179,-0.0987697,0.21375425,0.105039455,0.16186787,-0.16666238,-0.40582314,-0.025231192,0.40789747,0.18761823,0.32668668,0.757081,-0.21791315,-0.07703585,-0.15376301,0.51811093,1.1183078,-0.3677828,0.027029216,0.41728163,-0.16908273,-0.5046237,0.1534041,-0.3675585,-0.13134931,0.09780234,-0.3835557,-0.36999655,0.21751358,0.14987634,-0.18515117,0.0048238295,-0.35840103,0.05781189,0.13621213,-0.3278099,-0.21154247,0.021177325,0.2826796,0.8687011,-0.2659403,-0.31151262,-0.10701893,0.39178294,-0.3017464,-0.46180412,0.07922787,-0.47089845,0.15273319,0.39691707,-0.3453082,0.09051623,0.15534796,-0.57195586,-0.1564463,0.45761052,-0.29539818,-0.14448728,-0.48767415,0.1136113,0.8910765,0.11161227,0.21803036,-0.37472555,-0.5901775,-0.86089367,-0.21935405,0.13511232,0.17824806,0.0030181408,-0.46843788,-0.053202663,-0.22345173,-0.3588811,-0.07690204,-0.7034527,0.364811,0.11382886,0.56527257,-0.33364275,-0.9662183,0.0017671521,0.103141464,-0.31147,-0.3869706,0.3109146,-0.12444075,0.9793528,0.12057314,-0.05123239,0.21630774,-0.7147767,0.24369718,-0.4385752,-0.15410955,-0.6999898,-0.08496384 -42,0.40876773,-0.15474746,-0.37351674,-0.04067662,-0.21825457,0.019393597,-0.20223927,0.41422248,0.3567364,-0.35744986,-0.28213048,-0.09792084,-0.03952216,0.22951135,-0.13665847,-0.64486057,-0.0075790966,0.21896696,-0.36801916,0.5666695,-0.4645361,0.1361765,0.012995177,0.5200774,0.12891817,0.2264336,0.034795668,-0.13777846,-0.16207351,-0.27950737,-0.14983709,0.47622496,-0.62028223,0.14376345,-0.27003947,-0.29357988,0.036315616,-0.50643605,-0.39458352,-0.78336966,0.19787383,-0.91922253,0.39358664,0.05575963,-0.25073835,0.50989586,-0.067325674,0.13433035,-0.24855934,-0.18475242,0.08774092,-0.42194223,-0.20135441,-0.27579713,-0.10813464,-0.054429762,-0.66727006,0.10398177,-0.31846252,-0.015279151,-0.36655086,0.11432094,-0.41292688,-0.041932743,-0.1197692,0.41797805,-0.44158432,0.18070766,0.12993753,-0.09306786,-0.0136780655,-0.51056325,-0.2237463,-0.08207194,0.27472076,-0.097187504,-0.2779141,0.27351972,0.20889378,0.48633242,-0.05815186,-0.28880507,-0.3097631,-0.017183075,0.17633082,0.6001538,-0.19259359,-0.37605557,-0.048612546,0.04959459,0.15164737,0.07610061,0.03791928,-0.20979641,-0.2022434,0.0024896434,-0.14269538,0.35530645,0.5124232,-0.34343863,-0.22957532,0.29281193,0.5126802,0.19358835,-0.15917967,-0.04349586,-0.011471155,-0.5410176,-0.089652725,-0.004313805,-0.2984974,0.5224884,-0.19552128,0.22534278,0.54073316,-0.22513464,-0.085640095,0.112922035,0.08468865,-0.028610706,-0.22846206,-0.19480477,0.40154666,-0.41754657,0.25177732,-0.16499789,0.72563046,0.18060683,-0.7004389,0.38775396,-0.42415974,0.14937718,-0.10425961,0.7196117,0.7360405,0.50009567,0.6102487,0.6972936,-0.5139583,-0.010543262,-0.044124145,-0.42029113,-0.003910303,-0.25275162,0.007583834,-0.42163882,0.058709867,-0.025173187,-0.0882364,0.2159364,0.3418264,-0.46148446,-0.014269204,0.2425029,0.68984556,-0.20052384,-0.18663181,0.88944584,1.024355,1.0159643,0.09702889,1.0699114,0.30687883,-0.12998246,0.15308782,-0.06752894,-0.8009639,0.23133084,0.27772918,-0.14813817,0.18681076,0.24274996,-0.00884495,0.38002834,-0.5291361,-0.09948603,-0.18939571,0.079358004,0.15186858,-0.009802469,-0.4838591,-0.32197857,-0.0947713,0.017161252,0.11404206,0.39628962,-0.14093584,0.3736373,0.13003068,1.4457047,0.051483486,-0.065155685,0.10319667,0.50001645,0.12775585,-0.054089915,-0.032364327,0.28328997,0.31001925,0.019076195,-0.50773543,0.026511282,-0.12919433,-0.34334892,-0.14318612,-0.28068855,0.0065162564,0.066570595,-0.23101377,-0.23655592,-0.18331018,-0.4242042,0.5440701,-2.741384,-0.105914645,0.07380389,0.3099363,-0.16911738,-0.44808203,-0.23137988,-0.62030643,0.30782655,0.22710183,0.5025098,-0.7229719,0.26297322,0.44383088,-0.73999256,-0.19909541,-0.7031404,-0.05050497,-0.0145570785,0.3973308,0.15249261,-0.0065407073,-0.021367213,-0.0105282795,0.57379776,0.04511026,0.018030658,0.33064204,0.45584494,-0.032120787,0.44812435,0.0060191792,0.52745265,-0.21146242,-0.23233439,0.39299697,-0.36460677,0.43855405,-0.32663092,0.06923589,0.44785994,-0.34919074,-0.8282003,-0.5781058,-0.18182243,1.4305432,-0.24300684,-0.47123393,0.20563279,-0.30983162,-0.25913998,-0.05302846,0.38400692,-0.20139933,-0.22385934,-0.7256535,-0.04578959,-0.090488926,0.1752055,0.013783854,-0.024806052,-0.36846596,0.69426674,-0.060977716,0.3876516,0.26236978,0.114157595,-0.14622037,-0.3488267,0.026034802,0.7956315,0.271904,0.20638366,-0.40535858,-0.3321059,-0.13611574,-0.12631926,-0.059022266,0.7305665,0.47896576,-0.116658784,0.051250767,0.38105884,0.11140076,-0.05507288,-0.23401383,-0.22201948,-0.1880689,0.07549579,0.62883556,0.9728359,-0.18048628,0.30078393,0.012335024,0.21900313,0.08930527,-0.4366396,0.43859297,1.1729578,-0.09725591,-0.15326282,0.58161366,0.40070343,-0.3157124,0.4762403,-0.41173336,-0.40320778,0.37671375,-0.16013262,-0.41495863,0.14611901,-0.29022747,0.1301389,-0.5666877,0.31580582,-0.20049635,-0.43743998,-0.5491223,0.08480867,-3.0454822,0.1609155,-0.33209187,-0.08522243,-0.20383964,-0.18341394,0.12728342,-0.56219554,-0.49943298,0.1991472,0.19005454,0.66706115,-0.13367128,0.12065782,-0.28049684,-0.35095838,-0.33536536,0.028500037,0.18199942,0.41285592,0.037380956,-0.38081354,-0.09318153,-0.18624273,-0.13655509,-0.011938883,-0.5781447,-0.4580495,-0.015544499,-0.52560765,-0.3152074,0.5558379,-0.4688253,-0.02114783,-0.2824137,-0.0262063,-0.18881719,0.25912428,0.04210003,0.13552484,-0.06817257,-0.019558737,0.06133174,-0.23150457,0.48945075,0.06268067,0.26464114,0.38983235,-0.057255507,0.120234005,0.4386455,0.6917778,-0.19267988,1.0284272,0.49772614,-0.17269762,0.16378157,-0.16996238,-0.42547506,-0.6429463,-0.20308504,-0.037977014,-0.530944,-0.32731667,0.0793478,-0.43337584,-0.90789765,0.6635279,0.025335586,0.13400985,0.036313612,0.23012365,0.68922937,-0.2126189,0.008773642,-0.053471662,-0.044612404,-0.55338985,-0.31069437,-0.5661872,-0.4029479,0.010695279,0.8996356,-0.26277137,0.10188425,0.14506845,-0.21716818,-0.091744065,0.21093634,0.026974099,0.040441036,0.5937172,0.17804043,-0.728433,0.50056523,-0.06820915,-0.11731429,-0.5638043,0.24940637,0.5566205,-0.72973925,0.6634223,0.39511782,-0.057705276,0.068134256,-0.45862398,-0.42363325,-0.27015552,-0.21392246,0.4212167,0.34954795,-0.8670112,0.48456433,0.39432073,-0.31457973,-0.7712175,0.30679032,-0.17299278,-0.25847098,-0.02834438,0.3371091,0.017668469,0.0985611,-0.040851586,0.075571254,-0.35686594,0.20551236,0.09089871,-0.1041006,0.016678343,-0.25347432,-0.11560978,-0.8692961,0.080870725,-0.41412428,-0.3653181,0.12713052,0.13957481,-0.054101102,0.1318681,0.17036441,0.39121804,-0.29426852,0.09029142,-0.03183822,-0.20517874,0.16696301,0.4664471,0.6259223,-0.34806377,0.6080703,0.083914496,-0.06604619,-0.15941657,-0.053780045,0.31158134,-0.061201237,0.3832521,0.049258787,-0.2488112,0.14080502,0.9016991,0.15874724,0.500881,-0.05301706,-0.07194127,0.43037114,0.028651342,0.3947253,-0.09730276,-0.6399617,0.13468507,-0.34832004,0.087105446,0.48635468,0.2580579,0.2527955,-0.116311625,-0.28081065,-0.012800894,0.10538465,0.1411211,-1.1367159,0.25186604,0.121058926,0.8269784,0.43844858,0.014907269,0.1546898,0.7098242,-0.18291001,0.1687232,0.37125757,-0.14184047,-0.481781,0.48289272,-0.7043003,0.4681881,-0.0426034,0.048428647,0.049739473,-0.0033991507,0.35342786,0.6258215,-0.31004634,0.010967029,-0.0810201,-0.2531874,0.040397882,-0.43715075,0.05891183,-0.5493403,-0.2295924,0.6834818,0.7000022,0.48434862,-0.21203841,0.13647583,0.07547068,-0.08021032,0.035101425,0.07203873,0.0521077,-0.011780714,-0.5441863,0.08506613,0.5919581,0.005727989,0.08224196,-0.1352179,-0.12114631,0.3076923,-0.21577121,-0.25932807,-0.17209773,-0.7306722,0.03915835,-0.28269953,-0.5953177,0.4283281,0.081928566,0.20319168,0.36731687,0.010382156,-0.25440145,0.30068678,0.17004956,0.7186462,-0.015355719,-0.19556196,-0.38597637,0.17135085,0.20281048,-0.13704874,-0.14266686,-0.27991152,0.071272895,-0.41976812,0.47746322,-0.19737534,-0.2723044,-0.078307636,-0.07968306,0.09540241,0.66138935,-0.076984115,-0.22771184,-0.09906835,-0.12089062,-0.3635938,-0.21328175,-0.15901113,0.21611965,0.2765383,-0.27828446,-0.17908181,-0.3245438,-0.24752109,0.312044,-0.056043033,0.2889232,0.19213687,-0.03464162,-0.24596593,-0.12981613,0.19378379,0.5393241,-0.08487612,-0.26955387,-0.26968023,-0.30236676,-0.3676432,0.38138607,0.013449048,0.40177855,0.042848136,-0.15842684,0.62068886,-0.014476129,0.9178581,0.08718199,-0.2811246,0.042596698,0.44460455,-0.043194328,-0.072326526,-0.27943665,0.87170607,0.35941002,-0.02158245,-0.12574282,-0.5391051,0.11055011,0.1685121,-0.15097746,-0.023170033,0.073299184,-0.55297995,-0.05906262,0.21496248,0.29503748,0.2771881,-0.14838001,0.027935952,0.1877517,0.17453411,0.34042332,-0.3327667,-0.2380379,0.3244462,0.20710528,0.013043498,0.049335323,-0.2755695,0.3983407,-0.37625504,0.063446954,-0.37126866,0.10302435,-0.32744431,-0.17117624,0.30686402,0.10694794,0.39623925,-0.37789312,-0.33650732,-0.34145644,0.30527645,0.15345906,0.07967953,0.36516446,-0.2610789,0.02556062,0.0317025,0.56672174,0.86234504,-0.20177746,0.099232875,0.30065775,-0.2732896,-0.42922974,0.39923865,-0.25174,0.071245566,-0.04008097,-0.17092946,-0.65113926,0.13679744,0.2658731,0.2093045,0.103133105,-0.661933,-0.22184451,0.2016327,-0.34696832,-0.18060456,-0.21373424,-0.063149065,0.74255097,-0.2286768,-0.43934488,0.06669426,0.1144338,-0.113892786,-0.4952586,-0.06744876,-0.37949666,0.22516415,0.10583047,-0.31690672,-0.12621437,0.23888579,-0.48492977,0.056162704,0.24049532,-0.3680144,0.12025933,-0.2951574,0.21936533,0.91147375,-0.32218996,0.5172648,-0.36742005,-0.501994,-0.7859825,-0.2734771,0.5020823,0.17087947,0.060431268,-0.50603807,0.012490885,-0.15702125,-0.43767014,-0.10315352,-0.49407867,0.43937418,0.13447021,0.32837147,-0.067847975,-0.7504503,0.1324531,0.040065356,-0.16962394,-0.473733,0.3302355,-0.033383507,0.86435086,0.037216026,0.03215869,0.10620529,-0.35852623,0.0092374,-0.2154695,-0.14505328,-0.5707903,-0.033443492 -43,0.45722008,0.057105433,-0.7758052,-0.106416546,-0.3589942,0.022297919,-0.49524587,0.281331,0.45172438,-0.49474788,0.15228714,-0.0030619672,-0.12306913,0.26151985,-0.12247325,-0.5970048,0.010370761,0.26877505,-0.5169884,0.7994527,-0.2905565,0.2807779,0.24252568,0.25443512,-0.004207083,0.11644427,0.24883758,-0.16648427,-0.066621885,-0.23179783,0.08995993,0.09531438,-0.6157362,0.4603779,-0.14565238,-0.34387115,0.0058413083,-0.3165062,-0.15900822,-0.78289944,0.2116264,-0.6505551,0.6588384,-0.053299926,-0.35021162,0.049475305,0.25306773,0.21023552,-0.040417314,-0.13375314,0.3860886,-0.37646058,-0.76513344,-0.3194128,-0.28561217,-0.7415795,-0.5231939,-0.009480889,-0.5161208,0.26304552,-0.43359417,0.39201736,-0.2424909,-0.06918531,-0.37194762,0.54773706,-0.30293855,-0.016220149,0.05262935,-0.20539641,0.32472062,-0.7419283,-0.20643504,-0.113661766,0.2587838,0.16628562,-0.26349625,0.24267755,0.34973145,0.6765714,0.23556364,-0.38525957,-0.38723823,-0.0072355526,0.10515768,0.3448172,-0.30210352,-0.19670916,-0.21387164,-0.13759138,0.45860833,0.17582235,0.0024219474,-0.44102913,0.15391333,-0.23266019,-0.47242466,0.52791196,0.57732356,-0.3890701,0.25324586,0.42692524,0.39416417,0.20634003,-0.1816165,0.069765635,-0.4378922,-0.5788827,-0.09115992,0.1296297,-0.10390326,0.21113084,-0.04408566,0.096527226,0.52463573,0.0029193333,-0.39557052,0.48872253,0.13551262,0.24729262,-0.29721123,-0.13132925,0.37807965,-0.60775024,-0.029272005,-0.49706835,0.5423628,-0.29257885,-0.8807883,0.36639276,-0.58563775,0.06538495,-0.069969624,0.71947,0.9895678,0.7574901,0.009161545,1.0638767,-0.4315538,0.12556244,-0.20176111,-0.23800609,0.3073892,-0.05978718,0.3761353,-0.5056265,0.058171514,-0.13875909,-0.11923113,-0.10124801,0.63679165,-0.37658367,-0.2902741,0.11578815,0.64079285,-0.17960158,-0.15237167,0.7878176,1.1118096,1.0477475,0.29255214,1.2656072,0.13280718,-0.16766767,-0.24588092,-0.13930182,-0.788258,0.2912922,0.26426575,0.28536147,0.047254287,0.2523046,0.018357944,0.4541056,-0.12205632,-0.36621687,-0.03796625,0.45929834,-0.22160092,-0.28718922,-0.28181213,-0.28708807,0.26838064,0.012666523,0.19209419,0.32217574,-0.20120956,0.3344213,0.24176642,0.96535647,-0.24161063,0.015490515,0.05434808,0.043119192,0.2680741,-0.124657206,-0.10530726,0.23927143,0.16843002,-0.08814691,-0.6107747,0.0683943,-0.22841081,-0.5126637,-0.1842176,-0.24828969,-0.20939367,-0.08046273,-0.010820811,-0.20923178,-0.019168045,-0.5363042,0.23601225,-2.36911,-0.08423158,-0.105782345,0.24617474,-0.07813729,-0.32876593,-0.11851575,-0.4723286,0.61496,0.2603971,0.5878069,-0.4858825,0.5516087,0.53937614,-0.82740754,-0.20725544,-0.72946423,-0.1557844,-0.09345094,0.4823249,0.0634433,-0.52966386,-0.14852966,-0.029555062,0.5993204,-0.040316027,0.28607878,0.6166462,0.4711431,-0.198429,0.3717164,-0.061344083,0.63497025,-0.3623269,-0.27014312,0.4181631,-0.34134886,0.29795995,-0.35183695,-0.009711868,0.5122518,-0.4478657,-0.9077764,-0.59094965,-0.017316494,1.1434869,-0.27316722,-0.61103284,0.13115668,0.010984318,-0.17321105,0.3916363,0.4984786,-0.011535917,0.011068813,-0.75436753,-0.011590617,-0.13541563,0.26217717,-0.055654448,0.1079249,-0.51021093,0.7877795,-0.047941677,0.5534589,0.61428976,0.38613898,-0.37122893,-0.27050826,0.0734362,1.0381602,0.26478133,0.030973032,-0.21854137,-0.1611813,-0.22055964,-0.23036762,0.022118535,0.66771114,0.51946837,0.004319969,-0.00088466064,0.30323213,-0.41814026,0.04396022,-0.21096955,-0.67598695,-0.34673077,0.090792574,0.56820285,0.6237136,0.29643658,0.3654952,0.12298121,0.31246704,-0.16669199,-0.5940862,0.5877822,0.88492763,-0.34039405,-0.14340259,0.72528607,0.35016856,0.057282973,0.7713245,-0.51702654,-0.59966576,0.1896814,0.04482826,-0.3330253,0.07474574,-0.4018658,0.061226454,-0.853707,0.16327307,-0.5487097,-0.5773495,-0.53421724,-0.014058075,-2.4375358,0.35906085,-0.30918732,0.15637228,-0.21167292,-0.027725508,0.34262827,-0.344014,-0.7009944,0.11678727,0.29004782,0.53476447,-0.15304722,-0.008711793,-0.28388855,-0.48678344,-0.06064449,0.34186682,0.032295536,0.22223224,-0.04617399,-0.4468327,0.13355742,-0.20660421,-0.03179231,-0.12796311,-0.6378415,-0.17839131,-0.19136424,-0.5682312,-0.3578054,0.60282326,-0.7443466,0.024248125,-0.26937422,0.16089375,0.25985083,0.309038,-0.14277911,0.15796463,0.14942002,-0.13297132,-0.18892254,-0.22567005,0.16579325,0.0343936,0.23763372,0.55513257,-0.065926634,0.05585238,0.5723813,0.75727,-0.045850344,1.0168688,0.35007286,-0.05432019,0.2511075,-0.08004868,-0.20839788,-0.7095982,-0.2406216,-0.14239182,-0.49020714,-0.321863,0.13498281,-0.40643543,-0.88382626,0.6888171,0.21766813,0.040421374,0.04643861,0.4672026,0.332105,-0.1837995,-0.040419452,-0.282101,-0.35552692,-0.42961377,-0.41394916,-0.7923029,-0.47211573,-0.056399923,1.251531,-0.29923043,0.05245793,0.1923853,-0.020966675,0.06927454,0.36364213,0.08166189,0.26128894,0.50299835,0.29875025,-0.69828,0.4335578,-0.12804149,0.21906824,-0.420067,0.33045778,0.5367163,-0.6673485,0.2700669,0.55755144,0.09299814,-0.08086024,-0.9083222,-0.15443458,0.33117467,-0.2647436,0.43323824,0.22575422,-0.749794,0.75536436,0.2910224,-0.09486654,-0.9146975,0.30766916,-0.09700351,-0.17390242,-0.08255275,0.56172943,0.090043746,0.11643185,-0.50853616,0.1345636,-0.38493818,0.37332132,-0.1317282,-0.23724954,0.2539702,-0.23063834,-0.22160591,-0.8701935,-0.116707034,-0.61406213,-0.32043698,0.31704316,-0.013633383,0.009228306,0.20138367,0.24874017,0.515007,-0.50745094,0.15403797,-0.47686332,-0.2742973,0.63815814,0.60022795,0.35996976,-0.43788716,0.5283775,-0.060034446,-0.29255506,-0.43770456,-0.03309346,0.4494721,0.08071404,0.38990453,0.04390498,0.005114662,0.08008875,0.63313866,0.19553505,0.17019582,-0.12386109,-0.20295909,0.25502095,-0.14995769,0.31049684,-0.11239628,-0.49773577,-0.098827615,-0.1956791,0.059360065,0.5449318,0.115480796,0.5907194,-0.18167949,-0.11996176,-0.0048086387,0.0611822,0.20560566,-0.91081494,0.68394214,0.18688183,0.49656877,0.69692284,-0.022019032,-0.017546896,0.8267911,-0.16424918,0.019484181,0.3595992,-0.107680984,-0.13097753,0.49394724,-0.93689835,0.14794348,-0.30495438,0.116500005,0.26909178,0.030418694,0.4326971,1.0815636,-0.14109685,0.22778866,-0.08195209,-0.2878301,0.026854783,-0.12693234,0.04187239,-0.26164114,-0.5176884,0.7898334,0.19922526,0.5017759,-0.36564916,-0.069984995,0.12682919,-0.33416218,0.38421297,0.008211182,-0.014045843,-0.11107389,-0.33659866,-0.10032383,0.6043563,0.12052607,0.11848908,0.05205549,-0.11858869,0.27929282,-0.034226324,-0.08260427,-0.07435612,-0.4634436,-0.036003742,-0.41436037,-0.25634128,0.4096858,-0.092788935,0.18798567,0.12077787,0.2543437,-0.2100792,0.21387611,0.28033867,0.59960335,0.09187589,-0.13438234,0.041822433,-0.037035115,0.08675189,-0.34925523,-0.1453804,-0.17220959,0.24783505,-0.9572487,0.37305728,-0.45120713,-0.54641306,0.17663293,-0.19685994,-0.09213463,0.36933237,-0.16380708,-0.13173278,0.24758802,0.014795618,-0.059830155,-0.35796043,-0.27705568,0.06480147,-0.32507893,-0.056155358,-0.33934942,-0.26876023,-0.21729633,0.32358027,-0.017282983,-0.07935582,0.29569674,0.27761227,-0.3770661,0.27361637,0.41005197,0.5786475,-0.05105309,-0.037120722,-0.28987232,-0.10631696,-0.30260485,0.24289478,-0.012022285,0.19820571,0.15750231,-0.37046176,0.92432016,0.020387216,1.1018735,0.022629559,-0.44210118,0.04973369,0.49345812,-0.08299417,0.04227573,-0.37320682,0.92649543,0.59561235,-0.2310244,0.052424673,-0.59623474,-0.14151405,0.23966189,-0.3371717,0.0110232,-0.068530865,-0.7346929,-0.18473777,0.27069804,0.26744008,-0.12169243,-0.1621309,0.15844819,0.22630231,0.2921696,0.16392593,-0.55712366,-0.002901273,0.33656034,0.30335096,-0.15020704,0.29307482,-0.36999542,0.26550445,-0.8310849,0.22583832,-0.35591692,-0.027388189,-0.10847305,-0.10512308,0.28789595,-0.010757706,0.26219597,-0.17513976,-0.39784476,-0.007000732,0.38902664,0.30279765,0.23658721,0.8851201,-0.27068648,-0.021670574,0.0030522856,0.48484284,1.1503905,-0.26888555,-0.025080578,0.2921559,-0.33218506,-0.68266857,0.14221282,-0.51947874,-0.23614345,-0.040184326,-0.59828186,-0.3992861,0.2147647,0.080435514,0.07517498,0.08275087,-0.65380186,0.020453999,0.17295708,-0.2102921,-0.15310022,-0.013346379,-0.025212819,0.8941477,-0.3462936,-0.59654796,-0.022942407,0.3666698,-0.2790601,-0.7249447,0.18937756,-0.48264113,0.44407383,0.37808985,-0.29437426,0.006839418,0.02697019,-0.7195674,0.110081896,0.36944804,-0.24316014,-0.048208747,-0.4419082,0.23796742,0.66685426,0.07172171,0.34824124,-0.11469318,-0.69816226,-0.6983675,-0.13351479,-0.042197686,0.1445956,0.018923143,-0.58186245,-0.0875997,-0.51194465,-0.11791103,-0.012419075,-0.6166418,0.42811483,0.05296121,0.5144409,-0.28128448,-1.1042534,0.2155861,0.29193148,0.0072790342,-0.41878515,0.29169062,-0.1261072,0.94817203,0.06151712,-0.049283247,0.15238455,-0.88264555,0.34017047,-0.41966048,-0.22671293,-0.6259983,-0.09920753 -44,0.43382218,-0.17904972,-0.5297974,-0.10512173,-0.14398193,0.18515903,-0.08039981,0.42917186,0.22152197,-0.2690428,-0.00618322,-0.2576164,0.091338515,0.36984453,-0.014021197,-0.4244411,-0.02344342,-0.0045243874,-0.52818775,0.49506545,-0.42905414,0.19088241,-0.18700159,0.3926402,0.2937711,0.3597511,0.00034229457,-0.11217942,-0.034852672,-0.05306371,-0.024129827,0.39487913,-0.2806739,0.1378186,0.03451445,-0.11065892,0.01262043,-0.24895601,-0.45926702,-0.6249392,0.37102813,-0.5915104,0.37718344,-0.0027284175,-0.24510425,0.028332502,0.04459375,0.17371425,-0.36936608,-0.14806552,0.07965613,-0.07877433,0.0891889,-0.12275633,-0.088404834,-0.340619,-0.42927456,-0.075145856,-0.43181098,-0.25239116,-0.27558154,0.077510834,-0.40977728,-0.10106412,-0.12821834,0.55852926,-0.49465907,0.1063656,0.14461917,-0.24468766,0.25677934,-0.64980054,-0.32831293,-0.08991259,0.19786894,-0.091012545,-0.2198377,0.27401057,0.29393697,0.28384948,-0.026337113,-0.010840796,-0.31005624,-0.24408263,0.22662976,0.42300564,-0.16696009,-0.6028973,-0.06880437,0.04117708,-0.040587954,0.17319156,0.13302867,-0.34364617,-0.14870699,0.22118771,-0.24411875,0.35349798,0.4712323,-0.36794502,-0.2506992,0.25526655,0.52122766,0.35944137,-0.20420837,0.013093881,0.034454018,-0.40739995,-0.07585696,0.101189524,-0.074937,0.4562289,-0.1394112,0.37394977,0.63153183,-0.22154167,-0.017268173,-0.064134866,0.030897232,-0.24760409,-0.2254409,-0.038252335,-0.03376189,-0.3392886,0.26339206,-0.10994263,0.76479226,0.25814432,-0.4710849,0.44151068,-0.51535225,0.20862949,-0.05641284,0.51513433,0.64424765,0.15486363,0.4275966,0.71346027,-0.27226198,0.08122735,-0.17840445,-0.32110292,-0.042759098,-0.112052165,-0.02378216,-0.4329796,-0.06823118,-0.01567476,-0.19508168,-0.016444605,0.40205026,-0.4718539,-0.12797768,0.085689545,0.72525716,-0.28765357,-0.031230448,0.5209424,0.9546867,0.91582996,0.024926875,1.0464433,0.04995203,-0.25310352,0.2991264,-0.35009423,-0.65225846,0.31512,0.36788267,0.41346335,0.11979343,0.0014253333,-0.08731739,0.41491386,-0.34684312,0.24179418,-0.18490416,0.36923796,0.2496795,-0.04949172,-0.20931093,-0.30071157,-0.19176954,-0.121431276,-0.03468664,0.18997869,-0.18709046,0.3611509,0.035772152,1.8253322,-0.073300704,0.1070242,0.1826651,0.56592673,0.1285736,-0.19482602,-0.0608372,0.4753694,0.31428277,0.1135501,-0.5909606,0.20801815,-0.29457092,-0.635406,-0.060234696,-0.42051423,-0.18185577,0.011179919,-0.4181437,-0.14027388,-0.032750357,-0.31106952,0.4718616,-3.0039902,-0.22707987,-0.16347708,0.19904508,-0.23912893,-0.2013044,-0.06194958,-0.43425366,0.24439429,0.34341514,0.42883402,-0.68277234,0.16612081,0.44564104,-0.3884249,-0.10405981,-0.48913777,-0.115053326,0.010096736,0.4404943,-0.050423395,-0.0137478225,-0.08433338,0.18910542,0.42281368,-0.08477482,0.14181994,0.2753059,0.21230301,-0.00775335,0.5795511,0.007089464,0.4192429,-0.21416643,-0.088122904,0.40467507,-0.35458156,0.28976387,-0.12500069,0.13279125,0.44626743,-0.3052813,-0.724024,-0.4787662,-0.13316394,1.1695101,-0.2593525,-0.36105484,0.4014145,-0.5707905,-0.064146,-0.34117562,0.41469806,-0.041658945,-0.14835969,-0.74907136,0.18258585,-0.12204009,0.08514709,-0.0014914237,-0.041730274,-0.20532846,0.66916674,0.045806013,0.58065546,0.3395393,-0.06760213,-0.19064456,-0.42044455,-0.03588112,0.5950967,0.2956279,0.14658378,-0.3104802,-0.20446756,-0.22789675,-0.043542117,0.18345517,0.53839225,0.5228118,-0.0053509697,0.2168783,0.3425575,-0.18355703,-0.1343592,-0.2042706,-0.1743567,0.026663493,0.023966037,0.5748377,0.56246275,-0.23363999,0.5439873,0.044808157,0.14432643,-0.17870733,-0.4343015,0.37331074,0.8694546,-0.24726464,-0.2217635,0.38696298,0.34409675,-0.31079817,0.2565714,-0.5262362,-0.016495626,0.6223751,-0.19829014,-0.34805495,0.37446043,-0.3000919,0.16136587,-0.8865049,0.2051369,-0.34651473,-0.44172996,-0.50360256,-0.18802091,-3.138806,0.09144819,-0.27611336,-0.33241808,-0.079349905,-0.19851041,0.1060382,-0.60213804,-0.5816588,0.045221962,0.118106335,0.57074946,-0.09701718,-0.061010204,-0.30130818,-0.32267183,-0.3348003,0.07582995,0.022454567,0.47256935,-0.13698217,-0.41945314,0.097473726,-0.05281064,-0.33858937,0.088408634,-0.32136455,-0.56300676,-0.12047326,-0.47247624,-0.4663924,0.6453348,-0.074226275,0.04744009,-0.14413159,-0.09761015,-0.035067227,0.3057727,0.25359154,0.10388805,0.023341138,0.02226222,-0.10689297,-0.24848029,0.06386583,-0.094319314,0.32276383,0.4055032,0.03461179,0.22695799,0.5286747,0.4851802,-0.089980595,0.7901591,0.50095564,-0.041437354,0.29073474,-0.35649067,-0.21245795,-0.44769615,-0.2787507,0.1487234,-0.3903023,-0.58316374,-0.1581859,-0.23826146,-0.5230369,0.44023013,-0.079358116,0.099842116,0.1158836,0.17476764,0.58236915,-0.066573516,-0.026117675,0.09439602,-0.075661324,-0.7023555,-0.31949008,-0.64846635,-0.45483837,0.22577672,0.8139214,-0.2863044,-0.12683141,0.05538511,-0.5627858,-0.023692703,0.07206915,0.11827096,0.22820877,0.37094644,-0.19229567,-0.5427918,0.35278794,-0.08300498,-0.12754843,-0.53145564,0.18028057,0.57996464,-0.59250516,0.657427,0.12426413,0.092464484,-0.2855184,-0.56826687,-0.20072336,0.0093461685,-0.22155043,0.41519982,0.12560092,-0.7202836,0.3695358,0.32466194,-0.1460563,-0.691597,0.5422982,-0.11353815,-0.40576875,-0.022569004,0.2528957,0.11110722,-0.008820295,-0.11871988,0.31357533,-0.47343355,0.2663335,0.25615567,-0.14188063,0.2759027,-0.14216316,-0.18296948,-0.5457903,-0.035967246,-0.45236814,-0.25274074,0.31714645,0.11988172,0.13275552,0.05374439,0.11013212,0.3884661,-0.122620925,0.07437091,0.0011589155,-0.10776898,0.28431386,0.37919372,0.40654865,-0.34435204,0.6027471,-0.06395705,0.044592842,0.1387863,0.104738,0.3059709,0.19651303,0.37370747,0.04087593,-0.33037314,0.2351808,1.1077845,0.23365521,0.53584385,-0.03921647,-0.18883617,0.2145544,0.081594214,0.24576774,-0.036838472,-0.4663908,-0.020311609,-0.1722301,0.21714002,0.3447191,0.17087954,0.23806082,-0.08988899,-0.39504707,0.01922603,0.23095348,-0.031740457,-1.2343314,0.31062546,0.20773634,0.85738385,0.38835818,0.0044253394,-0.003284566,0.5711099,-0.16047515,0.07632318,0.3177482,-0.056843232,-0.6044688,0.4674591,-0.7707627,0.6022588,-0.025929742,-0.04742362,-0.008527122,-0.03830806,0.3284593,0.6899214,-0.16770445,-0.15293482,0.10187148,-0.26271877,0.12251016,-0.43067586,-0.087231874,-0.66571784,-0.30783835,0.4444915,0.5222372,0.19223316,-0.20896794,0.030698605,0.0502781,-0.08061355,0.21681592,-0.013371624,0.17695148,-0.08328668,-0.69843626,-0.34584498,0.43734884,-0.10617669,0.21124631,-0.05769359,-0.23521541,0.2840649,-0.11456949,-0.042680684,-0.11231181,-0.4169448,0.04557693,-0.22775665,-0.5273298,0.46907985,-0.23171821,0.3977156,0.2546709,0.046618104,-0.27690548,0.41072565,-6.394833e-05,0.7692635,-0.27342957,0.0019972567,-0.5647082,0.0020827428,0.22105011,-0.128286,-0.20719287,-0.19680613,-0.071348265,-0.4283466,0.48390096,0.029525762,-0.30026066,-0.02023004,-0.21038273,-0.033848252,0.63809747,-0.07623142,-0.24266808,-0.25304753,-0.18085691,-0.36816648,-0.07200599,-0.0029048473,0.20206505,0.1955008,0.0054997355,-0.10579727,-0.15262875,0.029626556,0.23475488,-0.013073007,0.29341573,0.29942173,0.14773133,-0.2471776,-0.16675116,0.2480326,0.46449608,0.107736066,-0.069962695,-0.23980334,-0.47652477,-0.36672077,0.1443416,-0.1149655,0.3998419,0.16136064,-0.49270436,0.6304228,-0.06283648,0.9992587,0.13096684,-0.22589849,0.098894835,0.52680427,0.0559043,-0.009958748,-0.21114513,0.65064895,0.4901785,-0.064701095,-0.2914486,-0.19069767,-8.8173896e-05,0.21897465,-0.12845173,-0.08530551,-0.007819162,-0.5629107,-0.06666605,0.23409986,0.22097209,0.2607954,-0.12397502,-0.11680147,0.16086021,0.07333283,0.3338037,-0.31460568,-0.097771086,0.2490295,0.15360293,0.11280007,0.07500121,-0.38419905,0.42919502,-0.44371623,0.20640984,-0.21420318,0.20189996,-0.2001729,-0.1843257,0.18862034,-0.095954776,0.38185972,-0.2616829,-0.30280608,-0.2990078,0.3924798,0.1789504,0.12849884,0.55210423,-0.15111446,0.0028254688,0.23341915,0.4628684,1.0819473,-0.22223675,-0.120718166,0.3756045,-0.31818762,-0.610333,0.42279154,-0.25548822,0.13537344,0.029594418,-0.050823636,-0.542186,0.23933154,0.30542055,-0.047375206,0.016961325,-0.6568651,-0.26198214,0.21819322,-0.42072868,-0.11736564,-0.47621956,-0.08041145,0.62501776,-0.20038351,-0.25467384,0.16019477,0.28703073,-0.29704785,-0.48663118,0.10980771,-0.2736026,0.41371354,-0.020264,-0.21886918,-0.061413124,0.2168499,-0.4039621,0.16233908,0.06599695,-0.43701485,0.13104123,-0.20228931,-0.07767576,0.91702485,-0.27005395,0.09343037,-0.34810883,-0.3546007,-0.71791846,-0.29730928,0.5118265,-0.08542875,-0.042312913,-0.5265167,-0.08926775,0.040048525,-0.08559666,-0.11171675,-0.45178565,0.5745925,0.06365326,0.2897504,-0.0474215,-0.6379173,0.16860668,0.0042105448,-0.07825316,-0.49833125,0.6104456,-0.14326689,0.57773733,0.09638631,0.069643795,0.2170974,-0.29824233,0.09645912,-0.21884674,-0.19517435,-0.5572791,0.09578073 -45,0.66803795,-0.21863663,-0.5954934,-0.125796,-0.34637442,0.22472791,-0.1349184,0.69802994,0.21663089,-0.45793596,-0.17700827,-0.032248598,-0.20949024,0.3971896,-0.20616944,-0.74362606,-0.028875014,0.12881891,-0.31123868,0.8966057,-0.1551644,0.31997108,-0.2777755,0.46152994,0.2699401,0.307992,0.19480197,0.13096446,-0.11153064,-0.27543485,0.057391047,0.19748461,-0.7451058,0.23516959,-0.19209611,-0.47750917,-0.062429756,-0.38694692,-0.346186,-0.82662815,0.49945155,-0.92010957,0.6232254,0.15288283,-0.27069244,0.34217048,0.11628006,0.070651636,-0.13923961,-0.018565783,0.03384305,-0.16445841,0.1399465,-0.25103042,-0.27877322,-0.7612032,-0.70226234,-0.18885326,-0.4515631,-0.18541634,-0.07525989,0.22773902,-0.39739403,-0.02847918,-0.22165686,0.43542287,-0.41639695,-0.0070792288,0.21555497,-0.25732052,-0.07008156,-0.8125663,-0.43478677,-0.14966296,-0.007701099,0.12404894,-0.046865713,0.5504989,0.11964995,0.29388776,0.088661276,-0.24953537,-0.29489002,-0.23413043,0.12381513,0.36940265,-0.2529217,-0.57246876,-0.19270074,-0.09638772,0.47805488,0.17474622,0.31552517,0.01693357,0.01860909,-0.19366352,-0.16260734,0.50189185,0.57197154,-0.3233116,-0.22061302,0.37162766,0.3224479,0.21517813,-0.28187892,-0.13504456,-0.009957875,-0.36050224,-0.10846937,0.040091883,-0.31323949,0.73859316,-0.13940333,0.20855188,0.5874138,-0.24995363,0.113264896,-0.016759183,0.18069784,-0.10120324,-0.4417955,-0.37078318,0.3479224,-0.45884076,0.2701824,-0.39948237,0.7418797,0.29787755,-0.40037617,0.2775563,-0.61100405,0.08747215,0.027932672,0.45783707,0.53798336,0.5562369,0.08333078,0.75608367,-0.24515994,0.060912233,0.11008755,-0.06672748,-0.029494695,-0.5255621,0.11874154,-0.47864416,0.32868248,0.023133108,0.0060657016,-0.04596257,0.5957623,-0.49287185,-0.2945311,0.3136048,0.9599144,-0.261215,0.05574515,0.8185801,1.3430818,1.1326967,-0.13712241,1.1067439,0.10785058,-0.3303248,-0.09704768,-0.021028638,-0.85141104,0.16477357,0.3174518,-0.2683507,0.6136768,0.08505217,-0.2295603,0.20219336,-0.40261933,-0.12850262,-0.14073974,0.15366612,0.23301156,-0.09234631,-0.566457,-0.15015955,-0.05167818,-0.11843455,0.21756661,0.40492257,-0.2321366,0.4300401,-0.13640629,1.0818694,-0.15849037,0.12061635,0.18868446,0.83716756,0.28504854,0.07245911,0.45010749,0.49093655,0.31187287,0.103534736,-0.5479307,0.215374,-0.5029475,-0.5839281,-0.10969975,-0.35552302,-0.21449845,0.1133343,-0.27781367,-0.4123484,-0.11011207,0.07796854,0.21688326,-2.513428,-0.097556055,-0.26600328,0.2914041,-0.36980543,-0.22371222,-0.026470095,-0.5783058,0.4433249,0.35645422,0.3941675,-0.57441264,0.32257333,0.5334907,-0.51046205,0.10737028,-0.43757498,-0.058429226,-0.09212592,0.6763517,-0.17506225,0.016381884,0.13062818,0.20655914,0.49999595,0.24272804,0.27702188,0.14836954,0.3514825,-0.12732548,0.1822728,-0.08674288,0.52558726,-0.3964428,-0.064681,0.3910673,-0.5860426,0.4037323,-0.28593108,0.050226253,0.6936495,-0.44712067,-0.61371756,-0.53779507,0.14896365,1.0786911,-0.31480756,-0.824282,0.08855908,-0.26381543,-0.1433777,-0.21055473,0.33618245,-0.13328719,0.061257083,-0.62437373,0.0774527,-0.029337445,0.14319079,0.061701026,0.13743214,-0.40221623,0.7306211,0.14794534,0.5949743,0.17244045,0.31243184,-0.253325,-0.5155752,0.027620858,0.743639,0.5324987,0.058456093,-0.2595959,-0.018960714,-0.13385269,-0.33671358,0.1594223,0.74013805,0.52568954,-0.124938585,0.09908696,0.37904572,0.122880846,0.28681716,-0.07808277,-0.4352294,-0.36117396,0.05398597,0.55095214,0.684299,-0.37502024,0.25173157,-0.10418305,0.4043131,-0.15220304,-0.50241977,0.5623162,1.1874789,-0.22335692,-0.29689646,0.81987685,0.6062846,-0.67268115,0.5883295,-0.8018877,-0.2733883,0.6214016,-0.25950083,-0.4397936,-0.008499113,-0.33212766,0.0051113144,-0.79037875,0.33926892,-0.32973877,-0.20837663,-0.66730326,-0.26301882,-2.5910637,0.084674336,-0.3811395,-0.16518289,-0.45107684,-0.06858234,0.12685327,-0.81386644,-0.63569134,0.24662615,0.12696603,0.5809972,-0.10048928,0.20321862,-0.32343817,-0.26353988,-0.46863684,0.3230615,0.06406683,0.16780533,-0.10464827,-0.39172348,-0.0049041263,0.05129959,-0.3267952,0.036855906,-0.53662306,-0.19528514,-0.114338666,-0.5600473,-0.022357186,0.6905077,-0.14891581,0.011690135,-0.21863806,0.16396914,-0.20322466,0.011013604,-0.15139717,0.26642153,0.13476913,-0.18612947,0.32654986,-0.36772752,0.55674034,0.065484636,0.53493017,0.36972246,-0.26702598,-0.060118895,0.3850789,0.46635914,0.18142855,0.7967472,0.24097745,-0.13853712,0.4919047,-0.3570087,-0.37294593,-0.75454116,-0.28999642,0.18205146,-0.28077307,-0.61442167,0.09909443,-0.39906228,-0.9617324,0.5932961,-0.16073711,0.63249373,-0.046813652,0.26012912,0.55976194,-0.25877032,0.12091889,0.07710589,-0.03618301,-0.50151396,-0.2634643,-0.70385617,-0.2795074,0.1646922,0.76042724,-0.35726163,-0.24444528,0.1722786,-0.45024207,0.048101474,0.23147714,0.050322924,-0.26477662,0.5345954,0.2056355,-0.7312786,0.64520454,0.023327827,-0.039260063,-0.42718986,0.2668046,0.5316525,-0.86051345,0.5197672,0.5053451,-0.007809038,-0.45722005,-0.5896156,-0.1426167,0.071632825,-0.0767489,0.3233727,0.29537714,-0.68765944,0.2555689,0.16856991,-0.41426802,-0.65074915,0.6668022,-0.159638,-0.22082533,-0.18558986,0.48069847,0.21475947,-0.10716925,-0.09944042,0.350947,-0.41917157,0.21518214,0.07660329,-0.13138777,0.28460273,0.08754108,-0.18451184,-0.8496588,0.42392087,-0.64041144,-0.31610194,0.510606,0.027663613,-0.027165672,0.18315278,0.30877283,0.35675725,-0.33300683,0.3201219,-0.013857134,-0.40833628,0.56914395,0.2487384,0.6477554,-0.55310386,0.7233908,0.06080407,-0.068750896,0.3430545,0.21152222,0.34701857,0.28488913,0.7360837,0.24222179,-0.21331763,0.09041583,0.76391643,0.35634807,0.53181964,0.2645323,-0.20426734,0.27188894,-0.007982678,0.16283166,-0.103860974,-0.60998946,-0.28701273,-0.13942754,0.08437282,0.44152424,0.12482045,0.44443956,-0.047403287,-0.18289489,0.017943835,0.17749012,-0.07134109,-1.2962797,0.13843141,0.25830755,1.0047402,0.507908,0.022543589,-0.034636907,0.6423181,-0.14437722,0.027657678,0.5896521,0.17780967,-0.5210566,0.5286527,-0.3191637,0.3808516,-0.106423475,0.05632171,0.09663477,0.11057752,0.41944394,0.6731582,-0.24486046,-0.009108772,0.022282697,-0.5185832,0.14861952,-0.32414153,0.17232098,-0.42800805,-0.15712096,0.4817792,0.55628484,0.19337298,-0.20948492,-0.030805035,0.1355876,-0.05356586,0.30589226,0.13095458,0.015147656,-0.07306831,-0.6170378,-0.23307562,0.531116,-0.2598834,0.037569303,-0.04621118,-0.42253777,0.30944932,-0.115950964,0.011702764,0.09872975,-0.8300331,0.27275178,-0.007982726,-0.50329393,0.5881416,0.07542261,0.03896028,0.20111574,0.002039044,-0.29250923,0.09279444,0.082306236,0.59416556,-0.20949475,-0.23457634,-0.6546956,-0.16586448,0.05662803,-0.24792464,0.4315982,-0.11681304,0.15869369,-0.19229262,0.58753103,-0.010609533,0.040520016,-0.30736586,-0.24409938,-0.12048578,0.4657775,0.0069086254,-0.06731791,0.02507171,-0.058975402,-0.46331677,-0.20710975,-0.26990935,0.0571042,0.12568918,-0.035277408,-0.32672364,-0.219616,0.039896697,0.36781755,-0.01710861,0.23128456,0.42102256,0.102971755,-0.45989385,-0.08695904,0.32389554,0.44487333,-0.036103293,-0.07913446,-0.16673177,-0.7098115,-0.36565578,0.414198,-0.19538724,0.26421458,0.094645835,-0.32967964,0.8880939,0.06916133,1.211946,-0.13712026,-0.55537695,0.040902864,0.6427579,-0.10112039,-0.08382393,-0.37350282,1.186359,0.65804553,-0.16399579,-0.15210295,-0.4597137,-0.0029697816,0.11752387,-0.32766482,-0.15510003,0.0037796907,-0.5212544,-0.27594146,0.13694675,0.4096315,0.25148073,-0.1562979,-0.004098306,0.356563,0.41643262,0.39103493,-0.64245015,-0.53112274,0.27107364,0.06884941,0.024950242,0.23522316,-0.40399444,0.200437,-0.6681695,0.2539233,-0.35727584,0.0062358924,-0.23034006,-0.42924657,0.109335005,0.032520626,0.41451764,-0.39867875,-0.5301822,-0.19432636,0.3411183,0.08114185,0.1986206,0.43588528,-0.3359425,0.062281277,-0.0074247173,0.64197576,1.0380868,0.0705148,-0.07803584,0.08499733,-0.6388891,-1.0310092,0.19086532,-0.41630864,0.37929192,-0.20140028,-0.29608077,-0.85540074,0.33961606,0.07543143,-0.26244962,0.12268016,-0.68123597,-0.31389457,0.13044508,-0.32400313,-0.2663403,-0.3220589,0.081332944,0.7600662,-0.29313186,-0.14479254,0.008597185,0.35845664,-0.26589456,-0.766329,-0.113583006,-0.50762063,0.32142484,0.036950085,-0.20588098,-0.18016808,0.0552074,-0.5255651,0.3740851,0.2207578,-0.41869447,-0.11816306,-0.3510429,0.08247219,0.7744458,-0.15184905,0.042015474,-0.5666605,-0.5793637,-0.8958114,-0.7075642,0.18978328,0.16452152,0.08085489,-0.77662104,0.113624394,-0.20965713,-0.16194905,-0.14915557,-0.39672145,0.37641108,0.18422185,0.44900712,-0.012999207,-0.9030678,0.25608477,0.20578568,-0.037783105,-0.5926682,0.2712504,-0.25557017,1.1040407,0.13496196,0.067908034,0.08932149,-0.5233297,0.08346394,-0.20478709,-0.15403463,-0.6550849,0.14035149 -46,0.30627352,-0.043116566,-0.33100098,-0.053793266,-0.28461856,0.04609751,-0.26120287,0.39876178,0.44908,-0.44317016,-0.23894851,0.055116873,-0.24816862,0.06222776,-0.17813037,-0.38801256,-0.17260145,0.19433776,-0.4397054,0.6934008,-0.14720373,0.35638663,-0.06266519,0.46590143,0.30551574,0.24698909,-0.06565168,0.08130797,-0.09238041,-0.24797669,0.086807,0.4093992,-0.38841325,0.40124714,-0.30683258,-0.28666115,-0.23270124,-0.41721076,-0.43957654,-0.68126553,0.34761974,-0.65759355,0.5142193,0.10189501,-0.2329908,0.11966543,0.22268346,0.17407335,0.1520405,-0.14356147,0.22811402,-0.13024318,-0.14712858,-0.026274903,-0.23560296,-0.2606288,-0.5842339,0.04535586,-0.22197956,0.017061833,-0.34936488,0.2516977,-0.29675835,-0.13056022,-0.2195219,0.50789636,-0.29336765,0.2568702,0.069161214,-0.12224485,0.07136513,-0.7399624,-0.25474355,-0.13357218,0.12544605,-0.052838985,-0.31777006,0.26523212,0.15532564,0.4486037,-0.033898782,-0.0738272,-0.40651566,-0.106145136,0.4018821,0.4559359,-0.28302774,-0.1147581,-0.15940197,-0.02380214,0.3997418,0.0839997,0.20678349,-0.34398863,0.03023214,-0.23044197,-0.07326705,0.45185998,0.47088447,-0.0382574,-0.23559366,0.28233328,0.49619156,0.43700466,-0.1514039,0.049756296,-0.02718337,-0.39129856,-0.14232685,-0.053925574,-0.19333082,0.30951664,-0.041373584,0.19565222,0.41223797,-0.105389915,-0.038422085,0.25185484,0.23754995,0.26252285,-0.37013796,-0.29021472,0.2115603,-0.50571513,0.12688424,-0.14657487,0.44945663,-0.1089359,-0.70348996,0.21907265,-0.41868418,0.07652285,0.077184685,0.4814237,0.7657777,0.31718922,0.31045455,0.7401074,-0.20298567,0.034311574,-0.076588474,-0.090124324,-0.16344735,-0.13299698,-0.0033673446,-0.565164,-0.016234191,-0.11098026,-0.021755258,0.23716202,0.3960013,-0.4400453,-0.19708684,0.040827338,0.8530125,-0.24936546,0.09847789,0.84742934,1.0871445,1.0649273,0.0086742975,1.1237869,-0.1258625,-0.23800911,-0.18653376,-0.2325334,-0.6347974,0.21254285,0.26495236,-0.5420757,0.25749108,0.090857975,0.103009015,0.37156552,-0.60494155,-0.06760617,-0.22308461,0.24436454,0.11830975,0.0074923993,-0.49042982,-0.20516004,0.035843257,0.11335306,0.13082947,0.22993088,-0.35718346,0.32551414,0.12496354,1.096388,-0.26585308,-0.11616667,0.09759654,0.26890805,0.12875898,-0.22514562,-0.06301195,0.21221349,0.29532826,-0.09887937,-0.5197939,0.03390943,-0.17048179,-0.34718683,-0.150269,-0.25655746,-0.27586707,0.11360867,-0.18436207,-0.296241,-0.1616314,-0.5374299,0.37974727,-2.646433,-0.14488922,-0.05468116,0.28277197,-0.13335861,-0.3967296,-0.20315436,-0.36294395,0.4359183,0.13028206,0.3252133,-0.41429865,0.114504896,0.5483452,-0.66458714,-0.06354854,-0.45013797,-0.16444781,0.1449499,0.37585768,0.058565173,0.018385053,0.02559684,0.29074377,0.45265847,0.041636396,0.15319155,0.4529548,0.3599642,-0.18102725,0.25045022,-0.069655046,0.57872146,-0.24766363,-0.31417137,0.42446855,-0.32751846,0.39102507,-0.36046895,0.13032106,0.49449137,-0.37591317,-0.6119108,-0.50215137,-0.24515818,1.324808,-0.14535774,-0.53583294,0.34076846,-0.60711974,-0.31088632,-0.102977276,0.5588243,-0.059474207,-0.19005994,-0.809292,-0.09802411,-0.15477744,0.15322366,-0.08062123,-0.070714764,-0.4084657,0.7693157,-0.061083414,0.44827315,0.43341067,0.2823489,-0.2758149,-0.387296,0.13301058,0.88870895,0.5643308,0.17054577,-0.29732984,-0.047723975,-0.3794621,-0.1573855,0.14264984,0.67647135,0.50624007,-0.076219074,0.11310287,0.21190688,0.11466101,0.057538867,-0.27778193,-0.21142527,-0.22460492,-0.031717993,0.62480515,0.49079177,-0.10724934,0.31356442,0.01013865,-0.010925209,-0.1711248,-0.35199115,0.36725122,1.0090852,-0.1862956,-0.27897003,0.72055167,0.5055345,-0.19561033,0.41878426,-0.57882375,-0.21716127,0.32204068,-0.20911665,-0.5322636,0.13487908,-0.4708121,0.112201706,-0.5342415,0.42899734,-0.23903182,-0.7141063,-0.66609395,-0.050150625,-1.3417706,0.23157038,-0.23592205,-0.32219726,-0.34031364,-0.30621716,0.11070783,-0.32146123,-0.63886416,0.18147346,0.114263244,0.608574,-0.20690003,-0.052728023,-0.039749563,-0.3255332,-0.11024491,0.07342794,0.21284457,0.34145203,-0.0563041,-0.30533472,-0.11019523,0.012884617,-0.30746225,-0.06991593,-0.50358117,-0.52338535,-0.03775382,-0.3364707,-0.008789794,0.5087278,-0.430168,0.15174145,-0.24300058,-0.06964093,0.08504249,0.20116739,0.020492097,0.30954486,0.24162553,-0.049439646,-0.0067611537,-0.10260787,0.45109397,0.21853386,0.17970015,0.4835453,-0.24958639,0.3588073,0.35476866,0.7650675,-0.20450278,1.1134591,0.48541743,-0.1464365,0.24857815,-0.33612448,-0.45917422,-0.528194,-0.056352545,0.29370695,-0.464821,-0.45865422,-0.045259126,-0.365373,-0.89074385,0.5056917,0.109213986,0.3310931,-0.08488334,0.07331034,0.40390062,-0.17715864,-0.088698596,-0.15644884,-0.19606324,-0.40894032,-0.47765917,-0.61892533,-0.34541813,0.044938304,0.9616597,-0.18305172,0.22207238,0.3481218,-0.30437666,0.044332344,0.1163233,0.0029610514,-0.014079953,0.36852297,0.12476822,-0.5046178,0.28960714,0.25415114,-0.057108387,-0.60541284,0.31824142,0.61653227,-0.4276348,0.61198807,0.2751153,-0.095401436,-0.37139156,-0.56050915,-0.12259412,-0.10150129,-0.35097083,0.4846005,0.30863073,-0.5341491,0.29828778,0.30662164,-0.07688831,-0.8376411,0.534614,-0.08032758,-0.097093254,-0.043042652,0.32590115,-0.029895388,0.096060134,0.07472624,0.34427235,-0.17148672,0.44734573,0.10794627,-0.24466802,0.05552252,-0.35894948,-0.20119594,-0.8226815,0.18174897,-0.5509679,-0.36112732,0.2608981,0.107304506,0.15562579,0.21374363,0.38881522,0.36314365,-0.19112794,0.11114118,-0.16681556,-0.3335022,0.3069546,0.48943818,0.61276406,-0.260974,0.43761384,0.087057255,-0.1941403,0.0777798,0.078857906,0.38081446,-0.13541906,0.31647682,-0.096918024,-0.14007886,0.052884348,0.8126085,0.1707657,0.24053438,-0.16098261,-0.121090695,0.2412021,-0.006252253,0.2849913,-0.19977368,-0.56970406,-0.04399862,-0.25940016,0.09755857,0.43604267,0.23423865,0.29250136,-0.1802969,-0.28188393,0.035681535,0.2189202,0.15169002,-1.4025807,0.3844199,0.1839705,0.88190824,0.5452101,0.049801327,0.058810096,0.6079804,-0.09156416,0.0585148,0.36766377,-0.050227888,-0.40402555,0.34142077,-0.59393495,0.4344874,-0.012434109,0.074991144,0.07781092,-0.04414573,0.3561798,0.72359806,-0.15284517,0.023654845,-0.1193852,-0.32360736,-0.026252694,-0.32545847,0.28265542,-0.52150285,-0.5037673,0.8019353,0.59402287,0.40338135,-0.20663062,0.14319319,0.097875066,-0.28237584,0.2107249,0.024305034,0.04808825,-0.14271119,-0.64523864,0.13363391,0.36200082,-0.2548628,-0.007330513,0.056896646,-0.08944915,0.15564589,-0.07705341,-0.04246847,0.03150144,-0.72331375,0.0061000665,-0.3906559,-0.40624455,0.14639853,-0.1316176,0.056111224,0.22730064,0.06698847,-0.22827731,0.41384214,0.07538676,0.6596029,0.22639205,-0.028160302,-0.25096554,0.30822226,0.06790774,-0.15256907,-0.048727263,-0.057440255,0.22235762,-0.5223125,0.41669023,-0.12031722,-0.29620335,0.05659126,-0.16110821,-0.014461575,0.40047815,-0.11576518,-0.12557362,-0.001821818,-0.29515857,-0.22671922,-0.14500266,-0.10416611,0.25948244,0.06908082,-0.007710485,-0.17270833,-0.19474138,-0.3572373,0.21577041,0.12083317,0.47158045,0.44160348,-0.0010428886,-0.47334728,0.011891093,0.15384741,0.4905875,-0.011467448,-0.013030112,-0.097859465,-0.30980244,-0.4148505,0.42198005,-0.08387796,0.35724643,0.024159312,-0.1749791,0.7615215,0.06564616,0.938864,0.04856996,-0.3593726,0.10281278,0.40981495,-0.24316429,-0.028747419,-0.2650627,0.7512464,0.447069,-0.013225059,-0.09953999,-0.3648825,0.1503727,0.121118404,-0.3058279,-0.08449976,-0.086821176,-0.71180505,-0.240501,0.1991848,0.2499287,0.104277685,-0.14486006,0.017556107,0.17939356,-0.015638288,0.25350204,-0.46735084,-0.17810497,0.39750078,0.21192105,-0.06679438,0.14913863,-0.4673823,0.2809143,-0.51789457,-0.0059472444,-0.17878982,0.097180806,-0.2774375,-0.21397154,0.24770994,-0.05718835,0.2395406,-0.44788647,-0.29911616,-0.2959579,0.13373896,-0.1139567,0.12830108,0.40195253,-0.25077853,0.089007534,0.16467936,0.42492214,0.923914,-0.11510291,0.0634182,0.24047278,-0.28493398,-0.44099554,0.11054794,-0.44886714,0.052814793,0.08621083,-0.26931858,-0.35710385,0.21288998,0.15050745,0.124712594,-0.05641387,-0.7590853,-0.29862908,0.15608904,-0.23527445,-0.040189352,-0.18690498,-0.23366259,0.48517936,-0.2205469,-0.46441677,-0.13867603,0.16906688,-0.2849759,-0.5659678,0.16709684,-0.39630964,0.23995237,0.014543023,-0.42614633,-0.3066289,-0.11600171,-0.44969577,-0.009707753,0.15539163,-0.2727537,-0.12478404,-0.25767273,0.14847237,0.71789664,-0.15477699,0.21678504,-0.20740029,-0.51562405,-0.8580771,-0.21149012,-0.027525838,0.2467378,-0.14599714,-0.7271723,-0.0026164493,-0.33342808,-0.0766112,0.114230916,-0.39140752,0.4800845,0.25393507,0.45637867,-0.28236446,-0.8280791,0.25343645,0.19202343,-0.08567691,-0.37423363,0.44791558,0.23367205,0.67634517,0.07293361,0.028907565,-0.05646843,-0.69398725,0.10981165,-0.09201441,-0.17559218,-0.6201982,0.12084886 -47,0.5865426,-0.27039734,-0.5411164,-0.21508524,-0.4211003,-0.11410742,-0.12724973,0.561283,0.29723006,-0.2434621,-0.11166589,-0.098872304,0.1244737,0.37874353,-0.07982186,-0.6159099,0.24246931,0.31060278,-0.40500763,0.58638126,-0.38024595,0.19539554,-0.1549843,0.52001363,0.49105242,0.12473583,0.054229584,0.1656536,-0.14493527,-0.26506907,-0.19564725,0.33409193,-0.3716909,0.28911716,-0.005743083,-0.40413114,0.017386578,-0.70146424,-0.2938755,-0.79631776,0.27139103,-0.8441274,0.5283448,-0.06505564,-0.27303508,0.21084832,0.3637771,0.37981775,-0.1304351,-0.19007939,0.03904783,-0.19937216,-0.159933,-0.16265787,-0.19649641,-0.5429029,-0.56070876,0.03162156,-0.36873156,-0.21703553,-0.45224234,0.22758195,-0.30932778,-0.10183585,0.018788446,0.75412154,-0.3794884,0.12888712,0.10858084,-0.113868386,0.10135456,-0.6310831,-0.23083442,-0.09407345,0.29977867,-0.115757436,-0.28174102,0.26921776,0.4285856,0.27277228,0.066065945,-0.2958284,-0.24798962,-0.068072535,-0.061257277,0.44454035,-0.11145489,-0.5035152,-0.06423904,0.003899299,0.23029429,0.3365059,0.3332494,-0.06465682,-0.14541532,0.07636969,-0.12790582,0.5783715,0.41049716,-0.37374532,-0.0486458,0.27347308,0.37322316,0.29566884,-0.14626601,-0.120997615,-0.04373335,-0.6260777,-0.18475959,-0.034966595,-0.24186036,0.39686987,-0.19233552,0.28835198,0.5949469,-0.087000474,-0.20058991,0.25179452,0.15832175,-0.12416744,-0.45170033,-0.30468422,0.21852407,-0.47770816,0.33550274,-0.1728815,0.937012,0.20757246,-0.42083198,0.22354858,-0.55248195,0.21803251,-0.20040108,0.2948973,0.8154225,0.35706708,0.44416106,0.6502054,-0.28523275,-0.012207081,-0.019455872,-0.3541188,-0.065272816,-0.27745774,0.15663551,-0.5873248,0.06458971,-0.17760123,-0.060120728,0.2211962,0.60615075,-0.6297978,-0.26388377,0.2784214,0.80915797,-0.223236,-0.34514076,0.9706417,0.98107326,1.0537221,0.11269375,0.82606405,0.1393448,-0.08484103,0.14872374,0.10859704,-0.5437421,0.36918908,0.43368292,-0.20751932,-0.032078348,0.008205552,-0.093420394,0.6269751,-0.1457124,-0.33778852,-0.14968294,0.20629667,0.14385423,-0.2871892,-0.55695903,-0.48740008,-0.14118853,0.08871979,0.13742866,0.32238594,-0.121428095,0.46358302,-0.18453732,1.5275905,0.038067136,-0.10835458,0.042026144,0.51374,0.377753,-0.22638515,-0.055654563,0.35914373,0.31009224,0.12353305,-0.6238538,0.2811801,-0.2714596,-0.29843238,-0.054202914,-0.44495016,-0.119753465,0.17103778,-0.47765335,-0.1606542,-0.2537364,-0.27164152,0.54585344,-2.7475166,-0.1998633,-0.09150505,0.26567227,-0.11020296,-0.42557973,0.07581984,-0.4380979,0.49242923,0.278529,0.59007305,-0.5112358,0.26608732,0.35500643,-0.70729107,-0.1085507,-0.7224351,-0.060617015,-0.044459406,0.3329623,0.013229163,-0.14911185,0.04225783,0.041375957,0.6142012,0.047717627,0.09742844,0.23243538,0.29015476,-0.29919252,0.63256824,-0.14176983,0.73833364,-0.14795865,-0.31119597,0.2332049,-0.32217452,0.23628268,-0.13665298,0.087882794,0.7473738,-0.3761892,-1.1980317,-0.7042881,0.06733135,1.1333352,-0.10006637,-0.3814339,0.368889,-0.5455359,-0.2344843,0.116069324,0.55450493,-0.05838162,-0.21382138,-0.56680167,0.13034596,-0.028459342,-0.2182983,-0.04411183,-0.17559522,-0.51035696,0.7765267,-0.044782043,0.48052296,0.11072229,0.27130404,-0.3348738,-0.33129567,-0.1100845,0.6621698,0.4601526,0.05816549,-0.31670853,-0.17096819,-0.4499958,-0.121698685,0.23295961,0.6871203,0.45294094,-0.09642812,0.18103886,0.28800362,-0.0043872735,0.12026543,-0.074752755,-0.32085225,-0.2117367,0.10089613,0.6816381,0.6824771,0.060190614,0.64805996,-0.05536823,0.31211573,-0.094341636,-0.5132459,0.524314,1.341614,-0.36639565,-0.4370707,0.6514654,0.35072616,-0.13306642,0.4151063,-0.42068547,-0.18514608,0.42494744,-0.07814787,-0.4395297,0.04527027,-0.28047365,-0.03194764,-0.8509915,0.23041147,-0.39988676,-0.74785614,-0.43097422,-0.059133478,-3.7448606,0.34478062,-0.32121152,0.013361656,-0.21053907,-0.3974616,0.042643555,-0.7657987,-0.5309949,0.17662327,0.060966946,0.9413132,-0.21255587,0.025211811,-0.2040618,-0.50525576,-0.2532965,-0.040756878,-0.027482709,0.55825716,-0.11876829,-0.22384636,0.3319372,-0.085489154,-0.49605832,0.042723935,-0.68629587,-0.3915425,-0.21920379,-0.6266847,-0.28365582,0.5968511,-0.3048786,0.16082433,-0.29701298,0.062870234,-0.02533845,0.28073555,0.014970825,0.104562074,0.082308106,-0.18559149,0.10600399,-0.30757967,0.17150304,-0.029925277,0.39050725,0.18816954,0.077737845,0.31803954,0.5867289,0.7248557,-0.1496518,1.0756444,0.4358999,-0.060769293,0.22813955,-0.24815513,-0.4773332,-0.386782,-0.28866312,0.022537913,-0.40576437,-0.3513417,-0.045300715,-0.27377516,-0.793737,0.5560841,0.14464453,0.31877425,-0.07594592,0.28103957,0.64708394,-0.28492767,-0.16399112,0.040597063,-0.16527121,-0.7471203,-0.16128698,-0.5079543,-0.56217194,0.003097204,0.90665334,-0.3707752,0.03770057,-0.02030778,-0.25466934,0.15566863,0.20412056,-0.0038522023,0.1383695,0.4440483,-0.16802701,-0.60211486,0.37600133,-0.34990126,-0.12096372,-0.49291816,0.5057299,0.5256196,-0.4487223,0.6402226,0.39329004,0.15417777,-0.24078178,-0.5700321,-0.03432067,0.08419454,-0.13119796,0.42954132,0.34297785,-0.9995558,0.4949834,0.34915513,-0.115223214,-0.8314091,0.59634006,-0.07106363,-0.2806113,-0.22064236,0.46155065,0.39812344,-0.0156196505,-0.27741432,0.20430242,-0.4643737,0.23104326,0.04435388,-0.02876402,0.04442011,-0.2624881,-0.09602526,-0.7184274,0.037406836,-0.5209284,-0.33837125,0.20411023,0.04465476,0.11098313,0.13963588,0.09389241,0.2776592,-0.3945255,0.06443207,-0.22049357,-0.34430993,0.2772643,0.53681177,0.5488383,-0.51501155,0.59292424,0.0505082,0.043729976,0.20520104,0.045401867,0.3471648,0.053307064,0.595525,-0.07371065,-0.16105124,0.07580559,0.7495196,0.0074080667,0.50018466,-0.019309264,-0.030033153,-0.027104355,0.050829057,0.2905181,0.045450196,-0.6004046,0.053169426,-0.45066994,0.14088513,0.5268268,0.11329711,0.17690693,0.13063893,-0.45507926,0.121947676,0.040893175,-0.04106543,-1.310692,0.57964855,0.30486745,0.9918823,0.35044637,0.07400349,-0.21186279,0.84525335,-0.039571963,0.074688084,0.2475253,0.06460461,-0.32724506,0.49909657,-0.99608284,0.46863887,-0.018099539,-0.08481419,-0.031205984,-0.00086891424,0.5401429,0.71183,-0.48634583,0.017293049,0.0358038,-0.41618824,0.2675238,-0.4385656,-0.07021755,-0.5802332,-0.35412538,0.6797858,0.51272756,0.24287741,-0.31374672,0.023998972,0.17126696,-0.12646069,-0.016158726,0.040578917,0.0242413,0.08519365,-0.6743866,-0.122445785,0.42684236,-0.12103956,0.33048576,-0.043508872,-0.085639805,0.26384383,-0.051008247,0.009498853,-0.031744774,-0.64973456,0.121009365,-0.21236229,-0.6214012,0.5374146,-0.09697507,0.18902312,0.23149918,0.16299923,-0.07716848,0.55428576,-0.01729835,0.93242145,-0.074422866,-0.010860874,-0.42906666,0.20108119,0.016215783,-0.16085854,-0.05936729,-0.36736518,0.07994522,-0.57878006,0.4707677,-0.011740987,-0.35242558,0.094205104,0.050616622,0.10039612,0.4235341,-0.14532849,-0.059626177,-0.079057775,-0.21352814,-0.18260351,-0.40316376,0.114470094,0.27032742,-0.0024715753,0.008605292,-0.23418441,-0.08504473,-0.038045816,0.323916,-0.11981957,0.4179419,0.24959747,0.034064963,-0.119077876,-0.1794168,0.32658243,0.48655635,-0.20967017,-0.32308152,-0.39126825,-0.29516298,-0.40972805,-0.017578758,0.04234526,0.33963457,0.1081938,-0.100105636,0.6789077,-0.13614038,1.2852706,-0.1580615,-0.50159466,0.14190345,0.6047075,-0.09015046,-0.16759965,-0.20087315,0.9344599,0.32379788,0.003049158,0.024584893,-0.5908655,0.060944237,0.31479403,-0.13284913,-0.03036158,-0.005112117,-0.47586548,-0.22496483,0.20959689,0.20082727,0.29843193,-0.12603186,0.11992713,0.61737126,-0.0009541787,0.2501106,-0.37134594,-0.3265368,0.15766206,0.43852887,-0.1561067,0.18006667,-0.58798623,0.26815265,-0.6348689,0.18213719,-0.26966864,0.36247936,-0.27033678,-0.21798012,0.25600076,-0.04522915,0.33937454,-0.2521271,-0.19436851,-0.1343496,0.52125895,0.29471833,0.09784338,0.5543607,-0.33389467,-0.06593768,0.20186068,0.5029796,0.81917435,-0.23485494,-0.1280859,0.29546925,-0.31668073,-0.6407167,0.37259883,-0.27006054,0.19028538,0.12610963,-0.10045084,-0.5445056,0.16192707,0.37354758,0.13234688,-0.105708525,-0.6447999,-0.12406262,0.224048,-0.22589915,-0.05637672,-0.3917332,0.11591964,0.45464373,-0.21460383,-0.34522316,0.051701333,0.16880465,0.1533564,-0.51743627,0.05493113,-0.3915552,0.36935446,-0.20727502,-0.4382833,-0.3078174,-0.052062947,-0.5293773,0.22178769,-0.037903097,-0.20634006,0.24148354,-0.1737005,-0.034575783,0.8727468,-0.27825406,0.29382423,-0.51190174,-0.53562474,-0.55863225,-0.37792033,0.35448748,-0.06534509,0.04886899,-0.6924681,0.095129974,-0.053951785,-0.36107412,-0.22279261,-0.33712628,0.30564085,0.06065561,0.38066465,-0.08777295,-0.8410194,0.3271832,-0.04499791,-0.20398869,-0.58927864,0.31985492,-0.15420176,0.7051303,0.0862642,0.059218626,0.10736867,-0.14662705,-0.014860248,-0.25070497,-0.332716,-0.49981344,-0.07554189 -48,0.5033706,-0.065872945,-0.33263,-0.10269722,-0.19437203,0.10411717,0.0074642072,0.73575234,0.17322804,-0.57270473,-0.28781885,-0.2713534,-0.07704392,0.37778205,-0.16716415,-0.45444202,0.04522787,0.04893695,-0.22889648,0.5469494,-0.2725411,0.3903744,0.18766928,0.29169074,0.26656818,0.14431868,0.18651588,0.028199745,-0.06342395,-0.30124888,-0.30911094,-0.035927214,-0.6316484,0.27763626,-0.196455,-0.45837066,-0.18884864,-0.66480607,-0.4558994,-0.80038583,0.4036906,-1.0406057,0.45931742,-0.12146015,-0.24659474,0.18039678,0.09099285,0.17403316,0.023331918,-0.16778456,0.06695049,-0.13002929,0.043049514,0.030563427,-0.28817326,-0.33969748,-0.666796,-0.0040571634,-0.34493953,-0.3088532,-0.37248868,0.12502223,-0.3919288,0.01139587,-0.044032462,0.45158562,-0.4079021,0.08154435,0.04300296,-0.1303307,0.26278383,-0.70148146,-0.29442957,-0.13148247,0.012319148,-0.08460584,-0.19860986,0.516755,0.37852934,0.379443,-0.13698067,-0.07570008,-0.18493113,-0.039632,0.15895587,0.6200563,-0.14785165,-0.5200456,-0.11199717,0.021475209,0.41636482,0.37126768,0.258098,-0.31628734,-0.1058689,-0.031386714,-0.23034307,0.39914754,0.5563552,-0.14468387,-0.3360278,0.43295357,0.3794715,0.052639183,-0.07970401,0.09005069,-0.04241793,-0.38035044,0.012343377,-0.008329784,-0.29417354,0.74135125,-0.07013284,0.20710333,0.64938384,-0.27416304,0.07589174,0.051580183,-0.02510308,-0.15693912,-0.29540518,-0.20019712,0.26046038,-0.39034936,0.27418563,-0.2778888,0.8175195,0.18177645,-0.8981272,0.32067,-0.48478243,0.13322942,-0.15290125,0.47403118,0.6176514,0.3770304,0.299424,0.82326114,-0.47753423,-0.06981884,-0.018556667,-0.31970882,-0.16175137,-0.3173836,0.12205908,-0.43255094,-0.022929367,0.1924635,-0.26436263,0.20679675,0.3011935,-0.47108254,-0.1586373,0.08629568,0.7982536,-0.25657415,-0.073139615,0.89082915,1.1605655,1.0420562,0.076705754,1.0767955,0.17952417,-0.1758785,0.19651996,-0.03054093,-0.69496536,0.22395352,0.45811316,-0.12949839,0.25342005,0.07466912,-0.15585701,0.11896013,-0.5962571,0.021709498,-0.1263187,0.19285645,0.28247002,-0.15284577,-0.40307745,-0.18753932,-0.09118057,0.047496192,-0.026167009,0.29218286,-0.2692799,0.4139055,0.03985071,1.5705358,-0.03488336,0.036171153,0.13473186,0.7000811,0.12144495,-0.2153271,0.08730182,0.21377009,0.352004,-0.0013853782,-0.46806702,0.09635238,-0.29960835,-0.47174734,-0.10159551,-0.36571148,-0.12251568,0.03034273,-0.33080086,-0.2666702,-0.19493291,-0.31139535,0.52791405,-2.8003385,-0.1983142,-0.09780951,0.33326423,-0.29483798,-0.30024192,-0.0034809662,-0.6324472,0.54846436,0.3676437,0.4565794,-0.69009835,0.11021367,0.48048022,-0.41594583,-0.15201822,-0.6284783,0.041414626,0.041254982,0.3719765,-0.024792096,0.058392763,0.22781152,0.04596202,0.60032785,0.32189757,0.14082131,0.3413348,0.39230645,-0.09494224,0.3636474,-0.14068547,0.49476704,-0.17231591,-0.027046192,0.38575158,-0.3427524,0.1776419,-0.19212542,0.077491514,0.46297505,-0.4451145,-0.73940116,-0.75311685,-0.45195687,1.243999,-0.27458364,-0.6271016,0.32560426,-0.028156023,-0.039496496,-0.28281492,0.5646845,-0.20339197,0.02255223,-0.58419967,-0.107128866,-0.10564503,0.04476195,-0.12342696,0.031144848,-0.3833328,0.6712607,-0.14554976,0.61671233,0.26610512,0.23200037,-0.32014227,-0.44056973,0.055829618,0.95559925,0.5458866,0.12016937,-0.21585509,-0.044888403,-0.42704022,-0.4411022,0.18224184,0.60737,0.7711039,-0.05406957,0.13351263,0.34717676,0.023413058,0.09918596,-0.054262117,-0.23825748,-0.15144761,-0.041705377,0.54827,0.588874,-0.21143256,0.49848923,-0.15727901,0.14021006,-0.024032546,-0.5131645,0.49514216,1.0406587,-0.21347111,-0.18427332,0.52509576,0.37870315,-0.3942868,0.452463,-0.6264433,-0.25604007,0.5973712,-0.20038256,-0.52128345,0.06460962,-0.28509685,0.07106348,-0.68620336,0.32790482,-0.20084296,-0.6642695,-0.36014175,-0.08243037,-2.5050256,0.07711427,-0.16856956,-0.33522013,-0.14553462,-0.34298408,0.08813346,-0.43096483,-0.5723268,0.16518882,0.1410574,0.6895062,-0.013688241,0.23190393,-0.16015497,-0.11817961,-0.56842744,0.1785678,-0.06238842,0.41302866,-0.026826914,-0.24287528,-0.049321525,-0.111024335,-0.7395886,0.06852122,-0.36538675,-0.48959145,-0.25090203,-0.3505836,-0.34332377,0.67921436,-0.47384816,0.10068533,-0.089377716,-0.14766453,-0.15706635,0.21722616,0.15619574,0.15121374,0.06585197,-0.07020705,0.17276071,-0.3110611,0.5452081,0.088229336,0.39065728,0.41467845,-0.2568415,0.3216197,0.3970488,0.5983649,-0.025557866,0.8712018,0.26107126,-0.052493688,0.24394149,-0.29379147,-0.26735523,-0.55254656,-0.11730306,0.0001571637,-0.31771237,-0.5540109,0.018090853,-0.3797644,-0.8202607,0.23914184,0.12136175,0.5277577,0.008836164,0.2041901,0.5334482,-0.2009164,-0.036721334,-0.015535629,-0.03832651,-0.72529835,-0.36623,-0.78725564,-0.48964965,0.16266595,0.78870076,-0.06604055,-0.26028317,-0.026678149,-0.17924796,0.080178685,-0.011624658,-0.052712202,-0.12944938,0.25804877,-0.05108963,-0.7762859,0.50168365,0.08107201,-0.109325565,-0.67092615,0.4156074,0.533268,-0.55508935,0.3037262,0.23499832,-0.017028948,-0.3147745,-0.5356678,-0.13954562,-0.27223003,-0.19614789,0.2580977,0.1492986,-0.78775144,0.34014302,0.34647465,-0.23419729,-0.67542964,0.48838425,-0.047169562,-0.08825047,-0.082097724,0.22884259,0.35360336,-0.057279684,-0.06027531,0.21263435,-0.5765323,0.31923765,0.14773099,0.05966007,0.45588467,-0.10718989,-0.07315012,-0.6569548,0.2192422,-0.51423323,-0.23346584,0.16583571,0.092280775,0.10955414,0.29161316,0.17858575,0.33127588,-0.14224522,0.19636253,-0.059570692,-0.27972752,0.45553252,0.32076344,0.60512096,-0.5104504,0.67052215,0.011661253,-0.16898566,0.19893423,0.18017012,0.4274452,0.2502712,0.26056486,0.026263608,-0.34394276,0.03274252,0.59420556,0.28067493,0.36193526,0.05371078,-0.13132955,0.33397773,0.0603931,0.2195411,0.0009685847,-0.7362438,-0.033106677,-0.38518798,0.012655352,0.4900432,0.16434486,0.26769,-0.16833097,-0.21990037,0.003035621,0.03416396,-0.21249701,-1.280844,0.335636,0.122726835,0.9520646,0.4785784,-0.15826319,0.05286646,0.65649307,-0.065373175,0.22144611,0.42642614,0.017413922,-0.51573074,0.536275,-0.8415795,0.5205526,0.048663273,0.037300196,0.050540037,0.1943869,0.35531324,0.75966686,-0.30198,0.038107496,-0.031604685,-0.32778847,0.1850463,-0.45680097,0.162961,-0.5863316,-0.26766437,0.53511155,0.48236483,0.17585744,-0.09285466,-0.01632687,0.008334055,-0.10125114,0.16796002,0.031794682,0.09372401,-0.10363148,-0.46094644,-0.24767083,0.48800653,-0.30160004,0.20190932,0.04333747,-0.13158488,0.13611166,-0.11855139,-0.24159226,0.021814413,-0.780336,0.088029854,-0.22861758,-0.37868202,0.2768888,-0.05302882,0.24232648,0.19076003,0.003829602,-0.18092966,0.077929646,0.40746287,0.66593105,-0.09532277,-0.2741087,-0.48689908,0.12538753,0.15484709,-0.18912147,0.13121739,0.09092838,-0.27251303,-0.3987099,0.51299393,-0.15276036,-0.22041632,0.24577409,-0.21359584,-0.05602268,0.5616344,-0.08747883,0.012940435,-0.062037177,-0.19042148,-0.22354023,-0.042889435,-0.10936639,0.3339438,0.22272705,-0.18760483,0.016476192,-0.20477623,0.0059577683,0.109062046,-0.101182535,0.38903826,0.3034386,0.031740922,-0.43450117,-0.24403025,0.15635058,0.4193192,0.17704989,-0.06789043,-0.10042893,-0.4577567,-0.31785202,0.11039622,-0.12761006,0.4256882,0.12614848,-0.2825383,0.59528595,0.13160157,1.1460341,-0.011813281,-0.32212564,0.08123154,0.45568416,0.032356802,-0.122654796,-0.31627372,0.91967,0.528979,0.017969351,-0.05784662,-0.3702819,0.11406803,0.34224856,-0.23664315,-0.29021648,0.021145385,-0.65857977,-0.3960142,0.12871635,0.25252932,0.16247302,-0.08355821,-0.06371571,0.40227473,0.020925047,0.51414233,-0.24396883,-0.08545943,0.3321333,0.1675372,0.017200662,0.065110214,-0.43533653,0.26367372,-0.569145,0.10343652,-0.121763624,0.14723355,-0.17448911,-0.24305645,0.1442832,0.13901989,0.52266836,-0.15970968,-0.5937983,-0.20391844,0.5265536,-0.015533267,0.13120948,0.45782667,-0.23231615,0.033063814,-0.11878947,0.37878805,1.2793727,-0.01037176,0.14580148,0.26583436,-0.524919,-0.7221661,0.51905006,-0.24493077,0.41246402,-0.00051425054,-0.09728964,-0.48706314,0.2423726,0.27138603,-0.12148705,0.1655971,-0.6362968,-0.40482014,0.1688791,-0.39612573,-0.2713071,-0.5442213,0.09317325,0.51257294,-0.33410823,-0.30392128,0.16856065,0.24553344,-0.16727063,-0.65218264,-0.10056508,-0.1782706,0.20769198,-0.024351437,-0.4265961,-0.15290122,0.09387325,-0.43599933,0.19524759,-0.18315227,-0.35721546,0.06575783,-0.28158897,0.15494703,0.90157723,-0.12477572,0.0058499756,-0.5755616,-0.57112956,-0.6959569,-0.6187017,0.38448113,0.15299818,0.001231801,-0.62052476,-0.09463981,-0.09782852,0.00620201,-0.17865174,-0.37433618,0.4253799,0.16172965,0.36117303,-0.011927917,-0.72200674,0.14201763,-0.040780548,0.073523894,-0.56776935,0.43142828,0.09943669,0.8490766,0.18499003,-0.0077589382,0.18633522,-0.5381021,0.03447589,-0.18352225,-0.28072882,-0.3948146,0.24920394 -49,0.17429887,-0.1163907,-0.59167117,-0.11103848,-0.5052698,0.30496776,-0.27702528,0.20677558,0.2848991,-0.19608553,0.08082401,-0.03735217,-0.099011,0.40854868,-0.11130874,-0.69871706,0.048250403,0.049727358,-0.6275833,0.41925424,-0.46723643,0.38102537,-0.14969839,0.30664384,-0.03468459,0.31640166,0.1678885,-0.074987136,-0.1595512,0.044868566,-0.109636806,0.23562516,-0.39086735,0.30252022,0.0018921773,-0.2826695,0.12517922,-0.23590758,-0.2159292,-0.6346518,0.21093775,-0.6000852,0.5449637,-0.18930298,-0.36947602,0.16647013,0.08252777,0.18784557,-0.39375037,0.22461154,0.22279033,-0.32556874,-0.04401983,-0.22506717,-0.4224106,-0.3585848,-0.45313638,-0.08206957,-0.65060717,-0.12394769,-0.44903573,0.21185288,-0.31414267,-0.08825132,-0.11896797,0.3181182,-0.5024811,0.25318065,0.12820044,-0.22875047,0.00974656,-0.37466142,-0.08799744,-0.114241205,0.23811011,-0.14372139,-0.12619835,0.25525978,0.36665118,0.41554847,0.07485558,-0.17780972,-0.4265067,-0.28730693,0.10351089,0.44917774,-0.077916384,-0.16200906,-0.21213506,0.01191563,0.18533972,0.19733019,-0.19338837,-0.28021926,-0.11505701,-0.028974025,-0.2814459,0.2977716,0.35127392,-0.34906617,-0.33831885,0.46136317,0.3332229,0.10747347,-0.2500037,0.14571358,-0.05101295,-0.48392615,-0.26763895,0.16399378,0.05026672,0.3911719,-0.16384563,0.2593077,0.78129005,-0.23566397,-0.06307974,-0.11651622,0.017192988,0.013909829,-0.111798964,-0.032427955,-0.022753673,-0.47789466,0.034043215,-0.031631146,0.7737604,0.16417055,-0.7776301,0.41681108,-0.48838893,0.0745784,-0.14117709,0.55151486,0.65304756,0.45967656,0.26369697,0.73348725,-0.4461993,0.1910934,-0.089017734,-0.4420183,-0.002430745,-0.086678766,-0.11179271,-0.6021789,0.08388528,0.06147367,0.030022684,0.09852416,0.33081084,-0.36104038,-0.018340738,0.00032008888,0.7304881,-0.47221085,-0.1461162,0.74078995,0.8405463,1.0073036,0.067157626,1.2084678,0.45436847,-0.16229981,0.016138045,-0.460991,-0.3991069,0.21108942,0.2391773,-0.0712041,0.265664,0.09050679,0.20450354,0.3369466,-0.14190848,-0.055337746,-0.10581191,0.15842065,0.089706846,0.026995596,-0.33326414,-0.37809277,0.19133161,0.14844607,-0.10343455,0.27885884,-0.12384972,0.5462619,0.08506464,1.3708723,0.1493537,0.069611296,-0.054192886,0.47563058,0.12114572,-0.04854236,-0.19848761,0.32337567,0.25817573,0.04325221,-0.49529916,-0.042372838,-0.26058975,-0.46440107,-0.18984792,-0.3235853,-0.111539505,-0.113271005,-0.44913545,-0.18798093,0.07255828,-0.30454203,0.54007924,-2.597684,-0.016685423,-0.08343173,0.23294166,-0.25021487,-0.27064458,-0.28090557,-0.4609343,0.35895893,0.37640777,0.361635,-0.5509829,0.3391562,0.24549408,-0.37915748,-0.20482177,-0.58521265,-0.017467786,0.0093922615,0.400818,-0.10986004,-0.059774686,-0.16054313,0.20545608,0.68076533,-0.12119352,0.0062539726,0.26044992,0.47688484,0.150482,0.4650947,0.14711209,0.5612335,-0.26501426,-0.19792645,0.37371844,-0.40166292,0.26690742,0.10740994,0.07872453,0.3090657,-0.5057214,-0.913509,-0.4791737,-0.2794261,1.2698814,-0.34458488,-0.42593375,0.28309652,-0.07846589,-0.23817004,-0.05084507,0.2695894,-0.070488766,0.014790579,-0.6578076,0.11280301,0.03199509,0.27243963,-0.054378342,0.10459757,-0.11667165,0.5730837,-0.1965258,0.24897432,0.34089717,0.19915509,-0.16518854,-0.4289466,0.17599529,0.7630985,0.3083231,0.19526066,-0.10228927,-0.32452482,-0.049430825,-0.16059802,0.16102797,0.40189826,0.56242764,0.0015001575,0.09262911,0.21565025,-0.1996433,0.037539463,-0.24366918,-0.17673373,0.051178657,0.23639719,0.6082403,0.47427636,-0.031199064,0.5405689,-0.09061939,0.13546795,-0.088689126,-0.4979661,0.41099685,0.71849257,-0.12189417,-0.32945257,0.41260803,0.41641808,-0.3084672,0.28469932,-0.398757,-0.27490765,0.6690586,-0.22810355,-0.4165563,-0.062469974,-0.3049803,0.036494356,-0.7857509,0.3236619,0.064550206,-0.6446651,-0.39781135,-0.04685844,-3.8293793,0.108620614,-0.0970109,-0.20858416,0.05223821,-0.12149355,0.23996834,-0.45756105,-0.45232975,0.061348617,0.04229496,0.40858132,0.010299174,0.026592681,-0.38788185,-0.15746766,-0.22000167,0.16759,0.11041651,0.3457717,0.02680232,-0.46389902,0.21118212,-0.3698234,-0.41307074,-0.076998614,-0.4561982,-0.44606417,-0.14834195,-0.41859138,-0.25769827,0.6934415,-0.4354175,-0.060833104,-0.34007356,0.019278144,-0.21923904,0.37128556,0.2863264,0.12838921,0.076343514,-0.008002839,-0.027655868,-0.35576156,0.33201686,0.09723774,0.13149092,0.38604316,0.10890439,0.15205428,0.61634284,0.52503514,0.080900736,0.773725,0.17247295,-0.25263664,0.38118905,-0.39001054,-0.23952717,-0.58592457,-0.39902,-0.23059654,-0.34286982,-0.32346275,-0.17510279,-0.2517067,-0.74061185,0.41530597,0.06625598,0.051451884,-0.114141256,0.28376713,0.41029695,-0.1664907,0.090451024,-0.14844078,-0.1903955,-0.44738388,-0.5458412,-0.5737025,-0.5575448,0.18424867,1.1639247,-0.16824672,-0.049012166,-0.013633204,-0.37173328,0.07215953,0.18282904,0.25005263,0.37030372,0.2873111,-0.31983286,-0.804151,0.37841496,-0.12178327,-0.072303146,-0.6958839,-0.002027917,0.7738402,-0.60735184,0.48848775,0.36046633,0.21024556,0.20674016,-0.49807227,-0.3267966,-0.031291876,-0.22475295,0.41391844,0.16198519,-0.5810465,0.4890191,0.16391712,-0.09680447,-0.58499837,0.48683387,0.0056776386,-0.18690355,0.17298898,0.31885654,0.06756004,-0.14807115,-0.10108447,0.101536684,-0.41691455,0.301322,0.3222939,-0.00413723,0.3483674,-0.11510752,-0.26462686,-0.6377566,-0.2481964,-0.37202078,-0.2987094,0.08163554,0.13315906,0.09018124,0.037233073,-0.1356873,0.2988222,-0.29448977,0.12743,-0.14608864,-0.22663304,0.35797736,0.42973444,0.3272901,-0.37582558,0.67102844,0.013000308,0.17003898,0.031738773,-0.009161774,0.5548583,0.13579074,0.34889477,0.04409958,-0.2851811,0.21690449,0.7064812,0.20949619,0.3192969,-0.059571937,-0.26329646,0.25095838,0.23705961,-0.02597962,0.008052302,-0.13330647,-0.13344367,-0.077604026,0.22040667,0.3309466,0.12553142,0.38723692,-0.0798316,-0.118636236,0.23972815,0.108780734,0.059186306,-0.9159688,0.32712844,0.29224116,0.6281645,0.35863554,0.037238255,0.04769081,0.5711599,-0.39322785,0.08862916,0.36163837,0.015573612,-0.43363363,0.54732746,-0.58597827,0.64590055,-0.1398199,0.009719477,0.20875788,0.30921295,0.21262102,1.0049356,-0.049130987,0.088801354,0.15778597,-0.4586443,-0.066263214,-0.2782528,0.05739981,-0.5571537,-0.2576014,0.56329745,0.36629608,0.36428082,-0.21886034,-0.060009804,0.030737253,-0.18722035,0.07762405,-0.058033988,0.041591667,-0.25397265,-0.5593509,-0.23974864,0.52343047,0.004071331,0.090723425,0.14877428,-0.1582036,0.42781168,-0.13555865,0.1060421,0.008231733,-0.47467473,-0.0013782163,-0.23533353,-0.5226185,0.35589293,-0.31345186,0.37955624,0.12926218,0.112076506,-0.39460343,0.42007104,0.19795386,0.81460506,-0.023687402,-0.1458761,-0.23251818,-0.04137175,0.45409337,-0.19674173,-0.14334354,-0.24487773,0.011752495,-0.68482685,0.3725433,-0.3803299,-0.22583914,0.008851325,-0.1594979,-0.023397235,0.36820152,-0.021570412,-0.19699179,0.108984604,-0.03181511,-0.38186303,-0.08825339,-0.32170165,0.31265974,0.041304287,-0.05579056,-0.037053797,-0.15687984,-0.06474383,0.2870817,-0.05723371,0.15727425,0.29525605,-0.009889993,-0.3110103,-0.020823289,-0.2022718,0.48028478,0.023118058,0.083111875,-0.35436487,-0.27277035,-0.16990294,0.3042476,-0.19653775,0.0571738,0.06000651,-0.49267736,0.7278105,-0.093828194,1.1216412,0.14735457,-0.27255613,0.21800311,0.36361423,0.08239526,0.16636024,-0.22844492,0.79314476,0.6763506,-0.00903581,-0.25817892,-0.35908586,-0.20125917,0.19095679,-0.24839382,-0.24145718,-0.08018382,-0.76485956,-0.23866129,0.19479771,0.05137136,0.22415636,-0.020141652,-0.13812631,0.014634379,0.26217258,0.38590133,-0.40411758,-0.045465723,0.26173753,0.29242665,-0.05258455,0.21949151,-0.3196612,0.3753778,-0.59557396,0.0880425,-0.2943181,0.126884,-0.2734769,-0.09425743,0.2625139,0.13362764,0.28397045,-0.17150955,-0.18326299,-0.31129995,0.6499879,0.20364293,0.18795453,0.64386076,-0.2454617,-0.11088085,0.054873686,0.2935497,1.0609502,-0.04729231,-0.13178729,0.48130152,-0.26321548,-0.46814415,0.12926474,-0.43336332,0.054874066,0.0421044,-0.28748578,-0.25271592,0.35634908,0.14977892,0.036841463,0.045999166,-0.42173475,-0.029323291,0.31057447,-0.31316745,-0.38417143,-0.3614961,0.33129212,0.50853115,-0.33146775,-0.22514343,0.034999624,0.2963403,-0.28638014,-0.49822482,0.09306348,-0.20374246,0.37287876,0.16073723,-0.38805586,-0.013187373,0.2723732,-0.33837345,0.020673864,0.4685508,-0.39503482,-0.020162709,-0.1234584,-0.072341524,0.8797568,-0.09176738,0.14119273,-0.6684171,-0.43346146,-0.91726,-0.2675858,0.39621326,0.15220252,-0.097013615,-0.5939035,-0.15319616,0.0029683898,-0.16219063,0.07944539,-0.624729,0.44207317,0.12929943,0.31658605,-0.0634849,-0.9146553,-0.023312101,0.083717115,-0.24303073,-0.51418775,0.53839153,-0.35911953,0.681053,0.16413455,0.0018986384,0.3543597,-0.485497,0.32769248,-0.34404805,-0.25538388,-0.55854803,0.093943976 -50,0.419673,-0.011303084,-0.60370296,-0.101131044,0.056552358,0.052166644,-0.19503434,0.27757004,0.07941158,-0.51655936,0.09638738,-0.1763151,-0.044055317,0.3001701,-0.19017127,-0.5149817,0.100486636,0.22524951,-0.54302734,0.48872572,-0.5323378,0.41309372,0.015980428,0.12898698,-0.029550927,0.28079653,0.40310717,-0.102925405,-0.04996111,-0.14925946,0.20423439,-0.022421118,-0.63502586,0.3049043,-0.0022723165,-0.36527154,-0.005364056,-0.2279149,-0.3691663,-0.6205147,0.29765755,-0.71750844,0.5237509,0.022982458,-0.23655103,0.29932877,0.10800428,0.3087153,-0.33476788,0.21744904,0.094527796,-0.113862105,-0.13772598,-0.3419883,-0.16525224,-0.23614563,-0.46520418,0.00047397614,-0.6044288,-0.12205966,-0.28163224,0.0027095675,-0.28466716,0.18464956,-0.1008503,0.3940679,-0.324495,-0.110516526,0.19624688,-0.116960295,0.39621043,-0.42101255,-0.15595104,-0.11235873,0.012459929,-0.33426258,-0.14437155,0.32991758,0.1583722,0.48058572,-0.04813407,-0.107873626,-0.12693158,-0.19698772,0.16796352,0.520943,-0.13621084,-0.47899118,-0.12360639,-0.20375636,0.09178513,0.04229257,0.117971815,-0.36402056,-0.039665885,0.0018693209,-0.32940993,0.2213802,0.538679,-0.37613773,-0.14095517,0.35142145,0.5871597,-0.14709106,-0.01808553,0.13450597,-0.08129203,-0.52317137,-0.24423493,0.052015636,-0.11341614,0.42617127,-0.0313311,0.22609864,0.5208079,-0.3070559,-0.023189928,0.19079311,-0.0069799935,-0.0010234012,-0.2708334,-0.3568731,0.25102404,-0.5078823,-0.14156033,-0.28663507,0.739278,0.039339315,-0.8520066,0.39728492,-0.4238817,-0.0010563837,-0.09174007,0.5881775,0.46502516,0.5244126,0.014518052,0.7001554,-0.72880155,0.00025038313,-0.08929039,-0.33319658,0.05086273,-0.06607829,-0.12251703,-0.4835713,-0.007647574,0.27055007,-0.15134223,0.12079763,0.37181237,-0.34743935,-0.08773608,0.041122917,0.78174436,-0.38377264,0.039649256,0.44036755,1.2543466,0.9110503,0.1506215,1.2554501,0.32838514,-0.23570512,0.03501696,-0.12981045,-0.89988095,0.26007015,0.4121728,-0.16308013,0.4681075,0.051571865,-0.107124485,0.13839313,-0.39502558,0.027592663,-0.0126047535,0.40086803,-0.18194903,-0.24420097,-0.22253403,-0.25492606,0.055328686,-0.01906779,0.03532257,0.29413563,-0.21466956,0.2570532,0.18009503,1.5589895,-0.1178,0.14701729,0.14503254,0.42871904,0.2566684,-0.12827696,-0.23398386,0.24421261,0.34644872,0.03839814,-0.6064146,0.07106881,-0.09508036,-0.6084848,-0.21673307,-0.26609388,0.11638047,-0.3056903,-0.29202458,-0.013968636,-0.014004315,-0.43381572,0.37801117,-2.6673477,-0.15280856,-0.04271532,0.31375423,-0.22265418,-0.1671906,-0.20666085,-0.33311558,0.50227576,0.41308612,0.49146438,-0.54378074,0.38048205,0.38803142,-0.20589134,-0.13617416,-0.5396113,0.01764438,-0.16774437,0.22413038,-0.034891043,-0.1759834,-0.08028998,0.29045123,0.3487186,-0.21381828,-0.050192717,0.33684188,0.30086067,0.16572824,0.38986626,0.043962087,0.47457665,-0.49682322,-0.18393207,0.34376568,-0.35854286,0.025522871,0.08914592,0.1544262,0.22720985,-0.5054557,-0.86468023,-0.5708905,-0.1888011,1.2266959,-0.35824257,-0.36061224,0.21223564,0.057396274,-0.3360106,6.132041e-05,0.2886297,-0.2637014,0.008332183,-0.8776494,0.12007785,-0.04379105,0.33191794,0.06746657,0.10009909,-0.47584635,0.4241228,-0.11210618,0.6852303,0.46667123,0.051602185,-0.3839431,-0.5201053,0.12753786,1.2309383,0.2536367,0.23222141,0.0012668201,-0.044471234,-0.2882134,-0.097889386,0.24017942,0.29083005,0.8041406,0.030982971,0.12582092,0.2561894,-0.017952468,0.05651995,-0.03136026,-0.41077518,-0.08848703,0.12631537,0.61585224,0.47776347,-0.12686864,0.33955312,-0.12069949,0.25708753,-0.3440032,-0.4315679,0.5960707,0.7174578,-0.12507196,-0.2865124,0.4764475,0.55402404,-0.27638584,0.54129326,-0.5522931,-0.5005845,0.43944553,-0.1877249,-0.13073482,0.31604916,-0.35285348,0.26163536,-0.9759355,0.37268454,-0.33780763,-0.385871,-0.48447672,-0.26179856,-3.5470352,0.17046271,-0.11686908,-0.1579605,0.015730174,0.0707942,0.36169058,-0.45857236,-0.6006298,0.09225016,0.0131175,0.595813,0.07212232,0.088011876,-0.17199945,-0.12310772,-0.19940817,0.24118567,0.15519173,0.1775094,0.24189626,-0.4825282,-0.20105307,-0.3006484,-0.42506048,0.008637377,-0.52427226,-0.38588867,-0.19704165,-0.6134747,-0.54611415,0.62581956,-0.3460483,0.067565255,-0.11033569,-0.056602485,-0.061508898,0.3693084,0.09897763,0.08928054,-0.03287345,-0.06005025,0.016523698,-0.3006759,0.119191356,0.031117752,0.19451974,0.37283802,-0.302407,-0.10521489,0.45691904,0.6187454,0.118792705,0.6794663,0.27713946,-0.13776767,0.3067923,-0.4058985,-0.12502417,-0.6532549,-0.38271865,-0.14795102,-0.29742822,-0.4324072,-0.1279466,-0.44159487,-0.61275446,0.46074104,-0.07471119,-0.041231673,0.057087746,0.38650665,0.235661,-0.0665812,-0.07148552,-0.13155387,-0.13652591,-0.3365462,-0.27626666,-0.8523565,-0.33056358,0.15399028,1.1385887,-0.057556275,-0.028299306,0.04005174,0.024717584,0.22059214,0.14855024,0.039798502,0.34975323,0.39825875,0.012709945,-0.6523727,0.36358136,-0.28484493,-0.1601816,-0.57122785,-0.026115159,0.52289975,-0.66791075,0.33832583,0.45997033,0.24656665,-0.021144392,-0.3553082,-0.121915065,0.21123873,-0.18209653,0.4517839,0.21995495,-0.8132664,0.5616116,0.3782969,-0.34275705,-0.68216413,0.5050069,0.018157313,-0.2150015,-0.026002398,0.38932827,-0.07916824,-0.013825091,-0.3574979,0.16475174,-0.48357052,0.21552809,0.31634453,-0.089097604,0.53860945,-0.204783,-0.12271432,-0.56303173,-0.029092146,-0.49807462,-0.15131132,0.046685226,-0.035138417,-0.028037813,0.25499812,-0.21706092,0.4890413,-0.28281388,0.036943734,-0.07497261,-0.31736103,0.6356974,0.43383583,0.26009473,-0.29547498,0.66138715,-0.116748914,-0.001879773,-0.44523785,-0.034233626,0.4989018,0.13233104,0.21400599,0.11853911,-0.05381883,0.4676288,0.5565527,0.329946,0.31307167,0.18520424,-0.11138047,0.24362652,0.23145948,0.15225473,0.1768626,-0.110668,-0.10756045,-0.03959767,0.21656159,0.43019214,0.08349572,0.527908,-0.24529374,-0.3772312,0.012867672,0.24278362,-0.25763527,-1.0395596,0.5750614,0.03445901,0.3966786,0.67461354,-0.042446055,0.16737218,0.3464176,-0.21992747,0.21422434,0.15528019,-0.029543022,-0.47931153,0.5618094,-0.5058865,0.46451217,-0.08554321,0.042137295,0.07190442,-0.12889466,0.4491,0.802699,0.086437024,0.20363139,0.0072918152,-0.27580458,0.11604778,-0.38300732,0.096960366,-0.33930522,-0.26954538,0.62718076,0.1719198,0.36004677,-0.16792604,-0.081412025,0.12868878,-0.13704434,0.16607358,0.013709881,0.1210057,-0.045147363,-0.59833616,-0.24829766,0.5202376,0.25134584,0.12946841,0.20882551,-0.22307293,0.28140298,-0.09937863,0.021943273,-0.033256575,-0.52229685,0.06897861,-0.27449495,-0.16675426,0.31659865,-0.4103029,0.2689028,0.1619002,0.10327072,-0.4210685,0.13494457,0.33635965,0.51584834,-0.07656995,-0.2901179,-0.12645814,0.085167244,0.18534844,-0.13117255,-0.040054016,-0.34008977,0.018755527,-0.7848158,0.4579375,-0.05970524,-0.17569573,0.33236116,-0.14995445,-0.007873589,0.48463088,-0.21547198,-0.17437577,-0.047166966,-0.1201098,-0.09930646,-0.36859062,-0.28438005,0.16649409,0.0763961,0.08058732,-0.0061039245,0.11722028,0.020997806,0.3122916,-0.026551124,0.30355498,0.2653604,0.31711575,-0.29338223,0.054495417,0.0075532794,0.4380729,0.093490064,-0.016719682,-0.43208292,-0.44157082,-0.071525574,0.030522449,-0.2377003,0.08017584,0.09174544,-0.42077708,0.825059,0.117519975,0.89852035,-0.04779833,-0.2932174,-0.027784633,0.5555333,-0.033497892,-0.1595207,-0.19855043,1.0936048,0.6297625,-0.19961646,-0.1405399,-0.26792312,-0.1974083,0.0064714295,-0.23224208,-0.37191746,-0.092078604,-0.5728497,-0.44698194,0.18597284,0.39735094,0.028444836,-0.09321009,0.15524055,0.25277683,0.06194419,0.06951295,-0.53042114,0.12407213,0.35120204,0.17911641,0.048989374,0.07719566,-0.4847674,0.38220432,-0.7508338,0.11521212,-0.14396945,-0.015041603,0.07938109,-0.26652473,0.16500545,0.11802412,0.20680663,-0.30005005,-0.16782716,-0.09053634,0.49179524,0.09145472,0.15591769,0.8455592,-0.13186033,0.13851564,0.14686285,0.4844053,1.0653796,-0.076416664,-0.0828914,0.28182945,-0.39917645,-0.6869664,0.19849227,-0.26795238,0.2290181,-0.23769446,-0.35500985,-0.5847512,0.23072931,0.097037844,-0.035517965,0.17656872,-0.53740793,-0.26938093,0.24316978,-0.31691986,-0.36143357,-0.41366008,-0.06715017,0.5833805,-0.20078564,-0.15466176,0.14786802,0.25939354,-0.28066593,-0.6823262,-0.12291049,-0.33021617,0.32922983,0.3744836,-0.13907674,-0.039460275,0.22828372,-0.35323486,0.24072795,0.17881016,-0.41224164,-0.072006114,-0.4269557,-0.03772011,0.59163815,-0.17807296,-0.009697172,-0.5950131,-0.55790424,-0.9605533,-0.3117814,0.808644,-0.06412094,0.09642857,-0.472824,-0.104590096,-0.12887731,-0.026396831,-0.07772911,-0.23123749,0.42432627,0.05466071,0.30729717,-0.06729909,-0.768487,0.04641992,0.14525732,-0.20325808,-0.42268482,0.55413085,0.004682045,0.6904145,0.07588663,0.012249708,0.51726717,-0.6908428,0.18903911,-0.24424966,-0.113546364,-0.48863003,0.071000494 -51,0.39858034,-0.17778991,-0.47388962,-0.13176416,-0.34211794,0.22410974,-0.2247194,0.27355933,0.15601909,-0.37778014,-0.1391723,-0.16187513,-0.071918815,0.17106494,-0.23323584,-0.57132107,0.06522264,0.14005528,-0.44080678,0.6353121,-0.26153582,0.43425378,0.045950413,0.17809375,0.12800068,0.28622672,0.27007568,-0.0966509,-0.15121417,-0.16526105,-0.31818122,0.3056635,-0.21366265,0.16747236,0.005839162,-0.23900896,0.07378386,-0.14746907,-0.33195692,-0.7306182,0.29499954,-0.7393907,0.3643805,-0.09167168,-0.29682687,0.28035673,0.18873397,0.2929721,-0.06866115,-0.0035958746,0.15363434,-0.16466719,-0.018987374,-0.29615107,-0.26572138,-0.5805165,-0.55788684,-0.1037572,-0.4773219,-0.41548806,-0.36699864,0.26401323,-0.3504908,-0.12211038,-0.067925565,0.43967718,-0.56169915,0.23034224,0.16713986,-0.1718854,0.42129457,-0.6154344,-0.04695615,-0.09033326,0.18842402,-0.13309939,-0.063313186,0.309307,0.34852004,0.38161355,0.0854847,-0.18686506,-0.40696064,-0.15085626,0.28245392,0.40418872,-0.08495045,-0.35463592,-0.017675316,-0.002267813,0.15012445,0.1567903,0.17312033,-0.24272543,-0.13883018,0.0753063,-0.1654741,0.19635779,0.3390968,-0.37911993,-0.24476632,0.27776486,0.5998983,-0.027108984,-0.29549497,0.055190545,0.025561221,-0.33242837,-0.1733963,0.050387423,-0.11936628,0.5112799,-0.23586433,0.20992397,0.7580711,-0.12459163,-0.11023608,-0.12328629,-0.03279481,-0.18040934,-0.052437693,-0.18947834,0.1301053,-0.41577962,0.034325723,-0.12663841,0.714905,0.13319097,-0.6003845,0.31852233,-0.4616595,0.120271854,-0.1097933,0.36886686,0.53219587,0.46743593,0.2748468,0.63213646,-0.4933234,-0.027132925,-0.0667507,-0.41997227,0.047112938,-0.18164246,-0.08624848,-0.5026444,0.08715916,-0.11341251,-0.08893493,-0.029243812,0.5429494,-0.48505032,-0.052688267,0.02230002,0.8199784,-0.39668116,-0.07647532,0.49416283,0.8677535,0.93929285,0.02279151,1.0003827,0.30496675,-0.28878304,0.105021164,-0.3746004,-0.3622874,0.34309933,0.5435274,-0.1201784,0.28251025,-0.06992591,0.10781512,0.47810286,-0.24524587,0.1456292,-0.20791015,0.08458314,0.1715356,-0.1582714,-0.42282003,-0.11868224,0.11168514,0.1837021,0.14881404,0.15926015,-0.09290444,0.36148402,0.15802853,1.7646927,-0.07580525,0.019594569,0.17718494,0.305298,0.1909102,-0.0738221,0.054981653,0.32427305,0.25737473,0.21007456,-0.47263482,0.12180759,-0.23873602,-0.5945671,-0.2525528,-0.2935137,-0.14583625,0.014796128,-0.46298173,-0.16333482,-0.055483826,-0.32559735,0.3964885,-2.5260127,-0.12984307,-0.26330444,0.21220565,-0.24801858,-0.35551733,0.06668561,-0.43699968,0.36008817,0.36940184,0.37392735,-0.60913223,0.40797952,0.4404813,-0.4137224,-0.10140216,-0.3993612,-0.16075659,-0.18763787,0.41947812,0.16081181,-0.16418462,0.0039889463,0.29962674,0.4254032,-0.260946,0.12981577,0.2881787,0.3113656,0.021663602,0.56522685,0.12923704,0.51391363,0.021360086,-0.18768108,0.47300327,-0.17454082,0.13349593,0.056099046,0.10555942,0.3599375,-0.2657162,-0.8706271,-0.705112,-0.18638252,1.1759546,-0.15236293,-0.46789172,0.220151,-0.1681385,-0.21504425,-0.06569995,0.2751885,-0.07037407,0.09951281,-0.8390217,0.16034153,0.007171589,0.10584555,0.099234596,-0.26945934,-0.5047391,0.82150537,-0.075950325,0.6079944,0.3337602,0.20632935,-0.23205787,-0.4249171,-0.017259967,0.8244719,0.4658584,0.062389873,-0.21906886,-0.27180743,-0.2663968,-0.0897394,0.050040275,0.46373165,0.61228967,0.029360984,0.12345387,0.2368,-0.10390902,0.021090087,-0.20456976,-0.29750612,0.124052666,0.016078662,0.5170376,0.44925752,-0.12488629,0.4551257,-0.025506284,0.4943455,-0.13138978,-0.50508356,0.33894417,1.1812781,-0.21072032,-0.4089683,0.4766724,0.397312,-0.20944369,0.28231063,-0.66472715,-0.26343045,0.42467892,-0.25982925,-0.42573097,0.22332299,-0.38687956,0.15679033,-0.7734259,0.33634293,-0.34172446,-0.51293206,-0.56249356,-0.17173363,-3.44746,0.23701134,-0.26457423,-0.22464363,0.021730136,-0.007379383,0.26767516,-0.71850204,-0.47753912,0.09317313,0.05273327,0.5397326,0.051002223,0.0895095,-0.23556687,-0.121760435,-0.0844634,0.27203268,-0.03554221,0.25054932,-0.10870367,-0.52938473,-0.027071834,-0.08836457,-0.5016131,0.02582258,-0.53027797,-0.5769221,-0.16580994,-0.36383462,-0.2696199,0.60754216,-0.26798147,0.07578087,-0.32947215,-0.037203427,-0.097029015,0.18926597,0.11426391,0.14298354,0.068290375,-0.038628306,0.10357966,-0.283416,0.26898885,0.016052973,0.2863323,0.20782791,-0.118826024,0.16167408,0.4621022,0.5037906,-0.06431267,0.7358309,0.51372075,-0.14552808,0.1954383,-0.21646515,-0.2985792,-0.6102758,-0.40962586,0.00022401047,-0.36946157,-0.46939325,-0.19653346,-0.31250596,-0.6801512,0.5022599,0.032852966,0.14715016,0.005460974,0.23295355,0.50958425,-0.19198151,-0.07758334,-0.04423836,-0.25763348,-0.48856613,-0.2893555,-0.64236045,-0.5702917,0.0790158,1.0189475,-0.14036258,-0.049199082,0.075195424,-0.14955428,-0.024712162,0.14895649,0.059012875,0.24386126,0.44541314,-0.21513684,-0.6726345,0.46370354,-0.121507674,-0.063975,-0.46431747,0.12920006,0.5072233,-0.41100958,0.5162988,0.35122132,0.008454975,-0.11800892,-0.46799803,-0.10957379,-0.017944444,-0.3817142,0.49466205,0.23957977,-0.5378872,0.3311776,0.23111857,-0.24512707,-0.6371197,0.49219316,-0.11505799,-0.42181402,-0.017031193,0.35405052,0.045448247,-0.049969327,-0.18532303,0.17045115,-0.32823876,0.29120505,0.27277502,-0.07141068,0.14097609,-0.22891814,0.04287674,-0.8350366,-0.045778226,-0.40711498,-0.271013,0.1316341,0.08951957,0.053113393,0.2695498,-0.10216082,0.3870993,-0.18352082,0.07129151,-0.07110296,-0.2927254,0.27184883,0.37228122,0.312707,-0.33829555,0.48372582,-0.013888808,-0.09045008,-0.10915192,0.1145547,0.5404706,0.076651745,0.44805485,-0.06267082,-0.22337958,0.48233065,0.77042896,0.2842874,0.58522826,0.066316985,-0.25883806,0.13012888,0.08742535,0.19284943,-0.014196122,-0.459024,0.026898839,-0.2097205,0.20991907,0.52398765,0.11019574,0.3722468,-0.027113609,-0.3877519,0.15708724,0.17977011,0.0049755014,-1.1591766,0.2921743,0.36587092,0.8879373,0.40881392,0.09926065,0.0214138,0.6562905,-0.2928707,-0.009844524,0.34152964,-0.041862283,-0.5483127,0.5214478,-0.89956284,0.27887616,-0.046878807,-0.09500257,-0.09252893,-0.03649935,0.27042997,0.79065806,-0.15885393,-0.011491646,-0.04903948,-0.28699645,0.13664232,-0.326384,0.11236087,-0.39230704,-0.3511886,0.52167827,0.58299726,0.3363065,-0.047161564,0.07239907,0.101359956,-0.101556875,0.21564783,0.13152094,0.21814585,-0.1343824,-0.6237518,-0.23771505,0.37422007,0.11108609,0.16140768,0.060065564,-0.24425854,0.1973027,-0.11425411,-0.025376363,0.031901646,-0.46934447,-0.02969886,-0.13722563,-0.42338046,0.64519244,-0.07137137,0.14520667,0.15288638,0.074813016,-0.1875616,0.29018995,0.14983933,0.5762281,0.19477318,0.06094349,-0.262321,0.026286466,0.006219522,-0.13533337,-0.061308175,-0.12625688,0.13913643,-0.63483685,0.3384107,-0.033202928,-0.4125885,0.21239215,-0.2530692,-0.0981423,0.4406575,-0.21857893,-0.18933597,-0.0031482542,-0.008043864,-0.22937669,-0.20510662,-0.039108813,0.23213173,0.018657213,0.013922713,-0.15475374,-0.07494262,-0.15552686,0.36990333,1.1217945e-05,0.39458016,0.43816373,-0.0916542,-0.37872672,-0.14723381,0.2024771,0.43529344,-0.09525291,0.004323567,-0.18573578,-0.55676574,-0.36909455,0.10390353,-0.037064582,0.28520456,0.12644133,-0.3316615,0.7894313,-0.14619137,1.2284646,0.03944071,-0.34798437,0.06785232,0.425645,0.05155242,0.07296468,-0.234349,0.7721967,0.5657213,-0.031716827,-0.17342778,-0.28693324,0.030732043,0.12423692,-0.16460106,-0.05662158,-0.011470507,-0.72615755,-0.39100412,0.22422972,0.15714781,0.15825379,0.032905765,0.011666715,0.26770946,-0.059696633,0.2702315,-0.3585053,-0.22129264,0.31930155,0.19854507,-0.042404268,0.11914291,-0.48467126,0.41782397,-0.370463,0.12914939,-0.31030056,0.16487165,-0.19945422,-0.16945702,0.2481014,-0.093736045,0.32296053,-0.29172152,-0.24950634,-0.14009489,0.5887504,0.06865235,0.082245216,0.60276186,-0.27893698,0.11236871,0.09656142,0.43416783,0.96752864,-0.41514847,0.009547808,0.41537398,-0.44310984,-0.5516604,0.30815795,-0.2537546,0.04756307,0.1707411,-0.37861496,-0.3621975,0.34428573,0.19990487,-0.028851839,0.08324205,-0.5010321,-0.1504153,0.38365677,-0.435833,-0.12751472,-0.15763548,0.25423583,0.4172353,-0.3493586,-0.29043055,0.023161607,0.23234315,-0.31050918,-0.43740067,-0.084642455,-0.20526218,0.43716145,0.11682649,-0.3821781,-0.045105353,0.097303875,-0.3458421,0.15598549,0.32077232,-0.38071486,0.055439204,-0.37812346,-0.0031121373,0.79351413,-0.22247025,-0.106473625,-0.5455829,-0.28292784,-0.88080376,-0.4341625,0.40129054,0.05652838,-0.11343006,-0.5861832,-0.069488555,-0.15567474,-0.036039114,-0.011893917,-0.30288523,0.46699652,0.24441446,0.46617442,-0.08620751,-0.76455945,0.08770602,-0.003756453,-0.119695015,-0.6641597,0.5788864,-0.25878513,0.617492,0.01990028,0.14607541,0.31122628,-0.5039744,0.030342389,-0.21845776,-0.27511483,-0.69568175,-0.11261614 -52,0.50238615,-0.26940906,-0.41880393,-0.23677891,-0.371515,-0.051980834,-0.14154199,0.5841127,0.35998037,-0.39449906,-0.1833356,-0.04780041,-0.040969256,0.5882514,-0.18796568,-0.38911977,-0.23201434,0.25734714,-0.5858237,0.5821874,-0.5057402,0.2669569,-0.0056962953,0.673515,0.4375939,0.23232989,0.12203447,0.07519526,-0.028764017,-0.46822596,0.04850949,0.0266178,-0.62161857,0.021891894,-0.2922974,-0.56846184,-0.06884002,-0.48921585,-0.5145613,-0.9626743,0.5417133,-0.8617995,0.568548,-0.16423069,-0.23468529,-0.0041394173,0.30300435,0.3696077,-0.13421047,-0.13816644,0.1500189,-0.22564703,-0.067331545,-0.24283527,-0.13238661,-0.32820904,-0.68655324,-0.19931078,-0.27772447,-0.10618927,-0.48802152,0.15153636,-0.47557512,0.103373386,-0.084589094,0.52692324,-0.39025518,0.16935039,0.07933373,-0.25766507,0.21444333,-0.58703595,-0.33013853,-0.1724943,0.1932232,0.101392984,-0.27890623,0.5574805,0.28317583,0.30271813,0.091923684,-0.22891031,-0.45540157,-0.008744776,-0.16347216,0.59008735,-0.10370574,-0.6392819,-0.17182846,-0.039542872,0.45675626,0.22458094,0.17768677,-0.19529735,0.06303061,-0.0034592152,-0.22603828,0.8747366,0.61058956,-0.059326347,-0.3075455,0.24529134,0.4156649,0.34623507,-0.17138337,-0.08482685,0.03904577,-0.5866983,-0.24562229,-0.23387194,-0.1958371,0.4162034,-0.08197514,0.29808196,0.7275238,-0.4136083,0.09411395,0.048270296,0.1731988,-0.19252189,-0.37028214,-0.52084774,0.3551263,-0.47814968,0.20235157,-0.35630643,0.93944246,0.09652094,-0.6140148,0.36634883,-0.5750508,0.07792994,-0.034076232,0.5442216,0.6741443,0.47884706,0.5024507,0.6000194,-0.21164507,0.10933278,0.09439453,-0.36062387,0.21000572,-0.2938198,0.18544865,-0.4426806,0.10411588,-0.18686731,-0.12886079,-0.026789024,0.6454278,-0.581825,-0.18892269,0.14542156,0.7112084,-0.2249953,0.212386,0.9181452,1.1436743,1.0857334,-0.008165941,1.2482734,0.27881953,-0.24489982,-0.0054027312,-0.10187898,-0.79780596,0.1913309,0.29248607,-0.78418565,0.3401886,0.07312885,-0.042862315,0.19791043,-0.54451245,-0.22891428,0.03254293,0.54737544,0.20258087,-0.27700508,-0.40278903,-0.35426387,0.0024853647,0.038160574,0.35991478,0.25128016,-0.32570413,0.4413043,0.08570481,1.582264,-0.25875553,0.0676997,0.019748868,0.797102,0.26272774,-0.1641041,0.06376796,0.18277448,0.29765382,-0.0592453,-0.5443031,0.14947571,-0.22053863,-0.22453994,-0.18033512,-0.40512407,-0.1658869,-0.01532713,-0.014789681,-0.39288136,-0.03020895,-0.20195962,0.35077175,-2.3964474,-0.110195555,-0.1358226,0.30865264,-0.25982693,-0.3233016,-0.04591517,-0.7010517,0.5239818,0.11596318,0.57280254,-0.7539225,0.2700702,0.9218382,-0.85882115,-0.06972713,-0.4846438,-0.17978065,-0.14051254,0.46711072,0.045691356,-0.2520732,-0.23909359,0.20209374,0.45972314,0.4147904,0.056455355,0.5053316,0.6370951,-0.31013685,0.80662936,-0.10065208,0.7440013,-0.3325279,-0.19634481,0.50412756,-0.4436039,0.03858632,-0.64076364,0.09547588,0.85335135,-0.37954494,-0.968631,-0.5334337,0.07182238,1.048426,-0.281069,-0.54225737,0.18731289,-0.49643353,-0.18835855,0.069570534,0.5360781,-0.28911072,-0.10534438,-0.7371986,-0.15022083,-0.12141817,0.26395535,0.10941473,-0.064505816,-0.47399423,0.6440641,0.02352721,0.5470278,0.087889455,0.1321308,-0.46006092,-0.36099717,0.20810924,0.7830186,0.3223358,0.102328,-0.2857794,-0.043486133,-0.37846628,-0.18716876,-0.16305993,0.71019095,0.7291918,-0.15191084,0.088446416,0.19589932,-0.12713422,-0.039389875,-0.20413578,-0.3910055,-0.2786188,-0.18972486,0.58488244,0.8927098,-0.25545195,0.3627111,-0.0044559785,0.3005445,-0.084228955,-0.49162388,0.7813473,0.8783825,-0.106108785,-0.2906593,0.7343626,0.39940155,-0.40006194,0.54001915,-0.64405537,-0.2387482,0.59234744,-0.12305608,-0.47798762,0.061793447,-0.25660717,-0.12098161,-0.63664323,0.20026578,-0.4013938,-0.4062437,-0.6037192,-0.12848513,-2.4455347,0.2002031,-0.030404193,-0.23489381,-0.21894442,-0.23035413,0.25752792,-0.5021402,-0.8040874,0.30123535,0.16745217,0.8791259,-0.07186816,0.002678762,-0.20289774,-0.4454778,-0.5108289,0.13267916,0.048592526,0.4310732,0.1488024,-0.50572383,-0.12379981,0.0063427836,-0.48129487,0.11227709,-0.48698935,-0.5235023,-0.10041374,-0.5406477,-0.2598717,0.7913951,-0.27518487,0.061569616,-0.2332194,-0.029371167,-0.09791559,0.21318829,-0.06628119,0.09289199,0.16684079,-0.16179165,0.2380415,-0.023967827,0.4461298,-0.06850795,0.3679526,-0.017920265,-0.0646556,0.06135383,0.31483695,1.0043999,-0.266386,1.2940083,0.30717012,-0.105437994,0.105266385,-0.16294509,-0.48609385,-0.60051477,-0.202843,0.35888818,-0.45069098,-0.16020541,-0.08615771,-0.5206639,-0.84107256,0.78090495,0.28180894,0.22324865,-0.015196796,0.17898794,0.4805561,-0.08859751,0.10023469,-0.070799075,-0.17853464,-0.63611823,-0.048279244,-0.74888325,-0.31512353,0.0979609,0.9939406,-0.32929313,-0.06424392,0.19796896,-0.48308346,0.15090652,0.07464015,-0.04537916,0.04485162,0.7101118,0.16437803,-0.56261,0.32242918,-0.12526302,0.11384198,-0.7479052,0.28260177,0.557905,-0.64934206,0.5580979,0.22177427,-0.01573622,-0.36154342,-0.5283387,-0.25102103,-0.09368237,-0.10992971,0.44053802,0.2507541,-0.78505754,0.41427338,0.044721942,-0.37265548,-0.729942,0.46446648,-0.023262039,-0.2896249,-0.31792915,0.34584,0.24239571,0.10162014,-0.20594734,0.25514933,-0.31898618,0.34269747,-0.064379014,-0.018308856,0.19207503,-0.22956721,-0.2759785,-0.8397499,0.21469481,-0.38487062,-0.5283731,0.30308905,-0.015677074,0.19616133,0.25258088,0.37015095,0.29913178,-0.3395283,0.11687072,-0.24397856,-0.3164684,0.52646464,0.36305276,0.57713836,-0.47226548,0.6697011,0.1684256,-0.27591574,0.16204071,-0.32608375,0.41069666,-0.00023137529,0.45402578,0.1351149,-0.33271602,0.25037372,1.0317019,0.11542976,0.24609448,0.082422115,-0.14669634,0.17196178,0.17019944,0.29907584,0.08778894,-0.7229144,0.11716507,-0.4204165,0.06279971,0.6155521,0.19964366,0.25511593,0.05536982,-0.46441033,-0.080302514,0.12291318,-0.2242947,-1.652482,0.33666834,0.2064523,0.9643933,0.41039896,-0.0030645505,-0.007109523,0.76704407,0.012649226,0.14152525,0.4703786,0.16541262,-0.20418252,0.54476166,-0.5823913,0.48618117,0.05566268,-0.008910261,0.11811327,0.089029826,0.4059488,0.75372165,-0.24899189,0.009699765,-0.08484001,-0.23349464,0.05171774,-0.41529465,-0.11157601,-0.42548513,-0.38629985,0.71121097,0.4825691,0.33422422,-0.14447851,0.08480757,-0.029834822,-0.11583123,-0.04705998,0.044115614,-0.16746302,0.07096261,-0.42210022,0.024272198,0.43678263,-0.06245047,0.10684627,-0.13862027,-0.18509561,0.15209804,-0.25514996,-0.015239379,-0.07984132,-0.9157884,-0.1723832,-0.23943269,-0.40113953,0.42496622,0.13474202,0.14442147,0.2094187,0.11409563,0.14511132,0.39433387,0.2091552,1.0099036,0.100174524,-0.040732954,-0.3195443,0.15954162,0.07647718,-0.35787773,0.19394828,-0.31821838,0.08031418,-0.49266586,0.655406,-0.104865454,-0.3472322,-0.03543042,-0.18566509,0.14978147,0.54703754,-0.20724791,-0.029230228,-0.24459714,-0.11960641,-0.108858615,-0.41243228,-0.30356246,0.21464562,0.19796653,0.015522018,-0.22167552,-0.119434476,-0.19873019,0.41774035,-0.03813501,0.3359129,0.38064292,0.24586678,-0.20278911,-0.12402841,0.13554516,0.9054521,-0.06036134,-0.2873133,-0.39284483,-0.4990095,-0.4049244,0.45061776,-0.06490499,0.3449174,0.10682312,-0.34242737,0.83368444,0.24694689,1.0029243,-0.06507364,-0.57920307,0.12639478,0.59941024,-0.0679202,-0.08542082,-0.54095954,0.9008708,0.17580342,-0.18965693,-0.095254324,-0.46162423,0.085434295,0.41012207,-0.28010237,0.028145919,-0.09256989,-0.6801707,-0.32928038,0.27493247,0.2592179,0.0135711385,-0.15073839,0.17510505,0.39810833,0.22959568,0.5427241,-0.5351717,-0.32438624,0.28738245,0.24603643,-0.07407854,0.2159798,-0.5302603,0.20682208,-0.40967456,0.15985756,-0.6024845,0.18568508,-0.25868022,-0.3432893,0.20008647,0.21635556,0.36951837,-0.45900366,-0.4993693,-0.17692284,0.41376483,0.15635829,0.16153401,0.5255948,-0.32928908,0.02610527,0.06260996,0.6599081,1.0030966,-0.008546904,0.04560508,0.30098134,-0.41527793,-0.5289734,0.3256653,-0.38085148,0.16655403,0.074670605,-0.2203058,-0.6310683,0.23498625,0.074517906,0.045736223,0.263809,-0.6740878,-0.48253104,0.4094689,-0.27491686,-0.14902459,-0.3952353,0.011920117,0.5742615,-0.20132823,-0.39162782,0.13871044,0.34634185,-0.057337243,-0.68746156,-0.22769551,-0.52013993,0.402336,-0.042810295,-0.3338566,-0.3222368,-0.16618271,-0.67202586,0.2321245,0.033902794,-0.47589254,0.07326971,-0.31934053,0.039579645,1.1623653,-0.3781133,0.17477256,-0.60011786,-0.34672093,-0.8149417,-0.23133159,0.3710024,0.018767968,-0.058927298,-0.8410141,-0.04880252,-0.28562805,-0.044671018,-0.0443136,-0.2876372,0.30821037,0.1791637,0.5533449,-0.06006524,-0.9497261,0.18203568,0.06511535,-0.4839803,-0.68929785,0.79812604,-0.02020295,0.9690652,-0.046592217,0.1076386,-0.048846077,-0.42858818,0.19316894,-0.31306508,-0.18565027,-0.51895386,0.4068599 -53,0.28296974,-0.18701656,-0.44073164,-0.1219089,-0.2731871,0.022565452,-0.24025175,0.087753765,0.26838136,-0.15368168,0.009890364,-0.030889751,0.19334921,0.41574317,-0.018518362,-0.6444055,-0.13949503,0.06329202,-0.69267344,0.19822948,-0.576518,0.2854963,-0.06288003,0.5571455,0.029290993,0.3520889,0.28348717,-0.045039766,-0.02236612,-0.18131143,0.09454631,0.33742717,-0.59456325,-0.006124657,-0.038510386,-0.46215397,0.13868678,-0.22002445,-0.39532945,-0.6715032,0.20425987,-1.0365541,0.581943,0.007928161,-0.063754454,-0.06694886,0.39611974,0.46762833,-0.3538117,-0.005137072,0.35729483,-0.41348055,-0.043356977,-0.5345471,-0.14760749,-0.48092702,-0.44435737,-0.13180712,-0.5670032,-0.46100077,-0.33437964,0.19540018,-0.3063277,-0.08502818,-0.07390404,0.18711337,-0.36409342,-0.0036776157,0.34976307,-0.28925863,0.42291376,-0.60853195,-0.13548088,-0.01058736,0.408147,-0.10054219,-0.23730978,0.562779,0.19001411,0.22676292,0.30847603,-0.23232195,-0.50379586,-0.22076076,0.12120204,0.44530126,-0.37704465,-0.06147838,-0.20875695,0.018666247,0.35115528,0.51720905,0.03209947,-0.08178074,0.020291705,-0.015306418,-0.045245435,0.6256482,0.54497176,-0.20937745,-0.5714332,0.11027126,0.49654043,0.124394014,-0.30122143,0.033804674,0.045232274,-0.4991175,-0.15229866,0.20910779,0.03086826,0.397135,0.010397499,0.13095254,1.038224,-0.3544665,-0.007012349,-0.06802133,0.097088724,-0.03473986,-0.37384537,-0.32178015,0.27910712,-0.5630461,0.06618199,-0.37923118,0.69084156,0.03543022,-0.64187235,0.24021856,-0.5855158,0.052785356,-0.10992486,0.62959945,0.56514835,0.4431751,0.2988902,0.693365,-0.19544347,0.238877,-0.066513814,-0.30446988,0.11764552,-0.3253743,0.14437367,-0.48989674,0.0392086,-0.17020147,0.079429194,0.32594424,0.36462194,-0.5556033,-0.02639854,0.37731028,0.8671617,-0.3872862,-0.015178671,0.5370363,1.2198901,0.90646714,-0.017077649,0.901535,0.42852336,-0.2647919,0.012063698,-0.16952676,-0.48809427,0.12566486,0.2566005,-0.119427755,0.20686181,-0.107905746,-0.06260569,0.19824086,-0.5110759,-0.05415656,0.009642413,0.32330132,0.23529448,-0.07546442,-0.46092135,-0.07618509,0.018329836,-0.26204163,0.30412814,0.17480429,-0.26364252,0.5692253,-0.06584169,1.0554017,-0.00662148,0.09421638,-0.004693679,0.7362767,0.26641175,-0.042825416,0.122440375,0.45437464,0.250367,-0.006662506,-0.554232,0.28306106,-0.40411714,-0.29477102,-0.25629067,-0.42750475,-0.13925456,0.24918278,-0.23451942,-0.318733,0.04073928,-0.20914504,0.2969519,-2.8185492,-0.093426116,0.035250325,0.31250638,-0.23616412,-0.059299216,-0.112277105,-0.51453906,0.43152693,0.2148758,0.44815248,-0.46316302,0.3019861,0.54858565,-0.52573454,-0.2398223,-0.6289685,-0.0725729,-0.13339506,0.42182624,0.009670551,-0.17537992,-0.15745758,0.033853088,0.73582333,0.12827672,0.077731065,0.5175877,0.26907602,0.19522524,0.50577337,0.084535085,0.5697742,-0.3744012,-0.3771784,0.3448791,-0.4066542,0.19569977,-0.13914865,0.06834296,0.55750906,-0.28192475,-1.032849,-0.55289227,-0.18540417,0.94236934,-0.23870103,-0.62660307,0.20143324,0.002448591,-0.1364593,0.09975031,0.5849594,-0.08927394,0.27411255,-0.6144635,0.06167137,-0.045876577,0.18957232,0.12079359,0.033206206,-0.3244831,0.5268204,-0.07379408,0.24186507,0.04788585,0.26585463,-0.49120843,-0.4233394,0.112357154,0.71811855,0.15309344,-0.06833761,-0.06576233,-0.37792355,0.08626067,-0.3958117,0.10190398,0.4372994,0.8156281,-0.05865806,0.18144242,0.39069322,-0.26581857,-0.029866455,-0.19216579,-0.20148915,-0.06061366,0.23148942,0.524331,0.72511345,-0.004084775,0.6329874,-0.10384602,0.49958473,-0.00421353,-0.59364927,0.5523585,0.47289106,-0.10614043,-0.23154698,0.58130467,0.4818565,-0.554535,0.5008063,-0.6963184,-0.2831303,0.7033923,-0.33394843,-0.47025186,0.055755284,-0.318556,0.11726446,-0.712649,0.35643163,-0.26597786,-0.5625788,-0.51091677,-0.22117314,-3.2897074,0.031440437,-0.27252004,-0.040451106,-0.19340141,-0.1436682,0.27441162,-0.54615086,-0.32610968,0.104882,0.26240838,0.78087336,-0.061125316,0.025491169,-0.34299117,-0.11005983,0.020303538,0.2930953,0.26574576,0.29721966,-0.14228831,-0.41153187,0.17990637,0.06351888,-0.674906,0.10907556,-0.51944613,-0.571452,-0.12953041,-0.6689363,-0.2592898,0.70891726,-0.45679194,0.06501274,-0.2894773,0.13680632,-0.10010635,0.29297847,0.21651363,0.23060729,0.32504827,-0.0628831,0.16567357,-0.3778602,0.5261623,-0.009683435,0.24777839,0.12510487,-0.052013796,0.029569479,0.4075186,0.5667623,-0.07609338,0.933071,0.4731975,-0.092338674,0.15239048,-0.42108986,-0.31203368,-0.61218655,-0.46811134,0.0025201212,-0.38571784,-0.43259713,0.039458558,-0.31003726,-0.78479016,0.81949466,-0.03888343,0.3115482,-0.17526862,0.24386938,0.39841276,-0.12294772,-0.17911246,-0.16995944,-0.03770819,-0.45863354,-0.1883746,-0.5851775,-0.65573657,-0.038121797,0.80322427,-0.34328505,0.10255865,0.053636767,-0.31028807,0.077849895,0.28055722,0.06046824,0.35100827,0.4171921,0.059828684,-0.6037848,0.39326316,-0.1580793,-0.09770678,-0.79070514,0.18081473,0.70327723,-0.76200783,0.52280354,0.32270432,0.07118469,-0.23348165,-0.49752778,-0.23020083,0.031146063,-0.10504509,0.4158953,0.008265183,-0.75651646,0.5539399,0.31992072,-0.6738204,-0.6438504,0.17613341,-0.09031391,-0.43562746,0.17615654,0.2511759,0.102381915,-0.1337081,-0.2754453,0.28719267,-0.4028477,0.274406,-0.0137748625,-0.09301952,0.648418,-0.098349914,-0.41689208,-0.68998945,0.13542096,-0.6102334,-0.31112894,0.33618608,0.019868586,-0.067305535,0.5524685,-0.037459016,0.41130707,-0.0963961,0.058469653,-0.22887021,-0.40127146,0.17824215,0.36651275,0.32409778,-0.437503,0.5976403,0.10431104,-0.29185453,0.17798427,-0.075855166,0.5703812,-0.10252444,0.4336805,-0.10753899,-0.2374503,0.29258493,0.714908,0.13732645,0.53670096,0.056715947,-0.041290045,0.4289429,-0.025131281,-0.019242672,0.06340607,-0.39509627,-0.02497208,-0.2765612,0.20745565,0.4518499,0.3301913,0.41369402,0.187869,-0.19661252,0.14417928,0.14666064,-0.04957588,-1.1372819,0.41489166,0.32768822,0.7711845,0.22650453,0.26182097,-0.2078481,0.815339,-0.3289726,-0.033321925,0.33581036,0.13864313,-0.4580549,0.77339625,-0.6114435,0.43554556,-0.13523178,-0.107524864,0.043657716,0.23921165,0.4635486,0.87124455,-0.22890384,0.19451615,0.11251819,-0.102271944,-0.0040969024,-0.23014975,0.16864952,-0.3596625,-0.37978333,0.81278324,0.2656908,0.38001272,-0.07484566,-0.12272579,0.14862894,-0.18126081,0.29929882,-0.14761928,-0.07750038,-0.029403288,-0.4090908,-0.1832741,0.48128554,0.107929505,0.34431252,-0.11954955,-0.10237563,0.16546668,-0.15307352,0.08482491,-0.011511539,-0.48297355,0.050499413,-0.129984,-0.61053663,0.5778345,-0.39255714,0.16216017,0.19112563,0.116742864,-0.09044843,0.3709622,0.20172864,0.78937286,-0.02437409,-0.34198183,-0.24019815,-0.07429891,0.303726,-0.23941973,0.14934275,-0.25627625,0.029690953,-0.58359367,0.5430081,-0.41316846,-0.50013554,0.17466171,-0.21260959,-0.0774578,0.41134113,-0.03644635,-0.081926145,0.36334044,-0.2606244,-0.48362643,-0.05523909,-0.35485172,0.18236,0.15312015,-0.12949815,-0.24371284,-0.36830166,-0.100675695,0.52244735,-0.0539689,0.5176727,0.19130489,0.18006927,-0.17164652,0.028661022,0.110756904,0.54195327,0.011089137,0.18488301,-0.25178638,-0.32207268,-0.24229135,0.18120076,-0.11962379,0.16791281,0.13898994,-0.5620153,0.90019184,-0.21754129,1.1936855,0.05404941,-0.4180487,0.26125973,0.4816771,-0.15148365,0.07474102,-0.5052667,0.940988,0.7403555,-0.06762963,-0.19104026,-0.47370374,-0.13110402,0.49670032,-0.41639188,-0.20220873,-0.1816523,-0.5132909,-0.49740475,0.2596447,0.24490646,0.19332725,-0.09100734,0.20543924,-0.029758124,0.12507401,0.33615065,-0.6339748,-0.18686989,0.25204393,0.3316018,-0.12800553,0.2480509,-0.28411314,0.46095663,-0.5707782,0.18693615,-0.42287275,-0.0030000238,-0.30752483,-0.3923035,0.13723117,0.08068175,0.17811988,-0.16210715,-0.24025963,0.052777704,0.45545706,0.19039708,0.22037299,0.574443,-0.29901287,-0.0056021395,-0.08279907,0.48976156,1.3349864,-0.43440324,-0.017078748,0.3167982,-0.39264828,-0.6679599,0.6116248,-0.36817864,-0.07666295,-0.15778175,-0.50663334,-0.2462891,0.14709832,0.10812278,-0.019909795,0.12471456,-0.2999956,-0.08921787,0.2376042,-0.30107704,-0.2630213,-0.19716519,0.4439886,0.60594755,-0.13012399,-0.17807205,0.054089867,0.4961936,-0.28770018,-0.3209263,0.050469365,-0.12653346,0.46313554,0.06861822,-0.4016473,-0.12931122,0.11969554,-0.4622708,0.029794825,0.2925325,-0.41445577,0.028027333,-0.15616515,0.16382639,0.6916396,-0.34209996,-0.06847463,-0.68344307,-0.42586324,-1.0394276,-0.54217577,0.21358779,0.28181157,-0.008706318,-0.40869612,0.015635304,-0.036059543,-0.22223803,0.057498094,-0.6100312,0.30625868,0.1240461,0.49185318,-0.4548306,-0.92193484,0.09578704,0.103573486,-0.16574946,-0.68751645,0.73634213,-0.18652198,0.8193925,0.09791488,-0.1380286,0.11845751,-0.2606532,0.11390412,-0.37857825,-0.34979397,-0.8888391,-0.08875621 -54,0.7010103,-0.1462217,-0.5236357,-0.18103208,-0.42684123,0.32289803,-0.27909076,0.065376945,0.24633765,-0.6551354,-0.07858631,0.024812417,-0.23501673,0.30173683,-0.21841711,-0.91917604,-0.14628161,0.10531383,-0.5735349,0.66581273,-0.43901014,0.39442304,-0.047737774,0.1690697,-0.18372796,0.3554764,0.5581359,0.041368257,-0.2345912,-0.17033881,0.09899692,0.018210893,-0.91283435,0.4412166,0.02628048,-0.24022557,0.08401474,-0.5138323,-0.03559363,-0.71042156,0.609657,-0.8449797,0.7625592,-0.12392651,-0.2542817,0.01500179,0.07327433,0.015206412,-0.13172513,0.13132602,0.18464284,-0.28686666,-0.16165105,-0.27531117,-0.28483498,-0.6181611,-0.7206586,0.07647165,-0.7536081,-0.2223854,-0.4381075,0.30129382,-0.3257989,-0.1623199,-0.28359434,0.6510532,-0.4463177,-0.23264576,0.04287283,-0.22788659,-0.02289653,-0.703651,-0.2681776,-0.16844903,0.24080883,-0.04514202,-0.014285732,0.2909344,0.35132197,0.5856297,0.36860406,-0.39480287,-0.25267145,-0.1545545,0.15715145,0.37074584,-0.05852187,-0.5761719,-0.34065545,-0.041307177,0.37362054,0.14817198,0.27762964,-0.32547665,0.24450098,-0.00066729565,-0.10649531,0.8961497,0.48556882,-0.4169471,-0.2173701,0.3003337,0.38695785,-0.2039392,-0.020849,-0.023230005,-0.06791496,-0.4876106,-0.28843993,0.21427794,-0.12664492,0.5881352,-0.23375203,0.14281116,0.56446034,-0.2476971,-0.06648935,0.053968657,-0.1583069,0.13414337,-0.11777,0.024876803,0.38899973,-0.50165755,-0.0062802355,-0.4849603,0.5285674,0.041124605,-0.70326364,0.28683308,-0.5089622,0.053184364,0.1659629,0.68892026,0.80369574,0.6128582,0.07648324,1.0480716,-0.42231578,-0.04898657,-0.018872792,-0.24520727,-0.07548297,-0.049987737,0.23724537,-0.45301706,0.24492235,-0.07704194,-0.04891536,-0.21435852,0.49964717,-0.54579586,-0.1569893,0.18224607,0.73231035,-0.36396244,-0.15371391,0.9837234,1.1676573,1.1133596,-0.088208325,1.6121787,0.21271853,-0.29970255,-0.14797081,-0.22573107,-0.5826835,0.24567851,0.5300205,0.2848686,0.61799836,0.0764611,-0.02306342,0.17395937,-0.4694009,-0.2734108,0.048420116,0.5319259,0.0076922397,-0.049589667,-0.44535848,-0.16295801,0.36836517,0.12319071,0.46300563,0.4183731,-0.43189862,0.48938343,0.061945867,0.8650308,-0.00393499,0.25494844,-0.06477396,0.3445889,0.284729,0.026992511,0.016359407,0.27421895,0.13221572,-0.05795494,-0.7666962,-0.13099092,-0.6165211,-0.31870574,-0.33519194,-0.37224245,-0.07477807,-0.13278623,-0.20350666,-0.31243593,-0.07674651,-0.5278211,0.28190523,-2.1978395,-0.43004036,-0.20905118,0.33968294,-0.3053138,-0.34535483,-0.14899291,-0.5441682,0.3892573,0.29294243,0.41705084,-0.6971543,0.34899056,0.37171564,-0.45708963,-0.16047917,-0.4824995,0.04344876,-0.24913374,0.52000445,-0.263961,-0.53138524,-0.33831462,0.2867347,0.7136352,0.3694152,0.010720369,0.28219917,0.56847763,-0.01723504,0.41127557,-0.014482052,0.5499897,-0.33919007,-0.08388924,0.39354116,-0.34213087,0.244171,-0.28266045,0.0056948336,0.50485986,-0.6943475,-0.72434443,-0.7074847,-0.3883344,1.2733091,-0.23510009,-0.6045056,0.040706705,0.24976026,-0.22124887,0.030556766,0.62053156,-0.20635672,0.04925817,-0.5879576,0.10220192,-0.054255355,0.13237752,-0.04635392,0.28007212,-0.6213758,0.7141789,-0.06563443,0.3817995,0.21676826,0.5481417,-0.29082575,-0.51011145,0.17136005,1.0952258,0.5384708,0.1779434,-0.19391018,-0.054018162,0.08529547,-0.4255007,0.05935173,0.89684147,0.6889647,0.1414754,0.061709426,0.43927348,-0.10755256,0.37895167,-0.09342542,-0.43960854,-0.43427172,-0.04167898,0.71969527,0.33623043,-0.28329974,0.26786125,-0.06350763,0.09896069,-0.16843486,-0.43326285,0.62340367,1.0250417,-0.19483319,-0.16180223,0.91905475,0.43919554,-0.6956061,0.66277045,-0.7560148,-0.4049792,0.6250301,-0.17473842,-0.48754814,-0.28346992,-0.41785786,0.012726066,-0.90602076,0.3052107,-0.28728756,-0.5186678,-0.46014768,-0.3443127,-3.1144896,0.19327205,-0.29741985,0.09749044,-0.23923558,-0.2093031,0.15005395,-0.7298741,-0.6128624,0.17085077,-0.11503004,0.7310621,-0.17699039,0.15756729,-0.16849594,-0.5304268,-0.22701901,0.28560466,0.1411822,0.1581335,0.03129871,-0.16470928,0.32687896,-0.23684758,-0.46371463,0.07782253,-0.44790372,-0.58651906,-0.3373749,-0.70258063,-0.17844516,0.77759796,-0.20677263,-0.13203612,-0.14047346,0.16632177,0.10688171,0.23821492,-0.059902553,0.36374864,0.36518097,-0.19009699,0.0033849748,-0.3245771,0.66004634,0.16972958,0.4813333,0.5837936,-0.31350133,0.30249482,0.44962415,0.67044634,0.2659565,0.89497906,0.09640505,-0.035898045,0.48845416,-0.34773868,-0.40141594,-0.95106584,-0.36924955,0.16170378,-0.52784705,-0.56096363,0.034431074,-0.39291623,-0.85275596,0.4655526,-0.08693166,0.68890876,-0.23367058,0.4097125,0.32588205,-0.18911277,0.1619627,-0.114478916,-0.20168924,-0.37524596,-0.28406703,-0.7142104,-0.5877136,0.10373158,0.8751259,-0.09823728,-0.27699244,0.13167857,-0.19034928,0.36439097,-0.012377099,0.35251236,0.037224825,0.4097108,0.1680956,-0.79423994,0.3754168,-0.12341339,0.08770882,-0.3842521,0.20082259,0.8753361,-0.691717,0.5091086,0.43339956,0.112257406,-0.16731788,-0.54700667,-0.28327072,0.3637084,-0.11591747,0.46352842,0.28415364,-0.8249662,0.43190372,-0.09723932,-0.26056206,-0.7495833,0.5098496,-0.08355778,0.088417456,-0.1188771,0.73783755,0.3766123,-0.055085335,-0.22197843,0.4411733,-0.56109995,0.36680192,0.09804778,0.020869488,0.62620544,-0.11671584,-0.581141,-0.737973,-0.07373867,-0.8463663,-0.4050012,0.15284444,0.05572872,-0.07079899,0.31582204,0.18760972,0.6116793,-0.45272014,0.24942929,0.049671184,-0.3567048,0.42484704,0.56654185,0.5029991,-0.59429103,0.6352996,0.01918963,0.124561734,0.0012751073,-0.01683265,0.54203945,0.26638424,0.30386865,0.1202815,-0.036900103,0.08151415,0.5333641,0.3210109,0.2987766,0.3841321,-0.26098946,0.57323766,-0.0017884509,0.2959835,-0.0837481,-0.611716,-0.18468508,0.21659492,-0.084515914,0.5683318,0.17578231,0.32056713,-0.19105352,-0.009313324,0.20101632,0.15247375,-0.3280567,-1.3699181,0.23072626,0.13082644,0.67887133,0.5202722,-0.033855364,-0.058510736,0.39607182,-0.20480208,-0.015153679,0.6089702,0.048649885,-0.34442845,0.6142747,-0.32898477,0.31414255,-0.26194584,0.11027174,-0.043533113,0.14317077,0.337152,1.055709,-0.1260377,0.016585412,-0.2224625,-0.040904976,0.19736153,-0.18805404,0.2549465,-0.43857872,-0.19049844,0.5844626,0.15074916,0.2712609,-0.19742586,-0.0736242,0.20235115,-0.16033904,0.37647584,-0.12994681,-0.12817521,-0.22485504,-0.39309743,-0.27783462,0.46106625,0.26279488,0.021579348,0.07055647,-0.20485415,0.14336425,-0.021366738,-0.23663673,0.0887734,-0.91465926,0.08520229,-0.15857431,-0.44033,0.29598236,-0.2763244,0.0059311446,0.1906841,0.07359702,-0.33787563,0.06472501,0.50912994,0.6177082,0.061828885,-0.2646396,-0.4305109,0.029861236,0.13109444,-0.5270546,0.39800665,-0.14957188,0.37768993,-0.55694646,0.6121564,-0.18735257,-0.18178257,-0.12903792,-0.09375313,-0.08363208,0.43101406,-0.11497993,0.09925208,0.2976031,-0.15539573,-0.17352362,-0.29479212,-0.4332062,0.11178967,-0.12403939,-0.025069498,-0.28112516,-0.20341371,-0.2030709,0.427699,0.32805663,-0.14839767,0.23270407,-0.011509012,-0.5773702,-0.05388514,0.11008964,0.45671985,0.060417697,-0.021875294,-0.20872305,-0.3225164,-0.27264902,0.44929808,-0.07845745,-0.09733098,-0.011204795,-0.43977526,0.67063105,0.34550288,1.3093301,-0.06455267,-0.3798764,-0.09096811,0.77403474,-0.15318848,-0.015846688,-0.4168546,1.4050533,0.5928712,-0.20876174,-0.22627497,-0.739431,-0.11466047,0.090339996,-0.46975943,-0.09647136,-0.28238076,-0.7025597,-0.37996924,0.28501996,0.29668304,-0.04764664,-0.052023318,0.06372247,0.25699776,0.23858705,0.67436886,-0.6839243,-0.2667081,0.41046456,0.1436641,0.13746718,0.44645873,-0.23407139,0.22307526,-1.0044408,0.314698,-0.27618992,0.086267605,-0.068277955,-0.39204293,0.34267923,0.27680916,0.3634827,-0.2235824,-0.6663079,-0.2444945,0.45249107,0.10492199,0.21701199,0.9066996,-0.24528736,-0.056075823,-0.088099025,0.48849848,1.6023113,0.3373122,0.2611675,0.041257054,-0.55155647,-0.8809237,0.19621207,-0.56327856,0.096509,-0.29393703,-0.39376494,-0.34183067,0.12915808,-0.16953392,-0.07528329,0.100691535,-0.498666,-0.4834933,0.26727605,-0.39636162,-0.08861274,-0.18333559,0.31626555,0.95867354,-0.32879567,-0.29304412,-0.045276836,0.5774105,-0.28263915,-0.9632609,-0.23571391,-0.20880713,0.5043504,0.053111706,-0.29580155,-0.07991901,0.26265976,-0.49559662,0.18612589,0.36822203,-0.32416928,-0.131962,-0.32427552,-0.054045394,0.8517744,0.1749488,0.30790257,-0.43180558,-0.60493624,-0.97333425,-0.46711075,-0.16369466,0.0035651543,-0.047403213,-0.71310896,-0.113300316,-0.40023363,0.054482125,0.096019395,-0.58178496,0.12650236,0.18226805,0.7749086,-0.18362702,-1.078827,0.073877856,0.27197236,0.072221026,-0.56549364,0.45709077,-0.12888782,0.6769825,0.28298077,-0.10444451,-0.12482956,-0.84756905,0.36159077,-0.41217926,-0.115495555,-0.60457134,0.17347641 -55,0.33711752,-0.26254943,-0.4200888,-0.061201137,-0.120332666,0.17048594,-0.112752385,0.7778844,0.3203017,-0.46593976,-0.22525522,-0.07946457,-0.08006882,0.31641826,-0.08774388,-0.32384688,0.029479606,0.14549407,-0.34658214,0.5163155,-0.33407745,0.27324134,-0.18796362,0.45099995,0.22235227,0.116888456,0.09552141,0.045552205,-0.07489555,-0.084243305,-0.011494009,0.43942267,-0.36710238,0.32905096,-0.29198307,-0.34576607,-0.09488462,-0.60079086,-0.2683031,-0.75000346,0.10459801,-0.6771239,0.4591326,-0.100555114,-0.3632107,0.41951337,0.05655209,0.10498031,-0.17082156,-0.10942252,0.03468936,-0.007542419,-0.2320994,-0.062329847,-0.10813421,-0.30930725,-0.55817443,0.16505356,-0.29767886,-0.025634633,-0.23190495,0.13179912,-0.28536493,0.027676139,0.074913636,0.5045771,-0.4539546,0.0050260467,0.23142818,-0.18235986,-0.024484992,-0.6670391,-0.14270715,-0.07069202,0.225304,-0.06445546,-0.13016075,0.20934422,0.25422668,0.5600793,-0.006457857,-0.1593944,-0.3814318,0.043142848,0.010398269,0.43798873,-0.1500878,-0.32358497,-0.0188919,-0.062822096,0.34981403,0.14714603,0.20732076,0.036948446,-0.2338089,-0.117752396,-0.2466223,0.1984414,0.46482235,-0.40706232,-0.258586,0.466184,0.5269802,0.26270238,0.019612297,0.0017864023,0.008566632,-0.4773819,-0.16393757,-0.098819196,-0.24150096,0.46685654,-0.13141187,0.36857533,0.38719568,-0.00942988,0.035278153,0.08129559,0.054602724,-0.10728376,-0.27918154,-0.23329823,0.21916959,-0.31894466,0.17171967,-0.050865788,0.697299,0.19083798,-0.61265814,0.30566737,-0.3500503,0.11240927,-0.019891901,0.43105835,0.8747937,0.4437172,0.30995634,0.73357445,-0.35953084,-0.09703292,-0.17845508,-0.060048003,-0.031035593,-0.24879786,-0.005610615,-0.518351,0.16459092,0.11941392,0.095442794,0.28906727,0.23808119,-0.537783,-0.21793628,0.30955085,0.67161113,-0.20197515,-0.23071814,0.8918146,0.99649316,0.9979082,0.028018815,0.9620077,0.124232106,-0.05725165,0.1878052,-0.16650857,-0.6064924,0.25391743,0.30366564,0.057951313,0.26053253,0.16605678,-0.114152,0.54334927,-0.29595968,-0.079251155,-0.15231732,0.1484002,0.15230618,-0.13212432,-0.41391367,-0.33742455,-0.009175656,0.01563836,0.044791102,0.278256,-0.13715684,0.359131,-0.09791801,1.4296935,-0.04307879,0.005606634,0.17120218,0.31505844,0.1638951,-0.28111523,-0.04278561,0.32790694,0.26402214,0.012790744,-0.54081887,0.15980352,-0.16951439,-0.4891025,-0.06834506,-0.31958008,-0.22315471,0.05932406,-0.37508014,-0.1887079,-0.22497618,-0.43302673,0.47483474,-3.032015,-0.16599011,-0.12554859,0.32077292,-0.24249102,-0.36701974,-0.14430763,-0.47635955,0.39137676,0.32300025,0.4469699,-0.3968249,0.26263928,0.2740843,-0.64646333,-0.19850172,-0.49683744,0.07080292,0.049175896,0.25867695,0.073777676,-0.15353952,-0.045540128,0.0857958,0.644734,0.056297224,0.12200876,0.3803301,0.39205953,-0.2090962,0.3460121,-0.23027873,0.49698806,-0.44416466,-0.2497327,0.37389132,-0.5289999,0.42432475,-0.17087507,0.14133023,0.4656106,-0.3852138,-0.88637334,-0.59354436,-0.17025293,1.366176,-0.0854426,-0.44820473,0.09987207,-0.5527739,-0.116655454,-0.16436164,0.5148131,-0.018666152,-0.2047378,-0.6762878,0.0037626412,-0.078059435,0.086339675,-0.057567913,-0.0730202,-0.49755216,0.6427263,-0.060740445,0.4935678,0.2622722,0.16342887,-0.09090154,-0.25497046,-0.065492295,0.7599093,0.5450438,0.13953432,-0.22085367,-0.090141945,-0.41498968,-0.042553928,0.16307737,0.5616894,0.46778303,-0.10599106,0.15656802,0.19460583,0.22289778,0.083833374,-0.16130832,-0.0861216,-0.19277671,0.20654015,0.59300464,0.6367034,-0.122750714,0.27577266,-0.009705564,0.10916499,-0.26530698,-0.42501897,0.4617321,0.7395791,-0.17799345,-0.30792218,0.70577306,0.48770386,-0.007331499,0.4182962,-0.4895356,-0.38306317,0.35548726,-0.25095594,-0.36522028,0.022987375,-0.28967816,0.09204681,-0.72158444,0.06013578,-0.23992753,-0.51083344,-0.5377442,-0.021539222,-2.948621,0.19998346,-0.1033647,-0.1689115,-0.17385867,-0.24606435,0.19576697,-0.51786107,-0.5530559,0.22646405,0.15162376,0.6575144,-0.12572446,0.038093746,-0.21355654,-0.41551873,-0.3634166,0.046256,-0.03557555,0.4619423,0.1024638,-0.39823815,0.023955246,-0.120249696,-0.33805862,-0.02414473,-0.42856547,-0.31346413,-0.19684286,-0.4619947,-0.18917973,0.5736741,-0.4118565,0.0701026,-0.28556642,0.041498568,-0.03137877,0.22744925,-0.083238855,0.06441992,0.043132875,-0.19263884,0.004015782,-0.24320345,0.3647761,0.061435156,0.250566,0.503808,-0.18010625,0.2358506,0.5247558,0.6380053,-0.26806256,0.93733865,0.48546204,0.0102264285,0.35664776,-0.10688423,-0.21486321,-0.36585188,-0.22593416,0.035277296,-0.44794804,-0.35432556,0.055172723,-0.23695694,-0.8775161,0.4492615,-0.0354945,0.27273032,-0.011716549,0.22881475,0.62578887,-0.3240371,0.05558923,-0.0129706655,-0.030139754,-0.3929677,-0.44712248,-0.57233906,-0.47616026,0.1769817,1.0635455,-0.25937155,0.17096846,0.15012811,-0.107771054,-0.06855164,0.067126706,0.087202564,0.019791748,0.29984933,-0.009311261,-0.6030241,0.40267038,-0.08143637,-0.11970752,-0.43171623,0.19973318,0.4457118,-0.5099538,0.45817533,0.38798618,-0.02279624,-0.09758784,-0.68184793,-0.114663005,-0.18760398,-0.1970253,0.2758861,0.33202308,-0.9191739,0.49459735,0.32755968,-0.2330517,-0.8224459,0.38781804,-0.10716629,-0.05517103,-0.06607232,0.28629375,0.3272124,-0.020146709,-0.048112683,0.08422882,-0.38773775,0.3443508,0.072824575,-0.06390112,0.4476631,-0.2783043,-0.03276735,-0.6891236,-0.18734215,-0.5017739,-0.23145887,0.2344803,0.071396776,0.028447475,0.06090894,0.16784464,0.35383138,-0.32415563,0.11873865,-0.07447279,-0.33383116,0.36300763,0.45217174,0.5932469,-0.2991528,0.55896044,0.095403664,0.06714721,-0.15458202,-0.035682034,0.3639049,0.040985517,0.41482836,-0.12056478,-0.27380165,0.083602324,0.7920659,0.09347544,0.2361736,-0.12452285,-0.21614666,0.24130858,0.0015949468,0.19031997,-0.14816049,-0.56745386,0.010781507,-0.46810898,0.157796,0.41271186,0.1162334,0.26555517,-0.08869149,-0.1775676,0.049116135,0.14982855,-0.029803442,-0.9983937,0.32936072,-0.015784774,1.0134795,0.41004354,0.04648264,-0.04627251,0.7288381,-0.031816334,0.12174215,0.384723,-0.1304109,-0.45979834,0.5631867,-0.73408926,0.5147319,-0.057648204,-0.088923514,0.096565075,0.033759736,0.41598216,0.6401778,-0.19483832,-0.056647334,0.06974477,-0.3649209,0.06426448,-0.46778843,0.113566525,-0.53756166,-0.21852253,0.6651658,0.6057712,0.41027927,-0.36758623,0.009934953,0.054602344,-0.15948336,0.06566221,-0.049817186,0.09618868,-0.13229181,-0.60397035,-0.012032403,0.39516202,0.13594814,0.2181916,-0.060888704,-0.33187488,0.20887554,-0.16623423,-0.03621241,-0.018246695,-0.59795415,-0.033159807,-0.3068065,-0.5451471,0.47905603,0.031089988,0.21006833,0.2271094,0.09547423,-0.12865068,0.3110653,0.023879051,0.82223696,-0.05792164,-0.021361498,-0.3444028,0.24470684,0.18689765,-0.1871339,-0.042329352,-0.23741515,0.035036083,-0.54159343,0.4251407,-0.07470475,-0.19975258,0.22784893,-0.04823276,0.12903288,0.4438147,-0.026456634,0.013117595,-0.073175944,-0.23940672,-0.3950806,-0.26953954,-0.1343547,0.26962245,0.086036704,-0.10042095,-0.17308064,-0.14075463,-0.059072156,0.22742839,0.04233726,0.09905635,0.30266428,-0.057530254,-0.3432769,0.039574,0.15517066,0.56617945,0.05385556,-0.22180676,-0.35948452,-0.3889938,-0.33670828,0.16002618,-0.026021583,0.34679803,-0.005711845,-0.17084548,0.55052716,-0.010633252,0.9699437,-1.0761832e-05,-0.34044975,0.024068782,0.42967457,-0.041775174,-0.11831327,-0.33417082,0.79252434,0.3929026,-0.048412256,0.04563672,-0.28856662,0.048241727,0.24857847,-0.21461761,-0.11972202,-0.004482414,-0.6898298,-0.26221874,0.21155156,0.17654754,0.26617193,-0.14190306,0.01192877,0.23883797,0.092538945,0.30180198,-0.37535217,-0.25770316,0.27461213,0.32369328,-0.04589514,0.060219355,-0.415173,0.31244183,-0.7586766,0.031413168,-0.19536723,0.12956013,-0.37691242,-0.25275347,0.3165667,0.19916129,0.39236853,-0.22741508,-0.46766552,-0.18108414,0.38913855,0.04368204,0.06363299,0.24416995,-0.24058867,-0.09747311,0.01213061,0.39978868,0.83725464,-0.18336515,0.080490746,0.39758644,-0.21228656,-0.59423935,0.34516525,-0.37548918,0.29784945,-0.059921093,-0.11722512,-0.52591145,0.23729955,0.36431247,0.19269957,-0.021165026,-0.5516182,-0.11715065,0.093615256,-0.29427448,-0.19001083,-0.28257307,-0.044581745,0.5338606,-0.2914486,-0.3597115,0.04214495,0.40629363,-0.05233625,-0.5823855,0.11421263,-0.4113638,0.13376608,0.0018920989,-0.3942671,-0.22562614,-0.08130572,-0.46506143,0.028140953,0.037338562,-0.24961615,-0.037817024,-0.42073202,0.123602375,0.8580972,-0.1304452,0.4747231,-0.29785803,-0.43978497,-0.82441574,-0.35598034,0.37485728,0.12980261,-0.019366086,-0.5196173,0.113394186,-0.23570131,-0.17611265,-0.13418071,-0.34904712,0.4461332,0.18379316,0.1774529,-0.092186265,-0.6424596,0.24411607,0.10898728,-0.10728351,-0.24004023,0.30108953,-0.047236588,0.93729466,0.04189522,-0.03890991,0.107316926,-0.480769,0.07363061,-0.22344136,-0.14295618,-0.46089897,0.036364406 -56,0.28685078,-0.39526346,-0.3884238,-0.13334154,-0.2920922,-0.016077522,-0.21555033,0.2888182,0.07395701,-0.27343404,-0.013020675,-0.07572562,-0.025001016,0.5754737,-0.27342337,-0.46021926,-0.038000073,0.075700834,-0.5485213,0.59300894,-0.42708954,0.2692341,0.1548992,0.26164004,0.14944357,0.26413092,0.33917528,-0.04324373,0.09618592,-0.12056052,-0.18215632,0.035038438,-0.62032473,0.14973022,-0.15476957,-0.21282345,0.11203965,-0.38448557,-0.42189714,-0.82266575,0.30424505,-0.9267262,0.4952931,-0.102638245,-0.35296863,0.2596148,0.26789948,0.31631917,-0.2599631,-0.11750293,0.014494141,0.027123522,-0.04611716,-0.023816643,-0.023984171,-0.58006024,-0.61070687,-0.017914172,-0.6769462,-0.2383845,-0.19893813,0.2252636,-0.41778275,0.1544021,-0.055902053,0.24424869,-0.64707893,-0.1180099,0.11117969,-0.05453641,0.2763476,-0.50153285,0.0618174,-0.14769588,0.068764605,0.07332284,-0.15541026,0.4341265,0.25775024,0.46035516,0.019449595,-0.19555968,-0.27275786,-0.13615172,0.15009555,0.5420085,-0.05495241,-0.39198554,-0.18945843,0.13918869,0.34058988,0.2444312,0.004559857,-0.3464061,-0.041457474,0.047161944,-0.2544471,0.2896752,0.4965285,-0.48290572,-0.22030528,0.41825417,0.49385053,0.08735586,-0.11501883,0.106023826,0.07998412,-0.4302127,-0.119811945,0.051809255,-0.30281603,0.53741175,-0.122085854,0.23996234,0.5889692,-0.17425938,0.11855357,-0.13109542,-0.07303621,-0.22417308,-0.12899365,-0.21555932,0.26694232,-0.50755775,0.09657257,-0.26346523,0.7604753,0.1558222,-0.74675524,0.4398659,-0.5415732,0.1784942,-0.2051906,0.546469,0.72092557,0.5114429,0.4443897,0.68080926,-0.39878267,0.19049333,-0.16929144,-0.4574421,0.32360396,-0.32329997,-0.118592106,-0.5063041,0.034544658,-0.03067699,-0.2018808,-0.13129959,0.60991204,-0.5155413,-0.09968939,0.15990658,0.7528218,-0.27154383,0.0006998221,0.6104146,0.9428444,0.9080203,0.08151637,1.054066,0.33405793,-0.097993694,0.321408,-0.19890901,-0.79377186,0.17247804,0.51246566,0.26943526,0.32051474,0.048937462,-0.048038714,0.42923006,-0.44384277,0.026062457,-0.26510054,0.32930642,0.014989758,-0.005512659,-0.58669126,-0.23664941,-0.029214382,0.080393694,0.0581606,0.41211674,-0.20616178,0.34339613,0.15366767,1.8499669,-0.10160119,0.1217514,0.12332594,0.5776695,0.32161513,-0.16875727,-0.13378982,0.3452048,0.34480536,0.13807537,-0.6971147,0.050093032,-0.28313118,-0.5105618,-0.1405323,-0.3508396,0.025782831,-0.08895135,-0.4125993,-0.1548408,0.08503838,-0.28395668,0.4092209,-2.6546204,-0.3184829,-0.20827007,0.32272086,-0.40317944,-0.1639965,0.045828227,-0.4151086,0.406606,0.51252675,0.43864766,-0.8073827,0.34279194,0.50940114,-0.5365847,0.051703777,-0.53320175,-0.098570354,-0.16635966,0.47846496,0.024818812,-0.13146874,-0.06394937,0.28182966,0.45015904,-0.034615286,0.19299498,0.22091092,0.36052355,0.105323076,0.46492395,-0.13395959,0.35158223,-0.2237517,-0.15350062,0.27886146,-0.17802261,0.28207767,-0.18343358,0.29198134,0.3867923,-0.57090074,-0.978488,-0.67563576,-0.25394443,1.0351756,-0.46657073,-0.454099,0.40331328,-0.20141464,-0.15979157,-0.1176807,0.44902474,-0.10255333,0.05424736,-0.7752069,0.12695919,-0.09633205,0.21007721,0.069755554,-0.035744432,-0.31966373,0.69691354,-0.07354767,0.46569294,0.24919319,0.24132136,-0.29079637,-0.54145217,0.08437606,0.63817734,0.52314645,0.015373109,-0.25223437,-0.26015943,-0.2658912,-0.20373774,-0.04063557,0.306787,0.84362376,0.01497995,0.018475449,0.18765728,-0.18980853,-0.014951827,-0.16476244,-0.29297596,0.17154182,0.12087433,0.52936035,0.67048776,-0.156275,0.37372816,-0.116994865,0.36735472,-0.04205131,-0.5673252,0.37271053,0.8525204,-0.1688555,-0.099284045,0.6385587,0.5669573,-0.24064086,0.49888936,-0.84774095,-0.27998784,0.43145695,-0.12950322,-0.48044616,0.19430058,-0.31694666,0.22252879,-0.92792267,0.27675733,-0.16097178,-0.26341453,-0.46529517,-0.10093747,-3.4912784,0.18535589,-0.11306999,-0.2814844,-0.04918806,-0.088700935,0.38048273,-0.63495815,-0.56367475,0.21355596,0.15819235,0.6302063,0.043762937,0.11611349,-0.23569621,-0.25529677,-0.31383467,0.15625991,0.12420229,0.26745415,-0.036270738,-0.56191766,-0.10072328,-0.23344631,-0.42898288,0.12546325,-0.52711165,-0.5808135,-0.32310277,-0.5869304,-0.2959462,0.6186711,0.033010434,-0.045725662,-0.24610005,-0.08565232,-0.12593165,0.21880178,0.24281749,0.11609624,0.0560608,-0.06354213,0.071324095,-0.3459617,0.31504026,-0.028787991,0.31165588,0.29824325,-0.012534376,0.13482748,0.7129212,0.48818392,-0.2506997,0.74494284,0.5456689,-0.2206003,0.27343407,-0.16193445,-0.36564952,-0.5118978,-0.3896,-0.039646868,-0.35569265,-0.42682812,-0.1388978,-0.37193742,-0.68068874,0.63045406,0.013482833,0.3207447,-0.046267945,0.07680619,0.46621564,-0.27224132,-0.088713855,-0.011978944,-0.22091784,-0.6267044,-0.27337354,-0.73059684,-0.57172763,0.17470242,1.0498703,-0.1295672,-0.18791252,-0.025361124,-0.10999731,-0.0328033,-0.13827609,0.096112415,0.3180106,0.25166065,-0.10503641,-0.69643515,0.62985414,-0.025956415,-0.02187888,-0.48866695,0.1737428,0.5480467,-0.636568,0.2883106,0.30134133,0.13545182,-0.07491554,-0.68375,-0.11829373,0.12432664,-0.23469567,0.51617134,0.24872802,-0.95299035,0.51593024,0.34273925,-0.53826827,-0.7240775,0.42968494,-0.05171144,-0.16540521,-0.14437583,0.2583994,0.13240282,0.15217055,-0.32961908,0.2094519,-0.5438154,0.23448168,0.27255976,-0.027556412,0.5245819,-0.29299116,-0.1590107,-0.72001475,-0.047945023,-0.40164483,-0.19582206,0.30609563,-0.063722864,0.018919945,0.13724288,-0.063645825,0.44005686,-0.34259567,0.038769018,0.06830276,-0.27015477,0.4159211,0.52609646,0.48640183,-0.30464202,0.57760465,0.08526566,-0.20128901,-0.29550454,-0.08016833,0.3919966,0.07047716,0.27122292,0.026191195,-0.10724185,0.37692702,1.0008615,0.17564948,0.41472498,0.15108043,-0.11773865,0.32444426,0.14866288,0.016513716,0.13206305,-0.4646107,-0.016576346,-0.07417485,0.13222554,0.525068,0.16018753,0.27026495,-0.11855043,-0.26401392,0.10951423,0.12613653,0.020906942,-1.1664472,0.1804743,0.18793103,0.65525234,0.59061855,0.11358977,0.006538429,0.83344215,-0.27395627,0.11484539,0.38301215,0.094877526,-0.6250298,0.63010585,-0.7465584,0.4589633,-0.14689855,0.023128737,0.0941288,0.113615476,0.42036095,0.7609429,0.0151892165,-0.0028937638,0.030465994,-0.23144425,0.16120085,-0.29184785,0.046270195,-0.45857874,-0.32449514,0.5043977,0.455793,0.32788506,0.07693054,-0.083026804,0.0209934,-0.12589274,0.20914207,-0.024995657,-0.0040774546,-0.09517152,-0.52308387,-0.31944352,0.5882606,0.17459212,0.2520987,-0.053495463,-0.1095174,0.20577969,-0.28303015,-0.3224811,0.05607847,-0.6503738,0.0016536037,-0.19897062,-0.35863537,0.5694193,-0.24723713,0.16426389,0.037889365,-0.027950244,-0.38861644,0.09624427,0.20916262,0.7753511,0.020342572,-0.08492286,-0.3018845,0.0011021435,0.09590803,-0.24243544,-0.015693339,-0.28393546,-0.005023265,-0.6898842,0.5141593,-0.10540943,-0.40920302,0.11911438,-0.17486435,0.063324496,0.5293434,-0.14261991,-0.3203288,-0.250426,-0.14034662,-0.32637468,-0.3121025,-0.17158209,0.23382123,0.1554799,-0.02628049,0.008874027,-0.12880136,-0.011911013,0.6243891,-0.060487114,0.33530417,0.24630694,0.023812912,-0.30465692,-0.06705804,0.2509065,0.52017015,-0.079210505,0.06106478,-0.23696072,-0.36209235,-0.34070867,0.010515611,-0.14565489,0.42264965,0.08912357,-0.3199169,0.8039152,0.078197524,1.2191144,-0.048740033,-0.37029594,0.09999132,0.52136177,0.053571437,-0.06536689,-0.3053056,0.7561128,0.68498445,-0.06701362,-0.26601306,-0.51713276,-0.24359147,0.3019916,-0.38821086,-0.032345723,0.030394332,-0.6501621,-0.19546476,0.28162205,0.32360083,0.051376175,-0.07420287,0.0694808,0.04855535,0.076646335,0.46672902,-0.4206517,-0.11268742,0.48962066,0.24845514,0.10235052,0.048712384,-0.4058539,0.38857687,-0.44969097,0.174824,-0.4242926,0.187198,-0.15109585,-0.35551974,0.16585231,-0.05306218,0.43677706,-0.25671566,-0.3856558,-0.17872804,0.6739511,0.17703448,0.10687075,0.6908839,-0.31991962,0.22656567,-0.013436405,0.49803412,1.1111194,-0.3833383,-0.07578133,0.1425843,-0.42627907,-0.81727946,0.503292,-0.35988885,0.22410098,0.044869732,-0.2520384,-0.55735993,0.25842634,0.22900857,0.014856379,-0.11076798,-0.53786224,-0.18738781,0.30029956,-0.2517656,-0.15557891,-0.39814332,0.19011761,0.63587976,-0.274301,-0.31387547,0.054156985,0.343366,-0.15420492,-0.64517707,-0.12041115,-0.17874524,0.2816384,0.1019234,-0.33786604,0.09193317,0.20281693,-0.44610664,0.018812204,0.2060914,-0.29552326,0.22040603,-0.37279287,0.13145958,0.95710456,-0.24979632,-0.22268884,-0.740071,-0.56256795,-1.0108356,-0.26125237,0.49522337,0.24445473,0.10173962,-0.62003064,0.15377998,-0.10439651,0.08725599,0.015887456,-0.49153316,0.42827034,0.08592234,0.42338556,-0.00069210527,-0.67048967,0.1357885,0.14663094,0.008636163,-0.4812908,0.64028347,-0.20690452,0.9391332,0.15032583,0.09135569,0.060129058,-0.4806911,0.03055059,-0.29884973,-0.3328349,-0.7311766,0.11447498 -57,0.53826106,-0.16229486,-0.44299486,-0.13380139,-0.039360046,0.09170842,-0.021720542,0.6687795,0.1994401,-0.42686436,0.0372059,-0.1457772,0.15574683,0.4151172,-0.13791075,-0.57575226,-0.028591802,0.2976312,-0.3124828,0.5876909,-0.32022455,0.22031571,-0.11996497,0.4142445,0.062182277,0.31686953,0.18598737,-0.10413228,-0.26242024,-0.03619904,-0.15311292,0.41011253,-0.51594055,0.11288343,-0.028763238,-0.30299208,0.040028967,-0.42735597,-0.38894764,-0.60099983,0.24290681,-0.69619876,0.50614506,0.14691155,-0.25751367,0.27898708,0.116603956,0.22782029,-0.3324391,-0.10212563,0.097637124,0.049257364,0.066749096,-0.30647653,-0.18590789,-0.59124863,-0.4934926,0.12154712,-0.4727398,-0.2143242,-0.13196091,0.16648695,-0.24247949,-0.15763591,-0.17054534,0.5367888,-0.44154212,0.115488805,0.1671395,-0.07325522,0.20981537,-0.46862406,-0.2611527,-0.05498078,0.107237354,-0.13422501,-0.12822208,0.2265977,0.34177002,0.48203906,-0.092112675,-0.115184546,-0.43674642,0.021037051,-0.06546558,0.57549155,-0.37670293,-0.86939234,-0.11042543,0.063400015,-0.11080898,-0.007960805,0.22822316,-0.25857583,0.03714632,0.033214353,-0.34465483,0.39507356,0.3742812,-0.5641333,-0.23558703,0.35566306,0.34349522,0.003255857,-0.1895957,-0.21158536,0.008586193,-0.43260378,-0.15886416,0.11895062,-0.1959103,0.6431337,-0.11276303,0.17234333,0.6196566,-0.047279116,-0.037474196,0.025532112,0.07730805,-0.03474966,-0.38199133,-0.1352786,0.09504773,-0.30002698,-0.010822756,-0.16047062,0.89929676,0.20728502,-0.721346,0.46527547,-0.5294064,0.06419458,-0.08463181,0.3552474,0.423337,0.3977945,0.2863793,0.58698756,-0.4425459,0.051335126,-0.07377023,-0.44802,0.007969486,-0.024716794,-0.10725101,-0.5455423,0.179258,0.08773584,-0.031324305,0.084626846,0.348975,-0.61101234,-0.13178772,0.32793546,1.1005471,-0.28806612,-0.3028012,0.5626935,1.1147071,0.8239664,-0.1420153,1.1846448,0.28389573,-0.3128017,0.36536473,-0.45826387,-0.57407045,0.23424092,0.3556061,-0.31263226,0.36616522,0.0786206,-0.16311683,0.34960318,-0.082942486,0.07497491,-0.25622234,0.14903913,0.14680359,-0.08729565,-0.4550206,-0.2898695,-0.09026841,-0.24651626,0.25048926,0.24746297,-0.22747906,0.26798487,-0.14397182,1.7710094,-0.064613454,0.13554583,0.044340663,0.63520396,0.2561097,0.059696633,-0.0408448,0.49106088,0.2632694,0.18479429,-0.38165566,0.26289195,-0.27878425,-0.6694212,-0.11133088,-0.3617142,-0.028276533,-0.012290478,-0.5761543,-0.014040304,0.012752525,-0.08059852,0.35276222,-2.8665488,-0.23864639,-0.07294535,0.19619036,-0.40379348,-0.3094695,-0.082214706,-0.3456919,0.36904874,0.3771827,0.4972904,-0.64642185,0.438386,0.16664043,-0.31071982,-0.1415188,-0.5054221,-0.050691694,-0.11610899,0.4610019,-0.16335699,-0.041614704,0.19561411,0.19427085,0.543164,-0.09993554,0.105817795,0.095952354,0.33084133,0.15122904,0.25541246,-0.032753352,0.6769351,-0.2987104,-0.1604707,0.23412015,-0.3979779,0.27404323,0.12564369,0.14487411,0.2843482,-0.45877895,-0.95238894,-0.57819134,0.028430479,0.9413501,-0.21638942,-0.32868162,0.14384829,-0.24306364,-0.22188422,-0.01357543,0.3376623,0.052139856,-0.031330258,-0.655327,0.2784099,-0.019063102,0.14865646,0.08177705,0.08913995,-0.2941111,0.6594677,0.0039409995,0.5115772,0.28269592,0.19150282,-0.39482477,-0.44298223,0.00022207627,0.84858906,0.16615786,0.1514715,-0.10049057,-0.20001337,-0.28127146,0.0006471361,0.060132932,0.53547174,0.5926114,0.032740317,0.04679845,0.28599674,-0.045336958,0.04709288,-0.08580637,-0.34133384,-0.064065464,0.039679,0.5490316,0.42717883,-0.35992345,0.66788304,-0.2498083,0.3071858,-0.22920908,-0.33552286,0.5779355,1.0458187,-0.30819744,-0.27258652,0.62997305,0.5494962,-0.53278255,0.36305788,-0.5504285,-0.24291226,0.43408543,-0.21028712,-0.26832062,0.30706263,-0.23443627,0.12072061,-0.99438477,0.3153196,-0.20856984,-0.30512708,-0.41879773,-0.155686,-4.1626472,0.28147462,-0.27964664,-0.1656224,-0.06050133,0.014318789,0.16122337,-0.6765494,-0.38573098,0.1463512,0.12783338,0.48512372,-0.05533899,0.22085162,-0.20568216,-0.13637188,-0.17781189,0.23209003,0.048371248,0.30470213,-0.07631808,-0.5316348,-0.023513641,-0.22345352,-0.46651602,0.16081902,-0.8402348,-0.47361544,-0.086877,-0.75334793,-0.31984234,0.6647144,-0.4041408,-0.009857767,-0.28432631,0.08374966,-0.24005437,0.34223557,-0.032791425,0.15564132,-0.011058484,-0.14013104,0.071289934,-0.3506158,0.14990981,0.05917474,0.4492274,0.3372531,-0.08738656,0.16077633,0.6653968,0.6031253,0.0769143,0.7131643,0.50863445,-0.1804765,0.4267118,-0.40062004,-0.09692466,-0.64131916,-0.54401577,-0.13463022,-0.39289427,-0.5636088,-0.0133857895,-0.36122745,-0.5912879,0.57140625,-0.12631242,0.1010737,0.04955691,0.43235847,0.60058916,-0.31635627,0.061648954,-0.0651559,-0.17336147,-0.5116312,-0.29091278,-0.5091595,-0.32635072,0.2072055,0.6898447,-0.2137448,-0.045784675,-0.07075592,-0.16348349,-0.19343266,0.03207463,0.12633766,0.24551591,0.34271187,-0.26480985,-0.6459689,0.47234413,-0.26376668,-0.1556393,-0.35032108,0.2291372,0.42414734,-0.7459196,0.7693793,0.37062043,0.26458177,0.011867732,-0.5187251,-0.34630558,0.114029884,0.0050160247,0.33668074,0.16349398,-0.87468284,0.44685885,0.39884633,-0.29989132,-0.7173173,0.49132654,-0.03637158,-0.42830333,-0.24981365,0.32686037,0.13529202,-0.009554123,-0.27071598,0.10189778,-0.58279455,0.116989054,0.2315198,0.0029488946,0.38294873,-0.17456202,-0.0166412,-0.7269906,0.010477328,-0.50950557,-0.31958678,0.32306924,0.1013862,0.14242612,0.13388352,-0.046675555,0.2270156,-0.34192207,0.08206712,0.12951547,-0.19226384,0.3496161,0.3470698,0.41057143,-0.5221925,0.46508688,-0.08896489,-0.025570223,-0.023356212,0.11708241,0.54040605,0.2117215,0.43324247,-0.040202804,-0.23243895,0.40435317,0.7210656,0.1381743,0.5969947,0.07182713,-0.18706878,0.29098913,0.018931093,-0.010181665,0.19408603,-0.4315669,-0.024257952,-0.07855882,0.23750813,0.41026095,0.071924664,0.32513094,-0.081077404,-0.25338393,0.053733937,0.281706,0.101646826,-1.0611284,0.45074135,0.2307402,0.72012967,0.4043765,0.065344036,-0.18139629,0.66822094,-0.18934114,0.12788093,0.2884443,-0.088743314,-0.5892033,0.6307197,-0.59393215,0.43752974,-0.22063637,-0.057885904,0.08240259,-0.02295058,0.3162085,0.9115366,-0.1518967,0.03129315,0.10284663,-0.3713306,0.019908974,-0.28857514,0.22554104,-0.52341956,-0.19149768,0.5955872,0.4729742,0.20055851,-0.23856115,-0.017307717,0.16405477,-0.08560356,0.048372626,0.07682574,0.21954224,0.048192296,-0.8216836,-0.27214542,0.5998803,-0.058964986,0.18075085,0.032018244,-0.31155485,0.3788496,-0.2494674,-0.17590325,0.008608692,-0.56477034,0.06865912,-0.19489464,-0.4850297,0.62014675,-0.14810184,0.15106547,0.10207977,0.12451547,-0.43703055,0.4541304,0.07265266,0.6103058,-0.17397359,-0.17454407,-0.5569069,0.030337675,0.1381379,-0.14672148,-0.12121594,-0.43441075,0.020744452,-0.4595594,0.3463555,0.15035494,-0.28681654,-0.14232334,-0.026791304,0.07816708,0.46101794,-0.08982678,-0.15846704,-0.16447286,-0.07601833,-0.25169006,-0.054523267,0.008493125,0.35933942,0.18768771,-0.1109668,-0.095566206,-0.09810121,-0.049513042,0.45511302,0.017243955,0.3512899,0.4248752,0.26657787,-0.128662,-0.09939428,0.2384126,0.4712483,-0.16023387,0.007409739,-0.18355073,-0.27639443,-0.33759,-0.047554296,-0.15347996,0.24593799,0.17991182,-0.3359371,0.8723911,-0.03329412,1.3634478,0.09385097,-0.35861287,0.023400128,0.5260725,0.00910856,0.13003628,-0.48175964,1.062054,0.68337107,0.084755346,-0.19657345,-0.3335341,-0.061956055,0.14636347,-0.2154728,-0.295058,0.012222588,-0.6299382,-0.2848944,0.1929722,0.28185,0.36769983,0.07107169,0.15375854,0.20619342,0.116223395,0.25946602,-0.5109638,-0.12042075,0.24653581,0.50715363,0.0031921715,0.171983,-0.43128893,0.40759325,-0.5557187,0.21932866,-0.39753363,0.14376473,-0.26816365,-0.38254404,0.17287871,-0.109169595,0.41946086,-0.25266644,-0.26905653,-0.13907441,0.46018273,0.12830962,0.12929179,0.67953455,-0.15484548,0.0456081,0.06447489,0.52026004,1.0579526,-0.23700018,-0.20814411,0.3815299,-0.21082595,-0.91863805,0.28253725,-0.13711974,0.24043886,-0.056428727,-0.15737577,-0.62372386,0.37663108,0.25330514,-0.113720424,-0.045557052,-0.48002747,-0.14242008,0.30223423,-0.29943088,-0.28349826,-0.23337685,0.27551928,0.74509156,-0.32510883,-0.40164304,0.19048353,0.24100181,-0.19760053,-0.6375025,-0.061584532,-0.47520348,0.36791387,0.22565822,-0.3785159,-0.13997674,-0.034081466,-0.31062275,0.27672163,0.2501141,-0.33247837,0.12516959,-0.3178306,-0.20653202,0.93716687,-0.04873637,0.14267787,-0.61846226,-0.47606158,-0.9360204,-0.55813414,0.48562402,-0.062360857,0.0067726746,-0.6062005,0.014106964,-0.010818364,-0.3641465,-0.17395915,-0.38286418,0.35819682,0.044417698,0.450134,0.046637483,-0.7793315,0.05666796,0.29855147,-0.13263912,-0.6434011,0.42831066,-0.1597819,1.0571244,-0.043774094,0.11855266,0.49581167,-0.35470057,-0.2960365,-0.44102082,-0.081583224,-0.6447554,0.034503765 -58,0.3319201,-0.084333345,-0.51722586,-0.20061357,-0.19827951,0.10081207,-0.111596435,0.43551782,0.18622139,-0.30291545,-0.11629756,-0.18794124,0.05876129,0.18500474,-0.09675113,-0.5308502,-0.0021826066,0.108292505,-0.5768009,0.6082442,-0.32827115,0.09820783,-0.17230338,0.26348096,0.2585171,0.36509213,-0.060187705,-0.13341498,-0.10450625,-0.037248686,-0.15694115,0.4517741,-0.31503433,0.07824425,-0.042970583,-0.050926395,-0.099283755,-0.4472391,-0.4017997,-0.7096972,0.36345166,-0.79112816,0.30100542,0.029435877,-0.24419183,0.27802116,0.21065341,0.26209727,-0.3161432,-0.2545226,0.14090285,-0.12313537,-0.03712741,-0.111249626,-0.12197538,-0.34687114,-0.45966247,-0.19002171,-0.3197644,-0.31132132,-0.39361033,0.06698377,-0.31575572,-0.015142176,-0.082099624,0.6166475,-0.53378844,0.1793919,0.21838138,-0.21631175,0.14588691,-0.65025675,-0.11921859,-0.093379825,0.35466364,-0.13832693,-0.16739787,0.31578407,0.3734217,0.2134436,-0.10039947,-0.115256146,-0.3392728,-0.21418369,0.2692501,0.40788054,-0.094993606,-0.53931385,0.018881574,0.015083078,-0.14548208,0.21618867,0.15541397,-0.27455544,-0.20262271,0.14891183,-0.12541175,0.41226923,0.42406273,-0.1508036,-0.124438286,0.32384333,0.51637775,0.36677974,-0.28751528,-0.10562923,-0.002550695,-0.44953936,-0.16383079,0.0011122674,-0.25226405,0.51348233,-0.13873383,0.21883705,0.7628973,-0.13232294,-0.12308088,-0.09728753,0.0046999827,-0.14125592,-0.24520683,-0.23341036,0.19028176,-0.27118406,0.3395535,0.0041352306,0.61186683,0.151952,-0.5533211,0.36984035,-0.54547083,0.12602758,-0.12146485,0.38902795,0.5694994,0.35295004,0.46458232,0.62301755,-0.3288681,0.088876784,0.0026295763,-0.36487076,0.05394337,-0.11301147,-0.061327875,-0.49110302,0.08124172,-0.09614863,-0.20703092,0.115063265,0.24492213,-0.37653768,-0.05787513,0.11412987,0.811548,-0.30133936,-0.096628696,0.5613132,0.8350403,0.8970005,0.043743994,0.8954125,0.11034087,-0.27034318,0.35658193,-0.2613926,-0.7502372,0.3156535,0.35257694,0.03394112,0.13796115,0.080099,0.06360276,0.38637045,-0.3388351,0.04686454,-0.16044447,0.010645052,0.24669406,-0.20460081,-0.3981538,-0.17771201,-0.21515246,0.07614011,0.03600288,0.18558049,-0.09942102,0.38781086,0.041997466,1.8503178,0.09182634,0.008596348,0.145184,0.48620743,0.24990219,-0.160808,-0.14110988,0.5349294,0.28411627,0.24953258,-0.6031109,0.2279096,-0.21176024,-0.4272287,-0.14838026,-0.5284292,-0.16992041,0.13241653,-0.44311106,-0.10645516,-0.15682037,-0.23555881,0.38854653,-2.9558082,-0.13039681,-0.14676636,0.3228078,-0.22443259,-0.24792337,0.0059097502,-0.39080307,0.19062181,0.30228788,0.48361313,-0.60813344,0.31266403,0.43243843,-0.63603246,-0.05621271,-0.43284452,-0.19549324,0.033369794,0.34304014,-0.06975691,0.054221023,0.15272404,0.22749545,0.42240503,0.070372425,0.24255894,0.3578331,0.41305113,-0.01817034,0.5967386,-0.10081403,0.53696036,-0.15207809,-0.15688702,0.1650167,-0.2065846,0.35411417,-0.15881711,0.09794543,0.56602913,-0.32812318,-0.8512029,-0.5712175,-0.05276472,1.2073545,-0.4221973,-0.3202487,0.3642515,-0.6129147,-0.23667419,-0.22156666,0.46341693,-0.020940863,-0.08636944,-0.74801236,0.19270372,-0.091074124,0.11354279,0.06316269,-0.14675689,-0.34064728,0.72604203,0.01636151,0.6388916,0.333487,0.010728512,-0.20551041,-0.29690474,-0.06150013,0.5868618,0.26757544,0.08531886,-0.31954044,-0.25815406,-0.25162083,-0.056589734,0.14057882,0.6011607,0.37365657,0.011609905,0.2015422,0.24280445,-0.07735117,0.010737589,-0.20133951,-0.17846322,-0.04278758,-0.030584887,0.365762,0.5812315,-0.33330494,0.40125564,0.10595948,0.25577256,-0.031840056,-0.36438796,0.4277821,1.2433838,-0.18034911,-0.3545252,0.47523674,0.43891978,-0.2565259,0.30785295,-0.4321279,0.004775949,0.6652441,-0.26078433,-0.42978728,0.24295726,-0.27879634,0.10809533,-0.72624874,0.090811536,-0.1666399,-0.46807218,-0.5161291,-0.089845404,-3.2709496,0.1258218,-0.3300597,-0.3402591,-0.20006806,-0.18309112,0.06847334,-0.7265712,-0.60456854,0.22443703,0.05780834,0.7048745,-0.1215263,-0.025012314,-0.31059822,-0.32029587,-0.1586345,0.16235237,0.10551266,0.44077933,-0.079771526,-0.51764005,-0.1261664,0.07622272,-0.40491742,-0.017812986,-0.41812617,-0.32807755,-0.076897025,-0.51183385,-0.12705737,0.68286777,-0.19423789,0.027914153,-0.08487072,0.0017115772,-0.10628643,0.15044224,0.2331662,0.24160855,-0.016421173,-0.010853294,0.10554753,-0.23618782,0.3093522,0.0016690306,0.37316537,0.24271664,0.054767765,0.18775207,0.48650837,0.5470137,-0.14128757,0.8663789,0.58467436,-0.09422612,0.19622597,-0.27119446,-0.2957273,-0.5867762,-0.32709548,0.09873515,-0.37650007,-0.51874393,-0.19517267,-0.3114548,-0.6898525,0.40233007,-0.03777896,0.19457352,0.12809595,0.17452295,0.5460493,-0.20028518,0.040732868,0.014853958,-0.16032279,-0.627017,-0.118998125,-0.42736384,-0.39959055,0.17622873,0.7787998,-0.28613633,-0.036549717,0.046251513,-0.45150077,0.026143583,0.14885536,0.1156809,0.40749666,0.47461748,-0.17691353,-0.5282848,0.49585718,-0.15760939,-0.19690858,-0.59509116,0.19682796,0.50603676,-0.521643,0.72453,0.29827127,-0.060480088,-0.27954447,-0.5009107,-0.25485024,-0.025752857,-0.15989652,0.35475522,0.2503334,-0.64626765,0.25672278,0.18031828,-0.14892066,-0.64307845,0.6853354,-0.18749699,-0.38489458,0.021668926,0.2718634,0.02998523,-0.08925424,-0.18504481,0.22118719,-0.26232725,0.085370906,0.35279047,-0.053354464,0.09457709,-0.2123478,0.09716554,-0.71635705,0.07634679,-0.46481806,-0.15471703,0.4147257,0.05498883,0.23096637,-0.021566778,0.009671742,0.2968331,-0.2494392,0.16729495,-0.042515233,-0.22845818,0.31848124,0.37797922,0.4514372,-0.48719162,0.5236875,-0.02200143,-0.07003288,0.19487885,0.18108869,0.38264054,0.053299095,0.45304298,0.027633876,-0.24159485,0.2678041,0.92136437,0.30424812,0.48548386,0.04210716,-0.08420646,0.20564294,0.06168209,0.23418482,-0.08103243,-0.5883866,0.08394652,-0.21539569,0.10372904,0.4225326,0.16999692,0.1747731,-0.11421046,-0.43630925,0.0137153715,0.3340547,0.21299219,-1.0456034,0.34809375,0.28566614,0.89926744,0.32236746,0.09340258,-0.12820533,0.59261894,-0.21227275,0.13484731,0.3356262,0.032840792,-0.6371661,0.46717164,-0.7429657,0.5146971,0.11705913,-0.14148416,-0.00957093,-0.046043053,0.27367863,0.61730343,-0.21224089,-0.1428461,0.08311925,-0.38570243,0.26782542,-0.45079944,-0.1412267,-0.49493727,-0.28656375,0.51443756,0.577239,0.24980758,-0.09643941,0.0767741,0.07063158,-0.17218581,0.09954724,0.105653815,0.20307061,-0.028986234,-0.7573962,-0.19762771,0.40050563,-0.18633363,0.2668562,-0.066619635,-0.16998383,0.40441337,-0.16255826,-0.021371514,-0.059917875,-0.624267,0.11463082,-0.20561326,-0.6207672,0.54814327,-0.08070795,0.36890548,0.21089102,0.011295125,-0.28971878,0.52256465,-0.09546603,0.8432002,-0.11134346,-0.0032074228,-0.5701473,0.030997142,0.08478871,-0.106353834,-0.06763551,-0.40262175,0.12299303,-0.44377232,0.40828133,-0.009855546,-0.3963561,-0.15042934,-0.12336852,0.06408794,0.5856238,-0.2166131,-0.115297735,-0.26361528,-0.22476968,-0.28023607,-0.22959784,-0.105273664,0.28257984,0.16201879,0.1320863,-0.23545134,-0.102782294,-0.14897726,0.3821762,-0.12647456,0.49890015,0.33689722,0.014466637,-0.10684058,-0.30750176,0.3585323,0.50180274,-0.031843297,-0.10942343,-0.27883673,-0.4833396,-0.41861475,0.14933018,-0.06275398,0.50708216,0.26851892,-0.17662258,0.5817903,-0.2861558,0.87218595,0.022137789,-0.41866475,0.16613278,0.46445486,0.08955607,-0.092275575,-0.118487045,0.6761034,0.41715652,0.05071772,-0.1838371,-0.20647994,0.09547245,0.11208918,-0.11454423,-0.0250202,-0.019894699,-0.54607695,-0.005205363,0.15726633,0.17466795,0.40275037,-0.098142676,0.007785352,0.14171518,0.04144025,0.13379474,-0.43339238,-0.33323824,0.24425438,-0.060929883,0.0824271,0.04873975,-0.5475336,0.49442804,-0.28802562,-0.039227318,-0.24595457,0.27383173,-0.26700807,-0.09415564,0.20805612,-0.10716959,0.44481894,-0.26570728,-0.22412854,-0.36239797,0.44145203,0.17595327,0.09097792,0.46775234,-0.22683083,0.16357404,0.16577104,0.54996777,0.6813216,-0.2580794,-0.035906076,0.30851722,-0.44125122,-0.4804116,0.3486107,-0.36160412,0.19700642,0.094271734,0.047680058,-0.53378665,0.17340806,0.19432375,-0.08641373,0.020884782,-0.65250343,-0.32885897,0.21224806,-0.32651007,-0.13714372,-0.22369072,0.079131454,0.58873504,-0.31940624,-0.30201942,0.08698904,0.03634176,-0.03359635,-0.45538932,0.09639822,-0.26619303,0.3212243,0.009745982,-0.32044843,-0.10760427,0.08413405,-0.39352727,0.34554344,0.055038884,-0.36117473,0.03644766,-0.27435842,-0.09702596,1.0512474,-0.2596362,0.09912189,-0.3548438,-0.42656773,-0.7276373,-0.29512134,0.37183988,-0.038259372,0.06797439,-0.6091218,0.04128032,-0.05076912,-0.063688464,-0.20609972,-0.40463528,0.55002385,0.08838971,0.3635015,-0.08563553,-0.8289399,0.121857665,-0.031913053,-0.13416281,-0.58988184,0.48839322,-0.21980989,0.71025157,0.021652061,0.20776197,0.2112709,-0.29615584,-0.106713235,-0.2373597,-0.20589858,-0.50296783,-0.013520954 -59,0.38770667,-0.17467284,-0.36466056,-0.10973857,-0.257936,0.046727262,-0.118279405,0.32179412,-0.019640263,-0.5856597,-0.10341387,-0.186314,-0.051161338,0.26067787,-0.20974378,-0.47621268,-0.0056144614,0.13600668,-0.5679086,0.46819973,-0.43501815,0.30915436,0.02631747,0.28517833,0.1199913,0.2729126,0.28419024,-0.2293126,-0.13592836,-0.17453457,-0.23964642,0.28062412,-0.5447045,0.1769277,-0.13186775,-0.4661897,-0.09313785,-0.28566703,-0.3017635,-0.6103886,0.2610199,-0.9413199,0.4138316,-0.052959103,-0.21340695,0.45707375,0.07518433,0.20158498,-0.23794998,0.06471183,0.1633633,-0.13337547,-0.032996412,-0.19981034,-0.058012765,-0.3455599,-0.5329593,0.02892969,-0.40894222,-0.12670381,-0.44012558,0.13583097,-0.38439238,0.07155234,-0.029733606,0.32512486,-0.54320693,0.09119662,0.07639661,-0.018181378,0.1703065,-0.53178346,-0.12677865,-0.157243,0.27701727,-0.26010215,-0.13285205,0.3057338,0.22591524,0.44317073,0.02786278,-0.12955984,-0.4848166,-0.022032412,0.21691205,0.4627538,-0.11477466,-0.48834077,-0.07763241,-0.053838618,0.07012628,0.15259638,0.043185767,-0.19138244,-0.17973527,0.014445762,-0.2969819,0.3432396,0.464755,-0.38657883,-0.41573665,0.35088885,0.5315564,0.14079277,-0.11906523,0.069520615,-0.00023901476,-0.5258093,-0.11683462,0.16810973,-0.048698295,0.42664725,-0.19610366,0.28721878,0.6348247,-0.28109312,0.15000394,-0.06766057,-0.111346476,-0.11339712,-0.03659866,-0.12917021,0.107485496,-0.39450026,0.22768702,-0.20193294,0.8506429,0.1046418,-0.77129716,0.29189867,-0.44307575,0.15647332,-0.10395427,0.54773355,0.5940468,0.38757324,0.251615,0.67117196,-0.5083723,0.011796347,-0.070370294,-0.3578033,-0.037183158,-0.15250073,-0.08038235,-0.4933039,-0.027771497,0.07515376,0.08546788,-0.10225373,0.57528967,-0.50944704,-0.0039764643,0.10556404,0.7649081,-0.35767907,-0.1507681,0.8542191,0.9501487,1.0540407,0.06634775,1.0790372,0.2720812,-0.1896901,0.14719035,-0.30971155,-0.612372,0.26529336,0.30652383,0.47583458,0.08631527,0.17709391,-0.028710276,0.3207034,-0.48840916,0.068772286,-0.26753834,0.23691724,0.2091205,-0.05663437,-0.33372372,-0.27137533,0.02060676,-0.0034282326,0.049847268,0.28115088,-0.16201393,0.5543577,0.06090008,1.6842333,0.053905927,0.07999367,0.060623053,0.52150935,0.14639877,-0.053420193,0.07152822,0.15896021,0.38400322,0.03756455,-0.6356076,0.08924388,-0.21225674,-0.64362794,-0.13980278,-0.3249151,-0.26823625,0.033196885,-0.44231004,-0.19562855,0.018601365,-0.2627221,0.44557616,-2.7055323,-0.054267906,-0.05427613,0.41122997,-0.21151842,-0.27231616,-0.14863357,-0.4871755,0.53838116,0.36192656,0.4397246,-0.63136965,0.4183588,0.38082182,-0.40480897,-0.08858214,-0.7079691,-0.059250686,-0.020286,0.38352025,0.025634862,0.030794589,0.22822802,-0.05632581,0.5425039,-0.13217965,0.07458125,0.26939073,0.33917472,0.17336081,0.47921547,0.15978113,0.42153302,-0.33165747,-0.1738021,0.28712007,-0.29409352,0.32354453,-0.13525325,0.13695084,0.39229742,-0.49335188,-0.8858618,-0.7380028,-0.27484354,1.1300012,-0.09795877,-0.5178497,0.29721558,-0.15233812,-0.153099,-0.17571814,0.34486488,-0.19426626,-0.11480566,-0.80805993,-0.014323449,-0.051320706,0.15750284,-0.016349413,-0.009556774,-0.4752282,0.7532384,-0.15198472,0.43370068,0.3715291,0.3011534,-0.29995564,-0.5153362,0.0752117,0.78123075,0.31025124,0.12065478,-0.27786633,-0.3610077,-0.18607174,-0.19297172,0.1284752,0.45362607,0.610495,0.04864245,0.15545763,0.2769823,-0.058792952,-0.011590183,-0.23019654,-0.058415394,-0.20018728,-0.09094487,0.52011484,0.6316317,-0.12207505,0.46301273,-0.119351506,0.17082077,-0.18540548,-0.49389347,0.5561577,0.83767235,-0.17085738,-0.25950614,0.39196855,0.54778737,-0.18363555,0.29865333,-0.6300978,-0.33478925,0.48966655,-0.26481843,-0.47085467,0.10323114,-0.32269213,0.10965657,-0.7977278,0.36368647,-0.18643247,-0.58342093,-0.6871703,-0.25577018,-3.259529,0.023987412,-0.31374684,-0.25417018,0.023564536,-0.27652758,0.17305705,-0.5309339,-0.38402367,0.08325817,0.050021354,0.6633498,-0.0040908097,0.13987158,-0.2918956,-0.03940344,-0.35466197,0.112669155,0.14029923,0.37631854,0.030039867,-0.39729518,0.1614535,-0.15829378,-0.42727196,0.025641706,-0.4440642,-0.4805942,-0.15908685,-0.23458046,-0.40621606,0.65179926,-0.32190514,0.04386383,-0.24081166,-0.1461096,-0.13765262,0.4457305,0.22595392,0.08599326,-0.004676521,-0.0771711,-0.028989526,-0.3165387,0.23893422,0.011789187,0.20894319,0.54492354,-0.22942571,0.14130385,0.4230131,0.48975465,-0.076386675,0.7316662,0.48560145,-0.044234242,0.20380135,-0.26408392,-0.18073197,-0.64918226,-0.37426695,-0.0545639,-0.48547187,-0.58361727,-0.07819388,-0.32558337,-0.80505574,0.54186696,-0.063281216,0.116923064,-0.015626727,0.16998164,0.41483888,-0.036927395,-0.12564065,-0.13557999,-0.03554459,-0.5387475,-0.36771515,-0.69269717,-0.61510235,-0.030421695,1.0009196,-0.14208187,-0.1398577,-0.03140795,-0.25309202,-0.031509086,0.13067691,0.019624868,0.19856699,0.26415247,-0.07590936,-0.721806,0.66985667,-0.034697663,-0.16228475,-0.6562921,0.19011506,0.5416418,-0.63108885,0.33367315,0.38466543,0.029278401,0.035167854,-0.49309048,-0.19334488,-0.2745294,-0.2561911,0.3120526,0.07806769,-0.7435426,0.5082519,0.30047223,-0.21586418,-0.73458153,0.40044844,0.03647737,-0.27992696,0.2266409,0.13567121,0.20648041,0.017212663,-0.24109672,0.3000104,-0.5687655,0.3982579,0.23339829,-0.034204397,0.3785782,-0.2839312,-0.22480701,-0.53836304,-0.049215928,-0.4069783,-0.20860909,0.0866913,0.17566581,0.07491951,0.26114044,-0.016875684,0.3853569,-0.33660635,0.0647498,-0.03234084,-0.041811347,0.19327095,0.45162427,0.47507125,-0.45420474,0.6468984,0.016808415,0.01557157,-0.01547637,0.15498537,0.413863,0.1620706,0.36620057,0.05765698,-0.20042203,0.19809678,0.88356405,0.32460696,0.5325025,0.057168737,-0.3258528,0.4412733,0.1404212,0.29380804,0.011272267,-0.41234916,0.12552454,-0.25639826,0.15454724,0.3953563,0.050034616,0.32083148,-0.1271967,-0.07234049,-0.013256085,0.25209704,-0.12862161,-1.194033,0.3294768,0.2720505,0.7819906,0.56950074,-0.07877552,0.20885108,0.7523382,-0.33568904,0.09380349,0.22094783,0.046847396,-0.56744206,0.5392119,-0.79054433,0.48738256,-0.11577085,-0.046802703,-0.07239187,-0.00054207246,0.2542655,0.652605,-0.071154326,0.05004357,0.016257042,-0.4232982,0.13500647,-0.41400972,0.23941259,-0.42246592,-0.097385615,0.7323881,0.47940972,0.2310385,-0.07429824,-0.019171031,0.05599698,-0.123698264,0.10943165,0.091105126,0.21625344,-0.1499018,-0.6181147,-0.31321412,0.5201036,-0.17729633,0.20917384,0.15058888,-0.20651992,0.24718057,-0.10540571,-0.09150313,-0.023527227,-0.58428663,0.08985664,-0.20725296,-0.24535714,0.44486094,-0.20452811,0.4049326,0.2527541,-0.008624501,-0.2977456,0.16854094,0.11272624,0.5804374,0.06627846,-0.12743677,-0.42576578,0.07654328,0.3202883,-0.22946991,-0.02923565,-0.03952026,-0.059063017,-0.61159605,0.32321683,-0.19453688,-0.29581815,0.23743576,-0.08896984,-0.017009242,0.59933275,-0.023534672,-0.13362718,0.06914622,-0.078112446,-0.2124319,-0.056992058,-0.1407428,0.3050949,0.18780534,-0.08126152,0.008842975,-0.12704615,-0.007151119,0.44540805,-0.00034744342,0.40976092,0.1784912,0.08184651,-0.4712787,-0.18245652,0.04333461,0.5016629,0.03795872,0.04553135,-0.1918773,-0.457852,-0.35274085,0.1349384,-0.16842829,0.23095326,0.12429707,-0.39427534,0.62496454,-0.10911519,1.0291041,0.1964483,-0.31049022,0.31212413,0.45460021,0.1458872,0.108429626,-0.2679056,0.8566535,0.6163212,-0.07697377,-0.22864078,-0.19892809,-0.020748913,0.337894,-0.15934263,-0.24420443,0.068665154,-0.68690723,-0.2672511,0.18166032,0.15898667,0.09213582,-0.08649047,-0.057160676,0.20663957,0.06500676,0.39675325,-0.46103472,-0.18358491,0.40751123,0.22831532,0.050104015,0.13415937,-0.38186333,0.44052476,-0.42229065,0.042309705,-0.2441149,0.18238431,-0.1862999,-0.12202316,0.2774121,0.2452514,0.374443,-0.111753985,-0.37878513,-0.2824474,0.5590025,0.16388471,0.28175536,0.48839238,-0.17679438,0.075386606,-0.024158092,0.32087773,1.120285,-0.30192104,-0.08621569,0.37964574,-0.25171444,-0.5271262,0.473807,-0.25368285,0.13343982,-0.06331598,-0.25565115,-0.44304523,0.25169572,0.21321398,0.13152,0.19196707,-0.61637646,-0.25839314,0.31303388,-0.3404811,-0.24791946,-0.4212871,0.13730086,0.6145528,-0.3522144,-0.14186043,0.06438635,0.2852898,-0.24447638,-0.5420839,-0.0359989,-0.3531661,0.25297585,0.13022149,-0.3112063,-0.052503705,0.11850972,-0.35926333,0.083947055,0.16040659,-0.37149152,0.0596512,-0.34051606,0.067693755,0.9251279,-0.26318437,0.2480044,-0.70174146,-0.42562875,-0.9416148,-0.2606753,0.6060989,0.21442324,0.011534077,-0.6220862,-0.07539024,0.055042446,-0.13303,-0.111107096,-0.56535107,0.51317865,0.11940634,0.1655775,-0.034265127,-0.6768252,0.05517055,0.06654755,-0.17137368,-0.42232376,0.5793353,-0.048793532,0.78966194,0.08508768,0.10730336,0.23776884,-0.42859143,0.101578146,-0.25048333,-0.24261394,-0.67384034,-0.0048799873 -60,0.27361187,0.07652709,-0.43681973,-0.08373144,-0.19044696,0.14206845,-0.10496393,0.4744507,0.17770018,-0.26198262,-0.081922755,-0.1023629,-0.060882695,0.3443338,-0.13888666,-0.5163492,0.08043841,0.13767682,-0.43143952,0.5633589,-0.5383737,0.36223263,-0.032950357,0.34929377,0.14224969,0.19632751,0.18813589,-0.09134367,0.084990576,-0.19751851,-0.107944354,0.17910245,-0.46502241,-0.0028902625,0.009604126,-0.4976258,0.1789623,-0.19430408,-0.3407876,-0.6379487,0.36055982,-0.6509513,0.6031836,0.12378582,-0.21669227,0.25957912,0.18381779,0.4119551,-0.043406468,0.04484386,0.1765844,-0.020360358,-0.06588909,-0.13903628,-0.2787597,-0.5716218,-0.62988085,0.09025537,-0.42195162,-0.12758884,-0.2262172,0.14145745,-0.35687664,-0.024075601,0.028355975,0.2025533,-0.3754567,-0.043720685,0.17040454,0.1150107,0.3080161,-0.5540317,-0.10568447,-0.11702491,0.32631838,-0.35417125,-0.22390755,0.15154463,0.41393906,0.49784726,-0.08664489,-0.19542988,-0.28423178,-0.04171356,-0.12575437,0.5877641,-0.3003082,-0.36365634,-0.121572345,0.022672378,0.088917166,0.26411983,-0.012514701,-0.08700134,-0.09268956,0.26583245,-0.333617,0.41797116,0.3904338,-0.4861724,-0.37310806,0.44607082,0.54038835,0.042489987,-0.16148987,-0.048511505,-0.031030098,-0.5434403,-0.1938408,0.002299279,-0.26763037,0.34431908,-0.15015605,0.2479153,0.5670453,-0.13083385,0.06722844,0.19688496,0.004900827,-0.113790974,-0.14261119,-0.26412073,0.20506191,-0.5399615,0.09516496,-0.16088802,0.80449814,0.008099128,-0.8280779,0.23865542,-0.6305002,0.05362377,-0.21063416,0.5063578,0.7432234,0.15889949,0.22058089,0.6747736,-0.5488319,-0.023035843,-0.12996884,-0.32616237,0.24443896,-0.108256035,-0.105529666,-0.56200546,0.011440768,0.27825975,-0.03256215,0.20758893,0.24070168,-0.5726703,-0.014877161,0.17462033,0.8193134,-0.28271195,-0.24257818,0.53126717,1.0463245,0.9667224,-0.05762928,1.2276962,0.1612944,-0.18149057,0.29244554,-0.48711932,-0.6685723,0.2455945,0.4790849,-0.16985361,0.27445936,0.21485662,0.0737879,0.34273916,-0.42083246,-0.029655892,-0.108763255,0.22929096,0.059316628,-0.09470861,-0.3052483,-0.3227856,-0.09802867,-0.0073614097,0.19168244,0.3080693,-0.21610902,0.11604261,-0.033177283,1.6706023,-0.058417264,0.22062722,0.0706876,0.5409424,0.1563935,-0.13374831,-0.14207722,0.13564415,0.3477183,0.24137115,-0.60417026,0.10289339,-0.28573987,-0.3791688,-0.21656387,-0.28149712,0.012925322,0.1266269,-0.37494802,-0.08919418,-0.13352756,-0.33880588,0.47491267,-3.0379615,-0.20954145,-0.15972951,0.24754047,-0.24779262,-0.42013243,-0.15179889,-0.5576969,0.46376088,0.36950964,0.43133977,-0.6197717,0.47184724,0.23002599,-0.3988431,-0.1751052,-0.71966594,-0.07084263,-0.034933977,0.18290982,0.09007608,-0.04789905,-0.06871336,0.28733435,0.34418428,0.02515721,0.016214006,0.2081566,0.29215494,0.19638006,0.5283666,0.016988598,0.59994155,-0.12935045,-0.2712046,0.22743867,-0.28695884,0.27222088,-0.1862685,0.08557823,0.40209356,-0.47614628,-0.9386455,-0.74657476,-0.31607088,1.1534095,-0.076640084,-0.21486896,0.2118206,-0.32895133,-0.38398492,-0.20813963,0.50756365,-0.26298133,-0.24388586,-0.61559045,0.15153868,-0.1767803,0.18959118,-0.031599425,-0.10091071,-0.51227593,0.5099178,-0.049831137,0.32219312,0.29878938,0.11754947,-0.23622046,-0.3533511,-0.09441759,0.89803404,0.30918476,0.1035384,-0.1436355,-0.1952944,-0.56407785,0.09038174,0.23718467,0.4288079,0.6037496,-0.04688887,0.089528486,0.29198673,-0.031285204,0.020477941,-0.07891807,-0.3482591,-0.010119883,-0.09115135,0.65698874,0.48304904,-0.09553797,0.54721874,0.090666346,0.19730648,-0.38415292,-0.36665365,0.41559127,0.7707179,-0.1241529,-0.15598537,0.70854247,0.4554094,-0.16050074,0.40561235,-0.602631,-0.2863832,0.32028252,-0.0981576,-0.30433947,-0.028679065,-0.39258322,0.017677646,-0.818935,0.25044334,-0.14351498,-0.50225484,-0.4515393,-0.08711983,-3.4425778,0.28170583,-0.19507296,-0.062061347,-0.010617046,-0.04913984,0.39722288,-0.549539,-0.58952594,0.13154426,0.056508686,0.70620906,-0.06227322,0.050942514,-0.18190345,-0.29538217,-0.4358107,0.041214857,0.17152452,0.39739424,0.069699295,-0.4371376,0.059767384,-0.17020147,-0.33674595,0.11967463,-0.5054997,-0.4194052,-0.15966947,-0.49481326,-0.3703171,0.73166597,-0.4321294,0.03698272,-0.30961132,-0.046088163,-0.01946658,0.43161643,0.124365844,0.031182718,-0.002609991,-0.0067444304,-0.01958538,-0.3523016,0.26678365,0.038242705,0.2692114,0.3247891,-0.046947174,0.269055,0.5458241,0.50799835,0.029739857,0.8487163,0.5868052,-0.18891881,0.2077623,-0.2633056,-0.07779301,-0.372132,-0.27188206,-0.15580662,-0.37163687,-0.42619604,-0.041447576,-0.34758213,-0.686457,0.5111028,-0.053264506,0.12160281,0.014342042,0.31616557,0.40249392,-0.20619327,0.008112876,0.027340494,-0.17212123,-0.46002784,-0.26437828,-0.4395442,-0.43155143,0.15517212,1.110963,-0.28347257,0.15753204,0.095242426,-0.17250922,-0.025297165,0.09559857,0.020820687,0.13213935,0.32044137,-0.25259715,-0.7013756,0.35028282,-0.3642645,0.057580292,-0.76603496,0.089478455,0.4279411,-0.56603324,0.33953223,0.25918657,0.24370687,-0.03777537,-0.4984062,-0.16501859,0.08533262,-0.36165777,0.26401612,0.18687648,-0.9448922,0.4121392,0.27214125,-0.1443096,-0.6358528,0.55065304,0.012833716,-0.34973815,-0.119929224,0.2866651,0.34699982,0.200862,-0.084712155,0.23573923,-0.3382791,0.27875772,0.21355446,-0.04595333,0.4070325,-0.15180531,-0.08804544,-0.59315217,-0.10132827,-0.5305949,-0.22146806,0.14432631,0.20426154,0.1389818,0.3955267,0.09700297,0.32287982,-0.26575136,0.055227287,-0.012588675,-0.24175523,0.21566004,0.3785848,0.447217,-0.46736506,0.5163955,0.025122972,-0.18506697,-0.13265687,0.003021474,0.5532652,-0.13893655,0.37240264,0.01636021,-0.26725942,0.30609936,0.81471634,0.17203626,0.2250585,-0.027583223,-0.05588176,0.0545309,-0.018001989,-0.041630387,0.21819584,-0.6162172,-0.07929837,-0.09257663,0.26912814,0.51920134,0.05339273,0.14931801,-0.11155033,-0.35869595,0.011292806,-0.03165154,-0.03785654,-1.1730613,0.40528077,0.19387439,0.68498033,0.50169414,-0.068087734,0.055064306,0.49809998,-0.19858599,0.13195878,0.30551898,-0.06425026,-0.30779344,0.61192095,-0.6836395,0.5766386,0.043944355,-0.112352565,-0.034685157,-0.15014444,0.34546253,0.9954852,-0.29177308,0.13514747,-0.020788986,-0.22224663,0.102317914,-0.17370555,0.15628907,-0.7138658,-0.15949965,0.6059419,0.44035834,0.34536484,-0.098505735,-0.04573588,0.124469705,-0.061454196,0.014259655,-0.18160574,0.138237,-0.07134585,-0.6511638,-0.21553162,0.51457244,0.11752892,0.14067774,0.06303726,-0.16604008,0.29550764,-0.061243393,0.016060801,-0.06692147,-0.5924021,0.05719008,-0.15436926,-0.29768738,0.64255965,-0.36176616,0.3257701,0.15430239,0.11685967,-0.14728425,0.42918074,0.033799484,0.4928884,-0.10695052,-0.08443156,-0.36207587,0.18278979,0.11814572,-0.06761705,-0.07057386,-0.29115942,0.1711004,-0.65062934,0.35726598,-0.03612637,-0.3164401,-0.17489019,0.038951077,0.0973216,0.4594833,-0.046127282,-0.09999791,0.03218603,-0.2866053,-0.16907293,-0.043656595,-0.0895613,0.23552187,0.17939799,-0.19856946,-0.15467466,-0.17583726,-0.15810178,0.27343667,0.08438484,0.3467449,0.2473581,0.19292268,-0.16105655,-0.24914382,-0.026578499,0.38193706,-0.2926529,-0.25825173,-0.29291934,-0.3553005,-0.26800844,0.38536936,-0.036036305,0.43073907,0.040822607,-0.19682139,0.5066817,0.077609785,1.2508183,0.11331897,-0.20422468,-0.0632108,0.5656552,-0.049873468,-0.14591108,-0.4137495,0.809356,0.5658571,-0.1887705,-0.17482527,-0.29740465,-0.071991555,0.21545726,-0.13518482,-0.052903857,-0.023487972,-0.6533009,-0.291734,0.25373504,0.24248165,0.14377631,0.05364138,0.0924517,0.29341656,0.017610967,0.34471563,-0.35607323,-0.11350131,0.3488897,0.4264583,-0.015167301,0.2569783,-0.38047695,0.40386468,-0.43586248,-0.058790725,-0.2788015,0.20879115,-0.13185053,-0.35555568,0.3340473,0.07736276,0.3205592,-0.040096052,-0.4173752,-0.14659716,0.43317538,0.32827452,0.18149897,0.5183866,-0.22692226,-0.116936326,-0.14781946,0.447427,1.070039,-0.2101011,-0.12472784,0.41754803,-0.26458648,-0.53332806,0.26559573,-0.37098134,0.0722138,0.12252106,-0.21929179,-0.2323617,0.3040962,0.21076062,0.091334,0.08797184,-0.39983875,-0.1538389,-0.021373153,-0.15151507,-0.29107317,-0.29563954,0.24419387,0.8048913,-0.20614932,-0.2392982,0.080172315,0.46665022,-0.17894195,-0.53626186,0.031894356,-0.31112707,0.2515034,0.0696734,-0.30872032,-0.24082613,0.06468747,-0.43351558,0.0891875,0.30867255,-0.4430133,0.11423437,-0.33821866,-0.17327045,0.9124967,-0.15779932,0.12623176,-0.46284816,-0.28771293,-0.66844517,-0.38605136,0.25240946,0.30280426,-0.066114515,-0.3457861,-0.008601583,-0.0011392465,-0.19292647,0.0040486227,-0.19895664,0.39913946,-0.010841163,0.35311002,-0.00063089223,-0.86583513,-0.04733405,0.050239682,-0.21917978,-0.52301836,0.49733844,-0.07759131,0.7731938,0.16816221,0.1417742,0.27385646,-0.19505674,0.058343366,-0.23083869,-0.1588242,-1.0456493,0.023734607 -61,0.37557033,-0.2135964,-0.3732879,-0.041513562,-0.31169662,0.107008375,-0.15733142,0.40410605,0.21695091,-0.1588178,0.067710616,-0.26071808,0.016491735,0.44545308,-0.13581194,-0.49642292,-0.017470038,0.11059902,-0.5855616,0.5244207,-0.4150767,0.3461282,0.06509595,0.2686486,0.07827323,0.35625952,0.17103313,-0.1738704,-0.017967295,-0.09328982,-0.13945611,0.049150553,-0.53168243,0.18994491,-0.15435986,-0.22128677,0.12761812,-0.40469855,-0.5830422,-0.60406774,0.19856386,-0.71793693,0.5136686,0.064214796,-0.3488526,0.11302234,0.10445004,0.33154646,-0.27958456,0.057803813,0.21874245,0.085910335,0.10189188,-0.21779127,-0.21181574,-0.5224454,-0.5051592,0.05693915,-0.47852176,-0.35831052,-0.26457912,0.11279174,-0.35191888,-0.058103245,0.010786617,0.13747525,-0.49675387,0.013438066,0.19819777,-0.18109736,0.22639862,-0.5148138,0.07117624,-0.11407218,0.06810179,-0.13424876,-0.1970842,0.43829897,0.1493831,0.41755825,-0.07326209,-0.24302842,-0.09116761,-0.1665212,0.06376887,0.61708844,-0.20958687,-0.32073706,-0.10012167,0.11517797,0.2189085,0.14395823,0.009136768,-0.35864893,-0.18421431,-0.005123198,-0.11754228,0.18961151,0.53527826,-0.44448847,-0.24250145,0.33620635,0.42641562,0.23612125,-0.087688215,0.15692613,0.052165486,-0.44109097,-0.23626593,-0.033613794,-0.110499926,0.4751661,-0.06075756,0.2719621,0.7549618,-0.13637035,0.1023588,0.08484035,0.055999923,-0.13218635,-0.114780456,-0.16946128,0.13150303,-0.5267732,0.03182571,-0.04449602,0.76825535,0.22390018,-0.7881206,0.38634312,-0.48696482,0.16971461,-0.16553198,0.578319,0.69995654,0.3091793,0.14726028,0.6937498,-0.44047925,0.17285666,-0.08303892,-0.439398,0.35204214,-0.27354953,-0.15100147,-0.61702883,-0.02949036,0.23040935,-0.12446937,0.09315213,0.33678997,-0.5524261,-0.0063327234,0.13498238,0.9114918,-0.3043217,0.033764653,0.50466734,0.92311406,0.85350525,0.024846362,1.1212462,0.22799867,-0.22005746,0.2687545,-0.3004731,-0.766023,0.23996739,0.53799534,0.062076345,0.33636385,0.103664875,-0.12586696,0.27055177,-0.34284312,0.12686493,-0.2287721,0.21877345,-0.07954669,-0.11732507,-0.52554095,-0.28560045,-0.0821765,0.01826469,-0.089565404,0.29014003,-0.22619681,0.19745414,-0.056818493,1.8222587,0.0034228424,0.14016096,0.07819987,0.61652476,0.2679203,-0.12519571,-0.17046942,0.36364853,0.3256077,0.23250885,-0.5120898,0.06886309,-0.22423156,-0.50181365,-0.04272262,-0.32862714,-0.047961906,-0.08039301,-0.48876274,-0.14729498,0.05201125,-0.31593844,0.44412845,-2.8549845,-0.17363374,-0.05748868,0.25352466,-0.3382414,-0.2531339,-0.08756336,-0.3219894,0.27846605,0.4474456,0.49738273,-0.65076715,0.2150795,0.37544194,-0.46386567,-0.08002806,-0.5405253,-0.12772211,-0.0063905995,0.4479143,0.06478386,-0.046413638,-0.029797189,0.34930566,0.43465722,-0.043694057,0.09585786,0.16748291,0.27576897,0.13795567,0.2716758,0.0016682069,0.33727127,-0.15595356,-0.15570633,0.35875005,-0.22998644,0.27810678,0.10908993,0.1287058,0.29254398,-0.48604187,-0.8108785,-0.5367944,-0.2521597,1.0621936,-0.29730985,-0.32814223,0.3407325,-0.26849803,-0.23134737,-0.07888846,0.39754918,-0.15454279,0.110217534,-0.68013436,0.058890805,-0.046034522,0.18176799,0.07142995,-0.013450649,-0.27714416,0.5914477,-0.024868758,0.4076986,0.271318,0.057780758,-0.059904497,-0.34645244,0.1230354,0.8395378,0.42552254,0.15410942,-0.17983681,-0.17695138,-0.40252686,-0.15185724,0.07135644,0.40096915,0.8911899,-0.055840217,0.13742495,0.21859783,-0.106946446,-0.013041262,-0.06970975,-0.1890988,0.1121083,0.12096496,0.6041111,0.60362077,-0.22318234,0.44647518,-0.040628336,0.3481771,-0.12257694,-0.5899634,0.3736514,0.6897709,-0.080198035,-0.15359528,0.55205977,0.5909742,-0.30732745,0.4870202,-0.7494841,-0.33659998,0.4308076,-0.11059148,-0.4318302,0.37382972,-0.31568706,0.20897178,-0.88361,0.4541002,-0.04804219,-0.5229298,-0.3769077,-0.19194302,-3.206715,0.14976749,-0.20019145,-0.2027152,0.015679032,0.022690065,0.2756644,-0.5978182,-0.4308224,-0.062649295,0.07620303,0.6029625,-0.045575734,0.029637177,-0.15107034,-0.27528256,-0.38800544,0.093438216,0.029625837,0.31833592,-0.15375608,-0.48828572,-0.26351532,-0.28934386,-0.4176676,0.14294863,-0.70727146,-0.59864587,-0.23364411,-0.55601627,-0.09850582,0.7056097,-0.19868854,0.022054084,-0.21095704,-0.062196862,-0.09828078,0.26041257,0.38174045,0.019673228,0.03016566,0.028510321,-0.08043643,-0.37306756,0.27885154,0.10544314,0.49329337,0.39742532,-0.16937906,0.16670053,0.69070274,0.48209146,-0.238455,0.6621404,0.47010294,-0.20179044,0.36713532,-0.2508741,-0.21973367,-0.42235842,-0.4447922,-0.12840714,-0.38097742,-0.42890522,-0.10723033,-0.2598685,-0.68395925,0.52785873,-0.012579981,0.14503919,-0.039783493,0.06354611,0.4260926,-0.2172412,-0.13695082,-0.16409384,-0.18675347,-0.5216265,-0.28129885,-0.6675734,-0.54658335,0.32704675,1.1141158,-0.10889159,-0.039830673,0.04733016,-0.18787451,-0.15622555,-0.11296746,0.042508475,0.2321852,0.16892216,-0.11926762,-0.7452037,0.55065995,-0.03981127,-0.16025782,-0.49619693,0.074691966,0.583803,-0.62989336,0.30849412,0.20745015,0.25371683,0.07033278,-0.4401005,-0.20580424,0.05409984,-0.19703813,0.3762663,0.053163983,-0.71003395,0.3782338,0.3165829,-0.4679736,-0.50596005,0.52941656,-0.0373219,-0.26161784,-0.019405408,0.19570948,0.009809673,0.037946813,-0.17990296,0.33065143,-0.45623472,0.31721878,0.38644272,-0.013626901,0.43084186,-0.122948,-0.22219375,-0.57501763,0.027312227,-0.32663265,-0.40538797,0.24573027,0.15699151,-0.04826433,0.15239494,0.040588688,0.41390198,-0.25851253,0.0804142,-0.04159964,-0.31372565,0.5742391,0.37434572,0.599933,-0.3887609,0.5934571,-0.022907492,-0.03192932,-0.07143901,0.038250543,0.5007962,0.104208805,0.2230145,-0.08125693,-0.088181525,0.2974431,0.8480424,0.20831528,0.3780574,0.018668525,-0.108226135,0.18602315,0.14903836,0.0062239943,0.1613698,-0.47675118,0.07156692,-0.16308528,0.21824746,0.45581543,0.12797844,0.16573104,-0.09246082,-0.39768487,0.16830023,0.15236072,0.025694184,-1.2101874,0.27390102,0.3687705,0.5481983,0.5278442,0.03850937,0.016709214,0.7403246,-0.11714051,0.12712331,0.3004125,-0.10276301,-0.661684,0.5481752,-0.67539823,0.6253321,-0.06722266,-0.04685407,0.08154461,-0.025673095,0.45965356,0.74091756,-0.0910735,0.031869326,-0.026698468,-0.35565552,0.028903794,-0.39761466,0.17342891,-0.5469421,-0.33662874,0.57982534,0.43169373,0.16108608,0.00582968,0.009957645,-0.022662597,-0.14366254,0.39116108,-0.061713155,0.031175153,-0.12526281,-0.69025856,-0.32646745,0.57436043,0.015565348,0.09312453,-0.007546556,-0.09757121,0.25219184,-0.22953469,-0.033521175,-0.11364303,-0.5522897,0.17556486,-0.34361494,-0.3498033,0.5696805,-0.1599981,0.24692036,0.0943848,0.036567144,-0.285219,0.4359184,0.061441563,0.80481213,-0.058703262,-0.35855097,-0.24946244,0.14611825,0.09531123,-0.17303485,-0.1414826,-0.28057817,0.020948308,-0.67525035,0.37719414,-0.07714844,-0.40113556,0.16056685,-0.15709186,0.036709912,0.3876548,0.0364162,-0.29097444,-0.13939327,-0.04194224,-0.20973226,-0.1009484,-0.21566819,0.265986,0.22620104,-0.22692223,-0.057536583,-0.06183479,0.013895933,0.34358698,-0.113215655,0.37215316,0.24119194,0.13095562,-0.28009936,-0.027968628,0.22604793,0.42803898,0.06842181,0.25628737,-0.13516189,-0.27755147,-0.3769808,0.05350594,-0.22974648,0.3510879,0.21409747,-0.31365195,0.8222304,0.073492005,1.3035415,0.0076486627,-0.28752485,0.21792999,0.45949093,0.14081869,-0.019923735,-0.42661223,0.94206387,0.73819906,-0.037198577,-0.27164066,-0.33394396,-0.2262729,0.23680235,-0.24857181,-0.13716917,0.030592393,-0.6665659,-0.30612066,0.2238864,0.29796588,0.21061675,0.019243725,-0.039280057,0.09906553,-0.055337064,0.18648511,-0.42796558,-0.07090727,0.305863,0.1810856,-0.021916438,0.101368956,-0.5540146,0.45279422,-0.6773436,0.10769223,-0.26022956,0.12221162,-0.1329932,-0.42848533,0.191896,0.04571077,0.4703646,-0.33776695,-0.39757365,-0.12514548,0.539261,0.05934252,0.24299124,0.59174985,-0.3121223,0.08501988,-0.08333062,0.36414993,1.0570716,-0.30759144,-0.09230644,0.40784073,-0.36141053,-0.74107134,0.20625407,-0.32326302,0.235652,-0.119684376,-0.3265793,-0.4335082,0.22148976,0.2061327,-0.08132045,-0.12514123,-0.38439122,-0.09845674,0.16741033,-0.2026531,-0.3422135,-0.4490321,0.28759888,0.6700428,-0.29004878,-0.33872518,0.2114021,0.25974998,-0.23620272,-0.60973096,0.04151765,-0.23668191,0.20600182,0.0019112905,-0.30288723,0.019665726,0.0827549,-0.37286466,0.17452136,0.33911392,-0.4569719,0.098720625,-0.3746148,0.016023846,1.0159215,-0.14437841,-0.044267647,-0.80506516,-0.545407,-0.86702603,-0.4904322,0.5971111,0.22093193,0.04043488,-0.5064614,-0.010603666,-0.08641981,-0.014415939,-0.086151734,-0.37739494,0.4171006,0.066650435,0.31819013,-0.18008587,-0.8643821,0.17583853,0.033243444,-0.15254335,-0.670194,0.56550705,-0.113260955,0.7883692,0.17013595,0.043439202,0.33293766,-0.49787024,0.08237477,-0.25816032,-0.18947801,-0.6742688,0.20872869 -62,0.32703987,-0.13823153,-0.34958664,-0.033258352,-0.27933785,-0.0978233,-0.2450442,0.347019,0.3895091,-0.025768552,-0.10586138,-0.04692378,0.2064689,0.40211985,-0.09651001,-0.60063666,-0.15679109,0.025492078,-0.5402417,0.49235892,-0.50444025,0.09363401,-0.058636654,0.4491155,-0.0051582414,0.44744858,0.21589844,-0.08735704,0.010111332,-0.11634263,-0.02268267,0.27005672,-0.5962911,0.067243315,-0.21543495,-0.15938357,0.09262456,-0.5817067,-0.30191723,-0.67876565,0.06629375,-0.78726476,0.472802,0.04758572,-0.14365332,0.0959535,0.17118327,0.30180353,-0.32932568,-0.17001818,0.09999107,-0.078180574,-0.11284282,-0.401246,0.0012414881,-0.15812217,-0.4440512,-0.002953606,-0.44408682,-0.29489136,-0.23442249,0.106648445,-0.34470657,0.046162717,-0.06338643,0.4631699,-0.40467733,0.07739759,0.31692007,-0.2803857,0.31447938,-0.46427208,0.016447868,-0.015163532,0.47136286,0.034687746,-0.25659624,0.4253636,0.24342449,0.3397104,0.08726815,-0.21717532,-0.29354566,-0.17507443,0.26470467,0.5747279,-0.16214974,-0.3059772,-0.23773949,0.08105767,0.0020562324,0.28315732,-0.034371424,-0.1712247,-0.10074967,-0.108690895,-0.12729868,0.478301,0.536121,-0.19165279,-0.34863275,0.17233646,0.57012075,0.32715002,-0.20518291,-0.08799215,0.087576754,-0.6471714,-0.15400924,-0.18173279,-0.08057956,0.5589887,-0.15031429,0.15847513,0.7755761,-0.09451008,-0.12604031,0.024172226,-0.05261383,-0.052484255,-0.4479588,-0.05992427,0.15551719,-0.48786265,0.12425876,-0.16068229,0.5807481,0.1513706,-0.70416737,0.3823962,-0.5905015,0.14518353,-0.061346207,0.51852876,0.5981479,0.3112252,0.5843568,0.700465,-0.25755382,0.2709796,0.10578374,-0.5120578,0.1714985,-0.33117405,0.18333694,-0.45468256,0.1191146,-0.009675183,0.07596477,0.2511991,0.007647957,-0.4511641,-0.041854303,0.3224909,0.84981185,-0.1918498,-0.036194332,0.6688062,1.1214718,0.9115283,0.028103428,1.0155473,0.24514236,-0.16507138,0.2448344,-0.25931224,-0.7984872,0.20172906,0.3246948,-0.06353338,0.24545692,-0.1735225,-0.08758478,0.38039795,-0.44299278,-0.101334624,0.14135967,0.3699819,0.33927634,-0.13666867,-0.54976404,-0.1685276,-0.010047742,-0.10105383,0.12130425,0.12924656,-0.14831547,0.43760794,-0.15589197,1.2059759,0.06696138,0.09628003,0.11459088,0.6257884,0.34513417,-0.15157421,-0.1711574,0.49795,0.25450784,0.11186392,-0.56583256,0.33055726,-0.23255062,-0.31144243,-0.053890236,-0.43426332,-0.09761777,0.23055522,-0.2757454,-0.07215906,-0.13301823,0.011641349,0.4306132,-3.2090027,-0.2015429,-0.06037109,0.26761913,-0.19890293,-0.08206091,-0.062322356,-0.530506,0.25677735,0.28613952,0.6073887,-0.6656351,0.39118797,0.48680645,-0.61429894,-0.16843045,-0.68371445,-0.14567196,0.07060326,0.47131297,0.21753971,-0.003276594,-0.15381347,0.2521364,0.6865978,0.1332875,0.18890119,0.3981853,0.32308894,0.091638684,0.41548818,-0.061391957,0.49599177,-0.30076388,-0.15119757,0.27849302,-0.21403159,0.24483947,-0.116674915,0.041457515,0.5120233,-0.30610424,-0.98942626,-0.49112743,-0.11373062,1.0884402,-0.34523243,-0.54233384,0.28765774,-0.38440344,-0.12500107,0.07691206,0.5162597,-0.08748757,0.1779281,-0.7279338,0.18196766,-0.02906033,0.124518104,0.044547264,-0.11860087,-0.2756172,0.65108865,0.0028461006,0.44580656,0.3422214,0.20752491,-0.07874429,-0.3601551,0.06988876,0.52246433,0.25119466,0.029444588,-0.23400338,-0.2331483,0.05310286,-0.17265154,-0.021936476,0.6620703,0.5669571,-0.18188013,0.11140602,0.23455732,-0.018475065,0.067612454,-0.08281607,-0.120635256,0.022238731,0.0017591204,0.4364504,1.0219488,-0.27024406,0.2175344,-0.13571237,0.35999554,0.089981906,-0.4420831,0.6999234,0.343565,-0.18401454,-0.10675876,0.45570883,0.47010565,-0.4687535,0.44287303,-0.47957626,-0.12718399,0.5310668,-0.11353262,-0.35812095,0.16126165,-0.18490362,0.1476101,-0.7595647,0.32762343,-0.26533076,-0.4174659,-0.3915922,-0.049603067,-3.8515694,0.1398956,-0.17285861,-0.1842437,-0.29612857,0.006195843,0.24509202,-0.5791846,-0.6144725,0.21703562,0.1652498,0.46699792,-0.14851962,0.11045922,-0.25870693,-0.22179317,-0.22244112,0.2585536,0.21038903,0.2945057,-0.08726896,-0.41895765,-0.23428302,0.008225868,-0.5906166,0.27449352,-0.46410337,-0.3513947,-0.15242215,-0.3931536,-0.23410438,0.5703675,-0.3225301,-0.085994676,-0.2921111,0.10494093,-0.3447477,0.22254035,0.11416741,0.18488897,0.14967947,0.06839613,0.14784575,-0.22802208,0.5324587,-0.058637206,0.41213956,0.1409113,0.1410801,0.10253906,0.5304392,0.6974203,-0.098290905,0.966415,0.4381959,-0.036299918,0.21405987,-0.32155555,-0.26617393,-0.45107874,-0.294271,-0.06256776,-0.2717556,-0.47019365,-0.054917593,-0.40711254,-0.7090195,0.5557042,0.060840312,0.22483137,0.06889476,0.027203517,0.45551577,-0.1564664,0.021498501,0.0135631515,-0.17096357,-0.7077281,-0.075702175,-0.53402185,-0.53223354,0.046958838,0.65312994,-0.29720926,0.11372997,-0.14408459,-0.3856756,-0.05823654,0.22404914,0.077258185,0.25149578,0.4546101,0.12540898,-0.6036667,0.38075474,0.013028656,-0.2879107,-0.6296193,0.1848393,0.49033752,-0.737735,0.7626904,0.30381036,0.084352694,0.04966907,-0.5106502,-0.38707146,-0.10385688,-0.12447036,0.46541935,0.24059698,-0.93238646,0.41060778,0.24842668,-0.6105074,-0.6459769,0.3831711,-0.13664278,-0.19125652,-0.07213325,0.1543521,0.062569894,-0.06070137,-0.0898878,0.21066983,-0.33348745,0.21894158,0.042711955,-0.035518605,0.44253558,0.0039940476,-0.07527377,-0.65921193,-0.13518031,-0.60663253,-0.22406438,0.35375684,0.07037953,-0.067773595,-0.10530542,0.112886176,0.31732062,-0.1600896,0.10234673,0.029266758,-0.45231253,0.29243025,0.46113595,0.38393244,-0.4394779,0.51891744,0.0962935,-0.15022185,0.21707967,0.02351092,0.25803,-0.14573966,0.40570968,-0.16792855,-0.08849383,0.08951525,0.6423446,0.09126089,0.397585,3.0492034e-05,-0.0046177763,0.6191665,-0.111351915,0.06581028,-0.0267874,-0.48786005,0.12804806,-0.29884857,0.20740066,0.44954816,0.3764348,0.24942231,0.086048804,-0.30037516,0.010100378,0.40515545,0.08998845,-1.1282654,0.33843735,0.2812364,0.84179395,0.48489663,0.04242022,-0.16850328,0.79618424,-0.14673339,0.12794556,0.4426949,0.16031058,-0.59864235,0.6770856,-0.69830954,0.4295772,-0.089474715,-0.12079968,0.1963171,0.15535425,0.32257694,0.63148034,-0.273081,0.057531316,0.029623006,-0.2068248,-0.08314062,-0.3885859,0.009711964,-0.3387868,-0.22611248,0.6343755,0.51124734,0.32460502,-0.23663296,-0.030607352,0.09214566,-0.07312061,0.21425842,-0.10911473,-0.07190585,0.08560814,-0.5910838,-0.19097283,0.5167311,0.01496596,0.2600165,-0.26662022,-0.18973197,0.051127102,-0.31122538,-0.24762665,-0.06334441,-0.5934247,0.12753232,-0.0643085,-0.55831033,0.6023858,-0.19467118,0.13814159,0.14762965,0.06690857,-0.23654938,0.39714554,-0.12962146,0.870732,0.07348932,-0.16073449,-0.2419399,0.09146898,0.20695119,-0.110918395,0.040964477,-0.5238112,0.012852656,-0.28921565,0.553765,-0.13422312,-0.41211802,-0.012927549,-0.16951792,0.10520844,0.5767528,-0.12690993,-0.24534997,-0.11838848,-0.10193931,-0.42852765,-0.119766876,-0.17773566,0.26837882,0.30798417,-0.16094601,-0.02972272,-0.2785121,-0.17139909,0.56973255,-0.084776916,0.46399927,0.11336132,0.12135076,-0.12944646,-0.13813847,0.23547442,0.3987039,0.13596527,-0.085611,-0.34650797,-0.4121514,-0.2915782,0.0738552,-0.029721353,0.20224789,0.034159075,-0.20362285,0.7676566,-0.021178428,1.0885457,-0.026309604,-0.22740738,0.17347535,0.47758994,7.2717667e-06,0.010313119,-0.47423047,0.7879783,0.5237336,-0.18345866,-0.065024845,-0.5460774,0.014989836,0.16787294,-0.25097534,0.01232865,-0.09933412,-0.47835192,-0.23960577,0.14417885,0.15568545,0.31120053,-0.06868167,0.029151542,-0.021839648,0.0636378,0.31440333,-0.4432465,-0.27550676,0.24480319,0.2829602,0.029104132,0.088168845,-0.42008764,0.3351472,-0.3800207,0.16426395,-0.5104471,0.10007739,-0.30516115,-0.35495844,0.050853375,-0.091654085,0.40330508,-0.28391626,-0.38602123,-0.12865052,0.3269711,0.15233551,0.0579148,0.5827464,-0.21975438,-0.013486317,0.14006487,0.6179889,0.9231614,-0.5168711,-0.012440354,0.17509674,-0.31329235,-0.5546674,0.31041288,-0.24740903,0.063235596,-0.18548392,-0.28559095,-0.6228241,0.10742492,0.0075177634,0.04308966,-0.04964993,-0.50709265,-0.25028083,0.16979147,-0.3097129,-0.15378603,-0.2844918,0.2006885,0.7441582,-0.22973074,-0.2750619,0.1410249,0.12208887,-0.06778938,-0.36952108,-0.105839856,-0.09060122,0.21852544,0.06258638,-0.36672607,-0.14454456,0.2570566,-0.41741678,0.13313879,0.05841012,-0.3394909,0.11457939,-0.17143965,-0.078126565,0.9881595,-0.36649475,0.13241848,-0.5876394,-0.56045836,-0.932288,-0.36129162,0.347323,0.059598498,0.000962896,-0.3470723,0.011414788,0.02715925,-0.28055334,-0.16374008,-0.56785303,0.32447833,0.036397684,0.45899874,-0.27988955,-0.8013342,0.08552396,0.16735397,0.00833341,-0.6938682,0.54030627,-0.016234357,0.7609769,0.07086764,-0.0027398595,0.07000019,-0.23346269,-0.04806233,-0.29281515,-0.1771548,-0.6463708,0.13145694 -63,0.5644383,-0.36296162,-0.47653785,-0.017854078,-0.28796354,-0.022297187,-0.24422026,0.5193223,0.29902294,-0.44972038,-0.40672773,-0.23652376,-0.029117549,0.43581867,-0.26209155,-0.5348212,-0.111098245,0.2473049,-0.4432021,0.6282471,-0.3585835,0.18907206,0.06498896,0.5320499,0.31382793,0.049077492,0.15136151,-0.016355408,-0.15224878,-0.18295792,0.038274374,0.27658084,-0.5627942,0.22543654,-0.35283235,-0.5599796,-0.16515507,-0.53816664,-0.39862603,-0.7446725,0.30698463,-1.0180753,0.5185071,0.14708042,-0.30396912,0.32591608,0.05009846,0.2811267,-0.17252536,0.094811454,0.079998836,-0.32105446,-0.12232262,-0.23132391,-0.1591066,-0.1896015,-0.5521006,0.009689165,-0.3272943,0.070551105,-0.27972525,0.09474959,-0.20392346,0.1403623,0.1588752,0.32204628,-0.4566662,0.06126055,0.23357782,-0.11934436,0.42302996,-0.6007217,-0.2959315,-0.15545249,0.20746146,-0.25140586,-0.34825903,0.43746042,0.17363729,0.64640415,-0.029537493,-0.110689476,-0.32870927,0.00023027403,0.14664538,0.47784048,-0.2890424,-0.50002724,-0.23905157,-0.069239214,0.46797898,0.20750602,0.05665152,-0.25184685,-0.05515602,-0.13183199,-0.06657891,0.30455452,0.537919,-0.17197405,-0.2172786,0.2699661,0.5600324,0.29243734,0.052612323,-0.016008642,0.16972551,-0.6043116,-0.18627732,0.0114588905,-0.31230825,0.66557646,-0.13038619,0.19331542,0.514813,-0.18255022,-0.04292365,0.09843296,0.04525838,-0.14826916,-0.27109402,-0.4493142,0.45172122,-0.42878968,0.18237345,-0.12815307,0.6830939,0.13154586,-0.59509903,0.2968499,-0.5525121,0.16422777,-0.115219414,0.5172266,0.63295853,0.60069287,0.45147473,0.7891723,-0.55843866,0.030138774,-0.13532302,-0.23626933,0.069244824,-0.34008655,-0.12024905,-0.5195171,0.049136423,0.014487927,-0.11561608,0.32317644,0.55681974,-0.5006313,-0.0678399,0.1707939,0.71335757,-0.32020923,0.13524607,0.9675588,1.1533146,1.1950035,0.046272866,1.2094948,0.31617308,-0.33172426,0.04832166,-0.014345033,-0.86706483,0.32816362,0.4275989,-0.23611034,0.42164224,0.118486606,0.030477157,0.39931384,-0.6205883,-0.10748943,-0.21784952,-0.04742955,0.05573515,-0.03707375,-0.55707175,-0.25049925,-0.23308407,0.15598185,-0.1371741,0.3491079,-0.16750272,0.5856826,0.07656141,1.5221657,-0.1384553,0.0019707594,0.088734165,0.3798962,0.14827524,-0.11243807,-0.015256703,0.124648385,0.3286326,0.04616801,-0.5766792,0.047401275,-0.21083626,-0.55672646,-0.1574887,-0.19273324,0.012708387,-0.0041754437,-0.40705928,-0.2953114,-0.17661312,-0.24524167,0.4769633,-2.2918932,-0.19880536,-0.12487399,0.36559814,-0.26626843,-0.33213118,-0.16794644,-0.40599892,0.4193887,0.35704914,0.5110846,-0.77761537,0.28421086,0.54217106,-0.6764021,-0.13462652,-0.55074435,-0.14881153,-0.011777005,0.24420333,0.0061366386,-0.15111482,0.17514975,0.19986977,0.52508795,-0.019130405,0.15402253,0.29967737,0.35412338,-0.012988135,0.3224315,-0.097312875,0.4163851,-0.49410436,-0.25968868,0.44110784,-0.2486407,0.24304993,-0.21221526,0.14153694,0.5298875,-0.530117,-0.981468,-0.7606279,-0.16026412,1.1059904,-0.2576303,-0.5567068,0.19011375,-0.39517123,-0.32135245,-0.04465281,0.35992116,-0.18348339,0.037019912,-0.9568055,-0.087097876,0.11550112,0.15218651,0.12612565,-0.06283922,-0.46428862,0.7434677,-0.06384922,0.3712298,0.5611696,0.24255863,-0.10798367,-0.5905253,0.08552723,0.81230515,0.50805354,0.36063305,-0.3420216,-0.13670053,-0.14428283,0.011942471,0.09138838,0.41759843,0.66475856,-0.20432714,0.098893516,0.21849401,0.07384352,0.0404082,-0.13324276,-0.19754878,-0.2207115,0.0098432945,0.64785576,0.9320542,-0.1769732,0.15666829,-0.0035408267,0.24050872,0.060566287,-0.49623114,0.6010035,1.2707068,-0.1501094,-0.18822387,0.721732,0.55120623,-0.26226014,0.55585384,-0.74025065,-0.39668474,0.277359,-0.14657582,-0.55085117,0.16684422,-0.3996052,0.22682045,-0.91698754,0.26954767,-0.2039957,-0.21084599,-0.7237849,-0.0387745,-2.5301235,0.26058078,-0.33549944,-0.20658194,-0.20000295,-0.22105287,0.26141682,-0.7204033,-0.73102874,0.18845583,0.15889408,0.67301077,-0.01606582,0.2150421,-0.120947696,-0.2716518,-0.2887946,0.0012667179,0.25236315,0.28779283,0.15407321,-0.54765064,0.008478549,-0.11646088,-0.35819095,0.011873028,-0.63513726,-0.46599796,-0.20049141,-0.3956687,-0.31093055,0.3759184,-0.33167616,0.1390008,-0.15013263,-0.047273513,-0.14309919,0.16190612,-0.004776303,0.19605912,0.085664615,-0.0010907097,0.07176073,-0.124896325,0.2951806,0.06898757,-0.0062420964,0.38740045,-0.36767173,0.102589354,0.54628134,0.750692,-0.2478826,0.9114647,0.7172074,0.013948219,0.15311754,-0.22333561,-0.32794052,-0.68822765,-0.3322053,-0.124194615,-0.45374322,-0.46578,0.013801707,-0.33860132,-0.9920396,0.6279994,-0.02941574,0.26121646,0.0024094325,0.12640014,0.5853204,-0.31728497,-0.082426354,-0.032766562,-0.13121943,-0.5861622,-0.3449485,-0.7257276,-0.50943786,0.12124883,1.0708951,-0.11751579,0.11873715,0.3185561,-0.26268217,0.108782224,0.24085715,-0.17021786,0.055065606,0.62030095,0.2027323,-0.6457153,0.47496074,0.2690793,-0.23877956,-0.6749878,0.32434013,0.5999247,-0.60423505,0.5160849,0.55256164,-0.07889251,0.011782174,-0.5551694,-0.24408828,-0.25998262,-0.25719187,0.43945822,0.4496434,-0.7097308,0.45320076,0.44075856,-0.41252735,-0.8258273,0.61813635,0.019400101,-0.31977066,0.058588833,0.2979412,0.21678042,-0.05322137,0.08566083,0.29398748,-0.3960747,0.32625452,0.11186159,-0.06824453,-0.014441214,-0.20258006,-0.08898973,-0.9832897,0.11093204,-0.5639729,-0.2505117,0.25297725,0.1466683,-0.049175996,0.09247895,0.21659067,0.31833082,-0.27698478,0.121251866,-0.20557916,-0.35146046,0.4440207,0.522814,0.4821919,-0.3161504,0.61128885,-0.08115787,-0.09703774,-0.0884334,-0.020318462,0.42984417,0.10963261,0.32689452,0.07067694,-0.2848985,0.1083089,0.5615393,0.1620269,0.24221346,0.053583194,-0.08463396,0.47916013,0.27604538,0.2950128,-0.28320166,-0.45370102,0.0035869288,-0.34450993,0.078876905,0.3912994,0.17553568,0.37477508,-0.119027786,-0.33435866,0.08965208,0.063497536,0.08450316,-1.3959051,0.2218132,0.12477834,0.71219766,0.7338629,-0.12639226,0.22556143,0.7105395,-0.2872079,0.0145923365,0.43329033,0.04557277,-0.538042,0.4555954,-0.69399834,0.39699546,-0.0743774,0.004118547,-0.013897197,0.17946169,0.41833302,0.62880814,-0.14082499,0.122386634,-0.08824212,-0.3335913,-0.017067844,-0.488026,-0.015826123,-0.6493434,-0.26983896,0.8328465,0.5395322,0.52380544,-0.18645872,-0.0121797025,0.04870608,-0.16310842,0.2322948,0.1204374,0.012052255,-0.17724381,-0.7116766,0.0011566089,0.5652794,-0.054173835,0.106246114,-0.12062214,-0.3938693,0.20495358,-0.22101375,-0.25095996,-0.073300526,-0.8317217,-0.043965995,-0.45682207,-0.34992787,0.46622178,-0.13711666,0.17251457,0.23931351,0.055891525,-0.35968867,0.10832178,-0.0027952364,0.8707965,0.19034608,-0.36690468,-0.17906554,0.22855102,0.28823003,-0.14920892,-0.043491345,-0.029528797,-0.03717679,-0.4122055,0.6543508,-0.057145063,-0.16464183,0.30530906,-0.124099635,0.12931572,0.5863183,-0.22578302,-0.3486938,0.059136264,-0.1077325,-0.3763897,-0.44966632,-0.24586856,0.20587459,0.23573706,0.025827365,-0.030643625,-0.17620876,0.07482424,0.5638322,0.0030662033,0.41606882,0.36573654,0.058698494,-0.49694106,-0.095621124,0.25254458,0.4682185,-0.030632725,-0.27504718,-0.33595258,-0.6830235,-0.3037985,-0.023685813,-0.17967473,0.38903278,0.0048007295,-0.22193249,0.833777,0.041547913,0.9951762,-0.009012991,-0.42906687,0.097534575,0.4889048,-0.07132791,-0.17829935,-0.24323665,0.8500662,0.61679596,-0.20859882,-0.19306083,-0.35414553,-0.02822583,0.12224256,-0.17788665,-0.0540615,-0.13638362,-0.61099494,-0.33669424,0.2613969,0.3359559,0.13929768,-0.1697686,0.18791778,0.2136976,0.01829358,0.36695954,-0.30258825,-0.27328363,0.35423997,0.27911666,-0.035508495,0.06540897,-0.33545905,0.32414538,-0.4156219,-0.1326055,-0.37434763,0.09738069,-0.21982656,-0.26642507,0.21052286,-0.064049914,0.26644167,-0.3782267,-0.22985804,-0.30034462,0.58642375,0.028037557,0.0591593,0.5262194,-0.32900456,0.05877467,0.031313412,0.35721296,1.1335245,-0.37669638,0.02296399,0.34026474,-0.49458757,-0.39820218,0.43788454,-0.3157224,0.14492856,-0.005584019,-0.32196093,-0.8034783,0.14178328,0.14630677,0.09580142,0.13501331,-0.7034093,-0.0073366635,0.33481193,-0.32502103,-0.27423677,-0.3688174,-0.018443767,0.43831247,-0.22053044,-0.31229058,0.19608535,0.17975049,-0.117096014,-0.39994472,0.013711386,-0.48291436,0.29936394,0.12855627,-0.38745373,-0.15193379,0.070796914,-0.4993927,-0.12901714,0.16787441,-0.37742668,0.091029115,-0.5715399,0.102027275,1.0239893,-0.23534577,0.25407258,-0.55894935,-0.4386902,-1.0630082,-0.45725083,0.6106438,0.35430264,0.123013176,-0.6288868,0.13996015,-0.013839649,-0.25105473,-0.15502355,-0.30515787,0.627717,0.23861834,0.44198236,-0.10884041,-0.6568293,0.16876854,0.111418284,-0.24315922,-0.4279403,0.45245358,0.15410607,1.0056716,0.07220713,0.12746035,0.19504984,-0.7282976,0.12918241,-0.0659541,-0.26900885,-0.59006035,-0.042633813 -64,0.9141611,-0.19994125,-0.8286437,0.006494279,-0.25755203,-0.022490982,-0.36629075,0.39115816,0.44058037,-0.24820405,-0.17499407,-0.13656949,-0.054576673,0.37461045,-0.07461303,-0.64796937,0.14341387,0.0864788,-0.44481677,0.70743793,-0.39461246,0.2947706,-0.07832579,0.64174974,0.3075053,0.36644393,0.38249838,0.17563044,-0.21908744,-0.33450553,0.17431745,0.14558631,-0.7094154,0.29271856,-0.19239691,-0.23022777,0.028976921,-0.2538509,-0.44788694,-0.9106338,0.42144638,-0.67827827,0.4693187,0.1625469,-0.3901667,-0.085308775,-0.0045568715,-0.022975024,-0.025400363,-0.12585983,0.0986511,-0.2931453,0.12808453,-0.293272,-0.17905872,-0.3364076,-0.6462529,-0.008131871,-0.54229486,-0.048058417,-0.35506365,0.1652689,-0.41840696,-0.01592649,-0.13440639,0.802554,-0.38875958,0.08903175,0.1253986,-0.33263734,0.26346734,-0.6892984,-0.51969504,-0.14413644,0.10600621,0.29583344,-0.24036549,0.2978046,0.23042287,0.3225317,0.11161932,-0.11389598,-0.5295076,-0.20428738,0.28237465,0.5134487,0.0025313245,-0.45677853,-0.33590764,-0.25424278,0.28775072,0.18498716,0.3080176,-0.32203883,-0.01680779,-0.04565888,-0.22274694,0.6767562,0.5786157,-0.26143697,-0.09956716,0.17284915,0.48144138,0.2495168,-0.26344448,-0.009205965,0.0075074593,-0.5270817,-0.0783727,0.035078164,-0.18419935,0.6804076,-0.09515159,0.27957967,0.6889067,-0.48384893,-0.19866723,0.177169,0.110777564,-0.15970537,-0.1743916,-0.035852328,0.241536,-0.29480407,0.04761249,-0.24302138,0.88865286,0.14674371,-0.6267484,0.30410796,-0.53423196,-0.055038624,0.028845044,0.6437679,0.4996988,0.44403192,0.40283754,0.84983927,-0.32376182,0.1090914,-0.019179918,-0.36641154,-0.0058632884,-0.29884422,0.12557207,-0.4186048,-0.1095456,-0.059105378,-0.2438105,-0.00039712398,0.71119463,-0.4407717,-0.23120192,0.19776018,0.77576476,-0.18727873,-0.087681405,0.8312276,1.2409251,1.2260845,-0.050481893,1.096384,0.1753672,-0.075549714,-0.15123935,-0.16171743,-0.7994683,0.34337413,0.2585334,0.15174797,0.36438388,-0.065759234,-0.101819545,0.17881063,-0.22247495,-0.050665535,-0.0029192017,0.39503664,0.21970683,-0.08432364,-0.40639898,-0.31886917,0.047057245,-0.052520957,0.13461421,0.25178316,-0.2699119,0.6243976,0.00063671515,1.4994718,-0.23267849,0.037638646,0.13882953,0.80222905,0.28512493,-0.27266565,0.088772535,0.3822509,0.0039896863,0.24688354,-0.5065555,0.10273949,-0.29850578,-0.66892326,-0.17802931,-0.40301782,-0.014932394,0.06643461,-0.24346623,-0.31825736,-0.026438484,-0.2862593,0.2400143,-2.7303,-0.2516708,-0.0698074,0.34614453,-0.2167117,-0.28067204,-0.023818986,-0.5877187,0.21151473,0.40299255,0.52647233,-0.74402934,0.21812886,0.6427077,-0.6641282,-0.15691677,-0.42223147,0.18557675,-0.17222382,0.5853561,-0.11291348,-0.075487964,-0.06765329,0.20273243,0.6858477,0.17945403,0.21157211,0.22576554,0.36144644,-0.2304046,0.29676414,0.026549097,0.4209561,-0.30928415,-0.21013692,0.647259,-0.5015334,0.14586796,-0.27025792,0.137499,0.52456754,-0.36859232,-0.78521955,-0.56089276,0.046938166,1.0222543,-0.07352629,-0.88462037,0.12422189,-0.072978646,-0.28915778,-0.015219982,0.45523813,-0.20881365,0.11893975,-0.6103535,-0.040651638,-0.122618355,0.16772453,0.12127491,0.07256229,-0.4359376,0.76961803,0.104045406,0.33119282,0.14964083,0.2818629,-0.50188094,-0.6710401,0.24242964,0.9371259,0.38911167,0.18681653,-0.3749545,-0.1845381,-0.20789388,-0.1785844,0.012127172,0.65569794,0.65408635,-0.18128411,0.16977698,0.5196242,-0.080538005,0.020694735,-0.06903361,-0.3939102,-0.14180806,-0.07270683,0.5732016,1.0582137,-0.11366423,0.42346293,0.021404423,0.4952157,-0.19401005,-0.45014864,0.6906341,1.1918494,-0.22523433,-0.28245336,0.48622534,0.34167057,-0.6955647,0.62243736,-0.6679255,-0.44350636,0.4026888,-0.100426584,-0.43023297,0.16621701,-0.40947926,0.07231671,-0.7038902,0.43764356,-0.46575582,-0.27187383,-0.45127928,-0.27240196,-3.402629,0.24713136,-0.2942681,-0.2919413,-0.20902489,-0.02014129,0.13560802,-0.58684385,-0.5581203,-0.012544329,0.11918103,0.7192935,-0.16873105,0.08278961,-0.2073493,-0.60950375,-0.52426153,0.2210021,0.09266661,0.5067991,0.0105622,-0.38827127,0.17238614,-0.12700647,-0.39936903,0.046971604,-0.38152674,-0.67151654,-0.34000793,-0.5024262,-0.36205247,0.625179,-0.13054162,-0.0014730967,-0.31928155,0.040868375,0.02007166,0.26805905,0.060538735,-0.030384,0.14078596,-0.12822291,-0.026631359,-0.3127434,0.19777046,-0.12096544,0.3826349,0.5623571,-0.11108319,0.16020149,0.50412107,0.41591474,-0.1839694,0.8334983,0.12808307,-0.0049326946,0.1764831,-0.14170438,-0.25887728,-0.58569866,-0.21687089,0.17794248,-0.40258414,-0.48515537,-0.2143603,-0.42908388,-0.7290395,0.68487525,0.040378764,0.39335963,0.04315289,0.3784122,0.46455806,-0.1255016,-0.05781394,0.105960615,-0.07072893,-0.6336641,-0.2470836,-0.6799438,-0.5623888,0.19185522,0.79905033,-0.32982123,-0.29054543,0.13331625,-0.25893447,-0.040394858,0.07061545,-0.010493489,-0.11641446,0.47022927,-0.005341154,-0.740559,0.47054598,-0.14780793,0.12666829,-0.6423279,0.30073473,0.5181011,-0.5868467,0.54229707,0.28534022,0.29227343,-0.262804,-0.53888696,-0.0749971,0.13203417,-0.12946378,0.49694678,0.34506795,-0.7924561,0.39463055,0.10494911,-0.44238248,-0.67063373,0.45399702,-0.07870837,-0.37397888,-0.21016686,0.47696635,0.024827518,0.0012974349,-0.4701328,0.411164,-0.45426,0.007155345,0.2661435,-0.21527973,0.4435682,-0.111453585,-0.35484773,-0.6481505,0.043826584,-0.5255404,-0.376469,0.3071618,0.0282832,-0.052542593,0.20479853,0.19629198,0.37703034,-0.13438758,0.13674685,-0.017692603,-0.11372466,0.644604,0.46693546,0.93380475,-0.49763924,0.62593883,0.065928504,-0.07814992,0.14165774,0.031282313,0.24145573,0.14496537,0.46864802,0.37215343,-0.08410701,0.11833433,0.7150427,0.19450739,0.6631164,0.13219298,-0.27528617,0.30575502,0.122235365,0.42080307,-0.06723183,-0.684151,-0.08104536,-0.39990714,0.032977816,0.61211705,0.12361514,0.34839392,0.035690185,-0.3934726,0.09719856,0.027934331,-0.17955408,-1.3106316,0.1881063,0.1454106,0.78175616,0.5361234,-0.045914147,0.033357307,0.6387894,-0.053586546,-0.014421707,0.25208628,0.12220534,-0.5098521,0.51608646,-0.67430365,0.4696248,-0.1386216,-0.11662029,0.09895532,-0.12557766,0.5096345,0.76076156,-0.17690729,-0.0674224,-0.03605411,-0.31525767,0.117401645,-0.50737983,0.22113603,-0.58354944,-0.34028307,0.6912046,0.56387603,0.23065235,-0.18113905,-0.03438249,-0.015225548,-0.0021545703,0.30224186,-0.06421345,0.15257032,-0.080984265,-0.6277636,-0.17939575,0.59157383,0.19757575,0.1403384,-0.06816565,-0.14004731,0.2841783,-0.09239416,0.027180858,-0.05523467,-0.7763977,0.0037152905,-0.081138104,-0.5512049,0.54666215,-0.024130289,0.30499843,0.22111748,-0.0075230817,-0.31264612,0.2772779,0.12832162,0.81563306,0.11093206,-0.06485872,-0.4963056,0.08008209,0.38015035,-0.34272978,-0.11373857,-0.09709076,-0.06561637,-0.58530813,0.47599375,-0.09715677,-0.27901906,-0.13720241,-0.12233475,-0.094417535,0.6904351,-0.04194153,-0.18133023,-0.0016255653,-0.06382937,-0.38136452,-0.012703606,-0.0666027,0.06523164,0.19911297,-0.4303676,-0.15075693,-0.07270588,0.3205139,0.11876027,-0.015335575,0.28606465,0.54871696,0.15118681,-0.545723,-0.13522016,0.26170957,0.64730334,0.27364925,-0.12529565,-0.32447523,-0.61186653,-0.48364434,0.22486773,-0.013150929,0.14853057,0.26339653,-0.2988113,0.66316485,0.2491258,1.2796701,0.0766478,-0.31619975,0.21349746,0.6629621,-0.025930222,-0.04302972,-0.49864715,1.0946242,0.44986597,-0.5282277,-0.16986677,-0.4150591,-0.08076187,0.096200384,-0.27853754,-0.12047418,-0.17895964,-0.6444044,-0.029377524,0.14397305,0.4133236,0.03862101,-0.2522321,0.069580525,0.3363784,0.21593533,0.27738562,-0.3991521,-0.30449525,0.43295622,0.2343739,-0.028824527,0.09744103,-0.2839909,0.32529718,-0.6343291,0.19381097,-0.28552532,0.24762832,-0.1455434,-0.5580602,0.3849979,0.15560557,0.51156795,-0.47949344,-0.3914992,-0.3712859,0.40990108,0.47612512,0.25855306,0.55430984,-0.23508972,-0.058681723,-0.028557392,0.63459957,1.290111,-0.13278459,-0.048230033,0.37517846,-0.58357227,-0.8072485,0.23432605,-0.4594887,0.25086117,-0.17750613,-0.2869099,-0.75083345,0.3020808,0.14283046,-0.13030118,0.05093259,-0.6066538,-0.17731817,0.07221144,-0.37882847,-0.19182979,-0.3382015,-0.021525493,0.64259434,-0.23928474,-0.37050307,0.06770074,0.18352279,-0.20354074,-0.67050624,-0.16165069,-0.29835007,0.40709895,0.054740198,-0.18185686,-0.19766283,0.11770434,-0.65606064,0.19027695,0.16286197,-0.3742027,0.13087717,-0.39931896,-0.015363789,0.77940905,-0.34121287,0.116874054,-0.30682182,-0.6010692,-0.80938613,-0.31862643,0.34975654,-0.09398857,0.0096959425,-0.6909256,-0.15455352,-0.45158243,-0.117452376,-0.079173155,-0.4052758,0.3677875,0.023089183,0.38842976,-0.0576689,-0.8511754,0.2833645,0.41264006,-0.11655641,-0.6817612,0.38125175,-0.17864862,0.76623225,0.162596,0.087588064,0.36692393,-0.581081,0.2574828,-0.19623262,-0.35681552,-0.5099427,0.16158713 -65,0.4148545,-0.13402742,-0.54694146,-0.22569968,-0.15257087,0.035973713,-0.178461,0.658877,0.2340012,-0.42058846,-0.023821604,-0.034615632,-0.008453162,0.39135602,-0.07643113,-0.68137795,-0.03636203,0.10279051,-0.2999903,0.40346763,-0.46003684,0.31680745,-0.056865755,0.48102006,0.20375668,0.3005389,0.030248333,0.04878049,-0.13763481,-0.13541053,0.16613021,0.22283153,-0.51107997,0.17783524,-0.055490986,-0.32297885,-0.04656483,-0.46058807,-0.27038527,-0.6882914,0.2422604,-0.67799383,0.5323916,0.12261663,-0.34856468,0.076698095,0.1937904,0.44058454,-0.18252043,-0.003548932,0.22951606,0.016686888,-0.03712694,-0.10816501,-0.2429428,-0.43434733,-0.5848694,0.13079017,-0.41073212,-0.18468451,-0.0780832,0.22417209,-0.2734951,0.019237367,-0.2293553,0.50018233,-0.36318198,-0.23426676,0.388607,-0.284221,0.3363443,-0.51237553,-0.08463747,-0.15189809,0.09739961,-0.1685236,-0.23550552,0.24378434,0.2630431,0.54720515,0.04347981,-0.31290835,-0.40185001,0.06109933,0.11959456,0.37005743,-0.2883969,-0.3962072,-0.19663745,-0.044279672,0.104724884,0.18623252,0.16958493,-0.32360637,0.0730337,0.19140495,-0.30287153,0.23955414,0.4541143,-0.33188757,-0.1400191,0.22112055,0.5558032,0.09279861,-0.10582374,0.10724922,0.080421835,-0.5326261,-0.25797865,0.031902943,-0.07425152,0.29975,-0.06696184,0.08108164,0.62602437,-0.14510186,0.04401578,0.066115595,-0.015617386,-0.012403492,-0.50323504,-0.3236789,0.21171592,-0.39145285,0.079245314,-0.26420647,0.78600043,0.19046292,-0.68759924,0.28537762,-0.59326583,0.13455711,-0.16457182,0.4190883,0.6822627,0.3663191,0.10682605,0.8045447,-0.42587292,0.090635434,-0.21063472,-0.2589634,0.21398811,-0.23355238,-0.067198,-0.40807584,0.07199694,0.006774314,-0.19961214,0.07141889,0.33719638,-0.5408774,-0.07198116,0.2114353,0.78655994,-0.2695154,-0.052276805,0.6811354,0.9531718,0.8794568,0.051449142,1.1738802,0.20343095,-0.18293165,0.31551132,-0.3060444,-0.64803535,0.37990707,0.34874874,-0.34987572,0.20489794,0.07375378,0.08944488,0.5020447,-0.35818425,0.13028885,-0.15497014,0.2310352,0.062557146,-0.16727714,-0.40530497,-0.17886448,0.06854816,-0.047092404,0.12300437,0.1946573,-0.23014012,0.23972252,-0.038424063,1.6659015,-0.109807536,0.04926068,0.09196308,0.38555536,0.27249318,-0.29699633,-0.08691704,0.17340733,0.16603222,-0.016641349,-0.5249328,0.1051582,-0.21305564,-0.49647802,-0.24355508,-0.29973856,0.040231194,-0.07110059,-0.46317083,-0.12526362,-0.12033205,-0.20620571,0.35490134,-2.6712415,-0.1719091,-0.032475147,0.21497343,-0.4218156,-0.47604284,-0.1506159,-0.3964912,0.4852899,0.37396345,0.39775798,-0.51956505,0.3340666,0.36129844,-0.4111378,-0.080742225,-0.63576114,-0.077057846,-0.076602526,0.18647505,0.08672233,-0.20657727,-0.1346472,0.15389816,0.51927716,-0.08262748,0.11133957,0.17496958,0.236629,0.026429527,0.5709951,0.0050026313,0.64479893,-0.369105,-0.28570908,0.4171137,-0.4511315,0.11068036,0.13527216,0.13423322,0.20533052,-0.5510494,-0.89151657,-0.67300606,-0.3552651,1.0383744,-0.032330886,-0.3067196,0.34290186,-0.32838544,-0.30927113,0.113109216,0.40322807,-0.120160505,0.020319683,-0.8539082,0.06072558,-0.16094078,0.18132073,-0.06842889,0.004906225,-0.4416045,0.58306754,-0.051340614,0.43690357,0.43234113,0.16994146,-0.26661408,-0.50903326,0.009089251,1.1313999,0.31280577,0.17761102,-0.17909,-0.21751404,-0.42522463,-0.062321123,0.1257467,0.45773113,0.7844954,-0.023605354,0.0028565517,0.2118423,-0.08653786,-0.036609933,0.0053906054,-0.47690922,-0.1261672,0.11812617,0.5719588,0.42274237,-0.16073026,0.42150083,-0.12371229,0.528228,-0.23436533,-0.45142803,0.51282746,0.7257965,-0.2288997,-0.28375185,0.66787493,0.3910564,-0.25018686,0.51880914,-0.5748014,-0.33744267,0.3031748,-0.15684825,-0.4258525,0.14839055,-0.34219116,0.1887899,-1.116729,0.1396776,-0.36476675,-0.29834053,-0.63357717,-0.34344122,-3.42674,0.1698774,-0.10934167,-0.111669466,-0.07988453,0.100156225,0.3635691,-0.55728644,-0.68793267,0.032315355,0.06949189,0.6718871,-0.032554932,0.05669033,-0.35574844,-0.16899493,-0.21129732,0.1833071,0.23147832,0.293611,0.04895379,-0.48718962,-0.20509548,-0.13943958,-0.5023753,0.112392664,-0.6963959,-0.488195,-0.2341068,-0.65040904,-0.2518399,0.7384604,-0.46388504,-0.035744485,-0.07514555,0.09088908,-0.021212898,0.41617328,0.13061275,0.16089767,0.2472602,-0.19305763,-0.043041993,-0.34144947,0.16496871,0.12832996,0.35325563,0.37957734,-0.12002052,0.28192344,0.65593916,0.7362937,-0.1075939,0.7271601,0.6442245,-0.091092564,0.41404018,-0.37658226,-0.20791511,-0.33751997,-0.29716057,-0.042248003,-0.39602864,-0.34125578,0.026023876,-0.3695402,-0.797405,0.5874094,-0.04737512,-0.11550415,0.01578787,0.12455379,0.32600743,-0.26450965,-0.14227404,-0.17834142,-0.081337325,-0.49019766,-0.4227204,-0.4901904,-0.5938548,0.11846992,1.1462299,-0.15769139,0.14168224,-0.0669103,-0.15420817,0.011424263,0.015524489,0.051925067,0.18977779,0.49033305,-0.09064446,-0.5969859,0.31874925,-0.08556002,-0.1844758,-0.49955654,0.286771,0.71178335,-0.6507407,0.6026183,0.24636616,0.25498575,0.015310508,-0.5051448,-0.045895945,0.14280063,-0.19123335,0.52413034,0.21279524,-0.73409873,0.4806232,0.48661882,-0.19585648,-0.7173922,0.35116705,0.0023292662,-0.09375518,-0.22848235,0.36260137,0.0778249,0.031351145,-0.13982083,0.23355907,-0.46156958,0.042554602,0.36207193,-0.06023748,0.51987094,-0.27729163,-0.1558044,-0.69420683,0.07541139,-0.6027455,-0.3779544,0.22145413,0.0033267934,0.060890984,0.27117568,0.10756355,0.38377082,-0.21577808,0.07359593,-0.10358407,-0.21204135,0.388966,0.40464973,0.42711315,-0.5364942,0.43443954,0.032740917,-0.031591695,-0.030843934,-0.09306963,0.6197925,-0.03766087,0.38332638,-0.09036447,-0.024551146,0.26692432,0.7168659,0.11643708,0.3131777,-0.0063527822,-0.22158664,0.027903546,0.08814451,-0.019416343,0.08262139,-0.5544337,0.037732687,0.008505662,0.19638588,0.4716151,0.2044533,0.3610683,-0.015250009,-0.31742173,0.08862107,0.09608089,-0.13637324,-1.2186702,0.50723296,0.12731676,0.7380329,0.5381816,0.09358147,0.16509934,0.54759574,-0.20026693,0.2601014,0.36564636,-0.19507615,-0.44665357,0.44985232,-0.704776,0.42784518,0.0057447064,0.061434448,-0.025447067,-0.08890771,0.6133419,0.8061342,0.0068609994,0.21493095,0.024824237,-0.16626193,0.13107662,-0.32609144,-0.017474007,-0.52280796,-0.21216975,0.7783093,0.37137288,0.32966283,-0.20144172,-0.16095276,0.22925347,-0.05594768,0.12384108,-0.19733232,0.0015315593,0.15654577,-0.54699445,-0.4121624,0.5553462,0.16532545,0.16233319,-0.06419364,-0.22767334,0.22219685,-0.004695344,-0.009464113,-0.09472411,-0.5702635,-0.031998143,-0.49425256,-0.31917003,0.36121902,-0.22301473,0.19544844,-0.0043171686,0.14798927,-0.38057706,0.5585975,0.0093244715,0.8119815,-0.114962436,-0.051714294,-0.31871903,0.25648203,0.18936959,-0.29867104,-0.2527268,-0.4557408,0.051215455,-0.5926673,0.36665574,-0.050016165,-0.41495958,0.11548117,0.09380791,0.044511557,0.5046269,-0.2267652,-0.0024620255,0.21253633,-0.17266487,-0.12112587,-0.21189107,-0.084880725,0.32497156,0.039949782,0.0048181536,-0.07855089,-0.15836082,-0.06497602,0.47331542,-0.10060071,0.31351152,0.45232385,0.07984359,-0.32208014,-0.028944714,0.19342707,0.41644987,0.016734008,0.0027117212,-0.25762656,-0.19712375,-0.3650442,0.20165655,-0.24732502,0.261013,0.14530036,-0.38114056,0.81625944,0.2030339,1.3950683,-0.014466391,-0.3792341,0.072916,0.38420704,-0.052813053,0.047124393,-0.57870966,0.8857718,0.54151696,-0.16509946,-0.07376704,-0.45900685,-0.114966735,0.1306589,-0.25076324,-0.14758635,-0.14157146,-0.73985046,-0.38403437,0.31832898,0.33420917,0.113581374,-0.102843,0.16796225,0.04931992,0.008044219,0.23915964,-0.40036044,0.038989704,0.24343345,0.43895614,0.011223308,0.14479169,-0.55291694,0.37022573,-0.6290896,0.09261338,-0.25149906,0.18318509,-0.09638414,-0.3981134,0.1691027,-0.08386977,0.31160983,-0.30729225,-0.33579686,-0.14685999,0.6102728,0.025894912,0.19635439,0.706843,-0.26086596,0.097947374,0.079857476,0.56301254,0.99656457,-0.21628462,-0.015213559,0.33942568,-0.09482349,-0.6749228,0.23440515,-0.30541566,0.14332566,-0.050411534,-0.40508258,-0.53534406,0.3691602,0.27549848,-0.14071473,0.013166046,-0.50971407,-0.19159333,0.24945755,-0.21733984,-0.33857286,-0.20382999,0.20830801,0.6490822,-0.23456435,-0.38539657,0.2317031,0.3520738,-0.22185971,-0.4016733,-0.11902857,-0.25746787,0.25457686,0.19900016,-0.27869797,-0.08087627,0.11166116,-0.4500981,0.12102308,0.22408298,-0.34790972,0.07228012,-0.23226914,-0.1311486,0.88575447,0.15705656,0.25877327,-0.58607465,-0.46112493,-0.9145735,-0.33558026,0.45418376,0.024214914,0.0062610805,-0.6408141,-0.080848485,-0.1477519,-0.15815446,0.09115179,-0.4581807,0.3848402,0.035434164,0.50557125,-0.1323215,-0.6084611,-0.01693519,0.28618792,-0.12666294,-0.63446915,0.38538736,-0.061534483,1.0020002,0.057617184,0.06786887,0.41278133,-0.52620834,0.0037786365,-0.29464823,-0.1337303,-0.7141778,0.074437335 -66,0.43715465,-0.24216722,-0.7398023,-0.16327138,-0.37106812,0.19870126,-0.32975903,0.29291037,0.45109197,-0.5252662,-0.051711816,-0.19084032,0.03476955,0.4124922,-0.17409225,-0.8486654,0.02433155,0.25949275,-0.6968455,0.7738132,-0.27056962,0.48803732,0.21621692,0.27545404,0.03613757,0.15490519,0.3451264,-0.29869533,-0.37067306,0.087345876,-0.00855808,-0.14587502,-0.37912166,0.24307506,-0.037852433,-0.23166835,0.2760925,-0.2975926,-0.34272185,-0.7764464,0.42639554,-0.8396506,0.6731863,-0.076973766,-0.23196892,0.119291656,-0.06836288,0.21575552,-0.19869171,0.06702695,0.120703764,-0.41643688,-0.5082314,-0.3223071,-0.27937457,-0.64873546,-0.62026334,-0.15331194,-0.64928645,0.021972923,-0.4318408,0.2027394,-0.3218834,-0.10622602,-0.016156971,0.49105677,-0.38565412,-0.11079997,0.1321022,-0.30347016,0.24059777,-0.8477125,-0.15569365,-0.031294864,0.24851198,0.20907311,-0.15080677,0.53383464,0.34054533,0.5007127,0.19289003,-0.31002346,-0.37377894,-0.12698694,0.3831196,0.3761247,-0.10762002,-0.55310035,-0.08959045,-0.100097805,0.37419152,-0.08016158,0.101112425,-0.32529283,0.07280621,0.07710599,-0.22889926,0.4912621,0.5093588,-0.21676867,0.16100088,0.4174058,0.40833697,0.14022298,-0.10569966,-0.10743564,-0.17122047,-0.52101725,-0.19979377,0.05611877,-0.22810094,0.7755154,-0.2137665,0.16221209,0.54029626,-0.07076109,-0.19158214,0.13283348,0.13789006,0.02216427,0.10568383,-0.09789518,0.36032942,-0.58349,-0.17666884,-0.42780367,0.62904674,0.155889,-0.7878122,0.35468373,-0.45818344,0.09659282,-0.11870428,0.6625287,0.7571068,0.7743523,-0.0044440925,1.008103,-0.47286713,0.13966355,0.01529377,-0.48074758,0.2090438,-0.11277881,0.29443836,-0.5619287,-0.10203865,0.09089091,-0.21706285,-0.0032332938,0.66514117,-0.30123612,-0.13200723,-0.020996107,0.8746898,-0.39289436,-0.20460589,0.5797062,1.1302563,0.7529113,0.066258125,1.43924,0.27064493,-0.45806864,-0.16172251,-0.2442772,-0.8375428,0.3165829,0.27389094,0.052568544,0.46645534,0.09621039,-0.044628058,0.4042375,-0.39343813,-0.11821136,-0.080182604,0.42424843,-0.05200617,-0.22952783,-0.443693,-0.17007808,-0.06655013,0.033022314,0.30656612,0.38620445,-0.023842266,0.51702386,-0.009424557,1.3598348,-0.04378836,0.0452688,-0.026723152,0.32143128,0.2795452,0.091682434,-0.1435615,0.35679388,0.37296793,-0.09027394,-0.62851703,-0.016643971,-0.40578023,-0.60921556,-0.30023026,-0.15026732,0.18009426,0.0078826295,-0.11270393,-0.28908336,0.0776173,-0.569406,0.31809768,-2.0698566,-0.19937159,-0.07712328,0.40244666,-0.13457878,-0.20939438,-0.23783521,-0.5718505,0.46939453,0.37471175,0.52960104,-0.5725422,0.31272975,0.6177729,-0.6390312,-0.237221,-0.44676766,0.029005425,-0.0029561769,0.38094223,-0.13041689,-0.48107925,0.06001799,0.07837799,0.546689,-0.03986669,0.06334696,0.45935702,0.43621543,-0.030469676,0.3556848,-0.204251,0.5405356,-0.26650453,-0.016078664,0.20725703,-0.28760847,0.24771757,-0.46491042,0.23846322,0.5502421,-0.44076428,-0.74646956,-0.36250058,0.028522486,1.2043008,-0.43322852,-0.5984662,0.22592111,0.25976324,-0.17066891,0.22028221,0.5106206,-0.18678473,0.034787606,-0.6654466,0.097703815,0.12383231,0.20034425,0.13965312,0.11229583,-0.44691488,0.5832366,0.026264722,0.5223901,0.40496215,0.36989462,-0.18555216,-0.43635607,0.3262861,0.9543348,0.18917787,0.16407843,-0.3016627,0.025576582,-0.40145817,-0.21285428,-0.055625085,0.40465376,0.89563084,-0.1048921,0.057172477,0.26036152,-0.14854287,0.08531212,0.028064495,-0.58533674,-0.24649303,-0.0013527138,0.42117724,0.8647898,-0.084014,0.42676213,-0.019114727,0.3596867,-0.13598238,-0.5389583,0.9536508,1.050999,-0.3023843,-0.12998152,0.6932034,0.16336653,-0.3022789,0.6824875,-0.71949786,-0.54564816,0.58825356,-0.09547905,-0.46354163,0.14433272,-0.3880987,0.085408844,-1.076549,0.41187432,-0.17565636,-0.41063228,-0.5959303,0.10456789,-3.1632805,0.11630296,-0.4109234,-0.09503964,-0.1715213,0.09519658,0.14230092,-0.5810148,-0.54151255,0.19731502,0.27873352,0.7143771,-0.029515183,0.061674833,-0.21026815,-0.31770355,-0.08174429,0.14191456,-0.050192893,0.19772618,0.012089153,-0.6949732,0.09275923,-0.32281855,-0.31930128,0.11202681,-0.40095642,-0.23235364,-0.3483437,-0.66008633,-0.4387703,0.69729334,-0.50456303,0.044878554,-0.25907955,0.17841922,0.13280953,0.28361943,-0.29268116,0.097581826,0.28977713,-0.12334174,0.13818176,-0.2318964,0.17688923,0.1687278,0.21048649,0.53963023,0.009815837,-0.047227368,0.6621485,0.72605544,-0.04112761,0.7338404,0.52194154,-0.013219204,0.19108824,-0.40233073,-0.2617859,-0.7175767,-0.43518594,-0.10854644,-0.41205832,-0.48424387,-0.01806282,-0.5087965,-0.9219672,0.6273308,0.10856632,0.08641106,0.17357723,0.3122622,0.447888,-0.29221603,-0.008597751,-0.189852,-0.2629985,-0.48204803,-0.29621157,-0.81392497,-0.51500887,0.0353222,0.9948109,-0.13012905,-0.18382698,0.082030036,-0.13832934,0.24232139,0.35136008,0.010997097,0.10095674,0.2934798,0.19515015,-0.9278543,0.57871395,-0.15651412,0.06237295,-0.6204424,0.03894942,0.4921186,-0.75689507,0.21073218,0.65450585,0.105905175,-0.057788193,-0.49896535,-0.34714246,0.19151516,-0.03119806,0.24819809,0.2408114,-0.70895195,0.5368339,0.17903388,-0.38931838,-0.9094804,0.2624456,0.0684009,-0.35444713,-0.06831881,0.46463332,0.022877524,0.0933006,-0.7259631,-0.010526583,-0.59177774,0.31811392,0.104277454,-0.11957606,0.38933113,-0.022345548,-0.28394952,-1.09139,0.013202113,-0.49606594,-0.092275105,0.2785169,0.1602593,0.25309494,-0.092491984,0.27445647,0.3404357,-0.5159794,0.035735223,-0.24450396,-0.401631,0.42639783,0.46810186,0.3420764,-0.49874875,0.54749423,-0.2362624,-0.20504557,-0.20931089,-0.031724244,0.48160183,0.4380953,0.26772776,0.35246328,-0.16451477,0.11006403,0.9096481,0.19281109,0.20975213,0.40522692,-0.39306664,0.41174075,0.039687123,0.45479226,0.07283452,-0.5923479,-0.11336216,-0.12608303,0.06655708,0.60108966,0.15871832,0.60288334,-0.134133,-0.38686618,0.060679078,0.1379373,0.2624435,-1.0040458,0.5000122,0.31693754,0.66266924,0.66453815,0.060749307,-0.030365646,0.586613,-0.15770605,0.24135892,0.20935589,-0.24130511,-0.48819074,0.4422814,-0.64405507,0.1245273,-0.19288723,0.021753952,0.17521884,0.037469853,0.45295516,1.0401173,-0.14548217,0.13713746,0.031449784,-0.029955959,0.112091996,-0.26978573,-0.07810266,-0.5692638,-0.42834315,0.57555443,0.17953347,0.29768276,-0.31427845,0.04471514,0.3258366,-0.21632677,0.43650642,-0.006866167,0.0038949896,-0.06928403,-0.585494,-0.30816138,0.44342896,0.2734489,0.020239927,0.0066123554,-0.048525702,0.14125471,-0.339255,-0.25294915,-0.116562605,-0.7341879,0.09093071,-0.35676286,-0.4493462,0.78896683,-0.103620894,0.2567494,0.18289427,0.15984742,-0.37527692,0.31826726,0.27276573,0.7326164,0.25222003,-0.46535793,-0.16555804,-0.24403657,0.2537646,-0.35792813,0.08630466,-0.01767529,-0.0066250213,-0.75081205,0.65701294,-0.32540625,-0.022413751,0.14257215,-0.47479585,-0.03214382,0.44541118,-0.18637614,-0.16228016,0.2507832,-0.03720324,-0.19006789,-0.3759254,-0.48450473,0.06825324,-0.13887091,-0.027495077,-0.22545283,0.06115681,0.008543819,0.37716892,0.041977208,0.016005656,0.3783085,0.05656879,-0.37512162,-0.13471545,0.36321017,0.50936896,0.08317677,-0.114697576,-0.44873393,-0.328024,-0.30576092,-0.07081171,-0.00816032,0.21582687,0.1518038,-0.3712161,0.7592456,0.14425935,1.0435461,0.063524045,-0.34165084,0.10579836,0.6579613,0.060210112,-0.058539633,-0.43003595,1.0731525,0.64182,-0.08984976,-0.090065815,-0.628015,-0.012366693,0.32648328,-0.27291206,-0.1524177,-0.17098038,-0.6395133,-0.5839024,0.31143978,0.3167124,-0.12329548,-0.26710406,0.16146903,0.09211186,0.39493647,0.22883831,-0.7107007,-0.14041375,0.44610998,0.05332938,0.17942508,0.3266692,-0.24175029,0.25014886,-0.68167526,0.116502605,-0.3161717,0.046453357,-0.002526991,-0.29876962,0.31567916,0.35724935,0.3208566,-0.3073655,-0.46092677,-0.2956761,0.5268101,0.23608871,0.3979144,0.809315,-0.41428414,-0.13340639,-0.10406429,0.6888425,1.2648653,-0.3379128,0.17615849,0.5232105,-0.6077292,-0.6361453,0.40145555,-0.3364385,0.10568788,-0.31504878,-0.44442526,-0.73550195,0.123633124,-0.07394724,-0.29342863,0.15146117,-0.49060258,-0.2651993,0.18520886,-0.34010616,-0.19746284,-0.17082989,0.03076478,0.66679114,-0.4912564,-0.37537792,0.09889933,0.3564994,-0.16228831,-0.41994974,-0.042990874,-0.3933121,0.3437232,0.31669155,-0.41875657,-0.13230295,0.11557433,-0.710269,0.21709031,0.262387,-0.42898986,0.03393702,-0.34403312,0.0639149,0.79202366,0.037933037,0.22404458,-0.41736627,-0.37706116,-0.9167964,-0.32737935,0.1287539,-0.11011493,-0.06087408,-0.6572606,0.15001924,-0.3023887,0.058966924,-0.12980433,-0.3422983,0.39757738,0.05584674,0.4954636,-0.19516546,-0.9609978,0.02847214,0.24661069,-0.34746432,-0.4613938,0.41496292,-0.2846589,1.0490972,0.010954052,0.0072531453,0.33633718,-0.836515,0.26679084,-0.338483,-0.22517163,-0.33752644,0.031290226 -67,0.3525177,-0.2441336,-0.48671722,-0.04837264,-0.12587814,0.0005936265,-0.18468933,0.56269586,0.22624832,-0.47997445,-0.044181246,-0.075574376,-0.0304617,0.2745201,-0.14478257,-0.32670364,-0.116487026,0.09612672,-0.3726819,0.47130638,-0.40879616,0.32711315,-0.029487459,0.43162,-0.027884746,0.30520192,0.11064283,-0.00939382,-0.0526272,-0.3014988,-0.017330825,0.18550438,-0.52027136,0.24158533,-0.20809168,-0.32250258,-0.11352583,-0.5624888,-0.2502275,-0.6801079,0.27035162,-0.65019,0.51089835,-0.013335927,-0.3535153,0.51748383,0.05207844,0.19023943,-0.13533269,-0.05686548,0.16989699,-0.09478063,0.00702007,-0.23043147,-0.16461903,-0.22095805,-0.53462243,0.14094798,-0.3552171,-0.12678441,-0.22606832,0.17677635,-0.32131213,0.016914463,-0.06285901,0.5213672,-0.38049176,0.016255148,0.0050473986,-0.16244154,0.29384163,-0.47839603,-0.10553773,-0.098383136,0.22074464,-0.19821341,-0.23659874,0.18538012,0.16770318,0.4833232,-0.08703471,-0.1765075,-0.4467354,-0.039637692,-0.020808328,0.6515911,-0.23558024,-0.45343396,-0.026604425,-0.00045763652,0.15314485,0.11456443,0.054677453,-0.28407568,-0.23377761,-0.07162986,-0.27045295,0.3739821,0.5004187,-0.2630348,-0.27082497,0.37402254,0.49748394,0.07659287,-0.20711292,0.0017798861,-0.05454713,-0.44603464,-0.11736416,-0.12390296,-0.100125104,0.33860913,-0.1801592,0.30356905,0.5538526,-0.16785653,-0.127046,0.17351076,0.018758977,0.08551603,-0.22654037,-0.2955417,0.22840041,-0.37298355,0.096053,-0.12533355,0.66265166,0.03448329,-0.887123,0.45226023,-0.42768702,0.09960856,-0.016808918,0.4050174,0.7176024,0.47716826,0.25763565,0.6065126,-0.46293637,0.093253404,-0.0604441,-0.25723147,-0.0005254626,-0.10842376,-0.08331544,-0.43649864,0.05914645,0.14344215,-0.17534767,0.2101733,0.3436066,-0.45276794,-0.06434407,0.24472716,0.7805488,-0.17483447,-0.07673684,0.9013936,0.9906615,1.0719311,0.04690879,0.95293087,0.09578622,-0.14436848,0.15656473,-0.28827813,-0.6674882,0.2626096,0.33344522,0.22989464,0.24911398,0.100163236,0.051978193,0.42300937,-0.31872854,-0.10577682,-0.123867325,0.13831395,0.18056542,-0.15656625,-0.420953,-0.20033596,0.045416158,0.13029666,0.032162417,0.29264227,-0.24142273,0.40558013,0.060256157,1.6310399,-0.029572904,0.068970665,0.16454703,0.54726344,0.23646235,-0.22539042,0.029542888,0.26281795,0.25081405,0.041609026,-0.5383493,0.06474432,-0.035593294,-0.5522452,-0.116965406,-0.3110045,-0.13972554,-0.06438854,-0.44886765,-0.19762586,-0.17158021,-0.38070652,0.39496514,-2.9388504,-0.12176306,-0.0033277492,0.29809648,-0.2122189,-0.4670307,-0.03935578,-0.49514335,0.45365068,0.41868213,0.5012687,-0.660047,0.31353492,0.37193772,-0.44681492,-0.08773377,-0.61384004,-0.07981505,-0.14521307,0.37939993,0.08814227,-0.022888303,0.016734887,0.12085679,0.5144576,-0.01456825,0.017085552,0.20614424,0.37803715,-0.031829942,0.3634927,-0.05111083,0.44204178,-0.26862946,-0.21841595,0.36751625,-0.43888336,0.07705593,-0.17606796,0.16077305,0.2982019,-0.4291802,-0.9134712,-0.6297934,-0.077193975,1.2108915,-0.021034753,-0.37866887,0.33787888,-0.3706223,-0.3955552,-0.11108438,0.37127754,-0.096151404,-0.056898404,-0.7632765,-0.04531374,-0.18028322,0.110236205,0.0017521243,-0.11276755,-0.44047084,0.6483648,-0.06684447,0.48047745,0.42252582,0.11816316,-0.34015554,-0.33208716,0.03804854,0.86380696,0.33476657,0.18820728,-0.21604046,-0.118038006,-0.24302727,-0.08129915,0.13715753,0.4814581,0.47677782,-0.0015136977,0.06423629,0.19586508,-0.074364334,0.015966577,-0.2054433,-0.13121308,-0.14874405,0.053364046,0.588914,0.6823228,-0.1353084,0.4100141,-0.03953463,0.23087423,-0.21952893,-0.38810146,0.43349257,0.9256676,-0.03867478,-0.29926807,0.51645285,0.40188235,-0.20000571,0.40331656,-0.4390824,-0.26008925,0.24574909,-0.23908709,-0.4225741,0.2477452,-0.2444381,0.13566995,-0.7731752,0.20104104,-0.14828543,-0.56835914,-0.620959,-0.25180995,-3.17188,0.12648377,-0.11523536,-0.2831608,-0.12339724,-0.11518066,0.13153768,-0.46291882,-0.48766384,0.17119595,0.080785066,0.60776025,-0.053108033,0.12609854,-0.23613872,-0.30690968,-0.35551882,0.17855969,0.07406951,0.44866064,0.07079646,-0.3864909,-0.1997549,-0.08794702,-0.47197708,0.050202597,-0.4625587,-0.3747991,-0.08559697,-0.3976138,-0.2961052,0.58513474,-0.24988696,0.079749666,-0.17046402,-0.058845863,-0.12090419,0.32701504,0.19813119,0.021844236,0.031645205,-0.052005425,0.26919687,-0.2788051,0.29110956,0.043375604,0.24655409,0.39843366,-0.21754195,0.15410215,0.43124336,0.74728894,-0.1541693,0.8211578,0.43286768,-0.009687594,0.3812451,-0.27986193,-0.2697173,-0.47258633,-0.21243344,0.053488277,-0.3682715,-0.3896879,-0.06547548,-0.36781365,-0.78278834,0.49318543,0.033120938,-0.028751383,-0.027922846,0.4077929,0.47668368,-0.17081502,-0.026102142,-0.020501455,-0.12251624,-0.48410589,-0.3945895,-0.5399725,-0.48815447,-0.02376655,1.0227458,-0.083978005,0.060284223,0.013600274,-0.043161534,-0.06099337,0.091729134,0.07782174,0.1837602,0.27743772,-0.082333736,-0.6689129,0.4663199,-0.07832958,-0.26809806,-0.49550742,0.25873664,0.5980039,-0.42706954,0.43909723,0.22727123,0.12435781,-0.09583893,-0.52590376,-0.038121343,-0.08188841,-0.22841927,0.46647173,0.28868797,-0.8145489,0.55340654,0.34680158,-0.24837612,-0.65266776,0.31036994,0.0014181972,-0.2507379,-0.12342854,0.20743427,0.18974826,-0.032579243,-0.13801078,0.23813473,-0.42781022,0.18707378,0.13387513,-0.06699196,0.39350775,-0.2940984,-0.05172615,-0.6556328,-0.029972918,-0.43327585,-0.30123058,-0.00033837557,0.1772757,0.1683124,0.15042639,-0.1276699,0.45188376,-0.2591647,0.1525937,-0.19412346,-0.19424814,0.28840807,0.34168777,0.45704412,-0.4123923,0.57839787,0.04063863,-0.11753426,-0.070859864,0.029676756,0.48302066,0.029812038,0.26833975,-0.017461991,-0.17348196,0.25322777,0.62528527,0.28804246,0.36840346,-0.13925794,-0.22416976,0.29622442,0.06141629,0.1827297,0.016798638,-0.4841804,-0.0091766035,-0.18331668,0.15274662,0.46304348,0.019674782,0.33394632,-0.21831255,-0.312507,0.12227054,0.22648512,0.023690462,-1.1769584,0.34118113,0.15337975,0.8499882,0.42809227,0.03918883,0.12563802,0.7541654,-0.22406133,0.1273794,0.31184575,-0.028622884,-0.4822646,0.4461899,-0.7569701,0.49900156,0.0065931915,-0.033127174,0.0335783,-0.13011229,0.45143902,0.68032455,-0.107395284,0.042468708,0.047073435,-0.3108019,0.08801663,-0.37583894,0.056215063,-0.44529456,-0.17255244,0.67347693,0.39004248,0.35626984,-0.18278824,0.043247547,0.123330034,0.030400263,0.0028335412,0.018355023,0.08687553,-0.14152892,-0.5150626,-0.07807052,0.5436539,0.045114372,0.20120949,-0.0014835835,-0.23859288,0.3051049,0.01450518,-0.21838512,-0.09234789,-0.54010016,0.095227,-0.19569908,-0.3826913,0.49391755,-0.03473459,0.27649015,0.20461035,0.0841671,-0.20802742,0.28913447,0.20435375,0.75753933,0.037350908,-0.0099349655,-0.31518078,0.21038672,0.1435864,-0.21585824,-0.27659315,-0.24931815,-0.10088495,-0.55020565,0.29521072,-0.06681699,-0.3632229,0.12982264,-0.06755579,0.10376271,0.60475296,-0.048496947,-0.13383794,0.036459718,-0.16887191,-0.19980818,-0.27563617,-0.05194244,0.4375685,0.1926178,-0.124508634,-0.015998082,-0.13884374,-0.19287458,0.48060504,0.017926788,0.4221,0.24811037,0.05973679,-0.36082125,-0.033068195,0.047199264,0.39173558,0.0035874844,-0.06640796,-0.23961583,-0.45886004,-0.3281583,0.18799934,-0.085402995,0.283274,0.07174573,-0.18185572,0.67950344,0.011408852,0.9585617,-0.0023397484,-0.35063592,0.24985479,0.3698829,0.1421096,0.09026659,-0.40493634,0.8981264,0.43290466,-0.09892787,-0.11780499,-0.2729665,-0.006798776,0.107596315,-0.24326004,-0.1590929,0.033960093,-0.69705516,-0.19706208,0.28489247,0.21444088,0.1529497,-0.18698575,0.043506388,0.26292345,0.030123234,0.28384697,-0.37028074,-0.06696983,0.38023096,0.2898717,-0.06128168,-0.016057063,-0.53854877,0.34311572,-0.45160753,0.05238872,-0.27483168,0.13907434,-0.26997843,-0.19719873,0.27233636,0.07886292,0.29668623,-0.23575585,-0.38915756,-0.2292632,0.42003667,0.0048249485,0.1350424,0.3054939,-0.26206544,0.07135752,0.06486796,0.35974553,0.88963825,-0.26317364,-0.031982463,0.3755532,-0.29130232,-0.5565475,0.23992243,-0.22702573,0.19839881,-0.006040419,-0.08499873,-0.47998208,0.24638815,0.23022692,0.13336284,0.056257073,-0.55528176,-0.25259712,0.29464656,-0.4041127,-0.19626738,-0.22141026,-0.024067935,0.7054571,-0.22340089,-0.33672965,0.08557474,0.2568801,-0.23165788,-0.5872931,0.027573442,-0.3394228,0.27709055,0.118469715,-0.2871326,-0.113620475,0.08279478,-0.43867332,0.14349604,0.17974322,-0.36907476,0.017071025,-0.4593598,-0.05143971,0.90422666,-0.13211398,0.33987758,-0.46447575,-0.5085209,-0.8976633,-0.32462355,0.41822654,0.09958723,0.07657436,-0.62735176,-0.1155767,-0.19441031,-0.3047193,-0.017296592,-0.36349782,0.418454,0.16655967,0.25613144,-0.19526742,-0.69701725,0.040620767,0.06915136,-0.172819,-0.53516537,0.43557733,0.18518187,0.76985294,0.09921651,0.08073984,0.3550638,-0.49721658,0.003738316,-0.16963919,-0.25544694,-0.5741257,-0.002411906 -68,0.519212,-0.107189655,-0.41829392,-0.18114695,-0.1471681,0.24370064,-0.23653474,0.47950065,0.20843846,-0.42020276,-0.15360428,-0.09672555,0.10804318,0.36310536,-0.12578341,-0.7669274,0.2104314,0.08894944,-0.40195853,0.5256151,-0.56524974,0.30029237,-0.017765522,0.33442307,-0.07606048,0.28553087,0.3194556,-0.27092963,-0.20248963,-0.16078514,-0.03975155,0.30249745,-0.6162116,0.21315405,0.04122782,-0.16552347,0.102070585,-0.2575858,-0.35969284,-0.70535797,0.13060248,-0.76956725,0.3080656,0.059524342,-0.28083506,0.26998842,0.009129107,0.25147086,-0.39754808,0.0428627,0.08795398,-0.09559294,-0.18193637,-0.21785691,0.025764138,-0.42325762,-0.523291,-0.08454617,-0.3648238,-0.2379524,-0.28676414,0.16253318,-0.3260776,-0.11552139,-0.04544672,0.49809963,-0.4285091,0.013116745,0.25160775,-0.29567617,0.3094352,-0.4133161,-0.08793589,-0.092805274,0.3559386,-0.19349065,-0.12667112,0.07142952,0.25996685,0.36542553,-0.02994734,-0.15668108,-0.42055303,-0.15224014,0.16074958,0.49417642,-0.14489715,-0.68787444,-0.101790614,-0.123136885,-0.17427017,0.06777305,0.07664253,-0.20514734,-0.11498895,0.05552651,-0.33327055,0.42654216,0.4519791,-0.3674366,-0.30548573,0.31767842,0.6407694,-0.006986485,-0.13607225,-0.071956545,0.08224548,-0.6123596,-0.17373261,0.090921275,-0.13557547,0.53448224,-0.19146882,0.29184958,0.66209483,-0.21212332,-0.0649228,0.16786021,-0.012605358,-0.002957766,-0.08365612,-0.14046785,0.23697624,-0.3485393,0.048377104,-0.19677374,0.80316705,0.27216274,-0.7181295,0.37540036,-0.52764374,0.045200165,-0.20027986,0.41726208,0.44073808,0.30728996,0.06560724,0.65006375,-0.44379044,0.011830339,-0.12314631,-0.39829892,0.0067705833,-0.10110169,0.03740633,-0.41538364,0.02956796,0.15512031,-0.13971391,0.016248317,0.2488179,-0.5532571,-0.063575745,0.1640345,0.8397952,-0.3116626,-0.21050715,0.5660356,0.89494747,0.863293,-0.003235684,1.1112864,0.35686237,-0.12792513,0.11801262,-0.48245636,-0.6364575,0.34068018,0.32321307,-0.026445223,0.26092362,0.0257922,-0.039757315,0.38929474,-0.22348844,0.05051699,-0.14147247,0.39755392,0.1967986,-0.084099606,-0.3579988,-0.2944888,-0.09383345,-0.069483526,0.3518489,0.17373496,-0.09428294,0.33904406,0.04892804,1.6007123,-0.049721774,0.18448117,-0.037296705,0.48123023,0.22673467,0.060822632,-0.1284038,0.28268278,0.081966996,0.14726672,-0.581277,0.18456022,-0.13646519,-0.4345055,-0.1784362,-0.3144991,-0.025239848,-0.16743381,-0.3573995,0.0396025,0.028465904,-0.21335107,0.47284222,-2.7330983,-0.23319277,-0.0198772,0.40122128,-0.29544008,-0.26177555,-0.10202512,-0.50785565,0.25983423,0.41740942,0.5942215,-0.649009,0.50147367,0.5288013,-0.46572143,-0.21431798,-0.5521512,-0.08870078,-0.023379456,0.4097443,0.14677851,-0.09100192,-0.068574354,0.21215259,0.40869725,-0.074565426,0.059304018,0.19232823,0.39598405,0.033461288,0.4348624,0.026764873,0.5493095,-0.17365101,-0.15199777,0.3131681,-0.4389055,0.25600132,-0.12724501,0.00660118,0.28144276,-0.17840736,-0.968331,-0.6870167,-0.27781513,1.1768748,-0.20872134,-0.23352626,0.076948985,-0.08801273,-0.2785985,0.1346934,0.34993333,-0.07153591,0.050609156,-0.78393894,0.124308735,-0.04743652,0.26190633,0.03372664,0.014499889,-0.4964625,0.6620516,-0.07917041,0.420825,0.29021138,0.28822502,-0.2699418,-0.5283355,-0.0549039,1.0231584,0.19046912,0.16738793,-0.24308985,-0.3009047,-0.36181146,0.02678176,0.039540313,0.6760873,0.63817596,-0.011552792,0.027566288,0.25929427,-0.08515319,0.09561682,-0.15076986,-0.4098169,-0.055269405,0.11066489,0.5877179,0.6241503,-0.18697184,0.43694064,-0.061448004,0.3753661,-0.25592238,-0.3136975,0.54823846,0.888896,-0.13465928,-0.19510664,0.5045949,0.48622754,-0.36128098,0.3421151,-0.78374475,-0.40674335,0.39311314,-0.23327166,-0.34656987,0.18590467,-0.23303747,0.15051506,-1.0025584,0.45856407,-0.35401356,-0.41646945,-0.45288882,-0.11691479,-4.204275,0.14217879,-0.0900276,-0.12057889,0.06492331,-0.073977195,0.10811085,-0.68470633,-0.49180084,0.19547042,-0.105898365,0.6153652,-0.04354755,0.31153858,-0.31025535,0.019894926,-0.13978586,0.3449783,0.11343871,0.20539401,0.17532529,-0.50114596,0.0995473,-0.10491101,-0.31058392,0.24111931,-0.65519494,-0.5318833,-0.048618115,-0.56021047,-0.21818113,0.69625896,-0.50655967,0.07934865,-0.136443,0.13861725,-0.22353818,0.3618419,0.010923771,0.045652114,0.117052674,0.012482336,-0.10296056,-0.31268832,0.44145772,0.03390834,0.32232857,0.382376,-0.113789305,0.124706835,0.66478986,0.5290617,0.13330144,0.56581646,0.3171952,-0.04783474,0.24467763,-0.35610926,-0.20843233,-0.39794022,-0.36960799,-0.037844893,-0.29247594,-0.34093386,-0.13348225,-0.3417013,-0.6267538,0.46368524,-0.001650205,-0.10436409,0.040602904,0.13934258,0.42589357,-0.22660254,0.018576149,0.012228558,-0.107789055,-0.5429956,-0.21149829,-0.537642,-0.3820524,0.2027352,0.8992777,-0.24792594,-0.009816926,-0.082520895,-0.15609524,-0.074752115,0.15389475,0.075974084,0.07460204,0.36592543,-0.07785343,-0.6840293,0.40416113,-0.25918388,-0.13162646,-0.52237386,0.13723055,0.67561847,-0.6139114,0.4783049,0.47120878,0.032546613,-0.00056672556,-0.3366937,-0.32900384,0.13017753,-0.17577985,0.3285699,0.06307875,-0.73861843,0.27751023,0.26171502,-0.33303246,-0.6473842,0.604747,0.051289264,-0.39146832,-0.114024214,0.3597738,0.2244668,0.012813857,-0.35169923,0.115931585,-0.4108775,0.15905842,0.13629235,0.010992593,0.55911076,-0.15985104,0.020149764,-0.7385142,-0.2507541,-0.46603584,-0.28088224,0.15974535,0.07909858,0.009299987,0.24068376,0.11833068,0.3822273,-0.37500557,-0.021349732,0.053112857,-0.3670435,0.46288103,0.39052588,0.4124317,-0.37867266,0.56055933,0.064929985,0.051661056,0.06609761,-0.020314272,0.43689108,-0.03833119,0.42463797,0.20683418,-0.15370561,0.34766597,0.7285392,0.27021435,0.4905626,0.1770022,-0.17093365,0.1837959,-0.005208703,0.1680538,0.060456898,-0.51729465,0.08042038,-0.18196389,0.10433845,0.4362242,0.14862157,0.3067675,-0.041557528,-0.5271512,-0.03169865,0.1695861,0.0093743615,-1.1795352,0.33967465,0.19730988,0.82899886,0.484608,-0.083447605,0.20489396,0.6770834,-0.08207902,0.14162377,0.28032488,-0.1464781,-0.5720011,0.5008862,-0.6080045,0.38781452,-0.059369538,-0.036543686,-0.12761185,-0.21003231,0.19742033,0.8452424,-0.13259196,0.11302651,-0.07799658,-0.32449082,0.057201155,-0.42911798,0.1861461,-0.6237932,-0.1042137,0.544611,0.62424725,0.34970707,-0.054705754,-0.00822266,0.18715623,0.003744766,0.21175545,0.03465327,0.042478826,0.09176559,-0.7721239,-0.26149604,0.59726536,0.13297015,0.19434786,-0.08667528,-0.111039914,0.42968205,-0.22893715,-0.09611772,-0.13868468,-0.5700023,-0.036883537,-0.29199535,-0.41023147,0.51653063,-0.16739175,0.31240872,0.2030437,0.020150108,-0.24978036,0.244327,0.15314029,0.6550027,0.15861365,-0.19878127,-0.41404024,-0.01768173,0.22273019,-0.19370867,-0.08252353,-0.36047316,0.007469746,-0.5262941,0.3128595,-0.12585825,-0.30216742,-0.037850972,-0.19893393,0.02766976,0.52523875,-0.09860109,-0.21495852,0.06486286,-0.109561495,-0.15888415,0.13103077,-0.23596652,0.2296075,0.23519042,-0.13649176,-0.07012807,-0.14001265,-0.1804285,0.34955657,0.059443694,0.31637383,0.47850704,0.24975897,-0.29519764,-0.17090295,0.20414454,0.57515556,0.0027215665,-0.11458281,-0.38017765,-0.46162897,-0.32468572,0.19288942,-0.1282016,0.25534087,0.1282492,-0.4204459,0.5227399,-0.05109844,1.1089776,0.11411874,-0.3151724,0.11851837,0.43408495,0.21375711,0.09658051,-0.44365498,1.0017909,0.46832755,-0.24948193,-0.11864038,-0.39084676,-0.10234451,0.011379182,-0.15399861,-0.22636932,-0.034257613,-0.6199936,-0.2768707,0.20860086,0.19291472,0.23653406,-0.008912655,0.05951225,0.23965746,0.10908798,0.35898727,-0.52982795,-0.08503126,0.3880531,0.25938493,-0.017476188,0.11688569,-0.28532282,0.40876848,-0.4618459,0.1283819,-0.34528005,0.1761237,-0.23538803,-0.20093116,0.27104583,0.18629488,0.26744363,-0.23768498,-0.49339497,-0.24045335,0.45576742,0.2659224,0.048834726,0.6160389,-0.12863661,-0.11469201,0.15114914,0.5105558,0.9014768,-0.34191984,0.065607935,0.61903703,-0.28344116,-0.65196025,0.27132863,-0.2947337,0.19363119,-0.12428439,-0.27569225,-0.71470743,0.36375433,0.18589687,0.0045695123,0.101098806,-0.4829462,-0.17866914,0.31200168,-0.37976155,-0.236826,-0.30589658,0.21452309,0.6113385,-0.3992018,-0.11092791,0.10810138,0.2518748,-0.25992522,-0.49104416,-0.20991725,-0.39767283,0.27311018,0.34126928,-0.28575572,-0.21286751,0.07151114,-0.37365162,0.20642668,0.30055723,-0.40603617,0.11578034,-0.2839083,-0.16098088,0.8471206,-0.1382412,0.20188276,-0.63224304,-0.28708458,-0.87651074,-0.33701882,0.5656272,-0.02834951,-0.1380563,-0.5515892,-0.11564994,0.022485316,-0.23426464,-0.13206182,-0.49469185,0.47770035,0.09816216,0.47859353,0.10536877,-0.87923753,-0.035797324,0.19313174,-0.2698312,-0.6330008,0.4289357,-0.1560938,0.81164515,0.066686995,0.16011563,0.470669,-0.45358768,-0.08868037,-0.28311318,-0.12328322,-0.6176196,0.15702698 -69,0.38160464,-0.17680833,-0.4669501,-0.07400855,-0.41797766,0.20374146,-0.13033651,0.3832321,0.18444358,-0.44536886,-0.13606875,-0.022995207,-0.10547247,0.1831743,-0.19259723,-0.5173783,-0.014088874,-0.0029351371,-0.47086993,0.53429335,-0.22532617,0.2552512,-0.087381564,0.35158485,0.29457358,0.28904533,0.08940876,0.024846504,-0.14226262,-0.21310557,-0.087890856,0.25880897,-0.55798733,0.31827113,-0.124583915,-0.36120734,-0.051926997,-0.2776973,-0.128594,-0.82421124,0.33512047,-0.8559372,0.4213509,0.04222644,-0.36233917,0.35489264,0.24075796,0.27842975,-0.062377494,-0.20698169,0.23110117,-0.22741209,-0.033517566,-0.3622799,-0.040468577,-0.4636702,-0.5317508,-0.17405245,-0.5457722,-0.31167603,-0.312708,0.18240039,-0.3519233,-0.11462028,-0.079870105,0.49249536,-0.47532207,0.14423315,0.10432927,-0.23136123,0.2021559,-0.81652343,-0.31773448,-0.0053687883,0.29008225,-0.08496041,-0.19058172,0.47913638,0.19253363,0.22247615,-0.09420598,-0.16576493,-0.2638385,-0.11941655,0.052636385,0.40200296,-0.30097577,-0.23589553,-0.022536682,-0.09673919,0.3747132,0.24631333,0.268681,-0.08714388,-0.075877786,0.10058639,-0.082999006,0.39777088,0.36097792,-0.2231027,-0.077841565,0.38892564,0.54488826,0.22477162,-0.2377537,-0.1615194,-0.011766268,-0.48360178,-0.11823332,-0.0038693207,-0.18343142,0.3662834,-0.07869482,0.24706754,0.71065986,-0.20165825,0.08332586,0.1902461,0.178278,-0.02837049,-0.31643957,-0.3384567,0.34500948,-0.47898546,0.16805574,-0.22577849,0.5794544,-0.07394348,-0.43441582,0.27545607,-0.5266026,-0.0189639,-0.0029780865,0.38230664,0.5697106,0.47089905,0.15691148,0.6808299,-0.30716038,-0.14947273,-0.05907165,-0.14050226,0.15766189,-0.2405574,0.15214333,-0.5665888,-0.01883465,-0.11411309,0.0077394927,0.13280758,0.3167831,-0.66854805,-0.22953281,0.10827469,0.76414925,-0.28063565,-0.000206198,0.78073704,1.1113924,0.88987064,-0.024271939,0.76285493,0.048141126,-0.22643842,-0.014578028,-0.014195825,-0.49290627,0.21109207,0.45740408,-0.18389677,0.26674962,0.074111685,-0.04185875,0.38558483,-0.13931784,-0.19340587,-0.12595633,0.22261856,0.23323083,-0.18662511,-0.2651737,-0.22225983,0.012182206,-0.0317361,0.09054734,0.28604358,-0.31338882,0.40482143,0.14756557,1.4855852,-0.023299823,-0.050534897,0.14900245,0.3745702,0.20603101,-0.12272978,0.1823933,0.4232227,0.1254837,0.2343627,-0.4528079,0.39090225,-0.2295283,-0.592109,0.018596629,-0.36420536,-0.17256978,-0.027904673,-0.43785805,-0.16842754,-0.16762392,-0.16078599,0.33522922,-2.7981188,-0.115911685,-0.17260602,0.35585472,-0.15713869,-0.2341214,0.08488432,-0.27744588,0.36230975,0.26867226,0.4034814,-0.5341222,0.20283021,0.66966105,-0.71400267,-0.0846739,-0.43595833,-0.13279083,0.08488759,0.3639329,0.10043655,-0.055755693,0.13393989,0.17006823,0.3236697,0.0034257707,0.13446851,0.36760992,0.4289119,-0.28742066,0.37669423,0.075664826,0.46970072,-0.30027634,-0.26540878,0.33019155,-0.47874266,0.2831592,-0.07493428,0.1493481,0.52662003,-0.17115995,-0.83058655,-0.6189012,-0.10343353,1.1495574,-0.16764033,-0.62882984,0.19233479,-0.28841883,-0.27749425,-0.11680407,0.45408815,-0.06371124,0.008205205,-0.78744,0.08896582,-0.20074478,0.1557782,-0.011129775,-0.07223185,-0.42898256,0.77725595,0.11681402,0.65733945,0.24220936,0.17996153,-0.5049339,-0.26590946,0.05942335,0.62075627,0.54455835,0.009034923,-0.10066797,-0.15754926,-0.0834411,-0.16491388,0.21952502,0.77291566,0.40228578,0.032858424,0.12067042,0.31293628,-0.124115,0.009418688,-0.1853499,-0.26178038,-0.13692336,0.035809975,0.4858942,0.6656033,0.015859773,0.39669976,0.12523074,0.39314148,-0.07983897,-0.58094317,0.36346468,1.085098,-0.17035572,-0.33881918,0.5248531,0.40849975,-0.39014092,0.36453632,-0.63706297,-0.20326127,0.6179229,-0.17888048,-0.55596876,0.08766196,-0.30760002,0.13137844,-0.63944286,0.32668933,-0.5525738,-0.39705226,-0.6192071,-0.19828212,-2.7759697,0.17113264,-0.30625886,-0.17912817,-0.3855737,-0.19041236,0.18470483,-0.83415395,-0.4810546,0.1794704,0.075228654,0.6975528,-0.13789175,-0.016828852,-0.27096587,-0.4842289,0.08096524,0.2979872,-0.018398464,0.17530116,-0.09794963,-0.3201808,-0.041425772,0.12829867,-0.43149439,-0.009148433,-0.51971364,-0.6112584,-0.09515711,-0.44317845,-0.27469835,0.7158248,-0.332287,0.019801984,-0.11879553,0.10768858,-0.07033368,0.07542561,0.11516007,0.18717703,0.073019646,-0.011513174,0.08391612,-0.38510093,0.35781866,0.06311829,0.48897317,0.40022755,-0.10299592,0.2947928,0.5026573,0.54284626,0.042786717,0.82916725,0.18054451,-0.15959825,0.29330727,-0.33011442,-0.35395566,-0.62183255,-0.20605032,0.20831439,-0.26063007,-0.325174,0.023432553,-0.3312221,-0.7136846,0.5911326,-0.038043555,0.3261233,-0.13664182,0.32504925,0.49171707,-0.16573587,-0.15154035,0.0114360945,-0.14400871,-0.559089,-0.20472308,-0.6361429,-0.4763928,0.13388409,0.71847695,-0.37479678,-0.007517624,0.2280186,-0.107079305,0.20963307,0.0825956,-0.019046525,-0.08332144,0.4104974,-0.024763703,-0.6539437,0.58453643,-0.121223025,-0.17894936,-0.5018113,0.33538723,0.48817492,-0.47719505,0.5026413,0.3879349,-0.07264254,-0.37275615,-0.43515995,0.042681098,0.19497474,-0.14772525,0.3934675,0.32126278,-0.77301776,0.32515064,0.36212516,-0.34496003,-0.5487033,0.5333641,-0.05084955,-0.29007965,-0.14394607,0.43423748,0.2750431,-0.04819702,-0.022455275,0.22783081,-0.48177984,0.21618573,0.04961437,-0.07421887,0.17646909,0.014841947,-0.16630423,-0.68379873,0.3552836,-0.38015202,-0.33523297,0.39300188,-0.14016709,0.022078604,0.40921,0.21678849,0.39799547,-0.2835641,0.042890932,-0.068752386,-0.3298317,0.37400937,0.4941988,0.6484709,-0.3764727,0.46282858,0.011100375,-0.038874593,0.26312807,0.042012777,0.37354064,0.14683358,0.51280284,0.07732684,-0.102189794,0.21386957,0.65445596,0.18285353,0.4330476,-0.109758474,-0.2027377,0.093970075,-0.07067944,0.29753783,-0.10589279,-0.6105903,0.14408675,-0.084434286,0.020394947,0.46840268,0.10168349,0.24199821,0.091801696,-0.37546587,0.06043914,0.28860447,-0.030617664,-1.0958577,0.41449076,0.2791874,0.93067724,0.39681226,0.0761301,0.023965355,0.75483006,-0.2529711,-0.006484351,0.32635644,0.032384507,-0.41527563,0.51931465,-0.71457344,0.4188807,0.050000574,-0.082897834,-0.15507782,-0.12634411,0.14112994,0.6593504,-0.21234097,-0.08480408,-0.02917862,-0.5163969,0.24588577,-0.28231487,0.08490556,-0.35540265,-0.23339626,0.50111586,0.55120856,0.3692646,-0.1963909,0.15223739,0.1012371,-0.18738164,0.31681266,0.022916062,0.10155802,-0.08800423,-0.41311345,-0.09942402,0.3797788,-0.20464495,0.2871689,-0.098461986,-0.17747392,0.22824061,0.041290324,0.016159382,0.0041143787,-0.5946892,0.25367898,-0.2606959,-0.4819756,0.5152744,-0.059334975,0.037181217,0.2291694,0.029438917,-0.2202812,0.3670656,0.17846371,0.68434465,0.057044275,-0.12291243,-0.34554508,0.14696994,-0.08566813,-0.117310576,0.091449656,-0.1505724,0.2889777,-0.4805912,0.43860143,-0.15996265,-0.31929484,-0.1545542,-0.23015179,0.047153283,0.4846694,-0.13545753,-0.14449365,-0.27692637,-0.07438086,-0.17842208,-0.2826757,-0.21416497,0.20242132,-0.04993003,0.11534989,-0.27138925,-0.05014004,-0.33645204,0.3347369,-0.14229381,0.45572278,0.39275065,-0.11845042,-0.41364804,-0.062957816,0.20218611,0.40360567,-0.14062546,-0.033762824,-0.34224516,-0.5287969,-0.46187487,0.34606647,-0.11166864,0.29884338,0.076162525,-0.26407692,0.8727301,-0.24584723,1.0545495,-0.21891774,-0.3510089,0.07406759,0.6101352,-0.12818669,-0.03738721,-0.14263794,0.97510785,0.61966133,-0.0616417,0.0037412602,-0.31864664,-0.018393,0.30334774,-0.27689567,0.06330032,-0.06814396,-0.60965455,-0.30437288,0.109023646,0.34103647,0.10223409,-0.14261326,-0.041026324,0.33390623,0.1587653,0.17771038,-0.51469666,-0.2934564,0.2620422,0.17456003,-0.12230022,0.1805421,-0.5371658,0.38260883,-0.5508247,0.20610061,-0.45357293,0.12125029,-0.21272253,-0.18240735,0.19828115,-0.057903327,0.20914373,-0.2830948,-0.33321506,-0.106029876,0.22666477,0.20813057,0.21501483,0.4844872,-0.25796396,0.10034985,0.11354052,0.46879944,0.78066826,-0.14862086,-0.16234167,0.20014109,-0.52863085,-0.6651307,0.24979995,-0.32379016,0.12930445,-0.062107246,-0.10259201,-0.5429725,0.22780071,0.2527807,0.08198427,-0.04244614,-0.7385436,-0.070084296,0.09155947,-0.5129131,-0.17691824,-0.31977472,0.051951025,0.4783071,-0.24539338,-0.12665977,-0.012413574,0.32976526,-0.11057858,-0.45416045,-0.0008249368,-0.38933796,0.43374982,-0.016945615,-0.34026164,-0.1703536,0.06544989,-0.38329673,0.34904432,0.17982075,-0.3247456,0.107513316,-0.18499874,0.27860975,0.6183552,-0.11910579,-0.005897301,-0.47521964,-0.42661673,-0.74841183,-0.41550735,0.053006124,0.13602665,0.00433115,-0.6904217,0.056371998,-0.15201186,-0.14060293,-0.22125919,-0.43756613,0.3840138,0.16823806,0.4603627,-0.14108968,-0.9141216,0.25263172,0.1204854,0.026337441,-0.52699506,0.46856216,-0.26779723,0.7648363,0.053846527,-0.020325635,0.0928532,-0.3651159,0.12594526,-0.26715404,-0.3340301,-0.45123926,0.004960724 -70,0.29954842,0.012403837,-0.6212691,-0.11255072,-0.1228308,-0.18957488,-0.13697307,0.4789302,0.060508728,-0.54482406,-0.1987112,-0.34823248,-0.061140902,0.4772512,-0.31698337,-0.59018713,-0.1011048,0.01052854,-0.41415095,0.48414728,-0.4409292,0.20426807,0.141185,0.45724717,0.14213923,0.27809462,0.37593627,-0.21034706,-0.2300121,-0.15509956,0.0066736424,0.18449795,-0.45509228,0.0066688233,-0.16374035,-0.5887477,0.07517202,-0.48997203,-0.37699223,-0.6748254,0.44832972,-0.8545979,0.38420963,0.16474345,-0.07900955,0.31302145,0.18019144,0.29110608,-0.19583999,-0.14360122,0.22186849,0.06970802,0.063380264,-0.106627,-0.42054018,-0.44602117,-0.5696174,0.1990198,-0.41102645,-0.29220232,-0.22629002,0.1405176,-0.3593453,-0.07141974,0.037502892,0.37020722,-0.40826225,-0.3057425,0.26928326,-0.1300166,0.41225567,-0.5897256,-0.19349787,-0.13459997,0.19217369,-0.3564989,-0.025337199,0.39734188,0.20952119,0.5211285,-0.058320947,-0.19233635,-0.46774906,0.03080816,0.14327905,0.39154992,-0.23363674,-0.5650963,-0.07286347,0.039799888,0.113460675,0.21622062,0.20738234,-0.27379662,0.036683023,0.22408465,-0.24784593,0.42888206,0.53995603,-0.3662589,-0.23743185,0.15540467,0.5276246,0.19415377,-0.25650012,-0.14717554,-0.0018774526,-0.5370632,-0.17512797,-0.021652648,-0.25779396,0.5602589,-0.05160014,0.34648165,0.7293278,-0.14044727,0.15957542,-0.043174893,-0.14062081,-0.24485527,-0.33311176,-0.16704467,0.18711618,-0.3892784,0.20868932,-0.17203875,0.74100435,0.20431376,-0.7249562,0.43290314,-0.578959,0.13182043,-0.09975547,0.42307255,0.61993754,0.20449409,0.34811702,0.61669177,-0.54755485,-0.01836821,-0.07072712,-0.4354301,0.1711897,-0.08718764,-0.075930186,-0.40713885,-0.1715763,-0.06978271,0.007399954,0.036579303,0.2229538,-0.56145376,0.0837215,0.18704364,1.0422007,-0.29506788,-0.07853549,0.7011099,0.9792227,0.9247078,-0.016393498,1.0531688,0.083111726,-0.23149972,0.52379096,-0.35350063,-0.7583398,0.34606555,0.4482329,-0.33051753,0.21358423,-0.017303405,0.20712946,0.40392905,-0.432745,0.12966134,-0.36783645,-0.027555278,0.25237912,-0.09756502,-0.2948516,-0.0755296,-0.037727058,-0.0995907,0.076842956,0.24367812,-0.09077127,0.15619956,-0.1310877,1.7430006,-0.041985016,0.15011282,0.1254353,0.54994017,0.1322079,-0.014435291,-0.04106601,0.12536152,0.23009463,0.0680425,-0.5579409,0.08642028,-0.32373926,-0.5797745,-0.10302836,-0.32618394,0.013401313,0.09599326,-0.6294673,0.021975758,-0.043476913,-0.28911266,0.2939039,-2.6823978,-0.2515174,-0.15590702,0.2051676,-0.3530151,-0.30258608,-0.17314522,-0.5507068,0.6249757,0.36934692,0.47449937,-0.5373718,0.40706554,0.50593346,-0.37365267,-0.09046887,-0.6005613,-0.09648158,-0.07769238,0.29504943,0.028891489,-0.122518145,0.0991549,0.10199482,0.37174177,0.005918622,-0.04225691,0.037028704,0.3495839,0.14200158,0.5633289,-0.09988924,0.51648444,-0.3606029,-0.19418344,0.37918156,-0.3618946,0.20256077,-0.13230744,0.25316688,0.275768,-0.49725464,-0.92462283,-0.73226464,-0.49228,1.0952576,0.039015103,-0.31780753,0.35879442,-0.21214531,-0.18473008,-0.17005278,0.4933627,-0.07978934,-0.016249593,-0.8564654,0.16828866,-0.20880143,0.10890698,0.06398115,0.09890078,-0.32488585,0.5940665,-0.01529534,0.37262195,0.50573474,0.16848733,-0.24503501,-0.4552693,0.10829646,0.8172975,0.2915618,0.07580805,-0.18703975,-0.17650393,-0.35996857,-0.14586735,0.09990896,0.38027498,0.8083304,0.0141733205,0.004722509,0.21227323,0.11962968,-0.020961719,-0.10410159,-0.3500187,-0.07812999,0.010066764,0.5234915,0.5874651,-0.31134123,0.39651865,-0.119084574,0.40073052,-0.24254827,-0.36438006,0.5360511,0.9642989,-0.16844381,-0.16254799,0.46747085,0.3929649,-0.3453284,0.45560506,-0.5785442,-0.29008627,0.47205117,-0.20166883,-0.43334273,0.08784791,-0.26973206,0.12018657,-0.94258016,0.21569517,-0.31532288,-0.20643108,-0.6271335,-0.285413,-3.7859743,0.16870888,-0.32230255,-0.13219716,-0.046133537,-0.011225449,0.26876995,-0.68713766,-0.7129711,0.0439273,0.023444531,0.75229007,-0.019349173,0.12808022,-0.20471801,-0.10289085,-0.18041556,0.05454975,0.2726263,0.2979448,0.037264436,-0.5006775,-0.14057095,-0.35460022,-0.52002877,0.11034583,-0.58430034,-0.44934493,-0.26883644,-0.5738991,-0.29352453,0.6672465,-0.35975924,0.06394554,-0.012642262,-0.03893354,-0.13867314,0.49433368,0.19805372,0.16057868,0.12223118,0.0523875,0.045989092,-0.3271323,0.24264108,0.09451103,0.37077498,0.44579458,-0.00415613,0.33022594,0.5186562,0.77121824,0.05047422,0.76095295,0.5103518,-0.026150065,0.28419712,-0.402811,-0.25712422,-0.63944155,-0.37720808,-0.045863207,-0.31743693,-0.62666065,0.01676224,-0.3136203,-0.85224956,0.6325569,-0.05006596,0.090548396,-0.012144466,0.12738936,0.34411883,-0.23115148,-0.054838378,-0.01696476,0.04596168,-0.5995272,-0.35510758,-0.5772022,-0.6028846,-0.04106053,0.89728004,0.04860276,-0.13911393,-0.057306644,-0.18258609,0.06256969,-0.03422037,0.060131606,0.18955436,0.32016352,-0.018531233,-0.678413,0.5730885,-0.08721803,-0.103310145,-0.6023001,0.028203955,0.54283917,-0.64377016,0.45043597,0.2970349,0.05142222,-0.009802878,-0.48845768,-0.20815934,0.009450491,-0.1721357,0.2797685,0.071331285,-0.7063221,0.3995864,0.4218592,-0.23986103,-0.720276,0.45711878,0.05508817,-0.21460299,-0.13910143,0.25267857,0.14147367,0.100068346,-0.233442,0.26949778,-0.31398436,0.13815284,0.38348743,0.059865214,0.5886405,-0.30637315,-0.12008308,-0.6907372,0.09402853,-0.47993454,-0.17926085,0.29294038,0.13431826,0.00899045,0.18727754,0.023642983,0.30848092,-0.14295705,0.17417397,-0.035653777,-0.11497707,0.23114856,0.39735493,0.46725067,-0.56940335,0.59814817,-0.13702062,-0.12030792,0.238108,-0.019199083,0.4884536,-0.031442374,0.2630637,-0.033259768,-0.24481228,0.32701963,0.8961005,0.20888877,0.42326832,0.123958826,-0.19592173,0.26796633,0.08013679,-0.013109411,0.051982205,-0.58677197,0.058942027,0.0546029,0.18087338,0.522004,0.07724865,0.32402158,0.0037498858,-0.36647588,0.041560195,0.11402792,-0.011115453,-1.176857,0.5239661,0.18207023,0.8080234,0.59419125,0.032852273,0.08750297,0.56064814,-0.11908561,0.20847835,0.4006222,-0.14233994,-0.68768156,0.55090934,-0.4164558,0.4791921,0.03449694,-0.11485609,-0.10217668,0.058260594,0.45924643,0.64824754,-0.19785242,0.15397921,0.08358621,-0.14367172,0.2934866,-0.33873972,0.07207372,-0.4329106,-0.08043671,0.6370498,0.5988619,0.14582558,-0.15971813,-0.1510998,0.14104491,-0.01623496,0.13480529,-0.120952725,0.20086196,-0.043851964,-0.64341784,-0.31071663,0.5187609,0.12391268,0.2791725,-0.024800362,-0.33201176,0.25727814,-0.0807912,-0.032594316,-0.10620505,-0.6547435,0.01475894,-0.2684395,-0.38651007,0.37517232,-0.13472438,0.3517336,0.112329416,0.0935692,-0.34809288,0.44755435,-0.027509037,0.5353363,-0.20978417,-0.07041933,-0.41622052,0.14355232,0.16260299,-0.2002096,-0.1180206,-0.38899764,-0.013957338,-0.45066947,0.4584046,0.0192659,-0.19757406,0.009324689,-0.13589056,-0.014017074,0.6152778,-0.070289776,-0.03303819,-0.015739428,-0.13102235,-0.23978665,-0.117065534,-0.0800894,0.2665058,0.03806013,-0.008551227,-0.11049839,-0.17536625,-0.04089566,0.5394737,-0.027182741,0.36638162,0.35335663,0.12488482,-0.3879352,-0.26947394,0.2030387,0.50196576,-0.015057939,-0.13296717,-0.27876946,-0.27148366,-0.31004712,0.25248343,-0.15099195,0.26977798,0.2567713,-0.41037235,0.5588788,0.1934727,1.3683943,0.12330314,-0.24971247,0.026038812,0.43864408,0.04000532,-0.14186168,-0.40917152,0.8728157,0.5378267,-0.09140488,-0.3190408,-0.26424375,0.017937755,0.157442,-0.22599618,-0.2746595,-0.05520498,-0.60538334,-0.33863178,0.21274246,0.38589716,0.17281982,-0.14323412,0.05845514,0.032590788,0.048635237,0.45230108,-0.39100185,-0.30871248,0.32270366,0.31579468,-0.15681903,0.20953576,-0.40493658,0.50102526,-0.40188494,0.030399641,-0.3727869,0.16692267,-0.20626213,-0.33203864,0.12746565,-0.06021694,0.39638,-0.04601827,-0.3416328,-0.21442045,0.43925637,0.18872355,0.29187718,0.60904837,-0.17761834,0.1129997,-0.09838058,0.66448265,1.1023492,-0.21808593,-0.019721087,0.28337544,-0.18348898,-0.43932185,0.18534163,-0.32816723,0.14096926,-0.13683748,-0.11594921,-0.5143271,0.18545416,0.23049338,-0.21390173,0.032876562,-0.46063334,-0.39987668,0.1636496,-0.28263178,-0.3151087,-0.47435164,0.05557235,0.69745356,-0.28029147,-0.08310346,0.1384236,0.24540122,-0.10158161,-0.41869077,-0.124011524,-0.20355597,0.29422352,0.20335642,-0.36896995,0.026703209,0.08532511,-0.43736914,0.29064688,0.028722227,-0.39720115,0.071619384,-0.17568137,-0.08334998,1.0479649,-0.101734005,0.24907997,-0.3793271,-0.51962435,-0.9964281,-0.4444139,0.7059855,0.09063029,0.03172681,-0.5400879,0.028311083,-0.018891683,-0.11943591,-0.013671249,-0.2684933,0.24985263,0.059431303,0.6249642,-0.091382824,-0.6227625,0.016352683,0.07509612,-0.13112281,-0.5181126,0.58964866,0.061388724,0.85747916,0.06984625,0.0060952646,0.33662584,-0.284083,-0.10845647,-0.30888632,-0.21223345,-0.7360249,0.09770673 -71,0.44362333,-0.11140263,-0.3762322,-0.15862761,-0.2549419,-0.12652276,-0.21024789,0.27639645,0.20640591,-0.13975082,-0.08857493,-0.20257911,0.06540651,0.4475276,0.023001866,-0.6995154,-0.17485857,0.011372806,-0.5877277,0.34487128,-0.7027949,0.20211089,0.1252142,0.34947863,0.019893985,0.46524575,0.43402514,-0.22973032,-0.12634058,-0.04558786,-0.03733586,0.14341387,-0.55476695,-0.014051376,-0.010712151,-0.3035027,0.08846994,-0.50099975,-0.15635571,-0.6084003,0.11925793,-0.77441937,0.37920585,0.33243942,-0.09664257,-0.02849047,0.0075514275,0.4960951,-0.44207922,0.24831238,0.22801486,-0.08186625,0.124896385,-0.4422268,-0.035488505,-0.3270389,-0.46364465,-0.0190255,-0.41161186,-0.48379442,-0.083351456,0.09482984,-0.24910249,0.0021694899,-0.24281308,0.32466468,-0.4539908,-0.19394822,0.4702913,-0.27175936,0.42824763,-0.3589537,-0.05890613,-0.08351411,0.27654782,-0.051529624,-0.20865263,0.43341318,0.26595956,0.4873715,0.11970227,-0.2851619,-0.26208875,-0.15668099,0.16673176,0.49886295,-0.28685096,-0.27677146,-0.10412295,-0.028782384,0.10793853,0.43996748,-0.12053824,-0.27854818,0.061009288,0.07970704,-0.11689287,0.17999686,0.495743,-0.43571022,-0.3729287,0.22309005,0.61708486,0.018509533,-0.14402363,-0.11069907,0.027993819,-0.6501164,-0.2415755,0.19990896,-0.0640548,0.3848377,0.048306625,0.014724127,0.8878547,-0.20377378,0.04978672,-0.13236754,-0.22374308,0.049260776,-0.38702378,-0.30898577,0.2474596,-0.44419715,-0.002488443,-0.3173892,0.66377574,0.25790143,-0.77332944,0.46705538,-0.6546263,0.16614076,-0.1053946,0.6859952,0.49526504,0.29986235,0.40525642,0.72354186,-0.4688849,0.2889412,-0.058048844,-0.38353106,0.19914845,-0.14811707,0.24708699,-0.5186854,0.0027796456,-0.101299345,0.05083528,0.16675226,0.25915155,-0.6132949,0.11533018,0.31189027,0.91068065,-0.36252922,0.06774091,0.3553761,1.1416867,0.92034096,0.036869287,1.0332279,0.43457723,-0.367264,0.37091032,-0.6424762,-0.5483106,0.16837457,0.37451163,-0.027519856,0.3572058,-0.17715335,-0.05471274,0.24431084,-0.31603485,0.18400201,-0.117975794,0.14090802,0.100813374,-0.026141929,-0.5705922,-0.16573368,-0.13012291,-0.14071031,-0.034500495,0.20251401,-0.2530726,0.12476875,-0.25584966,1.705634,0.04565056,0.19590138,0.15152988,0.61314213,0.17185126,-0.22907655,-0.026321292,0.43124732,0.26616064,0.0504329,-0.59882385,0.5220348,-0.2506929,-0.47555342,-0.011519296,-0.37614325,0.13187243,0.11702969,-0.4648786,-0.0085191745,0.040543977,-0.2520867,0.4748341,-2.8121846,-0.17373344,-0.07417364,0.30868927,-0.37209696,-0.1756115,-0.19998395,-0.40827227,0.19308901,0.36764738,0.4927895,-0.6567718,0.44709212,0.4337816,-0.4172246,-0.17721115,-0.73542184,-0.04310582,-0.12141367,0.2099792,0.055717263,-0.16497286,-0.107051015,0.2521104,0.72210026,0.0015209743,0.0844534,0.272297,0.31058088,0.17785203,0.65906066,0.010552096,0.42538705,-0.36557707,-0.25336352,0.31546935,-0.29189438,0.18178247,0.0013754964,0.007511769,0.3330896,-0.44509643,-1.0823482,-0.6483488,-0.52093655,0.8494984,-0.36736244,-0.44130185,0.2751965,0.0728805,-0.009925349,-0.007287576,0.49906746,0.071866326,0.27382937,-0.72674817,0.19414201,-0.11108421,0.27127782,0.18167713,0.0010598089,-0.34441543,0.60519713,-0.06564313,0.5016075,0.34836882,0.13734512,0.06749194,-0.262994,0.13989897,0.7878395,0.11270119,-0.045338035,-0.024640236,-0.31178445,-0.019498298,-0.13430923,0.022159917,0.40239254,0.85512483,-0.15513262,0.07716139,0.28911778,0.009626435,-0.07205843,-0.07685077,-0.35194537,0.09012864,0.13133824,0.44399518,0.6913982,-0.19918895,0.43142053,-0.15894802,0.48295003,-0.013049705,-0.3866407,0.5434697,0.4034727,-0.06692291,0.10314345,0.469165,0.50144786,-0.51791364,0.50115544,-0.7227283,-0.15203308,0.6877726,-0.14922287,-0.43421674,0.20586522,-0.28984335,0.13028994,-0.8456221,0.4538482,-0.274692,-0.061960142,-0.35310766,-0.31302074,-3.5162508,0.27307537,-0.17961387,-0.0842507,0.023336694,0.19549267,0.3619015,-0.7064904,-0.47320792,0.023848768,0.21003297,0.43691415,-0.025289426,0.024872933,-0.36228076,-0.13044252,-0.20864697,0.24863347,0.06589888,0.28405717,0.05210415,-0.39620516,-0.011619951,-0.1173567,-0.51955634,0.28964877,-0.5580648,-0.43669754,-0.20186567,-0.5740641,-0.3675908,0.61074924,-0.24674559,0.02105719,-0.13116108,0.19428231,-0.24552284,0.3221767,0.2479614,0.26453868,0.05382424,-0.045356546,-0.024652991,-0.2679948,0.40331215,0.023420205,0.39822325,0.041591473,0.09034133,0.14182971,0.43193325,0.63252896,-0.035488967,0.7042154,0.44572562,-0.16219044,0.18944873,-0.49483648,0.013029269,-0.56193787,-0.5501692,-0.13123314,-0.26803854,-0.63682896,-0.0024165085,-0.2862598,-0.6682962,0.55859035,-0.23332909,0.21585107,0.012216737,0.19673955,0.3914504,-0.27552468,-0.0070801377,-0.043464996,-0.056461375,-0.6429605,-0.17807862,-0.59110737,-0.44224244,0.3270455,0.83503884,-0.3253014,0.06607835,-0.0019187842,-0.2516692,-0.035956662,0.12721159,0.091210365,0.36265984,0.45150423,-0.092209406,-0.5812785,0.36140653,0.04737085,-0.21090868,-0.5631422,0.15379597,0.66462845,-0.8251039,0.74808407,0.22324266,0.26417607,0.08813543,-0.45745888,-0.42865896,0.20735863,-0.14700043,0.4183507,-0.19138496,-0.7231373,0.32226723,0.47819504,-0.5255251,-0.5326032,0.22927086,-0.12276188,-0.45484358,-0.038956486,0.2466283,0.024571726,-0.10692622,-0.16917118,0.2039589,-0.5146797,0.12512344,0.29494557,-0.047498304,0.38910946,0.022378232,-0.27326375,-0.7323691,0.16845801,-0.41123977,-0.332766,0.4375534,-0.00859225,-0.08103128,0.18334821,0.10871097,0.3546367,-0.08309175,0.057746347,0.054792147,-0.27197206,0.3032658,0.41028532,0.31471857,-0.42143854,0.49056047,0.05953343,-0.21300589,-0.11065517,-0.12613675,0.35335234,-0.028581321,0.34159318,-0.34318638,-0.2828943,0.5025598,0.50408834,0.15007725,0.3122261,0.0068143522,-0.03899843,0.48698384,-0.037721984,-0.22097151,0.02699479,-0.33509544,0.05436796,0.13216878,0.20735379,0.37318596,0.31044754,0.23660849,0.0570517,-0.14897755,0.06764179,0.42334884,-0.17054021,-0.64105093,0.4459086,0.24128519,0.58358985,0.590642,0.12815121,-0.2597697,0.6650843,-0.28879595,0.08037873,0.42076904,-0.061015278,-0.52673584,0.7689686,-0.49180606,0.38954428,-0.15242729,-0.029179862,0.032101598,-0.00032117963,0.4077299,0.6406926,-0.21679108,-0.018890325,-0.100844204,-0.05583913,-0.042061474,-0.28448424,0.1569803,-0.52053326,-0.4046609,0.781004,0.29357678,0.33594847,-0.12074191,-0.100157626,0.10633886,-0.13002245,0.4399065,-0.1540653,-0.06907471,0.3918038,-0.56653553,-0.13910331,0.5404657,-0.24865733,0.0149829155,-0.15187526,-0.32502842,0.011378025,-0.28241286,-0.041719727,-0.011105989,-0.597106,0.14450932,-0.31173548,-0.37085587,0.45753127,-0.21806489,0.29367107,-0.010767276,-0.0029320589,-0.18078348,0.36453947,0.023220036,0.9057477,-0.02360073,-0.21717712,-0.2889275,0.115797095,0.16095582,-0.16586702,0.035409845,-0.37251145,-0.06296877,-0.5653347,0.6177939,-0.013724102,-0.42893752,-0.008763618,-0.17190407,-0.09246737,0.65416116,-0.22288588,-0.28094697,-0.19284019,-0.2585897,-0.336311,0.06351761,-0.21434997,0.2820985,0.101599045,-0.066461235,-0.09587854,-0.14802383,0.0077027893,0.67750615,-7.599592e-06,0.36247468,0.12021177,0.14885418,-0.15819427,0.0676735,0.06864255,0.33491126,0.2486812,0.045805123,-0.36354828,-0.31275305,-0.22801399,0.11554883,-0.19808742,0.26369607,-0.022598024,-0.28964138,0.9037324,0.015768697,1.3572845,-0.033122815,-0.21610034,-0.01092164,0.46864027,-0.10253199,0.18359764,-0.45106864,0.85960704,0.68636125,-0.113516144,-0.19382308,-0.2747965,-0.2231542,0.25479883,-0.29371026,-0.015014576,-0.052519374,-0.67550373,-0.43080023,0.14613257,0.23345204,0.28935137,0.040548008,0.09623618,-0.114297345,0.12962012,0.3162776,-0.38038418,-0.30835268,0.20585395,0.3267329,0.034116983,0.18680704,-0.37599263,0.39880106,-0.5345482,0.34309644,-0.4788839,0.02368156,-0.090567484,-0.4115083,0.1070927,-0.039333224,0.2925568,-0.2012461,-0.31724292,0.049221013,0.53421134,0.18265793,0.22235426,0.83724326,-0.2740291,0.05423412,0.05006957,0.5224175,1.3464211,-0.48870543,-0.10804061,0.41526356,-0.2650402,-0.6577839,0.41486773,-0.3870211,-0.25221008,-0.20625417,-0.5230173,-0.5488926,0.21223608,0.12243683,-0.19642605,0.03322279,-0.45245305,-0.18260396,0.2690088,-0.279257,-0.25976235,-0.31119865,0.5259591,0.8869051,-0.19561012,-0.29862994,0.10657967,0.19380602,-0.35191825,-0.337039,0.007978218,-0.21364538,0.279964,0.18635651,-0.2313082,-0.020517755,0.2407907,-0.38018936,0.008026545,0.1754415,-0.41251352,0.17674555,-0.19001628,-0.24453466,0.90082747,-0.0731399,-0.220938,-0.5574312,-0.47459182,-1.0766752,-0.4973891,0.54956883,-0.0335302,-0.062386747,-0.18106723,0.10563701,0.057655293,-0.21725486,-0.054026537,-0.5244869,0.2597176,-0.04164321,0.5494136,-0.30931917,-0.68454486,0.15300176,0.21225087,0.017635534,-0.6823807,0.5228495,-0.120366156,0.83447236,-0.06418399,-0.13310628,0.09028188,-0.34777325,0.04240036,-0.40190887,-0.21613058,-0.85242116,-0.056022532 -72,0.5998787,-0.09736959,-0.46489605,-0.18447693,-0.4184846,-0.14774792,-0.3916715,0.2283288,0.16007414,-0.35571274,-0.2678434,-0.16257082,0.07800256,0.36133385,-0.14131571,-0.78029907,-0.13528456,0.09411752,-0.66936976,0.74659663,-0.45496812,0.42541957,0.13614237,0.30235332,0.19604978,0.47606033,0.40535232,-0.06390251,-0.11094107,-0.10192065,-0.03228428,0.08205073,-0.78836685,0.13364498,-0.33185658,-0.23999503,0.26865277,-0.49358127,-0.24817295,-0.8410892,0.16697113,-1.0029948,0.3698573,0.069113575,-0.07444636,-0.08525995,0.35888466,0.25703743,-0.33103797,0.039715372,0.18407093,-0.24864827,-0.064607784,-0.29321554,-0.22937012,-0.43524843,-0.51546466,-0.15698422,-0.61351734,-0.37066507,-0.22625992,0.24809565,-0.41946724,-0.07278409,-0.15103066,0.47645664,-0.48784283,0.070755124,0.4542272,-0.22996582,0.12803301,-0.5491354,-0.07461778,-0.15681635,0.39843684,0.07773226,-0.08526976,0.50403506,0.292679,0.36369577,0.31392947,-0.4098709,-0.28432932,-0.2706304,0.44087175,0.366116,-0.021259068,-0.23487937,-0.26965243,-0.014730628,0.24895875,0.5247632,0.16807339,-0.36132875,0.0285276,-0.13522403,-0.11400425,0.52354205,0.56921226,-0.25671348,-0.38196436,0.14996009,0.71692556,0.3375973,-0.35490134,-0.03416307,-0.13377246,-0.4653795,-0.0878449,0.3453927,-0.17606726,0.6455415,-0.09017919,-0.15468849,0.8625951,-0.1405843,-0.008286374,-0.26810178,-0.051639788,-0.1543354,-0.43826458,-0.16914189,0.3245348,-0.5201146,0.20870425,-0.3012453,0.72148865,0.23856774,-0.76081175,0.31839532,-0.64328784,0.1696795,-0.05593037,0.64921343,0.51281816,0.37987947,0.48043424,0.84632397,-0.3344243,0.3053765,0.028742423,-0.36289328,-0.083766334,-0.33703524,0.15866935,-0.3521793,0.2361277,-0.44697142,0.113949165,-0.04552216,0.3972921,-0.37610194,-0.17415906,0.37535587,0.89515704,-0.32733887,-0.06188327,0.5653453,1.1144778,1.2083472,-0.032841574,1.1370447,0.38560015,-0.23183978,0.026485596,-0.17475198,-0.61864287,0.20724058,0.39614147,-0.040716715,0.27783605,-0.13450828,0.05674197,0.28146514,-0.36600855,-0.011624055,-0.08275775,0.17382291,0.19894901,-0.05633726,-0.43543467,-0.124686785,0.07294471,-0.11064483,0.16139106,0.26709777,-0.13798466,0.31336913,-0.033990737,1.3366617,-0.0100946175,-0.017405272,0.3382794,0.59053487,0.4167676,-0.07068866,0.07390285,0.60521567,0.31669173,-0.036741853,-0.60727215,0.17442942,-0.49956125,-0.58134615,-0.082128845,-0.43754748,-0.099903755,0.18418896,-0.39182332,-0.06040333,-0.021109203,-0.14362244,0.382926,-2.4385324,-0.23284422,-0.23456566,0.2243226,-0.4633523,-0.13913836,-0.18444397,-0.5625115,0.24818063,0.22369182,0.54481256,-0.49176946,0.4838652,0.6038448,-0.5630658,-0.105436616,-0.6319317,-0.03295643,-0.14688206,0.60997784,-0.16001315,-0.111091636,-0.06079791,0.18669067,0.84948605,0.33370408,0.21848917,0.46639445,0.392972,0.06825849,0.61580884,0.020776497,0.46503472,-0.34469372,-0.12737335,0.4781668,-0.28263125,0.5188304,-0.19852276,0.17947343,0.63550144,-0.47158757,-0.9349197,-0.6055624,-0.6211395,1.023655,-0.4831968,-0.6028903,0.13473785,0.11932965,0.031904902,0.02890082,0.51023644,-0.17165828,0.2844688,-0.6073996,0.037080806,0.010797292,0.2855542,0.14435354,0.19681029,-0.22147454,0.8329348,-0.042563338,0.5275749,0.24680114,0.24016371,-0.103762925,-0.48673034,0.09672811,0.5811898,0.18781415,-0.044461768,-0.37200317,-0.29866776,-0.07039392,-0.2727138,0.036605176,0.5935241,0.7580438,-0.20640251,0.043138117,0.3241306,0.0061478848,-0.019023938,-0.2435276,-0.33137992,-0.08593019,0.11078768,0.37819856,0.8109446,-0.13967504,0.31431013,-0.1128719,0.35414913,-0.05004704,-0.4923685,0.64691395,0.76110584,-0.12599394,-0.06860957,0.4842357,0.4865799,-0.5709983,0.63202685,-0.7804928,-0.13852666,0.7845572,-0.24591589,-0.42816538,0.11724174,-0.29936367,-0.00859522,-0.7682065,0.19510531,-0.38779333,-0.036176316,-0.26306197,-0.2065067,-2.981611,0.23165719,-0.07404055,-0.098294385,-0.27630207,0.020066116,0.18748029,-0.6241356,-0.7270122,0.19159664,0.15252443,0.4457586,-0.109944165,0.12543651,-0.32546154,-0.28592423,-0.20467456,0.24328451,0.023163542,0.29617137,-0.22589014,-0.3761726,-0.029181395,0.002339695,-0.5726082,0.13190031,-0.4136561,-0.4175761,-0.23202859,-0.49459198,-0.1704433,0.45976257,-0.45019498,0.071718104,-0.06572186,0.04469853,-0.20967208,0.05947301,0.23132558,0.5513285,0.19586943,-0.053785782,0.012582625,-0.28193003,0.5883115,-0.029335981,0.2970474,0.14464249,0.02211569,0.051186237,0.28883794,0.641575,-0.20832923,0.9442131,0.25668374,-0.038254727,0.26771712,-0.26373568,-0.27214417,-0.88737917,-0.2707704,-0.2234769,-0.3508092,-0.6898237,0.024865756,-0.33803496,-0.8717928,0.5593492,-0.053835124,0.53401697,0.024544254,0.27201712,0.4947844,-0.3625486,0.05557757,0.05760296,-0.15057048,-0.622376,-0.47537234,-0.6962987,-0.44603348,0.19738577,0.79825515,-0.31281042,-0.34036347,-0.140264,-0.38565275,0.03996403,0.23094332,-0.002211081,0.14655903,0.5568465,0.34771964,-0.5991999,0.43194738,0.09981424,-0.17266633,-0.3746221,0.15872063,0.52454996,-0.75322974,0.7547916,0.35934106,0.14988457,-0.05683032,-0.81905204,-0.26208207,0.05162997,-0.11771919,0.48716497,0.1833153,-0.8283717,0.3882886,0.16967587,-0.6064922,-0.8116284,0.40793,-0.07082871,-0.388508,-0.09021231,0.45363468,0.10899446,-0.1478295,-0.2426985,0.2890408,-0.45630032,-0.010808809,0.43530008,-0.08310542,0.10910436,-0.20697974,-0.35252967,-0.7881337,0.055129886,-0.4848462,-0.27425304,0.43378687,-0.20888236,-0.17356344,0.08757387,0.26224083,0.38342413,0.013693767,0.18394804,-0.104980126,-0.28495607,0.45776346,0.45792374,0.44922313,-0.43663603,0.6202827,0.13177316,-0.274671,0.17448425,0.16708632,0.22874475,0.0888732,0.2916803,-0.04901323,-0.02779159,0.1806237,0.62135804,0.33391228,0.39806494,0.18901297,-0.28480878,0.644421,0.014150947,0.15404813,-0.21291542,-0.47737703,-0.062630825,-0.09012873,0.08828764,0.54562956,0.13364659,0.40486008,0.058637913,-0.056524403,0.14763403,0.40197325,-0.10926819,-0.8389586,0.21255076,0.13070346,0.93524796,0.54595435,0.1452718,-0.16914213,0.539797,-0.18769087,0.1558788,0.5288848,-0.038934145,-0.5244528,0.7461648,-0.33504364,0.28455716,-0.26853403,-0.042907674,0.18501297,0.35902762,0.49956605,0.8078479,-0.29008695,-0.08871965,-0.12800977,-0.11841797,0.026717177,-0.30832556,0.037983473,-0.2244683,-0.5184197,0.71931094,0.45912188,0.38333222,-0.31363198,-0.16752653,-0.06679136,-0.21048678,0.32370886,-0.035575025,0.011234055,0.13114369,-0.49160177,-0.2279195,0.57818276,-0.30742782,0.12370861,-0.21585901,-0.33716363,0.07205462,-0.19463842,0.04784458,0.040501717,-0.92383397,-0.043131012,-0.122704275,-0.72210926,0.31583962,-0.22472873,0.045529168,0.24126542,-0.107510634,-0.25675908,0.32770878,0.113315925,0.82045335,-0.07071169,-0.26339132,-0.30793962,0.08023553,0.22759198,-0.23641108,0.24498889,-0.2956592,0.19258682,-0.52791804,0.665605,-0.12894927,-0.4089845,-0.00038832214,-0.24302337,-0.23462395,0.8493849,-0.1673495,-0.23162071,-0.13660526,-0.29616508,-0.47581965,-0.09511566,-0.2660291,0.10748414,0.0921473,-0.16935284,-0.17227241,-0.1338774,0.13401008,0.5233529,-0.05948639,0.3673219,0.20820162,-0.03978232,-0.2898633,0.054660533,0.18636505,0.46431094,0.17543313,-0.022927072,-0.2759148,-0.45438042,-0.3306704,0.16893058,-0.17332508,0.21851945,0.122277535,-0.2593391,0.8913234,0.13523033,1.2096384,0.10392288,-0.3431889,0.112853326,0.5870082,-0.14753686,-0.032039713,-0.3653638,0.9076508,0.61066544,-0.19544086,-0.045583904,-0.33442768,-0.102309585,0.05689883,-0.44230816,0.017807378,-0.008298549,-0.5058131,-0.28051308,0.116833314,0.30601785,0.09800548,-0.20474456,-0.12653336,0.016672662,0.23730345,0.5474401,-0.60068434,-0.38643262,0.17112671,0.08935185,0.008952694,0.108520575,-0.24153244,0.419795,-0.75221545,0.39025325,-0.61158454,0.07975477,-0.30307263,-0.37454182,0.14666381,-0.033371504,0.47167334,-0.4035416,-0.3538788,-0.1756804,0.41527694,0.10452942,0.25438252,0.6422429,-0.28487423,0.24495329,0.12655516,0.66830355,1.2927595,-0.42184767,0.0014575379,0.2717519,-0.517569,-0.7076942,0.38110238,-0.5267372,-0.009575988,-0.22804509,-0.525506,-0.5337189,0.1452781,0.11914192,-0.053872805,0.1359379,-0.72526824,-0.109480105,0.33622614,-0.26139104,-0.16297935,-0.13322121,0.36962053,0.88962156,-0.16363516,-0.3451817,0.035820268,-0.01380653,-0.30269024,-0.5932396,-0.0034577337,-0.19416274,0.367528,0.08980163,-0.19802345,0.036481448,0.3556688,-0.5839632,0.0773458,0.14362113,-0.30914822,0.027920995,-0.1934651,0.038784277,0.8875629,-0.19656943,-0.2780146,-0.5629034,-0.542852,-1.0140582,-0.4409991,0.4079087,-0.02167956,0.2150192,-0.22981152,0.13895808,-0.2282532,-0.088882886,0.06656702,-0.5753435,0.32528868,0.21028201,0.5907453,-0.32627112,-0.9361834,0.07759022,0.17660926,-0.09668004,-0.6170835,0.5213523,-0.1776662,0.8389928,0.0513419,-0.2537896,-0.11820854,-0.43844137,0.20259705,-0.43606454,-0.12658907,-0.6895476,0.13786143 -73,0.37101525,-0.020502785,-0.53490233,-0.12772962,-0.19635257,0.19145085,-0.24222046,0.43046984,0.22007892,-0.5211383,0.095621854,-0.09279136,-0.0018591901,0.44327742,-0.21956673,-0.57409453,0.12984496,0.07714869,-0.5077654,0.374839,-0.46688405,0.37078342,0.06825744,0.19113144,0.12726085,0.2939148,0.13248697,-0.08424008,-0.2911931,-0.14505889,-0.24223427,0.32906702,-0.3273424,0.1859448,-0.066311926,-0.2954233,-0.03918122,-0.4368561,-0.2236241,-0.61263794,0.011148437,-0.63192403,0.5644658,-0.07801566,-0.3094984,0.19409184,0.31298822,0.20466107,-0.10827555,-0.029888451,0.06432014,-0.21530904,-0.17110255,-0.120772734,-0.4910091,-0.53704673,-0.6739648,0.015768072,-0.54601645,-0.081350654,-0.23227192,0.22715896,-0.27218905,-0.08535776,-0.14582881,0.4651677,-0.3197841,0.12532924,0.20192423,-0.19644101,0.21916516,-0.5344561,-0.17619887,-0.027772542,0.16558048,-0.12104367,-0.28052947,0.25412753,0.6190622,0.44096965,0.031607643,-0.30067146,-0.62494737,-0.123687014,0.08795222,0.6181608,-0.24451208,-0.3136839,-0.18300408,-0.0029710373,0.33861917,0.3229355,0.12372543,-0.35414112,-0.12713844,-0.009748,-0.36800003,0.34185186,0.45683947,-0.46839035,-0.16138329,0.54474235,0.43279603,0.07587768,-0.25297776,0.12227387,-0.019685635,-0.5220006,-0.10172636,0.20691206,-0.070557676,0.55438703,-0.22144032,0.22080907,0.61652756,-0.12760527,-0.17371865,0.17040803,0.12316649,-0.06073342,-0.26896587,-0.14451598,0.10202589,-0.5483913,-0.040035024,-0.13883495,0.69557774,0.0847623,-0.8632221,0.43418396,-0.40737286,0.052926775,-0.04088383,0.3364172,0.720418,0.5740095,0.111060634,0.66946495,-0.43558538,-0.071561255,-0.18544057,-0.3714526,0.1143348,-0.042910475,0.11855466,-0.586607,0.12720187,0.08227228,-0.050309442,0.24363557,0.34175763,-0.46974772,-0.12789336,0.20735715,0.69659084,-0.33677313,-0.3737847,0.6324205,0.9603442,1.1025335,0.05314083,1.182592,0.17826988,-0.049236078,0.085524745,-0.40652484,-0.5097365,0.26064855,0.32505652,-0.50912565,0.37076822,0.05010831,0.07871596,0.43068376,-0.06803021,-0.09995704,-0.08323055,0.30739796,0.11356854,-0.11398151,-0.4568969,-0.37558308,0.013131659,-0.13069186,0.21576768,0.2601601,-0.24647102,0.44532034,0.1600578,1.5404153,-0.019654667,0.113994665,0.06624215,0.26423037,0.2054162,-0.1514713,-0.15495077,0.28994086,0.262015,0.14978312,-0.3277387,0.026139371,-0.20350692,-0.4434911,-0.11730375,-0.36048248,-0.025714926,-0.12634827,-0.4337816,-0.23071574,0.0036389192,-0.4413334,0.5942258,-2.8995295,-0.25515363,-0.15442571,0.27750906,-0.19793753,-0.52264094,-0.20240264,-0.56383353,0.42252558,0.18789044,0.45469007,-0.5415295,0.32724845,0.42295507,-0.40851766,-0.25337446,-0.6599182,-0.03735942,-0.12812334,0.25109702,0.0026408513,-0.07608129,0.023622382,0.18378463,0.5375501,-0.27984795,0.11232253,0.27611586,0.22947647,-0.02280782,0.4456019,-0.17166771,0.748472,-0.23152825,-0.21691494,0.24498695,-0.41848314,0.15895382,0.033627708,0.1984021,0.5464944,-0.33694676,-0.7530088,-0.62369156,-0.11890601,1.1328568,-0.23306488,-0.2671951,0.18527764,-0.24177796,-0.48510754,-0.064457946,0.3125524,-0.04506635,-0.05474937,-0.677344,-0.023535881,0.003982139,0.18033287,-0.16293465,0.013272727,-0.36210912,0.41716304,-0.06489244,0.4829685,0.41083214,0.20826094,-0.5176671,-0.40635172,-0.07442415,0.99060017,0.3916977,0.16421178,-0.22344695,-0.32378775,-0.31276506,-0.16204032,0.14953035,0.444269,0.5294551,-0.078459285,0.10764739,0.29240605,-0.032393508,0.037871905,-0.05912765,-0.24559921,-0.0138778025,0.16605493,0.45994645,0.51530796,-0.09601132,0.5125638,-0.12588574,0.2576236,-0.17366512,-0.54874665,0.47919783,0.9066271,-0.2899925,-0.4054604,0.73279977,0.26366073,-0.10846696,0.3908771,-0.45753238,-0.39204082,0.48398897,-0.22297613,-0.21597055,0.15058216,-0.2888983,0.1032096,-0.74528867,0.26806882,-0.17879131,-0.5517472,-0.33183414,-0.09523948,-3.505874,0.108418174,-0.113248155,-0.15428872,0.2001573,-0.14407247,0.25119895,-0.59907424,-0.4775446,0.17634328,0.18619499,0.61320883,-0.16382718,0.041461643,-0.19359586,-0.38958377,-0.26168102,0.23507933,0.011726729,0.36917722,0.027619096,-0.42564967,0.15202549,-0.25569004,-0.45693868,0.1510757,-0.69989944,-0.3474315,-0.14291443,-0.54055864,-0.45431468,0.7885024,-0.63324076,0.13922663,-0.24989511,0.071798034,0.00949926,0.30342808,0.012706162,0.17116866,0.05569329,0.08228385,0.07964326,-0.31877998,0.27503204,0.11553987,0.30497694,0.5881454,0.018078387,0.28267306,0.67343545,0.7056348,-0.03924467,0.83703077,0.41772595,-0.05901664,0.33819112,-0.29946545,-0.20150803,-0.4467165,-0.42995775,-0.044379424,-0.48993176,-0.32118353,-0.119752556,-0.25547704,-0.7330392,0.5232109,0.09117285,0.09874077,-0.16596128,0.25172073,0.40917575,-0.39073002,0.018365623,-0.09494252,-0.2202959,-0.35365131,-0.41756856,-0.65145326,-0.5155628,0.20488568,1.0248497,-0.23592159,0.07375622,0.040126063,-0.19985208,-0.07614001,0.20078899,0.11040783,0.24030592,0.3591185,-0.16615216,-0.59736484,0.2826333,-0.35303545,-0.15206917,-0.43883163,0.2880987,0.746899,-0.56042176,0.4834439,0.4200212,0.13849871,-0.31913197,-0.58677316,-0.24692927,-0.10800593,-0.32254475,0.523553,0.2294775,-0.84631604,0.47160968,0.369216,-0.37150756,-0.6626944,0.48108637,-0.057865195,-0.009409499,-0.07900108,0.37102494,0.23089613,0.07902112,-0.055816993,-0.003631417,-0.43482095,0.21609841,0.34962183,0.117748566,0.4374865,-0.2927449,-0.022709083,-0.7918611,-0.18524386,-0.30999464,-0.37119916,0.11350589,0.050327387,0.12082853,0.12498644,-0.1201427,0.31912547,-0.4175046,0.12079332,-0.09787287,-0.14622097,0.24632482,0.3994648,0.38757032,-0.24961041,0.57511646,0.023573864,0.04402118,-0.19601555,-0.0739693,0.5575567,0.18803024,0.28838715,-0.044987068,-0.27442577,0.29666469,0.5933163,0.13449948,0.22577305,0.14381342,-0.22296324,-0.06327006,0.034142174,0.2082071,0.12743346,-0.4153751,-0.12413774,-0.42266467,0.23042104,0.6455967,0.07693785,0.3144273,-0.09955765,-0.15646024,0.07206986,-0.020427385,0.0010577679,-1.313824,0.33596584,0.18124256,0.63746995,0.30610168,0.13244794,-0.06791653,0.64164263,-0.26458794,0.23251304,0.33343887,-0.11986225,-0.37698954,0.61250556,-0.8367987,0.44029772,-0.0052164514,0.05876945,0.013764886,0.041449904,0.3892681,1.0180379,-0.20537402,0.13383992,0.088266484,-0.38020712,0.17528082,-0.2882429,0.14047973,-0.4679154,-0.3592697,0.6826267,0.34082603,0.5397338,-0.115410954,0.0016006768,0.19195685,-0.20817299,0.12613282,-0.048632864,0.19260646,-0.19730534,-0.46968573,-0.18382506,0.5854216,0.1643975,0.2413936,0.19609271,-0.18682735,0.2818841,-0.19777413,0.0063765724,-0.08601473,-0.556836,-0.22716025,-0.24897034,-0.49515,0.35869014,-0.34348235,0.24097878,0.14256062,0.067352965,-0.23916815,0.5813853,0.3658851,0.7196676,-0.0898498,0.008073028,-0.15420333,0.16565183,0.18330942,-0.12883736,0.06143191,-0.39256462,0.007995278,-0.67407924,0.28132325,-0.12664035,-0.3036685,-0.05316545,-0.025504239,0.18929379,0.5287067,-0.19310325,-0.08187963,-0.009749196,-0.039114773,-0.31590697,-0.28386408,-0.07618405,0.24393658,0.15764324,-0.1096319,-0.086535245,-0.24687372,-0.1768262,0.059061933,0.052420378,0.23376893,0.26026058,0.13707513,-0.30734506,0.024970882,0.0853324,0.44472015,0.15450332,-0.16687225,-0.31821305,-0.23729691,-0.2805276,0.11583209,-0.105753325,0.28086412,0.005523029,-0.26588506,0.8238961,-0.21349144,1.283669,0.17319778,-0.48001805,-0.04830326,0.33723906,0.030435944,0.0813862,-0.20666392,0.9373702,0.5304961,-0.06899156,-0.025022693,-0.4480168,-0.11082913,0.21510509,-0.2207699,-0.21863437,0.034068756,-0.47437117,-0.26748174,0.21324149,-0.14652608,0.24866576,-0.12315379,0.022946903,0.31448337,0.122245386,0.4137994,-0.34366494,0.18144748,0.24285768,0.47488517,0.03479262,0.19118303,-0.47460416,0.4030538,-0.53042525,0.19389854,-0.24511118,0.24566428,-0.19973667,-0.17030858,0.28029355,0.051830392,0.2651776,-0.13907741,-0.40560332,-0.10111,0.6066002,0.039897513,0.10088525,0.83124375,-0.2112008,-0.0022537052,0.003049906,0.37312567,1.0060279,-0.33484256,-0.035449743,0.5453358,-0.24431856,-0.79363257,0.30643,-0.3836401,0.18816288,0.010983435,-0.27543196,-0.24148543,0.26960385,0.2631968,0.19330734,0.09790695,-0.34174284,-0.00020588239,0.23566955,-0.36199084,-0.22376095,-0.24900647,0.1211439,0.46792772,-0.36588493,-0.45637926,0.09061416,0.2317604,-0.13456567,-0.4665785,0.056119807,-0.25242862,0.23179425,0.22292253,-0.28208816,-0.0044079623,0.005695047,-0.3112373,0.02669816,0.17307287,-0.29881114,0.13968942,-0.31476307,-0.114739574,0.78886604,-0.1034111,0.18230683,-0.6224495,-0.55255467,-0.7741305,-0.2707066,0.20105648,0.08289316,-0.09913068,-0.5668132,-0.08780031,-0.10456062,-0.16757737,0.0025968591,-0.5149179,0.4851952,0.13469668,0.2344274,-0.07932099,-0.78191227,-0.048950814,0.19423176,0.02669354,-0.5329076,0.46740702,-0.2081274,0.9253798,0.20052518,0.10671527,0.33410168,-0.44967607,0.28893146,-0.24823596,-0.17636825,-0.55781925,-0.06939951 -74,0.46532652,-0.2612812,-0.5616434,-0.2789171,-0.23261906,0.037294414,-0.22700123,0.20462751,0.3424595,-0.3861164,-0.27243087,-0.14855325,0.21924382,0.13793467,-0.12053799,-0.7436494,0.020918516,0.17215274,-0.79264885,0.36135724,-0.65563637,0.33418375,0.21705046,0.25093117,-0.030358959,0.37688872,0.2832398,-0.27315736,0.0111166565,0.016537601,-0.028111609,0.22138904,-0.71299005,0.06548814,-0.2744907,-0.39177704,0.032319754,-0.6135354,-0.30550072,-0.7585306,0.32711688,-1.1036285,0.5758126,0.15765776,0.055321597,-0.07678315,0.22716548,0.18202405,-0.40621722,0.20564723,0.19974166,-0.23428293,-0.13463913,-0.33935297,-0.089224175,-0.537092,-0.45230874,-0.08694743,-0.7491047,-0.3617587,-0.27398348,0.1353359,-0.32190284,-0.11090734,-0.03294493,0.30642754,-0.4205682,0.023955507,0.40064487,-0.2671378,0.41014624,-0.48755524,-0.009028359,-0.13793577,0.5771997,-0.16318399,-0.48792088,0.32411626,0.46057165,0.42919683,0.22038986,-0.22130409,-0.105806135,-0.06718382,0.2823951,0.505961,-0.12065969,-0.48903492,-0.29176834,-0.04445453,0.21759821,0.39479294,0.12625848,-0.34158966,0.08781617,-0.015082463,-0.31355307,0.6097016,0.66329193,-0.16043134,-0.33055916,0.19748689,0.34015292,0.3422011,-0.17540416,0.21384653,0.03812969,-0.63846934,-0.29276013,0.28942797,-0.07049294,0.66060406,-0.24810523,0.26387832,0.9112997,-0.3245584,0.18776374,0.059499387,-0.012382757,-0.23361334,-0.15749876,0.09193988,0.1265499,-0.7308807,-0.01853303,-0.40318662,0.6862705,0.29008773,-0.603839,0.42137402,-0.64385486,0.2110338,-0.20410009,0.59104705,0.83854336,0.31861764,0.32470343,0.73063827,-0.42081812,0.13628593,-0.06602585,-0.60777134,0.20249447,-0.20068437,0.019829296,-0.32669356,-0.07814714,0.0062856455,0.29352567,0.066520005,0.49248973,-0.54764616,-0.11230226,0.16799286,0.85829335,-0.35350272,-0.12300696,0.645487,1.0672238,0.7215742,0.25355792,1.4027294,0.2502715,-0.1851231,0.20433135,-0.025737183,-0.9115492,0.2692603,0.29992852,-0.25791568,0.33884907,-0.042503264,-0.14870419,0.09751672,-0.4612751,-0.031128563,-0.05463976,0.31597078,0.08360257,-0.123002656,-0.19387184,0.00035266037,-0.09838323,0.0023311106,0.08804596,0.12514967,-0.18807974,0.16756004,-0.027882023,1.0870446,-0.049442507,-0.03011461,-0.008305907,0.56815237,0.3431945,0.058966074,-0.064570166,0.5807795,0.46872061,0.16889422,-0.71461725,0.19792838,-0.18051195,-0.39585355,-0.09384329,-0.46171921,-0.122564696,0.045242038,-0.48376778,0.027108707,-0.000923872,-0.39083737,0.43521345,-2.6867263,-0.345475,-0.04595078,0.5136783,-0.25902075,-0.053569492,-0.3888529,-0.51434857,0.23625742,0.28626853,0.550776,-0.71125346,0.5081104,0.52122045,-0.47862294,-0.20514302,-0.7714741,-0.04316981,-0.12067164,0.31330964,0.061589673,-0.11051259,0.015283349,0.095141344,0.7289228,0.16739121,0.10199132,0.33753517,0.6116785,0.15250678,0.63889074,-0.18503295,0.5179882,-0.45709422,-0.18293294,0.27481976,-0.34974498,0.2133214,-0.14308923,0.038335934,0.58921695,-0.4856782,-1.0556171,-0.5995474,-0.41274574,0.9869116,-0.46333846,-0.33778393,0.21196173,-0.22676812,-0.10777685,0.05298336,0.8828022,-0.010259463,0.34452394,-0.7441955,-0.017461706,-0.022793304,-0.0413906,0.10302754,0.08571868,-0.27273858,0.68587166,0.04520532,0.5909149,-0.041116558,0.25450185,-0.32773122,-0.5694447,0.2606517,0.9362622,0.18498248,0.1018548,-0.11723442,-0.24643922,-0.34063497,-0.09400051,0.039228797,0.7413035,0.7420933,-0.1366127,0.3692125,0.4360915,0.15224132,0.071685515,-0.23534237,-0.187369,-0.1039099,-0.060870703,0.42109412,0.6904344,-0.20374455,0.3567419,-0.14518562,0.38691255,-0.23631282,-0.47305843,0.77483326,0.84034383,-0.10658519,0.07832564,0.35992935,0.51830983,-0.6282678,0.49587324,-0.64181846,-0.4385315,0.7692631,-0.079215296,-0.5178829,0.31493416,-0.3058735,0.1348057,-0.7749151,0.40183544,-0.20780586,-0.32953566,-0.2222033,-0.22925945,-3.9258993,0.18441604,-0.16018362,-0.16557914,-0.45951942,-0.0020807276,0.36006248,-0.5031303,-0.5316009,0.20148927,0.072363935,0.70894957,-0.22439003,0.19276558,-0.34833145,-0.06257996,-0.14639562,0.20333296,0.0547917,0.287692,-0.2299239,-0.3538885,-0.0052055987,0.09304831,-0.417963,0.19589639,-0.5889179,-0.51394844,0.028481988,-0.61460865,-0.24937001,0.57781166,-0.49485627,-0.17493536,-0.23164462,0.15388784,-0.29047486,0.46958846,0.16678025,0.17877735,-0.07885695,-0.068655126,0.06897233,-0.20207693,0.7258183,0.011591565,0.2970702,0.14869842,-0.09554229,0.082693435,0.50224227,0.43347368,-0.1437336,1.0366553,0.18371157,0.019759828,0.32053527,-0.2625478,-0.28168222,-0.62736976,-0.2135517,-0.21348737,-0.49710828,-0.59677327,0.07056963,-0.32587883,-0.8730957,0.5832856,0.07071679,0.3289208,0.0008228015,0.44397604,0.32993677,-0.07033194,0.06993239,-0.016518867,-0.20769934,-0.5254234,-0.12492042,-0.6488956,-0.4510117,0.19234748,0.50076586,-0.35757148,-0.0023651964,-0.035581663,-0.09685791,-0.0448904,0.08618183,0.0051292535,0.23475887,0.4534356,-0.07257431,-0.60811234,0.60421306,-0.15794852,-0.2761773,-0.5070495,0.0052280156,0.6649998,-0.9049158,0.687877,0.5193678,-0.02093793,0.017261397,-0.40940025,-0.36479548,-0.17949133,-0.15823025,0.34397566,0.01990845,-1.0140508,0.41271722,0.36578476,-0.51112896,-0.69803566,0.6349771,-0.15512432,-0.09573608,-0.08302203,0.32689396,0.1281923,-0.022993304,-0.21578236,0.2630507,-0.5291145,0.36776933,-0.04312712,-0.08046594,0.6571411,0.10522454,-0.4204079,-0.6903066,-0.012070867,-0.6268466,-0.13181463,0.42686558,-0.059438575,-0.07406884,0.35050336,0.053536512,0.37598085,-0.3177784,0.09915648,0.14482774,-0.34853786,0.14547625,0.6038097,0.4968948,-0.3982918,0.81240934,0.18199044,-0.19668397,0.38549206,0.22677976,0.29776624,0.18477851,0.53074604,0.08194206,-0.25128382,0.3542039,1.0200588,0.15364465,0.5950967,0.17882694,0.003503534,0.52446383,0.17159247,0.2052589,-0.0137142,-0.5193457,-0.12798432,-0.10290399,0.32118607,0.4052502,0.21336421,0.33838296,0.107933335,-0.1992558,-0.036098823,0.46698257,0.10855841,-1.1668673,0.2938824,0.42536813,0.73279935,0.42631677,-0.052442785,-0.027041912,0.39917305,-0.12809847,0.2143252,0.30609325,-0.20200366,-0.61628765,0.64188474,-0.4852495,0.3776088,-0.3840228,-0.014163952,0.078365915,0.24851602,0.27882585,0.9860798,-0.01550743,0.016161807,0.06314676,-0.23799664,0.17744263,-0.5366694,0.006428805,-0.3630712,-0.26081505,0.7637751,0.50629777,0.2374199,-0.23603879,0.0036119642,-0.0630611,-0.16429669,0.27200118,-0.033965755,-0.021043973,0.011593413,-0.8906346,-0.23655723,0.6765968,0.22280866,0.19455758,-0.21858115,-0.2151096,0.26300332,-0.18572842,0.12626165,-0.13794822,-0.7414421,-0.121889666,-0.3619648,-0.7376659,0.38797724,-0.1960163,0.19825631,0.3575538,-0.10917206,-0.22976846,0.4380414,0.073849395,0.71807486,-0.09880542,-0.33624285,-0.6551044,0.13070494,0.39768174,-0.42967522,-0.041216597,-0.47767326,-0.025053501,-0.3980086,0.72925955,-0.07693303,-0.433819,0.21181731,-0.19208024,-0.1252762,0.6402186,-0.062426616,-0.08005986,0.31332576,-0.18906479,-0.60086626,-0.0032104661,-0.41408366,0.25484324,0.32911098,0.0697156,-0.22655755,-0.26672724,0.0054630744,0.23884286,0.035560492,0.46356323,0.3842699,0.2804818,-0.07916081,0.020231497,0.4095213,0.69430876,0.12053574,-0.012507569,-0.28549263,-0.5026386,-0.33876303,-0.02522422,-0.10281904,0.15511698,0.19344582,-0.29872096,0.77992636,-0.050921116,0.9972471,0.17275073,-0.29229486,0.16693288,0.46695727,-0.06458004,-0.1699238,-0.48648036,0.89039344,0.55979115,-0.22197327,-0.04422047,-0.40782443,-0.1945962,0.22247349,-0.3404837,-0.15069912,-0.03990828,-0.73998904,-0.37580153,0.2223453,0.3099346,0.103938125,-0.15114556,0.004348928,0.046301637,0.07446397,0.2020287,-0.97787005,-0.3336043,0.10801442,0.39434594,-0.08490905,0.18615441,-0.19586878,0.5227647,-0.61123407,0.043749515,-0.59595245,0.10704401,-0.2892505,-0.47153023,0.046953883,-0.03538351,0.4987307,-0.10635571,-0.33979467,-0.21683016,0.31930056,0.10086263,0.44479808,0.54469186,-0.1893611,-0.08901936,-0.032263793,0.7568521,1.3167943,-0.28706425,-0.01502572,0.45696518,-0.5694549,-0.6763546,0.3237801,-0.54037017,0.15816604,-0.10238261,-0.49004218,-0.44931296,0.2692992,-0.042016745,0.17623772,0.14053513,-0.7552294,-0.100605816,0.23233718,-0.20959596,-0.4046428,-0.15540136,0.46110526,0.8134649,-0.3869936,0.020657105,0.1199025,0.22683428,-0.2904129,-0.51517504,-0.1277981,-0.32370877,0.37321833,0.07308638,-0.17041922,0.06257141,-0.014704057,-0.5725406,0.36067933,-0.019323431,-0.3235286,0.1415205,-0.102558166,-0.11840575,0.9491368,-0.30220604,-0.31804216,-0.71981186,-0.5308333,-0.91783065,-0.2718715,0.09621766,0.28974393,0.1306352,-0.28442624,0.09104955,0.09305375,-0.10249775,-0.05892615,-0.5790379,0.50301784,0.06987527,0.63667583,-0.3217872,-1.0642287,0.15071104,0.30041698,-0.3127145,-0.98390144,0.5556963,-0.21851072,0.7315721,0.04202871,-0.120271355,0.2243507,-0.357487,-0.07443257,-0.48710632,-0.0010608014,-0.7943933,0.053640887 -75,0.54728276,-0.31966236,-0.6381064,-0.15870681,-0.3970056,0.0983988,-0.16745962,0.5449598,0.1606389,-0.20743161,-0.21654326,-0.020104926,0.0769801,0.2077379,-0.20863606,-0.69410515,-0.10507774,0.12108059,-0.53007066,0.6570081,-0.13117918,0.20641623,-0.13473338,0.42656517,0.51883996,0.4875244,0.18154076,0.049370226,-0.118874945,-0.19361034,-0.18910874,0.04096546,-0.47906113,0.16195077,-0.22955337,-0.36117125,-0.10723913,-0.49872464,-0.4101765,-0.772918,0.45809904,-0.8616035,0.4486653,0.024316512,-0.24467397,0.34105968,0.21836287,0.31382844,-0.30249277,-0.14567131,0.056644194,-0.22532335,0.06037391,-0.26989138,-0.04466039,-0.43521574,-0.51400894,-0.21085644,-0.6476355,-0.2135144,-0.21478094,0.06894088,-0.26919776,0.020216634,0.031089982,0.63246155,-0.43214357,0.14173102,0.25199717,-0.30903032,0.09047719,-0.69291914,-0.17257658,-0.04748369,0.2911626,0.05068762,-0.08748138,0.34192827,0.06731718,0.044574223,0.1035347,-0.19700953,-0.39687464,-0.15951061,0.08183949,0.36031622,0.08118756,-0.54447293,-0.00657431,0.0089514805,0.3168897,0.23118645,0.22788407,0.042652473,-0.08962321,-0.10191829,-0.116033204,0.5367852,0.46855402,-0.18223013,-0.11506741,0.3673039,0.59895736,0.26646912,-0.2753029,-0.022946361,0.021877615,-0.3562018,-0.04907197,0.17568223,-0.18969369,0.6367103,-0.10213037,0.29182765,0.7193357,-0.2734863,0.09686268,0.020469116,0.12422313,-0.22183888,-0.18886319,-0.22283298,0.25558144,-0.5212842,0.1588795,-0.24087295,0.71432024,0.2813998,-0.3767811,0.2835394,-0.610536,0.1716365,0.05828541,0.4659737,0.6173326,0.57071894,0.3508897,0.6971358,-0.19796793,0.013379808,-0.10184117,-0.35820338,0.10239252,-0.16667837,0.050259013,-0.50214493,-0.011856253,-0.0019941283,0.0054782904,0.10300871,0.58217514,-0.4484909,-0.14634082,0.09406337,0.84599346,-0.2179546,0.022944275,0.8523951,1.095431,0.87794316,-0.04586796,0.8537964,0.069325395,-0.34143603,0.09940982,-0.26413074,-0.54129684,0.2560192,0.37606254,-0.31889316,0.58119285,0.07631032,-0.08792825,0.20453797,-0.3175277,0.046448972,0.02053415,0.11413602,0.17179348,-0.040337447,-0.4213598,-0.30011526,-0.09917068,0.10285275,0.33608955,0.23777372,-0.31202397,0.49387038,0.0044050673,1.5091641,-0.051240798,0.03475874,0.17117248,0.6773281,0.32092646,-0.008941586,-0.091506846,0.54640067,0.25530103,0.26525548,-0.56006974,0.25241143,-0.37442812,-0.40230063,-0.079606846,-0.5211021,-0.18141586,0.0580745,-0.25322306,-0.119542524,-0.09583974,-0.32808068,0.32716212,-2.7470827,-0.084155194,-0.1674585,0.40655917,-0.25357282,-0.22919728,0.021949796,-0.48808634,0.2715055,0.38729742,0.47669756,-0.6271945,0.33157486,0.5715502,-0.7159484,-0.0031946898,-0.32012558,-0.021462945,0.016194465,0.58151823,-0.16749996,-0.0002851853,-0.017079147,0.24987325,0.4478215,0.07110457,0.08875705,0.3372556,0.36879867,-0.12321888,0.54475063,-0.050054863,0.43344674,-0.29782832,-0.10076012,0.24599868,-0.3645632,0.29495123,-0.19631013,0.14167683,0.5993715,-0.4649058,-0.8664951,-0.50828856,0.22275048,1.0997933,-0.40287656,-0.43743357,0.24987444,-0.485474,-0.2763283,-0.039206844,0.494561,-0.21389736,-0.060335692,-0.64671046,0.014175881,-0.02195891,0.11966842,0.16212589,-0.057927195,-0.44439027,0.7704378,0.08548602,0.58849746,-0.040669873,0.1770489,-0.42337927,-0.43787104,0.18228793,0.6132522,0.4421678,0.043458745,-0.20478044,-0.13668273,-0.1644637,-0.15818483,0.12485339,0.7490057,0.5304811,-0.055437107,0.130048,0.2829251,-0.1295252,0.03433573,-0.11324482,-0.22396295,-0.15809776,-0.17574857,0.4346979,0.6279535,-0.03985525,0.42501637,0.05492711,0.5387646,-0.0194585,-0.46939814,0.67210585,1.1988856,-0.2446642,-0.33582824,0.38357192,0.4265811,-0.3399587,0.45358425,-0.6928853,-0.1961725,0.5864991,-0.1427696,-0.50193644,0.20251285,-0.21127905,0.077839024,-0.69178736,0.050821446,-0.32557008,-0.4326494,-0.40931475,-0.16379884,-3.330986,0.03478268,-0.3239244,-0.29058018,-0.39507002,-0.16044281,0.074702874,-0.81209576,-0.5367275,0.111390024,0.13806301,0.7072596,-0.16488835,0.15068415,-0.27380016,-0.39944664,-0.31538436,0.33785966,0.031150162,0.34041658,-0.26677108,-0.33489752,0.034659103,0.09076316,-0.43599382,0.019978296,-0.44237608,-0.33734792,-0.11418025,-0.65002626,-0.1807929,0.6193666,-0.18331856,-0.0026255297,-0.18601349,0.08845492,-0.05261737,0.15903585,0.083914846,0.102982335,0.17876047,0.0087990165,0.28093544,-0.40001515,0.36031294,0.026107006,0.45569912,0.09524015,-0.07777785,0.24152735,0.3800715,0.4629188,-0.04352997,0.8346646,0.2551794,-0.13966465,0.23114234,-0.1890803,-0.4240672,-0.65911967,-0.2557197,0.016431639,-0.2667664,-0.36334693,-0.25545695,-0.4161097,-0.8563125,0.46480253,0.04841347,0.41575986,0.0010282352,0.35693187,0.65919024,-0.21456939,0.022486363,0.15529384,-0.2140317,-0.66896755,-0.01835802,-0.5342813,-0.35102448,0.17731649,0.53270185,-0.4937695,-0.15224217,0.022068454,-0.4420424,0.16453475,0.17111176,0.02873735,0.1825024,0.58083284,-0.07727592,-0.53754,0.6264261,-0.18999377,-0.19898663,-0.52197826,0.20868042,0.44365433,-0.7309262,0.48075724,0.31039158,-0.04223849,-0.34034553,-0.24505565,-0.041356087,-0.049747054,-0.083156064,0.31349218,0.31009915,-0.72415644,0.26145098,-0.011533453,-0.17967804,-0.76427746,0.5709847,-0.16860868,-0.40632138,-0.21912844,0.39967722,0.14751673,-0.03943123,-0.23850897,0.086350925,-0.3099578,0.026046505,0.11059645,-0.12695208,0.32670575,-0.11330081,-0.19113892,-0.7823815,0.24141198,-0.3949542,-0.2137464,0.54848486,0.07175258,0.15448758,0.08805838,0.18674701,0.2838801,-0.28016785,0.14071147,0.0058448683,-0.2368149,0.51450473,0.44528404,0.51256126,-0.5259265,0.6370509,0.0251084,-0.076614484,0.28594986,0.0036153977,0.32002142,0.059482154,0.563392,0.3142659,-0.25398344,0.25214493,0.56921375,0.21747257,0.5994117,0.18036638,-0.07063489,0.17369233,-0.020158194,0.23386747,0.0010060531,-0.7485079,-0.030027706,-0.32692492,0.060463972,0.44150817,0.16105835,0.21877578,0.012952147,-0.36207575,0.08652285,0.29485032,-0.14905292,-1.0281516,0.25016284,0.44118437,0.87820816,0.4461503,0.03041485,-0.05946006,0.7585366,-0.08078944,0.109376594,0.30086526,0.25728086,-0.5418389,0.5011229,-0.6496018,0.636064,0.010732449,-0.21015136,-0.0055557834,-0.082258135,0.35135368,0.7392277,-0.21907619,-0.16606046,-0.0021016942,-0.39103934,0.17931406,-0.40758625,-0.020301653,-0.58385015,-0.30477443,0.5590097,0.48992884,0.36746722,-0.042383313,-0.004251658,-0.05360409,-0.11932499,0.27935952,0.015675612,0.0715224,0.019709405,-0.7420676,-0.3387358,0.38226193,-0.11821727,0.18222383,-0.038143907,-0.103220716,0.26697972,-0.028170267,-0.0005889787,-0.11969282,-0.7388806,0.20494103,-0.0029465144,-0.642614,0.6629471,-0.02668136,0.27660176,0.25096914,-0.07431779,-0.19178063,0.3289997,0.14541069,0.901372,-0.017833957,-0.062150188,-0.50862384,0.04997479,0.08962853,-0.27442306,-0.013703163,-0.3404665,0.18410532,-0.5626354,0.50790733,-0.10175777,-0.38827676,-0.20528239,-0.23922276,-0.082145855,0.58612686,-0.13926499,-0.183338,-0.14790085,-0.046248104,-0.322813,-0.3999419,-0.29436508,0.078182,0.12140739,-0.055881068,-0.2630221,-0.018755885,0.06689905,0.36677906,-0.10288168,0.47345436,0.3055326,-0.0940928,-0.17538497,-0.25889233,0.42268023,0.4544811,0.03073955,-0.029625664,-0.31264415,-0.6266657,-0.43069333,0.20947888,-0.062763065,0.2512161,0.21439677,0.04294977,0.76973844,-0.24396212,1.1414111,-0.024791548,-0.48153707,0.314212,0.6590644,-0.03497543,-0.20014685,-0.20014364,1.1373506,0.38969642,-0.15950075,-0.089824066,-0.4058923,0.071190715,0.21179493,-0.2059529,-0.052136857,-0.163486,-0.5141766,-0.25444177,0.12723747,0.3073145,0.25276273,-0.0793929,0.019990362,0.24239287,0.13588773,0.27094957,-0.3725007,-0.40347096,0.3797228,-0.11912003,-0.10908561,0.18668853,-0.53069305,0.51463044,-0.45134628,0.08527765,-0.43928978,0.17267224,-0.17063001,-0.24963555,0.27179292,0.096198834,0.46704632,-0.43619412,-0.44254795,-0.41856086,0.40463284,0.39243177,0.22575706,0.4884948,-0.24962792,0.09154008,-0.041371647,0.58397585,0.7927004,-0.061721362,-0.06830367,0.30785477,-0.63070005,-0.69092953,0.23744616,-0.3738187,0.26316753,0.05930111,-0.2526752,-0.64639306,0.32493508,0.1539263,-0.0058349827,0.08415306,-0.8632721,-0.326487,0.09368108,-0.35409674,-0.09626075,-0.3880315,0.02819373,0.6482586,-0.27188584,-0.36071312,0.099343866,0.16651963,0.060967274,-0.54034775,-0.06468729,-0.31387505,0.3294885,-0.047646567,-0.13081786,-0.19354102,0.17758678,-0.49930423,0.40239826,0.011472001,-0.4092323,0.12012542,-0.22938806,0.02375662,0.7902758,-0.29044187,0.019706102,-0.45861638,-0.42182353,-0.835124,-0.42925876,0.24745314,-0.12596464,0.08429012,-0.72603124,0.055013813,-0.20328219,-0.01745261,-0.1652099,-0.5432102,0.40155065,0.13439175,0.47899893,0.027669035,-1.0481416,0.29373977,0.033256955,-0.2657151,-0.7909362,0.35438478,-0.29967785,0.6890125,0.09043606,0.122166164,0.1881102,-0.43089053,-0.14273967,-0.28886622,-0.15736501,-0.49876758,0.006483078 -76,0.36449492,-0.085535,-0.2809135,-0.10186988,-0.092374325,-0.06580245,0.018643063,0.47915027,0.34772825,-0.49784592,-0.33470142,-0.4186906,0.025759982,0.22295046,-0.118481904,-0.66229033,0.082569815,0.3808364,-0.45695484,0.7224814,-0.33469236,0.21301858,0.093224905,0.37579474,0.12895848,0.08283772,0.13120231,-0.182707,-0.32943007,-0.20798373,0.02266745,0.2652034,-0.74150556,0.2806823,-0.22058,-0.290121,-0.04169957,-0.5213627,-0.34870937,-0.9035943,0.30984527,-0.87585026,0.3561645,0.13547523,-0.18756779,0.3831618,-0.01218612,0.33898047,-0.18545254,-0.21626067,0.20616871,-0.1304652,-0.25500217,-0.26125985,-0.07372154,-0.19262893,-0.6051058,0.16609494,-0.10429215,-0.2444849,-0.43511185,0.13764404,-0.32760173,-0.011818421,-0.117570706,0.49913192,-0.36741123,0.08074967,0.19425905,-0.16133066,0.09699804,-0.5238368,-0.15211149,-0.20057799,0.14437647,-0.15542555,-0.21667866,0.36028942,0.29100132,0.5704284,0.042393375,-0.30440903,-0.29637262,0.09777939,0.2537263,0.45718133,-0.13767181,-0.3782048,-0.033150133,-0.02869322,0.06488148,0.095549785,0.21254836,-0.30646688,-0.15833145,-0.16781755,-0.10959185,0.14408034,0.5485904,-0.279623,-0.35335174,0.3365341,0.48848692,0.003980607,0.039082587,-0.11612735,0.052460562,-0.46259233,-0.20355844,0.06410501,-0.38326,0.61401486,-0.22278784,-0.014002358,0.61836153,-0.08916811,0.019466827,0.048720866,0.10611826,0.002654801,-0.48127094,-0.22411306,0.45955956,-0.4090966,0.18901934,-0.33284017,0.9312903,0.12755875,-0.72866243,0.44380474,-0.46239445,0.2515784,-0.04849984,0.5964685,0.60342366,0.4417143,0.5707961,0.6438298,-0.46907368,0.09888498,-0.1127719,-0.35584328,0.15898253,-0.28428975,0.227112,-0.37052977,-0.04093762,0.017944148,-0.2362502,-0.009882078,0.344316,-0.5297424,-0.07151782,0.27432534,0.7741179,-0.20989056,-0.21884696,0.71101123,1.063207,0.9724765,0.073274426,1.4456606,0.2803469,-0.20999467,0.3956333,-0.2872473,-0.82760626,0.17376347,0.22647302,-0.040300835,-0.06409222,0.33663276,0.008960937,0.46307382,-0.7132887,0.17360501,-0.24078226,0.20016058,-0.007113268,-0.05015133,-0.28715384,-0.35540804,-0.109078355,0.074492775,-0.006283494,0.326116,-0.19931227,0.17109412,-0.07682093,1.8389931,-0.06669419,0.045675308,0.10297802,0.4076164,0.012754239,-0.17549722,-0.08294929,0.27533218,0.12826717,-0.07456503,-0.4628861,0.021598628,-0.27952594,-0.56889415,-0.01754895,-0.1768335,-0.015253047,0.05448693,-0.34239826,-0.24046902,-0.14233595,-0.42787418,0.5796751,-2.3938282,-0.1503826,0.022655865,0.45657682,-0.36695397,-0.37999773,-0.1367083,-0.55281955,0.38088274,0.33872935,0.457487,-0.7802281,0.22399954,0.3615431,-0.6203182,-0.09695798,-0.72671366,0.10304602,-0.11500379,0.21231209,-0.004886642,-0.023011679,-0.079269625,-0.15757819,0.579061,0.16503973,0.12647828,0.4907378,0.2680752,0.094572745,0.33665252,-0.082688436,0.5450012,-0.30940565,-0.19625573,0.2047584,-0.5299406,0.531586,-0.101055436,0.07987056,0.47120675,-0.46633253,-0.72382975,-0.76999736,-0.5350334,1.0753217,-0.15143901,-0.4366916,0.29669127,-0.32634896,-0.101810455,-0.10581607,0.619292,-0.013218512,-0.123420574,-0.75942683,-0.12049288,-0.013624017,0.24454308,-0.031305544,-0.03327812,-0.40283856,0.85411316,-0.26155418,0.35988808,0.2961394,0.17263818,-0.25242174,-0.46484864,0.09256605,0.96508247,0.29993615,0.075777344,-0.22432877,-0.27898824,-0.43830273,-0.39106587,0.03662208,0.4679338,0.66118467,-0.19255699,-0.14990424,0.34892893,0.02915287,-0.061407954,-0.10815104,-0.35829875,-0.111784644,0.016046846,0.5691084,0.9082031,-0.29550466,0.40949893,-0.16210833,0.18839242,-0.092318885,-0.38287148,0.5249429,1.0791687,-0.045089144,-0.04705866,0.6499073,0.39042774,-0.33598462,0.44334564,-0.5599128,-0.2696637,0.32387567,-0.042069107,-0.49784955,-0.0033869569,-0.14652671,0.10188202,-0.79847217,0.5340275,-0.26077673,-0.57662606,-0.6433887,0.05716142,-2.7003193,0.10194242,-0.30003342,-0.14487906,-0.050735522,-0.086838014,-0.11927849,-0.5465712,-0.52915525,0.24359877,0.14257564,0.69443685,-0.1336502,0.21534617,-0.18164831,-0.1916704,-0.39861247,0.043006063,0.12741964,0.3646792,-0.019319987,-0.3935971,0.006448993,-0.0673954,-0.23351257,0.12600148,-0.7921383,-0.5368059,-0.3059661,-0.6757782,-0.39936736,0.5977211,-0.5901718,0.03791478,-0.27268675,-0.114311315,-0.29121935,0.39926788,0.11485579,0.18131346,0.078549035,-0.10694715,-0.28078404,-0.23836511,0.18183832,0.075584024,0.42553365,0.53237784,-0.25172052,0.17411649,0.40992832,0.68606234,-0.25272888,0.8317601,0.59789866,-0.16673557,0.18825491,-0.19320637,-0.10966337,-0.54973745,-0.20609076,-0.1515538,-0.38670194,-0.49786445,0.1093268,-0.3201295,-0.8101585,0.44816062,0.059595745,0.020890573,0.10583088,0.02047897,0.59835595,-0.10571466,-0.029350348,-0.24552268,0.02654051,-0.73106164,-0.49356008,-0.5562683,-0.5276022,0.34716985,1.0024658,-0.04834761,0.008806922,0.09064614,-0.09774346,-0.1008845,0.15785837,-0.2682642,-0.07970225,0.62661856,0.060334038,-0.5162665,0.5032711,0.2620175,0.023782125,-0.5334484,0.49705586,0.5174831,-0.6692417,0.82011694,0.23326226,-0.0044360235,-0.025439104,-0.54192847,-0.48005402,-0.30088425,-0.1519161,0.23040588,0.17621012,-0.75749844,0.29164872,0.45175442,-0.332175,-1.0218977,0.28487638,-0.19246823,-0.23336232,-0.012821093,0.33481392,-0.062022135,0.115882955,-0.20237042,0.25391448,-0.5395975,0.16258873,0.30484873,0.025945848,0.122517526,-0.31249076,-0.1420695,-0.8390303,0.06790836,-0.45140207,-0.28738967,0.15193225,0.2204111,-0.11867836,0.38918313,0.4806628,0.300146,-0.2708021,0.13255972,0.03333651,-0.32715386,0.2257024,0.41910014,0.5243128,-0.55253756,0.47298154,-0.057732582,-0.06050697,-0.21617816,-0.039340764,0.29086152,0.17357726,0.29953855,0.13080496,-0.2444179,0.18023498,0.8509298,0.14474063,0.46420422,0.2505063,-0.086049,0.5360761,0.066603154,0.30347818,-0.081999406,-0.690223,0.24577688,-0.21878207,0.13214634,0.25250313,0.25849596,0.27926552,0.004414546,-0.3998278,-0.15740885,0.16742991,-0.08661806,-1.0681187,0.26182714,0.05777305,0.8048231,0.7292265,-0.120114915,0.08038145,0.73870724,-0.017006801,0.17125721,0.22754698,-0.32270178,-0.51441675,0.5775375,-0.73508173,0.21126918,-0.024019802,0.004596044,0.036835935,0.14829175,0.30796826,0.5114184,-0.25944045,-0.027814187,-0.26188695,-0.15226518,0.10878047,-0.37197706,0.3778503,-0.5842655,-0.377259,0.78767705,0.5238882,0.33837423,-0.18698359,0.07375721,0.05626763,-0.16402422,0.22425778,0.089795105,0.0728958,0.33558357,-0.5693082,-0.10524047,0.57665586,-0.2791091,0.11784947,0.06044662,-0.15681367,0.09341649,-0.37352726,-0.3527174,-0.07916245,-0.8481708,0.0144618945,-0.09836405,-0.28074557,0.42321005,-0.025266627,0.24565826,0.16851062,0.12250593,-0.28906068,0.4340528,0.20406286,0.7764714,0.121293746,-0.21115546,-0.22037452,0.3358352,0.055579364,-0.19420516,0.15869434,-0.07929037,-0.09711937,-0.6646147,0.50613475,0.06381493,-0.3543034,0.079059474,-0.16018553,-0.013448869,0.60368705,-0.103552185,-0.16874383,-0.006763438,-0.21713348,-0.23031648,0.027907148,-0.039671168,0.39074478,0.1862673,-0.16426902,-0.13723683,-0.08012865,-0.13652319,0.33994296,-0.06620988,0.14667822,0.14167987,-0.071712874,-0.31385407,-0.059523493,0.14749433,0.57139415,0.04091726,-0.16108148,-0.060953915,-0.22409219,-0.43549916,0.04361167,-0.001970229,0.48824415,0.11776141,-0.27598408,0.66545254,0.12663737,1.1952132,0.118263446,-0.2540637,0.024304325,0.48094594,0.051569458,-0.08334354,-0.38756832,0.8614672,0.62639827,-0.10237018,-0.006955867,-0.35093817,-0.05113354,0.33667573,-0.09459468,0.103312224,0.13696022,-0.7178628,-0.15720746,0.1679403,0.38183156,0.12469343,-0.16580804,0.09473821,0.25021052,-0.025633067,0.39812326,-0.41401443,-0.23583059,0.3008299,0.3721778,0.23805802,0.11421103,-0.20690425,0.3954059,-0.7405582,0.2529216,-0.13665642,0.0107142525,-0.33481577,-0.2270446,0.277999,0.17753927,0.413837,-0.28769895,-0.3117615,-0.3481531,0.60326785,0.24649625,0.15825719,0.6192358,-0.21912499,-0.037981212,0.071163334,0.46323624,1.0825747,-0.103129596,0.070395775,0.28266355,-0.24742039,-0.61401576,0.7224007,-0.04863603,0.086813964,-0.09489442,-0.3546717,-0.7015504,0.10213765,0.29335672,-0.12125432,0.254737,-0.6849229,-0.13311383,0.1959766,-0.26335612,-0.23718888,-0.30031475,0.119314134,0.7409554,-0.09739581,-0.46577632,0.03895549,0.011273961,-0.31168753,-0.41771922,-0.19727068,-0.56501347,0.2061518,-0.02548082,-0.6454539,-0.115388595,0.13253115,-0.41160062,-0.07264578,-0.025785953,-0.3082077,0.13133015,-0.28810734,0.09692491,0.99819833,-0.097153425,0.42988446,-0.530706,-0.4720104,-0.8973978,-0.29040614,0.5376556,0.14735866,-0.113527276,-0.40319708,-0.13540888,-0.011039128,-0.17441596,0.06713178,-0.4516139,0.32952753,0.23186904,0.21149515,-0.10261929,-0.8924479,-0.017520836,0.24434163,-0.058621388,-0.42329323,0.2380601,-0.05025037,1.0268449,-0.07279547,0.0048630736,0.25064325,-0.4917308,-0.04920137,-0.13520871,-0.13522612,-0.4354143,0.056905616 -77,0.47032753,-0.11759587,-0.57269514,-0.16626048,-0.35103017,0.06914552,-0.34301487,0.42992598,0.25647262,-0.46065274,-0.1484929,0.0017737865,-0.13151376,0.20699674,-0.20636441,-0.60537905,0.13386698,0.08299481,-0.61332107,0.72813183,-0.37246037,0.19727112,-0.06462465,0.42073718,0.098831706,0.18318614,0.26082507,0.023598926,0.12420856,-0.24669962,-0.012757829,0.07360046,-0.72270405,0.32239208,-0.35589364,-0.35260364,-0.10819815,-0.33771357,-0.31788152,-0.7049483,0.21603225,-0.5838982,0.5882387,0.08145067,-0.27695018,0.09243536,0.24346028,0.31113365,-0.41042617,-0.018357148,0.09406796,-0.026489075,-0.12444636,-0.2736182,-0.13100712,-0.4569835,-0.50173366,-0.0448843,-0.50068897,0.056807358,-0.4021552,0.26027068,-0.22349499,-0.09795867,-0.1751114,0.52557296,-0.44184512,0.18643656,0.10517391,-0.096113734,0.057896256,-0.7378671,-0.22085108,-0.20033558,0.2316355,-0.10026766,-0.30530894,0.34878984,0.041158922,0.41372254,0.012294718,-0.07771217,-0.37487024,-0.3991123,0.17857529,0.42559353,-0.15853916,-0.5533308,-0.08397651,-0.052137297,0.21176347,0.13591178,0.13548476,-0.2661928,0.015975513,-0.16718082,-0.24438709,0.563258,0.5655062,-0.3596734,-0.1770044,0.24725412,0.48525846,0.32655638,-0.17039016,-0.09178796,-0.1090611,-0.59218925,-0.31124544,0.027233744,-0.093971364,0.32257804,-0.10636543,0.29420766,0.4737803,-0.09665442,-0.091587394,0.23659006,-0.0030478477,0.15572308,-0.38553852,-0.36471623,0.31145033,-0.55091196,0.2355226,-0.31736055,0.5645647,0.026016312,-0.62782836,0.21640517,-0.5043663,0.094341345,0.08689353,0.40386,0.7157926,0.4273767,0.17378362,0.7786182,-0.21343355,-0.00061590475,-0.21998374,-0.12182077,-0.07711004,-0.003811717,-0.038778786,-0.4074177,0.19560575,-0.06617406,0.14863151,0.11808852,0.37486362,-0.444583,-0.19156332,0.14298931,0.7470562,-0.26545674,-0.0010873239,0.8084499,0.9738311,1.1126431,0.054046493,1.2195374,0.038644634,-0.22002539,-0.059042357,-0.041626748,-0.8518439,0.36262342,0.36375803,0.35136503,0.2508294,0.008696007,-0.090275005,0.34934866,-0.31287327,-0.13371976,-0.15486422,0.4290643,0.23298086,-0.12525497,-0.21815684,-0.32275078,-0.010977086,-0.11337146,0.1434111,0.25123367,-0.27523857,0.3344243,0.10782306,1.0979589,0.02131889,0.056557003,0.21428987,0.48072115,0.3519964,-0.025341064,-0.018755633,0.28335017,0.2803536,0.04131906,-0.6809255,0.10319196,-0.31985363,-0.5317377,-0.04453039,-0.41327018,-0.25740576,-0.09489851,-0.34437522,-0.22957897,-0.21519779,-0.047816213,0.4183674,-2.8018198,-0.20988266,-0.17306252,0.31692448,-0.1712756,-0.3029155,-0.20513152,-0.43288803,0.5900978,0.25274435,0.5342814,-0.31440872,0.40941325,0.49007398,-0.5458622,-0.1347917,-0.5999386,-0.13432546,0.031170337,0.4266582,7.398128e-05,-0.1455871,-0.07406274,0.22577928,0.58451754,-0.034796905,0.16714223,0.37645873,0.432682,-0.23071738,0.39986452,-0.03409246,0.45639712,-0.6054117,-0.16549262,0.28420264,-0.43801197,0.2887702,-0.1497085,0.01077347,0.61483514,-0.5680276,-0.8457795,-0.5420069,-0.00080729724,1.0536932,-0.21882465,-0.40719312,0.08348677,-0.47969347,-0.12556864,-0.124772385,0.46178803,0.026565393,0.01845913,-0.6377118,0.047680475,-0.1996112,0.28332248,-0.081941985,0.033147935,-0.49900427,0.7476699,-0.0782931,0.63060844,0.30214435,0.2952349,-0.4472414,-0.3485332,0.031956445,0.7370061,0.45184496,0.14847656,-0.24089012,-0.18043388,-0.2846693,-0.050337695,0.119263284,0.8917416,0.44404334,-0.060512803,0.14277267,0.228763,-0.001409785,0.14928064,-0.22172089,-0.20852539,-0.3630846,0.17461203,0.63329494,0.5986417,-0.15433922,0.16457735,0.08367648,0.24636817,-0.39350426,-0.34409297,0.4084821,0.99844784,-0.21232605,-0.35511974,0.6715939,0.54885864,-0.14715488,0.53312343,-0.6200651,-0.5118838,0.4912363,-0.12893362,-0.3795826,-0.0015791734,-0.40573707,0.06618095,-0.6930554,0.20409097,-0.59559476,-0.43524882,-0.64038813,-0.30578184,-2.4594946,0.26472872,-0.1897954,0.0037021567,-0.40091822,-0.32682723,0.100869745,-0.44993055,-0.58797896,0.21618152,0.08146208,0.717368,-0.19470246,0.14373024,-0.18496756,-0.45889047,-0.287761,0.18404497,0.25008506,0.34111196,0.0214758,-0.3006337,-0.058113057,0.0073777926,-0.3662817,0.0040410715,-0.41922003,-0.22647327,0.0038877726,-0.29527912,-0.07453026,0.5799888,-0.47867188,0.035097864,-0.22302924,-0.018230239,0.027912999,0.37508658,0.12335418,0.20807685,0.07268949,-0.15630819,0.012740948,-0.34376985,0.35380352,0.05610586,0.30279976,0.39495197,-0.21512724,0.10889213,0.36003366,0.64643747,-0.064465605,0.8004373,0.25604874,-0.098231696,0.5143186,-0.21163663,-0.4527523,-0.47641706,-0.19085261,0.112304725,-0.31858426,-0.38444236,0.009789085,-0.34307638,-0.71705663,0.4170315,0.06925653,0.07917735,-0.045538757,0.29619554,0.30270308,-0.17657185,-0.086386666,0.011287731,-0.098066375,-0.42286852,-0.32788676,-0.574644,-0.35645962,0.022143293,0.9581274,-0.20939814,-0.095300816,0.18296562,-0.13379021,0.047285784,0.34467107,0.027908,0.1926686,0.39044672,0.029015625,-0.52659696,0.53705883,-0.05538301,-0.31249923,-0.34795657,0.2924729,0.5673451,-0.5266803,0.48236644,0.38951525,0.11150352,-0.24738048,-0.66658485,-0.12611103,0.01957554,-0.25407222,0.3736413,0.2680434,-0.76274234,0.40465507,0.22903304,-0.1661752,-0.7545224,0.70124525,0.07136181,-0.31777808,-0.13259946,0.41680428,0.17863826,0.050352715,-0.12233973,0.25792065,-0.23577635,0.30403158,0.053218234,-0.069387235,0.14929408,-0.27104214,-0.25133058,-0.60694766,-0.017785458,-0.5482121,-0.34992653,0.37413007,0.007933792,0.01524488,0.14996545,0.07689378,0.3969289,-0.3665856,0.1157667,-0.28187543,-0.25741005,0.45053875,0.42226207,0.4914194,-0.41334736,0.64121765,0.05413951,-0.07422759,0.15748866,0.22123092,0.39774257,-0.13839394,0.63306075,-0.11824322,-0.06402684,0.13747868,0.6264323,0.23853374,0.16001874,0.041746773,-0.113556825,0.2475552,0.106067374,0.19982399,0.02801447,-0.4177756,-0.0127549255,-0.15397245,0.081884526,0.5016016,0.13230027,0.1805528,0.053756755,-0.03875002,-0.084695734,0.26283187,-0.13371538,-1.3903751,0.39170313,0.10029721,1.0099186,0.56479293,-0.036515824,-0.014037562,0.6834316,-0.019528683,-0.028218377,0.3341003,0.21364945,-0.24607235,0.45966613,-0.44958833,0.6331951,-0.16073847,0.048515785,-0.038441956,-0.043214306,0.38481387,0.85548997,-0.14569113,0.065316826,0.066126265,-0.30497786,0.2516925,-0.29516697,0.089687854,-0.38697988,-0.18139505,0.7414938,0.42170206,0.31114367,-0.21641919,0.044716205,0.06414331,-0.21065022,0.2502381,0.020653328,0.055207912,-0.104867786,-0.5591406,-0.12266689,0.4957905,-0.20573838,0.11230745,0.18099381,-0.16676189,0.2165263,-0.00011035601,0.08856638,-0.036743045,-0.62309843,0.046413645,-0.33691564,-0.15544036,0.37639138,-0.17664398,0.15165757,0.34362364,0.054147758,-0.24109888,0.35289803,-0.08895278,0.55015314,-0.026088795,0.026137726,-0.35249218,0.19666405,0.15487382,-0.18749984,0.12912875,-0.32118708,0.15384087,-0.7376384,0.37144566,0.0276516,-0.28414065,0.20934907,-0.056523934,-0.11116209,0.49689344,-0.07706961,-0.14176542,0.13479455,-0.09471583,-0.050067488,-0.26269656,-0.20657307,0.30509087,-0.020374736,0.1512492,-0.15877667,-0.10934635,-0.009309506,0.46668965,0.05060047,0.33284786,0.26962525,0.24523564,-0.4795088,0.10142108,0.097484805,0.61033314,0.025200808,-0.0006962299,-0.1519408,-0.5752188,-0.33535424,0.4431416,-0.19832392,0.2207735,0.19916992,-0.30758688,0.61170477,-0.046120394,1.0997175,-0.033510935,-0.43646497,0.09662148,0.63398486,-0.10888188,-0.051227402,-0.29981214,0.830408,0.427623,-0.12346018,-0.06363125,-0.21761416,0.033484712,-0.09541022,-0.3787385,-0.070162416,-0.06746515,-0.4040101,-0.19083674,0.06850844,0.0733263,0.11073809,-0.20723362,-0.18129879,0.244046,0.034885343,0.28692225,-0.5751064,-0.059766483,0.35271823,0.19664939,-0.044890147,0.08616907,-0.39815503,0.3308784,-0.6390615,0.04256626,-0.34787673,0.18297146,-0.29164925,-0.3415774,0.2602678,-0.048703022,0.26886457,-0.4144469,-0.39629364,-0.13542674,0.29340822,0.2190753,0.22788954,0.5499076,-0.20335627,-0.06846772,-0.052416228,0.5407275,0.80831605,-0.23977186,-0.1599371,0.22408561,-0.49737218,-0.5423208,0.0828121,-0.6073325,0.11463143,0.059098322,-0.14598729,-0.3970775,0.2945069,0.10911963,0.17848821,-0.055442892,-0.94369143,-0.28123638,0.26084295,-0.25195062,-0.18111339,-0.36530113,0.13583857,0.65505636,-0.23580487,-0.13615227,0.06759439,0.17642514,-0.14385012,-0.76546645,0.17345232,-0.43087548,0.36821467,0.21930571,-0.20509349,-0.16719942,-0.027606042,-0.58043534,0.16920887,0.1726778,-0.20121646,-0.02527628,-0.37018442,-0.022496456,0.7529263,-0.13048616,0.26116276,-0.23134686,-0.48646373,-0.8432947,-0.14151031,0.18910207,0.14518146,0.03898566,-0.70153433,-0.17388992,-0.10938809,-0.19926517,-0.051889036,-0.33207455,0.4166763,0.15805082,0.43184206,-0.10471546,-0.91560054,0.25713524,0.15103267,-0.21823867,-0.3913039,0.33319083,-0.034160785,0.7645814,0.18198211,-0.027785324,0.16900612,-0.7660204,0.12075761,-0.21486963,0.043703537,-0.5334193,0.17810939 -78,0.31830892,-0.08389412,-0.36351544,-0.1300801,-0.10546659,0.25524473,0.0002238173,0.34704122,0.03050549,-0.3800281,-0.009876564,-0.14126933,-0.054718222,0.36074448,-0.010143377,-0.54060775,0.14185286,0.025810119,-0.5260048,0.43794537,-0.4692399,0.4426239,-0.033309646,0.10352632,-0.008877991,0.44164425,0.18285468,-0.2820995,-0.19474025,0.0077889487,-0.25469795,0.05035879,-0.4573785,0.15069509,0.0945671,-0.16174963,0.14647347,-0.2217711,-0.2214427,-0.4703595,0.14142011,-0.54260445,0.30599403,-0.0927441,-0.08085379,0.14544357,-0.0352944,0.38318455,-0.3383807,0.18273413,0.1695011,-0.17698674,-0.1854915,-0.17201379,-0.13354197,-0.43948048,-0.4830278,0.051771857,-0.39286318,-0.31600046,-0.15555793,0.054186475,-0.30734736,-0.036643058,-0.017583752,0.071013555,-0.45160466,0.00060908124,0.25069898,-0.14242351,0.00058847666,-0.5889275,0.12023709,-0.14134394,0.35082233,-0.2899779,-0.14076309,0.41953307,0.3754915,0.53676623,0.085127145,-0.106918976,-0.15353483,-0.23114786,0.20118631,0.54582965,-0.109139666,-0.30608726,-0.107765555,-0.004390925,-0.009958204,0.15541793,0.0070766434,-0.32334208,-0.1769842,0.08660638,-0.18419078,0.1958994,0.36393964,-0.42024127,-0.33304054,0.49018654,0.5961028,-0.028604478,-0.113907054,-0.027061936,-0.022301104,-0.5022683,-0.23166588,0.20010379,-0.14484477,0.37174347,-0.098047204,0.1482365,0.74573296,-0.36469823,0.045258194,-0.13584574,-0.095987216,-0.07244243,-0.030667806,-0.032990694,0.0849443,-0.38731006,0.053982772,-0.06352219,0.707115,0.38850436,-0.6790972,0.36342046,-0.41050696,0.14887665,-0.1680418,0.58985996,0.61422956,0.3353529,0.14047669,0.7631422,-0.48766863,0.28797987,-0.08569985,-0.41530895,0.12031167,-0.16886044,-0.13698377,-0.48422307,0.16546004,0.062626965,-0.13203889,0.068163574,0.12185113,-0.64896584,0.06924887,0.07065832,0.74690974,-0.31455117,-0.149709,0.44616342,0.8346008,0.7661566,0.0010387041,1.1764417,0.29692605,-0.37887967,0.23215875,-0.5805337,-0.64623934,0.09944886,0.41221595,0.1096884,0.23382393,0.21663985,-0.008670941,0.2541313,-0.3771801,0.16150337,-0.08906103,0.23789755,0.087900184,0.008156821,-0.24562354,-0.15766972,-0.06483343,-0.029053591,0.122279614,0.268888,-0.2368268,0.34137815,0.01956467,2.0001354,-0.0032545477,0.16268326,0.00013702922,0.47202885,0.037822314,-0.12027977,-0.16162431,0.34907427,0.32412428,0.15169682,-0.4991356,0.04116471,-0.25206465,-0.6404641,-0.06624043,-0.38145107,-0.08727879,-0.07375077,-0.23094001,-0.072263926,0.11812837,-0.2706802,0.64181066,-2.7402353,-0.08548245,-0.102717295,0.26294318,-0.37002426,-0.34086463,-0.17161503,-0.4457137,0.24074838,0.4022374,0.5000839,-0.7042335,0.34886366,0.19427611,-0.28638315,-0.20779215,-0.59074473,-0.007071048,0.028767938,0.22070724,-0.020950925,-0.05179716,-0.039785843,0.10496841,0.35928887,-0.13480192,-0.02809972,0.26157412,0.26429266,0.3263297,0.41137603,0.07754934,0.5982673,-0.17283235,-0.15299787,0.24900036,-0.251559,0.34477293,-0.06294629,0.09622364,0.1481084,-0.33976665,-0.7700113,-0.6577798,-0.2950604,1.2423911,-0.26892513,-0.10681203,0.19842525,-0.105581686,-0.15042509,-0.23089641,0.34942317,-0.043265477,-0.18947192,-0.64576185,0.16293594,0.007888252,0.3820191,0.065399356,0.04730226,-0.34405136,0.42058855,-0.16442391,0.49768946,0.28071612,0.06133627,0.06613508,-0.2796535,0.0660892,0.9839847,0.28017724,0.106193185,-0.04682849,-0.2680442,-0.3565472,-0.23578128,0.120099574,0.29149312,0.66979885,0.030846708,-0.07988665,0.278176,-0.03074763,-0.07371386,-0.143907,-0.23299189,0.08139681,-0.112856485,0.53940296,0.3355017,-0.18413454,0.5561644,-0.06974876,0.2135315,-0.04828517,-0.34829766,0.52461934,0.6977167,-0.16312842,0.025083616,0.26930517,0.44812363,-0.26946756,0.36648458,-0.62628365,-0.24388102,0.5163288,-0.21160473,-0.20776597,0.15304928,-0.22378868,0.108673126,-0.79112166,0.32895622,-0.06720634,-0.37005627,-0.44353223,-0.08578697,-3.6405573,0.068584666,-0.13823846,-0.19490555,0.15355691,0.13758017,0.033475623,-0.6077837,-0.3094888,0.1864866,0.08040059,0.5438622,-0.020560278,0.081358954,-0.26121366,-0.18660302,-0.31424814,0.09636773,-0.06657504,0.2751665,0.062156767,-0.33280107,0.032751076,-0.18954796,-0.313101,0.07154411,-0.54890436,-0.3936904,-0.20437336,-0.46591312,-0.25168434,0.72633517,-0.42013854,0.10930327,-0.12935671,-0.032772742,-0.15255569,0.20434472,0.25866103,-0.01498431,0.054887325,0.061074957,-0.05242929,-0.41626367,0.22506762,0.15192103,0.40212148,0.32494548,0.020729385,0.05944491,0.48672238,0.53074074,-0.053249784,0.57019347,0.5181707,-0.16920641,0.25393313,-0.42975128,0.018035537,-0.38278514,-0.5231721,-0.08948955,-0.31622112,-0.5863402,-0.014707327,-0.24370195,-0.6975877,0.3041821,0.0682943,-0.04657858,0.02319967,0.25887713,0.40454146,-0.264798,0.07441001,-0.056201234,-0.0487991,-0.4828065,-0.3655014,-0.49837202,-0.36736512,0.42823574,1.0739436,-0.31866398,-0.14569303,-0.084269606,-0.24996763,-0.119054995,0.00791036,0.042107083,0.24643825,0.28330302,-0.24981833,-0.6720239,0.43376136,-0.26653576,-0.056069024,-0.63222694,0.07779098,0.5407082,-0.6999335,0.32236683,0.2573707,0.08920409,0.20015925,-0.32535744,-0.21906736,-0.07198036,-0.2701529,0.120530404,-0.14196134,-0.64463854,0.38669583,0.19076093,-0.26942903,-0.5447813,0.42415524,0.026020762,-0.2897594,0.14490733,0.21948111,0.18247789,-0.089346945,-0.37435535,0.17634472,-0.51480806,0.24482736,0.45076716,0.040663917,0.27326778,-0.09703002,-0.23238745,-0.53468096,0.06139267,-0.4110391,-0.20349856,0.16613898,0.18496886,0.2064998,0.09784944,0.106011316,0.30580693,-0.39629728,0.040239424,0.086233154,-0.23826084,0.28917328,0.3438995,0.36755985,-0.4425035,0.5059886,-0.014317114,-0.05593894,-0.05117833,-0.06636953,0.49015558,0.20119861,0.11720168,0.056561228,-0.34257236,0.24543297,0.80290246,0.26294753,0.3236821,0.012373442,-0.26709485,0.17457826,0.1558283,0.09294833,0.27297065,-0.41757968,0.052468844,0.15806553,0.25445595,0.39584458,0.27243325,0.37950218,-0.04352433,-0.23344567,7.655006e-05,0.08336738,-0.07420319,-0.84569657,0.37313575,0.2668972,0.662011,0.32354176,0.02150257,0.12926471,0.4810101,-0.32039756,0.20998633,0.19090392,-0.4005545,-0.6513452,0.49659824,-0.61728394,0.48480392,0.0679362,-0.0010569971,0.10132834,-0.09937145,0.2623564,0.9020724,-0.19416758,0.0019098371,-0.11177503,-0.17108376,0.004804589,-0.38528237,0.069053926,-0.53042245,-0.31018147,0.53739965,0.3287409,0.25769162,0.017014612,0.12906167,0.019541718,-0.103795074,0.1590203,-0.10159008,0.20009752,0.13263738,-0.56850094,-0.39746937,0.5704557,-0.3379646,0.07120916,0.17525667,-0.18196446,0.25544325,-0.2377496,-0.025699513,-0.15210685,-0.4876191,0.053752184,-0.060311455,-0.27624962,0.39412507,-0.08260196,0.38960093,0.12419085,0.02162834,-0.30840173,0.62157845,0.15062606,0.6762898,-0.094956025,-0.31617445,-0.4477108,0.11864547,0.21070372,-0.21394059,-0.007631447,-0.18187705,0.020598732,-0.60036546,0.31828177,-0.014892694,-0.3047391,0.05018477,-0.30967164,-0.076713644,0.48491335,-0.07077092,-0.03721441,-0.06107935,-0.14195313,-0.19031,0.052636787,-0.24997771,0.13238558,0.20659171,-0.047267377,-0.10269832,-0.17107241,-0.10673734,0.24262394,0.054628797,0.16311732,0.20631453,0.010920286,-0.2023728,-0.19229287,0.09276816,0.28195122,0.009511273,-0.050847456,-0.19442663,-0.31727588,-0.3197401,0.13867892,-0.26706246,0.36626023,0.19435658,-0.36399496,0.52411026,-0.052000597,1.1691751,0.070687845,-0.2538107,-0.0054810494,0.5221303,0.17618203,0.16625859,-0.32259744,0.8325582,0.54766786,0.07490036,-0.172179,-0.2307216,-0.30510622,0.3373716,-0.07425705,-0.1926029,0.047332883,-0.6597353,-0.403557,0.32258427,0.09136517,0.3183115,0.09235574,-0.049602073,0.09674499,0.10794084,0.23423265,-0.4925022,-0.27198815,0.38069606,0.16682677,0.13413164,0.13828343,-0.40591317,0.46892273,-0.532594,-0.00466682,-0.12011861,0.12141923,-0.10315187,-0.11767979,0.2348939,0.13893022,0.41902304,-0.27036467,-0.45214853,-0.23651682,0.4770494,0.10869463,0.2860788,0.63633335,-0.23775205,-0.00067090243,0.0023400858,0.38509664,0.9550153,-0.2421902,0.03595816,0.4896583,-0.32273623,-0.40716064,0.3467961,-0.09395504,0.07651079,-0.027181752,-0.2935636,-0.4259142,0.3177505,0.16471173,-0.01439634,0.16864721,-0.54744005,-0.22826955,0.112680264,-0.28907788,-0.32988316,-0.39954403,0.37565073,0.8954709,-0.5150146,-0.2510078,0.22748011,0.20953798,-0.20994478,-0.43600917,-0.14722508,-0.3149557,0.23475175,0.08981314,-0.2796958,-0.12702633,0.07992421,-0.25922728,0.19430813,0.23635478,-0.40755406,0.10780454,-0.113527864,-0.02837602,0.7662809,-0.010989755,-0.025157502,-0.56074625,-0.29009265,-0.7406544,-0.5686808,0.5030646,0.1975328,-0.1991343,-0.3728962,-0.04272199,0.00696446,-0.2162088,-0.026955705,-0.5170136,0.48625457,0.051122237,0.0895466,-0.08388966,-0.7910188,0.060869955,0.0027729115,-0.20343718,-0.5219923,0.3597142,-0.1799629,0.8613117,0.06706561,-0.12427373,0.4007541,-0.40189293,0.0152541585,-0.3615156,-0.15050414,-0.64379865,0.1542411 -79,0.37189656,-0.036523532,-0.37717,-0.11445549,-0.15798381,0.22181176,-0.1258109,0.4033675,0.17264992,-0.30715314,0.0051971017,-0.05515442,-0.09521823,0.14846016,-0.06330712,-0.5789751,-0.055605005,-0.042321514,-0.35184753,0.47701535,-0.43084088,0.23838589,-0.26035193,0.28725937,-0.019834237,0.39640254,0.026089685,-0.054539,0.16400932,-0.0830456,-0.060090985,0.24181078,-0.40838608,0.27561292,-0.080734245,-0.09726562,0.09043495,-0.18129008,-0.31919172,-0.5176227,0.10364623,-0.6213406,0.4181438,0.0956831,-0.35812524,0.25541946,0.1274902,0.25369632,-0.2608705,0.10791136,-0.008650061,-0.014743058,-0.03601098,-0.21313287,-0.18563172,-0.6243211,-0.4400659,-0.025741922,-0.5232773,-0.1178887,-0.061683852,0.087701365,-0.16820237,-0.16155934,0.069616236,0.25316572,-0.4016843,0.11762188,0.27668953,-0.14278024,0.25955048,-0.5922006,0.03796668,-0.043771632,0.3048557,-0.05550553,-0.24297015,0.13969775,0.27953294,0.3800802,0.009165705,-0.14837855,-0.19415717,-0.23612073,0.19846849,0.3648814,-0.18237111,-0.31337687,-0.23373483,-0.05753108,0.02821186,0.38043112,-0.00402536,-0.2681999,-0.051143624,0.02685775,-0.07894714,0.2763032,0.41865477,-0.49289075,-0.347643,0.44640863,0.69932574,0.20560281,-0.110269055,-0.014132389,0.07042198,-0.41888908,-0.19098005,0.17290238,-0.069314815,0.3296874,-0.084900066,0.016830083,0.47593355,-0.24535123,0.08650472,-0.04550048,-0.05174845,-0.061012726,-0.44513923,-0.027263395,0.15416436,-0.4983031,0.09342659,-0.0534399,0.53264815,0.1126962,-0.5101927,0.22828466,-0.4558429,0.050219517,0.0051175593,0.47126848,0.71693027,0.36598718,0.029711245,0.8179493,-0.4024881,0.038573228,-0.27864262,-0.1119627,0.22866504,-0.13464294,-0.13856669,-0.50953496,0.21436208,0.19597705,0.032575678,0.07992547,0.1446118,-0.5705731,-0.10715068,0.28687662,0.6623438,-0.2894867,-0.08418026,0.506309,1.0956721,0.71309626,0.06894563,1.0811081,0.12924543,-0.1749486,0.24442454,-0.30668432,-0.6271551,0.13874987,0.32814917,0.11739953,0.28516787,0.1052214,0.036736917,0.2860632,-0.32278374,0.00993704,-0.09426441,0.4402111,0.16088845,0.0041090646,-0.28994936,-0.097746536,0.011478512,-0.07524475,0.2869296,0.1630295,-0.2952774,0.03650588,0.110107966,1.2686327,-0.17371848,0.29440174,0.11113507,0.28942245,0.29234067,-0.2275169,-0.017260032,0.47051606,0.21440691,0.17985101,-0.4981434,0.115830675,-0.15278696,-0.4774628,-0.18823105,-0.31553376,-0.079638295,0.002878221,-0.29098886,-0.09534,-0.027521668,-0.29559505,0.6439477,-3.0892668,-0.08853113,-0.26432207,0.2492533,-0.2917328,-0.2416375,-0.3063203,-0.31643328,0.36448574,0.41592205,0.31759357,-0.47265258,0.17896405,0.3876996,-0.48750558,-0.12762624,-0.49797752,0.010317111,-0.11456498,0.36585847,0.046369378,-0.123103715,-0.037834737,0.22396253,0.4119462,-0.0060552596,0.16150858,0.2045878,0.27371547,-0.08427843,0.35405844,-0.017570699,0.49296686,-0.21615893,-0.20534793,0.27643546,-0.38144016,0.39186576,-0.0141905835,0.1800388,0.3353657,-0.35239246,-0.8194996,-0.66424334,-0.26375613,1.174092,-0.24902073,-0.40508243,0.24272594,-0.48447368,-0.3177314,-0.12475642,0.47872868,-0.013562481,-0.05516074,-0.6920697,0.2154359,-0.13220273,0.23738521,0.0076972665,-0.002324291,-0.3868011,0.6141908,-0.059599835,0.43270662,0.2686061,0.09831098,-0.18330346,-0.3937231,-0.048552345,0.8094457,0.4621454,0.032286774,-0.034388937,-0.21530621,-0.31090742,-0.029310448,0.20669915,0.46427652,0.59355944,-0.07531044,0.07860977,0.21928644,-0.05012404,0.010185978,0.017872978,-0.21237797,-0.021028044,-0.051034555,0.598133,0.45399335,-0.19409929,0.2906465,-0.015852682,0.2177913,-0.24710867,-0.37677887,0.38395512,0.6367837,-0.20817754,-0.28447494,0.63402635,0.60215265,-0.17543408,0.29917446,-0.64825875,-0.21651742,0.3743245,-0.19613673,-0.32980317,0.07094383,-0.39167064,0.14062938,-0.70311075,0.2627016,-0.23518422,-0.4648637,-0.6369006,-0.24417813,-3.407092,0.14256497,-0.12418004,-0.083448984,-0.12723194,-0.018279335,0.44505933,-0.44176447,-0.42903718,0.2652916,0.025170539,0.52013665,-0.060323477,-0.032674875,-0.3467463,-0.28915274,-0.29336175,0.24244298,0.06566818,0.27142948,-0.09421737,-0.3003965,0.018260878,-0.016225075,-0.3051292,0.05980305,-0.4315646,-0.34337774,-0.12438424,-0.43967783,-0.038359635,0.7462973,-0.44676015,-0.002818356,-0.29581815,0.04055241,-0.012047456,0.18452969,0.13780592,-0.012778512,0.14693485,-0.02543525,-0.11904286,-0.40567076,0.32438692,0.14360356,0.22251335,0.3687048,-0.08756472,0.0982391,0.48840237,0.51480424,-0.08962444,0.85232806,0.4315106,-0.070174575,0.32076588,-0.24981579,-0.11676253,-0.3136333,-0.39068586,-0.12861498,-0.5124143,-0.48476335,-0.12596984,-0.25803378,-0.66570824,0.4039682,-0.003722304,0.24318549,-0.049656276,0.2945027,0.4506966,-0.22865997,0.06963302,-0.0012874941,-0.17956784,-0.36849442,-0.3286648,-0.40138072,-0.39976114,0.39086908,1.0056177,-0.3793253,0.0059524854,0.066764615,-0.21588595,-0.041677877,0.031156225,0.026972735,0.080257565,0.3416996,0.111924365,-0.41932875,0.41309774,-0.13511075,-0.27651122,-0.72527623,0.14364663,0.5783502,-0.63305324,0.51467925,0.3093342,0.13142772,-0.17241043,-0.48422182,-0.018934933,0.020035572,-0.29807433,0.3736314,0.23704529,-0.8041958,0.39744744,0.13366087,-0.11309963,-0.6246277,0.53204143,-0.10242108,-0.17170177,0.046386838,0.43854168,0.3188285,-0.011320984,-0.06953438,0.30769053,-0.484666,0.13890778,0.2576709,-0.050401963,0.6074726,-0.14453143,-0.18514639,-0.68475187,-0.25827974,-0.54237443,-0.2437764,0.3618893,0.01953658,0.069734015,0.23560013,-0.0032484294,0.42311615,-0.2722211,0.20145722,-0.041261606,-0.27681193,0.33367157,0.3537499,0.48539415,-0.27834496,0.44454306,0.052019987,0.0917841,-0.093615636,0.17734885,0.47968146,-0.09876121,0.4572285,-0.13838322,-0.110994495,0.24862213,0.7800658,0.062333364,0.22929072,0.01583012,-0.13716322,0.25267118,0.012837988,0.05213098,-0.007385417,-0.47180757,-0.022063788,-0.035909668,0.28676564,0.3214442,0.1800819,0.34400335,-0.027361117,-0.1460125,0.03087439,0.27889913,0.07214641,-1.0103801,0.30630353,0.12206628,0.67447007,0.40590763,0.10791885,0.09211705,0.43153623,-0.11384409,0.09516346,0.30421486,-0.011609729,-0.3368097,0.42638636,-0.7373856,0.6026351,-0.07627252,-0.059913658,0.046384733,-0.0091436105,0.5064321,0.9057966,-0.072598316,0.02449559,0.04142149,-0.21281268,0.1578998,-0.18270163,0.05073191,-0.4642772,-0.35554615,0.5532376,0.4343024,0.42863494,-0.2464769,-0.051246595,0.15769069,-0.066617504,0.074845165,-0.17795835,0.028010914,0.038626354,-0.599294,-0.27226707,0.37690338,-0.08705793,0.11219016,0.033567324,-0.23732719,0.1398213,-0.050601084,-0.0077869957,0.025909867,-0.4204392,-0.03592881,-0.17171447,-0.5534181,0.53139764,-0.36876336,0.21598521,0.15186474,0.022758195,-0.19589578,0.359463,0.018927677,0.7403373,-0.04685287,-0.11312071,-0.60931146,0.17241389,0.1335337,-0.2556941,-0.10942985,-0.3672672,0.18366759,-0.6744264,0.2793257,-0.1918518,-0.4249035,0.20765957,-0.25802982,0.06237878,0.49566936,-0.12684679,-0.17748566,-0.03482445,-0.4010093,-0.26288283,-0.14554143,-0.22229512,0.2550949,0.062773,0.050765578,-0.025432596,-0.26142484,-0.12535633,0.087793395,0.2727328,0.22754414,0.29090977,0.07288494,-0.15009204,-0.024210548,0.18950006,0.31732187,-0.16180044,-0.039596137,-0.05416423,-0.5132717,-0.45664874,0.11686865,-0.048567608,0.32901832,0.047803465,-0.27079573,0.5717132,-0.12296891,1.0304745,0.11621283,-0.27303654,-0.023714732,0.43272257,-0.031079466,-0.08165034,-0.305185,0.86345327,0.59128636,-0.07303017,-0.12919159,-0.13271487,-0.15540713,0.24147098,-0.19588709,-0.06327285,-0.034894533,-0.5675584,-0.24012633,0.16128871,0.20694415,0.20892814,-0.06944787,-0.11555693,0.0010278065,0.066167444,0.24253957,-0.45387703,0.006660406,0.3171893,0.34634525,0.028832415,0.19926907,-0.23928724,0.37977654,-0.54581136,0.025596919,-0.33415127,0.1536989,-0.20540968,-0.3044588,0.17604448,-0.12502177,0.39521995,-0.243356,-0.32585227,-0.20270042,0.3884385,0.17416523,0.10086049,0.5146193,-0.09867195,-0.01225971,0.042397548,0.5077364,0.92562383,-0.20427059,-0.062262848,0.21662779,-0.28009433,-0.54633975,0.21006083,-0.5398126,0.2149245,-0.007866081,-0.30804786,-0.222498,0.3324506,0.19796467,0.16936661,-0.08395108,-0.66492075,-0.11711743,-0.013408112,-0.22273152,-0.15944356,-0.123971954,0.18989778,0.77960575,-0.23654342,-0.28943932,0.06456258,0.32558793,-0.277404,-0.5868441,0.07466374,-0.37538254,0.19181521,0.1410443,-0.3022409,-0.03486669,-0.035267066,-0.39600593,0.028230023,-0.012580955,-0.3672376,0.065464936,-0.23819886,0.09444412,0.7266895,-0.07794738,0.25306568,-0.5382383,-0.38474366,-0.7454494,-0.29326248,0.20887747,0.23423281,0.042137288,-0.31792253,0.06451821,-0.15148121,0.03740643,0.021272827,-0.31419277,0.43687165,0.07886098,0.40739813,-0.1258544,-0.83020157,0.07940633,0.15161684,-0.18329641,-0.5383269,0.49410564,-0.18946268,0.77601755,0.102484606,0.011028956,0.27536204,-0.48410815,0.12293291,-0.28373623,-0.082322374,-0.8216193,0.08416775 -80,0.53283453,-0.036724806,-0.50367904,-0.16729313,-0.32564873,0.107875995,-0.36456317,0.1918317,0.27239454,-0.18524863,-0.080260895,0.043928392,-0.05590242,0.24219517,-0.075265385,-0.749008,-0.008186599,0.06812986,-0.81233716,0.64227295,-0.36476612,0.3702271,-0.07026649,0.431258,-0.10565984,0.46217147,0.26043367,0.0194641,0.11195732,-0.1213877,0.14803183,0.019425241,-0.80710226,0.2752338,-0.21542147,-0.23389214,0.0016320869,-0.36934435,-0.12527832,-0.6570717,0.14729163,-0.76828957,0.528449,-0.12593551,-0.11809098,0.048760645,0.10347758,0.24640682,-0.28167585,0.056218266,0.13854276,-0.16608146,-0.17903669,-0.36778212,0.064648174,-0.49749267,-0.30921793,-0.06932155,-0.70286953,-0.2233103,-0.34545875,0.16230044,-0.2881503,-0.08165188,-0.26233116,0.44044837,-0.31198686,0.013310067,0.28405342,-0.20827134,0.20547926,-0.525552,0.061645217,0.033051066,0.38581076,-0.02471965,-0.19006877,0.44208795,0.08702384,0.36379236,0.28435996,-0.3482463,-0.09390155,-0.057943784,0.21836437,0.35471666,-0.07442349,-0.21491629,-0.21499997,-0.09567061,0.44976547,0.21847822,0.01294386,-0.21091793,-0.102335446,-0.11182195,-0.10286562,0.69740236,0.5073316,-0.29821366,-0.18540218,0.30900082,0.5198737,0.31179783,-0.12653457,-0.056386482,-0.04514899,-0.51638776,-0.15170681,0.18914795,-0.0280029,0.3721345,-0.06596284,0.17505568,0.7147526,-0.143318,-0.049114276,0.13587344,-0.008790224,-0.091098934,-0.26518288,-0.06729512,0.23731324,-0.60801244,-0.14964962,-0.41066366,0.55934757,-0.0221565,-0.7046313,0.31704545,-0.5382019,0.030726004,-0.09886311,0.54411703,0.818183,0.52245677,0.18316078,0.7603372,-0.30088174,0.114108294,-0.10317734,-0.41067368,0.014844671,-0.13594441,0.079297036,-0.4334681,0.06530885,-0.22930035,0.23879167,0.030194715,0.29395983,-0.54888594,-0.15042943,0.08096685,0.65791905,-0.28617847,-0.062414005,0.68852353,1.1534213,0.8456514,0.042953752,1.0364281,0.19979799,-0.16999815,-0.044485405,-0.11847615,-0.40634692,0.31179965,0.44564986,0.24216962,0.3519636,-0.19131473,-0.086149566,0.2509131,-0.23826614,-0.12766713,0.07481514,0.5322049,0.12145816,-0.12299183,-0.31846115,-0.09943711,0.049855433,0.10018295,0.24875641,0.16459574,-0.24909134,0.18160701,0.17341922,1.0057442,-0.08802634,0.07142906,0.061303608,0.37682447,0.41258958,-0.15449312,0.00014494732,0.4098853,0.33635065,-0.06649648,-0.661422,0.26631394,-0.43623328,-0.4730183,-0.11779534,-0.38250977,-0.2088661,0.021907762,-0.5634341,-0.15773445,-0.024061894,-0.2014184,0.33250076,-2.6242576,-0.31508714,-0.12803634,0.42177248,-0.21864897,-0.24645486,-0.046370115,-0.42002863,0.21878657,0.29719478,0.3975765,-0.50537056,0.5879591,0.54076606,-0.5291704,-0.10579462,-0.511209,0.010468688,-0.002234893,0.5623422,0.03289501,-0.27388525,-0.21347466,0.3376872,0.6852983,0.007996704,0.17945066,0.44526845,0.31525227,-0.07697697,0.4391717,0.09530316,0.55873674,-0.30998433,-0.1663123,0.25519344,-0.19092044,0.20611894,-0.14820562,0.13677756,0.54613227,-0.2985518,-0.8894739,-0.53016543,-0.29673052,1.2074283,-0.23316944,-0.59761775,0.09019716,-0.014648259,-0.14598572,0.22666404,0.543498,-0.117614396,0.26841927,-0.6215107,0.22629249,-0.19272141,0.191899,0.03905523,-0.049449034,-0.31560925,0.79612136,-0.118495844,0.59767956,0.1696784,0.3893473,-0.13020739,-0.38404536,0.15501633,0.7520033,0.37834212,-0.00428541,-0.19655795,-0.15447193,-0.10880645,-0.03794138,0.012237569,0.6455078,0.5906192,0.00089711696,0.12645331,0.28291473,-0.091134444,0.040847756,-0.25425845,-0.2765816,-0.053251594,-0.008256942,0.61191696,0.7561374,-0.12143059,0.3411101,-0.12043737,0.18406609,-0.068957284,-0.5582312,0.6958335,0.4644804,-0.24295034,-0.12649041,0.54449356,0.40416837,-0.24155271,0.413606,-0.6827529,-0.40139884,0.6709864,-0.08835269,-0.31578,0.1855542,-0.24398193,0.21521246,-0.60070276,0.4117009,-0.45564532,-0.5064806,-0.34946895,-0.109246865,-3.2402792,0.28953177,-0.025748914,-0.06536555,-0.47630683,-0.034629565,0.31178686,-0.5701241,-0.5239015,0.06879306,0.13209157,0.66513133,-0.16904926,0.1310041,-0.18405874,-0.44136828,0.07849711,0.2823746,0.13011268,0.2026395,-0.09258841,-0.28174052,-0.050341323,0.05398171,-0.58868384,0.23893486,-0.47507966,-0.49845576,-0.047944892,-0.42235753,-0.1087284,0.5406368,-0.34006777,0.044422965,-0.22904913,0.2263673,-0.007341251,0.15181355,0.05192084,0.18217744,0.24446869,-0.00017806282,0.015805315,-0.24605393,0.33413774,-0.007588541,0.5047282,0.18694174,0.018815896,0.0062770825,0.4309367,0.5778706,-0.19060081,1.0306005,0.18196939,-0.04847242,0.3536138,-0.08581936,-0.42869788,-0.68973374,-0.34817183,0.04340654,-0.35632327,-0.34461474,0.114562094,-0.21639991,-0.8677125,0.41619506,-0.041467123,0.35168603,-0.10782561,0.3917738,0.51464975,-0.14516374,-0.07535204,-0.074785054,-0.20368996,-0.47445965,-0.31217632,-0.7257569,-0.4252179,-0.07297306,0.74530876,-0.32687518,0.03164737,-0.018920925,-0.062443018,0.14655173,-0.08321022,0.06722358,0.13583897,0.29929373,0.08847469,-0.513492,0.33991462,-0.13785762,-0.09827763,-0.4178486,0.1678518,0.6268972,-0.60463417,0.3780328,0.38251668,0.048931323,-0.091980405,-0.57187575,0.0034325533,0.035359137,-0.21899755,0.45600432,0.18797463,-0.94450927,0.6201722,0.093587875,-0.32570243,-0.7413765,0.41286978,0.07665274,-0.2560864,-0.19360676,0.3994434,0.021213956,-0.082169995,-0.270917,0.245448,-0.47112137,0.22061719,0.12051824,-0.09465136,0.17400798,-0.122145765,-0.37126848,-0.6665916,-0.08242532,-0.54317766,-0.31828249,0.23669337,-0.16995779,-0.03538045,0.19830066,0.04450726,0.49315345,-0.26872557,0.10715346,-0.09025982,-0.41812205,0.3855065,0.54823333,0.46619922,-0.17269728,0.48782745,0.10170529,-0.110864036,0.2184782,0.100796774,0.46886846,-0.05920857,0.3755198,-0.11410934,0.13720608,0.27172452,0.6827103,0.11309105,0.38992295,-0.06805294,-0.21144536,0.44188216,0.020243965,0.31135583,-0.21166846,-0.43549362,0.08859892,0.14233899,0.03732077,0.45594934,0.22547747,0.30910647,0.05596163,-0.24164389,0.0670235,0.2482854,-0.1610974,-1.327596,0.30827358,0.23832579,0.9306054,0.39618513,0.0055907518,-0.16592559,0.59196615,-0.16833034,0.10265303,0.31369284,0.08058496,-0.44156468,0.6169729,-0.6165534,0.25622016,-0.13601384,-0.021451164,0.22795704,0.07915436,0.30414551,0.8840005,-0.2952689,-0.005056926,-0.1823993,-0.13591188,-0.0761691,-0.19182733,0.07429269,-0.24204487,-0.4243588,0.7675476,0.28738132,0.29658315,-0.3267441,0.027615745,-0.06344902,-0.22667,0.22876889,-0.101784565,-0.033606358,0.0032765027,-0.36795083,-0.21394342,0.5184585,-0.06939915,0.14781605,-0.18616946,-0.12811892,-0.04544944,0.10429411,-0.04099351,-0.02431164,-0.57031405,0.08006213,-0.33469558,-0.363704,0.4388586,-0.32922095,0.021019265,0.2035635,-0.014040686,-0.08005799,0.21122012,0.09374506,0.48604783,0.11170095,-0.28652823,-0.35121998,-0.0029776935,0.11461875,-0.28597128,0.11050048,-0.36092132,0.14597622,-0.66186255,0.4298541,-0.19043817,-0.35221618,0.33787894,-0.25420794,-0.049177166,0.45742756,-0.0023468956,-0.16686988,0.09543677,-0.14766105,-0.29736546,-0.116232015,-0.21785997,0.20888454,0.17579927,-0.1823443,-0.1698949,-0.10088821,-0.15166718,0.4594676,0.14469874,0.38297793,0.21605432,0.0497763,-0.36783618,0.23085739,0.36543113,0.46786737,0.11864019,0.13196588,-0.31593728,-0.42245674,-0.4931169,0.14582244,-0.058780476,0.03813511,0.032292582,-0.23658444,1.021724,-0.03315015,1.0667942,0.010814618,-0.36327353,0.07193158,0.55733126,-0.08266097,-0.07471535,-0.4650273,0.9238095,0.50760573,-0.01803656,0.011933494,-0.24604727,-0.15350996,0.19308342,-0.38866746,-0.016079195,-0.13946176,-0.612206,-0.45084238,0.19372797,0.21628207,0.06351893,-0.108186714,-0.15470307,0.16845205,0.07095556,0.29987618,-0.8535102,-0.24772696,0.013329059,0.09072945,-0.13504508,0.24472985,-0.3850243,0.33689955,-0.7822019,0.17712311,-0.55570614,0.094509915,-0.17818232,-0.33826405,0.11683294,-0.030418068,0.3703828,-0.26291877,-0.4896269,-0.072325595,0.20471269,0.06329375,0.1439882,0.5599251,-0.17089672,0.004331693,0.12448554,0.6035482,1.0281503,-0.35439909,0.0920552,0.14505237,-0.45059305,-0.6353178,0.098267004,-0.41182625,0.02288394,-0.07714487,-0.37165186,-0.3169107,0.22911988,0.056374293,0.12589352,0.06467253,-0.8402971,-0.132819,0.31016296,-0.28898537,-0.07233921,-0.12990278,0.29715985,0.77078915,-0.35009792,-0.27759802,0.10571789,0.4501996,-0.1386208,-0.6296355,-0.015331879,-0.28856593,0.37463734,0.064525336,-0.25155616,-0.047432587,0.059178293,-0.51803946,0.13269389,0.33804476,-0.32336968,-0.0800755,-0.09183139,0.092668526,0.7615412,-0.17757417,0.056260742,-0.55085254,-0.53391737,-0.84838736,-0.5655282,-0.021064732,0.23449385,0.024932472,-0.37238392,-0.035269413,-0.12780069,-0.14664155,-0.030643811,-0.4908929,0.2581909,0.16971906,0.57955545,-0.28949526,-1.1201602,0.2033188,0.1596537,-0.13006195,-0.59616,0.48660856,-0.1687115,0.6845667,0.047219552,-0.10908108,-0.086385265,-0.58968663,0.08482756,-0.37518674,0.037832487,-0.7003311,0.21629103 -81,0.5072425,-0.3658976,-0.64852005,-0.08260037,-0.17938274,0.10638401,-0.26505342,0.5282467,0.19672921,-0.5412748,-0.10099265,-0.15182495,0.038702585,0.32294503,-0.19811009,-0.63170344,-0.10893496,0.08492153,-0.580549,0.45099753,-0.309923,0.3166247,0.09317418,0.36938503,0.33117387,0.3547723,0.03419962,-0.047948968,-0.4129705,-0.18412504,0.14297836,0.09317341,-0.524105,0.08416819,-0.18651004,-0.44048604,-0.09627066,-0.47050363,-0.27688026,-0.74570274,0.33804518,-0.8597698,0.44561407,-0.15685914,-0.37152883,0.14114851,0.016171329,0.56887156,-0.0761933,0.005113061,0.20120093,-0.12837164,-0.076891646,-0.12944108,-0.22953619,-0.3438613,-0.5287892,0.07440588,-0.34942982,-0.16113481,-0.039702095,0.09677089,-0.37274265,0.12453647,-0.07869032,0.4972306,-0.45778134,-0.11498766,0.28804848,-0.12645206,0.4156109,-0.5303722,-0.16330287,-0.17434289,0.17309402,-0.23111407,-0.15336984,0.2540749,0.28140843,0.41722926,0.049916252,-0.17497267,-0.42698878,0.01889968,0.2891911,0.43286297,-0.035268977,-0.3943302,-0.28124183,-0.0682253,0.22343014,0.09917943,0.23129956,-0.28578433,-0.061996676,0.0029292663,-0.34218243,0.34257305,0.43563515,-0.1637978,0.028915185,0.2734265,0.6302149,0.19552632,-0.19376603,-0.06673034,0.104940675,-0.42550707,-0.12253844,0.25626022,-0.13966073,0.4565531,-0.15312657,0.22613226,0.61570907,-0.2616186,0.043946497,0.062803246,0.0050840457,-0.17712711,-0.16491827,-0.30539715,0.28603932,-0.5499638,0.05887754,-0.39528206,0.67775697,0.19266771,-0.7178041,0.3240139,-0.5445248,0.08868041,-0.14445254,0.3814167,0.60621136,0.50893605,0.10307939,0.5817019,-0.43889868,0.0961697,-0.19416939,-0.31757122,0.05055189,-0.28303114,-0.024360832,-0.41924506,-0.015501508,-0.105911456,-0.19305891,0.02181549,0.35235834,-0.45294815,-0.068799295,-0.055391867,0.83004284,-0.27155158,0.0035300096,0.81852305,0.85657805,0.99492174,0.002729696,1.1940029,0.22044775,-0.29279646,0.15249316,-0.25841525,-0.59475887,0.4408355,0.2787405,-0.3230506,0.33912227,-0.09580953,0.13189307,0.5379572,-0.23107694,0.25724855,-0.23424838,0.03220507,0.085146815,-0.060841274,-0.37543276,-0.2478166,0.0030176998,0.03566587,0.049274944,0.20333262,-0.104118414,0.5925522,0.024345452,1.7004315,-0.15436932,0.11524057,0.04153878,0.30522472,0.101100355,-0.21489273,-0.1345346,0.03189771,0.19002597,0.08185882,-0.50364536,0.029987983,-0.15992735,-0.3528051,-0.22371219,-0.24825004,-0.0068080346,-0.20548026,-0.60799843,-0.04694934,-0.12728162,-0.2212297,0.31530765,-2.5300505,-0.31862104,-0.11909624,0.18893798,-0.46569103,-0.48763138,-0.118341684,-0.45028698,0.4433661,0.22760111,0.541659,-0.6307556,0.41761893,0.44809732,-0.51566887,-0.034365598,-0.54100484,-0.18932928,0.056384552,0.19998632,-0.006687464,-0.1362482,0.062574275,0.11597844,0.43214694,-0.23390089,0.060483873,0.20451637,0.2747825,0.013688871,0.5273493,0.051202282,0.5826609,-0.45878258,-0.23445514,0.3432954,-0.37711373,0.20617837,0.047183886,0.22837442,0.46717772,-0.48748866,-0.7839264,-0.7171425,-0.26846737,1.1636251,-0.042275675,-0.39760813,0.11870652,-0.31704488,-0.40428898,-0.044585396,0.3062881,0.024914093,0.08620796,-0.93866736,-0.08983936,-0.12900093,0.19630323,0.04752364,0.00090487796,-0.3752718,0.6266844,0.025762754,0.34757006,0.4675547,0.21372901,-0.19539131,-0.44002864,0.085620694,0.92678386,0.36129183,0.29317504,-0.35632852,-0.109264396,-0.5097916,0.07960745,0.08658595,0.37706995,0.64843714,0.016934125,0.010080402,0.1580988,-0.13157605,0.074732274,-0.13297293,-0.32963154,-0.18626592,0.052674692,0.5625979,0.5973806,0.050318763,0.5185701,-0.051495448,0.393227,-0.1611273,-0.5182066,0.558419,0.7914687,-0.21349287,-0.4055391,0.37927178,0.5510982,-0.28593573,0.4382948,-0.52889067,-0.3686674,0.30395275,-0.19168396,-0.55169296,0.33889157,-0.37927967,0.30461305,-1.0326478,0.1149378,-0.552579,-0.2552458,-0.5510197,-0.18441702,-3.0229297,0.23298006,-0.021725496,-0.32729116,-0.026024591,-0.11152277,0.2374796,-0.6217236,-0.7574618,0.10352993,0.0054808045,0.7734733,0.010190391,0.048367795,-0.22121117,-0.16547073,-0.15255155,0.10509269,0.230917,0.23150696,-0.02465625,-0.568146,-0.24205609,-0.28917977,-0.3776792,0.10776583,-0.69405776,-0.62935627,-0.24511696,-0.48171842,-0.38871416,0.5876125,-0.2704954,0.06420842,-0.007467063,0.07954638,-0.046441514,0.40290987,0.052555908,0.121059984,0.18560284,-0.17110136,0.12297765,-0.2362323,0.12446175,0.1808586,0.26019266,0.47233248,-0.21204092,0.3867175,0.5701662,0.9156893,-0.049210824,0.72973025,0.41297728,-0.15995461,0.2924289,-0.3408464,-0.40981787,-0.4608429,-0.14162804,-0.07190568,-0.3680322,-0.44131917,0.026153104,-0.3443286,-0.74268955,0.52595097,0.10163693,-0.11380062,0.065159515,0.12373927,0.4605281,-0.23369725,-0.07900395,-0.055514175,-0.024511179,-0.4519315,-0.39240277,-0.65104324,-0.6398218,-0.03237496,1.1563035,-0.014309003,0.09382558,0.11699698,-0.2889194,0.10044384,0.18484643,-0.038969286,0.023948852,0.3241404,-0.12005364,-0.56504,0.4276744,0.005807789,-0.13130717,-0.5729572,0.19327103,0.77403426,-0.5159824,0.42772827,0.40724862,-0.028913118,-0.18523884,-0.35957125,-0.008884132,-0.0032669762,-0.26468846,0.5098632,0.23671202,-0.5108791,0.27254283,0.3949318,-0.29790413,-0.6362429,0.47160402,0.11339652,-0.119591184,-0.21154395,0.36302418,0.004769639,0.05299944,-0.17480375,0.10173845,-0.41592553,0.09484294,0.40904713,0.012804175,0.24752387,-0.11736871,-0.14587396,-0.6805035,0.06382123,-0.45289657,-0.13568728,0.3312991,-0.034230795,0.22520797,0.16729297,0.17176437,0.2957491,-0.28423545,-0.009079565,-0.14359084,-0.2683855,0.3832021,0.41235092,0.46539465,-0.45790374,0.51111454,0.025450507,-0.00014967124,-0.008454565,0.036271587,0.65481925,0.21011995,0.29557213,0.13239056,-0.20983832,0.15739377,0.80043995,0.20518813,0.54994905,0.13449232,-0.22777349,0.061012696,0.16140166,0.18677801,-0.014951853,-0.48217806,0.03382788,-0.06721687,0.0985853,0.32886824,-0.06285413,0.34567377,-0.11222327,-0.3918541,-0.047521226,0.04083967,-0.07812985,-1.3287574,0.40442112,0.23376976,0.795781,0.42795798,0.023204792,0.14536624,0.586374,-0.13427737,0.25359538,0.3349096,-0.09387233,-0.62036884,0.4981926,-0.6965664,0.4270415,0.088625744,0.005567938,0.033393003,-0.10657228,0.5392724,0.70956075,-0.16201405,0.16997972,0.04538356,-0.3624749,0.025035,-0.36402112,-0.06896618,-0.48690188,-0.1922278,0.6744449,0.4618882,0.40516904,-0.17547435,-0.04048248,0.12965408,0.09710924,0.33864644,0.037518024,0.22781709,-0.0060620625,-0.5522302,-0.299826,0.44972458,0.09458634,0.3039333,-0.052699592,-0.22657588,0.22951807,-0.031130785,-0.09429259,-0.18393464,-0.6252383,0.0030503036,-0.5570484,-0.43227214,0.3161182,-0.059575345,0.28041095,0.12995681,0.111293904,-0.37387472,0.5712767,0.0386081,0.80445653,-0.086553015,-0.12991634,-0.19001588,0.27441072,0.32157248,-0.14941907,-0.10228153,-0.1371922,0.10287048,-0.6148891,0.4243618,-0.08129935,-0.39104816,0.14370935,0.051829856,0.10031017,0.511521,-0.26201195,-0.19392858,0.07529887,0.02296765,-0.24561481,-0.26353434,-0.075750336,0.27401552,0.2775559,0.012820447,-0.15792824,0.023685666,0.111251205,0.46325245,-0.045320194,0.47784868,0.49979815,0.09689527,-0.5323843,-0.1453902,0.23554903,0.4933667,-0.04580524,-0.18898776,-0.51564664,-0.36787456,-0.34952354,0.33569488,-0.07692431,0.2567685,0.12914307,-0.32620937,0.8050592,0.018094389,1.1632748,0.024339434,-0.3522152,0.18102542,0.34620205,-0.062874906,-0.07258192,-0.44222745,0.82058877,0.43523833,-0.2305317,-0.07659613,-0.5125516,-0.09347639,-0.037319183,-0.23107538,-0.06753676,-0.07093623,-0.6810207,-0.30785015,0.31855246,0.27655715,0.12804034,-0.2407692,0.17530337,0.22964579,0.018084597,0.213694,-0.47914132,-0.13609533,0.3392046,0.29544133,-0.00083449285,0.13987722,-0.52216494,0.3059961,-0.56236,0.06628557,-0.18760353,0.15112375,0.01726508,-0.3552036,0.2588197,0.018846836,0.21457966,-0.41557497,-0.3639004,-0.24802637,0.5518507,0.1056536,0.18080588,0.5999668,-0.18246715,0.09551463,0.09970123,0.5109788,0.91012585,-0.21988373,0.11909887,0.45116007,-0.19687265,-0.50608927,0.20873909,-0.26058832,0.38921946,-0.09224919,-0.22911477,-0.72230524,0.3197096,0.31698844,-0.085839584,0.041338906,-0.5472735,-0.08882883,0.352457,-0.41079172,-0.3107459,-0.37579003,0.015040477,0.33413452,-0.14033331,-0.32371446,0.14468527,0.31799105,-0.28077048,-0.08284375,-0.10104526,-0.23613328,0.22028944,0.20515491,-0.305579,-0.056315508,0.108307436,-0.47057608,0.098922096,0.08634936,-0.36736143,0.043305222,-0.29357296,-0.056811117,0.8360203,-0.16109058,0.2437091,-0.4693684,-0.47277963,-0.859556,-0.3131279,0.4635688,0.07360809,-0.045387816,-0.68547523,-0.0056704483,-0.09926948,-0.052879356,0.02515127,-0.41621482,0.48806825,0.06554785,0.37686282,-0.13896161,-0.6035864,0.16607997,0.20110743,-0.18423061,-0.56082326,0.4227293,-0.07680818,0.7561812,0.09220084,0.20187964,0.38098133,-0.45583278,-0.05697068,-0.20336924,-0.18725678,-0.5885179,0.0080142375 -82,0.5502638,-0.23730938,-0.5114646,0.055038646,-0.3741103,-0.1860727,-0.44110242,0.24172576,0.4344165,-0.13936701,-0.3603684,0.05345365,0.08789206,0.2818191,-0.052618533,-0.60838586,-0.04135793,0.097622216,-0.9563145,0.8355899,-0.38738212,0.18999839,-0.030436033,0.6489045,0.050010324,0.36615968,0.16047429,0.040717706,0.10942819,0.021693567,0.08339157,0.26364744,-0.7088623,0.14381808,-0.38003573,-0.35537884,-0.099226035,-0.5820001,-0.21714556,-0.9552874,0.22594933,-0.949739,0.5439046,-0.0006697811,-0.18759727,-0.25489888,0.10110121,0.21768089,-0.20281695,-0.21100686,0.09896362,-0.25010258,-0.19472218,-0.31608668,0.14311981,-0.3649626,-0.40623346,-0.018921494,-0.4223701,-0.25164866,-0.07665378,0.085092835,-0.4032655,0.0030259714,-0.30816576,0.36975035,-0.3746718,0.19076605,0.5436656,-0.17777298,0.24177182,-0.7203238,-0.159869,-0.0112071885,0.5794928,0.04984056,-0.42406568,0.2805693,0.2758601,0.5351029,0.29922566,-0.24988951,-0.09134337,-0.10215596,0.23429506,0.57357186,-0.19925475,-0.37060916,-0.2987634,-0.0039876252,0.5100139,0.38568354,0.09348231,-0.09875134,-0.02220433,-0.1561753,0.12153009,0.44454262,0.5845468,-0.056374375,-0.32116225,0.034042638,0.5784278,0.6244334,-0.21772556,0.0028346379,0.067441724,-0.5852891,-0.1817634,0.015031676,0.036500458,0.5553706,0.013906983,0.4033736,0.7091473,0.020645618,0.049670696,-0.0007229398,-0.0993577,-0.18605451,-0.34353173,-0.075502284,0.34381258,-0.61848015,0.070626356,-0.33528113,0.44587278,0.12645695,-0.61563593,0.34193397,-0.56684417,0.2926658,0.062360276,0.6946173,0.9644065,0.34407362,0.5523264,0.807312,-0.16450925,0.20307289,0.12013487,-0.32165655,0.13419116,-0.42739215,0.2392761,-0.5187212,0.1253051,-0.092793174,0.20692013,0.06947623,0.30828622,-0.6294298,-0.25310588,0.08478582,0.6333216,-0.14394344,0.08180594,0.96231514,1.0464501,0.89462954,0.08874035,1.4450566,0.23493631,-0.24253456,0.0636112,0.087970875,-0.8601275,0.18323065,0.30898675,-0.20977771,0.54820263,-0.09256529,-0.22394033,0.6396355,-0.44487008,-0.09322246,0.05234563,0.13833468,0.026283225,-0.22105063,-0.670943,-0.21758425,-0.19751911,-0.07668198,0.082385145,0.27473873,-0.23608811,0.45239148,-0.11809132,1.1724204,-0.27458745,0.059998866,0.15213288,0.35956016,0.28818822,-0.2249512,-0.002182002,0.18809582,0.38268247,0.15963851,-0.6071567,0.290444,-0.3365158,-0.349781,-0.1640711,-0.34275782,-0.3453598,0.062726595,-0.5268669,-0.33311003,-0.21435821,-0.027794095,0.22445895,-2.5604355,-0.41879264,-0.29665664,0.4637175,-0.21053986,-0.08700853,-0.16411316,-0.44660679,0.17657602,0.18650277,0.6008988,-0.639395,0.36278903,0.4278339,-0.7861851,-0.14881115,-0.7199407,0.0060273907,0.28907248,0.48796108,0.07735661,-0.399089,0.05784549,0.20899421,0.6575482,0.1375264,0.20856512,0.46658453,0.6629023,-0.12201952,0.29432443,-0.1841007,0.5731961,-0.5535836,-0.24648635,0.45928046,-0.27962425,0.46835542,-0.25405896,0.141961,0.7166125,-0.4108487,-0.85749674,-0.37404636,-0.2030446,1.0465378,-0.2672931,-0.73639303,0.07534822,-0.59908736,-0.04175618,-0.051310897,0.85683316,-0.07590275,0.177392,-0.78039056,-0.02004105,-0.19205524,0.10694164,-0.038951125,-0.09599402,-0.35980824,0.84997773,0.03243436,0.5917129,0.32852975,0.2992613,-0.06260087,-0.45254517,0.23625498,0.68433905,0.4676657,0.1804014,-0.23836172,-0.09293757,-0.18536665,-0.29630733,-0.00068217516,0.78054,0.65603286,-0.13847017,0.22672981,0.26499698,0.1480692,0.15417294,-0.19289415,-0.09282115,-0.2965309,0.0017074844,0.5008401,1.0958635,-0.26684907,0.23562787,-0.15847947,0.28857425,-0.10518042,-0.50829846,0.7392486,0.5551221,-0.3285285,0.054484114,0.5114222,0.5029224,-0.576502,0.43698612,-0.7324858,-0.2972918,0.5792106,-0.043293115,-0.49921998,0.29509592,-0.31917998,0.26658726,-0.7264568,0.47673878,-0.45159483,-0.32092842,-0.50491494,0.07459953,-2.480355,0.3598149,-0.17673647,-0.06579106,-0.6966891,-0.21470559,0.213504,-0.6586787,-0.7491705,0.254442,0.08062049,0.72384876,-0.23843272,0.05925669,-0.2436315,-0.5693031,0.105836324,0.05723555,0.25944516,0.33415115,-0.33466434,-0.20809531,-0.17378123,0.15046571,-0.3545921,0.10198816,-0.6093047,-0.68275493,-0.16114067,-0.36490583,0.0337662,0.6027881,-0.3428562,-0.035063867,-0.42095825,0.020518253,-0.28617516,0.24843228,0.030838216,0.2670472,0.167688,-0.041721728,0.03989814,-0.16225277,0.44850883,-0.06123661,0.3706956,0.31849816,-0.11569344,0.4126407,0.44475067,0.7703805,-0.22679527,1.1622806,0.3719634,-0.08731123,0.30932948,-0.23184882,-0.41482988,-0.6497666,-0.291129,0.15453784,-0.40293506,-0.63590115,0.13174309,-0.3439459,-0.8674342,0.51754713,-0.0006621505,0.56157404,0.14935195,0.33190316,0.55873686,-0.24978893,-0.051597517,-0.035808373,-0.15511699,-0.67769235,-0.12800322,-0.6435576,-0.56880456,-0.05156834,0.7771776,-0.27836958,0.18262474,0.3830446,-0.4657195,0.055132944,0.16243117,0.029980706,0.01898084,0.4693071,0.22738671,-0.6241011,0.42738366,0.012630527,-0.4177482,-0.44236407,0.2786233,0.71991944,-0.73143786,0.6379173,0.46890786,0.052013967,-0.13798447,-0.52105606,-0.30171415,-0.0106716305,-0.19186066,0.44354296,0.38338462,-0.8267128,0.41130754,0.33902678,-0.32056907,-0.7958556,0.48582768,-0.11032558,-0.119549096,0.003951823,0.37984434,0.05306512,-0.03993425,-0.13293988,0.24922861,-0.4543304,0.2917915,0.15592729,-0.19608586,0.22414462,-0.04279365,-0.3636233,-0.6923316,0.22770305,-0.7480697,-0.20335923,0.58049035,-0.079855464,-0.089688756,-0.016920855,0.43073538,0.33566126,-0.39287722,0.12804256,-0.08289276,-0.4900972,0.27714035,0.59439725,0.3529404,-0.48165116,0.6519446,0.19261523,-0.12875594,0.36503646,0.26933393,0.316094,0.042089958,0.4517859,-0.29267284,-0.09118394,-0.06644305,1.044243,-0.0044238716,0.4137945,0.071723424,0.109547436,0.47434697,-0.027424388,0.29058793,-0.22156157,-0.5019563,0.050420504,-0.09258106,0.1508338,0.53427356,0.3793559,0.06404036,0.06115659,-0.24248321,0.049495935,0.43548298,0.10090389,-1.4646153,0.37186253,0.2554904,0.9476382,0.2966435,0.034628022,-0.18138145,0.6903248,-0.05310303,0.093063235,0.44581494,0.0060099214,-0.5683009,0.8455575,-0.57284063,0.36252752,-0.24071515,0.02187161,0.15203767,0.25601482,0.20829515,0.71026427,-0.29767677,0.009222894,-0.26388803,-0.18134616,-0.013445933,-0.36049318,-0.043119404,-0.2420007,-0.5691337,0.88638896,0.5565296,0.45337978,-0.4160048,0.1440656,-0.0018896075,-0.13818257,0.3905008,-0.08341529,0.02963976,-0.0058697513,-0.6535799,-0.06762852,0.5389691,-0.18159299,0.13417494,-0.3135107,-0.42630306,0.109889925,-0.23279919,-0.029593656,-0.086457394,-0.8693428,0.21098894,-0.65547717,-0.81977934,0.5831384,-0.113392055,-0.038792305,0.39601,-0.025221586,-0.09299025,0.45907354,-0.3636123,0.9074543,-0.0424639,-0.30264843,-0.3365158,0.2754039,0.3543749,-0.33767936,0.17005628,-0.32297334,0.36998478,-0.22324407,0.811229,0.08912888,-0.5058576,0.03836082,-0.07217472,-0.05720018,0.60866433,-0.20301096,-0.24232878,-0.05370438,-0.2741724,-0.3514397,-0.35623375,-0.24895732,0.17028765,0.32441393,0.1338485,-0.21772157,-0.28971744,-0.18071075,0.3847597,0.069517225,0.57518744,0.5088468,0.094967626,-0.30762196,0.17810126,0.5041013,0.50290006,0.22618453,-0.16676402,-0.5371329,-0.71071655,-0.51558036,0.31111655,0.00046204776,0.31354755,0.1554055,-0.12090939,0.89615965,-0.068581596,1.0277525,0.11501739,-0.3285518,0.13350661,0.55259126,-0.277707,-0.18851207,-0.4662415,0.9447778,0.4057518,-0.13648675,0.20393865,-0.3288981,-0.094236076,0.37961903,-0.3488598,0.19102068,-0.1627003,-0.55232954,-0.30936792,0.052586112,0.34283733,0.034576233,-0.2723976,0.100878626,0.020136962,0.005112806,0.1975575,-0.8058761,-0.5299266,0.26122162,0.05671975,-0.30225524,0.07381486,-0.39994553,0.3546009,-0.73442715,0.16200124,-0.7475269,0.14098215,-0.057498664,-0.45096207,0.14866251,-0.2155834,0.5044845,-0.6122973,-0.28520587,-0.17033117,0.1561573,0.31456995,0.07349188,0.58206946,-0.34777668,-0.04891287,0.26979187,0.7411534,1.1451749,-0.4607719,0.16355373,0.108663134,-0.5253615,-0.55578154,0.3130431,-0.41101512,-0.041324895,-0.28034428,-0.46251336,-0.6515469,0.053821493,0.1788029,0.12875551,-0.20386375,-0.9141722,-0.26981786,0.22913337,-0.40338528,-0.20287848,-0.41014218,0.19546898,0.7475608,-0.13804494,-0.27961516,0.051138084,0.1696731,-0.107373886,-0.50274485,0.10095646,-0.33144698,0.2589049,0.004998485,-0.37318718,-0.15221578,-0.054543138,-0.61228293,0.23225407,0.19539519,-0.42677364,0.07319951,-0.26969105,-0.061605457,1.1809214,-0.3590542,0.03126697,-0.43974924,-0.63612187,-0.88122606,-0.5129512,-0.15067564,0.34108296,0.1501653,-0.46114063,0.17877476,-0.058814753,-0.055469766,-0.06493687,-0.47576198,0.37568521,0.17224969,0.72434855,-0.48202667,-1.0311987,0.16635995,0.09529894,-0.06989946,-0.4993519,0.36523023,0.05721828,0.8203991,0.11161935,-0.053087488,-0.14598666,-0.5208996,0.012028933,-0.25037995,-0.123234116,-0.86926085,0.18674533 -83,0.55699563,-0.6950253,-0.67488045,-0.15226059,-0.3026416,-0.12844613,-0.41190624,0.5516479,0.053594403,-0.32936826,-0.39628664,0.011113799,0.06724204,0.6881106,-0.16064517,-0.6782664,-0.19009805,0.07057956,-0.8136681,0.85614884,-0.43238553,0.16600464,-0.010240038,0.5013626,0.39161775,0.18978818,0.45579427,0.12800436,0.248451,-0.2033941,0.25991896,0.106607355,-0.71999955,0.31896168,-0.26314992,-0.6094769,-0.24042463,-0.75794774,0.09987615,-0.884205,0.07895878,-0.9283421,0.38615614,-0.0011434588,-0.4102519,-0.2956701,0.3585497,0.4525355,-0.26524767,-0.00052795146,0.37447673,0.023988105,-0.3604616,0.09762202,0.08914571,-0.40148452,-0.6461557,-0.1910927,-0.7178198,-0.24085575,-0.05331788,0.11919562,-0.322807,0.021280117,-0.28229028,0.31627384,-0.52856594,-0.39206123,0.29339048,0.09017591,0.3912333,-0.711358,-0.18955234,-0.35845575,0.51363546,-0.036761932,-0.41286775,0.286816,0.3660103,0.47034448,0.31502363,-0.29163033,-0.33874738,-0.2669124,0.43066365,0.5169554,0.13373148,-0.35022154,-0.5591947,-0.14798686,0.3396891,0.40313685,0.1517474,-0.48130915,0.032655902,-0.29432705,-0.13539986,0.7154521,0.38433135,-0.26938853,-0.32057285,0.2777964,0.8944461,0.7173362,-0.38832647,0.14689143,0.06623479,-0.59940314,-0.21753147,0.33153474,-0.05687494,0.547868,-0.16173322,0.11604447,0.7139933,0.13360305,-0.11407578,-0.048333935,0.038459398,-0.43834293,-0.40069753,-0.5369895,0.29009566,-0.50742126,0.40957597,-0.31619507,0.7272961,0.15426067,-0.9139335,0.35672247,-0.68407845,0.25614148,-0.011329048,0.59575,0.79840046,0.3554128,0.39915565,0.8606144,0.020472076,0.23759812,-0.11375848,-0.13115498,-0.0819278,-0.44631338,-0.073144995,-0.6599725,0.3315039,-0.39010713,0.1971948,-0.11419389,0.6754955,-0.3850257,-0.32239687,0.18728249,0.53787917,-0.23656909,-0.04258379,0.8549943,1.1117793,1.5539304,0.19754162,1.2585839,0.2086873,-0.25110298,0.08316839,0.00014599826,-0.88667035,0.18325312,0.47905242,0.27221256,0.51380944,-0.2228276,0.059284847,0.57499796,-0.42641538,0.290968,0.17333817,0.38511452,0.10273846,-0.18623513,-0.6639544,-0.2390696,0.08023385,-0.10373202,-0.1520586,0.3424704,-0.08748559,0.34104148,-0.008918153,1.2510338,-0.30720317,0.018468112,0.08366121,0.44744137,0.23519972,-0.37525862,-0.21708538,0.11012917,0.50165963,-0.16627005,-0.8461952,0.27983665,-0.36435002,-0.40206343,-0.070563205,-0.37694004,-0.2862632,-0.13602132,-0.50461173,-0.01430833,-0.02507117,-0.35875526,0.37901673,-2.399098,-0.37386015,-0.40163916,0.18523921,-0.26443753,-0.14457351,-0.22979842,-0.45829624,0.44591337,0.21796146,0.70859957,-0.5790788,0.6444143,0.6247245,-0.70016235,0.006102403,-0.73191494,-0.1879596,-0.011400592,0.5003415,-0.049146313,-0.08472614,0.13668767,0.5296935,0.7939462,0.16084148,0.2642709,0.6488914,0.39312556,-0.018562084,0.7282517,-0.1889047,0.501252,-0.8004592,-0.17136094,0.23188268,-0.35430688,0.5306496,-0.18043776,0.14751299,0.7871266,-0.7667348,-1.1444613,-0.63973385,-0.64249027,1.063975,-0.5201544,-0.40281704,0.30530643,-0.14271706,0.12713245,0.13978454,0.6324241,-0.08219153,0.19573489,-0.64750165,0.006260026,-0.023936847,0.115530305,-0.09110204,-0.037532493,-0.44604662,0.9907609,-0.14681236,0.8303633,0.5519229,0.28470004,-0.17580634,-0.3708503,0.1805533,0.7134441,0.43027574,-0.018741956,-0.4276151,-0.14286363,-0.527288,-0.21280149,0.19153064,0.5703981,0.7691168,-0.28078198,0.24341877,0.20648678,0.05983682,0.089920595,-0.33729568,-0.33320615,-0.20652722,0.09138134,0.43967745,0.7518391,-0.11375186,0.32657456,-0.12977536,0.053769484,-0.13093401,-0.59433293,0.5493158,0.5848122,-0.25765947,0.084664606,0.6048546,0.72714674,-0.41938603,0.72996414,-0.6940274,-0.14115724,0.7663074,0.012115585,-0.36167207,0.19635968,-0.5166787,0.14865144,-1.1482991,0.1551841,-0.7432038,-0.39090002,-0.36819956,-0.0823759,-2.4026058,0.5098779,0.20896322,-0.2185318,-0.46170828,-0.09817477,0.21423185,-0.8835796,-1.2334197,0.28439558,0.0014020404,0.72433025,-0.33384255,-0.037880883,-0.2901051,-0.37692448,-0.1254109,0.40061158,-0.12328974,0.4712811,-0.21739198,-0.47106832,-0.057522163,0.02230876,-0.6060341,0.053459823,-0.6902856,-0.67427504,-0.10218503,-0.72673935,-0.26376092,0.5063166,-0.5643636,-0.09039564,-0.053465813,0.011870629,-0.21349488,0.2868602,0.06858183,0.42379862,0.19351083,-0.044190794,-0.1163498,-0.11130299,0.20997937,0.0193182,0.072526306,0.08449942,-0.22691737,0.27116367,0.7117149,0.89908767,-0.23583671,1.3333703,0.3591998,-0.0862135,0.2731198,-0.29569182,-0.105904736,-0.7583214,-0.27842987,-0.35887253,-0.37907255,-0.9944634,0.18884046,0.06257975,-0.8008177,0.6539552,0.100615144,0.50209755,-0.015664915,0.030789945,0.13471545,-0.18726413,0.063982196,-0.06730571,-0.14166856,-0.50859237,-0.4413498,-0.7249072,-0.54712933,0.004376332,1.0007554,-0.3189061,-0.14864731,-0.025146408,-0.56053066,0.22733876,0.25178927,0.02277506,0.34800196,0.32879755,0.27149218,-0.57900023,0.29303756,0.049127273,-0.1723563,-0.25488666,0.13017851,0.8198087,-0.6105975,0.7250518,0.30961567,-0.13167368,-0.26211846,-0.78771484,-0.15135215,0.20872556,-0.08144638,0.48550287,0.2215536,-0.8385656,0.5152788,0.35221767,-0.33713314,-0.9434208,0.7104258,-0.0795239,0.094135314,-0.24759547,0.5173484,0.17458399,-0.07069217,-0.405501,0.43583792,-0.31678098,0.20452087,0.18744291,-0.09663471,0.18338148,-0.09194191,-0.13993722,-0.77785534,0.056889575,-0.7375622,-0.17772667,0.5565288,-0.15059833,-0.17637768,0.23442872,0.28493214,0.29837433,-0.48840135,0.2475057,-0.034900177,-0.5361098,0.43323478,0.5999824,0.29968974,-0.29473975,0.56203973,0.23902996,-0.022884097,-0.031966764,-0.0062968964,0.16394655,-0.13170674,0.5519662,-0.1460477,-0.09166327,0.06117175,0.74877673,0.18874735,0.4989412,0.10614101,-0.2206865,0.3263723,0.22892506,0.57837176,-0.3122071,-0.4032385,0.30361447,-0.09457192,0.057206526,0.6633408,0.1375579,0.21454078,0.20672561,-0.044937715,0.06598774,0.31670123,-0.19887942,-1.6586514,0.48285213,0.16820158,0.8933701,0.9065707,0.08627624,0.024459004,0.34823155,-0.45633513,0.068773076,0.69441825,0.17239764,-0.4353958,0.87063605,-0.6763841,0.44867957,-0.34988892,-0.038778618,0.1842073,0.1601492,0.54194736,0.8308427,-0.17024463,0.0490759,-0.2255345,-0.1498252,-0.02538183,-0.41074467,0.1183057,-0.34790057,-0.5533375,0.96799684,0.58848554,0.60554576,-0.19094096,-0.03543079,0.00026269755,-0.19450468,0.28048736,-0.1279141,-0.1511864,0.15222815,-0.6389277,0.00055827695,0.8441654,-0.28046063,0.115291014,-0.23487899,-0.6908499,0.11681715,-0.053354412,0.18874034,0.11582449,-1.2565455,-0.06436649,-0.41517374,-0.4463351,0.287699,-0.40253592,0.08798541,0.31693134,-0.11442104,-0.25563312,0.24170364,-0.029234346,0.7904713,-0.08674923,-0.15470186,-0.021406017,0.15819234,0.30711898,-0.27055827,0.16264331,-0.25680828,0.13905773,-0.44403183,0.6352964,0.041427713,-0.74620897,0.26871586,-0.12900102,-0.16851118,0.7089127,-0.077469364,-0.08597147,-0.20299429,-0.2183668,-0.34643358,-0.32164946,-0.2788192,0.3065161,-0.12939398,0.15015447,-0.16150258,0.06461612,0.30099618,0.44332,0.15178981,0.5935427,0.49353826,-0.034483247,-0.50168717,0.33750105,0.21829194,0.3585426,0.18189138,-0.03033834,-0.3840697,-0.1628852,-0.41117728,0.1349039,-0.3440147,0.22494173,-0.021835646,-0.31372285,0.65974176,0.110642955,1.387058,0.10119779,-0.54695296,0.21097569,0.5105079,-0.20101754,-0.21237022,-0.37024292,0.90464795,0.63964707,-0.27825594,0.011390518,-0.42745027,-0.31715208,0.2759613,-0.34833238,-0.04197167,0.05816465,-0.5253992,-0.2448118,0.07623288,0.20076562,0.09286331,-0.39624307,-0.11445403,0.27157634,0.080268554,0.47463274,-0.86364245,-0.25620347,0.0054273605,0.21701902,0.055830583,0.104366034,-0.31198496,0.27293763,-1.0918461,0.5059732,-0.589069,0.20325972,-0.32877016,-0.3733064,0.09027785,-0.019710727,0.4534006,-0.1357413,-0.3744572,0.02080504,0.51303184,0.09789922,0.13802081,0.7795579,-0.37134683,0.19555208,0.27142447,0.5478593,1.2062266,-0.50622946,-0.13874143,0.19952464,-0.47126898,-0.7193421,0.29642093,-0.41067755,0.088654846,-0.22140378,-0.49121127,-0.6870896,0.021749517,0.15274458,0.103465796,0.14983176,-0.8243919,-0.028805401,0.34603155,-0.302361,-0.21759492,-0.4096074,0.108948685,0.75601065,-0.2950126,-0.5754988,0.018987026,0.14699513,-0.1613608,-0.5036206,0.07438876,-0.14726196,0.31403124,0.08122393,-0.48348093,-0.062919304,0.18395393,-0.54951596,-0.13322133,0.037754018,-0.2624005,0.04461945,-0.39902905,-0.09585078,1.2388066,-0.348869,-0.06875959,-0.3851873,-0.61610514,-0.7292254,-0.3081531,0.363084,0.05657421,-0.04715954,-0.41460487,0.37070835,-0.17096798,-0.24039772,0.049520094,-0.40220833,0.47529972,0.17428194,0.4709779,-0.1742348,-0.9786937,0.3950163,0.3596219,0.1803988,-0.53077084,0.6001863,-0.1332471,0.8384085,0.113591194,-0.13664688,-0.42859694,-0.8607597,0.2708394,-0.13092227,0.30322492,-0.6575873,0.19006926 -84,0.2153948,-0.25636408,-0.4805203,-0.04483781,-0.1464658,0.059216198,-0.18783051,0.57444835,0.12424902,-0.43512183,-0.14229994,-0.2062712,-0.095330715,0.12164479,-0.119626984,-0.5531224,-0.04639034,0.24516584,-0.51137865,0.43522966,-0.46017578,0.17614578,-0.008214877,0.45867068,0.18382868,0.15982905,-0.025959061,-0.07840102,-0.22923191,-0.25978792,-0.09144088,0.17396882,-0.5484666,0.1287671,-0.14161253,-0.26156548,-0.052936748,-0.47461465,-0.348619,-0.7713802,0.3877568,-0.7006506,0.4298599,0.12539949,-0.2847004,0.12891254,0.12435324,0.40998855,-0.05672515,-0.03737443,0.33854055,-0.15434936,0.005779225,-0.21978667,-0.1418787,-0.19424838,-0.5083846,-0.028384496,-0.35692772,-0.2687906,0.01709618,0.28126886,-0.28859165,-0.088739835,-0.21964043,0.642419,-0.3437648,0.09305036,0.374606,-0.15795936,0.2543842,-0.5773827,-0.1387822,-0.1350259,0.074725375,-0.21520017,-0.2680493,0.12625827,0.19617778,0.40122125,-0.17111763,-0.14426008,-0.07320301,-0.121294335,0.082461886,0.5294951,-0.2845393,-0.32991144,-0.096748896,-0.05872974,0.0508341,0.1746681,0.071502775,-0.3446954,-0.108518615,-0.12888326,-0.25197232,0.26832324,0.46896178,-0.19336444,-0.19221336,0.29458734,0.5262047,0.24531339,-0.11832683,-0.038594343,0.121521,-0.55595815,-0.1866619,0.17484388,-0.10892332,0.49566144,-0.14484902,0.18219839,0.6810465,-0.14889155,-0.055983223,0.091478534,0.24402541,0.22760606,-0.452822,-0.4482053,0.24092744,-0.40430802,0.116227746,-0.17606279,0.7826567,0.120865345,-0.60800004,0.42529994,-0.5389467,0.079795875,-0.02776422,0.54703546,0.6899932,0.39581734,0.28522146,0.56077546,-0.29484418,0.08674626,-0.12362143,-0.03195801,0.10161838,-0.043288883,0.16633591,-0.4216335,-0.013556015,-0.06733653,-0.10376795,0.013944538,0.19216268,-0.6656564,-0.03349457,0.08239097,0.8329413,-0.20991427,-0.09760356,0.6919042,0.8787196,0.90998036,0.17394914,1.0703206,0.2832761,-0.21441555,0.07669193,-0.10954924,-0.7939502,0.18250939,0.21966217,0.2083548,0.0666018,0.18354654,-0.075361,0.49218437,-0.37387925,0.06471259,-0.24328774,0.3911942,0.035928912,0.011977177,-0.20999947,-0.34705245,0.02592841,-0.066367745,0.05062174,0.22152755,-0.20439376,0.33192238,0.012209792,1.6418018,-0.046748757,0.24041143,0.13018139,0.36434263,0.13406417,-0.2470865,-0.0876832,0.40551817,0.3960379,-0.007896364,-0.52945435,0.13093969,-0.1091914,-0.31471136,-0.05219118,-0.11674551,-0.075976886,-0.24190523,-0.45847115,-0.2273639,-0.17514668,-0.15396258,0.36414814,-2.9059598,-0.043441013,0.016724208,0.32465,-0.2841187,-0.44612217,-0.107507996,-0.46835408,0.44188148,0.24122916,0.3794517,-0.6497793,0.3766952,0.21606578,-0.33551443,-0.15983413,-0.7043759,-0.115119055,0.017973743,0.18591891,-0.09387462,0.19275576,-0.1727117,-0.01343044,0.35433975,-0.13974439,0.16837876,0.33049628,0.3095695,0.25660813,0.2565498,0.062352125,0.37371656,-0.2979223,-0.21426636,0.28208813,-0.6472347,0.24653329,0.04162288,-0.026531257,0.4766788,-0.38614437,-0.62682474,-0.6643859,-0.3789372,1.0136628,-0.28576586,-0.29776648,0.17027268,-0.57273155,-0.37445098,-0.083800405,0.582455,-0.038072746,-0.11482918,-0.8073083,-0.14711833,-0.14690131,0.52065986,-0.051095046,-0.019969344,-0.3122914,0.44807544,-0.19692181,0.36446026,0.441548,0.027687011,-0.47123104,-0.41649416,-0.018076448,0.8928395,0.3402678,0.18594623,-0.03648724,-0.17719483,-0.3104943,0.04969573,-0.013270686,0.6676623,0.7558062,-0.056268886,0.1821588,0.35684505,-0.11727798,0.029319461,-0.1310992,-0.39084065,-0.111545324,0.14709562,0.5507899,0.49622986,-0.044155225,0.49086004,-0.032061115,0.29512686,-0.33213264,-0.36954543,0.29835203,0.6078635,-0.052202545,-0.13164441,0.51623523,0.3675215,-0.26764548,0.435253,-0.49873748,-0.26371294,0.47673252,-0.17214158,-0.46777338,0.26622227,-0.24633919,0.083355024,-0.6407104,0.40423635,-0.38308346,-0.77376187,-0.64662224,-0.16864172,-2.601939,0.14204799,-0.26818198,-0.27131942,-0.11206326,-0.11359416,0.21397935,-0.35807002,-0.52246416,0.21148871,0.092671305,0.62174827,-0.01110726,0.029306797,-0.23430842,-0.17424735,-0.30431703,0.13497272,0.24502502,0.17558596,-0.1447553,-0.3568433,-0.12604839,-0.16550805,-0.3266052,0.09365276,-0.6964617,-0.49255818,-0.11426242,-0.66373265,-0.3197737,0.7303781,-0.41664404,0.022770252,-0.24917728,-0.08323793,-0.11143171,0.4381733,0.2968729,0.2986228,-0.085142925,-0.032506056,-0.1526868,-0.23547204,0.011223545,0.099991456,0.1423822,0.34579527,-3.4845792e-07,0.21395046,0.2391116,0.6319618,0.057271555,0.7588388,0.44650683,-0.16756731,0.3444638,-0.25407544,-0.19218427,-0.26331836,-0.09747021,-0.013008322,-0.31384578,-0.4621348,-0.14613596,-0.30834386,-0.7197332,0.419202,0.049411662,-0.17073902,0.0508194,0.34208664,0.33665502,-0.15700197,-0.016583603,-0.123824015,0.004060824,-0.3966827,-0.30722088,-0.48586208,-0.30911893,0.28467208,1.0996615,-0.21213685,0.14426509,0.043908916,-0.27180642,-0.16884874,0.35221192,-0.19478992,0.22050872,0.534045,-0.11564761,-0.5827784,0.26624948,-0.138912,-0.35116354,-0.5665114,0.17744063,0.74986523,-0.77779514,0.7309293,0.2520506,0.036819313,-0.39446926,-0.45096046,-0.27073348,0.03200949,-0.35324982,0.29814702,0.22746979,-0.52477175,0.32693973,0.376128,-0.21261446,-0.7460503,0.32266456,-0.051856473,-0.42499363,-0.12515086,0.38182032,-0.19509356,0.17227069,-0.11381427,0.17885216,-0.39874655,0.07412478,0.18233332,-0.17775342,0.17619395,-0.2804783,-0.08891775,-0.61056596,0.20533241,-0.5009851,-0.40219545,0.23512457,0.02187236,0.141245,0.33561108,0.09642862,0.37988964,-0.21677193,0.16014344,-0.15324908,-0.17130886,0.18131587,0.488633,0.35295904,-0.36633107,0.5992359,0.10545352,-0.026841726,-0.29912883,0.15811095,0.4720201,0.020326775,0.37507203,-0.14823389,-0.18875091,0.28165448,0.94955456,0.08773644,0.56671107,-0.100957885,0.16509101,0.14224344,0.007848561,0.15298216,0.17342503,-0.42338112,-0.088401586,-0.12279863,0.11960955,0.39189038,0.14203247,0.40578854,0.00962459,-0.2850437,0.0029492723,0.22427866,-0.046337843,-1.0401129,0.44252226,0.22956806,0.85320824,0.5904534,0.16779351,0.06935426,0.5663538,-0.1280489,0.15431036,0.16597413,-0.10727843,-0.40826428,0.5837937,-0.7330993,0.41741624,-0.08237307,-0.04928744,-0.07908019,-0.16020386,0.6040182,0.72522634,-0.17284347,-0.025096783,0.036599614,-0.2017029,0.11613666,-0.3172848,0.0790584,-0.6960316,-0.45380723,0.5381951,0.45697168,0.38494554,-0.23313716,0.008852789,0.25399774,-0.053802073,0.06890312,0.00832819,0.06794576,0.1469462,-0.5586358,-0.31989238,0.60063446,-0.32073462,0.097939655,0.075259,-0.12665083,0.30190113,-0.17446372,-0.029478274,-0.1536054,-0.74530834,0.13121966,-0.39228678,-0.35030854,0.4765243,-0.26166427,0.12475732,0.086953245,0.18587941,-0.31017208,0.60445625,0.21133192,0.75029343,-0.03511968,-0.13051698,-0.21714643,0.35196787,0.06185865,-0.07476587,-0.17077404,-0.1882604,0.04159925,-0.67366874,0.42470858,-0.039981227,-0.093182735,0.07993957,-0.10284294,-0.028941823,0.5045202,-0.031643752,-0.06216062,0.015445865,-0.4854411,-0.24475397,-0.05550224,-0.081497364,0.30934876,0.1954508,0.041826215,-0.06929112,-0.03863891,-0.25569308,0.4468826,0.08230631,0.29465315,0.37303466,0.17932269,-0.36281306,-0.11504478,-0.043851502,0.4557801,0.119746275,-0.03974219,-0.1300132,-0.28716856,-0.3242134,0.5120483,-0.11228587,0.48210204,0.023499044,-0.24604797,1.0116091,0.06509396,0.9670851,-0.09068028,-0.29268268,-0.05528208,0.37923387,-0.10960657,0.018965181,-0.4966749,0.8351227,0.2911406,-0.06402323,0.03831121,-0.20281121,-0.09030465,0.3577704,-0.1067617,-0.12065755,-0.11510234,-0.552673,-0.2326822,0.18949355,0.2497059,0.03148464,-0.05648084,0.035153504,0.33279407,-0.08393494,0.112344615,-0.4147094,0.2397566,0.3082482,0.25691974,0.097931735,0.16753814,-0.37325656,0.40724277,-0.5135752,0.23235358,-0.1167991,0.09894722,-0.17087232,-0.39151856,0.13633583,0.12175377,0.26233995,-0.50043446,-0.13583368,-0.24438047,0.47446358,0.23735546,0.20441619,0.573898,-0.28241333,0.081591375,-0.089780286,0.51681054,0.77478886,-0.24974085,-0.17649522,0.4268091,-0.26949093,-0.69748867,0.37059137,-0.25193486,-0.030195732,0.018282373,-0.20301352,-0.39436147,0.23534451,0.3321132,0.11929737,0.031765778,-0.5608991,-0.026391152,0.38855156,-0.08411288,-0.29614323,-0.36058316,0.2627098,0.7768866,-0.16838352,-0.2932613,-0.016223338,0.21751414,-0.35784644,-0.2993483,0.00057833124,-0.44268715,0.28828144,0.008355205,-0.2119763,-0.12291687,0.11213439,-0.4533704,-0.021331837,0.095011435,-0.2738834,0.013789723,-0.09360159,-0.060075678,0.78160137,-0.18080051,0.028931411,-0.50765,-0.468019,-0.58991265,-0.23768264,0.40165088,0.12249672,-0.039400797,-0.62168527,-0.082522355,-0.11824683,-0.1046516,0.011723716,-0.3159947,0.5246649,0.18589629,0.18182606,-0.08502852,-0.77508664,0.073512636,0.072688766,-0.28492534,-0.4872104,0.3908337,-0.08926438,0.7732681,0.04342634,0.0095587885,0.28399447,-0.35964042,0.1920133,-0.2050326,-0.20463273,-0.72504586,0.050332896 -85,0.4130866,-0.2624192,-0.48464507,-0.09813253,-0.40776646,0.11735763,-0.24190466,0.49725062,0.19447261,-0.5344108,-0.2042878,0.014509341,-0.10793717,0.14666454,-0.13705468,-0.39456394,-0.10400428,0.23379925,-0.6019489,0.7496604,-0.3097391,0.124771066,-0.043867204,0.3676359,0.27243966,0.20282835,-0.056099225,-0.14043036,-0.32994366,-0.14815974,0.020663794,0.3454835,-0.53210706,0.31707364,-0.41536918,-0.37498617,-0.12620555,-0.46415395,-0.42891794,-0.69133234,0.17692383,-0.89805335,0.57267064,-0.11821355,-0.25122967,0.24340527,0.14428475,0.3355907,-0.04221765,0.100188345,0.15520388,-0.21946913,-0.14450513,-0.35394406,-0.09506008,-0.4621015,-0.53496945,-0.059881438,-0.30971578,0.08389821,-0.16785465,0.24765041,-0.12875181,0.020203803,-0.24552208,0.3676287,-0.49097908,0.33950713,0.10328995,0.023444675,0.11621243,-0.7384878,-0.26603878,-0.10603706,0.13885133,-0.05714745,-0.26648527,0.31524143,0.17472777,0.54596186,-0.03179741,-0.09395815,-0.2955026,0.10754262,0.16124962,0.44286835,-0.2681005,-0.23018792,-0.11326347,0.034063067,0.48920524,0.06675178,0.06477373,-0.24779941,-0.043525346,-0.16576181,-0.18153141,0.2875057,0.39657673,-0.21190602,-0.15805365,0.43613857,0.41310757,0.32760006,-0.17713946,-0.13587332,-0.18247724,-0.45526856,-0.11068119,0.13235797,-0.28345236,0.56971145,-0.13707635,0.11334567,0.29768282,-0.055280186,-0.0704123,0.2226739,0.15738332,0.14887388,-0.12292098,-0.35328254,0.29855525,-0.4523376,0.04744834,-0.33851627,0.4804865,-0.051889874,-0.572309,0.27460298,-0.5157976,0.09538515,-0.024477828,0.3848626,0.6965779,0.57340246,0.06506142,0.6532289,-0.14467846,0.07562267,-0.09140788,-0.1851885,0.10870065,-0.26334682,-0.06185843,-0.5505536,0.14733249,-0.22232343,-0.1038222,0.04900805,0.48806152,-0.51017344,-0.23627296,0.04567256,0.76479924,-0.28058833,-0.1457271,0.8352735,1.0056126,1.0006666,0.045723163,1.0875397,0.2897617,-0.20408262,-0.11288282,-0.27539098,-0.5774413,0.31115338,0.27372628,-0.4027664,0.31689674,0.12802677,0.04576608,0.45179832,-0.35637525,-0.12506066,-0.289664,0.3192173,0.075358704,0.002337262,-0.403408,-0.38837194,-0.07881921,0.13904047,0.17286141,0.21303324,-0.25794464,0.39377716,0.057609603,1.397052,-0.13371615,0.0070327334,0.13963881,0.29768258,0.1381855,-0.119491085,0.11259472,0.14459385,0.25796726,-0.008729152,-0.5063058,0.16948706,-0.2461492,-0.56261146,-0.17824483,-0.19312263,-0.29146385,0.083960116,-0.50524145,-0.30131346,-0.046077948,-0.21917814,0.36963734,-2.4384782,-0.1511973,-0.19113412,0.50728476,-0.31128997,-0.3216181,-0.16255523,-0.42815095,0.2730943,0.2886164,0.4690119,-0.6043685,0.4450188,0.29767781,-0.59577227,-0.058300838,-0.6149477,-0.14750296,0.072994694,0.33278555,0.021654954,0.0033911373,0.30404446,0.030529138,0.4830262,-0.2353631,0.24686812,0.4038149,0.34826994,-0.05508136,0.29542878,-0.03840368,0.579473,-0.3918059,-0.27626693,0.45704308,-0.32046497,0.24660772,-0.07035797,0.08441035,0.4794244,-0.5032315,-0.8211533,-0.67589164,0.06459129,1.3492278,-0.11201671,-0.5253695,-0.026682978,-0.38224924,-0.2966771,-0.04769482,0.33131087,-0.16591647,-0.08285295,-0.91668177,-0.082423806,-0.14440249,0.25494888,-0.04614718,0.0037735403,-0.49391887,0.68712187,0.008034296,0.58146477,0.37167728,0.3531177,-0.18585712,-0.3830469,0.046320405,0.75879186,0.51748025,0.09596348,-0.24754965,-0.23934743,-0.35558024,0.13849989,0.27332276,0.52874005,0.37319294,-0.09910616,0.094036326,0.2585044,-0.029667787,0.026047222,-0.21141018,-0.31854513,-0.28491503,0.22453642,0.6932131,0.74409497,-0.09779504,0.35220167,-0.11553517,0.39814365,-0.10711174,-0.6113085,0.44935083,1.1959993,-0.28111055,-0.3530302,0.6427618,0.5993135,-0.22007619,0.452963,-0.6560395,-0.49925193,0.18913046,-0.10535832,-0.37558103,0.028115738,-0.379932,0.3311419,-0.8426491,0.5146599,-0.42581356,-0.3491907,-0.74207425,-0.05659288,-1.5795683,0.22088294,-0.14348523,-0.21661955,-0.17476998,-0.23703754,0.14062813,-0.6068489,-0.6167484,0.15977816,0.17768455,0.5258938,-0.051683847,0.023629121,-0.18565038,-0.4497945,-0.039859742,0.1548926,0.23993507,0.39926267,-0.111714445,-0.5063264,0.059552357,-0.08299548,-0.20123568,0.039308317,-0.6116624,-0.6166029,-0.033646755,-0.47104117,-0.17130661,0.33977175,-0.3733717,0.0056036413,-0.23886508,0.095633015,0.061199214,0.16251521,-0.085979566,0.26641095,0.21394326,-0.09193499,0.08348561,-0.15458922,0.35580117,0.1722337,0.1048989,0.47343758,-0.2145076,0.18245915,0.52343416,0.6095074,-0.30001324,0.8005227,0.5964496,-0.19864357,0.2673988,-0.18085,-0.3309925,-0.5520494,-0.2621578,0.107082665,-0.40095025,-0.32448363,0.12521918,-0.34979087,-0.95765805,0.57858974,-0.09661803,0.14899367,0.06999371,0.14300463,0.55537486,-0.13578954,-0.055575714,-0.050885048,-0.1399827,-0.46360213,-0.53547454,-0.6298147,-0.39451474,-0.094757825,1.1968923,-0.15222089,0.17269966,0.26325783,-0.27774617,0.04990397,0.23622659,-0.11340313,0.021606077,0.5424112,-0.17146546,-0.65417117,0.2595899,0.05953533,-0.03291769,-0.45234275,0.42944553,0.62567353,-0.5166949,0.5456336,0.46127766,0.019786896,-0.10418022,-0.60367244,-0.16610214,0.049368903,-0.29046094,0.4066282,0.25325575,-0.6614479,0.41358107,0.20012392,-0.35553554,-0.6853821,0.5928066,-0.07812394,-0.24313152,-0.16654544,0.33610508,0.08133814,0.09128932,-0.16002904,0.25054318,-0.3471019,0.441399,0.12366043,-0.03399368,-0.13717702,-0.29738665,-0.075021125,-0.93139434,0.09291418,-0.42992932,-0.39597222,0.25767013,0.031840287,0.1429339,0.07301128,0.23812762,0.34453562,-0.33267248,0.08664774,-0.18972617,-0.30003735,0.42552358,0.4048798,0.59587157,-0.4451115,0.514209,0.07796957,-0.2428211,-0.019055234,-0.0011848956,0.45342147,0.12021364,0.2845897,0.0905049,-0.042400688,0.18935302,0.7548617,0.24661668,0.35365862,-0.08164437,-0.24375711,0.12399435,-0.025200963,0.24175225,-0.22927201,-0.42872894,-0.10784401,-0.078276284,0.12310438,0.39929944,0.08730088,0.2963125,-0.15799195,-0.27149615,-0.020589726,0.12795146,0.18102665,-1.3114604,0.21043625,0.2297549,0.8988018,0.49773204,0.012113496,0.04042194,0.636753,-0.31612554,0.01256505,0.46779624,-0.06529912,-0.4483209,0.43093818,-0.72201514,0.3308075,-0.032538317,0.072522976,0.037773106,0.0667314,0.4102679,0.76525545,-0.17850485,0.18492809,-0.026914645,-0.3774876,-0.05521522,-0.16866858,0.19127339,-0.5336114,-0.3820855,0.7239151,0.5508018,0.50850976,-0.28772467,0.012994905,0.13293739,-0.12988582,0.27302313,0.103903264,0.12438156,0.036104854,-0.6119845,0.07417473,0.45285404,-0.13531087,-0.016602032,0.0897078,-0.23818961,0.27521002,-0.0550574,-0.031981107,-0.0044759456,-0.5840924,-0.13955876,-0.39527008,-0.18296644,0.26195478,-0.099050894,9.880867e-05,0.09717405,0.09415117,-0.22261569,0.13371886,-0.04896494,0.8238809,0.08279079,-0.19688725,-0.3623116,0.25799397,0.19022228,-0.11006665,0.0815047,-0.24836041,0.11329652,-0.5945345,0.4148292,0.05995092,-0.18309581,0.07252453,-0.088875696,0.06985544,0.38983315,-0.055013314,-0.24836959,0.106108725,0.055692326,-0.41285276,-0.14809567,-0.15565684,0.25171748,0.3743215,-0.020005211,-0.24430615,-0.08796014,-0.091919586,0.5419651,0.105630554,0.44806153,0.47092676,0.021780593,-0.48326063,0.027722334,0.1969339,0.5212637,-0.05960764,-0.15027691,-0.36293888,-0.36772135,-0.37603748,0.4097911,-0.16971782,0.24318172,0.10982333,-0.13979214,0.7135991,-0.01588607,1.2023253,-0.0900987,-0.34006813,0.050608505,0.41685215,-0.14201644,-0.12643258,-0.47708946,0.7920028,0.51461256,0.099206455,-0.041177202,-0.47050345,-0.07021649,0.017178014,-0.1677994,-0.13418347,-0.15295674,-0.71016216,-0.3032821,0.19968772,0.2576397,0.02119995,-0.09250912,0.14234719,0.3155439,0.12503006,0.19470158,-0.4184608,-0.34863022,0.3029941,0.29487872,-0.06392901,0.1530159,-0.5074428,0.24061498,-0.5261814,-0.06496943,-0.11105405,0.07682745,-0.20229712,-0.25201604,0.20487681,-0.010742199,0.30400115,-0.47529754,-0.37746632,-0.22117317,0.45319164,-0.07839978,0.073240265,0.4734382,-0.18937066,0.083309814,0.12122731,0.40824276,0.9472949,-0.45260882,0.17495655,0.346485,-0.3886662,-0.59214246,0.20012811,-0.3085007,0.15977904,0.058291323,-0.22235633,-0.619797,0.3116194,0.10944076,0.105075404,-0.1333864,-0.64021707,0.10336629,0.37524506,-0.27249962,-0.1341774,-0.16142182,0.047058694,0.413807,-0.16550142,-0.38491493,0.068440706,0.30572766,-0.18622038,-0.3431316,0.011354972,-0.4314769,0.28605473,0.12001549,-0.35628182,-0.25649017,-0.050162084,-0.45670182,0.16595824,0.3476014,-0.28572685,0.061209284,-0.31116557,0.11120304,0.7952568,-0.16991572,0.23591049,-0.44723687,-0.42992747,-0.7983623,-0.33588877,0.09307186,0.3478317,-0.12674367,-0.69424725,0.03932268,-0.16578177,-0.37612927,-0.109295085,-0.30219638,0.5592111,0.1868155,0.27674627,-0.20542657,-0.7320837,0.27027252,0.18579713,-0.15246055,-0.35853276,0.44065383,-0.041574836,0.9730109,0.09233238,0.11529893,0.10344262,-0.501805,-0.1340878,-0.13511986,-0.04562427,-0.6363111,-0.07240813 -86,0.5443111,-0.083397426,-0.5493235,-0.17897575,-0.16925001,0.03799951,-0.23751964,0.48944652,0.12360627,-0.5703885,-0.21895324,-0.16225663,0.1859559,0.21203023,-0.15063979,-0.68642044,0.12340418,0.27663213,-0.29459608,0.47439593,-0.5058103,0.41466767,0.023415145,0.35013792,-0.0041386713,0.26104987,0.1667164,-0.17433771,-0.02417346,-0.3381887,-0.07346819,0.31401289,-0.8247848,0.14969751,-0.13644019,-0.54567873,0.21309607,-0.32117873,-0.28697836,-0.6573919,0.11827651,-0.76431286,0.5137234,0.29127827,-0.32102233,0.06772949,0.117380984,0.35117736,-0.23128048,0.19514424,0.19284448,-0.15191562,0.00887206,-0.2500171,-0.10744857,-0.51510805,-0.6223496,-0.14411211,-0.3747166,-0.16617133,-0.37605283,0.20846708,-0.27949652,0.018376043,-0.04049944,0.22057962,-0.5127374,-0.11919591,0.24584284,-0.18192922,0.42743254,-0.44619352,-0.22450124,-0.13962658,0.33599842,-0.41768405,-0.20594798,0.2243219,0.23246437,0.45983252,-0.03848175,-0.22060816,-0.37057745,-0.12869094,-0.026588788,0.6379453,-0.23303853,-0.40077612,-0.09799806,-0.12237407,0.009746224,0.44146603,0.093563825,-0.033829156,-0.19279186,-0.10384731,-0.2501332,0.18064615,0.48500136,-0.461739,-0.24044701,0.17271343,0.37119308,-0.029344486,-0.056852855,0.06887356,0.007845996,-0.5809034,-0.27719158,-0.0034488714,-0.2337211,0.60606265,-0.042070583,0.19713844,0.75102705,-0.02682619,0.11601463,0.013399069,-0.038819477,0.10027286,-0.20160106,-0.31133702,0.4776162,-0.4455055,0.21623649,-0.2833091,0.777888,0.22835407,-0.6925862,0.26554042,-0.6636342,-0.018663295,-0.123753004,0.4783126,0.31974322,0.41423872,0.35341388,0.6792494,-0.58659923,0.09544743,-0.048130926,-0.19041666,0.058469217,-0.107772864,0.021001317,-0.2866461,0.063657515,0.13725387,-0.030298023,0.14876422,0.49009416,-0.5609249,0.030623479,0.35514766,0.839922,-0.36530483,0.040929463,0.5997209,1.0037555,0.90120053,-0.00029240205,1.2322837,0.22445172,-0.37758416,0.008664755,-0.10540748,-0.7307311,0.1850219,0.42601797,0.16935904,0.25444072,0.32859594,0.00998353,0.31798744,-0.2768211,-0.053632285,-0.1304395,0.043882873,0.0357397,-0.1546874,-0.4455937,-0.32844993,-0.19970693,-0.025126027,-0.17030877,0.28406432,-0.17646216,0.21129104,0.051821813,1.7901319,-0.0018851482,0.17660843,0.15299071,0.4558064,0.272889,0.005016453,-0.049826257,0.2960469,0.22612868,0.21944435,-0.41121724,-0.013912857,-0.21850553,-0.434148,-0.12246021,-0.23085967,-0.11388026,0.0022274645,-0.5189056,-0.10507311,-0.041945733,-0.1340964,0.455763,-2.482352,-0.06775026,-0.012895486,0.45389387,-0.3366857,-0.37816048,-0.17028962,-0.45894513,0.5190111,0.44712418,0.5597865,-0.618101,0.39861855,0.4729482,-0.44978043,-0.029216306,-0.6141329,-0.26382032,-0.10377664,0.13516298,0.021095883,-0.072226234,-0.20040263,0.13106783,0.43521336,0.030198606,0.05583233,0.17876276,0.28120798,0.01920441,0.59753186,0.07905614,0.4412875,-0.15955943,-0.14833072,0.32085148,-0.53283376,0.335878,-0.07167009,0.07070962,0.37210962,-0.5759768,-0.99956393,-0.7051881,-0.40379572,0.94123465,-0.17574795,-0.2864423,0.33927646,-0.23790066,-0.31140327,-0.055989463,0.40110397,-0.013320721,0.1782855,-0.7589355,-0.09802926,-0.19597515,0.27049717,0.14303638,0.01778346,-0.56723964,0.8212217,-0.1640425,0.45368722,0.41497913,0.23419636,-0.0027904143,-0.51416385,-0.09967287,1.0533705,0.2188217,0.22699095,-0.37781164,-0.2812211,-0.3767429,0.14480576,0.10845768,0.51062226,0.81376463,-0.17367426,0.12925589,0.19764392,0.08918199,-0.054258343,-0.19470742,-0.3510027,0.032513984,0.11195789,0.5526152,0.59572613,-0.030011225,0.2820986,-0.04312263,0.51112944,-0.2219611,-0.45486706,0.16070281,0.99605787,-0.0062745763,-0.19307882,0.7583333,0.6715481,-0.22625835,0.4995503,-0.8061495,-0.42742282,0.30123684,-0.16326247,-0.35491878,0.26751485,-0.44957024,0.04288291,-0.9202696,0.4376908,-0.36417294,-0.40126246,-0.53155303,-0.22107968,-3.844785,0.27771482,-0.1754683,-0.13931674,0.16779628,-0.089484945,0.29745856,-0.7102958,-0.5452214,0.21029605,0.028682746,0.6794334,-0.15008184,0.14423457,-0.2799898,-0.24069078,-0.22851108,0.315957,0.24096495,0.10938712,-0.082982905,-0.43580973,-0.07564795,-0.17647314,-0.26905584,0.11981893,-0.575417,-0.487827,-0.14149703,-0.5602983,-0.22801901,0.66750515,-0.40809822,0.046369214,-0.15178663,-0.061338764,-0.22793421,0.28325784,0.1802542,0.23428747,-0.06859146,-0.10983343,-0.1165631,-0.310719,0.337742,0.12860386,0.2552765,0.26208243,-0.21572106,-0.01612668,0.45594758,0.34466285,-0.21197289,0.91687703,0.39378908,-0.124913014,0.33323193,-0.2668222,-0.3682105,-0.6927706,-0.40088975,-0.094111316,-0.37908474,-0.41308057,-0.07140924,-0.41097376,-0.66755587,0.67407894,-0.1308317,-0.0322056,-0.006667731,0.29454625,0.33501455,-0.28682804,-0.23129486,0.011533595,-0.011088842,-0.5633639,-0.312441,-0.5296942,-0.48358065,0.0037987279,1.0894886,-0.303757,0.075781114,0.12770037,0.031124193,0.039206084,0.24957982,0.06318169,-0.039237317,0.56476843,0.09410035,-0.715736,0.62071323,-0.108824365,-0.2747334,-0.48447943,0.13383839,0.60131717,-0.8622926,0.5895843,0.49427244,0.27139553,0.12867634,-0.7050521,-0.45364317,-0.011958404,-0.29661322,0.36427644,0.21943782,-0.7489175,0.19858958,0.2764212,-0.4415873,-0.64948106,0.68305933,-0.11067736,-0.53970736,0.028668817,0.34239525,0.038584672,0.061604157,-0.079555914,0.28778556,-0.44443294,0.26589835,0.3631792,-0.023455627,0.13488269,-0.1822553,-0.0007064159,-0.81375927,0.11190288,-0.4226282,-0.370734,0.23401318,-0.071210116,-0.26367325,0.49872193,0.2732055,0.46066207,-0.4309615,0.18321282,-0.06534861,-0.34221455,0.56599915,0.3834324,0.52718925,-0.4227679,0.56143045,-0.10402731,-0.16849764,-0.17972943,0.08749354,0.5552938,-0.18350035,0.39109468,-0.09508606,-0.105278604,0.27554458,0.83060455,0.21552724,0.49695772,0.059921544,0.07612094,0.21578714,0.20729494,-0.029249169,0.21689019,-0.5082894,0.06460797,-0.2106567,0.12618546,0.52188605,0.10164742,0.2560886,-0.113620885,-0.23655325,0.059054367,0.24204962,0.07895262,-0.8524183,0.36862418,-0.0060477247,0.78194565,0.63032055,0.16354895,0.14870892,0.43010923,-0.26256278,0.062306542,0.22837344,-0.07024078,-0.4345177,0.56918365,-0.49434286,0.31280664,-0.04573149,0.02641143,-0.032375112,-0.26090434,0.5337184,0.9590734,-0.096884295,0.12421623,0.03840304,-0.16969354,0.078558,-0.41128415,-0.16245034,-0.6216079,-0.19283822,0.8186499,0.48655036,0.38603723,-0.158137,-0.04421713,0.066327795,-0.11177023,0.21559548,0.04956416,0.032541838,0.025564266,-0.45573884,-0.1981404,0.6141392,-0.17606218,0.08182276,-0.025954647,-0.09112415,0.39502952,-0.068926066,0.0904108,-0.05837051,-0.7283479,0.012872531,-0.6694197,-0.24988033,0.4445801,-0.09272074,0.29273468,0.25755662,0.09235501,-0.09943589,0.38824236,0.18286675,0.6889836,0.036622226,-0.14850031,-0.39594093,0.2118899,0.17877151,-0.22979616,0.050302424,-0.33568767,0.17809065,-0.77068275,0.40460572,-0.007516494,-0.21301533,0.09587528,-0.05123589,-0.089604184,0.44644004,-0.09027342,-0.23747066,0.19213359,-0.012668527,-0.18155766,-0.07188154,-0.26334718,0.14952916,0.03804669,-0.07588976,-0.03343072,-0.017791761,0.07489315,0.4753545,0.0032498264,0.43700224,0.25426152,0.06015087,-0.29248965,0.027276516,-0.016435247,0.5375386,-0.2739039,-0.135888,-0.28161663,-0.52060646,-0.3270408,0.22254014,-0.19953777,0.2643573,0.18548241,-0.19005172,0.924507,0.11585564,1.0754737,-0.02701229,-0.39147502,-0.027840398,0.62304205,-0.13858369,-0.09806486,-0.45623037,1.2459514,0.6046407,-0.19759195,-0.17897676,-0.107799694,-0.06338324,0.018174639,-0.19527023,-0.14503354,-0.061242554,-0.67207235,-0.19663347,0.21178637,0.42668027,0.14291048,-0.089971654,0.112942256,0.2941231,0.20056358,0.06988525,-0.5881652,-0.35193995,0.3006346,0.2607883,-0.04737935,0.11787013,-0.30713212,0.4415426,-0.44327876,-0.045340564,-0.44099534,0.012042289,-0.14231864,-0.44472048,0.18321015,-0.005098196,0.2848588,-0.33992884,-0.22245906,-0.09734027,0.3663264,0.19962817,0.27077788,0.45542178,-0.25099233,0.03715033,-0.07351717,0.4782055,1.08446,-0.32829124,-0.04260458,0.5435582,-0.4742123,-0.5091987,0.16162784,-0.43907467,0.06649489,-0.09352961,-0.3969444,-0.5279375,0.24132696,0.18312,-0.12631382,0.20237952,-0.53871244,-0.15017742,0.24380182,-0.4680169,-0.40665838,-0.28908905,0.40778872,0.7829599,-0.180713,-0.2297568,0.21836154,0.11421425,-0.32081026,-0.5891047,-0.04579362,-0.37355644,0.3647312,0.07726312,-0.27790144,-0.099734075,0.011102142,-0.40013173,0.1304153,0.40478295,-0.27945635,0.08665276,-0.5398356,0.060035285,1.0530361,-0.09660895,-0.15741253,-0.5012215,-0.42438653,-0.8998559,-0.42296174,0.7267209,0.27853444,0.09208545,-0.34789813,-0.01480119,-0.048835475,-0.10997259,-0.11855551,-0.17226052,0.41756922,0.10972692,0.4921432,-0.23144911,-0.88146794,0.06767514,0.1349432,-0.395242,-0.50421757,0.422277,-0.15783504,0.9366653,0.13957359,0.0126208365,0.4253945,-0.43652332,0.027071297,-0.2022011,-0.055967387,-0.77949274,-0.07411565 -87,0.4266479,-0.092675306,-0.73690957,0.17157833,-0.31836787,0.1267031,-0.44944534,0.25603953,0.542773,-0.17196488,0.0462686,-0.22660536,-0.10279038,0.044560418,-0.15826271,-0.44224384,-0.06925865,0.25161156,-0.49545622,0.6452313,-0.17737508,0.353516,0.14551537,0.35016885,0.24844857,0.2530385,0.045683365,-0.112219624,-0.17101735,-0.31848022,-0.04453737,-0.09328761,-0.6582667,0.29324043,-0.4964465,-0.23780537,0.07927232,-0.54409933,-0.5166865,-0.8426251,0.36770177,-0.83729315,0.6584058,-0.059289943,-0.19734214,0.07338729,0.19638969,0.26320824,-0.017033398,-0.109894775,0.24952023,-0.48899594,-0.31225765,-0.36825657,-0.43032017,-0.43194494,-0.47293344,-0.17252393,-0.34853712,0.1295968,-0.2858704,0.293061,-0.3483756,0.024900317,-0.13932627,0.12791367,-0.38893452,0.2980454,-0.019661367,-0.30365044,0.07944196,-0.74467033,-0.066497825,-0.09787468,0.105588794,0.26525623,-0.1714288,0.28734425,-0.07684357,0.3897768,0.06784837,-0.06920522,-0.37695444,-0.092520066,0.0729711,0.5873119,-0.17432685,-0.035407096,-0.12625788,-0.08247725,0.63776475,0.54257077,0.08203855,-0.19107099,0.12366294,-0.4467319,-0.30337262,0.48446402,0.71570545,-0.15397277,0.22905892,0.15756583,0.35126218,0.5784837,-0.20685546,0.070674025,-0.12953894,-0.27560613,-0.14516726,0.20236225,-0.16291389,0.4648377,-0.068108186,0.10809105,0.51662886,-0.189142,-0.019233892,0.21785204,0.24564616,0.13358438,-0.33277914,-0.33295628,0.46514687,-0.536316,0.08951189,-0.3958321,0.52176017,-0.056767613,-0.7062852,0.4134356,-0.5716073,0.1409191,0.14537132,0.6044306,0.62166077,0.72160023,0.20879386,0.99346095,-0.28776476,0.076061375,-0.11201308,-0.18448906,0.17200847,-0.07193107,0.36388135,-0.34295645,0.08741484,-0.040501725,-0.14815302,0.057597995,0.4996511,-0.25414205,-0.1487452,0.12995057,0.8870763,-0.26785988,0.264904,0.82285935,1.3418976,0.860461,-0.019874332,1.1415256,0.3025854,-0.2477346,-0.3512555,0.17982197,-0.9461463,0.111685045,0.25352287,-0.16896021,0.39853367,0.26779702,-0.29441556,0.19567424,-0.3950455,-0.18022837,0.05968659,0.16123804,0.019755268,0.06438718,-0.3532847,-0.33908656,0.081884906,0.039469242,0.21408723,0.25645864,-0.28672898,0.46716592,0.1560983,0.94150615,-0.18244879,0.00046558058,0.21822171,0.38671732,0.2684716,0.040190738,-0.027943397,0.3381509,0.25316456,0.009372051,-0.50860566,0.0005925248,-0.21560015,-0.22979249,-0.2119587,-0.23890603,-0.3141521,-0.06899425,-0.0231662,-0.4649581,-0.15381251,-0.35577974,0.4252384,-2.8667076,0.1203838,-0.08531237,0.34937572,-0.14046828,-0.117894255,0.04480429,-0.47999063,0.49638072,0.20111553,0.47930643,-0.48994443,0.21890336,0.7081364,-0.72249985,-0.10727176,-0.60624534,-0.16223769,0.023785284,0.34895253,-0.03590539,-0.15748756,-0.18278427,-0.104978435,0.37605274,0.15765311,0.16739981,0.4215691,0.6481996,-0.1641505,0.30583116,-0.18485819,0.59418774,-0.49251005,-0.14546277,0.4029689,-0.55601907,0.38039646,-0.4982051,0.11012892,0.62048453,-0.26757583,-0.5584026,-0.33739147,0.13966902,1.1920246,-0.43657675,-0.89931995,0.15560226,-0.28223062,-0.14025839,0.06548424,0.6429854,-0.15010941,-0.07141683,-0.5047992,-0.2751548,-0.1619596,0.31719133,0.037127297,0.14540453,-0.5064662,0.79940987,0.015145764,0.57796043,0.35667518,0.3121598,-0.24809958,-0.42456257,0.22547595,0.58044416,0.5188398,0.017064653,-0.22385621,0.03737545,-0.034462046,-0.45953533,0.04056188,0.83688134,0.5923249,-0.16530152,0.041219134,0.30496117,-0.23397838,0.19509304,-0.14667058,-0.48677397,-0.29614142,-0.11435791,0.52340126,0.7388441,0.13337,0.37082207,0.12523453,0.3440517,-0.13123982,-0.383943,0.4218364,0.5343024,-0.24330385,-0.14801736,0.59080833,0.5795626,-0.3002921,0.65735924,-0.7379342,-0.46594584,0.45000815,0.13327219,-0.65383166,0.42805278,-0.3607252,-0.09544731,-0.76574916,0.133879,-0.35924825,-0.52415174,-0.5663609,-0.23067534,-1.7843891,0.03683989,-0.29231796,-0.086554915,-0.4086968,-0.1223991,0.15297484,-0.23221321,-0.7058063,0.15065375,0.34279713,0.41012445,-0.20086443,0.16721694,-0.23498821,-0.25781655,-0.37057284,0.27356473,0.14442731,0.15499942,-0.21663891,-0.27799138,-0.13640763,-0.11875787,-0.07293062,-0.12600279,-0.59776324,-0.14208642,-0.06815204,-0.43106198,-0.23195118,0.6552086,-0.6035432,-0.11060747,-0.39868033,-0.021171361,0.081219964,-0.020953542,-0.15368252,0.14598106,-0.01238137,-0.109527506,0.025146151,-0.21550043,0.35400066,0.2211296,0.19160056,0.27288467,-0.06538392,-0.045030918,0.32371643,0.5223406,-0.18633883,1.1009384,0.21488011,-0.19641198,0.40551612,-0.23771356,-0.44440547,-0.5484584,0.01771685,0.15224443,-0.38694802,-0.4774231,-0.24444991,-0.31463197,-0.6999583,0.49384224,0.28116906,0.2780937,0.025653476,0.19698782,0.4378504,-0.023928842,-0.11122951,0.043967936,-0.15884055,-0.2979228,-0.1758772,-0.709646,-0.40214467,0.04215169,0.97805804,-0.22568022,-0.049719352,0.49420896,-0.42404175,0.0031920995,0.26435396,0.096607745,0.10351292,0.5671913,0.31798503,-0.49352324,0.46336234,-0.13098316,-0.060506046,-0.71975094,0.08884751,0.7412136,-0.8968074,0.27032375,0.5359177,0.005615654,-0.38478515,-0.633346,-0.10423506,0.1241199,-0.17938828,0.2689439,0.41395772,-0.615635,0.36182556,0.21635191,-0.19218105,-0.7944145,0.35076365,-0.08312494,-0.33755198,0.0003301526,0.49732006,0.022750458,0.04983646,-0.14928982,0.110815905,-0.3920786,0.4515196,-0.046118658,-0.16322514,0.17092669,-0.15150116,-0.20725118,-0.86300683,0.26249626,-0.3044297,-0.3037914,0.72789603,0.043075938,0.038376313,-0.00808239,0.38205504,0.34708616,-0.40724537,0.24029595,-0.46058783,-0.30087712,0.59369385,0.4997969,0.5583311,-0.5585765,0.61035365,0.03732482,-0.4615992,0.36136493,0.07361252,0.28873247,-0.061445806,0.42254066,0.11442856,-0.10679885,-0.03903268,0.723247,0.17757191,0.38268957,0.079432964,0.03655439,0.4350504,-0.061483145,0.08817253,-0.04188019,-0.7983965,-0.18470138,-0.31726155,0.24166064,0.41558087,0.2094953,0.60395825,-0.09089743,-0.15715623,0.013083135,0.12237602,-0.018426426,-0.9689026,0.2503626,0.096846856,0.7075481,0.60158545,0.04937459,0.044265073,0.73775417,-0.04036377,-0.07669207,0.3930767,0.1960032,-0.32825062,0.5650917,-0.6217422,0.46542716,-0.25212666,-0.005815834,0.36273274,0.20127307,0.69562,0.96037906,-0.31645334,0.0636001,-0.027390769,-0.20945121,-0.21864183,-0.18716611,0.093893856,-0.39770737,-0.4821109,0.7243243,0.22765326,0.45603344,-0.29170045,0.005550871,0.09978124,-0.016621208,0.43852344,0.19256121,-0.0912115,-0.16794765,-0.5018124,-0.1330331,0.6548467,-0.15306611,0.07298731,-0.008541564,0.028035417,0.38065276,-0.09891925,0.00902604,-0.001127561,-0.65797424,0.17317235,-0.3734639,-0.6085176,0.33422837,0.24715976,0.09186918,0.2024741,-0.0067152255,-0.026018212,0.23302813,0.2359825,0.8798869,-0.014601926,-0.29782602,-0.27105793,-0.022825705,0.16307448,-0.26974174,-0.17428195,-0.12452406,0.2694969,-0.4629899,0.41906187,-0.48354077,-0.34039494,0.15073727,-0.31420624,-0.17024384,0.57782644,-0.21349852,-0.10724968,0.21275496,-0.14485587,-0.3352692,-0.36050534,-0.5023307,0.0004164949,0.062968336,-0.090399124,-0.33678293,-0.20122619,-0.12323002,0.16621338,-0.058107983,0.33064517,0.3970501,0.27837667,-0.46694088,-0.03211536,0.16974945,0.60455585,-0.029622862,-0.09065799,-0.27317926,-0.45929375,-0.3551379,0.48881915,-0.008864873,0.23088706,0.0814927,-0.31405398,0.9644108,-0.054835096,0.8176498,-0.09520477,-0.25899243,0.22040707,0.641757,-0.17129505,-0.22209175,-0.5040905,1.025522,0.604894,-0.1019635,-0.03638734,-0.500355,0.014348696,0.18578677,-0.3306609,-0.14625193,-0.049374476,-0.56337243,-0.040926445,0.106215455,0.23360632,0.06466912,-0.12409202,0.1575786,0.32231915,0.24158277,0.124672435,-0.36369094,-0.2659696,0.5998581,0.14916457,-0.12965728,0.10309621,-0.27782208,0.2754856,-0.42923906,0.099101804,-0.79286367,-0.031001413,-0.06752051,-0.19516127,0.095870234,-0.27443537,0.30006793,-0.5372943,-0.30137956,0.041018203,0.2935389,0.35456228,0.34825692,0.44995868,-0.25182402,-0.06278605,-0.12540387,0.62151223,0.91079897,-0.36972797,0.05419308,0.12541471,-0.5733262,-0.51227456,0.26838106,-0.4406375,-0.09087157,0.061342407,-0.35783276,-0.41680622,0.25007072,0.030902142,-0.11347399,-0.29726413,-0.61801624,-0.22033815,0.026626846,-0.16276832,-0.237257,-0.33031195,0.03990679,0.8550733,-0.15464906,-0.40048885,-0.11355615,0.14301024,-0.29121166,-0.56254363,0.19139095,-0.3927642,0.27264038,0.007852777,-0.35656992,-0.10509622,0.2139417,-0.7340689,0.08109485,0.032805223,-0.3077936,0.08147266,-0.27986804,0.32313815,0.76883125,-0.1891228,-0.040842682,-0.33115235,-0.63399214,-0.8205569,-0.3173822,-0.1557599,0.32129017,0.09506989,-0.58362144,0.007581958,-0.42422342,-0.022701278,-0.041948408,-0.5210387,0.38894853,0.120586075,0.6319814,-0.4005085,-1.0654911,0.30974618,0.08545705,-0.45516142,-0.37391052,0.433609,-0.06442067,0.7849191,0.050442692,0.022825753,0.14699264,-0.5986742,0.26330718,-0.16868615,-0.2600018,-0.782306,0.22832082 -88,0.4844987,-0.2564008,-0.39991507,-0.34680143,-0.39469948,-0.15099339,-0.1814723,0.46810654,0.32807174,-0.35638538,-0.23139787,-0.032816943,0.104842216,0.42829552,-0.21665402,-0.5779124,0.06013508,0.23036069,-0.78116536,0.79556656,-0.29048857,0.21259741,-0.013525824,0.36220348,0.53173095,0.20194133,0.0069901845,0.18375337,-0.00049267214,-0.17448103,-0.1982622,0.4121503,-0.5512707,0.41370344,-0.07842258,-0.4257444,-0.1415002,-0.3429992,-0.3001399,-1.0296594,0.2516169,-0.9730423,0.36095405,-0.11024477,-0.45389223,-0.008128345,0.50023824,0.49979195,-0.23517506,-0.3582748,0.055906665,0.057054598,-0.1334101,-0.12794773,-0.057918966,-0.553163,-0.6132074,-0.16431227,-0.46618676,-0.2283756,-0.48922637,0.22279398,-0.47582927,-0.0051998645,-0.024555394,0.67087346,-0.49804354,0.2876153,0.22199653,-0.0006587903,0.35398006,-0.6397001,-0.27002728,-0.19404979,0.30315688,0.11443099,-0.54244524,0.5119215,0.5694613,0.17809726,0.039749295,-0.15996172,-0.31819457,-0.08734298,0.1912712,0.27258655,-0.09405405,-0.41729227,-0.16154924,-0.047036946,0.35322177,0.36118698,0.40023634,-0.3028796,-0.122716576,0.13668625,-0.2434702,0.40522507,0.34772587,-0.36963114,-0.22254205,0.40250716,0.623225,0.18618424,-0.3922646,0.08543087,0.046852652,-0.54387146,-0.1302662,0.06838856,-0.23933445,0.6575372,-0.32962698,0.17764439,0.707359,-0.08634445,-0.32554272,0.3041382,0.1859474,-0.37357894,-0.26414758,-0.33604786,0.24635948,-0.5071801,0.099393636,-0.20416404,0.7389469,0.17702289,-0.6586971,0.22355442,-0.6136301,0.29010394,-0.26787326,0.4699054,0.96906924,0.5986449,0.5714851,0.7396923,-0.3389825,-0.00076408684,-0.004952391,-0.4291195,0.2784458,-0.52723676,0.17683439,-0.54494417,0.12652157,-0.08205531,-0.19543643,0.13912626,0.5684181,-0.6027208,-0.24377717,0.16342048,0.72455055,-0.1839875,-0.22936964,0.8594453,0.8956211,1.1255397,0.24780309,0.93202525,0.15161215,-0.1697401,0.35811934,-0.0053649694,-0.6607062,0.39803573,0.39272866,-0.13711685,0.101940475,-0.025604999,0.0567608,0.59509957,-0.3475839,-0.022105359,-0.26903278,0.24172463,-0.013864939,-0.37897697,-0.38848543,-0.46444097,-0.16860558,0.08461022,-0.09099724,0.29725134,-0.014534722,0.656743,0.0060154,1.643772,0.19629247,-0.16935639,-0.0013240104,0.5156824,0.29204044,-0.35464886,-0.014933269,0.37609395,0.34434584,0.24355097,-0.61363703,0.26863566,-0.25430727,-0.38049862,-0.10346743,-0.58987707,-0.23327278,-0.011058249,-0.5554412,-0.4044247,-0.26739967,-0.20462199,0.5143414,-2.6742318,-0.27572566,-0.16703434,0.3903769,-0.10388139,-0.19295913,0.04914831,-0.57830596,0.4011066,0.36171642,0.59122163,-0.7350839,0.3450254,0.35312715,-0.8133332,-0.052548546,-0.65552163,-0.15708427,-0.011837379,0.43126222,0.08454791,-0.054418508,0.22364242,0.20122917,0.4703652,0.1424594,0.30315268,0.40705776,0.42453954,-0.31167087,0.6837001,0.0056617535,0.5965973,-0.118020214,-0.33497784,0.24368836,-0.38250223,0.22413771,-0.021920407,-0.039698023,0.8043199,-0.5465015,-1.1217097,-0.72682077,0.093310826,1.1428194,-0.36450514,-0.4819903,0.28890803,-0.5789478,-0.1542572,-0.044844594,0.5800559,0.017266467,0.008113402,-0.89837545,0.039514575,0.013768609,0.08006545,-0.08438748,-0.28997755,-0.34901676,0.8268418,-0.013073146,0.6370232,0.06162851,0.08339411,-0.6719599,-0.38813558,0.10908294,0.5560898,0.41828907,0.018136805,-0.3593488,-0.3159437,-0.60423416,-0.17345767,0.14624383,0.5957071,0.31195465,-0.28902134,0.29174516,0.4572929,-0.20621853,0.05023573,-0.19683981,-0.27870846,-0.1339273,0.041953724,0.45019725,0.9313677,-0.05032522,0.49810743,0.013760935,0.30726776,-0.066160664,-0.71309376,0.69042325,1.4107875,-0.29279685,-0.40048087,0.57731014,0.5583979,-0.1546409,0.50519675,-0.34880415,-0.1856523,0.506224,-0.019015083,-0.32367438,0.07238937,-0.39907274,0.1293252,-0.8694136,0.25749567,-0.5444489,-0.5461709,-0.5100879,0.094898105,-3.3237312,0.29053876,-0.19359004,-0.21252443,-0.25785676,-0.32052782,0.101128995,-0.91423887,-0.62931806,0.09581361,0.021257525,0.91526276,-0.22429018,-0.04827309,-0.16233568,-0.49520764,-0.16129921,-0.07428449,-0.11389962,0.57671523,-0.08791267,-0.46248326,0.009484655,-0.08885618,-0.5537407,-0.037702795,-0.60324234,-0.6384879,-0.15052576,-0.61486393,-0.43115243,0.7137998,-0.26948664,0.07746888,-0.2544351,-0.074854895,-0.012963976,0.19859828,0.18611626,0.11272079,0.149339,-0.08149679,0.01907902,-0.16637282,0.11387086,-0.19459645,0.3321711,0.2592054,-0.013063927,0.55853516,0.73958164,0.6208637,-0.12655896,1.0848153,0.5214739,-0.019106777,0.16292985,-0.19197476,-0.3490564,-0.53474534,-0.049944837,-0.1297948,-0.47118726,-0.21951713,0.060027923,-0.31265935,-0.809192,0.5933971,0.289148,0.3635418,-0.007915472,0.116359405,0.6333082,-0.05509934,-0.10079799,-0.11201301,-0.37903252,-0.76999503,-0.17079288,-0.7284465,-0.5601933,0.16433488,0.96965104,-0.37872216,0.0075834543,0.07842297,-0.20124388,0.111172676,0.36301008,-0.12527895,0.23257433,0.34774876,-0.21156089,-0.5432817,0.3343571,-0.12881167,0.046741497,-0.5961997,0.47628316,0.41049218,-0.40293363,0.5601626,0.34917498,0.041607324,-0.41476753,-0.5210698,-0.19040696,-0.1541613,-0.23648404,0.5679695,0.37156627,-0.80140257,0.34589937,0.45001444,-0.23657195,-0.71044064,0.74503374,-0.18602401,-0.20610158,-0.252483,0.30419537,0.34997296,0.15450478,-0.27050826,0.17706573,-0.42728814,0.13537346,0.24078386,-0.01208802,0.10708424,-0.060150307,0.041594703,-0.84865665,-0.0097645,-0.52635044,-0.2951324,0.16385995,0.08113659,0.049934596,0.14885752,0.17523463,0.22139275,-0.16390993,0.0007327969,-0.21951894,-0.2157699,0.35945725,0.521499,0.5631563,-0.48709008,0.54082733,0.23390496,-0.00797354,0.0713391,0.08645726,0.31272903,0.22654386,0.5972884,0.064558424,-0.2451545,0.12788819,0.7902592,0.09785042,0.53719527,0.027869517,-0.07513744,-0.011220962,0.10844773,0.5138729,-0.056558758,-0.58085227,0.12499236,-0.5545519,0.09775566,0.60795206,0.16799326,0.046136726,0.09197795,-0.5143066,-0.040685873,0.15648283,0.026979068,-1.8476347,0.49246982,0.44035563,0.88854164,0.6225241,-0.015145185,-0.22990231,0.9628132,-0.20954175,0.17042892,0.39710534,-0.012622379,-0.4127337,0.6761417,-1.2166907,0.39601883,0.0009227842,0.034635805,-0.01757425,0.21105726,0.35255966,0.713105,-0.24361289,0.09051835,0.11379609,-0.5048406,0.42056832,-0.49771354,-0.07890218,-0.57587886,-0.26818582,0.59609586,0.48960456,0.40297532,-0.31880853,0.12477436,-0.011986703,-0.2924988,0.18673551,0.05393992,0.10475993,-0.21259232,-0.6965545,-0.0924693,0.5047217,-0.29540107,0.47341838,0.020595536,-0.18719982,0.28481773,-0.17854227,0.017703384,-0.11241015,-0.7013548,-0.064018756,-0.24574023,-0.41407022,0.8615274,-0.05519511,0.25962862,0.3981677,0.004195268,-0.1537677,0.48345342,-0.18675368,0.70616883,-0.0794371,-0.13381153,-0.17801718,0.14259474,0.11817261,-0.14998674,0.15734817,-0.3173705,0.10293806,-0.4676837,0.510057,0.06879574,-0.4766235,-0.08990416,0.0037227508,0.097446956,0.48545876,-0.21469902,-0.20055096,-0.1864378,-0.09243549,-0.24519534,-0.41154602,0.013465573,0.46221137,0.12386078,0.18125378,-0.19478907,-0.199142,-0.076283224,0.29221827,-0.23435414,0.50397885,0.35799703,0.018928269,-0.31240383,-0.04949412,0.40530673,0.42570135,-0.016279751,-0.18076746,-0.31956136,-0.47101185,-0.62228596,0.16540337,0.0399762,0.5866573,0.15838028,-0.19333334,0.6945879,-0.2838579,1.3273519,-0.07872487,-0.59522665,0.20453353,0.5658768,0.0076792142,-0.17449264,0.05345251,0.6452231,0.53843755,-0.1642974,0.010112082,-0.6660947,-0.10298505,0.24372973,-0.18218048,-0.22329973,0.08684701,-0.60338044,-0.20887788,0.12535335,0.21483426,0.34993598,-0.12392923,0.065472834,0.4209646,-0.14151041,0.18783593,-0.31704167,-0.34759617,0.275622,0.35469034,0.030990401,-0.026267454,-0.48049614,0.4031889,-0.5572038,0.23015128,-0.31548086,0.42384422,-0.26787648,-0.38334116,0.13743955,-0.060355473,0.34091642,-0.1264103,-0.2719755,-0.19010043,0.77366614,0.2180623,0.09645081,0.70125866,-0.3309145,0.0744785,0.24886133,0.3623593,0.8627026,-0.36648488,-0.17159216,0.21953368,-0.52810276,-0.7276981,0.4550085,-0.4309082,0.35950884,0.21794331,-0.15280706,-0.7068987,0.1742603,0.37439904,0.21906404,0.015782038,-0.6650869,-0.18343277,0.21625789,-0.41129622,0.016705004,-0.42036653,0.093136035,0.27015686,-0.2426765,-0.34916767,-0.056762088,0.106828295,-0.06193229,-0.51450825,-0.014491983,-0.31318578,0.39969003,-0.13014933,-0.5145094,-0.14903872,0.056788485,-0.3772874,0.28242257,0.04209323,-0.22955586,0.3802943,-0.4561008,-0.04874141,1.0703284,-0.46224287,0.19177617,-0.43498266,-0.4948503,-0.55666053,-0.26722872,0.311904,0.041904863,-0.062473536,-0.70337933,-0.053358003,0.008145931,-0.19478673,-0.23974593,-0.47146237,0.589662,0.13918048,0.27459028,0.06137528,-0.80328006,0.274327,0.021466032,0.14441721,-0.726816,0.5107152,-0.29343894,0.7663949,0.1817884,0.24514522,0.10525151,-0.43914255,-0.021141589,-0.12851967,-0.36077568,-0.3250036,-0.15845378 -89,0.5800742,-0.35068226,-0.36859432,0.010900348,-0.33063084,0.17479974,-0.27079567,0.28402668,0.17053743,-0.6912506,-0.12842286,-0.080183886,-0.06850084,0.313151,-0.12834145,-0.6239112,0.05143529,0.1087724,-0.639868,0.76227397,-0.26358438,0.4330912,0.060309667,0.37087235,0.06410327,0.3841715,0.30853137,0.0053998553,-0.06340977,-0.17099245,-0.08053072,-0.04315563,-0.66061443,0.20879222,0.009070042,-0.39164272,-0.13022895,-0.33988583,-0.43691,-0.6535772,0.36300954,-1.1071411,0.33447337,0.12151777,-0.22925371,0.0055119894,0.030657133,0.07743655,-0.044597816,-0.058610234,0.026257524,-0.28819922,0.057206973,-0.5951855,-0.31496882,-0.6257827,-0.45160463,-0.06802409,-0.52936643,-0.36428428,-0.28633884,0.11523664,-0.37395346,-0.011323765,-0.14494988,0.097931705,-0.5380819,-0.067775674,0.29160815,-0.31554052,0.084118366,-0.62877965,-0.16468896,-0.23513128,0.054878037,-0.05203556,-0.1841582,0.29020068,0.15717968,0.6273374,0.056334216,-0.13192119,-0.20785487,-0.10241913,0.38463378,0.6534464,-0.16127963,-0.26253298,-0.40866825,-0.14857048,0.30303064,0.24631584,0.30640647,-0.5101424,0.052821737,-0.043667834,-0.20942952,0.28557816,0.59492856,-0.23206514,-0.10258871,0.276217,0.32808706,-0.023161525,-0.3152472,-0.08666053,0.005511731,-0.31435302,-0.10217223,0.17060657,-0.086941004,0.637012,-0.024552843,0.23866682,0.54599446,-0.17599094,0.21309036,0.01675796,0.043134544,-0.14644854,-0.28366318,-0.09952275,0.3648808,-0.37476102,0.11481032,-0.3717974,0.5883471,0.3050058,-0.6111629,0.48690006,-0.58510417,0.29591942,-0.06383353,0.5492929,0.57127005,0.4164504,0.035552192,0.90032846,-0.50811714,0.15534052,-0.027777592,-0.093883954,-0.056059584,-0.2795135,0.0976195,-0.3915803,0.16338255,0.15801488,-0.10357114,-0.04399899,0.5516512,-0.4274263,-0.2518824,0.045874994,0.75606894,-0.3461449,0.19004487,0.55168587,1.0257273,0.86595577,0.02412494,1.1660312,0.38142407,-0.28811708,-0.076034166,0.10064585,-0.8913219,0.09110492,0.4813726,0.32942775,0.48517874,0.15395878,-0.24909687,0.5133409,-0.37663293,0.011353602,-0.25621474,0.12939122,-0.054572493,0.024109378,-0.5325463,-0.06787587,-0.04391912,-0.07467029,-0.08737397,0.4128389,-0.32682893,0.41046786,-0.017423868,1.5486172,-0.27776954,0.12526019,0.14194764,0.5644451,0.2620822,-0.168243,0.21315609,0.4254581,0.27930358,0.03169767,-0.63554543,0.053107977,-0.2736379,-0.6154551,-0.18832922,-0.24949954,-0.25185832,0.12795384,-0.42762926,-0.23495753,-0.042152096,-0.19989522,0.1663106,-2.0696108,-0.1936909,-0.43296412,0.6020543,-0.5259415,-0.26987067,-0.08453856,-0.4227098,0.36504626,0.37608072,0.4577746,-0.6785988,0.22959268,0.5321458,-0.39990187,0.077083625,-0.59260917,0.094111055,-0.07774898,0.45711517,-0.13855085,-0.19320704,0.2680414,0.09239125,0.49470863,0.02396082,0.13014098,0.2651439,0.49592784,0.011643085,0.19770043,-0.10557475,0.58739144,-0.60606265,-0.14726968,0.5918036,-0.2951937,0.49314246,-0.1644058,0.07944434,0.46938646,-0.5905904,-0.5119767,-0.4897047,-0.23295273,1.0836339,-0.63024485,-0.7639273,0.08105316,-0.093110226,-0.17721899,-0.16165332,0.55264044,0.050341096,0.16447206,-0.8021435,0.20382096,-0.016141823,0.17841458,0.034877315,0.06878353,-0.26414943,0.84467155,-0.16666518,0.6323769,0.3570743,0.36124268,0.0015178621,-0.3868334,0.10871383,0.78787166,0.4433802,0.18749489,-0.21800786,-0.06254113,-0.331985,-0.43088612,0.2119406,0.512305,0.6571948,-0.13855372,0.07184114,0.30742508,0.17237745,0.0016561374,-0.27350655,-0.3480382,-0.18725532,0.052087728,0.67085594,0.71001196,-0.2667998,0.2152897,-0.0033737,0.13133597,-0.13011654,-0.5970431,0.44624963,0.9497637,-0.1954676,-0.10433801,0.6854393,0.52816623,-0.8856433,0.5025098,-0.92983264,-0.4449818,0.45670906,-0.0588707,-0.64937335,0.13074104,-0.3389505,0.31327146,-0.79353815,0.42232195,-0.40249896,-0.16187079,-0.5664775,-0.15965007,-2.491164,0.2794045,-0.33686042,-0.23585916,-0.17124157,-0.027229091,0.09019216,-0.70548964,-0.5191727,0.28062013,-0.06841915,0.5391955,-0.01425231,0.24477524,-0.3378499,-0.08273884,-0.27058318,0.16255131,0.07350503,0.37745616,-0.2706903,-0.31270495,-0.034217227,0.0007781883,-0.2728598,0.12792857,-0.6576484,-0.6151572,-0.22582243,-0.37072518,-0.16377157,0.50120443,-0.21903849,-0.01012585,-0.27504525,-0.16374846,-0.2324451,0.23832254,0.25580424,0.32813382,0.1289049,-0.024211964,-0.108929776,-0.37048233,0.19930041,0.13878296,0.15898164,0.35141277,-0.32448873,0.13534284,0.4930065,0.5998806,0.15905412,0.8243046,0.38057843,-0.0678416,0.4706262,-0.22195642,-0.47773433,-0.66462725,-0.35342023,0.044270143,-0.36608925,-0.6502549,0.07516155,-0.20041026,-0.8221372,0.5240278,0.03735675,0.32915872,0.18500476,0.28024855,0.48829398,-0.26871535,-0.2632179,0.031809434,-0.19548863,-0.75727445,-0.30826315,-0.7957716,-0.5525732,0.50789165,0.6428601,0.00028575957,-0.18113194,0.2490137,-0.33966717,-0.0560333,0.11304688,0.16058561,-0.022558764,0.37181938,0.15416953,-0.6879358,0.6120077,0.16696525,-0.15669711,-0.62665695,0.32457805,0.7307866,-0.7632074,0.44911444,0.39504275,0.18851574,-0.08234676,-0.46948186,-0.22920881,0.16138482,-0.36273614,0.20168072,0.22743024,-0.7757947,0.17928444,0.38366985,-0.23989761,-0.6896906,0.7207744,-0.0826575,-0.22422326,-0.16226515,0.3453215,0.055270206,0.10457239,-0.1349013,0.26697472,-0.68220854,0.28886595,0.40534428,-0.041826952,0.5461351,-0.17143877,-0.3338655,-0.6786647,0.32894635,-0.7447687,-0.18761347,0.3896806,0.024334505,-0.058045562,0.19308782,0.23702265,0.35502914,-0.22875643,0.12737225,-0.13090897,-0.29052362,0.59872586,0.39041623,0.5105724,-0.50338864,0.7931497,0.039863,0.0003507336,0.07696405,0.11408961,0.52451175,0.33116448,0.4298295,0.08429866,-0.0047004223,-0.014135294,1.0011019,0.35572815,0.55406696,0.43828964,-0.19833456,0.352378,0.17528196,0.0553142,-0.14884889,-0.52630156,-0.036845893,0.19022119,0.18457668,0.37949696,0.1005525,0.5096569,-0.16148567,-0.27272284,0.13745213,0.07721222,-0.030521182,-1.2656145,0.1406761,0.13511167,0.6356909,0.39822188,-0.07038781,-0.09197393,0.5814151,-0.27147225,0.15958448,0.27395287,-0.28248605,-0.56836617,0.5678904,-0.52838904,0.29256156,-0.31345943,0.037321154,0.14748363,0.30137295,0.47582874,0.74194026,-0.15272193,0.064366,-0.20208812,-0.32424673,-0.046065733,-0.31686002,0.11067697,-0.34657776,-0.5241695,0.63927484,0.40412667,0.36422434,-0.23654693,0.023578102,0.03885932,-0.05993138,0.33720434,0.011249085,0.12764706,-0.024917873,-0.5953693,-0.3018009,0.5475428,-0.14103828,0.015661417,-0.06645489,-0.16570778,0.43517157,-0.14593329,-0.31494233,0.12793736,-0.8538256,0.2440244,-0.5494091,-0.6515944,0.2142322,0.09168234,0.17076086,0.22227104,-0.06863566,-0.3677809,0.31527042,-0.015818616,0.97612566,-0.1304224,-0.2717422,-0.48624185,-0.053817492,0.21276337,-0.18801449,0.38339233,-0.09730154,0.13689323,-0.70188314,0.50120014,-0.17170723,-0.24154453,0.20595515,-0.1778998,-0.14065439,0.48638353,-0.09280294,-0.32125822,0.21570629,-0.18783726,-0.53874373,-0.28395477,-0.14733975,0.23053513,-0.025929233,0.12925142,-0.11364726,-0.107909776,0.06209143,0.4299884,0.1423651,0.30655622,0.5469897,0.20644201,-0.6508061,0.066046335,0.35428843,0.45666924,-0.12973534,0.10266098,-0.1322581,-0.80958015,-0.4466962,0.26376623,-0.21895091,0.45527077,0.12443882,-0.43750605,0.9704371,0.036958754,1.1220886,-0.051183965,-0.3511205,0.040627588,0.3708668,-0.080259025,-0.14136802,-0.39203605,0.9264242,0.716387,0.03405832,-0.15961303,-0.32139924,-0.30633214,0.24501024,-0.3644905,-0.005166819,0.03952412,-0.6492223,-0.2760514,0.02007608,0.36662707,0.0134623675,-0.12187887,0.3116009,0.21059173,0.09088194,0.2046774,-0.6215579,-0.46710858,0.3422954,0.20391373,-0.17349903,0.04341213,-0.22462213,0.36140168,-0.6753437,0.2353822,-0.38104013,0.05059284,0.15639107,-0.35442218,0.06871096,0.047932256,0.4445138,-0.53635895,-0.34107313,-0.24163587,0.5953323,0.22039855,0.17948854,0.5813273,-0.25541672,0.1578915,-0.029408654,0.63796943,1.2370868,-0.07291635,0.17263818,0.22908527,-0.57443565,-0.90164644,0.43771124,-0.18691641,0.360674,-0.100888394,-0.28943813,-0.58315015,0.09490872,0.18545492,-0.37373877,0.049064517,-0.6566047,-0.34916735,0.27446595,-0.43319976,-0.3218551,-0.44641185,0.18999928,0.5439989,-0.16908443,-0.10511246,0.021861454,0.27527568,-0.2710129,-0.4872545,0.04989311,-0.3822049,0.23151682,0.14250408,-0.37513757,-0.027756155,0.12740791,-0.5711174,0.08411827,0.100782216,-0.47431538,0.090851925,-0.2980384,0.018488526,1.0196959,-0.064212866,-0.1988594,-0.742086,-0.62867063,-0.9791358,-0.75069696,0.2541885,0.2763783,0.17405908,-0.49076995,0.11125652,-0.0015237182,0.26196405,-0.043794658,-0.4647933,0.38732228,0.19760786,0.57271564,-0.09734172,-0.7205902,0.19560963,-0.005518295,-0.09209788,-0.54235244,0.44131592,-0.12255671,0.9746135,0.18787692,-0.14770685,0.2511233,-0.7065194,0.09445357,-0.13966481,-0.3545424,-0.7354049,0.12786148 -90,0.14947058,0.03967376,-0.7183444,-0.2885564,-0.20514661,0.05877125,-0.17457043,0.4154691,0.37862805,-0.20434983,0.027919682,-0.048279405,-0.09258231,0.47253177,0.04934368,-0.82448554,0.058400307,0.18156312,-0.58812225,0.37246066,-0.6084773,0.36460716,-0.10154548,0.38156524,0.057114813,0.32920688,0.11321317,-0.12575144,0.16478649,0.14994396,-0.09178621,0.2512227,-0.52077657,0.22526556,0.051331885,-0.33342716,-0.034705296,-0.26532567,-0.1455982,-0.72836155,0.1532961,-0.5480738,0.5522984,0.0074146846,-0.4252354,0.013421059,0.17581652,0.36129138,-0.30725068,0.020411532,0.35603568,-0.170145,0.0026981372,-0.117565155,-0.27616715,-0.59845716,-0.49639493,0.0057311286,-0.6321442,-0.091025904,-0.2810896,0.22068092,-0.34896743,-0.10417791,-0.31351253,0.3775123,-0.40386808,0.065947756,0.21855241,-0.27222872,0.15848336,-0.48313156,-0.11999173,-0.13984862,0.30193332,-0.14745793,-0.2931641,0.13367237,0.46640983,0.49636474,0.17430407,-0.28394097,-0.3348955,-0.11221959,0.09299628,0.5120741,-0.14252459,-0.26243642,-0.24927396,-0.14895873,0.06724175,0.1588603,0.019035252,-0.4876254,0.03768607,0.24059732,-0.25383812,0.26951003,0.40460998,-0.474397,-0.394033,0.4550566,0.4302052,0.038991,-0.29712453,0.106494755,-0.09873179,-0.493947,-0.26917,0.072275996,0.006234671,0.35373858,-0.1561153,0.08600222,0.8596147,-0.077024326,-0.1768887,-0.03906267,-0.09611322,-0.007786393,-0.4030295,-0.0009233126,0.14968874,-0.5051026,0.08296065,-0.18474014,0.6032775,0.020000933,-0.93476486,0.28386968,-0.5704895,0.061818004,-0.12480994,0.6094912,0.8997419,0.2133673,0.06563804,0.8569445,-0.5152245,0.048246995,-0.01569681,-0.5101771,0.33800873,-0.12144824,0.15659316,-0.49147204,0.15642546,0.08824374,0.012449952,0.15691844,0.34901267,-0.5408565,-0.11505377,0.109284915,0.53439915,-0.36817747,-0.19388959,0.65371037,1.0482953,0.9869791,0.08097381,1.4966813,0.29730722,-0.2021153,0.2032996,-0.37846038,-0.45685026,0.16884646,0.240999,-0.20999338,0.3536941,0.113895774,0.24237153,0.5233434,-0.07631898,0.13809845,0.0051160227,0.2559202,-0.0014513388,-0.1764827,-0.31800553,-0.2606772,0.1869509,0.107569024,-0.0380128,0.33918542,-0.24053165,0.25076956,0.08563502,1.3022624,0.0667504,0.09783835,-0.05460055,0.3306235,0.25876984,-0.29762787,0.004401042,0.38646266,0.16400415,-0.08567904,-0.5328035,0.04360483,-0.34926242,-0.35357568,-0.2754869,-0.42831773,-0.048385937,-0.0750575,-0.43757108,-0.082006976,0.053047903,-0.35104975,0.40714106,-2.641462,-0.31127453,-0.19706462,0.23044528,-0.13283132,-0.2797935,-0.30957383,-0.39106777,0.19183883,0.28371158,0.38853723,-0.5952299,0.53922284,0.3097769,-0.45838326,-0.2256966,-0.64136976,0.06635884,-0.10554568,0.27762488,-0.099251166,-0.032451317,-0.21014613,0.14705661,0.5693373,-0.09333909,-0.05111234,0.32517523,0.41876304,0.055961814,0.58515584,0.1273224,0.75371796,-0.15274987,-0.13179994,0.3957734,-0.44128132,0.39749828,0.13457367,0.082917534,0.4111598,-0.34995696,-0.9963472,-0.66586083,-0.3448267,1.1405165,-0.4221379,-0.16158468,0.34970805,-0.13569781,-0.35951382,0.03915961,0.43116963,0.0106201535,0.022162098,-0.6522591,0.14883043,-0.07787972,0.1782322,-0.094659075,0.09974789,-0.3795007,0.6752526,-0.02475072,0.54434633,0.31787926,0.13928989,-0.2667468,-0.31312835,0.036158767,1.0575017,0.24102007,0.09726779,-0.07038743,-0.2369291,-0.35606763,-0.11743696,0.21262868,0.52966416,0.5155932,-0.11296324,0.1907178,0.32933614,-0.1256143,0.01394301,-0.057472367,-0.36924157,0.0035553586,0.3132418,0.4901764,0.60779464,-0.29490876,0.43285438,-0.071379825,0.22096191,-0.18511496,-0.6417478,0.51503426,0.7964334,-0.011728715,-0.19840458,0.60050327,0.38960904,-0.34619093,0.4614278,-0.47199017,-0.3074505,0.59620833,-0.16085431,-0.28315666,-0.006465483,-0.33926323,-0.02033632,-0.80512935,0.17297147,-0.19574007,-0.61948043,-0.3619982,-0.1895892,-3.9997776,0.18083169,-0.00080126524,-0.012295828,0.0071006003,0.01563292,0.34823835,-0.4918448,-0.5433345,0.060760282,0.15558802,0.553016,-0.08631636,0.16323373,-0.40122873,-0.2761061,-0.27444932,0.25464615,-0.042999335,0.30018374,0.07812142,-0.503357,0.05304949,-0.27031916,-0.5303711,-0.0077396976,-0.555653,-0.34289345,-0.062238906,-0.6026658,-0.26749915,0.78866315,-0.61859804,0.009469749,-0.28788042,0.013461883,-0.0525984,0.4128827,0.15392981,0.1611153,0.22597662,0.0457446,-0.18394351,-0.42607492,0.14224614,0.052498743,0.4406695,0.37911123,-0.015290407,0.19981432,0.6356491,0.69047445,0.015189221,0.7909952,0.2822619,-0.018502893,0.3651007,-0.2695124,-0.18420564,-0.5690865,-0.4268223,-0.391461,-0.5142916,-0.49192873,-0.023154331,-0.3858713,-0.80402315,0.55604327,0.14013621,0.0024729143,-0.026179489,0.28322342,0.2912566,-0.13636237,0.053814825,-0.22416762,-0.23438127,-0.48659235,-0.4990183,-0.6153902,-0.68809676,0.36767644,1.1478953,-0.34944457,-0.010770743,-0.111427076,-0.30737767,0.029027332,0.32293907,0.21667908,0.2907152,0.5151741,-0.18119043,-0.69140965,0.25884056,-0.21371864,-0.05180027,-0.49743792,0.077428825,0.64587224,-0.73432034,0.60381275,0.2106769,0.25856364,0.27141297,-0.54519963,-0.34536695,0.12073959,-0.36854395,0.6267522,0.18967399,-0.7215558,0.4822183,0.16561761,-0.17709994,-0.66699994,0.4012121,-0.13084072,0.038957283,-0.13726398,0.39079666,0.17910448,-0.10639079,-0.1704168,0.15459949,-0.5030013,0.15202695,0.3819003,-0.05890934,0.5152042,-0.028742753,-0.20814504,-0.72110933,-0.13467804,-0.4549298,-0.29224893,-0.090734944,0.12863947,0.1672252,0.1610604,-0.019642876,0.33098236,-0.42010453,0.1325879,-0.02292147,-0.24308842,0.29261523,0.48553163,0.22840779,-0.49902695,0.5029907,0.10055192,-0.007753936,-0.10917531,-0.014621485,0.5525664,0.16154489,0.43290997,-0.08031765,-0.13994315,0.2177158,0.5848944,0.24150088,0.2997418,0.049227457,-0.16578063,0.13541676,0.11899476,0.10726659,0.0856454,-0.36107603,-0.001439819,-0.036036994,0.2840435,0.51715434,0.15083945,0.28387573,-0.026641753,-0.31073385,0.31457108,0.12938847,-0.13001458,-1.0323439,0.39777943,0.28726187,0.68756145,0.62413543,0.055396616,-0.082572095,0.4938305,-0.35549358,0.09366362,0.50080144,-0.11590819,-0.42722702,0.59418094,-0.82725483,0.5650353,-0.1719782,-0.022845112,0.19735083,0.11801096,0.41872838,1.0285494,-0.21886481,0.13473043,0.102562994,-0.23132655,0.11767769,-0.3220927,0.10920453,-0.54317135,-0.3504704,0.67855585,0.42273766,0.15441717,-0.42053568,-0.11234571,0.13713008,-0.16673774,-0.06409348,-0.19820449,0.009372766,0.037802234,-0.52192366,-0.24899484,0.61070293,-0.0066538593,0.103606075,0.16667596,-0.33765686,0.36338776,-0.15637144,0.045049813,-0.07810649,-0.47755188,-0.045566,-0.26728597,-0.4541942,0.5198012,-0.40692222,0.29307368,0.15617067,0.047924902,-0.20141563,0.57856405,0.14022812,0.7331193,-0.0323228,0.02381086,-0.19948171,0.24057175,0.28836724,-0.19510815,-0.16692716,-0.49794945,0.13711718,-0.601111,0.32541576,-0.14349297,-0.28127915,-0.18024951,0.0017448881,0.05658996,0.41190004,-0.25106177,-0.11392646,-0.02316893,-0.03218966,-0.16188115,-0.0071879807,-0.34922937,0.24471079,-0.008871464,-0.048924603,-0.019945534,-0.20103748,-0.15838534,0.23824963,0.08982364,0.16304237,0.22184035,-0.09628987,-0.20271532,0.14447348,-0.080790885,0.3137356,0.18423176,-0.23272492,-0.16409895,-0.13582246,-0.35040534,0.2821158,-0.1122979,0.30624455,0.03442253,-0.39905882,0.665577,0.1788564,1.4700532,0.06860031,-0.50117224,0.13631518,0.49043104,0.062881894,0.15196322,-0.3400688,0.835788,0.58677137,-0.1933407,-0.21992907,-0.39305085,-0.342581,0.26402298,-0.2759932,-0.30580106,0.040470675,-0.74772525,-0.27185118,0.13930005,0.18512693,0.15629229,-0.09021947,-0.0042179683,0.13288914,0.26684842,0.2431857,-0.55257046,-0.1608329,0.24745393,0.44881293,0.03994064,0.17590275,-0.34190667,0.5314309,-0.8174468,0.2830284,-0.37939277,0.17789459,-0.37086803,-0.3434774,0.21871923,0.11176631,0.23610702,-0.17452845,-0.40387037,-0.24830121,0.73999023,0.18216188,0.2518298,0.83654475,-0.29187,-0.1418773,0.10017527,0.2905912,1.1987541,-0.14427128,-0.2775876,0.4129426,-0.21585666,-0.6530322,0.18713656,-0.53303105,0.11365353,-0.11932389,-0.51308626,-0.25086907,0.3185038,-0.036537383,-0.051078677,0.028180668,-0.5113236,-0.04436082,0.29660174,-0.25642982,-0.2998042,-0.22590297,0.30333984,0.77568597,-0.4722758,-0.4382773,0.1680138,0.3121791,-0.24877109,-0.58832544,0.03771228,-0.34967312,0.5198357,0.21132715,-0.30779758,-0.0053435587,0.2606087,-0.39332563,0.18528144,0.5254228,-0.31171435,0.19685918,-0.2976853,-0.16601966,1.1283766,0.07926785,0.32593095,-0.5006073,-0.4726845,-0.7935101,-0.28083885,0.20137192,0.045883894,-0.14085947,-0.4556924,-0.1391978,-0.13265772,-0.10223869,0.16140601,-0.45048583,0.44712704,0.044542972,0.51889443,-0.10968577,-1.1650608,-0.17304696,0.39121202,-0.0672591,-0.57721615,0.5290104,-0.26746517,0.8449925,0.09234202,0.096065715,0.24848002,-0.47286594,0.34389216,-0.47187248,-0.0440768,-0.63841873,-0.0017576676 -91,0.58010393,0.00408348,-0.56930774,-0.1618536,-0.3112228,0.08462592,-0.18894556,0.44173464,0.2155381,-0.46051884,-0.20397663,-0.009068585,-0.007315033,0.25519398,-0.15323165,-0.6403588,0.1788418,0.29972535,-0.58511126,0.587689,-0.45706376,0.45736465,0.02014594,0.28477088,0.25729987,0.26391345,-0.072495155,0.016102612,-0.14938198,-0.16354741,-0.16235073,0.31879514,-0.50547904,0.3592791,-0.1718806,-0.3544372,-0.014291406,-0.28495386,-0.34048876,-0.69099694,0.11884473,-0.7082984,0.44078746,-0.20058165,-0.40382338,0.06972565,0.15232976,0.4572721,-0.21169999,-0.06707551,0.14721668,0.07651518,-0.3516527,-0.14576313,-0.10088025,-0.42285296,-0.51677555,-0.05028438,-0.36910793,-0.04399566,-0.36343092,0.22545402,-0.17371915,0.123089425,-0.14576261,0.37695643,-0.2954657,0.29194435,0.18595076,0.033796757,-0.032403797,-0.49685058,-0.07082267,-0.16296002,0.42209885,-0.08617913,-0.30259913,0.259059,0.26265103,0.34735087,-0.035188776,-0.14562085,-0.32401457,-0.07416224,0.06768059,0.5612404,-0.11504634,-0.32276797,-0.118039094,-0.012241478,0.13985018,0.1528132,0.15959667,-0.24592026,-0.14202072,-0.17172875,-0.397861,0.41565782,0.38912842,-0.2945836,-0.085568056,0.44902733,0.55391896,0.11102544,-0.27220336,0.025679532,-0.023934856,-0.55328757,-0.122297965,0.0028455597,-0.17184949,0.47904247,-0.059875306,0.1927711,0.5859667,0.08721683,-0.21808483,0.17899884,0.16495135,0.019715104,-0.28955323,-0.23684338,0.1605632,-0.53505945,0.037416816,-0.17279074,0.7715866,0.07420198,-0.7353715,0.28131077,-0.44444337,0.05671226,-0.16323957,0.40522024,0.6673521,0.48137066,0.061897848,0.68414927,-0.3972494,0.13066377,-0.027694812,-0.22802475,-0.019319104,-0.04765064,0.013767004,-0.45549455,0.14069153,-0.030112538,-0.1595708,0.22947598,0.38021752,-0.41582653,-0.22643535,0.04249363,0.7608598,-0.39401117,-0.25331813,0.78686523,0.92326397,0.87085974,0.07997311,1.0568858,0.27421945,-0.1154377,0.109833375,-0.3481843,-0.5964287,0.24780674,0.2225825,-0.043301694,0.19475044,0.14596762,0.03614194,0.38616735,-0.24278285,-0.066901855,-0.10776738,0.3227492,0.020965127,-0.10139002,-0.42995,-0.39733973,-0.06442487,-0.046331517,0.19875135,0.20653431,-0.14732318,0.37871557,0.19311465,1.4773496,0.10014611,-0.06478581,-0.020246293,0.38800004,0.20984502,-0.27633452,-0.26730064,0.18719888,0.37306803,-0.05956894,-0.5135041,0.056776643,-0.1851877,-0.40070316,-0.12270711,-0.29103294,-0.22218673,-0.12364753,-0.38026264,-0.12812638,-0.088486455,-0.21500246,0.535536,-2.7270737,-0.21636876,-0.11582184,0.38259667,-0.088471,-0.48653197,-0.17595837,-0.5642733,0.3374744,0.20645194,0.49064383,-0.51983076,0.51182806,0.30852988,-0.451906,-0.0958987,-0.591515,-0.046408623,0.10913889,0.23822257,-0.027304301,0.09055669,-0.1977285,0.027926514,0.45439503,-0.15413554,0.19657905,0.41113934,0.23820281,0.10325593,0.46077314,0.091429286,0.65334415,-0.18302055,-0.06173018,0.23780084,-0.42398834,0.3403584,-0.052968774,0.15212356,0.53127825,-0.48808402,-0.7311637,-0.56246376,-0.10131561,0.98529804,-0.24394245,-0.14786534,0.27234927,-0.4076864,-0.24433632,0.14399263,0.27988186,-0.110946365,-0.19123472,-0.69653404,-0.14394829,0.04309505,0.27607295,-0.16082872,-0.16886698,-0.3383648,0.54752344,-0.04790008,0.44987583,0.14066197,0.13339886,-0.23284896,-0.33447036,-0.0062747872,0.93219984,0.30264956,0.14823915,-0.3152743,-0.23006718,-0.60601526,0.017013205,0.009837533,0.6433118,0.49611142,-0.09454922,0.044480186,0.1649626,-0.022440417,0.024212787,-0.11133317,-0.27891114,-0.091180734,0.0036399749,0.49295744,0.6477281,-0.025416633,0.54374063,-0.18028966,0.29082632,-0.24683902,-0.53470856,0.44257498,0.8835368,-0.2504132,-0.31979582,0.6348203,0.4152394,-0.015636487,0.37034193,-0.49317536,-0.41443223,0.396189,0.013281592,-0.1596863,0.05994955,-0.28719458,0.2452716,-0.89183086,0.2753871,-0.31544018,-0.75026447,-0.4400282,0.027440276,-2.7532315,0.13449445,-0.027045803,-0.15990528,0.003894789,-0.1253645,0.08518721,-0.43841982,-0.662005,0.22846918,0.06812054,0.76422256,-0.085923895,0.122922264,-0.053346686,-0.32929257,-0.13106689,0.19986747,0.078997,0.35777912,-0.07125397,-0.4418362,-0.097404845,-0.18489334,-0.23227929,0.086162604,-0.80238146,-0.391259,-0.09799127,-0.5162219,-0.22121511,0.5794238,-0.590637,-0.00051058724,-0.1235309,-0.026899377,-0.12999737,0.16671453,0.0055370247,0.10912116,0.09665651,-0.13587464,-0.044885036,-0.35033175,0.20106222,0.14295565,0.3623991,0.2095108,0.097779974,0.2000774,0.49869347,0.5944861,-0.015770316,0.82932866,0.3278337,-0.10438895,0.17262486,-0.121077076,-0.28908348,-0.42133117,-0.14511903,-0.26626903,-0.39433974,-0.23630682,-0.04284818,-0.40259844,-0.7941833,0.40164685,0.0435854,-0.14998507,0.06715626,0.25941038,0.42316934,-0.120801345,0.016003473,-0.1690687,-0.07540833,-0.5483423,-0.49643067,-0.5643081,-0.39942783,0.13928832,1.224086,-0.22411309,0.22515617,-0.073113374,-0.31160814,-0.06445756,0.26656157,-0.029672325,0.14058897,0.5099054,-0.23066309,-0.60557187,0.45358008,-0.3940124,-0.08858691,-0.5358664,0.22515713,0.5440965,-0.64888877,0.47225383,0.29140812,0.06909207,-0.06446435,-0.4098401,-0.22289827,-0.055602986,-0.30389673,0.3414884,0.23578437,-0.66925985,0.33578843,0.3026586,-0.25696343,-0.7893758,0.6349438,0.0014308052,-0.24415864,-0.10629065,0.31935778,0.09907248,0.11046282,-0.15860553,0.13521983,-0.28817156,0.1142451,0.21636765,0.042348035,-0.09305284,-0.34393588,-0.04795303,-0.72523797,-0.10791308,-0.306138,-0.25561854,0.14595577,0.017485734,0.16546793,0.17568739,0.28906924,0.23622581,-0.42446855,0.05185147,-0.27296478,-0.26185533,0.32416922,0.44596595,0.57080275,-0.3738646,0.46187133,0.07874714,-0.037224658,-0.06121846,0.031124106,0.4162415,-0.055254046,0.4798345,0.08915795,-0.122238114,0.19937822,0.85051334,0.2199951,0.30899668,0.070218675,-0.14206669,0.050924275,0.016070936,0.27432618,0.19209613,-0.45769477,-0.052797172,-0.21974863,0.1891392,0.42974472,0.04039463,0.21508847,0.01592733,-0.31177124,-0.009634818,0.04095465,0.13977441,-1.3090736,0.46794802,0.17295517,0.7506811,0.3699836,-0.004992119,-0.03347085,0.61199516,-0.12816277,0.2777163,0.21835354,-0.25775367,-0.23204228,0.45301172,-0.557124,0.5244425,-0.007603756,-0.010342726,0.20918877,-0.100395165,0.41726664,0.94549364,-0.16812356,0.07471488,0.17388114,-0.40583226,0.108231984,-0.26343408,-0.0052239853,-0.6485253,-0.18735692,0.8337415,0.58128774,0.31887707,-0.15337683,0.040002424,0.0997997,-0.113806725,0.07215149,0.0470348,0.10753449,0.039941523,-0.47993153,-0.12248106,0.564731,-0.19986965,0.16641164,0.2030582,-0.117616765,0.3191772,-0.10242677,0.07137313,-0.20276013,-0.6918532,-0.007466101,-0.3348561,-0.34715527,0.2373908,-0.059150714,0.23080513,0.25620383,0.12707102,-0.24040683,0.48455092,0.066172905,0.56264764,0.020659218,-0.18490723,-0.15928619,0.19286506,0.19766213,-0.25091666,0.11641856,-0.385576,0.124732204,-0.79233265,0.36345118,0.03771664,-0.3731492,-0.048721883,-0.010330988,0.12954636,0.34787178,-0.02631496,-0.0970037,0.07225936,0.053394496,-0.19091327,-0.13444988,-0.2750895,0.16159378,0.3453416,-0.15702784,-0.05712241,-0.09662783,-0.02706727,0.37605622,-0.025502516,0.46842724,0.28333345,0.13582656,-0.21728352,-0.13258244,0.31483126,0.6088973,-0.048200186,-0.08384158,-0.29290894,-0.20349881,-0.3942676,0.42750835,-0.06833629,0.48099282,0.121326365,-0.18844056,0.63482475,-0.05648167,1.0854384,0.099803604,-0.2847683,0.17246988,0.48818842,0.0015624166,-0.107983276,-0.30426475,0.85649866,0.31971344,-0.14077258,-0.047149234,-0.3374677,0.06012885,0.0933053,-0.06469323,-0.1359915,-0.035657085,-0.45233032,-0.17944817,0.12864561,0.15664077,0.21213773,-0.06833707,0.18319702,0.2686374,-0.054159667,0.21913354,-0.49592075,-0.010796036,0.20527211,0.23412621,0.027014554,0.15388466,-0.5955221,0.37948522,-0.6278173,0.037145793,-0.23112524,0.14049526,-0.19617751,-0.30328828,0.2057893,0.168931,0.23189759,-0.48837858,-0.3025377,-0.45627847,0.58629787,0.22540684,0.11315971,0.55279875,-0.1811777,0.0022768038,0.16337602,0.483483,0.7689619,-0.25040877,0.07633013,0.39568278,-0.31925187,-0.4251604,0.18013597,-0.24393317,0.17398962,0.107297316,-0.23970625,-0.6570143,0.32318094,0.20801724,0.1168234,0.17148556,-0.5967497,-0.04468576,0.19334531,-0.27680126,-0.2953443,-0.20275988,0.14688168,0.58720034,-0.22701226,-0.35010314,0.05684157,0.12699082,-0.22361347,-0.48509496,-0.082355715,-0.46813798,0.32584038,0.006936927,-0.24717109,-0.30514982,0.054741986,-0.38701487,0.12154511,0.21978989,-0.29413074,0.06004896,-0.35973278,-0.07957184,0.8173715,-0.10226077,0.22191072,-0.53905785,-0.444423,-0.60263664,-0.37831798,0.33901307,0.2949942,-0.14391848,-0.54775083,-0.12497061,-0.09641479,-0.17409687,-0.021330515,-0.3797839,0.45482653,0.18364468,0.13895808,0.041699167,-1.1747528,-0.046106312,0.08445908,-0.38581523,-0.48171908,0.39835075,-0.1823126,0.89984035,0.075879045,0.10840123,0.2155992,-0.41235298,0.11273598,-0.2330992,0.07792197,-0.64375687,0.16511814 -92,0.46140423,-0.08397564,-0.691663,-0.11277335,-0.5415775,-0.14461981,-0.21819182,0.53555006,0.2940511,-0.1547824,-0.10992663,-0.12389887,-0.06494926,0.48227975,-0.16491467,-0.96625227,0.04583427,0.30353022,-0.5936722,0.46308717,-0.45962617,0.32154214,0.14206195,0.63814694,-0.0087946765,0.034814175,0.22019497,0.29318187,0.06806294,-0.41765884,-0.09600819,0.2324378,-0.8995032,0.14458342,-0.18009819,-0.45494527,0.027955186,-0.47564843,-0.09994802,-0.9123563,0.33057725,-0.5880608,0.7169571,0.19133954,-0.34598467,-0.18677449,0.35273206,0.26030508,-0.2983072,0.008182541,0.3076891,-0.3859784,0.0021591403,-0.18507133,-0.35204136,-0.22015281,-0.79522645,-0.012660601,-0.49079037,-0.101816006,-0.29659137,0.27067378,-0.3396943,-0.012304821,-0.20696382,0.8081182,-0.36996773,0.030747198,0.20005661,-0.2328763,0.23303486,-0.55047536,-0.14522041,-0.13844174,0.059760597,0.031006726,-0.24145843,0.26437607,0.09774268,0.45954296,0.042211674,-0.33198297,-0.4971433,0.0683541,-0.057357874,0.5459068,-0.3569145,-0.2591476,-0.14025363,0.04661184,0.24823557,0.26912212,0.18932956,-0.21175641,0.072682984,-0.18143083,-0.10631467,0.45408443,0.43719128,-0.3693252,-0.12368629,0.09636205,0.29211742,0.031904187,-0.063198,0.16166086,0.03757809,-0.5919457,-0.28688592,-0.01964866,-0.14495525,0.5263907,-0.1441555,0.14892341,0.6887481,-0.14252158,-0.29818246,0.017678587,0.1179614,0.32753184,-0.32964915,-0.37880662,0.42734203,-0.41549066,0.09885531,-0.26365086,0.7091582,-0.0103494255,-0.86365855,0.20079617,-0.6332347,0.15677226,0.13967277,0.5223632,0.6760125,0.5208986,0.517142,0.9116905,-0.4162664,0.17702147,0.1783157,-0.049533747,0.09099798,0.009363088,0.22091703,-0.42170122,-0.0944535,-0.31696844,-0.16919911,0.25627562,0.44287965,-0.54392326,-0.14366402,0.22190356,0.8579729,-0.35389015,-0.10421648,0.86756325,1.2785783,1.3212823,-0.037068676,1.2995358,0.077160195,-0.07586513,-0.20996805,-0.05842864,-0.59599245,0.13954216,0.2220696,-0.1633852,0.4104499,0.068374746,0.027445467,0.60173404,-0.4918597,-0.20402378,0.08611409,0.335518,-0.074419506,-0.23677851,-0.637414,-0.41360572,0.16586097,0.121567324,-0.15227698,0.4071396,-0.20700537,0.54605275,-0.04067577,1.3876948,0.14061002,0.21583241,0.014500964,0.30894172,0.30834377,-0.11364398,-0.25166625,0.1289059,0.07513132,0.2330587,-0.40069115,-0.059546318,-0.32789195,-0.23088928,-0.18911186,-0.26278982,-0.02411306,-0.26537633,-0.43810672,-0.33146372,-0.042689964,-0.21825942,0.3175826,-2.248375,-0.04359332,0.09210684,0.30229107,-0.054231133,-0.4264437,-0.15578003,-0.45828447,0.5541413,0.3634098,0.3809902,-0.635775,0.43245223,0.3102281,-0.4377929,-0.11859166,-0.65150285,-0.15473728,-0.025146572,0.26595876,0.009404689,-0.25270128,-0.27984408,0.40599057,0.7449919,0.08840715,-0.04445794,0.24479146,0.47956392,-0.3850216,0.7436397,0.07442208,0.49209586,-0.24713121,-0.25262967,0.39811325,-0.6364429,0.15356968,0.0021544883,0.081624,0.39195508,-0.56200665,-1.1896305,-0.5979695,-0.038841102,1.1323044,-0.23804146,-0.35445073,0.29883745,-0.26187134,-0.3447007,0.11288602,0.63474137,-0.24733764,0.110503286,-0.6925307,-0.11650135,-0.10695076,0.35035855,-0.000839633,-0.056687318,-0.59479725,0.8139398,-0.22739358,0.2728144,0.53180027,0.18371485,-0.44043055,-0.5073065,0.04638802,1.0999984,0.5559477,0.064720176,-0.22461458,-0.048053686,-0.20121104,-0.015156364,-0.09996044,0.7438385,0.7815283,-0.20883287,0.11241576,0.32982695,-0.13087808,-0.03114794,-0.12702559,-0.46880445,-0.11596859,0.16064318,0.72223604,0.80011994,-0.096242815,0.3882704,-0.008559861,0.46674183,-0.06839711,-0.5607859,0.31421417,1.1452248,-0.08127777,-0.19894642,0.8121494,0.29933488,-0.32607457,0.47208175,-0.4106239,-0.34031293,0.4816227,-0.014315418,-0.39005688,0.14957945,-0.35828188,-0.12258697,-0.9308054,0.39382982,-0.25137922,-0.6037861,-0.547638,-0.28196633,-3.4586928,0.3290246,-0.28225428,0.0940713,-0.1594825,-0.19927599,0.10244088,-0.7284331,-0.7277884,-0.0899786,0.14228036,0.5421536,-0.2239456,-0.008904302,-0.12081575,-0.65226895,-0.2538439,0.44219935,0.33731622,0.19362618,0.18134524,-0.44292343,-0.10162295,-0.35431907,-0.6579994,-0.1532685,-0.67050934,-0.4542506,-0.16744934,-0.7238485,-0.30510274,0.89161664,-0.29387668,-0.085178524,-0.32655853,0.016577026,0.010892673,0.2395916,0.1665588,0.27712172,-0.0049720462,-0.024916975,-0.07345228,-0.15636307,0.04869474,0.10484728,0.47416928,0.38144162,-0.08043077,0.14759292,0.54965657,0.91889805,-0.19723922,1.027343,0.19315724,-0.081057586,0.2754672,-0.38152036,-0.4942392,-0.7647079,-0.35607958,-0.13307738,-0.52642244,-0.10039724,-0.003198537,-0.5038733,-0.78791964,0.67331296,-0.10918407,0.079317875,-0.020010991,0.51002336,0.27792957,-0.3312392,0.0016368493,-0.16889407,-0.13916668,-0.4375963,-0.273204,-0.59814936,-0.62729025,-0.13802567,1.3624848,-0.27030402,-0.03670279,0.1816011,-0.1927893,0.21404758,0.11393211,0.13706131,0.1332205,0.44694564,0.14694834,-0.65456605,0.29814646,-0.20821905,-0.114041805,-0.56626785,0.21350765,0.67775995,-0.6249583,0.87568396,0.27651384,0.19043571,0.14048393,-0.73079395,-0.20396987,0.21582824,-0.106084175,0.60818726,0.4047987,-0.7203704,0.51617986,0.13113855,-0.368803,-0.6745092,0.31835327,-0.080535315,-0.62642574,-0.094945736,0.42360595,0.054537773,0.003313834,-0.16176766,0.3334767,-0.3094507,0.30964586,0.2990668,-0.08294713,0.32804644,-0.24580258,-0.28753778,-0.7587582,0.06465573,-0.4781703,-0.5735167,0.03795954,0.102481075,-0.14330927,0.17800649,0.13857363,0.42846975,-0.41691133,0.21803637,-0.31706086,-0.25959012,0.487856,0.5777022,0.3909465,-0.5389024,0.57512087,0.063589685,-0.08648468,-0.24648142,0.065722436,0.50299174,-0.14437965,0.2532746,-0.11119736,-0.13618153,0.195195,0.44557726,0.05788165,0.31985244,0.14756547,-0.00052016973,0.21201953,0.16353363,0.047052503,-0.0440421,-0.46894178,0.22333501,-0.18069445,-0.0053218496,0.59016603,0.075468354,0.2181776,-0.085293055,-0.16699265,0.2341273,0.33440402,-0.16457482,-1.3913454,0.41518462,-0.008751672,0.7564274,0.64053655,0.2028192,-0.13285774,0.58487135,-0.409265,-0.13795543,0.48726502,0.2469461,-0.2657622,0.78074265,-0.5866813,0.45090115,-0.16485734,0.041692514,0.08707576,0.2033052,0.4810797,0.8377828,-0.11072655,0.060836073,-0.034052763,-0.13776039,-0.18884167,-0.41250277,0.040526215,-0.42607498,-0.34282213,0.73683524,0.3028634,0.29943705,-0.36176434,-0.073564455,0.11148617,-0.24050908,0.25748366,-0.20981096,-0.120684594,-0.058521662,-0.5189264,-0.028487975,0.5968984,-0.11068621,0.025092868,0.10358403,-0.17839566,0.27723023,0.061983045,-0.102360055,-0.021904672,-0.78552586,-0.11954883,-0.64559823,-0.3390879,0.3805184,-0.44409677,0.12752376,0.2505925,0.05329377,-0.27605617,0.30404213,0.25182793,0.6909792,0.05464444,0.062002376,0.014394782,0.5104765,0.071812704,-0.28683534,0.037969843,-0.3768171,0.26301193,-0.3986971,0.55470985,-0.056407962,-0.41083518,-0.17974462,0.015417874,-0.04759891,0.45926502,-0.31662586,-0.033350218,0.08490944,-0.06778345,-0.034966577,-0.32492074,-0.31575242,0.30707562,-0.15127362,-0.11666224,0.017485064,0.015928464,-0.15547124,0.47318137,0.046015106,0.23763691,0.3261447,0.017558716,-0.5785936,0.11512082,-0.24060577,0.49465334,-0.014354589,-0.19154243,-0.4047686,-0.26680863,-0.34588358,0.28421345,-0.21926723,0.16601384,0.054396186,-0.35304335,1.1363009,0.43662557,1.4042617,-0.0960527,-0.43020973,0.10792006,0.5981254,-0.050620124,0.033466157,-0.24732111,1.1543988,0.55528206,-0.40733165,-0.18134183,-0.41911933,-0.16039604,0.16017443,-0.3565718,-0.31762666,-0.17446391,-0.49822378,-0.16232306,0.33088362,0.27886084,0.17382012,-0.21994954,0.07763504,0.288019,0.14327937,0.33396694,-0.45396435,0.05007031,0.37894675,0.2117741,-0.07336697,0.11464921,-0.3312947,0.37733555,-0.71919477,0.31583968,-0.5138176,0.18479075,-0.14282155,-0.4868302,0.22368093,0.047009967,0.25008973,-0.3649892,-0.11718106,-0.15512826,0.5306477,0.23151225,0.14090584,0.80349374,-0.34327853,-0.03495724,-0.009031367,0.47146493,1.3127769,-0.26551604,-0.20696887,0.225911,-0.23938408,-0.6254588,0.17714487,-0.3617609,-0.22059064,-0.33339694,-0.42014924,-0.6491318,0.104812816,0.15944232,0.1387652,-0.063215524,-0.41572294,-0.14738518,0.5154819,-0.3013174,-0.16467948,-0.35068762,0.27150118,0.6467473,-0.11353597,-0.6088333,0.06093147,0.19063225,-0.07833648,-0.69682974,-0.014182177,-0.28773025,0.37609977,0.08003108,-0.38907745,-0.027805718,0.3859318,-0.49069282,-0.029685117,0.36599123,-0.1926539,0.17409015,-0.30363035,-0.08904343,1.0727376,-0.080218025,0.19057097,-0.3840822,-0.66862625,-1.0051365,-0.2783439,0.35772333,0.10250806,-0.06539306,-0.8014731,-0.15884948,-0.32749137,-0.2251368,0.06363373,-0.26612863,0.24662638,0.13707279,0.42756507,-0.28024843,-0.82384866,0.15448704,0.22445332,-0.2151764,-0.39918336,0.51834416,0.00022738088,0.7692999,0.0982338,0.0878324,0.2282938,-0.6571537,0.45638016,-0.18750057,-0.11299346,-0.5023596,-0.082639284 -93,0.41420874,-0.27974936,-0.5270966,-0.057577275,-0.39171666,0.0985528,-0.19486304,0.39386266,0.19371423,-0.48002625,-0.12322618,-0.1498421,0.036908828,0.30919358,-0.16196588,-0.280924,0.005011479,0.2451422,-0.687914,0.5856785,-0.2772897,0.1338412,0.03213586,0.4471649,0.1377876,0.2320089,0.11696403,-0.06075655,-0.15048355,-0.3925134,-0.28219545,0.11786326,-0.5091048,0.27575547,-0.2954382,-0.29038316,-0.035143804,-0.5463976,-0.34977368,-0.76048213,0.25673437,-0.9300169,0.5110521,-0.11139598,-0.27341336,0.17229366,0.2571739,0.32491493,-0.18672495,-0.12988307,0.1757348,-0.28134286,-0.12255171,-0.22646262,-0.18353829,-0.3374898,-0.47986448,-0.07119228,-0.45987898,-0.16519709,-0.3121072,0.146849,-0.32217818,0.10675765,-0.07690468,0.7236961,-0.36257985,0.391734,0.1698846,-0.16781718,0.20885484,-0.6989729,-0.04209428,-0.1677772,0.31321558,-0.090753086,-0.26568422,0.29440242,0.27194712,0.3731139,0.08016075,-0.14426297,-0.23678498,-0.22623186,0.14441161,0.40530598,-0.05719041,-0.5515172,-0.12642747,0.14911836,0.16574351,0.2414838,0.13665749,-0.27020276,-0.08547364,-0.15128438,-0.19502774,0.5254059,0.48100427,-0.20970216,-0.07711841,0.26361448,0.54570526,0.20948829,-0.14577805,-0.08990657,0.003951609,-0.5492927,-0.28384003,0.004749036,-0.16839574,0.48521087,-0.15336698,0.34923893,0.59215224,-0.19032685,-0.25770792,0.11398783,0.06659472,-0.14821154,-0.2190805,-0.21684858,0.19745229,-0.59369475,0.10110934,-0.12462359,0.7098525,0.10503985,-0.59493434,0.16947842,-0.6007277,0.094177015,-0.03751505,0.42607918,0.6712479,0.56815875,0.2056271,0.6573789,-0.26488116,0.13972493,-0.18614693,-0.37469414,-0.05105962,-0.20024982,-0.09726964,-0.5537936,0.019550836,-0.14172404,0.023969078,0.09489254,0.39593416,-0.4244004,-0.13318844,0.12650457,0.9392621,-0.25814256,-0.07322916,0.90723586,0.95564485,0.93041724,0.010380711,1.0741291,0.07854128,-0.24167165,0.010374213,-0.038443826,-0.69439113,0.37117118,0.38147795,-0.06445358,0.1604147,0.09015458,0.030513462,0.39565527,-0.49016038,-0.15246935,-0.22305141,0.115164265,0.19175181,-0.048464026,-0.42894545,-0.24996354,-0.0062009236,0.110805474,0.18591902,0.20287329,-0.0891911,0.70799994,0.04499708,1.4782046,-0.046760283,0.07704648,0.15270843,0.4093014,0.29379368,-0.1810015,-0.09931063,0.36237755,0.2938122,0.24356559,-0.5418756,0.1760184,-0.1714675,-0.44520998,-0.1986215,-0.31198442,-0.16841976,0.010870429,-0.36407477,-0.2755188,-0.2979592,-0.21778177,0.4416367,-2.6764894,-0.11187867,-0.10043941,0.3473264,-0.23461638,-0.2564901,0.07333433,-0.51076615,0.3733893,0.2366165,0.5199806,-0.5634556,0.36460343,0.43326098,-0.6738115,-0.12562199,-0.53675056,-0.1031287,-0.019928435,0.39985096,-0.07049287,-0.12854756,0.048628107,0.13368014,0.65035325,-0.051136248,0.19330803,0.4121248,0.45282847,-0.057902746,0.6349426,-0.06692327,0.4910401,-0.3376568,-0.19004913,0.24809471,-0.14280699,0.23016204,-0.069787405,0.118954286,0.6081974,-0.51391447,-0.8724981,-0.6959298,0.07572206,1.1889324,-0.31696793,-0.57351816,0.21979348,-0.38769487,-0.28368396,-0.06358978,0.47093016,-0.00127636,0.13276632,-0.6714306,0.08019101,0.005761524,0.2675327,0.018037712,-0.20537163,-0.5020725,0.78870517,-0.07493957,0.49518237,0.35864097,0.18892236,-0.38837475,-0.42196515,0.055517457,0.86305976,0.4285628,0.12466355,-0.20834762,-0.20790055,-0.34878814,-0.099271625,0.07813946,0.67005485,0.49780378,-0.074161485,0.24224962,0.269664,-0.04521371,0.11427932,-0.16806558,-0.20773599,-0.19123513,-0.13315918,0.52626723,0.6278713,-0.0044520735,0.60659343,-0.06312408,0.35278538,-0.1536257,-0.5944075,0.5661116,1.1793141,-0.29148388,-0.39774862,0.59524035,0.45392278,-0.11834066,0.31965357,-0.38514563,-0.4219335,0.51665014,-0.14764246,-0.6969513,0.19229737,-0.18891147,0.099532045,-0.8545329,0.17494407,-0.24774148,-0.6854637,-0.63568443,-0.11098453,-3.0415952,0.29714182,-0.3251955,-0.25824437,-0.3056582,-0.25856435,0.0919319,-0.472747,-0.4796931,0.19035257,0.11151654,0.80422235,-0.18876567,0.25153244,-0.23104115,-0.42100954,-0.26207468,0.07203736,0.1929758,0.26506868,-0.13791515,-0.4897352,-0.079101495,0.010605614,-0.42961273,0.00659058,-0.62900037,-0.31362528,-0.18754965,-0.42704365,-0.3024132,0.634934,-0.1736054,0.038235333,-0.22624503,0.12756103,-0.012824804,0.31674257,0.062283278,0.1542545,0.031854816,-0.05599251,0.11675139,-0.28857034,0.34594,0.01754173,0.28961307,0.17495495,-0.13536507,0.22197765,0.4281296,0.673067,-0.09848591,0.8946384,0.3557745,-0.051335033,0.25058717,-0.01298527,-0.4553166,-0.44845322,-0.13293554,0.11911713,-0.39544335,-0.41141206,0.012760725,-0.32273757,-0.8489985,0.6112314,0.06622154,0.06990971,-0.0065580765,0.342099,0.5887691,-0.38875973,-0.08074211,-0.11278479,-0.21602347,-0.51958853,-0.25735483,-0.59598273,-0.4104384,-0.1252279,1.0774473,-0.23108386,0.085431054,-0.043109704,-0.30394676,0.10816054,0.14022039,0.014452988,0.23401721,0.5182289,-0.18117765,-0.7362034,0.57735676,-0.23205242,-0.2140039,-0.6035227,0.43536958,0.66377485,-0.5731192,0.50176513,0.38952544,0.028106872,-0.34736067,-0.4624492,-0.05401847,-0.14525346,-0.2714283,0.3818237,0.2002335,-0.76276207,0.46954882,0.33183548,-0.19832698,-0.74874383,0.50577784,0.0022541105,-0.3464604,0.048843298,0.31777325,0.19817019,-0.084142014,-0.34921697,0.14347626,-0.353533,0.32995006,-0.041755475,-0.16725962,0.16475032,-0.24980752,-0.23037955,-0.7196614,0.016043102,-0.57029724,-0.2607694,0.3160217,0.10015877,-0.024508577,0.25669882,-0.0031227907,0.37574828,-0.31129602,0.034008123,-0.22737534,-0.22592792,0.33275133,0.4653874,0.44922963,-0.4562841,0.72742844,0.1033491,-0.15784496,0.022618754,0.17286949,0.38181964,0.14783154,0.6288766,-0.010391688,-0.11650387,0.25906983,0.6363865,0.14211649,0.4300732,0.055507865,-0.059926152,0.17453831,0.06094826,0.2894097,0.06658185,-0.7415937,0.030948253,-0.40560997,0.104990646,0.5036578,0.08897953,0.35140228,-0.026618497,-0.3684293,0.002396672,0.079239585,0.023105705,-1.4347513,0.3163578,0.28603584,0.94456404,0.30388457,0.07232679,0.005174885,0.9007786,-0.14821921,0.01673893,0.23103374,0.16541265,-0.29862526,0.5202902,-0.8547982,0.47544768,-0.010586963,-0.09476168,0.05211117,-0.13159695,0.35974684,0.9083798,-0.13435236,0.013691334,-0.020307887,-0.387651,0.19645816,-0.49770486,0.053088687,-0.54291713,-0.40148017,0.6223317,0.4539161,0.3913613,-0.28499362,0.0145843625,0.16821623,-0.19122744,0.12462668,0.18961708,0.13186435,-0.13049738,-0.7031642,-0.05353803,0.49712142,0.015390378,0.28726447,0.08366615,-0.07655967,0.28192568,-0.10357663,-0.060847513,-0.08006088,-0.596085,0.06684343,-0.28765365,-0.4501222,0.39023933,-0.2499447,0.16220742,0.21069056,0.0015061438,-0.22035758,0.40272808,-0.013576571,0.826267,0.16829588,-0.04577375,-0.29044282,0.13859108,0.06464608,-0.1718092,0.06588959,-0.2088144,-0.045055132,-0.5799816,0.4026559,-0.17306967,-0.29467052,0.17839834,-0.16376455,0.05626773,0.5042953,-0.060333345,-0.031225089,0.035273936,-0.062563956,-0.26209316,-0.3712675,-0.060565032,0.28469867,0.2339745,0.12382946,-0.05488003,-0.040360052,-0.23828039,0.41487673,-0.03385853,0.55105025,0.28482893,-0.01035914,-0.4102207,-0.15969871,0.050399594,0.60903764,-0.11549787,-0.10650538,-0.30834234,-0.45039564,-0.28427702,0.039619997,0.03380561,0.25689378,0.021686962,-0.07205956,0.801562,-0.12195086,1.1495228,-0.0439199,-0.43100995,0.20937008,0.4721336,0.03856606,-0.013737705,-0.2771076,0.8573398,0.45341483,-0.022125328,-0.05775019,-0.4032826,0.12594181,0.14417258,-0.1837595,-0.24836849,-0.023196196,-0.44728297,-0.3004497,0.24792224,0.28602618,0.23537788,-0.12565778,0.05258546,0.46021497,-0.09161997,0.30591747,-0.5218448,-0.20511553,0.32232597,0.19606476,-0.0063251695,0.10880898,-0.51008296,0.38486403,-0.42771757,0.023259556,-0.19832096,0.19886754,-0.2871012,-0.18849991,0.2820458,0.03307325,0.35132775,-0.40550163,-0.236864,-0.30465043,0.49167174,0.3282196,0.14105366,0.54772097,-0.27053124,-0.02569725,0.05245154,0.44384667,0.72985005,-0.30092752,-0.058909725,0.39397806,-0.40981025,-0.46787256,0.446612,-0.36849064,0.0115879215,0.2086599,-0.12812431,-0.47624117,0.3433089,0.16778159,0.18598029,-0.024001356,-0.80663884,-0.014405612,0.37111154,-0.30549178,-0.18133119,-0.2740737,0.18528138,0.41788048,-0.07893287,-0.29773846,-0.0048763594,0.19437763,-0.03188677,-0.5637887,-0.11992476,-0.37766477,0.18446802,-0.080462284,-0.2585135,-0.22481337,-0.0012317201,-0.52195424,0.09836986,-0.07553817,-0.24264212,0.087500885,-0.18552354,-0.061981745,0.76812184,-0.33646834,0.09798553,-0.47220427,-0.47390258,-0.67025703,-0.27627963,0.31948662,0.051161256,0.09978245,-0.74382234,-0.087960504,-0.20207328,-0.26813272,-0.10720413,-0.46525913,0.38522908,0.067466974,0.33028418,-0.054514907,-0.7219676,0.43506008,0.042653166,-0.0957123,-0.5911731,0.51907176,0.026214957,0.81361973,-0.004415713,0.14103016,0.2825853,-0.5116668,0.02824824,-0.20166971,-0.27784353,-0.6620684,-0.059356563 -94,0.61645675,-0.46041796,-0.55795765,-0.24016047,-0.15515983,0.16658138,-0.04867841,0.61398596,0.27644876,-0.5459471,-0.31489208,-0.091094255,0.1642821,0.24682052,-0.1962602,-0.70256716,-0.060228884,0.20509957,-0.43671283,0.40089998,-0.30289456,0.15013462,0.015561094,0.4759139,0.13283832,0.21090285,-0.016020412,-0.112800635,0.06956624,-0.0760076,-0.14842753,0.35704458,-0.45978224,0.35085323,-0.07605611,-0.2680423,0.010706991,-0.5758602,-0.34238485,-0.7600479,0.3427538,-0.9761131,0.5871043,0.014773983,-0.27123505,0.2356609,-0.029301265,0.08089068,-0.2971582,-0.11525831,0.1819912,-0.12593645,-0.15162586,-0.26568818,0.06922453,-0.45151123,-0.5096216,-0.023219317,-0.3646239,-0.100488156,-0.30851486,0.14066362,-0.41583833,0.089758985,-0.13450225,0.7072329,-0.33633828,0.21411829,0.20846646,-0.4298928,0.32190266,-0.6866229,-0.17410187,0.039572142,0.28472877,-0.03811495,-0.26226714,0.20083873,0.28817034,0.45086455,0.0696277,-0.1870627,-0.12843464,-0.08857738,0.073179565,0.47053862,-0.11719421,-0.6443674,-0.17106962,-0.026227832,0.23748744,0.050296456,0.14916895,-0.15958859,-0.14172484,-0.013466503,-0.10622382,0.3779192,0.5185393,-0.24563785,-0.21608399,0.42111573,0.57408804,0.070477664,0.022996834,-0.10193742,0.06985637,-0.59962827,-0.25613263,-0.13122578,-0.36953643,0.5318803,-0.27104226,0.46289432,0.7359268,-0.11457762,0.044786066,0.20344515,0.13316895,-0.13725847,-0.4497186,-0.22605316,0.34643316,-0.4095069,0.08778864,-0.22527158,0.868753,0.16891275,-0.5845193,0.258647,-0.5607837,0.14222948,-0.115801595,0.5606114,0.652472,0.57548684,0.2788268,0.7746506,-0.40954852,-0.0066826493,-0.03889361,-0.34975505,0.05700776,-0.14877695,0.12694293,-0.53153247,0.035682816,0.05162907,0.046209723,0.060130496,0.3945004,-0.6131505,-0.19511072,0.05388537,0.9360258,-0.24946393,-0.0682716,0.7938065,0.9328814,0.7361043,0.034718018,1.2766175,0.16377951,-0.2823563,0.13903213,-0.11076612,-0.84216046,0.42536673,0.44573727,0.035389856,0.27124968,0.087004185,-0.19111653,0.60118884,-0.4940776,-0.04364411,-0.1433722,0.21983181,-0.012336224,-0.17827117,-0.66609234,-0.12300242,-0.04489377,-0.020760221,0.22591944,0.26133266,-0.13648735,0.5924285,0.08249227,1.5739703,-0.10288521,0.20309646,0.15573679,0.24581285,0.17092358,-0.086761154,0.004369676,0.37246695,0.50779927,0.22037745,-0.5950535,0.24422789,-0.26973173,-0.5033844,-0.23533809,-0.30031982,-0.17276101,-0.15292458,-0.3703858,-0.13483441,-0.18373875,-0.1659255,0.3016024,-2.6042268,-0.2992032,-0.10078186,0.51321584,-0.3254047,-0.31387672,-0.17118846,-0.38495186,0.34967816,0.22401492,0.6582565,-0.6409903,0.42519274,0.43907332,-0.6867953,-0.12736508,-0.5537875,-0.010416265,0.06553271,0.32733446,0.09997979,-0.14725469,-0.101880014,0.002693842,0.5531606,0.094429456,0.07462646,0.35433188,0.52493113,-0.06265678,0.35717812,-0.18876581,0.60732156,-0.3382294,-0.16802531,0.2869602,-0.37845734,0.28627264,-0.23112719,0.12860233,0.574799,-0.33369693,-0.877564,-0.7258335,-0.051366225,1.1037556,-0.28155088,-0.48807678,0.1441287,-0.4888405,-0.3016927,0.011479452,0.4845651,-0.19842307,-0.0025766094,-0.8349101,0.13624293,-0.179686,0.15029642,0.033583302,-0.21754289,-0.57732993,0.92633086,-0.03178292,0.62531203,0.34318927,0.23010999,-0.16587497,-0.40775195,0.08341378,0.9537819,0.4404389,0.15382437,-0.12448808,-0.024563977,-0.3877298,0.03759392,-0.02971159,0.81693006,0.528869,-0.0112320585,0.022986533,0.23682117,0.034993242,0.0972262,-0.094021976,-0.28617272,-0.2858522,-0.045253932,0.6187656,0.7569316,-0.36651865,0.28382078,-0.24965079,0.3950609,-0.08763999,-0.45694283,0.6589206,1.040108,-0.23957483,-0.30301937,0.81391406,0.3270368,-0.30198327,0.32170087,-0.63079053,-0.380016,0.3836451,-0.23643081,-0.50902146,0.12953776,-0.12264239,0.22139335,-0.96181685,0.31947693,-0.2567245,-0.58326864,-0.53712153,-0.068925135,-2.9462101,0.24452145,-0.41140306,-0.1263663,-0.3869027,-0.13978465,0.16833031,-0.8002362,-0.5474242,0.26075545,0.071264625,0.7078936,-0.10600408,0.17363043,-0.13276516,-0.29538116,0.0664879,0.12805781,0.12596369,0.20590198,0.02775643,-0.43932787,0.045741145,0.19716938,-0.4497477,0.22031541,-0.73231727,-0.5379469,-0.112283446,-0.5847549,-0.2643019,0.62725586,-0.17305286,0.040871024,-0.16749966,0.2544058,-0.18118744,0.20126565,-0.19771236,0.1941127,0.0016357402,-0.049436558,0.18758857,-0.21745543,0.44992137,0.036385555,0.49970445,0.25337592,-0.3169217,0.12804957,0.6186231,0.59125364,-0.07692974,0.8746433,0.4946877,0.013287552,0.23718882,-0.07402977,-0.48021522,-0.57840943,-0.34539166,0.15869047,-0.4650136,-0.29778102,0.08592341,-0.45584893,-0.9437273,0.51225996,0.1334473,0.15882115,0.063206166,0.35275736,0.7656104,-0.2969043,-0.15344554,0.09626195,-0.22200714,-0.60801965,-0.22728837,-0.6308724,-0.42940697,-0.061238233,0.9877405,-0.30181575,0.19539249,0.025136886,-0.14097947,0.03937305,0.21809776,-0.10188133,0.07353028,0.5552431,-0.0572432,-0.72397995,0.5571038,-0.22611682,-0.29012504,-0.59804946,0.25123975,0.5039959,-0.719495,0.56666297,0.47016883,-0.09280628,-0.35422006,-0.45407927,-0.1505612,-0.09947685,-0.14447646,0.47911295,0.30125925,-0.6711804,0.39822423,0.31522223,-0.2247687,-0.8019877,0.50467056,-0.19147182,-0.3675413,-0.16885997,0.42070755,0.081201576,-0.079598814,-0.0843547,0.11069619,-0.39672056,0.40769497,-0.041770607,-0.18241991,0.41392943,-0.12922849,0.0652318,-0.8611439,-0.20263839,-0.72485065,-0.19289792,0.33251712,-0.004437283,0.21418042,0.095087714,0.071447946,0.4442339,-0.4136481,0.013777654,-0.07584164,-0.42735338,0.30622822,0.43923745,0.4929252,-0.4843911,0.5771503,0.116143025,0.002598564,-0.05787013,0.2131538,0.4911625,0.023097,0.5774979,-0.22782741,-0.18198843,0.2117082,0.8386266,0.072987735,0.49349245,0.123672456,-0.035541743,0.14444272,0.010044818,0.28559712,-0.10599953,-0.7360024,0.0011509011,-0.32691172,0.03578933,0.5380612,0.122956075,0.35892388,-0.16693139,-0.39041385,0.03133085,0.24218625,0.30267692,-1.3557087,0.4212863,0.19311953,0.95497435,0.2402069,-0.033804253,-0.1288883,0.81614274,0.030933836,0.13130033,0.3366849,-0.11983483,-0.45916668,0.6174093,-0.74189615,0.27387413,-0.116702974,0.06412833,0.039852846,-0.10900104,0.29924706,0.8027444,-0.1898105,-0.10358154,-0.07657063,-0.4487852,0.32552445,-0.51268595,0.06874592,-0.6404133,-0.2264747,0.60755664,0.66681415,0.38454416,-0.2593748,0.022635581,0.21539557,-0.0146226585,0.20100725,0.106332935,0.069499664,0.044198632,-0.83753973,-0.16201536,0.49440685,0.21536422,0.36006573,-0.085951604,-0.15761615,0.36028445,-0.21778542,-0.09835618,-0.12916426,-0.61718225,0.03471896,-0.4271276,-0.6660967,0.5383389,-0.01171944,0.08562996,0.15744622,0.12226955,-0.25771448,0.29452592,-0.062290013,0.9998005,0.22688407,-0.32553864,-0.4893731,0.17576139,0.16033205,-0.26087758,-0.04479435,-0.36214757,0.10102429,-0.5576181,0.5478142,0.028053612,-0.3284317,0.1869189,-0.20743327,0.073490314,0.5089664,-0.16923366,-0.11690989,-0.20829259,-0.14503352,-0.29852772,-0.31767654,-0.08005767,0.21692431,0.32495347,0.24724074,-0.20971294,-0.13543218,-0.343083,0.40763915,0.2676495,0.3583865,0.4416181,-0.0466308,-0.20424734,-0.17540692,0.3930955,0.49858215,-0.041678157,-0.32596555,-0.38008738,-0.6423937,-0.342844,0.12451607,-0.0254856,0.4028963,0.04220611,-0.022926465,0.80779904,-0.08857691,0.9259376,0.010249969,-0.33438182,-0.043861587,0.6333903,0.0835092,-0.057891935,-0.29681367,1.1059386,0.46900162,-0.06598795,-0.04652646,-0.5488635,0.061293423,0.2355767,-0.21506691,-0.108930565,-0.18016827,-0.6962976,-0.32361016,0.21109508,0.3568283,0.2443068,-0.07100671,0.05116639,0.2965679,-0.06745609,0.28825676,-0.6200686,-0.23048945,0.28468904,0.16472603,-0.022952681,0.17599046,-0.46478903,0.35354233,-0.6311611,0.17584342,-0.31859317,0.09898496,-0.32339427,-0.15909135,0.22435792,-0.044813734,0.38298646,-0.43300268,-0.42106447,-0.19653483,0.39081287,0.28121662,0.006789468,0.65397495,-0.2218486,-0.06316022,0.20260721,0.6140699,1.0285549,-0.22342853,0.30479738,0.4889412,-0.4078733,-0.6568773,0.29878744,-0.24878246,0.26184022,-0.005557651,-0.19069023,-0.6581936,0.32659414,0.1919288,-0.0016728739,0.009995244,-0.69163984,-0.18683958,0.30111814,-0.3881012,-0.05376482,-0.14190185,0.048460543,0.46995234,-0.22265632,-0.2931148,0.09227172,0.2953312,-0.063745014,-0.55851966,-0.20734668,-0.51398164,0.20344372,-0.038366787,-0.38641453,-0.14952444,-0.04674158,-0.45880246,0.24389225,0.037532706,-0.3004996,0.14367412,-0.3733244,-0.0990093,0.80659056,-0.07422546,0.1537071,-0.6486149,-0.2689487,-0.8015637,-0.3750418,0.38266015,0.034950152,0.072919995,-0.6285185,-0.07939301,0.001777033,-0.045202803,-0.27228522,-0.40466246,0.477582,0.17757763,0.5771463,-0.040402666,-0.8401472,0.20937197,0.052244544,-0.2117203,-0.6287882,0.52835494,-0.052977253,0.84292716,-0.0746473,0.16735947,0.25819874,-0.56046945,-0.23958308,-0.19617552,-0.21684234,-0.6876829,0.04551394 -95,0.593073,-0.2695653,-0.5241764,-0.25934818,-0.4101768,0.23778161,-0.08965404,0.5291154,0.38339078,-0.23483127,-0.0522639,-0.03809532,-0.08904313,0.5538491,-0.16278069,-0.7006146,-0.1373658,0.20010744,-0.5676233,0.35988906,-0.46866876,0.27431577,0.012823215,0.48378214,0.14982356,0.23535344,0.22428623,0.19119498,-0.021622254,0.011263852,-0.17173107,0.26102078,-0.48165572,0.266835,-0.03457504,-0.36579162,-0.20761254,-0.4059614,-0.13079695,-0.69716865,0.19403876,-0.67998576,0.43146434,-0.16544813,-0.48901683,0.13106655,0.10087526,0.24095082,-0.35341412,0.11526395,0.03747864,-0.12227484,-0.050554592,-0.052876078,-0.3979247,-0.4811545,-0.59376174,0.036164615,-0.47597584,0.0214878,-0.24445692,0.27028042,-0.22054416,0.10600912,-0.14389865,0.33741075,-0.40583882,0.028179046,0.32938847,-0.30621415,0.068953566,-0.40504345,-0.117126666,-0.13298513,0.14795893,0.16582854,-0.33023542,0.14332877,0.40267226,0.5244487,0.14814717,-0.23385416,-0.3191781,0.02338609,0.032969404,0.43651676,-0.09214856,-0.06868781,-0.39553207,-0.20127942,0.40025282,0.19964978,0.091786295,-0.4457752,-0.014163183,-0.1325524,-0.24831852,0.10711681,0.3649395,-0.47295988,-0.1693256,0.41637406,0.40838793,0.043391116,-0.14918078,0.22123753,0.0140863545,-0.6267048,-0.21767172,0.13953222,-0.03194274,0.42316717,-0.20388132,0.17288898,0.5203879,-0.06439306,0.019245319,-0.15965192,-0.00094912143,-0.0882724,-0.42226383,-0.16395895,0.26443428,-0.3848054,-0.09852537,-0.18133661,0.56781584,0.10055388,-0.69008315,0.33983758,-0.4281685,0.17245173,-0.1122889,0.46359542,0.91244566,0.48198432,0.07675339,0.8947248,-0.46557984,0.08985028,-0.25451186,-0.21937051,0.21560471,-0.20535623,0.0038121296,-0.5203022,0.2956151,0.0028970242,-0.13514496,0.2686074,0.35594648,-0.5223666,-0.23898484,0.074244455,0.56138355,-0.4137077,-0.21242927,0.8360198,0.8875031,1.0651584,0.07751954,1.4109445,0.41137645,-0.031582512,0.032700315,-0.09194369,-0.47862613,0.22183107,0.29387963,0.030891657,0.526976,0.042370442,0.02539318,0.6482894,-0.06104984,-0.056856595,-0.046695895,0.18077832,-0.011386137,-0.06663524,-0.40194318,-0.40920746,0.19511054,0.12743062,-0.055383243,0.24017951,-0.22603747,0.5515015,0.05582911,1.4645729,0.05629484,-0.03283385,0.08001251,0.17970729,0.33950794,-0.3586416,-0.125411,0.25145373,0.3729072,-0.07465618,-0.5562949,0.14160545,-0.17118236,-0.40051684,-0.0931468,-0.3463566,-0.14907001,-0.07814927,-0.561129,-0.21133529,0.021743078,-0.24220484,0.40561575,-2.364536,-0.27292943,-0.19456798,0.22934459,-0.18692422,-0.43090898,-0.34909552,-0.34744868,0.11324703,0.43420455,0.26308104,-0.5182356,0.33185908,0.27287915,-0.4501829,-0.0702142,-0.6426502,0.051595267,-0.05121893,0.21922612,-0.151405,-0.16713089,-0.15836889,0.3098556,0.71034116,0.06524349,0.007701383,0.44699442,0.44751498,-0.022547612,0.5837355,0.04585397,0.6185219,-0.35331365,-0.26658788,0.45590037,-0.50015867,0.3998353,0.21868198,0.21424752,0.4314597,-0.4168272,-1.1030991,-0.6536379,-0.2615356,1.4697222,-0.4602568,-0.40259588,0.28308517,-0.19435705,-0.26009843,0.07564481,0.39325368,0.04965685,0.009785705,-0.8020025,-0.10334039,0.103111714,0.21214125,-0.0778496,-0.12735674,-0.21471442,0.6986332,-0.22451147,0.51760757,0.424116,0.10643571,-0.056457818,-0.5443998,0.039802905,0.82590866,0.37811607,0.13753264,-0.11856507,-0.15254411,-0.2563426,-0.048244953,0.2516607,0.5501574,0.627269,0.026094029,0.22112186,0.35862207,0.041973565,-0.014417162,-0.066250086,-0.2459707,-0.15326221,0.21440373,0.6024629,0.6947285,-0.06933044,0.28501415,-0.1555662,0.23390564,-0.1802457,-0.69390744,0.49811953,0.9104699,-0.23913305,-0.3067097,0.68460625,0.3577634,-0.27516705,0.42810455,-0.5628256,-0.27038598,0.4106655,-0.10225996,-0.26897126,0.06683069,-0.2907572,-0.021860095,-0.9164596,0.18917105,-0.037623663,-0.4535909,-0.43484512,-0.2368887,-3.6563246,0.28575557,-0.03615249,-0.2500644,-0.016289968,-0.17907864,0.46781966,-0.5980249,-0.61893994,-0.006095501,0.014203728,0.42742538,-0.15873724,-0.027482899,-0.36556017,-0.28382307,-0.23878011,0.09000837,0.07890119,0.3070812,0.08840489,-0.50595635,-0.09416516,-0.22023326,-0.56635445,0.0082938885,-0.68409115,-0.4662228,-0.19509673,-0.3899231,-0.09555537,0.6319134,-0.49198386,-0.02728812,-0.19653927,0.086210184,-0.23003721,0.26303184,-0.08286308,0.10213053,0.1407561,0.0028101872,-0.069382586,-0.21737121,0.23148704,0.18110187,0.27443603,0.3013256,-0.27428028,0.16930628,0.7080841,0.66924673,-0.15912089,0.7645311,0.32723516,-0.023844473,0.26633307,-0.0811009,-0.13760394,-0.5121058,-0.3198268,-0.25508714,-0.5849605,-0.33786318,-0.015525782,-0.2608325,-0.9621916,0.46505064,0.038258977,0.14068817,-0.15635513,0.23089622,0.43109336,-0.21477762,0.16943318,-0.17176367,-0.34932172,-0.46371108,-0.5528502,-0.6136552,-0.600977,0.37931168,1.3383683,-0.18834393,0.094475545,0.005649608,-0.3996633,0.048681714,0.24577412,0.12343414,0.14979002,0.2706918,-0.19036414,-0.60622936,0.22602159,-0.1933326,-0.097551756,-0.57825905,0.28819272,0.6675044,-0.54856133,0.64213663,0.24134383,0.24686936,0.20950468,-0.5823984,-0.3017483,0.0018051083,-0.18759903,0.7724097,0.36795527,-0.7497304,0.5340527,0.1857833,-0.27229017,-0.616498,0.40045363,-0.089319296,-0.03001821,-0.044012766,0.36519983,0.20577475,-0.1414896,-0.14210898,0.17822704,-0.47249568,0.22274722,0.42348832,0.07661277,0.29999927,-0.061475523,-0.03768201,-0.7818422,-0.10246555,-0.5135821,-0.31564295,0.0969644,-0.03418978,0.0540784,-0.013327878,-0.06985451,0.38300925,-0.30015442,0.085855536,-0.04108751,-0.30153733,0.5720645,0.53907204,0.38246933,-0.3278747,0.4178921,0.11800218,0.11721008,-0.10082451,0.0024169593,0.4248118,0.3037114,0.34599993,-0.25253013,-0.109595425,0.21450886,0.4643243,0.14800093,0.20726433,0.0070600417,-0.28343165,0.26080656,0.2640886,0.16598329,-0.22287995,-0.24007331,-0.059712168,-0.13517159,0.2917953,0.5435498,0.13824813,0.4570581,-0.05959574,-0.1650295,0.29435068,-0.0563002,-0.042655963,-1.2689792,0.26249927,0.09402088,0.6218245,0.5139028,0.026997007,-0.020257326,0.46997792,-0.25423425,0.050398268,0.50429475,0.02050259,-0.45928413,0.59626895,-0.7504606,0.44658047,-0.20826513,0.030999573,0.22524124,0.4269528,0.6333835,0.8374215,0.08025089,0.06329664,-0.004917606,-0.21525823,-0.04621438,-0.36237332,0.020423997,-0.61479545,-0.38373178,0.6449509,0.4322275,0.4824541,-0.4809379,-0.120147064,0.047667596,-0.09929628,0.13060562,-0.12928256,-0.0046256687,-0.1566069,-0.66067797,-0.18647641,0.47772238,0.027687443,0.086121716,0.075792745,-0.49030697,0.24577919,-0.22661592,-0.10627646,-0.039544668,-0.72044724,-0.20926104,-0.22417076,-0.5109977,0.25380114,-0.39837354,0.08381391,0.19675353,-0.00127159,-0.3448052,0.11088507,0.024174277,1.0703495,-0.08690218,-0.04147238,-0.25948098,0.26974726,0.3009707,-0.2408384,-0.019827275,-0.36765197,-0.004263424,-0.50616753,0.34825084,-0.04776693,-0.22820187,0.33693966,-0.016197696,0.13155772,0.39533728,-0.2965573,-0.074277155,0.050122913,-0.06175437,-0.3242516,-0.20930305,-0.3741676,0.3357849,-0.13349469,-0.009616852,0.081469044,-0.124128394,0.037060622,0.3733793,0.095993154,0.11156316,0.34130585,-0.10470764,-0.4099209,0.1851427,0.00824376,0.42831233,0.15696438,-0.2544015,-0.5133197,-0.40293965,-0.25745046,0.17878371,-0.22462183,0.20718978,-0.10903588,-0.43212736,0.8859971,0.15491277,1.243986,-0.14378029,-0.42891264,0.15869583,0.49570325,0.14825621,0.06691691,-0.21078466,0.7401351,0.592987,-0.25105196,-0.18443131,-0.4019415,-0.4114885,0.21956825,-0.30692765,-0.16576363,-0.14855647,-0.7034075,-0.26859984,0.16849259,0.040491335,0.2092484,-0.07511728,0.15922168,0.1975949,0.052277107,0.43127787,-0.3356067,-0.099523656,0.15949756,0.50744057,0.00069750275,0.17754427,-0.373456,0.40866348,-0.8502201,0.20693453,-0.40113178,0.11165127,-0.1560104,-0.23894738,0.15843152,-0.010576863,0.2085447,-0.26494887,-0.30971998,-0.2858322,0.815258,0.12778005,0.1689635,0.650499,-0.36994478,-0.02460466,0.21655042,0.37158436,1.16746,-0.232234,0.037357923,0.41854948,-0.24072586,-0.6181306,0.18903828,-0.34560373,0.20649734,0.0114868,-0.31867966,-0.39776373,0.3717378,0.18394913,0.10768439,0.16801156,-0.4790492,-0.03640129,0.34136707,-0.2677255,-0.23422615,-0.35568288,0.23701897,0.5200685,-0.4148739,-0.527082,0.044677235,0.322303,-0.13324247,-0.6500088,0.0023238086,-0.4119689,0.3263485,0.17175205,-0.39012784,-0.09687675,0.101896636,-0.3629475,0.022041788,0.20596997,-0.20628284,0.15419921,-0.28746462,-0.09769047,1.0083414,0.15643848,0.165684,-0.6801316,-0.6117205,-1.0411475,-0.34978515,0.3187752,0.2430253,-0.15129766,-0.54577124,0.028402401,-0.25459936,-0.1897675,-0.027268197,-0.39736694,0.48555344,0.11506212,0.4316389,-0.06457151,-0.87189376,0.065699644,0.14894351,-0.13135494,-0.41454074,0.5199032,-0.18375537,0.8567197,0.1191349,-0.011108231,0.07459,-0.63192934,0.36800227,-0.35107872,-0.1992115,-0.5243596,-0.0032647343 -96,0.36999068,-0.1884877,-0.43149695,-0.1429296,-0.27352878,0.015251493,-0.06810074,0.36876985,0.29973993,-0.18357147,-0.088573016,-0.21211568,0.049550377,0.30406502,-0.081771016,-0.66513973,-0.13488083,0.11061971,-0.4829978,0.42071632,-0.5750509,0.40348947,0.0012497246,0.3468278,0.04474179,0.3884086,0.17332943,-0.1804517,0.06836931,-0.106493406,-0.28666118,0.35398236,-0.4434133,0.039581284,-0.15743016,-0.2076524,0.17232084,-0.40119582,-0.32447207,-0.6751583,0.1346384,-0.8842767,0.5624692,-0.052570544,-0.068947665,0.08525896,0.16996232,0.2949328,-0.37334403,-0.018347597,0.2617075,-0.13732332,0.030469673,-0.33478266,-0.09142256,-0.32104194,-0.39245644,-0.013916981,-0.5025779,-0.32972223,-0.046332326,0.17440195,-0.3617964,-0.101058535,-0.101323344,0.2152061,-0.41233405,0.20344439,0.39832094,-0.27164608,0.26232764,-0.45957288,0.0046383156,-0.032576498,0.38761953,-0.13728014,-0.117573336,0.39008936,0.36531734,0.3237892,0.19848005,-0.2878502,-0.1347819,-0.2683681,-0.014083457,0.5478504,-0.19625948,-0.39286515,-0.1479955,0.18414968,0.20154282,0.33987448,0.05523892,-0.1325003,-0.20841318,-0.18384627,-0.24954475,0.47135028,0.46356755,-0.34006944,-0.27068108,0.2857388,0.5379885,0.31114239,-0.19017534,0.062566854,-0.012747826,-0.50834477,-0.14835475,-0.02107238,-0.11378813,0.553525,-0.10325429,0.18891732,0.9240283,-0.101354994,0.0919632,-0.040440954,0.029829752,-0.22362725,-0.32357553,-0.049265847,0.13740298,-0.5540549,0.122115724,-0.113836095,0.7744511,0.13835046,-0.6120059,0.3753482,-0.578725,0.14532545,-0.105144136,0.5798508,0.42557326,0.31289938,0.48815396,0.72400934,-0.432439,0.19816151,0.082151204,-0.51065755,0.1305139,-0.2586536,-0.06312737,-0.53140473,0.26006457,0.019747138,0.20263419,0.14361759,0.10242021,-0.6085482,-0.0090640765,0.25199273,0.82130057,-0.2918987,-0.038574696,0.5301163,1.030499,0.8273024,-0.103917226,1.0914344,0.18895045,-0.3114453,0.18932195,-0.21021827,-0.7037602,0.10430206,0.42269,-0.24152447,0.40449983,-0.0014791489,0.002462387,0.20450766,-0.2577019,-0.056861162,-0.013489747,0.2018705,0.09702692,-0.033248164,-0.5728578,-0.28303364,-0.07262693,-0.15690432,0.1681685,0.2367826,-0.123905025,0.40531114,-0.04629509,1.4850191,0.100635834,0.0735884,0.14015283,0.6372346,0.29412574,0.059455432,-0.123222,0.5664606,0.36955318,0.059491396,-0.45737317,0.24195835,-0.29458803,-0.43360576,-0.022611413,-0.42684683,-0.12388821,0.06252556,-0.39106777,-0.07431245,-0.13553284,-0.10656263,0.42893213,-3.0725484,-0.24701037,-0.071384296,0.21836019,-0.36111543,-0.07529904,0.0029771328,-0.4782532,0.121534966,0.3257324,0.45108038,-0.6944571,0.3926032,0.434208,-0.46577758,-0.22230142,-0.63710076,-0.17498134,-0.055750143,0.46757492,0.058115944,-0.035388894,-0.18114834,0.241769,0.6332114,0.0477102,0.16933234,0.3156051,0.44657287,0.07781908,0.5407165,-0.084652394,0.5752041,-0.16389653,-0.04296671,0.3262485,-0.2534507,0.39358208,-0.038921077,0.024364782,0.5356633,-0.3522519,-0.8281968,-0.40188402,-0.27426702,0.9985705,-0.42458805,-0.20647268,0.16105756,-0.3041867,-0.051024403,-0.010797208,0.49324596,-0.027005501,0.06468194,-0.578014,0.13634463,-0.051433966,0.037991684,0.05426274,-0.024398541,-0.2310706,0.6572177,-0.007555452,0.5563818,0.30853945,0.07973055,-0.12265184,-0.42582884,0.008982497,0.6833533,0.34004688,0.055458948,-0.17413053,-0.23794772,-0.23673758,-0.2119503,-0.001877597,0.4828553,0.78371876,-0.054048773,0.16164424,0.3248501,0.08195756,-0.0011208515,-0.110939935,-0.07727667,0.11943987,0.012961384,0.49117598,0.73711526,-0.17771152,0.44252217,-0.15075986,0.38765517,-0.1262771,-0.50195086,0.39813814,0.50131214,-0.23180436,-0.06750794,0.5003325,0.5089005,-0.4026488,0.44377992,-0.6048941,-0.18728119,0.7006181,-0.24906448,-0.42905694,0.3652045,-0.18990664,0.10299165,-0.9496602,0.21271311,-0.12765579,-0.25373703,-0.2952603,-0.08615817,-3.4796207,0.17271926,-0.18311314,-0.0990851,-0.29027253,0.032900997,0.23113184,-0.66601497,-0.5355475,0.12039192,0.180663,0.46459547,-0.098041855,0.17250305,-0.31827196,-0.16356412,-0.075806536,0.15667082,0.038753096,0.2797491,-0.33669084,-0.37416184,-0.09377648,-0.098945715,-0.47431868,0.21006751,-0.54966426,-0.4235721,-0.04472203,-0.5337502,-0.22488591,0.6166378,-0.29141548,-0.01800952,-0.2143455,0.013771033,-0.28489473,0.033926073,0.19424114,0.11225478,-0.07388054,0.08409492,0.101669416,-0.4019345,0.567126,-0.024848878,0.43951282,0.022899915,-0.015261799,0.03798121,0.55352265,0.45315394,-0.26630476,0.9595387,0.25446546,-0.07380208,0.3488788,-0.2743931,-0.30858153,-0.6533734,-0.43369657,-0.09490518,-0.368087,-0.4721517,-0.027802689,-0.328809,-0.68041915,0.7233881,-0.0010746042,0.37889385,-0.046276513,0.2405746,0.49182123,-0.29650414,0.0852201,0.06427566,-0.18180814,-0.5653427,-0.07643031,-0.69099534,-0.5194524,0.199456,0.81291664,-0.41956934,-0.0075482936,-0.14407982,-0.19787376,-0.08549523,0.03501405,0.18460126,0.36071804,0.4727813,-0.061823543,-0.58078545,0.57512337,-0.075982764,-0.21332608,-0.41532844,-0.12065307,0.55129755,-0.830622,0.5256742,0.28853977,0.010544691,0.04979964,-0.5221926,-0.20324616,-0.057700563,-0.20829588,0.47039083,0.08095515,-0.72754866,0.4224203,0.33903235,-0.4700752,-0.63603556,0.31115896,-0.16717033,-0.3118944,-0.07802848,0.27170315,0.21743473,-0.085862845,-0.06257992,0.13493125,-0.4577939,0.18693522,0.2908668,-0.060094845,0.26266426,0.03370654,-0.1662195,-0.7518526,0.051042598,-0.3853406,-0.3442439,0.31070134,-0.10592772,-0.0026562056,0.07608471,0.20368314,0.3417231,-0.3313133,0.10469704,0.14751354,-0.27207282,0.3121353,0.41893452,0.349618,-0.3724347,0.56462085,0.16309635,-0.08102355,0.14203878,0.0555176,0.49474794,-0.0074015735,0.27858356,-0.15023048,-0.20643435,0.3793402,0.81571734,0.15743461,0.36608607,0.015875021,0.08845603,0.35846946,0.01795326,0.08691718,0.26650122,-0.47219834,-0.05142502,-0.013249842,0.1486333,0.5099948,0.35306582,0.28660625,0.07390034,-0.25255802,0.057109367,0.23622447,-0.014853703,-0.9217336,0.24606265,0.32160175,0.767956,0.25933012,0.25104558,-0.12259261,0.68103623,-0.24813801,0.08687149,0.5263918,-0.085415006,-0.59798354,0.82700616,-0.5138717,0.47618893,-0.19322415,-0.06915736,0.14808664,0.13060229,0.3981676,0.7930959,-0.27594915,-0.07080719,-0.03352027,-0.2166508,-0.046029996,-0.44616738,-0.11058128,-0.35993645,-0.2491851,0.60861033,0.44230354,0.23909974,-0.19960709,-0.029459344,0.06688975,-0.06321707,0.2093164,0.0051645543,0.04482493,0.04534752,-0.49048546,-0.11555794,0.5395915,-0.0053581637,0.08982992,-0.33954963,-0.33759484,0.12008405,-0.23772821,0.03796401,-0.07010336,-0.60422325,0.049753617,-0.14496921,-0.6783749,0.5153526,-0.09191523,0.14612515,0.1721097,-0.085009225,-0.06476407,0.33627117,0.072808795,0.9032763,-0.0953423,-0.34450743,-0.3936109,0.1399126,0.100087926,-0.23301981,-0.025547974,-0.46059507,0.08030341,-0.38256982,0.56982845,-0.090453975,-0.37895766,0.03822239,-0.25448424,-0.046654653,0.47699255,-0.03361296,-0.11940331,-0.21662836,-0.20303787,-0.4002817,-0.09069085,-0.3032914,0.15127356,0.38528094,-0.16813152,-0.13509439,-0.24748841,-0.10581599,0.42667878,-0.05706995,0.44266683,0.15733248,-0.100021966,-0.14858052,-0.012212785,0.25135532,0.39548212,0.026058512,0.06427717,-0.35093826,-0.29287368,-0.24304155,0.18816304,-0.15545869,0.309912,0.052306235,-0.22457238,0.95919037,-0.06871939,1.151403,0.058168158,-0.35570228,0.0875901,0.62541693,-0.14835118,0.111513644,-0.365876,1.0230514,0.4399751,-0.0657754,-0.18588609,-0.37547243,0.02658665,0.30638486,-0.30809963,-0.03349367,-0.044793926,-0.42004877,-0.3260494,0.352297,0.19989564,0.220038,0.022526765,-0.09342639,0.016477482,0.056539785,0.46622765,-0.5167635,-0.35049975,0.14305474,0.21575658,-0.09640253,0.025808327,-0.4091687,0.5329996,-0.51597035,0.22792587,-0.53593856,0.027893197,-0.3196077,-0.3429815,0.09164463,-0.22509848,0.36287433,-0.39207813,-0.44151098,-0.10143585,0.2845049,-0.033247232,0.16851506,0.5163466,-0.31270495,0.037476517,0.09560121,0.49254435,1.0880073,-0.31906685,-0.055681884,0.41306925,-0.37091148,-0.6034813,0.24093586,-0.31058267,0.050713357,-0.16077493,-0.38323906,-0.3706274,0.24767913,0.25228876,0.23335028,0.075855225,-0.5502083,-0.074292704,0.39074644,-0.35052842,-0.24758412,-0.24135615,0.24285531,0.7431646,-0.24681406,-0.3607748,0.15826175,0.07948944,-0.26612344,-0.624167,-0.091879115,-0.16377552,0.36721796,0.037115995,-0.23873742,0.018788831,0.14550118,-0.38633516,0.2084842,0.29915842,-0.3989835,0.16529536,-0.2591407,0.014811167,0.93900114,-0.250407,-0.18876573,-0.6817008,-0.5480614,-0.8578813,-0.5769244,0.3632968,0.15501234,0.083837636,-0.37070853,0.08783371,-0.0086810505,-0.25782764,-0.01648277,-0.4315809,0.38523296,0.12841102,0.43670985,-0.25766137,-0.9550618,0.17763089,0.15932342,-0.19727145,-0.7297445,0.5998317,-0.15013824,0.7613591,0.0638347,-0.05074472,0.22619738,-0.28392172,0.05192965,-0.48057476,-0.06655253,-0.7550204,0.0431775 -97,0.72027135,-0.5156482,-0.5555413,-0.10228822,-0.34764153,0.027452115,-0.077757366,0.5677693,0.1526527,-0.52034396,-0.043348476,-0.16345249,0.09534691,0.29221106,-0.09031188,-0.6844634,-0.035878576,0.29314637,-0.6594188,0.79546297,-0.34103665,0.39968476,0.24412444,0.20369506,0.18246458,0.17594269,0.16688432,-0.07389743,-0.06598212,-0.07396949,-0.24472152,0.16016711,-0.664023,0.2555517,-0.031435788,-0.4201241,0.09980367,-0.37592137,-0.2753846,-0.8901554,0.1345953,-0.87895006,0.45099849,0.22784501,-0.48444292,0.021208845,-0.07767318,0.30180964,-0.2405254,0.2585136,0.19848792,-0.084095426,0.03292058,-0.4926227,-0.08213161,-0.77164847,-0.5120599,-0.057874795,-0.51204544,-0.28563496,-0.17753641,0.091563694,-0.28837922,-0.11628935,-0.2592881,0.38368225,-0.41015932,-0.14976849,0.2902466,-0.2674312,0.27358764,-0.6265241,-0.11306659,-0.23276605,-0.09411616,-0.022291789,-0.27288538,0.36396858,0.15138854,0.64992404,0.107282385,-0.36947265,-0.16096362,0.025261866,0.060162924,0.43258557,-0.195963,-0.48734367,-0.2988886,0.050697003,0.24937187,0.07024937,0.25085035,-0.5028949,-0.011744736,-0.01673731,-0.2862354,0.3424751,0.5416127,-0.38724214,-0.26315612,0.21254751,0.6106187,-0.034401536,-0.072400905,0.041439854,0.008328984,-0.38888618,-0.2176061,0.3457716,-0.25401485,0.4996556,-0.20639078,0.11642702,0.6392142,-0.21944372,-0.058273647,0.14839146,0.18210067,-0.13678785,-0.30868912,-0.38442034,0.48726532,-0.6463268,-0.22292669,-0.4620313,1.0209141,0.20494689,-0.6134223,0.28489584,-0.5906901,0.15279917,-0.11591743,0.64164793,0.7370005,0.46237624,0.10975991,0.794974,-0.5189506,0.057655238,-0.15256375,-0.27013147,0.22349367,-0.4038056,0.046305604,-0.53373265,0.010347715,-0.18532775,-0.09768604,-0.08894027,0.75737804,-0.6813663,-0.22151782,0.1044084,0.681964,-0.40150067,0.02246858,0.67671233,1.005649,1.0146756,0.10850243,1.4301215,0.4486633,-0.26597655,0.29740673,-0.27444723,-0.80664474,0.22500212,0.5301739,0.00564522,0.45460337,0.02389708,0.013256825,0.38121092,-0.35445786,0.22325052,-0.360909,0.2932091,-0.20639347,-0.27895465,-0.6127764,-0.35723078,-0.11815907,0.13954449,-0.10492647,0.38663042,-0.27183163,0.34536663,0.071856834,1.5649737,-0.13501391,0.07895028,0.046878092,0.40023103,0.37719852,-0.16411819,0.07153724,0.4240401,0.38050053,0.17564607,-0.58128077,0.113455094,-0.36705878,-0.5057561,-0.28151083,-0.284831,0.14127839,-0.1025314,-0.51588887,-0.2905327,-0.04089541,-0.22862718,0.35814014,-1.9841676,-0.15869078,-0.16303554,0.3767126,-0.3425874,-0.34562972,-0.06539783,-0.51630485,0.283967,0.39291593,0.53010684,-0.7272066,0.28837162,0.4616598,-0.4377947,0.12699558,-0.68173474,0.00087094307,-0.253334,0.49240506,-0.0018513593,-0.27538496,-0.11748523,0.012743727,0.5911163,-0.09913191,0.09586123,0.424819,0.38943094,-0.16136405,0.4722045,0.16949655,0.38018054,-0.46074083,-0.30836862,0.49333194,-0.25392282,0.25397503,0.27227288,0.028910398,0.44342968,-0.62091887,-0.83563906,-0.5527939,-0.2305987,1.0480015,-0.31624207,-0.5371195,0.21762358,-0.19410166,-0.2692127,-0.16994146,0.3743953,-0.057761285,0.054966286,-0.767226,0.080998406,0.011749864,0.2543649,0.038355313,-0.046050474,-0.34588858,1.018065,0.017516986,0.5934672,0.1371464,0.14315842,-0.34745926,-0.518173,-0.037041888,1.3066934,0.4435938,0.20197336,-0.1933194,-0.23428766,-0.3992661,-0.028205963,0.17917068,0.5062891,1.0690348,-0.145361,-0.030951826,0.46444735,-0.13463107,0.022131413,-0.15133789,-0.37625188,-0.09563969,0.22151667,0.58335644,0.61276335,-0.060377844,0.40689704,-0.15922114,0.4657907,-0.12122222,-0.7385908,0.46951282,1.1759576,-0.12930416,-0.28662854,0.6737229,0.6148096,-0.49875456,0.6013082,-0.6680335,-0.5130074,0.35900962,-0.20879793,-0.39896187,0.40209836,-0.44071066,0.3870997,-0.97674465,0.5706758,-0.29880956,-0.3512629,-0.5414016,-0.25359124,-2.9133224,0.48186266,-0.19949096,-0.03263323,-0.050228912,-0.03205851,0.21197003,-0.63940233,-0.3730473,0.06258904,0.15038556,0.67738116,-0.02635485,0.06818487,-0.2863472,-0.4189148,-0.12428866,0.2345055,0.0007252051,0.16621813,-0.12412036,-0.47412056,-0.0840815,-0.16282529,-0.37405375,0.09388466,-0.8413278,-0.69522136,-0.30736732,-0.7922984,-0.32814166,0.7298645,-0.065069795,0.061408937,-0.14218283,-0.058194824,-0.034855705,0.32880422,0.052356925,0.17747651,0.03792184,-0.064625114,-0.18494055,-0.4913674,-0.0029100913,0.078453965,0.48326933,0.3238503,-0.36866358,0.21193537,0.7578946,0.6072288,-0.27679002,0.7882617,0.58773685,-0.17425348,0.41083512,-0.052671306,-0.28806388,-0.78657633,-0.29771557,-0.23154643,-0.5103989,-0.48580056,0.11988862,-0.33511826,-0.76840985,0.67294383,0.011631294,0.15162909,0.09708993,0.560138,0.4517366,-0.096444964,-0.14472303,-0.20223363,-0.35471377,-0.4502241,-0.25222602,-0.66379607,-0.41534027,0.34645218,1.1837071,-0.19566983,-0.0021807963,0.11505358,-0.016152106,0.107209876,0.068758756,0.055980977,0.22578049,0.40969527,-0.06315727,-0.5138601,0.5911576,0.0935767,-0.037712496,-0.23493539,0.20248765,0.6333724,-0.8497552,0.48404488,0.21550487,0.16123952,-0.032065667,-0.38943768,-0.103812605,0.18094055,-0.21692751,0.61616635,0.17092082,-0.724817,0.4218713,0.4216911,-0.32096562,-0.7643244,0.32347757,-0.19870806,-0.34764054,-0.324104,0.3773968,-0.040064447,0.12354919,-0.27586332,0.28701442,-0.62189853,0.14928345,0.41588593,-0.13028155,0.21065308,-0.20181176,-0.24880385,-0.7866395,0.4031568,-0.58889425,-0.40014124,0.3161855,0.011407744,-0.16257426,0.4058032,0.19708039,0.480077,-0.2199871,0.11853575,-0.017637419,-0.3373441,0.6585652,0.47557405,0.47764647,-0.48630458,0.49847597,0.07136725,-0.16317925,-0.45779002,0.095415026,0.46598747,0.2459147,0.38621685,-0.028375758,-0.11381699,0.48960415,0.9165218,0.17384961,0.56874394,0.20196079,-0.045777377,0.07228482,0.1613721,0.17507221,-0.015235195,-0.46094054,0.08356346,0.099561326,0.17319363,0.44590214,0.15986875,0.24872439,-0.19281743,-0.1829543,0.09237872,0.35216877,-0.044601362,-1.3908337,0.1841325,0.34071964,0.5822766,0.5154661,0.011667454,-0.10143794,0.5364147,-0.3232889,0.11229336,0.15462694,-0.2784516,-0.54788864,0.60737705,-0.6157304,0.30468518,-0.2094721,0.024223305,0.031278953,-0.06707193,0.5040072,0.9219285,-0.14391962,-0.008630935,-0.21544698,-0.2933383,0.24343918,-0.48334777,0.112966314,-0.53173214,-0.3978628,0.72046226,0.21794517,0.3542384,-0.1776858,-0.058116212,0.05637168,-0.25579044,0.40469885,-0.053954337,0.017440796,0.078445554,-0.6457856,-0.16848207,0.5427552,0.1290368,0.07330693,-0.029585348,-0.25763148,0.26757246,-0.20671386,0.029204251,-0.06720316,-0.82188284,0.055197183,-0.44971165,-0.38848525,0.54212075,-0.00933958,0.045166202,0.2821238,0.04940045,-0.43288487,0.23048621,0.21373719,0.7519877,-0.027439209,-0.31025183,-0.3412261,0.31238863,-0.02948186,-0.2901121,0.12773712,-0.23067744,0.24902162,-0.8888264,0.57085615,0.006579344,-0.502723,0.13730906,-0.15998395,-0.03464608,0.48695835,-0.21895386,-0.3140504,-0.17633039,0.0063581835,-0.11074511,-0.38327283,-0.08429694,0.33174375,0.08704858,-0.15190771,-0.09550008,-0.18420964,0.16326095,0.43274304,0.10036186,0.30486354,0.27824882,0.18570654,-0.42215484,0.24040574,0.30290776,0.38788503,-0.05444433,0.13678154,-0.22403899,-0.2886832,-0.45739776,-0.09743421,-0.24457113,0.38747075,0.23955576,-0.4130774,0.9137852,0.1220332,1.4594636,0.021369813,-0.39280093,-0.00084556756,0.662861,-0.015528409,-0.13717972,-0.33024603,1.069373,0.7323543,-0.16308092,-0.16291848,-0.5424329,-0.31219995,0.27791646,-0.2912304,-0.055959024,0.008786766,-0.80489856,-0.37180218,0.15799277,0.36275858,0.070515916,-0.032228094,0.17757264,0.27748802,-0.010745744,0.043472424,-0.53844196,0.031037632,0.1103154,0.14890414,-0.0031309037,0.16588773,-0.5838681,0.3088908,-0.8145981,0.33813015,-0.15299156,0.07082795,0.02691406,-0.3919358,0.16401598,0.078934185,0.29554516,-0.5568367,-0.4772655,-0.06159761,0.68689466,0.14817794,0.21484128,0.78658867,-0.37002024,0.16761266,0.11727472,0.42764813,1.2968905,-0.14036734,-0.18525317,0.20633017,-0.43286368,-1.0072829,0.40267828,-0.16770321,0.10147338,-0.03274935,-0.49921086,-0.6213197,0.27635235,0.3250249,-0.062027555,0.16735996,-0.6148546,-0.061467264,0.3649349,-0.41372225,-0.29984263,-0.27171853,0.32073742,0.60031354,-0.28593558,-0.4436982,0.22892404,0.22997127,-0.339963,-0.5394751,-0.2589417,-0.5448458,0.37011874,0.09720591,-0.34002215,0.15495092,0.12631035,-0.48743042,0.12408164,0.3856956,-0.3678473,0.1433251,-0.34676346,-0.07971363,0.988368,-0.048953313,-0.063889176,-0.5628736,-0.53570575,-1.0220385,-0.53792036,0.6114873,0.058367297,0.12483125,-0.67902946,-0.03382337,-0.14869884,-0.04457841,-0.028979944,-0.47366375,0.5209417,0.14309141,0.40464765,-0.12867375,-1.0023633,0.29364374,0.2664461,-0.113402575,-0.67063457,0.4957668,-0.23627582,0.824139,0.0928868,0.100741185,0.460943,-0.87204564,0.015373139,-0.28873044,-0.062018983,-0.6534332,-0.108205386 -98,0.33573636,-0.36332157,-0.50519204,-0.006817562,-0.3465965,-0.1787466,-0.23086952,0.42821687,0.19664551,-0.2553723,-0.036219638,-0.1230595,0.026605759,0.49008903,-0.03861252,-0.49202332,-0.14615212,0.29056528,-0.7009966,0.67043287,-0.34141907,0.1877681,-0.118726894,0.59545213,0.25749707,0.22742607,-0.025269572,-0.010561203,0.1693553,-0.09965867,-0.008195718,0.120439306,-0.5065405,0.14169037,-0.03577764,-0.35097244,-0.0924891,-0.45317534,-0.4201179,-0.7864107,0.37082475,-0.7259843,0.5158531,0.05490346,-0.35952565,0.21828939,-0.07863991,0.44971842,-0.29423752,-0.13476047,0.21587722,0.14465903,0.08938636,-0.26961187,-0.053032093,-0.32942107,-0.43836832,-0.064471774,-0.34188196,-0.10772959,-0.25583223,0.12567928,-0.21949063,0.09701269,-0.08346604,0.3530524,-0.4594514,0.20585157,0.21197708,0.029358694,0.3318238,-0.4704227,-0.11134941,-0.24166846,0.06873477,-0.08033379,-0.3476046,0.31768307,0.030226741,0.3489824,-0.19434078,-0.05993809,-0.12215997,0.05099473,0.119798504,0.5260953,-0.17919631,-0.3507557,-0.24760477,0.05993714,0.062752284,0.04563572,0.12994453,-0.5320102,-0.12928443,0.027136637,-0.16788308,0.40839943,0.4422598,-0.061673116,-0.09926926,0.31101295,0.48557132,0.41564545,-0.18146351,-0.048409883,0.034981024,-0.44413665,-0.13494302,0.054585304,-0.0654972,0.37898615,-0.09681442,0.2198441,0.60378414,-0.021537466,-0.27039775,-0.010532975,0.13828927,-0.08381714,-0.282175,-0.27204272,0.25137302,-0.41939113,0.22305004,-0.07567755,0.7152759,0.13860391,-0.80293846,0.3650873,-0.6100193,0.17873971,-0.16486247,0.4109749,0.74556303,0.42749676,0.08156937,0.67022896,-0.257056,0.13215618,-0.09865754,-0.29288033,0.095429696,-0.18317625,-0.2548251,-0.5353008,0.023935838,-0.08578622,-0.20321296,0.14189786,0.30309454,-0.48731115,-0.09893861,0.10156737,0.7403258,-0.3289897,0.21255244,0.68185943,1.0005487,0.92893136,0.21178494,1.0376346,0.27309835,-0.2707135,0.3087488,-0.12720248,-1.0188082,0.32425097,0.36431012,-0.09709423,0.33088169,-0.022281187,0.044701397,0.4387981,-0.35933742,-0.004753145,-0.3032915,0.1947967,-0.0019603074,-0.12695818,-0.42595598,-0.3049567,-0.118183196,0.11384435,-0.15490566,0.21042867,-0.3180659,0.33175758,0.12451119,1.6661813,-0.026649177,-0.0064633572,0.049259882,0.52687854,0.31778032,-0.36883172,-0.24669696,0.43022037,0.42827755,0.02439657,-0.6846071,0.16260253,-0.10052245,-0.45893627,-0.18089792,-0.28134447,-0.080339186,0.004785691,-0.52231985,-0.2474862,0.016165342,-0.106859244,0.36972114,-2.5126493,-0.06901001,-0.1167865,0.29707378,-0.23346137,-0.32354432,-0.036230475,-0.35174206,0.38705343,0.3108203,0.5192734,-0.58476657,0.31876284,0.4245344,-0.61621875,0.02418983,-0.5010478,-0.24012193,0.032261565,0.3324154,-0.061610866,0.18757561,0.07483613,0.29213366,0.37804276,-0.17063129,0.15936692,0.33254313,0.36522552,0.051442113,0.3671202,-0.023470726,0.43975988,-0.33434257,-0.16244781,0.24232452,-0.1859214,0.24894774,0.09714909,0.111117944,0.5510925,-0.63253963,-0.8010248,-0.47617906,0.026148716,1.0978013,-0.43732372,-0.43007132,0.29549077,-0.4774718,-0.23626217,-0.0590441,0.19537303,-0.15971582,-0.1695981,-0.86942154,0.10176473,-0.017436972,0.3227665,0.013023065,-0.09718746,-0.20397861,0.79968965,0.056968305,0.41323566,0.3070703,0.16314848,-0.19138026,-0.52293974,0.116453394,0.5319858,0.36239484,0.2350205,-0.26479325,-0.13900308,-0.3337668,0.008441337,0.14424,0.40852764,0.5958031,-0.09870535,0.17613734,0.2766411,-0.21391916,0.019041542,-0.19655064,-0.15758951,-0.1259518,-0.006943158,0.57331073,0.6960635,-0.15539487,0.38109016,-0.051545493,0.2590738,-0.033723865,-0.5718098,0.5798088,1.1323694,-0.11966749,-0.3885312,0.39708477,0.54077435,-0.21907358,0.35380667,-0.45931885,-0.12837756,0.5000402,-0.13846448,-0.3376275,0.21888244,-0.27015296,0.17207618,-0.8465804,0.20979223,-0.1734586,-0.47582445,-0.66894156,-0.03086446,-2.8110182,0.19575165,-0.26344585,-0.34370565,-0.24112909,-0.091815665,0.16898264,-0.42606825,-0.6897928,0.09796593,0.018844962,0.6419095,0.01862189,0.16618685,-0.105575785,-0.1406096,-0.2995852,0.14793934,0.18822522,0.37829176,-0.07281331,-0.5015604,-0.2866783,-0.15345035,-0.43435296,0.087924205,-0.6270226,-0.421447,-0.17372353,-0.5722779,-0.21119344,0.4600513,-0.09550296,-0.01739713,-0.14635758,-0.085472904,0.0030863371,0.3265455,0.2116455,0.12353594,0.16883574,-0.012451796,-0.07970529,-0.30906805,-0.052596767,0.10029553,0.13009717,0.07799925,-0.070249185,0.263989,0.50594336,0.76915973,-0.07992554,0.70338726,0.734309,-0.12529619,0.25079903,-0.26076382,-0.31778583,-0.53449816,-0.18545035,-0.2390893,-0.41596773,-0.4456606,-0.06410133,-0.2714892,-0.73067945,0.5741431,0.0869683,0.014676673,0.19758017,0.0036584395,0.4207017,-0.048615295,-0.096852936,-0.08318536,-0.1637503,-0.60485506,-0.19916436,-0.59508276,-0.37524158,0.20004262,1.077124,-0.16766512,0.07280796,0.11658324,-0.40290686,0.15252258,0.11370398,-0.03552661,0.30255094,0.3721431,-0.04628161,-0.5868579,0.50928164,0.15076484,-0.2105812,-0.568962,0.28283435,0.6171915,-0.63322437,0.51931566,0.109190024,0.12058502,-0.1366329,-0.38012722,-0.11629441,0.1612962,-0.27459314,0.39909008,0.27483487,-0.6458868,0.39801413,0.44802365,-0.14567353,-0.7174724,0.50784236,0.020576494,-0.33548537,-0.17889713,0.20981257,-0.026799116,0.066643246,-0.056714706,0.309941,-0.311871,0.15697224,0.19444212,-0.1249889,0.1072546,-0.25109878,0.07022185,-0.672513,0.21858986,-0.4426512,-0.36764902,0.31847414,0.16518636,0.1252682,0.093008354,0.057555687,0.34015402,-0.20611453,0.07265635,-0.26293877,-0.2633288,0.3768408,0.5167478,0.45458502,-0.25495777,0.6098388,0.040725667,-0.103141375,0.041969378,0.1788505,0.4326281,0.09148012,0.39624548,0.046299133,-0.12383628,0.068496294,0.6934552,0.1474344,0.437109,-0.009054788,-0.048524093,0.2287241,0.12548654,0.20924671,-0.018271612,-0.39201146,0.09350964,-0.032714356,0.1888131,0.48733374,0.08385498,0.14604266,-0.21328059,-0.48593453,0.11753588,0.13099015,0.16351165,-1.4229901,0.2666907,0.2749584,0.7078444,0.62567604,-0.08049439,-0.007999463,0.69132,-0.21049346,0.13978006,0.24587767,-0.053582046,-0.6023881,0.45586076,-0.72185427,0.46352234,-0.07735277,-0.070336014,0.20082648,0.11703449,0.42515567,0.68257946,-0.15218015,0.039682157,0.09826213,-0.44703692,-0.029485809,-0.38451263,-0.048025366,-0.47873974,-0.38521188,0.58760375,0.4939027,0.26140898,-0.3342914,0.0755528,0.0782199,-0.22124818,0.13292482,0.18444161,-0.048887994,-0.042151503,-0.6854716,-0.27128226,0.50889,-0.21599059,0.1258965,0.025897397,-0.20416713,0.3359681,-0.16472487,-0.049905002,-0.050737917,-0.83868164,0.09061922,-0.45196813,-0.3300106,0.32689074,-0.08386962,0.19429891,0.22514085,0.040009927,-0.39482406,0.41855073,-0.0924137,0.9534982,0.016327774,-0.18290386,-0.23715608,0.16727544,0.13140316,-0.039147384,-0.03800216,-0.287528,-0.0716931,-0.4651477,0.4824515,0.11382152,-0.3423606,0.09386102,-0.029385047,0.115012646,0.44854084,-0.16246244,-0.24434341,-0.18897915,-0.13370822,-0.33999974,-0.35938844,-0.10371053,0.19466694,0.44422182,-0.002339327,-0.02789121,-0.1040539,-0.023550851,0.54613936,-0.032384776,0.57483035,0.38271925,0.2519729,-0.50148636,-0.08429454,0.26858535,0.49039695,-0.017860422,0.008976196,-0.09720697,-0.32458296,-0.41330665,0.15367289,-0.26442286,0.50407255,0.0492615,-0.29901856,0.64379257,0.026048807,1.0347143,-0.116161,-0.33324572,0.27206317,0.44352075,0.07759719,-0.03690236,-0.29507965,0.61330616,0.5576503,-0.043788556,-0.26243988,-0.28910658,-0.17804883,0.23690602,-0.24773581,-0.11661699,0.054734994,-0.5589744,-0.21661854,0.08351667,0.3095323,0.1829585,-0.08004928,0.053699456,0.14130725,-0.060056534,0.08455698,-0.34864095,-0.0681708,0.2034404,0.13597892,0.039238613,0.01581892,-0.58858526,0.37705597,-0.37426597,0.23964529,-0.36997232,0.19980891,-0.06465931,-0.2365543,0.055502504,-0.007975893,0.23669504,-0.5066546,-0.25326803,-0.3567204,0.67583424,0.13967884,0.18980257,0.6135381,-0.22579335,0.180181,0.116235495,0.37555954,0.6773089,-0.14295979,-0.27820903,0.23795119,-0.438998,-0.6012322,0.3187787,-0.13523939,0.19212417,0.034686796,-0.09296245,-0.7595507,0.22110157,0.13045366,0.033457868,-0.09614725,-0.6600633,-0.20231803,0.386689,-0.2779986,-0.19390264,-0.31205603,-0.0070220274,0.45347354,-0.25383574,-0.3505234,0.112437196,-0.023414632,-0.21354465,-0.31278414,-0.06565822,-0.4929952,0.27628857,-0.00085132464,-0.45366365,-0.120860614,0.1036287,-0.43775374,-0.046151545,0.066084675,-0.36276317,-0.019842256,-0.29154125,-0.123315044,1.0311246,-0.38631892,-0.019101452,-0.6065289,-0.57504237,-0.7320632,-0.33434725,0.60012203,0.1015194,0.10164864,-0.8372184,0.08670342,0.08820923,-0.18348427,-0.09607079,-0.41873986,0.4095858,0.15228048,0.26732036,0.0324061,-0.7972641,0.29793152,0.10380701,-0.24264751,-0.6410603,0.4563472,-0.069927864,0.7397126,0.032662146,0.1623306,0.17197539,-0.537947,0.025568327,-0.16541673,-0.21508779,-0.5490802,0.12144772 -99,0.4929952,-0.18481736,-0.33952615,-0.20867401,-0.40393645,0.11263321,-0.16672118,0.16677386,0.16183424,-0.40672323,-0.020091752,-0.24261154,-0.15277998,0.4288338,-0.048239633,-0.673239,0.020684281,0.3286672,-0.661403,0.47020695,-0.4409712,0.38002503,0.076287046,0.15749975,-0.059103083,0.17320271,0.2094793,-0.1917968,0.10654243,-0.08739415,0.073679015,0.2362118,-0.8069981,0.3419118,-0.11949955,-0.29356176,0.008251508,-0.4002123,-0.2849283,-0.6679459,0.11528864,-0.8443032,0.50441116,-0.013747018,-0.24985233,0.004851985,0.09664586,0.30458274,-0.0765803,0.15522145,0.24038598,-0.16389294,-0.2047166,-0.19998717,-0.14696041,-0.5104482,-0.5333168,0.06305274,-0.5657215,-0.24035425,-0.1970964,0.31301358,-0.21065111,0.017954325,-0.15478992,0.25259277,-0.4208046,-0.009001819,0.18879375,-0.09584311,0.10794664,-0.34163457,0.09674004,-0.19156145,0.2571512,-0.18531272,-0.21233365,0.35665196,0.12905475,0.6705092,0.10856455,-0.2586269,0.013030243,-0.086410455,0.091341875,0.589224,-0.26345697,-0.15515393,-0.18230368,0.03585542,0.2881463,0.14835416,-0.18730478,-0.49407595,0.05670972,-0.27237862,-0.053647414,0.21816641,0.4763498,-0.31408256,-0.359656,0.3265956,0.5284315,-0.00756406,0.08313818,0.13365822,0.11831937,-0.44093978,-0.2283251,0.091675915,-0.077264115,0.26076868,-0.07750782,0.11578439,0.7146353,-0.23590203,0.017731905,-0.33547804,-0.08212807,0.019663373,-0.18618935,-0.19088237,0.23197263,-0.5134666,0.069450095,-0.094882265,0.8934734,0.16689096,-0.7860901,0.3368177,-0.5515939,-0.04305897,-0.17362456,0.7116717,0.718888,0.4398592,0.12126485,0.7233645,-0.4686902,0.2979235,-0.22790615,-0.33508462,0.14786477,-0.23683195,0.0088220835,-0.44421566,-0.034529638,-0.1691938,-0.20649534,-0.14963935,0.55210775,-0.6994345,-0.0798938,0.16203332,0.7723702,-0.3947115,-0.022513894,0.6306342,0.95084286,0.6805705,0.06865602,1.1455904,0.55777997,-0.23126389,0.30301204,-0.35557613,-0.6928394,0.1522786,0.35523245,0.10507533,0.24213673,0.1811378,-0.13977285,0.35038617,-0.66818327,-0.12449266,-0.26329297,0.43004075,-0.11563819,0.1601259,-0.36898586,-0.12397762,0.052387707,0.037226714,0.07649387,0.29574126,-0.30493578,0.20106095,0.08814006,1.8682262,-0.18992311,0.1581721,0.10710217,0.33901468,0.0954511,-0.12371909,-0.23293753,0.29801205,0.3387574,-7.133782e-05,-0.54912966,0.0756004,-0.20966037,-0.35330755,-0.20786002,-0.20533457,0.07199694,-0.087476246,-0.32806295,-0.20855898,0.070737354,-0.41574863,0.5583767,-2.1173441,-0.24290547,-0.11723072,0.4383251,-0.35302293,-0.31795877,-0.20449091,-0.4164284,0.31356156,0.26960096,0.33723363,-0.51533633,0.3297974,0.26661345,-0.3422831,-0.1865396,-0.63860786,0.11657079,-0.06583272,0.35401028,-0.09980677,-0.14926839,-0.33351994,0.011679562,0.3950534,-0.10547559,0.10094198,0.48426118,0.36571944,0.30372268,0.30059677,0.026616283,0.5301425,-0.48137274,-0.33441296,0.46299198,-0.079396516,0.33040184,-0.21583357,0.14148773,0.27347583,-0.52575696,-0.79839694,-0.7875528,-0.6279054,1.1530346,-0.3812911,-0.35854158,0.19680409,0.08756115,-0.15155646,-0.034884166,0.5193745,-0.19125023,-0.089059465,-0.73811334,0.116699226,0.04550271,0.55418706,0.10284359,0.14090864,-0.36874723,0.43740508,-0.32701036,0.34430483,0.103942946,0.16969226,-0.07213754,-0.57857585,0.17048572,1.1097007,0.28032485,0.17754364,-0.070196725,-0.286496,-0.09881498,-0.10949838,-0.060070403,0.39514014,0.8907242,-0.018657224,-0.08369028,0.3025668,-0.1525667,0.010858874,-0.15510581,-0.4057253,0.034145728,0.095851764,0.46528834,0.43029004,-0.0443338,0.5152475,-0.1551524,0.25630543,-0.082278065,-0.37937143,0.34503424,0.95489216,-0.16014704,-0.017416466,0.5126381,0.44551224,-0.25759166,0.45448717,-0.8591675,-0.3816788,0.299854,-0.08126982,-0.44417632,0.058904756,-0.25627232,0.26367062,-0.93246007,0.59512925,-0.21711737,-0.5573341,-0.57073396,-0.12596998,-2.7120943,0.22611934,-0.13960548,-0.0070094983,0.12138793,-0.021213023,0.43657535,-0.4523494,-0.34071758,0.14390168,-0.07667408,0.46960917,0.0356048,0.23440716,-0.24402161,-0.17932715,-0.3262071,0.2225773,0.3341452,0.30378255,-0.046572812,-0.4416308,-0.03801779,-0.15362357,-0.27456015,0.048728652,-0.69442976,-0.53460306,-0.23096424,-0.62522894,-0.1415841,0.58508044,-0.463433,0.058130432,-0.2939629,-0.005797711,-0.10681333,0.2235379,0.1832446,0.17638792,0.14956218,-0.060829822,-0.40409425,-0.41013333,0.49284402,0.14598131,0.15477897,0.3702702,-0.10890153,0.14855064,0.50694734,0.41070673,-0.091270335,0.71035004,0.52766204,-0.13529684,0.20851438,-0.26843446,-0.12677036,-0.5667316,-0.4301511,-0.114437215,-0.43465894,-0.4058343,-0.04357439,-0.3657719,-0.7199298,0.60677946,-0.098389246,0.08270482,-0.044954784,0.15510836,0.36323625,-0.20865807,-0.06654294,-0.18677776,-0.082568265,-0.46976918,-0.5234335,-0.48539716,-0.45908058,0.23182228,1.2615587,-0.1809436,0.00494082,0.06976234,-0.12089059,0.0036387166,-0.082517706,-0.027320186,0.22455238,0.5436447,-0.08482536,-0.71289617,0.4023524,-0.054177787,0.027043879,-0.59247303,0.2737876,0.72996336,-0.82007915,0.40647963,0.2167916,0.25498608,0.17095551,-0.5293046,-0.25797614,0.13968617,-0.36748582,0.31469163,0.0268425,-0.771477,0.39913225,0.28051007,-0.41278112,-0.9670684,0.36102018,0.08397456,-0.20870753,0.12664738,0.30528215,0.003419292,-0.054730915,-0.3437058,0.2974147,-0.42816722,0.2799438,0.22467658,-0.20617023,0.3134154,-0.44580808,-0.2325346,-0.7039378,0.1785182,-0.38051113,-0.51444817,0.2587044,-0.043829367,-0.12545219,0.31712478,0.107329175,0.4808641,-0.2890704,0.013148176,0.009421948,-0.4429793,0.30101815,0.39268914,0.47126415,-0.3841006,0.57878095,-0.014907909,-0.17535807,-0.35257918,0.16676727,0.48793784,0.02250847,0.13318901,-0.063370176,-0.09719951,0.31171617,0.96774507,0.09886988,0.44848615,-0.040836506,-0.13914181,0.3376715,0.10055188,-0.065846495,-0.03530263,-0.50431055,-0.09794854,0.09265639,0.15629797,0.4599808,0.34277332,0.41852233,-0.19882672,-0.30799764,0.13432972,0.10999896,-0.07155298,-1.134959,0.17215084,0.09269044,0.48354325,0.41178164,0.021740552,0.051911842,0.5934001,-0.23584244,0.16284175,0.23461683,-0.14045967,-0.27682993,0.44496498,-0.5668909,0.28054288,-0.08344412,0.032995,0.23608671,0.0950984,0.32988942,0.83485997,-0.06331292,0.026713677,-0.09473276,-0.0981479,0.08170946,-0.23799072,0.31388825,-0.5703282,-0.37471765,0.65246683,0.38489464,0.31678116,-0.23691463,0.101807036,0.026040442,-0.16646454,0.21704435,-0.15325703,0.041514374,0.15397123,-0.4900976,-0.18759592,0.6849542,-0.008170835,-0.08466447,0.03638024,-0.118085146,0.15775324,-0.32932308,-0.030499639,-0.021529976,-0.78874844,-0.003822565,-0.42639053,-0.15338911,0.38892496,-0.048379652,0.12196508,0.08920033,0.05452372,-0.41175714,0.38202903,0.21482863,0.9186768,0.2712021,-0.38749892,-0.32433775,0.05656025,0.2057329,-0.30062813,0.11271583,-0.27137128,-0.026515242,-0.9814762,0.43099606,-0.091866985,-0.4383524,0.31896463,-0.15803674,-0.03978985,0.5348208,0.08623683,-0.13744654,0.08278165,-0.24078263,-0.39131442,-0.048945103,-0.15379746,0.13465187,0.17239067,-0.10979913,-0.09217633,-0.14650895,-0.26370227,0.500529,-0.005486802,0.28912702,0.3786565,0.257272,-0.18206576,0.12369563,0.19189246,0.44628417,-0.09839861,-0.0027818999,-0.048068162,-0.21451563,-0.23421344,0.19359574,-0.2147926,0.26197213,0.08872318,-0.47804603,0.685898,0.17273024,1.028927,-0.003345565,-0.062062275,0.11697124,0.47020566,0.10913337,0.03317588,-0.5364918,0.91364825,0.63045055,0.084862314,-0.12296372,-0.2263733,-0.39704043,0.32150453,-0.29651728,-0.05396462,-0.035321075,-0.78599703,-0.48134696,0.28474468,0.3825,-0.07762136,0.01723967,0.062814064,0.09278609,-0.0038740535,0.32844096,-0.5617745,0.064368345,0.20533156,0.42993248,0.12552989,0.3379136,-0.39976484,0.4405774,-0.65227485,0.06872663,-0.4356371,0.14294109,-0.124201946,-0.19450165,0.065472744,0.21332122,0.42060822,-0.23688574,-0.3356729,-0.13332413,0.6201278,0.17204998,0.14541821,0.81495005,-0.34320277,0.09004755,-0.049549382,0.35754362,1.1117278,-0.23205748,0.030463822,0.2970371,-0.27058607,-0.61928624,0.44472218,-0.33370835,0.100045905,-0.044072814,-0.35818842,-0.31356138,0.30349538,0.13577193,-0.14142428,-0.022939885,-0.56179124,0.105426766,0.28872842,-0.060221728,-0.30855876,-0.2891764,0.40103805,0.8371213,-0.2522228,-0.34346738,0.2385022,0.40721187,-0.33706096,-0.64564437,-0.22359306,-0.37583086,0.13367972,0.14721832,-0.3623387,-0.100292996,-0.06359235,-0.37582776,-0.025457343,0.29919627,-0.36786634,0.07649007,-0.06429486,0.15447798,0.7522245,-0.05784701,-0.1958418,-0.71642554,-0.4609951,-0.9536578,-0.39782205,0.55276465,0.44181928,0.075451694,-0.28473672,0.012007785,-0.112790816,-0.13401458,0.07249714,-0.5002272,0.22506599,0.22967336,0.4856836,-0.16917299,-0.91148895,0.14229815,0.05954368,-0.20154262,-0.55985737,0.39481634,-0.14361404,0.9430265,-0.057783507,-0.14053033,0.16674235,-0.5843526,0.05412275,-0.2683405,-0.05998717,-0.74318194,0.21884312 -100,0.47176406,-0.11320428,-0.43501857,-0.021328848,-0.29656345,0.13531831,-0.2781045,0.30811375,0.14491436,-0.655733,-0.09463616,-0.12974659,-0.1918664,0.12161262,-0.18042786,-0.44915888,-0.12211098,0.13700074,-0.4201206,0.68465143,-0.2739665,0.39750516,0.0075282,0.3659766,0.006718049,0.19881344,0.23968914,0.09591552,-0.18264161,-0.41722125,0.017853705,-0.02386708,-0.7580111,0.5794519,-0.2101109,-0.29780263,-0.023303648,-0.41919333,-0.20256199,-0.84887147,0.34889096,-0.67212033,0.3918181,0.026924428,-0.24294177,0.33656314,0.30549607,0.12025877,0.036426876,-0.15653618,0.24406797,-0.3338856,-0.21036005,-0.2541186,-0.17330602,-0.31397444,-0.6138052,0.0725828,-0.35494632,-0.27112043,-0.31600273,0.31784025,-0.32699,-0.11659611,-0.041933697,0.6209923,-0.2718137,0.021927783,-0.0033590633,-0.26117912,-0.08190442,-0.7729526,-0.21955976,-0.098426275,0.22505389,-0.07119609,-0.06797628,0.5306749,-0.007937514,0.3793693,0.1256487,-0.27344525,-0.42421132,-0.15786551,0.16439912,0.5419444,-0.24143465,-0.30092546,-0.10356296,-0.17170483,0.2254565,0.1171925,0.2091034,-0.20980373,-0.04967069,-0.26773414,-0.16600968,0.50113875,0.6753198,-0.25954884,-0.21418387,0.42905983,0.54128325,-0.0022058922,-0.21796261,-0.096579835,-0.1857821,-0.41611913,-0.17652856,0.13763441,-0.10342209,0.2256259,-0.12584206,0.2577574,0.52072173,-0.20248757,0.00086295605,0.39779,0.16833149,0.27724814,-0.29301965,-0.24059097,0.4525928,-0.5140736,0.09097575,-0.3923342,0.84292614,0.051635973,-0.88860154,0.37372258,-0.4515727,0.08445509,0.114335075,0.60787386,0.70822775,0.6623673,0.25688693,0.82538855,-0.35880592,0.08532357,-0.14952281,0.004779742,-0.16836213,-0.30914244,0.09354302,-0.41797,0.16423032,-0.10375039,0.034192327,0.012363127,0.40699944,-0.46936315,-0.25527132,0.36303484,0.79570585,-0.1457585,-0.09553991,0.87141025,1.0681552,1.1210551,0.015997281,0.9190137,-0.036187436,-0.16766538,-0.1253524,-0.13711576,-0.67635727,0.26602414,0.34242132,0.84105164,0.062333904,0.11842616,-0.06753114,0.39356902,-0.45804045,-0.23989503,-0.11802287,0.28753263,0.21302685,-0.08347604,-0.25350803,-0.18914095,0.16082104,0.015700312,-0.046266817,0.35260212,-0.3165365,0.4090199,0.11372411,1.1999965,-0.15036021,0.16656075,0.26082107,0.62721455,0.078633584,-0.293766,0.35254845,0.25375634,-0.005859393,0.005472536,-0.49563095,0.0756382,-0.2868562,-0.73066896,-0.10894379,-0.40191144,-0.46483523,0.07605039,-0.31981796,-0.46592772,-0.117522,-0.35586432,0.4296214,-2.805099,0.061451554,-0.00668365,0.35232273,-0.39673942,-0.38163865,-0.0036896765,-0.5619328,0.5600957,0.28925353,0.36068332,-0.596191,0.21921737,0.54612833,-0.7024765,-0.15274021,-0.6221066,-0.09184094,-0.11565792,0.4629563,0.03464137,-0.19587329,-0.008338754,-0.040563222,0.47342724,0.22166087,0.10897812,0.32307658,0.33504778,-0.14169393,0.32395247,0.010715503,0.46348733,-0.50847423,-0.19518813,0.4378114,-0.7658675,0.33164227,-0.3316197,0.086113065,0.43393752,-0.32550687,-0.6909364,-0.6515033,-0.18846461,1.2796465,0.017084846,-0.7014914,0.16405694,-0.18346559,-0.079804964,-0.23475868,0.36215913,0.040434305,-0.020308865,-0.5918201,-0.04194166,-0.21269648,0.3261645,-0.07628448,-0.069952235,-0.55265003,0.88026136,-0.046122395,0.46540636,0.23550902,0.25108516,-0.5849162,-0.2710036,0.0477352,0.890701,0.583791,0.2201117,-0.10343392,-0.19216344,-0.22096524,-0.45228216,0.13831484,0.64192325,0.4034322,-0.022539707,0.07524823,0.3392245,-0.08718782,0.2321141,-0.12339174,-0.2918413,-0.42799237,0.1539658,0.72564894,0.59907633,-0.057003733,0.2828272,0.030023469,0.036334056,-0.2531711,-0.38117987,0.4132697,0.67842555,-0.14933543,-0.30155343,0.5043775,0.48964113,-0.30383825,0.40545428,-0.5611304,-0.6218649,0.3594063,-0.11679117,-0.6570654,-0.12914841,-0.26764604,0.008751771,-0.5326927,0.4227967,-0.48950037,-0.7536091,-0.68917155,-0.17674415,-2.1203382,0.11617057,-0.24544698,-0.07213795,-0.14468262,-0.12989005,-0.11360265,-0.40119398,-0.4549416,0.12278704,0.07795342,0.6105987,-0.11204529,0.16572493,-0.30520368,-0.35093382,-0.3544514,0.34358028,-0.030120768,0.30989143,-0.123552546,-0.12188517,-0.029622188,-0.0962489,-0.2291765,-0.06366381,-0.3913717,-0.4258596,-0.11874623,-0.37710524,-0.21298552,0.661117,-0.40290073,0.08055487,-0.18811049,-0.107294194,-0.037948947,0.1288817,0.21681926,0.23447646,0.23661374,-0.33629873,0.026838282,-0.34650528,0.29880685,0.080327235,0.3709182,0.69388866,-0.37484583,0.14581947,0.34915978,0.75571793,-0.082267515,0.9757586,0.07119492,-0.085836664,0.48481464,-0.23589428,-0.3330546,-0.66721344,-0.042105496,0.33958963,-0.2896061,-0.3683593,0.14891961,-0.30093917,-0.7956204,0.46737954,0.20799719,0.26377922,-0.19796786,0.39124915,0.34818083,-0.23232475,-0.17043923,-0.11666815,-0.011303227,-0.4490013,-0.42093283,-0.64993066,-0.4949668,0.04834717,0.97963643,-0.1945974,-0.07885253,0.35215205,-0.033345584,0.070904575,0.17477211,0.010969139,-0.109584816,0.2567684,0.20728865,-0.6687386,0.5479454,0.046024673,0.12469421,-0.37590933,0.52863574,0.6016451,-0.38787106,0.4443735,0.3983717,0.013076287,-0.30873153,-0.6478259,-0.08269744,-0.06975012,-0.197446,0.25564477,0.30022126,-0.877578,0.37562725,0.286132,-0.2752995,-0.7964557,0.3295511,0.012795751,-0.1984919,-0.024860987,0.35768604,0.3071373,-0.13607535,-0.026862292,0.29890582,-0.46638963,0.3189952,-0.012309059,0.026991414,0.3975665,-0.2900439,-0.4921253,-0.5565825,0.13852467,-0.5729304,-0.33927947,0.26813573,0.056846544,-0.0337852,0.4973081,0.1369377,0.4755649,-0.07073292,0.052869912,-0.2530169,-0.28565046,0.34103945,0.4061702,0.6748361,-0.54583293,0.65542567,0.09165074,-0.12090263,-0.035415128,0.0775289,0.48049086,0.10555621,0.3713191,-0.061875053,-0.02819828,-0.040833592,0.7719362,0.34800813,0.40588218,-0.059520032,-0.2682264,0.49275857,0.0069116657,0.28470737,-0.14338188,-0.7630956,0.095767766,-0.25112617,0.030815197,0.35807836,-0.03389597,0.3931692,0.027444674,-0.12928592,-0.011109004,0.041660845,-0.29059884,-1.1311276,0.34594345,0.1339782,0.9933593,0.45891938,-0.052710734,0.08222227,0.9142705,-0.082355514,0.081652366,0.29965886,-0.104587,-0.4209921,0.53085816,-0.6575658,0.53593385,-0.081164345,-0.054569438,0.021966778,-0.01212032,0.4614058,0.56738794,-0.18105254,-0.050044414,-0.11722075,-0.360212,0.083975084,-0.465402,0.27527225,-0.3837768,-0.2151912,0.6664848,0.37628147,0.34836695,-0.07191879,0.12375109,0.055591922,-0.18035871,0.1939744,-0.111422464,0.033152618,-0.07330612,-0.28237727,-0.025305023,0.6236284,-0.18922502,0.18033849,0.2082226,-0.11549577,0.24893445,0.13093767,-0.056197736,0.01993798,-0.6333013,0.34068713,-0.05706406,-0.39263284,0.40438488,-0.037181355,0.1728827,0.3383178,0.12672278,-0.12010439,0.2650707,0.34989876,0.5028127,-0.0026897788,-0.14297502,-0.2953387,0.04234413,-0.08198813,-0.22475924,0.1379592,0.13096061,0.06968394,-0.57453877,0.40207955,-0.20318252,-0.21454324,0.21122496,-0.1030963,-0.047761288,0.6148389,0.17027225,-0.05149736,0.1685434,-0.11592613,-0.11459896,-0.07705799,-0.15428543,0.35605913,0.035700936,-0.17105225,-0.1815674,-0.3286894,-0.091515526,0.20192507,-0.080573365,0.06332044,0.19797446,-0.041753933,-0.54535174,0.2725482,0.15568916,0.481119,-0.065198086,0.22010383,0.05771599,-0.29120344,-0.46862447,0.5119433,-0.114895515,0.18232553,0.23769058,-0.25037897,0.7503758,-0.12751128,0.92816705,-0.085055,-0.33316037,0.031606622,0.47981966,-0.0014151427,0.06682016,-0.29309762,1.0245537,0.58293384,-0.012909337,-8.16171e-05,-0.42522827,0.0513831,0.2704538,-0.2366266,-0.11802209,0.06673678,-0.65726596,-0.15896282,0.16744958,0.25059432,0.08389629,-0.30497143,-0.22401898,0.4209297,0.22541413,0.23594867,-0.5660683,-0.24747951,0.30059037,0.22106932,-0.06271529,0.031742297,-0.434794,0.30216378,-0.8617693,0.30340984,-0.14381576,0.12897928,-0.43315458,-0.19553791,0.28262064,0.20518747,0.39690492,-0.19600326,-0.47511786,-0.17067124,0.16628379,0.16244775,0.27747637,0.43781662,-0.19219798,0.025851835,0.009756827,0.33527195,0.8757899,-0.042196933,-0.19110045,0.13378678,-0.45271906,-0.7756843,0.35924208,-0.3675744,-0.008064847,-0.021135986,-0.1457374,-0.40715435,0.12136671,0.2785164,-0.01367944,0.09832095,-0.8282472,-0.32344973,-0.036993537,-0.4374612,-0.26512578,-0.29463893,-0.06321692,0.67438626,-0.12146185,-0.11657298,-0.036177203,0.36189857,-0.30171454,-0.7557854,0.08858616,-0.449001,0.26281357,-0.02348822,-0.4606017,-0.3453011,0.2522278,-0.46162418,0.13718882,0.17296003,-0.3462848,-0.12300939,-0.3772516,0.28224185,0.72941315,0.07336192,0.36884695,-0.44072133,-0.47278374,-0.8102292,-0.3081919,0.076130085,0.20599864,0.0035237793,-0.7148336,-0.33216685,-0.40967,-0.22413698,-0.036686126,-0.4469614,0.29659858,0.22884178,0.18940772,-0.25047976,-0.7053029,0.23412742,0.13992836,0.029930519,-0.2954198,0.2674378,-0.05970543,0.96655744,0.061376836,-0.09365761,-0.03183952,-0.6944918,0.2970376,-0.1683205,-0.22080027,-0.41779253,0.1459978 -101,0.6032693,-0.17314151,-0.49999836,-0.21702866,-0.26495638,0.18318796,-0.09862966,0.6121627,0.10225674,-0.5075381,-0.08144866,-0.055461828,0.19221784,0.34851,-0.14090002,-0.6720792,0.04488843,0.13605686,-0.40510055,0.48680478,-0.50840986,0.32819575,-0.0030929106,0.2526296,-0.002674518,0.3206563,0.23291318,-0.20579696,-0.059382405,-0.110728554,-0.138885,0.2790348,-0.3930623,0.2111266,-0.042025745,-0.31824234,0.20028734,-0.3845763,-0.44921717,-0.63807064,0.34481692,-0.6940738,0.46620888,0.10137282,-0.24681303,0.26181033,0.045800276,0.18123321,-0.42708415,-0.008131251,0.08586893,-0.055995636,-0.14876719,-0.20333692,-0.037835162,-0.44934988,-0.42548674,0.02004534,-0.43760172,-0.0927697,-0.35919023,0.22553156,-0.3009074,-0.07263521,-0.05222353,0.54768044,-0.4829161,-0.07804681,0.15572514,-0.30355173,0.26277918,-0.59260136,-0.122623615,-0.054220088,0.2562901,-0.1945779,-0.16930218,0.27222937,0.24388473,0.40920052,0.06997516,-0.25410458,-0.3222013,-0.210448,-0.046493497,0.5480529,-0.24076761,-0.7692813,-0.03506413,-0.023870623,-0.07532976,0.11547769,0.026739296,-0.104772285,-0.09120458,0.061261766,-0.4598263,0.4134202,0.5247862,-0.3950705,-0.25482184,0.41142243,0.5746459,-0.03723068,-0.1655261,-0.08252592,-0.050473146,-0.5227622,-0.25060993,0.01016395,-0.23779596,0.5156535,-0.2123315,0.32546523,0.76352227,-0.14423697,-0.052772492,0.23114488,0.052591152,-0.052920718,-0.31317058,-0.20407605,0.21942244,-0.4755435,0.13956738,-0.24609831,0.93784523,0.14789489,-0.55959934,0.39928356,-0.43446597,-0.009013414,-0.20942774,0.47784907,0.5750848,0.32421574,0.16353893,0.74119616,-0.47766668,0.10649924,-0.039867826,-0.36847615,-0.065373965,0.11896544,-0.047341082,-0.48714972,0.16809689,0.02948961,-0.03331759,0.031440977,0.39838073,-0.50878704,-0.124903105,0.2849448,0.8996855,-0.4096426,-0.2042067,0.58444834,0.9928063,0.93394417,0.19361302,1.077317,0.2435545,-0.307288,0.34738508,-0.38250422,-0.6741323,0.29954198,0.47486204,0.62248766,0.12201357,0.14753638,0.080438204,0.49612957,-0.38102037,-0.06861998,-0.29437512,0.3779366,0.16960718,-0.14950708,-0.53791916,-0.20799088,-0.0721847,0.054782134,0.13469009,0.20228244,-0.16616477,0.3397214,-0.08030274,1.485299,-0.005083118,0.042120874,-0.07794662,0.59800404,0.33541742,0.017961245,-0.09852012,0.3507513,0.41281727,0.010332248,-0.6295636,0.30049917,-0.23987146,-0.64712197,-0.1515162,-0.4011918,0.15596986,-0.09300903,-0.5070419,0.030886855,0.036876816,-0.25106162,0.41790012,-2.7444534,-0.21004312,-0.17760576,0.2368175,-0.20450647,-0.35950035,0.08414179,-0.4891974,0.4550257,0.47532246,0.5940138,-0.63969606,0.45776606,0.38520387,-0.49057737,-0.06532512,-0.65575546,-0.15000074,-0.09710892,0.47231928,0.18124397,-0.12980701,-0.22022025,0.14246872,0.60240453,-0.12898377,0.019343283,0.14312933,0.26826707,-0.0035008788,0.51884353,0.0025341127,0.59527606,-0.3090293,-0.24504733,0.24950252,-0.37625855,0.13997735,-0.18917267,0.15953244,0.3754434,-0.3769524,-1.2135619,-0.7124295,-0.25191507,0.96143043,-0.21682204,-0.21440499,0.3072956,-0.29978845,-0.18918784,0.104706295,0.32165864,-0.05173806,-0.115870126,-0.63237584,0.13272838,-0.11288184,0.052491985,0.07086394,0.07304041,-0.3451628,0.7252498,-0.057776093,0.5154287,0.22728637,0.21264768,-0.21962214,-0.29526424,-0.041385498,0.96434575,0.38443393,0.22893289,-0.2843844,-0.2928991,-0.38441285,-0.10150291,0.018984461,0.6188693,0.7027845,0.12577054,0.020076722,0.10638932,-0.1167677,0.04074653,-0.061475676,-0.2769179,-0.07768643,0.08036595,0.6224529,0.40084496,-0.07645997,0.5518799,-0.15835023,0.3318677,-0.22918364,-0.3550592,0.59669393,1.0338008,-0.14430033,-0.26403636,0.64117473,0.39843962,-0.24735594,0.36130497,-0.7614279,-0.2234322,0.45527416,-0.22519942,-0.22857036,0.08087083,-0.21835916,0.102390096,-1.067207,0.24184836,-0.215088,-0.7123235,-0.48676577,-0.27805263,-3.7431362,0.21472895,-0.21593595,-0.077238396,-0.047483217,-0.14451072,0.23557499,-0.6301012,-0.41109976,0.27185112,0.054389954,0.67242306,0.13172193,0.08263861,-0.23505303,-0.06372941,-0.15659001,0.3259173,0.0998747,0.32608795,0.017486522,-0.5348778,0.008947481,-0.10701275,-0.57699925,0.12756737,-0.68088996,-0.48074764,-0.16140379,-0.6221151,-0.25893936,0.69199115,-0.26804706,0.033166375,-0.14095286,0.1777061,-0.15006958,0.35006174,0.059962176,0.10889355,-0.03858223,-0.08219923,0.13938214,-0.37767008,0.3133665,0.092535004,0.39372414,0.13264759,-0.04209901,0.06512026,0.75260895,0.6012393,-0.032644186,0.7688993,0.52145034,-0.13584247,0.4037988,-0.2516164,-0.20205167,-0.5347465,-0.56323594,-0.08235812,-0.34546545,-0.36943468,-0.086464934,-0.3612656,-0.6621904,0.437222,0.07150235,-0.067628324,0.00555881,0.41680235,0.47125605,-0.32299766,-0.03956919,-0.021614747,-0.16245715,-0.65357584,-0.32557163,-0.4981532,-0.36744452,-0.09718694,0.9621163,-0.19670327,-0.18576777,-0.22464076,-0.22152193,-0.048080646,0.1275978,0.13789055,0.2549035,0.3625937,-0.24398434,-0.60593796,0.5493878,-0.3343208,-0.27605864,-0.5027333,0.042762768,0.38349274,-0.5434831,0.621665,0.46633196,0.21732083,0.018931994,-0.49759242,-0.30768028,0.14078088,-0.07083382,0.37731013,0.19670418,-0.95849115,0.54418194,0.36758068,-0.23873755,-0.7380419,0.5120551,-0.072459534,-0.3030232,-0.060441073,0.2936592,0.20389713,-0.11756285,-0.27395207,0.08774329,-0.33384535,0.16828604,0.16470818,-0.008708524,0.41263184,-0.384605,-0.1427293,-0.7655045,-0.28573486,-0.47226733,-0.13991666,0.12546849,-0.024305265,0.11752597,0.13701305,0.089385524,0.38876763,-0.3458534,0.09798182,-0.18982682,-0.46999338,0.40788963,0.4421381,0.38429597,-0.35949782,0.56525046,-0.03119539,0.013052101,-0.18343374,0.024921784,0.5756078,0.040573783,0.4687758,-0.11146392,-0.119990274,0.35404268,0.8643952,0.21524152,0.45388418,0.0012653725,-0.17850026,0.2092462,0.077573694,0.14086242,0.14054927,-0.40587062,0.09327621,-0.09819392,0.083606735,0.41026625,0.11693038,0.22200468,0.01790963,-0.27968818,0.06722102,0.13822216,0.09956088,-1.2048632,0.56046546,0.2796618,0.9439744,0.40421638,-0.08786158,-0.05555427,0.6326173,-0.04464538,0.11914144,0.30523774,-0.19579823,-0.3590448,0.43669277,-0.6151492,0.53888535,-0.14764014,-0.044765968,-0.057013076,-0.121334024,0.38281563,1.0137645,-0.1769601,-0.005652662,0.12067976,-0.41259125,0.22725484,-0.4223836,-0.088374615,-0.5796755,-0.24172023,0.7296601,0.44261613,0.33092144,0.0018613084,-0.060063977,0.15507509,-0.0744362,0.1689593,-0.040963333,0.07364721,0.038590133,-0.8538666,-0.36176804,0.5091179,0.2985026,0.29724488,-0.124521255,-0.093855396,0.38264078,-0.18401864,-0.11493582,0.0001517183,-0.52280456,0.06339596,-0.2765461,-0.468724,0.5621646,-0.23616278,0.2627756,0.123064086,0.103576705,-0.28565946,0.42032102,0.07236529,0.795864,0.06847344,-0.25118306,-0.57165104,-0.066019736,0.19829021,-0.24704394,-0.12016772,-0.45489842,-0.0519507,-0.71666104,0.42259425,-0.118494794,-0.30358583,0.0647255,-0.2965534,0.02127496,0.4229383,-0.10579087,-0.17769675,-0.08533815,-0.1043529,-0.09644431,-0.07237172,-0.16188645,0.32622644,0.06999243,0.031120589,-0.029588196,-0.13061546,0.017690947,0.4831621,0.0821323,0.22063126,0.28530848,0.10816014,-0.20752148,-0.18422832,0.33115676,0.5998063,-0.18627925,-0.022987843,-0.23246823,-0.37855503,-0.24659717,-0.024160793,-0.090037584,0.3197387,0.17361723,-0.27482006,0.6481578,-0.15199284,1.131534,0.2110931,-0.43208724,-0.010828674,0.55537003,0.12926622,0.08086182,-0.3207919,0.84873813,0.44501382,-0.09851944,-0.27959377,-0.48777798,0.13077481,0.25816834,-0.114633545,-0.17863224,-0.10340901,-0.6841878,-0.25841466,0.29952878,0.26726002,0.21309553,0.0127463695,-0.098735146,0.12799041,0.010116019,0.35355625,-0.59009695,0.14977114,0.32144615,0.25240937,-0.010417827,0.15157816,-0.46397597,0.40296412,-0.55819225,0.08893756,-0.26158682,0.19193013,-0.31515446,-0.26958117,0.2766532,-0.03908295,0.39644513,-0.21372654,-0.35184175,-0.29691938,0.5195628,0.30981475,0.12195532,0.5652296,-0.18539917,0.017040918,0.10776675,0.45405307,0.9198085,-0.37330776,0.038416836,0.44256774,-0.32626668,-0.53065246,0.0976694,-0.30833,0.2117894,0.07459142,-0.2137442,-0.6365687,0.3828667,0.18755667,-0.033429928,0.13323426,-0.51491463,-0.22576652,0.23502159,-0.32786536,-0.26358882,-0.10262591,0.24896953,0.70151716,-0.35785866,-0.19441094,0.2407845,0.30600637,-0.22360294,-0.64095867,0.060172517,-0.43289688,0.39886093,0.079968944,-0.41577652,-0.15471052,-0.057863466,-0.44195488,0.23085342,0.28737158,-0.35489598,0.009838616,-0.3549976,-0.09203894,0.905074,0.015419926,0.34901834,-0.63656473,-0.33742434,-0.8267438,-0.2887102,0.6154499,0.06987854,-0.041957717,-0.5801333,-0.056410287,0.10721956,-0.10609271,-0.09548837,-0.46023867,0.48259658,0.07516664,0.49492308,0.116739266,-0.85233754,0.01558332,0.05700477,-0.27035096,-0.5322091,0.48490587,-0.19447291,0.7798276,0.05786831,0.17913426,0.2938695,-0.41634506,-0.010281333,-0.3313705,-0.16151372,-0.6886252,0.15979409 -102,0.43050632,-0.35756114,-0.45017096,-0.05259684,-0.4138343,0.067819566,-0.19522956,0.43175107,0.07597177,-0.1996551,-0.15980588,-0.25279796,-0.098347634,0.18612552,-0.17990844,-0.25595573,-0.22661673,0.10801487,-0.63551044,0.7859492,-0.114541784,0.17329635,-0.19333579,0.40750903,0.6699219,0.2799239,-0.017468708,0.13794647,0.050692257,-0.2598174,-0.10223068,0.14867194,-0.5562004,0.16713502,-0.3057003,-0.2904862,-0.09838409,-0.5672499,-0.5124342,-0.8937136,0.51506823,-0.9109114,0.63775504,-0.081366636,-0.18894596,0.2675409,0.3552523,0.34835732,-0.09641075,-0.17205943,0.30460903,-0.05734231,0.14833952,-0.12165737,-0.19900052,-0.39232546,-0.56713355,-0.14916016,-0.34579837,-0.11777388,-0.43464953,0.16007432,-0.34981802,0.008861834,-0.124121584,0.5154216,-0.47211334,0.30241317,0.050376393,-0.023180012,0.091979384,-0.7535526,-0.17093188,-0.16781346,0.27197742,-0.0034055968,-0.088020906,0.47381496,-0.029382467,0.17335497,0.0028023045,-0.11464407,-0.23740827,-0.22534736,0.0991894,0.39294547,-0.065882966,-0.4119294,0.012486744,-0.029953416,0.35727316,0.39018303,0.2530284,-0.0155326845,-0.118697405,-0.07341686,-0.05301883,0.5508322,0.43485376,-0.13855846,-0.106039256,0.38596967,0.654022,0.42303988,-0.28281578,-0.041305076,-0.026057513,-0.48046547,-0.09334751,0.12546234,-0.31823307,0.47766843,-0.08388813,0.19062825,0.49153376,-0.26402542,-0.08083644,0.046509456,0.13012925,-0.21346706,-0.1721184,-0.4849075,0.22804363,-0.45966494,0.44400704,-0.10574028,0.58089846,0.10488245,-0.47578755,0.29712355,-0.5592336,0.06831274,0.08019241,0.43827966,0.6190272,0.49224737,0.45392126,0.6965895,-0.079327255,0.044050142,-0.2779601,-0.2400803,-0.061929025,-0.21370599,0.00578324,-0.5345868,0.022823304,-0.2683297,-0.15872835,-0.11728747,0.53165287,-0.34785324,-0.08207002,0.15772335,0.78029543,-0.23183727,0.0779768,0.9267639,0.99480426,1.0420672,-0.044252116,0.7383511,0.041152883,-0.24350943,0.09234145,-0.17175789,-0.5903384,0.2469158,0.400717,-0.17772938,0.26668125,0.122868694,-0.0270276,0.2644265,-0.44396287,0.00783785,-0.13822807,0.13390191,0.24747582,0.00948142,-0.2445576,-0.32047358,-0.06912414,-0.021606298,0.18926017,0.17267223,-0.34321603,0.47993058,0.11274188,1.6394463,0.052011203,-0.041330244,0.22954664,0.66155124,0.15945822,-0.25278386,-0.09955431,0.35368195,0.29226175,0.14240228,-0.50555027,0.28795782,-0.32908112,-0.44381174,-0.09081788,-0.47736597,-0.3345478,0.07497803,-0.28873417,-0.27792174,-0.22142388,-0.26392597,0.43682683,-2.8937337,-0.04323519,-0.047019266,0.2692236,-0.22322688,-0.3103597,0.08532303,-0.48186225,0.47980702,0.29459155,0.38935238,-0.5898297,0.3984174,0.5065938,-0.81265694,-0.024527024,-0.52839476,-0.13839127,0.09401669,0.40851897,-0.142068,0.029673643,0.09502697,0.22104886,0.4880585,0.14801994,0.19569837,0.43846476,0.4771807,-0.13086277,0.7316858,-0.04156172,0.30615294,-0.35320562,-0.09702174,0.3541792,-0.3407313,0.40475884,-0.20121318,0.13533421,0.70381445,-0.5949495,-0.80561316,-0.55825436,0.003134227,1.1406398,-0.32188714,-0.5841,0.27082223,-0.65511006,-0.19883417,-0.16692823,0.5535983,-0.18177801,-0.1824991,-0.63739055,-0.115640126,-0.11902606,0.16250058,-0.068975136,-0.09003797,-0.33519086,0.79569125,0.009681842,0.5738317,0.19535996,0.14586423,-0.50057584,-0.48522785,0.14045633,0.4652696,0.51289743,-0.056135066,-0.24219488,-0.20296755,-0.23046805,-0.15724847,0.15309525,0.68260604,0.4202408,-0.081393816,0.18169887,0.30759516,-0.14767747,-0.01319348,-0.31807086,-0.17954479,-0.2726903,0.025322413,0.4184967,0.54616946,-0.0013481379,0.40493095,0.05730366,0.23026164,-0.094443895,-0.40209076,0.2912585,1.3067708,-0.19104078,-0.42297205,0.43135178,0.61270255,-0.102521464,0.40223604,-0.58952636,-0.12413238,0.5864084,-0.15324417,-0.598374,0.15182658,-0.28651997,-0.000835826,-0.57348055,0.0064060865,-0.35023588,-0.5762917,-0.65298235,-0.10680335,-2.344116,0.11272562,-0.270505,-0.40357703,-0.31220016,-0.4533437,0.083281964,-0.5878096,-0.6619403,0.054012474,0.122695416,0.7950709,-0.11543376,0.051542617,-0.2098589,-0.39357308,-0.50445324,0.15409508,0.18669564,0.44426012,-0.3093494,-0.42966253,-0.11310975,-0.018413937,-0.4028865,-0.08397756,-0.4769365,-0.195538,-0.19097425,-0.3860549,-0.2960109,0.5630687,-0.08831368,0.108252764,-0.17641239,-0.02177925,0.16886629,0.14622402,0.19671017,0.18339466,0.09472311,-0.14348684,0.13659705,-0.2280172,0.37116,0.10230395,0.34260482,0.20242341,-0.050832964,0.3454976,0.25253996,0.5456633,-0.09158243,0.95187414,0.3243947,-0.17929104,0.22439711,-0.15556605,-0.4285653,-0.571645,-0.084799044,0.1759792,-0.33649027,-0.47315815,-0.1701415,-0.28976128,-0.7556288,0.5161442,0.0874829,0.38589287,-0.08580847,0.23016055,0.59273434,-0.20043828,-0.030573677,0.011870116,-0.17669836,-0.54265046,-0.29733393,-0.53501666,-0.40907204,-0.0966591,0.7820292,-0.32491675,-0.07776562,0.16502886,-0.42773023,0.20810132,0.14951564,-0.077814296,0.18501247,0.44116667,-0.15998834,-0.539286,0.51463294,0.012665121,-0.13811922,-0.498511,0.4038202,0.5666482,-0.4747325,0.47928435,0.13016887,-0.10841465,-0.6287223,-0.53049475,0.05353231,-0.10359447,-0.19570981,0.4236275,0.33092722,-0.6267798,0.25492632,0.1507064,-0.098061636,-0.7572571,0.6788336,-0.1072106,-0.49736038,-0.096765585,0.28568214,0.13269183,-0.034717783,-0.26310956,0.2637963,-0.26838657,0.24647088,0.11971356,-0.116945855,0.06940239,-0.25772613,-0.14103228,-0.72936636,0.29113224,-0.43922815,-0.35173836,0.6245647,0.084360614,0.11129192,0.26764145,0.18572386,0.2930226,-0.11859878,0.13540149,-0.16068801,-0.17091939,0.29165477,0.45868096,0.5538884,-0.50929135,0.55786175,0.05108612,-0.18896362,0.34414068,0.11214828,0.23156968,-0.07434834,0.50008416,0.16744114,-0.27735576,0.18826962,0.6745849,0.35338804,0.43095404,0.010881785,-0.09913993,0.23779485,0.0021107257,0.34704602,-0.14376144,-0.776542,0.068835124,-0.2981811,0.012361637,0.5166468,0.107060246,0.16564779,-0.13639508,-0.1537932,-0.08519927,0.20925331,-0.16999808,-1.2693261,0.27991912,0.25586268,1.0307262,0.43542004,-0.015513022,-0.014968306,0.82214445,-0.12724827,-0.0067253886,0.3960036,0.33635393,-0.46750212,0.5173559,-0.64595044,0.49986824,0.129912,-0.08615173,0.04920498,0.03724472,0.3687088,0.6464775,-0.25483593,-0.12477231,0.058593947,-0.42728963,0.2915443,-0.25147676,0.021630196,-0.60301346,-0.3069127,0.52688986,0.49513385,0.35671705,-0.030004056,0.023517588,-0.057920326,-0.20527655,0.26894978,0.17935562,0.09685351,-0.17869872,-0.644392,-0.059509613,0.40663823,-0.21046111,0.17469269,-0.037822854,-0.17548294,0.23534289,-0.05067381,0.064383894,-0.023992918,-0.8432656,0.21258928,-0.20951174,-0.39116606,0.36273625,0.00068814756,0.2995485,0.25503346,-0.021843309,-0.24001122,0.34089622,0.052256178,0.85124564,-0.07421203,0.007933545,-0.3646919,0.039076556,0.080877416,-0.18196239,0.055360403,-0.10451202,0.068576306,-0.6437753,0.49829465,-0.025256956,-0.4262146,-0.03200615,-0.20476232,-0.07991194,0.6751991,-0.07405417,0.020596031,-0.24367903,-0.13009006,-0.38586813,-0.42974383,-0.07664239,0.21567903,0.14910068,0.16667223,-0.18348607,0.09808075,-0.05446697,0.6755247,-0.014685352,0.55619127,0.21446444,-0.031070638,-0.33007076,-0.14699247,0.05350534,0.533858,-0.053389426,-0.07117382,-0.24095565,-0.4704395,-0.38357538,0.36239997,-0.057410788,0.38494045,0.07553669,-0.14396615,0.75974196,-0.17035504,1.0830952,0.015359866,-0.4414237,0.25372687,0.72497046,-0.04989228,-0.19157617,-0.17634337,0.8289645,0.47933474,0.030427566,-0.069940425,-0.26791537,0.09826696,0.07594102,-0.22080462,-0.08111078,-0.041005716,-0.3845841,-0.05950997,0.023708662,0.26337558,0.26313564,-0.16339353,-0.0056584678,0.39273632,0.007916528,0.3142804,-0.2063531,-0.3818324,0.43323585,-0.16116253,-0.0860455,0.14356692,-0.53029525,0.48707512,-0.4368822,0.14247672,-0.3707579,0.2682094,-0.21730086,-0.23774382,0.22383328,-0.011245314,0.30546045,-0.34630954,-0.3189967,-0.28068867,0.40290153,0.30624276,0.1963664,0.4214885,-0.2629277,0.1821843,-0.04311819,0.49661943,0.6829263,-0.11926587,-0.107993856,0.11497608,-0.5508537,-0.61219496,0.39898428,-0.41796336,0.12226378,0.23634891,-0.044137876,-0.3950115,0.25086054,0.18105894,0.14650024,-0.18431044,-0.9444516,-0.23303229,0.23352194,-0.24341956,-0.074130535,-0.45247486,0.033378497,0.5435892,-0.14561097,-0.45565245,-0.056814853,0.07699327,-0.12424708,-0.469394,0.007309266,-0.34645826,0.3172284,-0.16806799,-0.32963118,-0.18406697,0.101369314,-0.46913016,0.19346514,-0.17884864,-0.38485387,-0.030006906,-0.28931317,0.08635326,0.9285328,-0.3475087,-0.011810561,-0.24430484,-0.44721782,-0.7804563,-0.30561402,0.17640203,0.21172547,0.013799476,-0.7140873,0.030547833,-0.29927272,-0.20772532,-0.1357317,-0.41985095,0.40589347,0.20557421,0.44809204,-0.030945698,-0.7413155,0.32728896,0.014831098,-0.16916306,-0.5098703,0.5125989,-0.029548867,0.6746667,0.048963226,0.20356035,0.05755024,-0.456675,-0.031305287,-0.15395187,-0.13131776,-0.5432929,-0.024695067 -103,0.48125777,0.0073195347,-0.4162363,-0.08831044,-0.17591761,0.18482819,-0.04480177,0.34553477,0.20826145,-0.26108646,-0.2675181,-0.16998467,-0.07739484,0.27061063,-0.16769896,-0.6830594,0.108691275,0.1949602,-0.4210258,0.5316667,-0.39763623,0.27087888,-0.048435755,0.32318974,-0.049413424,0.071638465,0.1405959,-0.105501726,-0.035348304,-0.19024272,-0.11010997,0.098701306,-0.5174338,0.2344063,-0.119909815,-0.1317077,0.19612066,-0.29407266,-0.34480354,-0.63282055,0.20259385,-0.57431495,0.55992264,0.15474054,-0.20055582,0.20550476,0.1368338,0.2636609,-0.11322068,-0.037004184,0.0046072686,-0.043098085,-0.19261704,-0.100921966,-0.2128119,-0.43775776,-0.55842936,0.17008981,-0.37416476,-0.0071975165,-0.1339349,0.09743995,-0.24880323,-0.038410936,0.009859843,0.34016126,-0.22676294,0.029928325,0.2990381,0.009940199,0.13697806,-0.5686328,0.014267315,-0.11266097,0.22783457,-0.10751233,-0.270072,0.17880787,0.50359374,0.47645244,0.011715106,-0.25354013,-0.07242959,-0.19696508,0.15829447,0.47215304,-0.1310495,-0.56682587,-0.18779357,0.103334285,0.08624215,0.20838584,0.048123013,-0.3110411,-0.056326125,-0.1007803,-0.17515834,0.2775289,0.4561256,-0.38671228,-0.3353623,0.34606892,0.56468856,0.044538848,0.045473628,0.023418197,0.14151302,-0.5267662,-0.21414243,0.115641154,-0.29999548,0.4822491,-0.26190752,0.01341808,0.5369261,-0.10593225,0.06342326,0.18971793,0.09875616,0.033149533,-0.4044978,-0.1630312,0.15174165,-0.58719695,0.091350146,-0.16234626,0.8440727,0.2766532,-0.66076404,0.31918773,-0.5954054,0.15240753,-0.104048245,0.46562904,0.6724018,0.28104967,0.28988615,0.69692403,-0.4746241,0.08917993,-0.122027636,-0.2622881,0.0699623,-0.10850309,-0.0610814,-0.43121347,0.18745337,0.062267754,-0.09608432,0.014597961,0.15950836,-0.5137587,-0.095938995,0.11655756,0.7566897,-0.2401297,-0.18575546,0.60365975,0.943834,0.8694053,0.13050553,1.3724747,0.24702074,-0.21409877,0.26666877,-0.27610162,-0.78064966,0.20743789,0.25019312,-0.35452265,0.19233724,0.040273447,-0.06835173,0.32307753,-0.5456386,0.040903497,-0.15704493,0.4948318,0.019270131,-0.012044532,-0.3046403,-0.27188757,0.014139518,-0.06565333,0.2280751,0.32201758,-0.053835373,0.14228486,0.10204474,1.256549,-0.1470364,0.07676237,0.03079388,0.36119038,0.2664205,-0.08373671,-0.2228191,0.37625027,0.27861694,-0.004778411,-0.5359274,0.017535115,-0.2666823,-0.30359086,-0.25306344,-0.13479099,-0.12127707,0.17865443,-0.23603019,-0.15183382,-0.15868844,-0.17652069,0.7112939,-2.7365384,-0.20882702,-0.09426781,0.29073694,-0.37843415,-0.364373,-0.24141799,-0.48553395,0.52693045,0.18438466,0.39789656,-0.78280133,0.17563121,0.26455155,-0.4631864,-0.18650272,-0.6623731,-0.047018208,0.06391177,0.1654582,0.03695583,-0.108054124,-0.17185824,0.058040056,0.3273557,0.09724008,0.124745116,0.21538027,0.23344885,0.31260243,0.2692663,0.0060483688,0.59750473,-0.0963661,-0.13048746,0.20518778,-0.30737248,0.5528231,-0.20056595,0.06533454,0.36715892,-0.5539754,-0.63856554,-0.7169928,-0.5078901,1.0741762,-0.19735302,-0.18678172,0.0784752,-0.3431979,-0.20671327,0.034737144,0.3379969,-0.2286229,-0.16230032,-0.720192,0.058181603,0.08033036,0.23285685,-0.004294636,-0.04505586,-0.34186673,0.66637766,-0.18697716,0.27878922,0.3951992,0.13689935,-0.19435334,-0.5904211,-0.10483068,0.86171,0.45900354,0.14132227,-0.14601453,-0.27853838,-0.53130984,-0.21493094,-0.0019184862,0.5337692,0.74050146,-0.12794234,-0.16004303,0.2889183,0.04999249,0.13741641,-0.01588516,-0.4201284,-0.08034743,-0.16510573,0.5533639,0.46841723,-0.27212632,0.3004871,-0.03335992,0.23278318,-0.22351502,-0.32997844,0.5731627,0.98497444,-0.24055721,-0.17392604,0.5531432,0.29849073,-0.20256114,0.36129355,-0.5913761,-0.21128263,0.45100728,-0.031181647,-0.29752058,-0.019683126,-0.2991421,0.13449709,-0.9001335,0.4414886,-0.3553748,-0.40451744,-0.5480148,0.011015526,-2.7865436,0.261161,-0.23481473,0.06831994,-0.19919147,0.034641482,0.23071636,-0.37863395,-0.6056618,0.33091778,0.021897426,0.49578133,-0.092217125,0.20362043,-0.13210371,-0.23843257,-0.3974093,0.110426605,0.18383506,0.20195691,-0.12525705,-0.2262644,0.1592923,-0.17484328,-0.29561296,0.22195654,-0.61463344,-0.43210068,-0.18795674,-0.5469271,-0.30838206,0.6718574,-0.5069863,-0.021631347,-0.28749374,0.016660977,-0.18673857,0.20056848,0.06267819,0.07149679,0.016872773,-0.0033097502,-0.18925838,-0.34273654,0.2430471,0.04468303,0.21881476,0.3593491,0.02521704,0.105784334,0.36577898,0.63534135,0.024289113,0.75519276,0.36444524,-0.116969176,0.1981651,-0.22854151,-0.16552515,-0.17185046,-0.28272843,-0.197866,-0.37992105,-0.3671196,-0.016136732,-0.426433,-0.6811141,0.28580672,0.14254008,-0.019434744,-0.02957541,0.2692108,0.4441967,-0.22212349,0.17961057,-0.029347496,-0.15973891,-0.62727654,-0.36156133,-0.3676098,-0.3239457,0.4049966,1.0375235,-0.36547908,-0.08957465,-0.090598024,-0.21526423,-0.024238957,0.055609737,-0.11373533,0.06935729,0.45965725,-0.11816418,-0.53729284,0.37963992,-0.066011734,-0.22900847,-0.5357183,0.23097193,0.57874405,-0.66486824,0.70703316,0.45613003,0.12371792,-0.026046047,-0.48483077,-0.15424694,0.11151712,-0.39401108,0.2869253,0.34958768,-0.6519851,0.40392855,0.33449787,-0.19579418,-0.8258844,0.5054893,0.051519055,-0.17988035,0.022858748,0.48210594,0.20082124,0.08649012,-0.1838628,0.25484234,-0.45896468,0.05466791,0.20745751,-0.06327187,0.27098304,-0.2186964,-0.25654322,-0.73827505,-0.10280871,-0.63010514,-0.2864501,0.28327134,0.09037309,0.10104941,0.08301902,0.29573274,0.3523264,-0.3920569,0.17630169,-0.033205714,-0.23021258,0.21786407,0.35957035,0.35136154,-0.31112248,0.47451124,0.002015416,0.057717912,-0.19311757,0.16582601,0.41469255,-0.024019973,0.3160858,0.19793947,-0.117660046,0.16332829,0.8479298,0.027873963,0.17995445,0.12782894,-0.0010649615,0.29897675,-0.030505827,0.1917049,0.20000495,-0.49750724,-0.19433662,-0.15949473,0.16060694,0.3767228,0.21028623,0.25250906,-0.015428313,-0.27757484,-0.07522527,0.11815264,0.04866877,-1.0086745,0.39910525,0.123038396,0.6081193,0.58226585,-0.0069825095,0.17755304,0.4003453,-0.16970626,0.26348853,0.35526156,-0.11933408,-0.37244362,0.38590962,-0.66269743,0.3298996,-0.19195065,-0.0005924659,-0.010871415,-0.029470708,0.332058,0.92694813,-0.12069897,-0.015392555,-0.13237889,-0.24389662,0.15163778,-0.26180252,0.027640715,-0.6198085,-0.27804267,0.5878724,0.44709963,0.35898426,-0.23870376,-0.071889006,0.21277942,-0.0646186,0.084371254,-0.0073208255,0.13578342,0.17895328,-0.57314074,-0.23471297,0.60355836,-0.07309645,0.19039264,0.013085799,-0.11733455,0.17341426,-0.30495477,-0.0048505217,-0.123434685,-0.6883376,-0.043353114,-0.11833144,-0.36256313,0.3835819,-0.41040665,0.056686994,0.14148216,0.11130829,-0.28755632,0.37965065,0.04245943,0.57272595,0.01435756,-0.16775575,-0.4162195,0.22864291,0.07573097,-0.13551055,-0.012283764,-0.20088546,0.14347692,-0.61099297,0.5792879,0.01170605,-0.20736662,-0.011039694,-0.19820929,-0.049899805,0.5421437,-0.30001336,-0.16841586,0.16734055,-0.3557656,-0.28165224,-0.029831162,-0.037256528,0.23246075,0.35822418,0.036790423,-0.015069668,-0.22492155,-0.34155717,0.19706675,0.20489156,0.24115182,0.27073747,0.03181352,-0.30155352,-0.16746213,0.11529266,0.3812995,-0.046641856,-0.17303367,-0.1758091,-0.24970327,-0.32200193,0.20801885,-0.07710155,0.29389602,0.0148278605,-0.18028252,0.65945786,0.11033283,1.0661899,0.06567449,-0.263712,-0.14751954,0.53550225,0.031036654,-0.11374973,-0.38396007,0.9108287,0.46143606,-0.14131118,-0.1232112,-0.2962558,0.028615734,0.20731089,-0.05181121,0.07146644,0.07366104,-0.5066719,-0.31980297,0.27244693,0.2574282,0.08544992,-0.049511947,0.0077992934,0.063094325,-0.08406115,0.32791448,-0.44146279,0.04144379,0.27090803,0.32209238,0.20607376,0.26173753,-0.2522048,0.32992408,-0.59681904,0.09137545,-0.18769553,0.10383188,-0.18314233,-0.2919364,0.15590657,0.083741136,0.33456713,-0.30250105,-0.34979835,-0.20706405,0.43587118,0.2643118,0.1848205,0.6831643,-0.20394172,-0.07401126,0.12152814,0.6246562,0.96547925,-0.062909774,-0.039277103,0.24198604,-0.2488624,-0.5908887,0.35749945,-0.32676506,0.0415535,-0.07379812,-0.19327219,-0.6038968,0.23995745,0.24058633,0.2304897,0.10102068,-0.75298935,-0.10165452,0.14185707,-0.33224702,-0.17121252,-0.18464088,0.2102628,0.9012949,-0.17110297,-0.20572019,0.058718782,0.19092345,-0.23381183,-0.6319839,-0.08470596,-0.35119957,0.21529987,0.16354695,-0.24781549,-0.1266726,0.213313,-0.43288225,0.068297885,0.0152286505,-0.28582126,0.15189578,-0.26711807,0.086893074,0.7211255,-0.1455076,0.08468277,-0.49988228,-0.3778091,-0.660983,-0.2543314,0.4015101,0.10385573,0.11528533,-0.3955668,-0.16024254,-0.0573666,0.006775009,0.012642324,-0.33022806,0.48344684,0.133575,0.2548497,0.04648673,-0.83555347,-0.011956059,0.0608148,-0.1688369,-0.51393104,0.3086746,-0.056300074,0.9080601,0.027504222,-0.08564289,0.27318624,-0.48113555,0.08699525,-0.28643018,0.06298492,-0.78345066,0.12221248 -104,0.46852416,-0.254902,-0.50880307,-0.06867841,-0.24178244,-0.059161894,-0.20330863,0.31526366,0.03319034,-0.55463195,0.0038989743,-0.09467247,-0.061073788,0.3725186,-0.04163393,-0.46803224,0.06346588,0.10275689,-0.5995094,0.61362976,-0.46882617,0.5729838,0.08358525,0.14327243,0.12437658,0.2617726,0.171425,-0.17814948,-0.061597597,-0.10220888,-0.1402181,0.07086175,-0.6363265,0.11700096,-0.08527161,-0.27444464,0.047059633,-0.2598549,-0.47354153,-0.76134384,0.2667581,-0.78171104,0.5483641,0.020830922,-0.36227816,0.22905287,0.0710739,0.40770522,-0.32807302,0.19444299,0.2510336,0.052360076,-0.07841082,-0.106019944,-0.18649003,-0.41091076,-0.3318741,0.05870485,-0.54564065,-0.28893834,-0.2890665,0.07918235,-0.36957252,-0.057908285,-0.1109854,0.38929468,-0.4682836,-0.092503,0.14610837,0.045638863,0.41567805,-0.5949144,-0.13584042,-0.17887166,0.16828851,-0.27956173,-0.25830013,0.19274275,0.30166826,0.55666006,-0.056138404,-0.14009425,-0.03661818,-0.23400784,0.22294982,0.50386924,-0.21500808,-0.3781168,-0.14584494,0.047999058,0.13873437,0.12799376,0.057340607,-0.58767444,-0.05329958,0.03943817,-0.16244155,0.3612653,0.4623982,-0.27786055,-0.2205365,0.2570626,0.4865965,0.1897512,-0.10556407,0.1588342,-0.07958356,-0.42621288,-0.1448334,0.25712398,-0.030328061,0.45133564,-0.11569587,0.22567515,0.5934983,-0.30774373,0.014342296,-0.0947104,-0.08978332,0.032200232,-0.08026443,-0.2579788,0.102790594,-0.7511336,0.12814708,-0.0833617,0.68401885,0.2929077,-0.62026405,0.3344421,-0.49848303,0.09842787,-0.14267983,0.54871327,0.7581004,0.25157434,0.07945495,0.6411743,-0.52697504,0.100354955,-0.142739,-0.35472116,0.010820214,-0.0641769,-0.13465138,-0.50524116,-0.18080507,-0.041957036,-0.18122448,-0.16239528,0.29420662,-0.4750087,-0.07529745,-0.0015071352,0.714935,-0.4149383,0.2125831,0.53935033,0.9569674,0.97995883,0.22709268,1.1770567,0.33780333,-0.23345058,0.20089372,-0.24568768,-0.57943267,0.29593173,0.5252915,0.0074862163,0.26296747,0.06612222,-0.014507727,0.33715278,-0.4033293,0.05363648,-0.32095787,0.33314782,-0.13348633,-0.07648869,-0.5255134,-0.20897272,-0.17509702,0.15736064,-0.20705411,0.20122732,-0.2058683,0.24548881,0.017252648,1.5720688,-0.31435612,0.09943029,0.07623433,0.40173274,0.2972763,-0.2157018,-0.16769536,0.3170988,0.56284446,0.097638056,-0.65790915,-0.11890065,-0.27818865,-0.44260475,-0.21128538,-0.30001816,0.14358075,-0.075608246,-0.4268071,-0.12429149,0.08641874,-0.3059916,0.45036545,-2.4360235,-0.18810035,-0.13687436,0.2587476,-0.37404123,-0.40819234,-0.15189332,-0.3120851,0.4897787,0.35060748,0.45660096,-0.6116406,0.2776932,0.36012083,-0.3758639,-0.07858208,-0.6133382,-0.20541707,-0.025460493,0.42013898,-0.07948576,-0.05657036,-0.094923034,0.28094465,0.534625,-0.23056291,0.14589652,0.2373972,0.3378988,0.19419487,0.4452965,0.063085936,0.39695817,-0.36732668,-0.1212686,0.50257534,-0.048866674,0.09696056,-0.025735727,0.2382532,0.28801128,-0.6826355,-0.85847396,-0.6915429,-0.42035744,1.1757678,-0.26229563,-0.36127385,0.3921379,-0.2220596,-0.064581014,-0.048533812,0.33347437,-0.0127188545,0.09147536,-0.87498164,0.10129659,0.0657453,0.32717642,0.039969143,0.013217317,-0.32766473,0.5019912,-0.12798044,0.3626145,0.4290088,0.1971119,-0.04683215,-0.44478068,0.008089149,1.1954906,0.61636835,0.10560325,-0.1740376,-0.16288586,-0.31253204,-0.042024788,0.060232718,0.31064042,0.94829094,0.013023038,0.092724256,0.15120104,-0.10635985,0.11751068,-0.13148476,-0.28962862,0.008916186,0.052976623,0.54644966,0.22847815,0.005729527,0.6798309,-0.0855181,0.205043,-0.08293072,-0.46195552,0.47850105,1.1750056,-0.18739033,-0.15755872,0.49125093,0.37642097,-0.2472899,0.48532087,-0.6105231,-0.22265908,0.5606481,-0.19423465,-0.3581641,0.37019813,-0.39807957,0.30162904,-0.91346645,0.3983924,-0.3544684,-0.49309024,-0.5009353,-0.066149235,-3.3998246,0.34385642,-0.2778235,-0.24491991,-0.08115216,-0.13550122,0.37438905,-0.44583756,-0.45478278,0.20341744,0.00910716,0.6759533,0.08718219,0.012172062,-0.15150227,-0.26448005,-0.2431597,0.16559687,0.09623463,0.26251376,-0.13701123,-0.44965905,-0.111660115,-0.16091423,-0.3633782,0.029681236,-0.63801354,-0.5341391,-0.27759722,-0.54129833,-0.21854462,0.7143285,-0.11510695,-0.022352306,-0.0728661,-0.035056163,-0.052767042,0.44482198,0.19941965,0.26957652,0.0048833448,0.0022149484,-0.109755345,-0.3732553,0.051065207,0.20582703,0.0006894509,0.15681858,-0.15088421,0.20737647,0.5737355,0.6471891,-0.18320686,0.6504934,0.54607177,-0.26342717,0.33461198,-0.3283611,-0.27854636,-0.5935093,-0.45766973,-0.26308414,-0.296027,-0.5701463,-0.10412004,-0.22375454,-0.72134,0.56014246,-0.11467586,0.08785994,0.05225002,0.23333834,0.24251257,-0.14702663,-0.056456055,-0.1704407,-0.14631675,-0.54658115,-0.37219632,-0.670607,-0.4756814,0.024096496,0.9390694,-0.13279885,-0.029638862,-0.054196056,-0.25437522,0.062418852,-0.1416922,0.12322542,0.33243197,0.23791961,0.0075992583,-0.7068213,0.49323183,0.110473685,-0.18167442,-0.5522813,0.10954912,0.8624303,-0.60123307,0.3747985,0.27967793,0.028299754,-0.058266558,-0.51889,-0.22520031,0.26387772,-0.34517825,0.4340542,0.08334771,-0.7359048,0.40924826,0.5104956,-0.2002683,-0.66046107,0.60551,0.12460901,-0.2409272,0.089416064,0.3843197,-0.06753839,0.03615818,-0.389681,0.37729505,-0.38838816,0.25999016,0.39706817,-0.04551924,0.19915661,-0.27863476,-0.3233234,-0.6046392,0.1007066,-0.481676,-0.26845998,0.19881119,0.08553182,-0.022748271,0.16222307,0.07658269,0.4819663,-0.3362424,0.19748831,-0.16023256,-0.35573843,0.41315538,0.60158,0.23646422,-0.20480302,0.6772125,-0.011478549,-0.18164031,-0.29184386,0.065688156,0.51226187,0.17637523,0.13329026,-0.14963205,-0.2096878,0.30900213,0.9028093,0.10271595,0.5574911,0.13913435,-0.11062297,0.121218376,0.23977564,0.090482585,0.12456958,-0.3185886,-0.161934,0.10846802,0.17810424,0.5294505,0.17176062,0.23374167,-0.13703388,-0.20935796,0.050931398,0.19069248,0.16454701,-0.927561,0.43633953,0.14063923,0.44144887,0.47818005,0.032756258,0.059422664,0.5283094,-0.27045164,0.011282754,0.15182263,-0.14440608,-0.56128126,0.5827612,-0.6910115,0.41682413,-0.16192737,0.0647734,0.18421732,0.08517942,0.40781415,0.92609394,-0.0056182267,0.0873127,0.025898771,-0.2246034,0.056834877,-0.50460446,0.041642744,-0.33423144,-0.48942935,0.6803132,0.32709092,0.2223105,-0.13754314,0.037277468,0.10538933,-0.24533278,0.31187427,-0.09140197,0.08909993,-0.08383053,-0.6578167,-0.22353134,0.4797549,0.09442518,0.080197066,-0.02394496,-0.050822034,0.27343607,-0.18883738,0.11580915,0.04528268,-0.7481496,-0.009110649,-0.563147,-0.347015,0.3121677,-0.34900725,0.28984484,0.14231735,0.015454841,-0.24465373,0.44362944,0.15033646,0.73686105,-0.09392166,-0.20862903,-0.29299074,0.16071187,0.24994291,-0.23134041,-0.09500354,-0.2294449,-0.011076559,-0.9241683,0.40637475,-0.09504456,-0.22668843,0.25094593,-0.24420261,-0.074292965,0.49641502,-0.15447743,-0.14582096,0.010745064,-0.2278828,-0.2329757,-0.38938552,-0.097803816,0.27276576,0.20260319,0.04373361,0.010462065,-0.050881427,-0.04889003,0.4016553,0.07890463,0.401559,0.30793616,0.24294825,-0.42971328,-0.016405089,0.22793137,0.36651236,0.12901868,0.1088271,-0.16765253,-0.42677206,-0.35607997,-0.045284316,-0.19323982,0.3391105,0.13315096,-0.29915053,0.85116214,0.14670862,1.0743276,-0.09590249,-0.39493397,0.069480814,0.35986227,-0.09747182,-0.11391631,-0.25976402,0.7596286,0.63136035,0.0048225084,-0.1541045,-0.3029877,-0.34059843,0.26809314,-0.26966208,-0.19190283,0.033585288,-0.48229104,-0.33525187,0.31146342,0.32270804,-0.06897624,-0.042049725,0.05523305,0.13281201,-0.015916191,0.23600282,-0.52599245,0.07131109,0.3479443,0.20921156,-0.0119353095,0.12454663,-0.3719712,0.43100154,-0.6283671,0.070120126,-0.19427428,0.1304947,0.030334089,-0.24619038,0.15180202,0.06603284,0.426603,-0.38279602,-0.33069882,-0.22691065,0.61284,0.032348227,0.06643841,0.6059568,-0.30144998,0.20059995,-0.03341531,0.36253992,1.0591751,-0.29394296,-0.04204044,0.33390793,-0.42526838,-0.5788709,0.33631468,-0.18204829,0.3249162,0.056361463,-0.40872923,-0.4400135,0.2442369,0.25728244,0.004150625,-0.047750007,-0.4272363,-0.19617344,0.39389038,-0.21977085,-0.33170566,-0.37275106,0.20802563,0.5584756,-0.44758552,-0.3370539,0.058653656,0.15240666,-0.2667948,-0.48265442,-0.024547163,-0.28024343,0.35391146,0.14884885,-0.17874718,0.06683065,0.037935965,-0.47038513,-0.03727995,0.105130814,-0.44658482,-0.041964874,-0.19225755,-0.08912333,0.80462223,-0.20576115,-0.21573871,-0.61649185,-0.5423244,-0.79805744,-0.47187513,0.747701,0.28418785,0.1797878,-0.51374555,0.10721526,0.0038870582,0.24475746,0.051370025,-0.32095224,0.4433085,0.19083643,0.41395494,-0.22846001,-0.75526136,0.23809446,0.10507368,-0.15761207,-0.55338776,0.48582605,0.021578046,0.7939673,0.08015032,-0.052399907,0.30202264,-0.5835106,0.025362289,-0.20081188,-0.24000295,-0.719097,0.0026064834 -105,0.29438928,-0.13192235,-0.34572384,-0.13058536,-0.2870268,0.16073653,-0.11946653,0.20312464,0.12354601,-0.3665718,-0.153274,-0.0825751,0.05930397,0.40316525,-0.10146939,-0.6818228,-0.094573215,0.12654473,-0.68720394,0.36036608,-0.6165807,0.3953448,0.0804916,0.15629417,0.07061991,0.5373673,0.3353832,-0.2659717,-0.27141643,0.061351776,-0.22273675,0.15504663,-0.32623982,0.09818575,-0.10212744,-0.19812927,0.12588799,-0.37713864,-0.21206045,-0.5624863,0.15902176,-0.80193657,0.31873816,-0.11382101,-0.004024986,0.02450556,0.12893829,0.23795195,-0.38721395,0.16249695,0.26541188,-0.17342603,-0.038873084,-0.35444215,-0.14572807,-0.34727025,-0.31688106,-0.0019492998,-0.5135283,-0.47802684,-0.098281145,0.191491,-0.24753848,0.023839371,-0.05997948,0.23345612,-0.4457247,-0.015869308,0.27897903,-0.21476926,-0.012665798,-0.46907946,0.086205274,-0.031441327,0.5087245,-0.060320225,-0.051617216,0.4635252,0.33949247,0.32178378,0.27572417,-0.1573254,-0.2165319,-0.29499975,0.2304046,0.4074298,-0.16350645,-0.311471,-0.14706618,0.12392271,0.09929738,0.1947277,-0.037636954,-0.2969022,-0.10295895,-0.1075978,-0.17021015,0.26151684,0.4411795,-0.26664186,-0.22751962,0.3749862,0.60249394,0.09355628,-0.17967893,-0.16716778,-0.031743128,-0.392475,-0.14422593,0.21963748,0.07283538,0.36344004,-0.06896051,0.15697682,0.91421497,-0.19409204,0.17261885,-0.26291847,-0.08395982,-0.10254728,-0.1667978,-0.10836956,-0.02830384,-0.41168743,-0.028165141,-0.1700997,0.779672,0.2744276,-0.6545471,0.42360306,-0.40170333,0.12143213,-0.064854056,0.5741782,0.40189525,0.3481861,0.20222707,0.7258554,-0.4478408,0.3075149,-0.15992706,-0.43992862,-0.085242815,-0.12908237,0.037880685,-0.40088353,0.17621644,-0.14607626,0.04817114,0.042876102,0.1942011,-0.4571923,0.10449707,0.0663106,0.84914654,-0.49297905,0.023204109,0.52073884,1.0299524,0.8256161,-0.00303138,1.2132286,0.36674365,-0.2797578,0.11185736,-0.45759502,-0.5712748,0.14853431,0.31408167,0.15156773,0.19615982,-0.0053439606,0.046506103,0.25264707,-0.3809784,0.102496244,-0.12807858,0.23957185,0.10968208,0.16796805,-0.42133224,-0.15591161,-0.033905435,-0.061712068,0.19946876,0.16544348,-0.24179304,0.34939858,-0.042678863,1.6881156,-0.0814744,0.1622047,0.07264803,0.5263898,0.107183516,-0.089724384,-0.05129892,0.42775014,0.33248156,-0.19018456,-0.67948854,0.14313976,-0.32194352,-0.4755432,-0.091034666,-0.3806989,-0.109860644,0.1655914,-0.30494866,-0.1827498,0.008007728,-0.3659761,0.44377455,-2.7196448,-0.16326037,-0.088038735,0.31324783,-0.35619876,-0.21918172,-0.21204697,-0.4479452,0.21515457,0.24042337,0.36398667,-0.5699603,0.36043197,0.35452113,-0.352148,-0.30301672,-0.6212307,0.060341746,-0.056621194,0.4454427,-0.12241551,-0.029205013,-0.21382928,-0.0050190687,0.50789744,-0.066953406,0.092273995,0.48266372,0.29785883,0.4049705,0.43718314,0.04677342,0.56321985,-0.20306946,-0.14554396,0.34662515,-0.34748006,0.31562167,-0.16420437,0.104871556,0.33953437,-0.44200814,-0.6543084,-0.60229987,-0.42049336,1.0967374,-0.31370476,-0.27615827,0.19186032,-0.0041966983,-0.08478268,-0.030801913,0.44735864,-0.12725334,0.022514356,-0.5943424,0.18137819,0.00026043417,0.23110163,0.084240824,0.016776022,-0.25999293,0.58607143,-0.09179619,0.5234377,0.2695759,0.22729743,-0.01623444,-0.25194594,0.07814005,0.878357,0.19085579,-0.0041206935,-0.11657635,-0.32557583,-0.11980783,-0.3590787,0.029965302,0.32901573,0.77961224,0.09566375,0.0042903386,0.1639256,-0.11065712,0.015065705,-0.11240271,-0.2075793,0.03674258,0.017285144,0.38143355,0.4714691,-0.089403756,0.40406564,-0.23432069,0.3307984,-0.13183829,-0.3682333,0.5542829,0.4500728,-0.087449744,0.011797351,0.28009897,0.45303452,-0.3939922,0.38662377,-0.5265491,-0.17234407,0.706962,-0.35724658,-0.28948736,0.13436289,-0.22687696,0.12739575,-0.73500293,0.26490575,-0.1789397,-0.31789508,-0.41344324,-0.1201748,-2.8330173,0.06900329,-0.12868018,-0.225145,-0.097428754,0.0624352,0.19990605,-0.63962364,-0.39289582,0.14941399,0.11265262,0.4717681,0.07857951,0.14192663,-0.31258428,-0.042231414,-0.08366578,0.14523266,-0.016146258,0.33567098,-0.09740781,-0.3400661,0.022256501,-0.2230812,-0.41795138,0.23054047,-0.43519557,-0.30588126,-0.10676465,-0.45639372,-0.21534412,0.60806495,-0.50783974,-0.011275176,-0.16823785,0.06676264,-0.2786834,0.16913882,0.31482664,0.07477697,0.20909941,-0.022726193,0.06472812,-0.4128939,0.5220769,0.049381875,0.37834728,0.2564787,0.049270377,0.0025484036,0.3534914,0.5587705,-0.13051236,0.9554045,0.25551033,-0.17046915,0.2751572,-0.39999893,-0.14002846,-0.54454947,-0.43776175,-0.0047996463,-0.2449255,-0.534882,-0.06155475,-0.37109527,-0.7281175,0.41727772,0.008446423,0.24593942,0.0088839745,0.22222878,0.39707336,-0.18334894,0.0509705,-0.040026143,-0.06115482,-0.567979,-0.41776413,-0.61485624,-0.50272065,0.17829779,0.89336205,-0.3305245,-0.13889277,-0.25506347,-0.3535305,-0.07300193,-0.07157804,0.06757665,0.31191325,0.27323562,-0.13015105,-0.6285791,0.46951783,-0.06437799,-0.15302831,-0.4491505,0.0074604116,0.5526474,-0.6921154,0.47142416,0.3310368,0.140518,0.15608613,-0.40172508,-0.26414904,-0.036717385,-0.17873368,0.29680884,0.048206598,-0.6119896,0.4490851,0.25417736,-0.3655592,-0.7476489,0.17941748,0.060425416,-0.2743026,0.07647066,0.31472674,0.09505536,-0.18571985,-0.19059142,0.12020972,-0.38163337,0.27990016,0.3797132,0.008666025,0.24899194,-0.21644762,-0.3811166,-0.62131053,0.018003747,-0.39423734,-0.11973371,0.24982062,0.03488443,0.11621469,0.110138744,0.045842744,0.37530288,-0.295514,0.026630871,0.055447906,-0.13307743,0.14745295,0.23927599,0.27499536,-0.32066855,0.53463125,0.0007238002,-0.1273333,0.024696715,0.03261164,0.445549,0.13454024,0.15983991,-0.14303818,-0.2977981,0.4299879,0.7448479,0.18715797,0.26922452,-0.020545308,-0.32762572,0.4982301,0.056340076,0.06274554,0.19700325,-0.34502384,-0.062103488,0.10506489,0.1770562,0.33299547,0.3969068,0.49229965,-0.017569328,-0.20257756,0.13715613,0.11150163,-0.05297208,-0.82946914,0.32385132,0.10350682,0.68407583,0.35357922,0.12164065,-0.1453833,0.59574664,-0.33193877,0.16181938,0.3709967,-0.15891609,-0.51414376,0.60030866,-0.55102897,0.39507046,-0.112686805,-0.10838324,0.12950459,0.065049395,0.24072088,0.68727785,-0.07439315,-0.019489177,0.010440637,-0.19216368,-0.091536075,-0.2713222,-0.034193095,-0.40017515,-0.3261041,0.5585597,0.21875836,0.27881208,-0.11150211,-0.056431476,0.011149233,-0.08328908,0.21232283,0.0039375494,0.012348358,0.14417927,-0.43197975,-0.4245623,0.47027078,-0.08008991,0.13966675,-0.12722,-0.26163793,0.16897519,-0.27760112,-0.052967694,0.0024276883,-0.51414376,0.10137555,-0.20504497,-0.4544515,0.24401799,-0.08771617,0.2437865,0.17845362,-0.008617024,-0.19134887,0.47615364,0.25085112,0.8749938,-0.017266238,-0.24719918,-0.32652506,0.009514048,0.33919567,-0.18372625,0.21305934,-0.31576896,-0.016959751,-0.59613675,0.5976996,-0.18850678,-0.14508143,0.21621412,-0.3564693,-0.08827233,0.57529765,-0.083300345,-0.12852012,0.064052515,-0.06498248,-0.4530571,0.10149787,-0.33655947,0.12708595,0.33939078,-0.01696558,-0.15076236,-0.29980436,-0.2268335,0.46120307,0.124891296,0.43187442,0.120773904,-0.034980915,-0.13023652,-0.022496255,0.0815756,0.3001165,0.15389152,0.027734363,-0.30064845,-0.36081922,-0.30178204,0.23156825,-0.1532438,0.101503275,0.17239608,-0.39374897,0.6570044,-0.059274428,1.118535,0.20264755,-0.32464862,0.07888122,0.48996517,-0.011813474,0.2024307,-0.43250144,0.79878974,0.56524515,-0.0014985309,-0.08568484,-0.37928092,-0.20319949,0.3219462,-0.3340934,-0.026606567,-0.03475168,-0.5506127,-0.47847018,0.35953915,0.023590207,0.090024054,0.040628433,-0.090277225,-0.09075205,0.1807037,0.4388348,-0.58865947,-0.17781058,0.28128132,0.10101413,0.09516031,0.21227011,-0.42124134,0.59381694,-0.5550809,0.1664107,-0.29349172,0.09477687,-0.20328118,-0.2662032,0.15879834,0.07882528,0.3488365,-0.3789285,-0.49795094,-0.08527499,0.44595048,-0.09718412,0.27124718,0.53650236,-0.2759946,0.020865174,0.10600347,0.5538675,1.1130284,-0.28720334,0.121406615,0.43068096,-0.32953334,-0.51917815,0.3229027,-0.32856986,-0.14795166,-0.11715059,-0.31668258,-0.33411577,0.36747497,0.31134915,0.01139401,0.040373687,-0.45976162,-0.099240325,0.40857947,-0.3058383,-0.2977424,-0.14324023,0.33877918,0.64578825,-0.38148612,-0.30338064,0.0865311,0.29964373,-0.34899196,-0.40314108,-0.19260824,-0.1823464,0.35458907,0.24815801,-0.11984498,-0.06951576,0.13542488,-0.2623763,0.08772304,0.21515845,-0.4322219,0.07786342,-0.102226384,0.049242944,0.7284679,-0.023632785,-0.16294813,-0.7180526,-0.29780635,-0.9095912,-0.5959779,0.36722082,0.1095006,-0.013794597,-0.2803202,-0.01732599,-0.08744334,-0.0895243,0.0945441,-0.60309726,0.38873872,0.19139756,0.42605272,-0.32172605,-0.8216897,-0.05782602,0.1151787,-0.19816543,-0.5595347,0.561166,-0.12439067,0.8844803,0.0062839617,-0.2212918,0.16553392,-0.3198486,0.17310426,-0.4517521,-0.21418566,-0.8222533,0.12881206 -106,0.36905268,-0.05946387,-0.5680412,-0.32582617,-0.2330217,0.10398354,-0.05471226,0.30841658,0.29654837,-0.26685548,-0.04092077,0.06538613,-0.027443822,0.39426324,-0.0059011364,-0.7553383,-0.07753771,0.18835016,-0.58204526,0.34486657,-0.5691421,0.41249993,-0.051965807,0.39752933,0.08529745,0.4132151,0.07625001,-0.07522976,-0.07121963,0.2532934,0.10961076,0.2550391,-0.48344785,0.18138738,0.07647581,-0.35494038,-0.06098022,-0.3501572,-0.36223236,-0.53927994,0.36694282,-0.53042173,0.6285306,0.04180482,-0.34150496,0.13109478,-0.08940964,0.32639667,-0.48861906,0.18321082,0.15350421,-0.16503215,-0.00018879345,-0.19261596,-0.38234955,-0.43425903,-0.58913547,0.0350454,-0.4405672,-0.14433038,-0.16881545,0.09177412,-0.3237695,-0.11794997,-0.15451424,0.39080614,-0.5303288,-0.05889017,0.33658046,-0.2018902,0.051426798,-0.31296942,-0.12356662,-0.106205635,0.21004729,-0.09100175,-0.28116643,0.27370036,0.21634476,0.5836981,0.16201243,-0.2851788,-0.2758103,-0.076128185,0.21607706,0.543756,-0.16950612,-0.18023376,-0.3299844,-0.11843745,0.14568958,0.07093663,-0.011101706,-0.4167404,0.039270382,0.14164917,-0.12083439,0.38141558,0.53349125,-0.30297366,-0.33264655,0.35746923,0.50254077,0.029985806,-0.17828162,0.2734622,-0.08185865,-0.44257426,-0.3043949,0.03559176,-0.016223771,0.46237436,-0.07311227,0.17770585,0.7702822,-0.14485796,-0.06556032,-0.14235003,-0.0134391105,0.15255901,-0.41102815,-0.18374112,0.24430867,-0.50414413,-0.045011222,-0.13744678,0.6089617,0.15009925,-0.7554614,0.3390971,-0.45135674,0.1619264,-0.16205989,0.67158014,0.9009019,0.42470768,0.18906315,0.8105059,-0.6534196,0.16404796,0.18719576,-0.40951127,0.11939939,-0.12384671,0.053244766,-0.64617294,0.110069625,0.19949387,-0.05363732,0.10967127,0.23213987,-0.4212539,-0.1595193,0.09933133,0.7251849,-0.39673552,-0.07239801,0.77667385,1.0556623,1.0524279,-7.90315e-05,1.3330438,0.4560041,-0.31965044,0.24665366,-0.5196028,-0.5413917,0.21374784,0.32750347,-0.18466775,0.50219876,-0.025313804,0.17542233,0.52488095,-0.34665087,0.17818354,-0.02110858,0.14138483,-0.14421916,-0.11733178,-0.5404917,-0.22585547,0.08414946,0.061354697,-0.15198621,0.30798832,-0.2764547,0.49995056,-0.007967898,1.4510733,0.17284189,0.061644267,-0.0041410285,0.4390102,0.2649161,-0.3198309,-0.077850185,0.25135994,0.42646328,-0.15155771,-0.5862002,0.020435708,-0.33265057,-0.5384445,-0.2486474,-0.3674806,0.040552173,-0.14282347,-0.4826672,-0.06089216,0.070087336,-0.39653772,0.4159279,-2.5346272,-0.29099575,-0.12409548,0.26551637,-0.13061425,-0.3386648,-0.32549372,-0.46914142,0.20249917,0.27798608,0.39379284,-0.6340432,0.4463379,0.43937078,-0.41723534,-0.08095288,-0.5744692,-0.10861411,-0.09567509,0.17769875,-0.056552052,0.009632913,0.0070168045,0.3778489,0.61007786,-0.044210978,-0.07415156,0.12747417,0.39016888,0.04038133,0.5096686,0.19192937,0.6113955,-0.24142237,-0.13270696,0.3378809,-0.36543414,0.1868403,0.04889923,0.19318792,0.3791466,-0.50587296,-0.91763115,-0.55184174,-0.27321994,1.113464,-0.38702753,-0.31744576,0.3997944,-0.40537685,-0.43314865,0.02355818,0.36834437,-0.07197732,-0.0027824193,-0.71425503,0.08985053,-0.004395834,-0.00037929416,-0.05758769,0.150288,-0.24831688,0.6487584,-0.18001962,0.46166563,0.39510438,0.17411557,-0.18617389,-0.42447954,0.10402435,0.7898225,0.30750683,0.12664284,-0.05883584,-0.14625672,-0.16834475,-0.12956344,0.23894444,0.4596577,0.7906087,0.0061290157,0.15420976,0.25557736,-0.078796215,0.05146479,-0.06734489,-0.35196057,-0.10612958,0.07804935,0.5523264,0.6306724,-0.3128466,0.35698658,-0.1293204,0.13216719,-0.1512653,-0.5991841,0.53097373,0.76091653,-0.13238117,-0.25279337,0.6076278,0.34036097,-0.44321275,0.41013977,-0.62009335,-0.071375124,0.62794393,-0.15654577,-0.40350288,-0.0018026318,-0.30659622,0.038487177,-1.022072,0.23915216,0.03609424,-0.65652466,-0.3527362,-0.1883925,-3.7811298,0.11953562,-0.23538277,-0.1696126,0.0319455,-0.01782794,0.23346128,-0.6082255,-0.6054278,0.1165599,0.08887141,0.51978457,-0.042200472,-0.0011393683,-0.33993337,-0.18839471,-0.30819255,0.18154733,0.059261013,0.26653537,0.03834973,-0.5013278,-0.069555,-0.2138522,-0.5913413,0.06680252,-0.53064024,-0.53379315,-0.17229082,-0.55110526,-0.34597677,0.74547905,-0.27445933,0.008235001,-0.22508056,-0.026178796,-0.2425711,0.4240764,0.08777833,0.295626,0.15694587,0.03845402,-0.08238479,-0.28734276,0.1120847,0.08051622,0.42266068,0.26060146,-0.24503542,0.25913033,0.61869633,0.8617899,0.023789834,0.6385249,0.47332922,-0.1608169,0.33015186,-0.30016342,-0.107256316,-0.70143825,-0.5273551,-0.4246929,-0.465875,-0.6075757,-0.06290507,-0.4675366,-0.9292541,0.39969474,0.04915489,0.20335445,-0.13185456,0.12970212,0.36393458,-0.10861229,0.011648844,-0.28313985,-0.2611057,-0.5057091,-0.3242759,-0.7199961,-0.6516067,0.43120602,1.1258029,-0.214404,0.041614454,0.011769573,-0.4113563,0.111550435,0.31089756,0.1759751,0.21793953,0.24157695,-0.2609166,-0.63870966,0.34650794,-0.010798867,-0.12610961,-0.74650985,-0.0058267456,0.7126433,-0.50328904,0.80353206,0.17054093,0.1392778,0.041092794,-0.5261386,-0.35605142,-0.024512377,-0.20565185,0.6776115,0.15612097,-0.70879775,0.35161087,0.22076964,-0.18350782,-0.5638118,0.5173193,-0.040223267,0.005036838,0.024541596,0.41540733,-0.028200379,-0.23233445,-0.048692457,0.34239325,-0.36176056,0.31186396,0.36336905,-0.03347344,0.46299165,-0.05771276,-0.20444049,-0.8206342,-0.18048629,-0.6381011,-0.20446798,0.07083206,0.12231321,0.22169839,0.12750043,-0.005314908,0.36793914,-0.29020357,0.10391965,0.103474006,-0.37846962,0.27274626,0.49245235,0.24092536,-0.41363123,0.488929,0.10859758,0.07446939,-0.15692835,0.18364178,0.50531834,0.27439088,0.41237083,-0.09976093,-0.17290553,0.100838915,0.65789896,0.27117503,0.30615616,0.2171201,-0.21083197,0.2735408,0.17893519,0.1023044,-0.10040104,-0.22667618,0.07595407,0.05792495,0.2788627,0.37249523,0.13417219,0.40105605,-0.21346307,-0.16689661,0.31166178,-0.022638354,-0.046143413,-1.2048464,0.3627147,0.31114197,0.7394987,0.57052326,0.0017330945,-0.08082856,0.47306594,-0.30014852,0.11965049,0.4653868,-0.08829826,-0.38997263,0.56836355,-0.54633194,0.56922245,-0.04394003,-0.023618864,0.13847063,0.20895155,0.3850295,0.7776225,-0.03373551,0.037743628,0.06275862,-0.19246884,0.076979004,-0.2929528,0.06653705,-0.5705108,-0.21765624,0.7648438,0.48205763,0.23900561,-0.20466425,-0.105602525,0.09206324,-0.14673994,0.0934075,-0.022685427,0.033356942,-0.053565234,-0.6376956,-0.3691546,0.4438848,-0.04824261,-0.052592296,0.16565159,-0.25800353,0.20185065,-0.18344077,-0.03380388,0.009109105,-0.6533691,-0.021852417,-0.20057131,-0.4489272,0.53220636,-0.34981677,0.26952437,0.09564626,0.079957716,-0.35722968,0.288531,-0.056034803,0.75608927,-0.030585472,-0.24289405,-0.2634893,0.08189563,0.33446518,-0.27172628,0.07102649,-0.4042449,0.06229506,-0.60633355,0.4966183,-0.020480508,-0.21836136,-0.034153167,-0.023089895,0.10898749,0.3034168,-0.3257311,-0.28816685,0.048134234,-0.009344356,-0.3025376,-0.22718313,-0.29722622,0.33279538,0.021128224,-0.010453292,0.0563835,-0.1167117,-0.016125577,0.29617754,0.09207344,0.20677996,0.30731192,-0.18189916,-0.40792313,0.054896094,0.19522552,0.20509063,0.15262404,-0.0850013,-0.18988666,-0.24899125,-0.2162483,0.20942256,-0.22744863,0.2778041,-0.042836897,-0.24965374,0.752494,0.113792494,1.3630698,0.027996982,-0.25705582,0.10203589,0.4660011,0.13004385,0.11243171,-0.23105018,0.883756,0.65430075,-0.09895071,-0.41954806,-0.49894142,-0.19910853,0.17451246,-0.247798,-0.3360319,-0.0095307855,-0.8440084,-0.24344008,0.17913465,0.07896496,0.3186062,0.017249892,0.04680603,0.04791048,0.080234446,0.31931338,-0.5381643,-0.0871356,0.18286106,0.35018516,0.07271552,0.19866845,-0.2643171,0.37786254,-0.65338266,0.29954076,-0.27086878,0.08552784,-0.21321963,-0.35516262,0.15793903,0.1850081,0.2406731,-0.22843811,-0.2594118,-0.30073974,0.7646495,0.1034557,0.26800677,0.6868804,-0.32221797,-0.089595675,0.2023095,0.33103684,1.2848145,-0.025374407,-0.044995356,0.46933815,-0.2788574,-0.6733106,0.15639833,-0.37532046,0.27222678,-0.09604178,-0.38739708,-0.45647255,0.19986346,0.078371525,-0.14122818,0.22471479,-0.47855443,-0.23259282,0.33080107,-0.30094284,-0.23569718,-0.2818063,0.2047662,0.64272964,-0.43791717,-0.29258204,0.12930365,0.20033345,-0.35184526,-0.49805704,0.10359385,-0.3934265,0.35772747,0.081224255,-0.5331527,-0.003388226,0.18186624,-0.3359682,0.14484224,0.5911918,-0.41203886,0.060434777,-0.26226038,-0.35016817,1.120888,-0.0029927704,0.31899193,-0.60717857,-0.40212324,-0.99476975,-0.50541127,0.3366396,0.1301654,-0.1725376,-0.6201709,0.08214407,0.07824906,0.03960812,0.087932505,-0.48612633,0.40904394,0.16540833,0.3302903,-0.036407556,-0.97198296,-0.10157789,0.25599238,-0.20569839,-0.5928052,0.6339942,-0.14509365,0.8437454,0.116139196,0.22579537,0.19854379,-0.6022374,0.22179005,-0.48882487,-0.09792396,-0.52616847,-0.035878457 -107,-0.057643574,-0.14572653,-0.5093993,-0.049719196,-0.12182089,-0.089450344,-0.16710655,0.6396051,0.15733443,-0.4013616,1.4197826e-05,-0.27596885,-0.057852495,0.4131361,-0.15312397,-0.55610335,-0.20730166,0.29222026,-0.67414033,0.6197014,-0.44499937,0.056441866,0.020185411,0.33113942,0.1079584,0.14507933,-0.018458176,-0.028499853,-0.034910988,-0.1358054,7.7039e-06,0.1789721,-0.3103157,0.33221954,-0.033104487,-0.19032745,0.11086748,-0.39052638,-0.2700223,-0.5947369,0.16268459,-0.6213505,0.3625927,-0.07596738,-0.24102196,0.3427735,0.2355767,0.3883009,-0.21070966,-0.23422937,0.157758,-0.14125004,-0.4475495,-0.15005007,-0.4766596,-0.20711012,-0.56371564,0.009120503,-0.25736117,-0.05284409,-0.2325711,0.01672158,-0.29416677,0.036364336,-0.17955033,0.47729865,-0.32918444,0.15519246,0.16924444,-0.03784241,0.19173504,-0.65033346,0.012323132,-0.06344406,0.1559407,0.024066176,-0.26809937,0.2290822,0.22629225,0.38187099,-0.21117035,-0.03711771,-0.31472445,-0.32809857,0.019704778,0.477475,-0.04982657,-0.21087256,-0.15159905,-0.0061827423,-0.021915877,0.29421467,0.037253365,-0.39412802,-0.11638343,-0.18061168,-0.44494948,0.20612581,0.38761362,-0.20786002,-0.19747679,0.43989453,0.46522897,0.316341,-0.2736512,-0.14001384,-0.13464376,-0.568175,-0.12122922,0.18876357,-0.048133366,0.4884015,-0.10940441,0.16943443,0.40969285,0.053057086,-0.20532684,-0.08670403,-0.006189823,-0.163589,-0.34842706,-0.24871282,0.29123813,-0.38608474,0.16569564,-0.19669934,0.6501695,-0.09270587,-0.89720803,0.47403616,-0.5427619,0.18596247,-0.12890945,0.575976,0.63263404,0.53105766,0.310085,0.59404886,-0.28068474,0.13783808,-0.19269472,-0.28027806,0.088778615,0.108247295,0.20425399,-0.49245915,0.12850389,0.022716511,-0.1311135,0.059493005,0.29115278,-0.423671,-0.06850915,0.16515201,0.6496364,-0.31542316,-0.21145408,0.6105476,1.1128975,0.92813474,0.1294422,1.154574,0.1913596,-0.19726875,0.23397365,-0.21284619,-0.886216,0.13527408,0.24785414,-0.06597738,0.17005248,0.07162662,-0.040487837,0.42410856,-0.055775743,-0.09625568,-0.205066,0.2707992,0.034476656,0.07227577,-0.25765845,-0.4356695,0.0703045,-0.092581786,0.008646563,0.24300185,0.022554198,0.5077868,0.2013968,1.8062146,0.12864749,0.15572992,0.10518954,0.35125235,0.05674506,-0.11298349,-0.21430998,0.3488149,0.22515912,-0.001112485,-0.6528581,0.30733237,-0.09229998,-0.4338583,0.01777244,-0.34573707,0.0001329422,-0.27394456,-0.23003808,-0.2031457,-0.15623829,-0.43554682,0.46655124,-3.0930042,-0.015862262,-0.15792878,0.13755754,-0.25783998,-0.32206798,-0.07493782,-0.39807016,0.56707406,0.30510268,0.51079744,-0.4355051,0.31672066,0.3862753,-0.6722298,-0.13625653,-0.71959245,-0.0810117,0.05153046,0.29097003,-0.21084051,0.049394194,0.059297703,-0.0707074,0.21706727,-0.07521121,0.1328656,0.47437105,0.406602,0.045693982,0.5700158,-0.24709396,0.56106126,-0.29985946,-0.096876815,0.026343185,-0.2700783,0.34038797,-0.15614207,0.12752469,0.49309254,-0.477777,-0.6681889,-0.24213147,-0.26989576,1.345795,-0.49072805,-0.3270964,0.18347085,-0.25007173,-0.13774915,-0.21372876,0.44241184,-0.09356271,-0.4331972,-0.6779567,-0.023810893,-0.12106244,0.4784673,-0.08903398,-0.0027795925,-0.41227865,0.3852211,-3.582239e-05,0.55562294,0.5311851,-0.018628165,-0.39131436,-0.28144288,0.034073494,0.5391923,0.1977685,0.031665664,-0.21949601,-0.2508625,-0.36546943,0.014067614,0.12749064,0.43556795,0.46972194,-0.112951174,0.10056245,0.36069608,-0.35016093,0.024741769,-0.25079814,-0.33310464,-0.2525611,0.055256654,0.5411304,0.5688709,0.07085474,0.50433457,0.04392054,0.06637393,-0.21546099,-0.43292752,0.43805447,0.6490086,-0.1741643,-0.23750606,0.48185506,0.5764376,-0.3419125,0.37440398,-0.28032503,-0.12126267,0.60752285,-0.0466618,-0.34768683,0.2423242,-0.24227984,-0.07674181,-0.9994227,-0.09932648,-0.3987903,-0.49235764,-0.81155455,0.14530769,-3.0894744,0.16212094,-0.09571217,-0.31198207,-0.06789838,-0.20784657,0.064895876,-0.25712922,-0.6134282,0.18233833,0.32043973,0.44048738,-0.07237951,-0.12070416,-0.32081473,-0.15744145,-0.24439505,0.09327314,0.038808726,0.31415746,-0.14620826,-0.52538127,-0.060812376,-0.32603726,-0.3290607,0.10357511,-0.52706313,-0.0643159,-0.05384345,-0.7472651,-0.33256105,0.67873836,-0.44170156,-0.056324005,-0.17661777,-0.057749342,0.07307421,0.3227609,-0.12140568,0.1390079,0.09135196,-0.06302108,-0.17992647,-0.31660473,-0.05539902,0.058978647,0.24122521,0.34592193,0.049457036,0.19131418,0.49271423,0.7764927,0.1338487,0.92803085,0.4961875,-0.016524086,0.2921667,-0.32315856,0.17957063,-0.41460043,-0.07809968,-0.23458739,-0.3504251,-0.50712746,-0.07214701,-0.13587224,-0.6050803,0.5902667,0.34384274,-0.15164483,0.07646404,0.35407037,0.40949672,-0.04806315,0.25046176,-0.17433447,-0.20294006,-0.43869275,-0.36229572,-0.7096838,-0.2965181,0.16941252,0.87210286,-0.11959922,0.024668526,-0.07208059,-0.42187533,0.013216895,0.29543865,-0.03730632,0.4803222,0.19574182,-0.007025468,-0.50081915,0.46611285,0.06724333,0.0004511714,-0.55664265,0.3275481,0.6735729,-0.61264735,0.45820504,0.22090557,-0.08045815,-0.329933,-0.56322914,-0.24864988,0.03105005,-0.32331356,0.08903344,0.3144675,-0.87562275,0.4872489,0.34076336,0.0516964,-0.835063,0.4248499,-0.07322421,-0.22171903,-0.09140491,0.23689508,0.19621836,0.3155659,-0.30731243,0.15897247,-0.43331632,-0.021729821,0.09224311,-0.0037107854,0.23534803,-0.13999665,0.058096677,-0.7197243,0.17595978,-0.4452904,-0.23188761,0.5576123,0.10266845,0.30350488,0.01857093,0.07573342,0.26643604,-0.1394163,0.047772247,-0.18196781,-0.16022769,0.17803039,0.46972913,0.15402749,-0.568231,0.52953184,0.021488875,0.17929156,-0.018376421,0.009045154,0.3197158,0.14925571,0.26591113,0.07381539,-0.3734564,0.1510106,0.7082902,0.27561018,0.20938906,-0.024837326,0.11705755,0.44287968,-0.14438766,0.11310425,-0.0062072515,-0.47000456,0.0625384,-0.07511707,0.18714404,0.48984447,0.20009927,0.46196723,-0.13404766,-0.21193019,-0.009613737,0.122347966,0.09421384,-0.5774235,0.5723348,0.2484645,0.63042897,0.824567,0.021717776,0.17957693,0.7330984,-0.29418334,0.24694915,0.43779677,0.0051194774,-0.40787244,0.56934226,-0.65346175,0.53335226,0.030923147,0.0052220374,0.17052576,0.11364822,0.4917553,0.8509058,-0.23460951,0.030178586,0.05661596,-0.20119724,0.10382652,-0.24413309,-0.14070782,-0.41240102,-0.38679606,0.3787589,0.25328678,0.52522826,-0.1858562,-0.040664293,0.27138487,-0.045309365,0.29489484,0.072329275,-0.06414938,-0.1291739,-0.56471014,-0.26447767,0.627914,-0.16357227,0.2515487,0.13168655,-0.25872356,0.37015945,-0.060356498,-0.16250472,-0.03650926,-0.55623037,0.08319604,-0.12532079,-0.4803768,0.5938398,-0.22972047,0.31957585,0.15264894,0.07979337,-0.2844521,0.24351844,-0.01318118,0.8552367,-0.06289092,-0.18457665,-0.042316973,-0.04942907,0.13311553,-0.22004882,-0.15961617,-0.23526478,-0.07576808,-0.60078937,0.3580827,-0.15917686,-0.5155867,-0.04993845,-0.01032604,0.01718797,0.509589,-0.036866236,0.04137537,-0.2991208,-0.30211353,-0.19198695,-0.355606,-0.2462605,0.24398908,-0.11690603,0.18046588,-0.080416076,0.10695364,-0.091357365,0.53620183,-0.047391247,0.13236111,0.18545654,0.27978313,-0.3076908,-0.04856112,0.05172509,0.44412294,-0.080226175,-0.25021368,-0.05668353,0.010189056,-0.31329685,0.32465628,-0.10036502,0.5098152,0.029873382,-0.55338866,0.5998225,-0.1053348,0.934955,-0.12443503,-0.31008682,0.115441106,0.4254536,0.11262522,0.0075028725,-0.2663937,0.7433104,0.47007793,0.03577592,-0.18535869,-0.5824227,-0.16290793,0.19718897,-0.14285721,-0.27240798,-0.024975155,-0.44226646,-0.19725488,0.11325435,0.10092111,0.25880003,-0.14332704,0.010156041,0.1880336,0.20359762,0.40044928,-0.23409677,0.08421454,0.24107626,0.095430955,-0.024835372,0.1478927,-0.30996478,0.31373808,-0.6083746,0.3378294,-0.26947,0.106228724,-0.24654898,0.010363236,0.13077667,-0.1353205,0.22977784,-0.022417564,-0.3228099,-0.13952416,0.5213243,0.2493395,0.34207356,0.8404068,-0.2552616,0.12350045,0.044237174,0.48635578,0.8683051,-0.23983559,-0.31835654,0.25821725,-0.2852236,-0.5845829,0.20931287,-0.20642844,0.15116401,0.1520308,0.059509255,-0.39339906,0.10853281,0.2400283,0.015374494,-0.038924582,-0.46369654,-0.119855024,0.12545554,-0.38396916,-0.17263556,-0.46227694,-0.090502664,0.7574888,-0.28170627,-0.23264518,0.03911394,-0.086851284,-0.16168785,-0.44649523,0.106375694,-0.48233977,0.23654544,0.14860499,-0.49185172,-0.025361145,0.14149782,-0.5225344,0.055669308,-0.011841434,-0.20153275,-0.006339559,-0.3109024,-0.07103564,1.0641999,-0.2800628,0.18968563,-0.3302789,-0.6073303,-0.5929407,-0.20932141,0.30342156,-0.14308223,0.068244025,-0.50373447,0.009127599,-0.16192286,-0.38617495,-0.050798703,-0.34559268,0.43290004,0.051762115,0.093869,-0.117568806,-0.94620883,0.31663764,0.032006845,0.026716199,-0.35827738,0.58509696,-0.20961697,0.90100944,0.095926754,0.10972508,0.20886955,-0.4555261,0.13535371,-0.2119761,-0.30216998,-0.47746617,0.047940344 -108,0.22198999,0.1331043,-0.71064585,-0.19986522,-0.3244717,-0.093843795,-0.23143847,0.24392259,0.43887773,-0.16785808,-0.018061355,-0.053945333,-0.02068618,0.5487176,-0.12362116,-0.8443852,0.1801939,0.04904375,-0.62727326,0.2822285,-0.5889118,0.23640855,0.02366738,0.6123751,-0.10116038,0.30775157,0.3888336,-0.14000185,0.017260134,-0.1782999,0.092991866,0.3235668,-0.57793576,0.11142626,-0.06734515,-0.35857114,0.114391565,-0.37901533,-0.24164887,-0.6249055,0.35875142,-0.79607993,0.4368851,0.16206203,-0.33888683,-0.15653192,0.09640991,0.23744702,-0.2719341,0.062391132,0.31356338,-0.26698112,-0.03690252,-0.10249222,-0.19848005,-0.48981404,-0.565178,0.020490298,-0.641455,-0.30728102,-0.2997947,0.20384435,-0.25676537,-0.03836943,-0.23415639,0.46153107,-0.4421365,-0.06652128,0.19730179,-0.478309,0.14611839,-0.3479723,-0.16154419,-0.106597036,0.36149332,-0.04210642,-0.089762986,0.16252027,0.24178748,0.4443995,0.01569887,-0.10652373,-0.3412812,-0.11067607,-0.03259769,0.43961048,-0.21137142,-0.41079676,-0.17272931,-0.18068086,-0.01588644,0.17662847,-0.033481713,-0.35268125,0.028981103,0.079311214,-0.14307533,0.36138132,0.39775404,-0.3992778,-0.07416546,0.29398748,0.3036424,0.2069964,-0.27744678,0.18328737,0.033611123,-0.6347149,-0.29050842,-0.051524222,-0.032018792,0.5954397,-0.10700205,0.3277963,0.83503026,0.003464505,-0.0659796,-0.14180048,-0.19678752,-0.009400685,-0.14768386,-0.017066339,0.2515204,-0.36185372,0.12404955,-0.14968741,0.6716332,-0.010316301,-0.9787864,0.47612062,-0.5177093,0.031221414,-0.22619854,0.6583271,0.8074487,0.2679188,0.18774252,0.8478722,-0.6037186,-0.00022094448,0.13667175,-0.49014792,0.24236678,-0.0042303675,0.21729095,-0.46490037,-0.05873844,0.2224989,0.19989131,0.26423553,0.32222733,-0.41050902,-0.01115188,0.1603507,0.74984246,-0.33865035,-0.10016122,0.6951148,1.295166,0.8885687,0.10529927,1.3430414,0.25621364,-0.08694764,0.15722178,-0.16603445,-0.68340784,0.12751178,0.35148546,0.09511467,0.19608164,0.15295321,0.21947749,0.6010999,-0.29387867,-0.061158746,0.06357653,0.19131303,0.036817554,-0.14889936,-0.31193188,-0.26595604,0.13298279,0.13258465,-0.043964952,0.2805033,-0.23796403,0.35619387,-0.052482035,1.1553966,0.14651929,0.25271073,-0.032260075,0.57702106,0.14252637,-0.1578979,-0.17984642,0.20211013,0.24404104,0.097261526,-0.47459558,0.04501097,-0.30023655,-0.52451724,-0.21325032,-0.40053225,-0.12434306,-0.11401232,-0.3832337,-0.044958267,0.07387953,-0.33877632,0.41462365,-2.7213514,-0.08498206,-0.2336964,0.27275842,0.046648305,-0.19785576,-0.27545294,-0.42083773,0.42292118,0.522232,0.5338821,-0.56068224,0.5872562,0.4120132,-0.35074496,-0.15623875,-0.6402457,0.17246628,-0.15435886,0.33226848,-0.018967325,-0.20133509,-0.19552676,0.3211631,0.73675257,0.1390096,-0.07809934,0.025617758,0.45003697,0.030610358,0.5424934,-0.016689314,0.6171773,-0.28171965,-0.29153714,0.21222818,-0.5175327,0.2752402,-0.027711416,0.16191171,0.2854738,-0.4907011,-1.1363955,-0.6501985,-0.18525362,1.0976573,-0.25886583,-0.3828528,0.48129177,-0.07166157,-0.39969516,0.21159346,0.76974636,-0.22535898,0.12308162,-0.7030409,0.09457705,-0.21317284,0.282342,0.023175457,0.034135524,-0.54856104,0.6709697,-0.06267103,0.4776369,0.2794578,0.042107623,-0.29278687,-0.34860516,0.11547619,0.8533643,0.22073574,0.12401593,0.026880877,-0.15987268,-0.1103962,-0.14202374,0.09231931,0.77924806,0.57514834,0.0337368,0.1270586,0.2981056,-0.16125537,-0.043014903,-0.035387173,-0.36939248,0.06494188,0.18179683,0.5834906,0.7886202,-0.25327322,0.10344193,-0.021256393,0.42557654,-0.25874892,-0.41005075,0.41989803,0.44996798,-0.06540575,-0.20495151,0.6888642,0.64135695,-0.3907971,0.42288312,-0.57740474,-0.47927165,0.42284238,0.030003456,-0.4980477,0.010197431,-0.37657154,0.13033411,-0.8722432,0.33096594,-0.13725983,-0.8473738,-0.43232766,-0.22984733,-4.913692,0.1613619,-0.23269315,-0.046938103,-0.153917,-0.021080235,0.41409674,-0.5931079,-0.49605265,-0.14293645,-0.031851497,0.51267797,-0.15115233,0.1259108,-0.3135564,-0.27283478,-0.07648563,0.34788778,0.075362444,0.32189372,0.1463091,-0.2792867,0.086115815,-0.30500737,-0.37627158,-0.06133966,-0.58081955,-0.4742054,-0.109381825,-0.60985035,-0.2425213,0.7234359,-0.5350271,-0.03599085,-0.4240373,-0.031370018,-0.34498668,0.44150135,0.27597198,0.16976069,0.049051832,0.1709454,-0.36654794,-0.32894877,0.22451834,-0.01784155,0.39996347,0.387179,-0.0021356146,0.08519975,0.5656842,0.5674188,-0.018545775,0.88953835,0.19443786,-0.056548174,0.22897951,-0.37906012,-0.38810313,-0.80397016,-0.45146275,-0.17539017,-0.46008933,-0.4483557,-0.21408756,-0.37408677,-0.66872996,0.56189895,0.08467195,0.01872144,-0.02849706,0.13891353,0.22551262,-0.09790037,0.0103490455,0.018617189,-0.1387975,-0.55006295,-0.2184763,-0.657432,-0.64091754,0.011884277,0.9816368,-0.21107398,-0.0724652,0.21997339,-0.2751607,0.069785625,0.18756421,0.33826885,0.24340932,0.3630166,-0.18298133,-0.7566475,0.47336772,-0.5130641,0.000531435,-0.70334774,-0.04270635,0.7586367,-0.7757074,0.76041055,0.46944645,0.4029759,0.2577814,-0.47386804,-0.5294404,0.034369946,-0.183924,0.54101455,0.27969655,-0.84362286,0.48091507,0.07461777,-0.13733564,-0.648722,0.5592281,-0.21384211,-0.2745972,0.1886371,0.3910551,-0.030192515,-0.11731791,0.028382765,0.17764366,-0.36150396,0.30420318,0.2467047,0.07251448,0.6977325,-0.17119491,-0.081005,-0.5921323,-0.2621274,-0.50759536,-0.19584435,0.034974802,0.09581896,0.08841723,0.21613128,-0.13019376,0.3775407,-0.31577647,0.19068082,-0.11687064,-0.28160217,0.29952148,0.63746405,0.37515488,-0.51452,0.67845774,0.108435206,0.062266093,-0.12290996,-0.029679677,0.47885552,-0.026961451,0.500749,-0.1254981,-0.15195554,0.10216827,0.85570645,0.14210817,0.3413038,0.080572955,-0.03823709,0.39785638,0.1314535,-0.01566425,0.028414994,-0.50272065,0.08454541,-0.12418464,0.30943438,0.35766983,0.16835858,0.31630918,-0.028523276,-0.2380216,0.26334396,0.28695294,-0.0016658654,-1.0497884,0.46716404,0.2303458,0.5943358,0.60186696,0.09572195,-0.084661216,0.7052358,-0.22980483,0.09979832,0.23871474,0.054239113,-0.5302635,0.68796223,-0.49698877,0.47441506,-0.23176412,-0.11649542,0.15986641,0.19513178,0.33545056,0.78933454,-0.103200294,0.1387895,0.120595224,-0.27990568,0.05055198,-0.24385329,0.119570345,-0.5569126,-0.23436944,0.6674064,0.62083286,0.27449223,-0.34894797,-0.10015616,0.028386744,-0.080951065,-0.0014982609,-0.28350973,-0.062402517,-0.04725338,-0.859232,-0.18028508,0.6195919,0.060145896,0.050265487,0.17431748,-0.47254565,0.4139872,-0.088758916,-0.07349654,-0.07014594,-0.39264885,0.084934436,-0.22437797,-0.6383075,0.40279448,-0.3720849,0.4812338,0.07906123,0.09763739,-0.2647541,0.3620795,0.046340335,0.73473674,0.053901877,-0.09180113,-0.14401327,-0.020766186,0.26564565,-0.31334853,-0.3945888,-0.7065294,0.09199204,-0.44197264,0.3030764,-0.23238565,-0.30865398,-0.24349213,-0.030965209,0.17174608,0.43906534,-0.17267644,-0.25219384,0.22979093,0.091854185,-0.21016377,-0.057388466,-0.5692249,0.27262637,-0.06177536,-0.024273952,-0.08557073,-0.12328415,-0.11347085,0.30537495,0.02587212,0.27127874,0.30639967,0.11525515,-0.13487546,-0.032801375,-0.057385493,0.46652138,0.16746227,-0.02444761,-0.23026137,-0.45969343,-0.2848187,0.2800712,0.010242981,0.1552567,0.2931701,-0.33358097,0.49825454,0.23867173,1.211738,0.15612702,-0.26220277,0.20261829,0.46813384,0.06061773,0.1489343,-0.3394438,1.0340654,0.5524366,-0.3755816,-0.15610792,-0.520701,-0.1336836,0.07374623,-0.24721587,-0.31569687,-0.18949296,-0.7613246,0.030841598,-0.0039394945,0.3018346,0.22753008,-0.044585675,0.066306494,0.015530583,0.26811936,0.27622014,-0.52896005,-0.2323658,0.5346517,0.3381996,-0.08415983,0.10511515,-0.3017952,0.4874947,-0.63227636,0.06015609,-0.67735934,0.088929325,-0.3403362,-0.37809896,0.06619048,0.06931731,0.3976287,-0.069168635,-0.21144438,-0.21792667,0.672887,0.37000212,0.32449993,0.8142519,-0.18486111,-0.23010123,-0.048800096,0.63768065,1.2565732,-0.17089492,-0.0053198137,0.31995222,-0.15776812,-0.5777314,-0.10605439,-0.5712618,-0.15324445,-0.08764622,-0.38053593,-0.34391677,0.27542362,-0.04578659,-0.17247014,0.0551216,-0.38574418,-0.12908046,0.40347973,-0.13434958,-0.3510168,-0.37781525,0.31560373,0.7303762,-0.3986586,-0.25574967,0.016854504,0.32553706,-0.21673845,-0.60938054,0.0628618,-0.097917,0.4126192,0.2140146,-0.54233986,-0.12455621,0.3537589,-0.47418404,0.2942362,0.3099493,-0.32473293,0.08844178,-0.37392965,-0.06909549,1.1663948,0.094998725,0.26302978,-0.58983034,-0.5712233,-0.96125156,-0.24678652,0.22351192,0.13243456,-0.09870259,-0.39872375,-0.1620097,-0.10758793,0.009445767,0.073841095,-0.47435078,0.29509258,-0.017059509,0.68764836,-0.064745076,-1.019073,-0.06721467,0.14810199,-0.1941074,-0.5462622,0.51500887,-0.18667643,0.7994408,0.027260462,0.048018243,0.27996546,-0.490285,0.32662043,-0.3284137,-0.09842336,-0.65987873,0.16296066 -109,0.51340634,0.031369865,-0.5147417,-0.25399318,-0.3918769,0.08303189,-0.19596274,0.18219104,0.37742522,-0.18401237,-0.10019727,-0.12723036,0.06862428,0.29400274,-0.02837506,-0.77104694,0.02108325,0.1910463,-0.83721346,0.53779966,-0.5094853,0.35391837,0.050993014,0.55727285,0.1136626,0.28402758,0.014576538,0.019846804,-0.016429394,0.1155504,-0.07038914,0.5134722,-0.75132096,0.14611636,-0.07905078,-0.23574258,-0.23273124,-0.42945454,-0.2593819,-0.64281243,0.36324698,-0.8087671,0.57917076,0.031437088,-0.48024434,0.0620091,0.09783078,0.26515877,-0.39091188,0.059706815,0.1784555,-0.41808736,-0.03301411,-0.12991062,-0.25346768,-0.4466482,-0.6723703,0.03699386,-0.63057935,-0.12558696,-0.2823295,0.26521674,-0.30156252,0.035371773,-0.31262907,0.40550676,-0.3224947,0.10769741,0.3621149,-0.22630456,0.06804845,-0.22256981,-0.12277262,-0.11895889,0.3483163,0.007965915,-0.45387644,0.20829585,0.26550537,0.65399224,0.13806042,-0.41101748,-0.26504982,-0.025078647,-0.08384848,0.40301916,-0.07090813,-0.17430624,-0.33772177,-0.09599739,0.16929366,0.33808678,0.090156816,-0.37197307,-0.050650224,0.09314075,-0.024051026,0.48135564,0.50020283,-0.31876814,-0.28971153,0.29123914,0.49114874,0.12187341,-0.32406744,0.13295656,0.03321054,-0.65260386,-0.20883562,0.19519505,0.04659693,0.52018785,-0.11657895,0.07911427,0.8063543,-0.05847439,-0.21093361,-0.23002917,-0.17478545,0.053375002,-0.40419763,-0.04347888,0.2953852,-0.36237103,0.095844895,-0.16314715,0.53454375,0.102091715,-0.7790461,0.3144975,-0.57738197,0.27738053,-0.09456185,0.6313972,1.056843,0.35333484,0.33755904,0.85047275,-0.47123036,0.18752351,-0.0006487947,-0.40866724,0.15806088,-0.22426534,0.29564822,-0.4465145,-0.053596426,-0.01643896,-0.16835068,0.069745705,0.31196955,-0.5008515,-0.12653597,0.10236891,0.72623736,-0.3750512,-0.13397673,0.9616392,0.95919955,0.92355835,0.08523014,1.2886094,0.43333134,-0.15498886,0.16078536,-0.26090083,-0.68535,0.09190629,0.24753365,0.10346574,0.37313226,0.12398621,0.20887984,0.4921211,-0.29227078,-0.010818023,0.066470474,0.123163395,0.03749114,0.010166146,-0.456048,-0.07405749,0.091537654,0.15239286,0.062059708,0.26921612,-0.060329616,0.4072827,0.02632337,1.6261849,0.13022283,0.09439023,0.021213196,0.34279883,0.3047279,-0.2577554,-0.16021512,0.36932275,0.40680656,-0.009443298,-0.4779479,0.033761993,-0.2110498,-0.26923132,-0.21356913,-0.4592834,0.014659379,-0.29133946,-0.5459257,-0.19477817,-0.002026111,-0.3531142,0.476175,-2.6327672,-0.26238492,-0.064465016,0.36896044,-0.05156164,-0.333857,-0.3615405,-0.52054334,0.207239,0.3748628,0.3031629,-0.69086796,0.40370154,0.25731426,-0.40241438,-0.089303695,-0.7164858,-0.023573719,-0.07747762,0.36545852,-0.107651934,-0.01592394,-0.06875802,0.42058614,0.6543965,0.033883095,0.0093279965,0.23504975,0.5115883,-0.13228859,0.64297205,0.17072675,0.5045201,-0.11859402,-0.22239202,0.32005784,-0.33350086,0.3612552,0.070489325,0.04989611,0.47452587,-0.4186504,-0.8062243,-0.54070675,-0.17491199,0.9451275,-0.45310023,-0.31265602,0.3166775,-0.44721216,-0.24276768,0.044989213,0.5953323,-0.047417194,0.099470034,-0.75298125,0.014448099,-0.08744468,0.23757437,-0.1200605,0.1723148,-0.32184094,0.69466037,-0.24979657,0.4178819,0.2693743,0.10465735,-0.19589056,-0.47448075,0.29773527,0.7993429,0.30901328,0.10978073,-0.18261315,-0.31790066,-0.1408586,-0.15638518,0.14290129,0.6865788,0.58411473,-0.10297472,0.22155628,0.44392517,-0.18098678,-0.03158091,-0.12729265,-0.22130021,-0.037129622,-0.017585078,0.48668495,0.86040115,-0.17241892,0.40431923,-0.07359396,0.31210244,0.008390484,-0.6245127,0.5639414,1.0001829,-0.17041321,-0.15606847,0.53116953,0.32038736,-0.38414446,0.4144078,-0.52021766,-0.10103938,0.6481327,-0.031525478,-0.39725584,0.23911913,-0.43711585,0.04769954,-0.88069934,0.22617757,0.1186154,-0.46296695,-0.42526844,-0.13187799,-3.861787,0.2016082,-0.19873908,-0.076108746,-0.12503374,-0.26597482,0.31677765,-0.578423,-0.5704962,-0.00017171912,-0.0030567031,0.5021751,-0.22769287,0.0897446,-0.33997083,-0.2676564,-0.20378646,0.27087903,0.20596676,0.42856807,-0.10487938,-0.40511775,0.015897233,-0.24327189,-0.5396502,-0.06049222,-0.5798881,-0.56455654,-0.11890492,-0.4492307,-0.23243067,0.7119305,-0.26333433,-0.028259218,-0.43728638,-0.13236982,-0.09422109,0.29539618,0.29064816,0.3305925,0.18488991,0.1888181,-0.17844243,-0.2742392,0.14833724,-0.066669375,0.22054276,0.30201274,0.0047008665,0.29303306,0.3862119,0.685496,-0.230182,0.79167527,0.44784352,0.01527093,0.28551975,-0.26039904,-0.25204456,-0.83642876,-0.28588563,-0.29196715,-0.54942584,-0.37052757,-0.15674931,-0.36135685,-0.8320081,0.4906324,0.075565666,0.20744602,-0.09079054,0.3083021,0.4532878,-0.23525907,-0.027554594,-0.058600314,-0.32684872,-0.6034306,-0.33807898,-0.550172,-0.7416791,0.2039793,0.9135535,-0.15688984,-0.041215613,0.023611443,-0.24514854,0.04977432,0.18751603,0.1658925,0.27040246,0.49051085,-0.09265822,-0.5499972,0.4849552,-0.3437974,-0.15460092,-0.69207406,0.15715544,0.5747812,-0.62479985,0.78130925,0.27910113,0.23772627,0.011460908,-0.6643705,-0.34484488,-0.07254459,-0.1931465,0.6620787,0.25758302,-0.80297816,0.48013496,0.13589337,-0.10340083,-0.6416314,0.4809453,-0.19388947,-0.2562384,0.21168096,0.31157774,-0.034747332,-0.06911216,-0.012027383,0.24868503,-0.4448393,0.1769036,0.47353175,0.023269322,0.24498801,-0.016488373,-0.105762236,-0.60001963,0.055764936,-0.6115716,-0.3469165,-0.061529204,0.022918057,0.15995559,0.09255189,-0.051165543,0.4083841,-0.30888134,0.23841754,-0.14203912,-0.26235098,0.21305408,0.58270276,0.3426337,-0.54379636,0.59844077,0.14150597,-0.001377061,-0.035538673,0.20543137,0.50979567,0.11472969,0.42627764,-0.19370633,-0.04429086,0.1739282,0.6891214,0.14567044,0.38012084,0.09173219,-0.09004854,0.32142982,0.14436954,0.22982995,-0.12701137,-0.28822416,0.023215864,-0.100167684,0.33337533,0.48089236,0.17920277,0.31512427,-0.09890257,-0.21667454,0.24045308,0.099253364,-0.041025396,-1.4343108,0.31014967,0.40086037,0.79983664,0.4436268,0.100169495,-0.097942844,0.42303115,-0.38542956,0.13715215,0.39004454,-0.010991113,-0.26360965,0.5374158,-0.62641764,0.58284086,-0.1548379,-0.062453806,0.16361274,0.30370724,0.40674567,0.8772228,-0.2255598,0.09169459,0.07513563,-0.18887398,0.113135435,-0.38346335,0.013377884,-0.51755583,-0.38394392,0.6107933,0.4264472,0.34247422,-0.49337187,-0.07830666,0.023412962,-0.119537756,-0.1454245,-0.15665174,-0.073738046,-0.039079983,-0.5691789,-0.406281,0.5429398,-0.32858717,-0.031944238,-0.012128316,-0.35058022,0.1767575,-0.066100635,-0.020747937,-0.09220142,-0.78001904,-0.107629076,-0.3527881,-0.5283892,0.6122276,-0.48544556,0.22403379,0.228564,-0.002926818,-0.3556925,0.3740126,-0.110430464,0.7690125,0.013789192,-0.037863385,-0.40533537,0.15473482,0.41785836,-0.32092947,-0.13836546,-0.448736,0.17191245,-0.51038885,0.42713726,-0.12764972,-0.4222115,-0.19088188,-0.005916615,0.1358976,0.47867146,-0.2701447,-0.26409057,0.24275103,-0.14952128,-0.17629907,-0.1292792,-0.30856737,0.3458546,-0.0056111254,-0.019991808,0.14284588,-0.016420748,-0.023580492,0.38735598,0.17926012,0.35346925,0.31916428,-0.08658856,-0.21298972,0.13900699,0.0806196,0.34156123,0.10185455,-0.12642688,-0.23114261,-0.2965026,-0.38317227,0.2975533,-0.14794055,0.27825138,0.106195435,-0.42080715,0.7511525,0.2645223,1.1773028,0.11517328,-0.41872987,0.24677595,0.39522707,0.010780525,0.15855224,-0.28498784,0.8290056,0.38460252,-0.13823009,-0.23747098,-0.27002704,-0.09646862,0.21703981,-0.26631644,-0.2293932,-0.19805282,-0.7135885,-0.11548003,0.06261515,0.22919297,0.18487582,-0.086317874,-0.09057307,0.0795405,0.08141109,0.38681376,-0.4580842,-0.032644514,0.33288756,0.2862874,-0.051335774,0.2188792,-0.23418666,0.49636653,-0.48007396,0.08694856,-0.619944,0.18587717,-0.14896145,-0.3150843,0.13069059,-0.15282613,0.27401987,-0.3246302,-0.24242221,-0.36596897,0.61801267,0.27966806,0.2620808,0.7424871,-0.27772874,-0.16064349,0.20935479,0.47344857,1.2998774,-0.25241917,-0.0152471475,0.3174434,-0.22327384,-0.55859965,0.10269724,-0.36371318,0.12859905,-0.10711075,-0.42006016,-0.28922936,0.12038779,0.020981405,-0.05151988,0.10426663,-0.5732384,-0.07174809,0.40565565,-0.20195091,-0.23112851,-0.38986176,0.3081491,0.703299,-0.3597253,-0.37752095,0.12625228,0.2340063,-0.27937555,-0.48983023,0.05357468,-0.33230364,0.36817893,0.037704293,-0.4491402,0.042704653,0.18750447,-0.46719512,0.13242567,0.44781923,-0.24695626,0.14385617,-0.22189678,-0.366124,1.2231778,-0.014380977,0.14245805,-0.5677751,-0.6288173,-0.99613285,-0.41177696,0.11442784,0.20608315,0.046306733,-0.51000154,-0.10475718,-0.005680591,-0.12177518,0.14483717,-0.49253798,0.40893146,0.115191035,0.48271492,-0.083316684,-0.99237204,-0.14093436,0.08105995,-0.31671625,-0.51503825,0.5959605,-0.0857666,0.7121539,0.13665304,0.17894235,0.1406575,-0.5963039,0.23654796,-0.28703552,-0.006518852,-0.73667324,-0.027200103 -110,0.3254008,-0.08864724,-0.45370927,-0.22267224,-0.040822204,0.113619246,-0.2233838,0.25848043,0.04372239,-0.52268046,0.17856668,-0.30619413,0.047079563,0.16408825,-0.010450216,-0.6211886,-0.021781301,0.07853089,-0.4217099,0.55866313,-0.59601474,0.18245234,0.2553,0.012008484,-0.28318936,0.27790567,0.34378067,-0.41754436,-0.16243683,-0.16955802,0.0010654847,0.013576537,-0.44179916,0.26326516,0.01536836,-0.12961191,0.27475637,-0.28777802,-0.24156919,-0.5034004,0.016665565,-0.6227681,0.2593793,0.093811244,-0.18298177,0.5442018,-0.028451996,0.059086647,-0.32785743,0.23268041,0.30949828,-0.05606358,-0.18756455,-0.2860144,-0.22363923,-0.6693995,-0.4752287,0.012128202,-0.41310012,-0.19759159,-0.16754727,0.091842294,-0.28262034,-0.036203794,-0.17716941,0.3464935,-0.3789598,-0.059051774,0.04829866,-0.2814809,0.31172848,-0.4382197,-0.01756403,-0.049957898,0.08147419,-0.01993124,-0.025805503,0.23015116,0.2447126,0.56433797,-0.045990236,-0.13163929,-0.20641035,-0.21407562,0.19104406,0.5708714,-0.17592797,-0.2879071,-0.09242327,-0.15206541,0.032685604,0.15807216,-0.15078464,-0.40497145,-0.17079973,-0.035662603,-0.4713343,0.07268823,0.46456024,-0.44621557,-0.073731296,0.44184396,0.21193293,-0.13734823,-0.12515314,-0.044875342,-0.12593275,-0.48224747,-0.073801346,0.26707545,-0.13908507,0.49321786,-0.13592686,0.18481432,0.5930402,0.019223355,0.08421775,-0.16892855,-0.101353124,0.123095036,-0.12903498,-0.13219346,0.18568334,-0.41753143,-0.1538022,-0.5005104,0.7492254,0.015229664,-1.0079987,0.45895508,-0.35268268,0.055820726,-0.13710405,0.62573737,0.55075765,0.49164113,-0.09485642,0.65656,-0.61312175,0.14641912,-0.21508284,-0.33369765,0.2676192,0.19798112,0.1418967,-0.4151804,-0.0190152,0.195755,-0.08378028,-0.15481399,0.51631206,-0.3187459,0.032766122,0.22551918,0.8132891,-0.3464857,-0.1375302,0.312838,1.015015,0.66318685,0.114173315,1.2511809,0.24576458,-0.2365109,0.08312974,-0.40001076,-0.7068607,0.13738172,0.3904587,0.7089004,-0.00403746,0.04784452,0.0068986733,0.2511042,-0.11167826,0.04074518,-0.30966637,0.21742164,-0.08501204,-0.11274357,-0.26462963,-0.26010418,0.065481916,0.036820985,-0.036741234,0.20305175,-0.0722007,0.26594034,0.009770107,1.7639561,0.004692069,0.24078181,0.14709324,0.22143364,0.23194058,0.06370536,-0.14323163,0.46237764,0.17763628,0.0045670867,-0.5326846,0.13974898,-0.076975,-0.5258915,-0.017294744,-0.27261728,0.12992376,-0.16215488,-0.35755584,-0.047174048,0.1557536,-0.47808304,0.3746157,-2.9010975,-0.11232246,-0.07503225,0.27316418,-0.34504643,-0.21915847,-0.123934455,-0.34443036,0.56118244,0.4977637,0.5295235,-0.5276206,0.32230723,0.36141637,-0.32856673,-0.08185489,-0.706425,-0.07043617,-0.1776088,0.34700906,0.028787227,-0.2402635,-0.09600724,0.06872937,0.37597263,-0.12975784,0.007938066,0.22939914,0.355734,0.3132355,0.4829704,-0.090492815,0.4114583,-0.18010888,-0.05951232,0.17041442,-0.28161913,0.21326965,-0.16578022,0.1691485,0.19979528,-0.41574365,-0.7223725,-0.40120354,-0.30884913,1.0839635,-0.425088,-0.32431895,0.31256884,0.3143126,-0.16534057,-0.019769816,0.35732853,0.04565634,-0.038911596,-0.6839033,0.037756708,0.10956605,0.37618366,0.049364574,0.0639275,-0.42260057,0.5415433,-0.021154102,0.6010429,0.50530326,0.087651186,-0.06952848,-0.2781134,0.070533484,1.0121472,0.18072456,0.06795716,-0.15823112,-0.17069921,-0.18109451,-0.03599174,0.060798433,0.2731064,0.71805155,0.003693829,-0.106525965,0.29067054,-0.21834224,-0.06491001,-0.07133394,-0.41475365,-0.062506154,0.015044719,0.5129666,0.41523492,-0.10712523,0.34192452,-0.09200491,0.35996014,-0.16534074,-0.4150651,0.4930846,0.5707716,-0.055493217,-0.07868501,0.39338773,0.54170775,-0.12371494,0.5050052,-0.43964085,-0.36960122,0.4565938,-0.1645965,-0.3767074,0.3009891,-0.36647186,0.09870554,-0.83649987,0.24027437,-0.20560694,-0.34357935,-0.68223757,-0.19290055,-3.7461517,0.08477443,-0.1846508,-0.2120126,0.14308873,0.2036005,0.28888685,-0.4965255,-0.34715107,0.14154243,0.13211872,0.37293586,0.05251611,0.03238927,-0.34035534,-0.06329301,-0.19027586,0.21797103,-0.049681004,0.11110748,0.019593898,-0.36688516,0.00059929094,-0.2997506,-0.19514342,0.1899321,-0.40911463,-0.2470769,-0.17220522,-0.4472314,-0.39394602,0.60304743,-0.44985035,-0.07475772,-0.011318179,0.10981985,-0.069287166,0.3498679,0.11929323,0.08227597,-0.11657481,-0.023517199,-0.17760251,-0.29062876,0.17583364,0.14941348,0.26854932,0.52545434,-0.0069364705,-0.08639989,0.6030361,0.3734586,0.055965822,0.6361892,0.3185902,-0.063044325,0.2640976,-0.29741192,0.08048013,-0.5548131,-0.37866166,-0.19316603,-0.33381793,-0.52738446,-0.038113903,-0.294198,-0.61170024,0.36657238,0.07045018,-0.27136832,0.087703705,0.29432604,0.25830093,-0.12479847,0.0933534,-0.15598835,-0.09822245,-0.39891848,-0.4042449,-0.76603675,-0.25729057,0.23388131,1.009113,-0.11887886,-0.19260073,-0.06458147,-0.1497949,-0.055001438,0.031787865,0.14467897,0.38407573,0.24053663,0.0748766,-0.6995237,0.5929432,-0.091563225,-0.054508153,-0.42547455,0.0830444,0.5115775,-0.6427794,0.38056132,0.41382778,0.21039674,0.04361581,-0.6049803,-0.33316162,0.16011666,-0.17893054,0.332881,-0.07651396,-0.7851283,0.56369245,0.1716585,-0.1926649,-0.6817268,0.29302117,-0.015133127,-0.29284626,0.10801172,0.2516308,0.056317296,0.14618246,-0.30185536,0.23543125,-0.6228193,0.25876835,0.2703796,-0.006371956,0.55383205,-0.14797106,-0.09379927,-0.6925518,-0.26375374,-0.37368613,-0.19714454,0.2479938,0.086946644,0.15182486,0.13619594,0.09192209,0.4163628,-0.26889068,0.13578998,-0.079652525,-0.10645345,0.42820483,0.3686412,0.26521537,-0.38190588,0.5194697,-0.18708213,0.12927642,-0.27982035,-0.023189541,0.3602994,0.29278243,0.050131038,-0.1310759,-0.20948291,0.36098063,0.82349885,0.26767528,0.26505572,0.16325574,-0.2271033,0.52800184,-0.023888005,-0.057565905,-0.04550391,-0.40587464,-0.17102545,0.0497928,0.23431195,0.29858118,0.05398543,0.49051145,-0.22886708,-0.010420748,0.12387704,0.3354643,0.21205507,-0.35462973,0.41445974,0.19750956,0.41861603,0.7597724,0.07499354,0.1190188,0.6450843,-0.37114462,0.17898317,0.19780949,-0.12120488,-0.48960128,0.46978396,-0.45862418,0.16312239,-0.106577285,0.026104778,0.110551566,-0.03952,0.3820041,0.84591806,-0.0796573,0.1187866,-0.10718904,-0.20749405,0.23854952,-0.24472739,0.06056916,-0.25775388,-0.37084204,0.60094553,0.18637675,0.25818595,-0.14475304,-0.10971388,0.24845745,-0.027064474,0.36364168,0.06256593,-0.003672115,0.06720904,-0.6253818,-0.39008054,0.64244425,0.06834696,0.08745486,0.12189037,-0.14985196,0.35307086,-0.21661608,-0.1225461,-0.13116173,-0.41444352,0.1293244,-0.21369672,-0.26629344,0.5220576,-0.19239578,0.48311552,0.04237687,0.05137586,-0.1967855,0.12885484,0.2717214,0.6394927,-0.03726946,-0.21808712,-0.17471525,-0.15753727,0.13766183,-0.2141015,-0.063158646,-0.18753828,-0.0405339,-0.87716484,0.4240238,-0.26828107,-0.19020618,0.108121954,-0.20515108,-0.014254824,0.46024564,-0.08847826,-0.032810338,-0.13351783,-0.010928352,-0.28274268,-0.17292567,-0.3087636,0.19842722,-0.15113392,0.033434074,-0.1179764,0.014948142,0.03706998,0.4762705,0.17519554,0.011437718,0.109663375,0.21740964,-0.3268434,-0.08202695,-0.0024462917,0.34352893,0.10237106,0.09163098,-0.20059963,-0.1759331,-0.24672155,-0.11767989,-0.13786754,0.25918406,0.0651377,-0.45238456,0.72243786,-0.10244837,0.97604483,0.043281615,-0.2872711,-0.019064816,0.4761617,0.088002905,0.16302581,-0.23544079,0.87359023,0.7007408,0.054102413,-0.18646862,-0.37369376,-0.1556041,0.16213721,-0.16660766,-0.22044353,-0.039763156,-0.6979687,-0.3681798,0.18744682,0.16632809,0.10878042,-0.110551,-0.03768123,-0.0013952652,0.25779104,0.26077145,-0.37864283,-0.17503525,0.27588445,0.17834829,0.1868538,0.16509885,-0.3567302,0.36968175,-0.57762605,0.15003926,-0.24144538,-0.014845666,0.09438055,-0.01413182,0.15575983,-0.047055103,0.2209163,-0.16145083,-0.4719497,-0.06061182,0.50896245,0.24754487,0.38731745,0.81855065,-0.12418081,0.0045220214,0.08607408,0.51852304,1.1787742,-0.21657269,-0.03061685,0.50982434,-0.30458677,-0.60704243,0.07986786,-0.29221788,0.11552784,-0.08317949,-0.41217008,-0.2863351,0.2281114,0.15313224,-0.20984697,0.04210667,-0.42266348,-0.14772321,0.27515224,-0.31529653,-0.25794348,-0.2446029,0.10742488,0.90546745,-0.3957802,-0.15698345,0.033881795,0.04670364,-0.45454022,-0.5619241,0.056578986,-0.39503956,0.23403342,0.41335827,-0.26027492,0.11540581,0.12610887,-0.4754074,0.20812537,0.21784891,-0.36482608,-0.032349158,-0.39203072,-0.1314523,0.8128221,0.041744456,0.007930631,-0.5640949,-0.6015827,-0.7694923,-0.33516228,0.5753182,-0.1222874,-0.060329914,-0.33801767,-0.049586535,0.00041104952,-0.08143347,-0.13251397,-0.43603817,0.40659764,0.07788013,0.343717,-0.16417271,-0.6893597,0.009758528,0.039634474,-0.16353355,-0.49013615,0.45748717,-0.17996755,0.8294674,-0.027205443,-0.03055528,0.45651606,-0.65350443,0.16156077,-0.47544098,-0.35391364,-0.47835132,-0.00321724 -111,0.34543997,-0.2941275,-0.25848177,-0.37493414,-0.45511213,0.15300587,-0.20121346,0.25331953,0.10796021,-0.5966443,0.055922713,-0.19674502,-0.10312899,0.45823255,-0.37374958,-0.7514399,-0.18572783,-0.09288828,-0.4030128,0.40749818,-0.5569787,0.2953641,0.24540867,0.16920325,0.05021274,0.32484478,0.45051762,-0.23056194,-0.23747373,-0.23713753,-0.2865359,0.11145125,-0.63370377,0.33052868,-0.14070453,-0.41350633,0.28017107,-0.60837704,-0.11023974,-0.57009995,0.24250393,-0.8360686,0.3692293,-0.04484735,-0.26391152,0.017653711,0.28981873,0.25959817,-0.2974563,0.15431929,0.23039778,-0.25416753,0.07929381,-0.11376773,-0.29978594,-0.9158119,-0.71668226,0.11375228,-0.66356224,-0.2569166,-0.21644951,0.2441801,-0.38859978,-0.017174238,-0.17941096,0.34022695,-0.5351232,-0.29712367,0.07782112,-0.19770059,0.17325084,-0.33031946,-0.24348235,-0.21404208,0.04456144,-0.1738299,-0.16182074,0.4056658,0.39915594,0.500166,0.034771085,-0.21712694,-0.20637016,-0.11516278,0.16759805,0.5293291,-0.10319621,-0.5826129,-0.22883725,-0.029533103,0.18743503,0.28205305,0.021575125,-0.32059494,0.12770626,0.21634872,-0.3556688,0.20257603,0.3502082,-0.54923826,-0.23066576,0.32202414,0.36818144,-0.105189286,-0.18008934,0.13898964,0.0890116,-0.47055933,-0.32115263,0.37978205,-0.07849182,0.57330644,-0.18602172,0.15342411,0.86038154,-0.2990632,0.20135093,-0.19244958,-0.23935744,-0.22251663,-0.17084742,-0.13706157,0.16007711,-0.52239066,0.0036578837,-0.2971818,0.94994557,0.14917043,-0.97743255,0.29680118,-0.5764321,0.088240124,-0.31477335,0.6040271,0.5451173,0.4045054,0.31339929,0.8437194,-0.471422,0.090664096,0.08089996,-0.34917846,0.14640453,-0.3123693,-0.0010982975,-0.34044963,0.10063464,0.036100466,0.06531444,-0.1005231,0.60877603,-0.40995184,0.06485842,0.11557268,0.7070804,-0.38656855,0.016369885,0.8203325,1.0234402,1.0232126,0.15696608,1.4446043,0.37885264,-0.15358554,0.10782609,-0.21125872,-0.56869906,0.10179851,0.55112445,-0.012080818,0.23512796,0.062621735,0.12782748,0.43135652,-0.33483478,0.22374895,-0.13068415,0.29700437,-0.008530157,-0.065400295,-0.60724926,-0.4160791,0.20365003,-0.012575077,-0.11948828,0.27529427,-0.064299904,0.5706296,0.21611081,1.4684016,0.11930377,0.15892248,0.066753976,0.48334196,0.18736438,-0.046936333,0.1121716,0.12041581,0.20142734,-0.009455739,-0.6461848,-0.021800747,-0.32146364,-0.6090074,-0.30393553,-0.46876106,-0.08455928,-0.2571108,-0.4000907,-0.20756207,0.061276425,-0.339912,0.4932612,-2.2485008,-0.20769207,-0.25514776,0.22060008,-0.25054172,-0.32546955,-0.03446899,-0.4448928,0.3223862,0.5063038,0.4340539,-0.7487434,0.38213685,0.4490445,-0.2521062,-0.15552054,-0.81150776,-0.033886544,-0.25072688,0.3219366,0.044340633,-0.22566657,-0.29152653,0.17404608,0.7101537,-0.0037546668,0.101235844,0.010774978,0.40986982,0.11070586,0.65362984,0.116946034,0.47797444,-0.19997868,-0.065879546,0.30257225,-0.48902294,0.362356,0.35448423,0.14908503,0.375097,-0.6864886,-0.96104676,-0.8355649,-0.6914719,1.0406358,-0.32868353,-0.31835395,0.1760921,0.16986227,-0.25503975,-0.0806269,0.4771319,-0.27005965,0.15486406,-0.6649662,0.15297735,-0.0062577897,0.19343655,-0.06149379,0.12610462,-0.37196702,0.7274738,-0.17509119,0.53380394,0.35081226,0.13519147,-0.3428027,-0.369277,0.0047467607,1.0352484,0.4285836,0.14101776,-0.13252121,-0.30515203,-0.17531429,-0.24643724,0.21076496,0.39996216,0.83615154,0.107341036,0.007879819,0.4026754,-0.27088273,0.08076998,0.044790983,-0.33657676,0.06846193,0.17270096,0.6652972,0.40737793,-0.17794167,0.34813467,-0.24044804,0.4600821,-0.19062726,-0.35508147,0.300181,0.7924648,-0.016849106,-0.012665162,0.7409019,0.7589536,-0.37376305,0.49533466,-0.6851018,-0.4010213,0.6208821,-0.049195327,-0.4910602,-0.057531793,-0.37797174,0.23873904,-1.0260621,0.45453095,-0.0680322,-0.37797526,-0.6932101,-0.31977084,-3.4824798,0.10403198,-0.11463327,-0.1040935,0.021223119,-0.17064865,0.41983652,-0.7174902,-0.5941815,0.104879305,0.05607895,0.39478344,0.11620777,0.24517237,-0.43813413,-0.065544985,-0.4098758,0.26410517,0.048285358,0.2627879,-0.057403345,-0.39381617,0.14126392,-0.58731,-0.5204836,0.12148295,-0.525095,-0.65357304,-0.13273655,-0.4780819,-0.61816305,0.7926477,-0.38680023,-0.026715968,-0.117794394,-0.022441845,-0.31040388,0.40470168,0.35498327,0.2105488,0.08656724,0.109666534,-0.37277895,-0.41628435,0.34025833,0.0806411,0.44190148,0.3512937,-0.04407962,0.224298,0.7632229,0.57221127,0.19896589,0.75110465,0.16944747,-0.035965055,0.32616505,-0.33556932,-0.24334629,-0.71788853,-0.45135212,-0.09553491,-0.35005808,-0.51402694,-0.03928629,-0.40133205,-0.6710024,0.55034554,0.11572913,0.046000548,-0.2682452,0.24652307,0.2226478,-0.15248533,0.0073733414,-0.10967742,-0.15418012,-0.66988236,-0.5202763,-0.89916974,-0.58933073,0.091387674,1.2608442,0.07577324,-0.38483104,-0.017110338,-0.294212,0.10596454,-0.019603098,0.063340664,0.26497382,0.33922657,-0.10242014,-0.8992285,0.5258484,-0.0067628664,0.08965606,-0.28105035,-0.1731336,0.7508817,-0.74743885,0.4104565,0.47738615,0.33725792,0.21994601,-0.4835321,-0.34252363,0.026309123,-0.22200944,0.56293565,0.08402334,-0.6414453,0.5838739,0.14059035,-0.20628653,-0.70260286,0.5312201,-0.032414537,-0.007762415,0.1448354,0.3284471,0.24241187,-0.15125848,-0.17521615,0.29651946,-0.7013566,0.26377827,0.46595016,0.17897995,0.5280835,-0.15750296,-0.3136954,-0.6658002,-0.1730969,-0.44311914,-0.2853743,-0.038686804,-0.041954342,-0.0042874897,0.21315782,-0.17495535,0.35404196,-0.26053283,0.08712734,-0.10452598,-0.21975878,0.2352047,0.42825195,0.23423961,-0.45416757,0.6899241,0.13433133,0.11025429,-0.34669065,-0.04258124,0.3284897,0.46150595,0.14418952,-0.05148496,-0.2281532,0.2638028,0.76982623,0.290603,0.35911116,0.18453741,-0.18448928,0.4938405,0.19100608,0.15818466,0.1587756,-0.3084856,-0.061103422,0.14131704,-0.046373434,0.31318697,-0.036312968,0.3398695,-0.16586468,-0.07658188,0.2804655,0.35949513,-0.32903546,-0.94662774,0.24023044,0.19693176,0.5540339,0.7669362,-0.08011532,0.049080458,0.6450763,-0.510272,0.029122708,0.3353333,0.10175047,-0.54175335,0.7148785,-0.50239736,0.48606688,-0.30513462,0.037712537,-0.21844026,0.039268795,0.40022382,0.8656896,-0.016865727,0.16212405,-0.0754649,-0.21666625,0.25172928,-0.27974552,0.121278085,-0.448347,-0.19152904,0.64763564,0.16794603,0.29835728,-0.057272024,-0.011940773,0.07801217,-0.125318,0.4299675,-0.09589603,-0.1003936,0.106502675,-0.66155106,-0.39766693,0.6926893,-0.11688336,0.0372001,0.21022545,-0.5566004,0.3406816,-0.119574055,-0.11522194,0.091402575,-0.5374833,-0.007079267,-0.27789503,-0.56130874,0.2288462,-0.44301707,0.2489622,0.14480402,0.080221236,-0.2485434,-0.20623684,0.42920446,0.69817406,-0.012279087,-0.26622564,-0.23785369,-0.2309369,0.25557098,-0.37534395,-0.09050473,-0.32375616,0.2591011,-0.69281584,0.58273983,-0.15706323,-0.37454984,0.12741321,-0.1860409,-0.040375948,0.40754992,-0.2913756,-0.1467627,-0.063287474,0.219228,-0.06803916,-0.042351928,-0.42681578,0.36029574,-0.021233499,-0.068427436,-0.005282302,-0.2425421,0.028340826,0.54644424,-0.012301134,0.24483144,0.12465739,-0.054032188,-0.4683244,0.048409343,-0.2330061,0.23276637,0.052684106,0.016258478,-0.18696071,-0.10056551,-0.09259302,0.34200504,-0.20846495,0.18377066,0.0894679,-0.60181296,0.7207281,-0.09714778,1.2455083,0.09939004,-0.4914291,-0.16892883,0.5477559,-0.044086795,0.18043092,-0.3497457,0.9848665,0.60274875,-0.21842898,-0.29007497,-0.5903358,-0.24514458,0.3016581,-0.21727483,-0.26566145,-0.054632764,-0.7765202,-0.3223394,0.22477324,0.15739577,0.16779692,0.095164366,0.14178959,0.05932658,0.27158743,0.59887415,-0.47489682,0.028310461,0.3027666,0.24929537,0.15091947,0.19632737,-0.36197755,0.30545622,-0.71093756,0.4467816,-0.5165759,0.14220256,0.013888708,-0.31808963,0.1453969,0.15468648,0.36599442,-0.08960966,-0.47599643,-0.1609153,0.8880185,0.111891806,0.27188915,0.8363763,-0.28370672,0.1129206,0.0055354154,0.45487896,1.6683166,-0.16495797,-0.056036804,0.16921405,-0.21995592,-0.6277885,0.40520525,-0.5479329,-0.14494307,-0.06449362,-0.48529625,-0.47571823,0.32503095,0.34525457,-0.103369355,0.077270456,-0.35842445,-0.2524012,0.6124784,-0.36299917,-0.40326312,-0.36685476,0.444064,0.82331085,-0.44485644,-0.14050923,0.0440248,0.4134454,-0.33485028,-0.5528493,-0.04902621,-0.35524908,0.52108157,0.15344968,-0.30284008,0.112906516,0.1974047,-0.27744135,0.26290208,0.43481943,-0.3235475,0.05451652,-0.24282798,-0.0022708008,1.1413195,0.26756272,0.044098616,-0.80583286,-0.48544088,-0.87738425,-0.3920064,0.4116439,0.0985515,0.011293756,-0.28586382,-0.05286751,0.082066454,-0.035048056,0.13172172,-0.77219075,0.3676001,0.124101594,0.6042863,0.07485022,-0.7783009,-0.04080562,0.107283406,-0.043798823,-0.39601007,0.53726417,-0.17109215,0.79976493,0.12509131,0.05287671,-0.01354218,-0.4466785,0.38173717,-0.40565968,-0.3010684,-0.67516434,0.11870781 -112,0.4147903,-0.20174852,-0.31666523,-0.13114682,-0.2682855,0.071402945,-0.06526458,0.22259258,0.2743007,-0.13693756,-0.3266139,-0.20903982,0.096481115,0.54637456,0.008750828,-0.77752614,-0.025870945,0.1355527,-0.9261557,0.51267993,-0.5948998,0.23151681,0.20981728,0.3415604,0.12654123,0.43763357,0.3277693,-0.15874265,-0.33656725,0.05862591,-0.3304882,-0.025923623,-0.48829746,0.07620298,0.0148569485,-0.20639004,-0.013914012,-0.5247358,-0.3047393,-0.6009146,0.043463692,-0.8100034,0.34499985,-0.115245655,-0.03488446,-0.08065723,0.16591938,0.39692885,-0.5601126,-0.015972756,0.098648414,-0.23192035,-0.14156328,-0.30954885,-0.07618337,-0.33431375,-0.5480406,0.012836631,-0.48385188,-0.36150184,-0.058747035,0.083708525,-0.34405982,-0.0024838448,-0.01594179,0.38630235,-0.36104122,-0.032320675,0.5565182,-0.33693048,-0.078503445,-0.37304848,-0.005474751,-0.084731415,0.39200896,0.15719411,-0.18880168,0.45603922,0.42246097,0.34148458,0.27849433,-0.35624918,-0.26972514,-0.11869876,0.3390567,0.4618192,-0.030728996,-0.40092212,-0.2591582,0.0936387,0.10895295,0.2524429,0.21592638,-0.15642653,-0.10217497,-0.07221189,-0.19944516,0.2755103,0.43734148,-0.40519994,-0.41344687,0.2902531,0.73158956,0.23434497,-0.123524114,-0.08374707,0.06233845,-0.50600094,-0.1373241,0.18727463,-0.16629538,0.54243714,-0.13319719,0.085427865,0.8532981,-0.23654303,0.10508727,-0.059954524,-0.1508325,-0.26265544,-0.20195307,-0.069052435,0.1456011,-0.34053564,-0.109426536,-0.3034628,0.70454574,0.44414043,-0.54447085,0.5126474,-0.5778617,0.2500859,-0.10736383,0.6002347,0.7050636,0.3273718,0.42375645,0.7550129,-0.24720624,0.26935086,-0.048237782,-0.45164993,0.19295366,-0.3678363,0.20556848,-0.54262,0.14732812,-0.07784857,-0.0319974,0.08524234,0.3835268,-0.5898787,0.0011290198,0.10934225,0.8283247,-0.32903132,-0.23174976,0.59616697,0.9917718,0.9695989,-0.023706717,1.2926393,0.5001267,-0.30168232,0.22837059,-0.6144011,-0.74066734,0.23640543,0.29106396,-0.23457216,0.48571932,-0.049611125,-0.16060382,0.23238567,-0.24042386,0.23579262,-0.0047977795,0.22974531,0.22024606,-0.0042461297,-0.31912333,-0.26370558,-0.18664072,-0.21729916,0.19892447,0.19843411,-0.33940476,0.46096775,-0.17280377,1.7556903,0.02278669,0.04915589,-0.10946744,0.54408354,0.32549092,-0.102804735,-0.20051916,0.5115655,0.3329087,-0.09210772,-0.5658279,0.3381971,-0.3982162,-0.3777048,-0.06484306,-0.46101555,0.030024378,0.015260761,-0.15062368,-0.10579931,0.14327233,-0.38888678,0.4273331,-2.57803,-0.2825282,-0.102688275,0.28016806,-0.3538887,-0.12325725,-0.25646952,-0.48581886,-0.02351694,0.24777699,0.53252584,-0.6695423,0.42038372,0.4401417,-0.5717043,-0.34840006,-0.63111985,0.07942928,-0.04576439,0.3445753,-0.026601342,-0.07427956,0.0132209705,0.22496335,0.6397159,0.047130898,-0.016335638,0.55471134,0.38423464,0.2872036,0.50521404,0.04676614,0.7299256,-0.30453917,-0.14431068,0.36376557,-0.2713953,0.37836567,0.028399069,0.085832864,0.5638233,-0.31940773,-0.9736011,-0.55488515,-0.35745904,1.0305716,-0.5249206,-0.3486408,0.12957157,-0.04355295,0.029960196,0.0501922,0.52861476,0.046186246,-0.0040140334,-0.57065904,0.071280055,0.11937901,0.13417162,0.070271604,0.021443076,-0.21340315,0.67292094,-0.059206188,0.5398943,-0.009316756,0.2104513,-0.12344964,-0.36668873,0.2926587,0.84016925,0.20010494,-0.07306374,-0.08608851,-0.31563315,-0.14073618,-0.22786808,-0.029083421,0.39186096,0.7086679,-0.09575149,0.09986115,0.45597708,-0.07551171,-0.047667626,-0.11320453,-0.21208006,0.05591884,-0.073913135,0.41748622,0.7886231,-0.13467728,0.6450662,-0.20895061,0.40751165,-0.009079814,-0.6042408,0.7429028,0.34781882,-0.23961505,0.03685942,0.28118685,0.25920308,-0.56595284,0.49833685,-0.58096594,-0.24755643,0.78076386,-0.09996377,-0.32302105,0.3027821,-0.17501543,0.20305167,-0.7432086,0.3976819,-0.09712665,-0.2616018,-0.42230347,-0.018946739,-3.519497,0.15873386,-0.16786215,-0.17301467,-0.12406978,0.1621804,0.122259066,-0.7413175,-0.48924083,0.021409879,0.184595,0.6353118,-0.10217282,0.22200133,-0.2674784,-0.15490367,-0.2781561,0.20738298,-0.05952946,0.4007398,-0.1704433,-0.35575947,0.13745041,-0.18365577,-0.5184336,0.22358364,-0.6675842,-0.4023571,-0.132076,-0.65252304,-0.24454203,0.7075163,-0.39588407,-0.013315398,-0.22771826,0.16286811,-0.28214997,0.29895833,0.15073647,0.087469585,0.17083035,-0.118160285,-0.025601897,-0.26371118,0.40540493,-0.0055887746,0.5645834,0.3062151,0.12640694,0.17165324,0.48944137,0.5979852,-0.103349246,0.7213694,0.30517802,-0.19677451,0.26337487,-0.42633802,-0.020835284,-0.44059113,-0.42709368,-0.04115158,-0.39974374,-0.6312837,-0.12795758,-0.23969008,-0.909794,0.46182156,0.03153298,0.33790967,-0.05757083,0.14150016,0.55383915,-0.23635578,0.14265516,-0.14595823,-0.13672787,-0.58728576,-0.24271342,-0.62218314,-0.4775194,0.47308716,0.89837134,-0.4639131,-0.029510943,-0.23755553,-0.55547476,0.025158582,-0.04267128,0.04228421,0.33038527,0.33299807,-0.12469497,-0.61250174,0.36854303,-0.15167513,-0.07076104,-0.5097674,0.08484598,0.7126502,-0.8797174,0.6787115,0.21035904,0.04829846,0.119528204,-0.32689217,-0.24185298,-0.07223804,-0.10107277,0.13420497,-0.06280227,-0.65140533,0.3136549,0.22953804,-0.5755761,-0.74100053,0.14936502,-0.06647326,-0.06764914,0.060288385,0.22150132,0.11934371,-0.04718888,-0.39238805,0.07371615,-0.5551978,0.13712825,0.22925368,0.05810207,0.3612405,0.03800615,-0.47267798,-0.6609388,0.07225794,-0.3192449,-0.36036885,0.38926452,0.24001907,0.14837445,0.05490571,0.31457716,0.29251096,-0.3726028,0.07294104,0.22339068,-0.31135267,0.33455327,0.36049315,0.34153265,-0.52386165,0.4808677,0.10988018,-0.071504325,0.25844646,-0.11036027,0.2642132,0.256552,0.26794136,0.14583713,-0.20282015,0.3233128,0.73377883,0.01843111,0.4322816,0.19782434,-0.21721514,0.47330236,-0.0143577345,0.09319567,0.0067555215,-0.46436217,0.13564652,0.10835171,0.2996783,0.45928782,0.42575872,0.2973058,0.2404626,-0.34249756,0.027554158,0.23372094,-0.18410188,-1.1487607,0.2847982,0.27096546,0.84085906,0.42869812,-0.0068643917,-0.13298808,0.7253136,-0.18778151,0.1933669,0.30297783,-0.1644013,-0.6279125,0.6887757,-0.6162865,0.5153452,-0.11425627,-0.084325075,0.024035918,0.034799594,0.27576745,0.7758922,-0.24075651,-0.07053471,-0.06085738,-0.10982086,-0.041741014,-0.48114046,0.201943,-0.5293152,-0.49416712,0.70965356,0.29446557,0.35708374,-0.18357517,-0.042568143,0.011525168,-0.17719962,0.30120033,-0.0066011595,0.08247944,0.17393924,-0.8021206,-0.3251037,0.55360734,-0.38182253,0.1464566,-0.10123973,-0.22228667,-0.034460656,-0.29828948,-0.13399647,-0.08008044,-0.6665086,0.07507093,-0.13791165,-0.6023147,0.36183542,-0.117891,0.22219236,0.22192486,-0.0863169,-0.21541665,0.39578742,0.13793491,0.88141,0.049931627,-0.3198876,-0.3401859,0.18758307,0.18994983,-0.33626366,0.2775638,-0.40382352,0.077280134,-0.4096092,0.7970593,-0.06751574,-0.5697855,0.033708736,-0.19046427,-0.10104854,0.58190495,-0.18063197,-0.16706635,-0.2169447,-0.31605074,-0.41620857,0.21568486,-0.27826917,0.20317474,0.19635926,-0.2356771,-0.06571259,-0.17965129,0.09010521,0.5183927,0.031851437,0.32395682,0.24309818,0.01816369,-0.21771625,0.017411329,0.27165234,0.48574087,0.35115367,-0.14044707,-0.51923573,-0.20877956,-0.3741891,0.23435208,-0.18250163,0.29494503,0.121399164,-0.48945922,0.6540794,-0.07327677,1.3968648,0.02998043,-0.3027039,0.10630185,0.53823334,0.09382537,0.08403753,-0.53518766,0.8782097,0.50330615,-0.079474464,-0.1081086,-0.5641366,-0.33851987,0.5231718,-0.37683788,-0.21248953,0.11865572,-0.5517931,-0.4590279,0.206642,0.0008790883,0.25260293,-0.027038634,0.11855009,0.10372612,0.17406029,0.2558301,-0.47499233,-0.28332287,0.25349694,0.18759452,-0.013837984,0.17158757,-0.36887693,0.45731485,-0.6826213,0.20883933,-0.33232814,0.038199045,-0.15607229,-0.38151175,0.22372726,0.36488804,0.46636212,-0.29458997,-0.4419611,-0.15588734,0.67954993,0.11307477,0.2466713,0.740809,-0.21265844,-0.109111734,0.14340097,0.5830664,1.244981,-0.26784375,0.13367106,0.3395509,-0.43456638,-0.71170765,0.62414974,-0.32742256,-0.070669524,-0.24424073,-0.44139004,-0.65389216,0.32630503,0.15384361,0.090188496,0.21952152,-0.52097535,-0.23061782,0.2356345,-0.421431,-0.25772575,-0.43477133,0.34740445,0.89729494,-0.26057455,-0.2243557,0.108880006,0.25654605,-0.253247,-0.3802433,-0.2689797,-0.29022634,0.3109927,0.095060825,-0.1941692,-0.09836727,0.06224768,-0.3235173,0.144163,0.05161334,-0.42450207,0.20123678,0.0034119396,-0.119034715,0.89040923,-0.16320112,0.016723542,-0.7136425,-0.5218755,-0.9019963,-0.4826943,0.3250665,-0.045276865,-0.15813468,-0.37556693,-0.009431224,0.05326339,-0.23216122,0.06691104,-0.68106365,0.28212488,0.08638377,0.27715358,-0.15333255,-0.928574,0.15264334,0.113859855,-0.072327025,-0.8240195,0.46228456,-0.25207236,0.87706065,0.034166623,-0.23248085,0.12237393,-0.31946534,0.034122225,-0.49270564,-0.1596763,-0.66191727,0.17589852 -113,0.33949643,-0.070206776,-0.43419486,-0.17226797,-0.38827166,0.16608176,0.007657192,0.5349446,0.28267962,-0.089825355,-0.045294955,-0.028411536,0.032520074,0.6831712,-0.08642591,-0.75698435,0.006113043,0.15919831,-0.68912697,0.41548255,-0.47831953,0.3374603,0.107335575,0.46983603,0.23214746,0.2823901,0.030500539,-0.009657593,-0.03227796,0.018278081,-0.27465007,0.11365742,-0.43907928,0.15079899,0.040793106,-0.25857466,-0.2082115,-0.3881032,-0.2590094,-0.64156383,0.3977875,-0.68949974,0.5772339,-0.267777,-0.19913182,0.21932235,0.20934829,0.28674558,-0.4310599,-0.08781571,0.17957146,-0.2572622,-0.042599227,0.011789532,-0.33673203,-0.29661497,-0.61316144,-0.09054613,-0.5201038,-0.084578864,-0.28267667,0.15503062,-0.33375752,0.13203451,-0.124680534,0.38903555,-0.29134905,0.17336375,0.2960471,-0.22103599,0.05416517,-0.34562132,-0.14119473,-0.07326422,0.29937786,0.07393778,-0.37437963,0.35818094,0.46982482,0.38400427,-0.008582569,-0.24098173,-0.14967547,-0.016701387,0.07057948,0.60403913,-0.12102746,-0.42932123,-0.25484622,-0.006504091,0.21676938,0.22065441,-0.08040273,-0.36099008,-0.04298599,0.13212572,-0.29842082,0.47811973,0.33227378,-0.24618982,-0.21198443,0.44765255,0.17322937,0.2785568,-0.19029482,0.18751153,-0.09543639,-0.6209224,-0.12571073,-0.04398783,-0.08568906,0.3892352,-0.13434137,0.28772482,0.7892764,-0.035630748,-0.10013647,-0.105005585,0.05790428,-0.09491321,-0.34345785,-0.11364781,0.078909054,-0.4718311,0.10049731,-0.14778072,0.78682655,0.15067336,-0.7832343,0.42903906,-0.5441156,0.13196024,-0.21693465,0.45470598,0.95459205,0.30491093,0.14915153,0.9220771,-0.5307942,-0.02270941,0.081391096,-0.3877405,0.10982458,-0.14325276,0.1775433,-0.534031,0.046228327,0.22314985,-0.009941184,0.24623726,0.2583763,-0.38992625,-0.1872831,-0.14823997,0.6347135,-0.39518902,-0.21459787,0.88831943,0.9557507,0.9173289,0.057453115,1.434972,0.39874795,-0.15068623,0.17774507,-0.2372643,-0.49843243,0.07376165,0.29168275,-0.3318882,0.31448957,0.050746992,0.012524616,0.43300056,-0.271783,-0.11281763,0.043622784,0.23322143,0.12672077,-0.12533854,-0.33519453,-0.46917465,0.14394198,0.115764305,0.06770284,0.25628588,-0.30912665,0.49069044,0.16446994,1.4470208,0.23861793,0.014393786,0.003615572,0.365952,0.2948999,-0.11193382,-0.31122625,0.2804324,0.5665866,-0.108126126,-0.5943185,0.031223906,-0.2738101,-0.4091592,-0.030019848,-0.43240756,-0.31190097,-0.12962843,-0.41733074,-0.0801043,0.09152702,-0.36023325,0.480824,-2.8250756,-0.30254844,-0.23631406,0.1867734,-0.18138964,-0.37504593,-0.31904167,-0.5311204,0.20046681,0.24541348,0.40123823,-0.52499866,0.34751254,0.23215789,-0.3443175,-0.19876088,-0.6362727,-0.0993318,0.08276292,0.23683307,-0.0924729,0.19028464,-0.13126187,0.3635173,0.6722422,0.13880233,-0.02585732,0.29891533,0.41827208,-0.0029102748,0.5900377,0.017686564,0.6387309,-0.12724197,-0.09031989,0.19050609,-0.28926918,0.4211528,0.038539473,0.21599366,0.57722366,-0.33200657,-0.8959297,-0.49111935,-0.23125996,1.1370734,-0.52903175,-0.16436999,0.43606696,-0.3643346,-0.40026248,-0.02009246,0.5934366,-0.07955877,-0.16893457,-0.61345065,0.026004873,-0.04393273,0.07577738,-0.19267441,0.042438067,-0.1407019,0.6386637,-0.120105654,0.48614585,0.1703648,0.020221949,-0.15517053,-0.40467864,0.00989806,0.7996104,0.34855825,0.05228891,0.0051425304,-0.0139819635,-0.48963863,-0.3314769,0.20296802,0.61221004,0.6617396,0.11046414,0.17120157,0.21428691,-0.11193915,-0.033930637,-0.0028329582,-0.25543392,-0.0052267453,-0.04586981,0.5392769,0.67925733,-0.06806744,0.57912064,-0.20876375,0.1636276,-0.21101505,-0.6488962,0.60095173,0.5515169,-0.22429791,-0.22187798,0.5749951,0.36259925,-0.19402963,0.2925737,-0.48544836,-0.32664505,0.8132468,-0.12562233,-0.40963617,0.1374955,-0.12390236,-0.17948315,-0.7711827,0.12121708,0.13021067,-0.6506891,-0.2737899,-0.070068285,-3.5724127,-0.0014250336,-0.07476934,-0.3279782,-0.24175699,-0.08015807,0.30738544,-0.40931195,-0.5542021,0.19090065,0.08497539,0.6610879,-0.17778659,0.06643747,-0.21098313,-0.20302956,-0.1813347,0.16172644,0.027742626,0.3432996,0.05661925,-0.34656146,0.0011389622,-0.1872672,-0.6548986,0.17141064,-0.5711233,-0.5457128,-0.02165295,-0.33058962,-0.23970622,0.821612,-0.6253564,-0.014752343,-0.20726609,-0.07336597,-0.2660488,0.3611383,0.17056996,0.11836589,0.03200772,0.08819652,0.09676862,-0.29895714,0.2742643,0.115542494,0.3880325,0.2071871,0.0028820634,0.25982758,0.5246078,0.62350655,-0.026435573,0.89447886,0.25006086,-0.064883284,0.22898014,-0.22388877,-0.18332826,-0.53948987,-0.24201767,-0.23610154,-0.4241945,-0.3726106,-0.21597204,-0.27498892,-0.7419837,0.3715644,0.14403015,0.08812532,-0.204355,0.15042543,0.39043176,-0.18783252,0.13291685,-0.041096453,-0.24276628,-0.58779335,-0.31488833,-0.6196763,-0.54004633,0.23418258,1.14014,-0.17694443,0.054035325,-0.1804731,-0.6096172,0.018995745,0.050051663,0.17655912,0.22522399,0.2868872,-0.25351185,-0.82034296,0.4403856,-0.50101197,-0.03108439,-0.7861558,0.0882753,0.7011198,-0.6389336,0.53949565,0.25489542,0.27364504,-0.11499827,-0.43753624,-0.2420015,-0.008972094,-0.09726383,0.46044746,0.20218089,-0.64094794,0.5017885,0.07657252,-0.10170123,-0.52014613,0.39947838,-0.056448836,-0.002256595,-0.011135652,0.3096309,0.12691548,-0.02422681,0.0954417,0.2507986,-0.53612393,0.2769566,0.3583504,0.104730554,0.32344988,-0.031856034,-0.0182033,-0.63317436,-0.17114857,-0.4158352,-0.28330082,0.007976053,0.090535276,0.28435794,0.034704544,-0.15383579,0.19971807,-0.358607,0.16736507,-0.071181685,-0.19290821,0.32846662,0.5937617,0.43074277,-0.37789968,0.6556107,0.1471129,0.057433255,0.23046046,0.037071068,0.46442434,0.3386106,0.34465525,-0.16225919,-0.23486581,0.25848496,0.6503726,0.20803928,0.15461907,0.00750129,-0.11419641,0.08664819,0.09073309,0.16977455,0.20335235,-0.39545867,-0.22726785,-0.098691754,0.17916067,0.60845035,0.10953498,0.11661703,0.025020303,-0.37291402,0.2350812,-0.08518076,-0.011867606,-1.4196175,0.5067028,0.28442794,0.74721706,0.2974711,-0.06700711,-0.10724397,0.6294823,-0.13047042,0.25874522,0.39132294,-0.07103682,-0.41076997,0.59863627,-0.6976405,0.6120644,-0.109426536,0.01165987,0.23741268,0.21903767,0.4585112,1.1391468,-0.079026885,0.061930828,0.15627238,-0.43784767,0.16352312,-0.307431,-0.040695887,-0.6852882,-0.43730974,0.43780538,0.4469368,0.29857546,-0.38871333,0.014971747,-0.046134315,-0.19604169,-0.1585071,-0.054507367,0.0005401373,-0.21225506,-0.6602983,-0.3196979,0.5060013,-0.01878899,0.15768264,0.20740718,-0.19929695,0.3553263,-0.21821985,0.019698363,-0.079348095,-0.68411326,-0.14683706,-0.23703872,-0.57211405,0.19813552,-0.46324697,0.2945115,0.20965339,-0.010343343,-0.23865642,0.33274412,0.26210076,0.9128422,-0.21874176,-0.25908816,-0.3148143,0.103897996,0.21727474,-0.23461914,-0.1897038,-0.38871846,-0.22127604,-0.53481096,0.34740454,-0.17576331,-0.23783694,-0.037553545,-0.040465955,0.16988188,0.29019594,-0.17834465,-0.113909155,-0.22346638,-0.15577425,-0.2364848,0.0105237225,-0.32801515,0.33674362,0.16160257,-0.067684196,0.0028090535,-0.12517527,-0.020778846,0.11193657,-0.01605541,0.3737969,0.3021972,0.020511866,-0.18013622,-0.049077217,0.11475564,0.42582396,0.15748833,-0.18431027,-0.36199063,-0.22761795,-0.21651782,0.3793968,-0.19098918,0.38393408,-0.05251576,-0.45751512,0.6526854,-0.016960727,1.0968013,0.17322867,-0.23687452,0.2358831,0.52085525,0.08305021,0.03629521,-0.13510473,0.6594282,0.41320202,-0.04358691,-0.33816656,-0.4266095,-0.14732271,0.45487294,-0.27681434,-0.2940375,-0.0024130838,-0.65883726,-0.24881831,0.017500121,-0.0216935,0.3267314,-0.07378565,-0.094298236,0.18109521,0.11442049,0.48993966,-0.45871976,0.06905412,0.2483039,0.32439533,0.054946806,0.20611939,-0.39271024,0.4716323,-0.64666915,0.25154367,-0.40661177,0.12463676,-0.21586162,-0.16625144,0.13418576,0.13472249,0.2787905,-0.2806083,-0.23689696,-0.32750925,0.6725258,0.28057915,0.15563719,0.62179697,-0.25070494,-0.1786512,0.24524774,0.44485247,1.1801747,-0.1473884,0.049192216,0.3234938,-0.3776849,-0.48375708,0.16594145,-0.2980823,0.19751689,0.067912936,-0.20411706,-0.31484216,0.2924616,0.04213124,0.18040338,0.15806183,-0.45146158,-0.26901266,0.49786332,-0.1965379,-0.3557515,-0.3414321,0.20735154,0.5096768,-0.42852706,-0.25949675,0.1200927,0.109689385,-0.18146607,-0.58455074,-0.0038241057,-0.48970744,0.40392604,0.023880359,-0.4225318,-0.011268086,0.08940566,-0.45177254,0.30997148,0.09096401,-0.41240567,-0.00012565576,-0.06645921,-0.3204199,1.1125878,-0.13155787,0.059692264,-0.79481167,-0.5172029,-0.7401853,-0.36208886,0.1654173,0.13047291,-0.15931807,-0.49303633,-0.18307385,0.02114842,-0.013523185,0.0042060064,-0.37495553,0.37521333,0.10985184,0.3112199,0.012856801,-1.0722551,-0.036533955,0.038530268,-0.27898565,-0.65478665,0.51174176,-0.13475493,0.6947042,0.03909255,0.13431881,0.20433538,-0.3404237,0.29876354,-0.32877466,-0.13628957,-0.6081561,0.2907158 -114,0.22944444,-0.14716125,-0.44954574,-0.22527005,-0.29191858,0.24598888,-0.26972008,0.11945342,0.197892,-0.28476372,-0.007051901,-0.040800545,-0.02371537,0.39321455,-0.27125826,-0.7357791,0.06791997,0.0111742,-0.5287541,0.41714764,-0.5453153,0.36221406,0.18198928,0.38659403,0.03042117,0.24105667,0.24221903,0.009408823,-0.041067924,-0.12362967,-0.205081,0.29869837,-0.5008405,0.2596252,0.0053539197,-0.28809625,-0.08863881,-0.3332287,-0.3411892,-0.5559753,0.39608428,-0.74790895,0.46827573,-0.1961934,-0.45085353,0.0022438585,0.16869469,0.13236181,-0.34778303,0.104714714,0.18644889,-0.04016621,-0.060628764,-0.031027472,-0.23805997,-0.5181026,-0.5442946,-0.042364217,-0.6564888,-0.08039159,-0.25440195,0.29799318,-0.2981586,-0.0113388775,-0.1463427,0.3550731,-0.47175092,0.025645088,0.18100436,-0.33792564,-0.04303883,-0.52653944,-0.075996466,-0.023652753,0.26321232,0.0052757463,-0.14910175,0.20731598,0.3394064,0.5727499,0.008270327,-0.17398588,-0.30635548,-0.10915935,-0.0036823512,0.46446413,0.034951102,-0.3627827,-0.236281,-0.035366103,0.30707023,0.15763427,0.16387342,-0.45753926,-0.07176183,0.024234017,-0.26229432,0.43735436,0.46763736,-0.50311005,-0.22748694,0.48727384,0.17399193,0.073831625,-0.3265785,0.3253509,-0.04776625,-0.4249038,-0.17471609,-0.06032092,-0.022376243,0.55738664,-0.21610974,0.4115175,0.73790973,-0.022570593,-0.050556935,-0.008002695,-0.26842645,-0.17796096,-0.20553856,-0.039254084,-0.009213706,-0.3434882,-0.007568951,-0.114861704,0.77038264,0.030690176,-0.8838757,0.45609435,-0.403647,0.09669501,-0.099337064,0.5190242,0.75073487,0.4401438,0.12814909,0.8998806,-0.5230192,-0.07093584,-0.022638854,-0.34504014,0.07825644,-0.03913508,-0.021921257,-0.41374156,0.10501461,0.13482067,0.14538455,0.054058813,0.46819755,-0.3157666,-0.062293403,0.040899627,0.6063077,-0.4003256,-0.0922207,0.84348035,1.0297908,0.9981541,0.043517735,1.3224078,0.36491463,-0.02542273,-0.049478035,-0.196311,-0.5578087,0.059254605,0.35309803,0.34419262,0.23866738,0.086734734,0.025662163,0.51693624,-0.19650196,-0.069252826,-0.030819066,0.26082176,0.04089064,-0.12788825,-0.32876787,-0.15992837,0.28862846,0.1839475,0.09713903,0.15513723,-0.089969546,0.41453597,0.14901759,1.2477635,0.017945787,0.13881491,0.11467852,0.3431517,0.24424712,-0.15102744,-0.060771126,0.2186553,0.40440422,-0.211675,-0.5762993,-0.16508374,-0.27984017,-0.5469939,-0.19165084,-0.2795406,-0.38244823,-0.20213209,-0.51523983,-0.19217633,0.14054559,-0.42264795,0.42916107,-2.8400066,-0.20795706,-0.23146819,0.3161833,-0.10389149,-0.2624187,-0.33303645,-0.50907636,0.38144362,0.4715825,0.30194423,-0.5631253,0.50130725,0.346547,-0.2190757,-0.15866153,-0.59905,0.13184099,-0.1550274,0.42496306,0.027743736,-0.2796383,-0.13881192,0.18725896,0.7373194,0.10672193,0.02920594,0.16701649,0.46986195,-0.046754997,0.5634492,0.00401514,0.55722564,-0.06391199,-0.023820508,0.34241942,-0.43208057,0.352112,-0.10976018,0.15724331,0.44195968,-0.514693,-0.8016624,-0.59326166,-0.14903186,1.2067568,-0.34271702,-0.36628866,0.29998988,-0.1112337,-0.27854717,0.12381033,0.6081908,-0.10808773,0.047974978,-0.61573327,0.06846488,-0.16708805,0.16941322,-0.15043592,0.041340955,-0.43078664,0.76551276,-0.17267634,0.7073341,0.3701295,0.12051873,-0.17419931,-0.4317898,0.06778946,0.80243134,0.4346784,0.05767625,-0.09829109,-0.14506236,-0.27407163,-0.21060729,0.03898023,0.5588869,0.5012414,0.12124233,0.22103772,0.31724337,-0.08223912,0.06412949,-0.22245952,-0.18719843,-0.0062492937,0.13371833,0.5939617,0.67003703,-0.2249295,0.27745882,-0.092148624,0.21403141,-0.14218098,-0.62446374,0.5363495,0.52544576,-0.12742493,-0.34458447,0.53086275,0.3968693,-0.12555051,0.34504694,-0.4289612,-0.39654115,0.5707985,-0.17859516,-0.40920368,0.2863733,-0.38152346,-0.054391645,-0.80669785,0.27881438,0.037703946,-0.5304279,-0.4729344,-0.33902958,-3.7218072,0.052583836,-0.112285875,-0.07451946,-0.14100187,-0.2362299,0.34415257,-0.4486232,-0.5939275,0.029607004,0.012276453,0.4120991,-0.04976856,0.19263607,-0.311471,-0.10288529,-0.25865245,0.24133702,-0.031208845,0.31058884,-0.0075478544,-0.22320278,-9.389719e-06,-0.2755484,-0.51106924,-0.050873145,-0.45225802,-0.49027622,-0.0034074604,-0.36338228,-0.20386519,0.7389051,-0.37214157,0.027612654,-0.3279606,-0.071372695,-0.22498092,0.32625392,0.16023222,0.1312366,-0.033957217,0.019598132,0.004432758,-0.3033719,0.23517497,-0.026702853,0.22094968,0.43910658,-0.035748005,0.14000271,0.459367,0.45655626,-0.10082388,0.751526,0.17009373,-0.06479582,0.34694615,-0.105769664,-0.32775936,-0.6844808,-0.33615348,-0.10771204,-0.5227217,-0.34414235,-0.15879424,-0.37019303,-0.7140222,0.2832072,0.06434082,0.078240715,-0.17762785,0.22155164,0.28681037,-0.120900474,0.119128734,-0.007284735,-0.19586954,-0.49427655,-0.5302506,-0.6838478,-0.51005614,0.07684323,0.9488109,-0.0067285853,-0.24181484,0.03731884,-0.3102724,-0.04816269,0.03816318,0.294274,0.13949658,0.32220352,-0.15135759,-0.8103855,0.35342762,-0.35535127,-0.04310132,-0.4869383,-0.061532296,0.6500917,-0.57640433,0.48107302,0.33472034,0.31367937,0.060598683,-0.6888913,-0.2473754,-0.050542887,-0.23234573,0.60566545,0.24840961,-0.60026616,0.5032636,0.06638015,0.041300096,-0.60499424,0.37979242,-0.03493358,-0.1754718,0.06443238,0.33581296,0.10345759,-0.17243476,-0.10602747,0.15242891,-0.53443784,0.43276554,0.15120047,0.018248383,0.6066798,-0.14094314,-0.31308448,-0.42925853,-0.43759516,-0.49029616,-0.18106993,-0.1147943,0.048456024,0.18037266,-0.022375472,-0.16321565,0.45376894,-0.260129,0.2593231,-0.08122601,-0.08659109,0.34795666,0.54702777,0.32331365,-0.49805835,0.6510713,0.15470923,0.16248241,-0.10653354,0.08678417,0.53157043,0.25849754,0.39905772,-0.14222108,-0.11953269,0.13878931,0.7732323,0.2425985,0.3144305,0.17913848,-0.21992354,0.2942321,0.07409026,0.06437468,-0.072966255,-0.32084236,0.004340146,-0.18827482,0.23690033,0.34790167,0.19089845,0.358088,-0.110630766,-0.12250649,0.18561739,0.1374404,-0.13763371,-1.0485114,0.31419304,0.18865989,0.80988663,0.50431794,-0.00023171106,-0.040730134,0.47922954,-0.25828493,0.048794057,0.26857272,0.09034162,-0.40310135,0.57146806,-0.46597165,0.5201568,-0.22891946,-0.04796913,0.19086394,0.24231143,0.22675778,0.8144873,-0.018333126,0.15899569,0.019090036,-0.23537806,0.039697886,-0.24474487,0.11107974,-0.34612188,-0.25205192,0.6360222,0.48979503,0.24093321,-0.29735696,-0.09410203,0.026856385,-0.1925804,-0.083264954,-0.0358016,-0.102112435,-0.31700534,-0.6836534,-0.35324866,0.57861155,0.038554873,0.051607702,0.110791676,-0.35350165,0.2930113,-0.15255699,-0.004683336,-0.056944136,-0.46205133,-0.04153951,-0.3150056,-0.5958624,0.3317565,-0.37543476,0.3384346,0.19120164,-0.047988765,-0.1777834,0.124657445,0.08312643,0.679519,0.02926005,0.027644353,-0.2619466,-0.057171397,0.33953694,-0.30743307,-0.23707327,-0.35848525,0.26548102,-0.5718926,0.3723737,-0.25322077,-0.16438057,0.025851047,-0.057432517,0.023405302,0.35460657,-0.21871224,-0.04168664,0.27170306,0.12522939,-0.28790125,-0.03836223,-0.41190898,0.272429,0.04863548,0.14734305,0.14838387,-0.10363578,-0.14100756,0.2930086,0.13251194,0.23143464,0.3116,-0.02311549,-0.34310323,-0.018783135,-0.020061605,0.60142344,0.1883358,-0.061772957,-0.27384466,-0.52069753,-0.31148174,0.43540654,-0.10354342,0.14908934,0.15306526,-0.4544892,0.6494929,0.23513243,1.0007795,0.14048497,-0.39553615,0.13291796,0.53738827,0.12862696,0.16392459,-0.19083132,0.8945227,0.5517094,-0.15259504,-0.1745899,-0.35636237,-0.07421243,0.072820954,-0.29845485,-0.30550846,-0.18512985,-0.7198581,-0.09609617,0.050859764,0.1147444,0.13405772,-0.11309845,-0.08340044,0.1302471,0.1262115,0.4122009,-0.5889893,-0.093140386,0.41076177,0.18359655,-0.0810129,0.102449164,-0.39668694,0.38322696,-0.64344895,0.09360324,-0.42048606,0.15454635,-0.12406177,-0.14833114,0.22224905,0.047428623,0.3071394,-0.28945217,-0.40856358,-0.2873067,0.6231914,0.14416236,0.25254685,0.6926417,-0.18935475,-0.16414304,0.13372903,0.6428946,1.3879752,-0.051982697,0.14483753,0.3289338,-0.3302932,-0.57332367,0.050112557,-0.49933892,0.029670795,0.041681733,-0.29098442,-0.24966116,0.24654087,0.056673657,0.056559753,0.07068982,-0.52639973,-0.31490734,0.4431819,-0.15942399,-0.14202724,-0.27049887,0.1272776,0.60730165,-0.33446863,-0.23017938,0.0058375834,0.36639258,-0.24115436,-0.6813259,0.18191361,-0.24316676,0.37885496,0.22417274,-0.26883203,-0.01070774,0.23084368,-0.47670588,0.16693674,0.46901193,-0.33739442,0.03501801,-0.33824494,-0.14245996,1.0941939,-0.046118878,0.17551771,-0.5937051,-0.47454348,-0.955452,-0.27566254,0.13614918,0.15361811,-0.0635201,-0.57436097,-0.21326998,-0.16986027,0.120211564,0.10726121,-0.49195448,0.4326123,0.094214365,0.54285926,-0.096627496,-0.85412705,0.021158163,0.07584231,-0.24285723,-0.42234612,0.7143986,0.008975104,0.62804383,0.15022118,0.011964833,0.10672056,-0.6512127,0.31102535,-0.30768266,-0.05811371,-0.7239339,0.17736068 -115,0.5233417,-0.441573,-0.83321404,0.06580274,-0.36641747,-0.036324404,-0.34455922,0.5796117,0.06759138,-0.6484051,-0.2727998,-0.026900979,-0.13571963,0.286967,-0.25574535,-0.62828887,0.04311275,0.26181287,-0.40663338,0.75019526,-0.038328722,0.29014036,0.03118939,0.46025392,0.3463981,0.10017196,0.043699786,0.15674584,-0.2079306,-0.22720495,0.16863145,0.079140335,-0.75040424,0.29326808,-0.39734742,-0.5960087,-0.20911519,-0.5133686,-0.29017928,-1.0612195,0.30362195,-0.74113613,0.5514054,-0.04124755,-0.5506856,-0.04992443,0.09761589,0.39756918,-0.115782656,-0.04541499,0.08474626,-0.2462519,-0.08759589,-0.20314659,-0.19547227,-0.4246481,-0.7504354,0.06443233,-0.40754333,0.11000712,0.10492095,0.38308525,-0.42921972,-0.01526863,-0.20079273,0.6252741,-0.34070727,-0.022422154,0.49693078,-0.11915536,0.120889,-0.6807683,-0.18143858,-0.18134643,0.15414125,-0.012562527,-0.19900022,0.13510026,0.05737601,0.49465507,0.1923247,-0.33792412,-0.28219864,-0.08177066,0.18962502,0.35669863,-0.09051935,-0.3345632,-0.24287264,-0.013076682,0.5746084,0.2520314,0.27820048,-0.20733339,-0.02994464,-0.20347592,-0.06852006,0.3742005,0.48286635,-0.31188837,-0.004381574,0.19342674,0.766043,0.22692548,-0.2414191,0.13364086,0.04346111,-0.5336009,-0.15020336,0.14468351,-0.18373905,0.6054369,-0.16960336,0.28776264,0.47932023,-0.1197526,-0.09002605,0.42370483,0.17555414,-0.17198923,-0.3880275,-0.38737455,0.49786,-0.3750995,0.24274032,-0.41339523,0.7916373,0.2474172,-0.69794667,0.27228144,-0.6491333,0.28003427,0.052133244,0.57325256,0.7762467,0.50853735,0.14903443,0.9035378,-0.33075127,0.19623706,0.051802315,-0.11881955,-0.2179056,-0.27510545,-0.09316892,-0.40443003,0.099426985,-0.30940565,-0.023939114,-0.014064711,0.51314366,-0.7667142,-0.37036914,-0.014463911,0.7852427,-0.11506666,-0.15148726,1.0940896,0.8506881,1.2731599,-0.061058145,1.133446,0.13745263,-0.14101599,-0.13575624,-0.043679126,-0.7793331,0.42440823,0.3624228,-0.58920485,0.5978447,-0.22008078,-0.11647523,0.7079426,-0.44293424,0.059557788,-0.17763707,0.14105591,-0.056683317,-0.21883339,-0.5567359,-0.06591043,0.08943718,0.077518016,0.0485997,0.47180426,-0.1256701,0.55976915,0.0029726715,1.216161,-0.28378022,0.07697248,0.25664836,0.26660478,0.30979115,-0.29630062,0.07028341,0.13504468,0.2685979,-0.03364829,-0.5659683,0.016343651,-0.47338024,-0.50631225,-0.21877989,-0.2271425,-0.406524,-0.26264748,-0.601693,-0.31447828,-0.17433992,-0.16197722,0.28718737,-2.2001178,-0.3277872,-0.2603351,0.32948843,-0.6377837,-0.39802817,-0.056621786,-0.5903916,0.3886736,0.14923012,0.5740107,-0.5470384,0.4150409,0.54545224,-0.62645626,-0.038694613,-0.7171027,-0.10921887,0.06459699,0.27998957,0.0010127241,-0.2477449,0.2741873,-0.056163207,0.52972686,-0.09167504,0.023993047,0.4277634,0.3988655,-0.23290427,0.2305687,0.053589042,0.6362315,-0.7426415,-0.181623,0.60665977,-0.45787317,0.537989,-0.06111376,0.08746411,0.7131958,-0.62261635,-0.5864815,-0.5617498,-0.178387,1.1242753,-0.18178795,-0.5676371,-0.1419843,-0.33597022,-0.10036047,0.03684797,0.4834662,-0.041921653,0.06669634,-0.7935926,-0.1926026,-0.05087856,0.21100444,-0.05999152,0.042485483,-0.40937006,0.7723246,-0.12650432,0.46781164,0.5363803,0.30375835,-0.24159043,-0.6291019,0.03165877,0.95074,0.57685983,0.13481468,-0.44362304,-0.053745117,-0.6009872,0.005759349,-0.0059062014,0.5889407,0.61631465,-0.18451406,0.11387196,0.43616486,0.106263176,0.25921085,-0.17227125,-0.39702305,-0.3628413,0.20098776,0.63885343,0.78386486,-0.16522329,0.40416792,0.0029733228,0.28099844,-0.43464836,-0.5651007,0.62567174,0.77854824,-0.39274755,-0.411068,0.5144736,0.40907544,-0.3452888,0.61542743,-0.72680277,-0.4712045,0.5222578,-0.13776582,-0.41998678,0.09332112,-0.36454475,0.33109415,-1.0132309,0.16111143,-0.6660131,-0.272175,-0.8060988,-0.29703504,-1.0296338,0.3763841,-0.2313001,0.12565169,-0.27268633,-0.18489797,0.009547885,-0.6456079,-0.92715526,0.13451765,0.1558922,0.6502645,-0.2267959,0.25356978,-0.22785395,-0.60701174,-0.28776342,0.2914409,0.28623158,0.28977114,-0.20364109,-0.37013525,-0.07215199,-0.12171699,-0.330698,-0.06279634,-0.745439,-0.4781945,-0.3116031,-0.53984594,-0.24800557,0.7027606,-0.45742935,0.08750386,-0.09448163,0.024171498,-0.0014605934,0.13794042,0.03781359,0.106037535,0.29023197,-0.22954093,0.21074632,-0.26431203,0.027076492,0.08653548,0.29371825,0.5264188,-0.27892613,0.4439147,0.49888134,1.0659605,0.101079464,0.83500946,0.3135733,-0.022353457,0.46807736,-0.11651397,-0.47996256,-0.67419666,-0.049738996,0.14684723,-0.4045385,-0.48990777,0.18646461,-0.40628222,-0.91615283,0.65423703,-0.0065361043,0.33084196,0.012443185,0.6107511,0.6744162,-0.3785732,-0.1312515,0.13337752,-0.15299676,-0.37763628,-0.33467352,-0.6922143,-0.6172965,0.11474284,1.344777,-0.21149834,-0.078035206,0.30653906,-0.34739244,0.041670665,0.2646221,-0.09683908,-0.22433542,0.45114833,0.18802397,-0.52467567,0.34354523,0.13748318,-0.12658769,-0.35499984,0.25908846,0.56920445,-0.6106053,0.27652094,0.36979893,0.02227183,-0.3062285,-0.69308877,0.25594157,0.23156013,-0.1325983,0.5099216,0.52516925,-0.40778366,0.31560034,0.3323393,-0.077663586,-0.9176244,0.47670028,0.10030364,-0.18643686,-0.21712899,0.54357696,0.17304434,-0.08758014,-0.20598881,0.34663528,-0.38922912,0.14602779,0.30221403,-0.3735634,0.1598913,-0.2238524,-0.33804467,-0.8329329,0.28227484,-0.80479723,-0.28915364,0.5449652,-0.00054358516,-0.017945822,0.055607915,0.32176277,0.35040504,-0.2553519,0.098826475,-0.2873572,-0.3032886,0.5863488,0.5688053,0.465599,-0.44884413,0.76414293,0.23629618,0.050218634,-0.024371238,0.029448546,0.49384058,0.018934846,0.67687124,0.08552456,0.012345805,-0.15489925,0.62800705,0.21748017,0.5373522,0.15118538,-0.12794675,-0.11438481,0.06760451,0.25795624,-0.4156437,-0.46266717,0.110772796,-0.12023946,0.02562793,0.51520264,-0.04984091,0.39634308,-0.031966455,-0.28650525,0.04695533,0.10598354,-0.16208164,-1.3317164,0.3318879,0.22203535,0.8992189,0.53449327,0.13468291,0.06958336,0.4888797,-0.2199138,0.1474749,0.56591886,-0.11289675,-0.4204559,0.58670765,-0.6380382,0.5868776,-0.20812069,0.118012905,-0.0109907575,-0.047390934,0.6314407,0.6660833,-0.11151635,0.00862189,-0.17093788,-0.31923723,0.11289195,-0.41120735,0.27250022,-0.44325167,-0.3066656,0.7844092,0.5611031,0.39540583,-0.27336577,-0.0016850417,0.144757,-0.06473007,0.4288422,-0.07296442,0.32817063,0.02599448,-0.33374304,-0.004736515,0.43211943,-0.02704492,0.040621366,-0.07416038,-0.33244565,0.1892412,-0.08707207,0.14944175,-0.28029603,-0.96606576,0.09489496,-0.4991718,-0.5533955,0.32527512,0.112429366,0.15702012,0.16494821,0.13253249,-0.39808103,0.39171565,-0.21534666,0.7779262,-0.08270654,-0.15839921,-0.20353062,0.37613815,0.25447154,-0.32688853,0.14039873,-0.13413182,0.29205024,-0.42842785,0.3217802,-0.0065443907,-0.37831333,0.02125022,-0.041541778,-0.22007634,0.52330434,-0.12803076,-0.16740337,0.01940615,-0.25402555,-0.16461152,-0.3643411,-0.135068,0.24679288,0.1801463,0.072616726,-0.3446411,-0.070593864,0.0008709614,0.37856585,-0.047002908,0.14005803,0.6449083,0.043756686,-0.76011175,0.0468594,0.24575917,0.5949884,0.191093,-0.20973644,-0.38524708,-0.44482136,-0.45772573,0.6028745,-0.25585872,0.3979796,0.10173053,-0.18718158,1.041188,0.20116527,1.4895369,-0.052613582,-0.40426925,0.1355493,0.58912945,-0.0921992,-0.15315276,-0.42322686,1.1541319,0.44139653,-0.30095336,-0.041473646,-0.28583354,-0.08542652,0.19403924,-0.15733185,-0.18627335,0.036698174,-0.509454,-0.23911563,0.106497675,0.28655317,0.012950714,-0.38710624,-0.063661724,0.39740616,-0.034611408,0.27441484,-0.529275,-0.312531,0.25765696,0.29178044,-0.23138659,0.16620804,-0.55229986,0.26210898,-0.78326917,0.20929815,-0.41168955,0.12349716,-0.031738814,-0.5193885,0.41708496,0.09156113,0.24663244,-0.56905705,-0.3861708,-0.24529178,0.4772544,0.3440931,0.13583912,0.730692,-0.3802262,-0.02484876,0.17159635,0.5003315,0.965005,-0.2695393,-0.102932215,0.17144758,-0.40891927,-0.8585877,0.3419778,-0.64238006,0.46621084,-0.21695064,-0.3657689,-0.8195447,0.07176857,0.18682583,-0.14091031,-0.033079453,-0.95610404,-0.087440975,0.29112697,-0.38366306,-0.09541952,-0.49175707,-0.06465519,0.5344626,-0.047157343,-0.4289104,0.1251085,0.21340132,-0.10265103,-0.55995935,0.13830748,-0.44304892,0.10715987,0.11021992,-0.33751485,-0.12295675,0.0908918,-0.71901554,0.08938543,0.20244654,-0.41277486,-0.0077903317,-0.24317652,0.00095507276,0.8947761,-0.28926688,0.2718948,-0.2795769,-0.46828064,-0.8625336,-0.21133436,0.3523371,0.08775454,0.14469999,-0.9682936,0.0431423,-0.30377585,-0.08074752,-0.03759134,-0.30172727,0.4293922,0.23882487,0.42188737,-0.13094492,-0.8802172,0.29686755,0.05714915,-0.24901658,-0.41270578,0.26352137,0.0652637,0.9796515,0.078384124,0.0718212,0.3377188,-0.78655124,0.10672997,-0.14159751,-0.05103812,-0.58870673,0.010875236 -116,0.57736665,-0.06358959,-0.5528782,-0.14430352,-0.32940578,0.16003142,-0.09046527,0.33959213,0.025948016,-0.63680404,-0.46713403,-0.21428028,-0.13053972,0.0022303509,-0.13292,-0.48919863,0.353682,0.3484135,-0.58300436,0.5679294,-0.45494395,0.59857774,0.14567734,0.1451285,0.16923301,0.10469541,0.18916692,-0.015555316,-0.216446,-0.35114655,0.12740271,0.17474772,-0.45274565,0.39601612,-0.15407334,-0.4210596,-0.03286704,-0.23775993,-0.19695657,-0.84152836,0.11442841,-0.7365892,0.49044192,-0.28246948,-0.27900708,-0.011764018,0.12736882,0.18456167,0.014338599,0.042888973,0.17531705,-0.084966674,-0.3188499,-0.33805832,-0.18777667,-0.4194852,-0.3941951,0.06603377,-0.16612536,-0.109043725,-0.29652914,0.28519052,-0.18793243,0.09227197,-0.102383986,0.4246535,-0.2637121,0.17380585,0.045779712,-0.19704987,-0.034195323,-0.73139256,-0.18633042,-0.17573959,0.28631863,-0.061428133,-0.12685864,0.18045847,0.10624865,0.6029068,0.07682843,-0.074616045,-0.24611609,-0.18698694,0.35269496,0.6102199,-0.018274684,-0.07367057,-0.17039302,-0.1775863,0.33025426,-0.071305126,0.28471,-0.5229179,-0.1717641,-0.36318558,-0.24789463,0.16725141,0.47657695,-0.32112586,0.013928693,0.2676369,0.62056947,0.07128807,-0.2672021,0.24657533,-0.26385805,-0.34694672,-0.08407039,0.042204563,0.14962897,0.49638665,-0.123383455,0.16801009,0.29965323,0.04718461,-0.11493007,0.16296183,0.0912168,0.049059648,-0.19039737,-0.08409126,0.06793273,-0.34779993,-0.13310567,-0.44695795,0.8480268,0.061110202,-0.65317154,0.43608972,-0.3594097,-0.015951399,0.009925031,0.46893552,0.60812205,0.4790656,-0.071788326,0.68975407,-0.40516073,0.03566388,-0.12310742,-0.102333106,-0.055786427,-0.032678846,-0.008495349,-0.3945933,0.2594364,-0.087510824,-0.120659076,-0.17537093,0.5452423,-0.47491643,-0.17243865,0.03861972,0.6401799,-0.42639977,-0.07775398,0.7665522,1.0235745,0.8558852,0.11956845,1.3015301,0.34320813,0.017269112,-0.23499845,-0.21773991,-0.5979032,0.19290026,0.20524615,0.5181972,-0.18746132,0.27636024,0.07550181,0.57108086,-0.49699,0.05588202,-0.22866017,0.34174216,0.02703586,-0.011224137,-0.29527777,-0.12653992,0.23701444,0.012938102,0.19872838,0.1926295,-0.24815449,0.37253377,0.049463466,1.5289123,-0.21678878,-0.02637386,0.09939623,0.25585455,0.04337309,-0.14799765,-0.01672431,0.073427744,0.2110365,-0.26195318,-0.35538134,-0.122441016,-0.04857143,-0.5275125,-0.24465176,-0.1234777,-0.12657149,-0.013958601,-0.23514284,-0.3622549,0.06050033,-0.52657056,0.5412403,-2.2452307,-0.15888911,-0.15380917,0.37756222,-0.14202656,-0.51546246,-0.10692581,-0.46916464,0.4982839,0.2885961,0.37563017,-0.424273,0.49927908,0.32877678,-0.37642255,-0.11101807,-0.6335129,0.017826658,0.022384562,0.27506855,0.11630501,-0.014213145,-0.36782214,-0.12644516,0.4153722,-0.21052358,0.1676646,0.6488712,0.284303,0.15100482,0.37747192,0.20488478,0.7067106,-0.35390583,-0.07375087,0.5241959,-0.40248615,0.08671558,-0.042040866,0.19014928,0.34096912,-0.5523946,-0.4223231,-0.9752586,-0.38282818,1.2934301,-0.147148,-0.48472896,0.1913557,-0.30368212,-0.3692425,0.10928067,0.34146452,-0.115684085,-0.14734194,-0.70107853,-0.21961528,0.024195036,0.3962067,-0.18999648,-0.14837515,-0.5089704,0.7136656,-0.29662082,0.5286567,0.35311782,0.27848896,-0.09284103,-0.25656685,0.02531851,1.089929,0.37755173,0.097348616,-0.19210038,-0.2959533,-0.4573135,-0.18467881,-0.0139158005,0.7819146,0.3942861,-0.017902734,0.038482126,0.22744407,-0.11414563,-0.13342513,-0.19980405,-0.38332075,-0.2000254,-0.0014723081,0.6236515,0.5860649,0.0971929,0.4773021,-0.18892115,0.38192353,-0.2935514,-0.5642263,0.37886178,0.6050364,-0.21740222,-0.37020996,0.51702887,0.34866813,-0.26847416,0.33249342,-0.56910485,-0.42384756,0.25150216,-0.026681652,-0.36919868,0.050009325,-0.32565954,0.2665378,-0.80968064,0.5300743,-0.45625323,-0.8978536,-0.35178983,-0.19637473,-1.9875834,0.20089012,0.04697587,-0.064128466,0.018594269,-0.1536662,-0.04432039,-0.16546696,-0.5446873,0.1514392,0.022849377,0.53524595,0.08584694,0.061190203,-0.28386155,-0.3151748,-0.16917141,0.16579205,0.02934454,0.3862174,-0.16622402,-0.3185236,0.04706641,-0.22290619,-0.08848361,-0.0015245286,-0.71177906,-0.7770923,-0.050560493,-0.458069,-0.28064182,0.5791151,-0.687206,0.043802842,-0.23783292,-0.10736425,-0.2303648,0.27827123,-0.05719515,0.14005902,0.025128622,-0.11752165,-0.10639226,-0.4352552,0.29773313,0.23006505,0.12223938,0.49611312,-0.17789723,0.06457246,0.25604314,0.572325,-0.028277615,0.85482186,0.2811715,-0.04148114,0.3653321,-0.09731027,-0.40217692,-0.367401,-0.027977398,-0.056199107,-0.47056305,-0.18477553,-0.18278188,-0.30329412,-0.69883907,0.40531492,0.18779221,-0.18871623,0.13997032,0.21845675,0.38930467,0.14089793,-0.09943371,-0.0866306,-0.13349146,-0.5000505,-0.57629544,-0.52617764,-0.49649826,0.025890555,1.1881938,-0.12720878,0.038955506,0.073225014,-0.24391015,0.14611192,0.25945723,0.11380784,0.05060649,0.5442615,-0.15794097,-0.6415522,0.49939,-0.097770065,-0.055231113,-0.44986293,0.36371738,0.61254436,-0.6828898,0.35692638,0.21711802,0.15079315,0.02679043,-0.5075627,-0.079326406,-0.1351549,-0.49336135,0.35300505,0.12264155,-0.65110934,0.335371,0.25858173,0.13846849,-0.8211196,0.26593116,-0.09906657,-0.31725386,0.187058,0.41896918,-0.019990517,-0.010917301,-0.31613094,0.0031872438,-0.37075788,0.34347758,0.20062064,-0.1474089,0.09760786,-0.41091824,-0.15424523,-0.6268002,-0.2518664,-0.5264523,-0.31726614,0.051376138,0.16418836,-0.088817105,0.24942112,0.29252908,0.44463533,-0.32585657,0.09745606,-0.27344176,-0.116548374,0.23460136,0.28867847,0.28773075,-0.40723264,0.4722318,-0.0047066305,0.034110326,-0.22310239,0.11160501,0.35323173,0.099148154,0.302496,0.070281826,0.15651025,0.24313776,0.87311214,0.18571562,0.4195151,0.09031475,-0.46002287,0.110836916,-0.09326673,0.14914912,-0.08378653,-0.441429,-0.044385202,-0.0031446172,0.12770694,0.45875946,0.2507187,0.5235535,-0.08956354,-0.56860244,0.05213184,0.05805784,0.02630705,-1.1295054,0.21890244,-0.06526643,0.9085068,0.48939693,-0.054852907,0.17589146,0.57861817,-0.20357664,0.18495886,-0.0032847065,-0.26012337,-0.20234026,0.22786158,-0.6377898,0.234543,-0.19006188,-0.020010876,0.32003453,-0.026653694,0.34230152,0.72302914,-0.06740518,0.1431187,0.03309339,-0.1436345,-0.10295778,-0.24993013,0.22646967,-0.5398951,-0.31066376,0.5976406,0.43604058,0.43150356,-0.30717328,0.13977844,0.13777402,-0.18347321,0.15832344,0.057568643,0.095575556,-0.06709482,-0.43680036,-0.22695869,0.69138014,-0.023283573,0.0029403658,0.30672044,-0.4143154,0.20079003,-0.05255155,0.119027406,-0.0073153605,-0.52568793,0.14775328,-0.28868768,-0.16540845,0.08471426,0.021516122,0.16940764,0.2673193,0.05031731,-0.22294767,0.48896393,0.24333389,0.73449314,0.22373445,-0.043300144,-0.25224406,0.16467656,0.29592538,-0.2766522,-0.04287883,-0.12887233,0.10888879,-0.7413622,0.25596708,0.0088924905,-0.32323796,0.1914246,0.027990071,-0.08845586,0.4668031,-0.11809237,-0.075788535,0.4330794,0.105497636,-0.15272276,0.08089935,-0.15093936,0.1780649,0.04750741,-0.22264704,-0.10506748,0.014920785,-0.022697357,0.11728169,0.06271393,0.27259958,0.4094319,-0.10872932,-0.45918608,0.14151004,0.11504797,0.62934744,-0.12657833,-0.013492222,0.013879111,-0.37304145,-0.40105012,0.31303045,-0.057268348,0.25510275,0.11712522,-0.2642212,0.5559958,0.19620067,1.0945233,0.03038867,-0.24919327,0.10017283,0.53714335,-0.017265104,0.09110964,-0.39766172,0.8194376,0.5357699,-0.17941931,-0.04183376,-0.2558881,-0.15354982,0.23672572,-0.024272852,0.013563707,-0.09284902,-0.6712064,-0.37531802,0.12527409,0.30132195,-0.11227141,0.01300944,0.16511177,0.25533238,-0.07515388,0.28264067,-0.45749947,-0.0030190807,0.27756065,0.18782432,-0.07356226,-0.03764157,-0.37924117,0.24320708,-0.8740866,0.047434393,-0.1355873,0.027961887,-0.19723204,-0.25846463,0.12563834,0.174692,0.2321313,-0.53189975,-0.3261743,-0.40456265,0.559851,0.18423806,0.28367278,0.62928987,-0.17590784,0.118925214,0.24238792,0.43653283,0.99643475,-0.12860686,0.046181403,0.50291526,-0.40738282,-0.49893254,0.116959065,-0.1381237,0.088844605,-0.15028845,-0.31506824,-0.40798935,0.30836242,0.30195045,-0.05026385,0.05643263,-0.6040796,-0.11026977,0.31646794,-0.22147104,-0.19938055,-0.19041698,-0.017742176,0.47118217,-0.15780888,-0.4645886,-0.075296015,0.28163618,-0.43213478,-0.61346734,-0.13277532,-0.37535465,0.3211466,0.15107816,-0.3691223,-0.2879202,0.12619406,-0.39158583,-0.14807357,0.072186574,-0.34995618,0.10139695,-0.2454096,0.11798865,0.7008337,-0.010232806,0.26847458,-0.4448851,-0.5935695,-0.6474832,-0.4021635,0.34495002,0.34334543,-0.307828,-0.43859306,-0.26884097,-0.36211866,-0.18859555,0.16958974,-0.26161176,0.42200515,0.26652262,0.35405394,-0.24798916,-1.1171939,0.102368504,0.21371815,-0.10988558,-0.4127271,0.2524485,0.02479483,0.73441494,0.059728578,0.01966679,0.12504259,-0.55383766,0.33302358,-0.16971119,-0.0443414,-0.46301043,0.13576585 -117,0.6115479,-0.025813244,-0.4652707,-0.27203438,-0.37725684,0.05282833,-0.038540855,0.20480278,0.35099265,-0.38020322,-0.114016734,-0.038807135,-0.068389475,-0.011871145,-0.11633641,-0.6879865,-0.029058943,0.22591455,-0.6526629,0.35239977,-0.326026,0.49617067,0.101429515,0.43832895,0.042793162,0.10268204,0.06603417,-0.11061887,0.017598914,-0.0702813,-0.16744262,0.15588346,-0.8074534,0.25791666,-0.13049263,-0.33589342,-0.04101966,-0.5454686,-0.3439207,-0.7710011,0.31642812,-0.77181786,0.8014184,0.048892483,-0.37985736,-0.15312031,-0.02931032,0.3347336,-0.20630452,0.22720265,0.27273706,-0.20480005,-0.0235473,-0.0925276,-0.25777745,-0.22851256,-0.52667785,-0.043529723,-0.3709871,0.006464376,-0.08425289,0.3047032,-0.17896003,0.0100933565,-0.34587398,0.4975695,-0.31075594,0.056604307,0.23365706,-0.120956525,0.299995,-0.4959763,-0.031584103,-0.12993176,0.16883205,-0.16961432,-0.30624968,0.19600064,0.19929862,0.7406298,0.14292324,-0.31217206,-0.040400527,0.083940305,-0.14619358,0.51131785,-0.25151923,-0.10130556,-0.2986088,-0.1373443,0.3608422,0.21188127,-0.11372698,-0.4625438,0.27257735,-0.12398399,-0.021939544,0.4108383,0.52485085,-0.14186262,-0.24494621,0.16708273,0.2785962,0.09347459,0.00524409,0.3711906,0.04818762,-0.42711464,-0.3223823,0.25580367,-0.087858126,0.3111849,-0.11719381,0.08467551,0.5116685,-0.022975596,-0.014011145,-0.00068239984,-0.004558123,0.21986839,-0.23771963,-0.39496592,0.30669996,-0.5793733,-0.024774514,-0.37719396,0.7046538,0.062120043,-0.76096874,0.27098358,-0.6452771,0.09282352,-0.12297515,0.6816892,0.8151392,0.47666475,0.03998373,0.8831147,-0.5282492,0.1461525,0.1650442,-0.15385373,0.019136135,-0.058122084,0.22710374,-0.3547602,-0.082693234,-0.14888176,-0.121033154,-0.1602202,0.27230674,-0.58532745,-0.23561089,-0.16006151,0.7359254,-0.36357898,0.115102306,0.8976028,1.1142713,0.9813025,0.061710063,1.3353225,0.4652948,-0.22526357,0.0109977815,-0.24406177,-0.57575434,0.1090486,0.19757472,-0.02359447,0.20300677,0.10196627,-0.063325875,0.37098843,-0.6938692,0.034169413,-0.17460912,0.18788172,-0.16841239,0.050417297,-0.5095788,-0.15488246,0.17382754,0.117671266,0.057471115,0.07195206,-0.2968645,0.17639717,0.17151836,1.1728624,-0.109375626,-0.092503555,-0.0054068496,0.27368876,0.10577261,-0.18154171,-0.09332888,0.17552076,0.471711,-0.17956482,-0.53788495,-0.005407619,-0.21940573,-0.13026452,-0.24086195,-0.17666174,0.033048328,-0.21226989,-0.41493225,-0.31755748,-0.0811349,-0.45304444,0.39591026,-2.2097654,-0.19642141,-0.15500304,0.47695324,-0.2670176,-0.2822528,-0.19604842,-0.4146336,0.24906634,0.3038493,0.28179276,-0.6199018,0.4487962,0.42718792,-0.40536693,-0.0049105263,-0.7257506,-0.112879366,0.070623025,0.30064213,-0.036901824,-0.22697504,-0.27680206,0.15663265,0.5252436,0.24057439,0.10932993,0.26103657,0.5064531,0.056230452,0.49183607,0.16708367,0.53508633,-0.32368013,-0.06948655,0.42535165,-0.5103375,0.11893945,-0.023795005,0.03176193,0.3741039,-0.6747049,-0.6462545,-0.8384559,-0.45895684,1.1172255,-0.3159768,-0.4555879,0.273733,-0.31907612,-0.19352333,0.14486068,0.5396051,-0.20936812,-0.010472619,-0.83822095,-0.2807451,0.0076853773,0.3384968,-0.014918786,0.2068049,-0.48815617,0.6171466,-0.33627856,0.46716785,0.44724756,0.34012133,-0.038116418,-0.67161083,0.066696376,0.9209348,0.3640017,0.18699664,-0.21024463,0.07804188,-0.22763804,-0.11002937,0.062558435,0.7423108,0.9898177,-0.12727328,0.02761024,0.4115404,-0.16379428,0.024915596,0.023544298,-0.4766467,-0.2789473,0.05354853,0.5647992,0.5033168,-0.031917516,0.30415022,-0.2672819,0.337573,-0.20401861,-0.48468348,0.44178292,1.2166641,-0.08749051,-0.16984613,0.7063471,0.43130296,-0.35900578,0.42268282,-0.77165896,-0.30985147,0.44484857,0.02090581,-0.6765134,0.099163875,-0.3550124,0.15224746,-0.84463716,0.52055305,-0.25869265,-0.84415084,-0.49675843,-0.12332846,-1.9471259,0.16935198,-0.24665777,0.025578452,-0.18797328,-0.37686855,0.29089308,-0.27723745,-0.7050715,0.098054975,0.025474511,0.39096445,0.034068037,0.19311169,-0.2295022,-0.113340564,-0.3271825,0.2695294,0.37028444,0.14216179,-0.0016958163,-0.31125847,0.00091137335,-0.07923528,-0.27239606,-0.013177172,-0.7162195,-0.74230903,-0.061625235,-0.6972773,-0.16470344,0.6401625,-0.35557073,-0.039499182,-0.34813198,-0.02847175,-0.25422123,0.355264,0.06821832,0.33452642,0.035711642,-0.081707805,-0.25979382,-0.27663013,0.28656626,0.21831986,0.1925494,0.19816747,-0.23196891,0.1828398,0.2988888,0.71704096,-0.10097441,0.7629211,0.33468777,-0.07437929,0.24519055,-0.29230186,-0.33025867,-0.61374915,-0.23423305,-0.12786561,-0.46570507,-0.27533254,-0.05890375,-0.5750551,-0.824928,0.30097836,-0.0989215,0.1298059,0.040209297,0.1927407,0.43244797,-0.043246742,0.012033754,-0.22340377,-0.13950506,-0.48936382,-0.33977216,-0.57542264,-0.49388555,0.104594484,1.4334834,0.065483905,0.16498944,0.3463965,-0.24560341,0.16584308,0.086215846,-0.053404294,0.1962591,0.7712825,0.023830872,-0.6891582,0.11223487,-0.000634966,-0.05649257,-0.6489032,0.2109557,0.9254179,-0.8694081,0.6124722,0.32056016,0.18300611,-0.24453856,-0.6232955,-0.377981,0.03612482,-0.19119708,0.7054994,0.17764029,-0.40951437,0.3906712,0.124093205,0.013683291,-0.7309264,0.4745223,0.050760806,-0.286119,0.21230489,0.43128088,-0.21236412,-0.1344437,0.052097134,0.36104774,-0.22911622,0.45473364,0.1932288,-0.09445547,0.20961627,-0.13003644,-0.23096617,-0.67549884,0.07482866,-0.6701952,-0.36858705,0.19858955,-0.11247897,0.019813826,0.36578682,0.0584662,0.50803363,-0.10030387,0.19242646,-0.10564804,-0.33976793,0.30942968,0.491602,0.3551037,-0.45609182,0.54959834,0.024251156,-0.09944292,-0.28055242,0.23507604,0.31579974,0.07731558,0.34088212,-0.18346699,-0.06344673,0.22183639,0.6393077,0.1148799,0.30383512,0.17867978,0.02885241,0.28174636,0.120420255,0.1486556,-0.16612604,-0.33144346,-0.16419172,-0.12362231,0.09674503,0.17995127,0.17241511,0.3142343,-0.18047921,-0.3233419,0.086929955,0.060927756,-0.23717652,-1.2928379,0.24038602,0.14216073,0.6732126,0.505259,0.00023306791,-0.00013851661,0.42987177,-0.1029979,0.16419636,0.48812085,0.08590675,-0.22214708,0.49780816,-0.43275928,0.38633266,-0.11966273,0.116771095,-0.0010868311,0.21164212,0.43657273,0.8703791,0.0056385673,0.010832573,-0.17480828,-0.07094239,0.08543779,-0.38746852,0.26167247,-0.5651451,-0.37404233,0.64204717,0.45522755,0.34381527,-0.31240466,-0.09215762,0.083012804,-0.23279117,0.18156348,0.021118935,-0.182991,0.16707538,-0.5955191,-0.21547945,0.45896918,-0.06460869,-0.22341046,0.18550849,-0.15514478,0.19438662,-0.030551754,0.050088324,0.056905113,-0.76421064,-0.19464618,-0.46945065,-0.095107034,0.11788731,-0.41276306,0.032339778,0.123322874,0.08825998,-0.3202909,0.10477896,0.2785858,0.7971702,0.053045347,-0.14728275,-0.40232074,0.14924267,0.21580952,-0.34274548,-0.10736457,-0.1685271,0.13485731,-0.70725626,0.46914372,-0.008353091,-0.21243699,0.30365217,-0.124829054,-0.007325429,0.38189915,-0.27796453,-0.11987963,0.43340996,-0.038253717,-0.36135462,0.034237016,-0.16333863,0.179024,0.27078387,-0.058225825,0.05307942,-0.14532755,-0.29799163,0.33238596,0.2687718,0.30548027,0.4656257,-0.023780452,-0.5232252,0.13906902,0.020862559,0.48335078,0.07151105,-0.051569257,-0.12202121,-0.34764507,-0.10127092,0.500048,-0.20072031,0.17128512,-0.15925834,-0.3541446,0.9042021,0.35655075,1.1727293,-0.039264705,-0.2702848,-0.18249358,0.56675726,-0.05921708,-0.046787288,-0.43034336,1.0155964,0.5423833,-0.07891774,-0.15874498,-0.35817772,-0.15752769,0.26933244,-0.1483579,-0.2626681,-0.14262964,-0.81878144,-0.29499292,0.21040668,0.3433226,-0.124385715,0.015155987,0.12608151,0.14993915,-0.097806096,0.52467704,-0.5333057,0.1595615,0.113066725,0.23383668,0.18205172,0.35425928,-0.34556696,0.19288714,-0.76317,0.19080004,-0.2965555,-0.068418495,-0.011315272,-0.31795618,0.08151014,0.034523975,0.27131242,-0.48046714,-0.24347201,-0.3306709,0.6152514,0.14487371,0.21941511,0.9040371,-0.22600159,-0.08410346,0.20685238,0.524844,1.4000537,-0.0939385,0.09705739,0.14954899,-0.35403207,-0.6074397,0.20773959,-0.25983414,-0.13779898,-0.14420986,-0.4449727,-0.34585002,0.1868438,0.1457911,-0.2608922,0.13809913,-0.57601917,-0.045120366,0.4792349,-0.15477268,-0.29188222,-0.34527633,0.29484156,0.66283923,-0.1692728,-0.35063598,-0.10445829,0.32829788,-0.4487503,-0.6973867,0.009552956,-0.5153318,0.29042098,0.068124875,-0.3952119,-0.07499489,0.14392985,-0.5092033,0.093233556,0.3117754,-0.36629534,-0.004530047,-0.053705342,-0.25375915,0.89442325,0.11931695,-0.0795503,-0.6769599,-0.45786032,-0.8430938,-0.24205995,-0.07087767,0.47002384,-0.082481936,-0.5911727,-0.11788313,-0.2311233,-0.010125822,0.16199511,-0.39760125,0.40900597,0.3078214,0.72399545,-0.2776669,-0.968998,0.029889595,0.12096645,-0.27000457,-0.40475512,0.47641328,0.1476824,0.6200094,0.058665097,0.078724034,0.040307395,-0.58756936,0.29497945,-0.1760496,-0.18447924,-0.8364197,0.08228911 -118,0.34400243,-0.215309,-0.35711065,-0.18712172,-0.17149445,-0.1908216,-0.3114403,0.47895297,0.26434797,-0.34511486,-0.33917996,-0.06950353,0.1479085,0.5129544,-0.2625776,-0.43626028,0.04775242,0.06121563,-0.64337367,0.50784576,-0.44557008,0.15217194,0.22894831,0.4220008,-0.007219578,0.31391293,0.48579472,-0.0013629913,0.22619939,-0.3043583,-0.2118152,0.25131187,-0.7437572,0.056062263,-0.31672308,-0.35562336,0.199819,-0.5676769,-0.08753164,-0.88031626,0.250096,-1.2440329,0.60666066,-0.13658285,-0.16819893,-0.11398591,0.34369808,0.1599537,-0.28853136,-0.24709897,0.10896587,-0.26030836,-0.26075664,-0.30590186,0.07217773,-0.54044753,-0.5277447,-0.0055683106,-0.50473416,-0.35327607,-0.4633425,0.23705296,-0.39058456,0.23755908,-0.15844603,0.35678357,-0.5452983,0.040369444,0.31582183,-0.33107334,0.50009567,-0.62392724,0.019036178,-0.124381125,0.5418443,-0.0039303065,-0.18870643,0.48541206,0.5450467,0.59330624,0.2340945,-0.34278077,-0.3642498,-0.21387395,-0.049133487,0.60280854,-0.21395257,-0.44482166,-0.21881768,0.17217726,0.35126907,0.54000187,0.08813506,-0.16047077,-0.033837117,-0.18280683,-0.22171402,0.68213415,0.7091461,-0.2758439,-0.27027887,0.15113191,0.5869194,0.17728679,-0.18604922,-0.05594318,-0.038849384,-0.5521141,-0.20215921,-0.21343951,-0.23011348,0.7182414,-0.103922166,0.0687681,0.8792812,-0.06490159,-0.0026860684,-0.0030254095,-0.10914715,-0.20660457,-0.30979082,-0.025919914,0.4217072,-0.6248212,0.052731086,-0.38324413,0.6271299,0.0005915724,-0.79197633,0.5080681,-0.4160615,0.233783,-0.083752684,0.6211084,0.6148166,0.48598605,0.5949667,0.84627724,-0.4129331,0.037490357,0.053340625,-0.41071177,0.108070016,-0.3964696,0.28872856,-0.4481412,0.22577834,0.015576839,0.2607574,0.10538708,0.37133336,-0.6073426,-0.16922323,0.5320972,0.9576216,-0.2082129,-0.14669858,0.7984556,1.199876,0.8815649,0.014205757,1.349119,-0.017206993,-0.21604404,0.21714573,0.17548402,-0.7994108,0.15883262,0.62337875,0.23776111,0.31920266,0.09703827,-0.00497759,0.2881901,-0.52642,-0.18279675,0.00035413803,0.32387337,0.31130344,-0.21660845,-0.7099771,0.03199787,0.0622993,-0.05165423,0.014900821,0.24930565,-0.13757665,0.26023197,0.010732603,1.1937532,-0.05118672,0.15095551,0.14936492,0.5191143,0.18317476,0.13739729,-0.023669621,0.35655662,0.18464577,0.18485157,-0.5071279,0.2949711,-0.3445212,-0.40061584,0.016508307,-0.40138063,-0.210464,0.12854543,-0.3168048,-0.11282827,-0.18110302,-0.12053032,0.28903842,-2.7696366,-0.27314886,-0.20486817,0.4447413,-0.29092798,-0.0072249114,-0.008661521,-0.52266514,0.30614072,0.28228745,0.6708573,-0.8542137,0.40266562,0.6572572,-0.6347408,-0.118426904,-0.61472875,-0.045304727,0.12165189,0.524214,0.3206268,-0.44865614,-0.14791135,0.26737207,0.8885627,0.36970973,0.33538046,0.57834053,0.5887035,-0.19370179,0.5921582,-0.36742148,0.61369383,-0.352215,-0.15117696,0.22956327,-0.25791705,0.4108439,-0.40797773,0.09248873,0.5365406,-0.506426,-1.1247475,-0.68412036,-0.4500266,1.0857056,-0.34462905,-0.6580558,0.26422176,0.013638166,0.060510613,0.05764655,0.7842399,-0.11546028,0.40013242,-0.74567807,0.119400665,-0.3015214,0.1602934,0.09345383,-0.08324255,-0.40894866,0.855673,-0.099035844,0.6412717,0.31673756,0.16132636,-0.27388814,-0.33600903,0.09659493,0.77683485,0.47790346,0.021070814,-0.229091,-0.14960971,-0.2513042,-0.397051,-0.06923455,0.8904114,0.88269293,-0.23714533,-0.0066677304,0.22875527,0.20477429,-0.009314354,-0.07595659,-0.31470847,-0.17143485,0.09862738,0.46407884,0.9179181,-0.44185486,0.12411143,-0.15589781,0.47007233,0.09019391,-0.40113878,0.4350422,0.35364476,-0.22693601,0.07990287,0.7825998,0.50239575,-0.41040283,0.51993144,-0.7150071,-0.5173406,0.67045397,-0.08052269,-0.55612576,0.102448046,-0.21413453,-0.053622685,-0.746417,0.39691824,-0.46250877,-0.41739082,-0.11353338,-0.107630655,-3.3977165,0.2613995,-0.081369996,-0.056926638,-0.49770063,-0.14133231,0.19083074,-0.74145776,-0.92897236,0.2493422,0.15105508,0.46867585,-0.12692942,0.10050883,-0.3134882,-0.30411938,0.04495299,0.2919718,0.063317955,0.2513202,-0.21027803,-0.489611,-0.2817346,0.17027113,-0.45953655,0.29945794,-0.6051656,-0.532742,-0.19510612,-0.52798474,-0.11151767,0.57250655,-0.5171177,-0.022172052,-0.3464717,0.19503719,-0.40438884,0.037462633,-0.039242934,0.1785382,-0.00462524,-0.1938512,0.18796852,-0.19543734,0.62418836,-0.06314706,0.5291214,0.11669831,-0.08747561,0.037769347,0.5561982,0.8365448,-0.24770078,1.2670157,0.35783488,-0.1314111,0.2467258,0.013499081,-0.32233554,-0.81393707,-0.3799457,0.101538755,-0.54720914,-0.5092323,0.2798125,-0.32261693,-0.81866187,0.7288412,0.01169914,0.54428905,0.06057186,0.3177994,0.40418544,-0.34843293,-0.12609491,-0.026496524,-0.111970805,-0.8870897,-0.23420635,-0.7092511,-0.47602695,-0.17246039,0.66174877,-0.2574494,-0.0054293782,0.13098691,0.05834527,0.0728455,0.12959437,0.25750226,0.13084331,0.51989853,0.13885048,-0.77921045,0.5521411,-0.001947099,-0.14068823,-0.48609573,0.19322775,0.38730577,-0.8663517,0.6402527,0.40725088,-0.015093371,0.026749115,-0.7158357,-0.40353498,-0.17403084,-0.19047526,0.41251713,0.17270307,-0.9959491,0.48087472,0.29613525,-0.6026327,-0.7091511,0.3550485,-0.34907803,-0.058992952,-0.07665704,0.3441773,0.21686144,-0.19591707,-0.04036646,-0.051875334,-0.50972503,0.34303296,0.0015454709,0.07880974,0.45569307,-0.023732971,-0.30228573,-0.9367021,-0.12526032,-0.61198735,-0.12051697,0.4193132,-0.23606691,-0.4246549,0.10863829,0.18398423,0.37327448,-0.41688824,0.21611658,0.091681376,-0.5956046,0.323934,0.6219365,0.4910818,-0.41002375,0.58820343,0.13948488,-0.31379333,-0.11478088,-0.03056166,0.363883,-0.10853672,0.28051683,-0.22499755,-0.0031142994,0.24888368,0.8888132,0.21273854,0.3813769,0.08912398,0.06575036,0.5541606,0.0063844323,0.21280794,0.110305786,-0.7070948,0.26080117,-0.2494059,-0.09611754,0.65441287,0.26271486,0.18734847,0.13920927,-0.14345619,-0.12491801,0.40401095,-0.12284286,-1.2062136,0.26932684,0.115042016,0.9392732,0.39823574,0.15384609,-0.14568423,0.73501027,-0.08639418,0.10995011,0.6380178,-0.04676978,-0.5124845,0.88424224,-0.63923556,0.27854323,-0.1852403,0.0045663686,0.15813299,0.31763855,0.26099116,0.7943936,-0.28569174,0.014745844,-0.19850992,-0.07801489,0.03296369,-0.5086797,-0.08675248,0.021911483,-0.32096064,0.6246809,0.48208198,0.44382066,-0.20878963,-0.0051711337,-0.098127455,-0.15493432,0.27913463,-0.20893851,-0.12808286,-0.056530714,-0.4478828,0.04916971,0.640799,0.3228714,0.27873763,-0.34108981,-0.29173866,0.20883206,-0.11578195,-0.26441103,-0.0349061,-0.82367915,0.12105961,-0.23758993,-0.5165514,0.6312982,-0.02453644,0.04645742,0.25847194,-0.04364624,0.017877746,0.25349343,0.09979026,0.690163,0.034598015,-0.17984152,-0.43755913,0.0712461,0.17204544,-0.33565426,0.31420708,-0.39061612,-0.026872087,-0.4228314,0.6300121,-0.21057479,-0.48443618,0.24976508,-0.25589222,-0.017352143,0.56992114,-0.014086962,-0.080145426,-0.06761036,-0.23304597,-0.2698349,-0.37388855,-0.29692993,0.24584499,0.06711268,-0.0022285103,-0.13256018,-0.2759574,-0.3403504,0.4481104,0.021727705,0.37375516,0.19519868,0.10882131,-0.11992943,0.2533423,0.15974432,0.7023777,0.06172661,-0.07041218,-0.2473152,-0.58733934,-0.3982526,-0.06439398,0.019897792,0.30004615,0.14258003,-0.08083037,0.7574888,0.011118789,1.1414511,0.12887335,-0.37565714,-0.09007009,0.6795099,-0.2658458,-0.07677306,-0.44112596,1.0940294,0.5836938,-0.101673104,-0.009050598,-0.52465534,0.11088268,0.3618024,-0.3162272,0.016373921,-0.047624577,-0.6413297,-0.45363826,0.19591734,0.25103834,0.08090548,-0.12413788,0.10541318,0.052499123,0.07586036,0.4806486,-0.6269541,-0.51102364,0.22453614,0.15572727,-0.16401836,0.041422985,-0.2791123,0.42506784,-0.59280884,0.1584272,-0.83834493,0.026061874,-0.39675862,-0.3215531,0.0887535,-0.33058015,0.60620683,-0.20159736,-0.3392241,0.14287841,0.16682667,0.22866273,0.08989328,0.52595776,-0.24113293,-0.051435173,0.08734991,0.746061,1.19314,-0.6119355,0.23064518,0.13779284,-0.4073902,-0.5117403,0.37604752,-0.42459854,-0.15257215,-0.14347418,-0.40606576,-0.5512321,0.11366744,0.2443273,-0.049403407,0.10202885,-0.69693625,-0.30334556,0.13627425,-0.36029026,-0.16727237,-0.21804032,0.44328427,0.8343584,-0.26652694,-0.30724087,0.11755592,0.27856356,-0.1360687,-0.79608774,-0.16250801,-0.19181743,0.36349744,0.08952974,-0.43980366,-0.036289036,0.07139601,-0.43861523,0.1010882,0.2097455,-0.3004188,0.18768677,-0.48509678,0.06596745,0.9647152,-0.19529729,-0.023480058,-0.66360044,-0.48519078,-0.84685695,-0.33299664,0.28370914,0.11532588,-0.020494008,-0.25980958,-0.15013826,-0.19998172,-0.16711369,-0.07560621,-0.41644192,0.3370063,0.017133554,0.83067924,-0.4513268,-0.89488447,0.13119106,0.3060773,0.26648855,-0.6072401,0.5912508,0.0240103,0.826914,0.00076364574,-0.09832591,-0.04687188,-0.45243567,-0.01922085,-0.3830579,0.08246754,-0.6750231,0.16466299 -119,0.31832233,-0.21892,-0.62400126,-0.19801927,-0.3776127,0.0022731542,-0.26042905,0.22368284,0.3176377,-0.13845085,-0.141268,0.11828928,0.025792992,0.27501872,-0.13023779,-0.6969563,-0.1100266,0.22600028,-0.6530656,0.46361637,-0.42534444,0.39760256,0.045019064,0.29849255,0.065184295,0.50413,0.20692001,0.06411991,-0.054634035,0.03816248,-0.37330168,0.25714725,-0.31665313,0.1738547,-0.02160375,-0.15527129,0.114722535,-0.22050259,-0.21542828,-0.72580063,0.07346888,-0.82969844,0.5844435,-0.23749372,-0.15263371,-0.11431443,0.25925204,0.22188243,-0.49438223,-0.068513565,0.1498871,-0.40277842,-0.34586126,-0.34403285,-0.14844385,-0.5475029,-0.37106225,-0.048010167,-0.71254885,-0.2886445,-0.22693641,0.21381909,-0.34222546,-0.015925828,-0.08927082,0.4348653,-0.4157533,-0.029963596,0.2247619,-0.3362606,0.020416351,-0.5885391,0.025522232,-0.119036056,0.43869838,0.1366238,-0.21583469,0.42757156,0.36721224,0.49262163,0.36790025,-0.3536113,-0.38994113,-0.25005037,0.102257475,0.28839296,-0.2489574,-0.29823872,-0.19080216,0.041310225,0.45234734,0.25196615,0.051230326,-0.049563654,0.01618111,-0.0773303,-0.15986103,0.57513887,0.522725,-0.42241427,-0.24933973,0.336088,0.51460904,0.15816508,-0.28011402,-0.034562565,-0.14108321,-0.44808128,-0.259515,0.00091495516,-0.12356926,0.43225244,-0.1875096,0.023475686,0.8624998,-0.18035312,-0.14512059,0.07358395,0.13987878,-0.16128306,-0.3021521,-0.14927877,0.07295559,-0.58744186,-0.060573895,-0.22961421,0.687179,0.14177507,-0.60828894,0.407729,-0.29226273,0.14504203,-0.060591187,0.73528653,0.7244216,0.62959075,0.3266212,0.9219414,-0.3262124,0.23931177,-0.12063868,-0.38747194,0.03196123,-0.19384626,0.19588003,-0.5147036,0.3594471,-0.13649948,-0.012252744,0.17765054,0.34541407,-0.5113795,-0.1314878,0.26777294,0.80697554,-0.31719667,-0.13551651,0.7516795,1.1382301,0.94867414,-0.046707053,1.1957285,0.23096615,-0.28159052,-0.100965925,-0.30810732,-0.5201086,0.25253758,0.38872418,0.076020986,0.32656002,0.038249586,-0.014752205,0.32456544,-0.43697172,-0.11438747,-0.12458888,0.32188728,0.057473682,0.03736542,-0.4939933,-0.0860658,0.1394594,-0.086859785,0.35636082,0.23298164,-0.3058909,0.45935905,-0.0017155528,1.1311307,-0.11969752,-0.0076191663,0.0033285082,0.57001686,0.38577572,0.09038511,0.010422013,0.5083059,0.38744944,-0.07681465,-0.5618798,0.124417976,-0.45760304,-0.34385964,-0.17259912,-0.3496757,0.0077142077,0.22083692,-0.27295843,-0.29685062,0.02367915,-0.32371286,0.32563254,-2.6043468,-0.27038434,-0.14837542,0.3112587,-0.3081052,-0.16577671,-0.08080271,-0.49731112,0.25194442,0.20165531,0.44977996,-0.53054935,0.48893943,0.54990673,-0.62653905,-0.23194546,-0.5733617,-0.07266704,-0.14072704,0.63407683,0.19925073,-0.19264857,-0.2755312,0.054925445,0.7732548,0.030955493,0.18588564,0.59130687,0.3757443,-0.08349053,0.41154978,0.13896093,0.727638,-0.32531983,-0.23389012,0.38287833,-0.24683245,0.2558158,-0.19824511,0.09805039,0.547641,-0.42909902,-0.87335175,-0.6428097,-0.051630434,1.1570399,-0.37418938,-0.5673615,0.18201618,-0.1752572,-0.15521677,0.097282626,0.6621731,-0.042764504,0.09308095,-0.62728924,0.22004388,-0.019542877,0.26460642,0.10560133,-0.06735599,-0.261382,0.71854234,-0.1009734,0.57962745,0.17773663,0.35148895,-0.21266046,-0.25966606,0.11606897,0.8891768,0.4054961,-0.06516843,-0.15977901,-0.2772828,-0.12137072,-0.2852599,-0.01878767,0.63287884,0.6990214,-0.02302425,0.07427252,0.25706565,-0.053844746,0.092895985,-0.24785855,-0.22963998,-0.07728282,0.15439363,0.33822325,0.6562099,-0.13244793,0.36315617,-0.19517629,0.35611555,0.0036788443,-0.6624985,0.6422282,0.6179782,-0.30794534,-0.15834488,0.7292337,0.45622733,-0.5077667,0.47192875,-0.69167423,-0.35030204,0.55801064,-0.29224452,-0.37340528,0.1005334,-0.23088999,0.16590884,-0.65606743,0.22492243,-0.23146054,-0.6032862,-0.38597074,-0.12306147,-3.675448,0.1669449,-0.32436916,0.024758132,-0.37146002,-0.121835686,0.3191484,-0.5877221,-0.48576388,0.17739964,0.2582442,0.6699118,-0.08719646,0.126845,-0.24700724,-0.35876408,-0.023051571,0.3003783,0.025035245,0.287329,-0.12767272,-0.39384562,0.017075742,0.062028386,-0.47689238,0.13456677,-0.55844,-0.38160405,-0.07890596,-0.56476665,-0.17725798,0.6707062,-0.33767125,0.031844594,-0.30184487,0.21004926,-0.11122282,0.063769415,0.045699697,0.15158863,0.10254605,-0.12664987,0.26087287,-0.30903018,0.44686157,-0.12783328,0.37764028,0.15089189,0.0126439575,0.031879943,0.5394743,0.64899814,-0.3195539,1.1437227,0.31330487,-0.18300582,0.32849413,-0.11657712,-0.49230713,-0.69465,-0.42610657,0.081629746,-0.5173517,-0.24922228,0.11645709,-0.36741525,-1.0724014,0.6644284,-0.052340522,0.48645872,-0.06029688,0.36257318,0.51335233,-0.26901817,-0.068061545,-0.13954026,-0.34312946,-0.49781743,-0.21552506,-0.75521725,-0.51668346,0.04086613,0.92664784,-0.41387874,-0.009922341,0.017519506,-0.2611614,-0.09289697,0.07788045,0.28802013,0.3001388,0.5479515,-0.057401516,-0.6320165,0.35318077,-0.13111669,-0.07484929,-0.57891756,0.22673334,0.5550589,-0.7700775,0.5411883,0.4052343,0.024491219,-0.012886198,-0.52267677,-0.1915959,-0.14356123,-0.090185374,0.589145,0.20398097,-0.8440098,0.6034712,0.27161464,-0.4178676,-0.6744406,0.19933383,-0.1657061,-0.10051472,-0.13466215,0.40971145,0.19159634,-0.110492304,-0.17925343,0.052956842,-0.3530017,0.31967112,0.16765124,-0.18411057,0.35425344,-0.13562395,-0.4372403,-0.77120847,-0.29619455,-0.5671661,-0.19363898,0.20797314,0.012478837,-0.03953176,0.050364025,-0.075627714,0.49386257,-0.3152536,0.12330442,0.02133882,-0.39334697,0.40992782,0.4896013,0.3360618,-0.39033195,0.52327895,0.074681364,-0.26658112,-0.09642749,-0.03216309,0.47084695,-0.02449801,0.43776256,-0.058953013,-0.06739426,0.28614452,0.8056242,0.08178456,0.43130007,0.045641087,-0.14247163,0.4303085,-0.005644691,0.10953428,0.031722177,-0.41442928,0.0035709182,-0.1641229,0.21336517,0.63784206,0.30957633,0.49591026,0.092191964,-0.11883953,-0.08270993,0.047661748,0.082625836,-1.228172,0.40353042,0.15779285,0.7808164,0.18200137,0.25449672,-0.3614765,0.7902553,-0.16174693,0.049188387,0.37365052,-0.0029598593,-0.31636536,0.65222424,-0.59560305,0.424537,-0.06324434,-0.020463474,0.23920168,0.10206497,0.2741763,0.95275855,-0.3024338,-0.074899785,-0.10194551,-0.18126851,0.050564885,-0.32976002,-0.031553924,-0.34727228,-0.576621,0.6379293,0.34074402,0.3900557,-0.17514925,-0.12332379,-0.005713743,-0.20032574,0.26307708,-0.2056031,0.0514886,-0.0021547575,-0.4272775,-0.17085448,0.49826214,0.19640249,0.14667231,-0.25704405,-0.101703316,0.05051147,-0.11079175,-0.09904739,-0.058018252,-0.4083905,-0.063219726,-0.09371303,-0.6663007,0.6553217,-0.20845231,0.089596584,0.20739351,-0.0840362,-0.17604272,0.29576027,0.1723569,0.68344134,0.12548266,-0.17599675,-0.41625118,0.076822236,0.16928656,-0.28494936,0.22317669,-0.42997894,0.13869114,-0.52415115,0.5683299,-0.3987728,-0.46189362,0.30480227,-0.3161582,0.009169014,0.4685299,-0.10810902,-0.1365222,0.16944557,-0.051520698,-0.36975572,-0.35249206,-0.30344766,0.21203999,0.06349607,-0.027920691,-0.26655358,-0.39963835,-0.14902487,0.41766325,0.04193201,0.18501256,0.17062283,-0.07646991,-0.08463119,0.19936164,0.20474546,0.5317085,0.16422053,-0.062055264,-0.33177522,-0.41831493,-0.42667913,0.050118633,-0.025520945,0.13412526,0.081338935,-0.22181793,1.0293208,-0.06766525,1.2471071,-0.018093575,-0.4272319,0.02098773,0.69093996,-0.060248177,0.14958976,-0.17133328,0.9150093,0.62748045,-0.08182047,0.027827676,-0.60254997,-0.058519244,0.46182722,-0.42391473,-0.057144213,-0.08881729,-0.6208815,-0.47443253,0.38419655,0.18797614,0.23052342,-0.08574751,0.12304915,-0.005052185,0.20802145,0.44577816,-0.6951259,-0.1217706,0.28126186,0.16593847,-0.19706102,0.25824812,-0.36589852,0.4735942,-0.7803919,0.08862403,-0.42599303,0.06745991,-0.21342368,-0.45514306,0.24157764,-0.060493287,0.42759424,-0.32477432,-0.4016115,-0.15787284,0.49472135,0.023755586,0.05388447,0.5436801,-0.31223163,-0.05427934,0.19452009,0.60425085,1.1314771,-0.32233682,0.14940305,0.33442557,-0.40702865,-0.58341193,0.40725186,-0.36694038,-0.04083344,-0.02729098,-0.40322247,-0.32426766,0.24398385,0.22716531,0.104468174,0.22891034,-0.547139,-0.19613902,0.1735108,-0.3438273,-0.05521198,-0.00981325,0.48133644,0.5691414,-0.3814642,-0.44866392,0.061065625,0.46831152,-0.21571782,-0.6366016,-0.0132173365,-0.17233673,0.41830376,0.28476277,-0.2844333,-0.020151345,0.024775958,-0.5542925,-0.035558917,0.34936234,-0.39596665,0.14178883,-0.3452795,0.15898687,0.6678867,-0.12846638,0.20190945,-0.72557384,-0.4874588,-0.91559154,-0.32764733,0.021511538,0.13931698,-0.06008307,-0.5599725,0.05277017,-0.27919844,-0.07678523,0.14879252,-0.62310326,0.42813158,0.14478633,0.4816633,-0.3829114,-0.9613726,-0.03169297,0.15533921,-0.15772398,-0.61594087,0.6283826,-0.15444864,1.0223446,0.104766764,-0.118423134,0.107117385,-0.53017706,0.1824154,-0.4782693,-0.2851641,-0.71396506,0.05099685 -120,0.3842117,-0.24764174,-0.5832698,-0.04206442,-0.28451654,-0.10184508,-0.19622692,0.4251644,0.32161948,-0.40362787,-0.20275617,-0.147199,-0.12937501,0.38420302,-0.32707447,-0.29966223,-0.100344196,0.17731713,-0.5254554,0.5162955,-0.43093312,0.21606673,0.067548834,0.36361414,0.045278806,0.13193348,0.22440775,0.038019996,-0.009672,-0.3366141,0.31662017,0.13681298,-0.77949846,0.17705995,-0.13656577,-0.40471885,-0.020595444,-0.42866796,-0.43493384,-0.8395244,0.36582372,-1.0433838,0.44928953,0.028933961,-0.30570972,0.31503648,0.16317202,0.21476981,-0.14619964,-0.12773885,0.20656984,-0.21229139,-0.21112704,-0.19531728,0.10215163,-0.3670139,-0.6775347,-0.07265758,-0.3614333,-0.017007185,-0.37233162,0.1979707,-0.4153444,0.24077429,-0.27859533,0.44146648,-0.48958272,0.0046018776,0.28191125,-0.035050213,0.40295961,-0.61951965,-0.16496271,-0.117897466,0.06953049,-0.042083867,-0.14522918,0.42392892,0.1885409,0.3414545,-0.15352513,-0.25392175,-0.21094224,-0.048648365,0.20967294,0.28345028,-0.29812807,-0.25488868,-0.043508813,-0.10682518,0.05796252,0.07878478,0.14426623,-0.3024534,-0.042869393,0.003058727,-0.19809628,0.36063963,0.5703458,-0.1525028,-0.14668903,0.17672104,0.5419748,0.09890541,-0.07924134,-0.03407979,0.008507426,-0.49923646,-0.22786988,-0.08562936,-0.30082706,0.52277035,-0.20422469,0.18251696,0.5312593,-0.22347912,-0.14575396,0.27269512,0.19469541,-0.014218326,-0.2773214,-0.39989856,0.54269814,-0.64912045,0.07896805,-0.18997282,0.77713263,-0.036124554,-0.71286285,0.30288833,-0.6248985,0.17341062,-0.1294752,0.58434176,0.5496851,0.5897685,0.449665,0.8424699,-0.51103985,-0.04828411,-0.11461169,-0.4542648,0.37312406,-0.3917033,0.05016205,-0.43306705,-0.17320156,0.11200837,-0.102960974,0.12465717,0.20382339,-0.45247146,-0.02931112,0.2565305,0.6368916,-0.19042224,-0.02052563,0.66218626,1.297503,1.0195038,0.19828393,1.2066985,0.138659,-0.19386783,0.10629952,0.12992142,-1.0243949,0.33704993,0.34412268,-0.36184266,0.20733073,0.1397007,-0.068995744,0.4436757,-0.62392545,-0.12727003,-0.08931945,0.39526463,-0.0104355905,-0.3231454,-0.44043672,-0.37220222,0.14392474,0.018633243,-0.043168988,0.35520107,-0.12741835,0.24984208,0.13128296,1.0975397,-0.082392916,0.16611224,0.19467632,0.42080244,0.12439367,-0.25383994,-0.10010914,0.15897773,0.29553795,0.35461146,-0.5208348,0.22516452,-0.0374108,-0.66428924,-0.10651477,-0.29622144,-0.01663081,-0.12289103,-0.41490665,-0.3022355,-0.24171278,-0.34367877,0.49196962,-2.5654855,-0.01320219,-0.0688739,0.25570694,-0.11566857,-0.1745422,0.07756038,-0.5305285,0.38662168,0.42159325,0.4209751,-0.61368644,0.3579108,0.48656172,-0.6823339,-0.033667464,-0.56825554,-0.15323025,-0.06922262,0.29267374,0.21807736,-0.13212684,0.07933308,0.19616824,0.3096419,-0.07903164,0.15884754,0.47298017,0.26119688,-0.232561,0.42426568,-0.01031893,0.40423578,-0.46763214,-0.30523118,0.38984266,-0.49465582,0.24694099,-0.058735006,0.13833639,0.47836912,-0.39494735,-0.9225661,-0.5897691,-0.1753165,1.3975686,-0.1494975,-0.7214354,0.28814787,-0.30758104,-0.31721815,-0.087732226,0.42437145,-0.3691862,0.04571951,-0.96776795,-0.048132166,-0.23151566,0.3819775,-0.048195902,-0.1357837,-0.49957234,0.8112695,0.041008234,0.5847412,0.46164915,0.0128786275,-0.5826881,-0.44894952,0.115930095,0.7536414,0.51637495,0.17087118,-0.3309277,-0.08210378,-0.2432732,-0.0936881,0.17525291,0.57870525,0.73277706,-0.12822019,0.16886544,0.19375859,-0.021587197,-0.009187469,-0.10029183,-0.2894545,-0.027102627,0.12401588,0.7017035,0.89359814,-0.15788487,0.14544731,-0.03484417,0.38890436,-0.08377763,-0.531145,0.46919885,1.0055003,0.051148362,-0.19152866,0.700425,0.7369341,-0.26279658,0.69947076,-0.5483132,-0.47001076,0.31213725,0.0026903886,-0.512936,0.05316511,-0.4353887,0.15308444,-0.8174566,0.39848498,-0.47049066,-0.49724156,-0.65160406,-0.106226526,-3.1266768,0.19362535,-0.29077858,-0.103229746,-0.23380706,-0.23532502,0.40523544,-0.71673036,-0.74327,0.13950028,0.18594088,0.7814256,-0.15324384,-0.07372702,-0.087039076,-0.26145142,-0.27481568,0.096024565,0.21280839,0.1889878,-0.0020250494,-0.5374005,-0.17457059,-0.24409741,-0.37366816,-0.12202956,-0.45965287,-0.52983516,-0.20536476,-0.44722986,-0.55274147,0.5667298,-0.29180962,0.020321773,-0.21326384,-0.074692614,-0.08120603,0.38303372,-0.053498168,0.21527955,0.00065095606,-0.111583814,-0.10599307,-0.1403206,0.3001312,-0.012801757,0.4156261,0.56632936,-0.33165994,0.0709323,0.6284183,0.71278393,-0.19978616,1.0414844,0.41910547,-0.016055794,0.3304229,-0.08636995,-0.29577854,-0.58271617,-0.18265009,0.036185745,-0.3900585,-0.22373225,0.07261454,-0.3098523,-0.71945965,0.7327262,0.05479703,0.28432143,-0.09804546,0.09816074,0.27166602,-0.179068,-0.11242007,-0.23180412,-0.1810321,-0.52049196,-0.330915,-0.7025894,-0.4737403,-0.29945937,1.0500386,-0.084338956,0.11283513,0.31056023,0.018096667,0.10845919,0.13978024,-0.15810019,0.18222322,0.4861777,0.16559869,-0.7594735,0.5132022,-0.17004737,-0.010881617,-0.5421709,0.2650086,0.46187752,-0.55541027,0.5432997,0.57743263,0.093902774,-0.16102281,-0.6876043,-0.26115572,-0.012967467,-0.16971198,0.55294716,0.5449651,-1.0237192,0.4782213,0.44532573,-0.450609,-0.7389823,0.59733665,-0.061109446,-0.29534078,-0.08374173,0.35657948,-0.18308479,0.24475762,-0.012829845,0.28081167,-0.47130764,0.24555874,0.20501874,0.013198705,0.29902762,-0.16282254,0.026634024,-0.65560806,0.16583674,-0.38890982,-0.1772621,0.11608117,-0.06636792,-0.28689325,0.34728524,0.14176792,0.38961893,-0.21891458,0.094568625,-0.20320262,-0.45003036,0.6138242,0.5595067,0.5023992,-0.49506742,0.7584987,0.05458596,-0.16785724,-0.3067788,0.011646696,0.49345765,0.06825897,0.3946306,0.066998005,0.0047849347,0.2558213,0.8060189,0.14163636,0.40278104,-0.020720344,0.0995317,0.22724582,0.06341727,0.35213912,-0.03252234,-0.66151005,-0.0059318137,-0.40651608,0.13744459,0.5296309,0.006012027,0.31147483,-0.09350153,-0.24682859,0.040738784,0.18431994,-0.06566356,-1.5905101,0.55684406,0.17404722,0.70815146,0.6404122,-0.019539742,0.12769435,0.7271407,-0.22760893,0.07712366,0.31479424,0.15106963,-0.45894268,0.6876371,-0.8412251,0.3580001,-0.008843254,0.031045051,0.016325014,0.05630787,0.3107579,0.6775626,-0.14611651,0.15334114,0.07761599,-0.4017483,0.16518927,-0.36398113,0.17458858,-0.4222867,-0.2866565,0.74778116,0.53655136,0.47788766,-0.26891977,0.0038879376,0.10567662,-0.16118439,0.3075258,-0.074764624,0.15285574,-0.19839925,-0.4932259,0.018476693,0.5426554,0.15522799,0.13273601,-0.14634533,-0.17180388,0.1543695,-0.12769875,-0.1597053,-0.011094368,-0.7604272,0.0840933,-0.24840091,-0.30549768,0.47412422,-0.31238973,0.1268947,0.3103039,0.2193583,-0.35729313,0.056321386,0.08449349,0.56368893,-0.016643899,-0.21749964,0.027631663,0.15934187,0.11438199,-0.1457835,-0.037698105,-0.33979747,0.10454814,-0.31920454,0.58586156,-0.19339529,-0.1962951,0.16661286,-0.13693292,0.0771287,0.4925108,-0.2565201,-0.26386225,0.098937236,0.106801495,-0.14237574,-0.4220479,-0.2792618,0.27438605,0.06295584,0.013625434,-0.15903327,-0.11020566,-0.10248527,0.34540337,-0.07706496,0.26001012,0.37597436,-0.016294489,-0.5711756,0.009779875,0.032466397,0.60224164,-0.103972286,0.026546065,-0.4465502,-0.50742775,-0.30434144,0.33356318,0.01382911,0.36127615,0.06308749,-0.2678006,0.73613477,0.09415797,0.97877014,-0.072219305,-0.34446913,0.034821868,0.54634976,-0.14159311,-0.34778053,-0.28689244,0.8315261,0.6121378,-0.28479153,-0.15471843,-0.39368236,0.25588995,0.09636802,-0.23552571,-0.18581574,-0.04326214,-0.78603643,-0.09520381,0.1150929,0.5103639,-0.12758777,-0.09801528,0.048587058,0.34959757,0.08700958,0.16848017,-0.30561623,-0.05564733,0.3744262,0.20237257,-0.020108791,-0.0015540215,-0.41110367,0.31154564,-0.71139973,0.008527687,-0.3490434,0.043827433,-0.26241466,-0.3996153,0.1348537,0.032845728,0.27381316,-0.30811772,-0.16855215,-0.047832634,0.31878996,0.21879436,0.12035223,0.71981007,-0.23071766,0.10434567,0.07445772,0.40142792,0.8724771,-0.4083609,-0.028036186,0.1368522,-0.3952267,-0.66997683,0.33167464,-0.29353315,0.11398114,-0.07623585,-0.29104012,-0.6117964,0.13493393,0.33553714,-0.025547367,-0.01700959,-0.61036307,-0.09697389,0.17730658,-0.38689497,-0.27377462,-0.4523366,0.004097196,0.48928267,-0.1542101,-0.23152831,-0.0062107765,0.3059289,-0.15801406,-0.40699995,-0.054651625,-0.35529643,0.24164955,-0.073212266,-0.391571,-0.02853202,0.16859832,-0.38487074,0.3185673,0.22202343,-0.2374834,0.109576836,-0.41054896,0.04577529,0.71466887,-0.2256718,0.1057311,-0.4756904,-0.66296506,-0.8863891,-0.18505552,0.3122902,0.22999236,0.060562257,-0.5292726,-0.05030435,-0.13317515,-0.028979916,-0.20997405,-0.26884323,0.43823984,0.1741584,0.42163262,-0.0081179505,-0.73310196,0.03142763,0.15658656,0.06878113,-0.16974545,0.6411031,-0.039144956,0.69369423,0.061646078,0.16897954,0.14480491,-0.4972672,0.26303858,-0.050158437,-0.24505311,-0.53306305,0.024653563 -121,0.58813125,0.16504858,-0.635396,-0.14746986,-0.29855353,0.27378997,-0.2842547,-0.075352274,0.20709288,-0.63181114,-0.034740064,0.050308775,-0.24977434,-0.013324849,-0.24524117,-0.4388527,-0.031360935,0.122434616,-0.5735782,0.56068707,-0.32187793,0.512047,-0.04283005,0.15020104,-0.0067106434,0.19831102,0.073150724,-0.11751665,-0.4313171,-0.22241975,-0.003321234,0.20874114,-0.5176365,0.30582595,-0.17132041,-0.25669283,-0.092452765,-0.4122793,-0.24580635,-0.60969317,0.2071069,-0.53522587,0.61185557,0.0043243207,-0.29509813,0.16439374,0.2351629,0.11574087,0.13811386,-0.035834704,0.2799911,-0.16696577,-0.15990399,-0.14955738,-0.4925131,-0.3888784,-0.50636697,0.05258099,-0.5201635,0.043689094,-0.17871071,0.34398624,-0.16013025,-0.13434155,-0.18320908,0.44652092,-0.16567393,0.12363869,0.13678797,0.014147934,0.13337721,-0.71434623,-0.18561378,0.007517103,0.2716379,-0.17003375,-0.034775477,0.23039736,0.22395454,0.54972315,-0.039003316,-0.19173229,-0.5344315,0.052268352,0.23058449,0.39582807,-0.35290763,0.003159502,-0.07362174,-0.07620481,0.4734019,0.18861552,0.16050877,-0.39839146,-0.028672531,-0.14035477,-0.0471628,0.33341295,0.48263907,-0.23774096,0.007839837,0.53007555,0.48973534,0.13893515,-0.14415042,-0.009677791,-0.20419675,-0.32189155,-0.1279883,0.22050405,-0.055564977,0.34067664,0.034741625,0.27844176,0.31663346,0.121887065,0.007839171,0.20633164,0.08580038,0.11425505,0.0010267005,-0.061569776,0.08632499,-0.44591257,-0.116969995,-0.19590235,0.51221955,-0.051785145,-0.99811554,0.2969103,-0.4225338,0.017908748,0.14596187,0.48635635,0.7249353,0.63655996,0.011382854,0.81268543,-0.5600379,0.026232032,0.07834455,-0.28161216,0.10496254,0.0052757403,0.08378201,-0.64608216,-0.10772937,-0.051571615,-0.039673116,0.1014766,0.40826377,-0.59498525,-0.1667785,0.0036854954,0.6396814,-0.22401765,-0.07194094,0.7137343,1.1017185,0.9464049,0.159204,1.1052306,0.1754006,-0.07126503,-0.20262133,-0.52948666,-0.60858023,0.2660997,0.26919764,-0.5846019,0.41187644,0.0621185,0.06858238,0.31617063,-0.24787101,-0.25272766,-0.25106496,0.3353117,-0.12003851,-0.18109146,-0.39297417,-0.16141821,0.20985906,-0.15876482,0.23846976,0.24148235,-0.3231376,0.20772268,0.32911706,1.493064,-0.29119262,0.12251732,0.08917447,-0.027014276,0.16896486,-0.32123494,0.025660805,0.21057068,0.285434,-0.16705528,-0.25052217,-0.069658026,-0.18343349,-0.442733,-0.23790842,-0.06501115,-0.35527396,0.027817508,-0.21980003,-0.31011292,-0.12096137,-0.54193985,0.53039145,-2.6536884,0.009199902,-0.22721937,0.4138774,-0.27510914,-0.6006655,-0.16727433,-0.36608377,0.4869363,0.19845839,0.24296573,-0.38033327,0.3543934,0.4249232,-0.38462177,-0.1876454,-0.5634761,0.08023936,0.105588995,0.19219878,-0.07807207,-0.2937299,0.0682307,0.20626417,0.29610083,-0.16799742,0.11350939,0.44188493,0.46556455,-0.09144363,0.25988343,0.03814285,0.61111444,-0.21978985,-0.2135536,0.48043594,-0.5810997,0.2608707,0.05673546,0.15743819,0.44468543,-0.42265773,-0.48062858,-0.53127736,-0.17706329,1.1617597,-0.024773324,-0.46301556,0.07214318,-0.07448285,-0.5756012,0.036878012,0.4163637,-0.0835188,-0.014292564,-0.83939826,-0.08742418,-0.12584691,0.28285497,-0.16160484,0.1623573,-0.52058774,0.63586533,-0.14654274,0.48414534,0.44255662,0.31697667,-0.36978695,-0.28698155,-0.026410123,1.039865,0.48964667,0.16029543,-0.14821184,-0.145697,-0.24045874,-0.27038407,0.16646907,0.5266666,0.46448618,-0.044477668,-0.038819537,0.27140686,0.033283483,0.09638233,-0.20661134,-0.3840517,-0.17792499,-0.1028896,0.4555282,0.4662543,0.010521722,0.53581125,-0.094325975,0.050017174,-0.34137413,-0.4707868,0.49987108,0.7070116,-0.29750982,-0.39956972,0.5078931,0.3585484,-0.12763946,0.4406697,-0.5193117,-0.44345778,0.30506054,-0.10355951,-0.41285172,0.12237913,-0.3907117,0.22746551,-0.6009793,0.4392657,-0.39761052,-0.44992885,-0.57918775,-0.07161934,-1.3051664,0.19681847,-0.10102345,-0.07696574,0.0004374385,-0.07474121,0.2204777,-0.53734136,-0.6738763,0.014841147,0.020032808,0.42522988,-0.019242097,0.059401345,-0.07591381,-0.41206032,-0.27984762,0.276511,0.12795897,0.39308637,0.04586532,-0.23127958,-0.025677646,-0.15476418,-0.2543027,-0.1275913,-0.48861527,-0.5155913,-0.18553215,-0.37791732,-0.18328875,0.6732199,-0.70378464,-0.0024619172,-0.45418948,-0.06854579,0.14973536,0.2551952,0.024841793,0.2739778,0.098030545,-0.30676913,-0.10242729,-0.31768596,0.36228797,0.11618263,0.12144079,0.7458967,-0.2393163,0.31004107,0.36709282,0.8844003,-0.08421111,0.6907392,0.2879021,-0.11987926,0.24266484,-0.32091874,-0.23525293,-0.63090235,-0.2757342,0.09713278,-0.39982784,-0.3898482,-0.21691087,-0.43329033,-0.75051546,0.39849332,-0.022927957,0.20350097,-0.037470505,0.34028956,0.39198405,-0.13324903,-0.022917125,-0.025564022,-0.20795695,-0.26108146,-0.428575,-0.5536463,-0.43960223,0.1296173,1.2056874,-0.11285263,0.12529111,0.4064183,-0.063802786,0.09664692,-0.088794105,0.09789106,-0.086620554,0.26692495,0.10249069,-0.5277391,0.17220809,-0.053162433,-0.0033477405,-0.5173307,0.3652872,0.6246756,-0.385591,0.44279724,0.38117048,0.20934181,-0.08579695,-0.70071703,0.0061757704,0.14981192,-0.33673757,0.46820378,0.33283657,-0.5452739,0.41345042,0.4276992,-0.22660485,-0.7350229,0.33949184,0.13305044,-0.10389621,0.05515832,0.41979748,-0.030429833,-0.05749113,0.06440395,0.221021,-0.25751823,0.48320746,0.23545139,-0.07740327,0.1782275,-0.3419778,-0.491974,-0.68092626,0.18574049,-0.39453828,-0.47948804,0.16195484,0.0112872,0.121818066,0.12970613,0.2152537,0.47636077,-0.35604987,0.113935634,-0.083044074,-0.149393,0.29604018,0.39436498,0.5056936,-0.27415407,0.37099934,-0.03406578,-0.053930648,-0.21835677,0.09281495,0.5229857,0.1702457,0.24470119,0.10205156,-0.15596415,0.15846342,0.59940004,0.12947048,0.2039291,-0.031494338,-0.53151095,-0.037269346,-0.0067674397,0.16516072,-0.10489169,-0.43178532,-0.1643089,-0.05249039,0.12723179,0.36864877,-0.0044321944,0.27929312,-0.30485752,-0.20523258,0.08554704,0.14161971,-0.1325211,-1.2644608,0.3161595,0.011572979,0.77554023,0.41074193,0.22859305,0.013590851,0.47613615,-0.33153605,0.14929143,0.2754163,-0.25660124,-0.33391836,0.26026496,-0.58590454,0.24733734,-0.10426897,0.04369489,0.028623477,-0.08981201,0.21511364,0.94667727,-0.120639816,0.054621827,-0.17164329,-0.26619995,0.01880012,-0.09214099,0.23525473,-0.3810866,-0.39578927,0.72422737,0.2670755,0.590869,-0.20630552,0.016518028,0.10412805,-0.34204388,0.0799776,0.09735198,0.12699525,-0.024396785,-0.39333275,-0.09520024,0.407027,-0.01410497,-0.07465065,0.1765122,-0.219309,0.09768525,-0.1189601,0.119292416,-0.052787274,-0.62753385,-0.04214235,-0.34393385,-0.21349253,0.08773335,-0.105616204,0.10969307,0.16127951,0.113744244,-0.24670467,0.48572883,0.37140933,0.72595894,-0.010041156,-0.050994664,-0.23789972,0.33614537,0.1842011,-0.102000475,0.056953065,-0.12817526,0.29863617,-0.5750525,0.38268524,0.014096036,-0.359635,0.13733378,-0.09112417,0.10360537,0.4668127,-0.36112025,-0.26572582,0.124131985,0.11463219,-0.20548554,-0.033400368,-0.105938375,0.12017765,0.15812375,-0.095539466,-0.15920798,-0.116294354,-0.34280744,0.05434814,0.15091377,0.3789393,0.6251524,0.1328095,-0.69223034,0.04529503,0.17852159,0.3598983,0.068800956,-0.06120216,-0.37385035,-0.4094069,-0.3587338,0.69267553,-0.17913759,0.075488746,-0.033083837,-0.3069183,0.70287216,0.011888651,1.1493543,0.08272267,-0.15081678,-0.18608668,0.5426047,0.03735085,-0.011707008,-0.41236997,0.92706263,0.6393506,-0.048364725,0.072855875,-0.33022916,-0.11710048,0.15696844,-0.33777335,-0.06806164,0.03981856,-0.67139196,-0.34711435,0.07931553,0.09839195,-0.11688873,-0.088871405,-0.077664055,0.20956151,0.18327264,0.2620168,-0.44841307,-0.096604936,0.22652976,0.26974308,0.02826104,0.22939076,-0.5683561,0.24179256,-0.60143715,0.09457033,-0.14786142,0.09274408,0.03721038,-0.29354128,0.18731572,-0.03131911,0.2814424,-0.33538902,-0.40497422,-0.090263166,0.31911463,0.14869533,0.1285881,0.6762113,-0.15682404,0.2524926,0.12101269,0.46979833,1.0993965,-0.12370715,0.0900535,0.36755753,-0.26214758,-0.59004605,0.0800665,-0.35981077,0.09984164,-0.194173,-0.35737386,-0.15024586,0.31337315,0.16573192,0.15007254,-0.034322694,-0.61719525,-0.029838366,0.38833186,-0.27209815,-0.103664406,-0.14436178,-0.048429593,0.5691153,-0.17612074,-0.3772081,-0.0385222,0.3731738,-0.22739884,-0.6456298,0.09772967,-0.34062058,0.39395815,0.25200662,-0.29034922,-0.14285375,-0.022017553,-0.36307007,0.088003114,0.22201526,-0.32304567,-0.12280919,-0.26795495,0.064759314,0.53261155,-0.040499043,0.1156735,-0.2960499,-0.47051492,-0.8198776,-0.19244377,-0.3316209,0.25498536,-0.12719,-0.6360702,-0.05434851,-0.35476336,-0.014646699,0.01171503,-0.40568268,0.3907676,0.33094585,0.28329232,-0.37168288,-0.8172248,0.07522654,0.25698924,-0.042043205,-0.4663712,0.54040337,0.09656212,0.71394503,0.119168475,-0.04941563,0.16589896,-0.7780463,0.3308709,-0.22465739,-0.03060774,-0.78696644,0.13150723 -122,0.35577178,-0.35061198,-0.581857,-0.07680813,-0.40700674,0.105794534,-0.2807362,0.36458564,0.28748584,-0.16005276,-0.3669886,-0.07792827,0.17025055,0.27466142,-0.091633484,-0.51578176,-0.05801334,0.19412264,-0.66464084,0.6119205,-0.51760375,0.28864792,-0.032157846,0.52283686,0.31385258,0.33195263,-0.0005795487,0.01059785,-0.30411083,-0.054056056,-0.121130824,0.33926505,-0.47953525,0.247857,-0.30918077,-0.19511001,-0.15264164,-0.55220693,-0.34535977,-0.7800183,0.1056683,-1.0203083,0.5469471,-0.23203966,-0.110184684,-0.072032996,0.28751722,0.31244177,-0.47377798,-0.03415819,0.27657083,-0.23854586,-0.31215587,-0.2278541,-0.14139059,-0.4162586,-0.44886097,-0.11891955,-0.5741228,-0.165665,-0.24767461,0.18029816,-0.2520832,-0.09256671,-0.08115382,0.37067983,-0.5498138,0.105974056,0.24582164,-0.20050637,0.111419514,-0.6288683,-0.1465692,-0.18845126,0.46874133,-0.03678366,-0.3969426,0.36516705,0.44220537,0.09595055,0.13030323,-0.19707844,-0.34632468,0.069115736,0.24109142,0.46057764,-0.01630342,-0.32967076,-0.21076706,0.084407814,0.43414918,0.29937962,0.13038184,-0.26510423,-0.18898165,-0.054421443,-0.122580275,0.6153841,0.50384337,-0.067679435,-0.17410254,0.3266684,0.5027332,0.5054059,-0.4334517,-0.14075884,0.002129443,-0.52108276,-0.085266076,0.16031705,0.0010778968,0.48789766,-0.13838065,0.04673525,0.89167225,-0.16323969,-0.13302569,0.31508276,0.24073805,-0.23644258,-0.19311938,-0.27011973,0.18390574,-0.5407604,-0.014135761,-0.13326767,0.52372587,0.20169513,-0.7533865,0.40467525,-0.49307278,0.050926436,-0.16038474,0.51790977,0.7955012,0.5310036,0.40123013,0.6221892,-0.078690685,0.21050881,0.013476849,-0.41827446,0.08451079,-0.2761389,-0.1483129,-0.5832488,-0.043200154,-0.27264622,-0.019877817,0.20225428,0.42026803,-0.361166,-0.109553084,0.08779424,0.7623271,-0.3124357,-0.23589721,0.8069394,1.0553629,0.87197745,0.06095278,1.0650114,0.24649374,-0.107160755,0.015458907,-0.30973977,-0.72946304,0.28898415,0.2407521,-0.4387968,0.33160755,0.040040705,-0.024271403,0.23492466,-0.38669652,0.0056737,0.119450055,0.18086131,0.24071766,-0.07520239,-0.44172314,-0.38197973,-0.13893203,0.119329736,0.077861354,0.23533347,-0.31972924,0.35936204,0.043195415,1.4356833,0.056910872,-0.20091733,-0.06188757,0.7054688,0.3460916,-0.12873419,-0.1089338,0.46144262,0.48305145,-0.017040376,-0.5694977,0.22414878,-0.26697475,-0.36336905,-0.076412424,-0.4904801,-0.24911211,-0.00651661,-0.5189867,-0.100152016,0.08178363,-0.18822648,0.4403912,-2.7517948,-0.17646578,-0.015355934,0.42275307,-0.111884825,-0.19479738,-0.24865416,-0.59189,0.21514288,0.08713324,0.60653704,-0.62766963,0.57885754,0.50076526,-0.5418505,-0.2110076,-0.7218704,-0.052167892,-0.003503676,0.49181595,-0.04377108,0.092614785,0.05321005,0.089221135,0.7378578,-0.017869966,0.19997944,0.61666757,0.40799403,0.062273,0.5997034,-0.049945056,0.5854985,-0.15963905,-0.17081718,0.16367438,-0.35582122,0.55889803,-0.027120935,0.07768544,0.75619036,-0.39702907,-0.93798226,-0.5477864,-0.17468296,1.0276498,-0.4948494,-0.41676864,0.11133034,-0.4677024,-0.30217668,0.0310218,0.66990423,-0.077135645,0.097203664,-0.6545579,-0.060820937,0.113793306,0.20469984,-0.00040395133,-0.028528992,-0.19263661,0.7716379,-0.0048383987,0.62109566,0.053518116,0.21278776,-0.28897673,-0.43839025,0.21739508,0.7442135,0.19961442,-0.028861357,-0.16202866,-0.32328078,-0.35712034,-0.11196573,0.024850415,0.69556344,0.45342308,-0.027130017,0.19381173,0.29302508,-0.0663626,-0.0438496,-0.33095986,-0.20824838,-0.046111327,0.2095671,0.5100926,0.95622885,-0.06058016,0.70804787,-0.20866744,0.27430505,0.040101774,-0.6312936,0.7055421,0.6998989,-0.14794485,-0.116146326,0.34964752,0.5562033,-0.3998291,0.37536457,-0.5274776,-0.21807727,0.5137508,-0.18592714,-0.37069935,0.28476295,-0.07530417,0.18134816,-0.73318034,0.37701267,-0.19313815,-0.4466211,-0.31109828,-0.0002962138,-2.7098699,0.08959295,-0.0035362542,-0.32145837,-0.4041904,-0.19819437,0.30166197,-0.629171,-0.5745178,0.071540356,0.17280409,0.85261565,-0.1873037,-0.018764164,-0.24901152,-0.35716504,-0.06377243,0.2087222,0.19052494,0.42634037,-0.2018687,-0.52468085,-0.1234498,-0.06435427,-0.57475036,0.101271436,-0.5898243,-0.46105337,-0.014090083,-0.5079103,-0.1517568,0.53751767,-0.46251655,-0.020026812,-0.13117643,0.13965093,-0.23254554,0.25855154,0.17807886,0.1775571,0.0019583765,0.033291373,0.37327638,-0.20282462,0.46740603,-0.036532678,0.25688756,0.0663575,0.20308854,0.3398381,0.61630857,0.58867466,-0.2871236,1.1383101,0.4249577,-0.1460568,0.17333505,-0.23714426,-0.5133599,-0.5319215,-0.15533666,0.013106014,-0.46972018,-0.30327946,0.077547945,-0.30843082,-1.0046445,0.6031534,0.07020173,0.20817815,-0.054892603,0.2133399,0.61056954,-0.21963169,0.08559183,-0.015659105,-0.18555102,-0.52780646,-0.29322723,-0.6170911,-0.46544474,-0.082923755,0.82450694,-0.35456234,0.045345556,-0.05688414,-0.5235845,0.14278148,0.1455097,-0.04248446,0.2744052,0.33358374,-0.081939146,-0.57146823,0.3680704,-0.23239182,-0.0738082,-0.5527762,0.21432939,0.6745171,-0.84667844,0.50963557,0.28764603,0.015404047,-0.34416565,-0.41490966,-0.15461086,-0.13802172,-0.13469858,0.4977872,0.23479995,-0.86771816,0.48885754,0.31202793,-0.4812873,-0.6289293,0.4675241,-0.14082623,-0.20243838,-0.16830103,0.2696642,0.06038064,-0.01281829,-0.28882852,0.23661341,-0.2893797,0.04780117,0.22048643,-0.1388325,0.32463005,-0.15700038,-0.1668506,-0.7604933,0.05218658,-0.2587944,-0.3185222,0.36522222,-0.038921572,0.1343293,0.02517828,0.25911316,0.2671733,-0.39236537,0.04560746,-0.10774145,-0.39988774,0.28110752,0.52323854,0.51863754,-0.29659277,0.4880083,0.14269409,-0.18971395,0.45934469,0.062473755,0.23627281,0.088691466,0.40987763,0.04542598,-0.19711657,0.3235245,0.843177,0.14385736,0.5075063,-0.010222278,-0.13720487,0.12532257,-0.017169122,0.3906119,-0.062207002,-0.5333193,0.018274311,-0.13683784,0.2562886,0.45650014,0.28938338,0.21987809,0.08273224,-0.33890978,0.07224871,0.15441859,0.22688426,-1.4309198,0.55075204,0.3151619,0.95118153,0.17399548,-0.0039783907,-0.095119916,0.8370625,-0.25394467,0.12144361,0.33144483,-0.07325802,-0.49482986,0.57611424,-0.68116057,0.57477206,-0.13989368,-0.027036889,0.27789092,0.047939513,0.47381255,0.9177565,-0.17487104,0.06385176,0.18603142,-0.2248982,0.016679686,-0.45856693,0.079684235,-0.57513326,-0.5059079,0.7387732,0.49446797,0.4637021,-0.18923748,0.07040797,0.004742124,-0.24634643,0.1948916,0.075217314,-0.05878345,0.02116595,-0.6869611,-0.044317313,0.59144133,-0.19786371,0.08327601,-0.17464268,-0.12906416,0.2341044,-0.25208193,0.091248974,-0.11881333,-0.7014392,-0.061124295,-0.32901716,-0.70924026,0.4793991,-0.09471917,0.06418559,0.29199645,-0.13097946,-0.2208221,0.6483436,0.23182227,0.82875025,0.00031867198,-0.18602057,-0.29898432,0.10015939,0.3097023,-0.1999568,-0.056502547,-0.46081087,0.0935659,-0.4499157,0.5713757,-0.22953796,-0.48500952,-0.09221946,-0.050716307,0.044443928,0.5911897,0.018966228,-0.2235903,0.0015317372,-0.21796726,-0.5902881,-0.1055641,-0.27146855,0.16956475,0.34047168,-0.1814766,-0.16140486,-0.281167,-0.068132505,0.5252529,-0.13633168,0.5806551,0.4460597,0.11531572,-0.08928683,-0.12141673,0.2578385,0.6547509,0.115053676,-0.10590152,-0.53319514,-0.17352745,-0.3466974,0.17465079,-0.08592167,0.2821655,0.08472158,-0.31871304,0.84772,-0.18948956,1.1613852,0.15017666,-0.31034565,0.23518346,0.45153576,-0.18577863,-0.0295219,-0.3209003,0.7521283,0.42436242,-0.20329706,-0.020420717,-0.5129396,-0.11776771,0.35096768,-0.39514393,-0.061719786,-0.016296135,-0.58123666,-0.27871925,0.18956788,0.1467292,0.17568144,-0.13366006,0.103333764,0.16911732,0.122221366,0.14667885,-0.6371502,-0.07242118,0.19121209,0.27330163,-0.22927162,0.16539618,-0.43660048,0.47832337,-0.53231674,0.24832916,-0.4269406,0.2449292,-0.21970923,-0.38099653,0.16866788,0.06456947,0.29900008,-0.42466927,-0.3378467,-0.46657786,0.6044801,0.0008809737,0.14328139,0.299679,-0.2660267,0.17047274,0.14302771,0.56685215,0.99666566,-0.3933188,-0.044514634,0.3991485,-0.50545865,-0.5220049,0.37413797,-0.54772705,0.1623893,-0.0023259562,-0.29606596,-0.6004472,0.29666784,0.17496188,0.33419353,0.06527939,-0.5877358,0.0319069,0.25428054,-0.14869586,-0.2574043,-0.24432337,0.20277934,0.49283674,-0.2891924,-0.32918,-0.009832059,0.10064142,-0.17218177,-0.29603335,0.05019949,-0.3503591,0.32223296,-0.17471187,-0.32878894,-0.08357777,0.089697786,-0.40892148,0.1270152,0.115061834,-0.39511117,0.14074811,-0.044878416,0.07471105,0.89973414,-0.29528365,-0.015274286,-0.6230807,-0.60057074,-0.76370096,-0.35159928,0.006907842,0.22213854,-0.16321369,-0.57416165,0.06872858,-0.086967595,-0.37701026,-0.04919086,-0.5926887,0.42988634,0.068559766,0.40913883,-0.13128532,-1.0393499,0.17409857,0.05633854,-0.28869724,-0.6954927,0.5302636,-0.22225554,0.83939135,0.101956025,0.03916645,0.018647585,-0.20031475,0.103176355,-0.3628662,-0.0023442549,-0.6404343,0.109055325 -123,0.37036964,-0.17160763,-0.37259245,-0.24221978,-0.40333787,0.17394914,-0.21055283,0.08995223,0.11133484,-0.5169774,0.04066423,-0.17116968,-0.15934436,0.35634518,-0.24791943,-0.75795,-0.12060162,0.16397874,-0.5429029,0.474272,-0.5612664,0.15080617,0.042655263,0.36170223,-0.06014525,0.25581917,0.2496913,-0.05923299,-0.20347871,-0.00026091933,-0.12508729,0.33396453,-0.79570335,0.48033443,-0.021588424,-0.23705043,0.015144229,-0.51827353,-0.21448596,-0.6020147,0.24678493,-0.7879159,0.54268384,-0.029734403,-0.2052897,0.015639832,0.2688796,0.22352359,-0.27225986,0.057785362,0.34999254,-0.22879712,-0.08040004,-0.11071289,-0.23845567,-0.64167243,-0.66278553,0.049659044,-0.71798503,-0.012729849,-0.092218645,0.3518024,-0.29612598,0.06289549,-0.2365683,0.52634704,-0.42033654,-0.098028556,0.21916378,-0.08094264,0.05540881,-0.3733077,-0.14059032,-0.17499714,0.25057942,-0.2536206,-0.27714786,0.19472902,0.41888466,0.55251724,0.016768707,-0.30520216,-0.155751,0.0007555229,0.11999582,0.488728,-0.10307411,-0.3250141,-0.37232146,0.031926032,0.14525568,0.24224053,0.037025128,-0.44188878,0.17662823,0.04953748,-0.32679063,0.4172187,0.3518587,-0.46724463,-0.3812669,0.3621252,0.39293745,-0.08191795,-0.14734285,0.16019203,0.11049109,-0.50565815,-0.1492729,0.38405797,-0.15605748,0.49231103,-0.17298014,0.079743065,0.7200141,-0.18478163,-0.023568843,-0.1223138,-0.25564826,-0.095003046,-0.3860838,-0.082752585,0.1408678,-0.5800423,-0.010185199,-0.23332584,0.7975205,0.031153986,-1.0382187,0.37108082,-0.4298986,0.025763439,-0.19305725,0.59662193,0.80306804,0.4272073,0.26488072,0.8106397,-0.52107704,0.08031887,-0.1372393,-0.31616,0.1478261,-0.16567858,0.22633801,-0.42503458,0.046202004,-0.17905952,-0.011782989,-0.25557575,0.35501966,-0.40605474,0.0023545602,0.10644779,0.6825095,-0.42328808,-0.18005295,0.8199162,1.1458429,0.9332495,0.28830943,1.471306,0.34160346,-0.069369346,0.1272018,-0.22268997,-0.6243554,0.25890592,0.36698756,0.065219104,0.21195926,0.10806227,0.19910209,0.4336989,-0.14223665,0.052968923,-0.105663426,0.3538196,0.035739403,-0.006770513,-0.44931236,-0.26705545,0.21411833,-0.15335989,0.049204256,0.2550545,-0.14505005,0.33636793,0.33349425,1.4383677,0.033801895,0.16927446,0.0065874457,0.3180313,0.14206521,-0.12085121,-0.05457737,0.23940979,0.21327175,-0.12248763,-0.648995,0.06578549,-0.21599229,-0.4447949,-0.3160255,-0.36028942,-0.035718523,-0.29888555,-0.480925,-0.13267511,0.08828872,-0.31283805,0.6349362,-2.5140364,-0.3894556,-0.11501946,0.26270083,-0.29516578,-0.356473,-0.12916474,-0.46697658,0.35975,0.33166102,0.28284425,-0.6796561,0.56774026,0.3054575,-0.32362482,-0.26448908,-0.74894035,-0.069978796,-0.23215948,0.29614213,-0.04705743,-0.33549756,-0.25242442,0.15593298,0.5291503,-0.06729339,0.020274801,0.107019626,0.5208971,0.21877395,0.6642147,0.09031411,0.521824,-0.27227384,-0.05870494,0.3653875,-0.42038247,0.2928609,0.2685069,0.16448188,0.408284,-0.5886777,-0.8070192,-0.82836217,-0.7382995,0.9446303,-0.4047753,-0.2105076,0.06616657,0.059033114,-0.2893338,0.046005685,0.41516426,-0.12232231,0.047710624,-0.76165116,0.080968775,-0.06328986,0.29855528,-0.07148067,0.12475647,-0.43170428,0.59522706,-0.18848102,0.5382635,0.40092158,0.26307732,-0.2743389,-0.4506429,0.017015452,1.0737995,0.2687338,0.09304675,-0.15760252,-0.2755706,-0.021163967,-0.021576775,0.10627265,0.5061831,0.49736443,0.013277029,0.035542462,0.5237764,-0.37520292,0.09808628,-0.004577543,-0.29023576,-0.07688914,0.17742251,0.49406034,0.513809,-0.25032088,0.4198276,-0.26752383,0.15674576,-0.15015398,-0.34228626,0.4998196,1.0024012,-0.10242052,-0.20999734,0.60290474,0.5649766,-0.32798734,0.35717773,-0.552157,-0.29603097,0.55219626,-0.10565627,-0.3984943,-0.12568133,-0.4027783,0.039932113,-1.0318393,0.31610557,-0.27839276,-0.45705488,-0.59816414,-0.21744862,-3.5775592,0.06678542,-0.07483896,-0.01560062,0.013882034,-0.17880118,0.45911306,-0.5909406,-0.6524396,0.14910081,-0.002299973,0.4953358,0.050221708,0.30591044,-0.4133019,-0.06433491,-0.23515932,0.29710886,0.22381917,0.21817096,0.03344788,-0.375769,0.20835792,-0.40850982,-0.42812327,0.087287866,-0.5967193,-0.51236236,-0.05247737,-0.68363476,-0.5380683,0.71846724,-0.51925737,-0.17517796,-0.20948961,0.04151261,-0.2037796,0.5263497,0.17739365,0.2683592,0.105033144,-0.06072435,-0.31283513,-0.30481246,0.27056843,0.06957082,0.24832547,0.49421996,-0.03055504,0.15934154,0.53907144,0.57263166,0.0872274,0.6545938,0.2607642,-0.1557221,0.2889878,-0.36957297,-0.23828979,-0.6969948,-0.32537797,-0.27922973,-0.48968616,-0.5329483,-0.060177617,-0.4121348,-0.70278484,0.49089614,0.041458406,0.034297347,-0.2063318,0.25112048,0.28572303,-0.22784317,0.12251113,-0.20475873,-0.15332231,-0.5233728,-0.6734108,-0.69258106,-0.61210567,0.14937837,1.406056,0.017321957,-0.2159517,-0.016308324,-0.23425405,0.059850607,0.09592778,0.12524305,0.33443165,0.5108324,-0.034196522,-0.6921993,0.31132886,-0.07398392,-0.052555587,-0.3386684,0.02202705,0.8610832,-0.75919193,0.7300442,0.3646051,0.24996276,0.22380635,-0.5731479,-0.2903697,0.107208885,-0.28850597,0.5542418,0.27198473,-0.6665068,0.48109767,0.22106102,-0.14275905,-0.7823299,0.47217852,0.14029703,-0.048299346,0.024726281,0.48600084,0.32331678,-0.021616718,-0.19400477,0.23106231,-0.6515614,0.16216706,0.30558178,0.051864676,0.46476406,-0.18070774,-0.20016415,-0.5673451,-0.2408396,-0.5607895,-0.3625761,0.04443643,-0.068813294,0.09832776,0.31066513,0.07793975,0.412018,-0.43774155,0.16038911,0.022141675,-0.20009017,0.10004992,0.5174616,0.26129696,-0.46156174,0.57634705,-0.046024956,0.100993566,-0.10351218,0.035707287,0.3256256,0.45841056,0.1641474,-0.10099939,-0.040150423,0.18681595,0.8449946,0.1709326,0.28696945,0.1801882,-0.13622776,0.43434116,0.07335242,0.17998348,-0.01463856,-0.2996776,-0.12771042,0.086336836,0.18417212,0.3724262,0.022947375,0.28056327,-0.15348163,-0.052735317,0.13634111,0.3320346,-0.21764798,-1.011928,0.28365153,0.19693406,0.6282025,0.6779663,-0.006923284,0.18204176,0.441188,-0.44386163,0.13467932,0.34487075,-0.017718827,-0.2732574,0.5996199,-0.449539,0.42233723,-0.2665424,0.009402424,-0.04319879,0.091668285,0.29049882,0.89671487,-0.09212238,0.0583376,0.0066038114,-0.08387186,0.09246056,-0.23072846,0.15143922,-0.43339327,-0.23181637,0.6824334,0.4060192,0.35950035,-0.36975667,-0.06508596,0.049691927,-0.14263071,0.103339925,-0.06914693,-0.27190265,0.22108759,-0.6469153,-0.35919556,0.6917009,-0.068176225,0.055730786,0.24640761,-0.41940567,0.27315357,-0.105366535,-0.09134083,0.031282995,-0.61666757,-0.14587416,-0.32929403,-0.34056565,0.20456788,-0.4795627,0.06714689,0.09379881,0.022761093,-0.27538973,0.11571287,0.4748077,0.6574978,0.10365408,-0.12815024,-0.35651916,-0.1425157,0.1982192,-0.27974886,-0.107701,-0.4126748,0.22593299,-0.59352547,0.58773804,-0.12320825,-0.313922,0.08843048,-0.02584212,0.09821315,0.52940184,-0.1763337,-0.06621075,0.03268836,0.06272734,-0.27484104,-0.0790667,-0.42009702,0.2669641,0.063043125,-0.04457221,0.05995253,-0.20928502,-0.19331875,0.46810606,0.19457534,0.19296603,0.20857069,0.04659656,-0.30342966,0.030340655,-0.009212502,0.37177214,0.067390755,-0.14636758,-0.16276467,-0.10813342,-0.13575359,0.40826246,-0.15412928,0.066539876,0.0017520998,-0.61308366,0.7532118,-0.030972734,1.1594833,0.12310754,-0.3857283,-0.061817877,0.40148106,-0.070855424,0.12645702,-0.38225704,0.866414,0.6033076,0.05788831,-0.24639344,-0.46298233,-0.32205826,0.16119362,-0.30909675,-0.190214,-0.07763011,-0.72013706,-0.2538425,0.2529827,0.19552489,-0.018440058,-0.02178185,-0.023496823,0.09817613,0.094439216,0.5019415,-0.5854592,0.14911485,0.28458866,0.38915125,0.15176924,0.28424406,-0.28488988,0.41284367,-0.71337783,0.22374582,-0.5359673,0.00547514,-0.06813667,-0.095089555,0.21096739,0.0481134,0.35527268,-0.023967573,-0.31609753,-0.2764725,0.81410515,0.07176508,0.2696455,0.97676384,-0.12903579,0.02010856,0.06227727,0.56214416,1.4596748,-0.19584885,0.026261922,0.14889479,-0.19890079,-0.60788167,0.24481201,-0.43976906,-0.010540647,0.13188218,-0.39860106,-0.38190326,0.31458443,0.10737107,0.16129495,0.07518067,-0.5267642,-0.06984393,0.5195416,-0.27444488,-0.22927403,-0.073272504,0.4342595,0.95586354,-0.3474129,-0.14813307,-0.032070395,0.44491476,-0.29934973,-0.51909214,0.048537593,-0.4118583,0.41375658,0.14370704,-0.2740641,0.010312687,0.22112557,-0.3603056,0.079874754,0.4171076,-0.2642481,0.10680102,-0.16445443,-0.16774371,1.1027324,0.20062761,0.071648166,-0.7251772,-0.5415131,-0.81493133,-0.2670739,0.21562563,0.1818508,-0.045006115,-0.34693027,-0.109893225,-0.13889186,-0.18616676,0.13407947,-0.6992988,0.32352972,0.14505324,0.58611786,0.013940222,-0.8736321,-0.046456628,0.20112726,-0.08911971,-0.46005297,0.54341453,-0.16795237,0.8976168,0.04229564,0.002875788,-0.10698138,-0.5025392,0.37538528,-0.5688752,-0.17388085,-0.82254225,-0.01794059 -124,0.39317602,-0.13057616,-0.54670084,-0.06681598,-0.30559683,-0.06771151,-0.14893177,0.41014037,0.23686765,-0.14797904,-0.12630293,-0.08530145,-0.08330811,0.39143676,-0.19384442,-0.7473468,-0.13396071,0.033133,-0.5021452,0.9238755,-0.39454183,0.3333227,-0.098996006,0.32079574,0.48002672,0.3720596,0.2375648,-0.017899973,-0.0028482378,-0.1410815,-0.16760571,0.25682062,-0.49234864,0.067070685,-0.12688588,-0.29080397,0.07282746,-0.2990215,-0.5822837,-0.6599851,0.47310987,-0.8963203,0.44731158,0.1625928,-0.33459803,0.24333945,-0.010511607,0.13390943,-0.41150412,-0.0684004,0.0673831,0.038645864,0.145401,-0.15077175,-0.38558394,-0.54127735,-0.48624358,-0.057574753,-0.56803083,-0.16275811,-0.4402046,-0.008177702,-0.3761932,-0.096949115,-0.21780077,0.25093168,-0.52545106,-0.1552378,0.28360143,-0.15876031,0.14943258,-0.6575843,-0.15758829,-0.14632437,0.062546015,-0.029313207,-0.061922997,0.510686,-0.07301078,0.3834503,-0.030171707,-0.14247029,-0.3415176,-0.17810264,0.17866161,0.3555212,-0.077226795,-0.46490332,-0.22863634,0.09059215,0.192188,0.2892482,0.0836268,-0.19149077,-0.12148688,0.024899611,-0.14780644,0.362895,0.46901768,-0.3126723,-0.3123863,0.3292594,0.3666441,0.38813767,-0.23895994,-0.072759315,-0.046993066,-0.46582842,-0.15068375,0.10352392,-0.31452018,0.7423168,-0.093779065,0.03842336,0.7074752,-0.08245761,0.28053516,-0.12825522,0.09488233,-0.297502,-0.21368183,-0.20801353,0.13725023,-0.416826,0.3685264,-0.14700815,0.8353137,0.2321173,-0.51776284,0.38612884,-0.52514035,0.22198704,-0.15262136,0.5034657,0.6431767,0.22709577,0.30631012,0.76966995,-0.36931083,0.14078914,-0.051084496,-0.37550852,0.17359778,-0.10884269,-0.096721336,-0.47265646,-0.021592293,0.0029587063,-0.11991065,-0.0041556614,0.49535814,-0.35922006,-0.07986593,0.07683505,0.76482373,-0.26658994,0.13771367,0.57513565,1.1375774,1.0869257,-0.032698784,1.1519125,0.20762447,-0.30745855,0.26186213,-0.24602602,-0.94711846,0.20089579,0.49104354,-0.080803975,0.42588228,0.004785759,-0.03891095,0.33172822,-0.41898298,0.070206665,-0.3008802,0.18534073,-0.029032618,-0.02907701,-0.41047066,-0.20960975,-0.11640567,0.19715178,0.024897764,0.4060051,-0.21318504,0.32051882,0.0055398643,1.6421107,-0.07010997,0.043207116,0.1321924,0.77540845,0.32259756,-0.028151205,0.06789174,0.4177842,0.4732292,0.061300363,-0.6949683,0.1081862,-0.4234814,-0.3659409,-0.11093404,-0.42430797,0.10831117,0.17879799,-0.42982846,-0.21616189,-0.055306714,-0.15042745,0.40545338,-2.6466222,-0.10578303,-0.13270295,0.17361178,-0.35654,-0.18570249,-0.052123252,-0.39478675,0.5209714,0.3216985,0.5686163,-0.52863044,0.18773666,0.5763791,-0.59152114,0.08833856,-0.49779803,-0.015154193,-0.1636492,0.6915008,-0.15873602,0.052689295,0.08962621,0.24407932,0.5218837,0.28687206,0.15537167,0.23162587,0.39589295,-0.06305932,0.39196703,-0.01823418,0.48386025,-0.23300219,-0.14125285,0.38876042,-0.20837048,0.5224889,-0.27883485,0.12738775,0.5477494,-0.5134774,-0.87176996,-0.36359334,-0.25282523,1.1716349,-0.49621797,-0.590978,0.3982766,-0.2815653,-0.071926676,-0.047343407,0.41817734,-0.2233009,-0.15384711,-0.7363363,0.1558381,-0.17220256,0.17495987,0.046572167,0.05055936,-0.20527425,0.7368156,0.17059827,0.40260276,0.19530924,0.14065664,-0.088792644,-0.46611783,0.1804458,0.60857296,0.45797938,0.07545068,-0.30957794,-0.31819013,-0.1448175,-0.21094432,0.22412987,0.48391867,0.6424464,-0.15345538,0.10145705,0.3231539,-0.098204486,-0.07894341,-0.13790163,-0.24978866,-0.11278653,0.07189865,0.57734054,0.82298964,-0.16863804,0.2632851,0.0073104883,0.3311805,-0.1284134,-0.48091057,0.6003036,1.0932513,-0.107375756,-0.21061976,0.65394837,0.6728109,-0.37565655,0.5624073,-0.67309606,-0.22853234,0.54796076,-0.13884875,-0.3605682,0.07438693,-0.50438446,0.0752658,-0.80770177,0.20065935,-0.15511136,-0.2602044,-0.6443349,-0.19239794,-3.3155677,0.072626844,-0.45941564,-0.22773156,-0.18532798,-0.085000336,0.26520362,-0.71135616,-0.6057915,0.17065348,0.06793789,0.71109265,-0.11748556,0.0968327,-0.23201077,-0.3146959,-0.44829777,0.11200038,0.15353653,0.4936269,-0.19308789,-0.4386649,-0.11964671,-0.22280666,-0.3268559,0.049553487,-0.527513,-0.34540135,-0.23983239,-0.49769133,0.0003635415,0.65819454,-0.124773756,-0.050673164,-0.065705694,-0.03570312,-0.2572682,0.0616818,0.30162138,0.17932566,0.034784604,0.124444954,-0.015591974,-0.3982887,0.38216615,-0.0008510607,0.43992653,0.2535679,-0.050619334,-0.0049673063,0.54254967,0.38710052,-0.2457687,0.8546905,0.5652474,-0.2142285,0.28857747,-0.23901916,-0.29008132,-0.7110959,-0.3294664,-0.13222077,-0.3280568,-0.6230651,-0.23281932,-0.4079213,-0.82751137,0.43369213,-0.017842004,0.44990668,-0.07503023,-0.062234852,0.4452307,-0.1141954,-0.11403327,-0.021459749,-0.13978654,-0.5868831,-0.24227937,-0.6420168,-0.37140974,0.24986298,0.74841696,-0.24773176,-0.44024208,0.16504571,-0.5007082,0.044134934,0.056869514,0.1342927,0.18508093,0.485702,0.2416739,-0.7267154,0.70881194,0.06838801,-0.014520534,-0.53203875,0.09348871,0.33884445,-0.64484745,0.55463064,0.30642447,0.08886751,-0.035612684,-0.5771089,-0.3223416,-0.022829818,-0.0916379,0.31671807,0.2850887,-0.7096534,0.4677966,0.17002185,-0.32278517,-0.66952366,0.5567982,-0.15563278,-0.29829794,-0.08533873,0.25645226,-0.00965987,0.033926554,0.02199637,0.35190606,-0.3365013,0.103043295,0.37091374,-0.10783397,0.21125211,-0.11793554,-0.210237,-0.6149518,0.20147668,-0.3498853,-0.23057161,0.36764044,0.014908769,-0.04673336,-0.02697553,0.21369673,0.40243536,-0.1780118,0.22345228,-0.045621514,-0.19292529,0.618581,0.47663245,0.6998218,-0.5564875,0.6801649,0.011268769,-0.01287583,0.30119547,0.1483548,0.27959797,0.02395575,0.43976858,0.07967961,-0.156511,0.19243036,0.8553823,0.25260773,0.37512782,0.081650004,-0.08949949,0.37575513,0.15321983,0.09544505,0.05048849,-0.5708256,-0.1450526,-0.11540127,0.19710946,0.4594291,0.04254564,0.32516065,-0.1354574,-0.13376267,0.104663745,0.19902216,0.0002395766,-1.2310208,0.24930508,0.21570961,0.60774153,0.5909261,-0.05127061,-0.020988466,0.6896225,-0.23050311,-0.043197837,0.29772776,0.106399894,-0.6560009,0.50289303,-0.45552498,0.6061873,0.07918567,0.048918936,0.043567657,0.18072,0.36784694,0.74859625,-0.32836443,-0.082361005,0.012686001,-0.60962063,0.16113456,-0.2896261,-0.046256524,-0.439613,-0.36050144,0.50936776,0.5938563,0.21535428,-0.15485367,-0.051919002,-0.10403456,-0.15035698,0.19577043,0.06930696,0.054006778,-0.07026295,-0.64986175,-0.26584062,0.4246869,-0.16231035,0.13600148,-0.18068516,-0.18776147,0.34748203,-0.180865,0.015395398,0.008179648,-0.7787053,0.19416854,-0.2833453,-0.5215116,0.34130844,-0.20508496,0.4043847,0.21526217,-0.09304105,-0.37467018,0.26365873,-0.09158581,0.77103746,-0.15215635,-0.2293603,-0.3231578,-0.12975867,0.25309017,-0.22480024,0.0032654405,-0.24163716,0.035531826,-0.5709788,0.4355003,-0.11520735,-0.1975957,-0.23558089,-0.29647756,-0.073781855,0.5661239,-0.024252517,-0.23087923,-0.305417,-0.04991638,-0.45816204,-0.31141186,-0.18865916,0.1473762,0.21572757,-0.048677824,-0.16935529,-0.16842577,0.15553816,0.4295123,-0.16849594,0.33106083,0.31820568,0.08821342,-0.32295972,-0.2057284,0.28379208,0.5811257,-0.0069331187,0.12992097,-0.12850298,-0.444247,-0.4951873,0.2635416,-0.15366258,0.34695974,0.20976886,-0.38516623,0.52820647,0.0807643,0.97453344,-0.07695048,-0.2959724,0.12144884,0.7281107,-0.01759269,-0.1208872,-0.14814404,0.9024015,0.6463683,-0.17119853,-0.23582448,-0.3849866,0.079324916,0.083005376,-0.24655244,-0.019533059,0.012564637,-0.46344918,-0.049094327,0.1458547,0.33099103,0.30566767,-0.0844867,-0.11550591,0.023955302,0.267734,0.3993407,-0.3654762,-0.44265914,0.39591005,-0.14565828,0.18422438,0.27376732,-0.43619466,0.37714022,-0.5339162,0.07253613,-0.2797865,0.23622322,-0.2641296,-0.27558056,0.17855443,-0.06678308,0.44015127,-0.4134531,-0.25623608,-0.34315887,0.513083,0.12423241,0.263592,0.58228624,-0.28619537,0.16408803,-0.026838358,0.5601225,0.9572436,-0.04845274,-0.15130045,0.18116443,-0.459148,-0.7560137,0.21292965,-0.4645987,0.19819064,-0.0051862285,-0.21420811,-0.61212236,0.26837078,-0.011170839,0.028441366,0.029156795,-0.6360782,-0.37332454,0.053792294,-0.19946194,-0.2803832,-0.44294938,-0.11212725,0.6014815,-0.2703174,-0.24155031,0.2020459,0.04545317,-0.19997837,-0.59005696,0.070301905,-0.2627776,0.23684347,0.15156566,-0.39617404,0.0071672434,0.21099307,-0.44595054,0.25728258,0.11508208,-0.41401786,-0.058255333,-0.25955698,0.08634738,1.1711076,-0.3342606,0.012418151,-0.59940296,-0.5486292,-0.8895871,-0.48691255,0.621808,-0.053191874,0.12893741,-0.62511253,0.0587508,-0.06800161,0.20294416,-0.12643123,-0.4269045,0.518091,0.07185248,0.33314815,-0.02687396,-0.73971,0.1626796,0.011560296,-0.10355314,-0.61717653,0.6192073,-0.22075415,0.7722875,0.1025464,0.14095595,0.10878764,-0.5284248,0.12258778,-0.23629348,-0.22775531,-0.56245124,0.15886416 -125,0.40163043,-0.28675345,-0.32700825,-0.107490554,-0.0931281,-0.012596705,-0.16002919,0.38209435,0.13044454,-0.405431,0.036208067,-0.2926441,-0.007911801,0.18238291,-0.15412793,-0.43654636,0.022950556,0.042963922,-0.529412,0.61685795,-0.2965123,0.10613023,0.04430202,0.30353504,0.016042974,0.36718947,0.042296458,-0.22745192,0.015370105,-0.24252796,-0.09990815,0.089722455,-0.58491546,0.32306337,-0.040943537,-0.09678543,-0.029997375,-0.57486427,-0.50551736,-0.723834,0.2165076,-0.82940227,0.41710377,0.02049866,-0.23554364,0.1938035,0.2998186,0.37845197,-0.20847437,-0.043958485,0.33486512,-0.05450297,-0.008390631,-0.13113408,-0.011280255,-0.4220709,-0.51902217,-0.051258225,-0.33256993,-0.29525632,-0.31167722,0.1793717,-0.28582555,-0.075707614,-0.0071428865,0.5044804,-0.40752044,0.07191469,0.30416316,-0.16442367,0.54178816,-0.59213084,-0.11254698,-0.09372369,0.38052836,-0.19669755,-0.21144895,0.2680285,0.30521205,0.2700769,-0.04700532,-0.09892001,-0.18983667,-0.09261037,0.25021893,0.57909966,-0.21784045,-0.3776135,-0.03633299,-0.068296954,0.0035068542,0.14808336,0.062290244,-0.5131453,-0.11784574,0.03014077,-0.23747303,0.29315117,0.490684,-0.15399234,-0.18012115,0.35263103,0.47815475,0.18673679,-0.13781136,-0.0107803,0.0997073,-0.41851503,-0.12184538,0.12220959,-0.09710496,0.36473995,-0.07048882,0.32940885,0.7600317,-0.062722854,0.07015517,-0.056529462,-0.05464532,-0.13721938,-0.18516397,-0.10180295,0.15520637,-0.46060044,0.14982831,-0.037089195,0.63835526,0.22668162,-0.72797734,0.33926743,-0.5713281,0.13608234,-0.10957216,0.44092384,0.6587195,0.38382322,0.31486696,0.6463563,-0.47697416,0.059314985,-0.064705454,-0.51329577,0.17328325,-0.23624751,0.025427077,-0.51761216,-0.17024067,0.12848258,-0.014966437,-0.06414972,0.3177448,-0.6192412,0.0233544,0.089433506,0.9218038,-0.2074159,0.016524447,0.64412075,0.9456824,0.77112544,0.17720537,1.0265709,0.1634935,-0.22647789,0.3512058,-0.24234676,-0.5967583,0.247242,0.45436546,0.08476368,0.10519971,0.11882599,0.04043036,0.3812256,-0.39286473,0.1273251,-0.17232774,0.09184338,0.14916936,-0.28324178,-0.29115763,-0.28032836,-0.16498923,0.033852253,-0.018438471,0.116476454,-0.23326275,0.2564023,0.08847218,1.7339834,-0.081463456,0.117109194,0.085432515,0.38341156,0.15055707,-0.2594804,-0.1266611,0.30407318,0.4002259,0.35469246,-0.48799834,0.2515471,-0.099697195,-0.42138737,-0.1042441,-0.3259293,-0.17287333,-0.016017279,-0.45705852,-0.11558704,-0.054665696,-0.37917152,0.4774651,-3.064685,-0.072138116,-0.112224154,0.34919873,-0.24640666,-0.26535553,-0.04403607,-0.44352198,0.4219664,0.3608801,0.40188956,-0.64325875,0.33407983,0.3516148,-0.54079586,-0.14331159,-0.55512273,-0.11184315,-0.038623624,0.366613,0.0901471,0.09186065,0.09355692,0.18247686,0.4113012,-0.036786098,0.0955082,0.2812799,0.39894167,0.052387696,0.63863647,-0.04171323,0.3339898,-0.0956279,-0.1359326,0.30040178,-0.24467818,0.16824889,-0.06294043,0.15777586,0.460009,-0.3973589,-0.8265012,-0.8160594,-0.40729308,0.99109715,-0.15902558,-0.33479568,0.36257368,-0.22439824,-0.27708232,-0.05312821,0.6232353,0.0038933414,0.14151545,-0.80978715,0.01684154,-0.18344508,0.18982793,0.018127581,-0.2641282,-0.6043247,0.7139038,-0.01287932,0.5578553,0.24722287,0.021289451,-0.26552203,-0.39729053,0.07177031,0.8380422,0.36777332,0.0824015,-0.079256244,-0.1306871,-0.39190373,-0.25890478,0.09323878,0.5603198,0.61318153,-0.048093837,0.19661748,0.2622657,-0.046504267,0.10177673,-0.06451594,-0.22366844,-0.068893954,-0.095513366,0.5635368,0.44810534,-0.054027356,0.45863873,-0.06669044,0.26765677,-0.10556994,-0.36807892,0.44757563,1.047561,-0.08816471,-0.20175815,0.36795846,0.55508983,-0.088556066,0.2834272,-0.49843946,-0.21906707,0.42270353,-0.16024034,-0.523226,0.34050703,-0.33758482,0.10880114,-0.76211464,0.30068088,-0.3276902,-0.6489849,-0.5104368,-0.17214622,-3.6218054,0.21446005,-0.2689076,-0.29990688,-0.113421865,-0.07943375,0.3086655,-0.5809511,-0.3770301,0.16299318,0.020577775,0.5993889,-0.09141945,0.011424397,-0.25053743,-0.10111987,-0.2656401,0.18204309,0.09190949,0.27226672,-0.107714675,-0.29641256,-0.13045995,-0.09038858,-0.3806784,0.022001395,-0.62893486,-0.5521101,-0.21308152,-0.43392086,-0.25702447,0.6747175,-0.35253972,0.041235346,-0.15280536,-0.033244316,-0.25890118,0.4493297,0.1644841,0.114769265,-0.07438177,-0.04793615,-0.09880751,-0.31761426,0.36245772,0.179701,0.3320492,0.2693605,-0.08595936,0.30633503,0.46383002,0.5093259,-0.17454697,0.80883497,0.34070235,-0.09863161,0.26511872,-0.31527543,-0.23475692,-0.45787293,-0.2848692,0.11242478,-0.35760212,-0.5696545,-0.10682865,-0.33651084,-0.63395786,0.42840084,0.0036370498,-0.02485413,0.01942712,0.1296328,0.4389834,-0.21194541,-0.023857465,-0.003922552,-0.13236918,-0.5982191,-0.13803901,-0.46740392,-0.56422293,0.17604508,0.89427185,-0.1943798,0.03704593,0.09665267,-0.2866417,-0.050739236,0.04081844,-0.06317274,0.2289869,0.25515482,-0.15234397,-0.6737583,0.5361648,-0.28015366,-0.25127634,-0.6101907,0.3961997,0.5938387,-0.57234305,0.5632094,0.1805084,0.11644971,-0.15491308,-0.3772796,-0.11484831,-0.14664671,-0.32288042,0.26502043,0.047527917,-0.7325534,0.33555907,0.35238847,-0.24383442,-0.562437,0.5500224,-0.0156102395,-0.2004498,0.09275496,0.2191831,0.1141882,-0.019002499,-0.26833063,0.3586981,-0.44833127,0.29475847,0.24043664,-0.035007644,0.2652306,-0.07399305,-0.07708834,-0.5871571,0.013418181,-0.3877525,-0.308077,0.3042949,0.12401388,0.12692387,0.26532617,0.032064218,0.3020288,-0.20565997,0.0746467,-0.049349565,-0.22975121,0.16712753,0.40218097,0.4372823,-0.45182467,0.5937029,0.08255307,-0.04349162,-0.017528176,0.16557445,0.3799943,0.2437042,0.46916205,-0.29745236,-0.19503531,0.34478292,0.90616375,0.14280179,0.556476,-0.01208359,-0.05381575,0.17722972,0.08998372,0.15657473,0.08817853,-0.68921196,0.18523486,-0.2694864,0.21489565,0.48920852,0.1028948,0.20364778,-0.08708368,-0.45877647,-0.040693242,0.32966003,0.08421629,-1.1548699,0.50695276,0.3006943,0.77628094,0.44873044,-0.08034559,0.04331385,0.7173959,-0.086935826,0.12260568,0.21772207,-0.004409888,-0.56303173,0.49374682,-0.8834214,0.38011998,0.01705931,-0.10952539,0.0847375,-0.15316379,0.30587295,0.675021,-0.10158687,0.13609563,-0.025102705,-0.24278805,0.23068775,-0.37018648,0.1249918,-0.4678696,-0.3757947,0.5942129,0.6211799,0.300803,-0.073109865,0.123921074,0.032684922,-0.11148421,0.15586598,0.08425005,0.023832964,0.022523237,-0.76000977,-0.17629647,0.5376771,-0.21416983,0.29257995,0.040167447,-0.18995534,0.29002506,-0.14968379,0.040665235,-0.0684817,-0.6320612,0.102622375,-0.21397957,-0.30049866,0.4790004,-0.14681694,0.2869765,0.2353494,0.04785661,-0.07006272,0.53522074,0.11875309,0.8306548,0.0081187105,-0.14282452,-0.51036143,0.06492966,0.088596664,-0.21862653,-0.18854935,-0.35160235,0.021680875,-0.6378549,0.3505719,0.052367706,-0.36898306,0.1550809,-0.09403692,0.045653548,0.5967733,-0.17396395,-0.14468786,0.03174641,-0.15378669,-0.13762137,-0.12146255,-0.09165333,0.32213968,0.27380657,0.10060293,-0.0083109755,-0.040966522,-0.31475347,0.30623367,0.14064528,0.56123745,0.335153,0.04105666,-0.19001982,-0.13989653,0.17352448,0.43826744,0.06616225,0.033913914,-0.20293696,-0.5450781,-0.4250551,0.03754763,-0.024278412,0.46546477,0.1699409,-0.16218781,0.6014352,-0.19848402,1.0619986,0.011965996,-0.31458005,0.1267444,0.37635717,-0.031130973,-0.09895512,-0.39748353,0.7862783,0.5880857,-0.041469056,-0.12802535,-0.21402285,-0.15597272,0.24310498,-0.2575456,-0.09727507,0.07422267,-0.7298528,-0.29433718,0.10411725,0.2586928,0.19271326,-0.10189198,-0.101759516,0.19966817,-0.14295629,0.13544728,-0.5142275,-0.17236778,0.27011842,0.2886764,-0.08388012,0.009467674,-0.44349337,0.5026532,-0.43424645,0.11009853,-0.3333922,0.17473507,-0.19968805,-0.25696278,0.18573262,-0.08149905,0.4215235,-0.0956445,-0.25926638,-0.17142533,0.52562314,0.26145545,0.18483172,0.5442653,-0.2601301,0.09347771,0.07969298,0.5754388,0.85334635,-0.4607621,0.08604427,0.3852241,-0.41577765,-0.43791634,0.29682928,-0.23607959,0.21590365,0.054458845,-0.16320495,-0.27574825,0.26443738,0.2998349,0.033700798,-0.0871075,-0.66309345,-0.20342483,0.18226875,-0.35713145,-0.25993022,-0.4430322,0.3437378,0.61414295,-0.30101278,-0.22772594,0.12618646,0.17253406,-0.15302351,-0.5515903,-0.08338662,-0.31104895,0.25368258,-0.034877304,-0.32636335,-0.16435935,-0.024540389,-0.37789965,0.3001991,-0.09238219,-0.35402533,0.11664617,-0.22213091,-0.22494657,0.88043493,-0.21037224,-0.09155432,-0.6923687,-0.36404246,-0.6075212,-0.3663128,0.330044,0.14591372,0.020408574,-0.3590253,-0.0841097,0.0073694075,0.028542118,-0.15675971,-0.37329417,0.37938595,0.018359492,0.46016088,-0.16389999,-0.8278085,0.27629846,0.15910587,-0.083628945,-0.73213434,0.5214941,-0.122147694,0.65686715,0.05292728,0.111009635,0.30406672,-0.27360776,-0.1307486,-0.26602212,-0.2637251,-0.83238155,0.13995062 -126,0.41225857,-0.27837053,-0.34705466,-0.19449617,-0.2970767,-0.18952714,-0.17316961,0.30254567,0.21515793,-0.18873248,-0.009177231,-0.14851856,0.15140149,0.3448396,-0.106555425,-0.79212993,-0.15477291,0.05332214,-0.67026067,0.4247882,-0.5866122,0.22424753,0.012048254,0.25479725,-0.16686252,0.43778637,0.3346039,-0.26326278,0.116150245,-0.069831654,-0.015598329,0.07377817,-0.71034855,0.105812445,0.019699948,-0.20772293,0.15643813,-0.43420476,-0.34574383,-0.6386966,0.13029267,-0.8590377,0.37328365,0.08028344,-0.06475302,-0.018651742,0.08441022,0.45240054,-0.48127845,-0.070394054,0.28406888,-0.10524222,-0.016545674,-0.28538933,0.23620436,-0.42786142,-0.4782357,-0.029753229,-0.48144963,-0.49007034,-0.18486436,0.18550372,-0.40055022,-0.033861756,-0.038287655,0.35294393,-0.4924392,0.017164053,0.3689323,-0.31263554,0.38676316,-0.34303474,0.09294352,-0.110987015,0.4628639,0.0030852281,-0.122728676,0.40174627,0.23993787,0.25079906,0.17330275,-0.18001446,-0.16784105,-0.26277044,0.213538,0.49425408,-0.16558054,-0.44706663,-0.039192066,-0.0018499998,-0.0130797075,0.2349313,-0.023838677,-0.3582617,-0.1251483,-0.06197475,-0.27207425,0.6764877,0.5277189,-0.09354043,-0.3585372,0.22278312,0.539215,0.21027909,-0.12941468,0.016899787,0.12410172,-0.5502929,-0.1669368,0.13394836,-0.079958156,0.49530804,-0.16317503,0.23731254,0.9985154,-0.25730136,-0.017659893,-0.107283816,-0.1038441,-0.10404166,-0.24528626,-0.08679123,0.14217648,-0.60212976,0.0288785,-0.27799073,0.9025841,0.2401442,-0.83322275,0.4045196,-0.5920142,0.14846548,-0.1564078,0.7101539,0.44138816,0.36413452,0.4682992,0.7005611,-0.2878287,0.22236243,0.05587565,-0.61153734,0.17752178,-0.30518195,0.09429664,-0.44842878,-0.014425957,-0.01895341,0.0810109,-0.013987775,-0.07887072,-0.48353502,0.07007759,0.27628422,0.8309258,-0.30166367,-0.014851144,0.5059157,1.064958,0.7998062,0.11459002,1.1508578,0.31743637,-0.2605917,0.30703944,-0.3517292,-0.82988954,0.13044834,0.33755583,0.14420699,0.17736222,-0.10622174,-0.004630545,0.21124345,-0.34381008,0.10644453,-0.04055021,0.61123997,0.20685361,-0.11571422,-0.3619613,-0.14091302,-0.07517566,-0.19534571,-0.008678427,0.1596583,-0.16727588,0.35859892,0.0063251075,1.0953422,0.015480489,0.17593226,0.0347245,0.6594406,0.18422523,-0.0010682368,0.015762476,0.5219769,0.34740612,0.14158393,-0.71511513,0.40644836,-0.21435307,-0.38149893,-0.06076955,-0.33976078,0.056155436,0.1647647,-0.35571113,-0.09854216,0.023741782,-0.053773265,0.5051596,-3.011098,-0.19947185,-0.0659115,0.23915316,-0.27288818,-0.013852327,0.11089912,-0.5504361,0.1094309,0.4004904,0.54111665,-0.76474583,0.45576066,0.48942274,-0.5089578,-0.2082088,-0.6692641,-0.084983855,-0.0067650583,0.48016196,0.17427762,0.16030455,-0.13653043,0.15563372,0.59408945,-0.09765454,0.043179784,0.31497702,0.37340218,0.22687949,0.584861,0.020527061,0.468526,-0.3203433,-0.081100695,0.24996042,-0.326093,0.20394418,-0.112314895,0.057808213,0.42532447,-0.25589317,-0.93904406,-0.6218599,-0.3857807,1.020501,-0.30162057,-0.36657274,0.33233613,-0.064397395,0.002548493,-0.049891744,0.4473888,-0.03403444,0.28001234,-0.60431576,0.14109947,-0.1116405,0.18825689,0.19015826,-0.15976633,-0.19397822,0.6116871,-0.003765152,0.37952647,0.36305445,0.14272928,-0.20559329,-0.3892377,0.101047434,0.5810077,0.2460625,0.077995524,-0.20737833,-0.25034302,0.069194406,-0.31956005,-0.058766775,0.49476668,0.8108912,-0.1246082,0.13088533,0.27925867,-0.1446391,0.046557374,-0.045109265,-0.24829942,0.104188174,0.0074559725,0.4263298,0.7727242,-0.33484203,0.4332452,-0.08194316,0.2819745,0.09117695,-0.3675755,0.66516656,0.3733477,-0.025922684,0.033767737,0.30439016,0.5146812,-0.50872236,0.4616118,-0.5626421,-0.06294441,0.68870795,-0.21647668,-0.4405648,0.21327117,-0.19531569,0.087435916,-0.9413528,0.5155292,-0.41307348,-0.46357375,-0.4142373,-0.1074539,-3.8734167,0.14746457,-0.2565549,-0.2466496,-0.32643348,0.027371278,0.19774781,-0.61053973,-0.33537385,0.38182923,0.2598554,0.4225585,-0.044939164,0.14636694,-0.32349476,0.12913087,-0.17784612,0.22909428,0.08253738,0.16314675,-0.012788282,-0.3660305,-0.1735351,0.030795945,-0.61948013,0.38634267,-0.49496314,-0.47727644,-0.052996937,-0.60800374,-0.40283343,0.67286235,-0.3165167,-0.068412684,-0.17503387,0.06314748,-0.35851547,0.3988303,0.08337129,0.13333584,0.0037632263,0.04814505,-0.096936226,-0.3788018,0.4621774,0.0017687212,0.48591316,0.053499162,0.024315871,-0.012178495,0.49240133,0.64009917,0.093463436,0.7916158,0.38761228,-0.13727333,0.34832293,-0.42776564,-0.19390693,-0.5610896,-0.47481245,-0.099363916,-0.26144636,-0.5652403,0.060091898,-0.29252416,-0.5810718,0.5907033,-0.023376342,0.20915325,0.06468005,0.0286067,0.29325858,-0.07098253,0.060065072,-0.06370106,-0.08933666,-0.6513035,-0.11057475,-0.6609307,-0.4821134,0.14553887,0.7151,-0.35931924,-0.04023277,-0.13426381,-0.3511234,-0.04027877,0.09224856,-0.015373798,0.3870406,0.2828609,-0.04232438,-0.6451961,0.51073927,-0.08714391,-0.20230936,-0.5459143,0.0868485,0.65579677,-0.70777154,0.58239335,0.23387194,-0.0098448545,0.045629032,-0.32166606,-0.42829543,-0.03818604,-0.08538188,0.3074105,-0.0868677,-0.7145889,0.4151305,0.30266222,-0.59415126,-0.62980944,0.2889189,-0.04365359,-0.27912572,0.04728397,0.20975359,0.052729037,-0.071320444,-0.31473443,0.1633065,-0.48878384,0.1787738,0.061034266,-0.09636153,0.5147053,0.14426252,-0.22584112,-0.7154194,-0.087401316,-0.47860485,-0.1737152,0.3025277,0.033942096,-0.0844051,0.09550386,0.04839974,0.27610877,-0.1388331,0.08443082,0.10208992,-0.41260844,0.1966564,0.45609748,0.3165299,-0.43808863,0.6264991,0.18832618,-0.06713519,0.120705016,0.012646294,0.35756618,0.10501958,0.27394354,-0.0627308,-0.11137439,0.3347863,0.8612357,0.18336354,0.6205846,0.0653573,0.004141051,0.65252876,0.033007916,0.18453479,0.2279853,-0.39330593,0.21569507,-0.031868055,0.21045627,0.48718113,0.33888465,0.44105908,0.18394811,-0.3249419,-0.019591633,0.41559216,-0.017456898,-1.170265,0.41443795,0.29578727,0.7619032,0.45362246,0.09460219,0.00034432916,0.9018412,-0.1796852,0.10212907,0.4197553,0.11868743,-0.5988674,0.80197215,-0.6970075,0.276546,-0.14633891,-0.09492059,0.15822867,0.1662382,0.25974604,0.5454267,-0.19510481,-0.059763238,-0.0915432,-0.17669551,0.005931506,-0.4281527,0.14766699,-0.28839356,-0.285742,0.59776175,0.44468397,0.2085177,-0.102148056,0.07080703,0.12833232,-0.041476708,0.25899985,-0.21509585,-0.12457183,0.1502051,-0.56430066,-0.22632188,0.72500336,-0.065458424,0.18983632,-0.29122537,-0.15369186,0.16949701,-0.34651655,-0.2659622,-0.026489882,-0.7560301,0.30350846,0.031138463,-0.41592106,0.57351,-0.2393187,0.22431153,0.20244329,0.016942222,-0.15678605,0.29546922,0.019960038,0.8307966,0.039109595,-0.30282182,-0.37854242,-0.03975747,0.26096198,-0.15417221,0.083172925,-0.4750578,-0.24391852,-0.33246204,0.5459295,-0.10458042,-0.31757826,0.025481177,-0.41088775,-0.04347368,0.5180968,-0.079725504,-0.18532106,-0.017020134,-0.23660366,-0.30548695,-0.0458126,-0.3279969,0.32414454,0.47518313,-0.13736579,-0.011496508,-0.30986023,-0.10410966,0.47037667,-0.035050727,0.43778455,-0.040704116,0.06653481,-0.19677626,-0.21297914,0.11963756,0.33297232,0.21532154,0.06609874,-0.27855113,-0.3390552,-0.17882712,0.0028079795,-0.09464935,0.2810232,0.041936047,-0.38793108,0.8182434,-0.032275096,1.199274,0.071452245,-0.24970391,0.2739026,0.4082588,0.06010407,0.12191535,-0.5174369,0.82245386,0.603482,-0.15814355,-0.0939025,-0.4760919,-0.21648256,0.27820644,-0.28989398,-0.030332688,0.044195764,-0.372317,-0.34818664,0.24553467,0.16662815,0.11474492,-0.010469217,-0.14086689,0.013535352,0.11272231,0.46183282,-0.6142846,-0.1766904,0.15174347,0.14248142,0.10291516,0.04148937,-0.35272402,0.43816233,-0.58350444,0.28084472,-0.56462026,0.08099452,-0.2936765,-0.3580289,0.08573185,0.008654787,0.422613,-0.27922532,-0.4868128,-0.0026108897,0.4086045,0.15366964,0.21273452,0.64386487,-0.2710074,0.059861716,0.07047982,0.5693257,0.91461444,-0.592533,-0.045078654,0.34262583,-0.3825789,-0.61008954,0.5133921,-0.1358691,-0.04407908,-0.1400566,-0.32590118,-0.52691895,0.19052267,0.2501687,0.009559278,0.01545697,-0.5495003,-0.39024782,0.34714493,-0.46008742,-0.34209758,-0.31316394,0.4353593,0.8578276,-0.41331732,-0.32003805,0.112169266,0.1562263,-0.20043986,-0.35860878,-0.2156817,-0.14282714,0.34604618,0.09765555,-0.25479355,-0.1510796,0.2898754,-0.3526339,0.1529852,0.07979822,-0.38930696,0.10946079,-0.013657167,-0.045938436,0.8335796,-0.29122713,-0.092869535,-0.7715522,-0.49067277,-0.8792231,-0.5381974,0.46721298,0.17661133,-0.07073469,-0.27624032,0.043702237,0.11084142,-0.18533272,-0.045641534,-0.6768944,0.3794369,2.474739e-06,0.46238235,-0.17364605,-0.9668646,0.03707216,0.28403386,-0.033855792,-0.8093797,0.52079004,-0.23147961,0.6831811,0.019379683,-0.07326882,0.010668727,-0.14399567,0.010970556,-0.43456408,-0.36855173,-0.6842021,0.22477216 -127,0.14415647,-0.30022344,-0.82338625,-0.1720907,-0.09647717,0.07851353,-0.21138817,0.5710449,0.30870143,-0.24412555,-0.20002478,-0.18224913,0.016669126,0.43902412,-0.13557804,-0.3027682,-0.27995035,0.13286535,-0.49578655,0.26469132,-0.4607019,0.02166004,-0.21391775,0.41780603,0.12541656,0.07287347,0.051859543,0.09066462,-0.039538283,-0.08084627,0.35669872,0.24463809,-0.63625365,0.06315688,-0.24865873,-0.43553343,-0.22236025,-0.44612637,-0.5006663,-0.71639234,0.5189311,-0.9013218,0.48089013,0.16413529,-0.16437425,0.59479755,0.10715872,0.18705744,-0.29137048,-0.1456033,0.1588233,-0.088810824,-0.10845124,-0.12559512,-0.23440246,-0.23318183,-0.6169712,-0.0077282214,-0.34498522,0.026094994,-0.29979947,0.03484156,-0.3622187,0.16572967,-0.21576925,0.36641407,-0.35665902,0.10768401,0.27300382,-0.053696226,0.34062943,-0.51028234,-0.21767952,-0.17492636,0.06902993,-0.2723821,-0.25803763,0.24294317,0.31916514,0.3093449,-0.34528708,-0.07735949,-0.30526218,0.006234283,0.07821654,0.4050988,-0.17306888,-0.3334296,-0.10960722,-0.24078684,-0.10257998,0.0991835,0.19870096,-0.26911476,-0.09669227,0.0953119,-0.2609341,0.3892456,0.42405534,-0.13096105,-0.25536278,0.36654618,0.5308875,0.3338679,-0.060746867,-0.16191787,0.028360812,-0.56291866,-0.21876104,-0.13520311,-0.16411911,0.5652751,-0.098352514,0.19373631,0.5302783,-0.21747877,-0.22902818,0.060305726,0.12014391,-0.092319466,-0.44905496,-0.34000745,0.43534127,-0.43658367,0.28637612,0.0036327417,0.4872509,0.0027841032,-0.68734,0.34138212,-0.64133424,0.11137023,-0.04503706,0.45439634,0.6105744,0.3976183,0.40787196,0.6420174,-0.29489493,-0.020175437,-0.094772905,-0.3474778,0.23556595,-0.21306263,-0.10679841,-0.45597884,0.04178684,0.14050657,-0.088491976,0.20796156,0.34755996,-0.2584461,-0.12644438,0.281805,0.6375887,-0.24483877,-0.05465587,0.5356851,1.1918826,1.0103396,0.08172505,1.182558,0.10752813,-0.26722056,0.2906849,0.0657037,-1.2316227,0.289749,0.25074366,-0.25483623,0.39281878,0.08635812,-0.0017165752,0.42524397,-0.5128223,-0.005042076,0.07259292,0.14567797,0.24405307,-0.24972929,-0.29456422,-0.41090226,0.04317255,0.017887076,-0.020180566,0.1911421,-0.14772373,0.08200073,0.12388263,1.5193082,-0.086076535,0.083537795,0.19478388,0.50094265,0.12662284,-0.24895518,-0.24681644,0.24350627,0.33573386,0.14547761,-0.56666166,0.3211548,-0.048377793,-0.5067552,-0.08510235,-0.38092732,-0.19081457,-0.058993507,-0.48436633,-0.12001131,-0.24182408,-0.35488176,0.3390505,-2.8801727,-0.057492714,-0.092968516,0.33378315,-0.09276136,-0.18271494,-0.21819393,-0.37241957,0.3566154,0.44461307,0.346241,-0.5362262,0.3165846,0.44536138,-0.5880683,-0.003316899,-0.5421846,-0.12431767,-0.0703441,0.14231291,0.041933417,0.005421365,0.10993602,0.31071267,0.38145646,0.021080628,0.18193345,0.41361836,0.42394933,-0.12176734,0.4281625,-0.15160303,0.5090752,-0.5151842,-0.24697757,0.2680998,-0.51679146,0.19860528,-0.18180875,0.046608955,0.48973227,-0.40376756,-1.0312883,-0.47974202,-0.0480073,1.3215898,-0.3908178,-0.4049615,0.30173078,-0.5780427,-0.33931795,-0.15100724,0.55870426,-0.18625571,-0.11401486,-0.9980271,0.023080379,-0.22962968,0.26512828,-0.084106766,-0.031841222,-0.46209225,0.59494853,-0.005144755,0.6869941,0.44315615,0.02565968,-0.4149252,-0.31879592,0.14876306,0.6097252,0.17412238,0.1738892,-0.34368277,-0.12525403,-0.3558941,0.086728334,0.20456617,0.3989303,0.41519165,-0.0694119,0.2750531,0.20037158,0.13721444,-0.009460777,-0.19692408,-0.13409372,-0.11364075,0.02734077,0.56844527,0.73879784,-0.16093765,-0.08464333,-0.061509073,0.2298563,-0.22309037,-0.41315213,0.39255646,1.0165769,0.037616476,-0.1896404,0.64706635,0.6940909,-0.47165182,0.5226059,-0.5112,-0.25330555,0.37627375,-0.13245226,-0.40958357,0.14910053,-0.41393343,0.044237673,-0.7930646,0.11342869,-0.17975827,-0.15648896,-0.5689288,-0.21518815,-3.2565758,0.20006232,-0.15462397,-0.30967677,-0.24862985,-0.08554823,0.29671046,-0.5017178,-0.8378394,0.100850515,0.036641166,0.79291487,-0.13683702,0.061528135,-0.24509566,-0.19823076,-0.29511064,0.11431831,0.21860029,0.3194163,0.01879388,-0.52455467,-0.27118838,-0.25605735,-0.39815938,-0.08473142,-0.33625913,-0.1424341,-0.00550509,-0.53329426,-0.43832302,0.4071926,-0.2225691,-0.072219156,-0.18954313,-0.04503554,-0.2001403,0.42682195,-0.050888095,0.21451026,0.0876492,-0.08037045,-0.014782645,-0.070950024,0.35546407,-0.018593958,0.28816494,0.38094845,-0.25837642,0.051999044,0.47160044,0.7105665,-0.08455775,1.0163118,0.527331,0.09977911,0.31330732,-0.12791418,-0.11280876,-0.48595858,-0.15793407,0.032503974,-0.45033133,-0.3118729,0.056042697,-0.3058129,-0.776958,0.5865521,0.015637329,0.14375226,0.17083704,0.11976815,0.37522873,-0.2088316,0.05756156,-0.07403877,-0.122626066,-0.39242625,-0.19152485,-0.60206383,-0.40754065,-0.09337298,0.9628187,-0.12218668,0.03200522,0.14858614,-0.19800436,0.1600938,0.3407984,0.06615186,0.30562696,0.5843715,0.107124686,-0.4395081,0.3618492,-0.18797249,-0.19429614,-0.66785884,0.026018882,0.4226873,-0.49257043,0.6984852,0.4890903,0.18067348,-0.117090285,-0.5580288,-0.33177313,-0.06337284,-0.28302863,0.43104616,0.5061044,-0.96005994,0.4185499,0.40790737,-0.263418,-0.73905164,0.75934553,-0.06072781,-0.0049378076,-0.097440936,0.33699086,-0.09957818,0.095055915,0.10224915,0.29209292,-0.2454285,0.15252122,0.16247737,-0.030665353,0.23396224,-0.1426586,0.24138354,-0.5209658,0.116680585,-0.4124894,-0.14870794,0.2546266,-0.08848981,0.11014799,0.18632405,0.0016958466,0.30919042,-0.22488661,0.06495292,-0.14418812,-0.40041557,0.46395698,0.43779492,0.5319352,-0.3920217,0.6291225,-0.08494654,-0.14621094,0.0021582816,-0.03961234,0.3689874,-0.13723935,0.4621409,0.16097338,-0.18689835,0.242797,0.7559182,0.20196019,0.23685347,0.04920538,0.06648456,0.23107924,0.109877855,0.2977487,-0.061352357,-0.6252509,0.06581717,-0.29884347,0.23871274,0.47059724,0.05977462,0.3331618,-0.29261076,-0.29315484,0.060049087,0.3343074,0.052819043,-1.2415365,0.29145548,0.10548713,0.8371482,0.73631305,-0.055210363,0.07343092,0.43162242,-0.14775343,0.0809018,0.4191055,0.0761571,-0.5459351,0.5431708,-0.65247303,0.53790915,-0.13045873,-0.03027915,0.10837024,0.020865342,0.5165674,0.63589376,-0.064889066,0.08465282,0.192572,-0.4193896,0.25606564,-0.3739859,0.22731946,-0.54787374,-0.13226514,0.65044814,0.55724734,0.44158706,-0.2768983,0.019080192,0.057934523,-0.2046342,0.065175734,0.040600546,0.046742443,-0.14063688,-0.80267715,0.011814539,0.46217504,0.21832488,0.10072321,-0.08094921,-0.4480339,0.28540364,-0.17232974,-0.12226152,-0.068030484,-0.64468926,-0.020291567,-0.38478756,-0.45481965,0.2987447,-0.13078439,0.28936115,0.3875527,0.08968479,-0.4190739,0.2517096,-0.08223091,0.8709585,-0.11245944,-0.17406464,-0.30460528,0.21556006,0.2586752,-0.13539326,-0.07469258,-0.44968334,-0.018933645,-0.25215968,0.53955406,0.027727582,-0.27319828,0.20055564,-0.07755051,0.16280209,0.66877675,-0.13264562,-0.07145084,-0.11760066,-0.06464996,-0.24759914,-0.29803804,-0.19819798,0.28435284,-0.024376592,0.12690906,-0.10996912,-0.021087011,-0.020128379,0.37679824,-0.020742754,0.32331502,0.49133334,0.21145217,-0.31789407,-0.1203232,-0.0122031495,0.7265975,-0.062639676,-0.35851762,-0.44285622,-0.39402613,-0.17182232,0.43672743,-0.07402684,0.37797,0.11040185,-0.2137627,0.51941466,-0.045367986,0.81697035,-0.038606834,-0.36789152,0.055095006,0.4843837,-0.021364497,-0.33719602,-0.35644647,0.5497782,0.38683596,-0.24200584,-0.25820398,-0.22401564,0.009488565,-0.17352493,-0.2427193,-0.1624014,-0.12582304,-0.7266906,-0.029064551,0.04651344,0.39201903,0.14603575,-0.20974775,0.32086498,0.27986482,0.031041643,0.19646321,-0.3199829,-0.12605499,0.29098043,0.16427767,-0.05313613,0.08013472,-0.4010503,0.30455118,-0.45964238,-0.14753927,-0.28718433,0.11106639,-0.16719763,-0.29917297,0.18470837,-0.15334417,0.35942528,-0.1810279,-0.02621798,-0.23122413,0.31802192,0.11925048,0.21966892,0.57152206,-0.21902962,0.119338214,0.12226441,0.5057009,0.69156927,-0.17287952,-0.018843174,0.17467324,-0.3291215,-0.60578835,0.3687694,-0.4660491,0.40195933,-0.08883572,-0.021584483,-0.6056935,0.27134955,0.17756309,-0.04156248,0.14481385,-0.76544553,-0.23966007,0.21411943,-0.31086153,-0.12140285,-0.3812747,-0.22447102,0.6101337,-0.14449129,-0.102124654,0.11489522,0.26146892,-0.059474647,-0.44362625,0.09641891,-0.39439902,0.22028816,-0.09373111,-0.37038526,-0.1627835,0.067672126,-0.41540876,0.37967005,0.01591291,-0.17957957,-0.040446598,-0.40729317,0.016027907,0.94170094,-0.23845953,0.21079777,-0.2791664,-0.6231984,-1.0410172,-0.10819011,0.38401926,-0.03580715,0.014060658,-0.5870192,0.07792484,0.055642355,-0.3283886,-0.23020439,-0.14547242,0.40993834,0.03181885,0.48845062,-0.021699468,-0.68944216,0.004506687,0.0849816,-0.16919948,-0.30625156,0.59412956,0.05389164,0.75165945,0.10809932,0.21175297,0.10617911,-0.50722617,0.15482917,-0.05579679,-0.00875816,-0.4426264,0.14230938 -128,0.31596702,-0.21122333,-0.61276525,-0.24920958,-0.2910409,-0.1617813,-0.3542586,0.050331075,0.14283966,-0.16059014,-0.25213826,0.009813047,0.18350904,0.19493431,-0.1905869,-0.78452843,0.06796636,0.21709484,-0.7514541,0.44062054,-0.6447211,0.32276285,0.06642161,0.4084789,0.009093422,0.3390431,0.2819939,-0.16219245,0.09495059,-0.22036019,-0.14964063,0.2564756,-0.68094534,0.08108707,-0.23437455,-0.47373247,0.084315106,-0.35154215,-0.15665492,-0.8661989,0.19894339,-0.89121926,0.46866515,-0.021026643,-0.30162942,0.030003143,0.3218538,0.3188049,-0.37259153,-0.024389086,0.3118583,-0.2340326,-0.20774451,-0.32038435,0.12545109,-0.41698387,-0.51738614,0.039878268,-0.7170665,-0.3110654,-0.32778406,0.23078777,-0.34814185,-0.005978127,-0.12938511,0.3513489,-0.38874117,-0.07643996,0.09592569,-0.21202469,0.41536078,-0.5497904,-0.066566855,-0.055381224,0.63855517,-0.11037746,-0.21268974,0.36320767,0.25524372,0.3719568,0.19172782,-0.3460253,-0.20928138,-0.06418804,-0.06350608,0.5271194,-0.23454784,-0.39378107,-0.20612341,-0.07871075,0.48639297,0.36501437,-0.03581414,-0.12821145,0.002603939,0.0023961435,-0.219496,0.61995596,0.6289784,-0.36410114,-0.3254236,0.31835446,0.4244946,0.23560216,-0.31310213,-0.012157014,-0.0008245672,-0.6171573,-0.20527697,0.075793914,-0.0005772206,0.45295545,-0.21086492,0.16564892,0.8568389,-0.076255694,-0.019132825,0.19720048,-0.06686037,-0.0699165,-0.11932124,-0.24577919,0.24465667,-0.6593682,0.004569645,-0.36132225,0.8404451,0.05811097,-0.80956745,0.39759058,-0.5246708,0.15728475,-0.1075809,0.7222552,0.7159132,0.5303609,0.4302435,0.76575875,-0.35527393,0.1319649,0.12586607,-0.5262944,0.116590485,-0.08276485,0.12805687,-0.38631418,0.029147955,-0.043130457,0.29754236,0.12947255,0.45363337,-0.5035834,-0.16882035,0.23533733,0.6483875,-0.35193774,0.08219433,0.68471134,1.0399479,0.9548289,0.15720686,1.0827656,0.19871777,-0.17806824,0.08277336,-0.15038776,-0.8074808,0.18941452,0.23905614,0.12484495,0.13362741,-0.087290436,-0.0058915615,0.4149898,-0.4539585,-0.06867524,-0.041681293,0.3210153,-0.0034846389,-0.028396698,-0.446105,-0.25397962,0.14768948,0.124975316,0.2198549,0.23169869,-0.22583254,0.22718547,-0.046435602,0.91786,-0.09724338,-0.034836724,-0.010754689,0.6234914,0.37845197,-0.024185197,-0.098048195,0.29695243,0.47419584,-0.021289736,-0.74747425,0.12960257,-0.37037772,-0.28220874,-0.15797046,-0.37111166,-0.13644432,0.21419133,-0.37313664,-0.2876238,-0.026428662,-0.305593,0.3596045,-2.7851202,-0.38215524,-0.10510818,0.3252102,-0.14222823,-0.050510764,-0.22833346,-0.6300277,0.41160136,0.22720084,0.5291846,-0.5620775,0.5039594,0.5571445,-0.59640145,-0.2885998,-0.7760627,-0.072854504,-0.028615216,0.4141293,0.19979906,-0.1957972,-0.19207825,0.16247874,0.7686001,0.040462025,0.11734419,0.40780643,0.4503085,0.0403871,0.5445125,0.1479691,0.6435216,-0.24276592,-0.16593656,0.17036846,-0.39747217,0.1083002,-0.28939885,0.041592613,0.5527599,-0.55821884,-1.0285087,-0.5768857,-0.044701695,1.0910401,-0.3113065,-0.5338803,0.24434802,-0.21530993,0.03263993,0.2225634,0.63597953,-0.1667069,0.085342556,-0.74309355,0.13797486,-0.105961286,0.18589288,0.077192776,-0.07894259,-0.4390397,0.6989223,-0.0331913,0.6048547,0.18541762,0.24087994,-0.30864686,-0.40506536,0.24106044,0.7975312,0.23013641,-0.020273749,-0.22881944,-0.23664236,-0.1655797,-0.27655917,-0.02966945,0.6343281,0.82974917,-0.17929229,0.22398582,0.36068016,-0.082620494,0.15511702,-0.10975189,-0.26867735,-0.097168475,0.0015458739,0.50327665,0.8193178,-0.06527351,0.37993386,-0.12381573,0.43615833,-0.06633058,-0.53019875,0.7658843,0.570799,-0.09239908,0.0013637107,0.42261982,0.5380733,-0.35919374,0.5015122,-0.5623554,-0.44176924,0.69344234,-0.24515128,-0.3964372,0.17220895,-0.4251641,0.16230543,-0.7584076,0.486893,-0.4253699,-0.40189523,-0.34911746,-0.068998456,-3.5504656,0.1919927,-0.26906174,0.04562068,-0.57548845,-0.21980627,0.3381906,-0.57772744,-0.44982308,0.11601158,0.28401965,0.74540323,-0.07894777,0.1775682,-0.3212903,-0.27300897,-0.17549405,0.19223356,0.19218561,0.21416532,-0.03574904,-0.25363874,0.07538294,-0.05076358,-0.40392563,0.09479081,-0.435877,-0.4225254,0.014007256,-0.6249702,-0.39100978,0.62599415,-0.21177253,0.01262355,-0.28608334,0.1192408,-0.19299045,0.24916242,0.093973905,0.17738877,0.027880134,0.060600404,0.23865014,-0.27907833,0.48673397,-0.21677369,0.22344682,0.011417123,0.07555055,0.0590196,0.4905663,0.48009887,-0.17813359,1.0970056,0.41335732,0.008011887,0.25944245,-0.2905347,-0.51526177,-0.6825959,-0.23877364,-0.120597,-0.37459862,-0.26527622,0.11389795,-0.37661263,-0.75515217,0.6587696,0.0132906055,0.27957043,-0.07486545,0.33847746,0.29862085,-0.054492574,-0.05077571,-0.07062915,-0.10784631,-0.46769422,0.06558137,-0.8696454,-0.42341107,-0.17476276,0.8082345,-0.34735292,0.045891322,0.054196715,-0.06885112,0.056022875,0.120361015,0.13984126,0.33431002,0.51476145,0.028527351,-0.6563587,0.32262245,-0.1385996,-0.17325284,-0.6011147,0.119801484,0.66820043,-0.8101768,0.5318336,0.58839995,0.09458309,0.029644966,-0.6130345,-0.21522978,0.054361437,-0.118559726,0.48986477,0.10688266,-0.9389735,0.64870554,0.34657514,-0.39676946,-0.7267775,0.49221113,-0.030827083,-0.3818386,-0.22439297,0.36386615,0.08086598,-0.08716805,-0.1507233,0.16546609,-0.34931135,0.38197005,-0.026714463,-0.11931189,0.5812774,-0.115719035,-0.3124916,-0.64351624,-0.12763745,-0.6608134,-0.2049383,0.20223525,-0.004739275,-0.05456595,0.22073552,-0.050832376,0.47199658,-0.36129168,0.06212053,-0.04519943,-0.27401397,0.2251588,0.520962,0.39207986,-0.36237723,0.61500925,0.16686863,-0.19296248,0.03576469,0.008470214,0.46385273,-0.093329854,0.46093148,-0.24919507,-0.18991573,0.24671723,0.78748643,0.07544822,0.54769665,0.032647066,0.031990804,0.43852937,0.0690111,0.11888848,0.03624455,-0.36750966,-0.036711916,-0.14474727,0.19889353,0.5308243,0.28775135,0.25554717,0.077301234,-0.11924023,-0.11336066,0.22016475,-0.13949284,-1.0562937,0.5881194,0.28846714,0.66107017,0.44901836,0.14410819,-0.15622042,0.68240535,-0.3593041,0.020048449,0.3449798,0.039835528,-0.43358532,0.74580663,-0.58737546,0.4579905,-0.19149525,-0.032670494,0.15569662,0.06096563,0.2670224,0.81066746,-0.2563378,0.14886424,-0.0070291874,-0.18454339,0.16714375,-0.39387316,-0.007108849,-0.34951958,-0.32851523,0.80540466,0.33567497,0.26510113,-0.18609788,-0.046608586,0.065719925,-0.19173244,0.09607057,0.037216417,-0.039006885,0.19385034,-0.53966963,-0.09612624,0.54425514,0.2112251,0.09022688,-0.110659614,-0.163937,0.23323034,-0.30133548,0.07307605,-0.13412644,-0.44278902,0.091553204,-0.2579283,-0.3884506,0.64831704,-0.22327559,0.16004251,0.2814871,-0.029942205,-0.048459765,0.2259914,0.049679417,0.5245191,0.081163004,-0.2495024,-0.33542302,-0.023265362,0.20380116,-0.2918862,-0.03642363,-0.48663026,0.09055372,-0.4000233,0.5138516,-0.23934211,-0.34818664,0.105940655,-0.2351331,-0.1426523,0.5061749,-0.13412179,0.06695427,0.16513199,-0.07433059,-0.21808478,-0.21145108,-0.25312713,0.105954185,0.271258,0.052087452,-0.14425436,-0.3620262,-0.12534514,0.58434343,-0.045665964,0.42372915,0.22552162,0.26038167,-0.15569553,0.051791906,0.18222496,0.5365525,0.12716031,0.020819804,-0.36973003,-0.40625098,-0.30746713,0.12544647,-0.03779689,0.14326999,0.10247163,-0.0967358,0.8278213,0.015932592,1.0047925,0.0625668,-0.3436797,0.18094108,0.64256996,-0.14347427,0.024416158,-0.3827028,0.95345014,0.49707502,-0.29095668,-0.0674161,-0.45258617,-0.17243297,0.21333085,-0.31543767,-0.072552815,-0.1792466,-0.56597704,-0.4943133,0.22769144,0.34239313,0.07187575,-0.12744468,-0.008505939,0.038707193,0.14726909,0.41762483,-0.7969887,-0.33326226,0.17078008,0.23558196,-0.15263921,0.23510493,-0.39284128,0.36855656,-0.5548413,0.11401269,-0.49271816,0.13664255,-0.08137187,-0.42185974,0.15793766,0.056492236,0.31443718,-0.23314771,-0.36472857,-0.05158722,0.3261239,0.14417128,0.31135127,0.58561826,-0.2767846,-0.06673168,0.1191963,0.68233097,1.2208114,-0.25899476,-0.12136595,0.35519406,-0.42465127,-0.57544893,0.171187,-0.44713897,-0.078475,-0.115645535,-0.38337782,-0.3653031,0.14526388,0.08167207,0.07566155,0.01543664,-0.69282746,-0.24145493,0.29713288,-0.19253132,-0.1963087,-0.2182157,0.43961924,0.6760766,-0.32075417,-0.06025451,0.017577795,0.24059494,-0.22293058,-0.6115927,0.14113937,-0.35600752,0.42634946,0.07086308,-0.27632853,-0.057300866,0.17200352,-0.5060845,0.13132882,0.36154556,-0.26602665,0.07307875,-0.28764546,0.08540384,0.868599,-0.30737722,0.030219037,-0.45448667,-0.45206702,-0.85167783,-0.19374143,0.2524835,0.24552324,0.0071445704,-0.54548603,0.004666998,-0.060543753,-0.20660162,0.08632029,-0.5090965,0.3872584,-0.0384905,0.5410805,-0.3468284,-0.9191831,0.14300083,0.13816983,-0.30798632,-0.66974205,0.6304426,-0.13778459,0.8737768,0.15714842,-0.14185329,0.008717695,-0.39490145,0.17892735,-0.48239848,-0.09665966,-0.815232,-0.007852105 -129,0.5913151,-0.15718399,-0.5354785,-0.10436858,-0.38206002,-0.004946629,-0.117645785,0.6725362,0.23369758,-0.4064207,-0.21461795,-0.20940547,0.07891701,0.22817574,-0.2935401,-0.48706678,0.06600399,0.18506426,-0.28361544,0.56250507,-0.45021704,0.16516949,0.17129819,0.39226308,0.28025395,0.06250014,0.203888,0.036003962,-0.1983814,-0.38936612,-0.11422641,0.36620182,-0.41919076,0.092123434,-0.3576613,-0.4798451,-0.076610886,-0.46554774,-0.27186057,-0.80682176,0.30927074,-0.85539323,0.4268066,0.16874097,-0.43712643,0.27842045,0.08322358,0.046886586,-0.24573237,-0.1493296,0.118811555,-0.16361,-0.034090262,-0.21946952,-0.23867017,-0.31250852,-0.7215777,-0.019523537,-0.36896268,0.03875963,-0.4363294,0.23335934,-0.31619588,-0.13790129,-0.15854457,0.47514984,-0.476412,0.014835533,0.10110486,0.04717432,0.32240158,-0.6831888,-0.19271678,-0.17095052,-0.08004544,-0.1671219,-0.30046162,0.23058316,0.35887283,0.4604858,-0.041127797,-0.27298015,-0.442719,-0.00904704,0.08695283,0.28932223,-0.25268883,-0.66750205,-0.17082952,-0.104760066,0.31622174,0.44350657,0.29580525,-0.14801775,-0.13063209,-0.07001677,-0.22083575,0.44362402,0.5101915,-0.3819289,-0.15570368,0.1434877,0.4739652,0.19278048,-0.17661531,-0.045800947,-0.06915603,-0.6561288,-0.1477036,0.08523663,-0.30342236,0.68330395,-0.25045878,0.16019915,0.6198626,-0.1693962,-0.11266533,0.25960657,0.16039737,-0.13406661,-0.4360368,-0.34741777,0.32145154,-0.57969075,0.19110475,-0.25341243,0.78553796,-0.0060305875,-0.8521084,0.25356534,-0.5073102,0.09737036,-0.08587707,0.5564626,0.632965,0.40084967,0.49928647,0.7326572,-0.4030226,-0.037947673,-0.0649442,-0.24594314,0.098990925,-0.2483469,-0.101576895,-0.5104632,-0.017743273,-0.14525665,-0.09134711,0.11480085,0.67234623,-0.56216276,-0.120947234,0.38662058,0.6040401,-0.28330535,-0.19306657,0.9037369,1.0914683,1.1981671,0.059165172,1.0223373,0.14618705,-0.14639282,0.082296945,-0.12650378,-0.6228311,0.28220728,0.37183106,0.07299099,0.026930816,-0.007580175,-0.058299847,0.38223788,-0.48224875,-0.13124654,-0.16502641,0.07005135,0.025524434,-0.15169166,-0.4701051,-0.4484213,-0.050569043,0.17445844,-0.08035879,0.3367939,-0.22727016,0.48157737,0.014440354,1.3909612,-0.0145445345,-0.077151746,0.16462778,0.51116735,0.23728466,-0.06294597,-0.05867495,0.29905722,0.23393328,0.045882706,-0.4245844,0.07579504,-0.19668564,-0.591858,-0.017290263,-0.34098235,-0.18822289,-0.08105873,-0.6825705,-0.17450759,-0.079383664,-0.34846509,0.53512746,-2.5939841,-0.022063542,0.094167955,0.18551676,-0.09544707,-0.4061024,-0.014830065,-0.4586005,0.5095004,0.34209242,0.47905558,-0.7363378,0.3172273,0.5162347,-0.55850106,-0.060684778,-0.7835781,-0.3051736,-0.0987172,0.33696845,0.16876628,-0.124500595,0.11056207,0.06564529,0.7510275,-0.013699434,0.3057685,0.24527882,0.27361667,-0.28422675,0.41315466,0.08733454,0.4117104,-0.18497995,-0.30639592,0.41294083,-0.2602469,0.25650984,-0.048797164,0.09667882,0.5556084,-0.50459915,-1.0112945,-0.65709686,-0.15902151,1.0933543,-0.14777565,-0.4444918,0.31825176,-0.31722298,-0.21070156,-0.043334257,0.5113194,-0.009850685,0.01585466,-0.75809383,-0.0007271806,-0.103204004,0.17060277,-0.007508429,-0.069974236,-0.4346236,0.8915938,-0.101485215,0.41557753,0.4535796,0.17661761,-0.4351507,-0.5493229,-0.004143991,0.9436595,0.53778994,0.10986614,-0.31700078,-0.21065423,-0.3378074,0.030783566,0.14364132,0.5596804,0.66510874,-0.12412796,0.24008362,0.22918914,0.18725558,-0.045594964,-0.2078553,-0.2832785,-0.17761175,0.01291007,0.63126576,0.82548565,-0.09927807,0.3545613,-0.22839098,0.35102418,-0.0872607,-0.50888455,0.41629037,1.0039353,-0.134259,-0.20914431,0.73375076,0.5690227,-0.2416982,0.5890186,-0.61832464,-0.32305497,0.34104165,-0.09063207,-0.45029843,0.17386644,-0.33558255,0.036961447,-0.83897305,0.30702305,-0.3810961,-0.4670246,-0.74408287,-0.21120402,-2.8925936,0.41546422,-0.32849646,-0.1551742,-0.092151806,-0.28589928,0.23703724,-0.7582251,-0.5754984,-0.020837903,0.22562766,0.6551774,-0.045789238,-0.0068119722,-0.23682605,-0.43673566,-0.16287199,0.13554038,0.117511526,0.29255423,-0.19723015,-0.43119892,0.01733659,-0.195733,-0.40917167,-0.14228617,-0.72510046,-0.4680242,-0.22931947,-0.382934,-0.3079422,0.62449634,-0.33636132,0.09544166,-0.101237096,-0.033646878,-0.011419074,0.27917972,0.15177079,0.14869396,-0.100411095,-0.08593979,0.01949112,-0.2365995,0.07655667,0.03951614,0.21126483,0.5397553,-0.15356404,0.24945664,0.56585133,0.72826666,-0.17352526,1.0484849,0.49166,-0.044302765,0.22508939,-0.14131941,-0.32942227,-0.7500451,-0.24647838,-0.06592323,-0.508507,-0.3886552,0.04656783,-0.29120547,-0.8163549,0.6593993,-0.033141874,0.22604321,-0.06542554,0.30817774,0.57713675,-0.24300379,-0.11831471,-0.09804215,-0.12823455,-0.5614738,-0.4040905,-0.7748217,-0.5659779,-0.058011103,1.10131,-0.19505781,0.010339165,0.13485837,-0.07416981,0.01825677,0.16253895,-0.11579719,0.031606667,0.49672553,0.040189438,-0.57479197,0.47258663,0.11505261,-0.26060787,-0.41998816,0.27375826,0.5250329,-0.5845314,0.60427976,0.50257355,0.10670876,-0.16993837,-0.7910227,-0.17838506,-0.08716537,-0.17246428,0.66185445,0.43036583,-0.73833364,0.5281788,0.3922786,-0.23693706,-0.823715,0.6088035,-0.045151852,-0.42688695,-0.14192803,0.33044443,0.10372729,0.019482516,-0.14699337,0.38567993,-0.5469001,0.31065372,0.29834569,0.0071133403,0.13349219,-0.21837778,-0.12001392,-0.8036799,0.1497327,-0.57003886,-0.40742233,0.18282229,-0.0071812826,-0.14779444,0.2927475,0.16196373,0.4365185,-0.30838615,0.22013786,-0.1334753,-0.24143623,0.38146237,0.52981055,0.5288538,-0.34767506,0.64224935,0.030185735,-0.16495846,-0.20674556,0.11728051,0.43581396,-0.08049409,0.5370146,-0.19684838,-0.17122819,0.27565315,0.58513236,0.1973017,0.44132057,-0.09089152,-0.080246,0.2434517,0.09341981,0.398092,-0.13574713,-0.53017366,0.10452973,-0.30720586,0.10121034,0.5258822,-0.081736274,0.24501804,-0.017389575,-0.12710196,0.07260856,0.23381716,-0.029284218,-1.3072308,0.26720804,0.14097077,0.88545495,0.7263257,0.0389695,-0.047214072,0.7173216,-0.37539154,0.1342341,0.48858115,0.22937289,-0.53736496,0.63497424,-0.76643395,0.33911768,-0.16776152,0.021058861,-0.071408056,-0.12644917,0.46416202,0.6435848,-0.2524415,0.11248228,0.07529692,-0.35425168,0.18633531,-0.45758596,0.18865356,-0.49814045,-0.34309682,0.8030527,0.5516978,0.28692588,-0.19756825,-0.0027260084,0.18279535,-0.20772512,0.21803634,0.07870065,0.2402624,-0.12281105,-0.5737226,-0.026745073,0.5324895,-0.1128982,0.18872294,-0.04417863,-0.24308124,0.12886795,-0.10664971,-0.17843345,-0.058875374,-0.6474028,-0.027424676,-0.34219763,-0.33789834,0.52118576,-0.26046196,0.09259768,0.27302858,0.07708415,-0.25036684,0.13247178,0.20930843,0.5789205,0.03579456,0.047759794,-0.1865882,0.3069184,0.085898496,-0.1579038,-0.22239749,-0.19449523,0.093495674,-0.55654466,0.44171014,-0.08692939,-0.24438949,-0.040186584,-0.03714793,0.008368729,0.5767277,-0.035610422,-0.23758069,-0.18833777,-0.035138033,-0.21256344,-0.17953353,0.016009148,0.31607446,0.03798656,-0.054890957,-0.03943036,-0.0817262,-0.01572119,0.43234357,0.04669148,0.41629353,0.3353217,-0.035179242,-0.56756747,0.087864116,0.06911517,0.4952729,-4.17312e-05,-0.12993574,-0.3133408,-0.29612732,-0.31757793,0.033975918,-0.21160272,0.41396013,0.15529732,-0.14355901,1.1257404,0.017565079,1.335636,0.01949505,-0.39727888,0.011129225,0.6084085,-0.12688987,-0.05719234,-0.19795375,1.0486404,0.5272181,-0.11673551,-0.07304867,-0.26879558,0.181696,0.22312097,-0.16972929,-0.25834364,-0.0607448,-0.7012765,-0.052467417,0.14615451,0.3572419,0.25466424,-0.22790012,0.048771944,0.40076855,0.09352521,0.34260765,-0.3753069,-0.11198514,0.30915913,0.34717375,-0.11390791,0.09723795,-0.48147285,0.30028912,-0.5516138,0.074065015,-0.27215368,0.14335069,-0.32586783,-0.38639933,0.27363613,-0.056071043,0.32022947,-0.21785723,-0.2849281,-0.17215036,0.4422918,0.16499011,0.22297923,0.49688175,-0.33108187,0.18320863,0.06986804,0.38659772,1.2297264,-0.34226218,-0.26709116,0.2802962,-0.32408053,-0.65501595,0.4799363,-0.3066366,0.043441452,-0.13048851,-0.24839024,-0.55108356,0.23328498,0.2374246,0.018096328,0.13146813,-0.6481804,0.0026877462,0.32869062,-0.3211203,-0.2287472,-0.28500023,0.22474518,0.50279194,-0.2796753,-0.4102152,0.03246398,0.21793851,-0.21826394,-0.58069867,0.12666109,-0.3461875,0.32402602,0.03391267,-0.41437814,0.14207755,-0.024660131,-0.45306775,-0.03515749,0.24976379,-0.2447202,0.11711038,-0.48150718,0.15282568,1.0015521,-0.12857008,0.13343531,-0.42377317,-0.5948256,-0.8886601,-0.28505886,0.5676749,0.010678347,0.04810453,-0.7124144,-0.040727377,-0.26559705,-0.18404369,-0.124556385,-0.2769938,0.4869353,0.10998916,0.37262765,-0.11421537,-0.62164843,0.30795166,0.10016024,-0.012429872,-0.3830586,0.47313946,0.06279471,0.8400675,0.15529521,0.09112736,0.2490289,-0.5511939,0.13168913,-0.12836471,-0.20908216,-0.51487553,0.008059283 -130,0.48413393,-0.218581,-0.7071578,-0.070760846,-0.41831556,0.09670945,-0.25648674,0.20965737,0.2464792,-0.49668667,-0.14632176,-0.15610686,-0.009203737,0.405095,-0.20121533,-0.74567175,0.06024608,0.2581248,-0.61852187,0.17417264,-0.5877182,0.5147875,0.20984812,0.5162899,0.013713981,0.0731194,0.18241316,-0.0704752,-0.040216547,-0.10328424,-0.29676548,0.09510705,-0.5997314,0.22876406,-0.18696177,-0.52508974,0.11399513,-0.40470684,-0.3679792,-0.7379305,0.4630116,-0.8699203,0.64826936,-0.12735309,-0.42187676,-0.0858122,-0.017861864,0.33387208,-0.54612887,0.30020446,0.10848817,-0.33309087,-0.06123962,-0.18385702,-0.37141526,-0.29529262,-0.60982466,-0.010440049,-0.5624949,0.18179916,-0.21318053,0.32463288,-0.33695304,0.16346817,-0.20164575,0.17198618,-0.48856363,0.012319803,0.25161722,-0.12321228,-0.054599553,-0.55860907,-0.1828782,-0.17698209,0.28420162,-0.024657378,-0.23794818,0.18251128,0.18087101,0.6154528,0.17942564,-0.25825778,-0.31297174,-0.030862898,-0.22698523,0.62374884,-0.025567004,-0.17434709,-0.34085155,-0.11751477,0.50917774,0.30680266,-0.021846622,-0.2045942,0.088430576,-0.33608508,-0.2571182,0.40765557,0.5531866,-0.41977656,-0.09320571,0.37878636,0.44014192,0.10235455,-0.08415987,0.2883589,0.019130656,-0.6316338,-0.3035185,0.10355037,-0.003007561,0.7566244,-0.2872642,0.38941583,0.57826,-0.22187786,-0.06685009,-0.05344406,0.027255714,-0.13357809,-0.17264758,-0.27961856,0.28226486,-0.44798228,-0.05923338,-0.28869197,0.85961944,0.10541105,-0.74955374,0.3252577,-0.54370004,0.16541593,-0.04750067,0.7453758,0.6416191,0.53590137,0.21650036,0.9189358,-0.5784251,0.14410089,0.04538493,-0.30669215,-0.0017070895,0.0070513487,-0.08467257,-0.3718722,0.05980585,-0.16604495,-0.13947326,0.13765532,0.68786174,-0.36921665,-0.26977757,0.08148811,0.69110864,-0.48337913,-0.09048459,1.0221757,0.96864605,1.2218605,-0.036971275,1.4468621,0.45582315,-0.090853564,-0.43208823,-0.051769387,-0.6431016,0.1614141,0.21200784,0.21560912,0.34323943,0.30108222,-0.14662297,0.50972134,-0.2998716,-0.23041016,-0.19853242,0.1279362,-0.17071684,0.08644251,-0.57440066,-0.3044592,0.07267796,0.11352997,0.10209575,0.3150718,-0.20322709,0.5660158,-0.012933965,1.2082106,-0.048382055,0.13755299,0.0500202,0.39556193,0.22168124,-0.20381482,-0.054365586,0.099767245,0.47211123,-0.08748484,-0.7278817,-0.19300203,-0.2654318,-0.30894077,-0.30119526,-0.24136786,-0.044127252,-0.26241246,-0.3830829,-0.18523137,0.028532693,-0.32179543,0.41018105,-2.0950046,-0.28140703,-0.069078036,0.40475306,-0.18092911,-0.31725746,-0.30639896,-0.44469595,0.3754367,0.3857861,0.50719196,-0.63526326,0.56865066,0.47637978,-0.33038345,-0.09250646,-0.7781324,-0.019227305,-0.12909295,0.1709259,-0.044140633,-0.23341715,-0.24012214,0.017059753,0.66461825,0.026215231,0.062040687,0.12320125,0.6345172,0.07547494,0.6130461,0.17943086,0.6620372,-0.4155682,-0.19809186,0.34111428,-0.5836023,0.32949042,-0.16055238,0.08049228,0.52622414,-0.7626949,-0.88000137,-0.62296486,-0.18514393,1.2776109,-0.35622564,-0.42736506,0.23099904,-0.0960978,-0.28762996,-0.03718431,0.51165056,-0.23171942,-0.086442865,-0.60240096,-0.17757761,0.013130303,0.35065684,-0.09157956,-0.008190681,-0.41413522,0.68755054,-0.2729927,0.41781756,0.51610714,0.2793087,-0.07511213,-0.5133377,-0.04205243,0.74695843,0.28261587,0.19565631,-0.38061717,-0.20110218,-0.070493154,-0.07231774,0.10540786,0.5642914,0.7293148,-0.06729745,0.15610076,0.5484876,0.03278191,0.07527108,-0.084680796,-0.40470698,-0.32490918,0.0067237415,0.6790193,0.78112936,0.00049623224,0.31895956,-0.09194204,0.30287895,-0.17818125,-0.5097012,0.5358601,0.80432916,-0.15394552,-0.25927174,0.69935536,0.41453925,-0.47406697,0.4684439,-0.6374335,-0.36691606,0.39269444,-0.01573277,-0.4536287,0.17109735,-0.33929524,0.033987373,-1.0305452,0.2979358,-0.067006804,-0.6375626,-0.6001275,-0.23261511,-3.269101,0.349002,-0.37898865,0.06372583,-0.034185987,-0.36704293,0.13540235,-0.56434745,-0.6277662,0.18649739,0.11665547,0.4000229,-0.14403374,0.3114804,-0.37905538,-0.33640262,-0.3455108,0.088618256,0.29885367,0.24152885,0.06978363,-0.46156022,0.15388858,-0.24541157,-0.4314073,-0.026410341,-0.7352926,-0.398204,-0.09963577,-0.6006637,-0.23548527,0.8278977,-0.2793854,-0.11304451,-0.38818884,0.07965894,-0.1966237,0.24664895,-0.023695862,0.27383366,0.037086915,-0.19920664,-0.16554427,-0.20810276,0.18297608,0.030909324,0.085799344,0.19933538,-0.3072347,-0.05441512,0.4314845,0.6834573,-0.21077919,0.72279686,0.25115556,-0.011135233,0.14133851,-0.035942752,-0.4332842,-0.6274244,-0.32703364,-0.12052858,-0.61466295,-0.41399035,0.039602507,-0.4338232,-0.90356207,0.6295503,0.047900807,0.041418064,-0.026369134,0.40743533,0.47580895,-0.058427304,0.051411763,-0.028579958,-0.26696837,-0.35255995,-0.47686148,-0.68949455,-0.5580165,0.006506195,1.4765056,-0.2245522,-0.03668417,0.16820844,-0.2785938,0.10295829,0.2899984,0.10026578,0.11995556,0.43521723,-0.1647315,-0.6493548,0.32330927,-0.2672977,-0.14958231,-0.6515356,0.037934005,0.90524644,-0.7477171,0.6209018,0.54683375,0.14982599,0.061093282,-0.7726452,-0.34206772,-0.076093554,-0.0883655,0.6420502,0.22517705,-0.6524646,0.54963803,0.19273306,-0.24402086,-0.67783386,0.379614,-0.11375689,-0.45324397,0.15048257,0.47912765,0.012403806,-0.07438409,-0.27712628,0.111726575,-0.38464484,0.4093883,0.25991356,-0.08324336,0.2667935,-0.26563942,-0.26373208,-0.60384905,-0.15537989,-0.5129714,-0.01999706,0.079921596,-0.025750788,-0.016754806,-0.035492998,0.080081284,0.579894,-0.37879634,0.0657107,-0.25805867,-0.18650131,0.32615668,0.44743252,0.4282167,-0.6018594,0.6100742,0.13202311,-0.08685359,-0.070195146,0.24156076,0.4728601,0.07857267,0.4393022,-0.19339925,-0.06829064,0.13506687,0.6401209,0.19044395,0.47156882,0.34325644,-0.19280572,0.44083798,0.33386782,0.21040432,-0.0941895,-0.22991697,0.04383868,-0.15499483,0.13602698,0.37726438,0.16679187,0.5207748,-0.19069825,-0.06559508,0.14989607,0.113926284,-0.11220463,-1.0308293,0.14169301,0.11236161,0.6665902,0.37141857,0.0926001,-0.054688614,0.593924,-0.30614612,-0.12643875,0.27799392,0.18441708,-0.26938188,0.596845,-0.44099888,0.46991566,-0.3189924,-0.007609648,0.1353462,0.26055387,0.5275923,0.85054755,-0.023363715,0.049614727,0.013596616,-0.08909149,-0.1087259,-0.41572404,0.13954823,-0.5412033,-0.21758509,0.7157309,0.3005146,0.42139658,-0.34437594,-0.13314082,0.09936929,-0.16428845,0.042154778,0.035374347,-0.07731573,-0.1631035,-0.74174184,-0.16982067,0.5154249,0.14668529,0.20619315,0.124019206,-0.3340191,0.39018723,-0.12351953,-0.047748756,0.029733775,-0.77272326,-0.12546746,-0.456746,-0.41155812,0.09802708,-0.27787378,0.33651745,0.2959006,-0.02650703,-0.27532268,0.21505181,0.025818931,0.9848426,0.12065265,-0.09090086,-0.3811033,0.16364141,0.45778242,-0.3440306,0.028351525,-0.19503136,0.188339,-0.5021084,0.41383934,-0.09563557,-0.15025651,0.13312599,-0.05260623,-0.06779932,0.51079154,-0.1924054,0.013746209,0.3857576,0.05261439,-0.39016843,-0.10771153,-0.50154805,0.19851243,0.07125395,0.005317653,0.12444302,-0.13065735,0.011420873,0.5132708,0.16454142,0.32481262,0.29787078,0.027405528,-0.4352822,-0.043627977,-0.20572019,0.5569415,0.016749732,-0.26443878,-0.41344306,-0.539856,-0.08062142,0.41580728,-0.13368218,0.08528001,0.017433017,-0.27618197,1.0273534,0.32498607,1.1183141,-0.04246067,-0.31945452,0.08716229,0.69995624,0.1351208,0.12403896,-0.24009842,1.218417,0.64336175,-0.3074673,-0.257462,-0.42639843,-0.19515993,0.03674403,-0.37776694,-0.3511939,-0.16039114,-0.5499606,-0.09945258,0.22448057,0.30049738,0.1832165,-0.093846776,0.32431278,0.3739375,0.12981527,0.44701505,-0.62558967,-0.13234796,0.3756411,0.25194862,-0.026063472,0.14424837,-0.3744409,0.36745343,-0.70956117,0.15912168,-0.37676108,0.17975332,-0.017287448,-0.40839753,0.26733455,-0.038115785,0.2725104,-0.49250785,-0.18400602,-0.28989774,0.6701817,0.3642976,0.32001612,0.79952437,-0.32118908,-0.1430525,0.032299943,0.5283474,1.3092929,-0.20180011,-0.0026293893,0.3520927,-0.32330444,-0.56926566,0.17504983,-0.45336494,-0.10202792,-0.1681272,-0.3700266,-0.4899666,0.27373627,0.10704237,0.072310485,0.16750962,-0.5063587,-0.0033293988,0.4551835,-0.18086128,-0.15559712,-0.34760913,0.3746624,0.65600103,-0.15562014,-0.45489332,-0.049279302,0.3957093,-0.32226714,-0.6701948,0.08966172,-0.446673,0.42380455,0.07378062,-0.19176285,-0.13600759,0.15088308,-0.46387073,0.07473144,0.19151556,-0.2268997,0.1612508,-0.2838603,-0.050151143,0.947807,-0.0009513398,0.26556817,-0.75093025,-0.458048,-1.1309338,-0.20206942,0.37210777,0.3050962,0.031563904,-0.68418676,-0.056442548,-0.15693416,-0.15722801,0.028004626,-0.35072684,0.41387495,0.16191487,0.40804207,-0.09924232,-0.9460979,0.17041461,-0.006785234,-0.66471547,-0.4505415,0.6137869,-0.12469884,0.6933611,0.1473372,0.10932913,0.095462024,-0.55086917,0.39108256,-0.28842768,-0.26979628,-0.80444413,-0.1505021 -131,0.57899964,-0.254408,-0.4403815,-0.22795591,-0.3783954,0.04255496,-0.31950843,0.39829364,0.18490626,-0.34953645,-0.16200699,-0.008658939,0.15420206,0.19378595,-0.056081023,-0.56152993,-0.23184414,0.11183705,-0.6711055,0.50216794,-0.6990206,0.3161582,0.11009004,0.38638097,0.1590608,0.3823725,0.21015568,-0.044618152,-0.11112021,-0.17100035,0.11888923,0.16523576,-0.77726746,0.12694976,-0.12671407,-0.28009805,-0.03123595,-0.47414044,-0.19361718,-0.5887331,0.14375782,-0.96667325,0.60218567,0.048508443,-0.2949332,-0.14738728,0.085678644,0.44020215,-0.35488778,0.2141665,0.25461248,-0.1913393,-0.19775018,-0.42617315,0.10406387,-0.30556822,-0.3616052,-0.11800213,-0.41226998,-0.30652878,-0.082844146,0.21954094,-0.18779445,0.12842825,-0.20726004,0.34638056,-0.3860688,-0.06824777,0.29224616,-0.07884194,0.11465978,-0.6191854,-0.18565607,-0.137548,0.33253005,-0.08810889,-0.31599835,0.3564643,0.19967887,0.5105377,0.2191156,-0.20903869,-0.13482735,-0.17039753,0.31691772,0.34571183,-0.17961879,-0.3503844,-0.24305204,-0.09980202,0.35883063,0.31037363,0.052492835,-0.4014289,0.11379107,-0.09175657,-0.28972623,0.37079984,0.40790814,-0.1365111,-0.26701078,0.08525119,0.5055639,0.22802635,-0.21103285,0.13583048,0.06330435,-0.5244586,-0.10167038,0.22628795,-0.07982979,0.40128088,-0.11138819,0.021964049,0.80992734,-0.14852224,0.12620941,-0.03384896,-0.084068015,-0.010669852,-0.47101894,-0.42387897,0.19718958,-0.5927778,0.013033446,-0.35891977,0.7451449,0.069563486,-0.66211694,0.31801832,-0.6391608,0.069061905,-0.03224641,0.5594493,0.6315393,0.2695457,0.26225317,0.67777944,-0.23355995,0.22781123,-0.08445003,-0.21827678,0.021231882,-0.23547453,0.23387127,-0.40306348,0.08784451,-0.2583405,-0.10293589,0.036052298,0.320062,-0.5007554,-0.062111076,0.2123811,0.5736841,-0.40738228,0.20565687,0.689024,1.2597691,1.0171098,0.20912078,1.3991708,0.40371668,-0.21060754,0.096163176,-0.25520265,-0.76948243,0.13554873,0.29981098,-0.14172462,0.33402213,-0.059407696,-0.035390116,0.3101996,-0.59648806,0.11515226,-0.031407904,0.4835388,0.0606184,0.055318642,-0.5093313,-0.18078989,0.11229359,-0.032187536,-0.0708785,0.16067924,-0.28043354,0.25975075,-0.005991407,1.2155054,-0.16894746,0.04439138,0.21490057,0.38276485,0.25514728,-0.23328279,-0.012860759,0.5103745,0.39031056,-0.13181238,-0.6146537,0.24664256,-0.16810416,-0.37753218,-0.19026984,-0.3261853,0.048816662,0.042582892,-0.39953068,-0.25876012,0.029774714,-0.22979045,0.42745012,-2.6819506,-0.2823926,-0.201378,0.34295234,-0.3077052,-0.34619623,-0.05532264,-0.45458123,0.25387323,0.15186581,0.44895527,-0.5394839,0.5188524,0.5721165,-0.45446682,-0.035610374,-0.732415,-0.2736268,-0.10098602,0.35075074,-0.043602277,-0.045202184,-0.22715114,0.19423126,0.6860623,0.021384196,0.18376619,0.47202176,0.2873051,0.14387533,0.71545565,0.14847909,0.4627666,-0.33023605,-0.2539527,0.34668007,-0.36089933,0.13071102,0.06965713,0.008406495,0.6632531,-0.5617074,-0.8078625,-0.6883533,-0.34081644,0.87306947,-0.32882956,-0.47007218,0.21484539,-0.25427046,-0.14560753,0.06866274,0.5354078,-0.052860137,0.08333394,-0.89651453,0.04687023,-0.06981392,0.25832084,0.10616123,0.01307499,-0.4159554,0.7886269,-0.17018507,0.5694004,0.3632376,0.2045259,-0.05879058,-0.302513,0.12393175,0.9568915,0.3354732,0.02273623,-0.16062692,-0.23485303,-0.09757422,-0.11694338,0.14795205,0.5895472,0.7698901,-0.05121986,0.20841798,0.23175332,-0.19414939,0.040840242,-0.14962603,-0.31000417,-0.06521168,0.043043472,0.542973,0.51583284,-0.12876816,0.4857705,-0.20394543,0.39442435,-0.12887014,-0.48985198,0.4403375,0.6110643,-0.056797322,-0.13264194,0.60293216,0.5322578,-0.362482,0.54182166,-0.64685947,-0.08928129,0.61615264,-0.14385039,-0.32893693,0.322579,-0.32135984,0.26379007,-0.8553564,0.4415264,-0.48372942,-0.39602703,-0.6273128,-0.34080097,-2.338206,0.3045067,-0.14740616,-0.15535322,-0.2168496,-0.11639986,0.38402602,-0.6525996,-0.58580714,0.20475508,0.09637358,0.5022421,0.014323316,-0.08302485,-0.16014916,-0.20856546,-0.19352403,0.23229013,0.1535415,0.2253091,-0.13699366,-0.37549305,-0.0541196,0.0076341727,-0.423946,0.163296,-0.5208203,-0.5435398,-0.038595524,-0.501453,-0.2994631,0.59934264,-0.35217813,0.007893983,-0.16963257,0.044810828,-0.23353066,0.24560528,0.12410058,0.338605,0.15659098,0.14257279,-0.029962642,-0.35301018,0.28711167,0.11556446,0.21396665,0.013726806,-0.022180812,0.13687126,0.30749118,0.66186744,-0.1178336,0.9119083,0.35145664,-0.11803723,0.16256768,-0.39272907,-0.3264485,-0.46688417,-0.31298593,-0.16221632,-0.35832492,-0.39875087,-0.02310938,-0.28510702,-0.7385401,0.6499279,-0.07614059,0.110742114,0.005328531,0.2688464,0.21385369,-0.06708182,-0.03154514,-0.16158618,-0.053972166,-0.58612984,-0.31176433,-0.60176146,-0.3655824,-0.03286668,0.9889934,-0.23575255,0.07608021,0.048940584,-0.4465313,0.121724494,0.028595822,0.028801512,0.31916744,0.6190871,0.06613911,-0.57615674,0.29404035,0.06271794,-0.22637607,-0.58687913,0.107535295,0.81053704,-0.77218884,0.70437986,0.37296453,0.116115205,-0.06518614,-0.57299614,-0.28855744,0.14003038,-0.3108609,0.53491604,0.13095835,-0.66284156,0.47557005,0.38613757,-0.3520648,-0.7141155,0.37931588,-0.08378104,-0.3437701,-0.034400955,0.41272274,-0.08262069,-0.011688403,-0.18561116,0.3527085,-0.27726704,0.27012596,0.27612197,-0.15673308,0.05405027,-0.14035584,-0.21794628,-0.64109313,0.060477886,-0.45381483,-0.3213104,0.28956464,-0.02649643,-0.008805931,0.2601254,0.25725392,0.4078456,-0.25362608,0.15964633,-0.15292495,-0.45732716,0.28965092,0.42958647,0.34428826,-0.28695068,0.55621994,0.06352497,-0.23656633,-0.079448156,-0.02749416,0.36501044,-0.11607038,0.28992593,-0.27150795,-0.07915301,0.39646772,0.74713504,0.083607644,0.59063566,0.05556265,-0.011648679,0.3868889,0.16519406,0.070648655,0.04780094,-0.38600424,-0.0020633459,0.1897234,0.3146507,0.27561206,0.25461343,0.4144989,-0.05426074,-0.21058944,0.048057146,0.2676421,-0.07063363,-1.3550745,0.2916285,0.09264626,0.7101721,0.5931815,0.028650722,-0.11710841,0.4688195,-0.26021922,-0.010387715,0.2458507,0.05449655,-0.3760257,0.6004308,-0.4575938,0.29326648,-0.2516827,-0.017719146,0.045426447,-0.01698055,0.41765362,0.75343144,-0.22872922,0.002344334,0.0028070014,-0.09868849,-0.037642922,-0.3607407,0.019241165,-0.37351736,-0.40564558,0.8502982,0.3959033,0.41892752,-0.27712488,-0.03421002,0.109681636,-0.13058443,0.29004416,-0.059638355,-0.10968589,0.3655087,-0.5424406,-0.16745465,0.5006201,-0.1734806,0.031137427,-0.17536478,-0.27540305,0.061943196,-0.079284236,0.03527857,-0.019389426,-0.7344459,-0.09905257,-0.47550705,-0.40033397,0.32528883,-0.22960402,-0.014163422,0.15232088,0.03200487,-0.051548276,0.3532411,0.23344591,0.8310128,0.017187648,-0.28999418,-0.18969245,0.041598815,0.28093445,-0.19752893,0.19050385,-0.35492045,0.07972837,-0.7787115,0.58997524,-0.086700775,-0.43878275,0.25506353,-0.21807799,-0.09773424,0.44116828,-0.23520054,-0.17144366,0.15669769,-0.13438277,-0.31967866,-0.09040513,-0.24981858,0.17867626,0.2292082,0.0714675,-0.09706845,-0.23751426,-0.07794224,0.6005488,0.13594714,0.5799951,0.41162014,0.0061870576,-0.19246665,0.14028835,0.10827398,0.5110479,0.023756424,-0.052607495,-0.3336587,-0.3496152,-0.2072321,0.37274355,-0.11597809,0.25197697,-0.022171088,-0.3857834,1.0083978,-0.0051424345,1.0973632,-0.032650627,-0.4118077,0.112415716,0.5127893,-0.1416486,0.118638925,-0.4291207,0.83842653,0.52665544,-0.09017714,-0.036081478,-0.4890052,-0.16827805,0.27676165,-0.28539672,-0.013417474,-0.16632767,-0.5903574,-0.38965544,0.27998143,0.32817534,0.0022369584,-0.0043168487,0.21931152,0.11909935,0.10559769,0.37829238,-0.5739809,-0.032765977,0.08241025,0.20167603,-0.009172773,0.16881593,-0.4424071,0.33318824,-0.7196064,0.18462922,-0.425908,0.025114765,0.0013546825,-0.22152323,-0.010768275,0.013308684,0.32415974,-0.49498403,-0.4173644,-0.12069213,0.5735358,-0.097192496,0.17710397,0.5960301,-0.27915424,0.049100243,0.19810744,0.5051874,1.2561042,-0.29380828,0.04559292,0.15732011,-0.40333414,-0.5684893,0.41000348,-0.20634086,-0.020835916,-0.097288944,-0.43984905,-0.4877461,0.22205232,0.12375608,-0.11547132,-0.06312029,-0.46106845,-0.22977348,0.49617043,-0.29651177,-0.1885293,-0.13333702,0.19884844,0.7227151,-0.22796759,-0.3224972,-0.049728747,0.27141267,-0.39686865,-0.37514308,-0.17674485,-0.36977735,0.36364773,0.14928405,-0.1934019,-0.06838539,0.1650811,-0.44867584,-0.02601641,0.2285586,-0.28915182,-0.013687539,-0.10586984,-0.11149363,0.8824069,-0.084177844,-0.17137317,-0.6417104,-0.6274863,-0.90846163,-0.35124537,0.3527725,0.14022613,0.104562216,-0.47303772,0.1643569,-0.09001476,-0.030803705,0.19303522,-0.47541034,0.37270057,0.24713853,0.5885744,-0.27748907,-0.84765804,0.1322795,0.02889625,-0.119750835,-0.5961125,0.60940194,0.03254099,0.7737778,-0.005040602,-0.13734695,-0.15764444,-0.4249217,0.19873527,-0.29601723,-0.10191993,-0.8163555,0.045555606 -132,0.32711378,-0.17392467,-0.39665398,-0.06337657,-0.022967217,-0.0823921,-0.080522075,0.6818936,0.12855601,-0.365204,-0.22322091,-0.10753683,-0.024967315,0.2913354,-0.1171991,-0.46804827,-0.12324501,0.18740933,-0.25733572,0.53616637,-0.3975957,0.046307508,-0.10447914,0.49635184,0.19522582,0.20617382,0.14689437,-0.052748088,-0.13743801,-0.024471892,-0.15065314,0.47575113,-0.4225221,0.06534168,-0.0887162,-0.3296704,-0.07992356,-0.37220642,-0.26867795,-0.72419035,0.3156622,-0.64850587,0.38129526,0.27578962,-0.39588422,0.3680659,-0.06664635,0.10681175,-0.43064055,-0.13152571,0.17164883,-0.0075922334,0.0057283547,-0.1676585,0.013293505,-0.24461347,-0.57550454,0.04298938,-0.3254481,0.052426897,-0.20144342,0.18836273,-0.3148196,-0.07770044,-0.057382066,0.54012454,-0.4797775,-0.07273115,0.1490758,-0.12007475,0.36754557,-0.6671927,-0.2020606,-0.18220828,0.11719482,-0.05657425,-0.18152533,0.21705952,0.17302679,0.46861583,-0.09357634,-0.119748004,-0.44863245,0.13687237,0.04783862,0.3703182,-0.2819055,-0.59798443,-0.053046223,-0.07162498,0.041790012,0.095981486,0.08773945,-0.16419592,-0.10030774,0.034139577,-0.15390897,0.118758515,0.4287155,-0.28626382,-0.25274703,0.34262922,0.4701618,0.15674815,-0.05517197,-0.21467453,-0.0056572417,-0.5581345,-0.11908933,-0.0016923822,-0.34862936,0.5612508,-0.1199915,0.22604987,0.5763457,-0.0430927,0.046143215,-0.018583683,0.044178393,-0.076463185,-0.44138405,-0.31269184,0.28861573,-0.19945306,0.28131902,-0.11867278,0.6905776,0.09513993,-0.78517884,0.40244707,-0.4267155,0.10483106,-0.07535673,0.5841373,0.6451636,0.35916188,0.4885036,0.72923726,-0.4628978,-0.06888067,-0.09997852,-0.22682701,0.14078936,-0.0043121898,-0.060921833,-0.5226306,-0.07708346,0.11383263,-0.092786826,0.1392375,0.35421297,-0.55604154,0.04734983,0.38715807,0.6654495,-0.28244165,-0.052022345,0.51152796,1.0679834,0.97134775,-0.009440729,0.9185098,0.17309141,-0.19322388,0.469155,-0.39136404,-0.6969987,0.2528478,0.44831997,-0.031648435,0.19026603,0.151411,-0.07622289,0.5234739,-0.3948632,0.092978664,-0.14173065,0.12474617,0.06980796,-0.024848457,-0.5070898,-0.35761255,-0.15152022,0.013026506,-0.045206625,0.18444633,-0.28984225,0.27606913,-0.04908891,1.7215947,-0.0866576,0.16367036,0.109804735,0.47568128,0.082873195,-0.12733462,-0.12354253,0.51988226,0.28869188,0.09626507,-0.6105935,0.21386287,-0.1931474,-0.56201065,-0.0888389,-0.23672508,0.0076416456,0.17001368,-0.43825692,-0.11041013,-0.09455324,-0.40319154,0.37160218,-2.8885167,-0.105035305,-0.009443915,0.2976751,-0.31752104,-0.38964087,-0.13862178,-0.41344118,0.4264929,0.4741632,0.43628687,-0.6211101,0.19964185,0.26819414,-0.45020336,-0.13195711,-0.5734721,-0.14381695,-0.072847895,0.25215024,-0.033102386,-0.034292176,-0.00662446,0.11308781,0.55416495,0.04748633,0.119856946,0.25109607,0.17140988,0.03700115,0.2579581,-0.03215107,0.42488807,-0.31239054,-0.22915928,0.23792316,-0.39451092,0.2649512,-0.1428929,0.20012997,0.41862455,-0.43168223,-0.9276559,-0.5777048,-0.3029919,1.2925632,-0.24907805,-0.33302608,0.32421336,-0.26823604,-0.09285518,-0.12350584,0.5283628,-0.14416388,-0.100618415,-0.8735736,0.120594434,-0.11435437,0.30866382,0.068708666,-0.09668606,-0.47633055,0.64418834,0.014390189,0.49777997,0.4337705,0.06676899,-0.22403596,-0.4582496,-0.021025509,0.7261642,0.30612433,0.10992824,-0.12655042,-0.15198226,-0.26545697,0.15125081,0.119184256,0.3563638,0.6454235,-0.048080884,0.13611132,0.21166667,0.080347404,-0.006690656,-0.09486871,-0.2394212,-0.11232763,0.18109272,0.52978766,0.6763381,-0.2971871,0.2329413,-0.058173116,0.3481441,-0.14406385,-0.32271004,0.4652535,0.9427127,-0.122056976,-0.13064864,0.7638845,0.5653552,-0.3512886,0.44971532,-0.6252696,-0.29260266,0.41137618,-0.17201084,-0.37103528,0.06696061,-0.31908238,0.11682867,-0.82367295,0.13700186,-0.27199286,-0.2893826,-0.7139464,-0.10751653,-3.500875,0.1615693,-0.3161344,-0.31965506,-0.04601949,-0.08639022,0.31018275,-0.760947,-0.539544,0.18414702,0.189462,0.5385622,0.017594922,-0.026682194,-0.238808,-0.26191598,-0.2018206,0.16325155,0.12058561,0.28345415,0.14714782,-0.526064,0.009197803,-0.14181183,-0.36088568,0.010954728,-0.57023185,-0.36157873,-0.2213454,-0.64878887,-0.26681128,0.5329321,-0.35247165,0.07199521,-0.1981047,-0.055389825,-0.077637635,0.34727967,0.046915695,0.18612409,-0.08857724,-0.035477284,-0.023438595,-0.22340709,0.17151679,0.08530162,0.22878239,0.3968301,-0.12444555,0.17287718,0.6054812,0.65829146,-0.19432321,0.8212275,0.68323106,-0.079952136,0.20975596,-0.25228184,-0.09611817,-0.55865884,-0.39949563,-0.035355933,-0.3752643,-0.44209436,0.065635614,-0.38365173,-0.88527447,0.5960569,-0.20135593,0.20563027,0.124749266,0.07854418,0.53947634,-0.20514724,0.07020247,-0.04963339,-0.05261163,-0.51728827,-0.29311386,-0.5878041,-0.40318587,0.10281877,0.9412355,-0.19855666,0.09581336,0.110326365,-0.18812226,-0.17180267,0.053737197,-0.07281344,0.2427462,0.32680342,0.047747757,-0.56172156,0.4030883,0.13290198,-0.110425666,-0.45870593,0.20859337,0.46843666,-0.6679193,0.64809203,0.35070947,0.023159733,-0.13082808,-0.69354725,-0.37295106,-0.14573184,-0.14437045,0.46709853,0.2824093,-0.72377676,0.36124384,0.30957252,-0.28510985,-0.7984124,0.35374004,-0.17841588,-0.40686366,-0.102171786,0.3053634,-0.11890567,0.09564531,-0.15247813,0.21456553,-0.3361136,0.19296342,0.2870629,-0.075335704,0.46857882,-0.24024035,0.13816951,-0.7334765,0.034623478,-0.55306995,-0.260894,0.3232447,0.17572409,-0.03596107,0.18379593,0.075634114,0.3982592,-0.16411725,0.07368925,0.08842276,-0.1954486,0.31056023,0.5091189,0.53896517,-0.42545033,0.5731585,0.004047848,-0.1180381,-0.36720437,-0.0038494056,0.39678267,-0.021356689,0.42571294,-0.23746252,-0.28160614,0.3233959,0.6698674,0.18934529,0.4387441,-0.09603623,-0.013808585,0.3324168,0.0151894,0.1343593,0.0062383963,-0.5129615,0.06631636,-0.28676513,0.19596127,0.39322668,0.06973374,0.30039918,-0.0581211,-0.18224971,0.10523547,0.25702253,0.048436258,-0.89534307,0.45587948,0.05351333,0.6747144,0.69747853,0.0039367126,-0.06673125,0.71748596,-0.22383785,0.07360611,0.4302247,0.0046981666,-0.6240327,0.64214855,-0.72805655,0.3511198,-0.1294038,-0.003010049,0.007326268,-0.07376849,0.37446007,0.57103497,-0.11873775,0.008026387,0.0199627,-0.2109734,0.09310805,-0.33113104,0.1722864,-0.5582174,-0.29135057,0.5620356,0.62070876,0.34021097,-0.16494091,-0.05724609,0.14429247,-0.11730746,0.06509157,-0.025480257,0.10730422,0.05562854,-0.7433379,-0.1484508,0.5254828,-0.059540134,0.13786647,-0.08940327,-0.30891138,0.121587865,-0.21101853,-0.2648427,-0.044031627,-0.54170114,-0.00203714,-0.24379799,-0.3042584,0.5924846,-0.19418576,0.32994652,0.08404394,0.11652303,-0.28300026,0.20132509,0.035178144,0.74891573,0.03394198,-0.007024641,-0.32919678,0.28301635,0.12595105,-0.13096736,-0.13623632,-0.34583002,-0.095166974,-0.48318952,0.43794447,0.101174966,-0.261975,0.0067620734,-0.08489083,-0.03472757,0.5917559,-0.026865479,-0.19538638,-0.21825865,-0.23817152,-0.3407645,-0.12085071,-0.1219573,0.35584894,0.08435486,0.12728709,-0.10344003,-0.077163056,-0.068558894,0.5342194,0.11704523,0.20183039,0.2635168,0.018756894,-0.3352378,-0.14003989,0.020036189,0.54487103,0.083696894,-0.1661224,-0.1971365,-0.4056118,-0.4176349,-0.046436694,-0.21316883,0.38031515,0.091827504,-0.14808382,0.7319473,0.15328604,1.1978368,-0.0055435346,-0.3656999,0.02196874,0.42476332,-0.012782679,-0.058924872,-0.38606152,0.9000364,0.507248,-0.09513725,-0.16103251,-0.26124072,-0.08268985,0.2137723,-0.123095356,-0.16433297,-0.07042035,-0.72369534,-0.24096102,0.20509489,0.28091604,0.21510966,-0.045379255,0.05011032,0.09531763,0.06486665,0.3192198,-0.23172766,-0.15482315,0.41006958,0.2624828,0.03408494,0.12946644,-0.32493263,0.46057084,-0.52688634,0.046030097,-0.37619516,0.07242933,-0.35234758,-0.39699873,0.2115995,0.103399,0.42080328,-0.20175608,-0.29717058,-0.18835041,0.561058,0.13293853,0.11462018,0.5464144,-0.21954629,0.049370255,-0.011374488,0.39410707,0.94314754,-0.35709718,-0.036582466,0.28946322,-0.21016544,-0.7218927,0.40456903,-0.21947476,0.030081011,-0.06562539,-0.27463955,-0.55581385,0.26691803,0.17673443,-0.14434741,0.09119542,-0.5432385,-0.16481683,0.18644656,-0.2599524,-0.178534,-0.25071508,0.17615707,0.609678,-0.35805324,-0.4652982,0.12020057,0.3028691,-0.18149455,-0.5181048,-0.002256595,-0.4389658,0.32676542,0.1487363,-0.38735977,-0.03370919,0.049832966,-0.4071562,0.05053871,0.12049459,-0.2756161,0.12069476,-0.44574034,0.0028620316,1.0356971,-0.039962392,0.1906566,-0.46058705,-0.39644077,-0.95413387,-0.28848872,0.7812197,0.046834502,0.05997541,-0.5682826,0.15589394,-0.13662194,-0.08791399,-0.22609879,-0.23382336,0.42924166,0.15906122,0.4206669,-0.06626218,-0.5470059,0.13700995,0.13373119,0.090536825,-0.49911243,0.39363,-0.018372642,1.0393176,0.0037102653,0.08701752,0.22180238,-0.41845042,-0.09372977,-0.27513325,-0.31525964,-0.57291895,0.03602106 -133,0.4186271,0.010670464,-0.51006985,-0.22406048,-0.37000704,-0.056813456,-0.2525877,0.31046587,0.24254204,0.12576427,-0.13622202,0.08323643,0.07349345,0.33430722,-0.09680704,-0.59982747,0.011824086,0.10698166,-0.8916646,0.5344527,-0.44673258,0.3687223,0.13556369,0.389164,0.120763876,0.35308826,0.25094727,0.014859096,-0.0050669513,-0.27304015,-0.20225868,0.16188209,-0.68525094,-0.048426572,-0.2128267,-0.34480304,0.045610547,-0.5782869,-0.12505665,-0.8165886,0.006685199,-0.78106755,0.4980536,-0.25546944,-0.22394636,-0.0020793756,0.38370374,0.4083026,-0.15411045,-0.17426355,0.26539814,-0.23153254,-0.12962207,-0.037757874,0.14185396,-0.4406966,-0.34450155,-0.11058629,-0.6630648,-0.4648317,-0.1219491,0.22859357,-0.42050323,0.07827627,-0.16788119,0.5032734,-0.45431295,0.0006184697,0.19717915,-0.3724797,0.23247099,-0.6001738,0.048332993,-0.017012913,0.5310647,0.08654733,-0.11214137,0.41197804,0.33567974,0.2698471,0.20516165,-0.42316195,-0.35464445,-0.22998247,-0.12621404,0.4937125,-0.18766494,-0.2652322,-0.116626434,0.13011733,0.50783485,0.3641735,0.021506993,-0.022582268,-0.05705761,-0.044800777,-0.17872384,0.5200373,0.5155298,-0.30484474,-0.263581,0.38032982,0.59123343,0.4360332,-0.37300274,0.013090539,-0.08789388,-0.4028658,-0.055587668,0.008671848,-0.0070682527,0.47537223,0.0012540062,0.19310637,0.91268176,-0.091632,-0.047683112,0.008514166,0.02018348,-0.051662333,-0.17499144,-0.24578705,0.32392976,-0.59753144,0.027640644,-0.24682721,0.8040053,0.033899385,-0.81632096,0.4231895,-0.47759506,0.03475744,-0.028201938,0.58613694,0.7466729,0.49516323,0.30789,0.7583665,-0.20239566,0.26291806,0.035056036,-0.39787108,0.04018817,-0.25937748,0.34861523,-0.47178793,0.1082171,-0.10436699,0.017548887,0.11683297,0.34986836,-0.5681897,-0.27482828,0.339588,0.7419529,-0.23715073,-0.045378827,0.7611317,1.1419206,0.8313016,-0.056528077,0.8415955,0.2993785,-0.07110928,0.0023656606,-0.06812153,-0.4379439,0.12782522,0.41743892,-0.05993082,0.26887667,-0.14199685,-0.09091387,0.35158202,-0.3132331,-0.0986943,0.12113943,0.28842768,0.20267431,-0.16643625,-0.46271846,-0.22555478,0.11656552,-0.02252737,0.12130717,0.29905388,-0.19028142,0.34552586,-0.14128917,1.2309285,0.13202974,-0.024633862,0.09571614,0.7177049,0.32837996,-0.016331278,-0.029800517,0.3033666,0.44712335,0.12521075,-0.4647816,0.3203002,-0.4550486,-0.45589736,-0.103355214,-0.49251893,-0.15215807,0.19710036,-0.48550063,-0.11216924,0.03920544,-0.02859996,0.38478768,-3.0245478,-0.16399956,-0.20681763,0.2382151,-0.2739108,-0.096846305,0.013797192,-0.58858454,0.14269009,0.36566597,0.5707914,-0.59914184,0.5552456,0.4654546,-0.5989903,-0.13870332,-0.6027235,-0.10063616,0.053829692,0.4158362,0.08944061,-0.15430087,-0.11334017,0.23864676,0.8104957,0.18242817,0.19605729,0.4562762,0.27561077,-0.062119834,0.5143896,0.024447449,0.51173896,-0.18677928,-0.1644456,0.38127372,-0.2991591,0.08555094,-0.114101216,0.1442359,0.63549644,-0.27338174,-1.122911,-0.5495176,0.018673293,1.0370191,-0.40876618,-0.6674954,0.29794776,0.017703025,-0.01583608,0.25186056,0.55478656,-0.05615167,0.18461952,-0.5420143,0.1719278,-0.09087442,0.12882607,-0.0092148585,-0.09163638,-0.269066,0.64243144,-0.01661017,0.65050435,0.010402141,0.27557862,-0.18497284,-0.22382946,0.15275508,0.54183376,0.4197273,-0.13360135,-0.17606834,-0.04196792,-0.18823245,-0.19240442,0.055755477,0.6622023,0.753315,-0.0682705,0.10644602,0.14059435,-0.15026616,0.057660937,-0.12876278,-0.2207623,-0.06604428,0.102782086,0.3548754,0.7041592,-0.05906807,0.55351543,-0.16486189,0.38143855,-0.053579163,-0.69619876,0.6463127,0.28737146,-0.1445726,-0.042543832,0.5039263,0.40420926,-0.38449854,0.43854016,-0.6459162,-0.29480207,0.70924175,-0.10264847,-0.547184,0.19678387,-0.19832931,0.060302675,-0.7411376,0.21905069,-0.3300519,-0.54537296,-0.2111219,-0.19055793,-3.353157,0.07067217,-0.19470753,-0.050013814,-0.351002,-0.17635606,0.19029637,-0.72587377,-0.5511386,0.14630422,0.26993865,0.7493572,-0.09676116,0.063709125,-0.26997992,-0.33424872,-0.11945172,0.31571385,0.09808926,0.294378,-0.083221525,-0.2279629,-0.18570192,0.043302134,-0.54621184,0.07949445,-0.45592672,-0.5113156,-0.14425927,-0.5429976,-0.28191045,0.5477633,-0.35389414,0.17086247,-0.2729862,0.12480313,-0.2027419,0.123675086,0.16867732,0.21046825,0.14893545,-0.032675948,0.34248954,-0.35787666,0.43220425,-0.04699838,0.5642074,0.045985598,0.178795,0.17096621,0.53881234,0.5660097,-0.16468343,1.0333463,0.2709802,-0.040966053,0.39778408,-0.22953597,-0.283269,-0.65540963,-0.37736756,-0.0853765,-0.36798993,-0.35409996,0.09538441,-0.2771902,-0.7844403,0.6616714,0.05961182,0.43545887,-0.190863,0.37633982,0.48682675,-0.33980456,-0.12055855,0.010584865,-0.0948912,-0.4886512,-0.13370642,-0.77224797,-0.53688836,-0.26323354,0.9401801,-0.3056006,0.01792102,-0.06883826,-0.066697374,0.13431427,0.039333586,0.28859073,0.13486482,0.38832152,-0.16066629,-0.7257849,0.4181305,-0.32862914,-0.035650633,-0.57961357,0.21292725,0.48173,-0.74960035,0.46450442,0.35542062,0.22244763,-0.08766465,-0.6677891,-0.10245622,0.078645386,-0.07193918,0.42345116,0.19374163,-0.87594664,0.5705957,0.17942508,-0.47440416,-0.6369002,0.37351105,-0.0805622,-0.4284314,-0.084501624,0.21254563,0.1612924,-0.12400341,-0.16655196,0.104548335,-0.587352,0.19773576,0.25453344,-0.00065755646,0.54887927,-0.03704698,-0.30616748,-0.64187926,-0.12902944,-0.53178287,-0.28213292,0.21522684,-0.028542582,-0.032401964,0.20854276,0.0024600823,0.3304383,-0.32851833,0.1511843,-0.02336954,-0.34745535,0.565297,0.49528104,0.37283725,-0.460001,0.5800293,0.1975126,-0.35217988,0.060361758,-0.06450994,0.43269265,-0.03749345,0.41078818,-0.07514488,-0.09539927,0.24122815,0.6041471,0.14346953,0.46519887,-0.13167734,-0.10139484,0.2264834,-0.11254451,0.17814003,-0.06297644,-0.528911,-0.017045472,-0.17763287,0.10074297,0.6024191,0.23661837,0.24240485,0.14313607,-0.15105256,0.11585034,0.12098304,-0.15534343,-1.1039776,0.4687557,0.32484356,0.9275443,0.18161726,0.19890356,-0.36160177,0.7993158,-0.28731963,0.12696391,0.27048984,0.19258317,-0.37000147,0.89143384,-0.785807,0.47847825,0.034779694,-0.20393296,0.1776258,0.14282349,0.3796082,0.6645711,-0.24112718,0.015930127,-0.04509486,-0.3694795,-0.05382582,-0.32116136,0.0025983015,-0.39557716,-0.38492423,0.6997233,0.30265632,0.1626312,-0.27915755,-0.17167336,-0.024208065,-0.21964,0.23778555,-0.28894314,-0.02456096,-0.009918304,-0.30727065,-0.2601579,0.54336286,0.044154517,0.15060069,-0.20665315,-0.1771298,0.053998854,-0.12602262,0.0075783334,0.1020445,-0.48770678,0.24944563,-0.15991129,-0.521537,0.6062134,-0.23197569,0.0643913,0.046034932,-0.06217873,-0.07123776,0.32852545,0.07372638,0.51185334,-0.10266983,-0.12620142,-0.31958935,0.017871412,0.17646447,-0.23229384,0.020856833,-0.44380477,0.005397594,-0.4666598,0.39098153,-0.28265926,-0.48117274,0.097897135,-0.1923969,0.036958378,0.44485343,-0.10816606,-0.04545768,0.015747648,-0.1438621,-0.3256773,-0.16937432,-0.36802286,0.16508563,0.16344959,-0.23325248,-0.07246323,-0.15439156,-0.05062938,0.5574143,-0.19507676,0.39259326,0.18441163,0.04074902,-0.21691173,0.15715891,0.14421953,0.4666352,0.024930825,0.0878813,-0.4685536,-0.41581073,-0.36530086,0.18276088,-0.05506824,0.25155613,0.20226757,-0.04848155,0.95669824,-0.029165141,1.1927212,-0.094750784,-0.3551572,0.10318418,0.53449523,-0.06806781,-0.025291242,-0.33652547,0.8839228,0.48600426,-0.07683183,-0.011207839,-0.43735823,-0.033396948,0.39879483,-0.32505903,-0.06555977,-0.1186354,-0.40575588,-0.39327765,0.22850448,0.15858062,0.15488611,-0.090052366,-0.07393642,0.18269889,0.17123808,0.40349862,-0.65934503,-0.21939185,0.16818987,0.21604042,-0.2064649,0.12793414,-0.48927963,0.39797333,-0.84309715,0.19805966,-0.5908921,0.12631789,-0.16857177,-0.35885775,0.06617601,-0.0042586285,0.45556277,-0.24865618,-0.46782067,-0.029078461,0.38303775,0.22680016,0.081422426,0.5837676,-0.27424043,-0.030849172,0.12710936,0.6115599,1.0668372,-0.5284922,-0.03664391,0.2299288,-0.3687462,-0.5832216,0.31070533,-0.39738473,0.012416196,-0.0018475612,-0.36348674,-0.39378548,0.27730313,0.30860424,-0.01455218,0.031234097,-0.5940418,-0.12665303,0.18497616,-0.30988026,-0.12684669,-0.34211415,0.39217234,0.7517465,-0.22751802,-0.383504,-0.08063046,0.41171777,-0.07204437,-0.5430172,0.17938513,-0.2043603,0.34119472,-0.045147248,-0.3596839,-0.13101204,0.16101478,-0.4562696,0.20045325,0.39038822,-0.33564535,0.10576062,-0.23896728,0.13824421,0.9043775,-0.12786599,-0.011929282,-0.6409127,-0.5566,-0.8249028,-0.44926357,0.08342831,0.17850795,-0.11642974,-0.43464926,-0.019695861,-0.27685907,-0.16123568,-0.08816314,-0.51185715,0.23142354,0.07669166,0.63468134,-0.31655654,-0.9239596,0.053791683,-0.027811201,-0.00035663147,-0.5093163,0.5321834,-0.11029053,0.76950145,0.06902258,-0.16663189,-0.028403334,-0.3765389,0.19720145,-0.40742016,-0.24715973,-0.6723176,0.11804345 -134,0.40297148,-0.12230662,-0.5163159,-0.23084548,-0.26727897,0.21856275,-0.32812446,0.17593704,0.2423186,-0.43805364,0.0507733,-0.16650067,-0.13659951,0.31917205,-0.25376397,-0.6996592,-0.07623414,0.016197337,-0.5153574,0.28869072,-0.53820175,0.27842075,-0.0596851,0.3915924,-0.003308968,0.3156853,0.15966494,-0.04367538,-0.07180701,-0.13729236,-0.070566244,0.041180287,-0.64537627,0.18381026,-0.101606436,-0.38954487,-0.036023296,-0.54263675,-0.23465191,-0.6703927,0.49437305,-0.9712042,0.57795036,-0.089387074,-0.30762824,-0.06093711,0.19911702,0.24719413,-0.28640366,0.24665284,0.31271896,-0.12555458,0.035580676,-0.060190734,-0.55718243,-0.7330319,-0.6657668,0.0628486,-0.580727,-0.09834479,-0.054986306,0.3520289,-0.18284504,0.13582279,-0.17561662,0.16169116,-0.43304586,-0.123223856,0.2407239,-0.16857395,0.19949171,-0.44201192,-0.1910213,-0.17086625,0.21259464,-0.11430432,-0.21457508,0.17997505,0.38612548,0.6870665,-0.024280295,-0.14737153,-0.2845342,-0.10755413,0.034753017,0.60616606,-0.050390694,-0.2971739,-0.47197506,-0.20610635,0.33586344,0.32074437,0.13495812,-0.33111286,0.13545316,0.02403835,-0.2810495,0.40409532,0.5148155,-0.493191,-0.318819,0.48938015,0.53289354,0.022268908,-0.21186654,0.25015107,0.15563165,-0.49449232,-0.3469899,0.2517882,-0.025924345,0.42659834,-0.096126266,0.2714185,0.7737547,-0.10185198,0.06318965,-0.17656626,-0.16790724,-0.30629477,-0.35048863,-0.19949718,0.042408697,-0.32220936,0.034453,-0.12471723,0.671037,0.10888366,-0.8724097,0.4361382,-0.63513076,0.08640867,-0.11473518,0.63210064,0.7590102,0.3747101,0.25753435,0.94364643,-0.46909168,0.08257049,0.10728971,-0.22818477,0.10135621,-0.21177892,0.113989435,-0.37555528,0.16111001,0.15776637,-0.11638612,-0.025381258,0.6488972,-0.29662278,0.028133735,0.06899137,0.7119345,-0.361391,-0.06342526,0.8461834,1.0986797,0.97611773,0.14339915,1.5262415,0.39948234,-0.11138095,0.057638872,-0.42637157,-0.65998375,0.13581243,0.4012647,0.017648509,0.42743307,0.15696672,0.1079153,0.4923851,-0.34545177,0.10234291,0.06638496,0.052449353,0.11262315,-0.099361,-0.39805055,-0.08475773,0.08652936,-0.0044993586,0.23097095,0.2416177,-0.17642231,0.49549994,0.21434312,1.463101,-0.03208252,0.17987569,0.08731715,0.45213708,0.16433176,-0.20483755,0.03912241,0.21449865,0.2780774,-0.15704593,-0.6024205,0.050166905,-0.1948301,-0.52966344,-0.3189897,-0.25313112,-0.2579777,-0.29629132,-0.3817357,-0.20473619,-0.061843276,-0.29664707,0.46762082,-2.3987525,-0.3288722,-0.21495493,0.33562082,-0.12114835,-0.38194466,-0.2775435,-0.5021271,0.3603842,0.4671697,0.2212797,-0.6197276,0.6140088,0.48344103,-0.27911928,-0.09057832,-0.74581516,0.113409825,-0.20448811,0.25695592,-0.05656186,-0.30229396,-0.2986254,0.30581552,0.47202945,0.14405409,0.0032125541,0.13372687,0.63218355,0.012571613,0.5899665,0.0044443947,0.6095063,-0.2730903,-0.10124046,0.45305318,-0.56694674,0.38290888,0.04332944,0.21897317,0.5181474,-0.58266705,-0.87345535,-0.79650444,-0.61373097,0.9429204,-0.23009536,-0.40125734,0.22988603,-0.17934619,-0.5885223,-0.026315084,0.68992954,-0.28868276,-0.022436095,-0.8211074,-0.06976681,-0.21022598,0.32171673,-0.049917493,0.08776996,-0.44997516,0.67885906,-0.14833413,0.6019169,0.3711259,0.12636685,-0.22559035,-0.4815266,0.06541543,0.8680034,0.52342516,0.14738421,-0.11210876,-0.20045148,-0.17825042,-0.20826425,0.12635641,0.4797906,0.5699148,0.031325035,0.07155012,0.42334256,-0.24015813,-0.05716807,-0.047189955,-0.19514777,-0.03570626,0.06600822,0.62094694,0.6732294,-0.29700533,0.21710314,-0.33632493,0.28576323,-0.33147973,-0.4073346,0.45467454,0.49512488,-0.10727652,-0.20168872,0.67088014,0.56642,-0.43817067,0.42573085,-0.7555505,-0.33425775,0.397484,0.1038099,-0.41365147,0.11804483,-0.40598866,0.1523795,-1.1177284,0.20339449,-0.029494056,-0.42771047,-0.7209185,-0.43438867,-3.5742953,0.18455745,-0.046225183,-0.12333817,-0.09779607,-0.17619117,0.47263083,-0.5139769,-0.8136439,0.12865749,0.005314482,0.5698657,0.03401798,0.31186906,-0.34419915,0.017174738,-0.36319566,0.21810235,0.15726061,0.3984584,0.0035936919,-0.39257932,0.05224822,-0.41430897,-0.45621613,-0.13535999,-0.57157725,-0.5299911,-0.11811038,-0.56011766,-0.28354135,0.8002164,-0.39163116,-0.063026614,-0.31148526,-0.14198457,-0.31124845,0.5294729,0.17444468,0.12021493,0.05906817,0.0017315088,-0.23304088,-0.28047147,0.23668984,0.011745455,0.21458973,0.4143166,-0.20588835,0.24730948,0.4874224,0.62137955,0.01821976,0.7877846,0.26622266,-0.010186391,0.42798144,-0.24190034,-0.1842356,-0.622837,-0.39376953,-0.10634308,-0.48079962,-0.6050523,-0.23312415,-0.41829988,-0.78990203,0.41528687,0.06174457,-0.033523116,-0.08939024,0.16957624,0.26911083,-0.12636997,0.037196405,0.058107357,-0.20548092,-0.47164196,-0.6350676,-0.62853765,-0.61727804,0.25002423,1.3239918,0.09439557,-0.24930058,0.1475824,-0.39860195,-0.028509865,0.17002784,0.23147535,0.07458048,0.44251403,-0.17022459,-0.64630514,0.38846773,-0.21590984,-0.10712315,-0.53729457,-0.19171773,0.8715854,-0.70153874,0.51135033,0.40862635,0.2579616,-0.015545641,-0.5748568,-0.1952254,0.060676597,-0.30676574,0.54325634,0.29222655,-0.63378865,0.5842802,0.04779697,-0.035965227,-0.7075065,0.5594869,-0.025854824,0.013532451,0.10442911,0.27517223,0.09276436,-0.050993435,-0.34116295,0.36683634,-0.4777973,0.21686646,0.37983638,0.15185782,0.6482572,-0.21132867,-0.14574231,-0.62567616,-0.23098943,-0.47083196,-0.24224336,0.06272592,-0.14649422,0.22820212,0.14977233,0.09551644,0.40918347,-0.32986948,0.16233878,-0.053482927,-0.21916847,0.106086686,0.40867153,0.4284943,-0.57970226,0.669858,0.13171881,0.014403151,-0.18539627,0.07032852,0.4641676,0.33162647,0.37176278,0.043855228,-0.16827385,0.048006706,0.77808905,0.35554352,0.2849442,0.35487053,-0.25746575,0.42688257,0.15469839,0.093077935,-0.14796326,-0.47748938,-0.0041571343,0.013173052,0.1913333,0.29445818,0.08355533,0.40040046,-0.21577391,-0.17861912,0.2145929,0.22917576,-0.33782312,-1.1554407,0.25201744,0.22579978,0.7750033,0.5145637,-0.011756022,0.20599887,0.52751344,-0.4545911,0.14890735,0.312907,0.19259508,-0.40825886,0.49845234,-0.3991961,0.5617401,-0.19227758,-0.055649646,-0.01726028,0.1881175,0.46318564,0.8486015,-0.052013822,0.20665477,0.07983226,-0.11081676,0.14653921,-0.21868907,0.06684907,-0.45027676,-0.19385968,0.78063864,0.41815656,0.3553711,-0.17411672,-0.13460395,0.023366353,-0.03360874,0.017575128,-0.112384066,-0.1693623,-0.12126046,-0.73945934,-0.3603329,0.59552777,0.039705433,0.045661706,0.16612458,-0.6906974,0.2526665,-0.08082749,0.013885464,0.07082596,-0.64115894,-0.19800997,-0.34905955,-0.63632095,0.2521953,-0.26999685,0.23331518,0.19914094,0.026284436,-0.2826917,0.056181498,0.2172642,0.83375806,0.121145464,-0.109597266,-0.26180157,-0.060175233,0.47448593,-0.5668453,-0.21322317,-0.38077873,0.32957527,-0.6444537,0.52399415,-0.08909815,-0.37191492,0.18518583,-0.084733725,0.12640834,0.51220876,-0.25821692,-0.21237628,0.27217075,-0.010300704,-0.26470262,-0.05236848,-0.510914,0.30842343,0.040685117,-0.021850163,0.07820278,-0.1098746,-0.09957932,0.532959,0.17625149,0.25404304,0.4801391,0.060661223,-0.41600466,0.044992574,-0.1797161,0.53810173,-0.016341407,-0.13066919,-0.1270881,-0.39613968,-0.15596259,0.5699831,-0.07940797,0.1575993,-0.0051948642,-0.5277185,0.6622524,0.12155168,1.0633719,0.1177878,-0.535705,0.0182056,0.4939378,-0.057131924,0.06709001,-0.46177584,0.99254936,0.5925241,-0.30028087,-0.24419086,-0.44302723,-0.12619545,0.17226496,-0.29485697,-0.24457084,-0.22490004,-0.8693122,-0.15146148,0.083276376,0.17940535,0.14816658,-0.031604983,0.29595512,0.025895271,0.058491826,0.45418075,-0.5584322,-0.077353284,0.47896045,0.31325513,0.03256073,0.049760025,-0.31719908,0.3781701,-0.6673046,0.061758023,-0.7199162,0.13087334,-0.113320895,-0.3092227,0.08689092,0.009645624,0.4033276,-0.16771449,-0.41067868,-0.26259014,0.7047368,0.18689103,0.36787543,0.83726585,-0.20002091,-0.08914607,0.04687145,0.5956027,1.5037962,-0.14372662,0.16221943,0.27588457,-0.2114953,-0.4888146,0.2713921,-0.67055523,0.0640247,0.045798678,-0.34152198,-0.36195782,0.33026347,0.19406258,0.0010480242,-0.0036006074,-0.3903422,-0.27174535,0.46810654,-0.23620428,-0.26146707,-0.25324652,0.12442041,0.8963537,-0.2651952,-0.18466167,0.11100446,0.478399,-0.41033134,-0.62367475,0.070462205,-0.35946676,0.5442124,0.09444022,-0.29902014,0.046787944,0.07005932,-0.37801218,0.25246868,0.30156574,-0.4194332,0.12133439,-0.5137339,-0.17139785,1.1290814,0.10750164,0.14407168,-0.7901328,-0.5027339,-1.0390661,-0.3222972,0.08534304,0.26939505,-0.052180033,-0.31238815,-0.096508466,-0.12395068,0.09725494,0.22054113,-0.6246523,0.4884438,0.14669429,0.7147913,-0.057082128,-0.809855,-0.04537339,0.14993449,-0.31142157,-0.45095015,0.69966,0.032088984,0.8261476,0.14989892,0.13013531,-0.025785625,-0.6527069,0.47984904,-0.34232935,-0.087130055,-0.9743623,0.16454878 -135,0.5233723,-0.3948306,-0.5854034,-0.04004245,-0.3123252,0.13910992,-0.25980327,0.38369256,0.39585295,-0.25581485,0.011433319,0.24397126,-0.18332376,0.28084648,-0.12530357,-0.79652005,-0.013630271,0.16811404,-0.49243337,0.38592947,-0.43686754,0.26338682,-0.096555166,0.5059095,0.120367505,0.199712,-0.08535706,0.44638136,-0.09226373,-0.0024877624,0.066993244,0.03970368,-0.6427731,0.46313703,-0.13796581,-0.4276396,-0.36237192,-0.3976289,-0.2513709,-0.72298086,0.50334144,-0.761492,0.7680687,0.00298988,-0.564162,-0.5920824,0.10070169,0.19625987,-0.0998712,0.052364107,0.3107715,-0.31792918,-0.16724335,-0.36603785,-0.31604984,-0.69478935,-0.61935747,-0.06004338,-0.4969721,-0.16326372,0.24554096,0.5181375,-0.31747678,-0.06343207,-0.2503645,0.8656807,-0.35503948,0.08970652,0.097890265,-0.37384892,-0.1779746,-0.86064047,-0.29775512,-0.021476854,-0.009220156,0.20713373,-0.41078702,0.11324406,0.3061546,0.56575644,0.18773359,-0.46614942,-0.3700943,0.048266318,-0.022248589,0.46348146,-0.24490725,-0.110894434,-0.36297113,-0.13678855,0.55067575,0.029703587,0.22005934,-0.5738142,0.38238695,-0.03506193,-0.015966497,0.62861294,0.5837403,-0.4269678,0.08870042,0.18354988,0.42192984,0.070486195,-0.42565706,0.28649566,0.048529927,-0.39909944,-0.08414695,0.18079571,0.020265432,0.55120873,-0.20586644,0.22286485,0.64207166,-0.03753021,-0.19011784,0.15836763,0.1440857,0.12226577,-0.58416885,-0.38185528,0.2668265,-0.2647136,-0.108693294,-0.21052037,0.6881133,0.049021646,-0.8073328,0.3761014,-0.5291322,-0.04306225,0.056853544,0.43610018,0.98306173,0.7053786,-0.035347067,1.0701797,-0.37831822,0.05941849,0.34694883,-0.005136983,0.023262555,-0.36871812,0.219423,-0.5431019,0.084359415,-0.21749887,-0.13435073,0.03386003,0.80396104,-0.5117703,-0.28046182,0.06478744,0.7649475,-0.28588998,-0.005915624,0.9433868,1.3298955,1.2440464,0.19167255,1.2575661,0.3776929,-0.23708391,-0.21980776,-0.1305685,-0.62091833,0.16178967,0.14811347,0.01974652,0.48301104,0.08249872,-0.05160451,0.8797939,-0.39993975,0.06621862,0.06719255,0.15302762,0.2545155,-0.11100676,-0.69731516,-0.08419654,0.30162436,0.06941903,0.068904825,0.3008535,-0.49484798,0.4870856,0.019990217,0.9471416,-0.25385895,-0.018598396,0.18427008,0.34322184,0.26726726,-0.34162256,0.20445913,-0.050102662,0.3325226,-0.11505919,-0.40542552,0.038840637,-0.38556382,-0.53996426,-0.3700323,-0.09696622,-0.22335912,-0.32829806,-0.51412266,-0.52442205,0.075534694,-0.34170565,0.16238421,-2.1734102,-0.35469222,-0.21651816,0.4389961,0.01028913,-0.34018424,-0.09582236,-0.4076807,0.33397216,0.31752023,0.38750598,-0.6886213,0.51233506,0.4980016,-0.5821935,0.042499736,-0.6914196,-0.10207157,-0.19333722,0.47893956,0.03127101,-0.32152212,-0.15028095,0.13265136,0.88862056,-0.1277412,-0.1295645,0.2350292,0.4092289,-0.43767336,0.34734964,0.08844401,0.74904287,-0.38571566,-0.3941718,0.38671568,-0.8318198,-0.06866495,0.12494256,0.12260914,0.61889154,-0.49691942,-0.9168186,-0.7228798,0.00715531,1.1225601,-0.13017534,-0.59800106,0.15015927,-0.44424188,-0.4161007,0.08533844,0.7497191,-0.2210173,0.07309697,-0.67689043,-0.18813133,-0.087253414,0.23337965,-0.11340863,0.012324902,-0.5020619,0.80626017,-0.243652,0.5681994,0.49550125,0.21195069,-0.30607548,-0.507641,0.038155977,0.98780245,0.567826,0.22312962,-0.31529608,0.20134874,0.09587765,-0.16918968,0.044763114,0.81769663,0.47601974,0.014183963,0.0215767,0.3882027,-0.33742645,0.14269231,-0.09180794,-0.4304415,-0.2784096,0.36333206,0.6375613,0.7587164,-0.046477295,0.37343833,-0.15272255,0.2560852,-0.34194902,-0.46684682,0.53625864,0.93383443,-0.19341736,-0.6474546,0.6568422,0.30170262,-0.57160634,0.2998173,-0.56823355,-0.17863144,0.31606323,-0.20601302,-0.45350018,0.028299587,-0.5523587,0.13378443,-0.9195986,0.38816947,-0.17859755,-0.8620323,-0.833532,-0.5391967,-3.1785598,0.30681822,-0.43549612,-0.02702058,-0.24797425,-0.300786,0.28867376,-0.71268517,-0.6892299,-0.024412746,0.18938832,0.42173588,-0.02600406,0.06501402,-0.23884177,-0.39210176,-0.10532065,0.50424045,0.077908464,0.21217665,0.025571574,-0.32943746,0.15344611,-0.22004943,-0.5906715,-0.10768762,-0.96247095,-0.5813685,0.02215137,-0.72737783,-0.36505988,0.8228459,-0.48405704,-0.14526936,-0.51304823,0.14261971,-0.2379803,0.39012,-0.015303899,0.37845942,0.26882294,-0.1080149,-0.019351082,-0.25719243,-0.0011212013,-0.115794376,0.37114343,0.46134168,-0.19728635,0.22162522,0.5632758,0.9418633,0.21325792,0.952627,0.45475578,-0.14170533,0.3521282,-0.23012143,-0.3269797,-0.7954202,-0.23303626,0.16721806,-0.61534125,-0.4206703,0.12802766,-0.48263156,-0.7859218,0.42106506,0.0504395,0.09901385,0.18782654,0.4193186,0.4470461,0.021494204,-0.072776124,-0.084785685,-0.2438182,-0.291519,-0.5398144,-0.6449783,-0.76176435,-0.01848392,1.5840443,0.10746002,0.07471743,0.34768346,-0.4572891,0.012032514,0.5187444,0.2756586,-0.2212519,0.5098639,-0.028427027,-0.5893949,-0.060951483,-0.29722482,0.02094867,-0.42035455,0.03769441,0.93097043,-0.8160532,0.9183092,0.43903396,0.300168,-0.4108615,-0.71309155,-0.26132318,0.40177834,-0.1034807,0.7060183,0.53357816,-0.33424988,0.47081754,0.14112908,-0.057833754,-0.6518663,0.27658892,-0.12026019,-0.19011974,-0.25642163,0.5641388,-0.14128841,-0.3861268,0.10517479,0.49638376,-0.34888786,0.3292882,-0.062311016,-0.15983368,0.021127403,-0.115015216,-0.2530678,-0.73691463,0.082288496,-0.66147906,-0.44531587,0.05377078,-0.078249216,0.45975313,0.21758085,0.26807997,0.54908174,-0.19874239,0.21720429,-0.31373033,-0.4192376,0.3328586,0.5002878,0.30952635,-0.3715252,0.43820718,0.20543844,0.19134878,-0.16649291,0.18132561,0.55710053,0.253986,0.6380571,-0.26928023,-0.0560079,0.0731825,0.78799766,0.1666996,0.6093535,0.10054696,-0.2543753,0.0862987,0.103860505,0.20180587,-0.3906973,-0.3767208,0.05236644,-0.0685827,0.29126275,0.38529718,0.12339485,0.5348395,-0.31907848,-0.23214732,0.33204368,0.2812116,-0.14344889,-1.4154304,0.3366325,0.3523862,0.8318603,0.38587448,0.27722606,-0.1918344,0.50982195,-0.11983624,-0.020604594,0.67927754,0.004998112,-0.10870562,0.6230058,-0.6780467,0.59131336,-0.35932282,-0.0019358884,-0.03662938,0.18655863,0.27966043,0.63080215,-0.09896827,-0.12853071,-0.028791327,-0.31377515,-0.26720056,-0.569319,0.38216627,-0.53173757,-0.455414,0.9683232,0.51798254,0.3592066,-0.45447206,-0.034051552,0.17270082,-0.11913243,0.19663931,-0.04615258,-0.24124731,-0.09210339,-0.71743464,-0.2163685,0.510371,-0.16921212,-0.063801594,0.04156902,-0.2917639,0.22706838,-0.025619118,-0.17464353,0.09899671,-0.5512965,0.0556247,-0.37168667,-0.7177061,0.31892884,-0.16268644,-0.070362896,0.29426265,0.13994375,-0.38979533,0.26663366,0.16440453,0.83989733,0.13933292,-0.008988738,-0.15796901,0.061412524,0.10449522,-0.29758483,0.102362566,-0.3235815,0.61900187,-0.4547105,0.48720923,-0.27033582,-0.33996066,0.15895368,-0.06356381,0.059198186,0.42232946,-0.49292418,-0.23450522,0.10889301,0.09035086,-0.20670773,-0.31027314,-0.48580682,0.32993433,0.014411991,-0.008567861,-0.024939727,-0.29183415,-0.24143906,0.406645,0.21151467,0.31827462,0.7847305,0.06230873,-0.45494863,-0.016029608,-0.032788575,0.5788222,0.13573454,-0.1452973,-0.39501008,-0.5738076,-0.32415754,0.46845543,-0.09757198,0.2575104,0.053159032,-0.5753214,0.9581677,0.11782002,1.4733748,0.024812855,-0.5576203,-0.015045036,0.51602656,-0.15423451,0.25752237,-0.3727617,1.1235769,0.70385593,-0.1339656,-0.12697653,-0.5713798,-0.10812119,0.27062696,-0.34711924,-0.19570847,-0.18426767,-0.995616,0.017905176,0.1514149,0.23774476,-0.008113542,0.036553655,0.23890181,0.27700898,0.094296195,0.22310781,-0.6659839,0.2867191,0.29712963,0.53152144,-0.14930482,0.25846952,-0.49689934,0.12478396,-0.86500686,0.40750024,-0.6930774,0.060310606,0.036125608,-0.2614048,0.30245402,0.072541565,0.21949902,-0.40809715,-0.1491242,-0.22066651,0.74049515,-0.064175814,0.2316524,0.74907374,-0.26951304,0.024850857,0.21956526,0.5635222,1.5184323,-0.0852589,0.006516543,-0.075782366,-0.29623273,-0.78892416,0.16083223,-0.2994289,-0.023285292,-0.05137007,-0.2531285,-0.62820566,0.2648679,0.08999673,0.036864854,0.031016149,-0.36702347,-0.21289878,0.46865273,-0.57965964,-0.13141736,-0.18430644,0.08453714,0.57202303,-0.16803488,-0.32514745,-0.14283164,0.6570515,-0.34172833,-0.4704961,0.27306202,-0.55515695,0.55511457,0.043233942,-0.49679196,-0.17001435,0.1163985,-0.6236093,0.049106862,0.6055147,-0.3498433,0.029149087,-0.19473056,-0.11024526,0.96520406,0.22456044,0.45185593,-0.7781252,-0.6326862,-0.9906702,-0.08999042,-0.22524938,0.38758472,-0.08519902,-0.89985806,-0.25489438,-0.3437727,-0.16429904,0.1769556,-0.79062915,0.5098725,0.17068835,0.7417535,-0.17325516,-0.90013367,-0.061549496,0.40607575,-0.15643027,-0.29523683,0.41799104,0.05003746,1.0451999,0.105131194,0.14435326,-0.11051772,-0.7761168,0.63020444,-0.23095088,-0.31148374,-0.8766235,-0.108923584 -136,0.16463195,-0.20680587,-0.49603817,-0.21842037,-0.24528006,0.008187286,-0.12044521,0.54348475,0.027339952,-0.47761416,-0.07366286,-0.18494627,-0.15272598,0.28639874,-0.23583217,-0.46476004,-0.03494834,-0.044735927,-0.37290382,0.45779535,-0.42084143,0.17330591,-0.07014447,0.40776882,0.23101106,0.1577173,0.1596906,0.12032092,0.07021181,-0.26300907,-0.17137618,0.11608378,-0.5577155,0.21984962,-0.12932695,-0.4170723,-0.005614019,-0.44034505,-0.44521835,-0.60240114,0.40700468,-0.7031818,0.42836165,0.18679504,-0.2475851,0.35424328,0.42288262,0.24554518,-0.095407434,-0.09380555,0.32754412,-0.1062801,0.1802136,-0.038598686,-0.28211418,-0.5596253,-0.67980766,-0.046778303,-0.57269704,-0.18135525,-0.104283825,0.15017907,-0.31199333,-0.07256867,-0.122024044,0.4867413,-0.33993906,-0.2696875,0.20527951,-0.11019282,0.2780579,-0.68199486,-0.25367984,-0.104554854,0.001779352,-0.26451167,-0.13371567,0.3066606,-0.01198761,0.45312724,-0.19703813,-0.050482668,-0.28605035,-0.1466941,-0.051481154,0.44724017,-0.20996396,-0.504498,-0.07701135,0.047051985,0.18763377,0.19903043,0.1338514,-0.0993613,-0.060084336,0.0411404,-0.2764053,0.55281883,0.48305267,-0.45814577,-0.11069258,0.34982628,0.45584303,0.17239808,-0.236878,0.010205927,0.022950783,-0.4769078,-0.2398437,-0.024258869,-0.20489433,0.37172705,-0.078041546,0.3679131,0.4623271,-0.24023877,0.077256896,0.08943762,-0.013517039,-0.02990904,-0.21298261,-0.33280474,0.22698715,-0.35103345,0.14262544,-0.09216877,0.70799655,0.055149592,-0.6789993,0.24969414,-0.43923452,0.09151033,0.024701377,0.48054197,0.7512916,0.33786154,0.3028325,0.7201869,-0.35268858,0.057069786,-0.09860701,-0.07652102,0.10576447,-0.040558763,0.07005466,-0.530935,-0.031936172,-0.041581284,-0.022348166,0.0018441251,0.37930664,-0.60437685,0.022304755,0.24724679,0.7950502,-0.12045771,-0.03317527,0.6600138,1.0902656,1.0789245,0.116858475,0.82259166,0.09208319,-0.13905743,0.117231056,-0.14591005,-0.68282795,0.26953238,0.45572647,0.24850024,0.27417436,0.11573667,-0.0077521885,0.47350577,-0.45555753,0.06093319,-0.2093669,0.2603013,0.16098213,-0.061807733,-0.10491325,-0.13580744,-0.012410232,0.031259354,-0.012703483,0.21264617,-0.23133329,0.30302003,0.11801591,1.4672631,-0.08541649,0.081301816,0.16962062,0.54916656,0.19561699,-0.2661312,0.11899694,0.2796486,0.3946233,0.031112045,-0.58319616,0.07809619,-0.2773884,-0.5024598,-0.20287703,-0.332115,-0.25786835,-0.13048011,-0.5348369,-0.2065607,-0.1622326,-0.23550074,0.29895997,-3.1481574,0.016637785,-0.18770063,0.12974207,-0.2402681,-0.35971063,-0.036302198,-0.45863864,0.5568537,0.42566067,0.35862747,-0.5337218,0.46343014,0.39867422,-0.28292388,0.03187271,-0.6057683,-0.05502843,-0.10907785,0.33841515,0.04529383,-0.10589713,0.2517182,0.27652425,0.39209917,-0.04330618,0.091929995,0.23737875,0.5306266,-0.04506858,0.5541784,-0.038353864,0.26319546,-0.3335245,-0.13312294,0.31667763,-0.5777055,0.16990027,-0.14498742,0.17272261,0.52998054,-0.33437735,-0.7933383,-0.53900933,-0.17534772,0.98214996,-0.044618957,-0.37511247,0.18120489,-0.44917485,-0.20931473,-0.22463004,0.47591522,-0.15429862,-0.12880656,-0.76430976,-0.031071842,-0.41020003,0.19148241,-0.036854185,-0.112337045,-0.4886356,0.8027503,-0.07294314,0.47520924,0.353229,0.056971308,-0.6273723,-0.37922892,-0.010341389,0.85169363,0.46787134,0.1442766,-0.13123529,-0.061908584,-0.21060373,0.009222358,0.22009407,0.62403965,0.44690037,-0.015740667,0.17002712,0.40681764,-0.10142606,-0.115859404,-0.20486209,-0.22810231,-0.14912984,0.17449543,0.60725754,0.5093905,-0.08902639,0.47975776,-0.05201128,0.16154985,-0.50637543,-0.32571706,0.26194593,0.7600624,0.009169489,-0.24243581,0.5570818,0.66669744,0.0028509924,0.36666998,-0.6329885,-0.5076777,0.5130674,-0.22370777,-0.30964807,0.19167571,-0.39197642,-0.036371298,-0.64445466,0.1913527,-0.30756897,-0.49509794,-0.9147693,-0.35873875,-2.6250298,0.15075943,-0.28756842,-0.18058695,-0.08153585,-0.17364226,0.35291836,-0.51494926,-0.4738976,0.1664248,0.13603963,0.5894577,0.06867246,0.038453836,-0.26458016,-0.251876,-0.18532512,0.1276637,0.07464001,0.2783346,0.07913468,-0.35214546,-0.026980266,-0.14011951,-0.3490871,-0.06611771,-0.31892326,-0.3574247,-0.1849415,-0.41842937,-0.1931287,0.6592576,-0.38946754,-0.008993864,-0.18801391,0.00021758676,-0.022514313,0.33188966,0.17787816,0.14366417,-0.2066116,-0.09620152,0.030733466,-0.3997205,0.071942635,0.10488533,0.39237738,0.4714248,-0.12644444,0.10707418,0.45404702,0.5493616,0.059781153,0.725645,0.42996472,-0.13252638,0.43490973,-0.1038028,-0.088050306,-0.50344527,-0.1929563,0.13103816,-0.33999524,-0.57394487,-0.045181703,-0.36034754,-0.7371246,0.4163124,-0.08700086,0.060457554,-0.08847945,0.40026423,0.35769674,-0.11184739,0.044174157,-0.0005836018,-0.07957338,-0.39388743,-0.4998484,-0.52114767,-0.25733098,0.1138193,1.14452,-0.09251877,-0.1440882,0.11253549,-0.18215232,-0.004658911,0.16407976,-0.050521314,0.23185158,0.21641842,-0.08922165,-0.6126727,0.36074808,-0.19532582,-0.15407494,-0.509727,0.012459857,0.62752885,-0.50384146,0.5241852,0.27690768,0.1785964,-0.2869999,-0.6063757,0.061427448,0.034191225,-0.32196623,0.35035664,0.1849638,-0.75899154,0.4511264,0.14211649,-0.16434787,-0.74001753,0.4854756,0.09072007,-0.30130982,-0.08303269,0.115796186,0.15235756,0.027662663,-0.08694733,0.35595098,-0.22616766,0.18023857,0.14783406,-0.046597045,0.24488637,-0.09773968,-0.071311906,-0.43944508,0.107608974,-0.4237075,-0.36567524,0.2988643,0.042299237,0.19667527,0.3408417,-0.23231003,0.31977186,-0.1928236,0.21754062,-0.06492945,-0.23178525,0.25345334,0.3785878,0.259667,-0.47724158,0.67724895,0.05123007,-0.032061487,-3.807885e-05,0.15888664,0.41950196,0.12831736,0.37429437,-0.14927205,-0.2077019,0.31205487,0.9570587,0.23917429,0.40150717,0.030347738,-0.008116799,0.13230324,0.07004947,0.021533439,-0.043431915,-0.49546978,-0.0469571,-0.09677357,0.16292521,0.25123984,-0.020439455,0.34784883,-0.07518804,-0.15070978,0.07382568,0.22717217,-0.13152237,-1.2047137,0.24627553,0.08608903,0.9017169,0.557319,0.078545704,0.084235795,0.63206166,-0.2504204,0.00038113337,0.34645647,0.14429955,-0.22796719,0.4381842,-0.50103015,0.520496,-0.071539216,-0.062391873,-0.23375936,-0.013367959,0.43203697,0.66530704,-0.2674803,0.011660365,0.08249247,-0.2846581,0.19540748,-0.2649974,0.23007284,-0.49948153,-0.27737418,0.59057754,0.38979557,0.29934713,-0.09684586,-0.02820408,-0.018559502,-0.1934109,-0.04619452,0.025774876,0.007669232,-0.13817146,-0.64225143,-0.17422464,0.44943908,-0.095959246,0.14963268,0.122332886,-0.38130826,0.17204468,0.02065314,-0.0067086346,-0.013483733,-0.65521306,0.009467428,-0.21539947,-0.43497896,0.70610946,-0.33648905,0.23064964,0.24459516,0.017111719,-0.13144837,0.2920394,0.14388783,0.5961972,-0.24723431,0.05974149,-0.34989578,0.11016675,0.072756626,-0.1477519,-0.20513462,-0.24491732,0.19302137,-0.69539595,0.33977363,-0.112512946,-0.18241301,0.09393933,-0.16472504,0.030937245,0.5464286,-0.058112163,-0.105149046,0.04573783,-0.2867551,-0.07242402,-0.15300027,-0.08497502,0.30776337,-0.13206863,0.095902316,-0.1082936,-0.12088935,-0.13661936,0.28478858,0.12615642,0.21486033,0.32222542,0.2362052,-0.35379866,-0.022734787,-0.056016386,0.5160133,0.056091737,-0.111539535,-0.2088195,-0.51860696,-0.34803492,0.46471643,-0.17195988,0.2271092,0.09681348,-0.33117414,0.7532085,-0.06454476,1.0324062,-0.08552381,-0.46482128,-0.037906468,0.55633837,0.06214272,0.19013514,-0.30262432,0.72971743,0.46409947,0.055396102,-0.10426778,-0.17762192,0.032472037,0.34197584,-0.08413243,-0.28709477,-0.014285197,-0.6007165,-0.1869124,0.30547252,0.25967145,0.18727593,-0.21212728,-0.021353036,0.24340089,0.013258414,0.3514168,-0.52124745,-0.07872028,0.2527087,0.3100135,-0.04828492,0.0470218,-0.42318755,0.29534912,-0.48588553,0.14031859,-0.2747759,0.10957975,-0.11609987,-0.21271549,0.24975276,0.012168516,0.38320687,-0.2991519,-0.19664562,-0.019756446,0.5386391,0.12309845,0.27681237,0.422517,-0.16861479,0.10394471,-0.17619897,0.5446893,1.0416574,-0.29697147,-0.13947436,0.34627137,-0.37228176,-0.6332811,0.24709392,-0.5042073,0.00041997008,0.025978582,-0.29155594,-0.17653115,0.32066053,0.22854462,0.099156804,0.07303161,-0.70313644,-0.16252682,0.35322663,-0.21906792,-0.22571073,-0.3671294,0.033011187,0.60670567,-0.14231685,-0.1419544,0.03776374,0.5638378,-0.16364767,-0.5841928,0.18890084,-0.41267514,0.3591695,0.08171047,-0.15989156,-0.10749545,0.042191565,-0.33137578,0.098297715,0.22290953,-0.3379891,-0.21740974,-0.25519115,0.017090287,0.7878753,-0.080874205,0.070667304,-0.39203817,-0.36973542,-0.77908456,-0.3184791,0.32609132,0.109007046,0.014323703,-0.70467854,-0.05068684,-0.13706473,-0.13175792,-0.077064335,-0.2885068,0.51107305,0.16829455,0.33040756,-0.08027943,-0.6568154,0.07412251,-0.007894061,-0.10469632,-0.46029064,0.5144457,-0.00034146648,0.72141105,0.04503717,0.051960476,0.21183226,-0.45800215,0.38556686,-0.29871553,-0.14506401,-0.6372886,0.08144182 -137,0.63322747,-0.23686962,-0.33810577,-0.14790703,-0.12589721,0.18432207,-0.18983392,0.43867216,0.27762243,-0.46143237,-0.34319806,-0.21322243,0.050149556,0.19728361,-0.17755719,-0.60296535,0.10990363,0.18390135,-0.355652,0.46986774,-0.4306835,0.2875452,-0.02428481,0.68162704,0.11405057,0.21436127,0.22620714,0.01700146,-0.31493402,-0.4205643,-0.1090386,0.4735718,-0.6983226,0.26267716,-0.29359755,-0.44906965,-0.049141515,-0.596569,-0.28461406,-0.7364482,0.13283378,-1.0145144,0.6070024,0.05447339,-0.23939298,0.30803123,-0.07806111,-0.031077852,-0.15068996,-0.033669997,0.004983256,-0.24351485,0.047744423,-0.2953507,-0.257977,-0.28240493,-0.5602011,0.10014369,-0.43320695,-0.17622982,-0.50365615,0.10859436,-0.27788267,-0.07059062,0.1443007,0.5713374,-0.42292118,0.2652571,0.004742076,-0.17556034,0.19115168,-0.3891395,-0.27888274,-0.24261063,0.21387893,-0.3453404,-0.2633946,0.16614088,0.32046673,0.4051442,-0.10871265,-0.110378854,-0.29440644,-0.057144735,0.09279812,0.5614233,-0.12339205,-0.7380534,-0.19597745,-0.13816702,0.17054272,0.05972654,0.29133168,-0.21993883,-0.07659612,-0.112266935,-0.26882258,0.58393335,0.46486616,-0.32316718,-0.27822354,0.24921514,0.35566804,0.05202058,-0.12890865,0.0025450934,0.12682031,-0.5096625,-0.15449397,-0.07851467,-0.077457,0.6672287,-0.11496696,0.38568512,0.6354573,-0.37520525,-0.049343992,0.097296305,0.044916596,-0.20850599,-0.19222802,-0.2418396,0.34736165,-0.38093862,0.04465298,-0.24647017,1.0013549,0.2313416,-0.76322144,0.3216149,-0.52168673,-0.11028135,-0.091780454,0.46105662,0.46554574,0.4370034,0.35081473,0.5545731,-0.40171215,-0.0704949,-0.009038019,-0.49727878,-0.038147677,-0.27306077,-0.067762226,-0.33435568,-0.07752537,0.09746516,-0.11688063,0.14875625,0.5544098,-0.5082492,-0.06588126,0.20065308,0.7079229,-0.3869281,-0.25902298,0.9744315,1.022012,0.85920143,0.075456314,1.2530751,0.35347793,-0.052188247,-0.00033231577,-0.07360241,-0.7370937,0.38740405,0.2880945,-0.5491994,0.29709634,0.16651101,-0.0732872,0.1835013,-0.37050557,-0.16600138,-0.18440627,0.14866649,0.107451655,-0.002094239,-0.49245998,-0.37007096,-0.030218268,0.020473788,0.292577,0.21141426,-0.32477272,0.5514565,0.07421651,1.5031937,-0.0341541,0.023717513,-0.13085054,0.6705151,0.26858565,-0.006651312,-0.1859713,0.3465933,0.24533038,0.08924662,-0.57135135,0.016405175,-0.080644526,-0.4216113,-0.20670716,-0.38159788,-0.057607513,0.006027907,-0.25537667,-0.15106778,0.009790228,-0.3446156,0.5105767,-2.6301167,-0.11288634,0.107751556,0.41546166,-0.16376977,-0.3743495,-0.18664587,-0.51764804,0.35604832,0.32706162,0.420781,-0.6057434,0.22977622,0.57479805,-0.3477629,-0.3673083,-0.59030986,0.16630505,-0.18871166,0.31946933,0.05004223,0.016220788,-0.10819142,-0.016415536,0.70427436,0.043105185,0.16273747,0.17437315,0.43597695,0.06563633,0.31168973,-0.03174084,0.6144547,-0.19595592,-0.28809428,0.40705395,-0.28062776,0.16693456,-0.31836018,0.16207401,0.48849893,-0.4438208,-0.8807399,-0.7649223,-0.26030594,1.1395171,-0.15415813,-0.4316496,0.053902835,-0.07652446,-0.296949,0.012519161,0.5072004,-0.2866269,0.050106887,-0.6306183,0.037357945,0.021523306,0.111964226,-0.0040196627,0.09699901,-0.4709996,0.48189768,0.008958645,0.26930818,0.20053624,0.3261695,-0.2483697,-0.62505186,0.23259918,1.1163362,0.25621238,0.22389932,-0.41542625,-0.21006113,-0.1895066,0.013788794,-0.02941746,0.5883846,0.65949845,0.0009873646,0.15636447,0.33568773,0.12412974,0.112057745,-0.0947214,-0.2819246,-0.13159646,0.0010401806,0.69846827,0.68875855,-0.20739035,0.44332853,-0.17522074,0.4320741,-0.21643583,-0.42694333,0.6060837,0.9771328,-0.20494378,-0.22865087,0.77094364,0.45571744,-0.46394768,0.42987236,-0.6833047,-0.38070926,0.4497324,-0.20972149,-0.4617664,0.25790638,-0.24743716,0.12536854,-0.82232314,0.42478248,-0.029499436,-0.5224332,-0.49309942,-0.04777882,-3.9393823,0.16060664,-0.14586693,-0.26292595,-0.18619685,-0.29029164,0.17844681,-0.5142154,-0.38158083,0.17606086,-0.0035933654,0.8311341,-0.09228613,0.21703869,-0.1741945,-0.2868407,-0.25200328,0.08041287,0.17773636,0.39238873,-0.054110277,-0.30557334,0.097937524,-0.2525867,-0.33033213,0.05815233,-0.4647263,-0.577048,-0.015116982,-0.65676725,-0.31646517,0.6768779,-0.49082884,-0.02034069,-0.32091537,-0.001046747,-0.15008946,0.39912197,-0.03698623,0.10777732,0.12588187,-0.010109906,0.07758018,-0.34757924,0.4665617,0.047877375,0.13316126,0.48364767,-0.28345945,0.21478014,0.48887035,0.40936217,-0.053782377,0.894084,0.36465302,-0.046111524,0.26892292,-0.3145051,-0.41977015,-0.51315814,-0.24257766,-0.04657859,-0.4914285,-0.33469787,-0.07731487,-0.28862992,-0.825896,0.6857452,-0.032767463,0.22247498,-0.10107714,0.3334136,0.49820065,-0.18124281,-0.07949752,-0.023301765,-0.0716509,-0.49602893,-0.34803,-0.5747941,-0.51896024,0.017187187,0.7619907,-0.16258569,-0.022902116,0.09221747,-0.003063942,0.0053122393,0.01024128,0.021781547,0.0629307,0.5348821,0.012875046,-0.76085377,0.43028644,-0.15435894,-0.18832551,-0.5612537,0.20034361,0.7527283,-0.8118163,0.46444333,0.5117741,0.06507662,-0.04946685,-0.42533574,-0.25548604,-0.12338557,-0.10028651,0.399376,0.34150115,-0.9603348,0.50192076,0.21351291,-0.29560283,-0.7861615,0.4964743,-0.018467383,-0.2755942,-0.022063322,0.39470363,0.15044515,-0.002337883,-0.2757387,0.19133301,-0.3788481,0.202493,0.009122789,0.014479227,0.41737887,-0.20438154,-0.052648474,-0.7115162,-0.073575504,-0.5587161,-0.49574825,0.13129327,0.12867738,0.05313869,0.38644662,0.041922156,0.29256386,-0.45531312,0.086747855,0.098939426,-0.2396158,0.34022263,0.4315547,0.6983792,-0.39699832,0.5891636,0.07079109,0.018419355,0.1300348,0.023351485,0.5002671,0.021887481,0.39850652,0.20934594,-0.20930225,0.18457831,0.77268356,0.20184381,0.61690545,0.12446061,-0.09267708,0.30272833,0.08354763,0.36203265,0.08543825,-0.5951201,-0.09148257,-0.40785193,0.101060666,0.5302379,0.22615527,0.27460644,-0.034896377,-0.42169046,0.13844952,0.114825524,0.012524165,-1.1432508,0.2098897,0.09733554,0.78680545,0.3544728,-0.054044712,0.09633329,0.6799945,-0.07881716,0.1839658,0.27680972,0.040116027,-0.4546561,0.5857913,-0.60610485,0.4262366,-0.12203737,-0.07567909,0.014299353,-0.12647404,0.30803436,0.7770135,-0.19512929,0.2274162,0.02809906,-0.182191,0.11696453,-0.63529867,0.25585455,-0.5243893,-0.10214186,0.7797281,0.53851753,0.24193633,-0.22031455,0.061851736,0.08368478,-0.053929668,-0.017482886,0.09722374,0.06292116,-0.0118924575,-0.73159593,-0.15299025,0.6937185,0.26418558,0.12740092,-0.068751164,-0.09655618,0.2710798,-0.22738199,-0.12487944,-0.03212614,-0.6661667,-0.04128234,-0.3360258,-0.5716472,0.49478117,-0.083506666,0.12274174,0.16346996,0.08050262,-0.2646956,0.33186123,0.43537435,0.69234353,0.2571229,-0.17053187,-0.3640779,0.23973124,0.37358585,-0.32742944,-0.18848269,-0.3032308,0.013474271,-0.5210606,0.22017519,-0.106167555,-0.4478949,-0.0018457124,0.09293156,0.09084833,0.5658658,0.12113852,0.016200176,0.113595076,-0.2090858,-0.4148074,0.07046252,-0.249672,0.22836442,0.30492836,-0.3978577,-0.111436896,-0.1319798,-0.17975299,0.2847425,-0.048199445,0.49908915,0.34644425,0.090780646,-0.25254464,-0.0987879,0.07155715,0.70467025,-0.03481105,-0.18734454,-0.27812675,-0.32060823,-0.29201522,0.27090612,-0.034845006,0.090420105,0.26625824,-0.33206466,0.6606454,-0.019008264,1.0181562,0.07716903,-0.44610605,0.19354074,0.4438688,0.034574736,-0.0547175,-0.4703822,1.2077551,0.2883539,-0.14239778,-0.28372845,-0.40515232,-0.037056025,0.0919804,-0.28488594,-0.2650455,-0.23330085,-0.71793586,-0.2609167,0.27023438,0.34254536,0.21348898,-0.06104197,0.25027913,0.38914815,0.029741758,0.4068085,-0.5682903,-0.14132182,0.41926143,0.406979,0.003590713,0.20290227,-0.29351962,0.37845743,-0.56725097,-0.007687012,-0.40227315,0.1566461,-0.3425138,-0.36422208,0.25805077,0.23548599,0.44504797,-0.26231062,-0.4991045,-0.332765,0.39345184,0.095744826,0.14054184,0.38307032,-0.20974104,-0.07087836,-0.18596907,0.47826982,1.170936,-0.07182161,0.21351047,0.5406586,-0.2443216,-0.527413,0.33728686,-0.3500248,0.31781173,-0.10433605,-0.18814135,-0.42573962,0.2907009,0.1320118,0.035715554,0.11675283,-0.5384187,-0.101408064,0.41308415,-0.12595437,-0.19353189,-0.23797925,0.04114646,0.55698186,-0.21823435,-0.25739312,0.12850194,0.340518,-0.15689889,-0.52392226,-0.23059237,-0.24099381,0.34287772,0.07116748,-0.31385818,-0.14731704,-0.13916847,-0.4788978,0.13515545,0.19745927,-0.39204633,0.08275617,-0.250914,0.13815407,0.9606841,-0.21351366,0.1028117,-0.4789168,-0.54219234,-0.9126475,-0.28879836,0.46452975,0.08285623,0.05019185,-0.5513522,-0.027719835,-0.13214691,-0.24700606,-0.08428657,-0.42177153,0.3279291,0.16215634,0.60125893,0.0010181492,-0.986406,0.14135605,0.20219664,-0.3108281,-0.8017292,0.40316805,-0.15923968,0.8829997,0.09151492,0.01258073,0.331762,-0.6017881,-0.13137095,-0.2701681,-0.16545027,-0.6367959,0.31754076 -138,0.40187934,-0.18307863,-0.4956439,-0.080496185,-0.23262222,0.0051025325,-0.21985033,0.61438215,0.20685151,-0.21558264,0.04967097,-0.089924954,0.028345129,0.5503941,-0.07783176,-0.5264827,0.025314305,0.1773607,-0.57875973,0.76102537,-0.33885616,0.15992053,-0.20870127,0.52039206,0.19158018,0.29510143,-0.058567822,0.018320078,-0.1804534,-0.20035444,-0.055508547,0.34300205,-0.52901065,0.11813694,-0.19575277,-0.34319645,-0.10916654,-0.41520688,-0.3771312,-0.76757103,0.19729283,-0.8005292,0.6132776,0.01371304,-0.36597633,0.32671213,0.2605233,0.3754802,-0.17196761,-0.11424619,0.08149614,0.040546875,0.13508302,-0.29935905,-0.24827416,-0.5848235,-0.52745306,0.048282605,-0.52235174,-0.09826847,-0.10610799,0.17079698,-0.2796957,0.0040484197,-0.11805112,0.42553166,-0.377479,0.26204935,0.22181927,-0.03928296,0.17193285,-0.42055866,-0.3609856,-0.08852001,0.27718377,-0.06887935,-0.16437303,0.30020484,0.13797633,0.3806172,-0.29155293,-0.0128145665,-0.39542872,-0.008938159,-0.10862819,0.5635158,-0.24012573,-0.62944984,-0.17526641,0.04143264,0.17679112,0.1313583,0.21030791,-0.14827636,-0.030189842,-0.03992471,-0.25952166,0.3113539,0.4218674,-0.34070507,-0.37120986,0.31688395,0.40014344,0.16596964,-0.40352282,-0.10888996,0.048867054,-0.52627325,-0.05497821,-0.101718076,0.027293993,0.57267565,-0.03525006,0.19980101,0.47056702,-0.051776495,-0.16071184,0.12688011,0.06959583,-0.045262914,-0.16024433,-0.3420308,0.2049384,-0.2746195,0.07981139,-0.18369712,0.47140414,0.14544967,-0.7507868,0.4096989,-0.6136742,0.093812175,-0.044805117,0.29011366,0.6719348,0.55082387,0.19232914,0.5020971,-0.23225988,0.07631089,-0.0706149,-0.23255886,0.16835268,-0.36866125,0.0075796884,-0.5780042,0.12964621,0.11829967,-0.22850926,0.2875576,0.39426777,-0.54641616,-0.15383206,0.24784608,0.92427206,-0.17840378,-0.12251188,0.7742613,1.1043298,0.9142205,-0.006841581,0.88446254,0.26328528,-0.15208654,0.33920178,-0.2656917,-0.726881,0.24989082,0.2431785,-0.37298805,0.5068661,-0.050576415,-0.05851667,0.48100725,-0.20505333,-0.011496561,-0.09343846,0.1442616,0.22110632,-0.21097812,-0.3661683,-0.29447475,-0.07285642,-0.1761764,0.26419592,0.28967252,-0.25627628,0.5668889,0.04369959,1.7484705,0.097792216,0.0474801,0.078638636,0.70545584,0.2708064,-0.1989828,0.0057344777,0.47314644,0.23940112,0.12568875,-0.45049837,0.23796555,-0.21316116,-0.5132113,-0.1337537,-0.37529534,-0.26662645,-0.1052837,-0.4942095,-0.263748,-0.19011627,0.037568748,0.43931696,-3.0062382,-0.12150148,-0.09893574,0.28821954,-0.22273979,-0.31515247,-0.06021104,-0.43120173,0.28551072,0.33400223,0.40104422,-0.59141153,0.57031554,0.22404988,-0.46713883,-0.12949036,-0.53973526,-0.1234584,-0.038550723,0.5422401,-0.06964352,0.08193527,0.24976185,0.2722015,0.40808615,-0.08732474,0.12756507,0.2819616,0.4924086,0.048396856,0.36202955,-0.10999964,0.42867312,-0.3341146,-0.20799208,0.26432937,-0.48988128,0.27970082,0.09956529,0.14921641,0.45611387,-0.38718358,-0.8811029,-0.6292983,0.24854037,0.99586153,-0.1316085,-0.44598168,0.11894839,-0.5112307,-0.33531907,-0.12881456,0.43056816,-0.024479976,0.017140493,-0.7789506,-0.11536755,-0.15912412,0.23033473,-0.0067151827,-0.040383916,-0.34621438,0.6230516,0.109986484,0.4636209,0.16883479,0.10130943,-0.42011493,-0.4269157,0.095245436,0.63348675,0.27918646,0.14131515,-0.06267402,-0.23575878,-0.41967407,-0.033476744,0.16921191,0.6171593,0.3049887,-0.07836794,0.16937163,0.24436654,-0.16522405,0.11737505,-0.16450922,-0.21043113,-0.08327744,0.10204796,0.47247162,0.79680246,-0.30891594,0.5479814,-0.010660738,0.33043566,-0.24484432,-0.45267186,0.5778004,0.8860297,-0.19627318,-0.33764964,0.54964006,0.60559577,-0.27744135,0.37282842,-0.6063737,-0.34731,0.38801056,-0.13392022,-0.25488,0.33708474,-0.2094902,0.1760404,-0.88782734,0.20288198,-0.2771307,-0.3699579,-0.625462,-0.0066098147,-3.166443,0.16108724,-0.01336386,-0.32173106,-0.15270638,-0.16915712,0.25828832,-0.654677,-0.54859024,0.10419689,0.14222233,0.5902181,-0.1401793,0.11123346,-0.24154523,-0.38632122,-0.26893806,0.32735807,0.13854781,0.3787165,0.007032982,-0.46235138,-0.2535707,-0.012403109,-0.47181,0.14154822,-0.6993441,-0.4291117,-0.09320694,-0.5823632,-0.16561113,0.6025186,-0.26140586,0.02942751,-0.30541924,-0.018803272,-0.19541751,0.24152899,0.040282674,0.100114465,0.039512645,-0.119980805,0.23357823,-0.31569389,0.22825922,-0.09163376,0.4226356,0.2152021,-0.1386604,0.24656066,0.5749365,0.65243024,-0.023669157,0.6910235,0.5017871,-0.03587377,0.447574,-0.3326978,-0.17294447,-0.34544554,-0.1477154,0.025399502,-0.27125135,-0.45409587,-0.14401838,-0.43105832,-0.72740203,0.45379657,-0.065351546,0.09731804,-0.04027397,0.2926948,0.58802754,-0.17341027,0.07011123,-0.0441549,-0.169873,-0.45642295,-0.32806155,-0.45119312,-0.3478348,0.13787164,0.91373223,-0.12125884,-0.047099207,0.12065901,-0.30397716,-0.07886811,0.20882702,0.018492429,0.14013886,0.34582952,-0.29903343,-0.70959324,0.32990956,-0.22969899,-0.23530926,-0.54433703,0.2501553,0.49888915,-0.5553333,0.6486853,0.29047266,0.10742007,-0.24315785,-0.42666048,-0.092700586,0.024368372,-0.07786477,0.33044678,0.302762,-0.75814754,0.27346292,0.352981,-0.36965615,-0.5098964,0.54930127,-0.0981423,-0.39320812,-0.18244103,0.2049317,0.18555002,0.07097425,-0.27183372,0.14152515,-0.4498324,0.16682832,0.2148491,-0.052007377,0.26788044,-0.17130505,0.08052576,-0.67877525,0.025641212,-0.40290913,-0.45680204,0.39673752,0.18052138,0.17473412,0.0728567,-0.067216724,0.17594954,-0.2994916,-0.017030368,-0.2025286,-0.20230272,0.37059593,0.36726615,0.5282093,-0.55452645,0.58478314,0.059775837,-0.07047233,0.22696193,0.08102429,0.3703701,0.08903027,0.46692866,0.21005014,-0.25519678,0.29372475,0.68094313,0.26100737,0.4455895,0.074632004,-0.11222495,0.15658154,-0.09835511,0.03327092,-0.041988093,-0.46538016,-0.1277422,-0.26188454,0.22755836,0.48117328,0.06488284,0.15475622,-0.10046768,-0.42618105,0.09679097,0.23421218,0.03973091,-1.5592412,0.24742761,0.29496357,0.79563755,0.2727234,0.07208012,-0.0129188765,0.87863857,-0.16598389,0.07200628,0.4794925,0.08578426,-0.45021078,0.66238785,-0.7101101,0.51914924,0.014430157,-0.023257613,0.061529938,-0.11818683,0.36003563,0.7342239,-0.10778683,0.027005116,0.23020516,-0.48600695,-0.041092426,-0.270895,0.14968786,-0.57690763,-0.12965208,0.50084436,0.5795151,0.40826663,-0.31771994,0.08355639,0.1207065,-0.14188531,0.046544723,0.12277244,0.17603625,-0.16557758,-0.687213,-0.015121238,0.66918856,-0.23543371,0.13247915,0.08005142,-0.36128125,0.39376742,-0.21857418,-0.056399327,-0.068638034,-0.58108795,0.17700294,-0.29161072,-0.48518297,0.75020367,0.0075225234,0.18082483,0.25320226,0.12857231,-0.25610903,0.36292413,-0.13104759,0.803197,-0.0997872,-0.096516944,-0.31777143,0.061360266,0.15159026,-0.1216225,-0.046429846,-0.32876825,0.06136888,-0.3003912,0.32567528,0.06159765,-0.2613402,-0.32913333,0.10783846,0.2415873,0.50064373,-0.18800369,-0.23805006,-0.08950999,0.02626015,-0.40904683,-0.14175278,-0.070013605,0.35686466,0.2815164,0.012431915,-0.060559094,-0.07418161,-0.06415399,0.4725106,-0.09244343,0.5006671,0.49978685,0.37961194,-0.13667372,-0.086625695,0.20627682,0.50062144,-0.024005065,-0.04455059,-0.37626022,-0.50977993,-0.4601204,0.30820274,-0.16095607,0.3693476,0.1081013,-0.28555533,0.7812028,-0.06267563,1.1699963,-0.0046480712,-0.3606689,0.3189203,0.47167447,0.12001198,0.0050018346,-0.37998146,0.90029675,0.5401758,-0.080650054,-0.099392556,-0.26755807,-0.086136885,0.06379864,-0.3015634,-0.24362932,0.062006775,-0.585895,-0.14355652,0.10912842,0.2339628,0.38646033,-0.1819471,0.19732258,0.20742448,0.056020487,0.09595169,-0.35857767,-0.22865728,0.3022863,0.3216856,-0.0038210514,0.056266163,-0.5975698,0.2819019,-0.3544164,0.083067894,-0.4108595,0.24420463,-0.14127912,-0.36634445,0.100481376,-0.025722282,0.23436669,-0.51891226,-0.26701757,-0.24488637,0.46858397,0.1544014,0.029355465,0.45797488,-0.15161763,-0.026807556,0.033999305,0.523236,0.90311015,-0.31060988,-0.15364246,0.34583706,-0.37550277,-0.8034109,0.23382533,-0.22458191,0.40876463,0.010390674,-0.08341749,-0.6878237,0.38685226,0.14062066,0.061478052,-0.2397785,-0.52450293,-0.2318352,0.3248648,-0.2727329,-0.21739519,-0.35108134,0.06695373,0.48208174,-0.14587621,-0.26397687,0.12256249,0.2986199,-0.1121118,-0.504494,0.0039454526,-0.45388085,0.29168877,0.12685513,-0.31236437,-0.30645448,0.05222165,-0.4104211,0.31743893,0.17182183,-0.31686184,0.12961856,-0.47289842,-0.092746176,0.9607118,-0.2683706,0.15820085,-0.58040535,-0.5377614,-0.8342963,-0.59222174,0.32564571,0.22430758,-0.039831072,-0.66649693,0.01621237,-0.023505973,-0.4168896,-0.18038033,-0.3245871,0.38502976,0.012444807,0.23712976,-0.057871062,-0.7526422,0.16804056,0.09376804,-0.14057885,-0.6458122,0.5238447,-0.06998099,0.9613033,0.05714936,0.27236483,0.4054382,-0.35687357,-0.24592683,-0.11720554,-0.1398398,-0.5442951,0.010146891 -139,0.3567391,-0.22980584,-0.4052083,-0.039953332,-0.1536046,0.046286307,-0.2044421,0.34551537,0.06354611,-0.3991806,0.014044251,-0.22440861,-0.030229572,0.54824346,-0.074949786,-0.61933863,-0.0030810465,-0.039460234,-0.4430426,0.67005146,-0.39989802,0.18892878,0.029844813,0.33101338,0.24532554,0.3465428,0.29447865,-0.06583266,-0.07249462,-0.04177126,-0.1236097,0.13337313,-0.47113654,0.18707739,0.07560824,-0.27245232,0.071742296,-0.28305912,-0.65599054,-0.62646353,0.39282528,-0.8532454,0.4186386,0.12409384,-0.24705386,0.14414433,0.2246525,0.17054349,-0.36930114,-0.043662373,0.18112111,-0.11530789,0.019851528,-0.22066604,-0.27788928,-0.3966317,-0.4522977,-0.02217267,-0.5281534,-0.36421484,-0.25688818,0.12678808,-0.43014398,-0.12340816,-0.052942906,0.39585465,-0.47530985,-0.22121045,0.3386292,-0.1754558,0.3074667,-0.7817612,-0.15358719,-0.09185413,0.07342068,-0.09873327,-0.14406018,0.32685155,0.15137964,0.38987195,-0.053273696,-0.18043955,-0.16655289,-0.22651654,0.05133519,0.6110202,-0.20969719,-0.46243727,-0.19006109,0.15211558,-0.021427425,0.23171416,0.013519053,-0.5712029,-0.103279576,-0.011718319,-0.13948816,0.27452376,0.5071504,-0.33771574,-0.26549658,0.24262987,0.24502498,0.19879672,-0.082365036,-0.02891794,0.008766899,-0.5735905,-0.12167049,0.17955248,-0.07524682,0.526365,-0.07938449,0.35873845,0.60672605,-0.058899004,0.20067915,-0.14589965,0.07296836,-0.13285153,-0.2802742,0.0014970119,0.14518283,-0.40783244,0.17232282,-0.044206467,0.8053159,0.22400625,-0.5787318,0.43996194,-0.5512995,0.25180012,-0.0709448,0.5724564,0.76880866,0.11069688,0.2695448,0.831339,-0.32279727,0.06331287,-0.1080793,-0.27021214,-0.024392055,-0.17456001,0.12405172,-0.5195777,-0.04215962,0.058974497,-0.043368585,0.029848795,0.42025203,-0.47869757,-0.043823596,0.123364486,0.78148204,-0.27899683,0.15818764,0.5015092,0.9549396,0.8216039,0.07094231,1.1425067,0.3029011,-0.3059407,0.33250177,-0.16362582,-0.753335,0.22035098,0.5456777,0.50774646,0.23463066,0.051245574,-0.20853986,0.5176958,-0.40739948,0.13407217,-0.33525065,-0.0014078662,0.1904897,-0.025304519,-0.3380608,-0.26750606,-0.21155564,0.122286946,-0.061332934,0.20543417,-0.24116307,0.31910345,-0.16015036,1.7087505,-0.2027848,0.14534216,0.22402468,0.5404732,0.2078699,-0.078619294,-0.0154041145,0.26103222,0.38836145,0.12126394,-0.60880095,0.111926,-0.26058087,-0.561873,-0.101685755,-0.34015104,-0.06723661,0.056919638,-0.56297135,-0.13371183,0.0761445,-0.30065992,0.46165717,-2.7728717,-0.17373759,-0.2363678,0.19917308,-0.3561107,-0.16654713,-0.17021233,-0.24408728,0.5508355,0.4252019,0.5636827,-0.58271974,0.038325243,0.41191885,-0.38506463,-0.106804505,-0.55216116,-0.0020973498,-0.07479265,0.5093248,-0.0108555835,-0.21001849,0.1423642,0.16293629,0.5230093,-0.027283741,-0.09751853,0.2431008,0.29391903,0.024860315,0.36444414,-0.089449495,0.4280351,-0.38901263,-0.2237249,0.36110258,-0.1700049,0.36574772,-0.17129947,0.16212958,0.4140379,-0.4118838,-0.7713929,-0.5093054,-0.3553594,1.1198096,-0.29561198,-0.40584856,0.34061888,-0.32288954,0.022455981,-0.09869663,0.6301808,-0.13194765,0.11101927,-0.681404,0.21181114,-0.16350006,0.11602296,0.040472332,-0.12760809,-0.34359777,0.81518567,-0.0050535295,0.41786325,0.3911428,0.050543133,-0.19057395,-0.45889223,0.10374768,0.7098799,0.41469738,0.1443944,-0.023121087,-0.07841451,-0.03553971,-0.28479168,0.18245885,0.6250512,0.7061132,0.06042451,0.115456305,0.23968121,-0.015535951,-0.02424617,-0.089491114,-0.24712586,-0.1291321,0.24881946,0.68702656,0.59471583,-0.05257733,0.4734872,-0.11873531,0.21641278,-0.10422676,-0.4113577,0.50106966,0.84803635,-0.16942117,-0.25133803,0.48195928,0.55788255,-0.34416014,0.31229272,-0.6180262,-0.4540067,0.44074276,-0.24165143,-0.45447034,0.32774052,-0.44213355,0.07212884,-0.84783787,0.21691278,-0.2184822,-0.39679882,-0.52681804,-0.15546714,-3.839506,0.28707474,-0.5154159,-0.16516219,-0.11006513,-0.10730334,0.22300166,-0.59309804,-0.30430955,0.16311906,0.0135006625,0.45698655,-0.036947113,0.083103165,-0.1560075,-0.039624434,-0.042651158,0.14517926,-0.08275582,0.32794842,-0.13001493,-0.32056096,-0.058527414,-0.12672442,-0.42094892,0.057281893,-0.6394255,-0.43235442,-0.2589194,-0.59479004,-0.21299498,0.64885944,-0.2611479,0.019723821,-0.17585517,-0.02466413,-0.20078762,0.3654149,0.35402077,0.31543288,-0.032863524,0.0029941958,-0.18495996,-0.34645474,0.076879136,0.06070041,0.22868729,0.46890047,-0.10477312,0.2668122,0.41269335,0.4129036,-0.21338591,0.73792225,0.6010388,-0.13216224,0.28553322,-0.30154294,-0.086242676,-0.53487486,-0.49409977,0.053426113,-0.22897151,-0.57522446,-0.13389793,-0.23176393,-0.56936336,0.4546345,-0.049928103,0.22395235,0.102008544,0.15339369,0.5096563,-0.19371568,-0.13664685,0.10618806,-0.1449231,-0.5999064,-0.3347507,-0.5478293,-0.6059658,0.17084011,0.8642901,-0.106219955,-0.1785406,0.100925244,-0.3834595,-0.15388587,-0.014006507,0.12866262,0.15665418,0.15787853,-0.039078675,-0.72070724,0.5498397,-0.065405674,-0.17927636,-0.5081215,0.2091133,0.49313864,-0.62750995,0.59231627,0.20720783,0.23922573,-0.18044265,-0.41280362,-0.31312183,0.1282611,-0.22037734,0.24223955,0.10831761,-0.72413296,0.38023192,0.32726017,-0.2570554,-0.70415604,0.39443964,-0.013376921,-0.33643156,0.058676764,0.3110312,-0.006914533,0.011243839,-0.13334516,0.20480527,-0.336802,0.29351807,0.18805386,0.0378407,0.34570086,-0.08175098,-0.25461575,-0.37247482,0.19117199,-0.43187243,-0.2536082,0.38756686,-0.03144086,0.043361075,0.013804702,-0.11340471,0.38862073,-0.08511435,0.21094848,-0.04994472,-0.35987183,0.389598,0.46890014,0.41419488,-0.44200423,0.72426003,-0.07899253,0.07145668,0.06589531,0.2830807,0.46528238,0.23072416,0.36241537,-0.2896468,-0.13311695,0.19232222,1.0458367,0.1355159,0.4457782,0.10323693,0.02719882,0.23528817,0.06298025,-0.027095983,0.048171148,-0.42823368,-0.09949798,-0.078642674,0.30663252,0.4165541,0.039323475,0.3393035,-0.17540345,-0.40164405,0.16245078,0.22241369,0.15337868,-1.0145557,0.42646343,0.14086029,0.6078042,0.35654405,-0.08849311,-0.088909335,0.65027606,-0.10611414,0.08317422,0.15516615,-0.27939636,-0.64637035,0.64328945,-0.6682982,0.49453858,-0.09914069,-0.070354946,0.05751913,0.1823306,0.3433359,0.59207445,-0.13774422,-0.09059943,-0.022925872,-0.3889467,-0.086605825,-0.40766937,0.11356202,-0.40929112,-0.58038497,0.48387557,0.5561647,0.1521464,-0.12541333,-0.03163721,0.020626279,-0.07447633,0.26297078,-0.062382154,0.11385903,-0.079647645,-0.764576,-0.28899005,0.49289015,-0.09200808,0.20990938,0.004579294,0.029397447,0.22190131,-0.16047503,-0.045831807,-0.12434246,-0.6144486,0.2988861,-0.48258835,-0.6161513,0.4259028,-0.35889533,0.29234517,0.26063687,0.092246294,-0.34211084,0.5064293,0.019449335,1.0174841,-0.34200928,-0.24790327,-0.4283849,-0.052850842,0.19534792,-0.20442802,-0.1777977,-0.2965133,-0.00018555384,-0.6923316,0.51965934,-0.06346116,-0.2771465,0.19927678,-0.285173,-0.062664114,0.56992126,-0.06261596,-0.23727319,-0.17419471,-0.18166113,-0.3214168,-0.15767598,-0.18964349,0.27229136,0.25338835,0.16293192,-0.15365356,-0.17372265,-0.057804685,0.37640822,-0.09252152,0.2844795,0.29899856,0.3306452,-0.17355354,0.0018387208,0.41274312,0.5774821,0.24607784,0.09935909,-0.15493752,-0.39543745,-0.34110922,0.017421437,-0.14522551,0.4024573,0.23296975,-0.54446924,0.71814317,0.043501653,1.0398437,0.0052138614,-0.24593657,0.11434828,0.41126913,-0.009822651,-0.037796583,-0.15438938,0.8535632,0.73143685,0.06345984,-0.14365038,-0.22236195,-0.14955394,0.40035307,-0.2597903,-0.008055052,0.05157487,-0.5899073,-0.30616775,0.16354793,0.20322336,0.13970807,-0.11169502,-0.10694778,0.031135837,-0.012311252,0.1705339,-0.40325418,-0.06497299,0.28890374,0.19615339,-0.11318685,0.16235454,-0.44036546,0.46017477,-0.6188525,0.1695017,-0.42083994,0.13932434,-0.107927956,-0.13088922,0.2305584,-0.08139488,0.54851204,-0.26815888,-0.17543295,-0.13223729,0.574548,0.16628188,0.15796775,0.61748445,-0.17114732,0.12702996,0.0064161145,0.5898424,1.0522965,-0.41076946,-0.08187051,0.19173525,-0.3304446,-0.7592395,0.38916954,-0.20643902,0.09140341,-0.11073612,-0.30667055,-0.5598767,0.16000761,0.29861367,0.007183075,-0.1499045,-0.48793137,-0.31565684,0.20356622,-0.15834929,-0.30541185,-0.57124865,0.14871944,0.52533305,-0.1692353,-0.21411473,0.2214466,0.18858913,-0.22670975,-0.50783944,0.22806285,-0.19451894,0.1895314,0.14737241,-0.3247884,-0.09150176,0.06672346,-0.4378328,0.20324826,0.00014989651,-0.47159708,0.058248468,-0.0803349,-0.03888933,1.1669172,-0.2536423,-0.04073811,-0.6858459,-0.56929785,-0.81904227,-0.48572943,0.65906894,0.07974897,0.16172685,-0.55689645,-0.090395816,0.06784288,0.16263543,-0.19020359,-0.37929037,0.3316023,-0.018107213,0.43200392,-0.16590473,-0.5988063,0.20602956,0.003549984,0.038899377,-0.515762,0.3338925,-0.12274405,0.7679246,0.023222394,-0.08528114,0.3516743,-0.32987884,0.022208951,-0.19889766,-0.38118377,-0.8471388,0.10754411 -140,0.34470573,-0.21005327,-0.43554005,-0.00033728665,-0.19975582,-0.025831204,-0.42454985,0.27501252,0.19109303,-0.52493286,-0.29394895,-0.10000776,0.00023186207,0.20247872,-0.12926494,-0.3101732,-0.013015289,0.2533806,-0.4063894,0.59305394,-0.3936965,0.12955178,0.1210765,0.64269537,0.2210398,0.12249382,0.08447458,0.045332786,-0.36183712,-0.5979043,0.06832309,0.043007374,-0.85177904,0.32957843,-0.39492887,-0.61226535,-0.17700149,-0.55095685,-0.32240105,-0.83147424,0.12216977,-1.0647267,0.5766416,-0.013474729,-0.35240057,0.30676806,0.19709979,0.3818832,0.011954033,0.15412137,0.23033431,-0.4033871,-0.20588829,-0.24498908,-0.0939081,-0.23616081,-0.38804203,0.016331188,-0.400362,0.041439634,-0.41068393,0.22371681,-0.21720126,-0.021082897,-0.1816097,0.31013197,-0.4482876,-0.019989196,0.011996549,0.041622683,0.47649494,-0.56395054,-0.342394,-0.1792678,0.21700683,-0.19303784,-0.32750437,0.26324368,0.20688185,0.4734343,-0.038830582,-0.14658213,-0.19857353,0.051261965,0.18627106,0.45536762,-0.18955906,-0.22998737,-0.22805776,-0.17745543,0.5535058,0.40645683,0.03720834,-0.26453993,-0.0386861,-0.09974931,-0.20911972,0.24764384,0.46426412,-0.15467095,-0.13672285,0.30662367,0.42847708,0.32194597,-0.15054363,-0.020371033,0.011870171,-0.3835904,-0.15572757,0.091791466,-0.168062,0.58262354,-0.052750684,0.32081982,0.4657386,-0.23374936,0.07869895,0.26104996,0.12672445,-0.07110041,-0.21419975,-0.6021742,0.38583213,-0.56713206,0.32439083,-0.42186868,0.6952835,-0.07628438,-0.7646844,0.26125258,-0.5828046,-0.0024273086,-0.11434893,0.68943727,0.79110676,0.48331797,0.44314477,0.6499615,-0.301051,-0.07645542,-0.25439316,-0.008551557,-0.05847949,-0.25643703,0.06480295,-0.46069872,-0.28796828,-0.08367289,-0.096294254,0.021669094,0.6438474,-0.40757605,-0.18176214,0.16410774,0.7125539,-0.24170639,0.03416442,1.0312421,1.3056314,1.0617417,0.20485057,1.057903,0.23743118,-0.19424877,-0.22261,0.074719466,-0.5260158,0.38369462,0.2917062,0.15550368,0.13689007,0.24405292,-0.09324099,0.3472177,-0.6184989,-0.10040515,-0.15652965,0.1607948,-0.13775992,0.06621192,-0.41743162,-0.33612964,0.035696257,-0.030275045,-0.011426302,0.27860123,-0.3494177,0.46913293,0.04682507,1.1663086,-0.2923935,-0.08922955,-0.1285666,0.53859913,0.019314848,-0.24316886,0.007411645,0.15354005,0.3183786,-0.113581546,-0.54743284,0.04620262,-0.14725587,-0.4382521,-0.16848844,-0.21619973,-0.2237188,-0.03964833,-0.31445006,-0.23602684,-0.031412676,-0.41415405,0.2854176,-2.4719813,-0.20264207,-0.09126699,0.29948524,-0.25229707,-0.29553396,-0.030604033,-0.3762481,0.7590083,0.29752538,0.40743777,-0.5511407,0.43443808,0.4767644,-0.38833788,-0.2244468,-0.7976046,-0.10458484,-0.06015271,0.30834186,-0.022345586,-0.19632238,-0.034036424,0.030760344,0.62464106,0.02673811,0.23770553,0.27648118,0.279664,-0.08626053,0.3604539,0.16720396,0.49404314,-0.36309668,-0.29204392,0.35239756,-0.41190845,0.32006806,-0.19615465,0.09761923,0.5095723,-0.4306133,-0.7514974,-0.8614816,-0.46448934,1.2642443,-0.20231496,-0.7625717,0.12215508,-0.25110298,-0.28225186,0.08243193,0.5828105,-0.10023124,0.1242382,-0.83699983,-0.15014718,-0.108113974,0.2981154,-0.048435643,0.19450822,-0.6251582,0.71757704,-0.10519964,0.30779007,0.34360343,0.36557287,-0.1798928,-0.35396558,0.13027622,0.97931343,0.3979208,0.19277486,-0.3739511,-0.20896967,-0.29213288,-0.013523588,0.20565261,0.59829116,0.62327933,-0.035649758,0.17069882,0.2291283,-0.16148263,-0.05153048,-0.2481185,-0.38417542,-0.24228168,0.12917854,0.8189299,0.58571935,0.24559769,0.55477643,-0.07524727,0.32491505,-0.24036685,-0.48649356,0.5059125,0.8083675,-0.16729546,-0.09861212,0.6920526,0.5368017,-0.19783928,0.45620066,-0.80213004,-0.49111828,0.26062357,0.09436901,-0.50605494,0.19552635,-0.33881024,0.23807192,-0.8173444,0.34763372,-0.46704406,-0.6793548,-0.68595606,-0.13907672,-1.9889438,0.27468154,-0.17677027,-0.3737524,-0.21377318,-0.57578737,0.3621179,-0.5214641,-0.5679437,0.09729101,-0.01727346,0.76933825,-0.11909901,0.012022587,-0.2597297,-0.39522508,-0.31649926,0.033117812,0.24564335,0.27349195,-0.1393149,-0.33501923,0.09046291,-0.059816845,-0.30166003,-0.17734617,-0.5985862,-0.6040961,-0.08107794,-0.36485228,-0.25039938,0.37475055,-0.35496905,0.048813447,-0.29758126,-0.018473767,0.029107746,0.3547921,0.14026232,0.32054928,0.13564125,-0.07693231,0.009719698,-0.28032798,0.19932279,0.15574875,-0.07406525,0.39004105,-0.30131453,0.39897096,0.29195184,0.6085405,-0.17835408,0.90091574,0.4519665,-0.14241785,0.25290215,-0.3687155,-0.479598,-0.5663019,-0.23882915,0.024851276,-0.41785723,-0.38476837,0.03514444,-0.20844923,-1.0575781,0.67913663,0.12493988,0.16677539,-0.0454223,0.34859556,0.33455414,-0.21136108,-0.19211848,-0.015584066,-0.0133005865,-0.59994847,-0.44932115,-0.7135074,-0.39943486,-0.35213786,0.8648666,-0.035229612,0.16227348,0.36915654,-0.16769937,0.110547096,0.1617122,-0.07270218,-0.24489154,0.50217795,0.051831678,-0.6573852,0.33878538,0.11134954,-0.14068055,-0.6646413,0.4793148,0.9002294,-0.5666355,0.43982854,0.5763347,0.16310376,-0.3993263,-0.5973741,-0.16844378,-0.107415386,-0.26050112,0.4665395,0.2253697,-0.880247,0.46979487,0.3587742,-0.11025321,-0.76668096,0.5617198,-0.0462114,-0.3291682,-0.05844839,0.29837024,-0.0323647,0.124920875,-0.12670057,0.27646318,-0.28713983,0.4256987,0.06701061,-0.1655754,0.24810351,-0.33448073,-0.09865956,-0.6320573,0.24056648,-0.56911457,-0.438381,0.12882857,0.018780887,-0.055423997,0.52846473,0.12574606,0.39902037,-0.22111487,0.04433718,-0.34917748,-0.27557063,0.25731197,0.6167091,0.53737664,-0.23499726,0.67235124,0.14612852,-0.29218787,-0.3366223,-0.027327977,0.39473107,-0.025758794,0.44121015,-0.18712433,-0.19859006,0.13626646,0.65342766,0.22843622,0.51861346,-0.06994213,0.06023384,0.22465636,0.085144706,0.42718437,-0.0281384,-0.55711406,-0.02825854,-0.41155073,0.06288583,0.35304147,0.14423205,0.24692465,0.027624566,-0.10039585,0.12132274,-0.0018445116,-0.09077234,-1.3319904,0.5934894,0.17407434,0.7737594,0.57492524,-0.09471735,0.1079849,0.7962208,-0.36820194,-0.11539722,0.28019905,0.31296209,-0.3445563,0.62030035,-0.88745534,0.38244268,-0.08926973,0.03512856,-0.08086015,-0.1091355,0.48781115,0.8302998,-0.23120576,0.19625694,-0.094666354,-0.26143053,-0.044965543,-0.2910237,0.24102235,-0.5920591,-0.38059077,0.8926106,0.35188407,0.485809,-0.2801607,0.030995773,0.024545716,-0.14189075,0.17191073,0.19279647,0.093198664,0.0150576,-0.5819163,0.042833943,0.5131679,-0.19323072,0.07970001,0.1059282,-0.15473253,0.15134308,-0.012752586,-0.12163023,0.07298189,-0.70130485,-0.01904778,-0.55311644,-0.25543553,0.2922486,-0.30319643,0.09706618,0.17201519,0.079072386,0.06993008,0.27086592,0.3374508,0.626894,0.24692465,-0.17110182,-0.20872465,0.25123957,0.24718349,-0.12884685,-0.08321603,-0.1311954,-0.0562829,-0.6858403,0.39180094,-0.21497084,-0.26053876,0.36372378,0.010181264,0.016109165,0.51530546,0.05887655,-0.10884703,0.24575089,-0.349908,-0.37765497,-0.18151408,-0.036849108,0.26757556,0.11337604,-0.10621834,-0.069377735,-0.09626227,-0.18936814,0.46757552,0.014875008,0.4659979,0.34848875,0.05623237,-0.3669151,-0.04597131,-0.07943292,0.6252557,-0.10129058,-0.06490943,-0.2522264,-0.3161574,-0.33645806,0.3299576,-0.1282027,0.18141103,0.06960832,-0.18857911,0.9677537,0.02633668,1.0002824,-0.041720983,-0.37676093,0.16310018,0.4077788,-0.20445158,-0.15230547,-0.43689677,0.84371597,0.38403708,-0.06959532,0.0005416916,-0.43825153,-0.15163252,0.28429353,-0.18170752,-0.20952453,-0.11500895,-0.6726821,-0.14227279,0.211426,0.46411002,-0.10100655,-0.001057955,0.17432943,0.47141662,0.07988335,0.39679337,-0.47561428,-0.15611762,0.48417032,0.30832526,-0.1827951,0.027303966,-0.35095003,0.31555808,-0.6228769,-0.020970877,-0.27147108,-0.010886701,-0.23901749,-0.39680678,0.19599618,0.16849175,0.38962248,-0.26680642,-0.18246332,-0.18063821,0.4173661,0.13432324,0.23014203,0.43276235,-0.17272322,0.11044161,0.009937594,0.27730832,1.1713977,-0.31949085,0.07304906,0.2444995,-0.35359985,-0.48711225,0.37011716,-0.44971514,0.16627121,0.17070359,-0.36788633,-0.49203894,0.15672973,0.12633194,-0.01946982,0.06910556,-0.6496582,0.028048672,0.25629857,-0.045147315,-0.14098042,-0.29378334,0.1259997,0.46050218,-0.0060663405,-0.36287016,-0.059899747,0.48780045,-0.319327,-0.38368207,0.07001615,-0.3754069,0.2929629,-0.14726368,-0.41697317,-0.024112765,0.018114783,-0.46745792,-0.14725138,0.13444422,-0.30800718,0.09896671,-0.36045045,0.2769092,0.73814523,-0.20275585,0.11582826,-0.46813008,-0.5427673,-0.62577736,-0.20135865,0.14786993,0.39907682,0.042576093,-0.46929204,0.13330871,-0.11739215,-0.10695663,-0.07749633,-0.4722295,0.43056944,0.22702225,0.49145985,-0.020810591,-0.74762756,0.2796225,-0.018728562,-0.11040829,-0.3815932,0.526081,0.016750386,0.7162632,0.0888567,0.04442358,-0.028957019,-0.6180257,0.12135896,-0.07624523,-0.11401301,-0.7535393,-0.05668052 -141,0.23484136,-0.142541,-0.4932339,-0.10316086,-0.20242733,-0.13550074,-0.19450215,0.30686787,0.35114336,-0.082691275,-0.28790382,-0.15593521,0.1936055,0.3970948,-0.0014881629,-0.5578693,-0.17315406,0.19161122,-0.77789146,0.5500424,-0.5174099,0.18135937,0.06412148,0.3457491,0.17647591,0.40864804,0.1807861,-0.1434822,-0.12473266,0.015931942,-0.09698987,0.29050896,-0.6236359,-0.0060302294,-0.21931103,-0.20207712,0.08235387,-0.5392058,-0.34787962,-0.61287963,0.14742611,-0.8299507,0.39696124,0.003456455,0.014665772,0.06983652,0.1864349,0.37174895,-0.36840153,-0.19777025,0.29390758,-0.1392182,-0.08346582,-0.23908274,0.016551256,-0.116085164,-0.47444484,-0.037400343,-0.42981642,-0.2544977,-0.24969107,0.02286038,-0.35672453,-0.032493465,-0.087689705,0.41279718,-0.34638363,0.11652207,0.23887938,-0.18050715,0.20346037,-0.46328494,0.07103176,-0.09088524,0.540098,-0.11375076,-0.15577617,0.42336866,0.31662676,0.23688191,0.13439885,-0.18820311,-0.28557703,-0.07514022,0.24530461,0.45311415,-0.17698835,-0.3916351,-0.13356328,0.12832187,-0.043219764,0.24229392,0.05510425,-0.2783262,-0.09871989,-0.07033073,-0.08780773,0.46946743,0.38287324,-0.10268081,-0.389544,0.26152223,0.48410457,0.43414256,-0.2657591,-0.21582478,0.011869109,-0.58430564,-0.18350483,0.03312269,-0.15582466,0.49165195,-0.17304857,0.17783286,0.7182623,-0.048848893,-0.004841839,0.07282216,-0.0026705195,-0.13859046,-0.33913854,0.08088689,0.17052348,-0.57438886,0.15600923,-0.06922107,0.6029692,0.23570047,-0.7301045,0.4853502,-0.6545048,0.23743747,-0.088459305,0.45105842,0.6493753,0.16947968,0.41869628,0.66469234,-0.28936175,0.17753704,0.077053435,-0.5643377,0.117665716,-0.20572203,0.172921,-0.56030667,-0.11786382,-0.12737663,0.1377373,0.22232723,0.0453293,-0.39061758,-0.021782462,0.32690367,0.80749345,-0.24586228,-0.16405883,0.63088834,1.1073526,0.91621244,-0.0009332712,1.2443182,0.12227312,-0.32121882,0.3145069,-0.34087032,-0.8534102,0.13717777,0.31595093,-0.27921516,0.13574544,-0.13083425,0.018728254,0.24398838,-0.39230874,0.09003411,0.07836839,0.19463846,0.15001917,-0.059752353,-0.3695346,-0.32265252,-0.20414597,-0.11750854,0.005369223,0.21301009,-0.079923905,0.23449278,-0.1439205,1.3976896,-0.011258974,0.043075103,0.06491996,0.56430703,0.2973032,-0.11723692,-0.24708249,0.41341904,0.38371488,0.058025215,-0.50702196,0.33283073,-0.3294,-0.29157636,-0.024938826,-0.4297525,-0.06696303,0.24838416,-0.38520378,0.03229712,-0.06341391,-0.32173288,0.4874425,-3.1806912,-0.22245255,-0.036513664,0.1730575,-0.2190006,-0.16992514,-0.16827653,-0.55615085,0.16709556,0.1642069,0.6361115,-0.6181278,0.41311246,0.39591628,-0.61422545,-0.17963961,-0.65772635,-0.19849727,0.08616162,0.31039912,0.04724856,0.1801103,-0.009585039,0.19679591,0.56076854,0.13903134,0.09530508,0.43088758,0.32130164,0.090173945,0.6922839,-0.12187242,0.63672626,-0.26895568,-0.1430854,0.24485806,-0.23764037,0.40887567,-0.1414403,0.093214,0.6665265,-0.40741345,-0.9969851,-0.43030497,-0.33761638,1.0711673,-0.31449425,-0.28974578,0.3013292,-0.35780165,-0.04989542,0.083886296,0.5623006,0.0067294193,0.018932197,-0.64158666,0.025466982,-0.039906796,0.12807432,0.0900421,-0.17889181,-0.38050157,0.66844815,0.09988098,0.5414779,0.31348404,0.22449926,-0.14503701,-0.34841606,0.10391504,0.658197,0.19092768,-0.0077000847,-0.124061264,-0.22671846,-0.24539314,-0.18187381,0.004408057,0.5876305,0.52590245,-0.2053872,0.28458783,0.34496033,0.11431898,0.06606421,-0.09553333,-0.21300077,-0.0062600304,-0.025080983,0.3598474,0.94152516,-0.14669418,0.43726224,-0.0055729495,0.17264143,0.011341801,-0.454727,0.64987415,0.48267823,-0.10705146,0.03796386,0.32368094,0.5885735,-0.37310207,0.4411208,-0.40573853,-0.16830063,0.583449,-0.1968814,-0.36208504,0.20478223,-0.2461115,0.043152608,-0.7015886,0.16535796,-0.32999736,-0.34918207,-0.2513785,0.070952386,-3.7312746,0.14025982,-0.13681538,-0.15310313,-0.38975617,0.008753731,0.14404756,-0.58793664,-0.6581637,0.15901086,0.14830531,0.62290025,-0.1886398,0.06349904,-0.19710132,-0.1539571,-0.18893005,0.24581382,0.17135477,0.31813383,-0.16208313,-0.42253467,-0.22789638,-0.14102633,-0.49840868,0.28322098,-0.4910998,-0.26028708,-0.014101102,-0.58923113,-0.3232005,0.5583939,-0.4333362,-0.068999305,-0.2467416,0.041996837,-0.27477482,0.22760025,0.17970496,0.2362201,0.04910457,0.052386455,0.036554124,-0.28033766,0.5094254,-0.0564127,0.3999702,0.09832323,0.24498004,0.16795936,0.41666377,0.63158786,-0.23810403,1.0589262,0.47263145,-0.06297079,0.24733008,-0.30880868,-0.26118752,-0.47119528,-0.23704712,-0.10366358,-0.32873565,-0.53468233,-0.014564001,-0.33045018,-0.71914643,0.5743021,0.11991571,0.30950814,0.059801176,-0.055561997,0.3734409,-0.18676624,0.12110332,0.00918238,-0.09461145,-0.60694957,-0.054964285,-0.6285552,-0.5891117,0.0940292,0.5303292,-0.39341784,0.020662097,-0.099410824,-0.3854189,0.0080833025,0.19157945,-0.009750564,0.3914184,0.4748841,-0.008626197,-0.55024916,0.4649684,-0.08067067,-0.046702437,-0.48954755,0.094186984,0.547111,-0.7034123,0.7314685,0.30128345,-0.09466909,-0.10403991,-0.42650324,-0.35466626,-0.17642826,-0.13281365,0.27686337,0.14052847,-0.8712622,0.29890016,0.14635715,-0.531303,-0.68932813,0.44249213,0.004737144,-0.21632862,-0.11788174,0.22892745,-0.011481037,-0.01604569,-0.22808442,0.18773769,-0.29179254,0.23618762,0.1474798,-0.03675162,0.15480089,0.076424435,-0.15458092,-0.60280997,0.012160563,-0.33562347,-0.18276317,0.46074194,0.031776454,0.024971914,-0.06448045,0.19224635,0.2019566,-0.30101413,0.13119999,0.06601407,-0.40218416,0.17671312,0.44112617,0.44886014,-0.4505993,0.49309224,0.12024841,-0.28512856,0.3287019,0.04808495,0.3019508,-0.05339801,0.32261026,0.024515422,-0.20187494,0.22028166,0.76270527,0.13312492,0.31061494,-0.026904674,0.06415493,0.3775539,-0.08850371,0.09294736,0.03557717,-0.53221065,0.12990847,-0.28372085,0.22400148,0.45862564,0.2973704,0.21598537,0.18289134,-0.3725309,-0.07854183,0.2879624,0.08946191,-1.0951664,0.47957185,0.193923,0.92483914,0.54559314,0.049697474,-0.117357746,0.69877183,-0.18082666,0.1513759,0.44837093,-0.15057895,-0.5698113,0.7436274,-0.62597984,0.5308,0.019590357,-0.15274002,0.18521729,-0.0026986324,0.22845456,0.67835337,-0.35545218,-0.022351779,0.12592384,-0.18402028,-0.011608188,-0.39152378,-0.09966282,-0.40872988,-0.31682432,0.6326058,0.48449567,0.29826134,-0.21328765,0.0067365286,-0.041928954,-0.13355063,0.18779024,0.020153578,0.035724785,0.20334165,-0.6768093,-0.1245125,0.55214757,-0.2114672,0.19584809,-0.2805118,-0.17651074,0.17410873,-0.36677817,-0.06369659,-0.13785896,-0.7029222,0.10502209,-0.24584875,-0.41966587,0.55223584,-0.20665881,0.26628783,0.1833798,-0.008248334,-0.07533541,0.6572928,0.0556866,0.81119466,-0.040451296,-0.19267955,-0.34317118,0.15067567,0.19192153,-0.14806582,0.021202229,-0.50090086,-0.062948175,-0.32222497,0.6512857,-0.0071146945,-0.39826006,-5.9072787e-05,-0.15545636,0.07818528,0.606973,-0.08390787,-0.16844162,-0.20117474,-0.08724736,-0.4404459,0.014591928,-0.24646582,0.244661,0.52524096,0.041408762,-0.17976657,-0.28486684,-0.14056098,0.36223343,-0.072121024,0.56837386,0.068922214,0.076528296,-0.12879968,-0.042454675,0.3718233,0.5013482,0.14473943,-0.091999546,-0.42171943,-0.16229509,-0.38025528,0.17668149,-0.060579482,0.36566654,0.018145453,-0.17040911,0.5932659,-0.068081245,1.1459296,0.16048335,-0.3171055,0.22027174,0.41324666,-0.1036919,-0.0974718,-0.35242578,0.77640164,0.39292806,-0.03316405,-0.106736355,-0.44967216,0.0069039143,0.17757957,-0.15115575,-0.006725366,0.10030666,-0.37023395,-0.2779668,0.1566519,0.26096642,0.35676888,-0.11518152,-0.065080725,0.117309555,0.13535559,0.2545047,-0.51515007,-0.40333003,0.190224,0.27671194,-0.09893702,0.15903364,-0.3047673,0.47261035,-0.38878706,0.1976555,-0.48357865,0.19165704,-0.36133358,-0.35432306,0.05885094,-0.04490392,0.41570508,-0.23461816,-0.31205717,-0.22457257,0.43896407,0.08946947,0.21477509,0.60660183,-0.2536805,-0.00093324366,0.06502974,0.5963191,0.8120862,-0.4383736,-0.1371807,0.31512004,-0.27809814,-0.48435572,0.36798865,-0.2983754,-0.023875475,-0.074214876,-0.38008034,-0.56114566,0.12759815,-0.007424749,0.12582162,-0.01015556,-0.60159695,-0.07254584,0.13363953,-0.21585353,-0.2629737,-0.39625052,0.18606026,0.7783,-0.31290784,-0.2501701,0.2024867,-0.023856644,-0.14554755,-0.36386377,-0.09231731,-0.2667781,0.21465707,0.027639134,-0.38238966,-0.11390204,0.22262564,-0.39578617,0.27637106,0.06615817,-0.27063087,0.1440168,-0.0056318734,-0.10548111,1.2261376,-0.4155575,-0.007332004,-0.4475575,-0.56798846,-0.70191,-0.36324105,0.30903578,0.07635817,-0.03716286,-0.35407177,0.034758292,-0.0038257563,-0.2316354,-0.0657755,-0.4957221,0.3780786,0.073023416,0.35246122,-0.33299458,-0.83764756,0.17484848,0.14379142,-0.12059657,-0.7385638,0.51857334,-0.04306615,0.76066273,0.017969957,-0.036329407,0.15685727,-0.06358134,-0.06836478,-0.41070524,-0.018868145,-0.6097615,0.14774773 -142,0.43221655,-0.25019357,-0.43143913,0.0706752,-0.37111935,-0.029276466,-0.23935784,0.57134503,0.2585113,-0.3841648,-0.17827709,-0.25547972,0.030723602,0.26768258,-0.15247881,-0.09914252,0.033247292,0.16118734,-0.5429389,0.5996351,-0.32686114,0.25641534,-0.019025704,0.49882603,0.44903216,0.43147126,-0.021933874,0.2946218,-0.01541698,-0.18016784,-0.26299262,-0.19513898,-0.7123526,0.19714886,-0.3708454,-0.59348243,-0.12248165,-0.64327043,-0.56830496,-0.83161765,0.6486468,-0.9617675,0.5198768,-0.00893568,-0.17229472,0.29669914,0.30580142,0.42580295,0.009490694,-0.1873724,0.08659321,-0.09972197,0.3402004,-0.39179602,-0.124375015,-0.32115784,-0.54127085,-0.1569191,-0.40878233,-0.22397375,-0.19541408,0.1837792,-0.3210563,0.07686864,-0.108100645,0.45461473,-0.33024096,0.33678058,-0.013258715,-0.23102105,0.038228557,-0.5238454,-0.16631968,-0.110856235,0.24871321,-0.051244225,-0.12794857,0.40692914,-0.035015196,0.21491891,-0.18925802,-0.021639893,-0.33522883,-0.072047025,-0.07586082,0.5009574,-0.14990868,-0.50055027,-0.14049514,-0.08739707,0.46617457,0.24922584,0.32721135,-0.08731914,-0.06676194,-0.22424264,-0.13191068,0.5669356,0.5318602,-0.12645523,-0.17709374,0.27624607,0.687859,0.21143816,-0.37587634,0.03656669,0.14673452,-0.42697784,-0.11404506,0.007948478,-0.105895996,0.66690487,-0.055744004,0.39231643,0.45246553,-0.42916933,-0.030741593,0.21065712,0.17519237,-0.032446027,-0.15799804,-0.41487074,0.34658182,-0.31896117,-0.007588014,-0.2707548,0.5394109,0.12628941,-0.6302705,0.35415354,-0.7057721,0.04961482,0.109013855,0.36505738,0.57652265,0.6131513,0.41228664,0.7445747,-0.24132274,0.016808897,-0.2905689,-0.12306247,0.11386839,-0.30279323,0.20820306,-0.3674806,-0.08903261,-0.03188666,-0.15742777,0.042101685,0.47606003,-0.5209154,-0.12911926,0.07659324,0.6844112,-0.19809043,0.022500744,1.0085152,0.96193457,0.9493656,0.041459512,0.74717206,0.11215097,-0.12625496,0.045510728,-0.028836563,-0.77675986,0.216211,0.14687237,0.00045766434,0.5612343,0.0748225,0.1404217,0.14370322,-0.49167252,-0.006648836,-0.047770593,0.20677917,0.19285351,-0.070552275,-0.38735342,-0.34238863,-0.054053824,0.14087321,0.2542623,0.32353094,-0.354517,0.38935566,0.083102904,1.799727,0.14758605,0.09809148,0.2280345,0.8126197,0.295287,-0.43443534,-0.08692547,0.32613328,0.19653322,0.16311069,-0.57391423,0.13280226,-0.21244073,-0.40823862,-0.056864034,-0.39787412,-0.15807214,-0.24827276,-0.38185036,-0.3957092,-0.22039044,-0.21615808,0.33217385,-2.8940036,-0.11599871,-0.048457105,0.5565824,-0.32806733,-0.41815087,-0.12322316,-0.5738897,0.26072016,0.30191085,0.40284202,-0.70619553,0.42449674,0.54227114,-0.55122787,-0.068029754,-0.5369055,0.07037306,-0.03495678,0.30388793,-0.13086812,0.003846243,0.26467484,0.1631263,0.44775364,0.11381942,0.057880938,0.24162167,0.5422221,0.017634341,0.5600201,-0.06356559,0.2051516,-0.4770031,-0.13829626,0.37336078,-0.5901095,0.04156057,-0.21021755,0.124145925,0.63744515,-0.5433707,-0.7904064,-0.5665359,0.23595862,0.94464904,-0.13484257,-0.7103502,0.10277843,-0.6672628,-0.41949287,-0.32835063,0.61748815,-0.19254166,-0.04806942,-0.5211345,-0.21378545,-0.2936274,0.29042307,0.06645136,-0.083263636,-0.3116254,0.7751236,-0.04488367,0.5183835,0.14306866,0.13516794,-0.70519155,-0.530462,0.25571486,0.54663396,0.40355852,0.05948912,-0.14833592,-0.13911913,-0.2053122,-0.08373847,0.11297812,0.7071504,0.62597245,-0.17371424,0.23701783,0.4147396,-0.10716513,0.050234508,-0.26138887,-0.25974774,-0.338509,0.09877352,0.62891287,0.82245,-0.08961151,0.34258637,-0.022548534,0.26588494,-0.29628333,-0.543984,0.38130936,0.7653287,-0.073492475,-0.293587,0.41630152,0.60483027,-0.42564598,0.4284315,-0.7683282,-0.43563342,0.33622566,-0.100580074,-0.5144914,0.29117057,-0.22457911,0.12644152,-0.45613933,0.11059889,-0.11368775,-0.42012623,-0.5536923,-0.13362205,-2.0949757,0.11301752,0.030335188,-0.33345208,-0.11492625,-0.30130523,-0.012273818,-0.60258967,-0.56033987,0.22243802,0.10628331,0.9141054,-0.08029528,0.1510279,-0.2036617,-0.3988247,-0.47345996,0.21649873,0.19253434,0.39019454,-0.15429772,-0.41217032,-0.19031899,0.004051499,-0.58012176,-0.014538054,-0.38792738,-0.32320556,-0.28200498,-0.45479372,-0.36305654,0.5930895,-0.22685416,0.08899488,-0.34619108,-0.1846916,-0.03082143,0.34861585,0.10406992,-0.006772349,0.11726991,0.008790448,0.32500124,-0.2288049,0.25500485,0.015066594,0.3688712,0.3470912,-0.124680854,0.1732406,0.37049296,0.69476193,-0.05954883,1.0299801,0.21722424,-0.123937376,0.40519503,-0.05847907,-0.3599731,-0.36444554,-0.010641371,0.27157637,-0.30284417,-0.24086489,-0.22989173,-0.3779478,-0.7584365,0.44574976,0.1275299,0.3270407,0.08485388,0.47276488,0.5966707,-0.2072369,-0.04563946,-0.06045546,-0.20327957,-0.64702415,-0.38246524,-0.52038735,-0.37970462,0.2902677,0.8495192,-0.2966337,0.025911339,0.2353431,-0.30270723,0.059838813,0.18505232,-0.2293642,0.06381296,0.41277122,-0.23817702,-0.52856714,0.40707418,-0.29791373,-0.24429916,-0.5738629,0.2742715,0.5498385,-0.55827093,0.29388148,0.019578636,0.056776505,-0.4830365,-0.4776756,-0.02834247,0.07999812,-0.1927644,0.26957354,0.4487444,-0.8591097,0.24777704,-0.06778506,-0.34045827,-0.6611746,0.51410526,-0.04912473,-0.41527343,-0.52424353,0.30219635,0.18378703,0.034341816,-0.26250574,0.06419591,-0.44516423,0.11165679,0.19953074,-0.019844295,0.22099382,-0.13654484,-0.16802992,-0.56841415,0.3058408,-0.40030053,-0.2860968,0.46968865,0.06611159,0.14825608,0.33365414,0.09879386,0.18308552,-0.3429799,0.12766099,-0.10594559,-0.14126836,0.4853952,0.3464651,0.5835896,-0.58347094,0.5820431,0.16884239,-0.14693995,0.36897373,-0.0025270383,0.27182218,-0.09613732,0.30540028,0.08789251,-0.3193849,0.07245293,0.8337374,0.36032298,0.4474977,0.0044401684,0.010890226,0.103477396,0.090813,0.20764148,-0.013581794,-0.6840491,0.09099477,-0.33650294,0.0763433,0.47163352,0.064846665,0.3226035,-0.09138056,-0.27357307,0.08012412,0.20900856,-0.29413152,-1.4610858,0.08146923,0.121631615,0.95158917,0.5191662,0.002948304,-0.0456471,0.76183814,-0.052404653,0.17492068,0.27021146,0.28941098,-0.4583306,0.59226733,-0.632405,0.616573,0.05945086,-0.16141193,-0.048783284,0.076506175,0.4929601,0.6763563,-0.27285913,-0.05760358,0.06406385,-0.24260306,0.04619247,-0.39225593,0.19071573,-0.77561903,-0.29464957,0.6456184,0.3685108,0.45626035,0.0709121,-0.012334589,-0.07854978,-0.0931035,0.03319936,0.00024569035,0.12746851,-0.04008604,-0.66315883,-0.08055442,0.5332424,-0.07212711,0.12914258,0.06980031,-0.1115545,0.16537966,-0.12599045,-0.18069045,-0.07359638,-0.8970146,0.18466842,-0.27791455,-0.45820627,0.68406326,0.047858115,0.21725242,0.28328708,0.04185623,-0.23482496,0.3128044,0.3965989,0.59870845,-0.20479374,0.011680879,-0.4218975,0.2580028,0.124420725,-0.25040576,0.09177259,-0.013235201,0.08663404,-0.5160603,0.40835667,-0.040719375,-0.13744062,0.0026372473,-0.100654,0.07470193,0.7353532,0.06890609,-0.07418411,-0.026729828,-0.2334439,-0.22816773,-0.21731603,-0.25614598,0.21305592,0.17613375,-0.25735867,-0.034281913,-0.118326224,-0.07600004,0.41869593,0.018643558,0.5807669,0.23756933,0.2353841,-0.3693433,0.13373278,0.002749741,0.5986702,-0.06254535,-0.080245234,-0.38003477,-0.50523347,-0.4779539,0.5087246,-0.007602284,0.2382635,0.15048902,-0.07297533,0.98365325,-0.050332233,1.1587445,0.046070367,-0.35954773,0.36613917,0.5083279,0.009610668,-0.045351654,-0.4426696,0.87431747,0.32333183,-0.052730028,-0.10258532,-0.074425615,0.045057323,0.22629182,-0.3162213,-0.22118759,0.02463615,-0.52056044,-0.19061466,0.2221307,0.24683511,0.1575178,-0.26987022,0.17328985,0.55207676,-0.109011106,0.35285047,-0.3778635,-0.17729859,0.50067955,0.18718602,0.03996952,0.09023515,-0.47964525,0.30818275,-0.38857833,0.040084653,-0.48285052,0.27800414,-0.0067782104,-0.46833754,0.10031592,0.067869715,0.4951278,-0.47757474,-0.42661333,-0.2871935,0.47268116,0.1723149,0.2667449,0.24674685,-0.2232523,-0.048717584,-0.24500196,0.46255684,0.7342997,-0.30106947,-0.03346766,0.37530681,-0.46336177,-0.7622657,0.3665808,-0.31798533,0.26009542,0.08131453,-0.022612205,-0.3549784,0.24658917,0.28304413,0.06721667,-0.22116898,-0.7800233,-0.31603566,0.299027,-0.19887145,-0.12896846,-0.46352938,0.11840313,0.5092552,-0.06693391,-0.27130732,0.0770231,0.37424245,-0.13628255,-0.3794782,-0.013976905,-0.29829794,0.16414826,-0.19787128,-0.28667846,-0.2844768,0.24784613,-0.52892524,0.18278511,-0.06306664,-0.29323956,0.069469675,-0.24657564,0.022152072,0.978533,-0.22622192,0.0322499,-0.32224903,-0.5276529,-0.9435735,-0.38405037,-0.03467882,0.195804,-0.0021264472,-0.7017514,-0.10577756,-0.17229111,-0.30931625,-0.012159586,-0.38253602,0.46325448,0.1990099,0.37348923,-0.029885843,-0.80421656,0.16210182,0.11442507,-0.3441057,-0.53482497,0.58682543,-0.04619621,0.878345,0.19581725,-0.02995991,0.20820837,-0.5116373,0.101765156,-0.19683616,-0.03606379,-0.72145814,0.18883973 -143,0.4621962,-0.15829991,-0.6310392,-0.04480741,-0.27720916,0.090683244,-0.19711892,0.42082995,-0.0047169393,-0.43096364,-0.09280891,-0.17060712,0.14478105,0.62864125,-0.1636549,-0.560962,0.08954671,0.2708251,-0.6630193,0.6235578,-0.42986935,0.3545283,0.02461424,0.3033649,0.24497825,0.38110343,0.3173886,-0.14001933,-0.4567443,-0.03942454,-0.2481921,0.34662858,-0.3831208,0.10689159,-0.16249941,-0.47057977,0.020106198,-0.28842914,-0.4216343,-0.6290533,0.2637574,-0.74772257,0.5164777,-0.18287936,-0.26386708,0.37231424,0.16303906,0.3395654,-0.23498726,0.016911779,0.21233936,0.009337576,-0.12625794,-0.27536538,-0.33064917,-0.70576286,-0.65526986,0.07115798,-0.5309726,-0.10641025,-0.15337227,0.22557673,-0.2783553,0.09063141,-0.12391046,0.28766248,-0.4115865,0.13813263,0.049561627,0.020817392,0.05377637,-0.6246207,-0.19291013,-0.099078044,0.3366423,-0.16804393,-0.043865077,0.277485,0.3658537,0.41390607,0.024061752,-0.07347237,-0.50243336,-0.15699682,0.16994019,0.4842414,-0.17781568,-0.66800225,-0.12098063,-0.10079284,0.14344423,0.04417683,0.17968483,-0.31595275,-0.005617716,0.015708063,-0.41400686,0.37135634,0.42303535,-0.385654,-0.27205226,0.38419983,0.37758845,0.107317306,-0.30641833,-0.13769831,-0.10936216,-0.51282,-0.09906808,0.08678802,-0.086345695,0.5991623,-0.16486059,0.28783655,0.648703,-0.16178213,0.021757105,-0.13182616,0.05408567,-0.10687171,-0.18826705,-0.25810036,-0.072185084,-0.4287701,-0.021489104,-0.18664879,0.6621835,0.108484454,-0.7695252,0.40526617,-0.5035267,0.07358561,-0.07571748,0.29384625,0.46045944,0.40132776,0.01601806,0.43166363,-0.2709622,0.10685606,-0.020467265,-0.42782184,0.0011433284,-0.17816085,-0.03850111,-0.5444842,0.21817115,0.10615686,0.09509935,0.0641736,0.6781398,-0.40046617,-0.14689158,0.06659395,0.86776924,-0.40890175,-0.3475706,0.79748183,0.9645954,0.9057571,-0.049904004,1.2164267,0.43724123,-0.27286023,0.113092475,-0.5255748,-0.4250973,0.22022337,0.32110006,-0.5842676,0.40510553,-0.044896398,0.0065709553,0.27400988,-0.1326073,-0.012759503,-0.2374637,0.024588697,0.075101614,-0.08056507,-0.4175501,-0.46772546,-0.068872936,-0.07931184,0.3663985,0.27137706,-0.20877008,0.5154181,0.024250556,1.7582295,0.02691562,0.07128198,-0.008631217,0.5640573,0.254477,-0.029266449,-0.04863266,0.20919253,0.2866651,0.018094143,-0.45941716,0.026149523,-0.34506613,-0.7373103,-0.1845444,-0.3572671,-0.16163568,0.031581707,-0.5431719,-0.17268385,0.039219264,-0.16792615,0.47993168,-2.596292,-0.17049885,-0.09082141,0.20717576,-0.28925365,-0.49423218,-0.22452496,-0.55978584,0.3856827,0.3004499,0.4622422,-0.55479234,0.49400192,0.14499375,-0.38727582,-0.21583763,-0.5077932,-0.06017733,-0.007078475,0.42912397,-0.22915998,0.0010216713,0.33352122,-0.030711882,0.5258627,-0.31583804,0.22198887,0.22831462,0.27535665,0.20206894,0.30571812,0.15623666,0.7052487,-0.28961647,-0.095615864,0.2921487,-0.238851,0.31257376,-0.008083761,0.2621218,0.37891304,-0.5656232,-0.86244416,-0.5708769,0.08842697,0.91492105,-0.16663228,-0.34838116,0.0814348,-0.011205258,-0.2930334,-0.016537355,0.25452825,-0.21385647,-0.09536268,-0.64923185,0.16651413,0.05691763,0.0725117,-0.03388577,-0.015678069,-0.36273542,0.45452452,0.023562526,0.37319443,0.26778713,0.30159912,-0.29098272,-0.38702488,0.14323868,0.97909915,0.24869967,0.09299729,-0.13864008,-0.32291794,-0.46506947,-0.12300345,0.08104927,0.317092,0.6484405,0.084481195,0.07827941,0.14728676,0.05317205,0.22702758,-0.1371962,-0.3041121,-0.11638995,0.08607678,0.4424728,0.40091127,-0.30478606,0.76034576,-0.23518369,0.3843737,-0.21447326,-0.5531699,0.5198587,1.2103516,-0.3722291,-0.31905934,0.5398808,0.5428328,-0.31785712,0.4837763,-0.6003843,-0.5098484,0.3946944,-0.20783396,-0.2180823,0.19404036,-0.27711418,0.08929722,-1.026464,0.25083762,-0.175043,-0.3613814,-0.47429374,-0.23376714,-3.1788995,0.16475579,-0.1952674,-0.11742976,-0.090878375,-0.16573884,0.14736944,-0.71191484,-0.43432555,0.20899422,0.11591845,0.66376746,0.085037805,0.17532682,-0.14927262,-0.2585602,-0.1738196,0.20205717,-0.028465938,0.42413428,-0.14229421,-0.5868562,0.116730295,-0.24653628,-0.39603272,0.18103585,-0.7619438,-0.36142084,-0.2545283,-0.4171374,-0.35373178,0.63743645,-0.41087982,0.1366175,-0.13697092,0.03889664,-0.22853623,0.39014664,0.03687573,0.16150917,0.16925389,-0.057805717,0.17761262,-0.3832975,0.1396399,0.057155732,0.3106238,0.3909405,0.05079531,0.11240273,0.42516175,0.758304,-0.02417531,0.60205597,0.43902862,-0.1369341,0.3446727,-0.2900406,-0.13829507,-0.6162673,-0.5393828,-0.1622203,-0.3053335,-0.5981442,-0.16087748,-0.30226135,-0.8010779,0.56443375,0.016698401,0.16781893,-0.050455835,0.36083058,0.5155193,-0.2553347,0.10801696,-0.1935208,-0.02365626,-0.52852476,-0.38752243,-0.6422407,-0.56666684,0.15818577,1.0163534,-0.066090144,-0.10953583,-0.08508418,-0.28511474,-0.074267484,0.22268501,0.05407067,0.16388416,0.381107,-0.36180356,-0.78195584,0.6106909,-0.24269418,-0.07385219,-0.37772503,0.15109298,0.5063938,-0.61761755,0.4519924,0.49952143,0.11070003,0.028483517,-0.39911416,-0.23621632,0.0024903854,-0.121966,0.24084704,0.19515392,-0.7395548,0.40496096,0.25834906,-0.431241,-0.67243457,0.64418125,0.13239102,-0.25951764,0.008005286,0.32540667,0.17576183,-0.0733594,-0.4540696,0.04985175,-0.5907179,0.2382696,0.3424628,0.12721263,0.2239689,-0.19787648,-0.17124526,-0.83884776,0.030230077,-0.3507003,-0.3026393,0.17098196,0.13392812,0.19522049,0.10058344,-0.045142688,0.18524638,-0.5638335,0.122692235,-0.07092737,-0.14876674,0.25748882,0.27687892,0.4092654,-0.54319745,0.55490315,-0.021806758,-0.13287821,-0.0048938077,0.09282429,0.4439768,0.3485668,0.36188632,0.13108188,-0.20068772,0.27477315,0.66957587,0.4031825,0.39643037,0.040004212,-0.3587357,0.03869435,0.029965715,0.16529351,0.20242946,-0.37089258,-0.19400647,-0.14659858,0.20720425,0.519039,-0.029634573,0.4368588,-0.13769016,-0.18292926,0.11948177,0.2191535,0.0023067317,-1.0730051,0.40063757,0.33658057,0.70872533,0.4536028,-0.019508313,-0.13017659,0.5392215,-0.2789858,0.23399618,0.30508435,-0.034888744,-0.5319405,0.5554951,-0.52460515,0.43126577,-0.07062997,-0.024087708,0.092453435,-0.024552306,0.28423887,0.89764047,0.021093901,0.20296624,0.1869266,-0.39646897,0.09613838,-0.24882384,0.107956015,-0.46772784,-0.16634327,0.72608924,0.37249956,0.24313341,-0.07644586,-0.030531203,0.13213055,-0.1445951,0.053327646,0.062663816,0.42799333,-0.07962563,-0.6518937,-0.3171948,0.47570992,-0.113044366,0.16053562,0.25423092,-0.39161465,0.3636828,-0.22860675,0.03811916,0.061663505,-0.58148915,0.033145484,-0.11805633,-0.37953243,0.59787184,-0.10637976,0.21603896,0.10846833,0.13577227,-0.32398352,0.26825005,0.070495635,0.63529754,-0.10847462,-0.25046727,-0.31289274,0.092558146,0.29145196,-0.25242022,0.043577645,-0.23626135,-0.003848056,-0.61423784,0.39650375,0.12665695,-0.073894374,-0.13717426,0.1046315,0.06648542,0.44681728,0.055009,-0.06922032,0.045279972,0.21128422,-0.22689693,-0.14601181,-0.22975942,0.18553384,0.35350913,-0.039020505,-0.15990856,0.08913011,0.030842697,0.4812018,-0.15459877,0.38636965,0.4766929,0.2853342,-0.37152308,-0.24918582,0.2944609,0.41271394,-0.02277902,0.056912854,-0.2720784,-0.38398078,-0.31538138,0.15782811,-0.2366646,0.14257704,0.27718243,-0.18036982,0.6834367,-0.020930227,1.321064,0.13033696,-0.41614312,0.223445,0.3975464,0.06912168,0.081288464,-0.33731925,1.1169002,0.541387,0.00088202057,-0.15869106,-0.33565292,-0.05168151,0.14834143,-0.17722674,-0.3107977,0.044708166,-0.5098161,-0.42654908,0.12454483,0.18673533,0.15651561,-0.065842636,0.30261716,0.24966846,0.11531162,0.46921977,-0.6026525,-0.3634028,0.29634494,0.3191298,-0.040731683,0.22788592,-0.46920884,0.3451471,-0.5416718,0.011872097,-0.26762974,0.18894038,-0.1120278,-0.31432602,0.24461743,0.23924668,0.35809168,-0.32351205,-0.4755888,-0.28846204,0.619771,0.112959765,0.17373848,0.5647181,-0.24049756,-0.06911313,-0.014983797,0.50030327,1.1095904,-0.23583731,-0.045192193,0.5206373,-0.30141523,-0.7519061,0.2565914,-0.24619992,0.25623655,-0.12827393,-0.2555648,-0.6087029,0.44764826,0.16226043,-0.07491754,0.1825065,-0.32366318,-0.049188197,0.3086954,-0.30193633,-0.30709544,-0.36927587,0.3113519,0.64505833,-0.47780216,-0.27782646,0.21977885,0.14580446,-0.17567705,-0.5173274,-0.06976864,-0.3732953,0.30306277,0.31188756,-0.23717336,-0.20962796,-0.051612202,-0.29089946,0.3115217,0.38155353,-0.31854364,0.07758602,-0.36817142,-0.2050538,0.88113856,-0.12708473,0.08440583,-0.58754224,-0.42112854,-0.8189115,-0.6440896,0.32537752,0.112173654,-0.0058540157,-0.70528394,0.07570149,-0.019557452,-0.21129689,-0.012465696,-0.25775355,0.42343086,0.0793691,0.18283042,-0.048386943,-0.83769566,0.0069286823,0.2330478,-0.13363433,-0.5030223,0.36354294,-0.25824058,1.0536879,0.19862957,0.17924565,0.501487,-0.44821283,-0.040065493,-0.37278283,-0.04989511,-0.6222198,0.12760171 -144,0.4380184,-0.5244708,-0.3714337,-0.14551939,-0.104496635,0.06278337,-0.23785271,0.2630169,0.121519946,-0.37537834,-0.026589304,-0.19831927,0.17863555,0.5944767,-0.11280395,-0.810619,-0.031063898,0.04176442,-0.5703939,0.5612684,-0.49063063,0.19891082,0.08107344,0.38599873,0.015799042,0.2671892,0.3559983,-0.13867894,-0.14803047,0.10114123,-0.16701403,0.103152715,-0.5247096,-0.010728613,0.060155857,-0.21787523,0.12845571,-0.3024156,-0.45963764,-0.7040898,0.24476862,-0.881947,0.4183381,0.0599359,-0.32755202,0.30770415,-0.0551485,0.37784103,-0.5102579,-0.062310286,0.08616821,-0.21003477,-0.042259116,-0.30894113,-0.109331734,-0.47533208,-0.45357633,0.007556302,-0.60236424,-0.16422963,-0.25279152,0.010508138,-0.38696095,-0.010469382,-0.054719295,0.30086684,-0.5680842,-0.18983494,0.3028645,-0.15122962,0.3484388,-0.36919257,-0.070233,-0.120384865,0.14756225,-0.020554798,-0.1604938,0.25798526,0.29800954,0.49680743,0.04371277,-0.24788578,-0.21615109,-0.05788539,0.31437987,0.52031595,-0.017623289,-0.6569281,-0.21339737,0.025985228,0.030449528,0.01384828,-0.02013582,-0.32981637,0.037064064,0.22438066,-0.2733505,0.34759307,0.5137231,-0.35378274,-0.26081055,0.32739812,0.54307735,0.16508473,0.02896572,-0.05498623,0.0909706,-0.36837965,-0.14005062,0.3785283,-0.261349,0.50480884,-0.17103387,0.28296968,0.6130292,-0.22282852,0.26576963,-0.114581704,-0.03692762,-0.24149516,-0.029339824,-0.1265801,0.10924644,-0.55176073,0.058849838,-0.26728845,0.8440568,0.35116312,-0.52181923,0.5425784,-0.5082804,0.303672,-0.17375715,0.5859366,0.70852166,0.25095734,0.29571754,0.6384983,-0.4439619,0.11048066,-0.1289493,-0.45996985,0.14092734,-0.27438036,0.03214298,-0.45800257,-0.0024111953,-0.03697272,-0.06339203,-0.06524737,0.3073895,-0.5928001,0.05990022,-0.033213258,0.8130001,-0.33905864,0.110863045,0.6136113,0.89056766,0.7938014,0.11866488,1.2532417,0.59019893,-0.29464212,0.19043215,-0.33447078,-0.76328915,0.27461204,0.5119892,-0.09292307,0.47290665,0.00036347765,-0.13380055,0.42789087,-0.39553624,0.11248279,-0.31824383,0.34729332,-0.09813203,-0.0063659996,-0.55045205,-0.11286049,-0.17568247,-0.023293087,0.053003646,0.33688346,-0.14662501,0.33370194,-0.06605012,1.7109767,-0.12136384,0.091458164,-0.062141526,0.4996092,0.3131888,-0.0048978264,-0.12263703,0.41625762,0.40243718,0.09416352,-0.7503409,0.12154923,-0.3457029,-0.38081387,-0.20877804,-0.26535472,0.2743487,-0.077918686,-0.29825267,0.038694523,0.1388879,-0.25482756,0.3666315,-2.4057517,-0.3286814,-0.29873776,0.35323575,-0.46287006,-0.27372473,-0.08958669,-0.3716707,0.42410666,0.39216232,0.49008125,-0.74133396,0.29850706,0.38448176,-0.37101296,0.018286517,-0.54558486,-0.15770468,-0.0974281,0.45282486,-0.028519059,-0.14852473,0.022239689,0.21680959,0.39212814,-0.1759984,0.027840497,0.12657443,0.36816806,0.1462719,0.34103638,0.026351914,0.50406545,-0.36377996,-0.09906672,0.36037114,-0.16973932,0.36865467,-0.101007454,0.2430838,0.35827142,-0.49666867,-0.8431958,-0.5869628,-0.4051338,1.1848663,-0.41259548,-0.44539407,0.18875694,0.00685943,-0.07877129,-0.030432966,0.3466262,-0.09323771,-0.102343865,-0.86165345,0.23956224,0.05880242,0.2167195,0.15377334,0.13959993,-0.16687045,0.6858174,-0.16258503,0.3019934,0.26414725,0.3419221,-0.0006434449,-0.49389243,0.11116948,0.8078003,0.39077178,0.10432356,-0.21009775,-0.27918148,-0.14969864,-0.10111045,-0.028466675,0.40108055,0.9055165,-0.025281211,-0.053851027,0.27536336,-0.11417886,0.024572577,-0.15938345,-0.3412559,0.031053292,0.033193372,0.6336385,0.53735465,-0.19427927,0.5616417,-0.113157235,0.2773024,-0.06053278,-0.43550164,0.6293822,1.0147415,-0.18415746,-0.083119765,0.48436937,0.50598705,-0.5033888,0.407806,-0.7830035,-0.2831863,0.54471564,-0.24894372,-0.4262815,0.30549362,-0.31723174,0.17125455,-0.981295,0.3384768,-0.19766082,-0.2366936,-0.57056946,0.07664233,-3.9049318,0.15784554,-0.318924,-0.23200038,-0.12818465,-0.047600776,0.2882399,-0.6899964,-0.45223883,0.3228154,0.029313603,0.612604,0.019929452,0.187936,-0.30048725,-0.065993294,-0.19827972,0.05194444,0.103852525,0.20842192,-0.08663925,-0.5228101,0.060608387,-0.20954718,-0.41864628,0.23838495,-0.6248616,-0.5821582,-0.3134714,-0.6223625,-0.19298758,0.62511843,-0.10165374,-0.029470881,-0.23661457,0.04374916,-0.22844873,0.4419237,0.22124214,0.16359034,0.043205287,-0.013067769,-0.094064966,-0.41026586,0.19833599,0.19087707,0.17123197,0.2957128,-0.124641165,0.17015728,0.5920147,0.56955034,0.015325581,0.6049342,0.50394684,-0.17541888,0.41166312,-0.34901005,-0.29149726,-0.4608048,-0.48952,-0.120147385,-0.284522,-0.4864308,-0.26302174,-0.23414595,-0.6726306,0.5550174,0.044807516,0.22164086,-0.086756825,0.22851385,0.57332283,-0.14568993,-0.04124574,-0.015747799,-0.17904417,-0.6304618,-0.16784208,-0.6480223,-0.4429538,0.34191838,0.70589596,-0.2038552,-0.17556262,-0.16236416,-0.30415767,-0.021243135,-0.086297736,0.09843693,0.27276897,0.23375747,-0.11640417,-0.68741643,0.54273504,0.015878482,-0.2615977,-0.6153241,0.123991325,0.76005113,-0.7192193,0.39843968,0.27239865,0.07404669,0.035976578,-0.37806344,-0.22760513,0.18748225,-0.12202884,0.3056168,0.12073497,-0.61896867,0.44086537,0.39069977,-0.24671376,-0.72144943,0.4229409,0.13066946,-0.25977415,0.00465994,0.32311106,-0.014496916,0.15992527,-0.42655018,0.14177847,-0.48427922,0.16523202,0.41069752,-0.0404071,0.37150997,-0.075194724,-0.18135782,-0.6532608,-0.041484177,-0.5140129,-0.20479257,0.2838812,0.11891061,0.09904442,-0.061994545,0.031854536,0.40240297,-0.41900215,0.012259864,0.15697543,-0.28152058,0.3637066,0.52513885,0.287193,-0.3265092,0.6873578,0.07111678,-0.1215533,-0.1338745,-0.006544675,0.4616796,0.29524675,0.2910564,0.09496367,-0.097219266,0.3816778,0.9637272,0.071675524,0.53174245,0.23228426,-0.1389232,0.30311498,0.23126408,0.09867994,0.07990355,-0.17330904,0.05269465,0.21565716,0.18566203,0.46412042,0.21989433,0.35513252,-0.048476867,-0.3504538,0.04828859,0.16285452,0.07964746,-1.1669195,0.30756038,0.25855395,0.6093146,0.36525753,-0.08226415,0.04417793,0.5818324,-0.2667912,0.08820636,0.1694629,-0.16180836,-0.674398,0.6201835,-0.62160504,0.29391223,-0.1587485,0.021832677,-0.024455981,0.12815751,0.37039062,0.76242447,-0.15052478,-0.0064308983,-0.22378714,-0.29800266,0.1288217,-0.38314694,0.061170693,-0.49142593,-0.4807652,0.43183804,0.3992483,0.29077414,-0.15717031,0.001110675,0.061442953,-0.096691884,0.3426017,-0.015553711,0.058089368,0.04526892,-0.78353053,-0.44588736,0.476213,0.07650048,0.18245889,-0.15674722,-0.063970946,0.2257168,-0.18567073,-0.17606594,-0.03505257,-0.7470565,-0.013862943,-0.3761467,-0.4589672,0.4108447,-0.25050956,0.31804505,0.20366146,-0.035604022,-0.40351078,0.23991756,0.08849684,0.90712184,0.029932993,-0.30462295,-0.5425326,0.11415917,0.19067176,-0.15598433,0.007984349,-0.28424826,-0.0904149,-0.5854382,0.60660946,-0.15182273,-0.2903008,0.10077155,-0.28651634,-0.025153194,0.5431351,-0.31584743,-0.26950002,-0.17125042,-0.20054033,-0.3381061,-0.33413145,-0.15587865,0.20253262,0.27591237,0.030621668,-0.009926758,0.021460574,-0.06947129,0.6657912,0.19364718,0.257353,0.33350548,0.15181689,-0.2707922,-0.18467234,0.29754615,0.40367252,0.109293595,-0.1470137,-0.29617167,-0.43366104,-0.35628405,-0.13323312,-0.28082603,0.21208814,-0.007196341,-0.44767728,0.77688134,0.09528633,1.1923639,-0.0031028304,-0.2995455,0.13490215,0.4210622,0.046562653,-0.045427006,-0.4125525,0.8009104,0.57463884,0.060805682,-0.20140566,-0.46300226,-0.3484729,0.31881067,-0.24754235,0.032675173,0.03608056,-0.69752795,-0.3626766,0.2725298,0.23479673,0.006139521,-0.018271234,0.14533423,0.06776482,0.053843,0.38676852,-0.6114268,-0.17534575,0.32582387,0.12540717,0.079172544,0.09314353,-0.3443444,0.44130236,-0.5089932,0.09755026,-0.3136503,0.07694372,0.02617876,-0.2949219,0.272695,0.020169659,0.40752158,-0.41892114,-0.32939744,-0.22294644,0.63960415,0.14384751,0.08757179,0.5745845,-0.30147856,0.1619235,0.2160809,0.53740925,1.091611,-0.27549958,0.1812781,0.28102022,-0.36440334,-0.7544214,0.44088355,-0.07125755,0.3190703,-0.113014646,-0.33565143,-0.68400764,0.3350182,0.20456733,0.013299899,0.038443953,-0.48135743,-0.24841739,0.3980091,-0.37377977,-0.23091434,-0.34971958,0.19801562,0.5716319,-0.3739751,-0.2617832,0.17613114,0.26969522,-0.26999372,-0.4040766,-0.2743442,-0.24995668,0.22151121,0.17547831,-0.23809078,0.09091455,0.21540353,-0.4284777,0.09629988,0.07329851,-0.40283376,0.11266617,-0.09695713,-0.116242446,0.9397566,-0.31680447,-0.067593396,-0.9449107,-0.50948066,-0.8683702,-0.38415647,0.8255555,0.08234132,0.17962506,-0.638238,0.17137136,0.14001141,0.17005767,-0.024793562,-0.5634487,0.40514776,0.07432278,0.3829244,0.057527278,-0.7135052,0.13258764,0.13465215,-0.29340643,-0.6745706,0.49631336,-0.22378843,0.7495342,0.015182662,0.086378254,0.27312186,-0.39863682,-0.14753601,-0.3290651,-0.3468201,-0.735727,0.15168557 -145,0.7351264,-0.33197418,-0.85132366,-0.13948704,-0.26447856,-0.16950886,-0.30533206,0.6950955,0.3010975,-0.6473375,-0.095851,-0.11517306,-0.0866605,0.39683995,-0.4051246,-0.80916655,0.0063876314,-0.0014484662,-0.4873166,0.4469131,-0.5222732,0.432545,-0.060236115,0.56598157,0.4437452,0.23549601,0.015141606,0.084707335,-0.18449743,-0.14805013,0.15766612,0.15435989,-0.67749435,-0.13096507,-0.28346628,-0.7660477,-0.17923898,-0.47025797,-0.4418942,-0.99101025,0.4835548,-1.0242445,0.65777177,0.062865004,-0.37782124,0.08889119,0.2488971,0.46811956,-0.25123423,0.027040247,0.04635485,-0.02454764,0.0066821715,-0.0317981,-0.4290923,-0.40433672,-0.6960849,0.024208695,-0.52839905,-0.06957965,-0.18274024,0.1386264,-0.39209735,0.15629734,-0.019545753,0.5179319,-0.43463644,-0.15130718,0.41284275,0.08732242,0.36447063,-0.74188143,-0.37230974,-0.21325707,0.29141247,-0.2831168,-0.26537523,0.36609858,0.30834213,0.5035148,-0.07802134,-0.21630344,-0.38406438,0.10170047,0.018460186,0.35989395,-0.32509768,-0.48667654,-0.3391092,-0.08078126,0.5981549,0.48158422,0.43134314,-0.16463925,0.0030396213,0.1763156,-0.34697917,0.68672824,0.5876861,-0.30801788,-0.03252885,0.15537748,0.44827646,0.3190128,-0.2870919,0.0672115,0.09582089,-0.73333067,-0.21030608,0.07550807,-0.10251513,0.59366935,-0.13443509,0.29220796,0.6168035,-0.43721154,0.0848862,0.1872223,-0.020846635,-0.26923817,-0.45102835,-0.44024006,0.3298949,-0.56665313,0.21139285,-0.4284215,0.768736,0.23981735,-0.7151225,0.25683722,-0.7839137,0.23736858,-0.17007047,0.39442205,0.77755475,0.45916107,0.26478767,0.6926955,-0.45904133,-0.02072398,0.012174928,-0.19729735,0.13771512,-0.36139706,0.04430183,-0.41728646,-0.09207989,-0.07420762,-0.09631973,0.40561864,0.7538144,-0.5595003,-0.27242166,0.0004662046,0.78547436,-0.2592203,-0.06896544,0.96136546,1.0173252,1.0748773,0.08332141,1.3259645,0.37747177,-0.19237182,0.18607102,-0.012282986,-0.8296906,0.45314553,0.25513762,-1.0219055,0.5244308,0.010587179,-0.18361138,0.53958166,-0.28965896,0.09352292,0.006659659,0.19108495,0.03987565,-0.32644013,-0.3714082,-0.27608475,-0.1133693,-0.06667379,0.11451706,0.3059653,-0.16645153,0.4607517,-0.03954435,1.4037197,-0.074976094,0.057931546,0.020296812,0.46489257,0.29848087,-0.21662052,0.0028883035,-0.031060457,0.33718106,0.23911381,-0.6905346,-0.014694909,-0.29063112,-0.4218639,-0.2412997,-0.37025207,-0.24910656,-0.20554803,-0.70405763,-0.11118043,-0.28051618,-0.065964,0.33693507,-2.1969187,-0.44289568,-0.22934826,0.37100518,-0.26352993,-0.5888642,-0.16289352,-0.50930244,0.65524584,0.25585124,0.470202,-0.6973658,0.48101684,0.5529206,-0.5391818,0.04614554,-0.70794976,-0.3015419,0.041441258,0.07752542,-0.114434,-0.23933871,0.19201246,0.275826,0.41834685,-0.023236949,-0.052291457,0.100575045,0.6090508,-0.20625576,0.76831234,-0.078425184,0.5655469,-0.546138,-0.2904971,0.43289456,-0.56156486,0.10081458,-0.016144,0.15492591,0.61815,-0.64297205,-1.08159,-0.66778433,-0.04623182,1.0527174,-0.049141984,-0.5178309,0.24299297,-0.5579582,-0.27342066,-0.1511692,0.5629324,-0.057558205,0.11727465,-1.0300425,-0.045977972,-0.23080245,-0.044697206,-0.013832297,0.055760972,-0.34736457,0.69817555,-0.02186505,0.46187437,0.422051,0.1729189,-0.424233,-0.603801,0.14798278,0.93348736,0.46038422,0.24987791,-0.42710117,-0.08876231,-0.61820483,0.1257627,0.12130899,0.4070263,0.795503,-0.03147445,0.18096964,0.35359114,0.01245903,0.12593836,-0.17829067,-0.47967273,-0.32707766,-0.051122345,0.6657892,0.8419923,-0.15674241,0.49236685,0.052003283,0.40650892,-0.33188516,-0.415958,0.7090791,1.206066,-0.18148372,-0.40740493,0.71102893,0.48449624,-0.42519486,0.6035099,-0.6170132,-0.43492782,0.39146453,-0.103850536,-0.4169738,0.26145914,-0.5093826,0.15942127,-1.1072421,0.14899005,-0.51097053,0.06409181,-0.6429589,-0.20719132,-3.3792245,0.43073294,-0.22499722,-0.060531523,-0.31198433,-0.27459157,0.37182638,-0.7514579,-0.88162714,0.20411794,0.027675457,0.9430475,-0.17828332,0.14958864,-0.12752512,-0.43578583,-0.3390115,0.017008293,0.34882244,0.33310902,0.15240642,-0.5651868,-0.1719148,-0.15453196,-0.54199415,0.0799357,-0.534933,-0.61213356,-0.14308801,-0.5840176,-0.3618613,0.8006176,-0.19927436,-0.0011876455,-0.06874926,-0.0038513748,-0.14371327,0.47213548,-0.021095982,0.22045158,0.07044694,-0.11863323,0.16793896,-0.2838802,0.059513092,0.10030287,0.2829085,0.23815061,-0.3318456,0.32152778,0.56402117,0.96519554,0.0097193355,0.98532844,0.39341018,-0.019354071,0.39888352,-0.28131992,-0.5057657,-0.64210427,-0.19152077,-0.06294401,-0.36650625,-0.34064925,-0.01089561,-0.51562524,-0.73336375,0.7289075,-0.047533114,0.24735667,-0.0674593,0.3103297,0.46865776,-0.1652616,-0.13632317,-0.079207584,-0.11391,-0.52555794,-0.29888064,-0.6615231,-0.51602995,0.05743993,1.1388993,-0.20593913,0.012140636,0.25028834,-0.17473355,0.11595218,0.24620111,0.053768154,-0.053661026,0.51875746,0.03563749,-0.70284504,0.30517125,-0.17800426,-0.30482203,-0.789586,0.05042605,0.77237505,-0.6901782,0.5446956,0.5516587,-0.001388449,-0.02820855,-0.55305004,0.033964243,0.20228828,-0.26556176,0.50779235,0.44040835,-0.7573189,0.48746812,0.51480526,-0.20934336,-0.6525307,0.7872481,0.14064382,-0.30231127,-0.3506012,0.441589,0.32798645,0.16011228,-0.03304016,0.16922252,-0.45115048,0.17728248,0.27969712,-0.08068915,0.3273209,-0.019813074,-0.15563574,-0.7887531,0.18114156,-0.579329,-0.26897976,0.42990258,-0.18939008,0.26967683,0.16942021,0.21191527,0.23867787,-0.38755777,-0.00038615556,-0.27426293,-0.34861624,0.51239425,0.5595094,0.5928143,-0.48000142,0.6471479,0.11386706,-0.017695496,0.3765225,0.046793863,0.5509378,-0.025508724,0.46385667,0.20911275,-0.29933992,0.06092221,0.795164,0.14070132,0.42731795,0.29290518,0.0059984922,-0.036389258,0.28197455,0.033726767,-0.05552105,-0.52043337,-0.08796266,-0.15007596,0.16932566,0.67512786,0.06176063,0.2921703,-0.14927539,-0.371458,-0.0099695325,0.1449866,-0.20327125,-1.6570505,0.3944343,0.1429238,0.84427613,0.48675343,0.04227539,0.026770573,0.43217432,-0.076517746,0.12601863,0.5284657,0.13537744,-0.35461628,0.6148704,-0.5606846,0.6211536,-0.08791459,0.1768377,-0.14331037,0.08989979,0.6580123,0.7879703,-0.08356297,0.08879643,0.23813699,-0.43604586,0.09331347,-0.4517259,-0.16231672,-0.44853467,0.015826674,0.9143702,0.52178544,0.42317316,-0.30696726,-0.0006076464,0.1928148,-0.17475528,0.1187668,-0.09477259,0.08270386,-0.15559672,-0.68304795,-0.09250045,0.5694282,0.22873163,0.23545898,0.058642354,-0.36589998,0.30904898,-0.09220279,0.13427883,-0.06080977,-0.92637104,-0.14334303,-0.7787436,-0.6024717,0.4106674,-0.0011806121,0.20113534,0.38291806,0.1404286,-0.3412622,0.3776395,-0.11613813,0.7731168,-0.32746962,-0.2269581,-0.41331068,0.2814674,0.44056517,-0.39098004,-0.15071903,-0.24751297,0.32085848,-0.37731346,0.57391274,-0.050812535,-0.26988295,-0.048339136,0.02210527,0.014747626,0.4574035,-0.55699867,-0.020934949,0.10142756,-0.056896467,-0.24039358,-0.40453687,-0.11613643,0.18672696,0.24525703,-0.021396045,-0.14780897,-0.19663262,0.17234601,0.47930336,-0.06932815,0.38069004,0.74117124,0.24125177,-0.31265986,-0.24647419,0.39897302,0.71668786,-0.16443887,-0.35528454,-0.70079464,-0.6461101,-0.34686762,0.51544327,-0.044912867,0.26594794,0.10359227,-0.4513199,0.9020165,0.1254817,1.0977824,-0.023385385,-0.49263048,0.029255133,0.43044296,-0.15916716,-0.23723768,-0.33626965,0.9632807,0.46930307,-0.42691165,-0.28651252,-0.5656158,0.06217059,0.03115813,-0.3416416,-0.15603279,-0.10092291,-0.642251,-0.25650242,0.32664612,0.33373767,0.12550408,-0.29990342,0.38561293,0.36214393,0.060576998,0.31646708,-0.66374326,-0.23644637,0.19241945,0.42692745,-0.08088794,0.19327453,-0.49759275,0.27846652,-0.5938668,-0.016831614,-0.5105411,0.24272798,0.05863241,-0.4041993,0.23312695,0.04406381,0.3636813,-0.48241436,-0.21289039,-0.3035198,0.52242315,0.066075824,0.15123364,0.60249877,-0.2810801,-0.048672795,-0.03168557,0.72442216,1.4129715,-0.07360501,-0.07862575,0.3556285,-0.30993304,-0.6488835,0.23078002,-0.5554078,0.4668667,-0.052605495,-0.16326918,-0.82018197,0.2658067,0.31410944,0.078512594,0.121655375,-0.6986516,-0.4530718,0.3687558,-0.36704046,-0.26305893,-0.38706562,-0.10613013,0.48229975,-0.22916484,-0.07076716,0.08476067,0.40777984,-0.023231877,-0.4194077,-0.055190526,-0.37318882,0.33721912,0.15327303,-0.23833528,-0.03325568,0.046330843,-0.5211259,0.24880688,0.22520557,-0.44813523,-0.05584989,-0.3077026,-0.16829015,1.0762689,-0.2245417,0.3651292,-0.36331046,-0.5479435,-0.83843845,-0.3649134,0.3418808,0.19061655,0.11359421,-0.81361806,0.12747194,-0.06908325,-0.14353703,0.06194177,-0.23923379,0.49731642,0.13752092,0.5899937,0.013853633,-0.65064615,-0.006466205,0.1274893,-0.4461867,-0.5160679,0.66939443,-0.0444871,0.98198056,0.19095984,0.12698518,0.27615082,-0.4735935,-0.052386623,-0.20281918,-0.22465545,-0.7929392,-0.07610339 -146,0.3699492,-0.275952,-0.40616563,-0.2005332,-0.19635622,0.044087514,-0.24760331,0.28301272,0.0815438,-0.21149454,0.14548141,-0.12566207,-0.005876259,0.37343916,-0.11921372,-0.69502205,0.058339316,-0.05985694,-0.5953142,0.622943,-0.5183297,0.37155494,-0.014162485,0.23071623,0.20835285,0.23007372,0.27907905,-0.16194871,0.08516929,-0.11722055,0.029305728,0.13941263,-0.52391154,0.067240685,0.0006125828,-0.2288563,0.18044814,-0.35273603,-0.45872936,-0.66436195,0.37086192,-0.6883004,0.36976293,0.038366366,-0.30784005,0.41107714,0.13173178,0.16306193,-0.4680112,0.12389055,0.26425222,0.05853866,-0.13458565,-0.019821556,-0.08263939,-0.4869028,-0.48230255,-0.03454487,-0.6205867,-0.31722698,-0.30131721,0.08658641,-0.45649898,-0.031746738,-0.13672216,0.36738002,-0.5186835,-0.17112793,0.17174414,-0.06556034,0.10115418,-0.6763801,-0.121105,-0.072958134,0.11770563,0.00024051666,-0.07718911,0.35882074,0.077806205,0.44329616,0.0020507337,-0.20291306,-0.11644185,-0.209924,0.07203374,0.5078478,-0.014298676,-0.47729784,-0.049987093,0.07104866,0.036595367,0.09159141,0.06299293,-0.3765753,-0.08245231,0.1312087,-0.31215155,0.42894152,0.51192725,-0.47732595,-0.25474185,0.36978802,0.27312288,0.24240543,-0.106489256,0.04094305,-0.022421423,-0.4519733,-0.19942349,0.07368458,-0.18380834,0.3505203,-0.14411178,0.30683613,0.6264971,-0.26321477,0.25417534,-0.21485431,-0.014168585,-0.0320405,-0.22418404,-0.23351245,0.05819885,-0.54154,0.17785892,-0.18987049,0.8204201,0.25190437,-0.5251221,0.42748302,-0.50644916,0.23734097,-0.26640457,0.52413094,0.69419616,0.18666169,0.188183,0.63716495,-0.36708266,0.0107239885,-0.18300287,-0.29988128,0.035561547,-0.06506116,0.04390637,-0.4220092,0.007537556,-0.025655985,0.027924633,-0.15602382,0.33194983,-0.3365928,-0.1298506,0.17957264,0.7691952,-0.32906246,0.07538285,0.46677577,1.1105502,1.1393756,-0.023490362,1.037086,0.401313,-0.14597054,0.16898133,-0.2565089,-0.6723376,0.18863559,0.48337987,0.3737612,0.19453147,-0.048110906,-0.18157434,0.3383834,-0.30254975,0.101985045,-0.19237943,0.35674363,0.20539497,-0.010367755,-0.28156742,-0.20162551,-0.025920248,0.050793204,-0.04382495,0.2267304,-0.25440487,0.025370734,-0.016722435,1.4935722,-0.13713409,0.030752541,0.11752718,0.59031093,0.3092307,-0.1597959,0.035489574,0.32659906,0.43161643,-0.005395758,-0.77238655,0.09454927,-0.36239627,-0.53047365,-0.10735701,-0.43720537,-0.077266,0.07477452,-0.5640192,-0.104956284,0.0896189,-0.042565588,0.35285404,-2.8191211,-0.21138777,-0.17578754,0.22706294,-0.3694913,-0.15967256,-0.04011829,-0.39847967,0.39687547,0.38664073,0.40108737,-0.51016265,0.40928832,0.44286925,-0.3371971,0.0019453525,-0.59455174,-0.16101068,-0.12860963,0.40292835,-0.14189486,-0.048201337,-0.030186953,0.31934682,0.40832424,0.12195576,0.14631078,0.20820932,0.42270547,-0.08489507,0.51321524,0.034553085,0.42667618,-0.30677712,0.03103177,0.24777564,-0.15732701,0.41182855,-0.24452704,0.14059542,0.37963995,-0.32493725,-0.81825924,-0.40527096,-0.1434124,1.2813154,-0.3542588,-0.41260764,0.45857683,-0.15934154,0.043403342,-0.12329151,0.3296569,-0.12958108,-0.1892955,-0.65172935,0.2806636,-0.16858958,0.028447725,-0.05146761,0.04142769,-0.333307,0.70511764,0.0017081122,0.45019785,0.22712955,0.24999163,-0.04886314,-0.36490855,0.04605735,0.75787,0.4577381,-0.019814169,-0.14367189,-0.121524066,-0.10725974,-0.26468262,0.073394105,0.45843267,0.7707419,-0.010423724,0.13514343,0.19841139,-0.15982011,0.02557383,-0.16703454,-0.25736216,-0.013978209,0.12885256,0.5382896,0.41304722,-0.15540546,0.3768457,-0.0273593,0.14523643,-0.09548697,-0.45124775,0.49266183,0.8952381,-0.09928851,-0.12280755,0.50897115,0.43486068,-0.20540756,0.40947622,-0.5604467,-0.25514778,0.661362,-0.31981906,-0.27282456,0.24082823,-0.32400945,-0.06345952,-0.6863243,0.25965828,-0.18224218,-0.1205844,-0.384576,-0.3622621,-3.4840307,0.07736845,-0.3165446,-0.15718381,-0.19541143,-0.08699347,0.32294223,-0.5523767,-0.47995156,0.2397046,0.03975918,0.58637583,0.027819643,0.18685175,-0.20253976,-0.1219318,-0.33336723,0.1662557,-0.08306922,0.29580173,0.10768004,-0.34924588,0.040133435,-0.07366478,-0.38076097,0.0724328,-0.33375937,-0.33378655,-0.08014056,-0.41154596,-0.15321928,0.62919647,0.08318231,0.019362746,-0.088782094,-0.124201626,-0.2289946,0.21169883,0.35362902,0.16175763,-0.10838069,-0.013704706,-0.05997766,-0.438438,0.16041018,0.076216035,0.3221946,0.28163528,0.061344266,-0.018730847,0.40905628,0.28821677,-0.18696101,0.6072573,0.39026397,-0.1359844,0.3065001,-0.19307002,-0.2111215,-0.5131436,-0.44298527,-0.0995343,-0.19992383,-0.4872699,-0.21523744,-0.23814084,-0.52821386,0.39682674,-0.06924947,0.31025714,-0.12398529,0.0787549,0.3839127,-0.025075102,-0.07899884,0.13715029,0.00788581,-0.45068482,-0.26937354,-0.6614918,-0.32294163,0.35180643,0.6908362,-0.2154008,-0.28340477,-0.033749692,-0.25699657,0.011869902,-0.16357057,0.09875271,0.26549068,0.2642519,0.06659749,-0.81263924,0.57657665,-0.14092216,0.014484886,-0.48974323,0.07222652,0.57100034,-0.53884053,0.42252052,0.20965837,0.16337821,-0.1294819,-0.567187,-0.21699633,0.19904785,-0.19095628,0.42697853,0.021760374,-0.9249907,0.48359737,0.2680619,-0.3313937,-0.6105358,0.5713164,0.11276663,-0.36189842,0.041981332,0.26551464,0.24966264,-0.0357257,-0.06645271,0.47848412,-0.39427775,0.29765618,0.11777938,-0.06462915,0.42027903,-0.10218152,-0.2011984,-0.44258577,-0.14676686,-0.35269883,-0.27262476,0.123666234,-0.05258749,0.10512693,0.096628174,-0.10338566,0.41023198,-0.25125945,0.17237902,-0.014417617,-0.23171231,0.5720853,0.41092294,0.4607256,-0.3562097,0.6627267,0.04866152,0.0019824624,0.19016589,0.10490843,0.38020623,0.21226306,0.33725327,-0.042119868,-0.10250894,0.3243721,0.9229861,0.20321701,0.41233778,0.20964536,-0.22605184,0.22912434,0.0629473,-0.1577234,-0.023463214,-0.36238882,-0.21021935,0.1050508,0.21508437,0.48396766,0.16670418,0.24581479,-0.12213325,-0.17429398,0.098248355,0.14364955,0.03770562,-0.8592578,0.32250893,0.18219467,0.68566,0.5384306,-0.15987562,0.017134951,0.49306062,-0.16644515,0.0051522334,0.30829823,0.0669087,-0.6186247,0.6367398,-0.34566143,0.48631355,-0.12717606,0.03611494,-0.017440828,0.19187975,0.2157567,0.6427078,-0.10120939,-0.05569188,0.034593813,-0.42467037,0.1275383,-0.26694056,0.048242632,-0.30844897,-0.34972122,0.37143898,0.5290601,0.055705108,-0.063948445,-0.0037682434,0.039918277,-0.15542455,0.08509307,-0.06848659,-0.1406482,-0.09585093,-0.58684915,-0.4471094,0.47490418,-0.06263721,0.14392158,-0.11704251,-0.028818829,0.19582961,-0.1627152,0.02524752,0.025457164,-0.7933866,0.083279625,-0.28476962,-0.46891,0.33567733,-0.29420713,0.22529243,0.15344046,0.0011590143,-0.24625088,0.21112983,-0.026227651,0.66573614,-0.34930435,-0.12210803,-0.45745894,-0.18751007,0.16915934,-0.1965196,-0.04845802,-0.358547,0.009367583,-0.68346626,0.43749097,-0.15973677,-0.23588301,-0.022019727,-0.2457224,-0.00580678,0.5959802,-0.1702364,-0.04557181,-0.11134045,-0.19089365,-0.2995611,-0.24278444,-0.08823899,0.18737262,0.20721494,-0.013781111,-0.13984972,-0.1981904,0.0514219,0.4227592,-0.057254504,0.23850158,0.23460308,0.22946812,-0.2951452,-0.14998646,0.30072367,0.47776857,0.08948124,0.04611505,-0.2778934,-0.37793228,-0.27596447,0.27041593,-0.25728294,0.25250852,0.05296006,-0.5254591,0.60303944,0.1527161,0.9121737,-0.023522113,-0.33059755,0.101587616,0.49126312,-0.037786108,-0.026133766,-0.19394632,0.7266556,0.58160347,-0.00021577279,-0.19494748,-0.34921217,-0.21808931,0.29511565,-0.23937923,-0.15569703,-0.011606906,-0.56171286,-0.20008211,0.19971257,0.17747049,0.057613946,-0.06375068,-0.123578355,0.081674434,0.13399357,0.4934944,-0.69399506,-0.11683848,0.17823538,0.102952376,0.021229377,0.2710332,-0.4372145,0.4172481,-0.63825506,0.23922281,-0.21716675,0.10656742,-0.10154716,-0.09023442,0.21288353,0.14812809,0.38382003,-0.29712045,-0.42177957,-0.1734218,0.5296425,0.1402517,0.20565608,0.54438347,-0.23900113,0.13274331,0.00885168,0.5341152,0.9307105,-0.044773053,-0.088382244,0.21310796,-0.46671757,-0.79500276,0.26597646,-0.2277005,0.093536176,0.039752845,-0.2198555,-0.51081944,0.2688303,0.18029398,0.01778889,0.029081067,-0.56448925,-0.3149285,0.24629827,-0.10091542,-0.3154988,-0.33676082,-0.012166947,0.7429572,-0.35277826,0.021712644,0.0064444146,0.2685469,-0.13722906,-0.64325327,0.03948056,-0.36675367,0.3193279,0.19860007,-0.074174486,-0.08226013,0.1606136,-0.4461839,0.14885542,0.12732951,-0.34858784,-0.0787112,-0.08825586,0.010488419,0.8871378,-0.15829493,0.013043157,-0.71061975,-0.4946965,-0.7637584,-0.4911685,0.5321319,0.091996625,0.1477988,-0.56472355,0.008582259,0.07862789,0.14684,-0.10144337,-0.53052825,0.4011369,0.08820523,0.2903412,-0.024976166,-0.69871014,0.04084339,0.030544555,-0.3204581,-0.42221466,0.55081487,-0.13229315,0.70343906,0.060590465,-0.032782458,0.05230488,-0.3289432,0.052038714,-0.31471118,-0.31712684,-0.6042992,0.20810659 -147,0.529624,-0.016905256,-0.49799135,-0.23126473,-0.27070266,0.35035264,-0.07267062,0.06541452,0.1669803,-0.24528944,-0.0021988004,-0.21235251,-0.018389873,0.33905208,-0.1100589,-0.7341898,-0.08951886,0.092129216,-0.73301095,0.35373628,-0.40339792,0.43832844,0.06005153,0.261636,-4.708208e-05,0.39009857,0.17707816,-0.205072,-0.041987285,0.16858919,-0.11497302,0.13731974,-0.5579972,0.040739886,0.086229704,-0.11663621,0.020932319,-0.30047822,-0.2695712,-0.5479125,0.33324963,-0.6056944,0.5366896,0.009248517,-0.28902632,0.147722,-0.07450763,0.1876085,-0.3877803,0.100402646,0.20587732,-0.30505598,-0.014637165,-0.14745393,-0.27075398,-0.56258094,-0.54485726,0.019643713,-0.6602575,-0.207633,-0.25088003,0.18827194,-0.33313903,-0.060579643,-0.15920982,0.41871452,-0.34781688,0.0821352,0.34798455,-0.2641259,0.04587546,-0.2361317,-0.12985201,-0.1282119,0.33161923,-0.07729132,-0.16779537,0.15971012,0.25334048,0.58132297,0.060662594,-0.33114147,-0.17812023,-0.018508852,0.05008991,0.4525688,-0.1271899,-0.22584704,-0.19283076,-0.07694906,-0.06739712,0.07603863,-0.008808553,-0.40129122,0.010261919,0.12134853,-0.18518755,0.3796512,0.50937897,-0.39191958,-0.26048228,0.35523966,0.55567765,0.100635394,-0.18070902,0.15031482,0.0073602237,-0.482,-0.25221592,0.30120793,-0.05492829,0.51377964,-0.10542594,0.23916732,0.74442166,-0.14881757,-0.0335225,-0.22620295,-0.22470577,-0.043858353,-0.065475546,-0.013767071,0.056169145,-0.3805318,0.011253936,-0.22525707,0.7670102,0.16788502,-0.8045722,0.36059093,-0.52225906,0.17015164,-0.15827543,0.67052,0.8970587,0.23155284,0.06601658,0.8367559,-0.57522666,0.096889,-0.06257847,-0.5249874,0.09378028,-0.07570773,-0.022790298,-0.5578577,-0.012772031,0.055683836,-0.07374498,-0.10420582,0.22339763,-0.49862513,-0.067677975,0.006443072,0.6875905,-0.46223348,-0.22004029,0.6038867,0.91209173,0.8026477,0.110196404,1.1272588,0.4427359,-0.28411108,0.20722489,-0.6110646,-0.51327425,0.13943376,0.3030659,0.321649,0.5187125,0.079557404,0.08738653,0.45239234,-0.11355251,0.17619032,0.04122337,0.10776773,0.06134257,-0.08620094,-0.30504295,-0.13259868,0.07549029,0.009893874,0.1793355,0.24736422,-0.24853209,0.3759166,0.16813178,1.5308039,0.06725018,0.13270926,-0.095291376,0.302928,0.16709161,-0.11472459,-0.1389985,0.4416665,0.3628637,-0.003573738,-0.5966541,0.007770937,-0.25470498,-0.39236078,-0.18570244,-0.40068886,-0.09055845,-0.16578352,-0.42944103,-0.01953599,0.18906625,-0.37834418,0.49559504,-2.5591404,-0.1435469,-0.11351184,0.23585913,-0.25955716,-0.34995425,-0.20151298,-0.4337608,0.034728486,0.42687225,0.24556127,-0.6272781,0.48932934,0.2722091,-0.2597047,-0.16418688,-0.63323724,-0.053962704,-0.09733205,0.2950891,-0.12192565,-0.015883116,-0.115067616,0.32266286,0.5012731,-0.110777244,-0.21532874,0.176501,0.5877575,0.05210498,0.48372787,0.16758628,0.5403888,-0.1640144,-0.16726133,0.32009912,-0.3387305,0.24867278,0.15567291,0.12413629,0.19448414,-0.39763504,-0.8222352,-0.5281048,-0.35008228,1.1987801,-0.38446593,-0.21054155,0.21644713,-0.038942162,-0.22254707,-0.027805358,0.46333125,-0.026955348,-0.09390745,-0.65171075,0.109297246,-0.10917226,0.15796983,-0.07882751,0.16224787,-0.21237652,0.58839613,-0.14112191,0.42924538,0.23911478,0.26446274,-0.017571859,-0.48894835,0.25833395,0.81719744,0.225669,0.10130252,-0.13374203,-0.2276389,-0.13636988,-0.103241585,0.16610743,0.4549713,0.7278181,0.10609101,0.15422033,0.36212525,-0.17467663,0.038619496,-0.121275544,-0.3223197,0.044913564,-0.06319415,0.5889113,0.50830203,-0.23122889,0.47539574,0.02764016,0.14942661,-0.18024586,-0.4406448,0.62719893,0.70956933,-0.1305054,-0.1693054,0.3462991,0.3569413,-0.49628308,0.3015883,-0.56154126,-0.11215614,0.75309104,-0.1754311,-0.33080104,0.23654252,-0.26975226,-0.018117387,-0.9726572,0.29707533,0.1257531,-0.3152323,-0.34336856,-0.20319043,-3.9321141,0.15139246,-0.26127905,-0.08199049,0.071814105,0.029052451,0.24613367,-0.545969,-0.36581543,0.054619387,-0.029492563,0.47658598,-0.06494165,0.2112758,-0.291739,-0.07911375,-0.1995751,0.28840998,0.077980354,0.31280857,-0.051337548,-0.3500531,0.15039042,-0.3420344,-0.49137756,0.0036246479,-0.38201672,-0.54090333,-0.099393055,-0.5188471,-0.17637807,0.77202636,-0.33993468,-0.072226465,-0.33838055,0.056868672,-0.15510768,0.4439438,0.18867204,0.13870932,0.15174255,0.028347895,-0.2126469,-0.4189797,0.217669,0.13026841,0.36685663,0.35795105,0.00040769763,0.21122368,0.59221065,0.6242827,0.02667861,0.573477,0.3805483,-0.13291286,0.4017784,-0.35792315,-0.05860465,-0.6866267,-0.4369772,-0.26217833,-0.41989988,-0.6492093,-0.27523172,-0.25630438,-0.67114997,0.32436883,-0.035494484,0.14559837,-0.08419981,0.27517968,0.3986227,-0.17849493,0.03978266,-0.11252056,-0.28577223,-0.35850772,-0.4197036,-0.48078924,-0.5183672,0.29971874,0.97345555,-0.1382316,-0.09742982,-0.16239782,-0.32669696,-0.08898237,-0.07634879,0.34457988,0.3059823,0.19134744,-0.29328898,-0.6250718,0.46910375,-0.28881052,-0.037911035,-0.6395905,-0.110734686,0.64382845,-0.5767983,0.5603073,0.14834993,0.22583091,0.18776241,-0.4756761,-0.27793735,0.17417069,-0.24467999,0.45621112,-0.0003022477,-0.5734997,0.43319753,0.17235465,-0.06002848,-0.5529283,0.5072259,0.054206006,-0.21823668,0.14573842,0.3395141,0.023073915,-0.121627904,-0.13649946,0.15720236,-0.57364285,0.19330084,0.3718003,0.05034624,0.30767524,0.044955064,-0.20255017,-0.49897882,0.06464225,-0.54397285,-0.30493438,0.030376118,0.1887291,0.31833696,0.101645045,0.018876731,0.43861288,-0.3311448,0.049917772,-0.033030733,-0.23499095,0.2987659,0.46265763,0.28352535,-0.5469109,0.5622189,0.08399238,0.11356567,0.031985253,0.080972224,0.56102973,0.25740322,0.2516634,0.010137102,-0.14766695,0.2445972,0.57503456,0.1975107,0.4364694,0.19136265,-0.27154505,0.32957834,0.17609513,0.064236104,-0.08535774,-0.18420629,-0.0911077,0.15579727,0.31826195,0.4300357,0.05148509,0.34775472,-0.14204356,-0.2061151,0.26628605,0.2210123,-0.21153384,-1.0337484,0.27225468,0.4150039,0.65346724,0.3760607,-0.045052372,0.064805046,0.45442164,-0.45839167,0.14849073,0.34512907,-0.07651637,-0.56655025,0.55050373,-0.49501133,0.5411753,-0.22590643,-0.07264617,0.06384671,0.1321446,0.20618793,1.0131708,-0.06821449,-0.021388266,-0.05829545,-0.2185765,0.032450538,-0.33826643,0.22620478,-0.5709683,-0.24580503,0.56213665,0.38094613,0.27049577,-0.3002388,0.02477885,0.03184417,-0.10893977,0.121602446,-0.1287779,-0.028605971,-0.12443039,-0.70354474,-0.5608754,0.548515,-0.18151027,-0.00036301464,0.052509643,-0.34462392,0.2091918,-0.21041702,-0.019836228,-0.12792033,-0.5955182,-0.016978778,-0.2379663,-0.6198788,0.4246419,-0.30793464,0.3352374,0.17309895,-0.0103880735,-0.44293556,0.31150222,0.14528501,0.7199789,0.068183176,-0.09504913,-0.47738495,0.08232771,0.3322615,-0.27591032,-0.210807,-0.30566943,0.08361827,-0.44971454,0.42427188,-0.10307031,-0.37440035,-0.14530735,-0.14441986,0.009774378,0.43948066,-0.2821159,-0.078261815,0.04903289,-0.033553574,-0.19164744,0.19185269,-0.35265118,0.31685275,0.00714143,-0.1336468,0.021015089,-0.041724674,-0.030792892,0.23844889,0.20586982,0.21611883,0.38820747,-0.039961874,-0.40209818,-0.102367096,0.01591589,0.26164278,0.18220598,-0.057830364,-0.28400034,-0.31710067,-0.28003022,0.33091092,-0.18356779,0.160042,0.09859037,-0.5325334,0.66249275,0.08144536,1.2084689,0.1706422,-0.22875199,0.16498983,0.46292692,0.2209818,0.21158594,-0.48964444,0.7499537,0.5778175,-0.049238153,-0.40736324,-0.25845912,-0.20722565,0.26180273,-0.24806663,-0.20461446,-0.06320117,-0.7089825,-0.22733282,0.1792056,0.108589925,0.13626117,0.1329996,-0.1542723,0.08220285,0.1459122,0.4975777,-0.50613296,-0.16203976,0.3421501,0.12402106,0.023914468,0.26981777,-0.30267465,0.4600029,-0.6364448,0.10868369,-0.45878908,0.08202718,-0.022747623,-0.17900406,0.19018957,0.053514466,0.35436776,-0.19543704,-0.32959965,-0.25509655,0.6561099,0.22389828,0.3213029,0.7624602,-0.22347337,-0.107180476,0.12586407,0.40954003,1.2392414,-0.037273765,0.030140772,0.4029301,-0.29080173,-0.64941484,0.21676138,-0.30125427,0.14792573,-0.14228287,-0.3284822,-0.26659942,0.32818526,0.03164328,-0.013050996,0.11944935,-0.5199355,-0.3266838,0.47021788,-0.28464866,-0.26137415,-0.22568402,0.39053118,0.8145775,-0.46120796,-0.24906248,0.10457486,0.28600535,-0.24431534,-0.51809406,0.12917417,-0.35003287,0.3523405,0.121213466,-0.2899248,0.098478675,0.17565507,-0.38367796,0.24631473,0.45685366,-0.39891517,0.037330512,-0.051697895,-0.2809777,0.91675764,0.08286926,0.0044254214,-0.6701215,-0.46846417,-1.0200611,-0.56540775,0.2677169,0.15083703,-0.1304051,-0.48490122,-0.07656465,0.038199108,-0.07590415,0.13417107,-0.5630209,0.34798163,0.13248932,0.4802321,-0.027423918,-0.89657414,-0.13021415,0.08151014,-0.33441123,-0.7288115,0.58167285,-0.23965524,0.66104454,-0.017332762,0.03987781,0.20961721,-0.4920558,0.18771274,-0.40708023,-0.15917759,-0.739905,0.08824521 -148,0.35667002,0.037087303,-0.6473647,-0.1312353,-0.21143143,0.045299992,-0.23989041,0.47891062,0.30627888,-0.35258496,0.112414874,-0.07129801,0.034042917,0.57457864,-0.23073079,-0.59827155,0.21948291,0.058466733,-0.59922385,0.33357388,-0.43289092,0.2924381,-0.11354563,0.3764731,0.13762444,0.20034729,0.04587025,-0.021677095,-0.021579636,-0.16661301,-0.19035593,0.1984361,-0.42718986,0.017960755,-0.14476047,-0.29504248,0.0005483742,-0.60589284,-0.498966,-0.6521529,0.35069898,-0.8588559,0.75001425,0.113576025,-0.18900491,0.26950562,0.22363938,0.33966255,-0.09140463,-0.02760557,0.038697485,-0.29494974,-0.14710198,-0.16133817,-0.5549871,-0.527882,-0.6615094,-0.02871076,-0.6637287,-0.13292016,-0.25033447,0.15450934,-0.38032097,-0.00041689322,-0.027358051,0.37415302,-0.34677118,-0.011552609,0.10741566,-0.095492415,0.10083052,-0.6761554,-0.28374597,0.015381194,0.44921172,-0.19491458,-0.31818134,0.3108509,0.34501883,0.5405497,-0.1796327,-0.20630914,-0.28804827,-0.030122302,-0.06365778,0.7396029,-0.18390773,-0.48996612,-0.07248613,0.014936062,0.4247494,0.5000259,0.21716659,-0.26806206,-0.21209274,0.062609114,-0.25193924,0.5493652,0.6493199,-0.3447227,-0.18917099,0.4897472,0.30291268,0.31370184,-0.09896655,0.44119364,-0.05598825,-0.72193396,-0.11343702,-0.05414823,-0.106827095,0.53698087,-0.14214095,0.4440487,0.6155456,-0.12609237,-0.072484985,0.18992582,0.0042161,-0.018970426,-0.121531434,-0.2850077,0.1705331,-0.5462421,0.19338384,-0.12150018,0.61609083,0.33006412,-0.91584027,0.38186073,-0.59817326,0.17353384,0.026283674,0.5499156,0.8307866,0.5747439,0.38256976,0.7426436,-0.50681645,0.10547757,0.048650607,-0.37166727,0.042621695,-0.18031706,0.07957983,-0.51818967,-0.083315775,0.17657372,-0.13675275,0.38452032,0.45902258,-0.5072329,-0.10667816,0.27982554,0.7901996,-0.20693295,-0.07858511,0.8961497,0.9797086,0.9950429,0.14640036,1.0618842,0.10293777,-0.04554291,0.08724319,-0.08372327,-0.7834585,0.17878345,0.33292866,-0.2247298,0.41398877,0.13836172,-0.09653469,0.28847757,-0.29250875,-0.31942242,-0.0079750875,0.16650201,0.13944586,-0.39651993,-0.2555131,-0.22978464,-0.13612527,-0.19917892,0.22510743,0.25123593,-0.24910808,0.45768675,0.1603179,1.1546979,0.09609382,0.16648175,0.13755564,0.4644038,0.28733554,-0.20178308,-0.18869129,0.36372313,0.41336682,0.16611221,-0.5658079,-0.052372035,-0.3096217,-0.36248586,-0.13281146,-0.34562752,-0.3242953,0.027498927,-0.31059292,-0.27572206,-0.17372335,-0.349105,0.6203471,-3.022928,-0.28048706,-0.1868599,0.26130578,-0.032402277,-0.35044685,-0.10905798,-0.5891869,0.49948475,0.35031688,0.2886853,-0.6727404,0.324256,0.4492628,-0.43082413,-0.22370464,-0.80177104,-0.12383126,0.10207097,0.18732016,0.029867519,-0.12214155,0.07842267,0.20325732,0.4607475,-0.11010671,0.048918825,0.22227328,0.4348482,-0.0033381444,0.3845247,-0.29791784,0.5714109,-0.25109285,-0.24174412,0.21109122,-0.5031361,0.30174315,-0.19695543,0.11473144,0.6144262,-0.32660806,-0.93255913,-0.4328738,0.002667913,1.0790342,-0.09169174,-0.34352392,0.39605573,-0.47184405,-0.32239628,-0.18636124,0.5871595,-0.16374254,-0.115646124,-0.69961035,-0.16234702,-0.22437182,0.20107743,-0.110916175,0.078909434,-0.3734827,0.48254073,-0.025199762,0.50704724,0.20677568,0.17776181,-0.52663124,-0.3640444,-0.09911119,0.81886744,0.5017095,0.093329206,-0.1564411,-0.20977746,-0.27691275,-0.33764198,0.123581186,0.5870353,0.5116606,-0.12406949,0.18612926,0.30953616,0.10240658,0.1830363,-0.1683713,-0.26980278,-0.07541111,-0.07383482,0.48348823,0.58926576,-0.25678343,0.55965245,0.07587074,0.16598257,-0.31891897,-0.4913584,0.60838646,0.66475815,-0.18315543,-0.32610688,0.6743567,0.15453514,-0.22753988,0.47825342,-0.5689086,-0.41343182,0.6372541,-0.06395138,-0.5489329,0.27802268,-0.23722799,0.048325837,-0.6992605,0.39820543,-0.2235445,-0.5693416,-0.48263037,-0.037068717,-3.456182,0.09611945,-0.3322439,-0.1446698,-0.16729453,-0.14786643,0.17401117,-0.5415123,-0.71062875,0.22909251,0.1911533,0.8470455,-0.3640721,0.11123927,-0.105148315,-0.5216739,-0.4380512,0.1122168,-0.06805726,0.30138636,0.07281424,-0.114399634,-0.020000424,-0.005742041,-0.49160525,0.068717174,-0.48069608,-0.26001474,-0.117178,-0.53364295,-0.21713679,0.80990756,-0.35988653,-0.05675649,-0.4721545,-0.10174159,-0.20995378,0.34299052,0.11858311,0.04612505,-0.022324145,-0.01264668,0.16019654,-0.2945986,0.2730592,-0.100385346,0.30532143,0.36618993,-0.10576197,0.17286345,0.54597247,0.7642291,-0.21104988,0.9228128,0.34964877,-0.034132272,0.44574112,-0.310164,-0.3182791,-0.3858472,-0.40804055,0.10616513,-0.44801596,-0.4106239,-0.2597612,-0.28223202,-0.7099687,0.44519183,0.00019487969,0.23913883,-0.106433116,0.3645404,0.40651956,-0.226482,-0.040364068,0.05187544,-0.16727322,-0.34784266,-0.1035082,-0.6229211,-0.41549146,0.17819801,0.95123327,-0.22407986,0.036401056,0.2954114,-0.31259096,-0.07407867,0.08555053,0.16912468,0.14818272,0.24289736,-0.19465153,-0.69032454,0.36518615,-0.5476299,-0.16925237,-0.7974757,-0.010164052,0.7125772,-0.5766458,0.61569244,0.3936318,0.13776213,-0.25819233,-0.82147986,-0.27460724,-0.057327528,-0.18196529,0.32044813,0.25727934,-0.9047102,0.5519204,0.4516528,-0.24340604,-0.61939424,0.5195066,0.10533294,-0.11383597,0.15141012,0.33382878,0.18366408,-0.02388712,0.028226767,0.13788693,-0.37184432,0.4684267,0.29411867,0.13397922,0.49818784,-0.13209759,-0.23873752,-0.669366,-0.12606353,-0.54613084,-0.16077691,0.11042465,0.051745288,0.27015918,0.08558929,-0.048491497,0.3227177,-0.5044395,0.1749351,-0.08886372,-0.2205986,0.22391011,0.47948983,0.56692463,-0.36819267,0.6511879,0.12128968,-0.0971721,0.17347851,0.04366882,0.55651635,0.13644172,0.44054043,0.12799488,-0.34409633,0.06405551,0.96398544,0.12317709,0.27748165,0.13856323,-0.0020748628,0.06894536,0.1352207,0.067910604,0.18884405,-0.533975,-0.0970627,-0.30501986,0.28506786,0.6090434,0.26544034,0.12640902,-0.029541107,-0.29099485,-0.022365285,0.18575536,0.055887945,-1.507544,0.43750528,0.23594683,0.84263444,0.30257806,0.19954935,-0.050377164,0.6727044,-0.0066086054,0.11666118,0.27997157,0.095832914,-0.40770817,0.54375076,-0.77583987,0.62385535,-0.036085255,-0.015677048,0.05100968,0.06579588,0.35283244,0.85802037,-0.22860526,0.06209061,0.19543995,-0.2287271,0.09679481,-0.4651954,-0.081713125,-0.3957767,-0.20379877,0.7257802,0.48359993,0.2768255,-0.2370704,-0.004872021,0.056499556,-0.14105883,-0.0056909323,-0.07282746,0.12286936,-0.48184347,-0.53417975,-0.14600687,0.5150119,0.16018614,0.22767569,0.056445483,-0.18318532,0.31847382,-0.20071569,0.06760599,-0.1517382,-0.71455187,-0.1101706,-0.23162434,-0.6441753,0.3676413,-0.03805317,0.32312822,0.3140983,0.11560889,-0.118988715,0.48445326,0.07202465,0.8228044,-0.29166216,-0.043125905,-0.15680996,0.16792327,0.23126452,-0.2426218,0.07008125,-0.29903525,0.026522985,-0.38588327,0.3484206,-0.11712916,-0.25596815,-0.16730064,-0.089670494,0.251207,0.5214268,-0.28117678,-0.09237874,0.11475515,-0.1463518,-0.326633,-0.15144938,-0.19049653,0.20368077,0.19988397,-0.12944561,-0.07777286,-0.20962366,-0.16664776,0.096030876,-0.02708766,0.37081617,0.40191144,0.30511045,-0.1539879,-0.112117365,0.068993844,0.69137853,0.06694553,-0.23729406,-0.36005613,-0.6165641,-0.36396912,0.35405487,-0.03925738,0.20846996,0.07780748,-0.30843925,0.71310055,0.053700462,1.0884024,-0.028675951,-0.3909083,0.06308083,0.46393007,-0.04816785,-0.14417374,-0.24490665,0.956145,0.48494735,-0.10594468,-0.05770951,-0.31425765,-0.06934273,0.31631902,-0.27162477,-0.2770139,0.16513942,-0.4800437,-0.020469945,0.26837882,0.0050416198,0.23534459,-0.20119675,0.04408173,0.4029589,0.17268068,0.2161089,-0.49853304,-0.11222979,0.35718757,0.35825354,0.08174043,0.114733234,-0.48206037,0.30608994,-0.4852487,-0.07501722,-0.38179478,0.27003968,-0.0957642,-0.28010014,0.22790295,0.1745,0.5150931,-0.23042327,-0.36196524,-0.0047710827,0.4628309,0.1094243,0.17304057,0.49112236,-0.27245897,-0.062677346,-0.13195449,0.4243137,0.90816104,-0.22501875,0.0070204875,0.37422472,-0.31919786,-0.70194113,0.33030716,-0.533016,0.24851006,-0.031771634,-0.052381072,-0.36544788,0.28900388,0.35248086,0.1760932,0.07888793,-0.5035582,-0.34980986,0.17227837,-0.19961089,-0.29989767,-0.3901548,-0.05101759,0.7037274,-0.3128379,-0.21420108,0.06986453,0.33202246,-0.0819006,-0.55261123,0.1736022,-0.21927746,0.3590399,0.061526276,-0.33154085,-0.13415273,-0.06458848,-0.48769045,0.23507659,0.06974326,-0.25749692,0.020877829,-0.3324752,-0.12799573,0.7583543,-0.45609647,0.2585626,-0.61133456,-0.5627879,-0.8706224,-0.27904752,0.12115093,0.23765205,0.08174964,-0.7600069,0.016069688,0.028618898,0.007919559,-0.045602597,-0.322041,0.47645357,0.05710139,0.37858644,-0.15738946,-0.87578833,0.089077935,-0.0026457815,-0.2293362,-0.61544454,0.61193,0.020042915,0.8253962,0.17766245,-0.02091978,0.08448868,-0.42072266,0.22290042,-0.22130054,-0.1501786,-0.6502152,0.12550674 -149,0.1840183,-0.39416927,-0.49052933,-0.044325087,-0.25141016,0.17978188,-0.28771827,0.38997397,0.050840843,-0.52524483,-0.1288461,-0.1753649,0.07700456,0.4967026,-0.20369332,-0.45993033,-0.012983637,0.15778732,-0.5954465,0.49206266,-0.37376162,0.33541775,0.17157629,0.38378045,0.061808117,0.16096766,0.12491131,-0.16700563,0.009798176,-0.37016743,-0.16536485,-0.03812686,-0.6262451,0.22945206,-0.20293912,-0.5453025,0.096185245,-0.50256836,-0.30513138,-0.7185628,0.21332785,-0.76787627,0.568934,0.07718931,-0.1624606,0.18731771,0.17964666,0.5152922,-0.30021176,0.066067584,0.31635174,-0.20677136,-0.15243609,-0.11401594,-0.15197305,-0.4992542,-0.54080504,0.018616254,-0.44136646,-0.18703476,-0.10633623,0.26373655,-0.13419597,0.21727861,-0.16891114,0.27221885,-0.48249367,0.17159745,0.18650767,-0.16743453,0.12021172,-0.5827368,-0.22445668,-0.25861254,0.3458113,-0.32406428,-0.19787209,0.10919428,0.107155584,0.42091274,0.034792032,-0.15890196,-0.28003123,-0.13420752,0.14910476,0.64374256,-0.071737446,-0.3529375,-0.1934243,-0.12062844,0.23151027,0.042766605,0.0917246,-0.3626749,-0.13002658,-0.17768906,-0.38047653,0.2676365,0.41951945,-0.37417874,-0.23870073,0.33491114,0.53107363,0.14291146,-0.10959483,0.08272193,0.06422268,-0.58723515,-0.18037093,0.146207,-0.0794809,0.48163506,-0.09051641,0.2711869,0.70609313,-0.22838543,-0.051005363,-0.014561713,-0.060822718,-0.113712616,-0.11873816,-0.33436495,0.26397654,-0.44066045,0.12556331,-0.33271247,0.69522107,0.17155935,-0.65830547,0.31718522,-0.57616055,0.10637057,0.04729752,0.5029052,0.5171441,0.4634799,0.15201771,0.5237997,-0.38130364,0.089929186,-0.21962193,-0.117289916,0.050107595,-0.2104682,-0.09447558,-0.37970957,0.028792841,0.032750417,-0.0028894714,0.13425806,0.5038446,-0.55769473,-0.033269595,0.048317317,0.7196807,-0.26474696,-0.056906264,0.99506503,0.95454866,0.94286686,0.13975973,1.205286,0.2779447,-0.23529097,-0.045209747,-0.05588237,-0.6089861,0.16387407,0.40597448,0.15255411,0.17222698,0.19305149,-0.08757188,0.5555578,-0.43601254,0.039275832,-0.0704406,-0.01927503,0.04173357,-0.12567553,-0.35973316,-0.19831419,0.052387714,-0.061300952,0.036880814,0.3010917,-0.26072094,0.5426711,0.08384148,1.2503603,-0.0010115717,0.14519264,0.026436673,0.39837232,0.12651818,-0.130899,0.0036096573,0.3432979,0.4194503,0.06808143,-0.6574785,0.14136633,-0.13171935,-0.43097302,-0.17109285,-0.24093066,-0.46425432,-0.03744075,-0.52719086,-0.14069337,-0.03639539,-0.0924397,0.33071035,-2.6077526,-0.08912742,-0.20315692,0.30236,-0.15564397,-0.29022533,0.010529382,-0.4615478,0.49132204,0.3681322,0.429253,-0.5704056,0.4317185,0.3907239,-0.52894866,-0.10207585,-0.7875058,-0.22392575,-0.065335445,0.353586,0.011973338,0.0058185756,0.09587937,-0.08176596,0.4510921,-0.2527294,0.15260755,0.21573612,0.38777897,0.10892632,0.49608567,0.1399303,0.5424074,-0.4737629,-0.18805523,0.22561009,-0.53736037,0.4120824,-0.09524008,0.091698535,0.37829205,-0.44767147,-0.89944637,-0.6484389,-0.30463767,1.022986,-0.030535545,-0.35067272,0.25828695,-0.31431913,-0.28694704,-0.0968099,0.60814816,-0.13764913,0.11706461,-0.758141,-0.11577689,-0.0785442,0.34983703,-0.087765,-0.01912232,-0.49145466,0.61839473,-0.07728312,0.39810824,0.4066338,0.21424153,-0.29419398,-0.3342674,0.042082913,0.9274634,0.32552257,0.17094265,-0.09735886,-0.23050794,-0.24936879,-0.094040975,-0.015505182,0.5604129,0.5211566,-0.012790458,0.1927665,0.2229952,0.067536175,0.14919852,-0.23211029,-0.22311251,-0.09471745,0.1244896,0.49768782,0.5248865,-0.068054356,0.3410384,-0.12773414,0.4532831,-0.21009982,-0.54721314,0.4154376,0.75362194,-0.16606021,-0.10317741,0.5393912,0.61257404,-0.09610055,0.37072992,-0.6106771,-0.44116163,0.46134418,-0.16591273,-0.48223922,0.2344093,-0.24791911,0.18096247,-0.87325543,0.3711295,-0.32103753,-0.5660159,-0.7117661,-0.09471832,-3.3985515,0.1368229,-0.13050775,-0.15006399,-0.0969461,-0.16220793,0.18521874,-0.47525555,-0.420132,0.18418775,0.08280476,0.58038527,-0.09495367,0.15654159,-0.3089191,-0.23437054,-0.30077878,0.2404032,0.112042114,0.24227893,-0.24061069,-0.40000322,0.0049469257,-0.21870221,-0.4165677,0.02033359,-0.64452493,-0.2854406,-0.1428149,-0.36568022,-0.21970214,0.6487864,-0.349638,0.12495983,-0.14235035,-0.0056787697,-0.2559887,0.4761834,0.32032555,0.15928066,-0.02856962,-0.12419629,-0.1598021,-0.44926628,0.20334704,0.22630583,0.14169873,0.34788817,-0.13125257,0.14828618,0.4359391,0.6762444,-0.091427214,0.8194846,0.33558849,-0.11122657,0.41300374,-0.17939426,-0.34209844,-0.44587776,-0.16242301,-0.13989769,-0.37665886,-0.60426456,0.012123389,-0.29475912,-0.7398849,0.5386302,0.12646304,-0.3213584,-0.008953,0.29303068,0.2683081,-0.3485264,-0.0884318,-0.10669751,0.024360763,-0.3890291,-0.31045145,-0.567027,-0.5461327,-0.06459455,1.0177596,-0.054670483,0.1721919,0.09702698,-0.23955598,-0.030133452,0.3102887,0.06786572,0.16769336,0.34605142,-0.14904015,-0.7464305,0.77666885,-0.14968646,-0.38427252,-0.6273238,0.22648051,0.6910432,-0.69490063,0.48819858,0.45448086,0.03383397,-0.104702115,-0.25852516,-0.17412806,-0.049374994,-0.23675106,0.24860458,0.027238114,-0.6787867,0.41215715,0.3985641,-0.2971092,-0.6849322,0.52747166,-0.017358989,-0.22764559,0.23586154,0.31418344,0.21253611,0.053398438,-0.1176589,0.10557718,-0.41948104,0.28935862,0.2674732,-0.05912957,0.33474606,-0.26889628,-0.14173147,-0.77975607,0.11857533,-0.5058145,-0.20183893,0.20684603,0.07966561,-0.004369342,0.30105385,0.08252782,0.35111403,-0.25462976,0.09915018,-0.30417082,-0.2995887,0.25362328,0.49918303,0.39006737,-0.3029605,0.7288348,0.07219957,-0.07467152,-0.12124467,0.042763136,0.52093464,0.08986693,0.56003326,-0.16913857,-0.21984792,0.23161945,0.78289837,0.19575964,0.4485233,0.17270763,-0.046442915,0.26462722,0.1605149,0.087963454,0.19784059,-0.46213004,0.12460705,-0.18419906,0.13742034,0.42347997,0.05383808,0.32567376,-0.10219156,-0.2238466,0.04641645,0.16849817,0.19274528,-1.0231901,0.26320758,0.21974595,0.6586216,0.4936688,0.08340196,0.079485215,0.6974439,-0.40395617,0.0116446065,0.27060953,0.023914397,-0.47496185,0.64997244,-0.772796,0.60699356,-0.13582267,0.007000949,0.14027742,-0.24585497,0.46675786,0.83913743,-0.13608715,0.029803041,0.1364318,-0.31916958,0.044433773,-0.538301,0.1395289,-0.36513796,-0.22874126,0.7559018,0.3464159,0.4325666,-0.10535208,0.023241734,0.16289672,-0.16847558,0.21891761,0.121217504,0.20755978,-0.062034544,-0.51777244,-0.12843956,0.7358179,-0.28822497,0.13736318,0.15578313,-0.50414294,0.31764287,-0.07488709,0.08925121,-0.07981419,-0.7278554,0.06756799,-0.47080207,-0.4598969,0.40367705,-0.048688646,0.3512335,0.2551257,0.059895117,-0.2220575,0.5692525,-0.09023019,0.84876144,0.08022666,-0.14155385,-0.13345353,0.18150277,0.261886,-0.23041442,0.046328705,-0.21732603,0.06934001,-0.566985,0.31827268,-0.12649323,-0.31085953,0.15314303,-0.07258978,0.1058774,0.4693442,-0.13101813,-0.275889,0.33702973,-0.016940799,-0.1142823,-0.17444213,-0.19782822,0.21706483,0.24042514,0.21354981,-0.070486955,-0.24934277,-0.16588545,0.37444046,-0.019664437,0.4951484,0.32521722,0.00033846073,-0.45167497,-0.06607911,-0.027487146,0.36950782,-0.17137179,0.06994962,-0.14356568,-0.5948222,-0.39685303,0.1476575,-0.12695716,0.34735537,0.061478145,-0.23568277,0.82663685,-0.17108835,1.0343426,-0.015078799,-0.56993586,0.23589174,0.6090061,-0.049654666,0.007229145,-0.41427013,0.9583796,0.42438054,-0.1227748,-0.11627705,-0.37680057,-0.14438793,0.32134214,-0.25598308,-0.24524513,0.013692315,-0.5224881,0.030905416,0.10812692,0.35791677,0.20900486,-0.09229897,0.14011447,0.28151304,0.10230541,0.25805715,-0.7279201,-0.17697139,0.4073463,0.29579234,-0.17508207,-0.01610945,-0.42367873,0.4718645,-0.46559498,0.16434005,-0.26721945,0.05034713,-0.28964898,-0.2692025,0.21624017,0.16922964,0.26292536,-0.40325785,-0.35196194,-0.24458954,0.5101643,0.23559989,0.25034824,0.6994129,-0.13945083,-0.13530475,-0.0644923,0.46069422,0.83941233,-0.5503255,-0.1496266,0.4223452,-0.4421629,-0.47670847,0.33847508,-0.43196106,0.06946062,0.08923403,-0.21830304,-0.4412341,0.23611675,0.25452933,0.010349989,0.064204656,-0.7265481,-0.043826003,0.34710488,-0.38353327,-0.38209972,-0.35770342,0.36291698,0.70392716,-0.23790489,-0.34506392,0.1048483,0.26271856,-0.32911512,-0.57045805,-0.0444493,-0.30633026,0.3771599,0.11494545,-0.28210735,-0.17900427,0.046945516,-0.4138743,-0.057365723,0.083323784,-0.3578403,0.04697482,-0.40004808,-0.07491168,0.7222641,-0.087194405,0.20861088,-0.67179024,-0.49094948,-0.7930197,-0.38619536,0.5770051,0.35861763,-0.0031419354,-0.5499659,0.015544648,-0.07418215,-0.22777963,-0.006650712,-0.47501448,0.5312781,0.16047515,0.3003921,-0.08446848,-0.7794338,0.14879094,0.0739531,-0.28394294,-0.46266454,0.38597107,0.028027972,0.8459534,0.06146878,0.06985922,0.34983143,-0.4512888,0.12090818,-0.20511237,-0.17312583,-0.6783329,0.03440199 -150,0.37371594,-0.09779442,-0.33349797,-0.09053819,-0.40293407,-0.020285327,-0.0021999045,0.72096264,0.4784422,-0.61344826,-0.46265164,-0.2441123,0.05705775,0.5372437,-0.35101217,-0.7027739,0.15246099,0.23538227,-0.1284513,0.6476799,-0.24001303,0.5592756,0.21036705,0.4241143,0.17709267,0.2742918,0.30791602,-0.04247739,0.20900905,-0.3529641,-0.17716989,0.32617092,-0.6876237,0.5982584,-0.35353744,-0.54416484,0.3119205,-0.7889849,-0.42333025,-0.7052604,0.24142797,-0.8654606,0.793082,-0.021053657,-0.14003272,0.028089106,0.17279617,0.06566089,0.11846237,-0.009740109,0.00399791,-0.031523444,-0.20553374,-0.032111,-0.38358226,-0.8044756,-0.66401833,-0.013711643,-0.4424262,-0.064229086,-0.48014516,0.25018778,-0.2851264,0.053160787,-0.017104369,0.54924715,-0.42781997,0.25791052,0.039240252,-0.16185562,0.18883081,-0.62123716,-0.28525084,0.0020414093,0.065795645,-0.24083178,-0.09562664,0.45368236,0.36088338,0.52480984,0.16087815,-0.20057127,-0.15345463,-0.07367671,-0.084864005,0.7266854,-0.008364325,-0.5801188,-0.18616697,0.08820264,0.4437394,0.19309388,0.26889363,-0.27414936,-0.19232702,-0.3089428,-0.3619967,0.6588421,0.52333605,-0.34637433,-0.2854522,0.35539833,0.21633255,0.20100553,0.053533096,0.13994792,0.0912859,-0.63144284,-0.2604769,-0.28424644,-0.33689523,0.6838778,-0.11771135,0.44898286,0.6658581,-0.15913582,-0.0019975186,0.16053383,0.15169232,-0.32978645,-0.1356062,-0.21435404,0.31265497,-0.45679754,0.06508684,-0.16554795,0.92038727,-0.052779026,-0.60309285,0.305932,-0.58126783,0.087428704,-0.11268089,0.5143479,0.6113086,0.4970337,0.4518547,0.7334608,-0.47152406,0.076831676,0.059597623,-0.47266167,-0.15133435,-0.33916536,-0.114465736,-0.42312583,-0.084524795,0.084155805,0.14162627,0.22897586,0.47384197,-0.7809316,-0.2586666,0.29052097,1.1091386,-0.22287016,-0.29186946,0.93025637,1.2148079,0.951964,0.05259158,1.4414771,-0.06255837,-0.084342316,-0.20028722,0.018565763,-0.6462099,0.2873056,0.43976888,-0.25139305,0.31645185,0.12766156,-0.049841244,0.29300374,-0.5235015,-0.31051776,-0.11784878,0.35247424,0.053824365,-0.25429392,-0.75024545,-0.21657686,0.00036148727,-0.013589472,0.31901428,0.38952655,-0.25428277,0.37941736,0.15104565,1.0687876,0.006321433,0.10268189,-0.013244713,0.3634339,0.29087144,-0.11138545,0.08092808,0.10598278,0.20706448,0.113409914,-0.49053258,0.052202307,-0.33205286,-0.348094,-0.16166818,-0.30107138,-0.3158652,0.24061875,-0.31991023,-0.22963187,-0.179674,-0.18316983,0.52265704,-2.4370456,-0.28816244,-0.18580961,0.40149552,-0.17797616,-0.27703804,0.117291406,-0.44777194,0.40800577,0.41754523,0.5643541,-0.64629394,0.29154664,0.7238871,-0.76475286,-0.27466613,-0.44490847,0.05528409,0.11343124,0.41211575,0.09561219,0.011407795,-0.08045198,0.0075272294,0.57987434,0.17071182,0.21820407,0.41154855,0.63085186,-0.25176615,0.27975136,-0.04611037,0.54047453,-0.257603,-0.1187943,0.22882803,-0.31187227,0.4345842,-0.39540648,0.025074994,0.64497626,-0.5552459,-0.8880676,-0.5942416,-0.48353872,0.9737015,0.0765785,-0.3481307,0.22346893,0.025891736,-0.15600187,-0.07716898,0.79111797,-0.19355917,0.03129673,-0.56039166,-0.056785524,-0.014380145,0.07732089,-0.07932918,-0.27026552,-0.40965635,0.6163474,-0.02029185,0.3712247,0.35095206,0.42727226,-0.4920803,-0.5003557,0.19494864,0.9410828,0.67491233,0.22321515,-0.31792971,-0.07951024,-0.3898535,-0.0767442,-0.106005296,0.72654784,0.60763675,-0.21205935,0.052004438,0.3850034,0.42550245,0.15817043,-0.09576029,-0.42108002,-0.25792417,0.022549186,0.5186382,0.6395017,-0.45759225,0.23597315,-0.18065739,0.33836773,-0.15872757,-0.44691795,0.47537532,0.9870968,-0.24906471,-0.080232225,0.93592244,0.44568673,-0.2535762,0.47415894,-0.67050016,-0.4718259,0.33402202,-0.024433207,-0.48768526,-0.00029594303,-0.15687072,0.06628337,-0.9613183,0.5150508,-0.09499802,-0.6637368,-0.4176392,-0.14106205,-2.527859,0.26026747,-0.20338936,-0.008380106,-0.19044703,-0.17584802,0.013479674,-0.6792432,-0.7091165,0.4429725,0.09792368,0.5570848,-0.24892953,0.2258708,-0.06608741,-0.5419547,-0.20758423,0.28984353,-0.023344422,0.32292348,0.05766625,-0.45889148,-0.094770975,-0.02524047,-0.5623634,0.15053307,-0.6088499,-0.46028534,-0.32024124,-0.7251717,-0.074168146,0.73625314,-0.38193554,-0.034749042,-0.25754485,0.26400802,-0.10781336,0.07860911,-0.0732823,0.09601784,-0.02742461,-0.14635208,-0.0062565566,-0.112256035,0.73420155,0.14682797,0.5404048,0.32773745,-0.15723595,0.002758318,0.6490777,0.6398014,-0.21872795,1.0929645,0.17936713,-0.22052515,0.35155994,0.11683104,-0.5043291,-0.61019075,-0.39064372,0.17372537,-0.48823333,-0.45779067,0.1707326,-0.24111858,-0.77030414,0.62940794,0.10729803,0.44039184,-0.10953133,-0.09469849,0.40730038,-0.28215224,-0.0810827,0.035579935,-0.06895722,-0.6583551,-0.43065658,-0.650966,-0.37083295,-0.050456453,0.79800427,-0.21330228,0.123858854,0.1416564,0.08098446,0.10820389,-0.021836648,-0.006893861,-0.16282704,0.3369344,0.0042807283,-0.8129282,0.56182206,-0.1023909,-0.17211692,-0.58055264,0.25006565,0.62828624,-0.6470806,0.42963964,0.3402023,-0.08630611,-0.21610999,-0.65766156,-0.38629067,-0.121041834,-0.13686648,0.35588342,0.27216306,-0.8611433,0.37894878,0.19623336,-0.37701574,-0.66745126,0.65235865,-0.19514683,-0.086195245,-0.047046807,0.35988456,0.48890465,-0.03416605,-0.07609932,0.1913155,-0.28634468,0.5164281,-0.14080827,-0.08888702,0.43426722,-0.2233232,-0.13099222,-1.047841,-0.009687388,-0.49900776,-0.26461238,0.15190527,-0.13551274,-0.39933792,0.16408095,0.25758865,0.39429468,-0.31365862,0.16100991,-0.004793915,-0.49693942,0.37218717,0.49516597,0.7522417,-0.19797671,0.6211756,0.04121096,-0.097880356,0.043967664,0.2138381,0.4284779,0.045007244,0.31630906,0.005944514,-0.1351035,0.15530261,1.0516593,0.08635993,0.32920602,0.16767745,0.035511754,0.31751615,0.022227686,0.21471003,0.08905734,-0.64632004,-0.020924812,-0.47518897,-0.16784772,0.6013593,0.10328255,0.24989256,-0.18493435,-0.38570413,0.050519414,0.17432228,0.33994368,-1.2970355,0.1412745,-0.025822747,0.8385502,0.4065966,0.08804081,-0.08411376,0.70117056,-0.0012393385,0.046550017,0.3975908,0.15465227,-0.4099776,0.61159396,-0.4866775,0.3734241,-0.10734844,-0.101726815,0.1953207,-0.00042507052,0.26896483,0.9934044,-0.19033861,-0.026446585,-0.087382376,-0.18878397,0.0057257116,-0.52010345,0.28684667,-0.327398,-0.25563866,0.68931913,0.49069214,0.2067819,-0.23055844,0.012649464,0.049314328,-0.16284823,0.09056629,0.037202287,-0.06991321,-0.20796041,-0.4551403,-0.040389214,0.63796353,0.18076678,0.14419279,-0.08528191,-0.1729547,0.18760894,-0.0786308,-0.099559106,-0.0028774827,-0.9773563,-0.22188373,-0.29802483,-0.53688115,0.48735732,-0.0036245107,0.17589776,0.052763246,0.097014286,-0.20095627,0.39197916,0.34852615,0.73417455,0.19769317,-0.07258014,-0.313986,0.18005054,0.17680554,-0.39253503,0.23302475,-0.20482874,0.04624571,-0.63690543,0.38915128,-0.0059201093,-0.3629958,0.15481904,-0.13907735,0.07105915,0.35922846,0.1356546,-0.10121691,-0.03197859,-0.29709917,-0.16480115,-0.21269818,-0.20745406,0.330442,0.13408032,-0.08807012,-0.04264437,-0.24431887,-0.32060128,0.13720357,-0.04058131,0.31720835,0.11334063,0.09585172,-0.37097055,0.050801743,0.0130444765,0.63985556,-0.21713479,-0.1815871,-0.009669209,-0.35633266,-0.546765,-0.238767,-0.001978776,0.15143834,0.052657295,-0.22417362,0.7469678,0.27825448,1.2065022,0.040769182,-0.4003039,0.018171053,0.5862851,-0.042138208,-0.20059994,-0.33114576,1.3751246,0.5440408,-0.076315776,-0.17091282,-0.47019997,0.13286704,0.1858866,-0.32994598,-0.37530106,-0.03220723,-0.6143138,-0.16802818,0.2608425,0.29139012,0.006965846,0.008410722,-0.03314369,0.49243003,0.034534637,0.55113286,-0.7226881,-0.35475895,0.1272692,0.42664528,0.15910065,0.13545969,-0.5612249,0.33266732,-0.69901836,0.32173878,-0.4026173,0.20976333,-0.79293877,-0.33975214,0.18628183,0.08975866,0.58531463,-0.3817141,-0.48911533,-0.2983423,0.40430307,0.0025546073,-0.04346848,0.5241524,-0.21542855,-0.12652054,-0.110065006,0.7180921,1.2052265,-0.45757517,0.018826222,0.5392439,-0.5860323,-0.5384531,0.16289198,-0.6134503,0.12980232,-0.053155296,-0.22668341,-0.58257115,0.15280645,0.042677958,0.06056998,0.0015298903,-0.52574855,-0.21308343,0.18998954,-0.2829522,-0.16021805,-0.21634829,0.31974703,0.59105897,-0.1844531,-0.48092642,0.18310325,0.3163473,-0.13062751,-0.86205167,-0.17662486,-0.058272887,0.38883534,-0.1512389,-0.31537387,-0.37237817,-0.30757275,-0.41601676,0.03633866,0.12799594,-0.22839043,0.1798763,-0.41375393,0.0882345,0.73127764,-0.1969159,0.30644053,-0.8591088,-0.41124612,-0.84420645,-0.5299481,0.46394855,0.504639,-0.15659423,-0.68508255,-0.14591393,-0.22020388,-0.017252589,-0.21973062,-0.2234621,0.2808708,0.13171616,0.58017814,-0.27878577,-1.3175911,0.18679103,0.13318332,-0.17822984,-0.62855273,0.5119201,0.09483922,0.8728628,0.22792229,-0.12469725,0.17267075,-0.58127606,0.093740344,-0.25895658,-0.09695512,-0.6091549,0.34885955 -151,0.55100656,-0.22705153,-0.49212992,-0.1477224,-0.19321512,0.079308145,-0.27303642,0.24247234,0.20412411,-0.160392,0.0024179618,-0.17891306,-0.0315582,0.53771174,-0.030601645,-0.85570467,0.15934348,0.14702313,-0.7499373,0.7315104,-0.4244328,0.33089557,0.05496166,0.37705192,0.16379616,0.36279538,0.17314465,0.058290347,-0.11818876,0.047307666,-0.020714613,0.106173865,-0.39006796,0.030247223,-0.0005595525,-0.12810431,-0.1006727,-0.29358393,-0.68752223,-0.85588896,0.47175348,-0.76368546,0.45569128,0.0007174636,-0.36342824,0.19495812,0.092064336,0.30507547,-0.18753073,-0.034857433,0.16262923,-0.01079269,-0.05486893,-0.14643298,-0.30999887,-0.51476157,-0.57547224,0.069432534,-0.6520761,-0.2327923,-0.13205156,0.22049919,-0.2987663,0.016639471,0.013025403,0.5484933,-0.39768252,-0.20963581,0.22454509,-0.1966568,0.30859116,-0.50761396,0.058729645,-0.08367278,0.1192308,0.029911447,-0.10320864,0.27098504,0.31643423,0.43788862,-0.15196605,-0.17743771,-0.3070202,0.014072467,0.19519353,0.4827425,0.094510056,-0.45856148,-0.20062555,-0.086322665,-0.016511837,-0.0359394,0.16622598,-0.5340297,-0.007251954,-0.042354807,-0.15459234,0.473424,0.5653573,-0.39953393,-0.2608056,0.3747099,0.64911556,0.3155467,-0.21321113,0.09411669,0.046344817,-0.4502503,-0.042263523,0.102064386,-0.1437022,0.61946803,-0.199374,0.20231004,0.76535404,-0.04472929,0.0402325,-0.008932455,0.0070483955,-0.03220986,-0.090254545,-0.07404186,0.14626983,-0.4135626,-0.029255828,-0.15021181,0.56639427,0.23909172,-0.6989295,0.58598834,-0.567975,0.23505396,-0.17608695,0.564473,0.81884885,0.20512274,0.18036318,0.75499815,-0.3978485,0.15670122,0.028335758,-0.482299,0.224892,-0.281163,0.0060604215,-0.47373182,-0.07289458,-0.06548648,-0.31412986,-0.15400775,0.591622,-0.38879946,-0.10883905,-0.06141903,0.9118198,-0.271159,-0.06530313,0.5374887,0.9720079,0.9817702,-0.035942897,1.3295046,0.45516816,-0.19876881,0.16651706,-0.33758053,-0.86110646,0.3672309,0.34659827,0.3026862,0.40642223,-0.008622916,-0.18084624,0.5080811,-0.26135072,0.22586158,-0.24761412,0.1707633,0.07319765,-0.053568427,-0.39324456,-0.33041292,-0.057395935,0.1725505,0.22433624,0.25390774,-0.26003626,0.2682336,-0.07081056,1.7019871,-0.17624685,0.012782981,0.057932027,0.6273155,0.27601707,-0.18872544,-0.2755335,0.21460375,0.367274,0.17552723,-0.66351306,0.17201878,-0.2846094,-0.39250857,-0.30684438,-0.31627935,0.08960407,-0.08928711,-0.4973459,-0.22239247,0.048556082,-0.34747988,0.40098742,-2.4742343,-0.3095681,-0.0989411,0.3017491,-0.27637625,-0.13092057,-0.17459151,-0.389067,0.13492832,0.3876953,0.38367864,-0.7343002,0.41258472,0.58621544,-0.55668044,-0.0658417,-0.4521185,-0.121223286,-0.096246295,0.51337093,0.0758152,0.009859594,0.15397763,0.34299198,0.45957837,-0.014571837,0.07050008,0.27825457,0.40098366,0.07999453,0.29075828,0.046069782,0.32822853,-0.19117314,-0.15191078,0.55227077,-0.34246713,0.20306127,-0.20633163,0.18794355,0.37133116,-0.4313869,-1.0249221,-0.5809325,-0.13887706,1.0555241,-0.21632099,-0.48542833,0.23308973,-0.13252337,-0.120344095,0.16238953,0.53309083,-0.19012499,-0.008839977,-0.7282817,0.06579992,0.019462772,0.1233037,0.102070965,-0.021444304,-0.17491895,0.64849275,0.08120653,0.31778863,0.13974948,0.21451767,-0.17235288,-0.64744055,0.1650941,0.7994879,0.31798407,0.091729775,-0.24437854,-0.21066588,-0.21971768,-0.1584231,-0.108448856,0.53864926,0.8138535,0.022892412,0.14392617,0.2331158,-0.11025576,0.124936245,-0.073466055,-0.40326884,0.0383017,-0.011640931,0.61738217,0.75319725,-0.26794785,0.4908186,-0.11387836,0.26248387,-0.098911025,-0.5468918,0.7493015,1.1883887,-0.21286014,-0.23653191,0.4507949,0.2825919,-0.5960668,0.52787143,-0.7474544,-0.2883226,0.42020124,-0.22985475,-0.517782,0.33722064,-0.35969752,0.15482952,-0.79317486,0.46579126,-0.1294141,-0.27936605,-0.46366805,-0.19491506,-3.2211888,0.24689016,-0.27057594,-0.18454628,-0.13350445,0.00905015,0.34543663,-0.46174774,-0.5670496,-0.02902848,0.07396944,0.63279474,0.007049207,0.16958469,-0.24352273,-0.17130953,-0.37437266,0.13919987,0.06992638,0.49897975,-0.013062851,-0.4832941,-0.0039903116,-0.25053602,-0.40313718,0.03559917,-0.63899803,-0.47977498,-0.31968433,-0.5564832,-0.15598981,0.71325433,-0.06451914,0.031109689,-0.39291137,-0.06512204,-0.05313841,0.45400673,0.22084184,0.10722183,0.0045983354,-0.08724463,-0.11296857,-0.2255467,0.16420141,0.04129552,0.16253096,0.3758547,0.04354441,0.16401775,0.6055495,0.596975,-0.21041396,0.7084437,0.53929687,-0.098899916,0.28248695,-0.17595838,-0.255225,-0.40139922,-0.2989135,-0.0932401,-0.2715595,-0.5231829,-0.123707786,-0.29881003,-0.7568216,0.3792054,-0.03737875,0.2583901,0.11527575,-0.0032987655,0.4787866,-0.2130739,-0.008525149,-0.062402714,-0.22856998,-0.6235507,-0.19194907,-0.6310873,-0.6393274,0.29715374,0.95151967,-0.17352304,-0.28770223,-0.015816577,-0.3067626,-0.04383662,-0.09866876,0.050747856,0.19376816,0.14729333,-0.18483454,-0.7942322,0.5236817,-0.2424437,-0.06646612,-0.5323951,0.15746798,0.6330003,-0.64604867,0.5100505,0.26061466,0.19437939,-0.10025769,-0.49609426,-0.21132012,0.16849011,-0.15569307,0.42529434,0.055089645,-0.74594104,0.309368,0.2540561,-0.44720656,-0.65187246,0.52779233,0.02063423,-0.27866706,-0.112422675,0.44192138,-0.10239868,0.074898705,-0.44468486,0.32211637,-0.417652,-0.010743241,0.3378892,-0.0071200053,0.363125,-0.16548207,-0.26798993,-0.49500954,0.010758098,-0.42296678,-0.2320092,0.111137845,0.04601912,0.25163084,0.091307625,0.09414986,0.42708287,-0.1487643,0.087034464,0.035829213,-0.1774559,0.41939571,0.4179941,0.5267093,-0.41735718,0.59320885,-0.051828876,-0.12995996,0.101412326,0.025671769,0.36733907,0.25346938,0.41075793,0.24096963,-0.05986096,0.22096328,0.9794271,0.16125225,0.5211369,0.13655749,-0.43515724,0.21866134,0.175995,0.16979028,-0.19068678,-0.41005886,-0.07962906,-0.05982248,0.28031677,0.6008009,0.029397,0.36362,-0.24281482,-0.3222886,0.10366602,0.063473515,-0.06559405,-1.2062172,0.19787188,0.28719234,0.70048434,0.4386708,-0.06621412,0.015040438,0.6751985,-0.0826616,0.07423862,0.31027895,-0.16853327,-0.7966788,0.5035751,-0.6697196,0.38861594,-0.044844206,0.02607383,-0.02717793,0.13927275,0.33713347,0.593448,-0.026864938,0.019521141,-0.19033273,-0.3640673,0.061989706,-0.46319345,0.22574605,-0.50058275,-0.42705148,0.5843002,0.55614495,0.113448456,-0.1318451,-0.03204565,0.040847234,-0.07215559,0.31436622,-0.017799944,0.075937614,-0.12496285,-0.79858124,-0.3467371,0.5305789,0.02581857,-0.076387696,-0.05875387,-0.007912087,0.16641632,-0.23903988,-0.076435395,-0.018625975,-0.7314527,0.029639851,-0.1674725,-0.45590726,0.49771032,-0.12666668,0.21309748,0.19146426,0.06024669,-0.5629848,0.38520476,-0.073145986,0.7971219,-0.028043684,-0.07075058,-0.50556463,0.0071609337,0.17119905,-0.39247304,-0.14402583,-0.25872308,0.006475099,-0.56796455,0.59772784,-0.14677478,-0.48574024,0.15724261,-0.22261065,0.07418128,0.61705476,-0.31326896,-0.35492033,-0.08484575,-0.1611925,-0.37111333,-0.06700887,-0.03773021,0.29161218,0.19769892,-0.3515555,-0.12812498,-0.07094034,-0.02391543,0.43353325,-0.13141026,0.3676654,0.5905406,0.14690547,-0.3513724,-0.19278374,0.5024734,0.49582896,0.1937259,-0.009892309,-0.28613046,-0.38415134,-0.44130498,0.15568523,-0.1332549,0.2721973,0.23475364,-0.34270394,0.64247674,0.2777995,1.2291275,0.011186842,-0.31842795,0.35197824,0.43976688,0.11942907,-0.041135523,-0.4567223,0.802601,0.6086053,-0.22287346,-0.15323703,-0.4233921,-0.23955236,0.20004794,-0.297635,-0.03537531,-0.038776927,-0.7894246,-0.17964321,0.15612598,0.29044792,0.08243105,-0.077400714,0.13968608,0.066287465,0.026871169,0.32231167,-0.5119941,-0.18351027,0.3914285,0.15883487,-0.011825514,0.13195774,-0.41912922,0.3536296,-0.5659533,0.002779738,-0.26934248,0.25543863,-0.0475527,-0.4149125,0.2909377,0.18751912,0.48769256,-0.26957908,-0.35790315,-0.31369388,0.55041534,0.22720425,0.20903961,0.61205864,-0.3171892,0.075351976,0.1052182,0.58446693,1.0418471,-0.13138264,0.03425862,0.26360837,-0.34176233,-0.8726782,0.25529775,-0.30775642,0.3045922,-0.044861507,-0.31608185,-0.7431419,0.36373743,0.1355641,-0.08105931,-0.02032166,-0.5123511,-0.24868679,0.2585056,-0.13042577,-0.23957041,-0.47529367,0.108764805,0.57387507,-0.29177096,-0.29016125,0.06339469,0.22310549,-0.26689595,-0.5530693,-0.01389403,-0.42091042,0.28142014,0.17663503,-0.22289394,0.05716338,0.016861295,-0.5422647,0.3460649,0.19659314,-0.40190223,0.13528611,-0.24459015,-0.04928607,0.95200294,-0.17118575,-0.113567896,-0.78796744,-0.6284422,-0.9957064,-0.42180386,0.36411422,0.18527722,-0.016916681,-0.6973957,-0.012749986,-0.07478532,0.15738669,0.12993887,-0.49014917,0.39128512,0.03077008,0.3769976,-0.053126194,-0.8522158,-0.045763645,0.14341977,-0.34743282,-0.63613504,0.50142753,-0.10165976,0.82034457,0.16125135,0.10161686,0.26872304,-0.49348545,0.11277949,-0.31287184,-0.26826885,-0.62780696,0.17522274 -152,0.41067237,-0.17886254,-0.3188945,-0.046172556,-0.032509446,0.12294941,-0.04386028,0.5774397,0.38347968,-0.25299132,-0.03413601,-0.24793436,-0.0024882196,0.38808826,-0.16463143,-0.4568833,0.0028680107,-0.04916699,-0.31550473,0.411376,-0.42728034,0.23944798,-0.053829655,0.43778896,0.052114848,0.2858745,0.14391963,-0.0010587231,0.0036806504,-0.35928595,0.09222821,0.27329567,-0.43008342,0.36207977,-0.1011739,-0.27348298,0.13500817,-0.37584975,-0.4150187,-0.57853967,0.25626594,-0.7658723,0.37961102,0.105938554,-0.32943615,0.31096143,-0.0019842465,0.056518696,-0.21831466,-0.22657725,-0.011476469,-0.118976675,0.047084384,-0.36829883,0.0050747474,-0.31302553,-0.48464802,0.062497415,-0.38077182,-0.17579392,-0.20435092,0.06746397,-0.39074454,0.07601218,0.027708411,0.3553394,-0.41843817,0.067389876,0.17650741,-0.49823362,0.28381646,-0.46331966,-0.4013252,0.01342049,0.036636688,0.05566744,-0.21264845,0.35702375,0.22228377,0.4333955,-0.07342632,0.019662453,-0.258087,-0.22593804,-0.0283375,0.47111472,-0.17342654,-0.66480005,-0.101504765,-0.009676202,0.18004502,0.29825416,0.22169788,-0.1880708,-0.10336747,-0.059746277,-0.30967504,0.36963832,0.56387204,-0.47065294,-0.17643666,0.1763489,0.32832634,0.08827739,-0.10969068,0.01815974,0.040943112,-0.3999837,-0.13913298,-0.22354627,-0.1497119,0.61562574,-0.0352061,0.29779294,0.64320046,-0.24430612,-0.037374742,0.14337203,0.011792167,-0.16596857,-0.35449716,-0.13635658,0.23342183,-0.38495007,-0.02785557,-0.17931157,0.7407624,0.2453845,-0.5847019,0.45736006,-0.4067159,0.122042194,-0.07627289,0.42616892,0.5238091,0.46244192,0.4101139,0.7181238,-0.47135392,0.027670475,-0.1510014,-0.3131584,0.12739505,-0.21209757,0.032769695,-0.4082213,0.1418678,0.29253393,-0.12024472,0.19696029,0.26350683,-0.58802795,-0.06835189,0.24842885,0.7965883,-0.1581867,0.08365964,0.6965221,1.1978098,0.8748365,-0.088565424,1.1012236,0.106186114,-0.1411064,0.22934557,-0.040551994,-0.67086035,0.20078088,0.3947422,0.42821687,0.14372487,-0.025742983,-0.13242409,0.18794036,-0.35667306,-0.09172388,-0.03794967,0.53974617,0.2008016,-0.07628086,-0.46595606,-0.23626566,-0.033869956,-0.08387682,-0.055123903,0.3714153,-0.102359295,0.5020746,0.10762286,1.3789304,-0.06327768,0.21564822,0.15571906,0.6276465,0.25585574,-0.060612246,0.09995272,0.3770095,0.04109591,0.13957094,-0.4564274,0.13036017,-0.22112712,-0.545482,-0.040206466,-0.45282358,-0.14904574,0.006393955,-0.199106,-0.24461628,-0.19508205,-0.1739942,0.44610104,-3.1155128,-0.2655653,-0.16249469,0.40698892,-0.26431292,-0.13370724,0.05410393,-0.50959694,0.35594878,0.41857135,0.55137765,-0.7457907,0.01163743,0.49433124,-0.47388506,-0.24485523,-0.39652967,0.12135842,-0.0413156,0.46713373,0.08977779,-0.1344031,-0.12607957,0.08485783,0.46431604,0.1360367,0.18063752,0.13383797,0.24154581,-0.17361793,0.2785274,-0.2100078,0.39773268,-0.3338752,-0.12624942,0.29502916,-0.3060034,0.21842977,-0.17990062,0.12484125,0.361544,-0.35516366,-0.6815914,-0.49222583,-0.06744002,1.2149552,-0.12304654,-0.5748142,0.26275268,-0.2261334,-0.1996641,-0.2103974,0.30519256,-0.06013077,0.07084738,-0.5914665,0.13663785,-0.1485029,0.07834126,-0.01920319,-0.025245782,-0.3006319,0.6125693,-0.022010842,0.464137,0.34661147,-0.012713635,-0.33310005,-0.3217734,0.030567426,0.6533385,0.47926292,0.15103605,-0.04812336,-0.1610282,-0.20687939,-0.22506033,0.18957381,0.57495123,0.6466163,-0.099455446,0.105844006,0.24692592,-0.10408702,0.049082983,-0.056999862,-0.21087027,-0.041482512,0.018944569,0.70382893,0.8674537,-0.2710406,0.16923091,0.008684142,0.48855093,0.0012679974,-0.47149557,0.43250763,0.473378,-0.14617436,-0.24600936,0.62776524,0.4068778,-0.3987812,0.42775622,-0.52089095,-0.33802548,0.49355295,-0.18391755,-0.52120185,0.22093238,-0.22241668,0.20081304,-0.7190226,0.33684558,-0.31715345,-0.48654938,-0.35748306,-0.20611914,-3.3320098,0.028940747,-0.20210543,-0.15983772,-0.072680034,-0.013718891,0.09621651,-0.49813303,-0.50223905,0.1018354,0.12395593,0.48872626,-0.16361882,0.051624462,-0.30071354,-0.39368913,-0.30773756,0.088043176,-0.023511386,0.28483087,-0.049023114,-0.36805305,0.03520955,-0.0061376533,-0.39343566,0.18910703,-0.44951168,-0.59017843,-0.11718931,-0.35667884,-0.33065218,0.6282488,-0.15941662,-0.0018877983,-0.13539556,-0.042796418,-0.21563488,0.06516287,0.078709796,-0.026150966,0.018362029,0.022620555,0.097448856,-0.40336162,0.4215867,-0.02195955,0.39525408,0.39131784,-0.14122997,0.052055463,0.4804314,0.49160594,-0.0031590532,0.73254263,0.16660684,0.084625706,0.3680823,-0.23563963,-0.4284263,-0.3422111,-0.24902011,0.22006108,-0.37910375,-0.3565561,-0.0010847857,-0.35118935,-0.5421429,0.5246461,0.12568793,0.12735699,-0.0038780808,0.23138343,0.5747129,-0.11727073,-0.0441604,0.13153218,-0.10148797,-0.68029696,-0.2121482,-0.7980472,-0.46027228,0.4309859,0.8358734,-0.19399433,-0.13800973,0.10004519,-0.07822736,0.036932398,0.048958674,0.120141014,0.04554492,0.36932132,-0.09953095,-0.5771802,0.51878285,-0.11925688,-0.22373953,-0.548313,0.16545817,0.48060104,-0.7496256,0.4692394,0.25095508,0.18960755,-0.11842652,-0.4308232,-0.08889993,-0.109263934,-0.27740988,0.40123627,0.16070881,-0.8873422,0.43848476,0.36421412,-0.31188545,-0.65282136,0.39238003,-0.20168778,-0.19631371,-0.026346529,0.26954907,0.30498612,0.03551867,0.14962249,0.24672247,-0.5907906,0.20400721,0.2146136,-0.10387961,0.5801956,-0.05128059,-0.15693556,-0.68755907,-0.05019939,-0.49136537,-0.32924354,0.1973559,0.07274263,-0.11424454,0.14187342,0.1382346,0.46801618,-0.21842076,0.13185184,0.0026891152,-0.26579568,0.54873264,0.42156765,0.52425486,-0.27139613,0.6189379,-0.03201167,0.07269263,-0.005026833,-0.07277708,0.3985858,0.1559216,0.34790364,0.03355282,-0.27085337,0.22020476,0.79415095,0.075917915,0.29951128,0.06000614,-0.03291179,0.32278016,0.051411256,0.15506922,0.08034262,-0.5783676,-0.023156412,-0.2448905,0.07656379,0.46721077,0.26182434,0.26610646,-0.07154382,-0.41552156,-0.017657785,0.14494847,-0.082291834,-1.0298916,0.088423915,0.04393307,0.7072716,0.45306414,0.115423836,-0.07225417,0.70616794,-0.01040672,0.041067846,0.315204,0.107904986,-0.50007635,0.6262495,-0.75052875,0.63280475,-0.06954401,-0.10388566,0.049563352,0.046527732,0.42238057,0.69683194,-0.13110264,-0.047547985,0.04345011,-0.33125564,0.13508344,-0.5047247,-0.019703101,-0.46841115,-0.19866307,0.46482214,0.48935363,0.17543726,-0.20221461,-0.008599339,0.018198473,0.0197352,0.2865847,-0.10634089,0.071254686,-0.2586183,-0.51779884,-0.29194096,0.49053052,0.26115522,0.20797418,-0.07860483,-0.16079253,0.22508135,-0.11993896,-0.15451083,-0.06799965,-0.48640403,0.06165654,-0.22599673,-0.44265178,0.5395181,0.03168638,0.22798915,0.18355256,0.09071175,-0.18475491,0.08693772,0.03180053,0.73222566,-0.1401441,-0.21154103,-0.4714604,0.073804684,0.011718217,-0.17439789,-0.110049374,-0.2726994,-0.06971703,-0.45686817,0.45061275,-0.011732008,-0.12541169,0.04177862,-0.05899338,0.05230405,0.5058904,-0.047209572,-0.23458308,-0.1817587,-0.15826628,-0.31537172,-0.20993409,-0.07622293,0.20756501,0.2886586,-0.06480183,0.014233226,-0.2373591,0.07874129,0.2342818,0.06387322,0.18758075,0.29415295,0.024258045,-0.309018,-0.030342845,0.08167783,0.41381603,0.019190112,-0.0128291845,-0.24087477,-0.65748876,-0.30221102,0.13724534,-0.13038096,0.36897695,0.096437104,-0.3144469,0.58162624,-0.10397238,0.9665194,0.03984152,-0.21668261,0.07586238,0.5178093,-0.06873325,-0.054094456,-0.3438759,0.9366796,0.48263925,-0.18746836,-0.2121918,-0.3146403,0.0900856,0.1324372,-0.22194226,-0.13863066,-0.056895692,-0.65538484,-0.21836211,0.095916085,0.25589517,0.17850477,-0.0695594,-0.012040794,0.18137386,0.14740483,0.37337902,-0.3529548,-0.2608366,0.416819,0.3282472,0.030865382,0.005643487,-0.3646048,0.38370958,-0.43835393,0.14646187,-0.34950295,-0.016848018,-0.15653174,-0.3567502,0.16609646,-0.13086902,0.27469787,-0.38661188,-0.49087316,-0.17338923,0.27679184,0.17469257,0.10464708,0.48931867,-0.16269395,-0.2203314,0.05142991,0.51611155,1.1877595,-0.11744893,-0.067868225,0.29069182,-0.40022972,-0.685636,0.32264838,-0.2952133,0.21959244,-0.042243503,-0.051548775,-0.63286823,0.30133566,0.2962907,-0.10531706,0.037031632,-0.5958061,-0.21592937,0.16641425,-0.5963118,-0.22275673,-0.48274964,-0.044366125,0.6238552,-0.23020649,-0.10589568,0.06422316,0.29511088,-0.31063265,-0.6777693,0.017665796,-0.29783052,0.22982316,0.027314646,-0.32758158,-0.0816882,0.19736147,-0.39290014,0.12839912,0.037328433,-0.32750612,0.08743744,-0.4776438,0.0011860708,0.8106012,-0.20640984,0.26521316,-0.48373005,-0.47981834,-0.7893342,-0.30759874,0.48903617,-0.0166347,0.084369816,-0.46885017,-0.15908651,-0.07402539,-0.0671569,-0.16130671,-0.23774482,0.4135055,-0.000997906,0.4366488,-0.071004026,-0.67748445,0.1907052,0.13219751,-0.03284751,-0.57356465,0.47883078,-0.17054535,0.6413019,0.14047623,-0.07527199,0.36025587,-0.5372623,0.06709214,-0.1976419,-0.26685554,-0.4150363,0.21737428 -153,0.28451508,0.14148071,-0.68616754,-0.24763343,-0.21935385,0.15626904,-0.20026207,0.37084794,0.26368877,-0.4445745,0.103018716,-0.063232444,0.001726443,0.39452562,-0.20542923,-0.56103086,0.23804505,0.113328665,-0.6819397,0.427674,-0.34917986,0.24229154,-0.07725991,0.37278074,0.21742523,0.2514214,0.06973131,-0.056968898,-0.07454921,-0.037245035,-0.12467993,0.3268997,-0.27387637,0.07307491,-0.19951853,-0.28538528,-0.046923988,-0.24694069,-0.34236795,-0.621109,0.17775607,-0.5435227,0.54901046,-0.06442274,-0.21528575,0.23816991,0.21266815,0.18932487,-0.068532854,-0.13632613,0.12077531,-0.20273098,-0.15719838,-0.082419686,-0.54469097,-0.51926225,-0.647859,0.05762159,-0.7474973,-0.006887719,-0.29078102,0.116413936,-0.27919972,-0.11059021,-0.0022267643,0.406411,-0.29385978,0.038886327,0.0220761,-0.100016035,0.17373055,-0.6082951,-0.23563865,0.042018585,0.3315956,-0.20441896,-0.32717815,0.3539287,0.33982122,0.3895126,-0.115223795,-0.16790283,-0.43513793,-0.041475542,0.020209726,0.5454947,-0.27297214,-0.36060488,-0.021319177,0.094302975,0.2863403,0.28139353,0.077566236,-0.29258448,-0.09020059,0.018406615,-0.19378187,0.58629245,0.53560424,-0.30381596,-0.12051849,0.45379525,0.49673483,0.17955042,-0.29457107,0.18745506,-0.13107397,-0.5798417,-0.15862632,-0.016593307,-0.06843139,0.44077468,-0.10255062,0.2566249,0.58788675,-0.026454676,-0.14430541,0.14538318,0.072090425,-0.05921992,-0.0965913,-0.08469579,0.092477314,-0.5142145,0.15402989,-0.19835606,0.5754788,0.099403314,-0.99562985,0.31114733,-0.4931901,0.079078935,0.04548613,0.41781437,0.8515892,0.36766738,0.074250184,0.6747798,-0.3469067,0.0866714,0.06672439,-0.3583971,0.027738903,-0.07086515,-0.036935396,-0.67719764,-0.06344851,0.0059573054,-0.116967484,0.3339536,0.40041423,-0.45009497,-0.2122339,0.22766823,0.74371374,-0.30936387,-0.23254596,0.684499,1.0385286,0.9266406,0.060443632,0.9697716,0.108816035,-0.17245035,0.22323585,-0.25555223,-0.6700307,0.27325848,0.29426497,-0.33818433,0.3439706,-0.004419038,0.11190996,0.29412213,-0.3563064,-0.07582927,-0.06719121,0.19198248,0.065118454,-0.07138983,-0.20552336,-0.3678003,0.07115378,-0.014193647,0.1345507,0.22888157,-0.22439548,0.38569212,0.1541512,1.4521768,0.06117428,0.008795824,0.023905376,0.45854574,0.27139166,-0.20501451,-0.2586199,0.37238765,0.4099533,0.0084453765,-0.38504055,0.012482436,-0.3227836,-0.32206166,-0.14819047,-0.3808752,-0.22625652,-0.046942886,-0.415978,-0.11821389,-0.10075112,-0.5812452,0.53123766,-2.9320707,-0.14334187,-0.10782224,0.28381193,-0.078316145,-0.33649665,-0.27667207,-0.47208232,0.36453462,0.26281708,0.32944334,-0.4708796,0.36709845,0.4864021,-0.4770673,-0.13993944,-0.6934669,-0.07510716,-0.03832973,0.22778477,0.0040579997,-0.031808328,0.16876172,0.35045803,0.37448242,-0.17307442,0.04065315,0.3242529,0.25684798,0.03765608,0.39069915,-0.13246366,0.62863696,-0.24994808,-0.13211343,0.2363148,-0.4896808,0.11752325,0.0073470958,0.15206964,0.5366386,-0.3520586,-0.89284396,-0.430533,-0.048665375,1.1425154,-0.26794764,-0.16097052,0.4246779,-0.348177,-0.42000598,-0.052633017,0.46760195,-0.070984036,-0.06978494,-0.6719965,-0.08173303,-0.062785484,0.08103433,-0.19333777,0.042713307,-0.3290498,0.5675962,-0.05444309,0.56352055,0.22126488,0.2882756,-0.37430194,-0.39093104,0.040769935,0.7543702,0.26892495,0.075770974,-0.123603195,-0.19586805,-0.46646363,-0.08450793,0.26092184,0.54025203,0.53700805,-0.07412167,0.08937588,0.25818315,0.039500546,0.04101277,-0.22921108,-0.24231553,-0.06300019,0.020886011,0.5053187,0.49468684,-0.058614366,0.49810117,0.043393902,0.13455904,-0.29514444,-0.44367412,0.4820813,0.8072116,-0.21869466,-0.40606853,0.5268884,0.29720277,-0.16591232,0.3665615,-0.57175905,-0.28024885,0.59343296,-0.17339852,-0.2728893,0.1692618,-0.2194145,0.14106356,-0.74337804,0.18557535,-0.10880586,-0.604478,-0.37350217,-0.14040461,-2.941369,0.01398761,-0.13928723,-0.27015954,-0.12557857,-0.09448802,0.21655062,-0.5396952,-0.48116243,0.1339909,0.11278914,0.6666142,-0.10125382,-0.05089663,-0.11360434,-0.43035606,-0.4260069,0.16087756,0.0064051077,0.39759693,0.0035050362,-0.22225064,-0.01747547,-0.22173044,-0.4222333,0.06691968,-0.38967586,-0.26776955,-0.14197588,-0.5211274,-0.3074892,0.72555315,-0.4664595,-0.00428929,-0.30964017,-0.032565974,0.032423317,0.20830132,0.16216393,0.07763076,0.11911207,-0.026409376,0.016527316,-0.39092067,0.1940454,-0.08600842,0.244369,0.37983736,0.12291124,0.30592382,0.580546,0.7292687,-0.18814436,0.9117582,0.4370553,0.03158754,0.30283743,-0.26680633,-0.28702366,-0.42880368,-0.28291178,0.006968174,-0.3907592,-0.31031302,-0.13663606,-0.37062258,-0.6513629,0.39796156,0.050264686,0.17983608,-0.07618575,0.28405812,0.396703,-0.23917377,-0.028571924,-0.09291153,-0.20993945,-0.3627596,-0.3115403,-0.6717735,-0.411515,0.1422123,0.9974536,-0.2533902,-0.0813809,0.06844891,-0.2938157,0.25902227,0.20092621,0.18046159,0.36837107,0.23866606,-0.22702855,-0.61415446,0.379622,-0.4089852,-0.17427091,-0.6638785,0.05781199,0.5943589,-0.46486768,0.54407954,0.2882144,0.11240977,-0.19958714,-0.5754652,-0.0015194863,-0.0056707487,-0.23203626,0.3909374,0.13194251,-0.91931254,0.45569372,0.22780974,-0.21052313,-0.5814239,0.5401882,-0.0019185133,-0.07996741,-0.06363563,0.38460052,0.05380176,-0.036578577,-0.1658337,0.037878476,-0.28278396,0.27227616,0.3141415,0.049179703,0.3712488,-0.29594147,-0.03577099,-0.64207816,-0.09135981,-0.5204614,-0.23086143,0.2247726,0.0992756,0.308609,0.039245926,-0.21339133,0.2730006,-0.3301425,0.1777674,-0.10104832,-0.2497398,0.260954,0.41369018,0.43460888,-0.32558453,0.6033442,-0.019991,-0.12410866,0.016553216,0.046084516,0.52691764,0.022898361,0.3482845,0.100786805,-0.27581382,0.21814984,0.7785113,0.2284382,0.22823939,0.0007906109,-0.22876415,-0.015260644,0.03227854,0.098098755,-0.0008277893,-0.5267933,-0.13087541,-0.24555135,0.20705399,0.5020794,-0.032572612,0.25156087,-0.04297192,-0.21737619,0.04971762,0.11253591,-0.081366,-1.5021564,0.3529334,0.3047544,0.7995237,0.3095712,0.18445109,-0.11085953,0.5938836,-0.14778769,0.23388773,0.26878625,-0.105601035,-0.32594866,0.46158233,-0.73311216,0.5988461,0.09525858,-0.01760543,0.09778633,-0.022521786,0.3665825,0.9515904,-0.22438566,0.10447484,0.08966109,-0.29834136,0.25768742,-0.3267456,0.038141146,-0.5301262,-0.31766066,0.5524747,0.37027752,0.42346328,-0.18745798,-0.031015657,0.04871428,-0.1301634,-0.025448823,-0.05260484,0.13883582,-0.2632534,-0.48101604,-0.16937913,0.38691574,-0.04011508,0.17582467,0.35915983,-0.17859867,0.37352064,-0.01982136,0.20447038,-0.06387094,-0.5588846,-0.01766378,-0.10820429,-0.43641585,0.4684978,-0.31804293,0.3479083,0.3285015,0.033765726,-0.2586203,0.4436333,0.2422495,0.70933753,-0.14133358,-0.057359703,-0.2843313,0.16577105,0.16464724,-0.11700025,-0.09787329,-0.3687646,0.021786094,-0.53339255,0.2664287,-0.1284669,-0.33866292,-0.1017566,-0.00061382353,0.17950355,0.51437104,-0.0891403,-0.09838252,-0.06961776,0.04870464,-0.21038271,-0.14373003,-0.091007285,0.2971491,0.052795064,-0.11421236,-0.18088941,-0.0952181,-0.049244635,0.1206889,-0.03817991,0.42273793,0.39224777,0.22391413,-0.24716188,-0.0037879944,0.20200706,0.4381561,0.05980477,-0.09812748,-0.24862942,-0.14934695,-0.2859219,0.20939565,-0.14963384,0.22573213,0.11721309,-0.2542493,0.553687,-0.1698522,1.085482,0.048282724,-0.2760932,0.06451538,0.48121718,0.055279426,0.028634682,-0.24909155,0.78108704,0.44535995,-0.014217004,-0.20564225,-0.3378206,-0.039166585,0.20174213,-0.19427998,-0.18306586,0.040829837,-0.59680295,-0.2568531,0.14581922,0.038101934,0.31024992,-0.20507002,-0.11078064,0.2955554,0.048780352,0.27341092,-0.46181443,-0.06499219,0.24476324,0.16150945,-0.04363822,0.15390232,-0.4486246,0.29484016,-0.4182114,-0.02785704,-0.08170883,0.23114786,-0.17043796,-0.18598634,0.22317758,0.023908675,0.29024914,-0.08345252,-0.2432908,-0.17944485,0.44246402,0.13995646,0.16634008,0.58072066,-0.19172165,-0.029857058,0.071369015,0.36557695,0.9589029,-0.23254432,-0.043593094,0.40763664,-0.23676287,-0.59330744,0.16940916,-0.51699847,0.24852866,-0.02240134,-0.15881732,-0.15185423,0.18609644,0.14045815,0.1609332,0.039503608,-0.540884,-0.21458356,0.26557344,-0.23254287,-0.14920087,-0.35675904,-0.13873972,0.50556374,-0.31949297,-0.29021934,0.11554171,0.1897172,-0.0016815029,-0.6772715,0.24414676,-0.2844623,0.32398513,0.11850602,-0.36405998,-0.104204684,0.021490753,-0.3806534,0.29645866,0.10873066,-0.30460042,0.04223177,-0.19681731,-0.06760362,0.91405606,-0.2868312,0.24516878,-0.31902865,-0.54834104,-0.78139466,-0.3279513,0.07333541,0.10321967,-0.052957743,-0.62958634,-0.0026481636,-0.05773934,-0.14487462,0.028649405,-0.20830032,0.4306072,0.103291534,0.34830105,-0.080979764,-0.9497475,0.10099157,-0.026573451,-0.24052313,-0.54353756,0.5734148,0.03217005,0.7094698,0.18445109,0.18957527,0.19412583,-0.34336945,0.2025502,-0.25178364,0.017261498,-0.46258843,-0.008840218 -154,0.4024722,-0.030213118,-0.70323974,-0.12266977,-0.26227942,0.26789224,-0.17240554,0.11570826,0.37192202,-0.07881392,-0.046459436,-0.12522745,0.0024436484,0.39651674,-0.09724574,-1.0119042,0.079787135,0.16462995,-0.623018,0.47972125,-0.47968924,0.5543801,-0.028169185,0.34536716,0.11440873,0.35000977,0.018079208,-0.042637113,-0.24321002,0.1375566,-0.11643309,0.3733475,-0.44152725,0.029477509,0.07483994,-0.3069414,-0.084865525,-0.28421706,-0.2275214,-0.7069121,0.39514616,-0.67170936,0.67567784,-0.040846094,-0.20658122,-0.013028002,0.076905124,0.40467185,-0.24124986,0.1814515,0.10479735,-0.30768389,-0.16307156,-0.050665755,-0.45034873,-0.47909853,-0.59279704,0.051137768,-0.61068743,-0.15818636,-0.16553393,0.2793974,-0.39306176,-0.24200909,-0.0850314,0.36408103,-0.33007333,0.23427035,0.46063307,-0.2313242,0.12677325,-0.50165874,-0.16790439,-0.025374921,0.45592594,-0.21763992,-0.2822775,0.11317646,0.5589335,0.50459576,0.042897698,-0.24322602,-0.31223726,0.06407689,0.055296674,0.6184308,-0.08416036,-0.2961109,-0.2234602,0.10112017,0.21543209,0.24648325,0.04839247,-0.39229518,-0.06404739,0.046088345,-0.030361596,0.4776526,0.37656802,-0.37233183,-0.27069473,0.39655733,0.48048204,0.21462907,-0.21795405,0.3536261,0.039994005,-0.5776795,-0.1330044,0.23276186,0.115320645,0.5873574,-0.14094073,0.17511867,0.7599501,-0.18870418,-0.17956528,-0.055928025,0.011748182,-0.08153139,-0.2013358,0.1386266,0.16516179,-0.34580266,-0.0064508365,-0.15346923,0.5596885,0.16130352,-0.76356757,0.36110088,-0.6055402,0.20411006,-0.17086817,0.63172793,0.9554822,0.26193693,0.32165942,0.90348345,-0.47993928,0.056207962,0.18243586,-0.59250295,0.07597765,-0.10283303,0.044532213,-0.6009816,-0.051015396,0.03601047,-0.05736017,0.2515258,0.35288483,-0.5015826,-0.13996808,-0.06237507,0.64245486,-0.38271654,-0.35777956,0.77952987,0.8301453,0.75440127,-0.0149058215,1.3169545,0.43494388,-0.19993195,0.15818864,-0.5311168,-0.5095819,0.1910603,0.18718252,-0.81075513,0.5407866,0.05591447,0.043526486,0.4669531,-0.059077345,0.0012100202,0.0746486,-0.0069414238,0.11967437,-0.23452559,-0.34614664,-0.14700237,0.08015156,0.0029364754,0.145321,0.18170847,-0.36013988,0.28686902,0.095085576,1.3900793,0.10746657,-0.020820769,-0.17086905,0.26667005,0.28389937,-0.25217727,-0.16334105,0.381122,0.3224573,0.011698349,-0.5212077,-0.07845537,-0.28109393,-0.29946205,-0.27461106,-0.32956064,-0.041688517,-0.143302,-0.4177861,-0.047437146,-0.058648188,-0.3720205,0.69159186,-2.6738532,-0.25436446,-0.14173585,0.3264733,-0.21322045,-0.39882505,-0.4763363,-0.40490583,0.07770621,0.2897708,0.3374847,-0.7189201,0.33761904,0.37259012,-0.48249838,-0.30476624,-0.5189676,0.016036604,-0.016313136,0.13627408,-0.07951164,-0.12540746,0.0027910883,0.2229369,0.55551296,-0.123676986,-0.056299943,0.21982695,0.5846732,0.034686998,0.47476885,0.04653186,0.6804148,-0.06547982,-0.24864785,0.34898221,-0.39264092,0.288631,0.1748487,0.12020779,0.3456219,-0.30196398,-0.9616959,-0.48946315,-0.26063803,1.1303588,-0.42587882,-0.3646219,0.23717001,-0.17448027,-0.39053524,0.03688381,0.48707926,-0.1985031,-0.10968125,-0.76216626,-0.06696255,-0.012090476,0.077855974,-0.062187966,0.15682599,-0.1508045,0.55389315,-0.17231849,0.2091592,0.25742123,0.2108728,-0.2748094,-0.4789266,0.10064234,0.8583604,0.3409524,0.09633221,-0.15081078,-0.31589666,-0.29479116,-0.16706559,0.15040675,0.6386475,0.6233054,0.0676941,0.16930892,0.3531334,-0.08988183,0.084205315,-0.14661744,-0.37012944,-0.011062283,0.024245968,0.6310181,0.64215714,-0.16698454,0.6775706,-0.009079938,0.027374946,-0.1943817,-0.57127404,0.6789455,0.8685845,-0.18010558,-0.37787566,0.48330864,0.20854174,-0.5265131,0.30031058,-0.55300367,-0.1648714,0.7398873,-0.19794512,-0.37389076,0.2791258,-0.35237688,-0.008845996,-0.98649085,0.11864115,0.025986016,-0.4364572,-0.21203884,0.013852773,-4.0714626,0.13942602,-0.15584418,-0.110589795,0.008687899,0.07798365,0.18000998,-0.57766116,-0.6577826,0.07526329,0.06675453,0.50726575,-0.23065533,0.16506328,-0.2997869,-0.35148752,-0.10887297,0.21584381,0.097663894,0.3399169,-0.03477426,-0.41618893,0.05920323,-0.2531595,-0.49500117,0.074443325,-0.57943046,-0.6749667,-0.1250277,-0.67910105,-0.2162644,0.83901775,-0.5395288,-0.17365327,-0.2616465,0.10552228,-0.113455944,0.34762394,0.06585277,0.22728676,0.22360252,0.048909076,-0.12659055,-0.2394986,0.35464472,0.082786255,0.28244355,0.41393244,-0.06817141,0.34976858,0.58430237,0.62439126,-0.022730704,0.8558257,0.37681276,-0.043811295,0.27035028,-0.3472985,-0.06636877,-0.643952,-0.33130562,-0.3773434,-0.5025393,-0.5881252,-0.28820422,-0.3585193,-0.779409,0.43464887,-0.05475964,0.27510425,-0.12526849,0.4287234,0.5597044,-0.14856815,0.10124932,-0.13748556,-0.27063486,-0.30869463,-0.34091422,-0.5559987,-0.6568556,0.46179837,0.8675508,-0.37443975,-0.02335602,-0.0932221,-0.33825248,-0.052898917,0.08714529,0.28718475,0.3157211,0.44536978,-0.25454494,-0.6707836,0.27299008,-0.3546672,-0.20684846,-0.7793695,-0.003613252,0.71852714,-0.5933733,0.7395957,0.34208342,0.16746694,0.213907,-0.54015994,-0.2705297,0.14978406,-0.34062254,0.49341333,0.24258243,-0.5745021,0.39887252,0.17935568,-0.072550125,-0.61640763,0.6202268,-0.042173807,-0.12033172,0.030636255,0.42135912,0.14358984,0.0058735493,-0.02681436,0.1455833,-0.50347346,0.15505812,0.3912649,-0.09818367,0.51925623,0.16793683,-0.25511676,-0.7666272,0.10397529,-0.5195301,-0.31557477,0.108556084,0.058931343,0.30889565,0.13591938,0.00039884908,0.339303,-0.40424797,0.03310754,-0.034960434,-0.110291295,0.12713704,0.49140847,0.2709025,-0.53409463,0.4713235,0.054370206,0.036407854,0.11516886,0.0585531,0.5888531,0.21879308,0.39339235,0.14263731,-0.29658812,0.22635065,0.5790907,0.08253373,0.33757174,0.106116936,-0.16130158,0.15661865,0.13438915,0.20893814,-0.08711922,-0.38722706,-0.23278397,0.01453804,0.26291555,0.54922926,0.1623397,0.4052191,-0.13001502,-0.29176384,0.32346237,0.18113297,-0.018832864,-1.0565567,0.30753344,0.3518469,0.7288176,0.3674659,0.07827969,0.11757006,0.24963944,-0.37236002,0.1554919,0.45331925,-0.17781147,-0.4499338,0.5676957,-0.5961339,0.5543421,-0.12995493,0.038870566,0.1199447,0.2359048,0.2709938,1.0891678,-0.19608854,0.0035691191,0.067797616,-0.21863382,-0.054152068,-0.28484133,0.0054582036,-0.6958103,-0.16430761,0.6526413,0.6076666,0.279405,-0.29881784,-0.040334363,0.034763254,-0.1846386,-0.0701926,-0.050839826,0.1590295,-0.24938425,-0.61834687,-0.28718612,0.6046289,0.17341512,-0.05616211,0.12772863,-0.23803172,0.36467484,-0.1963749,0.034740753,-0.11792134,-0.734224,-0.11658135,-0.31147254,-0.7684796,0.471654,-0.21761595,0.30073774,0.2746983,-0.02305256,-0.44005173,0.5470391,0.13791035,0.9129712,-0.06439899,-0.1281392,-0.37490895,0.20769006,0.38400033,-0.18136877,-0.2701368,-0.36575487,0.13604179,-0.37567946,0.5459901,-0.12178552,-0.4353619,-0.16088223,0.0036065946,-0.063797385,0.39220703,-0.3310693,-0.16652685,0.088462,-0.13486014,-0.37005174,-0.01997712,-0.33014452,0.2217025,0.23311904,-0.25529078,-0.061741516,-0.14072967,-0.16240083,0.042494316,0.060215756,0.24283317,0.5046226,0.066335276,-0.31191492,-0.039276164,0.26195553,0.41369626,0.07449076,-0.13627535,-0.2272865,-0.27306584,-0.43626344,0.32136023,-0.08900155,0.19852029,0.032420896,-0.5365949,0.77106434,0.20301738,1.4103907,-0.04968116,-0.25422066,0.06988619,0.52049243,0.011788707,-0.0313895,-0.2783716,1.0166377,0.64895374,-0.108910814,-0.286925,-0.41359523,-0.1967841,0.23516554,-0.33807814,-0.066700034,-0.07380941,-0.62472945,-0.2750178,0.243687,0.11936439,0.17047961,-0.018409807,0.041483227,0.15648238,0.09169601,0.26190975,-0.5524209,-0.2088398,0.115500726,0.4533982,0.040814802,0.231398,-0.31297633,0.37746328,-0.64079106,0.18560266,-0.44131696,0.21262206,-0.12805404,-0.1804405,0.26184407,-0.048115637,0.3496038,-0.2159392,-0.08426936,-0.39807063,0.6290719,0.18219122,0.20214513,0.7332722,-0.3133694,-0.16263025,0.19539276,0.53453726,1.388038,-0.060615953,-0.05229623,0.49479154,-0.2532975,-0.7170411,0.1855596,-0.48348218,0.24336733,-0.13442887,-0.31026694,-0.31574652,0.24146406,0.0006709282,0.17157087,-0.033638816,-0.5071033,-0.20592692,0.35810348,-0.3409349,-0.2368848,-0.21172954,0.188275,0.7869901,-0.3403007,-0.3622975,0.0447105,0.24890812,-0.31021473,-0.4917978,0.2278511,-0.23695263,0.51898503,0.07616206,-0.35736653,0.04435139,0.19799335,-0.36261755,0.2500668,0.41242582,-0.39583233,0.10735715,-0.11813061,-0.24972226,1.1175843,-0.16607939,0.25199696,-0.65927315,-0.43245146,-0.85843766,-0.27011985,0.103469126,0.07250839,-0.15749463,-0.7023706,0.094247386,-0.095503844,-0.3554229,0.06654617,-0.5365692,0.43088838,0.060638025,0.4701595,-0.08859254,-1.0948961,-0.045313433,0.1821803,-0.39680386,-0.7424774,0.563504,-0.22658648,0.7875287,0.17956635,0.15292999,0.3829794,-0.39478275,0.25543052,-0.2497563,-0.019463602,-0.7789363,0.020163812 -155,0.23687682,-0.09667566,-0.378951,-0.14454311,-0.10312773,0.19053331,-0.252075,0.39689958,0.07535601,-0.46837133,-0.031373344,-0.084992126,0.02196965,0.312847,-0.15047567,-0.31070936,-0.031061143,0.13384376,-0.46923262,0.33357576,-0.5137581,0.20371355,-0.16666685,0.35265148,0.074831076,0.14411166,0.26955512,-0.16262044,-0.22584584,-0.079324484,0.12013795,0.29293332,-0.42907178,0.081773415,-0.15053792,-0.21121426,0.0045315903,-0.4060425,-0.36269054,-0.670186,0.40496168,-0.83372587,0.5155566,-0.028922208,-0.15832256,0.4534912,0.20692119,0.17841342,-0.31064034,-0.080559365,0.19066574,-0.1536366,-0.20023006,-0.14803554,-0.14710857,-0.17549986,-0.5330295,0.0020253449,-0.46829847,-0.08464727,-0.42497838,0.17930566,-0.4316551,0.14724322,-0.11308555,0.48712686,-0.50163233,0.06697945,0.15377155,0.01883641,0.12700626,-0.5231051,-0.15820186,-0.1748895,0.1761447,-0.1920543,-0.13680834,0.29968792,0.28385475,0.345839,-0.15368499,-0.13574377,-0.19921143,-0.19647838,0.2169369,0.45584318,-0.12359738,-0.46534073,-0.052808207,-0.13031477,-0.000174431,0.10100394,0.07020203,-0.15899454,-0.16229957,0.21989952,-0.30091694,0.40528688,0.5580857,-0.2000584,-0.16925834,0.42369574,0.5537953,0.10263667,-0.14151339,-0.023168514,0.0057293405,-0.46948984,-0.16545674,0.12266258,-0.21135116,0.41341114,-0.17206486,0.2965435,0.5464731,-0.3629653,-0.105897784,0.0062603313,0.09630085,-0.115128525,-0.165763,-0.33174455,0.16835268,-0.48756945,0.21262598,-0.11138995,0.7895101,0.15156336,-0.6138567,0.40599492,-0.46533263,0.10869112,-0.039226346,0.6434035,0.68917847,0.42103624,0.41587335,0.6281436,-0.44916847,-0.07940213,-0.06274366,-0.45376956,0.07107598,-0.25343242,-0.11185549,-0.35550645,0.012727507,0.14173375,-0.06493629,-0.019750992,0.42813635,-0.33529514,-0.054400597,0.05845692,0.63853914,-0.368031,-0.025895732,0.69208187,0.99876773,0.9531554,0.14772859,0.9822067,0.15221487,-0.18752548,0.19228904,-0.10358023,-0.96961683,0.3966025,0.4135142,-0.06640527,0.22036219,0.2056622,-0.06482831,0.3376509,-0.67663884,-0.07398283,-0.1575142,0.259184,0.12148126,-0.11086636,-0.36881003,-0.22755095,0.0954432,-0.11198733,0.24827896,0.28375667,-0.23872952,0.3183233,0.041133378,1.4844464,0.0043253363,0.10568202,0.16470854,0.44184348,0.07835962,-0.08174243,-0.18223003,0.32013968,0.47518322,0.13285412,-0.5848971,0.07193274,-0.14617564,-0.46594015,-0.11529021,-0.3668329,-0.10011958,-0.081826404,-0.4176369,-0.078538656,-0.12591524,-0.39209014,0.33193773,-2.845687,-0.13897316,-0.16607523,0.26780626,-0.16378048,-0.25164667,-0.16254807,-0.52126,0.40564123,0.37541705,0.381798,-0.56843597,0.32607636,0.26560023,-0.50204223,-0.11534451,-0.64964044,-0.20506911,-0.13333152,0.3119792,0.06340305,-0.12151004,-0.0019264271,0.16071606,0.44953856,-0.12048144,0.084809415,0.33827162,0.4437055,0.08966373,0.43926525,0.008804556,0.4814181,-0.4103252,-0.17819366,0.214089,-0.4038436,0.26935247,-0.12310408,0.059827678,0.44671234,-0.4456908,-0.8673152,-0.51429504,-0.18380457,1.343322,-0.3507962,-0.26232362,0.2761301,-0.45264608,-0.27017358,-0.17484328,0.5220767,-0.2634832,-0.14507,-0.8449271,0.12318819,-0.12460788,0.30063948,-0.15187056,0.18600817,-0.42046502,0.50515777,-0.16893865,0.5795549,0.35323414,0.08696103,-0.40242413,-0.3977241,0.019246196,0.85644853,0.2526557,0.2088047,-0.3181049,-0.20284748,-0.25470743,-0.10796431,0.12744401,0.4333463,0.65846723,0.045986585,0.26889324,0.24824275,0.00041584572,0.0016123672,-0.20783505,-0.12197105,-0.10895452,0.036683034,0.59449667,0.4765067,-0.20578489,0.3751485,-0.054678954,0.17827241,-0.27521724,-0.38102227,0.37775022,0.8096676,-0.15152344,-0.2384551,0.6067456,0.5990368,-0.26797873,0.44646642,-0.6032636,-0.37751135,0.5136626,-0.20339155,-0.32734114,0.13684055,-0.31049052,0.13851538,-0.79284304,0.34800598,-0.21055922,-0.47371894,-0.55258155,-0.14003369,-3.0902221,-0.029324654,-0.21679412,-0.23931125,-0.14938878,-0.21919148,0.2692094,-0.5189141,-0.63471055,0.1549793,0.0044962484,0.7449744,-0.015846502,0.028306877,-0.21623239,-0.13490559,-0.3079632,0.021573609,0.26640627,0.34044826,-0.03943837,-0.5137151,0.060602717,-0.35533467,-0.3662735,0.018626519,-0.3509086,-0.3893866,-0.11722718,-0.40617618,-0.36522678,0.63782865,-0.30507267,0.025969068,-0.24383317,-0.09488266,-0.028669897,0.5010713,0.1111935,0.07837882,0.022804596,-0.12694551,0.088480584,-0.24838838,0.40492085,0.0019427468,0.21529852,0.4850773,-0.12731542,0.06639804,0.5278258,0.6239605,0.016752938,0.9688375,0.43810079,-0.03186737,0.2920259,-0.3173151,-0.20863742,-0.47484702,-0.28089148,0.16007169,-0.5232794,-0.3758458,-0.0467374,-0.25921413,-0.739395,0.5551758,-0.07517918,0.18510617,-0.09235541,0.25046647,0.32302767,-0.11528208,-0.040789746,0.013611825,-0.11362009,-0.4427561,-0.2629709,-0.72121185,-0.46423498,-0.14411524,1.0316367,-0.019603463,-0.009860579,-0.11783919,-0.2852392,0.048007987,-0.00043649177,0.1106744,0.4415832,0.4050785,-0.030184139,-0.63415533,0.5051858,-0.26561686,-0.17835228,-0.6605946,0.031479307,0.50058967,-0.60189915,0.43324196,0.54157454,0.09932851,-0.23603392,-0.62419474,-0.20048591,-0.009162708,-0.23396635,0.48285788,0.24164183,-0.95576286,0.5717567,0.34468836,-0.28440675,-0.6600888,0.5683979,0.035426967,-0.08139746,0.06160728,0.36788553,0.028579967,0.010774593,-0.23586608,0.26421317,-0.40301147,0.34557202,0.09964369,-0.0388273,0.58810717,-0.2853433,-0.104189016,-0.6149509,-0.1531076,-0.52892435,-0.19808222,0.043472864,0.024450807,0.11507929,0.2641886,-0.07685884,0.40801275,-0.3453311,-0.013064277,-0.042994857,-0.31331718,0.26127604,0.47629267,0.45775267,-0.30633646,0.73317975,0.037425168,-0.052309196,-0.21417756,-0.014123563,0.3895133,-0.039926697,0.40969416,0.051471844,-0.13209723,0.33328542,1.0035819,0.30329636,0.5262359,0.11782046,-0.20312552,0.22683129,0.098280884,0.2427153,0.15117575,-0.46282777,-0.0720046,-0.19442225,0.1948448,0.5212689,0.08428321,0.4485127,-0.1738692,-0.2946449,0.08499123,0.15806977,-0.057169072,-1.2980211,0.43605942,0.23302579,0.7602313,0.3932902,-0.09396728,0.16409925,0.5331899,-0.2785441,0.07821373,0.28323695,-0.044256404,-0.5165016,0.5858948,-0.6647036,0.47872683,-0.14756887,-0.017377261,0.036310203,-0.015560516,0.45637423,0.7536752,-0.05233781,0.1463617,0.12945439,-0.3066463,0.47055086,-0.38551372,0.099827565,-0.4701424,-0.13543962,0.55229264,0.357915,0.29300803,-0.16915454,-0.05289825,0.11382501,-0.235444,0.04279908,0.009818172,0.05683485,-0.17928293,-0.731972,-0.36278668,0.46662578,0.25336793,0.27009067,0.057227526,-0.17423995,0.28937203,-0.12263168,0.0055874386,-0.05988767,-0.59337866,-0.10229562,-0.21256848,-0.5052671,0.3537914,-0.3196939,0.39874935,0.33297,0.05675181,-0.5265959,0.21256307,0.2995692,0.60596377,-0.138479,-0.19699137,-0.337127,0.07010262,0.36329505,-0.14587447,-0.120564714,-0.38356754,-0.0016655525,-0.55218405,0.47304013,-0.3001719,-0.27863804,0.12735596,-0.16635732,-0.013445808,0.6101159,-0.09234175,-0.030153632,-0.19706097,-0.20805801,-0.22304909,-0.2034988,-0.113365434,0.18241526,0.27628818,0.008513419,-0.14301716,-0.115649536,-0.2367367,0.42027885,0.043219972,0.2562774,0.3093806,0.1401651,-0.3833395,-0.16490307,0.007971945,0.6749409,-0.020403298,-0.27122968,-0.3901211,-0.33876324,-0.18569992,0.3867422,-0.226852,0.25852427,0.06204747,-0.43637875,0.6020768,-0.15396073,0.8399387,0.117952116,-0.34458777,0.027334617,0.575819,0.011342378,-0.088594265,-0.29470003,0.7245753,0.36322778,-0.10103885,-0.2536151,-0.40904695,0.04366237,0.18073162,-0.24871597,-0.4661114,-0.09493187,-0.5388571,-0.15386659,0.21170416,0.25057167,0.09469107,-0.08797324,0.08907998,0.18330696,0.08661273,0.36667222,-0.38897422,-0.023930894,0.42886657,0.18362135,0.045324948,0.065685466,-0.40894744,0.4264281,-0.51975656,-0.03965707,-0.08645405,0.15800068,-0.18010564,-0.2852059,0.26440996,0.18062791,0.3830939,-0.16173694,-0.3050651,-0.18973367,0.39507398,0.18186906,0.23031229,0.56126183,-0.14256243,0.09317417,0.10964737,0.4340605,0.80072784,-0.14408083,0.11215841,0.26155204,-0.2234401,-0.6592176,0.42358744,-0.3210037,0.3190386,-0.04372167,-0.229409,-0.5258284,0.28725433,0.26245484,0.050866805,0.08633998,-0.47565377,-0.31047502,0.31591216,-0.21417001,-0.26203197,-0.36810723,-0.13742277,0.57720816,-0.24179235,-0.10319498,0.043553773,0.37212092,-0.16599983,-0.53486824,-0.1647944,-0.37598115,0.24917266,-0.020017935,-0.20810822,0.0065295976,0.103496306,-0.39236456,0.23315828,0.19784197,-0.32014084,-0.0076703173,-0.25424775,0.003360776,0.75293756,-0.27398828,0.1716297,-0.49598545,-0.45734024,-0.8887799,-0.1350287,0.510089,0.109829076,-0.010058873,-0.59460133,-0.013341288,0.0780759,-0.21119852,-0.07763468,-0.5379919,0.4104561,0.15241647,0.30717283,-0.0042828443,-0.58180845,-0.08069751,-0.09711816,-0.18901974,-0.3440026,0.5817548,0.07093235,0.72525465,0.16432227,0.19367911,0.26092243,-0.38628337,0.14259437,-0.13617347,-0.15713896,-0.5560366,0.10310198 -156,0.34709856,-0.26896384,-0.545933,-0.10266144,-0.1755773,0.2176197,-0.22619686,0.22748159,0.08471731,-0.48541874,0.028589675,-0.18245621,-0.07203768,0.27365983,-0.14396834,-0.27022848,-0.13296767,0.24432099,-0.6682487,0.29283723,-0.4414602,0.32340893,0.0094639575,0.2565342,0.15591049,0.17250729,0.19572374,-0.08760174,-0.1619982,-0.33913416,0.009641818,-0.03365503,-0.61724776,0.16828813,-0.26370615,-0.46386448,-0.03673699,-0.4464738,-0.5068311,-0.70130485,0.4070718,-0.90020186,0.65041286,0.04983527,-0.18915042,0.4459416,0.1642371,0.28092724,-0.20691077,-0.0059401733,0.30695224,-0.2064228,-0.11135722,-0.21894288,-0.251077,-0.29524827,-0.5615296,0.0515889,-0.35643214,-0.040315118,-0.38383386,0.18707684,-0.29183605,0.26572436,-0.24555792,0.37125516,-0.28031427,0.17410763,0.14402665,-0.14296794,0.18734312,-0.4506741,-0.10232695,-0.11281564,0.052843396,-0.1345658,-0.08402194,0.33667317,0.013761401,0.4741936,-0.13498165,-0.14290711,-0.3329437,-0.069284014,0.08443231,0.54322344,0.0070701963,-0.23867321,-0.13553493,-0.16892597,0.15827903,9.860737e-05,0.077217385,-0.16629627,-0.004500625,-0.08712768,-0.31402835,0.4217782,0.56353295,-0.1808617,-0.21681519,0.46104893,0.50169,0.016280407,-0.1667179,0.0139755905,0.003479302,-0.47737336,-0.22312827,0.16064286,-0.2204911,0.34681728,-0.04912162,0.2881232,0.4795793,-0.2987573,-0.03440204,0.06611095,0.1317095,-0.10350181,-0.045577493,-0.36800155,0.3017168,-0.43940946,0.029140566,-0.2922028,0.6787571,-0.037331384,-0.68047625,0.30295557,-0.5531927,0.08335148,-0.02062214,0.5644033,0.51670283,0.57330525,0.3591815,0.7197299,-0.46411276,0.044977646,-0.08813494,-0.29351252,0.11664633,-0.16371441,0.06912339,-0.3361828,-0.066409655,0.02340732,-0.1091813,-0.0756333,0.37178987,-0.3962924,-0.05466744,0.15690482,0.6714243,-0.29098105,0.05837602,0.6963696,1.0585365,1.0699915,0.056660384,1.0811926,0.2600818,-0.22462435,-0.019381955,-0.17997889,-0.90256786,0.25055537,0.17329311,-0.08793765,0.33482614,0.18142942,-0.008016301,0.2639517,-0.49818638,-0.037079684,-0.14255168,0.21114774,0.027648082,-0.06365559,-0.2816303,-0.24555014,0.109719686,-0.005838769,0.31038114,0.20302033,-0.42240122,0.30881244,0.1603525,1.5883806,-0.1272641,0.14530815,0.08012537,0.39262655,0.061581366,-0.21478295,-0.10492308,0.13462189,0.37559345,0.08685943,-0.6050563,0.08963515,-0.14653373,-0.45073298,-0.12000247,-0.2550058,-0.13937174,-0.17499802,-0.23927896,-0.1559827,-0.038252894,-0.47906798,0.28585768,-2.755661,-0.0034536633,-0.03112468,0.31281945,-0.090739466,-0.25465843,-0.10776811,-0.5058336,0.33535814,0.3712594,0.32740113,-0.6426013,0.47933695,0.4483228,-0.512949,-0.011121495,-0.50381124,-0.0045013386,-0.13805176,0.31665322,0.2058198,-0.049137082,-0.046864193,0.10133983,0.3932105,-0.08043657,0.11683413,0.3868874,0.43275002,0.02314513,0.54652876,0.11945171,0.51687753,-0.49462774,-0.15307088,0.40746883,-0.57631505,0.16863552,-0.12714039,0.2390572,0.44584754,-0.46290973,-0.8658969,-0.5485079,-0.07869165,1.2799321,-0.22879873,-0.4004256,0.18644166,-0.24702154,-0.38270357,-0.056254447,0.4370548,-0.24442948,-0.034903567,-0.79530627,-0.17868426,-0.20731552,0.46036983,-0.11697497,0.015377278,-0.47540477,0.6134847,-0.064715065,0.6143807,0.22456636,0.06296427,-0.48961893,-0.3878314,0.17021196,0.9971234,0.29684752,0.1128975,-0.3039129,-0.12266811,-0.29565793,-0.08576167,0.023481233,0.4027987,0.59844303,-0.05680705,0.18150724,0.22205268,-0.088725425,-0.037891053,-0.10669736,-0.15228918,-0.15167762,0.0039177537,0.57242644,0.5600799,0.02214557,0.26620844,-0.10117956,0.48614618,-0.2813689,-0.41959432,0.44056746,0.7174798,-0.053103685,-0.27482563,0.6721059,0.6329218,-0.2804486,0.52289706,-0.5108966,-0.52146536,0.3307789,-0.13115272,-0.35854444,0.25039557,-0.30866107,0.22073977,-0.7679597,0.27820203,-0.16428375,-0.5355011,-0.6435609,-0.21685852,-3.20441,0.07642678,-0.05933074,-0.24316955,0.020446202,-0.11711221,0.28163534,-0.31995425,-0.6328762,0.040776573,0.21670544,0.7849871,0.030793812,0.12842423,-0.18983713,-0.23152308,-0.35274893,0.19518049,0.17664048,0.21612194,0.003166863,-0.44196948,-0.106760375,-0.33402535,-0.2689082,-0.08233774,-0.6169612,-0.22136042,-0.17137739,-0.47300005,-0.39470258,0.60841703,-0.16506138,0.03179586,-0.21467781,-0.06771092,0.053681884,0.36950907,-0.014351545,0.060424592,-0.037986655,-0.16969666,0.103590176,-0.19243021,0.27945074,0.101772286,0.30142185,0.48484525,-0.23430751,0.009735942,0.33358663,0.62773687,-0.08150426,0.9158855,0.24319108,-0.14146666,0.21824837,-0.072721966,-0.29506308,-0.46853647,-0.10103637,0.039899588,-0.46203288,-0.34283277,-0.011157049,-0.31678146,-0.83794254,0.6480561,-0.013158645,-0.010870786,-0.04022324,0.30081266,0.28287786,-0.09215052,-0.03110582,-0.10314603,-0.098165266,-0.2346793,-0.4494795,-0.73119277,-0.36607555,-0.18907963,1.1971375,-0.063801214,0.022768881,0.20282312,-0.18990351,0.14600947,0.17574419,0.04432508,0.3349047,0.54839265,-0.008287149,-0.6081105,0.50654835,-0.36791167,0.026057128,-0.49479803,0.11125294,0.6439534,-0.5717251,0.30778715,0.38694313,0.15082853,-0.2887985,-0.45413324,-0.11525186,-0.06742388,-0.14765842,0.39405435,0.28534263,-0.83400905,0.43197605,0.21387495,-0.34014273,-0.7404777,0.37257704,-0.05147857,-0.13822632,0.005487174,0.24324901,-0.13220786,0.035223383,-0.25954565,0.2350289,-0.43333083,0.24639942,0.08494971,0.07301552,0.24350372,-0.26377922,-0.13144001,-0.5517639,0.02433631,-0.40870592,-0.184827,0.19198532,-0.07637029,0.06280664,0.4849933,-0.11868799,0.26944152,-0.22360682,0.042151,-0.07410832,-0.22769701,0.5021896,0.43569502,0.44384256,-0.49950457,0.7134371,-0.04044201,-0.17938504,-0.10269562,-0.13653709,0.42789847,-0.043533947,0.3997895,0.16219191,-0.05184012,0.3978234,0.84578055,0.27595228,0.40842488,0.12343449,-0.14946845,0.24751833,0.102243796,0.22890635,0.04765273,-0.5522905,-0.018717166,-0.17966437,0.15394072,0.3519264,-0.04289317,0.4558072,-0.18556203,-0.17250678,-0.025321977,0.098688684,-0.18454777,-1.2092268,0.36629698,0.09697627,0.73092884,0.4642934,-0.022982972,0.13246942,0.74389553,-0.20218603,0.051218707,0.16146533,0.07235665,-0.43242884,0.5024887,-0.47930908,0.52952254,-0.03183837,-0.075502045,0.030753851,-0.068084314,0.4512878,0.7286059,-0.14661859,0.09026183,0.039726846,-0.32231745,0.27755043,-0.2754051,0.32485336,-0.45397827,-0.22151329,0.84215134,0.42521116,0.41875786,-0.13242336,-0.008464226,0.045750234,-0.1902847,0.051808774,0.06459255,0.053764574,-0.13130732,-0.6434842,-0.030287743,0.535907,0.12984745,0.15185072,0.12489387,-0.29730394,0.15227522,-0.082203254,0.025492594,-0.14126173,-0.66157883,0.109108165,-0.19712658,-0.46465582,0.20525734,-0.25526962,0.26174816,0.24810909,0.0111240465,-0.39541158,0.20865329,0.34542665,0.6648199,0.048975978,-0.07145642,-0.18581973,0.24041025,0.20455508,-0.2961959,-0.06230923,-0.30772194,0.15948561,-0.65092033,0.49241415,-0.23236535,-0.444007,0.18287148,-0.17441435,0.086472996,0.6388159,-0.07972001,0.0046517765,0.121725,-0.03144049,-0.22663058,-0.19701259,-0.31739888,0.221277,0.19294678,-0.08580588,-0.0016688237,0.07680889,-0.10591873,0.44374543,0.15298517,0.3668546,0.39274612,0.10071135,-0.44158676,0.051701665,-0.19626196,0.8103323,0.04886015,-0.19866474,-0.3647789,-0.36021605,-0.2863696,0.47499964,-0.10313932,0.1999844,0.004500602,-0.35407728,0.68486166,-0.027644863,0.9570179,0.006824919,-0.26742798,0.12342776,0.6920723,0.08010251,-0.12498234,-0.43536767,0.9231657,0.49811682,-0.21232398,-0.1662769,-0.3159109,0.060311444,0.09930553,-0.28578582,-0.30893418,-0.14114161,-0.6892667,-0.1306678,0.23108837,0.3194058,0.092307374,-0.22734436,0.34102392,0.35952023,0.0068848007,0.2469341,-0.4460728,-0.07312828,0.39601216,0.08536607,-0.032356102,0.108722515,-0.47420225,0.30316025,-0.5380458,-0.037610773,-0.09106149,0.104948856,-0.09701105,-0.2924867,0.28542343,0.15166566,0.20876054,-0.43714553,-0.26945272,-0.14474164,0.38369873,0.18927884,0.33324313,0.6610401,-0.15842776,0.13455686,0.06512285,0.43281025,0.88407654,-0.19861817,0.14622235,0.2739053,-0.31964675,-0.62262547,0.3339143,-0.2551735,0.12160812,-0.028608058,-0.3051427,-0.42576385,0.38152885,0.15319525,0.02045243,0.09055488,-0.7008222,-0.14928968,0.2980681,-0.25176868,-0.2221163,-0.33530787,-0.16288887,0.46307102,-0.09856635,-0.31809667,0.09465376,0.39573961,-0.27437907,-0.51884854,-0.13277258,-0.42390174,0.24831216,-0.15058865,-0.15255561,-0.19684646,-0.05206695,-0.48646396,0.21133403,0.122876815,-0.35912177,-0.007417468,-0.3380558,0.06118244,0.7458125,-0.1479421,0.062294986,-0.47952327,-0.5254641,-1.0679134,-0.15898411,0.4178738,0.10706461,-0.12009557,-0.5977154,-0.14977501,-0.08258116,-0.18666275,-0.14581703,-0.4402223,0.33423337,0.09771071,0.33930993,-0.04662633,-0.9000672,0.06136053,0.09261497,-0.30713382,-0.41450542,0.58331627,0.013456737,0.6770624,0.08648141,0.12358594,0.2606618,-0.5799404,0.19576895,-0.17649624,-0.103381656,-0.52162516,0.17498708 -157,0.259644,-0.28361687,-0.32724425,-0.22603106,-0.32050818,-0.043737043,-0.15851292,0.4650742,0.22762774,-0.114385866,-0.09377235,-0.0630887,0.06003971,0.37884817,-0.14702071,-0.40596512,-0.13523017,0.07717792,-0.67457944,0.52139115,-0.46543676,0.14557444,-0.024577925,0.39388663,0.1963395,0.3552571,0.27524576,-0.0031942895,-0.04379045,0.015248888,-0.26142433,0.17905818,-0.23883371,0.24460836,-0.26166153,-0.22860742,0.06875398,-0.5835921,-0.049507294,-0.6289006,0.15413494,-0.81864303,0.36103576,-0.13250783,-0.123604715,0.046854753,0.36320367,0.18706499,-0.41855186,-0.22728209,0.17569228,-0.061382156,-0.12889601,-0.18185587,-0.10036316,-0.29416463,-0.4519226,0.0017141572,-0.523984,-0.36817694,-0.08503348,0.17364396,-0.2845997,0.07169683,0.00925654,0.52499425,-0.27492285,-0.05398897,0.19525059,-0.30718258,0.02285311,-0.55680466,0.020687955,-0.038379617,0.5166862,-0.0334897,-0.1892956,0.36767957,0.24971981,0.34657702,0.005328221,-0.26569957,-0.3061302,-0.3376229,-0.14260751,0.41138664,-0.10788213,-0.47502634,-0.122653976,0.12653296,0.2612574,0.28890234,-0.018731922,-0.16181563,-0.05563947,-0.21457568,-0.21208842,0.5030786,0.40229777,-0.3345646,-0.18199457,0.35539824,0.5030437,0.19434543,-0.32349423,-0.19972853,0.021456065,-0.45779952,-0.037636988,-0.036358826,-0.08143406,0.5095479,-0.18792745,0.19509046,0.6404038,-0.010568564,0.039354343,0.12352252,0.037884023,-0.10727429,-0.3354984,-0.298817,0.093155965,-0.49323803,-0.0044705444,-0.1809895,0.69900656,0.15093718,-0.72440356,0.48662043,-0.4413083,0.12087558,0.0014193909,0.47556877,0.61353797,0.38069144,0.4267339,0.5330091,-0.13964258,0.16655661,-0.053384222,-0.19651066,-0.004743759,-0.21008113,0.27892172,-0.5333896,0.29001254,-0.050652165,0.12981398,0.15001932,0.2291723,-0.37991047,-0.20862296,0.32597762,0.7821687,-0.23141988,-0.13964045,0.7110649,1.0666718,0.8824574,-0.0031655112,0.9985711,0.10370939,-0.20982419,0.25946206,-0.1700504,-0.6814116,0.2110556,0.3804519,0.1287566,0.3004971,-0.15510297,0.040271554,0.30320606,-0.25656632,0.014437629,0.01435491,0.30620617,0.30305025,0.15644631,-0.48838446,-0.38776472,0.088072285,-0.08115622,0.22112177,0.2716579,-0.21340752,0.34382758,-0.0024382912,1.3726301,0.16244313,0.06272341,0.14375658,0.59864056,0.24390559,-0.08100439,-0.22506198,0.46199855,0.20707461,-0.013815676,-0.5694414,0.34873036,-0.3110416,-0.35633415,-0.11524116,-0.5341719,-0.20061854,0.09780174,-0.43200126,-0.17512724,-0.10123776,-0.36030585,0.31780624,-3.1834128,-0.23213132,-0.2070658,0.2951897,-0.19193847,-0.11432112,-0.11108679,-0.51459444,0.2516487,0.30373958,0.5439325,-0.65869886,0.35101542,0.4821816,-0.59013945,-0.2441033,-0.6792391,-0.09184112,0.035353094,0.4191814,0.09619596,-0.09858014,-0.09578143,0.33169127,0.6293022,0.24650156,0.11065673,0.39891073,0.4120819,0.1685276,0.5691508,-0.1642361,0.5323717,-0.40819153,-0.08647905,0.19904956,-0.42261198,0.11676451,-0.024577217,0.17836687,0.61162376,-0.43796116,-0.8209468,-0.5681023,-0.09279333,1.0011122,-0.27937296,-0.31534848,0.25316116,-0.51937956,-0.02008398,-0.009822331,0.6504529,-0.15318553,0.014503645,-0.6040157,0.16776218,-0.085095,0.20988862,0.05547818,-0.050707586,-0.3009446,0.6694189,0.00095509633,0.7093324,0.1827646,0.07450471,-0.3484667,-0.17310336,0.08262352,0.4506101,0.28333798,0.0425339,-0.13361399,-0.028939188,-0.1459041,-0.22603662,0.0493624,0.5702023,0.5981739,-0.0061280853,0.13916592,0.28049943,-0.1219046,0.019379305,-0.032662265,-0.13967557,-0.1235376,0.14498094,0.40757447,0.66495526,-0.18983081,0.33386856,-0.18363507,0.25382432,-0.14303373,-0.37632918,0.5527455,0.40389067,-0.20743315,-0.015382886,0.3563537,0.6340106,-0.37254557,0.39597517,-0.5810489,-0.13633706,0.60756934,-0.20539369,-0.3306643,0.13066573,-0.2152494,0.13452911,-0.7393775,0.103930116,-0.25357965,-0.40483683,-0.3563278,-0.12242661,-2.781161,0.13329211,-0.05029908,-0.1496426,-0.35578424,-0.14407173,0.1895989,-0.59890014,-0.617586,0.1881312,0.22391541,0.5525965,0.008211947,0.012572224,-0.27607858,-0.24068192,-0.1300301,0.21739472,-0.09607147,0.39864832,-0.16618177,-0.32972303,-0.07282384,-0.07391524,-0.39802524,0.20229085,-0.59424365,-0.34181422,-0.005018597,-0.5871512,-0.365554,0.58936596,-0.36463532,-0.071083374,-0.17926352,0.024483675,-0.21027975,0.190668,0.14578459,0.07868058,0.08755106,0.0170567,0.17006506,-0.32552096,0.4409437,-0.10675954,0.35659003,0.13224451,0.18055367,0.23509003,0.45262554,0.63020086,-0.1050045,1.1162478,0.28329772,0.035012696,0.3257056,-0.29753074,-0.277489,-0.4234354,-0.17453624,0.054266963,-0.31479207,-0.40853855,0.07697427,-0.28356847,-0.6736933,0.5048661,-0.015079649,0.19349463,0.025816867,0.21030481,0.37575525,-0.2568258,0.11461939,0.034920108,-0.07721069,-0.58012825,-0.28816968,-0.6730159,-0.40405586,-0.027245846,0.70548135,-0.27131134,-0.017366324,-0.07364005,-0.33676454,-0.052980926,0.076374784,0.25142828,0.5318549,0.37436622,-0.120873824,-0.5561799,0.34006855,-0.15546012,-0.2360743,-0.26041752,0.043891884,0.48453146,-0.6572998,0.5466906,0.30912134,0.03883149,-0.23984157,-0.4553268,-0.17248018,-0.053156532,-0.1116989,0.36155066,0.27605578,-0.83234733,0.48488045,0.13506249,-0.28947544,-0.7663712,0.32656437,-0.05123288,-0.2356189,-0.2827368,0.32773826,0.24855736,-0.12855932,-0.13982932,0.023770984,-0.4492447,0.12160409,0.13771126,0.05961892,0.34577736,-0.097198,-0.14668486,-0.6153137,-0.065242,-0.53078574,-0.2092136,0.3698022,-0.0032385257,0.052544467,0.073003136,-0.20104574,0.25423566,-0.2757819,0.08657069,-0.03341437,-0.26845208,0.20273975,0.3483536,0.39033172,-0.39838272,0.50538003,-0.07021483,-0.038976345,0.11090138,-0.07942335,0.24237911,0.10339272,0.33233118,-0.15248747,-0.20445445,0.35951567,0.74691546,0.1727203,0.20586458,0.00642676,0.0018296157,0.4189512,-0.09304415,0.08565541,0.00837384,-0.4396305,0.011345829,-0.18647195,0.05733301,0.45697615,0.09494995,0.27118054,0.037944287,-0.20894805,0.019652545,0.13672575,-0.14582907,-1.104643,0.3608701,0.17040335,0.8277073,0.36350343,0.0832823,-0.23075853,0.85254973,-0.18990621,0.11230256,0.540541,0.03804813,-0.35900444,0.76887983,-0.54693866,0.6176015,-0.1127488,-0.18933542,0.090761624,0.11015455,0.3223557,0.6108503,-0.2537617,-0.08578014,0.13327824,-0.30609432,-0.014438978,-0.3034213,-0.058580782,-0.27074724,-0.2927445,0.61217743,0.26035136,0.29611903,-0.22662543,-0.08456213,-0.012378729,-0.18619892,0.15875684,-0.07925938,-0.030048082,0.0859782,-0.5939054,-0.09530194,0.5111795,0.14830554,0.2259804,-0.22038756,-0.3196357,0.101305984,-0.09336085,-0.047560513,-0.06532908,-0.6034693,0.17949149,-0.08809216,-0.5891232,0.6683293,-0.31041256,0.097497664,0.1801783,-0.012896786,-0.10392622,0.3748934,0.19342352,0.63072395,-0.18601899,-0.03598873,-0.27978894,-0.07861161,0.15056743,-0.12385874,-0.11384571,-0.59015787,0.08040134,-0.5073469,0.5743356,-0.07939295,-0.3680931,0.06238232,-0.23764937,0.11886519,0.5944141,-0.08743771,-0.05534171,-0.24509935,0.042186685,-0.28625378,-0.20651178,-0.25688517,0.3883791,0.22332677,0.021235421,-0.25152695,-0.19088197,-0.13781509,0.50678337,-0.09907466,0.44524637,0.127714,0.13811672,0.016156044,0.16885301,0.104589276,0.41780588,0.1837034,-0.102706976,-0.48277506,-0.10449159,-0.21112905,0.218876,-0.017141074,0.19684707,0.22849762,-0.2282341,0.7127562,-0.26200646,1.0479903,0.059878316,-0.38000408,0.09479634,0.54396343,-0.014824471,0.052159984,-0.28299975,0.75150746,0.4066871,0.00092802726,-0.09205706,-0.49054703,0.1445519,0.25477168,-0.20797357,-0.108273916,-0.02497398,-0.34234124,-0.34819874,0.22501312,0.06048631,0.2883241,-0.094787955,0.03527196,-0.0043829978,0.097357966,0.41424316,-0.48449492,0.067153625,0.17570639,0.13857175,0.060280394,0.18579504,-0.44531295,0.42167085,-0.79299057,0.16762178,-0.55199987,0.15732078,-0.27887827,-0.26728785,0.039704595,0.018004784,0.39926836,-0.1672372,-0.38665575,-0.11130522,0.39598665,0.055783637,0.19045234,0.3824404,-0.14271034,0.0068188733,0.18685792,0.6406029,0.9303905,-0.33071455,0.007136666,0.096616544,-0.31739804,-0.5972997,0.28663453,-0.32097343,0.034274034,0.13653763,-0.06771143,-0.47763994,0.16634925,0.43380684,0.18831716,-0.1395957,-0.48797533,-0.26784185,0.20592692,-0.27090457,-0.15042911,-0.21217524,0.18512893,0.62278694,-0.1578429,-0.24616815,-0.022247758,0.33188888,-0.11757923,-0.55201495,0.07716741,-0.34383664,0.3865791,0.11047195,-0.28873867,-0.112744294,0.013803823,-0.4316661,0.20650804,0.2086113,-0.41303703,0.051523093,-0.31568274,-0.025219208,0.96987677,-0.04661374,0.055767827,-0.47268963,-0.5074379,-0.7594796,-0.4104844,0.22490685,0.03383885,-0.10283134,-0.34274986,-0.031742077,-0.10270572,-0.34154627,0.082537435,-0.42874983,0.3076407,0.052837413,0.47756514,-0.2211846,-0.7445871,-0.062435094,-0.0140061295,-0.09182279,-0.44768095,0.5125008,0.07397656,0.75101143,0.010250734,-0.092172526,0.041250903,-0.24103464,-0.033438485,-0.39676523,-0.173838,-0.47823277,0.13720272 -158,0.56470436,-0.10230791,-0.43650874,-0.20450218,-0.30269518,0.13454127,-0.09751864,0.6886797,0.21183312,-0.400059,-0.22941409,-0.26065636,0.09091498,0.11647499,-0.23153679,-0.5397581,-0.017383235,0.18922485,-0.5130467,0.46707445,-0.49611112,0.27702045,0.023606922,0.3880168,0.16994455,0.14430894,-0.17651229,-0.09868921,0.02576038,-0.073046006,-0.07788855,0.52193606,-0.48274752,0.15331051,-0.1771245,-0.20823945,-0.072416134,-0.45789972,-0.37670544,-0.7880802,0.48818994,-0.907712,0.4352719,0.038684342,-0.3727953,0.2919093,0.22205862,0.308607,-0.1913248,-0.12905589,0.17095986,-0.03849841,-0.11042287,-0.16131398,0.034141354,-0.1639103,-0.5686668,-0.056099858,-0.29935718,-0.2652854,-0.22025275,0.21323745,-0.3719592,0.034182344,0.035533387,0.5397352,-0.40281558,0.24916579,0.33667436,-0.1904372,0.33111018,-0.63256973,-0.103972726,-0.066765,0.40509874,-0.17717037,-0.31304985,0.22258453,0.47779307,0.29502895,-0.16150191,-0.15880577,-0.117071874,-0.18712418,0.10355326,0.41909748,-0.1798426,-0.4081474,-0.051672306,0.017237255,0.045609746,0.24882023,0.14293763,-0.3224577,-0.18597889,0.020138958,-0.19239175,0.34587505,0.41586322,-0.22425559,-0.17636426,0.26923874,0.6281463,0.23369028,-0.03120543,0.064434595,0.07863891,-0.6225119,-0.07927499,-0.04241677,-0.33723933,0.49062848,-0.19021018,0.1256338,0.88629085,0.031487912,0.050088733,0.11840105,0.21185505,-0.0075243074,-0.5360133,-0.40791374,0.30906162,-0.50612533,0.24594526,-0.104721084,0.80862087,0.08655804,-0.5388302,0.329156,-0.6546182,0.06623209,-0.21659507,0.4026669,0.6088705,0.36632687,0.3136125,0.62453455,-0.41611862,0.007932736,-0.029455915,-0.26197994,0.13379487,-0.21766426,0.112716794,-0.44837528,0.12944582,-0.041449036,-0.035499074,0.11547637,0.2992976,-0.51701087,-0.112766266,0.08784572,0.80434245,-0.29406017,-0.045558173,0.6256928,0.90194476,0.8172659,0.124581136,1.1388315,0.12662731,-0.19326197,0.2619987,-0.092062,-0.83145934,0.27391663,0.39963788,-0.07946294,0.026542677,0.12247695,-0.00960442,0.41197035,-0.38464847,0.027399106,-0.20284592,0.3930911,0.18336327,-0.07309641,-0.4456808,-0.25217432,-0.0015866586,0.007860665,0.096517764,0.2661275,-0.017025596,0.36450776,0.048692826,1.4985505,-0.076127276,0.08755125,0.17326045,0.32031175,0.2279314,-0.05281114,-0.17222813,0.44738653,0.32535443,0.12807782,-0.5578278,0.2623197,-0.12991698,-0.32444978,-0.106015325,-0.40153116,-0.06742274,0.04703578,-0.54030895,-0.14228593,-0.22777669,-0.07542972,0.4824898,-2.7422698,-0.27405596,-0.138742,0.5106711,-0.13062872,-0.31717777,-0.122453704,-0.46277407,0.44812125,0.24451189,0.53405774,-0.7149029,0.36411792,0.43347573,-0.60814714,-0.1461611,-0.624041,-0.19379576,0.009180584,0.11384183,-0.013619845,0.028329602,0.0064797485,0.10084257,0.3948224,0.0017699322,0.19178881,0.3570022,0.39172116,0.11390613,0.47626463,-0.123762265,0.4613553,-0.13319549,-0.18885343,0.35098556,-0.2736035,0.21712835,-0.12223242,0.04108144,0.6082324,-0.40080908,-0.8238657,-0.81726867,-0.19887514,1.0572397,-0.35303536,-0.3259199,0.26173276,-0.49641278,-0.28125104,0.020614607,0.47516897,-0.053756863,-0.15739505,-0.8337626,0.024315357,0.026022771,0.15271917,0.07263003,-0.22874689,-0.36775398,0.7171189,-0.061753996,0.49579427,0.3201336,0.068801194,-0.28261024,-0.4202877,-0.03465035,0.644152,0.420409,0.18898186,-0.24456868,-0.15775825,-0.44385692,-0.056421723,0.040010445,0.6136491,0.6414447,0.026768114,0.13881914,0.16749188,-0.04442898,0.107765116,-0.20700908,-0.3196531,-0.08850013,-0.076693416,0.4954597,0.52013654,-0.29998192,0.31252903,0.007414571,0.23592618,-0.18888818,-0.49740487,0.45763278,1.0974075,-0.15280865,-0.33126554,0.61619264,0.43489498,-0.36625692,0.25817373,-0.49967963,-0.11090083,0.52308327,-0.19674729,-0.46069846,0.15502839,-0.40602794,0.19868548,-0.8508075,0.27704376,-0.43234178,-0.50877553,-0.5454182,-0.0741449,-2.665417,0.2729616,-0.31320056,-0.0910626,-0.23541306,-0.09116038,0.24081244,-0.6691123,-0.66020715,0.2741837,0.06292032,0.6793793,-0.13161477,0.072462164,-0.28381118,-0.17404163,-0.16155584,0.08699487,0.13632819,0.34204945,-0.024151292,-0.35833424,-0.01819803,0.08811273,-0.36530527,0.10597546,-0.6384826,-0.5343884,-0.07534132,-0.5357145,-0.30589625,0.57247025,-0.42785043,0.0432005,-0.06651783,0.020176237,-0.21754369,0.24826394,0.093344435,0.2177207,-0.06368422,0.019621944,-0.06098083,-0.35519406,0.3987785,-0.009869771,0.070455745,0.15808812,-0.12132304,0.025362406,0.47546124,0.56012243,-0.042215936,0.88969773,0.33013293,0.05594814,0.2685326,-0.26089722,-0.24416913,-0.42149714,-0.19352008,-0.118665576,-0.3907679,-0.36599904,0.00026419334,-0.50749904,-0.77099353,0.46010494,0.023237688,0.11475517,0.078104325,0.31992552,0.5655133,-0.20401023,0.02912658,-0.008641796,-0.068658255,-0.73668534,-0.090996996,-0.5787922,-0.47036844,0.1901138,0.9373884,-0.46317333,-0.033120178,-0.011723467,-0.25121352,0.029965412,0.23538479,-0.08626912,0.17474209,0.7273753,-0.21458493,-0.60130256,0.4334321,-0.115887865,-0.44185314,-0.6667977,0.21470831,0.482871,-0.71215045,0.72829735,0.4098909,-0.026397357,-0.24695788,-0.54819936,-0.2434349,-0.060633864,-0.35288757,0.48392007,0.20192853,-0.6417304,0.32756096,0.52262205,-0.15279981,-0.8382955,0.6755208,-0.15594997,-0.44497028,-0.0045290166,0.41586393,0.12917997,0.073298626,-0.0026914987,0.18567821,-0.4513852,0.1581519,0.14796121,-0.14905034,0.33337718,-0.20780103,-0.045170598,-0.7777713,0.022270283,-0.49424762,-0.18837403,0.2940357,-0.013556078,0.09815836,0.18929388,0.23425981,0.40502384,-0.265299,0.096851066,-0.19620048,-0.23525012,0.2553646,0.43889925,0.37055758,-0.35746732,0.6469053,-0.109545186,-0.07948696,-0.05528326,0.23349622,0.4271728,0.140198,0.48975188,-0.10201873,-0.123004794,0.27653974,0.8305372,0.055123586,0.44610986,0.02812004,0.009576653,0.120931745,0.09297216,0.26022127,-0.04330373,-0.5754829,-0.012341874,-0.2985143,0.15237032,0.58298194,0.16480896,0.22176567,-0.05131682,-0.47721025,-0.07329669,0.20340843,0.09408734,-1.152314,0.45717192,0.17680426,0.9018502,0.3924602,-0.019379368,0.04718674,0.6403925,-0.053764265,0.1638144,0.2409678,-0.11875738,-0.48112127,0.49734685,-0.88286227,0.33406943,-0.19161701,-0.038513858,-0.025310036,-0.029095283,0.42057815,0.5570742,-0.07773582,-0.07509671,0.055336017,-0.38499346,0.30669436,-0.5107492,-0.11656903,-0.57264143,-0.123491935,0.54284126,0.6904416,0.3530025,-0.3409789,0.05730327,0.11340206,-0.07653912,0.2018368,0.031676497,0.12680689,0.0727349,-0.59631383,-0.2280573,0.5297937,0.089557886,0.19805492,-0.12397038,-0.18196736,0.41244814,-0.16576095,0.06879007,-0.20249571,-0.79074275,0.045528002,-0.39364657,-0.5258283,0.41578487,-0.007438349,0.10708295,0.26208416,0.07366361,-0.22644354,0.5135699,-0.06134683,0.8328425,-0.077856064,-0.1938506,-0.56344855,0.18466058,0.09497663,-0.15061636,-0.059135463,-0.33032894,0.06970892,-0.38005129,0.55798745,-0.013190304,-0.16190067,0.033423632,-0.22579013,0.059107106,0.5725065,-0.318382,-0.13571331,-0.10500673,-0.31573063,-0.32465172,-0.262661,-0.13519885,0.19864567,0.25923616,0.100991376,-0.18267235,-0.12245655,-0.3152959,0.42059895,0.08284596,0.5206953,0.46687603,-0.029836807,-0.14759077,-0.18306199,0.3471085,0.45568052,-0.2012047,-0.36258444,-0.33978266,-0.46706003,-0.2447371,0.31110176,-0.0704266,0.47880584,0.089388795,-0.08056191,0.8824784,-0.13865165,0.81631476,0.040765297,-0.32364255,0.05952796,0.48282257,-0.044119976,-0.22723566,-0.22270383,0.63581324,0.4515857,-0.061381347,0.016984234,-0.2776902,0.09586496,0.20827615,-0.0959007,0.03885723,-0.03118824,-0.5850197,-0.28075522,0.11046115,0.26619858,0.10531207,-0.11739851,0.05573247,0.17534415,-0.101108156,0.2528366,-0.50322825,-0.13425054,0.124887586,0.27413276,0.1614177,0.15920438,-0.43047413,0.47672155,-0.43605974,0.015544525,-0.3807854,0.11460631,-0.267587,-0.3022323,0.05622852,-0.052428514,0.34763628,-0.27334052,-0.26253954,-0.32183507,0.3657748,0.2464682,0.019197537,0.6037504,-0.23252238,0.049074285,0.22630885,0.64710236,0.8806222,-0.11106939,-0.1259689,0.33819062,-0.45546558,-0.54384613,0.3426816,-0.30399635,0.20748858,0.114213146,-0.0090872925,-0.57320565,0.21277039,0.28291997,0.06026807,-0.06141085,-0.6844157,-0.17136593,0.39640602,-0.3171166,-0.19226667,-0.28583506,0.15544142,0.5400335,-0.18948875,-0.24635455,-0.024400055,0.19868053,-0.117981195,-0.55520934,-0.02453242,-0.47923756,0.31600067,-0.023601582,-0.21597417,-0.075591125,0.14177606,-0.45367602,0.2955559,0.0045655966,-0.27290013,0.097289525,-0.32626438,0.048659682,0.9415125,-0.12767169,-0.031879455,-0.52526677,-0.43647653,-0.7180176,-0.23724492,0.5060329,0.15304263,0.13979553,-0.51646644,-0.012306367,-0.028822038,0.003328698,-0.11806989,-0.29945084,0.57357776,0.15936327,0.38594308,0.0054717874,-0.8099414,0.007334358,0.0203473,-0.23482764,-0.60738915,0.414313,-0.0073097176,0.75294966,0.036010046,0.15961719,0.08521525,-0.30624777,0.045765407,-0.2959154,-0.13221331,-0.7155954,-0.027078971 -159,0.41588327,-0.0948121,-0.24838077,-0.34191632,-0.33070448,0.3706344,0.035099287,0.4080328,0.21488364,-0.38794687,-0.07565992,-0.22646293,-0.13054131,0.36364254,-0.12268007,-0.766652,-0.045244224,0.1848865,-0.7428145,0.46576223,-0.62254447,0.33802825,0.21925464,0.28850827,0.0667628,0.33887735,0.17241308,-0.23531188,-0.11099564,0.05135887,-0.35434562,0.0012020959,-0.5724779,0.2919719,-0.10001775,-0.18516932,0.06516802,-0.34604523,-0.29919735,-0.7075261,0.32883957,-0.77782524,0.39682886,-0.07699953,-0.30222479,0.24046429,-0.15419948,0.27625462,-0.53241044,0.071470134,0.13836244,-0.19517322,0.02057679,-0.17952935,-0.3482857,-0.47808716,-0.62813705,0.2660943,-0.34123746,-0.21959233,-0.26077718,0.22335932,-0.22037648,-0.046037655,-0.20269455,0.42663407,-0.4075833,0.029593358,0.2106644,-0.20556033,-0.11598456,-0.33249044,-0.13569923,-0.11809981,0.12877516,0.08487063,-0.2737019,0.31993666,0.40967992,0.62158614,0.13405249,-0.39186284,-0.028892407,-0.02055736,0.16273618,0.41420192,-0.10542349,-0.22245142,-0.2810997,-0.07155947,0.065010294,0.089176215,0.047540724,-0.51595175,0.07929572,0.18116216,-0.24745558,0.13181263,0.4594448,-0.49944285,-0.3137471,0.38620922,0.4454133,-0.07532481,-0.045438994,0.04028558,-0.08452863,-0.5338203,-0.2510781,0.33446196,-0.24818613,0.6567725,-0.2875302,0.013359575,0.7684707,-0.14943801,0.15092553,-0.15479358,-0.05053421,-0.07311877,-0.33169967,-0.16574326,0.18304737,-0.43275142,-0.0015388684,-0.34291863,0.81665975,0.2979612,-0.68518037,0.39522478,-0.51630545,0.29310253,-0.22086641,0.628897,0.70293415,0.4176693,0.1642913,0.8885962,-0.6446204,0.077559434,-0.08727664,-0.30281714,0.14438236,-0.2627898,0.16121683,-0.4117894,0.15016922,-0.029448202,-0.044228055,-0.13705339,0.23281881,-0.50175107,-0.048451122,0.032697793,0.8113116,-0.44628668,-0.10222169,0.7711611,0.8468042,0.95881176,0.03971861,1.6167641,0.7025963,-0.2873716,0.21751972,-0.29303393,-0.6903367,0.1306879,0.28554222,0.22919667,0.24258675,0.08390869,0.06388772,0.47534752,-0.4994681,0.22347197,-0.4025447,0.275189,0.015793357,0.071150385,-0.37407556,-0.38034487,0.11220132,0.0025502103,0.002211426,0.35208493,-0.15137076,0.3084168,0.13014095,1.639183,0.21592487,0.009089296,0.084002934,0.37553403,0.14717595,-0.11718651,-0.06495168,0.29895657,0.35430595,-0.14904793,-0.61476475,0.042630605,-0.2570007,-0.55794615,-0.107998215,-0.39012915,0.086998,-0.20182864,-0.49299508,-0.28778675,0.09200271,-0.41898155,0.4654886,-2.195684,-0.23934929,-0.13378465,0.29835325,-0.33089924,-0.3444481,-0.23466964,-0.5442347,0.2911457,0.43422192,0.3987229,-0.7968518,0.4103083,0.29339138,-0.25682086,-0.14389895,-0.7711617,0.06192978,-0.105476424,0.23685157,0.041714013,0.043075465,-0.33569643,-0.082029715,0.6501962,0.09571511,-0.0034970236,0.20503987,0.40865746,0.1266966,0.522446,0.17259666,0.5944942,-0.2792433,-0.13455406,0.40793753,-0.4869155,0.37350872,0.11088221,0.12217973,0.41622764,-0.5339172,-0.65477085,-0.77262026,-0.5756821,1.3245599,-0.48241332,-0.28566226,0.2040218,-0.11202087,-0.032750778,-0.06356959,0.33828282,-0.19968772,-0.12751304,-0.61000407,0.07562182,0.18440633,0.23100345,-0.10161914,0.20827125,-0.072384104,0.70661986,-0.23484504,0.54814595,0.35089558,0.14301172,-0.013553091,-0.39793792,-0.005560409,0.80702305,0.40665922,0.098598056,-0.04583363,-0.23631246,-0.22256054,-0.32926682,0.14140324,0.3934175,0.86909956,0.06455055,0.011103828,0.4951982,-0.15857773,-0.110576235,-0.038177755,-0.45466137,-0.06480188,0.072907075,0.6037598,0.56995595,-0.17669985,0.26306814,-0.27271968,0.3088436,-0.13388816,-0.5060999,0.62071174,0.91829693,-0.15309632,-0.08612696,0.4548766,0.46431404,-0.5218438,0.3705299,-0.595303,-0.29662806,0.73704576,-0.052803595,-0.34729484,-0.071831904,-0.2685441,0.097244345,-0.84370995,0.37588573,0.13417505,-0.54285586,-0.5566598,-0.1753659,-3.5965075,0.073279575,-0.26837087,0.082032405,-0.02628027,-0.057720132,0.21827944,-0.36465687,-0.54791564,0.0799935,0.045982268,0.4668116,0.03616182,0.21518342,-0.27826837,-0.0744312,-0.49255344,0.09059576,0.0465038,0.30638048,-0.002711773,-0.27560395,0.012708308,-0.38332915,-0.40670657,0.1640754,-0.7242957,-0.5679241,-0.14963152,-0.5071103,-0.41641292,0.6802149,-0.4224184,0.029515585,-0.21469143,-0.03846138,-0.35403174,0.37870362,0.22842298,0.22286876,0.021316128,-0.10608868,-0.25280955,-0.44591427,0.2608418,0.20337509,0.306211,0.35903051,0.004635151,0.13029845,0.51368695,0.6246173,0.04568804,0.5659866,0.24443193,-0.08776535,0.39394155,-0.40365213,-0.12721226,-0.6779036,-0.34024474,-0.17619388,-0.32944188,-0.4828698,0.09702701,-0.3813901,-0.8868441,0.1484295,0.047972757,0.005746258,-0.03847801,0.16578017,0.56266487,-0.053468134,0.0694958,-0.13494709,-0.13998827,-0.7031205,-0.53882354,-0.78792506,-0.48259595,0.31646466,1.1916922,-0.0818112,-0.34546104,-0.1457653,-0.35339618,0.07489251,0.07458792,0.047705326,0.11639751,0.487216,-0.15274525,-0.9000813,0.4447122,-0.021273136,-0.14161527,-0.54655117,0.2273686,0.8286374,-0.80135924,0.5545205,0.2571499,0.28114524,0.21278344,-0.39598912,-0.5064942,0.013919779,-0.15665889,0.57370317,0.042822056,-0.4815507,0.46223143,0.24126588,-0.04226286,-0.7617988,0.332504,-0.07913886,-0.11005689,0.1439463,0.37988934,0.074309506,-0.1674846,0.0016832097,0.20036401,-0.6189385,0.16838405,0.5174197,0.1049999,0.30502298,-0.10322236,-0.37645006,-0.6472761,-0.18471844,-0.64290196,-0.24656418,0.032696463,0.13469759,0.091376565,0.10874182,0.09299852,0.36854005,-0.09188897,0.17441249,0.014067884,-0.2414511,0.37026078,0.36307615,0.27210256,-0.6138293,0.58772534,0.051062744,0.19193403,-0.16837958,0.032254968,0.32818684,0.5580617,0.28898028,-0.12055869,-0.18962869,0.23401022,0.7065991,0.19574241,0.33506447,0.22975723,-0.22099617,0.567798,0.20491399,0.10118651,-0.018268755,-0.3431709,0.012245183,0.11121465,0.1736984,0.26719567,0.14308806,0.28589723,-0.057516437,-0.17239234,0.14952837,-0.105035834,-0.12592156,-0.96633244,0.2321734,0.22168009,0.65557545,0.49268132,-0.17567587,-0.08029703,0.5990222,-0.3611676,0.16456263,0.34786156,-0.21621974,-0.5799202,0.5942798,-0.60067624,0.5324581,-0.29937726,0.0384846,-0.03908602,0.44266525,0.35612196,0.7925504,-0.14941646,0.017481651,-0.12669256,-0.2934498,0.2594244,-0.4438893,0.2237564,-0.5831247,-0.3777823,0.5589689,0.33187985,0.2503039,-0.36763206,-0.0704835,0.08135707,-0.26566193,0.23513849,-0.09670971,-0.06273596,0.03012985,-0.6793278,-0.37887526,0.5702025,-0.139739,0.18619315,0.26140442,-0.39785868,0.23881468,-0.31616345,-0.103020735,-0.07569631,-0.7257832,-0.029397717,-0.10303811,-0.44491264,0.2401596,-0.29004836,0.24331631,0.29485783,0.05405267,-0.4116349,0.16940583,0.08069553,0.83753747,-0.051535375,-0.3083364,-0.45627955,0.08054324,0.24369486,-0.3575346,0.040483467,-0.34624085,-0.095137894,-0.5468631,0.52191645,-0.12744701,-0.2089479,0.17097382,-0.3298996,-0.14683338,0.45922583,-0.34993172,-0.13821413,-0.0741594,0.0002743772,-0.20395635,0.120890126,-0.3533678,0.31791696,-0.0536623,0.067922235,0.06379177,-0.20769456,-0.09284948,0.33519584,0.030232599,0.14871791,0.17141758,-0.19594659,-0.34675875,-0.030833462,-0.07136113,0.22472844,0.23658137,-0.2613771,-0.12498684,-0.13053587,-0.16236314,0.39391807,-0.16371116,0.30463725,0.06729723,-0.57666,0.6754561,0.086598106,1.2532305,0.083136,-0.30405086,-0.011827354,0.64916116,0.21513608,0.1401635,-0.30295762,0.6996144,0.6100432,-0.06631563,-0.21479617,-0.44046268,-0.14728843,0.33154148,-0.14744224,-0.15760449,-0.025048703,-0.73106396,-0.31817594,0.108535126,0.085591376,0.32410425,0.2057191,-0.13241683,0.063234635,0.061269227,0.62290716,-0.3112292,-0.08535918,0.31765842,0.17815502,0.17335589,0.28454518,-0.27969548,0.41375145,-0.7391435,0.2872134,-0.3168805,0.07438586,-0.08709826,-0.18024479,0.22204757,0.07286616,0.30505463,-0.36599785,-0.3964689,-0.26984242,0.8189582,0.22148784,0.4171899,0.8096756,-0.2477424,-0.26433858,0.2899299,0.5679838,1.2706548,-0.048458498,0.11295668,0.23209153,-0.44507715,-0.5973271,0.42150313,-0.29256895,-0.015745917,-0.009801714,-0.27888626,-0.44954962,0.31909984,0.23492475,-0.19659702,0.179665,-0.571732,-0.23569645,0.40646103,-0.2846337,-0.36581206,-0.31911057,0.34378514,0.723199,-0.38788083,-0.22564761,0.13351658,0.182779,-0.3037633,-0.5793727,0.0032650402,-0.6405593,0.39513135,0.14554192,-0.35311028,0.077297725,0.16613623,-0.3974778,0.15622628,0.24770102,-0.39940193,0.16871691,-0.11037282,-0.1356976,0.93293923,0.22728859,0.17885455,-0.7506267,-0.47277525,-0.8810634,-0.42766762,0.56463397,0.13256977,-0.023849752,-0.29387283,-0.19880523,0.10589348,-0.1525602,0.10993755,-0.5709661,0.4051014,0.25429347,0.32473317,0.07848507,-0.76149756,-0.01696888,0.019966569,-0.09397848,-0.35397336,0.4608574,-0.18770607,0.7827798,0.022140231,-0.016369447,0.023838218,-0.49848816,0.222592,-0.39037916,-0.2642713,-0.45436716,0.09653083 -160,0.6087888,-0.15858945,-0.6099957,-0.029980628,-0.33182952,0.24237673,-0.22818817,0.37888074,0.44460505,-0.53821015,-0.11265415,-0.18549761,-0.05737589,0.2653741,-0.15177163,-0.7027238,0.22145279,0.043116994,-0.46570608,0.6815462,-0.35212797,0.5320049,-0.04438321,0.2268562,-0.025009671,0.18406503,0.13369773,0.34215733,-0.22223864,-0.059776362,-0.045037057,0.24445851,-0.48041844,0.22213541,-0.13831513,-0.33474058,-0.086294614,-0.4631514,-0.1621213,-0.9131028,0.3148623,-0.63250864,0.58944905,0.09788515,-0.23210867,0.15129979,0.23331451,0.078529514,0.015841322,-0.06265126,0.14407232,-0.29001325,-0.2062143,-0.011186889,-0.42730767,-0.50307214,-0.59734327,-0.051656596,-0.66866165,-0.17917895,-0.23819682,0.2008575,-0.32199854,-0.22663888,-0.07633155,0.6852568,-0.25758433,-0.22237982,0.24618243,-0.3091069,-0.06240776,-0.9021654,-0.22891389,0.08299871,0.2619123,-0.0052503007,-0.22353564,0.32515928,0.3247344,0.4254392,0.14590825,-0.4375897,-0.32120213,-0.14018719,0.111882105,0.49835938,-0.26458073,-0.33658847,-0.29831415,0.066681504,0.5506059,0.24976589,0.5306701,-0.1367726,-0.022787264,-0.08315546,-0.18133442,0.6774368,0.58118683,-0.33789608,-0.19186573,0.37048006,0.6926264,0.09438666,-0.21688974,-0.15952751,-0.17087851,-0.4400637,-0.06747301,0.30100352,-0.086699985,0.14202021,-0.079673246,0.055858303,0.5062746,-0.22578563,0.06953224,0.2659015,0.15800788,0.13097109,-0.336603,-0.09845649,0.25986707,-0.34279224,0.06762794,-0.43150297,0.53733426,0.15686344,-0.4987683,0.42522398,-0.51863545,0.21087177,0.22592619,0.64151466,0.9659502,0.32923064,0.14465818,0.8531526,-0.18647313,0.1636931,-0.07456454,-0.045927938,-0.032293506,-0.19367221,0.39248064,-0.5174428,0.0079069985,-0.11617883,-0.16544071,0.21670175,0.50133693,-0.7238463,-0.31642273,0.2040604,0.79908806,-0.17457655,-0.21538067,0.9078441,1.2102667,0.83185035,-0.09169544,1.0248871,0.16996427,-0.124262914,-0.24109201,-0.31862068,-0.47901314,0.19332634,0.33931902,0.2493547,0.52612114,-0.016784936,-0.30494657,0.4333624,-0.21912952,-0.29454228,0.015685368,0.35846096,0.22582848,-0.24825631,-0.44827676,0.019652495,0.116388455,-0.1761872,0.484289,0.36035833,-0.3100088,0.2766296,-0.2171973,1.0532671,-0.1765573,0.033475332,-0.015096209,0.3761851,0.39462417,-0.22176208,0.24425165,0.45293385,0.11194829,-0.01831228,-0.4198902,0.16204873,-0.3876011,-0.42007247,-0.054201357,-0.3535018,-0.3456807,0.12758513,-0.34447497,-0.16134858,-0.08494521,-0.2986684,0.40027326,-2.730789,-0.18670528,-0.07951059,0.32866138,-0.2679731,-0.43942857,-0.12219233,-0.46308216,0.4680101,0.35661075,0.29006857,-0.5417268,0.22673409,0.42757505,-0.6098302,-0.07323146,-0.66216666,0.026721248,0.0048946226,0.4044105,-0.007860308,-0.37471336,0.19739941,0.41307992,0.55830187,0.35914358,0.11592396,0.28653842,0.4398814,-0.2633844,0.26581877,0.028063009,0.5557295,-0.19867873,-0.117513575,0.367671,-0.75974804,0.36339095,-0.16635561,0.098306976,0.5189627,-0.046534993,-0.7453578,-0.5169007,-0.2083964,0.9641642,-0.07911624,-0.74259555,-0.011904152,-0.072138,-0.19633587,-0.11385597,0.6381568,-0.013463995,0.027132051,-0.6780427,-0.00058903015,-0.16154039,0.13251509,-0.23285334,0.10081886,-0.5556622,0.778772,-0.13077097,0.4341041,0.19298188,0.36142525,-0.5337803,-0.4643894,0.018128736,1.0828211,0.5412429,0.042554285,-0.083773494,-0.18002948,-0.28383532,-0.30351183,0.13463204,0.8058972,0.47510362,0.022374852,-0.0076202187,0.31826854,-0.05683917,0.23256753,-0.13500127,-0.3698875,-0.20616584,0.1109436,0.61426145,0.42922682,-0.28746915,0.5050612,-0.17093374,0.08177541,-0.29247275,-0.5079663,0.59175307,0.8103208,-0.3152255,-0.25524017,0.47134757,0.14426169,-0.48769718,0.48436657,-0.71940774,-0.29553175,0.47118455,-0.2234396,-0.5050528,0.055455085,-0.18444712,0.02448265,-0.6955802,0.25463295,-0.3268198,-0.2844386,-0.57399064,-0.19862749,-2.7201397,0.037137475,-0.24067985,0.026990073,-0.28103372,-0.17480491,-0.0154742,-0.62135124,-0.52743894,0.17778465,-0.06678344,0.6139931,-0.12472688,0.055799603,-0.30097708,-0.58785015,-0.16411965,0.38174778,-0.12632307,0.29960093,-0.12736447,-0.12904683,0.16010915,0.033658236,-0.49344137,-0.094914906,-0.66518265,-0.42137423,-0.3141348,-0.46667725,-0.019984739,0.7438396,-0.43411204,0.123077095,-0.26641315,0.1693794,0.02160103,0.2900727,0.14196722,0.24649988,0.24373867,-0.31649542,0.08079839,-0.35605335,0.37043422,0.18110551,0.4047291,0.6676418,-0.051262837,0.25781292,0.44339946,0.732635,0.17267041,0.91127855,0.033193104,-0.13366234,0.40926737,-0.2765308,-0.16475856,-0.6296736,-0.25045738,0.28853348,-0.40571693,-0.50424993,-0.25953445,-0.43037906,-0.8089695,0.32215816,0.041782014,0.3253222,-0.30296776,0.6550895,0.48521557,-0.32552457,0.015858425,0.050144274,-0.11846941,-0.420365,-0.32941213,-0.6144853,-0.53447217,0.37848955,0.61465377,-0.34128794,-0.11202637,0.0857532,0.024489403,0.0732251,0.06351753,0.23544502,-0.31187755,0.22480306,0.060360067,-0.46581414,0.3847001,-0.22585805,-0.16326533,-0.6592687,0.50566787,0.5217658,-0.41297653,0.69254494,0.34348348,0.077608466,-0.4448168,-0.6061934,0.05304346,0.41688338,-0.19434197,0.41467062,0.29429173,-0.6024304,0.39674932,0.40321022,-0.21715477,-0.5931868,0.5215748,0.07274504,-0.22470117,-0.039356947,0.51529056,0.373714,0.027644353,-0.2387325,0.20113407,-0.5538763,0.19646947,0.06841216,-0.00952032,0.68770236,-0.048563786,-0.56404066,-0.6792342,0.16692212,-0.7455764,-0.2569632,0.17675649,0.0075617647,0.035462,0.29365543,0.23105045,0.55974185,-0.35346028,0.18003675,-0.26862863,-0.31498384,0.4720595,0.50266415,0.48742706,-0.43944502,0.58250195,0.025816234,-0.18150488,0.26959246,-0.0006996734,0.5333909,0.22598253,0.48038524,0.15474828,-0.04781405,0.12684195,0.5920783,0.025982661,0.25541243,0.16667445,-0.33043894,0.11367571,-0.066196956,0.20416784,-0.17073287,-0.5382581,-0.090134144,0.001096734,0.07372356,0.44843644,0.093772285,0.20872177,0.11517983,-0.39001927,0.04151965,0.19069706,0.0055911713,-1.4304773,0.2778799,0.102124706,0.93402344,0.28140548,0.12357292,-0.033777535,0.2915813,-0.040750504,0.08671824,0.31127113,-0.09823025,-0.29246885,0.430053,-0.47482425,0.44612783,-0.23906994,0.018349605,-0.10320432,-0.01803135,0.45112514,0.8433296,-0.30968437,-0.0712019,-0.13589066,-0.17545573,0.23620519,-0.31321177,0.33058295,-0.34960914,-0.40489906,0.48057476,0.3272376,0.41076908,-0.2517095,0.035874598,0.16893406,-0.3258372,0.16085991,-0.02043772,0.12240343,-0.13793282,-0.35508278,-0.205544,0.47015306,-0.110157736,0.053768337,-0.078135565,-0.10080077,0.18900426,0.07053392,0.12650524,0.07745947,-0.71115404,-0.042988893,-0.1302664,-0.6398902,0.42718205,-0.09063302,0.08047347,0.24234617,0.053414885,-0.20860974,0.5705915,0.30292082,0.6432123,0.010862725,-0.17701231,-0.47561458,0.12642287,0.08343603,-0.25760078,0.17713167,0.093528025,0.4334776,-0.45053583,0.6014107,-0.16991864,-0.35546714,-0.007171963,-0.23403528,-0.10332465,0.58332604,-0.2330818,-0.18342257,0.011239365,-0.2908576,-0.13133648,-0.08600557,-0.061451744,0.22758998,-0.09100257,-0.06363299,-0.18317696,-0.24734758,-0.15605494,0.19991687,0.13255864,0.08457804,0.70246804,0.16048524,-0.50371933,0.23380676,0.27700245,0.4182668,-0.01529098,-0.10957741,-0.24605148,-0.5981908,-0.65812606,0.45245403,-0.08661338,0.18332982,0.090198226,-0.37984663,0.78561556,0.11899751,1.2999471,-0.095811665,-0.5120524,-0.054424644,0.68960476,-0.0331058,-0.00017798586,-0.3847571,1.081764,0.5534612,-0.08537416,0.06763989,-0.553269,-0.076880984,0.43315682,-0.3882832,0.027939072,-0.16456422,-0.71916354,-0.22407643,0.24658887,0.3041133,0.052418027,-0.20556518,0.07332195,0.38110167,0.18537514,0.3332811,-0.80004203,-0.036270503,0.3314595,0.3330083,-0.10422029,0.04374365,-0.3972017,0.37395167,-0.76748765,0.32014653,-0.25255707,0.15332791,-0.21531656,-0.36877313,0.3046233,0.17499344,0.30521855,-0.37258896,-0.4797148,-0.05489566,0.18535392,0.24205896,0.10689541,0.6015611,-0.14907625,-0.025679963,0.1494691,0.6418725,1.3310543,-0.0111397635,-0.12026566,0.13031773,-0.40068778,-0.90716326,0.22198693,-0.46396208,0.092941925,-0.21206269,-0.3456204,-0.56439734,0.18469131,0.10155349,0.018193271,-0.0050563216,-0.65221864,-0.249014,0.00033968262,-0.47791073,-0.113976546,-0.22816317,0.06894786,0.8319803,-0.22628649,-0.25982317,-0.09120173,0.4927117,-0.2889382,-0.9258465,0.08458875,-0.2554275,0.47156814,-0.06488769,-0.31333822,-0.164732,0.029784603,-0.49192303,0.032765802,0.14179058,-0.25228068,0.13830447,-0.21172953,0.1074282,0.5469822,0.190174,0.18283512,-0.50811225,-0.54199296,-0.81176996,-0.43303248,-0.18805037,0.12962615,-0.114469014,-0.8565193,-0.075320564,-0.50304806,0.038776048,0.054621033,-0.33555672,0.19464254,0.17978983,0.3430595,-0.26722834,-0.8502596,0.15645896,0.14401616,-0.08475113,-0.4450772,0.40616468,0.014225806,0.85908973,0.17313056,-0.12337788,0.21213174,-0.5809392,0.34319195,-0.35275456,-0.15229261,-0.6338664,0.31511408 -161,0.4736614,-0.4135653,-0.37719646,-0.39644182,-0.19600224,0.07099403,-0.24809368,0.54363364,0.17821603,-0.6732175,-0.32665107,0.027459584,-0.20370658,0.2887254,-0.21943597,-0.8280806,0.05139764,0.29089165,-0.44319037,0.7276272,-0.33223757,0.27785143,-0.12765472,0.21854705,0.2501862,-0.010499218,0.19384825,0.21021903,0.15008877,-0.4635636,0.11658793,0.101180054,-0.28300592,0.4774063,-0.035013963,-0.44110408,-0.07329655,-0.19258241,-0.20668699,-0.8191676,0.26279178,-0.85031533,0.3535898,-0.17411004,-0.41697773,-0.03634131,0.23360781,0.17690659,-0.08512581,0.15024678,0.04989228,-0.08053725,-0.31091198,-0.19464476,-0.2425276,-0.5754164,-0.68152183,0.12699963,-0.28957537,-0.066439666,-0.10815525,0.394024,-0.26256475,-0.08820974,-0.3684086,0.7684538,-0.27911726,-0.057859167,0.19851755,-0.14191273,0.30666167,-0.6553339,-0.20638289,-0.08954564,0.24262704,0.0004348755,-0.33096132,0.1790772,0.2618222,0.6044591,0.011020889,-0.26203772,-0.19866014,-0.22928579,0.100842506,0.4449325,-0.2118923,-0.59357196,-0.24888285,-0.19803433,0.42447445,0.34026083,0.40220508,-0.3708643,0.13563572,-0.02247417,-0.32443717,0.5015783,0.61938584,-0.41691044,0.114414304,0.27484164,0.554908,-0.08688996,-0.27197793,0.18045855,-0.01871186,-0.6061474,-0.3000823,0.38668966,0.010614852,0.3425378,-0.29440126,0.21411389,0.28749445,-0.123196214,-0.03470848,0.21604355,-0.127421,-0.1099055,-0.42723277,-0.46437374,0.35970676,-0.4222058,0.081039704,-0.6246279,0.76110166,-0.052242015,-0.8040386,0.3608857,-0.44112325,0.25100923,-0.26100838,0.5804682,0.7838256,0.5289568,0.16006118,0.7814382,-0.19578552,-0.10541576,-0.17828172,0.0746331,-0.029197784,-0.18094623,-0.14088254,-0.45888937,0.033026744,-0.05166157,0.10445408,-0.07792479,0.65961236,-0.5080547,-0.28209195,0.15705802,0.8566614,-0.27762204,0.09390909,0.8751672,1.0675809,1.1475803,0.21543597,1.2174504,0.27763948,-0.053536255,0.039615434,-0.061414137,-0.581865,0.23156185,0.56184906,0.567563,0.07266665,-0.18219042,-0.096881054,0.5264325,-0.42636338,-0.02708154,-0.23709273,0.2638549,-0.12714858,-0.060163397,-0.46093348,-0.15307307,0.25114962,0.00045285,0.09278408,0.32268393,-0.30651045,0.55774164,0.07202123,1.1433028,-0.22049291,0.07888753,0.07516415,0.5142129,0.12327087,-0.36031243,0.30883786,0.003801922,0.49529088,-0.22029994,-0.60361934,0.25335908,-0.1486802,-0.49228707,-0.18540448,-0.37216893,0.031054607,-0.2733952,-0.302866,-0.34210935,-0.0070447563,-0.43171147,0.3421626,-2.4059927,-0.20062758,-0.27781546,0.22237442,-0.24749857,-0.4080135,0.06464601,-0.5181116,0.7695899,0.32112023,0.42066696,-0.5746748,0.401436,0.43990085,-0.5311814,0.06242995,-0.9585615,-0.017738923,-0.15396483,0.5024813,0.20035698,-0.11449412,-0.04584161,0.095712036,0.49369454,0.04606965,0.24209802,0.48115852,0.29249644,-0.2345789,0.49140847,-0.10059538,0.5198047,-0.5396531,-0.20153351,0.4155203,-0.48476708,-0.037207544,-0.011407122,0.17717534,0.49799815,-0.76854247,-0.6026917,-0.95660686,-0.6355794,1.2755253,-0.19911897,-0.713898,0.19203459,-0.31304368,-0.21579635,-0.039111298,0.8007396,-0.24967742,-0.07714621,-0.82416373,-0.102191366,-0.24647613,0.48821056,-0.19186532,-0.243939,-0.53302425,0.67957526,-0.15439211,0.4261547,0.3915458,0.20645559,-0.48541823,-0.4483726,0.009274651,1.1404324,0.44396126,0.091556646,-0.075497456,-0.0549739,-0.3997544,0.062437892,0.06948945,0.8900835,0.49042475,-0.098215304,0.031758573,0.46930978,-0.22002274,0.10034388,-0.14520462,-0.46720275,-0.46349716,0.12496028,0.8182071,0.4077581,0.27420732,0.3043695,-0.1237697,0.2748854,-0.4950408,-0.44654,0.4441085,0.80604535,-0.18462501,-0.37306273,0.78897,0.5660727,-0.20606871,0.44824076,-0.76727515,-0.45909628,0.33591452,-0.09581888,-0.5087339,-0.021952609,-0.49817804,0.37164256,-0.7494848,0.32285967,-0.6971404,-0.47396716,-0.65165085,-0.15278386,-2.8108892,0.24202526,-0.017478263,-0.1872126,-0.21032894,-0.3507739,0.5707622,-0.2788696,-0.47436634,0.06650955,0.10056751,0.762412,0.029755838,-0.14239551,-0.525154,-0.1738307,-0.32060686,0.21677661,0.039627474,0.30150226,-0.10826272,-0.4006963,0.12462599,-0.20354255,-0.37002078,-0.05741905,-0.7366349,-0.47229087,-0.2208277,-0.51954967,-0.3089878,0.5555729,-0.2236983,0.120320566,-0.3223684,0.011218789,0.011746119,0.110669285,-0.05183951,0.17854132,-0.01613576,-0.24706401,-0.12836194,-0.37944794,0.13502938,0.09262713,0.039588545,0.34330082,-0.25507304,0.21070777,0.39630786,0.5353752,0.0023119797,0.9779973,0.47571316,0.03732747,0.42283964,0.054712985,-0.20864837,-0.4164723,-0.06721238,0.08029672,-0.6311066,-0.2449547,0.075705,-0.24136691,-0.79924613,0.5222728,0.16032928,0.21351852,0.11029162,0.35108885,0.37023854,-0.09412918,0.10132081,-0.044466753,-0.2919295,-0.41388312,-0.48397338,-0.8427646,-0.413169,0.0038891237,1.1696924,0.084175594,0.06423435,0.11948592,-0.20612456,0.12306065,0.3249127,0.00703909,0.18722849,0.1546288,-0.051689804,-0.6282209,0.3778306,-0.021618938,0.1117843,-0.39429688,0.5366102,0.88098985,-0.5339512,0.32423583,0.32469192,-0.0054414924,-0.6578214,-0.61635345,-0.038032692,0.048541177,-0.1129087,0.4638025,0.3807143,-1.0029829,0.5656192,0.1707484,0.20321614,-0.8343957,0.5489836,-0.14107578,-0.084081866,-0.04678149,0.35650015,0.097752266,-0.049288,-0.30537978,0.2584095,-0.3898277,0.21942027,0.11078497,0.02740707,0.30674592,-0.33348575,-0.07726588,-0.84441644,-0.004884007,-0.91122514,-0.37375522,0.3393847,-0.17357814,0.12926538,0.39086106,-0.037878793,0.50664973,-0.020956332,0.24748783,-0.026168471,-0.33649576,0.49267206,0.6485425,0.24074781,-0.35797492,0.6639842,0.20871894,0.13953902,-0.48287198,0.19133,0.41811815,0.16066085,0.5860246,-0.3613807,-0.21084501,0.4524438,0.87852836,0.19253182,0.29636037,-0.10550698,-0.24049236,0.04016615,0.015923113,0.29194668,-0.14645462,-0.49712315,-0.19250703,-0.17425478,0.14762898,0.46590567,-0.08992106,0.47926092,-0.03054894,-0.30870816,-0.0026427854,0.07401014,-0.071539424,-1.4671243,0.33764258,0.1072804,0.8746206,0.6097567,0.027878946,-0.27120033,0.7470886,-0.28539005,0.08761609,0.32134447,0.062382013,-0.11372057,0.499463,-0.7077353,0.42299366,-0.11026821,0.13838102,0.010696232,-0.10612776,0.43812618,0.73278505,-0.06894968,0.28990427,-0.0918409,-0.31368393,0.3263812,-0.27439275,0.20419447,-0.48653507,-0.34251985,0.5848801,0.3827301,0.53861815,-0.31167236,-0.018645465,0.16942413,-0.006033717,0.024763584,0.009086999,-0.08530074,-0.434137,-0.5425022,-0.14140652,0.38674465,0.12115768,0.114131,0.26177958,-0.41220784,0.12080413,-0.040063065,0.1555496,-0.06945916,-0.46412468,-0.04805985,-0.25921395,-0.060910255,0.3266177,-0.41181687,0.094216645,0.26945034,0.086945355,-0.24644543,-0.098359756,0.1360947,0.642869,-0.027448693,-0.11833572,-0.37517938,-0.22420923,0.021817235,-0.42824554,-0.09583828,-0.24442632,0.048224498,-0.93357897,0.35482517,-0.034540534,-0.32733423,0.45717597,0.019946061,-0.08047189,0.53966355,-0.11350111,-0.2087541,0.26369336,-0.11574229,-0.11846372,-0.10061406,-0.06630673,0.4249387,0.02512387,0.4153442,-0.0685341,0.005252523,0.047695994,0.43048063,0.11457813,0.14691837,0.4632611,0.08754036,-0.38028374,0.2910172,0.026563196,0.6612327,-0.10911108,0.14452493,0.017178258,-0.43493965,-0.35518515,0.25893193,-0.12266179,0.42825437,-0.029023424,-0.3971977,0.62607294,-0.079994746,1.0047044,-0.09834796,-0.5120614,-0.11309449,0.47760323,-0.09197063,0.0077081122,-0.20356573,0.8352912,0.4450176,-0.2602394,-0.019410163,-0.31970012,-0.12459939,0.13937767,-0.09156642,-0.08563196,0.02211518,-0.67602944,-0.10256188,0.1733268,0.4109392,0.109754644,0.08155907,0.014148772,0.17566995,0.019507283,0.2946953,-0.4821402,0.23162653,0.19569276,0.2907066,-0.08262814,0.20077701,-0.34889284,0.05061611,-0.8315489,0.35121384,-0.3836716,0.02186045,-0.13495465,-0.27920517,0.37032115,-0.018165201,0.2508413,-0.29908746,-0.48086002,-0.12441205,0.5742522,0.097552665,0.36510062,0.73483723,-0.1991446,0.11095673,0.29330212,0.5784584,1.3089755,-0.18077254,-0.036218744,0.16538826,-0.506258,-0.9388686,0.22397451,-0.34840402,0.10289707,0.27196276,-0.41731402,-0.18095873,0.1466303,0.25126344,0.102050096,0.17441408,-0.57469887,-0.31465352,0.13259526,-0.25437936,-0.27296272,-0.3447698,0.1613049,0.29880795,-0.3623948,-0.5462566,-0.085403115,0.39581683,-0.32583776,-0.7270228,-0.040084135,-0.38550696,0.19023608,0.1078647,-0.44640318,-0.16819195,-0.24003987,-0.47510388,0.012228287,0.123005986,-0.27532926,-0.04439598,-0.28598905,-0.22957306,0.7229627,-0.07985507,0.057399243,-0.39253202,-0.64016896,-0.63615566,-0.31622735,0.26263228,0.31219187,0.03532359,-0.51580936,-0.05053589,-0.42646673,-0.05052198,0.13426717,-0.224804,0.53300685,0.24032515,0.5712877,0.054210823,-0.70303345,0.39297903,0.14023417,-0.05220716,-0.41068873,0.4687886,0.02193451,0.912869,0.085759364,0.06058469,-0.037698466,-0.67027885,0.3005354,-0.24657416,-0.29249904,-0.41072357,0.13492332 -162,0.37274933,-0.14908953,-0.5775996,-0.2080876,-0.41959056,-0.036410023,-0.23649965,0.29752514,0.34050658,-0.118486054,-0.17378642,-0.077227004,0.08184986,0.4491599,-0.055149443,-0.72288173,0.0019783655,0.21359462,-0.832589,0.50875205,-0.537858,0.22941287,0.15197115,0.43927062,0.009764,0.34102675,0.13842623,-0.16038746,-0.048810072,-0.040802136,-0.17946644,0.21668513,-0.71096665,0.12546398,-0.12256646,-0.32212144,0.17468818,-0.4421705,-0.24365206,-0.83425176,0.072504684,-0.901887,0.6017763,-0.22323309,-0.15300614,-0.11592419,0.22211027,0.32534167,-0.39312667,-0.038723163,0.18524344,-0.39333412,-0.2515463,-0.33609626,0.057892848,-0.5874586,-0.36383173,-0.024092672,-0.6606666,-0.2183199,-0.2902668,0.13401847,-0.400225,-0.023560004,-0.195543,0.41650406,-0.43015158,0.04723733,0.22579987,-0.3309546,0.22325392,-0.54790086,0.03467679,-0.064230256,0.46342385,0.14441101,-0.29298154,0.52251786,0.38381317,0.4982598,0.4951653,-0.3991225,-0.06039604,-0.13739923,0.03481609,0.2726414,-0.25864202,-0.28623277,-0.16891113,0.04000724,0.33420002,0.34208614,0.011397393,-0.21765544,0.006054185,0.06644293,-0.26245815,0.58238155,0.64808196,-0.34200636,-0.31449062,0.27591762,0.6768416,0.29369158,-0.25155792,-0.03661292,-0.14235945,-0.52628386,-0.26520625,0.028568523,-0.17422025,0.47834387,-0.21844834,0.022157649,0.96169317,-0.14555593,-0.16438456,0.042682808,0.081331015,-0.20804304,-0.27648914,-0.09063656,0.21334597,-0.60997766,-0.0004402717,-0.27718046,0.7536373,0.16292973,-0.61503613,0.3273379,-0.6086479,0.12218742,-0.15152965,0.7089891,0.88888085,0.6232128,0.41805777,0.899465,-0.3272608,0.12615487,-0.13752271,-0.611536,0.16430274,-0.33550674,0.12720607,-0.48346832,0.1845607,-0.20362803,0.09781659,0.11953714,0.37922862,-0.7285076,-0.023963396,0.2943122,0.7124012,-0.3318713,-0.18829629,0.6812101,1.0075215,0.9034275,0.003513686,1.2987764,0.39700064,-0.21030119,0.26090264,-0.2712431,-0.6610968,0.23298594,0.42780444,0.25413826,0.23066439,0.050603013,-0.09120839,0.5473246,-0.4785066,-0.06432261,-0.058506127,0.40443859,0.11012946,-0.19699176,-0.50355947,-0.1432196,-0.035518385,-0.0034911314,0.19737393,0.30871058,-0.2860444,0.36660463,-0.043357987,1.1317179,-0.028835285,-0.034112427,-0.05282086,0.63364005,0.43255964,-0.024897592,0.032767225,0.56907773,0.512831,0.021904852,-0.647345,0.33416045,-0.3117715,-0.5178131,-0.15055594,-0.48044688,-0.115233816,0.058396712,-0.38791284,-0.17418927,-0.05830046,-0.14439702,0.43157896,-2.5463312,-0.29825532,-0.012312881,0.34039372,-0.21980648,-0.15268026,-0.05729335,-0.5353641,0.26976046,0.23831746,0.5822028,-0.6799374,0.60349154,0.56363857,-0.6523704,-0.16213408,-0.75787175,-0.013035615,-0.08256877,0.5798674,0.08819364,-0.14506386,-0.2992345,-0.08503929,0.85930187,0.016359108,0.18810923,0.4904629,0.30794507,-0.07292388,0.5471235,-0.00028525194,0.6708258,-0.23058882,-0.324958,0.41369435,-0.11580066,0.19069912,-0.16106577,0.03529925,0.65646243,-0.22111578,-1.0408913,-0.58384854,-0.24232174,1.0284861,-0.58604556,-0.6737699,0.22592953,-0.089385174,-0.06419449,0.14324807,0.53469175,-0.048454467,0.22544555,-0.6410485,0.22993034,0.06817318,0.2684765,0.0503831,0.0189009,-0.2823707,0.882841,-0.12431439,0.5620626,0.09973359,0.33997175,-0.18049425,-0.38722613,0.13916938,0.73022133,0.3710455,-0.028918149,-0.115272455,-0.40595996,-0.015262151,-0.21892545,-0.0319779,0.67603874,0.7346255,-0.06682642,0.10354088,0.35641566,-0.15613209,-0.026297962,-0.2079077,-0.32678694,-0.022274856,0.16801134,0.5892609,0.8050451,-0.11517207,0.5290553,-0.30291185,0.42835972,0.02402062,-0.83944577,0.7822807,0.72809863,-0.38838437,-0.060261257,0.6596127,0.48790935,-0.41978008,0.5114323,-0.72638476,-0.35323197,0.64955455,-0.12192817,-0.48412374,0.20501085,-0.07465884,0.14611872,-0.8573271,0.34783515,-0.25005153,-0.5034126,-0.36006296,-0.123306945,-3.6989005,0.13975126,-0.22953075,0.05294017,-0.4087011,-0.21164484,0.3284413,-0.552437,-0.45427603,0.04431827,0.34392738,0.60220283,-0.12620792,0.11390459,-0.26443446,-0.25965998,0.0001976808,0.254281,0.07997753,0.2259736,-0.2670893,-0.4951709,0.04829484,-0.0211285,-0.62546885,0.14254206,-0.73502594,-0.44047138,-0.15990232,-0.5842787,-0.2681374,0.6727334,-0.40577596,0.06040678,-0.38411236,0.2166162,-0.17318091,0.15559778,0.0035748442,0.20671003,0.20115252,-0.018611105,0.068971395,-0.34834108,0.35551548,-0.112283446,0.41097102,0.05054973,0.041173343,0.09212985,0.60350746,0.6248473,-0.3174299,1.1091641,0.47448316,-0.09770434,0.30629498,-0.20229219,-0.45123816,-0.76868427,-0.45944166,-0.13237487,-0.49271873,-0.39702594,0.07530734,-0.26276857,-0.8555114,0.7211924,0.028333457,0.36495855,-0.03171884,0.41125652,0.58829373,-0.26553473,-0.10565035,0.014836278,-0.29951864,-0.6107668,-0.2083522,-0.6400058,-0.56050473,-0.112458296,0.9008966,-0.31261098,0.033082105,-0.16008724,-0.22653061,0.06687162,0.066552736,0.11785095,0.33887103,0.6601624,-0.10480948,-0.6638501,0.44365862,-0.17177577,0.009340908,-0.4522437,0.26083508,0.5784171,-0.8819149,0.586183,0.32760426,0.079635754,0.0016408762,-0.46642736,-0.31149292,-0.09508297,-0.23598306,0.6637282,0.14490296,-1.0037733,0.72618455,0.29663345,-0.5218453,-0.7350513,0.28503808,-0.36015156,-0.13269857,-0.09495583,0.3128632,0.21170953,0.0034355521,-0.26731557,0.05883391,-0.43957472,0.30757946,0.24449587,-0.14410387,0.33144256,-0.11336157,-0.33169767,-0.87930095,-0.19017999,-0.5189182,-0.27764854,0.214976,-0.07229454,-0.15392184,0.18990894,0.1708964,0.40847617,-0.23961347,0.10767707,0.049840022,-0.38075924,0.39451855,0.6297013,0.2718465,-0.41671133,0.5550095,0.16337703,-0.21433279,0.029472891,-0.02018861,0.42769888,0.090504065,0.48296902,-0.13100514,-0.07736151,0.305799,0.78589857,0.085447386,0.518851,0.0037977297,-0.06409427,0.44638252,-0.019821225,0.2357314,-0.061787143,-0.5483247,-0.022869706,-0.15616061,0.10117838,0.6278104,0.38793486,0.25913402,0.20275244,-0.22424752,-0.006166192,0.08623998,0.02413707,-1.3924923,0.37490195,0.346104,0.87256926,0.27628013,0.13638227,-0.27206296,0.82863843,-0.19356129,0.07707569,0.3598575,0.03104372,-0.3969249,0.8234387,-0.82639694,0.3932566,-0.22208509,0.027689178,0.28593123,0.15837483,0.34079903,0.9821297,-0.39201647,0.06142044,-0.09481656,-0.14301507,0.11885885,-0.3898568,-0.08062411,-0.3622801,-0.50012326,0.5920729,0.27821887,0.3981253,-0.38296425,-0.058987655,0.029771296,-0.22875571,0.17786066,-0.05956485,-0.0597694,0.042844705,-0.504979,-0.19739936,0.60375625,0.0818652,0.29486814,-0.24412526,-0.20140958,0.14064822,-0.17482908,-0.1553785,-0.04857952,-0.55885863,-0.103194766,-0.099041745,-0.5972749,0.5850697,-0.23434146,0.09219447,0.19003859,0.026770897,-0.22254448,0.23828362,-0.013457409,0.8910802,0.08925327,-0.2896624,-0.43604693,0.0538595,0.20709231,-0.23741437,0.102180146,-0.40290934,-0.12464228,-0.4769886,0.55780387,-0.31117517,-0.48636863,0.33277923,-0.273754,-0.06441371,0.51049775,-0.049750637,-0.17741083,0.18474266,-0.1500454,-0.27356103,-0.1492397,-0.22962798,0.236086,0.13115364,-0.047117434,-0.14869693,-0.36777732,-0.046311595,0.5486811,-0.011543524,0.24664932,0.1565066,-0.027218437,-0.14784451,0.122634694,0.3520846,0.46531487,0.10096493,-0.023607353,-0.2621051,-0.445793,-0.30159757,-0.012070068,0.03801828,0.24295826,0.038595937,-0.28530064,0.9285523,0.11967882,1.3659271,-0.01082542,-0.4169716,0.07505606,0.5794016,-0.16781637,0.1351487,-0.34201142,0.7877351,0.4377203,-0.08668299,-0.01074725,-0.6219035,-0.097097225,0.38258642,-0.36748248,-0.04219156,-0.07638118,-0.6633011,-0.46851674,0.24823213,0.23269469,0.1862614,-0.0023047766,-0.034132473,0.12392252,0.003391695,0.44996542,-0.55945027,-0.3221485,0.26535898,0.27357668,-0.23922509,0.11408119,-0.3655591,0.5063908,-0.7517394,0.12886469,-0.44414538,0.07896564,-0.28739282,-0.21200013,0.08883904,-0.18093835,0.41814613,-0.28978428,-0.4350149,-0.048810005,0.5572536,0.08042122,0.04648783,0.7753915,-0.2744983,-0.052369613,0.2001011,0.46114308,1.206331,-0.46266204,0.033701602,0.30678454,-0.45980483,-0.5578488,0.5412219,-0.31877723,-0.021236528,0.0027895847,-0.47360352,-0.4411096,0.26197046,0.15145995,-0.0028424123,0.07261516,-0.6117382,0.009047016,0.40201828,-0.2507353,-0.10300309,-0.16390909,0.49956927,0.7006063,-0.29103354,-0.34467456,0.14384049,0.406487,-0.2969628,-0.55709594,-0.09609859,-0.29288405,0.41892055,0.11805216,-0.34362686,0.024171174,0.21358617,-0.5885324,0.07209239,0.27678353,-0.29319033,0.21512076,-0.16542183,0.023733588,0.8266936,-0.22218771,0.05706105,-0.6817038,-0.4796863,-0.9790184,-0.35182866,0.17098351,0.19668826,-0.002531286,-0.4807816,0.0071543334,-0.09195555,-0.22476664,-0.0063143414,-0.61499906,0.40345705,0.10407792,0.5357545,-0.32404187,-1.044505,0.21021229,0.12496236,-0.030297805,-0.669347,0.5939958,-0.20453276,0.83369243,0.10977246,0.067335576,-0.019205637,-0.33016667,0.14889288,-0.3609429,-0.18203184,-0.77507144,0.053614616 -163,0.6292888,-0.21912135,-0.617364,-0.07918981,-0.20058526,0.15333,-0.13463734,0.55934215,0.181387,-0.39364845,-0.047735654,-0.08098186,0.041444853,0.4035684,-0.056205682,-0.7179426,0.13075064,0.18773319,-0.35875404,0.4360347,-0.50943077,0.55410165,0.05348026,0.33736217,0.09935953,0.41454977,0.111945674,-0.05542648,-0.39010593,-0.14493014,-0.19429909,0.10579102,-0.38943797,0.016959438,-0.0059578693,-0.42157668,0.13509728,-0.49740285,-0.29468125,-0.6166221,0.26051593,-0.66882044,0.50985026,0.09173302,-0.30098847,0.19122204,-0.11140985,0.5098095,-0.2902913,0.0527734,0.05141461,-0.011755316,-0.09556429,-0.34946826,-0.14040503,-0.41662738,-0.52491707,0.0393126,-0.33108428,-0.24525264,-0.19470796,0.19486189,-0.32870367,-0.120319724,0.044221282,0.3949517,-0.33631736,0.06769446,0.21940754,-0.16482352,0.07328625,-0.5617534,-0.1701575,-0.19722691,0.32056683,-0.3087477,-0.19187516,0.17357342,0.2692815,0.38127992,-0.03987089,-0.21799248,-0.3909618,-0.062837966,-0.03728868,0.66464573,-0.1981388,-0.42049736,-0.17533812,0.044438343,0.0700053,0.15288304,0.26678723,-0.024353137,-0.09252282,0.022113167,-0.28179806,0.4062363,0.45818457,-0.3478822,-0.27614915,0.38176334,0.5778817,-0.09277497,-0.055725493,-0.1312733,-0.030676642,-0.4890062,-0.21798423,0.0825504,-0.094796345,0.5202021,0.04846608,0.331198,0.624459,-0.1719413,0.15689836,0.10968247,0.0807757,0.03644711,-0.1318407,-0.19433378,0.19284412,-0.46334055,-0.0084156925,-0.12438571,0.7884121,0.40357393,-0.68382615,0.3253358,-0.45582756,0.078454204,-0.1265177,0.3476506,0.56184155,0.4651653,0.1580115,0.7529181,-0.38696864,0.09919362,-0.12757653,-0.3503079,0.01713513,-0.104339965,0.04325936,-0.5174389,0.033210192,0.14129478,-0.26181298,0.29494816,0.24089387,-0.5695041,0.015033121,0.19016589,0.841879,-0.35787666,-0.25088325,0.68850905,0.97817576,0.816314,-0.06943534,1.0255148,0.3304498,-0.25590557,0.34045812,-0.6574182,-0.5403564,0.22573234,0.4653146,-0.23807529,0.3917298,0.108315125,-0.08363632,0.31186244,-0.11970731,0.04795356,-0.1499193,0.033938333,0.07865851,-0.14163737,-0.44037226,-0.36830473,-0.17314993,-0.07229764,0.20384741,0.2924714,-0.32086328,0.29883295,-0.12852775,1.6407783,0.043003634,0.11839212,-0.12219122,0.56582296,0.22930656,-0.23441933,-0.2489149,0.30672714,0.19796436,0.09568807,-0.49402413,0.17667256,-0.11224585,-0.49451125,-0.1674837,-0.2918362,0.08055861,-0.027658127,-0.34845352,-0.099700086,-0.013005917,-0.23812301,0.47205576,-2.7451136,-0.2898863,-0.02735072,0.3945232,-0.35571325,-0.52423775,-0.0888162,-0.50556964,0.21761295,0.3757861,0.5513519,-0.59030265,0.25995594,0.31796154,-0.49369532,-0.29120085,-0.62726754,0.0020065515,-0.009565504,0.2055607,-0.05632999,-0.10429907,-0.18728025,0.084234014,0.37672174,-0.23331454,0.050216056,0.19063601,0.36636484,0.12582181,0.35128534,-0.023352917,0.6476282,-0.2256948,-0.26509976,0.2749287,-0.484283,0.24815209,-0.12402375,0.12358076,0.3477486,-0.45890078,-0.927219,-0.6187379,-0.07364155,1.0697516,-0.11807136,-0.13924974,0.18299682,-0.26760533,-0.24473524,0.0007714675,0.40722895,0.11471284,-0.21926737,-0.55448663,-0.026935687,-0.12869719,0.1394507,0.008260993,0.041932162,-0.42132473,0.5058498,-0.028542547,0.4093665,0.099751346,0.26996586,-0.14912131,-0.27619034,-0.052276988,1.1083909,0.34024063,0.12138872,-0.25166303,-0.25959882,-0.48395458,-0.017596245,0.09089971,0.41312492,0.7600699,-0.06445934,0.06789554,0.17249082,0.00037789805,0.089699596,-0.012900431,-0.26493087,-0.073125936,-0.025043506,0.60917383,0.41457888,-0.07706876,0.6817722,-0.06170015,0.3587565,-0.19908723,-0.39298117,0.50630313,0.88988197,-0.12717803,-0.19655964,0.59105754,0.4012822,-0.27700043,0.43320405,-0.69193375,-0.30840498,0.39894226,-0.24216785,-0.1652879,0.20156255,-0.21620448,0.091906995,-0.9152208,0.2625981,-0.1922006,-0.55532545,-0.35697377,-0.01715077,-3.8424401,0.21555105,-0.10437334,-0.20262067,0.21363515,-0.13796273,0.06552032,-0.6623313,-0.3332526,0.27651125,0.13603976,0.9163503,-0.017972915,0.12505868,-0.17061864,-0.3306522,-0.25121853,0.16873609,0.105148464,0.31392986,0.013082848,-0.36883026,0.010330713,-0.24368133,-0.45870897,0.09932061,-0.6714375,-0.52899927,-0.22448635,-0.6973822,-0.20579635,0.7840065,-0.3332427,0.15592676,-0.20631978,0.07098453,-0.09473337,0.3363691,-0.048627477,0.05917178,0.18545881,-0.14515401,0.19546072,-0.4226119,0.31093693,0.24923475,0.46706152,0.2710736,-0.1443773,0.3212868,0.7477691,0.6516931,-0.05689365,0.64592034,0.42177922,-0.20385943,0.27696377,-0.2671111,-0.13833128,-0.2957692,-0.4673947,-0.1229065,-0.31463417,-0.4215026,-0.14624897,-0.41905886,-0.756287,0.5115091,-0.052697293,-0.038939126,0.009341331,0.5330498,0.4754184,-0.27860877,-0.040883202,-0.10858722,-0.03546382,-0.41566402,-0.1550017,-0.43181616,-0.43987608,0.2948087,1.1281912,-0.36063978,0.041241705,-0.022717811,-0.05449218,-0.10973089,0.015914798,0.100172944,0.05677636,0.32543832,-0.26995307,-0.5939666,0.3805205,-0.3803344,-0.23834637,-0.47958025,0.18900444,0.5872239,-0.6988313,0.41155478,0.37709582,0.16232245,0.09698674,-0.3307319,-0.19802779,0.18473212,-0.21473378,0.16657485,0.15768605,-0.7658516,0.34108675,0.3463092,-0.3784987,-0.6907165,0.5342008,0.018099526,-0.42782417,-0.1995127,0.26325092,0.22262827,0.07450242,-0.35200155,0.08217724,-0.33966562,0.15822905,0.32113713,0.010701931,0.31887025,-0.26878273,-0.17201763,-0.6334285,0.07007844,-0.3345736,-0.3038773,0.15879947,0.14581051,0.26323506,0.26434013,0.3285689,0.3356416,-0.43623108,-0.03132615,-0.040239904,-0.30731753,0.36859566,0.2675367,0.39157206,-0.45606777,0.42757818,0.018466474,-0.10100362,-0.11174083,-0.1706883,0.5619628,0.05103124,0.22595006,0.1259698,-0.40127885,0.2804913,0.68606305,0.2168684,0.3586233,0.13823815,-0.12749356,0.018215932,0.034383368,0.020526996,0.33722836,-0.53706986,0.029654361,-0.060908813,0.09102027,0.5018374,0.21199319,0.115717694,-0.052334983,-0.37391442,0.09850487,0.04025926,0.047928937,-0.99259984,0.4283283,0.12632881,0.76192737,0.29742026,0.08490988,-0.13511768,0.6041045,-0.17483161,0.17392427,0.20672153,-0.1965314,-0.47183764,0.41326934,-0.60298353,0.65221727,0.027563035,-0.010745484,-0.05559369,-0.2986012,0.5404944,1.0067432,-0.215396,0.12038079,0.023885492,-0.28424546,-0.037643116,-0.28775322,-0.07439472,-0.88912815,-0.14678194,0.74879867,0.2732251,0.34761566,0.05655428,0.031033155,0.17983331,-0.09104518,0.15889801,-0.08494894,0.22606799,0.1131423,-0.57919556,-0.2150299,0.57298636,0.13789815,0.076530986,-0.029729664,-0.08193051,0.20754282,-0.2167266,-0.11669457,-0.032569844,-0.5863446,0.011532366,-0.4356087,-0.47103554,0.4182973,0.09137245,0.28654793,0.20287389,0.15309078,-0.12734683,0.63365275,0.3207493,0.840427,-0.06072641,-0.2069614,-0.42069796,0.35249293,0.20554018,-0.25622666,0.054215625,-0.3351661,0.14081761,-0.71902055,0.4645655,-0.018634938,-0.37414882,-0.0077653984,-0.08068074,0.09383726,0.426558,-0.24718626,-0.071703106,-0.004021901,-0.18135135,-0.25343135,-0.035809003,-0.18472078,0.27631316,0.20044161,-0.21576402,-0.06272346,-0.12297856,0.14557588,0.4373214,0.05751522,0.336751,0.2827381,0.2087012,-0.21637455,-0.21117753,0.084192835,0.5468447,-0.1625688,-0.121919304,-0.51254606,-0.31488168,-0.42515692,0.2593311,-0.04737081,0.28319123,0.1050484,-0.13251303,0.7092994,-0.048213705,1.3447577,-0.0045008566,-0.3354974,0.07904853,0.44289833,-0.062224165,0.05580341,-0.48391458,1.1769178,0.37527034,-0.08464019,-0.16893265,-0.42884332,-0.17825292,0.22773787,-0.27851284,-0.1652486,0.011723823,-0.5695234,-0.38217682,0.27682117,0.17975214,0.23378108,-0.04600714,0.31215265,0.25151312,0.003429876,0.05529563,-0.4876168,-0.124604955,0.4318377,0.35460573,-0.0041101393,0.13155106,-0.5037762,0.3682737,-0.579207,0.057662275,-0.21229497,0.07307459,-0.017944088,-0.428778,0.35480568,0.24095583,0.31984502,-0.3454777,-0.44390252,-0.22930211,0.51682705,0.12262495,0.14090155,0.44062537,-0.2028908,-0.042043798,-0.16115616,0.4718424,1.0524287,-0.14118725,0.0336145,0.5480751,-0.32466623,-0.64303344,0.20853226,-0.16160539,0.21137646,-0.12110167,-0.099826165,-0.6055965,0.43540287,0.2756874,-0.07065329,-0.0060144113,-0.38292944,-0.23416933,0.17786625,-0.3669879,-0.3286844,-0.3116539,0.31417355,0.76753724,-0.269412,-0.34100708,0.14305955,0.33611885,-0.13506773,-0.29413667,-0.11874248,-0.2684823,0.28471777,0.09348909,-0.25733843,-0.26178864,-0.04459536,-0.35106483,0.2585603,0.22817132,-0.39606076,0.07093099,-0.34447938,-0.16658527,0.90045726,-0.019871086,0.2189587,-0.48666894,-0.42168742,-0.73445964,-0.5343808,0.4423408,0.090283565,-0.09334923,-0.5396607,-0.02954592,-0.10124007,-0.19409624,-0.046123743,-0.3907843,0.29373348,-0.0060454747,0.30029958,-0.067095526,-0.94018817,0.03855894,0.18702802,-0.45757276,-0.65369856,0.33330745,-0.19873825,0.9801621,0.10397398,0.04377514,0.50667644,-0.42391175,-0.106889725,-0.31210372,-0.0730274,-0.7505208,0.17502767 -164,0.45358515,-0.10009475,-0.5656888,-0.0207193,-0.48828596,0.2853031,-0.19544183,0.31378615,0.37675506,-0.2802462,-0.10328959,0.009893582,-0.2831957,0.1812461,-0.06793665,-0.58016914,0.03673986,0.275194,-0.7217652,0.25572607,-0.35795063,0.46445194,0.010973563,0.39946195,0.23076898,0.08419769,-0.18101457,0.1520345,-0.07042003,-0.075153045,0.10810225,0.20658422,-0.678208,0.39577022,-0.1276351,-0.3236285,-0.14751408,-0.33170366,-0.31490055,-0.8261551,0.16659483,-0.83179826,0.64237916,-0.16542329,-0.49246517,-0.27286962,-0.119922295,0.41645497,0.014323037,0.07968461,0.38439962,-0.41448084,-0.20665497,-0.29528564,-0.20168446,-0.5155973,-0.5727035,-0.040535346,-0.42884922,0.06998412,-0.19280021,0.4608674,-0.26485136,0.008944105,-0.23346265,0.36082655,-0.37900624,0.24023694,0.25773716,-0.21460447,0.08793734,-0.6731313,-0.12572226,-0.09184476,0.18578623,0.113312684,-0.29447377,0.13412954,0.21958223,0.42027366,0.11880873,-0.29529434,-0.16766526,0.16201688,0.057341855,0.43420908,-0.2630255,0.21454008,-0.17549564,0.02551962,0.6049052,0.14776835,-0.026074711,-0.3440447,0.0885634,0.004120368,-0.015800172,0.33798265,0.5643826,-0.25932595,-0.12808381,0.35775083,0.5496323,0.2103913,-0.23933929,0.40411523,0.06473175,-0.42938274,-0.03947967,0.20090213,0.06550299,0.53350854,-0.018720526,0.13721544,0.7187321,-0.15100731,-0.064128354,0.13720943,0.2651196,0.119759664,-0.09619979,-0.0894767,0.21353754,-0.4946814,-0.072557226,-0.11737059,0.66338754,0.029425321,-0.6589204,0.35543472,-0.49132,-0.12752137,-0.0428165,0.5189675,0.88363105,0.6218077,-0.029720208,0.8609693,-0.29891083,0.008209994,0.0042878618,-0.2510409,0.17531072,-0.29013854,0.15374827,-0.54202116,-0.13975519,-0.21628413,-0.19864625,0.014964127,0.45774847,-0.59121174,-0.24013421,0.07455459,0.62397724,-0.35261235,-0.05713072,0.83577704,1.058127,0.8065782,0.104123004,1.3058956,0.47825262,-0.12728713,-0.15144004,-0.21997349,-0.50756973,0.15526797,0.114266105,-0.16076007,0.2443611,0.2574069,-0.071493015,0.562997,-0.40937108,0.106199704,-0.1045136,0.032097127,0.048721615,0.0055767754,-0.49461836,-0.32191512,0.25595978,0.19468364,0.05617525,0.2061819,-0.3927178,0.43160036,0.20817715,1.1064839,-0.11495161,-0.026226869,0.0061491085,0.16782573,-0.026033968,-0.34903806,-0.19670318,0.06989002,0.3923554,-0.075605534,-0.32479703,0.025685182,-0.19651844,-0.24253973,-0.2784525,-0.11454511,-0.11046284,-0.24844693,-0.54187137,-0.32804033,0.2500505,-0.35007337,0.42394596,-2.3043542,-0.36068404,-0.120046906,0.37373126,-0.12933896,-0.45043182,-0.36259115,-0.45216852,0.0633514,0.23190314,0.26166865,-0.5400029,0.6229845,0.3805399,-0.53661186,-0.16170223,-0.7237346,-0.05165948,0.06345277,0.30337682,0.033951707,-0.18864653,-0.23833476,-0.09264811,0.53400993,-0.24885607,-0.10528713,0.5217908,0.48721212,-0.079591185,0.27475485,0.22508186,0.6971738,-0.3161895,-0.39267606,0.5033608,-0.45778197,0.20791999,0.09971524,0.14492492,0.43368372,-0.2567733,-0.80285746,-0.7379363,-0.3456931,1.2463269,-0.27663738,-0.463331,0.08328794,-0.23880683,-0.4803592,0.011279345,0.6456761,-0.10762049,-0.009756098,-0.7465562,-0.37157404,-0.0268896,0.3546929,-0.11432159,0.040268227,-0.3792076,0.7431028,-0.23384564,0.41395587,0.30255514,0.28197986,-0.05607558,-0.46958902,0.11595004,1.0414908,0.47436062,0.17683183,-0.31676757,-0.02837944,-0.10797815,0.08894549,0.003827737,0.6710652,0.576321,-0.07128433,0.029235266,0.30916497,-0.24433678,-0.037640512,-0.3001336,-0.30570602,-0.14090055,0.18875368,0.57702637,0.6625475,0.15652464,0.4640396,-0.1974335,0.16751412,-0.0738549,-0.5706626,0.33076245,0.63810974,-0.1601882,-0.340782,0.48958042,0.32897028,-0.33356413,0.23177265,-0.54697365,-0.3633858,0.40626156,-0.09792752,-0.5290784,0.1781943,-0.37773794,0.17108342,-0.64037263,0.60076654,-0.19260004,-1.0350425,-0.6726374,0.05936603,-2.8164582,0.19588616,-0.14656152,-0.032222006,0.02586126,-0.26613158,0.23948081,-0.49753934,-0.4440146,-0.038156085,0.12194652,0.60909665,-0.08449177,-0.06420083,-0.22441825,-0.39741832,-0.0946836,0.2938107,0.34600976,0.16447379,-0.119594336,-0.37865293,0.18059112,-0.3768009,-0.40441513,-0.11519731,-0.9136861,-0.8228799,0.04207961,-0.42330173,-0.18695402,0.7989695,-0.5623688,0.018923957,-0.39626738,0.031001357,-0.03231339,0.43144894,0.12541161,0.13323347,0.11347279,0.0015523159,-0.26523808,-0.35254982,0.27583554,0.11250631,0.37056458,0.5178982,-0.12671508,0.29364672,0.6927491,0.7146057,-0.07137316,1.0105121,0.33059472,-0.104262225,0.15998939,-0.036645044,-0.23843323,-0.5801908,-0.17743716,-0.0014769778,-0.6362695,-0.2273535,0.030046202,-0.2954481,-0.82050353,0.3904235,-0.013914949,0.058076657,0.10620002,0.3176012,0.5358915,-0.0374417,-0.021650888,-0.15371895,-0.18090095,-0.27630478,-0.63840735,-0.5374132,-0.80397826,0.08783564,1.7252586,-0.15100704,0.24572028,0.22012821,-0.44139525,0.13275456,0.16574635,0.06583131,-0.08461191,0.6026801,-0.19425505,-0.6397399,-0.009447777,-0.30307648,0.05513514,-0.661178,0.1611796,0.9205522,-0.79140854,0.49840733,0.27883655,0.16500425,-0.14092566,-0.4289038,-0.3101071,0.0045852205,-0.3481796,0.5349836,0.24569577,-0.5513412,0.3467706,0.08122607,-0.13292804,-0.66005635,0.36791292,-0.120132975,-0.1464014,0.09524027,0.44883904,-0.14069185,-0.1166427,-0.019023212,0.24718864,-0.33214283,0.33993357,0.17868103,-0.16576713,0.14586946,-0.10573853,-0.08767645,-0.6889379,0.020508941,-0.42803985,-0.5558336,0.13703884,0.15673052,0.1995311,0.46352932,0.30118397,0.44599965,-0.20900251,0.036388583,-0.2915561,-0.4428218,0.34883383,0.49900267,0.40037042,-0.34873602,0.43261895,0.06070792,0.12827669,-0.12407081,0.1415783,0.5648316,0.12817416,0.40822676,-0.21599147,-0.014577155,0.0962217,0.85392153,0.07513675,0.54543376,-0.017358629,-0.25221002,0.122088775,0.079397015,0.15165378,-0.15280443,-0.45647705,0.022214446,-0.17057052,0.24816039,0.41639173,0.08504018,0.30259532,-0.27108005,-0.353728,0.23185815,0.09016887,0.18240365,-1.4197527,0.31855088,0.26649377,0.75066686,0.08400922,0.18607989,0.05338568,0.50455165,-0.15674114,0.14920703,0.36160824,0.05083449,-0.17055526,0.3933463,-0.77064615,0.4524421,-0.14491734,-0.04803972,0.24590476,0.057034392,0.2949062,0.9110749,-0.18674096,-0.009857333,-0.0007238732,-0.24493164,-0.12241382,-0.36910936,0.30298382,-0.7549356,-0.45453852,0.78850675,0.6353362,0.34437352,-0.3718259,0.057238657,-0.05555539,-0.24628983,0.31604326,-0.13123679,-0.06687018,-0.14086999,-0.5362535,-0.03316696,0.50869024,-0.2126313,-0.18644479,0.13988152,-0.09532745,0.21815266,-0.062141165,0.0026827203,-0.09768367,-0.81751543,-0.061848722,-0.59962475,-0.4928366,0.21784931,-0.2226608,0.10318077,0.21605545,0.13787113,-0.24083072,0.49648842,0.30004406,0.96245515,0.174927,-0.15470658,-0.20329443,0.2247707,0.227343,-0.29052156,-0.12072719,-0.2835956,0.41329157,-0.53497535,0.2979426,-0.34824687,-0.346704,0.15980506,-0.047517262,0.059382815,0.389331,-0.20235835,-0.21252455,0.23497511,0.019530836,-0.31756973,0.117755964,-0.32607636,0.09471241,0.2253075,-0.2700903,-0.040944245,-0.23399456,-0.19130427,0.13469759,0.23539144,0.2976438,0.62199557,-0.0043620467,-0.30917087,-0.02866491,0.022973308,0.6451967,0.08228995,-0.1981124,-0.45614764,-0.20331813,-0.22863165,0.55466884,-0.041196052,0.2535985,0.060205117,-0.4148266,1.0006881,0.079292044,1.1610125,0.08364691,-0.39345983,0.083328925,0.45281413,-0.016638359,0.021339925,-0.4941035,0.9281653,0.59423995,-0.14828683,-0.12917587,-0.2709831,-0.28247148,0.41856745,-0.2692813,-0.11417646,-0.21147543,-0.9210171,-0.123208046,0.24026981,0.394747,-0.0985251,-0.012116993,0.056182083,0.22935636,0.0016044424,0.16346763,-0.5991784,0.16443355,0.29107362,0.41110766,-0.19126275,0.3159367,-0.31689167,0.37927085,-0.8898974,0.113151036,-0.46693036,-0.026018668,-0.103256,-0.32152045,0.27885333,0.15630354,0.37456387,-0.42846906,-0.14979957,-0.37934443,0.6081707,0.11550064,0.17457184,0.7383033,-0.18151195,-0.22268619,-0.038854208,0.24967283,1.1756176,-0.18605913,0.07963769,0.42179185,-0.2420254,-0.52649856,0.21543609,-0.47019857,0.0686651,-0.0742245,-0.41778266,-0.23282348,0.39130336,0.21821326,0.011852851,-0.10419785,-0.5209593,0.23711866,0.43713185,-0.30439165,-0.22682479,-0.28977606,0.3434536,0.51845926,-0.25006503,-0.4072551,-0.20196377,0.6570338,-0.35616648,-0.3708723,0.08731813,-0.4156183,0.25399634,-0.024230016,-0.49595183,-0.13349344,0.08879871,-0.466582,-0.03251581,0.39122704,-0.41242072,0.07301282,-0.049303368,0.122086324,0.9189405,0.02411437,0.2272032,-0.54953605,-0.58734596,-0.8429663,-0.46111506,-0.1482591,0.5694876,-0.1763466,-0.5500404,-0.119011715,-0.27047026,-0.15140446,0.02678277,-0.5441404,0.41121277,0.26244605,0.65892726,-0.3055306,-1.1225471,0.034431048,0.22790122,-0.3393882,-0.39823526,0.5171979,-0.20583676,0.7790461,0.020538999,0.17269771,-0.08902314,-0.56082207,0.419033,-0.28957394,-0.07306288,-0.881229,-0.060627773 -165,0.461215,0.0055605024,-0.49027207,-0.12481381,-0.23001638,0.088598534,-0.40340257,0.38803548,0.18748686,-0.47494024,0.07220159,0.061663583,-0.014450991,0.35423514,-0.35761958,-0.52846956,0.14790633,0.08594297,-0.5107253,0.54171485,-0.34591156,0.28791696,-0.051966563,0.40139198,0.077102914,0.31622624,0.22249955,0.0019990727,-0.055876844,-0.30461857,-0.07171753,0.15783468,-0.53847563,0.20764229,-0.29652023,-0.22671747,-0.054394666,-0.42475322,-0.36758777,-0.6493199,0.12858707,-0.6097897,0.6938538,0.018055797,-0.29397807,0.19482344,0.16885188,0.2342905,0.02918461,-0.056940556,0.14319362,-0.29420477,-0.20507959,-0.2580159,-0.3173694,-0.4953485,-0.546713,0.05460766,-0.571173,0.06308415,-0.23384446,0.23921195,-0.20655814,-0.024771139,-0.024295427,0.5367365,-0.26609945,0.047073103,-0.053315155,-0.18089554,0.23297837,-0.6010169,-0.2676076,0.1029006,0.28710073,-0.13378878,-0.19441843,0.3082216,0.15539452,0.49372283,-0.058161914,-0.22604261,-0.37594894,-0.044301413,0.049026966,0.60615236,-0.24985075,-0.3154624,-0.18689474,-0.115855895,0.42406082,0.17063296,-0.0052896813,-0.4249668,-0.08778638,-0.1738285,-0.18451917,0.46196395,0.5794126,-0.19297603,0.11086699,0.36550438,0.3069939,0.07078442,-0.18776071,0.13609271,-0.121284425,-0.45238099,-0.14311154,-0.029461298,-0.1464977,0.47249258,-0.0645252,0.35845298,0.4803487,0.009221643,-0.12856957,0.15660739,0.1289973,0.1121241,-0.17896622,-0.26097217,0.22651,-0.6118009,0.05290245,-0.17112763,0.6595916,0.058936108,-0.98187846,0.3953691,-0.47638637,-0.020155512,0.117785156,0.41038048,0.6560335,0.5559405,0.08880861,0.7529259,-0.46046197,0.122742824,0.03610878,-0.29453114,-0.02301985,-0.16980228,-0.028126441,-0.5171869,-0.0029635932,0.11184895,-0.07543782,0.16111997,0.4095857,-0.4248361,-0.09818874,0.2636002,0.68608975,-0.22024857,0.016850585,0.830329,1.1233023,0.9242915,0.15070458,0.96695423,0.042623702,-0.12810284,-0.106817804,-0.0057824478,-0.6260047,0.3083899,0.3581661,-0.060750484,0.35607314,0.084176846,-0.035345454,0.23235977,-0.34178346,-0.3198924,-0.083955415,0.27729347,0.0592661,-0.11540061,-0.38505915,-0.30138987,0.15607712,-0.077977344,0.14556515,0.24133357,-0.2166961,0.4388338,0.2836121,1.2591617,-0.06396006,0.13667567,0.21075305,0.36976025,0.3143893,-0.1727637,-0.1912901,0.24818888,0.28897387,0.18232775,-0.43859175,-0.04176671,-0.24419384,-0.5335931,-0.1816072,-0.20112303,-0.28140378,-0.04058276,-0.41474557,-0.2575692,-0.07829158,-0.4475846,0.4805798,-2.8786287,-0.103126466,-0.14204372,0.37841833,-0.09226794,-0.3899881,-0.16887721,-0.44461757,0.5879971,0.3274891,0.39181313,-0.5471904,0.2589252,0.5649334,-0.4261679,-0.20278941,-0.54792845,-0.053423535,0.034188606,0.38124627,0.10398161,-0.29344448,0.11021835,0.24372335,0.4910189,-0.15860945,0.18360204,0.25290886,0.30342576,-0.07166024,0.3003899,-0.08572467,0.52026063,-0.4087203,-0.18991008,0.3409757,-0.41942278,0.027255202,-0.13015443,0.13995871,0.53468645,-0.44713452,-0.76238525,-0.52686435,-0.09028271,1.1309017,-0.13254362,-0.49184537,0.22001399,-0.1387473,-0.48562112,0.078841366,0.35791957,-0.21706176,0.11772084,-0.68149453,-0.048415605,-0.15041578,0.15324047,-0.092060134,0.06683062,-0.46152475,0.61649966,-0.10064764,0.62676346,0.40344822,0.28666347,-0.35771826,-0.4225461,0.019121157,0.8830461,0.48566943,0.15859959,-0.15814225,-0.1113701,-0.15176961,-0.27865967,0.07657747,0.6357499,0.61970633,-0.08878747,0.07777631,0.27247006,0.1096128,0.16554391,-0.18316144,-0.35068476,-0.13968855,0.05338967,0.619308,0.6077983,-0.06603173,0.2936589,-0.00042080972,0.2895816,-0.18276945,-0.40712315,0.47203797,0.7558744,-0.1575978,-0.39301935,0.6011203,0.36009267,-0.08162261,0.43891695,-0.59721625,-0.5747599,0.44505486,-0.06287373,-0.43681258,0.2874081,-0.25679788,0.20992629,-0.6388793,0.40005428,-0.2773594,-0.5926572,-0.4619745,-0.22442901,-2.8760195,0.1195357,-0.16989553,-0.16804364,-0.21350467,-0.23012792,0.22003703,-0.56351066,-0.5923691,0.11279637,0.025181673,0.6537365,-0.13451752,0.06869084,-0.16321614,-0.45817515,-0.35710943,0.20312902,0.08571464,0.35340804,0.06752148,-0.23053625,-0.117848516,-0.22461572,-0.42201185,0.04030681,-0.5841911,-0.44141418,-0.16156694,-0.4790116,-0.283464,0.65972716,-0.43130583,0.072870985,-0.36515394,-0.04808816,-0.10438751,0.25284088,0.08352959,0.15089087,0.124462985,-0.027106397,0.0338292,-0.33655673,0.19655791,-0.027120491,0.12492269,0.5057918,-0.107706204,0.15826336,0.4122495,0.7334489,-0.28239813,0.8971015,0.32459202,0.010661991,0.3264964,-0.21826673,-0.4142541,-0.46556404,-0.31494543,0.13275263,-0.36951023,-0.3034837,-0.1025557,-0.3461375,-0.7129144,0.5538503,-0.020120889,0.15045306,-0.10351948,0.19716722,0.266002,-0.26939934,-0.18200986,-0.020972107,-0.15019396,-0.39370143,-0.37571707,-0.65764195,-0.44568092,-0.09275987,0.9475087,-0.066933244,-0.03643801,0.2650271,-0.10490282,0.13430464,0.11304818,0.19283387,0.17457557,0.3311418,0.057967726,-0.73836833,0.40552303,-0.30740535,-0.22093122,-0.46992934,0.17872995,0.67335844,-0.5270494,0.4360773,0.49699652,0.20670307,-0.25784516,-0.61264753,-0.056566317,0.054622494,-0.20126756,0.55325484,0.25867406,-0.87146956,0.6021573,0.2823521,-0.29144648,-0.7078275,0.41636539,0.13101494,-0.076785356,0.018062837,0.43989214,-0.016561564,-0.10393414,0.03914208,0.14962167,-0.32647172,0.36848032,0.21493536,0.0060575604,0.4372763,-0.25848305,-0.13781382,-0.7026447,-0.110521205,-0.49341595,-0.34526467,0.10650478,-0.022804076,0.025555491,0.037277747,-0.15523085,0.44348267,-0.42252684,0.17029643,-0.17811218,-0.26511872,0.2637245,0.50373447,0.48753378,-0.24950713,0.5489863,0.0069030076,-0.022279762,-0.16093835,-0.010617018,0.47510582,0.1436137,0.28238633,-0.09528702,0.040590327,0.13290213,0.65672106,0.25780585,0.29898834,0.03581939,-0.26300567,0.15237606,0.07982001,0.16378754,-0.047453366,-0.4929269,-0.025438666,-0.29558122,0.07930196,0.5097193,0.0338073,0.33862603,-0.1853686,-0.14128521,0.050803136,0.19601001,-0.13045591,-1.6823537,0.41929603,0.2045429,0.7571254,0.4126302,0.13226189,-0.064563096,0.74656427,-0.05971707,0.046710953,0.26118624,0.13383694,-0.18964216,0.45403346,-0.72266793,0.3681982,-0.027711209,-0.016159125,0.09927784,-0.02299475,0.36355957,0.79297227,-0.15460852,0.110971615,0.042384293,-0.24756952,0.081122845,-0.36724472,0.07301877,-0.24197939,-0.28639352,0.7757262,0.3247375,0.3622863,-0.23425564,0.0031746335,0.10439362,-0.14047348,0.17245422,0.04374798,0.05738561,-0.18876745,-0.44023877,-0.096057855,0.5591279,0.04326675,0.10782876,0.20351346,-0.18933041,0.25124872,-0.017515115,0.13340925,0.04720982,-0.6483666,-0.0020228904,-0.35730228,-0.35718834,0.3614485,-0.16198486,0.20118691,0.25209397,0.1383332,-0.23356129,0.20803417,0.31353116,0.68293554,-0.034757502,-0.072111115,-0.13183254,-0.027466653,0.21595411,-0.22305804,-0.059449814,-0.43056068,0.093034506,-0.5631409,0.22803465,-0.084556535,-0.18458243,0.23819116,-0.028582849,0.12809202,0.47763607,-0.14306358,-0.12746455,0.05087648,0.10224417,-0.17622799,-0.32436204,-0.21973628,0.10449594,0.16139475,-0.09386093,-0.03266557,-0.11063138,-0.2563708,0.21783192,0.032748807,0.42032152,0.40915182,0.18585053,-0.3186341,0.15958029,0.05207544,0.5694254,0.15147462,-0.07709649,-0.16953057,-0.41946557,-0.23500124,0.1940633,-0.14281999,0.07782637,0.19105159,-0.19084525,0.6832473,-0.06172827,0.97080564,-0.022196982,-0.3323593,-0.031228414,0.4083091,-0.08763066,0.05038792,-0.27961713,0.9789452,0.5149599,-0.039430946,-0.07221113,-0.30329582,-0.104628876,0.12864208,-0.30472022,-0.12572883,-0.022983385,-0.5276004,-0.22542723,0.102666155,0.15040386,0.05449661,-0.14447048,-0.11400059,0.3093156,0.14461799,0.2622509,-0.5239035,0.08478476,0.37474102,0.19274412,-0.041865215,0.12773056,-0.46362323,0.30081567,-0.3958412,0.034885023,-0.3969278,0.056649655,-0.1832674,-0.24525115,0.17174101,-0.051200807,0.4041458,-0.23579955,-0.36893255,-0.13525176,0.35142204,0.13250951,0.12570968,0.51811165,-0.13518181,0.007268451,0.009317674,0.46802324,0.93141466,-0.34456176,0.08058385,0.4102552,-0.24977756,-0.5465688,0.00037063845,-0.50071466,0.1011217,-0.064989954,-0.17551044,-0.30667013,0.13494575,0.21393707,0.16413465,-0.02256209,-0.6155392,-0.18442088,0.41373774,-0.23400632,-0.1771115,-0.19080564,-0.0013719238,0.58731484,-0.2715718,-0.3265406,0.0145061165,0.24982536,-0.14303213,-0.6779033,0.1510978,-0.33606246,0.27833128,0.2820742,-0.29287112,-0.19354245,-0.029166933,-0.48000985,0.16287477,0.23992363,-0.3019353,0.015544337,-0.30213267,-0.046466462,0.72703683,-0.18511629,0.36898082,-0.4562468,-0.5129887,-0.82226306,-0.3578544,-0.018672764,0.2004716,0.11487543,-0.6798891,-0.14342044,-0.24563876,-0.13312441,-0.024050586,-0.36664534,0.39547783,0.1871248,0.52243346,-0.234862,-0.84949625,0.19953483,0.1503737,-0.13184908,-0.5104841,0.45088452,0.10107021,0.71553695,0.1620543,0.045084354,0.116280764,-0.62277293,0.1969398,-0.19675061,-0.10162543,-0.60227287,0.11968541 -166,0.39369264,-0.08314272,-0.526419,-0.10113599,-0.28313416,0.04484219,-0.3553973,0.16933636,0.28351724,-0.39976308,0.02198157,-0.25418502,0.057408016,0.17993023,-0.07357582,-0.6549996,0.018059453,0.16336857,-0.5441927,0.6094166,-0.30529234,0.27228615,0.12673862,0.09758693,-0.13680308,0.23478438,0.27572352,-0.21595182,-0.0042387927,-0.20183706,0.0533724,-0.22576134,-0.7971126,0.36114082,-0.3204901,-0.23905851,0.23982742,-0.38957277,-0.42254356,-0.6936843,0.032588977,-0.8479276,0.5864139,0.009944677,-0.22093031,0.35778525,-0.08306389,0.2611491,-0.12233633,0.06976171,0.2801601,-0.30666617,-0.42573422,-0.31393793,-0.18591632,-0.5219331,-0.52750623,-0.09250818,-0.59867805,0.111649625,-0.44290558,0.13214093,-0.2922511,-0.025081566,-0.12162485,0.39569846,-0.3735167,0.18137206,0.1342346,-0.1916239,0.35735896,-0.44466332,0.0071914964,-0.18839535,0.1127581,0.09722175,-0.14937408,0.33452517,0.11009847,0.39134064,0.03182509,-0.25716844,-0.27901378,-0.097195365,0.28506038,0.40328285,0.15875949,-0.16383521,-0.06923882,-0.123804055,0.00465906,0.1079235,-0.0432749,-0.38320524,-0.053346355,-0.076370455,-0.48331672,0.51147157,0.47653618,-0.33459142,0.111684695,0.36449096,0.4481587,0.03582508,-0.165961,0.111335576,-0.16979994,-0.4333866,-0.29427686,0.19841377,-0.18220465,0.4855399,-0.18812847,0.13898872,0.691206,-0.1874754,-0.40695825,-0.02732707,0.09047957,0.08434434,-0.07165575,-0.17246342,0.47278184,-0.692344,-0.032795902,-0.43250102,0.8497227,0.07076029,-0.8983634,0.40687442,-0.509837,0.07012677,-0.15918495,0.68069094,0.7000027,0.71923035,0.094017975,0.792456,-0.5428864,0.2261536,-0.10389893,-0.6046496,0.33897614,-0.19396129,0.21119848,-0.4375743,-0.11315305,-0.054767005,-0.16286948,-0.08340715,0.5166102,-0.17990054,-0.15379761,0.10532228,0.7204115,-0.37834534,-0.069256544,0.67821723,1.0463269,0.8680253,0.2441632,1.1419262,0.3551138,-0.17783216,-0.14626023,-0.05023271,-0.8772636,0.14393319,0.29991278,0.42521635,0.13085032,0.1842351,0.013316044,0.23652335,-0.29866388,-0.18710054,-0.1935244,0.4969038,-0.119159706,-0.1436588,-0.3158381,-0.24791251,0.16280365,0.08367886,0.1594117,0.34421915,0.09351456,0.46720073,0.25737792,1.2995918,0.06692127,0.051418014,0.07156328,0.47062302,0.40452403,-0.022309154,-0.21658644,0.33711722,0.29553375,0.033816416,-0.5752471,-0.014979912,-0.15465753,-0.46109655,-0.21572943,-0.3029558,0.09547717,-0.10821229,-0.10351952,-0.19231747,0.1327962,-0.40345907,0.52898484,-2.500071,-0.06506001,0.01841999,0.33977443,-0.044302814,-0.24026032,-0.072642915,-0.5988321,0.5167643,0.4578136,0.60700715,-0.5182015,0.38828918,0.61891043,-0.61120975,-0.011200173,-0.6129155,-0.04136507,-0.2926409,0.3761937,0.06817822,-0.17191133,-0.14678761,-0.029256007,0.5702694,-0.041072093,0.19816984,0.3952271,0.3124556,0.082799636,0.48152804,0.027527574,0.36053416,-0.3604146,-0.16145173,0.2331179,-0.20997111,0.19519098,-0.33014637,0.06803983,0.39764056,-0.5224339,-0.8023424,-0.43143648,-0.08503842,1.1811781,-0.45587876,-0.47248775,0.2949534,0.0068284743,-0.15373364,0.10246378,0.45597595,-0.15662637,0.099138215,-0.61600924,-0.008809353,0.11775363,0.24169931,0.027507106,0.09190511,-0.42748564,0.6955721,-0.053420592,0.4584141,0.5114047,0.08906471,0.042493243,-0.3811492,0.27776557,0.7589593,0.1201904,0.24976437,-0.44189787,-0.2068543,-0.14054972,-0.20163189,-0.015670663,0.47555223,0.6458469,-0.14997146,0.057040017,0.30398956,-0.26428702,0.030312976,-0.17689729,-0.47434995,-0.12866299,-0.079740755,0.48011607,0.9056409,0.08148716,0.25669885,0.072242856,0.37895605,0.03915419,-0.5154262,0.6027454,0.6602084,-0.10710603,-0.19844326,0.45456192,0.5021514,-0.16654839,0.5318485,-0.4478061,-0.5205914,0.35752943,-0.020111902,-0.53100187,0.28661865,-0.34389392,0.15793668,-0.7427945,0.27544218,-0.30841064,-0.5946833,-0.46311146,-0.07207174,-3.3548093,0.15030332,-0.12582287,-0.027225902,-0.05373907,0.0072783134,0.2711881,-0.21129522,-0.5117292,0.28402424,0.27919072,0.4568081,-0.19834249,0.07111096,-0.26713032,-0.21975717,-0.4298016,0.35225466,0.17478916,0.10259835,-0.13233072,-0.4668732,-0.11775661,-0.3884192,-0.2938166,0.040184624,-0.48202464,-0.1875293,-0.24250293,-0.40217972,-0.5500576,0.6992679,-0.3346326,0.011923502,-0.19387709,0.03426135,0.025505945,0.2758835,-0.11555389,0.054387566,0.0127289975,-0.0575254,-0.16584301,-0.26503038,0.26650524,0.018663555,0.25438252,0.2998541,-0.041280907,-0.12763833,0.6675733,0.54009336,-0.028807959,0.8553912,0.30205494,-0.049882475,0.41320434,-0.14616993,-0.38944918,-0.71554565,-0.11837769,-0.3528177,-0.4217284,-0.32445017,0.1867787,-0.4103997,-0.7664698,0.57936954,0.18230799,-0.15003134,0.090427205,0.2702191,0.34407786,-0.08937175,-0.1101619,-0.1411476,-0.24687044,-0.56099266,-0.29908305,-0.8088347,-0.4056293,-0.0022699663,0.94034636,-0.09771399,-0.19391586,0.02736279,-0.19025643,0.1978044,0.22438528,-0.07479275,0.31026062,0.5755977,0.28684536,-0.7282321,0.5594832,-0.14071573,-0.10853153,-0.6527065,0.21751407,0.53613234,-0.88957185,0.28578123,0.5886564,0.026612435,0.04462732,-0.64269733,-0.29364094,0.076848865,-0.21230112,0.4285593,0.08745966,-1.0550631,0.59694535,0.14983256,-0.3127975,-0.7485887,0.3808671,-0.029661315,-0.27506799,0.1235144,0.28877825,-0.079323545,0.045937426,-0.41231894,0.050191432,-0.42377594,0.32807952,0.005858496,-0.14230622,0.39792866,0.04351592,-0.1297755,-0.82660925,-0.21927224,-0.39906004,-0.22611347,0.22399496,-0.08187179,0.1325929,-0.03477336,0.2316972,0.41926268,-0.168425,0.106250234,-0.3038965,-0.34369326,0.505969,0.45909277,0.27947357,-0.4500557,0.6611101,-0.13547157,-0.09955168,-0.12749067,0.12790738,0.3734629,0.0945657,0.38747188,0.23978604,-0.089303136,0.034886446,0.7980791,0.25581363,0.43024182,0.22491762,-0.16923456,0.49160823,0.018120037,0.23874307,-0.04802044,-0.43929705,0.012810268,-0.19051729,0.1100872,0.4084329,0.105270244,0.5367226,-0.25313735,-0.14343251,0.008703564,0.22818191,0.27271226,-0.8430442,0.40013474,0.22618687,0.5253304,0.7441969,-0.02366851,0.10757654,0.79829216,-0.21855442,0.12423967,0.15802982,-0.11258144,-0.38697046,0.4416195,-0.6080939,0.27632627,-0.091580115,-0.09408386,0.31401268,0.06223441,0.46857738,0.92990357,-0.098665394,0.18876453,-0.083046876,-0.28570998,0.12814413,-0.2571502,-0.017340302,-0.33024678,-0.44251785,0.6217634,0.27138656,0.45378226,-0.22379597,0.0022342673,0.07466864,-0.26100716,0.3052078,0.007839685,-0.31897712,0.03235495,-0.5714035,-0.26273373,0.60781187,0.15320192,-0.03332034,0.19233383,-0.018288722,0.30406472,-0.07562507,-0.13899752,-0.09229641,-0.59667414,0.04693492,-0.26502863,-0.3468699,0.71727866,-0.075761,0.30067712,0.06526876,0.020981712,-0.30017623,0.13707022,0.26282918,0.64310175,0.14719306,-0.24695201,-0.22335222,-0.13906178,0.20513694,-0.3993608,0.018428138,-0.28211424,0.022559008,-0.7995084,0.33924457,-0.35873723,-0.28986564,0.052604567,-0.2584141,-0.046312902,0.5585541,-0.2185313,-0.19562136,0.13431601,0.05205047,-0.20581412,-0.28649083,-0.4040205,0.023132866,-0.05460905,-0.08913828,-0.007852162,0.015765121,0.022926718,0.51798487,0.07734668,0.13117395,-0.074401625,0.11849751,-0.46560302,-0.10442662,0.088605165,0.5086559,0.047584828,-0.11049902,-0.18354861,-0.20981176,-0.24764216,-0.00043825168,-0.033736296,0.24443579,0.09357741,-0.3206171,0.7534438,-0.07142163,0.80248296,0.042428695,-0.30029815,0.2091373,0.6007642,0.13670874,0.04279675,-0.33764377,0.7863188,0.55877596,-0.2460959,-0.12689427,-0.627626,-0.06861388,0.0537746,-0.24493702,-0.16585243,-0.047645364,-0.6331542,-0.1840277,0.11938916,0.17961256,0.009424448,-0.10762954,0.14667809,0.14545536,0.3277423,0.23198676,-0.45005557,-0.016148666,0.36671373,0.20042464,0.015369415,0.16009493,-0.37742832,0.37092748,-0.51251394,0.113467135,-0.3158771,-0.07153437,-0.06064495,-0.16934215,0.16656382,0.03635079,0.31294912,-0.27281293,-0.5689512,-0.19616978,0.40260532,0.31727237,0.4211223,0.7349023,-0.24469687,-0.029443193,-0.03556567,0.5894326,0.906154,-0.35359907,-0.03832295,0.4852763,-0.2964048,-0.49534157,0.26711437,-0.24798019,0.2620721,-0.007671088,-0.3116278,-0.38820463,0.14044778,0.0073840404,-0.2011045,0.22223225,-0.6493593,-0.041036576,0.25178418,-0.21684782,-0.19643469,-0.2894723,-0.037403725,0.7853578,-0.2393073,-0.3795299,0.038059745,0.0071997386,-0.33821958,-0.37717924,0.039353907,-0.31987095,0.28132102,0.2425057,-0.20805109,0.046201535,0.28500846,-0.653365,0.14459786,0.1952749,-0.3250473,-0.010059531,-0.4048695,0.083281144,0.86742544,-0.2385401,0.14242509,-0.32833678,-0.65916675,-0.8601102,-0.24094994,0.34592023,0.13775924,-0.03682649,-0.29688993,-0.04305436,-0.10176088,-0.088193126,-0.04090378,-0.5568703,0.3987407,0.026072178,0.51981944,0.037888944,-1.0965236,0.25971967,0.13694558,-0.46824512,-0.5181202,0.35562667,-0.2427017,0.79642487,0.08452242,0.11685824,0.1491141,-0.7728706,0.25583562,-0.2924571,-0.105737574,-0.4115596,0.023894956 -167,0.4229245,-0.33900726,-0.67501605,-0.2750705,-0.18961425,-0.09248219,-0.21503587,0.46021196,0.20505045,-0.6631212,-0.02758957,-0.32037318,-0.034669053,0.49122688,-0.12125749,-0.66042525,-0.025119878,0.18649612,-0.5861128,0.7585775,-0.45908108,0.24873066,0.3132606,0.25421575,-0.108100064,0.11576781,0.0960465,-0.116196156,0.23703896,-0.017156558,-0.06602627,-0.001439547,-0.5285574,0.102466896,0.1506523,-0.49804497,-0.020391317,-0.34179926,-0.25059164,-0.8197491,0.15058585,-0.8795147,0.6588596,-0.05139028,-0.4692085,-0.09497207,0.14594392,0.52736896,-0.27128544,0.116954714,0.14962767,-0.25783992,-0.4984555,-0.09900982,-0.32754958,-0.6253851,-0.809697,-0.2993411,-0.50521696,-0.034129903,-0.2979705,0.08634434,-0.42013073,0.074801534,-0.23721695,0.44371673,-0.5497272,-0.04275712,0.17700964,0.07535928,0.5741072,-0.79022425,-0.00068869715,-0.26700315,0.14434063,-0.0063828123,-0.37153742,0.23930931,0.36193955,0.7484951,0.07524988,-0.15444589,-0.25028992,-0.12818168,0.025801767,0.3839504,-0.09811501,-0.31648755,-0.20334913,-0.12762304,0.48940238,0.34406665,0.031597313,-0.47406188,-0.0074116886,-0.019412108,-0.3652154,0.26734924,0.5254888,-0.31791034,-0.12126379,0.25016937,0.59765935,0.114040375,-0.23106383,0.1700316,-0.035250243,-0.5812941,-0.21048619,0.22503094,-0.17794369,0.692041,-0.10950592,0.12572123,0.44869283,-0.055571783,-0.18088831,-0.20948035,0.0040762345,-0.15344511,-0.07603559,-0.5308989,0.42682543,-0.59837246,0.13100304,-0.49199197,0.7998673,0.08369989,-0.87596184,0.30290824,-0.57086813,0.15814422,-0.27888137,0.78415966,0.824601,0.704735,0.14478363,0.68941367,-0.4427884,0.123886675,-0.12689146,-0.290138,0.27293184,-0.16019934,0.3502448,-0.49940732,-0.23427248,-0.03219966,-0.33398396,0.011404777,0.8271202,-0.6031876,-0.1453198,0.08492572,0.5380011,-0.41177952,0.07174936,0.62204236,1.1539009,0.99954486,0.282987,1.3088535,0.5274621,-0.38626748,0.21945424,-0.06323603,-1.0015427,0.21431008,0.36077407,-0.16392007,0.3312088,0.11065929,-0.04893714,0.61825037,-0.6189132,-0.043895215,0.01868273,0.24030055,-0.2741377,-0.17483388,-0.560885,-0.26027903,-0.11035884,0.17037362,-0.07657986,0.43169966,0.0037468076,0.51222533,0.31776702,1.3876259,-0.1841202,-0.05079701,0.079898186,0.2935078,0.05582739,-0.2951928,-0.07804596,0.09447327,0.69521695,-0.02033064,-0.8574263,0.16932918,0.00203901,-0.3883527,-0.29032686,-0.3094114,0.10118062,-0.34639728,-0.3567191,-0.25676093,-0.041961767,-0.61714673,0.3619438,-2.128794,-0.19869636,-0.15132815,0.44790432,-0.18629013,-0.23440348,-0.05605184,-0.49627483,0.5116038,0.4273992,0.45496777,-0.6624757,0.5182199,0.66710526,-0.53675723,0.122397445,-0.94645464,-0.4042557,-0.070906155,0.23169738,-0.049787845,-0.32888523,0.28130764,0.24013701,0.40061834,0.017109936,0.16829218,0.37341717,0.44909078,0.00951627,0.6685612,-0.12547944,0.6179482,-0.38842687,-0.09092291,0.17962141,-0.06574119,-0.10652029,-0.34166613,0.20129348,0.49866918,-0.7092054,-0.8351007,-0.34600604,-0.3145582,1.0622833,-0.47831288,-0.47508323,0.39014375,-0.24485861,-0.20231777,-0.13321614,0.60067666,-0.09811917,-0.17580439,-0.8986234,0.056771126,-0.03754561,0.32852936,0.06167033,-0.0076464335,-0.6558462,0.4799511,-0.16215748,0.7147065,0.7366182,0.21703881,-0.08083312,-0.67962694,0.07645312,0.92369485,0.38673097,0.13738824,-0.3385763,-0.025772762,-0.24744608,0.10492038,0.13785104,0.27944586,1.0523502,-0.21610104,0.089255616,0.23149137,-0.4113616,0.0508374,-0.13430232,-0.61743003,-0.106432274,0.14694592,0.5827055,0.4860965,0.0062835068,0.5220147,-0.0987001,0.17845382,-0.15625082,-0.5702221,0.5487764,1.0032296,-0.26985043,-0.117077015,0.8320194,0.543733,-0.28488973,0.65413916,-0.62325287,-0.2124125,0.5558704,-0.0065068128,-0.42876807,0.3588698,-0.40434244,0.22849241,-1.3099297,0.20532876,-0.38672245,-0.7310388,-0.7525131,0.18519054,-2.8418047,0.3642501,-0.3114615,-0.19522533,-0.031542588,-0.20851618,0.47233045,-0.69540185,-0.72443825,0.34085453,0.22833766,0.5873079,0.08730702,-0.2118867,-0.38869902,-0.23366413,-0.18225275,0.21645862,0.25463966,0.15554295,0.0028955883,-0.64871264,0.086164266,-0.05972315,-0.29133657,-0.0502247,-0.64941144,-0.34715068,-0.29283407,-0.6369045,-0.46622828,0.86725885,-0.35494015,0.009524584,-0.2691271,-0.021875888,-0.017042678,0.46868974,-0.20771174,0.10647816,0.013478225,0.01367023,-0.03984603,-0.20012955,-0.19599663,0.20242411,0.10126689,0.25185448,-0.2612575,0.061838564,0.89021343,0.7765679,0.15114976,1.070968,0.8406427,-0.103613116,0.28244394,-0.26917624,0.010018148,-0.694304,-0.3288167,-0.33883238,-0.53235537,-0.58445466,-0.01488756,-0.25634897,-0.8230696,0.8098642,0.03921838,0.28632805,0.3133937,0.32276392,0.40056542,0.16145462,0.053255584,-0.35756725,-0.29166645,-0.5474319,-0.18081237,-0.8835363,-0.56081146,0.24113876,1.555497,-0.2185799,0.0066283885,0.09302483,-0.42321613,0.2723563,0.32691643,0.10188799,0.3651553,0.370726,0.16725592,-0.70466703,0.39560908,0.015215798,-0.070154935,-1.0385374,0.19038516,0.8426908,-0.8866789,0.16989523,0.29310653,-0.050010398,-0.3369095,-0.64272326,-0.23889925,0.16597113,-0.28541774,0.29786846,0.23412134,-0.7056185,0.5193732,0.24182779,0.0104880845,-0.9165882,0.6727652,-0.05182838,-0.33582625,0.30631292,0.30253875,-0.020799326,0.13774556,-0.5313528,0.2842991,-0.40691134,0.30959472,0.3731395,-0.16231944,0.26324904,-0.14515379,0.21991014,-0.9650891,0.03616083,-0.70965236,-0.06750761,0.4852656,0.10937424,0.30708927,0.26645595,0.21071194,0.33313015,-0.41603917,0.066538475,-0.22733675,-0.665009,0.602034,0.5524794,-0.033263005,-0.3019326,0.7637096,-0.12929754,-0.090301596,-0.38771343,0.048990604,0.42074582,0.18945466,0.34344435,-0.13129878,-0.46218264,0.18237086,0.9700189,0.3536621,0.32149398,0.19700502,0.1560337,0.4586903,0.27815565,0.041650962,-0.024918836,-0.36234948,0.03611332,-0.067560226,0.19402274,0.5237181,0.16006474,0.56582457,-0.26818094,-0.18706504,0.0035153737,0.060090028,-0.024577769,-1.1909022,0.6970129,0.15771121,0.37050602,0.9325376,0.12259648,-0.04710631,0.44691676,-0.50207037,0.08222672,0.41008055,0.2667266,-0.23143263,0.70598793,-0.8149095,0.35372815,-0.11212135,0.070964,0.06067762,0.15804686,0.5512939,1.1229583,-0.18415004,0.09282147,-0.094334796,-0.1819038,0.29427463,-0.39044,-0.29579723,-0.43226948,-0.5272464,0.69560486,0.07632855,0.5947829,-0.15238793,-0.12626354,0.2056181,-0.16972272,0.54383755,0.053904857,-0.041379824,-0.105011374,-0.56238693,-0.16132864,0.5877771,-0.14556505,0.025523055,0.12435425,-0.35723406,0.2504057,0.019469483,-0.19914562,0.05513337,-0.6947157,-0.1166034,-0.5926471,-0.4020879,0.70832545,-0.34522903,0.33478045,0.1650024,0.08790261,-0.20162684,0.1611319,0.15929909,0.7248272,0.09277826,-0.2696739,0.038020875,-0.23114003,0.2545661,-0.352283,-0.05562972,-0.074165724,0.05230039,-0.6995508,0.38384283,-0.1556564,-0.34579825,0.35579747,-0.23353286,-0.04515535,0.3685526,-0.3284095,-0.0042397217,0.22337785,-0.16616707,-0.028317945,-0.66379714,-0.23571625,0.14561242,-0.43326628,0.34409198,-0.1437898,0.019982368,0.03856791,0.60838914,0.21658182,0.16105895,0.5018064,0.30863363,-0.30971825,-0.07720936,0.041683093,0.48902476,-0.20213844,-0.28601244,-0.5367193,-0.4919307,-0.3304579,-0.17292944,-0.07443908,0.45912582,-0.17142032,-0.50776917,1.0458783,0.101685636,1.0316621,-0.17281355,-0.59807223,0.0062827873,0.44028103,0.01430408,-0.095151186,-0.21999793,0.85872537,0.69570905,0.071867846,-0.32718122,-0.5251494,-0.2452765,0.40220147,-0.24192776,-0.36907613,-0.043452162,-0.79718167,-0.31382638,0.3116239,0.22350918,0.04419547,-0.13319188,0.4593515,0.28920302,0.10669717,0.36805785,-0.6350504,0.15945436,0.23630069,0.084186554,0.16738331,0.19896737,-0.28781036,0.12223124,-0.66524047,0.15286131,-0.3522286,-0.044100057,0.2064328,-0.2508198,0.24020915,0.09539965,0.29624537,-0.112024374,-0.20188767,-0.06861765,0.80371934,0.0054140333,0.2987579,1.012911,-0.28842655,0.038410608,0.05895044,0.6767754,1.5282971,-0.21585733,0.005125815,0.22468868,-0.5478556,-0.5244749,0.32138908,-0.23132715,0.21014981,-0.015983336,-0.3936784,-0.6062487,0.045026835,0.15948011,-0.40967092,0.08727629,-0.3263334,-0.52248645,0.25284764,-0.52942455,-0.19644456,-0.44419166,0.15257551,0.64721245,-0.47697422,-0.15310708,0.01397523,0.35286844,-0.24075331,-0.53058565,-5.888939e-05,-0.3685311,0.2423247,0.29926676,-0.5164912,0.14684677,0.10507567,-0.59190977,-0.086331345,0.17667541,-0.4209491,-0.046729077,-0.50337845,-0.06949783,1.0801822,-0.060223937,-0.071334645,-0.5319769,-0.6781177,-0.68862087,-0.4584732,0.62039566,0.1264337,0.025612561,-0.6980645,0.1898758,-0.10340361,0.09928811,-0.037808593,-0.36500585,0.48374176,0.20886189,0.4435404,-0.12981261,-0.96209335,0.2578571,0.048319396,-0.024793733,-0.40587595,0.7253868,-0.06563046,1.0060216,0.21695946,0.11960424,0.13491227,-0.73167634,0.29810998,-0.20492953,-0.37759352,-0.7966803,-0.12080395 -168,0.4506901,-0.18685599,-0.5604207,-0.04072779,-0.2873871,0.08050411,-0.15121374,0.2895683,0.26725337,-0.298647,-0.28244624,-0.05244891,-0.16176,0.15843931,-0.2177053,-0.8569763,-0.06911363,0.2786169,-0.79661787,0.6774946,-0.28032112,0.37690818,-0.08777364,0.43194935,0.3507025,0.21355076,0.001934584,0.17686187,-0.10862188,-0.060578655,0.23834404,0.21042562,-0.3900215,0.30404207,0.024192035,-0.4214136,-0.13847241,-0.16217996,-0.54029936,-0.71971947,0.4014746,-0.5606444,0.6853284,-0.17508915,-0.2636565,0.11348777,0.07523993,0.2700611,-0.09112729,0.0798485,0.12198598,-0.08940484,-0.13268378,-0.20443055,-0.12185461,-0.32766995,-0.6285646,0.08618562,-0.21192113,0.10864104,-0.29342568,0.33014277,-0.26936227,-0.17843652,0.033262692,0.6838092,-0.4434037,0.24085078,0.09555736,-0.09736455,0.15554056,-0.7633921,-0.18589588,-0.05801362,0.14148246,-0.08925138,-0.24219428,0.35325202,0.23478957,0.3633885,-0.0026423573,-0.070223495,-0.38507944,0.027930005,0.31092775,0.51111394,-0.1918398,-0.27855533,-0.21848409,-0.081882715,0.18332878,-0.03944478,0.18000199,-0.46738866,-0.038921986,-0.16972104,-0.12590389,0.43315664,0.5875241,-0.22357877,-0.04643644,0.21109752,0.60645527,0.24850534,-0.31220895,0.19082107,-0.08414053,-0.47311223,-0.18617731,-0.020083357,-0.036733326,0.39810255,-0.26270455,0.17315458,0.41140467,-0.019855734,-0.09560133,0.15627146,0.14645134,0.1943868,-0.1419762,-0.27079707,0.28489748,-0.32062557,0.023594951,-0.21583627,0.5158904,-0.059835315,-0.73785627,0.3897819,-0.5035517,0.18882097,-0.03326698,0.42932364,0.89654756,0.5494087,0.2286916,0.7250782,-0.26758403,0.0932425,0.0070761126,-0.21001078,-0.0031593083,-0.18112348,-0.25899637,-0.5782595,0.10436353,-0.17630193,-0.11888883,0.18821925,0.68745875,-0.55058277,-0.09850205,0.13677579,0.7601775,-0.310329,-0.074626185,0.7556603,1.1051093,1.0355098,-0.018952202,1.2855303,0.32553163,-0.2164308,-0.116092876,-0.4470415,-0.76917493,0.2806236,0.20110124,0.00055090187,0.29139405,0.13544534,0.049175788,0.6438084,-0.5653442,0.09208746,-0.14379008,0.30190268,0.24238668,-0.18021907,-0.3286608,-0.02281042,0.1089977,-0.006359168,0.08473409,0.30473545,-0.18450995,0.52050364,0.05601406,1.4450259,0.045845076,-0.015575296,0.06527952,0.4226646,0.27754575,-0.21922256,0.037868787,0.14730212,0.3211914,-0.1058106,-0.38726914,0.05819267,-0.19803222,-0.46000487,-0.34151787,-0.15364598,-0.027979637,0.015986083,-0.3386606,-0.32140574,0.026031077,-0.34768203,0.42321813,-2.4974425,-0.12847215,-0.003623871,0.31916836,-0.17467387,-0.38162187,-0.1380207,-0.43972164,0.5028688,0.39787292,0.27831644,-0.5171347,0.42040318,0.54741615,-0.6069824,0.07856898,-0.48774394,-0.26062644,0.08481685,0.42706013,0.098836385,-0.0041149952,-0.004215779,0.27979797,0.3800414,-0.28748912,0.07848878,0.601245,0.32058278,-0.121856526,0.35534057,0.15422456,0.4860276,-0.23819119,-0.19211149,0.47830716,-0.4409538,-0.105399214,-0.09605323,0.16251473,0.4483897,-0.58759344,-0.81548405,-0.73099047,-0.010224919,1.0951059,-0.13024867,-0.44463772,0.2236522,-0.55422646,-0.4562655,0.12568586,0.390713,-0.28322694,-0.0908932,-0.93637884,-0.06346515,0.029551132,0.17700125,-0.058492444,-0.18201709,-0.52274925,0.7359908,-0.11982953,0.44627598,0.3476567,0.26720947,-0.41162536,-0.60595006,0.15665223,0.83628833,0.41904035,0.2230994,-0.34849685,0.0010137201,-0.2726112,-0.019432664,0.026403582,0.74037284,0.43505272,-0.07267036,0.17027004,0.20833167,-0.18333127,0.005258723,-0.32832068,-0.22452666,-0.16404864,0.15426487,0.59721947,0.80410826,-0.06844747,0.32882348,-0.05344161,0.27077356,-0.12859382,-0.5835431,0.4741358,1.2430363,-0.12483377,-0.41212857,0.57421315,0.32146734,-0.35730827,0.3666331,-0.5175871,-0.32930136,0.32918674,-0.20213555,-0.47285882,0.22981231,-0.47935548,0.27436596,-0.7373413,0.41184703,-0.27218515,-0.6829903,-0.7923965,-0.21927248,-2.699856,0.15785035,-0.16255121,-0.20543434,0.00027934313,-0.0985034,0.2366407,-0.4150655,-0.6181412,0.14528349,0.122177884,0.622366,-0.10339952,-0.006995074,-0.2228155,-0.24406092,-0.2725633,0.13439964,0.2674244,0.4036349,0.056387685,-0.5925653,-0.039211024,-0.21612908,-0.37842363,-0.018915253,-0.564956,-0.47112072,-0.12921134,-0.40524408,-0.3052059,0.5592724,-0.37072498,0.11208847,-0.38785505,-0.05816532,-0.041709915,0.29008913,-0.0015163899,0.3086788,0.09451454,-0.12964661,-0.016978212,-0.20032355,0.28149053,0.026752543,0.10862185,0.4007007,-0.24711232,0.23851338,0.4397593,0.79068834,-0.06549905,0.8568115,0.67456186,0.02826536,0.3594825,-0.2372317,-0.23631604,-0.45018852,-0.19460502,-0.03515742,-0.50945324,-0.38371196,-0.06016945,-0.41344678,-0.84317297,0.3907079,0.055344917,0.015063898,0.08259659,0.0263654,0.382095,-0.075689666,-0.07954613,0.0020101587,-0.16725999,-0.41272953,-0.38415283,-0.5758603,-0.63215446,-0.036934875,1.2350681,-0.069265254,0.049225695,0.0071793157,-0.37663117,0.06824842,0.45312753,0.070847146,0.18479179,0.2492188,-0.08154602,-0.6384016,0.30961242,0.0135345375,-0.18984821,-0.777889,0.33887655,0.6042546,-0.46626613,0.69694895,0.11869344,0.08285419,-0.17704137,-0.46636862,-0.08421458,-0.08212772,-0.36083743,0.65224373,0.27550218,-0.77470624,0.36081064,0.31997764,-0.14949757,-0.73283464,0.4649414,-0.070903346,-0.47909498,-0.03509056,0.36252648,-0.032214113,-0.06349039,-0.29502842,0.4163305,-0.31107077,0.3516021,-0.042323455,-0.017736562,0.26107332,-0.33133328,-0.21194172,-0.8050509,0.025396133,-0.7494355,-0.2248283,0.05966769,0.23025656,0.050499775,0.17675386,0.19481756,0.5336834,-0.14149386,0.08463161,-0.2653534,-0.35877183,0.13893466,0.42892864,0.3616918,-0.23500799,0.49012193,0.0066014924,-0.028554369,-0.13884738,0.21776411,0.4784952,-0.012263664,0.5181205,0.1537022,0.023031782,0.17031096,0.83130443,0.12611634,0.49257553,0.082682975,-0.42760515,0.12455165,-0.00700444,0.27135113,-0.24756306,-0.38327515,0.15350066,-0.07461263,0.28623885,0.48412952,0.038361542,0.34914058,-0.25886196,-0.54622036,0.044059515,0.22029267,0.13388465,-1.261864,0.22983462,0.2801719,0.9400834,0.64684,0.027047275,0.08961179,0.6291349,-0.20187952,0.1804912,0.28640863,-0.11329515,-0.36728752,0.18555275,-0.66877043,0.28636685,-0.06746138,-0.014270093,0.031055331,0.10027324,0.31833872,0.631292,-0.09854301,0.17540452,0.08904681,-0.3268339,-0.013286384,-0.30754316,0.2114182,-0.6242756,-0.29317617,0.7395276,0.6037123,0.31989262,-0.31604674,0.027946698,0.057233334,-0.16681808,0.21029395,0.08259661,0.037242077,-0.20331192,-0.62643343,-0.23005508,0.37851036,-0.09156459,-0.061961852,0.16362152,-0.16926424,0.11398499,-0.026688028,0.049055915,0.012015085,-0.6804343,0.030346863,-0.1864925,-0.2574615,0.56442845,-0.11210596,0.18563844,0.26699695,0.1679041,-0.5138957,0.43011147,-0.11713366,0.6114496,0.27219492,-0.08849514,-0.14207025,0.107627995,0.18377215,-0.23260196,-0.09380486,-0.25164768,0.12584561,-0.55757844,0.5309831,0.03310759,-0.33384547,0.21659908,-0.043361958,0.039273158,0.43714058,-0.17780396,-0.2628645,0.16558236,-0.103464685,-0.2474551,-0.07577847,-0.15524833,0.29874882,0.05131442,-0.08131029,0.022295343,-0.026784489,0.10558153,0.4613764,0.00034152268,0.37849107,0.52670556,-0.03772788,-0.6036997,-0.11438713,0.21525559,0.57973444,-0.13698754,-0.0061644954,-0.14344007,-0.5882972,-0.34572938,0.15779649,-0.093944296,0.24704543,0.09207668,-0.3661038,0.6556966,0.25008374,1.0688788,-0.046750896,-0.33697116,0.16613425,0.45791528,-0.00014923414,0.08698707,-0.4214288,0.78000844,0.6958944,-0.31163895,-0.185145,-0.2846941,0.07655837,0.093157984,-0.20489554,-0.09976683,-0.06588217,-0.672434,-0.25805634,0.14157702,0.19656359,-0.03871723,-0.08772082,0.07355436,0.19073036,-0.07378825,0.049348693,-0.38847452,0.15873255,0.267434,0.1951676,-0.06103829,0.17668322,-0.41632032,0.18028536,-0.4879065,0.0021709919,-0.095496856,0.078714505,-0.24255161,-0.4185961,0.293973,0.12201972,0.16584127,-0.38336653,-0.17423187,-0.3610702,0.4326425,0.08840346,0.18597198,0.51072115,-0.19039008,0.11441318,0.13521475,0.43326876,1.0859106,-0.23416182,-0.10237346,0.26725942,-0.4004678,-0.58639246,0.12634544,-0.34635586,0.1387234,-0.13652392,-0.2741197,-0.6542526,0.24527302,0.15756449,0.030239511,0.09337781,-0.6013168,-0.28061792,0.17244457,-0.3745204,-0.17293213,-0.22778429,-0.11988063,0.37898207,-0.30906853,-0.3158521,0.054941174,0.27652928,-0.34247595,-0.46846455,0.018247524,-0.47720322,0.341222,0.04674333,-0.39999703,-0.3096082,0.08834764,-0.4116589,-0.099053755,0.21115139,-0.38594002,0.05787366,-0.23337944,-0.14333053,0.7929717,-0.29346463,0.38455597,-0.4659541,-0.50202316,-1.146037,-0.26939213,0.41160545,0.33386937,-0.17528106,-0.9837298,-0.18107858,-0.28347814,-0.24125478,0.25101817,-0.32550174,0.5306778,0.119110845,0.35380393,-0.14242278,-0.8283419,0.05193255,0.23126838,-0.3977567,-0.5664772,0.4951262,0.07950557,0.87853485,0.03121459,0.17139983,0.12788756,-0.5959846,0.27665854,-0.1647136,-0.29797643,-0.3359446,0.07112409 -169,0.47664076,-0.34851676,-0.22067484,-0.1956535,-0.02442694,-0.07220877,-0.21099809,0.50761235,0.002242556,-0.6929928,-0.3422265,-0.19133854,-0.07442594,0.3168712,-0.18044257,-0.67682517,0.016583048,0.053763714,-0.40238678,0.76206005,-0.58374655,0.25728947,0.09363433,0.4297592,0.022776214,0.14020847,0.3146787,-0.114466414,0.025752237,-0.3459177,0.06751347,-0.049179725,-0.6442524,0.42681998,-0.20547542,-0.24756214,0.01082447,-0.28089744,-0.25212654,-0.957363,0.14287005,-0.7931064,0.36412445,-0.003927748,-0.4463129,0.36619237,-0.10241662,0.24809504,-0.21613945,0.094689146,0.18979383,-0.1253487,-0.100259185,-0.12095552,0.1675024,-0.4917382,-0.5505189,-0.011115434,-0.4177744,-0.23226136,-0.31783614,0.16320327,-0.39841762,-0.099498205,-0.20612992,0.49390966,-0.56121004,-0.37091967,0.10128772,0.039672427,0.5928485,-0.63687545,-0.20752393,-0.20788643,0.2523504,-0.08291641,-0.07705346,0.27836066,0.09825237,0.39245906,0.14230601,-0.104561955,-0.046102967,-0.038913526,0.27845815,0.3743523,-0.063544504,-0.5926863,-0.12397264,-0.21067175,0.18806471,0.21727857,0.10659066,-0.11043466,-0.021426719,0.1371284,-0.21117339,0.24999288,0.42524716,-0.12111088,-0.327203,0.2141756,0.5968529,0.18701185,-0.10537264,-0.007085259,-0.015697401,-0.5582023,-0.20193808,0.24734521,-0.2772495,0.57701993,-0.2940126,0.19392285,0.5835463,-0.25809044,0.11076928,0.011876661,-0.007597474,-0.067957744,-0.16640645,-0.4172597,0.50364345,-0.5678436,0.09838152,-0.6088918,0.71535563,0.18321928,-0.6348127,0.3664616,-0.42185423,0.06783409,-0.037580714,0.73017025,0.7177362,0.33141625,0.24000856,0.5711742,-0.5018835,-0.10462611,-0.12753838,-0.26325142,0.046204906,-0.2293217,-0.008480008,-0.33658698,-0.053447742,0.081383415,0.04325026,-0.24442254,0.3262968,-0.5936928,0.0014058695,0.18410693,0.61205584,-0.31021038,0.2448678,0.8933616,1.1135954,1.1376472,0.22391804,1.234076,0.3158954,-0.19795582,0.17478803,-0.04959487,-0.6158059,0.28648573,0.4629044,0.45814073,0.1415341,0.0043261508,-0.054516535,0.50043976,-0.6008719,0.09061828,-0.3178881,0.3480863,-0.11298255,-0.14094418,-0.6683209,-0.21370807,-0.086590365,0.102927975,-0.07003654,0.22037004,-0.08964432,0.19899155,0.16212656,1.0820578,-0.21872808,0.08552742,0.030770402,0.49877775,0.12137545,-0.23497622,0.16622676,0.17804813,0.5444054,0.13924763,-0.6829059,0.12894037,-0.22330274,-0.50521284,-0.12162668,-0.19900492,0.26860735,-0.092386365,-0.40992865,-0.2027343,-0.0027346886,-0.4666669,0.3656198,-2.4488804,-0.33659795,-0.23956959,0.16051593,-0.24404451,-0.26965427,-0.0136329895,-0.5083425,0.60336524,0.3480732,0.47241652,-0.57510144,0.31600773,0.5047234,-0.5040869,0.08272861,-0.6790698,-0.32492077,-0.22054107,0.50537646,0.29762846,-0.023083966,-0.11251826,0.22176702,0.59674555,-0.03025186,0.15900093,0.10628157,0.21173829,-0.038764033,0.45279276,0.16828275,0.42821547,-0.26272193,-0.095786616,0.347772,-0.33226007,0.20714822,-0.24778311,0.2670488,0.35099223,-0.51752025,-0.7666547,-0.78259337,-0.8440463,1.2546731,-0.016141195,-0.591431,0.301068,-0.075421095,-0.2382594,-0.13799883,0.32375148,-0.28879339,0.11702558,-0.7573248,-0.061883967,-0.109353215,0.25427294,0.043298576,0.052394655,-0.6807529,0.8463563,-0.028975172,0.27397534,0.38716623,0.2570609,-0.35629523,-0.4275083,-0.07152157,1.0089469,0.5813102,0.08747398,-0.2533922,-0.19646618,-0.30943775,0.07414949,-0.0007697275,0.5224999,0.955389,-0.057070494,0.06290846,0.18830818,-0.033725582,0.055571374,-0.017105095,-0.33807823,-0.13848712,0.035296127,0.7123225,0.5004373,-0.08820197,0.24846832,-0.15108292,0.33095652,-0.19552884,-0.30296966,0.5458982,0.99402803,-0.056986377,-0.022526551,0.53787225,0.6251049,-0.081700094,0.5235111,-0.7105504,-0.345241,0.40108493,-0.09470503,-0.39885712,0.19283718,-0.37322012,0.23792921,-0.872564,0.4367221,-0.69417924,-0.5448717,-0.84209925,-0.07184452,-3.1662738,0.27174443,-0.123401865,-0.23193401,-0.16426262,-0.31050208,0.4214702,-0.7422372,-0.57967365,0.27405277,0.039052382,0.6798115,0.024098288,-0.049502216,-0.3633713,-0.33495456,-0.35240558,0.122048415,0.02385721,0.09077522,0.032091398,-0.388161,-0.027002582,-0.24191563,-0.3561083,0.037835333,-0.5448761,-0.67894936,-0.26194736,-0.42240953,-0.3767126,0.63781077,-0.1364492,0.09376453,-0.08863127,-0.055352755,-0.100384355,0.34399146,0.066172674,0.26181,0.011061054,-0.13060194,-0.14534643,-0.24893202,0.12565948,0.2785071,0.1526714,0.40542296,-0.52173704,0.18555993,0.483662,0.5877306,-0.23138016,0.910575,0.44163984,-0.22269493,0.36426273,-0.18908808,-0.40575176,-0.68239844,-0.29748964,-0.024456529,-0.3379772,-0.59146184,-0.05884185,-0.36297458,-0.68964857,0.6300368,-0.03695385,0.21819848,-0.07260917,0.05887811,0.21657664,-0.06263506,-0.08559508,-0.11575126,0.009920446,-0.39586395,-0.31066784,-0.8610721,-0.46815225,-0.18000475,0.92174184,-0.05577402,0.035150457,0.092687,-0.25135082,0.2151083,-0.08645275,-0.04662347,-0.08402531,0.28569022,0.1907726,-0.7307777,0.69221914,0.2337291,-0.23675302,-0.44462246,0.25778395,0.8436166,-0.57231563,0.3714945,0.40591037,-0.11082309,-0.17085114,-0.5795866,-0.12826182,-0.023789007,-0.3397857,0.48844507,0.18552534,-0.6568771,0.61340374,0.2796473,-0.14267889,-0.7674909,0.5132106,-0.08762957,-0.14708385,-0.042811632,0.3636665,-0.11888332,0.32804075,-0.2657836,0.41749606,-0.5158616,0.2378931,0.29779947,-0.003419424,0.362382,-0.12521195,-0.043128528,-0.790316,-0.096413665,-0.56317586,-0.28300664,0.23536602,0.007329143,-0.16567326,0.35971826,0.18752742,0.41479975,-0.12573296,0.16082597,-0.047263246,-0.33649474,0.27687123,0.5783783,0.37513316,-0.277333,0.59584224,0.121654525,-0.05600706,-0.49868932,0.032796107,0.3534835,0.08531288,0.42671555,-0.22861105,-0.07792713,0.42240193,0.88147485,0.21929139,0.57624763,0.068886004,-0.17996232,0.42387292,0.1283167,0.44674474,0.07161664,-0.35847208,0.08558856,0.07845705,0.030937748,0.35249296,0.017799735,0.27642673,0.0044797203,-0.2249844,-0.035287913,0.29226768,-0.06833711,-1.4165742,0.503019,0.23938744,0.8138171,0.7818236,-0.072909795,0.13372687,0.6574173,-0.2859527,0.043437146,0.17609371,0.05126532,-0.5266784,0.6321819,-0.75928295,0.2465853,-0.061277136,-0.013318672,-0.05452742,-0.141979,0.50429565,0.67258334,-0.17960241,0.046146426,-0.23335439,-0.13440758,0.3447,-0.47542036,0.17689769,-0.2182784,-0.32267824,0.6953463,0.52829045,0.31368417,-0.14796449,0.006873266,0.0821503,-0.11765515,0.32910743,0.016386935,0.013070395,0.0051820003,-0.56645846,-0.22190253,0.46237656,-0.015678708,0.18594867,0.1112078,-0.33634293,0.08822755,0.030454049,-0.13343175,-0.040924434,-0.7893528,0.12914872,-0.38033056,-0.027218966,0.5781439,-0.31298286,0.26244608,0.15850295,0.039404087,-0.15022352,-0.23086992,0.18892911,0.49228984,0.12039817,-0.29034176,-0.29089582,0.11208406,0.15435164,-0.33638948,-0.023687784,-0.14527224,-0.03622572,-0.685638,0.4517393,-0.03773331,-0.23706405,0.2532433,-0.13237245,-0.13898781,0.4975294,-0.20353907,-0.1943998,-0.014772203,-0.17084026,-0.07176953,-0.13567029,-0.017039133,0.29437235,0.08157653,0.16257617,-0.09537716,0.07123684,-0.072937496,0.6110191,0.28353006,0.27221876,0.37330818,-0.16578014,-0.5155412,0.052498393,0.024647256,0.38983056,0.102446094,-0.024045793,-0.11473537,-0.5364539,-0.40515238,0.1692765,-0.11553991,0.34892273,-0.029694628,-0.230831,0.7561535,0.2210912,1.1829859,0.07928297,-0.40419468,0.04425969,0.56557375,-0.10634605,-0.12843014,-0.3618596,0.84825146,0.42159718,-0.2771528,-0.08715845,-0.33691865,-0.061562512,0.30740488,-0.16895366,-0.062195007,-0.06684815,-0.74320626,-0.36005503,0.26085976,0.36700037,-0.06308623,-0.11108413,-0.099734314,0.28151688,0.14921294,0.43335602,-0.5832957,-0.053033408,0.4081511,0.100327104,-0.024109712,0.04171861,-0.22112063,0.35456768,-0.75334257,0.158197,-0.24878184,0.09569471,-0.1863371,-0.3086797,0.18249765,0.0641255,0.29416,-0.32506114,-0.4928128,-0.086732,0.4327114,0.1579189,0.16769013,0.5751067,-0.26662806,0.15780681,0.14983234,0.4506814,1.1203387,-0.2440636,-0.089431174,0.2462377,-0.5520904,-0.5834647,0.16971575,-0.30030853,0.3099596,-0.19944565,-0.46715686,-0.64112,0.23809195,0.30306152,-0.11844381,0.14270362,-0.62425065,-0.28399938,0.39885357,-0.3142448,-0.27915102,-0.3078105,0.096557274,0.58100426,-0.49789274,-0.40535495,-0.0021809111,0.16040945,-0.5023355,-0.60930544,-0.032468013,-0.36338872,0.4831393,-0.003010713,-0.37733138,0.13133852,0.14269866,-0.45481104,0.013982648,0.14926805,-0.35470915,0.038091406,-0.2879297,0.055169187,0.84184164,-0.061690368,0.019474354,-0.52153677,-0.4980462,-0.8231499,-0.40100625,0.7532331,0.2488056,-0.018629197,-0.5688072,0.12427889,-0.080624074,0.19679517,0.013533986,-0.25299257,0.2828561,0.20143414,0.50671065,-0.017149618,-0.6738315,0.30146438,0.21113577,0.04255016,-0.43862948,0.5069361,-0.02910871,0.6502634,0.10093616,0.13376054,-0.039280884,-0.5416803,0.25583535,-0.11524666,-0.162476,-0.62456924,0.10586458 -170,0.4525439,-0.18503271,-0.3472379,-0.08898704,-0.23806654,0.32467943,-0.1524414,0.67112666,0.12006932,-0.4173092,-0.26128113,-0.15260975,0.042759545,0.2970726,-0.18351673,-0.67510045,0.18117745,0.17496796,-0.54928195,0.46832898,-0.4579204,0.41291282,0.09978994,0.28464645,0.1341854,0.1869346,0.10921065,-0.0819697,-0.09084538,-0.17339844,-0.18376662,0.18901499,-0.5238197,0.22539784,-0.2812936,-0.26971915,0.120175295,-0.40510538,-0.1810936,-0.74532753,0.21338636,-0.67834693,0.5686485,-0.124370255,-0.19689558,0.17156808,-0.06575345,0.27376768,-0.15784372,0.07277761,-0.00839374,-0.15845019,-0.20716947,-0.18887405,-0.30417043,-0.53512204,-0.55640954,0.13491268,-0.4111374,-0.18965791,-0.13523944,0.08937171,-0.23557281,0.15911508,-0.1395395,0.2569726,-0.30167547,0.11651297,0.20733906,-0.102184966,-0.23065597,-0.74577385,-0.10607322,-0.049811974,0.26584396,-0.1461196,-0.2228054,0.13877612,0.36310846,0.4612587,0.07397759,-0.13236716,-0.0081062,-0.17306802,0.095706016,0.61094683,-0.030629775,-0.44031653,-0.18712208,-0.1075372,0.33592552,0.09892881,0.1469204,-0.24163179,-0.13982283,-0.11742379,-0.34477994,0.2666156,0.40991324,-0.4397446,-0.21438351,0.2734311,0.63830733,0.29021242,-0.03168384,0.0031448046,-0.13129447,-0.48009524,-0.17956069,0.0418643,-0.15202741,0.53495765,-0.19709176,0.24317147,0.5907186,-0.09011584,0.17675826,0.14376834,0.07750416,-0.057411637,-0.3000126,-0.17115821,0.24712703,-0.3912782,-0.025060771,-0.4724142,0.9019745,0.21316189,-0.48799363,0.35707876,-0.5603602,0.04896548,0.015507896,0.50274533,0.65089154,0.46483344,0.06117536,0.50863844,-0.36505777,0.04292108,-0.24080965,-0.19404347,0.00024227897,-0.035357837,0.13589843,-0.32766542,0.14807667,0.006854272,-0.04848568,0.14205717,0.401634,-0.55235267,-0.1910491,-0.020472368,0.6514463,-0.33745804,-0.19034459,0.8834745,0.7941045,0.59732246,0.022315009,1.4069767,0.35947686,-0.08462346,0.005822088,-0.11350438,-0.51757896,0.26431906,0.42756793,0.022713447,0.22622482,0.14655222,-0.22327873,0.51763356,-0.21201736,-0.10180179,-0.12750551,0.107972614,0.067582145,-0.0894554,-0.37560785,-0.4230939,0.05913692,-0.0010059715,0.36278751,0.31898782,-0.1735219,0.44171238,0.16351582,1.4495457,0.013160872,0.035938084,0.14866963,0.29707846,0.27217168,-0.103753544,0.014266928,0.32140905,0.4442538,-0.25395855,-0.6021399,0.09792228,-0.17613906,-0.49703866,-0.11284904,-0.20428766,-0.31278357,0.0014601827,-0.5201879,-0.16434774,0.0007189711,-0.0649047,0.52784705,-2.4599333,-0.29354334,-0.062108763,0.4353255,-0.24886084,-0.5680083,-0.1222645,-0.5111574,0.28528756,0.27298635,0.38851902,-0.55230534,0.41085273,0.3058426,-0.39802578,-0.30041817,-0.7667964,0.00017073154,0.07117708,0.18805012,-0.0077837706,-0.06738218,-0.12447158,-0.14831664,0.48938274,-0.1794279,0.041822795,0.27587345,0.35715994,-0.00027712385,0.19506977,0.10643341,0.72618896,-0.23613353,-0.20881669,0.35633776,-0.40930384,0.45464352,-0.11815001,0.20459713,0.43622005,-0.24067567,-0.69139045,-0.57609344,-0.43025622,1.0750155,-0.113414794,-0.29175052,0.07167921,-0.22856897,-0.28842923,-0.09675792,0.4871237,-0.28314874,-0.2691836,-0.71273464,0.0017261207,0.0017553369,0.33550936,-0.12675074,-0.007276883,-0.36850446,0.64435744,-0.21493435,0.42249668,0.21370506,0.25445303,-0.008424266,-0.24468024,0.03321358,0.79466313,0.5260352,0.23106645,-0.1602969,-0.097982734,-0.31758806,0.050068174,-0.08612495,0.58124864,0.61663973,0.17755626,-0.0581975,0.2547092,0.03989335,0.030286439,-0.1524305,-0.2986614,-0.073566005,0.061670747,0.56033605,0.47786275,-0.22998829,0.34071413,-0.18698753,0.41263524,-0.3244642,-0.4550351,0.4789568,0.6948748,-0.28800327,-0.019296153,0.5577128,0.38113564,-0.22307198,0.33827174,-0.74530286,-0.32018337,0.5387638,-0.13673906,-0.29691255,0.16934827,-0.14663629,0.1384127,-0.8224852,0.40484092,-0.25872996,-0.41010907,-0.53496754,-0.040070526,-2.618008,0.068026215,-0.06204713,-0.070130125,-0.15003738,-0.27883607,0.07998071,-0.512823,-0.3801632,0.29314363,0.09338166,0.45635766,-0.019897643,0.07708425,-0.20141338,-0.4501178,-0.16122116,0.09307518,0.06979516,0.2788862,-0.28089145,-0.25462693,0.0782294,-0.27561596,-0.30333626,0.16952032,-0.71832126,-0.45463786,-0.17804359,-0.42504057,-0.12340773,0.6573972,-0.5845034,0.08992529,-0.20179494,0.10979237,-0.34953466,0.33264214,0.13037892,0.09755047,0.085420646,-0.09055224,-0.011635484,-0.46751973,0.21219711,0.22880314,0.18285121,0.46322966,-0.0036645378,0.056523435,0.3689655,0.61386234,0.007840793,0.73662084,0.18483604,-0.034360293,0.405624,-0.10966839,-0.53377753,-0.34716925,-0.20140664,0.007682109,-0.31756112,-0.30117926,-0.13653943,-0.35908365,-0.74812675,0.27546486,0.10428996,-0.14905088,-0.02419851,0.40518734,0.6040396,-0.21652669,-0.02687343,0.009041618,0.032094136,-0.49558803,-0.51436573,-0.5847221,-0.46720472,0.085932605,0.97262055,-0.047942813,0.15796345,0.004653287,-0.08259026,-0.012020183,0.15628289,0.071169,-0.08097903,0.44823524,-0.3709027,-0.6069661,0.4570478,-0.2712016,-0.48726055,-0.58227,0.15310097,0.49741432,-0.71978927,0.4222133,0.4289027,0.058004163,0.0028246164,-0.34006944,-0.20983817,0.062339902,-0.2137373,0.2626778,0.17921986,-0.6502713,0.52772844,0.23817152,-0.08175181,-0.7207603,0.53063464,0.0018287738,-0.32013333,0.047929298,0.40373978,0.121440604,-0.02826624,-0.10259579,-0.055942442,-0.49510288,0.13951522,0.28471598,-0.033571906,0.33725885,-0.2521972,-0.1751338,-0.7548068,0.008334577,-0.5288091,-0.25689134,0.044509042,0.05653625,0.17125668,0.152851,0.13912927,0.39191854,-0.5523157,0.11419285,-0.14550234,-0.28161237,0.28777447,0.38676554,0.38874233,-0.22595257,0.53664523,0.04701083,0.11933729,0.054831985,0.1486609,0.5374812,0.16896589,0.3568602,-0.08537896,-0.10326908,0.10023331,1.0271884,0.2314652,0.34790403,0.1006653,-0.20336702,0.2646201,0.09033591,0.10735735,0.1096301,-0.41511333,-0.15589206,-0.022315582,-0.03494721,0.46005133,0.025992986,0.33752868,-0.06693339,-0.26696968,0.13770628,0.025466638,0.19000106,-1.033662,0.061348725,0.07433716,0.80808085,0.20432676,-0.008886472,-0.064918384,0.4548197,-0.19343932,0.18361476,0.22262605,-0.12244606,-0.42238364,0.56506544,-0.5089549,0.4470022,-0.06584363,-0.066216856,0.13328475,-0.22044982,0.33591065,0.85723764,-0.30193475,-0.04491489,0.048720676,-0.23861109,0.018874193,-0.45358744,0.07330037,-0.43712717,-0.21565422,0.6647464,0.40690467,0.46484593,-0.4151353,0.07200398,0.1483994,-0.17749706,0.0744925,-0.053361163,0.30299637,-0.04049944,-0.39816862,-0.35315707,0.5224839,-0.19181372,0.10878969,0.12823276,-0.34057158,0.27165574,-0.055910625,-0.027307475,-0.055760805,-0.6344349,0.053380765,-0.37118566,-0.6163384,0.27456906,0.033553276,0.12615032,0.23592854,0.09424333,-0.30800858,0.5499575,0.1272415,0.9146955,0.073523715,-0.14964506,-0.3119263,0.28058338,0.28598017,-0.2866602,-0.058508623,-0.1869369,0.19843756,-0.66759187,0.30251685,-0.12717049,-0.13418658,0.157505,-0.15395704,-0.08304038,0.4211679,-0.004532091,-0.10582411,0.15147223,-0.018535102,-0.14727035,-0.03264715,-0.10690786,0.22243194,0.22968587,0.02085084,-0.17744552,-0.12727664,-0.11748435,0.20263132,0.15816861,0.23893552,0.35462084,0.07612153,-0.3716699,-0.034997918,0.1624774,0.37869158,-0.2262492,-0.10607626,-0.24697885,-0.5597671,-0.36672878,0.39011934,-0.09080431,0.31495836,0.18977712,-0.3219943,0.76206714,0.09509117,0.9660771,-0.11864899,-0.3091095,0.18380693,0.56476784,-0.021178339,-0.12730499,-0.3098966,0.92012876,0.311165,0.0019645889,-0.009716607,-0.22213106,-0.100308985,0.3073781,-0.20587622,-0.025390824,-0.15017636,-0.52726924,-0.34212977,0.15304784,0.2788808,0.055631235,-0.023558687,0.11396589,0.3058402,0.018669112,0.27884886,-0.6159289,-0.20688955,0.28834996,0.11072138,-0.13524266,0.19232419,-0.3405364,0.4349529,-0.7907794,0.02280547,-0.4779773,0.031539567,-0.22082247,-0.13077272,0.12751733,0.10422931,0.34853998,-0.5824918,-0.39749843,-0.32714078,0.2645193,0.1803281,0.2651009,0.552033,-0.15088913,-0.123352766,0.0029479365,0.6751269,0.9354239,-0.18973373,0.11192412,0.4221384,-0.37058145,-0.45051008,0.23815598,-0.26866618,0.20289111,-0.052140277,-0.05315167,-0.42135778,0.32443377,0.32069167,0.00972751,-0.027072705,-0.5226381,-0.047422703,0.32434186,-0.36817056,-0.2763583,-0.34556285,0.26930764,0.7448715,-0.1880338,-0.22723755,0.058361277,0.34512624,-0.25744227,-0.58309716,-0.088789225,-0.40536082,0.42010477,0.1173307,-0.2174971,-0.16638559,-0.045648158,-0.34067762,0.062144008,0.22206952,-0.40978208,0.025589867,-0.16719837,-0.0154897375,0.7892291,0.04044574,0.14448747,-0.6450798,-0.5036155,-0.7148365,-0.47303823,0.4369173,0.30136982,-0.04165154,-0.5560462,-0.017407276,-0.050704908,-0.06348504,-0.024912722,-0.23219438,0.52437615,0.22880904,0.32633483,-0.08606981,-0.9581201,0.03012422,-0.041124523,-0.3834888,-0.32870165,0.27050686,0.013836277,0.7801342,0.12689832,-0.08279535,0.19378671,-0.51454014,0.11624393,-0.35683128,0.03898561,-0.7643561,0.1874184 -171,0.13979922,0.124566704,-0.6746863,-0.038436357,-0.1389832,-0.067483395,-0.3517182,0.39526775,0.43423566,-0.2961157,0.21992573,-0.37414798,-0.07557663,0.4164994,-0.1436088,-0.72618955,0.18043691,0.16922933,-0.5767311,0.6573964,-0.3807406,0.26891664,0.03802906,0.21965565,-0.21582942,0.45435178,0.19229867,-0.3415612,-0.19698901,-0.03618264,0.10451984,0.08418039,-0.40032768,0.21324782,0.02693119,-0.0004800775,0.3448001,-0.43133813,-0.5149732,-0.6285296,0.3636286,-0.6443157,0.5649811,0.13171794,-0.21154124,0.2213831,0.20991017,0.27326962,-0.25621942,-0.05899304,0.24273919,-0.1431823,-0.25316313,-0.32427037,-0.39921272,-0.46242082,-0.47506922,-0.025559943,-0.63516635,-0.17038625,-0.4833849,0.14019698,-0.23577198,-0.037360772,0.05326337,0.19096288,-0.44625556,-0.038550947,-0.059012305,-0.2380114,0.21601027,-0.7336332,-0.020094378,-0.066057295,0.28052083,0.10707374,-0.09160328,0.4714925,0.25154606,0.3838382,-0.055078615,-0.031819463,-0.24206248,-0.34428564,-0.013880599,0.5487883,-0.2285976,-0.42519587,0.009493535,0.06749071,0.19107665,0.21967974,0.08355181,-0.3602478,-0.01242139,-0.22943644,-0.36862773,0.34644738,0.61658907,-0.24615811,-0.017031197,0.45669413,0.3947024,0.2596805,-0.07510018,0.15417315,-0.21280414,-0.48359105,-0.09382839,0.109550126,-0.059448633,0.7065081,0.092996664,0.21661654,0.5907519,-0.07419989,-0.14657964,-0.17284547,-0.0044090343,0.15689051,-0.16262358,-0.08008495,0.15448727,-0.6062408,-0.13631843,-0.23772377,0.70960134,0.022220036,-0.9727374,0.4995576,-0.32285005,0.077555366,0.034920394,0.6667721,0.6940258,0.5824836,0.265597,0.7400623,-0.4303337,0.2670665,0.031544495,-0.45663443,0.31535912,-0.04419295,0.17649116,-0.58049375,0.017609261,0.42204162,-0.23603825,0.21010776,0.47132027,-0.4852603,0.054006096,0.21148805,0.9497881,-0.3147787,-0.10130748,0.55511034,1.2096652,0.74978375,0.15846902,1.0729257,0.25197613,-0.25753024,0.24572511,-0.13358639,-0.9076479,0.17455457,0.23780899,-0.067497045,0.14313568,0.19287796,-0.20399927,0.15546674,-0.35983887,-0.12674548,-0.10515296,0.45261106,0.020446854,-0.17192024,-0.28198144,-0.26912987,-0.112433024,-0.059496284,0.2254558,0.3183223,0.045406453,0.47705147,0.0011120777,1.4514446,0.18899693,0.12625332,-0.034290448,0.6484303,0.21677364,0.15767342,-0.3645011,0.4797699,0.20497686,0.13720775,-0.50440717,0.07821285,-0.17642118,-0.36612603,0.05058377,-0.24838986,0.018522425,-0.024012523,-0.07878444,-0.21265212,0.010710743,-0.40285084,0.5524297,-2.9838989,0.0031758195,-0.048081007,0.29254943,-0.0070545403,-0.03018403,-0.09612599,-0.3466213,0.5358145,0.5808319,0.489018,-0.39422694,-0.020044386,0.43024242,-0.42531404,-0.16852583,-0.57897437,0.104819514,-0.029726606,0.3822567,-0.058330845,-0.26871425,-0.035935264,0.08155367,0.2609408,0.005011217,0.085106604,0.3082319,0.45688802,0.105002016,0.35016918,-0.1604066,0.48606387,-0.07581296,-0.12693813,0.03233156,-0.37499574,0.36693478,-0.21414037,0.2717645,0.42931235,-0.48201352,-0.72500634,-0.22361349,-0.032253325,0.9609711,-0.2979337,-0.36050832,0.41824293,-0.09354575,-0.14013973,0.003920279,0.62852293,-0.21573791,-0.005695717,-0.6396172,-0.0035689853,-0.00065719,0.32794815,0.097106814,0.019415699,-0.48063934,0.49686405,-0.007495902,0.59550786,0.41578093,-0.011638183,-0.33254805,-0.5758496,0.052271258,0.8139053,0.25990394,0.05001448,-0.112502225,-0.19859195,-0.39167917,-0.3069624,0.051769007,0.52173203,0.7448626,0.029261319,0.03666754,0.243393,-0.27464917,0.018210076,-0.022384597,-0.49706027,-0.16257359,0.06180879,0.64506173,0.6202274,-0.19431624,0.5186443,-0.0052878126,0.32848632,-0.028651325,-0.46044084,0.5413238,0.42994994,-0.20343615,-0.18481363,0.3753134,0.3703163,-0.28824455,0.6420093,-0.39381933,-0.26271197,0.5524962,-0.031796087,-0.6399174,0.42805716,-0.27028608,0.05546119,-1.0562454,0.2608547,-0.21889214,-0.6667456,-0.6220442,0.13326466,-3.59289,0.09661589,-0.22758912,-0.36430386,-0.019492984,0.1716602,0.06801105,-0.38288078,-0.41533157,0.1438328,0.28808495,0.44273683,-0.12442824,-0.10395542,-0.1383695,-0.18833695,-0.23275313,0.11915519,0.04326503,0.10701446,-0.0042708246,-0.39457658,-0.085495,-0.26528475,-0.31609964,0.023462761,-0.53024906,-0.11366957,-0.32518312,-0.7806372,-0.39426422,0.71571296,-0.58372426,0.012944829,-0.26860464,0.110013254,0.041797124,0.28839436,0.06993368,0.064495936,-0.13858503,-0.12390549,-0.04382237,-0.3653986,0.24674056,-0.06042236,0.44142914,0.54292315,0.07896861,-0.025166653,0.66627914,0.5684424,0.006345562,0.70803815,0.37750643,-0.101723954,0.2516849,-0.52026594,-0.038467098,-0.47836077,-0.46584472,-0.08152047,-0.32280418,-0.50684875,-0.13990775,-0.4569145,-0.6274801,0.56717724,0.10029174,-0.15707573,0.21657768,0.39065725,0.27787963,-0.092010625,0.12892751,-0.25150564,-0.11910773,-0.5969068,-0.07160404,-0.8239212,-0.5672105,0.39815226,0.89140373,-0.19174455,-0.09547483,0.082837544,-0.26876116,-0.008714866,0.048839007,0.033042222,0.39100683,0.13258614,-0.057163812,-0.83579534,0.6084543,-0.2541142,-0.094236515,-0.6605742,0.043772552,0.564893,-0.97269803,0.2899416,0.45062038,0.045984074,-0.071349256,-0.5279054,-0.4261746,-0.037769366,-0.15178968,0.24392273,0.08865661,-0.8766758,0.49922934,0.24745774,-0.38823137,-0.7743232,0.17036293,-0.16122827,-0.38133124,0.32397997,0.27574968,-0.00062771275,0.06626082,-0.6759824,-0.112281516,-0.49828383,0.26476747,0.02062477,-0.05344367,0.61578065,-0.08966954,-0.25985593,-0.88652706,-0.023315864,-0.39812672,-0.16461594,0.47833225,0.2132204,0.1959346,-0.06291357,0.22113891,0.35936084,-0.45787954,0.102941535,-0.11934779,-0.27147815,0.3591727,0.40614575,0.29066217,-0.46625596,0.6672191,-0.1879024,-0.044476524,-0.14749841,-0.012323639,0.45796338,0.053765524,0.23590842,0.18414493,-0.22329813,0.10594651,0.85798454,0.2351539,0.27248225,0.11956942,-0.034445725,0.56799257,0.08650263,0.09352649,0.3586705,-0.44747093,-0.15508175,-0.30984446,0.16354725,0.46014836,0.15240651,0.5750003,-0.16384144,-0.25083196,-0.017449232,0.37790462,0.3048559,-0.68673044,0.58202976,0.26332933,0.39556235,0.73649406,0.19769365,0.06847689,0.7894478,-0.15239908,0.23974538,0.21369423,-0.04019283,-0.6025037,0.4841945,-0.7452148,0.47442463,-0.09577372,-0.050333753,0.41355693,0.047366675,0.5861611,0.9880684,-0.106090635,1.50203705e-05,-0.012881285,-0.13755326,-0.046945825,-0.3314647,-0.1278675,-0.26853332,-0.4305421,0.51617754,0.2965208,0.1875877,0.013230595,-0.053505287,0.2410664,-0.059476983,0.40185606,-0.14213863,-0.00045487014,-0.09239089,-0.5723294,-0.2511155,0.6383166,0.03432196,0.1270457,0.13485347,0.15403853,0.44143668,-0.3127159,-0.24661422,-0.14071572,-0.3618415,0.3589306,-0.00012655692,-0.519895,0.7035621,-0.17759508,0.42860442,0.110951565,0.2440237,-0.16938566,0.44081813,0.3326101,0.6979628,-0.0958056,-0.45946008,-0.17002553,-0.11586111,0.15929466,-0.24616447,-0.08970188,-0.22172837,-0.06736416,-0.6734227,0.50185865,-0.37180033,-0.23903099,-0.16604601,-0.23239793,0.032054387,0.3411949,-0.12951855,-0.1009249,0.020302068,-0.16164589,-0.18354797,-0.2374294,-0.36946353,0.10446692,0.098974325,-0.032486796,-0.10588603,-0.07806527,-0.006887257,0.37945616,-0.13872266,0.18072097,0.061674688,0.3397298,-0.25058585,-0.13755625,0.14834565,0.49409503,0.11522278,0.013463692,-0.24302115,-0.26323286,-0.36792785,-0.23250169,-0.077651806,0.3178197,0.22298533,-0.53776145,0.8495646,0.0066228537,1.1018405,0.0018898601,-0.3377765,0.22050811,0.6255757,-0.005014734,0.02258802,-0.37585518,1.1692005,0.7144688,-0.22454804,-0.1259777,-0.4171158,-0.15370737,0.23769115,-0.29307842,-0.25823808,0.04591247,-0.58594805,-0.37218523,0.30333826,0.29420823,0.1181542,-0.117153615,0.19367494,-0.16583078,0.07696047,0.055787638,-0.46973908,0.02303998,0.38861647,0.12628299,0.14350921,0.14270988,-0.21885724,0.3648772,-0.5390472,0.115140565,-0.42273453,0.047744576,-0.0144866,-0.28585723,0.14658263,-0.027631732,0.5038774,-0.21628866,-0.31375834,-0.078953944,0.4150541,0.34577486,0.3367717,0.72809565,-0.21295047,-0.17805225,-0.08020993,0.6268089,1.0753849,-0.3174134,-0.07520412,0.3612027,-0.23277284,-0.6766059,0.16316152,-0.41189128,-0.01947326,-0.36838838,-0.24190168,-0.44138223,0.0033715693,0.13455044,-0.21501318,-0.19393574,-0.45419037,-0.12117722,0.09793091,-0.3237731,-0.31965664,-0.41717854,0.119739324,0.9267734,-0.3150129,-0.3700663,0.10504253,0.06395581,-0.25558627,-0.7243555,0.0095593445,-0.06155107,0.37308013,0.45171544,-0.44555804,0.03919584,0.38231122,-0.5348714,0.20187396,-0.0009845658,-0.39132768,0.059863392,-0.36083087,0.01923156,0.8105845,-0.15163423,0.13166319,-0.5577816,-0.6241305,-0.87170357,-0.3831724,0.3848112,-0.10370653,-0.06890113,-0.5906548,-0.09027617,-0.18302217,-0.07187972,0.015476167,-0.54052204,0.4296919,-0.079584144,0.5303927,-0.42624605,-1.1842132,0.09674559,0.1489193,-0.09100353,-0.64136285,0.46595994,-0.13128132,0.89164144,0.21988964,-0.059166428,0.56667244,-0.60095716,0.23919836,-0.43023527,-0.3153223,-0.45108145,0.21612872 -172,0.37081882,-0.2416713,-0.35484973,-0.2191482,-0.0584359,0.06265217,-0.15755792,0.5414692,0.25250813,-0.5061602,-0.1730112,-0.12712422,0.052513875,0.2984798,-0.25894016,-0.6187159,0.032257568,-0.05806051,-0.36000416,0.5508677,-0.24370387,0.15958807,-0.044250816,0.30317995,0.15711845,0.20164408,0.3302577,0.100386664,0.033704612,-0.09683424,-0.12112577,0.0009485419,-0.70650685,0.25468987,-0.019179804,-0.18894969,-0.011293923,-0.2955832,-0.36295155,-0.82975143,0.50519234,-0.9263228,0.33925056,0.05701983,-0.2771316,0.25440377,0.2930152,0.21077047,-0.31648234,-0.11522753,0.047369443,-0.019650986,-0.005831442,-0.049880784,0.044624235,-0.4909311,-0.5717969,-0.10323051,-0.52548724,-0.18431707,-0.102787696,0.14397846,-0.3176873,-0.053866755,-0.046275824,0.7585535,-0.43958548,-0.19248271,0.4690384,-0.1692121,0.35259348,-0.71811736,-0.20403929,-0.016770478,0.047744386,0.061404604,-0.21891549,0.44381347,0.15350083,0.28740454,-0.095852375,-0.2416629,-0.13706788,-0.06859977,0.19327848,0.25208935,-0.16412485,-0.6068788,-0.0748275,-0.038886514,0.2969044,0.07068695,0.4196419,-0.23129265,-0.048255283,0.21848145,-0.2665813,0.37146464,0.73053586,-0.28402063,-0.1406097,0.29462606,0.45505288,-0.0053275055,-0.23229507,0.123713955,0.02767308,-0.4427199,-0.090751275,0.15717864,-0.32432494,0.58437383,-0.20311931,0.29598185,0.6465288,-0.24757001,0.18767396,0.011669687,0.04591623,-0.23151216,-0.3282452,-0.26768374,0.17127328,-0.46960464,-0.039062556,-0.3030284,0.83438885,0.27208248,-0.6860241,0.28956285,-0.35411122,0.24529065,-0.21965422,0.49762896,0.8326928,0.38457888,0.32665926,0.9314006,-0.4626824,-0.037736688,-0.07882819,-0.14368998,0.108560406,-0.21508662,0.11293929,-0.3351547,-0.06472662,0.147377,-0.14448869,-0.15991412,0.21601096,-0.52905625,-0.0344512,0.23881015,0.82522523,-0.22363798,-0.034656387,0.5902154,1.1111711,0.9263976,0.18611768,0.88896424,0.2596755,-0.16376278,0.19351755,-0.05910312,-0.7738886,0.2640403,0.44030285,0.7880908,0.2077904,0.060537823,-0.14299881,0.41160402,-0.5553031,0.1940111,-0.20307162,0.51004356,0.2545077,-0.098858155,-0.12351399,-0.0834645,-0.0148787545,0.0834412,-0.12905936,0.1997424,-0.12903354,0.1888974,-0.0069913054,1.4078857,-0.031460326,-0.075354524,0.097105466,0.58888024,0.20306465,-0.2687928,0.16335776,0.30262926,0.47057196,0.035660215,-0.69893944,0.09039601,-0.23162504,-0.56914365,-0.1493613,-0.39440608,-0.0067759496,-0.055494707,-0.5049407,-0.27694848,-0.10748865,-0.15083489,0.35346407,-2.9497492,-0.053509627,-0.17538705,0.31416008,-0.3136015,0.03173839,-0.017834114,-0.5684481,0.3991124,0.55122787,0.30467758,-0.7482368,0.25401208,0.3992493,-0.36644787,0.049961776,-0.6138304,0.05003004,-0.2466649,0.3987019,0.14558288,-0.004889648,0.24345803,0.26997516,0.44473726,0.3324496,0.21764433,0.18455637,0.33547238,-0.148451,0.33776638,-0.019616961,0.29686752,-0.12451148,-0.009338664,0.26118913,-0.5803984,0.06517552,-0.21217127,0.11604394,0.4694381,-0.3549371,-0.778066,-0.69662076,-0.10301131,1.173,-0.26617965,-0.8095733,0.2784533,-0.25250033,0.018280791,-0.21363041,0.6065641,-0.1542351,-0.020555321,-0.7300771,0.12304705,-0.24762143,0.15226687,0.013742424,-0.13906409,-0.37404123,0.89575386,-0.15385428,0.53015727,0.22522838,0.12772897,-0.38421482,-0.4003482,0.05200359,0.6883249,0.4965399,0.109331675,-0.11662994,-0.14870474,-0.32720676,-0.2563733,0.13738945,0.7433223,0.8227186,-0.08925853,0.23252709,0.37213498,-0.07986736,-0.06859826,-0.04018854,-0.38050863,-0.103466354,0.14589982,0.57277954,0.7002291,-0.23221086,0.3232985,-0.10194218,0.07766998,-0.17629065,-0.4696156,0.59589547,0.738554,-0.122509316,-0.2834636,0.57238525,0.41419512,-0.3108128,0.4159945,-0.6868844,-0.38577983,0.5996622,-0.21674393,-0.38419417,0.1646949,-0.39218807,0.122011594,-0.5589514,0.4890519,-0.30181065,-0.4650671,-0.55107987,-0.21564315,-3.4514081,0.09523574,-0.3075809,-0.20239814,-0.23362483,-0.26965714,0.32401153,-0.5203419,-0.46843603,0.2989211,0.13332418,0.6485764,0.12090715,0.10540502,-0.29561362,-0.05159669,-0.31666377,0.085416555,-0.08240301,0.22491892,0.043514635,-0.34788322,0.019879198,-0.028020045,-0.52071637,0.028597295,-0.28218928,-0.48490256,-0.23088227,-0.4745609,-0.3589148,0.5906277,-0.18664186,0.03813576,-0.22627302,-0.08902045,-0.29637071,0.3936991,0.09612655,0.17521264,-0.08963928,0.028559893,-0.05685445,-0.35842538,0.22623722,0.01629566,0.34515238,0.28709096,-0.10595727,0.11653549,0.52136505,0.43598768,-0.038982,0.6668005,0.528138,-0.08834129,0.3925619,-0.10439206,-0.12219355,-0.3956879,-0.29085508,0.18331246,-0.3438085,-0.35194317,-0.014992492,-0.42731944,-0.7360886,0.19119383,-0.063762985,0.3205635,0.004597085,0.12543541,0.45188278,-0.06503005,0.018731432,0.032834224,-0.08542888,-0.6637979,-0.18213756,-0.71948385,-0.30154034,0.310759,0.86632675,-0.22824433,-0.33423185,0.0087676495,-0.30817738,0.08678209,0.07984083,-0.19479708,-0.021921586,0.3486598,-0.04840463,-0.7508485,0.3944741,-0.12540576,-0.012134544,-0.6086974,0.10537829,0.27648503,-0.5889851,0.664245,0.30910015,0.10158216,-0.36820048,-0.5234708,-0.22362712,-0.16715169,-0.2589746,0.41450337,0.25649408,-0.7915605,0.40482596,0.19869652,-0.39139065,-0.590715,0.44842413,0.02515459,-0.21529722,-0.067978255,0.17129518,0.07179349,-0.036136042,-0.013870537,0.1929747,-0.46003166,0.12854603,0.23111215,-0.0040123886,0.4076123,0.00094764575,-0.075690866,-0.5263963,-0.118610814,-0.59962636,-0.07925582,0.09967176,-0.04346087,-0.041010145,0.1396663,0.07467199,0.42495182,-0.10526298,0.21831068,-0.005374619,-0.27378362,0.43981686,0.47716078,0.43510106,-0.419236,0.6651772,0.055645503,-0.13683793,-0.05002686,0.17144327,0.33912787,0.32007334,0.33690947,0.050735235,-0.16468832,0.33829874,0.85960835,0.10842063,0.54266655,0.1468011,-0.021399733,0.32432777,0.10549404,0.21307543,-0.027574737,-0.45159578,-0.10476344,-0.22606249,0.08515126,0.35193926,0.11133297,0.43727905,0.056264658,-0.3276632,-0.0052380604,0.03826799,-0.17476544,-1.2213131,0.29965228,0.085188106,0.859108,0.64187545,-0.14100412,-0.03569677,0.66035646,-0.12856193,0.10329205,0.3155856,0.057798214,-0.54507136,0.57774,-0.5617076,0.46458343,-0.0359536,-0.028512847,-0.1886138,0.21600798,0.2003604,0.5305892,-0.1914825,-0.012479986,-0.017501535,-0.26383477,0.2347983,-0.49077734,0.051160693,-0.5069292,-0.40695858,0.3856475,0.4619852,0.33059958,-0.12809882,-0.06723637,0.01898156,-0.08062249,0.14036009,-0.08623767,-0.13216993,-0.0046015424,-0.5872623,-0.41118294,0.43924254,-0.17580281,0.18834177,-0.0762905,-0.19170891,0.03703479,-0.18631724,-0.16092394,-0.027024228,-0.65684634,0.023206297,-0.12641083,-0.40826964,0.6282564,-0.3756867,0.1529517,0.26071522,-0.031440586,-0.27936524,-0.036938913,0.12116351,0.5294661,-0.3854652,-0.100282766,-0.64436615,-0.07497887,0.14368379,-0.23398171,0.12659125,-0.12131433,-0.04421065,-0.55527294,0.56200475,-0.0961091,-0.11980658,0.21993855,-0.34280962,-0.042321,0.6572299,-0.18977621,-0.07175163,0.12221204,-0.31686586,-0.2337983,-0.22519095,-0.26363567,0.2583229,0.05778679,0.07447118,-0.018885318,-0.27243134,0.047305975,0.26134083,0.03767654,0.14885156,0.3769243,0.06331792,-0.5220846,0.0013650188,0.14843509,0.52919096,0.23561546,-0.1780309,-0.33061847,-0.70435107,-0.3790954,0.07077335,-0.029079784,0.29955107,0.09874551,-0.3169126,0.7092823,-0.008583819,0.9744338,-0.013663839,-0.39819333,-0.10734582,0.56406873,-0.055409934,0.017947717,-0.18782718,0.5234536,0.52043796,0.0191289,-0.0024792936,-0.3706317,0.13398969,0.49106047,-0.035376187,-0.1521633,-0.09390212,-0.64217633,-0.23391281,0.24383488,0.2909171,0.13686393,-0.04527588,-0.051720295,0.15367219,0.007063557,0.3692593,-0.56781995,0.07314618,0.2587039,0.03519953,0.26571593,-0.042202268,-0.3685486,0.32305306,-0.5921733,0.104019985,-0.11642963,0.13220225,-0.11821837,-0.32821682,0.19530378,0.14361851,0.4789531,-0.3121048,-0.36136743,-0.17767255,0.6931223,0.10376774,0.32965747,0.48413748,-0.20746727,0.016913116,-0.007998846,0.7244652,1.1159238,-0.19049442,0.07235195,0.3020731,-0.50113374,-0.94683945,0.49073672,-0.30420548,0.17007487,0.020850578,-0.19597842,-0.60064095,0.22297724,0.37819904,-0.025388198,0.24789841,-0.6779042,-0.62454283,0.19358298,-0.260995,-0.28266695,-0.3784702,0.086762786,0.54055554,-0.32303166,0.0097177625,0.08809531,0.45321354,-0.11942095,-0.47981122,-0.055619784,-0.38723662,0.3557927,0.07338659,-0.29677898,-0.20417416,0.24198513,-0.33122402,0.23393893,-0.024519397,-0.320097,0.01694089,-0.10038503,0.04374179,0.83250535,-0.08861862,0.10109192,-0.65672123,-0.3822355,-0.73930496,-0.3269833,0.33549026,0.06267301,0.03303262,-0.6226315,-0.06581281,0.06772346,0.29328132,-0.17431195,-0.43472037,0.6230825,0.07500856,0.34065428,0.09891766,-0.58132297,0.0020745185,0.039135095,0.014628904,-0.39962605,0.51004905,-0.09445173,0.8545533,0.030148378,-0.010035396,0.023245003,-0.4170542,0.31260204,-0.21430115,-0.4650953,-0.43120858,0.23255385 -173,0.374939,-0.016761223,-0.6923046,-0.14943753,-0.25818634,0.16213422,-0.4391514,0.21304804,0.17406172,-0.31922707,0.27548638,-0.5008337,0.11590147,0.37292865,-0.030446475,-0.74213225,-0.018666754,0.16942084,-0.3948854,0.4407684,-0.47979107,0.3381083,0.30613694,0.26134983,-0.24752907,0.25849923,0.35835803,-0.242132,0.096452855,-0.2832768,-0.24668203,-0.22198904,-0.6446367,0.09115925,-0.02679987,-0.45181766,0.34909463,-0.31341478,-0.22156596,-0.58912444,0.19139187,-0.7674885,0.5947282,0.11413578,-0.22121684,0.33500943,0.15315415,0.21507353,-0.21687944,0.29523644,0.28242525,-0.45140752,-0.16948564,-0.3515061,-0.35068345,-0.72836447,-0.68268126,-0.26966023,-0.6495426,-0.257667,-0.3057978,0.15719031,-0.39427516,0.09772802,-0.0995031,-0.024778595,-0.46885207,-0.14934164,0.097363256,-0.28576863,0.4369513,-0.4030427,-0.015138726,-0.23072402,-0.031169757,-0.08491335,0.008197278,0.112428874,0.16360885,0.62067014,-0.13842691,-0.17542414,-0.39665928,-0.022989234,-0.06628267,0.56907344,-0.16378397,-0.021876087,-0.16834716,-0.14261241,0.24489492,0.4615921,0.018833226,-0.111365415,-0.08601317,-0.28711268,-0.5120071,0.12659658,0.5004644,-0.510102,-0.063243136,0.40589568,0.39038023,-0.00934346,-0.13685887,0.24614471,0.033890206,-0.38777637,-0.1541629,0.03689282,-0.16588302,0.5962,-0.1792164,0.3656591,0.7192169,-0.116566814,-0.038800195,-0.13242306,-0.18038447,0.07079548,-0.034292087,-0.115679085,0.455798,-0.6599925,-0.036768865,-0.43533036,0.817136,0.09187316,-0.9098983,0.31353346,-0.5778041,0.089089096,-0.16163634,0.7528968,0.5057756,0.67885035,0.10078132,0.813545,-0.6446288,0.26083332,-0.18295585,-0.33298615,0.50816685,0.0430841,0.20257561,-0.48018393,-0.022936925,0.07407871,-0.23934318,0.067561865,0.74109936,-0.35866857,-0.059262257,0.2565774,0.77623135,-0.3853331,-0.0076064668,0.2319951,1.2341049,0.82318497,0.013199091,0.9883682,0.26205945,-0.30487582,-0.11399982,-0.030737743,-0.9154622,0.07070095,0.21810572,0.60095614,0.35355243,0.15824609,-0.06894504,0.29244876,-0.26955473,-0.038573865,0.117408775,0.071516685,-0.18921977,-0.20829535,-0.26131693,-0.20125592,0.058740813,0.016378794,0.06899623,0.44388512,-0.090558976,0.6368368,0.18596707,1.8427516,0.10437382,0.12788789,0.1697734,0.39629063,0.31371266,0.16765194,-0.13853142,0.3522936,0.25018445,0.22864206,-0.4932909,0.1354081,-0.05864847,-0.57673454,-0.2388921,-0.20283194,-0.05948439,-0.2950457,-0.29737535,-0.2826074,0.079108216,-0.39172944,0.357465,-2.4663448,0.011289115,7.8077115e-05,0.30539894,-0.17319627,-0.1215866,-0.010775353,-0.43088794,0.53793347,0.55307966,0.35963377,-0.5970458,0.42653403,0.70234376,-0.31220564,-0.058972817,-0.6791232,-0.21850501,-0.24626549,0.32134175,0.040481914,-0.31436267,-0.09760809,0.2728452,0.5523538,0.017642215,0.06577044,0.25425926,0.50425845,-0.041127335,0.6004204,-0.027261278,0.46593794,-0.2271524,-0.16618232,0.27834412,-0.37837806,0.1008948,-0.29898092,0.10298125,0.300854,-0.41855943,-0.9423682,-0.3375082,-0.03417551,0.9835221,-0.423838,-0.43289062,0.2593733,0.14952874,-0.09319985,0.0066412836,0.4444236,-0.08130917,0.050109264,-0.64350575,0.03224155,-0.10140253,0.4525713,0.22583087,0.03709024,-0.5378732,0.73340726,-0.10665226,0.7308504,0.47152686,0.04929586,-0.10709909,-0.48225307,0.112726055,0.79268795,0.21244043,0.22652598,-0.4048414,-0.044396788,-0.22839563,-0.1264757,-0.02157014,0.231291,1.0014293,-0.10893717,0.16915864,0.3843267,-0.23964025,-0.104857676,-0.11876614,-0.5370725,0.11043354,-0.07605662,0.56596416,0.7841985,-0.032073434,0.29233152,0.069833435,0.6191023,-0.26756993,-0.4569459,0.5866325,0.5869732,-0.123597465,-0.09457898,0.5648165,0.5314812,-0.30977857,0.5834338,-0.7970722,-0.56340176,0.510422,-0.04749101,-0.6271079,0.40964076,-0.2438708,0.020951495,-1.1003174,0.24646206,-0.2847758,-0.32964543,-0.57853836,-0.13243952,-3.7010238,0.16885096,-0.4072524,-0.15983856,-0.039527643,0.036379855,0.3302301,-0.6181764,-0.53552425,0.07472999,0.24331224,0.5295384,-0.104437746,0.15583898,-0.47465435,-0.17665143,-0.30885473,0.43489566,0.12504171,-0.043282658,0.07323208,-0.4777739,-0.017816754,-0.32079458,-0.22710097,-0.05458401,-0.3719231,-0.18352681,-0.16871691,-0.5514303,-0.42458108,0.6656954,-0.18332128,-0.037752505,-0.31669497,-0.022530504,0.0087258415,0.14245957,0.069052346,-0.041513782,-0.16790001,-0.116358906,-0.18184143,-0.37508062,0.10118646,0.06779092,0.28870657,0.2962517,-0.14829473,-0.17334403,0.57274747,0.33719411,-0.0027281374,0.8424072,0.3736215,-0.14516926,0.36412296,-0.40747097,-0.10716722,-0.58056045,-0.33814406,-0.25449222,-0.433252,-0.49047437,0.025881598,-0.37610164,-0.84868985,0.59799945,0.12976323,-0.05264592,-0.008821875,0.49304017,0.34052667,-0.23119886,0.0110879885,-0.054638013,-0.25504425,-0.42210373,-0.10769701,-0.84139705,-0.44021764,0.23884167,1.0407585,-0.19848466,-0.040435597,0.1388782,-0.022887858,-0.018819744,0.13656358,0.26497743,0.44471964,0.34111544,0.11451975,-0.6656197,0.6120527,-0.30797204,-0.044920295,-0.78652334,0.03522872,0.60582745,-0.9190848,0.12871717,0.548498,0.10108936,0.17953753,-0.710119,-0.06319066,0.101179294,-0.25649717,0.3466381,0.036121674,-0.9250147,0.561986,0.22663595,-0.28829798,-0.71241504,0.4636921,-0.041943427,-0.6436241,0.062775694,0.38646343,0.03256382,0.25912672,-0.4183394,0.1717607,-0.59353817,0.21000046,0.21486063,-0.21333236,0.5526447,-0.085535206,-0.122979224,-0.8116134,0.08347925,-0.42164993,-0.31399104,0.36224058,-0.05720502,0.031318773,0.27172723,0.14368504,0.470966,-0.4151523,0.06432647,-0.20652544,-0.35442838,0.561922,0.44056642,0.22453338,-0.40260625,0.77166957,-0.12195062,-0.20228136,-0.25051275,-0.16270769,0.45582342,0.00024443617,0.37242398,0.09691883,-0.35217357,0.27069744,0.8162896,0.16565259,0.3453411,0.2795324,0.0024551302,0.59726024,0.25926116,-0.20275791,-0.011614491,-0.43700185,-0.060693603,-0.16309504,0.17934649,0.51563144,0.08025185,0.63882977,-0.26508942,-0.008015096,0.07359674,0.28374708,-0.102959774,-0.6150975,0.18667047,0.23452455,0.4574864,0.7819276,0.08172113,0.10625347,0.64032084,-0.40139833,0.072439745,0.35735247,0.17950816,-0.31975904,0.7261676,-0.6821807,0.25181758,-0.15764882,0.012029569,0.23980393,0.050758492,0.5107225,1.0212258,-0.07634691,0.1652354,-0.06886748,-0.20832193,0.06105331,-0.27543768,-0.06311839,-0.26471364,-0.26183736,0.62636465,0.11082231,0.28734446,-0.11965492,-0.08505761,0.124984674,-0.049516603,0.4686626,0.08409522,0.08382207,-0.040603925,-0.36224505,-0.26236406,0.74208933,0.0393837,0.0067790947,-0.034283686,-0.21901977,0.46210122,-0.15318477,-0.15988488,-0.06908382,-0.54899687,0.17019685,-0.3249215,-0.47093463,0.7475498,0.03196909,0.29456916,0.108147375,0.1042628,-0.20890053,0.16277483,0.25695378,0.55097437,0.14852422,-0.3075677,-0.23125292,-0.14715305,0.21372949,-0.34799805,-0.037627667,-0.19905548,0.09937823,-0.6089255,0.40173277,-0.34328473,-0.39182162,0.07163031,-0.36317834,-0.06273054,0.5003117,-0.094927154,-0.10923645,0.18037264,0.016697414,-0.3776423,-0.29897,-0.3679035,0.15961237,-0.36126912,-0.17611589,-0.11135807,0.00081656873,0.15861757,0.53169256,0.025877101,0.15333977,0.25185928,0.19117993,-0.45720294,0.08695218,-0.12719283,0.40712595,-0.18792017,-0.0011404852,-0.31890026,-0.5271519,-0.21497838,-0.044583935,-0.21468426,0.29473397,0.15417348,-0.37384376,1.0843011,0.17960405,0.83635044,-0.09229412,-0.32587662,0.13292177,0.62966067,0.1508742,0.03896323,-0.42669377,1.0699822,0.7651417,-0.24482305,-0.36756912,-0.24738944,-0.31049547,0.22688113,-0.37497392,-0.22751819,-0.024725223,-0.82814914,-0.20885213,0.38071048,0.16899602,0.21044827,-0.16695367,0.37809762,0.20586443,0.2634505,0.21368808,-0.517834,-0.28418455,0.36681283,0.04285973,0.029590806,0.10231926,-0.26039234,0.34164855,-0.5121457,0.0058404603,-0.58417696,-0.049025018,0.17996228,-0.26076856,0.16590069,-0.066844344,0.13637236,-0.20101441,-0.3620343,0.050869618,0.38495374,0.4747635,0.59367543,0.840103,-0.2173521,0.12919632,-0.10799531,0.6035299,1.3869458,-0.37148944,-0.1026122,0.38143435,-0.35072926,-0.8286915,0.15696792,-0.32809153,0.08722896,0.024231195,-0.47587192,-0.49749604,0.23676209,0.085596085,-0.28649655,0.20857589,-0.4220678,-0.23586607,0.23944654,-0.33557138,-0.3589202,-0.24827635,0.2781013,0.87959975,-0.17947517,-0.18506582,0.089774214,0.2715069,-0.36710772,-0.7350733,-0.04773724,-0.43419623,0.39974698,0.42262682,-0.40678462,0.3712969,0.2419165,-0.58989054,0.10807005,0.42653427,-0.22066693,0.042502075,-0.6153973,0.13202554,0.8129867,-0.10567812,-0.36218724,-0.519144,-0.6821506,-0.89668185,-0.41494313,0.5210037,0.05137941,-0.014794994,-0.5051565,0.00089714926,-0.17449592,-0.06197171,-0.030586096,-0.4713224,0.38740036,0.067704655,0.5336487,-0.19500093,-0.90260047,0.20904994,0.06656567,-0.38899526,-0.6496441,0.5051355,-0.3512341,0.9155118,0.15804046,-0.134721,0.5368494,-0.6431539,0.39586392,-0.3970605,-0.23422253,-0.58742684,-0.061871976 -174,0.43909267,-0.19819227,-0.2851422,-0.16326417,-0.1530015,0.034272857,-0.21820332,0.3575476,0.20625731,-0.47130612,-0.29976174,-0.26273486,0.1278845,0.3762991,-0.2106073,-0.6055124,-0.03375524,0.13839816,-0.3611321,0.60787314,-0.4853061,0.1920444,0.10703576,0.4561946,0.2857412,0.11405896,0.21168683,-0.17583427,-0.20475857,-0.28890026,-0.106325895,0.38252708,-0.72264683,0.27763954,-0.13713011,-0.32570663,-0.015657496,-0.36711296,-0.41106626,-0.8074525,0.21863113,-0.9757862,0.42738774,0.16594537,-0.25932437,0.3769881,0.19380614,0.20435153,-0.21703172,-0.09472808,0.18005091,-0.3006589,-0.18126033,-0.07212616,-0.03702226,-0.39785114,-0.6348453,0.07875768,-0.37486437,-0.13373142,-0.47589138,0.19087833,-0.32097685,-0.019143214,0.08016272,0.5137959,-0.4467931,-0.06684519,0.16817181,-0.14882912,0.45289284,-0.5525525,-0.3002249,-0.15944704,0.22055973,-0.27820545,-0.21044558,0.3322088,0.3560282,0.46297053,0.018267252,-0.16994278,-0.274437,-0.08716007,0.13495363,0.3952332,-0.25059906,-0.6683836,-0.07541443,-0.12433961,0.28115574,0.19272739,0.066134706,-0.24959055,-0.038836196,0.10706169,-0.2943718,0.37938344,0.53407675,-0.27568254,-0.3920363,0.23257788,0.45416948,0.046553418,-0.021744935,-0.04479198,0.09030687,-0.40957293,-0.09523574,0.10778424,-0.3656279,0.6239684,-0.23807772,0.11975439,0.7326832,-0.3153543,0.111995965,0.10456533,0.05772672,-0.11917679,-0.18480007,-0.4100771,0.3081559,-0.5744496,0.18994313,-0.33684048,1.0111932,0.15344247,-0.6695105,0.24934033,-0.5529122,0.16849783,-0.22328326,0.7037311,0.6999152,0.42752773,0.4747316,0.6193275,-0.5228245,-0.015713416,0.005389234,-0.313888,0.15578482,-0.38872975,0.02827793,-0.3773258,-0.1494103,0.13751009,-0.06690118,0.038382895,0.3991747,-0.4966645,-0.034965817,0.17177725,0.77106607,-0.2854177,-0.014769146,0.7629001,1.11279,1.0348536,0.17328757,1.186417,0.35686156,-0.16278793,0.13066873,0.005603309,-0.6685581,0.33060327,0.37503022,-0.2675784,0.0853865,0.07398062,-0.021049835,0.3315169,-0.6710501,-0.031904038,-0.23282312,0.25348112,-0.01086308,-0.056709416,-0.4781616,-0.35377863,-0.03037714,-0.031346798,-0.028780947,0.36407387,-0.12403551,0.49711683,0.11528846,1.0425187,-0.0701036,-0.010402739,-0.07420756,0.6103766,0.019202547,0.011787222,0.052367512,0.20829996,0.42448142,0.11929855,-0.71294504,0.121927746,-0.23323403,-0.45115936,-0.22208677,-0.34583628,-0.002360717,0.12762037,-0.22469448,-0.17567986,-0.19645882,-0.21198283,0.5381843,-2.5579436,-0.045993898,-0.06611133,0.16755547,-0.13708217,-0.15109856,0.0136470515,-0.59256274,0.5374862,0.3761442,0.5342516,-0.71405894,0.10878175,0.5049512,-0.56559664,-0.21651822,-0.77640593,-0.16332634,-0.12219075,0.42856374,0.06425292,-0.049815528,0.046211403,0.02546694,0.60785997,0.1325919,0.18327552,0.16517378,0.30290553,0.042335745,0.3442046,0.15757273,0.47557625,-0.31694204,-0.23037912,0.41629127,-0.3736973,0.30682582,-0.23775242,0.017970165,0.43724093,-0.3383784,-0.8863074,-0.7868029,-0.5091698,1.2452604,-0.21617723,-0.5798,0.24455863,0.055464193,0.045799576,-0.006424372,0.37805653,-0.23497353,0.036961637,-0.86534476,0.019494763,0.030148549,0.19351894,0.046953455,0.051535275,-0.48461592,0.6117576,-0.0717197,0.2064253,0.35704437,0.25225767,-0.438082,-0.6895152,0.05617889,1.0376296,0.40837485,0.25655746,-0.32341924,-0.3379785,-0.28430408,-0.16664106,0.14645174,0.50274694,0.7570962,-0.06150317,0.16521165,0.26556438,-0.104007706,0.050661862,-0.10281475,-0.3922207,-0.17344196,0.22220062,0.72772056,0.6611664,-0.14955649,0.3668615,-0.044568352,0.24422798,-0.050650734,-0.43925518,0.70680994,1.1253537,-0.118237264,-0.12655763,0.7587328,0.5815708,-0.3090502,0.6084343,-0.6877916,-0.5514402,0.61723477,-0.16909687,-0.5471524,0.08814759,-0.42386422,0.156278,-1.0521764,0.4285069,-0.35328737,-0.42537925,-0.65658385,0.03784957,-3.309523,0.107814424,-0.37660775,-0.17347027,-0.24048258,-0.24077217,0.4161863,-0.5291971,-0.5249619,0.2390852,0.118655525,0.6105514,-0.006576822,0.21024425,-0.3126957,-0.1029426,-0.26271412,0.22076339,0.2907058,0.2627807,0.010555308,-0.48811376,0.22036828,-0.091289096,-0.34379548,0.0028676367,-0.48189676,-0.6356983,-0.21594623,-0.50819266,-0.37747085,0.5610869,-0.5511903,0.06794703,-0.2031106,0.0068712602,-0.2660778,0.35870603,0.20692846,0.16535881,0.05392548,-0.010551769,-0.11593868,-0.34272173,0.39220974,0.043155484,0.05185555,0.3818043,-0.20367765,0.15928735,0.5459616,0.51643765,-0.076283075,0.92006016,0.47273657,-0.03485397,0.2605944,-0.33675745,-0.40382516,-0.7020773,-0.32739285,-0.17234072,-0.32471746,-0.3776291,0.007222164,-0.28125006,-0.8114477,0.6137097,-0.10919891,0.33531874,-0.19443956,0.24836475,0.39698452,-0.24212262,-0.1065615,-0.11269304,0.00698951,-0.7307613,-0.20613256,-0.78206474,-0.54949147,0.07763077,0.7620761,-0.13655208,-0.07370741,0.103694476,-0.10970264,0.107480325,0.2095515,-0.038759585,0.037244353,0.57896656,0.109818704,-0.83692276,0.59198755,0.063717455,-0.065053016,-0.6267928,0.3687293,0.62135404,-0.7208265,0.42274967,0.6093812,-0.029815426,-0.04267114,-0.48002535,-0.30430177,-0.24201587,-0.16622011,0.37846082,0.18067844,-0.79356,0.530959,0.40542632,-0.26647016,-0.7851318,0.5493343,-0.006041678,-0.12346638,0.16963045,0.3434046,0.19144191,0.08747797,-0.10182015,0.20720537,-0.4659069,0.28501865,0.09184143,-0.08426164,0.38292557,-0.1400514,-0.092221566,-0.8561373,0.06310268,-0.5251429,-0.26904666,0.0920176,0.073410034,-0.12109751,0.34439597,0.09086467,0.40603468,-0.10727361,0.073378585,-0.13777536,-0.34096915,0.34583458,0.57114804,0.52286786,-0.43806523,0.7594561,0.066659205,-0.15282384,-0.109964415,0.010129475,0.39275837,0.13712515,0.35081065,0.12546064,-0.3323068,0.21528523,0.7330192,0.18570012,0.5738912,-0.047802787,0.001686275,0.37051913,0.16617237,0.28790885,0.049456183,-0.5187646,-0.08305835,-0.4686216,-0.020783829,0.50399905,0.11846157,0.42088002,-0.12818323,-0.11648483,0.034401715,0.038157463,-0.029210063,-1.156487,0.4692826,0.21442547,0.6841308,0.64440686,-0.14594579,0.16821851,0.78297544,-0.37676418,0.0050977594,0.36136296,0.21715233,-0.5042589,0.68094975,-0.87753254,0.4116084,-0.17974363,0.13951775,-0.06367612,-0.03026809,0.3201499,0.8157496,-0.22379485,0.058542363,-0.072608724,-0.3910485,0.31952617,-0.45761812,0.21941763,-0.5017955,-0.17284921,0.74887836,0.47855127,0.29135334,-0.18444262,-0.059235968,0.062040273,-0.12383412,0.2743749,0.026309889,0.014438712,-0.056333356,-0.6051743,-0.18541215,0.62597185,0.004594363,0.19292644,0.0150187295,-0.15913273,0.29770246,-0.30469128,-0.030373152,-0.08170894,-0.6763171,-0.12480216,-0.2874768,-0.38198745,0.5917861,-0.43593374,0.19724132,0.21850087,0.15969276,-0.253977,0.09231683,0.24360286,0.5478364,0.11620903,-0.34685114,-0.36418825,-0.003128084,0.24728945,-0.17418163,-0.22909194,-0.08494007,-0.11329719,-0.47833017,0.49317396,-0.29341665,-0.163929,0.078605205,-0.26498425,-0.023496522,0.6102091,-0.023641856,-0.14260253,0.18450461,-0.14231429,-0.2777755,-0.1302654,-0.11382853,0.28680024,0.27605394,0.05140578,-0.19958463,-0.27974442,-0.20134386,0.29047954,-0.11066453,0.27550504,0.3119224,0.06278772,-0.28539884,-0.18468904,0.065008506,0.43445662,0.06869432,-0.18188961,-0.15824877,-0.41269472,-0.33406317,0.04637963,-0.136623,0.24666384,-0.0038009034,-0.41838852,0.72986054,-0.13337444,0.99965465,0.012096967,-0.4766335,0.12348202,0.49129847,-0.15514758,-0.051894136,-0.29932737,0.89393675,0.44675958,-0.16333954,-0.17094828,-0.5953527,0.046207152,0.26398155,-0.16922225,-0.20263806,-0.051667623,-0.61217415,-0.34560552,0.36378437,0.4436115,-0.023056097,0.018660618,-0.042248204,0.26029742,0.13757831,0.6526473,-0.50687003,-0.07574176,0.34891242,0.30530232,0.021102218,0.14074276,-0.27074462,0.43946213,-0.5962935,-0.02073862,-0.3825726,0.041622803,-0.41254786,-0.3356735,0.20029235,0.1315203,0.40792227,-0.1578024,-0.33047566,-0.24633199,0.5661447,0.11692,0.0912946,0.6213572,-0.285271,-0.035694595,0.047179278,0.46380454,1.1136775,-0.3725672,-0.029878823,0.18179105,-0.32688463,-0.5950274,0.60098743,-0.60556614,0.15193973,0.0983254,-0.32929686,-0.5218058,0.052620776,0.2674065,0.0981205,0.18864878,-0.6217238,-0.14054781,0.21389325,-0.2798929,-0.24542156,-0.22696151,0.23506238,0.49456835,-0.36533037,-0.19001985,0.055440526,0.31243452,-0.21749766,-0.55265695,-0.067496344,-0.27997497,0.3678767,0.18594998,-0.41814497,-0.072696514,0.26099417,-0.4418352,0.0025356503,0.11393236,-0.35966602,0.1011,-0.34978908,0.28653458,0.7217778,-0.16325396,0.18236017,-0.7367264,-0.37366262,-0.7984822,-0.31349266,0.60106915,0.26969716,0.10181706,-0.53168315,0.03318704,-0.12679504,0.059210487,0.0037794297,-0.5695573,0.56177074,0.23303911,0.45558354,0.083296224,-0.702227,-0.015253002,0.07490198,0.03167804,-0.70261997,0.503383,-0.10911744,0.80147636,0.1451526,0.12731025,0.22057398,-0.5238332,0.008767857,-0.20406574,-0.3076145,-0.6864863,0.055350836 -175,0.45106384,-0.19562773,-0.52528226,-0.052194696,-0.22866866,0.017123563,-0.08747257,0.31242526,0.18610677,-0.37552637,-0.05258345,-0.2098792,0.14251032,0.2641493,-0.085009694,-0.53981227,0.05681867,0.19805495,-0.6712932,0.5416213,-0.34740365,0.25755054,0.11051153,0.29750577,0.18952554,0.35585627,0.16817074,-0.18004872,-0.100505725,-0.05889829,-0.18908675,0.19903083,-0.30936226,0.129434,-0.08591037,-0.24811761,-0.019588945,-0.54152703,-0.3317976,-0.6550135,0.29061958,-0.7206459,0.5026483,0.046490766,-0.23896,0.31727803,0.17901258,0.3723268,-0.29529545,-0.06511405,0.14088835,-0.023985637,-0.10334534,-0.18502855,-0.1140886,-0.26965332,-0.48266146,-0.0234774,-0.32758978,-0.26127565,-0.25388822,0.053397182,-0.3085985,0.01570087,-0.055087972,0.5798144,-0.46761042,-0.02464795,0.26870528,-0.14990412,0.37176058,-0.37692323,-0.07755612,-0.092125244,0.3862456,-0.19944283,-0.22394663,0.23062387,0.4455829,0.32143128,-0.024101429,-0.07746328,-0.22944818,-0.10145887,0.14881532,0.49956158,-0.14265923,-0.59863484,-0.21643752,0.08082175,0.06190228,0.22609153,0.2067837,-0.3408242,-0.15446948,-0.04439223,-0.207755,0.39658636,0.32641804,-0.37641034,-0.18046378,0.34911105,0.5695372,0.1430893,-0.17968993,-0.0050895056,-0.019016627,-0.48808116,-0.15395851,0.0136907995,-0.16350812,0.3915446,-0.22354822,0.33954257,0.74020517,-0.10397987,-0.042765096,0.042434685,0.031003276,-0.20792867,-0.23232633,-0.083789915,0.20075607,-0.47917548,0.09656288,-0.108410135,0.74004465,0.20504488,-0.7527275,0.33114877,-0.5907025,0.19181944,-0.13473143,0.4395232,0.6274722,0.3604061,0.21880606,0.70929027,-0.42672288,0.0977421,-0.062363245,-0.57041353,-0.008809272,-0.059618436,-0.05825158,-0.62409997,-0.0001306971,0.036500625,-0.119159535,0.10980673,0.2713435,-0.55786437,-0.06558772,0.11662021,0.8645632,-0.2895099,-0.10148291,0.7234527,0.8871869,0.85841507,-0.012012828,1.1032488,0.12789568,-0.3507962,0.24591534,-0.39739674,-0.66376483,0.3425681,0.41073567,-0.06314931,0.27968222,-0.0005455772,0.056011844,0.2600573,-0.28217897,0.104678266,-0.12290194,-0.035071295,0.04182198,-0.16751817,-0.48099232,-0.22248538,-0.15422077,0.096252955,0.14369932,0.1666382,-0.15405057,0.4758397,0.08337248,1.8721431,-0.010948309,0.20154938,0.078195006,0.37147126,0.29254004,-0.08752079,-0.30618784,0.3731308,0.32239878,0.23647556,-0.5722458,0.14663666,-0.16206864,-0.4436946,-0.05595747,-0.37003443,-0.077139236,-0.052716855,-0.4055436,0.027368056,-0.17071374,-0.32476228,0.517956,-2.8049378,-0.20589256,-0.15265939,0.30543745,-0.24820639,-0.3033081,-0.17270564,-0.4005434,0.3436549,0.2529434,0.59745574,-0.66914016,0.38941413,0.3572507,-0.54590416,-0.11263214,-0.5352867,-0.12525043,0.02913606,0.32303482,0.0041109086,-0.027324302,0.042959657,0.23455146,0.44353855,-0.054181393,0.024388552,0.18082593,0.38649672,0.08103515,0.6215751,-0.005088502,0.56287456,-0.083256215,-0.23291254,0.18441005,-0.08630918,0.20718905,-0.05863534,0.13401915,0.45438066,-0.41746798,-1.0134037,-0.5756188,-0.11800282,1.1203955,-0.33937293,-0.26582754,0.2866275,-0.22964856,-0.27369064,-0.048427097,0.41488343,-0.04942871,-0.040959723,-0.8947779,0.18667746,0.030419815,0.12859555,0.10063485,-0.19669908,-0.41904885,0.7012522,-0.05681602,0.5886345,0.29605517,0.15622215,-0.20895582,-0.45361626,0.03475778,0.8919293,0.31127784,0.034795698,-0.0719032,-0.14325716,-0.44945458,-0.05985059,0.09755274,0.44012058,0.62987894,0.048435654,0.13471751,0.25680727,0.020506648,0.12576391,-0.13105187,-0.29163033,-0.04516422,-0.27187252,0.5134962,0.59296125,-0.28097495,0.5655441,-0.087709434,0.34605375,-0.05400844,-0.48033184,0.6684733,0.9816558,-0.16411386,-0.28349307,0.5542776,0.32971743,-0.23153336,0.30618593,-0.45284593,-0.17855495,0.52739024,-0.25782523,-0.41808274,0.32872972,-0.23947798,0.21476069,-0.98462963,0.2322616,-0.28861675,-0.42735514,-0.34408778,-0.048687458,-3.952385,0.28244755,-0.26939714,-0.21681118,-0.11199745,-0.025406213,0.08905055,-0.61274093,-0.55444646,0.16287763,0.06787556,0.7706092,-0.13128263,0.14580713,-0.13567342,-0.31199643,-0.13720137,0.13046339,0.07508776,0.31759483,0.004648348,-0.50221723,-0.14642055,-0.13037504,-0.5423978,0.13527584,-0.5372475,-0.4364497,-0.027046137,-0.55429655,-0.36065328,0.6641309,-0.16495101,0.097052075,-0.14738001,0.03109918,-0.0870043,0.32518002,0.03207779,0.14211187,-0.027040549,0.012678713,0.03832071,-0.17158821,0.23675396,0.024332397,0.28327072,0.1344154,-0.15489079,0.198944,0.44647223,0.605335,-0.07477036,0.77011734,0.46348056,-0.12367151,0.2255746,-0.33108202,-0.3107002,-0.5685962,-0.35442963,0.041991282,-0.39320186,-0.54268616,-0.17014939,-0.3369591,-0.646088,0.5172338,0.060865752,0.12417283,-0.14351885,0.2776982,0.57974035,-0.242831,0.020382594,0.02206804,-0.19977704,-0.6544421,-0.106360756,-0.6381089,-0.30107364,0.15777503,0.86381215,-0.394288,0.102521196,-0.089833856,-0.22536412,0.020568471,0.120629445,0.0069745937,0.35142803,0.34983456,-0.28813496,-0.6639465,0.48589426,-0.19235769,-0.27405745,-0.6029533,0.20206347,0.6264082,-0.58324444,0.5957635,0.36070883,0.00092144014,-0.16280572,-0.31395042,-0.11582612,0.03518106,-0.24587394,0.38731024,0.19549379,-0.6419699,0.3919382,0.38464698,-0.19158958,-0.67366105,0.57071626,0.08370916,-0.27707493,0.015072803,0.3720862,0.113082364,-0.04097213,-0.3163096,0.22549456,-0.39996994,0.2833272,0.16826425,-0.12593685,0.28996667,-0.18048471,-0.22659926,-0.79267716,-0.04834095,-0.53884834,-0.11645536,0.33980653,0.1060247,0.14879324,0.026496394,-0.12537655,0.4086198,-0.305424,0.08665418,-0.0683909,-0.116100535,0.32141045,0.4022052,0.33101833,-0.4841465,0.5119346,0.01260461,-0.14265724,-0.056781225,0.0016045967,0.53448564,0.100841016,0.39507905,0.0069571636,-0.33951578,0.3165787,0.53580743,0.16918232,0.3786159,0.048599817,-0.08120745,0.17771278,0.07847247,0.22413209,-0.0018886566,-0.53393155,-0.055104837,-0.20391063,0.12576382,0.55482584,0.19875094,0.16832368,-0.08981325,-0.46189472,0.012091081,0.20816495,0.08659364,-1.127425,0.4632033,0.20752405,0.7272738,0.45859095,0.0031526526,0.033826437,0.6807235,-0.22081047,0.23001482,0.3042936,-0.020967882,-0.5877766,0.5246349,-0.7910667,0.40002477,-0.02740494,-0.049081422,0.047919035,-0.10484738,0.277814,0.7937616,-0.14345405,0.03943404,-0.058192916,-0.27568674,0.18467309,-0.38411,-0.06995525,-0.6014028,-0.31031767,0.5666599,0.44792402,0.23335157,-0.11195367,0.09355626,0.20691109,-0.09101491,0.034258734,0.15630038,0.25678355,-0.006751569,-0.76760745,-0.19063811,0.5446055,-0.025358772,0.18601976,0.05283069,-0.05803639,0.28613326,-0.21033001,-0.036465097,-0.12163858,-0.5886716,-0.02104307,-0.25178745,-0.3857835,0.52028465,-0.15944582,0.32868242,0.19222252,0.038552012,-0.20832556,0.41114026,0.04054012,0.7485669,0.030373577,-0.14858148,-0.3273551,0.27007666,0.14729418,-0.15535502,-0.09738569,-0.31773666,0.008169945,-0.591716,0.56009537,0.047710158,-0.33762136,0.109997034,-0.051673483,0.010743683,0.6493565,-0.22892371,-0.14796396,-0.28963357,-0.18317989,-0.22836894,-0.2113278,-0.0787484,0.1752002,0.25404748,0.0091136955,-0.122724675,-0.018543398,-0.195739,0.37826687,-0.03866694,0.4851348,0.29706347,0.09379414,-0.34971154,-0.13058539,0.29834118,0.29769167,-0.026871895,-0.1471719,-0.32698965,-0.40435913,-0.3435213,-0.020983648,-0.02784007,0.34722176,0.05993259,-0.11643548,0.80200464,-0.017620603,1.0742421,0.020679263,-0.3710422,0.16045456,0.47381237,0.03369151,-0.09256204,-0.18463469,0.91010344,0.541026,-0.012733976,-0.12096286,-0.33611095,-0.036704656,0.054376435,-0.21047755,-0.16554357,0.04209288,-0.36377946,-0.37442464,0.25556463,0.18487328,0.3738364,-0.1012862,0.10241305,0.28653657,0.0116094705,0.20962134,-0.5008373,-0.3607622,0.2069379,0.31219986,0.045122743,0.081377715,-0.52101004,0.472447,-0.4161082,0.14119367,-0.23695841,0.23506472,-0.20577344,-0.18473047,0.22768387,0.0021353562,0.3524373,-0.27746412,-0.37497416,-0.3565872,0.47048128,0.18194826,0.033168085,0.65833133,-0.30050603,0.059712544,0.13023785,0.4486528,0.90374833,-0.2011551,-0.0072755176,0.4479986,-0.24616246,-0.5694179,0.3155325,-0.29578397,0.17468032,0.0078065195,-0.15202612,-0.5048801,0.26450777,0.15182638,0.095292106,-0.10969203,-0.6281174,-0.24247263,0.3678787,-0.26750806,-0.16627921,-0.31516322,0.12212266,0.51811635,-0.27668792,-0.4100856,0.117362596,0.03169792,-0.09478131,-0.63229185,-0.15806907,-0.28469685,0.29916194,0.10675279,-0.2694566,-0.11491091,-0.010980773,-0.42630526,0.24867126,-0.019155018,-0.30357975,0.17722975,-0.2731168,-0.18909405,0.9862487,-0.2510452,0.08243624,-0.47995836,-0.42502195,-0.7558313,-0.32128304,0.60054153,-0.09436749,0.03780435,-0.6080181,-0.0011211882,-0.057739962,-0.110298045,-0.08293686,-0.29573014,0.32776248,0.09662862,0.38020286,-0.047333352,-0.7616505,0.2511874,0.014834178,-0.17183742,-0.67176193,0.50555253,-0.03366893,0.7975538,0.080975294,0.044452142,0.446725,-0.47895563,-0.25373003,-0.22253805,-0.14742035,-0.6617591,0.026511775 -176,0.23508285,-0.13497165,-0.70761263,0.03973901,-0.4161046,0.15051955,-0.39106977,0.08477128,0.1993538,-0.55698836,0.012265637,-0.26266837,-0.06311646,0.29103345,-0.035220437,-0.53381926,0.052783545,0.44032186,-0.6261978,0.7250906,-0.37647003,0.27201578,0.28227976,0.24576154,-0.098706454,0.070217684,0.23289187,-0.18862425,-0.049948674,-0.23455653,-0.13850711,0.083456315,-0.5596725,0.39475626,-0.07461907,-0.39062655,0.1610638,-0.34857857,-0.13620299,-0.66392887,0.009306147,-0.7560407,0.6305184,0.11235228,-0.25738412,0.2290423,0.3808214,0.20060757,-0.069170214,0.0487634,0.21572201,-0.48787135,-0.61032295,-0.422109,-0.37359473,-0.46902063,-0.5682844,-0.14751595,-0.53167516,0.116918966,-0.34575206,0.37841687,-0.36328653,-0.12733687,-0.20996942,0.413987,-0.33041957,0.32098168,0.1623242,-0.32366997,0.11198903,-0.50505,0.017905822,-0.13175549,0.18445018,0.21684207,-0.27920386,0.14622304,0.26685187,0.7075673,0.20113581,-0.29005948,-0.32209042,-0.22043107,0.1341477,0.56931126,0.019553801,-0.040421046,-0.21677485,-0.2627158,0.25710118,0.33974805,0.00540118,-0.22291343,-0.1731403,-0.36526102,-0.28889495,0.12207244,0.42376012,-0.37682426,-0.13936864,0.4386967,0.26184615,-0.11822883,-0.18106978,0.15810393,-0.05478339,-0.5846714,-0.2680443,0.22278056,0.05907353,0.49920756,-0.2215895,0.3649336,0.61684597,0.00635491,-0.3334144,0.08145322,0.00029083856,0.045650266,-0.28122193,-0.07622487,0.3570366,-0.54738486,-0.09843208,-0.4049086,0.7972942,-0.071041234,-0.66775507,0.37086293,-0.61611336,0.1296947,0.05248906,0.78813577,0.7463046,0.7582734,0.08550675,0.8742007,-0.35281834,0.25646466,-0.24447481,-0.25767827,0.16398628,-0.04966702,0.46825936,-0.36606914,0.18503952,-0.11460078,0.0016208612,-0.008760769,0.8436223,-0.46189374,-0.3397355,0.039151587,0.8491,-0.27382553,-0.14633083,0.66781294,0.8576132,0.9189748,0.07181342,1.274213,0.3830508,-0.14662439,-0.24744003,-0.03671768,-0.8359372,0.1596975,0.091832645,0.5566454,0.10237789,0.14403298,-0.24966821,0.53333306,-0.18580039,-0.23759486,-0.24445167,0.25149325,-0.1664252,-0.1458555,-0.29424584,-0.3874434,0.16148883,-0.1458427,0.37521335,0.47960517,-0.13627289,0.73104817,0.054123897,1.7531657,-0.094696775,0.15585886,0.2154471,0.14608277,0.32363003,-0.033891227,-0.11202638,0.51637787,0.16314451,-0.08856131,-0.57184637,0.040183607,-0.1348995,-0.5641614,-0.19990213,-0.22412099,-0.3112237,-0.3460191,-0.19567083,-0.3889582,-0.16646884,-0.5069349,0.35908172,-2.5083232,-0.1435791,-0.0729042,0.29583237,-0.24288188,-0.2216065,-0.26181224,-0.478015,0.7131662,0.25608763,0.5671746,-0.50729823,0.45417506,0.44331744,-0.4559194,-0.28690296,-0.83705735,-0.038488373,-0.08272162,0.4589686,-0.12648019,-0.42652544,-0.2150983,-0.26487863,0.6062826,-0.18093652,0.14502159,0.50092024,0.5648536,-0.033825282,0.5119423,0.013140935,0.73976666,-0.508678,-0.30821896,0.31372184,-0.5003827,0.5735086,-0.1686953,0.067964524,0.4348669,-0.4566504,-0.69623727,-0.4380706,0.024124531,0.9608339,-0.36936644,-0.5530725,-0.01158309,-0.3659546,-0.14614369,0.15674923,0.53646415,-0.009512873,0.079843834,-0.5890528,0.026360832,0.047463957,0.48044586,-0.046580706,-0.0031155485,-0.44796917,0.6301218,-0.14790998,0.75213474,0.4947682,0.15693809,-0.40797657,-0.21336962,0.19677892,0.87006754,0.14695062,0.09162671,-0.28782362,-0.39854905,-0.123130694,-0.3329317,-0.089128144,0.6261925,0.5389255,-0.108884975,0.1940554,0.45656264,-0.3367216,-0.03715246,-0.31074885,-0.3517952,-0.18520373,0.12466948,0.47160047,0.7453159,0.102162525,0.4778391,0.0010248239,0.44166696,-0.34976628,-0.66762614,0.6179706,0.57122904,-0.240539,-0.20447108,0.64359474,0.44242284,-0.13649838,0.58506393,-0.52917945,-0.5936274,0.29325706,-0.03630437,-0.50726235,0.12775265,-0.21599467,0.0021110636,-0.85940117,0.04167974,-0.31521717,-0.5574165,-0.71457744,-0.051660415,-2.5906847,0.2319104,-0.31331727,-0.06787907,-0.2211004,-0.05707242,0.114181906,-0.23926584,-0.38989764,0.15162988,0.326561,0.48732117,-0.13133456,0.16539481,-0.36843726,-0.31538236,-0.26941797,0.2490615,-0.071464874,0.15101098,-0.28580415,-0.52751386,0.09886729,-0.121053904,-0.17634854,-0.07263757,-0.68675953,-0.21215843,0.007960086,-0.2996512,-0.37149063,0.6391388,-0.3479505,0.020481901,-0.44672346,0.09359605,0.13462433,0.24080513,-0.034658004,0.23862466,-0.010026391,-0.19940679,-0.17488582,-0.20471624,0.06052856,-0.11362048,0.28760904,0.5332153,0.0013999847,0.12644821,0.3844479,0.5255397,0.03497999,0.88101834,0.24415728,0.017572755,0.29356045,-0.1107099,-0.20760895,-0.45418623,-0.18040484,-0.20316352,-0.51120955,-0.33741167,0.12109562,-0.28813484,-0.9141178,0.7853928,0.35829207,-0.29476318,-0.050160807,0.66775614,0.46772724,-0.2661028,-0.048419956,-0.22276634,-0.3034979,-0.28836682,-0.47741917,-0.7778617,-0.45193607,0.17761843,1.1656839,-0.41272208,-0.009404402,0.14977425,-0.2820926,-0.16038671,0.5084617,0.11296581,0.28538853,0.46910858,0.02321742,-0.6265862,0.6355801,-0.21085276,-0.10861328,-0.56273574,0.30364567,0.57943594,-0.8416102,0.3866919,0.5096934,0.04446446,-0.07869485,-0.7878091,-0.18524916,0.13886383,-0.24994276,0.31604502,0.33434618,-0.8319739,0.6185265,0.263757,-0.07392398,-0.97002834,0.0074207094,-0.032322966,-0.39467862,0.025329646,0.32755104,0.18207106,0.17060553,-0.34252375,0.0881884,-0.4536945,0.30749366,-0.017899714,-0.17622031,0.47592053,-0.4434239,-0.27525532,-0.7681507,-0.080589086,-0.53445846,-0.2865259,0.3453186,0.060028084,0.12322479,0.16410185,0.0882179,0.27760702,-0.34363043,0.06583108,-0.29987553,-0.21336064,0.37325615,0.4024695,0.207244,-0.5549729,0.6786762,-0.037373513,-0.091984384,-0.09474034,0.043653194,0.371203,0.15370086,0.5972602,-0.09726914,-0.17467394,0.20793557,0.87108266,0.12241921,0.36951384,0.24653032,-0.033494804,0.5450629,0.012645217,0.17893738,-0.10248419,-0.49048072,-0.11165815,-0.33286604,0.3189732,0.6006912,0.17094305,0.7229223,-0.06958098,0.09476423,0.10299547,0.1691096,0.06562522,-0.76087433,0.4468455,0.33551413,0.5309659,0.5782618,0.17901948,0.054352872,0.79468226,-0.43342793,0.17648576,0.2609057,-0.19475079,-0.25514358,0.710287,-0.7986857,0.28564554,-0.27341932,-0.012313281,0.15513614,0.0063415216,0.4453813,1.0473832,-0.14279245,0.0972279,-0.013863937,-0.38674262,-0.011300115,-0.14034213,-0.03654596,-0.44302866,-0.4017111,0.69108766,0.27508837,0.49734402,-0.33758357,-0.062106546,0.36076954,-0.030412756,0.17232227,0.109148756,0.049258754,-0.0820106,-0.37525484,-0.051196754,0.8350229,-0.015068054,0.24185163,0.20641294,-0.21912374,0.3925889,-0.12998685,-0.17942649,-0.14623497,-0.47854567,0.21221901,-0.3519891,-0.57677835,0.5826426,-0.0053728614,0.18581659,0.14602242,0.11753725,-0.22786936,0.46666738,0.060890444,0.8002915,0.0785705,-0.09678362,-0.034299836,0.006167054,0.17927216,-0.36286637,-0.09714831,-0.19307202,0.14966199,-0.81584686,0.3527202,-0.25860408,-0.37630442,0.15739194,-0.15501168,-0.0870796,0.44856754,-0.08266808,-0.05550025,0.068594545,-0.17294209,-0.40674523,-0.2332386,-0.20386201,0.19921468,-0.11817488,0.00029785818,-0.19324988,-0.0654263,-0.075372964,0.39454472,0.03217659,0.021548977,0.22614273,0.22572173,-0.4137099,0.22246951,0.18118554,0.66144526,-0.09629214,-0.016659755,-0.20654644,-0.21227019,-0.35749483,0.36119908,-0.14021425,0.17584863,0.048136625,-0.40078813,1.0712606,0.010619888,0.8689203,0.03548938,-0.26247686,0.11591336,0.5404507,0.16488358,0.19493955,-0.26875484,0.9416104,0.43566,-0.08431096,-0.11859703,-0.52081835,-0.13051948,0.45026547,-0.36834273,-0.10371472,-0.064212225,-0.7446481,-0.108604945,0.18562382,0.07801456,0.06589882,-0.32305983,0.15375704,0.12748027,0.19448665,0.17669916,-0.6500416,-0.03836246,0.35540062,0.29684114,-0.1525005,0.09956268,-0.35426092,0.43798226,-0.6956695,0.30432814,-0.24024627,-0.032369055,-0.058506165,0.01976846,0.25974935,0.03628883,0.17797302,-0.28923327,-0.27539554,-0.061350934,0.42874452,0.4416134,0.45211047,0.8612193,-0.25019747,-0.0064216396,-6.309839e-05,0.6194259,1.188527,-0.46602324,-0.24754861,0.32601345,-0.27131188,-0.81250703,0.15104939,-0.37836966,-0.17230909,0.031101497,-0.44673917,-0.26515344,0.25661343,0.15701869,0.005058949,0.08540474,-0.6569776,-0.0320146,0.18865493,-0.37377453,-0.21356465,-0.30044034,-0.029600987,0.76173884,-0.008761536,-0.23047444,0.019451784,0.1340034,-0.413926,-0.5670806,0.12470468,-0.5740529,0.18365607,0.21878503,-0.34081808,0.042729232,0.12224393,-0.71571213,0.048283935,0.24493894,-0.20560834,-0.022286724,-0.47717813,0.070647255,0.7930984,-0.06426359,0.13489524,-0.14982626,-0.6088431,-0.67852664,-0.35869974,0.2861172,0.0035015047,-0.029596861,-0.50323254,-0.14776573,-0.09886419,-0.34633234,0.07218075,-0.55926764,0.45707172,0.11894401,0.16335715,-0.15924686,-0.99506575,0.27524793,0.06951797,-0.28831017,-0.3933884,0.40970275,-0.3011613,0.9744914,0.113267645,-0.0937502,0.44796398,-0.8106635,0.38805625,-0.3659314,-0.30762962,-0.719068,-0.20757344 -177,0.6750282,-0.11934945,-0.6944818,-0.097313285,-0.467983,0.050199144,-0.23556766,0.382272,0.18191886,-0.47745654,-0.18621792,-0.087048024,0.027905231,0.24888201,-0.17617007,-0.8381139,0.18468593,0.3580955,-0.5950115,0.72379404,-0.3480723,0.35323763,0.02556471,0.29568288,0.24095544,0.31115043,0.14264615,-0.041777764,0.033897303,-0.10103798,-0.16708685,0.3822415,-0.47936282,0.28861982,-0.11113189,-0.5111182,-0.14073391,-0.22161447,-0.39390016,-0.7937349,0.28035945,-0.66635454,0.47070077,-0.089081906,-0.36030677,0.048451893,0.199051,0.4022445,-0.18727827,-0.011569897,0.029537467,-0.11867554,-0.3039587,-0.30668506,-0.18505211,-0.4885051,-0.5515201,-0.027272148,-0.5224788,0.080654144,-0.31402326,0.35112762,-0.2143553,0.07124947,0.0017984053,0.43508878,-0.36286482,0.01515784,0.1523062,-0.11849483,0.17789964,-0.49740577,-0.22307089,-0.08956297,0.19843963,-0.06038375,-0.4527358,0.2048172,0.1857096,0.40122467,0.0681139,-0.21098213,-0.45309192,-0.012284247,-0.013055956,0.57129174,-0.20436254,-0.45028564,-0.20755075,0.05073445,0.21008265,0.18172912,-0.07799268,-0.29477948,-0.059909582,-0.10599504,-0.22240189,0.4129985,0.54510415,-0.39830124,-0.16481875,0.38419285,0.6013806,0.050806325,-0.29412264,0.13116929,-0.08084569,-0.57293767,-0.17134318,0.03592368,-0.025280373,0.46585375,-0.11425663,0.26404187,0.57784855,-0.007067456,-0.29405642,0.20194301,0.11349134,-0.032119174,-0.2803811,-0.23094189,0.3958379,-0.46423173,0.06966703,-0.19029057,0.7190057,0.02948653,-0.8114446,0.3337464,-0.47723052,0.07313539,0.0032208508,0.42942157,0.6931947,0.43049905,0.16943371,0.8507591,-0.21823657,0.14146407,-0.11805908,-0.22436547,-0.20139958,-0.017054772,-0.13978367,-0.53779525,0.19740887,-0.011539452,-0.10375229,0.18647973,0.6449185,-0.64736146,-0.21180622,0.07262042,0.7189843,-0.42958555,-0.18171328,0.824781,0.90391546,1.0473412,0.08293751,0.9804868,0.2723069,-0.13953649,0.040794294,-0.35206527,-0.47191417,0.33770323,0.24948213,0.37731072,0.36340117,0.01584181,0.0012432617,0.5052449,-0.22893798,-0.17110541,-0.1236539,0.2173802,0.12826507,0.022263717,-0.59291303,-0.2304773,-0.029470257,0.18432659,0.22712235,0.20010827,-0.35318202,0.4062709,0.13181272,1.5919993,-0.037903976,-0.023257371,0.16612239,0.3362583,0.3433516,-0.14449275,-0.1961791,0.18982866,0.3287183,0.109621555,-0.51556945,0.007232624,-0.25803947,-0.46734267,-0.109168895,-0.2777129,-0.12151857,-0.23661451,-0.48717332,-0.2651584,0.059142716,-0.35819423,0.55254894,-2.5083673,-0.20221014,-0.15639156,0.3669679,-0.11686235,-0.38163295,-0.2586541,-0.40776607,0.38915753,0.33917585,0.45241702,-0.506187,0.5468126,0.33570364,-0.65316546,-0.037378,-0.5457787,-0.035881374,-0.029762253,0.43540654,0.06596744,-0.043521143,-0.0101330355,0.11306695,0.58083206,-0.3383402,0.027886951,0.31315303,0.28036246,-0.012401164,0.45170653,0.08366289,0.5408572,-0.29007092,-0.28489685,0.39080596,-0.36731452,0.107601374,0.02759288,0.15473804,0.44061947,-0.54622793,-1.0794321,-0.6321456,0.055786245,1.025497,-0.32679176,-0.4389899,0.19256476,-0.28574023,-0.2862146,0.051752485,0.2465551,-0.12917773,-0.011918404,-0.7706701,-0.02022452,-0.0003435261,0.17096102,-0.05956672,-0.087577045,-0.3900027,0.7471025,-0.12109793,0.58818465,0.26436448,0.32212862,-0.27028364,-0.53951323,0.01231014,0.99213856,0.28030905,0.10910916,-0.3198378,-0.298467,-0.29059258,0.063050255,0.21907221,0.6296008,0.61710775,0.017672721,0.08778291,0.22881494,-0.017349532,0.0984221,-0.21039282,-0.23412393,-0.17940441,0.075874135,0.78240997,0.61035013,-0.03566429,0.5921065,-0.0877738,0.39430547,-0.19194154,-0.59377587,0.399802,1.0915003,-0.23948254,-0.6127206,0.6057831,0.47067934,-0.14489047,0.29358414,-0.7139965,-0.36888638,0.3415684,-0.24793348,-0.22239985,0.24411367,-0.33027312,0.22769646,-0.9208172,0.17120905,-0.16233978,-0.7931008,-0.5633253,-0.2607501,-3.3004174,0.31028944,-0.04847638,-0.085694216,0.082113676,-0.25279027,0.17634624,-0.49441928,-0.50585115,0.047009476,0.09737743,0.8102297,0.013982848,0.098352626,-0.15192443,-0.3725978,-0.14045443,0.3683552,0.21075913,0.34553948,-0.012424418,-0.48636526,-0.004389588,-0.145845,-0.5161672,0.0018268719,-0.6560445,-0.5221736,-0.16312899,-0.65404063,-0.21249214,0.59491014,-0.4542459,0.15023845,-0.24155448,-0.035348922,0.084159836,0.16774286,-0.020221753,0.15343356,0.22131316,-0.089977436,0.18183184,-0.23899771,0.16623425,0.0014002516,0.14404237,0.20171583,-0.121295914,0.37707973,0.6188543,0.65809464,-0.076499805,0.93461007,0.527017,-0.05887866,0.23124276,-0.13707948,-0.34728214,-0.59587663,-0.27255952,-0.106897935,-0.49173665,-0.2578689,-0.09365713,-0.42698267,-0.78997374,0.6809146,-0.07939439,-0.048148442,-0.054668278,0.4024911,0.640749,-0.28214306,-0.124643974,-0.057027634,-0.2651738,-0.31513265,-0.3683008,-0.57100576,-0.52658755,-0.15973747,1.3931383,-0.20233317,0.01256968,-0.047708433,-0.0997929,-0.012197614,0.29391262,0.11475701,0.29228503,0.3749512,-0.31891525,-0.5922023,0.30248302,-0.4541426,-0.24331604,-0.49803632,0.28793073,0.5137492,-0.5629302,0.39312094,0.36260948,0.29478708,-0.03865385,-0.5477764,-0.073091164,0.13714974,-0.22570784,0.5562518,0.32625288,-0.71164715,0.5248331,0.24855204,-0.11313082,-0.80299664,0.58612996,-0.09256793,-0.4372429,-0.066566505,0.42257896,0.107878745,-0.12887825,-0.3936619,0.11435343,-0.25392076,0.17495628,0.22756653,-0.053670377,0.19595906,-0.38016245,-0.04389246,-0.83962977,-0.101668835,-0.42316788,-0.23555288,0.16749354,-0.10903067,0.093376085,0.049776867,-0.15631326,0.43764973,-0.34443328,0.029530259,-0.41396764,-0.26200673,0.38101944,0.45977622,0.3530521,-0.32570577,0.5445634,0.040841345,-0.043188564,-0.27987462,0.041817717,0.5303119,-0.17164506,0.5883836,-0.033046275,-0.09747776,0.19089603,0.66300863,0.22466733,0.47418427,0.031527787,-0.23265906,0.040854797,0.08699507,0.25795814,-0.040201068,-0.3275479,0.02716662,-0.21389179,0.18436363,0.632888,0.15547659,0.3618845,-0.09386895,-0.32877898,0.0546436,0.07002299,0.025163066,-1.6002897,0.43982735,0.20161837,0.7457571,0.4329139,0.15440764,-0.05102333,0.5654666,-0.15353146,0.12549134,0.25183025,-0.0717144,-0.18254821,0.38417011,-0.86545026,0.57134956,-0.061177626,0.065481044,0.07723371,-0.07992661,0.5213752,0.9948869,-0.13024962,0.15088747,0.048456453,-0.23589878,0.14400849,-0.27048886,-0.090365455,-0.64814156,-0.34584796,0.84645426,0.483956,0.5520437,-0.14130051,-0.07519175,0.15282103,-0.069818325,0.072236046,0.10106616,0.14651302,-0.053213723,-0.55580705,-0.20014659,0.47474524,0.056427564,0.11884901,0.2318572,-0.1632693,0.342294,0.09672241,-0.034432847,-0.09958099,-0.5846327,-0.104648076,-0.37645423,-0.39546862,0.4722915,-0.1819628,0.19470218,0.18421897,0.048836306,-0.36652094,0.31119224,0.13945952,0.83175665,0.24703121,-0.12412388,-0.26774496,0.15951586,0.24108213,-0.23450086,-0.08370457,-0.36664122,0.2103738,-0.83761716,0.30046555,0.02194775,-0.5117556,0.29503563,0.0236851,0.038825866,0.42332,-0.060690515,-0.21614741,0.08237687,0.015027414,-0.24681063,-0.16463745,-0.20234069,0.1763155,-0.04399537,-0.17763393,0.027847247,-0.03579331,0.025146011,0.5586394,0.062084835,0.42277184,0.41255102,0.24071538,-0.33731845,0.06461871,0.28366798,0.5566306,-0.19983695,-0.20508897,-0.28452048,-0.4088819,-0.37757066,0.12228974,-0.06358632,0.32430622,0.21107955,-0.20607835,0.83732474,-0.19526719,1.2866333,-0.011044033,-0.40689763,0.15909351,0.41999665,-0.08199673,0.031717617,-0.24026711,0.88398695,0.5418916,-0.1354625,-0.21212755,-0.32687673,-0.0134777585,0.056333333,-0.26702002,-0.19733323,-0.1069061,-0.5110377,-0.43148458,0.087418444,0.22373219,0.27118653,-0.18168579,0.07025967,0.2640321,-0.060686804,0.1783458,-0.41166744,0.053969454,0.26636323,0.35137963,-0.1072529,0.15373215,-0.49460232,0.34706816,-0.4693715,0.07418087,-0.38572693,0.2697982,-0.12932321,-0.27163774,0.344222,0.017278206,0.2625589,-0.29339847,-0.17895466,-0.3401223,0.5775619,0.13896684,-0.04577747,0.55999637,-0.1998285,-0.060500298,0.12848578,0.39168802,1.0039428,-0.508392,-0.09102813,0.3135399,-0.25897816,-0.45601922,0.16323459,-0.34247088,0.140576,0.070194304,-0.3044241,-0.5734238,0.37584767,0.1663043,0.07478244,0.08594797,-0.66190535,-0.07530291,0.2926476,-0.2338489,-0.057687152,-0.15845849,0.24089622,0.45519873,-0.16751367,-0.28615287,0.05956354,0.21941929,-0.14383046,-0.6342078,0.09178665,-0.42383453,0.37146956,0.13760395,-0.30826646,-0.18300529,0.000673266,-0.45559603,0.019050097,0.39824653,-0.2572846,0.08576749,-0.4591571,-0.046684224,0.9718423,-0.21031617,0.3610023,-0.5663333,-0.43276277,-0.97752035,-0.22449976,0.32604688,0.25704923,-0.02037166,-0.78394157,-0.06573828,-0.18380709,-0.48928973,-0.032934163,-0.40067554,0.4525006,0.13291356,0.4587331,-0.041000403,-1.029252,0.22967912,0.07468086,-0.4255361,-0.3946455,0.43460384,-0.059196137,0.7940896,0.14224315,0.27482185,0.35100228,-0.53267264,0.08384085,-0.14041881,-0.031796187,-0.7649687,-0.064042695 -178,0.39385068,-0.10714157,-0.38174176,-0.18121745,-0.24782827,-0.026306152,-0.25581583,0.31797,0.24197473,-0.20239575,-0.16503923,-0.052001797,0.124351524,0.36083138,-0.12134214,-0.7407823,-0.13956493,0.11925669,-0.5841744,0.50770736,-0.6311511,0.3760209,0.033385016,0.30691347,0.09478666,0.45450547,0.18691094,-0.08514642,0.053549826,-0.016140714,-0.16777962,0.38737538,-0.66336733,0.064810924,-0.09565315,-0.22720656,0.09854467,-0.43822598,-0.32604367,-0.68966997,0.10159208,-0.7734106,0.40710846,-0.1633124,-0.05284271,0.08582597,0.09894709,0.3426873,-0.40199637,0.07622319,0.17975864,-0.14223903,-0.12445974,-0.25537482,0.058062218,-0.3599195,-0.407929,-0.0752228,-0.51374555,-0.35381916,-0.22405711,0.11938601,-0.31611174,-0.030496262,-0.17176588,0.35608572,-0.40707442,0.06217155,0.38307962,-0.11753957,0.13150783,-0.52297986,0.07984224,-0.057621002,0.45698738,0.017288785,-0.13539186,0.39245096,0.29773927,0.37273696,0.26300538,-0.26162377,-0.13425067,-0.21625915,0.2153914,0.30096662,-0.077322535,-0.33455166,-0.16581222,0.09744208,0.11597777,0.338429,-0.020105703,-0.23268862,-0.12946221,-0.040219367,-0.34511262,0.53670347,0.53730094,-0.22231674,-0.35854694,0.29119366,0.51294816,0.3120085,-0.23918933,-0.028066859,0.02184045,-0.5022637,-0.17445989,0.07047701,-0.07484721,0.45693004,-0.18911497,0.13992497,0.85005236,-0.16534919,0.11784926,-0.13172892,-0.038865082,-0.08432665,-0.42633757,-0.08821714,0.023418015,-0.5326915,0.034137644,-0.18566093,0.75171053,0.15714991,-0.73710704,0.3897433,-0.5917036,0.13736692,-0.17616884,0.6258497,0.6855547,0.32274473,0.3456524,0.7292323,-0.33081022,0.19008036,-0.07142848,-0.5328164,0.10694036,-0.16423456,0.05840662,-0.452693,0.102142796,-0.17715597,0.16994691,0.005621871,0.21717392,-0.47842512,-0.15805823,0.13304377,0.80712897,-0.31480166,-0.101893276,0.5696721,1.0612018,0.8503853,0.04302743,1.178949,0.2974527,-0.15651754,0.1572234,-0.3411916,-0.717598,0.17156988,0.40859514,0.044502705,0.2419962,-0.032057233,0.03139061,0.30450982,-0.3101594,-0.05542825,0.00034837332,0.46809483,0.20492181,-0.15912779,-0.40589148,-0.17076986,-0.03186962,-0.1096801,0.1410526,0.23681456,-0.15646577,0.19579698,-0.014759788,1.4719542,0.046247065,0.055457313,0.08480126,0.6404851,0.4259497,-0.21559563,0.011036009,0.56659806,0.49157628,-0.043488264,-0.5848693,0.27564222,-0.30672935,-0.35102504,-0.12774572,-0.48602945,-0.006283015,0.16312581,-0.42289537,-0.01115229,-0.005908631,-0.040973436,0.44944072,-2.9292006,-0.24933973,-0.034466058,0.3635193,-0.3090964,-0.14695437,-0.011341587,-0.52529347,0.2735739,0.2755708,0.4789806,-0.5622092,0.58537406,0.56646234,-0.40625447,-0.13470662,-0.687235,-0.10000391,-0.060573846,0.52479243,-0.017849617,0.03879441,-0.1643309,0.10560919,0.56121683,0.021991696,0.10547607,0.44127542,0.3437656,0.16918866,0.6509329,-0.114090696,0.5496292,-0.19286548,-0.13711888,0.3028025,-0.23069933,0.27025366,-0.12511346,0.102207124,0.6182723,-0.29998186,-0.86912227,-0.49882483,-0.37715846,0.9846837,-0.44985116,-0.44783407,0.2723828,-0.18338102,-0.12383454,0.060218897,0.47428173,-0.09757383,-0.016395941,-0.61433756,0.29628706,-0.06356315,0.13291892,0.033869848,-0.076715566,-0.24923919,0.6618887,0.010907082,0.57626754,0.21380371,0.26049393,-0.08345345,-0.28612256,0.009338841,0.7392998,0.2707021,-0.024704115,-0.18953449,-0.3593313,-0.11419824,-0.060963638,-0.008263819,0.5444619,0.64019704,-0.07714319,0.14838041,0.34457794,-0.022402102,-0.016549187,-0.14524242,-0.20063463,0.03950972,-0.022252144,0.3977962,0.68669915,-0.2294994,0.37710458,-0.20521443,0.26114517,-0.09434654,-0.5676359,0.6786626,0.43350628,-0.18288621,-0.011424188,0.39152962,0.46766064,-0.3532009,0.42036763,-0.5886933,-0.05465384,0.7161277,-0.1660716,-0.2727749,0.17414548,-0.15567417,-0.02134446,-0.7632346,0.2582992,-0.3210749,-0.2633533,-0.38397002,-0.176822,-3.638474,0.13341998,-0.050371576,-0.104522385,-0.30659565,0.042272314,0.2992432,-0.59598655,-0.49258482,0.15403424,0.16976616,0.52812886,-0.060956568,0.087040484,-0.29236788,-0.13490504,-0.15730208,0.15096419,0.030959923,0.36374146,-0.13819714,-0.42362663,-0.10863258,-0.0019648997,-0.5395345,0.264501,-0.5004159,-0.36401004,-0.08091943,-0.44945335,-0.14671774,0.57024735,-0.34399647,-0.0041866517,-0.23434347,0.04837533,-0.32598993,0.118336596,0.14056756,0.26089737,0.124978185,-0.033352274,-0.007137336,-0.37769598,0.3440182,-0.00379794,0.44193622,0.08316855,0.15748657,-0.019316364,0.41295052,0.45898968,-0.15701741,0.9865588,0.33183596,-0.13436541,0.2888837,-0.28326467,-0.26626897,-0.5994781,-0.38652068,-0.16896151,-0.37899452,-0.47656277,-0.061481524,-0.30368656,-0.7073276,0.5370367,0.040093645,0.33788517,0.013277678,0.26587784,0.42448798,-0.12920043,0.049204655,0.055785812,-0.18703018,-0.5696207,-0.2476333,-0.6616583,-0.39811805,0.1614135,0.5842054,-0.35926828,-0.07309313,-0.35301,-0.22424597,-0.07396396,-0.033952944,0.14022318,0.41273025,0.38697818,-0.039420534,-0.5679,0.48369434,-0.16394672,-0.096733816,-0.47628137,-0.030981354,0.6407105,-0.6846578,0.6346964,0.23174429,-0.0112088695,0.03859146,-0.55264044,-0.305588,0.005284246,-0.23747046,0.5221475,0.12255695,-0.9522178,0.53488714,0.17601866,-0.38810727,-0.69220644,0.3847247,-0.08771902,-0.3008663,-0.06604268,0.20616384,0.21325299,0.047272965,-0.22847506,0.2832656,-0.43380412,0.17804018,0.23206127,-0.11901116,0.3119435,-0.07427871,-0.15574399,-0.6496553,-0.06407824,-0.4498516,-0.2023184,0.24923462,-0.10685015,-0.035081223,0.095934354,0.15935278,0.3057553,-0.21521631,0.2126407,0.18496911,-0.27222466,0.30921426,0.47476506,0.37849048,-0.3455287,0.4381624,0.15143046,-0.15171573,0.18389279,0.20304525,0.3607036,-0.01120634,0.3198046,-0.1316557,-0.086001545,0.35738423,0.82677966,0.18145998,0.47562003,0.003446333,-0.17629471,0.51627916,-0.003446971,0.13837662,0.10034998,-0.47080043,-0.051475663,0.06904213,0.24544024,0.5689274,0.32325447,0.23260711,0.09199186,-0.20381086,0.029619023,0.2990749,-0.051880702,-1.0698454,0.39074033,0.2783187,0.8894993,0.37207055,0.045935094,-0.12276353,0.60839933,-0.20793585,0.2257141,0.45446438,-0.049424827,-0.51834196,0.73786354,-0.5343477,0.37166658,-0.10888487,-0.056154273,0.17726928,0.10787493,0.40709198,0.73841727,-0.24881813,0.043173894,0.029002966,-0.16656516,0.107969865,-0.34215605,-0.0009904262,-0.32865766,-0.33633548,0.5498065,0.42888713,0.23221049,-0.30343905,-0.04296803,0.1264384,-0.11320316,-0.0057161823,-0.074487045,-0.110198855,0.17879252,-0.4383604,-0.30082893,0.59656596,-0.12139099,0.1347172,-0.2527741,-0.21350949,0.19833171,-0.15105437,-0.09332726,-0.025505017,-0.6459791,0.035701364,-0.13680431,-0.4940435,0.47103938,-0.24900545,0.097238526,0.12198035,-0.023731466,-0.19969511,0.3693343,0.09560068,0.67274344,-0.18890724,-0.1929138,-0.37649757,-0.015474647,0.1960327,-0.24769014,0.06279299,-0.5396287,-0.05050318,-0.5130922,0.4019824,-0.11329107,-0.35170615,0.15401708,-0.17430755,-0.003514655,0.55696493,0.03743184,-0.17042914,-0.06937273,-0.1795292,-0.38840792,-0.095307,-0.22667557,0.3176,0.30494893,-0.082595356,-0.10440011,-0.28782585,-0.11765044,0.50342834,0.05234071,0.40992558,0.10546024,0.022085473,0.0016430151,-0.10988026,0.2877504,0.3634001,0.0971439,0.00060646236,-0.24854635,-0.30449924,-0.3098219,0.1806862,-0.12762704,0.26691407,0.05559051,-0.4169096,0.8350407,0.005611576,1.0657437,0.032514058,-0.3335838,0.10440986,0.4059052,-0.0762108,0.08408756,-0.33349216,0.79039717,0.46086523,-0.015747644,-0.0051769763,-0.47325355,-0.1132069,0.23568681,-0.27518162,-0.021940913,-0.032234777,-0.50023973,-0.2822032,0.27302247,0.22606802,0.06764852,-0.052539162,-0.18642485,0.07038021,0.1555348,0.40848854,-0.5444143,-0.23700267,0.11623593,0.13768412,-0.04301214,0.097393,-0.4569815,0.47097808,-0.61854863,0.15964073,-0.44736677,0.20120162,-0.28257528,-0.21210639,0.16343905,-0.16049536,0.40157086,-0.33430728,-0.4844693,-0.2185291,0.33815745,0.07259747,0.17660408,0.5564069,-0.19499828,0.11392373,0.13175032,0.571385,1.117706,-0.37681365,-0.01762602,0.2684644,-0.46177202,-0.65996945,0.22793959,-0.31589904,-0.05731357,-0.053513184,-0.3994097,-0.3242572,0.15529476,0.030962396,0.13915214,0.09682813,-0.5418559,-0.18244156,0.3454087,-0.28072882,-0.2164483,-0.14576471,0.27518636,0.8665583,-0.31113183,-0.39360443,0.06632649,0.20156825,-0.2547205,-0.438413,-0.18581122,-0.16355199,0.3178021,0.02660647,-0.19273254,-0.06591134,0.22261228,-0.4193833,0.17808592,0.21857858,-0.38386247,0.09956224,-0.04101146,-0.1280671,0.9764198,-0.28811577,-0.08461932,-0.6595442,-0.5890075,-0.81555223,-0.5236862,0.29798114,0.17391449,0.012809802,-0.33527127,0.12368486,-0.06796552,-0.12641388,0.034867294,-0.5441429,0.33737445,0.10647033,0.36894602,-0.16432966,-0.9830928,-0.009915493,0.06506132,-0.22087848,-0.731144,0.70224786,-0.2730068,0.79021,0.013748303,0.012061663,-0.06272748,-0.25369778,0.07088229,-0.3763544,-0.13922353,-0.7387499,0.19242509 -179,0.46526024,-0.10481372,-0.71177715,-0.046052556,-0.26146457,0.029456714,-0.2735314,0.44125322,0.21798266,-0.49189302,-0.25958654,-0.024236897,0.11190814,0.37681136,0.0036306356,-0.8114589,0.15892231,0.3791504,-0.8043983,0.7564063,-0.37908974,0.22199988,0.020912835,0.39447775,0.06344831,0.20031059,-0.03174932,-0.06930982,0.14516364,-0.17971706,-0.16759805,0.23538756,-0.7618173,0.22217107,-0.09826886,-0.5976341,-0.28227186,-0.30847517,-0.32631043,-0.9057136,0.21899374,-0.7648395,0.52908295,0.0045689493,-0.40218243,-0.15207994,-0.0394627,0.5456527,-0.031703208,-0.10335964,0.030483821,-0.16490665,-0.30098835,-0.24103896,-0.07585975,-0.34270218,-0.57129,-0.06174771,-0.5284092,-0.0572356,-0.22106583,0.20680487,-0.36712468,0.095334016,-0.19986981,0.66548413,-0.21097188,0.29613447,0.22770423,-0.090204895,0.30301425,-0.39237666,-0.07276901,-0.11420349,0.42748213,-0.22349228,-0.5438439,0.115287624,0.2660375,0.5121419,-0.04128426,-0.20115697,-0.14508495,-0.031697918,0.12884033,0.4411415,-0.029440517,-0.67626554,-0.18543983,0.11465288,0.16022146,0.13185282,0.09813007,-0.35549733,-0.09946587,0.008332382,-0.19703937,0.63197273,0.40549028,-0.2882612,-0.22466843,0.28594056,0.74962616,0.15790729,-0.14202292,0.021537656,0.090378255,-0.58440465,-0.16116515,0.026665194,-0.231396,0.60596204,-0.24042617,0.30862185,0.4942919,-0.014263536,-0.41434002,0.26746723,-0.069252655,-0.0057716616,-0.13623068,-0.24550712,0.37074265,-0.65571946,0.22728945,-0.3173647,0.75935644,0.28410688,-0.7229295,0.415094,-0.7480752,0.177157,-0.04354235,0.59629774,0.850063,0.42014384,0.17424488,0.63775235,-0.25843358,0.1050364,-0.09268608,-0.41752017,-0.005612632,-0.13118646,-0.0478871,-0.45765767,-0.027205685,-0.17983426,-0.19313848,0.042180512,0.36789897,-0.6819258,-0.2905454,-0.006425157,0.6296256,-0.23552148,-0.30274352,0.8670008,1.0161601,1.0549711,0.13276118,1.1206251,0.20300563,-0.2815005,0.10316757,-0.11989081,-0.7302358,0.35354447,0.16291988,-0.28472412,0.5108763,-0.050838154,-0.016598016,0.5099559,-0.2940702,-0.052216858,-0.07519085,0.28217116,0.07517723,-0.117410906,-0.31612512,-0.26256922,-0.08567048,0.03321133,0.21291459,0.35443756,-0.2011979,0.57743853,0.23582228,1.4268316,-0.00417191,-0.04427595,0.009366319,0.2470376,0.27106252,-0.3352224,-0.28603527,0.19809544,0.2949091,0.18408765,-0.69296473,0.14943841,-0.28363314,-0.2806538,-0.13173817,-0.26227084,0.010159105,-0.22511892,-0.36175823,-0.16967453,-0.22783864,-0.22824521,0.47373033,-2.4469976,-0.33810285,-0.16310911,0.3899761,-0.24635749,-0.41020086,-0.100257985,-0.529624,0.18933542,0.14900838,0.51453507,-0.7719726,0.5514547,0.4003164,-0.6815138,-0.027844643,-0.6735181,-0.09531832,0.072405614,0.200563,-0.08808436,-0.11266915,0.04120817,0.08794654,0.40217158,-0.18193795,0.0042361417,0.40848264,0.44057858,0.04157943,0.53273517,-0.09463247,0.60281664,-0.35871628,-0.13921948,0.37924543,-0.38826004,0.21859825,-0.023641964,0.015497242,0.50072575,-0.4470855,-0.887667,-0.7713242,-0.2698163,1.1419467,-0.31044662,-0.39670172,0.07823109,-0.42175627,-0.21856578,-0.11625614,0.6067843,-0.02189981,-0.12001046,-0.797142,-0.03895506,0.007006028,0.3982123,-0.03196756,-0.005963554,-0.4456607,0.53771836,-0.032951403,0.48376015,0.33041573,0.16162999,-0.36547676,-0.6202436,0.11880747,1.0151826,0.16129836,0.16239238,-0.36621404,-0.26612154,-0.5297501,0.24483971,0.05112366,0.88314945,0.6573319,-0.21862541,0.13044801,0.44008422,-0.020774746,0.09260581,-0.18440783,-0.2745746,-0.17736156,-0.0059509575,0.69178295,0.7319427,-0.21854465,0.5244429,0.024147466,0.23781954,-0.21050338,-0.4493651,0.5013465,1.3078898,-0.29339576,-0.49277148,0.4987056,0.27341595,-0.2913215,0.47288355,-0.5429666,-0.31946206,0.4793038,-0.08484754,-0.32058707,0.2308994,-0.26426995,0.38131145,-0.97504765,0.2821213,-0.6355748,-0.7018935,-0.59594905,0.12681764,-3.1267605,0.40948305,-0.07536234,-0.06598147,-0.26243368,-0.18465354,0.15603687,-0.45371556,-0.7844908,0.194139,0.118302524,0.9252983,-0.19645691,0.13969937,-0.2585276,-0.46398512,-0.26683053,0.33784142,0.40555882,0.26999742,0.010855014,-0.42420825,-0.19040783,-0.18024635,-0.2321822,0.09361428,-0.721672,-0.49347767,-0.057893794,-0.7187957,-0.26625526,0.6843152,-0.4177285,0.026235553,-0.18989389,-0.009900041,0.03271465,0.3299698,0.016481047,0.031563506,0.22399385,-0.089688994,-0.03714302,-0.280926,0.10388622,-0.0101104565,0.38275537,0.06272728,-0.09247569,0.50981784,0.63661975,0.9249816,0.17615835,0.93382406,0.5263319,0.001859804,0.24602258,-0.28775814,-0.42257372,-0.44458926,-0.0054316274,0.00860472,-0.37907466,-0.2934245,0.008467868,-0.26071557,-0.8620227,0.5088406,-0.050957758,0.040512115,0.089143336,0.51936144,0.6801889,-0.2329963,-0.0037977844,-0.13483706,-0.21078604,-0.50593585,-0.27430412,-0.55670685,-0.46480462,0.11377982,1.034759,-0.2623699,0.18383217,-0.0464434,-0.20318872,0.021571085,0.4957702,0.037856977,0.14544447,0.6750049,-0.27336404,-0.62466556,0.296602,-0.20659073,-0.22914977,-0.578095,0.3946974,0.62034196,-0.72839546,0.4858879,0.22471404,-0.07923932,-0.21455626,-0.47177896,-0.08159083,0.17523086,-0.24680783,0.26440942,0.36935103,-0.74976844,0.26711494,0.3558009,-0.09695309,-0.69919974,0.6185649,0.08584396,-0.33353844,-0.23707883,0.46354762,0.03406107,0.041039452,-0.26011726,0.08358052,-0.34153327,0.08861118,0.115855336,-0.21821487,-0.12472149,-0.077465184,-0.042151403,-0.8968468,0.21918112,-0.5862486,-0.25297946,0.31917554,0.09015735,0.3408803,0.1956956,0.21164508,0.32610175,-0.22035588,-0.014002991,-0.33328828,-0.3814318,0.29421586,0.5942799,0.2985105,-0.47245297,0.65467864,0.20896192,0.11202342,-0.010172267,-0.012199382,0.43077445,-0.110305704,0.66069,0.25266197,-0.25503492,0.06553282,0.659825,0.3147097,0.47484946,-0.04552229,0.21758161,0.14340676,0.12153002,0.35429308,-0.044232886,-0.4899923,0.038020123,-0.21707623,0.118040465,0.69867283,0.07442672,0.23699784,-0.059510496,-0.52250016,-0.06762403,0.17063372,-0.084407784,-1.5502354,0.52828234,0.41226813,0.82570815,0.45818806,0.113941275,0.08139986,0.58991444,-0.19905277,0.29546326,0.4111463,-0.03417312,-0.2617655,0.57131726,-0.86704665,0.6092772,0.08344459,0.011217372,0.049509782,-0.31190315,0.26678023,1.0392841,-0.29207304,0.0786651,-0.03797512,-0.21927553,0.10400933,-0.4633427,-0.0001634856,-0.69708616,-0.31700584,0.80507225,0.55828375,0.38741872,-0.4467866,0.056146603,0.19164948,-0.089752935,0.23032613,-0.063810594,0.110805415,-0.07536635,-0.5047119,-0.07022546,0.56013924,-0.19028479,0.12899579,0.16641134,-0.10801277,0.39635512,0.054026794,-0.11865141,-0.20998168,-0.7489888,0.012323543,-0.4138225,-0.26024136,0.56370866,-0.20886476,0.15955047,0.23774637,0.17272943,-0.41772154,0.5456336,-0.011795759,0.60491025,0.27335986,-0.23282313,-0.18471797,0.24658705,0.14593394,-0.2557363,-0.12605439,-0.3529676,0.011375765,-0.5896317,0.38993326,0.14722136,-0.3976719,-0.0066906177,0.030737877,0.087294884,0.43167904,-0.19630384,-0.20396905,0.08319486,-0.086887725,-0.22023277,-0.2149119,-0.103929244,0.22128558,0.28681722,-0.17685252,-0.1125665,-0.08734276,-0.16655317,0.3837599,-0.0854638,0.42235613,0.40273538,0.21638398,-0.21946728,-0.10457554,0.2499965,0.47204876,0.073462084,-0.24633378,-0.26550332,-0.29222143,-0.44886145,0.24654841,-0.093488194,0.52037907,0.017089054,-0.30261973,0.6536096,0.013234821,1.2129812,-0.12028509,-0.35240087,0.08680582,0.47092423,-0.00392036,-0.13295819,-0.37923825,0.96069884,0.25317892,-0.13035204,-0.10660389,-0.32883728,-0.07151029,-0.0092332065,-0.26701722,-0.1609063,0.12399858,-0.45565256,-0.12229558,0.18946165,0.31189904,0.26189607,-0.14387663,0.051144768,0.3631954,-0.10615774,0.17686212,-0.35465422,0.0045441785,0.3106254,0.29336682,-0.053047825,0.15947758,-0.38977924,0.35523042,-0.5780879,0.09207804,-0.40534282,0.19952528,-0.14657404,-0.50260776,0.36599696,0.24887562,0.2835373,-0.34401277,-0.29280055,-0.4005561,0.51680505,0.19554596,0.1838869,0.7137776,-0.15628235,-0.0047317743,0.16731162,0.4438084,0.77170676,-0.2530653,-0.22770219,0.27234823,-0.43002912,-0.5787859,0.33300653,-0.4181926,0.30896792,0.1624891,-0.18505462,-0.64667326,0.25742546,0.07733663,0.20745201,0.096677266,-0.86859304,-0.1895351,0.1396811,-0.4535904,-0.08440897,-0.39831933,0.17083894,0.4974769,-0.11379719,-0.22424895,0.08438128,0.13094518,-0.18302162,-0.5872584,-0.10920618,-0.53717685,0.18470268,0.057401,-0.4344945,-0.19404872,0.24886443,-0.5608223,0.17456193,0.23162986,-0.36480844,0.14222644,-0.2972339,-0.19370157,1.0110329,-0.38720348,0.12043377,-0.29626903,-0.5542506,-0.6433751,-0.2037164,0.3180947,0.08069525,-0.03929959,-0.8662403,-0.12224261,-0.12700212,-0.3255043,-0.04336043,-0.39634335,0.41368282,0.18189304,0.40418682,0.05094965,-1.0464166,0.2237951,0.12107518,-0.21254426,-0.6102149,0.28332207,-0.07143802,0.935198,0.069349065,0.2823988,0.44594812,-0.6480705,-0.08620707,-0.15031956,0.15762644,-0.685543,-0.055381328 -180,0.38648814,-0.47794646,-0.4301028,-0.22897682,-0.08732462,-0.072175615,0.011699328,0.82679725,0.22606984,-0.45549777,-0.24548383,-0.17564131,0.1336146,0.5350126,-0.16400361,-0.45648143,-0.105953574,0.29263514,-0.44550857,0.49942666,-0.41571036,0.003631635,-0.017043026,0.425837,0.2899213,0.16656703,0.23149873,0.0025774078,-0.06564326,-0.020790135,-0.24122621,0.21973683,-0.17024425,0.2511921,-0.028566653,-0.3420923,-0.013419761,-0.696862,-0.2644649,-0.8075228,0.4126477,-0.90771824,0.5049741,-0.015041059,-0.32417694,0.2985281,0.28587356,0.3416053,-0.31408307,-0.1664796,0.10534751,0.056603257,-0.1083133,-0.07044775,-0.16798206,-0.2985052,-0.6391466,-0.0859339,-0.13843222,-0.29200056,-0.26360682,0.1418551,-0.35393512,0.062076222,-0.0017351833,0.75801885,-0.3742036,-0.08758329,0.17709488,-0.23042928,0.2839733,-0.5902565,-0.119038254,-0.09535146,0.26582265,0.020263577,-0.27420276,0.19832917,0.3620909,0.36411887,-0.015766121,-0.17688006,-0.37785834,-0.079970434,-0.0706656,0.48899472,-0.17310871,-0.72667974,-0.18335861,-0.022723041,0.099636085,0.28334147,0.19788495,-0.20736875,0.03410016,0.12891102,-0.28651282,0.42036387,0.35866582,-0.37789953,-0.28377977,0.35511413,0.61099803,0.105849005,-0.07965367,-0.16658813,-0.023302251,-0.57766074,-0.1442617,0.009874896,-0.40837747,0.51421404,-0.20794812,0.37474182,0.5946305,-0.10071747,-0.13866316,0.018188309,0.13833077,-0.23545514,-0.453765,-0.44824123,0.34586582,-0.37539312,0.16835906,-0.033004913,0.6954648,0.16127141,-0.5178895,0.47129232,-0.5663446,0.16017853,-0.24999975,0.3530703,0.61352026,0.38513085,0.4264719,0.61401767,-0.35119975,-0.050239448,-0.04966966,-0.30490074,-0.16269115,-0.22046779,0.2492817,-0.60774285,0.20994519,0.0014489226,-0.10088008,0.13706201,0.33081836,-0.6191813,-0.17364107,0.24682221,0.7751216,-0.27804527,-0.19743334,0.88676965,0.9600922,1.1560607,0.06355346,1.0724416,0.2750897,-0.2614914,0.3128436,-0.27048293,-0.7045474,0.39823225,0.5552044,-0.1652696,0.12463599,0.030518442,0.049932145,0.60401696,-0.41356736,0.012836709,-0.14595847,0.11641414,0.20008983,-0.12571722,-0.67657304,-0.2639813,-0.10689266,0.04366492,0.12907173,0.21755533,-0.1357755,0.4104171,-0.05309731,1.6672158,-0.0343256,0.14481498,0.0955757,0.45624483,0.11800515,-0.109110005,-0.021030473,0.30054152,0.2804987,0.07598143,-0.5528073,0.22214542,-0.2837064,-0.36115193,-0.0836521,-0.32651404,0.00363215,-0.014777232,-0.36256817,-0.22388326,-0.22506122,-0.34347108,0.3868637,-2.8061078,-0.35872346,-0.23333463,0.294803,-0.2398656,-0.3860074,-0.019962223,-0.57886636,0.41255778,0.31367347,0.63147986,-0.62338746,0.3522338,0.29524133,-0.7013129,-0.11133935,-0.67484605,-0.12757283,-0.043249175,0.32232893,0.04316244,-0.037240256,0.03376685,0.15522914,0.52107644,0.12039568,0.16439304,0.35636255,0.3732237,-0.058004234,0.6415004,-0.18888734,0.55846786,-0.41758996,-0.24144012,0.17491859,-0.30304268,0.10611519,-0.1961987,0.11667256,0.5395553,-0.5147736,-0.9660746,-0.642073,-0.1278071,1.2796607,-0.2281344,-0.31530172,0.35421476,-0.48402917,-0.27599755,-0.20882273,0.43206042,-0.15656473,-0.08814626,-0.75716746,0.16478826,-0.030704623,0.01755293,-0.03706939,-0.15930837,-0.47092608,0.7033856,-0.13942929,0.54768974,0.29103482,0.12344053,-0.41291082,-0.29024336,-0.07340577,0.7517977,0.4051816,0.028118832,0.041836318,-0.10348816,-0.40208519,-0.13475123,0.05452266,0.48800424,0.6970162,-0.03376896,0.039532814,0.31186298,-0.020656187,0.11953092,-0.14138038,-0.28946185,-0.11034057,0.06701848,0.5579833,0.5186136,-0.26806608,0.5946982,-0.10368195,0.32479098,-0.09170079,-0.44887865,0.3811898,0.98871344,-0.2355894,-0.3872343,0.70122266,0.39534804,-0.3014254,0.3913867,-0.4832427,-0.17749485,0.45586732,-0.230313,-0.49934128,0.014111492,-0.20406985,0.14980358,-0.8399438,0.23233809,-0.26230004,-0.5136802,-0.4904622,-0.07612188,-3.6411965,0.29838163,-0.30697262,-0.15989512,0.009280183,-0.22464271,-0.003999908,-0.71701545,-0.71133935,0.27484262,0.06994589,0.7180769,-0.1287779,-0.0065366165,-0.17450081,-0.2568513,-0.1417666,0.06793043,-0.099542506,0.40796435,0.0895148,-0.5447204,0.059749473,0.081868194,-0.61684674,0.10657313,-0.8055517,-0.3953479,-0.109363936,-0.7249378,-0.44178838,0.6456439,-0.17925407,0.112293795,-0.17401594,0.123072356,-0.08453545,0.31330097,-0.15137886,0.14773689,0.060744416,-0.047039095,0.21940193,-0.14047603,0.22788233,0.0068306597,0.28127462,0.113863185,-0.11511138,0.3734935,0.67004484,0.82006836,0.051543485,0.85450417,0.58186984,-0.117752284,0.12689087,-0.21681276,-0.19284798,-0.37151182,-0.32454762,0.11625449,-0.43284446,-0.51127535,-0.09453039,-0.2982295,-0.6980384,0.6847732,0.17135082,0.38404778,0.0589022,0.14446686,0.6731231,-0.26623887,0.0604653,0.075327225,-0.18230034,-0.65201545,-0.13184398,-0.60899836,-0.44118282,0.22463487,0.9078058,-0.3113501,0.19229755,-0.0656834,-0.3445678,0.025158552,0.22357579,-0.017857598,0.28518653,0.3464537,-0.3742467,-0.671278,0.32061604,-0.13502182,-0.15569897,-0.43541232,0.31285077,0.5753605,-0.516089,0.6435308,0.2695947,-0.079352774,-0.54906696,-0.40105665,-0.259188,0.023487367,-0.1523048,0.44996214,0.23847857,-0.842433,0.39162856,0.467348,-0.2604238,-0.8142653,0.5024649,-0.14568323,-0.264904,-0.20222425,0.39758292,0.3287762,0.027902288,-0.27118248,0.17759962,-0.3698199,0.2415267,0.107329845,0.0019567609,0.41253427,-0.25200298,0.11090413,-0.8329124,-0.07992964,-0.68344074,-0.16218413,0.34861532,0.09808937,0.12394354,0.17520937,-0.11120088,0.31689948,-0.28839406,0.052932885,-0.022373639,-0.36209556,0.28903544,0.41125298,0.35331622,-0.41139212,0.59878176,0.05571337,-0.014616597,-0.14600791,-0.10476789,0.342911,0.1856658,0.51576686,-0.2201229,-0.38306996,0.33995023,0.6784044,0.13749015,0.30161402,0.027343668,-0.06443724,0.060941923,0.028530417,0.19264413,-0.0822958,-0.6120075,0.09341062,-0.29961634,0.16080171,0.5597241,0.14394389,0.2469237,-0.066679195,-0.4320514,0.04641296,0.06365546,0.017530657,-1.2884291,0.51809263,0.07193765,0.9365385,0.4330863,-0.0054040225,-0.16252142,0.729508,-0.12381942,0.21263704,0.39232433,-0.11798254,-0.49582207,0.62910414,-0.74387187,0.48979455,0.017576767,-0.01749056,-0.13431941,0.1260743,0.39495313,0.6076934,-0.25598508,-0.040360793,-0.033791926,-0.32235858,0.4254382,-0.4788231,-0.03576428,-0.7702717,-0.25270745,0.43687403,0.59394735,0.3734368,-0.15962797,-0.0011092763,0.13934514,-0.04385751,0.14116801,0.063280605,0.13132757,-0.043779906,-0.8614204,-0.1335772,0.4799874,0.3477787,0.35336563,-0.09978189,-0.23486476,0.2175348,-0.087272264,-0.057505056,-0.05065479,-0.64107156,-0.06893987,-0.21732482,-0.45773304,0.47571504,-0.0796838,0.23384666,0.16255356,0.092250586,-0.17177223,0.1845571,0.01927172,0.8703673,-0.048239633,-0.08081058,-0.30785733,0.12302636,-0.038005717,-0.05816902,0.22931914,-0.3767997,-0.08794483,-0.6372779,0.61516553,0.1621789,-0.4212164,0.0930254,-0.14430052,0.08582742,0.576897,-0.14309303,-0.052571937,-0.40359947,-0.17310631,-0.16102672,-0.42024377,-0.03503295,0.391119,0.087824315,0.26765665,-0.21103293,-0.11978791,-0.22830473,0.58875555,0.01145811,0.25354552,0.30888107,0.01852327,-0.15330099,-0.043081786,0.09532061,0.3644909,0.0276824,-0.41641057,-0.2589257,-0.3953107,-0.3082073,-0.0036342687,-0.0030865846,0.45845768,0.065863445,-0.16748463,0.5648462,-0.11916609,1.2646127,0.008697971,-0.4563349,-0.044674363,0.538011,0.07069181,-0.119796365,-0.14885336,0.7319426,0.5327281,0.0074380417,-0.084094375,-0.528758,0.028335083,0.39383334,-0.16142477,-0.12972735,0.07055918,-0.5523842,-0.40912744,0.21320143,0.14623408,0.3966099,-0.112306,0.22274445,0.49590242,-0.02025,0.3724395,-0.29934275,-0.1542636,0.29453078,0.38146222,-0.045562256,0.17106475,-0.48519287,0.2853425,-0.51614,0.2985117,-0.26777637,0.25135478,-0.40110132,-0.23409237,0.22747716,0.09961358,0.33462995,-0.13134359,-0.48429307,0.044415805,0.53238386,0.1249779,-0.040558454,0.48190382,-0.26412895,-0.060457934,0.20835209,0.41247645,0.8972349,-0.17459911,0.045376554,0.28400844,-0.34141913,-0.7307173,0.48793203,-0.03316057,0.26926118,0.1369372,0.03512049,-0.6630763,0.3032458,0.30491602,-0.12618564,-0.049718462,-0.43300742,-0.20439391,0.25475904,-0.32007855,-0.09332605,-0.3366429,0.14992231,0.3038497,-0.38020316,-0.32696843,0.02081769,0.20533237,0.0032725146,-0.47801095,-0.1663899,-0.44071484,0.3595751,0.06652158,-0.4496482,-0.18714601,-0.055157878,-0.45520505,0.14876775,-0.0362563,-0.2907248,0.24103568,-0.32258508,-0.20900078,0.99481124,-0.13100375,0.26578003,-0.41198432,-0.34995115,-0.849884,-0.3311228,0.53037494,-0.09935117,-0.00092380156,-0.7298813,0.06197153,0.018738683,-0.15203848,-0.11737456,-0.19388643,0.44414118,0.09932547,0.4704198,-0.0023498968,-0.65506613,0.11936179,0.07330071,0.032111134,-0.42660075,0.5283752,0.012511429,0.9079874,-0.026888313,0.075804435,0.26745847,-0.28699255,-0.19604011,-0.19404195,-0.3404442,-0.4847904,-0.03922293 -181,0.4732054,-0.075510584,-0.4607168,-0.26844698,-0.44428417,0.13926691,-0.17077413,0.24717188,0.3959371,-0.22229056,0.027085708,-0.055393465,-0.19411364,0.23730777,-0.030224644,-0.6551951,-0.035917155,-0.007412064,-0.79711795,0.45700115,-0.42299965,0.41057083,0.057454612,0.30331382,0.17437772,0.28857628,0.058740366,0.019486971,0.112981014,0.06757509,0.09371099,0.3210283,-0.7026338,0.26321426,0.05790925,-0.11870844,-0.11338169,-0.3032311,-0.31038317,-0.67072886,0.34624034,-0.6842243,0.5120582,-0.07345327,-0.3310868,0.1104925,0.0005040089,0.3023867,-0.38938624,0.0191774,0.28424028,-0.05989384,-0.119057454,-0.093920015,-0.07684286,-0.43597755,-0.42503273,-0.12274094,-0.5553926,-0.12924296,-0.38128132,0.20788552,-0.27271375,-0.08405161,-0.30314937,0.43452695,-0.39281464,-0.00069918635,0.16229422,-0.15933631,0.1286998,-0.5655378,-0.11622871,-0.09657214,0.29641932,0.09976776,-0.30727303,0.23977229,0.3458826,0.5534227,0.05302052,-0.2631787,-0.255056,-0.016647879,0.14519699,0.20355208,-0.07296237,-0.12658504,-0.22259238,-0.095224224,0.31313473,0.21770784,0.107161306,-0.4896828,0.0033560276,0.0050564865,-0.28329647,0.41966206,0.4126428,-0.44252464,-0.20212382,0.45510846,0.32639295,0.23324199,-0.22583394,0.336695,-0.09408423,-0.57915264,-0.17259793,0.20555124,-0.14154945,0.29313558,-0.19996853,0.07934256,0.78645843,-0.11961194,-0.021767247,-0.010116597,-0.08358463,-0.016274877,-0.25053352,-0.117530584,0.021423062,-0.5176666,0.038439807,-0.13894735,0.56552625,0.11529258,-0.7769191,0.19098881,-0.60479164,0.23041327,-0.16702005,0.65533614,1.0183353,0.50632566,0.082664095,0.834244,-0.5097626,0.019548703,-0.111921184,-0.3408666,0.31825367,-0.16477133,0.13293327,-0.5082964,-0.041831907,-0.01075511,-0.11935544,-0.057993457,0.23474184,-0.4182954,-0.09821767,-0.06326094,0.60368174,-0.30754852,0.020022018,0.757014,1.0214295,0.9640621,0.20411777,1.1959004,0.3506099,-0.14015785,0.16934615,-0.28075287,-0.47014865,0.15316923,0.20027876,0.3456233,0.20455927,0.087886326,0.14646003,0.430039,-0.37532791,0.086323455,-0.09558348,0.31312785,0.08142961,-0.117259376,-0.15891102,-0.24509929,0.2571209,0.1648806,-0.033589743,0.25500488,-0.20437129,0.3081872,0.19531849,1.206587,0.092138454,0.052481286,0.007756313,0.3809496,0.13606714,-0.25469452,0.0397421,0.19632544,0.43716323,-0.109441064,-0.6266482,0.08975767,-0.12543185,-0.33406022,-0.12114192,-0.38724157,-0.118581325,-0.18151289,-0.5167182,-0.15085433,0.07926633,-0.2977382,0.48034906,-2.6719716,-0.07813383,-0.21307598,0.22282399,-0.2092984,-0.32091287,-0.13792743,-0.40294966,0.15504669,0.44000873,0.2950353,-0.71368,0.55396515,0.34896216,-0.5828665,0.010346015,-0.6204354,-0.26494896,0.014286097,0.36986175,0.03398955,-0.08448829,-0.20773867,0.2901158,0.56788516,-0.03546734,0.059621114,0.26530543,0.4563188,-0.11080397,0.7352313,0.20273559,0.46139154,-0.13456412,-0.16790578,0.35900912,-0.38388512,0.22763847,0.17850263,0.14849153,0.45410842,-0.3377501,-0.90559775,-0.5727417,-0.30087247,1.3396761,-0.29628164,-0.3579401,0.36647734,-0.3164509,-0.23074453,0.04665576,0.5191933,-0.035818014,-0.0118746245,-0.87621015,-0.08214831,-0.10355287,0.2750091,-0.07562479,-0.04899496,-0.316707,0.79428697,-0.12127931,0.51904124,0.3468542,0.13013048,-0.21928556,-0.43832284,0.18623056,0.88084155,0.4609551,0.03023841,-0.11663079,-0.28876814,-0.23502813,-0.15618038,0.23754412,0.65501946,0.5117696,0.021577796,0.18686241,0.3244532,-0.34646288,0.00405733,-0.29271698,-0.21146466,-0.04909035,0.19239925,0.45395043,0.58498114,-0.041070547,0.31139466,-0.046345968,0.055640858,-0.09163641,-0.5906727,0.60971165,0.6377005,-0.10239608,-0.25689575,0.47842705,0.45308533,-0.16133446,0.35171482,-0.4932259,-0.26773173,0.43064702,-0.11196546,-0.29596406,0.16080648,-0.42915788,-0.032577045,-0.8023023,0.19222946,-0.26120025,-0.4929188,-0.5600048,-0.15542112,-3.8207564,0.035732973,-0.12215544,-0.15603706,-0.16079335,-0.12663391,0.5149003,-0.62165326,-0.6114422,0.053245958,0.04783243,0.53539056,-0.014106092,-0.005127104,-0.33858535,-0.26970962,-0.29233795,0.19061986,0.020173455,0.2855572,0.0024075985,-0.3951908,-0.037625425,-0.14515701,-0.41823712,-0.03233939,-0.51297677,-0.55346,-0.09602797,-0.28941804,-0.18482727,0.67889214,-0.34318432,-0.02281847,-0.2230595,-0.074517146,-0.2675621,0.3996297,0.13841057,0.17159843,0.17917214,0.02915721,-0.14999507,-0.27968067,0.104302675,0.022751851,0.32069823,0.25473008,-0.08095887,0.20278218,0.59464115,0.60176164,0.04936503,0.7992314,0.3725777,-0.150797,0.32404622,-0.21104668,-0.22284395,-0.62595236,-0.2795448,-0.28382656,-0.47268555,-0.28164488,-0.07035389,-0.23175077,-0.8437545,0.33625573,0.064792246,0.09493325,-0.12610257,0.1298871,0.38629824,-0.03916859,0.06634004,-0.10573987,-0.30999097,-0.47967598,-0.40990868,-0.5992439,-0.48529518,0.13441557,1.1039873,-0.17051284,-0.0098578455,0.061068997,-0.4064325,0.0561953,0.039321225,0.085043184,0.20256814,0.43578163,-0.09838476,-0.69014895,0.33711657,-0.21151683,0.011019905,-0.64277476,0.1556035,0.69954973,-0.48318806,0.5849718,0.19500016,0.21717073,-0.0283639,-0.63303393,-0.34604195,0.108623914,-0.22192314,0.6805034,0.3178205,-0.7450659,0.4764247,0.2421429,-0.10924883,-0.544048,0.49753347,-0.01756823,-0.100534916,0.06498174,0.2734174,0.06037675,-0.03448378,-0.05803955,0.3710211,-0.47425318,0.31170836,0.2461905,-0.08067416,0.20113333,-0.0352023,-0.23693468,-0.5210229,-0.15164341,-0.4528288,-0.27930996,0.00596594,0.04078392,0.22011025,0.0953299,0.04131031,0.35518783,-0.08416655,0.1390504,-0.14849503,-0.25324988,0.29669914,0.5690637,0.2918506,-0.37835437,0.51792514,0.18563196,0.072601505,0.06405539,0.14332168,0.44432652,0.18429658,0.3318676,-0.08544852,-0.115660265,0.28147027,0.76505923,0.21028213,0.26536596,0.034853436,-0.13622308,0.21366785,0.12442774,0.15695623,-0.15348764,-0.38734183,-0.068776496,0.10347142,0.31052628,0.40808195,0.070570625,0.3316393,-0.043506097,-0.16738628,0.16937979,0.09658658,-0.04241962,-1.4948367,0.3949924,0.2734532,0.6675998,0.6414637,0.018429905,0.10772686,0.5636717,-0.3087464,0.02266292,0.3840072,0.12789904,-0.38991103,0.45322755,-0.6012596,0.46656668,-0.011755091,-0.014807706,0.06028914,0.33324316,0.23986945,0.85061187,-0.043175116,0.027466599,0.098454,-0.4268734,0.07156302,-0.19391933,0.08370419,-0.5485535,-0.39783365,0.5635958,0.5063924,0.30429807,-0.43259087,-0.04205811,-0.076143645,-0.17550747,0.055598292,-0.18176532,-0.120368816,-0.0903889,-0.5121035,-0.28964087,0.52129596,-0.1194088,0.029200407,0.046369758,-0.3062472,0.16122212,0.008161163,-0.105001934,-0.08344503,-0.63902026,-0.1264638,-0.27864042,-0.3992752,0.37253904,-0.39352307,0.20537344,0.21655662,-0.0184182,-0.2846359,0.3314505,0.12470513,0.66957575,-0.11188045,-0.12934744,-0.30155295,0.027205944,0.2112344,-0.20505638,-0.22553764,-0.30204955,0.042347398,-0.4698437,0.21251363,-0.25587896,-0.21923868,0.024269713,-0.10110581,0.11396365,0.41464406,-0.36232993,-0.16047381,0.04061234,-0.05615461,-0.2656692,-0.18947905,-0.36461034,0.37703964,0.0050528925,0.13772698,0.04847791,-0.06533715,-0.00493433,0.3204206,0.13658153,0.2427763,0.383906,-0.14843439,-0.3663808,0.030319555,0.12409737,0.36023802,0.10714252,-0.12774993,-0.3611898,-0.25439742,-0.42887104,0.29942513,-0.19567819,0.2604383,-0.1364037,-0.5498634,0.8862841,0.10908776,1.111582,-0.06535081,-0.33447587,0.13560645,0.48681152,0.023484772,0.12884156,-0.18285272,0.67605346,0.6913182,-0.0861813,-0.17485228,-0.4249522,-0.22175445,0.20098099,-0.3620407,-0.120958716,-0.059690755,-0.7959368,-0.007691179,0.11897146,0.17106846,0.030559445,-0.060729977,-0.16604802,0.025984423,0.1359262,0.4400292,-0.512338,0.016852032,0.2859445,0.25656447,0.1007069,0.19072424,-0.3198379,0.4813644,-0.7713898,0.16113703,-0.33093604,0.16095515,-0.12800561,-0.173582,0.20855369,-0.0056592384,0.28081882,-0.2593222,-0.30969778,-0.33221486,0.6678256,0.124835685,0.3453239,0.7260943,-0.21352133,-0.05566364,0.073690526,0.5026234,1.0269805,-0.0742453,0.015438223,0.18326677,-0.2620147,-0.5335451,0.11158346,-0.3736089,0.20516062,0.037642565,-0.33614603,-0.25518253,0.34310374,0.006905945,0.26251742,0.039014243,-0.61779976,-0.32057875,0.36791033,-0.18244076,-0.2830177,-0.27192813,0.1936283,0.5862464,-0.36882764,-0.26722288,0.0174892,0.39530385,-0.23295332,-0.5878743,0.045681667,-0.38350964,0.37500033,0.021416528,-0.35935608,0.03667808,0.20782857,-0.4002533,0.036211696,0.26651317,-0.3298837,0.058206342,-0.2625161,-0.13911505,0.9716222,0.033312563,0.21191475,-0.6303209,-0.5753335,-0.83263755,-0.4113324,0.19334501,0.29453334,-0.20937076,-0.5864525,-0.11011826,-0.117305346,0.076593556,0.12352716,-0.5651128,0.50892055,0.16996725,0.41275817,0.0014289458,-0.9258161,-0.038587883,0.0961922,-0.031992387,-0.43371484,0.70382893,-0.11060925,0.7031826,-0.0021259547,0.09628475,-0.04625122,-0.5498432,0.28559703,-0.24164933,-0.18240151,-0.6556141,0.08586289 -182,0.36098364,0.09176445,-0.43681848,-0.12030961,-0.2359662,-0.103101104,-0.124106534,0.2460999,0.52292365,-0.35445297,0.03428079,-0.39511964,0.15905653,0.38176116,-0.15287577,-1.008599,0.19965345,0.19890712,-0.55717796,0.8668812,-0.3827667,0.34618586,0.27543274,0.20513229,-0.1139432,0.21384087,0.5069482,-0.29491913,-0.114008315,-0.21707912,-0.0979543,-0.19831887,-0.67927384,0.3965853,0.09004034,-0.12491002,0.2153305,-0.43869683,-0.3695114,-0.74691415,0.23727113,-0.80203474,0.40723315,0.076612435,-0.199659,0.1059922,0.31697884,0.15730396,-0.31295395,0.05235665,0.09027856,-0.19708182,-0.37996188,-0.24614204,-0.41562787,-0.6948288,-0.69870317,0.0047772583,-0.5256315,-0.08183139,-0.5242339,0.10864067,-0.4831805,-0.0023146814,-0.03945465,0.6323744,-0.4216156,0.12215881,0.12823781,-0.28227997,0.31138572,-0.64131737,-0.08284223,-0.11092556,0.13844118,0.16311769,-0.18349515,0.26847532,0.45908824,0.44605458,0.098845966,-0.27580863,-0.27716076,-0.29489967,0.23283438,0.6085778,0.009739626,-0.62556934,-0.07658525,0.01525648,-0.0005705763,0.26895592,0.1769866,-0.51386,-0.02287711,-0.22701645,-0.34824398,0.48983687,0.5325058,-0.30756572,0.019372253,0.32786223,0.22616984,0.06531572,-0.08517128,0.23684883,-0.06973622,-0.6929718,-0.20931591,0.1825282,-0.20664138,0.7525665,-0.2785424,0.17662896,0.7055458,-0.19639544,-0.33871874,-0.13134946,-0.010568597,-0.08601266,-0.16767535,-0.07121289,0.38842565,-0.64766866,-0.22584423,-0.43938968,0.9902597,0.07049834,-1.0798632,0.36571386,-0.5773136,0.2178825,-0.18476175,0.5656452,0.69586426,0.54401374,0.412189,0.7386446,-0.49770126,0.13044612,0.15787932,-0.63015074,0.17803144,0.024330767,0.2062233,-0.473163,-0.054106656,0.1637354,-0.24922386,0.12531821,0.7449534,-0.2686516,-0.10995305,0.0062171547,0.8705536,-0.31803977,-0.15871556,0.57667804,1.1210781,0.82380027,0.26683044,1.4733624,0.24366356,-0.17541231,-0.11329109,0.06671315,-1.0232551,0.21182603,0.3446061,-0.20893389,0.09339481,0.08411431,-0.1212904,0.28836298,-0.40587494,-0.14058739,-0.18131919,0.56004405,-0.0823667,-0.34569666,-0.30369332,-0.31769717,-0.009339093,0.017925667,0.16610684,0.3649024,0.20179,0.54901886,0.07123855,1.3637838,0.15875582,0.12027721,0.15904249,0.45820618,0.35080585,0.13304305,-0.12238648,0.30423704,0.2930524,0.16184112,-0.55009115,-0.021875136,-0.1277175,-0.41142645,-0.20782705,-0.2379222,0.108284354,0.05817027,-0.08634294,-0.19109367,-0.16996704,-0.52836233,0.59652674,-2.3117118,-0.03521494,-0.11498458,0.32055244,-0.070616275,-0.037201215,-0.2518405,-0.6203436,0.7588985,0.45352602,0.5540614,-0.71181977,0.011584884,0.52385545,-0.58249056,-0.12182584,-0.72366065,-0.11454597,-0.12075073,0.3262367,0.021708738,-0.23054194,-0.017214065,0.21918474,0.4777609,0.012685347,0.18708062,0.47973493,0.507213,0.02078522,0.39594695,-0.14803928,0.5545892,-0.16432063,-0.14318602,0.10224562,-0.24486336,0.21600905,-0.35652465,0.0837024,0.41986597,-0.45212486,-0.87623864,-0.19191791,-0.060359057,0.99919534,-0.4063161,-0.49670523,0.42121297,0.15179038,0.005657865,0.084435195,0.58667845,-0.18440585,0.06920526,-0.7485042,0.17194825,0.27258646,0.116381794,0.1424366,-0.099249534,-0.4573108,0.5895326,-0.057122532,0.55753285,0.60844666,0.11947593,-0.40150395,-0.5570734,0.037124954,0.9807707,0.2791092,0.23335852,-0.37207812,-0.16800103,-0.439527,-0.30362803,0.057806607,0.5414873,0.83441633,-0.15158345,-0.03709233,0.39803174,-0.14734884,0.0057408484,-0.054116283,-0.52618384,-0.12333443,-0.179278,0.5665527,0.7022547,-0.18736218,0.5052739,-0.006327759,0.4059662,-0.0529804,-0.5270443,0.7363297,1.077078,-0.14543357,-0.20591019,0.6595494,0.26198718,-0.2850627,0.58940256,-0.22919577,-0.39654177,0.7090072,-0.0046962444,-0.60961974,0.36422107,-0.4282107,-0.09762797,-0.99659365,0.4917475,-0.2554901,-0.5633552,-0.60874635,0.03204151,-3.638237,0.28566465,-0.34481275,-0.18436922,-0.250495,0.121339686,-0.019294923,-0.39178115,-0.5067321,0.4229949,0.24998908,0.53226554,-0.21564583,0.31643394,-0.055981074,-0.04079957,-0.16620252,0.1548128,0.10993264,0.1448587,-0.082706556,-0.43807852,-0.08229649,-0.03677775,-0.3283169,0.1488175,-0.6439995,-0.44118917,-0.18681683,-0.8658165,-0.4484396,0.78617954,-0.5620501,-0.038499527,-0.41319796,0.010203827,-0.083435394,0.3730698,-0.18877536,0.14940752,-0.1937276,0.04002341,-0.18606824,-0.18655342,0.2769104,-0.1264455,0.34228957,0.38654968,-0.04285516,0.12156434,0.74635816,0.58631784,0.095764466,0.7545792,0.46245328,-0.09795812,0.11185867,-0.32438138,-0.17939514,-0.7553297,-0.31190193,-0.24561761,-0.4548548,-0.3905469,0.026876146,-0.35452524,-0.6594294,0.5637067,0.26514718,-0.16098537,0.05525614,0.15470152,0.25926378,-0.06907925,-0.014081248,-0.19965954,-0.29227343,-0.57127976,0.0392133,-0.8062342,-0.4690564,0.354782,0.89289767,-0.20666236,-0.31328124,-0.014758787,-0.2823222,0.04597682,0.14154547,-0.029290969,0.28629926,0.11153788,0.19007431,-0.7856533,0.5974403,-0.22237311,-0.052063953,-0.72260875,0.033411022,0.63798577,-0.78948873,0.4688171,0.5430878,0.019162904,0.014034748,-0.55907243,-0.49715388,-0.048355546,-0.09851181,0.3238308,0.13858499,-0.8229986,0.5931051,0.3215284,-0.32879636,-0.8593903,0.2774868,-0.10672965,-0.32842815,0.19594693,0.42817402,0.024867589,0.121614,-0.58074015,-0.06964727,-0.5663504,0.32319412,0.029030675,-0.020448565,0.48635438,0.037986234,-0.27532685,-0.9977446,-0.09382404,-0.59140795,-0.120297424,0.20199199,0.26025292,-0.012254227,-0.04379188,0.0938972,0.36639926,-0.36492598,0.24067798,-0.14728822,-0.269829,0.4300949,0.43537667,0.27073607,-0.47115317,0.77810836,-0.16250318,0.021061767,-0.12798233,0.14906055,0.44253644,0.3125447,0.27125266,0.19905001,-0.16700262,0.17090692,0.9463062,0.11838252,0.30708936,0.35453647,-0.015709369,0.58363783,-0.011900845,0.20858385,0.12652498,-0.51692355,-0.03588075,-0.24256429,0.04576721,0.57391316,0.1829805,0.545422,0.015339139,-0.333514,-0.03384254,0.31940743,0.1934009,-1.0817927,0.44050416,0.2462257,0.43564367,0.81368715,-0.052903548,0.028117944,0.7204093,-0.054525577,0.21183296,0.2446933,-0.07425333,-0.28634942,0.64387584,-0.74153274,0.27160916,-0.36164021,0.0017374889,0.21345125,0.34426007,0.3354162,0.9203616,-0.029413223,-0.015769381,-0.17423268,-0.20455714,0.026288938,-0.42980668,0.020571925,-0.2193851,-0.6120924,0.6342541,0.17330101,0.32404068,-0.21290532,-0.004063113,0.35349524,-0.12231532,0.3290849,0.0998828,-0.06821613,-0.15451813,-0.85890967,-0.33530986,0.62009996,-0.01345622,0.18508558,0.07163553,0.15100594,0.280449,-0.38523057,-0.22407085,-0.038936976,-0.64857084,0.012527184,-0.24328475,-0.57617927,0.6524537,-0.26267576,0.26078308,0.17825855,0.13547601,-0.32746685,0.06484825,0.35107183,0.57057846,-0.030308496,-0.23412432,-0.09051473,-0.2265275,0.22637029,-0.27874324,0.11353444,-0.032427635,0.0033045574,-0.6540997,0.56889987,-0.3959073,-0.30986527,-0.048747767,-0.27576783,-0.15239114,0.44016942,-0.27284127,-0.15922579,0.16495952,-0.2546406,-0.07920698,-0.2708452,-0.25509062,0.22274111,0.08791408,-0.04459953,0.013165853,-0.018640734,-0.014850985,0.27304867,-0.14919032,0.13641687,0.009792891,0.37901458,-0.45207673,-0.11606848,0.074156635,0.5405762,-0.049961265,-0.103166096,-0.19851507,-0.3301494,-0.22608684,-0.3715687,-0.09514204,0.15435459,0.18385592,-0.63661456,0.8475555,0.10344048,1.0016054,0.045586225,-0.3337003,-0.011607539,0.5325003,0.013867161,0.060992826,-0.15026222,0.97899854,0.7868917,-0.15455128,-0.32098854,-0.72471625,0.085180804,0.26247898,-0.2662347,-0.36484823,0.20701423,-0.44451904,-0.47989082,0.3257259,0.19351153,0.016066909,-0.15322852,0.030032368,0.19702005,0.17556281,0.28032622,-0.60136324,0.17223018,0.24820466,0.119771026,0.2739194,0.15845236,-0.33489293,0.2647914,-0.538498,0.21166204,-0.47329685,0.06592806,-0.012944481,-0.07785161,0.15926442,-0.019744456,0.46827623,-0.2604245,-0.36391398,-0.12066212,0.51356405,0.3185531,0.30188075,0.91982096,-0.28336942,-0.16199309,0.022935702,0.824805,1.4270126,-0.3167938,-0.012285164,0.3924413,-0.2991147,-0.54507446,0.28175718,-0.28250882,0.010956306,-0.23440933,-0.41683605,-0.54926217,-0.018480869,0.18652393,-0.05011267,0.1482573,-0.45479068,-0.29373148,0.2089523,-0.33913592,-0.29400593,-0.41523564,0.102206446,0.8545391,-0.4320469,-0.2406831,0.10116389,-0.15612869,-0.1597848,-0.60006624,-0.10191537,-0.05823102,0.3267134,0.43200094,-0.4137993,0.055521067,0.25126353,-0.5935838,0.24545175,0.036939915,-0.38183153,0.1460196,-0.15649255,-0.15896294,0.81953454,-0.2739646,0.18892771,-0.6103553,-0.6677567,-0.89694935,-0.3391606,0.5094811,-0.11605836,-0.01845162,-0.6087875,-0.112000085,0.13898093,-0.051122013,-0.03240268,-0.44609106,0.44530782,0.07496513,0.5193771,-0.17909098,-0.9787563,0.05632263,0.103259325,-0.126107,-0.68675315,0.4251772,-0.077426456,0.78345394,0.12041629,0.0509148,0.3835475,-0.7773396,0.13404503,-0.37392962,-0.37700444,-0.39332733,0.19078769 -183,0.5332194,-0.17541164,-0.5638955,0.032212507,-0.27670047,0.20769596,-0.09752878,0.582144,0.35436994,-0.29891506,-0.10830431,-0.29911247,0.081676446,0.37263525,-0.038718652,-0.37314546,0.034238618,0.17336304,-0.66366017,0.48653162,-0.43824244,0.20302315,-0.09770549,0.50440395,0.21473186,0.25322405,0.09494642,-0.0590814,-0.369895,-0.08740673,-0.01084601,0.25432196,-0.37895828,0.19615741,-0.25463933,-0.2950185,0.010687264,-0.33734515,-0.5149579,-0.735156,0.23606136,-0.6803256,0.43797302,-0.015523418,-0.27112886,0.033165727,-0.097007304,0.27954537,-0.23831314,-0.11594726,0.09219914,-0.22744282,0.035258885,-0.31292537,-0.1703109,-0.30686367,-0.5302004,0.076681264,-0.44952723,-0.06503047,-0.21727899,0.022119673,-0.3129502,-0.02045711,-0.14992565,0.4203597,-0.37922972,0.22176762,0.1438938,-0.1880634,0.13102031,-0.5439545,-0.39627922,-0.1428598,0.12033047,-0.008065741,-0.27735144,0.32499513,0.27921256,0.45745844,-0.06842678,-0.03147559,-0.4097807,-0.012549504,0.15578468,0.40373632,-0.027115269,-0.61777467,-0.0909512,0.052305307,0.1515419,0.21035753,0.15994792,-0.254027,-0.08431002,0.16072938,-0.2399862,0.4061755,0.4624272,-0.33730218,-0.27752697,0.23257956,0.514536,0.3198958,-0.13231616,-0.17187557,-0.021570347,-0.5465224,-0.16157971,0.09772827,-0.21845938,0.52484775,-0.10416,0.28771725,0.5497119,-0.2767288,-0.19422475,0.17879893,0.18723403,-0.22543672,-0.07840989,-0.16835742,0.05610522,-0.29456475,-0.011392339,-0.1335277,0.7073791,0.26116237,-0.5442665,0.4719799,-0.46011886,0.14903761,0.008744144,0.4491344,0.82041055,0.40864244,0.2840638,0.62979215,-0.30357736,0.13774423,-0.12223049,-0.34598282,0.13539146,-0.25648764,0.098588735,-0.5420181,-0.0794316,-0.0042766095,-0.23471731,0.14665954,0.60049146,-0.46928468,-0.10283062,-0.021839015,0.8192739,-0.1767748,-0.2273186,0.7588547,1.0140357,0.9995014,-0.028758418,1.0402544,0.21625815,-0.2668832,0.26662585,-0.44291726,-0.64726794,0.30489758,0.2983004,-0.20644815,0.29198965,-0.09673715,-0.024210183,0.354987,-0.2918679,0.11527564,-0.049199987,0.43046433,0.19566122,-0.046765093,-0.22789909,-0.4917221,-0.30799356,-0.07421093,0.014099987,0.36110884,-0.19690196,0.46864802,-0.013278937,1.7904385,0.04521578,-0.02393954,-0.0032539228,0.5941353,0.18925886,-0.23314826,-0.13720317,0.3363224,0.038584664,0.12118979,-0.45965403,0.13746499,-0.3354154,-0.50102913,-0.040912636,-0.3129793,-0.114074595,0.028541902,-0.34241125,-0.1883255,-0.22911923,-0.27010503,0.5200219,-2.7681706,-0.29069623,0.08505132,0.3441951,-0.25923702,-0.42957315,-0.15310912,-0.6433526,0.22858486,0.25649843,0.5209488,-0.68450165,0.25896803,0.29801372,-0.5770839,-0.19975229,-0.5564602,0.01491217,0.10111825,0.3009429,-0.114109725,-0.048854694,0.058040645,-0.008825199,0.4098592,-0.06402208,0.16027692,0.2727429,0.3107043,0.012717867,0.29554048,-0.0022906938,0.50104314,-0.39445394,-0.20299599,0.40997028,-0.29042226,0.3748614,-0.13091406,0.10070462,0.539819,-0.52196133,-0.7904555,-0.48767072,0.05558753,1.0908104,-0.04175888,-0.43189922,0.18711099,-0.4639354,-0.2447297,-0.19559485,0.45681494,-0.025978176,-0.261496,-0.70849377,0.052876648,0.02150451,0.16765377,-0.03472154,-0.07788291,-0.2072657,0.4959093,0.0073087197,0.37435862,0.21362711,0.15600252,-0.3458316,-0.38444906,0.2335628,0.8393098,0.34860185,0.19451576,-0.13223536,-0.22219066,-0.3322881,-0.1273882,0.08286907,0.5293716,0.5732303,-0.11479201,0.13969445,0.3457201,-0.0837905,0.0062574525,-0.19213094,-0.28312963,-0.04118763,0.013117365,0.5189014,0.78744584,-0.13293496,0.62408155,0.10876394,0.25698727,-0.13016137,-0.48847622,0.63071173,0.9590345,-0.24649957,-0.25138363,0.327463,0.30912924,-0.40481645,0.39146945,-0.43126494,-0.44684282,0.56248105,-0.15702066,-0.31584257,0.2792484,-0.26549464,0.1612639,-0.78119093,0.25021002,-0.3441872,-0.3874745,-0.6019464,0.0042422474,-2.6909912,0.11971808,-0.20649405,-0.16372052,-0.010544451,-0.003392746,-0.018163629,-0.53532064,-0.5732651,0.13446555,0.06219598,0.7026245,-0.15674825,0.07076167,-0.09409244,-0.4756792,-0.48554903,0.06516311,0.18126284,0.48551732,-0.0048574605,-0.5168149,0.12910102,-0.27128756,-0.30361897,0.22384787,-0.57983804,-0.5777725,-0.26366764,-0.4471701,-0.44174868,0.7022924,-0.22391237,-0.01304185,-0.18962161,0.027048893,-0.08270915,0.27278036,0.2555521,-0.10071906,0.07162693,-0.07472489,-0.012722071,-0.34125063,0.19136745,-0.012865741,0.35839197,0.60065675,0.05273201,0.3063268,0.44747263,0.7520921,-0.04017469,0.7657234,0.33292305,-0.13457718,0.30911806,-0.2610341,-0.2431714,-0.27353725,-0.16883107,0.063218996,-0.4369175,-0.45220688,-0.14499985,-0.39791057,-0.6210822,0.34839824,-0.028347118,0.13195144,0.1348204,0.2185743,0.68481064,-0.16480704,0.08588465,-0.057638135,-0.0955172,-0.62166774,-0.32881403,-0.64875954,-0.5534658,0.42849922,0.92653835,-0.20277414,-0.08564583,0.18162541,-0.40865618,-0.012039582,0.15640374,-0.1562706,0.096548416,0.3776835,-0.28616744,-0.56302774,0.39828855,-0.103023656,-0.15903395,-0.65715915,0.27296895,0.5091672,-0.6251948,0.567475,0.14262183,0.12424382,-0.15719274,-0.25320634,-0.15226358,-0.039539974,-0.15688327,0.26827872,0.19461349,-0.7134524,0.34883115,0.27533263,-0.3186289,-0.74505204,0.4065779,0.0573376,-0.26571515,-0.15968674,0.31159833,0.17360361,0.0812144,-0.26284927,0.23381422,-0.5599051,0.20265701,0.34948713,-0.12979664,0.16952713,-0.19402666,-0.33048075,-0.7286078,0.104336284,-0.31475037,-0.39302272,0.34674212,0.25715834,0.1479147,0.08335376,0.310906,0.27461365,-0.22778906,0.022107108,-0.081173405,-0.2106284,0.3332782,0.36644503,0.6927019,-0.37592882,0.55765456,-0.05527329,-0.12713313,0.118969776,-0.06521489,0.2149454,0.30112615,0.34869033,0.25628603,-0.392876,0.29771724,0.9202902,0.16711341,0.33496788,0.017127998,-0.09867242,0.093901746,0.029972378,0.2919091,-0.06524037,-0.46123308,-0.037632,-0.19300528,0.22280246,0.47115344,0.09424519,0.18989936,-0.07544113,-0.37638396,0.004247456,0.19492534,-0.044082206,-1.3192366,0.22050698,0.17254467,0.9288256,0.35671562,-0.079664245,-0.076688625,0.64174026,-0.079114266,0.24558942,0.32735208,-0.034123056,-0.56635284,0.5412848,-0.6613169,0.64885205,-0.09226668,-0.11984202,0.011274548,-0.042770814,0.44186884,0.7876454,-0.27554864,-0.12684569,0.15564094,-0.33671197,0.120571755,-0.3836991,0.04989999,-0.7983423,-0.3150315,0.56044847,0.49380144,0.30838126,-0.30802086,0.027214587,-0.03663576,-0.1726106,0.35898504,0.0021869282,0.25819537,-0.07192208,-0.74179107,-0.14490871,0.48302895,0.028387817,0.16148649,0.09763861,-0.14341412,0.26929808,-0.22038539,0.06962999,-0.08519756,-0.65721905,-0.09681503,-0.3538562,-0.44463247,0.5851586,0.07450728,0.29141885,0.1979783,0.11096198,-0.34219643,0.58130395,0.03031677,0.7646736,-0.02046522,-0.16861543,-0.4204698,0.29562154,0.21069473,-0.13711722,-0.053776145,-0.029874679,-0.057454947,-0.59571636,0.6187328,0.073697805,-0.1372992,-0.14892557,-0.04070956,0.068459764,0.6104864,-0.06499819,-0.23092836,-0.21806517,-0.0503378,-0.40178153,-0.06932445,-0.013092516,0.12874338,0.32546446,-0.115869455,-0.15119952,-0.09781049,0.049582534,0.23757778,-0.06731038,0.18098532,0.40325144,0.09278896,-0.25498104,-0.269114,0.12309548,0.48758304,0.2036964,-0.096539356,-0.41228327,-0.41873857,-0.40778986,0.14909202,-0.053861316,0.2876076,0.1356794,-0.36493126,0.4992669,-0.17482659,1.2603232,0.19609483,-0.17370155,0.16473608,0.46933904,-0.016871449,-0.10100613,-0.42761377,0.7895698,0.34379876,-0.096695326,-0.15682983,-0.28546527,0.057749636,0.26425594,-0.16637225,-0.180336,0.06128924,-0.63149375,-0.18467095,0.11352292,0.2599874,0.21099256,-0.21854171,0.0971649,0.38178927,0.13140236,0.20781389,-0.3027429,-0.35748413,0.3757248,0.2938451,0.05373001,0.14002614,-0.4088159,0.3980545,-0.5516637,0.10440031,-0.26803833,0.22091727,-0.11581003,-0.49088576,0.2747863,0.3422149,0.29014847,-0.36038718,-0.40379283,-0.39256886,0.50876933,0.2020436,0.13497472,0.5535219,-0.21010464,-0.2666043,0.16843575,0.459221,1.010648,-0.119999446,-0.19593008,0.5097457,-0.32222876,-0.57970184,0.63606805,-0.3097855,0.20765877,0.049298327,-0.11067939,-0.74680847,0.25861898,0.1096857,0.0061206063,-0.08620183,-0.621822,-0.049229957,0.11358822,-0.53081256,-0.18048327,-0.42554194,0.15239301,0.5497353,-0.26023343,-0.16236804,0.2147323,0.27673876,-0.3112148,-0.3744922,-0.032035436,-0.4054871,0.24171036,-0.00508246,-0.3276408,-0.17112592,0.10419245,-0.50958943,0.14246829,-0.009465826,-0.48824087,0.09252571,-0.30942917,-0.17410527,0.9439936,-0.2977281,0.31188747,-0.34135404,-0.4414445,-0.6574568,-0.26513174,0.45224863,-0.09208855,0.0121117495,-0.7100528,-0.09389321,-0.07242098,-0.2626598,-0.09908079,-0.38176146,0.4931888,0.0639259,0.12652859,0.019771155,-0.64017683,0.22020823,0.13584763,-0.14883812,-0.5820759,0.39589292,-0.24329406,0.77321804,0.06696624,0.014423555,0.5313326,-0.39944202,0.031972323,-0.16604449,-0.07194804,-0.49900708,0.1044954 -184,0.11616778,-0.06440176,-0.64161825,-0.11797232,-0.28026637,0.33912683,-0.37821,0.27302483,0.30081096,-0.43279597,0.026481075,-0.0986613,-0.2383233,0.292109,-0.073533915,-0.51941526,-0.04811636,0.27385628,-0.47926834,0.5708383,-0.33965918,0.31619126,0.09916126,0.35345683,-0.044265877,0.14962576,0.07985384,-0.121683665,-0.062432315,-0.070234954,-0.03969511,0.07342498,-0.39409986,0.33687374,-0.17655136,-0.32319853,0.008718201,-0.34968784,-0.3057414,-0.70825154,0.11350332,-0.7356431,0.6074134,-0.049174514,-0.2034633,0.28568524,0.36927217,0.21958734,-0.12860309,-0.011073415,0.19049893,-0.47844484,-0.5984933,-0.2689059,-0.61912405,-0.46097785,-0.7481347,-0.06288574,-0.5551875,-0.007645079,-0.24530588,0.27720475,-0.26397654,-0.066830106,-0.060669627,0.34431452,-0.39699072,0.106552266,0.17868294,-0.18803391,0.054099057,-0.78599733,-0.16307323,-0.047190774,0.20449774,0.14986534,-0.23806109,0.2991628,0.22148778,0.5474197,0.06922317,-0.30650637,-0.5389457,-0.17622158,0.095099345,0.50511557,-0.15805574,0.14590709,-0.15142791,-0.0019151525,0.4959251,0.21668999,0.05321714,-0.18022643,-0.070711605,-0.19290388,-0.31108356,0.299222,0.46716598,-0.45393944,-0.19680996,0.5120763,0.5989351,0.108645774,-0.33082506,0.0857165,-0.13034084,-0.45381263,-0.0792722,0.20518057,-0.21293092,0.42805284,-0.14849104,0.18791911,0.4969881,-0.12461145,-0.2813193,-0.019204766,0.098772235,0.10820176,-0.06747706,-0.19397298,0.3167476,-0.4470094,0.009409113,-0.25360632,0.5179711,-0.050013185,-0.6906828,0.41811106,-0.35915524,0.059051592,-0.03783359,0.66455775,0.92881095,0.8456175,0.2360669,0.9134745,-0.3041635,0.121818565,-0.18620427,-0.04059558,0.13607515,-0.1655064,0.22830813,-0.5811226,0.27571216,-0.023596104,-0.19753437,0.15193263,0.8480708,-0.40153483,-0.1697127,0.267723,0.65940714,-0.24537197,-0.23131032,0.609002,0.9414778,0.9360441,0.115666725,1.1323956,0.28144053,-0.22192052,-0.15690073,-0.3090396,-0.886463,0.18706849,0.2005448,0.1301594,0.37226677,0.18515491,0.0032699981,0.5013412,-0.19888727,-0.120672606,-0.106659256,0.22952679,0.08330999,-0.017218484,-0.24706647,-0.23867953,0.22263582,-0.0973023,0.25707674,0.35523823,-0.14777012,0.48147658,0.13890299,1.5353057,0.008789258,0.032387454,0.19297126,0.30178282,0.20651427,0.07232054,-0.13798049,0.4138624,0.15721011,-0.07203894,-0.4403918,0.067168914,-0.23169577,-0.5417535,-0.19091733,-0.28483626,-0.15782939,-0.20853376,-0.19439909,-0.39584216,-0.022225903,-0.65042555,0.40324762,-2.5735526,-0.16683218,-0.059316147,0.27263898,-0.19707121,-0.32030964,-0.34399325,-0.4742683,0.5291329,0.3277746,0.4427181,-0.4997521,0.50157356,0.58288234,-0.75225335,-0.27307636,-0.6342472,-0.08900321,-0.08464459,0.35038087,0.05427862,-0.40929148,-0.020680087,-0.007566222,0.3682163,-0.21616523,0.107418485,0.5417169,0.5024666,-0.13082863,0.43185446,-0.12174159,0.67800426,-0.39234,-0.27123836,0.4174688,-0.49519873,0.36904103,-0.25842637,0.16926447,0.42174223,-0.3820608,-0.78652364,-0.38685974,0.14847891,1.3462232,-0.27212048,-0.533624,0.017274955,-0.5709136,-0.18482454,-0.0028586942,0.5577995,-0.08740965,-0.18633296,-0.68509865,-0.09351765,0.0746306,0.40610737,-0.05097733,0.12183679,-0.42688605,0.5735682,-0.003619045,0.57761765,0.3985787,0.14801912,-0.39601168,-0.20613782,0.07039466,0.6582456,0.26679096,0.1879598,-0.3174258,-0.30473083,-0.118026495,-0.19468127,0.0064176535,0.4332955,0.43713698,-0.04099872,0.05453172,0.29190928,-0.2687687,-0.06457351,-0.33169514,-0.33315426,-0.1625768,0.25948876,0.4157036,0.6663641,0.10710246,0.4497873,0.019596547,0.28055492,-0.16579714,-0.5025174,0.4085929,0.85377306,-0.27364555,-0.23528218,0.5049117,0.3379868,-0.26900885,0.54838187,-0.60938406,-0.45219138,0.37551573,-0.15291739,-0.4136915,0.09399557,-0.444655,0.09209598,-0.78141254,0.11559907,-0.27248088,-0.37527934,-0.78848875,0.05974441,-2.8515365,0.088694975,-0.27077624,0.04541741,-0.1580756,-0.061450254,0.10275136,-0.34848404,-0.60639083,0.20530508,0.40531832,0.5676878,-0.08014868,-0.058021843,-0.34976822,-0.399172,-0.21670537,0.24026166,0.034538954,0.28739688,-0.17673005,-0.57228214,0.06913288,-0.3346165,-0.14614289,-0.20589772,-0.43326837,-0.14839077,-0.10779315,-0.47947794,-0.19054125,0.66864234,-0.7123407,-0.09022006,-0.4687138,0.032852728,0.20018141,0.27961117,-0.071394384,0.14990321,0.22694036,-0.18821414,0.0070082503,-0.30911806,0.27511835,-0.083960615,0.13721494,0.5929061,0.026021566,0.064692356,0.59304005,0.7855791,-0.13860874,1.0386394,0.48072365,-0.19648235,0.33197403,-0.19712362,-0.11172886,-0.6127315,-0.074613094,-0.04628327,-0.49185658,-0.4036209,0.044714663,-0.3808536,-0.9870173,0.60719365,0.19035745,0.03351287,-0.088178314,0.5037419,0.47076622,-0.2809773,0.11248773,-0.19974197,-0.23786573,-0.3355544,-0.4945035,-0.76649624,-0.567725,0.14557932,1.3480648,-0.22436635,-0.047849767,0.23326717,-0.26902384,0.010270553,0.3920944,0.28499725,0.23439516,0.43145594,0.19663699,-0.5778449,0.27846023,-0.12448426,0.020361636,-0.6060913,0.18603542,0.6214224,-0.66059226,0.39851183,0.44203624,-0.028505865,-0.054782987,-0.78321797,-0.14739223,0.04923457,-0.20175402,0.24475977,0.21167064,-0.7191226,0.59540176,0.1975796,-0.31415242,-0.8644227,0.2935062,-0.1583784,-0.16960444,-0.05755788,0.5027897,0.2409514,0.08605447,-0.29901028,0.08025285,-0.3548909,0.26926664,0.055327427,-0.13928778,0.31707764,-0.1728775,-0.18082653,-0.8635096,-0.06649121,-0.45318604,-0.35022917,0.434475,0.124191955,0.18417673,0.046858046,0.13143383,0.395346,-0.29820704,0.0699023,-0.3284835,-0.22902225,0.33777568,0.38092598,0.380349,-0.34501144,0.5501167,-0.13138798,-0.122497976,-0.15060735,-0.07926726,0.3917933,0.15877008,0.3887945,0.07810298,-0.24920307,0.07465637,0.9065508,0.17999163,0.24185577,0.035229802,-0.26374206,0.38363123,-0.0037747982,0.054654505,-0.23386979,-0.45363876,0.043289125,-0.35523087,0.23803727,0.51293147,0.1750573,0.64329064,-0.09955964,-0.009621032,0.0011399707,0.14686367,0.12894504,-0.6937214,0.2670408,0.12685224,0.66172683,0.5493862,0.17615394,0.14381196,0.7620215,-0.29794455,0.018268254,0.49857697,-0.14244045,-0.280508,0.47220582,-0.72918403,0.4376312,-0.08231485,-0.015054015,0.25734717,0.17784037,0.5056455,0.88219386,-0.18170215,0.044089723,0.13057624,-0.28496268,0.024185674,-0.28517765,-0.049301524,-0.3725249,-0.33818868,0.80393964,0.24824147,0.54437965,-0.27258715,0.0012140827,0.07359666,-0.31572682,0.32864004,-0.065675475,0.07370819,-0.14815484,-0.39858547,-0.030988285,0.5432153,0.24326842,0.12771727,0.22375228,-0.23683034,0.3191676,-0.15277384,-0.072333016,-0.03703147,-0.45241216,-0.0124360705,-0.22117145,-0.674765,0.66384506,-0.046987526,0.16219889,0.21122822,0.04855132,-0.26676932,0.3911536,0.108643614,0.71855104,0.058923695,-0.13637389,-0.10383619,-0.12904462,0.05133074,-0.3258071,0.073598996,-0.17945647,0.23909487,-0.8056282,0.5154888,-0.4054626,-0.41424948,0.16417912,-0.35460284,-0.04811734,0.49266523,-0.18923786,-0.08690482,0.07814606,-0.07984074,-0.25520042,-0.34882265,-0.4675716,0.14774969,-0.28006482,-0.17870787,-0.31365666,-0.23961838,-0.1438879,0.4104914,-0.042763453,-0.10205124,0.28237966,0.13624929,-0.42499593,0.14739323,0.24677218,0.51667863,-0.18619435,-0.087219715,-0.3062153,-0.2363455,-0.3283929,0.4798682,0.01512702,0.24064705,0.17298165,-0.5649971,0.81624573,-0.19398226,0.93226784,-0.030003969,-0.4065059,0.08268739,0.527578,0.009741707,0.1212516,-0.20049725,0.6755987,0.6359553,0.028626798,-0.12811793,-0.6084565,-0.0646613,0.3687633,-0.3233921,-0.08763484,-0.020924347,-0.7262214,-0.25931585,0.3536013,0.09342738,0.21230961,-0.1992772,0.2557114,0.0022685155,0.228883,0.23355396,-0.42429498,-0.04762539,0.43349475,0.22619972,-0.07851974,0.06053334,-0.28313008,0.26337793,-0.6400261,0.004498086,-0.2919213,0.00852641,-0.12907639,-0.0313827,0.35074195,0.19861484,0.22626127,-0.14719845,-0.30698887,-0.09454427,0.3694505,0.13914093,0.3908914,0.5924767,-0.33498308,-0.02586287,-0.022840206,0.48928216,1.1812763,-0.3216205,-0.04792828,0.34705886,-0.3372326,-0.57573545,0.31928036,-0.62710154,0.13093375,0.11728023,-0.37104416,-0.2291162,0.19538617,0.2271359,0.06043481,0.039407015,-0.4327886,-0.18170956,0.005963647,-0.41278172,-0.12579301,-0.1885967,-0.02994554,0.8023396,-0.2543085,-0.25132433,0.040191058,0.3799784,-0.18089554,-0.5367848,0.2838475,-0.44568178,0.30306008,0.21211973,-0.3318367,-0.00035619736,0.0031330246,-0.58802545,-0.028661106,0.46656248,-0.41049552,-0.03768814,-0.5172192,0.28231168,0.80111176,-0.022326767,0.3235406,-0.20698169,-0.46477297,-0.8476353,0.027634177,0.1365802,0.09089,-0.17479207,-0.56883585,0.0025412696,-0.28420123,-0.4728144,0.10004298,-0.6330885,0.5197304,0.21487941,0.23528707,-0.29642138,-0.8168139,0.0169554,-0.008007778,-0.25048235,-0.30840778,0.43127897,-0.18153973,1.0887219,0.17629974,-0.09192065,0.2121904,-0.852583,0.48148945,-0.35142142,-0.23295024,-0.5623713,-0.24221943 -185,0.35817567,-0.17785287,-0.42248315,-0.016908497,-0.285657,0.06024191,-0.13162598,0.35851687,0.17644435,-0.41868913,-0.06361689,-0.06950402,-0.048446983,0.39309064,-0.16672413,-0.5338766,-0.17511334,0.23600413,-0.42434123,0.6174956,-0.4762839,0.3388472,0.089615494,0.28604177,0.111315474,0.19553371,0.13569655,-0.08823971,-0.10834398,-0.08405718,-0.104481876,0.38976997,-0.47244674,0.07819105,-0.12053841,-0.26739368,0.05174359,-0.49186128,-0.43734536,-0.62725985,0.35755086,-0.74111897,0.4401228,0.16003495,-0.22264725,0.253052,0.027603805,0.19953133,-0.1133802,0.06690637,0.2122379,-0.021694988,-0.029141456,-0.12814218,-0.21668558,-0.15844655,-0.46529216,0.09905158,-0.49961078,-0.18623415,-0.17667855,0.21133849,-0.24425735,-0.03835657,-0.17651463,0.34910163,-0.47619325,0.0068757385,0.113983706,-0.13008587,0.37479156,-0.57312226,-0.13021067,-0.039947562,0.07255863,-0.23702407,-0.18369462,0.2911742,0.18850678,0.47990125,-0.11725109,-0.18327418,-0.28765598,0.107701026,0.12550874,0.5533584,-0.33134294,-0.21920595,-0.14206602,0.2115368,0.23619634,0.16955078,-0.08588297,-0.46090013,-0.075404994,-0.032120436,-0.055643365,0.34599772,0.5276399,-0.2143142,-0.12447295,0.4345733,0.33394063,0.234447,0.007946137,-0.020035315,-0.11550432,-0.4409774,-0.062242344,0.0925746,-0.15251474,0.42635325,-0.060427707,0.06852825,0.46934927,-0.054773103,0.0042638183,-0.15322065,-0.018446822,0.041312777,-0.15336058,-0.16874981,0.25005943,-0.3497754,0.15385336,-0.043079317,0.5843113,0.1125579,-0.75221026,0.31732634,-0.44808313,0.1820937,-0.18507619,0.47979194,0.65353763,0.31725428,0.18404481,0.76202357,-0.4403985,0.14025128,-0.17683975,-0.3143247,0.1394996,-0.07161803,-0.17996007,-0.54303783,0.012789737,-0.17626835,-0.26702267,0.09212581,0.23236626,-0.6054598,0.05332219,0.11647104,0.6713653,-0.31583816,0.08697364,0.6023941,0.92213327,0.83110154,0.021072892,1.0059283,0.22858758,-0.1419227,0.22740775,-0.29280895,-0.6657968,0.19803686,0.50231624,-0.09302476,0.2093913,0.18023589,-0.05280914,0.25331077,-0.32730776,-0.19795099,-0.33579773,0.22580379,0.001964949,-0.0081007555,-0.47190166,-0.17751063,-0.07558266,0.14762591,-0.132896,0.20720874,-0.34418485,-0.017945468,-0.022315606,1.8180904,-0.15530738,0.10143921,0.14837769,0.21771848,0.26539314,-0.10378152,-0.04257884,0.4058566,0.26719657,0.12128091,-0.53458405,0.06935098,-0.2680647,-0.506172,-0.06928533,-0.12505625,0.026354171,0.11051137,-0.49275988,-0.00030644238,0.056220613,-0.36407822,0.4740075,-2.7259915,-0.12877059,-0.12746665,0.36844608,-0.29561415,-0.40621608,-0.13599372,-0.2511199,0.4267815,0.4096649,0.47008696,-0.58970064,0.14915667,0.24253488,-0.519881,-0.097927645,-0.45536494,-0.11942804,-0.039632037,0.38654274,-0.0050248653,-0.03173269,0.08400318,0.104233,0.43284887,-0.13544999,0.061776757,0.2948983,0.37794152,0.0841687,0.40520525,-0.1278891,0.44774023,-0.17673184,-0.27850294,0.4045306,-0.1686036,0.25799048,0.046854727,0.13035989,0.30374128,-0.58413637,-0.8477564,-0.5314053,-0.3798002,1.2835166,-0.20536798,-0.42498007,0.2749291,-0.1913827,-0.21483627,-0.012102647,0.31600848,-0.08118096,-0.12741184,-0.85375947,0.14956364,-0.14649858,0.32943937,0.037714086,-0.0009878222,-0.32543305,0.5535442,-0.09254065,0.4149744,0.45133197,0.29482388,-0.031824358,-0.44812632,-0.033495847,0.8553742,0.480004,0.09811781,-0.16959733,-0.1452648,-0.07567866,0.055997845,0.18219209,0.41747478,0.70347404,-0.07637825,-0.019279974,0.30083093,0.049090486,-0.0041714404,-0.13469991,-0.2972603,0.0037528872,0.01051769,0.5202635,0.5548497,-0.15023576,0.40192485,0.0083514415,0.24750301,-0.011936955,-0.4025392,0.31048387,1.1641113,-0.10439159,-0.19837524,0.5196841,0.37490392,-0.16875154,0.34284413,-0.60493267,-0.18494192,0.29015425,-0.2143325,-0.37888125,0.25499684,-0.27824146,0.037388656,-0.7665267,0.35809493,-0.16487277,-0.32135063,-0.55153537,-0.056898646,-3.1182158,0.15803991,-0.31735724,-0.21235669,-0.0037433207,-0.10666348,0.22216427,-0.6050803,-0.5476142,0.06457654,0.03136523,0.43507618,-0.04831866,0.1510416,-0.08138813,-0.1909627,-0.097085446,0.2115792,0.16366349,0.34052953,-0.06818077,-0.4024667,-0.26209924,-0.12231949,-0.37705874,0.14504063,-0.542092,-0.46261638,-0.16242777,-0.5647459,-0.0744213,0.54229915,-0.21385567,-0.025361504,-0.1731007,-0.05162651,0.007580828,0.2055158,0.21487306,0.29639882,0.14697464,-0.000419572,-0.10110904,-0.25585845,0.24692656,0.18053475,0.095212236,0.41001433,-0.14545724,0.14188376,0.4425999,0.59378153,-0.40403855,0.6685548,0.71497655,-0.23718765,0.15978147,-0.30412143,-0.18725806,-0.6023437,-0.43001068,-0.22329019,-0.36911625,-0.36338657,-0.13711062,-0.35990256,-0.69546103,0.6112591,-0.14373639,0.22310305,0.11673484,0.20782968,0.5436396,-0.14578447,-0.024570342,-0.039048,-0.15808398,-0.5401964,-0.33175066,-0.47452566,-0.39943635,0.10402532,1.0479841,-0.16965199,0.093086705,0.08933702,-0.1112282,-0.07578353,-0.24381047,-0.026691908,0.2272161,0.29087135,0.03778319,-0.57433206,0.41508767,0.05956527,-0.18045889,-0.5112606,0.31315616,0.6066793,-0.4815538,0.4684455,0.2703796,0.16592652,-0.015641594,-0.70837146,-0.18917117,0.1470131,-0.24309412,0.48142558,0.20230368,-0.645603,0.4164986,0.408934,-0.36101547,-0.74787134,0.421304,0.05682522,-0.38040748,-0.028230034,0.24931282,0.079453595,0.0014269948,-0.04224827,0.28695408,-0.25896358,0.29393494,0.25461793,-0.13868102,0.24125805,-0.27750283,-0.20616636,-0.70347714,0.20076498,-0.31008458,-0.31118825,0.2178314,0.12712349,-0.029681262,0.013678558,-0.011918686,0.51039577,-0.28006536,0.12996149,-0.093187325,-0.1798816,0.38623846,0.5085258,0.43188265,-0.3182015,0.47488692,-0.046711173,-0.20175545,-0.23263925,0.05610361,0.5147871,0.005639598,-0.017891195,-0.1712973,-0.16003661,0.2583712,0.698937,0.0987022,0.2602805,-0.046787612,-0.21133173,0.29576743,0.07648165,0.08800937,-0.15654083,-0.5514436,0.08180339,0.037073523,0.16749984,0.4651844,0.22390051,0.17004353,-0.21723863,-0.2981006,0.04389549,0.18795416,0.15874512,-0.965682,0.249915,-0.015786178,0.6777558,0.5596114,0.051392652,0.10530317,0.50220525,-0.23354436,0.037267983,0.3701393,-0.17757083,-0.4297055,0.3355843,-0.7040255,0.28703928,0.03435351,0.050543662,0.0989787,0.13258994,0.3743459,0.64783275,-0.13904089,0.035327815,-0.08195874,-0.17324968,-0.09106937,-0.20958881,-0.0391315,-0.4195198,-0.5240466,0.5077949,0.37466252,0.32393777,-0.23821804,0.0058459695,0.04719732,-0.16993353,0.21778305,0.09474824,0.046678863,0.033812985,-0.4863428,-0.24178548,0.59097016,0.12448138,0.027399998,-0.2068164,-0.055397987,0.23850974,-0.13077597,-0.19484505,0.007476546,-0.6234672,-0.098735124,-0.4537959,-0.23851001,0.28529054,-0.18010822,0.1952965,0.011139078,-0.028665371,-0.31519935,0.3967263,0.18827637,0.9493249,-0.010265827,-0.18720707,-0.3276656,0.28308272,0.10885949,-0.01834502,-0.03787354,-0.21888272,-0.025516734,-0.6576484,0.43404722,-0.050635442,-0.26489776,0.19307593,-0.07299316,0.08007369,0.45217898,-0.11986384,-0.217583,-0.15353154,-0.13503978,-0.35170865,-0.27668908,-0.114815414,0.15207404,0.22951575,-0.09264697,-0.03672822,-0.09510188,-0.16903238,0.46540475,0.10416991,0.3495468,0.18317556,0.2158809,-0.32131055,-0.030830862,0.25396436,0.37963048,-0.011917051,0.058799557,-0.089322865,-0.38877314,-0.38820314,-0.048805848,-0.18684725,0.30850795,0.18180238,-0.25492373,0.70548517,0.12596633,1.1816319,-0.0917195,-0.21614113,-0.0054179914,0.40058398,-0.014681539,0.0019373875,-0.31553152,0.85335684,0.72344077,0.156567,-0.09862722,-0.26766413,-0.2097184,0.16478622,-0.21533093,0.008554585,0.023327818,-0.5877422,-0.3863889,0.22532773,0.21508937,-0.0037227161,-0.12433381,-0.06984091,0.07862497,0.037770264,0.24398287,-0.30749518,-0.10796358,0.29576012,0.30601394,0.057176434,0.17614806,-0.48929375,0.39931154,-0.42667097,0.11398712,-0.29152587,0.20712301,-0.00952634,-0.16845231,0.11897632,-0.14127329,0.38041705,-0.31210092,-0.3314013,-0.14782694,0.53373826,-0.089405224,-0.0071446784,0.5624572,-0.23287237,0.19143632,-0.08325027,0.36386108,0.9479287,-0.37587333,0.057546094,0.33092347,-0.18939418,-0.53576714,0.27626508,-0.16715394,0.049860395,-0.12439961,-0.29987577,-0.38008937,0.1735266,0.11711289,-0.030303083,-0.17979172,-0.48797587,0.00021754764,0.37929735,-0.15798168,-0.2053145,-0.3148329,0.20059796,0.54492986,-0.30231774,-0.49973115,0.1854671,0.16683458,-0.16611725,-0.4438179,-0.09483629,-0.2840136,0.098278925,0.22220583,-0.37588423,-0.049520597,0.1854224,-0.40971002,-0.08794168,0.14479369,-0.25578085,-0.03742356,-0.16790685,-0.060669832,1.0295943,-0.21245612,0.08845119,-0.66997397,-0.49414876,-0.8978361,-0.34248346,0.5340574,0.17418282,0.20754981,-0.67411643,0.08861424,-0.14485914,-0.1894369,-0.15138464,-0.38071537,0.49048156,0.15371999,0.3438664,-0.41399804,-0.6071411,0.15552104,0.13329259,-0.17099324,-0.53595155,0.43077132,0.099017546,0.7686836,0.020732751,-0.017433774,0.24756104,-0.54464495,-0.026805907,-0.18865263,-0.25165823,-0.7755789,0.112046435 -186,0.36307552,-0.48188505,-0.55787677,-0.05006011,-0.30998197,0.061343923,-0.22976987,0.42005745,0.36517325,-0.24900572,-0.29637745,-0.0024656851,0.09027579,0.43227604,-0.085056335,-0.47707224,-0.1615852,0.19340503,-0.90800875,0.5247078,-0.44116846,0.24018593,0.012777676,0.5453896,0.21362989,0.36948976,-0.0694877,0.00033040842,-0.15562868,0.0101079,-0.16808724,0.21329588,-0.28819564,0.15311605,-0.34072772,-0.36372194,-0.07157229,-0.55409044,-0.21894574,-0.7719647,0.24117081,-0.896365,0.41281608,-0.08587208,-0.17987792,-0.10990999,0.13562578,0.3263569,-0.43941274,0.012749898,0.14784779,-0.25885823,-0.124304034,-0.42996237,-0.108821005,-0.17269869,-0.43880963,0.014467905,-0.61379045,-0.20983405,0.111945994,0.1479901,-0.2507194,0.077390805,-0.1504556,0.3909777,-0.34698835,0.037473034,0.25702497,-0.22314803,0.118887536,-0.5427708,-0.10048329,-0.13896897,0.6621554,0.010564745,-0.31143963,0.19202852,0.019258827,0.34299496,0.12906967,-0.033075258,-0.39020595,-0.045917902,0.010708089,0.42244852,-0.036722675,-0.3000025,-0.22449452,0.00443319,0.3361118,0.3285865,0.18316269,0.0052715354,-0.10157832,-0.39843807,-0.049920764,0.39896145,0.52408284,-0.118168555,-0.2208517,0.26433957,0.70010585,0.22616434,-0.22287494,-0.13815863,0.15449262,-0.46065864,-0.12115151,0.16480136,0.118129365,0.502572,-0.15498655,0.36654124,0.68048,-0.0831125,-0.07394511,0.3166686,0.26299548,-0.23046567,-0.11683202,-0.2587407,0.20184632,-0.44850495,-0.106601276,-0.26609704,0.6334899,0.11165205,-0.6666587,0.30350313,-0.54466325,0.14829664,0.07368386,0.5633994,0.6583462,0.66592693,0.30151984,0.5801154,-0.1032238,0.27351937,-0.17156929,-0.20609212,-0.048543725,-0.2982944,0.038293574,-0.48199368,0.047742967,-0.23460786,-0.117695265,0.13828285,0.23626135,-0.40039766,-0.16747682,0.23868118,0.7687004,-0.25842905,0.008146058,0.9844044,1.0514184,0.93852407,-0.023770193,1.1212845,0.22548981,-0.27619907,-0.0099558085,-0.29624236,-0.75835544,0.2830234,0.19945087,0.010880251,0.31496838,-0.20954658,-0.122106604,0.36383566,-0.4275484,0.02547366,-0.021073157,0.07298247,-0.055271637,0.12819585,-0.549155,-0.4302788,-0.090252094,-0.041002158,0.15146005,0.31074923,-0.21116225,0.8087384,-0.11532954,1.2002219,0.017400006,0.12900381,0.05530333,0.5311151,0.15170075,-0.38998964,-0.26675072,0.3325608,0.4542651,-0.02450279,-0.652872,0.20829718,-0.35601643,-0.26661798,-0.2299252,-0.43277565,-0.23475103,-0.091332875,-0.39653122,-0.25912288,-0.1386187,-0.26732242,0.32204646,-2.9004104,-0.15970826,-0.06738346,0.2991434,-0.20767812,-0.19075735,-0.09934324,-0.60763264,0.16264264,0.1402138,0.5222369,-0.5766847,0.56318575,0.53431535,-0.55934256,-0.19212551,-0.7352967,-0.09269027,0.04940496,0.3829787,-0.020926228,-0.02644229,-0.11229285,-0.0680452,0.42151037,-0.12094157,0.14534287,0.58391976,0.37158772,0.17264505,0.40070787,0.00973096,0.5826177,-0.6956131,-0.22641182,0.29697433,-0.49724355,0.2978268,-0.09292061,0.1141826,0.7193659,-0.5351178,-0.807828,-0.5645597,0.10910604,1.2236485,-0.2137508,-0.4099582,0.08440582,-0.4567727,-0.24470067,0.008446634,0.6006294,-0.16331235,-0.03741617,-0.6599908,-0.12955785,-0.040245015,0.40591025,-0.033732913,-0.22794072,-0.3156648,0.5174852,0.06691125,0.47836974,0.20297569,0.26673725,-0.38948452,-0.31831047,0.18989289,0.7470445,0.29068872,0.09884571,-0.16745155,-0.27581692,-0.13024104,0.0354398,-0.005564188,0.60969657,0.5741716,-0.057892993,0.3098152,0.39885625,-0.059948664,0.18911104,-0.13613802,-0.15528844,-0.30054712,0.10745553,0.43069968,0.88120484,0.07445953,0.4824929,-0.14945708,0.33836278,-0.16836546,-0.58529884,0.663846,0.3725666,-0.15009928,-0.102232374,0.51875687,0.59382313,-0.4457613,0.4548813,-0.50334835,-0.40176797,0.4888177,-0.21893823,-0.4807122,0.2954333,-0.21483193,0.32941595,-0.92465204,0.28992102,-0.33354023,-0.66916484,-0.61809134,0.095038615,-2.5342076,0.17513423,-0.08588792,-0.2503282,-0.28349096,-0.22439058,0.09424428,-0.64764816,-0.55103654,0.12982725,0.2764674,0.7225626,-0.081302784,0.11590654,-0.2816514,-0.34612927,-0.22393768,0.14246337,0.25504032,0.32963774,-0.21875028,-0.38214707,-0.2178493,-0.09529825,-0.3065385,0.0861362,-0.7039311,-0.39254078,-0.115133174,-0.5640369,-0.22027718,0.5486564,-0.117744885,-0.084312685,-0.29875395,0.10569444,-0.0042643226,0.1642693,0.14180581,0.19334812,0.33305648,-0.19376232,0.16218686,-0.27825853,0.30220526,-0.0710236,0.2995368,0.1939257,-0.047158808,0.261951,0.45184007,0.73552084,-0.18991889,1.0513563,0.290899,-0.09527326,0.3248487,-0.29135728,-0.50842094,-0.3999475,-0.0454606,0.13667957,-0.396722,-0.46056107,0.08684346,-0.3489267,-0.8794953,0.5996347,0.043047786,0.15567292,0.044687778,0.4169536,0.61990213,-0.2382114,-0.008686185,-0.096073575,-0.14076053,-0.41059077,-0.1715674,-0.58577245,-0.45370165,-0.050163638,0.9796079,-0.30613664,0.29302797,0.13641891,-0.3753238,-0.01863969,0.37008473,-0.081905395,0.42045176,0.29661688,-0.05958948,-0.5318213,0.377786,-0.07583474,-0.11013844,-0.35293683,0.13342385,0.7053227,-0.7707443,0.48756632,0.4099989,-0.22717087,-0.27100155,-0.32123992,-0.17888461,-0.19813816,0.07634201,0.30804673,0.35625347,-0.7287156,0.39603305,0.23400605,-0.31018558,-0.78693324,0.18541966,-0.08884447,-0.2907145,-0.09033672,0.3178878,0.026182557,-0.023369124,-0.3262116,0.024720812,-0.14174609,0.2251123,0.1259668,-0.1609508,0.19657348,-0.19145328,-0.21009858,-0.59918106,0.095837474,-0.6996618,-0.0888525,0.58730656,0.06409419,0.05334571,0.09657026,0.040636253,0.29330435,-0.34012607,0.018943598,-0.088837594,-0.30796793,0.038575575,0.4011283,0.4997207,-0.49698368,0.57865506,0.21591474,-0.1570359,0.15291503,0.12971602,0.38966164,0.01869937,0.6059908,0.029804984,-0.2858347,0.3753147,0.717926,0.14933015,0.4903108,0.11505831,-0.048130322,0.20419516,0.011455932,0.29348293,-0.082555614,-0.29557237,0.14280905,-0.25262523,0.15052259,0.3872957,0.21589704,0.4840289,-0.01434346,-0.21435463,-0.015235364,0.21563102,-0.042618882,-1.38646,0.3393103,0.27420118,1.0307516,0.24689646,0.15841256,-0.2580882,0.9674294,-0.3450351,0.06665416,0.411939,0.032304317,-0.47795844,0.74426794,-0.73228794,0.63360745,-0.06135839,-0.10217222,0.16248192,-0.07843161,0.42155644,0.82713705,-0.1781546,0.035001893,0.13568844,-0.2949384,-0.018801322,-0.38849267,-0.041654978,-0.60586166,-0.24920423,0.7087837,0.20927906,0.4065937,-0.16085498,-0.00850017,0.050334517,-0.08498132,0.34652033,-0.028837243,0.15275294,0.010731672,-0.57694453,-0.15717496,0.4401944,0.0071362355,0.29112545,-0.20632668,-0.21202129,0.13085063,-0.19344972,-0.01542341,-0.0814074,-0.5495787,0.14620103,-0.40273514,-0.6135693,0.5520107,-0.077091396,0.13897176,0.32511592,0.029806962,-0.37580732,0.5764942,-0.06276991,0.89902335,0.05408145,-0.1957876,-0.2574958,0.2984257,0.34289542,-0.2769731,0.07118821,-0.41986713,0.08572116,-0.40894738,0.5474251,-0.1107653,-0.48800114,-0.07657053,-0.10982394,0.10443496,0.62868994,0.004277756,-0.12917687,-0.0051299483,-0.10218062,-0.54320043,-0.12149901,-0.3329155,0.23858233,0.5113357,0.08391412,-0.15264829,-0.1453606,0.10855779,0.5482823,-0.056762848,0.5487938,0.28826535,0.047970247,-0.23009323,0.14881647,0.20191844,0.52291673,0.107294224,-0.09317773,-0.56141937,-0.34888116,-0.35206565,0.30912694,-0.10017016,0.22161962,0.052245144,-0.07399897,0.9142604,-0.106045984,1.070146,0.08134045,-0.42290413,0.2546941,0.48258352,-0.05435745,-0.054746762,-0.42929587,1.0507463,0.32766515,-0.20399855,0.045276266,-0.500278,-0.10926113,0.22189343,-0.31693432,-0.18441705,-0.09165716,-0.43847314,-0.21433748,0.2176673,0.20162497,0.37020028,-0.18299842,0.20344682,0.15963899,0.041258875,0.060861606,-0.56532633,-0.20440382,0.36164376,0.19178851,-0.1611663,0.12054652,-0.49521646,0.43016466,-0.6647265,0.17209864,-0.36457762,0.17447768,-0.20726258,-0.61313206,0.19598271,0.14640388,0.322736,-0.5001194,-0.35078827,-0.29287165,0.5127844,0.22618783,0.16966265,0.48855448,-0.32007158,-0.030159488,0.108640075,0.4590701,0.8274744,-0.4201795,-0.060724467,0.31757903,-0.33792236,-0.691133,0.4001089,-0.41276634,0.10398826,0.050305855,-0.29004422,-0.5828685,0.32894167,0.28074488,0.2572836,0.019326182,-0.5256676,0.065086365,0.21250357,-0.27490622,-0.22245,-0.2959074,0.19009246,0.44103646,-0.14359845,-0.3594946,0.07319348,0.25444514,-0.334403,-0.18310094,-0.15931717,-0.27248582,0.166362,0.04153293,-0.35887408,-0.30176368,-0.07896947,-0.47933707,0.120403,0.11880431,-0.36730465,0.059145138,-0.25423846,-0.08296165,0.91152906,-0.3832368,0.10524962,-0.5218565,-0.5026959,-0.86272925,-0.38241026,0.25067452,0.12860058,-0.07597902,-0.61290646,0.1480356,-0.21194269,-0.36493537,0.03421603,-0.48566106,0.49505547,0.16019075,0.24327934,-0.27702728,-0.9620168,0.3485336,0.12959455,-0.3253775,-0.56166685,0.47088757,-0.05278362,0.7286075,-0.0029768895,0.13531174,0.20085007,-0.447194,0.034484338,-0.251161,-0.08235856,-0.592613,-0.089061834 -187,0.41420987,-0.23918213,-0.32930216,-0.06971731,-0.18286358,0.29265112,-0.09635864,0.58523077,0.07766321,-0.44238696,-0.27551603,-0.041241784,0.07253363,0.3230187,-0.250781,-0.46305415,-0.01585617,0.050505344,-0.3876313,0.45790017,-0.5412093,0.2613408,0.03498963,0.4018126,0.14747874,0.12590149,0.25102803,-0.05067915,-0.19507667,-0.23800558,-0.15543987,0.4520441,-0.6042226,0.166358,-0.12932165,-0.26937088,-0.050811313,-0.5583155,-0.25121668,-0.6496628,0.28530076,-0.7789884,0.46445873,-0.06368209,-0.229344,0.49598065,-0.0052919528,-0.058606192,-0.12179065,-0.05924661,0.06441837,-0.20332159,-0.034648154,-0.0928223,-0.12213968,-0.3170945,-0.61866057,0.1148371,-0.43669635,-0.11203795,-0.3350139,0.08574571,-0.32807282,0.057537686,-0.110987395,0.48067093,-0.3764064,0.0009258111,0.047341242,-0.090400726,0.0491824,-0.61867344,-0.26145914,-0.036503293,0.2710816,-0.11538347,-0.17402062,0.17424326,0.29849732,0.5432397,-0.020349931,-0.09246819,-0.4279059,0.05957579,0.121608034,0.5670967,-0.11716906,-0.6858408,-0.098432206,-0.04270451,0.12021073,0.10903878,0.09253428,-0.02749819,-0.20649152,0.14486523,-0.3019265,0.44657534,0.49023983,-0.3511048,-0.39922467,0.4005141,0.37547073,0.23127867,-0.02435749,-0.19040836,-0.0700318,-0.58269846,-0.16398092,-0.049755827,-0.29002488,0.51495826,-0.15159264,0.41855088,0.50786275,-0.11337362,0.07415802,0.1619907,-0.06772031,-0.038732663,-0.09866008,-0.08766027,0.13403651,-0.33548763,0.17954503,-0.2050705,0.8722111,0.079962,-0.6791201,0.3737827,-0.47328073,0.074193336,-0.020130428,0.47726968,0.7021142,0.42156354,0.286214,0.6453341,-0.4198651,-0.10200158,-0.1003431,-0.3346229,-0.022737702,-0.10180892,0.04286589,-0.39384538,0.08200232,0.10604878,0.06898657,0.12817605,0.5608681,-0.56416625,-0.09387871,0.02481692,0.7290066,-0.2622649,-0.22218233,0.89455277,0.9402153,0.94960773,0.059519656,1.0572107,0.14155678,-0.11796438,0.21139409,-0.21918765,-0.5755759,0.3140463,0.3857538,0.15693693,0.18440336,0.0917845,-0.1595253,0.47173017,-0.30525526,-0.16751833,-0.07208498,0.21072021,0.25217497,-0.056390632,-0.38670298,-0.3519038,-0.02164076,0.10472512,0.2434337,0.22192663,-0.19484147,0.33687654,0.095823675,1.552394,-0.048848193,0.11659489,0.03447113,0.34525642,0.20914944,-0.031804197,0.02998048,0.23668887,0.3346492,0.010565249,-0.6528094,0.124149166,-0.21751957,-0.5518653,-0.050520744,-0.31468162,-0.29041705,-0.039103612,-0.491034,-0.10525061,-0.1193148,-0.2377412,0.488905,-2.9253962,-0.26048508,-0.046831965,0.31927046,-0.24909626,-0.48015943,-0.1525245,-0.53390986,0.4072526,0.33264542,0.48577568,-0.6229182,0.30956066,0.2348834,-0.40848288,-0.19315606,-0.6162731,-0.036482908,0.060077768,0.35993442,0.07634943,-0.1079745,-0.004883909,-0.05805335,0.5885862,0.00012904406,0.07535495,0.26869413,0.4914509,-0.06172615,0.40638825,-0.11684013,0.58507305,-0.2383007,-0.14861819,0.3436327,-0.3979564,0.35840327,-0.29309532,0.18443368,0.44494307,-0.28699768,-0.86457705,-0.49820852,-0.24090174,1.2871678,-0.19780435,-0.35778192,0.14330466,-0.2782753,-0.31152573,-0.12444815,0.49861184,-0.26098996,-0.22264579,-0.6860691,0.1269556,-0.112499915,0.0676479,-0.16636235,0.07038728,-0.43905088,0.7386112,-0.040800128,0.5240365,0.21791814,0.30474842,-0.26420486,-0.32151535,-0.071173854,0.8439423,0.37057585,0.15968424,-0.24988954,-0.18684308,-0.25914487,-0.06755682,0.036153182,0.6624502,0.5221563,0.13526602,0.09225213,0.22698362,0.044104435,0.08129202,-0.1314405,-0.06583848,-0.1321259,-0.025775384,0.60976017,0.63446236,-0.21026926,0.4326714,-0.08789282,0.16878144,-0.16258536,-0.3519925,0.49236667,0.75324327,-0.20742801,-0.19548355,0.48308092,0.5010016,-0.10659196,0.29928395,-0.5867834,-0.42446104,0.535614,-0.28426677,-0.3752761,0.16375026,-0.19523385,0.038440417,-0.8289153,0.29138222,-0.17442027,-0.4600515,-0.5039925,-0.058006745,-3.3270414,0.0669393,-0.13278177,-0.1805922,-0.2593633,-0.30300385,0.16677752,-0.5703477,-0.4814917,0.09219332,-0.009462698,0.51567215,-0.08746579,0.16714977,-0.20664974,-0.28894633,-0.16270946,0.1496512,0.026846886,0.39270738,0.027395133,-0.2935948,0.02226631,-0.15403327,-0.36315867,0.10667197,-0.4746784,-0.6151492,-0.019874847,-0.30833155,-0.26782608,0.6223193,-0.483109,0.007474611,-0.14584453,0.086197615,-0.18028036,0.31389037,0.10991653,0.12012761,-0.026228424,-0.1486194,0.19286604,-0.30856693,0.38518712,0.065734625,0.2692383,0.60844064,-0.15362078,0.21103144,0.48504943,0.5591614,-0.09762935,0.82817155,0.40719935,0.007830739,0.3525941,-0.18710893,-0.3197905,-0.5556352,-0.23955025,0.095485896,-0.3823205,-0.38611418,-0.17921744,-0.36938986,-0.74723023,0.3114414,-0.011610732,0.25080603,-0.056030627,0.24811801,0.595305,-0.19314124,-0.025218975,0.018246295,-0.057035644,-0.43959147,-0.33002463,-0.64750856,-0.49507028,-0.0946735,0.80227494,-0.05259722,-0.09893995,-0.049373914,-0.09867646,-0.018947748,-0.032722507,0.10474005,0.0510382,0.26563555,-0.057856757,-0.7346317,0.5760037,-0.22972156,-0.22996777,-0.5652967,0.109288245,0.43202692,-0.50884384,0.3584981,0.44877282,0.11373221,0.061288845,-0.51976913,-0.06680657,-0.024488676,-0.17732406,0.3236066,0.28793088,-0.83183795,0.5566753,0.25023305,-0.22494844,-0.72198504,0.45149258,0.07538756,-0.16965644,-0.11034998,0.30210114,0.32396472,0.09347191,-0.017747637,0.11656908,-0.59116364,0.39906362,0.13201159,0.01985443,0.41539988,-0.16054249,-0.11982906,-0.57230973,-0.12532404,-0.50124276,-0.2723479,0.087557875,0.12138695,0.2870164,0.10891177,0.04297333,0.36158517,-0.4334673,0.04934062,0.041253287,-0.15016337,0.24473146,0.48169604,0.5669554,-0.3568767,0.51560116,0.06178799,0.16190426,0.24862458,0.043057982,0.3845001,0.100312285,0.29567164,-0.063447244,-0.19744794,0.1391044,0.8834461,0.23840341,0.37547317,-0.055678394,-0.31481716,0.33246696,0.046742365,0.2230352,-0.031352393,-0.6122277,-0.15654215,-0.19256112,0.10626039,0.46714813,0.12356582,0.17998078,-0.10705539,-0.17296289,0.088121146,0.2555482,-0.05543472,-1.0364147,0.27920407,0.19344027,0.91324943,0.2834501,-0.06850791,0.07115352,0.58038986,-0.24033132,0.10567277,0.36630157,0.05699227,-0.53472626,0.571344,-0.6520038,0.55335736,-0.11715807,-0.015306717,-0.026897056,-0.07954321,0.30780357,0.77115405,-0.25450552,0.0006524583,0.08268953,-0.3937095,0.16969274,-0.44948286,0.0824909,-0.54589856,-0.029741786,0.59952277,0.5434478,0.30473742,-0.27330476,0.0069072824,-0.001451395,-0.08608346,0.0029318014,0.072541475,0.16274667,-0.12268147,-0.71002513,-0.2420743,0.48482305,0.050571244,0.32234356,-0.010596156,-0.26855123,0.27238208,-0.19817773,-0.18266346,-0.046355452,-0.564189,-0.017090647,-0.30374387,-0.5853598,0.36155275,-0.055010047,0.21063311,0.20711762,0.07302446,-0.21017241,0.16223131,0.16231653,0.7920862,0.062244065,-0.096115634,-0.51451176,0.103352204,0.17832759,-0.19299483,-0.22285773,-0.09350217,0.029057674,-0.5162327,0.3740063,-0.16449372,-0.22665435,0.094114,-0.08249699,0.09302265,0.5252507,-0.026505915,0.009362808,-0.15647773,-0.07935378,-0.20593044,-0.04388469,-0.09064528,0.2385628,0.19052857,-0.022540176,-0.048428204,-0.17558612,-0.18534207,0.36191124,0.14682934,0.28882682,0.3619335,0.054625355,-0.29397902,-0.247707,0.17716935,0.49953845,-0.013319317,-0.18166028,-0.3492796,-0.4886817,-0.33840886,0.25964484,-0.055924814,0.25472578,0.13293569,-0.35665396,0.50561655,-0.12661512,0.905616,0.11120024,-0.29650465,0.118078716,0.50380933,0.08714385,-0.011684996,-0.3523311,0.8226284,0.30183136,-0.021873252,-0.119484216,-0.27918616,0.08425798,0.2185339,-0.2026886,-0.13879508,-0.12990193,-0.62332606,-0.26958883,0.18351428,0.1956861,0.12795903,-0.06212105,-0.05942136,0.31266102,0.05698339,0.4534694,-0.44658008,-0.30341086,0.37192777,0.2795461,-0.15723284,0.11879409,-0.44282252,0.36306018,-0.4860012,-0.010969511,-0.32032627,0.16793296,-0.25735566,-0.089802824,0.33949342,0.107224144,0.33911,-0.22490098,-0.5487507,-0.21930449,0.33712876,0.04916898,0.14647573,0.3369507,-0.16837,-0.096356824,0.08792852,0.55035007,1.1115577,-0.17540638,0.14085618,0.3381844,-0.31410474,-0.55112004,0.27281693,-0.24299502,0.27180016,-0.0565864,-0.09130522,-0.4490236,0.30322456,0.20264088,0.123560295,0.07226607,-0.56265384,-0.20896521,0.29387966,-0.36634895,-0.152731,-0.2500485,0.026795825,0.65820205,-0.36299124,-0.14109913,-0.010151442,0.5017855,-0.12767392,-0.56652564,-0.0019140482,-0.4117014,0.24012133,0.05998083,-0.28177464,-0.18587811,0.04068796,-0.4176071,0.11246881,0.14416851,-0.3845642,0.0633949,-0.28626218,0.022661678,0.96362215,-0.124986514,0.30022627,-0.56362,-0.42745832,-0.8464883,-0.41269022,0.315631,0.15635915,-0.026888167,-0.5838706,-0.03713386,0.017774506,-0.34275696,-0.28817663,-0.42009124,0.4775623,0.13812803,0.35386616,-0.03367974,-0.5821417,0.09429846,0.06260732,-0.14725937,-0.46604007,0.43676415,0.00030447444,0.71266454,0.08136273,0.12244506,0.18325877,-0.48816955,-0.008993049,-0.22886698,-0.096709736,-0.6981411,0.2044259 -188,0.4901624,-0.15408638,-0.36009842,-0.17197277,-0.22959264,0.06841845,0.040944446,0.6324415,0.2729105,-0.5267503,-0.21818483,-0.11840921,0.052618515,0.35957554,-0.1391281,-0.3871046,-0.10620469,0.21956849,-0.24886532,0.5469378,-0.33438805,0.14603145,-0.03883424,0.37437683,0.30013484,0.22997399,0.11193355,-0.10072769,-0.09788493,-0.026735736,-0.17954509,0.19568512,-0.24188852,0.22595334,-0.13893713,-0.20852332,-0.1634591,-0.4032095,-0.54215336,-0.6024162,0.29260358,-0.8114267,0.4415613,0.05440358,-0.30620885,0.22708273,0.12678306,0.13518612,-0.26505685,-0.13124852,0.111912645,-0.090593934,-0.11437803,-0.020150738,-0.255162,-0.39345565,-0.67472553,0.04180903,-0.34462887,-0.04972999,-0.2518272,0.112224944,-0.25357205,0.03445879,-0.033556927,0.640746,-0.46664667,0.005784946,0.21296777,-0.06417515,0.21295373,-0.5651616,-0.29475325,-0.11507309,0.06688338,0.0005538038,-0.15339363,0.21504009,0.18812343,0.53560865,0.038221035,-0.1662864,-0.42841062,0.0911634,0.18276688,0.3960307,-0.13381882,-0.4914675,-0.095492296,0.03390014,0.106141694,0.15691397,0.20549321,-0.17492998,-0.07860743,-0.001563615,-0.23150167,0.23593964,0.5409516,-0.3267137,-0.31675526,0.2789778,0.5268847,0.09012937,-0.09031495,0.12585507,0.063823715,-0.45257896,-0.127612,0.13220957,-0.3065037,0.4237546,-0.20942652,0.18602024,0.63359743,-0.064147435,0.023442533,0.123581044,0.12006029,-0.1686076,-0.3423273,-0.27870402,0.20841815,-0.36778498,0.10548238,-0.19009556,0.84757644,0.09175815,-0.6523534,0.35553154,-0.42718214,0.10939933,-0.1747709,0.58840907,0.75913346,0.39831728,0.31501994,0.7918028,-0.5381459,0.05104759,-0.06355082,-0.26068333,0.022631368,-0.33149812,0.057865627,-0.4948559,0.06750367,0.17942719,-0.13294338,0.08354299,0.4381786,-0.52165633,-0.12797494,0.22530816,0.83939266,-0.24127932,-0.18562688,0.7409074,1.0990674,1.1306822,-0.016168715,1.1306683,0.22604367,-0.251947,0.31844258,-0.41721103,-0.6102807,0.26780573,0.33047524,0.1649182,0.23862895,0.2079118,-0.06613269,0.43250656,-0.50288856,0.23065689,-0.21417579,0.17988972,0.22145705,0.003821837,-0.6239766,-0.271357,-0.070068516,-0.010177836,0.090542056,0.27078578,-0.23653051,0.43982217,-0.0448533,1.4967527,-0.08478771,0.073327705,0.14630143,0.57719034,0.11998731,-0.12380849,-0.01760319,0.19869767,0.38778922,0.008445693,-0.5220021,0.07983035,-0.25386587,-0.5226273,-0.16168118,-0.38233638,-0.014144421,0.012163149,-0.3461308,-0.26033238,-0.09662681,-0.464818,0.49168745,-2.861738,-0.08626156,-0.16997358,0.22170623,-0.32450086,-0.19726953,-0.11481058,-0.5025105,0.38589495,0.4113277,0.4544745,-0.6019088,0.30994597,0.37301686,-0.57565576,0.016227547,-0.62563807,-0.1392755,-0.0058573857,0.27902856,0.07882075,-0.042054687,0.008008054,0.0056685847,0.5433451,0.13929807,0.088743985,0.34514898,0.19642615,-0.06739468,0.40063688,0.010767804,0.42155287,-0.40409917,-0.15220536,0.33251157,-0.41579083,0.3402141,-0.122870855,0.09561723,0.43199316,-0.47377634,-0.8164524,-0.6658906,-0.27469888,1.1604671,-0.15181002,-0.41622752,0.27725604,-0.4905631,-0.14089386,-0.21299376,0.4138965,-0.039019644,-0.079206966,-0.7323019,0.034038033,-0.023382109,0.13392247,-0.06660309,-0.10497146,-0.36410183,0.80917877,-0.14460757,0.44511017,0.29906994,0.24801077,-0.21270457,-0.46110025,-0.09910832,0.86254823,0.34562683,0.22292754,-0.34918588,-0.14014748,-0.26371303,-0.016409626,0.13183047,0.40230063,0.68107444,-0.04792715,0.14645095,0.32643035,-0.1522971,0.022913763,-0.10716241,-0.2654869,-0.23803915,0.027347814,0.51236063,0.56219697,-0.18664908,0.45471165,-0.103040814,0.17512035,-0.20372984,-0.4498089,0.52513236,0.7816051,-0.20588997,-0.28493157,0.7070006,0.45535257,-0.239264,0.38395265,-0.59474134,-0.21576142,0.36421484,-0.20768784,-0.45170647,0.09439434,-0.3052986,0.14159729,-0.84442186,0.2024722,-0.12817322,-0.6258135,-0.67808914,-0.23001392,-3.1279018,0.1572849,-0.29487085,-0.1539763,-0.01733877,-0.15549162,0.13206184,-0.48296303,-0.5139778,0.11723036,0.12607644,0.5773039,-0.0059407055,0.11941451,-0.25853658,-0.17823134,-0.40558833,0.10292149,0.1302586,0.41992992,0.008613442,-0.4977487,0.18706551,-0.15616255,-0.330762,0.05049435,-0.5054253,-0.42895707,-0.16675122,-0.43073195,-0.2562436,0.6322052,-0.17933048,0.07508982,-0.25257155,0.09799502,-0.0467331,0.3507342,0.04041825,0.060080696,0.027434302,-0.16171576,-0.061622698,-0.21915627,0.31776902,0.022198277,0.28719422,0.53163016,-0.23752262,0.21308824,0.6482153,0.60138696,-0.1699277,0.9022705,0.5160402,-0.14510758,0.29986525,-0.08710242,-0.19754918,-0.6323532,-0.24671866,0.058527704,-0.4313822,-0.5613564,0.0045567728,-0.443427,-0.85624474,0.43297943,-0.091495454,0.25467104,0.025936173,0.16117702,0.534129,-0.21966311,-0.042731855,-0.09110014,-0.016511496,-0.51256853,-0.45773202,-0.57742226,-0.41609356,0.10931207,1.1832651,-0.119289406,-0.03678439,0.042082172,-0.33920184,-0.12062865,0.15957732,0.013248699,0.061246864,0.30220848,-0.060855594,-0.6303426,0.4937226,-0.02415136,-0.07458626,-0.48684484,0.15436853,0.4732018,-0.544654,0.63336354,0.2688866,0.009201725,-0.26660845,-0.5381391,-0.31762895,-0.20698296,-0.1611634,0.4423013,0.31052682,-0.7913098,0.41126126,0.27228004,-0.17995723,-0.68187344,0.29720405,-0.20845161,-0.12988926,-0.06897645,0.20295106,0.18290953,0.07157964,-0.040699024,0.17949335,-0.5009132,0.31596407,0.20695509,-0.07241493,0.47469348,-0.32879406,-0.029041896,-0.7110086,-0.10949645,-0.55834335,-0.18016061,0.19817649,0.2362751,0.04511704,0.17821583,0.1208729,0.30745682,-0.16892365,0.060890593,-0.03575284,-0.19963823,0.35879937,0.38819164,0.4382317,-0.40217176,0.5666925,-0.019611444,-0.0535466,-0.14622001,0.053737137,0.36818728,0.18763314,0.5054391,-0.024270449,-0.27779204,0.33113092,0.7603885,0.13016108,0.37980422,0.08066652,-0.21054378,0.32958835,0.03590416,0.12287096,-0.086141475,-0.4730343,0.06621856,-0.40699467,0.21038045,0.3276895,0.03354075,0.29827383,-0.10843585,-0.19408357,0.022268338,0.0629846,-0.073021926,-1.1555965,0.34706184,0.12981136,0.7842316,0.44704625,-0.14328308,0.024527239,0.8012987,-0.14588512,0.13883924,0.36680847,0.010829815,-0.49870104,0.5300259,-0.78699905,0.5657913,-0.1760305,-0.02386961,-0.059502963,0.08434786,0.42796776,0.7066363,-0.16857982,-0.051558454,-0.009762117,-0.3381284,0.21371116,-0.36347532,0.15345682,-0.65464103,-0.2559475,0.62726074,0.4865659,0.3892088,-0.16397677,-0.13876083,-0.011489208,-0.0491353,0.20882292,0.020755777,0.014091419,-0.10262631,-0.7448665,-0.20021142,0.39641237,-0.027155945,0.1256477,0.11075957,-0.2962316,0.10674051,-0.16338839,-0.0971811,-0.011127566,-0.6208415,-0.16231187,-0.032135185,-0.52604616,0.5287576,-0.2382917,0.23080473,0.16992855,0.03877973,-0.30733898,0.12207612,0.13619994,0.7382179,0.103829265,-0.006928146,-0.4212803,0.10095105,0.16521141,-0.16176929,-0.04569786,-0.12969811,-0.031900745,-0.53785,0.48916644,-0.11368593,-0.35154122,0.17216758,-0.17889588,0.106857695,0.6027976,-0.045444604,-0.17746632,-0.16282938,-0.12943214,-0.16390514,-0.117940806,-0.11167423,0.35811,0.013182678,-0.113330826,-0.08689667,-0.2065516,-0.0039057645,0.33285522,-0.0058413935,0.12316205,0.30120543,-0.012324593,-0.37638143,-0.020326529,0.024966117,0.48730135,0.1114353,-0.2199484,-0.22278509,-0.4243376,-0.38098165,0.037013438,-0.052004304,0.3643051,0.09367271,-0.2208227,0.7463408,-0.009044362,1.1286548,0.16025412,-0.26405627,0.05115175,0.55124,0.13955572,0.024842722,-0.28059798,0.7148548,0.5637342,-0.077413134,-0.1692132,-0.44504303,0.02994422,0.33439466,-0.16545229,-0.24470364,0.010583489,-0.74521226,-0.08683065,0.319109,0.19038823,0.2603285,0.001125506,0.07230624,0.27049378,0.049583912,0.33680254,-0.39700913,0.035016876,0.32880202,0.2873638,0.09061653,0.1732903,-0.4591309,0.29921764,-0.5923328,0.10107745,-0.0821533,0.14397492,-0.32574818,-0.29739183,0.23499136,0.120592274,0.39066792,-0.22876532,-0.3656569,-0.25648025,0.64819556,0.12668599,0.13363603,0.5340117,-0.24979319,-0.030824449,0.113447435,0.33828807,1.1407877,-0.23206301,-0.04976097,0.28436682,-0.30681768,-0.7733223,0.48169836,-0.33502308,0.22346577,0.020648832,-0.17976543,-0.5307463,0.24769759,0.31696066,-0.06358336,0.2127619,-0.46611255,-0.25561953,0.2318631,-0.23755255,-0.12597312,-0.22450288,0.06353139,0.3178773,-0.2528431,-0.35614982,0.12957491,0.40567896,-0.17490695,-0.4909628,0.034317903,-0.3519661,0.22225295,-0.014339762,-0.31921116,-0.18804535,-0.049538057,-0.3649709,0.06600394,0.13185073,-0.32889947,0.113428764,-0.4453195,0.008072809,0.79281455,-0.024984797,0.27223763,-0.5536226,-0.37406272,-0.99273056,-0.29820684,0.5714571,0.093151286,0.006826737,-0.63134444,-0.092040464,-0.015761668,-0.0034469196,-0.08337224,-0.45537874,0.52594304,0.20262916,0.1426083,0.027876165,-0.5922271,0.009905956,0.021345254,-0.15394258,-0.45168135,0.4384443,0.0095331585,0.8958092,0.03552956,0.122377574,0.16603382,-0.47277775,0.10097255,-0.17559426,-0.34677932,-0.5039584,-0.05156415 -189,0.4850915,-0.30374128,-0.59936535,-0.23907068,-0.36204183,0.012470186,-0.117875576,0.54557663,0.42202282,-0.2759507,-0.21318534,0.043360915,-0.09386459,0.5855928,-0.04037216,-0.689147,-0.14834116,0.39603505,-0.7070935,0.33455828,-0.5447762,0.33419684,0.032869585,0.6314402,0.34613177,0.1016307,0.047295276,0.14561652,0.046928708,-0.023588635,-0.13507096,0.06802028,-0.6738506,0.16562063,-0.124606244,-0.47148356,-0.12522994,-0.6431639,-0.46390417,-0.8619999,0.31685528,-0.80570805,0.67365205,-0.18012494,-0.41762236,-0.005221344,-0.13251002,0.45976508,-0.24762344,-0.044403236,0.06185821,-0.3137874,-0.021870123,-0.07822948,-0.21904516,-0.2665578,-0.6422437,0.08956626,-0.36801973,0.056468066,-0.036780927,0.20924759,-0.32529134,0.19088922,-0.26828325,0.45707244,-0.42313722,-0.0372695,0.33985013,-0.03162516,0.11869724,-0.55241495,-0.08771643,-0.124559216,0.24908789,-0.063489676,-0.44029078,0.43239185,0.12382027,0.5158889,0.031948544,-0.33609724,-0.36992413,0.24635626,-0.1047926,0.52176386,-0.04454496,-0.14608835,-0.2517667,0.1559796,0.41980588,0.16540115,0.15594281,-0.30901968,-0.045176193,-0.091759324,-0.0036532064,0.40259778,0.5716725,-0.11068843,-0.34798643,0.37618113,0.5681459,0.2050763,-0.145134,0.13776976,0.03427378,-0.446303,-0.26853037,0.052091785,0.0115374625,0.61551976,-0.06046558,0.09431729,0.6670481,-0.16864859,-0.17442217,-0.16073965,0.016823424,-0.01817772,-0.2151498,-0.4307022,0.39080402,-0.41142145,0.14557594,-0.15112998,0.70900434,0.15116,-0.88779837,0.32415628,-0.6059834,0.17923234,-0.12139486,0.57193416,0.8497869,0.5639684,0.4204519,0.929521,-0.34096593,0.23267728,0.08336795,-0.25173455,0.05842581,-0.36300188,0.10262347,-0.578334,-0.0731225,-0.20491745,-0.41066784,0.2323922,0.37094492,-0.52995586,-0.2077999,0.14324124,0.5345137,-0.37877047,-0.13766812,1.011734,1.0271122,1.4669833,0.008874022,1.3313669,0.51232064,-0.21302794,0.08391642,-0.2750935,-0.7375324,0.19676143,0.24927877,-0.071811154,0.5695589,0.2110621,0.051551003,0.46193865,-0.46249834,0.14517072,-0.053583078,0.07520158,-0.06847232,-0.2527725,-0.6714236,-0.3762059,-0.034960486,0.09007345,-0.1062839,0.20645168,-0.22437309,0.5625596,-0.082292095,1.4713603,0.13443601,-0.102161855,-0.17717507,0.49161574,0.1503224,-0.40743554,-0.20505606,0.16401243,0.44834307,-0.060623664,-0.54842955,-0.01523019,-0.21574384,-0.23797584,-0.3383651,-0.3160186,0.09557601,-0.19396609,-0.2980832,-0.45681483,0.123854086,-0.33914807,0.42069948,-2.2718992,-0.38257995,-0.0004890424,0.44111776,-0.2317964,-0.2993233,-0.34592983,-0.52518976,0.2321654,0.28957975,0.45318073,-0.65332484,0.53984326,0.37008965,-0.60662407,0.0080823535,-0.77737737,-0.0057412717,-0.040259197,0.10011094,0.061471164,0.015858008,0.02130166,0.25676885,0.53952396,0.001182657,-0.091760635,0.3492281,0.5134437,0.015241535,0.58808476,0.12960881,0.6301244,-0.2802337,-0.15595399,0.5056461,-0.41128725,0.26913476,0.015308435,0.1137968,0.5715493,-0.55508846,-0.96061075,-0.67998636,-0.22687952,1.0973128,-0.23751648,-0.44141,0.16125718,-0.43493763,-0.27556032,-0.013859218,0.3622728,-0.25720122,-0.14335373,-0.7671871,-0.28570688,0.0104536135,0.17315117,-0.15887544,0.12772718,-0.4305383,0.728444,-0.22953771,0.44430712,0.32827452,0.29144618,-0.12114586,-0.5409809,0.12730144,0.64772826,0.41656816,0.037877623,-0.38065946,-0.17988107,-0.3093694,-0.106847286,0.07302875,0.6771222,0.82821345,-0.13560233,0.025038539,0.39151695,-0.11995772,-0.003557824,-0.093555965,-0.2657178,-0.20758596,0.07484623,0.71087563,0.86379296,-0.016083479,0.57734144,-0.2081872,0.36814228,-0.0902651,-0.6412243,0.42812902,1.0548947,-0.08777615,-0.327956,0.55596775,0.2903645,-0.3922083,0.46183822,-0.6548337,-0.15293801,0.54889137,-0.12917353,-0.42686528,0.06618762,-0.29912958,0.17848851,-0.960344,0.24678575,-0.18277279,-0.76595265,-0.7329976,-0.11639003,-2.409611,0.23034477,-0.19249766,-0.03659759,0.14774022,-0.2754238,0.10518393,-0.6129292,-0.6780042,0.1432376,0.10712687,0.77111787,-0.13750489,0.11033575,-0.23079923,-0.38944536,-0.5898832,0.11694532,0.22567087,0.38766003,0.18669364,-0.44986537,0.0065792296,-0.35064286,-0.57105607,-0.11987886,-0.5066324,-0.5863912,-0.17091586,-0.61321265,-0.24284038,0.75424665,-0.17781116,-0.01844268,-0.26269552,-0.07813854,-0.03008771,0.31041953,-0.036463786,0.17018102,0.2183555,-0.116012216,0.05051162,-0.22262612,0.14513296,0.13122591,0.27304807,0.2818101,-0.28399172,0.34897742,0.7293087,0.86659235,-0.20366624,0.80856353,0.64076483,-0.060429677,0.09125516,-0.2855763,-0.33211783,-0.5544884,-0.3004637,0.03867685,-0.5463116,-0.5393836,0.022762362,-0.42980674,-0.9012815,0.5045481,0.050709084,0.2338999,0.01417185,0.18976879,0.46674532,-0.14070979,0.07250631,-0.21701597,-0.21847233,-0.48825103,-0.52911896,-0.5724139,-0.81199265,0.0003515436,1.5716617,-0.22604735,-0.10104329,0.07299283,-0.47354227,0.22397092,0.17160845,-0.015123367,0.22870715,0.39084688,-0.18189393,-0.7184218,0.16810082,-0.15535937,-0.07603859,-0.6817159,0.25095236,0.8439734,-0.6784068,0.5584539,0.26117644,0.09858456,-0.012215889,-0.61225986,-0.23878966,0.043980367,-0.22639173,0.598726,0.18321027,-0.613171,0.5166077,0.18047282,-0.34763744,-0.82512534,0.34913927,0.02789358,-0.19111618,0.15128693,0.30806285,-0.019569525,-0.12690265,-0.14443733,0.18343224,-0.2988581,0.21685314,0.31401294,-0.0032336162,0.043029718,-0.135689,-0.10636163,-0.86429024,0.04916317,-0.49281585,-0.23588815,0.100024,-0.013643329,0.2993077,0.10334036,0.31995642,0.4029735,-0.28235114,-0.007836049,-0.18464173,-0.3956159,0.3546788,0.39043632,0.3461315,-0.6066069,0.41082558,0.019842682,-0.047416206,-0.16573256,-0.109485865,0.50860494,0.12969472,0.30603957,0.033410322,-0.19807778,-0.026170429,0.6972742,0.14231645,0.33463022,0.11299021,-0.27614796,0.2034766,0.17848638,0.37995753,-0.16830167,-0.33834165,0.096842125,-0.13774301,0.12904137,0.41242367,0.12777187,0.22484706,-0.1552584,-0.2174216,0.24696253,-0.05946815,-0.12689625,-1.4413153,0.34163183,0.2656494,0.7881348,0.40527514,0.083776586,-0.028837048,0.5427391,-0.320947,-0.028242959,0.37518212,0.07445033,-0.42609993,0.3886864,-0.8124279,0.7357362,-0.0023488174,-0.07602322,0.11283016,0.28185174,0.64011735,0.73446363,-0.19290353,0.1421803,-0.09830657,-0.21480642,0.09935036,-0.427474,0.07535012,-0.74255586,-0.2961049,0.84616387,0.47939974,0.21785532,-0.14693156,-0.033725794,0.12691043,-0.14055657,0.21755633,-0.09354151,0.0180298,-0.0979581,-0.5771754,-0.10261158,0.39893436,-0.10545553,0.1007029,0.089774676,-0.2556799,0.20151018,-0.007999329,-0.13050058,-0.08381862,-0.863566,-0.16062821,-0.27415258,-0.31392428,0.35485518,-0.21571186,0.2156225,0.31372282,0.10297756,-0.28229827,0.25792646,0.16192767,0.92269295,-0.024551813,-0.13693729,-0.24684022,0.43884417,0.4507096,-0.29057792,0.1407196,-0.21662034,0.15470974,-0.5282455,0.5208152,-0.1136819,-0.37107605,0.24129097,-0.010003943,0.11925352,0.47569358,-0.41179106,-0.05784715,0.06412207,-0.14431018,-0.36733896,-0.03976554,-0.37837875,0.17889158,0.22716962,-0.2643908,0.05322526,-0.1169442,-0.026736412,0.6177209,0.096146055,0.45393452,0.29228115,-0.07543153,-0.5467026,0.033052288,-0.04345296,0.5607985,0.08498581,-0.3540146,-0.43087056,-0.14656268,-0.17590424,0.53434426,-0.11330093,0.22169194,-0.07090182,-0.22987872,0.747583,0.22285904,1.336092,-0.06158749,-0.40692917,0.117280684,0.43174013,0.0937867,-0.04582715,-0.40291756,0.8386074,0.5761285,-0.23453853,-0.16784708,-0.51250046,-0.2633261,0.20238511,-0.29361948,-0.2784731,-0.07479981,-0.6390223,-0.3307049,0.2861245,0.072139755,0.28857836,0.015838921,0.2309852,0.2263643,-0.009116737,0.24813154,-0.30646896,-0.05647662,0.3099306,0.30254197,0.1262376,0.14216632,-0.4431335,0.2764838,-0.7293111,0.20292324,-0.28780425,0.2363564,-0.064819574,-0.4106825,0.25655302,0.28185028,0.28842023,-0.25135672,-0.31840461,-0.2111505,0.7154738,0.09866944,0.3284282,0.6404246,-0.37952673,-0.056404114,0.11947692,0.29433915,1.1954093,-0.14580499,0.07225268,0.4299464,-0.25354654,-0.5726929,0.42167705,-0.2845463,0.19158009,-0.23059757,-0.13447258,-0.52629536,0.2339332,0.14158115,-0.07915783,-0.019576816,-0.52969843,-0.06577717,0.4133926,-0.32916468,-0.24801056,-0.52493036,0.14645208,0.5344285,-0.19288823,-0.53664887,0.15103036,0.35538864,-0.2640669,-0.3042646,-0.05857639,-0.35299274,0.36308765,0.0036565156,-0.5041597,-0.10132969,0.107636735,-0.44249514,0.14537184,0.3085931,-0.24904467,0.08075416,-0.2690908,-0.03031081,1.0264008,-0.18913788,0.33086884,-0.5985777,-0.54457414,-1.0148141,-0.22289586,0.24870084,0.28525797,-0.15722473,-0.8130747,-0.025147915,-0.068555556,-0.2736935,0.09091788,-0.3163031,0.37155226,0.12351458,0.34821442,-0.13705133,-0.9621607,0.08315016,0.13138393,-0.3128114,-0.51408905,0.57487065,0.10689933,0.8193274,0.12598008,0.2126335,0.06114857,-0.4766768,0.32749635,-0.31075552,-0.011977638,-0.58548015,-0.14504327 -190,0.5056971,-0.14045796,-0.7092669,-0.17623088,-0.1889676,-0.05624054,-0.16536275,0.57932854,0.4030167,-0.58197045,-0.029933687,-0.15417242,0.049662385,0.32393014,-0.11102597,-0.9100244,0.04012336,0.102350764,-0.31859922,0.37066585,-0.5309399,0.23720933,0.012384562,0.43985754,-0.0032285315,0.3432789,0.047344215,-0.16735809,-0.23732966,0.08680061,0.110667855,0.37532216,-0.6416407,-0.012260542,-0.20190524,-0.53676426,-0.011241629,-0.4004621,-0.3135412,-0.8121396,0.23895656,-0.9414254,0.5818247,0.10246888,-0.23874448,0.10887631,0.06747702,0.3597023,-0.17108376,-0.008381454,0.069970004,-0.13230838,-0.11035024,-0.055502467,-0.36825606,-0.40340585,-0.7048045,0.13148521,-0.54295933,-0.14388403,-0.15534171,0.176783,-0.39516622,-0.045315165,-0.044341806,0.40822938,-0.43925434,0.0007252005,0.47270775,-0.26064676,0.244968,-0.494103,-0.15778781,-0.114514045,0.25269663,-0.34060115,-0.19675387,0.19699809,0.35058963,0.6567334,0.01998098,-0.22484763,-0.46668437,0.122325465,0.1555818,0.46856144,-0.32591864,-0.45402622,-0.2562161,-0.003663627,0.15783194,0.18017527,0.26371816,-0.32301766,-0.028705252,0.27870587,-0.3118604,0.54186434,0.51904666,-0.42552102,-0.33812454,0.28646448,0.6905309,0.16300732,-0.109896615,0.23603126,0.13952607,-0.631503,-0.17758912,0.086058766,-0.00890686,0.5729404,-0.12513022,0.39408982,0.6974067,-0.2694553,0.06988193,0.13069037,-0.06073194,-0.06904158,-0.4689485,0.021266231,0.33368963,-0.554113,0.17305861,-0.25948766,0.66977566,0.20290898,-0.7821313,0.5271858,-0.5988294,0.19003186,-0.1881106,0.45350948,0.7618809,0.363373,0.18618724,0.711462,-0.50053203,-0.030077608,-0.16098131,-0.43620747,0.18022236,-0.18523829,0.18056811,-0.56073844,-0.04750618,0.10956991,-0.010203783,0.14651111,0.42213762,-0.7669001,-0.19834067,0.0888577,0.9532187,-0.20124982,-0.30091858,0.78686213,0.93457425,0.93084234,-0.004734484,1.3060964,0.23963414,-0.1359489,0.39600563,-0.24738643,-0.8934291,0.34668657,0.2148606,-0.44868377,0.38438734,0.114440314,-0.13828024,0.67346615,-0.0839426,0.13638255,-0.24590485,0.1442443,0.09341756,-0.22358854,-0.24130957,-0.15074867,-0.10746614,-0.12513056,0.16137783,0.22169748,-0.17873494,0.2786555,-0.047079865,1.7141589,-0.10871542,0.16212787,-0.009462396,0.4453955,0.22432338,-0.009896123,-0.08066854,0.14527723,0.10147548,0.21158998,-0.44535863,0.016240034,-0.35619453,-0.38114703,-0.18255973,-0.28754783,-0.079952836,-0.15220676,-0.6061715,-0.02656732,-0.23394577,-0.24159074,0.51285917,-2.6080606,-0.46088293,-0.06546379,0.3531067,-0.29662278,-0.4672824,-0.25229752,-0.50094444,0.38773707,0.29098222,0.6224978,-0.6821892,0.53665245,0.4649674,-0.51924396,-0.19469476,-0.61294395,-0.02372215,0.0077803116,0.17547092,0.01500519,-0.20107096,0.0636808,0.067605644,0.46066907,-0.1115931,0.012980044,0.16899508,0.5318369,0.034531567,0.50924563,-0.18967216,0.57556546,-0.4265533,-0.35779646,0.421968,-0.5140184,0.22188465,0.06215691,0.19173428,0.33418098,-0.38214386,-1.1269794,-0.7104736,-0.21827963,1.0404203,-0.077706866,-0.39873645,0.24414761,-0.24572141,-0.37997568,-0.070600815,0.47583383,0.104624666,0.12918499,-0.984269,0.13134386,-0.22482744,0.10170819,0.074842535,-0.03499544,-0.35683715,0.682676,-0.07366009,0.3180175,0.45117614,0.21581668,-0.32033885,-0.44665065,0.014930775,0.9713509,0.2654628,0.267953,-0.23990703,-0.15938346,-0.42408556,0.006477113,-0.03962861,0.4567959,0.76797396,-0.043661237,0.10426761,0.39161575,0.098034345,0.0834713,-0.15072764,-0.5435949,-0.14202839,0.10878681,0.54283834,0.7309406,-0.4614625,0.46518677,-0.04710158,0.30151328,-0.16330583,-0.53524274,0.55448794,0.74513364,-0.30970463,-0.2825094,0.5211626,0.28453708,-0.5660082,0.5604066,-0.70057285,-0.36701304,0.38903424,-0.12298965,-0.5371708,0.1511685,-0.37567872,0.082775064,-1.1526299,0.33728755,-0.40633598,-0.20893258,-0.38473716,-0.18083474,-4.0253034,0.3272038,-0.28446567,-0.012115465,-0.1285004,0.053697143,0.22427002,-0.6511863,-0.67972213,0.061288558,0.07464767,0.7104542,-0.19752708,0.23239782,-0.21848282,-0.19620475,-0.27823588,0.09545044,0.30347925,0.26419163,0.16237105,-0.5046384,-0.13733752,-0.19996572,-0.4167022,0.19608487,-0.7805638,-0.56003857,-0.17487676,-0.67243415,-0.45023945,0.8298202,-0.46530694,-0.05431857,-0.25563082,0.0736317,-0.18981239,0.5022641,0.02761209,-0.022310909,0.12495036,-0.028791877,-0.12247959,-0.31896812,0.23820625,0.056860503,0.3913002,0.5009599,-0.18550865,0.3008157,0.76911074,0.88917965,0.08312443,0.7547282,0.41027215,-0.03298148,0.5156586,-0.3213348,-0.23238172,-0.5703167,-0.3088468,-0.14781576,-0.51312315,-0.48363918,0.10524011,-0.47958058,-0.804511,0.67352706,-0.036413677,0.21643569,0.02848067,0.2465879,0.50612324,-0.22922009,-0.04489263,-0.046992872,-0.1281529,-0.65966755,-0.2184073,-0.62101454,-0.7527527,0.29358435,0.97761977,-0.23975648,0.13097824,0.14100455,0.05755993,-0.059807695,0.2586344,0.027749704,0.023602795,0.42752403,-0.13392219,-0.67396134,0.2692444,-0.15779015,-0.23426184,-0.7186357,0.20660533,0.66162056,-0.75953037,0.67420095,0.45087084,-0.009200765,0.17545575,-0.46480274,-0.22098824,-0.073364064,-0.15126348,0.43319356,0.15741429,-0.8728227,0.30309445,0.58215725,-0.40951693,-0.766952,0.5349939,0.0010140401,-0.051229276,-0.26296562,0.35991937,0.3546345,0.03087853,-0.09638921,0.13458739,-0.62302697,0.18077613,0.31308177,-0.15571795,0.6990309,-0.03968393,-0.2200033,-0.81461406,-0.035634033,-0.6003936,-0.2101159,0.32219216,-0.031966303,0.0739384,0.17290555,0.19301279,0.31858653,-0.3582168,-0.056275897,0.042980433,-0.3672557,0.34295514,0.4899792,0.46114329,-0.4719132,0.55312085,0.042433456,0.014429687,0.20167473,0.048509717,0.5615541,0.03822631,0.42568704,0.24513103,-0.229093,0.10613643,0.9297434,0.05550613,0.5349124,0.13521956,-0.068245456,0.20715433,0.13504909,-0.039709788,-0.02235315,-0.6770052,0.1046933,-0.05681192,0.31693304,0.7054583,0.17426819,0.4113262,-0.04104883,-0.32252836,-0.038994495,0.22394362,-0.024630278,-1.3894426,0.3371844,0.25088698,0.88736284,0.44681823,0.02791948,0.14176022,0.46228102,0.0031569095,0.3799414,0.3886132,-0.2278967,-0.56170404,0.5650657,-0.7293597,0.49341744,-0.054605342,0.10968404,0.005559903,-0.025224468,0.53841734,0.7205691,-0.10033217,0.089490525,0.032848544,-0.21175869,0.0802302,-0.39669976,0.04241127,-0.47496212,0.0043684775,0.7266003,0.7106037,0.44665247,-0.29696035,-0.044644687,0.08902935,-0.15226871,0.1888097,-0.19470263,0.11259708,-0.04276941,-0.61754006,-0.29681316,0.69490504,0.34722683,0.22468887,-0.100532,-0.29240987,0.41856554,-0.20561828,0.0011302003,-0.11551531,-0.59907866,0.02358046,-0.42477494,-0.5491969,0.5421802,0.09004469,0.22298828,0.21378095,0.119203515,-0.4077751,0.62161297,-0.18787311,0.7450023,-0.093878284,-0.23910233,-0.52485776,0.28588736,0.3104514,-0.29572052,-0.21685347,-0.4181088,0.06887508,-0.4120132,0.468963,-0.07597707,-0.31283984,0.06206518,-0.0626687,0.08473361,0.512246,-0.21208392,-0.20916547,0.13672183,-0.10690796,-0.36666644,-0.22920145,-0.08376704,0.38581496,0.19203441,-0.15606873,-0.18661068,-0.33978537,-0.09246038,0.31504014,0.09131804,0.19166987,0.6052858,0.29891348,-0.40402335,-0.22295941,0.4713165,0.63959056,-0.03223961,-0.2867892,-0.39407298,-0.44964063,-0.43668908,0.18340406,-0.039457038,0.29871178,0.13878478,-0.45973492,0.8862504,0.24477316,1.4474883,0.16803357,-0.3398258,0.17271669,0.38690245,0.006276449,-0.08759807,-0.4284202,1.0230597,0.6166087,-0.29662606,-0.16935118,-0.521048,-0.20797648,0.095586725,-0.35535547,-0.06999591,-0.048364595,-0.71777225,-0.255604,0.20858786,0.33403173,0.23910214,-0.19554369,0.21386887,0.20544806,0.00060529204,0.219692,-0.58659387,-0.22821061,0.21096256,0.6080569,-0.10171522,0.14418888,-0.37508953,0.3868685,-0.54380184,0.06635905,-0.38913295,0.230275,-0.14847967,-0.41477963,0.20684472,0.046011187,0.43375486,-0.2402089,-0.4209908,-0.20208128,0.4457445,0.28608087,0.14419974,0.825714,-0.2138684,-0.1458691,-0.061578605,0.70205176,1.1234404,-0.13340195,-0.0836405,0.5803227,-0.17841229,-0.8583361,0.32822338,-0.5236353,0.37636185,-0.21758506,-0.2827579,-0.627938,0.16080546,0.18487993,-0.1541141,0.04454002,-0.5710548,-0.1752747,0.12553813,-0.3982343,-0.23372246,-0.29471564,0.118934885,0.7490691,-0.30983174,-0.12813848,0.20780112,0.3618849,0.021069584,-0.51317585,-0.14434856,-0.31151068,0.3268067,0.35281917,-0.39176565,0.033704493,0.033657417,-0.50472444,0.17318238,0.3083132,-0.3285487,0.22052765,-0.29061976,-0.14628802,0.9902419,-0.11725419,0.32829314,-0.53032273,-0.44267258,-0.88631654,-0.2300412,0.4157458,0.14449888,0.047196526,-0.5464671,0.010385142,-0.068252325,-0.20848283,0.07385972,-0.48895404,0.47762555,0.010659133,0.53629595,-0.20221378,-0.7165765,-0.05635623,0.31300604,-0.18146865,-0.7374542,0.5281241,-0.18761031,1.0632963,0.19812185,0.096509814,0.42770547,-0.49271104,-0.24939856,-0.41708013,-0.18206438,-0.709516,-0.09896273 -191,0.44067076,-0.2867354,-0.42108968,-0.032553952,-0.27071783,0.2719391,-0.21279255,0.37211078,0.15197624,-0.46489683,-0.395,-0.22161663,-0.038664825,0.14889832,-0.28391603,-0.34154853,-0.10393156,0.1899713,-0.41658378,0.45047814,-0.29036567,0.20787366,-0.02878297,0.48403946,0.27676138,0.1442269,0.034516666,0.04199003,-0.31398386,-0.38551593,-0.11090804,0.31070468,-0.3828845,0.21071802,-0.2696798,-0.40052244,-0.009224777,-0.6500999,-0.3949528,-0.73063976,0.30696145,-1.051615,0.5890831,-0.011248665,-0.1920127,0.31864032,0.1453441,0.34653002,0.03848999,-0.07631711,0.14277768,-0.15098353,-0.101760976,-0.223024,-0.33940226,-0.4873102,-0.5675515,0.09489532,-0.26268187,-0.09468404,-0.16589041,0.11167097,-0.15985487,0.10048073,-0.044358026,0.41420126,-0.37119943,0.21908721,0.2856052,-0.15890822,0.12531504,-0.5768154,-0.18720032,-0.06734083,0.31150594,-0.15253818,-0.1734033,0.07082219,0.3477214,0.37021086,-0.057115834,-0.11171661,-0.22592369,-0.060574345,0.1465606,0.56363666,-0.06130003,-0.42393893,-0.18476275,0.0072069806,0.31773254,0.31746116,0.22864997,-0.09331112,-0.09062785,-0.14743821,-0.26679423,0.45890182,0.37067986,-0.23791802,-0.17902073,0.40938115,0.619462,0.1783797,-0.11612264,0.038270798,0.13391681,-0.49365523,-0.12312371,0.084861994,-0.24408509,0.49831796,-0.24122205,0.38572556,0.5471134,-0.13424301,0.13707525,0.10750355,0.091247395,-0.23650673,-0.27002618,-0.2869441,0.21894224,-0.45450002,0.18332942,-0.04218948,0.7222854,0.06417744,-0.61920124,0.26306438,-0.58399475,0.068064384,-0.05304503,0.34306335,0.5354102,0.37625772,0.28143615,0.5255137,-0.23047741,-0.04588722,-0.17638445,-0.31763604,-0.09619236,-0.18147297,-0.11674029,-0.5052809,0.08308269,0.022051182,-0.03941032,0.009825,0.60691583,-0.53020257,-0.15083352,0.061779764,0.86868256,-0.24946104,-0.1958841,0.95485973,0.93979686,0.863439,0.04374906,1.2129288,0.3170549,-0.13366474,-0.0027093377,-0.13311975,-0.58967596,0.31272417,0.42681408,-0.6709303,0.4813001,0.09662402,-0.05697625,0.2909035,-0.38177624,-0.037712988,-0.20386441,-0.068287544,0.15191105,-0.10839665,-0.4304783,-0.20973374,0.020965364,0.031132517,0.32398844,0.23202276,-0.10842036,0.4943282,0.06563638,1.5856807,-0.13013206,0.11265774,0.036736693,0.3766048,0.1898499,-0.1035391,-0.012478267,0.21228422,0.23899707,0.21321972,-0.4814717,0.051594127,-0.17796572,-0.3539669,-0.1799021,-0.18612845,-0.32989803,0.048257183,-0.33452383,-0.14817214,-0.23164536,-0.25842816,0.40394855,-2.5753329,-0.17295496,-0.19592847,0.35430267,-0.25510448,-0.51356953,-0.08893078,-0.4024842,0.32629162,0.24015503,0.3759529,-0.54847664,0.3207815,0.4428751,-0.62132317,-0.123082,-0.62944734,-0.05955003,-0.00438439,0.28166434,-0.074507356,-0.10504513,0.062459685,0.04369827,0.46244127,0.1394321,0.16701846,0.40923563,0.5217348,0.08331279,0.49136242,0.017982533,0.5147095,-0.23631202,-0.18846501,0.31188187,-0.30988318,0.5091139,-0.07131323,0.11073365,0.5850721,-0.46431947,-0.65724474,-0.6790916,-0.35880122,1.2440077,-0.08846785,-0.40805554,0.039843652,-0.271674,-0.5277348,-0.024462998,0.48041382,-0.22827807,-0.12807074,-0.81672484,-0.12454891,-0.16456416,0.09453797,-0.06386896,-0.032148786,-0.4474501,0.7179125,-0.042921636,0.38368696,0.2803002,0.12266726,-0.25361595,-0.45664096,-0.101988725,0.943729,0.53613526,0.18901458,-0.28979817,-0.1829543,-0.45443705,-0.019731658,0.07488843,0.59644586,0.50199217,-0.0069209463,0.13889064,0.28157747,0.05196809,0.08201601,-0.29823762,-0.2257422,-0.23706682,-0.09993507,0.6428742,0.55555755,-0.17030822,0.45566532,-0.11443073,0.30376413,-0.29222706,-0.44081298,0.432458,1.0864147,-0.1788521,-0.4140771,0.80549866,0.49276066,-0.3495315,0.26254985,-0.5189619,-0.15664406,0.35194868,-0.057589907,-0.5865358,0.14883839,-0.23721048,0.13391447,-0.9012313,0.25301367,-0.19569457,-0.43431142,-0.6709398,-0.03966115,-2.3132284,0.23861457,-0.17747097,-0.27460843,-0.20860867,-0.28384924,0.20133492,-0.5372126,-0.6372935,0.1446832,-0.09895897,0.7450005,-0.12037391,0.24337332,-0.15036047,-0.33011836,-0.2758823,0.14853108,0.16919793,0.38792345,-0.21563856,-0.36398402,0.07853565,-0.108479924,-0.3442996,0.05078902,-0.79039586,-0.52883047,-0.11510389,-0.39362925,-0.09754128,0.5000536,-0.41908413,0.021125296,-0.32993013,0.056207597,-0.15265967,0.23543571,0.061872907,0.044102937,0.16601494,-0.08029572,0.0033448935,-0.30980268,0.5309084,0.11728953,0.18062064,0.35144117,-0.16099747,0.3159898,0.21792562,0.62701553,-0.14752652,0.92920405,0.3098019,-0.15229198,0.22702566,-0.110194586,-0.3280631,-0.40609914,-0.114646144,0.027854562,-0.4205158,-0.49141145,-0.044475693,-0.34862214,-0.828847,0.5881155,0.041101534,0.17667499,-0.05997648,0.46030873,0.611251,-0.24826394,0.04297296,0.011691153,-0.16613398,-0.5567928,-0.39145735,-0.47925147,-0.44002303,0.121185265,0.88252014,-0.15278633,0.21658134,0.087868996,-0.3803649,-0.034093015,0.09515383,-0.08562805,0.019803772,0.5921745,-0.06897533,-0.6089495,0.42282656,-0.07041701,-0.21633135,-0.58498657,0.22624786,0.797723,-0.5857337,0.5094594,0.49023396,-0.035701018,-0.36500397,-0.41254684,-0.07980088,-0.06562626,-0.32975847,0.41645908,0.418557,-0.7310584,0.34852704,0.32035777,-0.09655393,-0.79460377,0.6819372,-0.024772745,-0.112867855,0.008751901,0.34114406,0.19194081,0.006860948,-0.22343244,0.19698095,-0.37178922,0.20180456,0.041579783,-0.15475324,0.09410877,-0.17594466,-0.1906641,-0.7544357,0.18974806,-0.47161976,-0.37734956,0.329459,0.039338607,0.11343921,0.28728566,0.21704042,0.35322025,-0.42914206,0.05551996,-0.09630233,-0.13264881,0.20678923,0.40791827,0.56300056,-0.49205413,0.5478744,0.009906505,-0.046322983,0.13354768,0.044524543,0.35965738,0.029697273,0.41398007,0.115504526,-0.20698349,0.19394949,0.7612896,0.13529056,0.44035226,0.250087,-0.122921444,0.17441705,0.012049331,0.27602425,-0.15960066,-0.64401656,0.006578765,-0.28438866,0.0676942,0.36572346,0.038860444,0.28922686,-0.15653434,-0.2854398,-0.004493394,0.10286869,0.07151641,-1.1378337,0.15479554,0.17263098,0.74871147,0.20770364,-0.10716409,0.05277707,0.7583335,-0.27031106,0.08203101,0.4625525,0.075199604,-0.4079079,0.44141123,-0.6080376,0.34358412,-0.11268048,-0.0041983095,-0.003946147,-0.1560674,0.43538326,0.7897574,-0.13899691,-0.017153561,-0.113534965,-0.36913964,0.19343375,-0.3263792,0.20823215,-0.557192,-0.18934672,0.65762675,0.61023223,0.4957525,-0.18999758,0.06539293,0.16737993,-0.11588267,0.12401182,0.3249142,0.16508682,-0.038405333,-0.6236041,-0.050866492,0.49686256,0.14333251,0.105923906,-0.00037607126,-0.30193737,0.2173637,-0.18533106,0.06699038,-0.013262819,-0.85099596,-0.1218034,-0.34850827,-0.68073225,0.19012532,0.0010056368,0.027151903,0.26963383,-0.073999226,-0.23444028,0.26492667,0.058021817,0.85564405,0.08276157,-0.04624151,-0.26520228,0.30475348,0.11264778,-0.26924226,-0.04221034,-0.15575147,0.20149219,-0.69829494,0.48670694,-0.06969463,-0.5061283,-0.0023853928,-0.014205851,0.10539607,0.5050749,-0.10088118,-0.0961444,0.092217304,-0.19103205,-0.30135706,-0.17343669,-0.15176606,0.17409118,0.30971447,-0.03945338,-0.14959994,-0.044513147,-0.33994183,0.40763682,0.07282655,0.47847095,0.5507241,-0.04608408,-0.31201077,-0.13233754,0.06171868,0.5602198,-0.11583935,-0.24638091,-0.26108077,-0.5439207,-0.20000133,0.47539642,-0.040492613,0.34233823,0.15423593,-0.14749773,0.73338145,-0.07756364,1.0971016,0.028102292,-0.37618718,0.07729288,0.48320618,-0.016705304,-0.15608673,-0.38897762,0.95195514,0.3971262,-0.10390724,-0.020311607,-0.43529144,0.06134745,0.097352795,-0.19793262,-0.042612348,-0.01172295,-0.5963497,-0.24089734,0.12617873,0.2703322,0.062066384,-0.13229072,0.22112727,0.37335616,-0.11970144,0.38715273,-0.46418062,-0.32080048,0.3495272,0.3214657,-0.063713156,0.08584922,-0.42689943,0.3254042,-0.5509264,0.02470529,-0.46124128,0.22275841,-0.21641532,-0.21782494,0.20950589,0.014523489,0.4483311,-0.42496577,-0.42372116,-0.24043001,0.3732476,0.20497169,0.13163938,0.3491905,-0.33406022,-0.07546306,0.09960572,0.5911043,1.0867653,-0.10645198,0.19768763,0.36472198,-0.28864077,-0.5023055,0.45084026,-0.45255312,0.27097526,0.115809694,-0.18633796,-0.47576287,0.27415898,0.3545445,0.14284328,-0.12651335,-0.6028367,-0.09647612,0.3120375,-0.2942862,-0.13117543,-0.24493997,-0.0056025004,0.43795466,-0.11095668,-0.39794272,-0.13533176,0.25153568,-0.24553509,-0.3331994,-0.06807045,-0.35208413,0.22872616,0.0007056296,-0.30296203,-0.18917899,-0.13541554,-0.45082444,0.08845222,0.13801776,-0.34424922,0.0038621575,-0.32783243,-0.0054678917,0.8345366,-0.30698824,0.12068065,-0.48076206,-0.41733137,-0.6882087,-0.36192805,0.103912555,0.07374246,0.13695562,-0.50677747,0.021503234,-0.28143463,-0.20635565,0.0283126,-0.44670072,0.4861786,0.26328656,0.44579792,-0.12217345,-0.74729794,0.24247469,-0.03020938,-0.33682895,-0.58621013,0.5783724,0.02523298,0.8269949,0.016438644,0.114312015,0.22384915,-0.5966443,-0.08207522,-0.10657432,-0.030792654,-0.89837587,0.10250045 -192,0.5011193,-0.09551532,-0.53383857,-0.1507596,-0.29079077,0.071847185,-0.09311599,0.38221225,0.115210995,-0.43045774,-0.11683901,-0.107908264,0.039215215,0.20515609,-0.18157579,-0.5570736,0.0201599,0.0072064954,-0.6027724,0.6795554,-0.3135379,0.2814125,0.020462159,0.21356884,0.3285656,0.34503332,0.20570514,-0.1949218,0.092153706,-0.11824681,-0.27249098,0.08578031,-0.6296807,0.13880718,-0.12089218,-0.32503203,0.0078061563,-0.24991243,-0.40427902,-0.7928952,0.3422448,-0.88583744,0.3671538,-0.059220247,-0.23056458,0.15841821,0.25846156,0.43195358,-0.24191669,-0.07689837,0.18488367,-0.15038015,-0.075601056,-0.032511424,-0.16307391,-0.67309695,-0.46844214,-0.110367835,-0.56699646,-0.1845058,-0.39715323,0.13103023,-0.3559051,-0.04725998,-0.30839333,0.40445367,-0.518489,0.019893693,0.14029671,-0.14810947,0.26165512,-0.68838173,-0.12328452,-0.08336854,0.21017973,0.06333923,-0.14669296,0.38397238,0.11775456,0.30337355,0.21651223,-0.044758897,-0.26522022,-0.24886556,0.165119,0.3885,-0.01010902,-0.29075435,-0.12656711,-0.117489636,0.12799422,0.31028047,-0.0065314663,-0.025213053,-0.027550042,0.010020561,-0.294322,0.4754401,0.6375152,-0.33165768,-0.2626622,0.31915063,0.6295037,0.20570004,-0.26251048,0.20932455,-0.041652977,-0.48481584,-0.24061005,0.29768437,-0.2142796,0.3825581,-0.13221548,0.27976125,0.61354864,-0.11008269,0.051022332,0.02229696,-0.039852757,-0.13951416,-0.21704651,-0.0748329,0.23619017,-0.53917253,0.3251726,-0.34455052,0.7138797,0.20432924,-0.4610576,0.31827313,-0.5632824,0.15708315,0.027662506,0.6778644,0.6267374,0.38172126,0.06382743,0.9424835,-0.36380976,0.06521077,-0.1620169,-0.2518658,-0.08073255,-0.024656432,0.22777387,-0.35752603,0.07856765,0.02591321,0.09442333,-0.13155164,0.32228732,-0.5513369,-0.15453245,0.0074588233,0.7338434,-0.23943917,0.022250405,0.8929649,0.9744669,0.9391365,0.09546188,0.8326211,0.12241733,-0.36476693,0.106218986,-0.2586632,-0.6115178,0.25092116,0.316701,0.45240608,0.18691835,0.06873468,-0.2923038,0.32381222,-0.39462495,0.014308759,-0.3204338,0.20820062,0.09626137,0.0041351146,-0.31347698,-0.21231349,-0.09536089,-0.0858316,0.10891525,0.18459845,-0.3693413,0.47236452,0.04769498,1.2462028,-0.102331564,0.027976189,0.18123499,0.5878801,0.18875064,-0.051165532,0.15319796,0.33838564,0.37516505,0.0378053,-0.6164358,0.14605117,-0.40772295,-0.45476314,-0.036048982,-0.45519474,-0.095837034,-0.08871355,-0.37516284,-0.1364847,-0.052209496,-0.40064985,0.4764095,-2.8497822,-0.069890514,-0.23089896,0.31684098,-0.29141554,-0.18930542,-0.10826902,-0.57269126,0.432568,0.3950757,0.53315324,-0.5009141,0.5644868,0.48646575,-0.5973334,0.19721672,-0.5464125,-0.10999409,0.027731359,0.45532158,-0.0035383275,0.023871748,-0.07174034,-0.109594055,0.61259425,0.070776395,0.13195534,0.31515387,0.29466605,-0.105483845,0.5333549,-0.016424308,0.4916422,-0.5260772,-0.02481384,0.3409337,-0.40858653,0.3440849,-0.16444476,0.16123901,0.6201884,-0.38805196,-0.8435813,-0.5626203,-0.31489605,1.1480266,-0.30383608,-0.44700477,0.3105302,-0.3435037,-0.07553095,-0.08396881,0.65241337,0.09513206,-0.0042777765,-0.5997311,0.0234108,-0.27981657,0.22823788,-0.05743611,0.11956114,-0.37983832,0.9089588,-0.14425683,0.53473467,-0.033666182,0.26100776,-0.18005134,-0.37932745,0.037704192,0.66421705,0.38259372,0.041226555,-0.223462,-0.31444338,-0.38427496,-0.18305214,0.072238125,0.8510623,0.6148162,-0.044435523,0.07264484,0.32113442,-0.13653268,0.045729198,-0.25313738,-0.23285496,-0.18612187,0.047195323,0.42165375,0.34701,0.100058325,0.42754146,0.03130866,0.39638105,-0.17287408,-0.49641055,0.3008979,0.6579791,-0.23907962,-0.22354738,0.42723507,0.61759746,-0.104907416,0.42762852,-0.72349685,-0.3715399,0.51387066,-0.098426275,-0.47774297,0.17247522,-0.31730026,0.08455836,-0.7661025,0.07789811,-0.497787,-0.88153166,-0.41646913,-0.1174136,-3.5991445,0.12879607,-0.2624093,-0.02518321,-0.1161719,-0.1797484,0.12501629,-0.5434879,-0.503019,0.09685638,0.13288546,0.72693837,-0.17168453,0.06995828,-0.30227038,-0.07975272,-0.42761257,0.3542729,0.17906792,0.2248089,-0.2933182,-0.2894592,-0.044326562,-0.026696125,-0.3325827,0.01123678,-0.55712163,-0.3855052,-0.13545704,-0.4290994,-0.2085867,0.56932104,-0.23987874,0.12356299,-0.115398206,0.10228747,-0.12889518,0.23505218,0.26769462,0.0885043,-0.012052758,-0.14234082,-0.065493904,-0.32487655,0.38537475,0.029514117,0.43885407,0.35967177,-0.16245201,0.2277955,0.538245,0.46615276,0.0827276,0.9270601,0.15480919,-0.17134908,0.3890961,-0.16885318,-0.2725387,-0.6734376,-0.13476267,-0.053514473,-0.36783418,-0.46307403,-0.15665162,-0.36750084,-0.89338857,0.42753935,0.10917406,0.31139907,0.034563158,0.31753,0.5259204,-0.09389088,-0.021804746,0.004391984,-0.074013695,-0.4900145,-0.29263654,-0.6158491,-0.45477778,-0.05000649,0.83386225,-0.2755897,-0.19040485,-0.035286922,-0.31275558,0.033121333,0.28200698,0.17253086,0.15017417,0.49506745,-0.2168289,-0.5805171,0.69008785,-0.21114312,-0.14605376,-0.5361784,0.27222344,0.468702,-0.6568937,0.3422436,0.20981929,0.033501,-0.33580777,-0.40819755,-0.12160729,-0.09775824,-0.22020952,0.28720134,0.023655133,-0.7699989,0.31188554,0.14946507,-0.027514389,-0.63282174,0.52717763,-0.13082056,-0.29614392,-0.006675337,0.3596707,0.15194641,0.002995375,-0.17580469,0.10612685,-0.3011412,0.29571444,0.22593464,-0.12288064,0.36767483,-0.20704754,-0.17527954,-0.64904106,0.11973088,-0.54605955,-0.03873522,0.40199128,0.060062427,-0.027117636,0.20119055,0.09281838,0.41424337,-0.07776187,0.11634822,-0.20466387,-0.2902484,0.5320724,0.44542816,0.29412013,-0.51258534,0.78866607,0.1326023,-0.1903959,0.15023525,0.1733391,0.3523791,-0.057691067,0.6623232,-0.11379854,-0.23181543,0.23284207,0.79571086,0.32351518,0.54294103,0.036130164,-0.052498493,0.2702844,-0.02868872,0.1314519,0.024724388,-0.6205005,0.06469953,-0.18830644,0.1237275,0.32165292,0.07988155,0.35539633,0.12507863,-0.056892842,-0.07238405,0.08544479,-0.15001789,-1.2259865,0.45312807,0.29405138,0.9434323,0.43804437,-0.0669001,-0.015439527,0.66738904,-0.1143384,0.14657035,0.3096427,0.16312441,-0.44756928,0.43122765,-0.7078686,0.59568346,-0.09462123,-0.029687628,0.043497622,-0.09463467,0.4591274,0.95210284,-0.34208918,-0.13058738,-0.04629632,-0.27902082,0.3475066,-0.21650255,-0.023599317,-0.5660578,-0.3503882,0.5265953,0.50907886,0.33267453,-0.02831325,-0.047772683,-0.16426834,0.048919022,0.3439982,-0.050368708,0.0631999,-0.23540388,-0.5275732,-0.33995214,0.4486766,-0.40433097,0.16928266,0.21008645,-0.3050974,0.30380353,0.1412383,0.06625135,-0.1813011,-0.65802926,0.058901787,-0.17990805,-0.4360493,0.44042692,-0.24312066,0.517924,0.30157796,-0.12252063,-0.2859802,0.17166607,0.16770013,0.6255803,-0.15237105,-0.17257118,-0.5380638,0.018090788,0.2355357,-0.33082598,0.0033238572,-0.18971917,0.012858803,-0.64986026,0.33908525,-0.22786248,-0.36132026,0.09553521,-0.20575976,-0.02930569,0.61918294,0.017773049,-0.17736952,-0.01680142,-0.028273629,-0.23617513,-0.19977058,-0.1940643,0.20530483,-0.0071292096,0.042583797,-0.12484909,-0.097410485,0.18724373,0.29716402,0.08737246,0.2727318,0.26771852,0.032148592,-0.37687254,-0.04280181,0.23523775,0.5922614,0.052292947,0.050358057,-0.017400865,-0.46112648,-0.42554542,0.09493132,-0.010681574,0.42228475,0.21950717,-0.2848568,0.6558963,-0.04049647,1.0866927,0.020596653,-0.33354875,0.08242826,0.6663448,0.07571676,-0.09932632,-0.26151562,0.89857113,0.5337493,-0.1332563,-0.04598638,-0.39270523,0.0648443,0.27569994,-0.09347705,-0.16506384,-0.012309198,-0.5063119,-0.11295346,0.13060321,0.26303476,0.22054185,-0.05863687,-0.16958995,0.28971452,0.027372675,0.3338347,-0.49732044,-0.25783333,0.29982796,0.009965797,-0.110181734,0.15190022,-0.3586678,0.35468057,-0.5723713,0.11846077,-0.22073242,0.093399204,-0.23874529,-0.23054682,0.2360398,-0.15796335,0.4738369,-0.19324203,-0.390377,-0.17195103,0.46136042,0.41782573,0.30432394,0.62587935,-0.14817664,0.04462225,0.062445097,0.5396115,0.83168477,-0.26736733,-0.051857892,0.29372123,-0.47679988,-0.6414606,0.2836677,-0.3703236,0.0648006,0.08723353,-0.23876552,-0.25824267,0.33656046,0.1663724,-0.10113295,0.1287437,-0.7682443,-0.21654,0.070586756,-0.3209372,-0.19040762,-0.42460862,0.32180884,0.57941216,-0.36480936,-0.19209199,0.11124388,0.1113712,-0.23375122,-0.6592317,0.09232431,-0.24668384,0.32471254,-0.012066296,-0.25695923,-0.08099318,0.17599566,-0.5496653,0.16942903,-0.039123837,-0.36662418,0.13566102,-0.28165528,0.037361868,0.76379794,-0.17443629,0.0031932315,-0.38984603,-0.49755603,-0.6998204,-0.5399362,0.3100349,0.30856532,-0.016345335,-0.47464767,-0.03898717,0.010596906,0.031427443,-0.1449322,-0.4758778,0.5176749,0.06347259,0.32795268,-0.011035157,-0.94414055,0.2858747,0.097998336,-0.08735102,-0.49030092,0.43741575,-0.15932663,0.6869263,0.19843309,0.1831679,0.14951055,-0.45729968,0.024999116,-0.23710105,-0.07199777,-0.6547507,0.117144294 -193,0.4646342,-0.04437777,-0.4979896,-0.18633148,-0.06543896,0.15549706,-0.17087892,0.24042556,0.19074407,-0.54755515,-0.16757871,-0.18093023,-0.24208364,0.2708896,-0.16566405,-0.54048425,-0.021981018,0.15026101,-0.50349927,0.59966445,-0.3407866,0.37670425,0.096146815,0.25887007,0.14450563,0.16031787,0.37389278,-0.1504742,-0.21109098,-0.35728496,-0.007740748,0.04417349,-0.65578705,0.33564034,-0.18394855,-0.35888788,0.018435871,-0.39551753,-0.26156163,-0.7441645,0.2778515,-0.58433557,0.41575554,-0.0022215843,-0.24414445,0.348982,0.08578027,0.29456392,0.00128329,0.12027188,0.22021182,-0.10011948,-0.057597745,-0.168186,-0.0614415,-0.32373363,-0.45947692,0.16412371,-0.47376004,-0.21069089,-0.25856555,0.14530307,-0.116820835,-0.020579224,-0.08733613,0.56124187,-0.3908282,-0.21688488,0.06508298,-0.12779763,0.40505546,-0.70996255,-0.21414293,-0.23406789,0.17689916,-0.1908677,-0.032290615,0.24289055,0.104547344,0.4882789,0.032383848,-0.06632551,-0.22150196,0.0001268228,0.19411229,0.38371494,-0.10706248,-0.49716634,-0.120149136,-0.060185388,0.078435406,-0.025471708,0.122640505,-0.34035143,0.07408478,-0.09598248,-0.31050286,0.34933832,0.44794694,-0.4068874,-0.17533861,0.35624412,0.5001429,0.123895936,-0.063588984,-0.17321904,-0.1378269,-0.37690818,-0.20135012,0.19083777,-0.3020797,0.49480474,-0.10413826,0.063208334,0.5466154,-0.07617021,0.040462185,0.011339458,-0.05518115,-0.03246579,-0.09453821,-0.38524348,0.25044444,-0.34107652,0.031298723,-0.28006327,0.72274435,0.01702854,-0.8154455,0.31560987,-0.42691353,-0.041436505,0.038974382,0.5865501,0.6309446,0.39765438,0.07215298,0.6391603,-0.5803267,-0.0050610225,-0.14449981,-0.1476971,-0.12983474,-0.067258134,-0.08395866,-0.37174997,-0.0006227692,-0.14518099,-0.065762244,-0.1585842,0.3542158,-0.4438631,0.062196024,0.20734333,0.67018074,-0.337516,0.020453397,0.6200703,1.1352795,1.0608869,0.060142536,1.0904413,0.15282647,-0.33468783,0.04764648,-0.3469664,-0.4778701,0.33806357,0.36742306,0.20164505,0.2705611,0.026371403,0.07905664,0.23457566,-0.5167127,0.07740634,-0.0938712,0.29973385,0.006147609,0.07283378,-0.35279307,-0.15016773,0.09791269,0.026501548,0.115571454,0.12179149,-0.31498414,0.19627088,0.157502,1.3234268,-0.25028533,0.12495313,0.093948126,0.40132096,0.12937278,0.006821235,-0.026455022,0.35070404,0.20887226,-0.04303433,-0.57645875,0.006202555,-0.23307346,-0.4522794,-0.22836939,-0.2111591,0.0019478083,0.1997213,-0.35188216,-0.15236229,0.08542326,-0.37309137,0.39363977,-2.5045059,-0.14912869,-0.0983073,0.14358558,-0.39900872,-0.32462516,-0.031363532,-0.4448214,0.4973179,0.36558,0.3377601,-0.50156295,0.3238061,0.42833892,-0.24962266,-0.15070121,-0.47606048,-0.0771991,-0.14248523,0.45764965,-0.025480837,-0.18124014,-0.17907755,0.16737613,0.51044536,0.023317965,0.105729565,0.28767616,0.15876852,0.15766464,0.47820675,0.21027263,0.44146428,-0.38339564,-0.07519452,0.4787661,-0.32729045,0.068289004,-0.119628385,0.24981254,0.2591298,-0.44811094,-0.7259585,-0.7200594,-0.48655406,1.4104625,-0.217635,-0.51020795,0.21112885,0.2159393,-0.20548815,-0.0075787744,0.34261915,-0.064259626,0.12955979,-0.8185863,0.018212112,0.011243152,0.37727648,0.12052445,0.123078845,-0.57447755,0.80214053,0.020269912,0.38727713,0.35212967,0.18764468,-0.32705003,-0.48261395,0.11917303,1.130216,0.28361133,0.08948657,-0.15043072,-0.12028174,-0.2414164,-0.029857691,0.06589232,0.39967218,0.6912031,0.19168077,-0.038044,0.20667197,-0.0442851,0.11084884,-0.024005296,-0.41900292,-0.08426759,-0.012753804,0.6819657,0.48358366,-0.065709524,0.405907,-0.16272275,0.3507162,-0.29144517,-0.2861567,0.6680749,0.89776444,-0.22026032,-0.29400173,0.5939578,0.32539815,-0.20239092,0.44563445,-0.6771044,-0.44629818,0.4272558,-0.101701565,-0.42199993,0.16035582,-0.2982508,0.20635988,-0.8706638,0.25312388,-0.37555304,-0.34126827,-0.65738755,-0.2397836,-3.1036563,0.08299365,-0.14577508,-0.15565775,-0.02349952,-0.02252572,0.36063194,-0.42568594,-0.51069194,0.04594986,0.07257369,0.4094857,0.018399807,0.08630614,-0.17916927,-0.23447952,-0.31028333,0.3473056,0.02900018,0.3085743,0.06165552,-0.36528397,0.064648,-0.2399974,-0.2696707,-0.028897261,-0.3324817,-0.4030758,-0.26086265,-0.47126928,-0.20868526,0.6031161,-0.519204,0.042652864,-0.14559513,-0.06386829,-0.042696904,0.27858105,0.0919547,0.19568163,0.099877745,-0.12464268,-0.099071056,-0.2785282,0.19156359,0.120303825,0.10440481,0.3482086,-0.2586133,0.0710533,0.27655604,0.6515474,-0.048802376,0.7095299,0.5239943,-0.14180645,0.3366865,-0.3949413,-0.2841116,-0.5928348,-0.29947394,-0.07825057,-0.26825795,-0.49866256,-0.114237614,-0.31191936,-0.75886244,0.47978595,-0.11575195,0.0040867506,-0.00680664,0.24382986,0.2865015,-0.20120896,-0.09634992,-0.06251172,-0.05923141,-0.417863,-0.51874757,-0.6157111,-0.3130512,-0.15403047,0.8817282,0.011673407,-0.1165404,0.03927601,-0.09658767,0.06725984,-0.06709221,0.10783196,0.07300391,0.37340012,0.0072560706,-0.7452635,0.43910208,0.03417818,-0.0896046,-0.43448383,0.23264016,0.6302609,-0.4633334,0.33375266,0.37886876,0.22160727,-0.021226065,-0.3648124,-0.094968416,0.052808125,-0.2810549,0.47388136,0.11537445,-0.5221184,0.50338215,0.21395572,-0.25998613,-0.8364246,0.4156477,0.07716622,-0.3474268,-0.031017002,0.4334179,0.013734484,0.05240561,-0.2579914,0.115759894,-0.399186,0.15328914,0.22452177,-0.0026326617,0.3349585,-0.37783644,-0.19918042,-0.5875714,0.08233391,-0.4890655,-0.3618444,0.09161283,0.16227593,0.020255256,0.35170013,0.05907246,0.46208757,-0.09310169,0.11920931,-0.05078087,-0.06757442,0.39824504,0.50942004,0.36738667,-0.41080108,0.5575338,-0.057255555,-0.052556235,-0.3781008,-0.08121583,0.39506534,0.10403241,0.17700888,0.12863493,-0.106794916,0.3899606,0.5696576,0.33823153,0.4425834,0.052009776,-0.29148266,0.35725397,0.08583414,0.15370165,-0.051900085,-0.47713533,-0.31353378,-0.045133274,0.12024262,0.4346124,0.035126973,0.28121677,-0.1285496,-0.22848682,0.15290631,0.22717355,-0.1801851,-0.87319946,0.34631154,-0.036471948,0.7272389,0.7519648,-0.08891005,0.19604851,0.5201095,-0.3214834,0.02667748,0.24050157,0.012834114,-0.4989504,0.5560682,-0.5103623,0.147471,-0.09329999,-0.068040185,-0.090001345,-0.11580499,0.39575043,0.70962435,-0.0984689,0.12207968,-0.16711988,-0.21802354,0.06425594,-0.32003164,0.2519135,-0.32849413,-0.32383585,0.6660805,0.30251697,0.18268718,-0.29118168,-0.03699126,0.0380787,-0.13078174,0.12907949,0.006973505,0.03268514,0.011257187,-0.6031507,-0.14640306,0.564409,0.070046976,0.07141455,0.15462951,-0.19305994,0.14037088,0.04169518,-0.040894866,-0.025047312,-0.5417966,-0.016543923,-0.18542077,-0.2030943,0.3146269,-0.27566206,0.14936027,-0.051849015,0.08206101,-0.25221846,0.077360705,0.32728833,0.45825228,0.22128993,-0.0005054017,-0.3073412,0.06789789,0.057620473,-0.2217744,-0.19108966,-0.18927132,-0.007820525,-0.7756892,0.41407055,-0.03377563,-0.11993263,0.20234805,-0.12749097,-0.13003339,0.58435714,-0.12143598,-0.04002649,0.11434229,-0.11653273,-0.13559747,-0.12672876,-0.19731225,0.17929687,0.034621987,-0.06542656,-0.14706364,-0.051090915,-0.16467495,0.41856328,-0.008648085,0.28516635,0.36701483,-0.020131595,-0.50158185,-0.016237171,0.04394097,0.32235107,0.21596603,-0.025036184,-0.10676642,-0.47062367,-0.2773827,0.21593966,-0.07299686,0.010279298,0.09355285,-0.40375748,0.65924567,0.23404908,1.0877806,-0.021020496,-0.21335158,0.06697464,0.43905815,-0.06515878,0.08373379,-0.5018502,0.8876476,0.54865205,-0.103442386,-0.0764184,-0.2195895,-0.008792869,0.039866827,-0.2206733,-0.043294188,-0.18451329,-0.60682815,-0.4018655,0.16165139,0.43847308,-0.036319528,0.02145802,0.05232511,0.19791283,0.18686533,0.471636,-0.34327358,-0.16498128,0.40072346,0.18990657,0.091196395,0.06165645,-0.35107937,0.44298032,-0.70445824,0.032914985,-0.294011,0.082090825,-0.15401505,-0.21213351,0.16455957,0.11950685,0.29111746,-0.34965554,-0.4429218,-0.2227606,0.4415047,-0.063447535,0.20057036,0.5445131,-0.1645667,0.11135364,0.035417937,0.3960182,1.0046262,-0.13635118,0.07353211,0.22431828,-0.29725343,-0.5685409,0.34214437,-0.34128138,0.13681507,-0.07931468,-0.30401516,-0.45054615,0.2975998,0.1699149,-0.14750385,0.100856274,-0.671347,-0.2938056,0.36890113,-0.24591018,-0.17063546,-0.138051,0.0914888,0.6385369,-0.3616575,-0.36103812,0.010627699,0.33040914,-0.4335128,-0.6919836,-0.01884102,-0.3431537,0.46872357,0.17910792,-0.11616411,-0.14443442,0.22873203,-0.47402313,0.02058204,0.24823895,-0.38537353,-0.021673597,-0.32019126,0.107945964,0.63095635,0.08404164,0.051449105,-0.5430288,-0.41263285,-1.10588,-0.31231546,0.47694674,0.06678215,-0.035071515,-0.45456108,-0.02723704,-0.29815248,0.12055609,0.055745862,-0.32237053,0.32951364,0.13251397,0.5325596,-0.013604204,-0.65656245,0.036986303,0.16441602,-0.024226967,-0.4887481,0.31212938,-0.045351163,0.83498275,-0.016306795,-0.0015670061,0.18264948,-0.7382166,0.113923535,-0.18110244,-0.1225351,-0.54499966,0.23017989 -194,0.20477882,-0.08458596,-0.39049208,-0.19586754,-0.09386916,0.1827458,-0.122330554,0.2957713,0.01850297,-0.5033947,0.12522501,-0.17999503,-0.1068534,0.36508366,-0.18968216,-0.27911204,-0.09100746,0.022265894,-0.24504343,0.18822142,-0.5479484,0.29106477,-0.08187294,0.21285686,0.031136008,0.07164049,0.39994806,-0.15351263,-0.072378196,-0.21783638,0.13049617,-0.050930396,-0.49801236,0.10377158,0.019490251,-0.4065782,0.033972558,-0.33849537,-0.5640776,-0.65717274,0.46838644,-0.87382126,0.50903374,0.116080284,-0.11915918,0.32875806,0.3216662,0.21496648,0.015309712,0.039334636,0.30735332,-0.24301562,0.08872135,-0.15346947,-0.27661854,-0.29374793,-0.5612515,-0.0803935,-0.43092456,-0.29967827,-0.31169483,0.21291515,-0.4370023,0.028585318,-0.10224169,0.40438682,-0.39755866,-0.0004956814,0.17524385,-0.14445844,0.40488213,-0.60474503,-0.23770769,-0.07344048,-0.012081728,-0.3304234,-0.09646519,0.37123492,0.2012777,0.4380589,-0.316201,-0.008870242,-0.3074345,-0.19228975,0.15131709,0.6538852,-0.28781644,-0.25101736,-0.05003865,-0.12298338,-0.020755332,0.10505337,-0.07811698,-0.38666412,0.0076988065,0.2712819,-0.29962867,0.47221616,0.6416546,-0.23180297,-0.20295176,0.27852517,0.35057205,-0.07420507,-0.18658948,0.011571238,0.08682077,-0.45172116,-0.111706,0.13626346,-0.011394778,0.5420595,0.049613435,0.48305756,0.5230792,-0.3652617,0.11495251,0.032081183,0.068750426,0.035340328,-0.19810581,-0.34597296,0.21428853,-0.4208337,0.088577196,-0.20433477,0.9360475,0.0100042615,-0.8161631,0.41095084,-0.53112227,-0.061247624,-0.23935845,0.6134278,0.39100555,0.3244174,0.2423595,0.71903694,-0.5902488,-0.054087356,0.092804715,-0.3629135,-0.017832216,-0.12898244,0.014794409,-0.37372458,-0.12759,0.30013555,0.069243215,-0.028720928,0.3502797,-0.42012867,0.01472635,0.09018445,0.8410623,-0.28550205,-0.0129343085,0.41885802,1.1578132,0.7392315,0.11162559,0.9525279,0.21027216,-0.16318688,0.16124734,-0.14971952,-0.82897466,0.22009522,0.3044458,-0.038555108,0.18461983,0.19029333,-0.20205714,0.3043384,-0.47998613,0.076253325,-0.18058327,0.12619339,0.2446314,-0.17617665,-0.25024888,-0.13379699,0.07801509,-0.10477121,0.058037035,0.10487667,-0.44088686,0.10776247,0.07928714,1.4699222,-0.09009469,0.2433675,0.18321633,0.48807347,0.03440649,-0.044345334,0.04632622,0.16123177,0.36022455,0.15715843,-0.54624146,0.1702625,-0.13797387,-0.48238948,-0.16937336,-0.30218318,-0.12507272,-0.009649648,-0.4998565,-0.19549887,-0.037323568,-0.43112752,0.35773665,-2.9810367,-0.08142893,-0.09910075,0.39327922,-0.2988229,-0.19855365,-0.12551366,-0.42281768,0.48738098,0.51485527,0.30427477,-0.60045236,0.33939463,0.4153159,-0.22241487,-0.112466045,-0.52705956,0.04889426,-0.12861001,0.19349474,0.15041545,-0.09092719,0.025982546,0.21107286,0.36602226,-0.082540914,-0.0058842944,0.26644224,0.35910258,0.05565761,0.36432993,-0.1126962,0.35284662,-0.3826658,-0.19046292,0.30349535,-0.50908434,-0.0678657,-0.08152454,0.1313469,0.2874037,-0.3520706,-0.83170307,-0.6448498,-0.35000926,1.1511142,-0.13461001,-0.52412385,0.32184923,-0.10180144,-0.3144715,-0.18469736,0.5443782,-0.11608628,0.11473997,-0.78758717,0.13605224,-0.25571015,0.3930391,0.005291047,0.050173856,-0.42872187,0.48556402,-0.19843568,0.45946768,0.43065804,0.19258411,-0.4226678,-0.50493157,0.07785997,0.77985644,0.22525932,0.24389744,-0.12552972,-0.06772811,-0.1052431,-0.22950107,0.19795687,0.46160457,0.7973491,0.07834438,0.20699103,0.35370892,-0.058066133,-0.05252973,-0.11666643,-0.2674731,-0.027492596,0.024686823,0.54692346,0.31055403,-0.11142845,0.38566175,-0.07819267,0.26362962,-0.41173,-0.22811112,0.3359998,0.6538789,-0.048757963,-0.2862453,0.5003027,0.6280937,-0.41860893,0.34917676,-0.66768414,-0.3226435,0.52407074,-0.24687687,-0.5065743,0.10335612,-0.43042147,-0.00945465,-0.7716841,0.45354557,-0.21691759,-0.54027915,-0.48196492,-0.28548926,-3.5824862,0.08050286,-0.32468435,-0.25596985,0.008580413,-0.030147033,0.34631884,-0.41052407,-0.4026261,0.05862083,0.042546336,0.6637148,0.012595223,0.012376023,-0.26014125,0.17141268,-0.27876106,0.13622172,0.10035913,0.12295817,0.086254,-0.37065172,-0.011175907,-0.23906237,-0.5480351,-0.0039772233,-0.2964062,-0.38752323,-0.13905936,-0.44920552,-0.4564568,0.7127018,-0.39527783,-0.049574897,-0.2733927,0.008672957,-0.18890196,0.5971367,0.22682616,0.05115867,-0.015725356,-0.13257162,-0.026819339,-0.29768828,0.49197805,-0.016185531,0.21357392,0.5717427,-0.19761588,0.018942852,0.47579175,0.37787917,0.15663816,0.77381414,0.4086749,-0.05683289,0.25699243,-0.41462106,-0.11017036,-0.3893131,-0.23481736,0.22214195,-0.29034072,-0.48365706,-0.010558789,-0.32458878,-0.6938395,0.50779593,-0.23193663,0.15824078,-0.06843269,0.18289709,0.2021624,-0.06890004,-0.16598314,-0.030827474,0.029258244,-0.3562004,-0.306019,-0.6425509,-0.5653814,-0.049767878,1.0563571,0.05268779,-0.08904353,0.09956217,-0.15135688,-0.04370908,0.063132375,0.15822998,0.38832444,0.2517429,-0.10023452,-0.7222745,0.37470335,-0.35206795,-0.052290455,-0.74967355,0.019550433,0.51964116,-0.56564325,0.33546463,0.33658588,0.31441432,-0.24978065,-0.53391194,-0.22935075,0.029358167,-0.24218546,0.34366146,0.0045787464,-0.8929852,0.43324777,0.34113768,-0.24019617,-0.5619672,0.52424437,0.038032472,-0.22457801,0.14877309,0.29248136,-0.058739003,-0.070820406,-0.079220004,0.2673015,-0.44043982,0.40472874,0.13376294,0.03245514,0.77935016,-0.17206207,-0.06702563,-0.39457342,0.15387964,-0.4430674,-0.13404146,0.081492186,0.046977036,0.11710356,0.5660833,-0.15980114,0.4107735,-0.2905045,0.05439176,0.027055992,-0.27029732,0.36215895,0.39871562,0.376147,-0.37995404,0.66121763,-0.058331665,-0.12847564,-0.22726417,0.04747434,0.4657597,0.1992545,0.32351595,-0.118253484,-0.1242474,0.25886676,0.9061526,0.2610865,0.49664366,0.22281648,-0.14760843,0.2593019,0.081783816,0.045797274,0.23256642,-0.41031697,-0.09475383,-0.2490401,0.27443,0.44775283,0.097789235,0.45288798,-0.2423102,-0.35291708,0.087461606,0.312062,-0.21803449,-1.0057667,0.40953228,0.1204019,0.66916835,0.44567123,0.012912085,0.10536719,0.433137,-0.10553916,0.14212343,0.21685173,0.044040523,-0.45035335,0.6092077,-0.5312539,0.37071764,-0.11665133,-0.04062436,0.040169854,-0.035601217,0.41255298,0.7229401,-0.013153063,0.17094612,0.08916387,-0.29450768,0.19888853,-0.3873871,0.43809494,-0.487253,-0.17151007,0.5100953,0.3623586,0.19563998,-0.109143846,-0.02632195,0.08854248,-0.05278916,0.14694682,-0.11314759,0.19890498,-0.14994517,-0.6187345,-0.3192307,0.47005576,0.2549535,0.06743611,0.076448664,-0.09942214,0.24977733,-0.09755591,0.05747984,0.0065213614,-0.5710392,0.117910236,-0.21169215,-0.45790857,0.31361625,-0.4075057,0.38430035,0.243583,0.011919815,-0.4387622,0.18102345,0.42553294,0.556461,-0.14482765,-0.15003198,-0.35609525,-0.17486623,0.18931296,-0.16264868,-0.13094872,-0.16981462,-0.012637883,-0.56235176,0.47157538,-0.11386948,-0.02148985,0.3252111,-0.13404678,0.06832616,0.6064899,-0.021785783,0.021063577,0.1751058,-0.1912187,-0.20844667,-0.02940895,-0.16653109,0.22834142,-0.036336754,-0.05062843,0.015353113,-0.23336238,-0.26776424,0.20682801,0.008755993,0.31998143,0.41469285,0.2864719,-0.28090966,-0.20438018,-0.21360882,0.6265309,0.042408235,0.030993305,-0.31923404,-0.44241858,-0.098480575,0.29552796,-0.108802944,0.20649913,0.10797736,-0.61311376,0.66551006,-0.10933089,0.9236485,0.02067269,-0.25465825,-0.03113825,0.45373732,0.04955444,-0.10591824,-0.41853765,0.780541,0.64642185,-0.019383715,-0.16926762,-0.1285532,-0.049032494,0.24532212,-0.17336117,-0.34917262,-0.048133723,-0.73820347,-0.25368837,0.17710534,0.2899631,-0.11120297,0.019295802,0.14070736,0.20198056,-0.060956977,0.3627621,-0.3630831,0.104175,0.32064694,0.29574355,0.14857706,0.19275714,-0.36687055,0.25614816,-0.5218737,0.05684724,-0.17534648,0.05291883,0.10829181,-0.17472045,0.22632918,0.15203227,0.36142984,0.016118225,-0.07222358,0.0003735377,0.38281286,0.12902237,0.28410932,0.654314,-0.10950352,0.15065797,-0.11219546,0.4687874,1.0636036,-0.22975148,-0.04711237,0.29513198,-0.3568454,-0.6813491,0.46937326,-0.34775478,0.16763268,-0.026211482,-0.2518169,-0.27006525,0.30282715,0.27395982,-0.18232642,0.070380755,-0.35773674,-0.3917665,0.21075815,-0.2627115,-0.3151105,-0.4528974,0.06254713,0.5238149,-0.18661052,0.06580822,-0.019804899,0.5922855,-0.14771962,-0.5680996,0.14895791,-0.26529264,0.2183795,-0.06726134,-0.2327074,-0.1833287,0.039773367,-0.32793278,0.29990327,0.19189939,-0.37830406,-0.06117042,-0.19954509,-0.12725341,0.6890315,-0.20317627,-0.20806743,-0.6689438,-0.44961455,-0.9529021,-0.38360915,0.36796242,0.25130507,-0.106793575,-0.4811274,-0.11137827,0.17473485,-0.16865133,-0.21295375,-0.37074074,0.35354507,0.0030366103,0.4231552,-0.053814474,-0.61201036,-0.09830383,0.14435302,-0.24532032,-0.43216148,0.54252744,-0.030337526,0.69123185,0.07014157,0.096742906,0.28471217,-0.2929532,0.21309695,-0.1317801,-0.38819313,-0.7207935,0.046894662 -195,0.5737051,-0.21451096,-0.46360934,-0.12467401,-0.5625102,0.33828792,-0.21457134,-0.036603317,0.07701948,-0.46641508,0.009440076,-0.13217995,-0.10821231,0.29287142,-0.25854594,-0.65474653,-0.11096435,0.09514109,-0.6641482,0.5434216,-0.6272699,0.39145264,0.1454919,0.23136592,0.04528401,0.14414653,0.24139789,-0.120646,-0.3599847,0.060617108,-0.1342949,0.25138378,-0.6915416,0.28992787,-0.11045148,-0.3713598,-0.02365265,-0.33394417,-0.0906939,-0.8073399,0.3191537,-0.7940539,0.47881562,-0.14601517,-0.35617536,0.096011624,0.15390992,0.17160366,-0.2841189,0.007822208,0.17761305,-0.36276883,-0.22529618,-0.17174686,-0.3503499,-0.75838524,-0.82403725,0.04580831,-0.70128685,0.004935302,-0.3321255,0.46797135,-0.28507358,0.03182163,-0.1543801,0.4602161,-0.4436642,0.08276035,0.11526758,-0.027688632,-0.13208666,-0.46950465,-0.11217901,-0.15012683,0.101759315,0.06961914,-0.07535258,0.26229596,0.4979383,0.6476022,0.26032776,-0.43393862,-0.291927,0.083908655,0.015079774,0.45497382,-0.11036372,-0.2657001,-0.27506036,-0.110819966,0.5393088,0.23600417,0.19300087,-0.2732053,0.03997825,0.035590746,-0.2243594,0.3776565,0.4186474,-0.33031347,-0.18533385,0.48259926,0.50901926,-0.18227229,-0.19151689,0.16528402,-0.029325929,-0.6463544,-0.08926031,0.42959535,-0.16407107,0.63480514,-0.22640763,0.16740379,0.7506089,-0.28168932,-0.13369553,-0.065551944,-0.24718499,-0.078864746,-0.20132895,0.023491748,0.050647102,-0.5060701,-0.11633154,-0.3540931,0.7532302,0.07655223,-0.86878717,0.30775544,-0.36094874,0.14830391,0.0023796689,0.74906594,0.8800913,0.5025007,0.31975794,0.9500352,-0.44471753,0.08225473,0.033513308,-0.34435996,0.15382524,-0.18641008,0.060818702,-0.4613448,0.1845384,-0.16183944,-0.10280697,-0.2057188,0.77102274,-0.5742365,-0.14733702,-0.15461919,0.648959,-0.4230979,-0.09809048,1.0019065,0.85753804,0.9301723,0.17613538,1.5134861,0.57246876,-0.088488355,0.010036631,-0.3942307,-0.4904172,0.24643607,0.23995517,-0.20708,0.39691144,0.057854533,0.03868382,0.4388647,-0.4360024,-0.08139321,-0.22199711,0.23383966,-0.023225829,0.04382725,-0.4653207,-0.22455302,0.17576581,0.0008703247,0.23745693,0.35173708,-0.34039772,0.6114048,0.3236794,1.2105983,-0.16743132,0.043185305,-0.04684656,0.12790796,0.020758718,-0.11547713,-0.027781658,0.06898372,0.4439792,-0.25229532,-0.60347116,-0.06975798,-0.28473532,-0.4089465,-0.37254757,-0.27012646,-0.1346095,-0.20531969,-0.39528042,-0.35946393,0.06670306,-0.46439883,0.42270303,-2.0748553,-0.2811218,-0.29967046,0.36986828,-0.056748334,-0.43006712,-0.14881295,-0.6176939,0.26455003,0.2774519,0.22556435,-0.73163164,0.44068643,0.30826274,-0.42944154,-0.103925474,-0.81970346,0.053317323,-0.16781956,0.33235714,-0.087855,-0.24674074,-0.23298626,0.10967809,0.6556413,0.019469187,0.16608861,0.28998038,0.6030078,0.053204928,0.5147809,0.38940644,0.6999771,-0.18697824,-0.23805355,0.5613748,-0.39715979,0.33061427,0.21611002,0.20293348,0.4599148,-0.50822806,-0.8047796,-0.67040193,-0.36115888,1.0661013,-0.3496134,-0.37083834,0.09590727,-0.003029585,-0.15496352,0.0100634545,0.48413253,-0.15513977,-0.018705275,-0.81799996,-0.09476051,0.12260311,0.18696102,-0.14150393,0.13510461,-0.26551515,0.6879569,-0.3297728,0.259663,0.3997853,0.2756459,-0.3127026,-0.5322791,0.21022475,1.0539149,0.46256799,0.13964063,-0.16548713,-0.56129146,-0.24071014,-0.19782893,0.0973529,0.41354835,0.7647945,0.11467311,0.04477749,0.30099553,-0.20451611,0.14970148,-0.2439411,-0.26559857,-0.21589118,0.07982062,0.4428142,0.4155838,-0.13398485,0.4577076,-0.28616077,0.18654962,-0.027984139,-0.53999156,0.58613926,1.0571164,-0.15758829,-0.30575812,0.57799256,0.33898118,-0.3652513,0.47756356,-0.59029245,-0.22880852,0.6374498,-0.023676546,-0.34837708,-0.07956906,-0.48681712,0.27320528,-0.89737964,0.41354385,-0.1131984,-0.4300202,-0.6503571,-0.15972678,-2.8110747,0.22010265,-0.28318465,-0.029930413,-0.12980324,-0.34341544,0.31843686,-0.47943482,-0.4851914,-0.07640745,-0.034466643,0.46150076,0.04598551,0.089938626,-0.27188855,-0.20911266,-0.26027814,0.16559117,0.25013247,0.28972813,-0.09406812,-0.34727985,0.31615466,-0.51967424,-0.4002301,-0.048832774,-0.7209496,-0.74041724,-0.18560311,-0.4809563,-0.39405844,0.7766597,-0.3492316,-0.19145739,-0.3201156,0.15903307,-0.07794095,0.35396257,0.16843523,0.035521798,0.13538264,-0.15244523,-0.13517343,-0.36623582,0.22394995,-0.009646092,0.17543183,0.65033174,-0.15841845,0.32623634,0.4442829,0.6568956,0.045075208,0.7845867,0.2512933,-0.1296033,0.20086087,-0.052725192,-0.26640028,-0.88190335,-0.39136153,-0.12021073,-0.5459377,-0.3884486,-0.09139311,-0.37987754,-0.84569716,0.52006495,-0.12957637,0.27007985,-0.1684625,0.4780622,0.44613746,-0.1082079,0.1776851,-0.3243325,-0.34357688,-0.45623854,-0.595647,-0.84865683,-0.7454766,0.08228165,1.4929883,-0.05610545,-0.1098668,0.062013432,-0.3632817,0.1946468,0.16333145,0.09316523,0.2221804,0.4948635,-0.18975943,-0.678357,0.41825926,-0.09152017,0.06208539,-0.41552475,0.045717254,0.6775921,-0.5835242,0.4786157,0.41134888,0.20619532,0.22863561,-0.5927381,-0.2346186,0.16562115,-0.25186327,0.5414662,0.28249127,-0.56295115,0.5395498,0.102347836,-0.27527308,-0.85861415,0.26350477,0.05748237,-0.028439835,0.052972943,0.49124137,0.21235311,-0.03205017,-0.29391676,0.2667791,-0.5871782,0.31210685,0.4029563,-0.20631945,0.24584296,-0.2580304,-0.3924863,-0.638129,-0.16332263,-0.5148711,-0.28265548,-0.064275116,0.02321845,0.05719696,0.048914723,0.2740165,0.4941612,-0.47068614,0.07886494,-0.058577858,-0.21316856,0.28297693,0.51589847,0.24418177,-0.37928897,0.6575788,0.02915962,-0.14596453,-0.1858559,0.04733439,0.48747444,0.2877673,0.14951481,0.21308745,-0.06024558,0.26894557,0.69563246,0.119904526,0.34895337,0.18975395,-0.39745182,0.42566866,0.1912255,0.2981402,-0.10732838,-0.29948562,-0.20837021,0.15020359,0.17469546,0.45907012,0.04148848,0.463677,-0.16081378,-0.040093645,0.2388654,0.037856273,-0.11385812,-1.1883488,0.11496421,0.21449608,0.5846597,0.37099382,-0.09955415,0.08688303,0.54259944,-0.5503278,-0.0488079,0.3968167,0.0709178,-0.32646728,0.5428862,-0.5441619,0.32400727,-0.41891605,0.14372958,0.011890195,0.17270277,0.27710786,1.0582812,-0.09988965,-0.06563277,-0.044256654,-0.07787531,0.21180448,-0.1453813,0.19288261,-0.45141804,-0.2986894,0.7375573,0.39161268,0.4492504,-0.26242453,-0.032721788,0.1270903,-0.20591266,0.23290072,-0.11243294,-0.11182205,-0.10478921,-0.6079883,-0.25123125,0.5254106,0.10906012,0.25433576,0.27440405,-0.480726,0.2092528,-0.19989288,-0.13976617,-0.08485928,-0.7015484,-0.28546172,-0.36316237,-0.4216525,0.21145545,-0.44707066,0.21131983,0.37269312,0.05965674,-0.4610927,-0.19759241,0.33353636,0.780651,0.104239285,-0.12310595,-0.22039697,0.12046889,0.39159068,-0.39021164,0.06085316,-0.13341217,0.23294559,-0.58763766,0.5406186,-0.32406798,-0.35840407,-0.033338115,-0.25676304,-0.07338031,0.581307,-0.3666216,-0.14842016,0.15385461,0.10941613,-0.22923774,-0.013245847,-0.24265066,0.3158251,0.05582148,-0.1810823,-0.042111117,-0.13789028,-0.19337139,0.46289992,0.20403978,0.24178268,0.3816013,-0.09849823,-0.5358877,0.010982215,0.06267716,0.54241943,0.10092135,-0.21879087,-0.37824693,-0.19915551,-0.23303445,0.43017012,-0.0862142,0.12991147,-0.007709572,-0.5366957,0.97886235,0.08091183,1.2767376,0.14773986,-0.43627438,-0.03419518,0.691916,0.03306301,0.18895988,-0.28462052,0.9344592,0.4769464,-0.1887713,-0.09882538,-0.5510297,-0.14270101,0.40707555,-0.27355137,-0.07248783,-0.28010535,-0.7443123,-0.31728896,0.24694778,0.17199197,-0.10495421,-0.039962806,0.10020815,0.058070537,-0.07061762,0.6596601,-0.64761436,0.007145196,0.23218328,0.13406426,-0.018477686,0.39734435,-0.29290032,0.37631994,-0.7013519,0.09259144,-0.31063968,0.18538061,0.15233617,-0.21720986,0.33031443,0.034808733,0.37200737,-0.26708603,-0.3146491,-0.42968538,0.8250485,0.30153272,0.34816808,0.9209164,-0.46316803,-0.05304327,0.17001303,0.5380683,1.5020216,-0.15834647,0.22607629,0.10809765,-0.37500462,-0.60665965,0.38540044,-0.46571139,-0.015430823,-0.15848711,-0.3841807,-0.46397784,0.31974468,0.3271352,0.105901375,0.14438799,-0.44651443,-0.17965296,0.60267395,-0.23450585,-0.0757834,-0.1198186,0.28151956,0.7363335,-0.4310183,-0.3165856,-0.12432492,0.48392427,-0.23367421,-0.6514682,-0.05106715,-0.27414313,0.51443106,0.29388952,-0.22582659,0.019910343,0.25387752,-0.43105993,0.18407123,0.42737532,-0.27351457,0.050734818,-0.26196173,-0.015817106,0.91022813,0.093231395,0.18798552,-0.6683986,-0.4318501,-0.88753295,-0.36476254,0.11538707,0.31280887,0.013050855,-0.59942836,-0.0979533,-0.15802394,-0.12585007,0.26205724,-0.77387995,0.3709411,0.05343652,0.55598,-0.037588835,-0.9068735,-0.029146098,0.041943736,-0.033642262,-0.41315952,0.5091342,0.004647389,0.6809786,0.41166204,0.15221547,-0.09267359,-0.5599934,0.4265948,-0.43495458,-0.1639463,-0.71450967,0.1262183 -196,0.51447713,-0.23205446,-0.5516473,-0.3378631,-0.547372,0.16047578,-0.31579185,0.026522234,0.28575715,-0.33688945,0.042828124,0.038122486,-0.14560372,0.15212928,-0.14447653,-0.6242742,-0.1928848,0.11062515,-0.83452666,0.59285665,-0.47253674,0.21289697,0.08329334,0.3568138,0.15618873,0.2388308,0.17863142,-0.0033571497,-0.19374436,-0.11301213,-0.08355078,0.33607867,-0.8569995,0.16681065,-0.22871292,-0.40302384,-0.1212143,-0.5417678,-0.19358356,-0.713608,0.25656086,-0.8605842,0.6089972,-0.19560368,-0.300662,0.05317553,0.2323827,0.23503122,-0.2589567,0.15937658,0.2520504,-0.1662298,-0.1751807,-0.09279859,-0.30020306,-0.47393912,-0.6447114,0.07141728,-0.6426145,0.038308606,-0.19155625,0.33627266,-0.28566226,0.13245517,-0.35530978,0.42363617,-0.39294058,-0.076670446,0.015826069,0.0069976673,0.019470893,-0.4511954,-0.14891607,-0.31842834,0.34239638,0.031775557,-0.30963728,0.20693249,0.27897105,0.6159078,0.11450935,-0.39899245,-0.32258135,-0.10974794,0.05276882,0.36225057,-0.077016324,-0.21561703,-0.41555902,-0.04253623,0.46888018,0.26307935,0.037321776,-0.334001,0.16072038,-0.0023173227,-0.23070164,0.6585113,0.45977283,-0.3846591,-0.28298432,0.38720262,0.40491456,0.16636892,-0.24302927,0.2132959,-0.040526837,-0.5322819,-0.26950407,0.3207028,-0.11281459,0.38939184,-0.09590705,0.22819698,0.692921,-0.20748688,-0.10556575,-0.14959517,-0.2647051,-0.09213258,-0.33029333,-0.17201833,0.1698589,-0.5642194,0.1620345,-0.24597788,0.4941265,-0.0013938807,-0.952433,0.332304,-0.61115843,0.23755929,-0.055061273,0.6918285,1.0565485,0.5730519,0.30510503,0.8025868,-0.22355625,0.12591106,-0.029036734,-0.2711567,0.01414586,-0.18059038,0.1616762,-0.51892346,0.0401145,-0.1352255,-0.032808334,-0.13001022,0.60911924,-0.4428326,-0.1997383,-0.019755758,0.6734384,-0.3332247,-0.13274682,1.1235476,1.0183005,1.2357742,0.18752378,1.3636796,0.30440485,-0.061516672,-0.08164122,-0.2592969,-0.5540215,0.21124177,0.2765203,-0.11696401,0.46626994,0.0010088915,0.09649606,0.43708473,-0.43882143,-0.024866879,-0.027905278,0.2119248,-0.039564986,-0.028658282,-0.2784024,-0.26735824,0.37985206,0.08908498,0.21562862,0.2512347,-0.28253222,0.63148755,0.22458898,1.1673033,-0.043724243,-0.010123886,-0.0013615638,0.3852982,0.2188756,-0.18709028,-0.024665006,0.3071362,0.44153142,-0.15162493,-0.55901086,0.060136724,-0.30275416,-0.23466316,-0.16927499,-0.37320563,-0.1591039,-0.3732784,-0.4606286,-0.36480176,-0.0132279135,-0.44656533,0.502241,-2.2997193,-0.3269886,-0.19118655,0.14682727,-0.18276066,-0.3677377,-0.16838121,-0.56990093,0.27632827,0.30495942,0.34832802,-0.6977013,0.62303203,0.5086449,-0.6245369,-0.035315458,-0.8043431,-0.21092318,-0.108148046,0.3904433,-0.074516445,-0.32369983,-0.24899232,0.29508254,0.59278613,0.039832048,0.15003844,0.32312512,0.5533001,-0.07917812,0.7198298,0.119921744,0.53751004,-0.21492247,-0.23244165,0.46640265,-0.3701366,0.2632817,0.03366311,0.12921052,0.60985965,-0.5830185,-0.8963014,-0.6719742,-0.3956622,1.236022,-0.35331693,-0.44957253,0.07752337,-0.2527971,-0.28569043,0.054780677,0.5514288,-0.20105231,0.002351489,-0.8461445,-0.10607651,-0.025153399,0.2802429,-0.1529178,0.15305361,-0.4739648,0.66258633,-0.08858438,0.5068183,0.26935944,0.25330025,-0.32480443,-0.4220431,0.22880176,0.9471143,0.4885075,0.0086852275,-0.3021516,-0.2553427,-0.1168904,-0.079899006,0.017439406,0.58194685,0.57521456,-0.0786369,0.12046998,0.48980016,-0.16604395,0.10831936,-0.25393096,-0.22153412,-0.1719441,0.0840718,0.6231891,0.60300624,-0.12217299,0.42773262,-0.22102278,0.23672894,-0.06400713,-0.5720937,0.57340604,0.86885417,-0.11303108,-0.21006691,0.6408771,0.4895115,-0.30179718,0.5411385,-0.62194145,-0.27237874,0.5463129,-0.017613344,-0.4359479,0.13963193,-0.42385232,0.08959683,-0.86420083,0.1581278,-0.25263122,-0.3015317,-0.57684946,-0.20227255,-3.4327054,0.034547277,-0.09374493,-0.06466968,-0.23695958,-0.42554498,0.44307286,-0.46321714,-0.7939367,0.08792331,0.0826435,0.54081225,-0.14743735,0.11481837,-0.28515503,-0.3735483,-0.42575473,0.23381227,0.24274985,0.25606817,-0.0867182,-0.4603203,0.006644888,-0.34794995,-0.47906458,-0.15539005,-0.63147426,-0.45607623,-0.07954154,-0.5613489,-0.3656768,0.63384193,-0.2699654,-0.078751154,-0.42024165,0.0053559355,-0.056810707,0.4081001,0.100140676,0.16981693,0.10855009,-0.13242668,-0.097447254,-0.22563457,0.22768044,-0.042434033,0.1994873,0.23850387,-0.08480193,0.28746486,0.4392447,0.77699995,-0.08945809,0.9190488,0.27502006,-0.168156,0.37521446,-0.115640186,-0.3204086,-0.7917459,-0.25152296,-0.111332566,-0.5777441,-0.42892408,-0.11308947,-0.39076805,-0.85407394,0.5210748,0.07187722,0.24530452,-0.21769062,0.36164925,0.39535052,-0.14812353,0.16221485,-0.19631854,-0.3040866,-0.37387258,-0.49006712,-0.77509207,-0.549202,-0.096523724,1.3921535,0.01179564,0.017532036,0.18875933,-0.3309334,0.13352795,0.261629,0.21205585,0.34760165,0.5878164,-0.054368407,-0.64777863,0.34994423,-0.21146625,0.0671093,-0.5796361,0.07706146,0.8360488,-0.65909874,0.5775176,0.3754065,0.1827661,-0.0030497424,-0.6068174,-0.12301781,0.04510431,-0.19055462,0.7675315,0.42151973,-0.77990025,0.6246711,0.13537392,-0.08354102,-0.7669742,0.5143624,0.07128834,-0.03844455,0.03142048,0.43287212,0.058192447,-0.03823141,-0.03837215,0.19546944,-0.43053603,0.37161264,0.28563634,-0.02039764,0.33628425,-0.15735653,-0.29601127,-0.64998,-0.12976682,-0.41831416,-0.35913706,0.02789193,-0.120040044,0.15075144,0.12536697,-0.037832916,0.4714175,-0.19864729,0.084194936,-0.16770057,-0.20573431,0.23453881,0.569457,0.28287327,-0.41124922,0.7110162,0.24709797,-0.14935857,-0.09340101,0.102671206,0.32130575,0.16275589,0.35797414,0.10475133,-0.20778419,0.2370843,0.62661517,0.17840019,0.30982518,0.1003471,-0.17620121,0.35279846,0.110767186,0.15886557,-0.23238362,-0.43362987,-0.21091416,-0.023002457,0.17328563,0.4562332,0.12831655,0.2686972,-0.127472,0.041767035,0.030845396,0.19733098,-0.2831624,-1.5541055,0.14793515,0.31789368,0.8321443,0.7060545,0.06171307,0.0067457594,0.55604863,-0.45428884,-0.022966899,0.4950776,0.25908372,-0.29297656,0.59481436,-0.4693096,0.475219,-0.10240177,0.10820286,0.046889216,0.11846854,0.4456253,1.0327152,-0.21517006,0.099093676,0.02301132,-0.11657789,0.2525014,-0.0992392,0.090456136,-0.39033476,-0.33684048,0.77915144,0.37806988,0.3911533,-0.37334114,-0.096081965,-0.05727032,-0.29503688,0.10022084,-0.017356958,-0.10948796,-0.12765111,-0.52303016,-0.19558758,0.51503485,-0.0921689,-0.0007432215,0.29085156,-0.474182,0.16546081,-0.027736379,0.11419518,0.010708988,-0.6917371,-0.16638467,-0.22098993,-0.41970533,0.24774893,-0.40482545,0.09915176,0.13818265,0.04033483,-0.2736681,0.027287126,0.13878885,0.6677494,0.10249039,-0.047909554,-0.14094776,0.045914337,0.20825422,-0.37167105,-0.09055059,-0.30650115,0.2608553,-0.6638739,0.521634,-0.17538181,-0.45496273,0.15430185,-0.063745335,0.021297915,0.37673175,-0.21026984,-0.19773015,0.10899383,0.10323078,-0.3649954,-0.18562534,-0.3282671,0.27627861,0.04947278,0.031645715,-0.020520808,-0.07844944,-0.10360625,0.6245146,0.09518389,0.2560044,0.46820927,0.070677675,-0.6101655,0.075982206,0.034378685,0.6663625,-0.0058760047,-0.15368457,-0.33974275,-0.18719098,-0.3069088,0.593439,-0.13454351,0.18334377,-0.08790171,-0.4860283,0.8280039,0.107675955,1.2106445,0.033281557,-0.44086057,0.03626309,0.5301333,-0.17566806,0.046403266,-0.30473414,0.9313505,0.5274105,-0.17857084,-0.2527377,-0.5344968,-0.15287952,0.115460485,-0.33970433,-0.17343333,-0.27193332,-0.71407634,-0.17176381,0.16730654,0.13908774,0.1578427,-0.00824772,0.1122722,0.16269754,0.106914625,0.5190966,-0.54050934,-0.06957501,0.26031187,0.26542988,-0.0654322,0.19369546,-0.40054458,0.25098076,-0.75272894,0.109241806,-0.44932967,0.11333207,-0.05727853,-0.2678592,0.23399088,0.119213276,0.26363057,-0.24828495,-0.35612532,-0.30750853,0.63725686,0.0057669254,0.30886388,0.9330711,-0.21667574,0.063513234,0.08922868,0.46624207,1.3349965,-0.10912211,0.032138295,0.14579709,-0.2733982,-0.5267072,0.16236177,-0.5400741,0.14084892,0.13238111,-0.40755957,-0.30759043,0.27466634,0.05773824,0.18443942,0.11809962,-0.71744263,-0.16147949,0.436626,-0.116296545,-0.11803609,-0.33905897,0.26010808,0.85137004,-0.3135205,-0.27132344,-0.103999786,0.42427635,-0.24691199,-0.7568879,-0.047282685,-0.44176945,0.5090242,0.09608192,-0.2750329,0.018297676,0.098739035,-0.55245876,0.109308414,0.46095073,-0.2966042,0.06531182,-0.32991588,-0.18914874,1.0825838,-0.13231054,0.2342422,-0.51086813,-0.5852121,-0.892531,-0.1263941,0.02483508,0.23422226,-0.024951477,-0.5215487,-0.09259215,-0.1786463,-0.14853133,0.26967487,-0.6685678,0.4757155,0.1766222,0.61888385,-0.038162045,-0.8636464,0.02611208,0.040789627,-0.05765653,-0.27657935,0.7288598,0.090391956,0.6981107,0.22951093,0.09522909,-0.122892916,-0.6335725,0.35570258,-0.33693644,-0.060360655,-0.8326634,0.06403687 -197,0.64284384,-0.31002122,-0.5544117,-0.029881245,-0.1371707,-0.057636257,-0.13617554,0.5821729,0.36746186,-0.3236275,-0.30321875,-0.034864906,0.06088838,0.043150574,-0.17966233,-0.47328216,-0.02569701,0.25732988,-0.58298457,0.6931666,-0.26773128,0.23489843,-0.014977957,0.49289793,0.22356583,0.13379464,-0.07401259,0.023314476,-0.030456258,-0.0038197595,0.030604009,0.39781666,-0.5703591,0.06466867,-0.3873364,-0.45629925,-0.3151935,-0.562797,-0.36894712,-0.92905045,0.30538368,-0.81883144,0.5051335,0.1403736,-0.41576734,0.12339834,-0.05866513,0.18005545,-0.3007297,-0.08019761,0.12068604,0.02298018,-0.07264735,-0.05320635,0.0046532876,-0.14529805,-0.63095444,0.06118593,-0.48258847,0.15405263,-0.19613358,0.09371253,-0.339873,-0.08397488,-0.031673737,0.7184784,-0.31343335,-0.08267216,0.16475494,0.0035652858,0.32465753,-0.5871355,-0.22792812,-0.11084355,0.3920299,-0.18080655,-0.40603837,0.12908173,0.22650771,0.59455854,0.021929907,-0.26052758,-0.28914103,0.24079014,-0.04738472,0.4418374,-0.020031989,-0.576873,-0.1807158,-0.008267845,0.36438352,0.14055434,0.24260895,-0.12397898,-0.18128507,0.0073979413,0.019378934,0.43700913,0.5792602,-0.21731398,-0.24417482,0.359476,0.62577313,0.17037375,-0.02920961,0.08223865,0.045488495,-0.58629817,-0.18504085,0.07814896,-0.29927447,0.49796304,-0.23658077,0.34840816,0.5205219,-0.09230246,-0.16886842,0.33494517,0.06822563,-0.16418801,-0.07821947,-0.31715742,0.18701823,-0.47891822,0.118273206,-0.31653807,0.59215677,0.18295558,-0.7805168,0.2659929,-0.5746976,0.28567824,-0.0049207364,0.61228734,1.0792954,0.40838486,0.4549136,0.6945406,-0.28844577,-0.014593393,0.07610166,-0.24038479,0.1485288,-0.29764146,0.021870375,-0.5835196,-0.23824517,-0.05849317,-0.1937481,0.091226764,0.4489269,-0.6788234,-0.27125522,0.07853091,0.6026074,-0.19304223,-0.13281152,1.0830712,1.0090868,0.9964551,0.10668813,1.1433417,0.19877775,-0.2875493,0.26247698,-0.2649653,-0.74087995,0.38122773,0.1838805,-0.20956203,0.39730832,-0.04760949,-0.11383198,0.4098987,-0.5669138,0.025931848,-0.11426945,0.017923037,-0.06622107,-0.060958248,-0.42414775,-0.4066408,-0.2232881,0.19714525,0.20700553,0.26500207,-0.284597,0.42422003,-0.038731392,1.3301029,-0.07642005,-0.05849869,-0.03739222,0.43076023,0.23216756,-0.22741096,-0.32029918,0.16818665,0.3354118,0.11833397,-0.6026243,0.14273332,-0.109776735,-0.2182483,-0.11914333,-0.34047678,-0.022709796,-0.09915809,-0.38663676,-0.2448835,-0.32197443,-0.5491422,0.3201593,-2.607596,-0.2887657,0.041487355,0.42791325,-0.18881114,-0.30032846,-0.28518134,-0.5854937,0.37873858,0.3067758,0.48169222,-0.8278305,0.3245304,0.30263194,-0.65786994,-0.052990615,-0.7321641,-0.15397552,0.06440109,0.24689409,0.052535288,-0.13390683,0.10344188,0.23267838,0.378505,0.15038708,0.12592827,0.3924219,0.46393278,-0.07608463,0.29565546,0.062231857,0.49168256,-0.32145828,-0.15491973,0.4226908,-0.44563255,0.1648867,-0.19686754,0.09331413,0.5067927,-0.6123436,-0.94074976,-0.6548113,0.110627785,1.2454349,-0.055333458,-0.42775854,0.078561924,-0.61218494,-0.12954403,-0.116421685,0.7370474,-0.14643672,-0.18716624,-0.8970936,-0.1587832,0.029799035,0.114833795,-0.034043003,0.01609146,-0.5092314,0.5553519,-0.011698701,0.5058703,0.2733279,0.21501163,-0.3675366,-0.63263625,0.24847934,1.0200925,0.41487598,0.15777385,-0.2513359,-0.11660136,-0.41529694,0.09970717,0.043448143,0.55392927,0.7304117,-0.19243346,0.24460427,0.37097147,0.048186872,0.13794754,-0.17099537,-0.24294293,-0.3465571,0.047698047,0.6089447,0.8766066,-0.2541108,0.40281853,-0.014475652,0.10605979,-0.13980943,-0.40781572,0.7135206,1.2138633,-0.21932021,-0.24406992,0.5331082,0.41771927,-0.28092098,0.5668027,-0.568484,-0.40202454,0.31515637,-0.16686676,-0.34786487,0.24691619,-0.3843839,0.3466368,-0.97315323,0.32607752,-0.22491945,-0.34005123,-0.622004,0.1148877,-2.3666065,0.15319808,-0.17161004,-0.10042262,-0.27152762,-0.33457312,0.10370178,-0.5505527,-0.7189618,0.18333904,0.06363641,0.82892895,-0.08018977,0.092206374,-0.15509507,-0.49764803,-0.40464023,0.049448628,0.26970926,0.5291843,0.12085791,-0.43003017,-0.019565748,-0.16186066,-0.2899063,-0.0696476,-0.59742814,-0.6531598,-0.09677996,-0.6525523,-0.31490874,0.5892276,-0.13178487,0.06310474,-0.20648344,-0.069688715,0.08136548,0.40582266,-0.0039273626,0.036233332,0.004635499,-0.11730765,0.20899126,-0.11359068,0.25020605,-0.03854068,0.21339305,0.42074013,-0.250533,0.45691457,0.5933503,0.75629586,-0.23028927,0.9007905,0.6496642,-0.026806584,0.22332154,-0.16919753,-0.39392498,-0.52425534,-0.10761862,-0.07784957,-0.4360078,-0.25648996,0.019016977,-0.44488683,-0.97671175,0.4018252,-0.05169463,0.32808343,0.1096613,0.18452881,0.70983505,-0.14320767,0.06637545,-0.21279417,-0.21776721,-0.44378588,-0.10494178,-0.6276034,-0.45491934,0.116086625,0.99739903,-0.235827,0.111760564,0.28446448,-0.1439167,0.05439694,0.18532327,-0.025534542,0.08805221,0.49845362,0.008964954,-0.5674096,0.34185812,0.045119636,-0.18824148,-0.5319578,0.26616198,0.46447113,-0.6385932,0.39375526,0.37653837,-0.08389961,-0.18048373,-0.48937845,-0.05783073,-0.10416156,-0.05368639,0.4816208,0.39152366,-0.68391323,0.44606075,0.28994745,-0.09983552,-0.8372397,0.50070924,-0.008852045,-0.2723527,-0.1912122,0.322193,0.027236512,0.08128236,-0.29955626,0.21957955,-0.32104418,0.29359373,0.11316749,-0.2829588,0.25208044,-0.19631456,-0.09794403,-0.63510424,0.085591555,-0.7566257,-0.25133458,0.2764179,0.24781673,0.06716221,0.029917931,0.13554537,0.36581522,-0.25809637,0.037461698,-0.070905074,-0.2717573,0.32669693,0.426673,0.55897474,-0.33743474,0.5821923,0.051212844,-0.16155215,-0.0068697757,0.01632489,0.35748276,0.025073767,0.3416144,0.17521122,-0.18879439,0.25292078,0.65405905,0.12773475,0.41804674,-0.02620967,-0.05932956,0.10225745,0.13392678,0.3847901,-0.23729464,-0.4400108,0.013428637,-0.38181168,0.13129136,0.47254896,0.2248424,0.1329007,-0.06583994,-0.36786518,-0.06502176,0.19802412,0.031664226,-1.4968796,0.34542328,0.31630605,0.88844454,0.47792265,-0.14807269,0.05661336,0.66320133,-0.17530979,0.16637349,0.32009035,0.060527027,-0.5822874,0.51037097,-0.6851748,0.52579486,-0.04776028,0.040805165,-0.03860895,-0.080407016,0.37120575,0.6923121,-0.18966642,0.11888271,-0.08215802,-0.2461609,0.1521984,-0.40104744,0.07955409,-0.6905555,-0.13604568,0.82236946,0.4373164,0.33058304,-0.29991674,0.13002738,0.011921031,-0.16510169,0.21557109,0.06781795,0.06267937,-0.101219244,-0.74962044,-0.10453914,0.38383484,-0.12596536,0.11731713,-0.023289025,-0.2440881,0.04295116,-0.15309219,-0.038217824,-0.19230983,-0.7746505,-0.21414694,-0.4238841,-0.26496667,0.678815,-0.066749886,0.23769473,0.33117512,0.17725272,-0.35804322,0.16910617,0.021155996,0.6623584,0.022355411,-0.14566132,-0.37700143,0.32836086,0.24213901,-0.23802915,-0.27502522,-0.20064318,0.17559123,-0.3264935,0.53907454,0.11869997,-0.38176575,0.07058801,-0.06571938,0.051861662,0.5475376,-0.19820942,-0.17163788,0.0112299835,-0.22051294,-0.3337811,-0.28321,-0.12491895,0.29967138,0.34698704,-0.12198399,-0.16274402,-0.013380106,-0.08903499,0.5174797,0.12481165,0.3898048,0.47503906,0.1258761,-0.40555805,-0.018817263,0.2868077,0.5282044,0.062428497,-0.1897356,-0.56309,-0.43571642,-0.44361168,0.029863775,-0.120343074,0.24612017,0.10866041,-0.04029184,0.6691275,0.18486086,1.1564378,-0.000751621,-0.3216726,0.10043276,0.48206738,-0.08822514,-0.237008,-0.35719398,0.8970044,0.42520973,-0.19363417,0.013977866,-0.2862641,-0.08446993,0.27710536,-0.12944847,-0.14873764,-0.082195826,-0.6807232,-0.29363364,0.23560289,0.3815009,0.14046016,-0.17194441,0.05759766,0.24472143,-0.10508567,0.09489048,-0.49925286,-0.15354553,0.32972455,0.23566552,-0.02482714,0.03075753,-0.55895585,0.2957912,-0.47954348,-0.01961368,-0.14925154,0.25323984,-0.13435192,-0.47250083,0.2756774,0.1645781,0.32329568,-0.3766549,-0.42844105,-0.40379456,0.5046176,0.13932993,0.06008062,0.4650429,-0.37634262,-0.011626227,0.15549226,0.5153533,1.0810956,-0.051069677,-0.05779508,0.2682065,-0.29084417,-0.6549805,0.26790234,-0.33137655,0.3570374,-0.11948771,-0.20997126,-0.65578884,0.23157136,0.12634543,0.22535859,0.03361353,-0.64663124,-0.32908157,0.2723517,-0.24479191,-0.04443678,-0.45545313,-0.07838363,0.5299615,-0.19186306,-0.30031604,0.124381356,0.13728948,-0.08935552,-0.55765855,-0.066160776,-0.40253633,0.11174076,-0.00324483,-0.38295978,-0.16857198,0.011181082,-0.5135624,0.24778093,0.1576686,-0.37991673,0.09902501,-0.42976263,-0.014808704,1.0814664,-0.25291857,0.4030462,-0.29128405,-0.51238656,-0.81730664,-0.24201335,0.3999785,0.08115093,-0.0358474,-0.8913545,0.035344116,-0.09465783,-0.122219376,-0.09457238,-0.37489128,0.51250875,0.15952085,0.29545805,-0.08253115,-0.7911628,0.122819886,0.06406554,-0.30195194,-0.56125516,0.51620424,0.25031576,0.8761407,0.18785326,0.24222064,0.34322444,-0.5989937,-0.14952108,-0.11885316,-0.08420675,-0.5151519,-0.0049023586 -198,0.18536185,-0.12377009,-0.547332,-0.27305153,-0.20106892,0.03625503,-0.17054555,0.56313473,0.17735156,-0.13060342,-0.21233243,-0.16274582,0.25698873,0.6285978,-0.20138621,-0.95095843,-0.09149785,0.11451232,-0.8978746,0.3446107,-0.47964624,0.28236735,0.20821767,0.34692314,-0.0058765467,0.051011488,0.54095995,-0.18038763,0.1626975,-0.30244863,-0.14546382,0.11194933,-0.6210431,0.0737244,0.041516867,-0.3730873,0.043736782,-0.5087488,-0.06410251,-0.7154804,0.10243232,-0.8700456,0.7120653,0.0294972,-0.33793458,0.0030599183,0.39602426,0.41248816,-0.29390186,0.09375518,0.18534018,-0.28452584,-0.16097344,-0.19171633,-0.21832609,-0.6556291,-0.4529665,-0.09427052,-0.61397034,-0.5032317,-0.21365346,0.11098283,-0.4490611,-0.044077918,-0.21705116,0.2497316,-0.4448785,-0.18094355,0.5654827,-0.27097,0.46094382,-0.58535486,0.018942205,-0.06345442,0.48873597,-0.03296949,-0.2409873,0.2902868,0.40071142,0.309034,0.21104132,-0.34046996,-0.052919436,-0.3659443,0.18264796,0.47410825,-0.040529057,-0.39825287,-0.14128843,0.14624794,0.43687075,0.6780889,-0.007796068,-0.22241539,0.033753928,-0.07457836,-0.19229035,0.7545736,0.44415715,-0.35891607,-0.3958644,0.335413,0.5770765,0.5556404,-0.13906509,0.10999205,-0.14464873,-0.6149327,-0.18207811,0.17704506,-0.08223888,0.46077615,-0.012432653,0.078628264,0.96161216,-0.18384638,0.011601404,-0.14182065,-0.030021884,-0.18799902,-0.32777613,-0.1319326,0.33845595,-0.6348118,0.019895123,-0.40154344,0.79376787,0.12409694,-0.66551054,0.35471305,-0.64694905,0.11959633,-0.036923822,0.6064901,0.73950475,0.44780874,0.20410468,0.91363776,-0.24583197,0.17950968,-0.11301665,-0.40319824,0.05727059,-0.053391982,0.14801322,-0.5385191,0.23089825,0.03636376,0.21781512,0.10037875,0.39104775,-0.76882,-0.16430458,0.14723821,0.7729797,-0.21497951,-0.05020683,0.7375193,1.042466,1.0336584,-0.044073477,1.2575752,0.18767977,-0.19280343,0.006849045,-0.09520919,-0.538447,0.2119337,0.6337252,-0.112889476,0.3084354,-0.3701662,-0.16581808,0.19654264,-0.23442918,-0.11154228,0.0789721,0.53551644,0.0365283,-0.38232848,-0.577195,-0.029641537,0.083072506,-0.25676894,0.15489583,0.34338662,-0.2005879,0.34614298,-0.11592806,0.7685612,-0.14703923,0.29308206,0.15432054,0.28796837,0.21902305,-0.05384134,0.081752665,0.3614537,0.3610916,-0.11600585,-0.6698091,0.27075282,-0.47833604,-0.42515498,-0.1246932,-0.4823637,-0.2268961,-0.015317545,-0.29417437,-0.03085277,-0.12579578,-0.1886836,0.4419814,-2.8732207,-0.4183354,-0.21660818,0.12779859,-0.2734136,-0.14141767,-0.07146189,-0.4928002,0.449211,0.29277766,0.64111483,-0.39106,0.3675564,0.41573906,-0.5461126,-0.3191145,-0.7185637,0.022416044,0.07818388,0.3223383,-0.14818576,-0.2600074,-0.04332368,0.18765177,0.7434121,0.24569435,0.16175318,0.43604252,0.41145542,-0.06831937,0.4262786,-0.321218,0.7280666,-0.4571579,-0.10831683,0.3479058,-0.20981814,0.44170445,-0.37535855,0.1345025,0.5773251,-0.26007497,-1.1527174,-0.46511605,-0.5297125,1.1045678,-0.5471327,-0.4001129,0.22276187,0.26633903,0.06862163,0.22330646,0.756286,0.046797182,0.2873986,-0.5397081,0.2312013,-0.09147202,0.16669716,-0.056033697,0.007839874,-0.39963922,0.7057442,-0.033827633,0.44029647,0.23880139,0.28508794,-0.17158791,-0.2712677,0.024642022,0.7390804,0.51682764,-0.11047008,-0.020291502,-0.18600959,-0.33178565,-0.18900941,-0.028379792,0.75202465,0.83070433,0.023719441,0.09273309,0.097105145,0.01663098,0.1772227,-0.13698862,-0.3444699,0.06363037,0.17248799,0.4682885,0.3740299,-0.08702397,0.61073214,0.00096371496,0.27877805,-0.27759695,-0.607873,0.67271906,0.3494707,-0.27325,-0.07153568,0.559369,0.4476627,-0.41584805,0.51952267,-0.6313366,-0.32993165,0.97001576,-0.22887263,-0.66255325,0.3640518,-0.08241529,-0.0066047367,-0.81671244,0.12779312,-0.59812415,-0.4700264,-0.23809429,-0.115838505,-3.4673507,0.33114243,-0.13717642,0.026072746,-0.50102085,-0.038829204,0.32144293,-0.54984623,-0.74352837,0.15118761,0.3659639,0.8125189,-0.23183922,-0.0067283185,-0.1582973,-0.32107097,-0.016147494,0.35229808,-0.13325381,0.09495606,-0.22699803,-0.30243987,0.05375835,0.18890266,-0.57889915,0.28495237,-0.57417464,-0.27022773,-0.1771664,-0.46004292,-0.115099125,0.7167431,-0.6992346,0.055626165,0.013238281,0.21367246,-0.086446375,0.057057682,-0.00049186294,0.44449702,0.16472246,-0.15075512,0.07299155,-0.25014424,0.5473651,0.1133683,0.46591905,0.081432395,-0.06500426,0.26740658,0.43596217,0.6080904,-0.04101659,0.99547106,0.10122185,0.039223645,0.32804993,-0.42705935,-0.24697852,-0.4953375,-0.3851391,-0.21485628,-0.40846446,-0.61551756,-0.15613867,-0.1260214,-0.6859918,0.5662403,0.12728849,0.5813885,-0.18726134,0.43519202,0.36659047,-0.35446057,0.011770075,0.032738533,-0.061464477,-0.4599964,-0.14037138,-0.75756437,-0.41365272,0.063933656,0.787496,-0.4880619,0.029657584,-0.27241886,0.006837715,0.11497771,0.16402443,0.06750758,0.12987764,0.38284457,-0.10318796,-0.71156144,0.38778222,-0.08132447,-0.2119897,-0.6267382,0.115641505,0.57772744,-0.7154774,0.5649167,0.31759927,0.022660814,-0.25961673,-0.54724425,-0.069957085,0.25735965,-0.1968234,0.39405224,0.12146859,-0.69664085,0.51392967,0.3801217,-0.32914984,-0.7169799,0.40028226,-0.047913328,-0.2805814,-0.110048525,0.37051705,0.3934191,-0.14409102,-0.18029644,0.25409138,-0.5662658,0.31704995,0.1472067,-0.054327384,0.6063726,0.023849936,-0.3819343,-0.8277422,0.06718059,-0.67115635,-0.29026863,0.33852106,0.02046053,-0.09413651,0.35238704,0.119164184,0.48342526,-0.31725308,0.16571447,-0.04483013,-0.4954563,0.39033297,0.51051325,0.21946985,-0.24759617,0.6510667,0.1825695,-0.23421817,0.14950007,0.08599514,0.5289331,-0.07722099,0.52633643,-0.31059512,-0.25546548,0.25444108,0.6006736,0.06885975,0.27654552,0.15733598,0.095962,0.21828924,-0.11637273,0.19293894,0.061210718,-0.4230729,-0.099418595,-0.18525667,-0.010444074,0.6028192,0.314126,0.14479351,0.279707,-0.17862271,0.087397486,0.25276002,-0.077201694,-1.0863079,0.59540653,0.22646561,0.92074203,0.50815713,0.15130945,-0.22085348,0.38219917,-0.14460242,0.14873035,0.491726,0.04031612,-0.43866575,0.90532684,-0.75657654,0.32715288,-0.2462789,-0.1875873,0.18403889,0.07045856,0.35545638,1.0652844,-0.20867215,-0.047980808,-0.046485517,-0.17203823,0.13766594,-0.17880286,-0.06567585,-0.47291934,-0.5152891,0.61504525,0.31177914,0.26824275,-0.3060147,-0.12464697,0.12586595,-0.08921974,0.15629269,-0.034951422,0.019179506,0.052012995,-0.30829847,-0.118385434,0.55709773,0.042782556,0.16455191,-0.20710573,-0.24033894,0.027680842,-0.18898211,0.11813828,-0.06261938,-0.7140274,-0.015586301,-0.41326284,-0.5943962,0.32653376,-0.5000815,0.26383862,0.113693096,0.07599086,0.042765345,0.25177768,0.07798612,0.7478104,-0.09813654,-0.32509306,-0.46142673,0.213837,0.065770574,-0.24255718,0.012583158,-0.19835351,0.09061832,-0.60179126,0.50842476,-0.17355384,-0.38311833,0.2668917,-0.24189897,-0.25828788,0.5448099,-0.042882476,0.023847163,0.07025495,-0.52301496,-0.29482073,-0.12036081,-0.21704465,0.18969072,0.11400431,-0.015367037,-0.24372788,0.010526695,-0.10635722,0.3228817,-0.014258832,0.21528187,0.29948118,0.053523064,-0.13478813,0.017791422,0.20246933,0.35604277,0.34537628,-0.006018433,-0.17900468,-0.41708547,-0.35070354,0.17946656,-0.23579957,0.18586282,-0.026724469,-0.097480156,0.9374759,0.2292654,1.0972703,0.055850193,-0.42483205,0.10658968,0.7391975,-0.15079157,-0.29955018,-0.4043431,0.9185634,0.5864038,0.009913033,0.12647371,-0.384079,-0.08212338,0.5281581,-0.42782447,-0.10944981,-0.029290676,-0.5765593,-0.49462014,0.1653778,0.0737,0.21434173,-0.16098215,-0.22064139,0.3054108,0.12197124,0.5154324,-0.7054595,-0.355384,0.11290507,0.32858542,-0.2135647,0.17420115,-0.35162264,0.46753997,-1.0724492,0.14297295,-0.51496065,0.055890653,-0.2163897,-0.43070403,0.13141425,-0.016658036,0.25055254,-0.18140365,-0.39613226,0.17898908,0.41709587,0.12935513,0.15152043,0.66082245,-0.27287358,-0.03348719,0.10939825,0.64191127,1.264166,-0.36504412,-0.17154975,0.31177014,-0.5224948,-0.8091942,0.47214982,-0.6694669,0.10519979,-0.21447836,-0.33970648,-0.27295563,0.27690652,0.12642747,-0.015202809,0.07326296,-0.5304049,-0.047785375,0.25703815,-0.31705052,-0.23184417,-0.35627058,0.3797364,0.9054295,-0.2141936,-0.39007196,-0.0019793361,0.388864,-0.34185502,-0.68570477,0.084313154,-0.087449655,0.3679357,-0.023907585,-0.3132263,0.072922155,0.17741786,-0.6003341,0.15636645,0.06498968,-0.23638101,0.095245406,-0.22276206,0.070566505,0.7751831,-0.28424472,-0.24349967,-0.4774042,-0.47253326,-0.65824723,-0.3045793,0.35914847,0.06496479,0.016100137,-0.4901928,0.18237859,-0.21084954,0.033199634,0.002491615,-0.27056918,0.2197071,-0.08547816,0.5189963,-0.33221123,-1.0287724,0.29268712,-0.027855776,-0.00990934,-0.68022823,0.505403,-0.28571603,0.81329197,0.010256538,-0.18481177,0.033337984,-0.5146565,0.25559482,-0.28205326,-0.12039859,-0.82248515,0.3026322 -199,0.46491584,-0.26387227,-0.5943875,-0.1324882,-0.009291193,0.26885563,-0.19582209,0.6754731,0.19532333,-0.4154107,-0.16083105,-0.02774237,-0.02621301,0.42329553,-0.074600495,-0.44269738,0.07428326,0.21202967,-0.42337567,0.5410641,-0.34866124,0.28953594,-0.24439968,0.45176336,0.08490147,0.23783164,-0.007229815,-0.067302145,-0.35359457,-0.018848602,0.08754309,0.346781,-0.34815952,0.15853642,-0.24181667,-0.29170713,-0.037863415,-0.36393553,-0.4816885,-0.69715816,0.23496887,-0.77293617,0.54450804,-0.068589166,-0.2599357,0.28067306,0.0010358521,0.2312911,-0.35091776,0.057896823,0.16543306,-0.14669214,-0.05651616,-0.26758903,-0.21412008,-0.5631587,-0.51199704,-0.04565962,-0.38340807,-0.018857727,-0.14649351,0.02134817,-0.23639716,-0.07209699,0.008003141,0.28538018,-0.5376884,-0.014542499,0.18414687,-0.10167067,0.047827933,-0.6358078,-0.26608944,-0.19508867,0.47955894,-0.14513266,-0.14293459,0.31946972,0.20760158,0.52814627,-0.23792887,-0.0826332,-0.4376189,0.008623004,0.10565543,0.5432071,-0.20525517,-0.6155882,-0.029749239,-0.07475984,0.34907538,-0.03907768,0.13073634,-0.028090715,-0.10492623,-0.024873082,-0.13910086,0.2672186,0.46991253,-0.22483368,-0.2106043,0.42351967,0.54828054,0.27638873,-0.2325566,-0.07708477,0.036797386,-0.49123505,-0.12397295,0.0046821237,-0.21950212,0.48420194,-0.13410859,0.20344687,0.58958375,-0.09069722,0.042824812,0.080249615,0.21039067,0.02897951,0.0048030443,-0.43703756,0.20825884,-0.26386783,0.03309395,-0.09428506,0.42150787,0.2931622,-0.5847369,0.35136825,-0.43365064,0.023790106,-0.063449465,0.4285898,0.68425554,0.4690611,0.24378999,0.5856897,-0.24760342,0.081857644,0.11521666,-0.12929474,0.12976143,-0.3492956,-0.11612252,-0.55213493,0.23750904,0.026639441,-0.13133316,0.25915083,0.49783066,-0.4622015,-0.17916194,0.1850165,0.8134985,-0.23597951,-0.0025753889,0.66257423,0.91400397,0.85290784,-0.05147744,1.1171032,0.30410329,-0.44734675,0.18732524,-0.26249197,-0.84763306,0.24068686,0.3055305,-0.44745424,0.46495348,0.13026802,0.023629993,0.38845733,-0.4741277,0.11058475,-0.11629324,-0.025115345,0.16628316,-0.18459046,-0.43794551,-0.25787783,-0.14394067,-0.04816827,0.18378465,0.37362668,-0.19951646,0.4371455,-0.05697107,1.6296198,0.027163556,-0.0064496747,-0.029044759,0.61248934,0.2186456,-0.040766664,-0.09215163,0.49562666,0.39375976,-0.014630641,-0.5274291,0.14762399,-0.28056246,-0.43653926,-0.2345482,-0.30158225,-0.12510881,0.031478617,-0.42502993,-0.11276227,0.01000739,-0.09827906,0.31951275,-2.5883586,-0.1663163,-0.06668461,0.49028298,-0.2505565,-0.26671687,-0.41356444,-0.37216622,0.37621522,0.26166287,0.5077091,-0.6086043,0.33259943,0.30255857,-0.52704275,-0.0773594,-0.45579964,-0.120025806,-0.028987663,0.28586024,-0.04513421,-0.04596289,0.28777042,0.2562264,0.38554,-0.05607484,0.12542579,0.33071646,0.42650145,0.11771564,0.31062528,-0.13392825,0.6449965,-0.3984315,-0.15555862,0.26191905,-0.5713468,0.3240829,-0.10328513,0.1296154,0.4713869,-0.34503683,-0.88996345,-0.5302912,0.11895909,1.1909479,-0.19885087,-0.44051626,0.13613942,-0.6433183,-0.35001746,-0.14166358,0.4268538,-0.22638574,-0.12904878,-0.8747974,-0.11905048,0.021959549,0.16772954,-0.0050140065,0.10458553,-0.3943608,0.63493097,0.035131812,0.5469869,0.27448395,0.097346716,-0.20551959,-0.3869714,0.0066252947,0.72522694,0.33543512,0.19893281,-0.19299293,-0.10161585,-0.4044604,0.08613702,0.0588784,0.5333197,0.44905934,-0.10897745,0.06524153,0.11281692,-1.7738768e-05,0.1466625,-0.23374823,-0.2528918,-0.16989031,0.2591359,0.49994633,0.61284363,-0.29651445,0.36943313,-0.07965156,0.16080485,-0.16982944,-0.46854264,0.5642022,0.9496235,-0.25069514,-0.21719302,0.47857258,0.52802044,-0.393845,0.39061055,-0.63559216,-0.3829264,0.4027892,-0.13921222,-0.3223862,0.24078205,-0.2964594,0.3497743,-0.9218315,0.25768453,-0.2044553,-0.28165323,-0.7506889,-0.036969747,-2.727497,-0.018878493,-0.0188378,-0.22060879,-0.18849584,-0.05048575,0.21094558,-0.6955843,-0.6540341,0.23073049,0.026147025,0.6768132,-0.011560676,0.090604134,-0.32048368,-0.42427894,-0.2549384,0.13969354,0.14529872,0.45228037,0.08895772,-0.6602174,-0.13218214,-0.18311681,-0.20345218,-0.009054084,-0.6137822,-0.35836378,-0.14007692,-0.545108,-0.10799122,0.58532655,-0.34071556,-0.009314626,-0.15837385,0.08283321,-0.2654074,0.2128112,0.007490603,0.12945722,0.05649985,-0.21976995,0.22643828,-0.23812404,0.25823554,0.058368046,0.19978602,0.37119165,-0.037922043,0.051812414,0.5665821,0.75424325,-0.106438234,0.8374669,0.6066104,-0.16057634,0.30158493,-0.3625256,-0.23879221,-0.4239032,-0.35312313,0.075409435,-0.4499288,-0.57422626,-0.040546205,-0.54440904,-0.8433854,0.45001987,-0.1332618,0.04133847,0.12191306,0.28245038,0.54818565,-0.26862794,0.1271592,-0.017632319,-0.19396482,-0.47232026,-0.270135,-0.5175223,-0.38161707,0.15069933,1.0927011,-0.2180274,0.13399467,0.08718952,-0.3978042,0.06074788,0.25801796,-0.03381902,0.045514245,0.46098915,-0.042791512,-0.54158866,0.39248544,-0.14071216,-0.15505879,-0.5529033,-0.013985889,0.48956046,-0.6843578,0.6298734,0.41030452,-0.21947196,-0.18375613,-0.45180973,-0.27640226,-0.03819593,-0.14495595,0.26291475,0.22381942,-0.62089187,0.36717063,0.31951553,-0.4876752,-0.60470253,0.5488407,-0.104019694,-0.20685025,-0.04287937,0.27855903,0.09875362,0.027988832,-0.39874297,0.25251547,-0.43322897,0.25482622,0.1953499,-0.12532695,0.31599972,-0.21794124,-0.041389603,-0.87360615,0.03120814,-0.42443737,-0.23915784,0.46487015,0.11890153,0.2964439,-0.009534265,0.18324487,0.32492462,-0.5611528,0.08781604,-0.11224194,-0.29967305,0.35560015,0.25723884,0.5218215,-0.40230703,0.53298736,-0.018430991,-0.12634145,0.02939145,0.05873084,0.35480767,0.1716814,0.49057722,0.13769491,-0.27590814,0.13859177,0.99093294,0.301256,0.31369233,0.12069322,-0.31109452,0.21471667,0.11633048,0.04129162,-0.10875385,-0.36986503,-0.059222274,-0.18536527,0.19210719,0.32941467,0.13595863,0.29263785,-0.16657117,-0.29512623,0.035561185,0.2384918,0.15655454,-1.173424,0.35213643,0.23210709,0.8509796,0.2473499,0.12409478,0.119406715,0.61182433,-0.14999774,0.10377876,0.4226036,-0.24697253,-0.57781976,0.47946948,-0.57490236,0.46863458,0.018880803,0.034841266,0.13480033,-0.07200081,0.50195426,0.7242924,-0.097187154,0.08066661,0.23496795,-0.4082702,0.14975119,-0.3128149,0.012805308,-0.6186075,-0.15272783,0.593468,0.4953876,0.39017388,-0.1991676,0.07573136,0.048785966,-0.13692448,0.09362228,0.21233353,0.24911138,-0.07676879,-0.73143244,-0.02154897,0.4336789,0.089172676,0.08979108,0.06852107,-0.29799607,0.42601183,-0.18679908,0.16620779,-0.113221996,-0.65909576,-0.035882678,-0.42739138,-0.4220498,0.59587413,0.1058223,0.31671312,0.3096512,0.04683721,-0.29287115,0.5394308,-0.07900826,0.79805326,-0.082779594,-0.23514886,-0.39575619,0.16729619,0.25922728,-0.18423994,0.0509293,-0.2761405,0.11824023,-0.2862821,0.49597073,-0.027932491,-0.07272524,-0.084531255,-0.19427915,0.1251141,0.47558424,-0.20956247,-0.14902769,-0.105922535,-0.031325746,-0.39578262,-0.25660688,-0.22076099,0.19415657,0.27941033,0.0031303423,-0.2518978,-0.09330112,-0.021986725,0.505554,-0.0150604835,0.3128717,0.5669641,0.12655197,-0.18407238,-0.08592953,0.229527,0.47712436,-0.029328793,-0.12183307,-0.51812786,-0.54816383,-0.41098848,0.25890106,-0.19562718,0.36002955,0.14407666,-0.25055107,0.5490484,-0.16412298,1.0118576,0.008994303,-0.30648497,0.08911628,0.61605495,-0.04856362,-0.036709916,-0.33381197,0.8257455,0.49873605,-0.044193126,-0.057952147,-0.32905215,-0.015869392,0.084318556,-0.31139836,-0.17789862,-0.01053094,-0.64721256,-0.2933147,0.24868998,0.28692552,0.34846362,-0.16625486,0.24496253,0.11350836,0.16700263,0.10793022,-0.47637388,-0.33270547,0.3228526,0.21715851,-0.015263162,0.010568644,-0.34826496,0.29754183,-0.36547777,-0.055568986,-0.2630345,0.11285133,-0.20859398,-0.46232897,0.19491151,0.231596,0.23043452,-0.45435596,-0.26152816,-0.23330066,0.4326949,0.12561947,0.17054805,0.29151502,-0.20731105,0.05318997,0.12987503,0.54651994,0.7880225,-0.29510683,0.018265655,0.462236,-0.39698124,-0.6786703,0.36952275,-0.4422247,0.39141324,-0.18169191,-0.25926343,-0.8466255,0.37394568,0.24673684,-0.01718338,-0.117894635,-0.51852053,-0.19706705,0.2483465,-0.33758405,-0.20296003,-0.38640496,-0.075968444,0.545252,-0.28747112,-0.31006712,0.1239293,0.30634513,-0.2834815,-0.46124277,-0.05565656,-0.4740942,0.28781128,0.16634242,-0.39349514,-0.18628049,-0.012572874,-0.44538096,0.32826814,0.26849315,-0.4322752,-0.0008475355,-0.48119733,-0.01189171,0.8693952,-0.27316535,0.22592047,-0.36726674,-0.30690327,-0.98427063,-0.30073896,0.5612298,0.19570832,-0.100168966,-0.7238235,0.14792879,-0.124268614,-0.24358042,-0.15155533,-0.2987865,0.42429218,0.0844928,0.25099865,-0.04515499,-0.7280547,0.09397851,0.09062575,-0.330543,-0.48147553,0.43285164,-0.10933652,1.1178528,0.013911052,0.17896639,0.35029736,-0.4304438,-0.19420566,-0.16928266,0.008798874,-0.53970796,0.057305403 -200,0.3726441,-0.17151119,-0.5182727,-0.13327213,-0.14324372,0.2238739,-0.16754754,0.5107438,0.18689916,-0.3892855,0.02261556,-0.050778843,0.034501616,0.3121921,-0.07762908,-0.23605089,-0.02094688,0.16219565,-0.52444303,0.3487952,-0.4921238,0.13547535,-0.18081352,0.38043037,0.0974314,0.19782718,0.112995654,0.041938182,-0.064032935,-0.07816785,0.27463153,0.19499446,-0.5270094,0.3362802,-0.052604057,-0.2612072,-0.052129947,-0.43128055,-0.5284465,-0.64410174,0.31389925,-0.7287706,0.508382,-0.01123184,-0.2767952,0.27768296,0.027728982,0.2311619,-0.32409707,-0.0780574,0.1712915,-0.2736011,-0.1514652,-0.2815461,-0.016835455,-0.20624126,-0.5943893,-0.05521275,-0.33173224,-0.05346175,-0.23771732,0.10907204,-0.3233256,0.10623012,-0.1948647,0.4655309,-0.3492573,-0.055012815,0.24520466,-0.19082455,0.12961608,-0.4496299,-0.049294338,-0.196647,0.017649932,-0.18947425,-0.29642504,0.37300667,0.12203864,0.41218537,-0.20206709,-0.1635007,-0.24952078,-0.042448215,0.08756633,0.45999032,-0.11216078,-0.19781446,-0.11762284,-0.17139158,0.019470979,-0.008613094,0.17324229,-0.19017725,-0.11083508,0.1090893,-0.097130425,0.17266324,0.5643528,-0.22512244,-0.16517867,0.3738308,0.552198,0.033416055,-0.0973537,0.00817554,0.04555458,-0.46753058,-0.28507236,0.033159576,-0.12374822,0.35736874,-0.17145315,0.23984274,0.5710407,-0.21881437,-0.17308998,0.16144091,0.13703902,-0.0720136,-0.32777375,-0.42915946,0.38426492,-0.42834812,0.04739081,-0.1495047,0.66133195,0.081142016,-0.66240793,0.46558207,-0.44349608,0.08100996,-0.09210883,0.60945374,0.74910945,0.57205445,0.22250347,0.71437186,-0.45063022,0.02864934,-0.098236196,-0.38660768,0.33090484,-0.30974045,-0.13183992,-0.39329872,0.013281957,0.09593535,-0.21627907,0.11233711,0.28189096,-0.450242,-0.07124602,0.20329401,0.5923065,-0.30848652,-0.13567463,0.5760165,1.0564307,0.92022055,0.14077258,1.0905414,0.23044392,-0.22373997,0.10357443,-0.09898237,-1.0465608,0.31601524,0.18230176,0.019029776,0.35975134,0.17785147,-0.13754386,0.45583567,-0.4966171,-0.015693905,0.005933392,0.20466708,-0.078811914,-0.10256858,-0.40744057,-0.34559923,-0.002924635,-0.03666823,0.060988765,0.30386573,-0.27573013,0.46037135,0.0538583,1.5318228,-0.060083143,0.16757338,0.08192532,0.4409916,0.14857663,-0.3202097,-0.15822144,0.32412973,0.37633255,0.14020576,-0.60683364,0.262944,-0.051809836,-0.5102446,-0.14803882,-0.39314547,0.12370028,-0.10366828,-0.38911262,-0.21202901,-0.089480385,-0.33334628,0.3025406,-2.836242,-0.075730324,0.025597665,0.32924142,-0.18583916,-0.20743744,-0.14719701,-0.38683745,0.19834258,0.4818265,0.40741497,-0.58919346,0.23240215,0.38053158,-0.47158653,0.011340334,-0.6121155,-0.09028225,-0.19400693,0.21607488,0.12939404,-0.0003833294,-0.029430874,0.1781228,0.4462308,-0.11602438,0.06085195,0.38228127,0.30054656,0.039930362,0.28691152,-0.0725912,0.53218216,-0.61600435,-0.2836356,0.31904832,-0.46010864,0.09702776,-0.077669874,0.0458414,0.49222252,-0.38708112,-0.8044881,-0.50880843,0.013879408,1.2945961,-0.36731094,-0.30736235,0.20295754,-0.37947407,-0.31081435,-0.04363676,0.5226663,-0.20531233,-0.09397089,-0.8509186,-0.022702677,-0.10349063,0.3951508,-0.11538364,-0.0008722971,-0.53165305,0.41003895,-0.010920745,0.81886166,0.23490904,0.14598091,-0.32298335,-0.40051225,0.15132436,0.76964927,0.3719088,0.21912184,-0.26257125,-0.11017649,-0.14991586,0.008441516,0.2148123,0.3446153,0.63166046,-0.046596702,0.24343124,0.37048146,-0.12773013,-0.036725935,-0.089969665,-0.2677607,-0.070320375,0.004401775,0.590546,0.607017,-0.089762464,0.17700025,0.0056025307,0.36242217,-0.23832792,-0.46279222,0.5101046,0.7475058,-0.111542635,-0.3227833,0.5434684,0.5626954,-0.38614804,0.54799616,-0.62475944,-0.31961742,0.2913066,-0.122997314,-0.32358477,0.09913222,-0.32516295,0.35561812,-0.90163004,0.25993913,-0.24288994,-0.5677554,-0.7146746,-0.13524573,-3.2347865,0.10276249,-0.19060372,-0.15893005,-0.021150347,-0.07756678,0.34565622,-0.5710799,-0.52443445,0.085827634,0.10887871,0.8310897,-0.08098748,-0.112217404,-0.25253648,-0.16570446,-0.323263,0.12016327,0.27138415,0.27361774,0.07822063,-0.5372154,-0.077480234,-0.32573128,-0.3936334,-0.054896362,-0.49517906,-0.35275564,-0.16875388,-0.5514552,-0.4159385,0.64388555,-0.23345232,0.07043249,-0.19528112,-0.009139457,-0.048906095,0.31519955,-0.04315717,0.1507611,0.095960654,-0.16642527,-0.07583752,-0.30556858,0.3155871,-0.048802756,0.28368133,0.47246465,-0.30287963,0.06982422,0.6116602,0.6570541,-0.06666609,0.82095516,0.5330126,-0.07501338,0.33797246,-0.32511488,-0.23903401,-0.3619255,-0.23571716,0.075784765,-0.42567843,-0.36526474,0.049525294,-0.35702318,-0.88729465,0.5185107,-0.018124921,0.108057186,0.046164073,0.07324826,0.37110838,-0.11014705,-0.12136122,-0.064014524,-0.15826939,-0.35331306,-0.29322782,-0.67364055,-0.49501926,-0.00016438166,1.1941863,-0.12796408,0.080672495,0.076177225,-0.16830818,0.09784448,0.12144636,0.012385603,0.2880712,0.4529986,-0.024701126,-0.45889595,0.47973064,-0.2833505,-0.112400025,-0.5585042,0.23306829,0.59719884,-0.6917204,0.557376,0.39654872,0.12750895,-0.20379387,-0.5613647,-0.1729478,-0.014932469,-0.10327251,0.5057782,0.22495387,-1.0477222,0.48589543,0.32949898,-0.39328244,-0.61026627,0.5335254,-0.087853715,-0.02234122,-0.08298257,0.3358552,-0.1887921,0.09751935,-0.09347508,0.24171104,-0.46525213,0.17687996,0.1688428,0.045013208,0.44665697,-0.2771527,0.052642304,-0.52442765,0.00087176956,-0.53031844,-0.22057372,0.2312691,-0.07825244,0.087862976,0.23239203,0.03508199,0.46997222,-0.2439401,0.04416548,-0.17097773,-0.4016618,0.5264511,0.48380718,0.37976927,-0.44145352,0.62782556,0.09691906,-0.025515573,-0.19748713,0.0701404,0.43205163,0.15477346,0.41767925,0.033745836,-0.10270805,0.28766283,0.77538884,0.20200102,0.44820797,-0.0046234867,-0.15915976,0.13064735,0.11045746,0.28826982,-0.022225956,-0.46556416,0.050362747,-0.28663474,0.29187208,0.40328518,0.11707792,0.4802415,-0.12177669,-0.32648626,0.08093975,0.07328283,-0.1385534,-1.2233694,0.46576443,0.17893918,0.77162266,0.41407904,0.067015804,0.0073883096,0.6806698,-0.22725226,0.1556334,0.25746724,-0.10336917,-0.52696764,0.61630315,-0.7230941,0.5498077,0.03373652,-0.14609787,0.00046030284,-0.099571295,0.5719113,0.67874146,-0.026587296,0.18201897,0.07592298,-0.31630102,0.33118942,-0.4054665,0.21408159,-0.505606,-0.2533388,0.6042717,0.37790257,0.4283064,-0.2681661,0.01227893,0.09743532,-0.11888276,0.15416647,0.033178087,0.050937857,-0.039289407,-0.7038315,-0.2744699,0.595341,0.032956645,0.13435875,0.017484797,-0.22476499,0.2868561,-0.12822504,0.039588485,-0.11238091,-0.63948846,0.028944766,-0.233671,-0.42441007,0.4249673,-0.23992391,0.23334795,0.28928992,0.09307729,-0.5106239,0.25424227,0.13091694,0.8129888,-0.105032995,-0.25232732,-0.28767484,0.17756388,0.2911369,-0.18444696,-0.081851214,-0.42757168,0.0054445346,-0.43017185,0.43796036,-0.16459955,-0.31242657,0.17293987,-0.0044781636,0.08015167,0.54647607,-0.05894263,-0.14211035,-0.10049095,-0.061451748,-0.3313085,-0.17692414,-0.29823142,0.2953434,0.12006271,0.09506766,-0.09679854,-0.042403024,-0.0012958527,0.361508,0.05299101,0.2568664,0.40417945,-0.03370153,-0.38200948,-0.030256223,0.019853437,0.57198906,-0.017038401,-0.17454402,-0.40909514,-0.36715558,-0.18817274,0.31486398,-0.07088666,0.39165848,0.17157339,-0.34150913,0.6582001,-0.15335639,0.9052705,-0.022743728,-0.35304424,0.0065261843,0.6242281,0.052306734,-0.073292926,-0.38830456,0.7977367,0.5789374,-0.21179336,-0.14660914,-0.34217918,-0.013867168,0.12482335,-0.22771831,-0.42488477,-0.07211065,-0.76448286,-0.015776088,0.19425812,0.33519128,0.19828911,-0.08674763,0.11441481,0.268363,0.026579281,0.04232967,-0.32439488,0.01977539,0.42490742,0.22207178,0.022478346,0.0970551,-0.4699068,0.32628676,-0.7093706,-0.017617736,-0.16354424,0.1414911,-0.09002273,-0.41549173,0.14057526,0.14916559,0.21552709,-0.22765426,-0.24948348,-0.10757203,0.48069173,0.12120442,0.23656917,0.78491217,-0.21505333,0.07874991,0.14960292,0.3196956,0.7161857,-0.21439253,-0.015687283,0.17103313,-0.33952814,-0.7743724,0.3829206,-0.19946247,0.36932942,-0.13275565,-0.21947856,-0.6040751,0.33682522,0.23678122,-0.11383231,0.13833876,-0.52911854,-0.12092878,0.16490409,-0.31206733,-0.30097902,-0.40559337,0.016068827,0.49842983,-0.25759238,-0.21067467,0.21129629,0.3463221,-0.18340452,-0.41326633,-0.024877954,-0.43009442,0.17635709,0.020182414,-0.38263687,-0.0053860624,0.04603003,-0.39470997,0.32499662,0.15228884,-0.23994742,0.024234716,-0.34902012,0.015447666,0.7335558,-0.20920998,0.018876815,-0.58549964,-0.5183055,-1.0088058,-0.25739333,0.45338383,0.18985398,-0.004201625,-0.65339446,-0.0010436655,-0.060168456,-0.13791877,-0.18703532,-0.3694291,0.40872812,0.049793504,0.21906129,0.06426519,-0.63597065,0.111225635,0.13050619,-0.12693511,-0.43164775,0.4594559,-0.1308501,0.82157606,0.16840567,0.21942666,0.23954262,-0.47645637,0.115916215,-0.23083371,-0.16738221,-0.50595146,0.05889022 -201,0.34002832,-0.1392932,-0.42897287,-0.24253611,-0.40378135,0.15094589,-0.15002786,0.2848047,0.198747,-0.09914551,-0.04774139,0.01700058,-0.06240758,0.4284896,-0.11652174,-0.59247553,0.09475579,0.16250962,-0.61519855,0.50189894,-0.5543615,0.3032395,-0.005392627,0.44652423,0.08474439,0.29314545,0.11692783,-0.08273004,-0.052106276,0.08367764,-0.26393604,0.49256524,-0.6387583,0.25791246,-0.039279032,-0.2504531,-0.022499848,-0.29231647,-0.26573756,-0.79704463,0.2337329,-0.76393646,0.602325,-0.22987062,-0.5652226,0.030224482,0.022091929,0.2852361,-0.48071155,0.05167299,0.17262223,-0.371787,-0.04083654,0.032046665,-0.15921251,-0.49521667,-0.58561385,-0.0026940028,-0.6574665,-0.06017851,-0.35178947,0.29247797,-0.33662325,-0.11827043,-0.1550691,0.38840428,-0.47105303,0.046522,0.11302395,-0.27977222,-0.13361889,-0.44750765,-0.07976561,-0.22935,0.35206792,0.1786918,-0.3676224,0.2613209,0.46809974,0.61122984,0.18718967,-0.29340553,-0.14159958,-0.07961673,-0.006776615,0.43392196,-0.06942242,-0.2945679,-0.35657215,-0.07321234,0.42355248,0.13543685,0.0170708,-0.32287508,-0.0276017,0.10140934,-0.16938716,0.20148224,0.45715252,-0.503959,-0.16982664,0.4766194,0.38019383,0.13969988,-0.20806971,0.2506737,-0.0523656,-0.563315,-0.2514656,0.025221338,-0.27629024,0.70000154,-0.30945188,0.15789996,0.8108237,-0.03543157,-0.07050384,-0.07718197,0.0039646546,-0.15345034,-0.18545885,-0.121776976,0.13563381,-0.39298946,0.06730875,-0.15108235,0.81185913,0.15034844,-0.73134726,0.29676488,-0.40466613,0.14371163,-0.1634151,0.70484746,0.8889398,0.52743214,0.31518036,0.9203299,-0.50011134,0.018341323,-0.00774229,-0.4157063,0.17805439,-0.1215124,-0.13058858,-0.48004895,0.14700013,0.019075366,-0.12932527,0.014541225,0.32119182,-0.5555722,-0.015446325,0.038929027,0.5927713,-0.42318204,-0.1889706,0.8810953,0.8570318,0.93038756,0.09154347,1.2821059,0.51023704,0.009048571,-0.027912179,-0.24367118,-0.58461285,0.15421449,0.28220126,-0.20858397,0.39877573,0.09894207,0.03096352,0.60426563,-0.37563723,-0.14678413,-0.09949671,0.26168758,-0.070340775,-0.03986759,-0.40729707,-0.22294803,0.21085761,0.14284918,0.030346008,0.30940124,-0.20928647,0.42983335,0.15514,1.1790805,0.112851284,-0.02320596,0.044809863,0.33477393,0.26442215,-0.14664268,-0.1227137,0.4002985,0.5293228,-0.09125962,-0.52086484,0.042344775,-0.223065,-0.3910328,-0.15243064,-0.37121093,-0.049933262,-0.10832238,-0.5270328,-0.24658367,0.07516514,-0.15142298,0.5167255,-2.5186472,-0.24884063,-0.13463023,0.30257624,-0.19048828,-0.19738674,-0.17866246,-0.4845692,0.10192595,0.4288645,0.36038944,-0.6918317,0.41550466,0.35598847,-0.3176255,-0.081647426,-0.75617915,-0.065709084,-0.039456986,0.5223692,-0.026876176,-0.14687033,-0.15278263,0.16021992,0.7222215,0.038663857,0.050908804,0.18351936,0.37147376,0.060717393,0.42291757,0.19504073,0.637355,-0.028478865,-0.23733774,0.35017195,-0.26787427,0.41990608,-0.0770703,0.116286755,0.46987706,-0.43217182,-0.7394491,-0.569437,-0.20442706,1.3640654,-0.5329086,-0.38418093,0.2887047,-0.22288005,-0.16000646,0.044579674,0.36094,-0.15051451,-0.068523616,-0.7655427,0.008145722,0.008356476,0.27250162,-0.13620834,0.13534984,-0.23876543,0.633296,-0.25418612,0.51054484,0.29792848,0.1957547,-0.06967713,-0.61290103,-0.005543701,0.8403041,0.51366794,0.060867593,-0.23603347,-0.28053677,-0.16735989,-0.16714849,0.09098841,0.4517349,0.6569134,-0.04017423,0.16840544,0.45220295,-0.19561876,0.05824953,-0.18763734,-0.28218955,0.029878315,0.26585826,0.512221,0.6803256,-0.22313112,0.39501008,-0.15586825,0.1483741,-0.041828547,-0.6124095,0.62704957,0.90984476,-0.31886086,-0.121783264,0.62901294,0.42274824,-0.29225084,0.4304336,-0.6046448,-0.24153982,0.6379106,-0.07484512,-0.39961192,0.08738567,-0.34071657,0.17500976,-0.9394372,0.3440452,0.051932976,-0.5725339,-0.5925649,-0.06498747,-3.8833833,0.010764897,-0.26850697,0.051952165,-0.058711912,-0.30560634,0.43701643,-0.6634682,-0.5848242,0.03717717,0.00647736,0.4252436,-0.18537733,0.16797858,-0.30969638,-0.24604629,-0.17019922,0.15025489,0.24101223,0.26608822,0.0651612,-0.50110435,0.15904805,-0.3420754,-0.52134115,-0.079203494,-0.5625997,-0.4745157,-0.084694885,-0.5308325,-0.20893723,0.7003094,-0.36308247,-0.02515821,-0.371442,0.15734854,-0.1930693,0.37280923,0.12373303,0.084829465,0.1449687,0.0029751768,-0.046394467,-0.29957053,0.21688122,-0.019942397,0.22568491,0.36033297,-0.11838419,0.2020842,0.719881,0.45536405,-0.11524274,0.8309296,0.45341274,-0.16043304,0.28259298,-0.24689484,-0.31193033,-0.77242416,-0.40206355,-0.28194237,-0.551783,-0.42091924,-0.05845565,-0.42678085,-1.0006865,0.5510448,-0.06494212,0.25516808,-0.15471862,0.29539993,0.48339263,-0.12261384,0.0176269,-0.11968951,-0.3102436,-0.5410472,-0.37180355,-0.68033767,-0.6083852,0.21509366,1.2451417,-0.19393124,-0.06701117,0.00439371,-0.42294532,0.014004576,0.033395566,0.23200445,0.08078794,0.48875496,-0.22472946,-0.8864314,0.23746487,-0.17897364,0.049006555,-0.63072246,0.06019962,0.7435261,-0.7304694,0.4786031,0.34290984,0.23360272,0.18392125,-0.6396138,-0.4348802,0.0040711025,-0.16719766,0.72799367,0.22113404,-0.6649406,0.5632085,0.07613609,-0.12985301,-0.70649713,0.46097633,-0.05636588,-0.1333215,0.21153472,0.31995738,0.031489596,-0.108094834,-0.15162244,0.07792072,-0.52443844,0.3847008,0.37099516,-0.07735089,0.38924757,-0.08458675,-0.19152944,-0.6740936,-0.30900887,-0.55661356,-0.22772972,0.037149955,0.039546967,0.1105519,-0.08749641,-0.05749213,0.4851773,-0.30382022,0.1561416,-0.007638097,-0.16385062,0.35618898,0.66137415,0.32784325,-0.50513965,0.56260663,0.27846017,0.052120566,-0.11479316,0.007914773,0.5243522,0.26334333,0.30502284,-0.124342285,-0.12282649,0.21094981,0.70959115,0.21351096,0.43882683,0.10994413,-0.21939524,0.37811512,0.18649617,0.20543604,-0.07160066,-0.2763572,-0.068047866,-0.12818381,0.2678054,0.46306664,0.24620104,0.30064493,0.00546901,-0.20258318,0.18550065,-0.05016367,0.08192292,-1.3152988,0.25184846,0.36648834,0.693294,0.45095855,0.03757026,-0.102355815,0.57751745,-0.39367524,0.04887594,0.42385143,0.0873599,-0.42656344,0.52848667,-0.5651903,0.5217524,-0.15101852,0.021967385,0.15624167,0.31762776,0.3160921,0.9459451,-0.10095168,0.08903592,0.029928977,-0.18964672,0.11612126,-0.31214207,0.025972184,-0.57704353,-0.30175447,0.59619236,0.3945462,0.30820045,-0.45336875,-0.09423647,0.054958977,-0.18059883,0.089806125,-0.1317596,0.039902013,-0.2124894,-0.54202086,-0.37554872,0.5836841,-0.022997973,-0.029997746,0.1559388,-0.39746544,0.23514776,-0.273427,-0.086592674,-0.054980494,-0.5562576,-0.16641569,-0.14428613,-0.502987,0.42458093,-0.28022015,0.23684701,0.15000549,-0.0049378444,-0.37100774,0.19487709,-0.01673859,0.85642815,0.075561814,-0.15884997,-0.31846383,0.08395639,0.4272942,-0.23907568,-0.12904571,-0.32514232,0.11389828,-0.41873607,0.3218017,-0.23143317,-0.23265523,-0.10665293,-0.18346387,-0.028250678,0.29954365,-0.13913544,-0.1672726,0.16382675,-0.007349523,-0.37696606,-0.070691325,-0.429689,0.27857724,0.013134222,0.025699567,-0.07819293,-0.16643168,-0.1655612,0.3539557,0.07185138,0.07638526,0.25685638,-0.19614048,-0.33204868,-0.051939677,0.017220037,0.446123,0.048720397,-0.16452986,-0.42103443,-0.4327608,-0.24038957,0.13187037,-0.16293167,0.21650632,0.036298558,-0.4747804,0.8263846,0.24132474,1.3243164,0.020367486,-0.40419868,0.08505821,0.58397925,0.15573867,0.180935,-0.21148485,0.8359917,0.5830282,-0.17439337,-0.13418867,-0.5420742,-0.28326264,0.25438398,-0.19615486,-0.249729,-0.17386644,-0.69904065,-0.19955005,0.19339949,0.1506185,0.19544369,0.06563297,-0.116129614,0.08890544,0.1537339,0.5116994,-0.41736782,-0.12005896,0.38102835,0.25919905,0.10459503,0.23546474,-0.36433893,0.41991657,-0.6163771,0.09956912,-0.44398087,0.2339236,-0.13898917,-0.3351822,0.23208074,0.0050174673,0.26442784,-0.35237905,-0.31096682,-0.28253847,0.7419484,0.055146847,0.1941374,0.7523106,-0.31435424,-0.10412304,0.009261757,0.46844706,1.1927189,0.007787147,0.12330667,0.26594955,-0.22773221,-0.6473295,0.17761421,-0.34979928,0.13742238,-0.04967792,-0.37877777,-0.445343,0.29886627,0.08740654,0.021404512,0.14106373,-0.52967876,-0.08834076,0.3811344,-0.100235544,-0.099943146,-0.19841106,0.32082793,0.73096883,-0.49753997,-0.43579394,0.011626538,0.354003,-0.17185721,-0.61976343,-0.058205914,-0.279185,0.35774645,0.20768921,-0.4308853,0.01787849,0.26825958,-0.35654557,0.07551685,0.452022,-0.23102671,0.21929434,-0.20993854,-0.011542678,1.0629791,0.033288237,0.20895842,-0.6041674,-0.44817537,-0.986754,-0.24250123,0.3021059,0.27112466,-0.13893233,-0.73494184,0.014847513,-0.12983283,-0.024543246,0.13996556,-0.64057136,0.59793186,0.2008147,0.44098964,0.025889253,-0.93036956,-0.0275268,0.11138198,-0.12644364,-0.4952509,0.6590238,-0.18536758,0.7276627,0.08313991,0.115825996,0.0037525257,-0.5624148,0.21566203,-0.41894636,-0.067666784,-0.6812068,0.067325346 -202,0.3845907,-0.15002479,-0.5846273,-0.099755354,-0.08405132,-0.0061599994,-0.19318818,0.43087515,0.31662184,-0.29973117,0.020559506,-0.13748139,0.1206242,0.20612635,-0.10407031,-0.35916385,-0.067698814,0.09041005,-0.3741984,0.37314007,-0.48781365,0.30407065,-0.27499124,0.44195923,-0.087867185,0.21848123,0.090277605,-0.009668619,-0.092737384,-0.2021198,-0.0036572367,0.55489266,-0.3388647,0.19671729,-0.0979255,-0.16058579,0.09768093,-0.31791252,-0.41854757,-0.73973477,0.2610613,-0.58996046,0.4271008,0.16314729,-0.39713907,0.32465193,-0.0065420866,0.0556711,-0.17359705,-0.14920011,0.109036796,-0.11787821,0.11790129,-0.33186772,-0.09352778,-0.21798158,-0.46910995,0.17666878,-0.44397402,-0.17834234,-0.22648795,0.25816408,-0.3014666,-0.1189862,-0.13811839,0.55796546,-0.40857553,0.16517843,0.032200914,-0.33520788,0.41471973,-0.59624904,-0.18703847,0.024191972,0.26202652,-0.12875462,-0.18322924,0.22531763,0.28710955,0.38318235,-0.1298425,-0.02941465,-0.48855993,-0.12564753,0.005824051,0.40446758,-0.16752765,-0.5756566,-0.07492224,-0.12007671,0.010473094,0.24238046,0.12330622,-0.28932348,-0.1531349,-0.08271102,-0.2267917,0.49730134,0.6684309,-0.3233037,-0.09141065,0.27141222,0.48718876,0.1514614,-0.08483434,-0.072327375,-0.081413664,-0.5145718,-0.14830853,-0.069107726,-0.033295013,0.51532024,-0.07511045,0.29637054,0.48764992,-0.16058327,-0.20029773,0.20365886,0.12315292,-0.0064489585,-0.2961944,-0.02191022,0.17103307,-0.3376048,-0.020281913,-0.106254734,0.76400566,0.10420894,-0.69319004,0.34972543,-0.39796835,0.053213276,-0.12306738,0.46296936,0.49682203,0.4316275,0.26446947,0.70617455,-0.47632688,0.040541884,-0.048439674,-0.36607963,0.18764591,-0.06657137,-0.06567466,-0.508043,-0.0004740272,-0.009971312,-0.044689536,0.14204866,0.26396042,-0.50722283,-0.09565858,0.14768398,0.7780948,-0.22130594,-0.043691523,0.6316823,1.0115092,0.8656082,0.0014734694,1.0136758,0.00533846,-0.093624644,0.1564481,-0.27328408,-0.70576465,0.378767,0.3026493,0.14958474,0.0010806577,-0.050970476,0.020798206,0.32672533,-0.2822811,-0.1458328,-0.23343717,0.5253579,0.17698726,-0.041103642,-0.31187847,-0.35741204,0.017983096,0.0062498366,0.08818994,0.2015529,-0.20842583,0.32210323,-0.004601347,1.3815424,-0.06589871,0.16383775,0.054604094,0.5753377,0.2453048,-0.10084821,-0.14153744,0.42973548,0.13821502,0.21254627,-0.4757273,0.15530518,-0.14600268,-0.5073873,-0.1259969,-0.2898293,0.09545041,0.05891887,-0.29595327,-0.16144119,-0.102517836,-0.22994652,0.5023562,-3.0427282,-0.16228516,-0.026808511,0.38710397,-0.17678332,-0.277911,-0.034553982,-0.44272646,0.4318849,0.35911328,0.49036306,-0.6082088,0.029593196,0.42599207,-0.46824458,-0.24461627,-0.42943484,0.035066824,-0.068182945,0.28960207,0.12755956,-0.03120892,-0.17264117,0.0011802657,0.42240334,-0.09777252,0.21422367,0.17576636,0.33975896,-0.1342679,0.36021686,-0.109444074,0.43866962,-0.29901975,-0.25263965,0.4349609,-0.36066133,0.094737865,-0.12873913,0.17002593,0.35939088,-0.53731257,-0.8049174,-0.57770497,-0.05594222,1.2159239,-0.00068260945,-0.62849224,0.32825264,-0.25777355,-0.22481905,-0.023097038,0.39069864,-0.04611667,-0.0795402,-0.6513239,0.080077566,-0.16220005,0.25901017,0.021488013,-0.13652565,-0.40299997,0.46544656,0.045242287,0.2859467,0.46572426,0.14765988,-0.41912636,-0.4550411,-0.03755153,0.6872519,0.46662214,0.12268489,-0.20415129,-0.17723583,-0.15567401,-0.1576594,0.1614538,0.5931727,0.5412177,-0.10725336,0.21671125,0.30346844,-0.06967149,0.058404956,-0.17861117,-0.20945907,-0.06633373,0.003692427,0.62284416,0.7013292,-0.081865855,0.37991238,0.025157783,0.41492304,-0.21596745,-0.5341553,0.5467081,0.8648862,-0.21178281,-0.33394352,0.5788776,0.34652737,-0.2593413,0.33317167,-0.49634793,-0.43375835,0.43139848,-0.32819453,-0.52641994,0.12742154,-0.26556793,0.00445781,-0.75069803,0.21065445,-0.39373937,-0.5875047,-0.4798806,-0.1696202,-3.4488046,0.20864047,-0.31561753,-0.12450551,-0.08917735,-0.048590787,0.06397451,-0.3708361,-0.45527297,0.13548765,0.2058631,0.55261093,-0.1307471,-0.0070516295,-0.23961695,-0.25650987,-0.2874209,0.12897363,0.14860909,0.3364245,0.014210181,-0.44606775,0.043381326,0.006248657,-0.5043644,0.13081492,-0.44340998,-0.45333877,-0.13220334,-0.59532815,-0.40922812,0.65680057,-0.13839242,-0.09794827,-0.1427624,0.044782422,0.0480046,0.27552322,0.030371632,0.14851639,0.02080764,-0.15826212,0.059433132,-0.3560736,0.38556284,-0.030825486,0.1781865,0.42925173,-0.055354066,0.08970533,0.49375677,0.6192915,-0.21215351,0.74088377,0.33343008,0.02540866,0.41944784,-0.27321145,-0.27829307,-0.3159139,-0.21408908,0.13376668,-0.47626057,-0.288645,-0.14292218,-0.33773178,-0.6001415,0.7352619,0.035838373,0.020398054,0.059919238,0.3327624,0.39979336,-0.15803787,-0.041455217,-0.05366792,-0.14157419,-0.49052963,-0.19464529,-0.5992792,-0.46786937,0.0740027,0.8760877,-0.31506,0.026789354,0.0153277,-0.05854972,-0.057842407,0.0029282826,0.04177422,0.29304966,0.38866726,-0.14429219,-0.51199996,0.44554433,-0.06796037,-0.14079012,-0.4208667,0.2852726,0.58523893,-0.5807397,0.5710699,0.28749222,0.15375538,-0.24953355,-0.63015944,-0.20410621,0.04266259,-0.23711714,0.5555425,0.11600949,-0.9196854,0.47412282,0.3672087,-0.25380993,-0.79221237,0.3522783,-0.06703142,-0.42697763,-0.017215172,0.39397892,0.12781973,0.019006643,-0.17778705,0.2411408,-0.43551204,0.30091348,0.18113697,-0.11130263,0.5305758,-0.26816115,-0.24576487,-0.6343762,-0.20988628,-0.54406214,-0.33398637,0.27168402,0.061378796,-0.05879001,0.18251777,0.07089035,0.47811183,-0.2700499,0.13054651,-0.037885662,-0.1330821,0.26872292,0.3495839,0.54311144,-0.32469988,0.45917058,0.001889001,-0.0018912852,-0.08751535,0.048455086,0.44612792,0.11532593,0.4290607,-0.045071594,-0.06659785,0.30039337,0.7300282,0.0878026,0.38726377,-0.11943372,-0.104499325,0.09561714,0.050693307,0.28259557,-0.061975744,-0.51598364,0.045607608,-0.3709577,0.20188192,0.47073647,0.1687818,0.29986027,-0.09335713,-0.367405,0.048063688,0.20502399,0.09244913,-0.9645926,0.37451833,0.1504391,0.87747514,0.3450899,0.15107349,-0.011843944,0.72292674,-0.046979573,0.07930235,0.24996741,0.036835402,-0.49385732,0.44653544,-0.83897644,0.4597961,-0.057129733,-0.13197967,0.12988389,-0.06749917,0.38252926,0.7269522,-0.024426889,0.013729677,0.05886516,-0.2738626,0.19971164,-0.40789923,0.0511092,-0.5491644,-0.3429618,0.5077709,0.5592137,0.20539086,-0.20417894,-0.07444122,0.1614201,-0.06957823,0.12648323,-0.06967686,0.0909092,-0.09901092,-0.69396657,-0.08447289,0.47327688,0.48941487,0.08323557,-0.20984362,0.005501815,0.25063428,-0.3077187,-0.033735715,-0.11275178,-0.44792104,0.038497042,-0.20276092,-0.31574112,0.4890873,-0.23436879,0.32015508,0.15556929,0.18115726,-0.2824096,0.4534588,0.004717048,0.76404935,0.000254035,0.011805892,-0.49762246,0.16393141,0.15813874,-0.18736048,-0.15936187,-0.28867036,-0.10927866,-0.469408,0.30389506,-0.037796225,-0.20836475,0.058496714,-0.01894773,0.07442465,0.5628053,-0.068292,-0.12281062,0.04798844,-0.22082962,-0.35073185,-0.15697464,-0.019990223,0.20949568,0.30663633,-0.09704297,-0.10298284,-0.09273422,-0.15511966,0.38700566,-0.03779175,0.27553132,0.20247068,0.055415522,-0.28885013,-0.09294689,0.11725294,0.6565294,-0.065797426,-0.008414464,-0.14602086,-0.40238062,-0.34361595,-0.066750094,-0.10717641,0.2520953,0.04155432,-0.14178225,0.5956833,-0.04719332,1.0914924,0.12530187,-0.18280683,0.11027487,0.41788843,0.021218464,0.010058373,-0.44903898,0.98684543,0.40970364,-0.23463039,-0.0719833,-0.24473628,0.04425484,0.045556128,-0.17240438,-0.109228425,-0.014457111,-0.7239256,-0.2491066,0.22151543,0.3122609,0.07155853,-0.07707853,-0.037756313,0.19500133,0.12332167,0.28692627,-0.39848885,-0.11024755,0.30492657,0.38875863,0.039692998,0.19593894,-0.38564166,0.38588452,-0.40912578,0.22402787,-0.3011647,0.1693485,-0.22620596,-0.3655654,0.22027633,-0.13387223,0.29795092,-0.20831458,-0.35117826,-0.22912426,0.3436933,0.29068187,0.14020412,0.48508272,-0.19822346,0.005852195,0.08957328,0.48033306,0.96378267,-0.26731044,-0.19803731,0.43558258,-0.29553097,-0.67582804,0.27679443,-0.28704023,0.06687305,-0.102084875,-0.13892105,-0.45017284,0.28446412,0.17799972,0.05668464,-0.103928074,-0.61992806,-0.020053456,0.2628371,-0.36888584,-0.145337,-0.27276936,0.15985075,0.57780707,-0.11310528,-0.3858873,0.14743993,0.25911054,-0.2094964,-0.511296,0.17875743,-0.41993666,0.24833918,0.08945118,-0.2860143,-0.13242665,0.13629879,-0.47746474,0.21580645,0.055169705,-0.29889426,0.084932946,-0.27044675,-0.07336654,0.77194756,-0.35993227,0.3818951,-0.42567557,-0.42277765,-0.77144474,0.044644654,0.4955556,-0.13132218,0.013636286,-0.77510136,-0.10464009,-0.14333956,-0.25712255,-0.116818026,-0.33862764,0.36474538,0.0057411618,0.3888432,-0.3027446,-0.72409624,0.18387063,0.30973417,-0.18404551,-0.59677535,0.5313273,-0.07493605,0.6410389,0.05401414,0.05661118,0.42580146,-0.42221433,0.09761805,-0.28163317,-0.31415373,-0.6102328,0.051301923 -203,0.7041089,-0.33425742,-0.3934942,-0.105390854,-0.3119885,0.15002586,-0.2739263,0.4310186,0.038480334,-0.58142453,-0.28714857,-0.2365738,-0.04328273,0.15281858,-0.23258576,-0.4044912,-0.049303975,0.22569491,-0.2853805,0.69851106,-0.41800755,0.4075707,-0.029546771,0.40062913,0.3036613,0.1546569,0.14514017,0.06454559,-0.33018643,-0.35789806,0.0612413,0.08855365,-0.65605146,0.25848752,-0.18267055,-0.49093875,0.0151417935,-0.26554668,-0.37944433,-0.84142697,0.2343026,-0.87560385,0.65845233,-0.07243127,-0.5566115,0.112650804,0.16146602,0.15067329,0.1602091,0.0708154,0.13366075,-0.034841187,0.01578715,-0.29190964,-0.2955344,-0.5683062,-0.72758675,0.005324583,-0.35472703,-0.04768588,-0.27370325,0.32121584,-0.28907284,-0.01202628,-0.14663638,0.3834389,-0.46371046,0.15388195,-0.0011252165,-0.014068531,0.4852197,-0.6107581,-0.23186064,-0.24828891,0.015480748,-0.10885342,-0.17366882,0.28905648,0.34033045,0.5055581,-0.13494849,-0.13960823,-0.39247957,0.061186343,0.12837529,0.60580856,-0.2617415,-0.4222408,-0.2057508,-0.30055672,0.51033884,0.26610062,0.43349212,-0.21564357,-0.02152366,-0.059525363,-0.20540057,0.38791066,0.5496002,-0.30311254,-0.15988557,0.07207363,0.539882,0.045184765,-0.23542213,-0.048417,0.006181836,-0.50033206,-0.24842694,0.10583763,-0.2587991,0.51755154,-0.13234457,0.14865732,0.57267153,-0.38144335,0.03753198,0.22623493,0.017641587,-0.08876508,-0.1897479,-0.30915663,0.24033149,-0.40482977,-0.09994107,-0.3937587,0.80809003,-0.11199681,-0.7605172,0.3378062,-0.45139843,-0.059832614,0.05500045,0.49751788,0.6410157,0.6663642,0.3532161,0.6096333,-0.4339044,-0.06288372,0.011896557,-0.21778499,0.11864303,-0.12403969,-0.13148162,-0.40264705,-0.06147575,0.009371842,-0.12545101,-0.023794098,0.9243969,-0.5838571,-0.060668863,0.124953575,0.800536,-0.3442662,-0.07178826,0.8429776,1.0955695,0.8915277,0.034478102,1.2122055,0.19903766,-0.08964371,0.05364298,-0.22449157,-0.6628857,0.3508377,0.37635684,-0.5511847,0.39988518,0.18458202,0.044664495,0.3059738,-0.3608947,-0.03167569,-0.14425786,0.14478295,0.06349282,-0.37698004,-0.44947788,-0.17835745,0.035924133,0.00802158,0.1622567,0.21038315,-0.45239088,0.37361684,0.13748494,1.6809629,-0.14312556,0.027666543,0.052843314,0.5350855,0.18448175,-0.18784364,0.17330825,0.3426115,0.21765426,0.19929092,-0.39200884,0.08638531,-0.11709857,-0.61793643,-0.31112528,-0.22865613,-0.083228715,-0.23012163,-0.36042473,-0.3139557,0.0077642226,-0.33307156,0.33706072,-2.2828095,-0.036375828,-0.19561657,0.29680094,-0.16295196,-0.4853551,0.090040244,-0.44359273,0.58963996,0.42140135,0.375954,-0.7180008,0.3544402,0.67638344,-0.44060454,0.053961534,-0.59712356,-0.24225841,-0.092652455,0.47824904,0.16150928,-0.054527912,0.051925723,0.19011767,0.62113816,-0.17686,0.2550761,0.31274146,0.4376037,-0.21845092,0.4528746,0.06548774,0.42856243,-0.1681133,-0.268667,0.47174048,-0.3059661,0.061089944,0.1207112,0.22759739,0.47303072,-0.4977669,-0.6894722,-0.8975218,-0.47745654,0.9510495,-0.06651411,-0.7675532,0.16998874,-0.3253004,-0.6533364,0.014544232,0.50379974,-0.19679943,0.1152362,-0.75705045,-0.12415749,-0.1388736,0.47725978,-0.1434133,-0.060746055,-0.5305824,0.84201056,-0.09956796,0.4188047,0.35699168,0.27947146,-0.5829209,-0.6543895,0.06710399,1.2277538,0.45500073,0.1496799,-0.40197498,-0.19408038,-0.36107907,0.09895557,-0.0076262183,0.6402885,0.682469,-0.10564101,0.1356745,0.16239189,-0.18268059,-0.04575323,-0.115462594,-0.30673322,-0.14515604,-0.023613278,0.539991,0.66067845,-0.13378738,0.53451043,-0.26054102,0.50182396,-0.26414612,-0.6214835,0.34972993,0.9303326,-0.15880218,-0.3329258,0.7226839,0.57955307,-0.42764664,0.43878606,-0.74912727,-0.31782576,0.37301427,-0.11103707,-0.4519362,0.29719687,-0.44228894,0.2874382,-0.86403763,0.48743084,-0.46514437,-0.47648576,-0.5653321,-0.16669926,-2.950607,0.29677716,0.033168763,-0.35357043,-0.026830938,-0.2091131,0.44028622,-0.51455003,-0.4670624,0.01231551,0.11699719,0.65914786,0.038001295,-0.07045891,-0.31346178,-0.38549018,-0.25155097,0.32581228,0.22815122,0.26159126,-0.18264319,-0.69118184,0.0057127667,-0.22393754,-0.4625215,-0.08754065,-0.69110805,-0.8457894,-0.22158217,-0.408128,-0.3145363,0.6639933,-0.35740873,0.077468716,-0.24480978,-0.034576423,-0.07684595,0.28550518,-0.0014593431,0.08591514,0.06226025,-0.25419608,0.03949461,-0.3974827,0.47984385,0.17017317,0.34427267,0.6391261,-0.29435632,0.13206957,0.42316264,0.55062515,-0.025338948,0.9781376,0.30789074,-0.14914279,0.39130434,-0.082942314,-0.30939803,-0.5621941,-0.18731639,0.05045385,-0.5677345,-0.38695005,-0.06736807,-0.4262598,-0.8649927,0.6064683,-0.14550379,0.15987264,-0.048552494,0.5317973,0.3382415,-0.21513318,-0.18097226,-0.066339806,-0.257369,-0.5029308,-0.5098607,-0.6846639,-0.5332932,0.027951105,1.249,0.15865433,0.02453185,0.17534588,-0.17234743,0.11622699,0.04607422,-0.01639593,0.081077315,0.28814355,-0.16187856,-0.75836664,0.60664326,0.1820521,-0.13108063,-0.47823387,0.2343706,0.6866352,-0.53307194,0.3065755,0.24784745,0.041928153,-0.056909654,-0.5989128,0.011113784,-0.013282716,-0.40133598,0.58527523,0.4980522,-0.83608925,0.40823045,0.3270248,-0.15832315,-0.7101726,0.5310222,-0.036357563,-0.24369343,-0.16749239,0.48896116,-0.0049491352,0.13911107,-0.33428416,0.37065312,-0.51917744,0.3169446,0.30397,-0.03045867,0.29649082,-0.24076526,-0.16582742,-0.8818561,0.21462485,-0.42230892,-0.50398767,0.26194838,0.09027738,0.07968029,0.6038141,0.36672026,0.4961407,-0.35158566,0.10111451,-0.013865625,-0.31485716,0.42177173,0.47027633,0.5358578,-0.31968156,0.49763218,0.029584808,-0.14750732,-0.09771413,0.06807657,0.5493439,0.0002898744,0.33739924,0.027189877,-0.030098276,0.3846983,0.99087846,0.25956753,0.58994263,0.11532532,-0.30698648,0.13273475,-0.037848085,0.2854592,-0.037101347,-0.6040582,-0.0135400295,-0.121394865,0.12186209,0.5685424,0.020707535,0.18439715,-0.23723991,-0.3022854,0.077459976,0.24338457,0.07121544,-1.2622681,0.09721507,0.08147844,0.93274224,0.54065716,-0.03341353,-0.003494465,0.6183267,-0.3555947,0.014216271,0.31409785,0.151885,-0.29046234,0.4888614,-0.66808325,0.39294943,-0.11143948,-0.039267454,0.123860136,-0.40535906,0.42014116,0.976678,-0.07409085,0.12004528,0.1300569,-0.27651617,0.15784666,-0.3695157,0.10069542,-0.51540256,-0.23005438,0.75118285,0.4583528,0.35503843,-0.10577246,0.101978965,0.09857719,-0.1863819,0.20993103,0.061556388,0.15268132,-0.23370631,-0.55358124,-0.20044912,0.42060116,-0.02466016,0.09382267,0.13155416,-0.24339606,0.046959035,-0.23072815,-0.026292844,0.029542288,-0.729359,-0.1273121,-0.3903274,-0.30548257,0.398251,-0.091858454,0.015072288,0.13115226,0.07781486,-0.35983926,0.2288759,0.4113191,0.6200691,0.3259743,-0.030668488,-0.27274165,0.13200645,0.16069002,-0.32165268,-0.009407316,-0.06351985,0.07907323,-0.80674535,0.4068379,-0.09709041,-0.37839133,0.11452227,-0.032987893,-0.00024732522,0.5021094,0.018530037,-0.34923437,0.025737455,0.09692425,-0.08427828,-0.09079493,-0.1295756,0.29030013,0.059324205,-0.19935563,0.051253267,0.054134913,-0.013642899,0.32993355,0.03118011,0.4359626,0.5145961,-0.0032769782,-0.42275938,0.07197016,0.16967313,0.7217639,-0.23507826,0.13863781,-0.18923569,-0.6173125,-0.4041755,0.0049427575,-0.15411815,0.29529437,0.11848801,-0.4310464,0.9240729,0.02460676,1.2543379,0.0151926195,-0.44593725,-0.07140012,0.5593834,-0.16879097,0.009908353,-0.5897977,1.1520537,0.46093696,-0.37528118,-0.16902654,-0.16675289,-0.05846711,0.15897158,-0.24917556,-0.13641341,-0.07556842,-0.87866104,-0.21767053,0.19174957,0.47508213,-0.054974165,-0.0024234594,0.19144765,0.36923414,0.041665178,0.32189038,-0.4526915,0.08415462,0.32043642,0.35163045,-0.13111366,0.21830322,-0.3924265,0.18655083,-0.54718006,0.010209041,-0.4210277,0.101113245,-0.115394354,-0.45096943,0.3039971,0.15627275,0.31549627,-0.33931223,-0.21686025,-0.13743582,0.4861056,0.11176316,0.24279158,0.5471853,-0.11224057,0.18121155,0.07389282,0.4052396,1.3181263,-0.18390168,-0.18225731,0.253689,-0.50335395,-0.7173633,0.40693074,-0.38023892,0.21258053,-0.039642967,-0.5176172,-0.34573197,0.29694748,0.15514715,0.016312262,-0.06609754,-0.5180736,-0.17878368,0.30920127,-0.4433331,-0.29950115,-0.18064596,0.16308881,0.51629,-0.30154294,-0.33904263,0.0044268197,0.55901784,-0.38273543,-0.4236495,-0.1674212,-0.38597447,0.49029544,-0.025450064,-0.40859467,-0.14796993,-0.15364714,-0.45586538,0.044968974,0.25390634,-0.39262983,0.1459919,-0.3493328,-0.028109428,0.749279,-0.15669121,-0.10381531,-0.44352058,-0.5575538,-0.9254073,-0.42021337,0.23982427,0.3404668,-0.08597464,-0.50717556,-0.09610726,-0.30152413,-0.08310151,-0.030776756,-0.26956537,0.44356117,0.18615474,0.5803099,-0.04851249,-0.84777534,0.18541762,0.2660536,-0.06474571,-0.78798306,0.65344346,-0.18170686,0.9021762,0.14688687,0.19747642,0.35471132,-0.555927,0.20440412,-0.20617385,-0.2868089,-0.72585136,0.04643497 -204,0.482038,-0.1573207,-0.53620654,-0.11606369,-0.39465335,0.16227093,-0.26317424,0.36271024,0.18234703,-0.2659361,0.08198781,0.0014600935,-0.04048779,0.33670238,-0.06204133,-0.62128323,0.050425813,0.13638127,-0.7252275,0.6226436,-0.51551145,0.45736706,0.053405568,0.19878237,0.18149623,0.35589322,0.11645786,0.04176899,0.06229563,-0.108560234,-0.15955609,0.2606288,-0.44274107,0.122323975,-0.03981146,-0.29895136,-0.09394387,-0.387119,-0.5313239,-0.65226245,0.29152074,-0.6452675,0.58836174,0.09475538,-0.39876038,0.11590497,0.1346134,0.2636369,-0.32193574,0.17864043,0.17365393,0.019765709,-0.0637802,-0.26765826,-0.28315184,-0.4334817,-0.45443103,0.09137471,-0.6101809,-0.068930015,-0.317723,0.1359224,-0.2783959,-0.052418713,-0.20422873,0.3969376,-0.46735248,0.031304218,0.07716294,-0.06286204,0.18852493,-0.5604865,0.08838971,-0.15058447,0.1389867,-0.15420467,-0.311855,0.2366179,0.17896089,0.6119314,0.013780758,-0.291827,-0.26962522,-0.10195662,-0.04720111,0.44870064,-0.23871252,-0.44157937,-0.21426192,0.06463879,0.3685174,0.21423681,-0.021087065,-0.31928876,-0.07424033,-0.16509496,-0.26180205,0.45977095,0.5447717,-0.3458649,-0.20541358,0.4944461,0.4749887,0.1989111,-0.16149153,0.21421805,0.0147238225,-0.5613785,-0.2305804,0.026650786,-0.036015674,0.44942516,-0.24264859,0.22978291,0.5906532,-0.07029087,-0.056292627,0.20285302,0.07625386,0.025256008,-0.18875453,-0.18275326,0.06847349,-0.5515415,0.058806054,-0.12780112,0.721121,0.11791819,-0.694808,0.41484004,-0.5290242,0.15329778,-0.054485068,0.56037587,0.832829,0.47210836,0.14283943,0.7528297,-0.39152503,0.1566003,-0.22255239,-0.29092997,0.06522098,-0.058537275,-0.15371674,-0.56802857,0.02849666,-0.09031225,-0.102675475,0.022608705,0.7258022,-0.46056637,-0.24557117,0.07647311,0.7570962,-0.41330242,0.020025741,0.60138726,0.9492746,0.9528017,0.023983078,1.1471863,0.25278053,-0.08981496,0.04146836,-0.29001504,-0.6257044,0.2789565,0.4230807,0.105749935,0.32468542,-0.04235028,0.024867676,0.32052612,-0.3135934,-0.0123625975,-0.20423813,0.31394696,-0.095514536,0.029462144,-0.45320255,-0.24770752,0.0066881627,0.26018086,0.05321207,0.30852908,-0.25871786,0.23433045,-0.019810634,1.6330606,-0.12874074,0.13284354,0.20164543,0.5137684,0.36564928,-0.342604,-0.17163444,0.2549159,0.3581917,0.054042615,-0.5626491,-0.032402083,-0.26647285,-0.40540746,-0.14446075,-0.32189757,-0.079962,-0.17737861,-0.5848745,-0.22682998,0.10177024,-0.5064819,0.49992073,-2.5496182,-0.20831223,-0.11546463,0.2600278,-0.24098587,-0.43300372,-0.24716029,-0.36060074,0.4470042,0.29615748,0.38269174,-0.62839735,0.35981297,0.5787756,-0.4042579,0.046534225,-0.5454692,-0.10449589,-0.018584974,0.34517726,0.04903937,-0.22615163,-0.118043154,0.3237202,0.5516466,-0.20191884,0.13467593,0.28449383,0.2944854,0.08779521,0.43261862,-0.028664373,0.4362175,-0.2580441,-0.2655365,0.44893134,-0.25428623,0.20012246,-0.15261564,0.09543655,0.44596243,-0.6551401,-0.9080077,-0.5628519,-0.07975407,1.2079875,-0.3142389,-0.47158027,0.31525323,-0.37791392,-0.3061177,0.040791072,0.4407205,-0.077410504,-0.038799986,-0.77857643,0.18252657,-0.05561669,0.22189319,0.04031299,-0.009374343,-0.2913721,0.6245554,0.053138956,0.4672264,0.30061245,0.09080616,-0.22583093,-0.38185635,0.12705907,0.9637102,0.507118,0.14808536,-0.22810204,-0.24775761,-0.21775638,0.059182547,0.12037855,0.4923606,0.67901915,-0.03696473,0.07154633,0.27190796,0.05746626,0.05905653,-0.22531058,-0.251032,0.010066325,0.050788153,0.6241563,0.56040996,-0.08188508,0.38155648,-0.113912165,0.23580116,-0.23672688,-0.5847793,0.46636617,1.0006869,-0.095700175,-0.2460989,0.61687744,0.45520595,-0.29042736,0.4014218,-0.57118845,-0.3864796,0.3364419,-0.19486111,-0.27979153,0.33559188,-0.4009719,0.17123295,-0.7242206,0.25536937,-0.15860523,-0.5463428,-0.3727369,-0.17891791,-3.3002012,0.24883601,-0.17523399,-0.043103162,-0.018965686,-0.10527951,0.30054677,-0.5015691,-0.49718738,0.029093836,0.05551507,0.7033236,0.023653843,0.13658673,-0.105358385,-0.3709792,-0.28390473,0.15981454,-0.013355317,0.40525633,-0.09342654,-0.4495569,-0.3115033,-0.12048467,-0.34888282,-0.023991704,-0.6562606,-0.42666218,-0.22301967,-0.5369469,-0.011170324,0.6084194,-0.090833604,0.069543146,-0.29351982,-0.10354461,0.061715305,0.19067508,0.14579874,0.16890971,0.0483066,-0.114446685,0.0030687153,-0.35179785,0.17547695,-0.044207618,0.17185022,0.3201788,-0.07002251,0.1004204,0.5131587,0.58162177,-0.2391244,0.9824853,0.45863622,-0.21731007,0.38682833,-0.15617894,-0.22038256,-0.54951787,-0.2784343,-0.18912122,-0.43056428,-0.16836049,0.0030653924,-0.28708735,-0.77905166,0.45902103,-0.043353513,0.15585434,-0.03331601,0.27610564,0.47787356,-0.20337851,-0.061664842,-0.13034369,-0.29790452,-0.44823423,-0.27663124,-0.6085537,-0.39130688,0.23900865,1.114079,-0.2285679,0.021237362,0.06123062,-0.115685396,-0.108501405,-0.07405221,0.20280144,0.27878484,0.3122181,-0.2600755,-0.6539655,0.3066752,-0.06320839,-0.07122864,-0.504056,0.1497127,0.73979086,-0.5058881,0.46670866,0.21588773,0.21390651,-0.10089737,-0.6827007,-0.1665899,0.07516439,-0.26125535,0.50905204,0.20985055,-0.8692529,0.552658,0.31319106,-0.22823691,-0.7438256,0.5016886,0.02614005,-0.43492085,-0.11894328,0.3328113,0.007182032,0.0014639124,-0.23707607,0.27391386,-0.31784293,0.39034683,0.18510872,-0.15640539,0.18999073,-0.28029066,-0.33475798,-0.5710976,-0.111762136,-0.4672548,-0.42642286,0.19115382,0.038954154,0.07937023,-0.030211294,-0.11771171,0.45682517,-0.29587442,0.10584912,-0.16637816,-0.26508573,0.37554696,0.42269576,0.5284317,-0.35845536,0.6136763,0.025421027,-0.022618815,-0.117099494,0.24889854,0.46150106,-0.060246788,0.34872395,-0.029276745,-0.11522347,0.38200063,0.86726344,0.18112323,0.32642943,0.014876749,-0.18794504,0.14159645,0.1498996,0.012453511,-0.11665756,-0.42773902,-0.080599055,-0.17157656,0.25494966,0.53004044,0.119955905,0.21955216,-0.15653795,-0.28768623,0.096108146,0.19144756,0.011908488,-1.4571247,0.21880043,0.20410681,0.6845445,0.50215626,0.10875618,-0.16221674,0.6177875,-0.26934177,0.046496402,0.3008627,-0.115466736,-0.37155733,0.39658403,-0.66088855,0.4622921,0.027534105,0.050834805,0.10755585,0.030053396,0.37379444,0.8456706,0.018180816,0.07669692,0.05709968,-0.3254947,-0.014056541,-0.31519637,0.0097403005,-0.48642564,-0.3909011,0.7323317,0.3262979,0.32374525,-0.06815768,-0.05589952,0.07374872,-0.20765649,0.107644364,0.036685523,0.06762756,-0.2041615,-0.6436603,-0.15803042,0.55857533,0.22197613,0.04265374,0.097424425,-0.056031514,0.2986498,-0.10987198,0.04205653,-0.07882595,-0.5674218,-0.045290943,-0.4442468,-0.39224464,0.4120104,-0.25149408,0.21301946,0.13780375,0.07918618,-0.33379346,0.41863045,0.07480852,0.7127883,0.0077198446,-0.0961708,-0.18375693,0.21863815,0.13927805,-0.21898398,-0.20164412,-0.18738085,0.12309605,-0.780985,0.36250523,-0.096133314,-0.4238609,0.24221021,-0.06800928,0.05741455,0.42753875,-0.07076054,-0.3054353,0.0035513937,-0.15662429,-0.3350703,-0.26561737,-0.1216076,0.29083523,0.20223112,-0.14028361,-0.10905995,-0.14608017,0.03381589,0.42916927,0.0058001447,0.36920178,0.317592,0.15891579,-0.3183518,0.119710766,0.31456977,0.5730779,0.044205546,0.03193912,-0.22781065,-0.2840101,-0.37157974,0.06068769,-0.16330333,0.26687717,0.13531223,-0.20701307,0.88270223,0.095393166,1.1065903,0.035810746,-0.20679146,0.16935223,0.37940133,0.054380726,0.011933241,-0.29168493,0.9360545,0.6539501,-0.07945345,-0.16286021,-0.39019305,-0.14351982,0.061397493,-0.3064756,-0.15456128,0.012552306,-0.76627386,-0.28167242,0.24921489,0.22539312,0.21933004,-0.08346935,0.029635333,0.1578788,0.04829171,0.19309744,-0.59697914,0.009551175,0.33336258,0.20865875,-0.00789856,0.16648164,-0.5487289,0.29449785,-0.5904754,0.002976166,-0.16470556,0.23000541,-0.07691838,-0.29498887,0.27701864,0.014439993,0.3463797,-0.36006773,-0.3749802,-0.23703355,0.5352346,0.018615924,0.14435384,0.55007917,-0.33467487,0.1167522,0.07345429,0.40779868,0.98135996,-0.324405,-0.011103388,0.35240608,-0.37127346,-0.7140197,0.09218869,-0.38565424,0.075508356,0.06909739,-0.3196362,-0.29188737,0.33774996,0.006049011,0.1845126,-0.07682459,-0.6279102,0.018625524,0.24341303,0.017015178,-0.18997067,-0.29904237,0.19622609,0.62315226,-0.24941045,-0.33839166,0.10853599,0.29410183,-0.25835985,-0.6661342,-0.023083296,-0.2687982,0.17966162,0.12974992,-0.22062962,0.0023704767,-0.01244919,-0.4938134,8.017197e-05,0.36762366,-0.39398587,0.008606657,-0.30214885,-0.09547554,0.9833648,-0.22943383,0.09447043,-0.4861059,-0.5246696,-0.85036504,-0.35157543,0.4095524,0.11648364,0.073814824,-0.7340235,-0.01041048,-0.20896131,-0.06581775,0.08351836,-0.4085734,0.5301885,0.099531576,0.32997656,-0.1527424,-0.82527626,0.19210842,0.028652828,-0.2668673,-0.53505015,0.50781405,-0.07410053,0.74626374,0.14890715,-0.0065556914,0.22734503,-0.8056763,0.1335986,-0.22544472,0.017534574,-0.82074463,0.08716302 -205,0.26655146,0.018259322,-0.5871483,-0.3393979,-0.3627557,0.26528904,-0.38814363,0.1459788,0.17460646,-0.28190646,0.0676811,-0.0710742,-0.1370827,0.33385855,-0.25720736,-0.91570276,0.08490743,-0.10630874,-0.4566266,0.53183633,-0.47754517,0.25189176,0.056641977,0.31082746,0.07619424,0.37091473,0.42354295,0.047900386,-0.09901909,-0.045814753,0.06105695,0.3022797,-0.6781102,0.40858224,0.096573986,-0.306006,-0.01756359,-0.28185514,-0.12941884,-0.6952909,0.35235146,-0.75207764,0.36402813,-0.02963579,-0.39267954,-0.014852933,0.24162674,0.08575882,-0.18976559,0.06536002,0.30017546,-0.37816253,-0.093862906,-0.0063293152,-0.20588727,-0.7536672,-0.54691106,-0.007977173,-0.873004,-0.17338584,-0.36672726,0.30462033,-0.43447632,-0.17907357,-0.12934646,0.47466373,-0.5948404,-0.19284709,0.15889958,-0.36379784,0.024459204,-0.6943781,-0.28778696,0.015314966,0.17728315,0.0071801627,-0.16279243,0.57306385,0.36271808,0.27812454,0.11912286,-0.40809807,-0.41152054,-0.2870774,0.1595527,0.35254893,-0.103053525,-0.34633824,-0.24366677,-0.1582776,0.32211107,0.14961569,0.086641364,-0.25054812,0.08013164,0.026191559,-0.17248312,0.2627278,0.60641617,-0.5237002,-0.20116031,0.48931953,0.35944602,-0.10104899,-0.35687876,0.20049094,-0.08776065,-0.4223368,-0.16549094,0.1540468,0.04809906,0.41316327,-0.12374605,0.2184267,0.9089225,-0.13219678,0.19277157,0.00025463957,-0.01376362,-0.10530002,-0.22070476,-0.03294466,0.15594132,-0.41487455,0.09224123,-0.24116577,0.8743572,-0.040495217,-0.80250734,0.4320111,-0.41101497,-0.08612997,-0.15542777,0.622015,0.74214494,0.33633885,0.07828547,0.94548905,-0.33400577,-0.08570601,0.11233897,-0.33415562,0.12627526,-0.24442564,0.28719476,-0.50037134,0.17270072,0.12373363,0.20491579,-0.024617331,0.6132551,-0.34459963,-0.07818712,0.12835784,0.55007404,-0.3355687,-0.11984377,0.71542466,1.1275244,1.0868464,0.16645288,1.102003,0.41669992,-0.1782122,-0.07004788,-0.17540343,-0.4570748,0.20197546,0.47611257,0.52177143,0.2526379,0.09326626,0.08228167,0.5801029,-0.23793127,-0.0021908071,0.03136135,0.3064231,0.17338581,-0.20124969,-0.31781366,-0.19500698,0.33645147,0.17532647,-0.13121633,0.337081,-0.0207163,0.58248025,0.07043826,0.9054564,0.07539173,0.08185358,-0.08662971,0.62712634,0.12771381,-0.11583368,0.17631106,0.17927977,0.14111637,-0.10368829,-0.5103911,0.10166298,-0.48262718,-0.7191743,-0.21189903,-0.46515736,-0.145295,-0.027204828,-0.39402255,-0.3293364,0.16130687,-0.24794233,0.37075755,-2.676292,-0.024943683,-0.32109526,0.21194889,-0.113417946,-0.22842124,-0.33558622,-0.582796,0.4665482,0.47345462,0.3360342,-0.4965543,0.38102075,0.39270404,-0.43416485,-0.058354113,-0.66077346,0.18028696,-0.24323419,0.5053345,-0.0846849,-0.18236415,-0.07030804,0.24912097,0.7769818,0.10429985,-0.010569033,0.14355174,0.21663949,-0.08693711,0.36516258,0.06371482,0.5685827,-0.28840956,-0.11504044,0.36819288,-0.7002243,0.39132375,-0.11005854,0.15568972,0.4639315,-0.29700416,-0.9376115,-0.68820244,-0.3970142,1.1476412,-0.32522538,-0.54613715,0.258189,0.22083728,-0.10211646,0.20030273,0.40506572,-0.16726732,0.18711278,-0.49156004,0.20228298,-0.22807585,0.13451985,-0.12556998,0.2626061,-0.45062095,0.7953111,-0.09737607,0.55803406,0.25549045,0.19917586,-0.28197762,-0.48845047,0.022799999,0.7691294,0.47548702,0.121882424,-0.07166344,-0.25434,-0.05390344,-0.531222,0.2649531,0.6102286,0.48021203,0.042557903,0.28207183,0.27845722,-0.31468377,0.10962316,-0.04155912,-0.3680372,-0.06497647,0.414159,0.588846,0.46486712,-0.18123734,0.34003922,-0.053448837,0.25520253,-0.24568848,-0.5239295,0.49929732,0.69479316,-0.095682964,-0.2616836,0.43503517,0.46388027,-0.4783604,0.52566844,-0.5510611,-0.49384043,0.62693775,-0.04382084,-0.4925917,-0.21516609,-0.42177716,0.01086414,-0.7728093,0.43386993,-0.14839019,-0.6829137,-0.46174908,-0.45382124,-3.7155774,0.02226012,-0.234841,0.08465445,-0.19005983,-0.14263546,0.3140393,-0.70338875,-0.5200354,-0.03481423,-0.017646367,0.4301241,-0.044456005,0.07766126,-0.3503981,-0.2309866,-0.20681462,0.49310663,-0.042799216,0.26565942,-0.07623517,-0.2819167,0.42066056,-0.36942387,-0.5343699,-0.122580774,-0.48505303,-0.53757703,-0.0150376605,-0.53504217,-0.19301255,0.742621,-0.4803223,-0.0040797177,-0.14626314,0.086884364,-0.17674057,0.3509325,0.3965819,0.24137947,0.073747054,-0.077781364,-0.18866293,-0.550358,0.38892642,-0.107794575,0.38041067,0.57472366,-0.06953139,0.2620713,0.7614101,0.38505742,0.08722056,0.80529404,-0.038371217,-0.070624925,0.45612484,-0.35828876,-0.18922329,-0.8353206,-0.39092308,-0.06586149,-0.41389945,-0.5081335,-0.014887844,-0.42594174,-0.70184076,0.5142711,0.1353427,0.22187445,-0.282566,0.22868606,0.118989095,-0.10481111,-0.03492581,-0.0059917937,-0.10974827,-0.5680733,-0.5411862,-0.6967189,-0.8120141,0.13453393,0.9879566,-0.21484862,-0.40106508,-0.05395331,-0.24429126,0.113684826,0.17610632,0.31660938,-0.013518201,0.30707565,0.1325687,-0.96797055,0.50753284,-0.25828907,0.16336663,-0.5000268,-0.11503793,0.54510254,-0.7379484,0.5001193,0.47351408,0.35545963,0.17714253,-0.64385647,-0.17975037,0.026353033,-0.21005908,0.5346952,0.14592767,-0.6775119,0.5374052,0.09412922,-0.28593057,-0.47755256,0.47721484,-0.0030761308,0.21118294,0.10330162,0.44218484,0.1620557,-0.28772512,0.008939794,0.20858261,-0.5793373,0.3125982,0.21800487,0.14187369,0.7049037,-0.08827652,-0.38865617,-0.5001308,-0.22040962,-0.5413067,-0.15344252,0.06573365,-0.17157388,-0.0903653,0.22421925,0.066820495,0.41920835,-0.17230427,0.13140425,-0.19125775,-0.26304415,0.43728083,0.4685032,0.47948557,-0.5654374,0.71001637,0.14885579,0.116620935,-0.04220138,-0.17944281,0.62374336,0.3052303,0.5232425,-0.06345863,-0.0033652186,0.04021401,0.7426112,0.34507552,0.44370985,-0.019377312,-0.38080582,0.27112538,0.101658806,0.076662354,-0.037536554,-0.41434056,-0.065701514,-0.17967117,0.057786968,0.38833848,0.061387602,0.33515984,0.016715327,0.0065070014,0.28813195,0.1418228,-0.042186074,-0.9349306,0.43447378,0.363056,0.5929346,0.45784524,-0.1648225,0.05183403,0.5455331,-0.3612021,0.024783595,0.5049027,0.049797468,-0.46008068,0.69705576,-0.58655494,0.62281257,-0.3160711,0.05441537,0.07282591,0.2849589,0.32975715,0.6444256,-0.12678337,0.02636448,-0.015896888,-0.40078467,0.2833613,-0.2398355,0.23676442,-0.43872204,-0.10163695,0.55358034,0.392487,0.21942762,-0.17679249,-0.16904762,0.074844636,-0.20698282,0.24301144,-0.14474574,-0.08812586,-0.26323634,-0.5618164,-0.41883937,0.58136815,-0.0728653,0.039713707,0.19588487,-0.4069583,0.36448345,-0.012232508,0.033673882,0.023097787,-0.45279446,0.1945246,-0.12386137,-0.7115458,0.48268467,-0.467994,0.32619363,0.31192616,0.016821658,-0.19412836,0.10783668,0.1472166,0.50203055,-0.050758805,-0.23372398,-0.3469526,-0.19269249,0.31558684,-0.33917397,-0.07975391,-0.37891382,0.2399589,-0.40961716,0.39961153,-0.56322867,-0.1665992,-0.11876945,-0.18722568,-0.09847989,0.46800327,-0.122396514,-0.02612258,0.1889743,0.18436551,-0.048783787,-0.006031943,-0.47938433,0.39385343,-0.17895138,0.036060434,-0.13354495,-0.28587675,-0.018644989,0.2493438,-0.06794083,0.0077524176,0.29266697,-0.12807152,-0.44080546,0.11369849,-0.006531415,0.5433942,0.19636379,0.018374672,-0.17325445,-0.26600593,-0.32954565,0.39722756,-0.11889521,0.120116316,0.32286364,-0.49289697,0.66439974,-0.119498864,1.1545131,0.21217456,-0.43072063,0.077225916,0.550474,0.14860821,0.110842094,-0.1870872,0.9634255,0.6840291,-0.26674467,-0.23032644,-0.52137285,-0.09900975,0.23098011,-0.23150577,-0.20935157,-0.14354475,-0.79341084,-0.15927921,0.10964685,0.15982577,0.11115007,-0.04216308,-0.18550195,0.078356005,0.38610718,0.3385035,-0.54034436,-0.08833914,0.35074964,0.2747746,-0.13354138,0.09537013,-0.30640343,0.31503293,-0.84283435,0.3521463,-0.47929078,0.15754874,-0.31432548,-0.27136916,0.20442192,0.06362506,0.37042975,0.09408586,-0.4502485,-0.07967759,0.64450985,0.3322815,0.44473282,0.770826,-0.16479574,-0.053942442,0.07137338,0.46832806,1.3197678,0.012702712,-0.09314787,0.3453841,-0.39951155,-0.7811081,0.14276777,-0.66754967,-0.1298063,-0.12594579,-0.4162347,-0.35055235,0.20597337,0.15440133,-0.15145577,0.06683799,-0.48076656,-0.23572256,0.011053158,-0.43156186,-0.2847502,-0.41290078,0.1840508,0.777034,-0.47815084,-0.18743137,-0.023251394,0.42483258,-0.31326514,-0.67638713,0.3365507,-0.13106278,0.5062885,0.09815755,-0.36159012,0.08296983,0.5507906,-0.3965375,0.32603452,0.3830622,-0.36538652,0.06330653,-0.2689527,0.30474234,0.90103763,0.20410585,0.32561436,-0.7108183,-0.47002888,-0.9393533,-0.41501585,0.13718423,0.10779885,-0.07791685,-0.4788229,-0.20922995,-0.11325835,0.03597645,0.05194163,-0.6067937,0.25606316,0.06677537,0.50656164,-0.005488832,-0.853199,-0.011998509,0.104663,0.011226254,-0.42844772,0.5328868,-0.3994058,0.8453633,0.11444567,0.051839463,-0.035121415,-0.5872593,0.48335543,-0.3288644,-0.16732605,-0.48152623,0.12802546 -206,0.54662263,-0.22879829,-0.3458368,-0.010699485,-0.46350962,-0.11336089,-0.28206286,0.20882599,0.25757712,-0.14144628,-0.48436683,-0.12248909,-0.0641081,0.17608026,-0.17827612,-0.5209476,-0.19284593,-0.024769796,-0.7752743,0.679711,-0.38526133,0.4269255,0.24991424,0.33419374,0.37009394,0.33088824,0.33332342,0.10282168,-0.28891703,-0.3512491,-0.053602256,0.08380683,-0.76881397,0.12290631,-0.40045434,-0.313806,-0.04930675,-0.6980418,-0.26361558,-0.9383159,0.23977426,-1.0784065,0.52338564,-0.1526036,-0.012215101,-0.12767841,0.29447803,0.27356294,0.061292253,0.00046524635,0.28941244,-0.13648081,-0.008452227,-0.1508473,-0.10242927,-0.49518305,-0.65424377,-0.033184443,-0.5216971,-0.28852922,-0.13535026,0.31145233,-0.44284916,0.030347627,-0.2044638,0.40020996,-0.43798402,0.23201841,0.21908171,-0.2035262,0.18323818,-0.72128093,-0.13204923,-0.12905607,0.35447925,-0.034576517,-0.114469066,0.36446187,0.368989,0.14593302,0.24887186,-0.28596,-0.14418913,-0.10049825,0.118566886,0.60441536,-0.20253041,-0.2902791,-0.17332378,0.025303097,0.70046145,0.4092846,0.18287101,-0.09344255,0.0076317135,-0.15373217,-0.25720656,0.68235564,0.44217178,-0.13627683,-0.36742434,0.28451207,0.58148015,0.41535032,-0.22599176,-0.1491288,-0.055680018,-0.49563736,0.07873844,0.30587614,-0.14783219,0.57615876,-0.05229008,0.18628757,0.9033973,-0.35049966,0.22543739,-0.00047439337,0.013742245,-0.08460055,-0.1802006,-0.17634502,0.2569359,-0.5280241,0.12541056,-0.38014486,0.77689654,-0.001449852,-0.7379243,0.4370505,-0.57292813,0.14185585,0.10624976,0.57262,0.6080971,0.43335646,0.3942564,0.7209133,-0.11531401,0.20186485,0.11801156,-0.39542013,0.05941933,-0.3681738,0.19430536,-0.36434937,-0.07231747,-0.14174691,-0.022694092,-0.114569634,0.57690585,-0.57022667,-0.17667429,0.06338524,0.76857656,-0.20464121,-0.07734002,0.8852824,1.0231177,1.0637176,-0.01049666,1.2266313,0.35751644,-0.11022027,-0.050330516,-0.13590823,-0.71564996,0.30326033,0.42628428,-0.8220576,0.41258118,-0.05575931,-0.1495606,0.22418879,-0.36994183,-0.10267511,-0.11081779,0.28943998,0.28325483,-0.09524965,-0.46903908,-0.30521086,-0.04882117,0.04662711,0.23435467,0.20784459,-0.27504608,0.36534697,0.12244683,1.2918513,-0.17085508,0.028288115,0.18211812,0.57666576,0.22725098,-0.24244264,-0.0038543206,0.25853083,0.36666912,0.075548,-0.58518434,0.21602756,-0.41488138,-0.2953372,-0.23171856,-0.28319675,-0.2452337,0.1727328,-0.30746055,-0.11138452,-0.065366335,-0.27848482,0.28441563,-2.6075313,-0.15043168,-0.22670385,0.2751695,-0.28853458,-0.28656995,0.036165833,-0.65483546,0.18898733,0.28829506,0.51614535,-0.71003014,0.30062813,0.5701934,-0.6242311,-0.15526155,-0.798563,-0.022720668,0.07122864,0.5653534,0.009829512,0.019546747,-0.118934624,0.2307668,0.71198744,0.33125597,0.1679754,0.536748,0.50899065,0.16729948,0.45961776,-0.00830997,0.5098617,-0.16809033,-0.2041242,0.62393653,-0.32838458,0.3919783,-0.17321923,0.14045024,0.5902792,-0.32863095,-0.85675174,-0.51507324,-0.61558306,1.0665646,-0.34178594,-0.52172303,0.003738456,0.16749316,-0.19042096,0.02437681,0.6347096,-0.32480776,0.140721,-0.6371485,-0.13912496,-0.089043625,0.16861007,-0.026962748,0.10924042,-0.29351023,0.74697316,-0.05149138,0.3713013,0.15195979,0.35832003,-0.31121683,-0.5149396,0.1925326,0.8669093,0.42481503,0.047746714,-0.40051448,-0.09881054,-0.20821674,-0.25438696,0.00047379272,0.44527876,0.70999515,-0.07234522,0.10004132,0.3994104,-0.12351375,0.043501936,-0.13642189,-0.21001352,-0.16418225,-0.04190189,0.5296209,0.7416311,-0.1423714,0.5796702,-0.30914548,0.23510233,0.048145115,-0.48796985,0.53487915,0.46768755,-0.25229484,0.05510986,0.40771642,0.3431793,-0.46496704,0.491291,-0.5998122,-0.25200194,0.64289993,-0.11114771,-0.6252949,0.16638678,-0.3052769,0.11421875,-0.6164233,0.6296868,-0.39069846,-0.43957278,-0.41335294,-0.024228688,-1.901376,0.15871175,-0.0029885494,-0.3061614,-0.37265408,-0.15900125,0.28227556,-0.6010953,-0.6834868,0.09484784,0.1466061,0.52042645,-0.09496034,0.13124345,-0.13079044,-0.23676786,-0.33826086,0.18054256,0.3100136,0.38727346,-0.34291893,-0.2880778,-0.08747713,-0.057411194,-0.5045545,0.18669035,-0.6818625,-0.7424812,-0.10105566,-0.39541024,-0.37111157,0.63746285,-0.5369971,0.03996735,-0.2685619,0.028205983,-0.14242265,0.24043407,0.15540233,0.16604866,0.071761034,-0.11142373,0.11770031,-0.24640726,0.72045016,0.14594251,0.49693388,0.121714786,-0.10724384,0.33000666,0.5090899,0.60583293,-0.033379618,1.0999472,0.23086932,-0.140197,0.12744214,-0.13531703,-0.2293577,-0.6480836,-0.06966313,0.25003192,-0.42623737,-0.50468504,0.084644094,-0.27538896,-0.9293238,0.59420323,-0.092827015,0.46913207,-0.067913875,0.33415407,0.35899454,-0.1370512,0.049917158,0.017641626,-0.06903795,-0.52778685,-0.34810784,-0.70708406,-0.58213043,-0.034703042,0.8599926,-0.23335266,-0.06474225,-0.08561604,-0.41993803,0.22203077,-0.06992913,-0.22205292,0.1259736,0.39020795,0.07009225,-0.6362327,0.364075,0.024160229,0.07544945,-0.48436177,0.2272914,0.738092,-0.5421312,0.46538374,0.38873467,0.0015868911,-0.27621442,-0.53142846,-0.16543314,-0.086123355,-0.19691053,0.3470741,0.23619041,-0.6584963,0.51192117,0.09704818,-0.54439473,-0.77957976,0.33913863,0.08572852,-0.130274,-0.020508008,0.36113828,0.061711524,-0.13417698,-0.212721,0.3253853,-0.3821398,0.36023188,0.050271466,-0.10920595,0.39717653,-0.04582296,-0.45042866,-0.58120656,0.26787612,-0.4258011,-0.44638878,0.4345252,-0.06607346,-0.09924483,0.2943036,0.2613109,0.36784488,-0.17260577,0.027599642,-0.041703384,-0.3780523,0.32007116,0.45999622,0.5009258,-0.40542138,0.5386562,0.20869602,-0.19992469,0.38200822,0.14766221,0.30759218,-0.013778955,0.14111938,0.12415894,-0.054483935,0.15369721,0.62584084,0.31307375,0.5501335,-0.013956373,-0.20524162,0.43135574,-0.014095946,0.3380866,-0.058227226,-0.60181797,-0.057803545,-0.07980286,-0.06497584,0.54078364,0.12672934,0.26392868,-0.08347285,-0.15418823,0.08540637,0.12942187,-0.24985956,-1.2485657,0.14710024,0.14097604,0.9588874,0.2697194,-0.07885361,0.06465222,0.858636,-0.24216257,0.12132614,0.40044892,0.15691009,-0.4850333,0.6382863,-0.5741848,0.37908238,-0.24253017,-0.012711101,0.09565577,0.09883705,0.38826653,0.8458201,-0.3109834,-0.0637828,-0.19410071,-0.15655294,-0.04588075,-0.3181627,0.40400785,-0.3818341,-0.46976027,0.89688677,0.357416,0.3122698,-0.16584462,0.090926155,-0.22390395,-0.31329793,0.27020532,-0.03468635,-0.18419772,0.16230899,-0.55883205,-0.21426898,0.5609436,-0.16059996,0.044932716,-0.20283908,-0.20399342,-0.023600053,-0.22769131,-0.015062653,0.092989914,-0.85918707,0.16526125,-0.16646883,-0.5415322,0.18404509,-0.24733448,-0.015291413,0.20250705,-0.059351627,-0.07212827,0.21236636,0.32765678,0.80083156,-0.011238025,-0.30319977,-0.31546652,0.094430596,0.2047023,-0.26030207,0.18192007,-0.2173308,0.103771456,-0.57082343,0.67618,-0.1372856,-0.59909785,-0.013428312,-0.24056885,-0.21453881,0.6942854,0.041630488,-0.0570954,-0.03621919,-0.22153719,-0.3566834,0.1267843,-0.2539983,0.059497245,0.42180926,-0.42098287,-0.12403013,-0.27772805,-0.06397919,0.42385885,0.009496414,0.6312068,0.43455788,0.10696028,-0.37568888,-0.14676973,0.15572786,0.5713321,0.16401955,0.0024936704,-0.508929,-0.3306044,-0.3289851,0.5729147,-0.18127568,0.23949613,0.03573278,-0.44119194,0.89629143,0.018226244,1.3396757,0.104443155,-0.43012497,0.035371058,0.7096722,-0.17697014,-0.075459905,-0.48195928,1.0401723,0.40847743,-0.17931701,0.045378786,-0.44792175,-0.05083582,0.3084246,-0.38177893,0.009080978,-0.07869242,-0.46018043,-0.23714636,0.055949237,0.22115326,-0.16894454,-0.08475279,-0.02047848,0.32880783,0.042650342,0.4745272,-0.58613586,-0.18591467,0.24952716,0.09563686,-0.25627837,0.20009369,-0.3888454,0.36968553,-0.75649035,0.29176933,-0.46953204,0.22470954,-0.2531354,-0.47761536,0.24714044,0.06249129,0.60441613,-0.50352246,-0.48992297,-0.095641226,0.26233715,0.19129713,0.23971002,0.53578734,-0.20541224,0.109240994,0.030050324,0.5936056,1.4464746,-0.31922027,0.14546257,0.20558184,-0.52446866,-0.53790855,0.36604896,-0.30138117,0.04294997,-0.1788435,-0.44031274,-0.3772054,0.27813852,0.13412216,0.10087237,-0.12081254,-0.62859285,-0.21321939,0.2859199,-0.33840582,-0.29047742,-0.33323196,0.28407097,0.7054382,-0.23613097,-0.43613917,-0.059183512,0.37092832,-0.18143736,-0.3883753,-0.055483297,-0.14353393,0.34647655,0.006954122,-0.3201757,-0.26878738,0.13569736,-0.44059712,0.06584921,0.1455321,-0.43291503,-0.07036516,-0.036545042,0.13446634,0.79904616,-0.2744281,-0.41739866,-0.6029183,-0.5269913,-0.8419292,-0.6039537,-0.09168245,0.2859848,0.010658266,-0.37710956,-0.06472166,-0.21522999,-0.07415212,0.03680961,-0.65826637,0.3013263,0.177837,0.71191025,-0.4304803,-1.0987432,0.13200492,0.20555452,-0.060651045,-0.7100137,0.6579418,0.057173435,0.7337576,0.17484471,0.031667665,-0.1902021,-0.4387333,0.009437754,-0.3089,-0.20065968,-0.94207007,0.40937117 -207,0.38148507,-0.16403343,-0.56628686,-0.0935021,-0.5021137,-0.10930628,-0.08554264,0.560614,0.34076056,-0.24530534,-0.19358034,-0.022983974,-0.2985682,0.2114494,-0.12992388,-0.67579997,-0.072663955,0.4477023,-0.69406873,0.53505313,-0.31126478,0.04913594,-0.057179306,0.4290718,-0.031870246,0.071572594,-0.096556455,0.14764154,-0.030090652,-0.20897657,0.31033766,0.21371202,-0.9239525,0.48373273,-0.24903752,-0.27671087,-0.18126398,-0.6845118,-0.28067452,-0.8527512,0.28417876,-0.5527907,0.5644109,0.10744498,-0.34070495,-0.3046409,0.19782472,0.17216863,-0.14707188,-0.11642169,0.39971897,-0.1398815,-0.35983783,-0.015924508,-0.15617809,-0.14269668,-0.70747,0.034470882,-0.45820853,0.21739173,-0.09301155,0.2996399,-0.19035739,-0.09456446,-0.4113882,0.7839287,-0.46375915,0.1885426,0.22431412,0.14711998,0.2295596,-0.57405263,-0.107832216,-0.3538886,0.16987163,-0.04672109,-0.57150453,0.44603586,0.30848908,0.5587837,-0.03402631,-0.30057243,-0.27673152,0.20575537,0.14021243,0.391726,-0.34587938,-0.15663508,-0.14338753,-0.010964057,0.3213944,0.26966837,0.017705781,-0.44305107,0.1338631,-0.273153,-0.010493728,0.47635058,0.49983722,-0.09684685,-0.18513387,0.29465684,0.41836226,0.21387267,-0.013323751,0.1699099,0.13603117,-0.6620214,-0.33226484,0.31302407,-0.22612444,0.43611735,-0.19259387,-0.05436654,0.6518713,-0.12282142,-0.43237182,0.11261132,0.23224415,0.2518879,-0.30906856,-0.54322094,0.47669113,-0.48518226,0.19373713,-0.18084201,0.5426207,0.051020253,-1.0391036,0.19760355,-0.7565643,0.09996284,-0.0028050407,0.6279346,1.0509275,0.778928,0.41650257,0.8059679,-0.3058595,0.21520422,0.18726183,-0.091219634,0.11557527,-0.20500007,0.05873905,-0.44491225,-0.34004653,-0.41885507,-0.37900135,0.084193654,0.41915178,-0.5445495,-0.28014377,0.05370265,0.7346383,-0.2806591,-0.23476982,0.8819942,1.1625241,1.2266381,0.25115848,1.4799255,0.03566442,-0.11406441,0.069738016,-0.11462858,-0.9263435,0.22612526,0.19049063,-0.3018594,0.24072923,0.12938139,0.046659723,0.5327289,-0.71195215,-0.06671105,-0.123472475,0.37570545,-0.15285902,-0.070280194,-0.41188785,-0.42772505,0.039482024,0.03597556,-0.22002983,0.3937032,-0.11864621,0.37158403,0.12849024,0.9387278,0.09117483,0.13012443,0.117587395,0.17084683,0.10732401,-0.2684304,-0.3385131,0.2395411,0.20969701,0.04110624,-0.5967003,0.067582205,-0.33059165,-0.2457364,-0.26949483,-0.1618163,-0.05971111,-0.30197814,-0.345096,-0.42115366,-0.0060010445,-0.25793603,0.49168473,-2.141081,-0.11324267,0.035803784,0.3830283,-0.054784384,-0.26862705,-0.24727844,-0.5051117,0.41337326,0.2137172,0.5725154,-0.65167123,0.41179276,0.30729005,-0.7183131,-0.036503986,-0.8698736,-0.108072884,0.0884214,0.09573543,-0.08853919,0.031204028,-0.24425611,0.028545676,0.47267482,0.022870844,0.10937254,0.50720257,0.4371519,-0.020538889,0.37327355,-0.060647074,0.42042896,-0.50435597,-0.37774286,0.3233272,-0.43563727,0.3748984,0.07223683,-0.07621808,0.6348769,-0.6954947,-0.9210029,-0.71923465,-0.5263387,0.9991299,-0.22921439,-0.18418069,0.17837195,-0.62416637,-0.19405866,-0.028548243,0.64922106,-0.15202561,-0.046970066,-0.8271892,-0.28717962,0.14494146,0.5184375,-0.12254086,0.047799096,-0.41878936,0.6513295,-0.2559572,0.34306234,0.6426636,0.042861894,-0.6398906,-0.6738108,0.13278228,0.80735815,0.5456842,0.11644383,-0.24729644,-0.115608,-0.29052818,-0.009837595,-0.05403228,0.8517597,0.5592928,-0.30579168,0.075169295,0.4663347,-0.26786298,0.09003901,-0.20360284,-0.34450883,-0.33295125,0.0089197,0.6094962,0.8005609,0.018047772,0.38733646,-0.10400763,0.18157287,-0.00011255254,-0.4722594,0.39990455,1.0393215,-0.1764719,-0.23956423,0.78444237,0.41193935,-0.33213556,0.5125052,-0.44010332,-0.17039451,0.34569097,0.12757513,-0.4157189,-0.12761721,-0.38797104,0.18663901,-0.9073,0.52090716,-0.5051471,-0.8168682,-0.7979613,-0.016716236,-2.061126,0.19477202,-0.33389208,0.0017609055,-0.08131898,-0.21567431,0.27763864,-0.5530994,-0.827212,0.15681197,0.08909262,0.49934804,-0.20820111,0.1053926,-0.14345384,-0.42031842,-0.18116146,0.39631528,0.70723015,0.3006558,-0.0033137149,-0.4086934,-0.032561313,-0.281063,-0.353294,-0.22716756,-0.8073221,-0.59171253,-0.14741626,-0.95526373,-0.3325724,0.72001594,-0.52125835,-0.15566286,-0.19698097,-0.023828458,0.08139309,0.27412862,0.12931484,0.42750913,-0.027875386,-0.13071573,-0.41361457,-0.009680823,0.20284066,-0.014637343,0.17298488,0.4308077,-0.15728933,0.51206505,0.5680082,0.9231945,-0.15040445,1.0276965,0.55550456,-0.10879329,0.14328112,-0.24292308,-0.3322661,-0.7140287,-0.10441677,-0.23452897,-0.4683528,-0.36803588,0.254023,-0.45652235,-0.91880345,0.618834,-0.06788974,-0.12852322,0.23079894,0.11946089,0.30264872,-0.22163586,0.058218077,-0.34830818,-0.18498594,-0.39874098,-0.5902722,-0.656671,-0.6316295,-0.17446704,1.8166523,-0.08018537,0.12503968,0.30698967,-0.38983792,0.050795916,0.12668124,-0.15817569,0.17547627,0.42841384,0.26216373,-0.504347,0.089549996,0.038076185,0.027230626,-0.5698057,0.379483,0.86533254,-0.7376182,0.8368851,0.3237286,-0.083450936,-0.24885374,-0.83067954,-0.3841049,0.12121479,-0.22186762,0.55254537,0.37082988,-0.7399935,0.4171858,0.103832595,-0.39425784,-0.919023,0.47554156,-0.06171223,-0.048393294,0.13890827,0.43853852,0.021652712,-0.058049012,-0.16320866,0.5952897,-0.10721955,0.3420519,-0.07028243,-0.18111481,0.019191742,-0.41096982,-0.12446635,-0.8353842,0.1335107,-0.573354,-0.4876517,0.28700525,0.07291264,-0.09024886,0.24093547,0.50980383,0.43626326,-0.14046277,0.14209732,-0.29083708,-0.4688473,0.17256528,0.57283086,0.49318168,-0.3737898,0.57889783,0.03608865,0.0062706093,-0.33953813,0.15270714,0.31228474,-0.070570305,0.2794437,0.07784086,-0.07618472,0.020743402,0.9301016,0.11266823,0.39658755,-0.0001866384,-0.08585489,0.42951086,-0.032176927,0.3645252,-0.25441638,-0.5010073,0.095325775,-0.15142614,0.05877993,0.45690736,-0.013145796,0.16583626,-0.29998407,-0.29037923,0.05126447,0.18743557,0.23997688,-1.575201,0.44241562,0.08712968,0.6842595,0.70524734,0.15170978,0.025901074,0.7082427,-0.25820965,0.023247588,0.64604205,0.008734957,-0.25000712,0.45484307,-0.703797,0.5507443,-0.15324682,0.043142773,0.21880946,0.040613744,0.43612936,0.77236366,-0.080004595,0.12118824,0.035796225,-0.15766379,0.15821485,-0.26819485,0.25322434,-0.53762776,-0.44252107,0.79605204,0.5105621,0.331026,-0.30288947,0.017200138,0.07936413,-0.26833475,0.32513642,-0.0769414,-0.36167058,-0.07769528,-0.5260502,-0.09401669,0.7051011,-0.25401384,-0.0011009953,0.2602474,-0.078802325,0.27652708,-0.018539883,0.0100103235,-0.14351235,-0.9851116,-0.3233653,-0.64887637,-0.14239532,0.26982424,-0.50251174,0.019526029,0.13196093,0.23104735,-0.51740384,0.6007393,0.23501247,0.7008597,0.06848349,0.059167694,0.21041924,0.30425647,0.1994935,-0.20014256,0.12538098,-0.28145412,0.15453841,-0.59261686,0.56242794,-0.078715585,-0.42639494,-0.08816468,0.06481204,-0.09849275,0.4390252,-0.06647286,-0.16007967,0.06456887,-0.20920776,-0.29473355,-0.16731097,-0.26708066,0.31063703,0.1912828,0.11638225,-0.16533722,-0.115410835,-0.23947452,0.4937339,0.1892717,0.21590701,0.34641275,0.1516809,-0.5781553,0.07733124,-0.013182854,0.62240624,0.014810541,-0.21678708,-0.3682414,0.18508501,-0.18516959,0.31665742,-0.10027964,0.3670592,0.003093137,-0.48457956,0.9545923,0.22234932,1.2803477,-0.06559859,-0.35826316,-0.04704149,0.463014,-0.15482189,-0.15489559,-0.2752076,0.8515039,0.6493351,-0.22552441,-0.17795236,-0.38866755,-0.21322113,0.15292431,-0.15706943,-0.2733312,-0.08651,-0.7122141,0.057173252,0.24038324,0.23497868,-0.006705142,-0.19032536,-0.031878185,0.08277114,-0.107983716,0.09592509,-0.4026191,0.20397097,0.31264615,0.59689933,0.065668344,0.2038628,-0.21175328,0.40647122,-0.7684319,0.41763544,-0.36725938,0.101849645,-0.23503986,-0.28326824,0.043445673,0.08886793,0.26216888,-0.14220208,-0.1392665,-0.3209068,0.7440802,0.22456041,0.23582739,0.9352138,-0.26077938,-0.043343157,-0.026464462,0.4890684,0.87294096,-0.38013658,-0.20614992,0.055408403,-0.19725217,-0.46482122,0.4124399,-0.66287035,-0.060235653,-0.12801649,-0.20624839,-0.4944623,-0.012784478,0.19146647,0.19710898,-0.17553288,-0.75195104,0.25500843,0.43573388,-0.04497522,-0.1181539,-0.33037177,0.306266,0.8557444,-0.11596315,-0.4994601,-0.020242237,0.2624613,-0.20747961,-0.39063913,0.056503892,-0.6279978,0.1369218,-0.045974992,-0.43670645,-0.01077199,0.017927462,-0.47200254,0.042190325,0.2946822,-0.23486833,0.08091027,-0.12474439,0.0060378965,0.9807586,-0.053344704,0.37268278,-0.23311344,-0.669113,-0.99106634,0.08195592,0.12191666,0.47270393,-0.058089558,-0.6768582,-0.14659129,-0.111845754,-0.2678076,0.07864442,-0.5258486,0.47352713,0.22393483,0.3775569,-0.19222169,-0.8748722,0.09550223,0.2245631,-0.01627804,-0.32209295,0.45268822,0.07577453,1.0556295,0.070367545,0.03722987,-0.12984586,-0.5901698,0.312698,-0.27342656,-0.093762755,-0.39440182,-0.14659575 -208,0.48094773,-0.23860158,-0.30013043,-0.025000094,-0.2388775,0.20138207,-0.14960858,0.5479269,0.17246254,-0.35953978,-0.0719073,-0.21136868,-0.023702033,0.30317888,-0.08766325,-0.39100152,-0.09634764,0.25131783,-0.5374326,0.49428004,-0.4381542,0.2961766,-0.13540448,0.453493,0.14617914,0.2526216,-0.044988804,-0.07596849,-0.26935196,-0.11219856,-0.09601094,0.3170159,-0.6010143,0.10553435,-0.12432642,-0.31617945,-0.05107995,-0.5480808,-0.31004798,-0.7437371,0.30880618,-0.80095994,0.4277609,-0.020778785,-0.2715774,0.4409892,-0.06892544,0.33029297,-0.257792,-0.01838027,0.18109357,-0.15719628,0.02845313,-0.19886893,-0.09228996,-0.092127405,-0.521562,0.09713532,-0.32982334,-0.24963644,-0.33011198,0.06924977,-0.33210126,-0.025673907,-0.0489626,0.2832284,-0.5038614,0.08793751,0.061591223,-0.054312073,0.11160971,-0.525059,-0.110816374,-0.13401173,0.27401885,-0.20301226,-0.13378093,0.4100634,0.19858053,0.52459776,-0.099893466,-0.11313507,-0.3705387,0.043928362,0.04549007,0.5433246,-0.16711159,-0.46042344,-0.060904622,0.023330627,0.23489857,0.0779556,0.072785154,-0.19717532,-0.2994115,0.002852857,-0.10263932,0.26573864,0.45566952,-0.35185927,-0.30679816,0.3221241,0.5475408,0.17517619,-0.041652378,0.030668724,0.014659807,-0.50608313,-0.12552293,0.093766764,-0.16917557,0.42226368,-0.061186876,0.24859342,0.7056362,-0.2010166,-0.008729614,-0.045947466,0.0786562,-0.009681519,-0.21832275,-0.27442467,0.2199578,-0.325982,0.20469172,-0.18420048,0.73749834,0.17569482,-0.84804547,0.3549836,-0.47045425,0.14348112,0.009528004,0.5478258,0.68940973,0.47292492,0.48182374,0.68330216,-0.38417798,0.126885,-0.15724365,-0.23388878,-0.027537977,-0.22809248,-0.12497527,-0.48905334,0.106436186,-0.022950608,-0.18771689,0.14449352,0.21989608,-0.6358038,0.08375803,0.12252452,0.7791818,-0.23975328,-0.013994671,0.80068797,0.9106835,0.9057025,0.039287146,1.047061,0.21953063,-0.23737323,0.30064726,-0.37900352,-0.6766411,0.18340303,0.31855565,0.04154427,0.17215186,0.1956718,-0.09437573,0.40423968,-0.47201282,-0.0045509897,-0.14818458,0.08608641,0.16867884,-0.093144834,-0.32565454,-0.2675106,-0.13035208,-0.005152218,0.0012831539,0.3271709,-0.28360665,0.42339206,-0.009256732,1.9210007,0.050869644,0.09018035,0.08548267,0.5263887,0.11223605,-0.14386383,-0.14696935,0.3942846,0.36283892,0.0014436366,-0.53753114,0.10559409,-0.13927032,-0.468484,0.058781084,-0.3025853,-0.111648686,-0.064353,-0.4037661,-0.23631257,-0.13838907,-0.23665997,0.4337395,-2.7938614,-0.09615103,0.02402972,0.35522187,-0.22123662,-0.35205954,-0.041017845,-0.4453658,0.31502807,0.27382284,0.4632851,-0.70432156,0.25081664,0.28351146,-0.5179935,-0.15955025,-0.633946,-0.111667044,0.08010071,0.3647671,-0.012970487,-0.0574525,0.025479328,-0.007885039,0.49419594,-0.04814195,0.098732434,0.321114,0.40711433,0.111377776,0.41816473,-0.022889309,0.45121205,-0.21553366,-0.24387647,0.29852948,-0.39618775,0.22508521,0.055622347,0.12959792,0.3959161,-0.46136898,-0.8550121,-0.6719191,-0.10571006,1.1787012,-0.14889845,-0.45674002,0.28352237,-0.30114383,-0.20771942,-0.16014084,0.41374975,-0.053192157,-0.25885576,-0.8042494,-0.09001459,-0.09836838,0.29667988,0.037611604,0.014367102,-0.35976732,0.61761206,-0.13207678,0.41947138,0.34658736,0.12007624,-0.15594083,-0.4063189,0.08571389,0.84745693,0.3057388,0.1803968,-0.18875402,-0.26144722,-0.2715176,-0.12214848,0.053138066,0.43100202,0.5858866,0.019739553,0.14352542,0.22452118,-0.0734298,-0.08740714,-0.2785325,-0.09442474,-0.098788075,0.06006341,0.5452841,0.5615978,-0.18495066,0.47277117,-0.014453169,0.07445637,-0.12541766,-0.4169452,0.5370603,0.79615366,-0.08888079,-0.17831889,0.44286335,0.46064216,-0.20240894,0.4127709,-0.6001991,-0.28506887,0.50375694,-0.24971306,-0.34693757,0.2549107,-0.21199606,0.1465381,-0.7871322,0.269803,-0.15116552,-0.47953755,-0.59310514,0.008776873,-2.9608345,0.0712704,-0.15206236,-0.3900951,-0.02265054,-0.17443383,0.048663076,-0.53543925,-0.43153778,0.08035851,0.13623895,0.71483815,-0.08552752,0.033266865,-0.23311338,-0.29786485,-0.39870435,0.036090072,0.118839756,0.40114307,0.07056351,-0.4915855,-0.08279076,-0.2128294,-0.3793412,0.0017565899,-0.5409647,-0.43600845,-0.18397948,-0.47406176,-0.2700003,0.6176975,-0.29015857,0.07613603,-0.2720217,-0.10744342,-0.13355437,0.35825497,0.21249133,0.12250224,0.02824933,-0.13614096,0.11404399,-0.2840954,0.34605017,0.048743602,0.20620245,0.5218863,-0.18870421,0.15577763,0.4874923,0.63913345,-0.09557979,0.7788463,0.49608177,-0.075491354,0.3004126,-0.36603305,-0.17775866,-0.45002967,-0.25907516,-0.059319034,-0.43998283,-0.47020912,-0.1074462,-0.40103367,-0.7558819,0.4811361,-0.13812125,0.097354695,-0.030984692,0.2858436,0.5456389,-0.20007007,-0.007920565,-0.16479072,0.02300191,-0.4375947,-0.30070135,-0.5918128,-0.4063639,0.1022207,1.0313703,-0.10810758,0.005298279,0.11663644,-0.23054597,-0.05556495,0.06671918,-0.07371173,0.16090776,0.37673223,-0.109295756,-0.66639775,0.47527367,0.0016879104,-0.21052274,-0.51916283,0.20099446,0.44356537,-0.55397445,0.47064006,0.114350654,0.030210592,-0.057996422,-0.44381747,-0.18627317,-0.09344833,-0.17666966,0.30823958,0.115796365,-0.6859392,0.44690967,0.3742014,-0.2832114,-0.71802115,0.26316136,-0.024008185,-0.4398845,0.074158385,0.16764134,0.05622113,0.027771134,-0.26449898,0.20590925,-0.49305677,0.2894059,0.26324755,-0.043077864,0.27359903,-0.25356507,-0.23246315,-0.66338176,0.05800199,-0.3758129,-0.29184616,0.20877801,0.18722878,0.09831609,0.14068234,0.10827011,0.40214884,-0.27669168,0.019895103,-0.09360536,-0.10176037,0.20251402,0.43817374,0.4450103,-0.43167484,0.5520883,0.05136137,-0.10676138,-0.08094059,0.030429471,0.40207392,0.07882586,0.19181578,-0.0062134415,-0.3335752,0.25392216,0.6874475,0.30236518,0.50111425,-0.10641861,-0.21216688,0.34093642,0.17292279,0.25054237,0.06400442,-0.38732725,0.14262526,-0.19678031,0.09864897,0.42128026,0.16793221,0.29949665,-0.054728962,-0.27458635,0.076192714,0.1965721,-0.110075474,-1.224906,0.24111271,0.1329777,0.86651874,0.44192693,0.02406301,0.21003477,0.7354872,-0.28564095,0.08553866,0.2730211,-0.071232036,-0.63270485,0.5292305,-0.7128775,0.48098224,0.031066163,0.028601445,0.09655996,-0.042231143,0.44019043,0.5846075,-0.1688681,-0.03953173,-0.012647884,-0.24722663,0.05414713,-0.32365775,0.08331666,-0.618399,-0.18651219,0.6361207,0.43773395,0.31131798,-0.1954574,0.09309144,-0.0056514665,-0.10041557,0.09747506,0.16410851,0.15269972,-0.030602295,-0.5080737,-0.1501116,0.5513681,-0.16528478,0.13016973,-0.007828962,-0.2669562,0.24128127,-0.18802693,-0.26035202,-0.15511036,-0.625161,0.05433523,-0.2555739,-0.30671242,0.40453735,0.120526254,0.38404596,0.22809967,0.063465565,-0.3733701,0.41239965,0.26081622,0.8423704,0.022582572,-0.18538882,-0.31288368,0.26741102,0.18942356,-0.14250967,-0.13903265,-0.11482568,-0.09246783,-0.49182892,0.36969638,-0.096992396,-0.24392799,0.10061989,-0.09183417,0.09992617,0.5141251,-0.0814606,-0.09941515,-0.096598946,-0.22373052,-0.4326509,-0.1115736,-0.14933652,0.26528704,0.29210028,-0.13864551,-0.108344905,0.07501025,-0.09140473,0.5536159,-0.059416655,0.23292978,0.20892583,0.09812011,-0.3691783,-0.091804296,-0.009101048,0.44699264,-0.029323041,-0.09736256,-0.32143208,-0.39759883,-0.40090612,0.13745178,-0.1773397,0.45271242,0.11723212,-0.3655646,0.82917917,0.022415232,1.0378525,0.04935099,-0.27882168,0.24663676,0.51421773,-0.034264803,-0.03347092,-0.33336172,0.77713156,0.4986314,-0.09357107,-0.02414795,-0.2115663,-0.11721895,0.26570675,-0.18895034,-0.067024775,-0.0066356696,-0.53537995,-0.2898415,0.2689854,0.2593329,0.24782525,-0.1248029,-0.010207702,0.20709014,0.010166745,0.19115588,-0.2486355,-0.23080109,0.27071327,0.15609875,0.1328617,0.034350395,-0.45809066,0.38410532,-0.50357366,0.051429264,-0.13314939,0.19799206,-0.18858284,-0.25259447,0.21101749,0.14607246,0.300871,-0.3177878,-0.31536537,-0.34560037,0.4385128,0.06675729,0.17119418,0.43717423,-0.30342695,0.15876529,-0.003624227,0.35703045,0.84765756,-0.20999296,0.061796766,0.3976556,-0.23892179,-0.51829875,0.44637352,-0.20217413,0.14312439,-0.10048193,-0.09926212,-0.5566832,0.2306734,0.22330955,0.13826858,-0.04699129,-0.5674144,-0.25463885,0.35977653,-0.25240508,-0.23900343,-0.37025124,0.1557414,0.6975266,-0.20367672,-0.3816253,0.18559685,0.22619551,-0.20831965,-0.46149313,-0.068967365,-0.39745688,0.27468917,-0.025485106,-0.3748749,-0.07442251,0.06785735,-0.37016144,-0.019399107,0.09899312,-0.35495645,0.045038838,-0.3791277,0.09237096,0.9704188,-0.20972928,0.27767873,-0.6030212,-0.3539393,-0.9620386,-0.30873048,0.56180006,0.19040439,-0.006753806,-0.6287915,0.070944615,-0.1205737,-0.36100817,-0.08035524,-0.47389075,0.4470423,0.15231833,0.18415347,-0.104631424,-0.6343031,0.13140526,0.058737308,-0.17342974,-0.5047136,0.5090767,0.06607043,0.83702415,0.121131726,0.102602154,0.2501454,-0.5236242,0.07675335,-0.23239379,-0.16120094,-0.5660917,0.051340446 -209,0.5166831,-0.197674,-0.45583352,-0.2714886,-0.15386327,0.1564386,-0.19201078,0.6088814,0.08774691,-0.49703678,-0.1974895,-0.083018675,0.010965894,0.1619749,-0.16216318,-0.410047,-0.030816708,0.14929064,-0.4425927,0.5257484,-0.5408148,0.24777715,0.022337874,0.42543745,0.21790278,0.13498141,-0.070985965,0.06292809,0.02206598,-0.12837999,0.00353969,0.3074193,-0.64660084,0.069323935,-0.2634762,-0.48013762,-0.21981438,-0.34015378,-0.39921302,-0.77372044,0.37288824,-0.9750245,0.45140433,0.08851508,-0.38606265,0.50543797,0.050675076,0.06476377,-0.2744526,-0.067180805,0.18426538,0.02142099,-0.036781516,-0.090062134,-0.0848412,-0.38436726,-0.55906045,0.05841765,-0.31626695,0.08811305,-0.351194,0.06001955,-0.33227155,-0.016003622,-0.022186544,0.30735472,-0.47259936,0.12738289,0.08013679,-0.0016425401,0.32520434,-0.6012966,-0.22512843,-0.17237656,0.26003784,-0.3230693,-0.3595803,0.2350864,0.47923392,0.48466226,-0.20929305,-0.06899541,-0.27411306,0.055406477,0.09391109,0.4453135,-0.22560754,-0.42423862,-0.23401639,-0.19920704,0.203971,0.2059162,0.19612142,-0.16802083,-0.15480173,0.045139723,-0.30692324,0.40298194,0.47318077,-0.31371385,-0.30899626,0.2829674,0.47415286,0.28071183,-0.1534694,0.058093064,0.015299943,-0.5430306,-0.080437385,0.056392066,-0.21454433,0.59988153,-0.27452415,0.1894492,0.5861845,-0.11973464,-0.014478858,0.1937797,0.0365447,-0.15828136,-0.41504547,-0.24629661,0.30572513,-0.56425995,0.29698446,-0.25528154,0.6220526,0.109110214,-0.7053555,0.32250407,-0.55631787,0.16430584,-0.16075245,0.45236015,0.8683786,0.37350193,0.31397614,0.6443781,-0.4083707,-0.17170143,-0.032153986,-0.1316924,0.14359483,-0.19260442,-0.071507335,-0.52264607,0.06555573,-0.0014931826,0.011942565,0.10274904,0.74012935,-0.40602937,-0.13409996,0.2186232,0.6924478,-0.32543817,-0.043687906,0.9276909,1.042758,1.1220547,0.22272635,1.1541958,0.20100018,-0.22600053,0.29511538,-0.08605312,-0.82182056,0.26299495,0.29007548,0.35856006,0.11092679,0.071175136,-0.057332166,0.3976931,-0.41178432,0.056703985,-0.186426,0.1259109,0.17466919,-0.078356765,-0.27635634,-0.40294117,-0.046854835,0.21372247,0.08808299,0.20815697,-0.15682487,0.3897961,0.14360367,1.4345146,-0.009172448,-0.046430357,0.021710223,0.41760498,0.24073829,-0.2477713,-0.091094315,0.27791238,0.43609434,-0.0240833,-0.6700025,0.14137135,-0.10450121,-0.5087784,-0.13666351,-0.41558293,-0.25796202,0.009950412,-0.5610992,-0.22179832,-0.11374976,-0.3137692,0.4308657,-2.7722325,-0.27898553,-0.016468413,0.35710615,-0.10141075,-0.36198428,-0.206026,-0.48581514,0.5533982,0.33693415,0.44235054,-0.68447334,0.2602274,0.3977857,-0.5292264,-0.091759086,-0.63811195,-0.28250533,-0.049464643,0.15078287,0.07856243,-0.03739358,0.18060623,0.1873511,0.535665,0.03574378,0.21554421,0.26456448,0.44888455,-0.077153586,0.48203734,-0.023927795,0.50068444,-0.23777425,-0.24491212,0.3971185,-0.37736556,0.25765982,-0.34102294,0.12002629,0.57247275,-0.5371688,-0.93736106,-0.7643795,-0.22118463,1.0917922,-0.18921673,-0.39693403,0.17447151,-0.594745,-0.18653785,-0.11166946,0.55886334,-0.18898296,-0.11172695,-0.9122701,-0.05611309,-0.0423289,0.0112728905,-0.07965133,-0.041090924,-0.42383024,0.81462914,-0.041790985,0.5569677,0.335347,0.08702988,-0.27554813,-0.46168095,0.100211635,0.60875195,0.38815048,0.15494789,-0.42585388,-0.16819882,-0.4352971,-0.008747523,0.18265931,0.43267563,0.50273323,-0.07736171,0.24456522,0.22754875,0.033647884,0.0082366215,-0.21009561,-0.107762575,-0.21616848,0.10117589,0.7030557,0.6612659,-0.1516319,0.18734398,-0.11996955,0.11078715,-0.17171533,-0.524484,0.4944691,1.1356484,-0.08176337,-0.26754743,0.51405984,0.6192169,-0.18530692,0.4111724,-0.54226196,-0.29196268,0.25549728,-0.18968882,-0.30190417,0.1499207,-0.45395353,0.1332982,-0.85776,0.1355628,-0.30149814,-0.37824973,-0.597817,-0.12518853,-3.1715894,0.15251192,-0.1779964,-0.16759038,-0.24539863,-0.4275167,0.36274794,-0.48525524,-0.6978821,0.09714295,-0.014490762,0.7218136,-0.032301396,0.08414853,-0.23174092,-0.25298256,-0.3274409,0.045633394,0.163999,0.43842125,-0.067709394,-0.3323771,-0.06022862,-0.21212682,-0.3730612,-0.07577356,-0.4383934,-0.461304,-0.027078155,-0.39180905,-0.37692896,0.4745974,-0.31635052,0.1023088,-0.1326691,-0.13904569,-0.12241965,0.3775498,0.149616,0.20562495,-0.037056204,-0.050343685,0.08644293,-0.2651728,0.216609,0.025405064,0.012994351,0.43524984,-0.16620626,0.19697817,0.51220423,0.6404918,-0.14342412,1.0506028,0.50174063,0.11680973,0.30057663,-0.25561592,-0.22685197,-0.63011396,-0.12679923,-0.09846075,-0.53872854,-0.44359583,0.06642272,-0.43757495,-0.7914023,0.4007062,-0.0083988095,0.11623667,0.13595508,0.18120895,0.46260494,-0.1363516,0.058578152,-0.13706595,-0.068530396,-0.6097668,-0.3661725,-0.7176165,-0.5157261,-0.03575725,0.9128054,-0.10088291,-0.095077865,0.102855965,-0.2396485,0.12945084,0.24947669,-0.026867354,0.04350436,0.4019003,0.018619657,-0.5351768,0.43315288,0.06218179,-0.29194897,-0.6057325,0.19045623,0.4913158,-0.6176831,0.6281236,0.4117875,0.043187957,-0.16683818,-0.68227535,-0.17906524,-0.1551785,-0.30261287,0.5048354,0.3119327,-0.9185051,0.47062013,0.4167039,-0.09925691,-0.7475968,0.6598233,-0.08524169,-0.19826838,-0.080098346,0.27291438,0.12672387,0.032959152,-0.063837685,0.34521493,-0.50522894,0.27946788,0.18685447,-0.03568272,0.39963955,-0.24979655,0.10569478,-0.59339684,-0.10608267,-0.4961246,-0.27012548,0.13748546,0.036430605,0.13658795,0.2840304,0.18191887,0.35886732,-0.23410831,0.09404834,-0.1784434,-0.23866679,0.11759067,0.3707252,0.6083764,-0.39013085,0.6771328,0.013203687,-0.06208714,0.12378864,0.22249807,0.37376216,0.11001627,0.43096378,-0.017721236,-0.19986565,0.14372976,0.9096452,0.26154473,0.4409118,0.038102593,-0.17770688,0.234107,0.14552483,0.3652287,-0.1478457,-0.5055173,0.063399754,-0.34916258,0.17605035,0.4400801,0.09658366,0.22012755,-0.12231069,-0.25332496,-0.045762923,0.17481096,0.019381497,-1.4147089,0.3895304,0.23313698,0.9704078,0.6186,-0.16749428,0.10677492,0.553288,-0.31147024,0.16220692,0.36410686,0.061904483,-0.44220868,0.44997725,-0.8401466,0.4420646,-0.117435984,0.010261512,0.017626464,-0.11805455,0.4967982,0.6790838,-0.12597084,0.15117475,0.16092913,-0.4206285,0.31996197,-0.47776613,0.029755037,-0.46444267,-0.04104003,0.83276683,0.56920165,0.35207444,-0.2969475,-0.0004952167,0.014507145,-0.13550498,0.01279839,0.09479062,0.10893845,-0.18092921,-0.7101218,-0.13970447,0.4844877,0.06931196,0.2741335,0.07963883,-0.36083913,0.2756412,-0.13338406,-0.0010657395,-0.088206224,-0.77488613,-0.12406138,-0.38351914,-0.39507368,0.5367932,-0.1058945,0.22926642,0.3557027,0.055920072,-0.23501883,0.2132874,-0.07069627,0.70730793,-0.020633025,-0.10430844,-0.50402194,0.13250072,0.27251008,-0.17933282,-0.19106998,-0.21135817,0.100969926,-0.35093012,0.5678895,-0.05875845,-0.22457601,0.17577672,-0.017604634,0.08595795,0.6417486,-0.19918048,-0.19224904,0.016667988,-0.097218044,-0.35828286,-0.12159586,-0.124348916,0.28243628,0.1566094,0.00815977,-0.11420192,-0.095897265,-0.044833098,0.43169394,0.0716206,0.46964136,0.35230634,0.12748556,-0.38318732,-0.10637413,0.31010917,0.5866403,-0.15488067,-0.22938831,-0.31392995,-0.48907274,-0.27899975,0.3593693,-0.077019945,0.41742688,0.093087435,-0.11116964,0.6459624,-0.062157642,0.7989122,0.14386462,-0.42976686,0.22670822,0.49514195,-0.055223916,-0.20651881,-0.22519806,0.6282421,0.43080625,-0.16060375,-0.23910482,-0.18859304,0.119992316,0.0736308,-0.19015343,-0.08666147,-0.10068749,-0.784085,-0.16351727,0.12486539,0.29656538,0.19828211,-0.13984807,0.05746889,0.19862786,-0.044184346,0.30164936,-0.47050974,-0.19178568,0.3564624,0.28596595,-0.14305992,0.07047294,-0.277849,0.30743244,-0.34981266,-0.102239266,-0.33355215,0.18224396,-0.27967793,-0.28616908,0.18148422,0.119756386,0.20682034,-0.15427348,-0.30722398,-0.35829452,0.45720387,0.12780945,0.17706625,0.44141027,-0.21806832,0.11481727,0.1859756,0.42339712,0.9707624,-0.16026123,-0.057613578,0.22219324,-0.39971823,-0.5471607,0.42602563,-0.42047808,0.34475046,0.115002505,-0.06898565,-0.5381945,0.2153066,0.21054517,0.100664906,0.1618449,-0.7660045,-0.19330049,0.29587156,-0.26001367,-0.059945304,-0.36299723,-0.06283042,0.5538613,-0.16080835,-0.14208426,0.117730394,0.32837096,-0.2324836,-0.6157785,0.14420497,-0.5234307,0.37558052,0.026360145,-0.3586579,0.0620658,0.16573414,-0.43179664,0.23228595,0.095481925,-0.31309244,0.07301719,-0.51828355,0.16786547,1.0146847,-0.2500007,0.24683043,-0.3428247,-0.5385999,-0.83520514,-0.29342058,0.46899748,0.21934067,0.049631294,-0.63807344,-0.052770235,0.03004642,-0.13844682,-0.0968654,-0.36383343,0.5708831,0.14857507,0.33393297,0.033326294,-0.64485806,0.083291784,0.031928334,-0.237482,-0.42445108,0.6012672,-0.0242561,0.79982656,0.14344785,0.113484204,0.1643076,-0.5202685,0.021640416,-0.17935468,-0.0713818,-0.6009155,-0.041665077 -210,0.4692182,-0.15126151,-0.2879655,-0.19129989,-0.2817441,0.07484869,-0.08445683,0.25939167,0.28944683,-0.2962572,-0.14814848,-0.32371014,3.988009e-05,0.3393238,-0.1998523,-0.7077353,-0.10560738,0.029046072,-0.67465854,0.38618386,-0.5065337,0.34948397,0.1989065,0.43884298,0.13469759,0.12942328,0.3122273,-0.031582076,-0.06805702,-0.06334999,-0.22218381,0.12549919,-0.7455302,0.08282064,-0.0179835,-0.20310394,-0.21924551,-0.4305693,-0.4285761,-0.7095928,0.473327,-0.97187245,0.47098827,-0.16473047,-0.2984408,0.05928543,0.11723181,0.25260606,-0.17870876,-0.0487394,0.21044111,0.0070486804,0.076057404,-0.022851877,-0.25905547,-0.46431792,-0.5510334,0.102001436,-0.4233192,-0.17794129,-0.1949146,0.2633137,-0.2712339,0.086065836,-0.13985915,0.47709432,-0.2667828,0.089960486,0.22724012,-0.24700134,0.36124516,-0.5862059,-0.17961222,-0.14098272,0.09842922,-0.04257135,-0.25777876,0.21463236,0.46748763,0.40151146,-0.118470006,-0.17973208,-0.18967764,0.07420229,0.11465342,0.35214835,-0.08818192,-0.42390364,-0.26394895,0.0057744337,0.27794585,0.12631956,0.26826817,-0.4238615,0.08619371,0.07209378,-0.14052805,0.44562736,0.59466106,-0.105497964,-0.37317255,0.28881967,0.2859655,0.23601294,-0.092502944,0.002853843,-0.019784676,-0.5461273,-0.10265077,0.17639494,-0.1346452,0.6386148,-0.16117543,0.29726207,0.7367413,-0.054988716,0.17904687,-0.14901659,-0.092427365,-0.20699804,-0.12892406,-0.041326173,-0.040911045,-0.42149228,-0.005229354,-0.25193974,0.70641243,0.19584288,-0.84343845,0.39814594,-0.5199574,0.24921972,-0.09094617,0.49438703,0.8399864,0.34735987,0.15361309,0.847626,-0.6427988,-0.0060018804,0.14967027,-0.49643564,0.1948519,-0.34238088,0.100830466,-0.5456099,-0.21543679,0.2194362,-0.04380101,0.022998022,0.44201294,-0.43514436,-0.0069326963,-0.19621634,0.7563267,-0.27169067,-0.077529564,0.8884417,1.0522996,1.0091364,0.24552242,1.4729917,0.35603106,-0.101451226,0.35050157,-0.2951392,-0.7760446,0.28760785,0.30738664,-0.2532558,0.44862592,-0.03369107,-0.051216938,0.28651226,-0.24296631,0.07727598,-0.12759386,0.16123417,0.1700091,-0.19698414,-0.22884156,-0.27778453,0.151661,0.13035382,0.083438925,0.14632195,-0.13953026,0.45797715,0.11858865,1.3216622,0.012154171,0.016605474,0.014846722,0.3927154,0.08484897,-0.18446445,-0.024354119,0.21646637,0.46020496,0.12674221,-0.5337619,0.12756455,-0.23011857,-0.47414553,-0.21702102,-0.2675649,-0.22127149,-0.0040431437,-0.32168415,-0.23208156,0.050836615,-0.41534182,0.4508097,-2.457977,-0.16905585,-0.25864962,0.40441763,-0.21186827,-0.18594892,-0.1332112,-0.52324396,0.3118884,0.6053275,0.26578444,-0.7971679,0.22054657,0.25252402,-0.43704638,-0.21597226,-0.7118807,0.034125272,0.038172044,0.43552145,0.027294952,-0.08788026,0.036572695,0.22277474,0.5551199,0.25090423,-0.1419058,0.18201467,0.61102957,0.01812965,0.49457985,-0.008365576,0.42873663,0.02211269,-0.025291543,0.5042498,-0.49895513,0.20509934,0.11316304,0.1648868,0.49866676,-0.43764466,-0.70830715,-0.79553753,-0.5128994,1.2920501,-0.2650935,-0.40640238,0.23150781,-0.15556327,-0.31481007,-0.08705803,0.7594529,-0.2367428,-0.006934496,-0.77594566,-0.08272943,0.032062773,0.24602129,-0.18070933,0.0748666,-0.38261622,0.8008626,-0.11691423,0.39129984,0.25321463,0.14247242,-0.32017425,-0.5986729,0.10874491,0.8221239,0.35244545,0.0763476,-0.17909224,-0.043466635,-0.39428207,-0.26882437,0.07925472,0.67341673,0.6274785,0.013858325,0.11562058,0.2615027,-0.15954575,0.04907731,-0.16974145,-0.23922132,-0.054871604,-0.027349569,0.6128362,0.79167217,-0.32144216,0.36186054,-0.2551832,0.14624995,-0.12127287,-0.45407847,0.6307484,0.97831315,-0.22172032,-0.29955056,0.35503995,0.35065684,-0.48197585,0.39477363,-0.45432875,-0.27675003,0.501949,-0.03582336,-0.53494054,0.23015748,-0.2836239,0.055319443,-0.87534374,0.43384597,-0.10517417,-0.45312506,-0.63221484,-0.13724683,-3.450203,0.13319525,-0.15086296,-0.28462192,-0.2524904,-0.181594,0.35909462,-0.5764867,-0.57148796,0.032248277,0.009426688,0.50315166,-0.06845225,0.20931944,-0.2391945,-0.08119499,-0.3569454,0.16602851,0.12842754,0.31225622,0.09160225,-0.24334778,0.07699507,-0.33668762,-0.5236653,-0.0743124,-0.5294723,-0.78271234,-0.13726388,-0.43192673,-0.30993143,0.6725844,-0.3997436,-0.08313378,-0.28701484,-0.13640653,-0.20730409,0.5696728,0.032864764,0.05110242,0.047607407,-0.017228732,-0.16722092,-0.2674811,0.36209363,0.11624189,0.26642525,0.44456258,-0.25942644,0.38745007,0.4981267,0.6777044,-0.021550976,0.6603353,0.280494,-0.0895184,0.36083874,-0.24626628,-0.18284185,-0.5326873,-0.20596933,0.077152856,-0.39554217,-0.42698243,-0.24841148,-0.3474889,-0.7832312,0.19956191,-0.12391749,0.30732638,-0.040634137,0.115511164,0.39385203,-0.013786004,0.21128358,-0.07189399,-0.1863955,-0.5715102,-0.48166865,-0.5615117,-0.71019226,0.13716021,1.0370013,0.10321458,-0.21624176,-0.005649195,-0.40263933,0.06932657,-0.15045819,0.09242083,0.14835018,0.18199466,-0.15487258,-0.8301507,0.44234136,-0.09666462,-0.07856459,-0.6326328,-0.0065057073,0.8166592,-0.5553943,0.5473661,0.28630832,0.09272477,-0.062057927,-0.42905095,-0.2597915,0.0558296,-0.16483012,0.5221275,0.27851826,-0.46868816,0.33602884,0.17935716,-0.059496615,-0.55857384,0.47468847,0.03145617,-0.12239301,0.004265235,0.25329557,-0.17955726,-0.043570545,-0.09629713,0.19216159,-0.4636268,0.18969965,0.2639287,0.15903912,0.5446277,0.12111168,-0.117878124,-0.60288864,0.09437247,-0.30113563,-0.24220656,0.13415529,0.1914034,0.22964169,0.103175215,0.010930561,0.33026358,-0.16068126,0.09807301,0.047816046,-0.19637702,0.2824564,0.51834303,0.47153908,-0.51447767,0.5076419,0.034514345,-0.06535162,0.14887792,0.011236429,0.38597852,0.4787718,0.23914704,0.08634117,-0.18030581,0.10091209,0.6320263,0.13192937,0.46277273,0.1647845,-0.22094774,0.40618497,0.12710427,0.2823478,0.0059239496,-0.4927665,-0.11976742,-0.25554737,0.14069936,0.39464834,-0.010201901,0.13262579,-0.0928929,-0.2819374,0.103843324,0.052924316,-0.07277811,-1.3157188,0.2891479,0.36869505,0.70483536,0.4648605,-0.2537824,0.01920676,0.52693856,-0.23786896,0.15148821,0.43255508,0.21104702,-0.54613656,0.3952902,-0.609973,0.42260933,-0.1541083,-0.035894595,0.03461606,0.18542838,0.27373472,0.90538347,-0.0639072,0.057277746,0.020194994,-0.33529922,0.151516,-0.4796556,0.19824305,-0.5213477,-0.30830485,0.62084705,0.46106866,0.1955475,-0.38380045,-0.024248544,-0.057488378,-0.12955667,0.10822983,-0.18333776,-0.15146652,-0.024989413,-0.86110145,-0.21102165,0.5035419,-0.06653492,0.0072293878,0.13258201,-0.29078537,0.10258235,-0.18125485,-0.1094447,-0.086803265,-0.6594654,-0.1933225,-0.17924394,-0.46303156,0.33020046,-0.3424552,0.18505278,0.29399985,0.08435463,-0.30768377,0.09538336,0.27602738,0.82158285,-0.048488695,-0.08023442,-0.521862,0.14238922,0.2785393,-0.33286998,-0.25320333,-0.113189094,0.039433543,-0.22803885,0.48273486,-0.06574695,-0.28183615,0.08891388,-0.102033734,0.083265506,0.4884562,-0.32815966,-0.179245,0.1699324,-0.05875471,-0.2516578,0.118954584,-0.32652488,0.31613237,0.192611,-0.085273035,0.13981281,-0.088085644,-0.08837045,0.31338364,0.106747225,0.3659151,0.42122588,-0.018260416,-0.4205607,-0.07664799,0.00873574,0.50724983,0.32046568,-0.0954277,-0.41010433,-0.443443,-0.32518154,0.46041358,-0.0912881,0.068567075,0.11614014,-0.5957278,0.67668355,0.20769297,1.1548313,-0.028347263,-0.3116562,0.04583689,0.5247623,0.12777436,-0.045098886,-0.61634356,0.9235066,0.590879,-0.23859484,-0.14872965,-0.41513067,-0.1455957,0.31649685,-0.26970905,-0.2606497,-0.070337184,-0.87462336,-0.18097426,0.003105047,0.13942209,-0.11809724,0.11656691,-0.03835003,0.08427711,0.032606475,0.5089816,-0.3480193,-0.08241967,0.23652197,0.14536443,0.07572847,0.14605643,-0.43270296,0.36063495,-0.59054404,0.13404725,-0.4182153,0.107846774,-0.077915944,-0.32885394,0.1750873,0.10439094,0.36513254,-0.26733577,-0.37352088,-0.37074852,0.6721524,0.19254535,0.34656623,0.64948076,-0.14395258,-0.10287972,0.12157425,0.6542445,1.601829,0.028090578,0.13669346,0.24338792,-0.4343751,-0.7052558,0.18122277,-0.3203897,0.2660874,-0.16939312,-0.17100471,-0.32013002,0.28016308,0.0023442002,0.06468559,-0.029260593,-0.4729799,-0.43117955,0.52264184,-0.33969295,-0.27978522,-0.41174617,0.122123,0.5467819,-0.31659728,-0.17184684,-0.007642863,0.4282333,-0.26463646,-0.5189349,-0.106776014,-0.21059991,0.46184734,-0.006886739,-0.31410158,-0.012755742,0.27355295,-0.44330853,0.3588856,0.009945769,-0.4195938,0.07831415,-0.10155775,-0.2022937,0.9373427,-0.11698857,-0.053034898,-0.79317605,-0.532501,-0.86608917,-0.4538935,0.14668192,0.21928841,-0.18147582,-0.5188217,-0.22295325,-0.021493673,0.2019655,0.08265877,-0.5471984,0.45171517,0.09804834,0.6945441,-8.275876e-06,-0.83761215,0.02592674,0.08305315,-0.16516961,-0.6877482,0.68435127,0.013659615,0.5893946,0.058093026,0.16073802,0.23072457,-0.56513774,0.25591046,-0.28701305,-0.2809969,-0.7523048,0.3273338 -211,0.39340746,-0.22584367,-0.73725164,-0.09378685,-0.42159316,-0.05323661,-0.29728916,0.5093676,0.17373498,-0.34982756,-0.10708194,-0.04369543,-0.15441066,0.49336067,0.024733594,-0.6232207,0.07283921,0.48609814,-0.8786119,0.7366172,-0.34782538,0.37687668,0.2202669,0.35437223,0.21799657,0.12185968,0.017343411,0.1772024,0.062446337,-0.24009758,-0.22161704,0.2735797,-0.5879956,0.25800174,-0.108786345,-0.53776544,-0.2148826,-0.4119492,-0.28292242,-0.8665381,0.23021507,-0.83012617,0.63354564,-0.054337006,-0.4175451,0.030247709,0.10389013,0.32313105,-0.1307589,-0.080844775,0.19553845,-0.28251314,-0.33170277,-0.26391447,-0.1635177,-0.34702015,-0.45160997,-0.00630101,-0.5738773,-0.06169249,-0.27707258,0.29745606,-0.27219975,0.019218417,-0.20950922,0.38286403,-0.40560627,-0.059020206,0.070953526,-0.25627783,0.19399221,-0.65047514,0.014960198,-0.22806175,0.18647908,-0.07574313,-0.5464106,0.2647087,0.14282405,0.6620049,0.15389398,-0.29501435,-0.24552114,-0.06376564,-0.0367578,0.46646485,-0.18043306,-0.23490418,-0.23949772,0.13598341,0.49730793,-0.023474813,0.1661912,-0.33105835,-0.08926788,-0.20588763,-0.085303456,0.3924196,0.4678457,-0.30932415,-0.37311256,0.37878302,0.6317072,0.20510787,-0.018568397,0.2842936,-0.026429167,-0.41779634,-0.15444167,-0.01264993,-0.18788815,0.4222202,-0.21801776,0.21442972,0.58178955,-0.12764272,-0.3173339,0.18072914,0.17613462,-0.016328564,-0.24611881,-0.32318848,0.4517852,-0.5147377,0.02604988,-0.20525339,0.70985,0.09301706,-0.59630287,0.30511433,-0.5774341,0.2189362,-0.027858524,0.4837448,0.9234655,0.7497579,0.1583645,0.9048411,-0.24364607,0.18829867,-0.093581155,-0.12999286,0.10934135,-0.26587868,0.012051156,-0.6534436,0.032172468,-0.24710585,-0.3861335,0.24181029,0.80420554,-0.7437526,-0.20674229,0.15747967,0.57252127,-0.36222303,-0.04396161,0.98321503,0.8853377,1.1402272,0.18686914,1.1824051,0.2509337,-0.15565135,-0.100162946,-0.103260234,-0.9490972,0.17322557,0.46657407,0.016320009,0.41270912,0.109609365,0.05468703,0.51397234,-0.44485146,-0.1575262,-0.29486006,0.2861124,-0.22881149,-0.15940827,-0.6255707,-0.18302855,-0.022095777,0.2733342,0.04989197,0.3306057,-0.25423574,0.67553735,0.077513546,1.6804669,-0.23370449,0.017447146,0.029083828,0.21595325,0.40262678,-0.26193935,-0.21292473,0.25454205,0.2934658,0.025893496,-0.54300827,-0.016249986,-0.29148802,-0.38735846,-0.24989718,-0.20277049,0.05567258,-0.2584024,-0.30341053,-0.5304561,0.030293979,-0.42480892,0.37207666,-2.0971446,-0.35240155,-0.10194744,0.33975813,-0.21297434,-0.38496652,-0.2667107,-0.46033117,0.3625558,0.33225065,0.5929089,-0.63778627,0.3786252,0.3183608,-0.70948493,0.008625799,-0.5476064,0.024506,-0.0010259908,0.297166,0.04662821,-0.2189444,-0.24084178,0.0155659085,0.4602297,-0.23529376,0.01717439,0.5373019,0.34132764,-0.05754374,0.26959297,-0.017332068,0.6947384,-0.45374694,-0.42631373,0.47928783,-0.32682225,0.15572394,-0.17188542,0.18694729,0.6285665,-0.6669713,-0.9779974,-0.7570877,0.1289163,1.2188385,-0.21563363,-0.481698,0.2171902,-0.5160013,-0.32454613,0.19810796,0.39847642,-0.24888515,-0.21365203,-0.80069745,-0.034295302,0.021972766,0.47972634,-0.056282878,-0.17642055,-0.4820475,0.7122151,-0.1452118,0.43977958,0.24550201,0.23059365,-0.31295136,-0.45320335,0.06055168,1.0518134,0.60710883,0.11520701,-0.31546083,-0.12439509,-0.3823113,-0.063571334,0.0154419495,0.46783173,0.76037407,-0.111829534,0.11982116,0.36223397,-0.07867778,0.021583932,-0.21443638,-0.2741264,-0.091954075,0.27260855,0.622333,0.5341933,0.12230878,0.6679946,0.0009066944,0.2815048,0.08716813,-0.85100335,0.5348455,1.1018584,-0.28922474,-0.48695976,0.7305694,0.17979948,-0.22778057,0.5191895,-0.5110841,-0.40936503,0.2450596,-0.1763364,-0.27669743,0.29385078,-0.33068404,0.33146387,-0.9652981,0.3236078,-0.20800105,-0.6963074,-0.64985055,-0.031635303,-2.8354225,0.26000497,-0.11035906,-0.009628243,-0.13201731,-0.22385915,0.2504737,-0.46877337,-0.6548555,0.05559029,0.20302328,0.9550902,-0.008907139,-0.06776514,0.027745852,-0.6307287,-0.22338957,0.2474274,0.08808712,0.27057856,-0.08574339,-0.5025905,-0.15004483,-0.27849707,-0.41702616,-0.10472037,-0.8598229,-0.45375875,-0.18938385,-0.8346866,-0.098613665,0.70584404,-0.13657996,0.06206637,-0.39005834,0.015514195,0.197534,0.093635716,0.05092331,0.08963271,0.33945453,-0.08645657,0.033530198,-0.24793825,-0.031773064,-0.055625446,0.11738641,0.297248,-0.21058556,0.4104738,0.76846576,0.8691863,-0.38197047,1.0033323,0.7095037,-0.30430943,0.2943445,-0.08328468,-0.54596317,-0.63739544,-0.20929353,-0.15444548,-0.5787412,-0.12772141,0.09568857,-0.41549048,-0.99108696,0.7571182,0.072650015,0.1609951,0.109325975,0.45676988,0.48063204,-0.17836529,-0.097253166,-0.2312403,-0.3243907,-0.42431056,-0.22416364,-0.59368074,-0.6526875,-0.041412838,1.5123367,-0.28020227,0.086827345,0.1477774,-0.1644102,0.049064398,0.1717306,0.08432837,0.37314862,0.53720367,-0.05980023,-0.54971,0.24390484,-0.17488411,-0.011906491,-0.44594532,0.34811667,0.6349577,-0.73946124,0.29201144,0.18245283,0.052368615,-0.10979426,-0.52372736,-0.026282724,0.16726892,-0.25510007,0.4623612,0.3672756,-0.7086042,0.62372214,0.29327965,-0.28163823,-0.77710795,0.15245189,0.0600324,-0.2647714,-0.1528807,0.43775213,-0.07417921,0.0049993303,-0.38564762,0.18280624,-0.20371482,0.3195475,0.09665031,-0.33743873,0.22348188,-0.49931702,-0.33641356,-0.74595666,0.13797449,-0.4651933,-0.37647703,0.20254612,0.07839855,0.11711591,0.04450742,0.121078536,0.5092392,-0.26800746,0.041426238,-0.26985195,-0.44336227,0.40695345,0.49686435,0.32119936,-0.31868193,0.70357555,0.059968792,-0.22503193,-0.4763042,-0.055383485,0.6211446,-0.13549168,0.4065456,0.09583064,-0.16962235,0.191199,0.86389416,-0.03140222,0.34381488,-0.076758824,-0.15874907,-0.04850305,0.118338786,0.16291769,-0.05873209,-0.49762633,0.099518366,-0.2276722,0.028207155,0.64204067,0.26716945,0.3553469,-0.12353635,-0.2676949,0.053825535,-0.008935983,0.20192154,-1.4596195,0.3316376,0.26213413,0.6947532,0.47612637,0.14832388,-0.13135482,0.6647125,-0.33858067,0.16982879,0.18172099,-0.27107394,-0.23701072,0.4583851,-0.80556285,0.50359666,0.0032185225,-0.03525356,0.3182192,-0.11739358,0.52448475,0.8987074,-0.21599957,0.16906546,-0.03323068,-0.25325558,0.037849355,-0.19240293,-0.14262949,-0.54915977,-0.45008653,0.97707164,0.30028015,0.4550237,-0.22294165,-0.010438951,0.1440238,-0.2994723,0.2655961,-0.11042113,0.206787,-0.1896862,-0.326018,0.017129926,0.5121819,0.2752303,0.09642368,0.10766235,-0.2429226,0.27639884,0.016359806,0.011534361,-0.18027498,-0.5800526,0.006717526,-0.499817,-0.2633898,0.4501009,-0.15382592,0.090396866,0.18670684,0.050151348,-0.22501977,0.6331944,0.09320258,0.8521128,0.22027276,-0.123059064,-0.08537786,0.5684389,0.09253489,-0.26995632,-0.034004845,-0.29513404,0.15972002,-0.70031446,0.55414534,-0.082718775,-0.5513306,0.300435,-0.07263132,0.11405904,0.2831247,-0.21198955,-0.08449901,0.028300345,-0.09357978,-0.2664521,-0.3184479,-0.2501439,0.30423605,0.095787935,-0.09160764,-0.30815095,-0.0766315,-0.068237275,0.58878475,0.024358515,0.20401834,0.2766368,0.24276775,-0.4380948,0.13459674,0.2911515,0.5057514,-0.010671644,-0.18847695,-0.23059872,-0.26072958,-0.5753736,0.16396578,-0.11919998,0.4132276,0.11097434,-0.23189251,0.8790032,0.26525003,1.3284787,-0.19476166,-0.39007586,0.27832934,0.55341786,-0.091235444,-0.0819025,-0.28531882,0.89380205,0.6543102,-0.07271809,-0.1509681,-0.513266,-0.29796392,0.2975876,-0.38349983,-0.16039951,-0.05121902,-0.6414409,-0.43205076,0.28173417,0.24121715,0.07888636,-0.19573191,0.18263179,0.24165517,-0.13675275,-0.01167125,-0.4517357,-0.015853213,0.3433656,0.16763128,-0.075990826,0.044737097,-0.51281154,0.39109457,-0.677997,0.037440456,-0.23521835,0.19778201,-0.018992113,-0.3631572,0.22406301,0.14779755,0.25074035,-0.5072569,-0.3004347,-0.15664218,0.598953,0.098670915,0.030953903,0.7418572,-0.36940473,0.14841492,0.024037452,0.24669306,0.9171615,-0.25704336,-0.022151938,0.2703598,-0.21110636,-0.6409889,0.47858498,-0.37832448,0.14939007,0.05438534,-0.38985592,-0.55600923,0.3167823,0.24921982,0.13299078,-0.045856003,-0.6123534,0.17475997,0.28793627,-0.15190342,0.01951353,-0.3933987,0.06375353,0.5268676,-0.10063569,-0.6881142,0.3269431,0.22246936,-0.19086543,-0.6380629,-0.16809027,-0.2966101,0.26198658,0.08709526,-0.3888368,0.017441677,0.091711946,-0.60824883,-0.10401295,0.28931606,-0.28918105,0.17422397,-0.454439,0.11659812,0.9949792,-0.37620443,0.3381661,-0.5199098,-0.6016289,-0.88926095,-0.14455827,0.6330561,0.18790744,-0.029085118,-0.99928737,0.06344669,-0.31044585,-0.108826995,0.12391978,-0.38428518,0.5593484,0.17991978,0.42496192,-0.23687223,-1.0181702,0.38287634,0.11495876,-0.18172783,-0.37694725,0.47488913,0.041213818,0.88017315,0.12869407,0.11358234,0.32409054,-0.84225583,0.118296504,-0.16653708,-0.029598393,-0.6149547,-0.20422174 -212,0.3957238,-0.18953325,-0.5668139,-0.30752084,-0.5693444,0.19701742,-0.21851622,-0.026381163,0.31429031,-0.4317888,-0.088599995,-0.15942687,0.03213934,0.55453867,-0.30963638,-0.620411,-0.03184878,0.22686145,-0.85457224,0.49144056,-0.45893776,0.28585866,0.15341806,0.2505414,0.16616522,0.008144363,0.41144472,0.041537106,-0.067181386,-0.099965766,-0.15579209,0.06969796,-0.58724743,0.26993108,-0.18216369,-0.4961589,0.047859266,-0.57440495,-0.18759492,-0.720107,0.5102726,-0.8731645,0.5443932,-0.18386866,-0.1818888,0.22552776,0.32746738,0.18764988,-0.22809282,-0.022512244,0.34436682,-0.31497642,-0.15138648,0.025141168,-0.39960396,-0.5297129,-0.6710415,0.08711949,-0.7239784,-0.032374,-0.2386678,0.2374079,-0.2930115,0.15126374,-0.10909419,0.44334576,-0.37359625,-0.08606926,0.22470161,-0.0372786,-0.071450315,-0.4600689,-0.30831724,-0.1866574,0.4206961,-0.16398114,-0.17712633,0.3964369,0.15481132,0.38821995,0.0671628,-0.33539647,-0.25247523,0.027313102,0.07536626,0.48511854,0.1440308,-0.25691402,-0.2136284,0.03226976,0.43413073,0.3269841,0.15893298,-0.14176203,0.07188214,-0.11193867,-0.2197002,0.640622,0.45045596,-0.33514506,-0.39580837,0.44358727,0.359742,0.038103662,-0.1360551,0.11120503,-0.08966789,-0.67680424,-0.21122018,0.3114756,-0.0027762859,0.528729,-0.14104915,0.25600263,0.6717524,-0.26114434,-0.1492663,-0.12021859,-0.04416557,-0.16167384,-0.21726418,-0.095258,0.2966685,-0.67472017,-0.013531197,-0.31342378,0.7377579,0.007716196,-0.787885,0.19364572,-0.48187965,0.24187082,-0.09674342,0.68671477,0.81602436,0.5166134,0.31311607,0.9375572,-0.3328625,0.20866282,-0.12202473,-0.36364636,0.017346947,-0.2263418,0.04064295,-0.47298098,-0.021560825,-0.114872254,-0.0012703309,0.03232744,0.5346213,-0.49270695,-0.16589059,0.03552167,0.6346732,-0.38693973,-0.15514888,1.1704088,1.054614,1.1943073,0.18938573,1.2392794,0.3125378,-0.14992079,-0.08576692,-0.047598474,-0.71915245,0.23788507,0.26334587,0.08979968,0.32766035,-0.00014336292,0.11393787,0.27142423,-0.3994791,-0.2275323,-0.06732815,0.34786886,0.018288048,0.015693197,-0.24197325,-0.3344639,0.12918013,0.107679255,0.2009436,0.28670454,-0.18439706,0.81027406,0.10959541,1.1882544,0.10251077,-0.030519636,-0.11367304,0.454596,0.24459916,-0.13849458,-0.20354524,0.16067146,0.29591057,-0.164042,-0.60414505,-0.13806851,-0.30479702,-0.28742746,-0.24196988,-0.4040928,-0.068378486,-0.36407524,-0.09201296,-0.23126301,0.08671602,-0.49174228,0.45558497,-2.4595277,-0.2797427,-0.23636898,0.36431012,-0.057167407,-0.24791981,-0.25508487,-0.6773303,0.4798237,0.41001013,0.41455376,-0.5545418,0.44431037,0.34637135,-0.6036986,-0.1799635,-0.8417508,-0.03930401,-0.14754765,0.32667682,-0.04352679,-0.07503577,-0.124847926,0.2303768,0.53484786,0.14594005,-0.0074371602,0.3301162,0.73956835,0.060624048,0.7207564,0.1403881,0.64036494,-0.43294474,-0.09023353,0.28807837,-0.4986416,0.36108935,-0.06783068,0.19156529,0.6836862,-0.631566,-0.9353208,-0.5479823,-0.17660362,1.1682115,-0.27143797,-0.35403493,0.23258512,-0.19736885,-0.08107667,-0.017478747,0.457392,-0.14016022,-0.05781569,-0.59350246,-0.1833218,0.07318664,0.16389486,-0.15221907,0.025664646,-0.4581862,0.4805126,-0.109337136,0.39692926,0.2307033,0.22590402,-0.53065264,-0.50986236,0.3358148,0.8258644,0.38124296,-0.06415785,-0.2551497,-0.2128214,-0.25043055,-0.34570578,0.1328308,0.39524123,0.62648875,0.030264301,0.21955845,0.43197024,-0.21051572,0.12262627,-0.18421474,-0.20611158,-0.27287066,-0.055684473,0.6357781,0.7000411,-0.026980937,0.49417013,-0.085528776,0.21657148,-0.16244806,-0.5040336,0.5615301,0.809652,-0.09312829,-0.26207703,0.6172057,0.48064947,-0.16779925,0.5188742,-0.43925476,-0.3769843,0.6048454,-0.09738842,-0.38628185,-0.123431645,-0.33734906,-0.018977482,-0.89892757,0.2275455,-0.013768911,-0.53552705,-0.6106707,-0.123428784,-2.8167088,0.024722485,-0.21806079,-0.072894625,-0.12473444,-0.36224863,0.18720943,-0.39801934,-0.7128079,0.21662697,0.11787583,0.70646083,-0.08960747,0.23418894,-0.27011728,-0.26486772,-0.42797136,0.113400236,0.14107102,0.43465537,-0.038637858,-0.35833052,0.15106831,-0.47201654,-0.48877034,-0.0602202,-0.4638347,-0.36557162,-0.051005363,-0.6310025,-0.32350528,0.7513719,-0.16130525,-0.16393144,-0.33224732,0.0538094,0.1511639,0.2928993,0.050927844,0.21917017,0.11291814,-0.08926695,-0.012274714,-0.29171744,0.26747146,0.07695487,0.14308609,0.4394914,-0.16720702,0.32067442,0.40652114,0.72082865,-0.08256279,0.90177375,0.091950215,-0.1307469,0.20952225,-0.23513919,-0.36631006,-0.6269783,-0.22892064,-0.054892905,-0.5080536,-0.42362103,-0.116302475,-0.31062663,-0.8883986,0.5587194,0.22388095,0.20361081,-0.28510615,0.20418385,0.23783001,-0.2162141,0.17773312,-0.17169435,-0.1653921,-0.467967,-0.45541817,-0.788722,-0.5998774,-0.094358645,1.3599688,-0.27564615,-0.14317468,0.017989222,-0.33544916,0.28926784,0.26758835,0.014207868,0.39881957,0.29782298,-0.10754435,-0.6529426,0.47986147,-0.23571777,0.1818757,-0.37729856,0.09243392,0.7783164,-0.54197943,0.32176203,0.5142175,0.08793016,-0.072669834,-0.60036856,-0.13553753,-0.069392726,-0.05967239,0.36590818,0.3168948,-0.80798507,0.66225135,0.07835957,-0.3673039,-0.8170451,0.34072554,0.07630365,-0.026431946,0.28868946,0.35024044,0.33898047,-0.074222036,-0.43020126,0.22119887,-0.41500646,0.35766643,0.12448169,-0.0035756642,0.3207016,-0.28926802,-0.54031366,-0.6349458,-0.10462893,-0.5357049,-0.180906,0.0907677,0.038553394,0.122297876,0.21937667,-0.0094480375,0.35103768,-0.36773846,0.054105144,-0.071188696,-0.2434002,0.28834227,0.48235688,0.43385983,-0.6220735,0.7030765,0.07435061,-0.08954,-0.0047014216,-0.028164927,0.2058189,0.2900525,0.21189298,0.23182808,-0.25443593,0.13202544,0.61218035,0.12517752,0.18121053,0.25181395,-0.32066762,0.364802,0.118290186,0.25420907,-0.116043694,-0.3288254,-0.010412106,-0.1946449,0.047658384,0.28406918,0.01145036,0.33556637,0.042817004,0.035482362,0.02409537,0.086696625,-0.2882834,-1.4061608,0.31370208,0.19165447,0.723496,0.51920927,-0.03766694,0.035843085,0.710181,-0.3834329,-0.072885044,0.31575915,0.17189237,-0.2597454,0.5276156,-0.49753475,0.6105789,-0.13796376,-0.00087608397,0.093168385,0.28323597,0.34230042,0.9624622,-0.1178034,0.06278625,-0.06753529,-0.19479115,0.2687642,-0.24278821,-0.009177531,-0.494971,-0.2304311,0.87451375,0.2045664,0.36753353,-0.08823157,-0.016542275,0.10568913,-0.17856668,0.041165616,-0.10055157,-0.102323376,-0.26177236,-0.6077102,-0.11958578,0.5290282,0.056462582,0.23916985,0.21268076,-0.358721,0.13500413,-0.12550066,0.09643298,-0.08022494,-0.7493753,-0.21837507,-0.17743972,-0.47178572,0.24295966,-0.4473518,0.27228695,0.3088413,-0.03612473,-0.27471894,0.07585316,0.20124577,0.6976814,-0.0022058212,-0.077265576,-0.26250812,0.045427322,0.25826102,-0.4817945,0.19642822,-0.1528987,0.1374183,-0.61915207,0.608143,-0.09506081,-0.39098123,-0.049643032,-0.091007434,-0.040206883,0.39538816,-0.09546907,0.12723304,0.122012615,0.07960127,-0.20478293,-0.102000766,-0.43760204,0.16483815,0.1762791,-0.09448274,-0.069634765,-0.03567711,0.11542135,0.6851864,0.0656218,0.12052941,0.12371673,0.053319573,-0.5245903,0.09518561,-0.12032005,0.57947195,0.019444585,-0.24722418,-0.36601794,-0.16502914,-0.238376,0.6187611,-0.16178145,0.09080161,0.01896763,-0.36991245,0.6923977,0.11573624,1.1784027,0.018398311,-0.47806937,0.18046273,0.6555177,0.08006914,-0.006316969,-0.22314993,0.97137386,0.46132877,-0.24934532,-0.20463778,-0.60133094,-0.123162985,0.2832446,-0.352348,-0.18723574,-0.114160985,-0.5182296,-0.25528446,0.26654053,0.07854325,0.20173317,-0.282304,0.1368772,0.22485963,0.14835599,0.38350666,-0.6673351,-0.16177717,0.31391746,0.15110232,-0.015052419,0.10362442,-0.39004713,0.37433082,-0.679435,0.24240783,-0.29460016,0.18856889,-0.12296871,-0.18695733,0.3037825,0.34344393,0.36304325,-0.2526757,-0.39576986,-0.31686783,0.69045615,0.34013674,0.35087663,0.7827849,-0.33719888,-0.14406824,-0.023958476,0.3751286,1.2910328,-0.051490095,0.05472354,0.29796445,-0.35493073,-0.59830064,0.2751911,-0.43125364,0.07197059,0.01796031,-0.27390018,-0.36985874,0.28519613,0.22296605,0.29614392,0.12276887,-0.5910846,-0.18331626,0.42173052,-0.17275167,-0.28210837,-0.41415197,0.061658364,0.61209273,-0.15935005,-0.33093598,0.117141314,0.35707074,-0.23669583,-0.74716944,-0.059492495,-0.30305263,0.44159552,0.11583788,-0.25314313,-0.22197025,0.034157258,-0.41464707,0.22484551,0.19216508,-0.33240458,-0.034519076,-0.23880276,0.00391407,1.0596994,-0.16707776,0.28247553,-0.51588774,-0.46823597,-0.9044234,-0.17416981,0.12063285,0.14594749,-0.0859758,-0.552765,-0.20873043,-0.03301825,-0.11342454,0.21465053,-0.53051937,0.32737917,0.1489763,0.23418058,-0.11790789,-0.98465097,0.073655054,0.04607813,-0.2521269,-0.41312927,0.575321,-0.12535463,0.47403526,0.11427628,0.014704539,0.11318558,-0.41765293,0.35586312,-0.31365883,-0.15867224,-0.394612,-0.0544846 -213,0.453046,-0.4275162,-0.4302573,-0.19760935,-0.3112756,0.091457605,-0.14072594,0.46974003,0.05790558,-0.5304038,-0.3313021,-0.08586759,-0.12208458,0.30420902,-0.31654498,-0.511633,0.0383429,0.21547338,-0.41004595,0.70343155,-0.21716751,0.20626463,-0.033536967,0.38299078,0.19052927,0.2909334,0.1559232,0.08673843,0.04502473,-0.18554233,-0.13813108,0.1164035,-0.5056419,0.36520436,-0.16361791,-0.35646313,-0.069291785,-0.40111887,-0.44587108,-0.71188533,0.33178014,-1.086738,0.5291373,-0.07517343,-0.3662791,0.04572707,0.23816657,0.2565095,-0.1259182,-0.05190297,0.21246156,-0.14209242,-0.041994195,-0.24520442,-0.08542654,-0.5109686,-0.5740563,-0.11712779,-0.37225047,-0.2662592,-0.3100389,0.22496991,-0.35983855,0.03588462,0.017387906,0.6651162,-0.54830164,0.040210705,0.19471182,-0.25400865,0.34880525,-0.7540294,-0.18369745,-0.07298536,0.20800212,0.014985586,-0.2003894,0.42236355,0.24938376,0.37643987,0.028018972,-0.12249605,-0.21220882,-0.2246788,0.1721313,0.44035038,-0.103630595,-0.46204135,-0.12344265,0.01945719,0.44058642,0.14129274,0.1435594,-0.36205906,-0.13583276,0.032976065,-0.11228687,0.25590613,0.439479,-0.25415033,-0.16855898,0.23517384,0.5551683,0.0010136605,-0.17473193,0.016831128,0.041007414,-0.5048775,-0.26000196,-0.08393803,-0.33287382,0.70307547,-0.14634006,0.34094942,0.7194032,-0.12074173,0.034268398,0.017576609,0.1324656,-0.21653582,-0.3314974,-0.40847847,0.29452446,-0.5082855,0.08127165,-0.17935899,0.6598287,0.07864257,-0.65983063,0.28400514,-0.5157317,0.050448775,-0.2512056,0.44273594,0.5868355,0.526993,0.2738651,0.6567281,-0.41206577,0.0015856823,0.06998567,-0.38088602,0.15062551,-0.2467403,-0.113749385,-0.5277147,0.13244696,-0.020647023,-0.008495816,0.0071605127,0.42726436,-0.5759815,-0.010667243,0.07940807,0.92387635,-0.27191857,0.054329235,0.74105287,1.0349841,0.9496862,0.06769268,1.214695,0.19815406,-0.2988509,0.094194874,-0.01065768,-0.588219,0.32493475,0.5704703,0.18775047,0.33237714,0.04731149,-0.038977496,0.49803203,-0.6137879,0.043242835,-0.2004918,0.20113018,0.10920458,-0.27388617,-0.67187405,-0.12429573,-0.041363906,0.18556486,-0.09294936,0.23147227,-0.09906432,0.5171788,0.12770037,1.6237446,-0.0693374,0.106677055,0.12709679,0.49136847,0.2181839,-0.050035145,0.18139137,0.2980607,0.34797546,0.2043241,-0.52972513,0.11338966,-0.21278234,-0.55608183,-0.2959533,-0.33952174,-0.010170124,-0.018163225,-0.49397075,-0.29978064,-0.22108875,-0.121388756,0.38161847,-2.52725,-0.24833158,-0.22899322,0.4404826,-0.24324688,-0.273569,0.047950387,-0.4050372,0.49542135,0.32719848,0.51422805,-0.6463871,0.351013,0.553251,-0.5093453,-0.0039883433,-0.53020275,-0.17794326,-0.065505914,0.47049612,0.078603745,-0.06277181,0.07184274,0.2655365,0.52659076,0.037431136,0.2510328,0.30144987,0.30891854,-0.061544277,0.41719908,0.04515337,0.44634473,-0.12098033,-0.14404713,0.3756976,-0.13562553,0.17102432,-0.20667644,0.110438414,0.60272294,-0.40857136,-0.76207376,-0.7426956,-0.20912789,1.0569241,-0.22264567,-0.64911824,0.27558842,-0.34816238,-0.33690056,-0.121932216,0.31825274,-0.18949126,0.13155073,-0.85056895,0.09043611,-0.09454983,0.124057665,0.06724195,-0.31989127,-0.5260268,0.8990743,0.004328839,0.6869477,0.41406578,0.2146709,-0.22386545,-0.52412575,0.061319828,0.9099478,0.6957606,0.13806845,-0.1188684,-0.16522053,-0.289637,-0.23722868,0.1032947,0.6704739,0.7085763,-0.055362903,0.1893123,0.3210875,-0.06574316,0.079889014,-0.10766776,-0.26981595,-0.09911958,0.13204953,0.57266504,0.6479223,-0.3211388,0.36766255,-0.120255515,0.46312842,-0.031607606,-0.49947435,0.41550004,1.2489123,-0.15699972,-0.34356204,0.6351256,0.48715505,-0.26843587,0.39270937,-0.6764701,-0.26524982,0.52087474,-0.15178446,-0.6173758,0.07291385,-0.37771633,0.2974416,-0.9340583,0.5070772,-0.31881645,-0.5294196,-0.67930186,-0.25891414,-2.959155,0.22565596,-0.3795458,-0.20489809,-0.21014756,-0.22244841,0.27535373,-0.8478346,-0.5537441,0.2555977,-0.008352569,0.67615974,-0.012159232,0.08108649,-0.13514087,-0.2715597,-0.15139817,0.1966063,0.13530983,0.19409065,-0.08470873,-0.5465787,-0.12765014,0.0026812155,-0.5819884,0.063348606,-0.5643636,-0.53861237,-0.18465854,-0.38667747,-0.17979915,0.6228219,-0.17935392,0.029945524,-0.21325396,0.05034597,-0.2759203,0.20377249,0.10853887,0.13396004,0.010123811,0.06296347,0.12183133,-0.3264881,0.28623873,0.021817287,0.29116675,0.21272229,-0.33733377,0.14580794,0.50765187,0.52438295,-0.26113978,0.7807677,0.5729025,-0.19225867,0.27324957,-0.1516101,-0.46962675,-0.59759146,-0.41912562,0.16491477,-0.33944243,-0.5116765,0.061346952,-0.5122463,-0.78858525,0.58459294,0.03205307,0.26037496,-0.04155677,0.11849259,0.48026937,-0.20173432,-0.20651695,-0.13710266,-0.21396485,-0.72291595,-0.29073736,-0.6948572,-0.547658,0.10777876,1.114806,-0.20661308,-0.0982337,0.1921536,-0.27873436,0.10134649,0.2092201,-0.106798425,0.07660783,0.4596714,-0.09151292,-0.858676,0.72324693,0.00038642288,-0.2539501,-0.58639026,0.23314661,0.5679853,-0.58380544,0.44013843,0.36524683,-0.05753565,-0.30516255,-0.51801586,-0.1303324,-0.12073352,-0.28995693,0.53743434,0.22809993,-0.622296,0.4033197,0.32829767,-0.26165986,-0.6454529,0.58428574,-0.082726814,-0.109749176,0.0064118784,0.3343037,0.10505251,-0.0629134,-0.16201636,0.2254224,-0.41838488,0.27966768,0.24784373,-0.10326967,0.2561135,-0.13244298,-0.0863805,-0.8905486,0.059077747,-0.61618805,-0.16519143,0.19248538,0.054068092,0.0018774271,0.12997332,0.053495254,0.4373806,-0.34177443,0.13487382,-0.04006684,-0.40185642,0.38623115,0.42226106,0.4474774,-0.39854917,0.63823205,0.069184095,-0.04698981,-0.18432458,0.10029197,0.46528444,0.3115922,0.38242766,-0.13110468,-0.056509387,0.28178364,0.7773565,0.24548873,0.5761081,0.20362036,-0.12775803,0.16095513,0.064563245,0.24320619,0.039755665,-0.6065734,0.11862502,-0.3008256,0.07993665,0.4903344,0.17143081,0.34859827,-0.147909,-0.2853404,0.055397447,0.21083476,0.06187986,-1.3529229,0.32040235,0.25904384,0.88112223,0.41149554,-0.012402195,-0.09630448,0.8270339,-0.24968567,0.07822418,0.3934321,0.06457528,-0.44229516,0.63027877,-0.79701066,0.35355645,0.075255364,-0.06123598,-0.014695374,0.0133598745,0.3743116,0.6361082,-0.17725547,0.02223223,-0.109455675,-0.35215914,0.2691604,-0.4507589,0.03686237,-0.3208699,-0.40202972,0.4845185,0.5156084,0.273519,-0.19080259,0.03762468,0.16883932,-0.13596068,0.40989706,0.10784616,0.15810294,-0.1471541,-0.54889,-0.21520062,0.33670625,-0.19341065,0.14674085,0.0144171,-0.25294787,0.18599683,-0.0007963896,0.050457828,0.08278819,-0.6814768,0.09941398,-0.30277306,-0.37922192,0.79841346,-0.09480264,0.06240068,0.1078958,0.04621507,-0.150809,0.09849677,-0.10981992,0.6637709,0.11488778,-0.1052636,-0.32267463,-0.035136435,0.09768207,-0.22583522,0.13896063,-0.23947829,0.057119705,-0.659502,0.49577186,0.013798495,-0.17238349,0.23297206,-0.19701344,-3.102521e-05,0.40904865,-0.158938,-0.21944161,0.022628082,0.041073825,-0.2172773,-0.36965382,-0.13722216,0.2981185,0.18885006,0.25181738,-0.08593924,-0.06763589,-0.20330861,0.4558323,0.04098087,0.3754368,0.43340963,-0.21379733,-0.3478585,-0.17864919,0.1779928,0.42684302,-0.042967748,-0.026899215,-0.18814434,-0.704218,-0.4219281,0.16714634,-2.7418136e-07,0.3858232,0.109148115,-0.13164929,0.7339811,-0.028939025,1.1928991,-0.07350979,-0.50664395,0.0029492616,0.65288544,-0.043044757,-0.025939941,-0.22053036,0.86978877,0.6337061,0.0010166843,-0.08413622,-0.4434925,0.15978645,0.27817708,-0.18929757,-0.06840428,-0.10082313,-0.721382,-0.3640044,0.13771963,0.36835155,0.15491082,-0.117234185,-0.03712217,0.34818718,-0.072286464,0.3431176,-0.47666183,-0.26624873,0.34987932,0.15679929,-0.06087606,0.08081085,-0.46279582,0.40042418,-0.49169704,0.07742454,-0.33645487,0.14150788,-0.15989567,-0.24587913,0.21855725,-0.107667446,0.35698488,-0.29292896,-0.37033895,-0.12682785,0.56816936,0.025990475,0.082554616,0.54266447,-0.32148442,0.012427056,-0.00023937225,0.41537586,1.085228,-0.2516545,0.07285724,0.27655098,-0.56174254,-0.64833003,0.34539354,-0.31413883,0.29886374,0.0479218,-0.25335172,-0.5801753,0.27445304,0.25919443,-0.08297394,0.055953186,-0.63053125,-0.27380353,0.25926766,-0.4506654,-0.114396505,-0.24184911,0.097934835,0.3654703,-0.28614858,-0.35297865,0.09953639,0.27669972,-0.1324914,-0.5110752,-0.093740866,-0.3057256,0.3019608,0.0890395,-0.43383917,-0.17213972,0.078719616,-0.4663885,0.1616163,0.24586363,-0.34981024,-0.001121537,-0.3929768,-0.11966381,0.9262174,-0.13989854,-0.01655357,-0.59611857,-0.35129136,-0.7546323,-0.47730356,0.375471,0.12141024,0.078675106,-0.6720902,0.0207334,-0.20623432,0.15695849,-0.30858225,-0.2439216,0.46164572,0.16114645,0.46396977,-0.09190105,-0.72262883,0.24297409,0.05385432,-0.09542151,-0.544172,0.64018005,-0.07439497,0.8461058,0.123382814,0.15502484,0.16703309,-0.5557675,0.05816109,-0.19109698,-0.3471404,-0.5929756,0.035244424 -214,0.37618196,0.152169,-0.56795627,-0.39365917,-0.37342125,0.14097399,-0.28100553,0.13418043,0.12760295,-0.23967347,0.14005446,-0.017672796,-0.09037283,0.44900346,-0.14568591,-0.8264219,0.09646367,-0.04898429,-0.63755554,0.39912003,-0.4512071,0.5062215,0.17408086,0.31329745,0.026657335,0.22300376,0.3491186,-0.13358527,-0.027987935,-0.032359224,-0.23445645,0.33034322,-0.59109634,0.11478202,0.02000388,-0.36315614,0.03996043,-0.07146154,-0.2385042,-0.60796946,0.37464324,-0.65381074,0.5479423,-0.15404567,-0.38523832,0.076372445,0.20393474,0.2893716,-0.2711028,0.1528505,0.2512563,-0.34236035,0.008333497,-0.059233308,-0.39912322,-0.71300983,-0.65364456,-0.18302807,-0.8683908,-0.3462811,-0.38508657,0.2534347,-0.3137824,0.11094335,-0.1950481,0.30446267,-0.4022112,0.03971924,0.19327557,-0.13833204,0.15910375,-0.5222124,-0.028390858,-0.103770554,0.1496185,0.13233504,-0.07330315,0.22749016,0.43037206,0.56823754,0.074102685,-0.3940235,-0.33301932,-0.23064566,-0.014138795,0.46731266,-0.026557729,-0.02225507,-0.2832415,-0.10543069,0.34847814,0.25651392,-0.09108207,-0.22401401,-0.014704971,0.13962832,-0.19487083,0.25628236,0.41727254,-0.5420488,-0.30328172,0.39670646,0.4602359,0.122681305,-0.32940656,0.21037564,-0.01731051,-0.35000822,-0.15440059,0.25596315,-0.071755014,0.4868164,-0.032750882,0.23992276,0.9127641,-0.20946378,-0.13008595,-0.33101785,-0.17738578,-0.04342316,-0.022675663,0.0003253445,-0.09975033,-0.5303927,-0.09096055,-0.26639396,0.9538781,0.1356768,-0.6814031,0.27899018,-0.33936584,0.027766835,-0.22009043,0.6435231,0.7038977,0.3549677,0.04200721,0.84077674,-0.62549293,0.04767313,0.026603423,-0.45712978,0.13919923,-0.08630857,0.11325089,-0.47103155,-0.03812377,-0.0026795194,0.05955388,-0.09804921,0.3621283,-0.28160593,-0.06359729,-0.06496817,0.70427424,-0.50986683,-0.016296893,0.57598454,1.0232451,0.87290645,0.05568354,1.1182747,0.33478028,-0.17825133,0.056038857,-0.49559438,-0.36010775,0.17146125,0.33919615,0.16499674,0.29832208,0.084062815,0.17630762,0.50408036,-0.17959459,0.015245492,0.11584933,0.21087626,-0.0032393634,-0.11997926,-0.57694715,-0.22072431,0.23445848,0.09847371,0.069586486,0.11171482,-0.21401444,0.45746005,0.27961397,1.3407903,0.089089274,0.12037479,-0.012826193,0.43818682,0.13177902,-0.04193943,-0.017738104,0.30509058,0.325065,0.06328762,-0.5925127,-0.003374204,-0.37021536,-0.4042719,-0.3730994,-0.45243827,-0.066186994,-0.07572337,-0.5225771,-0.12649938,0.1319834,-0.32858992,0.43042988,-2.556215,-0.19385739,-0.18122259,0.17725424,-0.12909162,-0.23051983,-0.19955501,-0.5745722,0.20120987,0.45652303,0.23876745,-0.60779613,0.5509546,0.33523157,-0.13084751,-0.15017216,-0.56207514,-0.11684817,-0.10181403,0.4073668,-0.040948365,-0.068047225,-0.32777938,0.556939,0.6914037,-0.051966883,0.06583205,0.12115279,0.34988198,-0.04231231,0.58999515,0.22992262,0.52057374,-0.09719606,-0.07387712,0.433176,-0.23838146,0.23804423,0.016822167,0.21273315,0.4643455,-0.4347372,-0.7788672,-0.51710284,-0.24763441,1.0680913,-0.525668,-0.34523422,0.32664466,-0.008988794,-0.11560521,0.017792545,0.30302036,0.045748547,0.12762481,-0.51300895,0.11599898,-0.027493091,0.20314455,-0.110484496,0.029177465,-0.21500897,0.62847906,-0.22547254,0.46421507,0.2299833,0.24902622,-0.02848123,-0.4415403,0.03330083,0.8777295,0.3902916,0.00659921,-0.28438655,-0.25723904,-0.22587559,-0.24958694,0.16608347,0.29978734,0.9039856,0.078538,0.1001827,0.280176,-0.3092749,0.054915108,-0.09537681,-0.41251528,0.14527637,0.027276382,0.3243404,0.40078807,-0.22508669,0.46617603,-0.086634286,0.22677374,-0.1766954,-0.44408208,0.5576399,0.864884,-0.15514973,-0.198367,0.5040159,0.25888836,-0.34116793,0.3914493,-0.6868061,-0.2631948,0.82323486,-0.069861345,-0.3263747,0.071284585,-0.360824,-0.07443759,-0.9174958,0.37640876,-0.073774934,-0.6062787,-0.47047985,-0.28051624,-3.8084908,0.10685985,-0.23659581,-0.0827813,0.06755683,-0.06455331,0.2966415,-0.6119518,-0.45018688,0.046248436,-0.0072403047,0.48292667,0.08287918,0.15401429,-0.28866923,-0.21245815,-0.22996798,0.2968493,0.098475784,0.18552113,-0.019082524,-0.44380718,0.28584158,-0.34144768,-0.5575417,-0.00804483,-0.33785582,-0.5505308,-0.08231736,-0.35560918,-0.16213733,0.80122185,-0.30362862,-0.030541915,-0.29409963,-0.044515178,-0.1910498,0.37415785,0.46161094,0.052779894,0.08343,0.04695739,-0.18020105,-0.54577667,0.12406948,0.13303122,0.3414722,0.2921513,0.10292776,0.22394103,0.65248024,0.34680986,0.052257545,0.63257307,0.17853856,-0.20078593,0.29956096,-0.2931293,-0.14845867,-0.81080735,-0.4077018,-0.2529585,-0.39479938,-0.40407467,-0.17503494,-0.36907497,-0.77547497,0.46849942,-0.01948392,0.38835412,-0.20197527,0.3165115,0.27672094,-0.0017793253,-0.04133073,-0.24103433,-0.35296994,-0.503825,-0.45856774,-0.6665809,-0.6931921,0.19633609,1.1877819,-0.13423517,-0.20959437,-0.08788361,-0.20119104,-0.004629731,0.13117896,0.3535818,0.27567035,0.36863366,-0.1689687,-0.6997933,0.42708644,-0.19218373,0.11048263,-0.65795,-0.2643695,0.5646303,-0.603282,0.42831904,0.3492837,0.2315188,0.22712137,-0.73302674,-0.25231612,0.06716321,-0.26146397,0.49188483,-0.03312424,-0.39039204,0.53259826,0.008947566,-0.05803673,-0.5217596,0.5382039,-0.06675511,-0.37586725,0.12879857,0.3458404,0.03409125,-0.102592215,-0.129979,0.24673508,-0.5635986,0.27367952,0.4884163,0.003934793,0.44334137,-0.08121096,-0.18929718,-0.48331463,-0.14212747,-0.4562862,-0.22365633,-0.06272017,0.18664843,0.17478685,0.24481015,0.039971992,0.40980914,-0.25372076,0.21771827,0.03720235,-0.24552575,0.48047736,0.49517387,0.3375451,-0.45834002,0.519483,0.110241055,-0.077308744,-0.12472074,0.103276275,0.5929506,0.21743926,0.34918427,-0.1254614,-0.18008855,0.29862532,0.66986156,0.28797027,0.31916717,0.12221499,-0.2516372,0.27312815,0.22354792,-0.059401162,0.1687206,-0.09442139,-0.1835039,0.15128043,0.16919395,0.5131453,0.14936483,0.37683672,-0.07732911,-0.12796335,0.36433843,0.099889696,-0.2490825,-0.9012314,0.14846349,0.3949166,0.64483285,0.40636826,0.13513635,-0.1202832,0.38989082,-0.47344822,-0.04704494,0.38483822,0.10602911,-0.38709486,0.64880973,-0.6085186,0.52457106,-0.20056994,-0.0899822,0.13736929,0.17096278,0.23373666,1.0469395,-0.050119724,-0.06850311,0.048246678,-0.34990725,0.22247255,-0.28088325,0.0013652891,-0.45565256,-0.26335695,0.6042367,0.33053547,0.11365388,-0.33176628,-0.033928413,-0.008629642,-0.14050755,0.10205231,-0.16485108,-0.0285002,-0.21199802,-0.46318838,-0.5018077,0.5160162,-0.13635981,0.014285279,0.06753833,-0.36223382,0.2557186,-0.065666646,-0.04952552,0.05824896,-0.42465955,-0.03807188,-0.24489003,-0.5622147,0.40616688,-0.40923154,0.30514008,0.12471181,0.033848334,-0.32179207,0.13506469,0.18284461,0.4986065,0.117260635,-0.13294508,-0.2953063,-0.05112555,0.3483863,-0.2847043,0.10671402,-0.29074067,0.22272234,-0.68105155,0.35267878,-0.27094734,-0.27528733,-0.23184605,-0.2901682,-0.009716418,0.31729013,-0.2358597,-0.05658487,0.17331594,0.15070097,-0.21907449,-0.048543103,-0.32735163,0.2064613,-0.19366266,-0.15894753,-0.05264949,-0.13892807,-0.008719765,0.25358093,0.0837178,0.24211793,0.18338543,-0.1363277,-0.28261128,-0.061528258,-0.060705278,0.26125073,0.08682858,0.05400463,-0.2755536,-0.31109226,-0.2516392,0.45868477,-0.14555411,0.13505024,0.1819183,-0.5232576,0.891824,0.02993904,1.2972248,0.23328264,-0.31817165,0.08471176,0.6157681,0.20656495,0.26359496,-0.28954297,0.8112196,0.5529156,-0.0901531,-0.37417316,-0.2506842,-0.21214008,0.30027625,-0.27274427,-0.3573426,-0.19197492,-0.747696,-0.15054491,0.1388504,0.13825987,0.23281959,0.07560466,-0.15593389,0.13260473,0.20833352,0.64477146,-0.45854235,-0.017636418,0.28788197,0.116447754,0.058064207,0.28904617,-0.3287937,0.40462792,-0.69919956,0.14601052,-0.4961295,0.066184,-0.092708655,-0.2789934,0.28984094,0.003665924,0.25588626,-0.13938695,-0.21838227,-0.21786115,0.71483654,0.2603335,0.29449862,0.7155839,-0.21806237,0.04236252,0.06746797,0.4368866,1.3614542,-0.03239771,-0.18645862,0.20223229,-0.35084933,-0.6411893,0.13253959,-0.29229286,0.0013388582,-0.14319836,-0.5207057,-0.23239645,0.4201981,0.04901535,-0.19362795,0.24837737,-0.40432274,-0.16512838,0.31895235,-0.2930325,-0.26085365,-0.109179914,0.37015358,0.7624019,-0.53027,-0.24316898,-0.085630134,0.44336417,-0.23990332,-0.58644205,0.14804432,-0.18226787,0.5670707,0.12579283,-0.42667162,0.17452873,0.22641955,-0.36188024,0.2116665,0.6457216,-0.42182073,-0.11582552,-0.23349082,-0.15416598,0.94443685,0.12559164,-0.17676339,-0.65621114,-0.37632665,-0.8482307,-0.2952031,0.35647872,0.18355827,-0.12476933,-0.45907986,-0.14488353,-0.14008382,0.06712134,0.17763239,-0.6217798,0.26912928,0.18906005,0.460822,0.054009464,-0.91144025,-0.1548473,0.06377379,-0.23058927,-0.5828532,0.68920714,-0.37490335,0.6119702,0.07782169,0.05431195,0.060969297,-0.46772802,0.46158484,-0.4408371,-0.16911572,-0.8405131,0.02107077 -215,0.29571345,0.034651794,-0.5153885,-0.17755046,-0.28535748,0.15973054,-0.06811038,0.12167398,0.11026898,-0.27381092,-0.026238158,-0.21644643,0.020532057,0.45645446,-0.118885115,-0.70604587,-0.029057536,0.08641641,-0.68271655,0.3772372,-0.5738526,0.3727212,0.06406669,0.3762608,0.04054419,0.37814993,0.29202354,-0.15726866,-0.20310055,0.18238828,-0.15302317,0.35492843,-0.584357,0.054392356,-0.009894116,-0.2079677,-0.0009684954,-0.38911214,-0.3206045,-0.55054057,0.4790591,-0.7226972,0.36987054,-0.055400796,-0.23646247,0.15436922,0.049047142,0.25880018,-0.44702238,0.059675857,0.15652597,-0.29920247,0.048044857,-0.099357724,-0.2507106,-0.34605008,-0.5840147,0.055341687,-0.5648146,-0.30750474,-0.2190274,0.16353254,-0.37902495,-0.0073382556,-0.19491294,0.4658497,-0.43065462,-0.037260085,0.3233714,-0.23923188,0.088290006,-0.2587555,-0.11666559,-0.021785429,0.39580673,-0.05628132,-0.10183085,0.31988084,0.30117118,0.49557564,0.0073154094,-0.24994022,-0.22940186,-0.03346581,0.12497255,0.53692913,-0.04506142,-0.15635282,-0.12890534,-0.03462028,-0.1404854,0.19363421,-0.0068321824,-0.48367766,-0.05287802,0.13231187,-0.082437366,0.13906921,0.4770985,-0.38251364,-0.30159622,0.34007943,0.39088666,0.07764814,-0.12365395,0.1418183,-0.025437586,-0.56204796,-0.24607477,0.15730049,-0.19632772,0.6271861,-0.04139226,0.2310549,0.7096653,-0.088979065,0.013555024,-0.34395224,-0.12516409,0.005808994,-0.2507727,0.06415324,0.114989296,-0.31220326,0.059200402,-0.069951646,0.7078074,0.1854766,-0.88279146,0.40267932,-0.44864666,0.12438637,-0.1341489,0.5862949,0.6984887,0.2343646,0.3155136,0.86436725,-0.64877456,0.12000775,0.0036308318,-0.4829694,0.031259242,-0.041662455,0.045057528,-0.44247878,-0.0354928,0.09822804,-0.047353376,0.043100394,0.055816267,-0.3555692,0.086412124,-0.02307757,0.7471693,-0.47719386,-0.044106692,0.6524197,0.96445864,0.733037,0.10106732,1.3177836,0.3835972,-0.21351999,0.20702684,-0.44157666,-0.56941044,0.07850572,0.2969414,0.21112087,0.28834772,0.13940215,0.10569208,0.45828748,-0.3133649,0.16944058,-0.043689687,0.012163755,0.015890196,-0.03082006,-0.38305688,-0.17244913,0.044647295,0.060443953,0.006222749,0.18881978,-0.14370294,0.37613207,0.13277686,1.790075,0.11660169,0.18289188,0.03126307,0.39505345,0.19935954,-0.12802637,-0.2141524,0.3658204,0.35402128,-0.08555068,-0.5324853,-0.01870697,-0.23444554,-0.46011207,-0.19702795,-0.3989464,-0.043671902,0.00059168786,-0.48880827,-0.0768775,0.11127274,-0.26509953,0.4908064,-2.7104897,-0.115974754,-0.13138916,0.2905699,-0.30885407,-0.32463068,-0.31194854,-0.44755802,0.21469866,0.46072906,0.22992572,-0.65027344,0.31407464,0.2303862,-0.19139613,-0.18359044,-0.5218248,-0.010156333,-0.059474237,0.33039472,-0.17303438,0.008088436,-0.1274097,0.27481553,0.58884627,-0.009146713,-0.14138281,0.12392716,0.3631508,0.24030544,0.5189061,0.05365967,0.5449966,-0.101528466,-0.10285472,0.25342274,-0.24337009,0.31184125,0.03337987,0.19822943,0.27929583,-0.44371617,-0.70070744,-0.55465925,-0.4296002,1.1479506,-0.50399435,-0.18263845,0.38650587,-0.041481204,-0.18108483,-0.026563937,0.4731697,-0.02424638,-0.023858324,-0.68046594,0.087193124,-0.081665084,0.123512104,-0.03123127,0.10644982,-0.20118234,0.6052542,-0.18973927,0.3777417,0.41169167,0.21315661,-0.0024055503,-0.4982129,0.14336176,0.84534556,0.25063157,0.12184207,-0.09383465,-0.2315265,-0.103657044,-0.2661916,0.11518919,0.4101397,0.671545,0.0843424,-0.01610455,0.34229475,-0.098653406,0.009898093,-0.09487066,-0.26614752,0.09540268,-0.107051924,0.48674214,0.58371395,-0.25791302,0.38382906,-0.13773128,0.14137816,-0.058552016,-0.43513423,0.5715406,0.9427176,-0.12795666,-0.047003567,0.41888925,0.38149226,-0.3780082,0.2766757,-0.5053065,-0.13489509,0.7648345,-0.20884392,-0.42248094,0.10779049,-0.292229,0.04443147,-0.93048346,0.17951253,0.16201314,-0.24373446,-0.39233518,-0.097938195,-4.0283804,0.05625387,-0.30614546,-0.18230301,0.03448253,-0.063667744,0.18733189,-0.5931178,-0.5048195,0.11530428,-0.048896916,0.44300014,-0.040603176,0.22608328,-0.3433153,-0.039119147,-0.08878934,0.22686993,0.15827721,0.3005615,0.012581665,-0.33635956,0.08243867,-0.37805617,-0.49327466,0.057038087,-0.40637833,-0.5587144,-0.2230295,-0.5043306,-0.30811042,0.7363274,-0.37200323,-0.08860575,-0.20773163,-0.0584157,-0.31121147,0.2852339,0.3378044,0.22878532,0.08686593,0.07962333,-0.18969971,-0.38377714,0.20871527,0.07201236,0.16166773,0.43204853,0.07482907,0.07931625,0.3726606,0.5094452,-0.10696975,0.515439,0.30852437,-0.035442524,0.28365096,-0.54122365,-0.099643946,-0.7286161,-0.4879265,-0.36101496,-0.37398857,-0.63743573,-0.30294865,-0.40404895,-0.72802866,0.39362666,0.00084463507,0.20303869,-0.016723637,0.19593433,0.4285738,-0.14503087,0.03892401,-0.10421727,-0.1784683,-0.5568313,-0.4209014,-0.5830352,-0.68774706,0.24484149,0.88527465,-0.05984572,-0.18526024,-0.10194651,-0.25828075,-0.014024654,-0.06570081,0.2855054,0.30508214,0.2273145,-0.18073334,-0.62679136,0.5936686,-0.10790376,-0.17973766,-0.6974714,-0.0025372617,0.5736286,-0.59260154,0.7533988,0.25348356,0.20838599,0.24397922,-0.48299658,-0.38325316,0.0674093,-0.24154004,0.51434445,0.09299837,-0.62604356,0.40909785,0.20692015,-0.10127807,-0.7091111,0.50641555,-0.052989636,-0.29481417,0.19454645,0.34001464,-0.04872655,-0.12245122,-0.046759464,0.13036142,-0.5281295,0.21541709,0.4809171,0.10044347,0.4505679,-0.07817742,-0.13594344,-0.5427784,-0.06249001,-0.51239294,-0.14456077,0.042308774,0.11727871,0.19140922,0.04776018,-0.049003296,0.4269527,-0.43020132,0.22127458,0.03551726,-0.0927921,0.16096735,0.43767875,0.2597589,-0.5279621,0.5474698,-0.049596637,0.07727145,-0.11450142,0.24667501,0.46698654,0.34098214,0.15103853,-0.10293632,-0.21418917,0.19749668,0.64834887,0.2120658,0.43454722,0.19001175,-0.23988718,0.38503015,0.14574236,-0.0007991418,0.05873005,-0.19127248,-0.061513677,0.07983477,0.25940204,0.3394568,0.15316392,0.41089824,-0.15354052,-0.213795,0.26132077,0.21983376,-0.041663695,-0.801214,0.290424,0.2197408,0.58263326,0.4999137,-0.0053768903,0.09077341,0.30869374,-0.38703898,0.16354315,0.31145424,-0.12136272,-0.46901554,0.5322162,-0.5116687,0.51279616,-0.18574017,-0.06552005,0.123092726,0.31276596,0.1693162,0.78650373,-0.09634583,0.12666102,0.05302555,-0.18318588,0.031330597,-0.28357893,0.077687144,-0.5360081,-0.31807587,0.41842136,0.4122125,0.24180368,-0.322826,-0.056637958,-0.0065278113,-0.079782486,-0.010781137,-0.033232387,0.05888826,0.06887371,-0.5848081,-0.5608902,0.54443276,-0.19816095,0.028830718,0.029815312,-0.30507946,0.28883514,-0.20635857,-0.16788241,-0.0359748,-0.6824805,0.05590867,-0.23568371,-0.50044036,0.31522447,-0.38829947,0.32298803,0.16297029,0.019427046,-0.49610254,0.23977442,0.11230186,0.81243765,-0.004156083,-0.16249093,-0.43856868,0.0016325116,0.37579474,-0.21157146,-0.042238556,-0.3562098,0.015173882,-0.3874189,0.3858665,-0.06871767,-0.15795988,-0.18867604,-0.101831175,-0.009907749,0.52880627,-0.16837423,-0.11803034,0.014477726,-0.0002027303,-0.35625592,-0.026050702,-0.39482886,0.24921697,0.09522641,0.0033865646,0.0849527,-0.0599738,-0.12703753,0.40433946,0.12038685,0.27524146,0.24437742,-0.18543306,-0.30586183,-0.1024752,0.056859124,0.28374347,0.11615546,-0.09761504,-0.22768907,-0.3353832,-0.22502889,0.28144556,-0.17989218,0.1603663,0.19435506,-0.41356608,0.6866825,0.16186948,1.1137288,0.20918304,-0.23670089,0.120152146,0.31165987,0.1508537,0.15652105,-0.32587987,0.80508024,0.7024179,-0.0730105,-0.26440594,-0.2224091,-0.13803175,0.22578499,-0.19539161,-0.1492149,0.011932265,-0.59026206,-0.25983572,0.114722304,0.22559075,0.18005018,0.06477046,-0.12251997,-0.041939266,0.18810129,0.4895721,-0.39309317,-0.17264621,0.40348712,0.12973757,0.13896574,0.2476901,-0.23101854,0.5274682,-0.4799412,0.115824506,-0.5171836,0.05142855,-0.03941854,-0.18653145,0.1821007,-0.0474841,0.36657792,-0.15035766,-0.22755244,-0.3527671,0.6577257,0.24914351,0.3180889,0.6961205,-0.2108912,0.032037806,0.10039022,0.57383716,1.2626265,-0.2123997,0.09693317,0.3505799,-0.24351113,-0.51081187,0.14958945,-0.29854095,0.05196266,-0.22708473,-0.3063442,-0.47608623,0.23318878,0.082343765,-0.09322819,0.107386254,-0.41635013,-0.30166215,0.4591758,-0.3021075,-0.34159642,-0.29631388,0.34324715,0.704069,-0.40368205,-0.2715347,0.06336513,0.16916001,-0.18149048,-0.52701104,-0.002888374,-0.2338897,0.25692576,0.18692252,-0.37848714,-0.017764773,0.3840081,-0.2534323,0.09469223,0.4223658,-0.33697593,0.036341958,-0.121153675,-0.2265847,1.1468087,-0.013577394,-0.03640464,-0.6615405,-0.478547,-1.0726542,-0.47639585,0.42564383,0.15529187,0.042059872,-0.4374007,-0.00012510642,0.03628414,-0.013356354,0.0012644455,-0.44405863,0.40828145,0.1251373,0.42354995,-0.0029800795,-0.72407293,-0.20323062,0.09164055,-0.21269041,-0.5276905,0.4960681,-0.14023094,0.7441386,0.0002935063,-0.022375554,0.20764518,-0.4811644,0.16674095,-0.45039344,-0.19983542,-0.72625357,0.07392794 -216,0.34862882,-0.2425614,-0.72098863,-0.1476869,-0.2431171,0.19051394,-0.3216853,0.12851691,0.42616102,-0.50674146,0.042660255,-0.2904563,0.063643135,0.28780887,-0.13516697,-0.743252,-0.1565683,0.3660411,-0.22569782,0.33878836,-0.3720794,0.31126297,0.3287429,0.39136553,-0.13858347,0.049357966,0.3533312,-0.30912378,-0.16226928,-0.53338474,-0.059890684,-0.13509284,-0.7122247,0.2808654,-0.1669958,-0.18324834,0.24278833,-0.4286936,-0.39605153,-0.69961077,0.36759904,-0.95648444,0.8841164,0.13951449,-0.14883512,0.13885735,0.31946558,0.07688308,-0.02016993,0.27943724,0.35011554,-0.55030584,-0.5186556,-0.21056956,-0.34047413,-0.6243633,-0.6734205,-0.14601716,-0.49827892,-0.09744525,-0.49320272,0.34951243,-0.33999944,-0.009664568,-0.22676225,0.5218265,-0.31765854,-0.1655318,-0.12143776,-0.43815377,0.42866465,-0.7975985,-0.12805603,-0.07593956,0.007995096,0.11152923,-0.056589022,0.14321545,0.123359464,0.40492153,0.08281843,-0.24172892,-0.47184646,-0.04159784,0.12102905,0.56081814,-0.21112837,-0.39112636,-0.18816067,0.037172142,0.49989355,0.16775304,-0.0935013,-0.4162761,0.11980268,-0.23807034,-0.25386325,0.7129972,0.64343053,-0.20141731,0.26431262,0.31450847,0.17930041,0.29572532,-0.11976112,0.08212744,-0.04512506,-0.4446745,-0.0916395,0.13166666,-0.29363117,0.63571554,-0.13277403,0.06717292,0.62230617,-0.2041463,-0.012875303,0.017838685,0.14952634,0.0862785,-0.09776902,-0.253437,0.48858902,-0.4470621,-0.06745973,-0.58605295,0.8625828,-0.19345576,-0.81791615,0.33541694,-0.5770457,0.10936501,-0.21264262,0.7772757,0.5733636,0.8625151,0.15168108,0.88450885,-0.36286563,0.17136365,-0.02619247,-0.32727468,0.26024222,0.122389205,0.17345859,-0.45215848,-0.07335859,-0.18581416,-0.15324391,0.023921115,0.66106147,-0.3197587,-0.13968095,0.1750617,1.0198547,-0.34365046,0.0029593597,0.39727372,1.4878582,0.8108513,-0.015075654,1.4477787,0.13378328,-0.23954608,-0.49899703,0.12932533,-0.9504339,0.12720394,0.35222757,0.08272392,0.0941968,0.28075588,-0.02777818,0.34999874,-0.6014674,-0.2631617,0.008474719,0.35792246,-0.09044948,-0.14019077,-0.44036695,-0.10859155,0.32057732,0.1864626,0.23679656,0.33715156,-0.31500053,0.48957264,0.18635978,0.93511623,-0.2061634,0.08525772,-0.06733372,0.38459322,0.14960217,0.20703055,0.13583463,0.157745,0.39293683,0.06403015,-0.58458686,-0.022030098,-0.07610598,-0.4767885,-0.4523489,-0.1508054,-0.058903825,-0.12187858,-0.10351873,-0.3806546,0.13013405,-0.5218994,0.27161816,-2.3178353,0.043784786,0.04245899,0.42558458,-0.018005459,-0.23750778,-0.060291722,-0.40499738,0.77555466,0.3074076,0.5109611,-0.4503977,0.40828755,0.61118865,-0.43864536,-0.2520356,-0.67009884,-0.12591672,-0.3094847,0.5067964,0.08617518,-0.44719136,-0.13316402,0.25483286,0.6634762,0.20324607,0.23542951,0.21970691,0.47866553,-0.16596887,0.48023227,-0.060654357,0.6124697,-0.11994052,-0.23267795,0.15744658,-0.3076273,0.12931833,-0.5550714,0.068750136,0.39642698,-0.38641107,-0.7189457,-0.4353404,-0.03455268,1.1872772,-0.46090928,-0.9427671,0.2615476,0.2006252,-0.13437237,0.33441374,0.45911214,-0.3733301,0.12757793,-0.7341654,0.014312821,-0.122943096,0.29327258,-0.0024974414,0.10091709,-0.76363236,0.8881846,-0.17158224,0.5088184,0.6116443,0.36735937,-0.32291967,-0.6057985,0.23686689,0.98809916,0.4021354,0.03996418,-0.33502325,0.02369522,-0.086310655,-0.35115167,-0.040950473,0.72454095,0.9330273,-0.1060472,0.06348397,0.31307608,-0.3901045,0.023798162,-0.103132084,-0.745102,-0.17462236,-0.10651097,0.6845122,0.5526949,0.033403374,0.46047097,-0.05849582,0.7413304,-0.17705896,-0.33668897,0.6154773,1.0861739,-0.18963741,-0.1371785,0.97300756,0.52187914,-0.23908973,0.608551,-0.73209095,-0.5310212,0.45736617,-0.008985118,-0.7083841,0.17574495,-0.4631221,0.00055206905,-1.1403431,0.35961232,-0.20211996,-0.6841187,-0.6943293,-0.331226,-2.9034927,0.06247938,-0.54216826,0.046628322,-0.32154667,-0.0060899314,0.26995027,-0.41992322,-0.58523154,0.12678042,0.1975627,0.51134396,-0.16670987,0.18541393,-0.18703292,-0.11873138,-0.020717047,0.43412,0.2054957,-0.12634635,0.0047116983,-0.5339339,0.22637601,-0.21916999,-0.29070985,-0.12070658,-0.48144618,-0.1544807,0.051358998,-0.6744009,-0.31487882,0.5582779,-0.5562651,-0.16906959,-0.31321195,0.25340703,0.08602391,0.22955702,-0.24345355,0.35659006,0.09473465,-0.13842903,0.1423513,-0.17072493,0.22626644,0.15349928,0.16222285,0.44035622,-0.16240126,-0.13315701,0.620349,0.47653922,-0.16967875,1.0443372,0.4459035,-0.22058764,-0.0121054975,-0.3556735,-0.47195676,-0.6752624,-0.19220716,0.012733817,-0.46041203,-0.23502478,-0.01958432,-0.36553183,-0.8987066,0.67690253,0.21628116,-0.057783544,-0.037234303,0.29397365,0.26314905,0.0020529493,-0.06916228,-0.23748149,-0.11286106,-0.37926102,-0.14986916,-0.79383564,-0.33580273,-0.2774515,1.1117369,-0.06161434,-0.12278405,0.33362657,-0.16810133,0.14907669,0.15357676,0.066188425,0.21339975,0.5594869,0.3810875,-0.9266481,0.40357444,-0.27800408,0.14176339,-0.8866568,0.16353844,0.61413133,-0.8963747,0.32241714,0.76715356,0.20622416,-0.39362317,-0.688898,-0.27679077,0.2621741,0.010765564,0.40733662,0.02832946,-0.63927174,0.8606236,0.30200663,-0.20123424,-0.8063174,0.3927599,-0.0400085,-0.34356305,0.07917158,0.40998796,-0.033163562,0.1640541,-0.33405802,0.2319943,-0.2501074,0.56175405,-0.059402738,-0.05008799,0.4766537,-0.19693056,-0.16376938,-0.9851431,0.10049265,-0.3804289,-0.3157223,0.25403446,0.0031467623,0.058173403,0.27672604,0.08720712,0.41890147,-0.41796312,0.13756509,-0.28751996,-0.3508303,0.6185699,0.4806839,0.3617852,-0.39368182,0.8017463,0.034824505,-0.30090964,-0.2328319,-0.13892837,0.45120466,0.011934594,0.3946748,0.041842844,-0.14673692,0.18466191,0.8395168,0.06767017,0.34092474,0.17603672,-0.023087831,0.54555213,-0.092207,0.16955541,-0.09057468,-0.7415453,-0.19446464,-0.22056602,-0.023792136,0.42287654,0.28573787,0.74002516,-0.09106739,-0.11878573,0.07090823,0.040263478,0.087309435,-0.93963224,0.41028702,0.16891031,0.5344706,0.60924417,0.064310044,0.18385229,0.8034782,-0.30040896,-0.10416773,0.26516446,0.18245354,-0.18670025,0.60211486,-0.601307,0.16001818,-0.2676867,0.10544805,0.20459796,0.13680865,0.5011607,1.125624,-0.1267733,0.18046027,-0.054026898,-0.099761195,-0.011371165,-0.27931193,0.18610169,-0.23763813,-0.40030086,0.82357234,0.17870575,0.4111107,-0.17599483,-0.15503234,0.4211665,-0.12222524,0.41794488,0.12814215,-0.25611025,0.0034356334,-0.72473055,-0.18204013,0.5192632,0.38154414,0.019304514,-0.037382547,-0.09393323,0.3569438,-0.026820077,-0.25081024,-0.0325825,-0.5247241,-0.20457385,-0.382018,-0.59289324,0.31012508,-0.09010622,0.22513662,0.040726032,-0.043446336,-0.023338003,0.030472403,0.41282034,0.6571219,0.31680477,-0.3749015,-0.14936465,-0.28467488,0.16896053,-0.3116862,-0.16797315,-0.1563654,0.18831353,-0.6073607,0.4577734,-0.6369017,-0.34280097,0.3524597,-0.41548574,-0.21238221,0.39420292,-0.096669264,-0.08671873,0.6663393,-0.058570568,-0.211385,-0.34652594,-0.52717537,-0.024583517,-0.28824338,-0.11789942,-0.31985885,-0.16682325,-0.22983271,0.3266084,0.16349143,0.11069905,0.39590606,0.30899718,-0.41714647,-0.26841205,0.026604118,0.67702365,-0.28207806,0.05902525,-0.2637998,-0.50604796,-0.27279755,0.054789305,-0.12744409,-0.017249541,0.14405802,-0.4449596,0.85676,-0.029385038,1.0121169,-0.15386955,-0.47699234,-0.008757147,0.67202747,-0.1188255,0.024693608,-0.5173541,1.1608325,0.7854626,-0.19708386,-0.3257009,-0.9591828,0.12162199,0.40036538,-0.31586823,-0.38161704,-0.32853886,-0.69549775,-0.3481436,0.3490033,0.2983317,0.008818606,-0.04715886,0.2808158,0.2640154,0.26270536,0.3923009,-0.71277446,0.037360128,0.46325186,0.1792122,0.0096342405,0.22782773,-0.28283122,0.13746575,-0.4857089,0.1545222,-0.48428395,-0.10766497,-0.07562726,-0.20349954,0.24550605,0.004479414,0.13056467,-0.24434708,-0.19172853,-0.08230898,0.5682928,0.08590882,0.30199406,0.7170857,-0.15519439,0.052725777,-0.08332863,0.6289553,1.3841217,-0.36592302,0.29696968,0.30801082,-0.38442668,-0.55030364,0.25476804,-0.34281206,-0.19200724,0.041811977,-0.4630785,-0.62249225,0.16584063,-0.18803245,-0.27187067,0.186592,-0.22841696,-0.21614335,0.36650077,-0.19565023,-0.21138836,-0.043015834,0.046423838,0.6072285,-0.25612468,-0.13295613,-0.15890317,0.3264631,-0.31733704,-0.6961459,0.061665222,-0.36038625,0.4480677,0.2564611,-0.35639358,-0.0092502665,0.15468857,-0.6789912,0.025391113,0.2932162,-0.21275754,-0.022548482,-0.30625063,0.26461914,0.5751569,-0.20436253,0.09333501,-0.7015986,-0.56525785,-0.9548527,-0.039325118,0.0664197,0.1805657,-0.05321674,-0.78471684,-0.089419775,-0.31284487,-0.096374676,-0.17054339,-0.7156057,0.223497,0.09946448,0.7224709,-0.3200951,-0.8378912,0.21915509,0.13012472,-0.416286,-0.5533999,0.6764594,-0.023897069,0.8368173,0.13230024,0.019048238,0.1429697,-0.7319639,0.3187707,-0.11654537,-0.33873776,-0.73460096,0.20297828 -217,0.38973406,-0.0604737,-0.42929268,-0.18461321,-0.3153701,0.080991276,-0.05440733,0.42913416,0.087869205,-0.5678235,-0.18530218,-0.17973496,0.044840608,0.4123194,-0.07733996,-0.74204457,0.19520864,0.24448936,-0.5616765,0.5339146,-0.4539008,0.41929922,0.20175804,0.10654359,0.15603817,0.26042223,0.3366051,-0.31729954,-0.030742748,0.018182065,-0.39739043,-0.032159757,-0.44329286,0.31851795,-0.073389046,-0.35517663,0.10453377,-0.28260043,-0.4187853,-0.64868397,0.28574798,-0.70386964,0.39968273,-0.04905939,-0.11892628,0.12450024,0.16148742,0.4189084,-0.20094912,0.061284292,0.21891865,-0.044981055,-0.28280157,-0.13729988,-0.16780008,-0.5676197,-0.55474657,-0.02431406,-0.37858412,-0.22314365,-0.42916754,0.1353428,-0.2872621,0.011467202,-0.12668972,0.32430866,-0.34177542,0.0615479,0.21693143,-0.12429981,0.09900563,-0.48143578,-0.041603517,-0.09147032,0.31272045,-0.16322437,-0.20112813,0.3995423,0.29506984,0.499902,0.12957944,-0.14377855,-0.22396031,-0.15033783,0.24093078,0.62777287,-0.027923618,-0.55156887,-0.16976252,0.007281908,-0.10749133,0.040126078,0.050828606,-0.38668332,-0.05699438,0.018612996,-0.42562607,0.43953234,0.3666812,-0.34094962,-0.37561002,0.41984367,0.45639017,-0.020160943,-0.12927507,-0.00954482,-0.09523297,-0.5829491,-0.19129963,0.07486032,-0.16162403,0.46332672,-0.21276546,0.306428,0.60873646,-0.16888067,-0.03748291,-0.0030378103,-0.10073437,-0.008832766,-0.13803707,-0.054165363,0.06493872,-0.6079146,0.05954197,-0.21052255,0.8505898,0.26431736,-0.5907749,0.3916584,-0.48694345,0.26234522,-0.16349602,0.4293074,0.6109885,0.33742914,0.078215316,0.8214038,-0.47379258,0.22762395,-0.085908756,-0.53429335,-0.06140233,-0.12918669,0.02164352,-0.43970856,0.13562551,0.017552542,-0.0068921605,-0.049270462,0.41199937,-0.49428013,-0.13453884,0.03555603,0.9782247,-0.33162227,-0.1041716,0.6101895,0.89847094,1.0498028,-0.018289099,1.1976175,0.2311071,-0.38975453,0.34491593,-0.48431942,-0.6479085,0.28563404,0.44606808,0.40326267,0.12786524,0.13273655,0.026229104,0.29888806,-0.43222895,0.07960496,-0.25564954,0.16279764,0.094393454,-0.18719019,-0.41248196,-0.26102188,-0.08893285,-0.015155026,0.13724712,0.20792116,-0.2245659,0.38863617,-0.08019536,1.6323861,0.060449593,0.08126695,-0.005411234,0.5129681,0.14865533,-0.06380921,-0.0822951,0.18300512,0.34352466,0.00045641564,-0.54833955,0.023055146,-0.29470968,-0.5789594,-0.08943331,-0.35041162,-0.07328304,-0.13126229,-0.36733368,-0.12179351,-0.0008647197,-0.29294035,0.5386439,-2.6250768,-0.23705436,-0.14249349,0.36116105,-0.20565401,-0.2968516,-0.06767456,-0.5137958,0.38206035,0.32383275,0.59374183,-0.59385747,0.5648631,0.3408403,-0.5446457,-0.08795854,-0.6188097,-0.09181956,0.06056419,0.4025629,0.042203963,-0.0465031,-0.095398545,0.032755252,0.45898262,-0.18572031,0.04229526,0.17634137,0.36322573,0.26878676,0.543223,0.13554512,0.5703312,-0.2772545,-0.019148579,0.32876128,-0.2484325,0.3453209,-0.087748885,0.089097925,0.33345458,-0.4204785,-0.8446136,-0.68745434,-0.28657755,1.0082533,-0.18974447,-0.14462705,0.25703755,-0.31171486,-0.10152552,-0.08997793,0.32455748,0.029142026,-0.18240823,-0.697178,0.05346007,0.00232324,0.15131196,-0.09608445,-0.036592424,-0.37339634,0.7575467,-0.027544653,0.4836288,0.20924045,0.20857036,-0.16283707,-0.30714366,0.0496952,0.9406398,0.20070735,0.16518784,-0.14056437,-0.2903791,-0.60182345,-0.2229334,0.03473492,0.5413815,0.8010303,-0.0051295543,-0.034510314,0.25706822,0.02686788,-0.011164137,-0.15311599,-0.22328672,-0.07312095,-0.04187217,0.5559916,0.3707462,-0.098248206,0.6130038,-0.112983145,0.2694084,-0.27546936,-0.46955284,0.46460083,1.069319,-0.23016752,-0.2553677,0.4280557,0.44666988,-0.18706618,0.37646034,-0.712543,-0.3914618,0.54030097,-0.054317262,-0.2643007,0.10442071,-0.2978739,0.21464966,-0.94585216,0.29258546,-0.24719417,-0.740328,-0.43825778,-0.11651553,-3.5917766,0.16656439,-0.15501721,-0.09900924,0.05903176,0.16173795,0.061855704,-0.364727,-0.456553,0.17029206,0.07178859,0.7584842,-0.019742263,0.23252988,-0.24313875,-0.0657965,-0.39040378,0.19550554,-0.102207184,0.2493536,0.007190875,-0.42051116,0.03163262,-0.19318032,-0.35984498,0.21067241,-0.7642108,-0.54781824,-0.13456905,-0.31744814,-0.3767894,0.6483426,-0.4381583,0.14225043,-0.1290178,-0.0130873965,-0.22900613,0.26523718,0.11094625,-0.005288769,0.01606425,-0.08116986,-0.045555312,-0.25989896,0.3389956,0.11610383,0.58272207,0.3415043,0.013137,0.11018909,0.6116724,0.6217452,0.06019095,0.71205646,0.32472423,-0.119790874,0.31644025,-0.19889198,-0.09178763,-0.45005533,-0.3702212,-0.13220714,-0.31938356,-0.52738,-0.057572246,-0.34409484,-0.705854,0.27951,0.16060056,0.018384645,0.046619333,0.30747724,0.45016408,-0.17420118,0.06854959,-0.028437618,-0.08070786,-0.64072675,-0.4261305,-0.63710266,-0.47268948,0.16343041,1.0583843,-0.19773997,-0.13889137,-0.12914371,-0.28726846,-0.08612188,0.22560365,0.018130656,0.19640912,0.34103426,-0.30140015,-0.80391484,0.57374555,-0.21566913,-0.05175216,-0.49059612,0.0874486,0.4545409,-0.70184743,0.2986506,0.3110991,0.09103326,0.16437873,-0.32376167,-0.26678327,-0.07709223,-0.26688507,0.22185786,-0.023875728,-0.7292891,0.40870067,0.3095363,-0.20976844,-0.71466523,0.5276121,0.13177727,-0.20465958,0.0697126,0.21086751,0.16767628,-0.0885641,-0.2025954,0.14513016,-0.47519857,0.39087453,0.32588392,0.12794212,0.08272714,-0.27055642,-0.20459768,-0.67355984,-0.20337558,-0.2917333,-0.05104404,0.21828733,0.09126334,0.22992297,0.17220013,0.14240703,0.26436943,-0.2275569,0.059751175,-0.075257406,-0.29750198,0.29736826,0.34064752,0.3119579,-0.50917375,0.5817534,-0.041264314,-0.003646144,-0.046759784,0.06155359,0.39732566,0.1597134,0.4688,0.086519755,-0.30639777,0.2739494,0.91781706,0.3789946,0.24703096,0.13342337,-0.17892054,0.30940625,0.09306189,0.058361106,0.22559237,-0.5021229,-0.053520646,-0.17190002,0.15087168,0.39659324,0.07837837,0.21580578,-0.07230176,-0.2164581,-0.029244807,0.043216202,0.044369582,-1.2399777,0.48756647,0.3438926,0.75472766,0.52044696,-0.1737128,0.075447366,0.58775276,-0.16578582,0.2634404,0.27672273,-0.28892294,-0.53258264,0.4031646,-0.559507,0.61353976,-0.06949032,0.029643008,0.06632038,-0.08538739,0.31611776,1.0362886,-0.23357406,0.07792287,0.10866026,-0.4114302,0.22828004,-0.38982153,-0.0027812123,-0.70040935,-0.16414197,0.6113343,0.41901925,0.11996733,0.052105155,-0.0023631975,0.007119396,-0.13589457,0.16728266,-0.0041775447,0.13980062,-0.030139128,-0.7003783,-0.20577069,0.54039997,-0.15723002,0.2415435,0.25121647,-0.17443337,0.36967987,-0.082638755,0.012531452,-0.20956731,-0.5101409,0.008337106,-0.18236116,-0.20999178,0.41256377,-0.028928343,0.37363657,0.23824444,0.081092134,-0.31795308,0.37694576,0.047500484,0.5274994,-0.007817413,-0.32172948,-0.47456455,0.088696636,0.18316555,-0.25518316,0.082669504,-0.28612635,-0.1302842,-0.7908155,0.4666755,-0.00020213638,-0.25796127,0.15879002,-0.12655236,0.02350544,0.48327044,-0.056458175,-0.13039574,-0.08095123,0.091896005,-0.086072154,0.0713629,-0.10074549,0.22265856,0.046682008,-0.06924115,-0.117704906,-0.13791595,0.03308413,0.3729278,-0.023736274,0.37530518,0.23690894,0.12689593,-0.3428749,-0.08976887,0.27613607,0.4916556,0.07701112,-0.035756387,-0.052915145,-0.19730647,-0.3678393,0.064622924,-0.21229468,0.33136916,0.17502871,-0.38382545,0.5275865,-0.12597148,1.3792799,0.06945937,-0.31267843,0.086786985,0.6105134,0.08275799,0.052472044,-0.28147,0.84165984,0.48664507,-0.12727574,-0.19626155,-0.35479927,0.09212633,0.22101244,-0.1654173,-0.24228738,0.13700412,-0.6381172,-0.28056738,0.10907408,0.16428259,0.30428043,-0.029138407,-0.08848059,0.2022324,-0.043001838,0.36494783,-0.5698825,-0.24841377,0.23233427,0.27542487,0.06054262,0.105835356,-0.5245411,0.46689343,-0.5119722,0.071948014,-0.11618084,0.13039063,-0.22589697,-0.270516,0.28574854,0.23432074,0.40287563,-0.2437989,-0.38433293,-0.35028315,0.5578755,0.16952841,0.26087362,0.59251106,-0.17646606,-0.16914184,0.14360155,0.41708803,0.9500321,-0.24049915,0.01700442,0.41261634,-0.4425413,-0.45261267,0.23841187,-0.31104258,0.08952244,0.16724338,-0.22443832,-0.60672647,0.35526276,0.19113347,-0.05849431,0.16443653,-0.6437277,-0.32030982,0.14343795,-0.32826573,-0.42497465,-0.45680207,0.2383606,0.60619676,-0.42889684,-0.08991202,0.20820156,0.12229563,-0.3020541,-0.63520986,-0.010084225,-0.43169895,0.399831,0.13584308,-0.26627824,-0.16508792,-0.039588623,-0.39481667,0.27964535,0.23522142,-0.44098458,0.0778627,-0.37022546,-0.28265816,0.8298831,-0.09162295,0.17705737,-0.5449863,-0.23628037,-0.76602453,-0.4636869,0.6593016,0.20833349,-0.11635566,-0.4164599,-0.24073628,0.14246896,-0.13184814,-0.075088754,-0.48802114,0.5025162,0.07634127,0.21211858,0.020949427,-1.0529773,-0.005373712,0.20512421,-0.282319,-0.51445544,0.40423244,-0.0902464,0.94221085,0.1443434,0.091494076,0.43469253,-0.43825206,0.026743433,-0.28759104,0.029625697,-0.58727163,0.14386389 -218,0.46949074,-0.12914278,-0.63483095,-0.14160185,-0.29058287,0.0640402,-0.25576073,0.4453448,0.20464294,-0.5487543,-0.16093123,-0.27017933,0.006469811,0.47542152,-0.19936979,-0.6925931,-0.023808716,0.1665434,-0.520467,0.5167991,-0.36054158,0.23739684,0.14626145,0.37576112,0.3820141,0.31194434,0.25693536,-0.26383677,-0.363522,-0.054523557,-0.058377974,0.10590084,-0.58832365,0.12409938,-0.2056919,-0.5135255,0.069668114,-0.4907861,-0.34827647,-0.6532317,0.3460947,-0.8182368,0.39561194,-0.08687709,-0.11777624,0.15881607,0.17364399,0.5359934,-0.21652804,0.027157156,0.07600373,-0.1744768,-0.058812372,-0.0066223284,-0.22234176,-0.36943343,-0.51864237,0.07805036,-0.4150901,-0.19368216,-0.17737257,0.09432144,-0.36604753,0.18854734,-0.08972602,0.41563618,-0.43498713,-0.13309297,0.27671027,-0.15789512,0.2769594,-0.50353587,-0.1809919,-0.17061752,0.22085527,-0.20205595,-0.112364516,0.3647831,0.29716447,0.5460248,0.0876398,-0.24528815,-0.34050632,-0.045283206,0.22167721,0.48874316,-0.18604076,-0.52138877,-0.25744042,0.0029908146,0.3541671,0.09390768,-0.028682355,-0.3550232,-0.015701083,0.13767298,-0.33539823,0.26425904,0.45467725,-0.21158803,-0.1597564,0.2225354,0.5065166,0.1835579,-0.17600818,-0.0045642396,0.03469494,-0.48539042,-0.18021773,0.16449897,-0.2184604,0.5068651,-0.035336155,0.16523297,0.6893665,-0.23633993,0.13362461,-0.09090657,-0.038909722,-0.18514258,-0.24680379,-0.29447803,0.24945371,-0.537409,0.17497116,-0.21422184,0.8456147,0.2730269,-0.7279517,0.30415246,-0.5741762,0.23539114,-0.053513426,0.44318908,0.6519725,0.3905384,0.29635826,0.61058605,-0.4239018,0.20939817,-0.2097678,-0.42125794,-0.01361869,-0.21854869,0.027071036,-0.36897296,0.07150325,-0.043857105,-0.08425746,0.071789235,0.29439372,-0.48477668,-0.041855525,-0.03860865,0.9522326,-0.2768295,-0.021892702,0.6919656,0.90693843,1.0134435,0.017164083,1.1546628,0.26821384,-0.34624645,0.24127229,-0.2009131,-0.6617368,0.29760665,0.39410433,-0.28465933,0.30990937,0.099617384,0.08352011,0.47056597,-0.39200225,0.18799187,-0.23150726,0.12946752,0.044000935,0.0028210317,-0.3948031,-0.20736492,-0.052077897,-0.037052047,-0.045129314,0.23000593,-0.15316392,0.44239148,0.07111575,1.8249059,-0.07526557,0.0777551,0.05331209,0.46988252,0.09082481,-0.0065645636,-0.0379632,0.103281595,0.22873875,0.024438953,-0.5458187,-0.011877501,-0.28151175,-0.5076397,-0.16140115,-0.24880168,-0.11708552,-0.11713853,-0.5069037,-0.119358346,-0.113953814,-0.22942433,0.392078,-2.412691,-0.255474,-0.18312632,0.17931743,-0.43455487,-0.37109038,-0.113382876,-0.47562256,0.43669268,0.30460048,0.5361692,-0.701612,0.4249824,0.35229155,-0.46159643,-0.120716654,-0.6646933,-0.13912264,0.00023832041,0.3554647,-0.05691451,-0.17242688,0.0338169,0.12895706,0.45578936,-0.24736612,0.05531763,0.16592379,0.31515792,0.21982355,0.6279748,-0.047012683,0.52210236,-0.38901556,-0.13046181,0.3667679,-0.3750206,0.15219285,0.010975992,0.18394473,0.34091192,-0.50765926,-0.91417426,-0.69725424,-0.3491571,1.1440412,-0.1992336,-0.2668012,0.23547758,-0.24824078,-0.11546404,-0.029654594,0.27858952,-0.090776,0.050613303,-0.8245063,0.07134096,-0.14926991,0.09953266,0.117743425,0.057513006,-0.26226154,0.5927039,-0.02960853,0.32574415,0.5139763,0.27533114,-0.17002527,-0.42839536,0.12998493,1.0199689,0.30717283,0.19737785,-0.19993083,-0.20654356,-0.39060682,-0.17467827,0.13880716,0.32150844,0.7832663,-0.014196894,0.076324776,0.21811251,-0.024894306,0.028731298,-0.10212505,-0.43641624,-0.13601764,0.06699699,0.56895274,0.5995509,-0.16424179,0.50358367,-0.10782452,0.32414937,-0.1450216,-0.44511324,0.5511597,0.81624717,-0.22571859,-0.2162092,0.39532408,0.551339,-0.24983527,0.46415946,-0.62407225,-0.41227704,0.553882,-0.15842783,-0.44693688,0.20410866,-0.39064535,0.13299008,-0.9774231,0.24016151,-0.3856854,-0.21184796,-0.513722,-0.15919618,-3.35905,0.09811414,-0.14067192,-0.251669,-0.09066466,0.012561777,0.19048916,-0.664463,-0.6413351,0.10840076,0.08207923,0.69285756,0.08160791,0.13882111,-0.2885778,-0.18846238,-0.23663038,0.03259648,0.20675601,0.17663825,0.06105923,-0.6059816,-0.17967457,-0.2947125,-0.4252163,0.13159777,-0.58366275,-0.52678144,-0.22262043,-0.53121996,-0.43146566,0.63149136,-0.3579321,0.057146877,-0.10603267,-0.03477877,-0.181132,0.30398315,0.13659385,0.067536004,0.11692036,-0.07172903,0.053281978,-0.33696488,0.12174525,0.18211804,0.29741076,0.37521636,-0.058643408,0.22556531,0.56358737,0.74290043,-0.06659194,0.8330638,0.51962596,-0.118706,0.39740804,-0.4225099,-0.30861068,-0.5370589,-0.29365432,-0.112895526,-0.2782575,-0.40904427,0.023612313,-0.37608775,-0.77563435,0.57579476,0.032749254,0.057349823,-0.06079746,0.08617344,0.4467355,-0.23623186,-0.11655269,-0.06592059,-0.08693746,-0.5675117,-0.3635853,-0.74157405,-0.6015197,0.105757326,1.1559349,-0.04569402,-0.07737018,0.06987908,-0.23644316,0.0828135,0.026771804,-0.013580606,0.11861998,0.4217287,-0.10806204,-0.7186894,0.46255848,-0.07647729,-0.14629498,-0.5636783,0.13997883,0.7613089,-0.64328337,0.405302,0.44481733,0.05220951,0.05476732,-0.3668214,-0.10068466,-0.09380351,-0.17652197,0.33037344,0.100487486,-0.57914025,0.45281175,0.42157176,-0.3021044,-0.79504335,0.4433139,0.12440544,-0.096118264,-0.01690615,0.33109567,0.21500412,-0.09296125,-0.1872732,0.0665094,-0.50651604,0.24612772,0.4164119,-0.08771613,0.34354708,-0.12251007,-0.23213933,-0.81782013,0.044918768,-0.38959724,-0.18702507,0.26430145,0.10934275,0.13682353,-0.059042305,0.029047359,0.2887432,-0.2556459,-0.020629862,-0.13557456,-0.23295113,0.37694004,0.4248793,0.4170118,-0.4342537,0.61062104,0.015990293,-0.050702356,-0.02678233,-0.020260205,0.4606326,0.16156429,0.2393355,0.12989955,-0.3214227,0.25514913,0.7370294,0.19746582,0.4779974,0.115031265,-0.2436278,0.23540261,0.19786581,-0.07158448,0.23671156,-0.43642965,-0.06470842,-0.025212422,0.11619983,0.47208938,0.20440505,0.41019797,-0.035824627,-0.2595867,0.010716478,0.108662955,-0.087349236,-1.323277,0.3920329,0.15933764,0.7167286,0.59448826,-0.024261085,0.15750268,0.5623674,-0.21506691,0.16234636,0.4250542,-0.1671407,-0.5360447,0.6336006,-0.6681463,0.51504946,0.030960217,0.10910587,0.071306616,0.042460352,0.51636237,0.73673767,-0.06609245,0.115227334,0.0017824523,-0.32197958,0.036465842,-0.30452538,-0.08160893,-0.46986175,-0.23248552,0.5810465,0.39369038,0.29664052,-0.102379546,-0.06638682,0.026404629,-0.09578133,0.24808797,-0.05996987,0.16284177,0.04614855,-0.5914815,-0.38462117,0.5152233,-0.030332537,0.29809344,0.035005935,-0.23009089,0.3177675,-0.07722749,-0.04631032,-0.066048495,-0.60072696,0.018947955,-0.4246685,-0.358989,0.39543977,-0.058568455,0.3416928,0.07533531,0.032742217,-0.3848002,0.49374187,0.066260055,0.7208202,-0.15496525,-0.3285087,-0.19620526,0.063717805,0.35162273,-0.20936537,-0.10459123,-0.25539425,0.0052394797,-0.5390092,0.43552113,-0.119845964,-0.18794467,0.14973338,-0.1677494,0.030199504,0.5478122,-0.19488811,-0.078149736,0.06169263,0.075287946,-0.2688393,-0.16159639,-0.15543468,0.21419632,0.23199567,0.07399984,-0.14092204,-0.14210165,0.03246111,0.45275712,-0.12292056,0.3741318,0.36518165,0.1725661,-0.40966097,-0.19591224,0.2111856,0.427563,0.11971639,-0.115181506,-0.3405032,-0.3004097,-0.30105236,0.11558424,-0.16272295,0.23788245,0.16477752,-0.43690935,0.902394,0.006302469,1.2986652,0.004194042,-0.38886338,0.074976414,0.34477633,-0.12730004,0.074916236,-0.40822577,0.8374111,0.5370167,-0.11608588,-0.19845657,-0.45305118,-0.120180525,0.17149617,-0.2526533,-0.16635294,-0.004002895,-0.51786804,-0.40081707,0.2692375,0.34030476,0.17761329,-0.21255729,0.060694862,0.10821121,0.06615011,0.4230087,-0.42390078,-0.26392746,0.35563043,0.3671928,0.0465531,0.122772865,-0.46998546,0.4284585,-0.5096828,0.03623735,-0.2434173,0.15055686,-0.090101555,-0.31021667,0.31351408,0.029061764,0.39052403,-0.44815984,-0.34773535,-0.25111875,0.572299,0.02038788,0.15649596,0.71955967,-0.22870874,-0.008025885,0.0155533375,0.54681325,0.987934,-0.31737423,0.039520472,0.4446993,-0.22560929,-0.5084335,0.29374588,-0.30930418,0.1326672,-0.07388073,-0.33111787,-0.66558737,0.3032438,0.23562863,-0.033692893,-0.0027691405,-0.5695876,-0.1321699,0.3172891,-0.3360598,-0.38136774,-0.3807543,0.057885334,0.56580096,-0.32367238,-0.28447488,0.21523486,0.2569542,-0.1271034,-0.36308044,-0.19287863,-0.26961595,0.39498076,0.31509298,-0.34069785,-0.111487836,0.12058279,-0.48097453,-0.019114709,0.17438161,-0.40335643,-0.012299303,-0.24484418,-0.07554827,0.9148694,0.007955845,0.23840058,-0.5796218,-0.3665612,-0.9092606,-0.4131441,0.59696263,0.14721912,0.024642,-0.5851154,-0.034616105,-0.045030624,-0.15251757,0.019086147,-0.44269866,0.43557557,0.10575984,0.47102287,-0.15516102,-0.58314514,0.11423882,0.16211048,-0.108835384,-0.55019736,0.490431,-0.078613184,0.8876763,0.07879962,0.0599608,0.3667083,-0.453372,-0.13631962,-0.2550039,-0.2586124,-0.7021215,0.07855742 -219,0.27692732,-0.1817098,-0.34288037,-0.16793095,-0.3677078,-0.007027169,-0.23906921,0.16869803,0.1392662,-0.34280646,-0.22010233,-0.16386077,0.020888202,0.19059542,-0.13658123,-0.61908776,-0.18729696,0.07936623,-0.7471935,0.37550232,-0.6536644,0.29341313,0.10193381,0.24636889,0.06296376,0.5081788,0.27076778,-0.22097273,-0.06607088,-0.012409735,-0.020130659,0.26607487,-0.5553239,0.17129472,-0.19351631,-0.21793383,0.115828656,-0.48001093,-0.14731461,-0.6018149,0.0496165,-0.8981418,0.3503326,-0.07102206,-0.015883517,-0.02709269,0.19947545,0.4453945,-0.28451616,0.13278408,0.29255137,-0.058833424,-0.09452998,-0.11771469,0.03824828,-0.2346346,-0.42579022,-0.0032634235,-0.5564728,-0.4115534,-0.16589458,0.14238253,-0.3277979,0.032492816,-0.10124224,0.17781763,-0.46577656,-0.056417547,0.26994947,-0.085354604,0.13413845,-0.4886948,0.09326904,-0.08334357,0.60342664,-0.232891,-0.14451632,0.40615642,0.3257691,0.4940693,0.15879737,-0.17469111,-0.07663003,-0.14659634,0.2768171,0.4411662,-0.21032758,-0.2195112,-0.25705793,0.0762342,0.18050757,0.31502336,-0.16267487,-0.3136553,0.057062343,0.013527099,-0.22846852,0.31438032,0.40638745,-0.29191697,-0.34963915,0.41422734,0.66639304,0.09521658,-0.19552271,0.031502757,0.060357586,-0.39459804,-0.16797085,0.2501753,-0.031845536,0.3285233,-0.049530316,0.15941317,0.81991756,-0.24708387,0.23867832,-0.14626375,-0.15926532,-0.15636717,-0.19344464,-0.19076957,0.059074577,-0.50649124,-0.021290159,-0.20439954,0.77543867,0.25592625,-0.80926156,0.43829343,-0.5221158,0.1549236,-0.1854138,0.70205635,0.6926164,0.34184748,0.30176392,0.6944641,-0.31337157,0.31153256,-0.14379829,-0.42397913,0.008246173,-0.14810963,0.10184564,-0.5072421,0.036581263,-0.16778561,0.06738809,-0.16438206,0.14805445,-0.44013032,-0.071864076,0.17825685,0.69584924,-0.41169965,-0.009560029,0.5712688,1.0449733,0.752284,0.064725585,1.1900696,0.3941136,-0.18430024,0.31638488,-0.4528209,-0.72898513,0.14473473,0.43230876,0.0538022,0.17995586,0.005198876,0.035660036,0.25328645,-0.49574697,0.14052303,-0.16489673,0.38720903,0.053163204,0.07703406,-0.3686828,-0.14142394,0.01786324,-0.15056896,0.04204259,0.20692286,-0.14300108,0.21356061,0.053659108,1.4888222,-0.028884359,0.09510994,0.04872047,0.67590225,0.13306235,-0.17072885,-0.12355339,0.41193104,0.36287537,-0.011561958,-0.65031165,0.26018247,-0.16694276,-0.4766629,-0.1281102,-0.40029186,-0.038580798,-0.01109941,-0.33930337,-0.0028835137,-0.049430467,-0.30976903,0.48661086,-2.9017208,-0.1968705,-0.15813619,0.39670223,-0.3574001,-0.24441582,-0.154414,-0.5139481,0.30097884,0.27224264,0.43586546,-0.6660874,0.48394388,0.4898184,-0.36704776,-0.20281158,-0.6937465,0.01694297,-0.05233907,0.4218778,-0.0023180882,0.003285281,-0.11682339,0.13554034,0.46079293,-0.07200546,0.17833589,0.33600876,0.42969024,0.36516267,0.6739548,0.035118464,0.51217365,-0.256946,-0.17892084,0.29276016,-0.24729997,0.22282122,-0.09944449,0.1124959,0.41395283,-0.46035782,-0.85547346,-0.6853219,-0.65947926,1.0282423,-0.44558576,-0.30267483,0.19485371,-0.037376914,-0.037686165,-0.010539878,0.5053898,-0.12908743,0.015844854,-0.7720735,0.20929438,-0.1243398,0.26904544,0.11841056,0.07223471,-0.3861221,0.5301899,-0.16458705,0.5438348,0.22454363,0.17143679,-0.15669407,-0.3050968,0.104900055,0.8665837,0.1877485,-0.02244792,-0.06644421,-0.2923444,-0.1980823,-0.2857998,0.08066075,0.4106248,0.74804455,0.039287157,0.10745462,0.34982675,-0.16627948,-0.042757675,-0.14553611,-0.19309168,-0.01757998,0.1079918,0.4205241,0.49809277,-0.14995575,0.46935737,-0.25290975,0.219625,-0.11957628,-0.44078004,0.5813053,0.40809104,-0.09906245,0.15173079,0.3942383,0.58401936,-0.37367025,0.39636242,-0.62826824,-0.24974014,0.6103952,-0.13205321,-0.40688896,0.1038644,-0.2286531,0.20178786,-0.87255234,0.33783743,-0.35567346,-0.30081502,-0.440872,-0.11079853,-3.1400096,0.09918621,-0.050574865,-0.24911596,-0.10357324,-0.0071289632,0.30865496,-0.57734984,-0.45574963,0.12255974,0.09071951,0.47780335,0.10512107,0.074242085,-0.36676463,-0.032972835,-0.14995092,0.109773606,0.20215024,0.35097212,-0.14023009,-0.42802817,-0.03899342,-0.08153728,-0.40967166,0.16787975,-0.48557737,-0.36214718,-0.10018514,-0.5041557,-0.2831542,0.539461,-0.4069914,0.05598481,-0.19895144,-0.015233,-0.35177526,0.30304697,0.36107597,0.17797966,0.17035276,-0.004251802,-0.13292554,-0.3728289,0.4878403,0.02126997,0.22896951,0.12177207,0.11191269,0.049601115,0.43588176,0.5065309,-0.09147375,0.8978517,0.3174227,-0.19638804,0.23483442,-0.41933373,-0.07231809,-0.5572662,-0.33001855,-0.27106857,-0.2934192,-0.5644559,0.03029073,-0.3498748,-0.77855283,0.5382918,0.100348316,0.24669796,-0.084159516,0.20781283,0.34633324,-0.11570511,0.052082993,-0.08258877,-0.075674616,-0.5443615,-0.3694276,-0.5956503,-0.37952858,0.1959416,0.84664726,-0.2533216,-0.063742116,-0.19020642,-0.18900752,-0.045332566,-0.07015552,-0.014602933,0.43378776,0.40980986,-0.004832258,-0.55480564,0.39911497,0.042473484,-0.08296857,-0.5216589,0.08693042,0.6953599,-0.8260065,0.5828374,0.28284505,0.06350346,0.13823242,-0.43585116,-0.2548392,0.002610762,-0.23084244,0.28907296,-0.083018236,-0.7447205,0.48066753,0.27416354,-0.3024228,-0.69614923,0.4453501,0.05891057,-0.27124676,0.04492741,0.22458628,0.1572451,-0.06247319,-0.36094067,0.274296,-0.37368375,0.18388046,0.12813248,-0.0781944,0.46972913,-0.16237411,-0.3359803,-0.56006294,0.056180518,-0.5043927,-0.2550267,0.33921286,-0.057634767,0.014454526,0.21945086,0.047908712,0.31385326,-0.22345367,0.016023032,0.17873666,-0.22484156,0.01519142,0.37115628,0.28606382,-0.4567239,0.49781224,0.15322222,-0.14139183,0.05897317,0.01968823,0.38259596,0.096053384,0.18399721,-0.016932487,-0.20784539,0.34806904,0.8698236,0.20472272,0.46562448,0.0074098585,-0.09142733,0.510435,0.04903752,0.057965264,-0.002040418,-0.42363688,0.07470653,0.2773399,0.15157832,0.33008182,0.36726886,0.33097354,0.04651262,-0.11534659,0.008718469,0.21967824,-0.093957424,-0.85027176,0.2916042,0.17164822,0.7688885,0.49808258,-0.024287164,0.031523358,0.56593513,-0.4366913,0.17314552,0.34253642,-0.21369615,-0.48387066,0.6421207,-0.5549367,0.34598,-0.07595932,0.020172877,0.09103114,0.08667438,0.23013361,0.64980644,-0.1310173,0.0688365,0.017470049,-0.14575149,0.06781079,-0.26742062,0.07109559,-0.374101,-0.220657,0.6718674,0.3702186,0.27939934,-0.10420626,-0.012843478,0.017099626,-0.22470579,0.13331425,-0.08415541,0.014640258,0.3465388,-0.49497908,-0.3378057,0.7021546,-0.10467599,0.053414155,-0.06685292,-0.35997972,0.17928688,-0.16134173,0.0465971,0.020704322,-0.6746148,0.109669,-0.23362383,-0.24871483,0.3596581,-0.18856035,0.17662197,0.14921993,-0.06698877,-0.24292946,0.33195433,0.2580609,0.6732164,0.020768324,-0.28094998,-0.321338,-0.07340849,0.29678032,-0.29363295,-0.0435534,-0.38842452,0.01721071,-0.53746897,0.5414365,-0.051471017,-0.34774545,0.22843768,-0.27236184,-0.07421206,0.6606013,0.08223081,-0.06672358,0.09105183,-0.22482924,-0.47022927,0.08280266,-0.32127586,0.26762554,0.27422565,0.046559557,-0.08347368,-0.26957008,-0.23259714,0.6098746,0.063516386,0.4678552,0.19980131,0.027868723,-0.21256405,-0.018478941,0.20731373,0.3033772,0.046427734,0.09574381,-0.24932715,-0.19167048,-0.29167327,0.17194675,-0.21495344,0.22691627,-0.013951619,-0.43713775,0.7063058,-0.11494715,1.0846697,0.10016076,-0.2832627,0.055040836,0.44720206,-0.09956291,0.05635976,-0.40715045,0.775834,0.5909042,0.05871513,-0.08680759,-0.46377137,-0.31976274,0.23999391,-0.25368232,-0.11337783,-0.06164274,-0.50307244,-0.46773857,0.3050262,0.18882065,0.04722227,0.04550722,-0.09306741,-0.10584817,0.08928274,0.47386876,-0.6249927,-0.19552751,0.20047665,0.19227369,-0.001072673,0.17376593,-0.40000182,0.47468546,-0.59562,0.16559713,-0.38260263,0.10872249,-0.18265344,-0.20719437,0.06131177,-0.06508986,0.4103703,-0.1414725,-0.5036482,-0.08985733,0.4631912,-0.004686197,0.2376079,0.6425953,-0.19434084,0.15715493,0.038175385,0.55751395,1.0778888,-0.36427853,-0.08789599,0.28611076,-0.35512605,-0.5146166,0.33029646,-0.39111435,-0.1056601,-0.043684233,-0.33615762,-0.29693416,0.25243917,0.20926395,0.02187601,-0.009842966,-0.53182006,-0.061251976,0.21893086,-0.1962529,-0.25087395,-0.16895097,0.4132875,0.9288822,-0.40988192,-0.15391459,0.00688556,0.23902546,-0.25106138,-0.4446963,-0.14409715,-0.2266633,0.25451475,0.16671865,-0.19416457,-0.039424334,0.17952962,-0.3135471,0.07377473,0.2824224,-0.34577507,0.099878475,-0.03832803,0.03507317,0.8641666,-0.042942405,-0.16333039,-0.629095,-0.36266187,-0.8252491,-0.41294,0.34449422,0.2560697,0.037095904,-0.24355395,0.0823691,-0.081705585,-0.32550856,0.08009221,-0.6654307,0.3376028,0.08195004,0.40136483,-0.2135609,-0.8205396,-0.001492091,0.1434506,-0.08942084,-0.6472893,0.62345356,-0.14227273,0.9639463,0.027194027,-0.17009005,-0.045464437,-0.29819712,0.029364133,-0.40772197,-0.20187283,-0.7905384,0.115763 -220,0.39639762,-0.36132666,-0.14507058,-0.20578752,-0.327534,0.19052842,-0.18345799,0.415987,0.4007311,-0.4735767,-0.30340555,-0.27439973,0.16504776,0.58916235,-0.2196802,-0.67744213,-0.060748164,0.053471226,-0.39526558,0.55091304,-0.4140912,0.32657248,0.07876753,0.2782262,0.15405782,0.2674074,0.45272985,-0.12641649,0.010849382,-0.17338622,0.021427244,0.11951872,-0.620685,0.23238781,-0.25010183,-0.48798922,0.19541514,-0.648202,-0.3838894,-0.72063607,0.33656392,-0.8687723,0.49582863,0.14184377,-0.048756484,0.42717487,0.21103534,0.32510373,-0.17023376,-0.049086843,0.047789566,-0.045748364,-0.083998926,-0.074604824,-0.23176305,-0.45665047,-0.64616406,0.05472803,-0.30155846,-0.2335547,-0.18704264,0.0014802387,-0.2642799,0.19567259,0.063988514,0.39095002,-0.45730332,-0.020104425,0.3343728,-0.19772317,0.09661221,-0.51763374,-0.25062767,-0.14078529,0.22012486,-0.2463418,-0.11450632,0.36005265,0.36844525,0.40578637,0.051557545,-0.24975245,-0.34763297,-0.16277981,0.16059491,0.5742666,-0.10347892,-0.55192786,-0.22666936,0.03670737,0.21606116,0.16792892,0.22904758,-0.16955063,-0.035842035,-0.06639256,-0.35368648,0.46956205,0.40120903,-0.39400774,-0.48579785,0.18298419,0.56657565,-0.045216,-0.023022711,-0.028799454,0.11009359,-0.47870132,-0.20002596,0.12527081,-0.28533798,0.49835473,-0.21528761,0.1591607,0.6485282,-0.38567662,0.050055657,0.022025883,-0.00680929,-0.38683578,-0.20686351,-0.30329585,0.3096928,-0.58747596,0.15116116,-0.35851988,0.8769373,0.27437827,-0.58750045,0.30884674,-0.53938717,0.111452855,-0.10024105,0.46824497,0.51642126,0.3387724,0.3161413,0.6616941,-0.50788873,0.10334885,-0.16442935,-0.32886034,-0.0915417,-0.2208991,0.017475596,-0.43366438,0.08367617,0.00629695,-0.09301643,0.22482894,0.21645777,-0.4957068,-0.072234906,0.26329836,0.87779754,-0.3025671,-0.07270182,0.9057065,1.119361,1.0187899,0.029611964,1.2353047,0.48648888,-0.2366952,0.13950236,-0.26795754,-0.72541696,0.14297272,0.4585406,-0.15885971,0.3138397,-0.018765092,-0.005515699,0.15820499,-0.5336409,0.034891937,-0.03182477,0.18938944,0.21447489,-0.004676414,-0.47423837,-0.2356685,0.024261829,-0.13711444,0.26925465,0.27679294,-0.0934164,0.5094448,0.16996871,1.1175768,0.06761473,0.08481906,-0.004479986,0.58896095,0.2743931,-0.0399721,0.043308727,0.13812174,0.30552274,-0.0032534727,-0.699704,0.15152897,-0.2543198,-0.3691828,-0.20928586,-0.30442283,-0.049540345,0.19790074,-0.17846693,-0.18820868,-0.13629584,-0.04226319,0.5102349,-2.6602442,-0.25646228,-0.15450643,0.20556481,-0.27019063,-0.26763067,0.04980613,-0.6417451,0.33608177,0.35621196,0.42381102,-0.68782634,0.18300949,0.5648723,-0.80042523,-0.13397652,-0.650813,-0.17166185,-0.09870811,0.40937915,0.14272974,0.07206786,-0.069877,0.27949423,0.49670428,0.078063354,0.15108876,0.11135527,0.36089638,0.10396366,0.4265963,0.046156954,0.5319939,-0.35036448,-0.17191026,0.32547545,-0.35052377,0.2679207,-0.25593427,0.07743524,0.45858505,-0.31496027,-0.83579457,-0.7235473,-0.4735722,1.0964661,-0.12671971,-0.35883608,0.04310003,-0.051731136,-0.11264598,-0.10943944,0.45734453,-0.2557443,-0.069591865,-0.7571353,0.07910565,0.16850154,0.09335887,-0.0009208992,0.030265842,-0.44005838,0.58462185,-0.047332074,0.22777711,0.24220705,0.27745205,-0.26663327,-0.5041268,0.031458966,0.80827075,0.3764093,0.18479596,-0.25657693,-0.26557094,-0.22613573,-0.18281113,-0.04886778,0.38005516,0.6293512,-0.12603296,0.050417136,0.300391,0.027610967,0.26531082,-0.13222125,-0.31774607,-0.05461225,-0.06378128,0.5689438,0.5639432,-0.25614694,0.29859638,-0.10378521,0.4255573,-0.079252414,-0.39850086,0.6653636,0.927352,-0.10549008,-0.18414834,0.63968533,0.41404626,-0.30389196,0.44601038,-0.6433523,-0.23172082,0.44124505,-0.19643223,-0.3957655,0.014947721,-0.25099903,0.07256509,-0.8938239,0.27404395,-0.21392703,-0.09583443,-0.51593554,-0.06478186,-3.8832943,0.058366008,-0.21186529,-0.10859907,-0.01294695,-0.10556128,0.12806995,-0.48162484,-0.5596818,0.37853408,0.055440903,0.56321895,-0.07322893,0.24884804,-0.31033948,-0.26623872,-0.5789884,0.13617674,0.043590687,0.27774686,-0.035918925,-0.4516678,0.2172347,-0.23746607,-0.4569803,0.1800751,-0.467309,-0.29273912,-0.30763596,-0.43293476,-0.3782476,0.56563836,-0.24529423,0.12683131,-0.19457631,0.103342995,-0.2528866,0.3205095,0.106888495,0.0849867,0.12600055,-0.04148381,0.021217847,-0.34356388,0.6200276,0.09740918,0.25400385,0.27328205,-0.11445312,0.029400263,0.4607961,0.5999331,0.048891716,0.8874535,0.2828323,-0.045280665,0.32555413,-0.2084967,-0.3767912,-0.4179619,-0.23109452,-0.16314574,-0.28651044,-0.5668611,-0.042014282,-0.37610775,-0.6707408,0.5912793,0.040294744,0.12597097,-0.13098589,0.13324235,0.36977836,-0.22840574,0.11857773,0.022586474,-0.08101444,-0.5270489,-0.3209987,-0.683256,-0.43013173,0.19302239,0.6507516,-0.12373902,-0.03754923,-0.17767629,-0.14431836,0.08961376,0.12495161,0.0115406215,0.017871669,0.41962105,0.018229485,-0.7211133,0.56441444,0.07912479,-0.22705166,-0.7216396,0.25847706,0.5665113,-0.6849483,0.51595217,0.43943277,-0.037193768,-0.03362042,-0.28734198,-0.3173837,-0.011337987,-0.2105895,0.22197984,0.20579584,-0.7654525,0.4346223,0.35434252,-0.34266558,-0.75853,0.5943743,0.09009983,-0.12784517,0.09266734,0.2463881,0.36734357,0.03157996,-0.18407147,0.10818215,-0.45949036,0.0867715,0.027403653,0.014172039,0.53332114,-0.10685078,-0.10301285,-0.88605917,-0.061122544,-0.41342688,-0.23823634,0.10804599,0.15867867,-0.035400536,0.23563519,0.15168093,0.3345173,-0.18010113,0.05692243,-0.024631625,-0.2647431,0.27777654,0.32657138,0.39582327,-0.28934857,0.6897985,-0.024004603,-0.08051318,0.21867535,-0.12004113,0.3217575,0.18533804,0.35675448,0.34604535,-0.24043223,0.19691756,0.72246283,0.113413095,0.2817383,0.19022267,-0.07017965,0.4706082,0.046649445,0.030249715,0.24553044,-0.45866632,-0.1276885,-0.18929939,-0.09105252,0.5747758,0.12535761,0.4527235,-0.065451615,-0.38855362,-0.011773901,0.083074585,0.1338916,-1.2337257,0.030317992,-0.02295144,0.71211714,0.6686055,-0.12742,0.034424596,0.7092164,-0.27348927,0.019359674,0.4360433,0.08746446,-0.4081592,0.6481303,-0.56772995,0.5342276,-0.046300106,-0.056884527,-0.033191014,0.051585443,0.2436578,0.80092084,-0.22269347,0.034814768,-0.008222149,-0.37427357,0.20871027,-0.497897,0.15704067,-0.4077979,-0.12397679,0.6190986,0.33671013,0.36985186,-0.104818515,-0.011607151,0.082334094,-0.15178487,0.18237524,0.029929949,0.03141436,-0.10413348,-0.53548735,-0.23933819,0.64053744,0.035827238,0.24679157,-0.026028702,-0.26840526,0.23485994,-0.21422938,-0.10939194,0.0067707705,-0.81959355,-0.13429882,-0.10107737,-0.51363134,0.5284082,0.0071383035,0.2167125,0.24317701,0.026063045,-0.30788615,0.2281374,0.167616,0.79721504,0.12002814,-0.24081966,-0.2487456,-0.020440336,0.22613502,-0.18340646,0.29086712,-0.16970325,0.0053145885,-0.47814637,0.6168495,-0.121717334,-0.30618554,-0.0030980152,-0.16128214,0.049955394,0.50985163,-0.22251788,-0.15101525,0.01938057,-0.14692746,-0.20426819,-0.2730568,-0.23181327,0.21624026,0.22436269,-0.022248833,-0.11995973,-0.3390117,-0.15509899,0.53935945,0.011813911,0.2667952,0.24646732,0.12004113,-0.42880604,-0.055160593,-0.0043816566,0.32620472,-0.18710068,-0.27574483,-0.22252133,-0.52275884,-0.26819205,0.10617377,0.006155561,0.16755769,-0.08474815,-0.44388595,0.61006624,-0.045914996,1.0735035,0.031735756,-0.471925,0.10826898,0.494106,0.040963344,-0.043689273,-0.37204653,0.93858445,0.4854997,-0.084508374,-0.2527166,-0.50416785,0.10853873,0.1405081,-0.19425459,-0.076998785,-0.01642235,-0.52328116,-0.33472833,0.23039332,0.34511632,0.17126206,0.0241375,0.21361582,0.14631914,0.15480308,0.711938,-0.47245058,-0.20041992,0.3387699,0.36772636,0.04173994,0.08820189,-0.3539566,0.3735795,-0.5053433,0.19257304,-0.31748697,0.09092506,-0.34037024,-0.25019032,0.16429688,0.20623517,0.37767023,-0.30916375,-0.6500664,-0.21316783,0.4830154,0.113306776,0.14719644,0.5297842,-0.23510662,0.012033439,-0.014975041,0.66396993,1.1540511,-0.2076327,0.014939772,0.22932385,-0.48169687,-0.5270767,0.45308766,-0.273172,0.13021626,-0.033529527,-0.047874775,-0.62651557,0.22499765,0.18218757,0.090117395,0.1437781,-0.46619692,-0.38345167,0.39875895,-0.4928382,-0.2958753,-0.31177476,0.22287099,0.7726616,-0.2510887,-0.123956464,0.08129423,0.29416975,-0.25011557,-0.6136258,-0.30326024,-0.22845446,0.37455186,0.16420583,-0.07792229,-0.30565324,0.085370354,-0.45386943,-0.024864163,0.06049072,-0.384167,0.008153213,-0.24684289,0.022960898,0.74755484,-0.18233207,0.27794957,-0.8055339,-0.44462344,-0.91494304,-0.43986538,0.7371841,0.21951959,-0.0033984482,-0.53805393,-0.013910383,0.02200355,-0.082226045,0.08861327,-0.44294193,0.34697297,0.18239641,0.47108147,0.09334976,-0.72711754,0.003914695,0.007838423,-0.08733554,-0.54208356,0.31513008,0.05327013,0.97054386,0.13402234,-0.06791125,0.19590378,-0.36156872,0.12486364,-0.2868261,-0.31546327,-0.6085604,0.2611268 -221,0.7214715,-0.21937595,-0.5698045,0.09478138,-0.47278976,-0.006990471,-0.31622294,0.14819129,0.16639468,-0.49786478,-0.111076966,0.032706656,-0.17841123,0.20810832,0.006385318,-0.5552921,0.18086733,0.22980587,-0.7093719,0.93948036,-0.2959866,0.4576347,0.09542414,0.20491529,0.23144862,0.12827887,0.13561475,0.17908394,0.066176616,-0.20200515,-0.088734545,-0.06259838,-0.86761963,0.18938872,-0.24556912,-0.4658729,-0.16426921,-0.37594858,-0.4585929,-0.87929994,0.34084827,-0.96444184,0.63454837,0.06360046,-0.43306836,0.041049488,0.008802031,0.34460846,-0.16148472,0.16641656,0.33183217,-0.13754545,-0.20127772,-0.3001557,-0.19024336,-0.4390902,-0.55325353,0.028526668,-0.45704642,-0.078018986,-0.43494615,0.22714768,-0.38780084,-0.0013578066,-0.3261817,0.35040167,-0.46431756,-0.05585607,0.18970719,0.0032064659,0.29214916,-0.82398003,-0.18772887,-0.21978343,0.08529235,0.10505315,-0.20091888,0.34583205,0.23146386,0.68834025,0.15283248,-0.50259703,-0.087183006,-0.01595882,0.21467267,0.427398,-0.29680008,-0.094773434,-0.42672944,0.14082853,0.5541077,0.1642735,0.14629899,-0.41279522,0.006519437,0.014814079,-0.022804366,0.45384333,0.4694532,-0.39276847,-0.14128318,0.15707366,0.557938,0.15275314,-0.19462577,0.094342604,-0.1608684,-0.4334372,-0.15475695,0.26589483,-0.30906147,0.5821457,-0.05956155,0.016974373,0.56582963,-0.31480476,-0.09051542,0.1794395,0.032279212,0.19930372,-0.3584885,-0.3539726,0.42421347,-0.7811521,0.13268828,-0.36765346,0.5461985,0.047126703,-0.68386286,0.21657284,-0.53062475,0.23000322,0.0073706633,0.6107416,0.9080865,0.47738045,0.13294192,0.9537229,-0.4247148,0.072789244,-0.069118574,-0.18634082,-0.15721597,-0.22323923,0.088303916,-0.40325028,0.06019651,-0.31688815,-0.079905905,-0.06448234,0.5862326,-0.44313616,-0.2409475,0.20103942,0.71386,-0.28980038,0.21035473,0.8328353,1.1719465,1.2189208,0.044313405,1.1991247,0.3546073,-0.11955234,-0.07508937,-0.025569575,-0.61799437,0.05942026,0.36039454,0.16437547,0.39154452,0.099297784,-0.14664795,0.34386566,-0.5821433,-0.05264466,-0.26780304,0.2910853,-0.028780477,-0.21280043,-0.5949809,-0.05743025,-0.09035409,0.21076,-0.06933111,0.26810712,-0.33221012,0.2763388,0.02176497,0.9768478,-0.38811037,-0.049716838,0.11787723,0.4642034,0.3956596,-0.2367164,0.016078379,0.09827431,0.40716925,0.027146239,-0.5725885,-0.0064547337,-0.4506031,-0.3117776,-0.23694631,-0.103373565,0.1932886,0.15112007,-0.2788107,-0.4852161,0.077930234,-0.31810147,0.34685352,-2.132174,-0.22225282,-0.35112783,0.24195406,-0.24863403,-0.35896015,0.028180514,-0.64741695,0.5203367,0.1733407,0.46315902,-0.60804826,0.39437014,0.46431717,-0.73240346,0.107003175,-0.6839689,-0.27520892,0.0066055614,0.6403833,-0.027835667,-0.3650141,-0.089029886,0.10984746,0.8078332,0.106957026,0.06522316,0.41500404,0.30013576,-0.16464849,0.3994306,0.14378117,0.5690413,-0.31405973,-0.2511325,0.6373576,-0.061612185,0.21817075,-0.2707173,0.03131088,0.58443433,-0.5025315,-0.7948769,-0.66591835,-0.25792792,1.363344,-0.3183659,-0.7806917,0.2673083,-0.29911,-0.055020154,-0.045569934,0.3105076,0.038954694,0.1049779,-0.69496554,0.082675114,-0.006117412,0.11935293,-0.038531598,-0.082262225,-0.4740301,0.8228292,-0.05228079,0.3785112,0.4360254,0.4103209,0.004996913,-0.44668362,-0.030131996,1.0517612,0.6672173,-0.005578854,-0.48888764,0.0015444244,-0.22588572,-0.30406204,0.1403751,0.5585338,0.86584455,-0.18888451,-0.057141893,0.20200072,-0.039599974,0.13333541,-0.13015085,-0.3584106,-0.27307007,0.09705584,0.58803165,0.6039329,0.009741596,0.42119274,-0.20303328,0.19389462,0.15499671,-0.63532346,0.5459553,1.3487366,-0.17283769,-0.17782174,0.6737932,0.42359164,-0.36785388,0.6472608,-0.6599112,-0.31914464,0.4397656,-0.069090426,-0.4054186,0.18608306,-0.5816588,0.29507494,-0.7576786,0.35402623,-0.5777317,-0.52469265,-0.4398927,-0.23344953,-2.6218116,0.39007634,-0.4196308,0.078077085,-0.19425811,-0.39385468,0.24731112,-0.4616373,-0.52357215,0.12209866,0.048520274,0.6573195,-0.08118551,-0.010079748,-0.19282666,-0.30713218,-0.31084937,0.22987828,0.25741693,0.25982466,-0.22404914,-0.36477706,-0.05490991,-0.09128772,-0.35952955,-0.1503488,-0.7466188,-0.3848757,-0.30917946,-0.58558273,-0.28130162,0.5059946,-0.047384746,0.17886065,-0.36764047,0.06184458,0.05336552,0.23975447,0.06410342,0.45120245,0.15197904,-0.12909614,-0.059480112,-0.3292282,0.24089582,0.2469347,0.3253183,0.16517952,-0.23943686,0.13476305,0.3869957,0.73034775,-0.2886866,0.9085613,0.5748517,-0.30150342,0.33559602,-0.07890623,-0.6048396,-1.0081142,-0.32521835,-0.06804518,-0.3561677,-0.4607462,0.057289835,-0.43515715,-0.9224927,0.5136742,-0.06821348,0.47429463,0.101481184,0.29257965,0.4074983,-0.26252788,-0.17647259,-0.1414768,-0.14992067,-0.4654362,-0.32013306,-0.7416649,-0.58615303,-0.15169564,1.1402605,-0.21040471,0.03868451,0.2950762,-0.27819338,0.27523306,0.15817307,-0.010781942,-0.04099811,0.4783698,0.26185438,-0.6701904,0.30647165,0.28417864,-0.070378296,-0.47953507,0.5106757,0.6104154,-0.63262683,0.5999045,0.22824481,0.030296335,-0.05553525,-0.8410788,-0.153206,0.20677184,-0.3857773,0.56976914,0.3073097,-0.691717,0.34513298,0.4664857,-0.29252377,-0.6932403,0.5936418,-0.10707656,-0.3931155,-0.11353277,0.37214783,-0.07356005,-0.028552592,-0.15387177,0.28694025,-0.46703833,0.22443019,0.17804047,-0.23708494,-0.0082773315,-0.1852727,-0.46618673,-0.7371116,0.27638525,-0.6579097,-0.3699526,0.37528345,-0.012428931,-0.17376415,0.10890029,0.43479064,0.4590773,-0.06276906,0.26772955,-0.348784,-0.45930597,0.64136094,0.5693921,0.44617894,-0.49115393,0.6169545,0.09881734,-0.35323444,-0.12762795,0.21752277,0.5359949,0.028090682,0.30595595,-0.073852405,0.018188212,0.10519674,0.6255075,0.09715994,0.46867993,0.17701387,-0.011521825,0.18246111,0.09586789,0.1196224,-0.17323007,-0.51734847,-0.049162947,0.11582532,0.080277644,0.46825495,0.2073359,0.1648031,-0.18856311,-0.11286097,-0.06094004,0.0698511,0.0714669,-1.4520522,0.2806169,0.168344,0.66133934,0.49738407,0.025927847,-0.18504825,0.6276745,-0.17933811,-0.13801868,0.36703697,-0.044333708,-0.34884098,0.56504565,-0.6805424,0.27535707,-0.039999068,0.079434864,0.21028535,0.10544894,0.5229164,0.86330575,-0.19782104,0.055609316,-0.2639931,-0.17110516,0.09012379,-0.24342766,0.10965706,-0.31373832,-0.54355067,0.8025621,0.3458729,0.36512616,-0.31615195,0.04525582,0.057279877,-0.31097093,0.49444818,-0.047698677,0.031601958,-0.058392186,-0.34754378,0.0016588952,0.33412313,0.020321446,0.008964513,-0.05762499,0.030673908,0.20956506,-0.052679628,-0.06988796,0.076359786,-1.0076168,0.12924479,-0.6218046,-0.32675526,0.4328375,-0.06538256,-0.0028791171,0.17217056,0.14503638,-0.20460466,0.23941362,0.011447213,0.7779841,0.071108855,-0.22739759,-0.18984035,0.28882208,0.03825918,-0.19623004,0.24091797,-0.04995626,0.086193345,-0.835983,0.6751174,-0.24976876,-0.2718679,0.27553788,-0.2054552,-0.22356105,0.36517242,-0.23637281,-0.19463877,0.12560049,-0.1482666,-0.38025665,-0.4380754,0.041340616,0.11283381,0.070287004,-0.035025496,-0.11717836,-0.11479474,0.073057435,0.6430784,0.15737928,0.22506441,0.18605135,0.16418825,-0.60321826,0.056001987,0.40865567,0.497674,-0.19501449,0.065300204,-0.20378213,-0.470598,-0.41403666,-0.035590224,0.010775216,0.3962713,0.013509448,-0.1607467,0.98290664,0.39972258,1.3556093,-0.12949392,-0.38724503,-0.056291077,0.6553469,-0.28517473,-0.16747649,-0.29195803,0.88594943,0.63556683,0.04215323,-0.06266035,-0.6121753,-0.14835943,0.1656177,-0.37248844,-0.011062041,-0.15759575,-0.5357137,-0.34641027,0.18338397,0.43735686,0.004955036,-0.08427591,0.09773655,0.33934477,0.0052245897,0.2420282,-0.44888538,-0.19153617,0.2941487,0.15706618,-0.1254648,0.21921621,-0.40164185,0.18776187,-0.71823865,0.082916856,-0.09079932,0.07478344,0.037338357,-0.2983337,0.2876466,0.034997292,0.25152493,-0.53889173,-0.25796244,-0.055224035,0.39308208,0.09237281,0.17321576,0.7006127,-0.248781,0.08639254,-0.005440693,0.34118706,1.1589066,-0.16847293,0.114193395,0.022759,-0.49683258,-0.7006821,0.40134224,-0.2697644,0.08460375,-0.030975077,-0.3851525,-0.6099748,0.21723835,0.08810671,-0.12206919,-0.015415455,-0.69555634,-0.26132172,0.10573424,-0.2231092,-0.1528795,-0.31051975,0.40449277,0.63464415,-0.109164976,-0.48732233,0.03850469,0.13120942,-0.19448893,-0.5981623,0.0700372,-0.25592703,0.16765952,0.13798417,-0.3963615,0.08083481,0.14689268,-0.60094583,-0.113873124,0.28590328,-0.28558442,0.018408274,-0.31621107,0.04445094,0.8868989,-0.14812736,0.048194654,-0.33680344,-0.6795683,-0.8035684,-0.47350407,0.25890785,0.3472123,0.13611528,-0.5516883,-0.140226,-0.3755757,0.19801815,-0.0014781313,-0.38985783,0.39571133,0.18211494,0.50673527,-0.19220045,-0.68631035,0.3082896,0.14887346,0.036452897,-0.4022699,0.44386858,0.10022398,0.6682573,0.1453681,0.052474294,0.03136584,-0.70587987,0.1370171,-0.16068818,-0.21102378,-0.7554268,-0.1316687 -222,0.38256925,-0.035365827,-0.44740888,-0.1986098,-0.37818384,-0.0038397142,-0.33357957,0.021507557,0.11733995,-0.5026789,0.03251683,-0.1435969,-0.17424642,0.2769042,-0.25868383,-0.6610733,-0.20643698,0.059024572,-0.44630906,0.4030685,-0.5164184,0.45387092,-0.01518075,0.40624812,-0.19128516,0.384322,0.35174164,-0.17437756,-0.096627526,-0.17022859,-0.06256784,-0.09547526,-0.66140956,0.3254201,-0.12275659,-0.4523299,0.15743805,-0.40361473,-0.17272906,-0.6036641,0.32220006,-0.6390308,0.4643423,0.024254007,-0.13026837,0.020441135,0.086486235,0.0405839,-0.21525969,0.12248732,0.37015483,-0.19545135,0.053710725,-0.3561547,-0.35145876,-0.6534749,-0.49545243,0.021288788,-0.6414443,-0.062135573,-0.049329214,0.30787376,-0.24652705,-0.07468178,-0.1609998,0.3866162,-0.33654574,-0.09041997,0.023160884,-0.2350907,0.07643225,-0.36380443,-0.1494797,-0.18524994,0.30449644,-0.29984897,-0.066812046,0.22043599,-0.07373957,0.62183744,0.039496627,-0.10464171,-0.31516567,-0.016953776,0.13240966,0.54257697,-0.17060423,-0.3777472,-0.069040425,-0.1307719,0.18806712,0.20829819,-0.010835392,-0.33230305,0.15745409,-0.15076731,-0.25646433,0.3925846,0.48051924,-0.25240088,-0.19351129,0.39088717,0.4411904,-0.17031983,-0.2131137,0.09493375,0.036245674,-0.35863417,-0.30962542,0.21449436,-0.055854313,0.32072517,-0.045808494,0.34091002,0.70605236,-0.09190329,-0.05359655,-0.2298926,-0.20248304,-0.04841251,-0.18425514,-0.22956268,0.09405027,-0.3041432,-0.11373592,-0.26646316,0.83266795,0.107163064,-1.0095017,0.41044968,-0.5157334,-0.058171444,-0.037877176,0.66931194,0.5006604,0.48065397,0.14136516,0.7309211,-0.5631158,0.22508952,0.14282463,-0.33367962,-0.041427355,-0.095568255,0.122293994,-0.34374198,0.057636198,-0.07512181,-0.038219504,-0.0061259354,0.46149716,-0.31789988,0.032094195,0.11724849,0.8075822,-0.3907981,0.117273085,0.8154472,1.0851195,0.98343277,0.18138956,1.4532492,0.32591933,-0.1821744,-0.037765462,-0.35969052,-0.63216877,0.118835665,0.3727323,0.1858736,0.30384475,0.128553,0.14675753,0.35036477,-0.50149816,-0.01320682,-0.072441034,0.34667078,0.020662399,0.01780734,-0.353296,-0.16666634,0.13435803,-0.028346429,0.004492781,0.31160513,-0.24384151,0.3971119,0.20403512,1.4532801,0.027301995,0.15926406,0.10609184,0.3901706,0.15108123,-0.12114437,0.013588471,0.17479087,0.20949887,-0.19392617,-0.58480275,-0.15986843,-0.24270728,-0.5278332,-0.40380785,-0.16800764,-0.1485138,-0.26508793,-0.2878255,-0.19167331,-0.008597136,-0.3798117,0.35274628,-2.2236354,-0.1670665,-0.23370874,0.42712477,-0.19085646,-0.3579545,-0.15009928,-0.39599195,0.43893406,0.40271297,0.41947344,-0.4561255,0.5363587,0.4230284,-0.33123803,-0.24131873,-0.65255076,0.019656124,-0.23893721,0.20543997,-0.13044743,-0.16869341,-0.38131097,0.0701802,0.42747498,-0.07466994,-0.15653814,0.22597277,0.6222515,0.21652487,0.50470763,0.1427501,0.5131245,-0.49529824,-0.09926223,0.38069466,-0.5420632,0.21986438,0.13397713,0.17462958,0.4326543,-0.67391205,-0.8370985,-0.8437079,-0.4937385,1.0335976,-0.117942385,-0.30201435,0.25264382,0.051436134,-0.4918905,0.019769805,0.49795014,-0.33388013,-0.0912221,-0.6885619,-0.0071666795,-0.18086727,0.51321346,0.034951966,0.25643143,-0.3580517,0.5557706,-0.21673968,0.4799672,0.42775103,0.195286,-0.2764487,-0.2658703,0.25787938,1.0227296,0.30062976,0.13664009,-0.045742687,-0.23589359,-0.044828575,-0.13323957,0.020271318,0.37960956,0.61185277,0.032018118,0.008349402,0.44195268,-0.25491172,0.088773645,-0.15220095,-0.2549389,-0.19742282,0.06540275,0.48610002,0.5751796,-0.19752026,0.35847664,-0.13647713,0.30285844,-0.25002834,-0.2818972,0.36471292,0.41838428,-0.02780045,-0.13516584,0.37324578,0.4741846,-0.36898068,0.42114967,-0.60224736,-0.3372221,0.35753146,-0.034380246,-0.34892732,-0.054441597,-0.30803803,0.21457838,-0.86904,0.25745505,-0.14776476,-0.4941371,-0.8129922,-0.33836445,-2.5850415,0.115272984,-0.2100902,-0.10913497,-0.005081194,-0.040673856,0.17957054,-0.46428505,-0.5706829,0.17601326,0.020077381,0.431493,0.13736351,0.41654477,-0.21995641,-0.13643849,-0.43077248,0.34336558,0.21194255,0.25791785,0.14969315,-0.28441948,0.0009266074,-0.3868932,-0.39117366,-0.022953719,-0.54633904,-0.3910994,-0.08930819,-0.4683312,-0.2465959,0.7378572,-0.4585015,0.00080648914,-0.33143443,-0.18020149,-0.1831164,0.3590369,0.3254839,0.050315347,0.0677367,-0.03564257,-0.38805565,-0.29761428,0.22341058,-0.0031088314,0.10230793,0.37522596,-0.026393745,0.09686058,0.27257016,0.72760135,0.25936815,0.6926828,0.21201515,-0.13639499,0.45648393,-0.39125603,-0.2727946,-0.67766285,-0.38711983,0.06775146,-0.37862834,-0.40429708,-0.112628676,-0.41361102,-0.6193118,0.4429636,0.029351098,-0.17666121,0.087893195,0.42070994,0.19901554,-0.086942784,0.014775106,0.042583358,-0.09366058,-0.43790594,-0.58517975,-0.6874752,-0.49416402,-0.05161925,1.3759843,0.12365341,-0.2425327,0.17642196,-0.29229823,0.1160265,0.12593816,0.12968135,0.26062047,0.4202452,-0.027484234,-0.6447399,0.45161384,-0.13820608,-0.114306875,-0.4550149,-0.18911253,0.7972841,-0.7119664,0.3753306,0.34091812,0.2761095,0.14616786,-0.45421335,-0.20964094,0.1913602,-0.19839188,0.29056555,0.19100986,-0.48732972,0.5428553,0.053145144,-0.14644839,-0.7995919,0.25870556,0.2281517,-0.27723047,0.12914549,0.2810172,0.11236819,-0.1957415,-0.38646507,0.27663478,-0.2949491,0.22131968,0.17229356,-0.1566292,0.4666658,-0.3519409,-0.38382387,-0.5822647,-0.123334356,-0.33059445,-0.40624523,-0.07037665,0.04392332,0.09511363,0.22709231,-0.024501484,0.46215552,-0.42657903,0.08513397,-0.14878283,-0.16130432,0.14002515,0.2982433,0.2830333,-0.4692637,0.7580191,-0.0048734182,-0.055706415,-0.34877253,0.09745931,0.35329914,0.19911204,0.11485655,0.14184105,-0.20491923,0.20648037,0.6647086,0.27987465,0.33460018,0.16318305,-0.3048778,0.49450755,0.10671107,0.011682727,-0.11461934,-0.18532655,0.046112042,0.07281787,0.1200342,0.2560387,0.11675053,0.56989604,-0.24840762,-0.15975425,0.23115757,0.29358795,-0.23151274,-0.9613205,0.23112035,0.07960391,0.716591,0.5447365,-0.005881586,0.21615185,0.57229716,-0.46113303,0.056664165,0.11951143,0.029595375,-0.2170702,0.5605013,-0.25189307,0.4567804,-0.19637036,-0.09010546,-0.008844597,-0.004827644,0.26860175,0.89537746,-0.020787464,0.100958996,-0.016312549,-0.057312306,0.063676804,-0.13697231,0.09485107,-0.36637217,-0.26342806,0.7457498,0.19462569,0.4244917,-0.18166222,0.005465552,0.05070573,-0.11019778,0.21512564,-0.15163282,-0.17536111,0.104531646,-0.53366,-0.27162853,0.78356737,0.0050047124,0.02721594,0.20240422,-0.4712858,0.28128532,0.0426715,-0.035730608,0.028657198,-0.5455305,0.047193833,-0.35571998,-0.22866924,0.2083552,-0.21374585,0.32556984,0.14512111,0.038535003,-0.34173653,0.097259514,0.5773547,0.66278356,0.2366545,-0.07530339,-0.18317822,-0.04543834,0.30500913,-0.30375168,0.011360005,-0.30620915,0.17506325,-0.7217745,0.45536655,-0.0734728,-0.19536546,0.12511054,-0.19524027,0.1200039,0.4876388,-0.100577,-0.11856193,0.19928396,0.09397451,-0.22955962,-0.10947961,-0.4863128,0.25786218,0.13232729,-0.082314536,0.020624837,-0.1304158,-0.2527467,0.56308144,0.06504218,0.24958524,0.28122568,0.15295804,-0.52865165,-0.010532503,-0.29383308,0.36054352,0.02834834,-0.03971402,-0.12026145,-0.25312206,-0.046589177,0.4889349,-0.2681129,0.058671825,0.07772163,-0.59214514,0.73280746,0.17021224,1.1092378,0.12968302,-0.30800167,0.07879429,0.46459463,-0.02438235,0.2982772,-0.4564152,1.0787555,0.49450397,-0.14608482,-0.14607945,-0.329007,-0.27472192,0.14833944,-0.28069845,-0.27929494,-0.19566426,-0.6761087,-0.3217387,0.06897188,0.12167271,-0.10610286,-0.027183592,0.14326937,0.006338175,0.09907956,0.43060756,-0.60497326,0.07204709,0.3723473,0.15084656,0.10693116,0.22377174,-0.370312,0.4491791,-0.59246624,0.24955232,-0.64533913,0.15577595,0.03356836,-0.2440608,0.07506682,0.2335252,0.383255,-0.2383857,-0.4270119,-0.21066548,0.6328784,0.27936417,0.3805018,0.76816666,-0.27375707,0.0885734,-0.026577456,0.5268463,1.252191,-0.113140754,0.072468415,0.22643529,-0.4095833,-0.43141237,0.17695774,-0.5123032,-0.25569174,-0.095111765,-0.2473291,-0.43430117,0.2961493,0.13865732,-0.070412405,-0.031638406,-0.41825017,-0.27293625,0.58751583,-0.2274892,-0.27925536,-0.26601174,0.19273499,0.8477653,-0.1919227,-0.2171321,0.05845544,0.3108783,-0.36230007,-0.6675569,-0.043232303,-0.40059805,0.543881,0.20541511,-0.13659723,-0.09114502,0.15126383,-0.45940223,0.08335926,0.31581613,-0.4383945,-0.12432037,-0.25767413,-0.055608742,0.8664803,0.11574783,0.15957324,-0.6436008,-0.44010672,-0.8653117,-0.25533488,0.34701225,0.24899396,0.008462802,-0.5244698,-0.043391358,-0.16197526,-0.10876894,0.16000566,-0.71212,0.21395156,0.26333427,0.59586793,-0.18012981,-0.9838669,-0.039576996,0.064829364,-0.3498822,-0.4125763,0.30437544,0.18475701,0.7795896,0.06695329,-0.03448879,0.12742113,-0.58840376,0.43406382,-0.32857066,-0.19204186,-0.5655297,0.17610712 -223,0.5765292,-0.114630535,-0.32122394,-0.07281329,-0.104547404,0.014056858,-0.10330247,0.3280689,0.19555944,-0.5876652,-0.06301076,-0.26026565,-0.004904025,0.24145514,-0.060354035,-0.71929264,-0.08593565,0.18665496,-0.34872943,0.5124342,-0.44243652,0.324106,0.026199706,0.30932477,0.073006965,0.21792923,0.23952234,-0.21472827,-0.087560974,-0.07500005,-0.09057366,0.2949493,-0.548291,0.10433244,-0.024263645,-0.29090217,-0.0048003057,-0.31925407,-0.2714317,-0.6815268,0.2269488,-0.62468797,0.37458438,0.1907361,-0.11669983,0.38749918,-0.044363547,0.32528618,-0.1980852,0.060097843,0.17262371,-0.21595049,0.014701114,-0.2168855,-0.15891951,-0.40033492,-0.52059287,0.06980368,-0.32725435,-0.34389827,-0.36458188,0.13998461,-0.30326372,-0.15779892,-0.12481019,0.3437932,-0.42773172,0.00068731344,0.17203572,-0.1422404,0.40727735,-0.4054901,-0.13951546,-0.15479529,0.113455884,-0.2452397,-0.13837092,0.2686259,0.21543229,0.6440806,-0.043151077,-0.21311423,-0.30968216,0.0055078478,0.14749166,0.5602968,-0.20005172,-0.4996573,-0.045497105,-0.036170736,0.18292983,0.03533086,0.030483628,-0.31903616,-0.26325738,0.11445761,-0.29880548,0.30323842,0.493284,-0.3244595,-0.32437676,0.31090236,0.518,0.022956148,-0.122023486,0.029821873,-0.011506078,-0.4289852,-0.17764525,0.10997008,-0.21292448,0.33949846,-0.11845118,0.1498469,0.7026914,-0.17770042,0.12056225,-0.041403566,-0.08197134,0.00047041036,-0.3300222,-0.26698548,0.25360915,-0.32576814,0.18507828,-0.2389597,0.8679598,0.16838616,-0.8647476,0.43172932,-0.48245215,0.17662795,-0.07677649,0.6555508,0.6754687,0.28479993,0.41069916,0.6542372,-0.6750044,0.06895027,-0.14999367,-0.33698678,0.055676553,-0.07903477,0.022420399,-0.49659252,0.045587044,0.0685037,-0.0910821,0.0010078076,0.2975865,-0.6426675,-0.0053693373,0.17199606,0.77238053,-0.3485703,-0.043848187,0.51953083,0.8942235,0.87463707,0.03799932,1.1682557,0.27662516,-0.3438673,0.33202603,-0.5165903,-0.5872531,0.21543466,0.3443434,0.024373427,0.26034904,0.123003006,-0.029508395,0.29256585,-0.33490002,-0.002707513,-0.15618518,0.13923235,-0.009585121,-0.124344096,-0.3791577,-0.11757673,-0.059739336,-0.008887565,0.05801638,0.17933773,-0.36286718,0.1446633,0.011966717,1.9109443,-0.03694775,0.13456662,0.034324896,0.4425211,0.10734187,-0.078039095,0.03263644,0.43531317,0.32756063,0.09989723,-0.54386157,0.11117069,-0.19546217,-0.51549596,-0.102114856,-0.21936211,0.1004649,0.050999235,-0.34963062,-0.012408295,-0.0599629,-0.41268048,0.4878016,-2.613746,-0.18944553,-0.043230936,0.31571218,-0.31273723,-0.3391744,-0.09259489,-0.33628583,0.3649752,0.3121444,0.40015277,-0.75272125,0.27092463,0.30852267,-0.42977607,-0.13634208,-0.6395446,-0.028180826,-0.12303428,0.37445393,0.10338971,-0.01184838,-0.030964537,0.18224908,0.4117376,-0.16670701,0.015693447,0.16243629,0.31464648,0.20817241,0.44980258,0.0088344,0.38164788,-0.14399055,-0.18134238,0.36703685,-0.423501,0.1287089,0.047722556,0.06846254,0.28680724,-0.4279415,-0.86513025,-0.65311235,-0.49691194,1.0682752,-0.26710677,-0.3960312,0.2496081,-0.069413066,-0.30079293,-0.12472935,0.31087336,-0.15558052,-0.07835105,-0.8659521,0.14434434,-0.04869158,0.22214018,0.08718198,0.042748276,-0.36330652,0.57637674,-0.13349114,0.42065173,0.3347404,0.20005001,-0.12518075,-0.45459715,0.018663196,1.0441928,0.21173868,0.16093238,-0.16825518,-0.21548958,-0.19078296,0.0012782111,0.13198243,0.48797327,0.7022927,-0.047996417,-0.008791653,0.25818297,0.0065143863,-0.09597371,-0.19949588,-0.26675138,-0.035869583,0.07954201,0.600699,0.5134064,-0.2793778,0.35096118,-0.073671706,0.27400154,-0.10380143,-0.48820946,0.4807394,1.1138618,-0.15848567,-0.09950994,0.5294511,0.26469252,-0.33257312,0.42328238,-0.7392847,-0.18795677,0.5400466,-0.19099939,-0.3062947,0.18842195,-0.30237377,0.032173928,-0.9415146,0.3588498,-0.18568055,-0.41325918,-0.4476916,-0.15156019,-3.302078,0.10155689,-0.16327341,-0.22339305,-0.02681385,0.08535776,0.21393046,-0.60148495,-0.3866789,0.048450246,0.11783322,0.5255516,0.10786823,0.105286404,-0.26409984,-0.15606171,-0.33049938,0.081475325,0.11492273,0.29978982,0.069098115,-0.41393355,0.00017709592,-0.09502327,-0.40827295,0.1302398,-0.42771986,-0.4510018,-0.24415076,-0.49859613,-0.33493346,0.5145657,-0.38176778,0.03783086,-0.21308438,-0.07399046,-0.19696255,0.34278718,0.17556201,0.08602775,-0.055725656,-0.016319083,-0.10894544,-0.23557977,0.21675873,0.15977545,0.105294496,0.44506267,-0.24197015,0.13033405,0.4361674,0.627387,-0.0012853496,0.7596408,0.6070263,-0.1405338,0.36678943,-0.33649963,-0.13551119,-0.63650036,-0.44878682,-0.15626208,-0.41447458,-0.5015741,-0.028646898,-0.31664667,-0.7332822,0.4694206,-0.12256735,0.14716932,-0.0026210845,0.24618572,0.50334823,-0.19150218,-0.08951402,-0.060232233,-0.1517173,-0.51053095,-0.29780173,-0.59912163,-0.47872886,0.25728345,0.8751121,-0.119166516,0.012561216,-0.034760736,-0.0584782,-0.11748892,0.13031581,0.03239676,0.23946956,0.3578184,-0.0974974,-0.62146544,0.51197386,0.014146497,-0.14671801,-0.5776978,0.20518768,0.55585194,-0.49909616,0.47463727,0.24039526,0.0882595,0.042390052,-0.4684295,-0.274472,-0.005249879,-0.2801404,0.39433548,0.1582339,-0.6897195,0.40990236,0.44764653,-0.2650412,-0.71891356,0.30838516,0.0026328599,-0.33608347,-0.010259104,0.28751808,0.015545628,0.045991316,-0.1458775,0.22695424,-0.60747164,0.17584518,0.29172197,-0.04117094,0.3361685,-0.19958222,-0.08326953,-0.7217499,-0.0017989102,-0.5015139,-0.2884954,0.08861448,0.14802656,0.038560156,0.2395023,0.02245565,0.46669468,-0.13629465,0.08797559,0.009250241,-0.10312672,0.24135716,0.47917628,0.36051005,-0.34607422,0.45210457,0.010456674,-0.11000786,-0.20482773,-0.005157304,0.5027523,0.14615275,0.2451884,-0.074809745,-0.29785615,0.37633228,0.6403483,0.24926887,0.43107584,0.043437384,-0.2234121,0.37768802,0.13819544,0.108894646,0.0750785,-0.37220073,-0.0482987,0.0013817688,0.15922207,0.4021895,0.1773267,0.39938828,-0.08513791,-0.2601197,0.038032312,0.25462615,-0.12500435,-1.0460782,0.3547509,0.24271193,0.7872376,0.56679225,0.015577064,0.13304682,0.57944655,-0.24601758,0.18643141,0.28462118,-0.17768154,-0.57326776,0.45954525,-0.6271693,0.2539509,-0.07195057,0.03406468,0.085574254,0.00092299195,0.4554041,0.70152384,-0.22694315,0.07834217,-0.1400738,-0.18790762,0.17969105,-0.34683266,0.20488442,-0.44342238,-0.28205395,0.6471241,0.40866303,0.3403237,-0.20453885,-0.050192114,0.08692189,-0.04980367,0.10363849,0.030476168,0.066339634,0.05777368,-0.52036494,-0.23939598,0.60750884,-0.09045013,0.15396811,0.052082628,-0.2597877,0.16682748,-0.20035045,-0.21840768,-0.0426387,-0.5229403,-0.08755053,-0.11772213,-0.2819853,0.5716281,-0.15066475,0.31718612,0.062700704,8.7794135e-05,-0.2589354,0.24002177,0.30928004,0.55622315,0.08132067,-0.1817464,-0.3187266,0.17975336,0.18208586,-0.1976801,-0.17236501,-0.19522965,-0.07172033,-0.6605469,0.44638488,0.06301239,-0.26285613,0.16171432,-0.13257074,0.0327042,0.57507205,-0.04617017,-0.1721025,0.033554368,-0.20624413,-0.2378673,-0.15090613,-0.11054977,0.34604084,0.085404456,-0.09958,-0.029163932,-0.030812327,-0.120582044,0.4236836,0.13818428,0.2620278,0.28049842,0.14359844,-0.3902514,-0.08366497,0.08366422,0.26375747,0.09576887,-0.102102794,-0.060282834,-0.40865007,-0.42734075,-0.083394974,-0.16555673,0.32703888,0.045484237,-0.3913299,0.84567213,0.1409589,1.2064427,-0.085481435,-0.24478592,0.02462629,0.4932693,-0.061213836,0.13787879,-0.3945073,0.82504416,0.55987036,0.044572115,-0.14287058,-0.18284686,-0.08028439,0.19102062,-0.19985837,-0.026635226,0.0147094205,-0.66817707,-0.43954286,0.27665496,0.27684158,0.08233085,-0.041607507,-0.0033567303,0.18420643,0.042510092,0.37279275,-0.3447603,-0.12388779,0.23017873,0.3162975,0.039732438,0.0783794,-0.38481057,0.40812212,-0.49716064,-0.0071929027,-0.13011573,0.0669837,-0.13557558,-0.2041857,0.27775022,0.074161835,0.3148625,-0.26439813,-0.36683217,-0.21907698,0.4806601,0.04488459,0.1674247,0.57833016,-0.21208468,0.10033527,0.012026604,0.47868258,1.1413819,-0.30045867,0.08588624,0.41829863,-0.3370202,-0.6280955,0.30330095,-0.23585606,0.09188777,-0.20744024,-0.3005221,-0.38580093,0.1686784,0.1805345,0.0060890475,0.18920752,-0.57095206,-0.241728,0.31714505,-0.31480658,-0.18614617,-0.12779772,0.22339788,0.7186028,-0.35546052,-0.38113284,0.14680184,0.24185924,-0.34077173,-0.5550129,-0.14360042,-0.33746907,0.38067403,0.18736632,-0.33409888,0.054552104,0.21358609,-0.373872,-0.035365216,0.21611135,-0.4395031,0.13886435,-0.28785896,-0.0024483746,0.80888975,-0.07317283,0.12061038,-0.6983419,-0.3537285,-0.9941762,-0.4430823,0.57686454,0.19561923,0.024172632,-0.41490224,0.02150192,-0.035175435,-0.21312632,-0.122143984,-0.3499612,0.37617916,0.18401542,0.45821285,-0.12298525,-0.77333283,-0.10012398,0.13297862,-0.070827834,-0.63727397,0.4389571,-0.020991718,0.86274886,0.049594216,0.111631855,0.35048115,-0.4989807,0.024407092,-0.24725176,-0.22400601,-0.6971864,0.04153826 -224,0.66361815,0.043847654,-0.6982226,-0.028268794,-0.08655733,0.19402355,-0.16673009,0.5024548,0.29160753,-0.5790163,-0.1801002,-0.17891054,-0.036470275,0.27098343,-0.14709453,-0.6402609,0.3180212,0.2990785,-0.5597796,0.4671965,-0.51725954,0.45469907,-0.16966839,0.4725242,-0.010999362,0.2430085,-0.02874502,0.16307357,-0.2066306,0.060237486,-0.061568778,0.20433705,-0.2675428,-0.118141465,0.07008481,-0.38494816,0.020168785,-0.21450768,-0.30521303,-0.68090653,0.2664643,-0.6709965,0.67995715,0.09245121,-0.33222583,-0.02431511,0.1811043,0.13758646,-0.21594326,0.11369786,-0.020994306,-0.13695823,-0.01872576,-0.2766275,-0.49417496,-0.3900396,-0.5418133,0.11564139,-0.5070978,-0.10607308,-0.23330833,0.17825644,-0.272585,-0.04223032,0.07477999,0.33530974,-0.30580524,0.1438848,0.17101623,-0.32955894,0.18987043,-0.61987346,-0.15206112,-0.0076287254,0.2874556,-0.2684891,-0.35139382,0.125107,0.33895373,0.58699214,-0.15256618,0.15477021,-0.4564086,-0.060029518,0.01083601,0.66788673,-0.2867775,-0.4872413,-0.18064465,-0.024595404,0.2371263,0.15274547,0.33136502,-0.29260394,-0.14046867,-0.22793996,-0.28476658,0.433751,0.50798166,-0.5197334,-0.11182525,0.39640796,0.59382564,0.12855631,-0.19765921,0.27830574,-0.021898627,-0.5518891,-0.26942644,-0.11358603,0.109234445,0.7057001,-0.1014091,0.32517585,0.39342606,-0.23568018,-0.032803398,0.23322688,-0.027359918,0.10336859,-0.29253078,0.070995316,0.109731674,-0.25112185,-0.05538876,-0.12875007,0.4711529,0.060700584,-0.74437875,0.41398355,-0.60660094,0.0582653,0.013448293,0.4521779,0.5727526,0.56541806,0.17287493,0.5687358,-0.41606662,0.07405,-0.14153115,-0.2000072,0.09355568,-0.06024733,-0.14998142,-0.5612791,0.13507268,0.07001691,-0.24087304,0.5474791,0.65264255,-0.49083233,-0.14992741,0.13016264,0.7467637,-0.38385007,-0.2811249,0.6918885,1.0897603,0.8170131,-0.10295924,1.1577847,0.20830555,-0.0043029026,-3.4078956e-05,-0.27244467,-0.76045966,0.29949573,0.21778035,-0.39598045,0.47720647,0.09332093,-0.13016725,0.37679848,-0.22102882,-0.033625662,0.065056846,0.23919438,0.08149562,-0.2719499,-0.38896403,-0.00013074279,-0.07087713,0.011486311,0.25923812,0.21183203,-0.32799017,0.5824825,0.0024354954,1.6030515,0.1305301,0.13334347,-0.06443924,0.48921728,0.36717525,-0.17222834,-0.13350528,0.44755706,-0.03793234,0.025650905,-0.43185782,0.038467154,-0.118097246,-0.54615635,-0.28999388,-0.2059291,-0.13938577,-0.18320058,-0.36262855,-0.23667921,-0.07294063,-0.368109,0.49203315,-2.7863894,-0.27875748,0.023746975,0.5439965,-0.1418935,-0.56845385,-0.22502895,-0.27084026,0.36299333,0.33723333,0.42819285,-0.6158519,0.523793,0.43427798,-0.5023324,-0.19397326,-0.49502757,0.067733295,-0.035706062,0.21948433,0.04775917,-0.025272042,0.16887371,0.1405786,0.45865428,-0.29330692,0.11286157,0.37136093,0.45573464,0.1329262,0.41026166,-0.12122374,0.63401884,-0.27651316,-0.16314629,0.3801051,-0.4879249,0.1020914,0.06378254,0.14233114,0.42647567,-0.3972648,-0.8455638,-0.65735877,0.1560568,1.0188036,0.008999395,-0.51085526,0.20438582,-0.678868,-0.6410661,-0.068172954,0.45973194,-0.19616811,-0.1078189,-0.8031594,0.005654648,-0.13021968,0.2504318,0.03789373,-0.18206702,-0.30335405,0.6123737,-0.0037555757,0.40277246,0.3434911,0.18551035,-0.48435363,-0.4157451,0.02887843,0.96849614,0.23474164,0.21344332,-0.2146879,-0.08329216,-0.43992567,0.096446596,0.0803216,0.6033417,0.41742507,-0.053062964,0.07072451,0.2912378,0.09555992,-0.027865447,-0.28038672,-0.177655,-0.16807555,-0.041436356,0.55257785,0.7833473,-0.38273898,0.33999708,-0.10238144,0.04349572,-0.41348758,-0.5166912,0.5650678,0.6926984,-0.23381086,-0.44528088,0.60509366,0.3036029,-0.5594929,0.39784917,-0.6251591,-0.38099858,0.46353707,-0.30610424,-0.2366877,0.35477504,-0.2902525,0.16298816,-0.9557109,0.10340592,-0.18861824,-0.40477905,-0.3979644,-0.03016244,-3.0072606,0.360492,-0.15262514,-0.23905315,-0.07059709,-0.13530625,0.08204684,-0.40827358,-0.54091054,0.11805918,0.100104965,0.58983856,-0.088570334,0.1853549,-0.1754563,-0.37028658,-0.2382363,0.15543576,0.040293876,0.4874955,0.107426204,-0.5384522,-0.0025538306,-0.16053692,-0.43475223,0.19631398,-0.65146166,-0.43082568,-0.10756233,-0.46172103,-0.20011185,0.5976884,-0.39973196,-0.044143338,-0.49853206,0.07354302,0.09916196,0.3049375,-0.047014147,0.10315505,0.07559421,-0.09260989,0.033517938,-0.23342896,0.2007355,0.028472856,0.13943361,0.57529265,-0.14901245,0.10262063,0.41938806,0.7135655,0.08269159,0.8153374,0.36769593,0.14560209,0.39518824,-0.28581598,-0.30554032,-0.27574834,-0.23535724,-0.009269071,-0.49893287,-0.34843564,-0.15429558,-0.4627644,-0.80059105,0.41383648,0.06589061,-0.03466886,0.082434304,0.65966827,0.45872536,-0.30754405,0.103290774,-0.091588326,-0.2057222,-0.44518626,-0.28802142,-0.52678204,-0.5427085,0.2409801,0.9804856,-0.30630627,0.18222249,0.034581657,-0.1269684,-0.15289873,0.22778028,0.121620215,0.26247987,0.2963692,-0.3571165,-0.5327932,0.26830494,-0.30475512,-0.45304367,-0.59760743,0.20002306,0.67335254,-0.57094383,0.5115958,0.2796265,0.02914158,0.13836773,-0.5090761,0.10991336,-0.051332425,-0.32040492,0.32973135,0.25244367,-0.9124894,0.43051156,0.3942007,-0.14708972,-0.631118,0.5607206,-0.063809805,-0.55921537,-0.18687983,0.38751134,0.20107459,-0.09128795,-0.57629687,0.10281532,-0.5028795,0.1858226,0.13610227,-0.0427409,0.4261774,-0.16868846,-0.2494997,-0.79997706,-0.12647432,-0.5776445,-0.25451317,0.24503577,0.19321197,0.29543284,0.11315924,0.06751793,0.41852093,-0.5119783,0.036669876,-0.16923623,-0.13418867,0.17431565,0.32148147,0.542167,-0.47494972,0.6072983,-0.012313242,0.10263523,0.057237294,0.1443286,0.5759672,-0.11272588,0.5068721,0.3308003,-0.2189889,0.19390596,0.62589335,0.0694649,0.3810196,0.1660595,-0.26158312,0.17412423,0.08345691,0.12076909,-0.08015436,-0.46000186,0.04503438,-0.26206592,0.15209289,0.57979566,0.11279454,0.42479792,-0.11641415,-0.3678843,0.110471785,0.30346817,0.12243745,-1.1790189,0.09676973,0.2444561,0.781557,0.3878958,0.13434893,0.07832342,0.4966599,-0.20631969,0.21844481,0.2897174,-0.08929193,-0.3654548,0.25311115,-0.57240695,0.5169856,-0.09823065,-0.06002638,0.15129478,-0.097637616,0.46161485,0.85283566,-0.10598753,0.19199516,0.2717835,-0.3450121,-0.052515764,-0.41375256,-0.014441535,-0.7565158,-0.09364044,0.64373046,0.49993506,0.34376478,-0.1974184,-0.10712352,0.31437275,-0.10903367,0.016689396,0.02693107,0.2956012,-0.33109444,-0.67058754,-0.17057526,0.52439576,0.38923123,0.12708658,0.17903902,-0.23130976,0.3455659,-0.12162169,0.008544554,-0.086036414,-0.47352073,0.050042797,-0.29653135,-0.5531797,0.42050323,-0.05153358,0.29362655,0.29059908,0.117153905,-0.2894101,0.7044993,-0.015757114,0.71235496,0.22026776,-0.10670149,-0.41710475,0.2567463,0.31595555,-0.23401497,-0.07470438,-0.21294932,0.14382695,-0.31846467,0.32445982,-0.009843458,-0.22904782,-0.066665165,-0.07660693,0.15091312,0.5503691,-0.21591671,-0.25389007,0.079106666,-0.09302368,-0.27937496,0.0007464613,-0.09404137,0.43117094,0.20568068,-0.23604609,-0.05219217,0.04400413,0.009192884,0.3490108,0.07123479,0.2668632,0.38332328,0.068027824,-0.30105606,0.0012941584,0.16023938,0.72914773,-0.13515075,-0.03635381,-0.07258708,-0.6182334,-0.43368316,0.10017771,-0.14961204,0.19986673,0.2809931,-0.06070735,0.80710346,0.21000005,1.3021489,-0.044565856,-0.23628205,0.16712034,0.34011284,0.06482551,0.008930889,-0.42896232,1.1047862,0.471982,-0.30992126,-0.20020331,-0.27822572,-0.2008236,-0.0006955266,-0.28332737,-0.17040046,-0.01816287,-0.69698787,-0.27902606,0.2678502,0.1447118,0.28912643,-0.14125152,0.4669228,0.26452953,0.006056588,0.070953526,-0.47128722,-0.25246665,0.29792124,0.42083797,-0.15496908,0.044743463,-0.43320724,0.39961863,-0.533647,-0.019667268,-0.29240945,0.13983165,-0.21638143,-0.29018652,0.2377128,0.16016215,0.20969154,-0.30856782,-0.2217315,-0.2379589,0.44902083,0.16254707,0.12881804,0.4642323,-0.14203997,-0.07581818,-0.011217167,0.5236743,1.0054287,-0.022123247,-0.1392346,0.5855644,-0.27737895,-0.85288507,0.24789476,-0.46976832,0.16971831,-0.13879889,-0.14852424,-0.4798464,0.36627886,0.112629116,0.11205455,-0.034468234,-0.4773266,-0.22113998,0.23417969,-0.43424773,-0.09126264,-0.22619434,-0.021612717,0.54828024,-0.22745843,-0.43086958,0.08160973,0.42117432,-0.2443883,-0.6396045,-0.003916671,-0.3331466,0.22519648,0.2649039,-0.3673152,-0.12121097,0.11223031,-0.40943226,0.067285605,0.21730351,-0.29423794,0.13439511,-0.53338796,-0.20570862,0.9292472,-0.23007597,0.3967569,-0.30328572,-0.6351915,-0.9253171,-0.2758527,0.20501524,-0.0014473001,-0.15027311,-0.78676385,-0.11052696,-0.2771641,-0.39157185,0.08196027,-0.061498255,0.6396899,0.10088942,0.21229273,-0.1701075,-0.96712327,0.076108254,0.25257614,-0.50913745,-0.81146604,0.5263795,-0.045538645,0.8646286,0.1086227,0.1694283,0.5985798,-0.51822925,0.13745692,-0.28831115,-0.13150781,-0.5210084,-0.07877285 -225,0.29161325,-0.25178176,-0.27319366,-0.1230528,-0.2251178,0.017650312,-0.35908818,0.4845251,0.08226917,-0.57103455,-0.22102126,-0.33101588,0.100861825,0.4700535,-0.2591243,-0.5906677,0.05987046,0.29058537,-0.40967274,0.4618327,-0.53767854,0.4168026,0.16471708,0.42087895,-0.2270397,0.21662363,0.5641359,-0.09534596,-0.021555591,-0.3005374,-0.10349083,0.2217898,-0.8825339,0.30032277,-0.18849108,-0.65457124,0.20681195,-0.65856034,-0.11605177,-0.73416436,0.4173891,-0.9967766,0.7422519,0.4199132,-0.15747397,0.14268214,0.17221019,0.384728,-0.22889356,0.11198105,0.3824771,-0.19325832,-0.037323005,-0.48157305,-0.124788225,-0.3488731,-0.6558678,0.14585885,-0.3723893,-0.16041133,-0.43028355,0.25882256,-0.15266769,0.14121714,-0.2144142,0.07835905,-0.6662115,-0.18931821,0.12860183,-0.32973808,0.3270639,-0.44187897,-0.10354034,-0.2522761,0.38689038,-0.5371491,-0.14732453,0.30167985,0.20668073,0.6510541,-0.01950089,-0.28520226,-0.37980223,-0.05546411,-0.04344985,0.66212,-0.28500602,-0.72985816,-0.055962883,-0.10458825,0.2345591,0.23347084,0.054565053,-0.24988195,-0.09300162,-0.39634895,-0.17920902,0.46270877,0.5063918,-0.6485482,-0.35726172,0.2747763,0.503629,0.017573109,0.13630769,-0.17519625,0.030386578,-0.8365656,-0.2869102,-0.024016678,-0.32387364,0.4951237,-0.07966162,0.30779332,0.80877984,-0.116838254,0.0010358393,0.011580318,-0.261021,-0.22778864,-0.07764818,-0.2776218,0.44135126,-0.27799863,0.11976566,-0.36870617,0.8580906,0.033708148,-0.628641,0.37283128,-0.64808524,0.06738709,0.13909201,0.51344573,0.34780562,0.6547421,0.33173826,0.70753205,-0.45432663,0.12808827,-0.08339687,-0.2761071,0.10462512,-0.109275386,-0.058838435,-0.28232232,0.10576985,-0.07616576,-0.1522018,0.17011812,0.620379,-0.5370821,0.077500165,0.20386143,0.7224088,-0.40295655,0.0128830075,0.91809636,1.01562,0.8730749,0.0694848,1.5190881,0.28187814,-0.13330242,-0.050178457,-0.06821059,-0.79993695,0.19124945,0.5983793,-0.112727165,0.33975437,0.16395947,0.17076655,0.41119084,-0.6111658,-0.23303321,-0.24244554,0.09424911,-0.05309509,-0.1782366,-0.4878695,-0.13295825,-0.0058832616,0.045193322,0.29867834,0.43149287,-0.12398144,0.3414939,0.00532074,1.4394728,-0.03925892,0.21271029,0.061981343,0.5440922,0.21885629,0.13918783,-0.0664199,0.110547826,0.22881901,0.08022138,-0.4932111,-0.07749919,0.021130547,-0.4614204,-0.14134264,-0.009729405,-0.25141793,0.12311041,-0.3109244,-0.21152177,0.011088753,-0.03768441,0.4530429,-2.2552907,-0.10850326,0.02062577,0.38694713,-0.28756684,-0.44289857,-0.16350476,-0.45064902,0.7444998,0.42436904,0.53169763,-0.7359973,0.36964214,0.5252163,-0.74010134,-0.18810399,-0.6293973,0.055115283,-0.1422781,0.26979014,0.1565789,-0.27797025,0.07099705,0.071963266,0.5081619,-0.018460507,0.10658522,0.15552227,0.7033779,-0.10192952,0.58262014,0.102708474,0.65003943,-0.30750087,-0.3460881,0.3558541,-0.41750392,0.2828199,-0.40085727,0.01139692,0.29896235,-0.7200605,-1.1425784,-0.74940336,-0.30262145,0.80424917,0.0364318,-0.43986887,0.2168406,0.021213692,-0.2697627,0.016933689,0.68221915,-0.2190793,0.122058466,-0.9136651,-0.016978756,-0.11567545,0.32221442,0.06991561,-0.041209944,-0.8070322,0.73707855,-0.13438186,0.20829575,0.7006506,0.12714767,-0.41598353,-0.60582626,0.28272942,0.85622615,0.3410527,0.13265856,-0.24231982,-0.24227719,-0.10118611,-0.13795574,-0.07619396,0.7155969,0.5283531,-0.12744352,0.0037691533,0.2446353,0.17330216,-0.0076399804,-0.28485602,-0.21689455,-0.17526856,0.11479261,0.73809695,0.81784487,-0.32215303,0.010227772,-0.28190055,0.5629517,-0.16611029,-0.432729,0.7090663,1.0204693,0.027014047,0.076600626,0.84575003,0.61962247,-0.07522627,0.5582825,-0.66015637,-0.50928736,0.23660424,-0.20222922,-0.4120759,0.09989921,-0.25309175,0.049830966,-0.94374734,0.3882802,-0.31469485,-0.15791112,-0.7884089,-0.14867073,-4.2994404,0.2515626,-0.30303058,-0.04495288,-0.049382478,-0.2087708,0.014820993,-0.59645784,-0.5660294,0.3385406,-0.053357333,0.5079604,-0.14266093,0.2986739,-0.24042264,-0.26998663,-0.1711326,0.29128242,0.1783559,0.269683,0.01786005,-0.5504936,0.020601388,-0.29107934,-0.38177353,0.02551123,-0.75933135,-0.11521055,-0.33515632,-0.7205352,-0.17369677,0.69128,-0.4301104,0.0074020503,-0.22449279,0.1008243,-0.43485194,0.5268405,0.047808032,0.13361666,0.11377041,-0.09255053,0.09922572,-0.118660256,0.3977383,0.077980265,0.08392602,0.28366846,-0.13561411,-0.025394749,0.3088112,0.7906562,-0.118959084,0.93240803,0.44877377,-0.045685165,0.2306647,-0.24073096,-0.46588326,-0.58681154,-0.36864942,-0.17166439,-0.40168104,-0.56636876,-0.070565134,-0.37548083,-0.7384974,0.7526573,-0.044293918,-0.3146417,0.061660003,0.28723592,0.21866366,-0.47277027,-0.12183614,-0.05610574,-0.021896005,-0.6138505,-0.32033718,-0.54366755,-0.38004366,-0.08399287,1.0211333,0.07640553,0.1368864,0.26825428,0.18827197,2.0372867e-05,0.15254822,0.070972875,0.110197484,0.5665495,0.10071764,-0.9524624,0.7539175,0.028312897,-0.35723767,-0.6245729,0.3133158,0.5299766,-0.72254074,0.6126342,0.48578906,0.021095056,0.14727512,-0.44945726,-0.46260422,-0.008782631,-0.1453003,0.39615136,0.11721015,-0.7093714,0.43322736,0.4884862,-0.3953917,-0.90158284,0.5379816,-0.026045155,-0.5364753,-0.017969728,0.40864983,0.018306136,0.06392523,-0.35147208,0.21802847,-0.49809903,0.40151295,-0.03305135,0.07637988,0.470996,-0.3291852,-0.21265075,-0.9665596,0.02715299,-0.48753467,-0.3757761,0.02613635,0.07706032,-0.21069881,0.26149315,-0.016132712,0.3766658,-0.49251089,0.24867344,-0.053067602,-0.21881822,0.18029961,0.23934373,0.54055893,-0.45651355,0.69934785,-0.061321665,0.005617368,-0.30464047,-0.046551704,0.46449718,-0.16401193,0.25256124,0.0039327266,-0.08399409,0.29247147,0.8343813,0.24330792,0.20439346,0.180621,-0.003541261,0.36050895,0.19481027,0.09254678,0.22653142,-0.5721965,0.20244277,-0.2094202,-0.1133876,0.37551716,0.047525268,0.4288311,-0.26508713,-0.27694207,0.060814656,0.4121813,0.1844234,-1.0645857,0.1389871,0.07980606,0.72219306,0.5867692,0.15840037,0.287999,0.74153805,-0.34926397,-0.12242991,0.16203931,-0.06706005,-0.389054,0.6048894,-0.47712988,0.39037046,-0.028055971,-0.09889569,-0.020223552,-0.14918177,0.21384016,0.84677124,-0.14482419,0.12130387,0.027708376,-0.12498732,0.064638786,-0.3645175,0.17754288,-0.30845445,-0.25171274,0.90584886,0.36543405,0.5083648,-0.12955295,0.047653638,0.13265567,-0.063976035,0.047109984,0.06288513,0.14121374,0.13535544,-0.63337135,0.19202848,0.7202284,0.1633537,0.12923144,-0.06640558,-0.43914604,0.38249928,-0.3108674,-0.27905232,-0.12521613,-0.94144285,-0.07544117,-0.5263612,-0.17995556,0.32189712,0.11592784,0.26983887,0.19614299,0.16494918,-0.17709303,0.4207763,0.017183412,0.9747435,0.35436425,-0.021122104,-0.23659499,0.2868129,0.19011433,-0.33817795,0.19609486,-0.1644322,0.021114012,-0.63912654,0.36033052,-0.063636556,-0.30333892,0.24321112,-0.16685668,0.010555747,0.5093037,-0.18915229,-0.146368,0.37172875,-0.15620849,-0.1583156,-0.35277602,-0.21926436,0.278538,0.29872474,0.25740525,-0.026296306,0.04944873,-0.39646593,0.73712623,0.07153923,0.4325308,0.2262805,0.2368814,-0.37142974,0.07933991,-0.27152833,0.60232633,-0.21297356,-0.16397658,-0.20482488,-0.6021546,-0.45348293,-0.022210801,-0.084888086,0.097704366,0.007084371,-0.12285147,0.6279082,0.18257864,1.0468303,-0.0030813874,-0.3395963,0.21910386,0.62946326,-0.08289254,-0.062619105,-0.44418994,1.3805637,0.46047768,-0.16765155,-0.066263996,-0.22060302,-0.04040586,-6.151199e-06,-0.38491812,-0.089967795,-0.060159046,-0.6660676,-0.23301895,0.32179466,0.44242612,0.07528237,-0.16280004,0.35883665,0.24750724,0.19468744,0.2930323,-0.6426442,-0.37102038,0.55491817,0.3086482,-0.052693546,-0.007604039,-0.3613649,0.47826853,-0.35435495,0.0772752,-0.63909996,-0.01178354,-0.29568657,-0.1663385,0.122215554,-0.042196583,0.070094936,-0.40638837,-0.2582666,-0.15566906,0.2687382,0.19817111,0.2922961,0.6259688,-0.17331739,-0.0046023903,-0.20894139,0.62876886,0.90721893,-0.4679144,0.008099305,0.51738244,-0.30041012,-0.2573629,0.3556137,-0.30355945,-0.13811496,-0.15254508,-0.13500816,-0.42821997,0.2275979,-0.078008644,0.052907027,-0.012059498,-0.84801614,-0.12603362,0.49520817,-0.32512212,-0.31789836,-0.3518569,0.42229065,0.9496676,0.04819884,-0.37017232,0.26603454,0.23094305,-0.29388076,-0.73693335,-0.20888798,-0.3419644,0.2836786,0.17821482,-0.26558205,-0.20802906,0.12339256,-0.5960721,0.02239626,0.1355634,-0.3328317,0.19628778,-0.5553622,-0.030172214,1.0117676,-0.2511878,0.3030942,-0.6670464,-0.47866398,-1.2025287,-0.22176628,0.86417407,0.27309236,-0.049127832,-0.63887256,-0.0803416,-0.10949619,-0.27571535,0.04121895,-0.22459646,0.28419074,0.10266203,0.7609475,-0.23913565,-0.8148409,0.14584777,0.19547157,-0.17406969,-0.4318931,0.40577698,0.23177285,1.1045799,-0.053346418,-0.22505574,0.47455508,-0.7204767,0.119289055,-0.22680569,-0.098750114,-0.8827182,0.14785503 -226,0.44018638,-0.19031775,-0.38672277,-0.1411397,-0.24956968,0.063969836,-0.22423226,0.5797975,0.24169579,-0.386082,-0.15442461,-0.013685938,-0.040400688,0.25944602,-0.3024187,-0.34809294,-0.0023444816,0.08840488,-0.33563375,0.5672705,-0.43564293,0.19411346,-0.041750252,0.39204428,0.25750017,0.17333697,0.07283993,0.0985663,-0.20279548,-0.4304706,-0.09010173,0.41755286,-0.48049062,0.17182848,-0.2714823,-0.32657537,-0.08682577,-0.54258937,-0.42874253,-0.8044917,0.21806642,-0.85920143,0.45714816,-0.046426553,-0.39332706,0.3818681,0.14717758,0.14467758,-0.021503415,-0.17644358,0.081152946,-0.16027999,-0.06602329,-0.0992128,-0.188613,-0.32365534,-0.6174943,0.10004404,-0.4555539,-0.088984184,-0.27547503,0.2107326,-0.26622343,0.03252529,-0.09861842,0.43171233,-0.5009878,0.06604856,-0.009684451,-0.017481204,0.25667825,-0.58515173,-0.26008618,-0.107020825,0.12579527,-0.12720367,-0.2919846,0.28899294,0.34323424,0.46670237,-0.08541573,-0.21337156,-0.3943172,-0.025492985,0.07004597,0.5040152,-0.26180464,-0.6929276,-0.16180652,-0.019328007,0.42101005,0.24979767,0.054132275,-0.119078815,-0.15573297,0.058825772,-0.24816039,0.41615385,0.58543926,-0.24402499,-0.21270134,0.29898012,0.41058558,0.211943,-0.19004235,0.013749689,0.0060351267,-0.5623605,-0.101806045,-0.08372204,-0.14338687,0.5703457,-0.15000093,0.29406077,0.5050782,-0.11615951,-0.06817789,0.20754282,0.040849358,-0.13754451,-0.2915724,-0.22478652,0.28538412,-0.55258155,0.17969775,-0.20177223,0.6852082,0.008263398,-0.8481171,0.3267372,-0.41881877,0.092047594,-0.067329586,0.5405444,0.68157244,0.45817944,0.38155112,0.66674805,-0.29832697,0.0035016537,-0.06721532,-0.28769585,0.057630025,-0.3338108,-0.0806162,-0.4504369,0.03710015,0.09867927,-0.13409248,0.17202665,0.54164225,-0.59423614,-0.11895238,0.30060238,0.62002575,-0.21281213,-0.060247615,1.0655999,1.0802615,1.0062966,0.036726903,0.9929998,0.099697016,-0.0783766,0.20439559,-0.06743522,-0.5674691,0.25737396,0.3634128,0.012589455,0.15800384,0.011463429,-0.1210857,0.40522626,-0.47514075,-0.21709254,-0.13314322,0.20144391,0.11255026,-0.042273596,-0.46117157,-0.32012242,-0.006007258,0.19477683,-0.011366576,0.29729068,-0.30328277,0.5282947,0.015125655,1.4590657,-0.07278822,-0.05188188,0.05445149,0.6085708,0.18726148,-0.15274328,0.020163,0.29905933,0.22088704,0.15445076,-0.43961075,0.011720099,-0.20352358,-0.48555702,-0.05335905,-0.38954994,-0.21224639,-0.07821691,-0.5252148,-0.19733475,-0.14812247,-0.35444325,0.47257257,-2.9181123,-0.15051797,-0.04806762,0.19423157,-0.11803767,-0.4334553,-0.0022155978,-0.50558233,0.4698459,0.38839057,0.43410578,-0.7060148,0.12822072,0.39371386,-0.5373684,-0.12509418,-0.6294956,-0.18660358,-0.018227303,0.4945283,0.12524895,-0.039662924,0.13587716,0.07442168,0.6333956,0.10221111,0.19848748,0.2548631,0.34107918,-0.15919964,0.43777013,-0.08401349,0.40137446,-0.20071971,-0.2534238,0.3938322,-0.37201935,0.2700021,-0.20455018,0.21454923,0.48663148,-0.47186297,-0.8945552,-0.5731898,-0.18844365,1.2409716,-0.12155479,-0.49811804,0.23781139,-0.3164588,-0.28354993,-0.07016357,0.50286174,-0.15802923,0.06012974,-0.66421366,-0.03603927,-0.12551738,-0.02033757,-0.10207352,-0.0034751613,-0.4336778,0.6542034,-0.058342416,0.44087648,0.301927,0.12001906,-0.44920892,-0.54208493,-0.03318789,0.8632798,0.5428047,0.14574325,-0.28241304,-0.14834572,-0.33489868,-0.103496,0.07540794,0.5806804,0.67098755,-0.08288537,0.12513983,0.28916785,0.107365765,0.040497564,-0.12579957,-0.17064841,-0.1019685,0.064728774,0.66055834,0.71291775,-0.15623833,0.35462993,-0.061383132,0.29109412,-0.16879836,-0.47017133,0.2999969,0.91312015,-0.115101576,-0.28973305,0.60657084,0.5072286,-0.11621261,0.44042805,-0.5624094,-0.30892432,0.3694595,-0.08196031,-0.4284115,0.3697591,-0.35381216,0.04784091,-0.8152752,0.39110374,-0.18791929,-0.62205386,-0.59106636,-0.10470618,-3.1070635,0.1083362,-0.21560279,-0.2585539,-0.09862773,-0.36306334,0.25275913,-0.51784736,-0.48681644,0.07567823,0.09547274,0.63961,-0.17998943,0.027746774,-0.19455746,-0.24396305,-0.30979195,0.17257582,0.12215014,0.35068476,-0.23384878,-0.3004774,-0.14782552,-0.1670106,-0.46468773,-0.038441036,-0.4969892,-0.55691385,-0.06666207,-0.38504124,-0.18269716,0.60325617,-0.3261346,0.13384774,-0.24570712,-0.04827132,-0.06617222,0.18042529,0.11394959,0.13793881,0.05818394,-0.09100064,0.21321088,-0.30333886,0.3005316,0.035406247,0.22915697,0.4628309,-0.21196172,0.27767077,0.5097383,0.6614057,-0.2389974,1.0683163,0.3717823,-0.13324738,0.3095337,-0.12684654,-0.3748433,-0.5874486,-0.21046156,0.0025152005,-0.44900507,-0.28416833,-0.04752119,-0.3645476,-0.79306895,0.5353624,0.0069568045,0.22871429,-0.14935657,0.25200006,0.6118521,-0.20722711,-0.09070037,-0.04576534,-0.13908319,-0.5503752,-0.30258703,-0.6594837,-0.51546544,-0.10108062,0.9345824,-0.015635088,0.061844498,0.116714634,-0.0055830926,0.0040028393,0.11070356,0.005441278,0.047890954,0.30681607,-0.06581654,-0.6966442,0.5266475,-0.04908044,-0.20627768,-0.46187016,0.32371166,0.5998117,-0.50003844,0.3846325,0.496001,0.14893073,-0.203013,-0.6174502,-0.05540543,-0.13090742,-0.15885699,0.55261075,0.38570875,-0.8231422,0.561548,0.3240166,-0.18098067,-0.700168,0.4899999,0.012549408,-0.10574006,-0.021029335,0.3286208,0.23391539,0.06957081,-0.16751114,0.20522691,-0.35934302,0.28116447,0.22719672,-0.10631596,0.3068375,-0.2488513,-0.05214797,-0.7479502,-0.0067632394,-0.5307476,-0.40279698,0.15242115,0.031093927,0.05384831,0.12992099,-0.045855254,0.36329755,-0.27649838,0.051888064,-0.05316168,-0.27754566,0.41147757,0.55051225,0.58018523,-0.3169406,0.6292435,0.19148391,-0.12122457,-0.050906897,-0.0057580955,0.37559244,0.014479734,0.3701595,-0.045471802,-0.20263499,0.22306943,0.7722501,0.31178468,0.39752483,-0.05012504,-0.14958969,0.21969827,0.08928617,0.34016022,-0.026987694,-0.6389723,-0.012129478,-0.4674905,0.13232537,0.45031548,0.16021742,0.22349226,-0.013531387,-0.2795764,0.051817838,0.12473016,-0.009274505,-1.441498,0.33702916,0.20061627,0.90459466,0.47701043,0.033811558,0.006519422,0.78597915,-0.18361323,0.09390625,0.46720922,0.16224577,-0.37409514,0.6062411,-0.88511705,0.44514117,-0.036815554,0.09768869,0.04703327,-0.117676325,0.4895391,0.6732971,-0.13856678,0.027978437,0.041637033,-0.32974097,0.13767636,-0.43685693,0.15402137,-0.46467587,-0.1933929,0.72838837,0.4855321,0.35366327,-0.15105866,0.028505277,0.1656132,-0.113223806,0.08501735,0.059179578,0.10664966,-0.28209487,-0.58148503,-0.08408713,0.50277704,-0.10641644,0.17268327,-0.02292283,-0.2079966,0.18382835,-0.08694441,-0.15604195,-0.066551924,-0.56972736,-0.07191628,-0.28759387,-0.4627697,0.5880947,-0.23767509,0.18313083,0.24828121,0.067508064,-0.14487621,0.12569737,0.17006983,0.6970142,0.026044939,-0.059236288,-0.24717112,0.13972208,0.10965289,-0.20486432,-0.2515992,-0.19118768,0.043906957,-0.5419493,0.36755604,-0.16108248,-0.34461018,0.10802855,0.0490105,0.12495576,0.4317048,-0.086933084,-0.2055654,-0.042893205,-0.05704068,-0.20098902,-0.1968077,-0.001119107,0.33625534,0.25477138,-0.07705145,-0.00904618,-0.043427125,-0.15460685,0.34104,-0.081122115,0.40307647,0.23908776,0.0020385496,-0.3233854,-0.046220373,0.07387518,0.5216913,-0.0728175,-0.026615635,-0.23055968,-0.355538,-0.37542906,0.15677328,-0.061270766,0.4182452,0.21451196,-0.09853326,0.7487644,-0.09908532,1.1048942,0.015489116,-0.5084353,0.0923783,0.5019531,-0.05152153,0.0069873296,-0.26117638,0.91948545,0.3244759,-0.09728569,-0.094241485,-0.38873243,0.1590859,0.20517409,-0.13292915,-0.100449406,-0.052400418,-0.67778134,-0.12143346,0.20599991,0.29257077,0.19287461,-0.15479721,-0.07388156,0.38844207,-0.048244696,0.33524638,-0.39166203,-0.15463322,0.34421706,0.3249446,-0.16451764,-0.05692539,-0.5068027,0.28869048,-0.41299325,0.007823937,-0.3546448,0.21336079,-0.33001754,-0.29233217,0.2570782,-0.10071629,0.3624543,-0.3006302,-0.39802945,-0.26361865,0.4471932,0.036497585,0.0074569527,0.3748514,-0.28917605,0.0058606258,0.006535087,0.3368495,1.1037716,-0.37371188,0.016862847,0.3202143,-0.27769792,-0.52015245,0.33314624,-0.38195962,0.23386961,0.12885202,-0.20194538,-0.43324348,0.241767,0.31138635,0.23134503,0.07631134,-0.6489552,-0.102861695,0.23098512,-0.22486502,-0.14658666,-0.37800562,0.015103277,0.5243985,-0.28340587,-0.47370815,0.010940436,0.25418356,-0.19998507,-0.54121906,0.04700795,-0.28005275,0.21864866,0.08299694,-0.4385289,-0.09850773,0.052725367,-0.4476819,0.07075559,0.17630953,-0.26085377,0.095462404,-0.39270163,0.08848757,0.9913596,-0.16249326,0.27281505,-0.4234135,-0.53548026,-0.7426359,-0.36276683,0.21630332,0.21489376,0.09025722,-0.6494327,-0.036384802,-0.23405956,-0.20362127,-0.118244335,-0.30384475,0.49683782,0.16297327,0.3904993,-0.17981823,-0.6697718,0.2332038,0.046061873,-0.06356162,-0.45559615,0.54904366,0.04898111,0.6834713,0.11523734,0.14643377,0.24071416,-0.5475148,-0.005930327,-0.11469738,-0.20270199,-0.62780625,0.111276194 -227,0.3290613,-0.04997078,-0.64484066,-0.056480415,-0.15199013,-0.008720605,-0.23726441,0.54036385,0.41964,-0.5067823,0.018239724,-0.040123835,-0.00065657496,0.1690162,-0.23435125,-0.5573369,-0.054123804,0.19775401,-0.5303414,0.57294106,-0.3734926,0.27354482,0.22868626,0.24978042,-0.053737342,0.21907641,0.012344356,-0.15970853,0.04367321,-0.12550062,0.02363178,0.19513133,-0.4642673,0.33279622,-0.1220185,-0.12943108,0.047809288,-0.37780836,-0.40108678,-0.7684351,0.10609992,-0.7074166,0.54651344,0.03610563,-0.4189439,0.1698226,0.001907649,0.14272952,-0.25170547,0.045023486,0.3093025,-0.21803635,-0.5419687,-0.28334385,-0.29724076,-0.48676902,-0.47405085,-0.14567049,-0.45785713,0.28385085,-0.31942636,0.22117516,-0.30666262,-0.0154713895,-0.21928999,0.36346248,-0.45932597,0.26721132,0.16471331,-0.051657908,0.4627703,-0.5976193,0.04432952,-0.12269013,0.15624431,0.16410202,-0.35881594,0.32170883,0.08981873,0.6187976,-0.097858004,-0.10556693,-0.3038948,0.09130164,-0.059430383,0.4168487,-0.2824741,-0.107071675,-0.1747697,-0.08070827,0.36866134,0.30788282,-0.18721618,-0.38878843,-0.10144453,0.005988107,-0.38005373,0.41943994,0.58593154,-0.092834204,0.108618245,0.4192701,0.36685672,0.26116404,-0.26043314,0.10517548,-0.13387762,-0.5656177,-0.22565348,0.07275853,0.0058145477,0.4394397,-0.09752385,0.10986643,0.6583353,0.0014692178,-0.2682777,0.18312621,0.14755373,0.0929356,-0.14455853,-0.18265165,0.2946133,-0.63226086,-0.14025773,-0.3379892,0.63088745,-0.12962992,-0.96283305,0.40353787,-0.3859546,0.072037585,-0.16204707,0.7141057,0.82469726,0.8426357,0.07576804,0.90079814,-0.66491574,0.012856511,-0.23403105,-0.37672248,0.42021805,0.020566909,0.035242837,-0.44404528,-0.29006672,0.08702927,-0.2869115,0.121797055,0.49173906,-0.42707422,-0.33493587,0.10445145,0.58045304,-0.36414176,-0.13546176,0.50057256,1.0997844,0.7592944,0.19277444,1.2434611,0.07824834,-0.10668422,0.013578773,-0.15131743,-0.7973777,0.27034616,0.23780641,0.14484888,0.13211495,0.18255416,-0.044699267,0.284153,-0.10222367,-0.27343372,-0.13507025,0.3350482,-0.2430117,-0.09802858,-0.26373294,-0.36472642,0.04467751,0.16474196,0.026987245,0.2456381,-0.1862851,0.19960557,0.2808129,1.4335009,-0.111213885,0.012093612,0.13031076,0.123961225,0.29883906,-0.16198143,-0.1988612,0.43932799,0.38427818,0.019585064,-0.6217126,0.095253855,-0.07185674,-0.3318729,-0.10156015,-0.20735945,0.094385706,-0.1376349,-0.28102487,-0.17232966,0.0002736094,-0.66678596,0.5286599,-2.7283123,-0.038303215,-0.008305591,0.38514048,-0.011802875,-0.23451048,-0.3528171,-0.49623632,0.4417944,0.32945964,0.59013164,-0.47675964,0.4131565,0.4326573,-0.6232394,-0.12585126,-0.75694394,0.011032861,-0.03390919,0.18869518,0.09393603,-0.08624358,-0.0080888085,-0.023070775,0.4514119,0.0049849106,0.15759343,0.45080596,0.47490963,-0.09787367,0.48044747,-0.22213088,0.49430627,-0.3054849,-0.09846897,0.22327016,-0.26972142,0.25498372,-0.19522974,0.19097377,0.39725304,-0.4592225,-0.799013,-0.43650293,-0.049663864,1.3038821,-0.42566812,-0.45567256,0.2221772,-0.145651,-0.28790763,0.061192673,0.67474043,-0.17928974,-0.061982915,-0.78723466,-0.13749428,0.019687848,0.44829047,0.018392816,-0.007901325,-0.3938715,0.63602406,0.013388147,0.6808316,0.44797057,0.13493209,-0.12918893,-0.22239974,0.048817195,0.84798086,0.30380544,0.16848278,-0.2608541,-0.09225222,-0.28950465,0.05148065,0.053278368,0.64445245,0.57255286,-0.1673056,0.068867855,0.42759016,-0.23745863,0.011373346,-0.14218631,-0.30940178,-0.12309189,0.10120343,0.52621025,0.7431679,-0.0038994963,0.17319356,0.113936916,0.33095136,-0.056610264,-0.65060896,0.38595402,0.6204735,-0.13411643,-0.2792803,0.5805258,0.49882835,-0.018891223,0.5574243,-0.4790827,-0.48474312,0.4985804,-0.022053044,-0.44249102,0.36428055,-0.3644283,0.07668848,-0.7540747,0.20854998,-0.39495108,-0.7393925,-0.34920242,0.06575502,-2.4795847,0.27009627,-0.106680945,-0.1108612,-0.086828575,0.015428112,0.37130144,-0.36840317,-0.6193815,0.013520222,0.34964234,0.46797693,-0.016570369,-0.09526897,-0.2403953,-0.30700442,-0.30202186,0.1850868,0.14330646,0.2313322,-0.12744525,-0.60184455,-0.311114,-0.1897517,-0.18750317,-0.025552187,-0.5427781,-0.24038744,-0.0575156,-0.66115963,-0.3210028,0.5585062,-0.43421504,-0.02669505,-0.10888757,0.039424498,0.12653463,0.27068678,-0.28022307,0.14216545,-0.08720649,-0.18759878,-0.14182955,-0.2952823,0.3183969,0.051939055,0.14699909,0.32892603,-0.071548834,0.046414085,0.76935196,0.60185236,-0.21510823,1.0922264,0.4632074,-0.009919453,0.11799698,-0.020658858,-0.17681734,-0.6871844,-0.0503755,-0.29472938,-0.53533834,-0.08352104,0.100082435,-0.41620815,-1.0148411,0.5608891,0.15129124,-0.07242871,0.14039114,0.3525844,0.35790524,-0.04621158,0.039246693,-0.23681849,-0.3371926,-0.46652144,-0.3433066,-0.832888,-0.30069587,0.14700437,1.1791921,-0.32087544,0.194908,0.061669275,-0.16349524,0.048522923,0.13995603,0.005411675,0.2857786,0.4014242,0.035926737,-0.47577098,0.3603515,-0.2326805,0.07100027,-0.6356642,0.232733,0.61427546,-0.79813373,0.42562735,0.40535083,-0.0108137615,0.024278838,-0.7335507,-0.29761994,-0.011774559,-0.1767288,0.5207139,0.23374255,-0.96266717,0.54055804,0.28344434,-0.22774762,-0.7422923,0.36800683,-0.17656633,-0.19204037,-0.021224352,0.26830417,-0.049908385,0.028196167,-0.23894912,0.122526355,-0.38831088,0.40106437,-0.029259672,-0.20603308,0.26995432,-0.106400795,-0.0016636115,-0.89144367,-0.11376064,-0.6409396,-0.20195073,0.39008886,-0.029147752,0.03981232,-0.018571189,0.20410262,0.45910007,-0.32175812,0.117840394,-0.44582698,-0.36553735,0.640926,0.5760117,0.47295552,-0.31287748,0.5254865,-0.09113913,-0.084633,-0.31130183,0.22655572,0.4017731,0.07035808,0.36720133,-0.08109457,-0.21328834,0.10681209,0.8222581,0.20479801,0.2105342,0.023614787,-0.06798342,0.2422631,0.05818101,0.14339264,-0.19448288,-0.55265284,-0.023345493,-0.42977995,0.1646367,0.5477828,0.24539311,0.45314205,-0.15764305,-0.22953017,-0.0666232,0.24166647,0.30873543,-0.8712771,0.46808916,0.14621775,0.3983362,0.68232447,0.16071132,0.012243862,0.62005687,-0.076546624,0.22112466,0.1995174,-0.032534745,-0.3838474,0.41963392,-0.7727794,0.3432981,-0.05280649,-0.048464578,0.3590904,0.013267613,0.45505187,1.0092162,-0.035512384,0.20746034,0.040938117,-0.16202904,0.18804106,-0.33175847,-0.052722856,-0.48955253,-0.5040999,0.61346656,0.40764326,0.5966015,-0.20201008,-0.106998056,0.058422275,-0.15520594,0.28678086,-0.03456235,-0.059376523,-0.24480905,-0.49011052,-0.09116945,0.5391846,0.041700702,0.11074129,0.028723657,-0.007780882,0.49609888,-0.020845817,-0.043699466,-0.18785235,-0.6433734,-0.028232204,-0.41568437,-0.270284,0.59200656,-0.1956065,0.32281584,0.175514,0.05825076,-0.20422564,0.32609308,0.16223475,0.7222162,0.09804832,-0.23687671,-0.2720502,0.0899375,0.19966528,-0.28751692,-0.16840135,-0.29011595,0.005844162,-0.7892783,0.26821136,-0.29610398,-0.21074031,0.301984,-0.0670424,0.019917719,0.49736512,-0.11377736,-0.25380978,0.08409012,0.015237863,-0.281994,-0.42648834,-0.30537716,0.1147242,-0.084779516,0.015597921,-0.044456463,-0.20141497,0.05853174,0.26068056,0.09222668,0.15389329,0.20305167,0.35295933,-0.3116711,0.1044053,0.2614708,0.61915904,-0.075927325,-0.027043384,-0.31737417,-0.18201311,-0.2727854,-0.02357812,-0.051239647,0.4534243,0.1845418,-0.23117863,0.8285692,0.0075046006,0.75508314,-0.08075702,-0.19045022,0.09589006,0.50001913,-0.014189113,-0.2002666,-0.25715658,0.75909203,0.7133845,-0.114405684,-0.08553735,-0.53642213,-0.21318942,-0.014479348,-0.30988201,-0.1817453,0.013044215,-0.76919544,-0.21397766,0.14561656,0.17300566,0.10762089,-0.18740067,-0.057519324,0.122686386,0.12728333,0.02561493,-0.4000721,0.06162371,0.1708501,0.19612479,0.022323979,0.18958451,-0.49431655,0.2704901,-0.49366072,0.09102298,-0.27944085,-0.017380165,-0.18272002,-0.27133548,0.12285599,-0.026300251,0.27345043,-0.20106035,-0.30281267,-0.19684808,0.4402264,0.315366,0.25484616,0.76595074,-0.30912465,-0.062282316,0.013234879,0.59480995,0.9385453,-0.4393257,-0.09543034,0.5042484,-0.32852352,-0.533451,0.050657757,-0.36341682,0.029272325,-0.06532153,-0.32424673,-0.24201521,0.33834013,0.0017657166,-0.14272335,0.04435271,-0.64740986,0.11562784,0.050368402,-0.17995375,-0.157181,-0.20797521,0.14512393,0.67089623,-0.39927924,-0.46588933,0.07021011,0.10876794,-0.10222844,-0.47616732,0.088450365,-0.39757535,0.24090873,0.19564992,-0.3603348,0.035845462,0.0015256542,-0.524374,0.032496914,0.13410585,-0.28126246,-0.060425382,-0.327956,0.06882454,0.84428877,-0.045538142,0.11027778,-0.23940231,-0.5164869,-0.6474997,-0.16177852,0.18099913,0.13165952,0.0067371484,-0.49494222,-0.034859076,-0.18481919,-0.17445841,-0.17422372,-0.39500573,0.61979395,-0.025803594,0.321948,-0.24815321,-1.1185145,0.31347054,0.1775061,-0.23956618,-0.5120811,0.49051157,-0.18952414,0.96491444,0.11611735,0.09881732,0.2674592,-0.6659114,0.11540366,-0.32536426,-0.27558237,-0.55728483,-0.0557287 -228,0.47886398,-0.19752581,-0.59770036,-0.08005032,-0.38711196,0.059901755,-0.29893747,0.0883544,0.4083397,-0.1826593,-2.8488728e-05,-0.058994785,0.058295663,0.4649418,-0.07667816,-0.80334485,-0.019886823,0.07250383,-0.7447606,0.73905087,-0.364467,0.22849448,0.0038479657,0.49923393,0.22004208,0.42403692,0.3128613,0.16269387,-0.106950395,0.06711844,-0.09260626,-0.17418225,-0.7453964,0.20985621,-0.22752164,-0.42176068,-0.17062703,-0.4812923,-0.35371134,-0.78725123,0.34854904,-0.8830366,0.3811514,-0.17822559,-0.27684137,-0.028801877,0.13644348,0.2587336,-0.2859394,-0.13828447,0.2757975,-0.4113692,0.02472149,-0.16462046,-0.3066668,-0.50522697,-0.51718533,-0.090524554,-0.45573,-0.27566513,-0.19995672,0.24481949,-0.27086586,0.031141588,-0.3836373,0.41971308,-0.417625,0.04913124,0.37188143,-0.38354412,0.20185944,-0.4991431,-0.17927231,-0.11650972,0.07330895,0.21368074,-0.16660868,0.3721257,0.091551885,0.43021268,0.23649234,-0.29326597,-0.34861806,-0.09273617,0.3307829,0.45818424,-0.00737331,-0.0903465,-0.35529807,-0.39274108,0.08054546,0.24873048,0.06926347,-0.42161736,0.19521178,-0.0048868796,-0.07863916,0.3718283,0.48977235,-0.2660379,-0.20064057,0.22740373,0.5138901,0.111686304,-0.40986758,0.13851728,0.010935539,-0.28465855,-0.29507986,0.349411,0.030419676,0.5995435,-0.078560844,0.2549452,0.7154538,-0.045277156,-0.05570484,-0.26010698,-0.09180936,-0.117893346,-0.5426208,0.05220533,0.3802386,-0.54659104,0.33202484,-0.32090524,0.5354751,0.1818095,-0.6704291,0.38630503,-0.60264146,0.15246776,-0.010211174,0.556747,0.71736825,0.3972187,0.11434233,0.9448987,-0.40072492,0.06570163,0.05140659,-0.23820694,-0.037541136,-0.22082637,0.5252831,-0.4498656,0.14158954,0.040111654,0.07346987,-0.012713075,0.20624296,-0.15343955,-0.22928485,0.024780402,0.85056233,-0.25174963,0.06725286,0.9276208,1.1438197,1.0578816,-0.08031095,1.3174752,0.39730108,-0.27785963,0.017505554,-0.19713587,-0.6932175,0.045673314,0.30555105,0.4849425,0.32045534,-0.0018793253,-0.113654904,0.47518376,-0.16549365,0.13469185,-0.034724686,0.024965078,0.097374715,0.009059759,-0.39253664,-0.35679862,0.09465651,-0.0015480518,-0.17723306,0.2961627,-0.09207019,0.67366517,-0.08019309,1.286106,0.06511723,0.13598795,0.102377616,0.63305336,0.21307868,-0.28695473,-0.027244912,0.20537768,0.18903807,0.099459775,-0.4518631,0.12384743,-0.46875408,-0.5870832,-0.10347082,-0.48571905,-0.104831494,-0.0014636058,-0.48875183,-0.28455836,0.02566592,-0.25612992,0.3114486,-2.4351556,-0.09129203,-0.24385346,0.22303008,-0.3689882,-0.100933,-0.22114347,-0.5825672,0.27846402,0.4104937,0.5371611,-0.556176,0.40964955,0.41305843,-0.50331146,0.08967542,-0.54800713,0.010955735,-0.066692226,0.4507327,-0.06606059,-0.13832003,-0.07405259,0.2541601,0.8436681,0.21077076,0.030000338,0.3352345,0.40035424,-0.24183017,0.44745725,0.032181546,0.47267196,-0.47633892,-0.14712438,0.4510818,-0.5551428,0.4249542,0.067692645,0.24942707,0.62383497,-0.5125812,-0.7882072,-0.6726582,-0.41123036,0.99471843,-0.33756235,-0.7178242,0.33092144,-0.12838612,-0.14433195,0.10447465,0.67786896,-0.044465225,0.15776429,-0.46036005,0.015488678,-0.086407185,0.26177436,0.02511426,0.109605536,-0.3169632,0.8617194,-0.11923694,0.48076814,0.2608885,0.24420485,-0.10631265,-0.3268759,0.12652113,0.6204064,0.41664836,0.15392978,-0.08241368,-0.121198945,-0.24679483,-0.44969383,0.10138574,0.74142194,0.62018734,-0.12394642,0.1347399,0.376929,-0.26718032,-0.053818308,-0.06443748,-0.4221512,-0.15690756,0.15214403,0.38566494,0.84207475,-0.05929319,0.24266097,-0.17115323,0.34040943,-0.16271535,-0.5577646,0.469334,0.6367211,-0.12620698,-0.11740981,0.5680514,0.42412314,-0.50927544,0.47213942,-0.5262124,-0.41107467,0.644692,-0.036712885,-0.57526743,-0.08934139,-0.3030569,-0.056158945,-0.72745633,0.05418724,-0.28131846,-0.54556745,-0.38331082,-0.1549748,-3.953833,0.221496,-0.16018263,-0.16377082,-0.34596178,-0.06797177,0.27307895,-0.59424883,-0.5419603,0.099471614,-0.008191425,0.69683796,-0.04410765,0.21287963,-0.41607797,-0.059417907,-0.5216165,0.43048877,0.061595403,0.3533377,-0.28252247,-0.3243003,-0.12402133,-0.20683649,-0.6862136,-0.05097021,-0.7012343,-0.35004717,-0.28274506,-0.39955872,-0.47060782,0.60572064,-0.34351444,0.059813935,-0.31494066,-0.11282912,-0.2642566,0.4360256,0.4267775,0.2958656,0.195549,0.026316,-0.30278835,-0.3312244,0.015742756,0.12386895,0.30226517,0.47724703,-0.19495371,0.19492254,0.35118052,0.69266516,-0.05217347,0.81509584,0.061309136,0.061495826,0.61564755,-0.22635563,-0.3660348,-0.78588176,-0.19750205,-0.16780451,-0.33137527,-0.5812682,-0.12808274,-0.4023153,-0.7593956,0.3960373,0.33538005,0.36997747,-0.036098134,0.04689568,0.32132527,-0.26617417,0.09190002,-0.0989103,-0.09723937,-0.6886638,-0.4484838,-0.7016522,-0.7856216,0.17056957,0.82418376,0.056229673,-0.30287132,0.13032189,-0.59732324,0.14736381,0.37317145,0.124780305,0.077855915,0.433668,-0.01245379,-0.73478264,0.68956214,-0.08378412,-0.08827799,-0.5258386,0.11282542,0.6328615,-0.540331,0.8186339,0.18480158,0.34282777,-0.21632811,-0.45527872,-0.2839704,-0.167234,-0.16595769,0.4930186,0.3154434,-0.78858626,0.29175436,-0.00660074,-0.1128114,-0.65229416,0.3617391,-0.04114971,-0.10232261,-0.014932708,0.48973578,-0.04506245,-0.14333403,-0.012523023,0.11456004,-0.6527176,0.15111922,0.37854058,0.08677408,0.5087572,0.038090475,-0.35897747,-0.5845813,0.11820744,-0.45735458,-0.08492343,0.2820649,-0.026739923,-0.073087424,0.18236841,0.09140952,0.3162133,-0.08430934,0.29308653,-0.2092686,-0.39508897,0.49146557,0.4603644,0.30261192,-0.668733,0.682583,0.09417284,-0.25079566,0.045671824,0.1631121,0.4434075,0.39506647,0.48150724,-0.09130604,-0.19148037,-0.1396612,0.5514442,0.21516408,0.52839893,0.1145624,-0.24105461,0.5353019,0.12957016,0.15128665,-0.13576618,-0.5452459,0.08056274,-0.1917232,0.19499095,0.33505931,0.024200954,0.38871014,-0.045763496,-0.084269196,0.21506213,-0.045437768,-0.23664075,-0.9891561,0.1954808,0.25657013,1.0541995,0.5751865,-0.14185348,-0.19077028,0.6455196,-0.17931761,0.11927566,0.34960228,0.01062152,-0.4451291,0.82827,-0.53557086,0.42032677,-0.12753932,-0.14928065,0.31227362,0.37840447,0.5664047,0.6818311,-0.34436625,-0.031772457,-0.0469945,-0.26172787,0.11640398,-0.21552141,0.26074868,-0.47359398,-0.51176846,0.6059549,0.38016045,0.3886296,-0.46427897,-0.06737652,-0.1290308,-0.08254301,0.39523715,-0.08923002,-0.08337128,-0.067826204,-0.5794367,-0.3736601,0.56317246,-0.49014428,0.0679984,0.15178153,-0.38330808,0.080583066,0.07433749,-0.03839933,0.008472633,-0.801673,0.23597635,-0.23667833,-0.5590258,0.4078118,-0.3134876,0.2634251,0.21734264,-0.061343588,-0.36696413,0.17248455,0.021571279,0.8796,0.10608979,-0.05408395,-0.3475917,0.010322868,0.37383237,-0.3462622,0.12192563,-0.26751432,0.0011079862,-0.50753057,0.62195265,-0.16985711,-0.2411634,0.04889472,-0.14776513,0.07639157,0.6155093,-0.1820054,-0.22058049,0.0025339127,0.2538708,-0.49196783,-0.14364323,-0.29913628,0.28704798,-0.034908894,0.10331377,0.062174123,-0.0803736,0.097288445,0.27821398,0.062156614,0.20591627,0.26668102,-0.17290193,-0.4801052,0.18634082,0.09031057,0.31912452,0.28249872,-0.010932698,-0.14100444,-0.40585047,-0.35155517,0.44633704,-0.024335463,0.31749243,0.10243408,-0.28812826,0.7870028,0.06931657,1.2172611,0.12736546,-0.3757916,0.20482804,0.387909,-0.023653595,0.0042760004,-0.38387984,0.8190582,0.50769985,-0.29063195,-0.054117646,-0.3435807,-0.070966214,0.2375084,-0.17122306,-0.13454643,-0.14481094,-0.7593342,-0.035531554,-0.004342086,0.33874562,0.15532112,-0.16050003,-0.143996,0.09735355,0.15622279,0.38567117,-0.4235873,-0.22899406,0.48636845,0.02091986,-0.055386372,0.23273812,-0.17882036,0.4039804,-0.7409059,0.31399724,-0.6363518,0.0847691,-0.08748135,-0.37433514,0.12657279,-0.03513398,0.5602849,-0.30894846,-0.30567294,-0.34643155,0.674469,0.40553644,0.37598947,0.8394629,-0.06917185,-0.111273736,0.10249719,0.55986917,1.1823289,-0.19688429,0.06406306,0.25380284,-0.31670564,-0.7451801,0.2579904,-0.24580553,0.14705849,-0.17280857,-0.36109352,-0.4489201,0.039743207,0.18653867,-0.297698,0.057306305,-0.65979004,-0.17838383,0.22993279,-0.34488663,-0.2756262,-0.4678333,0.29290205,0.6097057,-0.21624914,-0.26032576,0.1991243,0.14483912,-0.25921634,-0.5252773,0.069278,-0.27290386,0.38421646,-0.085533306,-0.55210876,0.050873574,0.4223842,-0.5771518,0.09029606,0.1446544,-0.40725982,0.015656697,-0.22477102,-0.20187269,1.1998652,0.12294258,0.116056405,-0.66661704,-0.6019092,-0.8653611,-0.7249874,0.12580062,0.18961906,0.013842881,-0.32840124,-0.18206605,-0.32882383,0.19166748,0.07825298,-0.57432973,0.38976303,0.15587664,0.5563862,-0.1132605,-0.85056084,0.2377456,0.24066666,-0.12671718,-0.37304705,0.39299348,-0.24498051,0.6510277,0.078532256,0.00892677,0.123113245,-0.5781753,0.31700188,-0.3069775,-0.24785246,-0.5389418,0.21916543 -229,0.41386852,-0.46429324,-0.30077338,-0.40011406,-0.27096158,0.0229173,-0.25464663,0.37066412,0.47176045,-0.16975972,0.10139263,-0.21862416,-0.037415046,0.5900839,-0.22488663,-0.9165595,-0.054773666,0.071173936,-0.6322956,0.5149453,-0.48383817,0.03000093,0.027740855,0.428856,0.034117162,0.06680885,0.20798627,0.110737205,0.2684332,-0.23675565,-0.15086,0.22840425,-0.8324685,0.38198853,0.022463301,-0.40425944,0.0057462426,-0.49031916,-0.23040166,-0.9178146,0.5004657,-0.95763314,0.6380294,0.04492875,-0.3850885,-0.20560579,0.4854308,0.3175209,-0.36022735,0.08240766,0.3429917,-0.34179506,-0.12026085,-0.105397,-0.6915101,-0.79122275,-0.89965093,-0.03833178,-0.58064103,-0.23087159,-0.27660623,0.43010482,-0.3930313,-0.0010015636,-0.35733482,0.6766404,-0.4484709,0.07616518,0.30982348,-0.23236163,0.4796098,-0.48828062,-0.25854725,-0.14214592,-0.12227478,0.060907733,-0.6017867,0.35832077,0.68863577,0.42428797,0.15568799,-0.29595843,-0.3715062,-0.118696906,0.020898039,0.55539066,-0.2128819,-0.5689518,-0.35266054,-0.010521573,0.5197395,0.5483093,0.20347229,-0.581495,0.25143614,0.021472951,-0.24636273,1.0204803,0.51507956,-0.33569008,-0.36764747,0.2113039,0.2324349,-0.23901984,-0.33393317,0.25767392,0.11052247,-0.533507,-0.19575796,0.5898758,-0.28313276,0.48359722,-0.25405362,-0.07269581,0.830664,-0.3871768,-0.295479,-0.07640858,-0.0641388,-0.0043500187,-0.46870786,-0.31320834,0.27423546,-0.45970282,-0.043906845,-0.42646924,0.8325731,0.047435593,-0.8915334,0.08107183,-0.6202103,0.27243027,-0.2313383,0.8029974,1.0132434,0.6799392,0.6694621,0.9272326,-0.4630031,0.16669452,0.22624417,-0.3495552,0.13447425,-0.49414596,0.11835875,-0.4638432,0.089128755,-0.26356727,-0.16380104,0.05875539,0.7211327,-0.43872756,-0.13800947,-0.015769884,0.9039469,-0.36877084,-0.14409478,0.97139645,1.0920933,1.0813862,0.34411678,1.2518361,0.40242243,-0.13706432,0.40678686,-0.2259285,-0.8154572,0.251957,0.2772511,-0.39187965,0.33691064,0.01485883,0.21431693,0.45614552,-0.43216935,-0.17649272,0.049060266,0.2812456,0.2422318,-0.2678992,-0.408233,-0.2222888,0.19426537,0.10224466,0.017280335,0.20759034,-0.27791774,0.65881044,0.2856446,1.048759,0.046885524,-0.124217175,-0.007832527,0.59379274,0.08389328,-0.23374347,0.23793045,0.26135033,0.4860517,-0.031700917,-0.80859727,0.2184391,-0.34001946,-0.34096965,-0.30008295,-0.48195633,-0.014392158,-0.31367865,-0.25639245,-0.40733337,-0.2684784,-0.2032021,0.41663426,-2.1329312,-0.09506868,-0.2331613,0.3863709,-0.04908865,-0.076143645,-0.14036036,-0.6766952,0.42674765,0.5282952,0.37999257,-0.86670905,0.41315213,0.46531686,-0.58205664,-0.024300952,-0.9791298,-0.08325334,-0.34278235,0.39133546,0.02960509,-0.16182545,-0.22204804,0.20475137,0.7993506,0.2730674,0.24673471,0.2847814,0.69742405,-0.264479,0.66098344,0.05702739,0.5179009,-0.20923099,-0.13216272,0.13469233,-0.7406054,0.12519534,0.18792653,-0.08665085,0.7485794,-0.6841513,-1.0789635,-0.7676775,-0.49625808,1.1015295,-0.47007942,-0.58561856,0.39996845,-0.1216799,-0.2483222,-0.08137617,0.7454161,-0.39405358,0.18700895,-0.794295,0.030828407,-0.021363974,0.4396797,-0.13539878,-0.022407765,-0.22070317,0.7150909,-0.284518,0.5029503,0.18744947,0.04821049,-1.0165603,-0.7539056,0.13436285,0.8082778,0.32414192,-0.02274453,-0.15249786,-0.38228345,-0.076850094,-0.3818892,0.03230728,0.72121036,0.6654603,-0.2511689,0.09545872,0.6035019,-0.5199424,-0.031937283,-0.12517133,-0.40807754,-0.23672327,0.13217965,0.59266144,0.6554983,-0.16718537,0.27408254,-0.18791012,0.40149552,0.011090897,-0.51611805,0.6073986,1.3549244,-0.106419325,-0.33495706,0.6154068,0.4678318,-0.61021304,0.5117138,-0.48454323,-0.18029526,0.69852704,-0.031573806,-0.68754005,-0.20353742,-0.4523743,0.0017671495,-0.98745805,0.45599723,-0.30487853,-0.66674197,-0.6168047,-0.27392942,-3.8737125,0.09472289,-0.26662454,-0.17335004,-0.44608036,-0.06069987,0.3804941,-0.47587585,-0.69562435,0.211885,0.25389767,0.39755583,-0.060745668,0.24225,-0.45035404,-0.011780572,-0.4219101,0.32874203,0.26715595,0.37703538,0.05167999,-0.38470626,0.17085212,-0.0912507,-0.6575231,-0.014521575,-0.87981856,-0.7310592,-0.19432887,-0.9507133,-0.46509796,0.7137991,-0.4776217,-0.14260791,-0.32621473,0.09522605,-0.11981708,0.6251191,0.16614266,0.24191932,0.07604716,-0.09411474,-0.2164135,-0.13661651,0.2693429,-0.06161341,0.46994948,0.162936,-0.10995315,0.38793534,0.676973,0.68728864,0.14235607,0.9056031,0.45905384,-0.029049207,0.30012983,-0.13897288,-0.3094735,-0.78459907,-0.3084461,-0.0893649,-0.46427822,-0.25829792,0.0026075006,-0.33936492,-0.8143419,0.5143764,0.1490613,0.22740635,-0.043618537,0.41548428,0.26222923,-0.009911758,0.2251577,-0.120074704,-0.37828603,-0.6292826,-0.5238887,-0.7190596,-0.6786054,0.3776976,1.1166369,0.1153592,-0.27694097,0.10807333,-0.3367401,0.023654163,0.45563594,-0.07625925,0.30896968,0.46548238,-0.08970429,-0.7266838,0.41965732,-0.041072886,0.10002051,-0.7804597,0.15684307,0.7353546,-0.6609158,0.7898674,0.21334167,0.29762426,-0.40282845,-0.5462657,-0.39195698,0.16294307,-0.1766897,0.6295501,0.26522088,-0.85403764,0.6173032,0.19321117,-0.2296752,-0.63502234,0.32540607,-0.21427381,0.03400681,-0.071651116,0.42252642,0.33596808,0.0016709536,-0.31005913,0.44276938,-0.5216876,0.12301606,0.07967057,-0.035314582,0.29702097,0.07234206,-0.21329018,-0.87577426,-0.06542956,-0.67652655,-0.256638,0.09541844,-0.12949638,-0.020406682,0.34497696,-0.06970744,0.38038006,0.15027995,0.18056433,-0.18320742,-0.28079244,0.1877563,0.600561,0.41049784,-0.42925835,0.73226655,0.26085466,-0.08595599,-0.08771132,0.049709283,0.4441308,0.3718134,0.5804882,0.17186694,-0.32439527,0.11196437,0.80360794,0.09244353,0.5830904,0.10214529,-0.093476966,0.5787635,0.19438972,0.24484459,-0.18938231,-0.5345689,-0.093165904,-0.25204438,0.16314285,0.5744505,0.1252974,0.5162362,-0.09354305,-0.1935369,0.13765085,0.22022445,-0.34324592,-1.5179336,0.22603497,0.41594929,0.746112,0.61865973,0.040141366,-0.09954812,0.76536715,-0.4097678,0.011849415,0.73817384,0.34000984,-0.30847943,0.67330354,-0.70375735,0.4629911,-0.37823516,0.14963162,0.060001813,0.528074,0.27034396,0.96982497,-0.10086347,-0.009838295,-0.03522265,-0.2573992,0.4340089,-0.45529142,0.21483925,-0.29892868,-0.45044184,0.70972323,0.30244297,0.4147707,-0.14725909,-0.060858995,0.2349782,-0.055847026,0.11448836,-0.2084606,-0.5774783,-0.12025305,-0.6794348,-0.17128138,0.6601659,0.15288796,0.17302242,0.23215458,-0.3921873,0.19384038,-0.027410025,-0.3264513,-0.045998167,-0.7042813,-0.29893923,-0.10749736,-0.4844831,0.5547314,-0.56080294,0.23596077,0.31658912,0.08067779,-0.512714,-0.080154456,0.28971398,0.6997427,0.008229929,-0.16413327,-0.1731073,-0.25262815,0.20863397,-0.47745448,0.17066434,-0.24199545,0.11055714,-0.5823732,0.6047736,-0.18787995,-0.6851428,0.03161625,-0.14754276,-0.047744613,0.50824213,-0.40677696,-0.17209436,0.22776763,-0.15243629,-0.09915459,-0.33448574,-0.30847225,0.53948456,-0.19167486,0.043671153,0.07578496,-0.19843672,-0.09389223,0.596528,-0.09559539,0.30453172,0.38509095,0.27848646,-0.21275052,0.12783217,-0.13521159,0.66770315,0.15160416,-0.31060132,-0.07954671,-0.23648436,-0.2777825,0.14442748,-0.07851167,0.40021738,0.038089402,-0.9021614,0.8170813,0.0742661,1.348778,-0.043875176,-0.7415315,-0.037483603,0.6554303,0.04752346,0.020634968,-0.33218542,0.8585461,0.7100004,-0.22976366,-0.19960587,-0.6767022,-0.21516538,0.38718742,-0.32237187,-0.2412359,-0.10985397,-0.9380187,-0.122114226,0.22705114,0.12148607,0.095113985,0.008826489,0.13968854,0.043177307,0.0389872,0.5148423,-0.6278128,0.34093744,0.17119794,0.5023615,0.16700095,0.040095888,-0.31592387,0.19235268,-0.6627201,0.32869163,-0.5263123,0.22722778,-0.19085726,-0.2745791,0.17798905,0.0015220642,0.34212255,-0.03263779,-0.12246553,-0.13254032,0.9252361,0.23137864,0.49982262,0.9494211,-0.2793214,0.03841998,0.20947978,0.66050303,1.7678852,-0.18104331,-0.023986463,-0.13129947,-0.4696319,-0.7485589,0.45868626,-0.48144847,0.003816846,0.16034117,-0.33991545,-0.25216365,0.15504497,0.1672703,0.07899471,0.18862909,-0.45245904,-0.4148644,0.38599166,-0.38884968,-0.30003667,-0.17599279,0.3083295,0.7264096,-0.18487045,-0.3880794,0.059961896,0.3480347,-0.15336542,-0.5045363,-0.115111396,-0.41951767,0.46790257,-0.047932822,-0.46406382,0.111832164,0.08875017,-0.48416686,0.25166246,0.22584641,-0.30107313,0.21295612,-0.09623488,-0.12302933,0.89197075,0.038057238,0.20550999,-1.0664282,-0.4917062,-0.92977464,-0.14566368,0.25909513,0.23215461,-0.17945243,-0.71551687,-0.24677905,-0.027542844,-0.13864572,0.19323973,-1.07624,0.53703773,0.13903566,0.6978451,0.08007118,-0.8228801,0.012663543,0.31351677,0.11402744,-0.6934551,0.6259011,-0.25143355,0.83225834,0.06309907,0.19709647,0.100820675,-0.47270852,0.24648246,-0.25020412,-0.5103598,-0.66710836,0.06898245 -230,0.46819553,-0.23432639,-0.4982405,-0.15851773,-0.23801748,0.03845964,-0.17643435,0.34395522,0.29914206,-0.51332366,-0.13633005,-0.2848968,-0.02606486,0.18423022,-0.12730289,-0.5764701,-0.048734777,0.078343384,-0.4655056,0.49130383,-0.36396292,0.23546752,-0.00032781702,0.3085356,0.10411072,0.3397029,0.008640981,-0.24222156,-0.067944475,-0.3105406,-0.024651399,0.1238456,-0.5690147,0.29159927,0.013436879,-0.18151543,-0.008496855,-0.41919613,-0.44917727,-0.79257256,0.15498385,-0.8796793,0.43623045,0.09781361,-0.31143156,0.19277875,0.1987318,0.38741687,-0.12283766,0.06409318,0.38073984,-0.10350637,-0.05518083,-0.09299125,-0.112109,-0.56029147,-0.5635162,-0.14551659,-0.28198424,-0.22075741,-0.3979502,0.10242139,-0.330821,-0.16659178,-0.13195434,0.57878214,-0.48597234,0.21623707,0.23804785,-0.15740465,0.6729292,-0.4637178,-0.16972198,-0.16565564,0.25881055,-0.23339452,-0.25207365,0.20546107,0.37789822,0.19873276,0.018595705,-0.107012115,-0.25028595,-0.0146334935,0.346869,0.5296219,-0.08261984,-0.3349891,-0.06379304,-0.00088950567,0.042438287,0.23798871,0.14884447,-0.4787689,-0.14405362,0.09863878,-0.22059932,0.45413813,0.44977817,-0.10264613,-0.16320145,0.30692267,0.44422722,0.17409499,-0.20781355,0.05424822,0.06560521,-0.47730085,-0.16039796,0.07970171,-0.2565418,0.43240842,-0.25806642,0.17694858,0.79418117,-0.25258985,-0.066192865,0.11300218,0.0016385956,-0.0954288,-0.23514673,-0.2427787,0.22494258,-0.48611543,0.21544483,-0.06319632,0.6481255,0.08698566,-0.67549604,0.28593847,-0.60336125,0.014519347,-0.26826423,0.42879158,0.5617199,0.4106076,0.31386283,0.61775535,-0.44382903,0.036265314,-0.11565137,-0.48474863,0.095701836,-0.16892746,-0.036193285,-0.54573566,-0.20006125,0.0011378527,-0.16965704,0.005888943,0.28522775,-0.4992164,0.02471757,0.14537366,0.8678412,-0.28163686,-0.023030391,0.59433454,0.9413331,0.8882713,0.24210525,1.0635949,0.19415805,-0.17889918,0.13236201,-0.27225032,-0.6663535,0.38167104,0.4203516,-0.47904816,0.21635981,0.17600812,0.08164026,0.36075693,-0.30772844,0.18726549,-0.25807545,0.24193771,0.09692663,-0.27856213,-0.34870166,-0.25304326,-0.044660024,0.085738555,-0.011698459,0.13708247,-0.09292233,0.20259799,0.1778778,1.4287864,-0.08348059,0.02094091,0.0281885,0.40568808,0.17708357,-0.17725532,-0.038682323,0.4063873,0.30795723,0.26727593,-0.5882508,0.23302694,-0.05717705,-0.36956766,-0.18082762,-0.29493546,-0.008519639,-0.04094771,-0.39067173,-0.053923257,-0.07267936,-0.2884064,0.4916918,-2.6708882,-0.115876794,-0.17698063,0.3228326,-0.2549129,-0.24953143,-0.05012711,-0.429841,0.43803126,0.26612654,0.4900953,-0.6525877,0.38759735,0.601874,-0.5785771,-0.13577195,-0.5806187,-0.15547787,-0.1505816,0.33431837,0.1360902,0.13581035,-9.289384e-05,0.25611824,0.412623,-0.07396387,0.13688397,0.20318969,0.39606974,0.02327153,0.6439633,0.07593813,0.5362188,-0.023421125,-0.19932756,0.2558927,-0.24022685,0.119170405,-0.06503609,-0.0006051617,0.41637775,-0.28297472,-0.7766285,-0.6959075,-0.5455885,1.130821,-0.16094379,-0.38400102,0.3208835,-0.23855059,-0.41043147,0.040873844,0.37631968,-0.07920524,0.11901874,-0.9440759,0.03251766,-0.13461661,0.21559832,0.07583151,-0.15610948,-0.54559004,0.8029431,0.015204336,0.40640965,0.39364833,0.13778618,-0.28882033,-0.36311024,0.059837904,0.9284616,0.35359997,0.1605099,-0.27725628,-0.16459374,-0.2987767,-0.043456372,0.10888044,0.6401195,0.63545436,-0.15177648,0.14220679,0.17655405,-0.102327295,0.034382146,-0.16383256,-0.28447986,0.011537707,-0.013953532,0.496578,0.5932242,-0.09581301,0.58886445,-0.021792872,0.34361646,-0.100617416,-0.45388848,0.4470763,1.2997888,-0.12747759,-0.33016035,0.57487404,0.49226433,-0.19115397,0.35093215,-0.49671856,-0.15319039,0.41646576,-0.11051881,-0.55868024,0.23949364,-0.408623,0.20883977,-0.794254,0.4013192,-0.41452307,-0.6322616,-0.4562563,-0.114345215,-3.556639,0.2832687,-0.30586967,-0.25808448,-0.058414068,-0.058521155,0.3430798,-0.6181216,-0.6132194,0.23342057,-0.020591814,0.657176,-0.16571438,0.077859156,-0.17523582,-0.0881635,-0.11628522,0.2693185,0.099942006,0.23421578,-0.018161135,-0.5168146,-0.120993204,0.018835735,-0.469613,0.0045587677,-0.57935554,-0.59276456,-0.1032948,-0.516589,-0.25939128,0.5956837,-0.27914882,-0.026238693,-0.11678153,0.022433119,-0.11440546,0.3322997,0.07158553,0.09319173,0.051692903,0.07047156,-0.1274326,-0.22081113,0.32021597,0.12434207,0.25123873,0.26760286,-0.12735906,0.18283455,0.49375233,0.5964312,-0.094396584,0.82965887,0.38657364,-0.20596111,0.24027827,-0.32546785,-0.25795937,-0.5659382,-0.33990055,-0.023446733,-0.35715994,-0.58341736,-0.087160006,-0.36221415,-0.69252545,0.5641063,0.06869026,-0.045956858,-0.08517753,0.06283411,0.3402322,-0.07330652,-0.061190136,-0.034782495,-0.15470357,-0.61039066,-0.19045356,-0.4810264,-0.36481673,0.010341917,0.9265138,-0.224147,0.08779146,-0.050442774,-0.3100069,-0.018091304,0.17417237,-0.10835803,0.11037034,0.43440074,-0.016407505,-0.6495365,0.45568997,-0.082732774,-0.14115125,-0.6878562,0.2929921,0.8820982,-0.5917694,0.6657662,0.30534878,-0.028626125,-0.24420418,-0.43268707,-0.25719923,0.017756948,-0.34882355,0.5135717,0.094802335,-0.6875998,0.3465539,0.434717,-0.23598203,-0.61435384,0.6988843,-0.14953025,-0.25120267,-0.043141734,0.31695843,0.025115864,0.11431607,-0.12866256,0.40279537,-0.2339985,0.23250858,0.3002796,-0.056033585,0.12966983,-0.07221157,0.074292734,-0.8327809,-0.07290394,-0.34794062,-0.31832156,0.2234127,0.04414395,0.02889216,0.3836858,0.013387867,0.3338221,-0.23570575,0.08970316,-0.15212579,-0.27824092,0.24710621,0.4173879,0.3921793,-0.3853361,0.5849659,0.08494788,-0.064973466,-0.12330585,0.058555756,0.50591505,0.09258066,0.5158414,-0.13201514,-0.14422236,0.41667634,0.84558296,0.12944277,0.6392292,0.08044902,-0.08121427,0.112155505,0.075849704,0.3600607,-0.09539253,-0.64923626,0.07770772,-0.3391864,0.18469821,0.35890156,0.16547404,0.18810534,-0.041090112,-0.42347616,0.0026958287,0.21962357,0.21050282,-1.2542344,0.53388596,0.3611886,0.7167539,0.45646566,-0.022204487,0.10576703,0.69006383,-0.22909978,0.079418175,0.3072453,0.059372433,-0.49524823,0.3764794,-0.8951066,0.28559357,-0.020370629,-0.13089488,0.010710475,-0.0757785,0.38167238,0.822528,-0.17778675,0.05990495,-0.028092671,-0.33996576,0.25212297,-0.432882,0.10883957,-0.55304015,-0.43463722,0.59374374,0.66097695,0.39326254,-0.111978345,0.12843072,0.08820623,-0.081258416,0.12792377,0.22317769,-0.018813714,0.08504838,-0.7956194,-0.124741614,0.4672866,-0.07621292,0.17804496,-0.087205715,-0.17103942,0.25023586,-0.21312821,0.11625482,-0.074545845,-0.7431428,-0.11238809,-0.29681155,-0.40031686,0.36068243,-0.09844393,0.23359366,0.10218757,0.027618289,-0.057015877,0.35461193,0.18262336,0.6665083,0.13259266,-0.012597288,-0.3660365,0.14926669,0.11617152,-0.11298212,-0.1406493,-0.33870634,0.039325632,-0.5886845,0.34292886,-0.03837459,-0.46470788,0.16272333,-0.16383243,0.0034146372,0.56690675,-0.15682782,-0.28544194,0.08507885,-0.25569376,-0.07806657,-0.11785651,-0.06553338,0.34964642,0.24739303,0.05403306,-0.11153988,-0.045584355,-0.2981582,0.35993034,0.11319191,0.5716443,0.41886696,0.017860148,-0.26060745,-0.20568107,0.061454695,0.5437133,-0.06476797,-0.048120983,-0.13449405,-0.49462166,-0.27331987,0.13846005,-0.04567793,0.32590935,0.11771437,-0.17912172,0.6572362,-0.11885928,1.0950196,-0.0016370484,-0.38598093,0.08505237,0.3469155,0.016768511,-0.09245255,-0.3873086,0.8239737,0.5706436,-0.12128995,-0.11667763,-0.42636395,-0.07750968,0.095820524,-0.10692873,-0.021426065,0.055620916,-0.6989015,-0.2614395,0.20109543,0.20004319,0.023095505,-0.04040763,0.039310984,0.26481804,-0.04544127,0.24348958,-0.5544523,-0.09903814,0.2643283,0.29080248,0.03470854,0.0359028,-0.4572359,0.40650907,-0.3700808,0.1891063,-0.20510732,0.1518068,-0.3070727,-0.11446155,0.18901196,-0.061805874,0.36513472,-0.29654196,-0.2955263,-0.15230587,0.5355627,0.026139885,0.0742423,0.5664476,-0.24910317,0.20879105,0.17783655,0.54031247,0.8386187,-0.35766008,0.09687376,0.46094283,-0.465672,-0.51828754,0.2936232,-0.23580456,0.08793068,0.117794864,-0.3356131,-0.49058598,0.30660656,0.09455912,0.01143051,0.067021936,-0.5369587,-0.092066355,0.32126394,-0.35061333,-0.2762847,-0.27285573,0.19332215,0.5502429,-0.33479697,-0.34936434,0.056960285,0.13773371,-0.28621414,-0.373084,-0.0877172,-0.21791811,0.37559938,0.08769353,-0.3313653,-0.11041661,0.069957815,-0.3641253,0.13369302,0.06531825,-0.28657484,0.0880503,-0.3137079,-0.13438694,0.7391998,-0.3275776,-0.04300597,-0.60831994,-0.39853844,-0.6521292,-0.30259082,0.45917797,0.03725604,-0.011135889,-0.38228217,-0.050293658,-0.028663443,0.003309582,-0.17221086,-0.3166917,0.46833572,0.07686961,0.5043077,-0.08261744,-0.96220857,0.20588358,0.17843989,-0.14906202,-0.79367775,0.61013824,-0.1580684,0.6300333,0.024619158,0.19948377,0.17193387,-0.3891913,-0.03581074,-0.1285831,-0.20030954,-0.7871131,-0.021923143 -231,0.44415584,-0.25978157,-0.36992458,-0.16637297,-0.3478426,0.15238054,0.08399606,0.5977604,0.401767,-0.19049478,-0.17001791,-0.025314676,-0.015675718,0.5357148,-0.19455878,-0.797297,0.18124707,0.06001224,-0.39250198,0.5357175,-0.3217403,0.2915806,0.08085189,0.21970494,0.1258248,0.18506362,0.18532415,-0.013953383,0.123378634,-0.19917822,-0.044787597,-0.05469716,-0.5008761,0.35446584,0.11747851,-0.11447785,0.05645451,-0.3435613,-0.2162873,-0.69836956,0.26447758,-0.76381534,0.5355763,0.056859285,-0.32999614,0.28541026,0.16818672,0.12732154,-0.21860218,-0.12663837,-0.060977295,-0.015721252,-0.105387606,-0.10279518,-0.06444582,-0.50644535,-0.6363112,-0.10770196,-0.45046213,-0.095048666,-0.29445592,0.060224753,-0.39017963,0.062491614,0.056950048,0.5032534,-0.3482124,-0.053813726,0.35632244,-0.1333343,0.15376268,-0.64496845,-0.15184934,-0.06093083,0.2102242,0.17732374,-0.30636427,0.35591665,0.4847208,0.30016172,0.084062554,-0.23771147,-0.18573838,-0.16052873,0.23974757,0.37406287,-0.18403679,-0.48621812,-0.079616114,0.104334705,0.25003836,0.1726209,0.32194534,-0.021371624,-0.11500149,-0.011473765,-0.2969118,0.39371732,0.41331908,-0.4142159,-0.32306758,0.3603342,0.5297809,0.09071136,-0.109571956,-0.029693121,0.03418209,-0.622652,-0.15916151,0.043101598,-0.41363248,0.5483119,-0.24671881,0.10597078,0.7056906,-0.40603533,0.06015518,0.3435935,0.08468017,-0.14096273,-0.27050427,-0.18909656,0.20919293,-0.65431446,0.028943181,-0.26164064,0.8808182,0.23759256,-0.53860635,0.25183377,-0.452983,0.19959815,-0.23404145,0.44832322,0.7055951,0.42458367,0.33127442,0.6690251,-0.3617253,-0.015943313,-0.07514882,-0.37620953,0.29582667,-0.2715862,0.0985887,-0.42341468,0.043128762,0.18821977,-0.35576043,0.10780869,0.11525965,-0.5759937,-0.08627608,0.16059148,0.64966184,-0.12189039,-0.28908634,0.6100387,1.049635,0.8966883,0.11790341,1.1531066,0.11840729,-0.18722998,0.16460092,-0.024903512,-0.6787844,0.25541475,0.3264188,-0.2026885,0.4063824,0.043844555,-0.18347454,0.3135344,-0.45087084,-0.16577844,-0.11501646,0.7316331,0.171848,-0.3440059,-0.4328048,-0.29988816,-0.10759554,-0.0032013655,0.14954163,0.2993635,-0.14358443,0.36317077,0.049014777,1.0246361,0.034547616,0.05075842,0.024872294,0.44766355,0.24679752,-0.039991923,0.18594877,0.32806292,0.19918077,0.2026422,-0.6021698,0.08032017,-0.28499663,-0.4058125,-0.08488295,-0.40726027,-0.16695046,-0.027998766,-0.2886869,-0.3246772,-0.14418332,-0.08774433,0.6272375,-2.8756893,-0.18282808,-0.13265808,0.2859274,-0.21672325,-0.28295985,-0.023170277,-0.5343905,0.25890934,0.4102893,0.44558764,-0.75904655,0.14146884,0.43684697,-0.68572134,-0.17679715,-0.5982806,-0.016261637,-0.062321037,0.4059604,0.16783042,-0.11381904,-0.02942946,0.13090558,0.5227948,0.2502562,0.1280088,0.25982913,0.2511894,-0.2179275,0.3551264,-0.034481853,0.51257277,-0.058123272,-0.100403965,0.17190547,-0.32775322,0.5139641,-0.19115092,0.121690966,0.49695387,-0.16867326,-0.838226,-0.6459903,-0.24725847,1.2507786,-0.12234676,-0.39163938,0.20034629,-0.35110292,-0.22771196,-0.19310355,0.4727697,-0.14947988,-0.0029619138,-0.6148167,0.12206861,-0.027681718,0.049279567,-0.051389158,-0.12387138,-0.34060642,0.78315425,0.05241223,0.4134312,0.22923832,0.113134086,-0.23484047,-0.50122863,-0.057805195,0.6806392,0.5136483,0.08579531,-0.13628997,-0.22889036,-0.34840083,-0.14263915,0.1957674,0.57491976,0.5606833,-0.12339244,-0.05466622,0.17381518,-0.0838133,0.16888912,-0.0020979953,-0.19920643,-0.08836635,-0.0895574,0.50650257,0.815042,-0.35641873,0.32325765,-0.065450296,0.28463995,-0.12987897,-0.47659886,0.63442993,0.7238216,-0.20654309,-0.27542573,0.71200067,0.4194764,-0.27764788,0.4206569,-0.5157291,-0.1879654,0.5609999,-0.071588166,-0.25454426,-0.070726804,-0.3861364,0.0874433,-0.68172383,0.3962098,-0.27818322,-0.42542076,-0.3652295,-0.03939393,-3.1102083,0.100067176,-0.28602692,-0.050246567,-0.22246647,-0.113706194,0.22603814,-0.74428135,-0.5205504,0.27558675,0.076951884,0.69421744,-0.2408792,0.0057095475,-0.19642723,-0.39885107,-0.32926795,0.14327918,-0.15716372,0.2539132,-0.09474663,-0.31658292,0.18099587,-0.021981286,-0.3663561,0.20821619,-0.40002537,-0.58479244,-0.24571443,-0.33743823,-0.19106041,0.7499412,-0.36275566,0.010274221,-0.16589311,0.12589684,-0.1534032,0.25402758,-0.06235603,-0.025209414,0.11444208,0.052430093,0.104538314,-0.32505727,0.6071308,0.032932635,0.54175776,0.48690167,-0.19340579,0.17501317,0.74303466,0.5992057,-0.082113855,0.83233446,0.26662436,-0.19225888,0.38930002,-0.16151245,-0.26644877,-0.27977553,-0.32534453,0.1267299,-0.37985823,-0.2689877,0.021691272,-0.38586846,-0.7056721,0.39240822,0.1047479,0.2632116,-0.14333987,0.21295588,0.5687724,-0.27504823,0.056762308,0.06994007,-0.22364946,-0.7055952,-0.32356718,-0.5766534,-0.2256457,0.3591644,1.0368767,-0.41380283,-0.102225244,-0.11826078,-0.21982253,0.058284253,0.059332747,-0.11097586,-0.18677859,0.21967566,-0.10528479,-0.6653538,0.55317163,-0.1824253,-0.09373786,-0.57780784,0.18764357,0.41592988,-0.5839519,0.34259745,0.4466255,0.045042377,-0.077500455,-0.4920418,-0.121822156,-0.031104423,-0.19664772,0.2436756,0.3640969,-0.79476863,0.37833688,0.34172428,-0.3433967,-0.6250625,0.39323863,-0.07568523,-0.17378087,-0.18488358,0.3087331,0.3566375,0.047795665,-0.1264201,0.13139339,-0.5750465,0.18595624,0.25864384,-0.0034129329,0.41104388,0.18313546,-0.1060131,-0.76947314,-0.022033012,-0.49489534,-0.2155828,0.1604568,0.18046798,0.15603305,0.26150084,0.42015442,0.42123482,-0.35141823,0.13932721,0.013554543,-0.37411404,0.6034557,0.40116405,0.44141063,-0.36315107,0.62556916,0.05403727,0.07472035,-0.025364667,-0.03188476,0.46163955,0.055720445,0.43058372,0.2173645,-0.17988257,0.116838746,0.7414362,-0.04165271,0.18579918,0.11989709,-0.065845184,0.2211218,-0.09284949,0.2079718,0.30746818,-0.59932774,-0.120072484,-0.33553776,0.104596876,0.50385696,0.13012818,0.054503124,0.09078205,-0.34145865,0.010966308,0.12864487,0.056199294,-1.3493309,0.26121867,0.14418061,0.60826474,0.487751,0.0645167,-0.05330349,0.64016235,-0.113325395,0.18999784,0.46397284,0.0774369,-0.40175867,0.536634,-0.74812216,0.4917585,-0.12546147,-0.11382025,-0.13954414,-0.037745494,0.21846054,0.9216609,-0.18729241,-0.17353423,-0.009987779,-0.38642237,0.13652344,-0.4395227,0.025502557,-0.5778825,-0.31240776,0.45145822,0.24326222,0.29223517,-0.18157648,0.009154458,0.061101526,-0.066612475,0.2924802,-0.15041007,0.08169668,-0.11687594,-0.45789227,-0.16586232,0.42291936,-0.14138465,0.3179554,-0.13143042,-0.06730965,0.105322726,-0.21698563,-0.19821806,-0.048735112,-0.5739005,0.019880392,-0.12084368,-0.5769599,0.5449371,-0.24974991,0.18008149,0.18784516,0.11173358,-0.1593873,0.19361258,0.18880148,0.56630474,-0.13999842,-0.133916,-0.41697058,0.13250165,0.009668835,-0.19592597,0.14923991,-0.034073737,0.117366284,-0.37668145,0.5495569,-0.1530123,-0.22563612,-0.14081536,-0.31868708,0.008244338,0.39285764,-0.33418027,-0.16188712,-0.10047596,-0.3974917,-0.04841784,-0.2620268,-0.060237627,0.27464363,0.23947544,-0.0778267,-0.13477634,-0.31816584,0.027950972,0.053314555,-0.0041195564,0.15993166,0.3287461,-0.21831937,-0.32900643,-0.26204178,0.16708654,0.28625578,0.041620083,-0.2837486,-0.5328131,-0.5074098,-0.35333285,0.100266635,0.024848074,0.24840379,0.05778105,-0.23917092,0.6924243,0.02174913,1.1791376,0.00430427,-0.31270698,-0.017885327,0.6675317,0.052488577,-0.046474483,-0.17280789,0.8381564,0.5112236,-0.12349736,-0.11327064,-0.51786214,0.12493014,0.31023657,-0.13171008,0.020033116,0.10431748,-0.6194675,-0.22348939,0.31796652,0.21473503,0.07436994,-0.034270924,0.035823222,0.19768965,0.115844876,0.36123478,-0.5161307,-0.055425193,0.37442574,0.29802272,0.22775453,0.17061274,-0.36743286,0.30555347,-0.696908,0.1834218,-0.17802668,0.08155569,-0.20551087,-0.33269373,0.17509176,0.16987085,0.36580026,-0.3450594,-0.48880187,-0.21052234,0.5304182,0.08561096,0.13982825,0.4557407,-0.27993008,-0.27020052,-0.017922327,0.60921466,1.118868,-0.061954662,-0.003096126,0.21072058,-0.4413453,-0.8320298,0.46212876,-0.33336404,0.37167975,-0.07680569,-0.16869052,-0.6181414,0.2406553,0.29656926,0.11863634,0.15563576,-0.52800864,-0.47003865,0.09170473,-0.5872955,-0.12410814,-0.26855662,0.19018336,0.5961745,-0.2680072,-0.17091013,-0.04722688,0.3582667,-0.22411261,-0.45005962,-0.15839802,-0.20877905,0.33276415,0.02428875,-0.3061532,-0.15420283,0.11022691,-0.4180285,0.2554057,0.01547344,-0.26436225,0.30917633,-0.31452978,0.2559351,0.59729177,-0.099321626,0.13393915,-0.5849729,-0.4487145,-0.6716235,-0.31110376,0.23109972,0.012368162,-0.01211772,-0.5361543,-0.11420574,0.0321632,0.1998444,-0.1557232,-0.35797027,0.49463177,0.114382245,0.13021086,0.13058639,-0.8992851,-0.12674595,0.0073627434,0.06794201,-0.5451681,0.49899137,-0.24261941,0.95146537,0.15516187,-0.05485561,0.07486863,-0.39621165,0.1417016,-0.14564721,-0.2574053,-0.45423272,0.14515048 -232,0.46396032,-0.028424108,-0.4562451,-0.051207226,-0.3824275,0.23027182,-0.18673912,0.24976854,0.19311617,-0.5364796,-0.29557985,-0.036791388,-0.16514502,0.21314281,-0.33027703,-0.7521593,0.20611049,0.20647958,-0.49940977,0.8438704,-0.37680307,0.5845743,-0.01387341,0.28760165,0.28522858,0.3226347,0.232205,0.07175209,-0.24016924,-0.4993042,-0.1374301,0.03752614,-0.43841296,0.34004393,0.09513478,-0.2511351,-0.09069262,-0.22760174,-0.49757677,-0.83716893,0.24679498,-0.6804923,0.34254113,-0.25058097,-0.3232261,-0.14574821,0.25403014,0.18910481,-0.055010375,-0.021326503,0.083583914,-0.13831525,-0.097364545,-0.15647644,-0.370007,-0.49135888,-0.53059834,0.031048452,-0.30244774,-0.20656414,-0.34460795,0.32846153,-0.3970043,0.04826165,-0.020710716,0.55747145,-0.3148276,0.10327484,-0.11221932,-0.32782832,-0.03579246,-0.75195515,-0.22955796,-0.045157187,0.07717004,0.061691985,-0.18761393,0.19638237,0.35897085,0.36264464,0.08640884,-0.1062746,-0.3337642,-0.32699972,0.49737853,0.596503,-0.18082584,-0.42008108,-0.26568773,-0.20017451,0.33321348,-0.0031917205,0.2002224,-0.48958817,-0.040426604,-0.20094791,-0.30033252,0.29391935,0.6037951,-0.36191544,0.03850485,0.25160268,0.39159358,0.1596479,-0.4331468,0.20306748,-0.19121146,-0.31659186,-0.095261335,0.109802164,0.03554887,0.55732274,-0.15206808,0.17416093,0.40514043,-0.11196112,0.15670124,-0.09310099,-0.056950934,0.08831259,-0.24935447,-0.12143186,0.13710727,-0.37162825,0.037685324,-0.40271178,0.88637775,-0.04452447,-0.66217506,0.4965023,-0.39138192,0.14495154,0.014158007,0.5020971,0.59222144,0.372841,0.046733234,0.67676586,-0.19517273,0.062355343,0.05190242,-0.2659572,-0.13161702,-0.0861992,-0.098360375,-0.3536258,0.22976047,-0.06900223,0.03386752,-0.009414049,0.6650128,-0.41582102,-0.20395343,-0.04482764,0.83924854,-0.28898284,-0.029908499,0.86490536,1.0364833,1.0721986,0.011974999,1.1788409,0.28273648,-0.032271657,-0.33956414,-0.022040384,-0.5115187,0.19185203,0.36353308,0.36003006,0.135107,0.15362413,-0.13941802,0.5402834,-0.33455077,-0.081627205,-0.21694139,0.21119596,0.25172976,-0.04051151,-0.41416022,-0.13702084,0.3147799,0.025245396,0.21431182,0.24256007,-0.23451479,0.55898416,0.030521138,1.4154836,-0.099471234,0.017929252,0.15145025,0.4290207,0.20422077,-0.2951825,0.23666248,0.033383302,0.33576208,-0.18367842,-0.4829423,0.01994323,-0.2554227,-0.59677315,-0.15899996,-0.25831354,-0.30533588,0.08650506,-0.36545673,-0.22281574,0.0815387,-0.34159192,0.39986983,-2.523996,-0.047891498,-0.32621846,0.14067006,-0.16970558,-0.38761088,-0.060712464,-0.4338296,0.5937766,0.35883036,0.46333104,-0.498077,0.44226012,0.59235674,-0.35575658,-0.02683876,-0.6216879,-0.027382493,-0.043096583,0.61031914,6.0071547e-05,0.06342357,0.045838952,0.20108317,0.5436493,-0.06353197,0.11450221,0.4344255,0.27300066,-0.016475866,0.3642694,0.09206942,0.5234814,-0.11587699,-0.05716356,0.47281238,-0.4868822,0.22812858,-0.12336237,0.16174327,0.46065363,-0.53036976,-0.5936514,-0.67987376,-0.43090123,1.1714157,-0.21646614,-0.7049552,0.32375115,-0.086090155,-0.3458786,0.017319314,0.44110107,-0.26577497,-0.12388771,-0.5378908,-0.056916498,-0.15182854,0.25272515,-0.28390232,-0.0688962,-0.34072846,0.7352262,-0.21566851,0.50469536,0.35414663,0.39281768,-0.16523752,-0.5041554,0.021865701,0.94841933,0.4378827,0.09208783,-0.25712377,-0.15577438,-0.38353282,-0.25759855,0.019675342,0.78506786,0.5169181,0.03463012,0.06829764,0.30360717,-0.023859108,0.033368252,-0.23112823,-0.3543545,-0.24690233,-0.026789118,0.7272132,0.513147,0.050860036,0.48265335,-0.023776107,0.23548119,-0.3165582,-0.51084447,0.29878706,0.9431948,-0.26215446,-0.3947196,0.5611,0.40128183,-0.3743226,0.30309758,-0.6212482,-0.20207453,0.43787745,-0.20760845,-0.50412405,0.30305925,-0.3561716,0.069123395,-0.59426063,0.47565052,-0.31149086,-0.63136756,-0.5557764,-0.17913264,-3.1936357,0.21175243,-0.05851375,-0.28413442,-0.18031155,-0.25139344,0.3182369,-0.36313325,-0.43991432,0.1510975,0.08137922,0.5153588,-0.08689202,-0.01585528,-0.2704673,-0.14343664,-0.28141546,0.26306224,0.06806413,0.38998276,-0.3466732,-0.2624741,-0.07449032,-0.16806348,-0.50263554,0.024019,-0.49387679,-0.6427359,-0.08491732,-0.23868555,-0.19807339,0.72387534,-0.60874057,0.22646593,-0.32433003,-0.13406944,-0.32044798,0.113769926,0.15015243,0.37323385,-0.057046197,-0.10944681,-0.074098505,-0.34291127,0.16967297,0.13693167,0.16387157,0.47517517,-0.13192046,0.04047451,0.2418347,0.641035,0.04352938,0.93444085,0.23417552,-0.09082731,0.37894595,-0.14516692,-0.3929554,-0.46939686,-0.22324012,0.1079436,-0.35544804,-0.4175264,-0.23618123,-0.32823223,-0.679462,0.40597638,0.10992167,0.20729908,-0.057686437,0.24848267,0.29325646,-0.05956522,-0.09752851,0.088025205,-0.01715653,-0.4434906,-0.4106193,-0.66552734,-0.58014774,0.06056842,0.836591,0.035133798,-0.08469764,-0.019070577,-0.3888344,0.106584705,0.23799849,0.19587846,0.095654756,0.17208584,0.015826115,-0.8294353,0.6337312,-0.1870708,-0.09788031,-0.4896821,0.29865804,0.6483822,-0.43893433,0.37336165,0.23676194,0.17808002,-0.26086205,-0.7114157,-0.023729015,-0.0828359,-0.33894876,0.41253433,0.30124134,-0.8111394,0.4531155,0.23328832,0.10516513,-0.742473,0.4928769,0.06428067,-0.33841372,0.12339713,0.41469574,0.008608985,-0.12648405,-0.23282126,0.2262622,-0.39872205,0.25736544,0.1758324,-0.072345115,0.23239245,-0.243687,-0.42465687,-0.6508944,-0.045664653,-0.6314069,-0.28617442,0.0917052,0.1442242,0.13376872,0.19702831,-0.047798123,0.5256918,-0.24113274,0.18666926,-0.17559035,-0.17392384,0.4310541,0.46692345,0.41962153,-0.3529725,0.62998605,0.12566204,0.04171959,0.17221397,0.21892907,0.39937314,0.034258984,0.51193994,-0.08552892,-0.028797295,0.16903517,0.89337784,0.35187066,0.5967006,0.106850006,-0.4504982,0.24900793,0.09508861,0.35322112,-0.011770261,-0.5747279,0.018715767,-0.092794925,0.1424584,0.5143075,0.068277635,0.48589474,-0.15417223,-0.17758904,0.0750979,-0.016276104,-0.041404437,-1.1734607,0.25464714,0.09542256,1.0131663,0.4607317,-0.039547935,0.019612677,0.58645767,-0.183361,0.07346468,0.11893572,0.054233536,-0.33747754,0.41102177,-0.49404854,0.32616788,-0.04658664,0.09114682,0.17552516,-0.12325538,0.34196573,0.7304072,-0.17772852,0.12405857,0.029753463,-0.2958473,0.048192415,-0.35810655,0.33217773,-0.4500597,-0.43115997,0.5168864,0.47018102,0.3568362,-0.091199145,0.029922538,0.08287049,-0.1627594,0.10073226,0.044448037,0.09235919,-0.31513456,-0.49971488,-0.4306566,0.48584563,-0.2371776,0.01926751,0.22228962,-0.30731228,0.19809695,0.061302055,0.041526306,0.11311893,-0.54610544,0.13588518,-0.21637577,-0.4614345,0.25189397,-0.32507792,0.2662011,0.23542625,-0.049574018,-0.34166852,0.2690663,0.26655972,0.6008677,0.067927875,-0.043844353,-0.24501298,-0.052671585,0.22487508,-0.26936668,-0.16430697,-0.16097355,0.16730784,-0.6610492,0.1900451,-0.23021694,-0.25062054,0.15525128,-0.07151111,-0.121330306,0.4281966,-0.052298483,-0.11330464,0.21295144,0.1527729,-0.09196413,0.022189872,0.047758643,0.10897306,0.038913567,-0.14415956,0.16104473,0.03310571,0.046414737,0.16130893,-0.020700479,0.44625705,0.6172343,-0.07592199,-0.48563337,0.013269135,0.11436629,0.57572246,-0.020839827,0.15963253,0.04661649,-0.637397,-0.4153028,0.45225522,-0.11029549,0.34206852,0.04610199,-0.48005685,0.6366399,0.110754155,1.0192579,-0.06855216,-0.50447476,0.08107669,0.6047333,-0.032234237,0.16920573,-0.22410072,0.87675756,0.46474153,-0.23392633,-0.1281853,-0.33718804,0.031766172,0.15396217,-0.23872589,-0.21235725,-0.069123186,-0.5155709,-0.10468694,-0.08842018,0.18193588,0.010991494,-0.04819614,-0.00914348,0.3509306,0.08275927,0.45956993,-0.55616766,0.03618037,0.3943285,0.105873145,-0.1888812,0.05973722,-0.33994046,0.2010382,-0.6917195,0.19789605,-0.27047622,0.15666743,-0.09318926,-0.21243878,0.333212,0.008877691,0.35091415,-0.43768245,-0.25533807,-0.29836228,0.5259412,0.16165036,0.2675886,0.52776974,-0.11443115,0.17928581,0.16436462,0.5923042,1.2094007,-0.1640141,-0.021630954,0.32482332,-0.5319062,-0.4981705,-0.02344648,-0.3654054,0.1790871,0.01942294,-0.41301638,-0.4238739,0.22463042,0.36176726,-0.019869965,0.02903638,-0.60468185,-0.33376947,0.11181902,-0.26089233,-0.22994722,-0.28616437,0.072404996,0.5041385,-0.3203062,-0.33186787,-0.20613053,0.3181935,-0.36505497,-0.7453758,-0.029435333,-0.1874375,0.28659394,0.12917885,-0.46664187,-0.2033856,0.13944507,-0.44740772,-0.17666827,0.25380656,-0.36705574,0.019015452,-0.18145679,-0.02722718,0.7159968,-0.1352013,0.19624124,-0.70432156,-0.61596227,-0.72053665,-0.674204,0.22212261,0.21042894,-0.005197525,-0.5589374,-0.28713557,-0.47283158,0.03019685,0.08937943,-0.34137726,0.5490121,0.22800322,0.3599596,-0.17221406,-0.9394793,0.3061712,0.1634823,-0.19469446,-0.44902405,0.3855589,-0.0078666685,0.61774707,0.21751699,0.12049413,0.04097299,-0.5879008,0.3317226,-0.15541786,-0.29520464,-0.7218235,0.30168286 -233,0.28470543,-0.17640413,-0.78717494,-0.10878257,-0.1242002,0.29949385,-0.20407304,0.2783461,0.07747033,-0.38444453,0.034542553,0.006651016,-0.2533768,0.1968601,-0.12056172,-0.545797,-0.109665506,0.1657086,-0.46027118,0.24250032,-0.31212988,0.45271444,-0.13368247,0.12589069,0.08757774,0.19897082,0.13319692,-0.058261085,0.09274337,-0.16029955,0.11914904,0.20252892,-0.3206285,0.16996591,0.008266251,-0.4241691,0.04086044,-0.25639495,-0.43295607,-0.61574286,0.3991663,-0.6954459,0.5314446,-0.023583507,-0.21968265,0.17501268,0.17608365,0.27503058,-0.18689585,0.15712614,0.31201372,-0.33714467,-0.1135483,-0.26190895,-0.26484662,-0.5081204,-0.523797,-0.07156319,-0.6392745,-0.04008813,-0.29193485,0.18351766,-0.4579064,-0.10425165,-0.26690763,0.2853679,-0.40613118,-0.1985027,0.17601389,-0.20187894,0.048666842,-0.6184655,-0.091933556,-0.047763087,0.12230158,-0.14158902,0.027655888,0.29339898,0.04664019,0.54083335,0.010239506,-0.12395649,-0.45019096,-0.040569585,0.121298485,0.61607337,-0.14066587,-0.10225764,-0.13574658,0.06877355,0.38549182,0.24892338,0.032566447,-0.12874159,-0.16759318,0.08605189,-0.09392593,0.3406622,0.5052544,-0.3693022,-0.03263081,0.5337729,0.6024639,-0.027562078,-0.26099625,0.2355562,-0.13373007,-0.25998342,-0.099325806,0.022012753,-0.027097825,0.38378507,-0.0075699897,0.24604368,0.5297681,-0.23798244,-0.022236379,0.109838046,0.11143646,0.006300479,-0.07593964,-0.17296672,0.35841018,-0.37234345,0.11344695,-0.19537042,0.71794814,0.028202975,-0.6266512,0.30212632,-0.4272534,0.12569708,0.08587435,0.66569704,0.5905176,0.6076666,0.116565034,0.93255436,-0.44252843,0.09087376,-0.062053394,-0.35622215,0.055830535,-0.04600331,-0.22184815,-0.41541427,0.20798811,0.06594263,0.06812227,0.14808173,0.48584637,-0.41711158,-0.07192095,0.22744457,0.7023086,-0.37067643,-0.07204261,0.48845354,0.9358968,0.96095717,-0.06356453,0.83419734,0.14490916,-0.23886085,-0.13779025,-0.31525248,-0.62214744,0.23582825,0.39623636,0.22767237,0.33652133,0.09337652,-0.1272666,0.34551474,-0.43064645,-0.11161695,-0.04745508,0.15045601,-0.007960963,-0.21990258,-0.49004167,-0.06386747,0.22429778,-0.09274049,0.17419717,0.34339255,-0.33566156,0.15587799,0.008691891,1.2629489,-0.17579886,0.18778619,0.34045163,0.47994512,0.195024,-0.21834679,0.083028674,0.27357033,0.37468728,-0.05015668,-0.56870544,0.112356976,-0.40795848,-0.61186755,-0.24821006,-0.2717846,-0.27102834,-0.06079115,-0.46657932,-0.21170187,-0.10891546,-0.5020856,0.3128899,-2.6469307,-0.030651916,-0.13386227,0.31777295,-0.20219675,-0.29012725,-0.13292466,-0.44426885,0.276828,0.32714203,0.4394458,-0.4302454,0.45415947,0.55138546,-0.44220045,-0.057201665,-0.5349046,0.040012456,-0.15602039,0.30507725,0.08894225,-0.27398303,-0.028193004,0.16936609,0.4003772,-0.229133,-0.03822184,0.34719786,0.42638594,-0.02352916,0.38699895,0.12790416,0.5969822,-0.41468623,-0.15634441,0.45649242,-0.5911049,0.2139756,-0.20114276,0.087453336,0.36335322,-0.32328802,-0.8854818,-0.42485613,-0.080674075,1.5222336,-0.3075873,-0.3276116,0.13557082,-0.095839374,-0.21284883,-0.16956684,0.41978258,-0.16266803,-0.07195706,-0.69556147,-0.1027081,-0.23533298,0.37187776,-0.11050524,0.038091976,-0.5377122,0.53886694,-0.10175007,0.73407453,0.30493024,0.29571617,-0.23726253,-0.35180613,0.028943414,0.92052513,0.5136995,0.08713094,-0.22630152,-0.17183489,-0.15614451,-0.13943478,0.24243125,0.41301593,0.62480956,-0.0054199123,0.10228743,0.27642685,0.064233415,0.12560086,-0.22314383,-0.31001222,-0.13586134,0.20868868,0.49832523,0.31864217,-0.006627713,0.26707596,0.058639415,0.23329407,-0.3573057,-0.30193248,0.247746,0.84100837,-0.058919646,-0.41754228,0.5556891,0.4380516,-0.1627712,0.45523053,-0.74540955,-0.41936874,0.4551459,-0.34683415,-0.31213933,0.24120201,-0.4269868,0.05056459,-0.677991,0.1741016,-0.3087911,-0.62718886,-0.60787976,-0.2747405,-2.8905325,0.03916943,-0.21714352,-0.1114145,-0.03816106,-0.0069062533,0.2514939,-0.5233996,-0.5878378,0.0010829131,0.21700399,0.6338833,-0.061689522,0.06143129,-0.3438148,-0.3980709,-0.22069822,0.30939502,0.074171335,0.20788537,0.0875919,-0.42155656,0.0016326885,-0.17341705,-0.2587784,-0.054009233,-0.27672532,-0.20705755,-0.06992369,-0.3714512,-0.0971174,0.6334678,-0.44484407,0.10685594,-0.17639299,0.046583414,0.09585988,0.110300794,0.11808094,0.11909372,-0.018467171,-0.23812263,0.20500161,-0.3531114,0.3783953,-0.006331881,0.40163797,0.47078463,-0.23788638,-0.11498859,0.466931,0.5685599,-0.06166708,0.8479508,0.3387002,-0.036858402,0.34380785,-0.15144348,-0.23533887,-0.61020344,-0.29613742,0.08134689,-0.39258018,-0.51978344,-0.0021312237,-0.44365877,-0.99166477,0.41620165,-0.15535338,0.36327857,-0.15485384,0.5023037,0.41150194,-0.08290434,-0.11721253,0.031730868,-0.05497625,-0.116739325,-0.40188745,-0.77333367,-0.37595853,0.08935841,1.2602541,-0.2496658,-0.022957465,0.16767244,-0.051909957,0.05058919,0.20020464,0.29787543,0.22306105,0.4147608,0.03281695,-0.5711251,0.39308882,-0.35951844,-0.069789335,-0.58491653,-0.0039667767,0.44793063,-0.69250417,0.29134962,0.33002388,0.17271627,-0.08606405,-0.788256,0.112229064,0.15974645,-0.2025273,0.40022582,0.21142222,-0.6409208,0.4162982,0.11622175,-0.24647762,-0.6122019,0.46287313,-0.09925385,-0.21562876,-0.0009325504,0.3705515,-0.03898047,-0.16890854,-0.17334332,0.29882076,-0.32832256,0.3996257,0.20706984,-0.18793513,0.30839697,-0.3408651,-0.15590926,-0.52686465,0.11674559,-0.5631819,-0.20375958,0.22169909,0.037774023,0.17198819,0.21736088,-0.10054379,0.51940787,-0.23915316,0.026956078,-0.22818384,-0.3524937,0.58948547,0.40797287,0.32393977,-0.36557177,0.59098226,0.0658387,-0.26113755,-0.019426137,0.13454498,0.59709144,-0.073261306,0.3828718,-0.08657071,-0.119757615,0.30550918,0.8074688,0.38928756,0.34678805,0.03020835,-0.23601493,0.080371074,0.14000215,0.004744323,-0.24902971,-0.4707906,-0.1331247,-0.015623859,0.16867971,0.42966917,0.19561659,0.5549169,-0.16949062,-0.15530552,0.27806103,0.1417358,-0.24611592,-0.8873686,0.19522022,0.024691964,0.779863,0.32527217,0.22163287,0.057882324,0.39982608,-0.22831352,-0.077817634,0.37568787,0.016640948,-0.38033357,0.5036279,-0.5789039,0.54596794,0.07502739,-0.092303656,0.25543132,0.034667816,0.5041408,0.72613853,-0.025923936,0.06437311,-0.057249904,-0.2836676,0.12923978,-0.19736841,0.19354804,-0.48734948,-0.14683597,0.69395226,0.39129123,0.3011258,-0.096452355,-0.04257857,-0.0087764505,-0.17035231,0.09538791,-0.117324635,0.18366115,-0.22236064,-0.3554222,-0.1898771,0.43832314,0.17849536,-0.076493315,0.08263065,-0.26713523,0.26250848,-0.029705977,0.24424037,-0.021780616,-0.5063179,0.13725513,-0.23828974,-0.4917202,0.28830782,-0.07592388,0.3764449,0.2543287,-0.035131466,-0.33301672,0.24533674,0.16909125,0.7258821,-0.20998931,-0.08972193,-0.42560098,0.21111552,0.19605647,-0.16511849,-0.114026345,-0.31568825,0.33004034,-0.7116423,0.3383733,-0.27862585,-0.19299155,0.15149869,-0.25322422,-0.22684254,0.62103397,-0.1509829,-0.123029105,0.08227881,-0.086484484,-0.35167965,-0.20543489,-0.21447681,0.06039796,-0.08922829,-0.048791487,-0.23969859,-0.09697025,0.048285127,0.245631,-0.0070733787,0.05085997,0.3474668,0.006240467,-0.4811557,-0.019968254,-0.0038100402,0.54531705,0.0013861308,0.05180725,-0.35907593,-0.61348635,-0.28049672,0.37060836,-0.19765472,0.38731977,0.1320587,-0.29005557,0.77421683,0.041118015,0.99327344,0.016350541,-0.35042438,-0.021068756,0.7512263,0.094610214,-0.01565414,-0.2580741,0.9766262,0.772428,-0.06421723,-0.28555447,-0.21191254,-0.073317446,0.10109145,-0.27040094,-0.28219846,-0.0032770515,-0.7078964,-0.25040707,0.28193057,0.24213041,0.1379352,-0.17271315,0.069568366,0.33160397,0.13055517,0.21714608,-0.54948765,-0.3317905,0.24819939,0.13673387,-0.08069816,0.04328393,-0.5786897,0.29704645,-0.73753047,-0.15313,-0.12392448,0.16492696,-0.04490731,-0.25553012,0.3106332,0.0041222214,0.18708095,-0.35294256,-0.288384,-0.026357826,0.33891025,0.053086367,0.27803296,0.6269273,-0.25343728,0.032706253,-0.021721203,0.38397944,1.0172651,-0.17372999,-0.01353031,0.41952762,-0.45200184,-0.7740679,0.09170539,-0.5321132,0.17193201,-0.15405177,-0.42199183,-0.3842765,0.4152569,0.14403208,-0.05570082,0.14678206,-0.53982705,-0.121815644,0.10436908,-0.32016394,-0.26151913,-0.32759514,-0.077499524,0.78546894,-0.3548107,-0.22212045,0.06998459,0.5402527,-0.16267401,-0.69393665,0.16180474,-0.28725567,0.4164817,-0.04015435,-0.27937022,-0.104940034,0.011156362,-0.30902207,0.22382693,0.5389088,-0.29849568,-0.060391083,-0.3728206,0.10909427,0.62119967,-0.09402685,0.033281468,-0.5258259,-0.32962286,-0.99036723,-0.25443578,0.40436438,0.16673717,0.018084506,-0.6377302,0.05032695,-0.33985406,-0.1546653,-0.101490095,-0.406763,0.31692493,0.12750891,0.32090554,-0.27416185,-0.7619258,0.09872934,0.045970622,-0.4644876,-0.3788782,0.49603257,-0.1240226,0.7673367,0.1131797,0.022418195,0.27289248,-0.6572463,0.35386315,-0.21843545,-0.1376672,-0.6714496,0.01798438 -234,0.3639386,-0.08790997,-0.5856405,-0.052128058,-0.44570437,0.13774048,-0.3535323,0.31812468,0.21908565,-0.24607123,0.07027935,0.11530473,-0.20293339,0.3723402,-0.24463753,-0.5847393,-0.06354282,0.03953086,-0.6678149,0.48855114,-0.50736016,0.2876692,-0.14571646,0.43926224,0.081457235,0.27609932,0.036000017,0.06385407,0.15782963,-0.3077058,-0.16319874,0.08105356,-0.72812796,0.49404156,-0.19488227,-0.3702043,-0.041128907,-0.43640196,-0.29875168,-0.72807693,0.18271162,-0.7161031,0.63014454,-0.044563245,-0.40383554,-0.07849388,0.13785864,0.3519664,-0.1943087,0.11171659,0.35066548,-0.32711294,0.055144217,-0.3218745,-0.31956366,-0.27134797,-0.42796862,-0.25003946,-0.62811494,0.009756943,-0.21509087,0.17982633,-0.29066506,0.053269964,-0.34063414,0.267328,-0.33419704,0.1671462,0.027219897,-0.21392708,0.18072522,-0.45034286,0.03889667,-0.06996513,0.29892114,0.01747694,-0.20466948,0.2955119,-0.055273697,0.30801895,0.15129994,-0.11753818,-0.25951216,-0.21979149,0.15304881,0.40113655,-0.0324066,-0.10438702,-0.3033287,-0.16040717,0.40593806,0.36539814,-0.12611449,-0.41218987,0.12599523,-0.2948343,-0.21341312,0.6349967,0.4858644,-0.16793187,0.06844419,0.3068096,0.51075155,0.3091746,-0.3613803,0.20002943,-0.07485739,-0.4240911,-0.30986372,0.23305285,0.06503251,0.30377233,-0.10573845,0.28445956,0.58421147,-0.117580645,-0.12974158,0.12977675,-0.137269,0.25003985,-0.32161197,-0.21072294,0.119895935,-0.55284125,0.29065618,-0.26668373,0.70212156,0.054173965,-0.805715,0.2018174,-0.68684053,0.0026522055,0.0006005193,0.62510556,0.623243,0.6930814,0.057761192,0.804869,-0.35435104,0.07917878,-0.19977792,-0.18309416,0.030869016,0.12191784,0.20789666,-0.37969112,0.039784342,-0.18425326,0.10212878,0.041945633,0.081058875,-0.1963448,-0.20948903,-0.02627013,0.68237144,-0.3548614,-0.003093044,0.95084333,1.1946324,1.0154083,0.051951658,0.9443958,0.09935961,-0.064589344,-0.38048902,0.03476951,-0.60147595,0.1790223,0.3502525,0.3452808,0.29212525,0.027015023,0.04699562,0.25671875,-0.31714118,-0.14752229,0.08723345,0.33794487,-0.030037364,-0.02404379,-0.30689913,-0.3866422,0.22643293,0.0876095,0.0052511245,0.26433533,-0.2914699,0.52068657,0.21742272,1.0203758,0.103151105,0.17265594,0.13524212,0.45148364,0.2537736,-0.20821172,-0.12063575,0.25565112,0.25401637,-0.029506018,-0.59232694,0.13076133,-0.26047552,-0.25194404,-0.029311523,-0.43312874,-0.15422131,-0.23403935,-0.35898924,-0.044525117,0.015783204,-0.3566126,0.4773594,-2.7893455,-0.1481878,-0.08294446,0.3074865,-0.1727398,-0.26538262,-0.2155902,-0.42697588,0.47496963,0.13937984,0.4739902,-0.45224658,0.6575768,0.4745777,-0.3276557,-0.039926022,-0.59919596,-0.13517244,0.114559196,0.2870753,-0.055635255,0.017829945,-0.23859929,0.26606575,0.59729934,0.03548896,0.037363146,0.2847234,0.4468347,-0.21023488,0.6719098,-0.033470143,0.5351427,-0.5592775,0.027412502,0.33902726,-0.59321004,0.39337206,0.045786604,0.16456454,0.49609217,-0.5892055,-0.8375063,-0.573683,-0.32955548,1.3132014,-0.3696011,-0.5967744,0.20081611,-0.2691165,-0.2668536,0.14640516,0.5525932,-0.117276765,-0.040931415,-0.5774165,-0.06596985,-0.27487627,0.4467217,-0.07889671,0.112737514,-0.34841025,0.6017489,-0.13482638,0.6808395,0.28418633,0.13458143,-0.1261005,-0.30457124,0.11341377,0.6889582,0.5474023,0.099742025,-0.16841395,-0.20812678,-0.12281722,-0.0978257,0.080300756,0.91315836,0.4852195,-0.14133526,0.05342045,0.3280683,-0.23863256,-0.0014131218,-0.2737835,-0.26673305,-0.24250974,0.13507862,0.5526673,0.6845607,0.12884958,0.24434054,-0.015955068,0.23843072,-0.30029762,-0.5129561,0.23098896,0.42966294,-0.06687043,-0.23836224,0.51968783,0.60870177,-0.17840172,0.45150927,-0.5231201,-0.42890128,0.47351646,-0.030663468,-0.4792688,0.21830471,-0.23039353,-0.05051364,-0.79393387,0.19904639,-0.5709304,-0.9787612,-0.40727708,-0.119862705,-2.9739351,0.09882462,-0.005357273,-0.16913237,-0.39796305,-0.30437392,0.28180692,-0.39074692,-0.668968,0.0669025,0.017733077,0.5838178,-0.17710479,0.09117047,-0.29494688,-0.21327122,-0.24396695,0.26589254,0.20281975,0.3295619,-0.22192271,-0.2241174,-0.23318666,-0.12591262,-0.5330571,-0.029390454,-0.49932623,-0.10601011,0.06295779,-0.37399897,-0.2353574,0.5350617,-0.4696207,0.09713715,-0.09483006,-0.098465495,-0.1442367,0.34884644,0.2928597,0.3048393,0.12906857,-0.121281065,-0.25072268,-0.34282422,0.11748936,0.10282167,0.22835182,0.33822426,-0.18598521,-0.01241536,0.3459266,0.74311,0.051016465,0.9351458,-0.15925401,-0.09266215,0.45075837,-0.33964762,-0.6141781,-0.5951168,-0.18414755,-0.0029023339,-0.2944758,-0.31925398,-0.19307081,-0.2938317,-0.8316386,0.32798877,0.34024286,0.07763109,-0.15173627,0.21805823,0.214548,-0.1655374,0.06191257,-0.018812457,-0.104692794,-0.47287393,-0.36568105,-0.6370758,-0.5605117,-0.012181121,1.0074464,-0.16155131,0.055372063,0.10796402,-0.34959614,0.21534155,0.22768979,0.18086706,0.19488685,0.36357746,0.0065151155,-0.428252,0.3930353,-0.25635758,-0.16140728,-0.47511944,0.13298917,0.9560936,-0.6000455,0.44997248,0.27823067,0.1184149,-0.24227972,-0.57116777,-0.09089351,-0.08040104,-0.1774606,0.40482116,0.22906756,-0.7755478,0.44885042,0.07422373,0.027988335,-0.63226825,0.44593355,-0.018863207,-0.22958435,0.12191603,0.52487636,0.103552856,-0.12445062,-0.007459432,0.20954412,-0.23916392,0.32560083,0.19453107,-0.0033552349,0.12538365,0.049709085,-0.21213043,-0.6278246,-0.12746917,-0.66465497,-0.28732434,0.29541162,-0.09985005,-0.051845476,0.012547205,0.0064986446,0.3972944,-0.35704038,0.2650167,-0.30570516,-0.16509996,0.42999032,0.47245553,0.49434268,-0.50101465,0.6442179,0.29987994,0.06669483,0.10836845,0.26006138,0.4003397,-0.15223368,0.4570315,-0.1367213,0.10956538,0.13799864,0.5223442,0.31177938,0.29106024,0.0890829,-0.010447949,0.38696364,0.10129646,0.31351438,-0.09066237,-0.41570863,0.16058709,-0.13078813,0.0855271,0.4505464,0.12571457,0.36695388,0.079638876,0.006214132,0.05644994,0.23089443,-0.4343934,-1.3914531,0.5027411,0.16421174,0.79026634,0.43820748,0.20940572,0.100136705,0.6922731,-0.24413025,0.021048315,0.30301854,0.26257285,-0.29029503,0.6572713,-0.55419797,0.47530404,-0.01464749,-0.029209673,0.24584156,0.08614843,0.59235704,0.8634682,-0.137776,0.010374869,0.015692601,-0.19475411,-0.00786839,-0.30220276,-0.008021717,-0.37708375,-0.46203718,0.5350129,0.35218915,0.49111006,-0.33120435,-0.080423646,-0.0001501441,-0.061115604,0.089568526,-0.14091061,-0.15271248,-0.16793735,-0.45593277,-0.18837707,0.6145815,-0.33863235,0.12975629,0.16196351,-0.20429938,0.35504678,0.21892376,0.08647847,-0.0043607564,-0.7477322,0.2339976,-0.394846,-0.22281848,0.08900366,-0.54367,0.32815903,0.2190605,-0.10188576,-0.1819123,0.33342662,0.24598868,0.64271677,0.032924175,-0.12015977,-0.19886017,0.19881074,0.117203556,-0.3049935,-0.09062434,-0.26237544,-0.02592936,-0.60976744,0.11493876,-0.2828691,-0.30107698,0.18062162,-0.106957264,0.049208302,0.50972605,-0.06838182,-0.16224277,0.09025404,-0.008315911,-0.3352196,-0.32735586,-0.34597662,0.19709067,0.17435856,0.09276304,0.07430318,0.014491449,-0.021816378,0.2593852,0.26646468,0.37933198,0.14026958,0.01673849,-0.3138435,0.039408024,-0.020330263,0.45004463,0.1455414,0.10656778,-0.048844393,-0.27526945,-0.273891,0.53170145,-0.28288817,0.23949455,-0.008026123,-0.3843687,0.71780235,0.023646077,0.9165711,0.028983995,-0.3859547,0.20541207,0.5445173,0.03373425,-0.04529633,-0.21078521,0.87971395,0.40901288,-0.220976,-0.027312348,-0.44204724,-0.2823894,0.04656383,-0.25444245,-0.23953456,-0.10697529,-0.46988496,0.068377964,0.17686558,0.2869228,0.036958124,-0.08643376,-0.25494778,0.25563613,0.058636088,0.35319236,-0.5158752,-0.02599513,0.35351777,-0.033914607,-0.019291801,-0.018708592,-0.3516283,0.38039017,-0.71943736,0.24032778,-0.6126943,0.018230474,-0.18896765,-0.16770174,0.18305485,0.04204269,0.20734598,-0.32953027,-0.23661493,-0.07820422,0.45489708,0.25251982,0.33847883,0.7152236,-0.20713349,-0.08394999,0.055811256,0.4330589,0.68796045,-0.22852981,-0.07116806,0.28960654,-0.3946507,-0.53368,-0.0038883735,-0.37903896,0.07189632,-0.004427125,-0.35840094,-0.17321469,0.26233536,-0.022852818,0.2094421,-0.020938454,-0.7442589,-0.033887297,0.21282929,-0.2601369,-0.31258014,-0.4285643,0.16820978,0.67857987,-0.18354899,-0.41509795,0.06124488,0.12074623,-0.22748917,-0.5407192,0.026562465,-0.17817135,0.104265966,0.011366378,-0.3558966,-0.05552895,0.48133698,-0.5001957,0.03227452,0.081469774,-0.30044392,-0.0030278538,-0.19397129,-0.08945622,0.8824217,-0.2312511,0.0557764,-0.37546477,-0.6007926,-0.6086877,-0.24824263,0.022818573,0.30843014,0.019783879,-0.58355194,-0.09880888,-0.36349872,-0.10600863,0.03547716,-0.38203022,0.3944285,0.16078417,0.4093893,-0.21009563,-1.0815308,0.34294024,0.25127718,-0.19892295,-0.36400533,0.48327455,-0.18074755,0.4472116,0.048624218,0.046158403,0.0046202443,-0.7304902,0.32525185,-0.25766298,0.025594631,-0.67193896,0.25357577 -235,0.61866033,-0.23643894,-0.5249493,-0.18828715,-0.16143212,0.21911615,-0.25643674,0.54515004,0.14392227,-0.4555312,-0.096369475,-0.07253068,0.10592054,0.24619088,-0.26086476,-0.5677882,-0.020114804,0.22309045,-0.525815,0.53552055,-0.43271643,0.30569795,-0.044127353,0.30593273,0.177908,0.19448848,0.024898732,-0.123511225,-0.20986198,-0.29038128,-0.05221647,0.2677888,-0.6053692,0.10187168,-0.21027957,-0.33904532,-0.034426387,-0.5829216,-0.4143965,-0.71557045,0.31414637,-0.8820573,0.76781255,0.14617644,-0.22224715,0.17467256,0.16724467,0.3562125,-0.23023213,0.19060175,0.17862916,-0.046185143,-0.02103247,-0.260501,-0.1919982,-0.39535505,-0.57823485,0.0041970434,-0.48090312,-0.14852537,-0.08667914,0.0645525,-0.1653998,0.033263173,-0.12398626,0.4549844,-0.43045262,0.1364541,0.14380963,-0.10412644,0.2148394,-0.5447286,-0.18378049,-0.07118512,0.41960162,-0.27105415,-0.16188407,0.24448845,0.0863117,0.549591,-0.14022085,-0.09738455,-0.28185895,-0.107174166,0.015239843,0.6219837,-0.31559843,-0.5170764,-0.14534919,0.016498279,0.30871153,-0.0013207357,0.10716348,-0.22035953,-0.09386177,-0.06382571,-0.29405603,0.43046108,0.5928031,-0.43750387,-0.14581934,0.35002455,0.39033386,0.1268654,-0.092074774,0.03173187,0.077965036,-0.5897969,-0.19272622,0.1973797,-0.13195974,0.5114614,-0.0050898395,0.22046134,0.44533673,-0.17445211,0.1130179,0.14318416,-0.005980104,0.17306465,-0.1383806,-0.47889546,0.07346959,-0.44460496,0.014113605,-0.2520548,0.6979884,0.2682486,-0.7938414,0.43356723,-0.517764,0.0577883,-0.057190914,0.40985125,0.5245767,0.4744757,0.074623264,0.62818545,-0.31601664,0.09882038,-0.13382135,-0.23130907,0.08019764,-0.09323442,-0.03383577,-0.47293612,0.09523725,-0.029750992,-0.157027,0.2211106,0.4974221,-0.4943101,-0.110241644,0.11697518,0.873757,-0.25407463,0.010629114,0.7765165,1.1011833,0.8730004,-0.02020183,1.1754903,0.22823213,-0.26561812,0.10084381,-0.25485164,-0.6846463,0.27427927,0.30369872,-0.38235226,0.37123197,0.027645051,-0.1390786,0.25792256,-0.38268933,0.01745825,-0.11368405,0.09526213,0.08970984,-0.0700938,-0.3678437,-0.2510267,-0.17527314,-0.064472266,0.16392761,0.2167448,-0.4225991,0.2882281,0.090849005,1.6166921,-0.07533514,-0.027009146,0.0104905125,0.5272041,0.23673372,-0.0743037,-0.06733413,0.28061664,0.3981103,0.0633439,-0.60000324,0.06329742,-0.1229145,-0.34972534,-0.18013859,-0.2824699,-0.16464825,-0.018888699,-0.56347346,-0.13442205,-0.04535873,-0.16575636,0.36181983,-2.7221856,-0.15712382,0.042313766,0.5115306,-0.23132913,-0.44147202,-0.3093282,-0.46732056,0.438934,0.19469087,0.44671077,-0.5964454,0.5624899,0.37578917,-0.41611528,-0.17311668,-0.6201647,-0.12940629,-0.013847562,0.28542766,-0.0804085,-0.091518484,0.15300183,0.29343235,0.43160692,-0.06733228,0.13819432,0.19201145,0.4351157,0.12891617,0.42765948,-0.06144208,0.55676633,-0.2492525,-0.16293877,0.33754852,-0.37492234,0.17334741,0.012750228,0.091654494,0.3264826,-0.6191406,-0.9053707,-0.713116,0.051510468,0.97648466,-0.16169557,-0.38654816,0.1629596,-0.21086283,-0.4269187,-0.08290536,0.5356811,-0.08834114,-0.13203979,-0.775149,0.006759724,-0.019098807,0.15959153,-0.028297504,0.14722678,-0.4955214,0.5098363,-0.048457213,0.54732805,0.30169278,0.18836555,-0.12110582,-0.44071314,0.043616433,1.1340705,0.37500098,0.21963397,-0.15386073,-0.18584153,-0.37440175,0.051558517,-0.12064004,0.634612,0.6818334,0.0050596874,0.07680747,0.19482088,-0.046659242,0.22442462,-0.13024633,-0.34014866,-0.16339378,0.08497106,0.60993356,0.43420404,-0.14897838,0.46180135,-0.044081114,0.31764603,-0.2372341,-0.36405823,0.38631335,0.99856335,-0.21191,-0.20202726,0.58087504,0.43423113,-0.26739958,0.4194783,-0.59227806,-0.35131946,0.2709966,-0.2630729,-0.24918829,0.49157944,-0.2887705,0.21371849,-0.888188,0.32289934,-0.34211776,-0.30439112,-0.36212933,-0.17780064,-3.1089325,0.060730346,-0.082928665,-0.11750063,-0.15521605,-0.18762021,0.21428385,-0.55866605,-0.5284674,0.07713813,-0.009588377,0.6875174,-0.09528207,0.114756145,-0.27450284,-0.32679695,-0.30572554,0.22701469,0.07538711,0.42311853,-0.0052197594,-0.42035535,-0.08803382,-0.17227899,-0.24212892,0.09633031,-0.6482985,-0.45968297,0.019825177,-0.519037,-0.24493913,0.6349994,-0.27688923,0.08223891,-0.1730552,0.022769092,-0.14733616,0.27821338,0.065292105,0.16337961,0.039477088,-0.11952081,0.06046046,-0.25660738,0.34497344,0.09336219,0.22663005,0.37207827,-0.07916193,0.073766164,0.42396563,0.4801869,-0.10442998,0.81288683,0.44598275,-0.17471042,0.19979021,-0.3286112,-0.23618014,-0.37408683,-0.33775777,-0.04805025,-0.43252915,-0.48997343,-0.2211557,-0.4069986,-0.76393473,0.48751196,-0.14401348,0.046028648,0.024604466,0.35700002,0.48478395,-0.04415379,0.08783611,-0.057375953,-0.089620255,-0.4514361,-0.18334574,-0.5873229,-0.29792735,0.11761169,1.0055187,-0.17122044,-0.021048455,0.10501349,-0.16111363,0.021950781,0.08808816,0.02370129,0.090692185,0.5389925,-0.08502516,-0.62542796,0.3919841,-0.25014317,-0.33969882,-0.49372882,0.23128563,0.54366666,-0.6292665,0.5282636,0.418894,0.113701105,-0.12733412,-0.38720843,-0.12612054,0.14567041,-0.20912199,0.3498933,0.1462836,-0.7386618,0.4105533,0.27293926,-0.27706397,-0.65421677,0.60137546,0.0918033,-0.4233807,0.019251687,0.31922492,0.1413119,-0.04573626,-0.2112744,0.2536958,-0.5135774,0.3345559,0.1515612,-0.08733619,0.26838124,-0.2112573,-0.16712144,-0.7090793,-0.04355202,-0.46336308,-0.4167098,0.24906088,0.12296032,0.2018296,0.19577266,0.075647764,0.4493718,-0.4967752,0.07651194,-0.059885774,-0.24008557,0.4999646,0.28506088,0.47623184,-0.38092646,0.4507206,-0.13178448,-0.1384997,0.14261284,0.11629566,0.50007015,0.059629984,0.25285777,0.025124613,-0.19066706,0.36945036,0.665729,0.28447506,0.32603768,0.12256865,-0.18671516,0.21819106,0.088082895,-0.01599931,0.07729652,-0.40638202,-0.14473216,-0.051443946,0.1113993,0.38903373,0.21496102,0.2491142,-0.1593511,-0.275959,-0.024525246,0.19635044,-0.1530948,-1.230868,0.3678611,0.026734272,0.66754967,0.4502477,0.03363333,0.027487481,0.50906885,-0.17689861,0.09688163,0.29161713,0.028891897,-0.4261239,0.49150264,-0.45341733,0.45618263,-0.08967934,0.013583059,-0.04496712,-0.06841009,0.45060632,0.8118432,0.00088392023,0.18434699,0.09597126,-0.29890347,0.09476611,-0.36264548,0.012066706,-0.62029266,-0.13951588,0.73424894,0.407587,0.3847416,-0.17172284,-0.007073897,0.07477499,-0.15303564,0.117879786,0.18448733,0.11953318,0.01929662,-0.74519914,-0.11573254,0.60878533,-0.33175096,-0.054146387,-0.023556137,-0.32615665,0.30413148,-0.1777597,0.11699905,-0.08419573,-0.63691956,-0.07752557,-0.6194095,-0.31449005,0.4181698,-0.17048372,0.108140625,0.25294787,0.052541148,-0.33193308,0.3472646,0.20161733,0.6017775,-0.03152938,-0.22276989,-0.45647606,0.12058341,0.19085659,-0.24903777,-0.08959874,-0.3004772,0.2372642,-0.5964757,0.3371788,0.008439723,-0.23284525,0.020104071,0.013827366,0.1911499,0.5449535,-0.24408334,0.0040034573,0.12491004,-0.07126602,-0.32993424,-0.1741795,-0.27843124,0.109210625,0.36363927,-0.034177255,-0.034438156,-0.1200696,-0.08872043,0.44833165,0.11651315,0.6005971,0.5417922,0.24624777,-0.25842008,-0.1407709,0.09492746,0.549353,-0.003961722,0.015640628,-0.4719654,-0.4751159,-0.24692819,0.31027073,-0.26418427,0.22614048,0.1454491,-0.15182301,0.7931656,0.031764634,1.067427,0.034895133,-0.3348692,0.086341925,0.51791275,-0.042036705,-0.06596263,-0.41372985,1.0754244,0.5629017,0.03525187,-0.024590569,-0.25771052,-0.15496634,0.048159447,-0.18513349,-0.2115188,-0.12001983,-0.6156127,-0.4075777,0.20793696,0.25353935,0.25758517,-0.17172052,0.25683448,0.20788985,0.043062653,0.06994519,-0.55938953,-0.19116326,0.3516021,0.25837976,-0.014964261,0.12511542,-0.4679028,0.30370635,-0.4350301,0.0024847507,-0.23460563,0.122626886,0.10186215,-0.30854887,0.22194748,0.018534418,0.24012947,-0.4147787,-0.29204887,-0.15735964,0.41482002,0.020689217,0.13354158,0.6054203,-0.19182462,0.059335895,0.0031145096,0.644463,1.214638,-0.12586649,0.08132924,0.51271904,-0.3302084,-0.6241924,0.13926066,-0.30707338,0.11001615,-0.03376399,-0.12207409,-0.65317726,0.32599592,0.1246572,0.0103978515,0.0058217626,-0.5864367,-0.31691507,0.421744,-0.32559434,-0.25115865,-0.32678065,0.09715922,0.7796974,-0.28427985,-0.18433253,0.12600069,0.36812267,-0.24515203,-0.5866954,-0.006842742,-0.41515407,0.25513905,0.26670164,-0.15251406,-0.21583298,0.045049675,-0.35105243,0.17095813,0.26029807,-0.39671654,0.07695187,-0.41731772,-0.07158079,0.92536205,-0.20162134,0.039347198,-0.43850234,-0.48061046,-0.8837941,-0.34791845,0.33334407,0.22693805,0.05972944,-0.6455712,-0.0031017805,-0.17734791,-0.32097843,-0.18552312,-0.31973717,0.4800366,0.037848677,0.29577217,-0.19992712,-0.7862895,0.1881316,0.14608933,-0.46474984,-0.60608155,0.59654045,0.102050275,1.083023,0.07205329,0.034898933,0.45453408,-0.54487234,-0.099681094,-0.2512886,-0.051496625,-0.7591375,0.15119423 -236,0.35110182,-0.011837019,-0.42711157,-0.15438485,-0.2728315,0.057032235,-0.18370485,0.34303832,0.24312714,-0.48804197,-0.04217497,0.0043106205,-0.029060928,0.21309566,-0.097234674,-0.50029767,0.15667023,0.17088433,-0.46146673,0.46374914,-0.39157054,0.14094786,-0.05375162,0.3636213,0.12721664,0.27997,0.043229945,0.05788972,-0.20555265,-0.14921431,-0.116575345,0.23990944,-0.62917364,0.30454534,-0.19360031,-0.2248408,-0.033932235,-0.43167967,-0.4489638,-0.68382174,0.21292695,-0.7039443,0.46371222,-0.005560279,-0.29899696,0.3138702,0.2603199,0.28095707,-0.12728605,-0.1396699,0.223253,-0.26519197,-0.042983163,-0.3451455,-0.13714704,-0.3247244,-0.6014986,-0.07647603,-0.4672578,-0.1411267,-0.012592708,0.18554333,-0.22968438,0.044465244,-0.054758217,0.65052575,-0.4365325,0.26216277,0.30854008,-0.23631923,0.1440275,-0.57960665,-0.14405094,-0.017681006,0.009899518,0.023961876,-0.32864478,0.23320355,0.120728254,0.4022381,-0.08886729,-0.23451708,-0.25430468,0.012663292,0.15603791,0.4310717,-0.20516391,-0.12588434,-0.07700082,-0.017796755,0.1662123,0.03842304,0.15628217,-0.18621847,-0.07184597,-0.016444147,-0.18725505,0.44636232,0.56690294,-0.22011045,-0.13681868,0.30323866,0.60320187,0.07315893,-0.26434687,-0.003936861,0.12522316,-0.43753862,-0.13903823,0.04429273,-0.21632631,0.34569174,-0.23629354,0.14888634,0.7174838,-0.2792522,-0.10679763,0.28054434,0.26255155,0.22849713,-0.4054461,-0.22568265,0.3306189,-0.47803313,-0.042993437,-0.19802353,0.7269902,0.16580865,-0.5730658,0.2711451,-0.43899032,0.004998573,-0.018937783,0.4175152,0.8244749,0.59279346,0.28011698,0.7307909,-0.44479033,0.16533484,-0.10047917,-0.18937649,0.17572857,-0.21422291,0.16310632,-0.43139532,0.02060234,-0.13110694,-0.15953696,0.1262788,0.40219837,-0.53922284,-0.10860685,0.24288453,0.9551373,-0.27344897,-0.25544742,0.71328,0.9252601,0.946958,0.07024963,0.886175,0.21205536,-0.088550486,0.05483928,-0.34805053,-0.7541137,0.13432012,0.1433226,0.23276493,0.20603204,0.29070082,0.09740038,0.36767575,-0.37394413,-0.0057019764,-0.14730246,0.5680297,0.15843354,-0.110549346,-0.29083198,-0.21187617,0.037247267,-0.14099756,0.102882944,0.3465405,-0.14692304,0.495968,-0.032631177,1.4669329,-0.024972856,0.11015361,0.050993364,0.45633104,0.2730894,-0.3888614,-0.03925665,0.43550974,0.2716845,0.048146766,-0.40765563,0.13294171,-0.10531999,-0.42874065,-0.21566205,-0.3461237,-0.12328037,-0.1191229,-0.46647945,-0.29955846,-0.0498301,-0.21152087,0.33670425,-2.905026,0.06503707,0.01006034,0.37888503,-0.22927563,-0.24230759,-0.1294768,-0.5070392,0.24488075,0.2451539,0.40326375,-0.6401638,0.53725356,0.45579553,-0.46937674,0.03308008,-0.6119359,-0.14755559,-0.122292824,0.2723563,0.047725376,0.14479986,0.04697543,0.16933663,0.43428662,-0.118191384,0.14960672,0.3264926,0.42538577,0.10456954,0.31341377,0.10452504,0.46271223,-0.25811592,-0.22400428,0.34569788,-0.6286398,0.09557929,-0.1335181,-0.011411265,0.57054955,-0.21304886,-0.85436386,-0.5456454,0.044900537,0.9525088,-0.23900798,-0.4221857,0.18444204,-0.5170347,-0.32864198,-0.04066273,0.23597728,-0.036359552,-0.13574837,-0.71127063,-0.009284266,-0.0838114,0.18434341,0.00013858399,-0.083980836,-0.3145927,0.630014,-0.15659025,0.33674827,0.2925494,0.25374597,-0.40760472,-0.32667843,0.019219214,0.6861887,0.2944985,0.20115551,-0.32448497,-0.25827608,-0.16193359,-0.11532407,0.069673896,0.6007457,0.59231466,-0.1363132,0.15676464,0.34228903,-0.14647989,-0.117736995,-0.2016267,-0.3931973,-0.053540263,0.009386301,0.5207635,0.6971382,-0.15752013,0.4498269,-0.023852007,0.18659125,-0.24941047,-0.6440635,0.4537688,0.6478392,-0.062565796,-0.38892302,0.4817195,0.3673932,-0.3006141,0.3613007,-0.5166969,-0.3142007,0.3025587,-0.17699544,-0.4209682,0.06085532,-0.32004303,0.16712105,-0.5374035,0.40573677,-0.21683714,-0.72213465,-0.65691584,-0.21140857,-2.7223532,0.04886803,-0.17586446,-0.18197212,-0.018090231,-0.112059996,0.11670776,-0.42748457,-0.4452179,0.3296992,0.08093894,0.68980396,-0.026323361,0.14078589,-0.2436062,-0.24009922,-0.26340804,0.21137054,0.14178397,0.14127643,0.021949146,-0.5081504,0.06469698,-0.18630132,-0.3761945,0.051054128,-0.55008096,-0.49709532,-0.14679646,-0.53450406,-0.1499926,0.64095294,-0.30486837,0.016092334,-0.3975596,0.026622197,-0.065203734,0.31412593,0.15429032,0.12042511,-0.0037821191,-0.020196727,-0.07088627,-0.38798258,0.18446657,0.06732241,0.3427851,0.5490612,0.11608841,0.10808389,0.47346026,0.65739304,0.05520361,0.8233176,0.31690487,-0.14549866,0.25086066,-0.14507338,-0.27611935,-0.5104879,-0.24918365,0.05153071,-0.41149637,-0.27955654,0.114046335,-0.48575643,-0.7643705,0.3916208,-0.012934421,0.030058239,-0.031786073,0.25100562,0.45251036,-0.21867041,-0.009712792,-0.04348267,-0.12895434,-0.4694793,-0.3554277,-0.59435236,-0.41840282,0.2824121,1.1825752,-0.24317773,-0.08798573,0.0814323,-0.29795668,-0.03319342,0.27984402,-0.24701382,0.09006761,0.592348,0.0055679297,-0.566109,0.26966998,-0.19279115,-0.14070787,-0.64867646,0.11109984,0.5190128,-0.65176827,0.6883002,0.1748649,0.045957346,-0.20423481,-0.49291372,-0.24475494,-0.035910588,-0.36991328,0.4042646,0.34608665,-0.7839814,0.42400226,0.2336696,-0.48849455,-0.6448174,0.30655622,-0.11405457,-0.2442641,-0.19412242,0.23971531,0.047409873,0.09490675,-0.070626415,0.16508596,-0.47538072,0.115922116,0.14972374,-0.063863195,0.25946456,-0.24292634,-0.25183502,-0.6314762,-0.25235787,-0.4013906,-0.36995983,0.21575768,-0.013581238,0.27686635,0.30901104,0.24858478,0.34616494,-0.14764626,0.112785675,-0.16528694,-0.26935044,0.43437955,0.39577866,0.52084166,-0.39404836,0.5838544,0.09320467,-0.09497661,0.07186967,0.10237876,0.378468,0.11292716,0.40033635,0.13624091,-0.1483229,0.14983793,1.088863,0.10071,0.6184841,0.0140353525,-0.07713846,0.231743,-0.038125243,0.14572828,0.02018909,-0.43271875,0.039461784,-0.212625,0.23279102,0.32964873,0.10164775,0.46110293,0.019920353,-0.400104,-0.05208389,0.10986584,0.054503866,-1.3555633,0.14233966,0.24166271,0.8956009,0.44020352,0.08358063,0.006899029,0.80965036,-0.15140118,0.09954995,0.27181622,-0.15903161,-0.38074747,0.4699364,-0.7607192,0.48977828,-0.1065768,-0.102567986,-0.04535877,-0.08745616,0.4109961,0.7653602,-0.22935179,-0.03408293,0.08924447,-0.375245,0.20779867,-0.40526453,0.19188523,-0.51600957,-0.33433074,0.6684571,0.5553172,0.46245125,-0.16656373,-0.07466928,0.12635168,-0.09661317,-0.06957719,0.06445496,-0.08944927,0.08142858,-0.4941317,-0.28517362,0.5168475,-0.12316416,0.16400085,0.18692799,-0.07245203,0.28953695,-0.08886234,-0.19837794,-0.05752558,-0.67945594,0.03808754,-0.11459809,-0.53585935,0.646722,-0.055901337,0.060602553,0.25944844,0.02381364,-0.34881932,0.43957645,0.1661249,0.6402763,-0.06945413,-0.050546367,-0.33499864,0.2915883,0.14065109,-0.17527132,0.18344977,-0.22808851,0.20820653,-0.548885,0.506128,-0.18967767,-0.17734292,-0.047964115,-0.14053433,0.13593504,0.61772484,-0.075226255,-0.13352357,-0.07494099,-0.26153347,-0.3617343,-0.059864573,-0.19214915,0.15671323,-0.014565569,-0.24517858,-0.09147833,-0.22636683,-0.20437123,0.24280278,0.05152723,0.21275647,0.3834497,-0.03889378,-0.38437694,-0.109086476,0.124288835,0.52050316,-0.10102205,-0.23316121,-0.17868793,-0.40069333,-0.42979285,0.5322426,-0.009131568,0.3425127,-0.029279198,-0.25261825,0.93771404,-0.082771935,1.0606743,0.09689097,-0.28191173,0.048801363,0.41234466,-0.025004659,0.07088997,-0.34543937,0.662787,0.46924093,0.00028315187,-0.0096931625,-0.4044424,0.042718988,0.31215557,-0.17556909,-0.24455823,-0.04280961,-0.6888209,-0.04021006,0.24606612,0.16947167,0.24907576,-0.15589686,0.18567681,0.3662665,-0.02380838,0.16863933,-0.5348748,0.06467463,0.2684405,0.3121807,0.098232165,0.11570292,-0.43640354,0.26257688,-0.35117745,0.09419044,-0.029320598,0.14177403,-0.1019479,-0.30980793,0.19702376,0.13899925,0.34177676,-0.4440009,-0.24984105,-0.30893967,0.5518504,0.2735776,0.23589255,0.5313344,-0.08897005,-0.014401691,0.040132586,0.47456455,0.7620999,-0.15456775,-0.050996512,0.4286871,-0.3644729,-0.7432103,0.39242712,-0.27247706,0.2259494,-0.026955035,-0.28503403,-0.5482987,0.18637227,0.32091925,0.020703586,0.18627922,-0.4846315,-0.089739546,0.27870277,-0.3155443,-0.20247634,-0.21713789,0.077605926,0.5531046,-0.13239273,-0.0052585984,0.046340723,0.32110834,-0.21233113,-0.30057213,-0.19548114,-0.39529613,0.33939832,-0.02547124,-0.276791,-0.1773723,0.056656342,-0.44075865,0.123419695,0.18674874,-0.22983514,0.024555266,-0.15568998,0.09786188,0.67785615,-0.16559693,0.15591024,-0.502439,-0.4221796,-0.7603652,-0.213454,0.3423429,0.100219086,-0.1032819,-0.74465173,-0.117025495,-0.12243058,-0.14940678,-0.05391604,-0.5793744,0.4875075,0.07821659,0.0432314,0.09822183,-0.7878369,0.119687356,0.22600596,-0.21061902,-0.5097968,0.46106032,-0.26588634,0.90088433,0.0448882,0.07672101,0.14143707,-0.35609648,0.26022193,-0.34697834,-0.24301597,-0.6209666,-0.01755313 -237,0.43638,-0.13999018,-0.41481283,0.00067459315,-0.22628573,0.23859379,-0.10752074,0.26619557,0.23456396,-0.48267213,-0.12208838,-0.16097513,-0.01599891,0.15108141,-0.11544009,-0.49988243,-0.010816395,0.17792954,-0.41314703,0.44888186,-0.36345798,0.5112325,0.13756384,0.19449356,-0.015470548,0.27988535,0.14482868,-0.08608677,-0.26553774,-0.24948277,-0.28046206,0.17228992,-0.46162495,0.2969361,-0.19022226,-0.37396023,-0.034425378,-0.31411654,-0.29590362,-0.5065065,0.26576322,-0.7217269,0.4017013,0.061983977,-0.17431895,0.2507979,0.026506769,0.19013461,-0.07683318,0.038230296,0.06904342,-0.18598461,-0.09488899,-0.28544107,-0.20364091,-0.3118783,-0.6054931,0.08172325,-0.48175558,-0.07568474,-0.3628385,0.13686608,-0.3048713,-0.11271063,0.040908337,0.27474523,-0.3225855,0.114239015,0.024384592,-0.2612258,0.01868898,-0.3714787,-0.12544855,-0.015614892,0.31046477,-0.26727274,-0.08490967,0.22101416,0.20609467,0.525416,0.038309958,-0.096061654,-0.4247158,-0.038195383,0.18817271,0.54232043,-0.048147976,-0.28426617,-0.06955062,-0.17924313,0.07925222,-0.025691288,0.16278,-0.11320257,-0.15806638,0.020209944,-0.258233,0.3250496,0.45584145,-0.46980223,-0.33774784,0.3431397,0.58536655,-0.06592051,-0.18006301,-0.025821792,0.045219302,-0.39490685,-0.10595035,0.09254245,-0.09091205,0.48634365,-0.064158276,0.3913769,0.5736159,-0.2356925,0.101992846,0.18562137,-0.010634646,-0.17161094,-0.031340234,-0.057127785,0.09236098,-0.42376342,-0.047994275,-0.15948485,0.9013547,0.08218352,-0.77471167,0.42435673,-0.46843365,0.0924347,0.024144167,0.47441202,0.62651724,0.36363062,0.24181525,0.6333208,-0.42483097,0.0012827112,-0.13211969,-0.32886252,-0.050059047,-0.21676722,0.07595108,-0.5208879,-0.025816875,0.17269431,0.038796272,0.09036807,0.5962087,-0.41612265,-0.116831936,0.15002765,0.8451766,-0.26964802,-0.22295497,0.74280614,1.0418189,0.8697714,-0.06769402,1.0590153,0.21793206,-0.21169662,0.014445654,-0.47629255,-0.5486134,0.24633925,0.24399115,0.10449261,0.19690251,0.15124235,0.08225517,0.3357385,-0.31977445,0.14472114,-0.13087991,-0.030502,0.122983,0.054051634,-0.3376638,-0.2905993,0.10565443,-0.03944508,0.26776385,0.30261418,-0.23727076,0.47515196,0.097552285,1.5491103,0.0068150247,0.16365083,-0.016979376,0.39430055,0.14088261,-0.04512038,-0.13921702,0.14452489,0.2550123,-0.02450956,-0.44650063,0.036983218,-0.1517144,-0.50978655,-0.19636194,-0.2786687,-0.26156142,0.059304815,-0.39335623,-0.18234941,0.007621863,-0.5291993,0.44439772,-2.8207793,-0.16114746,0.0046486715,0.32377344,-0.29482365,-0.4197395,-0.15932025,-0.46297947,0.3436353,0.30702624,0.40430504,-0.54268664,0.43413258,0.3789265,-0.4336823,-0.26702687,-0.4396012,-0.019560274,-0.09600491,0.32490328,0.098459825,-0.17546546,-0.033045854,-0.055362258,0.42330083,-0.20424625,0.006717133,0.3327836,0.37880436,-0.04439407,0.32822004,0.12402432,0.48401204,-0.3209396,-0.22265889,0.43653408,-0.3918524,0.25204295,-0.16656879,0.1708373,0.23207948,-0.39974114,-0.865028,-0.6561136,-0.2576631,1.263595,-0.03796653,-0.36313137,0.18751357,-0.21256375,-0.35706067,-0.094077155,0.44520822,-0.021691512,-0.009374251,-0.7566219,0.053720884,-0.11013162,0.24287224,0.033581637,-0.08495731,-0.38797125,0.7534137,-0.097029634,0.41946888,0.23825347,0.32537916,-0.28827652,-0.2720124,0.18581073,1.0912226,0.23711495,0.12265158,-0.2807972,-0.28086078,-0.25505885,-0.17498474,0.054916237,0.42594975,0.5295797,0.05246889,0.052099835,0.2956845,-0.021735007,0.05275954,-0.16229261,-0.18960777,-0.16455682,-0.061800115,0.6237017,0.6304894,-0.0914656,0.48375574,-0.09754533,0.21320473,-0.25556752,-0.36587647,0.5978604,0.7780417,-0.09210837,-0.19904771,0.5151769,0.43623313,-0.20256475,0.34637123,-0.63794476,-0.51855296,0.3488366,-0.26357976,-0.3526524,0.15699165,-0.35716507,0.12548111,-0.7836215,0.19160937,-0.18433394,-0.46615192,-0.55643463,-0.13337724,-3.725108,0.0979087,-0.086682186,-0.13839011,0.077215634,-0.058342535,0.08898343,-0.55200315,-0.2598829,0.020120064,0.042197667,0.73901594,0.024216177,0.21005961,-0.34719372,-0.26770565,-0.38394484,0.1418788,0.028507296,0.3307419,-0.05399395,-0.34387496,0.08889455,-0.24833645,-0.23966263,-0.020131094,-0.5540624,-0.5065735,-0.1293628,-0.3038893,-0.34360543,0.6548873,-0.49996573,0.07333328,-0.25924915,-0.030610846,-0.11926945,0.34482735,0.1335102,0.039651744,0.13731349,-0.17543027,0.103042655,-0.36962894,0.47843155,0.108624406,0.36209366,0.6562966,-0.17297404,0.110145964,0.50908124,0.5799037,-0.02539103,0.8975596,0.31718817,-0.11254149,0.25245038,-0.18285741,-0.25920728,-0.5103608,-0.19126013,-0.043787237,-0.45317847,-0.4783549,-0.13818344,-0.32403633,-0.7905317,0.45341438,0.074017145,0.12655383,0.017460395,0.42788312,0.41838145,-0.13092309,-0.15191674,-0.11244125,-0.062501796,-0.37400904,-0.41700986,-0.61292315,-0.51754636,0.12474156,0.8326145,-0.16900086,-0.001323172,0.0928054,-0.15156971,-0.0008376581,0.09907929,0.26394925,0.11454026,0.3516226,-0.062338296,-0.61978394,0.57505375,-0.23895206,-0.09140999,-0.61245584,0.08283542,0.49172217,-0.6107926,0.32281655,0.31304947,0.06582812,0.2354425,-0.2707639,-0.14786525,-0.19810374,-0.24716496,0.19708085,0.18727128,-0.669272,0.3682766,0.17575036,-0.1941673,-0.71667725,0.4405737,-0.008506275,-0.3089912,-0.076821625,0.22176807,0.20051636,-0.008518358,-0.05552849,0.097018346,-0.49908128,0.3479715,0.16357836,-0.038149234,0.5316537,-0.26006737,-0.21571398,-0.5333464,0.02278986,-0.44566363,-0.30514804,0.06884362,0.2611098,0.15828148,0.34800646,-0.04416291,0.31349605,-0.36260456,-0.013548854,0.011850621,-0.09200709,0.28878635,0.25991753,0.48302937,-0.36198044,0.520758,-0.0470743,0.038368646,0.02019213,0.070895016,0.47783908,0.10943138,0.37702852,0.06256393,-0.28356427,0.29103225,0.757211,0.22226553,0.34134555,0.07185777,-0.23836644,0.23184907,0.10071973,0.08954717,-0.029461252,-0.48331696,0.06752331,-0.14439051,0.11849845,0.39833084,0.02944228,0.39642173,-0.21517716,-0.18971276,0.13527273,0.20356536,-0.11345129,-1.0373728,0.21641573,0.10015384,0.80035245,0.34204036,-0.012947276,0.14972101,0.64854324,-0.25520685,0.11712054,0.11245419,-0.15227894,-0.47176307,0.46098775,-0.6768907,0.5794935,-0.08466156,-0.025414703,-0.010443538,-0.22313963,0.22890289,0.7259076,-0.09914307,0.014630163,0.080050714,-0.3466925,-0.037016843,-0.3238311,0.29384956,-0.5621053,0.013061878,0.73911434,0.46978608,0.40718192,-0.06527306,-0.0009146812,-0.06570667,-0.012332167,0.065254435,0.010301128,0.1787304,-0.12511566,-0.64777744,-0.14279453,0.59871536,0.11305463,0.23853958,0.11648774,-0.21632612,0.27714056,-0.109464355,-0.12929139,-0.18416713,-0.52065146,0.08625029,-0.283123,-0.39292118,0.46092027,-0.01299497,0.36369935,0.2015698,-0.018504279,-0.22581993,0.4294782,0.33052805,0.5949893,0.18755439,-0.124678545,-0.4149486,0.15660696,0.16712297,-0.22669761,-0.13128744,-0.18417566,0.15849964,-0.580229,0.258332,-0.15872802,-0.23565663,0.12932119,-0.2127272,0.086907424,0.538142,0.043471847,-0.04440224,0.1178258,-0.005841621,-0.26976985,-0.018562531,-0.1110772,0.3315635,0.15776572,-0.29147413,0.014285852,-0.24773487,-0.14433686,0.16268714,0.07291473,0.3421495,0.36348745,-0.00687434,-0.29439265,-0.032148894,0.14003067,0.50162935,-0.10032749,-0.029888174,-0.33061886,-0.39238006,-0.42411277,0.25926754,-0.11102772,0.09708009,0.12515897,-0.31090546,0.70295566,-0.12621881,0.9425603,0.1688495,-0.23787351,0.20110883,0.45966095,0.0852798,0.09018624,-0.3919351,0.8944801,0.5161325,-0.029441701,-0.21088336,-0.2694808,-0.036611516,0.09226946,-0.2698634,-0.26506332,-0.0072855502,-0.7510253,-0.22625835,0.20910873,0.27193722,0.15273523,-0.027852235,0.11044635,0.17699607,0.11827338,0.23103765,-0.5613738,-0.2681767,0.4541767,0.31775624,-0.118167095,0.15471978,-0.37824297,0.39887497,-0.58184105,-0.015539825,-0.2489398,0.12922154,-0.2635558,-0.25810724,0.32735556,0.24682339,0.41955218,-0.19517139,-0.32851282,-0.3706648,0.3522759,0.06523808,0.19028838,0.3995404,-0.16703613,-0.10166957,0.06011685,0.41395804,1.1349895,-0.29724666,-0.054329198,0.4725361,-0.23541775,-0.41407278,0.23248897,-0.31234768,0.20149885,-0.0047611096,-0.22671266,-0.39873776,0.31331328,0.17745993,0.13691387,0.13783811,-0.51397485,-0.2291181,0.17610474,-0.48510286,-0.2182658,-0.136988,0.1185342,0.63040817,-0.22152467,-0.16765714,0.039007246,0.49007398,-0.2522964,-0.47403008,0.020938788,-0.31221104,0.17866392,0.15979388,-0.22565769,-0.13216452,0.096098505,-0.3660982,0.013034539,0.27555585,-0.45367178,-0.011139842,-0.32983568,0.09662274,0.819456,-0.15470622,0.3087214,-0.55758536,-0.38992795,-0.87861836,-0.39855894,0.47595698,0.15891838,-0.12497292,-0.40650406,-0.12728682,-0.10620352,-0.22407396,-0.02871791,-0.54710144,0.43723482,0.2264713,0.25703952,-0.044351645,-0.7693779,-0.057904363,-0.020966738,-0.32990313,-0.62267405,0.43016073,-0.0263778,0.86771315,0.029174816,-0.021879299,0.42847472,-0.49878556,0.03128038,-0.21946125,-0.1350424,-0.75346375,-0.024991065 -238,0.21964554,-0.28227362,-0.482843,0.013751794,0.02459614,-0.026654245,-0.25895324,0.6054237,0.31187388,-0.2966067,-0.3044397,-0.13195105,-0.07856973,0.37422895,-0.17687981,-0.412482,-0.008759906,0.12094594,-0.25082514,0.5717358,-0.27618524,0.053426106,-0.012534936,0.47414434,0.23821743,0.09076238,0.16926579,0.112879865,-0.10878586,-0.16126658,-0.059215363,0.382768,-0.4175636,0.1473612,-0.44223085,-0.33837947,-0.13477623,-0.6556956,-0.4976621,-0.7626409,0.31601417,-0.8214143,0.45598245,0.08769097,-0.23706575,0.26448217,0.03146091,0.15754333,-0.07609554,-0.15266947,0.038974106,-0.20180541,-0.07784363,-0.01877963,-0.18859571,-0.17453885,-0.60113627,0.023864733,-0.42984918,0.008692701,-0.19452816,0.17331348,-0.34302345,-0.05664393,0.08840089,0.49529442,-0.37040356,0.031557575,0.08156844,-0.13083999,0.21422233,-0.6773827,-0.344744,-0.078325436,0.38431406,-0.17046528,-0.18034606,0.18634684,0.17711301,0.46646562,-0.23429756,0.004617249,-0.4436444,0.055820614,0.045484584,0.6266623,-0.2070998,-0.6865911,-0.10964054,-0.054277066,0.16390501,0.18195017,0.021354685,-0.12680879,-0.051370252,-0.1949652,-0.19879852,0.42580009,0.5382171,-0.13897507,-0.15603621,0.2459377,0.3950522,0.4644023,-0.13832536,-0.0331793,0.11094951,-0.6248713,-0.10302616,-0.20947309,-0.1803204,0.76003766,-0.104297124,0.40262413,0.37105343,0.016003335,-0.02628834,0.06259627,0.047745276,-0.20439868,-0.240436,-0.27512887,0.2747791,-0.33200866,0.3049402,-0.036686167,0.6056703,0.10234807,-0.727132,0.42824265,-0.4012716,0.17706394,0.05734312,0.5338164,0.77952605,0.24058478,0.5194758,0.69042236,-0.34953198,0.02040642,0.081070475,-0.23445934,-0.0069336295,-0.23614435,-0.13467866,-0.46122786,-0.06184717,0.034272105,0.060699493,0.3537053,0.4178481,-0.44196627,-0.16513604,0.3536822,0.8057053,-0.1090348,-0.009235665,0.7686467,1.1569347,1.0486773,-0.08143254,1.1207716,0.057055008,-0.22062378,0.13852562,0.092365086,-0.8423589,0.22708143,0.32563427,-0.119872905,0.30328658,0.11679254,-0.11043473,0.42406604,-0.5160907,-0.0592812,-0.117968984,-0.14621447,0.24116577,-0.15127142,-0.48051107,-0.184992,-0.15341358,0.04646786,0.07613122,0.2698321,-0.1863712,0.4405589,-0.05348596,1.4750015,-0.0595779,-0.05861729,0.112971164,0.5421855,0.26388538,-0.18432756,-0.056142177,0.25507855,0.36734983,0.09463004,-0.5266497,-0.00681976,-0.24190404,-0.31465372,-0.05442916,-0.2711459,-0.23592205,0.09423357,-0.31531823,-0.24438834,-0.156431,-0.3882077,0.4763951,-3.1279957,-0.15775819,-0.08313358,0.1845574,-0.15361744,-0.30572978,-0.26140884,-0.4182347,0.5437924,0.40662813,0.5015984,-0.5627375,0.03880747,0.42341623,-0.5652928,-0.13794005,-0.5479767,-0.053741198,0.027140781,0.4804124,0.17228232,-0.1431691,0.07646102,0.24475001,0.51282793,0.3023071,0.1118358,0.34421143,0.42129922,-0.10806664,0.23581243,-0.24644287,0.35867834,-0.39090946,-0.1846308,0.3905387,-0.31444564,0.3168397,-0.47050261,0.20410043,0.5362986,-0.37462536,-0.8126593,-0.5758627,-0.1241787,1.2635552,-0.027342834,-0.5151248,0.2696133,-0.43272552,-0.3239288,-0.21898215,0.77644986,-0.20402704,-0.053509522,-0.7187634,-0.1342411,-0.0722919,0.07725964,0.0021169707,-0.14954998,-0.5478401,0.64450616,0.080878876,0.36195898,0.47975025,0.090489,-0.24599327,-0.48568916,0.08832828,0.7432611,0.370916,0.2226821,-0.39176568,-0.014555818,-0.31896433,-0.0100459205,0.0055516423,0.5607732,0.5841524,-0.110129565,0.23194478,0.28093135,0.33447763,0.10643797,-0.108735375,-0.27617696,-0.2586902,-0.04293755,0.6413147,0.8649978,-0.20176655,0.10676362,0.064252906,0.100162126,-0.1555274,-0.2184496,0.53618234,1.0350643,-0.08829239,-0.31570005,0.6328959,0.46026012,-0.29959273,0.41044676,-0.54549366,-0.3042091,0.36067834,0.01602594,-0.62443894,0.20398183,-0.38656172,0.022335136,-0.7212639,0.10182709,-0.13400063,-0.32874814,-0.6535633,-0.11173547,-3.1320832,0.07373466,-0.1986805,-0.30925998,-0.28767493,-0.26083672,0.20709918,-0.39971498,-0.6087157,0.21714611,0.04436527,0.54008687,-0.19809346,0.034045514,-0.31237426,-0.39093986,-0.34878758,0.077119775,0.1290836,0.35784677,0.030485958,-0.37892914,-0.27429348,-0.29003355,-0.39274368,-0.046020467,-0.46854365,-0.26244125,-0.089876376,-0.4044931,-0.16465382,0.54516596,-0.38994455,-0.012391768,-0.2888029,-0.030731937,-0.15945838,0.19129854,0.049037512,0.1323785,-0.106042646,-0.16939257,0.056088746,-0.09838434,0.45840606,0.083284,0.1810105,0.40635493,-0.14369392,0.19159742,0.37332046,0.71049637,-0.37708202,1.1014323,0.5009933,0.03457148,0.22907078,-0.09645948,-0.27992937,-0.406654,-0.13973726,0.1724055,-0.42513156,-0.52430123,0.017936429,-0.3995172,-0.7836501,0.5217976,-0.116588764,0.37215984,0.12071215,0.08537365,0.5108335,-0.2626138,0.0021742533,0.007376107,0.03051725,-0.4443761,-0.33682773,-0.55677503,-0.5310984,-0.07695056,0.6731549,-0.19275011,0.10191231,0.311563,-0.31997627,-0.19605894,0.13763674,0.09419551,0.042320352,0.35028538,0.094951786,-0.7154939,0.5112203,-0.11517793,-0.2188195,-0.6010557,0.11798058,0.46529353,-0.56377155,0.71613127,0.51360685,-0.09194077,-0.3012242,-0.6238031,-0.31007996,-0.28474298,-0.18531992,0.32234588,0.36173713,-0.71630436,0.40221846,0.2339478,-0.1743568,-0.6863354,0.5208283,-0.055989195,-0.11970409,0.04087838,0.34878838,-0.024312416,0.06610246,-0.023844272,0.23390807,-0.15235622,0.28741595,0.0041265837,-0.058408562,0.33516538,-0.266255,-0.010434779,-0.5989898,0.12564187,-0.56444496,-0.24577598,0.37242332,0.1288206,0.19949055,-0.019424967,0.113981746,0.26484078,-0.23724282,0.09263575,-0.0970006,-0.23025633,0.23446767,0.47818354,0.6939021,-0.39792904,0.60502416,0.0017355854,-0.18010573,0.034556407,0.0839758,0.31101334,-0.012171361,0.35714248,0.003254056,-0.21038657,0.15554954,0.82120156,0.25524786,0.30168155,0.012543763,-0.02563087,0.44189158,0.111628674,0.1774437,-0.085291624,-0.6533554,-0.05162151,-0.5704884,0.16285141,0.45314622,0.042538125,0.20095284,-0.23339249,-0.23664378,0.022436911,0.30881867,0.19567966,-1.1389391,0.179842,0.12830256,0.8873046,0.42151126,-0.03700375,0.025945565,0.75319767,-0.0014735857,0.11537498,0.50779605,0.11193237,-0.47300777,0.50057083,-0.5553302,0.50255704,0.06442125,0.037287146,0.10532856,-0.14205875,0.4148191,0.60937005,-0.13429219,0.009340875,0.13507278,-0.22907068,0.023536017,-0.44217005,0.18434854,-0.4254926,-0.16455477,0.6148089,0.7169984,0.17141448,-0.20834094,0.052590568,0.00043349713,-0.06760082,0.016279718,-0.01642007,0.09950926,-0.29493165,-0.84711725,0.13572903,0.44796196,0.07077681,0.036475714,-0.055153325,-0.18942426,0.20488088,-0.16658217,-0.06974737,-0.20070155,-0.6953676,-0.06868353,-0.2962104,-0.516879,0.57624036,-0.14460938,0.31663898,0.2788839,0.1116691,-0.28610894,0.3276631,-0.19455247,0.82743263,-0.025608564,-0.0050300304,-0.35389265,0.05582379,0.21710652,-0.22303586,-0.2777044,-0.35621476,-0.14519612,-0.30156574,0.4670569,0.044133324,-0.22263145,0.11911573,0.01898739,0.07640191,0.65515405,-0.032502007,-0.06916621,-0.050168633,-0.044406414,-0.29963598,-0.17952351,-0.17064522,0.34085214,0.2504036,0.07763373,-0.18148798,-0.12515445,-0.17086339,0.24534963,-0.058741793,0.3660448,0.3417648,0.1048427,-0.18915212,-0.10878388,0.1339808,0.69596416,0.118413635,-0.25803795,-0.24983741,-0.51696116,-0.3797743,0.27743116,-0.06938747,0.38671803,0.2106639,-0.0832837,0.40957892,0.111045875,0.9060165,0.09223786,-0.41249064,0.15859209,0.48556533,-0.051666755,-0.18034202,-0.36340192,0.81759673,0.32167906,-0.08912226,-0.077569745,-0.27157316,0.21187903,0.026995482,-0.11914677,-0.11324254,0.015273272,-0.66062015,0.036958024,0.19322127,0.3101226,0.23393963,-0.13424969,0.056223582,0.2464621,0.0773397,0.21636182,-0.3643097,-0.25206387,0.41672292,0.24362469,-0.117847525,-0.036341056,-0.4015877,0.34299365,-0.44225708,-0.29995224,-0.42362344,0.14628112,-0.41452944,-0.36009452,0.21362366,-0.08818444,0.52314484,-0.2932609,-0.20755072,-0.3364106,0.30956924,0.2088935,0.14100459,0.28890723,-0.19963403,0.007465651,-0.00603137,0.46526286,1.018332,-0.3629379,-0.034695942,0.3549403,-0.23811941,-0.5434117,0.24278061,-0.56358653,0.39461938,0.07449674,-0.071837716,-0.5879683,0.077660464,0.054845527,0.09953638,-0.036041316,-0.6386753,-0.26469433,0.11459917,-0.11281233,-0.17176634,-0.39177546,-0.14984636,0.530461,-0.20800517,-0.4134868,0.049071044,0.3094655,-0.0990391,-0.6159366,0.18556829,-0.30665135,0.21099831,0.025186008,-0.36378184,-0.26261708,-0.06476948,-0.5864525,0.30256143,0.18389325,-0.31680235,0.021489287,-0.30172005,-0.07874727,1.0760652,-0.44298783,0.31548443,-0.3598975,-0.44854212,-0.81862444,-0.28776395,0.43237743,0.18313205,0.16744532,-0.5758417,0.109453104,-0.25250298,-0.083604336,-0.07385028,-0.24130225,0.4549179,0.114332296,0.44825277,-0.26170418,-0.6299284,0.22016345,0.006058616,-0.16986042,-0.47178555,0.4759995,0.18927467,0.937529,0.06350758,0.10106223,0.24093068,-0.44975662,-0.17636967,-0.10166901,-0.1801598,-0.50876707,0.19296311 -239,0.45631498,-0.43142018,-0.45334986,-0.000255924,-0.3718727,-0.16152655,-0.16190965,0.46206158,0.2304882,-0.10957685,-0.2607488,0.13966396,-0.034697726,0.30763704,-0.21957901,-0.59618163,-0.17381158,0.022587858,-0.5975861,0.7709812,-0.5286955,0.20345658,0.071844764,0.35727164,0.38472888,0.33990434,0.107432045,-0.028544022,-0.14871019,-0.17184326,-0.1485153,0.11593513,-0.58400923,0.29717973,-0.36622936,-0.28830707,-0.024725242,-0.545356,-0.28199095,-0.85105604,0.12430465,-0.83701485,0.33735484,7.5386124e-05,-0.2770394,-0.18152659,0.07176017,0.24799758,-0.4414667,-0.15615112,0.20984581,0.037381608,-0.045545194,-0.22595072,8.995258e-05,-0.38793918,-0.5120693,-0.118006185,-0.5601796,-0.1276653,-0.06135616,0.23501706,-0.293856,-0.025555234,-0.36860693,0.5707109,-0.32649451,-0.03439448,0.16445395,-0.11843775,-0.0058644367,-0.671997,-0.10249631,-0.16003093,0.28523907,0.13611665,-0.25048757,0.39569044,0.21434046,0.16400626,0.23983772,-0.17118219,-0.2750867,-0.08606425,0.2401743,0.31882238,-0.15873893,-0.41341898,-0.3070262,-0.027575364,0.44135427,0.3114854,0.1495128,-0.2203649,0.04324972,-0.15510112,-0.23256454,0.66709816,0.54981,-0.14597464,-0.18083285,0.39068285,0.52116245,0.46028548,-0.3555409,-0.23881385,0.0029895352,-0.54185015,-0.05189628,0.34227753,-0.056928314,0.6405358,-0.10557008,0.09039719,0.76855576,-0.11972873,0.043145206,0.16127355,0.21230195,-0.24916913,-0.3943664,-0.30124182,0.16002597,-0.65050507,0.13876615,-0.24587758,0.7850504,0.14152458,-0.7212534,0.3348091,-0.5601345,0.18072301,-0.0837754,0.5096321,0.5885679,0.61470723,0.2574475,0.65577734,-0.1212337,0.14370371,-0.102212854,-0.33369386,0.09528232,-0.15136386,-0.099895805,-0.35745656,-0.032954983,-0.31646156,0.13468295,-0.11497963,0.52323085,-0.4779075,-0.2568194,0.17413053,0.60136086,-0.22727098,-0.1932784,0.70924973,1.1337142,1.1279913,0.025089923,1.0904868,0.23405951,-0.1563388,-0.013577645,-0.13892107,-0.7273162,0.1657113,0.19728312,-0.501947,0.26088765,-0.06244072,-0.18324521,0.39004156,-0.11276225,0.0065510273,-0.14416756,0.18739833,0.08001624,0.0077288975,-0.4534092,-0.4281762,-0.13299681,-0.0020838953,-0.0016272939,0.27148765,-0.3472624,0.23652223,0.0725576,1.1765918,-0.022515627,0.031169113,0.100274034,0.5995754,0.28280348,-0.19165784,0.13396761,0.407598,0.34553733,-0.045436364,-0.6458405,0.24233572,-0.43703476,-0.49350268,0.019211601,-0.41017658,-0.16691016,0.1245338,-0.57895696,-0.092182264,0.017188344,-0.10660566,0.5114515,-2.7147665,-0.18199012,-0.10560823,0.17644289,-0.3283587,-0.25177363,-0.04631863,-0.53832537,0.12455625,0.19476,0.64504254,-0.6604305,0.47366634,0.57468784,-0.58115107,-0.09639073,-0.76953626,-0.07936393,-0.03029774,0.47688878,-0.052630644,0.16380869,0.04629038,0.018788131,0.7341869,0.20227417,0.26050282,0.46399757,0.3382664,-0.001727769,0.5837405,-0.016028615,0.56714606,-0.4873179,-0.11456709,0.36259466,-0.4847331,0.5132231,0.035654232,0.09721574,0.76244015,-0.33953717,-0.86254406,-0.37817138,-0.26218107,1.214419,-0.3979203,-0.31183746,0.20553705,-0.22426353,-0.0544412,0.010905064,0.480233,-0.10260184,0.035455752,-0.54657656,-0.020991338,-0.10526277,0.18654929,-0.03128787,-0.05932057,-0.13197139,0.8142074,0.0678387,0.6743567,0.18877071,0.2674216,-0.2069597,-0.442975,0.0062526236,0.69430864,0.43116724,0.020877592,-0.1730621,-0.33237684,-0.14026935,-0.07489216,0.09614428,0.6192834,0.6090359,-0.16751117,0.17141311,0.39670107,0.053971484,-0.0071462486,-0.06320139,-0.34196752,-0.22396871,0.22723651,0.4164875,0.99971443,-0.13843803,0.41346726,-0.13503386,0.20759764,-0.1041747,-0.52708983,0.6358678,0.66170204,-0.21125391,-0.010875628,0.42375186,0.6377725,-0.39866126,0.4896456,-0.49365756,-0.2143783,0.7125809,-0.11648084,-0.39565834,0.1653002,-0.23347029,-0.060113303,-0.7265609,0.4557036,-0.49439174,-0.44326442,-0.52395636,-0.06245047,-2.9299102,0.23640245,-0.261187,-0.20261548,-0.3707913,-0.10908369,0.26477242,-0.8259166,-0.58169115,0.1188929,0.26093376,0.45947587,-0.10271985,0.032528345,-0.26617426,-0.32861125,-0.062663406,0.26537043,0.11565702,0.3622478,-0.31956115,-0.37463462,-0.060721293,0.00063662115,-0.3246101,0.19464119,-0.596115,-0.37259835,-0.027715357,-0.59323764,-0.2588351,0.5841642,-0.36455756,-0.038015056,-0.05491378,0.15229955,-0.24128345,0.15209465,0.013974831,0.15925978,0.06338392,-0.16616613,0.022070222,-0.2757281,0.3797372,0.032679096,0.46894738,0.25548804,-0.12127583,0.112514846,0.49822026,0.6232894,-0.23678783,1.1012782,0.2367958,-0.17378369,0.32000622,-0.061693147,-0.40410295,-0.6809838,-0.2698724,-0.054669023,-0.24079657,-0.44813177,0.16629292,-0.19095455,-0.9170953,0.55004895,-0.075162634,0.47007972,-0.08842595,0.057788096,0.5183604,-0.22179747,0.060141202,-0.03531186,-0.05400155,-0.5451057,-0.37991613,-0.7969822,-0.37318328,0.033186417,0.8471562,-0.3354659,-0.07157469,-0.0814217,-0.49233177,0.014094614,0.09426911,-0.04528836,0.24229883,0.35252267,0.06475,-0.5236603,0.44366473,-0.045844767,-0.025889067,-0.028239928,0.24612783,0.84086156,-0.7148219,0.62562644,0.38408,-0.026289139,-0.26514742,-0.6327063,-0.24480994,-0.014292797,0.017876199,0.4975662,0.3156009,-0.84443885,0.47045612,0.245797,-0.54486424,-0.7117253,0.45571467,-0.032202758,-0.102699526,-0.31359842,0.38699788,0.12940437,-0.04271915,-0.07199608,0.3248194,-0.35929102,0.14233822,0.14053813,-0.21975985,0.07342301,0.10131732,-0.19899262,-0.61831474,0.24024671,-0.54584694,-0.2931333,0.48790395,-0.12862922,-0.08447135,0.019673029,0.23036979,0.38789293,-0.31401473,0.15507682,0.049068727,-0.2689628,0.4841185,0.52541584,0.67280287,-0.38594306,0.50371367,0.28583634,-0.08948974,0.2932852,0.07318508,0.21947877,0.007695299,0.47622272,-0.10156758,-0.038237218,0.30115932,0.7161658,0.2794713,0.5503107,0.009033099,-0.14522544,0.3892206,0.09210614,0.3059188,-0.18988273,-0.5157694,0.054147363,-0.06466844,0.17772055,0.5061914,0.08569845,0.2301511,0.038164344,-0.018582977,-0.06503617,0.27870238,-0.025013823,-1.0759734,0.31242687,0.29651207,0.88463783,0.47524944,0.11206427,-0.22141393,0.72149825,-0.30466172,0.09495079,0.498878,0.18853357,-0.52881217,0.6270325,-0.47304037,0.48538405,-0.18010877,0.025651451,0.23660165,0.11426936,0.43550655,0.64612716,-0.18179783,-0.07191337,-0.05431616,-0.3658164,-0.08422108,-0.41065982,0.19171621,-0.4059887,-0.47624284,0.8679973,0.54553103,0.34531072,-0.13600203,-0.0660764,-0.00068319764,-0.2090168,0.32855526,-0.07681053,-0.01904992,0.06710733,-0.60093194,-0.14498448,0.6311019,-0.38243893,0.18935595,-0.21465851,-0.24824955,0.14384213,-0.12358184,-0.013164883,-0.009703407,-0.8975064,0.10659076,-0.15499227,-0.48903587,0.31297487,-0.37344804,0.14009494,0.21543702,-0.1262462,-0.23558146,0.26501685,0.114189826,0.7443939,-0.27197745,-0.12168658,-0.30768412,0.15123042,0.1631654,-0.12342106,0.1237636,-0.32750654,-0.053010233,-0.60228455,0.47569194,-0.15036342,-0.35807827,-0.1393769,-0.26215458,-0.14821619,0.77030444,-0.05572858,-0.21543446,-0.3971148,-0.08092542,-0.44435757,-0.07657829,-0.15366536,0.13897473,0.41165975,-0.04830951,-0.0607607,-0.30545744,0.12609217,0.36092255,0.04896305,0.5022474,0.2937636,0.07409695,-0.27503794,0.0065509905,0.21905906,0.33843488,0.2978978,0.07797592,-0.47624972,-0.18987788,-0.44172207,0.1200334,-0.12660712,0.26279375,0.0212314,-0.31088817,0.8159843,-0.08320128,1.2626078,-0.0055133286,-0.51885134,0.005206952,0.67367786,-0.10507402,0.05135198,-0.3975724,1.0011357,0.46858236,-0.17923895,0.013409243,-0.5956684,-0.1690292,0.24567583,-0.3396303,-0.049408086,0.04800117,-0.31789726,-0.041111372,0.12093287,0.2209287,0.09908947,-0.065404415,-0.21297786,0.29869795,0.17206591,0.39660108,-0.69521344,-0.30391997,0.081432804,0.14603545,-0.07905297,0.19401306,-0.43080002,0.36806455,-0.74991167,0.34776598,-0.44426057,0.2564646,-0.42693684,-0.41826746,0.13173008,-0.040148318,0.4611234,-0.43189436,-0.4653996,-0.13691033,0.49617723,-0.022035269,0.27509525,0.64448166,-0.34440154,-0.035650752,0.09511674,0.67486453,0.9783341,-0.48414734,-0.29142812,0.26127785,-0.44513658,-0.8068607,0.23848502,-0.39087075,0.057743482,-0.1461875,-0.3934471,-0.5477938,0.29557914,0.16056651,0.18521911,0.08861171,-0.8327424,0.11584469,0.22885285,-0.22759357,-0.2617215,-0.15380792,0.2909865,0.7518167,-0.3303148,-0.5479049,-0.08416868,0.08763492,-0.12021875,-0.38223508,-0.03540159,-0.34904596,0.20168616,0.00744385,-0.2877309,-0.14067763,0.18781526,-0.46264464,0.05483705,-0.014101198,-0.26509225,0.101098776,-0.12047453,-0.011547109,0.9858796,-0.18516773,0.022257127,-0.4677784,-0.566325,-0.68339646,-0.6298497,0.102416515,0.15213156,0.016914772,-0.50681406,0.09478522,-0.026685933,-0.24390341,-0.079353824,-0.57877064,0.55415064,0.15190776,0.30097598,-0.2679219,-0.90066093,0.24892852,0.21115668,0.07654514,-0.5862899,0.49633276,-0.16755168,0.83589566,0.16504961,0.04082729,-0.13218926,-0.4346423,-0.032435205,-0.39377168,-0.14459927,-0.6390579,0.2167643 -240,0.4771988,0.057409976,-0.513218,-0.17004666,-0.5466808,0.31844968,-0.24977626,0.0002293246,0.27228484,-0.48180085,-0.11616104,-0.024909627,-0.20784198,0.17227052,-0.28102052,-0.8110243,0.22898588,0.19032991,-0.59906673,0.53426975,-0.42078882,0.45894504,0.10760451,0.21098468,-0.058738027,0.1308029,0.36148936,-0.013627553,-0.070508376,-0.23626985,-0.21582563,0.12550603,-0.8612162,0.3533912,-0.23935102,-0.32716325,-0.01456417,-0.35963827,-0.3790018,-0.77943414,0.45868367,-0.9383774,0.49935317,0.052453082,-0.29188153,-0.020030996,0.15070985,0.08055399,-0.22641645,0.12318782,0.42204976,-0.391969,-0.05543929,-0.16012219,-0.46036837,-0.503687,-0.6423974,-0.06765218,-0.6487564,-0.08371433,-0.5030718,0.34248587,-0.20792906,-0.16306002,-0.33110598,0.37769803,-0.39063898,0.18187131,0.19694214,-0.24817307,-0.0025652477,-0.5488958,-0.16081722,-0.11105605,0.16505973,0.058289234,-0.12256468,0.40321556,0.21048658,0.6262301,0.26298755,-0.4729628,-0.23704304,-0.18379907,0.35763183,0.4069008,-0.031300224,-0.06734158,-0.2855733,-0.09907324,0.4043577,0.3307738,0.019896507,-0.39464003,0.11981773,-0.014994187,0.048792865,0.6098436,0.58129406,-0.46021292,-0.10059845,0.37630028,0.30987096,0.085130766,-0.25636858,0.03949574,-0.19693495,-0.61770886,-0.3316544,0.36115828,-0.105771124,0.6462498,-0.16662577,-0.0038157362,0.79294425,-0.15771921,-0.007323299,-0.07130139,-0.1367176,0.2407573,-0.20353463,-0.012031828,0.379836,-0.5692903,0.13766837,-0.34354278,0.61008316,0.17368834,-0.8561471,0.43115765,-0.42244953,0.18928035,0.033197887,0.7311114,0.6632042,0.62123626,-0.015586249,1.0082521,-0.66895086,0.071610615,-0.02707285,-0.29416206,-0.07230097,-0.08214157,0.106403604,-0.27283046,0.22196706,-0.20937423,0.12350377,-0.10244333,0.38163903,-0.38002974,-0.21497688,0.06490583,0.62030417,-0.34531942,0.024907658,0.7781046,1.1115555,1.0661924,-0.034502797,1.4532576,0.19419052,-0.03836912,-0.307461,0.10340253,-0.6510749,0.06893228,0.3080613,0.3432643,0.27805287,0.2084522,-0.1410513,0.20881794,-0.2960684,-0.21284369,-0.002913836,0.2580466,-0.04367435,-0.03552438,-0.29030308,0.0053961235,0.2219411,0.23786433,-0.058500998,0.26895648,-0.1993337,0.38126987,0.14182998,0.8943058,-0.006970857,0.25669163,0.105900764,0.37966797,0.25231403,-0.055805642,0.13287067,0.3541675,0.214951,0.07216913,-0.53366953,-0.10601183,-0.56518424,-0.331553,-0.15739529,-0.4549417,-0.21251951,0.021405885,-0.36378232,-0.10608823,0.07183199,-0.3221219,0.46581915,-2.3839421,-0.068466865,-0.2162822,0.43531016,-0.27425593,-0.23779674,-0.30924663,-0.60566175,0.44487414,0.19915275,0.41938004,-0.52048266,0.5081858,0.48244092,-0.45310387,0.013578511,-0.7050523,0.077751085,-0.020051822,0.59661186,-0.021756878,-0.17818229,-0.20372905,0.14734681,0.7697269,0.3703238,0.11777574,0.2901702,0.48191914,-0.11902915,0.5031986,-0.03301167,0.5967015,-0.4317138,-0.056115184,0.5701261,-0.36074144,0.5157784,-0.2400438,0.008726268,0.49898747,-0.52369916,-0.6676383,-0.59577554,-0.4063769,1.2971984,-0.3998095,-0.71605796,0.23422335,-0.024641166,-0.22780003,-0.011426194,0.40913492,0.11618563,0.2875852,-0.57275486,-0.051028576,-0.21980643,0.21484546,-0.106010094,0.28698757,-0.42383584,0.8595332,-0.13214777,0.4673064,0.32628027,0.23614573,-0.10465659,-0.33103207,0.12907043,0.7646493,0.48196068,0.1295758,-0.18631743,-0.12094965,-0.17366898,-0.33500257,-0.051652968,0.8703895,0.5342162,-0.14003761,0.049923994,0.37532124,0.10499253,0.08539523,-0.20575006,-0.41716725,-0.19925103,0.06924434,0.45724586,0.66225994,-0.27827057,0.11081378,-0.004349617,0.16750054,-0.1690074,-0.67507327,0.42220777,0.77132094,-0.09424352,-0.086631246,0.6403017,0.53960174,-0.46793467,0.49588028,-0.56447774,-0.43943834,0.7136182,-0.008566597,-0.63413817,-0.08125075,-0.3131903,0.018065836,-0.5233845,0.40787813,-0.383029,-0.72332275,-0.30656824,-0.24744733,-3.27054,0.18912451,-0.26465192,0.18204378,-0.25872535,-0.14492545,0.33645263,-0.42155474,-0.5093041,0.05972325,0.023780346,0.3634544,-0.23380767,0.2365278,-0.40169206,-0.24780175,-0.204216,0.46889117,0.17645486,0.09932707,-0.19653296,-0.20720267,0.06559594,-0.110347904,-0.36214307,-0.15904991,-0.47818503,-0.3883121,-0.12167937,-0.38122702,-0.07793792,0.6666544,-0.38986084,-0.0029940945,-0.20362023,0.07985466,-0.21212256,0.07328451,0.030878078,0.3834997,-0.022095246,-0.11098759,-0.16520774,-0.2897086,0.53541046,0.2013141,0.2786154,0.51881987,-0.22849618,-0.009557494,0.2783357,0.5484354,-0.0550546,1.0451874,-0.008722501,-0.09965547,0.5189722,-0.034749538,-0.6208887,-1.0229636,-0.18237843,-0.06942695,-0.49330202,-0.34182605,0.008551769,-0.41551003,-0.924746,0.48019883,0.12504175,0.45757008,-0.3018799,0.19400562,0.391572,-0.3698105,0.033513103,-0.10770268,-0.25685725,-0.5249205,-0.49487782,-0.781045,-0.59877735,-0.079857655,0.92745453,-0.16714264,-0.19504678,0.17445648,-0.24003282,0.16195181,0.14573832,0.15207942,0.011949986,0.4385274,0.203196,-0.7033439,0.51817626,-0.031244865,-0.03796918,-0.5610348,0.31326264,0.797595,-0.5497089,0.54328835,0.45650727,0.09633635,0.067122445,-0.8303658,-0.25734365,-0.066792265,-0.19429061,0.6412181,0.2817339,-0.7664444,0.34072012,0.14197877,-0.3011724,-0.6179816,0.61614764,-0.06370602,-0.1220699,0.04857025,0.43733844,0.018957058,-0.053694624,0.14488657,0.3275055,-0.53581,0.46747527,0.27792972,0.0013630049,0.35223442,-0.09989228,-0.54311156,-0.80507183,-0.03293717,-0.6320739,-0.31471178,0.22537287,-0.19409569,-0.1619626,0.24544814,0.15065685,0.62548393,-0.107729815,0.34201744,-0.0702327,-0.37271732,0.5730514,0.5385123,0.51380694,-0.67450583,0.7176698,0.12064042,-0.079740725,0.19834973,0.28841615,0.45570898,0.09557944,0.4970054,-0.21135947,0.13754568,-0.072261795,0.5878593,0.24073415,0.3534047,0.187608,-0.13428964,0.55818427,0.13590169,0.092157654,-0.26271594,-0.6257466,-0.04930591,-0.027817076,0.044415466,0.33067614,0.08696524,0.35894093,-0.054191343,0.06244751,-0.032199595,0.07968388,0.04012179,-1.1590881,0.27561942,0.14212592,0.77520037,0.49165192,0.13351579,-0.10293991,0.42825374,-0.27611065,0.02231637,0.55829,-0.042488594,-0.35926118,0.47942734,-0.45189294,0.3535997,-0.16276638,0.07402895,0.2744585,0.26692817,0.491632,0.89269394,-0.17236371,-0.0040815896,-0.10942463,-0.2318087,0.2317063,-0.23304081,0.17797266,-0.40884024,-0.4442224,0.6074656,0.5309048,0.4102895,-0.40667185,-0.10918387,-0.0027712542,-0.29030094,0.096011095,-0.13944961,-0.12983519,-0.15632914,-0.37791532,-0.08479268,0.59254014,-0.1804115,-0.021664288,0.009074762,-0.19103995,0.30727416,0.053224362,0.057764,-0.07262255,-0.92436224,-0.010131938,-0.299422,-0.55274755,0.3631586,-0.23304775,0.2044331,0.22560059,-0.035084628,-0.18460667,0.15734586,0.038151402,0.6170177,0.07568358,-0.05219839,-0.40189594,0.15466918,0.18345891,-0.31441107,0.25942963,-0.20086323,0.12987062,-0.63035107,0.4086493,-0.42601654,-0.182402,-0.029898789,-0.101761356,-0.15740803,0.50448054,-0.019992527,-0.05373105,0.28699794,-0.013031743,-0.33790097,-0.092453055,-0.27108273,0.105242886,-0.13561274,0.07334102,-0.042126488,-0.119306765,-0.10298227,0.18583734,0.20635895,0.0011607079,0.11904423,-0.20626627,-0.49540207,0.122515365,-0.04866637,0.5768299,0.06787628,-0.012030118,-0.022960778,-0.4360375,-0.38563973,0.54952604,-0.15909645,0.1507849,0.13633355,-0.3419614,0.8361686,0.2544199,1.1621116,-0.05299226,-0.46486935,0.00016220871,0.7497603,0.010116888,0.02364253,-0.5127886,1.0183977,0.56398016,-0.11856733,0.033028103,-0.47322825,0.0059196097,0.10760429,-0.41508886,-0.20302422,-0.14979266,-0.5182098,0.013491397,-0.0136087835,0.31144336,0.049038988,-0.10786266,-0.22180223,0.24976644,0.37628174,0.43694258,-0.6052407,-0.41303104,0.28312764,0.1586993,-0.08209423,0.19113758,-0.21554255,0.3616871,-0.68308914,0.04717343,-0.32163188,0.0152969705,-0.2944173,-0.2994461,0.21992268,-0.07283943,0.35748848,-0.41987947,-0.3338017,-0.2308891,0.2838972,0.33425647,0.33832052,0.86598,-0.15971048,-0.121548675,0.09245709,0.50698704,1.1938607,-0.055195432,0.017475052,0.29076672,-0.534112,-0.66150874,-0.0015659715,-0.6838935,0.07430845,-0.077739574,-0.4418942,-0.1756537,0.14550614,-0.0019584554,-0.20375372,0.19554766,-0.8955552,-0.16087179,0.15775323,-0.22047794,-0.32720068,-0.16949244,0.45336244,0.73252106,-0.29302984,-0.3480382,0.03574707,0.2245157,-0.2341797,-0.84395367,0.18221149,-0.26513085,0.28113386,-0.011945673,-0.32767716,0.10748954,0.2228761,-0.5473112,0.04791295,0.27733913,-0.37235007,-0.040025912,-0.26616672,0.0012234321,0.8310942,0.04105616,0.050453775,-0.432697,-0.5714796,-0.87693185,-0.364734,-0.06688982,0.2552916,0.049883217,-0.3244396,-0.2019918,-0.28771737,0.12189441,-0.0746462,-0.4450372,0.40708664,0.16994448,0.532511,-0.18597879,-0.90277004,0.09018815,0.22379425,-0.02851565,-0.37959513,0.4843572,-0.24392734,0.67013705,0.09503389,-0.058160853,-0.05490303,-0.89951193,0.24316107,-0.34841177,-0.041214734,-0.56173855,0.16271567 -241,0.44735798,-0.25732672,-0.39130914,-0.100416474,-0.29813108,0.16214289,-0.10766074,0.5601056,0.19205491,-0.24233967,0.012071016,-0.19015245,-0.05572181,0.43342447,-0.06404069,-0.4361613,-0.023567624,0.1426099,-0.6970082,0.5675093,-0.34939697,0.17754227,-0.13887402,0.4954254,0.349335,0.32220212,-0.07946491,-0.022714976,-0.23257798,-0.061257984,-0.1278387,0.34456035,-0.35775578,0.08854146,-0.26133594,-0.42964086,-0.032158628,-0.26396298,-0.4666573,-0.736981,0.26831385,-0.7420521,0.60004526,-0.20355974,-0.17160837,0.34348428,0.15809982,0.32211372,-0.30802545,-0.062074736,0.09375102,-0.04615152,0.12968537,-0.36341396,-0.30119422,-0.6626722,-0.46050262,-0.07394628,-0.5388757,-0.030974008,-0.23611802,0.14853846,-0.20373946,-0.012747431,-0.005554533,0.36661306,-0.4560091,0.32429492,0.10774195,-0.0021471104,-0.041071363,-0.57512605,-0.25177318,-0.22291884,0.32169282,-0.12583739,-0.17850766,0.4838031,0.23855747,0.29514658,-0.13737673,0.0019276103,-0.37611353,-0.026759284,-0.032835167,0.4460702,-0.12942368,-0.6838674,-0.13548127,-0.028538946,0.18857758,0.1347287,0.22843583,-0.284121,-0.003354299,-0.03203803,-0.289864,0.402085,0.4482848,-0.31363198,-0.1476752,0.43171158,0.46746796,0.29252094,-0.44346187,-0.11232183,-0.056193147,-0.508937,-0.060080927,0.17621464,-0.1960598,0.57670426,-0.1654267,0.23129316,0.6414931,-0.13290094,-0.13352245,0.0017071088,0.21429135,-0.15224266,-0.121001616,-0.3690948,0.0753336,-0.30149794,0.0826947,-0.12360503,0.55195224,0.13265024,-0.59559494,0.30552483,-0.5287363,0.08349835,-0.07883733,0.3567752,0.57935333,0.46500415,0.21471828,0.50667137,-0.16744156,0.11165988,-0.118955255,-0.26231262,0.013789757,-0.2814168,-0.12858953,-0.55168396,0.06056684,-0.10761418,-0.052025683,0.13892028,0.5209853,-0.33929288,-0.13196181,0.19703327,0.9118267,-0.3476867,-0.1362728,0.76817346,0.9821277,0.9667062,-0.019494932,0.92064553,0.27658048,-0.22497752,0.19347581,-0.24631919,-0.56676,0.27291533,0.2494841,-0.30453035,0.33421233,0.03268,0.059750628,0.32806906,-0.32344094,-0.04179888,-0.21545358,0.14409214,0.28067622,-0.0030940732,-0.2897837,-0.41235748,-0.15433955,-0.110011384,0.121636346,0.29702836,-0.29060465,0.51756155,0.16770688,1.6430535,0.25101683,-0.15693027,0.079470254,0.77846605,0.21502012,-0.05064253,-0.004777555,0.36363643,0.37464777,-0.022586528,-0.5154802,0.1816697,-0.2960287,-0.5705742,-0.15428953,-0.35254282,-0.23457308,-0.07813285,-0.68858147,-0.23455808,-0.09063517,-0.045867436,0.5282043,-2.6988504,-0.13140613,0.024254192,0.33972067,-0.18518186,-0.3709189,-0.1605583,-0.47620624,0.3051529,0.26514336,0.3477815,-0.6397768,0.49323374,0.2358359,-0.5181371,-0.08874061,-0.5583376,-0.1302153,-0.005301507,0.37649065,-0.15569551,0.22401644,0.2947076,0.04224764,0.49661005,-0.1850626,0.20616928,0.35178307,0.39097923,0.06871168,0.43860582,-0.0005806764,0.56516963,-0.49309433,-0.20936324,0.24812698,-0.44944063,0.25402826,-0.027956402,0.1730999,0.669612,-0.4525519,-0.8777004,-0.5219682,0.19154923,1.1212552,-0.21835785,-0.34603876,0.1717706,-0.47602987,-0.21328624,-0.28583625,0.46668682,-0.086367816,-0.10814626,-0.6904157,-0.05440625,-0.14309965,0.1572974,-0.11105351,-0.023240464,-0.13385563,0.5351948,0.09415556,0.37344787,0.11439483,0.09253227,-0.4508619,-0.43737376,0.0975002,0.5728839,0.31767327,0.09039366,-0.07662085,-0.21368937,-0.34659755,-0.008844582,0.16937596,0.4619552,0.33891147,-0.09811199,0.25664043,0.2761148,-0.09292765,0.03040662,-0.33947876,-0.17231007,-0.18197493,0.23892158,0.41234696,0.61950094,-0.12092093,0.6671478,-0.12623613,0.25840372,-0.22690922,-0.46206754,0.5029128,1.1289004,-0.32126006,-0.34517518,0.2967881,0.6050602,-0.24215478,0.43004546,-0.5120237,-0.36910644,0.53495663,-0.1897164,-0.24746437,0.22801541,-0.20429793,0.15669681,-0.82474834,0.13583972,-0.1919341,-0.3756057,-0.61073506,-0.08061618,-2.3015368,0.0038326106,-0.07577639,-0.27113017,-0.18563904,-0.21878259,0.13733934,-0.5878389,-0.48415202,0.14057866,0.14162272,0.65586096,-0.0092824185,0.10751451,-0.25940624,-0.24601607,-0.21235174,0.23099846,0.24534774,0.43191305,-0.1424613,-0.6294286,-0.102096766,-0.16903046,-0.33608344,0.17606421,-0.71422917,-0.22121023,-0.10443127,-0.5128731,-0.37586877,0.6151155,-0.31971112,0.042886034,-0.19438453,-0.0007687072,-0.09357419,0.22721392,0.16820611,0.025118904,0.009086991,-0.15645352,0.2835689,-0.25290605,0.12660375,-0.055165213,0.23183458,0.27543637,0.094686605,0.08594527,0.42366135,0.6672504,0.010711006,0.7605326,0.51663274,-0.14039704,0.3587707,-0.15355642,-0.24764344,-0.5038599,-0.22696355,-0.06605431,-0.31120014,-0.50326186,-0.0066856663,-0.4097891,-0.75869876,0.5142845,-0.012784744,0.11733851,0.0299487,0.37109888,0.67379695,-0.20915219,0.08851029,0.011350044,-0.21413985,-0.50090903,-0.38235474,-0.5883617,-0.3755309,0.18216224,1.0366666,-0.1239672,-0.056016695,0.13098624,-0.44748318,-0.04567446,0.35734928,-0.12713265,0.12559293,0.4573625,-0.29480234,-0.6414637,0.45075732,-0.18632504,-0.12763204,-0.49339014,0.2557394,0.4698596,-0.6745288,0.5640558,0.24089037,0.031676475,-0.20169163,-0.42843854,-0.124789946,-0.1598001,-0.048612054,0.2429326,0.25811833,-0.73156244,0.3443274,0.20009258,-0.33608347,-0.5537549,0.5996536,-0.022927126,-0.45767346,-0.1461498,0.30979264,0.2825412,-0.069956355,-0.427527,0.09172181,-0.44625384,0.20196104,0.30922166,-0.09245172,-0.014025155,-0.22271414,0.0009724339,-0.77918726,0.12469186,-0.24482517,-0.3646348,0.45866394,0.026916634,0.28840077,0.0486591,0.08034695,0.0701714,-0.30612713,0.075944744,-0.1919478,-0.1879188,0.23800698,0.31709856,0.52754027,-0.4441648,0.63575524,-0.026342718,-0.16530167,0.28916034,0.1767873,0.3537013,0.23438503,0.45685098,0.19877812,-0.33789295,0.25910613,0.74195385,0.35926315,0.32075742,-0.067836694,-0.22047657,0.20242848,0.052955586,0.18446021,-0.0142412335,-0.3900077,-0.1044633,-0.20186952,0.20360072,0.40213317,0.016758975,0.3014997,-0.0616106,-0.24722528,0.026001243,0.14274721,0.008144506,-1.3867753,0.30133066,0.43929434,0.8157419,0.23466915,0.08498004,0.021621577,0.75650686,-0.24125877,0.022354634,0.40339097,-0.026114384,-0.4562219,0.52607197,-0.6437439,0.53619474,0.013031068,-0.01865505,0.11022698,0.092011236,0.35408428,0.8094879,-0.0812678,0.03559963,0.306143,-0.5520529,0.026141118,-0.22224276,0.04264665,-0.59171146,-0.19322078,0.56504405,0.5181772,0.3803664,-0.2276075,0.034765556,0.059987027,-0.28143656,0.19773626,0.16832729,0.14219493,-0.20362554,-0.6353699,-0.11260243,0.5058974,-0.3427388,0.13952665,0.1810921,-0.28873616,0.39957097,-0.1862641,0.043108013,-0.106262565,-0.613697,-0.010669363,-0.26915345,-0.26732144,0.57965434,-0.036456402,0.20853661,0.32582155,0.059176326,-0.3698057,0.5278024,0.057257924,0.8389612,-0.23129943,-0.16429928,-0.38259953,0.060174424,0.15854833,-0.084082946,-0.053790748,-0.1736111,-0.097282045,-0.39566797,0.3274325,-0.017009199,-0.11146851,-0.33435497,-0.080648154,0.096174985,0.48511896,-0.018167783,-0.16966964,-0.2150779,0.06500601,-0.5103277,-0.14104173,-0.1378579,0.35969684,0.27765653,0.07886873,-0.17376706,-0.0719237,0.11483293,0.52489924,-0.20360462,0.44978732,0.3884496,0.10876741,-0.23305258,-0.24337721,0.13760425,0.5053768,-0.14812444,0.060891353,-0.35469463,-0.4241298,-0.40499833,0.08096872,-0.17603397,0.33564988,0.10665644,-0.31676248,0.84474456,-0.23907706,1.1618665,0.080533005,-0.3608435,0.31075108,0.4965506,0.04845098,0.08499601,-0.25714308,0.8283841,0.5473278,0.0626158,-0.18598649,-0.26904973,-0.02535392,0.13042913,-0.24955352,-0.20670602,0.09454679,-0.47772515,-0.21728082,0.15999022,0.13002762,0.38593563,-0.19666886,0.10908155,0.26903197,0.013505017,0.1859117,-0.43815288,-0.24864128,0.28542063,0.19302781,0.011779022,0.12694916,-0.50348914,0.3604207,-0.32269207,0.045354236,-0.29450962,0.24029793,-0.21233925,-0.29520482,0.21096215,0.0651357,0.23709042,-0.4203681,-0.2520559,-0.33522597,0.61305547,0.13833946,0.20577605,0.40233362,-0.24923255,0.014288461,-0.05166087,0.46667162,0.7914823,-0.3763029,-0.23076563,0.3400046,-0.3962768,-0.6637219,0.42289478,-0.26229504,0.24289991,0.1595222,-0.017370733,-0.6363665,0.5089609,0.14733076,0.19072977,-0.1251707,-0.58184946,-0.073718116,0.30583343,-0.21112005,-0.24106379,-0.4115809,0.11011613,0.4024144,-0.26381442,-0.26691502,0.15209478,0.21380405,-0.21460848,-0.34012598,-0.057827998,-0.5082249,0.29469877,0.13789797,-0.33072102,-0.22893658,-0.01850875,-0.37126678,0.2265363,0.1525586,-0.31673834,0.06460599,-0.28972948,0.010332723,0.9845997,-0.2980205,0.0977127,-0.49678987,-0.51019806,-0.81467086,-0.39546698,0.33482128,0.24666208,-0.12765594,-0.7189309,-0.0017770608,0.038192336,-0.4805241,-0.10434372,-0.41567275,0.5179883,0.0046740402,0.152361,-0.008966287,-0.80271786,0.22312604,0.07618957,-0.20700172,-0.6046472,0.3723832,-0.19878162,0.9491885,0.060024284,0.14093368,0.28001937,-0.27593288,-0.1891258,-0.27965516,-0.14380574,-0.46806195,0.053092785 -242,0.34012136,-0.24788068,-0.5807623,-0.15011083,-0.20274098,0.02163153,-0.113279864,0.60572845,0.2882323,-0.24506597,-0.17581923,-0.2179843,0.110098004,0.35290113,-0.07012465,-0.35857543,-0.049844943,0.17637551,-0.5389082,0.4518211,-0.3011809,0.07122416,-0.29824343,0.5406646,0.47172683,0.4254089,-0.11627312,-0.035607625,-0.11924226,-0.011647516,-0.054430038,0.42675242,-0.28446537,0.07492246,-0.18685825,-0.19124565,-0.11667906,-0.6041325,-0.39181426,-0.63982815,0.300585,-0.79976785,0.53958595,-0.027903596,-0.20901065,0.31682253,0.19152042,0.42093936,-0.33080822,-0.27759576,0.20867835,0.063448705,-0.046466358,-0.1350691,-0.17095837,-0.23212467,-0.41851196,-0.054967914,-0.33446297,-0.14707455,-0.31087545,0.100236535,-0.26918676,-0.118378885,-0.031228364,0.47673914,-0.46586603,0.19788066,0.18886884,-0.09267944,0.24318811,-0.48785958,-0.19482109,-0.022035265,0.40287635,-0.22900367,-0.25809094,0.1768966,0.28247496,0.17722073,-0.16545656,0.067818634,-0.3194591,-0.0003985848,0.29057625,0.53308874,0.04682644,-0.48949426,-0.0965228,0.095313564,0.045551386,0.29791507,0.38439035,-0.32121637,-0.20603159,0.04891636,-0.1222653,0.42460498,0.34165055,-0.1516706,-0.12562563,0.38104683,0.54015094,0.39619866,-0.22214855,-0.0037629518,-0.039411426,-0.46873686,-0.07290653,-0.18065336,-0.22097516,0.5206779,-0.09205818,0.24620886,0.6020754,-0.10495627,-0.10384285,0.14627388,0.08203517,-0.2891911,-0.27900094,-0.20560081,0.08096974,-0.33219337,0.23367272,0.05795526,0.5273047,0.16356874,-0.71849304,0.28660932,-0.5024889,0.16733989,-0.21826437,0.27429724,0.70213455,0.31732535,0.44509622,0.6641516,-0.38713166,0.10807699,0.055264957,-0.5950245,0.12820688,-0.18965176,-0.12201027,-0.6399105,-0.0074837506,-0.06416044,-0.2124583,0.122252926,0.2250975,-0.4887795,-0.023806939,0.18253168,0.7604969,-0.29216403,-0.1372863,0.7653325,1.0077229,0.8686368,0.00992386,0.8683316,0.07010601,-0.14542028,0.3554631,-0.3146045,-0.7201718,0.33588377,0.38652593,-0.3759214,0.19729602,-0.0126792705,0.11230375,0.448706,-0.2687742,0.14426513,-0.043643337,0.07554014,0.21489368,-0.1949068,-0.43998235,-0.18024953,-0.14192852,0.007947455,0.09929645,0.062357213,-0.22741196,0.39369062,-0.06758902,1.8280611,0.12127478,-0.04239797,-0.008194291,0.57903475,0.25996026,-0.23251788,-0.24383582,0.5308499,0.29431692,0.10065571,-0.5952138,0.18751185,-0.12360894,-0.33768377,-0.11881166,-0.5377441,-0.16547167,0.02958494,-0.39394793,-0.03707799,-0.2502787,-0.18816127,0.5297497,-3.1382573,-0.16278636,-0.06742758,0.3504263,-0.121297814,-0.3523204,-0.0013708727,-0.36275056,0.27722064,0.29787365,0.54318196,-0.57366836,0.3014996,0.38359505,-0.6264553,-0.19224909,-0.50714844,-0.096864514,0.06698392,0.32633194,-0.0579996,0.034401182,0.19192539,0.18672328,0.32265553,0.0065121567,0.15248777,0.27529466,0.42603287,0.06692913,0.62152445,-0.13368337,0.5723451,0.029189494,-0.20711078,0.14283893,-0.15073168,0.39529935,-0.01707782,0.10733472,0.5058636,-0.34917566,-0.9768955,-0.5336518,0.03155407,1.217275,-0.25346115,-0.2176139,0.27460855,-0.57597405,-0.24928999,-0.01487823,0.47482434,-0.004232645,-0.1865441,-0.8121401,0.015833136,-0.006411643,-0.09590692,-0.03036818,-0.18809524,-0.39430144,0.60900164,0.02346802,0.47660303,0.29181856,0.09829893,-0.31705135,-0.36567715,0.075534925,0.6447175,0.27327126,0.07116423,-0.12478387,-0.21276008,-0.44246393,-0.032572635,0.14151004,0.5252759,0.41746706,-0.068156436,0.28368825,0.14272676,0.00068776525,0.07341989,-0.22961368,-0.21369968,-0.10569726,0.057264138,0.41793898,0.664131,-0.19725645,0.64231455,0.0062807268,0.20256877,-0.060251202,-0.46844286,0.43136317,1.101836,-0.18196972,-0.42703348,0.57305497,0.4278688,-0.25510284,0.299754,-0.38102317,-0.013413838,0.52142155,-0.25980404,-0.33719444,0.29105848,-0.19991449,0.121773496,-0.94617355,0.008086113,-0.17122732,-0.45746097,-0.33433944,-0.05400181,-3.229176,0.12981652,-0.20766568,-0.30919668,-0.11925639,-0.2624621,0.05823209,-0.5907842,-0.661396,0.22169693,-0.024164204,0.72697985,-0.21079303,0.018064419,-0.17227213,-0.28406015,-0.31303683,0.09104432,-0.03383554,0.5871582,-0.052282695,-0.4671186,-0.1955379,-0.069988325,-0.40772465,0.03112164,-0.46565285,-0.3031549,-0.07061783,-0.5019454,-0.2046882,0.5744219,-0.29346514,-0.025437668,-0.10804715,0.04023901,-0.06161517,0.31524616,0.10889696,0.05366193,0.107108615,0.03173082,0.16594055,-0.24376003,0.26378557,-0.029165579,0.32271287,0.16996126,0.09946326,0.31545162,0.4444065,0.6538249,-0.19169988,0.7677126,0.5358611,-0.11284311,0.22056873,-0.37754244,-0.2712863,-0.396995,-0.20133962,-0.061846707,-0.41115445,-0.5170972,-0.17452683,-0.4130488,-0.6878467,0.4709997,0.0950794,0.2913279,0.019404858,0.08942624,0.615878,-0.056133755,0.029864801,-0.03626058,-0.18828546,-0.6767588,-0.14791934,-0.50151974,-0.3942046,0.21643445,0.8228626,-0.35926566,0.023547124,-0.032726724,-0.4226363,0.079030566,0.21507014,-0.08480541,0.25683454,0.349719,-0.16487324,-0.5779833,0.28834534,-0.09877161,-0.15679899,-0.5945479,0.1476394,0.36460042,-0.447509,0.7001074,0.16496055,-0.021693144,-0.20434104,-0.3838003,-0.19840182,-0.0434477,-0.17000282,0.4917465,0.3525655,-0.7667991,0.2728046,0.3679873,-0.18798468,-0.7077934,0.630578,-0.17163883,-0.11128533,-0.15293802,0.15930036,0.20054163,0.043186463,-0.30595535,0.21922107,-0.28291515,0.19388452,0.24198906,-0.12032141,0.18605891,-0.11958146,0.072529964,-0.67484254,0.031043371,-0.46168038,-0.25776514,0.3399906,0.15876998,0.22734849,-0.014035745,0.18212621,0.24062207,-0.3621908,0.014224352,-0.062015202,-0.22399668,0.19225256,0.46051905,0.4561147,-0.562875,0.43948105,0.007977094,-0.14415511,0.2188013,0.05783101,0.32198662,0.11807851,0.38575497,0.2083917,-0.26906678,0.22472098,0.6666259,0.15884869,0.44781065,0.030374119,-0.046607226,-0.033527654,0.02725151,0.3000996,-0.014480655,-0.646134,0.13491777,-0.27651104,0.23104985,0.5101475,0.23948438,0.12926647,-0.024316134,-0.5235151,0.069735356,0.2282751,0.11910323,-1.1553541,0.36570325,0.24294814,0.88402075,0.40013131,-0.027953668,-0.050515104,0.64652854,-0.12143544,0.11313528,0.36589774,-0.01876228,-0.6462018,0.44875103,-0.81342596,0.5004899,-0.0017771934,-0.13282396,0.104658954,-0.00026064258,0.3985842,0.6701325,-0.23972288,0.059107516,0.18876825,-0.327384,0.0848139,-0.41905943,-0.14569065,-0.6750924,-0.15311925,0.48819107,0.64374316,0.26158836,-0.15104954,0.045176268,0.049875677,-0.16280535,0.054106764,0.18124747,0.21152811,-0.03553697,-0.7452056,-0.1909789,0.39171743,-0.09926277,0.23295961,-0.14509888,-0.18601653,0.24831179,-0.1873678,0.008236312,-0.0038118276,-0.6833743,-0.00944254,-0.21380655,-0.59800833,0.4771783,0.12975347,0.23472282,0.26271605,0.04078088,-0.11586899,0.5982515,-0.054861076,0.93172705,-0.14028218,-0.029371561,-0.46650887,0.219564,0.2449771,-0.098873325,-0.19012323,-0.45544645,-0.007103409,-0.49805933,0.49554005,0.18185885,-0.44266754,-0.18136522,-0.012794209,0.103179336,0.6219379,-0.16783014,-0.11938759,-0.22616564,-0.1925412,-0.29575577,-0.20308091,-0.11985513,0.22592787,0.16054425,-0.0719374,-0.21328269,-0.06733875,-0.025092691,0.4410601,-0.14558318,0.59082454,0.36848417,0.05656141,-0.24822254,-0.3676307,0.35172155,0.48517624,-0.04126944,-0.089210905,-0.3200768,-0.44453487,-0.42736492,0.077874474,-0.12704921,0.4110064,0.16080867,-0.10577794,0.5178593,-0.06686036,1.1545147,-0.014608179,-0.34825888,0.36108536,0.5414807,0.08920509,-0.14171773,-0.3013639,0.7405506,0.37341648,-0.020804556,-0.039253063,-0.4395652,-0.06364318,0.15650742,-0.13565327,-0.05005438,0.014181143,-0.49230447,-0.24258253,0.16355266,0.12231525,0.47318083,-0.13965662,0.17215006,0.23869082,-0.08175266,0.1847275,-0.25194043,-0.47015718,0.18172558,0.32147995,-0.004190462,-0.013969561,-0.6132129,0.46282983,-0.28117582,-0.012680439,-0.2306448,0.33024067,-0.266967,-0.29827574,0.17220435,-0.0150074875,0.2638465,-0.25980988,-0.35161194,-0.36331585,0.5695493,0.1107846,0.1016976,0.3739886,-0.26468882,0.10910922,0.026429256,0.45028016,0.7629114,-0.086507656,-0.061974756,0.4589095,-0.32039595,-0.62305194,0.38032183,-0.36377963,0.38859582,0.13146403,-0.05951127,-0.66617835,0.25239462,0.1063151,0.03549879,-0.15653583,-0.48061314,-0.2589623,0.3676127,-0.22212568,-0.07859165,-0.30382282,-0.13377053,0.46916264,-0.26218352,-0.37458256,0.12505879,0.01882672,-0.045137357,-0.36997774,0.011812491,-0.3046077,0.32616162,-0.09598919,-0.44567588,-0.26327303,0.0012343952,-0.31111592,0.34758696,0.038345367,-0.27563885,0.21386692,-0.29812333,-0.10698081,1.0548147,-0.32673857,0.17065795,-0.407887,-0.45123625,-0.71889085,-0.2744706,0.38762093,-0.09589753,0.009453739,-0.6941067,0.08670758,-0.18098845,-0.19469324,-0.21804474,-0.36797696,0.4178176,0.031094356,0.40372738,-0.020794561,-0.83492535,0.27255994,0.06526792,-0.26306266,-0.7419581,0.58509386,-0.1120646,0.7531087,0.044563286,0.21209107,0.28373763,-0.29821077,-0.15743275,-0.2166167,-0.13886514,-0.5168198,0.034883894 -243,0.7473613,-0.12828133,-0.77294934,-0.043843877,-0.66733617,0.16519654,-0.38588524,0.13388823,0.228141,-0.5605262,0.1564959,-0.031126713,-0.21231037,0.12563287,-0.17853534,-0.67654353,-0.08011447,0.17325637,-0.7728109,0.8194837,-0.4148583,0.28941357,0.19025895,0.17268343,-0.10351919,0.16750751,0.1937135,-0.110399544,-0.28347418,-0.15419427,-0.061032042,0.14831448,-0.63032115,0.60752714,-0.024072459,-0.16988042,-0.06119167,-0.29076135,-0.270965,-0.7381163,-0.03880115,-0.6120508,0.44889292,-0.061494604,-0.36726683,0.06742786,0.07015176,0.22858341,-0.040448178,0.011744275,0.25563386,-0.4021422,-0.5885527,-0.31812203,-0.3860498,-0.7656189,-0.6289305,-0.22544609,-0.5411204,-0.082661875,-0.20214713,0.3934093,-0.31748578,-0.1705011,-0.29988647,0.649241,-0.31880066,0.07390348,0.2881298,-0.08986114,0.18456912,-0.6727494,-0.04211766,-0.0884907,0.009232495,0.28094134,-0.2856366,0.25596142,0.07206196,0.378707,0.12266288,-0.44352248,-0.41897252,-0.15151334,0.34466577,0.39995617,-0.13008839,-0.12393357,-0.2703714,-0.057714853,0.38538602,0.34439513,0.18164149,-0.4708712,0.12965141,-0.21000504,-0.23502018,0.38803485,0.4737395,-0.1970005,0.11148476,0.40601406,0.3189883,0.09101939,-0.35460445,-0.04664562,-0.26821396,-0.47331557,-0.12313767,0.3909226,0.064973876,0.26557273,-0.105513684,0.0639736,0.5150486,-0.11523342,-0.17912543,0.10862448,0.017760636,0.25725758,-0.23888652,-0.08808082,0.30975035,-0.6542386,-0.19890372,-0.517811,0.73392415,-0.12391434,-0.68293494,0.25003698,-0.51144934,0.16694103,0.08998928,0.7265458,0.8938196,0.677395,0.031079117,0.9173323,-0.29736754,0.29031983,-0.35628605,-0.24121198,0.10272554,-0.1228727,0.5554238,-0.39271975,-0.15993138,-0.11554158,-0.14512363,-0.27101022,0.7894553,-0.564495,-0.31663784,0.0009933631,0.73688686,-0.31876463,-0.11059538,0.6977903,1.1520059,1.0432367,0.32275447,1.173952,0.44191965,-0.12530789,-0.17229971,-0.3098046,-0.53699017,0.3358626,0.23944439,0.14158854,0.40564823,0.03592035,0.058414236,0.4412643,-0.14760192,-0.26876423,-0.20615579,0.4880357,-0.04360096,-0.16193141,-0.35593772,-0.119441144,0.25929508,-0.0463216,0.23409039,0.38227692,-0.169921,0.50266504,0.26358438,1.1596273,-0.21725261,0.06273804,0.12896065,-0.04201096,0.206948,-0.19456221,0.080784515,0.5030368,0.19411787,-0.12047761,-0.5041112,-0.018250234,-0.16902551,-0.5407432,-0.13426927,-0.22386312,-0.20111644,-0.093184665,-0.2208309,-0.29244646,0.02401265,-0.52448124,0.38921434,-2.2530034,-0.034986686,0.0046217917,0.20475791,-0.28095508,-0.43954545,-0.14302984,-0.5285446,0.57705766,0.26811385,0.3744875,-0.36881498,0.3094565,0.3799198,-0.6457273,0.02420748,-0.7501003,-0.06777088,-0.17837554,0.4878545,-0.05263211,-0.27291864,0.14437285,-0.036137223,0.51029134,-0.009457417,0.1134692,0.41552848,0.46331337,-0.14706412,0.5179531,0.13250534,0.5533025,-0.35011023,-0.14652121,0.44173154,-0.4246465,0.40073448,-0.115710355,0.047967438,0.5364141,-0.23242283,-0.5091487,-0.4273955,-0.14759627,1.0765773,-0.4699438,-0.61007154,0.060142938,-0.0225963,-0.18069862,0.107806236,0.3490416,-0.028936792,0.08346542,-0.6028862,-0.049475987,-0.04874845,0.30877176,-0.11687279,0.20182374,-0.50778645,0.75244015,-0.17180735,0.53858614,0.580655,0.35925215,-0.26071766,-0.35970435,0.21767136,0.77138346,0.39254203,0.021414125,-0.37122366,-0.26117358,-0.096227266,-0.07962305,0.010388419,0.5825209,0.6054489,-0.13938135,-0.05156074,0.30429676,-0.3370182,0.13017415,-0.2019099,-0.36741048,-0.28453845,0.1512111,0.30308348,0.5795912,0.08099711,0.60145503,0.010708791,0.3391097,-0.14416252,-0.6755851,0.49144,1.2826592,-0.27460903,-0.24035726,0.53976125,0.4589829,-0.057861175,0.66474026,-0.55583215,-0.37475297,0.4067666,-0.10798985,-0.5010771,0.1802601,-0.29621506,0.18648614,-0.8330454,0.41456184,-0.39569974,-0.54764265,-0.70962,-0.13813391,-1.6189901,0.35794517,-0.3242276,0.028542832,-0.19479182,-0.20960681,0.20067401,-0.4988446,-0.5700279,0.17358986,0.23809108,0.3830296,-0.024988273,0.04642284,-0.31914207,-0.4837745,-0.02840589,0.41793036,-0.013023426,0.12745593,-0.17271648,-0.3882152,0.14200447,-0.13519715,-0.17260942,0.024431512,-0.59362465,-0.2477127,-0.22756936,-0.40805268,-0.240944,0.59293735,-0.42341122,0.04430135,-0.16310622,0.08430606,0.20171405,0.1530185,-0.02458295,0.22626221,0.2217162,-0.19987327,-0.19662826,-0.387826,-0.062444407,0.22330116,0.14766371,0.70843285,-0.14844906,0.22414891,0.37175968,0.7069551,-0.05130796,0.8859048,0.038428806,-0.25843367,0.32500148,-0.23553433,-0.14825344,-0.9172198,-0.31858715,-0.016836872,-0.52153915,-0.49820787,-0.11147489,-0.35595986,-0.779156,0.60940284,0.073249534,0.1680185,-0.0036900744,0.540163,0.42529225,-0.19769886,0.004551642,-0.17248067,-0.33609417,-0.33352312,-0.6001539,-0.785546,-0.5027852,0.19805014,1.3555739,-0.2453965,-0.18381329,-0.002607314,-0.2617886,0.012353007,0.2699979,0.04200429,0.11827068,0.28266582,0.3364141,-0.44519126,0.4940579,-0.049270514,0.12022112,-0.2869297,0.42625698,0.792219,-0.68989235,0.3575369,0.44413668,0.15282811,-0.04001197,-0.8147565,-0.14617285,0.29252484,-0.2309141,0.4292689,0.39331067,-0.68375015,0.5304607,0.27094954,-0.30519107,-0.8591005,0.17715573,0.049568925,-0.27576166,0.13370104,0.45842543,-0.0065482715,0.10139462,-0.3102238,0.27836198,-0.5528065,0.29969582,0.05831257,-0.08121667,-0.067425705,-0.07144405,-0.41615626,-0.9713753,0.0062182792,-0.6083521,-0.3869574,0.31263942,-0.07745349,0.102174014,0.219612,0.28753898,0.4561831,-0.3352375,0.1132726,-0.29416236,-0.1475613,0.5365902,0.63665605,0.48834705,-0.41333243,0.6467377,-0.05439609,-0.11125817,-0.33151418,0.067483515,0.29798865,0.22698785,0.49787617,0.12253332,0.057063643,0.17006314,0.83612967,0.25068358,0.40749872,0.068122566,-0.35768688,0.25695613,-0.04312216,0.3610561,-0.21606277,-0.49948052,-0.14595681,-0.054912537,0.19628695,0.37918898,-0.025472922,0.48308435,-0.18828464,0.031229619,0.1459961,0.07996281,0.050180618,-1.0174793,0.44318098,0.40340626,0.59753793,0.615236,0.12138246,0.06166839,0.54025763,-0.4669838,0.044471297,0.29357103,-0.16912186,-0.22289288,0.37491906,-0.66748464,0.19103906,-0.26201794,0.04861579,-0.0027918115,0.069108345,0.36116958,1.060528,-0.11157405,0.053017933,-0.11776,-0.24897623,0.17049289,-0.12787424,0.0020225819,-0.35094756,-0.60593057,0.74456537,0.15193668,0.6913602,-0.17210843,-0.08977359,0.35242096,-0.35825607,0.43057138,0.020468852,-0.018394217,0.020632207,-0.19961372,-0.14214684,0.5052275,-0.27401194,-0.041579105,0.1498801,-0.119895995,0.15047447,0.06738655,-0.15739915,0.013845205,-0.60444295,-0.026162315,-0.3210762,-0.36031553,0.4007173,-0.11989397,0.041656673,0.15667015,0.15240103,-0.24431251,0.12186906,0.16560678,0.6585959,0.20413412,-0.18738988,0.08265734,0.07331485,0.21032226,-0.34919497,0.09593678,0.06501552,0.37915862,-0.8994,0.35176447,-0.27547908,-0.44569778,0.094732225,-0.3967168,-0.23829536,0.49097258,-0.26514035,-0.16384178,0.23002933,-0.019693403,-0.17555371,-0.08816916,-0.2498473,0.16507614,-0.26903453,-0.023739954,-0.0970698,-0.03438832,-0.013519329,0.38998985,0.103663,-0.001938301,0.39567629,0.051652994,-0.5802402,0.04689824,0.36388403,0.39746213,0.10994217,0.09168782,-0.17605413,-0.29614466,-0.52017546,0.4048559,-0.08620733,0.17901236,-0.045344003,-0.49549708,1.1146792,-0.039173555,0.9926937,-0.18701994,-0.4243546,-0.056271728,0.56013936,0.001010702,0.04183374,-0.3493722,0.95603895,0.5837848,-0.090698354,-0.06473546,-0.67861503,-0.11139039,0.4073859,-0.4349215,-0.13680868,-0.0052376073,-0.69663936,-0.2407948,0.24844097,0.06382377,-0.026762828,-0.18607858,0.0054695187,0.1625517,0.26707196,0.24335614,-0.6577562,-0.028799307,0.25074774,0.14470088,0.00053920463,0.23447905,-0.3567193,0.2899797,-0.8412899,0.3864364,-0.25440937,-0.08330078,-0.0056174994,-0.13184851,0.25703645,0.2353412,0.13299365,-0.3557361,-0.3517239,-0.0971134,0.40034848,0.21688746,0.23683722,0.84364027,-0.26179594,-0.03546462,0.09243445,0.57048225,1.310702,-0.19979486,-0.21985458,0.1719507,-0.3928933,-0.74015784,0.1393549,-0.3951491,-0.038088996,-0.12695377,-0.4945033,-0.4385137,0.257605,0.13488398,-0.06899316,0.1276536,-0.63974625,0.0025445293,0.1725585,-0.33500683,-0.11857651,-0.06104055,0.17337415,0.78571665,-0.34899694,-0.31674033,-0.09335994,0.15249932,-0.43310383,-0.4687673,0.17626512,-0.32291687,0.2713428,0.24189949,-0.34230062,0.08746795,0.23813884,-0.5971222,0.059614625,0.30249402,-0.21707419,0.015714375,-0.30324292,0.17977664,0.66443133,0.12574999,-0.008465115,-0.26304126,-0.66704965,-0.66996354,-0.41457248,-0.22709727,0.10703011,0.031206857,-0.75910467,0.013844069,-0.494156,-0.10334004,-0.0045515685,-0.5732123,0.46338344,0.25122356,0.32961532,-0.26543757,-1.1128354,0.34056455,0.09256088,-0.09960097,-0.4064118,0.32871577,-0.20920579,0.77198035,0.1769584,0.01636968,0.15629321,-0.92843705,0.3133613,-0.34411,-0.17365706,-0.69627684,-0.008424696 -244,0.4264018,-0.14599422,-0.5056085,-0.15750943,-0.5833232,0.23597947,-0.07876619,0.47383815,0.16775128,-0.39313415,-0.09291779,-0.017180055,-0.29822448,0.19537278,-0.21822295,-0.5071131,-0.17371458,0.073879376,-0.5053392,0.44057292,-0.22256461,0.49729118,0.0838299,0.2116629,0.33407164,0.33987078,0.03911879,0.08923038,-0.09088285,-0.21650101,-0.14036831,0.20354877,-0.6552778,0.37379897,-0.27047148,-0.22150452,-0.11954447,-0.39077085,-0.41182137,-0.63333535,0.19117351,-0.70483154,0.5072839,-0.09072106,-0.3772831,-0.05633143,0.1891191,0.13076751,-0.20958894,0.07962343,0.27836603,-0.26037315,0.013513327,-0.23790644,-0.34426773,-0.6394975,-0.49122402,0.005715434,-0.6350517,-0.17418432,-0.1216133,0.28910872,-0.24436942,-0.32897505,-0.26926616,0.6293595,-0.50399965,0.06213473,0.12518619,-0.255411,-0.05299999,-0.7037388,-0.09085128,-0.046852548,0.13923143,0.11217589,-0.40307182,0.3486672,0.20546302,0.37514675,0.07767146,-0.294871,-0.34621084,0.037340652,0.17431983,0.30456057,-0.19697838,-0.18973015,-0.2148182,0.07004676,0.5133326,0.25357923,0.100284085,-0.538792,0.11944887,0.030976582,-0.14249134,0.48239955,0.49640647,-0.30662107,-0.15324934,0.51634383,0.2868726,0.10528884,-0.3098353,0.22779097,-0.27857602,-0.23996595,-0.05077752,0.35100815,-0.03257575,0.46330833,-0.0145272575,-0.07820749,0.6884804,-0.14445727,-0.15817331,-0.08987816,0.05510198,0.14919056,-0.35762474,-0.08952742,0.1956811,-0.46142504,-0.04608788,-0.16309519,0.6535849,-0.014263195,-0.77684146,0.24806625,-0.5096119,0.12563616,0.1244686,0.59188735,0.71326584,0.6202398,-0.07984245,0.9852964,-0.391211,0.0990524,-0.097517066,-0.23072259,0.03673684,-0.27492556,-0.0895033,-0.52666324,0.14584687,-0.02078549,-0.107966214,-0.12926994,0.36116657,-0.3596168,-0.17991774,0.2282427,0.7313826,-0.37141702,-0.09382819,0.6795232,1.0738999,0.9712422,-0.017434979,1.1377013,0.19580278,-0.30131474,-0.018480735,-0.31279907,-0.22903341,0.12837829,0.39388308,0.052194912,0.3135814,0.0347684,0.07095052,0.278439,-0.3372484,0.1002901,-0.22440828,0.25429147,0.11093359,-0.018269977,-0.57851344,-0.21651226,0.23473956,0.23993699,-0.12367021,0.2621922,-0.3263086,0.22756653,0.0083698435,1.1880835,-0.057683047,0.119048394,0.15333334,0.43364775,0.29972938,-0.27053347,0.073395886,0.3647719,0.3896863,-0.02086726,-0.4684491,0.05456787,-0.4117907,-0.5950336,-0.13830157,-0.36935183,-0.17827006,-0.09658445,-0.6246466,-0.24185899,0.15616846,-0.40132535,0.527208,-2.6958208,-0.062023185,-0.22496085,0.14601518,-0.29731143,-0.3310369,-0.22171284,-0.33043778,0.2534187,0.29546145,0.34327355,-0.37285596,0.3523802,0.42370507,-0.48599452,-0.098541416,-0.55639243,0.18856879,-0.07825271,0.50266707,-0.08806767,-0.053821035,-0.062483538,0.04418963,0.6931137,-0.0659971,-0.046418376,0.2568398,0.32280764,-0.23812327,0.57085514,0.18480381,0.54486,-0.22693443,-0.26173055,0.4831969,-0.2688832,0.3026358,0.27983195,0.18064907,0.4348081,-0.53623563,-0.8455785,-0.43996727,-0.35568175,1.086886,-0.42261568,-0.5251406,0.31602603,-0.16287138,-0.17780069,-0.10915389,0.50411224,-0.021751443,0.2799876,-0.61672395,-0.017487917,-0.054598678,0.33765575,-0.17031392,0.1607522,-0.25770673,0.77432936,-0.14453799,0.5548261,0.40844756,0.37261784,-0.337001,-0.4709921,0.061750796,0.94581795,0.4238772,-0.029270148,-0.031351324,-0.1645476,-0.18970864,-0.14208065,0.2807849,0.6177944,0.6508701,0.0047484916,-0.010043907,0.31355685,-0.074560724,0.043660395,-0.21739882,-0.32350904,-0.20417684,0.17907754,0.56105286,0.32830283,0.029345484,0.58221334,-0.061445948,0.13520914,-0.15208572,-0.4529589,0.32835892,0.6692384,-0.22106789,-0.41154847,0.5547955,0.5613579,-0.29395425,0.20785634,-0.5718857,-0.2747876,0.7868851,-0.2794402,-0.6531409,0.10023758,-0.34740475,0.0015830934,-0.7831744,0.2759189,-0.09078033,-0.7514843,-0.44867784,-0.36314055,-2.9452128,0.11643014,-0.18750285,-0.12031063,-0.049542554,-0.15933698,0.28178468,-0.5106461,-0.48600948,0.022164632,0.052906394,0.556413,-0.07859507,0.04088807,-0.32209823,-0.20286798,-0.15739895,0.47862008,0.08904551,0.2877313,-0.101900175,-0.25182456,0.032025043,-0.26782963,-0.5159695,-0.023331255,-0.6116381,-0.54089457,-0.014890115,-0.42032284,-0.22204815,0.732102,-0.5455284,-0.030019823,-0.15643162,0.07402395,0.1313598,0.19459747,0.17213562,0.35739887,0.20435463,-0.05329015,-0.15870096,-0.38714755,0.14192526,0.1128562,0.36108208,0.3732614,-0.044127163,0.2921308,0.6134771,0.56810176,-0.15131237,0.75245696,0.18093707,0.019600486,0.4125314,-0.20884201,-0.19304585,-0.82638896,-0.24921638,-0.11677701,-0.44445127,-0.49504834,0.06596963,-0.43248737,-0.9050531,0.47096723,0.08476726,0.34212416,-0.10284536,0.3077842,0.43443877,-0.19647399,0.09241929,-0.11444116,-0.23235235,-0.40371487,-0.6182128,-0.6410348,-0.6210239,-0.12431685,1.2070191,-0.112158984,-0.23872663,0.09235789,-0.36256018,0.10762383,0.11076258,0.048128042,0.117571115,0.22473985,0.14186952,-0.6990401,0.26264712,-0.112331934,0.0027953067,-0.5955447,0.24991804,0.7807766,-0.56964314,0.47770566,0.32166818,0.28489703,-0.36681727,-0.6003348,-0.22875828,0.24999943,-0.2791415,0.67518735,0.165547,-0.68404526,0.39276117,0.066290155,-0.24309935,-0.7427728,0.5823193,-0.040131114,-0.04785598,0.009089466,0.4417586,0.11667088,-0.27271062,0.11536413,0.4088766,-0.46932748,0.32380173,0.45330048,-0.045240067,0.29712063,-0.14786695,-0.29861858,-0.70004255,-0.0493205,-0.44684264,-0.44280174,0.3071248,0.18583809,0.05725852,0.13478492,-0.115970016,0.40748265,-0.09805981,0.32080728,-0.16387695,-0.30389982,0.5973171,0.56409526,0.40692806,-0.47149545,0.44991636,0.08317971,0.07778364,-0.07434872,0.26241887,0.4854848,0.26490504,0.34094456,-0.17024006,-0.07715328,0.35476837,0.5399087,0.2788464,0.40098202,0.108191624,-0.21365643,0.22277482,0.13822255,0.2529236,-0.32411328,-0.5322224,-0.11049101,-0.013001815,0.25111204,0.2683822,0.04218268,0.33431354,-0.066553876,0.17128362,0.32733873,0.104354054,0.013365896,-0.921408,0.33740786,0.15353629,0.8357702,0.30004823,0.08832448,-0.12032615,0.53098345,-0.3090906,-0.030062292,0.5117023,0.16364536,-0.19860189,0.4627441,-0.7154624,0.5625765,-0.16788591,-0.13614388,0.28927007,0.28189117,0.52054614,0.85049725,-0.16315477,0.035595406,-0.034734763,-0.22231029,0.13504563,-0.33817226,0.37312797,-0.4284121,-0.5936816,0.66899353,0.4455899,0.30503735,-0.35182306,-0.068059206,-0.0011555235,-0.17289816,0.3123861,-0.02207219,-0.21486421,-0.082739115,-0.53059363,-0.18758647,0.52052087,-0.22677091,0.015110842,0.09130336,-0.18735507,0.2066535,-0.14778604,0.057909552,0.07217686,-0.5674502,-0.059848532,-0.3657343,-0.39521486,0.31124446,-0.44111827,0.21509196,0.2089529,-0.08070101,-0.40704736,0.13275068,0.3469879,0.7321306,-0.009557154,-0.13664696,-0.1864753,0.099065766,0.14556958,-0.1870344,0.0021520695,-0.24866636,0.14732638,-0.7008819,0.25446007,-0.3901357,-0.3607346,-0.008936481,-0.14151007,-0.0732118,0.44712767,-0.19980523,-0.122088544,0.009360289,-0.0027685761,-0.14918216,-0.08739311,-0.25008497,0.35031798,-0.07453206,-0.08574429,-0.019826714,-0.13104999,-0.065525815,0.098768555,0.12829593,0.32507074,0.25167367,-0.035916094,-0.33436546,0.12789668,0.047793187,0.4450842,0.16434766,0.05326542,0.011807179,-0.14512302,-0.3205608,0.16278023,-0.027841423,0.2126676,0.16648157,-0.46546358,0.8016831,-0.0028544029,1.4394362,-0.023190683,-0.4623925,0.019251982,0.60888666,0.09491265,0.061765503,-0.34491453,0.9143808,0.72053695,0.09616713,-0.13868771,-0.24347362,-0.16558406,0.20179859,-0.24801607,-0.30101326,-0.08984851,-0.62049013,-0.03634228,0.096083246,0.17011096,0.08005413,0.04097241,-0.31673586,0.2559293,0.0606998,0.24718812,-0.4319369,-0.059167568,0.33969307,0.25352952,-0.04174507,0.11859134,-0.29629755,0.38654968,-0.76839906,0.41615793,-0.27721772,0.14484262,-0.2084814,-0.17964026,0.1837438,-0.088649385,0.43208733,-0.26117262,-0.38420737,-0.26400667,0.6708472,-0.12835254,0.23648426,0.60502654,-0.2551976,0.047819026,0.13234177,0.39619306,1.1967633,-0.26354602,0.02244386,0.1157877,-0.50607187,-0.5987755,0.14995815,-0.6158001,0.20107755,0.04495599,-0.31236935,-0.051273085,0.2536883,0.1457081,-0.0020970304,-0.05647739,-0.6253427,-0.060772676,0.41898692,-0.25979313,-0.18763046,-0.2196486,0.38758275,0.49643987,-0.3400423,-0.44982585,-0.061873965,0.2869293,-0.2243761,-0.58097357,0.28028026,-0.36478674,0.3136712,-0.017729385,-0.5491813,0.009730335,0.16056986,-0.48718372,0.04440924,0.306481,-0.3106284,-0.015884085,-0.105586834,0.009501401,0.76802504,0.17970683,0.17223446,-0.5052697,-0.5545388,-0.86773986,-0.25491723,0.09353826,0.17591253,-0.04594879,-0.58692765,-0.16233441,-0.3516281,-0.013765923,-0.12878834,-0.55356914,0.42429683,0.16747814,0.6653337,-0.3489671,-0.93669724,0.08737324,0.3366531,-0.07721005,-0.43049437,0.61272544,-0.16317432,0.6953299,-0.09162219,0.12598827,0.040627327,-0.7675386,0.40301687,-0.33169192,-0.107498266,-0.6712491,0.031209258 -245,0.44929823,0.15226878,-0.6092744,-0.23463944,-0.24626052,0.11130492,-0.33874625,-0.0013192573,0.26659283,-0.16861548,-0.0019197783,-0.083448865,0.036023784,0.36583108,-0.15328784,-0.91969997,0.09507297,0.00578713,-0.631512,0.41908625,-0.57172924,0.38893047,0.14018477,0.5090371,-0.07040372,0.36414284,0.5163992,-0.13463709,0.00857059,0.036536045,-0.056024797,0.3567216,-0.8254493,0.18552111,-0.06432338,-0.33663613,0.06386841,-0.1351683,-0.16845492,-0.6364358,0.31221,-0.68610185,0.6527054,0.19853337,-0.3139508,0.05634004,0.1361847,0.044016127,-0.3251057,0.25332406,0.16646346,-0.35330275,0.004739344,-0.2201741,-0.28160915,-0.53371227,-0.6659849,0.05254644,-0.819326,-0.19354716,-0.42718744,0.22099791,-0.3204703,-0.10005962,-0.109681405,0.50173604,-0.44772696,-0.04149887,0.30946356,-0.30815873,0.17851327,-0.32397008,-0.21780892,-0.05185181,0.35788065,-0.10457189,-0.1095405,0.14898719,0.29432368,0.6714507,0.24910153,-0.3547437,-0.36898288,-0.1974542,0.08577143,0.3576688,-0.1062463,-0.31088203,-0.17877875,-0.12758043,-0.08000743,0.27965793,-0.032434523,-0.29330632,0.07825883,0.13903551,-0.072494626,0.4833097,0.41521546,-0.6170527,-0.43382737,0.38156694,0.3461102,0.0013994405,-0.12540235,0.27028677,0.029727867,-0.56258446,-0.3471861,0.17686746,-0.017068012,0.3941224,-0.07576784,0.27339825,0.80818737,-0.13066623,-0.11187233,-0.23148572,-0.19074823,-0.010913581,-0.1408724,0.059113614,0.117274985,-0.4075982,0.05629759,-0.24049255,0.6774303,0.034321286,-0.7638182,0.3704061,-0.5523791,0.08618056,-0.0973187,0.7133892,0.8582579,0.14144439,0.20313899,0.85107374,-0.6500498,0.07883273,0.041493453,-0.5537465,0.2711095,-0.09061832,0.08144965,-0.540155,-0.061989743,0.0881662,0.13911417,-0.016378565,0.37107942,-0.39798144,-0.07189401,0.10498231,0.7376407,-0.4474505,-0.045535725,0.6725322,1.2220763,0.8899299,0.027249923,1.2978185,0.4070591,-0.07732866,0.05180938,-0.32447734,-0.49510616,0.18377241,0.38967758,0.12832592,0.40743902,-0.05574814,0.20371448,0.3957402,-0.21397819,-0.02516993,0.00033267055,0.32300264,-0.036738537,-0.22450103,-0.34302112,-0.087467276,0.19550203,0.04515654,0.13237436,0.36029458,-0.030534282,0.32838818,-0.09909749,1.4829006,0.079976395,0.16358984,-0.028241022,0.4127337,0.33024535,-0.14134082,-0.16320576,0.31500146,0.24225369,0.042358637,-0.5476282,0.068679415,-0.33935425,-0.38215923,-0.26352787,-0.47492805,0.030505437,-0.035080504,-0.40819773,0.050017454,0.0477529,-0.32376978,0.28398237,-2.6839504,-0.14902468,-0.06966904,0.26030287,-0.0625846,-0.14578898,-0.31873888,-0.41132325,0.34550238,0.53716034,0.28614965,-0.48871532,0.41469002,0.3127394,-0.21368305,-0.25570422,-0.53752476,0.053595968,-0.188781,0.48182866,-0.16670561,-0.23985054,-0.26933935,0.62553734,0.6745891,0.10668065,0.0038144547,0.13276868,0.5265194,0.06592591,0.54029167,0.16801198,0.49796054,-0.2139745,-0.24476291,0.40466002,-0.35398155,0.29068777,-0.028745225,0.048235092,0.3610951,-0.55041665,-1.1101781,-0.59398013,-0.2879811,1.0832397,-0.30582553,-0.3166258,0.33194393,-0.11982674,-0.1863713,0.19696757,0.58298177,-0.18126802,0.2309072,-0.6656465,0.21316339,-0.08735033,0.06270016,-0.10105332,0.2287868,-0.3703056,0.6700657,-0.18660869,0.37992454,0.29638883,0.2145625,-0.010755981,-0.5213774,0.23540011,0.8092295,0.15057448,0.12879808,-0.16552065,-0.16923727,-0.148474,-0.012659669,0.018809142,0.5633554,0.6946083,-0.078976914,0.27762964,0.20353504,-0.14741312,-0.051783178,-0.14792612,-0.17339645,0.112800956,0.050244927,0.5012504,0.6040395,-0.30184177,0.1811663,0.044764515,0.22186624,-0.123555236,-0.48660952,0.6899768,0.6796734,-0.14816399,-0.19440505,0.6459064,0.38792852,-0.33964163,0.50701076,-0.5907229,-0.33000275,0.5486995,-0.12249769,-0.25383255,0.045334242,-0.39534357,0.013183168,-1.04645,0.110877596,0.0041846717,-0.4044784,-0.3334108,-0.30364987,-4.608096,0.21086647,-0.24917164,0.094566904,-0.12735079,-0.041755684,0.5146249,-0.5277856,-0.540044,-0.034003902,0.0064798025,0.45637614,-0.16326173,0.24839714,-0.22085063,-0.22271241,-0.2618148,0.42482376,0.17660622,0.18877193,0.20910004,-0.40357035,0.12679745,-0.2908757,-0.44469616,-0.034545176,-0.3684965,-0.4448556,-0.29700845,-0.4498602,-0.27131465,0.74572134,-0.41990894,-0.061375253,-0.30951485,0.048463114,-0.10799725,0.411901,0.24901561,0.1997038,0.117328025,0.054652877,-0.329073,-0.3505554,0.21387537,0.08523049,0.31183153,0.42085767,-0.031858154,0.14906883,0.45243284,0.42575482,-0.02828446,0.5518939,0.33169046,0.1260264,0.2864508,-0.3937271,-0.3552402,-0.8630582,-0.47898623,-0.43561295,-0.49942327,-0.54009706,-0.114503875,-0.47402143,-0.7749838,0.5145007,0.015474588,0.20222946,-0.19771075,0.30983925,0.29587144,-0.18090013,-0.015851531,-0.03614837,-0.2483726,-0.6036752,-0.17503284,-0.59662056,-0.70935196,0.12281777,0.8180912,-0.35933563,-0.07996477,0.098227754,-0.15561387,0.06535885,0.09618725,0.3132639,0.2348455,0.5519134,-0.016927829,-0.80821544,0.4974114,-0.2520902,-0.09500254,-0.7257374,-0.13042837,0.55162704,-0.5955431,0.7401468,0.3012793,0.26490575,0.36306673,-0.5809461,-0.34623465,0.13881148,-0.14417507,0.6451822,0.10230213,-0.8403582,0.51972544,0.024934156,-0.18670838,-0.6072611,0.41726544,0.065260634,-0.47500652,0.2444414,0.32997447,-0.0058372617,-0.08092735,-0.21448787,0.30859876,-0.49688897,0.28585705,0.27247736,-0.07964171,0.5499934,-0.1326446,-0.3447277,-0.64014596,-0.27470067,-0.5267045,-0.31984276,-0.057758626,0.073727146,-0.010111575,0.08218775,-0.13612422,0.5434992,-0.16120175,0.26469117,-0.08314767,-0.32079917,0.40967813,0.5718128,0.28187758,-0.57549506,0.58143795,0.061930895,-0.062730476,-0.10472944,0.04166066,0.5213374,0.1473464,0.37163833,-0.16832812,-0.065674506,0.13893095,0.6188361,0.019211175,0.3126182,0.21286297,-0.1955441,0.597929,0.09019862,-0.03158078,-0.18881014,-0.22343493,0.019640744,-0.08934088,0.16234112,0.47124004,0.19036147,0.34656888,-0.08315633,-0.027765453,0.421016,0.22302477,-0.06496542,-0.8296515,0.3458708,0.40459043,0.51679486,0.6701585,-0.14846434,-0.0031923226,0.3889769,-0.2885804,0.0848127,0.381063,0.09736774,-0.514332,0.69157875,-0.4608729,0.47028497,-0.26239175,-0.15410623,-0.0010916889,0.21712515,0.25456157,1.0194834,-0.10651224,0.13294856,-0.00501209,-0.06566316,0.0040302053,-0.23475412,0.11535058,-0.41312906,-0.22566226,0.5652665,0.43086162,0.2766683,-0.32574376,-0.16664922,0.10876411,-0.1451094,0.051660873,-0.28536898,-0.100337625,-0.12878464,-0.56249946,-0.4091484,0.58012474,0.10006585,-0.044932436,-0.004547713,-0.36991403,0.19652447,-0.14393303,-0.023135824,-0.054544806,-0.59290445,-0.023364183,-0.25770602,-0.4585896,0.57859033,-0.6070146,0.4673462,0.124745265,0.15368648,-0.281756,0.14521037,-0.016836947,0.63092965,0.19446482,-0.09268479,-0.30490008,0.094621934,0.38517863,-0.32347518,-0.32880226,-0.5181414,0.16724615,-0.47215882,0.37955275,-0.18143871,-0.30463955,-0.2581406,-0.059271097,0.14029603,0.37631002,-0.17432931,-0.23150036,0.27851692,-0.062724516,-0.23248914,-0.116108045,-0.38543049,0.3755197,-0.21804066,-0.1152823,0.054838955,-0.010902143,-0.16886269,0.2971137,0.17569593,0.11185889,0.119157776,-0.09036369,-0.24324979,0.013493257,0.085030064,0.36672834,0.2584001,0.03207926,-0.25801712,-0.43996564,-0.27262452,0.16465522,-0.1524122,-0.07343062,0.12724887,-0.3653229,0.79612416,0.40602618,1.1857126,0.21414408,-0.24779122,0.16848862,0.5085958,0.1214024,0.10740716,-0.44270334,1.0000342,0.61465925,-0.18986042,-0.2256097,-0.21967745,-0.24684656,0.19404276,-0.2438917,-0.221102,-0.2746352,-0.6678151,-0.1546595,0.08062941,0.26973823,0.12509559,-0.06155015,-0.11810893,-0.069701284,0.19005878,0.45325065,-0.5274993,-0.14946099,0.24786536,0.24622747,-0.02726832,0.3259091,-0.20464318,0.5208564,-0.71241134,0.08523994,-0.54109293,0.13597174,-0.037571337,-0.39134675,0.25947005,-0.017576694,0.31184217,-0.14590092,-0.25681552,-0.2955326,0.48228365,0.30698135,0.24004222,0.90543693,-0.2982925,0.0217496,0.044281416,0.4443372,1.4596522,-0.10474463,-0.03552883,0.31544897,-0.13284317,-0.61024284,0.0038602352,-0.53564614,0.07890359,-0.35028014,-0.5691513,-0.3282265,0.071597755,-0.0050764787,-0.01140772,0.04735658,-0.51191163,-0.20654644,0.34406748,-0.1278418,-0.21779254,-0.26208895,0.18324468,0.7806116,-0.35309696,-0.29763597,0.087109976,0.24996522,-0.12919952,-0.60955137,0.029112441,-0.20010276,0.34365997,0.29477707,-0.25283942,0.0082991505,0.38987756,-0.42877957,0.24367365,0.46421573,-0.23522131,0.04583209,-0.3375623,-0.20735039,1.0711678,0.07307907,0.15033154,-0.5304089,-0.41968894,-1.0247271,-0.33312038,0.3521828,0.16059735,0.018799739,-0.35834318,0.022506015,-0.037776332,0.065553494,0.053089935,-0.6504839,0.28995678,0.0044269795,0.7099158,0.015506034,-0.9667669,-0.061160307,0.17669477,-0.28747562,-0.5543984,0.5700116,-0.20823598,0.63018304,0.075027406,0.047184467,0.3177711,-0.68252945,0.3009581,-0.44665828,-0.049296122,-0.71859324,0.0060167485 -246,0.3823752,-0.28906205,-0.38273105,-0.21697955,-0.18428369,0.02097891,-0.082485996,0.5004456,0.17090525,-0.3391578,-0.28663746,-0.20970301,-0.005201906,0.26188672,-0.16692266,-0.5872744,-0.1498789,0.06336079,-0.53632104,0.48737663,-0.26966462,0.042921726,0.016985932,0.3393161,0.2107714,0.28054744,0.10084204,-0.16721602,0.059182536,-0.1493087,-0.18878521,0.18730521,-0.53891236,0.16504881,-0.18278904,-0.19226639,-0.07784976,-0.56303394,-0.49299422,-0.7193508,0.28020185,-1.044752,0.3591967,0.11077996,-0.22540298,0.39363316,0.0899182,0.08289104,-0.3475017,-0.17371528,0.10467006,-0.08865718,-0.08123515,-0.07432393,-0.15348133,-0.36884648,-0.50712657,-0.09344809,-0.26998353,-0.3393676,-0.4127842,0.03697291,-0.36579865,-0.012743496,-0.060361203,0.6672458,-0.4285417,0.26944372,0.34093237,-0.2258474,0.45434815,-0.5454618,-0.1916337,-0.11298137,0.20371078,-0.07463973,-0.26974347,0.32767597,0.3783261,0.22925653,-0.07657202,-0.075665064,-0.081871286,-0.14996217,0.20733023,0.32427686,-0.23565507,-0.50805056,-0.02625875,0.03584316,-0.011483103,0.33285618,0.10223051,-0.44760534,-0.109031074,0.16754878,-0.20656754,0.35927838,0.47720876,-0.14036603,-0.14719999,0.30869743,0.42727566,0.24039996,-0.1724286,-0.13138701,0.028694957,-0.5888072,-0.14804555,-0.010949535,-0.29578686,0.6945267,-0.18783535,0.1999538,0.69992584,-0.1259159,0.015509395,0.018383944,-0.0137311565,-0.08364003,-0.37766987,-0.19491185,0.2761897,-0.3266723,0.28367284,-0.14591686,0.7218874,0.1518306,-0.6223008,0.25481725,-0.6110306,0.19809742,-0.24104269,0.4717269,0.5835575,0.3746726,0.38336053,0.6102229,-0.45940158,-0.025481572,-0.044221316,-0.4083071,0.122419834,-0.12999377,-0.13482065,-0.3969343,-0.09342681,0.023182977,-0.07737541,0.077038504,0.25935242,-0.52260405,-0.09514356,0.058354262,0.89515585,-0.2355417,-0.014358806,0.6787785,0.96181446,0.7751683,0.10052749,1.0945668,0.20991543,-0.22593461,0.33774573,-0.0098464405,-0.79340285,0.3528784,0.43866137,-0.41686434,0.13128623,0.01165664,-0.16705881,0.35452023,-0.40703678,0.065165706,-0.25727913,0.16890384,0.14508723,-0.18123342,-0.3200114,-0.10300021,-0.09446224,0.081288524,-0.07014989,0.17688437,-0.090579435,0.34711477,0.1041498,1.4094579,0.034182392,0.12050433,0.13236785,0.35661635,0.14688492,-0.010599797,-0.09214705,0.41956377,0.45149747,0.29348516,-0.6512037,0.23516104,-0.1985556,-0.3754788,-0.1309074,-0.4385829,0.03591158,0.109711595,-0.41389403,-0.116918705,-0.21457818,-0.17060277,0.4383006,-2.752446,-0.18439968,-0.23208888,0.35780558,-0.3100811,-0.16544472,-0.014192545,-0.46070793,0.47164813,0.27942434,0.49938646,-0.5678426,0.19674203,0.5151497,-0.52601117,-0.2026582,-0.6435032,-0.11406927,0.022255447,0.4241014,0.024087003,0.05570027,0.1132579,0.04425054,0.46351233,0.25525108,0.18715858,0.3780399,0.41578075,-0.065031506,0.5316468,-0.084253855,0.50281084,-0.21048202,-0.1243056,0.20753588,-0.11601695,0.26143774,-0.10310757,0.12559734,0.4814073,-0.3903888,-0.834064,-0.74231726,-0.44240305,1.3138993,-0.40379348,-0.51737946,0.41202405,-0.37406236,-0.115997456,-0.079542585,0.5355078,-0.055740833,0.08582616,-0.7920231,0.21992247,-0.07100514,0.107142285,-0.026238369,-0.2190183,-0.33164304,0.7160505,-0.058285534,0.5148547,0.38302907,0.07440637,-0.13045172,-0.48988625,0.057588894,0.789392,0.35176983,0.083156385,-0.096237615,-0.19283448,-0.31214204,-0.050626844,0.083820425,0.68501186,0.64585954,-0.0546509,0.16470459,0.2421417,0.056759674,0.07043143,-0.15430246,-0.24206784,-0.1720924,-0.09084775,0.470417,0.6025572,-0.22079194,0.3370983,-0.04123239,0.39394334,0.07370038,-0.38679838,0.50747913,1.2417486,-0.16610436,-0.23160832,0.63076407,0.43259293,-0.30745372,0.365693,-0.42246395,-0.12998834,0.6222008,-0.1853274,-0.62704813,0.2265289,-0.25080273,0.04313138,-0.7360201,0.19813219,-0.25265914,-0.522015,-0.3274071,-0.1194775,-3.302566,0.25672325,-0.39300054,-0.24795938,-0.28516302,-0.21278763,0.28651693,-0.59128624,-0.5571887,0.2524484,0.0939881,0.6752857,-0.07313198,0.09371281,-0.29057187,-0.105481945,-0.18312761,0.032046188,0.1505512,0.27078423,-0.1458257,-0.4627277,-0.14814295,-0.036195405,-0.50074214,0.09323173,-0.48104984,-0.37089396,-0.11292515,-0.44342688,-0.280915,0.67192715,-0.26570597,0.07089958,-0.14949797,0.048167624,-0.18763338,0.15486977,0.08332855,0.38652703,-0.0730592,0.04162691,-0.014730181,-0.1775494,0.34597328,0.059472658,0.23436876,0.16927174,-0.19624674,0.23197949,0.3365941,0.5876481,-0.07110681,0.8123869,0.5210575,0.014962156,0.27083555,-0.250672,-0.3343869,-0.63329834,-0.2774953,0.012414089,-0.2910362,-0.45254773,-0.0590501,-0.28459758,-0.78437245,0.50049216,0.018791327,0.21005233,0.007650954,0.09627773,0.59192413,-0.23592053,-0.031356085,-0.018282788,-0.17194462,-0.7408833,-0.08493564,-0.6005029,-0.2999943,0.07390697,0.7452983,-0.2605428,-0.08129287,-0.11084386,-0.31163162,0.04119864,0.15178713,-0.13198818,0.2643382,0.4793419,-0.11681318,-0.7438475,0.60546625,-0.08603991,-0.31219155,-0.648932,0.33034304,0.5840586,-0.6400328,0.67873544,0.26537725,-0.11821975,-0.32430387,-0.47380498,-0.3036368,-0.18753645,-0.21336429,0.40742606,0.23435865,-0.7871099,0.32488337,0.31308362,-0.0766045,-0.623807,0.70119494,-0.11280143,-0.39008322,0.07713085,0.33525434,0.06201583,-0.010353691,0.033908688,0.2453128,-0.27834806,0.17657842,0.1766857,-0.046657745,0.17839123,-0.048155423,0.16570345,-0.8112563,0.15874584,-0.57225704,-0.19214042,0.29795432,0.111892216,0.025293797,0.13341144,-0.10289548,0.36929482,-0.12091863,0.21476136,-0.17573118,-0.2933889,0.32141495,0.4477896,0.4092998,-0.47125143,0.6534468,0.01551181,-0.09458374,0.1225276,0.22176202,0.3922051,0.070442036,0.39093348,-0.16818592,-0.21867938,0.24704064,0.7050334,0.16342959,0.51920974,0.07170508,0.10192283,0.33078447,0.040449347,0.23441233,-0.08988334,-0.6800624,0.022626886,-0.26413172,0.0765911,0.45293716,0.19723955,0.23453283,-0.11369131,-0.325716,-0.027297199,0.18137467,0.26719853,-1.0397272,0.4291613,0.27541628,0.84404534,0.46672413,-0.06759079,-0.16443549,0.6854406,-0.044341557,0.112428315,0.46622673,0.073561676,-0.51331353,0.5081395,-0.74220866,0.35939902,-8.888756e-05,-0.096140675,0.031266827,-0.0065345657,0.23535217,0.7735015,-0.13190411,-0.11193232,-0.050611787,-0.39040807,0.37086365,-0.5156818,0.045337077,-0.47330618,-0.3631901,0.47862038,0.6844197,0.27901378,-0.25658906,-0.039337713,0.08880808,-0.1175727,0.13783659,0.08560284,0.089371994,-0.11662869,-0.7720695,-0.21476506,0.4277956,-0.18416157,0.116691336,-0.070047356,-0.13470258,0.25819787,-0.124861,0.008080168,-0.16118348,-0.72913486,0.07072271,-0.29702616,-0.47386837,0.39248303,-0.23731945,0.20136474,0.14979519,0.04174685,-0.2498217,0.17704175,-0.09066913,0.8798377,-0.063946374,-0.08766043,-0.47436735,0.08743664,0.17939378,-0.13386868,-0.060166776,-0.4071493,-0.13474329,-0.4985344,0.47688606,0.052731644,-0.21592188,0.07237298,-0.17716667,-0.02693077,0.5975461,-0.14945357,-0.08374417,-0.24685402,-0.14376378,-0.287845,-0.19819987,-0.03122653,0.29122522,0.22519569,0.24924575,-0.12898768,0.007788505,-0.24303368,0.34698597,0.0075207436,0.47939247,0.29192305,0.04172117,-0.15117252,-0.34849903,0.27486113,0.42554694,0.13148566,-0.092716895,-0.15062432,-0.506121,-0.24800101,-0.038440917,-0.040637862,0.58846796,0.098335214,-0.017255804,0.5721668,-0.10836933,0.9377286,-0.02331734,-0.3309256,0.0027899232,0.5201286,0.053377263,-0.17768645,-0.20244299,0.7854972,0.48437467,0.020586282,-0.028390113,-0.36239353,0.06828296,0.20606299,-0.08443654,-0.16363433,-0.090503216,-0.60245097,-0.15559019,0.0031403708,0.31166193,0.31206012,0.09540777,-0.045074258,0.11009844,-0.107341774,0.3583402,-0.41675726,-0.21279278,0.16820805,0.0819701,0.006050076,0.16869545,-0.3708113,0.40915576,-0.35414618,0.0868004,-0.31182,0.15716566,-0.27547818,-0.14796643,0.1488503,-0.16897546,0.43897825,-0.2876801,-0.31333518,-0.2915074,0.47969443,0.21809962,0.090689726,0.64786136,-0.24486212,0.09451617,0.081679,0.6002328,0.8248445,-0.18128946,0.00032197792,0.28305742,-0.55034333,-0.6019003,0.37113175,-0.26989987,0.2286595,0.09013392,-0.0076185376,-0.42603663,0.28621966,0.18475787,-0.091994695,0.050916173,-0.7201943,-0.30396634,0.25820372,-0.30063528,-0.15481187,-0.3996509,0.21886158,0.5323606,-0.27333426,-0.15398839,0.014805334,-0.05896647,-0.038804065,-0.420545,-0.06570746,-0.36528212,0.22998948,0.013190614,-0.34492284,-0.05585963,-0.038990207,-0.37587902,0.3502814,-0.17006819,-0.29837528,0.06943337,-0.21388964,-0.21966197,0.9486912,-0.19758452,0.03342561,-0.49405685,-0.50281185,-0.5993243,-0.43209654,0.46952972,0.01237878,0.14734724,-0.426436,0.062334906,0.014618261,0.026629567,-0.2153888,-0.23247066,0.46839455,0.09012298,0.5054969,-0.086037636,-0.6992799,0.22551334,-0.031453002,-0.04412279,-0.66144115,0.48927078,-0.091961876,0.5354184,0.08154876,0.15889482,0.21218736,-0.38805512,-0.2833059,-0.18363571,-0.22842695,-0.5429123,0.021940073 -247,0.1816979,0.043992676,-0.6802766,0.1427717,-0.19783328,0.2619542,-0.62079775,0.10725181,0.30702835,-0.43478853,0.12727359,0.1945831,-0.43651316,0.13296425,-0.024529563,-0.51954496,-0.13993487,0.22243544,-0.41557628,0.52944845,-0.25552526,0.2663949,0.011779061,0.38318473,-0.025756534,0.35309485,0.0016646797,0.060326245,-0.2953105,-0.5348994,0.10645191,0.015037555,-0.30638504,0.4104468,-0.23065604,-0.16248645,-0.07447731,-0.27572182,-0.2950186,-0.54353213,0.21503454,-0.598854,0.6910314,0.014116347,-0.12138954,-0.05461561,0.35004103,0.12307791,0.33428282,-0.16109252,0.30618402,-0.48521268,-0.4819892,-0.67502296,-0.41522247,-0.46273744,-0.4072494,0.050092634,-0.4492676,0.07466171,-0.18230845,0.3959467,-0.17081334,-0.120191894,-0.2632759,0.3631689,-0.23130934,0.07950393,-0.17839769,-0.39745766,0.1459264,-0.8716718,-0.10578633,0.06760487,0.22717573,0.1866906,-0.10818766,0.26610836,-0.016316222,0.5212797,-0.078790516,-0.17005223,-0.619656,-0.025385123,0.35122362,0.5672871,-0.45299017,-0.034173746,-0.20493118,0.06263927,0.78418833,0.14514528,0.010194994,-0.3185625,0.121347204,-0.29617506,-0.26466718,0.55112845,0.5599051,-0.026416104,0.19999768,0.3192282,0.5269703,0.37540004,-0.3186336,0.010021145,-0.37746572,-0.21126968,-0.041777078,0.14404415,0.08850251,0.32898572,-0.043081723,0.26113594,0.3103968,0.10276698,-0.07078083,0.25815704,0.10046285,0.1972081,-0.077695414,-0.0347814,0.24268116,-0.49464476,-0.027263531,-0.47158563,0.34241182,-0.3799954,-1.0094416,0.38171607,-0.48834324,0.099360004,0.0055124606,0.6052054,0.73183316,0.7502116,-0.018512657,0.91625947,-0.32950422,0.0718857,-0.09082357,-0.09874804,0.2063342,0.08037666,0.08011606,-0.5541057,-0.08383457,0.09946013,-0.19140321,-0.023750242,0.73108613,-0.42272785,-0.17937356,0.032607313,0.88414425,-0.12321688,0.029537411,0.67250663,1.1859463,0.84491056,-0.041372214,1.0376502,-0.020772008,-0.16568692,-0.48935655,-0.29771703,-0.6498703,0.18547128,0.30508068,0.12367834,0.4781745,0.09736867,-0.118266545,0.40552807,-0.019150456,-0.3284613,-0.17059399,0.18635099,-0.023867836,-0.0834949,-0.26777938,-0.12638074,0.22785021,-0.007434831,0.22108687,0.37179238,-0.5236897,0.6076079,0.09223107,1.0615739,-0.31036884,0.08269136,0.15962678,0.013123169,0.17404458,-0.084140815,-0.06547362,0.185011,0.15965587,-0.06467871,-0.34749016,0.094611414,-0.18758646,-0.6136993,-0.12809229,0.02329538,-0.3093654,0.0342383,0.08557187,-0.37173364,-0.0053776205,-0.5905225,0.17400275,-2.4389167,-0.161507,-0.12972023,0.23776516,-0.0065822373,-0.50747716,-0.14281794,-0.25222036,0.6112496,0.2363918,0.6249207,-0.28809363,0.118083596,0.49721864,-0.6424938,-0.33825448,-0.50191087,0.007529864,-0.007956266,0.6044394,0.06247942,-0.37518045,0.19428346,-0.061938643,0.45909876,-0.1605591,0.11362709,0.5963293,0.47726578,-0.26246712,0.0986071,-0.09442901,0.6285625,-0.32329032,-0.3555733,0.40261376,-0.40059218,0.416931,-0.36080864,0.19703548,0.28840536,-0.17503023,-0.56358963,-0.27243173,0.104280934,1.4386128,-0.022649966,-0.9073425,-0.061087534,-0.060291674,-0.4855385,0.08598522,0.6197819,-0.24045609,-0.011235636,-0.57974976,-0.09043276,-0.32983753,0.40495926,-0.13043813,0.11985286,-0.47404525,0.69008696,-0.04053235,0.3501975,0.6660419,0.3428982,-0.45581084,-0.07465456,0.107401244,0.8566566,0.3742188,0.0764181,-0.24269484,-0.09180231,-0.06759313,-0.3205851,-0.004845665,0.6072936,0.56684345,0.03564676,-0.077631585,0.44781864,-0.31099588,-0.055155434,-0.21087533,-0.644498,-0.38910297,0.0651965,0.66903305,0.49253,0.30155504,0.49861732,0.24306099,0.24163018,-0.23505352,-0.46270818,0.5245472,0.49250004,-0.37616107,-0.25867528,0.580401,0.31452402,-0.21800925,0.6317149,-0.6489086,-0.4719115,0.19676232,0.09193866,-0.56933314,0.27020624,-0.40673006,0.12440848,-0.70874524,0.28087905,-0.47262794,-0.7434318,-0.7955837,-0.104459636,-1.508089,0.2720514,-0.32474086,-0.18110675,-0.330293,-0.09149216,0.11998524,-0.30511236,-0.65317917,0.06602729,0.33399597,0.46850485,-0.17555486,-0.119213805,-0.12116305,-0.4817623,0.01992123,0.34393618,0.10886671,0.118798524,-0.32215464,-0.2076452,-0.003606041,-0.19157553,-0.055725235,-0.21922365,-0.41291568,-0.13327095,-0.031537157,-0.2807706,-0.0012059028,0.6765901,-0.6969678,-0.09705767,-0.43818885,0.09827626,0.46617824,0.2580965,-0.101489015,0.12686442,0.29532012,-0.2269668,-0.08177989,-0.19011036,0.2396382,0.11811895,0.32560337,0.67059135,-0.027537325,0.20035312,0.5559945,0.76054543,0.027116863,0.8431927,0.22538403,-0.1757124,0.21656825,-0.35471064,-0.124484375,-0.4666157,-0.07207422,0.2859243,-0.36575636,-0.49034265,-0.10053796,-0.29344043,-0.8457695,0.55572295,0.2823512,-0.018994598,-0.09269944,0.60578233,0.4381947,-0.084703095,-0.13868015,-0.19115354,-0.2469944,-0.31218657,-0.37754875,-0.7727317,-0.56745267,-0.07648992,0.85865283,-0.18786761,0.21220897,0.47549182,-0.38637036,0.11310014,0.19902512,0.06554871,-0.044625264,0.016928783,0.27195308,-0.52932125,0.054361727,-0.12540719,0.12941343,-0.5099968,0.32691744,0.76296705,-0.58620316,0.1335206,0.48613596,-0.03738713,-0.3102067,-0.8458098,0.0547142,0.3587095,-0.12909612,0.35229683,0.32459497,-0.4915319,0.5356444,0.30378354,-0.04400228,-0.68730265,0.1651308,0.12817791,-0.009086797,-0.11449622,0.43132275,-0.17731531,0.060086973,-0.18815087,0.18908122,-0.16855206,0.47579193,-0.10569365,-0.108905666,0.08187023,-0.17841636,-0.35359663,-0.7843673,0.29519695,-0.5653843,-0.42788416,0.52196383,0.0277604,0.17333683,0.06512064,0.31284493,0.4436556,-0.38334274,0.08222389,-0.344446,-0.29492265,0.4140112,0.47237828,0.48341343,-0.48893136,0.38429883,-0.064495556,-0.31700248,-0.019930478,-0.12016931,0.56889504,0.09383941,0.2561457,0.0006829821,-0.06388621,0.097736426,0.7025173,0.20496601,0.31717792,-0.17063206,-0.35750896,0.13675228,-0.06876292,0.22728617,-0.2989923,-0.5218615,0.0046452237,-0.0173638,0.19067672,0.46823725,0.17213114,0.5708769,-0.17703643,-0.17542171,0.15210317,0.10206582,0.17102386,-1.0289812,0.681006,0.18727128,0.68056273,0.44794184,0.16051126,0.06320204,0.82395214,-0.25343508,-0.10300084,0.31290346,0.117997974,-0.35458437,0.30548796,-0.7871982,0.17881988,0.01722066,0.17914031,0.270975,-0.21728924,0.40637553,0.8932582,-0.19306025,0.24142344,-0.18516758,-0.037287213,-0.3581505,-0.11763417,0.25739008,-0.19996892,-0.49894163,0.8618629,0.07566533,0.55982727,-0.18345734,-0.025972191,0.32872376,-0.09406987,0.52241445,-0.020855043,0.19996071,-0.10884041,-0.37990206,-0.046882637,0.5610108,-0.040516596,0.065099545,0.03520828,-0.16618322,0.11827975,0.0033845145,-0.20674053,-0.025242776,-0.27849168,0.16082692,-0.38453004,-0.4785779,0.34498402,-0.10204803,0.075700775,0.11205943,0.16876361,-0.12346183,0.2652392,0.24230362,0.73595566,0.12566063,-0.042358153,-0.054078873,-0.051051214,0.06313476,-0.29692432,-0.09714188,-0.02812856,0.14871962,-0.84347725,0.3407663,-0.49301958,-0.48652777,0.23875839,-0.23227765,-0.10354634,0.35455862,-0.22704275,-0.25823647,0.38408056,-0.10669991,-0.21358839,-0.36973748,-0.38399827,0.14203136,-0.26623726,-0.13433191,-0.3934593,-0.07525852,-0.4600261,0.06398242,-0.09225054,0.12844603,0.53455603,0.3350368,-0.56915087,0.07889565,0.19046554,0.47606975,0.07424741,0.14602453,-0.2229449,-0.39461404,-0.47129604,0.42837474,-0.038642254,0.23683009,0.25031155,-0.48605415,0.6759657,-0.07742636,0.9964737,-0.06730219,-0.21981509,0.08614091,0.5338192,-0.04724797,0.03834151,-0.47534305,1.0675328,0.58392334,-0.10683628,0.08581038,-0.6672264,-0.21154356,0.21676104,-0.313563,0.043139722,-0.07022225,-0.7458163,-0.2567881,0.30798298,0.23798934,-0.16948317,-0.02299246,0.12110546,0.1763486,0.16579556,-0.005014524,-0.43628204,-0.06340551,0.38684934,0.183916,-0.18993284,0.18800613,-0.45017081,0.17930724,-0.6588193,0.18437631,-0.3922585,0.070922986,0.09282185,-0.26053667,0.15288879,-0.04571456,0.17748629,-0.3447534,-0.41400117,0.011316506,0.19702354,0.2204797,0.29717195,0.48037452,-0.33497217,0.1439471,-0.110025845,0.45326287,1.1360815,-0.25797638,0.044171877,0.12199218,-0.43509504,-0.5734552,0.035927694,-0.45138258,-0.17413174,-0.057241075,-0.3779521,-0.23103008,0.26798075,-0.02048409,-0.057782333,-0.2662815,-0.50729257,-0.06821498,0.011991251,-0.23100108,-0.118836865,-0.2121575,0.016683001,0.65573394,-0.1260886,-0.499793,-0.111533836,0.3533026,-0.32525942,-0.45627654,0.31561968,-0.39151317,0.26800895,0.1539161,-0.29367283,0.01492186,0.026311487,-0.5054761,0.061622363,0.27779552,-0.29231074,-0.12768775,-0.16826329,0.33618826,0.3971367,-0.18780282,0.091264,-0.11355138,-0.5811765,-0.6654797,-0.3388333,-0.41942102,0.32669666,-0.055636767,-0.80679554,-0.086314805,-0.4753229,-0.08755645,0.119886965,-0.57931596,0.33319968,0.134897,0.4987771,-0.7564305,-0.9159628,0.39220428,0.15945576,-0.12082483,-0.40753496,0.30742794,-0.035933055,0.86177444,0.21557675,-0.036092784,0.12248121,-0.9907305,0.39087275,-0.30664596,-0.24548666,-0.7283752,0.039829474 -248,0.532754,-0.26672328,-0.6846828,-0.22367324,-0.39800963,0.03981383,-0.23092812,0.4232003,0.45230097,-0.41417584,-0.08572777,-0.0738126,0.09308581,0.61188245,-0.016506275,-0.72511685,-0.07314648,0.29891607,-0.66502774,0.5344049,-0.42148435,0.33571264,0.08898394,0.23542306,0.124629684,0.14128385,0.21903232,-0.015574098,0.063204646,-0.07868101,-0.09095994,0.1108483,-0.6449217,0.22205932,0.04973562,-0.28698504,-0.041883927,-0.48292568,-0.38236177,-0.7494147,0.36237967,-0.7769501,0.67822975,0.027015567,-0.28211135,0.176887,0.03774266,0.28443915,-0.26606274,-0.057100557,0.22281407,-0.11336695,-0.2450214,0.0057347557,-0.14147258,-0.45653766,-0.5470154,0.050823454,-0.5603788,-0.2742432,-0.37138656,0.1849125,-0.31883538,-0.007536448,-0.21855576,0.5635609,-0.3022139,-0.09116724,0.28467077,-0.33894908,0.2253585,-0.5234375,0.05716711,-0.009573983,0.06228333,-0.18381938,-0.22819565,0.34990028,0.2655177,0.5944177,0.13736686,-0.31830388,-0.31963888,0.013095831,0.035059936,0.6107514,-0.07510604,-0.63061047,-0.25175482,0.1269418,0.15401626,0.010093231,0.053119503,-0.40294182,-0.12873422,-0.11798357,-0.10144416,0.53833795,0.48640823,-0.29990345,-0.26792282,0.4951313,0.49626845,0.1464862,0.11823026,0.10433598,-0.041387513,-0.68709916,-0.30088645,-0.074695215,-0.29658964,0.40760252,-0.24346262,0.1835467,0.43298832,-0.05242805,-0.09621,0.19481689,-0.08521688,0.013731895,-0.3475507,-0.13498434,0.31468633,-0.4763311,0.08346711,-0.21616203,0.82798165,0.13467123,-0.72273314,0.4265302,-0.49053007,0.27197585,-0.15168819,0.48136103,0.8363151,0.55221564,0.21984515,0.90645117,-0.46610844,0.28108808,-0.12138304,-0.5083857,0.11568361,-0.14816317,-0.0061513325,-0.6249357,-0.018921642,-0.14124669,-0.2831858,0.07371701,0.57567775,-0.6729683,-0.13017784,0.12714884,0.7255103,-0.29245922,-0.15776528,0.7273115,0.97944844,0.9890067,-0.022047212,1.3679745,0.3059968,-0.12681097,0.13013572,-0.33326986,-0.8546254,0.25975296,0.41455695,0.10770014,0.30693224,0.07735609,-0.06274618,0.46738067,-0.31619805,-0.21101013,-0.16190833,0.43399385,-0.1737743,-0.20282708,-0.60662645,-0.16549475,0.02663113,0.23606125,0.062345333,0.2902257,-0.27390397,0.2968361,-0.045692977,1.6797303,-0.18584153,0.08723908,0.0011162529,0.44079527,0.39838612,-0.2911305,-0.251023,0.25278243,0.37505385,0.049368557,-0.66807616,0.009290131,-0.29268652,-0.39875486,-0.1992573,-0.30046412,0.03786234,-0.11414851,-0.32101265,-0.14136179,-0.0072934353,-0.4108919,0.45259264,-2.3782473,-0.19830611,-0.11183468,0.33297107,-0.30361134,-0.40903255,-0.037893202,-0.41667217,0.35352176,0.3498734,0.6098433,-0.59777427,0.32463872,0.330578,-0.6589132,-0.0005773008,-0.51759326,-0.07081266,0.0028711604,0.41304207,0.09866403,-0.2088829,-0.18060233,0.24982664,0.5125109,0.006332346,0.026174726,0.37477022,0.45766675,0.0076084277,0.50357777,-0.23401953,0.58070093,-0.30821338,-0.24977519,0.38228762,-0.21646675,0.1700438,-0.2916434,0.117359795,0.26760638,-0.62186944,-1.195706,-0.73404694,-0.15763193,1.2070812,-0.23619741,-0.51705384,0.42120478,-0.27073815,-0.31175262,0.21109849,0.3865867,-0.07995439,-0.040046293,-0.7952367,0.17906171,0.008899176,0.27404934,0.13803989,-0.07765227,-0.49482918,0.78496623,-0.040964983,0.45460635,0.24456947,0.22927381,-0.23499078,-0.43472782,0.08188396,0.9970652,0.35767224,0.16839205,-0.15330979,-0.10423959,-0.3595844,-0.1772404,0.068666175,0.5391414,0.8114375,0.017358404,-0.03702046,0.1858862,0.04658737,0.10676958,-0.05329394,-0.33452737,-0.11753602,-0.01898982,0.6187228,0.6504195,-0.2310567,0.4933581,-0.16341859,0.14780726,-0.03362147,-0.6006963,0.6587766,1.0280795,-0.18733302,-0.28187606,0.77350813,0.28180486,-0.13170607,0.49141878,-0.6030518,-0.4086639,0.33956006,-0.15544578,-0.42447916,0.14820138,-0.23338208,0.06288497,-1.1286067,0.26627177,-0.24128175,-0.6639118,-0.19496009,-0.10937349,-4.024043,0.26722342,-0.11443681,-0.014154414,-0.0761545,0.034479145,0.22627273,-0.5068525,-0.70724803,0.19818434,0.045911577,0.75461704,-0.082234055,0.22109835,-0.14148585,-0.32558018,-0.27184117,0.19496253,-0.008209194,0.32678658,0.17889848,-0.44828445,-0.045567457,0.032510124,-0.5044323,0.13866478,-0.818653,-0.46453226,-0.2969651,-0.7612361,-0.1191734,0.6882749,-0.04052441,0.024696074,-0.23883072,0.18856424,-0.007418284,0.16438666,-0.17594427,0.2540468,0.18239893,-0.090595946,-0.030087654,-0.14389636,0.27385283,0.029126085,0.3134701,0.24718955,-0.31059155,0.16035546,0.69904125,0.75100064,-0.30608493,0.9194958,0.6478242,-0.11078553,0.31926277,-0.104619846,-0.32733887,-0.51714206,-0.39426932,-0.10248081,-0.47622278,-0.31127706,0.01794828,-0.26889852,-0.7344953,0.6370199,0.07085712,0.23984483,0.019899795,0.11663855,0.455322,-0.29814565,-0.067006625,-0.13338794,-0.30939916,-0.5835603,-0.27467304,-0.48714402,-0.48755074,0.12881406,1.0896554,-0.22893606,0.12316033,0.008296655,-0.06948182,-0.033320133,-0.027802072,0.066362746,0.35927004,0.30033106,-0.18827213,-0.725751,0.45179674,-0.093895875,0.06639823,-0.50227636,0.40226585,0.49639335,-0.45318174,0.44363996,0.28488618,0.23454975,-0.067230925,-0.5951668,-0.26687425,0.23730999,-0.15781426,0.427275,0.19079328,-0.81762093,0.5676782,0.437019,-0.45032597,-0.8568914,0.33749717,0.044892825,-0.20116991,-0.19888711,0.3317417,0.11932195,0.050820276,-0.3459759,0.24038228,-0.4192934,0.38243014,0.1363597,0.028993933,0.31381714,-0.25411856,-0.34427297,-0.7242844,-0.24004705,-0.5600812,-0.26685962,0.13983943,0.07056034,0.088938676,-0.0044175936,-0.053227607,0.54946315,-0.31137902,0.028045015,-0.11944994,-0.5203571,0.43779856,0.45436418,0.44490704,-0.43727896,0.6213936,0.021395495,-0.10590316,-0.22000016,-0.12839006,0.59324396,-0.02608016,0.40140474,0.05272185,-0.15430178,0.16950242,0.94448817,-0.008695146,0.374218,0.040115595,-0.22283116,0.22920081,0.16292709,0.13042927,-0.037597552,-0.6323105,0.05268952,-0.2357305,0.14374708,0.53677166,0.27316415,0.30537784,-0.10750809,-0.4160123,0.0895118,0.06032485,0.05850037,-1.2822171,0.36928067,0.17809214,0.8196837,0.5003555,0.050477937,-0.07973405,0.6833344,-0.14704858,0.119746685,0.3013167,-0.22877374,-0.4519354,0.43777406,-0.76924485,0.39700314,-0.05455372,-0.0733813,0.3189709,0.109576456,0.44312933,0.88462704,-0.16348232,0.019961994,-0.14399618,-0.25622827,0.14057735,-0.38792208,0.023583233,-0.597575,-0.4126053,0.6912704,0.4146691,0.36359766,-0.15166293,-0.06824781,0.18964949,-0.17280596,0.093040995,-0.050342903,-0.12021204,0.05424892,-0.6204744,-0.13841309,0.51534086,0.44072288,0.22250035,-0.15160277,-0.0044800364,0.23531005,-0.33260518,-0.27333874,-0.15904234,-0.6880244,-0.10129536,-0.35301793,-0.23462527,0.43754262,-0.20731041,0.19281766,0.083257206,0.13174197,-0.28177336,0.35028127,0.015343024,0.8894731,0.31787464,-0.21407357,-0.29788324,0.2253748,0.100063175,-0.26853353,-0.024695035,-0.24851605,-0.09504594,-0.7106603,0.4633128,-0.057406314,-0.54675907,0.41097134,-0.066537015,0.2082384,0.44144127,-0.15179406,-0.21127136,-0.0366599,-0.12147407,-0.26160818,-0.28905642,-0.06247034,0.25562656,0.13595816,-0.111758746,-0.17111582,-0.0068041477,-0.055420276,0.45947218,-0.031733017,0.2563437,0.17759922,0.23799118,-0.21419552,0.10367024,0.42432833,0.62483764,0.015704475,-0.14817582,-0.26554602,-0.2701843,-0.3970428,-0.1452774,-0.080374226,0.28195333,0.07670294,-0.17220153,0.82529706,0.3037511,1.2667699,-0.16952252,-0.3238467,0.13309328,0.5517628,0.08710795,-0.052951653,-0.4651286,1.0030094,0.6110242,0.0044406196,-0.15119226,-0.573443,-0.04253832,0.268501,-0.33762935,-0.06674525,-0.041877266,-0.6964637,-0.31165266,0.34687942,0.2758747,0.1141831,-0.12716071,0.16430172,0.18345888,0.084987834,0.2313931,-0.56618476,-0.07060364,0.23174715,0.4098722,0.087359555,0.17632848,-0.5533171,0.30401337,-0.719643,0.25347292,-0.061431985,0.13207568,-0.21443431,-0.22348192,0.271354,0.11477601,0.38645217,-0.35486427,-0.39009184,-0.22455941,0.5587844,0.12462559,-0.012330727,0.7326079,-0.30655855,0.061914306,0.1651342,0.419425,0.98783237,-0.18003467,0.18908681,0.36134928,-0.32626554,-0.6953193,0.3428388,-0.19524035,0.13511361,0.0027524186,-0.32342324,-0.56030744,0.12843893,0.0527054,0.016899228,0.15633425,-0.5788508,-0.053108137,0.3233587,-0.1476045,-0.23046805,-0.14731978,0.152285,0.5859521,-0.19977634,-0.418705,0.29245535,0.2833038,-0.09490069,-0.72105587,-0.11029867,-0.28381294,0.20638832,0.021827308,-0.43985373,-0.24700871,0.087181956,-0.5390247,0.069280475,0.18539988,-0.4132949,0.15379204,-0.40307263,-0.059930604,0.9098357,-0.21300378,0.36222976,-0.73334444,-0.56078184,-1.008517,-0.1988736,0.4688923,0.05538908,0.056820154,-0.7036197,-0.061733466,-0.15232502,0.04288843,-0.058865085,-0.41610187,0.3715712,0.06292686,0.4623865,-0.21549,-0.93021834,0.12166678,0.1619269,-0.27201557,-0.5443984,0.49098116,0.029071964,0.9132964,-0.041964464,0.030406965,0.24162076,-0.67345715,0.034061167,-0.1946438,-0.085636586,-0.5675141,0.105264954 -249,0.14600371,0.021789942,-0.63257056,-0.31400484,-0.49538094,0.2510211,-0.20787439,-0.04192969,0.22258337,-0.27837697,0.018337378,0.03562036,-0.2506934,0.51634187,-0.19678022,-0.8298531,0.09296721,0.048267536,-0.6484498,0.50395966,-0.3583124,0.42873117,0.13932952,0.28046337,-0.12446309,0.40084273,0.20885284,0.123462304,0.001582035,-0.23788486,-0.33306623,0.3270897,-0.49734205,0.45367125,0.11254204,-0.42302957,-0.099089675,-0.2980985,-0.015172805,-0.5936639,0.27349496,-0.6796691,0.6081912,-0.28883782,-0.38910517,-0.060040653,0.27579346,0.19151905,-0.12906744,0.064905435,0.20859228,-0.3742047,-0.1472278,-0.073626585,-0.4340051,-0.6206997,-0.54879856,-0.03322372,-0.89345706,-0.0677893,-0.2560566,0.37437886,-0.2629438,0.012867813,-0.19361624,0.3568182,-0.37898564,-0.041984554,0.18571724,-0.41844162,-0.046908744,-0.42574698,-0.12833856,0.05975759,0.2889233,-0.012363672,-0.18000595,0.26093858,0.43507504,0.50234187,0.118026786,-0.30216938,-0.22144958,-0.3235567,0.048454735,0.545045,-0.0055289334,-0.17203546,-0.28558332,-0.1528485,0.42915225,0.1955746,0.18911107,-0.3065794,-0.09703199,-0.21960625,-0.24065672,0.29681578,0.34491232,-0.5131009,-0.1047053,0.47644112,0.2827313,0.043612864,-0.40452403,0.21296047,-0.10907306,-0.32583836,-0.064660154,0.02901732,-0.06858846,0.48534584,-0.14497341,0.38066193,0.76085436,-0.03324001,-0.0050385636,0.047145553,-0.123965345,-0.2195504,-0.15175237,-0.02002794,0.10307103,-0.40301734,-0.113632046,-0.15956368,0.7068861,-0.081252985,-0.7316579,0.3608005,-0.30033085,0.0678682,-0.09538656,0.70170933,0.7585982,0.45270893,0.10624599,0.8570104,-0.4232953,0.011629869,0.0694121,-0.29924998,-0.05144628,-0.11124754,0.23127082,-0.5620562,0.2104003,0.14113916,0.06367178,0.08238739,0.4183398,-0.47280887,-0.13128118,0.027095782,0.56925714,-0.37860724,-0.25105223,0.95691377,1.0635153,1.0886272,0.10042386,1.078351,0.3232026,-0.115830384,-0.37581015,-0.18144462,-0.24202575,0.114328794,0.42308208,0.3490429,0.48162922,0.021626143,0.06886854,0.576163,-0.06457481,-0.1527002,0.1958622,0.23363689,0.016838152,-0.18356884,-0.49373594,-0.1434088,0.348828,0.07277024,0.1283676,0.31777325,-0.13691677,0.8568295,0.32301632,0.98325914,0.057900928,0.1073544,-0.08384712,0.20248011,0.1448933,-0.19973327,-0.07658293,0.2396939,0.12453674,-0.23549107,-0.36499745,-0.0342687,-0.35865912,-0.3462765,-0.21957125,-0.4349225,-0.38551205,-0.3253107,-0.3686664,-0.27226147,0.13145398,-0.4002835,0.2692904,-2.6194673,-0.24458691,-0.28271067,0.22938958,-0.20724835,-0.25579625,-0.13716754,-0.4761271,0.32073632,0.38049144,0.23110078,-0.5715887,0.5103594,0.46586952,-0.29217607,-0.23016493,-0.64152473,0.076270804,-0.11670959,0.4796131,0.0038946527,-0.3230322,-0.15382047,0.33728743,0.5875346,-0.00033361572,-0.032690514,0.28318742,0.3891658,-0.13637994,0.43979436,0.17822526,0.75971806,-0.14304452,-0.16107927,0.25659645,-0.5032788,0.3953164,-0.08002414,0.20641196,0.54039663,-0.3599949,-0.78757274,-0.610765,-0.22181307,1.2955953,-0.31204256,-0.5084547,0.2602156,-0.083901264,-0.30717543,0.23596145,0.47350186,-0.06253086,0.1266874,-0.47987774,0.10633794,-0.19478874,0.15946619,-0.20200725,0.04919117,-0.4402105,0.5834467,-0.14499702,0.5168366,0.2127942,0.23449714,-0.27662173,-0.27929333,0.12031541,0.96369785,0.5002355,0.00911487,-0.09691095,-0.14480498,-0.20114681,-0.29510635,0.19864218,0.48615727,0.5383639,0.16887243,0.10394064,0.285646,-0.15865524,0.106197916,-0.14368966,-0.28461644,0.0038479588,0.17777537,0.5805209,0.6331838,-0.06400221,0.5548951,-0.07733764,0.2879188,-0.22423837,-0.6284836,0.39786515,0.4656381,-0.22282131,-0.38512084,0.7611838,0.30860922,-0.37326744,0.3769753,-0.49898177,-0.5481044,0.4598802,-0.028869614,-0.34191114,0.15393993,-0.36865872,0.20460738,-0.8155189,0.2540676,0.035690494,-0.7741412,-0.5191759,-0.15160453,-3.201608,0.1396469,-0.10398125,0.020962758,-0.17154558,-0.24771313,0.29078427,-0.4910807,-0.6192861,0.053060394,0.071104124,0.5038723,-0.11914723,0.0493083,-0.19241498,-0.40795514,-0.10947449,0.39046893,-0.054650523,0.30175298,-0.09857186,-0.24542725,0.101461254,-0.37317386,-0.4809727,-0.12566125,-0.59847033,-0.6366846,-0.06418953,-0.4101303,-0.19979279,0.7248948,-0.46340337,0.035752513,-0.3528479,0.02420345,-0.099272914,0.17539968,0.23380291,0.18517949,0.1149586,-0.0029050687,-0.031977646,-0.41089258,0.14314106,-0.03171618,0.30606475,0.5125022,-0.07487974,0.3014279,0.42664954,0.63945544,0.062483516,0.9103618,0.12612174,-0.19418862,0.32345343,-0.30931956,-0.40610725,-0.7241979,-0.36746636,0.079187475,-0.53750867,-0.3786513,-0.030302882,-0.26143625,-0.7813028,0.5793706,0.30502108,0.19203034,-0.36490154,0.27953073,0.3689669,-0.12935503,0.061421122,-0.07089755,-0.23188102,-0.57311785,-0.4262189,-0.788905,-0.5902662,0.047766548,1.0585611,-0.2001679,0.011422639,0.09904827,-0.2688795,-0.0023567507,0.25792614,0.42076996,-0.0058431327,0.10908751,-0.24745655,-0.75050116,0.3390753,-0.4325838,0.030987795,-0.40566853,0.038956903,0.64808905,-0.51759946,0.45528433,0.37104115,0.31924823,0.039620418,-0.5853182,-0.06350409,-0.09010733,-0.22525704,0.54373854,0.25079083,-0.5215284,0.52900356,0.032880824,0.0339779,-0.5517107,0.35429874,-0.15540414,-0.03707611,0.08422259,0.48021677,0.02395727,-0.0538022,-0.14289968,0.013225747,-0.5567288,0.22256999,0.3778627,0.016286539,0.44043222,-0.111882314,-0.5145029,-0.53219974,-0.1593708,-0.54415715,-0.18065558,-0.077527866,-0.0085976375,0.09506837,0.14441428,-0.122633286,0.4542851,-0.3529603,0.13284582,-0.26775503,-0.35425743,0.39306542,0.54334325,0.37179017,-0.44043484,0.6515334,0.22459282,0.109910525,-0.31179714,-0.032201786,0.6104501,0.11408063,0.4158823,-0.10025328,-0.065011896,0.18506457,0.7725387,0.19635202,0.28435078,-0.044711005,-0.20447788,0.116068974,0.041511122,0.25133258,-0.031881202,-0.30585843,0.02911478,-0.19595805,0.16110232,0.44189516,0.12923765,0.4587255,0.010842987,-0.09017156,0.30409288,0.06521855,-0.2755387,-1.162585,0.40746897,0.35893813,0.7409047,0.41232714,0.10860717,-0.20896606,0.5720301,-0.46704176,0.012483886,0.4416823,0.011872845,-0.15749474,0.68478525,-0.583197,0.42625156,-0.19712183,0.026887903,0.121126965,0.046533566,0.32602316,0.97590363,-0.17958759,0.065851614,-0.07444812,-0.34033728,0.054079887,-0.25048584,0.05577739,-0.33164102,-0.3471995,0.5876556,0.23492731,0.44314495,-0.28813052,0.029941244,0.13420412,-0.15548314,0.124489866,-0.17375931,0.06780345,-0.32242176,-0.32615307,-0.35420838,0.5513404,-0.015738716,0.04898843,0.22179472,-0.36190346,0.2874458,0.23377965,0.021620853,-0.045190185,-0.39723587,0.090554394,-0.30765796,-0.64666194,0.27124324,-0.40676203,0.32498452,0.19875202,-0.025667382,-0.11746641,0.22515683,0.11775751,0.5971586,0.14992464,-0.19873057,-0.12860343,0.008744555,0.26547456,-0.36668348,-0.11615,-0.32591304,0.3559932,-0.6042399,0.49664813,-0.28537074,-0.39105907,-0.080431044,-0.17279372,0.10322632,0.10902514,-0.06683929,-0.019408235,0.17643121,0.04366342,-0.19083007,-0.04742843,-0.46804097,0.2455688,-0.08597757,-0.07884293,-0.06521274,-0.06619298,-0.10740372,0.20340252,-0.14796226,0.2365657,0.22490358,-0.205663,-0.43634653,0.14061208,0.04785094,0.3756458,0.033205908,0.043982036,-0.18534425,-0.32192865,-0.3926918,0.6074306,-0.092733495,0.18713653,0.11413924,-0.31214315,0.8687421,0.08761911,1.0867333,0.07637893,-0.5314645,0.081353255,0.44864967,0.14846937,0.22267781,-0.15972732,1.0679835,0.57309043,-0.1444223,-0.1070344,-0.55066615,-0.16514573,0.3377312,-0.23126648,-0.30803356,-0.030310784,-0.7079322,-0.099484526,0.122498564,0.07049716,0.15474088,-0.04756558,0.013584887,0.107293926,0.24564895,0.41239908,-0.634519,-0.06817608,0.3417463,0.067741424,-0.015526648,0.2022612,-0.37832707,0.37860298,-0.8767203,0.2182715,-0.48234674,0.1004997,-0.1606041,-0.29751724,0.3316786,0.06468,0.29471526,-0.16418724,-0.39987642,-0.2529529,0.5375813,0.15063174,0.17402098,0.77797765,-0.267153,-0.11227101,0.18973242,0.5281814,1.2448262,-0.03664208,0.16575466,0.22605214,-0.2649483,-0.5917204,0.15481567,-0.40830544,0.08826125,0.017128306,-0.4464728,-0.23052227,0.29034156,0.16900972,0.014593961,0.29343876,-0.2977968,-0.19383252,0.12678766,-0.48694962,-0.17599568,-0.3173149,0.0736304,0.577781,-0.36744413,-0.27837604,0.03735637,0.43223816,-0.31218907,-0.817738,0.1324128,-0.084366545,0.5145919,0.1605952,-0.49013063,-0.0131798815,0.2478251,-0.41819695,0.25145048,0.61406845,-0.28487536,0.04365825,-0.47313148,0.019329028,0.95596445,0.062489484,0.15503936,-0.7340069,-0.54326564,-0.8272987,-0.3116376,-0.120918,0.10722752,-0.0777271,-0.492127,-0.2637169,-0.20565765,0.016930249,0.20181002,-0.4822676,0.3673625,0.14322074,0.43020657,-0.041246396,-1.1618799,0.023769477,0.10407734,-0.012198175,-0.4954808,0.4675854,-0.19904883,0.6610712,0.24097838,-0.0047933375,0.09194744,-0.61590844,0.33626747,-0.24680017,0.009079993,-0.66969484,0.061005395 -250,0.47679836,0.10323671,-0.48943245,-0.12899408,-0.18518104,0.15684171,-0.21296264,0.5780267,0.19448045,-0.34815374,-0.012704613,0.1287192,-0.16542855,0.3369129,-0.20785287,-0.6265829,0.14117657,0.043556675,-0.42726773,0.72734183,-0.22844383,0.41622332,-0.13410343,0.35820848,0.01621577,0.308958,0.040437117,-0.0021081844,-0.16644688,-0.28462678,-0.058643855,0.40555865,-0.2998628,0.22840519,-0.3362777,-0.17539972,0.11210262,-0.23537603,-0.28358582,-0.6158897,0.22310552,-0.49041733,0.6019228,-0.09600555,-0.3304505,0.27524063,0.17056091,0.11904276,-0.109833315,-0.062538944,0.108317055,-0.16699222,-0.022496048,-0.28800938,-0.29634413,-0.6484408,-0.413943,0.059511784,-0.6115417,-0.10371034,-0.21139301,0.10769408,-0.3211132,-0.23756285,-0.06150837,0.58963203,-0.24587895,-0.009709605,0.09863846,-0.16784182,0.0371425,-0.65238434,-0.0669843,-0.09826791,0.2948355,-0.04158721,-0.06331354,0.31683254,0.21060649,0.47521606,-0.02947456,-0.24611704,-0.20037574,-0.22055952,-0.011745214,0.5297162,-0.24825104,-0.6098277,-0.16099742,0.059206836,0.366692,0.13963443,0.059568282,0.05061972,-0.038438782,-0.18567643,-0.18471093,0.48489323,0.5710935,-0.3022933,-0.27957404,0.3746681,0.42772585,0.3054131,-0.18377352,0.015676912,-0.17580003,-0.37780342,-0.24888317,-0.029902799,-0.15590738,0.3604224,-0.03611113,0.07068186,0.48948702,-0.03187697,0.01873455,0.1832677,0.15856785,0.24889097,-0.10809649,-0.27405387,0.11172389,-0.44345635,0.03189981,-0.25638872,0.6005032,0.1283543,-0.6077698,0.38801834,-0.4996226,0.016794449,0.05983105,0.42509848,0.76701033,0.5265917,-0.013579551,0.4421161,-0.29415673,0.0076065143,-0.11525919,-0.04496534,0.07883798,-0.1690376,-0.049790733,-0.45315424,0.10365799,0.07131323,0.018524365,0.010524813,0.2247055,-0.4720042,-0.21287575,0.27219832,0.9587011,-0.24257499,-0.087040745,0.6729928,1.0989513,0.8642101,-0.19731967,1.032594,-0.04160932,-0.23968671,-0.049123876,-0.27581358,-0.46328735,0.24275479,0.35671476,-0.1272846,0.45054597,-0.033940602,-0.03517895,0.24515657,-0.34844264,-0.19359079,-0.11093751,0.2654215,-0.038977616,-0.09163438,-0.64378315,-0.23096745,0.06504668,-0.092422724,0.390962,0.37832,-0.27685803,0.3664074,0.015696583,1.0833637,-0.03415807,0.16745837,0.12768912,0.45331416,0.2999677,0.07495507,0.031788494,0.30074447,0.2170073,0.16696505,-0.43200016,0.15775786,-0.42813867,-0.42512113,-0.19119018,-0.4000058,-0.09564459,0.06685986,-0.3178577,-0.05233831,-0.11631031,-0.2210465,0.29929563,-2.834272,-0.17632535,-0.13943468,0.30950755,-0.19164456,-0.24698572,-0.20156789,-0.34752738,0.35304958,0.25058705,0.51873475,-0.44723848,0.37787372,0.418742,-0.3870144,-0.114131615,-0.45840135,-0.16333331,-0.029218996,0.52807117,-0.025064796,0.012260421,0.008383397,0.30653408,0.5354039,0.10548345,0.13909218,0.17503026,0.357063,-0.0019317548,0.22228403,-0.070904285,0.5698277,-0.36407146,-0.1279746,0.22423881,-0.38513422,0.30991665,-0.21647169,0.11863315,0.39943498,-0.43556988,-0.78623265,-0.38141307,-0.12102105,1.2542989,-0.096341714,-0.34617534,0.11881173,-0.2918708,-0.414628,-0.0529506,0.40009594,-0.26644152,0.012535493,-0.58828104,0.010797119,-0.18796706,0.14941362,-0.07687471,0.04175232,-0.4978199,0.5135136,0.021018393,0.49821606,0.14832275,0.32347733,-0.27918664,-0.45168215,-0.09329255,1.0134287,0.54227865,0.005569467,0.045442414,-0.072467044,-0.4398709,-0.008061076,0.1155378,0.7688197,0.5812157,0.045296736,-0.017219376,0.1587119,-0.073587306,0.22215852,-0.0035640956,-0.39873683,-0.15697311,0.1497247,0.75213915,0.45021516,-0.26416728,0.37236717,0.065008484,0.3113722,-0.31086054,-0.36605012,0.41527098,0.7533279,-0.34235966,-0.24497885,0.8517862,0.5672886,-0.2714394,0.47178555,-0.5859689,-0.4223716,0.38705456,-0.23558007,-0.38206452,0.26186916,-0.25696567,0.111514874,-0.88176626,0.32365665,-0.39449462,-0.59297526,-0.58448166,-0.045620788,-2.525825,0.09665207,-0.1894266,-0.15145905,-0.30262348,-0.05074807,0.22060782,-0.6106826,-0.5583309,0.1549204,0.046261773,0.6604787,-0.12759143,0.13225041,-0.13339774,-0.5678099,-0.06397061,0.2627169,0.14065978,0.27481276,-0.0634703,-0.30335626,-0.04960868,0.0054352423,-0.3060713,0.18594737,-0.63721716,-0.3746626,-0.088844076,-0.47984594,0.008447377,0.73389184,-0.40316698,0.07687047,-0.33732903,0.1496595,0.027038552,0.010479387,0.0691971,0.26472318,0.16627645,-0.14275548,0.1751129,-0.38369653,0.39077446,0.13823134,0.41811296,0.24638405,-0.020893244,0.07336688,0.58457816,0.5266645,0.002682543,0.8217944,0.41668898,0.025304647,0.46093553,-0.35235196,-0.41421917,-0.4406432,-0.37027597,0.20249395,-0.29250896,-0.38507032,-0.19326153,-0.35617706,-0.85409147,0.5156886,-0.037407048,0.19172427,-0.3130027,0.381987,0.49549034,-0.17483005,-0.00918719,0.07107481,-0.2039405,-0.31858382,-0.21329302,-0.58113635,-0.3511743,-0.046257775,0.92117405,-0.23477322,0.17427951,0.10586234,-0.122375995,0.046618592,-0.017488206,0.19105162,0.08152383,0.34111068,-0.16881797,-0.6351804,0.4522947,-0.26720074,-0.16474588,-0.40337044,0.12963274,0.6739304,-0.6768544,0.40455613,0.4845515,-0.035826843,-0.46654797,-0.5982458,0.11663513,0.16547519,-0.09253015,0.3451524,0.19781122,-0.68666273,0.44193396,0.06854828,-0.32246467,-0.5539131,0.5869774,-0.07506575,-0.17465827,-0.049047675,0.41223633,0.16567153,-0.04744563,-0.09682218,0.22431011,-0.3169761,0.30162674,0.10581244,-0.04145768,0.32085997,-0.27923483,-0.040152393,-0.80576766,-0.110776804,-0.61075264,-0.31352666,0.3797062,0.067060195,0.06962381,0.061980892,-0.040174205,0.40898487,-0.5781742,0.27169782,-0.053035013,-0.38514364,0.5791353,0.3792555,0.6103321,-0.40172336,0.44683513,0.08648279,-0.14543985,0.097552575,0.112637535,0.5932267,-0.09198145,0.4148656,0.0010291178,-0.034163468,0.42731497,0.6030632,0.22212501,0.22428423,0.11980171,-0.11048685,0.1528439,-0.13557695,-0.00024303993,-0.01011979,-0.51886773,-0.31528,-0.02895565,0.094801195,0.45632058,0.022156062,0.32507217,-0.14128153,-0.28585583,0.070003465,0.08321252,0.10558109,-1.2353128,0.43424094,0.10943374,0.73678905,0.2017656,0.26054555,-0.04262627,0.57864743,-0.10654369,0.08719257,0.3603105,0.079088144,-0.35281822,0.48109695,-0.44631964,0.5085581,-0.053976603,-0.010353736,0.0064982893,-0.21382223,0.51312536,0.94916743,-0.12065349,0.07380919,-0.017448012,-0.35607657,0.077294864,-0.34140396,0.15867952,-0.438024,-0.2424744,0.4824739,0.42927864,0.32625037,-0.24664982,0.09573049,0.16503593,-0.06795283,0.17135127,-0.05126204,0.06950137,-0.21700725,-0.52090657,-0.21330051,0.45933193,0.064499795,0.11073726,0.022834023,-0.082467,0.38181642,-0.029217899,0.13225484,0.025378598,-0.47442302,0.061462745,-0.29629657,-0.38598424,0.4725359,-0.37636873,0.16806497,0.11262543,0.10717675,-0.36145872,0.28983432,0.1967584,0.44860622,-0.05659523,-0.2114175,-0.36301896,0.03621398,0.07315334,-0.3356333,-0.11394564,-0.31474915,0.27361843,-0.6355113,0.22320251,-0.13620186,-0.21308857,-0.18822473,-0.09458964,0.085464954,0.33227012,0.08241401,-0.07618641,0.0024735709,-0.15236174,-0.35158756,-0.2697598,-0.1103082,0.18295802,0.24427809,-0.047530454,-0.2713742,-0.18393181,-0.24757619,0.22955988,0.15481587,0.34833518,0.5422986,0.21702738,-0.12441412,-0.03998224,0.20886907,0.31808242,0.0140265785,-0.061252758,-0.34694073,-0.40120232,-0.2294188,0.3598314,-0.20067474,0.13621302,0.14322314,-0.1742866,0.68186986,-0.08110415,1.112326,0.048517488,-0.2726498,0.08709065,0.5053843,-0.05254441,0.035245404,-0.30610567,1.1541446,0.45873487,-0.060888037,-0.072917305,-0.34239656,0.06714129,0.050477777,-0.25407228,-0.26650426,-0.0758736,-0.49097267,-0.29569718,0.22856286,0.21785812,0.123236604,-0.12847129,-0.0688454,0.24074984,0.18393926,0.31132093,-0.50640386,-0.11812928,0.4798289,0.15083669,-0.010110521,0.23271841,-0.35981706,0.25991267,-0.6421318,0.05535392,-0.3295664,0.1276386,-0.21082108,-0.37175986,0.22933702,-0.17534946,0.37825212,-0.4575483,-0.3462891,-0.13243577,0.19975385,0.11505689,0.017198507,0.3675104,-0.23927797,-0.02402418,0.033086166,0.6176207,0.91779274,-0.099197835,-0.047123082,0.19416027,-0.3324395,-0.76643777,-0.07768098,-0.48507875,0.17974468,-0.23277998,-0.3782812,-0.46551913,0.37935147,0.1902086,0.047256526,-0.09127739,-0.4450579,-0.13224734,0.12827343,-0.26367226,-0.28631312,-0.10916353,0.08313993,0.58425635,-0.3112852,-0.3760581,-0.17275698,0.3175579,-0.28089577,-0.8120676,-0.023433903,-0.35091537,0.23308049,0.21931921,-0.39939874,-0.1072423,-0.10418404,-0.4013329,0.3316795,0.3461218,-0.31635866,-0.062388007,-0.3028083,0.0075489837,0.6618949,-0.05440666,0.09883855,-0.34329975,-0.44456893,-0.7747372,-0.42214966,0.17349362,0.1864171,-0.0011495233,-0.7062984,0.0016595046,-0.28169903,-0.06632716,-0.0134361265,-0.24036561,0.21160874,0.10189685,0.38797086,-0.25133514,-0.8926887,0.19149442,0.12522109,-0.2067865,-0.5977627,0.40905783,-0.07775011,0.8605484,0.06304104,0.07362123,0.21933511,-0.5443906,-0.07954507,-0.22035322,-0.028161226,-0.6254722,0.27432242 -251,0.5377277,-0.22152969,-0.56640804,-0.18224421,-0.16568391,0.08124601,-0.22936177,0.6146669,0.13209058,-0.5759605,-0.06600191,0.006462455,0.11496328,0.458501,-0.1047144,-0.5745807,0.034177568,0.11836719,-0.507023,0.69854397,-0.43400052,0.1299069,-0.1527503,0.6378273,0.30992702,0.3202204,0.054993007,0.110306814,-0.080904566,-0.1875345,-0.09012952,0.4199553,-0.5503047,0.08295584,-0.025906196,-0.49530667,-0.2557679,-0.3737571,-0.24748072,-0.67854184,0.23204923,-1.0794741,0.6407356,-0.03980309,-0.39302307,0.23216711,0.2724272,0.2650621,-0.20330384,-0.08516828,0.07781916,0.015823718,0.0861109,-0.30068353,-0.10939431,-0.54927224,-0.62051636,-0.053410523,-0.3983286,-0.066547416,-0.12182082,0.16306546,-0.2875536,0.054576296,-0.27011484,0.32023492,-0.5071395,0.069352195,0.1823593,-0.10407265,0.33766943,-0.49455643,-0.29337475,-0.11998994,0.124676704,-0.11331188,-0.32279125,0.20447445,0.2782592,0.49142092,-0.12113308,0.021705035,-0.34010935,-0.041960735,0.060721222,0.4825326,-0.24787302,-0.5410771,-0.31205988,1.552701e-05,0.23423035,0.1531996,0.2488478,-0.25737813,-0.04348502,-0.021289766,-0.22217822,0.27948493,0.4194893,-0.31285468,-0.45388037,0.27345482,0.41353717,0.17684095,-0.36210546,0.108910665,0.04222422,-0.536823,-0.07707466,0.0862175,-0.021495346,0.50262356,-0.12750271,0.12990664,0.56036866,-0.13408966,0.095325865,0.13228954,0.02391472,-0.17854545,-0.32469216,-0.30785874,0.19794618,-0.3496084,0.1584016,-0.34913057,0.6633073,-0.009254022,-0.7406806,0.32073012,-0.6041139,-0.03751074,-0.2065736,0.39701357,0.68995064,0.40454057,0.036942217,0.5447559,-0.24679063,0.018149793,-0.09818309,-0.24329282,0.15377016,-0.1604391,0.0021240967,-0.68128145,0.18280879,0.18196954,-0.08016864,0.08101102,0.63263786,-0.5907955,-0.2157743,0.19933309,0.82493263,-0.3483215,-0.067194395,0.85554284,1.0709534,0.9221508,0.12981145,1.1794695,0.25302535,-0.15394373,0.20308678,-0.20300902,-0.6539445,0.19368076,0.23301278,-0.14733516,0.35434097,-0.00547577,-0.15198143,0.46547514,-0.13857667,0.055222306,-0.15909772,0.2376603,0.039244287,-0.15591559,-0.38030177,-0.23305576,-0.027271403,-0.12068302,0.303658,0.19437326,-0.37711948,0.47318262,0.08161998,1.7136301,-0.16133176,0.09062847,0.025395988,0.4743721,0.22188602,-0.21512198,0.05644534,0.27998465,0.4305706,0.05471546,-0.5133978,0.25760967,-0.123537466,-0.5693987,-0.16337255,-0.40789914,-0.15671071,-0.08531477,-0.60412747,-0.14462925,-0.07379962,-0.09513688,0.3148376,-2.6939948,-0.19425043,-0.041243605,0.3169687,-0.24271218,-0.40820733,-0.25015786,-0.32044485,0.39301512,0.30407032,0.3891329,-0.6314613,0.52940357,0.26206288,-0.35634544,-0.047930546,-0.62664443,-0.22069776,-0.0129643995,0.40013498,-0.14688894,-0.0027160475,0.25879952,0.276864,0.44994143,-0.08641655,0.08661977,0.19657023,0.35381582,0.07569247,0.36523363,0.00013666494,0.6455621,-0.17677037,-0.20686433,0.28489724,-0.3504653,0.2816184,0.065308444,0.21570003,0.40831184,-0.40529826,-0.9367854,-0.78821987,0.0011792183,1.0769302,-0.27050528,-0.32922664,0.14274094,-0.36509234,-0.39232472,0.0124651,0.4620871,-0.15333274,-0.02634791,-0.9260668,0.009073443,-0.15195796,0.15396354,-0.103232734,0.050549824,-0.44412062,0.5913619,0.027171893,0.65100086,0.32144752,0.18632591,-0.36096543,-0.5326804,0.08100021,0.8202356,0.3125665,0.17242913,-0.10395842,-0.20994452,-0.44463608,0.023140877,0.22795062,0.63171047,0.5631894,0.111676864,0.20554085,0.2324663,-0.17812647,0.102812365,-0.16394551,-0.26811704,-0.12360133,0.14009713,0.47567916,0.48266813,-0.30417952,0.46988896,-0.21982037,0.505836,-0.2555351,-0.534061,0.41775793,1.0667953,-0.27306697,-0.48258966,0.69342613,0.5904204,-0.33725604,0.40381008,-0.654791,-0.27241442,0.23550877,-0.22994693,-0.19786583,0.29056674,-0.31842437,0.30539054,-1.1755145,0.1997439,-0.41759846,-0.39336014,-0.6084401,-0.14455946,-3.506905,0.28244707,-0.10491657,-0.3084707,-0.20877469,-0.322314,0.4392031,-0.70473224,-0.59215134,0.106517516,0.016880253,0.73633397,-0.07154519,0.0894257,-0.3326369,-0.25539896,-0.15470822,0.28487992,0.06563632,0.34286624,-0.0830239,-0.3936768,-0.08427395,-0.0046705604,-0.35313505,0.09752606,-0.6973787,-0.590586,-0.00626593,-0.48588738,-0.2171094,0.53138757,-0.27012587,-0.049361516,-0.19023679,-0.028465157,-0.1682874,0.36853656,0.07670183,0.17538905,0.1623659,-0.011034404,0.070881076,-0.3708237,0.13185713,0.042613465,0.14569993,0.4472642,-0.17720325,0.31711927,0.4955103,0.5553314,0.05222146,0.74776894,0.58478725,-0.0045526274,0.34553462,-0.4016445,-0.23742354,-0.5542703,-0.28752047,-0.16613708,-0.4046051,-0.42660925,-0.1778464,-0.28860497,-0.7556674,0.57131255,-0.0013803287,0.18562962,-0.080946214,0.34523836,0.52827084,-0.099333405,0.0054487246,-0.17090014,-0.16108263,-0.52218455,-0.41773567,-0.5437872,-0.44771358,-0.0104182875,1.0114604,-0.16894317,0.06771415,0.046314925,-0.2516589,-0.022868615,0.26143956,0.06476001,0.14054155,0.47057906,-0.16760233,-0.6432748,0.38716584,-0.20078178,-0.21375777,-0.5629401,0.28554174,0.43473843,-0.71814376,0.5592559,0.29634425,0.1453146,-0.35362735,-0.5213737,-0.15520681,0.063725196,-0.17395008,0.49262398,0.33989206,-0.7755197,0.40732902,0.37975153,-0.10703744,-0.6097175,0.5478011,-0.034267925,-0.3619078,-0.24077633,0.31264094,0.027146365,0.09330981,-0.18487044,0.13046561,-0.49713737,0.212518,0.09233616,-0.046979517,0.2338588,-0.21127857,0.0098739015,-0.7070759,0.10110397,-0.60026973,-0.38372403,0.3158292,0.034582637,0.31468007,0.24062033,-0.11666263,0.3323667,-0.372817,0.08930288,-0.12851486,-0.22060819,0.25725448,0.46131536,0.3615044,-0.36377293,0.5768983,0.05839596,-0.10887177,0.17754875,0.08432998,0.5763523,0.1333162,0.46491292,-0.052267067,-0.23454356,0.22016168,0.69702333,0.16598344,0.4315659,0.012424673,-0.12169152,0.17895119,0.03543375,0.1361965,0.031260762,-0.4156004,-0.22027636,-0.18151376,0.26050165,0.61761093,0.1322665,0.3186304,-0.10710088,-0.26306948,0.09462143,0.12585194,0.07527868,-1.4283649,0.39737484,0.28487003,0.66955984,0.4916187,-0.074405916,0.0137801105,0.4143267,-0.30488732,0.20053114,0.43067613,-0.008822654,-0.59631836,0.5794987,-0.7610894,0.34996453,-0.084525764,0.048478764,-0.03439676,-0.068198256,0.43268892,0.81539756,-0.08408521,0.21687706,0.23083435,-0.4388211,0.12329579,-0.32035837,-0.048995223,-0.5969599,-0.14882796,0.6814037,0.5205969,0.4733817,-0.26380387,-0.003581096,0.18063672,-0.0139927,-0.046865635,0.11689382,0.3258417,-0.04409104,-0.6050414,-0.2617415,0.54960805,-0.13763176,0.19358197,0.16395055,-0.49362665,0.29241663,-0.011668682,-0.06638905,-0.018208865,-0.6367718,0.035028078,-0.37882456,-0.45865828,0.55629694,-0.28398842,0.08111096,0.25514925,0.11642535,-0.12603222,0.14843397,0.0468618,0.8773791,-0.05854452,-0.12240179,-0.4485531,0.23043816,0.2996092,-0.15268907,-0.25150833,-0.3754444,0.13174966,-0.46924666,0.35391167,0.03961134,-0.36706665,-0.0075689596,0.07639067,0.20417312,0.4023168,-0.14700899,-0.18347014,-0.041307103,-0.023832848,-0.4611331,-0.20919129,-0.06294419,0.30741474,0.25291693,-0.0012499435,-0.1303502,0.00221073,-0.010660201,0.42994067,0.08284879,0.55963147,0.646903,0.14859426,-0.20961405,-0.07835836,0.46293524,0.36722025,-0.14075562,-0.04481938,-0.3705171,-0.4892592,-0.3478343,0.29332948,-0.1879119,0.39101,0.08440859,-0.2607489,0.8677718,0.017521653,1.0471613,0.06743372,-0.38567677,0.19316646,0.4313766,0.047743924,-0.07531655,-0.4031086,1.0187114,0.57498986,-0.04736158,-0.11039137,-0.33839232,-0.14322717,0.2792569,-0.30137,-0.16354856,-0.0913442,-0.67793906,-0.2783251,0.08093678,0.25883958,0.28533456,-0.04572962,0.21328616,0.19147158,0.002893911,0.20226763,-0.48122764,-0.06301598,0.22705154,0.35703963,-0.038699966,0.27264303,-0.54300225,0.27638385,-0.51994526,0.045351725,-0.3495021,0.124417976,-0.012859089,-0.3198321,0.13597028,0.00020017794,0.19643858,-0.36571082,-0.23522918,-0.21463099,0.5366188,0.100169815,0.1081185,0.68894523,-0.23265389,0.19488382,0.18776672,0.47361395,1.1296873,-0.11617989,-0.0076501453,0.24868019,-0.34861636,-0.8511774,0.2844211,-0.18091328,0.5017188,0.028851127,-0.21081711,-0.57993084,0.4233532,0.17290023,-0.0054434366,-0.109094724,-0.37227324,-0.21216334,0.35466033,-0.20334533,-0.19873415,-0.3301463,0.0069562537,0.50564253,-0.20104423,-0.2638728,0.04311028,0.24518487,-0.15982226,-0.57070976,-0.03414889,-0.38311362,0.3084907,0.15299357,-0.29557487,-0.110188074,0.005277265,-0.4119406,0.33038765,0.3667182,-0.23690604,0.118272744,-0.5149786,-0.01984489,0.98871607,-0.20456629,-0.015055529,-0.7227245,-0.5224811,-0.7176412,-0.4922033,0.2911172,0.09160381,0.022212151,-0.73547965,0.14783835,-0.045631774,-0.299755,-0.060946617,-0.31952143,0.5124084,0.045498706,0.353318,0.041461248,-0.6294257,0.26133844,0.05243544,-0.026110124,-0.5919465,0.5510544,-0.1322203,0.96193516,0.09439421,0.1605898,0.312465,-0.5813092,-0.12579001,-0.27005473,-0.06028073,-0.8481798,-0.007455451 -252,0.40791732,-0.2724486,-0.48890635,-0.1224891,-0.23300055,0.15884201,-0.14443114,0.57806647,0.36819723,-0.36602217,-0.035221394,-0.14074388,0.042104796,0.2673791,-0.16225335,-0.4745639,-6.187879e-05,0.21052083,-0.4452561,0.55112517,-0.23554823,0.23668358,-0.08472545,0.4366291,0.24779317,0.40814403,-0.034716986,-0.024775198,-0.10645978,-0.20748895,-0.08006362,0.124993294,-0.4289476,0.17404667,-0.1406017,-0.06576629,-0.023352278,-0.55798525,-0.41151804,-0.7971465,0.4008795,-0.8736471,0.5129269,-0.023004564,-0.35258424,0.3231112,0.23656988,0.3356353,-0.22478205,-0.04925429,0.28691667,-0.15483944,-0.0729198,-0.1428199,-0.17919014,-0.20362407,-0.5379034,-0.10017046,-0.3265683,-0.28311288,-0.28437436,0.27461582,-0.3433581,-0.0410925,-0.131404,0.8375593,-0.41028774,0.1359839,0.19136442,-0.4524578,0.4094968,-0.6736836,-0.0131700635,0.006163455,0.34515303,-0.006450039,-0.057797037,0.1442793,0.19757271,0.30056757,0.009551415,-0.22311704,-0.38056767,-0.166213,0.11371672,0.58251464,0.050542496,-0.30033362,-0.050056197,-0.1572428,0.09962444,0.06296244,0.26540965,-0.40347078,-0.18705034,-0.039642446,-0.2785788,0.46313283,0.37416986,-0.2916905,-0.056979068,0.44770506,0.71630067,0.10397957,-0.20987129,0.15083733,0.023949184,-0.54064447,-0.054168403,-0.024315394,-0.23369224,0.51465535,-0.22429116,0.20575632,0.71355945,-0.108049236,-0.13438447,0.0659705,0.15164004,0.051137522,-0.4312979,-0.12866817,0.25796932,-0.3508042,0.16908778,-0.2062032,0.6815593,0.18766266,-0.49546644,0.32490733,-0.5163185,0.11991754,0.026857715,0.4016433,0.43942404,0.4941627,0.30708745,0.81999695,-0.49849877,0.07226034,-0.05852004,-0.35570362,0.06408713,-0.107089505,0.124974556,-0.4145655,-0.0033035278,-0.07185609,-0.22620443,-0.07163144,0.40901592,-0.47123364,-0.10106402,0.23397954,0.9840278,-0.25005677,-0.064613946,0.7849797,0.9506661,1.0161434,-0.08378822,1.159484,0.06291365,-0.23067474,0.008248852,-0.3091501,-0.7053065,0.31015623,0.41985697,0.4615038,0.12447734,0.088187166,-0.033585005,0.5158731,-0.33429962,0.090380155,-0.16793476,0.2133207,0.20290725,-0.16451383,-0.54652494,-0.21141608,-0.025768647,0.17692828,0.25813803,0.08000858,-0.3063531,0.34716946,-0.07743817,1.8518565,-0.24096023,0.18926637,0.24023129,0.4637515,0.23878469,-0.17256619,-0.15744273,0.5328268,0.2703327,0.21891573,-0.61523765,0.25659335,-0.21898219,-0.48625565,-0.24591559,-0.34594995,-0.028779875,-0.105026245,-0.40442637,-0.16688734,-0.16802146,-0.47099134,0.3219753,-2.6543088,-0.25734064,-0.16878554,0.4408259,-0.2648146,-0.25165555,-0.04255536,-0.47003588,0.29178175,0.36040667,0.5458347,-0.7152461,0.36833686,0.5855704,-0.5911249,-0.1637605,-0.5327335,-0.14199834,-0.095517926,0.4404235,0.11804792,0.009365071,-0.09277881,0.22052486,0.5070629,0.08523266,0.12731187,0.45855284,0.42468813,-0.09605917,0.5069361,-0.06622282,0.48723844,-0.036040656,-0.21286538,0.33834898,-0.4120881,0.07883231,-0.19554019,0.034899004,0.40326735,-0.3141584,-0.9221223,-0.72784,-0.025719358,1.1865277,-0.25945613,-0.53268564,0.4121998,-0.38475868,-0.39970714,0.08595888,0.59115434,-0.08184973,-0.01707237,-0.80172217,0.025057912,-0.17062838,0.17210586,0.056589916,-0.22141396,-0.5253981,0.8352463,-0.087654956,0.6841266,0.3461482,0.20313817,-0.39335915,-0.37617543,0.032828625,0.86435235,0.3536835,0.10483355,-0.1765721,-0.011489228,-0.2941407,-0.13930921,-0.055504978,0.6978477,0.5169668,-0.07765797,0.10782961,0.24628662,-0.10386863,0.03546724,-0.12711956,-0.4026502,-0.14511663,-0.01723726,0.45818093,0.65293705,-0.11589448,0.28814808,-0.14642087,0.38826534,-0.057149928,-0.5348249,0.40882438,0.91383845,-0.314963,-0.3830276,0.643664,0.34594277,-0.3956362,0.41272524,-0.5770333,-0.1913638,0.44936448,-0.28046182,-0.59838647,0.15690583,-0.23937607,0.053145345,-0.7603117,0.18009456,-0.26351386,-0.62803924,-0.21712539,-0.19526552,-3.1924853,0.22002986,-0.22049761,-0.26825625,-0.2147169,-0.11756113,0.087707356,-0.57307726,-0.5985256,0.13876957,0.15398803,0.70336825,-0.14607134,0.1610464,-0.2767083,-0.18436447,-0.19025029,0.21876019,-0.097324625,0.38219386,0.039500043,-0.46744746,-0.07802537,0.009476891,-0.5356789,0.059704043,-0.6327037,-0.37535015,-0.21355408,-0.53341603,-0.27036068,0.7185039,-0.269423,0.09989238,-0.2903105,0.099232286,-0.13935135,0.22007836,-0.08216346,0.27762944,0.068990864,-0.035368994,0.09757249,-0.14255191,0.24583618,0.046926178,0.29340807,0.18995503,-0.08190085,0.11908608,0.58363956,0.60816556,-0.19686416,0.9820101,0.38569185,-0.06695306,0.19565056,-0.13289341,-0.19531132,-0.4669992,-0.257884,0.2681328,-0.4756147,-0.3339973,-0.06977495,-0.37838665,-0.73371124,0.5394936,0.12594233,0.17542244,0.122841746,0.22654754,0.5209927,-0.27530944,-0.050856315,0.053193074,-0.17613246,-0.6370251,-0.115674846,-0.63033897,-0.42593816,0.08938515,0.8959952,-0.32039437,0.12400195,0.097005,-0.34685305,0.015469388,0.18742225,-0.10241677,0.07034662,0.5887652,-0.1374169,-0.63722223,0.35340574,-0.26436168,-0.05609653,-0.45966294,0.32737747,0.53051585,-0.47638887,0.68007255,0.1926589,0.016834598,-0.43603718,-0.51739347,-0.16107577,-0.092552915,-0.24717453,0.46504927,0.24472883,-0.7598231,0.30307764,0.18242033,-0.3260624,-0.757526,0.36873677,-0.2525342,-0.35883725,-0.16805246,0.47554186,0.057085138,-0.1323732,-0.24629416,0.23358926,-0.33804783,0.23817681,0.24413553,-0.110342346,0.31943983,-0.23932208,-0.18728368,-0.7536632,-0.17945202,-0.415349,-0.30754077,0.2290127,0.006286057,-0.0243301,0.1957319,0.122005895,0.42155075,-0.2663119,0.0684261,-0.16082639,-0.27965814,0.43723175,0.41117042,0.57745355,-0.5486159,0.49228844,-0.020832213,-0.048592154,-0.077055655,0.0022192735,0.50529647,0.047547605,0.5365335,-0.055408996,-0.13369742,0.35401157,0.6272401,0.1757336,0.5947225,0.08579977,-0.24322928,0.17166844,0.08416697,0.25198293,-0.17882918,-0.7686829,0.273788,-0.34716287,0.07718706,0.5869146,0.17645007,0.3782164,-0.023053847,-0.5021452,0.043291803,0.060102575,-0.08463346,-1.2043191,0.2886195,0.1743962,0.98022693,0.43606883,0.040091358,0.10995226,0.83199203,0.119220406,0.025757454,0.22640084,0.05784993,-0.5721992,0.4761532,-0.8545617,0.41849402,0.15816562,-0.06397083,0.17148796,0.07989689,0.32386371,0.6609338,-0.1474029,-0.0057032597,-0.12077025,-0.27348724,0.2571618,-0.422389,0.0593757,-0.5732356,-0.3240738,0.423172,0.6154282,0.43168575,-0.17924294,0.047504727,0.05583378,-0.039325636,0.25544035,0.08096014,-0.09424209,-0.03980914,-0.76595676,-0.22755347,0.4302349,0.10586676,0.0991069,-0.1596947,-0.13173887,0.28978232,-0.26686242,-0.12845933,-0.046401277,-0.73599786,-0.07424196,-0.122332975,-0.53577936,0.3149645,-0.0821368,0.22461599,0.11239565,-0.059895746,-0.22210786,0.39472434,0.12693207,0.9449746,0.13289602,-0.05693819,-0.33696702,0.10501825,0.081881635,-0.2966521,0.123266764,-0.34636414,0.105156034,-0.7159418,0.42456242,-0.03115869,-0.3963428,0.22789973,-0.26144496,0.06671885,0.6755361,-0.23436211,-0.14799121,-0.11314727,-0.15459083,-0.16633382,-0.26575363,-0.13929883,0.19235174,0.100863494,-0.15122756,-0.15822458,-0.06217873,-0.030273493,0.4373403,-0.064081,0.48115233,0.43142354,0.014361333,-0.31336644,-0.057144605,0.258046,0.5104409,0.08492743,-0.15067483,-0.22612119,-0.5997975,-0.39389148,0.31206724,-0.01959734,0.41486883,0.051571928,-0.016676683,0.9724095,0.12866347,1.1991142,0.036507897,-0.41557154,0.14634034,0.63472486,0.076111145,0.061754588,-0.3611709,0.8401383,0.4601956,-0.15980849,0.029507527,-0.5586522,0.012295196,0.20451659,-0.18795076,0.041478302,-0.14389372,-0.7661826,-0.25653827,0.18956056,0.24241185,0.3290469,-0.1760342,0.1291123,0.29609945,-0.06403539,0.3296628,-0.540124,-0.080866046,0.38409218,0.15728715,-0.004629016,0.04856973,-0.4679336,0.43167204,-0.53446466,0.16846116,-0.19418468,0.20880938,-0.24699934,-0.23214532,0.24314785,0.03417868,0.3814783,-0.45675084,-0.3855024,-0.232075,0.54597217,0.2721836,0.018780576,0.6779074,-0.28934473,0.0555522,0.085554965,0.6118621,0.78433186,-0.22010943,0.20266297,0.4555102,-0.48619416,-0.7386106,0.10433137,-0.19971953,0.18976119,0.058079056,-0.26498806,-0.6231933,0.3177204,0.22058567,-0.08248249,-0.08612276,-0.5180579,-0.30647475,0.46431968,-0.32834122,-0.105182774,-0.22007245,0.057871636,0.39728215,-0.13984415,-0.568117,0.15102054,0.2542941,-0.17319614,-0.5883373,-0.18334113,-0.38459155,0.33067152,0.026391,-0.48153627,-0.23258099,-0.0048279027,-0.5028608,0.1859571,0.030106746,-0.26551288,0.11824637,-0.3845994,-0.18228596,0.86299366,-0.14202274,0.1462304,-0.6416983,-0.36812884,-0.9450103,-0.21459183,0.31478456,-0.10092313,-0.017290883,-0.6570313,-0.13058478,-0.38584456,-0.06795376,-0.028850578,-0.45010632,0.4689514,0.13099203,0.4944442,-0.28936833,-0.93722475,0.20962682,0.13404971,-0.21453342,-0.6405633,0.5005425,0.06361564,0.7101383,0.004729491,0.16062655,0.18665178,-0.4367472,0.092445284,-0.16693637,-0.27012712,-0.62293,0.040926777 -253,0.41292012,-0.101495616,-0.5391875,-0.21292628,-0.28486925,0.24175768,-0.16624148,0.21390752,0.16045412,-0.25686872,0.04305535,-0.027055575,-0.056317028,0.52128613,-0.07800305,-0.596471,0.008437125,0.13452367,-0.6284382,0.30841967,-0.52039456,0.44254717,0.021137241,0.3825806,0.15851718,0.2528021,0.27668253,-0.079515316,-0.0685097,0.04408838,-0.07439155,0.23120262,-0.41256258,0.07171135,-0.09946613,-0.39774957,-0.08856138,-0.2619079,-0.3693352,-0.63225496,0.37782755,-0.6905125,0.64777726,-0.20263961,-0.44472912,-0.04376562,0.16411586,0.32754955,-0.3038027,0.08715653,0.26896903,-0.33077553,-0.09113694,-0.027550705,-0.23879966,-0.5050548,-0.6533639,-0.070508786,-0.6536586,-0.117215745,-0.26880127,0.3216847,-0.26885018,0.120448984,-0.09090201,0.39098927,-0.39825764,-0.01724875,0.339335,-0.26786727,-0.060386296,-0.42555848,-0.11911753,-0.15373841,0.29385966,0.0333823,-0.12712102,0.26912612,0.3881835,0.55565727,0.10160058,-0.31589895,-0.3970392,-0.0012056887,-0.09819758,0.463962,0.014772952,-0.087640665,-0.2879964,-0.042134847,0.26592025,0.16101615,-0.0766201,-0.34587395,0.08437823,0.048941597,-0.22876032,0.26177624,0.40890306,-0.4689991,-0.2613385,0.4252792,0.42540798,0.0991566,-0.3262767,0.23221776,0.02592172,-0.4721009,-0.19688445,0.10323983,-0.014101656,0.5487982,-0.07973313,0.30894366,0.8261463,0.034128092,-0.035073664,-0.33142614,0.01262506,-0.11804867,-0.13881375,-0.17787991,0.077143304,-0.4702216,0.05553943,-0.18114398,0.83244306,0.011586698,-0.886144,0.340487,-0.4412757,0.09794248,-0.14009437,0.5467417,0.7902781,0.23801854,0.18241268,0.9336507,-0.5006817,0.08442889,0.100739636,-0.355299,0.050569825,-0.10147654,0.034316156,-0.56218123,-0.005829831,0.06538092,-0.035129145,0.059642915,0.4839173,-0.44575864,-0.10114942,0.024698561,0.720008,-0.43797916,-0.033462953,0.6279452,1.0440905,1.0873324,-0.05014251,1.1650548,0.5605894,-0.19215909,-0.024009384,-0.47131506,-0.3774707,0.07315286,0.27886048,0.266828,0.4193527,0.12459127,-0.0022153775,0.6400324,-0.33347294,0.119149536,-0.013158628,0.045270704,0.02610411,0.019914245,-0.43725312,-0.20727445,0.18176661,0.08056331,0.0055048424,0.21286291,-0.24464045,0.54712933,0.010235993,1.4366294,0.12560727,-0.004622712,0.025872082,0.45420104,0.1489501,-0.20450787,-0.13411394,0.050611846,0.5408745,-0.13158153,-0.4474584,-0.06590726,-0.30597705,-0.36510983,-0.15666634,-0.3147128,-0.20890424,-0.06547296,-0.4997819,-0.12870404,0.14696842,-0.29006106,0.44208214,-2.7304206,-0.1550795,-0.18116061,0.2651692,-0.1803595,-0.28555366,-0.3578858,-0.4441088,0.17194389,0.4413224,0.2891931,-0.4886611,0.5488764,0.32187977,-0.3091849,0.006857689,-0.5836954,-0.058015894,-0.17409565,0.4218331,-0.07940199,-0.026811425,-0.12191294,0.35369554,0.73809135,-0.0025719563,-0.12425116,0.21049912,0.39845726,0.050001785,0.6405377,0.30188137,0.5106537,-0.18708389,-0.20161386,0.388027,-0.37894645,0.26886198,-0.035309147,0.13640927,0.48762766,-0.47317198,-0.8304152,-0.5624061,-0.16026781,1.1606239,-0.33799076,-0.2678703,0.33035353,-0.1960778,-0.24740781,-0.037999846,0.38977367,-0.034270123,-0.04135065,-0.620678,-0.08736167,0.022835545,0.11093194,-0.08802458,0.011063043,-0.25351372,0.60127014,-0.17003626,0.44890663,0.30873123,0.21445619,-0.026814366,-0.5504747,0.075352944,0.8301141,0.3198411,0.09310538,-0.22808191,-0.14995965,-0.24537092,-0.23612538,0.29303244,0.42325395,0.71965885,0.038312208,0.16088702,0.4022141,-0.28571668,0.07053093,-0.16470149,-0.27334967,-0.03570993,0.13173953,0.45850965,0.63995534,0.06257548,0.4642031,-0.11444263,0.18499759,-0.1892806,-0.5164805,0.60074073,0.66340446,-0.14977123,-0.3193725,0.42854413,0.47202837,-0.28557128,0.30185527,-0.58550876,-0.22425602,0.70600724,-0.12313175,-0.49221733,0.11763302,-0.3323951,0.017443664,-0.90295905,0.20584737,0.09334901,-0.60278016,-0.59219605,-0.31585237,-3.6110704,0.16824654,-0.26028046,-0.08066247,0.15534207,-0.14562072,0.34367195,-0.5972587,-0.44622675,0.0032675534,0.04776884,0.49975917,0.0164538,0.08493771,-0.35849953,-0.25783968,-0.19576028,0.2705822,0.1280955,0.2759519,0.09882604,-0.46786347,0.28327447,-0.39231429,-0.4948058,-0.13164072,-0.5237159,-0.49113306,-0.14330798,-0.42421192,-0.26913688,0.7782329,-0.3373466,0.013438393,-0.2675198,0.041430943,-0.15452157,0.3486869,0.26269764,0.15287279,0.09298238,-0.05641928,-0.10552476,-0.3401149,0.19842319,0.006063193,0.30096194,0.33747733,0.011550371,0.21738401,0.65809447,0.49790055,-0.089568056,0.72437257,0.45533314,-0.10814408,0.19739528,-0.24356577,-0.12278626,-0.7042501,-0.37895405,-0.25703418,-0.49156386,-0.51439315,-0.07831282,-0.3378078,-0.75867736,0.44704014,-0.06140182,0.19048375,-0.16610657,0.15610142,0.34854165,-0.13203096,-0.07412264,-0.08284853,-0.26337695,-0.4356404,-0.42057073,-0.6644679,-0.6833324,0.17167126,1.2766764,-0.17330101,-0.12529904,-0.023531647,-0.4817293,0.0006103754,0.20560592,0.25233746,0.123058595,0.37088266,-0.2086051,-0.82804,0.29001912,-0.31504205,0.07004359,-0.67463285,0.026643332,0.64008087,-0.6221952,0.5506127,0.28737774,0.29465273,0.06351754,-0.5626386,-0.3927598,0.015810886,-0.25135365,0.58006746,0.109278165,-0.45198855,0.4091747,0.114363916,-0.2072864,-0.57753146,0.47513995,-0.09695853,-0.22081527,0.16913512,0.2980215,0.050467264,-0.23255144,-0.040475927,0.2271999,-0.54276294,0.35092667,0.31959945,0.012798469,0.26762542,-0.10125647,-0.16654982,-0.46549973,-0.17091946,-0.34956595,-0.2038287,0.08426247,0.02844686,0.3181375,0.012909007,0.0152115105,0.33138606,-0.21013997,0.14989625,0.01571583,-0.17722124,0.3605934,0.5151211,0.24814327,-0.4747511,0.6086903,0.117172725,0.0796078,-0.08496686,0.04194146,0.44253832,0.26488775,0.46659973,-0.25562656,-0.18661971,0.2178679,0.6361524,0.3087413,0.37627974,0.14401048,-0.28762862,0.23761968,0.1520122,-0.022343896,-0.08417246,-0.19732125,-0.06975226,-0.13038819,0.3096805,0.3236749,-0.013181853,0.3728735,-0.17080845,-0.06487422,0.37845647,0.058193557,-0.22666168,-1.0814432,0.27861124,0.3563569,0.6512219,0.31825572,0.029735018,-0.15202609,0.5590843,-0.44146287,0.033026937,0.45029563,0.04153706,-0.4486192,0.5430679,-0.534012,0.64863586,-0.16792461,-0.05212771,0.09137691,0.26175278,0.2587718,0.82298857,-0.057691596,0.063906215,0.0300417,-0.41705656,-0.003239123,-0.2900596,0.28667447,-0.6606018,-0.3142794,0.6020186,0.47616732,0.28722247,-0.2958022,-0.0663854,0.042169657,-0.16415758,0.04581,-0.14094846,0.032199025,-0.20727675,-0.63763773,-0.294351,0.4258546,-0.10336793,0.020160066,0.21672998,-0.268755,0.27856186,-0.13236956,0.033540107,-0.015325276,-0.54442036,-0.13952662,-0.3182148,-0.44604474,0.47791654,-0.40535864,0.31955317,0.16175635,-0.0013820045,-0.397056,0.23997475,0.00057103235,0.74773,0.049310625,-0.16712876,-0.352329,-0.045413055,0.34869516,-0.3441539,0.0017115434,-0.35216615,0.18430212,-0.59838605,0.38255432,-0.25640982,-0.27630487,-0.16723956,-0.15602972,0.09073814,0.45843378,-0.19545817,-0.041340098,0.13231693,0.114892274,-0.38859496,0.019180438,-0.37588724,0.2284398,-0.16207436,0.034824133,0.005143126,-0.16333748,-0.0036336104,0.3418531,0.088997945,0.26657492,0.3550196,-0.19816308,-0.334191,-0.003017819,-0.0906301,0.40241823,0.16197045,-0.16188817,-0.4721252,-0.32663283,-0.25487113,0.33305973,-0.18481977,0.24761759,0.049550828,-0.45146644,0.87477916,0.015817214,1.2351178,0.06857178,-0.2914027,0.13511771,0.5859969,0.28668448,0.22975221,-0.2706141,0.76812994,0.69810814,-0.103682086,-0.2915139,-0.33877194,-0.08733358,0.31431058,-0.29907954,-0.25927603,-0.103194736,-0.8190428,-0.11693989,0.12706791,0.08372945,0.24711256,-0.057551403,0.011837488,0.080167055,0.19227062,0.56157285,-0.4082063,-0.13265832,0.35061774,0.29855058,-0.01234676,0.20200604,-0.45123765,0.37730476,-0.7281765,0.23082314,-0.34177908,0.06744167,-0.04007637,-0.27247286,0.29488784,0.07232735,0.27650103,-0.28638822,-0.19441566,-0.22449693,0.7957311,0.19976954,0.36233857,0.7675032,-0.2651489,-0.20233086,0.13562308,0.47312024,1.4530197,-0.17108747,-0.038211472,0.32309228,-0.21636009,-0.53693086,0.07971447,-0.3849778,0.1660951,-0.058257755,-0.4038804,-0.3203185,0.33502653,0.001844132,-0.18736641,0.21629265,-0.44748288,-0.18019606,0.30949274,-0.2057875,-0.20891313,-0.29863244,0.26725802,0.45635217,-0.3707548,-0.4056263,-0.06925393,0.44451326,-0.27108553,-0.53667796,0.20392856,-0.3504041,0.33203512,0.15648259,-0.43965304,-0.04605379,0.18491481,-0.43364245,0.14222449,0.5214497,-0.37997139,-0.059877753,-0.2334745,-0.14866233,1.0803173,0.010874287,0.023815095,-0.63257915,-0.37750867,-1.0371307,-0.31343353,0.32861057,0.25957707,-0.17101267,-0.5939546,-0.06123228,-0.043955017,-0.0044038137,0.09396397,-0.5342051,0.40950352,0.17222409,0.39077446,0.009776687,-0.80412936,-0.07538858,0.0646834,-0.3800683,-0.44233847,0.5423103,-0.16117662,0.790832,0.046615634,0.12095938,0.14953879,-0.4340178,0.40311807,-0.37257192,-0.13409756,-0.78325194,-0.04969425 -254,0.5297926,-0.39320326,-0.30155644,-0.23616692,-0.40553734,0.12971963,-0.16054896,0.16716646,0.078432,-0.4130813,0.09245221,-0.333456,-0.10759533,0.5974411,-0.21748479,-0.74002856,-0.03363157,0.13885638,-0.6388988,0.77824384,-0.50612575,0.4024804,0.24909408,0.12253585,0.11531002,0.22008358,0.5457506,-0.09666847,-0.03485333,-0.06482847,-0.2687903,0.047860365,-0.5839865,0.25924936,-0.078372546,-0.3222806,0.21168366,-0.26062337,-0.33436352,-0.74264234,0.31819314,-0.8101328,0.2877681,0.002209393,-0.22837254,0.17354517,0.28273302,0.23362452,-0.2984203,0.12892711,0.13837343,-0.05775421,-0.050442886,-0.19457437,-0.1033746,-0.62174153,-0.6351693,0.026219746,-0.6971704,-0.40617135,-0.2126972,0.23888998,-0.38320625,0.050081473,-0.0875962,0.30198008,-0.54351944,-0.27037314,0.11963834,-0.099549465,0.27360767,-0.5053811,-0.09049355,-0.14165993,-0.08903182,-0.074700475,-0.11068344,0.5007091,0.25388804,0.6196331,0.006766349,-0.25501618,-0.067986846,-0.1453943,0.24327587,0.47628078,-0.0400151,-0.59168476,-0.21299288,0.10474184,0.17503193,0.09353988,-0.025612107,-0.48350233,0.06629966,-0.08934751,-0.23359172,0.33922666,0.3913204,-0.59043056,-0.38732564,0.30415434,0.47065413,-0.047457345,-0.0713843,-0.007267769,0.051362786,-0.5353119,-0.1654796,0.20968373,-0.31743392,0.47593555,-0.11419327,0.07636307,0.67018783,-0.24014536,0.08482072,-0.15710713,-0.19783472,-0.070974335,-0.15664223,-0.24989699,0.24930611,-0.63731855,-0.09765477,-0.32136205,0.94743323,0.16292843,-0.7494296,0.44070423,-0.58725715,0.17492406,-0.22330584,0.5605636,0.61033744,0.41815022,0.21693341,0.66118866,-0.49161807,0.19496821,-0.18565793,-0.2758428,0.09301195,-0.2987107,-0.066418014,-0.48532152,0.20731153,-0.22286378,-0.067211755,-0.26997757,0.6893451,-0.42188618,-0.11482746,0.098947726,0.85665345,-0.34943742,0.096470095,0.4630956,0.9832065,1.0460378,0.017048614,1.3356841,0.4385018,-0.24024417,0.30270258,-0.28612718,-0.6629858,0.22520804,0.5589115,0.15710682,0.26153767,-0.046109986,-0.043189492,0.37660754,-0.41169697,0.09583404,-0.27995238,0.43708813,-0.08507636,0.076191425,-0.5104329,-0.26363453,0.20503168,0.039688643,-0.015644964,0.32107347,-0.21366934,0.32339013,0.07381814,1.8504033,-0.09029611,0.10164436,0.11881913,0.47172794,0.30777067,-0.05161656,-0.012732967,0.18631247,0.36154237,0.032847613,-0.5739847,0.15405568,-0.35698283,-0.5161717,-0.24560668,-0.32850513,0.10979004,0.024538422,-0.48585197,-0.18445499,0.13028792,-0.2281235,0.351814,-2.197806,-0.24662548,-0.15193515,0.22366813,-0.4838104,-0.1668573,-0.07000563,-0.4635507,0.4499102,0.39904684,0.44112968,-0.65706766,0.34959516,0.5024307,-0.42476097,-0.120164126,-0.57214135,-0.24674495,-0.20536384,0.54154867,-0.024772102,-0.2177978,-0.12820333,0.3918548,0.5515019,-0.08441327,0.047565516,0.20734742,0.38004932,0.26847556,0.5572641,-0.027022226,0.41147855,-0.28972402,-0.11434065,0.42939675,-0.1102859,0.28219005,-0.01828336,0.18874127,0.4532518,-0.5347857,-1.0558336,-0.6660318,-0.446519,1.0383066,-0.3415075,-0.38893113,0.32964867,0.11629277,-0.050527997,-0.09720966,0.27295098,-0.15484114,0.028202858,-0.7589375,0.1406551,0.11809845,0.20067905,0.20182547,-0.08594225,-0.37261614,0.69356626,-0.08309191,0.3867654,0.26190475,0.28268072,-0.39459673,-0.5593117,0.07194128,0.9891694,0.3545896,0.12284882,-0.21728805,-0.34312552,-0.22789794,-0.1244499,-0.032478895,0.22085923,0.9786838,0.11728677,0.0026513333,0.2709686,-0.2229639,0.03926117,-0.08029852,-0.46940345,0.093670815,0.16627,0.55259347,0.37824503,-0.054609403,0.40310028,-0.09410854,0.3659075,-0.18558726,-0.3914469,0.43131173,1.2562658,-0.1544052,-0.04478838,0.6112308,0.51608115,-0.3419002,0.5623907,-0.7483976,-0.40998656,0.40038058,-0.20189597,-0.45523682,0.10276497,-0.34944054,0.1375547,-0.9922364,0.47561854,-0.26451668,-0.21009883,-0.58349335,-0.20417236,-3.5459116,0.29020327,-0.0769948,-0.18245445,0.08779909,0.14341162,0.48983568,-0.6323688,-0.38097313,0.07724056,-0.0086354595,0.52198035,0.106531076,0.14905311,-0.32942536,-0.23014812,-0.31343117,0.2622516,0.030272087,0.2228349,-0.057785764,-0.5047094,-0.016866732,-0.2405836,-0.35579157,0.1363409,-0.50956976,-0.57117736,-0.34620506,-0.5603344,-0.29100138,0.5871115,-0.010507707,-0.03703084,-0.20649455,-0.015634926,-0.08362493,0.23666292,0.22348377,0.197269,0.06417625,-0.01637135,-0.19973193,-0.3365603,0.21656914,0.031961836,0.33842432,0.34636948,-0.04648392,0.10056552,0.6665976,0.40765557,-0.09147365,0.67470723,0.39612502,-0.13372149,0.10840513,-0.19152507,-0.26819718,-0.5508109,-0.44660416,-0.21433592,-0.26844713,-0.47640085,-0.03909482,-0.39841413,-0.49531552,0.5130961,0.011850127,0.24302383,-0.12896866,0.082609445,0.34872538,-0.25858715,0.03863287,-0.15630743,-0.17991409,-0.55381036,-0.3884724,-0.7792213,-0.5001136,0.27902314,1.1349355,-0.15053448,-0.31949717,-0.08092734,-0.03847262,-0.032239858,-0.15173873,0.032703478,0.40096524,0.2936327,0.009361709,-0.77254015,0.56239724,0.023293026,0.1531252,-0.35603502,0.08635699,0.6098661,-0.5315209,0.45986456,0.33437616,0.15017365,0.10888653,-0.6244012,-0.17508186,0.15521206,-0.22289094,0.4943131,0.017542306,-0.6851266,0.44864738,0.28756398,-0.46676537,-0.80126065,0.42827097,0.06582608,-0.32838666,-0.113874845,0.31761518,0.16534677,0.121199355,-0.3948328,0.33589306,-0.69616246,0.22984216,0.4107915,0.03305763,0.21121,-0.2669864,-0.24327418,-0.6509648,-0.032592334,-0.43433112,-0.3636359,0.20510769,0.025157582,-0.0077541512,0.24693307,-0.06627844,0.4278468,-0.23926687,0.039871193,0.057274386,-0.3496809,0.46059063,0.41065082,0.4299518,-0.34882274,0.5339417,-0.035748623,-0.1589083,-0.30391827,0.014526638,0.39538443,0.3011638,0.15245095,-0.08368886,-0.19251485,0.50471276,0.99617493,0.19217753,0.4131429,0.13380463,-0.24963541,0.35105982,0.17737837,-0.10447712,0.12837324,-0.36290187,-0.16839713,0.15214364,0.11851928,0.5338861,0.013698252,0.3425846,-0.14917001,-0.10823663,0.12915455,0.21932627,-0.2497308,-1.007891,0.18004617,0.14088406,0.5122829,0.75917774,0.032994263,0.03840162,0.6342684,-0.22430436,0.06024719,0.36079508,-0.03101492,-0.528127,0.6808502,-0.5254213,0.24011026,-0.098755315,0.024787346,-0.05897931,0.10592079,0.36696202,0.8264291,-0.04543382,-0.019168355,-0.15859823,-0.2948984,0.12985654,-0.3063478,0.11219385,-0.30296803,-0.42948115,0.48238292,0.36097425,0.29643187,-0.038878836,-0.023769835,0.0010875106,-0.1518295,0.30268192,-0.02172892,-0.03228421,0.03921352,-0.5886476,-0.16947125,0.62184775,0.08153211,0.09047437,-0.06383166,-0.20108649,0.09147615,-0.22833504,-0.100168295,0.03512957,-0.6972113,0.06227041,-0.32289234,-0.25074634,0.63080096,-0.30591348,0.054862782,-0.024274612,0.040046494,-0.4410102,-0.01091066,0.23423466,0.71636134,-0.014166713,-0.17511746,-0.2781207,-0.039983477,-0.034467865,-0.24491067,0.027919738,-0.20775244,0.07171789,-0.9199072,0.5755957,-0.110476576,-0.41677672,0.16658555,-0.24071436,-0.045337837,0.53876966,-0.20210437,-0.1605869,-0.24941333,0.08722975,-0.24728593,-0.11361006,-0.032414045,0.28177324,-0.03324697,-0.039977375,-0.14101572,-0.054773632,-0.04114557,0.6457282,-0.039673332,0.20684926,0.2644725,0.10352575,-0.3847102,0.050602555,0.13592583,0.37905237,1.6506512e-05,0.05252512,-0.27885076,-0.13307945,-0.17881645,-0.017596753,-0.22185837,0.22836241,0.14721091,-0.5458359,0.92856604,0.13874346,1.2870785,-0.13934107,-0.26646346,-0.038850937,0.5171282,0.030159319,0.06081534,-0.36721858,0.791654,0.69293034,-0.059015214,-0.21767057,-0.45635623,-0.19118932,0.30340517,-0.3362245,0.007470131,-0.0039724032,-0.7313364,-0.4218171,0.3585149,0.34832093,-0.002872006,-0.086250715,0.060495116,0.1488181,0.17023586,0.4675141,-0.5122624,-0.06829119,0.28730318,0.29518744,0.15257981,0.30556506,-0.38562834,0.33267596,-0.6360712,0.24906226,-0.31813425,0.061369006,-0.0061068316,-0.2390275,0.23299138,0.0920877,0.32189402,-0.22404514,-0.4037658,-0.15888856,0.7504141,0.14028242,0.15640745,0.82850796,-0.34027117,0.2634348,-0.007331657,0.40162498,1.348185,-0.27909726,-0.19851461,0.19411334,-0.3360841,-0.8486383,0.3635346,-0.3683447,-0.03722926,-0.038921107,-0.40521246,-0.43455046,0.38723055,0.23325583,0.026272485,0.018698825,-0.5118841,-0.11163608,0.4076491,-0.17637347,-0.2814701,-0.28882217,0.27654558,0.6732951,-0.3694587,-0.20578185,0.13664795,0.33170176,-0.32161278,-0.754857,-0.16128567,-0.32427362,0.32456237,0.29149267,-0.2426321,0.13182798,0.11478982,-0.46256238,0.07614635,0.3807603,-0.41366097,-0.0044246,-0.26355037,0.06929979,0.9464264,-0.14717975,-0.31384814,-0.7754325,-0.58264273,-0.95968366,-0.46793574,0.7804591,0.16643196,0.085128374,-0.4441748,0.04733282,-0.034660373,0.1184199,0.017237624,-0.39572772,0.34235942,0.046164427,0.49108627,-0.08332607,-0.70785177,0.13501875,0.14196925,-0.090093635,-0.48493597,0.5456013,-0.19083472,0.89847785,-0.013852691,-0.024036638,0.19534105,-0.5976385,0.100127816,-0.41443065,-0.29434383,-0.6158933,0.11946401 -255,0.52842206,-0.21684225,-0.66116536,-0.059876617,-0.30716315,0.060477775,-0.11877258,0.6452166,0.2936108,-0.67409647,-0.033187132,-0.102716796,-0.18445046,0.19281858,-0.1739631,-0.63773596,0.07193823,0.06990946,-0.49230325,0.65379417,-0.27886894,0.3563623,0.0032345515,0.35224688,0.16308735,0.2989753,-0.035194643,-0.054672047,-0.16947123,-0.26275432,0.19346556,-0.065056846,-0.8139644,0.20563444,-0.30302957,-0.31346175,-0.10680173,-0.47397417,-0.48610818,-0.93685716,0.3529148,-0.8806352,0.48706123,-0.022919875,-0.3066033,0.09819483,0.10054546,0.3310921,-0.07980896,-0.22127853,0.13663676,-0.10426958,-0.10425945,-0.19711015,-0.27541292,-0.45488504,-0.58439755,-0.06116841,-0.5026055,-0.13950504,-0.3321328,0.15351783,-0.5121877,-0.12948738,-0.17731476,0.73984826,-0.29317927,0.032265786,0.3668305,-0.15032473,0.3452096,-0.73843163,-0.16316293,-0.15279599,0.1665019,-0.097792774,-0.1577203,0.5459482,0.13780172,0.42311478,0.06781617,-0.3177275,-0.2745995,0.055167403,0.19784106,0.34201998,-0.16661857,-0.502479,-0.19241007,-0.09370434,0.39228952,0.21455325,0.16071571,-0.24794456,0.0519497,0.22935654,-0.2907515,0.7473557,0.5592353,-0.13016988,-0.064157635,0.33333194,0.5093774,0.12857623,-0.22904539,-0.14851612,-0.042403854,-0.48683962,-0.14963926,0.20152436,-0.31231454,0.5302943,-0.24381875,0.15688208,0.7672793,-0.3741772,0.044772845,0.27911142,0.047732983,0.02696575,-0.47454655,-0.08578431,0.304126,-0.5567574,0.24013454,-0.55508333,0.74090904,0.23744759,-0.67482305,0.23223051,-0.71990484,0.20935914,0.023922814,0.4715886,0.79817384,0.6457581,0.09357207,0.7787749,-0.4796144,-0.058826648,-0.050420146,-0.32705098,0.09905377,-0.41539747,0.32283136,-0.25266764,-0.1274084,-0.07734646,-0.21247484,-0.049676325,0.29854676,-0.6084926,-0.31502816,0.06784058,0.9119934,-0.14640985,0.012232909,0.8104638,1.0097818,1.0005065,0.0073521617,1.361407,0.1170976,-0.2145622,0.3202102,-0.098242365,-0.7629179,0.33172545,0.18925196,-0.4084317,0.31778085,0.021656262,-0.24232318,0.33544043,-0.46411216,-0.12132828,-0.15941086,0.41244337,0.09446045,-0.20604508,-0.26575336,-0.10130549,-0.034300517,0.04522442,0.21387163,0.38160086,-0.15760769,0.2650301,-0.0476097,1.1473899,-0.095149085,0.19156076,0.042913694,0.5656036,0.16744779,-0.08863508,0.10687421,0.20812596,0.14762655,0.24818052,-0.63406664,0.027995123,-0.40686673,-0.31972396,-0.10664332,-0.33797568,-0.17946234,-0.17331907,-0.49787918,-0.12364109,-0.18402077,-0.2530102,0.42316863,-2.416222,-0.34299013,-0.13769667,0.3730961,-0.38591433,-0.3665363,0.014390351,-0.69963086,0.56386673,0.2163557,0.60349077,-0.7162145,0.3627337,0.5182771,-0.58575004,-0.06739901,-0.59756047,-0.12080378,0.0500459,0.37240002,0.027299514,-0.1182351,0.11388016,-0.12954794,0.50751305,0.20769979,0.03086672,0.2827471,0.4556187,-0.2498111,0.51241755,-0.09162809,0.5748975,-0.59272134,-0.058072448,0.4008414,-0.63728243,0.30513123,-0.19730887,-0.040677473,0.56855977,-0.53806376,-0.85889786,-0.66827595,-0.33294612,1.2902876,-0.017992629,-0.49674422,0.09655338,-0.3602913,-0.14692734,-0.16691937,0.67349845,-0.04547803,0.14755313,-0.67692226,-0.007224512,-0.30052292,0.17251268,0.01394298,0.048325337,-0.38643163,0.7707549,0.009197136,0.508946,0.18635726,0.21455051,-0.4423954,-0.4486483,0.0689859,0.87404317,0.4716863,0.12012832,-0.1988878,-0.11917228,-0.44130453,-0.21052602,0.00092230394,0.769651,0.6110224,-0.14045085,0.03550742,0.44856343,-0.08177797,0.18303023,-0.12863551,-0.55387086,-0.3811145,0.062091008,0.598043,0.75564945,-0.27256292,0.33106974,-0.090969294,0.18918747,-0.19189896,-0.5345902,0.6129565,1.0830039,-0.25173128,-0.13735709,0.5204271,0.46228033,-0.54457325,0.5774573,-0.47863898,-0.50219476,0.5745404,-0.19410601,-0.58699346,0.036233142,-0.26716062,0.046371117,-0.78848207,0.31558737,-0.7210379,-0.47415146,-0.53248906,-0.1643506,-2.867316,0.31387055,-0.2924745,0.042420592,-0.30477193,0.015389745,0.25354,-0.5930526,-0.5944385,0.21105947,0.119422406,0.8481503,0.0049374225,0.16521972,-0.38651532,-0.28181356,-0.38748753,0.17302898,0.2234548,0.19627205,0.0052442322,-0.3155173,-0.18689156,-0.08784657,-0.55272114,0.12176407,-0.6517792,-0.47664744,-0.3588481,-0.5744359,-0.30720395,0.7766832,-0.31731117,0.10387714,0.06662218,-0.011539088,-0.017596098,0.28266698,0.027613498,0.22136758,0.23968054,-0.2068484,0.19536318,-0.3518048,0.3353995,0.17894994,0.53478473,0.46265805,-0.22365515,0.26962948,0.56030977,0.93032277,0.13572754,0.9395155,0.12637956,-0.10758634,0.5290681,-0.29495975,-0.5057372,-0.65405595,-0.09338395,0.11043679,-0.30521104,-0.28185833,0.22699155,-0.2987831,-0.8367953,0.57509816,0.087859645,0.3585857,-0.013914509,0.25572938,0.5591647,-0.26066583,-0.04146203,0.014979248,-0.09428498,-0.56482154,-0.22622024,-0.684016,-0.56402296,0.081607334,0.8985484,-0.18010852,-0.12250361,0.06626614,-0.1728662,0.15710688,0.14624046,-0.037388828,-0.18357609,0.43017212,0.06831605,-0.59112936,0.38301358,-0.036009423,-0.040113274,-0.5791216,0.5227407,0.87088907,-0.64905274,0.5211608,0.3305953,-0.06429165,-0.36693338,-0.470214,-0.02394806,-0.010300429,-0.15917741,0.2597176,0.16701348,-0.87944096,0.28682038,0.2763558,-0.3093715,-0.6714754,0.5298598,-0.013267384,-0.045624394,-0.3885368,0.49978307,0.42299026,-0.017341448,-0.045497674,0.40839836,-0.50344974,0.15305246,0.14102402,-0.1327429,0.36571822,-0.027492179,-0.2718479,-0.74808353,0.19089288,-0.71770567,-0.26546147,0.4505175,-0.1084574,-0.083143815,0.21633475,0.33714172,0.31361097,-0.13388728,0.08958979,-0.14201912,-0.4298541,0.5355084,0.44283068,0.66127396,-0.6396354,0.7420785,0.089381546,-8.2994884e-05,0.4074704,0.13008688,0.545386,0.10583437,0.5881682,0.16969472,-0.07772829,-0.015566672,0.80621344,0.15207669,0.6622061,0.15657187,-0.121367946,0.08318384,0.062243894,0.1542671,-0.13230087,-0.85818857,0.09137487,0.02895115,0.00940732,0.4804279,0.109742165,0.29567498,0.08992187,-0.26106784,-0.14193669,0.08897523,-0.19432384,-1.6260393,0.56060207,0.22540991,0.95810497,0.3553772,-0.040695105,0.00897093,0.6979438,0.10169765,0.18882623,0.5609506,-0.113773674,-0.44395894,0.5288298,-0.7431786,0.43806502,0.12944995,0.113025256,-0.021763977,0.123781785,0.5186336,0.74981177,-0.26624396,-0.035438538,-0.11765773,-0.45290068,0.28619918,-0.3713131,0.19784595,-0.4069628,-0.26297355,0.488272,0.65137064,0.2841859,-0.20872802,-0.040745847,0.15819556,-0.07426517,0.34736687,-0.17255391,0.043663,-0.053912148,-0.43015766,-0.21809277,0.48799375,-0.10922154,0.2410632,0.07270717,0.0040925397,0.30363905,-0.03864812,-0.07907818,-0.07731223,-0.82646877,0.006538192,-0.45946553,-0.477729,0.36969024,0.0016955045,0.29943192,0.24954937,0.11112286,-0.3859267,0.4472998,0.058332577,0.53503263,-0.28456235,-0.3189589,-0.39737627,0.26006886,0.11593492,-0.42986014,0.13807833,-0.1078316,0.003053115,-0.38059726,0.38757208,-0.2565676,-0.2271413,-0.01658851,-0.15219966,-0.08643012,0.60801405,-0.20109683,-0.044711266,-0.0101234,-0.27679193,-0.18080924,-0.19021004,0.01998341,0.19296297,0.19744407,0.08336333,-0.2149694,-0.19141814,-0.0059635593,0.32933697,0.018147798,0.1722768,0.46236897,0.11361141,-0.4163894,-0.1713418,0.4354996,0.60018355,0.12603006,-0.108964615,-0.2671926,-0.3433494,-0.46354407,0.38782597,-0.08599233,0.32849926,0.1382399,-0.40630847,0.8104514,0.09527354,1.2426001,-0.08796624,-0.32538027,0.036290567,0.4982138,-0.029992979,-0.11486184,-0.53721297,0.96242553,0.46658024,-0.2639979,-0.051973358,-0.56676614,0.04395357,0.18363975,-0.37120873,-0.1618432,-0.06971465,-0.70082533,-0.24177995,0.17331551,0.40892237,0.054866806,-0.26623565,-0.1238064,0.36990133,0.12034755,0.41694406,-0.63116497,-0.24390517,0.24759707,0.32922158,-0.0033578528,0.24856319,-0.36011025,0.34733948,-0.6144324,0.23045553,-0.14018007,0.095208205,-0.286426,-0.43082052,0.17056274,0.036181413,0.41957295,-0.29944918,-0.53365517,-0.19851057,0.42496496,0.21754034,0.14426692,0.77018064,-0.27996218,-0.13034037,-0.028406449,0.7248484,1.0750597,-0.019010603,-0.015384734,0.23018257,-0.43705824,-0.73534256,0.22713128,-0.43878153,0.3606487,-0.19093587,-0.2577893,-0.5691071,0.19578655,0.05125274,-0.10429557,0.05063481,-0.8228305,-0.35535115,0.16349095,-0.4573527,-0.22499512,-0.35321456,0.16360521,0.58746135,-0.16200143,-0.2703173,0.18521158,0.18551472,-0.12494368,-0.53659207,-0.13757545,-0.31199104,0.14566444,-0.07126166,-0.39199764,0.051483933,0.05533024,-0.6218329,0.21462049,-0.09343119,-0.49824142,0.029139025,-0.1325259,0.008039267,0.88238645,-0.09355186,0.3235213,-0.29145637,-0.509806,-0.6554237,-0.37718412,0.23848604,0.121669546,0.016918045,-0.6932903,-0.22198156,-0.122133456,0.016989907,-0.067560636,-0.41326168,0.26709592,0.20347016,0.4649839,-0.15147966,-0.8353559,0.1785927,0.21144997,0.022690488,-0.68216634,0.38703588,-0.18984899,0.77061236,0.19428168,0.026920604,0.1981929,-0.5120832,-0.012600129,-0.2353676,-0.19657084,-0.57498306,0.21178807 -256,0.6699736,-0.08572594,-0.5307628,-0.10676274,-0.40918338,0.14518318,-0.2698749,0.3275053,0.07332748,-0.38356584,-0.19679242,0.03480101,-0.1388365,0.17439432,-0.23059025,-0.8736969,0.020678602,0.102593005,-0.5088482,0.768047,-0.37957764,0.5706767,-0.25259304,0.26650715,0.41305462,0.25979024,0.0828526,0.16002291,-0.22783926,-0.13003933,0.10479738,0.2479823,-0.41254482,0.15982783,0.13564612,-0.312831,-0.063083805,-0.11253835,-0.361347,-0.7418153,0.33008182,-0.5545376,0.54753745,-0.19233412,-0.38037086,0.08784442,0.15369901,0.03434162,-0.13653654,0.06252595,0.16674268,-0.22940463,-0.11113994,-0.17633367,-0.35962552,-0.5589251,-0.6294902,-0.008320849,-0.474235,-0.21110828,-0.2798266,0.3518231,-0.40000036,-0.1323377,-0.03886825,0.5670744,-0.5156316,0.102452666,-0.0788627,-0.29347265,0.07194843,-0.8517965,-0.17128736,-0.094627365,0.041327283,0.109770335,-0.15979564,0.24730481,0.26146552,0.35265642,0.08634281,-0.23934117,-0.59082603,-0.09447522,0.24871269,0.5063592,-0.19705744,-0.3383143,-0.32667035,-0.19518295,0.3310692,0.04979626,0.18400727,-0.46109834,-0.14871788,-0.06678891,-0.23007688,0.39729548,0.5388254,-0.34950888,0.08026048,0.3541984,0.5541305,0.2137107,-0.45518583,0.1226269,-0.1820432,-0.37208277,-0.12084223,0.12374112,0.0313663,0.52182114,-0.19751623,-0.040537372,0.43010733,-0.094729215,-0.04570307,0.0151216425,-0.014370587,0.26126528,-0.21043628,-0.07656814,0.21571541,-0.077924825,0.09278712,-0.3046628,0.6317476,0.030084673,-0.6648038,0.43291128,-0.35635346,0.13954332,0.030802393,0.5925257,0.83691293,0.4963903,-0.055709116,0.7680921,-0.2385232,0.10751581,0.10357195,-0.09932579,-0.13579978,0.091117695,-0.09077048,-0.4809444,0.2586555,-0.21360287,-0.0261999,0.11632464,1.0466002,-0.44067043,-0.15120077,-0.10032089,0.71131605,-0.40838873,-0.14062732,0.79821193,1.0347753,1.0350176,0.026275683,1.0676239,0.36175275,0.0038256394,-0.25251356,-0.3360895,-0.5453222,0.2134847,0.33115733,0.32668382,0.21384452,0.05779086,-0.004532039,0.53599256,-0.28242552,0.048417654,-0.082082435,0.4743315,0.2617373,-0.101903625,-0.37406385,0.038020182,0.3132676,0.11871675,0.15189096,0.28603852,-0.29661983,0.30840126,0.037605572,1.4814794,0.014294058,0.002012249,0.21104436,0.39815515,0.2874248,-0.32785866,0.29508466,0.18995248,0.40010428,-0.20942223,-0.59092176,0.06550807,-0.17851576,-0.6377467,-0.33368623,-0.2290245,-0.23015359,-0.157633,-0.507409,-0.1878646,0.10213227,-0.4159643,0.4733355,-2.4338353,-0.052356414,-0.17900515,0.3630153,-0.08224423,-0.46580335,-0.013521716,-0.38904354,0.4244508,0.3969187,0.31362477,-0.44017822,0.48561156,0.47386765,-0.5074238,0.063522235,-0.5077365,-0.09229435,-0.021269936,0.68017846,-0.046527058,0.018333888,-0.06440814,0.33781898,0.6391751,-0.040387705,0.12666343,0.3373009,0.31426412,-0.12407852,0.5558665,0.0839114,0.56277704,-0.07552969,-0.24937733,0.4909473,-0.6090349,0.03527853,-0.015444834,0.2612724,0.28820503,-0.45641154,-0.8903222,-0.6716393,-0.23903894,1.0453639,-0.3030764,-0.7192483,0.4120913,-0.3469664,-0.33565736,0.14610083,0.31864282,-0.3199434,0.023164518,-0.7689421,0.049210586,-0.10807432,0.20105144,-0.16625567,-0.06404275,-0.4934765,0.8081255,-0.2721218,0.5814199,0.36475083,0.3004269,-0.21333474,-0.46395808,0.014108451,0.9190858,0.5271091,0.08690548,-0.20757379,-0.11759782,-0.29106343,-0.15030798,0.117597,0.8251826,0.47455546,0.03737968,-0.014061112,0.18030956,-0.2722681,0.030851223,-0.27735758,-0.24552892,-0.0842412,0.086342074,0.52562445,0.6835273,-0.22342576,0.4610641,-0.1822299,0.47021973,-0.17791428,-0.5349238,0.37826732,0.88481385,-0.22409754,-0.49641412,0.5008134,0.45483324,-0.21039,0.29143244,-0.6248949,-0.13612786,0.47822857,-0.28038716,-0.2607025,0.2922514,-0.49694598,0.050413713,-0.76303893,0.17651118,-0.27165255,-0.6459615,-0.4348167,-0.39048597,-3.036239,0.0588068,-0.13500431,-0.28583047,-0.06846488,-0.31632963,0.2902934,-0.56614405,-0.59490824,0.021011867,0.098835185,0.4138782,0.117018,-0.053807605,-0.2811628,-0.18423404,-0.17755407,0.3579414,0.008764908,0.47265473,-0.060558867,-0.47935587,-0.13446921,-0.24153346,-0.5559921,0.017413903,-0.5049847,-0.49230242,-0.06580083,-0.4112095,-0.1283825,0.5490165,-0.545062,0.13617423,-0.33610582,0.042894833,-0.17437994,0.08887191,0.0711538,0.32442775,0.1648558,-0.13239768,0.10394441,-0.24986725,0.2434034,0.083283246,0.1203285,0.4419955,-0.15910107,0.04123144,0.3674721,0.68761253,-0.0657483,0.885486,0.47819394,-0.018739033,0.32770878,-0.22663337,-0.30575085,-0.6563922,-0.162179,-0.018549088,-0.48675513,-0.41981426,-0.37452862,-0.3885913,-0.789497,0.3832855,-0.031478293,0.10544315,-0.06965077,0.29717386,0.41431826,-0.07873349,-0.085127234,-0.021563858,-0.22113189,-0.3532712,-0.4182809,-0.6118232,-0.54555094,-0.12277228,1.118508,0.034808394,-0.111753,-0.0077246577,-0.33847886,0.065932035,0.27712154,0.18920681,0.0948559,0.3281886,-0.053571127,-0.66755444,0.38941702,-0.28081182,-0.10891557,-0.56110346,0.23622496,0.50013804,-0.3865728,0.5088319,0.1486178,0.23400754,-0.25940388,-0.73771936,0.022995142,0.08502186,-0.31658974,0.5521687,0.32073623,-0.8392094,0.47161758,0.24588096,-0.12024665,-0.64712954,0.42583364,-0.10345488,-0.6564944,-0.055923805,0.51218724,0.07158296,-0.18440914,-0.24370834,0.4075464,-0.3803469,0.28291088,0.22933231,-0.114537634,0.28386015,-0.2600127,-0.29562935,-0.8561963,-0.0861477,-0.39305907,-0.31793186,-0.02298344,0.11245899,0.1852301,0.06225162,-0.06344396,0.5637156,-0.29412556,0.24059321,-0.2825088,-0.23080772,0.20842057,0.46763873,0.41248223,-0.30553254,0.6469382,0.098572075,0.15049393,-0.09397046,0.13495134,0.54790217,-0.10802357,0.46774673,0.032719024,0.10038465,0.13754511,0.7221841,0.30974233,0.46548378,0.023541942,-0.61443216,0.24163124,-0.0055603515,0.37850362,-0.21489505,-0.53453696,-0.01768063,0.029481022,0.23513061,0.5405395,0.1586816,0.5719905,-0.17972098,-0.355457,0.13847789,0.07870436,-0.07630086,-1.2654521,0.22847308,0.17920266,1.01176,0.6046083,0.11354244,0.104434185,0.37207276,-0.23615283,0.033056214,0.40185478,-0.09907445,-0.24297537,0.2089794,-0.7433544,0.3446904,-0.16307038,-0.06856622,0.25683224,0.03312362,0.50728,0.70914793,-0.12840803,0.007835336,0.07738271,-0.2954189,0.101580486,-0.19701415,0.15892297,-0.51275903,-0.38663346,0.52755016,0.5295104,0.41326937,-0.3449121,-0.066262186,0.21776916,-0.18070437,-0.0120572,0.05114918,-0.030885927,-0.23249425,-0.40369874,-0.45704508,0.4077016,0.12552911,-0.12758894,0.20731324,-0.26863313,0.20768082,0.038416628,0.02820737,0.110189185,-0.53355217,0.092935756,-0.26449785,-0.39340255,0.3319796,-0.40469384,0.19629578,0.2573842,-0.07761839,-0.36840332,0.27685255,0.38227567,0.77078557,0.2721752,0.058883604,-0.28858262,-0.08954139,0.30362555,-0.19758986,-0.17015511,-0.17666918,0.21697891,-0.6656982,0.35486245,-0.30873203,-0.25621718,0.20858285,-0.05662784,-0.12235382,0.388269,-0.15963954,-0.29661632,0.13618961,0.019802304,-0.16425374,0.0128391385,-0.040179826,0.25761512,0.0066252146,-0.20243579,0.0036570374,0.02195441,0.100577675,0.3678719,0.0407765,0.4013238,0.51529384,-0.029852666,-0.45697623,-0.12211442,0.2836491,0.5070205,-0.034956295,0.21988122,0.035866246,-0.57110727,-0.44492334,0.29041395,-0.23700891,0.22504134,0.042113736,-0.5518861,0.6846193,0.17685106,1.2158478,-0.0027912557,-0.4814177,0.093863755,0.70244896,-0.10272772,0.20317629,-0.2506727,1.0185206,0.5884063,-0.34063596,-0.2466608,-0.39218426,-0.026708849,0.26050544,-0.24487658,-0.16325489,-0.080544904,-0.66141963,-0.14246875,0.053186495,0.09551326,-0.01215104,-0.061058376,-0.07602037,0.11327397,0.17925593,0.33324045,-0.47210285,0.106861904,0.2663225,0.109331094,-0.109502725,0.12626943,-0.30425787,0.26607496,-0.52529734,0.33296803,-0.30721116,0.12458131,-0.2242469,-0.2364251,0.34970188,0.10451964,0.17612205,-0.4289715,-0.2197988,-0.22408189,0.49159494,0.13342093,0.13255192,0.54264957,-0.16110311,0.18179278,0.1568841,0.44202363,1.2055292,-0.2337529,0.091935046,0.27623668,-0.4523034,-0.61961544,0.078792095,-0.3690819,0.14412078,-0.18914397,-0.34501934,-0.5468099,0.26488087,0.16239914,-0.0037070364,0.10744938,-0.5915207,-0.27511913,0.46320805,-0.3024295,-0.123204984,-0.20929854,-0.007922672,0.47151458,-0.28736004,-0.48392016,-0.117303126,0.3313936,-0.2838256,-0.6601884,0.14859441,-0.1954306,0.44926006,0.15668203,-0.3793826,-0.17401788,0.3032931,-0.4700408,-0.10543844,0.34757155,-0.3519601,0.12539078,-0.266913,0.09270743,0.8887603,-0.16725634,0.32170352,-0.56291187,-0.5531189,-0.93657464,-0.42985976,0.2546629,0.26367712,-0.17070639,-0.73713636,-0.20519987,-0.56555057,-0.14086984,0.1302796,-0.45041797,0.53129435,0.21823964,0.31977606,-0.10653365,-0.833668,-0.031661183,0.1669637,-0.24963158,-0.4778959,0.5671427,-6.6012144e-06,0.6997578,0.11221884,0.19809192,0.13807613,-0.57277304,0.40525806,-0.12865795,-0.16935815,-0.6493445,0.24668264 -257,0.4996561,-0.08738481,-0.3903396,-0.25991443,-0.42596027,-0.19849472,-0.056433033,0.1380352,0.23700197,-0.2198679,-0.305723,0.0039916136,0.043275226,0.47265676,-0.13627775,-1.1260662,-0.04020175,0.2335455,-0.64105874,0.46787915,-0.6412947,0.4875622,0.2053051,0.13952011,-0.11989566,0.3846923,0.66803837,-0.3702536,0.07361406,-0.01925237,-0.22140515,0.08449406,-0.58514756,0.28443983,-0.016301423,-0.19872941,0.18594272,-0.14022048,-0.05793674,-0.75504845,0.2894428,-0.8457889,0.34198394,0.05943514,-0.11892319,-0.27604762,0.10497519,0.32924148,-0.46014038,0.14694308,0.26208436,-0.3354696,-0.23109019,-0.31673184,0.30222276,-0.39276877,-0.36945888,-0.09810131,-0.50373334,-0.4122651,-0.29613623,0.19098942,-0.50858986,-0.08170704,-0.011377196,0.3230797,-0.41891825,-0.2550288,0.3558706,-0.46812686,0.26001275,-0.560988,-0.028962374,-0.09062529,0.6441528,0.11451751,0.03327407,0.62646717,0.27752918,0.35330406,0.46251836,-0.4187962,-0.1889587,-0.23560233,0.20609702,0.48552665,-0.1894282,-0.59565324,-0.037269842,0.068657935,0.0637259,0.19320141,-0.11216891,-0.2433123,-0.08082827,-0.13596918,-0.058800172,0.46725282,0.53803927,-0.18579046,-0.1733485,0.32323432,0.47600642,0.042857114,-0.031044075,-0.126942,-0.008960863,-0.6223018,-0.22750689,0.12239369,-0.087976016,0.5297961,-0.28438368,0.13094221,0.87362975,-0.2377836,0.10452182,-0.054511372,-0.041594084,-0.29258233,-0.07283386,-0.2464829,0.22185093,-0.53802204,-0.08756187,-0.36652234,1.1151685,0.23383002,-0.65736246,0.5311556,-0.4629459,0.21346517,-0.17785978,0.7168233,0.58244467,0.38474658,0.21467237,0.895345,-0.4982581,0.16367505,-0.009508073,-0.5857573,0.09001658,-0.081631035,0.1616072,-0.43824625,0.09167042,-0.18853955,0.20646997,0.029168757,0.120077424,-0.5527905,-0.024010537,0.17838079,0.76549643,-0.43100145,0.12514378,0.5772819,0.9987052,0.82964164,0.11305511,1.2105273,0.4285766,-0.3669536,0.18711221,-0.35763228,-0.7492676,0.23616965,0.56972396,0.1690199,0.27346408,-0.13011618,0.002485114,0.2497062,-0.5684846,0.13246875,-0.214693,0.568487,0.036977213,-0.17774297,-0.6172902,-0.04813816,-0.02724316,0.057046443,0.20594959,0.3002136,-0.07956702,0.452749,-0.11262437,0.88094807,0.061277006,0.15157837,-0.088120304,0.59684724,0.37586233,-0.06781479,-0.07495352,0.34376535,0.48567453,-0.13892879,-0.6467497,0.1507364,-0.43350574,-0.3474413,-0.09679258,-0.3208437,0.03132559,0.4031588,-0.13814585,-0.30011037,0.09705881,-0.16865619,0.4333396,-2.3695645,-0.28337628,-0.20646441,0.19013923,-0.30625072,-0.046771754,-0.2195818,-0.58586556,0.35420093,0.3512608,0.53194577,-0.53710985,0.38774696,0.49747106,-0.50768256,-0.15555021,-0.6496745,0.081725895,-0.20277368,0.44178542,0.20720343,-0.2888598,-0.23925811,0.13501759,0.74771667,0.17421146,0.026837623,0.43535516,0.25613657,0.22230951,0.47937012,-8.498629e-05,0.5849057,-0.40600368,-0.23277931,0.24414551,-0.16490065,0.24050456,-0.45486662,0.07729071,0.40866604,-0.56959575,-0.99002105,-0.7308385,-0.40065917,1.1917826,-0.27368268,-0.48590767,0.3825473,0.2477088,0.16001487,0.20287849,0.48034307,-0.11420894,0.15142769,-0.6428686,0.06879719,0.09936895,0.14852186,0.2171217,-0.2373718,-0.44561592,0.7100765,-0.04448593,0.43188632,0.24600172,0.2552677,-0.24079819,-0.47251973,0.09648008,0.746068,0.2474731,0.012504091,-0.02159146,-0.22001915,-0.027532032,-0.2390036,-0.06256596,0.43849257,1.0530957,-0.10865816,-0.18278162,0.3430175,-0.101763956,0.22502577,-0.013925624,-0.30362353,0.00021197896,-0.043365452,0.4859316,0.59152985,-0.078073286,0.34892452,-0.15213874,0.43458807,0.0074348315,-0.48391628,0.8336286,0.72614366,-0.12631328,-0.0146440035,0.4447492,0.40039125,-0.3509318,0.59037894,-0.55787164,-0.49409914,0.61837083,-0.20214875,-0.39895284,-0.08876526,-0.3870784,0.1692837,-0.94500166,0.44725165,-0.5065004,-0.44457304,-0.47597918,-0.124773145,-3.718619,0.27179202,-0.33010355,0.09947357,-0.28981748,0.10461348,0.28776884,-0.77368754,-0.41482535,0.25626704,0.20295365,0.5966998,-0.019801473,0.17056692,-0.19824564,-0.10970638,-0.06569502,0.14627172,-0.09565433,0.22799444,0.050327796,-0.4421291,0.2373172,-0.052399393,-0.47317564,0.27429965,-0.511509,-0.46881643,-0.23306644,-0.6558277,-0.3352656,0.62571096,-0.39077926,0.04203826,-0.20367436,0.23883714,-0.29661414,0.15194647,-0.080854185,0.12854646,0.19527389,-0.14962474,0.011795069,-0.27789423,0.65135837,-0.07464159,0.44121483,0.00034852079,-0.15659997,-0.0711469,0.5992191,0.4188206,-0.18943107,0.92021805,0.3910202,0.030477742,0.16990294,-0.36236218,-0.2827687,-0.6525545,-0.60384744,0.15340413,-0.39487243,-0.48159686,0.020717278,-0.38398576,-0.9035589,0.5824688,-0.022350112,0.22837187,0.011505852,0.07310626,0.22699688,-0.09972965,0.027840294,-0.08336603,-0.12451434,-0.52737105,-0.074455686,-0.60827595,-0.38968804,-0.07973727,0.7449975,-0.37478307,-0.066922545,-0.1650611,-0.22440915,0.13346484,-0.08443295,0.101800285,0.27250987,0.29186025,-0.08892693,-0.7128379,0.5131267,-0.171308,-0.025732726,-0.56890255,0.06990942,0.5209061,-0.86169034,0.5558299,0.48578393,-0.047797408,0.09301893,-0.42962876,-0.30482903,0.005122771,-0.017796978,0.42872682,-0.074914195,-0.54548746,0.52265567,0.30369225,-0.56975955,-0.83418447,0.24084944,-0.06732077,-0.38085213,0.15783486,0.26662055,-0.0295765,-0.10480994,-0.37601873,0.046734314,-0.4792812,0.33898982,0.10490345,0.02962266,0.5118516,-0.061514314,-0.48790312,-0.8527263,-0.17560764,-0.47384867,-0.063601434,0.15453528,0.006680353,-0.21128279,0.022076309,0.09156547,0.44990468,-0.14206848,0.13793884,0.12467641,-0.47794497,0.25238407,0.39045525,0.2788237,-0.42381445,0.63920027,0.16957879,-0.21172793,-0.21516974,0.10940138,0.48197708,0.23486483,0.33116642,-0.14682066,-0.05287485,0.5216043,0.8263097,-0.01012909,0.34279737,0.039548665,-0.09697297,0.5867712,0.15806733,0.24069916,0.10721014,-0.34540856,-0.033656437,0.035292562,0.064400144,0.49062183,0.30822808,0.39914104,0.1734941,-0.25366196,-0.05144235,0.344287,-0.14108741,-1.0685833,0.5972802,0.27239475,0.6823538,0.48965678,0.03925652,-0.27302197,0.5995408,-0.17309372,0.13618286,0.14162947,-0.19892244,-0.44491592,0.75517064,-0.5489112,0.110681914,-0.17537825,-0.14760514,0.021587497,0.15443699,0.20992969,0.76973486,-0.052880198,0.07961547,-0.25202218,-0.14786778,0.038297955,-0.4057093,0.079248995,-0.42659223,-0.31940192,0.5200817,0.16495666,0.27016506,-0.1316204,-0.0825766,0.10371578,-0.084974885,0.31851128,-0.17260952,-0.026481649,0.23938783,-0.671021,-0.1990215,0.4774232,0.25037187,0.22665252,-0.17202614,-0.24858952,0.17425586,-0.34386936,-0.12203153,-0.17550306,-0.6068749,0.103156716,-0.11321265,-0.28734103,0.45422578,-0.21004383,0.28004763,0.22675556,0.055436373,-0.14839081,0.13342057,0.13100894,0.7368552,0.1581228,-0.37904856,-0.4076202,-0.03137323,0.18768673,-0.30652073,0.1485864,-0.34717473,-0.14971416,-0.45796064,0.66247344,-0.17354196,-0.18033655,0.24761201,-0.37989092,-0.22167571,0.4875908,-0.27624056,-0.06251826,0.23525433,-0.14932005,-0.24220932,-0.005788535,-0.48622823,0.18093859,0.31261358,0.11371913,-0.1999345,-0.25903204,-0.1501065,0.6618424,0.031171486,0.21766095,0.028168857,0.07259288,-0.17764594,0.058827013,0.23518805,0.5085675,0.22952473,0.10494272,-0.4324763,-0.41930023,-0.26094684,-0.23402129,-0.058849115,0.08919412,0.06819219,-0.38696957,0.6286816,0.23694186,1.2797041,0.21271408,-0.24779864,0.051211596,0.566415,-0.019735763,0.10059285,-0.33438203,0.95590687,0.6638813,-0.31773537,-0.06945182,-0.6022451,-0.048494205,0.33540615,-0.29195818,-0.05097152,-0.05741166,-0.5400364,-0.65705377,0.38211688,0.27752078,-0.026310617,0.08025815,-0.10336166,-0.13038908,0.23680007,0.5031144,-0.7679234,-0.26296487,0.2165329,0.071736835,0.24928679,0.16520321,-0.24089451,0.5540888,-0.76998883,0.18954976,-0.41064188,0.009412822,-0.36990604,-0.33632484,0.2446866,0.15992731,0.3998282,-0.19674444,-0.53477156,0.052742492,0.4598371,0.130304,0.17614289,0.7143481,-0.3226763,0.034537382,0.22241576,0.6683046,1.2181318,-0.34788188,0.05633557,0.2536279,-0.37819675,-0.53796595,0.46432844,-0.20731778,-0.28755412,-0.27943775,-0.63375765,-0.62142414,0.21162312,0.113871515,0.032690678,0.18851466,-0.52969104,-0.2065347,0.2803055,-0.43058422,-0.2967633,-0.16726267,0.66757745,0.6837606,-0.4353529,-0.37007987,0.15673985,0.30377117,-0.333006,-0.5841068,-0.17784084,-0.12722059,0.4424578,0.26637825,-0.23906334,-0.10659912,0.19366618,-0.40284276,0.11048754,0.23794878,-0.38320205,0.17160685,-0.15065464,0.010932659,0.7265119,-0.25549078,0.1220207,-0.87194085,-0.24503107,-1.0066893,-0.3248099,0.6775792,0.1524789,-0.019027626,-0.539041,0.010198821,-0.027886264,0.08792826,-0.011280924,-0.48928508,0.30392298,0.09196284,0.6369234,-0.11099684,-0.96426296,-0.022569729,0.17612892,-0.18129373,-0.5826864,0.49443483,-0.06195947,0.9736662,-0.003570035,-0.19504811,0.06236954,-0.5397945,0.17706896,-0.34432396,-0.23787618,-0.80878067,0.094067164 -258,0.3652087,-0.23442292,-0.5348655,0.018204862,-0.19373399,-0.095366605,-0.19531824,0.5103989,0.3149485,-0.08971003,-0.043111682,0.1189774,-0.1432772,0.35011816,-0.01449533,-0.4950153,0.051096145,0.17639181,-0.52529466,0.6285484,-0.39726683,0.06686967,-0.29229325,0.45087245,0.32428077,0.2930597,-0.064492464,0.10126387,0.010499961,-0.11489738,-0.0032843442,0.11589641,-0.6696314,0.17214021,-0.05436933,-0.21698108,0.048122324,-0.4754116,-0.3589217,-0.8828299,0.28036198,-0.59498024,0.5900574,-0.12132221,-0.25287932,0.31361362,-0.02882464,0.45111004,-0.4208633,-0.13060531,0.10634732,-0.17816637,-0.2563089,-0.06213898,-0.033886578,-0.2246935,-0.6055099,-0.058441933,-0.3200798,0.03611245,-0.15953766,0.083591655,-0.43486947,-0.041847523,0.04812628,0.41068083,-0.45920706,0.25366485,0.16226146,0.04152717,-0.101165876,-0.71138984,0.047302835,-0.21689121,0.29852393,-0.040670175,-0.3039694,0.33839032,0.22821252,0.2768512,0.010166654,-0.100600995,-0.23252344,0.06546534,-0.053530134,0.5247417,-0.080174014,-0.27491295,-0.11048489,0.12190595,0.12884091,0.21418467,0.0906331,-0.08369929,-0.23843127,0.08786818,-0.18290994,0.4467753,0.49521524,-0.2889992,-0.20993812,0.41306514,0.5860567,0.3319996,-0.085990414,0.01586296,0.05235376,-0.5397567,-0.17273913,-0.011164954,-0.23278816,0.40815455,-0.12868798,0.20016864,0.6655397,-0.22310919,-0.26662177,0.0858869,0.21656558,0.0063782153,-0.35242373,-0.36899203,0.31705776,-0.53176415,0.24372035,-0.08002814,0.5498018,0.3644357,-0.5078967,0.27244136,-0.5043175,0.13001275,-0.1398425,0.49073407,0.9205802,0.53438085,0.40626657,0.8218013,-0.39643887,0.17163633,-0.0617212,-0.3097113,0.16409232,-0.22678334,-0.15050022,-0.53268194,-0.0485932,-0.10914434,-0.16743194,0.25357082,0.1047321,-0.47983977,-0.07374007,0.073576175,0.7042984,-0.16575176,0.009504855,0.78656924,1.0359694,1.1612632,0.05027639,1.1038489,0.22591528,-0.18593293,0.17458937,-0.19373196,-0.833896,0.22505309,0.20302072,-0.24434958,0.2283029,0.21961021,-0.19868104,0.40388596,-0.48069778,-0.09445564,-0.07098695,0.32028043,0.1987701,-0.103710376,-0.50437725,-0.30936944,-0.21532935,0.06468174,0.04428263,0.34288305,-0.23489965,0.2834104,0.022167504,1.4165815,0.009645649,-0.009341604,0.08326931,0.6349932,0.21787363,-0.32560748,-0.29978284,0.28697455,0.5899574,0.26138407,-0.5342271,0.07385574,-0.16298215,-0.32183763,-0.13247806,-0.28624073,0.019976946,-0.014573427,-0.15904742,-0.3137612,-0.06677823,-0.09917832,0.61808085,-2.8178084,-0.014019875,-0.022108708,0.346697,-0.1581614,-0.29133484,-0.14371373,-0.5481285,0.322351,0.23447484,0.58546245,-0.62616754,0.38902003,0.31196785,-0.735784,-0.022319267,-0.6597098,-0.17996421,0.07696013,0.33275598,0.008498586,-0.03811894,0.024988843,0.11530486,0.58422387,0.16481128,0.050577547,0.33429495,0.23024175,0.031836793,0.53726333,-0.010764835,0.5542154,-0.1537058,-0.15527914,0.11607463,-0.3168289,0.36503348,-0.22117744,0.09273055,0.5768445,-0.37755534,-0.98690075,-0.5702665,0.24730195,1.3353051,-0.24600077,-0.33282253,0.17380379,-0.6437981,-0.24944574,-0.16451095,0.2993523,-0.15587504,-0.28458104,-0.648826,-0.047214203,0.055688437,0.24115135,0.011962558,-0.07560832,-0.44765523,0.5099572,-0.16436537,0.36160988,0.35343936,0.18010794,-0.099577576,-0.48167202,-0.036378786,0.6692326,0.38588268,0.07537331,-0.2804715,-0.16910301,-0.31509256,-0.021635102,0.06488229,0.4430601,0.50783336,-0.25443652,0.17311676,0.25043133,-0.11651712,0.072712295,-0.100052744,-0.29597914,-0.17439936,-0.009818488,0.5063068,0.84368557,-0.018880973,0.43416166,0.041766856,0.17261368,0.10067439,-0.56844246,0.4739235,0.9165708,-0.2736403,-0.27345437,0.40989855,0.37930584,-0.12358317,0.46674716,-0.38413817,-0.10095091,0.30574992,-0.085548684,-0.22274496,0.007984872,-0.25495422,0.030804487,-0.58531344,0.2991429,-0.24129549,-0.49782997,-0.55783355,0.042170856,-3.3535814,0.113357425,-0.33850092,-0.1754365,-0.054121934,-0.111617655,0.2072436,-0.65857804,-0.567633,0.23107591,0.17274202,0.7231988,-0.20086578,-0.10723831,-0.2025698,-0.45497674,-0.550504,0.13510485,0.21087827,0.3265611,0.18239564,-0.46439424,0.0020833658,-0.06821599,-0.37763822,-0.07908039,-0.4843659,-0.24141961,-0.090848655,-0.5811922,-0.29241535,0.6926843,-0.18146229,0.030508349,-0.26401392,-0.00656696,-0.046746586,0.25114664,-0.010968343,0.03566351,0.11080685,-0.09148361,0.07711856,-0.15487891,0.164628,0.00866209,0.32540095,0.13272792,-0.030182637,0.08277989,0.54237723,0.6813609,-0.23154536,1.0472106,0.6203194,-0.20194489,0.160379,-0.15336198,-0.26683024,-0.372349,-0.3036256,-0.045861088,-0.4756576,-0.27496234,0.109207675,-0.3931518,-0.7667485,0.55670744,-0.10780643,0.11810304,0.12029752,0.29042184,0.6380955,-0.17271854,0.12794426,-0.017390665,-0.10984507,-0.46146232,-0.12278307,-0.4332712,-0.48950964,0.17745532,1.0140779,-0.5305668,0.16499402,0.09818793,-0.4577151,0.037967887,0.1392433,-0.15902947,0.14423272,0.3414583,-0.01670296,-0.55274147,0.24037196,-0.21839362,-0.0076906155,-0.82492566,0.2869187,0.5007855,-0.66877025,0.5125312,0.21511751,-0.09295834,-0.13831434,-0.59353405,-0.26415026,-0.08970647,-0.23858224,0.3780535,0.31398386,-0.89589435,0.4188945,0.23886248,-0.31525886,-0.61984354,0.45228228,-0.027981011,-0.14272651,-0.009953012,0.29051572,0.17229149,0.1065478,-0.2814328,0.24994506,-0.3452052,0.20374492,0.098099194,-0.16280094,0.08888002,-0.13012801,-0.016924767,-0.68413776,-0.093358465,-0.4178718,-0.31300658,0.30847076,0.08266883,0.099677615,-0.010866776,0.3464424,0.31550997,-0.2498428,0.07637584,-0.1333653,-0.41047558,0.38731006,0.49779242,0.49167296,-0.34874865,0.5875931,0.075192995,-0.18414268,0.071355805,-0.0070902016,0.31349328,-0.0029591413,0.41995335,0.20246162,-0.19496359,-0.026808836,0.7010345,0.1232802,0.4911273,-0.1092548,-0.07352627,0.11456403,0.117580816,0.23479876,0.1642687,-0.5351149,0.13566682,-0.18836318,0.28041875,0.47139645,0.24830844,0.19723752,-0.10038821,-0.2560037,-0.1265203,-0.034434136,0.16649124,-1.5273668,0.4116213,0.16619569,0.81098104,0.35401216,0.072139576,-0.09588332,0.60740215,0.026898466,0.11197933,0.26410565,0.19155718,-0.4768758,0.42223275,-0.845107,0.6696872,0.058882676,-0.00070030644,0.16746393,-0.0511309,0.5065916,0.707682,-0.22660533,-0.04498678,-0.035134874,-0.30072802,0.015034641,-0.31993178,0.13150743,-0.57552725,-0.2777559,0.52144426,0.5781769,0.3607094,-0.17014709,-0.0047427807,-0.030618612,-0.15806715,0.1302213,-0.032695808,-0.054107364,0.005908833,-0.5978419,-0.14799923,0.40516466,-0.27495673,0.097317606,-0.01907113,-0.01974978,0.22564822,-0.14909135,-0.014114151,-0.10002693,-0.74559754,-0.096374944,-0.27092832,-0.33308622,0.4960763,-0.02531964,0.21007864,0.23532456,0.09832696,-0.30240938,0.4534553,0.009341955,0.750407,-0.10067822,-0.11586,-0.3998832,0.1702342,0.14760682,-0.08977736,0.0915504,-0.3086454,0.10694997,-0.49468833,0.40781912,-0.102358155,-0.33596104,-0.07131934,-0.071003616,0.039879,0.51625216,-0.14952536,-0.12517129,-0.068237,-0.30140895,-0.33946612,-0.4003881,-0.24304236,0.060143646,0.33396637,-0.09938639,-0.062465176,-0.23733975,-0.060359873,0.41016564,0.07397599,0.2688569,0.1424298,0.07523679,-0.25414294,-0.21301804,0.14287657,0.5807533,-0.23136641,-0.2940903,-0.517752,-0.5316387,-0.38370463,0.20971686,-0.022188187,0.42559814,-0.026828457,-0.14280957,0.6111209,0.15211037,1.2016754,-0.0637656,-0.37144753,0.10891362,0.65172946,-0.104092315,-0.08915232,-0.31870696,0.84707195,0.46029332,-0.24049753,-0.12205179,-0.48469198,-0.25605196,0.2919341,-0.20429268,-0.05848109,0.025960317,-0.5126518,-0.083352566,0.3156358,0.19042088,0.20970334,-0.119158454,0.08593201,0.42522103,0.15660875,0.27304098,-0.4217609,-0.11003058,0.2915022,0.26574317,0.05320048,0.20397839,-0.4114151,0.33487386,-0.33561182,0.025746047,-0.12566197,0.23265114,-0.13998118,-0.30694968,0.28131297,0.20559731,0.5313253,-0.38678044,-0.34623832,-0.2682434,0.49218976,0.27046835,0.17949232,0.52726245,-0.2681176,-0.09117411,-0.072411165,0.43123415,0.7998492,-0.18870093,0.079828486,0.30667776,-0.2893322,-0.56166494,0.31607172,-0.27567628,0.152582,0.03864277,-0.0909526,-0.66360813,0.23659304,0.16535799,0.17987493,0.1396654,-0.6611573,-0.196591,0.12765104,-0.22413749,-0.07624184,-0.31728423,0.12568805,0.7003423,-0.21210936,-0.48312047,0.10462909,0.24378219,-0.010030884,-0.47426128,-0.13276035,-0.3450092,0.1924785,-0.018750777,-0.42692512,-0.32790515,-0.042246383,-0.4765968,-0.09912276,0.002536549,-0.2135658,0.1099621,-0.26090586,0.067277506,0.8050553,-0.39263624,0.3214267,-0.47131756,-0.43554825,-0.76055914,-0.33353895,0.3627896,0.30976298,0.036402617,-0.74075276,0.05322349,-0.21956946,-0.21875522,-0.055897553,-0.4897311,0.52716887,0.04663606,0.060394563,0.010825955,-0.9164802,0.21213315,0.13378583,-0.24819675,-0.53015417,0.52701104,-0.112574026,0.8323928,0.18768147,0.16116211,-0.022052169,-0.2113575,0.01969917,-0.24127358,-0.23309748,-0.68310136,-0.101080365 -259,0.48533392,-0.3152397,-0.39702561,-0.20647535,-0.10407134,0.09691511,-0.26115182,0.35204178,0.100342646,-0.42366344,-0.12352194,-0.15712555,0.06950267,0.40010875,-0.1795877,-0.5839318,0.015689058,0.1542137,-0.4225873,0.4629473,-0.4779288,0.21072838,-0.079196,0.5125975,0.17414734,0.34086213,0.17201622,0.0020573225,-0.21353552,-0.342095,-0.046678867,0.14763185,-0.6078197,0.10183751,-0.0060113627,-0.3296408,-0.020663708,-0.5363735,-0.3938146,-0.7222734,0.35453343,-1.0316814,0.7010887,0.02092333,-0.30648082,0.2802651,0.19015288,0.46071747,-0.337461,0.077841595,0.32007787,-0.14795354,-0.014256222,-0.2564129,-0.09921867,-0.49415722,-0.5256009,-0.085576005,-0.38397598,-0.3042533,-0.31676483,0.11396126,-0.2539893,0.06835738,-0.008700149,0.43192407,-0.56960994,-0.00957489,0.119510785,-0.22138867,0.4554724,-0.5021564,-0.21262681,-0.030481616,0.37020883,-0.13610923,-0.13639964,0.39836407,0.22842751,0.41374472,-0.03441692,-0.10169924,-0.22045572,-0.08044652,0.21428585,0.5307401,-0.21237527,-0.53936476,-0.19689575,-0.10505847,0.21814655,0.1989222,0.13161059,-0.22515701,-0.009093189,0.25856942,-0.21232997,0.36954716,0.46630684,-0.3913906,-0.11654378,0.26132727,0.543066,0.071802095,-0.15712722,-0.05975017,0.12050117,-0.49120983,-0.27617136,0.040930755,-0.29051498,0.5698063,-0.067246914,0.32397795,0.76468974,-0.19295354,0.106459394,-0.09486885,0.024641871,-0.17356072,-0.2193211,-0.3936968,0.27416003,-0.41204724,0.18030705,-0.25931033,0.7419402,0.15360582,-0.66545266,0.40578386,-0.5294769,0.012773441,-0.20711628,0.39466712,0.5499425,0.37834436,0.426063,0.769239,-0.5554841,0.010056214,0.0113150645,-0.32028097,0.13750152,-0.27867055,0.05711043,-0.5953418,0.05350381,0.047961526,-0.14203951,0.14186658,0.48806018,-0.56445843,0.06668649,0.1367671,0.9293172,-0.3297071,0.1136652,0.73379725,1.1615506,0.9082853,0.016310768,1.1122543,0.40425238,-0.34820014,0.18783858,-0.19799049,-0.60008997,0.28630528,0.48244426,-0.131183,0.25811893,0.097651854,-0.033356603,0.53621316,-0.61944115,0.18004696,-0.1035731,0.12847318,0.071034424,-0.22527646,-0.50849676,-0.07245864,-0.021672918,-0.11548244,0.20899148,0.2589279,-0.26119128,0.49490428,-0.049483422,1.8124746,-0.07272587,0.08161432,-0.025244597,0.59585947,0.2206078,-0.07830707,-0.060357828,0.35623732,0.47891766,0.12962048,-0.62127364,0.1883492,-0.19973645,-0.37784114,-0.19785938,-0.3759515,-0.0044885534,0.0026478043,-0.34460062,-0.1396713,-0.016142802,-0.1724811,0.38513774,-2.704485,-0.28298596,-0.16092953,0.41062808,-0.30909246,-0.32878283,-0.069541045,-0.40795025,0.62971574,0.31469133,0.44761357,-0.56451315,0.48373535,0.5206321,-0.43152156,-0.16686235,-0.5572585,-0.1859564,-0.059797317,0.38696316,0.0130323935,-0.23265119,-0.10041373,0.3164962,0.4432993,0.10871492,0.2142602,0.15587743,0.39495203,-0.033648513,0.6577378,0.06130327,0.643787,-0.053004093,-0.24295007,0.3347587,-0.28380612,0.119060464,-0.15588893,0.16337515,0.44229725,-0.37975183,-0.9189648,-0.8403378,-0.17421402,0.96385753,-0.23877989,-0.5888039,0.14601086,-0.14644451,-0.3851414,0.08292818,0.3404573,-0.1497501,0.009053956,-0.8805309,0.104953416,-0.11721814,0.07076205,0.057820946,-0.006014713,-0.6174016,0.6719594,-0.117332235,0.50050205,0.29102087,0.19318767,-0.2121254,-0.40046573,0.10023689,0.97450954,0.4255428,0.11139844,-0.16624245,-0.16639212,-0.30455917,-0.20320895,0.009630646,0.6585403,0.7088284,0.004696465,0.10723888,0.20921178,-0.20461978,-0.012829519,-0.12670092,-0.4249546,-0.018467924,0.04032282,0.6801533,0.53727084,-0.13910042,0.5386651,-0.15688658,0.39807191,-0.09790707,-0.43141767,0.48347074,1.112021,-0.13722368,-0.28067306,0.64917177,0.44452238,-0.30973434,0.3930948,-0.73960066,-0.2754123,0.45889074,-0.2260053,-0.48245642,0.19480637,-0.22486556,0.2330838,-0.9777584,0.29382804,-0.22279455,-0.44422475,-0.6025969,-0.30797893,-3.7129061,0.13785283,-0.30039325,-0.20915113,-0.10747067,-0.26214057,0.3640236,-0.74768215,-0.50212204,0.15488064,-0.07798997,0.8537013,-0.043915052,0.14345859,-0.31119037,-0.09122206,-0.13595624,0.1432477,0.1729686,0.3714791,0.07137675,-0.46980765,0.047355566,-0.026832027,-0.537574,0.004553497,-0.577129,-0.5415481,-0.14941461,-0.5736976,-0.21914117,0.7177014,-0.2880151,0.111040235,-0.2836263,0.10160826,-0.25875527,0.36899105,0.1338403,0.14910297,0.10651149,-0.05854204,0.1507016,-0.41229326,0.25476578,0.056375653,0.26196852,0.2652325,-0.13395832,0.09976256,0.43367842,0.54714453,-0.004424442,0.682536,0.5036458,-0.16567257,0.12287675,-0.469069,-0.3693827,-0.45897427,-0.55962133,0.0041512526,-0.40504903,-0.53145224,-0.22306086,-0.488475,-0.79794925,0.6264917,0.11070399,0.11807965,-0.08670203,0.27389777,0.4278802,-0.19570804,-0.22648157,-0.009084365,-0.134287,-0.6508959,-0.14655766,-0.6022183,-0.52636373,0.10058653,0.834569,-0.14828059,-0.06980692,0.15815414,-0.32575962,0.07267355,0.09297855,-0.0118475305,0.012570381,0.4678557,-0.024027884,-0.7132344,0.55444485,-0.18883443,-0.20215209,-0.8185113,0.21552299,0.6346875,-0.5062386,0.62181246,0.4333896,0.09676768,-0.14719748,-0.3614281,-0.11010433,0.019738605,-0.1930827,0.43225044,0.12474311,-0.71525514,0.4693618,0.3912809,-0.28616068,-0.70346075,0.60302556,-0.04844135,-0.34227696,0.05380002,0.29087836,0.11788695,-0.054426823,-0.18372269,0.4037362,-0.4444196,0.33941838,0.28328815,-0.010232717,0.5228032,-0.14058845,-0.15239814,-0.79362327,-0.09540639,-0.5562112,-0.33440542,0.15935037,0.0778093,0.102214575,0.3348957,0.0450742,0.44468123,-0.4569393,0.07198057,-0.046927612,-0.27789822,0.31750497,0.4285655,0.385111,-0.49778238,0.62853134,0.040330708,-0.07283195,-0.01880739,0.0010378702,0.49811387,0.12090137,0.4232765,-0.10200774,-0.19103725,0.29587653,0.70171726,0.22982578,0.53914505,0.2353375,-0.21112797,0.13835149,0.1826648,0.14715698,0.074747756,-0.5616306,0.11250595,-0.090390615,0.15137374,0.44566318,0.27467695,0.3139109,0.018594315,-0.3355143,0.10417168,0.13359985,-0.14460431,-1.2468144,0.44339395,0.20612851,0.78910446,0.32699853,-0.06264687,0.11796174,0.7517203,-0.22081992,-0.0073435777,0.2100778,0.023072269,-0.45382616,0.56228,-0.6732518,0.3540733,0.07373401,-0.07054092,-0.10676629,-0.0027779,0.41550428,0.679351,-0.14348982,0.17891358,-0.020111999,-0.32569098,0.23941872,-0.35315236,0.07433411,-0.4865994,-0.30692318,0.61979574,0.54168576,0.40641567,-0.14929399,-0.070868775,0.123606406,-0.113720655,0.16229203,0.22982712,0.14491208,0.08355592,-0.8010823,-0.37608972,0.46331745,-0.10323829,0.21935551,-0.09426843,-0.21534689,0.27444795,-0.19505861,-0.011520548,0.06994443,-0.68798494,0.039331112,-0.3563189,-0.41416305,0.6158206,-0.0057896078,0.12200721,0.15025662,0.029406,0.00016817024,0.31413195,0.10196904,0.82372105,0.08430882,-0.23617007,-0.4525686,-0.029494891,0.14636949,-0.23754866,-0.02848357,-0.3953154,0.12170421,-0.58233446,0.4825239,-0.006830871,-0.3035967,0.26910558,-0.1686105,0.0020453185,0.5536147,-0.29048088,-0.07998933,0.048718452,-0.22124374,-0.25499743,-0.31620508,-0.2235954,0.18974172,0.08499809,0.12528892,-0.06797198,-0.07103269,-0.3360394,0.60559714,0.04605606,0.46707305,0.5792758,-0.045078363,-0.31353244,-0.33114928,0.08643602,0.4789343,-0.19708337,-0.14987949,-0.37663966,-0.69430983,-0.4131322,0.30368757,-0.12830779,0.36630815,0.114140764,-0.2714757,0.6374654,-0.088746496,1.1578454,0.043295227,-0.49895218,0.10591813,0.654463,-0.05446013,-0.0125454,-0.3532841,0.94849676,0.5943828,-0.08080639,-0.03185563,-0.46169916,-0.08563285,0.31174418,-0.25931245,-0.14418952,-0.13941897,-0.6992674,-0.3740973,0.24613206,0.32508722,0.27164048,-0.008472272,0.2015437,0.23319581,0.024818351,0.3482968,-0.535441,-0.30818638,0.46811137,0.24530064,-0.094001316,0.122477494,-0.43153557,0.42538086,-0.40218258,0.003582069,-0.4734625,0.12987365,-0.032863777,-0.25748035,0.25497445,0.045794435,0.20894213,-0.3123419,-0.3264238,-0.07106347,0.50776404,0.23621681,0.0885051,0.6128027,-0.24807708,0.08283209,0.063491836,0.5212975,1.1586984,-0.24937336,0.18660071,0.45971516,-0.39547157,-0.6247563,0.3271759,-0.21628264,0.20388277,0.014966266,-0.31313428,-0.61093664,0.34176257,0.1503956,-0.17675869,-0.029504564,-0.5493442,-0.31523377,0.3560892,-0.26977184,-0.18107046,-0.2935302,0.03911992,0.56996626,-0.2938958,-0.1755995,0.10636628,0.34834975,-0.16542184,-0.47153807,-0.11828249,-0.43365917,0.38548508,0.11552056,-0.39349982,-0.07578923,-0.0040045423,-0.36316708,0.17790715,0.14468919,-0.4528317,0.067244336,-0.33488682,-0.123302005,0.9152657,-0.11211767,0.048723094,-0.71914244,-0.32872397,-0.8567814,-0.330051,0.5002517,0.045427036,-0.013112575,-0.5554563,0.018660758,-0.12684412,-0.074999645,-0.16997449,-0.49540028,0.3613808,0.13233952,0.5977305,-0.075703554,-0.68956596,0.07370668,0.08994125,-0.3014893,-0.6352066,0.667511,-0.07962036,0.89189726,-0.01437472,0.08835072,0.24204323,-0.4815201,-0.06933276,-0.24390697,-0.31511095,-0.8408853,0.05958763 -260,0.43126258,-0.13585809,-0.4257569,0.06335115,-0.2550286,0.0507999,-0.30744174,0.3742226,0.15388899,-0.47740784,-0.20368789,-0.060720094,-0.048453305,0.32659304,-0.18435542,-0.4657543,-0.013303502,0.20415924,-0.38985696,0.5021861,-0.5273087,0.38717955,0.1253645,0.475502,0.41756445,0.21421733,0.22889256,-0.0029554884,-0.45160332,-0.34393084,-0.107311316,0.14259484,-0.64444184,0.12412182,-0.2409882,-0.56187016,0.013014157,-0.524972,-0.23896858,-0.6628919,0.35480016,-0.78176427,0.41611046,-0.06567789,-0.19974117,0.45904216,0.02436769,0.31022868,-0.1176329,0.036724616,0.20860028,-0.1982987,-0.061900113,-0.14368324,-0.20349471,-0.35449514,-0.5721003,0.10247755,-0.45754883,-0.076476365,-0.3195034,0.25329033,-0.24502137,0.040539138,0.019861178,0.40793067,-0.47531232,-0.028432036,-0.061410222,-0.0485298,0.13541082,-0.644068,-0.2832163,-0.18128611,0.22110115,-0.16151595,-0.019498121,0.20607704,0.27527517,0.46238092,0.11352547,-0.087991245,-0.5152248,-0.11513165,0.11204159,0.5807006,-0.15339717,-0.39869493,-0.2671461,-0.20604692,0.21790355,0.09902401,0.08233908,-0.22287239,-0.0027082243,0.077191345,-0.36759064,0.33908463,0.46012646,-0.39944613,-0.19936317,0.24717264,0.50026387,0.1526901,-0.26832741,-0.08724017,-0.043448463,-0.4216946,-0.054679092,0.027709298,-0.25631866,0.58625495,-0.14963718,0.26380542,0.59409904,-0.29080388,0.14115636,-0.046120502,0.14101201,-0.006006805,-0.23994645,-0.40607262,0.30115998,-0.45875162,0.086521946,-0.2492972,0.76870257,0.02945532,-0.6189358,0.3963713,-0.45135963,0.10356086,-0.12460669,0.47024447,0.6592901,0.30212355,0.28202254,0.53877777,-0.33167437,0.09541998,-0.16848901,-0.20820777,-0.07867361,-0.11348848,0.007904847,-0.40196773,0.050580185,-0.007926325,-0.043579835,0.040303692,0.7109773,-0.41460067,-0.021345044,0.2506524,0.7907918,-0.38380817,-0.06387708,0.79557383,1.1806389,1.110948,0.03685769,1.0977042,0.37282032,-0.26745334,-0.10318283,-0.2681317,-0.50866944,0.31717762,0.29652315,-0.26391342,0.25547928,0.2184426,-0.10325292,0.47421226,-0.44713384,-0.06004735,-0.16872889,0.06287171,-0.012704571,0.11454797,-0.46747875,-0.27389514,0.1180649,0.019795299,0.11826169,0.23268357,-0.3667205,0.4341142,0.0708014,1.5804235,-0.14948195,-0.029530885,0.033958793,0.53194064,0.12674962,-0.13947502,-0.0383143,0.19618894,0.30679837,-0.044149138,-0.6548861,0.06342946,-0.2116251,-0.5324234,-0.20633025,-0.18436813,-0.09156709,-0.0003181696,-0.5010014,-0.18205126,-0.07329561,-0.3830194,0.4078006,-2.458764,-0.18443775,-0.020528989,0.29938444,-0.1825541,-0.49900335,-0.11967387,-0.50502324,0.5354509,0.2905789,0.43936878,-0.56290114,0.34056744,0.39548805,-0.35089272,-0.20928608,-0.68162763,-0.14241862,-0.13186112,0.37717506,-0.09067767,-0.10936446,-0.09205224,0.026090177,0.5903366,-0.057636,0.21231559,0.26364908,0.4160177,-0.011875021,0.56044525,0.23000498,0.5226783,-0.240719,-0.24397913,0.4061809,-0.39033872,0.15766805,-0.20631899,0.2174684,0.41392252,-0.51856595,-0.8960898,-0.77594745,-0.24922088,1.1884679,-0.15970501,-0.47124654,0.1985597,-0.076938346,-0.20918499,0.05728546,0.35811523,-0.14282222,-0.1260794,-0.7944854,0.016886806,-0.079173714,0.13046417,0.029693643,0.14076042,-0.45233658,0.5973742,-0.13035342,0.35395315,0.39181045,0.29999033,-0.23926881,-0.38570756,0.113088466,1.046976,0.3930958,0.14578763,-0.3685561,-0.19067469,-0.2968825,-0.09913109,0.06915825,0.24549204,0.63675326,-0.029408865,0.20056792,0.21301848,-0.032167796,0.09699217,-0.17447345,-0.3596055,-0.11110418,0.12529753,0.6011569,0.57282627,0.0016348601,0.53681254,-0.19497925,0.28483087,-0.18208247,-0.41196075,0.46442646,1.041605,-0.21848182,-0.19060351,0.716134,0.5223007,-0.16834226,0.5383269,-0.7129045,-0.47654533,0.38111547,-0.11920455,-0.328472,0.16000737,-0.36868033,0.098183446,-0.86466515,0.22688879,-0.2214639,-0.4050639,-0.6750539,-0.29639927,-2.7767303,0.12930913,-0.19919838,-0.18702379,-0.05865179,-0.3113828,0.2939035,-0.5827297,-0.4760896,0.15812927,0.10859215,0.6987244,0.05359506,0.17685941,-0.181708,-0.2828048,-0.32598445,0.13393204,0.1947907,0.34483558,0.07808932,-0.5239571,0.16495495,-0.21489707,-0.30629,-0.017990053,-0.59646714,-0.39716607,-0.093714386,-0.43733463,-0.38160947,0.5562106,-0.49530783,0.1121449,-0.19906431,-0.049981836,-0.22148523,0.4490526,0.17838396,0.05570543,0.11274707,-0.013018344,0.16458158,-0.31229782,0.20478445,0.13443764,0.06883461,0.41288653,-0.0928582,0.11140355,0.32279414,0.5701303,-0.06662051,0.8664368,0.49729055,-0.14247103,0.31461176,-0.30021894,-0.2373538,-0.6507797,-0.35816357,-0.1285874,-0.34485185,-0.508814,-0.17814173,-0.3747298,-0.88745046,0.59393233,0.02022963,0.18799908,-0.028476708,0.4341429,0.36450827,-0.17539981,-0.117815815,-0.044902515,0.05141622,-0.49842772,-0.46539825,-0.7615461,-0.5481003,-0.060735624,0.9093951,-0.08499859,0.0733472,0.24093339,-0.2357723,0.03342007,0.17985658,-0.0044490416,0.010802575,0.57218176,0.029189937,-0.7635409,0.426118,-0.11194324,-0.018159024,-0.6061068,0.24477895,0.59276944,-0.6555846,0.3838157,0.5379479,0.18944512,0.097389,-0.43636557,-0.15742804,-0.029130781,-0.24798483,0.5717595,0.22454108,-0.75757676,0.51970226,0.29370472,-0.22237825,-0.7850094,0.5037407,0.018402208,-0.2800906,-0.036425155,0.35448366,0.26426965,0.03095835,-0.29429168,0.14749955,-0.46055585,0.3624359,0.19254753,-0.07822461,0.43824655,-0.34936836,-0.14798452,-0.69170153,0.07036751,-0.42848822,-0.37779087,-0.022494245,0.10657445,0.045878623,0.41018718,0.070658244,0.38063747,-0.36449412,0.056291714,-0.22173385,-0.17142281,0.22224538,0.48787642,0.47846004,-0.33232757,0.57911104,0.03318872,-0.25667673,-0.18483159,-0.09593385,0.4109781,0.016505377,0.36034492,0.08143564,-0.24536844,0.23620349,0.530935,0.36933786,0.5485528,-0.04462653,-0.31803066,0.26451492,0.10304349,0.15514094,-0.021231651,-0.44715548,-0.04389047,-0.26074445,0.19844776,0.54377455,0.17140321,0.40928763,-0.18011554,-0.12152607,0.18812567,-0.013264561,-0.09232447,-1.0830518,0.28588396,0.15089403,0.6756732,0.6828306,-0.15600489,0.13145618,0.5239626,-0.31780446,-0.013165257,0.27708334,0.1527105,-0.4023038,0.56570035,-0.69913065,0.3472156,-0.19185546,0.05885361,0.051548615,-0.1265309,0.45902306,0.6872266,-0.11475078,0.14201806,0.11117433,-0.33211413,0.038617577,-0.23370437,0.28640842,-0.5904075,-0.12604566,0.7681118,0.45737177,0.25975296,-0.10525449,-0.020780435,0.030893628,-0.13941264,0.1544198,0.016793652,0.08442474,-0.001874272,-0.5893938,-0.19947465,0.5627163,-0.012686332,0.07876971,0.1373537,-0.3489055,0.20557338,-0.06762676,-0.07237436,0.095301054,-0.61764896,-0.07125201,-0.31373593,-0.33619753,0.397351,-0.09434452,0.2833006,0.07230184,0.13538708,-0.32290548,0.17484656,0.35122678,0.68189424,0.061057623,-0.08613621,-0.27865866,0.14411655,0.34094766,-0.18366311,-0.18878946,-0.30763498,0.05557784,-0.74346584,0.4772175,-0.21118923,-0.099445485,0.1445288,-0.16919571,-0.029838638,0.5827498,0.0030842305,-0.013228234,0.07943283,0.040567648,-0.3330793,-0.1717867,-0.20528507,0.21484931,0.112337306,-0.12462615,-0.15473457,-0.14636944,-0.12066572,0.47746032,-0.027125878,0.3646738,0.3749239,0.019361693,-0.39651874,-0.12591368,0.062291715,0.45725223,-0.08126623,-0.13388042,-0.3203953,-0.4365261,-0.31890836,0.2629835,-0.2174677,0.21566884,0.11795187,-0.17035185,0.8346259,0.15504217,1.1818173,0.13269947,-0.43384492,0.18610962,0.44136757,-0.18752636,0.118563734,-0.39174575,0.94848365,0.4823101,-0.16362663,-0.18257561,-0.44992816,-0.16210744,0.27449158,-0.24670334,-0.30003765,-0.19317304,-0.5915625,-0.31806108,0.21307701,0.25918466,-0.06694648,-0.017112194,0.21997099,0.32686818,0.06714358,0.5871589,-0.47186106,-0.19739914,0.3691806,0.31906167,-0.15938321,0.24092104,-0.42572257,0.49490088,-0.60138327,-0.06905389,-0.34952697,0.119871214,-0.24745147,-0.35414702,0.25524154,0.2659945,0.3101938,-0.29552677,-0.3902588,-0.29511863,0.49690476,0.05319983,0.1654226,0.5050272,-0.2949602,0.01068303,-0.2080835,0.34826916,1.1596997,-0.39844388,0.0759656,0.41052943,-0.21861748,-0.5779503,0.28033364,-0.47762877,0.057766087,0.1265219,-0.35176697,-0.7224608,0.31903246,0.09019544,-0.10927277,0.17181908,-0.4752097,-0.0036741814,0.15710425,-0.11323618,-0.20571221,-0.20047964,0.07624592,0.604118,-0.3983985,-0.36583596,-0.057737943,0.40241414,-0.21814266,-0.5700075,-0.063190274,-0.43687853,0.45748994,0.21196182,-0.23813565,-0.1979235,0.08354017,-0.32345468,-0.08708436,0.24722879,-0.33267602,0.046953846,-0.42980173,0.11706385,0.8398001,0.061413623,0.24224739,-0.58429474,-0.35030687,-0.8670737,-0.36248964,0.41362318,0.20316945,0.059080463,-0.561016,0.06274257,-0.2666556,-0.13404371,0.062445972,-0.64167076,0.46064875,0.21772909,0.4417364,-0.14172767,-0.61113304,-0.040042855,0.15684147,-0.24428567,-0.43143144,0.45454037,-0.0008990049,0.9542457,0.15076715,0.05983252,0.25155714,-0.51944965,0.07338061,-0.2321234,-0.22474174,-0.6803742,-0.049368296 -261,0.4194357,-0.047383368,-0.59614724,-0.18387966,-0.42945597,-0.081390694,-0.24508373,0.061316382,0.32383463,-0.22671212,-0.093355276,-0.1604021,0.059323873,0.3726677,-0.12284392,-0.91276425,0.07365666,0.12806447,-0.74158174,0.42342937,-0.4297429,0.6358444,0.17878039,0.46757922,-0.08201424,0.21679695,0.23789589,-0.101647206,-0.043170977,-0.387614,-0.19229154,0.11395293,-0.95031637,0.36662543,-0.02942619,-0.39525998,0.093988575,-0.4634305,-0.17916463,-0.66726404,0.16599865,-0.66054314,0.7759808,-0.038386002,-0.33850646,-0.13106884,0.11496299,0.106652655,-0.17911176,0.2403115,0.30578786,-0.49137148,-0.04309835,-0.33400837,-0.37284935,-0.8088781,-0.6929113,-0.09267952,-0.63826495,-0.19501317,-0.28120938,0.2386157,-0.4756074,-0.112563394,-0.13542992,0.2868273,-0.30217806,0.34016228,0.2123611,-0.30550268,0.13959268,-0.4075022,-0.19915895,-0.25577927,0.26573446,-0.14683937,-0.44103518,0.23632492,0.44341448,0.39961854,0.10700535,-0.2930301,-0.16782552,-0.23836017,-0.11077269,0.54081553,-0.113157034,-0.35288095,-0.1529995,-0.09143445,0.42341208,0.17918813,0.22549514,-0.24611033,-0.2156495,-0.12164873,-0.09424663,0.4685279,0.43578172,-0.24797992,-0.18576527,0.48625788,0.10068219,0.11293474,-0.21959907,0.34173527,-0.0554726,-0.57733494,-0.20100439,0.061259568,-0.0377343,0.55564964,-0.37349907,0.23778377,0.77993745,-0.38755986,-0.2969912,0.12937726,-0.05922919,-0.06104635,0.0047195554,0.0008171995,0.37454143,-0.47713408,-0.12598358,-0.34693277,0.771591,0.23838836,-0.7176574,0.2286858,-0.5967118,0.19094367,0.07220365,0.696506,0.9218819,0.71044713,0.25153333,0.8345062,-0.37637118,0.15799433,0.3264788,-0.40498015,0.12447243,-0.2376136,-0.092552684,-0.45895496,-0.012479126,0.12172396,-0.13801982,0.22522736,0.4730247,-0.5832609,-0.1787038,-0.024086952,0.54942083,-0.33006534,-0.23877032,1.0519258,0.91340715,1.1155256,0.31465396,1.4873133,0.3658495,-0.09855288,-0.1978925,0.024932051,-0.6766651,0.15403171,0.16984259,-0.6825104,0.52060753,0.05925176,0.13349135,0.15348952,-0.39949653,-0.17952223,0.10406538,0.3365295,-0.09380114,-0.46086845,-0.476517,-0.25357038,0.075878076,0.18688758,-0.06844447,0.3534757,-0.03917076,0.7784415,0.16516133,0.96703297,0.13444285,-0.12578674,-0.05503371,0.3516704,0.3309882,-0.19378674,-0.15996133,0.3029952,0.3340378,0.16709606,-0.51406354,-0.21062584,-0.30379143,-0.5225672,-0.42638907,-0.23757303,-0.07158921,-0.41172585,-0.08993537,-0.42087734,-0.041240517,-0.29536283,0.44170845,-2.1366975,-0.10531763,-0.0424228,0.44460413,0.049834087,-0.28376988,-0.25983724,-0.5590277,0.24183445,0.33171776,0.5287904,-0.8311338,0.27378845,0.36960152,-0.5472299,-0.44196478,-0.7367463,0.078971624,-0.060149837,0.26237464,-0.044599857,-0.2716296,-0.047372907,0.22296603,0.6666643,0.012857924,0.012719867,0.27169117,0.59524816,-0.2105742,0.3822002,0.16902453,0.60291666,-0.11967641,-0.20610213,0.30601326,-0.5749224,0.13976292,0.21382655,0.054215174,0.47721168,-0.64508957,-0.8310859,-0.5049126,-0.15889579,1.1013463,-0.33052993,-0.3717552,0.17285137,-0.17196123,-0.3357009,0.10368368,0.5823064,-0.32968128,0.26211238,-0.5071065,-0.14342242,-0.009021829,0.31854972,-0.083419226,0.12884021,-0.46585393,0.75756216,-0.2419206,0.38861904,0.3531811,0.12052205,-0.62708217,-0.59780276,0.08801583,1.0445257,0.4646615,0.15515853,-0.20946892,-0.18311162,-0.4066472,-0.21018922,0.11129838,0.60019004,0.73110914,-0.28847435,0.11522859,0.46340504,-0.17000856,0.26653695,-0.06010297,-0.17913692,-0.040178545,-0.04647966,0.6594102,0.91448736,-0.054991852,0.63535863,-0.11912131,0.5314603,-0.06538638,-0.6515057,0.60553217,1.1556221,-0.1473627,-0.34780923,0.6216211,0.09391091,-0.32270193,0.47678736,-0.34805354,-0.43144897,0.69503874,0.005982049,-0.47293937,0.43945512,-0.33258983,0.26643816,-1.055377,0.650933,0.06764459,-0.75650954,-0.6563126,-0.07873448,-3.2155876,0.16197066,-0.16323505,0.010261744,-0.31652638,-0.2564607,0.17632441,-0.63093597,-0.53930485,0.034175187,0.058772504,0.679801,-0.28537586,0.20804016,-0.2226742,-0.70548326,-0.1996376,0.47169712,0.18201673,0.27168727,-0.08471259,-0.26542807,0.1632392,-0.3193579,-0.5996153,-0.13454904,-0.7120514,-0.6305372,-0.05980349,-0.77782726,-0.33582583,0.86603904,-0.45874432,-0.052129537,-0.3335495,-0.013434917,-0.06756955,0.29463187,0.12797889,0.12343911,0.037723254,0.10487651,-0.039090145,-0.08329025,0.054303866,0.11263243,0.46756482,0.40356073,-0.26822135,0.3036367,0.51003975,0.6689603,-0.16207393,0.9384207,0.29121205,-0.16243832,0.27503204,-0.29581994,-0.5518511,-0.75505084,-0.40156606,-0.07881764,-0.57475585,-0.3227655,-0.07357114,-0.15884428,-0.8342543,0.62071323,0.078187875,-0.06326554,-0.078320764,0.553128,0.2099461,-0.060367335,0.07229813,-0.2033257,-0.34864983,-0.3586562,-0.24434292,-0.75762177,-0.69262415,0.019555554,1.3367977,-0.1304685,0.04531287,0.1822496,-0.13737021,0.21886922,0.050071478,0.25552475,0.18277471,0.33230624,-0.06513197,-0.6375571,0.41270038,-0.34055352,-0.10607401,-0.51588917,-0.035505075,0.8485184,-0.69907093,0.44572064,0.36161432,0.11067275,-0.055302966,-0.5416727,-0.17201935,0.10118725,-0.21808128,0.38300633,0.2341786,-0.7509392,0.52020574,0.16220967,-0.31523374,-0.47686458,0.45429423,-0.04796647,-0.09989443,0.17935993,0.4596169,-0.016931176,-0.11119618,-0.33087516,0.29581463,-0.45924807,0.20968175,0.18334514,0.07892612,0.28363794,0.008055736,-0.47507298,-0.81725186,0.13657744,-0.43800822,-0.5443799,-0.12905966,0.12624653,-0.0075326175,0.29339656,0.1236892,0.37048033,-0.41460872,0.2029597,-0.20524664,-0.2775903,0.5234681,0.51348233,0.37168816,-0.47812834,0.7579641,0.2597305,0.058084566,-0.16690779,-0.123331696,0.47241235,0.07655845,0.38020393,0.31480214,-0.18799703,0.0035764973,0.7129391,0.17032288,0.43544182,0.25341824,-0.16321106,0.20589156,0.2031855,0.36796236,0.12170291,-0.37867472,-0.047553603,-0.09752673,0.09590912,0.40670753,0.15974335,0.30947456,-0.11472395,-0.22584064,0.1260689,0.14535235,0.15206322,-1.4268818,0.3181699,0.40812823,0.5910304,0.5213247,0.14425293,-0.0018773079,0.6475261,-0.3504839,-0.10299765,0.16405986,0.034910966,-0.34343693,0.6414955,-0.6592241,0.46537623,-0.21272208,0.044530407,0.120016575,-0.00718156,0.28567854,1.210396,-0.11475015,0.18814509,-0.011480804,-0.16070713,0.10671725,-0.5265178,0.15648355,-0.33795705,-0.2697076,1.0031134,0.10023739,0.3283436,-0.29070345,0.08464196,0.13029462,-0.22985037,0.27050683,-0.10655543,-0.026391536,-0.3344696,-0.50878674,-0.19520806,0.6708757,0.0225548,0.009074244,0.10832996,-0.2556401,0.36096475,-0.10202669,0.032884855,-0.11496103,-0.55491793,-0.056579757,-0.54990745,-0.6877373,0.36538383,-0.305007,0.26967767,0.36801305,0.043649774,-0.21185462,0.1696185,0.3530507,0.6243671,0.1329159,-0.31599826,0.048687916,0.32107034,0.22374006,-0.50832564,0.010501553,-0.27632645,0.28381285,-0.55850875,0.4334532,-0.20095278,-0.46596608,-0.18776815,-0.10786741,-0.011911143,0.16113564,-0.053006966,-0.09427909,0.47144115,-0.0046389005,-0.09047085,-0.20380168,-0.36560395,0.3722545,0.16052961,-0.28174865,0.025654132,-0.07315689,-0.14471921,0.20084985,-0.02364107,0.42576978,0.2946187,0.024651637,-0.4308723,0.18886472,-0.05473401,0.49368533,0.19056995,0.0051469007,-0.25848457,-0.3756077,-0.23473279,0.33220518,-0.16194691,0.23862426,0.21012795,-0.27328745,0.8990653,0.19558054,1.3373631,-0.068301894,-0.5815549,0.19198602,0.53807455,0.09594711,-0.08934853,-0.25010693,1.4799781,0.53929585,-0.3572775,-0.14001486,-0.4983329,-0.30578637,0.165754,-0.30535713,-0.47514296,-0.04119646,-0.68087715,-0.24484126,0.14425233,0.06346791,-0.011135836,-0.055446487,-0.013155547,0.30408636,0.09152617,0.15531369,-0.6624961,0.019280681,0.3548995,0.16802692,-0.09060213,0.114361525,-0.36623612,0.38613245,-0.6658525,0.35712442,-0.38488337,0.23094706,-0.054972295,-0.3744429,0.25209776,0.16649188,0.261807,-0.4100765,-0.26172101,-0.3047662,0.5810651,0.11553117,0.275661,0.7884074,-0.27781245,-0.13738662,0.04363958,0.5529277,1.4847131,-0.006875401,0.053200077,0.40788546,-0.4742163,-0.544015,0.26645464,-0.38928404,0.012132118,-0.21188492,-0.44133094,-0.52783376,0.1406448,0.08925312,0.27351877,0.15630805,-0.44836077,-0.1359172,0.2989428,-0.5520482,-0.22866912,-0.31477574,0.304616,0.75016737,-0.32958075,-0.5234795,-0.067923464,0.08912906,-0.30881485,-0.6952441,-0.024715463,-0.05467506,0.45231986,0.11123779,-0.3561875,0.036841303,0.21379405,-0.4828886,0.23963551,0.43811262,-0.37144062,0.08640593,-0.28468677,-0.095855676,0.83336586,-0.23060738,0.1734643,-0.50969595,-0.70425415,-0.8615772,-0.4668815,0.099557765,0.33213308,0.06291308,-0.74619204,-0.1815493,-0.004303848,-0.15896408,0.10588208,-0.5002869,0.38797727,0.2358994,0.54824424,-0.2704277,-1.2569141,0.18099642,0.25945306,-0.13128658,-0.7571502,0.5463787,-0.1173189,0.7223237,0.21084853,-0.029060883,0.46317366,-0.63928634,0.35846654,-0.06721794,-0.025724495,-0.5723732,0.055997167 -262,0.39854515,-0.31949693,-0.42044643,-0.14191884,-0.40497205,-0.000634106,-0.20158483,0.24661213,0.20996977,-0.30999413,-0.04996912,-0.06920793,0.097448386,0.40844986,-0.07934694,-0.7383902,-0.14641377,0.06198007,-0.6467523,0.4960326,-0.6706474,0.3538545,0.15263276,0.28927884,0.05891486,0.51082784,0.2491085,-0.22560507,-0.06025963,-0.005205405,-0.09603398,0.3606638,-0.570053,0.111130565,-0.028584685,-0.22386725,0.13480815,-0.46473613,-0.24795231,-0.6143523,0.15125373,-0.86816853,0.57338274,0.044244643,-0.19123381,0.017971357,0.11152723,0.40639895,-0.4320567,0.17169945,0.20659722,-0.08899508,-0.09162657,-0.3069416,-0.02023822,-0.34751084,-0.515408,-0.0092617115,-0.5103817,-0.40971452,-0.10463403,0.13569646,-0.3785264,0.016137796,-0.31282654,0.44743448,-0.48267695,-0.06199322,0.267929,-0.30371305,0.39010704,-0.39437434,0.07997365,-0.07996635,0.31524172,-0.012299876,-0.14809947,0.31119257,0.34942093,0.47778416,0.23886786,-0.24603207,-0.073817745,-0.21157883,0.33872166,0.47439444,-0.1651937,-0.45606104,-0.22614613,0.110178456,0.07076116,0.38848764,-0.09846369,-0.37696373,0.060621522,0.07351746,-0.2510707,0.44969627,0.47515038,-0.40392634,-0.29637733,0.19380832,0.6198943,0.13313442,-0.10422173,0.15036227,-0.009155952,-0.611007,-0.1768125,0.25119108,-0.07431939,0.45581606,-0.11774435,0.18201739,0.81777686,-0.12375074,-0.032018688,-0.07254612,-0.14467593,-0.1390777,-0.40739816,-0.1098667,0.07851219,-0.5872488,0.11669038,-0.27329648,0.854009,0.15708086,-0.7049497,0.4404272,-0.5744122,0.1868453,-0.13492166,0.7261303,0.5647978,0.38757178,0.3095292,0.83102477,-0.5361153,0.27166355,-0.11994437,-0.5075179,0.0115268035,-0.14852606,0.15868522,-0.48623303,0.21213913,-0.07590186,0.12883858,-0.17852801,0.32769045,-0.60432035,-0.0154340705,0.054751907,0.8753109,-0.43559986,0.024404483,0.67953676,0.9738911,0.9597904,0.04036309,1.2832097,0.43689486,-0.25103888,0.1878315,-0.43502524,-0.4959845,0.23468615,0.52719665,0.26444247,0.19341113,-0.20466298,-0.09908625,0.39332676,-0.37321976,0.11797578,-0.20663741,0.44835573,0.045358393,-0.08007863,-0.5866963,-0.17350556,-0.025014741,-0.059399556,0.04111537,0.17525864,-0.25121942,0.48362917,-0.054388262,1.3569676,-0.1962942,0.18699868,0.08809892,0.4330614,0.3150807,-0.15319456,-0.07681171,0.3641344,0.53455025,-0.041267533,-0.68409336,0.31401262,-0.27532977,-0.5225836,-0.060763437,-0.41642532,0.028851612,-0.04159134,-0.5005731,-0.09223035,-0.070632935,-0.22929542,0.51425755,-2.7140532,-0.3153155,-0.13975674,0.29227963,-0.3852343,-0.21123835,-0.038709767,-0.49416643,0.21217808,0.30157182,0.4102649,-0.7274265,0.59450036,0.42603657,-0.3764444,-0.17390932,-0.7372965,-0.1208072,-0.09329275,0.49173915,-0.002510663,-0.11242931,-0.30821654,0.095826454,0.8068567,-0.05307043,0.18445832,0.25280422,0.33096966,0.22905843,0.55598414,0.10834336,0.5771697,-0.3093478,-0.11467317,0.40851575,-0.18950336,0.2082661,-0.10068067,0.11816137,0.35770568,-0.43791988,-0.9097879,-0.75963986,-0.5264984,0.9701687,-0.44450653,-0.4154989,0.25742745,0.03341557,-0.008791566,0.06764976,0.4697715,-0.05660772,0.16210356,-0.7310472,0.26002175,-0.051109347,0.15337464,0.086004406,0.0015265067,-0.24200168,0.7205941,-0.0762626,0.6046196,0.25942865,0.2616267,0.017306583,-0.35769564,0.029232617,0.96623063,0.273564,0.05485624,-0.05061458,-0.40061024,-0.012304576,-0.05693058,-0.078440115,0.4866993,0.8737714,0.07059536,0.1347123,0.24153176,-0.13675578,0.08315698,-0.13791667,-0.32946172,0.13272908,0.07357885,0.45402563,0.4940111,-0.19327591,0.5142883,-0.3026428,0.32044843,0.02202793,-0.58140075,0.6258773,0.5843903,-0.27928033,-0.041245136,0.62996083,0.5661051,-0.48083737,0.41452724,-0.7311747,-0.10852659,0.66162044,-0.22707336,-0.3820494,0.18928012,-0.16809079,0.23150438,-1.012798,0.40661258,-0.39933005,-0.4733734,-0.38428408,-0.12369867,-4.1747284,0.21918882,-0.19198272,-0.07464088,-0.16548415,-0.07791347,0.39217624,-0.51166093,-0.49577305,0.13538367,0.17298047,0.47271505,-0.031962488,0.13333513,-0.35198548,-0.031630132,-0.058909312,0.2493844,0.098283775,0.19203418,-0.21878944,-0.38938284,0.0072774114,-0.09061291,-0.5511878,0.2626852,-0.59466016,-0.5275249,-0.07585544,-0.51797915,-0.39512858,0.6713604,-0.20136149,-0.009604925,-0.20681266,0.15069094,-0.29697004,0.3111304,0.102071054,0.26414168,0.15736206,-0.07874925,-0.014716546,-0.41969025,0.3675269,-0.04271612,0.3107292,0.035124667,-0.0066097695,0.12972026,0.4828993,0.5342541,0.059911918,0.9066651,0.34919935,-0.10375222,0.3504372,-0.39478964,-0.26189727,-0.65042037,-0.4953268,-0.14933607,-0.3935006,-0.54528254,-0.04951217,-0.2503833,-0.6750714,0.5809757,0.06422237,0.39362773,-0.1353309,0.3640279,0.5181589,-0.06084277,0.016513169,-0.09614147,-0.21640362,-0.6303667,-0.1785819,-0.7667515,-0.5411535,0.17521726,0.8455888,-0.26131648,-0.023612222,-0.1848362,-0.30242613,-0.09706195,0.10407724,0.12669758,0.3771597,0.3972507,-0.15355596,-0.73481184,0.43552786,0.019319257,-0.15587749,-0.5605556,0.06656809,0.6945178,-0.80398625,0.6628278,0.21386303,0.13108706,0.06495144,-0.48035595,-0.32800153,0.04997618,-0.24481374,0.61271125,0.079529434,-0.75074744,0.5567357,0.53591543,-0.3012161,-0.66531694,0.240387,-0.03731274,-0.23329535,-0.0016895373,0.30346793,0.058050755,-0.020697793,-0.23368518,0.12402377,-0.57978034,0.2892488,0.25020173,-0.11719734,0.32643673,-0.13937221,-0.3277529,-0.76513875,-0.18181656,-0.6157177,-0.1758983,0.38546294,-0.06516182,-0.049209658,0.102656245,-0.1386885,0.47792515,-0.12295531,0.04938961,0.061178997,-0.32394427,0.28593618,0.56822,0.09724588,-0.3406374,0.56845725,0.1709805,-0.17927869,-0.0536055,0.035354007,0.41376957,0.12994194,0.39083487,-0.19877522,-0.24921791,0.49100134,0.8260119,0.16687569,0.60474765,0.032302998,-0.075594775,0.5529327,-0.022021206,0.008203125,0.14780398,-0.25950322,-0.121553,0.13667974,0.11644773,0.48407698,0.3151618,0.3327549,0.14040102,-0.2402638,0.03668656,0.20407058,-0.028532067,-0.9667418,0.45115373,0.2102764,0.7088937,0.5592057,0.059955187,-0.141882,0.65522015,-0.24727294,0.101416,0.35154217,-0.035312973,-0.57646066,0.7957733,-0.64806694,0.3678734,-0.282884,0.034055475,0.03734454,0.107336916,0.35821944,0.92260176,-0.1697898,0.022746328,-0.046497144,-0.11760255,0.100536846,-0.25391808,-0.020476786,-0.4391837,-0.32147706,0.6143013,0.37574694,0.452406,-0.16089305,-0.097701564,0.1386213,-0.12544027,0.3063038,-0.01211744,-0.016661191,0.13067771,-0.5189463,-0.41691485,0.59514415,0.12790872,0.15438583,-0.10721442,-0.38516587,0.22601178,-0.2800626,-0.13765772,0.03086558,-0.48872173,0.059472863,-0.19907953,-0.57638764,0.34279785,-0.2273313,0.07176189,0.059371818,0.044135787,-0.3147344,0.08728452,0.0463625,0.9267508,0.021447368,-0.42566597,-0.46085992,0.021329753,0.24927981,-0.27313823,-0.048897702,-0.2909146,-0.089854114,-0.6253672,0.5699436,-0.09930989,-0.46972162,0.22970441,-0.23726425,-0.10148693,0.5421199,-0.1537151,-0.2631288,0.034579873,-0.20038381,-0.47689798,-0.13489674,-0.15336657,0.24388286,0.2428347,0.040832724,-0.13511038,-0.26601413,-0.105613366,0.5870845,0.042711996,0.4256231,0.24524614,0.07617664,-0.2706221,-0.03276186,0.29923686,0.32237035,0.14082012,-0.014102356,-0.3442066,-0.43157712,-0.23365612,-0.04762449,-0.05764636,0.32549888,-0.12530217,-0.46219364,1.1343471,-0.011039957,1.3147517,0.0816832,-0.18253957,0.052665066,0.49060276,-0.046121337,0.032419704,-0.38227132,0.867643,0.5790993,-0.04679983,-0.08326141,-0.6106401,-0.14452332,0.2211021,-0.31996307,-0.078929946,-0.12904592,-0.6251211,-0.46294576,0.2749218,0.2517492,0.19971351,0.06310515,-0.050263762,-0.009624531,-0.013649178,0.46762612,-0.5929326,-0.1551886,0.16574804,0.24161483,-0.059145164,0.11111625,-0.37831873,0.30632198,-0.60827166,0.28771108,-0.40060434,0.060224686,-0.12670586,-0.26670286,0.09174678,-0.2120812,0.22105609,-0.22070451,-0.5143855,-0.03606973,0.56180054,0.09611294,0.064374164,0.9076698,-0.28811163,0.09321664,0.20848192,0.59742725,1.2591527,-0.333097,-0.0141376285,0.26976204,-0.3441072,-0.7044646,0.38439733,-0.16574217,-0.027584163,0.0061233956,-0.45420876,-0.37023297,0.26379895,0.23896927,-0.100680485,-0.064631976,-0.4757747,-0.22716874,0.4217528,-0.21565439,-0.23484391,-0.2856897,0.4605726,0.724259,-0.36010176,-0.2558837,0.072730176,0.25333473,-0.44898662,-0.565463,-0.15555845,-0.18552424,0.3857055,0.11377961,-0.25642413,0.1030643,0.21074966,-0.43945435,-0.06548255,0.23251635,-0.3773958,0.14912178,-0.07444978,-0.20020536,0.8685221,-0.21527927,-0.26849702,-0.6468773,-0.49238876,-1.0080402,-0.4962184,0.46042714,0.1020016,0.089964055,-0.45852533,0.16989355,0.047534164,-0.038736265,0.10206782,-0.6084553,0.37822732,0.046860162,0.622101,-0.20924921,-0.747234,0.05528978,0.20994097,0.031677485,-0.6085888,0.7547904,-0.09436391,0.8059397,0.027845317,0.011132193,0.00980165,-0.42127186,0.03354852,-0.46618184,-0.23757423,-0.929244,0.06694234 -263,0.022333251,-0.05842054,-0.4751727,-0.14982487,-0.060963783,0.20296377,-0.057785496,0.46276397,0.11867842,-0.38444564,-0.028883742,-0.1523968,-0.049362805,0.32303298,-0.16729262,-0.4520815,0.0065302392,0.16688465,-0.26940754,0.17044197,-0.43042564,0.25592723,-0.17898414,0.27851504,0.06475603,0.276129,0.21718289,-0.22218768,-0.22079445,-0.22401024,0.025408827,0.31172112,-0.47859076,0.36135468,-0.004038421,-0.17017442,0.23202287,-0.3589231,-0.4824255,-0.5342221,0.25750503,-0.753704,0.38759467,0.019532941,-0.081391454,0.27501372,0.23131536,0.122747,-0.3425975,-0.12563957,0.3083822,-0.3384667,-0.08414892,-0.22886345,-0.1953215,-0.4109974,-0.3759211,-0.03156006,-0.46001142,-0.15071517,-0.46700388,0.11297728,-0.2914372,0.013045811,-0.19310229,0.27426812,-0.3427107,0.016629549,0.17728494,-0.33216184,0.09493529,-0.5687217,-0.18691164,-0.031036321,0.000967247,-0.17067745,-0.06357716,0.40085617,0.18381014,0.26926583,-0.1175333,-0.0044329944,-0.24595867,-0.31715664,0.18082696,0.5480995,-0.086856,-0.38066304,-0.023591977,-0.06007576,-0.05480108,-0.010987117,0.051888518,-0.13959044,-0.12740175,0.14869253,-0.2711042,0.22863418,0.48644236,-0.25869438,-0.21581969,0.41787243,0.41247866,0.09870749,-0.04153568,-0.119744584,-0.08020942,-0.46662962,-0.21716629,-0.1325263,-0.108229,0.43453863,-0.079348855,0.19347733,0.7598717,-0.3359308,0.03955781,0.118009076,0.16952778,-0.014434374,-0.35353056,-0.19719897,0.1855986,-0.348951,0.042503186,-0.14596364,0.9061874,0.041527152,-0.45141917,0.33092833,-0.46698508,0.07417575,-0.03973806,0.60862947,0.3417964,0.37945157,0.33077314,0.6515763,-0.4685402,0.040401418,0.0043309103,-0.29703116,0.2541449,-0.23435718,-0.15062985,-0.2930962,0.015409286,0.26262787,0.06980848,0.045140937,0.2240635,-0.437867,0.07330607,0.16417335,0.8352077,-0.31047806,-0.14181148,0.3576212,1.0574276,0.74407125,0.04528606,1.128906,0.15545636,-0.2683997,0.04129007,-0.005703816,-0.8063217,0.28197423,0.3260039,-0.30600828,0.10273261,0.2864857,-0.06638457,0.28599894,-0.43028763,-0.10012475,-0.14997815,0.3767378,0.09855285,-0.07535134,-0.40188318,-0.31355572,0.084903404,-0.24183846,0.2597222,0.2712798,-0.2274387,0.23191306,0.14577636,1.3931991,-0.014876132,0.22420223,0.07589263,0.48951334,0.12013949,-0.03616949,-0.028993892,0.47234586,0.2841168,0.016875032,-0.61622465,0.17233673,-0.27356768,-0.61157,-0.12888433,-0.32708517,-0.080921166,0.041162767,-0.3054214,-0.17129262,-0.053680837,-0.29333103,0.36558956,-2.8324838,-0.025592478,-0.009394809,0.24080476,-0.28532064,-0.1133128,-0.09375017,-0.3480474,0.33815876,0.49115118,0.42205423,-0.46392345,0.19526619,0.39869535,-0.25820327,-0.31322104,-0.52990615,0.16334714,-0.10937521,0.19352776,0.048119508,-0.027507644,-0.2478822,-0.11841985,0.38019848,-0.11104805,0.080155805,0.37005204,0.2417958,0.060520127,0.26413283,0.013203896,0.54225767,-0.44708762,-0.09282282,0.24768914,-0.6311169,0.47172356,-0.024442067,0.12054336,0.3578522,-0.2012232,-0.74316704,-0.4383399,-0.3363395,1.4036871,-0.30788496,-0.19112404,0.2420173,-0.0931782,-0.23819274,-0.023207132,0.40101528,-0.29093286,-0.0022621774,-0.6399975,0.16785127,-0.158638,0.42953506,-0.019747403,0.057191912,-0.36649853,0.6228456,-0.05338577,0.4657163,0.2113274,0.06372091,-0.3716641,-0.27856773,0.01520512,0.8500419,0.27596554,0.13624573,-0.21620716,-0.19105384,-0.18487872,-0.1064704,0.18209745,0.4293525,0.5954772,0.060440786,0.16246489,0.27372438,0.00813067,-0.10272289,-0.07183269,-0.27963158,-0.021396937,0.16106565,0.6892859,0.4511605,-0.14009568,0.37592062,-0.08437435,0.33806545,-0.33441147,-0.31739518,0.29420292,0.7483051,-0.15708464,-0.26697886,0.6935308,0.5924314,-0.33273953,0.453162,-0.5532627,-0.4557064,0.625266,-0.27088714,-0.39169964,0.08927726,-0.27379268,0.02160113,-0.85769755,0.33802003,-0.041579552,-0.55478674,-0.6230805,-0.25554913,-3.2763608,0.02010246,-0.19125359,-0.23833497,-0.2095441,0.066057436,0.27947342,-0.505735,-0.38002485,0.070022866,0.11982192,0.5994313,0.00842077,-0.01652057,-0.23147812,-0.14736648,-0.08592704,0.14134401,0.11262762,0.20510362,-0.06303001,-0.37671822,0.063213825,-0.28142852,-0.34513855,0.068942465,-0.46494895,-0.310565,-0.22923395,-0.5380499,-0.36095354,0.69414914,-0.64242625,0.03292671,-0.14934151,0.105093114,-0.11714323,0.31389558,0.19231234,0.112467974,-0.01666938,-0.113875784,-0.040667813,-0.4467533,0.48176953,0.007867449,0.48120946,0.54841423,-0.059212446,-0.15670846,0.5316519,0.44335446,0.05375389,0.8267969,0.26157862,-0.06984398,0.39339292,-0.31510317,-0.20951667,-0.46753305,-0.3553915,0.07012357,-0.3017297,-0.39903158,0.052501526,-0.32495987,-0.7920859,0.5645285,-0.05035217,-0.06506956,-0.006706648,0.21317181,0.35410407,-0.08489196,-0.0928253,0.058542058,-0.058905527,-0.39454782,-0.47408164,-0.62524295,-0.29558796,-0.014007769,0.92920107,-0.17210484,-0.1152984,-0.026099913,-0.14105095,0.01007148,0.15279089,0.023608685,0.26357728,0.46259594,0.0575122,-0.6168633,0.55735815,-0.25608906,-0.16869494,-0.4708451,0.02171532,0.5927936,-0.759828,0.46718168,0.49616206,0.14653894,-0.07078728,-0.44639635,-0.28471512,-0.1847287,-0.114094414,0.3234701,0.15062684,-0.81265736,0.47721142,0.22681996,-0.39458084,-0.68875855,0.3135883,-0.11946841,-0.024878016,-0.008844733,0.32933885,-0.041044567,0.032700326,-0.16089225,0.14104268,-0.37513182,0.091417775,0.17720999,-0.13807973,0.56909126,-0.21715659,-0.047640763,-0.552815,0.042377964,-0.40514213,-0.1996478,0.14493331,0.055177476,-0.08832742,0.30039987,-0.103625424,0.38460872,-0.24180983,0.035444282,-0.054899685,-0.23339213,0.46327436,0.3982189,0.42477334,-0.37901527,0.68284255,-0.028697293,0.07366766,-0.12279472,-0.014249148,0.44794062,0.055214442,0.39504382,0.06895703,-0.113805346,0.34667698,0.82374513,0.24990524,0.43464455,0.064816386,-0.006899724,0.24295834,0.01145478,0.12309322,0.24003777,-0.49213395,-0.09308536,-0.25193346,0.15085763,0.40797776,0.08972037,0.54008293,-0.06364123,-0.07695763,0.21129563,0.23274957,-0.050788376,-0.7076622,0.55888,0.21695016,0.604303,0.36457983,0.0024330823,0.087198734,0.6513639,-0.21758412,0.1326677,0.26493132,0.010215872,-0.5336366,0.57625175,-0.61181283,0.4855388,-0.20621753,0.0072335876,0.06737651,-0.01557899,0.45946705,0.7781169,-0.13791251,0.061520584,0.12320101,-0.24509849,0.2148815,-0.3507851,0.3165689,-0.49174404,-0.23141728,0.5623647,0.408841,0.3186027,-0.26026848,-0.04529226,0.058082405,-0.089495346,0.18724865,-0.050386403,0.01993591,-0.06955034,-0.61167836,-0.33129495,0.4842693,0.113336995,0.1969406,0.019189904,-0.18904455,0.27425134,-0.18564193,0.033823732,-0.14957744,-0.37796387,0.16666254,-0.11778586,-0.68657494,0.2001076,-0.27875695,0.32404402,0.22543167,0.04050764,-0.3361211,0.30953705,0.22071102,0.7660855,-0.22251518,-0.20457667,-0.40384966,0.093592815,0.28057015,-0.11099521,-0.14970425,-0.4310261,0.002418518,-0.5412735,0.2973463,-0.31036422,-0.23012172,0.05652996,-0.34482634,-0.0721832,0.50556517,0.104466245,-0.03302705,-0.05030386,-0.26369298,-0.1482527,-0.06640128,-0.22723547,0.22338878,0.1116476,-0.10979361,-0.18092881,-0.2079776,-0.052615542,0.110288635,-0.11535799,0.13838586,0.2903566,0.090877526,-0.24478358,-0.20754123,-0.120442234,0.576018,0.07309513,0.031340167,-0.21453208,-0.2937247,-0.1877075,0.32316092,-0.21787395,0.1809468,0.20311818,-0.44822496,0.67386186,-0.1108359,0.9993427,0.02143079,-0.3818698,0.09060737,0.71299785,0.0537173,-0.023352275,-0.3940886,0.9366734,0.50568473,-0.11547124,-0.24858348,-0.3181718,-0.01867354,0.23125084,-0.13293603,-0.49386686,-0.07945816,-0.6893883,-0.17592937,0.28200743,0.35644773,0.041426387,0.019137293,-0.04995888,0.21950427,0.12407064,0.38498244,-0.43064836,-0.11333673,0.35177782,0.14425506,0.041925885,0.13313437,-0.38249877,0.43130124,-0.6836653,0.068830565,-0.19289912,0.048564516,-0.255144,-0.21196008,0.22059125,0.10281901,0.36967185,-0.27366608,-0.17964381,-0.027807564,0.33099145,0.14151698,0.26891547,0.61991537,-0.2079518,-0.023582097,-0.0161951,0.4695067,0.81939954,-0.25574937,-0.046017583,0.41568515,-0.31711355,-0.633331,0.38923296,-0.46895054,0.07638492,-0.12605602,-0.4436254,-0.27455518,0.31499717,0.25476053,-0.08567192,0.17032088,-0.45329922,-0.05320433,0.13343164,-0.26251572,-0.24411029,-0.2935134,-0.010520022,0.6590162,-0.2975466,-0.16026963,0.16875783,0.37356207,-0.18422253,-0.5157075,-0.038414035,-0.3974194,0.38786137,-0.06386421,-0.206252,-0.10164662,0.02346412,-0.3387058,0.40174058,0.15570666,-0.36470684,0.025681544,-0.19474298,0.17163515,0.45404804,-0.080545664,-0.044431366,-0.6214788,-0.50293326,-0.8797616,-0.21927533,0.55038524,-0.027676225,-0.109586395,-0.34593278,-0.028981619,0.006277268,-0.1610801,-0.23296605,-0.41509217,0.4042602,0.12247812,0.28472096,-0.06078816,-0.89523196,-0.014062662,0.016917692,-0.19059357,-0.47229764,0.46276742,-0.31408623,0.69175583,0.022475133,0.04024468,0.2755661,-0.4089197,0.22904605,-0.27800143,-0.22387902,-0.53949857,0.14297661 -264,0.4895142,-0.29338995,-0.43011734,-0.095764,-0.18130426,0.06746672,-0.12959118,0.2935025,0.21397495,-0.49913463,-0.120906845,-0.17982438,-0.065820865,0.2620794,-0.13221322,-0.7754059,-0.037267882,0.24317743,-0.5677815,0.6846857,-0.23149373,0.20405227,-0.011140802,0.28347367,0.047146685,0.17062584,0.23633619,-0.18140183,0.1024439,-0.16180502,0.00068882306,0.18450521,-0.56392616,0.37964672,-0.06794916,-0.26951945,0.071463235,-0.3681949,-0.24637628,-0.6834444,0.15395276,-0.7577144,0.42906672,0.11660405,-0.21433266,0.104009666,-0.0073500634,0.46680897,-0.3185916,0.15808342,0.19241302,-0.16901465,-0.09989525,-0.20178474,0.011924896,-0.4525749,-0.48541507,-0.057042904,-0.36651528,-0.28800467,-0.19582608,0.18268685,-0.3641605,-0.10609808,-0.01128706,0.5162176,-0.4290566,0.061918903,0.30354854,-0.3247864,0.40288442,-0.4682314,-0.1265811,-0.047158726,0.33651537,-0.16647683,-0.17802833,0.21434812,0.15847273,0.5757656,0.0966553,-0.13774627,-0.10466838,-0.08449886,0.20932989,0.5960692,-0.18970199,-0.5161407,-0.09592285,0.123860665,0.06675765,0.060558327,0.039786123,-0.46965653,-0.09256715,0.02236254,-0.058782935,0.32851246,0.471878,-0.34197867,-0.18786392,0.37526074,0.5883218,-0.02575525,0.0028774163,0.05186517,0.0864784,-0.4308423,-0.23135096,0.1270663,-0.23365659,0.48862365,-0.10982189,0.2858129,0.71035063,-0.13555638,0.08484833,0.03924937,-0.062248614,-0.1599753,-0.21310133,-0.24385315,0.4026647,-0.4202413,0.07110631,-0.18890204,0.80990803,0.20797463,-0.80622834,0.317107,-0.52360314,0.10636572,-0.21898133,0.4894146,0.59320647,0.36073345,0.13472532,0.7232396,-0.6034671,0.09419422,-0.053199515,-0.5027944,0.039192606,-0.097545594,-0.12823404,-0.55938214,-0.0346472,0.032444235,0.008783877,-0.07255669,0.1406393,-0.69873196,-0.09153329,0.08360965,0.80143356,-0.3157379,0.088105984,0.5662004,1.0382997,0.79493725,0.007740891,1.233806,0.16836277,-0.34838662,0.17811917,-0.23952405,-0.60802853,0.28788093,0.4914901,-0.050266195,0.20207071,0.06798521,-0.06542299,0.3591213,-0.3736896,0.0871129,-0.12892708,0.2091151,-0.084848635,-0.20912515,-0.5048595,-0.029320879,-0.027148671,0.07965973,-0.034141507,0.22361952,-0.14607984,0.2981707,0.117613725,1.6335355,-0.14051925,0.23887597,0.11142505,0.30436692,0.124728896,-0.047083296,-0.048821855,0.28577983,0.35031852,0.17317057,-0.55701935,0.09975269,-0.17887929,-0.40900266,-0.23118116,-0.17369734,0.05427031,0.0042212238,-0.42228448,-0.0025346293,-0.08516648,-0.24176066,0.47228673,-2.796074,-0.21380334,-0.24067035,0.43532684,-0.36784238,-0.29132345,-0.08732107,-0.38222736,0.34946424,0.35248235,0.48922437,-0.713931,0.42013866,0.3706726,-0.53444165,-0.13364854,-0.5018858,-0.1123082,-0.085258074,0.45583394,0.09157764,-0.15620977,-0.07731378,0.22672383,0.38926363,-0.12760444,0.15110752,0.2593682,0.36446163,0.14004064,0.48953468,0.03642518,0.40120652,-0.24207045,-0.1413386,0.37766474,-0.13981324,0.09625551,-0.028750174,0.10641294,0.287666,-0.41190383,-0.9101171,-0.8099467,-0.3015618,1.0545942,-0.19258496,-0.4558322,0.17784935,0.1267425,-0.24093446,-0.03575539,0.26912275,-0.016328914,0.07953824,-0.9619328,0.15796742,-0.046924625,0.2548037,0.1884324,-0.26751488,-0.5821126,0.6791751,-0.15438484,0.5649385,0.4699059,0.29640993,-0.009609517,-0.43074924,0.066007525,1.1014255,0.3610455,0.101264074,0.0023043274,-0.07245525,-0.21859337,0.03496428,0.093789004,0.5113827,0.7803335,-0.020476703,0.031403463,0.32878953,-0.0927852,0.13436331,-0.17413148,-0.37786,-0.06418859,0.029523714,0.50853074,0.53147626,-0.1680238,0.3503071,-0.008236822,0.39662617,0.028020648,-0.4095123,0.563509,1.1293701,-0.15785262,-0.21703236,0.48293772,0.3986792,-0.17064577,0.32663023,-0.63981134,-0.33301964,0.44950244,-0.20592831,-0.48906276,0.12711735,-0.3485961,0.33200276,-1.0084416,0.4822087,-0.48939437,-0.5152173,-0.56293887,-0.14377159,-3.3964076,0.22458868,-0.4233803,-0.16243865,-0.0026928266,0.048490364,0.289489,-0.74366283,-0.38233376,0.19624391,0.110147156,0.5101598,-0.054138638,0.23692387,-0.24729171,-0.11950539,-0.03637668,0.21833754,0.20551196,0.114072956,0.07244652,-0.47245967,-0.017226402,0.10164718,-0.28639096,0.13833833,-0.658465,-0.4916267,-0.19558096,-0.51441747,-0.25448734,0.6308563,-0.26624253,-0.11343262,-0.1414903,0.06755246,-0.20211795,0.30897844,0.06273147,0.11167472,-0.06443836,0.07499678,-0.14999872,-0.28579223,0.3083561,0.048184957,0.25594527,0.1456043,-0.3881819,0.088669695,0.5238076,0.46438962,-0.078230746,0.6799039,0.60678136,-0.11053631,0.30307674,-0.29946372,-0.28119615,-0.66184795,-0.46491712,-0.08898726,-0.35746524,-0.44955513,-0.056545086,-0.361028,-0.762071,0.56046736,0.006418407,0.098911,0.016338443,0.19083217,0.5231828,-0.14956443,-0.07146043,-0.06104723,-0.1859334,-0.5823805,-0.15671326,-0.59915024,-0.47919285,0.22348915,1.016384,-0.21472557,0.052518003,0.066442214,-0.11954965,0.058807354,0.18121888,-0.028044699,0.23147802,0.45162895,-0.1384271,-0.59058577,0.51244646,-0.0020618017,-0.18252203,-0.7220408,0.13921706,0.6006069,-0.567733,0.4586108,0.26846394,-0.0045870603,-0.0019462983,-0.38138026,-0.16696136,0.02401712,-0.22676796,0.3510769,0.010516198,-0.53880906,0.395717,0.34224945,-0.21329117,-0.7340061,0.5441916,0.0036883333,-0.23295586,0.09429432,0.25555056,0.041355554,-0.101726845,-0.23253827,0.29449335,-0.48768297,0.28150907,0.13457243,-0.15266106,0.33023897,-0.15395112,-0.121400826,-0.7816534,-0.08913364,-0.5940749,-0.25817338,0.25341722,0.12898225,-0.0015512545,0.18762429,-0.03481652,0.4415388,-0.294138,0.09197469,0.025312642,-0.3723974,0.34864643,0.49908352,0.28840795,-0.42281356,0.54738784,-0.009646916,-0.0626234,-0.32065102,0.12861022,0.5680496,0.21339935,0.3828612,-0.15905373,-0.14518149,0.391503,0.72381324,0.19875552,0.51210374,0.0856314,-0.064049475,0.24716514,0.12505263,0.12807468,-0.015067053,-0.5111853,0.11650833,0.078442015,0.17221245,0.43897778,0.22461838,0.3298325,-0.079856604,-0.54807156,-0.008352783,0.27254286,0.07580965,-1.047095,0.33553636,0.19191168,0.7011975,0.59280384,0.010207955,0.10984766,0.57947665,-0.16229996,0.11157452,0.30103353,-0.13792774,-0.45798743,0.5242257,-0.69136506,0.2656222,0.00019705296,-0.04789816,0.014143201,0.030337684,0.20894416,0.63422775,-0.07911084,0.10062941,-0.20469227,-0.20575762,0.0137912175,-0.3290691,0.083909295,-0.42280146,-0.3213023,0.6271253,0.5936279,0.32304943,-0.20368738,-0.01607216,0.061621238,-0.05862346,0.30982164,0.033732597,0.13947207,0.09899362,-0.649602,-0.25718084,0.62185895,-0.05212075,0.022457393,-0.04305704,-0.20353368,0.26417476,-0.11120951,-0.019332035,-0.07614072,-0.53002244,0.05056756,-0.2834736,-0.13672669,0.6702764,-0.09852599,0.1759963,0.11497666,0.07914033,-0.14238434,0.1857983,0.07801273,0.7112854,0.25613752,-0.23767538,-0.53840774,0.03487587,0.04575965,-0.124032624,-0.03445673,-0.3548455,-0.017507546,-0.70104736,0.43876973,0.089888334,-0.1840279,0.33570644,-0.1774189,-0.011128541,0.52226156,-0.08896633,-0.18708672,0.10386754,-0.04162865,-0.23789702,-0.3069515,-0.12071499,0.22838749,0.1668053,0.22782122,-0.058256205,-0.023033356,-0.324519,0.39605764,0.22499739,0.3601993,0.33293256,-0.0020681422,-0.30892804,-0.093519196,0.20089372,0.27811795,-0.05673066,-0.1107234,-0.18192582,-0.5893775,-0.38908243,-0.13616124,-0.1277634,0.2339062,0.03480949,-0.2336041,0.7567647,0.04448085,1.2322123,-0.04609133,-0.2644611,0.042163834,0.5380977,-0.0057967105,-0.07900141,-0.30357686,1.029341,0.79063237,0.08655501,-0.12622698,-0.28013203,-0.22021346,0.06651563,-0.22174476,0.036319353,0.026857398,-0.5640405,-0.4578345,0.25090817,0.27743536,0.1076491,-0.089009896,-0.06275676,0.17187439,0.0014627735,0.2038243,-0.5492824,-0.21006377,0.15288404,0.3188575,0.06753626,0.15280706,-0.45622918,0.4565792,-0.49742663,0.073463134,-0.40795314,0.08946298,-0.096798845,-0.14096016,0.13517761,-0.025012696,0.33480084,-0.29539493,-0.3417171,-0.10448189,0.47784021,0.16410993,0.056099143,0.7629337,-0.19295433,0.10947601,0.03940787,0.41585886,0.9365104,-0.37217146,0.028399674,0.42416313,-0.394293,-0.56222916,0.18229252,-0.26523402,0.18273804,-0.09064816,-0.35357246,-0.4583772,0.202368,0.13854745,-0.077139966,-0.0092355255,-0.71526206,-0.13791175,0.32774657,-0.49720412,-0.26497194,-0.2315618,0.25933683,0.6131727,-0.3820639,-0.42115057,0.13172922,0.19271186,-0.113201536,-0.65272605,-0.20351133,-0.3459418,0.29279107,0.2033396,-0.349616,-0.07901616,0.11533293,-0.30938584,0.048928134,0.15113804,-0.37352258,0.009298013,-0.3501752,-0.16533707,0.8249993,-0.03553211,0.031087661,-0.7273216,-0.20191832,-0.90169305,-0.48497888,0.5696574,0.16400889,0.095435,-0.54369354,0.022447824,-0.0043430687,0.013435232,-0.18583913,-0.30299494,0.39527795,0.13986634,0.58321923,-0.2297597,-0.8090556,0.1291871,0.2373676,-0.12473986,-0.6230248,0.42312035,0.0023653985,0.85093176,-0.041884884,0.075425915,0.2695066,-0.64803225,-0.1503539,-0.31771126,-0.22487068,-0.669873,-0.0033644119 -265,0.5173759,-0.20671967,-0.75783825,-0.034395557,-0.35395953,0.024954217,-0.26104972,0.32771704,0.1303419,-0.59701794,-0.09066869,-0.01393873,-0.147503,0.19981635,-0.2002757,-0.308196,0.010672177,0.44651562,-0.42601022,0.41385618,-0.43654442,0.3556357,0.038501374,0.19443676,0.16312051,-0.006483159,-0.065092646,0.13526173,-0.07483715,-0.43537134,0.19042587,0.2829257,-0.82426614,0.3408728,-0.20235062,-0.5311449,-0.12716673,-0.4953845,-0.28152892,-0.8290634,0.19600196,-1.0234909,0.58881325,0.012121839,-0.3481388,0.21447682,0.10149431,0.35499606,-0.10560685,0.032023504,0.26442227,-0.26736566,-0.5479484,-0.09144359,-0.009429327,-0.28588882,-0.6247967,-0.047671225,-0.42311648,0.165201,-0.36813256,0.25930166,-0.40901738,0.1699373,-0.3796289,0.3949636,-0.23664834,0.014869341,0.11533142,-0.009282248,0.15271118,-0.5669852,-0.18025972,-0.20705938,0.13288315,-0.23111837,-0.43932202,0.33724704,0.22990271,0.4761386,-0.045775477,-0.24815716,-0.20606294,-0.005150318,0.27106282,0.42403856,-0.20150682,-0.24595931,-0.17817958,-0.05060519,0.40636784,0.033311754,0.109660454,-0.2724603,-0.092189506,0.12272764,-0.32226947,0.57122433,0.55097026,-0.2485826,-0.0659835,0.3602,0.63236815,0.12167813,-0.15842488,0.277668,-0.008986224,-0.5335291,-0.1454599,0.17216572,-0.15859425,0.25189492,-0.23234287,0.14676486,0.5349701,-0.42471775,-0.374085,0.4690837,0.165611,-0.09240045,-0.19717444,-0.4731575,0.45329905,-0.60788053,0.107384145,-0.23959446,0.7992931,-0.045919936,-0.6859488,0.29541355,-0.71538985,0.16059409,-0.10487239,0.66373503,0.66093403,0.68842405,0.33088428,0.75852734,-0.33281666,0.01470255,-0.13117418,-0.399961,0.14341934,-0.44611454,0.023903767,-0.43661484,-0.04728782,-0.09909473,-0.37208048,-0.016820395,0.66733456,-0.43167105,-0.25125375,0.03316616,0.36984888,-0.3652769,-0.06837898,0.9498596,1.0377381,1.1562798,0.4072535,1.2007567,0.25548413,-0.058166243,-0.2525148,0.0607282,-1.0396374,0.33593482,0.2813564,-0.2337515,0.27971712,0.37291312,-0.0061598164,0.41665745,-0.47668138,-0.14728832,-0.1105481,0.3496609,-0.0628016,-0.30447578,-0.5095673,-0.26399735,0.15135516,0.124253355,0.009799434,0.26153657,-0.25122213,0.44205847,0.30983108,1.1679513,-0.25658032,0.03489905,0.098999925,0.204558,0.1397052,-0.25834754,-0.111525536,0.1343309,0.42515475,0.11581449,-0.5041415,0.10661476,0.0738319,-0.5013007,-0.2384106,-0.19803905,-0.047685392,-0.33731514,-0.33766547,-0.25398684,-0.06347891,-0.4071935,0.39602205,-2.3386264,-0.15193157,0.009848131,0.24970844,-0.051873345,-0.4598803,-0.11343086,-0.4633834,0.36379257,0.24735309,0.4379468,-0.63660765,0.5004323,0.47659454,-0.7199102,-0.032834925,-0.79706615,-0.2024231,-0.19859828,0.35191005,0.12688182,-0.14118345,-0.06503699,0.0755886,0.4445072,-0.31905937,0.12538436,0.52914155,0.33859396,-0.1323203,0.51418847,0.14492114,0.46060285,-0.35357976,-0.32388872,0.37720338,-0.3541665,0.07075767,0.10453302,0.062576935,0.5210901,-0.55186015,-0.9708505,-0.7274591,-0.1570873,1.28976,-0.2236062,-0.49252945,0.13629995,-0.51638633,-0.47609565,-0.036127355,0.30730942,-0.22330841,-0.04248053,-0.9423704,-0.094202794,-0.14977907,0.37222582,-0.20513733,0.031707864,-0.5412922,0.7107864,-0.17051731,0.5919666,0.48182574,0.11272202,-0.4011703,-0.413032,0.105425544,1.2537359,0.39954406,0.16805157,-0.46941286,-0.26056415,-0.24198504,0.062929355,0.11859039,0.49208394,0.5313258,-0.08906632,0.24578102,0.20818941,-0.11834519,0.021266248,-0.27454227,-0.2558494,-0.18517244,-0.076244764,0.65954316,0.5224915,0.10920918,0.52495307,-0.07620221,0.2775022,-0.1186288,-0.48589054,0.40259436,0.98216355,-0.062439807,-0.49042267,0.7440391,0.65705013,-0.19682871,0.5748912,-0.41117856,-0.28756955,0.104956985,-0.060600005,-0.2330524,0.2908794,-0.4751955,0.3402167,-0.90814173,0.36404392,-0.30015692,-0.8472336,-0.5960407,-0.026887447,-3.0458739,0.34580064,-0.08077313,-0.088668786,-0.12850843,-0.27671114,0.46499103,-0.43270248,-0.81157005,0.10138794,0.17501846,0.86998546,-0.1874491,-0.15331258,-0.18894829,-0.3096631,-0.25930855,0.11551621,0.19523808,0.2555814,0.033359263,-0.45378143,-0.024433825,-0.32061842,-0.3083323,-0.1906264,-0.8456921,-0.4352312,-0.008610623,-0.4677485,-0.5214494,0.68693435,-0.32631615,0.00064783223,-0.26252562,0.028886143,0.15894587,0.5077109,-0.13232273,0.049652927,0.03376304,-0.037208173,-0.059466656,-0.060147233,0.18622495,-0.10761627,0.12295415,0.504161,-0.39263064,0.20128536,0.5759239,0.85659283,-0.12146865,1.1023186,0.41657755,-0.283975,0.29485777,-0.10651518,-0.30801362,-0.6951314,-0.056279164,-0.051491637,-0.56668144,-0.21870944,0.1422291,-0.23564376,-0.86956036,0.7418577,0.066150926,-0.08392061,-0.013508433,0.39194712,0.38920385,0.021967279,-0.1300082,-0.19055803,-0.27345,-0.37427053,-0.40059862,-0.71737206,-0.38086456,-0.41490707,1.4702549,-0.17652075,0.18598714,0.12960292,-0.09872059,0.21811166,0.14284992,0.02892352,0.23615268,0.6282491,0.07739425,-0.55901605,0.28596404,-0.2420131,-0.04956859,-0.58402264,0.27962583,0.7216806,-0.6701466,0.36434856,0.45498943,0.16287708,-0.123618804,-0.6240138,-0.060681757,0.15425311,-0.27011415,0.63962096,0.38561302,-0.9873869,0.5835198,0.48319688,-0.2890606,-0.6810341,0.5089892,-0.04000674,-0.032249417,-0.10476167,0.43712887,-0.15767384,0.17764834,-0.08380441,0.34897113,-0.28645352,0.30530116,0.16447006,-0.11043334,-0.031415448,-0.18795879,-0.06893522,-0.67381376,-0.035212018,-0.36832026,-0.28168815,0.041606374,0.03333259,0.10330479,0.37904435,0.08619659,0.44548026,-0.39459667,0.020690829,-0.2888388,-0.45388672,0.41507468,0.65164214,0.39933914,-0.3893321,0.7409606,0.08963632,-0.15623225,-0.412399,-0.082621746,0.48925206,-0.041617293,0.46350494,0.06313272,-0.07847619,0.20307732,0.8138777,0.16546239,0.56452745,-0.000625687,-0.055120658,0.053183798,0.19575344,0.47327366,-0.115028374,-0.55951464,0.06606257,-0.17673667,0.20432499,0.47098374,0.0170407,0.2860206,-0.17225535,-0.20933516,-0.05331295,0.060763817,-0.0009723859,-1.5906767,0.5880295,0.24795873,0.63055545,0.49948913,-0.030928824,0.3238768,0.59855187,-0.27632508,0.037014723,0.21757713,0.11810671,-0.27165887,0.46561816,-0.75790876,0.4114678,-0.09031326,0.03557532,0.14842579,-0.11272425,0.50971496,0.8594866,-0.14401436,0.2421961,-0.09444898,-0.28599283,0.1604686,-0.28673938,0.061973657,-0.42463306,-0.353789,0.9358387,0.46389732,0.57038414,-0.28627357,-0.028481666,0.10401348,-0.15512861,0.1658584,0.059679396,-0.017918902,-0.17720427,-0.6113257,0.08464378,0.6980441,0.08906318,0.07857781,-0.0014991207,-0.33153588,0.30877063,0.031307016,-0.027838191,-0.19003473,-0.8171095,-0.116174445,-0.4837169,-0.37894318,0.15361063,-0.14874151,0.16519271,0.31956023,0.043337945,-0.36214405,0.17530395,0.3450285,0.67650205,0.0477116,-0.11901443,0.09851669,0.2793588,0.17555192,-0.19099928,-0.14685826,-0.252682,0.28724405,-0.6205511,0.33884278,-0.28183666,-0.5907852,0.3070998,0.061557148,0.008941685,0.40398762,-0.2699504,-0.090239726,0.093496874,-0.015368507,-0.010194585,-0.36364916,-0.19264853,0.24515055,0.15485011,-0.1602786,-0.09464055,-0.04139192,-0.119544245,0.4166403,0.06962364,0.30097347,0.44234982,0.19953094,-0.49097148,0.036148112,-0.0065974593,0.7991567,-0.14029714,-0.2686672,-0.46300945,-0.15782759,-0.25570172,0.34542474,-0.043384455,0.23876241,0.100328885,-0.40986028,0.9734666,0.03753699,1.0251368,-0.072669216,-0.53032625,0.08306708,0.56760794,-0.047825716,-0.106539465,-0.27061257,0.85375947,0.4961383,-0.22589943,-0.061326537,-0.53923905,-0.024950292,0.16608095,-0.22462256,-0.27121085,-0.080481075,-0.56892365,-0.050214946,0.18495762,0.45603678,-0.10476124,-0.17003724,0.33939907,0.5133089,-0.022924488,0.078355536,-0.4587555,0.07445288,0.3779554,0.26949912,-0.050799403,-0.10786456,-0.47521713,0.19612841,-0.7068845,0.105858244,-0.17958513,0.12713031,0.022883058,-0.13993411,0.22729817,0.11977466,0.22873528,-0.33394447,-0.2184008,-0.09770851,0.43419114,-0.014267479,0.12930694,0.7454084,-0.31312147,0.13867201,0.10963821,0.33252186,0.8223224,-0.23947491,0.042547278,0.28813106,-0.3181315,-0.45644718,0.33102512,-0.29655376,0.11299341,0.04217335,-0.45058677,-0.5724906,0.22194615,0.32480344,0.14995582,0.0702408,-0.6049951,0.012123706,0.45693678,-0.28037772,-0.2130858,-0.35989386,-0.11302827,0.59207046,-0.20758192,-0.45093864,-0.031448465,0.2717537,-0.2607315,-0.38994431,-0.07343777,-0.55431396,0.30907637,-0.10591655,-0.2496684,-0.008742903,0.06197547,-0.54061586,-0.014122264,0.29453605,-0.26436496,0.17212765,-0.47400692,0.01758696,0.8006751,-0.30525213,0.32933554,-0.4744119,-0.7561754,-0.80348223,-0.10076981,0.38483652,0.21245632,-0.041328464,-0.65672356,-0.041359823,-0.043386105,-0.35029173,-0.06368672,-0.4549675,0.563026,0.23778902,0.3496308,-0.04754911,-0.9090604,0.19159266,0.07711441,-0.10029702,-0.2807382,0.61354196,0.09099395,0.761205,0.095356666,0.29579258,0.021989176,-0.75507516,0.31328353,-0.011694289,-0.054484036,-0.7624618,-0.18767957 -266,0.4774552,0.07755811,-0.6409768,-0.08471197,-0.14882444,-0.0069275605,-0.16382706,0.36030155,0.30162218,-0.41011995,0.06571677,-0.027892385,-0.0032710151,-0.07631644,-0.14639725,-0.57964426,0.08835163,0.28290686,-0.4171194,0.37748012,-0.44732377,0.2497996,-0.17463692,0.23793419,-0.14856872,0.13285182,-0.035241853,0.0053720474,-0.17493396,-0.23303899,0.31514844,0.19966364,-0.69404346,0.20323278,-0.18447517,-0.18903682,-0.047862973,-0.4020924,-0.47479054,-0.70169276,0.2456292,-0.79657733,0.5462067,0.18221386,-0.33553186,0.36331457,-0.1625042,0.26859814,-0.17595302,-0.025105609,0.17857075,-0.2571109,-0.29881066,-0.28681093,-0.12735678,-0.2042739,-0.6230296,0.13328645,-0.45807776,0.05228166,-0.30808464,0.17112446,-0.39863157,0.11621189,-0.2628211,0.49833032,-0.28858885,0.035341233,0.25950247,-0.023242008,0.10943995,-0.3691513,0.05043614,-0.136745,0.12980449,-0.1444725,-0.22266494,0.17700934,0.20913239,0.5542031,-0.084308706,-0.27389067,-0.12859373,-0.0035053492,0.12894726,0.42138958,-0.2424123,-0.33558586,-0.15418704,-0.033628423,0.056019165,0.114021406,0.0906666,-0.1618716,-0.012213647,0.23123612,-0.31841168,0.6460691,0.6686477,-0.17691398,-0.09957998,0.33223322,0.6681647,-0.058937646,-0.057881232,0.1420569,0.033970404,-0.43303794,-0.3236802,0.06888105,-0.19446893,0.3054095,-0.25349328,0.10465859,0.6732736,-0.3937896,-0.20089102,0.31742337,0.07751016,0.18399653,-0.36066642,-0.23049094,0.44975457,-0.5649956,0.021014009,-0.25922176,0.9009536,0.017805148,-0.7841523,0.43492392,-0.49532843,0.19305624,-0.15929069,0.772124,0.76137555,0.45868847,0.20716058,0.6842609,-0.49025673,0.08790077,0.018055629,-0.44677565,0.2306402,-0.080321185,0.20600879,-0.3869583,-0.22541095,0.05739078,-0.246796,-0.017956521,0.33739367,-0.5149154,-0.3607718,0.073422156,0.6900982,-0.2879664,-0.16221368,0.7202913,1.1434897,0.8678344,0.17445973,1.1393753,0.3276231,-0.10409855,0.057257622,-0.25794214,-1.0012966,0.34854105,0.12482087,-0.35873052,0.16146223,0.2509644,-0.17503473,0.34359685,-0.46209636,-0.12684183,-0.1241587,0.4388509,-0.18541193,-0.21376951,-0.33259693,-0.101206064,0.10908972,-0.021256438,0.17936747,0.3401075,-0.25889674,0.082734875,0.095834926,1.0463662,-0.024464233,0.08082148,0.10825915,0.33379886,0.15222839,-0.22741517,-0.12931497,0.30843145,0.24817829,0.17321041,-0.5817264,0.13717355,-0.09789176,-0.448848,-0.23687944,-0.21756269,0.11215121,-0.23934321,-0.39813143,-0.05312299,-0.20066373,-0.3985896,0.4660994,-2.5860946,-0.2567018,-0.016485175,0.40378803,-0.07443186,-0.29166394,-0.06238297,-0.4932079,0.33544487,0.26278472,0.43989828,-0.6720257,0.52878225,0.36011335,-0.4184897,0.0071129375,-0.6861109,-0.03583703,-0.09070661,0.24857643,0.07562796,0.012801545,-0.0675305,0.10111337,0.3053036,-0.05240467,0.12109649,0.32683563,0.47741154,-0.052362256,0.26269394,0.07932186,0.5496846,-0.3012568,-0.28427595,0.25708845,-0.51448435,0.21961871,-0.05084799,0.08674332,0.2912204,-0.38447475,-0.83624107,-0.49499568,-0.23477206,1.1876236,-0.17996553,-0.37936231,0.19382715,-0.3203899,-0.46231326,0.025769625,0.38325614,-0.23815031,-0.07886083,-0.88794965,0.03441008,-0.1299315,0.2489269,-0.13814038,0.077819064,-0.46031395,0.5851225,-0.2820927,0.43897268,0.29737014,0.17605248,-0.44016084,-0.4488244,0.07080657,1.0735883,0.32139516,0.124014296,-0.36550966,-0.15608506,-0.17645785,-0.016465532,0.05315841,0.52371424,0.77953976,-0.043250393,0.09444778,0.36635968,-0.15870723,0.022146974,-0.08248358,-0.3802177,-0.16927148,-0.16468684,0.6816312,0.6611908,-0.32496944,0.46622658,-0.15985455,0.2970623,-0.2765874,-0.38838133,0.46499515,0.6455111,-0.051162843,-0.28631026,0.7091417,0.34510812,-0.50240546,0.5153501,-0.5182214,-0.30987778,0.26799363,-0.067748815,-0.42450666,0.22233663,-0.3262128,0.21620753,-0.87499875,0.5065985,-0.3423422,-0.7595533,-0.5777146,-0.11306653,-3.4834695,0.31191343,-0.23666473,-0.012383255,-0.11144189,-0.03962683,0.27631873,-0.33701417,-0.5164818,0.1527209,0.17589433,0.7379927,-0.12539978,0.12796094,-0.19925272,-0.18971299,-0.31322366,0.18145467,0.4513765,0.240818,-0.051311407,-0.35046965,-0.10902548,-0.21715342,-0.19378243,0.06738527,-0.6067664,-0.38734978,-0.09060303,-0.5707021,-0.35219264,0.6303166,-0.21993504,-0.12936111,-0.3917644,-0.06850612,-0.03870707,0.5415905,0.038476206,0.08978031,0.0052654403,-0.14551766,-0.18498254,-0.28626844,0.24339107,-0.06108864,0.47668156,0.46785477,-0.3248263,0.036203247,0.48786074,0.6551077,0.117308006,0.80644757,0.35638216,-0.15824886,0.39194182,-0.15638511,-0.22678158,-0.56369126,-0.22207583,-0.072417185,-0.46305576,-0.31969357,0.00054402865,-0.4073918,-0.6869454,0.49736923,-0.1255252,-0.082772665,-0.040146213,0.53670806,0.42518324,-0.07818217,-0.14792986,-0.13743037,-0.21482828,-0.3074337,-0.25759882,-0.6902357,-0.3704147,0.08820678,1.0004812,-0.12839718,0.21694836,-0.0017886332,0.0027640548,0.029816492,0.17398931,0.08843524,0.2576343,0.5761012,-0.19010136,-0.46056303,0.3697696,-0.38193485,-0.09265328,-0.8519877,0.061404355,0.62817115,-0.6892387,0.6578003,0.4625432,0.1172378,-0.064970195,-0.53619546,-0.15365075,0.11439293,-0.2642338,0.51297456,0.33905378,-1.0891808,0.62872696,0.39373335,-0.21323583,-0.6722621,0.48360634,0.08192873,-0.11980902,-0.08110193,0.40473637,-0.20346835,0.10500228,-0.09476393,0.27161065,-0.32231167,0.22674908,0.14358751,-0.18992434,0.48071668,-0.1900827,-0.14343785,-0.49136892,-0.15747021,-0.6759757,-0.19491817,-0.05007546,-0.047439992,0.085226655,0.3517969,0.035673786,0.41398406,-0.3412688,0.017685285,-0.054181844,-0.4919092,0.42506316,0.47869775,0.5052942,-0.36856705,0.62580776,0.059313204,-0.088058956,-0.20625985,0.14946078,0.63497007,-0.10823947,0.38643435,0.37819603,0.05341118,0.22037813,0.79435635,0.11606567,0.6375704,0.19035502,-0.03944504,0.19734213,0.08466915,0.2657081,-0.13874058,-0.4770573,0.054182548,-0.118394375,0.28225833,0.38242975,0.14008075,0.41455474,-0.20485334,-0.29087624,-0.05105704,0.27517146,-0.02837723,-1.2428877,0.4016443,0.22617148,0.6650297,0.34476417,0.008818214,0.16622236,0.45356628,0.007415414,0.20389774,0.13108349,0.015592135,-0.41985497,0.49947637,-0.7671003,0.3901649,-0.14962777,-0.011590077,0.059490938,-0.1598282,0.38714728,0.8022321,-0.11732753,0.13305795,-0.13424237,-0.22752774,0.2689195,-0.25813562,0.33918986,-0.4345119,-0.107273936,0.8720358,0.4951263,0.31742492,-0.31456742,0.012361372,0.09658524,-0.06328457,0.059892263,-0.054838866,0.11270646,0.0032728675,-0.6466462,-0.26938698,0.58636016,0.25183985,-0.00741237,-0.011776294,-0.09028506,0.22815609,-0.19641936,-0.07565173,-0.0011091126,-0.62643665,0.019776294,-0.23706545,-0.45193177,0.37272665,-0.20802915,0.21500762,0.17774984,0.19250774,-0.44668713,0.2424643,0.18532057,0.57402974,0.054781977,-0.18575892,-0.2902775,0.27310136,0.24783213,-0.2602877,-0.10698198,-0.38888913,0.14698114,-0.6160354,0.5254043,-0.25352415,-0.47038585,0.13903268,-0.06009921,0.029022349,0.47128415,-0.16915968,-0.14230774,0.13852985,-0.17321476,-0.15449905,-0.18310682,-0.009857497,0.223823,0.3209085,-0.32073572,-0.04481352,-0.057987932,-0.12110967,0.28307623,0.123147376,0.1869631,0.48903033,0.353158,-0.36690024,-0.08885224,0.20596735,0.6461967,-0.089070104,-0.1852711,-0.40716282,-0.30847192,-0.15064944,0.26464608,-0.031766564,0.119613275,0.007993983,-0.2878774,0.7334324,0.16090728,1.0541309,0.14465344,-0.24376357,-0.07818254,0.48715138,-0.024152312,-0.10375898,-0.47094265,0.98095024,0.45410293,-0.25416318,-0.14222133,-0.45519215,-0.09817807,0.08449961,-0.15565589,-0.3955578,0.032233357,-0.7366522,-0.04481851,0.16559322,0.33294052,0.065974556,-0.020022942,0.22569458,0.4219799,-0.018278599,0.03657977,-0.64852583,0.049865264,0.15854342,0.28097633,-0.02280706,0.20994805,-0.28626734,0.31287718,-0.66818804,0.021401158,-0.114168055,0.06447435,0.007451368,-0.4596277,0.072777845,0.2375959,0.38675076,-0.25687483,-0.17090246,-0.13495038,0.30251947,0.27830535,0.11194522,0.7218544,-0.10716933,-0.039896447,0.06915929,0.4488534,0.86928815,0.018286854,-0.06421403,0.2770483,-0.23685272,-0.87083536,0.35905114,-0.29596573,0.21909055,-0.23486526,-0.37413734,-0.52615684,0.36774498,0.22472191,-0.118638135,0.10377914,-0.55247265,-0.047534414,0.15551385,-0.2821283,-0.13313755,-0.17772034,0.047303535,0.837223,-0.1946992,-0.25545004,-0.02696642,0.39108086,-0.2341117,-0.48284158,-0.12784751,-0.48717123,0.15833108,-0.11336883,-0.22485216,0.035837047,0.14133039,-0.3952606,0.3068646,0.2701176,-0.25273088,0.09992166,-0.1968753,-0.08087617,0.5496918,-0.1770105,0.24656664,-0.5388214,-0.54082394,-0.7923922,-0.27032754,0.22561084,0.056430954,0.013668776,-0.6458252,-0.12007254,-0.0067693167,-0.025680194,-0.0036821833,-0.45854467,0.3984282,0.18174376,0.24479805,0.03593406,-0.91761035,-0.038845003,0.108456366,-0.41478306,-0.57601374,0.5069336,-0.09814727,0.7343932,0.029844189,0.24790859,0.21918213,-0.52097803,0.1435399,-0.20705292,-0.10829617,-0.68843204,-0.009917663 -267,0.25454345,-0.38206726,-0.5430808,-0.23411474,-0.19402823,-0.0040979087,-0.052266814,0.7367414,0.12974882,-0.30746692,-0.14964613,-0.26068592,-0.13253494,0.272796,-0.27472478,-0.18888596,-0.13626947,0.27825955,-0.41721782,0.25200528,-0.44429618,0.29444307,-0.0806718,0.3535501,0.19176151,0.043853384,0.24987802,0.14392403,-0.09097141,-0.39148706,0.114579156,0.037237402,-0.5150574,0.29714274,-0.26642266,-0.53590834,0.04351793,-0.63168085,-0.37940907,-0.7936164,0.29127622,-0.8144369,0.6068908,0.06913078,-0.37093335,0.02061289,0.3150328,0.37531546,-0.10837658,0.031287055,0.28219765,-0.03721422,-0.03148525,-0.15647754,0.003939605,-0.30155912,-0.52791023,-0.07987105,-0.19215655,-0.057069976,-0.099828124,0.2079734,-0.31137258,0.2314126,-0.18756084,0.7120336,-0.38828617,-0.115266465,0.016561087,-0.054795872,0.33668032,-0.5608736,-0.20053951,-0.21722922,-0.042937957,-0.08102366,-0.23146553,0.39695016,-0.01416108,0.29405332,-0.29169255,-0.11199224,-0.19271488,-0.10988994,-0.17066464,0.5433328,-0.10097011,-0.3760601,-0.04767243,-0.12229911,0.21876375,0.053494237,-0.0057110777,-0.11102325,-0.03620132,-0.097519375,-0.34776628,0.36355937,0.5589963,-0.3032744,-0.0050797,0.25723186,0.4905525,0.075056516,-0.078005984,0.043784693,0.08356164,-0.59944797,-0.28783053,-0.18926767,-0.2033706,0.63099325,-0.1695464,0.36052135,0.4874963,-0.22581294,-0.14388639,0.1391995,0.34985152,-0.10684462,-0.24505575,-0.80297184,0.50477266,-0.49783796,-0.17264375,-0.18934989,0.94141513,-0.05261285,-0.6558255,0.3457098,-0.6136882,0.037937492,-0.15298912,0.5186127,0.3681133,0.6947955,0.383976,0.6411713,-0.2657445,-0.0075468896,0.12137027,-0.19992734,0.13282253,-0.32853433,-0.13426727,-0.33847886,-0.044737995,0.14961818,-0.16368338,0.02447623,0.4990948,-0.44015652,-0.20208366,0.2258128,0.6386236,-0.3382485,0.12382617,0.56285214,1.3333248,1.1206585,0.12528867,1.0504045,0.07662522,-0.2820988,-0.028481677,0.13389464,-0.9660598,0.26645917,0.31386805,-0.16762719,0.2632672,0.18491352,-0.113721706,0.4536546,-0.6834136,0.027047152,0.004692179,0.3466193,-0.04848774,-0.029378753,-0.65755767,-0.5021473,0.14142978,0.08229013,-0.080453396,0.3356491,-0.24190345,0.15585418,0.104596004,1.4640064,-0.09301416,0.07517024,0.09189664,0.53952557,0.12245884,-0.35908532,-0.09787334,0.10565394,0.2699854,0.19788113,-0.44515887,0.16859135,-0.016685594,-0.4684043,-0.1122602,-0.2595951,-0.00512335,-0.29980177,-0.4999846,-0.25450486,-0.070893094,-0.31290582,0.34816512,-2.5877125,-0.08034853,-0.051529717,0.41318908,-0.14861561,-0.31723318,0.02704762,-0.46291023,0.35886863,0.57448375,0.47780013,-0.6772384,0.39033395,0.53182876,-0.4310263,0.018392703,-0.64218646,-0.24163342,-0.06438698,0.22340429,0.10798404,-0.09064124,-0.04098501,0.31029618,0.39381212,0.010460635,0.1193314,0.30254242,0.30492884,-0.06942808,0.57090867,-0.04451924,0.33362997,-0.5898602,-0.20351581,0.20425217,-0.6038334,0.02681675,-0.046158694,0.10636804,0.5036043,-0.6545018,-0.93973315,-0.5170795,0.026507366,1.344549,-0.3250421,-0.31293535,0.31256709,-0.31478786,-0.35105214,-0.11252898,0.45229214,-0.31593117,0.029641401,-0.8309725,-0.1189355,-0.15068923,0.46764427,-0.10487215,-0.045605075,-0.5909399,0.56553996,-0.16262442,0.68817765,0.48894167,-0.012790352,-0.66062605,-0.5365337,0.008968107,0.89334583,0.5364355,0.15629455,-0.32499242,0.012354267,-0.39620826,0.06567061,0.1701497,0.39999074,0.8793955,-0.099152066,0.24369116,0.35985488,-0.107568964,-0.013300655,-1.3653934e-05,-0.34191465,-0.04239855,0.099186994,0.7301334,0.60045874,-0.08231935,0.20066532,-0.09849094,0.49097633,-0.33613873,-0.36381045,0.31816068,0.9380349,-0.0564973,-0.24429682,0.75491923,0.73574924,-0.28144732,0.5408926,-0.51320016,-0.43324608,0.2898473,-0.03305862,-0.4571845,0.26695022,-0.258967,0.15585463,-0.8963324,0.44789806,-0.19136688,-0.5036154,-0.78951967,-0.29523414,-3.1833014,0.21425065,-0.061720025,-0.31423038,0.10822652,-0.22127743,0.29065642,-0.6034694,-0.69687736,0.061145745,0.12751588,0.6806675,0.027801162,-0.11449371,-0.18508002,-0.23357186,-0.36355218,0.2544455,0.23619516,0.25952095,0.13044772,-0.61177313,-0.21919155,-0.3634204,-0.47642308,-0.025536457,-0.63583946,-0.553469,-0.09719081,-0.78860354,-0.4720502,0.7266078,-0.022227418,0.018037831,-0.1685529,-0.0740723,0.031459726,0.28152114,-0.002243191,0.1123908,-0.1163488,-0.16681674,0.029570555,-0.11637209,0.1961402,-0.02000294,0.41769704,0.28857622,-0.24735078,0.02799816,0.68212473,0.6631584,-0.20371553,1.0179703,0.30500454,-0.113264754,0.139426,-0.03017124,-0.24052444,-0.44644326,-0.16229275,0.014712816,-0.5143217,-0.1187489,0.11209111,-0.2840641,-0.8531926,0.66427004,-0.05293218,0.017039502,0.095595345,0.2442698,0.21536846,0.025931578,-0.11988817,-0.16846737,-0.08583887,-0.41101098,-0.3031307,-0.7865567,-0.20145097,-0.09339776,1.3726715,-0.15647689,0.13024053,0.19415846,0.07429327,0.19079712,-0.020988781,-0.07351838,0.3047459,0.40144944,-0.08537785,-0.62801516,0.35315838,-0.3458088,0.008358538,-0.38672996,0.11755409,0.63065237,-0.5675313,0.35299546,0.3657394,0.0895558,-0.3521969,-0.650771,-0.22000845,-0.012694013,-0.1501496,0.70276636,0.26378983,-0.84451735,0.4503182,0.21720871,-0.3398975,-0.71321285,0.53506124,-0.14101668,-0.26819146,-0.21721056,0.34733108,-0.14116473,0.13255617,-0.1791411,0.30573037,-0.3203698,0.2095391,0.10205004,0.025801789,0.4518458,-0.32456142,0.11082311,-0.63283956,0.02537331,-0.4593791,-0.33507392,0.13900463,-0.08227874,-0.17948562,0.4636527,-0.0679034,0.3603569,-0.26939544,0.0032188415,-0.07590234,-0.32425418,0.6679041,0.4817253,0.4805119,-0.38497895,0.63954115,0.05630386,-0.15242305,-0.53316885,-0.12966928,0.333554,0.039791394,0.34817585,0.06656475,-0.16979082,0.4870401,0.6681511,0.32840458,0.503559,0.028784249,0.055200864,0.06819476,0.13842385,0.32746848,0.119549915,-0.5077223,-0.0045639575,-0.3069528,0.1822783,0.42435232,-0.050042056,0.35926193,-0.2691564,-0.24972606,0.17434683,0.21006016,-0.396219,-1.3302718,0.4665262,0.044374492,0.68049836,0.6446245,0.1007182,0.11574235,0.6513226,-0.14961821,0.08184961,0.267999,0.40265578,-0.39829734,0.72509295,-0.57880986,0.562834,-0.10191526,0.012274114,-0.13241313,-0.10978861,0.51568997,0.57962865,0.06460102,0.16566579,-0.015383279,-0.23292932,0.100153044,-0.43998942,0.2675243,-0.5534216,-0.20270932,0.75321704,0.32388726,0.31693918,-0.11958493,-0.075828254,0.085686125,-0.16531952,0.28604132,-0.04263836,-0.09570557,-0.11108675,-0.74532425,-0.06494222,0.57015616,0.062107217,-0.037838217,-0.030858194,-0.23865089,0.13168366,0.079503134,0.04441517,0.08742495,-0.6823146,-0.09390004,-0.31193766,-0.23811834,0.37125653,-0.26407337,0.13316922,0.2128601,0.13646445,-0.418804,-0.07086208,0.44754377,0.547964,0.031172806,-0.015014112,-0.077114396,0.13353607,-0.06512317,-0.1860036,-0.007246101,-0.4865881,0.12332535,-0.45008707,0.4984459,0.007250863,-0.41319808,0.21158615,-0.06570713,-0.05066939,0.48313516,-0.0036744834,0.044972785,-0.083904505,0.0014386416,-0.017025892,-0.33896652,-0.27195585,0.27553284,0.07025913,0.023598442,-0.023456369,0.037730217,0.06069777,0.57980615,-0.12941907,0.39835805,0.42601553,0.059672266,-0.52822936,0.029378995,-0.46360832,0.70469224,-0.1097631,-0.0900268,-0.4890345,-0.25041643,-0.13191293,0.3156326,-0.17631598,0.34857076,0.08567437,-0.21146159,0.83775425,0.1480566,1.0952461,-0.14420156,-0.40738067,-0.07979052,0.6427236,-0.035668276,-0.13058202,-0.35550776,1.098232,0.46239337,-0.30258173,-0.26200575,-0.3937326,0.023258865,0.138456,-0.13608034,-0.5148305,-0.18872419,-0.74827397,-0.10986658,0.20428224,0.39975703,-0.03997399,-0.059630107,0.32772297,0.5925343,-0.025409097,0.31150037,-0.28296724,0.17809269,0.4165523,0.10434451,0.03738105,0.011156544,-0.54669636,0.21890974,-0.65981805,0.11829944,-0.30276138,0.13853736,-0.07837254,-0.40634727,0.023095557,0.093332455,0.23864086,-0.38282022,-0.16724166,-0.037282597,0.48743087,0.07886616,0.26600856,0.63612497,-0.24506679,0.14587338,-0.034306962,0.3634693,1.0313625,-0.3370673,-0.15316117,0.2549554,-0.36551946,-0.6905787,0.21901853,-0.3243321,-0.0007312894,0.03205862,-0.26648208,-0.57295394,0.30497652,0.30107445,-0.042946257,0.15459211,-0.55987847,-0.08988921,0.32877344,-0.23145965,-0.16474703,-0.52901244,-0.05882225,0.40277824,-0.16691044,-0.43411598,-0.12223033,0.35628337,-0.26274452,-0.5620781,-0.06649399,-0.5188362,0.26950222,-0.07741751,-0.3223295,-0.10904577,-0.035347663,-0.4340435,0.21871957,0.23216352,-0.20558289,0.1059523,-0.31661686,0.01509403,0.9662162,-0.012182847,-0.0031435401,-0.498604,-0.56185555,-1.07398,-0.18086687,0.58180887,0.09476167,-0.06301583,-0.6718019,-0.05525583,-0.16586098,-0.2570719,-0.21611877,-0.2342942,0.4307889,0.19165215,0.4067894,0.04667272,-0.746168,0.14881745,0.08275457,-0.20769677,-0.22474173,0.7773798,-0.0014951795,0.88355225,0.08686118,0.16512461,0.17504142,-0.54604363,0.28366318,-0.053846717,-0.23404074,-0.44855723,0.114226006 -268,0.25515553,-0.1966867,-0.41208756,-0.29867846,-0.44896117,0.16726035,-0.23658586,0.44846526,0.20281525,-0.39290845,-0.14534055,-0.07544453,-0.019163245,0.18524718,-0.106972136,-0.49251947,-0.16229174,0.10499724,-0.59649247,0.43770227,-0.53005874,0.3961018,0.039102037,0.33738363,0.047330316,0.3063145,0.38851795,0.026233098,0.3069794,-0.23423259,-0.057445794,0.14420201,-0.6052608,0.39007154,-0.35891452,-0.40549326,0.19930522,-0.18604434,0.01857998,-0.5641493,0.15741472,-0.7879445,0.55007327,-0.043607872,-0.1797752,0.21583648,0.48406497,0.19162875,-0.19575675,-0.16643555,0.19095016,-0.19696437,-0.13795058,-0.25802588,-0.16624933,-0.50137097,-0.4236308,0.03364493,-0.650408,-0.35488272,-0.2973598,0.25934163,-0.30813023,0.04353041,-0.15686522,0.33366325,-0.33878002,-0.00509653,0.20161664,-0.3210859,0.18868856,-0.57188314,-0.07087914,-0.1510127,0.3510214,0.04133301,-0.0088805305,0.35698524,0.22995673,0.4691422,0.23221998,-0.2631529,-0.240876,-0.39896035,0.050212022,0.38333055,-0.1285689,-0.15601276,-0.31266734,-0.089440435,0.3227001,0.37257275,0.1061461,0.0038185965,0.111559935,-0.36165848,-0.2670711,0.6546822,0.38792896,-0.38301015,-0.45233586,0.22909625,0.66378444,0.09133182,-0.4001358,-0.039834145,-0.054809228,-0.43871906,-0.2433265,0.019179128,-0.06870059,0.28930524,-0.11028186,0.040586695,0.81995326,-0.12017473,-0.06246516,0.06304395,0.0020893465,0.013208471,-0.36279276,-0.035386577,0.19875242,-0.6654896,-0.07601982,-0.31590018,0.69513035,-0.015928933,-0.60565275,0.4199967,-0.650191,0.1401638,-0.0020372719,0.5158985,0.42960504,0.5100679,0.11277837,0.69386894,-0.19113411,0.014791623,-0.100010686,-0.09803928,0.17875095,-0.3746415,0.1135203,-0.37395713,0.46668157,-0.15366602,0.3241864,-0.07638976,0.2900935,-0.5969122,-0.1411301,0.51980114,0.76549023,-0.2625362,-0.12449023,0.5790239,1.0699731,0.9747662,-0.16962965,1.3169609,0.05684047,-0.18727557,-0.026403138,0.07861039,-0.53774196,0.1523277,0.36388174,0.24149406,0.22701347,0.01572486,0.07125244,0.23167036,-0.27896217,-0.15801115,-0.08437743,0.3118715,0.12010724,-0.03087213,-0.45715427,-0.27114165,0.34070656,-0.09081764,0.2702903,0.17652409,-0.1777054,0.35188735,0.039243665,0.912615,-0.051661015,0.16359015,0.21554606,0.4764043,0.18296526,0.073049225,0.061210405,0.3965486,0.1504835,0.16421093,-0.54175013,0.3149965,-0.34029174,-0.43712243,-0.087118186,-0.5244098,-0.39653865,0.07831807,-0.25030854,-0.33530334,-0.21571581,-0.2926648,0.25713035,-2.9152424,-0.2948067,-0.20301203,0.21799631,-0.2219008,-0.065385886,-0.06076728,-0.46174464,0.3033811,0.38293815,0.4547052,-0.46743786,0.39165553,0.7919113,-0.5287412,-0.29000777,-0.50636226,-0.13344811,-0.06183639,0.6570244,0.13880892,-0.18355553,-0.3816376,0.19456935,0.7216597,0.1344564,0.298242,0.42198193,0.417956,-0.11770066,0.59549624,0.0037095894,0.56677145,-0.4784684,-0.113492765,0.39444816,-0.39110804,0.2960598,-0.32622382,0.022452572,0.50555414,-0.39284006,-0.82530683,-0.5563696,-0.3554192,1.1912012,-0.190399,-0.3562484,0.10709492,-0.24042736,-0.084911235,0.005629744,0.42166606,-0.03748088,0.27020338,-0.5562854,0.1552409,-0.10388418,0.2245388,-0.083569825,-0.07712337,-0.46852192,0.94524837,-0.037773278,0.51720715,0.1458777,0.1994756,-0.20805354,-0.20575555,-0.033469822,0.8218918,0.50002354,-0.07382298,-0.2250719,-0.27892622,-0.2524632,-0.20252614,0.0046981126,0.6419479,0.6323516,-0.06323714,0.16961806,0.36067513,-0.054353457,0.07087094,-0.13090485,-0.18351395,-0.20373571,0.10623461,0.44798508,0.72722775,-0.071743764,0.16163029,-0.0669887,0.3555907,-0.14439386,-0.5230646,0.32200432,0.31372732,-0.043673858,0.038194917,0.87657523,0.6356322,-0.4083345,0.48534563,-0.75651664,-0.39122653,0.70942384,-0.27329934,-0.48171556,0.020072797,-0.28281954,-0.09736198,-0.63435966,0.19840634,-0.45864725,-0.40778527,-0.30289972,-0.22586574,-3.2956512,0.34063396,-0.15837342,0.030140469,-0.51113623,-0.08739019,0.21797194,-0.5883518,-0.6494088,0.09207957,0.2472726,0.45961905,-0.13740472,0.08042974,-0.35896996,-0.3764533,0.05958885,0.3444368,-0.074074395,0.09330537,-0.34086296,-0.2681431,-0.028391758,-0.10031054,-0.38962594,0.1765574,-0.50255495,-0.36209598,0.030700123,-0.37393725,-0.17253838,0.641599,-0.39260614,-0.018409438,-0.30754474,0.09094892,-0.11253264,0.056509193,0.019546192,0.17172682,0.29096678,-0.14160888,-0.052444693,-0.44978067,0.6438544,-0.018247373,0.49349287,0.1576597,-0.1345702,-0.07730196,0.3281935,0.4744433,-0.14302045,1.0385004,0.082750574,0.04123644,0.49757507,-0.13237204,-0.43938938,-0.5660792,-0.06626731,0.02255108,-0.34296545,-0.44835648,0.21971373,-0.2155125,-0.8151464,0.7242592,-0.07242813,0.28245082,-0.24442701,0.33906934,0.23172761,-0.21577843,0.009232941,-0.16024478,-0.0958815,-0.5104349,-0.3956289,-0.75629044,-0.43849155,0.049847152,0.9838298,-0.4315841,0.076019876,0.08742174,-0.09109185,0.2402876,0.28691366,0.31342146,0.23839836,0.62546104,0.16135652,-0.6565669,0.53062516,-0.039079923,-0.18919308,-0.22416604,0.21471684,0.63344926,-0.72930217,0.3689866,0.51057225,-0.02101705,-0.019445807,-0.59856755,-0.011633324,-0.12216226,-0.22074513,0.4794909,0.07038782,-1.046513,0.5133619,0.07863464,-0.41416702,-0.8123161,0.34105828,-0.25127482,-0.10242259,-0.27261522,0.32120243,0.3382772,-0.05070745,0.15624194,0.14831017,-0.38681853,0.16210797,-0.07129576,-0.038364545,0.45265317,-0.07361826,-0.28582242,-0.66716814,0.040759664,-0.5766093,-0.3555212,0.3342564,-0.20566587,-0.1977082,0.46784958,0.06197242,0.44641376,-0.14159708,0.1732239,0.18881333,-0.4327036,0.3809979,0.38936362,0.42016473,-0.3787069,0.55892557,0.12357711,-0.08000908,0.063147545,-0.111130476,0.38764933,-0.16187616,0.4684296,-0.18472885,0.029867344,0.39019,0.73044604,0.21328676,0.27474615,0.061495874,-0.04230622,0.42766532,-0.14782281,0.03625823,-0.030112125,-0.65894026,0.07586237,-0.023645878,0.02918312,0.46341094,0.18764639,0.46113953,0.11633899,-0.032722984,0.06273954,0.18646318,-0.20003681,-0.9361987,-0.031193087,0.15240227,0.8824312,0.40677294,0.21367896,0.010207255,0.78131104,-0.29160175,-0.062656455,0.52683824,0.098101676,-0.24027729,0.81199217,-0.39570796,0.41647515,-0.32023677,-0.068896085,0.059547108,0.119149365,0.44222435,0.9216407,-0.19335563,-0.069972716,0.025971415,-0.14859004,0.07912898,-0.36371335,0.16248824,-0.22622813,-0.1284614,0.65662974,0.3043009,0.31379178,-0.33216542,-0.02834489,0.064343475,-0.16255379,0.23211135,-0.18096708,-0.08109378,0.022245735,-0.28149247,0.042183246,0.4912665,0.24554805,0.30132654,-0.20058638,-0.40229544,0.1532195,0.057892084,0.11176769,0.053769868,-0.58790326,0.19194539,-0.026333908,-0.6471284,0.6005459,-0.15670164,-0.075202264,0.34892967,-0.105475456,-0.015524119,0.10401984,0.11447116,0.49440444,-0.028107742,-0.067382075,-0.31670555,-0.10842493,0.06537081,-0.3533591,0.15358424,-0.3888924,0.28602627,-0.5937108,0.48526993,-0.21253853,-0.5366456,0.10029838,-0.25574502,-0.14572714,0.44220492,0.1891769,0.035333563,-0.026851118,-0.2065342,-0.22318156,-0.1593493,-0.19737077,0.1986345,-0.0018329421,-0.1487787,-0.20727472,-0.32898927,-0.08001151,0.33654535,-0.013577677,0.2916932,0.19605888,-0.11710695,-0.2801852,0.38067952,0.03271612,0.36233974,-0.02070733,0.056124583,-0.1302252,-0.28784496,-0.24954556,0.57130235,-0.07959921,0.025966525,0.17520912,-0.30880928,0.80335885,-0.18383169,1.0273099,0.014276721,-0.37082878,0.15961947,0.6782561,-0.059616398,0.12852459,-0.40007272,0.867443,0.53644735,-0.20751162,-0.20133577,-0.4493189,0.010960023,0.1637164,-0.42130122,-0.10526329,-0.12928171,-0.53188556,-0.33482042,0.18044071,0.24402583,0.21620707,-0.10552464,0.032432564,0.16871877,0.14469649,0.6259678,-0.60143566,-0.27985516,0.24382329,0.26049435,-0.2677118,0.16417153,-0.3493434,0.4089702,-0.77856207,0.23586214,-0.471737,-0.088295996,-0.49632147,-0.22450064,0.054071482,-0.13452335,0.28260913,-0.20958717,-0.43484473,0.01662516,0.16532008,0.05704552,0.23558338,0.5678134,-0.29871318,-0.071713895,0.017246911,0.49908185,1.0074017,-0.24629152,-0.18269612,0.16958404,-0.35502282,-0.6236436,0.26311827,-0.5787378,0.084724806,0.06145213,-0.42748252,-0.15624748,0.30024707,0.39168668,0.021708885,0.1571597,-0.60719305,-0.12607016,0.12612525,-0.27243173,-0.20670378,-0.08149194,0.16593117,0.7785129,-0.21243478,-0.2133165,-0.10329809,0.43564382,-0.31272903,-0.8406102,0.01650542,-0.35853466,0.5198391,0.13383222,-0.14301375,-0.07075108,0.13353355,-0.5722836,0.15834947,0.40469286,-0.32813928,-0.027890896,-0.3970313,0.25928047,0.7806256,0.014584293,-0.14502841,-0.3917532,-0.5009942,-0.8980794,-0.41265365,0.06363133,0.17257781,-0.09724533,-0.15777259,-0.10358065,-0.2352478,-0.22560513,0.17847352,-0.47004166,0.20897694,0.15961818,0.5120968,-0.2955936,-1.0507402,0.060581367,0.19626057,-0.00021928549,-0.5678937,0.46153346,-0.25863716,0.7062046,0.22008024,-0.26665887,-0.029691659,-0.35197803,0.29505172,-0.3856841,-0.08145597,-0.58784634,0.14979358 -269,0.66734296,-0.29792315,-0.68798035,-0.14355241,-0.2187432,0.010019444,-0.075561054,0.3545662,0.4115931,-0.52918607,-0.05889061,-0.05817233,0.23897314,-0.016560277,-0.17249556,-0.4231286,0.12078485,0.22894807,-0.41787472,0.6476387,-0.34694767,0.1027318,0.067005016,0.35439026,-0.13025856,0.19385822,-0.09461259,0.03439927,-0.1390263,-0.035164174,-0.08146825,0.36773777,-0.74821883,0.29741958,-0.14461733,-0.20211278,-0.1387301,-0.37595537,-0.28168514,-0.83567053,0.22476391,-0.9861868,0.5332412,0.31124985,-0.43515816,0.028868387,0.13865441,0.26770815,-0.2640263,-0.057630602,0.10657299,-0.21878265,-0.16375762,-0.21458225,-0.12651004,-0.46625447,-0.648013,-0.040197812,-0.5445681,0.07501483,-0.20979585,0.21950941,-0.17053936,-0.09006715,-0.22608262,0.7096944,-0.29398015,0.02181676,0.2992855,-0.2797159,0.6656906,-0.66910386,-0.092315875,-0.21917601,0.07552355,-0.16184811,-0.6011173,0.06225084,0.37859464,0.59761524,-0.052180443,-0.28757405,-0.4699615,0.11122503,0.11925904,0.20008735,-0.17099734,-0.62854594,-0.16632175,0.011915331,0.13628203,0.16377448,0.2871449,-0.5273009,-0.019702235,0.07841512,-0.24582845,0.5273883,0.5569535,-0.36089277,-0.19917025,0.26422724,0.87073827,0.08671749,-0.10967403,-0.14605872,0.05620562,-0.6512959,-0.12500389,0.38405347,-0.32161835,0.7491212,-0.17895806,-0.0028653939,0.5219222,-0.33652863,-0.31512454,0.44451022,0.12441218,-0.028962672,-0.5962758,-0.3102879,0.38466525,-0.5030734,-0.013348843,-0.37965968,0.615936,0.0464965,-0.7329109,0.2614093,-0.51626456,0.089566864,-0.1285815,0.53928584,0.77269816,0.6117272,0.2804939,0.90673494,-0.541317,-0.0758395,-0.22860259,-0.33453688,0.35198462,-0.23016918,0.12798396,-0.50565785,-0.070765935,-0.13236736,-0.3276324,0.0731749,0.38873097,-0.6394691,-0.21767287,0.3027301,0.5842908,-0.1835882,-0.31901547,0.5982565,1.1408211,1.0345635,0.2693995,1.3677925,0.072377905,-0.10130942,0.16259561,-0.00852409,-0.8105552,0.38332787,0.316087,0.12934652,0.33115005,0.16933538,0.056944888,0.4326638,-0.4328513,-0.0048488975,-0.21918242,0.43733826,0.051454965,-0.15899156,-0.3861123,-0.17423137,-0.059450123,0.17486525,-0.062956,0.19348331,-0.29552516,0.12543696,0.1608757,1.3178042,-0.2964275,-0.03604106,-0.019557891,0.32979414,0.3287594,-0.13216701,-0.005932192,0.47274947,0.16726579,0.46525493,-0.5124721,0.04726556,-0.2174509,-0.4042265,-0.13164856,-0.29171282,0.099486865,-0.10025511,-0.4424139,-0.18558311,-0.046494175,-0.3443817,0.589523,-2.6563642,-0.08104221,-0.029770022,0.32985404,-0.32623965,-0.45945033,-0.10384368,-0.48931065,0.263741,0.34927547,0.5428125,-0.7734892,0.344595,0.3751203,-0.64388084,-0.05275948,-0.8144881,-0.21560758,-0.1661811,0.28101072,0.3173936,-0.19604214,0.098141044,0.16787875,0.55372167,-0.023318449,0.010761117,0.2809126,0.16828275,-0.21541424,0.6051037,-0.023003886,0.51423043,-0.24794875,-0.28727704,0.3722882,-0.47970644,0.23107727,0.19269802,0.060058344,0.55488724,-0.33601752,-1.0215048,-0.99096555,-0.009124239,1.0229836,-0.22486454,-0.5377791,0.07426169,-0.6068871,-0.5115497,-0.059900954,0.40022424,0.07563177,0.07027815,-0.9682732,0.0006566371,-0.08215789,0.51399344,-0.007284593,-0.08943677,-0.51343614,0.85339755,0.010565554,0.5258826,0.50047857,0.21906845,-0.46146348,-0.37217972,-0.07314595,1.1837198,0.30747995,0.16669677,-0.32277367,-0.13857335,-0.39485207,0.30141228,0.12529017,0.6879634,0.53359216,-0.17556441,-0.006306452,0.31926748,-0.11943152,-0.05332172,-0.045575332,-0.4510169,-0.25474086,-0.017003788,0.5411184,0.97541,-0.30418783,0.29008597,-0.12203476,0.2861967,-0.041222636,-0.59438807,0.685517,1.0851401,-0.15808432,-0.4502301,0.73549956,0.46547988,-0.4380933,0.61839384,-0.635153,-0.35454345,0.20346981,-0.07728114,-0.36672768,0.19469096,-0.5030687,0.22481062,-0.8251691,0.41792837,-0.39789057,-0.2985265,-0.5835394,-0.18685041,-3.0305092,0.38915506,-0.086389065,-0.075017504,-0.19354261,-0.05493878,0.1699814,-0.7180353,-0.63746834,0.13158834,0.14667094,0.5085427,-0.18656397,-0.15784012,-0.18282723,-0.44812676,-0.075938806,0.2683725,0.12566088,0.17957373,0.02052194,-0.5040005,-0.076339774,-0.06259187,-0.28203186,0.0838485,-0.734422,-0.577863,-0.17660461,-0.6144324,-0.41489485,0.7306908,-0.3692809,0.022641147,-0.21872075,0.11733063,0.14875081,0.27985758,-0.067302234,0.26318082,0.026985893,-0.015214008,-0.07589888,-0.23443882,0.009709935,0.08536935,0.09265951,0.5342485,-0.22514008,0.264025,0.6821043,0.8275363,-0.25773147,0.84873223,0.64019233,-0.046134915,0.25966635,0.012523711,-0.34988773,-0.6383666,-0.16004176,-0.102003485,-0.65495086,-0.067104526,0.19072656,-0.3393533,-0.79549474,0.60223025,-0.0025944065,0.028199509,0.165218,0.60720056,0.63520354,-0.45075926,0.036484342,-0.0036924034,-0.30185804,-0.53456247,-0.421427,-0.46947336,-0.27902135,0.0660558,1.0404825,-0.22721612,0.124214835,0.29270878,0.12827753,0.1742597,0.2618916,-0.046709526,0.057893377,0.65699416,0.067697145,-0.42868063,0.36454523,-0.17841537,-0.18090926,-0.5017765,0.5412416,0.54578876,-0.66149193,0.67217714,0.38113102,-0.021355035,-0.2753801,-0.6158766,-0.22914724,0.05687407,-0.18488626,0.5458135,0.38868967,-0.9212523,0.20679253,0.25387743,-0.22274087,-0.5867359,0.566575,-0.18774669,-0.4211378,-0.4552435,0.43302557,0.060893435,0.22579814,-0.24154234,0.14744236,-0.49485275,0.01516745,0.32304177,-0.03196935,0.22083814,-0.09514129,-0.069569714,-0.87457013,-0.011133577,-0.5949153,-0.37392488,0.5181847,0.040606398,0.117507644,0.18588586,0.1839183,0.4024117,-0.37512675,0.12167245,-0.10582922,-0.25825024,0.57509667,0.5093465,0.57964855,-0.5562583,0.49531397,-0.013941172,-0.03998199,-0.31131104,0.004541099,0.5216959,0.025058405,0.46844077,-0.0020578105,-0.038326126,0.33248857,0.70142823,0.08099394,0.39042425,0.03300979,0.04425313,0.14459261,0.06925821,0.34382543,-0.14712408,-0.62057847,0.2612917,-0.39336303,0.13386126,0.3524394,0.018954262,0.23007576,-0.034227256,-0.30548155,-0.1308678,0.33424306,0.08113403,-1.4853948,0.29372895,0.30965933,0.7840226,0.6283272,0.10109365,0.02907625,0.65697515,-0.17083369,0.19020343,0.2984614,-0.07558683,-0.30127493,0.550149,-0.8221505,0.46326497,-0.14303546,-0.001719296,-0.101212464,-0.26923436,0.41958317,1.0050378,-0.29193893,0.13109067,-0.116395004,-0.1401561,0.17112036,-0.5521973,0.12008426,-0.6090221,-0.48964572,0.7149417,0.46075293,0.7572022,-0.26754656,-0.09614595,0.16483861,-0.10294505,0.24305458,-0.19080837,0.036368325,0.18242204,-0.6753531,0.10613936,0.51607925,0.06298938,0.11894404,-0.12572816,-0.124822944,0.19251406,-0.014561787,-0.14170301,-0.11135521,-0.7026894,-0.17926876,-0.35148337,-0.34723726,0.73032445,-0.2348602,-0.010725384,0.14738162,0.060123812,-0.27534142,0.4781634,0.29867157,0.77288324,0.23393331,0.046403587,-0.546002,0.3483559,-0.011566904,-0.09610861,0.027491877,-0.288999,0.17254792,-0.5881818,0.36486563,-0.15626703,-0.58751196,0.0037041008,-0.031902496,0.19057679,0.65596443,-0.33317468,-0.42380178,-0.04892453,-0.19807325,-0.14755072,-0.1463827,-0.0013711428,0.33030188,0.06402423,0.026497401,-0.0980958,-0.15113294,-0.07606316,0.1802603,0.1774354,0.30163956,0.38815752,0.17702867,-0.4421327,0.13633005,0.1510207,0.6665346,-0.13532926,-0.20633669,-0.19668019,-0.37478605,-0.4753085,0.030492002,0.05875137,0.3132674,0.19574372,-0.15825723,1.0160861,0.05948494,1.4823428,-0.076220416,-0.3486645,-0.026894122,0.584278,-0.083589695,-0.026604056,-0.41922235,0.9839938,0.4486018,-0.20800997,-0.088534735,-0.48209152,-0.036704708,0.00788791,-0.15461524,0.12353476,-0.04483221,-0.7632163,-0.21738863,0.23945688,0.44408986,0.2659666,-0.13177209,0.1381832,0.33923134,-0.053546607,0.21529157,-0.45004225,0.10535377,0.19940609,0.42046392,0.022305219,0.12500823,-0.39931628,0.2995235,-0.56072,0.019414088,-0.2550329,0.11204943,-0.15658249,-0.2796334,0.2923046,-0.032877166,0.36396965,-0.48175207,-0.4186318,-0.17860979,0.5595281,0.24431546,0.09244258,0.8134992,-0.05849569,-0.06463169,0.09310884,0.51225895,1.0574998,-0.3921859,-0.060659643,0.28704345,-0.4453626,-0.73160815,0.2973673,-0.38362575,0.28259596,-0.010315935,-0.35669217,-0.5539411,0.17267872,0.19181556,-0.0411488,0.044706147,-0.6707017,0.041899323,0.21916099,-0.45417896,-0.03231789,-0.07327784,0.23515171,0.48237845,-0.16280304,-0.41297355,0.11058404,0.2888716,-0.06623327,-0.48813525,-0.23103024,-0.40290782,0.22495122,0.117506824,-0.4621748,-0.05718595,0.10681168,-0.66702765,-0.013070817,0.16523373,-0.20317914,0.26078248,-0.43660906,-0.14579095,0.8498602,-0.0386619,0.2590142,-0.39977947,-0.52372724,-0.85204935,-0.04613437,0.18146504,-0.10327328,0.020960242,-0.7326698,-0.08946928,-0.15858632,-0.104869045,-0.123468876,-0.30943432,0.71756434,0.13760161,0.39480445,-0.1511582,-0.9160586,0.20915298,0.18701184,0.13428394,-0.66211545,0.4255601,0.04086053,0.8423147,0.03260571,0.22764201,0.48231032,-0.7303602,0.05010371,-0.2483811,-0.10938952,-0.6844538,-0.0938208 -270,0.45384988,-0.09524033,-0.40732893,-0.21025448,-0.3141072,0.18412444,-0.050376322,0.20807791,0.23221757,-0.14279862,0.16040035,0.0783851,-0.07177692,0.50051534,-0.21385384,-0.9783025,-0.07474349,-0.063900456,-0.6333643,0.5651518,-0.44270688,0.4032641,-0.050284717,0.2968523,-0.0015423639,0.24083956,0.23884413,0.10812045,-0.10240158,0.12722501,-0.120169275,0.45587644,-0.36408028,0.38608843,0.15799597,-0.21159384,-0.057094313,-0.31657067,-0.10976909,-0.59639835,0.35248095,-0.45983166,0.41684547,-0.14459203,-0.35732526,0.11290743,0.19340947,0.13126275,-0.39975378,0.0009589876,0.14368545,-0.04622346,-0.054822154,0.19484065,-0.20603706,-0.5287585,-0.5974244,-0.093326375,-0.8084968,-0.13637035,-0.106141165,0.18713069,-0.39653024,-0.09343224,-0.13514192,0.6985274,-0.35030344,-0.15002167,0.45487195,-0.19792579,-0.053296693,-0.54693,-0.11423685,0.019707704,0.3222768,0.13660261,-0.14029115,0.4463431,0.30138597,0.41540787,0.071334824,-0.42031017,-0.2209892,-0.17644528,0.046204835,0.45922112,-0.072826214,-0.2471553,-0.22935595,-0.043466214,0.16543616,0.147662,0.07740207,-0.15523736,-0.07552428,-0.017179051,-0.0016736047,0.26368335,0.3247342,-0.3874409,-0.33619326,0.6157457,0.33833668,0.07557799,-0.22322676,0.20025918,-0.11835663,-0.47417757,-0.15718831,0.08145722,-0.007902359,0.23652472,-0.11430577,0.3004275,0.70621043,-0.0800179,0.0957446,-0.1374064,-0.1588621,-0.053742476,-0.33842587,-0.02913847,0.06978865,-0.34366402,-0.045720737,-0.10291972,0.73871857,0.24267352,-0.7365925,0.33562732,-0.3663352,0.10976154,-0.090667605,0.56201226,0.8268512,0.25527954,0.11480234,1.0146823,-0.42557058,-0.024495427,0.10107032,-0.18244742,-0.037381154,-0.035591614,0.38659468,-0.6668652,0.106468186,0.18341026,0.052267723,0.11307082,0.30935138,-0.3748463,-0.33359507,0.020072877,0.5140515,-0.30013213,-0.23245999,0.6642481,1.1587225,1.0096279,-0.025920404,1.013384,0.3481972,-0.14867525,0.052624844,-0.40672487,-0.47506598,0.13013095,0.44086242,0.2538574,0.5226478,0.039343722,-0.06536027,0.57047075,-0.15968452,-0.062009756,0.16279475,0.43797508,0.06142824,-0.2564674,-0.4436925,-0.15716743,0.25234428,-0.099941574,-0.00010420169,0.37821272,-0.21480457,0.4731334,-0.007931194,1.3552004,0.06886153,0.120911755,0.022827348,0.3398795,0.31383696,-0.28639373,0.026786039,0.29749313,0.35541162,-0.15411659,-0.48649994,0.12400267,-0.48841748,-0.47391796,-0.18659557,-0.44166782,-0.16670778,-0.10601066,-0.32305828,-0.099069096,0.0844565,-0.3430731,0.33776632,-3.0528543,-0.15294676,-0.16431154,0.26113138,-0.2651865,-0.18195312,-0.31975406,-0.42180008,0.28126153,0.45666274,0.25447246,-0.46191263,0.2817918,0.3162849,-0.39310017,0.049495168,-0.56703,0.032857664,0.02332282,0.26477566,-0.15663385,-0.050194036,-0.06704243,0.41769236,0.5312585,0.26220387,-0.080114074,0.18211225,0.32019517,-0.07572172,0.37700084,-0.0582995,0.57426184,-0.33342934,-0.014660982,0.43646336,-0.622971,0.42939976,-0.11627383,0.11964867,0.51060224,-0.30331174,-0.9076108,-0.38018623,-0.3507257,1.1581553,-0.5038509,-0.31775257,0.2982478,0.009777402,-0.032328617,0.16479869,0.37960148,-0.024993857,-0.04248945,-0.55774814,0.17724808,-0.094121076,0.024236139,-0.22476503,0.11763295,-0.45527357,0.49039274,-0.07948039,0.75931776,0.24380262,0.1893679,-0.1383919,-0.40334982,0.020925717,0.6766391,0.46105188,-0.024758318,-0.06109696,-0.049315657,-0.14214537,-0.2659121,0.13515913,0.5987855,0.6191048,0.008692869,0.15597306,0.22538118,-0.12997985,0.16017246,-0.008594645,-0.25976652,-0.08730652,0.16702816,0.457126,0.45796332,-0.2714389,0.40236238,-0.026299877,0.060413957,-0.115748756,-0.54172486,0.55871385,0.5975198,-0.23077215,-0.22624995,0.5111379,0.34358692,-0.24956392,0.3976784,-0.49788687,-0.30221015,0.6283165,-0.17703809,-0.3018407,-0.06421724,-0.26600662,-0.047225337,-0.80097336,0.07938332,-0.14039771,-0.5646426,-0.48687235,-0.24510968,-3.121357,-0.049203437,-0.11667514,0.007247075,-0.033992775,-0.03972096,0.1838998,-0.60043275,-0.583346,0.09640265,0.016274137,0.4811661,-0.09478011,0.07231665,-0.21927723,-0.2454926,-0.25829285,0.39115748,-0.04973331,0.33756706,0.16040711,-0.32467422,0.13105968,-0.03562955,-0.55099404,0.020641038,-0.44461316,-0.38802928,-0.048493464,-0.55445236,-0.008713946,0.71349496,-0.26840204,-0.11460099,-0.19513153,0.026655162,-0.14469719,0.24042836,0.17412548,0.27606696,0.07052217,-0.087174736,-0.15231584,-0.37820646,0.3015607,0.12430916,0.4538321,0.5539041,-0.020125683,0.25081435,0.72511375,0.4977155,0.10913236,0.67852086,0.061002553,-0.07570924,0.33854774,-0.35227537,0.018204616,-0.59049845,-0.43066338,-0.15313594,-0.45349145,-0.49255317,-0.261882,-0.42316088,-0.76870805,0.2950196,0.08067303,0.4676194,-0.3790558,0.28460434,0.30923966,-0.21886875,0.07674428,0.010871353,-0.23452584,-0.47454193,-0.38645408,-0.56543565,-0.5540651,0.35337752,1.0189527,-0.4204297,-0.17414631,-0.1718287,-0.31921658,-0.010004108,-0.014531353,0.38954735,0.13697326,0.16513704,0.06782337,-0.7446865,0.42030635,-0.42390585,0.1471453,-0.47900102,0.097790755,0.43879256,-0.43756294,0.56945574,0.17475282,0.22712764,0.12256818,-0.7588315,-0.13147385,0.19371466,-0.018415943,0.47894096,0.27757725,-0.5919338,0.486204,-0.011885123,-0.27427387,-0.5754201,0.38054007,0.060792368,-0.11902827,0.08825853,0.3620037,0.24183919,-0.1443067,-0.034198675,0.26823366,-0.61524713,0.39386144,0.16522308,0.065835975,0.5064687,0.009195398,-0.36379388,-0.46011993,-0.22950779,-0.5346445,-0.17142607,-0.016074581,0.035436977,0.17618386,0.10703725,0.0072663897,0.40704253,-0.30509424,0.22055614,-0.007347954,-0.33774614,0.4819103,0.5055743,0.37311012,-0.5489672,0.47002846,0.1601454,0.08052798,-0.01608239,-0.009620867,0.49586496,0.24696371,0.28952032,-0.17131232,-0.09432394,0.16491,0.64497524,0.080554925,0.14382505,-0.075052485,-0.37406555,0.1669266,0.0704739,0.044603836,-0.03289927,-0.31838742,-0.17849329,0.0071497518,0.14937592,0.41533026,0.19701445,0.25365806,0.06408072,-0.0783517,0.254838,0.08664439,-0.13752861,-0.92799705,0.44301254,0.19263114,0.7419315,0.48725647,0.0006380166,-0.089822486,0.39110282,-0.23895948,0.06725926,0.57469016,-0.32502335,-0.37759215,0.6472431,-0.36975506,0.6463731,-0.16666497,0.05803191,0.13862629,0.2959144,0.3268686,0.8861903,-0.094362155,-0.046670295,-0.018831534,-0.29871488,0.08058386,-0.22998418,0.04862109,-0.52938694,-0.2612485,0.528802,0.37975615,0.2593473,-0.20711033,-0.071941994,0.05308191,-0.27819052,-0.009158313,-0.19605131,-0.10896749,-0.25706786,-0.47779825,-0.45269352,0.49216798,-0.11380552,0.012347422,0.02472507,-0.27637535,0.21265456,-0.034916546,-0.0011343871,0.03304064,-0.68972826,-0.010023334,-0.27562305,-0.5304548,0.41647345,-0.47635296,0.222532,0.19566886,0.008613052,-0.3149208,0.22037268,0.025501218,0.72965676,-0.16158569,-0.2817021,-0.34219572,-0.074515276,0.16621868,-0.3433601,-0.049643468,-0.26082715,0.21194315,-0.46271196,0.5712308,-0.16769716,-0.19689102,-0.13523029,-0.27826047,0.02743409,0.3926303,-0.333508,0.0647496,-0.11664192,-0.06321566,-0.39285082,0.02326909,-0.39702627,0.3117668,-0.019209398,0.024471572,-0.016456153,-0.14975594,0.0016194582,0.16259968,0.07717316,0.04975454,0.24688137,-0.1475563,-0.36882442,0.120040104,0.19018818,0.39243054,0.19270542,0.059810523,-0.3768027,-0.2176578,-0.41617733,0.4259772,-0.25446907,0.20398414,-0.072225094,-0.45073608,0.6362575,0.124637075,1.1477611,-0.005553407,-0.26136163,-0.08468808,0.53459424,0.11416155,0.05499115,-0.20949437,0.95041275,0.62751716,-0.013506219,-0.1178626,-0.4677003,-0.120491095,0.3739079,-0.25592557,-0.20615828,-0.10156398,-0.6493563,-0.17348978,0.104201555,-0.058129538,0.19217263,-0.15354478,-0.24331091,0.020433733,0.34214646,0.36973193,-0.66792554,-0.0902965,0.27500662,0.15011522,0.04822536,0.2812464,-0.4168845,0.3356708,-0.90571386,0.35314772,-0.21836582,0.15662302,-0.24722998,-0.19639175,0.23738466,0.09119594,0.29400992,-0.05965709,-0.3780295,-0.027016087,0.5943031,0.33380884,0.15003355,0.7895232,-0.17591393,-0.088591084,0.1954813,0.6101197,1.259014,0.065414205,-0.07245908,0.15014389,-0.26587024,-0.905564,-0.0012103915,-0.42543712,0.0076610106,-0.20445634,-0.28254622,-0.4406808,0.123706244,0.13434806,0.01964331,0.18186514,-0.44167492,-0.23690076,0.1181832,-0.38049632,-0.2718307,-0.37883678,-0.09994737,0.76254547,-0.4199663,-0.19058558,0.09588815,0.28001183,-0.15005982,-0.69421864,0.19557926,-0.22320363,0.38977104,0.22119477,-0.31541237,-0.18482132,0.20032085,-0.45188966,0.27675417,0.38225105,-0.32760304,-0.0039116316,-0.1920022,-0.19103572,0.9368109,0.08517303,0.2218179,-0.6535165,-0.31244588,-0.79541034,-0.36412832,0.10194767,-0.06349365,-0.14478822,-0.4904177,-0.11282977,-0.12181492,0.10558864,-0.022505283,-0.3937084,0.26123902,0.08612023,0.3051655,-0.00011727427,-0.86005414,-0.055761497,0.028440455,-0.05650461,-0.34175095,0.5013782,-0.2133816,0.7480096,0.052652802,-0.085524954,0.1455786,-0.5187269,0.37122473,-0.32090217,-0.056770317,-0.4081131,0.20097198 -271,0.24579717,-0.14658682,-0.46320915,-0.095869824,-0.19628394,0.28422418,-0.031334113,0.55604786,0.20471337,-0.27470914,-0.1219757,0.09348547,-0.005707774,0.30103305,-0.17132306,-0.45468208,-0.052514877,0.14175943,-0.35773233,0.51481277,-0.2860472,0.37658224,-0.28460333,0.36884913,0.08243155,0.35068774,-0.0122299045,-0.040080722,-0.2781281,-0.24511719,-0.048821963,0.46402764,-0.4459595,0.29355332,-0.15607123,-0.2706973,0.05517083,-0.41586837,-0.40574735,-0.55521816,0.17792149,-0.61595637,0.4863588,-0.117133565,-0.18953378,0.5627405,0.102636226,0.13654377,-0.06094211,-0.18506654,0.045834262,-0.1171455,-0.13854882,-0.2956188,-0.25372288,-0.45559496,-0.5010063,0.0633967,-0.33820596,-0.21672685,-0.26193187,0.10708259,-0.32113343,-0.071110494,0.01688941,0.39636064,-0.42274645,0.16188443,0.058205187,-0.18744394,-0.137188,-0.5087637,-0.11030424,-0.05345383,0.24034132,-0.22456264,-0.016160654,0.2762412,0.14268295,0.34905553,-0.114629254,-0.17481408,-0.41638115,-0.18097599,0.109355845,0.55565685,-0.18576707,-0.44979137,-0.026171466,0.06278635,0.1424396,-0.02694577,0.13522479,0.060705964,-0.13666402,-0.030961914,-0.2585296,0.41712552,0.3668533,-0.4322422,-0.4169538,0.37846997,0.46857008,0.1722987,-0.22107589,-0.23591474,-0.044277605,-0.36859372,-0.18401709,-0.13819724,-0.16782995,0.33234784,-0.1447758,0.21275184,0.5229411,-0.21017572,0.0031261656,0.19384238,0.10966523,0.052959908,-0.087496184,-0.26288727,0.124181986,-0.29266733,0.12284434,-0.09979606,0.7591276,0.09722564,-0.54775345,0.4070244,-0.5064131,-0.030261619,-0.10410516,0.39762634,0.44949132,0.51832396,0.2788191,0.43802518,-0.17803974,0.10754539,-0.01848546,-0.31068897,-0.0059344852,-0.25551125,-0.08098738,-0.53565174,0.22288518,0.14976086,-0.017242905,0.14808138,0.26937565,-0.46124104,-0.1502124,0.2723415,0.8870734,-0.2710986,-0.27809185,0.60856014,0.98285323,0.7662825,-0.066434726,1.0025299,0.20812218,-0.22934376,0.114959314,-0.36434636,-0.6295307,0.23436359,0.32031527,-0.49750784,0.36526474,0.17705749,0.103461996,0.21244773,-0.20944871,-0.08066644,-0.19957212,0.17581709,0.26668796,-0.030300502,-0.44215414,-0.3355174,0.07557922,-0.052565802,0.3546771,0.3081307,-0.21495579,0.4115884,-0.0001235434,1.537015,0.08198945,0.049806774,-0.058203876,0.53914815,0.20885542,-0.024420831,-0.064606175,0.36057577,0.22147356,0.0002562276,-0.43973675,0.2645371,-0.16003425,-0.5441952,-0.17019452,-0.40239355,-0.17656788,0.1720084,-0.3079838,-0.12851831,-0.13207066,-0.12289996,0.37047714,-2.8027496,-0.09653532,-0.026376162,0.24673355,-0.2303691,-0.38261768,-0.09528696,-0.3790225,0.2557184,0.29933795,0.48156747,-0.49326906,0.3975615,0.3542773,-0.5312627,-0.22909772,-0.4166904,-0.05683083,-0.04680422,0.43060806,-0.021211224,0.019717712,0.055398952,0.122186996,0.44203326,-0.05890003,0.13416657,0.31460875,0.391654,0.012364136,0.30576953,-0.043960176,0.66162825,-0.22269814,-0.21873166,0.3485845,-0.26374298,0.410857,-0.07076987,0.13329308,0.28478193,-0.26343295,-0.8693676,-0.55737954,-0.026903927,1.3877697,-0.09695341,-0.34418747,0.090235345,-0.45395142,-0.3899776,-0.042861056,0.25983384,-0.19748743,-0.23298843,-0.6486152,0.1627628,-0.069219254,0.13670886,-0.008322247,0.07726274,-0.3555889,0.6015534,-0.035191108,0.45910946,0.12006621,0.18920313,-0.23267166,-0.32805333,-0.021863341,0.7382879,0.34149885,0.103470884,-0.2334194,-0.28210834,-0.20723204,-0.033768144,0.05412901,0.5068597,0.4161058,0.03834201,0.019121375,0.110568285,-0.06437623,0.11222686,-0.22220562,-0.13004728,-0.11424066,0.08664663,0.5521002,0.3943545,-0.22948778,0.49332318,-0.04355996,0.2616761,-0.094743095,-0.36698034,0.3865945,1.0250765,-0.28187162,-0.27608365,0.6585912,0.47950724,-0.29621342,0.27937478,-0.5624481,-0.25968742,0.34323815,-0.2809913,-0.35045582,0.0995925,-0.18747246,0.115661755,-0.9109708,0.22095035,-0.18291971,-0.5264912,-0.52046204,-0.027510703,-3.487447,0.0641934,-0.07157832,-0.18864462,-0.1506588,-0.121852465,0.14258786,-0.60019165,-0.49461618,0.116862066,0.10733471,0.6162811,0.012386901,0.06785528,-0.18170404,-0.39857313,-0.31071255,0.16625921,0.006735146,0.3681291,-0.1075755,-0.48089296,0.012978946,-0.11862743,-0.34932277,0.07381531,-0.5967805,-0.35231924,-0.109263115,-0.5098304,-0.13885686,0.6277482,-0.4311503,-0.020700762,-0.29612812,0.09372682,-0.13610572,0.25366277,-0.017020078,0.078081794,0.21672145,-0.10185406,0.21690424,-0.36012834,0.449059,0.01034918,0.48214895,0.37770694,0.013149304,0.08339034,0.57073647,0.5735253,-0.0006517257,0.7132844,0.38530254,-0.15216693,0.3424572,-0.2449801,-0.28309315,-0.40638906,-0.2928389,0.067317374,-0.276501,-0.41217354,-0.12550585,-0.27165475,-0.8127719,0.53089964,0.00082350627,0.00710898,-0.055061765,0.37146038,0.58104557,-0.11893481,0.119037114,0.0067544603,-0.15519355,-0.52116835,-0.3310761,-0.49619594,-0.31591293,0.102835886,0.95900124,-0.27931514,0.09912995,-0.11288273,-0.19547936,-0.03481598,0.0986549,0.1471566,0.18184707,0.45712143,-0.16422768,-0.5366158,0.37921348,-0.2024831,-0.118541256,-0.4479975,0.10014941,0.48917097,-0.6122666,0.48836845,0.38079858,0.0012607767,0.056075595,-0.3637388,-0.15946753,-0.06471344,-0.1724812,0.22814922,0.28365758,-0.8441334,0.422972,0.23959598,-0.36625177,-0.65010786,0.4538257,-0.09617933,-0.21882303,-0.15377326,0.2679288,0.31005198,0.012659497,-0.14219753,0.15957175,-0.31064728,0.21512787,-0.04073899,-0.009518428,0.29361334,-0.2022675,-0.06743635,-0.687784,0.05422934,-0.38388592,-0.4120688,0.18425317,0.11487909,0.12111634,0.2298709,-0.010700247,0.3044336,-0.48061687,0.058933564,0.03850493,-0.3535253,0.32897156,0.26467726,0.52510685,-0.39161506,0.42802456,-0.017369937,0.057210702,0.17094283,-0.0033393076,0.51697934,0.06903335,0.2922973,0.20811228,-0.22107546,0.14135759,0.8233029,0.20213996,0.40880147,-0.0014775736,-0.18572651,0.26917377,-0.027125362,0.0427442,0.02333327,-0.47656354,-0.053136587,-0.23233652,0.06943976,0.54086405,0.19615872,0.2996536,-0.13130738,-0.28969055,0.14401896,0.06637522,0.12871048,-0.9229373,0.3668565,0.11493269,0.80349874,0.21469013,0.12928748,0.12645216,0.6747362,-0.17052257,0.13489847,0.35718462,-0.026596291,-0.5741334,0.44585842,-0.5682912,0.47147846,-0.014554105,-0.11627442,0.09855523,-0.14647785,0.38616768,0.7765598,-0.24357268,0.023722364,0.2132919,-0.3660105,-0.0028851798,-0.29023027,0.074465975,-0.57191604,-0.10242955,0.57387716,0.46529818,0.3700088,-0.22303107,0.11102333,0.03021649,-0.024675308,-0.018745555,0.052700125,0.12666616,0.04563401,-0.5593737,-0.092334926,0.53922486,0.14808369,0.1557937,-0.03329299,-0.22898553,0.27576062,-0.17113303,-0.15735976,-0.062191702,-0.5225665,0.14149395,-0.0963722,-0.58325356,0.4883177,-0.021452565,0.17585795,0.1168062,0.058078256,-0.28027773,0.36355087,0.15779673,0.63589233,-0.022984222,-0.112879105,-0.3951528,0.079233214,0.044577207,-0.15630631,-0.030135155,-0.29016978,0.065524824,-0.3474719,0.25078517,-0.20724384,-0.33139747,-0.081077136,-0.15158269,0.12783477,0.3839094,0.022058044,0.032920934,-0.12738745,-0.12058357,-0.27277046,-0.2153383,-0.10530512,0.30298042,0.17949489,-0.2953723,-0.232625,-0.24993229,-0.1580257,0.37951928,-0.08695657,0.34749055,0.3834121,0.1370782,-0.19924174,-0.17253372,0.13588543,0.39620194,-0.23088877,-0.04903147,-0.353637,-0.22929862,-0.17392111,0.31922075,-0.18619598,0.14592783,0.16307159,-0.36588544,0.6349682,-0.12721159,0.97131115,0.019159148,-0.29367188,0.1844462,0.4498817,0.09479026,0.06076691,-0.38710663,0.8819863,0.3784526,0.07879947,-0.18614085,-0.43128482,0.02545762,0.1044303,-0.17143796,-0.16110186,-0.071790285,-0.55717075,-0.24436042,0.30152726,0.22734472,0.17814258,0.0023725785,0.20052862,0.12313751,0.104991876,0.3930857,-0.3817862,-0.22103834,0.29511175,0.25327414,-0.083580635,0.2490829,-0.44422117,0.2813469,-0.511612,0.07986663,-0.22797914,0.08812172,-0.25828207,-0.1990029,0.12906666,0.1051021,0.3348128,-0.19633843,-0.37279233,-0.24973209,0.30206487,0.022964586,0.061304577,0.304701,-0.20876524,0.12207001,0.042703208,0.4700172,0.7422163,-0.104615055,0.0653829,0.27314308,-0.23483784,-0.4768483,0.20890555,-0.2691246,0.25996447,-0.011342345,-0.10054456,-0.486456,0.3140974,0.2815628,0.0898362,0.0003995065,-0.39222386,-0.13470836,0.14577372,-0.33668548,-0.1437823,-0.19509114,0.058077477,0.70629585,-0.23646148,-0.17156975,0.034491163,0.35723358,-0.07644645,-0.40265962,-0.01110581,-0.35532552,0.31089434,-0.03979724,-0.33166978,-0.24926415,-0.032557864,-0.38488477,0.24540417,0.39607117,-0.3679144,-0.05684621,-0.26115406,0.12297462,0.81261337,-0.1379319,0.22947869,-0.45625407,-0.45050806,-0.84149116,-0.44502264,0.33448496,0.15585314,-0.14611678,-0.48308197,0.107813634,-0.031394154,-0.4613754,-0.1113679,-0.4436831,0.3428307,0.0602862,0.22947672,-0.105436936,-0.8932409,0.06638295,-0.032198958,-0.22358002,-0.4989309,0.37096277,-0.16574033,0.956117,0.081065096,0.05331933,0.14816426,-0.29201943,-0.03807681,-0.23482838,-0.11607174,-0.55415195,0.17140903 -272,0.42148414,-0.076404944,-0.4031541,-0.06551619,-0.23945116,-0.06683946,-0.076744124,0.60178894,0.22420996,-0.45301265,-0.116609745,-0.088415496,-0.13730279,0.2038467,-0.14941703,-0.36412433,0.22635871,0.16061227,-0.34099585,0.66273755,-0.4511669,0.37654716,0.059336003,0.29368,0.23623523,0.12888367,-0.008519879,0.11491615,-0.04474819,-0.39075089,-0.1943238,0.30896604,-0.52132356,0.33443117,-0.2476781,-0.5068136,-0.09696691,-0.47559085,-0.14593045,-0.767326,-0.012662475,-0.64236295,0.58611494,0.17821115,-0.33893225,0.07668761,0.20697124,0.16711156,-0.12940086,-0.035413817,0.0810754,-0.07835682,-0.08816617,-0.2524434,-0.06890099,-0.26197997,-0.6203356,0.049711384,-0.4651655,0.0021853447,-0.38139433,0.123504676,-0.34124076,-0.12650733,-0.09943554,0.48264027,-0.3806591,0.019913765,0.02330028,-0.23466237,0.2145589,-0.59615433,-0.057360455,-0.28374702,0.060059097,-0.22323667,-0.35481498,0.3172758,0.36258242,0.5058798,0.10218699,-0.20411858,-0.32625535,-0.119232304,0.013163447,0.40416014,-0.13838969,-0.53835905,-0.13596094,-0.113509536,0.30606925,0.20452884,0.256311,-0.1303655,-0.12380346,-0.009042378,-0.36151412,0.24951905,0.43501168,-0.45245692,-0.27216223,0.31329912,0.5056813,0.092562206,-0.12512971,0.075442,0.030867733,-0.5178921,-0.3009249,-0.093932465,-0.22341846,0.47825608,-0.22268051,0.2165537,0.60138416,-0.16118166,-0.052979715,0.2856249,0.16178179,-0.042995527,-0.40511608,-0.30891997,0.30060914,-0.6203597,0.1577074,-0.15146434,0.7897981,0.05763781,-0.80533767,0.2676791,-0.61459553,0.04714579,-0.03828831,0.4875188,0.630935,0.5151296,0.40078416,0.59361243,-0.3155104,-0.08952929,-0.26668602,-0.19661811,0.041947797,-0.17787226,-0.053956058,-0.43905193,-0.05273241,0.05975072,-0.09318013,0.15464845,0.60503095,-0.50742096,-0.1481645,0.2876865,0.5318873,-0.31683886,-0.14129587,0.7644979,1.0164064,1.04515,0.022057258,1.0646174,-0.003102972,-0.09053353,0.1410127,-0.085989274,-0.5288691,0.2129058,0.3480194,-0.22189723,0.1628736,0.13115194,0.06457686,0.33167845,-0.3229316,0.025990317,-0.03523055,0.17808525,-0.048746154,-0.2191334,-0.39067957,-0.49092534,-0.13506004,0.13254626,-0.06909853,0.37086588,-0.18944247,0.2953419,0.14477171,1.5234852,-0.0945251,0.0935585,0.10296957,0.5033897,0.2715458,-0.22055103,-0.06780012,0.25854543,0.16714028,0.17039111,-0.46568683,-0.0006757791,-0.097487524,-0.56689626,-0.17285186,-0.3284937,-0.15751457,-0.17981383,-0.43025643,-0.2623939,-0.14824107,-0.4708279,0.5283286,-2.6124842,-0.24446979,-0.014215559,0.3296344,-0.22136602,-0.52538496,-0.1629731,-0.38576004,0.42991924,0.18551174,0.50673574,-0.6662168,0.46648118,0.60940975,-0.5801367,-0.23717,-0.58405066,-0.129403,-0.067530885,0.21670991,0.055257943,-0.17300175,0.0036066954,0.07356303,0.68371403,-0.06723995,0.23757014,0.3378326,0.24307063,-0.14407101,0.5269074,-0.025693692,0.5260905,-0.27180177,-0.2832418,0.32011223,-0.4031629,0.25226864,-0.0930357,0.03327091,0.4676062,-0.57233745,-0.9920308,-0.6968208,-0.22511172,1.162732,-0.22056805,-0.30302683,0.28274363,-0.38935786,-0.33412635,-0.0681789,0.55704063,-0.0907947,0.030319352,-0.6257334,0.06888847,-0.1375292,0.19579762,-0.0077340933,-0.059069753,-0.5503341,0.8023259,-0.005827849,0.6042362,0.3007965,0.1338058,-0.61637247,-0.40352264,-0.014881547,1.2327157,0.47346812,0.21567108,-0.25623372,-0.21188071,-0.54796803,-0.023230039,0.18808328,0.5377646,0.6565557,-0.11744415,0.15734753,0.33369583,0.090666756,0.03411854,-0.14904208,-0.26303595,-0.10074114,0.26429752,0.66990155,0.5921736,-0.121807024,0.3404735,-0.053200927,0.24527581,-0.3064651,-0.5645004,0.41265073,1.0490806,-0.12924841,-0.17771414,0.8515917,0.56899637,-0.07060128,0.49884275,-0.51452416,-0.45982215,0.30488414,-0.10577244,-0.29303277,0.1790969,-0.38088834,0.029024573,-0.83525634,0.2188905,-0.373043,-0.61050075,-0.4429499,-0.057714507,-3.1641703,0.2774764,-0.15891376,-0.058176097,-0.09819314,-0.2898543,0.2198054,-0.64791447,-0.49448013,0.001963166,0.19695957,0.75523466,-0.13496915,0.040328067,-0.17447196,-0.47602066,-0.26277506,0.22040984,-0.07628934,0.29418927,0.046379052,-0.4075519,-0.10897764,-0.0498041,-0.4510432,0.06777349,-0.57786983,-0.50933945,-0.13956627,-0.49994665,-0.36473733,0.72260374,-0.4313183,0.11422823,-0.21705921,-0.15307607,-0.009912381,0.2515834,-0.06281029,0.014748862,0.020857783,-0.10725172,-0.11173828,-0.23094834,0.14802745,-0.0056335856,0.31836542,0.42702627,-0.2834205,0.158128,0.61639553,0.6414331,-0.27407634,1.0200818,0.3792813,-0.1381105,0.33122414,-0.09006017,-0.25180423,-0.5807387,-0.24666229,-0.14117494,-0.44421747,-0.26269227,0.06834774,-0.28810507,-0.8355774,0.6079591,0.09521464,0.08209905,-0.07420668,0.35818836,0.39169824,-0.15832075,-0.16629232,-0.20185448,-0.20088148,-0.47190526,-0.32465586,-0.5965467,-0.37043682,0.15506504,1.1559024,-0.41125697,0.04611918,0.21790287,0.08883098,-0.05585154,0.12742773,0.07638817,0.022291243,0.3923874,-0.06503873,-0.50473446,0.35798484,-0.07513886,-0.107679844,-0.30276513,0.31106818,0.65359086,-0.6666318,0.48529613,0.27964827,0.064441375,-0.1380611,-0.66618866,-0.07999261,-0.0983895,-0.27099675,0.5540639,0.38582215,-0.942929,0.4376367,0.31197688,-0.18711184,-0.76246345,0.5192759,-0.12138247,-0.1605881,-0.2664468,0.41796783,0.25089902,0.16166005,-0.10656473,0.28621918,-0.5002358,0.2984992,0.19473876,-0.11804784,0.24224915,-0.26518485,-0.027043076,-0.76644295,0.04174467,-0.4323994,-0.5025128,0.20081595,0.08918156,-0.12256555,0.4600191,0.044840768,0.36153856,-0.34675047,0.14147197,-0.009908771,-0.2321423,0.4112693,0.42890522,0.5845938,-0.35464376,0.52061176,0.09317577,-0.037702266,-0.32936653,-0.05472041,0.34735262,-0.07214646,0.44623485,-0.044106185,-0.1976493,0.33468226,0.7383512,0.1705171,0.3029023,0.03543155,0.06525307,0.06017447,0.07238125,0.2645375,0.05765664,-0.6383777,0.11032307,-0.26074713,0.19435832,0.63539577,0.2448872,0.21515721,-0.06822895,-0.10521196,-0.031069107,0.2331581,-0.16308719,-1.3832968,0.32911697,0.13779607,0.70628536,0.75608826,0.040553708,-0.01521161,0.62627465,-0.22375521,0.16911784,0.24937366,0.06651611,-0.3765822,0.5969889,-0.7935969,0.45121786,-0.028174158,0.024526192,-0.09905301,-0.17375126,0.4902131,0.83376706,-0.04943786,0.050288443,0.011234677,-0.32325986,0.032021802,-0.42833847,0.06983964,-0.54380643,-0.1665117,0.8513601,0.36290786,0.4263594,-0.14795192,-0.053308163,0.07985198,-0.1898451,0.10638012,-0.034260187,0.1288577,-0.065272614,-0.46308178,0.0013449123,0.65820515,-0.025128864,0.17842586,0.14160404,-0.26710555,0.25257486,-0.0473786,-0.087308176,-0.045203403,-0.6482799,-0.036513373,-0.44438392,-0.2494484,0.46109167,-0.1774602,0.046913944,0.29451862,0.07294308,-0.06306647,0.42001274,0.30984354,0.44646052,0.09973162,-0.032836527,-0.1224596,0.37460503,-0.04162085,-0.21655084,-0.11655978,-0.13961302,0.13354096,-0.7688906,0.2431643,0.012865126,-0.3960969,0.09621574,0.018070672,-0.009114066,0.38341168,-0.08394078,-0.13650346,-0.10660766,-0.24363644,-0.13657176,-0.31484875,-0.14027971,0.36806998,0.07815453,-0.03958187,-0.009204123,-0.16414389,0.0068651163,0.20643273,0.03646621,0.34161294,0.25263983,0.059123747,-0.34655255,0.17930737,0.03740882,0.4766514,-0.20334522,0.0821495,-0.25014803,-0.174971,-0.38101193,0.029632183,-0.09648883,0.3293862,0.071667105,-0.12487991,0.9132395,0.0016145065,1.1526955,0.02712991,-0.3895602,0.065968364,0.36867613,-0.09824991,-0.045331523,-0.27083367,1.090654,0.48978442,-0.12627871,-0.16771907,-0.36978754,-0.15669648,0.2055603,-0.20503047,-0.2742339,0.07859205,-0.68393517,-0.21439545,0.21757618,0.22743784,0.11310367,-0.14643973,0.049063973,0.42978242,0.06742854,0.21327035,-0.5031929,-0.038239975,0.39195457,0.32427377,0.037340414,0.06635017,-0.47398156,0.36873466,-0.7181642,0.22559126,-0.1179024,0.19957127,-0.35985392,-0.281395,0.3219846,0.17189291,0.31442624,-0.20279922,-0.41045573,-0.15156385,0.60312015,-0.0770233,0.13086484,0.6259609,-0.35317868,0.050348744,-0.105565324,0.35699508,1.0816208,-0.1734897,-0.1820263,0.31759992,-0.3581249,-0.5903243,0.32548255,-0.28927648,0.080475286,0.09224352,-0.3210365,-0.35197705,0.2811021,0.24240865,0.2525509,0.17065272,-0.70697916,-0.069482476,0.17611727,-0.36191928,-0.15053734,-0.19479983,0.095498964,0.638114,-0.25625932,-0.40366474,0.11298116,0.20517462,-0.27789566,-0.5786656,-0.14222048,-0.28325772,0.20546411,0.13186105,-0.39402983,-0.04093601,0.114953525,-0.47144347,-0.107679404,0.26357508,-0.16640654,0.20168826,-0.56655794,0.07798689,1.004516,-0.13846707,0.23216102,-0.3214783,-0.61221564,-0.7197778,-0.28240588,0.38577893,0.14089498,-0.06821175,-0.6075226,-0.104229435,-0.24370201,-0.26458842,0.04035946,-0.22963649,0.4709904,0.1725754,0.24916665,-0.05534269,-0.71297866,0.28269002,0.19665088,0.049716953,-0.5378162,0.36864325,-0.10219024,1.02689,0.16483314,-0.06756039,0.35447514,-0.71244514,0.06884758,-0.13936229,-0.02020696,-0.58844334,-0.074637584 -273,0.62466854,-0.17467098,-0.36381137,-0.16267124,-0.13292828,-0.14101972,-0.16904472,0.51446366,0.3377231,-0.43275285,-0.24754375,-0.28087926,0.08407062,0.27603224,-0.12754099,-0.7289093,-0.024919642,0.14204513,-0.45757368,0.5296087,-0.50353867,0.4028356,0.016097903,0.35252205,0.19071116,0.3343524,0.10659551,-0.05494404,-0.14555392,-0.27600658,0.007895728,-0.084589295,-0.67763335,0.14010838,-0.121623315,-0.4809812,-0.1325707,-0.63186485,-0.43260872,-0.775657,0.36322105,-0.86230594,0.5425108,0.1376939,-0.20608665,0.32739875,-0.041227683,0.25073987,-0.16228214,0.13129126,0.14361045,0.05544688,0.0187835,-0.18163736,-0.16552508,-0.28202644,-0.72043705,0.14889035,-0.30437222,-0.31165886,-0.30986366,0.11089623,-0.3908516,0.06833083,0.03544603,0.46449235,-0.33419958,0.12963408,0.085309826,-0.14394994,0.24014384,-0.5023878,-0.23368175,-0.050246764,0.27210602,-0.22706078,-0.2101901,0.23405273,0.098735474,0.46891,-0.043714833,-0.17233527,-0.36024654,-0.06657522,0.115488835,0.57805306,-0.15134108,-0.42474428,-0.027742976,0.06925357,0.17351745,0.078189634,0.2344501,-0.23512469,-0.21455006,-0.061821535,-0.3377124,0.44542703,0.65604347,-0.32422593,-0.34108782,0.38282552,0.46647266,0.11359451,0.013233635,0.09519703,0.055751085,-0.529505,-0.18488139,-0.08186984,-0.13674913,0.41379383,-0.17867184,0.3466333,0.66434485,-0.18047278,0.05193119,0.10882636,-0.047807544,-0.039783314,-0.13430369,-0.34205922,0.25994638,-0.35516396,0.13201238,-0.3092718,0.9149625,0.10549199,-0.8789704,0.43011543,-0.63132715,0.1878789,-0.0019468889,0.52195805,0.7343824,0.27013433,0.46919844,0.7451866,-0.3697505,0.03722597,-0.06815388,-0.29171035,0.13507219,-0.1979746,0.15760882,-0.46678004,-0.16620706,0.17789257,-0.2817983,0.31367436,0.420208,-0.41410804,-0.0036030586,0.22704656,0.77434736,-0.2611886,-0.005550603,0.81264144,1.0797782,1.2290459,0.18142498,1.1571913,0.20288368,-0.3215487,0.24437697,-0.43115857,-0.72579986,0.3674222,0.3457954,0.022631636,0.36812115,0.050779354,-0.028627358,0.2556418,-0.45297205,0.19517384,-0.042628895,0.16722552,0.12654684,-0.1633578,-0.42820367,-0.32256907,-0.28952056,0.044348095,0.13958402,0.20781802,-0.27682662,0.2724277,-0.0076111034,1.6410574,-0.051858947,0.038719755,0.004052773,0.52659845,0.10575231,-0.30037642,-0.08589532,0.050599594,0.4898812,0.05359366,-0.7062728,-0.025200313,-0.127971,-0.3257814,-0.18735804,-0.37559834,-0.07735147,0.008653666,-0.32064202,-0.20385742,-0.22622909,-0.48237142,0.31498915,-2.6864948,-0.29219666,-0.0010021074,0.41913858,-0.09280589,-0.3380569,-0.20908575,-0.5791526,0.40636587,0.40863252,0.46790454,-0.6454901,0.32233772,0.50887305,-0.57832026,-0.14769414,-0.7316415,0.16530032,-0.14381932,0.16751766,0.019547412,0.0071774223,-0.0450269,0.17618968,0.4553635,0.17345206,0.036865354,0.27829173,0.42143095,-0.060936723,0.5275709,-0.10282899,0.39928016,-0.087458275,-0.10657537,0.22408895,-0.43834043,0.0021290828,-0.27890137,0.16904391,0.39622116,-0.6600233,-0.8351753,-0.67255473,-0.27340993,1.1633979,-0.04428209,-0.39863643,0.41978648,-0.27498814,-0.3480188,-0.106259316,0.6058608,-0.17691243,-0.27094707,-0.74668473,-0.13438402,-0.1049413,0.14234768,0.021727404,-0.11454698,-0.54947466,0.71049196,-0.05200073,0.45047972,0.22704624,0.15580194,-0.08475224,-0.41105676,0.170623,1.1118474,0.33665502,0.19134527,-0.46115747,-0.1508201,-0.41675165,-0.1558624,0.05704367,0.49027,0.7251981,-0.16512837,0.08997389,0.25471762,0.13747026,0.058907498,-0.0863539,-0.13205975,-0.08034004,-0.12851296,0.66818887,0.79847425,-0.20332539,0.4219365,-0.12549625,0.19015495,-0.28513822,-0.30355844,0.6660095,0.81722736,0.062797,-0.28786218,0.57281214,0.26642075,-0.25709036,0.5899386,-0.54426044,-0.2508603,0.2831501,-0.18863487,-0.3405061,0.28500295,-0.34224573,0.10820412,-0.88340807,0.4047977,-0.050432414,-0.38548803,-0.46661785,-0.13241057,-3.161959,0.076980405,-0.095552355,-0.25217724,-0.14779384,-0.17013562,0.1665258,-0.5449248,-0.67368674,0.24867003,0.14314882,0.8698039,-0.09302781,0.1842426,-0.044461053,-0.27483776,-0.5829119,0.013448074,0.079001844,0.5164264,0.29229534,-0.19562449,-0.018595317,-0.08705574,-0.34806976,0.0597759,-0.40199742,-0.48011932,-0.19345044,-0.51984847,-0.39685822,0.65621173,-0.16928594,0.12553011,-0.2505305,-0.13016985,-0.22574066,0.3924938,0.03901334,0.029104972,0.04622079,0.03466473,0.12725402,-0.1377065,0.42401528,0.0073569543,0.34023073,0.41528782,-0.24759108,0.30669641,0.48763037,0.637014,-0.20976727,0.87770104,0.52476704,-0.016786143,0.110268496,-0.2792218,-0.08763391,-0.43518475,-0.33712342,0.02401209,-0.44150198,-0.46513334,-0.19816941,-0.31961006,-0.7257714,0.34427288,-0.059868127,0.16109045,0.087468766,0.17314748,0.3865167,0.111380555,-0.06834083,-0.0402852,-0.069594726,-0.46409306,-0.11387929,-0.72237676,-0.4349403,0.3364023,0.97610664,-0.12715481,-0.021427734,0.13455446,-0.09483108,0.042627454,0.079066865,-0.04364224,-0.023857147,0.39548254,0.049666498,-0.6668808,0.35873505,-0.12784117,-0.1707126,-0.7383624,0.15670575,0.66294205,-0.61214966,0.44494104,0.18984295,0.08047106,-0.08348546,-0.2918788,-0.23186083,-0.14636397,-0.17012094,0.2764959,0.102762915,-0.7160363,0.37637135,0.2585163,-0.25441423,-0.80922526,0.3558807,0.023738503,-0.39811173,-0.006535977,0.190585,0.14015819,0.11121389,-0.16473,0.1760572,-0.4287405,0.26409736,0.23265226,0.0012441179,0.3296258,-0.0628207,-0.081921756,-0.74657106,-0.115309514,-0.34301448,-0.3234669,-0.079889454,0.22163306,0.29305705,0.3180416,0.16995388,0.3710904,-0.24390705,0.18029375,-0.14252396,-0.20394814,0.3513708,0.27849147,0.4583324,-0.45200387,0.61565036,0.13531381,-0.09135971,-0.040943265,-0.09167632,0.34363547,0.02933151,0.19841714,0.09711987,-0.3092005,0.21333313,0.6245864,0.24309272,0.3634921,0.22462623,-0.104205914,0.29733673,0.11734662,0.20195095,0.05687636,-0.622152,0.04797725,-0.3232068,0.050060153,0.42775726,0.16001299,0.29618564,-0.08588529,-0.40696236,-0.029624276,0.24249434,-0.21586885,-1.3017913,0.3120745,0.025032332,0.83106667,0.69344896,-0.08451445,0.07795405,0.67820174,-0.12848152,0.118451186,0.10769778,-0.032689247,-0.44807947,0.54032356,-0.73359203,0.52514493,0.06653663,-0.0057477057,-0.14864771,0.0028817256,0.34481737,0.6251981,-0.08602518,0.10207021,-0.12641221,-0.15938921,0.06686697,-0.4796737,0.16792692,-0.59929127,-0.16776125,0.8235794,0.38948116,0.31596792,-0.03390785,0.116653584,-0.06036295,-0.07250147,0.011540013,0.054036256,-0.13753006,0.043743666,-0.7179932,-0.14461574,0.49463293,-0.049285233,0.11735288,-0.07326694,-0.20076077,0.08669891,-0.17424,-0.17710944,-0.08139068,-0.7073136,-0.007799434,-0.38802147,-0.40539503,0.33879617,0.011396021,0.32593223,0.28378078,0.07149785,-0.09019657,0.2247699,0.3253793,0.629093,-0.0038121268,-0.21341912,-0.25303793,0.38057008,0.14457472,-0.3071064,-0.11071804,-0.24162014,0.07696799,-0.5040545,0.4926068,0.05355571,-0.44546333,0.13911904,-0.060499728,0.09434769,0.60929817,-0.28203493,0.08395952,0.17705323,-0.32836178,-0.19300641,-0.11886569,-0.177377,0.35677636,0.32171246,-0.32446033,-0.018089399,-0.04656376,-0.1030185,0.44750044,-0.018053109,0.49110404,0.30928397,0.16731064,-0.32125357,-0.21365409,0.09183667,0.5372507,0.06428825,-0.25167918,-0.34084985,-0.4796978,-0.3740835,0.30353534,-0.0059860647,0.316509,0.08677909,-0.2766544,0.48551962,0.2293167,1.0484983,0.12338904,-0.37458804,0.25343737,0.37353468,0.040619433,-0.16236825,-0.40106758,0.9954457,0.4468534,-0.21726508,-0.16455881,-0.49169174,-0.09292845,0.13237907,-0.2562026,-0.17071618,0.083559126,-0.6745073,-0.481145,0.2767479,0.15125446,0.1396888,-0.12894756,0.29054818,0.1994618,-0.037344407,0.32413396,-0.3678311,-0.25494373,0.31725898,0.12016994,0.19869228,0.02406554,-0.47622204,0.29803288,-0.47117588,0.00060183805,-0.19985111,0.15488811,-0.08515888,-0.2894441,0.3482273,0.38597548,0.5288263,-0.41576,-0.5143669,-0.3619316,0.46629825,-0.02131997,0.18643107,0.4020457,-0.23425107,0.071826614,-0.012217847,0.6322438,1.2837783,0.04568285,0.29899478,0.48931184,-0.4389172,-0.5869991,0.26342484,-0.24268796,0.12747765,-0.020340623,-0.22114724,-0.60554165,0.13839644,0.19822903,0.1621926,0.33496633,-0.42906246,-0.5705026,0.22579509,-0.36029863,-0.16130893,-0.34833562,-0.0870136,0.7108431,-0.2262733,-0.2608126,0.10039488,0.1983353,-0.2336725,-0.5768204,-0.20285426,-0.2252049,0.35813567,0.0064769736,-0.22550392,-0.1935202,0.05849864,-0.3950447,0.12666689,0.022803625,-0.45696497,0.14841448,-0.49839482,-0.13942167,0.95702153,-0.241875,0.299786,-0.6191805,-0.56322974,-0.84968156,-0.40611264,0.55848956,0.0556203,-0.103734255,-0.5016597,-0.0576693,-0.09363987,-0.10898081,-0.012169163,-0.39644703,0.447688,0.1518919,0.304971,-0.07478572,-0.904854,-0.049034193,0.14948498,-0.35528743,-0.63689363,0.5392572,0.20677924,0.8120358,0.105632246,0.06410193,0.16178028,-0.47826838,0.08356655,-0.07454171,-0.14856483,-0.73613214,0.222365 -274,0.7007806,0.0012189249,-0.7173865,-0.2144735,-0.54488254,0.39059663,-0.14096913,0.23388274,0.303751,-0.5986899,-0.14872368,-0.19483294,-0.12991345,0.28249237,-0.15540107,-0.83663553,-0.06312791,0.14945501,-0.5717961,0.49844506,-0.28161627,0.51092535,0.22375633,0.47307006,-0.07836475,0.2812024,0.46195626,0.017332867,0.115966916,-0.34387502,-0.18497632,0.13557738,-0.81516117,0.25351214,-0.12873228,-0.35944173,-0.10419189,-0.35015163,-0.22018473,-0.79338455,0.38777152,-1.067067,0.7067881,0.075612426,-0.337926,0.034989282,0.14775531,-0.03289708,-0.1906523,0.12815042,0.26727295,-0.43032113,0.106807224,-0.3117687,-0.51485884,-0.606151,-0.5734544,-0.06878068,-0.5898429,-0.20567684,-0.49384603,0.22042139,-0.329851,-0.01724712,-0.4354742,0.35237226,-0.53042233,0.062037498,0.30724412,-0.52049035,0.31098258,-0.49853384,-0.212008,-0.215025,0.12951517,0.017690033,-0.11724925,0.24345876,0.16646971,0.69117594,0.20896481,-0.2368229,-0.25578335,-0.03565678,0.053646386,0.4835428,-0.1813642,-0.049433082,-0.2907549,-0.1890461,0.39862657,0.42824113,0.0833081,-0.36296138,0.16449249,-0.13054572,0.01482635,0.58699405,0.50148606,-0.44139895,-0.19515733,0.41309166,0.3315661,-0.065796554,-0.21560399,0.088678814,-0.13339196,-0.49879143,-0.13501722,0.25296962,-0.18979566,0.7758756,-0.1943572,0.0052286885,0.7955268,-0.2575851,-0.053089757,-0.28777504,-0.106798016,-0.076122425,-0.37151346,0.06938415,0.54355115,-0.41425672,0.03375426,-0.42970964,0.637556,-0.038622588,-0.7412529,0.2527052,-0.625691,0.12094132,0.015415405,0.71891385,0.60222894,0.56842774,-0.05005482,1.1014374,-0.7187502,-0.009538963,0.060467243,-0.32958403,0.13763146,-0.1326314,0.06616124,-0.4252781,0.24973707,0.028388053,-0.06739348,0.065348856,0.32958576,-0.31323022,-0.17887776,0.2743625,0.6469951,-0.3994504,-0.011045595,0.6883249,1.2761532,0.9782316,-0.060045194,1.3988293,0.20944746,-0.19718654,-0.14001527,0.11613843,-0.63697624,0.119085096,0.30801526,0.27747202,0.34474608,0.14797558,-0.109967135,0.19223738,-0.3307668,-0.19612998,0.053268105,0.1388973,-0.0622488,-0.08197912,-0.49133134,0.06963048,0.32409447,0.14262736,0.0195627,0.15466875,-0.20758806,0.43683156,0.1104621,1.047343,-0.06377285,0.21950547,0.21459936,0.48740435,0.29694542,-0.055523068,0.1591134,0.43630016,0.26545557,0.14161374,-0.48162958,-0.043245554,-0.37325558,-0.4776504,-0.16913445,-0.4809166,-0.11226263,0.08941728,-0.42355692,-0.16351642,-0.03132398,-0.29874265,0.3033428,-2.2374809,0.017330075,-0.17514582,0.2542617,-0.2504549,-0.2924489,-0.14431521,-0.67506886,0.4465039,0.4570285,0.34332561,-0.54548025,0.3770772,0.5137529,-0.43081915,0.043663938,-0.55650043,0.10330089,-0.0660871,0.50319165,-0.117912084,-0.34389842,-0.27447784,0.27421156,0.6958247,0.2692741,-0.03194244,0.26264116,0.46775898,-0.045200005,0.5338878,0.06512948,0.671525,-0.27401844,-0.18818939,0.6536143,-0.3291326,0.33142158,-0.22359748,0.018000817,0.45691392,-0.5201059,-0.8839638,-0.6865623,-0.43247208,1.36804,-0.54806054,-0.7251987,0.2280352,0.1777929,-0.1447593,0.022685481,0.5069748,-0.034056526,0.3220226,-0.6745744,0.01458621,-0.16276826,0.34386286,-0.03058806,0.19427545,-0.47907642,0.9060089,-0.11150479,0.4928944,0.46639013,0.22530659,-0.24721652,-0.6366373,0.023834802,0.8772586,0.38073167,0.12979761,-0.18312792,-0.05018286,-0.17467594,-0.28303874,0.15250523,0.788799,0.79271936,-0.112646155,-0.04878973,0.5056142,0.16623904,0.08555144,-0.079561375,-0.3361423,-0.23148288,-0.11108247,0.49622583,0.73159593,-0.19003654,0.08183418,-0.14212878,0.3818893,-0.06790947,-0.3952063,0.6097674,1.078836,-0.1486647,-0.25442752,0.8319847,0.39645097,-0.58644575,0.5364952,-0.7423732,-0.47463515,0.6875723,-0.13017972,-0.6093965,0.049620975,-0.22382253,0.086410515,-0.83829284,0.20396285,-0.15981525,-0.41841564,-0.40818223,-0.40745822,-3.803569,0.2361787,-0.34353587,0.08365656,-0.25006786,-0.10930309,0.2742845,-0.59567744,-0.57320255,0.032949165,0.0028249014,0.5036767,-0.19301873,0.3162507,-0.38899234,-0.20160569,-0.2547445,0.42562023,0.12710905,0.08780802,-0.09442133,-0.2584379,0.042841803,-0.037524607,-0.53609693,-0.07733555,-0.6006735,-0.48403072,-0.14800236,-0.5578214,-0.0454808,0.6542677,-0.42933515,-0.027555905,-0.2088203,0.17332695,-0.19970721,0.0881656,0.15947463,0.35993052,0.026320964,-0.020170918,-0.16383013,-0.33201876,0.3280275,0.22890408,0.41916263,0.31404975,-0.38229945,0.003889988,0.37086213,0.5244908,-0.038824588,0.89447135,0.16635115,0.045231763,0.3863821,-0.22178465,-0.5188009,-1.0583912,-0.17849386,-0.12330476,-0.5172104,-0.4870559,0.013878502,-0.4011966,-0.98471576,0.69121665,0.012798677,0.5083325,-0.09755809,0.437884,0.37867948,-0.34545168,0.06739935,-0.046602443,-0.22378297,-0.5773993,-0.44028524,-0.745629,-0.5831524,-0.037043642,0.9733289,-0.046134125,-0.0873465,0.26143113,-0.2513488,0.1871825,0.1667267,0.3008763,0.0072110393,0.67977357,0.24335057,-0.75955766,0.5235582,-0.051626664,-0.015892232,-0.66300505,0.29854998,0.66012126,-0.66541195,0.5553042,0.43153417,0.28649557,0.040674504,-0.6232734,-0.40283644,-0.07498551,-0.25729463,0.5877264,0.22696514,-0.68428105,0.4380777,0.015673677,-0.13566512,-0.6881068,0.64536625,-0.18260567,-0.3265304,-0.057409864,0.47086832,0.03518625,-0.06072263,-0.058470592,0.35868064,-0.47207907,0.18222453,0.32472837,-0.014264707,0.5472074,-0.13609336,-0.36543676,-0.734346,0.19196141,-0.6584006,-0.3858876,0.2552278,-0.027514039,-0.23837268,0.29476494,0.036842894,0.5409394,-0.048819173,0.40565935,-0.021324048,-0.23799141,0.66195446,0.44289598,0.5138164,-0.8217762,0.7806398,0.09415832,-0.07185497,0.079461955,0.23090631,0.6043405,0.07084909,0.36451888,-0.1743675,0.023940355,0.04248518,0.4143118,0.30690053,0.291634,0.22371906,-0.13072813,0.58826536,0.23308194,0.08156096,-0.21914636,-0.77183485,-0.12950884,-0.06910725,0.02808415,0.36728606,0.09318397,0.42488542,-0.060912084,-0.057719667,0.27078915,0.018038487,-0.22636567,-1.0275873,0.037324924,0.22502065,0.8327436,0.47636247,-0.016196271,-0.10950505,0.5807749,-0.36181727,-0.1402127,0.57692164,-0.02632291,-0.34046713,0.62449574,-0.48073325,0.2595142,-0.124781914,-0.04666133,0.25943518,0.4443036,0.31941357,1.015565,-0.24461724,-0.007726284,-0.17075141,-0.12824541,0.18315463,-0.4203978,0.10548634,-0.3670566,-0.41319332,0.6256389,0.37874636,0.33037254,-0.5457267,-0.17363943,-0.002226154,-0.15988512,0.23147209,-0.014010896,-0.08886445,0.032104198,-0.4719223,-0.20209968,0.51814026,0.096841395,-0.068925984,-0.113262445,-0.27890527,0.2670318,-0.12483078,-0.13271426,-0.07981181,-0.76649404,0.05213334,-0.36143014,-0.51059216,0.3790493,-0.27109152,0.28195375,0.21956389,-0.07019692,-0.1824261,0.057220846,0.14734556,0.7919554,0.07138327,-0.23195453,-0.4181734,0.18295085,0.18707605,-0.37312123,0.17805141,-0.23324287,0.12493336,-0.38405728,0.44639766,-0.2907413,-0.2568334,-0.040500533,-0.26557767,-0.1331064,0.37551904,-0.02248016,-0.049861137,0.3608359,-0.11166009,-0.50271255,-0.1251574,-0.2651556,0.003975501,-0.20042582,-0.11154717,-0.07623283,-0.08424157,-0.0644519,0.2731051,0.13769315,0.1379176,0.2015725,-0.19918619,-0.5028282,0.14326756,-0.06253591,0.45110154,-0.01664254,0.06412444,0.073401965,-0.6919821,-0.30122095,0.43131217,0.005836328,0.2547851,0.10306629,-0.40613678,0.83331347,0.36663413,1.0966444,-0.1474328,-0.3909649,-0.12136912,0.8082983,0.12732325,-0.075871736,-0.41871396,1.1814356,0.77356786,-0.146876,-0.1813211,-0.29643953,-0.06835961,0.023465818,-0.40893897,-0.21843262,-0.119124286,-0.56529397,-0.21679789,0.06417003,0.47339472,0.21100038,-0.11487013,0.031765178,0.17311887,0.2233436,0.50880766,-0.46958193,-0.48777533,0.32512382,0.14542058,-0.14965208,0.15302888,-0.19072314,0.3487024,-0.7402349,0.14182109,-0.4778525,-0.014090013,-0.155115,-0.26866612,0.103889436,-0.10051706,0.3401865,-0.40337446,-0.2996162,-0.19098973,0.50401956,0.22870326,0.29148352,0.79571384,-0.20456947,-0.05343449,0.07487449,0.49432692,1.4537352,-0.04321611,0.1849001,0.23776422,-0.55894107,-0.6389153,0.02401641,-0.4879494,0.22909914,-0.14996995,-0.51920074,-0.2460844,0.20195985,-0.14892018,-0.20828573,0.20827584,-0.712378,-0.24366768,0.33054805,-0.2776309,-0.27411175,-0.27952906,0.40198573,0.77443856,-0.27883253,-0.3718835,0.094400205,0.14754012,-0.33386615,-0.9903784,0.06832,-0.31047404,0.3920804,0.0010062853,-0.47989914,0.16062628,0.25953895,-0.5148798,0.21630502,0.34598804,-0.39817214,-0.02607531,-0.35236374,-0.056019276,0.9718079,0.10862071,-0.017311716,-0.5876335,-0.4814969,-1.1041542,-0.453034,0.1453665,0.06935096,0.07828552,-0.46902752,-0.18945341,-0.45596334,0.07377334,-0.0062986366,-0.4284834,0.33836445,0.26437733,0.8603727,-0.1385033,-1.0123729,0.12536424,0.14983469,-0.12546054,-0.5804957,0.43342957,-0.12419328,0.6714227,0.025252573,0.040061597,0.2520469,-0.8773914,0.37488317,-0.13518552,-0.15392074,-0.65596205,0.17878069 -275,0.30193943,0.070681915,-0.45363492,-0.36278817,-0.30096075,0.18913668,-0.18090479,0.30117488,0.14996666,-0.15977095,0.118453965,0.047754347,-0.19703425,0.39082348,-0.15203169,-0.9110641,0.114691846,0.028660635,-0.49711168,0.34931025,-0.49813592,0.5183052,-0.01305846,0.4257655,-0.08864086,0.35111222,0.26110083,0.027128192,0.29379866,-0.32836157,-0.31043684,0.07009005,-0.5013925,0.11599808,-0.06759015,-0.29867235,0.089268245,-0.19823827,-0.17941009,-0.7181286,0.432388,-0.5827997,0.56862724,-0.067391515,-0.49105164,0.2769553,0.19784036,0.21870235,-0.33260602,0.07444603,0.1667738,-0.24233715,0.075299725,-0.12566891,-0.3744168,-0.47164267,-0.606402,-0.099402465,-0.7475266,-0.20378764,-0.27913117,0.16778024,-0.39819482,0.074897215,-0.008462525,0.3671343,-0.2920595,-0.07909191,0.17264369,-0.1495191,0.23000585,-0.4480676,-0.03921298,-0.06156884,0.16948973,0.08280864,-0.042512067,0.336011,0.24808723,0.5367038,-0.010694974,-0.30404168,-0.084196076,-0.24819241,-0.1568273,0.49016824,-0.15243897,-0.18801025,-0.21018934,-0.14846009,0.26604956,0.21474078,-0.009851052,-0.07689759,-0.008000573,0.012752693,-0.2833861,0.40606353,0.3994813,-0.43999106,-0.12997712,0.40431464,0.37526864,-0.00068119395,-0.36646432,0.2297475,-0.054885413,-0.38670352,-0.211378,-0.10743973,-0.2496917,0.48809606,-0.10954774,0.23157085,0.77829635,-0.13465269,0.064831346,-0.14903575,-0.16599578,0.13280879,-0.15412036,-0.23251727,0.07531692,-0.5018643,0.057090815,-0.37228605,0.83054703,0.11804463,-0.7367468,0.3678591,-0.3527816,0.01860014,-0.11391857,0.6097039,0.7242241,0.5010783,0.14072062,0.86400926,-0.6545854,-0.03805153,0.020856949,-0.17658125,0.045179155,0.002565918,0.1364657,-0.5450487,0.0298831,0.20287003,0.1338487,0.084644556,0.26623333,-0.36308292,-0.099306695,0.096385635,0.71726793,-0.39121917,-0.083438486,0.6584337,1.1607242,0.951464,-0.09050064,1.0055194,0.14969212,-0.15378097,-0.12614773,-0.17733742,-0.33369178,0.1317508,0.28492802,0.31787494,0.3400647,0.047064397,0.080162436,0.39703926,-0.25978816,-0.09395116,0.16580932,0.31499892,-0.049189884,-0.11456072,-0.43986067,-0.27727133,0.3899616,0.043298896,0.2943583,0.27368766,-0.2995415,0.4619796,0.12282073,1.2000684,0.15700696,0.13366663,0.04865208,0.50955224,0.230036,0.038424887,-0.11847346,0.31348976,0.25110638,-0.03962668,-0.67126304,0.032819264,-0.28566682,-0.21108405,-0.12994441,-0.43997672,-0.19518264,-0.117658906,-0.39450726,-0.1450642,0.13523611,-0.4585404,0.3122969,-2.5352685,-0.22172847,-0.17813578,0.230385,-0.15679096,-0.25029275,-0.08774269,-0.43662596,0.4359744,0.38900504,0.21764429,-0.6032783,0.5466093,0.4192907,-0.26641542,-0.078959554,-0.43845,-0.23093185,-0.09467761,0.3261492,0.16607295,-0.15709797,-0.36901098,0.65805125,0.69872963,0.26501295,-0.09515424,0.14308667,0.45193335,-0.18038893,0.64494514,0.16175106,0.5393871,-0.08820311,0.014328282,0.33156782,-0.5872929,0.19553953,-0.0955551,0.20527492,0.3561422,-0.43395835,-0.7824688,-0.56913495,-0.26073667,1.470804,-0.3731349,-0.2898656,0.34269044,-0.13565257,-0.3276013,0.035500463,0.550841,-0.18843684,0.030570824,-0.5464297,0.04073781,-0.09693727,0.25472534,-0.00024393603,0.046708934,-0.40605396,0.6641705,-0.16865756,0.5966034,0.12556699,0.1258448,-0.1486277,-0.36367908,-0.029181276,0.87081,0.5021516,0.06656659,-0.22284484,-0.13013537,-0.20286168,-0.16771755,0.07658631,0.5812753,0.8192557,-0.0055493545,0.023105515,0.27606803,-0.22946122,0.064779304,-0.08258111,-0.3876764,-0.04315079,0.007089367,0.61650264,0.6363986,-0.12328716,0.22207054,-0.0011590972,0.32426694,-0.23912455,-0.51122546,0.46319833,0.8080568,-0.14698221,-0.16801503,0.6487537,0.34633556,-0.28115362,0.3806391,-0.629722,-0.35105243,0.7654115,-0.07504416,-0.45002812,0.085099034,-0.3133394,-0.06797424,-0.8161891,0.18015902,-0.25430256,-0.65473723,-0.35454193,-0.23266433,-3.9505105,0.11151809,-0.14354768,-0.08385585,-0.20393485,-0.07532589,0.41455644,-0.51621425,-0.57259315,0.06352718,0.042829156,0.5580035,-0.010226468,0.14561103,-0.2929274,-0.37721312,-0.28215784,0.26565412,0.007209792,0.21980515,-0.008473341,-0.3248958,0.07513514,-0.34142417,-0.6218305,0.03883136,-0.39060622,-0.48257545,-0.02938473,-0.46521336,-0.18177494,0.7936433,-0.2220667,0.10920481,-0.24955137,-0.09529552,-0.19165413,0.2161702,0.20145522,0.13599804,0.036295846,-0.013824358,0.03495137,-0.41771406,0.16951045,0.13989817,0.4702562,0.09751844,-0.06126606,0.0014381271,0.5911782,0.44380504,0.10724975,0.76914525,0.00726632,-0.082577385,0.37190995,-0.34901348,-0.41311556,-0.60918146,-0.28422153,-0.11713299,-0.39188465,-0.2770659,-0.17032975,-0.39241248,-0.76008356,0.29763037,0.00062156643,0.09991613,-0.25228915,0.41572952,0.25673887,-0.071856186,0.04893495,-0.024642872,-0.20130979,-0.46454617,-0.21766177,-0.74323654,-0.4755877,0.17252673,0.9328179,-0.17603295,-0.014389799,-0.038711015,-0.22246,0.18283412,0.02076601,0.5136848,0.19376078,0.3174164,-0.030958371,-0.76130223,0.32546982,-0.2939641,0.0065243747,-0.7160467,-0.09311623,0.71422833,-0.5595798,0.48061615,0.377885,0.16058405,0.107202545,-0.6879494,-0.10558653,0.12635945,-0.22408962,0.5351479,0.101442926,-0.6740512,0.51604646,0.07261863,0.020563675,-0.50260633,0.44755694,-0.16698135,-0.4232634,-0.006410467,0.44133362,0.100479074,-0.124058716,0.08572081,0.14587873,-0.4179943,0.19928893,0.3186056,0.07895123,0.5245956,-0.03373923,-0.1329405,-0.5711097,-0.165301,-0.6397407,-0.33191493,-0.112307325,0.005471963,0.023359917,0.15386017,-0.1157475,0.33475882,-0.301671,0.26657307,-0.010346811,-0.24394812,0.5656821,0.512253,0.36507416,-0.35620907,0.6469611,0.12811533,0.15646222,-0.08487243,-0.083198234,0.5610419,0.115606114,0.33697316,-0.022871124,-0.13441609,0.20376277,0.5631753,0.24150603,0.27947325,0.15000376,-0.13740028,0.2949359,0.14288668,-0.04058844,0.10792719,-0.3665822,-0.18774417,-0.035464026,0.0010852492,0.54545623,0.118008345,0.2962228,-0.028702516,-0.16942789,0.2202356,0.12091883,-0.40847364,-1.2644832,0.2824323,0.24686843,0.6764361,0.40801144,0.15927427,-0.020665146,0.46519846,-0.24087271,0.038772263,0.38291213,0.16973282,-0.3051082,0.6619666,-0.5064031,0.4908772,0.035401862,0.0011362239,0.088318124,0.1234971,0.3482192,0.9581051,-0.14327136,0.014569833,0.1721112,-0.33641914,0.1011904,-0.42797711,-0.0044400278,-0.38888487,-0.26353246,0.37879783,0.29092288,0.2585754,-0.29852325,-0.04106255,0.029284324,-0.21367337,-0.07306031,-0.22790597,-0.10157757,-0.21099883,-0.41731665,-0.35467726,0.3930628,0.19779849,0.07678355,0.11187211,-0.19226672,0.29959893,0.12370724,-0.04799554,0.033713505,-0.57374805,0.020739555,-0.30110237,-0.49140579,0.39141566,-0.44886458,0.22098412,0.18212599,-0.038185302,-0.21208793,0.0038842421,0.29532242,0.5407951,0.074851386,-0.28893045,-0.25985685,-0.12581228,0.07694293,-0.4369,-0.04816445,-0.43216354,0.16165787,-0.5079521,0.30116084,-0.2856533,-0.13592206,-0.1395836,-0.3227592,-0.0071846372,0.21349558,-0.26905343,-0.006558543,-0.036773387,0.074274585,-0.17736119,-0.1983428,-0.3657155,0.18226497,-0.16335875,-0.14207377,0.09069984,-0.12939246,-0.13859199,0.33924797,0.11999257,0.24070646,0.2825213,-0.122985125,-0.28003186,-0.083223544,-0.08969806,0.28958967,0.055764236,-0.069523335,-0.2763073,-0.4518998,-0.18145591,0.57626253,-0.22239414,0.13163307,0.05777985,-0.2634763,0.71748555,0.19464476,1.0226415,-0.055981535,-0.27823207,0.034402754,0.6979142,0.18576217,0.112123914,-0.14798845,0.8802377,0.4349712,-0.26729617,-0.35029247,-0.38676813,-0.06825267,0.19953135,-0.33608225,-0.28089485,-0.16192338,-0.7194328,-0.21496648,0.24536732,0.19101503,0.13870002,0.019669423,-0.0062749684,0.061517082,0.19456203,0.5636102,-0.45164067,-0.017967489,0.3828888,-0.063192286,0.06614513,0.18391599,-0.38266796,0.35787535,-0.67271614,0.1147111,-0.43227783,-0.009991209,-0.03174082,-0.27584037,0.23311716,0.10660544,0.15456685,-0.25921515,-0.22989413,-0.13848393,0.44054917,0.28133604,0.32531214,0.5772712,-0.16248776,-0.049993798,0.14586058,0.53768307,1.2523268,0.057453588,0.07611914,0.12707087,-0.44833902,-0.57203466,-0.14266032,-0.3455377,0.06501568,-0.06346577,-0.4159516,-0.32914135,0.21218723,0.006081265,0.008130083,0.29711285,-0.43048513,-0.4547213,0.3044988,-0.30925056,-0.2723965,-0.23588559,0.20764428,0.6015974,-0.26775518,-0.15627295,-0.15248945,0.4296065,-0.18678178,-0.7962792,0.07954048,-0.23982957,0.4196843,0.13416891,-0.32402223,0.04556124,0.32304323,-0.44871888,0.28358924,0.430153,-0.44245687,0.02633357,-0.21539053,-0.040649455,0.83629286,-0.014067664,-0.0027958613,-0.64911497,-0.47838905,-0.8063867,-0.42654154,0.25274938,0.16032098,-0.11136301,-0.5041857,-0.15886119,-0.29431862,0.15801205,0.079014026,-0.3745791,0.2154337,0.25288746,0.4457956,-0.041792136,-0.96326196,0.022119092,0.13086532,-0.33869538,-0.5689442,0.66492075,-0.23815268,0.56606543,0.07879484,0.001290452,0.07026526,-0.47081673,0.4852678,-0.33257088,-0.16332196,-0.5144724,0.13969971 -276,0.33543125,0.038509443,-0.5511783,-0.16154903,-0.4019458,0.2131656,-0.35244113,0.22591016,0.15751213,-0.12894495,-0.16564336,0.13520412,-0.10746977,0.10811976,-0.09343075,-0.6635283,-0.11273635,0.053083654,-0.70350367,0.44928932,-0.39858848,0.5150918,0.102440245,0.35850528,0.056185532,0.33362362,0.20259193,-0.03787496,-0.15623602,-0.22624655,-0.23858987,0.36246482,-0.5784988,0.16607372,-0.28399208,-0.2709213,0.20082751,-0.36910668,-0.18946394,-0.7251998,0.030153103,-0.8647067,0.53674465,-0.19487973,-0.17645384,-0.038083266,0.34306067,0.27273205,0.012407986,0.12851661,0.23046026,-0.2990268,-0.12001557,-0.37371275,-0.27787292,-0.6706305,-0.32626212,-0.07251504,-0.9007455,-0.2204381,-0.10238172,0.25976267,-0.3565553,-0.19005013,-0.19842486,0.2712668,-0.3279552,0.033059463,0.1930953,-0.35549292,0.19648038,-0.5857957,0.12253116,0.04838705,0.49117675,-0.08075917,-0.15545015,0.39436337,0.32871303,0.2215175,0.2585824,-0.31664678,-0.28446123,-0.1392918,0.104020044,0.44588688,-0.28305295,-0.10536039,-0.27353486,0.17291382,0.6992802,0.5527161,-0.002255853,-0.117531225,-0.0570062,-0.09550647,-0.12639502,0.6676417,0.499506,-0.31558636,-0.22796421,0.5628822,0.48600137,0.38726503,-0.29599288,0.06975685,-0.15641509,-0.39554846,-0.046724375,0.2620648,-0.038356196,0.2632372,-0.023431571,0.10959825,0.7083622,-0.06584742,0.086468935,0.0090948185,-0.038812567,-0.05701039,-0.21047926,0.058407284,0.17394583,-0.547393,0.07352491,-0.2128322,0.7429382,-0.12210369,-0.6467542,0.28712374,-0.6068653,0.08621485,0.037378073,0.55171925,0.6004361,0.6098369,0.047339376,0.84584314,-0.18792626,0.13041328,-0.116672404,-0.38986132,0.10543515,-0.17903751,-0.0048074285,-0.5729917,0.16254574,-0.17000344,0.17900531,0.07899931,0.5048089,-0.6085005,-0.2194124,0.23037829,0.9697094,-0.29339167,-0.2303742,0.633062,0.9991812,0.7586707,-0.16247742,0.8835355,0.19177602,-0.08505611,-0.23614877,-0.22106346,-0.44695517,0.19701909,0.48475143,-0.28398374,0.3872375,-0.16042088,0.022537705,0.07446912,-0.12503494,-0.29758316,-0.10114827,0.25537986,0.1442949,-0.14138147,-0.313969,-0.1253262,0.07566101,-0.1296441,0.26328644,0.26022843,-0.23864917,0.347635,0.011547514,1.0659124,-0.1498968,0.08222203,0.21403731,0.46816933,0.527325,-0.045296006,0.18232705,0.5190685,0.33726475,0.032241743,-0.5194307,0.32983908,-0.5567238,-0.48484918,-0.11843201,-0.325229,-0.29868945,0.33331266,-0.4883491,-0.03586537,0.07483346,-0.2131996,0.4780217,-2.7287874,-0.20778589,-0.22884917,0.26809612,-0.42836004,-0.286893,-0.099240765,-0.51313883,0.27965716,0.23861817,0.485424,-0.44104654,0.3397486,0.489248,-0.5781179,-0.20229721,-0.5907551,0.08774522,0.04618965,0.4724197,-0.01535734,-0.20449114,0.02181304,0.14395393,0.67859113,0.11048896,0.14033714,0.44562158,0.46682623,0.005144426,0.21460356,-0.06704881,0.63990176,-0.1727981,-0.3177033,0.44272587,-0.26285484,0.4191109,-0.10700419,0.10014396,0.5975621,-0.30936012,-0.95888436,-0.48527515,-0.27416843,1.1898066,-0.42531985,-0.49116218,0.014080023,0.17727938,-0.13734478,0.13102095,0.5723787,-0.16844593,0.21592961,-0.5181468,0.09251539,-0.21518707,0.27320015,-0.029799897,0.00032635828,-0.20499822,0.6592369,-0.101637006,0.4892215,0.10027279,0.398733,-0.19747883,-0.4030875,-0.04105842,0.80286014,0.52095264,-0.092387706,-0.24028735,-0.2681636,-0.07398916,-0.08113572,0.13750753,0.6594809,0.66844994,-0.0190599,0.07058319,0.37051854,0.051433675,0.09494688,-0.20177661,-0.33395353,-0.13095336,0.07984645,0.42965683,0.4891213,0.016143251,0.55504835,0.010834223,0.2610712,-0.20557672,-0.63507766,0.6631904,0.5964723,-0.39740813,-0.1916378,0.618882,0.27906463,-0.3627743,0.3797497,-0.70484585,-0.30251476,0.6867346,-0.30391905,-0.60965836,0.1725893,-0.18230067,0.080470696,-0.7324347,0.33101144,-0.3871259,-0.4862431,-0.3554818,-0.101147585,-3.006986,0.049614284,-0.071625695,-0.084347576,-0.4593368,-0.19580011,0.32251146,-0.59885734,-0.6215052,0.031180209,0.12102529,0.62020683,-0.30772915,0.14453574,-0.30433884,-0.30990374,-0.087700725,0.36918387,0.13129093,0.19790694,-0.21741958,-0.16152042,-0.028144391,-0.0036711171,-0.46885183,0.2300672,-0.4091257,-0.3139504,-0.051841043,-0.39987782,0.03243462,0.4754259,-0.57086974,0.1904602,-0.22253452,0.29559854,0.009829649,-0.021320796,0.29328367,0.2586501,0.23301926,-0.15201983,0.1334527,-0.39447954,0.58822507,0.03777269,0.45150813,0.1746022,0.10972321,0.1271058,0.49453157,0.46608987,-0.2890664,0.9509446,0.089457236,-0.028316578,0.26609218,-0.28616163,-0.3112919,-0.69388074,-0.3212714,0.0039833607,-0.4481277,-0.49943265,-0.05062817,-0.27826282,-0.8944204,0.528919,0.04406418,0.6372233,-0.18992598,0.5417085,0.49762794,-0.30077258,-0.06031398,-0.02064567,-0.16898872,-0.40446845,-0.3760393,-0.6518868,-0.54263824,0.14894484,0.8512155,-0.43078765,0.07061676,-0.026559195,-0.0035037498,0.0943905,-0.103010304,0.095114574,0.055546377,0.49318746,0.055221993,-0.5414438,0.24795116,-0.13193664,-0.055859998,-0.5192691,0.30980644,0.603246,-0.63198036,0.38020977,0.41657394,0.08541563,-0.19581155,-0.7128447,0.03516179,0.14846468,-0.20446211,0.46737602,0.19292638,-0.79826456,0.48665315,0.10378923,-0.48930866,-0.6559483,0.33356714,0.053075746,-0.30624437,-0.052323055,0.5057304,0.27564156,-0.23561001,-0.09844845,0.1349033,-0.41424516,0.37689108,0.21053235,-0.060056046,0.32778308,-0.20047794,-0.47685316,-0.77953035,0.07059983,-0.57462555,-0.356717,0.34519,-0.17522141,-0.06890944,0.156712,0.069325946,0.48182628,-0.23172814,0.18346022,0.030629901,-0.21773608,0.53088444,0.44359916,0.49480724,-0.37976456,0.4063438,0.21900596,-0.3297206,0.37784413,0.18442623,0.5189732,0.0025991797,0.23894499,0.0062931855,0.015091014,0.40569344,0.5611267,0.20652172,0.33582917,-0.10911742,-0.20798923,0.27956542,0.0061796904,0.22058773,-0.18528949,-0.508921,-0.16750146,0.0056036157,0.06702502,0.65625745,0.22703613,0.3211134,0.18473168,-0.042759765,0.17044057,0.21077044,0.021525541,-0.8962115,0.35356444,0.3229489,1.0132148,0.09610876,0.23270363,-0.13698448,0.63049203,-0.2693381,0.06883137,0.47645944,0.14808497,-0.35678375,0.68042094,-0.6282442,0.34277728,-0.08722082,-0.067125395,0.19484851,0.09399101,0.33486253,0.94895375,-0.2243475,-0.05598475,-0.122168384,-0.17258969,-0.10804725,-0.062399514,0.083642654,-0.35935575,-0.46629485,0.5629547,0.30126092,0.32842624,-0.39469126,-0.08674454,-0.018730603,-0.20982365,0.17923428,-0.07819184,0.1654236,-0.059038617,-0.14173113,-0.23445146,0.5891112,0.060344253,0.11305191,-0.13288172,-0.15390533,0.006543088,-0.17129874,0.16178355,0.100114614,-0.5490568,0.02159946,-0.15568762,-0.64273345,0.2989898,-0.41532275,-0.005283153,0.13717124,-0.102240734,-0.08364304,0.286652,0.20419486,0.6738803,-0.073088184,-0.2763922,-0.43195668,0.23094667,0.17019787,-0.22813776,0.10006025,-0.19885081,0.119339384,-0.591258,0.40872127,-0.33942205,-0.46602526,0.058411513,-0.35953325,-0.15763906,0.45093155,-0.009018417,-0.10719221,0.17640534,-0.19396333,-0.44545138,-0.0055844425,-0.3292614,0.07362769,0.12628485,-0.22129449,-0.313116,-0.28727785,-0.30086577,0.17086884,-0.009100312,0.3519711,0.24853177,0.057972386,-0.26377138,0.045879956,0.29166776,0.36902612,0.106064275,0.24172334,-0.279746,-0.49805304,-0.38943145,0.24105437,-0.17148,0.19336864,0.07475156,-0.3573119,0.92691296,-0.059492763,1.1421237,0.051532935,-0.32640526,-0.06905996,0.6387464,-0.032478757,-0.017193783,-0.42266136,1.0496633,0.5921971,0.025864696,0.013797951,-0.2605127,-0.11229912,0.112390995,-0.40254968,0.013923287,-0.009252536,-0.5479622,-0.36634558,0.2633103,0.21926981,0.03940038,-0.017419461,-0.16917577,0.26498458,0.14634648,0.31913802,-0.61943024,-0.37827295,0.22876242,0.15628345,-0.24314196,0.23773588,-0.38771507,0.3407012,-0.7793377,0.12259688,-0.5063927,0.17561351,-0.08553517,-0.3779815,0.17729661,-0.27462584,0.31980452,-0.23375298,-0.45545676,0.047503598,0.21327002,0.09589898,0.10660746,0.5125672,-0.24471322,0.1739366,0.1357047,0.5714054,1.2438492,-0.31559798,-0.02150717,0.2796621,-0.3708644,-0.5935123,0.2332439,-0.49017587,-0.007828562,-0.12626635,-0.45546728,-0.1258532,0.24487768,0.08600057,0.200725,-0.015120292,-0.6856648,0.16747841,0.14033459,-0.28933463,-0.11614492,-0.11918925,0.444698,0.89680964,-0.27814877,-0.351798,0.045781843,0.34794775,-0.2217103,-0.5377565,0.11107335,-0.12985498,0.23396228,0.1317945,-0.39595887,0.02568899,0.18287484,-0.47354606,0.16731198,0.26889223,-0.24022913,0.07901821,-0.0010414998,0.16081661,0.64336723,-0.34104827,-0.20272551,-0.600672,-0.49662146,-0.8616828,-0.51999414,-0.12416803,0.30463612,0.012962723,-0.55667424,0.041924775,-0.3974617,-0.2695165,0.0011483788,-0.5236296,0.2552316,0.16909094,0.7052005,-0.48375008,-0.97589177,0.2220786,0.062230572,-0.10222726,-0.7096885,0.5777778,-0.23208007,0.79673743,0.036858644,-0.21589524,0.12009928,-0.5521505,0.1633705,-0.4991145,-0.16155474,-0.92062706,0.24230862 -277,0.5132426,-0.20587578,-0.3901839,-0.2412356,-0.24393067,0.39925066,-0.25731725,0.29161617,0.28347427,-0.2237842,0.042324033,0.00796235,-0.17334096,0.30158898,-0.22034216,-0.8733032,-0.044877674,-0.106335245,-0.727639,0.55040646,-0.536184,0.4215876,0.05436675,0.24298699,0.063174464,0.24662942,0.29546687,-0.008082262,-0.09463754,-0.13092825,0.075741895,0.34293702,-0.6828794,0.20223314,0.06926853,-0.13060787,-0.09727914,-0.38909715,-0.2259853,-0.76032215,0.4649068,-0.6127435,0.4659317,0.05390032,-0.38728186,0.17444697,0.14786415,0.08607909,-0.3006141,0.025280707,0.24975269,-0.2467665,-0.010213274,-0.11135366,-0.1319678,-0.6110503,-0.6416544,-0.040125377,-0.76969075,-0.10681126,-0.25459424,0.25161105,-0.41886976,-0.17956187,-0.13852994,0.6892612,-0.3669843,-0.09188948,0.3473404,-0.30912212,0.044397715,-0.6944335,-0.10379167,-0.1292716,0.24683383,0.16167362,-0.18021949,0.38695845,0.29503724,0.535183,0.14452846,-0.48207992,-0.25937566,-0.2070062,0.14108585,0.36160058,-0.03160562,-0.43593714,-0.2560727,-0.03251125,0.29550898,0.20135999,0.12429092,-0.24531978,-0.012790878,0.016006334,-0.06621535,0.61221343,0.5640994,-0.387051,-0.34615728,0.42913282,0.5262897,0.1473206,-0.15154754,0.02895058,-0.14032859,-0.52704656,-0.19446765,0.34909722,-0.101721086,0.4523492,-0.18139654,0.096976675,0.77542037,-0.25458872,-0.008484292,0.09078132,-0.024049483,0.03733647,-0.10252043,-0.04893371,0.1647776,-0.45635742,-0.12939726,-0.34368333,0.75230044,0.1203841,-0.6927091,0.3537046,-0.3526699,0.18484922,0.071612395,0.7678453,0.9193726,0.38251457,0.17822312,0.946641,-0.3926426,-0.000978748,-0.019753141,-0.3224481,0.112134345,-0.17167841,0.23270443,-0.5566718,0.14183864,0.069354214,0.04813111,-0.031996045,0.42497545,-0.5611543,-0.23296185,-0.010238314,0.4793445,-0.3037173,-0.13534458,0.7630006,0.97525734,0.9795694,0.012947644,1.2053457,0.23352405,-0.015832882,-0.026243674,-0.4322437,-0.45202303,0.24137177,0.3137619,0.38520396,0.44438535,0.021034218,-0.029526567,0.46939087,-0.3312748,-0.071022585,-0.0264953,0.46918732,0.085844584,-0.10035101,-0.25377408,-0.17067783,0.22501001,0.08130493,0.13198854,0.31479844,-0.24192633,0.4161291,0.06829448,0.97594833,-0.07449393,0.13565117,-0.047887847,0.3214164,0.23118669,-0.03191447,0.023400612,0.4397331,0.2998662,-0.036961015,-0.6401757,-0.01880515,-0.457332,-0.4039549,-0.13655359,-0.41046378,-0.16823,-0.103345625,-0.3396191,-0.16209862,0.07606958,-0.33256614,0.45615566,-2.6572392,-0.16587977,-0.21225865,0.2813782,-0.21570824,-0.27806014,-0.2807869,-0.5573687,0.25697103,0.48155424,0.38563377,-0.6522633,0.26978585,0.37587655,-0.45114416,-0.015762258,-0.6695892,0.04987555,-0.13787104,0.5596818,-0.066107996,-0.1983503,-0.055582453,0.33930275,0.72405994,0.2550672,0.078760415,0.22717243,0.55605197,-0.27838224,0.4711117,0.0078393305,0.5136975,-0.3132081,-0.15201798,0.46184438,-0.5960289,0.49233726,-0.08831741,0.1466934,0.46444505,-0.19580005,-0.8545135,-0.46870872,-0.2874146,1.333673,-0.42085066,-0.43180797,0.1972736,0.05303342,-0.09780001,0.0027299703,0.57072324,-0.023710625,0.081436664,-0.62824,0.020608593,-0.14423643,0.028404547,-0.25283945,0.3158379,-0.35098475,0.7451233,-0.12275295,0.47222778,0.24566802,0.16337799,-0.37466052,-0.47009212,0.03464221,0.91788226,0.47718492,0.01657589,-0.13197379,-0.28237692,-0.20428911,-0.30742452,0.06220662,0.7105649,0.73922265,0.076974966,0.18953416,0.33062685,-0.23355958,0.12659429,-0.14891662,-0.3054681,-0.17716987,0.1363612,0.55385953,0.4752838,-0.28468698,0.33622074,-0.009770856,0.11494614,-0.09708508,-0.5608517,0.41417858,0.699519,-0.2834793,-0.16404317,0.41584572,0.3335398,-0.45121717,0.54796016,-0.54365546,-0.3932008,0.71455234,-0.11055014,-0.48109868,0.12316526,-0.3425978,-0.0123076625,-0.79703003,0.38817507,-0.1988403,-0.5236714,-0.5063587,-0.2820915,-3.331853,0.08064154,-0.27766138,0.037978698,-0.20509528,-0.13586071,0.2268392,-0.61930925,-0.513817,0.0138741415,0.07790586,0.5102366,-0.1789302,0.0184834,-0.2572586,-0.3141631,-0.2526747,0.31857154,0.035693742,0.2772145,-0.11749828,-0.2557749,0.32434577,-0.17018303,-0.40718,-0.05230306,-0.41587108,-0.65853083,-0.0011490623,-0.5184734,0.01192869,0.74394625,-0.35671866,-0.030122865,-0.24626032,0.07804727,-0.00026202004,0.2609492,0.18104966,0.19494042,0.12018696,-0.15321824,-0.11434846,-0.42171523,0.3421604,0.031583305,0.36047807,0.6110965,-0.09337635,0.304142,0.59849226,0.5835696,0.028246025,0.854369,-0.01091819,-0.13554773,0.37443766,-0.19709644,-0.2183368,-0.68523675,-0.4378171,0.015339887,-0.5122446,-0.4437746,-0.2666145,-0.38447347,-0.85098904,0.4159736,-0.06533666,0.4061047,-0.42533195,0.3966714,0.39035594,-0.1683461,0.08790496,0.01850239,-0.33836567,-0.45986626,-0.4007395,-0.6232507,-0.5488692,0.29567567,0.88755393,-0.34217393,-0.27772823,-0.11944563,-0.20459591,0.09571756,-0.008734749,0.3102327,0.10735848,0.2831952,0.118569754,-0.67955714,0.49569565,-0.27401918,0.07179336,-0.5452168,0.09754805,0.5681012,-0.57963437,0.5604995,0.44597244,0.08912226,-0.015874136,-0.67706126,-0.1200792,0.29654044,-0.16434231,0.5327744,0.20113815,-0.5368748,0.48498413,0.048200972,-0.25186262,-0.5629016,0.5145111,0.045202628,-0.14632536,0.07734146,0.530969,0.18993686,-0.06424959,-0.044612598,0.36971715,-0.57754415,0.38835323,0.19594008,0.062162016,0.47674438,-0.08119988,-0.5130247,-0.6801052,-0.18328567,-0.66725415,-0.2827238,0.19990936,0.06278723,0.13279694,0.13580634,0.09079407,0.5688021,-0.19664091,0.13163643,0.054525163,-0.30664256,0.68665427,0.59762025,0.4121626,-0.4478312,0.64102435,0.18883155,0.01683959,0.11263867,-0.07880899,0.5309664,0.1732941,0.3731361,-0.0074408976,-0.02134178,0.25544256,0.53518695,0.2658208,0.30992278,0.07551976,-0.3537544,0.25738394,0.0839535,0.17646927,-0.18010172,-0.31927994,-0.1211717,0.105960384,0.14130113,0.4943615,0.16256252,0.3095831,0.098240234,-0.04783873,0.19616003,0.13036211,-0.1799563,-1.1561196,0.30986378,0.2731009,0.70911,0.3820366,-0.03535957,0.060739633,0.4144227,-0.40574,0.023383278,0.54711056,0.048393328,-0.4921479,0.55603725,-0.45903784,0.6006287,-0.2928588,0.060450904,0.06523884,0.2469431,0.3841678,0.8371367,-0.1551505,-0.13161825,-0.09407434,-0.37745965,0.3070138,-0.30082285,0.2815529,-0.53809905,-0.23754588,0.5309729,0.4298221,0.24465384,-0.15604068,-0.14541125,-0.0050073387,-0.2624923,0.17966333,-0.26208237,-0.070440575,-0.24256884,-0.62370074,-0.31497005,0.37804762,-0.1987588,-0.003043727,0.07430612,-0.19203536,0.2469234,-0.09140722,-0.036367543,-0.07857403,-0.74862665,-0.13815647,-0.25521123,-0.66385144,0.3561737,-0.53617823,0.26559445,0.35749295,0.041519698,-0.46255904,-0.025266973,0.12219657,0.7569516,-0.0655088,-0.21550855,-0.4527476,0.08227395,0.23592806,-0.3791856,0.040995333,-0.23261572,0.31428868,-0.5093518,0.4422526,-0.38087174,-0.29162642,-0.11539249,-0.28892526,-0.15853582,0.53647345,-0.33733508,-0.103839144,0.01812039,-0.15026553,-0.1435112,0.10919941,-0.39763257,0.31951335,0.048328295,-0.0019010444,-0.08278193,-0.1690273,-0.009087475,0.29380593,0.08322593,0.0074851355,0.4125576,-0.036427684,-0.47089857,0.028511949,0.20993654,0.49234647,0.30072436,0.0037050168,-0.37684292,-0.38824204,-0.44761154,0.47376123,-0.19093736,0.15015984,0.11013939,-0.47826445,0.86020446,0.11699426,1.1934065,0.1334456,-0.3478367,-0.055123515,0.70976615,0.13382418,0.06970655,-0.31506407,0.97371763,0.5232597,-0.16681153,-0.12662353,-0.5190557,-0.034099396,0.24728544,-0.43375424,-0.18749514,-0.2576766,-0.6647925,-0.13663583,0.19539373,0.117346145,-0.005953312,-0.1429073,-0.3090266,0.11074201,0.21077436,0.5073777,-0.6357212,-0.13509555,0.27108485,0.059121355,-0.08224145,0.24405119,-0.39317033,0.42754677,-0.8660352,0.2708903,-0.33283654,0.119829245,-0.13466407,-0.29626915,0.27971324,-0.01632762,0.2503793,-0.2724839,-0.56911534,-0.09241776,0.54152095,0.35062817,0.2396258,0.7199857,-0.2642147,-0.12390446,0.09126508,0.5888625,1.3744768,0.03958664,0.021272313,0.18601039,-0.34689537,-0.8646332,0.12770186,-0.59652257,0.010106995,-0.19293782,-0.29120365,-0.36221126,0.3302971,0.09515678,0.050161894,0.09451272,-0.6354393,-0.30909175,0.23448631,-0.35691544,-0.17092495,-0.3008484,0.19812168,0.7429244,-0.53104204,-0.31238538,-0.12656608,0.38318792,-0.2792696,-0.7004627,0.1586097,-0.21531053,0.4545992,0.17403619,-0.26515144,-0.0036601503,0.3566698,-0.52788234,0.23942131,0.40489987,-0.2968222,-0.060632993,-0.14194365,0.033640996,0.85887057,0.09607807,0.19188179,-0.51263314,-0.34533086,-0.88017386,-0.32439786,0.15718533,0.039325994,-0.10180918,-0.5138111,-0.12431045,-0.1964569,0.08326359,0.061341826,-0.5514437,0.3236056,0.08981296,0.41788575,-0.09343829,-0.86895114,0.011692842,0.0325492,-0.11179741,-0.5515013,0.6029986,-0.19077459,0.64843017,0.18276101,0.019948727,0.078195095,-0.76706225,0.28184783,-0.3351192,-0.21785161,-0.53671646,0.2671424 -278,0.23145445,-0.009363557,-0.5582789,-0.16954371,-0.22821675,0.13257079,-0.12859263,0.0925191,0.27187538,-0.16909552,-0.032713674,-0.2871717,0.018246353,0.42203125,-0.003671776,-0.79432875,0.05206568,0.06343984,-0.6241165,0.27444932,-0.50046855,0.3354211,0.087092176,0.45370868,-0.17403343,0.4008548,0.30902964,-0.11846461,0.0029663572,0.046667542,-0.19737138,0.14370015,-0.538283,-0.06936648,-0.043421127,-0.27403122,-0.0537891,-0.3704145,-0.41839963,-0.5531065,0.46391037,-0.76514274,0.37076932,-0.04260769,-0.2810386,0.015971167,0.07469871,0.17071728,-0.39346585,0.19100164,0.24383874,-0.24362648,0.020994714,-0.0089995265,-0.39907074,-0.63010937,-0.5965679,0.018460054,-0.52120346,-0.1936406,-0.22901069,0.17400467,-0.38422212,-0.006982646,-0.06019069,0.35252014,-0.39290524,-0.10578104,0.37948796,-0.4113397,0.15191732,-0.3328584,-0.10003046,-0.09135725,0.2950746,0.043204896,-0.13298579,0.09038316,0.4309731,0.6044818,0.092334494,-0.19492066,-0.32486895,-0.18746968,0.15646367,0.6282977,-0.035118695,-0.27888307,-0.17879613,-0.07286803,-0.07466348,0.24056439,0.109405585,-0.41712853,-0.04294942,0.093739934,-0.20026599,0.17701033,0.44768327,-0.470269,-0.3982389,0.35439935,0.29898039,0.12019281,-0.0914394,0.22518887,0.0719325,-0.54857594,-0.27815908,-0.025223702,-0.10405771,0.64698374,-0.17242433,0.34745649,0.7996913,0.02792698,0.07564153,-0.31209686,-0.19617596,-0.12416097,-0.17158036,0.13788517,-0.012328037,-0.41621166,0.17814705,-0.034053486,0.5394943,0.19906278,-0.76447064,0.5340017,-0.556023,0.22500817,-0.086239524,0.63827175,0.7227512,0.17663704,0.23765804,0.87190163,-0.5253693,-0.005262328,0.0064788377,-0.4597947,0.17816223,-0.08153339,0.12432452,-0.4576958,0.1062407,0.23838423,0.07333853,0.1373302,0.36342806,-0.37514946,-0.0041216356,0.026413266,0.8106751,-0.35560375,-0.13859022,0.6121072,0.9618759,0.8597541,0.07377785,1.4753801,0.36296773,-0.17786898,0.14772391,-0.33187765,-0.6001938,0.11625909,0.29389432,0.35878462,0.374019,0.09779961,0.034188617,0.49238124,-0.12504043,0.12491894,-0.08266645,0.041504826,0.19143721,-0.13772239,-0.20934296,-0.1977237,0.14586131,0.095944665,0.029219177,0.19923356,-0.06508358,0.40474457,0.03991801,1.5733042,0.048093643,0.21243067,0.026830545,0.42499354,0.17792644,-0.07458927,-0.08896788,0.44268394,0.21980432,0.06049029,-0.5278666,-0.0116682565,-0.27249768,-0.5254522,-0.18417202,-0.3525742,-0.19308588,-0.04316438,-0.52850825,-0.05999338,0.06518905,-0.35448188,0.46312752,-2.6417944,-0.24222098,-0.19060688,0.34058395,-0.2640289,-0.18008812,-0.28770676,-0.36292055,0.22001727,0.55875224,0.28283387,-0.694956,0.42418766,0.27432123,-0.2685252,-0.21314801,-0.4953084,0.041504435,-0.02078505,0.34669158,-0.045330606,-0.23756354,-0.13936569,0.34016052,0.6377777,0.11515672,-0.08579738,0.17461678,0.5873403,0.08159139,0.46180847,0.024549235,0.56055915,-0.09420212,-0.08255688,0.4064464,-0.41464075,0.39164236,0.0076846564,0.17403606,0.27378866,-0.34013766,-0.83267486,-0.65842295,-0.46857437,1.2061712,-0.41483146,-0.32735398,0.4268702,-0.1342059,-0.25143448,-0.021561358,0.596686,-0.16641276,0.11914352,-0.6985851,0.08324779,-0.1660455,0.17336296,-0.00785133,0.043085583,-0.24992874,0.80226403,-0.07931734,0.4839487,0.36340538,0.15262029,0.07949746,-0.3438166,0.09801947,0.7488329,0.3590071,0.13016237,-0.110056005,-0.07268435,-0.11632722,-0.25402504,0.07961813,0.55165356,0.60345274,-0.0076762266,0.15698598,0.24261053,-0.012201503,-0.021787878,-0.123840876,-0.25019753,0.090719566,0.05918566,0.47622636,0.7069054,-0.3741,0.2757969,-0.09939416,0.12124036,-0.16514038,-0.45752907,0.5261883,0.79528457,-0.16461898,-0.09328121,0.37364727,0.34163094,-0.45888567,0.357362,-0.5916973,-0.23659693,0.6843496,-0.11281093,-0.39087847,0.21402399,-0.2801552,0.00027410686,-0.86811036,0.26294914,0.1750716,-0.40320715,-0.51403326,-0.27967614,-4.4950185,0.10225999,-0.18526812,-0.13812509,-0.13760053,-0.012997559,0.4065496,-0.6050057,-0.6207759,0.0625685,0.01745971,0.41665202,-0.07688614,0.2678681,-0.32680917,0.024705933,-0.24673054,0.27654293,-0.021730285,0.35006994,0.09280316,-0.36108106,-0.049855884,-0.2840156,-0.5269205,0.0009378344,-0.6327223,-0.49194476,-0.1630537,-0.40668264,-0.21566382,0.645712,-0.42108536,0.0008144932,-0.38294727,-0.083821096,-0.40859452,0.39913654,0.26564452,0.08887308,-0.0111034,0.056599755,-0.18582766,-0.21274294,0.2315088,0.09225663,0.29233688,0.46096426,-0.026391953,0.11695484,0.47379836,0.58633476,-0.07350344,0.53068525,0.26499113,-0.016660614,0.41784337,-0.35280338,-0.1543541,-0.6781312,-0.47282353,-0.13813134,-0.47766295,-0.6419017,-0.2785096,-0.3197164,-0.77968884,0.29228207,0.090681635,0.09562083,0.0015735626,0.12996532,0.41385564,-0.17895497,0.08315345,-0.048160758,-0.16572626,-0.60099953,-0.40488562,-0.5267149,-0.59246504,0.2971845,0.99169606,-0.037502546,-0.18614075,-0.014008184,-0.33184072,-0.06279528,0.09328877,0.35553908,0.16236205,0.2711089,-0.121104226,-0.7554353,0.480642,-0.28229204,-0.13182405,-0.7199136,-0.14553468,0.5885606,-0.6625319,0.7391706,0.3132132,0.29622173,0.33746368,-0.51042837,-0.4276042,0.057616323,-0.1442359,0.41375613,0.1986264,-0.6109344,0.46337953,0.058078755,-0.12426666,-0.5467473,0.44034767,-0.095588036,-0.23097238,0.20299038,0.27646226,-0.021566238,-0.15956889,-0.08657404,0.17845353,-0.5409075,0.23083405,0.43624464,0.1373289,0.69748455,0.008753151,-0.17580707,-0.4871199,-0.1321838,-0.3888485,-0.19218354,0.01758334,0.13227496,0.18057561,0.0036745903,-0.16520275,0.34927887,-0.34575075,0.20460579,0.013212289,-0.2320607,0.28847197,0.48172122,0.26833802,-0.55879176,0.63279194,0.02382456,-0.013631408,-0.010585657,0.075239524,0.48127413,0.339052,0.27306303,-0.108052686,-0.19832861,0.07050019,0.8260956,0.2609891,0.28119504,0.14101006,-0.30029565,0.4767959,0.18412113,-0.038354933,-0.12902388,-0.40929016,0.020572288,-0.12518881,0.18973939,0.32859698,0.15979555,0.3318824,-0.04624647,-0.19073853,0.20040295,0.20092826,-0.06407888,-0.8848257,0.24505053,0.30743343,0.73695433,0.5397125,-0.054699536,0.07785439,0.39660814,-0.31073388,0.13261083,0.3516267,0.0025060389,-0.6581925,0.48608676,-0.46558738,0.42157394,-0.16022475,-0.05495014,0.18692581,0.28912768,0.23845135,0.7940397,0.02065594,0.046301913,0.07926922,-0.26689094,-0.04687813,-0.27199724,0.055036772,-0.59368736,-0.25240955,0.5881119,0.4657195,0.26870707,-0.40410948,-0.078658685,0.004940018,-0.11489851,0.026614103,-0.13469787,0.054167587,-0.14018808,-0.7068148,-0.40508646,0.583715,-0.063531466,0.0342194,0.09625184,-0.49710566,0.23337345,-0.2401552,-0.07185093,-0.0021677783,-0.5764381,0.018306818,-0.22410734,-0.64606464,0.3266059,-0.3031401,0.33779842,0.1472805,-0.0056156344,-0.33839735,0.30667183,0.037287258,0.9468637,-0.019571027,-0.021709297,-0.38148436,0.00359737,0.37299934,-0.28551146,-0.2700067,-0.44281915,0.02962571,-0.26452306,0.50878817,-0.18101814,-0.17751952,0.08047997,-0.23548743,-0.03704503,0.4625899,-0.26385167,-0.20532751,0.19710515,-0.025164505,-0.32121223,0.08426776,-0.5218106,0.38554904,-0.078272685,-0.033833876,0.097524405,-0.06113896,-0.10854716,0.32471174,0.085793674,0.12125405,0.36162123,-0.048605297,-0.28388914,-0.11374096,-0.03982205,0.42452118,0.1886103,0.0057397485,-0.23757364,-0.5054969,-0.3518459,0.21630737,-0.11768006,0.1309624,0.2029494,-0.45840195,0.63285726,0.3259376,1.1145824,0.15327676,-0.32892755,0.09749186,0.51999557,0.1312848,0.12182864,-0.38056055,0.86094946,0.64743054,-0.20365776,-0.29488248,-0.26430854,-0.21728945,0.22625473,-0.22228721,-0.24474518,-0.10239165,-0.7756596,-0.23372187,0.07395707,0.1636201,0.1780242,-0.005387408,-0.06695388,-0.019158361,0.13112389,0.3930978,-0.43266425,-0.33225998,0.4231877,0.17442906,0.009009003,0.13466808,-0.24569504,0.529727,-0.5834416,-0.008617686,-0.53135115,0.15980276,-0.12503621,-0.26909098,0.16928016,0.10171033,0.45530823,-0.15439722,-0.24556944,-0.22557256,0.61978656,0.23180728,0.33058444,0.75008476,-0.18378387,-0.085930444,0.0509907,0.56429297,1.4765676,-0.17594932,0.09726155,0.3965622,-0.31849846,-0.5497356,0.05493007,-0.45284218,0.0179833,-0.120588906,-0.37539244,-0.43619114,0.30078173,0.013149278,-0.13049963,0.14204773,-0.40877387,-0.33469492,0.37398693,-0.3075946,-0.3169732,-0.44741938,0.2161769,0.85772806,-0.37935358,-0.24367662,0.18629286,0.21467316,-0.25096673,-0.55969,0.13373365,-0.21434225,0.3764245,0.18045545,-0.4050133,0.037484027,0.27276683,-0.3970843,0.2638262,0.29667354,-0.35167366,0.11412395,-0.3676397,-0.2706081,1.1700188,0.04040704,0.04857164,-0.7550408,-0.41964203,-1.0180337,-0.39300236,0.3911038,0.10896073,-0.16831705,-0.32722783,-0.14685345,-0.042952288,0.098271124,0.0034671447,-0.4536619,0.43698883,0.12567674,0.5963388,-0.058816902,-0.8189311,-0.033756495,0.036828723,-0.33976254,-0.4690457,0.6008158,-0.13092259,0.6335104,0.116472736,-0.03804618,0.29409957,-0.604931,0.28929296,-0.3729282,-0.24152379,-0.79174,0.07594408 -279,0.52070415,-0.0655786,-0.53350294,-0.3629255,-0.28516334,0.004829384,-0.2915905,0.48549446,0.33400017,-0.2915897,-0.033658195,-0.06376381,0.08457661,0.35975912,-0.19240959,-0.7688421,0.18576291,0.027687248,-0.45281935,0.32380268,-0.533924,0.2533892,-0.07226106,0.5557346,0.124541275,0.21725042,0.16805845,0.05707741,0.016262898,-0.10289644,-0.11079005,0.20779954,-0.450803,0.059586473,-0.1408751,-0.3791834,-0.12457189,-0.6139983,-0.30479938,-0.7108605,0.4381201,-0.944457,0.518042,0.014104479,-0.43471014,-0.029846784,0.10477241,0.21906564,-0.30448788,0.017746128,0.16838518,-0.05969043,0.05271158,-0.0520681,-0.39539158,-0.53938377,-0.5373522,-0.04949818,-0.39367566,-0.11176216,-0.1731411,0.14248808,-0.27360418,0.11427668,-0.11375295,0.283548,-0.38994408,0.13944,0.3314746,-0.23336044,0.3258229,-0.39452076,-0.171479,-0.14581896,0.12300294,-0.1521486,-0.33744657,0.24074763,0.45039734,0.45534912,-0.11172022,-0.13715893,-0.1434138,-0.07435065,-0.023661284,0.54083055,-0.17296599,-0.44808608,-0.27255142,-0.08544663,0.47198117,0.3620242,0.124830484,-0.303151,-0.062772766,-0.0439449,-0.25779918,0.41458356,0.57675135,-0.22542554,0.016385445,0.23923896,0.11461711,0.2110394,-0.31114167,0.25241834,0.023414103,-0.6343314,-0.20380595,0.062007073,-0.018132769,0.64146084,-0.20007707,0.31058094,0.8146448,-0.04987899,0.090318255,0.003353889,-0.03440969,-0.21750389,-0.34687635,-0.23653457,0.19353603,-0.5359468,0.22132967,-0.20763633,0.6906093,0.22128065,-0.8389294,0.26552957,-0.49716923,0.061795056,-0.2728588,0.46465027,0.7506341,0.3057151,0.22890833,0.8666976,-0.55015653,0.0020582927,0.18689093,-0.3776531,0.11778737,-0.05900442,0.1438454,-0.49243176,0.0149521,0.3016537,0.022269057,0.2980102,0.35051024,-0.36684415,-0.13928145,-0.033294223,0.58998907,-0.37173927,-0.07173562,0.90415,1.1094193,0.9759419,0.2514907,1.4036181,0.25194532,0.06410829,0.12713057,0.10040493,-0.7559621,0.27278298,0.34855753,-0.15832523,0.31007868,0.037758388,-0.095304064,0.29114878,-0.15623012,-0.1150212,0.06248353,0.17127301,0.03103033,-0.192658,-0.45579916,-0.3691159,0.052072305,0.13973221,-0.021394338,0.22168042,-0.18628594,0.45935282,0.0803167,1.1301283,0.11896922,0.019525928,0.08688529,0.45407695,0.30330208,-0.15123743,-0.003390404,0.33400604,0.4102759,0.023848873,-0.5393436,-0.047655124,-0.23567723,-0.4340364,-0.14443508,-0.46667963,-0.19486769,-0.13976176,-0.41289192,-0.13623287,-0.046453707,-0.27244616,0.49542385,-2.6045823,-0.27072096,-0.28700837,0.37764776,-0.08038844,-0.22856101,-0.25883907,-0.35646528,0.36145777,0.48243946,0.38291675,-0.6642462,0.20008478,0.4162962,-0.39981124,-0.025298063,-0.72486234,-0.016245283,0.05832263,0.12600623,-0.031312607,-0.04134782,-0.0035862648,0.44220832,0.6746777,0.26787683,0.056488745,0.15402333,0.6074102,-0.060541015,0.44074866,-0.18127841,0.499293,-0.23069048,-0.10096991,0.16280511,-0.553943,0.3082443,0.08838688,0.2031483,0.50972486,-0.5632901,-0.89066434,-0.6607644,-0.35461363,1.2730033,-0.35324267,-0.3520512,0.32046348,-0.31926617,-0.357893,0.00034903103,0.6988631,-0.14556974,0.024810953,-0.7531987,-0.04516939,-0.14004105,0.09452196,-0.12636988,0.09250377,-0.20940205,0.6389631,-0.03929604,0.5445879,0.2750603,-0.060760442,-0.17682719,-0.5661256,0.026724437,0.6301385,0.42516702,0.17365351,-0.25570932,-0.01967145,-0.3660649,-0.1534461,0.18108211,0.5977086,0.7337833,-0.08581262,0.12698203,0.26396784,0.052909262,0.0140061425,-0.06731792,-0.25876853,-0.05070734,-0.042349238,0.6568934,0.8173749,-0.28827035,0.08906534,-0.19507772,0.30021903,-0.24810754,-0.45859057,0.4686336,0.8215122,-0.16494992,-0.20760764,0.43184245,0.48711485,-0.45638937,0.42965883,-0.47882476,-0.28318658,0.5701366,0.044367008,-0.4304443,0.17866786,-0.42908776,0.102678485,-0.8746029,0.29684895,-0.07720094,-0.6567535,-0.40204427,-0.21711022,-3.7670135,0.32254773,-0.11220991,-0.24880594,-0.35998207,-0.28252766,0.34999365,-0.47285625,-0.72848916,0.1116031,0.023985185,0.67000043,-0.13143604,0.21311869,-0.32879683,-0.13436005,-0.47650433,0.081642516,0.07575432,0.41854975,0.028575016,-0.226478,-0.09409742,-0.14395243,-0.56183624,-0.05772653,-0.6074788,-0.52549845,-0.035475694,-0.4211419,-0.1721263,0.71783984,-0.30112666,-0.030833466,-0.18008186,-0.13889788,-0.32467794,0.36238772,0.16225569,0.016635804,-0.104946285,0.17429723,-0.06708045,-0.18291743,0.29430187,0.03352531,0.2599705,0.1952443,-0.24296334,0.26740116,0.582251,0.5688435,-0.041986145,0.84169775,0.1433716,0.07686801,0.37857988,-0.22148173,-0.36421072,-0.49636263,-0.25462288,-0.15054895,-0.42401668,-0.3619538,-0.11704744,-0.35230318,-0.8054809,0.3033418,0.045688484,0.13810423,-0.12606731,0.113563724,0.3114597,-0.15846325,0.08071894,0.01738109,-0.18897992,-0.47567877,-0.27910936,-0.6170524,-0.4423189,0.18228103,1.0315483,0.01703896,-0.035126273,0.041057423,-0.3757809,0.025017908,0.053513046,0.2262349,0.0714206,0.3035411,-0.14273068,-0.69135326,0.36959934,-0.27967766,-0.21463369,-0.6741226,-0.13208306,0.82310283,-0.61398417,0.5731734,0.47445023,0.18092325,-0.022849688,-0.6573187,-0.23996077,-0.082530946,-0.21427602,0.5216982,0.26475817,-0.62087893,0.46335787,0.20869002,0.08257945,-0.52764684,0.6750527,-0.035800792,-0.030720444,0.06147889,0.31540298,0.043437406,-0.14145438,-0.0076776925,0.34748587,-0.44124264,0.25465816,0.33301866,0.17636098,0.47636122,0.15014863,0.046418622,-0.6153527,-0.15827553,-0.5411759,-0.22089785,0.040955763,-0.06704023,0.21100834,0.02253681,0.0025289059,0.28757524,-0.45994323,0.20703155,-0.17558318,-0.30489105,0.43441552,0.51159877,0.47967482,-0.43961674,0.7279393,0.098865904,0.07389788,0.055921335,0.06724205,0.39722478,0.22193164,0.407857,-0.06419944,-0.18922496,-0.06717538,0.7125402,0.13323382,0.31564507,0.27549368,-0.0771277,0.30595472,0.26476848,0.24475336,0.02048531,-0.34993613,-0.095205575,-0.31086105,0.21840522,0.4541368,0.13391879,0.21131001,-0.03745347,-0.30387354,0.0804719,0.11624265,-0.070126764,-1.477752,0.419491,0.32772538,0.58505285,0.42703635,-0.06190697,-0.10008895,0.4804807,-0.09265811,0.12762177,0.4425321,0.20125414,-0.49608934,0.51754546,-0.44295403,0.4093467,-0.17210084,0.008385392,0.04943084,0.22026491,0.46664846,0.80901533,-0.01495376,0.062924065,0.12671468,-0.49035153,0.14504395,-0.5976485,-0.14301051,-0.45225498,-0.25445905,0.7156662,0.4624494,0.26287997,-0.32099152,0.0028240085,0.06441911,-0.09392312,-0.0709194,-0.069640115,-0.07239577,-0.18554547,-0.7921986,-0.28301385,0.54564327,0.0810371,0.041748002,0.036163215,-0.4019333,0.23769388,-0.09080967,0.114953026,-0.08842479,-0.7575753,-0.18709454,-0.46632844,-0.5835154,0.37655446,-0.4047867,0.23502082,0.290327,-0.0039951284,-0.1513558,0.1697986,0.053157944,0.8668225,-0.121270455,-0.27169263,-0.3480562,-0.070427254,0.4187062,-0.36761364,-0.22639774,-0.40299994,0.13615492,-0.411981,0.421807,-0.12258467,-0.18815543,0.1402188,-0.07504703,0.1279442,0.29471233,-0.419838,-0.14333938,0.13193703,-0.019071983,-0.2602684,-0.04386787,-0.36169192,0.31557643,0.16829793,-0.1145769,0.0079069,-0.048034254,-0.0032826113,0.23647195,0.047447227,0.34425977,0.42867282,0.09705083,-0.1901258,-0.017798148,-0.06712636,0.55951744,0.13178164,-0.15906286,-0.333005,-0.44207904,-0.22327684,0.347076,-0.12579928,0.21282199,0.1412176,-0.22263974,0.67237663,0.086199924,0.95031637,0.026363032,-0.4587954,0.033890724,0.39082286,0.035899326,-0.042901166,-0.18003082,0.8157214,0.4721101,-0.3185169,-0.18431924,-0.3340855,-0.010783257,0.16117981,-0.24910952,-0.25985977,-0.08619071,-0.8011743,-0.08792515,0.124421544,0.13891198,0.18973152,-0.08894908,0.10343843,0.11612462,0.048312314,0.38707623,-0.56485695,-0.05816279,0.12920438,0.2714686,0.15631205,0.047191355,-0.3429709,0.33480608,-0.702204,0.05359237,-0.5239128,0.15828635,-0.07968329,-0.349998,0.07599049,0.03978865,0.385406,-0.29182658,-0.21809545,-0.28271887,0.58247113,0.25064695,0.2978807,0.5160316,-0.13269068,-0.1980696,0.120111145,0.58221424,1.3364828,0.024707876,0.19076723,0.31326184,-0.42169425,-0.6279917,0.10720838,-0.5133956,0.28775424,0.072737165,-0.15091498,-0.43474352,0.23165125,0.1423004,0.14997014,0.15528764,-0.46913,-0.36283916,0.49945885,-0.2179166,-0.37885025,-0.43896464,0.17361487,0.52411723,-0.30834323,-0.2183864,0.06330102,0.19656856,-0.15276517,-0.57617193,0.18076184,-0.32347396,0.4225359,-0.020665947,-0.31883547,0.014192109,-0.039959185,-0.38753584,0.31342676,0.2195377,-0.31867245,0.12677428,-0.38517645,-0.24176484,0.9978268,-0.15399057,0.0743686,-0.8460999,-0.49266788,-0.80347854,-0.32785445,0.11872636,0.25529224,0.012375405,-0.46337363,-0.096494675,0.026869927,0.13279673,0.08524053,-0.3084849,0.52164924,0.07236807,0.60619736,0.0052044024,-0.9148639,0.07135351,-0.012836965,-0.35057515,-0.51282036,0.5452126,-0.06012667,0.70642304,0.1744315,0.024374459,0.108839154,-0.5220873,0.25986654,-0.30471,-0.11301964,-0.64480597,0.25844243 -280,0.38585696,-0.22826797,-0.3118259,-0.028173767,-0.36128557,-0.06341594,-0.22462751,0.37177643,0.053329192,-0.25322318,0.113442235,-0.23243767,-0.0747551,0.46217245,-0.055850826,-0.58142555,-0.0556983,0.21418765,-0.7720632,0.47095028,-0.47743994,0.31943735,-0.044569906,0.2337326,0.11522865,0.20669614,0.15195277,-0.06658156,0.08051782,-0.021297207,-0.16378628,0.08759861,-0.7238414,0.03293892,-0.07538373,-0.47269756,-0.0001305892,-0.40591204,-0.46051452,-0.6635672,0.42227536,-0.6385028,0.5440425,-0.016064541,-0.23915097,0.3838369,-0.014838344,0.41477197,-0.16254187,-0.060591143,0.31201226,0.08937312,0.09891576,-0.031067299,-0.06963369,-0.16117916,-0.5616241,0.20120867,-0.6550518,-0.3072772,-0.22755705,0.08620911,-0.2862003,0.08344467,-0.15996419,0.23177862,-0.4392076,-0.0003440655,0.2066204,0.047910087,0.39149398,-0.5368671,0.06110427,-0.0005637224,0.29049727,-0.32474282,-0.08344884,0.36747366,0.17415749,0.5349014,-0.12757236,-0.2337847,-0.22999078,0.05819691,-0.035377637,0.5790507,-0.21535493,-0.17879637,-0.21630232,0.06891166,0.072769456,0.047925882,0.013281242,-0.44289398,-0.15796882,0.011740474,-0.17481364,0.34852225,0.47567955,-0.33085153,-0.41219428,0.44145903,0.6142543,0.25640884,-0.016881568,0.07692206,0.095250055,-0.5999793,-0.1909993,0.06870634,-0.10692864,0.30779508,-0.09288403,0.27676222,0.5287254,-0.15000953,-0.00014780118,0.023539312,-0.09710283,0.08844945,-0.009228092,-0.13862415,0.122028835,-0.52586067,0.10863734,0.0063155983,0.69336754,0.26312354,-1.0324047,0.482663,-0.53464574,0.23886794,-0.21814886,0.5027022,0.85115784,0.29208195,0.10596656,0.66108704,-0.4003204,0.1672634,-0.017906679,-0.33975917,0.10304761,-0.2662551,-0.087527186,-0.636747,-0.24176253,-0.15784399,-0.09664365,0.11327824,0.35756794,-0.61447626,-0.005023663,0.058565255,0.85176057,-0.32116002,0.07201638,0.51521474,0.98029524,1.0519128,0.040070277,1.0615811,0.26499084,-0.26612785,0.43020284,-0.49504006,-0.7660283,0.1646482,0.3784278,0.18008439,0.35756442,0.063966155,-0.17575312,0.4127747,-0.21318339,0.14192517,-0.25406408,0.2232592,0.023463763,-0.0745122,-0.3364689,-0.2614149,-0.06842144,0.068476915,-0.19492912,0.26192573,-0.216503,0.16848649,-0.14832078,1.7551539,0.058807313,0.08901928,-0.0512659,0.50796026,0.16201332,-0.19618379,-0.3332078,0.12217785,0.36137456,0.18133554,-0.5461387,0.19314322,-0.21509251,-0.26280028,-0.21667616,-0.3147793,-0.009407144,0.022599759,-0.32723382,-0.124309935,0.07259009,-0.22771376,0.47563988,-2.7092996,-0.27337974,-0.036840964,0.28333658,-0.32073924,-0.27811965,-0.16395529,-0.48802802,0.39658806,0.43765905,0.5738473,-0.5172056,0.4205747,0.30336234,-0.4709272,-0.026895102,-0.54182607,-0.2574784,0.15639485,0.3121609,0.012172859,-0.08198082,0.1019494,0.31953257,0.31437236,-0.019473631,-0.13200404,0.27580982,0.3924568,0.215213,0.4225829,-0.18457787,0.41437656,-0.18110792,-0.15861845,0.37206113,-0.05605016,0.09797314,-0.13684556,0.026203077,0.37824932,-0.554183,-1.1066761,-0.62227523,-0.17110196,1.1228496,-0.085169144,-0.41157582,0.3623734,-0.20998643,-0.019750841,-0.114903346,0.21914893,0.003728087,-0.19710754,-0.74417603,0.18183804,-0.0003869992,0.27400473,0.11266388,-0.12009184,-0.4399025,0.5440095,-0.050673053,0.27643636,0.33667472,0.22120523,-0.053994242,-0.40767053,-0.0019238546,0.83366483,0.28768322,0.107301205,-0.25569585,-0.15782693,-0.35151953,-0.13720319,0.028869757,0.18998197,0.7646183,-0.0229565,0.11692445,0.25460657,0.024444746,0.03903342,-0.1457146,-0.38920718,-0.033482857,-0.13121557,0.57631916,0.45463058,-0.06836903,0.62828094,-0.022667289,-0.07089126,-0.037504423,-0.46080494,0.36015198,1.0308225,-0.095654234,-0.15053143,0.41906154,0.30323836,-0.25002593,0.46191108,-0.50357604,-0.20795393,0.4159319,-0.2641146,-0.35676634,0.21786682,-0.2863719,0.022345837,-0.7480104,0.35926837,-0.256918,-0.41635063,-0.41643965,-0.06521039,-3.3132145,0.32101753,-0.28557765,-0.12618777,0.046006925,0.027197931,0.053130455,-0.48669222,-0.43261644,0.13245577,0.030968208,0.71078897,-0.13796574,0.22076324,-0.13596264,-0.15387252,-0.5816707,0.06989597,0.12066985,0.37632772,0.04347592,-0.41016307,-0.035373643,-0.2739712,-0.43289095,0.05500467,-0.5366204,-0.4558819,-0.18217601,-0.54899573,-0.28215298,0.65322673,-0.063643344,-0.036545064,-0.3380537,-0.11279417,-0.04397194,0.39495194,0.06593116,0.15297712,0.108311705,-0.10341994,-0.20612127,-0.30644912,0.17357372,0.14990409,0.25746238,0.30298233,-0.024057636,0.18841259,0.72494423,0.6516092,-0.03110086,0.7488741,0.6283251,-0.2897131,0.24054003,-0.4219867,-0.03968419,-0.44421598,-0.32096216,-0.014955505,-0.33273312,-0.5247651,0.048426434,-0.3587425,-0.5589003,0.4123122,-0.24414675,0.20106679,0.14585368,0.17678039,0.386997,-0.17473032,0.059911866,-0.26089802,-0.041366894,-0.504021,-0.19582139,-0.64377797,-0.6196541,0.123155676,1.0708916,-0.27436325,-0.03343803,-0.0023098404,-0.17176083,0.019999009,-0.18927087,-0.039659288,0.48217303,0.05778877,-0.084468655,-0.84466565,0.41372606,-0.05747594,0.070933394,-0.6111567,0.11893476,0.5222231,-0.56207013,0.40061662,0.16009416,0.14381093,0.1579254,-0.4221103,-0.22002414,0.11400933,-0.27029032,0.35353664,-0.058539968,-0.73834795,0.53795606,0.4098185,-0.3814205,-0.7902063,0.44605148,0.13689524,-0.37779596,0.027323525,0.20078363,0.13047005,0.046881992,-0.23432504,0.20656028,-0.47323292,0.38661635,0.24191254,-0.0020760251,0.2487264,-0.12941232,-0.21209964,-0.44135284,0.13063493,-0.34684926,-0.19335444,0.1510161,0.16598687,0.066035345,0.17778006,0.23448262,0.5134559,-0.17792842,-0.023732327,-0.034984075,-0.27368662,0.24776171,0.3661661,0.44942024,-0.52858037,0.39287668,-0.08173181,-0.22699663,0.05396668,-0.02061433,0.41807762,0.0155507345,0.18544634,0.025992375,-0.21829888,0.18254271,0.82421345,0.061214678,0.3294017,-0.11299564,-0.19079638,0.24656034,0.16150907,0.17258194,0.13195273,-0.41303867,0.13852245,0.069542974,0.25390774,0.55867094,0.091492414,0.058185633,-0.16774672,-0.43139744,-0.07161217,0.11992944,-0.08248111,-1.0762902,0.29582813,0.18926011,0.7187191,0.5399166,0.072442845,0.11481195,0.6074966,-0.14415401,0.14063805,0.2818065,-0.23340549,-0.51652485,0.4103033,-0.80427814,0.45554936,0.00557148,-0.059303764,0.19795102,0.09730869,0.43542054,0.6336868,-0.2269027,0.061022997,-0.059578504,-0.36473292,0.10448758,-0.36757568,0.14213619,-0.48814788,-0.26921052,0.56371075,0.4265386,0.0018518636,-0.09105854,0.016386902,0.087876625,-0.12873934,0.20428218,-0.026590105,-0.026926903,-0.00236094,-0.6891434,-0.05748788,0.51825535,-0.040227547,0.060330693,-0.15773703,-0.08484332,0.21961817,-0.3451174,-0.07619403,-0.046945572,-0.7484216,0.10642259,-0.24206796,-0.1178433,0.40240467,0.090877295,0.2356326,0.24967256,0.07106553,-0.38852963,0.5472979,-0.057861824,0.61680263,-0.12307942,-0.07299944,-0.37924004,0.11224422,0.21509662,-0.12694168,-0.009361029,-0.07841914,-0.07546654,-0.45844942,0.51465935,0.041444607,-0.2996701,0.22987534,0.036758646,0.12364351,0.54881036,-0.16955763,-0.08504529,-0.25555217,-0.18550918,-0.283474,-0.08578674,-0.045446552,0.030943645,0.36041233,-0.20686539,-0.09614631,-0.18075283,-0.13917543,0.7312647,0.016923595,0.468876,0.1911597,0.24332125,-0.39005846,-0.09400452,0.20430698,0.4054887,-0.12302829,0.053053934,-0.31453174,-0.2302807,-0.3006863,0.15770207,-0.117779806,0.23500241,0.0075456477,-0.3092759,0.59118396,0.05917041,1.2184913,0.029727807,-0.09250657,0.14971565,0.40458503,0.03353287,-0.061072662,-0.57892036,0.70474064,0.6626462,0.07088883,-0.118972294,-0.32776773,-0.28810984,0.16001275,-0.2102932,-0.09305541,0.044171922,-0.4534859,-0.3626711,0.24810195,0.19952084,0.05080194,-0.053459898,-0.00774964,0.2446309,0.03917716,-0.026044901,-0.4436873,-0.24921252,0.30812597,0.31806183,0.055447817,0.08807458,-0.5337459,0.30817306,-0.45160607,0.18583933,-0.12291881,0.1141282,-0.1021676,-0.18268625,0.15887429,0.26940653,0.34365308,-0.015046761,-0.45949432,-0.20850655,0.49986377,0.1275668,0.20045565,0.62106365,-0.24582323,0.06251355,-0.07089352,0.35012877,0.92948955,-0.27944046,-0.123533994,0.3683148,0.012060793,-0.56818855,0.386734,-0.15791391,0.049448133,-0.0052115778,-0.11851183,-0.53226954,0.25745958,0.13898028,0.045854192,-0.025016535,-0.52652013,-0.21318044,0.23337461,-0.24148735,-0.28859347,-0.5349714,0.16887243,0.6970284,-0.35457537,-0.11489635,0.26584083,0.30763647,-0.21379226,-0.4610661,0.00093893363,-0.3410384,0.16719213,0.09364842,-0.30065295,-0.16309184,0.2315672,-0.33397844,0.1751036,0.21535228,-0.3670987,0.046858825,-0.06702693,-0.02785799,1.0540801,-0.4060299,-0.049488008,-0.54417664,-0.58856356,-0.85271984,-0.3135957,0.55018437,0.28751945,-0.01108806,-0.57367355,-0.1109033,0.010939741,-0.23168564,0.08343828,-0.35750368,0.33914438,-0.07508458,0.33296835,-0.26275316,-0.696756,0.13188836,0.13260631,-0.3118592,-0.522019,0.54037774,0.065791614,0.79123527,-0.043067355,0.055584233,0.2241556,-0.23288804,-0.030876756,-0.3447697,-0.25684935,-0.68849933,0.013150591 -281,0.41298103,-0.12337211,-0.7475688,-0.22263561,-0.39870918,0.093526065,-0.39986786,0.25470877,0.37886307,-0.3096392,-0.11243609,0.038532693,0.0040770844,0.28763,-0.14354764,-0.79887265,-0.02187092,0.23800516,-0.6720682,0.54809856,-0.36346152,0.2866092,0.17899752,0.36760625,0.07093784,0.28313342,0.26504114,-0.0040626875,0.05665471,-0.4157218,-0.2949454,0.28678116,-0.49675846,0.1458414,-0.12889044,-0.3931148,0.1412263,-0.39026085,-0.12113964,-0.7802291,0.18329304,-0.94091415,0.7682374,-0.006005837,-0.28532156,-0.118541926,0.44393086,0.35229203,-0.1339718,0.19185238,0.32839823,-0.54611176,-0.099285305,-0.51415294,-0.30414757,-0.6303596,-0.36402044,-0.17499618,-0.6530974,-0.17664142,-0.13626347,0.28452063,-0.32941714,-0.14782153,-0.33298394,0.20977592,-0.42876324,-0.066910185,0.46339425,-0.3696566,0.4217817,-0.53483635,-0.0039884397,-0.025031522,0.56003,0.027253568,-0.14963834,0.27294505,0.3700521,0.5789757,0.3583857,-0.30821905,-0.24945964,-0.47809628,0.22874095,0.5053425,-0.20513724,-0.20421036,-0.33517066,0.049750905,0.5794075,0.7146662,0.061416764,-0.22389102,0.12133219,-0.17436182,-0.110450245,0.8197322,0.6013865,-0.42008844,-0.27892226,0.28553572,0.53038865,0.29999784,-0.25731838,0.21141778,-0.092826866,-0.34539494,-0.21865956,0.14853565,0.0702968,0.46390542,-0.110285185,0.17217314,0.7550222,0.017654648,-0.06961594,0.14913154,0.016548946,-0.18169113,-0.3354423,-0.13420182,0.30890992,-0.7076991,0.101038545,-0.47273052,0.5715002,0.066391535,-0.5648136,0.34768713,-0.5805975,0.12500249,0.17361309,0.708328,0.7879161,0.68764925,0.14039792,1.1212419,-0.33394745,0.044625234,-0.08918645,-0.24941151,0.022787096,-0.2126873,0.28291237,-0.47697327,0.40955806,-0.16370346,0.23341863,0.121119894,0.5742474,-0.5608974,-0.28744328,0.358104,0.98974913,-0.29099336,0.08807536,0.89080507,1.108491,1.0924902,-0.1482292,1.2089853,0.09508413,-0.22575837,-0.37523127,-0.07814234,-0.6085045,0.18244511,0.5989978,-0.005922228,0.30416945,-0.2394415,0.028957734,0.25803724,-0.397396,-0.046589483,-0.038399484,0.32833126,-0.11965337,-0.32722148,-0.55007154,0.09954784,0.14568977,-0.16388577,0.29552695,0.34653464,-0.3760961,0.6042946,-0.19341756,1.0038041,-0.4131066,0.23730595,0.116797,0.45800677,0.43221262,-0.041763693,0.23929523,0.36692464,0.19928986,-0.18541552,-0.5117039,0.06640967,-0.52400905,-0.46184027,-0.19823976,-0.50225693,-0.41514876,0.05004431,-0.1959034,-0.13954593,-0.10228893,-0.24487162,0.25218558,-2.5842006,-0.28066695,-0.2887701,0.15788774,-0.36941457,-0.17769569,-0.04427914,-0.6551928,0.44811115,-0.023652056,0.65116686,-0.48526064,0.5914963,0.7108099,-0.5926618,-0.12586023,-0.7467758,0.11621734,0.02787014,0.51945156,-0.07156327,-0.43898904,-0.16882968,0.1520039,0.86894816,0.24488465,0.13639182,0.6457565,0.48342383,-0.060008723,0.26582342,-0.16467111,0.80551696,-0.46615645,-0.17912148,0.5099442,-0.2805929,0.31974664,-0.4696785,-0.05166751,0.675517,-0.6052928,-0.9455004,-0.66413844,-0.14227375,0.92323905,-0.41662994,-0.6080092,-0.031494364,-0.017389802,-0.20333135,0.25283238,0.7567741,0.008156717,0.2699521,-0.651401,0.017467445,-0.22324462,0.2607487,-0.022779679,0.007368932,-0.5652122,0.7900674,-0.025671871,0.6197796,0.22272663,0.28395975,-0.3284008,-0.3893695,0.05378997,1.0490981,0.562715,-0.014222096,-0.16513199,-0.23773356,-0.24906571,-0.23849572,-0.09612441,0.8866277,0.584093,-0.16050573,-0.063291505,0.46563336,0.022741223,0.090191774,-0.1860183,-0.44167468,-0.21399911,0.22054644,0.5001552,0.5940744,-0.058352027,0.39308295,-0.07136922,0.40527,-0.43846694,-0.6967848,0.852567,0.59764856,-0.30999115,-0.21535844,0.9059685,0.5794526,-0.43369523,0.700263,-0.7395859,-0.59723526,0.48067227,-0.265789,-0.5534523,0.1675101,-0.27148008,0.18948011,-0.73719543,0.034594845,-0.5663728,-0.58385605,-0.39950833,-0.0988968,-2.6045878,0.20809032,-0.17415303,0.078620195,-0.5772212,-0.08910362,0.34024903,-0.52563226,-0.8694075,0.0813544,0.34980235,0.6812579,-0.15994185,0.15286784,-0.25374487,-0.426805,-0.038701374,0.4376808,0.039303433,0.13199392,-0.24806286,-0.2981713,-0.111230224,0.16797227,-0.3731371,0.12358122,-0.63049656,-0.18988615,-0.16522576,-0.533542,0.025765916,0.5939438,-0.5806133,0.111590564,-0.41593257,0.217898,-0.1436191,-0.06909203,0.0048071765,0.3301395,0.21757887,-0.2818682,0.19492847,-0.21041067,0.4919822,-0.054858416,0.3666626,0.09531555,-0.16334239,0.092203595,0.34023428,0.6683967,-0.12153078,1.2533947,0.22521722,0.023265779,0.3732694,-0.33259335,-0.46460328,-0.76472235,-0.27920312,-0.0034552515,-0.57610464,-0.62465215,0.008178368,-0.29998037,-0.94234544,0.61082274,0.25368738,0.71720916,-0.13262953,0.5274064,0.39847192,-0.34137896,-0.0036877394,-0.0014831424,-0.17864482,-0.4973686,-0.18547106,-0.8387367,-0.4440465,0.149441,0.6760402,-0.33806232,0.019466402,0.25658584,-0.15950361,0.045284066,0.40128386,0.26896754,0.039796274,0.6893907,0.11109132,-0.6142078,0.28848234,-0.05030176,-0.004854093,-0.53606194,0.23352844,0.67979836,-0.685164,0.6045111,0.31859824,-0.005329887,-0.5326076,-0.69658947,0.02698384,0.10597768,-0.26646549,0.6671719,0.3577198,-0.7272146,0.4337845,0.21025692,-0.35122523,-0.73847437,0.31984735,-0.14535688,-0.27398002,-0.12493386,0.47151753,0.29997197,-0.16356453,-0.06476927,0.23069203,-0.38026378,0.34908366,0.21200375,-0.18380165,0.3961886,-0.22214676,-0.6441744,-0.8762761,0.00472944,-0.8888218,-0.35214877,0.3642485,-0.011714642,-0.1304649,0.29196063,0.13827656,0.489073,-0.25744188,0.31318316,-0.07319105,-0.3544736,0.4805175,0.5266729,0.39757863,-0.5060399,0.7463975,0.25401685,-0.38866505,0.04390532,0.18899961,0.49582806,-0.12153655,0.6455582,-0.1956581,-0.18585674,0.31149527,0.6928794,0.30962613,0.34238315,0.3676798,0.039420653,0.34186724,-0.084905244,0.13399726,-0.13134916,-0.60143965,-0.16310972,-0.20739417,-0.09535009,0.6509708,0.26531553,0.32103968,0.22332849,-0.10091295,0.0318862,0.15843636,-0.201388,-1.4337119,0.41345263,0.3689982,1.0227332,0.4361861,0.1793952,-0.23854147,0.6692422,-0.26080242,-0.0071980185,0.48259673,-0.09629199,-0.36673054,0.86495537,-0.5103035,0.27715686,-0.15882663,0.042819276,0.19234037,0.08703885,0.43162325,0.9541846,-0.16554506,0.12128656,-0.20388277,-0.2570599,0.07365418,-0.08772632,-0.034912236,-0.28055304,-0.6301263,0.6497425,0.31491446,0.5659385,-0.3318127,-0.10021607,0.014336452,-0.087637305,0.07441041,0.012895271,0.015642157,-0.117111154,-0.2370513,-0.17866515,0.5410337,0.2735365,0.12462976,-0.12310908,-0.32592276,0.20909922,-0.11202619,0.18228944,-0.05745773,-0.6528684,0.023299748,-0.48044014,-0.75020033,0.4825474,-0.043321133,0.012582955,0.068143845,0.040755488,0.085395336,0.39888978,-0.007382711,0.6011059,0.18496759,-0.23899852,-0.33687532,0.31047136,0.102053784,-0.30659518,0.13195123,-0.19948624,0.23037918,-0.6807251,0.52595854,-0.30023023,-0.5217561,0.29702833,-0.19926246,-0.18184783,0.5473251,-0.05130415,-0.18555135,0.29155704,-0.3257149,-0.5181007,-0.36908484,-0.32244542,0.077212386,0.042168155,0.10140253,-0.2931137,-0.10967436,-0.14522974,0.42359543,0.06078888,0.15535861,0.37500224,0.21576358,-0.2779204,0.28569826,0.23564106,0.58641213,0.23300253,0.2048825,-0.034690004,-0.61937755,-0.5166794,0.37510777,-0.17926304,0.20082866,0.077839054,-0.09833121,1.0108724,0.15166552,1.2135514,0.109345786,-0.50978214,0.048391223,0.72021085,-0.18643408,0.029448437,-0.45779637,1.183154,0.5949823,-0.08530333,0.08173082,-0.6024274,-0.036908817,0.26374283,-0.486442,0.023777207,-0.0024169683,-0.62304544,-0.41273323,0.27603164,0.20725183,0.24662483,-0.17454381,0.017379751,0.24300444,0.18742366,0.30173308,-0.68631697,-0.48051396,0.33498624,0.20267887,-0.23870124,0.08421304,-0.38773838,0.28938976,-0.93672925,-0.09339446,-0.536537,0.027666725,-0.22974499,-0.55978507,0.28418946,-0.26275393,0.17241098,-0.47885522,-0.42522725,0.099992335,0.27658865,0.13520657,-0.012053105,0.7474621,-0.17407827,-0.01453653,0.18822347,0.6343239,1.2099756,-0.3559307,-0.006259749,0.24194975,-0.6298856,-0.8857846,0.18103087,-0.7472165,0.022139013,0.10587004,-0.7753062,-0.3453773,0.19506,-0.062067404,0.016012596,0.061712313,-0.6141674,-0.04352948,0.30652192,-0.28203154,-0.19166468,-0.119728826,0.32382938,0.7565275,-0.059730694,-0.48245803,0.111166306,0.41788518,-0.40589654,-0.85006255,0.05127284,-0.074733905,0.30015948,0.108232595,-0.40304545,0.05704719,0.13337496,-0.7197202,0.049340744,0.349709,-0.3592459,0.097711496,-0.4186183,-0.09359869,0.8163946,-0.3330674,-0.1010929,-0.5394128,-0.4467328,-0.7321841,-0.38260853,0.040931065,0.15241018,0.05498913,-0.62851995,0.004710036,-0.47980985,0.0057980516,0.106692344,-0.32735708,0.45411953,0.08304848,0.70290357,-0.42709243,-1.0354785,0.33643898,0.2405989,-0.1354749,-0.66073143,0.58350044,-0.09855429,0.9524073,0.112284474,0.010304034,0.1470065,-0.79609203,0.16156285,-0.37484252,-0.023599394,-1.0512055,0.09608439 -282,0.23506545,-0.04745271,-0.5727497,-0.07582389,-0.19750595,0.20315756,-0.33212045,-0.053400125,0.20192198,-0.60655296,0.14427061,-0.15734722,-0.13434647,0.08817638,-0.023916574,-0.65983665,0.14087038,0.20868151,-0.38441107,0.68131894,-0.33795214,0.20459105,0.22740528,0.06716792,-0.3155616,0.06684058,0.12014448,-0.23017468,0.0020063946,-0.2345116,0.24186179,-0.21694052,-0.67305475,0.32572696,-0.16414347,-0.29222178,0.15971753,-0.2197411,-0.36539742,-0.66154444,-0.015355246,-0.6574688,0.42430228,0.057672907,-0.22502716,0.23743887,0.18010256,0.40019575,0.04838633,0.037103213,0.40252572,-0.3971857,-0.44743943,-0.3364059,-0.26329067,-0.527318,-0.61719435,-0.14239536,-0.58644044,-0.063568756,-0.37084177,0.27770692,-0.3108826,-0.12702273,-0.23265198,0.4224287,-0.33094046,-0.09066766,0.20439477,-0.15170206,0.3115857,-0.6825549,-0.085974105,-0.12350445,0.022962779,0.23382504,-0.0056008226,0.19072269,0.090730555,0.64246315,0.11427462,-0.28940943,-0.20679018,-0.09303512,0.313866,0.4786003,-0.1533698,-0.0074018836,-0.13114777,-0.100123934,0.23211776,0.17560038,0.07151873,-0.40858525,0.096470796,0.028265102,-0.2864116,0.24927644,0.57153946,-0.28301406,0.03614617,0.30373335,0.40365642,0.0057160174,-0.22611117,0.004922245,-0.04715121,-0.26485643,-0.09411745,0.19469681,0.057877224,0.3407772,-0.046391,0.28966698,0.4960881,0.057595883,0.035710864,0.04289352,-0.0002531835,0.23175107,-0.21414296,-0.0761037,0.25402918,-0.7588231,0.023281422,-0.56290495,0.6657599,-0.14525904,-0.9907653,0.33044153,-0.38196892,0.056695692,-0.020100351,0.6783906,0.7420593,0.42438123,-0.16499774,0.66460526,-0.5206779,-0.030737562,-0.17519887,-0.17023587,0.08936262,0.039201222,0.5385553,-0.4718495,-0.23803592,0.013537867,-0.10936506,-0.28776667,0.37929398,-0.3939542,-0.27721497,0.25239316,0.937374,-0.20250957,0.011366389,0.4086208,1.3005129,0.82735676,0.13446344,1.1866072,0.20578954,-0.18717949,-0.21709575,-0.24185319,-0.5824296,0.097295836,0.19568647,0.90137875,-0.016944792,0.08178592,-0.20212804,0.45764956,-0.34715304,0.060734797,-0.1511825,0.4183907,-0.09952235,-0.19453189,-0.15729989,-0.061240885,0.10496116,-0.00039066907,0.0071313,0.351954,-0.13738525,0.14736815,0.008602917,1.1915523,-0.2924983,0.23148881,0.058692914,0.132611,0.08887629,-7.955943e-05,0.10997697,0.2205019,0.13071768,-0.087294884,-0.488732,0.01618618,-0.24226893,-0.40457144,-0.24840225,-0.15224467,-0.15645555,-0.046377324,-0.24050985,-0.17134468,-0.06499473,-0.58784264,0.28409258,-2.7056324,-0.220776,-0.18226974,0.29746982,-0.298357,-0.19768713,-0.013742104,-0.41349012,0.7028378,0.2825901,0.29323557,-0.48170656,0.6184581,0.5156712,-0.33841702,-0.0060891933,-0.6707149,-0.07604798,-0.11223644,0.4195211,0.028574884,-0.26730528,-0.056735467,0.09488493,0.37551588,0.034919895,0.13709153,0.568086,0.33353516,0.008246945,0.3351014,0.0066131693,0.4568946,-0.24496563,-0.1098255,0.2496492,-0.30429393,0.3076534,-0.35099524,0.07167822,0.4036906,-0.23195033,-0.42708546,-0.5238752,-0.3661709,1.0956393,-0.12542342,-0.62135726,0.2226601,0.0013945954,-0.24393201,0.10872276,0.5327067,0.019966813,0.10755366,-0.71670204,0.0802294,-0.2424032,0.26144022,-0.020951275,0.03811417,-0.5845661,0.72397655,-0.0705226,0.5315822,0.5591728,0.28697506,-0.09248878,-0.14508401,0.09197513,0.90536106,0.34153137,0.04958568,-0.19902185,0.00389074,-0.13102616,-0.32949987,-0.025296833,0.5462889,0.7137652,-0.15447421,0.11116694,0.32418033,-0.32918054,0.029303143,-0.1799209,-0.58487904,-0.11712968,0.18153858,0.49415675,0.4312647,0.040252086,0.47082895,-0.0062943613,0.17371117,-0.36748573,-0.44276842,0.29046223,0.32893127,-0.25427717,-0.07648124,0.49867827,0.46321386,-0.10761369,0.5319947,-0.51826036,-0.32704774,0.41437265,-0.025185024,-0.5032999,0.066552065,-0.5031818,0.09162898,-0.8189874,0.31454605,-0.6627296,-0.7465683,-0.59417015,-0.15859315,-2.3330917,0.27484977,-0.48657227,0.06508889,-0.15107001,0.096161045,0.30081868,-0.36365375,-0.34936222,0.050955493,0.07502304,0.5049979,-0.0141285,0.003640473,-0.36659044,-0.14378937,-0.24183634,0.36410877,0.107550345,-0.104000024,-0.09445951,-0.16359667,0.073624186,-0.28917474,-0.07834829,-0.04563338,-0.5376492,-0.15025823,-0.22073105,-0.4210479,-0.37983224,0.6185767,-0.37733927,-0.017986286,-0.24423313,-0.067253776,-0.04885975,0.36018854,0.13173485,0.23770057,0.050096292,-0.11927358,-0.27239332,-0.38792592,0.18983123,0.17920391,0.23336144,0.63476783,-0.15545438,-0.023464339,0.45289484,0.4799097,0.17415884,0.8061999,0.3287807,-0.2647585,0.44024563,-0.34573084,7.688999e-06,-0.61260617,-0.155857,-0.15536715,-0.28655344,-0.6161167,0.13307297,-0.29649463,-0.6571917,0.37329096,0.22640796,0.02702873,0.05561375,0.3306551,0.36904716,0.024801042,-0.15959981,-0.13449384,-0.105847254,-0.4062979,-0.36158234,-0.8493252,-0.49576974,0.14072269,0.98784816,-0.10484189,-0.14525047,0.16839586,-0.11401469,0.05065612,0.36193636,0.18486154,0.056389403,0.32367396,0.2815089,-0.720716,0.38311774,0.030139003,0.18779862,-0.7169879,0.2111984,0.7286986,-0.7294275,0.45486125,0.43006548,0.08791359,-0.195534,-0.64197415,-0.111309886,0.25518104,-0.2890467,0.34267145,0.07358463,-0.863933,0.40855506,0.28164268,-0.13944043,-0.81207305,0.30185625,0.086203896,-0.11987233,0.082381725,0.4006054,-0.056530237,0.034323066,-0.14042078,0.30855462,-0.4376456,0.48453298,0.03619268,-0.17021547,0.37191364,-0.14366044,-0.16038443,-0.50006485,0.062946305,-0.476439,-0.2842365,0.3850069,-0.029445311,-0.036743797,0.5757035,0.15949547,0.4256106,-0.28911304,0.14295998,-0.24330516,-0.4703284,0.38000196,0.42741734,0.2619745,-0.35989565,0.64761823,-0.058916368,-0.2506696,-0.17544042,0.12699248,0.4455318,0.13854448,0.52263826,-0.07302995,0.003070844,0.0030032396,0.91548216,0.10832094,0.4887046,0.22423382,-0.05039725,0.3366821,-0.09912108,-0.0513571,-0.27621743,-0.46303436,-0.04404556,0.05101004,0.1857499,0.3757339,0.17904137,0.5864072,-0.057004355,-0.1391627,-0.09444736,0.20552173,0.07299701,-0.7875144,0.45894137,0.16535309,0.61608344,0.63577026,0.023100076,0.052445322,0.56682503,-0.31260914,0.15808606,0.3852496,-0.07059901,-0.2234327,0.60515153,-0.67257386,0.16670573,-0.209367,0.027887711,0.19126691,-0.03162835,0.40858507,0.7787079,-0.28604296,0.032812078,-0.21179898,-0.2279066,0.090337686,-0.08140225,0.27736259,-0.34703264,-0.5170411,0.61050576,0.33062977,0.34866044,-0.24473892,-0.11925285,0.35163635,-0.116137676,0.4872222,0.060040127,-0.043820392,0.14011778,-0.3457038,-0.22694041,0.57175046,-0.29952163,0.060952816,0.17425217,-0.044475906,0.21262716,-0.0762596,-0.13340154,-0.023930298,-0.55602545,0.26515266,-0.31520143,-0.33476236,0.48099694,-0.11075546,0.19033337,0.053733986,0.13605565,-0.028432418,0.27419183,-0.0017484172,0.327131,0.0029890996,-0.19432446,-0.16817696,-0.26692265,-0.03030405,-0.31126657,0.09290415,-0.041929487,0.14693949,-0.75304663,0.47673586,-0.3608628,-0.15361723,0.27294487,-0.2603488,-0.18293297,0.47379106,-0.09410928,0.00017056295,0.3106144,-0.14891891,-0.157694,-0.21539031,-0.16252837,0.21405323,-0.24938774,0.09315101,-0.17489955,-0.13110378,-0.03522433,0.26471177,0.24659726,0.021960417,0.34822708,0.24109542,-0.5371448,-0.040215816,0.19655871,0.32670835,0.14580093,0.059628308,-0.11599856,-0.29070932,-0.35009876,0.3219826,-0.094523944,0.15246384,0.02500445,-0.41996428,0.86508167,0.17430641,0.9100463,0.04083916,-0.20636511,0.011824169,0.43236595,-0.11515414,-0.012937627,-0.413527,0.8157994,0.6964965,0.07684755,-0.030262012,-0.5588953,-0.084573634,0.44830212,-0.16390362,-0.0033503047,-0.008214108,-0.713595,-0.32733992,0.16841435,0.2778484,-0.18291362,-0.21924257,0.011077966,0.15770783,0.15011744,0.18365957,-0.6343337,-0.15339388,0.2643686,0.15730922,-0.039911028,0.35315844,-0.3327794,0.2475429,-0.8166804,0.29832944,-0.1540023,-0.18807295,0.02845114,-0.119735636,0.2272815,0.20285675,0.19834383,-0.10719267,-0.33438084,0.048991244,0.38984802,0.26918322,0.3791545,0.9459616,-0.15316316,-0.098707914,-0.13698637,0.5092591,1.3019911,-0.122719355,0.01706596,0.21103127,-0.29140046,-0.8215129,0.054879718,-0.30997208,0.07057137,-0.032041818,-0.60121745,-0.39415404,0.1507478,0.060088594,-0.3017512,0.08580818,-0.5358166,-0.301181,0.012330526,-0.29904267,-0.20750739,-0.1799897,0.122817576,0.9257932,-0.20607005,-0.035502914,-0.073945284,0.39053124,-0.43875262,-0.5372509,0.18368642,-0.4261401,0.19207726,0.056486093,-0.22499545,-0.016389132,0.15977274,-0.6550183,0.028092384,0.13857412,-0.23485933,-0.14382407,-0.293104,0.15503113,0.61619484,0.05198952,-0.09378926,-0.22628419,-0.6425266,-0.43155617,-0.50960726,0.09056504,0.09554238,-0.09092096,-0.29772687,-0.17145647,-0.118963495,0.09079645,-0.05891643,-0.5441975,0.1443708,0.0668241,0.34269616,-0.32387695,-0.86564875,0.17946123,0.33108893,-0.0958482,-0.4172215,0.3428715,-0.30780396,0.84945387,0.13459818,-0.12512065,0.104683995,-0.68398154,0.46733826,-0.34894416,-0.21871315,-0.6632267,-0.08512299 -283,0.40368327,-0.18667789,-0.7265353,-0.009778909,-0.29603556,-0.073436536,-0.34801182,0.74382406,0.2522354,-0.5739235,-0.06659732,-0.13519664,-0.007725516,0.37193704,-0.3147,-0.5096944,0.12826632,0.14585923,-0.67812246,0.42781433,-0.43263724,0.22506298,-0.032566182,0.5060305,0.22331254,0.2788922,-0.00887775,-0.10236158,-0.1495453,-0.19828804,0.021619355,0.04926211,-0.6343003,0.07108807,-0.2728722,-0.43003452,0.017042145,-0.52757484,-0.33817908,-0.8190537,0.30402982,-0.82369304,0.5048509,0.06645511,-0.3193574,-0.113260545,0.20992143,0.44044933,-0.09407177,-0.057734013,0.14372124,-0.08700053,-0.06470295,-0.24347836,-0.14570004,-0.40190545,-0.5733599,0.0816715,-0.48777366,-0.09184899,-0.20458572,0.21063764,-0.30781472,0.11917309,-0.09267666,0.51822263,-0.34707102,0.14050545,0.08330275,-0.17745359,0.27680504,-0.53156424,-0.077474765,-0.15484126,0.40530977,-0.30838475,-0.2391402,0.32651255,0.12351239,0.44347677,-0.05827993,-0.073283,-0.36177257,0.037780713,0.07055786,0.47749758,-0.24602337,-0.6015714,-0.06934994,0.046430845,0.30923906,0.129456,0.1704573,-0.34067667,-0.2009327,0.062820755,-0.29532027,0.5835387,0.55930424,-0.23907442,0.045414377,0.24241656,0.581146,0.35173023,-0.20931476,0.1085271,0.10402072,-0.7352516,-0.19586547,-0.09707641,0.0542172,0.68357307,-0.2700583,0.4907446,0.6380151,-0.1812287,-0.11872967,0.40741774,0.023132445,-0.02487582,-0.11241158,-0.22177887,0.22869885,-0.42957368,-0.009058595,-0.27146533,0.6221609,0.21192746,-0.78097224,0.36094794,-0.727627,0.05196176,-0.046574276,0.3780764,0.64441425,0.6249561,0.12926969,0.6461649,-0.36751357,0.06591331,-0.135161,-0.38267365,0.23014192,-0.24155438,-0.03086356,-0.31262562,-0.19177435,-0.10480955,-0.13936172,0.16608398,0.5120294,-0.55756086,-0.1086571,-0.068990074,0.8189445,-0.17325468,-0.12467765,0.8214504,0.9508867,0.92166394,0.056550223,0.928423,-0.09963278,-0.19065891,0.20208375,0.07761686,-0.8797993,0.46727213,0.36969993,-0.027228525,0.19529241,-0.025907869,-0.027326606,0.50141215,-0.3710643,0.026170665,-0.027896293,0.23048103,0.24439776,-0.26783705,-0.22808735,-0.35992232,-0.0070437365,0.011204283,0.0065473914,0.3130035,-0.11865231,0.3779119,0.009240453,1.5892801,0.03923772,0.14775956,0.13873513,0.62881017,0.1725008,-0.21883424,-0.20186864,0.04090626,0.09074751,0.3318078,-0.50058216,-0.109752335,-0.19598134,-0.5251127,-0.13461183,-0.21261777,-0.36107126,-0.2768893,-0.5900729,-0.11014921,-0.19554871,-0.21538146,0.35180962,-2.543793,-0.35520825,0.036688484,0.4799006,-0.25720614,-0.4940451,-0.1206607,-0.5311839,0.53621787,0.2706882,0.62712353,-0.7169154,0.6054832,0.47243738,-0.4763731,-0.22226728,-0.69023675,-0.05993642,0.14915635,0.1229603,-0.037230927,-0.045613438,0.19410314,0.014328837,0.40021026,-0.22578873,0.014905323,0.17556095,0.48759183,0.107067466,0.5294116,-0.24328601,0.53370374,-0.6074936,-0.202242,0.32402351,-0.51763403,0.12502334,0.016188726,0.123771995,0.4188025,-0.5579278,-0.9845169,-0.7011056,0.003211538,1.1569458,-0.026524508,-0.46337664,0.2924541,-0.46110705,-0.3172228,-0.14795655,0.69868153,-0.036882915,0.18733196,-0.8197245,-0.1290542,-0.22327924,0.3325126,0.10315164,-0.12697642,-0.46227577,0.5192354,-0.03252129,0.43817973,0.4299101,0.0571394,-0.5544109,-0.57003945,0.20161964,0.87112117,0.3106992,0.30163392,-0.12836662,-0.08022844,-0.51514554,0.1117241,-0.002275082,0.64369005,0.5863424,-0.0942264,0.13371675,0.2709953,0.045832265,0.07272575,-0.17626299,-0.45806408,-0.16302872,-0.0063068867,0.5947978,0.8974032,-0.1724124,0.37250233,-0.040713716,0.3205609,-0.3983592,-0.3434032,0.566796,0.70413655,-0.20328254,-0.31089225,0.43211088,0.4315257,-0.3431687,0.44944167,-0.52151436,-0.5753992,0.30102,-0.115778826,-0.51458234,0.22238159,-0.3042148,0.19993515,-0.7690613,0.36104593,-0.5079189,-0.49605155,-0.5444302,-0.092275836,-3.243304,0.2920495,-0.09241667,-0.19911976,-0.18122439,-0.14790517,0.09936774,-0.56270224,-0.83782965,0.1108891,0.028958699,0.8065967,-0.15645002,0.09261892,-0.23164892,-0.40855965,-0.27286938,0.0813361,0.4075404,0.34030905,0.053216893,-0.44783148,-0.30835217,-0.18960278,-0.4501873,0.13140991,-0.7037633,-0.53129816,-0.1636572,-0.5960031,-0.24578731,0.7648738,-0.3525548,-0.0012077764,-0.13375644,-0.09961498,-0.11131993,0.42635807,0.099443115,-0.024472171,-0.008476411,-0.005695045,0.122303076,-0.16649443,0.18228172,0.08668736,0.4455464,0.33552468,0.047670662,0.26168784,0.76011086,0.9982534,-0.1162489,1.0305098,0.2604381,0.07098546,0.40148976,-0.35423052,-0.5224743,-0.3166419,0.06489354,0.26669493,-0.34896883,-0.24508858,0.07571605,-0.35576773,-0.7855785,0.5013897,0.0130799115,-0.20249696,0.23589297,0.14403339,0.38347042,-0.162196,-0.114687495,-0.09473456,-0.06610427,-0.674963,-0.20280331,-0.56569296,-0.59622186,-0.05281781,1.0582551,-0.15864523,0.101497866,0.15467387,-0.13284507,0.046753973,0.13340352,-0.008963428,0.17507865,0.3531618,-0.2000879,-0.75242764,0.36370894,-0.39465335,-0.18246335,-0.45358694,0.18471141,0.7125233,-0.6835249,0.3568406,0.29189608,-0.07297418,-0.2540934,-0.46835867,-0.0861549,-0.079092205,-0.21988113,0.3462373,0.291563,-0.89386004,0.32437903,0.32577595,-0.33123574,-0.69102246,0.6099724,-0.0031966146,-0.23102833,-0.19963376,0.38048753,0.18977176,0.040598497,-0.3131808,0.20853817,-0.33987316,0.3007585,0.24675293,-0.1290469,0.36949,-0.21178706,-0.093572296,-0.72950935,0.003788218,-0.53943944,-0.2729583,0.35267696,0.19120026,0.13597095,0.11383861,0.100827605,0.21420218,-0.305037,0.02003964,-0.18880008,-0.21128349,0.34159708,0.47927102,0.7445318,-0.630147,0.64840597,0.08802188,0.067428015,0.25240883,0.046533775,0.3776174,-0.042078894,0.43104193,0.23107135,-0.060969215,0.119871475,0.9779613,0.2374248,0.42470917,0.039848942,0.0030937393,0.04237652,0.10117362,0.15806872,0.12378407,-0.8007472,0.10754082,-0.2103563,0.17264985,0.5543305,-0.014828811,0.27467483,-0.10760343,-0.4608418,0.014817246,0.28826255,-0.16447155,-1.7478074,0.530862,0.2775619,0.8027515,0.46147814,0.13105373,0.12929209,0.7718899,0.014095955,0.23418467,0.4195037,0.12861876,-0.56511706,0.5979797,-0.7536676,0.57735044,0.08245287,0.08210359,-0.014241665,-0.06297643,0.4325184,0.75034714,-0.052594513,0.20510353,0.10276428,-0.27736306,-0.034953203,-0.56917495,-0.12987217,-0.4892728,-0.06495944,0.7252441,0.5805485,0.2702836,-0.25408116,0.03258812,0.08979989,0.022332383,0.15385377,-0.13555141,0.16878843,-0.21224321,-0.7595754,-0.032478143,0.7000818,0.015181388,0.20744991,-0.008527714,-0.16018546,0.33106068,-0.05715209,0.032318905,-0.2532523,-0.7476294,0.066919394,-0.5744634,-0.40292716,0.31194493,-0.013315,0.25084898,0.2797731,0.1655352,-0.36727563,0.725723,-0.012653798,0.6195459,-0.10598689,-0.10036969,-0.2016011,0.29619333,0.19406693,-0.2742965,-0.11315569,-0.33933893,-0.054752585,-0.36018145,0.23826377,-0.0936986,-0.33297405,0.065600105,0.06493989,0.08829584,0.53904516,-0.1650446,-0.22711249,0.27438596,0.01242134,-0.14967474,-0.29713368,-0.05202396,0.25153103,0.4423802,0.0065619373,-0.15849482,-0.2049583,0.01035209,0.42848325,-0.15163447,0.5735691,0.5457756,0.25074834,-0.33709893,-0.19192976,0.091888465,0.6825754,0.118783556,-0.17708959,-0.5050877,-0.36036804,-0.358641,0.33228207,-0.036068734,0.33543786,0.19150616,-0.24971378,0.6019243,0.059205603,1.2574618,-0.0063776523,-0.25473937,0.25750586,0.24614899,0.014333914,-0.17646396,-0.43394867,1.0221409,0.35568228,-0.37627292,-0.057361722,-0.39264083,-0.0986839,0.031419836,-0.21786435,-0.25560915,-0.047837824,-0.6247471,-0.06837129,0.22121792,0.35249814,0.16497286,-0.3201503,0.08073826,0.39036712,0.033082444,0.03207959,-0.5952647,-0.17967713,0.4183235,0.40119746,-0.06975328,0.01712131,-0.59524363,0.33461228,-0.47850463,0.01731276,-0.37045798,0.18704991,-0.17702933,-0.45577797,0.18097566,0.15466557,0.34340152,-0.2918425,-0.35325336,-0.24987628,0.46843067,0.19845633,0.2214647,0.5966143,-0.1839542,-0.11736729,-0.09231181,0.55215144,0.70187443,-0.21891229,-0.11166948,0.4220712,-0.28577444,-0.63631743,0.24762516,-0.4246118,0.28557405,0.014822642,-0.080709346,-0.6204476,0.28659734,0.2020613,0.08541011,-0.17739673,-0.79175645,-0.18531479,0.3272513,-0.29037464,-0.34889543,-0.5123429,0.032838594,0.48306885,-0.15974157,-0.22128999,0.13205172,0.34825984,-0.10412896,-0.43635026,-0.0982872,-0.32912293,0.11989879,0.13839985,-0.3763517,-0.13127916,0.11821254,-0.4911828,0.29607674,0.017265609,-0.42648324,0.16647205,-0.21804465,-0.09338852,0.95901936,-0.22276302,0.25024292,-0.2697475,-0.50698024,-0.8084245,-0.32528904,0.22030127,0.24360009,0.0032327871,-0.7904957,-0.09215117,-0.048519332,-0.39003086,-0.0033950855,-0.24093656,0.5436907,0.12909018,0.5597405,-0.13176037,-0.8570876,0.13832222,0.18313037,-0.20536327,-0.603347,0.5039055,0.021574529,0.925883,0.030913144,0.07201094,0.44507197,-0.40207377,0.002847592,-0.14667545,-0.06882743,-0.5871229,0.12993604 -284,0.17526369,-0.118611075,-0.43132076,-0.2214375,-0.28477427,-0.06371226,-0.15470363,0.505992,0.34201252,-0.40631822,-0.20887613,-0.11543586,0.15957013,0.40206796,-0.14734426,-0.6324327,0.117709875,0.23750524,-0.44536182,0.6585632,-0.36156628,0.18504196,-0.03150668,0.27931213,0.39307973,0.31670514,0.007945093,-0.11599171,-0.18902382,-0.31050918,-0.07509236,0.3951589,-0.35649163,0.62769276,-0.1356494,-0.20792995,0.05504012,-0.5375711,-0.35888568,-0.79292446,0.07462288,-0.7459088,0.3759414,-0.044262853,-0.371852,-0.0032999455,0.53583854,0.35100374,-0.1038225,-0.16447009,0.17099375,-0.22850719,-0.18672103,-0.15779136,-0.2117962,-0.5466749,-0.57644457,-0.20247746,-0.393649,-0.3341775,-0.608872,0.24157186,-0.3965313,-0.20465331,0.019718414,0.60283816,-0.52465653,0.43393365,0.0851328,-0.18050598,0.24589801,-0.5731117,-0.19930352,-0.27526468,0.31669796,-0.17989358,-0.44759896,0.4861221,0.5016353,0.053643372,-0.01598596,-0.07822859,-0.33641765,-0.3693917,0.4490185,0.4913708,-0.07402962,-0.5002174,-0.093587585,-0.107026726,0.1678527,0.3326926,0.2479313,-0.33753574,-0.179288,0.07173734,-0.34037217,0.54727566,0.27359632,-0.23534909,-0.20812201,0.25755244,0.5815857,0.26308286,-0.35650662,0.025988542,0.09295952,-0.51834273,-0.1374996,-0.074050404,-0.28693944,0.5319207,-0.2690374,-0.0052795517,0.76543754,-0.26029208,-0.20565967,0.05067198,0.33130753,-0.16908377,-0.27379444,-0.27320126,0.2710575,-0.48899698,0.13116628,-0.060918607,0.81209284,0.15084675,-0.5466349,0.32644096,-0.6675911,0.112289645,-0.16879363,0.36903325,0.5743594,0.48533952,0.529211,0.5031224,-0.20420271,0.0695059,0.13910943,-0.37734553,0.26729205,-0.48793766,-0.040087763,-0.58409536,0.030998338,-0.06667514,-0.1714289,0.21503568,0.50836694,-0.51213694,-0.09108228,0.21791993,0.8817788,-0.2408954,-0.25301516,0.6904832,1.0249223,1.107359,0.12332807,0.9707195,0.14735575,-0.20747904,0.024760902,0.08417875,-0.5728404,0.2871644,0.40742198,-0.33905917,0.08481124,0.16125299,0.19716492,0.39671758,-0.3491255,-0.06694416,-0.078179814,0.33663824,0.14250304,-0.31075555,-0.4784384,-0.47167188,-0.24683051,-0.03129275,-0.13039224,0.3154682,-0.026046999,0.6123484,0.17339116,1.6412644,0.118900135,-0.023963284,-0.058695782,0.50694853,0.2680537,-0.20670106,0.030519776,0.47231314,0.0928464,0.23399638,-0.469007,0.19223776,-0.22909106,-0.33580735,-0.017997026,-0.5337336,-0.25091788,-0.001336561,-0.3129113,-0.15253948,-0.15184647,-0.16928948,0.61465055,-2.7480125,-0.10976785,-0.07380316,0.34885713,-0.026612906,-0.23113818,0.05740493,-0.48581523,0.39305124,0.2103056,0.668915,-0.65551823,0.18508019,0.5747969,-0.7102476,-0.23794135,-0.5305328,-0.2656601,-0.08954479,0.3427546,0.03467561,0.19705935,0.21806747,0.14965925,0.490767,0.041684527,0.27663505,0.3320916,0.30277303,-0.16999362,0.65303254,-0.062214192,0.59478384,-0.05444622,-0.2956838,0.25920668,-0.43364584,0.4265748,-0.06853464,0.08803756,0.74892104,-0.3403703,-1.0195683,-0.64089817,-0.24650253,0.97107106,-0.33048522,-0.39651147,0.39185134,-0.45186388,-0.30396897,-0.05219598,0.4631678,0.07608444,0.22041234,-0.7136467,0.038643833,0.012580774,0.12944265,0.037980914,-0.22632408,-0.38427565,0.80366975,0.054953158,0.4606763,0.21753,0.04849894,-0.6751716,-0.38186482,0.011543101,0.82020384,0.39386863,0.1286303,-0.30183855,-0.32931924,-0.58580405,-0.21265553,0.13531783,0.65069985,0.37584513,-0.26857898,0.14868157,0.37302455,-0.09689799,0.08592069,-0.1521505,-0.43317345,0.060131494,0.19546348,0.48703498,0.7998102,-0.2069624,0.63065153,0.13125896,0.30442107,-0.05057399,-0.595215,0.36680642,1.2243102,-0.092436716,-0.44789103,0.76237833,0.3717941,-0.28767997,0.45059967,-0.3855797,-0.1698424,0.6953606,-0.072420955,-0.48175433,0.027981723,-0.32487437,0.06927276,-0.7528244,0.4046454,-0.34105828,-0.68191075,-0.5141895,0.0008741211,-3.4757433,0.28004032,-0.09287741,-0.29009783,-0.09602508,-0.022355584,0.10426979,-0.8058775,-0.6409082,0.1815844,0.032005344,0.8023067,-0.23528747,-0.05561869,-0.19377719,-0.37807357,-0.066722356,0.19364247,-0.0018632412,0.4622912,-0.17762138,-0.49141702,-0.048700605,-0.06415264,-0.47543213,0.102716275,-0.5368152,-0.60051066,-0.20664263,-0.78654444,-0.30775878,0.7773966,-0.5408429,-0.0052107843,-0.13370779,0.12742537,-0.14826041,0.11128626,0.3226508,0.23086667,0.03775865,-0.0038082926,0.017902851,-0.18552142,0.34569943,-0.050744936,0.4244944,0.30463865,0.06560599,0.3117257,0.67943805,0.7386532,-0.11529685,1.0930051,0.36956614,-0.15759869,0.113525845,-0.31298873,-0.49243757,-0.49115896,-0.3006386,0.11261999,-0.41978976,-0.31932643,-0.07642606,-0.27257106,-0.7594356,0.7223633,0.16839825,0.16927162,-0.11723594,0.056284178,0.34945166,-0.13758065,-0.09878549,-0.1025073,-0.1804331,-0.7987911,-0.16958708,-0.59329796,-0.4976428,0.24194856,0.7892247,-0.46410915,0.099876665,0.02246513,-0.29031226,-0.026752071,0.36453012,-0.114936374,0.10479215,0.4818247,-0.09210324,-0.60287553,0.50996983,-0.16532977,-0.22505088,-0.55628437,0.4808497,0.6829853,-0.559808,0.64538294,0.38768956,-0.07153326,-0.33654737,-0.474352,-0.35944587,-0.1494521,-0.18405738,0.39131117,0.251301,-0.8411041,0.17789534,0.23737563,-0.5249026,-0.62425846,0.6886833,-0.2173328,-0.103086516,-0.08136778,0.42092946,0.19506198,0.04505429,-0.1479761,0.3241954,-0.33804312,0.16264898,0.2356084,-0.020687707,0.111473195,-0.20107864,-0.15338412,-1.002408,0.03731267,-0.37532148,-0.44327337,0.384387,0.040665966,0.03442307,0.20093927,0.18802786,0.21624042,-0.24180189,0.07290471,-0.12023737,-0.26792496,0.4021612,0.48454607,0.63670003,-0.4213812,0.59547395,0.16786303,0.079665296,0.07758251,0.079949506,0.27082595,0.12640128,0.6084942,0.11262257,-0.27659312,0.12715061,0.95213413,0.23987488,0.5280742,0.016401459,-0.060255397,0.04644161,0.016943855,0.35196775,0.1495863,-0.6575678,0.10551096,-0.49061635,0.117075875,0.6141553,0.12675768,0.20778097,0.08916065,-0.5494181,0.10257647,0.2748056,0.28792986,-1.5472916,0.51166165,0.33123544,0.92706853,0.37795562,0.19472603,-0.08152535,0.8561259,-0.16490275,0.16245122,0.32599476,0.07859147,-0.4567969,0.67243344,-0.9043486,0.5929833,-0.062888116,-0.03919095,-0.053668775,-0.03365369,0.41507205,0.8174385,-0.28265497,-0.058401596,0.16164479,-0.44968936,0.29412967,-0.55925816,0.11236167,-0.4170721,-0.40970194,0.6015573,0.6132084,0.36488488,-0.17169777,0.11317403,0.12868959,-0.17352547,0.20979346,0.10435278,0.10922458,-0.05545008,-0.69479126,-0.08758976,0.6588379,-0.3407236,0.3616487,0.04575086,0.13085285,0.41298988,-0.13014303,0.0873525,-0.06907255,-0.72914314,0.05100341,-0.25615397,-0.6559276,0.6468626,-0.20701951,0.14339325,0.15395346,-0.002960709,-0.061497297,0.7494524,0.18445323,0.72498965,0.07994963,-0.06454984,-0.1668158,0.14737347,0.11313858,-0.11090171,0.12918468,-0.3842864,0.10305774,-0.533458,0.43427172,-0.026390763,-0.50522876,-0.24921994,-0.08994809,0.056507107,0.4811822,0.049122766,-0.24357046,-0.21319653,-0.17689036,-0.21243763,-0.21302375,-0.04848151,0.29781997,0.22603394,0.023316002,-0.19198762,-0.16830207,-0.2958105,0.010818644,-0.33054522,0.5520771,0.35831213,0.035444953,-0.2434835,-0.17366572,0.12670302,0.3955759,-0.09863129,-0.17888866,-0.11954535,-0.30797628,-0.54366153,0.15899456,-0.1002882,0.5496884,0.16180521,-0.4191078,0.6922048,-0.3905091,1.2534012,-0.03957558,-0.61303574,0.28738537,0.43210995,0.02675374,-0.0337226,-0.17107543,0.83884275,0.49351108,-0.06355996,-0.07844572,-0.55652195,0.033170234,0.1786149,-0.20456795,-0.2565831,0.15225516,-0.563892,-0.05257939,0.30960804,0.21323456,0.3431091,-0.12568437,0.0079204,0.4817191,0.107699916,0.23543516,-0.50460076,-0.1644442,0.27828434,0.4295936,0.09592898,0.10253727,-0.4187841,0.41152573,-0.50802237,0.20119077,-0.5175383,0.25839984,-0.5714043,-0.32301468,0.18358497,0.085635185,0.460075,-0.22263032,-0.28269994,-0.31855378,0.5859148,0.07251268,-0.0050067375,0.5140129,-0.24066238,0.0339104,0.10882418,0.37473536,0.74562,-0.43434438,-0.29696777,0.44269636,-0.5345974,-0.5434248,0.4085044,-0.62106395,0.2681185,0.20921141,-0.17197704,-0.6060159,0.033830173,0.26286945,0.17244394,0.043469448,-0.5786343,0.019948525,0.15280521,-0.47495106,-0.17903961,-0.2697692,0.21943521,0.34376028,-0.30426157,-0.3923581,-0.023725716,0.026607232,-0.21108575,-0.4936797,-0.084297985,-0.20128976,0.40140188,-0.088149264,-0.38559315,-0.15225402,0.11625431,-0.43892834,0.1978531,-0.037441686,-0.29066756,0.295866,-0.18841483,-0.023413874,0.8839747,-0.3920804,0.010610467,-0.576199,-0.5241754,-0.5153172,-0.27508456,0.35373572,-0.05108221,-0.08727198,-0.6519506,-0.16741954,-0.04193546,-0.097508796,-0.13754466,-0.39812985,0.43616316,0.123756744,0.33354878,-0.027352648,-1.0386761,0.24987644,0.16002284,0.20285009,-0.937884,0.46113223,-0.42279485,0.88475764,0.09716952,0.11521708,0.24051355,-0.21258926,0.0151646575,-0.14916779,-0.42294243,-0.51925236,-0.022338657 -285,0.46482682,-0.2367049,-0.41293466,-0.15291327,-0.4199251,0.025199734,-0.22266358,0.26752496,0.22617391,-0.07958986,-0.06590165,-0.051724657,0.0011637304,0.3960813,-0.07011493,-0.60281795,-0.28642103,0.059007086,-0.6624301,0.35830307,-0.6445318,0.33087337,0.08316872,0.34886843,0.057061143,0.53309256,0.26434064,-0.19251762,-0.04737882,0.0076015443,-0.09207915,0.3159871,-0.5401776,0.07440183,0.04099061,-0.1528579,0.06959782,-0.54425085,-0.17446716,-0.57291037,0.08821232,-0.7786742,0.38872322,-0.10385895,-0.16262186,0.108995974,0.12486987,0.34029073,-0.3875296,0.11589838,0.29115504,-0.020507524,-0.043108284,-0.28244334,0.069308236,-0.21026173,-0.33551472,-0.0009095166,-0.4199667,-0.32285744,-0.04025039,0.13072187,-0.21028458,0.03913203,-0.25416666,0.29876012,-0.48579204,-0.13937034,0.36163163,-0.26638207,0.24889576,-0.39328334,0.1516236,-0.08668016,0.39414233,-0.064213835,-0.14048,0.4176896,0.21242101,0.36190856,0.25545242,-0.2418609,-0.25930104,-0.16775566,0.2343054,0.43292755,-0.1822527,-0.3634186,-0.30261,0.0125075355,0.15404612,0.27219683,-0.025796078,-0.26443297,-0.009871243,-0.12498726,-0.20394105,0.38055003,0.43328816,-0.30539393,-0.317423,0.33831227,0.6766889,0.31779662,-0.20623723,0.036299944,-0.0066352617,-0.59263855,-0.15680228,0.15753685,0.021532852,0.34437647,-0.10594675,0.1910197,0.84380895,-0.1525737,0.0011090236,-0.072293505,-0.16596413,-0.12725815,-0.3620416,-0.13092911,0.023127574,-0.48273304,0.030272778,-0.12934862,0.6196461,0.22608763,-0.78343534,0.46277338,-0.5231717,0.14493808,-0.18928716,0.67770666,0.5485704,0.39272565,0.27129766,0.7826411,-0.3730647,0.24472511,-0.062907316,-0.49852613,0.18139118,-0.12736577,0.05337137,-0.5543126,0.15298145,-0.19539957,0.05488514,-0.038656376,0.28912228,-0.5539449,0.016951002,0.11411678,0.7399752,-0.36799267,0.007749308,0.6090783,1.0169533,0.9601267,-0.010719957,1.1175581,0.3025816,-0.26280165,0.2633921,-0.5327342,-0.5781796,0.28869122,0.40969485,0.025435157,0.3679145,-0.15531589,-0.06659803,0.23931454,-0.3038589,0.08667219,-0.07792717,0.24004585,0.09720029,0.02334315,-0.43835264,-0.14196472,0.020644573,0.027158774,0.09189973,0.09765863,-0.21917629,0.37062374,0.0015849881,1.6249243,-0.08991353,0.02677729,-0.014232986,0.533823,0.26522452,-0.16412695,-0.17356187,0.46728095,0.4305319,0.019489288,-0.6127329,0.351027,-0.18086804,-0.5291011,0.002015695,-0.43079373,-0.08088423,0.007121414,-0.42693233,-0.05475898,0.08315399,-0.2927081,0.43594915,-2.75885,-0.20991527,-0.046589278,0.18439466,-0.33271855,-0.18852884,-0.07507983,-0.44837412,0.15257461,0.32874638,0.44687718,-0.6633205,0.5093187,0.50177693,-0.43233573,-0.19770387,-0.6470603,-0.06289446,-0.02570433,0.4772088,0.10467544,-0.061143577,-0.13341993,0.26787198,0.5984591,-0.01087359,0.15765776,0.27132162,0.35394362,0.17400053,0.6189487,0.03724032,0.58908963,-0.19953674,-0.1365978,0.44788417,-0.2213745,0.1694233,-0.17371967,0.082316115,0.35235763,-0.34379783,-0.99681467,-0.6626587,-0.3342143,1.1381836,-0.41695654,-0.44346672,0.27971852,-0.08056223,-0.10029964,0.17221156,0.39595303,-0.075184494,0.015089843,-0.7450279,0.26344326,-0.040278703,0.15122601,0.077522166,-0.01628258,-0.32259184,0.7114165,-0.016213993,0.63124275,0.30539143,0.19982785,0.0192779,-0.40689746,0.10908535,0.6947662,0.23064843,-0.057466183,-0.1425618,-0.24990344,-0.07673451,-0.05604229,-0.08339936,0.42034507,0.75991106,0.06472949,0.17506702,0.22108859,-0.06865473,0.06585522,-0.14160806,-0.23095825,0.10714264,-0.039184622,0.39651322,0.71317315,-0.13628754,0.46354353,-0.33443213,0.37396595,0.016811656,-0.5751208,0.66748655,0.42765853,-0.2301541,0.031966683,0.4579355,0.47130448,-0.30112743,0.43995315,-0.63340026,-0.12694834,0.6054512,-0.1645001,-0.41739073,0.223953,-0.16329339,0.14664727,-0.7593351,0.34200257,-0.25307375,-0.27657607,-0.342424,-0.104836285,-3.7081454,0.18566884,-0.08603631,-0.20661332,-0.11151362,-0.058413282,0.33275333,-0.69775486,-0.5370204,0.06398712,0.20179835,0.4379293,-0.018114835,0.07920765,-0.34323847,-0.05707417,-0.06700005,0.2064612,-0.019922942,0.29337704,-0.14743862,-0.41762555,-0.1521653,-0.073534146,-0.5871739,0.19468161,-0.5529736,-0.442775,-0.038866017,-0.51293176,-0.18515846,0.5437468,-0.24071783,0.006508314,-0.14096302,0.106463596,-0.25100702,0.26176402,0.12026688,0.12553243,0.11041486,-0.014019452,0.06519808,-0.30244228,0.44967002,0.027629638,0.36711943,0.13718583,0.109171785,0.14734262,0.4255401,0.52825975,-0.18198162,0.87777925,0.35134873,-0.18213877,0.30923492,-0.3763429,-0.049793117,-0.5451344,-0.49708974,-0.092148244,-0.45326084,-0.52268565,-0.08581756,-0.31486088,-0.7202763,0.54526335,-0.007864386,0.22469829,-0.08017831,0.1323535,0.53674465,-0.1301582,0.10810583,-0.19521332,-0.15442646,-0.655067,-0.294745,-0.6212008,-0.4525765,0.15854673,0.9888904,-0.30925187,0.052787308,-0.1476585,-0.2916681,-0.04573502,0.011798196,0.0058449805,0.40629822,0.3493739,-0.06593579,-0.6249401,0.44868356,0.017956182,-0.05902959,-0.4378739,0.037936613,0.633434,-0.7205169,0.5850972,0.33453304,0.109032266,0.09191607,-0.5067644,-0.29692847,-0.077737555,-0.233888,0.5867965,0.017772896,-0.63268983,0.48865837,0.27703825,-0.4288522,-0.65132123,0.27945232,-0.056595758,-0.24588422,0.05224684,0.27837065,0.03590451,-0.08822921,-0.2793858,0.19685285,-0.43223888,0.24965343,0.20204443,-0.024833128,0.3101622,0.009889513,-0.3586685,-0.6910573,-0.12061626,-0.41335243,-0.33427957,0.26564425,-0.089674175,0.0023648627,0.020150438,0.040022917,0.43677604,-0.21727906,0.058031604,0.22695696,-0.21218012,0.2753899,0.46340024,0.30504867,-0.37998438,0.43475842,0.16320294,-0.14214797,0.0080047995,-0.07115242,0.40526897,0.040962152,0.326603,-0.15529102,-0.15370935,0.42174202,0.62068844,0.13098432,0.36812958,-0.105207495,-0.20105621,0.47086352,-0.035380773,0.15893117,0.015237302,-0.377203,0.01470235,0.09150314,0.2276926,0.3935461,0.37921622,0.27557886,0.12815642,-0.18540026,0.09854221,0.22108027,-0.14084797,-0.9416419,0.34856313,0.30223143,0.775556,0.534867,0.0120949745,-0.12003088,0.716817,-0.31581363,0.15427902,0.40255713,-0.022672683,-0.64540076,0.66075766,-0.6522582,0.27748626,-0.17457522,-0.019727506,0.17891158,0.07470819,0.35357195,0.6891871,-0.113470316,0.0074631386,-0.04844959,-0.15435502,-0.142802,-0.30277395,-0.017978258,-0.46537954,-0.3432838,0.6362722,0.4081272,0.29857942,-0.14465946,-0.024831975,0.12527621,-0.15946972,0.19739136,0.03830043,0.025384862,0.17400458,-0.57852423,-0.30299023,0.51011276,-0.060733672,0.12028523,-0.2886524,-0.2838521,-0.0574641,-0.39048275,-0.07239424,-0.017299773,-0.4789684,0.005728565,-0.17854902,-0.40518865,0.23690608,-0.17874913,0.124165505,0.07380343,-0.016821517,-0.18647096,0.19327864,0.10450328,0.86022794,0.07702474,-0.22633381,-0.39752805,0.102219656,0.23822135,-0.28617626,-0.0981576,-0.3609107,-0.014767274,-0.48421,0.49575683,-0.12089042,-0.5493649,0.19789335,-0.1645328,-0.04285788,0.5502116,-0.14766201,-0.36877507,-0.05622229,-0.16413145,-0.43070468,0.04833314,-0.25702572,0.23815824,0.33981687,-0.13657176,-0.065460294,-0.19315158,-0.085298896,0.54754925,0.08906148,0.43569216,0.25217342,-0.024662599,-0.36561766,0.088359706,0.26360193,0.41250527,0.19293436,0.098631874,-0.43132025,-0.3481529,-0.24419841,0.17678411,-0.16114438,0.22591713,-0.05458781,-0.21420795,0.850167,0.0318375,1.2384058,0.109256975,-0.27716902,0.12458202,0.43580222,0.009773333,0.12391706,-0.44808713,0.8312756,0.54763967,-0.12757716,-0.16315977,-0.50330794,-0.25836247,0.22743171,-0.28427652,-0.045763686,-0.11292458,-0.6171981,-0.4444923,0.3567767,0.11296899,0.22206351,0.058756232,-0.05756715,-0.06925386,0.08232334,0.391881,-0.52771914,-0.20011449,0.07689929,0.24747682,-0.06026122,0.10701488,-0.46857774,0.3869179,-0.49760768,0.18751715,-0.38655606,0.036379866,-0.20589025,-0.19468689,0.073582515,-0.12226178,0.2742012,-0.22216703,-0.54765326,-0.15881874,0.5173599,0.07933996,0.20199528,0.7102737,-0.28786367,0.18620317,0.17894983,0.48350063,1.1761045,-0.3764386,-0.008719847,0.4242818,-0.33034128,-0.6214805,0.3021846,-0.21011469,-0.14142081,-0.096729025,-0.4580126,-0.42958015,0.2891246,0.11477798,0.044314973,0.086280465,-0.5335342,0.011411641,0.38971823,-0.21548799,-0.23251706,-0.39068314,0.3271431,0.81211007,-0.36392245,-0.38069886,0.10815122,0.24109752,-0.39573663,-0.52059525,-0.1425781,-0.18981034,0.3535235,0.18608537,-0.216961,-0.0025526881,0.1467031,-0.34265295,0.20149335,0.24993066,-0.36663067,0.18247736,-0.079962246,-0.11189526,0.87867737,-0.20122235,-0.13984266,-0.7076607,-0.525933,-0.9802122,-0.4285947,0.29639745,0.119339295,-0.07667744,-0.34632975,0.056991816,-0.12387799,-0.154776,0.0014757514,-0.5689969,0.37879705,0.04450624,0.52647877,-0.24126722,-0.8496916,0.11342663,0.1924218,-0.08915712,-0.6461111,0.6783188,-0.1651873,0.76839495,0.07856592,-0.113268614,0.0421344,-0.3750897,0.026964165,-0.3751325,-0.1960293,-0.8433102,0.15959314 -286,0.35682166,-0.08431549,-0.5117055,-0.05524942,-0.028130343,0.24226804,-0.026480397,0.55399734,0.14843208,-0.2741347,0.06808798,-0.19246672,0.13851953,0.5764382,-0.05446295,-0.5451375,0.05017261,0.20231156,-0.54498297,0.5638672,-0.41106194,0.3244153,-0.07977487,0.35276395,0.08353947,0.38651514,0.10081795,-0.23761123,-0.35757744,-0.05559682,-0.15749684,0.18627763,-0.2959924,0.04472113,-0.1332513,-0.22779022,0.025361378,-0.362456,-0.40784505,-0.5099183,0.21158367,-0.56435186,0.50434357,-0.08646546,-0.2147307,0.39094037,0.10357317,0.41241783,-0.36903068,-0.09367068,0.16336253,-0.037888743,-0.04743854,-0.27856585,-0.3008098,-0.54851025,-0.52652633,0.11367122,-0.45823854,-0.23371635,-0.16347538,-0.015706522,-0.24266586,-0.10174342,0.09229908,0.3203458,-0.41585132,0.07029692,0.11594384,-0.112787455,0.019612273,-0.45916313,-0.11455155,-0.04880055,0.40663406,-0.28045967,0.018128224,0.36922577,0.23697786,0.45079234,-0.10516045,0.016444704,-0.3864551,-0.066131525,0.032941926,0.6015422,-0.15835902,-0.6842012,-0.028195662,-0.017873289,0.02016686,-0.0005148093,0.11552186,-0.15198082,-0.14294602,0.012749481,-0.24944697,0.3863848,0.3443024,-0.4158294,-0.23789838,0.5122417,0.45544967,0.19683532,-0.16788228,-0.1989773,-0.021564452,-0.47867998,-0.13576266,0.04042323,-0.141018,0.503002,-0.075662054,0.27099672,0.60613173,-0.13088027,0.020917369,-0.04912177,0.02530812,-0.033829447,-0.040326696,-0.10670454,0.06799438,-0.34199312,-0.06570171,-0.113684975,0.6159346,0.21404597,-0.65024936,0.51054126,-0.47738683,0.08856066,0.014904837,0.34027764,0.50251675,0.35300273,0.14237629,0.43741935,-0.32415548,0.11854318,-0.10903911,-0.3973779,-0.009707161,-0.14165512,-0.09068293,-0.63933396,0.18568465,0.17273384,-0.027197909,0.18231727,0.3167015,-0.4946762,-0.0765145,0.1962114,0.9425849,-0.31322557,-0.22866316,0.63133657,0.96637666,0.69251126,-0.12013844,1.0734026,0.18658923,-0.31606388,0.24434285,-0.6017595,-0.5262156,0.1854268,0.29904038,-0.45147845,0.45002452,0.06076348,0.0046296436,0.3068332,-0.13704461,0.14825651,-0.08360573,0.05588681,0.09873216,0.0014418374,-0.40479133,-0.3646026,-0.12917764,-0.17497677,0.30892977,0.35234278,-0.22631897,0.4057823,-0.10590356,1.9072887,0.13967685,0.1421081,-0.021807408,0.53102654,0.16415091,0.026697647,-0.25401056,0.48314407,0.24069403,0.10153753,-0.42387295,0.12403634,-0.32702643,-0.6075827,-0.07196275,-0.3533704,-0.0692362,-0.1048559,-0.50611985,0.0026560624,0.024966994,-0.23279001,0.53587526,-2.9859436,-0.3499257,-0.120982744,0.26078472,-0.34807694,-0.38844416,-0.18831877,-0.36588657,0.25550753,0.2705674,0.45775017,-0.60082066,0.4506738,0.17229304,-0.39660186,-0.24625778,-0.44856384,-0.066102184,0.028962938,0.35536423,-0.22419192,-0.019552402,0.19509482,0.25723344,0.36145046,-0.23601566,0.032594852,0.24163647,0.31931293,0.2521818,0.31766054,-0.17065634,0.6150967,-0.22716975,-0.12519574,0.14833052,-0.29803494,0.28875872,-0.024229297,0.16131543,0.24498703,-0.3580082,-0.86483425,-0.4034142,-0.018969735,1.148719,-0.15724903,-0.1602753,0.16684748,-0.3382862,-0.23890771,-0.113807835,0.4006542,-0.012283627,-0.07588177,-0.59330285,0.15158369,-0.039690915,0.11237952,0.010257278,0.08130991,-0.33426479,0.44527677,-0.01176249,0.49248543,0.28205603,0.17415921,-0.23356776,-0.23708245,0.04818075,0.8373668,0.2053731,0.1305316,-0.09678423,-0.21528868,-0.49293435,-0.12951349,0.12958576,0.40558186,0.49612173,0.046094958,0.017351035,0.23840974,-0.0036772809,0.11550756,-0.12357731,-0.20368932,-0.058217604,0.023961056,0.46656975,0.49753806,-0.3730992,0.749132,-0.100977674,0.17866193,-0.26955223,-0.35823002,0.50902164,0.73023224,-0.2719951,-0.16099453,0.39900988,0.47824675,-0.3010636,0.33986396,-0.46234357,-0.27405798,0.54007596,-0.2883417,-0.22727808,0.3369307,-0.2130599,0.14630213,-0.96759623,0.14464168,-0.09072841,-0.38761607,-0.41943935,-0.048591223,-3.5219138,0.1187543,-0.14936489,-0.20890222,-0.027283179,0.013161222,0.01088083,-0.6172448,-0.38181254,0.15450433,0.10541025,0.5789402,-0.05495337,0.0930782,-0.24092008,-0.34671083,-0.15885776,0.12415637,0.002184546,0.43420845,0.0029427768,-0.51599824,-0.08673219,-0.24026394,-0.3412316,0.15910009,-0.6935844,-0.34406212,-0.12078501,-0.5706411,-0.27465147,0.7212412,-0.3938952,0.043950405,-0.17977743,0.09698747,-0.074236825,0.3146247,0.03718468,0.039157227,0.049027465,-0.100716814,0.19558683,-0.35952696,0.2164503,0.0964225,0.37520313,0.2935222,0.056729242,0.19072527,0.61099476,0.69849205,-0.04390152,0.6519087,0.3840918,-0.20107909,0.3625731,-0.41601476,0.015138475,-0.36728314,-0.5182315,-0.041024014,-0.3467291,-0.548448,-0.17320925,-0.34915859,-0.64463574,0.47745126,0.0010862033,0.010383886,-0.054366715,0.31911546,0.53701705,-0.31601626,0.12385186,-0.06329331,-0.10785052,-0.47918633,-0.22531518,-0.55528486,-0.39802495,0.27311847,0.8825386,-0.19930027,-0.015920162,-0.092912816,-0.34883007,-0.10155072,0.017399943,0.1868427,0.21104997,0.27553794,-0.39030063,-0.5998377,0.44242477,-0.3056982,-0.15135159,-0.45235318,0.10692315,0.53769416,-0.5030742,0.58024484,0.34798247,0.003673911,-0.015488625,-0.3102541,-0.12723936,0.11073933,-0.066262454,0.07187731,-0.03479139,-0.7853321,0.31050593,0.3103956,-0.37496078,-0.5974818,0.6137219,0.023335127,-0.30237898,-0.15870266,0.30188408,0.2776473,-0.06821828,-0.3505433,0.17063287,-0.5413786,0.18947825,0.28227144,0.030145725,0.35062402,-0.10557842,-0.17972231,-0.69926465,-0.0834619,-0.33481494,-0.2483823,0.24865483,0.19753863,0.27876347,-0.05055284,0.0055091144,0.17630528,-0.5061981,0.014771719,-0.005456372,-0.2450081,0.31234166,0.22423549,0.3787566,-0.5163826,0.5267118,-0.066563666,0.017195094,0.105884805,-0.06510362,0.53577316,0.17113806,0.2497882,0.05700772,-0.34555054,0.31541732,0.6985992,0.26644394,0.28010896,0.12981184,-0.24042676,0.12528335,0.076195754,-0.048200987,0.1327499,-0.37688047,0.010546748,0.023389084,0.1680536,0.43186733,0.19018342,0.31962177,-0.030456575,-0.38151786,0.06402751,0.13136058,0.050089043,-1.082048,0.39108133,0.2880675,0.69546735,0.2420811,0.055830274,0.04892093,0.5944933,-0.23062037,0.1892121,0.3325929,-0.22979529,-0.5521476,0.49610907,-0.63525,0.58107215,0.08767522,-0.08322924,0.18225734,-0.089025564,0.3219036,0.7837425,-0.16039696,0.07703808,0.18776314,-0.38452265,-0.030146424,-0.25850278,0.031119445,-0.6418406,-0.11809946,0.48697993,0.3898855,0.28486055,-0.099373385,0.044854205,0.15657431,-0.120416954,0.038755614,0.10125236,0.31235516,0.036741924,-0.71812755,-0.19222078,0.47739208,-0.070214346,0.15733074,0.1518886,-0.22523095,0.34492296,-0.26118988,-0.024124483,-0.018431846,-0.49452004,0.032819383,-0.23611546,-0.3957494,0.586051,-0.0726254,0.37537614,0.123838894,0.054902628,-0.24505372,0.6006085,0.020849522,0.7265232,-0.13528925,-0.3095253,-0.40151742,0.144121,0.19835348,-0.16102359,-0.008785526,-0.29311875,-0.04780736,-0.48836604,0.29996726,0.0006783962,-0.10482333,-0.16213067,-0.10684968,0.1522026,0.37469372,-0.024061957,-0.06854281,-0.17476615,-0.029352598,-0.21495943,-0.045568123,-0.1827227,0.26834244,0.40161842,-0.08524516,-0.17889513,-0.0942674,-0.025764827,0.4154161,-0.051287115,0.3168309,0.30750397,0.21508308,-0.026544753,-0.16810183,0.2554812,0.3025009,-0.032200906,-0.040760357,-0.39784083,-0.21147601,-0.28636837,0.13485247,-0.21866553,0.22936265,0.23959808,-0.21318096,0.64610636,-0.13446766,1.1534237,0.13889411,-0.26645273,0.07829612,0.43797845,0.11232731,0.09800069,-0.3156415,0.99724555,0.49132118,0.08189013,-0.23939537,-0.39368722,-0.14130355,0.19399491,-0.24724264,-0.27243978,0.10890748,-0.4359891,-0.39702842,0.3205486,0.06459442,0.41588366,-0.09508808,0.16612636,0.20515701,0.15169574,0.24280411,-0.47681573,-0.19457947,0.3618184,0.34487504,-0.00029233296,0.20914592,-0.44665578,0.41712603,-0.47870454,0.09543942,-0.23698281,0.12318972,-0.15280147,-0.3291832,0.22944085,0.11820392,0.2637566,-0.29025808,-0.40046594,-0.21782564,0.40854982,0.07009199,0.050722416,0.45994127,-0.2222731,-0.08108715,0.053039763,0.4876057,0.8880024,-0.24305582,-0.03892083,0.56054837,-0.21847671,-0.6506271,0.24641185,-0.17330573,0.28819996,-0.16656433,-0.08858991,-0.6039754,0.4174395,0.15258953,0.0037312687,-0.081811875,-0.34118965,-0.19483082,0.24028978,-0.309935,-0.29760277,-0.3201222,0.17915888,0.68638813,-0.31613356,-0.3185282,0.18814301,0.24723966,-0.20382638,-0.5625999,-0.034879874,-0.39129952,0.23190175,0.10833203,-0.28961554,-0.2228608,-0.0094291605,-0.28149897,0.3404952,0.34484679,-0.3985525,0.043578062,-0.32473382,-0.1563688,0.9505174,-0.1730562,0.33529076,-0.48057353,-0.42813063,-0.77333224,-0.625029,0.4424649,0.047300447,-0.16116263,-0.6037222,0.032185834,-0.009570781,-0.37966785,-0.05494895,-0.36163524,0.3489407,0.07257804,0.14478116,-0.14537692,-0.72146815,0.11391703,0.14978947,-0.33891094,-0.60966986,0.3364127,-0.11171642,0.9089728,0.03925944,0.13480473,0.47564444,-0.31072408,-0.2071205,-0.31813633,-0.002229474,-0.51562035,0.15356609 -287,0.41422287,-0.2943224,-0.5383467,-0.1463871,-0.3592012,0.23525749,-0.2188691,0.06890636,0.44218236,-0.19153818,-0.34862575,0.03830496,0.012982556,0.44811985,-0.020386415,-0.78928155,0.004876026,0.2920682,-0.9720071,0.62216866,-0.43668276,0.40779993,0.1496673,0.3812356,0.11573477,0.3009679,0.20500013,0.013116168,-0.18857066,-0.0014657378,-0.1404372,0.12377565,-0.58990043,0.16775814,-0.20175095,-0.31415775,-0.11540948,-0.25407335,-0.2695393,-0.83675593,0.17633244,-1.0048089,0.6097906,-0.2721592,-0.094464116,-0.036238756,0.28021753,0.44597986,-0.34731206,0.024432225,0.23288126,-0.34301156,-0.39043453,-0.35066366,-0.14104474,-0.53587276,-0.614975,-0.08319836,-0.6097851,-0.21828052,-0.2523156,0.33162132,-0.29204613,-0.013833516,-0.19869804,0.419468,-0.31062248,0.024123728,0.36000174,-0.2164123,0.10618763,-0.52757543,0.052196383,-0.055422444,0.40365365,0.11543005,-0.284943,0.32022285,0.49369034,0.44099328,0.40127012,-0.35700026,-0.3380851,0.028593203,0.37232453,0.32996348,0.087210946,-0.13921618,-0.3052377,0.05754485,0.5771445,0.21345903,0.358671,-0.20637143,-0.10225104,-0.07385588,-0.023253156,0.7364507,0.4330445,-0.3535904,-0.47627428,0.4145119,0.8218102,0.3870571,-0.23263738,0.12416345,-0.005758292,-0.4891076,-0.04025991,0.19740912,-0.13120024,0.5619531,-0.29287142,0.08292891,0.77594864,-0.34635752,-0.122746326,0.1957783,-0.07461064,-0.36236483,-0.0057201213,-0.13438651,0.08247779,-0.51088005,-0.1749604,-0.35757297,0.5944252,0.08061727,-0.5516636,0.36099213,-0.47464803,0.2819126,-0.03764221,0.6845449,0.82340133,0.59375095,0.3516725,0.88500845,-0.07901222,0.17376302,0.064212374,-0.4428988,0.17613831,-0.5369817,0.14832652,-0.5612176,0.12568595,-0.26694927,-0.20990553,0.053259052,0.5509231,-0.6935129,-0.043638874,0.14644662,0.7585071,-0.28736967,-0.24030903,0.8174612,1.0321901,1.1074201,-0.0025984156,1.4536582,0.5462135,-0.23360205,-0.07894361,-0.47699183,-0.6619869,0.19214995,0.22345884,-0.34508988,0.5178565,-0.042455725,0.03957981,0.3525298,-0.58502495,0.059682317,0.060182896,0.31242862,0.1362501,-0.17211376,-0.3913498,-0.035761748,-0.039884765,0.043836676,0.46512946,0.16046906,-0.32487872,0.5574533,0.15489766,1.1870193,-0.08292329,-0.096348986,-0.14011407,0.39700368,0.2845921,-0.0009193591,-0.0151500655,0.30058178,0.4514276,-0.29305512,-0.53840584,0.19219849,-0.33929893,-0.2438755,-0.30874047,-0.3405049,-0.10093421,0.071919285,-0.20535794,-0.35754436,0.06415995,-0.45053476,0.42621517,-2.3920176,-0.3578898,-0.0910377,0.45408645,-0.21816145,-0.15700594,-0.16598919,-0.74055,0.12002319,0.18432863,0.3890486,-0.7077447,0.52499473,0.47040147,-0.7022278,-0.27535254,-0.7818342,-0.15393779,-0.008660631,0.5453033,0.15673184,-0.12410198,-0.19252001,0.21429572,0.5167184,0.0031356642,0.034937672,0.7020806,0.41521105,-0.029645149,0.4720006,0.25516433,0.79835546,-0.032638993,-0.28132123,0.5574753,-0.28260934,0.36883974,-0.20677374,0.052508503,0.64966995,-0.19394922,-0.91197693,-0.7231423,-0.21898797,1.1460103,-0.3968074,-0.5561401,-0.030862851,-0.2099096,-0.24364087,0.15282877,0.61005634,-0.12454431,-0.06537421,-0.81854045,-0.07118465,0.082376495,0.3299136,0.032521475,-0.08902215,-0.3283201,0.72991997,-0.15521368,0.51720566,0.018709186,0.46022987,-0.27836245,-0.55915755,0.24126129,1.0293075,0.41344315,-0.11478516,-0.23283848,-0.368786,-0.17535408,-0.1794137,-0.0027485234,0.540548,0.6709609,-0.14197038,0.055116024,0.41388783,-0.12831919,0.08410905,-0.29626375,-0.19613752,-0.026347263,0.060413886,0.41060185,0.89899397,-0.1438873,0.59185225,-0.37273794,0.39519352,0.11684024,-0.88276833,0.84567505,0.77452093,-0.22282699,-0.19747661,0.49995762,0.14907077,-0.59639996,0.6114254,-0.70973593,-0.3542958,0.70465535,-0.13613544,-0.3513708,0.24340929,-0.25061098,0.3737028,-0.86231846,0.4099452,-0.2570779,-0.362379,-0.5437896,-0.04353645,-3.1556756,0.09974488,-0.11966451,0.0046620327,-0.31758186,-0.0644881,0.23811135,-0.47855377,-0.70960635,0.0922742,0.2891528,0.7203246,-0.09629305,0.15877107,-0.11257966,-0.37105268,-0.17896883,0.1823679,0.086954035,0.43877348,-0.26381397,-0.47987846,0.069714285,-0.09417973,-0.46166497,0.06799422,-0.7073221,-0.54748446,-0.17001812,-0.424089,-0.20821716,0.6657731,-0.4706619,0.039242394,-0.5000986,0.20991956,-0.09078692,0.16643417,-0.055038225,0.104280114,0.27515396,-0.021481927,0.1694589,-0.16548122,0.48308566,-0.08520192,0.27945405,0.34701523,0.061094794,0.32467794,0.55536723,0.78275216,-0.22445242,1.0295669,0.4180096,-0.10943239,0.19037355,-0.09350947,-0.41806737,-0.6221811,-0.32055417,0.011535555,-0.52909243,-0.36273023,-0.03109302,-0.33695868,-1.0420599,0.5958633,0.066900276,0.40340668,-0.055586945,0.3663545,0.6038156,-0.016777862,0.07398624,-0.15633266,-0.37135682,-0.46838713,-0.3200283,-0.67951256,-0.60264736,0.13460931,1.0554838,-0.47898215,0.08197888,0.05983197,-0.45141673,0.05339806,0.29448563,-0.09587283,0.28844267,0.5928677,-0.052955117,-0.6463247,0.28734133,-0.10455235,0.07147876,-0.6244008,0.22023334,0.7724792,-0.8229731,0.4070407,0.40411615,-0.09806715,-0.14276823,-0.38910553,-0.074139886,-0.0793337,-0.11394034,0.50743955,0.17150936,-0.56471634,0.4697594,0.13175622,-0.4309257,-0.83915937,0.23526695,-0.13234656,-0.023862375,-0.039068777,0.3615252,-0.005150432,-0.0781809,-0.36609942,0.05218676,-0.35577652,0.28593388,0.27765876,-0.0532269,0.04640222,-0.123485744,-0.46968898,-0.88127106,0.0468843,-0.55876476,-0.23759244,0.16539453,0.16762713,0.1330622,0.08947947,0.24204819,0.48148617,-0.34317008,0.07638886,0.023295853,-0.44814116,0.2501488,0.48890516,0.3233653,-0.4435091,0.49995467,0.11559454,-0.33718663,0.13997217,-0.10512867,0.59831154,0.11050038,0.3610304,0.24353442,-0.0010650924,0.23947704,0.6606902,0.0019293173,0.50483435,0.04647716,-0.25403664,0.30442467,-0.056714006,0.39941838,-0.17001006,-0.49199697,0.07324767,-0.048436157,0.17898151,0.549083,0.38842985,0.39234433,0.16512394,-0.26936808,0.016516423,0.02491859,-0.067226194,-1.5885847,0.2996669,0.3587154,0.93823516,0.35347515,0.015170069,-0.073128626,0.7363321,-0.3684686,0.17983733,0.4688953,0.046107568,-0.43441626,0.5526419,-0.805416,0.41939792,-0.057587285,-0.019349469,0.109958,0.26355308,0.23278114,1.0229714,-0.38565,0.049574427,-0.106408514,-0.11130159,0.07560759,-0.32534647,0.15317467,-0.44043747,-0.60508806,0.86248434,0.3094229,0.45612168,-0.27695435,-0.01696174,0.042610835,-0.30105528,0.41352683,-0.061365597,0.09718013,-0.026130872,-0.51507455,-0.033299875,0.4697511,-0.15056607,0.13851462,-0.08536003,-0.20769031,-0.086862735,-0.1591537,0.04579411,-0.13781554,-0.6594072,-0.31265035,-0.08919033,-0.4962099,0.6063317,-0.06449095,0.15070307,0.28942418,-0.060383867,-0.20628786,0.25216216,0.13648777,0.70053,0.28103423,-0.12457738,-0.35511777,0.3015752,0.32905814,-0.30998713,0.28489324,-0.2132624,0.2416874,-0.5190252,0.72230643,-0.31652954,-0.55289805,0.09184395,-0.31549692,-0.025663001,0.44989404,-0.25686142,-0.24469344,0.21657448,-0.22480714,-0.27695936,0.021741936,-0.27153185,0.08552464,0.36268568,-0.22234908,-0.31996462,-0.3129162,-0.118679285,0.5014943,0.02186881,0.4231808,0.45308608,-0.08719741,-0.38297918,0.11444599,0.35651973,0.49280256,0.19832094,-0.2147392,-0.5753241,-0.40830612,-0.4466551,0.27586183,-0.06226572,0.046192296,0.06019978,-0.3726557,0.8354787,0.105109826,1.4252121,0.09880788,-0.36296198,0.20619938,0.6813239,-0.03376951,-0.027829597,-0.5050135,0.81745625,0.48595557,-0.15018591,-0.036095995,-0.7375699,-0.11171552,0.43515295,-0.41703674,0.027107997,-0.08765215,-0.7123496,-0.5494036,0.22714141,0.18306446,0.09863419,-0.13930377,0.23585667,0.13849768,0.05259948,0.3886444,-0.6436812,-0.19494681,0.31261355,0.13937935,-0.22821738,0.21064162,-0.442903,0.45194992,-0.75718886,-0.03929344,-0.33200523,0.053104836,-0.1281224,-0.33448544,0.23679294,0.19472957,0.14936766,-0.5006662,-0.5303235,-0.2546975,0.61261123,0.055685215,0.09285259,0.5782808,-0.4042699,-0.08201929,0.17738162,0.56082875,1.4631792,-0.33944175,0.15010728,0.22350018,-0.4549275,-0.59386057,0.45469385,-0.44884565,0.091014646,-0.17174338,-0.5180299,-0.61763006,0.30130357,0.10023614,0.19248255,0.24706276,-0.5026784,-0.17456438,0.23446487,-0.4679406,-0.13672975,-0.16467895,0.17887463,0.52063966,-0.38838643,-0.45356116,0.12674902,0.37106076,-0.35941964,-0.36836213,-0.15225145,-0.16670656,0.38496956,0.13620973,-0.4247559,-0.0909325,0.11106556,-0.5728621,0.09468741,0.34618288,-0.37615186,0.11356642,-0.2618569,0.07627376,0.7942744,-0.31549573,0.07322932,-0.6167807,-0.48906103,-0.87332165,-0.2645503,0.029899612,0.11995559,-0.23823701,-0.6642407,-0.076146185,-0.235131,-0.06515025,0.23792514,-0.65094054,0.42021975,0.2365175,0.38319737,-0.36147484,-1.1125528,0.14395793,0.03488756,-0.21224472,-0.69260705,0.63561535,-0.1354967,0.792954,0.18025868,-0.015222154,0.020042721,-0.4667401,0.21152286,-0.34093556,-0.1678462,-0.73658186,0.11051685 -288,0.41679922,-0.10556196,-0.40549347,-0.33600396,-0.24952592,0.10923029,-0.23173568,0.31091645,0.2164488,-0.30431095,-0.091544874,0.081840195,0.098155424,0.25327766,-0.35439822,-0.74735534,0.107077725,-0.0041444483,-0.5206306,0.5304234,-0.58733296,0.31704184,0.118470676,0.45076182,0.062067527,0.2495411,0.22263148,0.06389332,-0.24005276,-0.28441164,-0.105774745,0.06380252,-0.6535398,0.20448242,-0.31753665,-0.29994255,0.01823232,-0.5210822,-0.36888748,-0.7209853,0.35507792,-0.84247214,0.53623706,-0.047821898,-0.49253595,-0.12451163,0.2321385,0.15635589,-0.23526412,0.00094577443,0.11028235,-0.2117316,0.03639456,-0.19055429,-0.20628038,-0.5936153,-0.51948285,-0.030041877,-0.674542,-0.029653035,-0.2401151,0.2595691,-0.2822556,-0.047508277,-0.061876934,0.32232362,-0.41073868,0.038677294,0.13058208,-0.29806247,0.22421195,-0.43777162,-0.22013062,-0.062192526,0.23524478,0.07962458,-0.30848324,0.42394182,0.3140682,0.5030226,-0.016548593,-0.26111138,-0.027434042,-0.063043356,-0.028562518,0.52798563,-0.079868995,-0.58457536,-0.32449597,-0.19562949,0.5566977,0.20594451,0.12557855,-0.24002682,0.03764132,0.014142628,-0.29129133,0.549248,0.6788022,-0.15772706,0.06382491,0.27339086,0.23657614,0.15875028,-0.28928488,0.18815301,-0.017684413,-0.51553565,-0.19237518,0.065754816,-0.019671198,0.8239752,-0.22023922,0.32165405,0.8010711,-0.1418531,0.0057653463,0.19052744,-0.08731323,-0.13767084,-0.034431413,-0.2033063,0.17548952,-0.5718159,-0.15326624,-0.40641075,0.6423343,0.13396317,-0.7168925,0.33369544,-0.48092005,0.047898557,-0.09308175,0.5735975,0.63944024,0.580495,0.34971634,0.786788,-0.44174388,-0.06533839,0.19429518,-0.28028858,0.26672885,-0.16523647,0.11071776,-0.38040262,-0.079821706,0.2003896,-0.0069695446,-0.007310693,0.49279854,-0.42121255,-0.082200184,-0.07740348,0.63256156,-0.35029027,0.0158945,1.0211875,1.2776252,0.9269823,0.13199972,1.2929995,0.1134165,0.016036304,-0.08989636,0.05043045,-0.61697876,0.20505792,0.39579612,0.019286413,0.41619104,0.13318709,0.027927719,0.30589196,-0.37284753,-0.09209785,0.09975844,0.3142772,-0.062992744,-0.12126916,-0.46245348,-0.19692081,0.19471143,0.23377442,0.17301562,0.34670174,-0.2690473,0.4845274,0.116895914,1.1171312,0.08467768,0.024464458,-0.034944,0.5565858,0.23042497,-0.04206104,-0.028054897,0.45958817,0.23762318,0.10932389,-0.57778174,-0.13510042,-0.31338832,-0.49831727,-0.14815599,-0.5016199,-0.15291461,-0.41914532,-0.46266535,-0.124016516,0.012243048,-0.2740598,0.272037,-2.488415,-0.40724385,-0.15124692,0.41751388,-0.122872226,-0.27074337,-0.14127384,-0.4151937,0.49997142,0.43798718,0.36161155,-0.7575584,0.45127818,0.5118231,-0.3048006,-0.1831975,-0.63710314,0.0030284845,-0.0452917,0.33439177,0.04016947,-0.18837054,-0.11284293,0.32686657,0.61037445,0.25066078,0.18936488,0.09006361,0.6011226,-0.26257735,0.51730084,-0.013318305,0.4167978,-0.18191601,-0.074607864,0.19972011,-0.5674889,0.41689676,-0.05968625,0.23611468,0.4747362,-0.6093656,-0.90719444,-0.66575706,-0.27291873,1.2662861,-0.36561707,-0.48258412,0.25715476,-0.1537068,-0.44776413,0.013759512,0.6552175,-0.24193738,0.14635354,-0.7267415,-0.079174004,-0.24098255,0.2488619,-0.17342871,0.27137655,-0.40437096,0.6626053,-0.100964345,0.562312,0.18295462,0.08366825,-0.34202436,-0.5310044,0.19190294,0.84908265,0.6531403,0.055153575,-0.2209776,-0.058280505,-0.30070588,-0.0762023,-0.0007437651,0.668554,0.7533921,-0.08003586,0.07226459,0.3696016,-0.13081421,-0.06332158,-0.1748111,-0.34708196,-0.07016683,0.043859582,0.798746,0.82733184,-0.2397967,0.16321088,-0.0760454,0.41150576,-0.31674284,-0.5069409,0.5587488,0.61035883,-0.12962747,-0.05978122,0.5978759,0.4194752,-0.46452257,0.54224974,-0.5511985,-0.49128786,0.5600342,0.041502826,-0.4756381,0.26610085,-0.28619987,0.10649958,-0.9349649,0.53797317,-0.04447953,-0.61789024,-0.4822709,-0.217987,-3.2924676,0.023550816,-0.07906833,-0.22321653,-0.3743663,-0.23871256,0.2600568,-0.6452229,-0.701242,0.043262105,0.03195542,0.6525346,-0.109983645,0.2067185,-0.29151806,-0.30842227,-0.20701383,0.2261335,0.04016647,0.22893688,-0.12382806,-0.28951466,-0.04586146,-0.321216,-0.5907574,0.040018138,-0.4722301,-0.6368728,0.017811198,-0.51430714,-0.11966236,0.686814,-0.2338895,-0.04065095,-0.3142768,-0.10983766,-0.15070993,0.3042366,0.12336194,0.11665087,-0.026462408,0.037970368,0.07732194,-0.34125906,0.22575697,0.13800159,0.43174267,0.4610736,-0.27130446,0.20496584,0.6098398,0.6191889,-0.0617078,0.9056599,-0.023838501,-0.07565803,0.3191293,-0.24548069,-0.5645287,-0.59094274,-0.32615694,0.033417463,-0.35214964,-0.19389655,-0.16134551,-0.34069902,-0.81340855,0.387485,0.19600107,0.097242996,-0.25747216,0.27543658,0.31219688,-0.18285953,-0.05412399,0.07055713,-0.22581816,-0.55908245,-0.22152941,-0.7657844,-0.53904694,0.086454645,0.8019958,0.055024624,-0.13994758,0.18041867,-0.33394623,0.17893527,-0.07243119,0.186797,0.109531865,0.23412234,-0.114238925,-0.77202195,0.45180318,-0.2878838,-0.054741565,-0.5543713,-0.16136912,0.86909145,-0.6629857,0.30248576,0.60379076,0.24720098,-0.012574031,-0.5513583,-0.11927735,0.0005850975,-0.06301364,0.57981956,0.2054658,-0.7859481,0.50550056,0.0151484655,-0.025627438,-0.44888481,0.5783046,-0.11880796,-0.17377171,0.0868852,0.41259748,0.00050946383,-0.031796437,-0.2845613,0.32625502,-0.5132319,0.25163168,0.41666052,0.13633022,0.67788595,-0.012282411,-0.2578998,-0.693076,-0.17763291,-0.6034421,-0.2357637,0.07203087,0.010288651,0.080381125,0.04418912,0.09621068,0.24894312,-0.4610179,0.23200668,-0.051605266,-0.18078184,0.5040896,0.63537496,0.5938299,-0.4607778,0.78361166,0.28065118,0.10496453,-0.09530174,-0.047239468,0.4185149,0.27577993,0.32635805,0.02631843,0.020500243,0.23545423,0.6693739,0.208395,0.3903579,0.45592275,-0.24540065,0.3077535,0.121773496,0.36228272,0.017327223,-0.34571382,0.088980876,-0.08274229,0.0041510086,0.45349666,0.1394533,0.16435876,0.08284533,-0.27564985,0.078974776,0.26499227,-0.32928035,-1.6724327,0.45054403,0.42081305,0.7165944,0.49062377,-0.025084678,-0.092590645,0.54557234,-0.19201502,-0.048617914,0.3045244,0.20731474,-0.3517952,0.6322466,-0.490326,0.47190407,-0.19836083,0.038870454,0.07052122,-0.06893956,0.40503377,0.9364351,0.02411273,0.16045788,-0.07764366,-0.17052552,0.10576655,-0.53011036,-0.040835064,-0.30432206,-0.27008504,0.5741502,0.27371407,0.30331978,-0.25831836,0.009668011,-0.0059035053,-0.12427668,0.11931968,-0.10488666,-0.11116295,-0.24353679,-0.75253105,-0.28927204,0.5491024,-0.17714468,0.13639227,0.14228433,-0.22957277,0.15524575,-0.04596923,-0.046675436,-0.015353174,-0.72486824,-0.12325696,-0.38266027,-0.55056036,0.33056238,-0.40042385,0.24632399,0.20800146,-0.019910542,-0.14187166,0.017911475,0.14199802,0.7119347,0.09893953,-0.28173226,-0.18096887,-0.038197987,0.3508225,-0.47185522,-0.12358551,-0.3989534,0.15917356,-0.40792164,0.3769547,-0.17852713,-0.2866471,-0.1171439,-0.10819982,0.032882765,0.2693743,-0.32091495,-0.2008788,0.15274061,0.011996737,-0.2175264,-0.0029538847,-0.314936,0.32370678,0.19295089,-0.06154436,0.15713336,0.06970547,0.027819706,0.34944242,0.15670094,0.32391375,0.46922362,-0.12662277,-0.3414685,0.00016908463,-0.07511048,0.62734807,0.110820696,-0.009509353,-0.3009714,-0.44920585,-0.3585521,0.3917949,-0.20217098,0.12274608,0.23667742,-0.19829758,0.7663136,0.18580753,1.1937168,0.11440826,-0.47974318,0.15038726,0.6028924,0.007868969,0.012515389,-0.3376635,1.1293304,0.37623733,-0.44244084,-0.12387726,-0.6147425,-0.17684151,0.18800065,-0.21359316,-0.4262231,-0.20214452,-0.8482806,-0.15798165,0.13461915,0.22358465,0.035701733,-0.09749815,0.054444548,0.2868314,0.09901103,0.32729068,-0.77713203,-0.09063273,0.43910617,-0.012080864,-0.027765442,0.009821837,-0.41354784,0.36896732,-0.5322558,0.027841436,-0.5029968,0.17371526,-0.03540724,-0.55473286,0.17021745,0.04957211,0.40904853,-0.38967997,-0.42909348,-0.2615705,0.5802047,0.2257893,0.23577048,0.5142158,-0.19484782,-0.1784742,0.075951174,0.5093111,1.3628736,-0.049364302,0.2519439,0.2470665,-0.47650993,-0.65627056,0.006557529,-0.4674541,0.13679716,-0.044773944,-0.47185817,-0.45541456,0.30087966,0.063972205,0.072962835,0.14038828,-0.574577,-0.2651901,0.4351012,-0.25132054,-0.32818013,-0.35289353,0.013405185,0.64918876,-0.37355593,-0.35877687,-0.054379683,0.3478275,-0.2062129,-0.64007825,-0.07384233,-0.22106358,0.42093346,-0.063822426,-0.35479382,0.012787191,0.075635105,-0.42640877,0.343353,0.354489,-0.27651736,0.07182148,-0.26511925,-0.14300053,1.0447768,-0.01630242,0.063692704,-0.5646286,-0.5502599,-0.7821325,-0.35631725,-0.045514822,0.17128386,-0.014800365,-0.56536186,-0.06007814,-0.04985136,0.05707741,0.074378185,-0.4763675,0.45627493,0.17159115,0.5953269,-0.02452601,-0.9653549,0.13962287,0.16605617,-0.28883335,-0.5562523,0.6487434,-0.12317793,0.50781727,0.14525035,0.1367128,0.01804461,-0.717583,0.29484022,-0.27998155,-0.10395953,-0.61918414,0.30364677 -289,0.49559793,-0.11373223,-0.43251136,-0.14632963,-0.19897531,0.1493433,-0.16161463,0.49467295,0.21335606,-0.3100244,-0.035734028,-0.0012670329,0.055348404,0.22561404,-0.2659019,-0.63015425,0.019281594,0.0051161083,-0.31034514,0.35541645,-0.4889539,0.4937868,0.120557986,0.2594861,0.014615297,0.2531416,0.37696117,-0.1823827,0.19283812,-0.3468216,-0.18476507,0.27771953,-0.6760337,0.052805755,-0.08297432,-0.33380178,0.15654291,-0.196849,-0.24890949,-0.70695287,0.19987358,-0.7200495,0.63136375,0.13626851,-0.28433168,0.29820538,0.20393656,0.22798201,-0.20247124,-0.03076649,0.04062127,-0.19817127,-0.06957984,-0.21238755,-0.10605942,-0.45861274,-0.5532597,-0.051805634,-0.44425684,-0.12924418,-0.29716936,0.086123586,-0.33037302,0.05077682,-0.033772733,0.31115595,-0.42724174,0.061473858,0.2707785,-0.13760833,0.37149334,-0.5713853,-0.09123856,-0.15476856,0.21524541,-0.13390042,-0.21517403,0.22128525,0.39055124,0.56107074,-0.08021581,-0.19441639,-0.32442123,-0.31274682,-0.03828237,0.5767865,-0.24563535,-0.4302156,-0.15427032,-0.056905396,0.2552692,0.23315422,0.06837045,-0.09321286,-0.15945767,0.08608242,-0.37275797,0.47475287,0.493046,-0.5315599,-0.36268464,0.2633449,0.5374996,0.0070267576,-0.122400224,0.031517345,0.024978843,-0.52395946,-0.123741336,0.021772478,-0.18348482,0.4670991,-0.19471033,0.14469203,0.71549785,-0.29447335,-0.043770473,0.24669476,0.07231972,-0.03955832,-0.19741575,-0.26448476,0.21899624,-0.7420969,0.0325995,-0.355331,0.96096814,0.15581012,-0.6456142,0.32126206,-0.5443036,0.123727955,-0.16397044,0.57789105,0.64949507,0.4483924,0.25643232,0.76499516,-0.5145624,-0.0297458,-0.033858683,-0.34106568,0.3060736,-0.16569725,-0.12356111,-0.4569246,0.05571843,0.17092085,0.12655547,0.20171228,0.2941441,-0.6489216,-0.1290385,0.18374364,0.7485425,-0.32819057,0.025752353,0.6554703,0.999788,0.9271771,0.034458604,1.1994021,0.10633632,-0.27713546,0.13803421,-0.1134945,-0.78849024,0.18093033,0.29402837,-0.0053070104,0.1353151,0.12762192,-0.0099110175,0.2870932,-0.4132059,-0.16854444,-0.19052537,0.42511886,-0.0011820793,-0.02961742,-0.40785095,-0.33238402,0.033334296,0.017514799,0.15028702,0.3633521,-0.1991059,0.4534605,0.08089125,1.184954,-0.048204456,0.14738706,0.14780799,0.45956588,0.31159446,0.011529527,-0.07427903,0.26392698,0.43793032,0.28059813,-0.63937026,-0.0054347515,-0.15766008,-0.3604595,-0.14120078,-0.45003906,-0.05236817,0.07005864,-0.3279679,-0.21893823,-0.16126074,-0.22924638,0.5217735,-2.7134535,-0.05340432,-0.12782297,0.25414175,-0.16573699,-0.29088378,-0.19235066,-0.53722006,0.50292104,0.30555424,0.46586803,-0.6760492,0.24054913,0.46289274,-0.40108013,-0.17830695,-0.70742077,-0.18725054,-0.124459304,0.27575555,0.13207015,-0.15064205,-0.21220478,0.34838858,0.5934897,0.0870567,0.04210645,0.16233842,0.28705075,-0.028459022,0.5672194,0.071788825,0.62280416,-0.20214607,-0.23542754,0.35428736,-0.25265628,0.25253576,-0.19317491,0.08760232,0.3394003,-0.42750576,-0.99726963,-0.7708782,-0.07893306,1.2655901,-0.3192043,-0.33954844,0.22314608,-0.37049556,-0.1877811,-0.13034609,0.30113605,-0.12573169,0.0063122935,-0.67301184,0.14948596,-0.029858215,0.17508109,0.014185028,0.046517346,-0.40059167,0.6772412,-0.15613471,0.42476994,0.27316928,0.18544759,-0.23997341,-0.5780652,-0.07400101,0.96696204,0.4822375,0.04115349,-0.10708048,-0.28444225,-0.2819923,-0.023886519,0.08000682,0.5622774,0.82529056,-0.08609391,0.11228982,0.2543818,-0.12422037,0.091734886,-0.041907568,-0.3813314,-0.03668482,-0.16626248,0.67413586,0.5712504,-0.10466761,0.3266481,-0.012042574,0.4735229,-0.10736205,-0.5195378,0.51404935,0.87177914,-0.19922283,-0.22600631,0.73418945,0.4611109,-0.23605064,0.50375634,-0.68873066,-0.37401035,0.5238337,-0.14439689,-0.39307433,0.18632606,-0.36508408,0.09811846,-0.89398426,0.34611246,-0.37091365,-0.34721714,-0.3409373,-0.08670441,-3.940368,0.16687752,-0.35935575,-0.009286122,-0.1841316,-0.0641621,0.35183525,-0.5677574,-0.4654949,0.21680741,0.14679888,0.7035624,-0.04340321,0.0024035317,-0.26063493,-0.364669,-0.32624382,0.1935652,0.16040935,0.12904757,0.0047823107,-0.36602068,0.114143915,-0.17081808,-0.38873076,0.08726305,-0.33293846,-0.6357069,-0.07085544,-0.38170835,-0.49529272,0.7239719,-0.39081234,0.12608312,-0.108387336,-0.03946308,-0.08708911,0.18551458,0.080497146,-0.050483577,-0.056719482,-0.06402897,0.03356753,-0.42926288,0.40101403,0.05595416,0.29468337,0.23052692,-0.12873766,0.064186715,0.65792435,0.4035121,0.032985147,0.89427215,0.44678932,-0.101967104,0.24703288,-0.22984947,-0.30541328,-0.48579663,-0.3075293,-0.09529705,-0.4090558,-0.26045904,-0.014006759,-0.3781653,-0.7647627,0.5894252,0.010227263,0.12857254,-0.19146974,0.4710957,0.41553995,-0.12307893,0.028032554,0.06762308,-0.2480375,-0.5818353,-0.123690665,-0.73036057,-0.36583576,0.13080779,0.9977604,-0.4565454,0.037647437,-0.08627759,0.04401403,0.17246202,0.17388631,0.13631111,0.2678475,0.52089596,-0.051225927,-0.73280567,0.4838886,-0.25378242,-0.16902302,-0.80810845,0.16862348,0.5089501,-0.86611575,0.3332495,0.5090997,0.02905025,0.050080784,-0.5674138,-0.14508176,-0.095364995,-0.30533788,0.43593344,0.20178351,-0.7864422,0.4676523,0.29279825,-0.13468574,-0.627346,0.5907201,-0.04699189,-0.35415015,-0.048149038,0.38248554,0.31306913,0.101308405,0.020242456,0.18546377,-0.44973344,0.27846318,0.116864935,-0.10130644,0.50110257,-0.19377318,-0.10030768,-0.7212429,-0.028205799,-0.6380494,-0.2791851,0.100414865,0.053263962,-0.019127253,0.29641765,0.09172546,0.51800066,-0.33210462,0.088900685,-0.008550972,-0.34199807,0.62782663,0.48711523,0.4178056,-0.26347128,0.59374154,0.06703191,-0.0947328,-0.0550575,0.07076784,0.57627434,-0.039179724,0.45336014,0.013785276,-0.17490701,0.29675832,0.6732544,0.11506377,0.24708359,-0.039851554,0.0015737755,0.2756982,0.11487353,0.0052245515,0.28697178,-0.41382402,-0.21505383,-0.12306295,0.08021646,0.5653412,0.27264687,0.32983845,-0.10400404,-0.23886026,0.07743056,0.0054281824,-0.11269287,-1.1116968,0.37416738,0.0636378,0.6023516,0.46024424,0.0017942765,-0.022276713,0.5546842,-0.22784102,0.06954878,0.27539405,0.14331968,-0.24121179,0.5955606,-0.8091701,0.5982314,-0.09666278,0.0018714517,0.036739793,-0.12573513,0.3366759,1.0765182,-0.083498135,0.025806189,-0.005654884,-0.34972993,0.2776688,-0.40438884,0.043469615,-0.5514402,-0.14042959,0.6887311,0.3643449,0.36079717,-0.099883236,0.026071284,0.107262634,-0.12053519,0.22568364,-0.057168074,0.084020965,-0.1337264,-0.46222273,-0.18008794,0.5694718,-0.05825654,0.16200992,-0.11608183,-0.1438658,0.36051208,-0.10331617,0.038586617,-0.13465212,-0.53250694,-0.038775157,-0.29473755,-0.3539393,0.61096746,-0.35715553,0.26983255,0.30209413,0.111229606,-0.27401915,0.22210124,0.18515134,0.54665965,-0.16134048,-0.22649248,-0.4269441,0.0770527,0.08951255,-0.15783063,-0.06939819,-0.39662462,0.2511279,-0.64427316,0.31911302,-0.20703506,-0.28802705,-0.052243233,-0.17298543,0.01631249,0.52668566,-0.1958755,-0.09264374,-0.06608613,-0.28784016,-0.18444017,-0.28217086,-0.13548689,0.12296073,0.15495324,-0.097873494,-0.05212333,-0.4451458,-0.18079512,0.263612,0.04537761,0.34195575,0.23333934,0.07312072,-0.257888,-0.073168345,0.10673002,0.3543063,-0.24788664,-0.07308253,-0.35270172,-0.58922404,-0.22145617,0.27012274,-0.16884777,0.29238325,0.0077830814,-0.23176575,0.7252537,-0.061948456,0.98234284,-0.0049935924,-0.33697006,-0.06697873,0.7159947,-0.14585164,-0.067672916,-0.21299423,1.0038955,0.5832491,-0.24431539,-0.17563811,-0.35849133,-0.07624823,0.15586875,-0.21197882,-0.06810522,-0.020141179,-0.58172405,-0.20887966,0.23239926,0.3206373,0.21396813,-0.0028802922,-0.02994141,0.1642343,0.076360054,0.31038398,-0.46967396,-0.10292588,0.2554158,0.29040736,-0.00208503,0.12332169,-0.44662005,0.36532912,-0.41633496,-0.03784791,-0.32926163,0.11221717,-0.21432444,-0.2819798,0.28735036,-0.0423257,0.32543054,-0.28439352,-0.41646835,-0.14249495,0.37123448,0.19110966,0.1548468,0.59463114,-0.2531231,0.032375075,-0.071269855,0.53681135,1.21333,-0.19227734,-0.19524609,0.32789034,-0.32766122,-0.49686003,0.14225137,-0.38151416,0.10971129,0.053965945,-0.29098812,-0.4258608,0.25882098,0.22954284,0.15358911,0.19397675,-0.6161637,-0.28499898,0.1439279,-0.34807822,-0.26937792,-0.31507906,0.1480156,0.67362297,-0.27785853,-0.057794858,-0.018146308,0.31891632,-0.16522683,-0.6962818,-0.08986782,-0.3493239,0.3514214,0.2506736,-0.3485396,-0.018961983,0.0987244,-0.46628904,0.15995231,0.36719704,-0.2875555,0.049794454,-0.33210054,0.11592233,0.75685483,-0.16861632,-0.008444203,-0.45143026,-0.38255662,-0.7935335,-0.23466666,0.6262702,0.22172062,0.07367506,-0.50293285,-0.10099159,-0.1129602,-0.0059638917,-0.08813892,-0.43153545,0.5447985,0.10112857,0.346539,0.018558612,-0.96264726,0.1228373,-0.053889584,-0.18516555,-0.6271497,0.5927741,-0.16614139,0.7955293,0.29593596,0.0008276999,0.3807612,-0.42047504,-0.013684788,-0.23857678,-0.20151846,-0.8035348,0.0180778 -290,0.5070371,-0.42462504,-0.830434,0.03006535,-0.35535288,-0.13169046,-0.31133547,0.49371514,0.13396163,-0.4383136,-0.20194249,-0.20854759,-0.14682664,0.55623645,-0.19377781,-0.50605756,-0.06023687,0.36135805,-0.6720515,0.4408628,-0.17529993,0.31447515,0.13579513,0.37893224,0.15990457,-0.09878812,0.07409117,-0.0019637297,-0.3364379,-0.5069993,-0.059629444,0.022860885,-1.0948567,-0.0064116023,-0.3238164,-0.52582383,-0.22591835,-0.5556099,-0.21735553,-1.1137004,0.22561151,-0.9835953,0.74198604,-0.23064058,-0.3111739,0.062458295,-0.013442407,0.726525,0.0542212,0.12864797,0.20041735,-0.39234957,-0.20198016,-0.037889812,-0.26147053,-0.44886196,-0.69845635,0.1534173,-0.5052981,-0.06201284,-0.1402483,0.23860641,-0.39063573,0.115616985,-0.19872458,0.7143976,-0.37298346,-0.009249779,0.3419628,-0.037716296,0.5272421,-0.8363822,-0.026604118,-0.3148028,0.16802365,-0.27385035,-0.35012618,0.22036803,0.23514552,0.37385485,0.048192322,-0.24387668,-0.21702792,0.12809141,0.16998284,0.37195238,-0.088502206,-0.3743415,-0.09294632,0.19200438,0.58553547,0.09386418,0.23776178,-0.37846455,0.022421082,0.1670054,-0.24185002,0.494624,0.569107,-0.13308127,-0.12462964,0.19614603,0.8475728,0.34296823,-0.022561038,0.050285872,0.11022595,-0.50853425,-0.09109858,0.37730324,-0.15943329,0.63191646,-0.2689457,0.2222714,0.683464,-0.5753333,-0.1718118,0.2661009,-0.05254412,0.014896746,-0.12097586,-0.59774065,0.56478614,-0.4953736,0.22826232,-0.49028683,0.8352327,0.19949012,-0.835258,0.20884341,-0.7804811,0.14367153,-0.10778964,0.67463845,0.6958396,0.76238316,0.27685612,0.8157091,-0.23111264,0.1285114,-0.051023766,-0.4427576,-0.1492218,-0.5854068,0.023720047,-0.44653538,-0.42993855,-0.35489854,-0.43011317,-0.05107079,0.56398696,-0.79230714,-0.23022366,-0.12641005,0.62786365,-0.33102775,-0.1211352,0.9866187,0.8783732,1.3009156,0.23990393,1.1838734,0.4101243,-0.38323817,0.012259439,-0.07017902,-0.7890257,0.43565404,0.18605107,-1.0007175,0.50566524,-0.060116623,-0.06794586,0.40020618,-0.5707733,0.058146592,-0.2164387,0.10314631,0.06844291,-0.18330985,-0.35269538,-0.16790007,-0.08048567,0.11483583,-0.051997337,0.18716662,-0.21731107,0.70864445,0.17337625,1.2318635,-0.24332523,-0.07516892,-0.018952193,0.29271713,0.063903816,-0.32690975,-0.1815738,-0.01748087,0.48765656,0.26842913,-0.5563367,-0.0007799224,-0.15954624,-0.36881098,-0.48117757,-0.058900777,0.11552399,-0.32679904,-0.4245256,-0.28169337,-0.09251255,-0.32973373,0.457948,-1.8030814,-0.16289721,-0.14858235,0.32674935,-0.41489658,-0.4513295,0.03204629,-0.67624885,0.30357727,0.24976514,0.42356172,-0.71407527,0.31047866,0.39490637,-0.54343545,-0.05066107,-0.8522659,-0.3726089,0.07590928,0.23426056,0.21332578,-0.20801164,0.23930578,-0.0090013845,0.39266226,-0.24286918,-0.13049564,0.32845306,0.3835545,-0.04313126,0.5603094,0.014677305,0.5842036,-0.46411058,-0.25830254,0.5668165,-0.35884818,0.04166624,0.07172624,0.031453922,0.43960187,-0.460258,-0.842071,-0.9397991,-0.41325736,1.311234,-0.13585486,-0.69217616,-0.067394525,-0.031044057,-0.20919715,-0.15210585,0.37000403,-0.085095756,0.09949387,-0.8514721,-0.16659783,-0.12933348,0.46830258,0.038568832,0.057321787,-0.5564421,0.62988746,-0.15516388,0.07005508,0.68206304,0.27498123,-0.38576818,-0.7530845,-0.06612186,1.2076489,0.46099722,0.2002755,-0.48849428,-0.09213995,-0.45641986,0.12697221,-0.098216794,0.44460312,0.97471064,-0.16855001,0.049970407,0.29223076,-0.090650775,0.27555004,-0.16932295,-0.58513826,-0.2179073,-0.08746139,0.7213437,0.62870985,0.16680187,0.9115858,-0.20151997,0.29276696,-0.065876275,-0.538305,0.7051398,1.4520736,-0.281549,-0.39972827,0.40931138,0.22391273,-0.31821677,0.55139714,-0.6256892,-0.3276755,0.4050382,-0.081509225,-0.63035685,0.38099372,-0.2758781,0.3099412,-1.0819759,0.47674653,-0.608603,-0.5625634,-0.6729586,-0.11829021,-2.2331626,0.46502662,-0.14133431,-0.08569721,-0.20903866,-0.50141644,0.15058984,-0.5046758,-0.8117116,0.04869099,0.14778717,0.8518004,-0.10129544,0.065869816,-0.2633582,-0.51637363,-0.3455638,0.27691546,0.5529098,0.19863147,-0.06527868,-0.47457418,-0.013260146,-0.23199739,-0.43864226,-0.076547176,-0.8722729,-0.7618385,-0.3004387,-0.6337914,-0.4709324,0.7551484,-0.35188127,-0.016106794,-0.20104699,0.09095097,0.2662702,0.48213163,-0.10910654,0.22757779,0.18947053,-0.18678005,0.048289627,-0.1771269,-0.01729536,0.14536358,0.1129537,0.33343902,-0.3487763,0.5524673,0.70739704,1.2062671,-0.026935091,0.96955806,0.5872336,-0.15017182,0.17212649,-0.2769486,-0.54492134,-0.72207594,-0.124328524,0.17768978,-0.4130012,-0.32852113,0.095133275,-0.2027344,-0.83299494,0.83725023,-0.1263466,0.12047399,0.16742271,0.600168,0.4879276,-0.14818712,-0.07533731,-0.13313468,-0.16350563,-0.47286463,-0.42355514,-0.51319236,-0.7677074,-0.40622267,1.501412,-0.0032870322,0.098747455,0.12660243,-0.15687506,0.27250317,0.110317715,-0.13884936,0.08895966,0.30389002,-0.19554214,-0.80293256,0.07202398,0.037346315,-0.035371743,-0.80165356,0.38077024,1.0100332,-0.65333414,0.25607923,0.25864306,-0.20058125,-0.16789138,-0.50006074,-0.04390602,0.12803756,-0.32880065,0.36692134,0.26747802,-0.41532433,0.406202,0.39698872,-0.27744257,-0.84389704,0.37933126,0.19819635,-0.24093215,0.060615648,0.40979803,-0.035463523,0.021742085,-0.41380796,0.108492024,-0.36626127,0.17884983,0.4294332,-0.20784344,0.06641126,-0.15107362,-0.13400665,-0.86414737,0.3251238,-0.47240135,-0.3387922,0.38181818,0.07020105,0.15666252,0.4803541,0.3300185,0.41122806,-0.22184013,-0.13087909,-0.290085,-0.3381739,0.49459305,0.6078737,0.3840189,-0.5566223,0.61458856,0.09498348,-0.22938274,-0.06758002,-0.11074611,0.64271396,0.01916788,0.3229424,0.5734652,-0.31592143,-0.00684198,0.75154084,0.1198137,0.76120144,-0.0585454,-0.00992759,0.07341813,0.3020192,0.50610644,0.055432934,-0.7159367,0.104580194,-0.07100448,-0.02654717,0.54382145,-0.084124774,0.32635686,-0.1523314,-0.39911008,-0.114226185,-0.0012709498,-0.06256456,-1.6474361,0.56944364,0.28411722,0.7267976,0.31008363,0.05166233,0.13982032,0.6909385,-0.26109052,0.032183383,0.29439524,0.25320268,-0.3319499,0.5212347,-0.9686324,0.52559185,-0.11358126,0.05774683,-0.08987499,-0.05843793,0.5439926,0.9126697,-0.2535883,0.06937368,-0.24298869,-0.15432172,0.16952537,-0.5007974,0.09183874,-0.5990891,-0.29575673,0.9561561,0.39804104,0.41588882,-0.17790222,-0.018098282,0.14371806,-0.23711742,0.4250606,-0.038529918,0.11097213,0.04619363,-0.52032,0.090643175,0.56583303,0.07482869,0.102623284,0.056056377,-0.1437959,0.16462989,-0.13338922,-0.058178652,-0.17479686,-0.79023963,-0.07130626,-0.69632846,-0.33836016,0.21449481,-0.21851164,0.18544,0.25142232,-0.0047762,-0.43396845,0.40224862,0.35160747,0.9278736,0.105044305,-0.15014307,-0.12950782,0.4790086,0.2793055,-0.30215016,-0.004247745,0.14339243,0.00196745,-0.5131943,0.23902877,-0.15927993,-0.63396114,0.1899121,-0.043099612,-0.23924136,0.5986533,-0.33742788,-0.027631894,0.3564414,-0.17014128,-0.01002498,-0.24194014,-0.051100206,0.16930227,0.1735364,-0.17181742,-0.15924162,-0.09922683,-0.19172502,0.54952717,0.022051359,0.5449147,0.4829804,0.23924239,-0.6317976,-0.118067004,-0.011001016,0.7536194,-0.04519281,-0.19424224,-0.57135373,-0.3280093,-0.29370227,0.26651847,-0.0108330855,0.26509967,0.113770746,-0.54055226,1.05016,0.23152953,1.5048748,-0.028515661,-0.38161454,0.11447226,0.3888733,0.117866375,-0.12458822,-0.58225507,0.9538682,0.39108542,-0.12618881,-0.10480183,-0.41742447,-0.083257236,0.09056264,-0.23517245,-0.17482044,-0.066734575,-0.55676585,-0.38062397,0.4463885,0.3317082,-0.017434144,-0.14123188,0.26452968,0.5023467,-0.14877538,0.3049399,-0.37438044,0.13427863,0.3227754,0.30721614,-0.1798832,0.053270902,-0.45782447,0.25625247,-0.59414554,0.078277,-0.31952894,0.19095011,0.044188667,-0.2304116,0.32537702,0.22324379,0.3845806,-0.50128764,-0.29862416,-0.21214573,0.54700416,0.19570129,0.2888237,0.7628172,-0.3141489,0.06262358,0.058785807,0.47247794,1.2203268,-0.52142054,0.10516689,0.41625452,-0.18236364,-0.44496205,0.54707223,-0.2300573,0.14449741,-0.15610647,-0.18919046,-0.69169694,0.14167735,0.31739667,-0.039674554,0.04726863,-0.6095048,-0.026151896,0.526731,-0.4120084,-0.14132918,-0.48780414,0.2419572,0.42044434,-0.19027121,-0.6247837,-0.08848527,0.41426417,-0.14540367,-0.15271556,-0.22392415,-0.063881844,0.32477382,0.16585101,-0.40706757,-0.0128043005,0.21772873,-0.5731594,-0.066186585,0.072476976,-0.33399162,-0.033928506,-0.041805822,0.03569402,0.7308329,-0.4530206,-0.055224154,-0.37022033,-0.5240776,-0.92507553,-0.15460308,0.35476944,0.31181166,-0.015550974,-0.8845158,-0.12803544,-0.27954504,-0.2364837,0.12052688,-0.34257492,0.39733472,0.26600933,0.6714902,-0.1777281,-0.744889,0.44758675,0.100649394,-0.034347605,-0.62965596,0.41057262,0.14445165,0.66207093,-0.0061522997,0.28085935,0.34200802,-0.60772586,-0.036799636,-0.05132215,-0.15814854,-0.8153415,-0.103851564 -291,0.4466862,-0.33019894,-0.60028875,-0.1791417,-0.18302454,-0.17135777,-0.11749077,0.53893334,0.3342016,-0.4877644,-0.184188,-0.2193125,0.03249379,0.27360585,-0.052382175,-0.6290192,0.046078876,0.20607863,-0.2851344,0.57390624,-0.41289604,0.048923947,-0.119169705,0.3542793,0.28248355,0.29617873,0.18096425,-0.05900338,0.0393429,0.06195867,-0.24550363,0.50580525,-0.26749566,0.10450828,-0.12120605,-0.34436753,-0.045385424,-0.4778703,-0.46629885,-0.71707684,0.27197495,-0.89434856,0.5196085,0.25039533,-0.3194655,0.15748405,0.07759399,0.19358745,-0.36476767,-0.05310691,0.052213855,-0.098693624,0.019734355,-0.30773014,-0.31843635,-0.4165084,-0.49007756,-0.13875778,-0.4093161,-0.16647547,-0.3052785,-0.0045019365,-0.39012522,-0.089926496,-0.116903774,0.5342254,-0.45699978,-0.02640794,0.4152555,-0.18543682,0.39480397,-0.58371663,-0.21204534,-0.13529688,0.2821151,-0.056220733,-0.36562237,0.1985444,0.42430422,0.53024304,-0.018836495,-0.16814055,-0.36485583,-0.029041748,0.0781734,0.47851804,-0.22706956,-0.6166188,-0.09918526,0.05971634,0.05216778,0.5098703,0.16537362,-0.31881827,-0.07676099,0.16968432,-0.10208864,0.39930993,0.5080103,-0.35252082,-0.2204849,0.23957556,0.52490926,0.16292642,-0.063995086,0.10065953,0.069040194,-0.58264107,-0.28273553,-0.10316087,-0.17924482,0.63632715,-0.19842938,0.22589475,0.7206905,-0.018995551,-0.066015,0.12282574,0.01944131,-0.27242202,-0.39113924,-0.24275324,0.36194164,-0.40172094,0.32103285,0.019869713,0.54119426,0.13128844,-0.5731299,0.41107506,-0.5756596,0.21945761,-0.17006506,0.5288034,0.64873344,0.45536894,0.49588087,0.75600564,-0.47532484,0.09109373,-0.04672012,-0.41067123,0.14210254,-0.18334803,0.034489453,-0.6126426,0.07982775,-0.054660317,-0.039975174,0.16619395,0.5626576,-0.5764941,-0.19011639,0.33524036,0.9690076,-0.27372393,-0.069451496,0.6174165,0.9364602,0.9207083,-0.058341164,1.0193288,0.18147534,-0.21775898,0.33515948,-0.0983572,-0.80105823,0.31118584,0.40150654,-0.024188958,0.3293603,0.09903783,-0.026783235,0.53834623,-0.31841767,0.058183488,-0.24143904,-0.04909151,0.101540335,-0.22978471,-0.6075107,-0.09507605,-0.2334861,0.044791423,0.020232888,0.22701357,-0.08641493,0.44814286,-0.11599995,2.0274906,-0.05922713,0.0688789,0.19516547,0.42732474,0.32655475,-0.18349019,0.054796807,0.51479244,0.3275897,0.33865267,-0.60706407,0.16458684,-0.16443266,-0.49396074,-0.114447266,-0.4215008,-0.05082844,-0.060935095,-0.568064,-0.13781498,-0.2426421,-0.286475,0.32790822,-2.7546103,-0.21004501,-0.090843566,0.35509446,-0.2758399,-0.3269815,-0.13314106,-0.34334883,0.37523544,0.34896865,0.53445745,-0.73151696,0.41409165,0.50009906,-0.58845204,-0.032576744,-0.5996839,-0.03168152,-0.12573245,0.3740161,0.06920015,-0.07811893,0.11642417,0.20511283,0.5997671,0.075629964,0.18153588,0.27348235,0.5532155,-0.103673935,0.55144596,-0.10103389,0.5036264,-0.3558749,-0.23967141,0.30445737,-0.17179929,0.25510347,-0.046037234,0.07223034,0.49281794,-0.49752,-0.9832887,-0.6725736,0.002781822,0.9518646,-0.27758348,-0.45660907,0.33222404,-0.7954979,-0.3483135,-0.16670173,0.48819253,-0.02350278,0.015643211,-0.8493216,0.1326548,-0.010688094,-0.013149181,0.12314635,-0.26020622,-0.47305056,0.7691039,0.06742646,0.6715289,0.46661213,0.060728893,-0.18928741,-0.402828,-0.02419426,0.6805996,0.2713438,0.20585023,-0.23493487,-0.106977545,-0.23749505,0.12924708,0.10288363,0.63054776,0.6141597,-0.1168974,0.116926834,0.33447745,0.13878216,0.033179477,-0.20563188,-0.27870184,-0.10155581,0.06710784,0.48433816,0.7722304,-0.39225256,0.3151628,0.052878816,0.44787347,-0.19125997,-0.39140505,0.44640762,1.3449895,-0.14318784,-0.32745817,0.59377164,0.67825836,-0.3758127,0.44350603,-0.63202196,-0.07221976,0.36916283,-0.14844273,-0.46047214,0.18391432,-0.329476,0.17874679,-0.87695575,0.106050655,-0.18422739,-0.4873796,-0.54609495,-0.15989791,-3.670752,0.35610005,-0.47338417,-0.1715076,-0.11123168,-0.053502798,0.2425172,-0.8249896,-0.6028534,0.23557593,0.08678392,0.6372403,-0.10273683,0.09138993,-0.32318088,-0.3329508,-0.14629048,0.08977067,-0.0699871,0.34636277,0.0011575704,-0.5837779,-0.17477496,0.04676167,-0.4293366,0.046615515,-0.67565346,-0.41902086,-0.16603822,-0.5898785,-0.28934175,0.6115376,-0.099813476,-0.012782903,-0.24058954,0.087550886,-0.20773485,0.17528701,0.05706998,0.2170309,-0.06351804,-0.05751011,0.0974765,-0.19041671,0.1619946,-0.118957706,0.34884322,0.11420877,-0.14745116,0.15210357,0.5670663,0.6698047,-0.12284879,0.9110741,0.6876714,-0.089319855,0.25618207,-0.22766607,-0.29984763,-0.7032703,-0.45250505,0.029312309,-0.43634966,-0.5573033,0.0059910463,-0.48698857,-0.7969002,0.5993055,0.08902684,0.46823904,0.15206239,0.14276837,0.8073958,-0.35174942,-0.025259487,0.11200522,-0.2178352,-0.7047877,-0.12401521,-0.59163797,-0.4539405,0.27125308,0.8459395,-0.39716038,0.08818383,0.19296104,-0.3059146,-0.09729429,0.27022123,0.03374842,0.3530032,0.5385119,-0.20917676,-0.6209746,0.46044156,-0.13880095,-0.27626488,-0.570221,0.21221855,0.5569835,-0.6973076,0.86411035,0.33895344,0.02234144,-0.31248057,-0.617419,-0.32263178,-0.03197681,-0.14867224,0.52622306,0.39583018,-0.7612771,0.3043554,0.4870278,-0.22436072,-0.59877354,0.69358605,-0.21158305,-0.44373623,-0.055066563,0.29228643,0.06792252,0.032773938,-0.08034165,0.21858606,-0.3324381,0.22507375,0.29056448,-0.08354061,0.15887019,-0.15916872,0.0864249,-0.9217899,-0.090830095,-0.5701299,-0.24738382,0.48606822,0.062207684,0.14435554,0.0031410365,-0.08232935,0.34246257,-0.28124592,0.17186238,-0.048318386,-0.31586328,0.4894838,0.429717,0.41583538,-0.46980947,0.6233887,-0.028556285,-0.14947326,-0.031886406,0.20045647,0.31846735,0.124712415,0.6255132,-0.09450846,-0.3096058,0.29082045,0.9251508,0.1627654,0.47749618,0.16162124,0.0552455,0.19891691,0.14350377,0.17830667,-0.17188014,-0.66132516,0.088470496,-0.30209282,0.20259558,0.4916046,0.13405196,0.23337705,-0.12280385,-0.3662798,0.048080675,0.33032468,0.22759582,-1.2574946,0.3447532,0.26282254,0.8505213,0.40816957,0.084775135,-0.23069239,0.6211328,-0.07777733,0.115986936,0.44666064,-0.1139034,-0.54071736,0.5072407,-0.6754601,0.36511853,-0.011701245,-0.014072462,-0.08684129,-0.04746484,0.4332325,0.6729318,-0.13486372,-0.068760276,-0.022886693,-0.3499495,0.2828934,-0.4675654,-0.13579756,-0.5378765,-0.40608293,0.5449064,0.78807837,0.4450418,-0.19364189,-0.04216434,0.15869012,-0.041231778,0.1296259,0.102382295,0.12443003,-0.123550646,-0.89134634,-0.08171498,0.4768494,0.112914816,0.25848812,-0.15351701,-0.33975747,0.46417516,-0.112073176,-0.07856072,-0.047300227,-0.665728,0.10800497,-0.34134233,-0.71995485,0.717507,0.058917757,0.26827767,0.15396073,0.10679034,-0.24218623,0.4636685,-0.3746874,0.97287136,-0.06372348,-0.017961867,-0.55179787,0.12849024,0.14134179,-0.17649491,-0.13092189,-0.440272,0.13583821,-0.5246581,0.44778156,0.23710376,-0.3179294,0.01350766,-0.11042762,-0.03156176,0.61017525,-0.2213602,-0.28892013,-0.32256678,-0.16692811,-0.45430803,-0.41940865,-0.035254154,0.42093235,-0.06459259,0.23016572,-0.17669359,0.00350545,-0.11633066,0.44581223,-0.040710468,0.30633807,0.36730605,0.0773203,-0.01879759,-0.1852673,0.3604091,0.5131099,0.0068929195,-0.27343866,-0.19571796,-0.6089812,-0.34975228,-0.20728779,0.00779814,0.57804734,0.10431482,-0.098045945,0.7440134,-0.06576232,1.2585021,0.0897437,-0.41292554,0.07358035,0.5795949,0.07712368,-0.084717736,-0.21830925,0.89478105,0.5479631,-0.06452417,-0.10812323,-0.39154243,-0.042235468,0.13714743,-0.18758273,-0.067625605,0.08278545,-0.67871845,-0.13913016,0.23482727,0.2132323,0.43682215,-0.16082446,0.21339424,0.25474435,-0.04568595,0.110805914,-0.29837573,-0.52086455,0.21489531,0.20655005,-0.020982128,-0.00407406,-0.5490788,0.41326973,-0.37841046,0.025618719,-0.45762652,0.23741688,-0.3973101,-0.26101607,0.2615713,-0.1941563,0.374708,-0.35365263,-0.19890216,-0.18735504,0.4876054,0.22238418,0.00089582114,0.5688054,-0.23206645,0.058252115,0.15751791,0.55354947,0.97764075,-0.2283799,-0.15102042,0.41107166,-0.48252133,-0.7414694,0.28036305,-0.36973417,0.1662365,0.11460801,-0.2477975,-0.61884874,0.27189717,0.12078988,-0.13021839,0.06007981,-0.69891196,-0.14514813,0.18392414,-0.278703,-0.12096931,-0.34436196,0.15138301,0.5472206,-0.2978175,-0.42683047,0.012438893,0.086190745,-0.03280225,-0.52227837,0.11404657,-0.336613,0.32730025,0.039020777,-0.39790398,-0.029686403,-0.11742568,-0.46314505,0.335041,0.15792862,-0.31598037,0.18615168,-0.47376788,-0.37185335,1.1296184,-0.24712637,0.13964795,-0.47296804,-0.39192492,-0.74796414,-0.36598638,0.53740203,-0.07781879,0.05370017,-0.6284374,0.23797677,0.092324175,-0.0929877,-0.27393934,-0.16452481,0.55227864,0.014937251,0.51797915,-0.06430593,-0.7455844,0.27292663,0.12631558,-0.18173434,-0.61901575,0.61313206,-0.17300926,0.9038601,-0.019132454,0.23371062,0.33369252,-0.4632872,-0.16676722,-0.25699636,-0.27210146,-0.71020406,-0.30196276 -292,0.4101085,-0.08386782,-0.71483123,-0.15929025,-0.30844682,-0.27902377,-0.13450077,0.665981,0.24781157,-0.5156882,-0.18144679,0.06700843,-0.18596873,0.36659792,-0.2842731,-0.7932115,-0.038502462,0.11573196,-0.26266772,0.6071806,-0.30899513,0.16705693,-0.21087784,0.55188364,0.36024508,0.23167755,-0.019967245,0.1754573,-0.13753092,-0.24520141,0.0551518,0.45236668,-0.4687908,0.2663204,-0.3108888,-0.32598093,0.027551128,-0.31539994,-0.28766665,-0.8120555,0.24360943,-0.56196356,0.48160756,0.09472447,-0.39983594,-0.004745699,0.3176689,0.18917267,-0.06696611,-0.32408667,0.11455668,-0.13250338,-0.054483216,-0.2928281,-0.3126867,-0.50494504,-0.5732498,0.046308763,-0.5421269,-0.01573873,-0.10401139,0.23177655,-0.37326843,-0.20085883,-0.012450048,0.77918106,-0.32595417,-0.135893,0.34905162,-0.12460195,0.23684572,-0.77889323,-0.22643515,-0.094210744,0.04823504,-0.04964833,-0.2336913,0.45181173,-0.023219535,0.34029454,0.0019263304,-0.3995682,-0.32483414,-0.043737706,0.29770344,0.22633092,-0.5000325,-0.50334233,-0.18259811,0.020444999,0.40019163,0.3124625,0.17862111,-0.1737937,0.10915823,0.026702939,0.016293893,0.6789725,0.66181755,-0.052366395,-0.074538775,0.10224126,0.50266147,0.4176866,-0.14778955,-0.16658404,-0.01573564,-0.5760331,-0.26216272,-0.0068057547,-0.122592956,0.34692776,-0.03238741,0.22101879,0.60225683,-0.03701125,-0.0021172785,0.12874144,0.15663515,0.23566347,-0.69696516,-0.21653393,0.3863022,-0.5214144,0.3178944,-0.27385092,0.70680845,0.025192587,-0.64379436,0.22569281,-0.5847894,0.1893321,0.045024652,0.5574591,0.6781074,0.49815032,0.29663256,0.79232633,-0.32089323,0.07190239,-0.027581105,-0.12942336,0.17084596,-0.28766128,-0.052086428,-0.44802144,-0.03105732,-0.16819352,-0.0015027982,0.25210664,0.22098897,-0.7433437,-0.29439318,0.31936413,0.90404314,-0.09660693,0.015640497,0.7650352,1.0795808,1.0816462,-0.106549785,0.982953,-0.17918505,-0.17414588,0.067726776,0.04970663,-0.6660966,0.24043958,0.38412204,-0.454193,0.35519755,-0.15451714,0.009077609,0.58970034,-0.51333165,-0.2286513,-0.1938635,0.57327133,0.007638647,-0.13925365,-0.63316524,-0.16099998,-0.052194413,-0.033888273,0.09783876,0.42588705,-0.14594024,0.4778206,-0.17161533,1.0873382,-0.16410057,0.15988772,0.30947372,0.38435158,0.35692808,-0.18691467,0.12819894,0.24182765,0.04554589,0.23560905,-0.4458726,0.17291282,-0.36733297,-0.43723205,-0.0054361476,-0.38797548,-0.14871508,-0.009372483,-0.41761154,-0.24504651,-0.12373945,-0.24695174,0.37777236,-2.6040518,-0.030227194,-0.07920293,0.21576688,-0.2209014,-0.45079973,-0.11569198,-0.37442273,0.6707345,0.16607842,0.5658958,-0.3592073,0.09618639,0.50027996,-0.62390274,0.036163148,-0.56734854,-0.20497777,0.047843806,0.45165512,0.19638537,-0.14619729,0.038171988,0.17043048,0.5667876,0.14548367,0.08907983,0.31262457,0.30935624,-0.4455066,0.39744267,-0.15739232,0.46827748,-0.513408,-0.29851893,0.349494,-0.52544415,0.35445315,-0.20244649,0.14777614,0.55711883,-0.4533823,-0.9646451,-0.381676,-0.20606199,1.2056547,-0.0021171868,-0.49965975,0.2042451,-0.39074296,-0.16912279,-0.17081125,0.56293774,-0.08084442,0.06822541,-0.6701089,-0.015219056,-0.31539184,0.12831593,-0.08005684,-0.049778815,-0.39073378,0.62192523,-0.050607927,0.38434336,0.42574942,0.21636519,-0.5480676,-0.47457397,-0.13584386,0.93114716,0.5575577,0.12374522,-0.17290306,-0.21777017,-0.2937804,-0.16247964,0.12257107,0.772261,0.7410307,-0.12981847,-0.025498815,0.41953725,0.06264231,-0.019135058,0.025534473,-0.42088482,-0.3146356,0.040489554,0.70536417,0.7250275,-0.22342187,0.3249717,0.0971636,0.4074611,-0.3217214,-0.37642157,0.38836348,0.9302895,-0.26198816,-0.284793,0.92009395,0.59082913,-0.29287732,0.575314,-0.48686874,-0.43619555,0.49361786,-0.13378286,-0.6039523,0.01953855,-0.3683991,0.028044406,-0.80158234,0.28802294,-0.4933017,-0.5275058,-0.8750924,-0.26752353,-2.0993705,0.25983852,-0.33673775,-0.0029031222,-0.3776584,-0.026357045,0.17466977,-0.6105386,-0.80298316,0.20455883,0.11168489,0.78397435,-0.26314276,0.07499424,-0.22199582,-0.49321446,-0.036892686,0.32704604,0.3503316,0.2572323,-0.07297055,-0.29949707,-0.22597107,-0.032426126,-0.54347247,0.07840069,-0.63040394,-0.4920854,-0.14907676,-0.7306954,-0.0028828245,0.77605754,-0.38683012,-0.0007144648,-0.1403537,0.17223804,0.16711141,-0.02943878,0.077595785,0.4456262,0.2846767,-0.14843231,0.13081194,-0.23198606,0.17535207,0.11210069,0.5702954,0.2683862,-0.1074491,0.26929742,0.6942764,0.8763325,-0.2127452,0.96922696,0.42272323,-0.086983114,0.34746283,-0.21871747,-0.52539706,-0.5993724,-0.24277812,0.31982532,-0.37750986,-0.27294773,0.02323421,-0.4167042,-0.8815174,0.8083879,-0.0013243601,0.3793783,-0.35968685,0.10256314,0.5106531,-0.33813602,-0.2782765,-0.082095236,-0.06294438,-0.5739268,-0.22345556,-0.65955776,-0.53506345,-0.089019924,1.0324728,-0.20959122,0.06125508,0.34546104,-0.20840576,0.052586243,0.10555871,-0.08392877,-0.11626128,0.30712733,0.39337698,-0.584907,0.4209754,-0.06406182,-0.052589595,-0.46287614,0.41219595,0.653964,-0.46365303,0.63296664,0.46966082,-0.07158379,-0.33870518,-0.83182216,0.0030960029,0.13970572,0.0017349606,0.45528713,0.38254526,-0.68728167,0.4564547,0.28926915,-0.25847304,-0.7606713,0.44240555,-0.15747143,-0.060972605,-0.13836266,0.46930382,0.106994405,-0.100462876,-0.067874976,0.4331813,-0.1582286,0.2697227,0.28759187,-0.15197513,0.26728767,-0.24878278,-0.15088429,-0.8855436,0.21477996,-0.7801913,-0.3078118,0.49510786,-0.17589952,-0.16573285,0.08196019,0.15860708,0.31020495,-0.28792825,0.17149065,-0.21982503,-0.43699884,0.48377207,0.5723276,0.6970918,-0.5631107,0.6272759,0.21358848,-0.13245025,0.14398283,0.11562505,0.5144334,-0.14051196,0.510375,-0.15717782,0.041304525,0.076695226,0.77153504,0.09323859,0.27647257,0.042705655,-0.048584882,0.065441065,0.040637158,0.12506431,0.0009904412,-0.67352957,0.14622645,-0.15808432,0.0019400395,0.53907895,0.06576773,0.37298316,0.07807851,-0.2649854,0.0271361,0.21129225,0.0512929,-1.6267827,0.62716305,0.11978963,0.94610095,0.35864884,0.3677216,-0.09265333,0.6558355,-0.0033328992,0.09376569,0.45745605,0.081559785,-0.3390074,0.57548684,-0.6253301,0.5177995,0.027159167,0.074622035,-0.07801211,-0.041891262,0.6759068,0.66257584,-0.15927841,0.010436039,-0.030181656,-0.21792556,0.2926454,-0.40582463,0.14197376,-0.29426476,-0.44769844,0.48358727,0.5191587,0.28179744,-0.28376165,-0.0052413503,0.31082284,-0.14185432,0.21544434,-0.21538518,0.029108705,0.008360473,-0.44945204,-0.16839688,0.40100092,-0.09681462,0.13837932,-0.09782501,-0.08277582,0.23541087,-0.024730848,-0.08559182,-0.10625581,-0.56172854,0.087741815,-0.47850564,-0.5459341,0.40559238,-0.33006757,0.095316805,0.12917247,0.10048525,-0.32368648,0.57167333,-0.09935338,0.73985827,-0.17059647,-0.27907574,-0.26536885,0.26809266,0.02672964,-0.3426119,0.046927627,-0.35886997,0.24897161,-0.4092982,0.44368282,-0.18967412,-0.3825064,-0.077684626,-0.16980185,-0.0681485,0.4322925,-0.07384983,-0.17622541,-0.26463774,-0.32771856,-0.14941801,-0.41495323,-0.104974896,0.17775601,-0.16206712,0.08914984,-0.20514867,-0.1916725,-0.17301625,0.24260893,-0.049479213,0.24220607,0.43079332,0.20360833,-0.32113376,0.055673238,0.29206556,0.54483414,0.048732284,-0.009359328,-0.28775522,-0.3546952,-0.63897353,0.30848196,-0.256079,0.42903966,0.19296408,-0.14076184,0.7402125,0.043845877,1.3188447,-0.17332163,-0.42069575,0.026768826,0.46719533,-0.14800993,-0.090423636,-0.31011006,1.1132929,0.36307862,-0.20863964,0.06571795,-0.46198523,0.21419892,0.2500448,-0.28715116,-0.17380235,-0.06810014,-0.5185785,-0.22911538,0.27095148,0.3913544,0.28744608,-0.3803876,-0.1398261,0.2991189,0.1817355,0.21627066,-0.4177706,-0.013094801,0.23409599,0.21963432,-0.10714375,0.11979437,-0.4707993,0.3258204,-0.55754393,0.2851481,-0.46512458,0.22726609,-0.2746126,-0.5378346,0.17409915,-0.24440071,0.45512727,-0.39757472,-0.23648432,-0.14107545,0.24850768,0.23784758,0.040311333,0.55444264,-0.30757388,-0.013330019,0.14996468,0.603869,0.9357062,-0.28406987,-0.12937742,0.072769836,-0.31500202,-0.68736064,0.0686772,-0.43599904,0.0988088,-0.19631192,-0.43093857,-0.58565384,0.10636515,0.10890383,-0.028864585,-0.07691641,-0.75206935,-0.075310804,-0.05767515,-0.27827638,-0.15870622,-0.35016662,0.01047614,0.48811564,-0.12853338,-0.4806879,0.12559171,0.10670462,0.025561452,-0.5828661,0.15026939,-0.3483198,0.19549306,-0.0029002337,-0.5014972,-0.11986054,-0.13108908,-0.5268484,0.14681828,0.04063807,-0.2506537,-0.07992231,-0.04405725,0.10035995,0.8539661,-0.11746339,0.40473545,-0.30906928,-0.5281786,-0.82473904,-0.3247267,0.18218097,0.11982142,0.10907045,-0.8393192,0.062099006,-0.3087712,0.0905654,-0.15652053,-0.14314505,0.23433487,0.14620078,0.5260712,-0.3881245,-0.75117373,0.4107002,0.26061094,0.0041825953,-0.47510883,0.42413384,-0.054891907,0.83003515,0.08736898,0.024955966,0.16070755,-0.5437848,0.054953463,-0.19113564,-0.27330166,-0.53066623,0.20248541 -293,0.28159493,-0.09008052,-0.35851988,-0.21859573,-0.10078015,0.23898748,-0.18357746,0.3516666,0.09668987,-0.56820714,-0.019168606,-0.1278969,0.1164482,0.3507708,-0.24197449,-0.5357297,0.120787084,0.047414757,-0.37454623,0.15120907,-0.5220246,0.22927365,0.003119605,0.20816305,-0.0006581332,0.1628466,0.27488083,-0.25984448,-0.15970114,-0.30271927,-0.19240855,0.18072847,-0.5028818,0.06531618,-0.04432589,-0.17477274,0.14285776,-0.48105127,-0.5013755,-0.5970926,0.27828833,-0.91347283,0.62874633,0.00090426207,-0.10880363,0.38980743,0.093047164,0.0608647,-0.15490015,0.07567094,0.18637218,-0.2744761,-0.106384926,-0.028374646,-0.4067927,-0.56203526,-0.6306978,0.045597296,-0.52056354,-0.12944305,-0.40047255,0.14671738,-0.33881783,-0.05925181,-0.19373994,0.31669328,-0.2995933,-0.18483952,0.13360766,-0.16188143,0.35010123,-0.5831303,-0.21922424,0.1259298,0.26989725,-0.14875256,-0.049837563,0.2915499,0.28474465,0.5406626,-0.0038598967,-0.2557019,-0.309359,0.018738836,0.12141699,0.66684437,-0.19519925,-0.458381,-0.13882552,-0.008974472,0.166322,0.3088984,0.08747179,-0.28275964,-0.18722706,0.28707513,-0.3818756,0.427995,0.58662933,-0.405123,-0.16522779,0.45351568,0.20728591,0.13441911,-0.013877236,0.008022721,-0.014260556,-0.6051206,-0.16549538,0.22904478,-0.08895826,0.5286153,-0.12083026,0.44143218,0.6807102,-0.10177684,0.1600986,0.1261937,0.0046893912,-0.058544833,-0.143206,-0.07099415,0.12402581,-0.52669615,0.16951783,-0.26434568,0.8973502,0.1302907,-0.78422123,0.45248127,-0.4042398,0.107982114,-0.115800224,0.47726837,0.48542595,0.4724919,0.1539775,0.7567247,-0.63907725,-0.04376089,0.060177367,-0.4872165,0.13517565,0.025250385,0.10182587,-0.39450955,-0.07508711,0.17736228,0.14818919,-0.09019042,0.4200762,-0.4413816,-0.07643998,0.19283223,0.83031553,-0.31757173,-0.076601684,0.5540642,1.0984724,0.8946497,0.049140964,1.254482,0.20022568,-0.104009405,0.11268098,-0.11980418,-0.68723506,0.31014326,0.40477154,0.22942089,0.16366927,0.08687939,-0.050343554,0.3734261,-0.29195827,-0.11448509,-0.24029104,0.26575536,0.13110422,-0.21113935,-0.41911158,-0.26900706,0.0051169395,-0.08042187,0.26862928,0.10690861,-0.12177974,0.24082412,0.088424526,1.4361693,-0.15254669,0.1810743,0.0775616,0.55343276,0.17528065,0.09232623,0.041913185,0.16697733,0.4881063,-0.015613275,-0.57971424,-0.13033918,-0.23868275,-0.5025602,-0.124535285,-0.3012991,-0.1366492,-0.04695389,-0.46447513,-0.17720489,0.034138154,-0.43791193,0.73673683,-2.8819296,-0.10894305,-0.19264719,0.46314567,-0.22694276,-0.36805624,-0.054473843,-0.47802782,0.68227875,0.35112837,0.41383025,-0.6185179,0.43797466,0.4703009,-0.23008525,-0.1661167,-0.7749143,-0.04395271,-0.05057172,0.23813546,0.12573239,-0.33309975,-0.14853965,0.040322166,0.5594502,0.050457064,0.047506742,0.1467336,0.3885239,0.0024534464,0.52157307,-0.07397159,0.57425886,-0.2131667,-0.031336162,0.20886435,-0.3826352,0.30008307,-0.16429043,0.22180167,0.35037965,-0.29533592,-0.81300557,-0.5851313,-0.35586438,1.182286,-0.1305394,-0.3572171,0.3558516,0.017574744,-0.28870004,0.036054287,0.46811506,-0.1655879,0.011654821,-0.61834323,0.029440213,-0.093197025,0.075667806,-0.12590034,0.11825864,-0.5521257,0.72774726,-0.18843417,0.48767924,0.27689156,0.28918192,-0.21117125,-0.3819138,-0.1336442,0.77149,0.29592016,0.07653821,-0.172819,-0.27016824,-0.19288097,-0.27662948,0.025862062,0.50153816,0.7552768,0.0735405,-0.014104477,0.22639771,0.016623374,0.017674077,-0.07445582,-0.34109685,-0.12797607,-0.14758042,0.62788314,0.3794501,-0.08001893,0.34908107,-0.2253935,0.20848104,-0.32028988,-0.3933101,0.5169257,0.56216973,-0.21678734,-0.1866807,0.5380441,0.35748428,-0.17215298,0.33532792,-0.704012,-0.38423726,0.57617587,-0.24118617,-0.5670281,0.08663372,-0.23493831,-0.059201177,-0.81580955,0.44260755,-0.21581472,-0.6529433,-0.27505523,-0.26076037,-3.9576268,-0.001063878,-0.28487897,-0.16662642,-0.15573423,-0.19911538,0.3131079,-0.5132001,-0.3652002,0.11435998,-0.049233735,0.55269516,0.09612893,0.094597384,-0.32861423,-0.016824761,-0.46845165,0.20649482,-0.08630215,0.2452676,0.06188928,-0.20308979,0.1953109,-0.3187576,-0.5418849,0.15770392,-0.6512435,-0.40493384,-0.13433294,-0.40685442,-0.4300765,0.69944984,-0.41348234,0.10264344,-0.3318487,0.15425776,-0.33946735,0.47306064,0.08280705,0.15274382,-0.115098976,-0.14520833,0.07112529,-0.3128939,0.4343597,0.037403848,0.38637713,0.44481784,-0.1657233,-0.04231255,0.42131805,0.54437196,-0.008756825,0.8042405,0.28345123,0.012635767,0.3697048,-0.24429901,-0.23280147,-0.5063557,-0.47941834,0.18935147,-0.3851095,-0.37764832,-0.2144657,-0.28090936,-0.62469834,0.39832634,0.029927135,0.20054182,-0.063236274,0.069307394,0.39663714,-0.15228476,-0.06045092,0.080770895,-0.008482941,-0.33507124,-0.25994736,-0.6723104,-0.4723104,-0.0018891181,0.7402555,0.019478107,-0.16919883,0.072154514,-0.19969606,0.09432536,-0.047817267,0.102845386,0.050721783,0.29593238,-0.014854844,-0.81742054,0.44311878,-0.27732217,-0.1352503,-0.647072,0.12403465,0.5496348,-0.5702459,0.59054035,0.443473,0.25978082,-0.10738169,-0.52528965,-0.3117974,-0.12370287,-0.19437993,0.404428,-0.026710808,-1.0040817,0.595565,0.3858962,-0.3406918,-0.4979692,0.45907837,0.0780082,-0.04471161,0.08898073,0.3164452,0.08863737,-0.012602457,0.011625767,0.23439194,-0.6638881,0.48521775,0.32187372,0.14753316,0.57010627,-0.107427895,-0.11324309,-0.45670447,-0.24451229,-0.40877393,-0.12432181,-0.0060533327,-0.04466185,0.12497131,0.15492404,-0.09849975,0.42115492,-0.40830997,0.12672964,0.00946968,-0.19341592,0.34050146,0.4842151,0.3582224,-0.3008688,0.5817066,-0.0019252513,0.020290038,0.035262804,0.05190434,0.53376156,0.22101323,0.29383233,-0.13406713,-0.21779068,0.23111169,0.8832313,0.12255459,0.49921027,0.21257319,-0.1400472,0.23456414,0.10648275,0.052815277,0.17411225,-0.44803324,-0.09862779,-0.117552586,0.07305263,0.4904871,0.09160062,0.27864915,-0.09359776,-0.08777741,-0.034111984,0.11027121,-0.15395604,-1.0430405,0.3748143,0.12796481,0.70518607,0.20298554,-0.063527055,-0.06140862,0.61267394,-0.08260205,0.0865683,0.17917177,0.09500033,-0.566915,0.63236696,-0.57716423,0.34144622,-0.12660518,-0.07025321,0.022887895,0.06728102,0.33442068,0.8617431,-0.13432018,0.07911412,-0.08034929,-0.30619553,0.3347652,-0.3002247,0.18405107,-0.3145619,-0.15302838,0.606638,0.46027136,0.38173747,-0.17100349,-0.116270594,0.06834028,-0.09395611,-0.005945844,0.009307138,0.07530505,-0.14232664,-0.6948666,-0.3677426,0.41769674,0.19628641,0.19745357,0.10172141,-0.30410868,0.2645521,-0.33821052,-0.007836009,-0.03744602,-0.66390115,-0.033902735,-0.255725,-0.4884103,0.06407445,-0.22347435,0.30104575,0.2445388,0.03918148,-0.11303656,0.22581883,0.26757917,0.8502823,-0.065813035,-0.2340513,-0.5651774,-0.18371223,0.19380221,-0.2459211,-0.1685284,-0.31863362,-0.11587211,-0.59024537,0.1809326,-0.124523364,-0.11046847,0.37354198,-0.18331674,-0.049408674,0.5823804,-0.2403181,0.009062929,0.017719997,0.0053043193,-0.17012219,-0.13549812,-0.07277884,0.13978282,0.14212601,-0.0649911,-0.03183334,-0.18295597,-0.123145275,0.25505295,0.18427214,0.28308755,0.46825314,0.16393313,-0.32718673,-0.24234952,0.056115743,0.6532022,0.118226536,-0.05754108,-0.32717386,-0.51398444,-0.21747205,0.14578208,-0.10151972,0.26511246,-0.007017312,-0.30785307,0.59882355,-0.09615673,0.98359096,0.15641172,-0.32116106,-0.058487836,0.63857454,0.03472957,0.031402882,-0.3772624,0.82751364,0.4320615,0.025377512,-0.0844715,-0.3642068,-0.056342877,0.34224898,-0.29740575,-0.19224122,-0.1782392,-0.7390518,-0.2573679,0.2500554,0.11592059,0.093617186,0.032981582,-0.06013627,0.30659795,0.15659787,0.5810541,-0.57502204,-0.0569784,0.2816394,0.28021207,0.028255804,0.21593009,-0.38150004,0.31791434,-0.52768487,0.12078724,-0.23236938,0.1083781,-0.08306318,-0.10263574,0.31005576,0.004593747,0.4437932,-0.1572891,-0.36286116,0.09740623,0.42327628,0.22792499,0.31828958,0.69301844,-0.12224346,-0.067615405,0.04438894,0.61223215,1.1193997,-0.16454005,0.1971518,0.57772404,-0.28916326,-0.69031906,0.30040187,-0.3368182,0.12303931,-0.08645504,-0.23538947,-0.2150272,0.29614273,0.29217187,-0.0049091107,0.16713245,-0.526344,-0.40374848,0.49994668,-0.21093185,-0.23787113,-0.3483306,0.16056572,0.6515413,-0.29694393,-0.049743406,0.03226674,0.36464277,-0.15899189,-0.5570212,0.11822719,-0.33183494,0.3177788,0.06884616,-0.33749261,-0.04174963,-0.13865288,-0.3731542,0.24424338,0.055614945,-0.39405584,0.070377536,-0.19133507,-0.04234932,0.6644951,-0.13782038,0.10584477,-0.83728284,-0.4341419,-0.8475522,-0.401465,0.24365583,0.15210922,-0.13151179,-0.36371145,-0.18200795,0.06965122,-0.00011745521,-0.05445722,-0.40836263,0.35044903,0.040066738,0.44681388,-0.021000383,-0.5412161,-0.015513952,0.026568536,-0.25040138,-0.38917205,0.65636665,-0.21858136,0.7423674,0.09723462,0.0909271,0.10189156,-0.41505864,0.16337214,-0.25621024,-0.18487266,-0.71364087,0.12533066 -294,0.36213425,-0.025023798,-0.6125385,0.030315168,-0.057006586,0.026233843,-0.20279877,0.5108591,0.20497286,-0.32808903,-0.23116125,-0.2778111,0.04844464,0.44041443,-0.11664486,-0.3838496,-0.07991357,0.32980892,-0.52863485,0.5124971,-0.20876946,0.23950414,-0.091928184,0.4877378,0.09685429,0.25408563,-0.09318837,0.055930395,-0.24676658,-0.18850736,-0.05439983,0.39539894,-0.5308067,0.096891165,-0.19879349,-0.32880896,0.0053257844,-0.50134367,-0.32699716,-0.688859,0.2743464,-0.74520713,0.63600206,0.124800585,-0.18279944,0.19478838,0.1778117,0.3883128,-0.16040388,-0.1028006,0.2994277,-0.14462319,-0.031992476,-0.40977958,-0.33368912,-0.23813398,-0.47603187,-0.08805579,-0.46335253,-0.26525745,-0.23128824,0.16538681,-0.18680614,-0.028630866,0.09213972,0.3207161,-0.44037285,0.18624265,0.11468016,-0.103935815,0.34404936,-0.5329456,-0.23134471,-0.12230843,0.37841406,-0.35924956,-0.2032044,0.17783071,0.25994003,0.28467295,-0.25674653,0.048267733,-0.36411795,-0.050536763,0.26439154,0.5437487,-0.41403535,-0.41722456,0.010407339,0.1662638,0.12313682,0.45112,0.20223506,-0.33948848,-0.07447171,-0.0737808,-0.060993407,0.35624528,0.41034842,-0.21379153,-0.079823546,0.33848596,0.5519453,0.33871865,-0.09625453,-0.008843586,0.043043543,-0.4589095,-0.108082,-0.1535734,-0.3027533,0.6113833,0.03655002,0.23931503,0.5663884,-0.03552664,-0.14578204,-0.040986706,0.11052712,-0.10874626,-0.20373367,-0.2351817,0.24891119,-0.23501001,0.35766825,0.11610401,0.49435365,0.14906214,-0.7770235,0.388701,-0.6855611,0.0386188,-0.06621314,0.38147542,0.5951732,0.43827143,0.38320994,0.5959094,-0.46801722,0.12717576,-0.04359022,-0.24562299,-0.024518067,-0.0787713,-0.18123119,-0.64620644,-0.0138757825,-0.06651145,-0.19922882,0.46878502,0.3707501,-0.5584194,-0.040201288,0.19554198,0.9257706,-0.2866881,-0.13066457,0.72338945,1.0845336,0.7276039,0.027306026,1.0319772,0.110420674,-0.3124196,0.16852821,-0.13821821,-0.7814062,0.2508625,0.43547344,-0.85584116,0.34309983,0.25126985,0.07278207,0.3941444,-0.41010913,-0.031503145,-0.14198433,-0.04264742,0.04760563,-0.29816598,-0.34931004,-0.063040435,-0.18740012,-0.083756484,-0.054154824,0.24161403,-0.19751735,0.45934466,-0.027145743,2.0427659,0.025609931,0.08539465,0.07167317,0.22278975,0.27830568,-0.092787564,-0.25562742,0.6130097,0.23363344,0.16893263,-0.3274961,0.15239665,-0.15838677,-0.41808572,-0.09280467,-0.17483531,-0.035410088,0.069929264,-0.31367114,-0.10946459,-0.19726764,-0.19513857,0.5006922,-2.8443334,-0.11860707,-0.007016164,0.4098439,-0.1760261,-0.40415642,-0.1890117,-0.2126594,0.5100987,0.24949999,0.4849491,-0.51541895,0.1416067,0.31207064,-0.52093786,-0.28550532,-0.37652317,-0.008868356,0.14152388,0.18121254,-0.15024638,-0.067906596,0.1357545,0.06137689,0.34150365,-0.11599102,0.10693041,0.42604813,0.47048903,-0.029405525,0.4500433,-0.21488185,0.64519614,-0.1770041,-0.3933176,0.28036258,-0.2899467,0.30636445,0.037838295,0.121150404,0.410398,-0.3768648,-0.838732,-0.6160498,-0.12649114,1.0385869,-0.122324966,-0.33922994,0.19346993,-0.31286874,-0.36524057,-0.049975365,0.47166622,-0.12921312,-0.09591917,-0.9506166,-0.008587167,-0.020716354,0.19840266,0.055876303,-0.12226844,-0.45767453,0.51733387,-0.07067751,0.45554307,0.5019544,0.06355517,-0.35700056,-0.46161738,-0.0059138336,0.88789654,0.37296817,0.16199715,-0.12966889,-0.19757552,-0.4280952,-0.06975755,0.10183453,0.52937,0.6066912,-0.100693196,0.08077661,0.30036572,0.07711553,-0.037771363,-0.26965067,-0.2796694,0.066672795,0.019857025,0.40412995,0.6213373,-0.16129227,0.64533037,0.063681975,0.2196659,-0.045734685,-0.3438184,0.38743994,1.061439,-0.18981218,-0.43563685,0.5508645,0.28976312,-0.32128713,0.36851916,-0.42601606,-0.13845198,0.46612182,-0.09269019,-0.46233097,0.37266245,-0.22127531,0.12085789,-0.97785956,0.1411899,-0.2102798,-0.4077294,-0.57660955,-0.055042356,-2.9334514,0.16978948,-0.27862057,-0.2552709,-0.0795021,-0.13713907,0.025260257,-0.6026558,-0.73385555,0.106658846,0.03510827,0.48974597,-0.24023867,0.23635082,0.03735051,-0.42181373,-0.02045413,0.26806548,0.21402065,0.3709507,-0.07293615,-0.44856822,-0.3203012,-0.040049512,-0.3460239,-0.033116218,-0.6839648,-0.28073516,-0.09995774,-0.66793555,-0.07029729,0.61519665,-0.5471205,-0.026516952,-0.26767915,0.003742342,-0.019639453,0.1822362,0.2551839,0.22009452,0.11105489,-0.0664233,-0.009415376,-0.22964168,0.22391069,-0.0055348105,0.13846418,0.33888435,-0.092522465,0.37133017,0.32953668,0.79251647,-0.17116499,0.6800485,0.5909753,-0.14537908,0.14764757,-0.5060995,-0.3686773,-0.5367469,-0.3739616,-0.09150859,-0.42065546,-0.63045853,-0.15591767,-0.37228036,-0.80603033,0.5919451,0.056039453,0.07934874,0.10252646,0.3896345,0.52108526,-0.38130116,-0.06252687,-0.03867839,-0.07911753,-0.569758,-0.1569173,-0.47493243,-0.46178517,0.13639738,0.8895766,-0.2572159,0.13874169,0.19765486,-0.2492583,-0.01189061,0.15239482,-0.0066366442,0.16254212,0.43728665,0.016812095,-0.5109717,0.33571923,-0.08610038,-0.2904103,-0.7537609,0.19111876,0.5891676,-0.5876782,0.713427,0.36113557,-0.039528985,-0.11066265,-0.50602853,-0.13902023,-0.03253829,-0.20672745,0.3391362,0.26060343,-0.6284171,0.23962738,0.48591062,-0.29236045,-0.7536254,0.5728495,-0.022206912,-0.38726816,0.08826152,0.28518996,0.04261318,-0.14233917,-0.2846321,0.29515558,-0.19895113,0.27157322,0.20835978,-0.191236,0.14000593,-0.29947442,-0.18537718,-0.87142867,0.38506296,-0.40158084,-0.3498921,0.3894365,0.16176383,0.023513138,0.104168095,0.1917633,0.30306447,-0.47691464,0.14813185,-0.1528871,-0.1654181,0.1166257,0.36946845,0.43211612,-0.45030677,0.47034082,-0.14368518,-0.11960608,-0.027677367,0.17254597,0.5166676,0.01943458,0.28302157,0.14550954,-0.20719473,0.118909426,0.59743077,0.124870636,0.32608962,0.10079479,-0.10411823,0.053512543,0.13428293,0.17119555,-0.031415705,-0.5706658,0.2366981,-0.2706747,0.07808702,0.5230507,0.19431587,0.14853576,-0.14060988,-0.5256161,0.06084094,0.34813365,0.32786012,-0.9893996,0.44769338,0.11821634,0.7441116,0.3576521,0.21515249,0.15439476,0.49414515,-0.27747825,0.13242407,0.3773974,-0.09265866,-0.45841756,0.41521332,-0.7171536,0.38727584,0.08030359,-0.04179539,0.14810507,-0.085292585,0.45028663,0.81772166,-0.20474051,0.012992856,0.1387149,-0.19766413,-0.026090195,-0.33135647,-0.12556727,-0.54251814,-0.36467078,0.5738821,0.5319669,0.2901989,-0.20613258,0.053218562,0.087720744,-0.12751178,0.12375129,0.23881036,0.32808265,-0.00678462,-0.662381,-0.13752325,0.537752,-0.010385971,0.10401798,-0.079048775,-0.17968102,0.3931884,-0.115986384,-0.029429292,-0.08026684,-0.67670923,0.13025348,-0.43190753,-0.4090474,0.43678412,0.09050552,0.19516347,0.17627184,0.13025783,-0.17052396,0.8326816,-0.027999131,0.90082175,0.034059066,-0.17530365,-0.20532227,0.4706627,0.14542039,0.029416328,0.032509744,-0.37088242,-0.014167746,-0.5563735,0.52067024,0.17692547,-0.29941416,0.035848122,-0.09238279,0.11811548,0.55383855,-0.06255311,-0.1397713,-0.15158165,-0.30481806,-0.32709277,-0.3351567,-0.17496355,0.1610365,0.20222092,0.08831245,-0.23621465,-0.009880632,-0.33482477,0.24504025,-0.13881414,0.5028738,0.24936907,0.17815469,-0.20833246,-0.20495696,0.13412349,0.34110728,-0.09855753,-0.18675177,-0.1539218,-0.46484044,-0.4157186,0.016212344,-0.1673991,0.3842233,0.33149263,-0.111780725,0.64360136,-0.05039086,1.1620506,-0.007032613,-0.33948335,0.15665184,0.5624349,-0.08146626,-0.21860214,-0.27626818,1.019826,0.69239014,0.07929191,0.007851447,-0.17920835,-0.1447506,0.10678486,-0.21579976,-0.14903808,0.05192846,-0.4593114,-0.3285176,0.1845782,0.30627057,0.3009819,-0.1065771,0.20071225,0.27465343,-0.015120059,-0.072831675,-0.24740116,-0.40852475,0.2997463,0.27200958,-0.15559953,-0.088487886,-0.4721255,0.5163741,-0.32422736,-0.0007210523,-0.47626054,0.20130932,-0.17791347,-0.30692402,0.043373015,-0.17845084,0.3033028,-0.25770637,-0.11089351,-0.23086536,0.34531772,0.2740008,0.14120884,0.5131788,-0.27932456,0.16273883,-0.12135919,0.39188245,0.7524242,-0.36440346,-0.2229737,0.37198496,-0.2870001,-0.49363723,0.32521006,-0.40206036,0.18737392,-0.12584426,-0.110533334,-0.57806784,0.14187688,-0.050633103,-0.04594099,-0.28401694,-0.5929015,0.07406131,0.2365034,-0.23088185,-0.09817342,-0.33300674,0.09882376,0.67017716,-0.17774384,-0.38149843,0.20506053,0.053138178,-0.122998774,-0.45825663,0.053020414,-0.30596814,0.22574788,0.07429355,-0.3925984,-0.15171732,0.057980444,-0.35924658,0.114708744,0.07885241,-0.29756162,0.0948615,-0.3311228,-0.10681928,0.9403036,-0.375006,0.11666278,-0.34559178,-0.40525198,-0.6416397,-0.18239415,0.45331445,0.05210508,0.039490607,-0.7712249,0.17583442,-0.21662863,-0.28237066,-0.23208056,-0.19147955,0.4045483,0.12570646,0.4847766,-0.4118034,-0.83703136,0.22313611,0.1184207,-0.28441688,-0.6588305,0.44060853,0.05938831,0.8928562,0.00079812604,0.029217,0.5762405,-0.56233126,-0.082552545,-0.1674854,-0.17231846,-0.537211,-0.07476943 -295,0.38292173,-0.28614464,-0.37696794,-0.014990078,-0.23727332,0.1113466,-0.047057908,0.5063908,0.21125983,-0.40290174,-0.1610759,-0.30489957,-0.0024436892,0.3783602,-0.22549537,-0.4257449,-0.099076316,0.22281061,-0.5055714,0.49976826,-0.487062,0.16847102,0.09098374,0.40641102,0.19798294,0.036086004,0.199811,-0.17424652,-0.34460232,-0.19308329,-0.27111626,0.26914394,-0.5172828,0.17089953,-0.17912555,-0.32692146,0.022410832,-0.45999655,-0.25932708,-0.6974771,0.31259096,-0.6896164,0.32255659,0.07471355,-0.25267133,0.45718,-0.008002639,0.3292548,-0.283557,-0.13895202,0.11039068,-0.18510157,-0.04808885,-0.185865,-0.1088857,-0.14922899,-0.7318277,0.21491213,-0.30899173,-0.21450275,-0.39755613,0.26586196,-0.2647129,-0.07002356,-0.14982493,0.4770384,-0.41753674,0.14740826,0.03445879,-0.059493043,0.111468405,-0.5132446,-0.21516947,-0.033000838,-0.0020831784,-0.11732993,-0.08431087,0.24940348,0.26659867,0.57732195,-0.03653344,-0.14565611,-0.41771343,-0.0461244,0.053608913,0.4637202,-0.10895276,-0.64406306,-0.098416105,-0.010516803,0.07272582,0.060610987,0.088068455,-0.2023432,-0.22451067,-0.12372741,-0.25904953,0.29107162,0.4543305,-0.33477396,-0.38143715,0.3118197,0.51218265,0.10504245,-0.07178025,-0.13054334,-0.034913514,-0.6486637,-0.13023771,0.103421874,-0.18110034,0.55337334,-0.17558031,0.2171255,0.67973405,-0.2090324,-0.08752734,0.040941563,0.04485206,-0.05159665,-0.26148328,-0.24577647,0.17242931,-0.33045655,0.17354873,-0.25903234,0.94886845,0.0051161707,-0.85989445,0.347156,-0.49310488,0.2435678,0.05532845,0.5445198,0.50546134,0.38789508,0.49670085,0.5318683,-0.4097084,0.13261627,-0.10392303,-0.2715823,-0.07924709,-0.25237685,-0.0047151884,-0.43525633,0.113199905,-0.15709537,-0.14570114,0.024376867,0.42680356,-0.6218373,-0.050229263,0.15937765,0.7651337,-0.2591125,-0.12142076,0.7651177,0.95445925,1.1601541,0.0029825629,1.0980166,0.41009998,-0.31845322,0.16791034,-0.42174816,-0.6852711,0.27419332,0.2942271,0.13771346,0.13635498,0.022659509,-0.13102953,0.3275449,-0.47304657,-0.033806026,-0.25162974,0.16236454,0.1676,0.052374262,-0.38673294,-0.416708,-0.028139288,-0.030009143,0.049642883,0.27979326,-0.22545497,0.44449025,0.001328969,1.8045827,0.03167876,0.12527063,0.16972958,0.51249814,0.038651023,-0.11929958,-0.043476734,0.27918848,0.31940964,0.01898427,-0.56181353,-0.03138382,-0.28517812,-0.49979323,-0.092789896,-0.17541781,-0.13276027,0.06390868,-0.48564723,-0.23630132,-0.1423185,-0.262864,0.48879433,-2.6435065,0.077524275,0.013203204,0.28386518,-0.30875415,-0.39674366,-0.0029345988,-0.5531073,0.37870756,0.36347163,0.4184449,-0.7035629,0.3242056,0.2397008,-0.4877098,-0.07954062,-0.66565406,-0.14265057,-0.0432525,0.32781842,0.025636578,-0.05793653,-0.068444245,-0.06783767,0.5607775,-0.12401797,0.0805482,0.3436283,0.29807675,0.08767298,0.4140138,0.20959595,0.35597643,-0.28639802,-0.11584555,0.43631613,-0.43320644,0.2376595,0.005737555,0.08556327,0.4041784,-0.5327339,-0.8174076,-0.68271446,-0.15310937,1.2468317,-0.07742769,-0.32635644,0.2520444,-0.18224022,-0.17795865,-0.12808737,0.31197053,-0.15223384,-0.19854736,-0.75497067,0.043521926,-0.020085605,0.30280888,-0.009339013,0.0048346915,-0.36703163,0.70338744,-0.14779715,0.2505505,0.31742492,0.19920379,-0.41383582,-0.4514008,0.104663596,0.87165326,0.32038802,0.13877042,-0.23256226,-0.29999486,-0.3174736,-0.089665435,0.03820363,0.3781463,0.67004216,0.009829418,0.14135768,0.30156943,-0.04824029,0.10096017,-0.18353789,-0.22326796,-0.13843937,-0.011926616,0.65420777,0.690787,-0.1662013,0.3803927,-0.09195159,0.24354863,-0.0595475,-0.41753742,0.5301796,0.8214881,-0.038347792,-0.17071919,0.52082473,0.52657336,-0.25136802,0.36867124,-0.55594516,-0.3153165,0.587327,-0.1709533,-0.42309922,0.08638762,-0.29149562,-0.013691177,-0.80480456,0.35924146,-0.14863475,-0.43292174,-0.7861738,-0.14588885,-2.666061,0.27088395,-0.36328268,-0.15478767,-0.025748687,-0.06304407,-0.013247579,-0.6066354,-0.4020134,0.02797722,0.15345973,0.44646612,-0.007580894,0.19307038,-0.27261856,-0.23602708,-0.49923512,0.1176776,0.07981933,0.29160598,0.028315729,-0.39607996,0.08379304,-0.21564649,-0.3344622,0.06363108,-0.56015146,-0.55733496,-0.15817174,-0.43195215,-0.3819116,0.65051883,-0.3802633,-0.05245595,-0.15514204,-0.032761805,-0.050826807,0.3467695,0.15925704,0.11301262,0.07227779,-0.15039288,-0.015544945,-0.29352936,0.28834465,-0.0020017277,0.23393819,0.42496985,-0.16197824,0.18109417,0.3028446,0.6700653,-0.15793352,0.77625155,0.48889634,-0.09043649,0.25274733,-0.21453302,-0.16701375,-0.48087153,-0.21129146,0.008330652,-0.41022378,-0.40384388,0.045219526,-0.30530152,-0.6976567,0.4353753,-0.107909,0.10260806,0.006016135,0.31875992,0.56236136,-0.074837156,-0.07302942,-0.1415191,-0.027035965,-0.4797488,-0.43453434,-0.7136055,-0.4533602,0.08660597,1.0612683,-0.037080575,-0.05860363,0.017772608,-0.30364367,-0.1650245,0.06708612,-0.083533205,0.20100619,0.38603124,-0.20433696,-0.66039693,0.4971491,0.031700753,-0.23470841,-0.51891387,0.19638006,0.57344234,-0.46234852,0.48493055,0.30904242,0.111288644,0.1101508,-0.49507505,-0.22967501,-0.07863211,-0.1825586,0.32485187,0.2279089,-0.5742358,0.396308,0.28445616,-0.21146312,-0.87500066,0.2440755,0.08100302,-0.3517102,-0.06229552,0.28050846,0.18156436,0.100083224,-0.22843699,0.20783488,-0.56454164,0.37597302,0.22029908,0.00027012627,0.06576814,-0.31607014,-0.24225919,-0.6338464,0.019051163,-0.5154285,-0.34548122,0.2639521,0.15054925,0.0011654755,0.20037784,0.027595885,0.3153277,-0.21624945,0.01709064,-0.05402718,-0.08851888,0.21641888,0.42836288,0.4235454,-0.43122613,0.64051807,0.078556724,-0.112981,-0.18465458,-0.024912516,0.41862786,0.055436738,0.38975862,0.03657471,-0.261309,0.39968282,0.59296316,0.25697955,0.5240983,0.025177483,-0.2232974,0.39694202,0.041458424,0.15832955,0.04444973,-0.42073473,0.102965236,-0.20712735,0.14607774,0.43759176,-0.004261718,0.3884885,-0.10199157,-0.07974078,0.14782982,0.21218467,-0.16672882,-0.9753288,0.19303153,0.15384197,0.87257767,0.57980794,-0.10311658,0.14442499,0.82925016,-0.30983672,0.11344767,0.34667987,0.14438018,-0.59718525,0.7028158,-0.6442916,0.41446722,-0.24986942,0.00013910333,-0.0306003,-0.018801233,0.4384675,0.6284666,-0.17484428,-0.066179946,-0.040970586,-0.3218385,0.04876353,-0.3510264,0.33275643,-0.477315,-0.25261468,0.6125796,0.47602668,0.27351582,-0.11267241,-0.006776625,0.09182198,-0.15848665,0.17185242,0.024253365,0.10660351,0.13016947,-0.7340922,-0.18016765,0.5153489,-0.09659571,0.30661917,0.08080881,-0.22062367,0.29121315,-0.25200096,-0.22664127,-0.06854465,-0.5364304,-0.021243043,-0.17642498,-0.3172704,0.4419867,-0.19378062,0.27912143,0.1960001,0.13224427,-0.41770038,0.11064735,0.14185213,0.73761547,0.08290682,-0.061276145,-0.34019077,0.26473388,0.18684247,-0.13026637,-0.12179233,-0.12726338,-0.07536848,-0.6724422,0.41201574,-0.07410946,-0.35316727,0.0031536182,-0.17684291,-0.023418497,0.5856292,-0.025966056,-0.08506577,-0.027442273,-0.1306603,-0.19780664,-0.06307883,-0.043579288,0.33198205,0.14235406,-0.027478313,-0.020399518,-0.014012039,-0.13530813,0.44121674,0.0067160707,0.30030334,0.204957,0.003682526,-0.43299535,0.023375038,-0.09719003,0.45417908,0.14131026,-0.22008681,-0.24009632,-0.2854505,-0.2992047,0.18437344,-0.13865058,0.25973117,0.15835562,-0.34948015,0.89394796,0.036812544,1.289223,-0.016314339,-0.2685436,0.07110251,0.532343,0.099677406,0.10267544,-0.43487653,0.8628309,0.45960292,-0.109352276,-0.11560738,-0.25838566,0.025934378,0.2747617,-0.13332805,-0.15087897,0.006234765,-0.6066421,-0.27406844,0.17560135,0.23601188,0.1441443,-0.13247217,-0.030143023,0.22837208,0.05956584,0.5358328,-0.35430706,-0.16046849,0.24345109,0.26048303,0.009712419,0.20566498,-0.42555496,0.3759934,-0.5567153,0.08364597,-0.15371951,0.11699908,-0.2147418,-0.24380475,0.33902672,0.08686641,0.40227735,-0.37957504,-0.35972416,-0.3363514,0.5388971,0.29739565,0.2912126,0.52119815,-0.27601564,-0.01607675,0.114330605,0.4275055,1.0552431,-0.34404942,-0.06740257,0.42887953,-0.2043006,-0.58267194,0.5780276,-0.24770936,0.04536711,-0.03371113,-0.18967484,-0.48966405,0.28552437,0.24011306,-0.07973553,0.12033753,-0.5761227,-0.16157538,0.41796467,-0.3581499,-0.17191073,-0.28122482,0.2246469,0.59389025,-0.25063473,-0.4588381,0.10757386,0.2963896,-0.30175844,-0.46377414,0.016077287,-0.42527387,0.33171356,0.078233436,-0.20107926,-0.14135231,-0.0026090464,-0.44967598,-0.10724665,0.20563923,-0.34439373,0.04753085,-0.3145148,0.03218733,0.84411246,-0.17027153,0.27600333,-0.74556005,-0.37004614,-0.9820888,-0.36964804,0.6954146,0.014207919,0.029410101,-0.56658334,-0.1276737,-0.041772243,-0.21876757,0.0036806336,-0.4048242,0.45967242,0.13003309,0.29093245,-0.128732,-0.6331088,0.07179936,0.091274805,-0.23116796,-0.41723493,0.36630994,0.05138219,0.82600707,0.021578943,0.08312653,0.3571018,-0.5062371,0.12636925,-0.2175642,-0.27209318,-0.543523,0.08071737 -296,0.2574934,-0.40114927,-0.77438706,-0.03504726,-0.33789095,0.092737235,-0.34906378,0.23692551,0.21962139,-0.27409583,-0.3648786,-0.014192308,0.12662297,0.3882135,0.0045804554,-0.48382878,-0.060538914,0.2931175,-0.75319475,0.5086504,-0.53058285,0.27307153,0.15130024,0.44241977,0.22822942,0.29712185,0.24937762,0.053641077,-0.042126685,-0.07424921,-0.032009523,0.23643814,-0.5334531,0.08907193,-0.35862565,-0.32458353,-0.14958099,-0.47805473,-0.2697077,-0.7488908,0.07022079,-1.1014557,0.5463216,-0.11748702,-0.29842052,-0.14080156,0.39690405,0.37437645,-0.29840806,0.1389512,0.16076262,-0.34012797,-0.43123683,-0.34093815,-0.18306005,-0.3481762,-0.4192806,-0.014831379,-0.5124149,-0.07694914,-0.1822489,0.23271534,-0.25045964,0.07515186,-0.19593203,0.23649254,-0.54117423,-0.058536027,0.37012318,-0.28428286,0.27058896,-0.5792419,-0.06867781,-0.16877249,0.5400511,0.07465552,-0.49354213,0.29403993,0.36440834,0.46758467,0.2324978,-0.24986982,-0.27855515,-0.09425471,0.36036614,0.52988786,-0.025905404,0.02015287,-0.3654154,0.0656187,0.4386813,0.4555928,0.08034242,-0.28776976,-0.18160424,-0.22993703,-0.015977442,0.27237156,0.5191483,-0.1223471,-0.38885233,0.25747535,0.72541136,0.4033931,-0.35788226,0.068118855,-0.050912607,-0.5309242,-0.12410446,0.12461164,0.050240915,0.45443574,-0.19717948,0.13290395,0.7333979,-0.042614136,-0.1163406,0.0429401,-0.008304582,-0.22036944,-0.35969862,-0.18237598,0.23529471,-0.5692482,0.13837908,-0.34705427,0.43749857,0.15743734,-0.5308755,0.36060518,-0.5812898,0.24514484,-0.034506846,0.612405,0.78340876,0.47949415,0.33564398,0.83048725,-0.2077731,0.14030379,-0.20487364,-0.28735456,0.06982272,-0.37741783,0.027869496,-0.44935623,0.21074308,-0.26415995,-0.0024713385,0.14270958,0.5640931,-0.4377261,-0.14161669,0.2171431,0.6230294,-0.3301318,-0.074474216,0.91625416,0.85208213,1.1702635,0.10129457,1.2879229,0.24593528,-0.20251353,-0.14016365,-0.11022017,-0.61874133,0.24570091,0.35993713,0.33312592,0.32510272,-0.09250051,-0.067958824,0.55760956,-0.48119885,-0.010531821,-0.04441179,0.03130447,0.15587957,-0.21395577,-0.49024534,-0.18688706,0.009827948,0.16849415,0.10631419,0.21295854,-0.20873679,0.55311984,-0.10215696,1.2973393,-0.17970999,-0.048562653,0.17609254,0.24714105,0.20791762,-0.3205492,-0.05582883,0.3067616,0.46290943,-0.056136716,-0.6205133,0.13132705,-0.28461918,-0.4513669,-0.14378966,-0.42162424,-0.2185173,-0.07050633,-0.5434925,-0.18063812,-0.037738297,-0.30111265,0.36237684,-2.4485078,-0.24162133,-0.2703567,0.31408828,-0.21522318,-0.18397579,-0.31997448,-0.48836428,0.26742467,0.19975321,0.4250413,-0.5103517,0.6073242,0.47597286,-0.66578,-0.1302098,-0.74234474,-0.0959236,-0.12126713,0.43006024,0.09983766,-0.1378133,-0.14731121,0.015561023,0.80015934,-0.06985849,0.12583895,0.6485321,0.3695183,-0.08020652,0.55481106,0.058424048,0.682062,-0.51449865,-0.25678638,0.6156525,-0.27726874,0.52454895,-0.1243232,0.035467483,0.60978717,-0.47768328,-1.0278707,-0.6565207,-0.32083926,1.290843,-0.38605985,-0.5433045,0.13584544,-0.53974885,-0.24866602,0.061657343,0.7188172,-0.03536972,0.20512946,-0.80771977,-0.075458124,0.014183735,0.18962774,-0.07148535,-0.09431766,-0.4189756,0.893396,-0.058150087,0.7300393,0.26148826,0.2482809,0.056492202,-0.31473532,0.13216704,0.68390757,0.42645612,-0.077948704,-0.29055294,-0.30207983,-0.13930026,-0.07653308,0.08144585,0.7112337,0.58505976,-0.0894176,0.23265718,0.2887923,0.06049121,0.008998805,-0.33456606,-0.07235477,-0.19332297,0.23396175,0.57728416,0.93526304,0.038904674,0.31106836,-0.3171467,0.48798323,0.08797031,-0.73952436,0.5527817,0.76083046,-0.21366188,-0.12655799,0.615048,0.49690226,-0.34527066,0.5571303,-0.7252892,-0.38363823,0.3222573,-0.2143931,-0.30976906,0.2588778,-0.34218258,0.2728316,-0.806725,0.26366302,-0.35240296,-0.3779169,-0.51816714,-0.15326096,-2.836033,0.2728941,-0.062043965,-0.09299808,-0.3514356,-0.33313295,0.34463856,-0.5265837,-0.6856193,0.13369967,0.16289894,0.7562779,-0.12714483,-0.00957495,-0.27135798,-0.42940864,-0.05116278,0.2069436,0.19877045,0.30077824,-0.35490865,-0.45808345,-0.11767956,-0.17252974,-0.48795423,-0.057695556,-0.6177057,-0.46282068,-0.109795816,-0.27090478,-0.106535956,0.40238214,-0.32557625,0.108314596,-0.20600656,0.13408773,-0.11634755,0.21891038,0.061518285,0.30658373,0.24888577,-0.04554724,0.19697225,-0.13141246,0.36122975,0.0020740617,0.18004027,0.085214876,-0.0873322,0.3410838,0.422991,0.7500806,-0.48607507,1.0948254,0.49896416,0.0037487377,0.20936301,-0.19697778,-0.5132271,-0.6151103,-0.22214015,0.035898115,-0.53425634,-0.48666954,0.12913178,-0.14003573,-1.0077415,0.71197826,0.12528257,0.2993031,-0.032108277,0.23535347,0.5698732,-0.24616316,-0.02203734,-0.016279805,-0.15761553,-0.50194687,-0.45095962,-0.64985895,-0.65407866,-0.20682468,1.0640577,-0.25432104,0.23606814,-0.00051796436,-0.38317034,0.109786525,0.42807177,0.07682405,0.23474249,0.5788045,0.029265797,-0.53843147,0.29917583,-0.087419726,-0.20721881,-0.5022864,0.3054864,0.69534874,-0.7392064,0.63201815,0.42179933,-0.02469239,-0.072138704,-0.6371999,-0.25996608,-0.19703595,-0.25176385,0.69304734,0.28285557,-0.8556137,0.5616544,0.31325048,-0.3914359,-0.7256865,0.37831512,-0.22957219,-0.15454125,-0.09832602,0.3225369,-0.03885574,-0.08075366,-0.19457412,0.13000216,-0.34480554,0.10334621,0.210025,-0.09845669,0.064156845,-0.3427394,-0.22312617,-0.76380587,-0.005107965,-0.5750857,-0.21346201,0.3363541,-0.15042697,-0.06443543,0.074497834,0.1461967,0.38374904,-0.25867823,0.10114422,-0.28858092,-0.53723544,0.26573494,0.48595756,0.34681994,-0.40072426,0.63795936,0.113188215,-0.2835928,0.1584799,0.091559514,0.4124269,-0.038847327,0.4924375,-0.39283156,-0.16799116,0.19162369,0.7809061,0.13948934,0.43771654,-0.04086403,-0.16304709,0.32047248,0.10276377,0.34811562,-0.37355807,-0.3937197,0.05135366,-0.2237805,0.18890692,0.44028282,0.36238006,0.3980034,0.095078655,-0.090891704,0.04867465,0.22886331,0.111608915,-1.2698157,0.48196188,0.2850093,0.94228977,0.48211473,0.03351432,-0.15974028,0.66069657,-0.37107587,-0.08204283,0.40184978,-0.024750974,-0.5105435,0.5167014,-0.801907,0.51514703,-0.16770923,-0.0722267,0.18467672,0.179504,0.5228799,0.86814326,-0.24998224,0.20254381,0.039384935,-0.070897855,-0.0036438128,-0.4047737,-0.14257939,-0.51281345,-0.52343017,0.9973585,0.49372885,0.72592765,-0.30345473,0.027005255,0.05446944,-0.19408022,0.34509674,-0.054428186,0.100004084,-0.03162179,-0.49599904,0.09009819,0.41914526,0.086419456,0.23294571,-0.049836986,-0.50448185,0.12894312,-0.16010126,-0.017213723,-0.18602657,-0.64068305,-0.087572254,-0.37372705,-0.6951278,0.3483474,-0.07043115,0.14217432,0.3600974,-0.033825148,-0.14138037,0.3801458,-0.35895663,1.0718479,0.081044674,-0.15793668,-0.16939114,0.2760717,0.32839605,-0.30630675,0.07359262,-0.39219382,0.24280922,-0.5246528,0.6746708,-0.13171229,-0.66307986,0.3572987,-0.15533777,-0.13185382,0.606308,-0.08143915,-0.22759728,0.17306122,-0.104667716,-0.5145486,-0.1446725,-0.2991574,0.18276943,0.11839918,-0.049387235,-0.23725566,-0.15895943,0.051688332,0.63758713,-0.096976474,0.44334453,0.34568092,-0.06360694,-0.3916235,0.23029968,0.3164995,0.6017216,0.14298327,-0.1289129,-0.40752992,-0.59602255,-0.34833685,0.33165306,-0.08549216,0.24838114,0.05390174,-0.06868007,1.0323819,0.13558623,1.0578755,0.06452019,-0.3597323,0.25539207,0.491484,-0.08437423,-0.12360733,-0.3638642,0.6871579,0.5010651,-0.19469298,-0.049278047,-0.5507328,-0.08551623,0.17382407,-0.42743307,0.07429787,-0.14048325,-0.651245,-0.440095,0.10794226,0.18913524,0.3452757,-0.23924457,0.15117586,0.1460375,-0.06986536,0.2346829,-0.62913334,-0.3387831,0.30351093,0.23233049,-0.44902557,0.076261185,-0.43294358,0.41856557,-0.6064752,0.0052665705,-0.42237917,0.13228868,-0.28253847,-0.4055483,0.17495346,-0.034594245,0.25013158,-0.47321758,-0.20859589,-0.14733705,0.53044647,0.090216435,0.15151401,0.5411631,-0.31811184,0.1383043,0.24904351,0.44411543,1.1432312,-0.5068604,0.029453387,0.30463436,-0.3756102,-0.48504132,0.3516558,-0.49405113,0.098250456,0.052207332,-0.5398807,-0.5837593,0.30928844,0.25413045,0.1705254,0.01600303,-0.59538513,-0.06444395,0.21647267,-0.20876972,-0.14549105,-0.3639059,0.21176393,0.48202488,-0.1430641,-0.3466477,0.0770524,0.21014556,-0.3060255,-0.34191218,0.04658342,-0.23042585,0.30934593,-0.024699867,-0.35615322,-0.056477673,0.06226616,-0.5580017,0.05190865,0.20459047,-0.22812745,0.07978503,-0.328208,0.11100377,1.0072999,-0.34619185,0.06572926,-0.4000366,-0.5550141,-0.96381366,-0.3581104,0.23120198,0.17576577,0.0047146934,-0.5100617,0.13752624,-0.1743082,-0.2740767,0.03388181,-0.38967755,0.37227377,0.10067088,0.5177223,-0.2630598,-0.82982886,0.2693449,0.032383554,-0.17976096,-0.3790421,0.6094846,-0.08614038,0.88142353,0.13763914,-0.0023723927,-0.020015823,-0.4730057,0.19767427,-0.2147173,0.037984896,-0.7775021,-0.17384411 -297,0.4107866,-0.120959066,-0.38764036,-0.3139099,-0.24118093,0.16504756,-0.07129126,0.052971967,-0.10080738,-0.50837594,-0.06261281,-0.355898,-0.07422261,0.39278996,-0.21528813,-0.8019488,-0.07425542,-0.06715285,-0.67197365,0.37355042,-0.34085885,0.54409474,0.41196945,0.13585107,-0.004820009,0.4170338,0.505253,-0.35863462,-0.1183664,-0.019745925,-0.36425698,0.07105209,-0.60040015,0.18475851,0.03859211,-0.22006406,0.21483313,-0.13283683,-0.12452148,-0.66447043,0.21597408,-0.68675244,0.27762452,-0.14947227,-0.2860384,0.21996066,-0.008747665,0.26675874,-0.42030728,0.32084975,0.18784116,-0.2593399,0.029089153,-0.25516555,-0.15643567,-0.71986616,-0.4370806,0.051705852,-0.69075763,-0.46043333,-0.19418249,0.17935874,-0.42151204,0.008300615,-0.21006687,0.3458357,-0.50204366,-0.2600065,0.20687547,-0.2574125,0.24708056,-0.3769914,-0.069532275,-0.17354509,0.3145399,-0.101334125,0.022827882,0.25559303,0.31130806,0.56160295,0.12265201,-0.28838763,-0.056937013,-0.20628387,0.20135851,0.4924892,0.10039593,-0.37967274,-0.11279329,-0.06838115,0.022554927,0.14779687,0.045932684,-0.4407526,-0.14165811,-0.018041346,-0.24948393,0.04847373,0.41657084,-0.49327287,-0.24859826,0.35906792,0.4618706,-0.039921187,-0.13784985,0.1768506,-0.06775317,-0.3938568,-0.1880676,0.36025375,-0.11870233,0.6193035,-0.22193798,0.39915392,0.80565834,-0.1897592,0.13233094,-0.36460164,-0.1557498,-0.26379135,0.09445497,-0.049977295,0.10839481,-0.48809358,-0.0781964,-0.33689168,0.959583,0.27643096,-0.81768066,0.34246552,-0.38791102,0.16914612,-0.14925997,0.7358917,0.538245,0.25124064,-0.021017324,0.8989185,-0.7533728,0.04314555,-0.06695627,-0.45018288,-0.06762164,-0.021139871,-0.17676021,-0.32290432,0.03597876,0.059028435,0.11040452,-0.25146356,0.20024985,-0.3206096,0.117536075,-0.18341926,0.58704287,-0.5366067,0.022938954,0.6257945,0.7997291,0.8251153,0.14705096,1.25641,0.30363,-0.2643718,-0.01594912,-0.5061048,-0.39946958,0.14761367,0.53839624,0.8262732,0.21461289,-0.10473388,0.1589478,0.25447312,-0.18386191,0.34653938,-0.16043012,0.13830678,-0.1583011,-0.10977482,-0.4898563,-0.23910291,0.11437569,0.08258801,-0.0124245845,0.1662188,-0.0062666973,0.5899491,0.19900386,1.3868673,0.014864048,0.27231604,0.063796714,0.25714934,0.22004248,-0.011084227,-0.010362832,0.30443674,0.4229633,0.03088859,-0.62615144,-0.11656507,-0.3162557,-0.57682955,-0.23295666,-0.44093412,0.048235066,-0.2512886,-0.5225908,-0.11479448,0.2303153,-0.42297295,0.4407193,-2.2317069,-0.080188945,-0.28675205,0.10739449,-0.3286247,-0.2296581,-0.18313299,-0.44745588,0.27936038,0.52865165,0.29730102,-0.65160346,0.46498823,0.36810434,-0.058594774,-0.10611248,-0.63939786,-0.06415839,-0.1501153,0.3298602,0.012078722,-0.11185614,-0.23917261,0.23760769,0.51691985,-0.10311505,-0.107428744,0.13023342,0.26340392,0.2053738,0.59717745,0.35207984,0.4177253,-0.1309497,0.07886526,0.30035114,-0.24114202,0.26183167,0.11586063,0.22650991,0.17201272,-0.52655786,-0.6770939,-0.75538504,-0.555362,1.3457942,-0.4757993,-0.32671705,0.33912495,0.4519591,-0.03476209,-0.056557167,0.31942934,-0.09451771,0.1376031,-0.587491,-0.0069356086,-0.060619414,0.27958617,-0.078581005,0.0864938,-0.31531373,0.67967147,-0.21760912,0.43133435,0.33553526,0.1598408,0.00022950968,-0.43378976,0.090637125,1.0352014,0.40531337,-0.030545216,-0.080635734,-0.23613057,-0.2218397,-0.186114,0.19780222,0.28051835,1.0476058,0.13755229,0.053359754,0.31126678,-0.15570848,0.13367106,-0.049368177,-0.3926253,0.1712245,-0.08305137,0.5569531,0.26024693,-0.022173261,0.52620596,-0.23542118,0.32046166,-0.12813747,-0.42949528,0.5609089,0.9527597,-0.06722034,-0.16725422,0.27503318,0.49915984,-0.3513715,0.31750727,-0.5994833,-0.27478266,0.71016556,-0.1684862,-0.36114654,0.25223455,-0.28430137,0.16581208,-1.0990585,0.31518564,-0.051857963,-0.51857656,-0.5020274,-0.2721648,-3.7585123,0.07440519,-0.20886359,-0.12749574,0.024912046,-0.1647127,0.2965979,-0.5411098,-0.4433006,-0.0093580745,0.011298043,0.38308805,0.12959558,0.16976404,-0.2753803,-0.12295782,-0.19950317,0.22819076,5.767743e-05,0.106104665,-0.032682482,-0.3706275,0.17951904,-0.51867974,-0.45080918,0.08672643,-0.3493597,-0.5588551,-0.20067602,-0.3139844,-0.35454184,0.6409057,-0.2625591,0.02726481,-0.050207656,-0.17056134,-0.22622661,0.37502295,0.32776347,0.16550587,-0.065114826,0.12778038,-0.25355566,-0.4032767,0.13271591,0.12993042,0.28733948,0.1983753,-0.15366787,0.11471868,0.5169391,0.45236614,0.008681039,0.5346143,0.18151031,-0.052009236,0.32255942,-0.4130837,-0.2319102,-0.8978432,-0.44913843,-0.33684736,-0.27234486,-0.63390166,-0.21615647,-0.27809206,-0.7303359,0.3435849,0.059100866,0.030855747,-0.1150127,0.22687915,0.27864918,-0.07479051,0.042132393,-0.221666,-0.16953367,-0.3969495,-0.42575905,-0.80925167,-0.47969982,0.009128618,1.1458708,-0.030424865,-0.29971847,-0.18043327,-0.08069416,0.15976031,-0.013556548,0.23399934,0.32381693,0.16081223,-0.2026871,-0.7989381,0.68195426,-0.09732521,-0.051608168,-0.4504453,-0.26321414,0.557838,-0.6845573,0.2769883,0.23877549,0.15840997,0.2048815,-0.3594776,-0.24001922,0.042708624,-0.4113867,0.47754195,-0.16135985,-0.3666006,0.47931406,0.17037357,-0.007102263,-0.5095661,0.48568952,0.0014938673,-0.30315056,0.28213176,0.29779705,-0.12178294,-0.07244488,-0.359399,0.1957095,-0.55543166,0.28545392,0.55883974,0.19062056,0.4918272,-0.050593268,-0.27330643,-0.4327144,-0.070862964,-0.40688488,-0.18909988,-0.037486542,0.15224075,0.02933073,0.13964857,-0.109822385,0.45459852,-0.29275692,0.14016485,-0.032041553,-0.1764882,0.31549862,0.42951176,0.10947888,-0.47770202,0.60690916,0.10073872,0.17978863,-0.42923254,0.045780182,0.48057163,0.43645498,0.11413193,-0.055735603,-0.19441637,0.389748,0.60474354,0.37657535,0.5846469,0.25226387,-0.23208526,0.39560446,0.3267637,0.13654889,0.046329632,-0.016485868,-0.1026824,0.14777945,0.094298534,0.34953752,0.037624303,0.4665166,-0.08454538,-0.1192721,0.22993013,0.23235169,-0.23236026,-0.62030154,0.25601894,0.26510966,0.4959617,0.6443921,-0.06089735,0.094046764,0.438712,-0.4876406,0.02380451,0.19435593,-0.08550353,-0.5756746,0.6969026,-0.4983862,0.26785624,-0.18094355,-0.08135775,0.00021966298,0.09965434,0.15161449,0.9803341,-0.03374195,0.03536759,-0.19634707,-0.1248493,0.19116454,-0.43722418,0.06839851,-0.3785802,-0.2514382,0.44342047,0.18752523,0.20697738,-0.1592096,-0.013546439,0.07495381,-0.055360503,0.2991243,-0.062644556,0.10437538,0.035014175,-0.60762984,-0.51659197,0.6050464,-0.0055812597,-0.06434899,0.15891522,-0.44734856,0.33958787,-0.043149408,0.040705126,-0.0976418,-0.52879274,0.1766402,-0.23029543,-0.45206496,0.20628233,-0.4032508,0.46714595,0.17767903,-0.055781167,-0.29154575,-0.09476297,0.30221575,0.6298736,0.060257673,-0.3261189,-0.30588505,0.07201909,0.3024431,-0.33305848,-0.044340845,-0.22121146,0.16094074,-0.6638473,0.41165224,-0.13382173,-0.21888746,0.113463685,-0.23516403,-0.2669603,0.38054556,-0.23504347,0.03739943,0.23195624,0.14803907,-0.092592366,0.012590122,-0.54673326,0.20262156,-0.13104104,-0.07242277,0.033465553,0.055861283,0.079838224,0.47060153,0.1037676,0.16384609,0.07174145,-0.26651084,-0.50725114,-0.0595447,-0.046106394,0.05558404,0.25049308,0.036010664,-0.18433918,-0.3360634,-0.1306685,0.091171585,-0.23197407,0.2387731,0.16510865,-0.48699242,0.76336175,0.18196869,1.1825736,0.13600343,-0.23678951,0.092411056,0.49386102,0.14041351,0.14678285,-0.30114183,0.9365297,0.67096907,-0.12690385,-0.2895703,-0.36503604,-0.22459704,0.2226394,-0.21788716,-0.23455101,-0.023019219,-0.70462596,-0.44379914,0.1315526,0.25861654,0.13267474,0.2644733,-0.14364372,0.09302883,0.114122964,0.68060726,-0.48986652,-0.17221576,0.19607824,-0.15469022,0.14249153,0.11978242,-0.3558261,0.52140707,-0.7624493,0.22229372,-0.3110161,0.027176348,0.079784654,-0.22310854,0.24914531,0.075983554,0.3330638,-0.18253565,-0.4903612,-0.24186048,0.69796556,0.16343711,0.41436857,0.831422,-0.30764753,0.17340933,0.16068454,0.34480318,1.3801098,-0.026707537,0.029454628,0.3741789,-0.42747563,-0.4994426,0.1715441,-0.13928947,0.049031537,-0.18164302,-0.4721151,-0.40749556,0.28266823,0.16240504,-0.09285418,0.18630147,-0.38169667,-0.31356958,0.57939136,-0.29794112,-0.41005623,-0.4235918,0.48127657,0.6139304,-0.5083078,-0.2563167,-0.012719504,0.10251251,-0.44799933,-0.6535881,-0.029134631,-0.21293001,0.5274301,0.08962237,-0.24605677,0.20205173,0.3825149,-0.31485873,0.21392968,0.524237,-0.38374797,0.016899245,-0.20958737,-0.078991696,0.96515214,0.015679391,-0.20637444,-0.6699258,-0.4877023,-0.9570667,-0.40669537,0.7105742,0.1710413,0.033035804,-0.43187994,-0.0923244,-0.051615253,0.131776,0.11461143,-0.49308267,0.2529902,0.17044678,0.45686534,0.060627177,-0.81811506,-0.008404231,-0.05295034,-0.21562035,-0.4280929,0.58303744,-0.21833521,0.4790557,0.05721204,0.009697842,0.17986849,-0.54455215,0.2877498,-0.30394492,-0.24274167,-0.58471227,0.12480111 -298,0.3746278,-0.19386078,-0.42970136,-0.08081368,-0.20594062,-0.31414336,-0.29656294,0.6680862,0.3799411,-0.40551472,-0.23671368,0.22176732,-0.18251199,0.29647905,-0.14191064,-0.17228158,-0.009866958,0.21476804,-0.5101976,0.6921159,-0.19635925,0.20599219,-0.14384152,0.62542695,0.41298956,0.12839048,-0.17083909,0.3779473,0.023297181,-0.24090768,0.023588648,0.2088916,-0.4530857,0.17319764,-0.26019973,-0.4350537,-0.3776293,-0.5606566,-0.46099743,-0.7694196,0.35019344,-0.72028345,0.62066424,-0.013461218,-0.34209353,0.16358255,0.09320201,0.23623309,-0.01940613,-0.25337207,0.16115977,-0.12991567,-0.21416576,-0.10138074,-0.072815746,-0.1937673,-0.58105206,-0.09281821,-0.26728475,-0.04055146,-0.3135102,0.1962044,-0.35716438,0.07920799,0.025010284,0.58957916,-0.21285237,0.15961954,0.07480757,0.0039623794,0.112795606,-0.83209074,-0.23844253,-0.12010578,0.18899368,0.011756576,-0.37280953,0.37876037,0.07722226,0.44024354,-0.21054675,-0.031655762,-0.40925023,0.20087503,0.013745322,0.46422136,-0.30837876,-0.34282953,-0.09150283,0.09837807,0.47180626,0.10129888,0.19754076,0.0027145927,-0.1947627,-0.015902016,0.026827602,0.4457639,0.557413,0.040558375,-0.16686183,0.2599382,0.53500533,0.48788643,-0.17165463,0.0521329,0.057879355,-0.5023172,-0.14717707,-0.25994143,-0.14834735,0.3490236,-0.046328824,0.2929382,0.32707754,0.020740459,-0.22280622,0.38121003,0.20314072,0.21082164,-0.3110479,-0.56698054,0.37998772,-0.4291134,0.25430647,-0.1890257,0.45862976,-0.061380424,-0.770461,0.23448744,-0.4664796,0.14165533,-0.04422656,0.4440749,0.9814346,0.48204195,0.3802298,0.72655195,-0.24363287,0.034930196,-0.040080626,0.12763742,0.0012881664,-0.25914967,0.05202424,-0.5623771,-0.1693859,-0.04202878,-0.24709032,0.43870303,0.48759666,-0.46263868,-0.16926914,0.20876874,0.7542872,-0.1399247,0.07494811,1.037858,1.2245069,1.1705512,0.07016391,0.8827022,-0.091040105,-0.088701494,0.035641946,-0.047091894,-0.67343956,0.2560557,0.30139458,0.10587129,0.32034895,0.14429668,-0.1305729,0.42132345,-0.6068557,-0.08148705,-0.009536977,0.06045988,0.14411603,-0.22158346,-0.58421934,-0.17904575,-0.25914007,0.16431363,0.020330433,0.2590384,-0.2832784,0.41141576,-0.13814633,1.3347855,-0.14467219,-0.023152392,0.15358283,0.4952181,0.23027423,-0.41392377,-0.038632445,0.048070934,0.29933912,0.016784204,-0.56171936,0.017770588,-0.1356166,-0.36177656,-0.22234192,-0.28604305,-0.3234061,0.025475685,-0.25366384,-0.3982803,-0.19967164,-0.44761392,0.19420968,-2.6969616,-0.24641715,0.026469808,0.48339665,0.04241493,-0.35006624,-0.16195941,-0.3595884,0.5479059,0.30860597,0.5406193,-0.45203298,0.21890494,0.45343068,-0.727278,0.06386154,-0.55556387,-0.11757003,0.17901564,0.19811663,0.062582016,-0.11473315,0.1415489,0.32817155,0.5116446,0.2599897,0.03579154,0.59691006,0.36814865,-0.43528965,0.31437647,-0.21430962,0.3981007,-0.3957136,-0.28565806,0.38464254,-0.3938374,0.23369576,-0.2419986,0.16217613,0.60943127,-0.44697455,-0.9671832,-0.5140003,0.28243148,1.1760371,0.13751036,-0.60251844,0.28774732,-0.96870226,-0.35889357,-0.21633516,0.6834737,-0.21190885,-0.21545584,-0.72689056,-0.26202568,-0.20540048,0.1144081,-0.038255356,-0.21104033,-0.53406763,0.82285935,-0.013058569,0.59959614,0.40608194,0.1185132,-0.35440043,-0.41919434,0.07421614,0.659462,0.5901141,0.17156526,-0.3381069,-0.022896977,-0.25488383,-0.14219508,0.18358961,0.564488,0.33308858,-0.14948183,0.21852463,0.18608266,0.03618913,-0.025072305,-0.20399131,-0.004652491,-0.2594596,0.05036791,0.6743256,0.80890787,-0.16562667,0.31881377,0.146078,-0.011555537,-0.11172366,-0.37089318,0.31463546,1.0247194,-0.18742171,-0.5085531,0.67351335,0.44055843,-0.14290184,0.40502027,-0.47730678,-0.16482621,0.17988205,-0.012723565,-0.35859635,0.09514594,-0.3885047,0.13840613,-0.5584942,0.2429613,-0.31264842,-0.74404997,-0.8225795,-0.11323106,-1.3321275,0.21060461,-0.32121044,-0.38713557,-0.2750033,-0.4414887,0.096354574,-0.5744938,-0.69483083,0.22384556,0.07978857,0.8713286,-0.1865463,-0.13367139,-0.064761415,-0.48388892,-0.37877223,-0.013584132,0.15852925,0.43517002,0.15400717,-0.21902707,-0.12286366,0.057890195,-0.4568504,-0.19900121,-0.43329877,-0.3807274,-0.02319665,-0.39113384,-0.19232124,0.5571837,-0.1221987,0.12021197,-0.26091996,-0.11774063,0.100367196,0.26995498,-0.022310184,0.23890176,0.18862747,-0.13259417,0.1650917,-0.031408224,0.115977325,-0.07158848,0.17043965,0.24634926,-0.38081008,0.38014677,0.4658674,0.78419167,-0.3228802,1.0168567,0.6710847,-0.09290849,0.21973613,-0.23215815,-0.38664612,-0.45770174,-0.07851444,0.42213395,-0.45196703,-0.3755182,0.11968954,-0.53496677,-1.0168853,0.56502956,-0.03780475,0.19921562,0.110242195,0.07755138,0.4818022,-0.12897323,-0.12374493,-0.17271066,-0.11004024,-0.41307306,-0.28762877,-0.63616556,-0.49707457,-0.1319813,1.2702199,-0.26167402,0.20365168,0.42992508,-0.28335994,0.007514254,0.14973682,-0.11314265,0.057285395,0.24833809,0.054078754,-0.4202192,0.26700863,-0.01585203,-0.14125441,-0.57024646,0.26148272,0.50298345,-0.38844663,0.4943183,0.30200982,-0.10669149,-0.52427155,-0.812239,-0.01179918,-0.12648049,-0.19160257,0.51439464,0.45951682,-0.71537775,0.41121215,0.31352174,-0.14291225,-0.72970325,0.39559713,-0.041030005,-0.3453967,-0.030014588,0.17854333,0.012279437,-0.021500248,-0.0070819994,0.3687797,-0.21562481,0.4212631,0.05156825,-0.18752153,0.025011264,-0.3209212,-0.026273044,-0.60756487,0.14269017,-0.55645186,-0.29615375,0.2556827,0.15092815,0.30394647,0.04096021,0.3300095,0.39398807,-0.3400059,0.12792856,-0.36038965,-0.38644692,0.2731713,0.49734786,0.65424454,-0.38496512,0.56805384,0.06933364,-0.37172163,-0.006288689,0.023495985,0.44330758,-0.17305723,0.3189608,-0.001077354,-0.18922755,-0.162163,0.7698607,0.06379117,0.18566598,0.014414168,-0.093741424,0.16422097,0.032112017,0.31852758,-0.15553102,-0.514845,0.2307846,-0.476086,0.13563477,0.39522612,0.16417345,0.106029406,-0.22689287,-0.38476995,-0.05222157,0.10181236,0.13808143,-1.5609212,0.4854539,0.18057863,0.8524419,0.4009681,0.1482899,-0.1301569,0.79566914,0.060680177,0.055113953,0.21587215,0.20125076,-0.38214573,0.4398778,-0.7402167,0.5919546,0.13540651,0.009046412,-0.016479969,-0.114357546,0.4723584,0.5148715,-0.21127447,-0.0022663784,0.020926237,-0.33510298,-0.04134529,-0.3719354,0.11301042,-0.61821306,-0.29473716,0.8735924,0.5638575,0.34669426,-0.21040776,0.08630498,0.06347522,-0.10863029,0.16166148,0.0016536071,0.02104528,-0.14072496,-0.60704285,0.1349253,0.25049785,-0.23719348,0.12230992,-0.11357893,-0.047064345,0.12329398,0.07714569,-0.12685513,-0.0772654,-0.7067142,-0.02218428,-0.54253936,-0.4627524,0.33758754,-0.14804667,0.15494244,0.33897883,0.10441497,-0.16859554,0.35000503,-0.08890506,0.73110926,-0.07505261,0.0780008,-0.15610303,0.23764804,0.12525055,-0.18198249,-0.023056477,-0.09363182,0.09412764,-0.4555407,0.48995107,-0.08667372,-0.38257664,0.20188788,-0.05398254,0.14511909,0.34099242,-0.3087721,-0.26434204,-0.147583,-0.29757193,-0.23346074,-0.39918178,-0.050078712,0.3480642,0.06402822,0.07459802,-0.060155146,-0.11121511,-0.079288684,0.51303124,0.16235495,0.56290525,0.32674378,0.18284649,-0.3433956,0.027232233,0.10396442,0.57188267,-0.027110828,-0.09774426,-0.53841203,-0.5666977,-0.46658266,0.3177803,-0.03448186,0.46538046,0.13648418,-0.007283151,0.62786674,-0.02531024,0.81368977,-0.054690935,-0.3611098,0.20189425,0.38342032,-0.13401894,-0.21270299,-0.17484419,0.6100183,0.34295526,0.00088889326,0.005107817,-0.31251574,0.09343911,0.30305904,-0.28112504,-0.18315695,-0.13453571,-0.61026233,-0.1120619,0.26360476,0.24697253,0.12275468,-0.24803618,0.19371746,0.4292518,-0.068139106,0.018708335,-0.288087,-0.10597528,0.47295606,0.18213224,0.001014095,8.076888e-05,-0.5233364,0.20593366,-0.40846306,-0.08052071,-0.31334257,0.24851659,-0.08354245,-0.23493661,0.25645357,0.05904191,0.25028527,-0.31297037,-0.14464773,-0.19188254,0.3640938,0.15058766,0.09643286,0.26454538,-0.3241461,-0.027729778,-0.018469132,0.31616122,0.9119019,-0.20702508,0.064904876,0.04011921,-0.30136248,-0.39606094,0.31216705,-0.33266178,0.08062814,0.10244412,-0.08286122,-0.59032094,0.12753083,0.25568146,0.22225523,-0.034539897,-0.8026393,-0.39576742,0.06445173,-0.20326272,0.030852739,-0.43616527,-0.30813423,0.46509406,0.023113796,-0.4407743,-0.02379648,0.38641363,-0.02246207,-0.47576615,0.2696258,-0.47063276,0.22941563,-0.24501501,-0.40226313,-0.36361086,-0.13967814,-0.43699995,0.11452024,0.07383618,-0.2855779,-0.058519747,-0.43634742,0.12681147,0.89422184,-0.23667328,0.36859372,-0.19037192,-0.547732,-0.83000284,-0.1634648,0.15733925,0.34306547,-0.044208586,-0.8599291,-0.01888875,-0.22637105,-0.012507228,-0.105615154,-0.23330556,0.5086986,0.18977012,0.340738,-0.34151605,-0.67744595,0.28870773,0.06687205,-0.25392294,-0.19851683,0.5300242,0.4032285,0.7949572,0.08763724,0.16645254,-0.08134724,-0.4832361,0.13677576,-0.1153688,-0.29268518,-0.5038057,-0.041351873 -299,0.6393105,-0.18246624,-0.37171742,-0.24487281,-0.24911489,0.08691616,-0.13382003,0.31581777,0.16889471,-0.51164067,-0.047866862,-0.13106473,-0.011781728,0.0618152,-0.15431918,-0.632107,-0.06982843,0.043791953,-0.44868848,0.6135119,-0.4696961,0.33415425,0.03809944,0.21940564,0.07815065,0.27211052,0.25341454,-0.23972884,-0.08442716,-0.1345617,-0.13693745,0.26884133,-0.75430804,0.23501045,-0.056560345,-0.28437743,0.08267345,-0.377067,-0.23743361,-0.7362384,0.22316347,-0.8222725,0.448602,0.17420414,-0.21293579,0.17800957,-0.0014551163,0.21992142,-0.22143729,0.17278385,0.19870299,-0.039887913,-0.018104978,-0.08792356,-0.1464983,-0.5427493,-0.64089227,0.061044984,-0.26912376,-0.19880849,-0.27074164,0.19615623,-0.4386167,-0.09527189,-0.1478438,0.43475276,-0.46661994,0.018202562,0.12534267,-0.014557949,0.43710843,-0.5163767,-0.01573071,-0.228826,0.18100758,-0.4074707,-0.35369363,0.28448066,0.3633451,0.4879433,0.047382772,-0.23623377,-0.14539985,-0.15620235,0.15115087,0.50679916,-0.22464056,-0.7225025,-0.15856075,-0.06072219,0.14916421,0.31481284,-0.112262994,-0.37049323,-0.075703666,0.13875945,-0.2005765,0.42656523,0.5130474,-0.4736227,-0.35212347,0.4095572,0.5825471,0.0035927177,-0.031273015,-0.082998045,0.029987741,-0.7059739,-0.25045556,0.40094754,-0.089701176,0.4420525,-0.18187033,0.13944802,0.69278705,-0.40181553,-0.009624998,0.083358936,-0.061750628,-0.09721133,-0.19238384,-0.2872751,0.2962634,-0.56692123,0.108636394,-0.3041302,0.8296783,0.24874789,-0.7897293,0.27948567,-0.61748606,0.08006254,-0.19592553,0.6990119,0.6447432,0.43844232,0.2772536,0.70862466,-0.594968,0.06637668,-0.09982939,-0.44461983,0.06849618,-0.19669834,-0.118734546,-0.42892674,0.03469818,0.0982852,-0.058975074,-0.130491,0.32487094,-0.56259286,-0.006026429,0.049482964,0.6767981,-0.33311003,-0.09628735,0.68268573,0.8786162,0.9940103,0.12743443,1.375336,0.2829984,-0.3060687,0.15760067,-0.3431133,-0.7748938,0.36323196,0.47589752,-0.17172109,0.14073268,0.11213121,-0.0074196896,0.2158489,-0.46445948,-0.012055339,-0.3296181,0.38807684,-0.010383925,-0.07447591,-0.3587881,-0.23855686,-0.05152104,0.11261468,0.07272091,0.20401327,-0.18801309,0.22189511,0.19623114,1.4588293,-0.15443645,0.123160996,0.07779523,0.438361,0.17487288,-0.05232714,0.0155196665,0.23909898,0.45942086,0.30697164,-0.6358059,-0.0026572347,-0.17881685,-0.53414637,-0.15891787,-0.31411642,-0.009650937,-0.11963563,-0.38061967,-0.086321525,-0.09694249,-0.3246207,0.59400505,-2.6596472,-0.046130292,-0.12213627,0.2213158,-0.22297472,-0.44462246,-0.18859193,-0.6096813,0.57999164,0.35606316,0.5237407,-0.8454739,0.29308233,0.3510507,-0.5091794,-0.0035171588,-0.7973484,-0.13054515,-0.13135192,0.37423506,0.12452408,-0.07893312,-0.11236037,0.12888414,0.55011564,-0.051898915,0.077332124,0.07149175,0.43363747,0.08951412,0.56572545,0.10978497,0.47074717,-0.14490822,-0.18998304,0.3608562,-0.21367224,0.17803484,-0.08538864,0.13462861,0.2700641,-0.48929024,-0.9453514,-0.8995556,-0.55580443,1.0931647,-0.15318164,-0.45932496,0.09608832,-0.105907425,-0.2803803,-0.12240301,0.3520362,-0.2536705,0.040340174,-0.7871281,0.12017367,-0.08212344,0.21765785,0.012780446,0.06533016,-0.4859577,0.65394247,-0.12649216,0.32855955,0.44364044,0.08200519,-0.18646249,-0.5325617,0.03868766,1.0747845,0.37036735,0.1544592,-0.20567164,-0.298029,-0.34447905,-0.028028412,0.068936385,0.4556733,0.80213815,-0.085352525,0.083776735,0.2890472,-0.011476736,0.04719117,-0.11770203,-0.29879224,-0.09060684,-0.0985339,0.7187124,0.44063517,-0.19848566,0.46125117,-0.09951871,0.2523511,-0.05333807,-0.40659934,0.53455764,1.1147643,-0.11249338,-0.21750297,0.59530866,0.52574736,-0.26782706,0.42755452,-0.6315114,-0.261989,0.35719022,-0.08684642,-0.3546231,0.14609718,-0.38712797,0.15555556,-0.843778,0.4783663,-0.33921203,-0.44790548,-0.55017084,-0.1280928,-3.4078836,0.2685281,-0.26106533,-0.029335538,-0.05452142,-0.1453632,0.39052144,-0.55505884,-0.50967497,0.25022116,0.07145708,0.5313917,0.014770033,0.05658985,-0.24445347,-0.1408698,-0.40078315,0.122675546,0.16990574,0.2927161,-0.020360466,-0.41390106,0.053879693,-0.13630177,-0.43352118,0.1495864,-0.5386892,-0.5546323,-0.15340953,-0.48644918,-0.4199918,0.7061474,-0.3304338,0.008685636,-0.1428093,0.03807443,-0.018749733,0.41058862,0.08242985,0.15418799,-0.08399156,0.034633208,-0.14601931,-0.28851348,0.41107547,0.056851722,0.13978486,0.2446632,-0.2888585,0.2221055,0.49714005,0.5121374,0.053515732,0.85460013,0.56469333,-0.10456485,0.2131951,-0.33693543,-0.20309235,-0.59139705,-0.39819902,-0.13006775,-0.4956954,-0.40111464,-0.0325224,-0.31849682,-0.6789747,0.57938933,-0.020509934,0.062411405,-0.07347777,0.31926578,0.4437507,-0.1351437,0.053457346,-0.06910767,-0.13501061,-0.48020548,-0.3279033,-0.60795337,-0.40563032,0.046427142,1.1084296,-0.21578927,-0.11631214,-0.025612246,-0.1360374,0.0381995,0.086420186,-0.12823328,0.24278793,0.40712115,-0.07115258,-0.65352696,0.5554262,0.011477605,-0.12442374,-0.6328658,0.14020266,0.7010295,-0.74525917,0.39745525,0.34217831,0.068803065,-0.14219576,-0.6360661,-0.22900926,-0.0070027965,-0.30477574,0.44506976,0.075143225,-0.7290789,0.5185002,0.40122154,-0.18829349,-0.67241913,0.6174277,0.087176256,-0.34580985,0.07381989,0.27923623,0.10914949,0.046320796,-0.26348153,0.36960143,-0.46727234,0.33669502,0.20143436,-0.020794272,0.36975396,-0.026900165,-0.24706435,-0.6786927,-0.06215899,-0.45966783,-0.41453943,0.17752776,0.002983447,-0.0020871798,0.29981473,1.1384487e-05,0.4760085,-0.25352317,0.07856533,-0.0051113605,-0.3190165,0.2145744,0.3640708,0.40849483,-0.36846918,0.6004799,0.07952665,-0.11469371,-0.20575804,0.09375127,0.553701,0.055473544,0.31426874,-0.029794069,-0.21210852,0.3467819,0.8111164,0.22276379,0.40696305,0.002163454,-0.06650063,0.30009085,0.17469583,0.24862741,0.11255531,-0.50267845,-0.10418512,0.073727116,0.065527625,0.44997838,0.09289327,0.21771675,-0.1498971,-0.23151445,-0.006931625,0.105519265,-0.005344788,-1.1105224,0.41693535,0.11507681,0.76081437,0.59227026,-0.15581182,0.120275065,0.51288617,-0.23187973,0.08960069,0.35197785,0.0101041,-0.44590378,0.5541398,-0.7122868,0.41049644,-0.085455224,0.070766404,-0.12488367,-0.11561426,0.27412117,0.8991356,-0.10589345,0.10234995,-0.17863792,-0.15313165,0.2659041,-0.34454829,0.17741747,-0.486752,-0.20910312,0.7304084,0.41096625,0.3601204,-0.007719768,0.0004967143,0.17008963,-0.16061325,0.18015406,-0.053007953,0.080723494,0.13861546,-0.67028946,-0.18273766,0.66366667,0.021750959,0.05148022,-0.037361324,-0.22960217,0.27099115,-0.17229837,0.025241148,-0.15143725,-0.60014504,0.019288126,-0.33947155,-0.22441308,0.59148747,-0.3499071,0.24017677,0.14258115,0.0676421,-0.25273448,0.15963846,0.3128647,0.7203028,0.07309442,-0.21282692,-0.5079335,0.14531918,0.2598679,-0.23826136,-0.23569804,-0.1264078,0.0021606407,-0.74802554,0.35872588,-0.04898054,-0.44459817,0.12158929,-0.16875039,-0.06388941,0.5443228,-0.08896956,-0.20988598,0.061080147,-0.1570906,-0.1679116,0.024789575,-0.046120085,0.28843313,0.33903658,-0.0035297116,-0.079464935,-0.19523162,-0.25784427,0.34689087,0.088955574,0.29133272,0.3057889,0.1819145,-0.35244468,-0.080611125,0.15307999,0.47189704,-0.08822368,-0.09699499,-0.17533585,-0.38257393,-0.30724427,0.048115764,-0.13478334,0.34398985,0.006466232,-0.44083968,0.69398296,0.0044873,1.2605519,0.08418547,-0.29388618,-0.09205754,0.62275386,-0.0029224355,-0.0082065305,-0.333735,1.0000137,0.5810501,-0.07991912,-0.19921865,-0.31938314,-0.004863612,0.078756884,-0.11170983,-0.06135547,-0.1148526,-0.63583934,-0.351852,0.31922844,0.28547636,0.10451958,0.040488735,-0.120385595,0.18089399,0.029335694,0.45165926,-0.4720846,0.015143631,0.2578067,0.31660557,0.11751452,0.26893812,-0.30175045,0.29347858,-0.41409698,0.13917519,-0.23937927,0.20142303,-0.20482215,-0.1854023,0.21877323,-0.06679988,0.3193847,-0.21163623,-0.52987486,-0.2013374,0.46578124,0.22074983,0.23733707,0.68690556,-0.28094807,0.109623685,-0.01550986,0.4465226,1.1941757,-0.20039003,-0.004907753,0.44552884,-0.29492822,-0.5009129,0.4098484,-0.28757003,0.1305786,-0.022649534,-0.271727,-0.33607686,0.23046137,0.22673455,0.064220354,0.0035615643,-0.7106322,-0.22404978,0.21649498,-0.13818803,-0.26922646,-0.33404344,0.40063375,0.8114658,-0.41958258,-0.23429696,0.1561004,0.21912812,-0.24984239,-0.57909495,-0.05040783,-0.34728384,0.34891605,0.17544593,-0.30413455,0.05581182,0.061939288,-0.4135926,0.10193981,0.2050053,-0.41361302,0.087003864,-0.15369672,-0.079841964,0.9196076,-0.1709268,0.07359774,-0.5211588,-0.34097072,-0.8902516,-0.28843033,0.4937143,0.28899392,0.076660864,-0.42664844,-0.11337255,0.07314698,-0.08381469,-0.023271767,-0.45248803,0.4857231,0.049404096,0.44667664,-0.12441637,-0.8190632,0.14373295,0.10682169,-0.06325253,-0.5345546,0.5111104,-0.044282354,0.68676144,0.1245312,0.123272024,0.28612205,-0.49845296,-0.041309375,-0.1877428,-0.19903521,-0.8525836,0.13932624 -300,0.36163825,-0.046810247,-0.61625266,-0.019468885,-0.1818052,0.20118485,-0.18102854,0.32566687,0.048370916,-0.3701816,-0.11317137,-0.14331885,-0.0445402,0.2738493,-0.07938365,-0.457011,0.18331677,0.30939192,-0.67422193,0.29796034,-0.6129225,0.307842,0.12938768,0.14802171,-0.0048366864,0.10155188,0.15100819,-0.13011989,-0.16857041,-0.21726297,0.10020849,0.20433642,-0.5742833,0.36032104,-0.2209178,-0.36617094,-0.00323385,-0.39297697,-0.33133394,-0.66168976,0.33741465,-0.8309839,0.53423923,-0.05861933,-0.20840219,0.241226,-0.0069238027,0.29684365,-0.15078071,0.004208986,0.21166238,-0.27734312,-0.36573008,-0.2375542,-0.06620135,-0.16721033,-0.6032581,0.16448964,-0.40289077,-0.07027909,-0.27361807,0.17331395,-0.30708903,0.1445275,-0.21258454,0.34209213,-0.3152504,0.05914755,0.13796592,-0.054774318,-0.049504027,-0.429164,0.03280053,-0.10213721,0.18138261,-0.24180228,-0.21407168,0.37482437,0.21264675,0.5680881,-0.041213885,-0.25216138,-0.09569319,-0.101898246,0.24952747,0.5256731,-0.17855202,-0.26270077,-0.16865359,-0.01379594,0.15674023,0.07060062,-0.037575744,-0.27625483,-0.059455376,-0.016812626,-0.16017164,0.26581144,0.6275078,-0.3123172,-0.12664266,0.39923322,0.598785,-0.08651967,0.055737518,0.19518839,-0.027266322,-0.56353647,-0.25381315,-0.0071953437,-0.08638553,0.4135059,-0.26376393,0.23606917,0.60608333,-0.23702525,-0.07923159,0.27013922,0.05002516,0.031878628,-0.081093036,-0.19438525,0.27912292,-0.5971582,0.05627226,-0.13315503,0.84232014,0.055964794,-0.7705573,0.4283102,-0.457574,0.21460083,-0.09506987,0.7221143,0.6042113,0.49160793,0.18369508,0.6974894,-0.49683577,0.014788268,-0.14360286,-0.50000656,0.052503966,-0.09950983,-0.058254004,-0.3645237,0.039207794,0.03746446,-0.08363951,-0.05921,0.4217915,-0.42961088,-0.13407166,0.056960378,0.6512462,-0.3389186,-0.23023194,0.6990022,1.0423192,0.89491814,0.10843933,1.3248341,0.28093135,-0.12836222,-0.009235473,-0.19245,-0.8282789,0.3096033,0.22873197,0.0899452,0.22263929,0.13011327,-0.11171524,0.2880672,-0.54698485,-0.160113,-0.13897566,0.26724353,-0.13746092,-0.10091685,-0.2578534,-0.23475827,0.11041296,-0.0052800816,0.19543782,0.33749256,-0.2385713,0.34886262,0.053613,1.3930763,-0.12160633,0.110684596,0.17509522,0.3104138,0.09360654,-0.0449754,-0.25206614,0.17273133,0.32369605,0.08602691,-0.54195887,-0.05280367,-0.13507676,-0.55727,-0.17172202,-0.26181218,0.027136136,-0.19464222,-0.2771243,-0.22539902,-0.09879487,-0.46155566,0.458613,-2.592462,-0.16815533,0.023316797,0.28862748,-0.19674405,-0.3436773,-0.1743118,-0.49611762,0.27778885,0.30758104,0.4526509,-0.71270293,0.4210843,0.24444224,-0.477846,-0.08320774,-0.6953585,0.05333142,-0.1367241,0.1911246,0.14292265,-0.075260974,-0.12730628,-0.04893099,0.49836752,-0.14818574,0.0164479,0.4291424,0.30735767,0.11977706,0.39237675,0.15861405,0.57283014,-0.55760306,-0.205039,0.3215286,-0.4043435,0.18415053,-0.11025596,0.12818216,0.26679844,-0.5306652,-0.8273432,-0.6141098,-0.22745362,1.3993111,-0.25510767,-0.26696354,0.24451698,-0.19564022,-0.25105605,0.042808518,0.3010993,-0.24846824,-0.058872856,-0.68743175,-0.08625857,-0.00815615,0.32207572,-0.12190951,0.06566345,-0.5422756,0.5548955,-0.25267726,0.5004245,0.25243148,0.06353773,-0.24790679,-0.386627,0.20814465,1.087146,0.3774179,0.14873879,-0.28685912,-0.19134556,-0.22605342,-0.22537436,0.096101485,0.48193285,0.7413792,-0.057193503,0.06732382,0.31391475,0.018791573,-0.009296163,-0.11312294,-0.34984705,-0.04423354,-0.07894887,0.66934484,0.5541214,0.017434107,0.4248548,-0.057576362,0.3476269,-0.21591201,-0.38051364,0.38244084,0.7578986,-0.1512046,-0.28926933,0.5153835,0.40162987,-0.32570893,0.5411723,-0.58186734,-0.49471983,0.24843222,-0.05956086,-0.3612513,0.18779056,-0.3140594,0.2790733,-0.82683784,0.49040073,-0.21328573,-0.78446424,-0.5098368,-0.13597395,-3.1751266,0.1928559,-0.2401341,0.011675773,0.051539585,-0.054475196,0.15189633,-0.32343313,-0.48790655,0.049392637,0.1419819,0.60742164,-0.035142772,0.07576131,-0.20461674,-0.20234784,-0.39098224,0.14253631,0.23161833,0.29379424,-0.08548334,-0.4078268,0.053467236,-0.37854752,-0.18445063,0.02568603,-0.6244434,-0.3548879,-0.11051901,-0.46423873,-0.4437392,0.66027707,-0.46071473,0.08893763,-0.25687,-0.03752557,-0.039038192,0.36423102,-0.016040524,0.11996626,-0.019639738,-0.20788105,-0.07896469,-0.25711754,0.4686751,-0.020993253,0.31904286,0.43525994,-0.1924554,0.05423248,0.40986425,0.5859029,-0.07551499,0.8414833,0.4155545,-0.13918068,0.26618236,-0.21937315,-0.19906227,-0.43991262,-0.113713235,0.007542071,-0.51109743,-0.35917002,0.035411842,-0.35737005,-0.81164056,0.4330722,0.00022366842,-0.061862357,0.059448518,0.26626596,0.4204435,-0.058972858,-0.16063288,-0.15574828,-0.10363589,-0.36107787,-0.4181392,-0.6869845,-0.45887023,-0.09037046,1.2225376,-0.15468822,0.09652957,0.023397831,-0.006097833,-0.021613609,0.10807705,0.008114016,0.23010792,0.48914927,-0.22775911,-0.6835206,0.39962256,-0.35632026,-0.06853495,-0.47502348,0.17106707,0.6195286,-0.7347669,0.49599773,0.52642655,0.24456319,0.0547631,-0.43073395,-0.16872129,-0.037884887,-0.25028136,0.43379983,0.19932482,-0.825362,0.5657238,0.3350759,-0.25996524,-0.7255756,0.41952667,0.037120685,-0.14553474,0.080594294,0.45408615,-0.2408647,0.04463064,-0.24305029,0.11651781,-0.45235443,0.33561942,0.18809786,-0.01313416,0.27998617,-0.2969595,-0.16380975,-0.51199925,-0.028536336,-0.54836905,-0.2141018,0.04385136,0.010114895,0.006559952,0.19124795,0.027707068,0.4722083,-0.25266013,0.010445644,-0.1459478,-0.3818527,0.36340588,0.44939902,0.4093847,-0.4719581,0.5891525,0.033640783,-0.13093509,-0.26296547,0.037325628,0.49881133,0.009974873,0.35167176,0.13538282,0.07382121,0.35966307,0.8248952,0.34395722,0.4308936,0.079823,-0.17559321,0.18583514,0.11174571,0.2343212,0.040843032,-0.50163925,-0.05651284,-0.13347732,0.2474897,0.43234012,0.18072887,0.45896354,-0.12261789,-0.27443627,0.021232003,0.11959818,-0.17060384,-1.0978947,0.50343376,0.10196161,0.6640571,0.40255412,-0.00976156,0.15391512,0.5837294,-0.24320568,0.17805807,0.18555562,-0.17407961,-0.42720512,0.5149713,-0.6489345,0.37865102,-0.104971856,0.07031127,0.11311904,-0.10096182,0.3854989,0.74012595,-0.039093852,0.09447677,-0.082928784,-0.21654037,0.14646749,-0.27239367,0.23092912,-0.5498088,-0.2061408,0.87057596,0.40731353,0.29427412,-0.14776653,0.038990658,0.101848885,-0.1000217,0.13247329,-0.07678641,0.14351486,-0.11075284,-0.6607895,-0.19051811,0.6326515,-0.0054941694,0.04486813,0.21870661,-0.17538032,0.2852371,-0.19832405,-0.005432463,-0.18230009,-0.5725087,0.05788804,-0.20942189,-0.3101426,0.1856531,-0.23450874,0.2672461,0.24751513,0.017919242,-0.50617385,0.28934,0.15113363,0.6829425,0.059070427,-0.28178176,-0.20464729,0.31750822,0.27856398,-0.268081,-0.13481121,-0.32354957,0.043306645,-0.694638,0.41190326,-0.14473465,-0.36599004,0.24109954,-0.05945337,-0.13729325,0.5430154,-0.1296006,-0.11203582,0.094623595,-0.09191057,-0.20073493,-0.109348364,-0.20046636,0.24226615,0.2674686,-0.15004295,-0.11430906,-0.010342093,-0.122970834,0.25901967,-0.06204508,0.19282745,0.28539145,0.058945842,-0.41919568,-0.052594207,0.05342209,0.5673497,0.056613103,-0.04389646,-0.3454471,-0.13420776,-0.15654401,0.22420658,-0.07250131,0.33860305,0.075742476,-0.26543695,0.69998443,0.10802933,1.0750068,0.09035544,-0.13484271,0.02590247,0.54086,0.08891679,-0.0073646605,-0.46408173,0.98081106,0.5045383,-0.17204763,-0.11840652,-0.46037012,-0.02711939,-0.040745694,-0.12695798,-0.38628483,0.015003592,-0.59381294,-0.24229176,0.22988254,0.35570943,0.06429996,-0.008880373,0.13279395,0.29412544,0.04378282,0.16905709,-0.43156263,-0.12204134,0.26385218,0.24899887,0.015552954,0.016289007,-0.48724225,0.33636123,-0.7166957,0.07634302,-0.07044863,0.08752529,-0.05661653,-0.33797637,0.22179116,0.12346672,0.30466282,-0.32055664,-0.2837162,-0.10943259,0.43215185,0.20081404,0.269542,0.76108205,-0.23565388,-0.016122222,0.07133387,0.34160823,0.88309324,-0.14253075,-0.008306247,0.32503578,-0.15173677,-0.6358902,0.39240387,-0.25943896,0.21089935,-0.044763148,-0.39730313,-0.48756605,0.3522288,0.2056395,-0.115714245,0.15905997,-0.60121346,-0.07510088,0.22597863,-0.18860109,-0.32769224,-0.40186158,0.11158393,0.8038109,-0.21964483,-0.33473587,0.11870947,0.23092924,-0.3642346,-0.6183499,-0.016587906,-0.41780064,0.22471142,-0.055208027,-0.19869232,-0.04662868,0.08134411,-0.3989504,0.21471177,0.22568361,-0.1909948,0.14807187,-0.27587044,0.11145881,0.6423429,-0.15131325,0.039102428,-0.54532313,-0.43542007,-0.8591155,-0.19316754,0.3471249,0.14155169,-0.035292037,-0.4875473,-0.19399816,-0.08080182,-0.22067894,-0.024340717,-0.40440473,0.33429152,0.06668725,0.1883473,-0.0027890664,-0.78164923,0.11489034,0.059965387,-0.3009511,-0.39848354,0.46807998,-0.056680076,0.76904005,0.07735955,0.015545994,0.40691668,-0.56444424,0.15195277,-0.25796616,-0.049791433,-0.6027777,-0.0037390192 -301,0.3355894,-0.2326184,-0.4924815,-0.059564747,-0.37213618,0.1698201,-0.3643512,0.17335132,0.06685799,-0.5151215,-0.20903869,-0.04764578,0.110120125,0.23092507,-0.22731426,-0.4814295,-0.03994267,0.2757024,-0.6655426,0.44379187,-0.58499604,0.37011522,0.18205984,0.26764274,0.09647564,0.27431172,0.19845164,-0.2377238,-0.15738785,-0.23251913,-0.14074714,0.21169834,-0.571058,0.31105322,-0.20869817,-0.27168247,0.018495515,-0.30404034,-0.3297894,-0.686006,-0.0035751483,-1.1061631,0.61179507,-0.15052831,-0.21712087,-0.08103956,0.22005899,0.43699312,-0.3830789,0.034354057,0.34430298,-0.28105074,-0.36755946,-0.38679054,0.027592888,-0.55662286,-0.4393719,-0.014817299,-0.53399765,-0.1652361,-0.246045,0.30626222,-0.28753868,0.015068265,-0.19360164,0.2654892,-0.4904125,0.24726209,0.1698228,-0.087855056,0.059846606,-0.5590325,0.021440575,-0.113307,0.5674556,-0.050069213,-0.2061341,0.3070774,0.3040495,0.34297538,0.319297,-0.2603514,-0.18040206,-0.20635836,0.43636194,0.3364977,0.030830739,-0.12237894,-0.28483286,0.0022065383,0.42549834,0.2869517,0.09125851,-0.28970107,-0.14435539,-0.10341419,-0.13568887,0.45551792,0.51373,-0.09350164,-0.2016717,0.37936512,0.6899978,0.30589983,-0.2703037,0.07651075,-0.00788817,-0.5810848,-0.11211211,0.22426118,-0.034976546,0.4666436,-0.24534525,0.05470107,0.84480447,-0.13771822,-0.010761644,0.08851,-0.008874012,-0.24119666,-0.17660083,-0.24718359,0.12707016,-0.63158923,0.0016943812,-0.3084809,0.70723754,0.19383954,-0.67525476,0.3799902,-0.5708887,0.15210316,-0.044262905,0.7075644,0.6353287,0.48724985,0.20021056,0.78115416,-0.29704767,0.15804747,-0.03773764,-0.41987535,0.11878484,-0.37730727,-0.027701003,-0.43620858,0.04577278,-0.24737413,0.055788748,-0.20380755,0.36697134,-0.46886286,-0.16512199,0.078234695,0.60536563,-0.35371003,-0.031175345,0.7908279,0.9803403,0.95760334,0.19715013,1.3265073,0.37440374,-0.24233203,-0.06910165,-0.20607889,-0.6831727,0.2165149,0.2930029,0.0433796,0.28869286,0.039738264,0.034394655,0.29850695,-0.4530701,0.063655846,-0.12315607,0.30684146,-0.05733483,-0.019952377,-0.35037693,-0.15848505,0.026579244,-0.07771201,0.14122012,0.27981356,-0.17733577,0.40425307,0.18666919,1.155338,-0.23521616,-0.035261318,0.07789817,0.3614597,0.12479039,-0.15372777,0.03903174,0.30063263,0.5166081,-0.0742283,-0.6864892,0.09450424,-0.26928142,-0.43589145,-0.18202348,-0.3004087,-0.2204285,0.019198665,-0.26522762,-0.2123576,0.0039586923,-0.24002817,0.4061303,-2.5867755,-0.20021972,-0.22125337,0.33981332,-0.27097854,-0.20042637,-0.19504389,-0.5468918,0.32046917,0.11895776,0.49554425,-0.61831224,0.46782058,0.56033397,-0.52701634,-0.26544848,-0.7777068,-0.01622725,-0.08694105,0.4355122,0.0010218194,-0.12872575,-0.1295759,-0.15909743,0.6114253,-0.013538863,0.28931442,0.51251894,0.30970407,0.21041285,0.5580883,0.17368463,0.562512,-0.33540383,-0.07420145,0.3926638,-0.33999512,0.5212132,-0.103791,-0.014715989,0.5785926,-0.47407064,-0.6880388,-0.6418677,-0.46382627,1.1790401,-0.47970986,-0.4458005,0.049599458,-0.18045087,-0.02089958,0.12281399,0.5412511,-0.07401274,0.22363342,-0.6428771,-0.014468885,0.0061373883,0.2934601,-0.030035933,0.048350163,-0.32586747,0.8249709,-0.12552999,0.5980993,0.33314785,0.19608475,-0.054508995,-0.39695612,0.14229499,0.83473283,0.35281324,-0.02359583,-0.33974832,-0.36751667,-0.24542464,-0.19637379,-0.0050299005,0.59022486,0.5231942,-0.11263721,0.115675576,0.2351402,-0.18452801,0.09042909,-0.20725559,-0.1986681,-0.09496345,0.11805756,0.49563766,0.74178505,0.010494505,0.58477163,-0.24757667,0.3298315,-0.1466972,-0.55017537,0.6790336,0.568411,-0.19593038,-0.19263199,0.50911236,0.4911274,-0.329909,0.40779,-0.5503997,-0.24659352,0.5129728,-0.094731756,-0.37415388,0.17167197,-0.22164343,0.28915378,-0.8124539,0.34612593,-0.4451738,-0.57084554,-0.6497952,-0.03921432,-2.4687917,0.16958424,-0.16818316,-0.11919304,-0.35893133,-0.17359011,0.41751003,-0.46230003,-0.5975115,0.08693445,0.13318661,0.59186274,0.011373692,0.09468838,-0.21411411,-0.31864598,-0.004365291,0.26614597,0.20909707,0.28201112,-0.3284293,-0.36564532,0.016487226,-0.0150052225,-0.24420953,0.08269478,-0.7345862,-0.4601014,-0.047715545,-0.32461637,-0.26542455,0.6287238,-0.50094384,-0.032028418,-0.12067817,0.18862419,-0.2499963,0.16301778,0.14025305,0.2860627,0.080778755,-0.085058756,-0.11692568,-0.32284942,0.41038474,0.00094960205,0.2553819,0.19559205,-0.0073914686,0.20366554,0.38416848,0.6286689,-0.23509823,1.0471181,0.26684126,-0.08468159,0.12437929,-0.16225179,-0.39601186,-0.58639413,-0.21118459,-0.11571049,-0.42780942,-0.44847247,0.041820187,-0.3064786,-0.923327,0.66975313,0.034521524,0.14613417,-0.043483675,0.28089514,0.46507186,0.013902051,-0.03172842,-0.08671748,-0.1929185,-0.5354034,-0.48275846,-0.788741,-0.45088893,-0.066816464,0.99658644,-0.37150082,0.09035727,-0.0044030165,-0.44528976,0.04412508,0.21520878,-0.090951756,0.11786677,0.5710722,0.061629806,-0.5892224,0.46538037,0.0094826175,-0.08951136,-0.455401,0.18715115,0.80056274,-0.80079097,0.53512233,0.44741172,-0.07017724,-0.098762915,-0.4433293,-0.19932885,-0.04741958,-0.22975914,0.5143844,0.18342128,-0.75151026,0.4028898,0.3269575,-0.30089834,-0.69488937,0.34164256,-0.08049018,-0.16193642,0.078968726,0.3280902,-0.01119713,-0.020251548,-0.23920856,0.15676865,-0.37138408,0.17699698,0.13309285,-0.13799112,0.13037378,-0.1710593,-0.29506832,-0.67197317,-0.041884024,-0.529914,-0.2050101,0.23797262,-0.050408293,-0.0067254007,0.21732616,0.350223,0.40739483,-0.27399823,0.122100614,-0.16582419,-0.37047175,0.30247173,0.52700186,0.28439215,-0.37423548,0.53547066,0.21519646,-0.102797285,0.036065876,0.05706176,0.38171095,0.06977896,0.45478153,-0.16494213,-0.051098492,0.15152396,0.9740786,0.1843016,0.6843775,0.076681614,-0.15776737,0.38739783,-0.013905861,0.4113584,-0.04491925,-0.51760954,0.028351353,-0.038111784,0.22998488,0.30065915,0.17385578,0.45224223,0.058215182,-0.04556399,-0.0110203875,0.16833012,0.13394393,-1.1783918,0.50062466,0.25189954,0.7135804,0.42470798,-0.05013868,-0.09017907,0.7919434,-0.3802041,0.032949988,0.31113175,-0.12201711,-0.45721075,0.6542101,-0.6110802,0.34752673,-0.2524151,0.050223686,0.11331204,0.10431011,0.29012558,0.90086466,-0.1864022,0.05647009,-0.014686857,-0.2282118,0.0590685,-0.27532205,0.07257503,-0.37708268,-0.4405534,0.9107485,0.4225872,0.5872697,-0.26807332,0.07693527,0.12730508,-0.15383494,0.28624663,0.12092667,-0.05628876,0.020465706,-0.48113483,-0.07570501,0.56973684,-0.079804085,0.21462385,-0.1072695,-0.30888787,0.10785627,-0.23655312,0.05232511,-0.14035009,-0.7132266,-0.058230378,-0.38875026,-0.64509696,0.25630507,-0.21817097,0.19999883,0.2744847,-0.11081309,-0.044286046,0.39402086,0.044986766,0.7478658,0.019107888,-0.24020697,-0.22560939,0.15784581,0.34391922,-0.3179129,0.05683881,-0.24377462,0.112084225,-0.5904555,0.458399,-0.28943107,-0.54042935,0.115481116,-0.26231986,-0.07978968,0.5781323,-0.01589721,-0.13783152,0.3461671,-0.1718049,-0.46543822,-0.18620549,-0.25733933,0.19845699,0.3233308,-0.09903454,-0.14416079,-0.28361022,-0.20634425,0.36225381,0.063970014,0.5474159,0.36977932,-0.1497409,-0.24747959,-0.0056345635,0.16994476,0.5389562,0.18303347,-0.07261594,-0.2603746,-0.31922194,-0.302759,0.4003975,-0.048532635,0.18225434,0.08021162,-0.3324118,0.9597495,-0.07540753,0.99931294,0.10008841,-0.28602204,0.099402785,0.5383976,0.026377229,0.046993546,-0.37122226,0.94038063,0.5901819,-0.08767075,0.0965534,-0.65962124,-0.181969,0.34548277,-0.35825655,-0.060173564,0.004464599,-0.56040424,-0.25371736,0.2320234,0.27084696,0.0017095123,-0.08433599,-0.02195275,0.050776813,0.046237532,0.45295197,-0.7514946,-0.18712518,0.27380246,0.12411368,-0.1497371,0.23368104,-0.30421633,0.4103117,-0.69386864,0.19303907,-0.4154911,0.029609805,-0.16462305,-0.28094044,0.14699629,0.007860755,0.24594085,-0.45573017,-0.45490122,-0.262042,0.54887146,0.053651482,0.18416932,0.6175193,-0.2756352,0.024279768,0.23554434,0.5748406,1.097514,-0.37445992,0.008583763,0.3073769,-0.48091513,-0.4837257,0.42773652,-0.4519194,0.015860448,-0.10271426,-0.48929888,-0.47030482,0.28804493,0.2435113,0.19936465,0.12839891,-0.674519,-0.004120352,0.30316684,-0.222865,-0.21398091,-0.0994746,0.21757366,0.56882876,-0.2298403,-0.42548123,-0.11751507,0.23910053,-0.40435055,-0.32310352,-0.0693626,-0.29823455,0.195166,0.0037454118,-0.28025395,-0.021919161,0.24212097,-0.49154612,0.019524649,0.13252269,-0.4092165,0.096644826,-0.2034532,0.11732805,0.7181582,-0.29250792,-0.10123904,-0.5942331,-0.45403233,-0.74456966,-0.38428047,0.07762216,0.2652029,0.12577344,-0.43370232,0.05641997,-0.07301169,-0.18043442,0.1885599,-0.7199716,0.48218897,0.21641873,0.35178298,-0.17589927,-0.9292626,0.17545941,0.03947528,-0.14516154,-0.59136003,0.5509517,-0.18902615,0.9382678,0.12796254,-0.038583,-0.15587129,-0.48684326,0.24856949,-0.28697708,-0.08628016,-0.9011146,0.0447106 -302,0.45674267,-0.15614991,-0.51215583,-0.08574081,-0.37183523,-0.0071070683,-0.078133516,0.7549631,0.37447822,-0.41047165,-0.28985608,-0.06317583,-0.017711418,0.43090516,-0.17138956,-0.67193115,-0.08487744,0.18267323,-0.29057038,0.5938557,-0.21202712,0.47417602,-0.16512363,0.42447472,0.37697947,0.29592654,0.19763446,0.16245954,0.07427433,-0.43394583,-0.24321595,0.15730889,-0.35357943,0.10921946,-0.1654364,-0.47884533,0.09386783,-0.45103845,-0.4861288,-0.8177237,0.394481,-0.95120376,0.7254007,-0.033372935,-0.2581855,-0.0041523306,0.03258646,0.39213753,-0.0011747751,0.07819741,0.062895596,-0.19042373,0.20662731,-0.2605224,-0.33228686,-0.45935717,-0.37794334,-0.26546976,-0.34696046,-0.27616602,-0.2555175,0.21875161,-0.29855892,-0.035141166,-0.41623536,0.2880664,-0.5013644,0.013598258,0.024603032,-0.3958514,0.048591528,-0.7815778,-0.1968542,-0.19659299,0.063133895,-0.08443523,-0.16484834,0.40943202,0.13140923,0.25359127,0.028756263,-0.095518805,-0.1004212,-0.22395667,-0.024817629,0.5581426,-0.0385751,-0.34642324,-0.19388212,-0.18913239,0.6517223,0.43713856,0.1390267,-0.16805613,0.016718723,-0.12608862,-0.28802767,0.5193004,0.5529448,-0.2230952,-0.060562443,0.346755,0.52912,0.26787785,-0.38760427,0.16104446,-0.07663846,-0.3021758,-0.0825771,0.0908335,-0.23149252,0.63242674,-0.07012859,0.20361558,0.71264493,-0.23130402,0.13425583,-0.09870765,0.10721325,-0.23931406,-0.36996824,-0.57323605,0.25453904,-0.5028051,0.54079384,-0.36157933,0.6965835,0.10736056,-0.22491856,0.34480447,-0.60414886,0.24906562,-0.117361076,0.57145846,0.37487802,0.3610164,0.08971057,0.7719389,-0.34626067,0.14514972,0.10111158,-0.0787384,-0.15641278,-0.027469011,0.19653298,-0.35184163,0.059882794,-0.0981294,-0.26092204,0.10296404,0.45401305,-0.531966,-0.20160462,0.12372882,0.9858207,-0.35060677,0.24722165,0.9145416,1.1953734,0.87885475,-0.20629936,0.99817294,0.10099912,-0.25844377,-0.32743207,-0.14663766,-0.5088674,0.09246254,0.47781742,-0.08168474,0.22182602,0.047188494,-0.097524576,0.32239944,-0.41185415,-0.17315093,-0.1093801,0.17747623,-0.011148854,0.010928848,-0.5678207,-0.15591837,0.02546777,-0.0468209,0.28240377,0.28871468,-0.45809668,0.31910256,-0.19787498,1.0028542,-0.006213573,-0.056644022,0.23018852,0.637424,0.29733917,-0.22947101,0.34921005,0.33775273,0.56315,-0.23334089,-0.5875089,0.30943364,-0.41169044,-0.42817318,-0.08519042,-0.34826726,-0.15508498,0.34862044,-0.5107018,-0.24545845,-0.13673234,0.08208186,0.18677917,-2.333539,-0.15338424,-0.29176056,0.3455362,-0.20854296,-0.23954965,0.12735839,-0.47445914,0.39648315,0.32621774,0.4642103,-0.6078999,0.4080845,0.77701896,-0.56975937,0.09574892,-0.81146246,-0.14230913,0.01306786,0.4044029,-0.03574994,0.064462714,0.067829736,0.18502134,0.55891854,0.22167388,0.17476498,0.31035808,0.37800628,-0.26248613,0.32051826,0.0722223,0.59666955,-0.26922733,-0.107518844,0.36963177,-0.45275316,0.36498415,-0.3771045,0.06299705,0.6042176,-0.28953704,-0.6225209,-0.46202815,-0.19728903,1.1888452,-0.30574548,-0.60744256,0.24185105,0.09551747,-0.13658242,-0.10157433,0.75348276,-0.21045643,-0.14105652,-0.53944755,-0.14949371,-0.14575374,0.27207083,-0.026064811,0.03741069,-0.2877083,0.6023708,-0.07699814,0.5518458,0.1861578,0.48931953,-0.2598686,-0.44289857,0.012354601,0.6494682,0.6089214,-0.03833723,-0.25105482,-0.13773522,-0.16919775,-0.06866314,0.018836765,0.61332875,0.7006451,-0.16584387,0.0391266,0.45793602,0.03113706,0.043246966,-0.23690605,-0.5063171,-0.17712528,0.090468615,0.40133455,0.4070754,0.045272555,0.2282044,-0.017384302,0.25378254,-0.33806425,-0.52250046,0.4759225,0.8932685,-0.38018742,-0.089846425,0.7764376,0.46873072,-0.39381656,0.48480302,-0.96936417,-0.08419835,0.5082966,-0.07308259,-0.7226832,0.17591152,-0.15296794,0.104155414,-0.8386929,0.3933382,-0.4905763,-0.63054943,-0.6184831,-0.27146694,-2.7655213,0.08758883,-0.37031573,-0.19334674,-0.16576576,-0.31954715,0.04966662,-0.7453055,-0.4990287,0.28138086,0.13510627,0.5709579,-0.10197194,0.02602783,-0.44133285,-0.31713244,-0.4238076,0.27111188,-0.056448374,0.34386665,-0.26317695,-0.28958717,0.15127645,0.1229903,-0.43881884,0.040214702,-0.52184826,-0.1522594,-0.13020729,-0.51601404,-0.17009076,0.7063169,-0.2143603,0.2185871,-0.20316811,0.006724863,-0.027110301,0.118225224,0.29997814,0.2685667,0.011619014,-0.048911188,0.10351996,-0.32958275,0.25380608,0.15313727,0.36700144,-0.010959959,0.011765501,-0.11882236,0.5053766,0.5601871,0.10110155,0.8720465,0.24089421,-0.07232481,0.3014166,-0.056134127,-0.31542018,-0.66683614,-0.3984846,0.03279672,-0.3151197,-0.65335435,-0.10838643,-0.22577009,-0.78021187,0.53525966,0.24250437,0.4522913,-0.0077539654,0.32261765,0.44224384,-0.21396503,0.020540418,0.07117728,-0.008130502,-0.44276783,-0.19376937,-0.8346388,-0.26629716,0.20028402,0.5672856,-0.3284272,-0.08543418,0.1925488,-0.38252306,0.16188237,0.23294443,0.15970841,-0.21603526,0.37138966,-0.18203083,-0.530723,0.36656657,0.0130386,-0.0747083,-0.7020133,0.26800784,0.7373388,-0.75187594,0.54779,0.24672385,0.00012571704,-0.5873365,-0.556066,-0.21297717,0.088019855,-0.27078816,0.4558163,0.1780459,-0.5736759,0.19081424,0.19504724,-0.11298385,-0.4766092,0.7740284,-0.18907498,-0.42221645,-0.07945945,0.377703,0.14613798,-0.036916174,-0.06467212,0.279869,-0.31293088,0.29990503,0.32192305,-0.14388345,0.30247042,-0.15400241,-0.061428484,-0.8914812,0.26002917,-0.59263855,-0.19672452,0.17646438,-0.07775727,0.01814328,0.35227582,0.15434024,0.31894004,-0.19646087,0.3158943,-0.088863246,-0.39235947,0.78420395,0.30415523,0.4455325,-0.12806058,0.72117907,0.25317731,-0.3049773,0.43933028,0.17964822,0.5056293,0.13465877,0.6367238,-0.03658025,-0.097478434,0.276597,0.70174104,0.3247329,0.4052432,0.12364486,-0.0643235,0.11611898,0.1627406,0.26066992,0.024745546,-0.5428865,-0.16829287,-0.21055609,0.07430149,0.5434987,0.21361512,0.3044513,-0.04251725,-0.33231437,0.09001466,-0.09453117,0.0017454028,-1.2175651,0.28911862,0.26860315,0.9755001,0.3339178,0.14834021,-0.19493271,0.49172965,-0.12994318,0.04479554,0.22973603,0.31556204,-0.37949362,0.462338,-0.46238822,0.42042568,0.07087792,-0.0415823,0.14418529,-0.05766754,0.373786,0.7011236,-0.24485259,-0.026331257,-0.112055086,-0.21324696,-0.014326882,-0.3870492,0.1927041,-0.40648535,-0.49676597,0.5179711,0.48443422,0.3009117,-0.35053816,-0.022314651,0.04112561,-0.056741823,0.16854304,-0.010919746,0.006209785,-0.08807559,-0.442593,-0.32719895,0.4469782,-0.3796024,-0.15075488,-0.26076657,-0.3499111,0.20956235,-0.07138392,0.19120187,0.04393866,-0.8535855,0.15716022,-0.1542887,-0.4606322,0.13039349,-0.024330692,0.25211623,0.06745883,-0.10294444,-0.19946323,0.35791707,0.1786293,0.90760136,-0.20848916,-0.11899281,-0.50276005,0.023677267,0.16208813,-0.17178501,0.22060975,-0.21888013,0.14759187,-0.46810064,0.15704289,-0.066088535,-0.39533672,-0.1226419,-0.3408171,-0.16144739,0.46528438,0.029514248,-0.18691947,-0.05051315,-0.22322316,-0.3771168,-0.23951702,-0.105332635,0.21769805,-0.050067402,0.14555062,-0.27279136,-0.16686875,0.07482069,0.22632283,-0.0058119134,0.40488634,0.55122143,0.04789792,-0.5345695,0.047538877,-0.1649333,0.48895016,-0.29125038,0.0037236756,-0.018886112,-0.62390083,-0.35972247,0.24883513,-0.21027136,0.46010086,0.11037831,-0.2642066,0.8558107,0.11979075,1.1782933,-0.1710648,-0.59313387,-0.020215718,0.7423738,0.0031941046,-0.09537428,-0.23849815,1.0876517,0.5373407,-0.12502427,-0.08400233,-0.28193653,-0.06101158,0.24058224,-0.18206276,-0.19217712,0.00059187954,-0.6688438,0.031372838,0.29350662,0.41041258,0.20033832,0.0878846,0.09914096,0.5750887,0.10163036,0.48613843,-0.75282156,-0.27429092,0.27188966,0.032298222,-0.04906304,0.13196969,-0.42939213,0.3368651,-0.5846279,0.23694994,-0.4934551,0.1124067,-0.19846968,-0.4179869,0.14454482,-0.09302045,0.43604594,-0.5132527,-0.5316303,-0.17331348,0.4407302,0.14660268,0.17502467,0.56866586,-0.12789711,0.12939677,-0.09218553,0.6287447,0.9370987,-0.17901851,-0.23964876,0.34954703,-0.6300843,-0.8629418,-0.055142257,-0.38323805,0.005257742,0.055216443,-0.28061065,-0.43085334,0.21864952,-0.008094018,-0.29959977,0.068048336,-0.6019113,-0.17652653,0.14505012,-0.22376746,-0.25619653,-0.45126536,0.396375,0.6549024,-0.2945282,-0.47346294,-0.19967417,0.29395926,-0.2801761,-0.66968316,0.033548806,-0.15348844,0.48113757,-0.08860315,-0.4167118,-0.19370036,-0.09671453,-0.43439895,0.06417081,0.049084697,-0.23336744,0.20786247,-0.19078363,0.12345675,0.71513015,-0.13345839,-0.24133882,-0.6789662,-0.4126149,-0.70449823,-0.46221906,0.4146836,0.36818418,-0.08327657,-0.75307995,0.034718994,-0.3867157,0.1332088,-0.13724566,-0.32300013,0.42684296,0.123475485,0.7850748,0.07106393,-1.0283806,0.20646586,-0.0115798,-0.20939945,-0.42524797,0.57256097,-0.010967038,0.7710663,0.10598395,-0.033360694,-0.1658737,-0.41506612,0.31575057,-0.35255063,-0.37106588,-0.6574238,0.2973847 -303,0.4648741,-0.16512807,-0.33638826,-0.20528938,-0.34922075,-0.37682515,-0.18545398,0.37966245,0.33574122,-0.23108497,-0.22175716,-0.018944483,0.23971592,0.54295516,-0.23166387,-0.7887561,0.009957754,0.12387542,-0.5704474,0.67667305,-0.5720644,0.2006996,0.093076035,0.3028045,0.094068095,0.2789696,0.27052978,-0.015732236,0.17403044,-0.09324659,-0.038154658,0.43396994,-0.73007524,0.13070989,-0.1964594,-0.27131087,0.03608334,-0.41160187,-0.13571037,-0.800393,0.097738296,-0.9615974,0.4344858,0.14279975,-0.31433252,-0.13689384,0.3482415,0.33864802,-0.4869844,-0.0006079284,0.16169478,-0.2306524,-0.18174821,-0.35181156,0.16500077,-0.3753956,-0.5710259,-0.13805583,-0.6388073,-0.30580652,-0.30802038,0.1732971,-0.40367842,-0.050741784,-0.15068075,0.46572956,-0.48762062,-0.20171326,0.50790906,-0.08884705,0.44625884,-0.4358382,-0.049829006,-0.060526967,0.4267,0.04646049,-0.2570116,0.550826,0.41275468,0.4176624,0.20966841,-0.48918074,-0.17682186,-0.1968963,0.3419538,0.23730558,-0.24678278,-0.5053977,-0.19442013,0.07712849,0.055791616,0.5489682,0.083901845,-0.2320981,0.029862758,-0.07280535,-0.080094986,0.4519818,0.5145988,-0.2622759,-0.3010051,0.18018574,0.5851133,0.12789582,-0.17284662,-0.06767735,0.02330758,-0.5963123,-0.18005751,0.03434004,-0.09928683,0.64806396,-0.14626494,-0.050857287,0.89542377,-0.14202489,-0.04252078,-0.01167831,-0.006889664,-0.11950894,-0.3724264,-0.22405513,0.21015123,-0.6855395,0.11042103,-0.3094657,0.7356051,0.19805591,-0.8137224,0.2598728,-0.559699,0.20893739,-0.034226708,0.6565732,0.73127204,0.48968077,0.70262426,0.75961655,-0.3864973,0.12282122,-0.062173165,-0.5650118,0.251838,-0.2561513,0.1117347,-0.4783091,-0.03072658,-0.25350267,0.08875757,-0.032166123,0.46107513,-0.48645225,-0.114514515,0.41424116,0.757759,-0.3254534,-0.04186223,0.58233654,1.0672743,1.0099138,0.08010439,1.180746,0.20970191,-0.16469969,0.19998851,-0.16789728,-0.664782,0.18028858,0.32871148,0.046603505,0.24524392,-0.08699436,0.01231955,0.4238384,-0.50761026,0.034383558,0.02249418,0.5647908,0.056389425,-0.23028126,-0.48912686,-0.19815573,-0.064778216,-0.0782123,-0.11541168,0.37973595,-0.101835795,0.23637867,-0.1865543,1.3346435,-0.083826676,0.10381853,0.2111381,0.5823442,0.30898637,-0.034395568,-0.049350914,0.4270589,0.29959103,0.11767345,-0.61260504,0.27381352,-0.4151998,-0.5251075,0.027034678,-0.5463709,-0.055607233,0.07858913,-0.45498234,-0.0145057645,-0.028597264,-0.19033371,0.58024555,-2.6877518,-0.2938913,-0.10078642,0.303489,-0.28841037,-0.0629688,0.0065629897,-0.5598818,0.39406446,0.18628937,0.5714607,-0.6887137,0.55528396,0.5991085,-0.52271754,-0.11049878,-0.65277326,-0.12781559,-0.20801383,0.493271,0.114857204,-0.16554557,-0.09344782,0.27524793,0.87207043,0.093153015,0.3002043,0.4296645,0.17989609,-0.03382369,0.6798242,-0.1587988,0.5133556,-0.202782,-0.21395487,0.20469688,-0.35466173,0.42564493,-0.20022823,0.03476812,0.5380484,-0.4803176,-1.1618528,-0.5914172,-0.4288901,0.93808204,-0.4010855,-0.3765608,0.30215943,-0.23839444,0.13338946,0.046674833,0.6222317,-0.07557407,0.39479098,-0.72743165,0.14152883,-0.002272278,0.07190405,0.15663913,0.0016990831,-0.42595312,0.75814444,-0.040094607,0.5482714,0.2572772,0.11675103,-0.3382005,-0.44961393,0.07505357,0.6445188,0.26905882,-0.041265503,-0.17757207,-0.3093766,-0.10357798,-0.19103721,-0.035327036,0.74806345,0.8582343,-0.18362263,0.10525047,0.16056341,-0.014403133,-0.047532883,-0.16923761,-0.23322178,-0.027406126,0.17153373,0.50955683,0.9042537,-0.25452244,0.2801179,-0.14615537,0.4160214,0.109782845,-0.56721455,0.5541537,0.67040837,-0.08389528,0.03781422,0.5641347,0.6960377,-0.45882273,0.59636116,-0.5283776,-0.20891425,0.80391437,-0.06457179,-0.42879757,0.17040554,-0.36246565,0.034037307,-0.86100703,0.31007987,-0.51179844,-0.38629162,-0.39166778,-0.09063649,-3.402391,0.27159238,-0.17625707,-0.046813205,-0.3320545,0.031871755,0.33597878,-0.7643624,-0.5994126,0.15621215,0.21253936,0.668673,-0.13312843,-0.05543611,-0.375497,-0.30270383,-0.036691338,0.2921552,0.050482895,0.28597838,-0.19132791,-0.44852987,-0.1456363,-0.083977506,-0.54388964,0.24196164,-0.6382189,-0.5051308,-0.14237887,-0.6274283,-0.32495704,0.62272894,-0.39990425,0.107819825,-0.09616424,0.13971573,-0.29655555,0.20464768,0.051355608,0.3445263,0.08230041,-0.09904191,-0.0015924114,-0.23903435,0.47130293,-0.05301875,0.51094407,0.0106063485,-0.082400136,0.2196258,0.5891894,0.7338331,-0.20202534,1.0533772,0.27907425,-0.074802615,0.26942512,-0.38745043,-0.41148165,-0.6675774,-0.47410694,-0.2159009,-0.3673074,-0.4914572,0.12233441,-0.35349414,-0.79525787,0.6483612,-0.013191561,0.4183644,-0.11795162,0.1409329,0.41388416,-0.3223648,-0.030369703,0.008368463,-0.15421858,-0.73022485,-0.25805634,-0.62213045,-0.49185622,-4.5322457e-05,0.6015877,-0.46299696,-0.08637753,-0.124424666,-0.13319932,-0.026422154,0.12365436,0.004083737,0.10207264,0.39749897,0.12471159,-0.58820933,0.52128357,-0.025244895,-0.103259,-0.45142847,0.13856459,0.40738207,-0.7617569,0.91181946,0.39743346,0.070159025,0.0730823,-0.78605753,-0.339522,0.10684305,-0.1171488,0.5072947,0.19746272,-0.8893499,0.4703445,0.4405737,-0.662826,-0.71639836,0.35122567,-0.15983503,-0.45890462,-0.10166817,0.3934949,0.070529066,-0.08600222,-0.20883848,0.28783247,-0.515078,0.199282,0.26988667,0.038644247,0.294812,-0.0128846355,-0.32434002,-0.8969034,0.04715585,-0.60103047,-0.24680749,0.4004028,-0.18081093,-0.28543058,0.1608573,0.27271703,0.29811186,-0.29424745,0.24881037,0.025271488,-0.5091419,0.33390334,0.58973014,0.40031955,-0.40810382,0.52447486,0.19415596,-0.12899981,-0.15783651,0.14328343,0.26726705,-0.0753491,0.53694767,-0.37550342,-0.11546975,0.28639084,0.7661847,-0.00903346,0.4937704,0.08764967,-0.005877942,0.42258042,-0.007089982,0.23772722,0.0452234,-0.43098563,0.15838835,-0.16822958,0.1094327,0.5660355,0.30313483,0.19583939,0.33103612,-0.12754656,-0.022615762,0.45455128,-0.027574796,-1.3575407,0.5609754,0.31699422,0.76404405,0.67690605,0.22979297,-0.19034794,0.66006845,-0.2238968,0.085810535,0.53878295,0.011382433,-0.61181027,0.9074096,-0.6433788,0.3543984,-0.103126444,-0.0875783,0.093232796,0.17820057,0.4204806,0.72385305,-0.049665146,0.04310694,0.020096563,-0.16153343,0.10524988,-0.5246471,-0.120999604,-0.3220312,-0.4344892,0.6738459,0.5011865,0.45979336,-0.16261776,-0.085122734,0.05038884,-0.28117415,0.33015913,-0.2376779,-0.055070955,0.25265467,-0.4240803,-0.14038637,0.58157134,-0.040232375,0.15415595,-0.25714538,-0.05624021,0.08670178,-0.2254309,-0.12936115,-0.059044957,-0.8660908,0.08852335,-0.43860304,-0.38748354,0.63236016,-0.4125727,0.04341372,0.16170527,0.15081325,-0.1088229,0.31501836,0.091711245,0.6165912,0.013578672,-0.30725625,-0.22653148,0.10611402,0.061903503,-0.31578147,0.08842276,-0.36887354,0.12308378,-0.5036528,0.6735988,-0.07463885,-0.3567686,0.04264905,-0.316669,-0.17444007,0.5853949,-0.23120962,-0.33495125,-0.16556923,-0.16143742,-0.2656535,-0.22068049,-0.17782895,0.33092272,0.089445114,0.041172743,0.0370688,-0.28433374,-0.048944823,0.6188476,-0.040165484,0.4546076,0.24451481,-0.10552113,-0.13390413,0.10702476,0.2815937,0.48931196,0.13484806,-0.041948613,-0.5201488,-0.20546755,-0.39595604,-0.22292784,-0.1501534,0.27123407,0.096815,-0.15231197,1.027493,0.09020612,1.2334862,0.0861147,-0.43138164,0.07567159,0.59109783,-0.11230003,-0.037378386,-0.37429377,0.8573228,0.6183976,-0.21361366,-0.10161387,-0.5086405,-0.01743864,0.29970476,-0.4447641,-0.103708915,0.05848699,-0.47306645,-0.28083932,0.14308462,0.32003802,0.19152705,-0.0606489,-0.14038421,-0.060459215,0.24060948,0.4259513,-0.6469046,-0.19618091,0.19769284,0.4105152,0.07063143,0.09095231,-0.37351125,0.48002243,-0.6532039,0.30161548,-0.5667676,0.10270249,-0.4229169,-0.43607858,0.118593745,-0.059827182,0.27980363,-0.18120201,-0.31083208,0.06628377,0.37574273,0.13708374,0.21299829,0.76549584,-0.30144906,-0.0008304073,0.12357703,0.63130164,1.2112659,-0.55643815,-0.19169666,0.23487781,-0.46721146,-0.7200527,0.4442794,-0.48552328,-0.068246916,-0.22141185,-0.5537593,-0.7347142,0.052241333,0.15974593,0.0666644,0.091302596,-0.6812363,-0.16822568,0.30197442,-0.38300616,-0.30602878,-0.2302571,0.5043164,0.8262275,-0.2966277,-0.3829289,0.016023828,0.1270304,-0.20919728,-0.46251935,-0.06312752,-0.14939083,0.340349,-0.0063470784,-0.31063557,0.018542558,0.17240638,-0.42647713,0.07417952,0.291244,-0.18573496,0.31063417,-0.28064877,0.021472178,1.0287845,-0.23030978,-0.1633628,-0.46899706,-0.53948444,-0.92510957,-0.37150973,0.4779158,0.06282313,0.07535934,-0.29334,-0.006380017,-0.045499068,-0.06411804,0.027989324,-0.39620987,0.25285158,0.050961412,0.5404214,-0.17423996,-0.77558064,0.08683644,0.2596536,0.06700484,-0.6872202,0.69075406,-0.2747651,0.88920856,0.010796685,-0.1912191,0.047421787,-0.40447652,0.076822795,-0.40438583,-0.026328702,-0.69104725,-0.05597863 -304,0.3058379,-0.1556239,-0.5409863,-0.24325302,-0.17711471,0.0018576934,-0.12324579,0.08489941,0.19743249,-0.20556958,-0.059175346,-0.19982089,0.053835772,0.5520785,-0.078544706,-0.8998862,-0.14380886,0.07522872,-0.6775067,0.35065746,-0.5008762,0.2533513,0.14517382,0.5046208,-0.010323318,0.3118525,0.32755274,-0.16381034,-0.025252085,0.064576074,-0.27682677,0.21331406,-0.6537129,0.051575206,0.17163165,-0.21494436,0.036313623,-0.29432285,-0.25667667,-0.6678458,0.41933548,-0.87905854,0.296563,0.15381888,-0.36403844,0.24107958,-0.14878127,0.30352402,-0.53450304,0.049448308,0.07708561,-0.31953877,0.06727097,-0.1685604,-0.09394952,-0.41230446,-0.4818806,0.0830502,-0.5194701,-0.26704085,-0.25550646,0.075081386,-0.39491203,0.035586834,-0.2828065,0.24667613,-0.545478,-0.20125414,0.33455795,-0.2124442,0.2804298,-0.2768954,-0.12211358,-0.1428111,0.30125368,-0.0452592,-0.18921243,0.2579853,0.33765456,0.58086514,0.08918809,-0.24686524,-0.15406567,-0.046845064,0.23103414,0.40449172,-0.08765503,-0.43787172,-0.23481444,-0.19628134,-0.00086033344,0.34820002,0.008281715,-0.56440216,0.04398732,0.15044202,-0.18769155,0.101052575,0.41659722,-0.37557933,-0.20890018,0.27278057,0.48039946,0.075623974,-0.107785575,0.103138514,0.011843816,-0.54490876,-0.2915899,0.28408232,-0.0975539,0.6988183,-0.10479967,0.2007023,0.7624825,-0.19693811,0.12699112,-0.3488705,-0.28718567,-0.23144317,-0.2902704,-0.0793557,0.2330521,-0.44333854,0.16264145,-0.31297448,0.69511867,0.18247503,-0.87692523,0.38629156,-0.5164745,0.2964607,-0.25963575,0.73992735,0.6552808,0.23668583,0.36819422,0.83908856,-0.67257017,0.053379618,-0.04044215,-0.49016497,0.059538763,0.021320347,-0.0028620064,-0.3931596,-0.05657739,0.02058396,0.0007517086,-0.014778852,0.0023788488,-0.36473566,0.07350773,-0.024503928,0.5328853,-0.43563905,0.061608728,0.7743744,1.013361,0.85072076,0.1769908,1.1874816,0.4346692,-0.16863559,0.2725188,-0.23963386,-0.6470639,0.0709679,0.4505214,0.3871908,0.2793229,0.008316434,0.17990293,0.44627178,-0.2606708,0.22937539,-0.22583853,0.15734197,-0.02563041,-0.07074605,-0.49181396,-0.22865292,0.017043391,0.04530189,-0.122609705,0.2624017,-0.069243535,0.40687844,0.10241675,1.4347373,0.09422595,0.14750545,-0.0638276,0.40486887,0.19696042,-0.14449474,-0.16654465,0.39117724,0.4322022,-0.085753925,-0.7245074,0.09452866,-0.18773247,-0.508241,-0.15154055,-0.45146748,0.07929742,-0.083663,-0.4720097,0.0028078442,0.16260967,-0.33835074,0.46399102,-2.4090345,-0.0967629,-0.23626849,0.23842093,-0.21521927,-0.25006962,-0.022617463,-0.30361846,0.2704696,0.48050097,0.22256204,-0.72617,0.27866188,0.30926582,-0.13505462,-0.09281639,-0.69171894,-0.08217573,-0.06341683,0.27788416,-0.021599503,-0.05267708,-0.12493241,0.30727768,0.5715611,0.038837187,-0.07606644,0.14194681,0.3324348,0.13499689,0.5812077,0.23671624,0.5628203,-0.09728238,-0.13372271,0.31899133,-0.18663344,0.3793938,0.09725721,0.25552255,0.18153678,-0.46688133,-0.8035554,-0.73218125,-0.6434626,1.2953525,-0.59422815,-0.364658,0.35851416,0.090177245,-0.15724032,-0.021515576,0.473042,-0.17727885,0.039408945,-0.69823676,0.11144286,-0.043312643,0.26049554,-0.041345358,0.07045642,-0.22813934,0.6376243,-0.17015727,0.38507235,0.49729654,0.13951613,0.028952671,-0.54142773,0.12698579,0.7822056,0.24405473,0.010495369,-0.15081552,-0.22231524,-0.017358629,-0.15705895,0.16438235,0.35729977,0.9172655,-0.024138134,0.054838262,0.2562988,-0.08605485,-0.07110222,-0.03756591,-0.26117572,0.07328292,-0.008960476,0.517248,0.55876917,-0.11744178,0.31052622,-0.19159888,0.24351303,-0.02176421,-0.46542004,0.6207381,0.923645,-0.10209696,-0.09152404,0.61075187,0.50550747,-0.44696173,0.37927902,-0.5504979,-0.104691654,0.7283064,-0.0028427702,-0.426943,0.13785706,-0.29811662,0.032670055,-1.0358104,0.13146277,0.024230052,-0.3645503,-0.39648598,-0.07115343,-4.5157537,0.24768089,-0.2487621,-0.20089494,-0.110201046,-0.2631065,0.41845196,-0.57236505,-0.5828475,0.12981084,0.03323801,0.41287228,-0.023016023,0.148185,-0.356936,0.045139953,-0.21281508,0.16589385,0.07762062,0.20974873,-0.05366717,-0.39486995,-0.052942015,-0.2913295,-0.62504375,0.11712472,-0.38254073,-0.5506036,-0.24781737,-0.4709563,-0.38013157,0.59699273,-0.31465477,-0.056852184,-0.24313857,-0.097238116,-0.33615956,0.4018167,0.2428337,0.31517547,0.09539977,0.1157138,-0.32912084,-0.35745448,0.10353327,0.06166138,0.2431817,0.21734351,-0.09614064,0.1370813,0.49030507,0.67426044,0.03183379,0.5303016,0.38704604,0.040872496,0.22239639,-0.46982008,-0.22069965,-0.7617193,-0.5425686,-0.2846718,-0.4028155,-0.6450794,-0.2759123,-0.26019222,-0.73577726,0.42829126,0.0118036885,0.07826264,-0.061547086,0.17470981,0.3746075,-0.052969053,-0.021258144,-0.20518658,-0.10989688,-0.6273502,-0.35511371,-0.7126652,-0.5743733,0.21240237,0.85240227,-0.064808324,-0.19537805,-0.10352809,-0.33231178,0.08974747,0.0353443,0.20490687,0.4107649,0.36661085,-0.11731928,-0.6407791,0.5646465,0.02221045,-0.109316655,-0.65611196,0.04126466,0.6548029,-0.7636581,0.65451837,0.29724962,0.1566614,0.2445154,-0.42862958,-0.52811056,0.0918701,-0.25123596,0.53304935,0.1636296,-0.6242508,0.4529494,0.27483246,0.064915344,-0.653134,0.44933012,-0.04917042,-0.23953086,0.2654929,0.30791855,-0.21362135,-0.055603854,-0.14146766,0.08855089,-0.4398443,0.25748345,0.59681386,0.18958661,0.3557803,-0.04153844,-0.17915915,-0.5828367,-0.025101505,-0.6044301,-0.15408665,0.14204942,0.02014914,0.0544476,0.11118833,-0.1500551,0.43877652,-0.36166096,0.15264112,0.08317527,-0.18453696,0.28638917,0.49593508,0.1561289,-0.5163398,0.5846666,0.039246935,0.031699207,-0.18810298,0.022275753,0.5320658,0.35002086,0.29260293,-0.16551341,-0.13870662,0.1468348,0.5973662,0.2049186,0.4872545,0.17774184,-0.036772404,0.4710766,0.26697636,0.15134963,0.025394747,-0.13842425,0.1306037,0.11459185,0.17974475,0.47169283,0.1868886,0.3566044,-0.026861113,-0.15990724,0.22661148,0.21881422,-0.14128709,-0.8990792,0.3892765,0.28576767,0.44880554,0.75404304,0.02511334,-0.04300775,0.36676705,-0.47169986,0.14494325,0.29850584,0.055804566,-0.7091744,0.6703459,-0.6027857,0.29924035,-0.1569811,-0.062783495,0.15556376,0.24928239,0.25830346,0.76494545,-0.007429453,0.06617788,-0.09771147,-0.15275168,0.05491024,-0.42271,-0.0034903747,-0.5218497,-0.35267007,0.39256185,0.36103228,0.32429904,-0.28081608,-0.12205525,0.12495257,-0.16696641,0.037568763,-0.12587167,0.12373541,0.16690944,-0.6697206,-0.5867529,0.59652895,-0.28391498,0.009160883,-0.037730437,-0.48263183,0.20837352,-0.32237956,-0.26370573,-0.019667387,-0.68392956,0.18318231,-0.30904478,-0.360906,0.14847194,-0.5799515,0.38584077,0.17808339,0.025181677,-0.3685851,0.07794098,0.037573017,0.9042369,0.07002722,-0.15564157,-0.44369,0.09224547,0.3704311,-0.25048226,-0.116360076,-0.37215474,-0.10360896,-0.4579902,0.4322552,-0.007619812,-0.2279531,0.026591122,-0.12251715,-0.13227859,0.4921495,-0.3634469,-0.17386173,0.045203157,-0.064893946,-0.2158952,-0.052795522,-0.4170714,0.26096433,-0.02962459,0.112506874,0.18673088,0.04945677,-0.016921034,0.44651872,0.06923548,0.25501573,0.2102196,-0.23431015,-0.37055457,-0.12436405,0.060718235,0.19804558,0.15000273,-0.01837769,-0.30283278,-0.37224102,-0.18493924,0.08098699,-0.25554365,0.28341198,-0.040971436,-0.44944668,0.68641484,0.22168233,1.2412751,0.07336152,-0.31511334,0.0875051,0.4278494,0.12993316,0.10009417,-0.24353899,0.7697357,0.509393,-0.120136455,-0.31244066,-0.33966047,-0.30910093,0.23784825,-0.21146637,-0.0760016,-0.011934102,-0.61213523,-0.33192366,0.10035539,0.3338723,0.16274048,0.17599896,0.005899842,-0.017301457,0.09761793,0.5817868,-0.41081348,-0.11851515,0.27689824,0.08584769,0.11586975,0.2501702,-0.19082625,0.51792634,-0.587145,0.12405607,-0.63282835,0.057670303,0.15815815,-0.24720448,0.12271209,0.0025218038,0.36624497,-0.20948723,-0.27836412,-0.27231228,0.81923485,0.3257075,0.33500415,0.8554911,-0.1725534,0.112247705,0.15013419,0.5431284,1.2372197,-0.13267261,0.056861307,0.2521898,-0.22512099,-0.5249501,0.24653003,-0.20627047,0.07203801,-0.18181099,-0.3933318,-0.5412486,0.2533795,0.043759346,-0.13483393,0.1885212,-0.49424738,-0.30433467,0.5274813,-0.27166316,-0.3342398,-0.5052194,0.44386628,0.7435796,-0.52024466,-0.31678474,0.04691244,0.09250045,-0.17184673,-0.41560012,0.055864327,-0.20075665,0.35290357,0.13212651,-0.37176555,-0.01951081,0.30972993,-0.32216355,0.2002897,0.32151362,-0.20898056,0.19983569,-0.032291017,-0.14808336,1.1457375,-0.02217224,-0.12145496,-0.8144157,-0.5017439,-0.9511967,-0.44627625,0.6226879,0.0783553,0.04038942,-0.47912616,0.04571649,0.09119276,0.11468521,0.057020005,-0.41836765,0.33208826,0.084348455,0.6403438,0.11233669,-0.7758864,0.021124033,0.0292161,-0.11480265,-0.5030729,0.64245427,-0.17887828,0.64166516,0.0063079847,0.057657257,0.027065726,-0.55254734,0.22178903,-0.3935177,-0.26608503,-0.6737449,0.13409077 -305,0.43493503,-0.09905829,-0.58263934,-0.0689099,-0.260718,0.03987533,0.15705337,0.81913793,0.4617213,0.024292722,-0.049894504,0.029540747,-0.1482425,0.29664788,-0.023657821,-0.61507237,-0.0784638,0.07001223,-0.39458996,0.6130882,-0.2427571,0.25030524,-0.32327864,0.6106838,0.33194378,0.37143156,-0.079423085,0.23448646,-0.14698353,-0.37004387,-0.1264443,0.12684771,-0.6998662,0.32801354,-0.052678093,-0.18000671,0.14967959,-0.37720406,-0.40340096,-0.57203054,0.23492807,-0.6603376,0.40586448,0.07821731,-0.07567279,0.101643026,-0.0023965603,0.09523606,-0.21162593,-0.23484097,-0.08623694,-0.039368693,0.21981163,-0.4537663,-0.4349345,-0.49005297,-0.47514024,0.013192609,-0.56357837,-0.19343913,-0.42763445,0.1391235,-0.26441494,-0.272028,-0.093601406,0.6481223,-0.2704752,0.43430558,-0.06281307,-0.2103981,0.06579533,-0.4865994,-0.15018308,-0.078117564,0.15700376,-0.047027454,-0.2545095,0.3197887,0.11549288,-0.09554404,-0.014458746,-0.17155418,-0.51218176,-0.01403245,-0.1941921,0.32412505,-0.02320221,-0.5193161,-0.03745476,0.19594505,0.14110973,0.36970353,0.35214207,-0.07888218,-0.03678843,-0.060710035,-0.12627587,0.96031404,0.33565617,-0.3609262,-0.261773,0.56180704,0.35668254,0.13045457,-0.23156862,-0.25325477,-0.13616097,-0.4757539,-0.15934038,0.19345897,-0.26048186,0.49178118,-0.13846946,0.08252885,0.5737326,-0.32984105,-0.27190566,0.27235416,0.10564799,-0.054969527,-0.43788302,0.077280544,0.25586766,-0.47235632,0.22492185,-0.04872848,0.849785,0.14307308,-0.5586843,0.2278569,-0.7552885,0.058683015,0.027591944,0.373326,0.5431777,0.68222535,0.15100867,0.7593171,-0.3830459,0.102362074,-0.22874875,-0.5203027,0.23049155,-0.20804167,-0.18828474,-0.5203372,-0.041604392,0.16374926,-0.2460509,0.34124973,0.2920251,-0.5561452,-0.32871613,0.58465606,1.0048021,-0.16326974,-0.43221533,0.6894893,1.1721169,0.9395941,-0.08940079,0.84857434,-0.25885326,-0.14450234,0.41274318,-0.14474541,-0.7090199,0.2850614,0.15211105,-0.55723035,0.33903915,0.01918695,0.050472047,0.05594208,-0.18896224,-0.017838486,0.025472175,0.5762774,0.27394712,0.04201609,-0.04783167,-0.4888594,-0.0908283,0.0928209,0.32111806,0.339189,-0.13539739,0.19552156,-0.18218535,1.4959154,0.20604044,0.10875858,0.10344117,0.92401165,0.42945725,-0.061506104,-0.026900798,0.67480016,0.058186334,0.4857434,-0.46183494,0.27118063,-0.38913685,-0.43941453,0.07173209,-0.39669722,-0.08751802,-0.0040282086,-0.4054368,-0.25763902,-0.1726339,-0.14525339,0.7781583,-2.993023,0.18521202,-0.09269063,0.39988112,-0.29926226,-0.45992184,-0.008800603,-0.48374507,0.15350688,0.26310402,0.5138072,-0.6005209,0.059567567,0.39400604,-0.6322442,-0.18153328,-0.3946529,0.40123984,-0.08997249,0.51353645,-0.15941373,0.11665394,0.14055932,-0.08359256,0.80665445,0.27503124,0.14680341,0.45538116,0.29019028,-0.3670627,0.6354198,-0.092221834,0.58078235,-0.30828393,-0.18060821,-0.027085092,-0.60008174,0.58299524,0.023703411,0.080897555,0.5915402,-0.3545093,-0.9820642,-0.3242234,0.16335028,1.3395276,-0.3247761,0.01881501,0.17185551,-0.32744357,-0.28037074,-0.21719666,0.5236677,-0.21395105,0.0829639,-0.21195523,0.046005897,-0.17842971,0.23663545,-0.03940673,-0.14591253,-0.212343,0.6302156,0.12304175,0.29846078,0.014745042,0.12656417,-0.7901813,-0.63885397,0.09830996,0.6306382,0.3367184,-0.028926127,-0.16676874,-0.25647974,-0.39126605,-0.10024588,0.3295923,0.905835,0.4528455,-0.21390852,0.09478749,0.5211614,0.080693245,0.047045246,-0.07057983,-0.29266018,-0.32447273,0.06923129,0.43355104,0.9601258,-0.007929027,0.60506535,0.09696873,0.18368125,-0.3074751,-0.50268275,0.57479584,0.78303725,-0.27522376,-0.34851626,0.4103283,0.45818853,-0.565883,0.40777254,-0.42119676,-0.27177808,0.5414201,-0.14633,-0.42771864,-0.019549578,-0.10732232,-0.44209823,-0.8368415,0.08952826,-0.43707892,-0.58170795,-0.32940513,-0.09719607,-3.7053528,0.18248427,-0.24138933,-0.28703997,-0.14938997,-0.11061427,-0.24669218,-0.643135,-0.4310909,0.12718436,0.14954247,0.5445932,-0.2583374,0.20632279,-0.31333655,-0.38458985,-0.65331745,0.48936927,0.23122749,0.42771834,-0.07594142,-0.33379358,-0.13230832,-0.031527326,-0.47461307,0.15109646,-0.4934207,-0.07246483,-0.15229265,-0.98608595,-0.1740628,0.73069525,-0.34858805,-0.04074741,-0.12896776,0.21985616,0.17817678,0.07043134,-0.1861038,-0.051308714,0.2268143,-0.2077089,0.10708968,-0.4335987,0.22443576,-0.058845013,0.76016974,0.13375485,-0.03466413,0.19765642,0.47983712,0.5151298,-0.103128456,0.79948944,0.1378938,-0.14511895,0.3515126,-0.065824725,-0.07766885,-0.55179715,-0.1740843,0.04129667,-0.24280322,-0.41355252,0.111585446,-0.37072974,-0.7356129,0.5534227,0.14524461,0.50295687,-0.031372406,0.5191221,0.64995396,-0.38193995,0.12100359,0.013980205,-0.047630783,-0.5289059,-0.24890026,-0.45871046,-0.27978754,0.46344882,0.5005201,-0.5158616,-0.3543812,0.094613194,-0.26202106,0.038357675,0.18616498,-0.18907602,0.056247685,0.38662115,0.0372129,-0.46123832,0.38639072,-0.20992792,0.06184178,-0.60134065,0.51901853,0.48274624,-0.7079698,0.60927284,0.11241095,0.054007936,-0.3864901,-0.48836297,-0.027197119,0.002731964,0.00025046477,0.20701809,0.37183616,-1.2530277,0.18645473,0.15669149,-0.42591333,-0.634917,0.60821724,-0.21968925,-0.23911458,-0.51487595,0.40836257,0.46295327,0.04108006,-0.40491128,0.18963532,-0.3045889,-0.017192677,-0.02006286,-0.09894599,0.06532664,0.07303366,-0.19670494,-0.65631145,0.27981597,-0.4423408,-0.38114014,0.69549704,0.054729998,-0.0774388,0.12019413,0.18645848,0.08574135,-0.16135901,0.19135627,-0.08247337,-0.35360232,0.6328145,0.3563664,0.8402404,-0.5695976,0.50181067,0.20153923,0.05587782,0.39316875,0.21788111,0.36948714,-0.03762573,0.5262793,0.48101872,-0.39114904,0.17302701,0.37473333,0.14617217,0.40639055,0.098400116,0.14154747,0.04292074,0.06905417,0.32376295,0.009319164,-0.7554773,0.09880294,-0.3908664,0.07774973,0.3306666,0.034264177,0.04809562,0.13657549,-0.10720721,-0.0022883909,0.10968934,-0.07176326,-1.0574473,0.27696386,0.17132513,0.8815309,0.3523485,0.16549107,-0.17643909,0.82315326,0.07219203,0.10529198,0.5015154,0.25414696,-0.3826247,0.49957097,-0.80428594,0.8496993,0.27791604,-0.09935712,0.18936832,-0.108519554,0.42319095,1.047822,-0.25147727,-0.288878,-0.0375253,-0.25347942,-0.03429912,-0.3950941,0.32552394,-0.6378467,-0.27006865,0.5198079,0.44320872,0.23975676,-0.15373632,-0.14030448,-0.010430237,-0.12710606,0.08027834,-0.16008997,0.15917382,0.17963779,-0.5274964,-0.13304496,0.49499044,-0.054238252,0.23940788,-0.006595336,0.1864778,0.544331,-0.24367797,-0.14174132,-0.02963107,-0.7494844,0.32934284,0.11862853,-0.5050046,0.47667125,-0.30777115,0.37012726,0.22215506,0.1212613,-0.27212334,0.55230635,0.3582595,0.75192285,-0.31426358,-0.1801091,-0.5893757,0.34874967,-0.028988076,-0.10922392,0.22955215,-0.101973385,-0.21263471,-0.60580516,0.08439183,-0.16286571,-0.564301,-0.51920825,-0.18002395,0.034020633,0.66437906,0.11822731,-0.18305036,-0.34253758,-0.37718162,-0.31852978,-0.1285241,-0.05391913,0.28269702,0.02153087,-0.14289229,-0.05710553,-0.183666,0.17107856,-0.0838224,-0.08729971,0.33802706,-0.065415174,0.1367939,-0.20722017,-0.1669086,0.2689959,0.5897646,-0.27288455,0.15317512,-0.018502362,-0.21242633,-0.5693413,0.003298793,0.033754624,0.49095923,0.07641205,-0.3259065,0.41186875,-0.1543584,1.370656,0.0066183684,-0.40064213,0.30283275,0.74466884,0.20203696,-0.09218802,-0.3656243,1.3785957,0.48506272,-0.15119074,-0.19306678,-0.26455423,-0.2120301,-0.034057595,-0.36777022,-0.24622996,0.12579961,-0.36086494,0.10776363,0.23699123,0.18327643,0.2964375,-0.020357795,-0.20742781,0.54356486,0.092319176,0.18152384,-0.34476274,-0.22037956,0.13523328,0.43519568,0.06890762,0.10227548,-0.4137208,0.19905035,-0.63342094,0.4127804,-0.12426183,0.3373223,-0.48047292,-0.52943206,0.14278539,-0.09462628,0.5761486,-0.33863807,-0.44219422,-0.47149014,0.35018945,0.33969948,0.3353356,0.60495436,-0.26003417,-0.16453516,-0.074343555,0.40598607,0.7007662,0.099584125,-0.455369,0.28460562,-0.5644698,-0.8051828,0.35267687,-0.34834915,0.23014088,-0.14408752,-0.010398883,-0.262775,0.27315196,-0.034904823,0.23141195,0.09691333,-0.85916996,0.017324708,-0.039190218,-0.083144836,-0.15899451,-0.2261366,0.24043596,0.9331118,-0.05485695,-0.5362553,0.30044383,-0.032666728,0.07638412,-0.4307991,-0.15211904,-0.36999264,-0.067460716,-0.07900191,-0.45291555,-0.35847753,0.051606834,-0.5549042,0.18996562,-0.28796554,-0.28051388,0.27905813,-0.09181823,0.0527455,0.6249302,-0.43832514,0.21972781,-0.34134537,-0.7244289,-0.50815666,-0.33106127,0.17896849,-0.19231327,0.0026092902,-0.57539415,-0.049069922,-0.36431944,-0.44474274,-0.23004058,-0.47260126,0.20958859,-0.039553583,0.21264651,-0.085733235,-1.2009139,0.43592447,0.22430673,0.09662599,-0.9560662,0.20675212,-0.49113777,0.6871876,0.00090380386,-0.0025846194,0.45841676,-0.5129151,-0.051927842,-0.2536291,-0.055096727,-0.46359196,0.28266728 -306,0.33371475,0.11158384,-0.53515214,-0.1431583,-0.24885668,0.15911151,-0.2230521,0.4590478,0.03518242,-0.3477736,-0.016414702,-0.16157445,-0.09240887,0.28703073,-0.276961,-0.4673312,0.13589321,0.06290592,-0.41021493,0.26993212,-0.372364,0.4501934,-0.09427656,0.28907233,0.07375,0.23105863,0.019775586,0.01685011,-0.05051737,-0.30115727,-0.22629295,0.21739434,-0.5953857,-0.023863077,-0.2421745,-0.36089116,0.05151894,-0.45082864,-0.3320354,-0.6338858,0.16273186,-0.78298265,0.69223243,0.03498051,-0.23771814,0.36347955,0.20573643,0.29908586,0.09287257,-0.0066627073,0.14659235,-0.27815965,0.04101376,-0.15900697,-0.46363956,-0.4970005,-0.58836544,-0.096149795,-0.622941,-0.20647232,-0.26425117,0.1060019,-0.26590484,-0.068681195,-0.08599714,0.26362014,-0.361597,-0.018263394,0.04860028,-0.0838109,0.26591754,-0.6708721,-0.2171809,0.072707586,0.26400787,-0.30762625,-0.08055886,0.3436105,0.28461638,0.45547765,-0.15474252,-0.15105523,-0.34525925,-0.08013809,-0.017177891,0.6519942,-0.23194166,-0.0021563831,-0.06977234,0.118584685,0.38934988,0.4148378,0.17452654,-0.027003406,-0.15818289,-0.012411258,-0.17962895,0.22179745,0.43853834,-0.32139423,-0.2192341,0.5096659,0.46225137,0.22091722,-0.022899896,0.2605277,-0.13567623,-0.45571342,-0.12526101,-0.009191019,-0.20422281,0.42833424,-0.09055793,0.25212005,0.54119575,-0.11679753,0.09630853,0.09836701,0.019483238,0.15205468,-0.13665865,-0.32220533,0.33632904,-0.65693337,0.23003037,-0.12840216,0.4738529,0.16167977,-0.8121945,0.312666,-0.4658665,-0.031425785,0.04261457,0.4260551,0.617454,0.56917226,0.18509862,0.57391006,-0.52736497,0.08413102,-0.012637751,-0.16502984,0.13810709,-0.043013006,0.05339052,-0.5249282,-0.08737522,0.08177199,-0.117554285,0.288033,0.18214193,-0.4519861,-0.08593068,0.29297042,0.64518374,-0.31083468,-0.04933432,0.6420519,1.13583,0.99344146,0.085832015,0.8297904,0.10833415,-0.06465678,-0.046762984,-0.15326981,-0.63130724,0.16993129,0.36162403,-0.35277742,0.4005864,0.13894211,-0.012543614,0.1788788,-0.22058178,-0.24991842,-0.09141064,0.23652805,0.0595279,-0.2657549,-0.39571956,-0.18448721,-0.034917127,-0.12231706,0.13201283,0.30638984,-0.17753956,0.4471548,0.19043145,1.2595685,0.031270254,0.116309576,0.1385599,0.47707638,0.1926231,-0.12004153,-0.10532495,0.2998157,0.1832827,0.21845235,-0.39102316,0.0053152037,-0.2781551,-0.58022785,-0.2039142,-0.3295175,-0.030090123,-0.13644895,-0.25756413,-0.23943932,-0.056909077,-0.34079567,0.575147,-3.0195904,-0.019618485,-0.09825909,0.3385938,-0.19570102,-0.39209336,-0.08148073,-0.428205,0.5300029,0.36125502,0.2729172,-0.4345444,0.2739929,0.46551016,-0.39933437,-0.17197187,-0.5168829,-0.13289328,0.08757203,0.17937039,-0.0002454434,-0.18805812,0.03313465,0.18613802,0.33442444,-0.08778568,0.1546746,0.12428124,0.26762363,0.060565185,0.40552887,-0.021698087,0.45946524,-0.12657072,-0.193168,0.29785377,-0.39485094,0.20109232,-0.056444645,0.20552401,0.3227162,-0.3850278,-0.71817917,-0.3953683,-0.22419007,1.1770288,-0.13641308,-0.38046613,0.2653994,-0.049407143,-0.3712552,-0.100209154,0.28252226,-0.25253204,-0.019555632,-0.698113,-0.07442724,-0.20011587,0.25950083,-0.04454401,0.140057,-0.51327145,0.4390573,-0.07703047,0.4413465,0.31492653,0.24444135,-0.3637185,-0.44252723,-0.14312562,0.851222,0.5940493,0.06209197,-0.15321536,-0.108522125,-0.2322723,-0.16831386,0.29108542,0.42361742,0.72746724,-0.12245191,0.08700323,0.16866527,0.042261474,0.20212267,-0.16737595,-0.1801307,-0.06853937,0.07560652,0.44546914,0.4264889,-0.06268855,0.5129328,-0.057723675,0.19705343,-0.32337007,-0.46275,0.29259858,0.7702688,-0.16755164,-0.26072088,0.6679697,0.30180869,-0.15114126,0.3659415,-0.6464747,-0.4138063,0.604631,-0.15663059,-0.5422247,0.12213992,-0.21720354,0.07573021,-0.7630543,0.24221097,-0.35106155,-0.54191667,-0.48045403,-0.16132975,-2.514414,0.081910275,-0.21530285,-0.16759281,-0.09560299,-0.3087924,0.18274911,-0.5863036,-0.6907305,0.20418583,0.070121914,0.7562548,-0.08213006,0.057513922,-0.17194545,-0.53775764,-0.46975735,0.25803736,0.14667559,0.27063885,0.071819015,-0.2576236,-0.06512089,-0.073992245,-0.4761946,0.068442024,-0.5236276,-0.43550706,-0.25592044,-0.4724905,-0.17472291,0.58944905,-0.3320494,-0.04858281,-0.30335164,-0.045208063,0.045471728,0.14765692,0.17279734,0.21394439,0.091924906,-0.058864716,0.13939619,-0.29145914,0.22239457,0.15875323,0.3653548,0.49080542,-0.13472061,0.030159926,0.47590184,0.70287895,-0.17007816,0.7267291,0.20918725,-0.16773936,0.3891242,-0.35047913,-0.23911296,-0.5284874,-0.29513216,0.012462914,-0.35512066,-0.42241248,-0.15078224,-0.31372145,-0.69831026,0.6118185,-0.08783182,0.2926928,-0.216478,0.53169143,0.3214795,-0.2992155,-0.06586356,-0.08777793,-0.026875125,-0.28213987,-0.32778645,-0.5882329,-0.5005606,0.04639984,1.0001848,-0.26540273,0.08188985,0.19261134,-0.08680528,0.113712475,0.01722874,0.09286536,0.10236318,0.2766216,-0.060996242,-0.5923513,0.47379535,-0.12943108,-0.13952656,-0.60345757,0.038384464,0.6517928,-0.42503136,0.3518016,0.38642433,0.096681006,-0.17683141,-0.83941746,-0.0725911,0.013145952,-0.37110752,0.31338733,0.21867791,-0.7639379,0.45907408,0.39937893,-0.2825378,-0.52306587,0.49984068,0.04587425,-0.22717465,0.13100013,0.3882623,0.17747347,0.044011924,-0.014801239,0.22973098,-0.36475116,0.3302671,0.4312897,0.012514838,0.44098207,-0.27534243,-0.1812013,-0.6696375,0.10978072,-0.3890756,-0.32268763,0.15075435,-0.088448405,0.0028064805,0.34956017,0.15372232,0.3418693,-0.46775368,0.1317881,-0.120236434,-0.19906375,0.2892898,0.3816337,0.4936585,-0.37770906,0.5510802,0.06873248,-0.1419793,0.0063326783,-0.12339784,0.56120837,-0.031043043,0.21047327,0.2242953,-0.30333015,0.09540006,0.6436364,0.10930569,0.17275847,0.12654561,-0.05611991,0.036185544,0.01977353,0.08720497,0.167769,-0.47613588,0.017721491,-0.18690434,0.09169441,0.46326095,0.065665625,0.29501405,-0.19718711,-0.058613557,0.02007243,0.1996021,-0.14736061,-0.99554586,0.3170431,0.13012259,0.76516014,0.2636588,0.26035222,0.04947849,0.44557327,-0.23003791,0.02397049,0.24254544,0.13137801,-0.39425626,0.4817818,-0.6820537,0.4127274,0.12586974,0.0678404,-0.033721846,0.095586024,0.43637195,0.97327614,-0.20068853,0.09607091,0.023779929,-0.2302134,0.18849257,-0.18234818,0.10121626,-0.2770701,-0.13181046,0.7054545,0.2825997,0.24369483,-0.16389892,-0.041227635,0.028177353,-0.28398022,0.17316428,-0.009829074,0.15768786,-0.33167028,-0.25428766,-0.24326923,0.36933956,0.24641286,0.14684714,-0.0060733855,-0.22804669,0.28362873,-0.028087672,0.053409345,0.12723593,-0.63592905,0.12473064,-0.28935674,-0.27126706,0.2049724,-0.21539463,0.2455682,0.19555287,0.057025354,-0.061659236,0.33758375,0.2642865,0.59114677,-0.122294016,-0.19458118,-0.18661675,0.23294559,0.12884341,-0.19169043,0.10928035,-0.109959535,0.24759577,-0.487431,0.37019587,-0.1617831,-0.24211955,-0.08647845,-0.0974594,0.051424306,0.40701398,-0.21005909,-0.053727966,0.027249334,-0.18668294,-0.29290056,-0.2271307,-0.21192463,0.13358408,0.07661589,-0.29981872,-0.14561264,-0.005179155,-0.17977776,0.36286047,0.03619439,0.31736454,0.36607653,0.024797352,-0.5094213,-0.027577337,-0.108564876,0.46141428,-0.10996158,0.02308571,-0.22583462,-0.4252587,-0.30100438,0.29628274,-0.2333637,0.24906418,0.12445002,-0.08361641,0.8550445,-0.034404155,1.1576546,-0.07776807,-0.30487218,-0.08499523,0.44003823,-0.14505367,-0.1733315,-0.27079996,0.9993539,0.56646985,0.024850616,-0.04504357,-0.17935112,-0.10338781,0.16830435,-0.2539166,-0.20085637,-0.07279314,-0.48423713,-0.30083957,0.24199381,0.13455415,0.094204865,-0.11314535,0.04770928,0.43474886,0.14097932,0.32542655,-0.44882706,-0.15135287,0.37949398,0.2699807,-0.09349291,0.12803903,-0.38854128,0.35739297,-0.53508055,0.006267901,-0.31218663,0.058084745,-0.09001444,-0.30950752,0.16404858,0.09432916,0.34205195,-0.18102553,-0.4007339,0.007926805,0.34497333,0.089644715,0.22105919,0.4761858,-0.20732887,0.056523245,-0.081936546,0.37035647,0.93859786,-0.21497743,-0.0073667937,0.46574673,-0.35482386,-0.62957823,0.19813736,-0.42120412,0.14784518,-0.07824312,-0.19580896,-0.211136,0.17878558,0.24816206,0.15036617,-0.007948195,-0.46154937,-0.14098684,0.2145613,-0.396457,-0.19616021,-0.35686758,0.0570341,0.64191204,-0.14351256,-0.33480924,-0.05525592,0.34200004,-0.27150354,-0.5834679,0.26196757,-0.072729036,0.332423,0.047513563,-0.35171667,-0.01551609,-0.011845504,-0.36685824,0.15322065,0.25608918,-0.2750906,0.03945377,-0.3629203,0.21005154,0.65541446,-0.28357622,0.051435623,-0.540995,-0.52790785,-0.88686734,-0.20423384,0.11533836,0.13366626,0.07416511,-0.5644208,0.056364458,-0.35349545,-0.04289022,-0.01675916,-0.20303294,0.33907658,0.22762159,0.2862117,-0.25506786,-0.72559106,0.12314173,0.14809802,-0.14973433,-0.44046447,0.5714461,0.011885865,0.65355873,0.19987346,0.015277349,0.21002693,-0.48634705,0.317331,-0.20640302,-0.0719835,-0.6104679,-0.03029934 -307,0.4368973,-0.09963603,-0.49077997,-0.17946585,-0.19050731,0.021335943,-0.11588429,0.43738922,0.06337033,-0.71963406,-0.22665451,-0.3633191,-0.23405242,0.4478237,-0.380347,-0.49225178,-0.13495682,-0.05045843,-0.505575,0.6072063,-0.33593234,0.40074304,0.28259572,0.24448553,0.33608633,0.31844693,0.3318086,-0.1078343,-0.11547787,-0.35634813,0.07579452,-0.31863928,-0.8004931,0.24252701,-0.14835386,-0.4225346,0.040959936,-0.5546766,-0.3932422,-0.78708774,0.32818845,-0.9437435,0.30700234,-0.07267126,-0.12765124,0.21679713,0.20971622,0.41915438,0.009586071,-0.111483596,0.24453862,0.12954424,0.05393783,0.055741314,-0.29249188,-0.468783,-0.593646,0.0849471,-0.30968872,-0.3915053,-0.17658629,0.11104731,-0.4232456,0.26110727,-0.11430649,0.40413433,-0.5512875,-0.3137233,0.23718931,-0.21144506,0.25205204,-0.6342047,-0.09824153,-0.14491837,0.14632139,-0.21578717,0.091037996,0.40395662,0.16555932,0.53600585,0.0014558776,-0.1493015,-0.2273597,0.021234842,0.18352138,0.45619777,-0.074054554,-0.24439773,-0.17963322,-0.12053036,0.33972746,0.09555689,0.22990432,-0.43591926,-0.017089358,-0.00469195,-0.44882542,0.29545555,0.48060867,-0.22187571,-0.069386,0.37172607,0.5316209,0.2062072,-0.13658687,0.013588445,-0.079753816,-0.3594597,-0.05234955,0.16319346,-0.2368804,0.5871933,0.028460728,0.119243786,0.532998,-0.25661144,0.203545,-0.14249101,-0.17219539,-0.18589282,-0.16609356,-0.2828631,0.23743813,-0.294607,0.29068574,-0.38102862,0.78226376,0.1290629,-0.86899316,0.34891364,-0.49313858,0.08549072,-0.054910194,0.47566557,0.40157938,0.43333724,0.16461144,0.73070806,-0.51672846,0.14971219,-0.19873424,-0.16004471,-0.083423555,-0.15226217,-0.035007622,-0.21027456,0.03262984,-0.12786399,-0.30050436,-0.2101417,0.23076698,-0.44489512,0.012432918,-0.03061754,0.8531332,-0.27877468,0.06577152,0.77631587,1.0691155,1.1663159,0.14387043,1.0265933,0.27573517,-0.23109163,0.10461158,-0.07190882,-0.68740225,0.27995747,0.5361134,0.37180728,0.28356877,-0.021068415,0.04011797,0.33892533,-0.45478123,0.22804897,-0.33002648,0.16933274,0.15225755,-0.1238639,-0.28936678,-0.2229754,0.101259746,0.20126678,-0.061832316,0.14675327,-0.15358941,0.28275004,0.10900832,1.6861753,-0.11348613,0.11538635,0.26345485,0.51907724,-0.08081126,-0.22003141,0.03374203,-0.027964758,0.25800067,-0.03698836,-0.61340487,0.005343131,-0.1848998,-0.57114595,-0.15802813,-0.26482758,-0.0446871,-0.17936592,-0.4954364,-0.13505885,-0.002071355,-0.37862745,0.26789686,-2.3659112,-0.13982952,-0.39712688,0.2638041,-0.4241092,-0.3380658,0.046898123,-0.5151835,0.49630904,0.46838754,0.3713409,-0.5154057,0.4409671,0.43735453,-0.35949543,-0.01964887,-0.5617559,0.06724636,-0.10652467,0.30025008,-0.0052013397,-0.04064134,0.12911676,0.28080887,0.42499235,0.1436712,0.095439054,0.29596397,0.31996492,0.14202213,0.60739416,0.09489497,0.46717098,-0.2325952,-0.010110955,0.49420267,-0.3772728,0.16922699,-0.093209796,0.27540213,0.20752864,-0.71763164,-0.68465483,-0.7928168,-0.5947364,1.2961771,-0.11965756,-0.5874737,0.26327184,0.216258,-0.03352966,-0.09035611,0.37858215,-0.21192291,0.06320441,-0.765349,-0.113228306,-0.20198984,0.20300767,-0.029437108,0.1805538,-0.4584853,0.6289016,-0.27533132,0.43834648,0.42913866,0.25506595,-0.22241528,-0.548914,0.116974175,0.8736439,0.37885132,0.002607139,-0.20998518,-0.05747773,-0.52597964,-0.30567604,0.15902482,0.34540883,0.8214597,-0.010246242,-0.0512036,0.19114308,-0.08163119,-0.050668847,-0.15237907,-0.37296504,-0.20362255,-0.08819539,0.6400983,0.47824958,-0.03833993,0.25527784,-0.2288305,0.41761252,-0.175658,-0.35783213,0.41599312,0.5979837,-0.081662536,-0.19046037,0.39773753,0.63206035,-0.27619964,0.4417315,-0.6046304,-0.355253,0.5263909,-0.09432711,-0.59175986,0.19073078,-0.38509107,0.17230701,-0.886052,0.35321596,-0.32279596,-0.2554427,-0.504026,-0.2946715,-2.43485,0.14378391,0.046134252,-0.37855372,0.010934306,-0.106781244,0.27240536,-0.6171321,-0.89058197,0.016758187,-0.09594119,0.5741648,0.06818888,0.20207559,-0.13228734,-0.058138933,-0.44352403,0.108826235,0.071723804,0.35390383,0.052486718,-0.31411272,-0.26591393,-0.26974204,-0.65578556,0.09455337,-0.5169638,-0.6698774,-0.33013684,-0.52383333,-0.34833926,0.510809,-0.36413887,0.03587554,0.008709515,-0.10246674,-0.17093012,0.34813112,0.32695618,0.21946147,0.1548253,-0.13091204,0.017602136,-0.21125112,0.24900177,0.27047813,0.45774698,0.39498234,-0.23622718,0.2688567,0.5317172,0.68633395,0.100812234,0.72588205,0.2971274,-0.06982346,0.17871282,-0.33757225,-0.16998155,-0.4347025,-0.12878838,0.13443848,-0.22753285,-0.5465156,0.103848256,-0.25276902,-0.71812516,0.42444062,0.000871752,0.018811222,0.057987172,-0.097534165,0.32859382,0.018935855,-0.017470224,0.010115147,-0.007497385,-0.5419841,-0.5149778,-0.82032925,-0.52432907,-0.030765275,0.9978861,0.17486891,-0.22471116,0.07146449,-0.3342608,0.26674542,-0.2703721,0.003376601,-0.0071441256,0.28748468,0.035265684,-0.72761333,0.50849074,0.0013879666,0.036008816,-0.51969355,0.23732087,0.70960796,-0.39217123,0.1667329,0.27877915,0.27658114,-0.026698139,-0.45922354,0.052124638,-0.11763085,-0.35659996,0.13396446,0.010281709,-0.5750293,0.33675358,0.27317542,-0.23765235,-0.8533829,0.44304794,0.12211033,-0.060891904,0.032844476,0.3065203,0.12108505,-0.07935428,-0.12613118,0.24376056,-0.49665025,0.100040324,0.48753262,0.11941191,0.3785582,-0.18732397,-0.2369064,-0.59304744,0.0485887,-0.32932472,-0.17604478,0.10474669,0.042530496,-0.08162161,0.20083825,0.18083699,0.3350894,-0.11488475,0.08018128,-0.12289609,-0.22512436,0.46538663,0.46069828,0.58086455,-0.5215822,0.638041,-0.071405634,0.11589929,0.20313585,-0.11683232,0.4164701,0.23446478,0.02402435,0.17131591,-0.07927521,0.104781665,0.6528986,0.327531,0.48160487,0.15013206,-0.41604525,0.4407136,0.15768385,0.11286749,-0.035410967,-0.6687547,0.12194852,0.18174198,-0.03747848,0.39474863,-0.015619551,0.41199812,-0.14398427,-0.21608554,-0.041400798,-0.021265576,-0.42489854,-1.2878191,0.3819293,-0.008855338,0.76236457,0.6587504,-0.15833494,0.29359534,0.5046067,-0.17442526,0.09403279,0.26620093,-0.012484865,-0.6259386,0.4681866,-0.4579967,0.42315105,0.09216698,0.03752405,0.015036808,0.27301884,0.4354104,0.75154907,-0.18707599,0.03038226,-0.2240572,-0.23549272,0.14041884,-0.47560164,0.24481736,-0.20623466,-0.36281314,0.63879806,0.4119995,0.20040186,-0.057840202,-0.020122698,-0.010813551,-0.0962553,0.3581327,-0.14682572,-0.02092266,0.0637363,-0.67791796,-0.460962,0.49544242,-0.131389,0.14768784,-0.0452554,-0.3561514,0.14766921,-0.044737447,-0.06988994,0.040275697,-0.83644444,0.17207526,-0.41643706,-0.24527617,-0.0848137,-0.07628401,0.3209832,0.1517527,-0.16642393,-0.41301513,0.18009807,0.121384375,0.632439,-0.2690263,-0.3154126,-0.33437577,-0.06574012,0.27096984,-0.29403743,0.15490396,-0.03961203,-0.054555178,-0.61575925,0.39763203,-0.13909085,-0.3397192,0.30573374,-0.26977512,-0.15589367,0.54036695,-0.22285108,0.16244176,0.11592449,-0.032501858,-0.05437805,-0.11432151,-0.2564799,0.16038355,0.11928076,-0.0979088,0.054239597,-0.048079994,0.08755999,0.57301563,0.019029336,0.5760947,0.62674797,-0.0023428288,-0.8112089,-0.16191684,-0.028282711,0.5280053,0.20398529,-0.11118495,-0.230082,-0.44418722,-0.1945272,0.47969463,-0.26964894,0.31996387,0.15184669,-0.5056909,0.6930016,0.23824105,1.296051,-0.051229924,-0.3870706,0.16447185,0.42555788,0.039554063,-0.09858189,-0.48175764,0.85711545,0.61923724,-0.1805403,-0.20531435,-0.26250908,-0.09789176,0.07431146,-0.1567136,-0.13488828,-0.041129146,-0.6466794,-0.43270215,0.06407038,0.24467514,-0.052920647,-0.10801755,0.08702243,0.08766504,-0.028977696,0.69115263,-0.3807008,-0.20358162,0.32293802,-0.07259921,0.10645112,0.06085106,-0.42702594,0.33051482,-0.5327875,0.10877495,-0.2664285,0.11736829,0.012585325,-0.19554664,0.14128736,0.036550414,0.5183602,-0.34953174,-0.47989526,-0.21743432,0.6360552,0.15489545,0.22639158,0.67475325,-0.16003619,0.22414139,-0.011229954,0.70203453,1.0885901,-0.0446813,0.43157506,0.22088124,-0.3691757,-0.34779644,0.15959445,-0.12508938,0.2532707,-0.14186196,-0.16575502,-0.54932636,0.23606455,0.23479474,-0.3672625,0.095994934,-0.5505912,-0.5184507,0.38806346,-0.4214191,-0.35049385,-0.47756007,0.16612294,0.5119439,-0.3075164,-0.117801316,0.057609845,0.17684238,-0.21592255,-0.4854414,-0.02509884,-0.22279823,0.27554756,0.071751975,-0.42765442,-0.17267345,0.09552163,-0.32433063,0.04510058,-0.01858053,-0.46169847,-0.12117449,-0.08028428,-0.004755352,0.82180846,0.11235764,0.06450912,-0.75054497,-0.5033918,-0.9312112,-0.56900215,0.50875264,0.12597612,-0.09786392,-0.34922546,-0.20705344,-0.13749523,0.040484525,0.039624486,-0.35537058,0.31867293,0.21358843,0.7182706,-0.19516304,-0.7453958,0.0953549,0.14701663,-0.054142993,-0.41924614,0.5467128,0.18368505,0.6860819,0.09632652,0.02381737,-0.036333907,-0.53629744,0.20544703,-0.1137251,-0.2254907,-0.59775656,0.35846296 -308,0.536198,-0.20701437,-0.4827424,-0.07080386,-0.31035,0.26972836,-0.18953207,0.4416464,0.13922678,-0.5127216,-0.25114194,-0.1736978,0.11251759,0.06412201,-0.24613309,-0.34992546,0.045546133,0.1771221,-0.5658943,0.38766804,-0.23738417,0.2938529,0.1148939,0.4335906,0.090223424,0.32829973,-0.08611194,-0.061413724,-0.1892325,-0.30265585,-0.07188535,0.2749032,-0.376159,0.22940192,-0.21522284,-0.12596236,-0.020584049,-0.5462603,-0.24474546,-0.6861416,0.19454421,-0.8760188,0.40266582,0.04821173,-0.2223624,0.18657814,0.28150925,0.13011968,-0.054714985,0.006078567,0.17343156,-0.30971405,-0.21444944,-0.25325292,-0.22794986,-0.5049931,-0.5552474,0.010108322,-0.41901302,-0.14592467,-0.31818604,0.22932303,-0.31980947,-0.054942816,-0.04756478,0.6205148,-0.31408855,0.3000364,0.2387725,-0.2870639,0.13410261,-0.58998734,-0.17130816,-0.03981733,0.38228002,-0.23718692,-0.25566962,0.15891764,0.37798738,0.36317423,0.06584556,-0.11777804,-0.30030838,-0.09659337,0.10287523,0.4559439,-0.06800658,-0.29872736,-0.0039038488,0.02244541,0.13486804,0.32232094,0.1647466,-0.20661688,-0.18826298,-0.21106073,-0.28246847,0.2679921,0.35190555,-0.23538034,-0.102096334,0.33907458,0.49189478,0.110015854,-0.08991557,-0.05581423,0.11740763,-0.52841026,-0.1744151,-0.006416491,-0.20302054,0.39671478,-0.2101341,0.43424526,0.6552578,-0.17375143,-0.03431784,0.26075104,0.32887754,-0.060161293,-0.3711357,-0.09926748,0.24666765,-0.45328838,0.037821796,-0.17968495,0.88017315,0.0023894703,-0.5131517,0.08473087,-0.6420213,-0.086654946,-0.0799067,0.3984551,0.58273745,0.52831066,0.2184271,0.62214386,-0.32505935,0.021320513,-0.14983979,-0.42216164,0.03197754,-0.17851551,0.046741366,-0.44020316,-0.08751331,-0.02349331,-0.019213501,0.041517098,0.5577143,-0.47126502,-0.18313678,0.021601854,0.8037811,-0.27061957,-0.24429817,0.8022577,0.8560572,0.74024117,0.11095406,1.0559442,0.0899289,-0.11137812,-0.05215302,-0.066395186,-0.57144564,0.42720112,0.3317888,-0.36694628,0.09910025,0.05557123,-0.067412384,0.39281628,-0.28696817,-0.15188329,-0.16721575,0.19017051,0.1048725,-0.11843411,-0.41467336,-0.3313791,-0.021253217,-0.007830982,0.30347136,0.29148278,-0.07866938,0.48687252,0.012378012,1.4849815,-0.008321873,0.24062191,0.09273654,0.21037541,0.23501386,-0.089618675,-0.047176056,0.3532576,0.1936327,0.21020998,-0.517938,0.17885283,-0.18019794,-0.43193164,-0.18809186,-0.309274,-0.2238431,-0.06752749,-0.4718822,-0.17941464,-0.20582907,-0.39725998,0.46563953,-2.6510315,-0.043027036,-0.076240264,0.40304884,-0.26228568,-0.45336336,-0.06864289,-0.37279317,0.32883772,0.16148268,0.43560204,-0.49704054,0.33391476,0.4995092,-0.49150234,-0.33669832,-0.5487269,-0.004752355,-0.06819458,0.13083048,0.04834861,-0.0035086232,-0.076987915,-0.21826264,0.44521695,-0.14947489,0.1586553,0.44674492,0.48303062,-0.072517596,0.46464744,0.019722562,0.5630664,-0.28704038,-0.32898074,0.26220113,-0.35031065,0.23060977,-0.048002232,0.059002522,0.591,-0.3039206,-0.77808636,-0.7047328,-0.2291974,1.2154125,-0.22356339,-0.3462744,0.1175437,-0.374093,-0.45857129,0.051005535,0.5800914,-0.1289958,0.06754968,-0.7251689,0.05435248,-0.13100404,0.13260104,-0.060476933,-0.114113554,-0.43874213,0.59153837,0.021633549,0.4194549,0.21479201,0.29948395,-0.33054453,-0.2982927,0.012778963,0.91596717,0.38439852,0.2472321,-0.24995613,-0.1158103,-0.30336854,-0.017382758,0.13253061,0.7326284,0.34145838,0.037534695,0.25128514,0.26177266,-0.05383059,0.13768195,-0.09469392,-0.22062886,-0.20077947,-0.04724621,0.509342,0.6205581,-0.004775209,0.501299,-0.039891157,0.37377626,-0.2485324,-0.48913208,0.41577625,0.90603775,-0.19924058,-0.33920097,0.7865333,0.4428318,-0.20574263,0.33182982,-0.5130461,-0.43655893,0.38941067,-0.17030899,-0.59518325,0.15411532,-0.140095,0.12743562,-0.89126873,0.20567366,-0.27964535,-0.6411975,-0.5242724,-0.058088798,-2.6448786,0.29042906,-0.20735906,-0.15307294,-0.17043753,-0.287514,0.11621004,-0.5746493,-0.43102694,0.11487682,0.052581243,0.72373646,-0.10238378,0.16326849,-0.14924765,-0.31589705,-0.09076892,0.1318031,0.14079046,0.31951338,-0.11252741,-0.4467298,0.019383477,0.052836604,-0.2909868,0.18550017,-0.7408978,-0.4897344,-0.12776914,-0.4549055,-0.35905674,0.62386554,-0.33395416,-0.0072284015,-0.201999,0.18866754,0.0061344844,0.2301475,0.07014295,0.24113497,0.11373836,-0.12311107,-0.03054065,-0.2854786,0.46865258,0.03978659,0.22825992,0.48552892,-0.12594701,0.275682,0.3677873,0.47986275,-0.15534422,0.86459243,0.2752221,0.034296583,0.26407376,-0.15576415,-0.47551277,-0.4264979,-0.18199222,0.11360761,-0.4456901,-0.19993147,0.0063593644,-0.34916934,-0.88130534,0.6065478,0.09671236,0.001495455,-0.11620685,0.42743465,0.5433182,-0.3242161,-0.22297247,-0.026476204,-0.1478125,-0.5262385,-0.3046182,-0.46136707,-0.41913533,-0.093345895,0.9951836,-0.23666625,0.20906594,0.055877533,-0.05097833,-0.10410918,0.14708403,-0.060963333,0.02272451,0.6044646,-0.1469766,-0.58012664,0.5543934,-0.3213012,-0.29576612,-0.58516586,0.3390719,0.63230896,-0.63809395,0.54346234,0.45817143,0.08126391,-0.35858425,-0.46834823,-0.043736912,-0.08619934,-0.18875508,0.40357763,0.37588114,-0.8173423,0.32571533,0.18395723,-0.13548748,-0.67990303,0.5460412,-0.06816878,-0.33592632,-0.13250339,0.43036896,0.18333915,-0.046955567,-0.1877196,0.1195593,-0.34050632,0.32422757,-0.012076356,-0.16735399,0.32639402,-0.24214251,-0.10314537,-0.67551136,0.06020292,-0.4950467,-0.41840178,0.25716844,0.10500761,0.0037998727,0.4282303,0.07557649,0.30041504,-0.46031338,-0.035217334,-0.17088161,-0.21822284,0.18657593,0.32436606,0.58698404,-0.48152012,0.5751341,0.035944615,0.07368126,0.11201765,0.23850381,0.4674666,0.044315364,0.5768453,-0.15216948,-0.16369952,0.37420627,0.6908507,-0.0068470496,0.40194178,0.046406116,-0.07683135,0.08465432,-0.037809107,0.2671174,-0.1607484,-0.6887952,-0.014291772,-0.47330508,0.08211064,0.38677683,0.043202035,0.36512542,-0.041110165,-0.35227647,0.086672604,0.23562148,0.15933165,-1.1252214,0.37497064,0.29346657,0.90987223,0.15792488,0.09675501,-0.05887931,0.8216675,-0.21531485,0.11273762,0.28981704,0.12753046,-0.29462793,0.54578274,-0.753911,0.39432353,-0.0639784,-0.10013924,-0.027768984,-0.22563635,0.34945363,0.92102987,-0.18004899,-0.012226609,0.05921229,-0.4936219,0.08826142,-0.4073382,0.08553863,-0.6114295,-0.26626605,0.6206899,0.5386935,0.37030777,-0.23826288,0.04571357,0.16293697,-0.10166336,0.149823,0.1997077,0.15589713,0.03311512,-0.6748919,-0.11250239,0.5375153,0.20154963,0.2611677,0.0041875583,-0.03422783,0.34914765,-0.1982087,0.042841915,-0.12676778,-0.60171694,-0.0033019271,-0.4134283,-0.57104915,0.2778829,-0.3028541,0.16810301,0.17246775,0.11219569,-0.21846724,0.60928065,0.19400942,0.93949795,0.11048392,-0.09801922,-0.40681452,0.2596079,0.1642629,-0.16501728,-0.14078857,-0.26085228,0.14762719,-0.583531,0.3295055,-0.16289279,-0.35968098,0.035381284,-0.053878162,0.031657986,0.47478586,0.04673142,-0.010210226,-0.008971776,-0.101309605,-0.22020523,-0.1592497,-0.12815158,0.3057728,0.21465161,-0.054182965,-0.2269716,-0.12929861,-0.19406064,0.20008208,-0.011926153,0.41087952,0.31603256,-0.04676382,-0.13497558,-0.13717936,0.2399032,0.52474344,-0.07954083,-0.13358891,-0.31079087,-0.47247204,-0.32086423,0.17965065,-0.00971105,0.28875256,0.12653579,-0.029126635,0.92916995,-0.22692323,0.94490844,0.047062505,-0.28113312,0.17050448,0.4010205,0.020609643,-0.06405942,-0.368138,1.0572554,0.42919588,0.09021764,0.0047987825,-0.4468308,0.071372405,0.14406015,-0.21572016,-0.11259306,-0.10569771,-0.6283662,-0.28754824,0.18383572,0.2778816,0.14195327,-0.07818294,-0.0072522038,0.42353654,0.03849371,0.2260975,-0.6358643,-0.18667129,0.16202538,0.45094582,-0.09958496,0.27141163,-0.5511693,0.40066186,-0.5919338,0.09265089,-0.305219,0.21115711,-0.32069045,-0.22901177,0.25190192,0.00881826,0.47601014,-0.3437086,-0.2509081,-0.27726552,0.39059606,0.26965794,0.062965445,0.5124599,-0.28177053,-0.060146153,0.12484525,0.53006285,0.8581,-0.29739803,0.06173465,0.4125043,-0.29115647,-0.5545212,0.3597259,-0.37083766,0.25644353,-0.015573146,-0.20966266,-0.29473415,0.30166864,0.1973954,0.21579249,-0.17064552,-0.48082465,0.08240219,0.35999373,-0.28540748,-0.13305558,-0.1645275,0.20185263,0.3431526,-0.089818425,-0.27888426,0.09929252,0.37006965,-0.10419297,-0.3503355,-0.062394846,-0.404011,0.17352538,0.030312171,-0.34328896,-0.22990482,-0.13726337,-0.44762468,0.16200478,0.0921073,-0.25172442,0.041040648,-0.18743165,0.015006759,0.7111829,-0.18849066,0.15075167,-0.58757895,-0.4056994,-0.6733452,-0.29097858,0.12952366,0.0056011933,-0.0013861805,-0.56225306,-0.030861301,-0.16454771,-0.28069046,-0.17938386,-0.4128461,0.49505597,0.16502193,0.31681195,-0.14409359,-0.9182011,0.2927716,0.006498409,-0.3289277,-0.65700865,0.37621567,-0.07526118,0.6391138,0.033262603,0.05858756,0.40262836,-0.454135,-0.012805939,-0.19503705,-0.11141438,-0.7903126,-0.11552143 -309,0.44965932,-0.012491286,-0.23826784,-0.1366867,-0.31437886,0.101716176,-0.22098011,0.21704859,0.16463405,-0.57991976,-0.033653878,-0.107677326,-0.014138777,0.161564,-0.2535969,-0.7290776,0.14316618,0.049479064,-0.38313323,0.56716096,-0.4356107,0.3760401,0.04324229,0.12789331,0.007785082,0.27588117,0.38987175,-0.058422975,0.0017961413,-0.1523394,-0.15686563,0.24553709,-0.63687915,0.4521041,-0.042616468,-0.23839067,0.13887474,-0.27591467,-0.17623952,-0.5533166,0.15832746,-0.6538628,0.26468623,0.14513141,-0.18974724,0.2782632,0.21895248,0.21468097,-0.11308496,0.07889122,0.13743596,-0.15942061,-0.116549134,-0.2537914,0.09203362,-0.45714283,-0.4159016,-0.0821794,-0.586559,-0.44691956,-0.21304591,0.16307838,-0.32118967,-0.137227,-0.12535065,0.43755835,-0.38789898,-0.17369556,0.26489893,-0.32077312,0.19234887,-0.5288471,-0.16886652,0.053588435,0.20563078,-0.1404899,-0.1856145,0.3630055,0.076297544,0.45964378,0.07842146,-0.28091693,-0.15592128,-0.22324327,0.22324073,0.46088713,-0.22844931,-0.43576038,-0.096295685,2.226606e-05,0.10610615,0.064138375,0.18205222,-0.22534409,-0.08958802,-0.08638117,-0.12738921,0.39750665,0.4835028,-0.46380997,-0.10863851,0.24527457,0.39816368,-0.025452368,-0.08010955,0.0037576593,-0.05999583,-0.3602889,-0.26493955,-0.00798963,-0.061855376,0.47252095,-0.15902916,0.25174177,0.47919813,-0.23205343,0.16702087,0.031545974,0.025633907,0.15825167,-0.20490783,-0.20338032,0.31312552,-0.67995304,-0.1712704,-0.3419224,0.76004934,0.12039408,-0.6308775,0.30422986,-0.4322505,0.036446624,-0.06817872,0.4950326,0.5667689,0.42222828,-0.018100474,0.6815476,-0.5311543,0.055025645,-0.29218072,-0.18313044,0.13442001,-0.10166806,0.17657995,-0.3346434,0.012465667,0.117734134,0.121244535,-0.121423125,0.21223143,-0.6089439,-0.10775768,0.16233835,0.68067425,-0.28705552,0.010785263,0.65435374,1.1696911,0.80739605,0.105092496,0.9369353,0.047718905,-0.10033597,-0.093550645,-0.047277864,-0.4208158,0.20197876,0.40352035,0.7224667,0.1524213,0.06864306,-0.10091931,0.24837048,-0.31371656,-0.20703965,-0.17909564,0.5433512,0.015626295,-0.00011508539,-0.3636312,-0.1492497,0.11454609,0.12494828,-0.016588364,0.3180973,-0.1543846,0.1817218,0.059442677,1.1944697,-0.09306176,0.16196781,0.08307053,0.4066356,0.2634265,-0.08366559,0.13821763,0.26742357,0.20980012,0.11107563,-0.43663025,-0.08834988,-0.1776151,-0.5468403,-0.040024888,-0.36711106,-0.060097806,-0.04992187,-0.43408358,-0.19515662,0.018778011,-0.12562588,0.31406996,-2.9007874,0.007203538,-0.16946863,0.29760283,-0.23910466,-0.22198145,-0.0829051,-0.39019823,0.52698654,0.42982638,0.3816856,-0.5305895,0.30380118,0.458161,-0.37400776,-0.05797123,-0.4941906,0.005290745,-0.22430584,0.46658736,0.018734422,-0.20542446,0.027276723,0.290318,0.49352965,0.084651224,0.19502057,0.1659131,0.14282319,0.00948851,0.3282252,0.12737441,0.3016094,-0.333746,-0.11583507,0.2696861,-0.29163188,0.009271257,-0.14385018,0.026637815,0.22006294,-0.26255026,-0.65827006,-0.5698332,-0.34314194,1.1583049,-0.18830335,-0.59894204,0.26093385,0.07516149,-0.13567972,-0.050909847,0.22916009,0.014075559,0.18931614,-0.66018724,0.16244093,-0.12699786,0.058963932,0.036980562,-0.058486316,-0.6799762,0.70266634,-0.216324,0.433699,0.372119,0.34303904,-0.25484213,-0.42920226,0.06936569,0.94977653,0.48367178,0.08901264,-0.025368657,-0.2250367,-0.03939294,0.01507907,0.3085009,0.6099121,0.7803022,-0.056551732,0.18263602,0.3565455,0.03392306,0.09284076,0.009030728,-0.3693114,-0.011808269,0.0019408092,0.72072214,0.53281283,0.04100976,0.38066864,0.070111565,0.28518254,-0.21614486,-0.48015577,0.34596795,0.67862815,-0.07057515,-0.16978943,0.66014844,0.55292517,-0.05672809,0.48500454,-0.6312628,-0.5221623,0.43226874,-0.22340038,-0.43921274,0.100933634,-0.31987065,0.1335913,-0.58829945,0.465468,-0.36248407,-0.6217348,-0.54384196,-0.24736331,-3.2972555,0.15468323,-0.2585017,-0.16394153,-0.07240133,-0.13673326,0.24045272,-0.6298528,-0.31755286,0.3136261,-0.09814466,0.57621616,-0.117844656,-0.019552348,-0.24303159,-0.30083427,-0.117386244,0.2621076,-0.013908058,0.0765272,-0.028765664,-0.21715108,0.15560842,-0.077294044,-0.33920917,0.1515859,-0.3644693,-0.6034839,-0.13585556,-0.35336605,-0.19133013,0.5932527,-0.34801465,-0.018635504,-0.21215545,-0.040481977,-0.06881818,0.21939199,0.22730523,0.23595786,0.103812926,0.062165186,-0.17007618,-0.30623096,0.29333794,0.15038669,0.33560026,0.416775,-0.16654205,-0.026098669,0.43515068,0.3139395,-0.03537848,0.7586934,0.21206012,-0.09256831,0.36768812,-0.2477442,-0.32966617,-0.5853272,-0.4075388,0.06507135,-0.31284374,-0.31290329,-0.08757134,-0.30750608,-0.65021044,0.47883752,-0.08369504,0.27525824,-0.21102414,0.14523414,0.23619343,-0.10098477,-0.14859757,-0.12457548,-0.06475826,-0.46129352,-0.21891835,-0.7453611,-0.3106704,0.16948691,0.79592633,-0.2851969,-0.08805095,0.1004091,0.15612826,0.14138559,0.08278825,0.07160897,0.0020084828,0.34476697,0.062279567,-0.64731216,0.50712514,-0.18422717,-0.09775225,-0.45721623,0.058964767,0.4952042,-0.6163104,0.37199107,0.3896444,0.1808221,-0.13247778,-0.5993696,-0.1808601,0.061376873,-0.33920634,0.48739198,0.14428738,-0.8739428,0.44878718,0.23705016,-0.47269452,-0.68828434,0.5727393,0.021839783,-0.2501947,-0.012650445,0.2451276,0.20898128,0.036919795,0.088749975,0.21743569,-0.5356067,0.2682557,0.20853817,0.029430108,0.39434966,-0.14283875,-0.23933503,-0.54197884,-0.15858585,-0.52445364,-0.23386133,0.019071031,-0.0989252,-0.14496441,0.40832448,-0.0824069,0.48868418,-0.24479392,0.17941289,-0.0012213737,-0.3607093,0.4819649,0.46699464,0.466466,-0.35226846,0.51018333,0.011515854,0.06013982,-0.2673188,-0.04167296,0.379362,0.090568,0.2335052,-0.14610487,-0.08682843,0.36438978,0.7855643,0.19689384,0.36142927,0.013569582,-0.1467035,0.35497627,0.108921096,0.12727201,0.09811766,-0.3743049,-0.18130352,-0.012788663,0.069879845,0.3550202,0.11703211,0.48836383,0.06712569,-0.2705531,0.09778094,0.17378713,-0.09858515,-1.1360233,0.28502744,0.07738898,0.65261054,0.65832394,0.113726474,0.107746765,0.44346696,-0.18788132,-0.0020478629,0.17911091,-0.0019715354,-0.3368834,0.6213168,-0.58607745,0.28073788,-0.124953486,-0.0069854828,-0.18947333,-0.0023039225,0.35999545,0.72201806,-0.16308215,0.13903534,-0.13868588,-0.1964524,0.067890696,-0.3049494,0.12398377,-0.43416163,-0.3277265,0.62001,0.2826021,0.32879215,-0.070504315,-0.04094824,0.11429809,-0.13239895,0.13238302,-0.03934279,-0.01668353,-0.06016317,-0.42900276,-0.37998968,0.56805146,-0.17061506,0.026203416,-0.059852608,-0.088649005,0.09661504,0.09823198,-0.095547065,0.10931111,-0.53222156,0.16333528,-0.20017375,-0.2638539,0.4860581,-0.32150397,0.08138091,0.16658568,0.058873106,-0.15512474,0.059919696,0.20401281,0.3601163,-0.049789254,-0.25246787,-0.29221907,-0.022372179,0.06809507,-0.07630835,0.022975534,-0.12842008,0.26780623,-0.67334205,0.33319858,-0.061276227,0.003089629,0.28742558,-0.21344957,-0.041974574,0.4512525,0.08090803,-0.05662099,0.253685,-0.15534928,-0.07882127,-0.22170861,-0.24208954,0.13281068,-0.10509639,-0.01795136,-0.018478893,-0.1420052,-0.11802977,0.2877295,0.0629669,0.15711492,0.21849573,0.050747603,-0.44373477,0.15591487,0.08264783,0.26731783,-0.004643023,0.115928,-0.21492305,-0.5294821,-0.30973634,0.10349108,-0.15732431,0.0524356,0.052140437,-0.25784346,0.8722395,-0.009648927,1.0704924,-0.018436775,-0.3639718,-0.08300722,0.46737188,-0.21836588,-0.01271082,-0.25018582,0.9971074,0.54357415,0.004381068,-0.057058048,-0.41578528,-0.017320268,0.22658585,-0.19949971,-0.1531179,-0.13772225,-0.5916587,-0.36581314,0.19524391,0.2881968,-0.03569252,0.047183596,-0.12778075,0.27194738,0.22265172,0.3975864,-0.74236417,-0.026768468,0.26985946,0.21274695,0.16807985,0.1722173,-0.23521191,0.3869121,-0.5537796,0.18405423,-0.19846706,0.00030069053,-0.12627771,-0.31154338,0.11282006,-0.01859676,0.3800862,-0.23687367,-0.38500124,-0.13907385,0.3810464,-0.04898086,0.135937,0.5344535,-0.16501492,0.04967898,-0.117832795,0.44626063,1.0611534,-0.17251709,-0.12824449,0.3643983,-0.39878082,-0.67950076,0.09213553,-0.33238292,0.03812124,-0.04811059,-0.45079982,-0.38311717,0.17165512,0.22957946,0.030199585,0.1392531,-0.5515744,-0.28088325,0.20333359,-0.31705576,-0.39587003,-0.18428764,0.31247306,0.7080595,-0.28174794,-0.06997158,-0.059469245,0.39309523,-0.30169493,-0.6764015,-0.009748675,-0.24449714,0.27886802,0.16078381,-0.13740347,-0.12646283,0.1789324,-0.3620355,0.025721971,0.35268247,-0.17975748,0.04933797,-0.10914438,0.15482977,0.7097374,0.071779504,0.12740937,-0.64090157,-0.45344073,-0.7511924,-0.44520196,0.17939194,0.17452379,0.017766366,-0.4832697,-0.077077255,-0.13902506,0.046384573,-0.14481443,-0.2299627,0.39137694,0.221109,0.3369615,-0.17857711,-0.70918655,0.08056677,0.13129997,-0.021194763,-0.3360501,0.38530958,-0.123219855,0.67620486,0.1264428,-0.117245056,0.023456853,-0.5245162,0.17925361,-0.23397177,-0.2312477,-0.59004503,0.14277215 -310,0.38479254,0.19589856,-0.43219572,-0.03823799,-0.09245123,0.036281783,-0.3232078,0.13253044,0.0783573,-0.38424438,-0.11883875,-0.09031707,-0.0071807024,0.14085999,-0.15039809,-0.6625779,0.074144594,0.10063219,-0.46505547,0.75913745,-0.38821608,0.39463732,-0.02045621,0.39256877,0.15773343,0.3586566,0.28704613,-0.15568161,-0.14525735,-0.3825273,-0.24558489,-0.09487892,-0.74597347,0.1007092,-0.4139366,-0.3202868,0.18652876,-0.29057032,-0.4810483,-0.75256413,0.33486253,-0.7568789,0.48386234,0.03173255,-0.21057346,0.38344756,0.121468864,0.43531677,-0.24984786,0.030641198,0.017689545,-0.08769965,0.12286586,-0.3471541,-0.18303466,-0.40470824,-0.4279711,-0.019256907,-0.6291305,-0.16272219,-0.37928575,0.17417479,-0.29411486,-0.07516386,-0.16349699,0.300868,-0.46365812,-0.10074745,0.094176784,-0.044104286,0.1777295,-0.6546265,-0.1641629,-0.084642984,0.29902,-0.15022942,-9.2327595e-05,0.39837137,-0.052707206,0.2579667,-0.047148716,-0.26010233,-0.20923838,-0.21062596,-0.03361221,0.4970238,-0.1879628,-0.31108502,-0.02988811,0.013506608,0.213271,0.3816606,0.05175001,0.08650773,0.05556214,-0.08927806,-0.22247133,0.5138859,0.5113469,-0.38879296,-0.17245948,0.19295785,0.4859995,0.19473961,-0.27392888,-0.02566872,-0.08690619,-0.39339343,-0.25547662,0.15540592,-0.2049606,0.67632776,-0.016207865,0.15125492,0.45677954,-0.22062026,0.21548001,-0.03846108,-0.0408657,0.22611459,-0.19362144,-0.30999678,0.41776133,-0.56406194,0.22454715,-0.39326784,0.54581755,0.17125021,-0.5080493,0.24202155,-0.46986347,0.0043779314,0.0003761649,0.5841444,0.45117015,0.4025919,0.25149757,0.785688,-0.4718043,0.057847578,0.031636894,-0.14777705,-0.056361496,-0.1290266,0.09288246,-0.39065537,0.073688336,0.0075935,0.11257171,0.043538578,0.12648982,-0.31911454,-0.031199643,0.24741085,0.9922849,-0.24853095,0.23630174,0.79509157,1.2585325,1.015049,-0.044254504,0.87044007,0.3316533,-0.34420007,-0.030173227,-0.17751704,-0.5777917,0.121134855,0.36527035,0.10886047,0.33580938,0.084098,-0.12602746,0.1260986,-0.5955691,-0.024114069,-0.15967844,0.12256384,0.03997605,0.12696412,-0.48968357,-0.22778848,-0.07450707,-0.0823675,0.19148119,0.20784502,-0.28675693,0.20770156,-0.063388065,1.1124446,0.1350034,-0.01599043,0.18274704,0.8890676,0.35349226,0.10319867,-0.051943246,0.3499653,0.34672782,0.09677537,-0.44946423,0.009359136,-0.5135081,-0.2882472,-0.06476213,-0.3270889,0.21380794,0.117533006,-0.18480383,-0.07528372,0.061429024,-0.23453884,0.40090224,-2.9068532,-0.066824965,-0.20238091,0.400561,-0.20061941,-0.13373138,-0.10849446,-0.44452348,0.70466197,0.37345907,0.43244654,-0.4044924,0.26421553,0.4451774,-0.44821027,-0.07395164,-0.5208054,-0.11394634,-0.12190478,0.4841937,-0.04216275,-0.08139922,-0.13350847,0.1070223,0.5090902,0.21089725,0.05122631,0.07563245,0.21789877,0.009958991,0.4753947,0.15380467,0.32453945,-0.18411621,-0.095421486,0.31459188,-0.41306823,0.23043884,-0.2515522,0.12745498,0.5003685,-0.53326005,-0.7628478,-0.53665453,-0.2498552,1.1693599,-0.09083451,-0.6428248,0.14660789,-0.21578197,-0.21189316,-0.089072995,0.33019787,-0.19732888,-0.033196215,-0.4026859,-0.090003,-0.14513339,0.26579165,0.10256301,0.16645606,-0.44259128,0.5006401,-0.01893429,0.40091255,0.22936869,0.35389164,-0.23090193,-0.43361863,-0.01719829,0.8628475,0.4092314,0.039407305,-0.32058376,-0.26673532,-0.24257994,-0.04503431,0.14768681,0.716239,0.82893366,-0.16578542,-0.07739145,0.3115314,-0.005536952,0.03630658,-0.0582318,-0.44686848,-0.15423825,-0.034000438,0.59209293,0.57383144,0.10335622,0.29042816,0.040420942,0.47581545,-0.20790684,-0.2756684,0.34744602,1.1242253,-0.0945837,-0.15567937,0.45240238,0.6888257,-0.37535802,0.5484685,-0.76655525,-0.36314854,0.4916919,0.005659831,-0.4047094,0.12808634,-0.36539465,0.13181512,-0.7015878,0.27892134,-0.31477505,-0.32456264,-0.66506535,-0.19482763,-3.1195035,0.0347664,-0.28504404,-0.068943694,-0.15117958,-0.19679596,0.22826488,-0.4369066,-0.5361248,0.15740454,0.08859878,0.73219556,-0.10016549,0.09406563,-0.3853443,-0.27856344,-0.3949344,0.28446886,0.31351444,0.27020025,-0.20453084,-0.26407272,-0.017586121,-0.20187892,-0.24922441,-0.16400845,-0.4551172,-0.25546947,-0.26835796,-0.6394867,-0.11160215,0.6108033,-0.29940173,0.1172469,-0.20666216,0.008606536,-0.06562343,0.16294234,0.25899264,0.3686893,0.07703404,-0.052468974,0.07551666,-0.436719,0.29808238,0.34227508,0.24319194,0.22523475,-0.0039585107,-0.059411045,0.255004,0.43955746,0.012970322,0.79909897,0.28607005,-0.2134925,0.40826055,-0.4347042,-0.45429304,-0.71017516,-0.34313488,-0.06540434,-0.18871415,-0.5108746,-0.19399747,-0.51017135,-0.66622084,0.48989436,-0.041326694,0.26205915,-0.022296915,0.4085231,0.45574483,-0.24365483,-0.033513457,0.08633418,0.009921908,-0.37903976,-0.09630162,-0.64874786,-0.51328,-0.041503496,0.6136967,-0.17825265,-0.13853082,0.20387462,-0.14188327,0.1551232,0.1395771,0.16489069,0.03860993,0.5901436,0.13245721,-0.7877302,0.5574516,-0.12076487,-0.18822753,-0.59383875,0.2649999,0.64167774,-0.70428807,0.36210135,0.50464004,0.08248267,-0.28359053,-0.5091902,-0.14000659,0.037287124,-0.14489163,0.27524668,0.08066459,-0.8107074,0.23917682,0.064418994,-0.26545292,-0.70588887,0.73310614,0.028704586,-0.5720297,0.06957143,0.3730569,0.06624,-0.009339935,-0.12543151,0.21394433,-0.2306744,0.05903977,0.30567232,-0.042676654,0.3653057,-0.17180957,-0.19117273,-0.763406,0.20160888,-0.4977633,-0.26225662,0.4824571,0.0684583,-0.10543784,0.2938075,0.13976096,0.32829162,-0.20920713,0.26224783,-0.21788149,-0.2569305,0.5861331,0.3826719,0.40726772,-0.52129215,0.70456344,-0.0019576591,-0.11369912,-0.03684782,0.01805222,0.32130808,-0.17911313,0.2999623,0.08485455,-0.14448641,0.160321,0.50564605,0.35910514,0.38753325,0.15440607,-0.0419221,0.43803746,0.093133725,0.11111637,0.19363369,-0.47880262,-0.047771987,-0.13460049,-0.015665924,0.22341044,0.074667566,0.23599532,-0.061392073,-0.10593904,-0.04685379,0.04366388,-0.11137343,-0.88933223,0.3689787,0.16911456,0.73146963,0.46127027,0.10339846,0.06014749,0.64606124,-0.24685144,-0.101410456,0.33669785,0.18587068,-0.34849256,0.5366356,-0.46073714,0.59137565,0.17633626,0.0059611714,0.02002355,-0.08844851,0.42545095,0.862125,-0.2545064,0.042684913,-0.094086766,-0.20823976,0.07082177,-0.18493733,0.19923462,-0.40730673,-0.29635167,0.5948876,0.41264623,0.35645503,-0.040386625,-0.026175002,0.01786616,-0.3096591,0.23141588,-0.030437315,-0.086707056,-0.027910968,-0.5821357,-0.23805799,0.40673795,-0.15863271,-0.015805347,0.0031664541,0.16547121,0.21257146,-0.06552466,0.17089489,0.012484914,-0.7089395,0.21444178,-0.28048706,-0.06794631,0.5145311,-0.2111264,0.31909364,0.079813875,-0.033307776,-0.1739907,0.24652708,0.17506826,0.5065302,-0.074928455,-0.33727393,-0.39339972,-0.008269561,0.12471689,-0.320908,0.068784095,-0.30225796,0.13666622,-0.7710581,0.40381575,-0.2830157,-0.13376358,-0.115560435,-0.17661853,-0.1654634,0.48728272,-0.058169775,-0.16458814,0.056961834,0.059294265,-0.26796848,-0.18103325,-0.13860409,0.015509265,0.15362416,-0.080251,-0.1692063,-0.079471506,-0.24032304,0.5644366,0.043047648,0.38305125,0.0867571,0.083625756,-0.46646425,-0.09885884,-0.093710706,0.4856831,-0.08312704,0.018510511,-0.13609861,-0.42176566,-0.3355381,0.4798887,-0.03297365,0.20513602,0.15044318,-0.06038161,0.6648157,-0.026465824,1.1961733,-0.04467184,-0.43298477,0.04169879,0.7136988,-0.28631106,-0.12018335,-0.29454198,1.1243067,0.5413078,-0.02743273,-0.23638399,-0.200053,0.13230999,0.10023586,-0.15792537,-0.12472361,-0.12102543,-0.324476,-0.20937277,0.15767416,0.3660734,0.15064386,0.013475512,-0.022581449,0.07687207,0.16188718,0.31651244,-0.25315997,-0.2239833,0.58889765,0.029518118,-0.1491087,0.16669445,-0.22762418,0.33252695,-0.4302161,-0.04414851,-0.469388,0.008687685,-0.0063795024,-0.43051058,0.3110227,-0.111257136,0.36188215,-0.4840908,-0.43458727,-0.21254209,0.21268323,0.35726443,0.21024834,0.42751008,-0.15805563,0.0030218214,-0.062819935,0.56869894,1.0702498,-0.23405191,0.012589446,0.10847855,-0.4887264,-0.49191788,0.03633795,-0.5333181,0.107575454,-0.17125408,-0.2530391,-0.43628162,0.2298754,0.06982935,-0.067119725,-0.0043561202,-0.7537508,-0.2784529,-0.015984539,-0.08829873,-0.26416007,-0.35519975,0.21461456,0.7270613,-0.08342231,-0.30424047,-0.029277897,0.15320478,-0.18055913,-0.68968093,0.04899637,-0.37075323,0.20446455,0.14908552,-0.23479143,0.00019688053,0.25435638,-0.54638076,0.19220015,0.26318222,-0.46384567,-0.10711026,-0.13696952,0.065937996,0.6524733,-0.17424262,0.046257395,-0.3015531,-0.48899576,-0.71776205,-0.34984085,0.38998005,0.26757145,0.15164652,-0.4313307,0.032748833,-0.26604065,-0.0068917614,-0.10122008,-0.42568296,0.24279603,0.2220246,0.6200885,-0.24649803,-0.9905858,0.08056717,0.05726065,-0.29025486,-0.53804356,0.30208597,-0.056133933,0.68075037,0.08058391,0.005030121,0.33468392,-0.5819493,0.08383245,-0.18508856,-0.13441435,-0.710269,0.18138373 -311,0.4684005,-0.29137334,-0.55873173,-0.17480673,-0.29207385,-0.2072631,0.046012904,0.70513207,0.5075603,-0.27191126,0.02975729,-0.11627386,-0.116190456,0.5752968,-0.10203159,-0.7368686,-0.09105702,0.34881762,-0.38353977,0.2786114,-0.6111765,0.14184888,-0.096349075,0.61587995,0.2162508,0.1406962,-0.09097897,0.12189257,0.14896433,0.13986804,-0.042627707,0.37210786,-0.46238562,0.18353371,0.088857695,-0.49682721,-0.06489174,-0.7732414,-0.29011375,-0.72510153,0.28541648,-0.58572364,0.7360155,0.13399781,-0.42667243,-0.18766755,0.03703135,0.3151584,-0.39186522,0.013378799,0.15452917,-0.20715694,-0.055483148,-0.16989422,-0.2900345,-0.13622384,-0.6129087,-0.08854243,-0.31630886,-0.134686,-0.0050230245,0.28083718,-0.25825632,-0.04088575,-0.3268095,0.85703295,-0.32257575,0.038635407,0.24185258,-0.2071888,0.2170313,-0.5967638,-0.13823716,-0.16526632,-0.019159412,-0.16389836,-0.528572,0.3029373,0.17277494,0.600894,0.023636926,-0.24805783,-0.4261319,0.14568487,-0.08545396,0.65884286,-0.4332982,-0.33809614,-0.2727548,0.1878832,0.23521805,0.2251042,0.14699258,-0.41532552,0.084115036,-0.0022281788,-0.13643998,0.5527413,0.5380192,-0.28202206,-0.2308155,0.16188668,0.32523528,0.122294694,-0.09142816,0.2148692,0.03785711,-0.58446884,-0.2839738,0.07716837,-0.13751024,0.46980068,-0.094217986,0.0053437245,0.6189314,-0.27574873,-0.25212085,-0.07853776,0.071629554,0.23453006,-0.73840994,-0.63231885,0.4749374,-0.36154887,0.15712357,-0.06476854,0.7025884,0.19925351,-0.8259119,0.33516127,-0.65449864,0.14652663,-0.1638642,0.48108226,0.8039862,0.49149665,0.40060616,0.8038423,-0.4643385,0.18895093,0.044157937,-0.108121015,0.03366648,-0.01518929,0.2465017,-0.51688427,0.0019254684,-0.3065899,-0.4114092,0.32692787,0.18969844,-0.62717086,-0.22142047,0.21691318,0.66842973,-0.3659371,-0.07923826,0.93348885,1.3700706,1.3820934,0.03268179,1.3316827,0.36231005,-0.19690591,0.14422789,-0.21975422,-0.7055715,0.19468194,0.3605456,-0.25036743,0.48718452,0.20692764,0.10949382,0.5670855,-0.4640091,-0.15730502,0.0037262847,0.22035237,0.19206543,-0.2210513,-0.63095593,-0.26034537,-0.06815311,0.0828995,-0.32809314,0.19615966,-0.31941512,0.26989582,-0.10177832,1.4802302,0.1445924,0.07735616,-0.03808002,0.4082805,0.23054697,-0.29658726,-0.019055061,0.19741063,0.32784116,0.019900708,-0.64304787,0.012822729,-0.26905367,-0.3384143,-0.23650561,-0.23229192,0.05264437,-0.2549567,-0.36923495,-0.28560722,-0.093157165,-0.2524941,0.37749472,-2.4919508,-0.27911937,0.056348767,0.47526643,-0.15461063,-0.47088557,-0.23992105,-0.2856949,0.17239295,0.2713796,0.48768607,-0.56205064,0.549176,0.30658114,-0.5905805,-0.07041297,-0.7998385,-0.09512837,-0.11744211,0.18059371,-0.045028534,0.05325588,0.10300341,0.16821271,0.6409537,0.08833312,-0.08380123,0.2262662,0.5217661,-0.09564831,0.7347631,-0.1323713,0.6421273,-0.38817313,-0.22344169,0.18820077,-0.568371,0.04843353,0.31971684,0.07256234,0.5709024,-0.59815204,-1.1213433,-0.6090257,-0.09808645,0.8907175,-0.21870667,-0.28506553,0.4489751,-0.6467616,-0.49794233,-0.23327778,0.35915878,-0.09465738,-0.1636406,-0.76239705,-0.05703058,-0.034960967,0.21242024,-0.029504867,-0.014477518,-0.3693148,0.650551,-0.24311529,0.47818175,0.6378618,0.15545917,-0.39311534,-0.37890255,-0.093010716,0.79094696,0.3523381,0.116555095,-0.14413337,0.07222123,-0.04363923,0.041565634,0.21050578,0.7600178,0.79463065,-0.2598935,0.060526513,0.42427263,-0.19013649,-0.021830462,-0.062539466,-0.39787605,-0.27742508,0.23038378,0.6137971,0.7196438,-0.23223153,0.4435444,-0.015161053,0.22731651,-0.027657455,-0.45133913,0.19405493,1.1018788,-0.099460416,-0.42787316,0.7048035,0.24916087,-0.4676635,0.44332924,-0.4775996,0.10672334,0.37967718,-0.16715872,-0.2847651,-0.018578572,-0.25722873,0.0049996595,-0.9637989,0.29524982,-0.060522977,-0.86206263,-0.5101168,-0.30571947,-2.9547057,0.27940968,-0.23537415,-0.08375972,0.14991984,-0.19161853,0.10127889,-0.7166164,-0.73928696,0.15178709,0.1105537,0.47626552,-0.14544672,0.03511825,-0.21504249,-0.33006558,-0.40676343,0.33221045,0.1188539,0.40223664,0.32805803,-0.45922998,-0.022987844,0.0102524,-0.6330178,0.052286502,-0.6199892,-0.32442173,-0.07228351,-0.8576244,-0.3588988,0.726323,-0.14203802,-0.12319484,-0.30148867,0.094482474,0.025647586,0.31183326,-0.09741575,0.355156,0.14162011,0.07028748,-0.080441125,-0.02802114,0.055837784,0.121420175,0.37741297,0.14806259,-0.2975798,0.16123877,0.7276032,0.99980354,-0.118253425,0.85336757,0.6259767,-0.18348356,0.20776488,-0.35719296,-0.20748311,-0.5946668,-0.45036194,-0.20886718,-0.57166153,-0.3532444,0.08828186,-0.38977537,-0.9116331,0.577483,-0.12581539,0.18687536,0.14224233,0.29775605,0.38077796,-0.23086353,0.08861787,-0.23546715,-0.19174576,-0.37576276,-0.371745,-0.5113094,-0.52298284,0.14619544,1.4938358,-0.2682323,0.14994396,0.18253736,-0.35994053,-0.055836216,0.28704378,0.0140809575,0.28764343,0.3326416,-0.14914784,-0.5278886,0.00912081,-0.06641454,-0.12532376,-0.5677827,0.18752284,0.83387065,-0.5939507,0.9777531,0.021589572,0.062009525,-0.16902776,-0.7230446,-0.4064989,0.2074946,-0.10927935,0.65699065,0.34669808,-0.81527543,0.3969178,0.3712467,-0.36899385,-0.7580065,0.318099,-0.11812368,-0.2515666,-0.20158137,0.3579898,0.19173583,-0.13065217,0.0032880849,0.37605304,-0.39482898,0.21993865,0.19473638,0.012172645,0.19389246,-0.19668697,0.040249344,-0.8979563,0.024887638,-0.5556717,-0.21167606,0.13273588,0.06872511,0.14784132,0.0847702,0.19995667,0.5097706,-0.31151542,0.19726568,-0.18372874,-0.38160935,0.30067846,0.5759547,0.2680747,-0.44401696,0.3794552,0.045373198,0.02182417,-0.2320221,0.033088397,0.41820353,-0.00027370453,0.28722584,-0.1407403,-0.3524502,0.1875113,0.67087597,0.07792946,0.30909908,0.025798379,-0.05669812,0.20757885,0.15029007,0.18744653,-0.15408324,-0.41921666,0.15652446,-0.050837215,0.3042258,0.50889975,0.09593748,0.23263845,-0.2412024,-0.17059487,0.2520386,0.21247075,-0.06300292,-1.3038765,0.3719311,0.04743785,0.842448,0.6314258,0.17524092,-0.17172866,0.36917254,-0.27473682,-0.03143932,0.5296479,0.042585872,-0.32701382,0.5680716,-0.6743067,0.7088915,-0.042158548,0.05781865,0.056498088,0.28971437,0.6571151,0.7683891,-0.19990115,-0.09522318,0.0075521288,-0.13371386,-0.04777889,-0.45590365,-0.03355814,-0.5528357,-0.37011775,0.8245936,0.49677238,0.32907888,-0.3196263,-0.15928258,0.26434895,-0.083825916,0.27663207,-0.088805206,-0.111077316,-0.16322842,-0.6910909,-0.18575674,0.63204294,-0.055949662,0.02419557,-0.02316366,-0.19840178,0.34109572,0.106958434,-0.30809548,0.095705725,-0.7153014,-0.19937268,-0.3348007,-0.36610377,0.42913237,-0.34365866,0.037742183,0.10883882,0.16525789,-0.333235,0.47109345,0.22470793,0.85717624,-0.1240725,-0.028565867,-0.18452364,0.31574714,0.147439,-0.037048634,0.16613303,-0.37524176,0.023886291,-0.5944898,0.5225663,0.08210312,-0.38491362,-0.005616952,0.13008128,0.18496136,0.43572375,-0.43025225,-0.11925828,-0.12940319,-0.1393133,-0.32333115,-0.46148387,-0.35499462,0.41196978,0.034263883,-0.09524382,0.039871678,-0.18384123,0.006845738,0.52527386,0.12339842,0.19752832,0.22168303,0.2082542,-0.39544696,0.07125763,-0.14938487,0.4025442,0.08067305,-0.22635311,-0.28456295,-0.22877236,-0.25264433,0.023518898,-0.15854454,0.3634127,-0.13197942,-0.4378009,0.9793241,0.20396072,1.5073792,-0.26927623,-0.34259808,-0.06782117,0.46867684,-0.0036099092,0.19296208,-0.29214457,0.946841,0.62901413,-0.089049436,-0.15180343,-0.53681856,-0.15461455,0.24457246,-0.30128786,-0.34351158,-0.033222828,-0.62058836,-0.2317633,0.24185148,0.08824194,0.24152108,-0.09934039,0.2575529,0.3213761,0.08824552,0.22380473,-0.3180072,0.14757767,0.20870915,0.56424606,0.22020245,0.19419442,-0.35221758,0.25715986,-0.6902191,0.45602047,-0.31456676,0.1953945,-0.18864042,-0.281745,0.19693266,0.106887795,0.22429748,-0.16199178,-0.1426993,-0.097277336,0.8636549,-0.07366944,0.088124745,0.7459343,-0.27804658,-0.07549624,-0.08470762,0.36838153,1.1529298,-0.10380993,-0.14510423,0.29438028,-0.27546895,-0.70676285,0.33054093,-0.18361984,-0.111909024,-0.1124589,-0.19654898,-0.64510614,0.06457372,0.061797317,0.022001771,-0.045806695,-0.42980728,-0.23925166,0.47112226,-0.3176678,-0.12918948,-0.2476533,0.2623286,0.6607867,-0.20096263,-0.59962225,0.17699738,0.2439076,-0.18312454,-0.40709546,0.025803728,-0.4899712,0.29502597,0.13121867,-0.5994211,-0.038054403,0.1788671,-0.4551992,-0.1836391,0.33258963,-0.21209721,0.27526376,-0.2504472,-0.36863652,1.1529698,-0.03135599,0.48932743,-0.6330962,-0.6341962,-1.1632211,-0.21008329,0.25544944,0.11742105,-0.11928842,-0.8584614,-0.010508001,0.025555177,-0.41128695,-0.036748055,-0.39046127,0.42610896,0.16255316,0.36879092,-0.22487141,-0.8002231,-0.05214174,0.2896128,-0.07725346,-0.4740731,0.53809804,0.0704624,1.0130985,0.07176748,0.05455676,0.18030314,-0.41149303,0.33934945,-0.29059452,-0.36738938,-0.5733917,-0.33199573 -312,0.47078353,-0.11855066,-0.7087036,-0.10919465,0.017046558,0.15623331,-0.29674533,0.4230941,-0.008211942,-0.5600849,-0.14987685,0.19703712,-0.18192169,0.27797288,-0.2848237,-0.5248858,0.00093505014,0.2923364,-0.33530828,0.37928736,-0.529774,0.3703206,-0.096659735,0.23517871,-0.02078071,0.08062203,0.4316219,0.15452594,-0.036112323,-0.2015606,0.22115809,0.29112595,-0.57926834,0.39884037,-0.09607733,-0.34686595,-0.0682821,-0.20371014,-0.24961585,-0.75886905,0.3882356,-0.93842846,0.6840992,-0.09062147,-0.37771896,0.16962062,0.15357915,0.18821573,-0.24663165,-0.014917811,0.11269759,-0.21545075,-0.40941855,-0.15056378,-0.09085362,-0.33756644,-0.6789111,0.090769544,-0.59855855,0.09657097,-0.32264093,0.3165485,-0.3266787,0.19515404,-0.16319522,0.5165189,-0.35795724,-0.2224172,0.20940956,-0.11914653,0.13015844,-0.74274623,-0.09162323,-0.19259666,0.10877088,-0.2171591,-0.14211385,0.23759057,0.18595831,0.6277853,-0.016179534,-0.24489951,-0.35429728,-0.07066636,0.18588568,0.40830606,-0.27346757,-0.4463773,-0.309271,-0.11971824,0.53287023,-0.047834046,0.0910354,-0.11013693,0.06707917,0.059064653,-0.2234448,0.3610617,0.69308937,-0.39254567,-0.15641485,0.5256355,0.70174974,-0.117889866,0.005162821,0.08935534,-0.1268486,-0.48861635,-0.18568245,-0.02713871,-0.24079186,0.3899838,-0.14968953,0.1519788,0.4164147,-0.25773466,-0.06678191,0.29499784,0.000779074,-0.013241272,-0.19261466,-0.54152864,0.37295553,-0.3719586,-0.0036248176,-0.28123024,0.63809055,0.01094226,-0.7824741,0.37920597,-0.23550497,0.06697101,-0.079199634,0.7731114,0.67912865,0.6610194,0.19348803,0.8523994,-0.5662221,-0.14680853,-0.01641308,-0.1629171,0.078813,-0.12744223,-0.18520729,-0.32028463,0.08356668,0.15720524,-0.17785653,0.065686,0.6748456,-0.4820611,-0.18106171,0.037432414,0.5302294,-0.38786513,-0.102695234,0.77072644,1.2341207,1.0764757,0.0489401,1.2877532,0.29555386,-0.14836214,-0.27577782,-0.038492315,-0.8454683,0.3962559,0.4593132,-0.10530105,0.47270474,0.218543,-0.13776071,0.36397582,-0.62361276,-0.313748,-0.16290428,0.45056474,-0.032855876,-0.010110745,-0.56257755,0.0029782148,0.3516397,-0.024750806,0.283505,0.3687687,-0.3873895,0.48166677,0.17818049,0.9336253,-0.31269258,0.22926813,0.13575676,0.25003302,0.19554329,-0.05958345,-0.01730962,-0.039735757,0.43192118,0.012832422,-0.618934,0.01078889,-0.1688353,-0.5599512,-0.31107503,-0.16081418,0.09592675,-0.060563482,-0.0023391615,-0.23862149,-0.039906006,-0.4753167,0.228161,-2.3320491,-0.25636408,-0.13984719,0.22964098,-0.14949605,-0.43411872,-0.23344499,-0.4878403,0.56740385,0.32477358,0.43738672,-0.5670813,0.40409455,0.27367273,-0.35729665,-0.16417429,-0.6219663,0.06277374,-0.19351003,0.37617314,0.062963955,-0.33018652,-0.030186048,0.354477,0.5621447,0.02774883,-0.060392655,0.5531711,0.20235561,-0.008707175,0.29554394,-0.004249912,0.60787964,-0.49457186,-0.30322936,0.5317227,-0.46205285,0.20318407,-0.28828576,0.18382035,0.25865176,-0.49203014,-0.96953046,-0.6985767,-0.2888317,1.5624828,-0.36186913,-0.5937621,0.10834455,0.013330107,-0.40050924,0.03287223,0.35254493,-0.38735098,-0.0062542283,-0.8489171,0.026769735,-0.12802733,0.3507985,-0.11598861,0.05068094,-0.65618074,0.61014616,-0.27358672,0.5278892,0.44336012,0.3793844,-0.43362778,-0.5032177,0.064056225,1.3401307,0.50439036,0.12044974,-0.27887,-0.10142549,-0.1687563,-0.10317286,0.0864339,0.50574875,0.7474315,0.075504124,0.09229489,0.22617052,-0.12414937,0.10697523,-0.06018565,-0.44494453,-0.2499269,0.15550177,0.7247268,0.35593864,-0.20071037,0.2595354,-0.10233085,0.26955622,-0.19437853,-0.37527606,0.52030075,0.86698246,-0.26492766,-0.43511522,0.75154793,0.39748648,-0.22040719,0.7138592,-0.74260956,-0.47863337,0.16961966,-0.1423735,-0.24571507,0.08425302,-0.45962617,0.2950742,-0.91186273,0.40664613,-0.31812716,-0.69755036,-0.7514128,-0.19829409,-3.2488973,0.23227254,-0.21544477,-0.076711334,-0.11902834,-0.20945357,0.5164852,-0.51291424,-0.72063416,0.1257039,0.16992092,0.67734784,-0.03664093,-0.102412075,-0.116238795,-0.29610988,-0.1565809,0.20235474,0.34718233,0.19346283,0.23726964,-0.51952046,0.029396841,-0.21359554,-0.4489318,-0.19426605,-0.4625201,-0.26785666,-0.21932903,-0.47089434,-0.28149536,0.63099515,-0.39651057,0.044682544,-0.27510962,0.19843353,0.023327768,0.37403056,-0.31282732,0.1809997,0.13029388,-0.3543638,0.18974553,-0.17413968,0.3529814,-0.014376977,0.21346578,0.45359483,-0.55741954,0.023495693,0.5442054,0.6997754,-0.02263528,0.9181434,0.5689714,-0.09174791,0.12475993,-0.17014049,-0.25891495,-0.57553107,-0.29722854,0.12695378,-0.50793445,-0.33353564,-0.046695974,-0.35677212,-1.1252878,0.6726032,-0.2649191,0.32071292,-0.07855213,0.4619915,0.30880404,-0.038114734,-0.13052474,-0.17007142,-0.22591455,-0.2948722,-0.42957255,-0.7215861,-0.48086688,-0.2040764,1.3063018,-0.16435812,0.060903564,0.01254339,-0.017343283,0.19285771,0.09080986,0.2457502,0.11580718,0.31000522,0.14307001,-0.6279584,0.20645434,-0.31958386,0.010053525,-0.61902577,0.14369221,0.6959865,-0.56744504,0.36594582,0.59370935,0.08626097,-0.2690225,-0.7729517,-0.12756619,0.10873151,-0.09273263,0.62645745,0.34952858,-0.8516203,0.7129227,0.3431268,-0.32080188,-0.7946736,0.37766123,0.053010747,0.08697668,-0.14173214,0.46624425,-0.19827828,0.020155929,-0.29976895,0.19658555,-0.35563594,0.26509267,0.12160147,-0.13853222,0.6308421,-0.4536847,-0.15821497,-0.6822853,-0.07129433,-0.72806126,0.006403177,0.052077875,-0.0048983255,-0.014278495,0.11539734,-0.046721797,0.7146379,-0.5467444,0.042837657,-0.12408941,-0.46267134,0.47441167,0.6516788,0.3715434,-0.27506536,0.6185516,0.007923521,-0.11743653,-0.49545592,-0.09470913,0.5744337,0.009791017,0.16984454,0.061996046,0.12936264,0.30777806,0.64710927,0.34390244,0.47586286,0.08192326,-0.2935714,0.16157572,0.11220518,0.2830796,-0.027095221,-0.43756703,-0.14267768,-0.16495946,0.11942502,0.46558952,0.18138696,0.60070646,-0.27340582,-0.21008825,0.1166428,-0.0035300346,-0.06493114,-1.2419446,0.5857377,-0.005725008,0.58585286,0.41080257,0.05194082,0.09407386,0.49437472,-0.11083751,0.008208286,0.18221903,0.054528926,-0.3255615,0.5404076,-0.69408214,0.35471052,-0.044141926,0.09643555,-0.017570872,0.0032535149,0.5241041,0.8857132,0.04799893,0.23975998,-0.081029736,-0.0896529,0.24665986,-0.30083704,0.41157407,-0.36084655,-0.1465244,0.889905,0.2343687,0.5401375,-0.09197552,-0.16190082,0.026025971,-0.143411,0.19823082,-0.16476782,0.1534794,-0.37076408,-0.52652305,-0.24590541,0.36699268,0.5276288,0.15691978,0.078438774,-0.2519673,0.20623611,0.029152807,-0.053010423,0.007120506,-0.46583194,-0.11647114,-0.24189447,-0.27737486,0.29898354,-0.38515538,0.1628609,0.1757337,0.08578697,-0.4679982,-0.009877091,0.18010423,0.64907587,0.11370211,-0.22005361,-0.24662375,0.08101165,0.27045006,-0.36956698,0.10794711,-0.3143973,0.13344349,-0.6579867,0.41553137,-0.2904576,-0.3170973,0.4598292,-0.24717912,-0.1139382,0.47119838,-0.21763131,-0.13035299,0.19050871,-0.20033875,-0.17292716,-0.40629193,-0.26135474,0.065471336,-0.08917032,-0.026422087,-0.13900341,-0.024702348,-0.1575205,0.40987095,0.2402905,0.10499908,0.6260771,0.24653251,-0.4967044,-0.090307474,0.031149754,0.66544753,0.0046463576,-0.13622367,-0.5784031,-0.6728195,-0.2105965,0.28287023,-0.0765481,0.12570389,0.1112016,-0.4224993,0.6211684,0.06941192,0.8901622,0.028275423,-0.3192988,-0.1999746,0.7309989,0.05127174,-0.17744239,-0.20572431,1.020816,0.69478863,-0.26488063,-0.1012477,-0.57755226,-0.12548915,0.20238596,-0.33205777,-0.33621165,-0.19580522,-0.61051995,-0.26720476,0.30485427,0.42187995,-0.033637784,-0.094452366,0.18172987,0.32593074,0.17946087,0.26546595,-0.5538183,0.164903,0.5632567,0.13299687,-0.039852627,0.12418527,-0.38291252,0.15737702,-0.697224,-0.050334197,-0.24233821,0.09583926,0.005070528,-0.45567575,0.3205856,0.14642893,0.2595321,-0.14966123,-0.3182368,0.011952902,0.48649704,0.031068513,0.07719103,0.7120184,-0.31111652,0.14374259,-0.0068207243,0.39712965,1.2038133,-0.23118803,0.17449428,0.10049543,-0.2458226,-0.64036584,0.3309511,-0.39920232,0.25598356,-0.18255237,-0.44611895,-0.5527657,0.21717669,0.17241032,0.062174734,0.17062117,-0.3578698,-0.42498603,0.056128856,-0.3623408,-0.063114494,-0.1567567,-0.08529287,0.60956836,-0.3836014,-0.28096244,0.07575267,0.6606339,-0.15822728,-0.72100043,-0.14417471,-0.24287303,0.2646163,0.15671286,-0.2652138,-0.09708619,0.016476393,-0.42262834,0.191705,0.22191039,-0.25449777,0.038391396,-0.32021806,0.250171,0.48263714,-0.06385783,0.13292998,-0.5398435,-0.37040117,-1.094698,-0.21443762,0.32989663,0.23539744,-0.059853777,-0.855325,0.08644732,-0.38228434,0.07979318,0.080891095,-0.3547854,0.3469583,0.14751007,0.46651077,-0.044511136,-0.6468863,0.04242966,0.024743594,-0.14508882,-0.33268547,0.77214694,0.055997536,0.8654014,0.06853946,0.20202805,0.10525792,-0.83992296,0.17208593,-0.21958512,-0.29197907,-0.6131825,0.038733426 -313,0.34391734,-0.24701786,-0.61385053,-0.107481025,-0.05177248,0.18940642,-0.27397615,0.22550598,0.04047276,-0.53085905,0.028432822,-0.044953663,-0.12066711,0.358293,-0.11470342,-0.47156727,0.008449086,0.20114414,-0.50952303,0.24767794,-0.52037627,0.38254303,-0.10119032,0.17918661,-0.015829977,0.27312222,0.24049939,-0.0424001,-0.18664637,-0.1698312,0.1383495,0.015496961,-0.5666715,0.18450557,-0.037504364,-0.37184018,0.008534503,-0.40877715,-0.49464858,-0.5950306,0.41800994,-0.82690173,0.50986934,-0.002005905,-0.19691592,0.19943507,-0.0074485857,0.33533257,-0.30891982,0.19769557,0.2969848,-0.23835577,-0.2011898,-0.16953593,-0.020778792,-0.27409208,-0.5652874,0.057441313,-0.5387412,-0.019021956,-0.24262692,0.17454024,-0.40564385,0.18986899,-0.25051528,0.3928957,-0.46576625,-0.13225314,0.24619831,-0.0845576,0.25922057,-0.544039,-0.07978327,-0.070864595,-0.02423271,-0.14328259,-0.029244678,0.30517462,0.08872022,0.55974567,-0.054342173,-0.12671329,-0.30706814,-0.052145313,0.19289993,0.54812396,-0.046693016,-0.2984536,-0.16269454,-0.10581699,0.18714263,0.0011386137,-0.04622399,-0.20362444,-0.09808969,0.14005218,-0.24747133,0.2413849,0.59183,-0.25264254,-0.083228804,0.3884825,0.5089119,-0.07654204,-0.038309466,0.11863079,0.085902594,-0.5031365,-0.2290488,0.08512474,-0.18028669,0.45876935,-0.10497309,0.34164822,0.67883086,-0.3777396,-0.0148249185,0.0027043105,0.02314939,0.0065939864,-0.13783321,-0.4276261,0.26341766,-0.5278463,0.019988561,-0.13456751,0.82637316,0.05656079,-0.67076474,0.3244491,-0.38062745,0.16714239,-0.1763129,0.6826876,0.62077874,0.49311885,0.24462868,0.77877724,-0.6051379,0.13269511,-0.048738535,-0.3423009,0.060819853,-0.08160555,-0.10607276,-0.35556784,-0.036628954,0.07198462,-0.13002142,-0.06360081,0.6029746,-0.35668468,0.035306074,0.049680926,0.76269096,-0.39089808,-0.013806427,0.59202754,1.1693611,1.1143243,0.027629098,1.099994,0.36767516,-0.2585166,-0.07497408,-0.24964997,-0.7705814,0.22694692,0.33826917,0.07470643,0.29782063,0.10811874,-0.2600795,0.47309986,-0.5826463,0.113534756,-0.20012353,0.2746378,-0.10705019,-0.08546083,-0.4632269,-0.17645095,0.15129709,-0.025651967,0.085104465,0.29236725,-0.28520998,0.3606776,0.0310626,1.4515622,-0.12325177,0.17367464,0.12229053,0.40349242,0.11931164,-0.241436,0.012459715,0.09361281,0.5106384,0.044068154,-0.6893758,0.12107625,-0.19059515,-0.5385357,-0.2951449,-0.28967947,0.004645254,-0.19326659,-0.47254476,-0.13421187,0.015714558,-0.39481673,0.32482007,-2.4583323,-0.047141533,-0.06816233,0.34933648,-0.24767238,-0.24663876,-0.075377226,-0.39012858,0.39796504,0.39843675,0.4424835,-0.5857473,0.5031236,0.4204726,-0.28673553,0.0036333243,-0.5956407,-0.11349325,-0.16212752,0.31933302,0.14536722,-0.13082089,-0.15911415,0.168871,0.47748005,-0.20302178,0.076726325,0.2705182,0.35877132,0.029614445,0.42687738,0.1258489,0.5325626,-0.50140935,-0.18279769,0.4011962,-0.4724553,0.16923505,-0.21961358,0.15819123,0.32811287,-0.39840528,-0.8924299,-0.50273603,-0.17682041,1.3098052,-0.2314319,-0.43544897,0.27753788,-0.117512114,-0.2557751,-0.032531932,0.37971827,-0.21489404,-0.11684804,-0.8215631,0.004784129,-0.1737414,0.36093134,0.013030372,-0.03917018,-0.4377182,0.5764894,-0.17415498,0.646397,0.45972922,0.25775516,-0.20376574,-0.3609494,0.12628083,1.1232353,0.39789346,0.13624196,-0.32497516,-0.12515996,-0.16658163,-0.097872086,0.08050768,0.3688454,0.8029932,0.02038001,0.26994234,0.2087856,-0.11559876,-0.011601168,-0.07316845,-0.36199743,-0.1119325,0.030382443,0.5681343,0.5036156,-0.06383156,0.37351513,-0.08428459,0.2420805,-0.27065244,-0.34891504,0.4447728,0.77658623,-0.09982768,-0.33778164,0.65783656,0.5564558,-0.21976423,0.5390712,-0.65060556,-0.4429044,0.3455435,-0.20329306,-0.33907315,0.24708247,-0.3859708,0.18615104,-0.86564523,0.4371071,-0.23117904,-0.6408095,-0.69528073,-0.3179847,-3.5320303,0.13668247,-0.23685865,-0.19978468,0.07975599,-0.044978555,0.45877847,-0.5495415,-0.41872433,0.11628356,0.11020233,0.73362595,0.15409862,0.033859894,-0.26691115,-0.04638617,-0.31295058,0.19071582,0.24543591,0.109469794,0.15267378,-0.5598662,-0.0036216737,-0.3089458,-0.38454404,-0.00293233,-0.5194246,-0.40570801,-0.22982581,-0.35770556,-0.4199533,0.65966725,-0.17724514,0.10744369,-0.20814818,-0.014878035,-0.059351113,0.3549224,0.08364944,0.08256375,-0.03434056,-0.19123237,0.054018572,-0.30395228,0.28529578,0.030006595,0.3618142,0.43280545,-0.26943952,-0.08882683,0.57373375,0.5497986,-0.087854885,0.78049827,0.49339956,-0.16991459,0.29207906,-0.11925849,-0.22124015,-0.54554397,-0.4475893,-0.005435733,-0.43000373,-0.45569167,0.015235277,-0.39392596,-0.8906367,0.469094,-0.117366076,0.07019324,-0.05573795,0.32642406,0.28963217,-0.061036035,-0.09148957,-0.14573999,-0.03933945,-0.23249312,-0.3873004,-0.8206654,-0.40620956,-0.08308289,1.2947065,-0.08343945,-0.09973995,0.11531102,-0.15470281,0.025406739,0.0420848,-0.026918657,0.29800108,0.36914387,0.0043545086,-0.68430495,0.41112188,-0.37294313,-0.05557781,-0.6202145,-0.016737849,0.60574085,-0.63816184,0.34905466,0.56897175,0.09083076,-0.04565168,-0.64057475,-0.12913875,0.039557286,-0.11846731,0.506982,0.2697838,-0.8671764,0.59717464,0.22131203,-0.3320502,-0.6770782,0.40891466,-0.006095497,-0.22120409,0.0647543,0.22061148,-0.24800175,0.048853535,-0.31604055,0.2348984,-0.4247537,0.30191013,0.24977918,-0.11031337,0.36830807,-0.31548887,-0.09986598,-0.5647927,0.0111937765,-0.4704315,-0.12148152,0.01885738,-0.09524145,0.15651534,0.22606008,-0.10391235,0.44365633,-0.2721432,-0.0063639223,-0.13470855,-0.36423385,0.50393194,0.4720894,0.38180417,-0.41665572,0.6418592,0.037008468,-0.19047895,-0.31863552,0.13967901,0.5639319,0.091094084,0.3992583,-0.08451756,-0.09735911,0.37943682,0.82743806,0.26160097,0.59021837,0.08460506,-0.25084686,0.17360465,0.1772796,0.11643301,0.09961256,-0.32168669,-0.017378982,0.014552951,0.26308563,0.39796,0.03180116,0.66929185,-0.3071146,-0.11554934,0.12758031,0.13640691,-0.19016777,-1.0852166,0.48412788,0.120320335,0.7196886,0.3962712,0.08199768,0.09264999,0.5798567,-0.27812803,0.078187324,0.1452623,0.06668255,-0.4715183,0.43856105,-0.60637015,0.50840825,-0.06384384,0.041839607,0.07722619,-0.08867752,0.5329275,0.72309685,0.038255177,0.10745402,0.011771786,-0.3739082,0.1973235,-0.26554415,0.2906267,-0.568759,-0.24941184,0.7415592,0.38092086,0.30980262,-0.014471217,-0.051139764,0.05059727,-0.140022,0.1300924,-0.09533362,0.10070045,-0.08649418,-0.6620501,-0.23651727,0.43600973,0.057997808,0.039838385,0.058181588,-0.26362267,0.21514578,-0.056700207,0.043186706,-0.0013115645,-0.57905406,0.049358543,-0.42196593,-0.3483874,0.28923625,-0.2778589,0.26037264,0.11903458,0.053395506,-0.5496463,0.13271584,0.17161769,0.71765536,-0.06971156,-0.15844382,-0.31497845,0.035123207,0.3483656,-0.24891016,-0.10605195,-0.38495535,0.05875374,-0.69624215,0.43191424,-0.22447555,-0.27540907,0.28291592,-0.2274153,-0.06030084,0.6244572,-0.19353376,-0.119036116,0.17430934,-0.0797978,-0.28768677,-0.20504738,-0.16612735,0.21819381,0.1696043,0.03811558,-0.052090075,-0.024639416,0.004876717,0.41873127,0.1180346,0.17479496,0.43705386,0.11231289,-0.45830834,-0.16711944,-0.08283673,0.59045357,0.051703013,-0.11620351,-0.59830767,-0.54042083,-0.22523974,0.22377162,-0.20302843,0.3325315,-0.004581396,-0.32876435,0.8068558,0.006289673,0.99032336,0.08269252,-0.3729577,-0.020296521,0.68685085,0.05066008,0.14849451,-0.34247684,0.88843,0.5522837,-0.19016804,-0.25947514,-0.40620327,-0.08201651,0.087917134,-0.22515036,-0.456731,-0.103160314,-0.72402656,-0.20353095,0.27097014,0.37335718,0.03342045,-0.07074983,0.13511579,0.30113715,0.060824115,0.27263457,-0.5771014,0.0032299082,0.30402005,0.13689464,0.015366787,0.15620346,-0.52543366,0.30447283,-0.67330384,-0.012638374,-0.1480514,0.11248732,0.05013385,-0.3177691,0.37650305,0.15963641,0.276647,-0.36100194,-0.19787216,-0.098980315,0.52413744,0.17699386,0.27620646,0.81898713,-0.26787362,0.040157717,0.0052310484,0.45637995,1.1750598,-0.4059836,0.039867274,0.36320674,-0.2733321,-0.77252394,0.26341954,-0.3273196,0.052968018,-0.15082102,-0.46474373,-0.5649568,0.39633915,0.1460478,-0.14924821,0.20993003,-0.5389637,-0.19407202,0.24684331,-0.19994621,-0.2955775,-0.36954206,0.030989153,0.589241,-0.29549047,-0.2147296,0.077373356,0.52821565,-0.21139762,-0.48552817,-0.022760976,-0.4207159,0.30309325,0.015636198,-0.23878536,-0.0299129,0.0027119636,-0.36709887,0.24289624,0.34516615,-0.2931588,-0.07892458,-0.25045437,-0.070692405,0.7023014,-0.11529139,-0.038438026,-0.6204254,-0.430383,-0.99665505,-0.261881,0.6247443,0.1517916,-0.07906333,-0.5292574,0.020394385,-0.073290244,0.015833752,-0.2132307,-0.49587914,0.41417333,0.11227678,0.33521023,-0.02649742,-0.62118614,-0.043262184,0.09270062,-0.45778984,-0.40947983,0.59724116,-0.09339109,0.79686457,0.07220672,0.17406784,0.2689337,-0.60281,0.3133487,-0.27750772,-0.23651457,-0.69934094,-0.051427174 -314,0.51744205,-0.16557525,-0.5528868,-0.09729891,-0.16925281,0.22943935,-0.2023794,0.48433718,0.122084565,-0.3322768,-0.14316045,-0.07244648,-0.0017319262,0.36038506,-0.18100695,-0.47898322,0.04669307,0.14213,-0.57942444,0.71578914,-0.46716937,0.29169905,0.031010201,0.2577967,0.3154215,0.17075394,0.13102202,0.0016495108,-0.32129398,-0.3384474,-0.08444525,0.36022106,-0.33487147,0.06544135,-0.21022095,-0.42078984,-0.14278439,-0.5257675,-0.49824885,-0.70560354,0.15961011,-0.85435975,0.71089005,-0.11260154,-0.31224817,0.36282876,0.22819702,0.21136741,-0.104530334,0.0190754,0.19841976,-0.07840608,-0.088110246,-0.10006365,-0.33853424,-0.48872533,-0.58582157,0.07454508,-0.45471328,0.009687038,-0.2034455,0.11167769,-0.28783208,-0.0052770297,-0.19491173,0.44203052,-0.41783693,0.001041766,0.10074683,-0.09642465,0.12492573,-0.6600465,-0.21070054,-0.07886334,0.32790914,-0.15989906,-0.19320671,0.20593381,0.43848366,0.51642895,-0.03277523,-0.25172517,-0.5156785,0.046028927,-0.015085375,0.5484015,-0.21958661,-0.6790152,-0.25000608,0.11944227,0.42627946,0.076622844,0.15024033,-0.07878114,-0.073846854,-0.021179438,-0.3750072,0.51544654,0.5046983,-0.3181181,-0.18913631,0.4495278,0.34592003,0.23165278,-0.23927672,-0.06897535,-0.12491291,-0.5583083,-0.008057381,0.03237593,-0.13822171,0.5335271,-0.18223272,0.23925243,0.45845836,-0.10214748,-0.03189349,0.2850978,-0.012338148,0.033985488,-0.08757284,-0.26081258,0.12773632,-0.41013697,0.036723673,-0.15636362,0.61129296,0.12917192,-0.72642213,0.35976082,-0.42869893,0.12465086,-0.068438545,0.39454702,0.7316291,0.34697372,0.16843864,0.49212354,-0.13665828,0.09969356,0.0115889665,-0.23790474,-0.040726386,-0.18863821,0.09176038,-0.58138543,0.16206105,0.02854794,-0.06565003,0.22668839,0.645354,-0.5866548,-0.24688426,0.22306436,0.85628384,-0.22055271,-0.2598915,1.0531149,1.1361573,1.0095378,-0.015684856,1.0927861,0.25858894,-0.11803135,0.02233134,-0.37403706,-0.4356497,0.22398582,0.24414796,-0.41374665,0.35148957,6.52194e-05,-0.034152612,0.46845877,-0.33443704,-0.17452185,-0.19333169,0.14756495,0.21918215,-0.043046046,-0.4450086,-0.36732382,-0.10348528,0.017083919,0.33233845,0.29930368,-0.21419702,0.4788438,0.00922006,1.5501045,0.0060358844,-0.07048105,-0.04785627,0.44180438,0.21592139,-0.04788815,0.08058972,0.16016054,0.34803674,0.020778839,-0.41737074,0.13143054,-0.280384,-0.43897206,-0.10967251,-0.27319103,-0.2369971,-0.2237258,-0.50857854,0.04333599,-0.052605584,-0.39015463,0.42235318,-2.9672525,-0.3165742,-0.15515852,0.23420572,-0.19038185,-0.4760355,-0.12858397,-0.53164256,0.48270494,0.19605964,0.4981337,-0.6123926,0.55145717,0.1268805,-0.5391775,-0.12511608,-0.59449553,-0.13777004,0.048103355,0.5034164,-0.026829254,-0.17897949,0.3587351,0.19054209,0.5565561,-0.059652377,0.11878251,0.22057524,0.425856,-0.050794832,0.51381326,-0.07588155,0.7156165,-0.23139025,-0.20814888,0.41662043,-0.42972106,0.29136628,-0.17504255,0.21065791,0.4865863,-0.34096876,-1.0072689,-0.5062397,-0.0010006666,1.1635873,-0.09136148,-0.41749084,-0.0012241363,-0.21419811,-0.32397974,-0.025620075,0.39359412,-0.19712272,-0.15597378,-0.7799404,-0.0037683647,-0.1039552,0.015587095,-0.1816242,0.045154158,-0.51494336,0.5957534,0.044360843,0.46720654,0.18462642,0.251215,-0.36052674,-0.48116368,-0.035360314,1.037732,0.5261061,-0.003855145,-0.20526582,-0.024683062,-0.4049366,-0.039445713,0.102653295,0.74093235,0.5270256,0.050891154,0.004031984,0.23418067,-0.014346512,0.20883936,-0.22058313,-0.25796923,-0.2070041,0.18633427,0.65731084,0.6205649,-0.053418234,0.8033077,-0.20099878,0.33705392,-0.25566596,-0.43194532,0.49066934,0.9076718,-0.2305481,-0.39604002,0.3851382,0.469932,-0.09826081,0.34783062,-0.50417197,-0.50455827,0.27054802,-0.18014635,-0.28396347,0.42232165,-0.2887682,0.08352138,-0.93965966,0.30296925,-0.34757745,-0.5438355,-0.6069696,-0.15785584,-3.1164246,0.16314891,-0.13519141,-0.15462631,-0.0957314,-0.3505675,0.07816348,-0.5242754,-0.5703565,0.11302366,0.11115217,0.65868956,-0.14013529,0.087317176,-0.21611395,-0.24593128,-0.17120337,0.25771523,0.110564895,0.47096786,-0.09533162,-0.3760188,-0.10976664,-0.17611074,-0.40131664,0.07313967,-0.7829498,-0.44955307,-0.035664774,-0.5103843,-0.24407601,0.633489,-0.32721978,0.032608323,-0.17813975,0.13996972,-0.06537845,0.20857175,-0.057868395,0.22266549,0.04647668,-0.27474144,0.30525473,-0.19638102,0.21065713,0.041754737,0.3553728,0.43493894,-0.02197233,0.35559654,0.5395767,0.6837536,-0.07135911,0.8418858,0.36885244,-0.13668273,0.26993528,-0.29632515,-0.16387731,-0.51785904,-0.3226344,0.056618404,-0.45252475,-0.44837418,-0.22639489,-0.3472618,-0.80661243,0.57718873,0.0007567207,0.076657206,-0.15625069,0.52062595,0.6871433,-0.24549259,0.119879484,0.061517175,-0.06714392,-0.3959425,-0.33992642,-0.60661906,-0.44140413,-0.14189857,1.0567402,-0.08457085,0.110050544,-0.0120914085,-0.21781506,-0.09803454,0.14121781,0.107745506,0.039701767,0.37686604,-0.36025542,-0.68435895,0.2904105,-0.47215664,-0.12366312,-0.44707793,0.34325877,0.6174772,-0.43719786,0.47771472,0.5567977,0.15920617,-0.21877457,-0.48824355,-0.039836917,0.036790546,-0.044809863,0.35259566,0.21957022,-0.67899984,0.51615715,0.2385536,-0.28104627,-0.6093079,0.64816445,0.12486603,-0.20166321,-0.14574972,0.31366667,0.2831417,0.004740451,-0.36611795,0.23687503,-0.44515368,0.3670718,0.10904596,0.050159864,0.34366184,-0.2759882,-0.18711956,-0.6968675,-0.033756264,-0.48704067,-0.34025708,0.2571201,-0.0030698418,0.35913646,0.06847045,-0.025022106,0.23569378,-0.53315514,0.08261926,-0.112184756,-0.32739878,0.29372007,0.4598528,0.47556102,-0.4923379,0.55923325,0.11037622,-0.072529085,0.08566152,0.06898681,0.49033782,0.022164373,0.4146808,0.1086267,-0.06861701,0.34073144,0.8140741,0.24961667,0.3022122,-0.003861936,-0.24362607,-0.06348314,-0.13325769,0.1920138,-0.05670448,-0.553065,-0.11595914,-0.18644947,0.27896088,0.3936773,0.053831093,0.33480814,-0.12191612,-0.38278607,0.012477931,0.1760367,-0.016216304,-1.492558,0.4250844,0.13180414,0.9130396,0.17404357,0.0020255486,-0.032165386,0.61720335,-0.15081906,0.12190766,0.39014637,-0.016968815,-0.32611415,0.4567181,-0.7744652,0.48893872,0.07494051,0.07252038,-0.037962515,-0.038107388,0.35979825,0.8389107,-0.28942066,0.10049946,0.112653516,-0.3861073,0.10509275,-0.28702193,0.14378262,-0.5319474,-0.21051213,0.79617745,0.48727754,0.31329435,-0.119253196,-0.00089727045,0.16955797,-0.16732177,0.03552235,0.16767338,0.27780542,-0.26647818,-0.7143936,-0.08107621,0.39078015,0.004993822,0.17254023,0.14670639,-0.11581696,0.2588808,-0.16776428,0.0347496,-0.06876202,-0.47772694,-0.040695764,-0.41620082,-0.35514995,0.42192382,-0.33766985,0.19351864,0.18650071,0.06844523,-0.14295033,0.34850064,0.15204713,0.6358879,-0.07378616,-0.28526434,-0.29945153,0.07384478,0.16589643,-0.24083942,-0.12726882,-0.17421418,0.22111592,-0.607304,0.3619981,-0.1143739,-0.29285476,-0.049855214,-0.014048902,0.15128306,0.3724459,-0.07443539,-0.088414796,0.026478497,0.049413405,-0.2948267,-0.09300136,-0.09328873,0.288016,0.34659526,-0.12852195,-0.1282966,-0.028356755,-0.12611079,0.43252128,-0.03104511,0.44068673,0.5189806,0.26597616,-0.21509574,-0.123795554,0.21942899,0.63918203,-0.0969534,-0.13899599,-0.39129838,-0.3495423,-0.32848868,0.23780768,-0.11237014,0.32543358,0.10524429,-0.16046534,0.6223555,-0.13738789,1.3185252,0.07031636,-0.3643258,-0.015149092,0.5181554,0.032063182,-0.10139481,-0.24396655,1.1085514,0.40480295,0.08918524,-0.048661098,-0.42128196,0.050838448,0.12379177,-0.21776527,-0.2764435,0.047978632,-0.53429234,-0.32070586,0.27354035,0.10384249,0.2595289,-0.11905599,0.16563262,0.33319268,0.06263541,0.21392663,-0.5995305,-0.1293075,0.24465951,0.35103428,-0.20454772,0.1484944,-0.5587991,0.2319568,-0.56833977,-0.015649866,-0.23586008,0.17678134,-0.11093758,-0.21343108,0.37012327,0.009759876,0.34141967,-0.38973075,-0.3576264,-0.08593542,0.37794203,0.08103359,-0.02376879,0.4384529,-0.19799678,-0.043420196,0.21369031,0.50607413,1.1074661,-0.27873835,0.07857733,0.3396742,-0.29573902,-0.61062056,0.26449788,-0.28984702,0.3000824,-0.0045368117,-0.19220959,-0.58467066,0.40774506,0.13423282,0.14493296,0.03697891,-0.5041738,-0.0631438,0.32615376,-0.31019047,-0.17495257,-0.43483284,0.009862844,0.46569014,-0.31407708,-0.29371104,0.0011650622,0.3161537,-0.20582822,-0.5969833,-0.03121732,-0.37922922,0.21826838,0.094663545,-0.33478308,-0.2323651,-0.12077082,-0.41929403,0.33710524,0.3571147,-0.3016988,0.05009636,-0.22901908,-0.1942565,0.8857552,-0.31144392,0.32907328,-0.49644873,-0.4506749,-0.71655595,-0.39274412,0.07088551,0.20171942,-0.13533853,-0.7415056,-0.043720294,-0.26121953,-0.40248492,-0.090446115,-0.28289315,0.41008234,0.03678887,0.33322796,-0.19727807,-0.80232114,0.19397761,0.08172771,-0.13621339,-0.48183373,0.44078094,0.040148657,0.729481,0.1352846,0.23353964,0.34736043,-0.3985985,-0.092031755,-0.18197033,-0.06201394,-0.76837856,0.06631105 -315,0.3413685,-0.34847164,-0.50588316,-0.1132708,-0.33429,0.05745491,-0.2998006,0.14567547,0.14381623,-0.44857675,-0.047738247,-0.09363298,0.14198646,0.37799352,-0.09594727,-0.5551313,-0.0015381405,0.11815327,-0.6994541,0.50608975,-0.59873426,0.39356014,0.187391,0.3794183,-0.046197116,0.3703365,0.27869055,0.04268105,0.018878784,-0.11502641,-0.30363077,0.17227122,-0.5323204,0.17566617,-0.22803487,-0.45710674,0.19627622,-0.28887463,-0.11892561,-0.7771389,0.03098767,-0.9768024,0.5405691,-0.16053505,-0.20044568,-0.027385626,0.19885515,0.40703186,-0.3388086,0.17454918,0.06939609,-0.29484925,-0.06454957,-0.3879626,-0.081832506,-0.49984142,-0.4167173,-0.049688075,-0.7887731,-0.4300067,-0.09404046,0.13391533,-0.34289208,0.07297599,-0.17364076,0.15348913,-0.4117226,-0.096502356,0.29036143,-0.33627516,0.36889938,-0.4709981,0.012732251,-0.040141765,0.3627688,-0.11409068,-0.21011356,0.2881512,0.32703486,0.5549231,0.23975895,-0.37700078,-0.048059948,-0.20700362,0.1513386,0.4087588,-0.05539169,-0.31738684,-0.33811226,-0.0017443427,0.29202223,0.43931028,0.08021414,-0.17353341,0.083874166,-0.11152865,-0.24410519,0.25958976,0.53149456,-0.38260725,-0.33939424,0.18035075,0.6808344,0.00961563,-0.24305712,0.2170748,-0.020406669,-0.39946026,-0.21730936,0.13893107,0.056196306,0.53754985,-0.036977734,0.19688585,0.71750504,-0.13717273,0.059846144,-0.07037068,-0.11889909,-0.26056802,-0.24279752,-0.07000048,0.22387567,-0.74968,-0.0039890492,-0.2631924,0.66159546,0.18820815,-0.7329728,0.44959527,-0.48581156,0.0791403,-0.11065917,0.61502755,0.520369,0.36252183,0.25318483,0.8375235,-0.42767796,0.25973925,-0.08046215,-0.38327006,-0.05621304,-0.3444504,0.08987652,-0.533023,0.37819663,-0.08767843,0.26723242,0.051708855,0.41214833,-0.5397831,-0.10826145,0.27906355,0.87071526,-0.34361118,0.0095202755,0.6971712,1.1199192,0.93100685,-0.120526776,1.3139865,0.36425424,-0.19202837,-0.0065008574,-0.025127213,-0.5113229,0.10875099,0.42189333,0.25632626,0.4029805,-0.035501186,0.018977566,0.33801562,-0.29297575,0.09483989,-0.044153415,0.14416017,-0.059311707,-0.08854319,-0.5447245,-0.036735952,0.1254671,-0.25583845,0.022446709,0.28487402,-0.09574264,0.5968801,0.024444252,1.5016495,-0.18303771,0.07173236,0.11945764,0.53587824,0.37362844,-0.0725201,-0.013104728,0.45249483,0.38828135,0.0038029552,-0.45790836,0.22030266,-0.3293365,-0.54547685,-0.13153997,-0.36497575,-0.086412035,-0.010894426,-0.44954208,-0.16040398,-0.0109188985,-0.33389348,0.34596154,-2.7294085,-0.28728512,-0.1459565,0.3111225,-0.39162564,-0.18879496,-0.12298907,-0.3690672,0.31919998,0.3481038,0.34047166,-0.6539345,0.56330687,0.5877328,-0.2552635,-0.20161493,-0.6141032,-0.127122,-0.04595946,0.5514626,0.027296275,-0.28623253,-0.25894192,0.282695,0.7111715,-0.07603153,0.19228114,0.43748623,0.37278724,0.089197315,0.6151245,0.035053916,0.5672943,-0.38405737,-0.10686115,0.39670494,-0.1839509,0.24449399,0.03936967,0.17171267,0.43274498,-0.41152218,-0.79757273,-0.6827259,-0.448646,1.034089,-0.36838728,-0.48197207,0.1430236,0.025700228,-0.14166902,0.026887996,0.38307992,-0.019202087,0.30689344,-0.6056456,0.11082548,-0.095069565,0.20389497,0.02911513,-0.04155189,-0.35485205,0.674763,-0.066128895,0.6691063,0.27918157,0.21783611,-0.01610962,-0.33122277,0.01224208,1.0396773,0.2889843,0.08265467,-0.20295154,-0.24072422,-0.27959752,-0.18937135,0.0050322884,0.4628251,0.98617303,-0.12397225,0.122655876,0.30689248,0.040897984,0.0025770802,-0.04142041,-0.2019014,0.05253791,0.17797658,0.39059612,0.44800502,-0.11799506,0.42262825,-0.28598526,0.42114636,-0.17705777,-0.63221544,0.47134972,0.549466,-0.20024215,-0.0704921,0.5274846,0.48708487,-0.6413608,0.5171696,-0.798634,-0.3201442,0.7178529,-0.10512304,-0.474138,0.28995234,-0.25206017,0.28250363,-0.970668,0.24861859,-0.30139646,-0.36190742,-0.2756233,-0.27279416,-3.782872,0.27419105,0.040589787,-0.09953223,-0.2971972,-0.09674927,0.3022301,-0.5227732,-0.5800397,0.0028843454,0.20119755,0.5817111,-0.12933435,0.05062994,-0.51082987,-0.16622521,-0.042652737,0.35044572,-0.020113068,0.12851359,-0.2817263,-0.32747886,-0.24137414,-0.12401606,-0.54055727,0.22953251,-0.6443453,-0.43945575,-0.17564337,-0.42160764,-0.23268506,0.51240915,-0.26853347,0.008701482,-0.22312011,0.010047832,-0.23481742,0.11733564,0.16082372,0.21733348,0.07822589,-0.083037324,0.004298764,-0.3863173,0.23758231,-0.010193421,0.38249296,0.10012799,-0.14422278,0.05417972,0.38654834,0.59504765,-0.20630734,0.8816699,0.060109768,-0.06035,0.4594508,-0.3532397,-0.31321293,-0.7037059,-0.42837754,-0.19316682,-0.42004487,-0.6133731,0.1339298,-0.26225767,-0.7696652,0.75831264,0.11868082,0.3980697,0.0019762425,0.5632188,0.3699271,-0.15841614,-0.115436845,-0.04365133,-0.18816482,-0.5209335,-0.3199558,-0.6887173,-0.5263442,0.12140907,0.80801076,-0.4236329,0.051720973,-0.010024999,-0.14224488,0.06508715,0.21670322,0.3467074,0.34478974,0.4739239,-0.031524807,-0.74175435,0.46617046,0.078076676,-0.20973,-0.41345373,0.016331013,0.6299247,-0.81751496,0.53015935,0.3340064,0.10851394,-0.009541603,-0.49908093,-0.0684498,0.009809802,-0.31533688,0.53413373,0.059647474,-0.84414214,0.5018898,0.4423186,-0.30679798,-0.6326052,0.21183386,-0.10026206,-0.21773997,-0.1488653,0.37728882,0.0027958325,-0.037225995,-0.14524218,0.082591906,-0.66341656,0.1771324,0.39625248,0.0011035204,0.311824,-0.07639007,-0.45898676,-0.60216445,-0.023202134,-0.60513455,-0.1520001,0.30066368,-0.12222139,-0.17538984,0.35131106,-0.054073017,0.43754557,-0.3409669,0.1402545,0.106274135,-0.37353644,0.34490234,0.49237347,0.17735751,-0.38265276,0.49730363,0.14149919,-0.30327225,-0.1248366,-0.053990774,0.42192087,0.13164487,0.29222605,-0.15963085,-0.062035646,0.4317854,0.7971502,0.24201016,0.54665923,0.11649247,-0.06680634,0.42761317,0.14979695,0.070049815,0.14215888,-0.42006463,0.07436478,0.016453627,0.141077,0.4959011,0.30513898,0.3155244,0.101070605,-0.05855679,0.018860383,0.16590694,-0.1876343,-0.9537115,0.33477202,0.29541317,0.7092351,0.4424588,0.21381949,-0.10413963,0.47782776,-0.3553557,0.12647857,0.32047603,-0.048733596,-0.4157772,0.8736337,-0.624236,0.2869416,-0.1694741,0.0016933616,0.115160026,-0.021681266,0.5055233,1.0253782,-0.11298341,0.062322207,-0.07390324,-0.007259258,0.05396209,-0.3343974,-0.11052046,-0.17275403,-0.28668424,0.64164144,0.32858038,0.37515777,-0.26952794,-0.12556358,0.037664797,-0.10141083,0.28843427,-0.08142711,0.12454784,0.09506755,-0.24361052,-0.22967115,0.7016637,0.12827303,0.09889066,-0.19783385,-0.49875566,0.14628948,-0.09198512,0.0938291,0.016645487,-0.67583,0.21551763,-0.23895833,-0.5637211,0.6087044,-0.2409353,0.01275021,0.18151297,-0.044303775,-0.08990825,0.06284881,0.03299457,0.64719707,0.15687421,-0.29988042,-0.3569402,-0.036028672,0.17321014,-0.38780212,0.09880643,-0.37121627,0.13158576,-0.6093846,0.57818,-0.01348645,-0.54919106,0.32295945,-0.16392449,-0.13658085,0.5190349,-0.076839924,-0.18179809,-0.0074710823,0.0007313277,-0.43476486,-0.15906748,-0.26890263,0.26396495,0.009882705,-0.10291598,0.08788286,-0.09731964,0.027837455,0.47345623,0.056201924,0.37299317,0.11084629,-0.13744578,-0.31870922,0.26988727,0.15919529,0.27744848,0.019641936,0.121776536,-0.14501722,-0.34080854,-0.2678171,0.113336824,-0.17428745,0.23821568,0.11533741,-0.26842132,1.0720326,0.10951834,1.2355394,0.05769113,-0.41025785,-0.03563157,0.49707156,-0.03857728,0.055064537,-0.43722865,0.9965619,0.6688398,-0.11626337,-0.06246803,-0.26648286,-0.21337166,0.3290977,-0.39678416,-0.05112425,-0.08078371,-0.68577605,-0.42108265,0.31771317,0.28077212,0.23901394,-0.06634255,0.1251909,0.026167925,0.075976096,0.19781582,-0.72043496,-0.19201064,0.22714822,0.22720662,-0.31631687,0.044806607,-0.36087593,0.39832544,-0.759088,0.17398548,-0.54564613,-0.05493256,-0.061523598,-0.42139435,0.15001805,-0.12946382,0.23230852,-0.25286725,-0.398947,-0.010662858,0.3502173,0.11941885,0.21670552,0.6668495,-0.2605113,0.2613848,0.19549395,0.41687775,1.3122321,-0.32964876,-0.17860796,0.29994208,-0.3759747,-0.6627437,0.20837796,-0.3946984,0.0008844393,-0.10544358,-0.5279279,-0.40125498,0.24410772,0.3173366,-0.07022209,0.105507314,-0.68523735,-0.019500494,0.27247366,-0.3203396,-0.24784441,-0.20529246,0.28754538,0.7760014,-0.30662584,-0.25759563,0.07252257,0.34687564,-0.36977476,-0.7184253,-0.06455616,-0.11663122,0.39685816,0.16698305,-0.2567555,0.11495621,0.22679329,-0.5250549,0.10066128,0.5327891,-0.28818864,0.14844243,-0.27833322,0.0707232,0.93748105,-0.15996528,-0.35843238,-0.60659635,-0.52292347,-0.87397563,-0.57317144,0.2860518,0.20282969,0.13992074,-0.2632853,0.026705146,-0.26177973,-0.20382714,0.1348577,-0.41282204,0.27460846,0.04077145,0.635588,-0.2737996,-1.005823,0.19579895,0.21098618,-0.11110008,-0.62722635,0.6671189,-0.19848903,0.7795045,0.008611978,-0.19724552,0.19481643,-0.6057162,0.24491559,-0.4987674,-0.020390805,-0.8050543,-0.04726663 -316,0.27585092,-0.2706758,-0.4821799,-0.17857526,-0.20575942,0.26084107,-0.14715181,0.26737326,0.19940928,-0.31684384,-0.068095736,-0.09968241,-0.09909804,0.4935908,-0.07057873,-0.73941714,-0.04934778,-0.045299407,-0.6378618,0.29992026,-0.5214259,0.27546766,0.098981254,0.47338587,0.07154376,0.3204662,0.14947072,-0.06342547,-0.09790724,-0.110076316,-0.17467941,0.10296451,-0.59732115,0.12864545,0.060493,-0.22275805,-0.122224055,-0.42904618,-0.26484787,-0.62374014,0.3627009,-0.8675877,0.34456584,-0.13038148,-0.38035405,0.12576804,-0.09925724,0.32992655,-0.3092995,-0.016645074,0.1793348,-0.10757505,0.10322281,-0.15271623,-0.11382938,-0.47861516,-0.5470141,0.08398034,-0.50316226,-0.18857537,-0.065808296,0.15627632,-0.3311713,0.17669024,-0.16961244,0.32070085,-0.3882945,-0.013069093,0.2741768,-0.2927254,0.16936022,-0.4207691,-0.13340716,-0.08232916,0.2289579,-0.00020417801,-0.18438402,0.07153105,0.4735995,0.58346677,-0.0045605185,-0.12698244,-0.18400568,-0.10360587,0.17150429,0.5481561,-0.022449898,-0.431263,-0.2907994,-0.16656646,0.16488674,0.1539113,0.1987229,-0.4667927,0.02745339,-0.014062403,-0.2534331,0.23847087,0.45867968,-0.31815705,-0.19395575,0.3222858,0.51244754,0.067084186,-0.18935345,0.14603269,0.013401877,-0.45909163,-0.1206516,0.11097732,-0.1001866,0.58569044,-0.10698489,0.39770553,0.722511,-0.043314584,0.35222933,-0.10168958,-0.22335196,-0.2791273,-0.30652884,-0.10888036,-0.01569443,-0.3927081,0.003355329,-0.2945145,0.7012186,0.14765298,-0.9901944,0.39181864,-0.4223922,0.1063846,-0.13897315,0.65971065,0.6867345,0.2626193,0.17046516,0.6907657,-0.55485344,0.011893117,-0.02442818,-0.29750153,0.1259236,-0.08007913,0.11669334,-0.47254893,-0.023260068,0.12452852,0.005008092,-0.02772174,0.24277364,-0.37197545,-0.045392375,-0.058997113,0.6659178,-0.38446248,-0.06458695,0.799585,1.0111222,0.7214522,0.14182077,1.3589541,0.34214953,-0.027529286,0.2264479,-0.30098632,-0.56451327,0.13418825,0.41284788,0.47111323,0.3933077,0.058587376,0.024337191,0.5653862,-0.09523304,0.2095159,-0.093226925,0.12426163,0.050142623,-0.12014067,-0.26220274,-0.31066245,0.19191024,0.05336976,0.021214526,0.29510525,-0.24715516,0.55604094,0.19186586,1.6009268,-0.075804606,0.16958605,-0.03777868,0.40029445,0.09970289,-0.29933426,-0.14519098,0.27936298,0.31890142,-0.1460372,-0.6314005,0.1660149,-0.12827352,-0.5638486,-0.16460826,-0.34227324,-0.2140881,-0.09552685,-0.43815142,-0.082256556,0.007658087,-0.32377994,0.34111103,-2.5651026,-0.23820983,-0.27632335,0.3268542,-0.34452137,-0.3122214,-0.06543779,-0.32299107,0.21490392,0.48049882,0.3076196,-0.8329915,0.43446767,0.36577055,-0.16659784,-0.22341944,-0.6700347,-0.044589557,0.029934768,0.2174696,-0.04532508,-0.065404154,-0.1700237,0.24066775,0.5930995,0.06855281,-0.04750859,0.1695896,0.5237137,0.14033026,0.50246996,0.09543231,0.5567119,-0.10765545,-0.07395134,0.32782745,-0.5083262,0.4917335,0.13770501,0.26950675,0.25904614,-0.40580562,-0.6940438,-0.79533124,-0.49057028,1.3166292,-0.46764275,-0.4243632,0.25215274,0.005944284,-0.31451637,-0.10178639,0.6211583,-0.13962267,-0.011733862,-0.7250872,-0.06343626,-0.22554165,0.32549235,-0.0895787,0.018468142,-0.27971572,0.6985982,-0.095169455,0.53651404,0.31046316,0.12628157,-0.098354265,-0.36664647,0.04009614,0.86075526,0.29427,0.060415845,-0.1344462,-0.12981471,-0.22901243,-0.2401507,0.10289807,0.5257565,0.66419196,0.19576328,0.022825507,0.32000974,-0.23642203,0.03493367,-0.09088676,-0.32390186,-0.08547454,0.08234663,0.6255688,0.7611923,-0.24570847,0.33127278,-0.29737416,0.13012362,-0.18781151,-0.51909006,0.6155514,0.6269341,-0.1645379,-0.1735277,0.44719827,0.41150236,-0.62498534,0.27934247,-0.49859598,-0.20361497,0.6145164,-0.010375523,-0.4206373,0.19661961,-0.28329355,0.009784672,-0.9633935,0.23239096,-0.14902073,-0.5062267,-0.48474562,-0.09686614,-3.7537549,0.21630113,-0.09865689,-0.38578665,-0.21933994,-0.23068087,0.3999139,-0.5946201,-0.46715766,0.08050413,0.06638668,0.44363695,0.030511416,0.173958,-0.36132428,-0.008333834,-0.2813781,0.21199283,0.046252362,0.23145153,-0.020362396,-0.26394576,-0.029615998,-0.26872176,-0.5236288,0.07647789,-0.59436,-0.68917537,-0.14126597,-0.376141,-0.23566176,0.6048362,-0.2909765,-0.04711026,-0.26882726,-0.14898556,-0.37170094,0.57069755,0.1538011,0.1327238,0.078240946,0.026084313,-0.2086189,-0.4327351,0.1837417,0.08084405,0.40793544,0.34881005,-0.1595917,0.1487588,0.55507886,0.6377618,0.18128523,0.53670067,0.20603155,-0.023081256,0.36067578,-0.36828595,-0.19345477,-0.49533755,-0.29725748,-0.056296103,-0.37545493,-0.47888023,-0.17153336,-0.24439773,-0.71445435,0.25734875,0.12854363,-0.063427396,-0.120155536,0.26305872,0.38368383,-0.05038878,0.03736063,-0.058911126,-0.15767814,-0.57077533,-0.45033106,-0.6697041,-0.66702396,0.41524285,1.0153235,0.044820823,-0.027968833,-0.0828389,-0.3778658,0.11650208,-0.013838727,0.21426226,0.16686174,0.21155876,-0.29935685,-0.6775882,0.5209572,-0.22223656,-0.19201726,-0.607103,-0.0079331035,0.7331108,-0.6129042,0.6359234,0.31232867,0.14756563,0.057170216,-0.43366602,-0.22523771,0.069419935,-0.2125267,0.40118298,0.23338835,-0.53324133,0.36220503,0.23024805,0.075637706,-0.6227877,0.43376276,-0.03852041,-0.038246486,0.07532064,0.35148913,-0.16234091,-0.13998426,-0.092558034,0.06562545,-0.51325274,0.17797525,0.447298,0.20222506,0.65387547,-0.010798097,-0.2162371,-0.43394783,-0.012873303,-0.5983061,-0.13224734,0.15138343,0.03261463,0.33757064,0.13235578,-0.09874054,0.38671395,-0.3907254,0.12025734,0.07657095,-0.14722627,0.31972572,0.49734005,0.32247272,-0.49788317,0.50708,0.088832684,0.1659595,-0.03387229,0.06330439,0.49868834,0.52039534,0.29238856,-0.16773976,-0.1733068,0.17048264,0.72224176,0.2597151,0.46252272,0.23127677,-0.14568454,0.38070253,0.09951002,0.13552417,-0.0469738,-0.31150442,0.009214585,0.07003736,0.22849461,0.4654745,0.08960828,0.423103,-0.09621068,-0.37701592,0.18023922,0.13926458,-0.18322222,-1.0882171,0.3023482,0.32954836,0.6503019,0.44302052,-0.0047868853,0.00019992315,0.48817113,-0.28295648,0.16533376,0.28195268,0.1070908,-0.6279797,0.6732064,-0.5924228,0.3162643,-0.14165217,0.06690483,0.15059407,0.045682278,0.29672647,0.80838054,0.012609353,0.035338398,-0.069325,-0.32587087,-0.024549764,-0.42827335,0.1851403,-0.5504212,-0.24097061,0.48970237,0.43571642,0.30953425,-0.2570666,-0.022032376,0.14935248,-0.0010417516,0.0086654425,-0.107098,0.040918075,0.07316108,-0.7227595,-0.47327915,0.56843245,-0.18592359,0.009350345,0.09755044,-0.42222193,0.33829495,-0.18345016,-0.32062033,0.014546852,-0.6349024,0.13311443,-0.23257373,-0.52606165,0.026801748,-0.3654984,0.13633315,0.15457629,-0.019339014,-0.24531664,0.2072178,0.16841719,0.9471114,0.04218834,-0.15252362,-0.43460143,-0.051954474,0.24533628,-0.33292675,-0.19297926,-0.401458,0.09639929,-0.4276532,0.3953892,-0.040177125,-0.23056982,0.12896806,-0.050897516,0.048786458,0.43009853,-0.355955,-0.150283,0.061524827,0.016216727,-0.22333942,0.08345591,-0.36195856,0.38008097,0.22175393,0.100623965,0.18896416,-0.009342686,-0.019110648,0.352543,0.09675296,0.28658321,0.4809569,-0.081102446,-0.34268555,-0.18341273,0.02992742,0.2949929,0.16845027,-0.10398129,-0.36767837,-0.45164013,-0.23627989,0.4545927,-0.22549377,0.25568438,0.008880322,-0.4735018,0.7395712,0.12727715,1.0572791,0.050266393,-0.36622202,0.12645382,0.34288627,0.1396758,0.10187577,-0.36277872,0.84324515,0.45205367,-0.24276465,-0.23538086,-0.3913363,-0.329723,0.23753521,-0.33479822,-0.12060642,-0.07600779,-0.7677002,-0.18785563,0.08100064,0.25618848,0.025970798,0.05806996,0.113379866,0.076888084,0.016120842,0.44819623,-0.5712717,-0.009337526,0.2592282,0.085844316,0.07917034,0.13382027,-0.41070175,0.49260384,-0.8152541,0.1256976,-0.54915416,0.03471673,0.13635652,-0.32044697,0.15463397,0.053898938,0.39229298,-0.30345446,-0.45294073,-0.35157406,0.81479937,0.34204578,0.32875702,0.7320682,-0.16724947,-0.06767537,0.15430944,0.58859897,1.3411925,-0.039774854,0.13914594,0.2334651,-0.27561095,-0.6180225,0.1896453,-0.26858628,0.20408246,-0.05899686,-0.27708444,-0.3965932,0.39003894,0.15454078,-0.0055676354,0.10145523,-0.39261848,-0.3909535,0.43138152,-0.41191483,-0.33092028,-0.45364138,0.23426065,0.71433896,-0.3777494,-0.2074125,-0.08421625,0.3642493,-0.29471076,-0.44565853,0.02597387,-0.281027,0.25706723,-0.0023144025,-0.37421972,-0.1461434,0.22791865,-0.3651142,0.22632116,0.19331916,-0.25762063,0.09474162,-0.08954739,-0.129799,1.0323739,0.12645207,0.0064886245,-0.8498792,-0.5508915,-0.77721816,-0.5128075,0.19298568,0.110076234,-0.08348041,-0.46504566,-0.07681457,-0.026139058,0.1779528,0.1523767,-0.471564,0.38334948,0.10510078,0.6393699,0.09340365,-0.90936685,0.058891542,0.088565305,-0.16881353,-0.6376208,0.5755397,-0.08941304,0.73458934,0.06686302,0.085497625,-0.0031267186,-0.5136729,0.17377903,-0.46442926,-0.36727375,-0.79124254,0.24350587 -317,0.29736257,-0.40366513,-0.46440065,-0.069834955,-0.31536707,0.07501332,-0.17165579,0.37037402,-0.031516213,-0.56511563,-0.0017748338,-0.16473058,-0.079543,0.7016665,-0.2003561,-0.5319224,0.086977534,0.14481057,-0.62382823,0.65429634,-0.45642436,0.39201838,0.19368336,0.15559857,0.16090634,0.23881595,0.35322183,-0.1174398,0.008810291,-0.09408594,-0.23956439,0.06191707,-0.3945766,0.23627782,0.02289731,-0.48369154,0.13830091,-0.29712155,-0.2663894,-0.6077369,0.30110067,-0.8292409,0.40020588,-0.027481684,-0.28951386,0.06451604,0.18173884,0.32671928,-0.16646336,0.09627933,0.055235207,0.027486425,-0.15756112,-0.052911278,-0.11374609,-0.5070844,-0.588876,0.0070605073,-0.70184004,-0.47064796,-0.16675986,0.12662114,-0.40394306,0.15134464,-0.16054668,0.14018759,-0.6085013,-0.18119527,0.16257344,-0.14777206,0.19096011,-0.5620408,-0.01990519,-0.17961165,0.09358786,-0.21717443,-0.15852763,0.40037617,0.32236263,0.5498849,0.021213265,-0.13837677,-0.10943897,-0.29573834,0.2365863,0.66648203,-0.11432791,-0.36063752,-0.18039306,0.08788105,0.27542028,0.20835064,0.16505782,-0.3933472,-0.110010736,0.03132104,-0.2749782,0.17291988,0.36804396,-0.4875528,-0.28178224,0.33492443,0.51503,0.055556253,-0.07544787,0.15216771,0.005127102,-0.49045834,-0.20255207,0.109046325,-0.19865505,0.43541864,-0.0894406,0.4971166,0.5996047,-0.19576654,0.21511252,-0.18539836,-0.1477263,-0.24370915,-0.008965263,-0.25080216,0.111249134,-0.5451224,0.1095365,-0.16695091,0.88684434,0.14832088,-0.87871903,0.45332578,-0.54487705,0.15637729,-0.22507344,0.6167912,0.6501722,0.30554846,0.20969103,0.59284234,-0.34864727,0.11673575,-0.1187799,-0.35332215,0.080116436,-0.26832694,-0.10668357,-0.4993922,0.05254134,0.032951947,-0.163574,-0.17257136,0.673913,-0.5722046,0.057373736,-0.0051218364,0.7692111,-0.32223225,-0.08165956,0.62154955,0.89804995,0.9328584,0.15395387,1.1133344,0.32809794,-0.22536832,0.20576955,-0.24038903,-0.6795533,0.2486732,0.78339475,0.4024814,0.46521452,0.16386105,-0.061499033,0.50652266,-0.39224136,0.148867,-0.19149701,0.10810467,-0.10960826,-0.11867304,-0.6878386,-0.3093433,-0.06718339,0.09282288,-0.11313001,0.39363447,-0.2700569,0.48580965,0.05030245,2.0107875,-0.090082645,0.21224369,0.068981305,0.43943322,0.09150558,-0.24380864,-0.08288991,0.10131003,0.39926603,0.019040246,-0.66758657,0.08295938,-0.25551212,-0.5356477,-0.26140773,-0.3935828,-0.08294909,-0.17072989,-0.47369325,-0.10970921,0.053503558,-0.3721363,0.3730368,-2.4756927,-0.3175739,-0.26913592,0.17574212,-0.41752222,-0.30836317,0.07985772,-0.34386972,0.3477081,0.5002602,0.6085686,-0.6496187,0.39055347,0.37458012,-0.30256507,-0.043311544,-0.7269519,-0.12286528,-0.10006286,0.3970041,-0.10533877,-0.14119895,-0.092269935,0.3408218,0.42178887,-0.2061236,0.04366886,0.3770869,0.31942227,0.26043907,0.5669642,-0.062474765,0.448518,-0.31469256,-0.16107075,0.33625683,-0.036682937,0.3396158,-0.0019594522,0.16140455,0.19938177,-0.6624136,-0.9332809,-0.677707,-0.5108903,1.1636572,-0.40863997,-0.34177536,0.44517472,-0.22626194,-0.17897107,-0.17687152,0.44565183,-0.1717481,-0.020507416,-0.80752224,0.13733539,-0.0062093367,0.29552555,0.047475092,-0.14072847,-0.3866282,0.5317203,-0.15023735,0.4631351,0.2844261,0.16988556,-0.15200637,-0.38272953,0.023858968,0.96365136,0.53395486,0.16891593,-0.15464228,-0.3163784,-0.34951794,-0.14255628,0.15908502,0.20261233,0.8127849,0.12577114,0.13834433,0.30204818,-0.11537385,-0.049035944,-0.17081563,-0.21819374,0.053821947,0.14477088,0.65055966,0.3777014,-0.10597052,0.6056944,-0.24228737,0.20233926,-0.14025977,-0.5187339,0.2950894,0.7355686,-0.08821149,-0.010153546,0.6850084,0.6828988,-0.31732035,0.4534599,-0.77638346,-0.30220267,0.46008852,-0.14043853,-0.38286972,0.24586083,-0.3541636,0.2642453,-1.2172977,0.37929615,-0.23798622,-0.4429088,-0.45740443,-0.14620301,-3.3606372,0.27380326,-0.09555503,-0.34257317,0.07088778,-0.07285539,0.3179286,-0.7205916,-0.6396973,0.046814535,0.0011677926,0.58025205,0.064332046,0.030271437,-0.1436324,-0.15728714,-0.18252946,-0.0069002234,0.01725798,0.32947534,-0.058538444,-0.4751976,-0.05822798,-0.29028672,-0.36508867,0.15314986,-0.6853203,-0.70594186,-0.30034375,-0.4679407,-0.34192568,0.575254,-0.10796077,0.04010795,-0.21616665,-0.1309968,-0.0958753,0.31659892,0.2855338,0.07550538,0.12056624,0.04514893,-0.21807347,-0.37097165,0.11953615,0.029123453,0.3192627,0.373198,-0.12932001,0.28375614,0.8026368,0.5566272,-0.04136494,0.668162,0.6274483,-0.19259275,0.19464524,-0.31055692,-0.1289122,-0.5093787,-0.4260975,0.08634409,-0.33346742,-0.7263155,-0.030233653,-0.12898557,-0.68860596,0.5646196,-0.038143992,0.11572161,-0.042825673,0.14214109,0.324724,-0.13882841,-0.1832239,-0.15343586,-0.14343841,-0.6898666,-0.30944803,-0.81596494,-0.5464291,0.21734887,1.2429621,-0.18599749,0.03235285,0.0040435884,-0.315043,0.055107977,0.007941227,0.101721436,0.4383993,0.15033846,-0.14670624,-0.8076018,0.5454329,-0.012231433,-0.025069889,-0.32013825,0.11588095,0.62411404,-0.6627463,0.20388062,0.22601333,0.12803926,0.024163123,-0.3947533,-0.16827895,0.20819356,-0.29974154,0.3781916,0.021139305,-0.76420265,0.5076624,0.4506135,-0.33226186,-0.74311405,0.44286272,0.013152366,-0.0923009,-0.062219225,0.23968282,0.14002839,0.15963028,-0.298746,0.2603064,-0.61608475,0.36954334,0.46822885,0.036220606,0.31657857,-0.3014025,-0.25545105,-0.6121173,0.13234733,-0.47239658,-0.14909866,0.14323719,0.040693264,0.004409735,0.21980835,-0.009375067,0.4258771,-0.31616205,0.010401941,0.072982535,-0.39232016,0.30083412,0.4665487,0.47010356,-0.4186285,0.6649199,0.06203481,0.021796644,-0.44400904,-0.08947928,0.42098072,0.22590153,0.22639146,-0.15113346,-0.20670308,0.45558092,1.0774566,0.22768886,0.42168573,0.11083247,-0.116243415,0.1368181,0.13809076,0.041227598,0.13752137,-0.39556435,0.048584186,-0.0032017964,0.13888264,0.5789713,0.17784196,0.33571228,-0.17004094,-0.304656,0.15096536,0.20539664,-0.13376188,-1.109124,0.31624654,0.23951387,0.51107633,0.6007923,0.024529237,0.11995609,0.636371,-0.35034576,0.1839682,0.23146787,-0.15453993,-0.6708877,0.65653616,-0.72314614,0.48974764,-0.12523529,-0.003940798,0.09539162,-0.06322798,0.42452276,0.8237,-0.011276589,0.11150703,-0.025800338,-0.29004878,-0.011934086,-0.4285567,0.007385566,-0.53294283,-0.40156043,0.56447816,0.35207942,0.2767286,0.051320307,0.01224752,0.10057775,-0.110875204,0.3792536,-0.12414045,0.09784056,-0.10108078,-0.57808197,-0.29928392,0.67568266,0.07181453,0.2153016,-0.03118114,-0.30883157,0.2852495,-0.18437494,-0.18188137,0.06604861,-0.67036355,0.22139798,-0.31660807,-0.34722206,0.31185883,-0.20231721,0.25795645,0.15483944,-0.039520107,-0.34835613,0.24825563,0.075693056,0.7426698,-0.062013544,-0.30976707,-0.13893595,-0.026273109,0.09641051,-0.26554787,-0.024910735,-0.28065902,0.08065951,-0.8517743,0.5223087,0.0058694826,-0.417849,0.24271171,-0.12845519,-0.019514916,0.44706255,-0.06147214,-0.1132648,-0.24891439,-0.09382912,-0.20630154,-0.22874434,-0.12810796,0.24444333,0.11315485,-0.04351823,-0.07248349,-0.035931434,0.06835038,0.54661477,-0.132301,0.35187307,0.26004413,0.12360132,-0.46760005,0.0029986869,0.17214128,0.32767737,0.0085282065,0.14612478,-0.17988011,-0.22800782,-0.19737123,0.11915871,-0.35245222,0.4096499,0.102688976,-0.5060286,0.7843996,0.11843724,1.2434862,-0.02044962,-0.32630274,0.10648884,0.35896125,0.0021085693,-0.025190344,-0.24110533,0.8564514,0.5835609,0.028306391,-0.21897894,-0.5010872,-0.32921618,0.41743448,-0.25102407,-0.13625129,0.057055514,-0.53947705,-0.31717584,0.252495,0.26333252,0.097229235,0.042518914,0.24144538,0.038311925,-0.03753316,0.22216612,-0.42968288,-0.099574395,0.38530672,0.15625653,0.08036023,-0.017325737,-0.4973036,0.408646,-0.6938857,0.23795758,-0.25875103,0.13120602,0.02074005,-0.23786555,0.24066493,0.14623557,0.43087536,-0.20152377,-0.34320337,-0.13516048,0.76195246,0.13091503,0.1319773,0.7238637,-0.36454457,0.26192042,-0.050243203,0.25213897,1.1153349,-0.25822443,-0.054217998,0.16085547,-0.27558193,-0.64647126,0.43306285,-0.28403884,0.11997041,0.10124194,-0.44753736,-0.6384395,0.20136243,0.3964289,-0.049542665,0.11650908,-0.29014155,-0.2661734,0.1922907,-0.33750865,-0.32677788,-0.45950222,0.17017937,0.6005762,-0.38892204,-0.26080528,0.15542406,0.28501374,-0.29011786,-0.43155226,0.028306412,-0.18215631,0.16173424,0.121911354,-0.36200967,-0.073641226,0.1680323,-0.2737137,0.033546165,0.36626858,-0.42348868,0.10611224,-0.38467297,-0.04428238,1.103456,-0.1779961,-0.3795838,-0.77223617,-0.54642737,-0.7816036,-0.506684,0.76189476,0.19097295,0.046222202,-0.5754864,0.1824868,-0.018432688,0.05090878,0.022485444,-0.42251408,0.4184998,0.10796302,0.38660234,-0.037055768,-0.7147674,0.2641862,-0.007088221,0.103372134,-0.43642393,0.51404196,-0.08347858,0.9317973,0.11627315,-0.030088017,0.2011093,-0.47213295,0.07964998,-0.17704354,-0.20269898,-0.7315539,0.07874254 -318,0.27637112,0.023951054,-0.5398916,-0.22834097,-0.18711755,0.23905894,-0.089516066,0.32783088,0.105120614,-0.25269502,-0.07401112,-0.20183498,-0.09795244,0.44610775,-0.16400261,-0.6821953,-0.08488858,0.08763339,-0.6791917,0.4218079,-0.43688667,0.4541573,0.14273329,0.21977834,0.052722763,0.29072487,0.18419807,-0.1492073,-0.11919885,-0.006655089,-0.10919195,0.08360409,-0.7415913,0.20030206,-0.11983851,-0.17502002,-0.07910829,-0.35202128,-0.24438912,-0.634269,0.25518936,-0.5060592,0.53431004,-0.16133162,-0.286795,0.23955567,0.102790385,0.3201151,-0.35568133,0.110679895,0.20018722,-0.042938665,-0.02000411,0.011942136,-0.24121042,-0.4946982,-0.525312,0.13820557,-0.68297005,-0.20548348,-0.1452743,0.15593435,-0.23069498,0.0022336324,-0.30108708,0.51820356,-0.2949368,-0.012453111,0.28098863,-0.07331503,0.10547862,-0.4327944,-0.036467392,-0.08421547,0.30340087,0.028743673,-0.16673444,0.2441831,0.47505495,0.4961272,0.076099016,-0.21167493,-0.14207672,-0.07982264,0.075764224,0.3949534,0.054783646,-0.30855948,-0.15351412,-0.0025143793,0.005712239,0.0531534,0.056186642,-0.4989647,0.041426226,0.10748381,-0.22025135,0.1208769,0.3717256,-0.5061834,-0.35280636,0.49148336,0.4702169,0.121411934,-0.01008153,0.106069274,-0.12965956,-0.5124506,-0.18949093,0.15632278,-0.13649264,0.52368015,-0.11936585,0.15754665,0.66599476,0.009088699,-0.010683942,-0.13865875,-0.13889167,-0.006206083,-0.2816118,-0.12065583,0.0011341035,-0.41487247,-0.03926197,-0.23159203,0.65145713,0.08529976,-0.8431826,0.38623142,-0.5079842,0.121574424,0.06649841,0.5600599,0.8138802,0.30008143,0.029134028,0.7753601,-0.51677287,0.07485667,-0.037160814,-0.26548442,0.17091165,-0.08478082,-0.0057149846,-0.54920506,0.03683432,0.012269099,-0.04758834,-0.025708683,0.19905177,-0.4121589,-0.12341656,-0.053146433,0.63960344,-0.36439997,-0.19342889,0.650829,1.0271573,0.89335555,0.1650771,1.3993633,0.4096325,-0.17357877,0.16503666,-0.48833275,-0.5556707,0.123848654,0.32612145,-0.059785653,0.4030222,0.034261007,0.14300022,0.44939175,-0.23922315,0.2165101,-0.023650905,0.3015889,0.00945454,-0.18199347,-0.308004,-0.32803443,0.2048696,0.016987165,-0.03677392,0.2418315,-0.15860415,0.2508996,0.21928455,1.6789138,0.044193126,0.15034193,0.02573875,0.25079232,0.2818248,-0.26846156,-0.22455445,0.35131726,0.2954528,-0.19351403,-0.51759994,0.0010355373,-0.36156994,-0.4417529,-0.30585787,-0.3469698,-0.06941431,-0.064786784,-0.40798095,-0.14360915,0.10911908,-0.19024353,0.42209834,-2.6839554,-0.16889492,-0.1809265,0.2901039,-0.40396163,-0.26525253,-0.17457908,-0.3638523,0.3661204,0.5337388,0.26210308,-0.55046356,0.31387967,0.20231333,-0.2191825,-0.27447805,-0.6138904,0.09352113,0.04350712,0.19096276,-0.14596061,-0.0970812,-0.2657994,0.30792198,0.46587434,-0.048127748,0.0041082706,0.3237433,0.38920662,0.11223305,0.4941193,0.18894716,0.5967444,-0.10201553,-0.0008610646,0.346741,-0.3408573,0.27991194,0.1984405,0.19682404,0.25090164,-0.5784729,-0.70440537,-0.57224005,-0.45202008,1.0819682,-0.44722512,-0.14534134,0.3431465,-0.0063822987,-0.10746409,0.046484645,0.40114507,-0.014489416,-0.07295736,-0.68121326,0.042531855,0.07902051,0.22724155,-0.17587978,0.19960971,-0.32858175,0.6102369,-0.15151224,0.41194674,0.44112265,0.25302348,-0.09752867,-0.44211423,0.080784425,1.0522358,0.3897427,-0.019389952,-0.083657734,-0.1799273,-0.31494513,-0.1201673,0.10190209,0.3076495,0.6674052,0.057952385,0.024792464,0.22465476,-0.20508114,0.08733442,0.010088495,-0.3850865,0.010112792,0.042642936,0.44065768,0.40307578,-0.23866902,0.5125628,-0.3124139,0.06424239,-0.20545398,-0.52541584,0.5783214,0.66813314,-0.2804752,-0.14400567,0.3557798,0.27423176,-0.25540125,0.3342174,-0.43011743,-0.25400355,0.8660685,-0.07625889,-0.24846989,0.070058376,-0.17678586,-0.026866836,-1.0374949,0.25470605,0.036486506,-0.41556975,-0.48606256,-0.15242094,-3.4574857,0.006317691,-0.09726129,-0.0511046,-0.073624104,0.018321108,0.27174664,-0.4062077,-0.5797814,0.017884266,0.00465885,0.47252998,0.03121422,0.25302574,-0.22734256,-0.2718722,-0.37960473,0.2566372,0.10986091,0.31890425,0.060315236,-0.349263,0.03616357,-0.35700378,-0.508507,0.157877,-0.46768105,-0.50973195,-0.2850078,-0.4901801,-0.3087531,0.7836489,-0.41140115,-0.10049625,-0.19344988,-0.054891206,-0.13094112,0.30584472,0.24540213,0.20630045,0.14490597,-0.099499226,-0.17893621,-0.45602912,0.123404786,0.15974495,0.31536072,0.5245475,0.024641188,0.23608683,0.49193385,0.6178836,0.018115096,0.46115315,0.30637398,-0.088657565,0.39215106,-0.4769879,-0.03731779,-0.5164503,-0.3706877,-0.39242223,-0.364523,-0.545951,-0.20009695,-0.385258,-0.7275171,0.25673714,-0.028749045,0.10455561,-0.019460836,0.34160012,0.31835642,-0.14175068,0.12899399,-0.17842725,-0.24488409,-0.45096081,-0.48941866,-0.6301497,-0.551939,0.3136594,1.1339297,-0.086060904,-0.23565479,-0.16874106,-0.2567798,0.14310837,-0.093112245,0.16335149,0.19477436,0.30912966,-0.198443,-0.7040095,0.41681603,-0.07695875,-0.20158768,-0.61211866,0.050708905,0.6196811,-0.49144718,0.6087189,0.20981884,0.21883969,0.18235627,-0.4242665,-0.14808826,0.18152255,-0.37345186,0.48509243,0.056386754,-0.5121849,0.4267759,0.16482933,-0.058024373,-0.7316878,0.5016706,-0.037661053,-0.12341622,0.12707916,0.3209602,0.060468365,-0.11089712,-0.16111214,0.26171383,-0.53336984,0.17507932,0.50724995,0.08411773,0.52183855,-0.09707775,-0.23047099,-0.53671193,-0.12852535,-0.51414037,-0.32428977,0.025322147,0.28911898,0.17608611,0.029989148,0.07988623,0.41580006,-0.33858633,0.13942613,0.036697533,-0.12701124,0.36177245,0.38904637,0.21173,-0.46312115,0.44497046,0.052364595,0.11960588,-0.23613341,0.03630162,0.3893381,0.3115618,0.1413757,0.10583805,-0.07450256,0.2685934,0.5145698,0.18360707,0.27580172,0.114094764,-0.3499495,0.2617841,0.03965908,0.008618816,0.058918145,-0.17442198,-0.10599424,0.11918783,0.18297027,0.43739837,0.14708449,0.22179817,-0.06837585,-0.054762285,0.24718128,0.17770304,-0.11813385,-0.72927576,0.3933695,0.15837468,0.645591,0.6263954,-0.097218275,0.13913223,0.35737297,-0.37459183,0.18038744,0.42231864,-0.061057653,-0.48083484,0.55960727,-0.5724757,0.4853391,-0.2028955,-0.04235413,0.099750616,0.1817041,0.35351577,0.9839742,-0.07413532,0.035048567,-0.07674928,-0.19041291,0.08295608,-0.29077688,0.087670736,-0.5136526,-0.38208312,0.54492354,0.25014108,0.1951701,-0.4173317,-0.098216504,0.044474863,-0.2558634,0.1475378,-0.06735547,0.019612318,0.07276844,-0.5846067,-0.3881117,0.5164182,-0.22142996,0.039314512,0.17989327,-0.3835439,0.15978248,-0.25329834,0.027535273,0.02016145,-0.59751904,-0.07625417,-0.20135339,-0.29822698,0.23455499,-0.50721365,0.27262726,0.037858356,0.009228107,-0.43980408,0.20085236,0.22440015,0.68658614,-0.082600504,-0.10669644,-0.23568018,0.1436545,0.18733117,-0.28686687,0.028239029,-0.29083163,0.0933592,-0.60445184,0.35403615,-0.02259813,-0.23813261,-0.03302427,-0.11595364,0.036945507,0.45200157,-0.2472121,-0.05328027,-0.13523279,-0.113485605,-0.14080635,-0.016344389,-0.30618146,0.3244497,0.06352065,0.0140812555,0.08213026,-0.0029292027,-0.16040091,0.32275313,0.057431277,0.25415164,0.22081521,-0.0938596,-0.38077322,-0.07826676,-0.043285258,0.19666816,0.3785574,-0.120116234,-0.2576526,-0.15983275,-0.21383257,0.25782365,-0.22507551,0.09214359,0.09280626,-0.4450465,0.7538968,0.20327148,1.3212277,0.11449744,-0.22689615,0.081943415,0.462282,0.15497461,0.04239021,-0.40421066,0.778033,0.63588345,-0.05286323,-0.077109165,-0.25134027,-0.3579146,0.23682429,-0.13251427,-0.2471617,-0.057378672,-0.6888828,-0.31413278,0.035167076,0.18612243,0.03080529,-0.023950608,-0.1402326,0.13585849,0.06646338,0.46886063,-0.36311415,-0.023618404,0.32129008,0.10154204,0.17827721,0.27147463,-0.45143107,0.51390654,-0.8507633,0.27853045,-0.2518521,0.06156925,-0.05454619,-0.20504254,0.18651466,0.10677627,0.29447466,-0.18447962,-0.36551502,-0.26827767,0.7355654,0.20081417,0.28635377,0.83736795,-0.21587452,0.042808108,0.14994626,0.5297028,1.2746104,-0.021077517,-0.011378918,0.35726115,-0.39149603,-0.6679547,0.18718499,-0.3519697,0.11080701,-0.1799122,-0.28327474,-0.30686906,0.20810512,0.014587804,0.03356306,0.048298184,-0.5557206,-0.22453468,0.41035062,-0.34787768,-0.22946778,-0.28437367,0.2038077,0.80572575,-0.38184786,-0.38809732,0.032809965,0.21163766,-0.30402312,-0.6028587,-0.02957083,-0.2869406,0.38923758,0.24715143,-0.3507232,-0.019053075,0.35305846,-0.3935768,0.04690691,0.26746637,-0.4113444,0.014981764,-0.16736838,-0.14687966,0.9907744,0.15800166,0.014845294,-0.56399304,-0.5604551,-0.93632615,-0.28176087,0.30322972,0.004899152,-0.0060803136,-0.52066153,-0.090185925,-0.054950174,0.13665076,0.097818285,-0.48247048,0.33292028,0.15593942,0.35551465,0.015374438,-0.9307306,-0.13394363,0.20209001,-0.04430566,-0.5560987,0.5800101,-0.091999434,0.79486,0.049498238,0.005277113,0.17233251,-0.7147586,0.32796085,-0.36640593,-0.071166955,-0.5315115,0.124049075 -319,0.60890645,-0.32464716,-0.7739196,-0.042022973,-0.3519751,0.08342034,-0.26782733,0.30684343,0.32056114,-0.3244687,-0.25291082,-0.12480041,-0.07207375,0.5769887,-0.26493958,-0.8056291,-0.14884152,0.12697174,-0.4956495,0.45390424,-0.6618393,0.04142191,-0.0673936,0.70638514,0.24324943,0.19198978,0.20444874,0.0211398,-0.097569115,-0.114788026,-0.12863648,0.37939727,-0.81547755,0.073812164,-0.12418779,-0.4769388,-0.02095232,-0.6309503,-0.33283412,-0.89252573,0.45656136,-1.0738918,0.7519307,0.16964929,-0.30651173,0.014506797,0.048137728,0.14775772,-0.34024176,-0.03534073,0.3697835,-0.38545498,-0.11958009,-0.24838711,-0.2983399,-0.5875457,-0.8507207,0.05216816,-0.43881905,0.1729011,-0.17833988,0.25839517,-0.32791412,0.19552368,-0.42886367,0.47150484,-0.54460245,-0.1300128,0.2421291,-0.20125528,0.15248336,-0.60013986,-0.345685,-0.16859059,0.18947811,-0.0023340385,-0.30101758,0.17114936,0.29316798,0.58413535,0.11890105,-0.4504815,-0.45778823,0.11006111,-0.10734067,0.3457332,-0.38359305,-0.6589714,-0.21830165,0.12898663,0.4855897,0.3854698,0.115183316,-0.16221228,0.17097668,0.18422641,-0.10646918,0.6586979,0.57864136,-0.21200745,-0.37320924,0.22771563,0.42592856,0.07019752,-0.20205943,-0.1403376,-0.011382879,-0.5795362,-0.2203104,0.2337835,-0.25910854,0.6118937,-0.14189653,0.1238058,0.8582466,-0.40815997,-0.112685025,-0.11962176,-0.07049152,-0.15750156,-0.28021094,-0.29281446,0.37578604,-0.46228477,0.27428004,-0.4191164,0.6959582,0.051252574,-0.9304778,0.31996214,-0.60039586,0.02459886,-0.045851607,0.7805931,0.87013054,0.4496483,0.628283,0.8222688,-0.45731863,0.13557298,0.024057483,-0.49112558,0.26088557,-0.14244877,0.20586796,-0.5400201,-0.1435527,-0.13075458,-0.24812084,0.06431176,0.683707,-0.4885814,-0.027177317,0.13436824,0.5743198,-0.33597216,-0.11868701,1.0554309,1.1897496,1.3060548,0.13432269,1.4060682,0.33623257,-0.22790985,0.13085295,-0.28198937,-0.5840896,0.3368683,0.29453108,-0.6558567,0.6273311,0.18400301,0.13305692,0.63032824,-0.5033917,-0.03258358,0.11603097,0.21033458,-0.027134508,-0.007906836,-0.698198,-0.26090598,0.0050991364,0.059367687,0.22458595,0.40637478,-0.299685,0.58803934,0.08720094,1.3537945,-0.066197656,0.16876692,-0.07445269,0.48410296,-0.025832264,-0.13487102,0.058540065,0.23154593,0.4548482,0.11733518,-0.62481725,0.012598925,-0.2976167,-0.30229574,-0.31383613,-0.35622954,-0.016571328,-0.30414122,-0.39922214,-0.049606886,-0.06434333,-0.36926922,0.3594521,-2.093802,-0.22126102,-0.09191161,0.2819776,-0.09296527,-0.57481486,-0.12095923,-0.5501216,0.3588612,0.34112358,0.41722706,-0.8384573,0.5854945,0.34397018,-0.8061776,-0.10246875,-0.86755323,-0.056012254,-0.22137026,0.48954841,-0.10074285,-0.29114506,-0.27450654,0.14052029,0.6783431,0.1642704,-0.10192954,0.10099095,0.80577546,-0.21571095,0.8301499,0.15951312,0.68953896,-0.36413822,-0.27311578,0.54535794,-0.3685657,0.54588,-0.10523906,0.032976884,0.50217944,-0.45691136,-1.1762443,-0.6470525,-0.42586946,1.0550605,-0.3015298,-0.38620126,0.07925861,-0.24959199,-0.52859354,-0.07836006,0.57192606,-0.30573407,-0.04364947,-0.90039676,-0.08347895,-0.18049999,0.18095684,-0.12705515,0.29451576,-0.56629103,0.7725708,0.023083022,0.411731,0.40583548,0.24446608,-0.3044299,-0.545561,0.080185466,1.0681478,0.35200396,0.14816833,-0.28314885,-0.19519792,-0.082204856,0.016452476,0.020428231,0.6698544,0.635786,0.025220199,-0.024236823,0.3386726,-0.1803153,-0.053942144,-0.2610239,-0.3684758,-0.2186157,0.10991603,0.7759097,1.0767014,-0.37273362,0.42317128,-0.24006897,0.5144179,0.06522563,-0.33125308,0.5363049,0.94272107,-0.036974087,-0.15633047,0.8144825,0.49259362,-0.44747415,0.58456105,-0.78649265,-0.21119541,0.46338686,-0.0782887,-0.49249396,0.037457585,-0.32004747,0.09450803,-1.11582,0.1392907,-0.17831624,-0.4989771,-0.81846905,-0.18113738,-3.5834484,0.18662687,-0.36959627,-0.062070042,-0.1003502,-0.2821913,0.5148705,-0.8934634,-0.7205842,0.11043197,0.059262518,0.6586467,-0.23283172,0.29155836,-0.25481352,-0.3035554,-0.15773161,0.28341624,0.32683805,0.2745041,-0.061701104,-0.42980313,0.27052078,-0.23574318,-0.43816498,-0.089203,-0.62899673,-0.6267466,0.0006457418,-0.61675483,-0.30643517,0.7824633,-0.33141848,-0.22269136,-0.29635534,0.12474991,-0.10522396,0.42944965,-0.08033374,0.13875094,0.24692936,0.020337781,0.051674336,-0.11754837,0.26411557,0.049245197,0.4303255,0.44018936,-0.17696936,0.23994197,0.62804866,0.76038265,-0.03406847,1.0022146,0.52078754,-0.051065475,0.0521818,-0.17484866,-0.49410442,-0.96822566,-0.46978477,0.11955812,-0.58230644,-0.36988592,-0.18925285,-0.39737776,-0.969053,0.8543355,-0.066086546,0.16203828,-0.1970336,0.33408263,0.5707934,-0.39438072,0.10735142,-0.088801205,-0.11528639,-0.5978558,-0.437048,-0.583236,-0.71753806,-0.16611932,1.2800429,0.05206408,-0.18583278,0.15183313,-0.32364088,0.13579513,0.11292964,0.06423534,0.20754509,0.72151065,-0.009925991,-0.7768895,0.45177498,-0.27983344,-0.15254004,-0.70279485,-0.04534595,0.7786649,-0.76093644,0.73270154,0.40099275,0.20775338,0.048341352,-0.6489976,-0.25045612,0.17994438,-0.059427682,0.7907891,0.47165546,-0.52814156,0.5276989,0.19035949,-0.23747413,-0.64041054,0.4732667,-0.013716601,-0.20600902,0.024495244,0.3854097,0.04121213,0.041346647,-0.23310655,0.30380353,-0.36648977,0.2864237,0.34021565,-0.060389757,0.2723162,-0.07340622,0.035313014,-0.8823127,0.14434597,-0.4410622,-0.38224137,0.19022052,0.06526873,0.18981715,0.2100312,0.11573091,0.3633598,-0.4588666,0.11291027,-0.2160747,-0.35170734,0.31792918,0.6215865,0.38703594,-0.6133057,0.73113054,0.11983133,-0.17626542,-0.0066815615,-0.12065381,0.48998547,-0.023853987,0.2872978,-0.05253656,-0.33505058,0.17208524,0.7716996,0.149175,0.49037778,0.1785013,-0.0053046294,0.42656156,0.061968636,0.31959954,-0.09639027,-0.62723345,-0.052226126,-0.10544022,0.08171876,0.5013582,0.08521827,0.28610155,-0.17092699,-0.18751945,0.32580853,0.23290652,-0.0045620003,-1.5729538,0.37954125,0.13050197,0.8453985,0.4276826,0.060121,-0.03685363,0.70500326,-0.5135197,-0.16858144,0.5547444,0.31550652,-0.44894513,0.59178025,-0.52837104,0.41566232,-0.33350262,0.06705937,-0.109827615,0.06285272,0.40747118,1.0269011,-0.40196228,0.03308467,0.04503128,-0.1023429,0.11331892,-0.40457225,0.08463287,-0.54309684,-0.3406391,0.94250244,0.48219696,0.54015213,-0.27974042,-0.16075876,0.16599977,-0.100864895,0.15148892,-0.13318025,-0.23271191,0.016500339,-0.7972348,-0.043759335,0.5413814,0.16915761,0.19474654,-0.027225846,-0.48392668,0.26535144,0.005089591,-0.30986133,-0.095169626,-0.6440653,-0.2739863,-0.39503157,-0.69542974,0.33996883,-0.35912654,0.26883015,0.29326925,0.098811485,-0.16402696,0.123977415,0.2488801,1.1186787,0.30270022,-0.08286036,-0.31065097,0.27329338,0.40848795,-0.34031406,-0.24857621,-0.34040228,0.34028175,-0.53055114,0.58750933,-0.21221733,-0.5160135,-0.18340869,-0.0813563,0.07321415,0.5435129,-0.25834134,-0.22641386,0.13734578,0.04297359,-0.27471963,-0.24924403,-0.5078387,0.20861828,-0.09026315,-0.07708327,-0.08976766,-0.055764865,-0.18764739,0.57439655,0.21134882,0.24653418,0.5757243,0.012456278,-0.25887027,-0.11239517,0.016510438,0.7027597,0.050043,-0.5190236,-0.47394577,-0.2870871,-0.41199186,0.41171542,0.10324446,0.14240174,-0.027288923,-0.40163937,0.7363181,0.12964489,1.3947077,0.07479211,-0.5515119,-0.095842905,0.6465928,-0.09084817,0.086890936,-0.44968033,1.1133122,0.5296474,-0.28987962,-0.14447545,-0.7383184,-0.04319107,0.41563037,-0.43240428,-0.16662787,-0.25791982,-0.83810234,-0.09552487,0.25164053,0.37121615,0.08993127,-0.051794767,0.24912888,0.15813105,0.22588646,0.57662797,-0.5116157,-0.17677324,0.4177499,0.16827428,-0.112761416,0.06984892,-0.29464298,0.36166617,-0.5731623,0.1461326,-0.6708998,0.18593061,-0.27625844,-0.33273605,0.2936205,0.05574158,0.47718772,-0.4145919,-0.24782509,-0.19634874,0.7696858,0.21614873,0.2960423,0.7847221,-0.27478436,-0.21158361,0.0679014,0.41941082,1.5496974,-0.30510256,0.27332607,0.24140473,-0.23849817,-0.5518642,0.37126866,-0.5524084,0.010942261,-0.03725426,-0.52372307,-0.5127039,0.17437029,-0.032921623,-0.036398094,0.050512474,-0.45954633,-0.13514769,0.6487187,-0.36667815,-0.08692518,-0.17722857,0.27254525,0.7155482,-0.37367043,-0.4713885,0.007765571,0.59388196,-0.1460309,-0.48657107,-0.18159242,-0.36890462,0.58612144,0.012573771,-0.2443444,-0.043901008,0.19403769,-0.43025926,0.1894546,0.2684354,-0.38157764,0.11843904,-0.3502805,-0.108794875,1.156094,-0.048130196,0.31015578,-0.70325404,-0.47110164,-1.0141298,-0.33207867,0.009306778,0.026135406,-0.10550783,-0.71730465,0.053730417,-0.13296427,-0.09521245,0.048081126,-0.56518906,0.41164997,0.04222418,0.76220495,-0.11316124,-0.84800357,0.07550198,0.24818327,-0.0973376,-0.4810445,0.8149669,-0.032944113,0.8392255,0.10363718,0.43006173,0.033535387,-0.6486792,0.18526672,-0.29172727,-0.21315008,-0.96896696,0.086249925 -320,0.52310276,-0.42703003,-0.5961577,0.03673104,-0.23871638,0.14416271,-0.15245362,0.5798962,-0.030923175,-0.5472267,-0.13709027,-0.11724117,-0.021722184,0.41549942,-0.2031435,-0.42840806,-0.02571953,0.2628224,-0.55722815,0.66636074,-0.32955754,0.36016506,-0.062059656,0.28258374,0.06990194,0.26015824,0.057934113,-0.20309769,-0.25137243,-0.17949009,-0.093599245,0.23898774,-0.47287655,0.24656463,-0.15621424,-0.37115052,-0.012684196,-0.29828072,-0.3059241,-0.7350429,0.11797362,-0.69532937,0.5478477,0.016909337,-0.39263383,0.22727874,0.016143449,0.27952656,-0.300651,0.0984256,0.22805169,-0.11209526,-0.0952029,-0.3564201,-0.1461039,-0.6056294,-0.5759965,-0.060172644,-0.4424488,-0.12200346,-0.048913606,0.17343731,-0.25111204,-0.082351334,-0.20866942,0.41978264,-0.49191573,-0.08775309,0.104392275,-0.046926036,0.22910397,-0.56690764,-0.17753384,-0.24278474,0.14092864,-0.08311617,-0.19601656,0.24999097,0.1576345,0.4679952,0.0374187,-0.13910116,-0.24256773,-0.064103834,0.1306434,0.47655383,-0.15328328,-0.48356044,-0.07463925,-0.12439283,0.17131323,-0.1550634,0.16866861,-0.23081629,-0.116966836,-0.027160231,-0.20010163,0.045253012,0.39417896,-0.31954286,-0.3106845,0.31081465,0.60807437,0.1788179,-0.19806154,0.098807976,-0.10229264,-0.47975233,-0.20274459,0.14461273,-0.09017582,0.55767876,-0.18855406,0.20668268,0.5989758,-0.15215372,-0.005155579,0.0386849,0.029040484,-0.008553973,-0.08774614,-0.5720505,0.28740254,-0.35479593,0.069983535,-0.17439093,0.595887,0.22077826,-0.65165025,0.45148283,-0.5495004,0.0734504,0.03113846,0.4737145,0.63674664,0.563425,0.09781622,0.46050367,-0.24750371,0.10252774,-0.038250707,-0.16514407,0.09506176,-0.23786275,-0.21585006,-0.46892625,0.1530982,-0.029315216,-0.27387065,-0.17036384,0.46247387,-0.62086135,-0.06306268,0.038522944,0.7660087,-0.3127037,-0.04377246,0.6975596,0.87330955,1.0442315,0.08488052,1.1589549,0.30986804,-0.26269335,0.021451639,-0.2471378,-0.5695637,0.20418021,0.35641295,-0.027040299,0.45342207,0.015718056,-0.12195552,0.41054186,-0.29114178,0.086141184,-0.20248416,0.033315666,-0.06181719,-0.09529999,-0.5402002,-0.25584343,-0.16535291,-0.06958661,0.00835943,0.23184499,-0.20549656,0.32639486,0.17847417,1.6538677,-0.18044524,0.042091306,0.15405641,0.393065,0.14782909,-0.11163257,-0.021681791,0.29359967,0.4586993,0.14961602,-0.5061608,0.14058533,-0.16488314,-0.73564243,-0.20657319,-0.22836144,0.012932872,-0.14270423,-0.5673856,-0.18651204,0.08021774,-0.16493091,0.21301273,-2.346876,-0.056640673,-0.0761516,0.27527696,-0.17327932,-0.3994242,-0.05453237,-0.36952627,0.22641902,0.26217708,0.43258947,-0.6478617,0.47132936,0.34804776,-0.40564978,-0.06918209,-0.5919818,-0.17394096,-0.07521068,0.43627262,-0.0355804,-0.013290966,0.11643119,0.024037743,0.37603608,-0.30723172,0.12016271,0.20641705,0.20928858,0.1584817,0.29913706,0.12916976,0.5011204,-0.26853922,-0.13731797,0.39511287,-0.34318656,0.19027065,0.040771168,0.21862753,0.33559456,-0.45889142,-0.83862305,-0.680064,-0.22365803,1.1403441,-0.16380267,-0.2715074,0.096526615,-0.22374357,-0.3956149,-0.18570445,0.31973442,-0.1336976,0.05290666,-0.80887717,-0.025100885,-0.093647875,0.3746423,0.016547177,0.013230248,-0.48917803,0.576623,-0.043693133,0.63711506,0.4274505,0.1352925,-0.12551475,-0.4778959,-0.08809268,1.089281,0.4479298,0.14587098,-0.15496387,-0.21228412,-0.3489994,0.15548763,-0.04780054,0.42335203,0.74402404,-0.03918368,0.06387989,0.18137659,-0.024742085,0.22344495,-0.15296799,-0.3543943,-0.06690804,0.15711135,0.49989885,0.30555496,-0.14205052,0.5632799,-0.2738877,0.53359944,-0.15179352,-0.40879238,0.44754678,1.0957409,-0.2593504,-0.16297117,0.6145497,0.5084515,-0.31004295,0.3922924,-0.6560928,-0.2604373,0.326994,-0.2419743,-0.2432594,0.43561867,-0.23740013,0.36453208,-0.92256254,0.5205266,-0.32171923,-0.57395196,-0.626099,-0.14260203,-2.9557912,0.24866979,-0.118387274,-0.19739218,-0.027903585,-0.13352521,0.39451733,-0.6846342,-0.4559768,0.07220776,0.10952399,0.6023628,0.035981733,-0.086621955,-0.25324047,-0.50410736,-0.11179306,0.2816475,0.090291515,0.26067582,-0.17420883,-0.5293056,-0.081377186,-0.20695959,-0.34452406,0.06568911,-0.8383477,-0.5268383,-0.13691215,-0.52950484,-0.3229896,0.66399133,-0.20353632,0.1170143,-0.09400991,-0.06714587,-0.17593437,0.17342362,0.025362408,0.26092494,-0.015409513,-0.06880323,0.09900867,-0.20348406,0.0819592,0.15472294,0.2240403,0.35970503,-0.2611076,0.18964805,0.58555776,0.68323696,-0.110345356,0.82239515,0.62884253,-0.1810331,0.4301847,-0.17085412,-0.215472,-0.6414978,-0.48122412,-0.020225527,-0.36056516,-0.4695347,-0.046713065,-0.3044772,-0.81674933,0.64997464,-0.17769171,0.0011564374,0.086379446,0.38655424,0.51459366,-0.2019802,-0.06926703,-0.1106592,-0.17631921,-0.392026,-0.41969612,-0.75753754,-0.43002245,-0.020290295,1.3137499,-0.20265032,0.102445886,0.11910228,-0.23890118,0.040890694,0.13804907,0.0140869655,0.11323878,0.4156395,-0.22856797,-0.6999185,0.5260938,-0.10251741,-0.28134346,-0.18333356,0.27398655,0.74830043,-0.7420502,0.42677796,0.39903003,0.01959353,-0.24794383,-0.45325178,-0.22142096,0.096761584,-0.17791905,0.40523037,0.17879707,-0.6364259,0.40176657,0.3223625,-0.36337906,-0.674309,0.466035,-0.034596,-0.24624461,0.09229329,0.35890818,-0.2128289,0.058714136,-0.3728427,0.23585504,-0.48703936,0.19351467,0.37058797,-0.06062256,0.066548795,-0.24452001,0.006066235,-0.8277524,0.070992075,-0.3742927,-0.34809673,0.27575347,0.09067513,0.15379347,0.16030271,0.09234405,0.40889543,-0.4022886,0.1145716,-0.065352455,-0.30612585,0.4056926,0.40348282,0.21321869,-0.30048516,0.48067066,0.014155629,-0.09656267,-0.26822665,0.10614917,0.55329967,0.13995923,0.41759187,-0.07175066,-0.20809129,0.3414942,0.7960406,0.31075805,0.63572186,0.008313123,-0.13353406,0.18503883,0.10598922,0.23079924,0.094274126,-0.3302746,-0.049036987,0.08133186,0.20660114,0.50892043,0.051501267,0.38293898,-0.17100368,-0.24388734,0.040464696,0.21881573,0.035677005,-1.1121627,0.44952738,0.17801683,0.6300704,0.63427466,0.1635094,-0.1487482,0.57542026,-0.32316697,0.1152511,0.3423316,-0.034657247,-0.58375186,0.5372115,-0.64633286,0.33169693,-0.109656766,-0.052911762,0.041991796,-0.17266846,0.5426829,0.885586,-0.061672848,0.11909537,0.0026340366,-0.20194419,0.08360299,-0.34485015,0.05983253,-0.4133721,-0.365132,0.72632116,0.44687155,0.40450957,-0.16596515,0.057169702,0.11754587,-0.14681871,0.37333933,0.14159788,0.25827152,0.018147819,-0.61184394,-0.146302,0.5907497,-0.2443013,0.066687986,0.079526305,-0.5272512,0.2070147,-0.061287235,0.012469991,-0.02052462,-0.6342284,0.01956716,-0.39260644,-0.314178,0.56272304,-0.105340675,0.09672438,0.16362739,0.06874303,-0.2884674,0.29651174,0.13489887,0.62423015,0.12753966,-0.16645207,-0.18209185,0.28789333,0.16365999,-0.24058637,-0.11038415,-0.22937985,0.09673437,-0.60945046,0.3081116,0.11449493,-0.2470266,0.057097897,-0.053650375,-0.011761081,0.43658677,-0.026751598,-0.16964756,0.006404257,-0.011564628,-0.19327196,-0.2562915,-0.15231766,0.2831152,0.15324074,0.026573602,-0.067355424,0.08734996,-0.005008926,0.5697264,0.097411364,0.44382197,0.57593143,0.05398617,-0.4404455,-0.11826232,0.07837917,0.3688702,0.03857853,-0.030678503,-0.31638438,-0.42096606,-0.33231786,-0.023466023,-0.24987565,0.4095537,0.20375586,-0.24866565,0.962081,-0.012116241,1.2301676,-0.121592276,-0.33429763,0.06802109,0.41308016,0.05484677,0.0871844,-0.421737,1.0836129,0.45412222,-0.06312877,-0.097974844,-0.2605362,-0.22379008,0.09598141,-0.24343099,-0.22961079,-0.08146398,-0.6979023,-0.4134628,0.20855877,0.3279297,0.15414084,-0.10191556,0.17553124,0.2964163,-0.0066179195,0.12263704,-0.48660338,-0.025294764,0.38349375,0.2261432,-0.08421723,0.11654563,-0.5273925,0.3823045,-0.64266783,0.18934713,-0.20101975,0.08342401,-0.09682034,-0.43344232,0.21720524,0.11337616,0.23197907,-0.51437736,-0.37943316,-0.23735991,0.5510343,-0.048015416,0.12687606,0.60688645,-0.32748902,0.14510009,0.10743012,0.5069534,0.94957435,-0.3936566,0.006666009,0.42897612,-0.42128894,-0.63663447,0.11983841,-0.21399304,0.20996137,-0.13842313,-0.23002917,-0.66959256,0.2914076,0.27069017,-0.11239778,0.026939234,-0.47114295,-0.061672583,0.5208644,-0.44414523,-0.24871527,-0.30867442,0.3615519,0.593124,-0.5098935,-0.4924293,-0.037833255,0.23748241,-0.45958152,-0.50633705,-0.18309647,-0.43993872,0.46913016,0.23353806,-0.3241242,-0.015669862,0.04764737,-0.41171607,0.09243239,0.34146273,-0.3926268,0.11179863,-0.5221215,0.00039230386,0.8506596,-0.050069496,-0.10901987,-0.47792122,-0.4820458,-0.9157817,-0.5313889,0.49941388,0.25818282,0.0641017,-0.6132191,0.055982854,-0.12609883,-0.13868667,-0.026433144,-0.21720646,0.4602075,0.19764636,0.28624067,-0.10428422,-0.8474013,0.3317013,0.097263254,-0.11104898,-0.527386,0.39859515,-0.12938315,0.9752422,0.09650646,0.21941127,0.26768792,-0.56738085,-0.059617057,-0.1328104,-0.038040526,-0.74210376,0.094809085 -321,0.4404702,-0.27357876,-0.5565433,-0.10301788,0.0022624182,0.23981775,-0.1972521,0.4569587,-0.0010004685,-0.57983345,-0.059660144,-0.18520229,0.08207773,0.3449751,-0.18196464,-0.43465754,-0.122787714,0.30518717,-0.41261798,0.4890378,-0.4961601,0.30700538,-0.08566888,0.40195215,0.0148406625,0.21924862,0.13315135,-0.12732102,-0.34854537,-0.20105402,-0.09069256,0.3765743,-0.5141524,0.029992612,-0.1071848,-0.60368574,-0.040680222,-0.47316054,-0.25634858,-0.71242565,0.24359617,-0.9719015,0.5825592,0.08681404,-0.2829898,0.29269102,0.027555594,0.31433025,-0.072435215,0.1401871,0.19217774,-0.010986952,0.019490518,-0.33167428,-0.35639074,-0.5254042,-0.42791402,0.12011652,-0.38384432,-0.29168144,0.07279542,0.1459998,-0.1730368,-0.013869861,-0.18754485,0.18139093,-0.43440887,-0.16794194,0.14585169,-0.099228546,0.41437536,-0.5212616,-0.24608073,-0.1321803,0.29668915,-0.3769369,-0.053027943,0.069031924,0.33628258,0.5243486,-0.18337396,-0.010718559,-0.37390006,0.007148633,0.110950194,0.6007674,-0.3575896,-0.5688474,-0.16739517,-0.083918616,0.19674642,0.12696558,0.13882364,-0.22712325,-0.06183582,-0.1027685,-0.32745954,0.14689308,0.36457193,-0.56904644,-0.33561918,0.4149308,0.6045043,0.09329428,-0.19077934,-0.077710405,0.035155594,-0.3963053,-0.08476692,0.27509898,-0.17313187,0.5450671,-0.10158697,0.33413947,0.5720026,-0.052540634,0.21547808,-0.10352687,-0.05391023,-0.21472117,-0.17989555,-0.3507523,0.17106694,-0.2520906,0.046250775,-0.32161507,0.66864777,0.09797459,-0.7994188,0.51734704,-0.63228446,-0.034753226,-0.026334655,0.50122,0.37358445,0.44017267,0.065580964,0.42725056,-0.26784986,-0.079611905,-0.20699646,-0.109751225,0.0058469702,-0.09830999,-0.021522105,-0.4941804,0.27571785,0.10688327,-0.13703138,0.08005372,0.52594,-0.4552404,-0.13737458,0.22243008,0.8071905,-0.328666,-0.0087245,0.7045069,0.97152096,0.79615486,0.0030731468,1.3477042,0.27824232,-0.32341984,0.03670456,-0.33871982,-0.74840575,0.27352005,0.4256546,-0.41088045,0.49490407,0.14565049,-0.06077815,0.3315581,-0.20811044,0.12934838,-0.37457135,-0.14418104,0.044924956,-0.024987945,-0.3764126,-0.23005581,-0.055955894,-0.031408567,0.17631334,0.20668125,-0.24859406,0.32585767,0.14152227,1.9152973,-0.21067502,0.14232261,0.0523048,0.39257208,0.09749388,0.0040778313,0.046773337,0.29474837,0.32644254,0.023074461,-0.4465321,0.14529315,-0.06810319,-0.6012291,-0.16742764,-0.094790496,-0.15127836,0.119727366,-0.43461642,-0.057839375,-0.10537647,-0.16537109,0.31104615,-2.5499365,-0.20722674,-0.06792558,0.18389463,-0.3359123,-0.4562103,-0.25312516,-0.34107488,0.37728888,0.38491744,0.44389135,-0.62980807,0.51005304,0.26692083,-0.3601408,-0.14312147,-0.59028494,-0.15527579,-0.07597505,0.19534995,-0.17126815,-0.084650405,0.11556253,0.05766199,0.29047143,-0.15140167,0.049691044,0.31074393,0.3992806,0.2400706,0.3136577,0.031046228,0.49709845,-0.24506181,-0.25302002,0.35805878,-0.4469679,0.36155587,0.104830466,0.12741168,0.2818268,-0.5969313,-0.9206455,-0.8100944,-0.4085094,1.1382874,-0.118116654,-0.39445627,0.11239297,-0.16404827,-0.5884688,-0.17069629,0.43172786,-0.10702874,-0.09200729,-0.8412376,-0.05219569,-0.1217189,0.33288097,0.03441197,0.008167707,-0.5349692,0.5534627,-0.06932858,0.5206101,0.42741993,0.13028263,-0.18055807,-0.37002468,-0.105412535,1.0414561,0.21795982,0.17233603,-0.1684819,-0.21479757,-0.49502227,0.15596148,0.09226214,0.36831233,0.60976434,0.05519635,-0.021827493,0.28516588,0.04840978,0.11187995,-0.12679349,-0.17838955,-0.105392255,0.21588199,0.45938948,0.31503233,-0.253018,0.47228387,-0.2251254,0.3470845,-0.2437082,-0.3340707,0.42401204,0.79543436,-0.16818954,-0.1734147,0.7211023,0.5032648,-0.46441525,0.41564816,-0.53183365,-0.26854804,0.21063422,-0.2739003,-0.28970936,0.45795444,-0.29218817,0.23963378,-1.0144628,0.23117658,-0.37396696,-0.13897444,-0.6656857,-0.019198643,-3.385591,0.2846467,-0.018487113,-0.25787082,-0.043324806,-0.1276571,0.38121015,-0.6287968,-0.67523444,0.06953134,0.07662338,0.55935574,0.025896069,0.13841106,-0.24725357,-0.27373585,-0.16318037,0.19460799,0.14061667,0.2903383,-0.18286602,-0.5276951,-0.19253299,-0.21580788,-0.1612273,0.06923444,-0.7582306,-0.4046931,-0.0575521,-0.60079205,-0.20652859,0.55895984,-0.37277237,0.06339026,-0.20919777,0.0774858,-0.32040608,0.39216137,-0.0174976,0.17828992,0.065763205,-0.15749535,0.06404328,-0.17176296,0.20099425,0.04218239,0.13691756,0.35611436,-0.29238346,0.1968609,0.3889097,0.68558055,-0.040727504,0.68388104,0.50792164,-0.19283533,0.28678495,-0.38396198,-0.26356485,-0.5698134,-0.30046272,-0.0012224179,-0.37859976,-0.68225425,-0.18563351,-0.27057558,-0.6902145,0.6234761,-0.123977415,-0.006703459,0.14091994,0.46576992,0.4576829,-0.22099565,0.086981624,-0.104227535,-0.08991511,-0.43730742,-0.3561303,-0.57924944,-0.30635616,0.18098314,1.0626688,-0.10538978,0.1620761,0.17030272,-0.17595908,-0.002021511,0.2184398,0.1508593,0.043144677,0.599749,-0.14892645,-0.6195816,0.4490586,-0.07613085,-0.35732418,-0.27192232,0.05709133,0.63357174,-0.7307177,0.58596,0.40521064,0.048201647,-0.005553319,-0.47807986,-0.1497713,0.04500608,-0.23646294,0.38886398,0.23764324,-0.6158291,0.33739808,0.49405444,-0.072174385,-0.7181202,0.45923144,-0.017990204,-0.34438103,-0.07835665,0.4417884,0.016391333,0.05902976,-0.25037992,0.17712249,-0.45719272,0.16131662,0.20121154,-0.09002887,0.33988154,-0.3144978,-0.103506,-0.75627995,0.14782347,-0.4788483,-0.28663352,0.30317274,0.053231362,0.13821533,0.24504445,-0.0070791245,0.48503444,-0.5084573,0.13313964,-0.0028522061,-0.088764004,0.23126075,0.23469433,0.37274158,-0.44989723,0.49664986,-0.1163068,-0.2004243,-0.1973404,0.0055152634,0.6130905,0.117013626,0.23346272,-0.0016036079,-0.36774832,0.39809263,0.7484044,0.32056963,0.47579962,0.018817503,-0.16570562,0.1945959,0.11612392,0.07534199,0.009464228,-0.38689676,-0.16709335,0.01754297,0.114980265,0.37163675,0.01105261,0.42397645,-0.27069375,-0.19044913,0.025289187,0.24662144,0.07477085,-0.7972864,0.29686183,0.091414586,0.7301084,0.40637702,-0.028650407,0.15417871,0.49581236,-0.40983975,0.14646865,0.21488406,-0.1396691,-0.6783748,0.6100048,-0.56897825,0.17478754,-0.09916095,0.018602064,0.036482815,-0.21250373,0.5165888,0.73709655,-0.1006347,0.14233099,0.0013517336,-0.18474586,0.031199329,-0.21392256,0.00403829,-0.55947083,-0.19284879,0.63140893,0.31700113,0.44526005,-0.2313923,0.016582603,0.07559733,0.010017418,0.19046792,0.15249106,0.3033293,0.015877102,-0.6884305,-0.21359754,0.5926742,0.0841643,0.024371762,0.02476977,-0.57862943,0.40050572,-0.07580428,-0.02902155,-0.041448556,-0.49000672,0.016168173,-0.4317164,-0.37136596,0.35208064,-0.047459092,0.17919543,0.16682877,0.08471194,-0.25743696,0.40468195,0.13080874,0.7789568,0.18222196,-0.08841006,-0.33463484,0.34285986,0.1602544,-0.20362738,-0.16738823,-0.21695863,0.07309289,-0.54269683,0.44704723,0.096627794,-0.22620481,0.18391186,-0.028200595,0.09839511,0.47114393,-0.08361887,-0.10945936,0.010661387,-0.0016980446,-0.29863715,-0.16595715,-0.09792928,0.22683159,0.24259847,-0.078531355,-0.1868322,0.10312437,-0.13487633,0.55564696,0.00019449912,0.3736036,0.6169619,0.29756212,-0.30213538,-0.103250355,0.03601959,0.40471044,-0.15192384,-0.13405164,-0.26109594,-0.56184727,-0.19767693,0.28268287,-0.13553688,0.27727726,0.20812696,-0.17002708,0.794686,0.007897427,1.0335914,0.023988714,-0.35476714,-0.038196865,0.4522602,-0.096965715,-0.07967122,-0.4639832,1.0303553,0.5419768,-0.027932186,0.08156705,-0.25351134,-0.2300686,0.09567081,-0.23468287,0.075192146,-0.058166724,-0.67973036,-0.4174907,0.18060061,0.32638982,0.15972707,-0.077802055,0.41110283,0.25900874,0.167951,0.16563965,-0.38569292,-0.294716,0.31420162,0.262253,-0.12132837,0.15512063,-0.39178798,0.31670836,-0.60823464,-0.027212858,-0.37138808,0.04546558,-0.036935855,-0.4036132,0.057294685,-0.05663395,0.16980211,-0.39772636,-0.3823579,-0.051589005,0.38380605,0.11782993,0.14103732,0.60327727,-0.17125812,0.24595474,-0.013515839,0.48307604,1.0534866,-0.16428114,-0.019671509,0.42242172,-0.17145406,-0.6667264,0.29574808,-0.3535883,0.29379052,-0.02381879,-0.15483278,-0.5868169,0.4164951,0.28013748,-0.06796389,-0.016056629,-0.41204056,-0.05018889,0.3862373,-0.350722,-0.18031335,-0.31101614,0.13186303,0.71999454,-0.27556303,-0.427908,0.05588029,0.36669615,-0.42685217,-0.46563178,-0.04332828,-0.45249373,0.32819593,0.2167181,-0.29774272,-0.12119259,0.0026406324,-0.35480055,0.16319036,0.3090477,-0.37947333,0.11419961,-0.5783367,0.04889123,1.0241883,-0.0875604,0.114298314,-0.49105576,-0.5733144,-0.87537503,-0.43893352,0.5493805,0.19493967,0.064247005,-0.52130216,0.25563785,-0.090391874,-0.22826256,0.07857384,-0.13711931,0.44775566,0.1433534,0.49862286,-0.21226467,-0.6481679,0.1186057,0.14696676,-0.09829255,-0.4796664,0.5707859,0.042345185,1.0122788,0.055901308,0.07804807,0.4262734,-0.6274125,-0.108890146,-0.2387513,-0.09112971,-0.87425685,0.052497864 -322,0.45009357,-0.06826473,-0.30222476,-0.13671388,-0.24530937,0.17724206,-0.06168486,0.46605122,0.15272287,-0.40902397,-0.17848852,-0.29855818,0.06474167,0.2935275,-0.17215145,-0.66139877,0.19376224,0.11290436,-0.33860528,0.40233994,-0.49720737,0.5943419,0.19553661,0.14655131,-0.036859002,0.23819372,0.25403905,-0.23310801,-0.0940935,-0.30506286,-0.30934548,0.35095674,-0.67925155,0.14361581,-0.20196016,-0.36265928,0.26232523,-0.47734365,-0.2696553,-0.7306883,0.12130766,-0.6623762,0.6220757,0.116263516,-0.18748668,0.21414006,0.049973115,0.20349748,-0.11663812,0.18193245,0.16468616,-0.14304852,0.01425378,-0.14769092,-0.2966296,-0.65742517,-0.53076833,0.063609414,-0.3911975,-0.35367584,-0.26095837,0.08198275,-0.39122823,-0.004969187,-0.1509873,0.31453156,-0.41460532,0.029891461,0.20704773,-0.22054727,0.16817735,-0.56563103,-0.061735965,-0.13758488,0.110854305,-0.32210696,-0.17720063,0.22504084,0.34516832,0.40138042,0.03328629,-0.3239556,-0.039287496,-0.13143837,-0.04728149,0.69269305,-0.32890666,-0.6295129,-0.053345677,0.069863215,0.22823545,0.22410806,0.08016245,-0.23613296,-0.17039919,-7.2252005e-05,-0.32793945,0.34806553,0.48335966,-0.47555664,-0.27857628,0.24618348,0.38702175,0.09401432,-0.008649753,0.014869377,-0.05166199,-0.5729368,-0.20823562,0.06956543,-0.12239089,0.47483253,-0.16479713,0.18920235,0.7854651,-0.20501094,0.14053103,-0.039116308,-0.06767574,-0.081153676,-0.22014296,-0.22149631,0.25467765,-0.53832585,0.084506966,-0.25348026,0.9064138,0.22128713,-0.6306827,0.3281424,-0.4794782,0.075739056,-0.06457228,0.5006917,0.49766755,0.3423829,0.19748834,0.50103706,-0.4844163,0.068627015,-0.14570703,-0.40950495,0.1014967,0.03040247,-0.066303305,-0.2775025,-0.004308045,0.09728837,-0.08358221,0.14113961,0.27280858,-0.6558589,0.006008068,0.18082234,0.77725554,-0.37305295,-0.15122023,0.69985473,0.8704008,0.750119,0.0014455812,1.4046988,0.35476714,-0.11826256,0.05422292,-0.24990824,-0.47104955,0.19011074,0.4361843,-0.43586433,0.21359883,0.07966452,-0.026029395,0.28801292,-0.24258098,0.023052782,-0.15181123,0.123183444,-0.07332901,-0.23658241,-0.43258697,-0.26856166,-0.036484316,-0.03403132,0.2154623,0.2607288,-0.15480636,0.26862717,0.10076937,1.349501,-0.036339775,0.02781589,0.0536148,0.3078626,0.39769703,-0.03101401,0.13267995,0.35558474,0.3709222,-0.03506522,-0.49027187,0.056252144,-0.19999456,-0.55698514,-0.15924793,-0.28734666,-0.06646349,0.12779517,-0.44840798,-0.10344437,-0.0076200143,-0.10085789,0.58721614,-2.6407447,-0.11162514,-0.031509124,0.25687465,-0.18843529,-0.48556483,-0.13798551,-0.4954117,0.42022848,0.35757926,0.3866991,-0.77487403,0.21839282,0.42461675,-0.41019145,-0.26823223,-0.7084134,-0.042798515,-0.102550715,0.3252015,0.144907,-0.0593163,-0.034783714,0.08505459,0.6165321,-0.09463806,0.06530548,-0.016265664,0.4262998,0.039441526,0.43439096,0.18270566,0.5587867,-0.0022235736,-0.12472873,0.38189372,-0.3427772,0.24787122,-0.081923775,0.15947989,0.23482892,-0.22484162,-0.755123,-0.62256336,-0.49210167,0.9184728,0.061811194,-0.3126794,0.13370524,0.16687159,-0.26945853,-0.022839487,0.41268197,-0.25417686,0.07441811,-0.64414746,-0.021942772,-0.022610188,0.044101812,-0.027350692,0.01516486,-0.4826547,0.5695889,-0.047124375,0.34318197,0.3212886,0.2605259,-0.24737509,-0.48248267,-0.16020392,0.9103038,0.55320716,0.12894586,-0.21874025,-0.18943861,-0.24859825,-0.08831225,-0.029963566,0.52477455,0.8911046,-0.046443164,0.039464414,0.26717642,0.1347881,0.11021476,-0.07434945,-0.31502822,0.15407029,-0.008025162,0.60912025,0.37385786,-0.1826345,0.40524113,-0.086364985,0.57046914,-0.15301526,-0.4800512,0.4114769,1.0659993,-0.16597562,-0.007443847,0.61145544,0.35785848,-0.24757972,0.3756895,-0.68408704,-0.28957075,0.62956285,-0.20193385,-0.42818362,0.2927412,-0.2307441,0.0408725,-0.8623804,0.49758792,-0.1518028,-0.44207442,-0.48926395,-0.17849721,-3.5541794,0.1340473,-0.22006118,-0.009874959,-0.09830075,-0.17534234,0.109057516,-0.5207662,-0.27300292,0.17079651,0.13347554,0.46745878,-0.04672323,0.13992839,-0.34506708,-0.30760977,-0.22458172,0.2512135,0.026048433,0.24589415,-0.15487003,-0.2895883,0.113185115,-0.25903058,-0.4875038,0.18309629,-0.6801925,-0.4676381,-0.19158365,-0.651128,-0.25522867,0.74307615,-0.39421204,0.04966822,-0.1190694,0.101040624,-0.13957387,0.3528782,0.20223917,0.13682826,-0.068588145,0.026400814,0.053386703,-0.37945807,0.33800358,0.21951431,0.39384073,0.3194284,-0.1229673,0.04318403,0.4474368,0.43249297,-0.04022055,0.70634055,0.3184141,-0.106138915,0.41483378,-0.22813523,-0.40759218,-0.5693715,-0.5087138,-0.030261658,-0.39077312,-0.3806951,-0.17878455,-0.32247615,-0.62487686,0.5190778,-0.017060585,-0.047630146,-0.15276599,0.25718677,0.3670417,-0.23544541,-0.11420581,-0.041044,-0.03179808,-0.3963755,-0.33348745,-0.62890923,-0.49652103,0.10322596,0.85085267,-0.15825775,-0.036986645,-0.17917001,0.21328667,-0.03770163,0.011467308,0.06304647,0.046306007,0.32276875,-0.27304718,-0.64932853,0.59940565,-0.10991657,-0.3348916,-0.5863997,0.15451086,0.6529668,-0.7040514,0.51104546,0.46249935,0.019284993,0.02344076,-0.55284315,-0.2322242,0.1318674,-0.24942887,0.4107251,-0.046291843,-0.60866034,0.49953887,0.36326274,-0.3689088,-0.57072544,0.6033034,-0.009004949,-0.37964648,0.12277734,0.35687992,0.030061945,-0.027724836,-0.12516646,0.2062802,-0.58227694,0.258398,0.25961232,0.10537677,0.5381402,-0.051779196,-0.30264783,-0.87184817,0.06717482,-0.44102353,-0.3506274,-0.04628554,-0.033246286,0.018844858,0.37654954,0.018103473,0.40907568,-0.40293592,0.14624067,-0.13311419,-0.28044286,0.4007616,0.34791195,0.38809556,-0.2101185,0.5296248,0.07094013,-0.09711871,-0.067367494,0.14543515,0.5406311,0.076235,0.24884138,-0.05555884,-0.13769364,0.36070973,0.8068502,0.15595952,0.31933326,0.16412756,-0.08633782,0.27429813,0.14262846,0.13109525,0.25312978,-0.33952713,-0.10744174,-0.1313372,0.019287907,0.5694628,0.13133045,0.25691658,-0.06914228,-0.34903485,0.13200767,0.18542938,0.20827937,-0.7688954,0.12729366,0.12867428,0.64974976,0.37789226,0.09368623,0.049466647,0.518689,-0.2522604,0.16868575,0.19726202,0.0153948255,-0.472655,0.5729084,-0.5785444,0.4197085,-0.030367803,-0.02839464,-0.054569557,-0.13382638,0.36665097,0.930304,-0.18922088,0.12501095,-0.038570385,-0.16295408,0.14267582,-0.49542975,0.18173906,-0.33538902,-0.24961981,0.7441577,0.38446438,0.26618373,-0.18198623,-0.0038016587,0.24432805,-0.18463004,0.017991245,-0.012919322,0.19630182,0.0552743,-0.42257783,-0.27424106,0.62330395,0.0056038685,0.061844286,-0.10208309,-0.22892688,0.3142891,-0.23849052,0.008299299,-8.698553e-05,-0.70694304,0.07742496,-0.37418348,-0.54870766,0.42904845,-0.12799823,0.21963279,0.17272255,0.06312966,-0.13105272,0.30844185,0.28324676,0.80602133,0.06444504,-0.14927867,-0.39107436,0.19588856,0.18391594,-0.3124929,-0.14973302,-0.17476827,0.0869147,-0.6086776,0.3107036,-0.043271847,-0.26147363,0.072592095,-0.1908266,-0.09546764,0.40038958,-0.105132535,-0.20433578,0.21339774,-0.14166185,-0.14353539,0.042982057,-0.13016303,0.280127,0.23643754,-0.09933333,-0.03691629,-0.23981181,-0.19428957,0.2906858,0.019796804,0.33016783,0.16375537,-0.010773741,-0.41333294,0.011893913,-0.0054832846,0.31755117,-0.21315816,0.020036556,-0.16100064,-0.47323555,-0.2877294,0.008797161,-0.1245698,0.2464447,0.12245832,-0.2828,0.85135514,0.08623305,1.1602904,-0.056516826,-0.4333714,0.029935066,0.5272542,0.03043868,-0.008473655,-0.3567948,1.1925589,0.586407,0.029684048,-0.20505527,-0.22011986,0.036235776,0.18258825,-0.19691607,-0.15375079,-0.05018353,-0.59260917,-0.4178568,0.33024853,0.27654168,0.112610996,0.07613186,0.006979188,0.29639333,0.1512401,0.4378472,-0.69163704,-0.081369944,0.21000972,0.31169292,-0.030939024,0.18403721,-0.4187033,0.50728476,-0.50606656,0.18318686,-0.38556826,0.1260441,-0.31537756,-0.1623072,0.23732865,-0.035936065,0.30916446,-0.41894728,-0.38649967,-0.19207829,0.27592447,0.061804995,0.2859637,0.69608414,-0.23621833,-0.02074257,-0.07064095,0.63728374,1.1616383,-0.22162893,-0.10061358,0.5868689,-0.45523158,-0.5527356,0.22144678,-0.25771195,-0.011083964,-0.08529285,-0.30115372,-0.32341504,0.28762916,0.12953356,-0.03723654,0.0076028313,-0.5392165,-0.048483506,0.4160425,-0.3981595,-0.29500347,-0.3455663,0.59841496,0.85018843,-0.3248198,-0.32908523,0.023393538,0.28483772,-0.39997125,-0.72439146,0.0026414096,-0.18600681,0.540084,0.08128621,-0.1913262,0.06865581,0.0128724985,-0.3026981,0.08364965,0.4055968,-0.3854611,0.1021399,-0.196849,0.08237379,0.84925777,0.0029041432,-0.0817722,-0.7245099,-0.4327031,-0.8835263,-0.57372236,0.64858866,0.330574,0.066818535,-0.52738976,-0.1328676,-0.103529945,-0.12839971,-0.094977595,-0.20779794,0.39713103,0.16293114,0.51589006,-0.23729303,-0.8834529,-0.03957243,0.090318225,-0.18162885,-0.51154315,0.35015213,-0.0044746622,0.8398516,0.1955658,-0.118538424,0.4040133,-0.42962605,0.07115931,-0.35850054,-0.19075301,-0.8104645,0.13269085 -323,0.29698697,-0.1312197,-0.5290776,-0.14186904,-0.14783713,0.009669741,-0.0550677,0.5136228,0.30143368,-0.48306084,0.015035484,-0.2712678,-0.036011577,0.45326266,-0.15417649,-0.71418977,-0.0024420181,-0.023767956,-0.5827673,0.60227674,-0.40683264,0.21083085,0.040834162,0.4249318,0.16974616,0.40276322,0.14836663,-0.23817448,-0.09543573,0.044802036,0.01637366,0.07337324,-0.52315134,0.039404266,-0.12238096,-0.33000043,-0.011769978,-0.39965662,-0.43546358,-0.76371896,0.4292668,-0.8671814,0.42197558,-0.03351983,-0.21076539,0.18094331,0.19358058,0.399347,-0.40843385,-0.07906424,0.017588139,0.08363632,-0.06301466,0.011347562,-0.31549254,-0.3574501,-0.6588137,0.060170937,-0.52033114,-0.28284818,-0.26927146,0.13423195,-0.42989558,0.07212968,-0.06851807,0.6209894,-0.44065052,-0.12127422,0.44452408,-0.2961912,0.24589086,-0.505041,-0.10993055,-0.14604323,0.13294971,-0.11478119,-0.12846312,0.366265,0.34649178,0.60876995,0.07835164,-0.19888064,-0.284135,-0.027729336,0.22909811,0.3585931,-0.14594494,-0.58069366,-0.17093499,-0.029837433,0.0911674,0.112492934,0.18781781,-0.36188474,0.0043872753,0.24836569,-0.3269498,0.3603225,0.55414647,-0.362822,-0.36086586,0.28768703,0.51133525,0.19946721,-0.12953152,0.08648365,0.11021933,-0.5030527,-0.14343289,0.06573298,-0.30563673,0.573085,-0.12805699,0.19509216,0.79796416,-0.17465182,0.12569612,-0.11998752,-0.11224601,-0.09007053,-0.44523224,-0.18421389,0.10954188,-0.5253949,0.18904768,-0.2228291,0.76489335,0.36304656,-0.63318765,0.4394494,-0.55181146,0.31244084,-0.09807291,0.50637543,0.72540057,0.31880724,0.25768572,0.72795635,-0.5510689,0.05074553,-0.11583435,-0.38529152,0.048578754,-0.18980889,0.01325446,-0.34830335,-0.087542616,0.10296686,-0.1512958,-0.03888049,0.29801133,-0.54657096,-0.049018245,0.069006845,0.9885244,-0.25925556,-0.013709458,0.76379496,0.9359389,0.95454013,0.030502943,1.342596,0.28051758,-0.28414932,0.4029743,-0.31653196,-0.8493449,0.2691659,0.29401734,0.0074325404,0.2842969,0.0030645707,-0.016861347,0.4928772,-0.48338848,0.26023057,-0.30995938,0.29904082,0.17558047,-0.12217037,-0.17831063,-0.13086183,-0.008462427,-0.048204105,0.08632536,0.18569747,-0.082181826,0.30229637,0.08165085,1.6061499,-0.07871151,0.111398146,0.14022246,0.56435615,0.186387,-0.07312369,-0.11123467,0.14593501,0.4192011,0.11629652,-0.7274963,0.04971216,-0.43797252,-0.4685758,-0.13448569,-0.3797698,-0.035636153,-0.035189103,-0.49190533,-0.15683956,-0.17899282,-0.2893251,0.32986468,-2.6085994,-0.22949256,-0.30414644,0.2640111,-0.40345192,-0.1369698,-0.02715195,-0.5109246,0.33995527,0.46137053,0.38389668,-0.63124883,0.46215388,0.5407305,-0.45650056,0.068715975,-0.6539565,-0.13619515,-0.06972324,0.33672333,-0.0006851991,-0.05722006,-0.06484076,0.18645607,0.48198274,0.15412016,0.022718191,0.3068029,0.32234046,-0.0057476363,0.55967915,-0.03499668,0.5223196,-0.3291855,-0.08746922,0.33879617,-0.44596282,0.20211323,-0.087903984,0.12904464,0.45285237,-0.45429546,-0.81237435,-0.6899883,-0.31545863,1.1801566,-0.15960759,-0.32349735,0.45874995,-0.30440986,-0.030128289,-0.2026292,0.60688823,-0.045395803,0.04445599,-0.80696464,0.09106603,-0.18576585,0.11080552,0.04432227,-0.00837602,-0.27491638,0.6374967,-0.06311998,0.4753827,0.30556476,0.16623001,-0.22115326,-0.5407301,0.12906058,0.8850794,0.36308628,0.15572186,-0.14170009,-0.2328452,-0.5191447,-0.24839936,0.12037928,0.42806536,0.89376056,-0.04787011,0.1278602,0.29032263,-0.04218725,0.08474953,-0.09921816,-0.48899618,-0.12168992,-0.036642965,0.54221666,0.53396744,-0.31578743,0.3717041,-0.045565996,0.28241348,-0.113106474,-0.41838962,0.62176883,0.75851643,-0.2608507,-0.28329474,0.5469628,0.41464362,-0.43799093,0.5390726,-0.6318752,-0.21065448,0.6062374,-0.16927834,-0.519874,0.16768196,-0.35632902,0.15398791,-0.98024255,0.35836276,-0.34969962,-0.23652633,-0.43174335,-0.2275173,-3.505524,0.11975539,-0.3716231,-0.14787586,-0.22989407,0.0809614,0.35398722,-0.5104033,-0.81943244,0.19110604,0.122232914,0.6944678,-0.020615654,0.15682255,-0.25555724,-0.08130991,-0.40610334,0.07578453,0.22654991,0.25288305,0.09101704,-0.519071,-0.15912797,-0.13334863,-0.4279324,0.20484398,-0.48743805,-0.5366772,-0.2948496,-0.653308,-0.31652805,0.7764052,-0.18787499,0.07777799,-0.1988618,-0.0266994,-0.22557841,0.4078626,0.14971104,0.006911977,0.17004183,-0.04777142,-0.016460033,-0.33233774,0.22256298,0.06456546,0.46115315,0.15846367,-0.06076123,0.25009382,0.5310621,0.7525002,0.049703218,0.8119249,0.52127653,-0.06758852,0.42099735,-0.35946324,-0.28374636,-0.5122288,-0.37560362,0.09459473,-0.36657712,-0.41714963,0.06798346,-0.39822325,-0.77382183,0.5067781,-0.06269643,0.354783,0.03837693,-0.022989241,0.4482731,-0.1848488,0.008801904,-0.012682387,-0.1252703,-0.620231,-0.20077196,-0.80902064,-0.5563284,0.29124004,0.9808582,-0.14351459,-0.16206487,0.0012025714,-0.34813705,0.03720445,0.09745566,0.04994879,0.1337371,0.5151908,-0.120339386,-0.68155384,0.40985745,-0.07590679,-0.059004672,-0.6330746,0.07235694,0.5774775,-0.7062637,0.6338646,0.26554808,0.022985578,-0.07419659,-0.38167718,-0.1740933,-0.14196195,-0.17560284,0.3057157,0.104663275,-0.7801405,0.332111,0.3885072,-0.22990759,-0.73735034,0.43284073,-0.061232965,-0.044512432,-0.01737405,0.365241,0.18445136,0.012671795,-0.22170852,0.2133319,-0.47441503,0.16797143,0.28457227,-0.15278816,0.54668045,-0.1422653,-0.21580859,-0.7684298,-0.11727434,-0.5369257,-0.11060317,0.3369916,-0.01092482,0.058715828,0.03981335,0.10529861,0.40750802,-0.017587693,0.10032435,-0.0017610948,-0.37430537,0.47399652,0.49790946,0.5173289,-0.49857962,0.72142726,-0.01269172,-0.014450761,0.22758694,-0.04844657,0.4142085,0.09887255,0.41765437,0.24398027,-0.28565156,0.316291,0.89613056,0.1602632,0.48362893,0.18757702,-0.1885067,0.3270961,0.17474446,-0.0876064,0.112226315,-0.527672,-0.051179428,-0.075519085,0.18716845,0.5569112,0.25391656,0.37738293,0.019297687,-0.37467873,-0.06931231,0.0481617,-0.21209612,-1.1711959,0.3400134,0.18036911,0.85821146,0.5285708,-0.013400849,0.05734936,0.59441245,-0.060151923,0.23277698,0.41464508,-0.1279086,-0.609555,0.5904981,-0.6243956,0.59968114,0.06007266,0.06123052,0.048415717,0.14175917,0.4383759,0.8440571,-0.08625135,-0.034576975,-0.13680753,-0.32839668,0.3637256,-0.46455076,0.102508865,-0.38536942,-0.23541275,0.5049667,0.5181091,0.28244242,-0.13925554,-0.02895918,0.06156124,-0.13795559,0.26642254,-0.19158225,0.016070686,-0.07674362,-0.6638557,-0.43285182,0.46592906,0.036675826,0.2270209,-0.029040825,-0.15275009,0.23623611,-0.22331381,-0.1259159,-0.08209501,-0.67704004,-0.050515223,-0.21606283,-0.4760659,0.38731357,-0.18165499,0.25320584,0.1908764,-0.036414705,-0.55653507,0.28466827,-0.19973275,0.67036885,-0.30154905,-0.17113757,-0.4632634,0.036491513,0.26943907,-0.32998917,-0.021946399,-0.3163584,-0.053323988,-0.5039581,0.42133135,-0.06283551,-0.30502743,0.05053773,-0.29237232,-0.06366104,0.60618377,-0.26378748,0.031183934,0.0064475616,-0.19057609,-0.27561325,-0.24379632,-0.13469087,0.2744463,0.032910608,0.08362251,-0.10427605,-0.26003462,-0.0031120102,0.53510404,-0.07008565,0.22791621,0.44067618,0.086954765,-0.39860025,-0.2334054,0.3088226,0.50549406,0.18561126,-0.17158785,-0.34145638,-0.4548539,-0.26638734,0.23150733,-0.09162008,0.39215127,0.03555728,-0.6084437,0.7948479,0.13322715,1.1989778,0.14203358,-0.35905582,0.1076642,0.44220668,0.05050976,0.031455263,-0.39340344,0.83928424,0.5407241,-0.16143554,-0.21731396,-0.416859,-0.014059595,0.15403658,-0.22097112,-0.16632871,-0.08367739,-0.65892607,-0.28770846,0.2805441,0.26364312,0.20739444,-0.008266195,0.042959746,-0.05467499,0.010563604,0.4890671,-0.48945364,-0.19177777,0.29210943,0.18044242,0.16164133,0.19066219,-0.49637908,0.3876496,-0.52570903,0.003346302,-0.16086522,0.14717625,-0.06994665,-0.3212903,0.26891595,0.013482501,0.47295177,-0.32885453,-0.53121126,-0.33102164,0.6105784,0.23015226,0.17275056,0.7523673,-0.30936432,-0.082306094,0.13204946,0.6886537,1.0671084,-0.11674916,0.02254396,0.19180226,-0.28889912,-0.7089951,0.35529345,-0.4626295,0.24367872,-0.04116789,-0.18201491,-0.6110807,0.27121437,0.21356939,-0.23560658,0.1689573,-0.6064938,-0.5553919,0.09258018,-0.23795009,-0.23252596,-0.3656502,0.067963295,0.61641985,-0.37764266,-0.07499191,0.216781,0.2676915,-0.15103278,-0.6028975,-0.22422408,-0.3243784,0.28574792,0.18724193,-0.43418306,-0.040905822,0.098215036,-0.5438339,0.19597377,0.14449488,-0.46103022,-0.022367867,-0.18587667,-0.19401623,0.911659,-0.08712553,0.20571777,-0.581246,-0.45570728,-0.9140924,-0.3046865,0.5792324,0.018883113,-0.023733504,-0.53652585,-0.10121923,-0.019721666,0.19671442,0.18965897,-0.5306038,0.41246125,0.058767024,0.51899016,-0.021688597,-0.6243515,-0.0036898772,0.12148221,-0.07418752,-0.6016155,0.62358296,-0.046118923,0.89211655,0.1187881,0.07257424,0.2688045,-0.47107697,-0.16715236,-0.33350596,-0.36456245,-0.564738,0.14972264 -324,0.30228963,-0.067536615,-0.61117786,-0.035531808,-0.26573083,-0.064878546,-0.20360711,0.41646656,0.34674075,-0.1707299,-0.052368116,-0.06739779,-0.0369872,0.45779413,-0.060805257,-0.5448853,0.051436923,0.28298208,-0.678479,0.61842084,-0.32939288,0.18633138,-0.18126479,0.45332596,0.08117664,0.28183442,-0.14844713,0.13570844,0.037938762,0.07475125,0.034088325,0.51093554,-0.38199443,0.19786279,-0.08939607,-0.18409903,-0.10133674,-0.35674217,-0.43007407,-0.7697305,0.2869449,-0.6232589,0.49989498,0.09052244,-0.40948746,0.28862298,-0.012559128,0.3260685,-0.4290345,-0.1550901,0.16833948,0.013067499,-0.19217148,-0.33174202,-0.23090945,-0.13979167,-0.5448702,0.03431153,-0.52050143,-0.11474277,-0.15897094,0.11070768,-0.31495664,-0.020307425,-0.017535688,0.45668986,-0.34524456,0.12716693,0.3023847,-0.12252576,0.06515804,-0.6487952,0.015107163,-0.042767055,0.10445411,-0.09126687,-0.33939978,0.23666193,0.029105889,0.4395044,-0.10226436,-0.2213745,-0.24276228,-0.009153014,0.029072406,0.3374849,-0.35008967,-0.23278645,-0.07135718,0.21511024,0.18998788,0.1412939,0.013525034,-0.354053,-0.083169684,-0.09237435,0.088366196,0.26787478,0.5449074,-0.17912616,-0.34173062,0.22690304,0.72695804,0.2222189,-0.057153378,-0.0247034,0.08399193,-0.41532505,-0.2063442,-0.13534822,-0.10610564,0.3118169,-0.086852424,0.22403921,0.5891579,0.029212456,-0.2123461,0.0038327554,0.19201483,0.19492492,-0.43350798,-0.24577735,0.28595728,-0.46383277,0.15448877,-0.0016989231,0.57375133,0.06651761,-0.7327625,0.38686663,-0.5003886,0.15855104,-0.005205989,0.430751,0.92714757,0.38193414,0.20703378,0.6040738,-0.32562926,0.24594785,-0.18481292,-0.13955553,0.10732679,-0.10132345,0.12025955,-0.59033954,0.033474136,-0.17331609,-0.39014733,0.35158613,0.23833865,-0.5424963,-0.23690227,0.1913242,0.7063724,-0.2276927,-0.06586785,0.553786,0.9539655,0.78729707,-0.054502495,0.90898293,0.25671116,-0.014838946,0.3173351,-0.39216316,-0.770457,0.17852338,0.21864462,0.08720796,0.2819311,0.056348983,-0.018051052,0.42902225,-0.42213386,0.01341029,-0.14166951,0.3361045,0.08462833,-0.019277323,-0.44966698,-0.22266485,-0.059240714,0.12352817,-0.046742983,0.30809337,-0.2118712,0.2889603,-0.06541576,1.7343643,0.033648513,0.10360111,0.18804295,0.3086189,0.3963517,-0.25484577,-0.25522897,0.44530943,0.11500812,0.11061291,-0.4330023,0.1495758,-0.18887001,-0.304165,-0.14891529,-0.28006262,0.09174118,0.0047603846,-0.4627481,-0.22286303,-0.13000561,-0.2764262,0.5174356,-2.7613757,-0.13433895,0.043289464,0.40021452,-0.19839947,-0.3665157,-0.21308972,-0.3790944,0.31919482,0.15194508,0.45965427,-0.48397547,0.32196113,0.28646678,-0.67500025,-0.03843862,-0.47957578,-0.14392552,0.12050735,0.29861924,-0.03455289,-0.12226272,-0.13268822,0.18979038,0.31939638,-0.15125482,0.08527488,0.4838197,0.29604182,-0.034295257,0.15570845,-0.11928617,0.4404431,-0.3834409,-0.2999851,0.37763005,-0.3106095,0.29676917,-0.06596773,0.08001206,0.46133634,-0.36346725,-0.9426861,-0.5029944,0.16802908,1.0664839,-0.18455474,-0.41533342,0.29222503,-0.59776515,-0.27307388,-0.035794415,0.36568722,-0.0064921738,-0.16454814,-0.83585167,0.09181433,0.023353163,0.38336807,0.14099006,-0.11601322,-0.3752306,0.51778394,-0.06741055,0.3750178,0.32153803,0.20221825,-0.28988954,-0.32656878,0.06394223,0.72478133,0.40683848,0.1192498,-0.16845912,-0.25228,-0.28134027,-0.02442816,0.13915142,0.45887792,0.58154994,-0.10262265,0.15652958,0.28211316,-0.083547845,0.023711676,-0.21062762,-0.19310741,-0.016887184,0.21180178,0.49513426,0.7187721,-0.34184462,0.388716,0.047681674,0.20005375,-0.04578597,-0.6093611,0.3850073,1.0282813,-0.021898678,-0.28506863,0.6141826,0.21021661,-0.3197912,0.40851003,-0.44134542,-0.25156307,0.40500185,-0.16752394,-0.3751737,0.14147547,-0.21482168,0.16177021,-0.7170395,0.29513258,-0.15717758,-0.542775,-0.62511504,-0.108385324,-2.3310475,0.17890634,-0.19226268,-0.031430293,-0.07487663,-0.039363578,0.036404658,-0.6154147,-0.56045556,0.16364631,0.1801366,0.6873206,-0.13943352,0.071840115,-0.09185394,-0.38985437,-0.18717526,0.16047117,0.21837786,0.38584998,-0.04179628,-0.4792455,-0.26024652,-0.0077425283,-0.30595475,0.044015847,-0.6718754,-0.26601583,-0.17405178,-0.7337442,0.055885695,0.5700726,-0.1352825,-0.06756589,-0.2862086,0.0596783,0.0605548,0.16931339,0.23351519,0.2389027,0.2365024,-0.05199574,-0.0629208,-0.26854694,0.15175332,-0.036772713,0.25760084,0.32546112,0.0033570607,0.25704995,0.52810127,0.70700866,-0.3021717,0.6936047,0.618517,-0.069116354,0.3225636,-0.21404769,-0.27259102,-0.3123212,-0.25334257,-0.101382,-0.3812788,-0.22804989,-0.022612253,-0.40215114,-0.77884716,0.44121447,-0.108417444,0.010781018,0.07782133,0.14633113,0.55415,-0.32073134,-0.040023785,-0.16127115,-0.08546756,-0.47082293,-0.255841,-0.4163609,-0.46429595,0.28403023,1.1968576,-0.31525293,0.16986969,0.074276224,-0.21178801,-0.08164825,0.09749189,-0.03366215,0.29632422,0.48301938,0.04374529,-0.47119674,0.28959855,0.0028747718,-0.22019455,-0.6347248,0.23113492,0.51365334,-0.4827757,0.63967854,0.17113905,0.035748623,-0.04931965,-0.7560411,-0.20001793,0.10465148,-0.30151716,0.37049302,0.31510755,-0.77375257,0.35140908,0.40583757,-0.446959,-0.7825789,0.30045378,-0.10997973,-0.45133114,-0.1804676,0.29967013,-0.014694242,0.034748387,-0.21609305,0.36812544,-0.20262697,0.17739828,0.16376933,-0.20878181,0.25002244,-0.40545312,-0.23730436,-0.67384315,0.04706062,-0.39022824,-0.36227942,0.33600846,0.17452072,-0.053438485,-0.0429802,0.02190332,0.5042005,-0.34709466,0.13186951,-0.28792915,-0.43368715,0.31641278,0.3681293,0.496821,-0.37563187,0.45572993,-0.09833268,-0.1147048,-0.028960986,0.024042448,0.51128966,-0.15563901,0.33429334,-0.062230434,-0.10966372,0.16026713,0.70501,-0.05241013,0.3226122,-0.032059293,-0.08929922,0.08616205,0.037446473,-0.082123406,-0.15126638,-0.43642855,0.21594359,-0.12095537,0.27811736,0.385049,0.12948203,0.19584343,-0.08939627,-0.3807239,-0.0041997987,0.21974629,0.094834134,-1.2206252,0.3185463,0.1524811,0.78148043,0.4674832,0.23330647,-0.09889078,0.6745668,-0.019327195,0.13996795,0.22608009,-0.15837017,-0.4721294,0.5397867,-0.752425,0.554636,0.08672541,-0.057344563,0.20298934,0.095581226,0.45713273,0.5913858,-0.16888756,-0.104771785,0.07545719,-0.1763557,-0.04232893,-0.31654963,0.112333484,-0.5410715,-0.46742734,0.5807108,0.46051693,0.29874876,-0.3575401,-0.036635138,0.18750477,-0.13844071,0.19157551,-0.025072671,0.17855808,0.1330848,-0.5173091,-0.14329652,0.46878394,0.0789954,0.08571377,-0.10805825,0.009250458,0.23424596,-0.2052824,-0.01661256,-0.0855357,-0.5831078,0.070105806,-0.37781546,-0.3623718,0.69681627,-0.09770151,0.118723504,0.13901539,0.067796454,-0.35893136,0.6300167,-0.16197486,0.8463513,0.11525492,-0.04648091,-0.19696967,0.36865452,0.00961562,-0.12436746,0.11257656,-0.37151432,0.03604994,-0.6095677,0.5065494,-0.01876772,-0.42566153,0.1003985,-0.15145646,0.17008893,0.5058453,-0.05774231,-0.17250869,-0.30999756,-0.22775477,-0.4113706,-0.48216906,-0.07473314,0.21868242,0.16021475,-0.037062906,-0.1410472,-0.1725494,-0.04204632,0.5268556,0.0059990166,0.23895302,0.33699927,0.25939587,-0.254424,0.13867177,0.26910475,0.46907392,-0.023215326,-0.099207446,-0.20628701,-0.24300112,-0.49587372,0.16803265,-0.18039784,0.38720408,0.07317186,-0.12682821,0.6428217,0.08023332,1.1044323,-0.07253752,-0.17181972,0.25631434,0.36414236,0.048953712,-0.09096472,-0.21231535,0.645353,0.6662939,0.12233008,-0.04547813,-0.22868414,-0.09549061,0.16218792,-0.2848414,-0.074622676,-0.0053297984,-0.63537353,-0.27034104,0.24174531,0.2689431,0.2096817,-0.2154511,0.08517989,0.08617205,0.016866283,0.049416613,-0.38219124,0.015145751,0.26745874,0.29750377,0.09566087,0.13457307,-0.53010374,0.34917924,-0.47332343,0.10671651,-0.32298306,0.20989323,-0.1219024,-0.28150946,0.11029264,0.04863085,0.31164965,-0.38959947,-0.24253592,-0.28147164,0.47222036,0.3267432,-0.014203036,0.5353522,-0.27852443,0.06831012,0.012706797,0.35715064,0.7148693,-0.3073115,-0.19529176,0.2787083,-0.16714348,-0.6237618,0.3467333,-0.3353101,0.109748475,-0.092477165,-0.15727496,-0.5699256,0.10844255,0.11323867,-0.037762824,-0.16293094,-0.5588506,-0.015426401,0.03604005,-0.21567263,-0.01828601,-0.29998836,0.07342458,0.5737865,-0.11859384,-0.36773527,0.18430719,0.17616227,-0.121059135,-0.48084918,-0.044456173,-0.37872323,0.11842289,0.019968595,-0.4247591,-0.10566531,0.11604146,-0.40239194,-0.098468654,0.16977008,-0.261455,0.031774655,-0.28213492,0.05528536,0.9710909,-0.19515565,0.3115118,-0.3790244,-0.5105522,-0.8824994,-0.11772953,0.45233482,0.008860902,0.12042214,-0.8451001,-0.013149317,-0.20944138,-0.10632014,-0.025216661,-0.29609373,0.37122986,0.10640207,0.22084396,-0.3152853,-0.70551693,0.22983447,0.063714996,-0.21360445,-0.45779502,0.44635424,0.0009944042,0.9286452,-0.048393957,-0.0068104537,0.26962045,-0.48575154,0.0915556,-0.20636736,-0.16282424,-0.5044738,-0.08977772 -325,0.4723291,-0.2547022,-0.47536516,0.08065033,-0.28366867,0.060169544,-0.047948044,0.47721753,0.18480532,-0.56847125,-0.17736055,-0.20936012,-0.124511845,0.30531654,-0.08101569,-0.24994698,-0.0017548918,0.24749486,-0.42611688,0.6941175,-0.09531517,0.30543548,0.0025567054,0.29338866,0.23641892,0.37867916,-0.034761466,0.06319739,-0.1574215,-0.20094903,-0.1094171,0.18460563,-0.4541607,0.14993048,-0.18737489,-0.36180618,-0.112838596,-0.57257307,-0.5490733,-0.76919264,0.29778644,-0.9367761,0.38983127,0.025385005,-0.26454777,0.17300323,0.10985992,0.45668787,-0.09975708,-0.17342506,0.31732577,-0.14310595,-0.09044706,-0.3316051,-0.115977205,-0.37287915,-0.5800566,-0.06244169,-0.22185558,-0.41348585,-0.35875824,0.11669641,-0.37326902,0.024248285,-0.08029755,0.6673232,-0.41555417,0.06602389,0.28537455,-0.25259286,0.27902928,-0.70627606,-0.16360418,-0.151895,0.14405264,-0.048447687,-0.13748175,0.3589641,0.24748497,0.3436344,0.011446039,-0.15256971,-0.38388878,-0.10809504,0.24348503,0.4997485,-0.19721648,-0.39758456,0.044930972,0.24386498,0.031865645,0.07801144,0.25262734,-0.38695815,-0.11510923,0.20673521,-0.07367916,0.3305151,0.4285139,-0.15409604,-0.111573555,0.38352472,0.60536736,-0.004040897,-0.25002417,-0.05580793,-0.02839518,-0.35004845,-0.17358647,-0.11276891,-0.13248862,0.55797595,-0.030172165,0.22467543,0.6078592,-0.14002466,-0.12752149,0.04458981,0.089126445,-0.09172937,-0.2164128,-0.20992078,0.29290664,-0.29173842,0.21832515,-0.080212004,0.62818515,0.11289085,-0.7288749,0.34459266,-0.5754536,0.14103056,-0.008557232,0.2893296,0.55001014,0.48427543,0.4246254,0.698987,-0.43553144,0.15687281,-0.024313482,-0.3641063,-0.053702462,-0.27028802,-0.04690563,-0.44746578,0.040981594,0.004413291,-0.2950453,0.031073371,0.29405078,-0.5331144,-0.12714453,0.2394248,0.92105764,-0.24204789,-0.13151196,0.688864,0.9500899,0.98520976,0.042296685,0.91795605,0.14634007,-0.28923222,0.29820248,-0.24292472,-0.5461482,0.21929325,0.37860903,0.1898462,0.18918103,0.14677301,0.034550138,0.37345684,-0.3579529,0.08576138,-0.14661719,0.07126935,0.2297524,-0.37275764,-0.46686858,-0.1647282,-0.21966502,0.10183807,-0.11769251,0.25149095,-0.14624144,0.29891044,-0.06626165,2.00765,-0.05593392,0.13726778,0.257898,0.43044916,0.12626001,-0.22505979,-0.017239511,0.4112068,0.17519997,0.2635349,-0.4499188,0.064902455,-0.3159707,-0.50337803,-0.06314275,-0.28872144,-0.09144299,0.12529267,-0.47374108,-0.27272272,-0.22351967,-0.28860754,0.42070305,-2.6488168,-0.1575322,-0.17637922,0.43785042,-0.30641568,-0.4157794,0.016727941,-0.47168127,0.3468963,0.3934019,0.48457706,-0.6094207,0.2722675,0.334177,-0.60238534,-0.11183326,-0.4535068,0.01247524,-0.014491503,0.37257868,0.025032649,-0.089880094,0.21329263,0.12339899,0.4280724,0.03030668,0.13610642,0.56668437,0.3009082,-0.09470068,0.5618919,-0.045358546,0.4075088,-0.15901737,-0.15872374,0.34916306,-0.26115316,0.1805975,0.12009041,0.008678023,0.48872757,-0.46424752,-0.8138573,-0.75339264,-0.12619792,1.1632113,-0.16569906,-0.48503545,0.28792608,-0.42610738,-0.2648534,-0.21493016,0.45824078,0.053152062,0.072783664,-0.7621746,0.016644584,-0.11892208,0.12595224,0.05971255,-0.31495592,-0.48237407,0.82097596,-0.08317668,0.67869633,0.47342423,0.1723332,-0.17246047,-0.20730034,-0.017336603,0.9649051,0.50724,0.12820937,-0.15624015,-0.18893029,-0.3508984,-0.18490547,0.2332879,0.50724214,0.5329515,-0.08169326,0.13082156,0.31427008,0.029152978,0.038135115,-0.25142112,-0.22560187,-0.04042423,-0.03714227,0.39955267,0.6576601,-0.22476953,0.4805308,-0.04132544,0.35562545,0.031992026,-0.46009535,0.25085086,1.0762687,-0.14071731,-0.35163194,0.5150299,0.47965086,-0.2815054,0.34416446,-0.3713183,-0.13971536,0.48575374,-0.30001396,-0.5902592,0.3272319,-0.30439875,0.24626127,-0.71149373,0.34976253,-0.17139533,-0.77263796,-0.45553175,-0.16309436,-2.6473231,0.347349,-0.22272977,-0.28465226,-0.0061336635,-0.10901297,0.04831947,-0.6868431,-0.4599929,0.20003453,0.09324678,0.7301458,-0.06787912,0.16239497,-0.20240273,-0.28958318,-0.2571211,0.15255055,0.021514535,0.38522798,-0.0184846,-0.41227433,-0.17830276,0.013186238,-0.54587454,0.053100966,-0.602906,-0.36366397,-0.24317604,-0.56564516,-0.27617925,0.6190078,-0.22671334,0.11596611,-0.21628635,-0.06289543,-0.13569112,0.15850472,0.19129324,0.21243855,0.054904137,-0.053314067,0.069926135,-0.21808037,0.26302767,0.09671827,0.3810641,0.27231917,-0.19390622,0.2683634,0.46770763,0.7624412,-0.21144573,0.8237482,0.62028956,-0.15255126,0.32130024,-0.16878286,-0.31862208,-0.64545447,-0.42893,0.055599865,-0.32170093,-0.4872257,0.02314278,-0.36067238,-0.75487536,0.46949074,0.01235948,0.19022922,0.12017471,0.14756186,0.6217087,-0.37871793,-0.20951435,-0.102090515,-0.15252063,-0.64545697,-0.15503362,-0.53236747,-0.5713539,0.19662322,1.0364145,-0.28126532,-0.05711643,0.09413871,-0.22848246,0.081028484,0.23890418,-0.013044282,0.19216587,0.4487478,-0.19456737,-0.6645317,0.50355285,-0.1562646,-0.14468005,-0.58992016,0.44681653,0.5529603,-0.57761234,0.643856,0.10740736,0.090144224,-0.14902979,-0.5130397,-0.20542067,-0.15782118,-0.22034965,0.28658256,0.22266307,-0.84260076,0.10267196,0.4096647,-0.34945768,-0.69960076,0.47375372,-0.13232033,-0.25084302,0.007856925,0.22345072,0.1300305,-0.10480613,-0.18318875,0.14105417,-0.4493943,0.19614683,0.3714429,-0.108215824,0.07079767,-0.18906577,-0.15661792,-0.8374518,0.2674181,-0.5091919,-0.28240508,0.21994047,0.21204878,-0.028301688,0.050213184,0.07721977,0.3428585,-0.09112056,0.12353791,-0.16903457,-0.3639946,0.60154337,0.36508074,0.4232797,-0.51963156,0.53244966,-0.090890564,-0.20805451,-0.11003992,0.021455895,0.46184912,0.12165095,0.2715193,0.07717597,-0.20627454,0.079578094,0.7133779,0.1770051,0.62251943,0.18287176,-0.10085179,0.16483277,0.13113968,0.14531787,-0.12171183,-0.8062576,0.29546958,-0.23539262,0.02594301,0.4332219,0.18893504,0.18624893,-0.17085336,-0.3760701,-0.05957048,0.19011049,0.038276833,-1.2177265,0.3223618,0.076693535,0.8240401,0.39937526,0.028104996,-0.056720335,0.7220665,-0.06734367,0.16034046,0.28860274,-0.19587716,-0.6276171,0.53033596,-0.7782936,0.3335186,0.11471501,-0.057996396,0.11085018,0.051558793,0.31617793,0.6489128,-0.25585762,-0.049281012,-0.19006465,-0.24629848,0.07235555,-0.44526994,0.13153954,-0.5406434,-0.47813115,0.5536276,0.53426576,0.43694106,-0.1080052,0.053820685,0.05777408,-0.14941858,0.37595078,0.06645964,0.2279798,-0.045630198,-0.6068767,-0.12673348,0.48327446,-0.3293485,0.11633546,-0.021729605,-0.18066049,0.3501123,-0.067229524,-0.13187109,0.037211124,-0.72283375,0.16340517,-0.34770653,-0.46071714,0.45651072,0.13641001,0.24737677,0.09200916,0.03996973,-0.21603385,0.48804948,0.029506203,0.91164756,-0.09847755,-0.15986212,-0.24871324,0.27148834,0.028856762,-0.08505816,0.21296176,-0.22817022,0.050114747,-0.64378524,0.42444924,0.13820383,-0.3156619,0.151938,-0.117042504,-0.032763716,0.49303952,-0.1795776,-0.1190823,-0.080238216,-0.1076585,-0.14992896,-0.34995022,-0.038070116,0.2877734,0.053725775,-0.030454079,0.0059713842,-0.05039813,0.0047370433,0.4351378,-0.06834209,0.42037186,0.31359345,0.065158464,-0.34364647,-0.13429756,0.25670737,0.37492257,0.13497041,-0.06619314,-0.2650066,-0.5610638,-0.49104166,-0.07631086,-0.036016107,0.60052884,0.25184587,-0.19332825,0.7139051,-0.089031704,1.2503164,-0.052073773,-0.3622173,0.05002427,0.47997296,0.039963443,-0.15856618,-0.24003477,0.7954448,0.63982546,0.06989578,0.034006793,-0.37441558,-0.12818907,0.1286343,-0.19457152,-0.12844217,0.098442644,-0.6012152,-0.35876614,0.05733943,0.2625961,0.25979263,-0.20162317,0.09416116,0.39330015,-0.1109089,0.1753843,-0.26708806,-0.40518162,0.1649198,0.11084537,-0.009425639,-0.050739054,-0.5984067,0.41437906,-0.50979805,0.11279203,-0.15418468,0.1761934,-0.14861499,-0.19189182,0.14827207,0.03025968,0.45099443,-0.37704355,-0.31867638,-0.18972392,0.57710665,0.07283139,-0.030508721,0.64737517,-0.31506544,-0.028999066,-0.08430251,0.4444814,0.9103895,-0.26639184,0.05906919,0.46316865,-0.3554159,-0.51522267,0.36821344,-0.0430351,0.23999344,0.08935911,-0.16346772,-0.48366994,0.24319798,0.1941247,-0.22936437,-0.020259237,-0.5453734,-0.25707486,0.21278551,-0.5297031,-0.060692072,-0.3120054,0.2396579,0.55946136,-0.2995281,-0.56190515,0.052339476,0.0036607902,-0.031778064,-0.39706796,-0.06114849,-0.25108367,0.24962345,-0.013281242,-0.4500974,-0.22269353,0.051959336,-0.33806762,-0.029304655,-0.047011264,-0.37293187,0.025635328,-0.41309607,-0.21866633,1.0705001,-0.08882246,0.15264206,-0.4328967,-0.43453887,-0.7392463,-0.5024846,0.32497385,-0.09649567,0.023800876,-0.65500057,-0.042258725,-0.14232926,-0.061175458,-0.29068738,-0.17181474,0.35976642,0.13742885,0.3493262,-0.26888976,-0.7799364,0.26559407,0.11450817,-0.0038086057,-0.5804827,0.4214175,0.04899978,0.7470295,0.09154533,0.17035526,0.40974694,-0.56711066,-0.005136426,-0.16684608,-0.19427976,-0.5265363,-0.05009888 -326,0.48699734,-0.15204857,-0.5283776,-0.33265272,-0.29386157,-0.111268036,-0.24971765,0.3006655,0.11385885,-0.31478143,-0.090320796,0.058271326,-0.12133822,0.29327643,-0.13976392,-0.96642107,0.0036252195,0.017615847,-0.6046888,0.24890834,-0.6728853,0.3129936,-0.14212888,0.49405468,-0.07608247,0.3180094,0.2289386,-0.09552881,0.12595193,0.11125238,0.050528847,0.008556539,-0.759496,0.06410973,0.032554712,-0.5507219,0.055848204,-0.28262183,-0.32429722,-0.62170786,0.46495584,-0.83249915,0.59146565,0.14630443,-0.18399215,-0.041310597,-0.051106628,0.31149092,-0.46259746,0.22098373,0.19994988,-0.31092313,0.15082783,-0.23403831,-0.08600376,-0.54088444,-0.5182199,-0.09134929,-0.64237124,-0.23775506,-0.25504726,0.12942328,-0.41703942,-0.029935122,-0.19540295,0.40662393,-0.57004744,-0.0799618,0.061828986,-0.18936838,0.15902166,-0.59724516,-0.26781556,-0.14851694,0.22780372,-0.11991697,-0.066565424,0.28339627,0.12193504,0.39362496,0.14412391,-0.1678021,-0.38428438,-0.06272634,0.08393094,0.46986726,-0.14243823,-0.36881372,-0.25516328,-0.18435739,0.064895146,0.18778786,-0.025684685,-0.41567022,0.1850368,0.19245332,-0.25126046,0.55487275,0.60657763,-0.32022306,-0.25531223,0.19187689,0.17823619,0.15465023,-0.1719993,0.24547252,0.10720513,-0.39707005,-0.2859515,0.12974894,0.051931456,0.68317735,-0.034577765,0.38674298,0.8463374,-0.40521514,0.045368865,-0.23872484,-0.11671738,0.08984787,-0.03672125,-0.3659231,0.3251275,-0.58695364,0.08948128,-0.31325015,0.8365791,0.11505771,-0.6748528,0.38231027,-0.65892583,0.04128855,-0.20504655,0.62927413,0.6478743,0.24357294,-0.027507717,0.61142516,-0.56179714,0.096782304,0.17135817,-0.4438179,0.1627047,0.0828751,0.09318192,-0.27294415,-0.23348957,0.10913383,0.08524013,-0.08806645,0.2668986,-0.28877097,0.07547039,-0.09088523,0.80604476,-0.40828,-0.009850327,0.744368,1.3021961,0.91044146,0.06190673,1.201598,0.38818902,-0.16648383,0.09146518,-0.1548811,-0.6786079,0.1517352,0.24643454,0.18267728,0.35338396,0.25720736,0.037039794,0.4159973,-0.3797548,0.03735604,-0.08766974,0.42027295,0.00011853196,-0.09202984,-0.46057317,-0.0700921,0.13204876,-0.023571383,-0.16187568,0.30697736,-0.117707305,0.31948617,-0.006681117,0.9241827,0.18834096,0.21551366,-0.18670999,0.57554907,0.18037914,0.10915694,0.052725866,0.1684925,0.41384533,0.08765131,-0.7582789,-0.013815999,-0.4139536,-0.3801957,-0.3131909,-0.3973628,0.07891648,-0.028927885,-0.51520246,-0.11381579,0.09793227,-0.096860886,0.29957566,-2.5022466,-0.2231858,-0.12472067,0.48861915,-0.14769563,-0.1453378,-0.000420695,-0.44359243,0.3836197,0.47488782,0.4138857,-0.6958514,0.5720434,0.5282025,-0.2770575,-0.05487512,-0.5783261,-0.053078927,-0.07824253,0.42391205,-0.15633434,-0.09559619,0.019608086,0.10669693,0.51385874,-0.039389577,-0.043841127,-0.056522083,0.52258533,0.069794886,0.47830403,0.20709716,0.5313632,-0.48883334,-0.15167962,0.17167863,-0.38769034,0.21776561,-0.040206973,0.19586869,0.34243062,-0.4304528,-0.95193094,-0.53928494,-0.40289316,1.1497512,-0.26230648,-0.28207418,0.3412116,0.080566876,-0.274755,-0.13298477,0.46290568,-0.2949,0.075380094,-0.6581617,0.1438073,-0.15787688,0.18521386,0.17274891,0.12144353,-0.40804625,0.52472425,-0.08342417,0.23325486,0.42957917,0.28653508,-0.03764349,-0.5492645,0.16274758,0.6538851,0.2785883,0.22473632,-0.20555815,0.05155163,0.0961574,-0.17205152,0.16938989,0.54107225,0.87015975,0.03859931,0.2146234,0.29976684,-0.21642537,0.14517497,-0.025927251,-0.35418874,-0.12977694,0.20621191,0.6108629,0.56309855,-0.30565688,0.42678025,-0.02482171,0.24015497,-0.25349128,-0.27339745,0.53525376,1.0339915,-0.022955991,-0.06649694,0.617258,0.48349622,-0.6728339,0.42466918,-0.6431727,-0.2294377,0.67933387,-0.1296929,-0.48039106,-0.121641286,-0.40920028,0.084923916,-0.9870943,0.51542383,-0.26554406,-0.6638277,-0.59848875,-0.43663236,-4.342987,0.16236562,-0.5326372,-0.09072249,-0.20201463,-0.2746231,0.46659964,-0.7492851,-0.41649768,0.1568198,-0.03999347,0.5425054,-0.041770637,0.11586895,-0.37526628,-0.012625131,-0.29163322,0.18888053,0.29947492,0.16657294,0.2274325,-0.46505213,0.12224662,-0.14453769,-0.5603836,0.12744902,-0.3349947,-0.46536866,-0.020494344,-0.62854695,-0.2983934,0.87374574,-0.19843978,-0.16040371,-0.31122902,0.013042232,-0.37450245,0.6718772,0.10460165,0.19520187,0.05192125,0.020361114,-0.19035791,-0.44369012,0.31682408,0.17940688,0.4022145,0.39273632,-0.24687771,-0.10838847,0.60670066,0.59211665,0.23612413,0.5784724,0.16950521,-0.070831604,0.46054032,-0.44955757,-0.350146,-0.6609595,-0.5985586,-0.2093134,-0.34156382,-0.6858681,-0.02790567,-0.4236941,-0.80368525,0.450638,-0.22114849,0.32820818,0.014234874,0.21371503,0.13314074,0.076480284,-0.08688713,-0.198421,-0.04911227,-0.39173767,-0.279535,-0.70401263,-0.71385914,0.053367976,0.94424224,-0.20358776,-0.28425,0.046472486,-0.3785083,0.1493584,0.09272983,0.17100956,0.26288244,0.1577428,-0.06981099,-0.7663677,0.46239948,-0.16398026,-0.14020227,-0.7216642,-0.20583306,0.83872527,-0.8809988,0.4788867,0.4763562,0.07504597,0.15555719,-0.39853352,-0.46858728,0.13546051,-0.11969223,0.46007708,0.074442424,-0.84454864,0.38540956,0.1222239,-0.13404597,-0.4830903,0.6051225,-0.01564935,-0.30097878,0.1605441,0.40778396,0.0427688,-0.20398337,-0.012418861,0.41852617,-0.45916417,0.28708532,0.13680036,-0.0024035086,0.72693944,0.045569323,-0.18844245,-0.57370895,-0.00035275656,-0.6244657,-0.1192632,0.029616768,0.073495954,0.1888439,0.2440493,0.106234126,0.44042665,-0.367435,0.14553337,0.044777013,-0.3837351,0.19423622,0.51638985,0.30375874,-0.50881296,0.6511271,0.12265032,0.12440313,0.14952493,0.21686195,0.485631,0.29777792,0.38724935,-0.037832424,-0.10196807,0.045277044,0.8262834,0.33989784,0.7055516,0.3118488,-0.06765068,0.4621971,0.280562,0.11259453,0.049015865,-0.1912097,0.038301047,0.21599227,0.22563706,0.4735718,0.07231162,0.2918224,-0.16364327,0.06123111,0.29016802,0.465458,-0.11563904,-0.92406064,0.30972832,0.2823146,0.5906171,0.3681091,0.14078541,-0.08796816,0.34986356,-0.14802566,0.0053829146,0.43953618,0.26907778,-0.5268545,0.678459,-0.31159925,0.5032848,-0.26258832,-0.07603144,-0.042822707,0.045787886,0.2838975,0.6518546,0.0630676,0.08393418,0.078406945,-0.20302452,-0.09569166,-0.5817742,0.23513876,-0.4220504,-0.0009882125,0.6401684,0.5127511,-0.079720706,-0.26452786,-0.15674515,0.13240875,-0.03573462,0.17818584,-0.19323932,-0.0018352811,0.066817366,-0.6800472,-0.44826975,0.5078829,-0.060249567,-0.0277188,-0.017433036,-0.23335628,0.3420273,-0.019415706,-0.03948448,0.10735244,-0.7202986,0.3005634,-0.296721,-0.4398569,0.42119452,-0.44789886,0.3574773,0.21479945,0.08286698,-0.41784617,0.11688113,-0.00988737,0.63823164,-0.006782104,-0.114397176,-0.6127844,-0.107497305,0.35802352,-0.28071064,-0.009183981,-0.47468817,0.09115205,-0.41754723,0.5342894,-0.14156534,-0.05377045,-0.28598768,-0.14440283,-0.03246473,0.5057092,-0.19171454,-0.05798119,0.30320942,-0.03481016,-0.19491576,-0.07789647,-0.4298179,0.2877157,0.04848856,0.069664314,-0.003072072,-0.27974054,-0.103863195,0.4682724,0.22919522,0.15611881,0.40312883,-0.050034884,-0.34490535,-0.33325908,-0.039723862,0.34802532,0.104735136,0.0058015017,-0.3145841,-0.5402326,-0.13061838,0.13898191,-0.17214209,0.05544009,0.033485234,-0.5076361,0.5788162,0.24501634,1.1395446,0.10087853,-0.38775015,0.20450737,0.52732986,0.07205567,-0.011303788,-0.4205513,1.142646,0.60333705,-0.31793082,-0.37399882,-0.40861753,-0.44510376,0.24768944,-0.3146711,-0.3908777,-0.17042428,-0.69481486,-0.084415585,0.14105919,0.26877987,-0.23486666,0.13195425,0.056056477,0.14625496,0.26351276,0.47207195,-0.7480819,-0.1823952,0.30339718,0.1867848,0.13621391,0.49228308,-0.33154345,0.39123014,-0.69584316,0.20302577,-0.56691444,0.09017467,0.010310072,-0.43186933,0.17190494,0.26881772,0.30474466,-0.1665646,-0.29690182,-0.29607078,0.57433826,0.042881206,0.42411718,0.7335869,-0.31525514,-0.048080076,-0.15642266,0.38222292,1.217146,0.062519304,-0.13007018,0.3465196,-0.3799736,-0.676449,0.16239502,-0.52258974,0.12597305,-0.35616443,-0.2584357,-0.5284029,0.25951645,-0.005227934,-0.34725177,0.21754393,-0.50997806,-0.37287217,0.34423044,-0.17325416,-0.44180834,-0.2398751,0.44871542,0.888669,-0.5291702,-0.14227237,-0.19746538,0.4664871,-0.13648714,-0.41556224,0.09446179,-0.33383435,0.42318618,0.14874892,-0.27608338,0.03634053,0.2858396,-0.26796797,0.35825318,0.51527476,-0.33659166,-0.023666918,-0.103683166,-0.2539055,0.9421549,0.102702506,0.24559838,-0.65721107,-0.44340497,-0.9772217,-0.50140375,0.30791637,0.35136303,-0.03396988,-0.58584255,0.0839312,0.15179019,0.043740574,0.10829906,-0.50591046,0.39138162,0.060759403,0.62755924,0.10174901,-0.83625835,-0.25042808,0.3268925,-0.42793977,-0.59399337,0.6244956,-0.43617496,0.763455,0.1418099,0.07332907,-0.14417495,-0.34480894,0.33660892,-0.5050946,-0.36820966,-0.56473964,-0.014416584 -327,0.54063404,-0.102253236,-0.6052493,-0.12693699,-0.3117202,-0.24589707,-0.4119399,0.16163029,0.41252595,-0.19989201,-0.20703192,-0.11057372,0.12781331,0.5540054,-0.003562561,-0.74444324,-0.13397342,0.31759462,-0.902627,0.51911324,-0.5119008,0.3927934,0.08648949,0.29092067,-0.015842557,0.3162491,0.2437503,-0.11013581,-0.08784159,0.1404783,-0.103730224,0.4726956,-0.90985054,0.028594498,-0.080936745,-0.24756067,-0.04701863,-0.36041668,-0.20073785,-0.8689289,0.07477329,-0.7828173,0.5155017,0.0342505,-0.26872987,-0.19155338,0.044635158,0.5631176,-0.26965553,0.034552198,0.31025702,-0.19910471,-0.24655461,-0.32685024,-0.018953482,-0.3998422,-0.6180678,0.016997125,-0.54646355,-0.32792705,-0.28023186,0.14211793,-0.22652674,-0.0038260669,-0.26099265,0.5093968,-0.49285513,0.079429425,0.4194774,-0.24100721,0.46245155,-0.47300562,0.15614478,-0.20232224,0.58100253,-0.0956533,-0.2638978,0.4134354,0.49719283,0.4536777,0.2101017,-0.35192892,-0.23539697,-0.09428294,0.294128,0.31217504,-0.17397204,-0.31249973,-0.02014431,-0.047616582,0.15599084,0.28520602,0.12962393,-0.49720597,-0.03457929,0.0015834527,-0.022669679,0.5371281,0.5520118,-0.26101774,-0.39229706,0.350941,0.8747371,0.4063831,-0.21179543,0.03214877,-0.05239197,-0.725546,-0.20232359,0.19248745,-0.22379863,0.40242085,-0.02990581,-0.023085805,0.91927904,-0.21098253,-0.27680907,-0.06797259,-0.20193043,0.03134414,-0.25908655,-0.18116103,0.34493488,-0.53137887,0.08267333,-0.105435885,0.4570147,0.23527965,-0.8551532,0.43293577,-0.65600604,0.21220405,-0.0660581,0.74742424,0.80806553,0.5342885,0.4505345,0.8048776,-0.37585607,0.23370944,0.068826415,-0.6248194,0.16936299,-0.36664742,0.16754845,-0.5542719,-0.015583209,-0.3152521,-0.07044519,0.18881099,0.22940421,-0.6609565,-0.022015104,0.16275199,0.68205446,-0.3060526,-0.23430708,0.621267,0.96582943,1.1449515,0.1015734,1.2033012,0.4494907,-0.29846573,0.32529154,-0.459762,-0.8319134,0.16323702,0.30865103,-0.44345978,0.46763405,-0.1577836,0.13503557,0.43516037,-0.2501026,-0.008389422,-0.039054755,0.3483893,-0.029192021,-0.31239864,-0.5917406,-0.13092558,-0.14286482,-0.037479375,-0.0021323988,0.30981627,-0.12650569,0.35291725,0.028153734,1.3836317,-0.1710807,-0.013567321,0.027631048,0.45218918,0.2544986,-0.27893025,-0.16820095,0.46718964,0.3800557,0.10062977,-0.51048446,0.42922583,-0.22633503,-0.43529367,-0.06351844,-0.38199314,0.21830857,0.10152478,-0.33619976,-0.10744556,0.07702553,-0.30516538,0.57272357,-2.5402377,-0.20214394,-0.061678503,0.32167158,-0.2437712,-0.23965092,-0.06922028,-0.5829686,0.1404957,0.18424316,0.5552923,-0.6256823,0.48169118,0.54027927,-0.68782365,-0.042798292,-0.83351076,-0.1946534,0.034863647,0.45387056,0.1437101,-0.04029465,0.12505995,0.2634662,0.59482425,-0.037096746,0.14899333,0.5615603,0.33170462,0.09951138,0.63046396,-0.01178595,0.60361344,-0.22141615,-0.259803,0.5333614,-0.08566101,0.15748286,-0.06871543,0.02892476,0.6157003,-0.42052856,-1.1583726,-0.6914422,-0.4591493,0.82923,-0.37628695,-0.6074724,0.3231903,-0.12609808,-0.12682487,0.1481173,0.5670039,-0.0440965,0.2590678,-0.8340216,0.089168124,-0.039008614,0.2781301,0.1884081,-0.070569545,-0.3692755,0.6387512,0.035325013,0.47287577,0.34700647,0.26264626,-0.18918502,-0.4800094,0.08795066,1.0044838,0.18226497,-0.05277747,-0.2531071,-0.41189298,-0.18441735,-0.10219066,-0.18343091,0.54992443,0.7203211,-0.24267602,0.15347593,0.22132467,0.03357633,0.11803112,-0.1775327,-0.28383246,0.09761397,0.1029735,0.42894882,0.97901905,-0.29296726,0.51594394,-0.2773793,0.34182733,0.097232565,-0.7508936,0.70875317,0.78055537,-0.09060268,-0.051372197,0.5621095,0.3496806,-0.4102076,0.69828266,-0.6205288,-0.22748895,0.652701,-0.14691925,-0.48256066,0.2290148,-0.2700197,0.21718587,-0.84147936,0.40713018,-0.36782306,-0.25879428,-0.2446215,0.028090332,-3.5963027,0.28998545,-0.1113816,0.10455572,-0.16993691,0.030252615,0.2258776,-0.6791484,-0.60061455,0.055490177,0.19342764,0.5526169,-0.28351867,0.031137366,-0.34383184,-0.3898795,-0.08512606,0.23840399,0.19809686,0.47112414,-0.12680352,-0.5123605,-0.0040665013,-0.10272867,-0.50617445,0.076882824,-0.716093,-0.5707463,-0.17849053,-0.7511736,-0.3081304,0.66454875,-0.5546131,0.031302325,-0.28322178,0.1331289,-0.08955385,0.34305567,0.065257326,0.30121073,0.1339659,0.0048478693,-0.093486294,-0.13942182,0.34799144,0.021929512,0.2580196,0.1495192,-0.0733399,0.1941628,0.57205254,0.90309554,-0.22917657,1.0844141,0.56839544,-0.0941275,0.18703942,-0.26136902,-0.096736535,-0.75126374,-0.4276281,-0.20760521,-0.5051606,-0.5201116,0.014540649,-0.35759178,-0.80156213,0.85052305,-0.25669804,0.5641832,0.07221448,0.13587928,0.37132475,-0.33570322,0.019121276,-0.378175,-0.28805718,-0.6891932,-0.2462728,-0.6153449,-0.7572174,0.18587855,0.9070884,-0.4207191,-0.0048356163,-0.06628337,-0.21592681,0.02882735,0.24906752,0.07389666,0.43876174,0.58191055,-0.010189078,-0.6651799,0.40280026,-0.028026488,-0.08227861,-0.55916554,0.20920536,0.6030828,-0.6733431,0.820814,0.1125397,0.019116253,0.027925277,-0.59929264,-0.3901383,0.14659522,-0.275231,0.5660521,0.081955865,-0.8061985,0.3837827,0.31597596,-0.70329046,-0.75660473,0.39622298,-0.10345098,-0.2527191,-0.07602284,0.45339128,-0.0061263614,-0.07423084,-0.41673204,0.18609068,-0.44216117,0.16767791,0.31155983,-0.106094934,0.16965686,-0.081669755,-0.25493068,-0.94538325,0.110234894,-0.41034287,-0.2378989,0.3968816,-0.16973867,-0.07956917,0.07921697,0.4453105,0.27752432,-0.19297075,0.041568033,-0.033168335,-0.28872973,0.27230856,0.46766886,0.439851,-0.5019837,0.4918907,0.09736109,-0.3897686,-0.117636,-0.09028002,0.43151283,-0.08295625,0.38204083,-0.093419,-0.23761858,0.17389974,0.62243754,0.152109,0.44012758,-0.06923161,-0.10622082,0.41608983,0.08887042,0.21586323,0.002896345,-0.48198482,0.17246325,-0.06910002,0.2268986,0.65475255,0.31058073,0.16401508,0.023765922,-0.28845713,0.013943212,0.29873443,-0.024296688,-1.2315214,0.5191698,0.38159662,0.8034574,0.5407075,0.21684754,-0.20614684,0.69256103,-0.3265757,0.17453742,0.4343173,-0.15528354,-0.5512938,0.7042344,-0.7390477,0.3899799,-0.08238256,-0.044725437,0.21633044,0.12976383,0.34390026,0.85469997,-0.39478293,0.036199573,-0.07876235,0.005993657,0.17772762,-0.3015944,-0.051408987,-0.40018293,-0.418916,0.9435624,0.4871967,0.39769062,-0.16613145,-0.038958013,0.12908377,-0.30228376,0.2880606,-0.22988507,0.065710194,0.32471988,-0.5001295,-0.010015539,0.57662904,-0.081465736,0.005548439,-0.13175528,-0.25450987,0.118134856,-0.32587528,-0.13417049,-0.16259651,-0.8267131,-0.15315475,-0.17335561,-0.31733528,0.5894146,-0.13788421,0.16219105,0.12799238,0.029437708,-0.32241794,0.5382739,-0.039992165,0.8488091,0.36081147,-0.15690374,-0.226789,0.3124378,0.3151556,-0.23207597,0.09938624,-0.3075227,0.016518947,-0.55251634,0.5544768,-0.076416,-0.55909073,0.09098514,-0.08639539,-0.0297952,0.6381701,-0.22191092,-0.37060675,0.005250492,-0.12542485,-0.26248643,-0.13499191,-0.22196345,0.18150909,0.205219,-0.15861921,-0.21796529,-0.082956664,-0.12997465,0.60847056,0.06350797,0.50096065,0.20774695,-0.01682525,-0.19159195,0.17487957,0.37253624,0.388144,0.12303482,-0.05360726,-0.3641267,-0.27376047,-0.4359981,0.090353794,-0.052282188,0.22555482,0.04693201,-0.16304244,0.8423926,0.077954285,1.5160463,-0.07189349,-0.2536002,0.21212935,0.4021751,-0.074735545,0.06105117,-0.55345255,0.8824658,0.5456859,-0.09931254,-0.036341507,-0.46590042,-0.19181983,0.07050871,-0.35114196,0.14770015,-0.08799406,-0.66956365,-0.36437678,0.17548601,0.25170282,0.13582847,-0.055392265,0.08944503,-0.011538401,0.06116697,0.25602326,-0.5964688,-0.24496278,0.16667119,0.4358291,-0.116987094,0.11765419,-0.3323245,0.46361944,-0.6639167,0.19366303,-0.5217193,0.12378387,-0.3210118,-0.42308384,0.17478968,-0.016135802,0.30267113,-0.27081206,-0.30448887,-0.14947622,0.5364639,0.060762204,0.14789139,0.8601058,-0.33343768,0.07988671,0.13007702,0.5550452,1.1094105,-0.6171438,-0.088464804,0.41957855,-0.31588563,-0.6074737,0.38174182,-0.35949108,-0.0350059,-0.27884167,-0.55864394,-0.51221126,-0.00518206,0.03962249,-0.08217569,0.023842815,-0.6560802,0.022846427,0.21615829,-0.41153622,-0.13650689,-0.14633505,0.52022403,0.8760378,-0.45048407,-0.577417,0.056030374,0.0556367,-0.24393494,-0.3848772,-0.09392845,-0.0009537978,0.37771538,0.19940902,-0.44217667,-0.0032394188,0.39741638,-0.5138225,0.10933856,0.33716062,-0.37473768,0.24320817,-0.23435807,-0.1727355,1.036192,-0.37345406,-0.048646025,-0.37098795,-0.61073494,-1.1294944,-0.33685756,0.34334582,0.15900238,0.0165617,-0.424344,0.094692364,-0.23729093,-0.13322373,0.16617295,-0.5666043,0.3028621,0.08243863,0.59218353,-0.39047846,-0.90021676,0.1409393,0.34948722,0.047917347,-0.79538214,0.6025876,-0.06763016,0.89052165,-0.020928916,0.0448528,0.10607137,-0.466521,0.083445124,-0.3143096,-0.035720076,-0.7991854,-0.039501633 -328,0.55697024,-0.18593165,-0.5039282,-0.019295394,-0.22326647,0.075483195,-0.1534885,0.5369783,0.38177222,-0.4452929,-0.24820915,-0.23810796,0.1251162,0.23560087,-0.16382718,-0.5480205,0.016394794,0.2754784,-0.60459524,0.64160603,-0.45543677,0.3501196,0.06622028,0.2869432,0.3508834,0.21405719,-0.023004744,-0.13708849,-0.3945915,-0.109718084,-0.17938659,0.28068596,-0.40993366,0.12316624,-0.3108563,-0.4366441,-0.21588616,-0.6625903,-0.28378835,-0.8211619,0.40590924,-0.8522111,0.5035219,0.111288674,-0.20811357,0.22056031,-0.008001151,0.20315936,-0.2020311,-0.053275824,0.17298259,-0.20558597,-0.067892544,-0.26929003,-0.20714346,-0.18066093,-0.6497941,0.09509746,-0.518058,-0.14990303,-0.22515838,0.17328432,-0.34664303,-0.12937029,0.050427888,0.60003215,-0.40975854,0.07536824,0.10510373,-0.028178392,0.18409677,-0.47116822,-0.30304018,-0.10573571,0.53784007,-0.3373192,-0.3210096,0.29254124,0.28474933,0.5726418,-0.09053204,-0.14171569,-0.3640612,0.13013971,0.08218639,0.474404,-0.08407247,-0.75496656,-0.02176264,-0.05339691,0.26517776,0.21501909,0.19717054,-0.25870436,-0.13201593,0.037050012,-0.18276569,0.59079295,0.48852545,-0.31626612,-0.14127986,0.37192732,0.5126856,0.15504082,-0.05832383,-0.12235316,0.044239577,-0.58193356,-0.19703226,0.17518635,-0.21446697,0.5502781,-0.25447935,0.30459908,0.5433014,-0.19204763,-0.08743585,0.2930201,0.05075837,-0.17318273,-0.116882004,-0.22583617,0.22056226,-0.3924922,0.12675908,-0.18033688,0.85724926,0.229561,-0.75756234,0.42374086,-0.61452836,0.24951343,-0.024361173,0.53903073,0.7823688,0.4021015,0.46518523,0.6864443,-0.3519802,-0.022362012,-0.00046342186,-0.50454235,-0.08622565,-0.21225426,-0.12300769,-0.5626454,-0.043166187,0.019482728,-0.20439386,0.25783387,0.51267445,-0.6226255,-0.18618062,0.14805044,0.72943777,-0.23769364,-0.14402506,1.080097,0.95040697,1.0383278,0.023050351,1.1923119,0.26915386,-0.42075735,0.2656445,-0.40537125,-0.7425638,0.35108218,0.20518629,-0.570306,0.38427654,-0.016648471,0.11289766,0.22999111,-0.36592916,0.003340606,-0.15578605,0.051445466,-0.0035525945,-0.1748333,-0.43692842,-0.382368,-0.22795257,0.08547851,0.31190854,0.39458257,-0.23511504,0.4182594,-0.068598375,1.5203645,-0.09153166,-0.13837956,-0.011174068,0.48919177,0.2730004,-0.11631974,-0.2795411,0.38301256,0.30194372,0.033800818,-0.67172444,0.078263216,-0.16317317,-0.43273288,-0.17648889,-0.4079187,-0.065582134,-0.13252923,-0.32656607,-0.18158995,-0.3114312,-0.49764544,0.5038814,-2.5742154,-0.27873677,-0.04443882,0.3907192,-0.1817118,-0.36717197,-0.3107085,-0.6523361,0.3323206,0.17370269,0.4673131,-0.8304261,0.32178774,0.4597532,-0.6088423,-0.21120603,-0.68132687,-0.017884,-0.04281981,0.30558997,-0.015763674,0.00045482177,0.24616863,0.07532263,0.49082628,-0.039313767,0.14389388,0.26298058,0.5862881,0.03586034,0.42242068,-0.018302683,0.60938984,-0.272392,-0.18754135,0.35946774,-0.42153907,0.26535422,-0.11838611,0.094246574,0.5060559,-0.5948467,-0.83673424,-0.697936,0.03967275,1.0496505,-0.07720382,-0.4431572,0.20175853,-0.42991668,-0.2786643,-0.12794837,0.67957467,-0.16726674,-0.29260913,-0.8129564,0.05174287,0.0029002258,0.09787739,-0.056110773,0.13575025,-0.30557993,0.6752614,-0.0012273107,0.4289568,0.18265486,0.20026878,-0.51139337,-0.5321436,0.12301052,0.85214984,0.3963237,0.17448531,-0.2085201,-0.21602993,-0.45349917,-0.16287991,-0.05559328,0.6936042,0.7000642,-0.11194193,0.11073453,0.3760707,0.088404186,0.18644616,-0.25191027,-0.23673749,-0.22260617,-0.030015286,0.6108224,0.67634434,-0.18720742,0.5509079,0.14792418,0.14362623,-0.25137815,-0.4361856,0.6953473,1.1732641,-0.15974307,-0.28486362,0.4721373,0.4177135,-0.36143568,0.45716387,-0.52572817,-0.34853813,0.45189217,-0.23516639,-0.3930826,0.30510283,-0.31103125,0.2617057,-0.94587994,0.2797076,-0.12812746,-0.41355562,-0.45875898,0.0032238045,-2.6593075,0.20466717,-0.22059569,-0.11831002,-0.1829224,-0.1365221,-0.07640997,-0.5298944,-0.6502852,0.13167419,0.07516021,0.8640303,-0.10212338,0.20866777,-0.16757227,-0.3652598,-0.34142599,0.067264244,0.029385881,0.6174087,0.035335,-0.4294524,-0.022032721,-0.15942886,-0.377681,-0.0061515016,-0.54301965,-0.47151157,-0.028856626,-0.59145844,-0.43026748,0.70400774,-0.33440295,0.110645376,-0.2250295,-0.08147781,-0.0013902975,0.2738531,0.029743213,0.086818375,0.08560658,-0.051778655,0.19538797,-0.18278639,0.3145246,-0.09645862,0.27219397,0.42971134,-0.12495626,0.38131282,0.49391678,0.8308553,-0.03819104,1.0093307,0.49039987,-0.0058371425,0.22949086,-0.26925358,-0.27223414,-0.4919332,-0.28200144,-0.08983401,-0.5029181,-0.46217233,-0.12680814,-0.40015382,-0.8390304,0.43905824,0.024943879,0.25954786,0.0076145446,0.34371153,0.70411783,-0.14574768,-0.0018439889,-0.044968914,-0.19327787,-0.53566515,-0.122635536,-0.6606798,-0.4345291,0.26011673,0.7856217,-0.24163881,-0.03542804,0.1662003,-0.22752213,-0.033027865,0.2075794,-0.018797908,0.1853933,0.36903563,-0.105961196,-0.6574367,0.5157075,-0.027093997,-0.12239333,-0.54317236,0.282199,0.5088249,-0.6375475,0.434784,0.370177,-0.0355486,-0.028144224,-0.29626963,-0.119401455,-0.095810674,-0.09609567,0.3470603,0.2806452,-0.6897787,0.42959172,0.38174972,-0.1217852,-0.75899684,0.55520296,0.14075819,-0.30624968,-0.13982151,0.3911348,0.26539353,0.0010058923,-0.3482897,0.12959848,-0.43612978,0.19990925,0.2132415,-0.088574655,0.03750574,-0.2476115,-0.22059515,-0.8526777,0.11645285,-0.5179342,-0.2714388,0.21103512,0.21947327,0.23306839,0.14905035,0.024920782,0.30868334,-0.34347758,0.032705307,-0.1382307,-0.15375075,0.19172296,0.36276883,0.52327603,-0.541402,0.5744433,0.02658488,-0.108581565,0.001707886,0.04874634,0.459792,0.04835666,0.3795535,0.25406146,-0.4191114,0.3839533,0.7419481,0.27399513,0.30896392,0.14036857,-0.12631197,0.121784225,0.13998684,0.37121218,-0.13327596,-0.39654657,-0.0073994547,-0.19579048,0.08932972,0.49025235,0.14106277,0.21553409,-0.10819212,-0.34589168,-0.00175875,0.23115608,-0.045129895,-1.2976902,0.39418554,0.25641856,0.8807331,0.5127942,-0.11791106,0.09203543,0.5428781,-0.2939093,0.20515056,0.32551816,-0.102498956,-0.51007044,0.47515222,-0.6373621,0.5991271,-0.09410144,-0.030648692,-0.0037950852,-0.08582,0.33240047,0.7388097,-0.2793819,0.08991615,0.045845505,-0.2564564,0.22014412,-0.4123404,0.0631729,-0.67860323,-0.084522225,0.8085639,0.47783574,0.32632992,-0.046437614,0.08495159,0.10854054,-0.16880396,0.061136186,0.15951075,0.23860486,-0.027181502,-0.66102135,-0.036038797,0.58788025,0.0024369445,0.15322301,-0.034345273,-0.19147527,0.23986837,-0.35207734,-0.1461478,-0.20602766,-0.890319,-0.14895448,-0.35368863,-0.40955654,0.63352853,0.066524886,0.26654047,0.33595392,0.13399705,-0.38256183,0.45201907,0.21385086,0.6218699,-0.070945896,-0.18909724,-0.40693602,0.3064482,0.3210702,-0.18793336,-0.19923456,-0.08072082,0.03752402,-0.43408117,0.55699193,0.03952965,-0.22612047,-0.059410688,-0.012826762,0.14447357,0.657144,-0.24995513,-0.14958858,-0.066080384,-0.20317991,-0.30648574,-0.13262169,-0.100720085,0.2991689,0.4702346,-0.17082198,-0.1980567,-0.09867125,-0.17039652,0.31160358,-0.070679925,0.45057684,0.3749868,0.16910265,-0.3130037,-0.18259077,0.28161484,0.5800377,0.028862188,-0.20210464,-0.34953484,-0.29488897,-0.46844572,0.13079092,-0.09827656,0.24275301,0.15367222,-0.22495201,0.5836233,0.06614102,1.1510957,0.08154059,-0.40605316,0.15158257,0.4548368,0.036499757,-0.2798706,-0.3198673,1.0247247,0.43583098,-0.14770074,-0.121856384,-0.48774222,0.05250607,0.19140817,-0.18631239,-0.19042744,0.12512359,-0.5682424,-0.2538678,0.28129986,0.1615523,0.18018079,-0.20221664,0.08093035,0.19251837,0.017495189,0.18431018,-0.46078014,-0.19421983,0.29051742,0.3244682,0.03617965,0.10966318,-0.46352905,0.3906844,-0.46752936,0.070443705,-0.23144522,0.29797173,-0.2562425,-0.41820297,0.3189591,0.21810913,0.2801848,-0.3276282,-0.40429014,-0.5004433,0.52191573,0.11014361,0.11591799,0.4666169,-0.3197877,0.072249,0.058077242,0.52556694,1.0949749,-0.06809918,-0.06613337,0.34283066,-0.3597128,-0.65497875,0.45253468,-0.41847378,0.19166604,-0.014435644,-0.10950198,-0.7045147,0.19173047,0.20667635,0.24864015,-0.0037032792,-0.6756587,-0.27098113,0.3215386,-0.34974962,-0.18903764,-0.35776022,0.07646502,0.6125534,-0.2423598,-0.22732387,0.1526819,0.17967983,-0.20711221,-0.5804194,-0.018205348,-0.4104247,0.31099224,0.08090145,-0.3341592,-0.13814603,0.0892974,-0.4849586,0.16763623,0.08970368,-0.48104984,0.18128459,-0.32516286,-0.09280883,1.0595976,-0.29422307,0.37331077,-0.34952646,-0.5284388,-0.8959766,-0.34120616,0.41524622,0.026593575,0.0506118,-0.74969923,0.07360733,-0.045967076,-0.34900528,-0.02021257,-0.4915604,0.52618617,0.14618339,0.24061091,-0.05859562,-0.9043788,0.049218982,0.097829945,-0.39989927,-0.68584627,0.45964092,0.0657079,0.8556474,0.07199126,0.11282141,0.48143214,-0.45610908,-0.14652114,-0.17488733,0.013408669,-0.61532754,-0.032167505 -329,0.5411735,-0.15567102,-0.6589112,-0.29457563,-0.4206849,0.086046465,-0.20403558,0.19810863,0.3128853,-0.39570454,-0.19617496,-0.119758,-0.06808455,0.67960286,-0.1426956,-0.89746004,-0.074757785,0.3062692,-0.695828,0.45862067,-0.46363223,0.30750823,-0.019288616,0.3478111,-0.032857504,0.18270983,0.42232627,-0.14865914,-0.030752659,0.026813777,-0.18637796,0.23571903,-0.8981543,0.373915,-0.09539385,-0.59128934,0.05773268,-0.49519718,-0.07009415,-0.8159464,0.46296242,-1.04966,0.7481256,-0.23231025,-0.30515385,-0.22424412,0.109224536,0.42627394,-0.436669,0.03621536,0.22551216,-0.34283745,-0.3414006,0.05966477,-0.3178017,-0.7368008,-0.653189,-0.06438944,-0.67653364,-0.03629782,-0.24349612,0.34955117,-0.33966997,0.1443678,-0.2612778,0.23262939,-0.5813614,-0.18511558,0.34849703,-0.15822044,0.06102692,-0.47678253,-0.10471019,-0.19419235,0.36420375,-0.10825178,-0.34367216,0.10975129,0.43988237,0.6480726,0.306244,-0.3619657,-0.19820283,-0.041004643,-0.12609024,0.62965006,-0.10428598,-0.37938178,-0.36069894,-0.16436054,0.5707969,0.3029084,0.106217906,-0.33284912,0.1433445,-0.099980354,-0.08183456,0.3409347,0.43651304,-0.4681161,-0.33599746,0.5030752,0.48819628,-0.059070583,0.028124245,0.26924735,0.16055062,-0.5460422,-0.2971295,0.23466001,-0.20534617,0.6649808,-0.23852535,0.2306893,0.80427796,-0.37087795,-0.002052188,-0.13618064,-0.1194683,-0.38769677,-0.1636644,-0.16606863,0.3587257,-0.5713578,0.14670391,-0.23775409,0.85377383,0.19354105,-0.72859186,0.34625554,-0.4678373,0.0711574,-0.25813496,0.74957776,0.88681376,0.44359407,0.33501437,0.9273606,-0.4352972,0.21323982,0.0951937,-0.41425866,0.033925142,-0.19431911,0.07732706,-0.39671916,0.18585259,-0.10687104,-0.056596387,-0.099002175,0.5058035,-0.52179736,-0.112357356,-0.014663144,0.59939456,-0.43586895,-0.29511297,1.0540043,1.172361,1.1567096,0.08029512,1.8208531,0.49848214,-0.11251438,-0.104995534,-0.15143895,-0.71095175,0.15925354,0.44917735,-0.61824214,0.55598015,0.24406752,0.10889919,0.59707916,-0.43788147,-0.07580203,-0.049237076,0.37352931,-0.15183607,-0.045456782,-0.6855187,-0.1391322,0.22970785,0.055126455,0.11878974,0.43344575,-0.14306487,0.61719054,0.28886643,1.3069475,-0.117612354,0.17446715,-0.09456344,0.36666843,0.142614,-0.13578638,-0.042667314,0.074447066,0.4821675,-0.2426555,-0.67286325,-0.074548654,-0.45588982,-0.3534671,-0.40411374,-0.23408818,-0.052993163,-0.14834066,-0.19798446,-0.27863893,-0.11263835,-0.2940502,0.58088183,-2.0294142,-0.4577622,-0.23887682,0.24842396,-0.2782017,-0.25391567,-0.20407413,-0.61042607,0.1897996,0.31183386,0.40020418,-0.7658783,0.4786638,0.4920936,-0.55395687,-0.17561609,-0.8317505,0.12933642,-0.19677725,0.34861618,-0.119718224,-0.42175102,-0.25415632,0.03833192,0.621542,0.24818125,0.13104503,0.17012753,0.6192789,0.24675244,0.572892,0.109739296,0.8179861,-0.4879453,-0.18432043,0.48310173,-0.2606213,0.5789144,-0.13685268,0.108193725,0.50189155,-0.5630807,-1.0329428,-1.0126163,-0.56494826,0.99361444,-0.42603645,-0.46858874,0.21244216,0.08011162,-0.1657797,0.0822994,0.39596805,-0.051351354,0.06844374,-0.7377835,0.012791103,-0.033871684,0.23164457,0.046968445,-0.0012812669,-0.49220476,0.71498907,-0.28108996,0.3337138,0.547903,0.39086455,-0.08312492,-0.66562885,0.014070288,1.0248458,0.35119227,0.09299403,-0.29417765,-0.32569543,-0.21706319,-0.25824702,0.103424996,0.5493888,0.82665217,0.0022583387,0.06866371,0.45516586,-0.06575544,0.12394179,-0.055168286,-0.38113424,-0.260556,0.1773749,0.6167927,0.6897055,-0.294201,0.3791125,-0.24735178,0.19896245,-0.061201654,-0.5389567,0.75370955,1.1718948,-0.3325419,-0.22806558,0.94573265,0.31349608,-0.43508512,0.6226695,-0.8042951,-0.3542966,0.52077526,0.033551857,-0.55180573,-0.2579849,-0.35693303,0.13759352,-1.2623932,0.40432903,-0.22981639,-0.47750986,-0.5511668,-0.119413145,-3.7646546,0.2392651,-0.21069336,0.024120975,-0.03258056,-0.22315615,0.32197624,-0.8671776,-0.8078733,0.3686673,0.064642854,0.5112149,-0.15898436,0.39724302,-0.42030337,-0.2776846,-0.22773339,0.25240862,0.29198998,0.21196114,0.0062361793,-0.6017881,0.3993549,-0.06078988,-0.48653948,-0.0442456,-0.7088366,-0.48440057,-0.24306835,-0.7574739,-0.32712504,0.7719051,-0.4356931,-0.2099372,-0.39255905,0.20087542,-0.34613526,0.42997167,-0.042014338,0.21800429,0.14991613,-0.05547464,-0.28747937,-0.07588556,0.3600139,-0.00070483575,0.36118975,0.26687977,-0.39937326,0.1654088,0.70703596,0.6589124,-0.11152716,0.89253616,0.3924692,-0.10343209,0.2976896,-0.16079082,-0.28502342,-0.8911771,-0.53031963,-0.34601614,-0.59831375,-0.7400167,0.019851191,-0.32219413,-1.0700547,0.7966762,-0.05956328,0.4011409,-0.22367696,0.24633265,0.39890796,-0.2290028,0.15432729,-0.19726948,-0.1757303,-0.70621336,-0.5767985,-0.6532187,-0.6944495,0.19973215,1.4769943,-0.19668259,-0.015094784,0.22139241,-0.440882,-0.014325416,0.18847877,0.20900954,0.20939651,0.62847686,-0.13087574,-0.85233706,0.39554527,-0.09804019,0.15556282,-0.52486193,0.030209249,0.866715,-0.81067425,0.6368402,0.45217684,0.0025279631,0.2113277,-0.7204184,-0.47803304,-0.08982853,-0.15187573,0.58985895,0.29647663,-0.7736445,0.5561331,0.15148364,-0.27145264,-0.8767283,0.53915936,0.036318548,0.3183439,0.23942262,0.48777017,0.25474778,-0.16236597,-0.35475072,0.18312722,-0.5543459,0.37771845,0.20910081,-0.078216486,0.34651053,-0.20930332,-0.21146172,-0.90134126,-0.06517119,-0.5027075,-0.16280162,0.0136930505,-0.04944467,-0.025766963,0.16260771,0.22010836,0.4328871,-0.63782346,0.10570125,0.06227517,-0.34772283,0.23338231,0.5579836,0.3733536,-0.553309,0.6755375,0.049013797,-0.11311076,-0.23403572,-0.031446915,0.46039537,0.3796999,0.24963838,0.12151974,-0.18475685,0.12562652,0.89261967,0.14829168,0.37845144,0.21008569,-0.18523496,0.3911931,0.3017063,0.32585526,0.12294848,-0.46780244,-0.0867621,-0.06366749,0.07683944,0.50534564,0.2441659,0.56191677,-0.19576493,-0.14998488,0.1434613,0.15678972,-0.07113483,-1.181067,0.20651956,0.17686616,0.71829534,0.58401316,0.043018185,-0.06150316,0.46334392,-0.48599234,-0.017603248,0.5418508,0.13281612,-0.33410498,0.66159135,-0.5302159,0.33936653,-0.32396257,0.020238398,0.18908477,0.16729961,0.2777166,1.0683181,-0.0774118,0.006482574,-0.17772926,-0.028656244,0.1657173,-0.30907372,-0.05982606,-0.5593968,-0.18379173,0.94611454,0.5044891,0.29218394,-0.25209424,-0.15599209,0.059359964,-0.08454302,0.2230447,-0.118247084,-0.030821258,-0.032486346,-0.5354428,-0.14978558,0.734462,0.22691299,0.031078942,0.10561028,-0.55814624,0.3338404,-0.37670657,-0.00033000382,0.010735667,-0.83367765,-0.22364236,-0.2387247,-0.41913635,0.3993151,-0.3294721,0.22844185,0.12688924,0.020249784,-0.24622259,0.11545732,0.07626164,0.81764674,0.12826414,0.0017040778,-0.32314435,0.06508956,0.396319,-0.3967763,0.18091537,-0.33511364,0.070958056,-0.6422993,0.59121925,-0.043796804,-0.3551511,-0.009796739,-0.19417578,0.10649285,0.4796302,-0.18683648,-0.16850863,0.45344508,0.054337326,-0.40178367,-0.3242904,-0.51834846,0.19044115,0.12469309,0.14505859,-0.19302537,-0.14189193,-0.2512354,0.31579354,0.15184504,0.04192461,0.26712233,-0.045353174,-0.3013055,0.061703943,-0.061757505,0.5082573,-0.00080114603,-0.2938447,-0.30415583,-0.40244198,-0.0959888,0.1837793,-0.05752571,0.11713534,-0.08813263,-0.33722115,0.8063697,0.31123832,1.3865758,0.05368843,-0.58063906,0.053208087,0.75212216,0.016913814,-0.024316866,-0.39536026,1.2690614,0.60285765,-0.19933552,-0.27060997,-0.5739575,-0.3825033,0.45587617,-0.34205598,-0.23641492,-0.04655608,-0.72948354,-0.15397745,0.37697238,0.27439085,-0.019413663,0.03464466,0.3783448,0.14946304,0.19205791,0.67811435,-0.7204905,-0.30238658,0.2397613,0.4783573,0.13625546,0.30082953,-0.2251175,0.36815625,-0.8515168,0.119090654,-0.64226717,0.10040843,-0.22386785,-0.36711302,0.18282847,0.20332527,0.42339724,-0.18695927,-0.30916336,-0.18054882,0.8297091,0.1260024,0.25934276,0.9573177,-0.3272468,-0.071671195,-0.008807746,0.38050506,1.3702046,-0.24569394,0.027471043,0.2714506,-0.20452166,-0.68162197,0.523353,-0.64323366,0.060953878,-0.07120537,-0.5835633,-0.6194852,0.18528296,0.08686963,0.05993961,0.29728127,-0.6702926,-0.0744195,0.30242288,-0.31585115,-0.13551451,-0.11337225,0.3520801,1.0183495,-0.40446803,-0.5622671,0.070216365,0.46605358,-0.18180245,-0.80826765,-0.2019785,-0.16834806,0.5352757,0.1259823,-0.35849792,-0.0031305307,0.15641205,-0.43909785,0.14507464,0.48444223,-0.2597107,0.22909941,-0.29197228,0.042951766,1.0117072,0.068972886,0.28026536,-0.80156064,-0.49876958,-1.0554785,-0.39510706,0.09300684,0.30704284,0.027901674,-0.48534116,0.19046006,-0.12448685,0.12197863,0.28352782,-0.61834884,0.49156865,0.15149781,0.70339465,0.02192561,-1.1273528,-0.04796559,0.2046813,-0.021089552,-0.53138757,0.62553453,-0.2838474,0.9970797,0.10062218,0.06264632,-0.051546395,-0.6269689,0.3627846,-0.47578773,-0.050523818,-0.9306566,-0.07780352 -330,0.49948055,-0.0238417,-0.49510527,-0.18442877,-0.31917864,0.1850405,-0.11134346,0.15927099,0.28020236,-0.15777375,-0.11095209,-0.0391907,0.07872755,0.44460022,-0.12500328,-0.9007195,-0.029822933,0.17536281,-0.7139922,0.464587,-0.5683752,0.36366922,0.24774402,0.49759254,0.07231165,0.35674983,0.24830088,-0.17015941,-0.061126452,0.17870186,-0.09765283,0.36131305,-0.74848396,0.029133331,0.023680124,-0.18835928,-0.02040246,-0.42126352,-0.23254254,-0.71098906,0.43083853,-0.7484582,0.5342744,0.058249593,-0.351613,0.07888095,0.037444744,0.16790184,-0.45387542,0.14696214,0.10622434,-0.29376698,-0.0647867,-0.09306329,-0.18804213,-0.52902853,-0.6287097,0.09736527,-0.6107714,-0.17115021,-0.37255606,0.1991292,-0.41438586,-0.014714555,-0.22945628,0.3845149,-0.43683174,-0.057779912,0.30062833,-0.24244003,0.052639093,-0.28775138,-0.1663778,-0.16380431,0.37639996,0.034767523,-0.29018593,0.2956792,0.38209572,0.64990765,0.2260503,-0.39173144,-0.25945312,-0.06585528,0.14019057,0.44351634,-0.113217086,-0.3384349,-0.29011658,-0.05455079,0.05709728,0.3118976,0.0118915085,-0.478007,0.054063305,0.19872884,-0.1200514,0.2451035,0.46700063,-0.45125076,-0.28175002,0.23250842,0.3502038,0.15059145,-0.015063594,0.21058041,-0.048277665,-0.6614115,-0.29878917,0.23863997,-0.1490669,0.712226,-0.15597068,0.19762047,0.84309655,-0.16371064,-0.03492662,-0.30067283,-0.18008766,-0.06922017,-0.29928502,0.0008493344,0.20869182,-0.49399635,0.09591801,-0.18678853,0.7099453,0.10823557,-0.7664251,0.27772963,-0.533394,0.35774204,-0.16536684,0.8379677,0.90221137,0.16106935,0.34648317,0.90029526,-0.6390377,0.012664795,-0.023935974,-0.50553185,0.10233824,-0.084755614,0.11507029,-0.42968094,0.08346113,0.11081131,-0.03406407,0.06518437,0.4035723,-0.46378598,0.022487683,0.027264543,0.666164,-0.40578508,0.021805359,0.92356753,0.9933132,0.9543418,0.15169482,1.4923335,0.4872247,-0.1758332,0.13936989,-0.25968233,-0.69414276,0.123121835,0.31230354,0.13673757,0.44415396,0.10970008,-0.0043967743,0.4776169,-0.34847754,0.016992813,-0.19142802,0.2065021,-0.04940219,-0.05567307,-0.43607506,-0.27762908,0.15663837,0.13931808,-0.02737159,0.33467987,-0.07538594,0.49990892,0.0680792,1.260116,0.11876961,0.034227468,-0.0838302,0.31342372,0.26655182,-0.03638698,-0.102884196,0.41633293,0.52233356,-0.0349287,-0.6532041,-0.019162042,-0.31689024,-0.4122698,-0.19434991,-0.43958086,0.08563808,-0.022566387,-0.4489584,-0.106506035,0.08814346,-0.25953805,0.5495641,-2.400758,-0.19986853,-0.10455809,0.22733113,-0.08077462,-0.25614586,-0.21220651,-0.5011194,0.26153833,0.43168932,0.36390507,-0.784508,0.2631586,0.3362954,-0.36319834,-0.11365615,-0.83447784,0.014071214,-0.06415357,0.3684545,-0.08340551,-0.21879046,-0.17850457,0.25525707,0.69354314,0.13218357,-0.036505654,0.15282473,0.5644503,-0.014262215,0.5309786,0.14077899,0.6044177,-0.10089723,-0.32139978,0.29802898,-0.15800816,0.33412346,-0.0051639318,0.048732653,0.32964212,-0.5302217,-0.9058869,-0.6089084,-0.373056,1.1766135,-0.51110035,-0.27434132,0.39483124,-0.044902787,-0.14825515,0.039660707,0.46783572,-0.19813886,0.033228587,-0.7203466,0.14320324,0.00012606382,-0.0514599,-0.1207849,0.1800198,-0.31114212,0.71856415,-0.26722792,0.22563228,0.40953732,0.20055602,0.011688495,-0.53784955,0.20702444,0.84226197,0.32266867,0.15215017,-0.16329359,-0.23782167,-0.025994655,-0.19522706,0.17481318,0.5451069,0.8739694,-0.04711087,0.11246427,0.33367553,-0.030240918,0.09277722,-0.055925608,-0.3394694,-0.06263842,0.0034157832,0.56259525,0.6432299,-0.21689312,0.36291492,-0.16550432,0.20909771,0.006385541,-0.4335219,0.57981426,1.1137475,-0.26058537,-0.13556172,0.65681106,0.4044057,-0.4610621,0.52575874,-0.56466764,-0.18436667,0.6404925,-0.10120936,-0.40988588,0.15780805,-0.32868734,0.106412396,-1.039757,0.3105683,0.11886751,-0.39337966,-0.35336825,-0.20460172,-4.4022994,0.2537042,-0.3649247,0.02852158,-0.17322172,-0.28348783,0.38807243,-0.58360696,-0.5846529,0.035820387,0.023674557,0.36610183,-0.1556784,0.14197312,-0.2804493,-0.18128125,-0.22804458,0.12225429,0.1870821,0.3519874,0.046532042,-0.4015194,0.067915276,-0.33061358,-0.43053395,0.03371417,-0.58685195,-0.5537695,-0.14879933,-0.4568923,-0.4029309,0.72789997,-0.28358543,-0.022600535,-0.4252864,0.013513636,-0.23006605,0.4200299,0.20021947,0.21211487,0.038516022,0.07809402,-0.17161311,-0.2520761,0.307121,-0.0741923,0.22185637,0.34121493,-0.15246789,0.20594081,0.42848566,0.6596243,-0.13649859,0.6673702,0.4304891,0.03456463,0.25143453,-0.426883,-0.2975184,-0.879798,-0.5314066,-0.39686537,-0.59545213,-0.6166818,-0.2514641,-0.4887715,-0.7702816,0.49894992,-0.0314278,0.21828127,-0.1765068,0.31788686,0.44888574,-0.18865451,0.043429073,-0.14030154,-0.3064002,-0.5940932,-0.3206621,-0.6925347,-0.6425,0.10985065,0.93094367,-0.17142604,-0.13529973,0.055545554,-0.21775962,0.0417499,0.094280444,0.22689384,0.2504137,0.45372915,-0.10278829,-0.71811366,0.57834667,-0.1923768,-0.09636014,-0.64512926,-0.0095822355,0.4979556,-0.7591904,0.7451633,0.28015646,0.30540943,0.32486856,-0.54157615,-0.56489843,0.10190721,-0.14557621,0.8056257,0.25508583,-0.6607451,0.5421261,0.25630754,-0.14443801,-0.66912925,0.43610764,-0.112409614,-0.27848503,0.23099136,0.46814394,0.04108292,-0.15517883,0.05259789,0.18085892,-0.49956653,0.2857262,0.4022393,0.024001244,0.3673208,-0.032979656,-0.28542846,-0.6755244,-0.054128442,-0.6363786,-0.23602703,-0.04031964,0.11763477,0.051667873,-0.08440514,-0.04251929,0.5444491,-0.38186672,0.17194055,-0.03352971,-0.28909287,0.19043182,0.57212335,0.29548985,-0.573667,0.5907428,0.03253649,-0.014921355,-0.107337624,0.0964335,0.42496452,0.19771881,0.30029255,-0.19439252,-0.061204202,0.17589182,0.5674646,0.094043575,0.36458912,0.15683158,-0.1768278,0.49771458,0.30079016,0.14583562,-0.063355334,-0.17178209,-0.023402708,0.10338337,0.1745366,0.5206099,0.25884372,0.20967847,-0.055232428,-0.060663916,0.23172718,0.17802098,-0.033605687,-1.0864605,0.29960454,0.2660243,0.4849339,0.6235098,-0.04516737,-0.044273805,0.3623868,-0.52544475,-0.021458486,0.44924963,0.03574002,-0.45413944,0.5299875,-0.5109438,0.43845272,-0.34470648,-0.031099562,0.13200285,0.33388013,0.30152136,0.87982917,-0.09697426,0.08119342,-0.09041022,-0.14911304,0.13161747,-0.33272496,0.042539306,-0.56709707,-0.33886585,0.57205695,0.35905057,0.30256706,-0.39109403,-0.14114743,0.12034723,-0.23700182,0.10947596,-0.14199035,0.063496456,-0.002356708,-0.69959706,-0.37785783,0.55322814,-0.120035924,0.026757594,-0.044138215,-0.4388811,0.2138605,-0.23559052,-0.20836864,-0.05834871,-0.72840106,-0.011680929,-0.3471817,-0.54170734,0.31618658,-0.40456468,0.27922973,0.25283882,0.082328714,-0.5189261,0.13724722,-0.08601221,0.9779654,0.0022576333,-0.1770582,-0.40222663,0.14699961,0.44679448,-0.27731675,-0.10544474,-0.3407692,0.02831205,-0.37532672,0.5068644,-0.18669844,-0.3169625,-0.07765029,-0.13920084,-0.1317784,0.48493508,-0.3831358,-0.1413864,0.06494078,-0.04707526,-0.12654632,-0.098068856,-0.41419023,0.3684516,-0.055257082,-0.08064639,0.02016554,-0.09144419,-0.110547535,0.4915934,0.11116589,0.22143812,0.25368986,-0.09070549,-0.3666384,-0.022143865,0.15642187,0.27876908,0.10873009,-0.07511111,-0.33854622,-0.38233665,-0.2244194,0.08513213,-0.20689222,0.23135278,0.14174551,-0.43038997,0.870089,0.35786757,1.2708677,0.20988645,-0.2981922,0.11990602,0.6169694,0.05483679,0.1471961,-0.29568174,0.98789763,0.6330881,-0.239393,-0.28308553,-0.43597373,-0.14734316,0.14233813,-0.347185,-0.11591119,-0.17388275,-0.6424859,-0.26403847,0.06200839,0.18582249,0.14565569,0.18722536,-0.10867388,0.08852612,0.05366207,0.5646869,-0.44459376,-0.20520471,0.31579885,0.1285554,0.10943912,0.28137258,-0.26742622,0.5213567,-0.54156476,0.07666031,-0.4383404,0.20235397,0.02302045,-0.32738787,0.17899236,-0.058621358,0.34426916,-0.33896485,-0.32034808,-0.24635926,0.6839836,0.17974804,0.25117669,0.8369539,-0.36201584,-0.04969826,0.11495766,0.5626796,1.4898168,-0.09099009,0.04405079,0.2160589,-0.2185669,-0.5322311,0.12504107,-0.42056084,-0.024899105,-0.2655228,-0.4026511,-0.5816069,0.27716866,-0.014846222,-0.09433182,0.14169723,-0.4670745,-0.26129943,0.43681648,-0.13213229,-0.22500545,-0.35575935,0.4938193,0.807699,-0.504997,-0.42010134,0.06783938,0.1768651,-0.19652194,-0.6558982,0.030211182,-0.28231862,0.39739957,0.18111563,-0.4395526,0.02239856,0.33064523,-0.35171717,0.15901938,0.51674896,-0.24588583,0.20479326,-0.22986431,-0.27515164,1.2042824,0.028249653,0.18572523,-0.7001457,-0.5413606,-1.1166465,-0.35630414,0.3698455,0.16265042,0.07955503,-0.5224015,-0.10615444,0.037380684,0.035267457,0.10512307,-0.47890696,0.44744027,0.054122407,0.45884064,-0.013144132,-0.7326835,-0.1496606,0.14609972,-0.15853293,-0.57196057,0.5951753,-0.111474425,0.58230966,0.15670384,0.079771645,0.09730562,-0.65971595,0.11279208,-0.355213,-0.18207069,-0.72834224,0.052255176 -331,0.5667153,-0.28393722,-0.71194756,-0.09952371,-0.13164045,0.10087108,-0.25957185,0.49699676,0.2055197,-0.9204536,-0.21705554,-0.15657844,-0.1713095,0.3800381,-0.3114823,-0.81540847,0.14447951,0.0006848115,-0.4003101,0.5559673,-0.28464887,0.36744338,0.29096004,0.26866034,0.2907502,0.1159131,0.39797,0.06940554,-0.27648026,-0.21176672,-0.03345407,0.033680853,-0.63722587,0.29841158,-0.25809768,-0.45722002,-0.15528043,-0.47075906,-0.24159025,-0.9687011,0.23348477,-1.0383828,0.52960217,-0.110922255,-0.26621437,-0.104596764,0.47285527,0.06512614,0.18775453,-0.10475444,0.21647562,-0.17601337,-0.12118767,-0.085998446,-0.44883686,-0.7307694,-0.69674647,0.08127049,-0.6191403,-0.25676444,-0.09626249,0.3000791,-0.46769464,0.06121442,-0.08445243,0.82883316,-0.25793245,0.0015514722,0.30431765,-0.29970613,0.29872516,-0.891194,-0.31134808,-0.18565609,-0.06276668,-0.038837217,-0.21369931,0.3892427,0.41213924,0.40684932,0.21982256,-0.28441954,-0.39987832,0.0037692578,0.3161969,0.4644605,-0.2802541,-0.40887922,-0.3066557,0.057985343,0.5701914,0.19111785,0.3293947,-0.5035759,0.10483433,0.07106979,-0.35772786,0.67152,0.6348677,-0.26403612,-0.22556068,0.27126148,0.4895229,-0.03770992,-0.35803318,-0.18582378,-0.042157266,-0.610081,0.041738093,0.41900876,-0.0955764,0.6499831,-0.12964025,0.18349011,0.6499999,-0.31657094,0.10316126,0.35785022,0.0493171,-0.032978434,-0.38757116,-0.031192733,0.41238004,-0.46901086,-0.042827886,-0.44830668,0.8629252,0.14731811,-0.85212433,0.2845206,-0.45692003,0.15650648,-0.099717006,0.6209651,0.68276244,0.4918035,0.040470127,0.88083255,-0.4499453,0.004649142,0.026085697,-0.30328798,0.011046286,-0.40682027,0.1724643,-0.27928007,-0.018638287,-0.13447715,-0.034953706,0.101995125,0.71947384,-0.5722734,-0.34742314,-0.020185232,1.0262643,-0.17506169,-0.17659591,0.7461468,0.9877803,1.0552644,-0.011343406,1.2935524,0.13932122,-0.027111627,-0.027861215,0.034779612,-0.6779659,0.37153542,0.34894216,-0.089339346,0.28967774,-0.098716535,-0.18628278,0.31950238,-0.27272943,-0.0016537813,-0.24570833,0.21836713,0.28761047,-0.2580751,-0.25410622,-0.068010025,0.053982254,-0.025195552,0.094350606,0.26642454,-0.35009798,0.50435203,-0.12208267,1.4236795,-0.21112765,0.07293084,0.15161194,0.42988095,0.20032987,-0.18784155,0.3852029,0.12516902,0.096845776,0.20055991,-0.42600492,-0.012926212,-0.5186212,-0.50020957,-0.24330984,-0.4356195,-0.34106314,-0.010466935,-0.53570044,-0.2693444,-0.07106263,-0.36598098,0.33624414,-2.4536326,-0.26849726,-0.22710371,0.31984696,-0.4210318,-0.40428936,-0.21072997,-0.6639639,0.50241023,0.30223352,0.5453816,-0.60187376,0.2869816,0.44944045,-0.3437724,-0.23901524,-0.6578274,-0.007435913,-0.02221471,0.45926026,0.00037672886,-0.14461145,0.20532645,0.071328394,0.7013597,0.090593256,0.10710403,0.380253,0.4460967,-0.21848924,0.40795186,-0.117390156,0.58822465,-0.40644497,-0.1674575,0.5903366,-0.6212723,0.19866683,-0.05130651,0.1312221,0.56415963,-0.4367835,-0.7727058,-0.7572993,-0.4499173,1.0631416,-0.057098784,-0.711584,0.118597165,0.14845237,-0.06875154,-0.099045634,0.5755445,0.03162148,0.35950506,-0.7388925,0.01909361,-0.14265865,0.19997318,-0.17763759,0.01866337,-0.37600836,0.7960948,-0.018859886,0.48016408,0.35421732,0.3551817,-0.5528419,-0.5986794,-0.05784699,1.3537513,0.5065535,0.1250856,-0.32512635,-0.01204768,-0.45979878,-0.48097038,0.109047815,0.6380863,0.7672021,-0.014996994,0.07016051,0.48355007,0.089051075,0.13218991,-0.046373155,-0.56494695,-0.34871453,0.15401387,0.53877914,0.64927334,-0.12864342,0.58261997,-0.14872728,0.4163778,-0.20544146,-0.4997607,0.4882191,0.9960972,-0.3303385,-0.37679088,0.3933016,0.3347132,-0.47776797,0.5500491,-0.57228863,-0.5998056,0.6617838,-0.2343118,-0.6461766,0.12144339,-0.3935106,-0.01114863,-0.6547344,0.33152282,-0.5412282,-0.48285154,-0.49306008,-0.43158296,-2.5407164,0.17350046,-0.16938022,-0.08436238,-0.27001703,-0.07999264,0.22106475,-0.57632595,-0.60169804,-0.0074292514,0.11992817,0.69358957,-0.11075107,0.25728944,-0.34296483,-0.21093918,-0.30663916,0.3473385,0.19244443,0.2223521,-0.042948373,-0.26913497,-0.069040686,-0.16921271,-0.56562227,0.06065675,-0.65623975,-0.68208545,-0.3040562,-0.47537166,-0.2926227,0.90587246,-0.56596506,0.06542797,0.10753847,0.10645913,0.035908304,0.27390486,0.20166442,0.14225714,0.17921294,-0.25176796,0.17155838,-0.36171234,0.3340217,0.18761492,0.5020706,0.7799018,-0.20586842,0.43932068,0.6715739,0.77044666,0.12656079,0.9990047,0.14840935,-0.009129419,0.31270438,-0.16104206,-0.36156657,-0.7157173,-0.04072662,0.20064752,-0.3888249,-0.42892516,0.157877,-0.37593955,-0.94487923,0.6291695,0.0026244132,0.3477402,-0.27431142,0.4332447,0.46709985,-0.19203164,-0.21257505,-0.029003484,-0.011445049,-0.51734936,-0.5510486,-0.9009271,-0.7565048,-0.002757054,1.1777972,-0.04779522,-0.25470173,0.018674005,-0.05640156,0.0063234707,0.16215116,-0.12416361,-0.28702238,0.34198034,0.23146367,-0.78982556,0.42349714,-0.22113201,-0.010729249,-0.51263905,0.5286313,0.782438,-0.57851654,0.3153906,0.38956466,0.008321769,-0.37166336,-0.5614233,0.02128615,-0.053137816,-0.21864928,0.38029596,0.110375315,-0.6626245,0.40946832,0.32607615,-0.40768528,-0.69652313,0.4730093,0.049028937,0.11088245,-0.22320172,0.36765903,0.30173117,-0.14576098,-0.25745842,0.25341684,-0.62134796,0.23411186,0.29073983,0.026488258,0.68889385,-0.081600055,-0.50787604,-0.6409649,0.22701369,-0.6816865,-0.29089716,0.2932894,-0.046090808,0.14733617,0.48226288,0.10453624,0.38902527,-0.15703772,0.13572155,-0.21616279,-0.25572762,0.6937305,0.39694303,0.6681114,-0.5789709,0.61474127,0.0888911,-0.22976288,0.39642736,0.21828292,0.50227994,0.31195247,0.40523222,0.08840125,0.071178325,-0.023652967,0.71982604,0.29088107,0.56716603,0.22909506,-0.4034556,0.07268158,-0.0008749068,-0.012663247,-0.029983887,-0.7924521,-0.08612732,-0.16521923,0.062461656,0.618743,0.0017973322,0.40017456,-0.016485436,-0.1854435,0.050846025,0.048561215,-0.13227895,-1.2633626,0.20382276,0.048665173,1.0665438,0.2832238,-0.017305154,-0.092154056,0.6914637,-0.09302283,0.30021763,0.5245099,-0.28443554,-0.504851,0.62248325,-0.79679227,0.48477495,-0.091584004,0.1741244,-0.104469724,0.0893624,0.49266273,0.80407304,-0.18524343,0.17249012,-0.009744246,-0.3290793,0.1895631,-0.5521666,0.27157047,-0.25627697,-0.40984887,0.6369873,0.43401182,0.23465031,-0.14974417,-0.04591145,0.082632884,-0.13128425,0.25097817,-0.13703524,0.19158162,-0.16653362,-0.3059892,-0.17828403,0.57471114,-0.01967453,0.2592492,0.105834976,0.015923537,0.38226,0.01961842,0.03574684,-0.13004875,-0.51888365,0.050299786,-0.39711776,-0.5969746,0.30007416,-0.116208635,0.08696486,0.25704533,0.010439413,-0.38484085,0.4767535,0.29854375,0.5932158,-0.40264395,-0.09306957,-0.5157186,0.09987668,0.06489868,-0.44206473,0.17287531,-0.14412831,0.13534372,-0.6413304,0.50497013,-0.39144808,-0.31947944,0.12618078,-0.13086022,-0.22277091,0.60538685,-0.11295785,0.031787753,0.07878395,-0.12132812,-0.2654548,-0.067159705,-0.028354552,0.17088924,0.029343935,-0.03022209,-0.12150269,-0.29112327,-0.071560435,0.099820904,-0.015636444,0.24549772,0.48137167,0.15864438,-0.630986,-0.06402985,0.26870057,0.64090353,0.28857043,-0.024678847,-0.22481865,-0.5074037,-0.5392647,0.4188809,-0.08219327,0.20816237,0.3025842,-0.47580367,0.7848512,0.061122674,1.5282452,-0.016494503,-0.44731134,-0.017046224,0.57161003,0.13700983,-0.0024084975,-0.4826086,1.0919083,0.6230807,-0.07207678,0.037308253,-0.5786763,-0.052091483,0.28307363,-0.3720825,-0.20525287,-0.05408001,-0.59974575,-0.33657616,0.18840526,0.3769305,0.05084864,-0.37168363,-0.023834417,0.3500566,0.13246569,0.19214366,-0.53472555,-0.098501354,0.24310997,0.52594924,-0.275368,0.08383063,-0.4774814,0.31803352,-0.77038914,0.3345177,-0.1637596,0.1214455,-0.1178367,-0.31285673,0.3047258,0.15690091,0.46096557,-0.25126272,-0.39086196,-0.13750416,0.6110932,0.20242237,0.21127826,0.5958406,-0.2233147,-0.04901975,-0.07906915,0.71599543,1.5736479,-0.16410144,0.106217556,0.29324216,-0.534992,-0.85288024,0.29652235,-0.58420837,0.37352502,-0.17962982,-0.42144197,-0.49109837,0.24976818,0.062187232,-0.25488642,0.16218136,-0.6962125,-0.26969728,0.0663238,-0.560568,-0.30597135,-0.46176198,0.1805158,0.48586422,-0.22842433,-0.15324242,0.11461817,0.47414213,-0.0750663,-0.65093774,-0.049934205,-0.26841888,0.33284396,0.049031638,-0.34277746,-0.10628423,-0.029413031,-0.65593344,0.2807626,0.11070444,-0.4432567,0.034696367,-0.043968365,0.0025807666,0.75795734,0.052977044,0.095859475,-0.53437734,-0.5091591,-0.6505317,-0.46248496,0.1589466,0.21294919,-0.047686465,-0.63600224,-0.37131992,-0.39813188,-0.050953016,-0.0007572541,-0.55869824,0.27497256,0.046229895,0.50138354,-0.33655822,-0.7916944,0.23301688,0.3311192,0.012007759,-0.6754074,0.35416043,-0.14224076,0.9860763,0.22640838,-0.13116322,0.41878414,-0.70658183,0.0056885025,-0.40230238,-0.30167484,-0.5657663,0.16269793 -332,0.31788117,-0.25696698,-0.39834023,-0.04159101,-0.20051713,0.09269315,-0.13349858,0.3365082,0.024051325,-0.44688776,-0.23077671,-0.29311275,0.009740626,0.28559023,-0.23427913,-0.3173093,-0.06745498,0.14560743,-0.34101826,0.47608763,-0.42801365,0.19272831,0.16002224,0.31752452,0.24081092,0.179639,0.14980449,-0.13939385,-0.23421441,-0.30131277,-0.21401946,0.2762048,-0.3667274,-0.008193163,-0.11250501,-0.48374,0.11329346,-0.5261802,-0.29629883,-0.720549,0.31691688,-0.99474245,0.4307073,0.100516595,-0.17473745,0.50010943,0.28370485,0.38427812,-0.12614128,-0.116701946,0.29016188,-0.16512826,-0.055253983,-0.20273156,-0.18108305,-0.22122182,-0.5842064,-0.020083671,-0.2556407,-0.3256716,-0.3234208,0.08907706,-0.33245897,0.048026945,0.00745632,0.43904775,-0.48220018,0.089417204,0.17041923,-0.16174786,0.38368884,-0.5906314,-0.17053865,-0.12556422,0.25541368,-0.24374063,-0.086494036,0.27215442,0.3742784,0.36412773,-0.063196875,-0.12714155,-0.32318422,-0.061849944,0.07312248,0.5898567,-0.18863395,-0.33177838,0.0004896096,0.11209063,0.1246578,0.23679058,0.04129265,-0.17654404,-0.15287575,0.17569508,-0.30593368,0.25321296,0.36720848,-0.48900032,-0.15426838,0.35823035,0.5264335,0.12104661,-0.11204841,-0.2604911,0.03303701,-0.5267054,-0.13160944,0.070000485,-0.3284498,0.45942357,-0.096766256,0.3673771,0.59905404,-0.13894634,0.08704729,-0.11236121,0.16100608,-0.14481483,-0.2513086,-0.32150283,0.3001649,-0.30240098,0.18585584,-0.053705532,0.83053166,-0.0013653168,-0.60244226,0.32996628,-0.574677,0.12403692,-0.17515157,0.43133336,0.37736076,0.3047206,0.5191474,0.58427465,-0.4177241,-0.03790591,-0.10548778,-0.38571182,-0.0052072364,-0.084384404,-0.03875845,-0.5198439,0.009893128,-0.008614166,0.0058047175,0.103164725,0.3609681,-0.51444,0.11101009,0.15970469,0.91620266,-0.28634113,-0.011851008,0.57107985,0.91215724,0.89852303,0.007736883,0.8723634,0.14893831,-0.2681997,0.21806674,-0.23961933,-0.5971714,0.32557565,0.6275797,-0.27529377,0.14643614,0.17924602,0.00018144932,0.3989813,-0.36597708,-0.09071102,-0.27799523,-0.13433568,0.26139164,0.008886849,-0.504626,-0.2977769,-0.11109273,0.041928057,-0.04555559,0.21702108,-0.21577528,0.36687723,-0.02310439,1.9497671,-0.052179486,0.10581989,0.19350693,0.34069103,0.07962417,0.056803685,-0.079020016,0.36076212,0.30730125,0.2308516,-0.521084,0.181219,-0.17240132,-0.45505187,-0.064534165,-0.21468782,-0.02480243,0.17260706,-0.427815,-0.086175494,-0.15553907,-0.24854924,0.38205436,-2.7253387,-0.07473975,-0.143719,0.3699976,-0.2991538,-0.448196,0.031447895,-0.44779468,0.4125158,0.2878693,0.4980767,-0.57256216,0.35495326,0.29823086,-0.5537432,-0.1954674,-0.6099485,-0.2464927,-0.051848046,0.3042764,0.031938814,-0.053728875,0.0722211,0.1459885,0.42897964,-0.03684943,0.13923803,0.29638958,0.44194368,0.05686703,0.6846274,-0.049339917,0.45543367,-0.116935,-0.25654572,0.28215533,-0.1690631,0.23834698,-0.021282537,0.10970538,0.45832762,-0.4131946,-0.85965335,-0.7746706,-0.3381064,1.306241,-0.24059503,-0.41979638,0.18816634,-0.12555932,-0.32583028,-0.19376847,0.3915244,-0.097949795,-0.117155366,-0.82348263,0.13793328,-0.10488969,0.18213977,0.09989854,-0.1550647,-0.45468405,0.6184273,-0.15722404,0.45835853,0.4043851,0.1164346,-0.19470458,-0.29065523,-0.10210305,0.9065117,0.37173226,0.058271833,-0.15478122,-0.20595838,-0.22653691,-0.032713577,0.15185939,0.34581348,0.5715223,0.016694423,0.1130545,0.2859896,-0.014205575,-0.04110188,-0.23913649,-0.27188966,-0.008998854,-0.06556658,0.52926004,0.5097422,-0.10022616,0.37746125,-0.029684642,0.39935264,-0.040031824,-0.43083042,0.2335104,1.1652946,-0.118790805,-0.16883829,0.657843,0.6056364,-0.1413599,0.25612345,-0.5158906,-0.2230631,0.43334508,-0.26479533,-0.5581652,0.13221438,-0.21345627,0.009226248,-0.7408106,0.1828568,-0.22851649,-0.43164465,-0.51328677,-0.040483933,-3.5530553,0.2706695,-0.35382,-0.2167808,0.057908397,-0.2036608,0.28105924,-0.6454671,-0.4730923,0.11005423,0.116993226,0.6783435,-0.07066143,0.16726097,-0.23480418,-0.16687904,-0.2052873,-0.007454421,0.14960136,0.32776874,0.04636125,-0.563253,0.03919416,-0.08175661,-0.3973773,0.108424716,-0.6269925,-0.4690425,-0.09677801,-0.4582093,-0.41718537,0.57999027,-0.36182722,0.07371228,-0.1827521,0.00014245936,-0.19762552,0.30458832,0.22331047,0.20145966,-0.13091187,0.046265397,0.09344382,-0.2917764,0.43475574,0.1285937,0.16784754,0.22788732,-0.048889138,0.20160815,0.47423103,0.50326544,-0.025225034,0.88378197,0.5485254,-0.1466384,0.15761726,-0.19253565,-0.27634445,-0.562055,-0.3265241,0.05023747,-0.358329,-0.40103418,-0.09918172,-0.32906976,-0.75592995,0.717662,-0.072179995,0.10170666,-0.031623982,0.29422,0.5558799,-0.23706017,-0.057981644,0.15126503,-0.07131347,-0.6747359,-0.19475259,-0.6008776,-0.44294715,0.0467934,0.90156454,-0.26035348,0.11399799,-0.04283152,-0.22044884,-0.05976287,0.03547669,-0.068436034,0.3233895,0.54049647,-0.16486724,-0.7351027,0.46168444,-0.1394454,-0.094900966,-0.5574213,0.26035744,0.507733,-0.52997506,0.49220088,0.4097953,0.06748936,-0.086829074,-0.47732764,-0.2968971,-0.12288748,-0.35165784,0.36847326,0.14085402,-0.64608985,0.27658215,0.41246796,-0.2369567,-0.7273903,0.5078093,-0.04037726,-0.38539702,0.08884819,0.24473496,0.15500535,0.011032681,-0.13176987,0.22170874,-0.3930912,0.32113335,0.21744467,-0.07632446,0.19646437,-0.24702361,-0.036228828,-0.7768122,0.11009093,-0.32845518,-0.29568562,0.31603876,0.20803082,0.0042122304,0.27176633,0.019657936,0.3846933,-0.26944408,0.062229633,-0.039731357,-0.15099095,0.33723164,0.4747048,0.37721935,-0.49646726,0.57927287,-0.01211178,-0.21108313,-0.15213689,-0.05224686,0.38593534,0.07500221,0.30053473,-0.16310634,-0.30737668,0.34757867,0.5932748,0.24332394,0.43477467,0.011581315,-0.031462174,0.2461652,0.058794916,0.063898645,0.027997034,-0.6801723,0.08183678,-0.2382667,0.11432737,0.5506938,0.12516144,0.32655865,-0.1772003,-0.33614427,0.051954325,0.05501247,0.03090533,-0.8851016,0.34798485,0.061695453,0.6794652,0.4350845,0.028252881,0.010494419,0.7379795,-0.22497106,-0.017049853,0.2984541,0.020369468,-0.49847248,0.5642728,-0.7786029,0.32773477,0.015412958,-0.07476802,-0.13459738,-0.033617742,0.32097748,0.67822677,-0.23857978,-0.010410221,-0.054720726,-0.33671346,0.17866965,-0.41148812,0.037307773,-0.5905743,-0.33586946,0.46029526,0.57504815,0.4202424,-0.11125994,0.030407945,0.10335721,-0.1652187,0.22601749,0.12924694,0.17123184,-0.04755401,-0.8185934,-0.07028946,0.5092371,-0.037205186,0.16177188,-0.06742628,-0.24965717,0.26629847,-0.111021474,-0.11545913,-0.024512503,-0.5777868,0.010454425,-0.29428533,-0.4464232,0.29451367,-0.04453596,0.31052467,0.090570726,-0.014224461,-0.17430039,0.36282662,0.13778406,0.9185562,0.040507097,-0.13004881,-0.4326296,0.15414561,0.00013666866,-0.05843439,0.10575841,-0.3047386,0.096924424,-0.6595453,0.48782578,-0.030423032,-0.19168687,0.035645265,-0.14070375,0.008510709,0.56556356,-0.113189854,-0.064698674,-0.18283644,-0.10545532,-0.26637045,-0.2739293,-0.10421373,0.14591049,0.10868858,0.05490383,-0.1281946,-0.07118952,-0.3407154,0.59606797,-0.04411841,0.4715101,0.32310614,0.049370952,-0.23649596,-0.29084772,-0.055937774,0.48978,-0.114405155,-0.26435092,-0.36037332,-0.5524844,-0.17322834,0.11327778,-0.11996829,0.5104194,0.0710197,-0.12157942,0.81546813,-0.20178764,1.1140352,-0.03203037,-0.38616732,-0.059793882,0.4683993,-0.026650382,-0.054214638,-0.23693798,0.753724,0.5253212,-0.00508722,-0.10301386,-0.39734086,-0.098006144,0.11592363,-0.09334811,-0.02703971,0.00080071174,-0.5211835,-0.3604288,0.13224635,0.24523054,0.25785,-0.044322055,0.2677929,0.31793523,0.033152614,0.43555984,-0.31719705,-0.26860896,0.28648812,0.2621079,-0.08560053,0.16482742,-0.46984503,0.505014,-0.31353846,0.10409565,-0.3871575,0.116124146,-0.15099336,-0.14125288,0.19161272,-0.123405345,0.35966656,-0.26035973,-0.29205492,-0.105907455,0.5114596,0.20879123,0.09499734,0.5528155,-0.26971307,0.05688755,-0.12239669,0.5181209,1.0161339,-0.32863426,0.14022748,0.42226738,-0.24527976,-0.44258904,0.3676605,-0.1356803,-0.07093533,0.16066805,-0.11324266,-0.3930027,0.2992592,0.2437867,-0.07308663,-0.0040870863,-0.4167798,-0.19732639,0.30731472,-0.39087006,-0.21357903,-0.34336025,0.21669352,0.42643785,-0.2824082,-0.3451462,0.008815416,0.2893433,-0.11876488,-0.28638035,-0.09144386,-0.4177359,0.24962965,0.109806515,-0.35467046,-0.2152158,0.06382626,-0.3430688,0.0031005952,0.063600145,-0.3179107,0.04516656,-0.31511083,-0.15384686,1.0513728,-0.23088858,0.0050668395,-0.53808266,-0.3449134,-0.74232197,-0.3746681,0.55973023,-0.05539015,0.09443677,-0.43891606,0.0068511474,0.0059486204,-0.25874093,-0.22717212,-0.3772685,0.4004077,0.15112378,0.47386184,-0.17972147,-0.4781971,0.25029773,0.05895369,-0.102288194,-0.46680313,0.5335923,0.028285073,0.78824294,0.03493943,0.102551565,0.30865726,-0.30989417,-0.14807355,-0.23483443,-0.3264329,-0.74511975,-0.10653523 -333,0.5707794,-0.26846611,-0.35241222,-0.18668228,-0.29941195,-0.14802967,-0.2689481,0.442192,0.4854227,-0.2742309,-0.16595787,0.0251033,0.1947047,0.13076656,-0.17045532,-0.5946873,-0.22239937,0.05095409,-0.5832929,0.58390105,-0.67418617,0.22919695,0.03582695,0.3613622,0.080326684,0.40052018,0.13993098,0.04090224,-0.18350367,-0.16742928,-0.20203827,0.299294,-0.45991752,0.11144352,-0.14639969,-0.12270671,-0.012366359,-0.5277841,-0.3804913,-0.6991574,0.057137102,-0.8056225,0.35020176,0.18127239,-0.23360968,0.056095112,0.07151646,0.1387407,-0.44013548,0.02271534,0.027320763,-0.005228033,0.066499,-0.47628292,-0.20987111,-0.25251564,-0.53671724,0.014518219,-0.53237003,-0.26902208,-0.031429846,0.10023418,-0.3029993,-0.008881781,-0.2027065,0.69734293,-0.32115072,-0.07442533,0.29888085,-0.19839115,0.17313695,-0.49652767,-0.004613454,-0.1515837,0.23901992,0.057141006,-0.41771176,0.33491158,0.3440939,0.31450382,0.122525275,-0.23519003,-0.4167451,-0.20413126,0.17390668,0.31478676,-0.17503685,-0.55703974,-0.31120744,0.048716675,0.22724849,0.25601578,0.20576614,-0.13016981,0.20890681,-0.039844114,-0.41800138,0.7793346,0.50061905,-0.26350644,-0.28259745,0.29542962,0.5588703,0.16951245,-0.2828025,-0.14357564,0.022399416,-0.7182192,-0.20422234,0.26420823,-0.118771255,0.602421,-0.34890854,0.07365558,0.62846684,-0.1595767,-0.14206277,0.41774634,0.03874999,-0.06573612,-0.4834828,-0.2589109,0.25483486,-0.5938773,-0.062278196,-0.31179148,0.7241912,0.24019487,-0.7693345,0.5048019,-0.5352477,0.10283626,-0.10642239,0.56897426,0.64726835,0.5954464,0.43929386,0.68562603,-0.28295803,0.13466372,-0.008078198,-0.32539555,0.13195626,-0.2550948,0.19221918,-0.43513498,0.100335896,-0.03290425,-0.015429811,0.15570782,0.3325849,-0.43759397,-0.29478788,0.24914317,0.7562584,-0.18646343,-0.16247593,0.68106556,1.1142861,1.018291,0.041610375,1.0794016,0.22068906,-0.21816693,0.14180689,-0.23134239,-0.6784169,0.25886998,0.2690347,-0.39465848,0.34494272,-0.30889332,-0.101932265,0.17879386,-0.29987463,0.009088886,0.009957527,0.36744323,0.11045388,0.008027892,-0.46924886,-0.31168,-0.01529561,-0.07825646,0.17671633,0.3045718,-0.22129096,0.43677226,-0.14371157,1.0676702,-0.016823387,0.043831434,0.016059866,0.7241253,0.35771903,-0.115036584,0.03162129,0.6065789,0.24740398,0.18406059,-0.58245045,0.29692915,-0.2695789,-0.20097767,0.008728619,-0.4394745,-0.011827926,-0.07659118,-0.35396162,-0.06659407,-0.069926925,-0.23566456,0.41554686,-3.029811,-0.3080444,0.0017976165,0.24195826,-0.24368466,-0.21917176,-0.13434307,-0.5459732,0.27112377,0.22556108,0.6540287,-0.71113366,0.35250592,0.60006464,-0.5239215,-0.14572859,-0.72033834,-0.072815485,-0.04971528,0.43753323,0.086162746,0.03728187,-0.062323,0.15374354,0.6628875,0.14820075,0.23155606,0.30258504,0.44133702,-0.024052667,0.6632849,-0.07943326,0.557519,-0.4418317,-0.166851,0.24624227,-0.5224847,0.17868787,-0.06762449,0.06461791,0.6351678,-0.4119209,-0.920739,-0.47013697,-0.019742846,1.0851327,-0.39694476,-0.47805095,0.0837272,-0.37073886,-0.2908434,0.022588253,0.48698595,-0.038467746,0.03455772,-0.70906,0.12196853,0.014618824,0.20404501,0.021467298,0.005082602,-0.1862937,0.66026026,0.13579416,0.55381066,0.10715803,0.027348824,-0.49780592,-0.36186993,0.058557253,0.9061911,0.33035746,0.057304416,-0.17391296,-0.21926498,-0.16835435,0.0418257,-0.048116412,0.7083721,0.620632,-0.18010058,0.13675497,0.45595077,0.0014721999,0.149538,-0.07737806,-0.27045447,-0.11489455,0.038581345,0.4708209,0.97555,-0.22189917,0.4036608,-0.14002338,0.46630275,-0.072710425,-0.5584629,0.7659888,0.59964776,-0.20305832,-0.19182861,0.52603257,0.6052002,-0.5709422,0.57532126,-0.4910525,-0.20978783,0.5398988,-0.055180673,-0.4576334,0.30340037,-0.30391794,0.095822014,-0.7765262,0.3106002,-0.31970695,-0.30717716,-0.4223524,-0.05876343,-3.5351207,0.15199213,-0.19982304,-0.15447447,-0.37589,-0.0676885,0.121978484,-0.47909448,-0.6155125,0.14144228,0.20207565,0.5343219,-0.17844556,0.12179812,-0.23108603,-0.18146013,-0.15198854,0.20461376,0.11131936,0.2665788,-0.09460177,-0.36361918,-0.20335926,-0.05457716,-0.49283263,0.23808622,-0.6235717,-0.40081987,0.02463678,-0.6938161,-0.2782181,0.55947584,-0.22227003,-0.09427166,-0.20141612,0.17747454,-0.090068094,0.2248636,-0.0366488,0.22985362,0.03510209,-0.121592104,0.11798548,-0.2977393,0.3688971,-0.051642302,0.36312124,0.20376031,0.048100606,0.18589415,0.46276727,0.7643578,-0.046785593,1.0171193,0.14712097,-0.14060463,0.36579037,-0.1930439,-0.4050444,-0.5191128,-0.17652218,-0.10320098,-0.37198076,-0.30720374,0.09311495,-0.38521957,-0.76571685,0.5944759,0.09185467,0.18973754,-0.012291421,0.42156863,0.5534086,-0.22334337,0.17093806,0.0015210608,-0.1940551,-0.53795165,-0.06534829,-0.6748805,-0.2789133,0.25659055,0.6812108,-0.23875804,0.033620052,-0.017383054,-0.18381257,-0.13818638,0.21310394,0.010031412,0.36558148,0.4244727,0.023156619,-0.47351503,0.35640225,-0.10040333,-0.120310046,-0.36293843,0.12775724,0.87056726,-0.79130775,0.77791435,0.43690363,-0.0052640713,-0.28820968,-0.464327,-0.32073995,-0.048061747,-0.07750843,0.59621006,0.23627217,-0.97813636,0.37977222,0.35426724,-0.5426205,-0.6009722,0.39698818,-0.15931119,-0.2945986,-0.31556782,0.37026563,0.14505205,0.08309334,-0.16398783,0.1502787,-0.30611935,0.039324086,0.034863,-0.014949594,0.38823113,0.06290977,-0.29650608,-0.7016311,-0.15462382,-0.64832634,-0.32596332,0.46121702,-0.03245492,0.033351272,0.05999723,0.003822883,0.28709164,-0.13802491,0.061850328,0.123109855,-0.26914752,0.4308698,0.47315875,0.49610448,-0.42664874,0.5069049,0.25614882,0.0351229,0.08491548,0.00020331144,0.17816675,-0.08983564,0.5461343,0.1987855,-0.1555569,0.37820444,0.67592734,0.10771706,0.43994153,0.28195193,0.001474152,0.5157495,-0.1149933,0.21726853,-0.018813826,-0.5685188,-0.04358821,-0.23535259,0.22555475,0.30895117,0.15199341,0.19619167,0.07026168,-0.11702484,-0.14928417,0.3694372,-0.099490464,-1.3061123,0.33370414,0.27111772,0.7005523,0.454075,0.15345101,-0.20903926,0.839112,-0.169581,0.15283701,0.48788372,0.100452326,-0.48020282,0.68931836,-0.47835365,0.44978067,-0.20284466,0.12111765,-0.020429054,0.15522583,0.41517365,0.77839273,-0.30507597,0.048048258,0.066341706,-0.21560816,0.07898045,-0.48262715,0.17451298,-0.3245891,-0.34918308,0.65467364,0.24295749,0.36607206,-0.13680102,-0.11853554,0.114175625,-0.10625621,0.14248069,-0.038473524,-0.079179734,0.102607906,-0.73272985,-0.118257195,0.5477689,0.17183499,0.19122875,-0.22815971,-0.04463029,0.1216524,-0.21995415,-0.16191775,-0.053842854,-0.5303859,-0.001517574,-0.15545087,-0.65273494,0.46099785,-0.25078866,-0.0036623925,0.12997197,0.017936975,-0.25893787,0.32484955,0.0720484,0.6023647,-0.021928975,-0.15337911,-0.33065248,0.109554596,0.15542853,-0.19970441,0.017399818,-0.3403068,0.14353354,-0.48786512,0.5686708,-0.18028979,-0.53807473,-0.16923659,-0.023198595,0.07931062,0.54937726,-0.20232548,-0.30215064,-0.2397724,-0.2328276,-0.40323547,-0.19962727,-0.10584653,0.43523312,0.33983088,-0.07323936,-0.093867816,-0.3289691,-0.012476727,0.47783658,0.060697332,0.38589737,0.16335781,0.23095165,-0.21534331,-0.06787983,0.13002773,0.5667198,0.1311243,-0.1557895,-0.35584816,-0.1820517,-0.36622015,0.17903773,0.049895238,0.27618387,0.02551195,-0.31817716,0.77184314,-0.24836421,1.2311869,-0.058121342,-0.3318936,0.04010048,0.52510756,-0.1197724,0.060580138,-0.29570445,0.8960791,0.36685172,-0.2507439,-0.04601131,-0.78710586,0.03980141,-0.01736705,-0.3263317,-0.13673861,-0.062785335,-0.39175928,-0.14481188,0.2576441,0.21835762,0.368875,-0.053321052,0.21574755,0.10456584,0.07367201,0.3146787,-0.56645757,-0.13061796,0.28747985,0.30858377,0.027300471,-0.00461147,-0.34742287,0.19933647,-0.5777268,0.29789498,-0.3732265,0.129566,-0.34980586,-0.34890065,0.1318137,-0.015800526,0.30126542,-0.3935249,-0.55419344,-0.15626508,0.45045552,0.10062507,0.21504681,0.6139293,-0.21724202,-0.03623164,0.20387514,0.71213216,1.1013116,-0.20906389,-0.13849087,0.21459289,-0.39094532,-0.8352673,0.36459732,-0.3120432,0.2290643,-0.05621909,-0.24613833,-0.47764245,0.17520845,0.043684345,0.29683623,0.11304162,-0.66362095,-0.11511756,0.1810652,-0.24951506,-0.18720317,-0.2080038,0.19066608,0.64028937,-0.23848408,-0.32765272,-0.11340871,0.24960315,-0.23290052,-0.44040152,-0.20849377,-0.2402919,0.26293007,0.28045687,-0.21444036,0.021010915,0.055426568,-0.55361587,0.17182517,0.13898383,-0.3630909,0.17124896,-0.1568624,-0.21793605,0.76822895,-0.27155522,0.16713756,-0.41651857,-0.6761649,-0.7984132,-0.21924092,0.1083738,-0.13476236,-0.043482512,-0.57026964,-0.018574512,0.0022226796,-0.2328584,0.069687225,-0.49476933,0.48961556,-0.01852116,0.41634867,-0.26040536,-0.91928005,0.12193245,0.31088597,0.004919561,-0.7144778,0.51948184,-0.11189129,0.74559164,0.09578296,0.061034236,0.1413979,-0.42305598,-0.105710484,-0.35425702,-0.084934056,-0.5841547,0.12785096 -334,0.3975237,-0.07150329,-0.37568504,-0.17809719,-0.08516022,0.18670535,0.051087786,0.20031443,0.1602347,-0.45328128,-0.14289382,-0.21793784,-0.037558928,0.23534212,-0.14112745,-0.71354216,0.026568813,0.044633094,-0.41519582,0.44458625,-0.3540242,0.46782735,0.06462173,0.17934126,0.015812986,0.30725697,0.22985741,-0.49139982,-0.0867916,-0.08409158,-0.43269774,0.24890684,-0.42088667,0.14007989,0.001689138,-0.14502475,0.17884614,-0.38792905,-0.5108391,-0.59667957,0.30653828,-0.6253421,0.31575212,0.12065748,0.006586945,0.11939819,0.098318234,0.2823253,-0.32164112,0.1523381,0.19872113,-0.10353247,-0.15182178,-0.16128829,-0.21652195,-0.344328,-0.4430938,-0.04866946,-0.31780046,-0.26655287,-0.2768013,0.12442238,-0.31546253,-0.17524938,-0.12115169,0.397554,-0.34848264,-0.047455527,0.31936958,-0.2514603,0.11615434,-0.42184526,-0.02101477,-0.10097873,0.31147778,-0.19795217,-0.12603761,0.26571727,0.24838065,0.4529963,0.03171306,-0.173752,-0.16398522,-0.304407,0.20489079,0.5969963,-0.06266329,-0.5789079,-0.010473662,0.121365465,-0.10984366,0.13604896,-0.108568475,-0.3364816,-0.15190485,0.060025472,-0.38158095,0.40159303,0.45884272,-0.29066047,-0.36023575,0.33574417,0.39253846,0.07251481,-0.044481795,-0.009118382,-0.012731711,-0.5398729,-0.17935453,0.3437721,-0.23159285,0.40782607,-0.15345572,0.2753436,0.7689363,-0.3058462,0.14415625,-0.0012309928,-0.042844772,-0.07293643,-0.12394075,-0.14703225,0.014772203,-0.41752538,0.209519,-0.06689657,0.998794,0.27970687,-0.6629678,0.34377778,-0.54973084,0.23854719,-0.1765074,0.5454281,0.42230785,0.27212146,0.21901588,0.6916106,-0.43693224,0.2224384,-0.059716955,-0.5578845,-0.13032986,0.026020868,-0.07770292,-0.374108,0.04962994,0.018472092,-0.046005096,-0.01468896,0.08569247,-0.53820693,-0.0074515264,-0.023530383,1.0374392,-0.32095584,-0.069071226,0.36184436,0.71391416,0.82548785,-0.0011953284,1.181196,0.28668445,-0.42269713,0.17707856,-0.5365856,-0.71328276,0.2718832,0.36155623,-0.15673567,0.15534566,0.05584713,-0.012856289,0.10051725,-0.40495187,0.1081155,-0.26754177,0.17307694,0.16506037,-0.038028765,-0.3283302,-0.2791872,-0.24216934,-0.1240214,0.206535,0.11766553,-0.2296668,0.23739551,0.10012891,1.675573,0.044113025,0.12332026,0.019814488,0.4560518,0.20502551,0.13200365,-0.12315815,0.3600029,0.43600863,-0.008005978,-0.53648674,0.12334321,-0.17931496,-0.45656356,-0.13598938,-0.3775288,0.017013526,0.09279288,-0.32188943,-0.052154724,-0.020876152,-0.2973751,0.55241126,-2.6325538,-0.03298125,-0.037020598,0.3186801,-0.27484924,-0.171335,-0.09547026,-0.47462866,0.23697582,0.32033947,0.46751276,-0.6826034,0.3226555,0.47157648,-0.37714037,-0.18995911,-0.5777642,-0.080811776,0.008450834,0.2915432,0.109573886,0.11114666,-0.11106954,0.05834182,0.3114722,-0.0715834,-0.091209635,0.1401679,0.41239733,0.36692566,0.48186558,0.12735294,0.54955167,-0.12175811,0.012547811,0.28683832,-0.30986813,0.33211645,-0.028948935,0.0055847485,0.24679992,-0.24552004,-0.7234194,-0.581801,-0.41732642,1.1776069,-0.30613512,-0.07914909,0.28485096,-0.08577294,-0.056112964,-0.15215294,0.36113983,-0.1469159,-0.25427708,-0.66530186,0.042702984,-0.04518908,0.31850746,0.037900444,0.0094304085,-0.29162318,0.60617983,0.009349815,0.48429304,0.19799541,0.14212793,-0.06593062,-0.4508133,0.04379253,0.883637,0.22115466,0.1974313,-0.12338282,-0.26862943,-0.3539821,-0.084052995,-0.013880565,0.5369209,0.78444785,0.018356405,-0.025568822,0.34196264,0.029801916,0.03357291,-0.17013659,-0.2999111,0.05516522,-0.13714235,0.5925187,0.2123818,-0.2088829,0.4063973,-0.048267324,0.351662,-0.17007415,-0.2683362,0.488107,1.0759902,-0.13462241,-0.14695859,0.36396107,0.51757604,-0.2836405,0.22050005,-0.6481441,-0.19269614,0.6327212,-0.22621472,-0.39225397,0.26566425,-0.2986227,0.18570973,-0.94653475,0.34290722,-0.122075066,-0.3348341,-0.44506106,0.012144616,-3.6819835,0.08839456,-0.22138461,-0.20880452,-0.002501905,0.19660306,0.059323795,-0.37822267,-0.40632802,0.13534297,0.06290306,0.5220281,0.026392397,0.27768275,-0.21144775,0.071772605,-0.3040108,0.23291093,-0.06277493,0.22332077,0.07305042,-0.36986414,0.06400825,-0.16562973,-0.3198239,0.27479073,-0.58733463,-0.46542695,-0.06617065,-0.5351183,-0.37080434,0.6928216,-0.4483175,0.011752057,-0.07613249,0.031693738,-0.21203865,0.29114106,0.24646486,0.071482845,-0.11904378,-0.00861674,-0.02023882,-0.29388937,0.4244088,0.08534301,0.4145659,0.27261314,0.16127832,0.051870964,0.4297633,0.46153912,0.1025851,0.6420562,0.363669,-0.1130003,0.26647747,-0.39692992,-0.21094173,-0.40250745,-0.4124436,0.030091293,-0.26377937,-0.4500021,-0.21599586,-0.32514736,-0.5887404,0.22428589,0.11226447,-0.02817371,0.025658352,0.16494998,0.4816853,-0.050605647,0.11728409,0.14182258,-0.08586432,-0.510521,-0.31656665,-0.513169,-0.26363727,0.25757644,0.93337035,-0.26227704,-0.18700117,-0.19504131,-0.23303379,-0.14570346,0.08531074,0.05980779,0.23867242,0.41495356,-0.2257769,-0.6997548,0.5673041,-0.21730119,-0.19195525,-0.56743824,-0.037663747,0.57754904,-0.78211904,0.40512192,0.36857426,0.11240221,0.19547011,-0.36199817,-0.39802292,-0.025835522,-0.17601785,0.113893285,-0.056319434,-0.42164436,0.367181,0.2821097,-0.21947546,-0.5960319,0.4770513,0.15542358,-0.4319893,0.1339811,0.24163246,0.035450887,-0.1114821,-0.19380389,0.1262134,-0.34632942,0.31411782,0.31175593,0.059396382,0.14493258,-0.24506398,-0.16014461,-0.68109876,0.08379965,-0.3633526,-0.23300692,0.24579613,0.230742,0.22502325,0.14159614,-0.029419461,0.33657983,-0.36455253,0.07162856,0.0046151797,-0.13163462,0.38838515,0.34555727,0.27791226,-0.38040054,0.53392094,-0.042781353,-0.02853196,0.010998908,0.16028409,0.41138807,0.11103609,0.2511174,0.039964788,-0.3678562,0.38990974,0.86274517,0.21306726,0.3313237,0.042774476,-0.122960836,0.4457725,0.07238314,0.019723928,0.2336883,-0.46466258,-0.21557833,-0.10874675,0.07065126,0.4874536,0.16815631,0.3199773,-0.03455817,-0.3110834,-0.031814363,0.26677552,0.10447655,-0.9341244,0.48411044,0.23674384,0.7600806,0.46869743,-0.11868728,0.14360644,0.53311574,-0.18253899,0.24027802,0.238111,-0.17049149,-0.68472517,0.43988875,-0.3653225,0.5461585,-0.056396443,0.00076292356,-0.02321763,-0.13214023,0.15452847,0.9475878,-0.2057382,-0.0076713553,0.019487357,-0.28259087,0.073850244,-0.45654404,0.028419351,-0.607928,-0.3392231,0.4665928,0.4290952,0.16951455,-0.010921833,0.036029406,0.06412108,-0.080479816,0.06234839,0.025004847,0.010472457,0.06465672,-0.6902135,-0.32182708,0.65806574,-0.13221832,0.012610569,0.0031197309,-0.087511525,0.32875144,-0.25577337,0.09095213,-0.18797868,-0.45684782,-0.033199914,-0.17702547,-0.39001957,0.29194048,-0.18181437,0.39573383,0.21759316,-0.04875592,-0.2773839,0.32426924,0.29472092,0.6320308,-0.18118666,-0.26158106,-0.59670395,0.056149125,0.13717183,-0.22187114,-0.14860535,-0.25819814,-0.009778794,-0.6039381,0.45549238,-0.06204732,-0.25154364,-0.028153025,-0.34514764,-0.13061567,0.50481254,-0.13361771,-0.06252658,-0.057099443,-0.0658498,-0.12000385,0.13971682,-0.2526024,0.20733318,0.20994309,-0.13297032,-0.106156535,-0.2306317,-0.19571649,0.24833424,0.050034363,0.34624067,0.30857268,0.14381236,-0.21626432,-0.20568012,0.08226196,0.41445115,0.13550635,0.007043918,-0.13325767,-0.23255037,-0.27571762,0.11659694,-0.22315863,0.22671907,0.1566094,-0.4721673,0.57474667,-0.076718934,1.0716474,0.08760688,-0.23611106,0.047427654,0.5275183,0.11874812,0.15121908,-0.3984333,0.93830216,0.48844433,0.045825697,-0.25039682,-0.2660496,0.09529778,0.09677962,-0.072721735,-0.17310412,0.11421348,-0.62831944,-0.367939,0.21994543,0.13643204,0.2790785,0.114222385,-0.19008414,0.065787464,0.0320928,0.4459314,-0.50148517,-0.18282346,0.21049976,0.13233203,0.22041076,0.11423716,-0.46321467,0.4945941,-0.43583393,-0.021165077,-0.2750939,0.18414968,-0.20047115,-0.14378026,0.2406968,0.03890345,0.42964602,-0.35379842,-0.40152943,-0.30248314,0.4431558,0.09147652,0.24237706,0.56848526,-0.20010081,0.009637054,0.0842899,0.6198083,1.0146875,-0.25327867,0.08759887,0.48497722,-0.4698731,-0.44453427,0.16440462,-0.23291269,-0.026082862,0.032066356,-0.21446246,-0.43643734,0.30872306,0.12942472,0.044661563,0.09863238,-0.53612036,-0.36292598,0.38699716,-0.3233553,-0.38994235,-0.4749742,0.33184892,0.7218378,-0.41806185,-0.12827642,0.15437719,0.077755995,-0.2704678,-0.57872033,-0.089424625,-0.27901152,0.40827364,0.17481579,-0.13009925,-0.13909617,0.04453582,-0.35950556,0.28253892,0.2638916,-0.45101956,0.060712203,-0.14730431,-0.17563751,0.8473063,-0.15242554,-0.104579575,-0.6619312,-0.2351457,-0.72675985,-0.44446403,0.7130831,0.11540447,-0.0880353,-0.41370928,-0.20715943,0.21622147,-0.13536559,-0.13466296,-0.46119526,0.4397359,0.06499594,0.3719184,-0.04648087,-0.83476216,0.021690782,-0.015681235,-0.40367392,-0.65445644,0.46063772,-0.14388633,0.8018017,0.043186136,-0.082368836,0.40404028,-0.3491331,-0.15317497,-0.3125758,-0.24046065,-0.7518081,0.28566635 -335,0.43767393,-0.18851957,-0.4614236,-0.11479755,-0.17811541,0.22396812,-0.136764,0.49045113,0.10598154,-0.34354478,-0.023857385,-0.20797464,0.077185705,0.31596893,-0.21087265,-0.49698687,-0.101775125,0.08584682,-0.6652114,0.7151217,-0.31009772,0.14730111,-0.042062078,0.34529305,0.11974076,0.20026328,0.064712755,-0.15000239,-0.13165034,-0.11294006,-0.08434602,0.29874244,-0.4340723,0.08906601,-0.15590353,-0.23281425,-0.015304166,-0.34654891,-0.33905077,-0.61561936,0.31203926,-0.74875146,0.47775328,-0.07691827,-0.30803272,0.42827517,0.07405898,0.2492374,-0.31087768,-0.05961521,0.02913766,0.08618286,0.015980184,-0.16527233,-0.15347125,-0.4667281,-0.50942916,0.026866976,-0.5595637,-0.17603892,-0.14782304,0.051156428,-0.28444082,-0.0019176344,-0.21228752,0.51163846,-0.48830637,0.100436226,0.25578827,-0.038952604,0.26261422,-0.5357437,-0.15979925,-0.116564356,0.24448167,-0.09289351,-0.09108417,0.18991505,0.2216048,0.44249195,-0.14481905,-0.084323026,-0.19113657,-0.18347944,0.2504221,0.41575,-0.098867096,-0.63967294,-0.09125898,-0.037445474,0.20692028,-0.0032466173,0.20273593,-0.14649585,-0.1086726,-0.082065105,-0.34728643,0.25424093,0.49181226,-0.37310725,-0.34587008,0.34047633,0.4219395,0.31369746,-0.19711263,-0.016707739,0.015916266,-0.41216856,-0.05284906,0.14699939,-0.23842134,0.577782,-0.14821632,0.18582651,0.5292842,-0.12007084,0.21218869,0.05176042,-0.0021712035,-0.17695716,-0.17565516,-0.26189452,-0.011951212,-0.35570046,0.10299258,-0.23011331,0.6840496,0.21893956,-0.5775907,0.34342533,-0.5316214,0.15071093,-0.015899578,0.40015686,0.7182178,0.34588483,0.04246491,0.48838702,-0.28902414,0.020217432,-0.16446663,-0.25179482,0.12844223,-0.16609669,-0.035696246,-0.49447268,-0.028577086,0.019802006,0.01959885,-0.08825298,0.23747487,-0.46091262,-0.1099569,0.085934035,0.78810734,-0.2651513,-0.020541092,0.70087606,0.98444706,0.9132181,0.07155803,1.101975,0.17095463,-0.17538397,0.2389364,-0.362663,-0.7561112,0.247201,0.33635345,0.1089453,0.32397926,0.01105392,-0.08112332,0.37292272,-0.3216487,0.13340402,-0.258794,0.23814802,0.15821487,-0.04407807,-0.258814,-0.31417337,-0.05917424,-0.09694603,0.14891773,0.2252362,-0.16932511,0.37112358,0.098354004,1.4971967,-0.104072444,0.05892353,0.12404805,0.444465,0.20269164,-0.08835268,-0.047942113,0.42137736,0.4895108,-0.026843674,-0.5933636,0.20540166,-0.25936648,-0.42821988,-0.07466326,-0.42686167,-0.10142939,-0.010525282,-0.52862746,-0.0820838,-0.059885275,-0.16663907,0.30652115,-2.9708142,-0.09433214,-0.2854406,0.27960998,-0.26334053,-0.2622164,-0.090617225,-0.5091805,0.31520233,0.32378152,0.4132808,-0.55660266,0.42495987,0.30644146,-0.37329456,-0.0667595,-0.6264649,-0.24018615,0.011399199,0.49371007,0.010503308,0.14600421,0.13083942,0.22809441,0.48013335,-0.012623,0.14520556,0.19384791,0.3833395,0.06882261,0.44800642,-0.016974585,0.50297886,-0.2620047,-0.09695121,0.25907758,-0.25149542,0.3840495,-0.038449354,0.16765776,0.37947956,-0.3219801,-0.7547292,-0.6445419,-0.20922917,1.2969418,-0.31050345,-0.37840596,0.19535516,-0.30682436,-0.2216823,-0.22462222,0.4550292,-0.08982829,-0.11167819,-0.7530247,0.039070394,-0.12008535,0.197287,-0.045885388,0.0212603,-0.36518496,0.574232,0.017847626,0.5217409,0.2504177,0.21092539,-0.06477269,-0.36674652,0.06391179,0.78226197,0.40891215,0.012827728,-0.16770044,-0.21953084,-0.39727643,0.10412083,0.033038627,0.5884663,0.5690346,0.07098036,0.24880429,0.17428027,-0.0953274,0.124058574,-0.14317152,-0.22518918,-0.10952354,-0.019964011,0.49341652,0.41650918,-0.20862731,0.4174127,-0.091743484,0.19096793,-0.19698375,-0.41422606,0.52649206,0.7297999,-0.28218663,-0.21480674,0.5548185,0.60942996,-0.24177149,0.32110876,-0.47318885,-0.1674437,0.48668867,-0.22595184,-0.29804856,0.40514573,-0.30762896,0.1618875,-0.92747974,0.28683713,-0.44477972,-0.41516685,-0.5096906,-0.04571787,-3.339766,0.15057656,-0.12502326,-0.287169,-0.21733147,-0.20324464,0.32662758,-0.5579146,-0.54911095,0.13774584,0.12890233,0.54561424,-0.08936463,0.0637551,-0.26154083,-0.26861763,-0.25427613,0.19586252,0.13405508,0.31278178,-0.24483185,-0.41369832,-0.048461094,-0.1774402,-0.33714828,0.27335224,-0.5122165,-0.47614193,-0.0007220864,-0.30374914,-0.14538069,0.57440263,-0.21557859,-0.007462136,-0.23485371,-0.008233384,-0.1638679,0.2967821,0.065121934,0.13357742,-0.029722046,-0.0940384,0.0066883406,-0.37588614,0.3095551,0.11176091,0.30118206,0.4116006,-0.042474423,0.18640015,0.47863188,0.48131707,0.031938866,0.6954267,0.3645749,-0.10855376,0.39709124,-0.29474327,-0.22953221,-0.413182,-0.2703633,-0.012661612,-0.3636423,-0.55523074,-0.19760253,-0.24728814,-0.6694165,0.3107804,-0.12263169,0.17021638,-0.095075004,0.28814277,0.55986476,-0.05255695,0.11997876,-0.045962468,-0.098322205,-0.47763452,-0.3322124,-0.6602648,-0.27320197,0.0768818,0.9138331,-0.12994167,-0.037267964,-0.1025134,-0.33723754,0.004224962,0.08836268,0.07356045,0.17033844,0.45078513,-0.12967499,-0.6749799,0.51415634,-0.12586758,-0.19932671,-0.44465536,0.06051325,0.47320554,-0.64453644,0.52952176,0.29351395,-0.05088065,-0.19522576,-0.4184559,-0.154373,0.048854243,-0.20925952,0.255575,0.1633247,-0.6810966,0.39700764,0.2285874,-0.08773146,-0.6228577,0.59498537,0.058794938,-0.22783445,0.039292786,0.3267496,0.07946911,0.015194968,-0.18483098,0.19192365,-0.4384925,0.3736744,0.21688794,-0.10172315,0.24578327,-0.17914847,-0.15040909,-0.64289004,-0.02459429,-0.4308388,-0.24739258,0.3327375,0.12981062,0.24810006,0.08110742,0.01816112,0.3320359,-0.27293473,0.11939357,0.08355964,-0.24009344,0.3940568,0.38401285,0.411711,-0.38994667,0.5693809,0.051236175,-0.03411209,0.16254495,0.14544001,0.38006964,0.1235008,0.4393015,0.03338454,-0.21238613,0.42013407,0.8042796,0.22993419,0.50652117,-0.0035183548,-0.18105721,0.33271375,-0.004460134,0.043657206,-0.028410705,-0.42923635,-0.18940312,-0.03539044,0.18370251,0.46610153,0.018586587,0.24472335,-0.07681508,-0.20611477,-0.003960214,0.14810508,-0.01882376,-1.1825124,0.34260792,0.16481295,0.8032974,0.48459345,-0.052451238,0.044830546,0.55028915,-0.16441225,0.17170402,0.4149601,0.0967809,-0.59702164,0.5071709,-0.58787465,0.511981,-0.06859347,-0.006176903,0.052865468,-0.07432213,0.29549798,0.8469745,-0.15812562,0.0195558,0.050318267,-0.42949444,0.16476998,-0.3680742,0.0031992078,-0.5059017,-0.31919843,0.45273086,0.4921037,0.30483344,-0.22852877,0.020083698,0.085735545,-0.08679732,0.15103129,0.11730973,0.13774973,-0.1391961,-0.74868387,-0.25544366,0.5345745,-0.21891508,0.1221232,0.019857932,-0.39447185,0.3163005,-0.107249804,0.003870197,-0.030315975,-0.53811383,-0.0068903924,-0.36598638,-0.43196288,0.37801203,-0.33525506,0.26977265,0.20280065,0.009776656,-0.3435275,0.1673039,-0.009883833,0.6213795,-0.177414,-0.08533613,-0.45334777,0.03327797,0.2185996,-0.17216896,-0.12500986,-0.23832907,0.09326647,-0.38767955,0.36051586,-0.04896612,-0.27592218,-0.101103514,-0.14832632,0.0775135,0.571794,-0.121272646,-0.13641852,-0.17421414,-0.103901416,-0.27473864,-0.10234269,-0.052707814,0.25708863,0.23504576,-0.005211988,-0.11863457,-0.025016626,-0.017312193,0.33341777,0.05455284,0.47463787,0.47596818,0.08949152,-0.26949224,-0.12624358,0.22251481,0.40152007,0.07314224,-0.17510267,-0.35399723,-0.5292823,-0.21574189,0.25586182,-0.18605731,0.34190333,0.06690173,-0.27568558,0.7157529,-0.046829525,0.98389626,0.09154307,-0.34325412,0.08259214,0.47539818,0.056706283,-0.08405523,-0.37991163,0.80370754,0.4037735,-0.0027016322,-0.08722856,-0.29634002,-0.011265167,0.081172936,-0.19351715,-0.20504329,-0.0138919195,-0.5032106,-0.15861502,0.06980161,0.23320173,0.27405655,-0.090560704,-0.0071029663,0.18301845,0.0984736,0.24233869,-0.49193516,-0.1306751,0.25327092,0.103286035,-0.0065878313,0.14096521,-0.49546322,0.36840877,-0.51542026,-0.007389015,-0.17318456,0.106492564,0.022035567,-0.25721243,0.19700514,-0.03493595,0.29023287,-0.333488,-0.3825347,-0.2985789,0.51908314,0.17956904,0.115784965,0.52334565,-0.101800434,0.1488211,0.15712425,0.6203283,0.9127201,-0.19863461,-0.034640305,0.2774267,-0.38364637,-0.7337869,0.17815803,-0.18347263,0.3672198,0.022575863,-0.11655728,-0.5411223,0.36351326,0.17436682,0.028543686,-0.03172827,-0.51623636,-0.3859812,0.34689555,-0.34531954,-0.27142397,-0.40116537,-0.026939223,0.5376133,-0.3303314,-0.20051503,0.0123399375,0.25168422,-0.25430048,-0.53981,-0.10244792,-0.38691863,0.25591284,0.12728146,-0.21397337,-0.09703191,0.10882543,-0.40052193,0.268599,0.13162519,-0.3246606,0.037361376,-0.24320237,-0.05844899,0.88144875,-0.28348646,-0.024074484,-0.4883639,-0.52340794,-0.6562853,-0.46444148,0.48790833,0.10102599,0.019630158,-0.48052704,0.032025542,0.04867036,0.10452989,-0.07500101,-0.37350503,0.3838847,0.06437329,0.29203746,0.035985876,-0.6821616,0.23333998,-0.017535504,-0.10983697,-0.54050004,0.55781144,-0.06253804,0.73209393,0.047668997,0.16995855,0.22880942,-0.35716563,-0.2411095,-0.16348222,-0.12196248,-0.66970056,0.23609652 -336,0.40046635,-0.29611793,-0.43515113,-0.12651391,-0.32314196,0.13380514,-0.05365324,0.4527579,0.004324162,-0.434975,-0.14728332,-0.20732751,0.023515757,0.24249165,-0.20611148,-0.26053327,-0.08316143,0.08572042,-0.37950802,0.38608357,-0.38276443,0.30341142,0.11209889,0.3177785,0.35547516,0.17742623,0.13059834,-0.12695666,-0.25266382,-0.2454278,-0.19937086,0.23704801,-0.43077463,0.025463272,-0.109436736,-0.39171547,0.14189568,-0.438504,-0.2265611,-0.73988056,0.3232184,-0.85144067,0.46815193,-0.019613886,-0.24194597,0.35941553,0.19653387,0.39641887,-0.116108425,-0.046398617,0.3079939,-0.0640673,0.050493225,-0.08475462,-0.21666002,-0.2910325,-0.6109409,-0.024374409,-0.29109356,-0.41840586,-0.3160663,0.17908683,-0.30778855,-0.09082045,-0.07153291,0.46571273,-0.5016591,0.022794493,0.123865046,-0.105928764,0.37328923,-0.55406946,-0.16832952,-0.10153398,0.2965265,-0.36056724,-0.10759247,0.25992572,0.29487383,0.30983728,-0.022834636,-0.051948734,-0.25558838,-0.032164913,0.0080191055,0.52754724,-0.13259163,-0.4119514,-0.027375123,-0.093549624,0.17585959,0.24626347,0.28434154,-0.21063623,-0.13410957,0.17542934,-0.1896183,0.17541109,0.3212923,-0.3747405,-0.18947157,0.3355984,0.46793574,0.17853485,-0.13975932,-0.052205037,-0.042812023,-0.44293994,-0.14786841,0.110873066,-0.21237826,0.5258386,-0.06334504,0.3776001,0.6860823,-0.17899346,0.05216407,-0.11819206,0.0828717,-0.09912767,-0.15160078,-0.45731533,0.2534879,-0.38558426,0.24154195,-0.10224419,0.7920825,0.05953571,-0.6718951,0.29386336,-0.6054991,0.04924531,-0.12750886,0.4067844,0.30693004,0.43072128,0.37881824,0.5285873,-0.36087695,-0.0289162,-0.077060275,-0.35052106,-0.051789172,-0.22524172,-0.13613988,-0.4721847,0.051450748,0.1229136,-0.24866737,0.06210895,0.3966631,-0.5681379,0.08726272,0.15743087,0.77382964,-0.3058869,-0.042065606,0.6221654,0.8880843,0.984106,0.06358103,0.9868037,0.21629544,-0.31329444,0.21297416,-0.22813259,-0.63266456,0.31064257,0.5927258,-0.2335873,0.2531647,0.1263339,-0.027036497,0.4451097,-0.278047,0.15094763,-0.2256468,-0.10095625,0.061108336,-0.15862423,-0.50917584,-0.37020874,-0.04938638,0.020857789,-0.08468494,0.23395105,-0.13118796,0.32232824,0.119662285,1.9688969,-0.06791282,0.109770946,0.24208847,0.4620702,0.092042685,-0.09412604,-0.10712268,0.38575995,0.35241038,0.24908027,-0.5227787,0.19405645,-0.08748506,-0.6187036,-0.079479344,-0.37424806,-0.16627173,-0.059126277,-0.51597023,-0.12358746,-0.18700285,-0.19341408,0.36498502,-2.672983,-0.09654823,-0.18876831,0.25768632,-0.27391684,-0.38289985,0.12292259,-0.40264907,0.34267157,0.33738682,0.4524155,-0.62611926,0.42648083,0.41361535,-0.49276194,-0.14628926,-0.60758555,-0.27082887,-0.049090233,0.33587176,-0.009204674,-0.07323958,0.014522191,0.22777636,0.3926406,-0.12837237,0.17128824,0.22758357,0.41588116,0.105650045,0.6906603,0.059640344,0.42614317,-0.03676741,-0.1463301,0.32437512,-0.24732344,0.10007767,0.16977088,0.035860937,0.2716487,-0.41535047,-0.89976907,-0.67085034,-0.31315678,1.2172122,-0.25215504,-0.29650915,0.246042,-0.32880655,-0.3133481,-0.21293004,0.33109474,-0.0569134,0.0007410367,-0.75033593,0.07443307,-0.11919294,0.12652457,0.03929508,-0.028463623,-0.5456204,0.6338524,-0.20553395,0.6057883,0.44897753,0.13190381,-0.21836866,-0.32210854,-0.06262345,0.84253097,0.38899535,0.088655554,-0.16376056,-0.21337366,-0.37740198,-0.07355556,0.163445,0.3892822,0.7406337,0.081703804,0.24288875,0.18639213,-0.07243704,0.013527954,-0.24488287,-0.22772394,0.013420531,-0.09035157,0.5718972,0.3666733,-0.11283444,0.43044835,-0.108482696,0.36867192,-0.16678123,-0.29758254,0.23096602,1.1359181,-0.11492788,-0.1511264,0.6641665,0.586974,-0.23587841,0.2672426,-0.6138167,-0.10343035,0.5148614,-0.27478102,-0.47053543,0.24037223,-0.2775089,0.13133007,-0.9064545,0.34983578,-0.26529,-0.3959637,-0.42313924,-0.122855596,-3.2364798,0.24480152,-0.21334332,-0.2661199,0.07613538,-0.2956587,0.19815023,-0.7387234,-0.53164184,0.12279787,0.03134687,0.6990193,-0.05306563,0.10193573,-0.23326883,-0.3458372,-0.2380729,0.093435206,0.02201535,0.3444739,-0.04830734,-0.512618,-0.03310759,-0.12662287,-0.46383366,-0.0034663677,-0.6010581,-0.57659394,-0.111356534,-0.4683434,-0.36625087,0.6733342,-0.29304504,0.075999305,-0.09570615,-0.075617306,-0.111320905,0.25324738,0.12150543,0.1579757,0.0031075676,0.040757354,0.05723177,-0.25523302,0.27591306,0.09426959,0.2389774,0.14831024,-0.22820717,0.26434663,0.49415347,0.5401745,-0.059348073,0.7809649,0.5047581,-0.06530861,0.2408687,-0.35641733,-0.2964426,-0.58654505,-0.33099923,0.00095472333,-0.31462604,-0.5154527,-0.06308801,-0.28823566,-0.60654575,0.6701781,-0.0743789,0.20619182,-0.022619164,0.2982717,0.49096072,-0.1634233,-0.24588814,-0.008324551,-0.08313721,-0.5675686,-0.18265982,-0.6666833,-0.5396178,0.038017575,1.0127645,-0.17667113,0.047964804,0.08998332,-0.20500985,0.06396565,0.07264104,-0.026914762,0.2788677,0.4141811,-0.21401453,-0.7473496,0.49779668,-0.037894793,-0.23521352,-0.37174675,0.18049444,0.5007043,-0.5354358,0.4666178,0.3295532,0.03207026,-0.122354425,-0.45624438,-0.14060755,0.027799582,-0.29548275,0.49542394,0.101450965,-0.66111284,0.37758276,0.4360899,-0.18002787,-0.6708588,0.65314037,-0.05960136,-0.36346987,0.036371898,0.3349212,0.14681278,-0.06666807,-0.17473902,0.2954942,-0.44489327,0.28267816,0.30443722,-0.06595583,0.13925193,-0.14401153,0.013131555,-0.7153785,0.2235255,-0.3777805,-0.3189895,0.20411935,0.062075797,0.01629385,0.36202627,0.06324732,0.39535555,-0.3409753,-0.0037783831,-0.07381531,-0.26684564,0.259505,0.42726517,0.34155405,-0.44507122,0.44228134,0.0039177737,-0.110329196,-0.16964442,0.00082787673,0.4023549,0.014277844,0.30091932,-0.19344275,-0.36003208,0.35055026,0.61493003,0.2841521,0.5634326,0.06968751,-0.09435537,0.15272477,0.16594766,0.19963886,0.11451829,-0.58810127,0.09702665,-0.08816158,0.069933176,0.5499059,0.105223194,0.19501363,-0.23462455,-0.27322644,0.12234197,0.18018298,-0.13997628,-0.9145532,0.33709043,0.17487271,0.70248944,0.514383,0.010088761,0.024055688,0.65814596,-0.34686285,-0.019341234,0.26105282,0.0974294,-0.63739777,0.6087839,-0.7247604,0.3707703,-0.055069264,-0.15848431,-0.10536273,-0.16237707,0.3898373,0.72398174,-0.121039055,0.008479576,-0.034410015,-0.3348876,0.1806135,-0.40519917,-0.0017433614,-0.5754557,-0.20902623,0.577516,0.50781304,0.2858676,-0.066278234,0.12206851,0.1438765,-0.2097988,0.25714105,0.15995534,0.20440845,0.085095175,-0.6755665,-0.26933232,0.52218217,-0.07561581,0.15350835,-0.07075429,-0.44562614,0.2102302,-0.1498688,0.012245939,0.03675606,-0.6045276,0.08080209,-0.3349255,-0.35921696,0.34089687,0.02440521,0.24680713,0.2602569,0.031108519,-0.23836742,0.253094,0.23879442,0.7360785,0.009419394,-0.15836842,-0.32177913,0.16912594,0.025767708,-0.12196846,-0.11590227,-0.17636849,0.16376956,-0.6057547,0.45099264,0.13969475,-0.26678643,0.07772398,-0.13464214,-0.048168804,0.5065054,-0.12952775,-0.051273797,-0.15906106,-0.024897305,-0.098537736,-0.16392215,-0.08909653,0.1316008,0.108847804,0.0084969485,-0.07972803,-0.05497734,-0.13523105,0.49752554,-0.047812603,0.4991998,0.42639428,-0.15111093,-0.41592252,-0.1656126,0.021012418,0.33235168,-0.1399392,-0.044081345,-0.3407455,-0.46177658,-0.19883336,0.23820165,-0.1998613,0.4333428,0.123317614,-0.20964885,0.9036594,-0.1576542,1.0633433,-0.08468358,-0.46359673,0.06672351,0.5572077,-0.07976565,-0.0369951,-0.34348643,0.9532369,0.5395448,-0.042738013,-0.12740742,-0.19203377,-0.15801862,0.203679,-0.1839287,-0.11739084,-0.07711852,-0.5310725,-0.31388396,0.19110204,0.19232298,0.21623777,0.008965522,0.18280727,0.2947774,-0.0574711,0.3610802,-0.31353873,-0.30611393,0.2676279,0.24149637,-0.11330747,0.025415638,-0.53015435,0.512746,-0.39623553,0.16390096,-0.282983,0.1488395,-0.14632334,-0.22323315,0.19715044,-0.049659926,0.31119674,-0.22961505,-0.30424735,-0.1555176,0.42142683,0.09741333,0.16937691,0.5628999,-0.35702297,0.1871245,-0.033394568,0.42714554,1.0218104,-0.17022495,-0.07886308,0.42943496,-0.37882176,-0.48942345,0.31514585,-0.1521856,0.04550556,0.1147724,-0.13730194,-0.55057794,0.20257115,0.37830353,-0.10823519,-0.0053409575,-0.45840284,-0.29380926,0.47373676,-0.43487135,-0.23902982,-0.3763387,0.2355557,0.55898654,-0.372389,-0.26749405,-0.058899116,0.22272769,-0.14021069,-0.40012157,-0.0037192504,-0.35682487,0.41263103,0.037983082,-0.43698987,-0.1870336,0.012513001,-0.2031848,0.03352081,0.2687942,-0.36606938,0.034551393,-0.44359234,-0.051131885,1.0145546,-0.02435572,-0.14561735,-0.44425467,-0.34102058,-0.8573493,-0.49588734,0.5157765,0.04717041,0.024280049,-0.46450168,0.008818846,-0.094912514,-0.26334506,-0.06319867,-0.319905,0.46681538,0.18009014,0.4459605,-0.042114932,-0.5808563,0.18804222,0.033014994,-0.19483137,-0.5246936,0.58699906,-0.05202734,0.7130435,0.09121455,0.052302487,0.22839497,-0.37013787,-0.04211882,-0.19430175,-0.23812689,-0.6865257,-0.045485854 -337,0.54617673,-0.09075162,-0.5790001,-0.041971,-0.3084819,0.20040563,-0.059659485,0.52765566,-0.014686243,-0.4314536,-0.12093005,-0.04926346,0.00668101,0.26225096,-0.27041405,-0.42821002,0.068773866,0.23943883,-0.49352163,0.5942731,-0.3267723,0.4303679,0.014040172,0.18032883,0.074856564,0.36431083,0.11522086,-0.07294778,-0.2842869,-0.22193994,-0.15919329,0.43084133,-0.5058415,0.12711139,-0.18775244,-0.38434136,0.03787016,-0.43225774,-0.3479367,-0.63680017,0.067223296,-0.63020515,0.6370315,-0.04869181,-0.33421516,0.38253307,0.13725503,0.13332446,-0.104348466,0.02684913,0.03722384,-0.05352458,-0.10735296,-0.35828364,-0.16124037,-0.49657816,-0.4979023,0.09912151,-0.49107733,-0.13355424,-0.17392753,0.09222113,-0.21729057,-0.0018935129,-0.16610521,0.5075653,-0.4684767,0.16065317,0.028596528,-0.03287751,-0.010792773,-0.5628239,-0.115152374,-0.07867257,0.22215036,-0.18445939,-0.102773935,0.19958854,0.29064053,0.43774188,0.0097880075,-0.11243374,-0.2690094,-0.11477858,-0.01605061,0.48926258,-0.27331144,-0.49566132,-0.06380146,-0.06942113,0.19848207,-0.0064768344,0.12943704,-0.17727375,-0.12825541,-0.1684976,-0.2914902,0.29545072,0.4349925,-0.4874851,-0.20152695,0.38268328,0.3692718,0.17802595,-0.22051838,-0.019707877,-0.12185197,-0.4691687,-0.18592669,0.060279593,-0.16632524,0.5814414,-0.10216656,0.30922776,0.5921024,-0.06539685,0.04869257,0.13107611,0.109742306,0.10459126,-0.17052992,-0.17472053,0.12951683,-0.37543708,-0.03469865,-0.099868566,0.79549724,0.045089383,-0.770041,0.35019335,-0.4895205,-0.09547,-0.07251771,0.38319695,0.45225516,0.5472707,0.096879974,0.58122337,-0.28513643,0.050808348,-0.02133432,-0.35025883,-0.022241399,0.090906255,-0.22316751,-0.55895627,0.215005,0.13366795,-0.05219724,0.045983475,0.48226798,-0.52981377,-0.15352254,0.1839187,0.7912583,-0.35921115,-0.26319927,0.6848682,0.88328755,0.9354446,-0.040858872,1.0220995,0.19597992,-0.09079829,-0.011400282,-0.27971154,-0.42140192,0.20922443,0.27438828,-0.15772535,0.20877743,0.035581224,-0.11183542,0.28207538,-0.07395863,-0.09103511,-0.1723127,0.21410985,0.14180677,-0.16447712,-0.38884026,-0.46155167,-0.012227368,0.0709416,0.21351135,0.24978638,-0.18723822,0.33205637,0.19660047,1.656131,0.0067629963,0.103263974,0.111513674,0.41149515,0.31693617,0.02645339,-0.07326536,0.30724913,0.19654351,0.13717234,-0.42630786,0.094164886,-0.13976306,-0.70491266,-0.10333636,-0.3163254,-0.22913325,-0.18153143,-0.661065,-0.22426862,0.042854898,-0.22036609,0.49801403,-2.7001247,-0.06788705,-0.075606495,0.30935243,-0.21606383,-0.49843898,-0.19468974,-0.3100067,0.37747884,0.2976653,0.47353673,-0.6105989,0.59604764,0.3429035,-0.32219693,-0.25444585,-0.41768906,-0.11238602,0.019182695,0.36449787,-0.031365886,-0.017879948,0.15137817,0.10064475,0.4626054,-0.39935243,0.16381213,0.21838546,0.26585695,0.032143705,0.24584958,0.1101412,0.5607338,-0.14345992,-0.2588056,0.3489927,-0.27250835,0.2619351,-0.034100734,0.18156365,0.29932746,-0.4680675,-0.9495981,-0.558509,0.036463447,1.1256723,-0.14998217,-0.2732846,0.15258817,-0.10283857,-0.3884909,-0.030383341,0.23623195,-0.16045517,-0.0049269106,-0.6702073,0.12257974,-0.10607032,0.17871019,-0.0965797,0.04405916,-0.47042823,0.53444046,-0.06314641,0.65833974,0.29914588,0.17224449,-0.2206247,-0.3779953,-0.04850819,1.0362949,0.4693571,0.1277784,-0.20169538,-0.19088939,-0.31958544,0.040348265,0.09058785,0.53352916,0.70663846,0.1278168,0.06696987,0.054904938,0.0045837983,0.13896894,-0.17923385,-0.25504065,-0.04524288,0.06902448,0.5381586,0.4655785,-0.27027887,0.49479762,-0.17365691,0.39793068,-0.1312856,-0.491417,0.4571346,0.85929966,-0.29838914,-0.3244316,0.5231278,0.5730599,-0.26131836,0.2874472,-0.5866959,-0.4112196,0.3860857,-0.24603495,-0.24713482,0.36525294,-0.19185896,0.14782813,-0.92170537,0.3566167,-0.32596278,-0.4551863,-0.32827336,-0.14320157,-3.5996742,0.22095919,-0.11164273,-0.11939725,-0.15176629,-0.19667134,0.16730347,-0.55781865,-0.39117855,0.09581977,0.11210506,0.57634413,-0.0015874077,0.14076644,-0.14404921,-0.43271804,-0.11183867,0.29460168,0.017389886,0.39005265,-0.16479562,-0.45885074,-0.04688192,-0.19417636,-0.47668323,0.12065888,-0.669367,-0.46126226,-0.091195695,-0.5441342,-0.32043117,0.6008828,-0.38012466,0.058407776,-0.25627655,0.038466915,-0.10995005,0.20287019,-0.0015228912,0.05881109,-0.005072508,-0.07466085,0.17005962,-0.25801915,0.12494526,0.121935874,0.28197467,0.38298455,-0.025021926,0.20077282,0.50602,0.56836826,-0.023404844,0.7758681,0.38463572,-0.12704377,0.3831898,-0.20222774,-0.26537317,-0.6316732,-0.49934822,-0.048670348,-0.33889997,-0.26712582,-0.091620415,-0.3053419,-0.74090344,0.6167157,-0.019598573,-0.030167341,-0.084765546,0.44844276,0.4988338,-0.27071622,0.014804428,-0.08983956,-0.15974686,-0.45388392,-0.3106269,-0.6679993,-0.34103465,-0.06960145,1.157066,-0.3326465,-0.06418523,-0.0730318,0.04102951,-0.07096065,0.13192554,0.20049185,0.20608357,0.44367638,-0.35476294,-0.6114534,0.4403726,-0.3623554,-0.31187624,-0.2899813,0.17733333,0.5374782,-0.617303,0.43486923,0.42312056,0.1472333,0.046174124,-0.58345294,-0.026537925,0.09613629,-0.19401424,0.33304358,0.29225612,-0.8235501,0.5158567,0.2934343,-0.23617122,-0.6809951,0.64591753,-0.089271426,-0.44433123,-0.0014771484,0.4057707,0.12099845,-0.090511836,-0.28188384,0.17231992,-0.5051152,0.2633792,0.16212934,-0.038148932,0.2866384,-0.30028346,-0.16691259,-0.7090664,-0.060525596,-0.35929048,-0.45357984,0.20525813,0.07442574,0.11689471,0.118487485,-0.065692,0.4687509,-0.62440264,0.032478966,-0.044204246,-0.2679515,0.3895862,0.32816014,0.51396626,-0.30414605,0.45194897,-0.03161571,0.021666098,-0.077396676,0.1656821,0.5001634,0.0026373267,0.31670278,0.023950405,-0.16945738,0.3219824,0.66188437,0.28241313,0.48028642,0.00664822,-0.2782483,0.18737966,0.05152401,0.10604368,0.118709534,-0.3322817,-0.15187478,-0.13204053,0.12051256,0.59046435,0.1745393,0.2865821,-0.13794726,-0.15998293,0.07852009,0.24994077,-0.034726374,-0.9998122,0.29759112,0.11298844,0.6624196,0.43441835,0.13732915,-0.07829224,0.5480266,-0.32310307,0.20780629,0.28374398,0.02749221,-0.5081047,0.48785007,-0.62245214,0.39859354,-0.09704194,-0.016060358,0.14667656,-0.15423924,0.38539216,1.0391297,0.042380974,0.07209727,0.11112858,-0.40191442,0.0030593649,-0.31970865,0.018025182,-0.44005942,-0.25299135,0.7485254,0.43295035,0.32457507,-0.12515908,0.014994246,0.12421009,-0.14274925,0.0623557,0.038295776,0.44734502,-0.13127148,-0.55539155,-0.27591962,0.59509337,0.027063392,0.025443979,0.14125918,-0.30603588,0.36941367,-0.07310804,-0.015497319,-0.047503777,-0.53543687,0.09715715,-0.26234898,-0.3120916,0.34658134,-0.23574556,0.18737854,0.10878021,0.09656747,-0.3488757,0.341015,0.2642147,0.57465315,0.021865658,-0.24066357,-0.35863304,0.2611534,0.1503464,-0.28809184,-0.2123734,-0.27466294,0.22897848,-0.6458071,0.23899762,0.055975534,-0.18956093,0.055171933,-0.07429778,0.04882365,0.3464781,0.046219807,-0.06245204,-0.053969707,-0.025380768,-0.29407713,-0.13565844,-0.15441456,0.1711405,0.20953959,-0.2444736,-0.10432087,-0.033635627,-0.011999946,0.34100592,0.077648826,0.38081074,0.47697145,0.17253019,-0.4006669,-0.01677395,0.15057369,0.47500673,-0.19960791,0.02974265,-0.34704205,-0.37047747,-0.20361988,0.26734683,-0.28994086,0.21085837,0.20471567,-0.08067276,0.97802436,-0.083405375,1.1507212,0.08392388,-0.29965246,0.13027324,0.4141021,0.06921664,0.057642348,-0.4072528,1.1212467,0.5615003,0.018702019,-0.13425632,-0.26300943,-0.06096808,0.0697003,-0.26468354,-0.19553453,-0.102434814,-0.5728244,-0.34940594,0.25136524,0.16098124,0.23345283,-0.02067036,0.14937927,0.24069817,0.1515772,0.25223002,-0.5947392,-0.12973094,0.31807166,0.26168936,-0.11662132,0.18857503,-0.54193854,0.3870977,-0.62848157,0.0549308,-0.2617649,0.1520094,-0.16849227,-0.28870508,0.2205419,-0.022701517,0.35043353,-0.3749283,-0.32345292,-0.24539995,0.2917217,0.038253963,0.045333162,0.59757054,-0.25455597,0.16678327,0.050863106,0.5215932,0.90465367,-0.19989747,-0.11144165,0.42270252,-0.32350516,-0.6818217,-0.011872277,-0.24631718,0.2092887,-0.19186401,-0.15240031,-0.46561712,0.43216568,0.17997748,-0.019423373,0.011452043,-0.47050288,0.039373532,0.51786554,-0.35936004,-0.20190963,-0.20979379,0.28087252,0.74554145,-0.3179274,-0.31575057,0.03267587,0.29411113,-0.1356104,-0.613625,-0.012667857,-0.35884652,0.28134233,0.20847967,-0.32018137,-0.08919047,0.025305215,-0.31857675,0.14976388,0.51673704,-0.22443289,0.049926743,-0.44774586,-0.014446616,0.8562203,-0.07917392,0.14106254,-0.38420588,-0.54989946,-0.7904168,-0.39393967,0.33621913,0.13311608,-0.07774671,-0.6413522,-0.059918493,-0.19200464,-0.4491699,-0.10213144,-0.20057794,0.4538679,0.15457672,0.19959292,-0.060301915,-0.86663735,0.15804172,0.033081453,-0.18342793,-0.48993054,0.43991923,-0.13749692,0.9086578,0.11507535,-0.024597013,0.42568767,-0.5681301,-0.06423257,-0.3204435,0.01977292,-0.66735446,0.13686144 -338,0.4122613,-0.19398597,-0.6191717,-0.1567692,-0.57948446,0.17145906,-0.31865284,0.34016982,0.1669045,-0.21606337,-0.13918576,-0.06720222,0.0334887,0.38526943,-0.07210663,-0.54733133,-0.2427981,0.14479941,-0.85172486,0.48438478,-0.49179867,0.40053725,0.15274923,0.23480794,0.25684375,0.51157826,0.24442628,-0.017483557,-0.23695895,0.12590624,-0.11724714,0.1173373,-0.4358417,0.10660543,-0.23533513,-0.2872273,-0.04527014,-0.3222431,-0.184706,-0.59170014,0.15471762,-0.74421954,0.43941674,-0.2162813,-0.025699416,0.0502917,0.3318642,0.39000726,-0.37151003,0.15272897,0.24438463,-0.2300792,-0.15365888,-0.32631484,-0.14159511,-0.37491372,-0.3759586,-0.11065391,-0.67503536,-0.26455542,-0.10915891,0.2699544,-0.22523521,0.1961572,-0.02956523,0.23659195,-0.4646455,0.12507534,0.2324865,-0.18194816,-0.034834057,-0.4970992,0.014234873,-0.1328415,0.53399694,0.022210944,-0.17266452,0.41843107,0.24154565,0.30913287,0.31431714,-0.28570405,-0.3231903,-0.23754317,0.23035656,0.33990788,-0.12036772,-0.16029362,-0.1989199,-0.003845811,0.37932277,0.24217252,-0.03199174,-0.29290658,-0.041094076,-0.11460602,-0.24271926,0.3407054,0.44595546,-0.22792765,-0.2345754,0.3276179,0.48039514,0.22350104,-0.38283437,-0.0019766758,-0.09707782,-0.4415764,-0.13071921,0.13588628,0.11811037,0.40011716,-0.10993238,0.118355006,0.7947716,-0.115602955,-0.021213213,-0.07065385,0.062289204,-0.1846877,-0.25959685,-0.06092104,-0.027537528,-0.5530824,-0.049110733,-0.14562477,0.64637923,0.111982696,-0.75305647,0.32797518,-0.4723468,0.12569329,-0.11631462,0.4699866,0.6791695,0.40462878,0.14065844,0.7541996,-0.1985175,0.2694418,-0.20019655,-0.34262487,-0.052589044,-0.21370281,0.024497068,-0.5492035,0.23277803,-0.1214649,0.11214985,0.0828463,0.48776218,-0.42010555,-0.107173525,0.21098721,0.72826236,-0.40564847,-0.09222987,0.62727237,1.0436317,0.9093545,-0.011528967,1.1192037,0.39228013,-0.25933367,0.093753874,-0.49228,-0.40271008,0.16137569,0.30503306,0.11169953,0.32810804,-0.05493722,0.02694802,0.4162441,-0.33166152,0.06537309,0.04374234,0.25017998,0.15820971,0.037957687,-0.3275225,-0.14320002,0.15654793,-0.020503718,0.14287184,0.2700121,-0.28993392,0.40859103,-0.07102671,1.4809667,0.012523576,0.013207669,0.1336063,0.5558291,0.23047459,-0.11339086,-0.026244858,0.43167162,0.47760773,-0.12873152,-0.53881437,0.20638621,-0.33755776,-0.508724,-0.15700145,-0.45011118,-0.19321088,0.03987813,-0.5255967,-0.25014737,0.077426404,-0.27215183,0.37353218,-2.8585458,-0.30503827,-0.19077852,0.22812603,-0.33358246,-0.29877764,-0.2227194,-0.49310717,0.23648411,0.24643834,0.3519331,-0.52621573,0.583009,0.38515344,-0.4396999,-0.16011332,-0.57720476,-0.015956573,-0.034436017,0.42295462,-0.07982575,-0.03492948,-0.12611106,0.09739409,0.6569356,-0.16725641,0.22782099,0.5559511,0.33582345,0.15274017,0.6300013,0.08199797,0.5718502,-0.41493902,-0.2405721,0.31592005,-0.21651153,0.1873383,-0.035167053,0.11789964,0.51065296,-0.4379909,-0.83956695,-0.5743119,-0.15714885,0.9850605,-0.4626715,-0.36563084,0.25947505,-0.053240236,-0.1326184,0.11177458,0.51575863,-0.071616605,0.14551789,-0.6736889,0.19036284,0.050288383,0.19131206,0.021239476,-0.08398393,-0.24913254,0.6862416,-0.032827917,0.6043957,0.26895708,0.25045338,-0.115311444,-0.22091314,0.14623001,0.83909935,0.28016198,-0.0045852703,-0.1750061,-0.3297453,-0.18674208,-0.26538977,0.14118946,0.35433173,0.5389365,0.07451178,0.20275587,0.1978721,-0.11303015,-0.028613843,-0.18143384,-0.09472468,-0.034859452,0.1498544,0.4367964,0.603384,-0.034117192,0.5973212,-0.2029306,0.3890879,-0.12350607,-0.6381972,0.5409519,0.43159646,-0.21944681,-0.17402093,0.52989244,0.5782056,-0.29206324,0.41363117,-0.7013375,-0.40697742,0.6290742,-0.23110086,-0.35236335,0.18656245,-0.25596166,0.06701339,-0.72772384,0.14743304,-0.2289994,-0.3355953,-0.4032952,-0.32071975,-3.2425842,0.11370698,-0.0047433325,-0.1893723,-0.12420626,-8.0185775e-05,0.28630996,-0.6599277,-0.41849366,0.11005622,0.1879131,0.59982985,0.014813115,0.009969862,-0.25502726,-0.203467,-0.07155302,0.23150328,-0.029565763,0.31232905,-0.18168275,-0.52083766,-0.061055142,-0.07960339,-0.486881,0.17463693,-0.44258058,-0.35225415,-0.1087713,-0.28807202,-0.23177026,0.51914644,-0.39169496,0.0021370754,-0.31425086,0.05486981,-0.18794961,0.13883854,0.2237585,0.2017011,0.20938236,0.013969292,0.1473657,-0.38969457,0.37127662,-0.049337957,0.3093342,0.2864197,0.14442702,0.19188553,0.34987342,0.54758203,-0.17814058,0.9042266,0.32739273,-0.047225688,0.2930842,-0.15729606,-0.18745717,-0.55490303,-0.36364374,-0.20543724,-0.38612092,-0.44814733,0.0050179134,-0.33705524,-0.8010187,0.5769064,-0.033601467,0.22665776,-0.13781586,0.25066844,0.38744938,-0.23325913,-0.051762067,-0.0807493,-0.15129286,-0.44411996,-0.47275913,-0.59869534,-0.59456915,0.014217156,0.9801221,-0.24869728,-0.023693562,-0.15023942,-0.32106027,-0.028552823,0.21542951,0.15098555,0.39896047,0.4088475,-0.10098141,-0.7114424,0.42744985,-0.26704282,0.0014104071,-0.49270794,0.11433374,0.43761757,-0.57640284,0.50076437,0.3132652,0.2317715,0.08395665,-0.47658843,-0.17029908,-0.06985151,-0.21182524,0.49718392,0.21138608,-0.78639627,0.5637231,0.086094506,-0.40832824,-0.7527537,0.3211135,-0.015111485,-0.3056476,-0.06336047,0.326272,0.1590844,-0.13404283,-0.24000692,0.15539552,-0.41074058,0.27294853,0.3257602,-0.060040362,0.26437137,-0.13277057,-0.32007912,-0.59428895,-0.111323565,-0.2798569,-0.30685097,0.18739456,0.025561323,0.091602005,0.17117652,0.015304874,0.30351076,-0.23116265,0.0993991,-0.08522712,-0.25059915,0.2150984,0.36270618,0.3523084,-0.35441366,0.5070634,0.06257901,-0.18434298,0.06632655,0.025361545,0.33544812,0.09006647,0.38520768,-0.14689973,-0.25872353,0.4386623,0.55378354,0.21706943,0.2737789,0.04565022,-0.35867608,0.29728934,-0.009994478,0.055915404,0.0013876803,-0.42130986,-0.069344774,-0.0062520434,0.26059195,0.5104534,0.2009614,0.40442213,0.10241823,-0.0042018853,0.14816745,0.08530315,-0.040396065,-1.1935307,0.2873949,0.2768434,0.7729899,0.4066744,0.0073549044,-0.21452273,0.64272934,-0.3821755,0.050696667,0.36082894,-0.0571335,-0.36255002,0.62581396,-0.6369075,0.50513536,-0.1526032,-0.13617444,0.1802157,0.17122065,0.24866708,0.89159,-0.12251113,0.11066243,0.18776016,-0.3254629,-0.017687831,-0.1600882,-0.043286633,-0.51185274,-0.40832162,0.7190528,0.2565537,0.3845052,-0.16720992,-0.0919089,-0.018484892,-0.22179136,0.100177094,-0.055077933,0.11169118,0.106819965,-0.419327,-0.25711587,0.51086426,-0.01430847,0.20422405,0.009921022,-0.36722773,0.042980343,-0.20007756,0.020418601,0.0082852915,-0.53187525,-0.043316703,-0.15535699,-0.51960355,0.36656097,-0.18826768,0.23017663,0.12986867,-0.10427719,-0.19973382,0.38779318,0.08525443,0.758402,0.023969742,-0.19755742,-0.20300052,-0.05491785,0.3680402,-0.19079278,0.12087105,-0.42537975,0.03157439,-0.62824935,0.58692354,-0.13788275,-0.44494152,0.2920193,-0.18927962,-0.004813552,0.4696991,0.030986238,-0.09952984,0.0984254,0.084294304,-0.39137968,-0.116245106,-0.40511823,0.2374608,0.14934127,0.008321404,-0.067195736,-0.16707027,0.039341897,0.58597946,0.0034699598,0.41928017,0.26357102,0.019220976,-0.20756397,0.12128749,0.19651738,0.36695832,0.04707644,0.03656107,-0.41529918,-0.3758689,-0.3557425,0.24111602,-0.14863716,0.11001155,0.05410334,-0.24329048,0.8957939,-0.15983538,1.1349516,0.16120803,-0.32093573,0.21250737,0.40445787,-0.016847365,0.16066253,-0.32531276,0.68097633,0.57439756,0.0047500976,-0.142743,-0.3487893,-0.12712675,0.33638024,-0.33142185,-0.023241583,-0.043546773,-0.5635321,-0.5273782,0.14588629,0.043806423,0.1356157,-0.03415185,0.02012672,0.08627435,0.119660184,0.36047867,-0.6168076,-0.16317368,0.18301946,0.25464192,-0.12652464,0.26562032,-0.49002194,0.50042486,-0.72366667,0.059606805,-0.3374387,0.14745939,-0.084895864,-0.25839892,0.1405344,0.08995579,0.34554976,-0.2872235,-0.355464,-0.25562045,0.59175444,-0.050237473,0.21325988,0.51634943,-0.30539697,0.071476825,0.14870164,0.46716422,1.1255665,-0.5084717,0.034310993,0.33837858,-0.32562235,-0.5947211,0.30466154,-0.36416298,-0.05227763,0.007706488,-0.46469873,-0.2502483,0.40031168,0.101282164,0.109231345,0.14542973,-0.46554688,0.049777865,0.37716663,-0.22703299,-0.3000948,-0.12864892,0.25318074,0.66856825,-0.33845627,-0.2336659,0.074517824,0.34889817,-0.28859532,-0.3588004,0.037595153,-0.23095362,0.44134447,0.12312104,-0.11978315,-0.118842855,0.13811214,-0.40383917,0.042033643,0.36192498,-0.3824988,8.280838e-05,-0.23275498,-0.032704767,0.8453652,-0.10053263,-0.006670665,-0.702881,-0.4340173,-0.7890283,-0.42197374,0.07423956,0.18403842,-0.1248542,-0.42076993,-0.009364581,-0.07682953,-0.23563181,0.10388505,-0.5186236,0.441207,0.111750394,0.41718125,-0.15358904,-0.9215111,-0.06503879,0.019360589,-0.27575144,-0.5064532,0.5750111,-0.23371397,0.8161931,0.022409547,-0.10215564,0.031781208,-0.3793448,0.37275025,-0.4281873,-0.104642205,-0.69917464,0.039884195 -339,0.4687628,-0.3281843,-0.4725048,-0.15027617,-0.18062511,-0.057762668,-0.223626,0.33280116,0.18587913,-0.43860137,-0.09500602,-0.040475093,-0.05106326,-0.030915251,-0.1809824,-0.43369284,0.10727799,0.053138606,-0.60411286,0.69948906,-0.29810777,0.16688834,-0.14309457,0.30446026,0.2947935,0.36089882,0.019234793,-0.016676132,-0.0024307729,-0.15597501,-0.030444881,0.1864379,-0.60329837,0.29574716,-0.25993037,-0.23938291,-0.123692945,-0.40420607,-0.47139245,-0.7051559,0.28309664,-0.9683459,0.44411978,-0.020464692,-0.29681656,0.35403487,0.22191277,0.34601536,-0.352251,-0.11859382,0.30225104,0.058474064,-0.13322073,-0.09875346,-0.005396543,-0.5491055,-0.4609329,-0.08731417,-0.44480866,-0.07391011,-0.47633514,0.11745629,-0.3101513,-0.07194277,-0.08370013,0.5457489,-0.45911896,0.24174364,0.19296214,-0.05017334,0.42385852,-0.59317166,-0.10563245,-0.12133943,0.2476661,-0.049658395,-0.21540065,0.2794838,0.20244089,0.3674849,0.0496797,-0.12550016,-0.17143324,-0.041426104,0.23790549,0.31274095,-0.0892165,-0.4139043,-0.11738928,0.03154663,0.21082424,0.28941903,0.21880585,-0.27447692,-0.12445166,0.092570804,-0.17858028,0.5068439,0.55391884,-0.20414113,-0.15897904,0.24207298,0.58855796,0.21685217,-0.2591668,0.026306843,0.0044644177,-0.4523467,-0.23815782,0.11258361,-0.16987625,0.53395396,-0.12065781,0.31963062,0.6890326,-0.1119392,-0.0017122786,0.13062602,-0.0941708,-0.220395,-0.32410267,-0.25793213,0.18664159,-0.58939815,0.2591938,-0.26144382,0.6059846,-0.005992181,-0.65075225,0.3076864,-0.4771194,0.14761041,-0.066027716,0.43598855,0.74672866,0.41575634,0.31519204,0.7215342,-0.38326785,-0.027071023,-0.13440882,-0.3947887,0.18256949,-0.081414916,0.028120017,-0.5489145,-0.019126426,-0.08055345,0.023356851,-0.11376319,0.36426985,-0.412835,-0.13376373,0.03850349,0.87355906,-0.21091624,0.05364077,0.7922223,0.96540487,0.8973802,0.14524205,1.1422945,0.116558306,-0.13488293,0.15897848,-0.0919497,-0.6562579,0.2793357,0.40025902,0.38959312,0.17261718,0.072067834,-0.024875512,0.5366408,-0.42260978,0.19440313,-0.25351796,0.19054778,0.113410756,-0.23853837,-0.20949271,-0.16127442,-0.066218086,0.08248642,-0.032730475,0.15866056,-0.11205384,0.29216772,0.10753996,1.6272258,-0.0013842186,-0.0015032947,0.11530983,0.5484798,0.25029767,-0.21968238,-0.057647962,0.21503362,0.4431118,0.15485306,-0.5542688,0.076156855,-0.21507844,-0.43204376,-0.12192221,-0.4720308,-0.2073191,0.00066953304,-0.47226417,-0.16697854,-0.29797083,-0.27149898,0.39387882,-2.8977008,-0.17051032,-0.18153948,0.35997105,-0.29211503,-0.1369069,-0.045821097,-0.44591185,0.46286693,0.32014492,0.4811191,-0.6664444,0.5992278,0.4807186,-0.65425414,0.043310363,-0.59003574,-0.16473344,-0.021750612,0.46181148,0.0728723,-0.09227456,0.10264961,0.22208163,0.5078932,0.17815161,0.17002216,0.38347617,0.466299,-0.21766336,0.60569495,0.01948681,0.3330305,-0.19527133,-0.11256058,0.24354322,-0.2826334,0.34026095,-0.043988775,0.16312341,0.54236245,-0.45758292,-0.89573616,-0.7342344,-0.12786306,1.1113706,-0.22295618,-0.5066919,0.21691865,-0.65311515,-0.25687093,-0.1779725,0.49112102,0.056820434,0.029177273,-0.85079676,-0.011279043,-0.13173588,0.035125617,-0.015674481,-0.19780043,-0.5162259,0.91777253,-0.014104865,0.6474637,0.3268004,0.15443555,-0.27414244,-0.34193322,0.14357358,0.70631015,0.43112895,0.09044709,-0.24232762,-0.21838108,-0.41252902,-0.16210088,0.14064345,0.75407946,0.48800257,-0.06333819,0.22414859,0.2975609,-0.12799163,-0.057910506,-0.23591618,-0.2144401,-0.2473902,0.008473432,0.5074113,0.6414622,-0.10000534,0.29971507,-0.052918043,0.13238603,-0.17175181,-0.47650397,0.5311209,1.0137455,-0.14284915,-0.26763397,0.49218184,0.5368568,-0.124176756,0.36769983,-0.5301424,-0.2058545,0.45365307,-0.16459641,-0.41300339,0.21558285,-0.46286708,0.058742926,-0.74868655,0.19894356,-0.44052586,-0.50079125,-0.39608815,-0.16875622,-3.2097123,0.20895156,-0.25824133,-0.20169654,-0.28969696,-0.39545146,0.27768338,-0.5549205,-0.5603429,0.24457766,0.003165402,0.85911936,-0.043839335,0.05812169,-0.2557348,-0.24415572,-0.3470974,0.09088543,-0.0139958775,0.34257177,-0.22350441,-0.4378158,-0.27787125,0.043963615,-0.39330953,-0.020603104,-0.42675367,-0.31000963,-0.13089083,-0.32855988,-0.19470535,0.56790507,-0.033469193,0.076231904,-0.20973554,-0.13511978,-0.20805931,0.3368864,0.18925504,0.13364355,-0.04842615,-0.081096694,0.052139897,-0.31928736,0.26570505,0.059598207,0.3368906,0.24916294,-0.17545113,0.20195551,0.41814214,0.52205676,-0.18499668,0.8749448,0.3708984,-0.10044333,0.3615628,-0.07883553,-0.29784945,-0.6920341,-0.26887357,0.021181086,-0.39128277,-0.44383934,-0.038431942,-0.4247701,-0.71262157,0.39283946,0.06669632,0.28866374,-0.014845748,0.14977442,0.5051817,-0.16757545,-0.11259051,-0.01933812,-0.19339137,-0.55053383,-0.24959205,-0.5556438,-0.34712029,0.052552547,0.8220311,-0.20169732,-0.051761437,0.15194245,-0.2746727,0.16048694,0.23814347,-0.09945255,0.18273538,0.42254865,-0.12419179,-0.6279234,0.49075642,-0.06164359,-0.24706574,-0.5821294,0.37012964,0.53717405,-0.5367006,0.61601394,0.22849631,-0.052457564,-0.38114062,-0.54164505,-0.09909666,-0.22571668,-0.2648631,0.4848329,0.2232932,-0.8210824,0.31138983,0.4082944,-0.108616255,-0.6930645,0.7409591,-0.073177576,-0.2219548,-0.118687786,0.20881945,0.12297282,-0.058126487,-0.16554204,0.31889874,-0.34998885,0.30076462,0.16514018,-0.06966016,0.15873769,-0.09754713,-0.08523096,-0.6216429,-0.08510732,-0.48585236,-0.20250776,0.26383632,0.040481694,0.018535951,0.1715871,0.058168314,0.36576575,-0.20741664,0.14562657,-0.060228,-0.28666323,0.34553385,0.44785148,0.51333326,-0.51121527,0.6629575,0.05422377,-0.14328645,0.10659169,0.3264297,0.34580675,0.11172156,0.4754252,-0.0957869,-0.12604398,0.2925924,0.832792,0.22058381,0.57160693,0.14883518,-0.06482873,0.18118411,0.14014766,0.30255958,-0.0896167,-0.66655385,0.084613174,-0.2492945,0.2226332,0.37569234,0.124752834,0.20238107,-0.008891416,-0.2684445,-0.13233882,0.27500814,-0.03166524,-1.4423958,0.41652054,0.29315117,0.97676045,0.51733154,-0.052326616,-0.09374353,0.75044215,-0.080237225,0.085668534,0.33428568,0.13310577,-0.55485916,0.572112,-0.6792063,0.3584345,0.07156824,-0.040871415,-0.034924053,-0.013811214,0.33011016,0.6404198,-0.20562601,-0.015186922,-0.026225297,-0.3928007,0.35682997,-0.364007,0.029199896,-0.43794486,-0.39648244,0.6123014,0.5317743,0.3653495,-0.21894462,0.041092966,-0.014385984,-0.12316321,0.13543867,0.16339651,0.08282541,-0.16529551,-0.73965806,-0.17667468,0.35027292,-0.16128717,0.24500056,0.06067476,-0.2900335,0.21832663,-0.20746951,0.07909326,-0.04020884,-0.7609306,0.07073254,-0.2892564,-0.29190984,0.6454751,-0.08181168,0.20899901,0.25068825,-0.022139125,-0.14332813,0.33964863,-0.19718036,0.62720007,-0.031882126,0.01563133,-0.4988307,-0.037452046,0.1590168,-0.25248262,0.00115211,-0.26119873,0.061051305,-0.7622764,0.48422286,0.093593955,-0.3716849,0.21905638,-0.13234018,0.084513105,0.59011024,-0.2447359,-0.18087676,-0.010083048,-0.07000678,-0.32120425,-0.40751463,0.041635655,0.30876064,0.23184274,0.21405996,-0.15319782,-0.046117987,-0.031681787,0.38973218,0.050214496,0.38853297,0.33096626,0.07177385,-0.35944685,-0.14915232,0.28257892,0.518252,0.036589496,-0.09163788,-0.29701865,-0.60024315,-0.38309675,0.2242307,0.01867547,0.42583802,0.014094595,-0.062392283,0.6975423,-0.11732486,1.0197645,0.12902309,-0.31599107,0.16269821,0.6108441,-0.09260593,-0.17682473,-0.15072575,0.6116343,0.531632,-0.0591221,0.038429268,-0.40558204,0.038560238,0.14792575,-0.2120684,-0.018761761,-0.039379254,-0.6255956,-0.10896812,0.13068618,0.30398387,0.15848097,-0.19595107,-0.04102409,0.2700461,-0.06267782,0.24551259,-0.5269722,-0.28438577,0.24415062,0.07326908,-0.052286975,0.037336454,-0.46566582,0.41819477,-0.51031846,0.12510486,-0.23612252,0.079346165,-0.25802383,-0.28216925,0.2385785,-0.12529986,0.30449206,-0.34490356,-0.36114967,-0.24032177,0.39628226,0.3119818,0.18830504,0.58813375,-0.19734968,0.08408868,0.13204561,0.46677297,0.81874454,-0.22472446,-0.08903793,0.3444331,-0.5001552,-0.5834524,0.32456857,-0.3989612,0.279321,0.15340897,-0.21329546,-0.41636387,0.29230988,0.28328425,0.095613584,-0.0015440643,-0.87001127,-0.27639267,0.21579498,-0.1944306,-0.14926702,-0.3516593,0.011352476,0.49114722,-0.23121971,-0.20498565,-0.005252306,0.08144882,-0.095047645,-0.48783857,-0.035940815,-0.38478488,0.314102,-0.08470558,-0.37944126,-0.07279111,-0.014882803,-0.44085425,0.28032342,0.01123476,-0.32986048,0.043690007,-0.35896778,-0.18699507,0.90682274,-0.22433424,0.113049015,-0.3107951,-0.326753,-0.6691521,-0.33596832,0.14126155,0.1666996,0.061300613,-0.5332043,0.018122546,-0.08575228,0.09906602,-0.11206896,-0.4015292,0.50475687,0.102560475,0.4662598,0.0063608726,-0.7072627,0.25080433,0.10478377,-0.13692679,-0.5309251,0.6538452,-0.15686011,0.62460315,0.086376086,0.16498521,0.08225448,-0.53305346,-0.04317147,-0.23591797,-0.16151981,-0.5988088,-0.021895317 -340,0.5374982,-0.1569744,-0.5738089,-0.13514352,-0.2255387,-0.055583645,-0.17691877,0.61396873,0.17771862,-0.45563763,-0.06594219,-0.13466589,-0.03199487,0.38727817,-0.14384912,-0.6593915,-0.07759872,0.0964347,-0.54363286,0.48600394,-0.4380411,0.186434,-0.08555543,0.44871098,0.22776939,0.3014164,-0.052942917,-0.05648671,-0.080787696,0.0011901706,0.09701577,0.100097045,-0.68651116,0.08361436,-0.10157156,-0.392454,-0.1390262,-0.51960516,-0.41141802,-0.75572914,0.37117332,-0.7192755,0.51210225,0.055744864,-0.22918579,0.01772958,0.0065906383,0.4483801,-0.28277653,-0.003086187,0.106729396,-0.0099784285,-0.00031088293,-0.10674423,-0.18583064,-0.2607861,-0.55068445,0.044488557,-0.38594562,-0.14527684,-0.06518297,0.045215275,-0.30149797,0.0920794,-0.10247111,0.5186775,-0.3820355,-0.052894056,0.45911926,-0.09537995,0.30749625,-0.46413213,-0.06367393,-0.17553115,0.2525088,-0.18248196,-0.33924985,0.3950156,0.15248969,0.50392133,0.03785745,-0.32237554,-0.28378665,0.008020431,0.17027837,0.4187185,-0.31401405,-0.45130664,-0.12637344,0.088967845,0.13322663,0.21643433,0.1694883,-0.27960777,-0.15014932,0.12668952,-0.19891153,0.33686662,0.56535226,-0.17186396,-0.3067302,0.24256259,0.5792286,0.22898135,-0.03842303,0.1934515,0.1203171,-0.60592127,-0.3025927,0.10955398,-0.07162394,0.2590987,-0.08203316,0.21805526,0.72948474,-0.25454846,0.060549207,-0.045004733,-0.12703753,-0.0021803528,-0.40381324,-0.34741357,0.21148133,-0.42613196,0.2889282,-0.13741136,0.784644,0.24849313,-0.81257945,0.244178,-0.68741363,0.18174314,-0.21284103,0.56949794,0.8035209,0.4438437,0.22258888,0.7085111,-0.40021697,0.20925052,-0.11618219,-0.34439456,0.070405774,-0.22024676,-0.014114283,-0.3864832,0.00994505,-0.1319988,-0.14703166,0.15377866,0.19468763,-0.5360964,-0.08609586,-0.0016985629,0.85558516,-0.2903066,-0.043961585,0.79200083,0.83797944,0.92920375,0.15289477,1.0975561,0.21471255,-0.25260493,0.408292,-0.22676553,-0.92213356,0.3831539,0.26644456,-0.10641527,0.2826931,0.053783305,-0.06978202,0.41803133,-0.39205816,0.24410799,-0.2310057,0.21889737,0.1425367,-0.33470333,-0.21635596,-0.19100499,-0.1419815,-0.039204128,-0.059503913,0.2453951,-0.15814663,0.33237857,-0.040430892,1.8295555,0.08072075,0.11058675,0.08559807,0.48579842,0.16062315,-0.19305569,-0.1831169,0.12719959,0.35232174,0.12946975,-0.5912903,0.15696898,-0.17354004,-0.46471682,-0.13596475,-0.34777695,-0.01594117,-0.30648255,-0.4899587,-0.18214533,-0.13091177,-0.08949603,0.3635041,-2.5577912,-0.22979274,-0.028402783,0.30903673,-0.31359148,-0.31698108,-0.1755209,-0.48003033,0.43715757,0.34754813,0.4120468,-0.6445106,0.5435105,0.39411643,-0.5301697,-0.028508725,-0.62511146,-0.20254692,0.15363464,0.12259179,-0.0015524104,0.016866237,-0.010358579,0.13363142,0.46207762,-0.15866582,-0.040615402,0.21901889,0.38605937,0.051517516,0.5242357,-0.1295561,0.5812569,-0.41612536,-0.20720217,0.28287363,-0.3976431,0.10992458,0.0918802,0.06647638,0.31886733,-0.5574237,-0.9862287,-0.6564143,-0.23409177,0.9637566,-0.11019326,-0.31347483,0.30069026,-0.4086877,-0.16182208,-0.14813836,0.4171299,-0.038336348,-0.04218044,-0.8581822,-0.047132023,-0.21604718,0.21848215,-0.012740953,-0.0025916193,-0.3344173,0.5414924,-0.11221254,0.48048115,0.45259565,0.15765196,-0.1766367,-0.5257673,0.14883167,0.9076756,0.2707683,0.19551165,-0.31083417,-0.1432962,-0.397178,-0.038391117,0.026047979,0.47369337,0.8299891,-0.12715048,0.1974329,0.24504393,-0.028145295,-0.019030832,-0.091178596,-0.3053538,-0.1518732,-0.11826022,0.5430417,0.7063383,-0.2637635,0.48494786,-0.045231137,0.46085197,-0.18495406,-0.39515424,0.54252946,0.7768482,-0.17526394,-0.30172852,0.50695133,0.2921263,-0.3095997,0.46651927,-0.52034175,-0.15807974,0.4306833,-0.14753185,-0.35809135,0.31531113,-0.31067953,0.1557641,-0.99528503,0.30816942,-0.3308446,-0.22862741,-0.5654056,-0.22074765,-3.0638106,0.13340606,-0.20014352,-0.22436792,-0.113426775,-0.068310335,0.18532875,-0.53024876,-0.7328658,0.07943588,0.06001709,0.7830064,-0.080519974,0.13907579,-0.20811465,-0.14495699,-0.35626772,0.057573713,0.2684447,0.3101433,0.029462665,-0.47490993,-0.29675174,-0.17915346,-0.5248377,0.19954675,-0.5353439,-0.50001115,-0.15047485,-0.5122545,-0.30690968,0.73050094,-0.1744321,-0.051361144,-0.13745922,-0.075784,-0.04949576,0.4714761,0.16387813,0.08161456,0.15237041,-0.0719704,-0.041368622,-0.24290696,0.13548926,0.03182042,0.4089855,0.21363142,-0.19967899,0.292734,0.5654792,0.8470549,-0.11487935,0.6929219,0.5766893,-0.086749256,0.409958,-0.3664053,-0.34426332,-0.45101783,-0.22592081,0.038655587,-0.3580659,-0.51177365,0.01575447,-0.41225266,-0.76236105,0.5027045,-0.0821743,-0.054456495,0.04747537,0.10655588,0.360676,-0.2452591,-0.0942703,-0.11659195,-0.02489125,-0.50982326,-0.20788349,-0.50380236,-0.58803725,0.048173912,1.2562605,-0.12119748,0.0077357106,-0.009973913,-0.26598108,0.016378637,0.03007792,0.01725354,0.26880983,0.39632002,-0.13009131,-0.5925338,0.4575322,-0.1919098,-0.29474708,-0.6672596,0.09803299,0.68284225,-0.62801516,0.47443062,0.15149513,0.11447207,-0.072198994,-0.49808443,0.015098989,0.0471133,-0.14970842,0.40679848,0.14569908,-0.7560986,0.46609735,0.49327022,-0.23353542,-0.7072707,0.35376447,0.08159457,-0.30397332,-0.072170444,0.31732818,0.05514978,0.06054967,-0.1468623,0.21896087,-0.3764312,0.09059636,0.30438334,-0.10478188,0.29838246,-0.15794766,-0.12143954,-0.67486703,0.08638116,-0.52687514,-0.20782317,0.286343,0.011785952,0.19158325,0.089189306,0.23618591,0.4197269,-0.30508003,0.048004776,-0.13761753,-0.22245677,0.27170187,0.44895667,0.46624994,-0.5472317,0.5311624,0.009385949,-0.07474442,0.08320412,0.12786178,0.5304498,-0.07737001,0.327204,0.047705196,-0.20811701,0.19769853,0.81633365,0.08505437,0.3440309,0.06995067,-0.24168894,0.20623623,0.18794402,0.00999943,0.10158917,-0.47815144,0.098723486,0.011606444,0.18236938,0.5184882,0.1667696,0.2326195,-0.03375617,-0.2527588,-0.13689476,0.2282458,-0.08212571,-1.4844834,0.495217,0.15013435,0.8563999,0.47647864,0.07501026,0.1903012,0.55247885,-0.14671877,0.20366754,0.33652204,-0.16633224,-0.54918396,0.49073303,-0.6326308,0.545241,0.014487732,0.031223705,0.0723954,-0.043860115,0.6399853,0.75412273,-0.0793431,0.0208712,0.021151353,-0.23463461,0.15362675,-0.46155703,-0.088615224,-0.49746794,-0.26767364,0.73126835,0.39438164,0.22793418,-0.21159868,-0.010099843,0.14337584,-0.04692152,0.16302292,-0.16673413,0.08885998,0.059251167,-0.5855497,-0.38082904,0.5689191,-0.12391097,0.16558884,-0.05114471,-0.22490577,0.26411587,0.003911257,-0.030581027,-0.16393703,-0.72831374,0.036818627,-0.45769176,-0.29013997,0.3325876,-0.073425785,0.26777238,0.20815179,0.11651739,-0.40789568,0.61957186,-0.11032204,0.8369831,-0.16661605,-0.20734066,-0.3418824,0.2746389,0.27563846,-0.27961892,-0.08898184,-0.23459709,-0.003832791,-0.41547105,0.42574376,0.0004050266,-0.45703396,0.1926685,0.011230099,0.055116717,0.38350058,-0.21338359,0.00093242526,0.0396175,-0.16434613,-0.2095035,-0.16840118,-0.11273205,0.23959248,0.3157655,-0.03605044,-0.045753516,-0.06235365,0.05881352,0.5683215,-0.023297567,0.38669556,0.37346923,0.25253135,-0.43416157,-0.15639713,0.2502711,0.48127162,-0.037842263,-0.12465013,-0.4019767,-0.29124284,-0.31455636,0.29706421,-0.21856692,0.40758398,0.0677121,-0.43711,0.7179357,0.13527998,1.2866157,0.081546396,-0.32687506,0.18583812,0.31816274,-0.009103069,0.009928508,-0.53979504,0.8119726,0.47375602,-0.19953874,-0.19847254,-0.25115493,-0.12703998,0.120279215,-0.19245397,-0.16108932,-0.08272539,-0.5359747,-0.2805634,0.2795963,0.18795037,0.19006594,-0.08760574,0.025538668,0.16498247,-0.017088056,0.123726696,-0.43189391,-0.08566764,0.16465503,0.2647799,0.024938956,0.024756923,-0.56363815,0.4043999,-0.41413137,0.10132455,-0.23894116,0.2118429,0.0033514611,-0.30014873,0.17611496,0.010655396,0.4065007,-0.32231253,-0.30672953,-0.18793705,0.50631434,0.14063299,0.2342266,0.72646815,-0.2843399,0.15941435,-0.03480553,0.5361414,0.90072954,-0.2259807,0.0120517835,0.38832834,-0.15456566,-0.4868914,0.3339731,-0.23193662,0.15367337,-0.10027383,-0.14660746,-0.5737253,0.27223742,0.2799733,-0.038311414,-0.048151784,-0.6900945,-0.3601582,0.32697427,-0.2290556,-0.31375623,-0.47719193,0.1267439,0.73587054,-0.1664614,-0.20649034,0.26843002,0.20030932,-0.09904176,-0.37882394,-0.07320529,-0.34340245,0.22748682,0.052631777,-0.29641747,-0.04363905,0.17203678,-0.46987233,0.13059756,0.15547378,-0.33336765,0.015165804,-0.2195079,-0.13807698,0.9449166,-0.20041446,0.25686133,-0.54198873,-0.5437132,-0.9279634,-0.34218097,0.554414,0.20859513,-0.015353441,-0.7171239,-0.18753356,0.073330425,-0.16576383,0.010569453,-0.29985136,0.42721483,0.04190692,0.34181976,-0.13292836,-0.6651222,0.07168925,0.12351983,-0.23152843,-0.61075515,0.54005456,0.051695988,0.86151016,0.009772077,0.09054083,0.29945445,-0.4339964,-0.10087179,-0.23111327,-0.17894697,-0.6376392,0.037651666 -341,0.48052213,-0.27074152,-0.2918791,-0.14550574,-0.14510989,0.12731616,-0.18336293,0.42999455,0.086671345,-0.68383294,-0.14744633,-0.16271451,-0.043289304,0.32964104,-0.1715467,-0.3971807,0.06297644,0.026983283,-0.36861095,0.60263187,-0.4769048,0.25158554,0.06837142,0.344808,0.08441551,0.15112615,0.28157577,0.0008603374,-0.13035049,-0.2143813,-0.11722051,0.10177865,-0.50855595,0.25065038,-0.18767451,-0.47627994,-0.13233514,-0.34684607,-0.3393364,-0.60305077,0.24385363,-0.95062983,0.36609456,-0.06318817,-0.28039023,0.2957359,0.07158895,0.22848208,-0.1935357,0.013671947,0.053134307,-0.13116162,-0.019673824,-0.15646133,-0.082388215,-0.30055264,-0.54553086,0.035411634,-0.47111928,-0.3104316,-0.23137161,0.11079902,-0.3264423,0.0045930822,-0.07864884,0.57240844,-0.46501598,-0.018028926,0.07346358,-0.10584025,0.44464093,-0.61355287,-0.21145764,-0.05400704,0.18954974,-0.217671,-0.17659998,0.23424062,0.22102931,0.5846326,-0.013058305,-0.010358155,-0.32696924,-0.10541784,0.36863008,0.52013695,-0.08944004,-0.5802901,-0.13946487,-0.047123518,0.15444928,0.14524259,0.18586715,-0.39489555,-0.09985914,0.15082748,-0.14594717,0.32595274,0.54373616,-0.24269815,-0.2884031,0.27041528,0.49687073,0.004033454,-0.1905048,0.07246321,-0.011074054,-0.38737065,-0.12813197,0.13772745,-0.09662395,0.62717235,-0.066229485,0.36300305,0.5351599,-0.1377395,0.06831352,-0.074467346,-0.12507653,-0.19888644,-0.1960284,-0.1427311,0.115063176,-0.32838717,0.19768329,-0.26201352,0.76379126,0.114707604,-0.8493197,0.38323852,-0.5002528,0.026799444,-0.15249684,0.51998615,0.572692,0.22417389,0.19792798,0.6561262,-0.48379526,0.014093908,-0.17118874,-0.303825,-0.22277944,-0.2039738,-0.054309767,-0.45548964,0.0302824,0.14352223,-0.09265398,-0.05245013,0.3190637,-0.3492737,-0.073588766,0.09318217,0.7065122,-0.31259543,0.04107576,0.8702184,1.0999074,0.9253338,0.15757184,1.1370374,0.2570473,-0.15609612,0.16532832,-0.11583435,-0.6039435,0.2831832,0.42814904,0.7416413,0.20684004,0.022126103,-0.035164777,0.38161576,-0.54678893,0.22130544,-0.16267477,0.18053386,0.18072207,-0.14307033,-0.43501338,-0.06999025,-0.025827928,-0.007933903,-0.0034642934,0.13531463,-0.13358536,0.41579714,0.13111863,1.5941002,-0.23863935,0.12622435,0.12375216,0.4980888,0.15287778,-0.19086987,0.059446868,0.17272186,0.41226763,-0.07156661,-0.6492233,0.14131418,-0.09856244,-0.59510124,-0.25003403,-0.40749672,-0.08931054,-0.018256597,-0.485828,-0.21432787,-0.07207635,-0.34087473,0.35058412,-2.815593,-0.267265,-0.23763375,0.3243133,-0.36669767,-0.2703664,-0.09271067,-0.38063413,0.56102914,0.37768987,0.36257085,-0.703538,0.38014665,0.47222665,-0.27938688,-0.11132552,-0.5850042,-0.06053656,-0.11340192,0.45691472,0.030031037,-0.13195035,0.08443182,0.1419876,0.5897711,-0.010106425,0.121686526,0.20810969,0.21072201,0.024136985,0.40923414,0.013061595,0.37113583,-0.2758199,-0.04355015,0.34828076,-0.18869391,0.049381927,-0.056300435,0.23367064,0.31223705,-0.45171908,-0.71587265,-0.78905886,-0.44161704,1.1639458,-0.19763409,-0.56168705,0.32469252,-0.22434518,-0.18386902,-0.17048715,0.3936676,-0.04195819,0.11875956,-0.8179649,0.037113864,-0.12304447,0.11028353,-0.04725292,0.0014828086,-0.4530421,0.70279574,-0.123443745,0.63942504,0.4401168,0.27609983,-0.14953762,-0.38449907,0.06701479,0.97803783,0.37030876,0.15689084,-0.2327866,-0.2298937,-0.231765,-0.23117615,0.15711123,0.55314624,0.777477,0.022162847,0.14017826,0.27076235,-0.08286739,0.04530982,-0.078019835,-0.10721703,-0.14449158,0.03594578,0.5790097,0.451449,-0.25461623,0.51586694,-0.25604114,0.16016175,-0.20198098,-0.35461038,0.50693595,0.6933365,-0.16601358,-0.18778501,0.52199066,0.4299246,-0.34441954,0.3432311,-0.6695031,-0.11543829,0.47697732,-0.23104769,-0.4134811,0.21177833,-0.36856386,0.20969804,-0.9332675,0.28314188,-0.28890905,-0.48874518,-0.55607253,-0.28628194,-3.085225,0.08678732,-0.13904287,-0.33104113,-0.050644774,-0.44620928,0.24549977,-0.50947964,-0.45476335,0.16558535,-0.007379615,0.64169717,0.07245319,0.15899605,-0.25620857,-0.023347605,-0.33003604,0.11935449,-0.026061527,0.36171043,-0.013716072,-0.31799445,0.026241994,-0.15706116,-0.54146546,0.044248056,-0.2815933,-0.47492105,-0.18759279,-0.19335529,-0.32928413,0.59198034,-0.30887446,0.09699813,-0.21195951,-0.17720196,-0.26815477,0.45828134,0.20869909,0.098320924,0.08799951,0.056772307,-0.037905287,-0.29364374,0.19860567,0.0030317504,0.054095365,0.50124556,-0.30126494,0.21431047,0.38353586,0.51179963,-0.013158763,0.5875932,0.50822467,0.008216079,0.2519575,-0.33145866,-0.26490888,-0.5055219,-0.33600956,-0.003940475,-0.34075013,-0.6496135,-0.109624006,-0.28655702,-0.7733482,0.4189207,0.05693727,0.20140384,0.0020941237,0.12612131,0.39548352,-0.13577121,-0.19049703,-0.09387687,-0.017237421,-0.64615077,-0.3794449,-0.6748828,-0.5682067,0.014492357,0.8479,-0.018604103,-0.25972694,0.068206824,-0.23693374,0.052023787,0.15039802,0.08270096,0.057197127,0.2632704,-0.088251665,-0.7190544,0.5760118,0.021981992,-0.37663138,-0.5930449,0.2210121,0.61352545,-0.44818884,0.30574292,0.22897871,0.06263246,-0.19075057,-0.4459748,-0.10817954,-0.073257364,-0.2387365,0.40710706,0.0864817,-0.80257,0.42826167,0.39827356,-0.015311357,-0.72386384,0.51822466,0.061210837,-0.12845252,0.013000679,0.23655492,0.15707614,-0.07292611,-0.22142018,0.20745936,-0.54233867,0.27736658,0.27252927,-0.00079010526,0.4153476,-0.19661659,-0.09662983,-0.58719355,-0.04797641,-0.5691312,-0.14322285,0.017271014,0.14985695,0.22415464,0.23115775,-0.09332095,0.45951283,-0.2701545,0.14789225,-0.00039553244,-0.18006277,0.2599482,0.34934938,0.3230667,-0.41332635,0.6610319,0.0035887936,-0.008486271,-0.10722084,0.12841225,0.43274525,0.35757577,0.23207475,-0.1340916,-0.20150532,0.231392,0.79001313,0.3388084,0.44762674,0.24200198,-0.2428843,0.40683854,0.10992948,0.23467611,-0.03459924,-0.40540114,0.004053529,-0.12670109,0.10704699,0.30995423,0.18026188,0.3963618,-0.06487935,-0.21968459,0.07471243,0.15935189,-0.20337994,-1.2711487,0.32948208,0.14875314,0.83250564,0.56625926,-0.18001814,0.12083855,0.5156434,-0.19333951,0.16117388,0.19819051,0.05826634,-0.43758056,0.58744645,-0.73098576,0.3211682,-0.058146976,-0.0463862,-0.08888904,0.06498407,0.31221396,0.5950682,-0.07903312,0.23910135,-0.04713749,-0.22714655,0.18694538,-0.432047,0.08209013,-0.36137098,-0.22236449,0.6353503,0.4812064,0.31235597,-0.13860893,-0.028019527,0.14575131,-0.012746771,0.11528868,0.044159673,0.14207046,-0.014434991,-0.56577873,-0.3134821,0.4435891,-0.20913297,0.13590689,0.020622082,-0.40207,0.22595833,0.075611316,-0.21132085,0.12774482,-0.64056194,0.07081828,-0.28500775,-0.35932383,0.46927422,-0.19538306,0.25674897,0.15524822,-0.03922019,-0.24184948,0.08154114,0.16449326,0.6226637,0.08642915,-0.08288664,-0.37506047,-0.045369364,0.282269,-0.16410877,-0.103578135,-0.065482266,-0.02465212,-0.57424283,0.41561934,-0.042877503,-0.16941299,0.4431538,-0.072440036,0.023165138,0.55436355,-0.11598543,-0.18042704,0.16111352,-0.2131978,-0.24972291,-0.25671995,-0.10120964,0.40709835,0.09776254,0.017426658,0.14641072,-0.028847916,-0.0072058914,0.33682072,0.030795176,0.44653985,0.3258429,0.011504211,-0.43426648,-0.17596012,0.20761506,0.34602165,0.124026604,0.021815216,-0.12938918,-0.5396291,-0.2746269,0.07094795,-0.10458803,0.22276637,0.10192892,-0.39022127,0.61810887,0.08784895,1.0000937,0.109140225,-0.33089092,0.15960269,0.26414543,-0.0012669245,0.016950488,-0.3489256,0.7236384,0.5127229,0.016351143,-0.07720127,-0.26517373,-0.079864964,0.2877472,-0.18874818,-0.096499905,-0.06318543,-0.7162091,-0.29595953,0.13290499,0.25003126,0.058135964,-0.07504853,0.045446537,0.15243517,-0.031590704,0.35697412,-0.39140034,-0.019384913,0.36923298,0.21070354,-0.0144627215,0.013459015,-0.38672465,0.3315182,-0.543151,0.02109514,-0.22062431,0.08441689,0.045379184,-0.17047843,0.15359548,0.05859352,0.3207196,-0.14694712,-0.3684526,-0.25273314,0.5399223,0.017455865,0.07267405,0.46429756,-0.20276956,0.21171974,0.009960502,0.3671357,1.1933692,-0.16486305,0.053805135,0.26585606,-0.3564938,-0.52135795,0.36132553,-0.2979352,0.36510518,-0.06774894,-0.16241506,-0.55578554,0.22995453,0.2808362,-0.12420606,0.13024533,-0.49144867,-0.41537017,0.4063018,-0.35108328,-0.18511483,-0.39550495,-0.07751196,0.5349821,-0.34354076,-0.08763536,0.042725336,0.29891363,-0.25010818,-0.4832881,0.03428379,-0.21927585,0.26417476,0.095889874,-0.32094306,-0.13057633,0.18089868,-0.40924984,0.05913566,0.07089578,-0.34270903,0.04404601,-0.3859041,-0.03529698,1.0152878,-0.08532162,0.1279557,-0.6329817,-0.49877983,-0.81529826,-0.52605844,0.45491728,0.14477031,0.04414517,-0.4566532,0.009453169,-0.056142807,0.0801009,-0.08869658,-0.37193853,0.4636336,0.12801678,0.38062245,0.023861255,-0.54885215,0.05957481,0.044545032,-0.10558395,-0.44503498,0.49715108,0.19193888,0.7139315,0.07376353,0.102287225,0.14477219,-0.53802204,0.04652055,-0.19179717,-0.2856247,-0.5828709,0.10268308 -342,0.39148328,-0.31420752,-0.5052677,-0.15840761,-0.4776012,0.17626747,-0.2429112,-0.01179151,0.09667798,-0.4530015,-0.2006402,-0.43075064,-0.036471684,0.39964804,-0.14380732,-0.48593634,-0.07817312,0.27787873,-0.68214184,0.45430157,-0.40766868,0.23375645,0.10268634,0.42323568,0.10045,0.2194471,0.17979726,-0.058066197,-0.36100462,-0.11054872,-0.06115749,0.16433048,-0.8789382,0.38964313,-0.38307175,-0.30812326,-0.06147313,-0.5988073,-0.23024975,-0.8218509,0.37389788,-1.0210187,0.5674827,-0.05439644,-0.27309936,0.05913077,0.21174489,0.31486443,-0.19422273,0.05561256,0.34901568,-0.49003056,-0.31343108,-0.19456863,-0.36358124,-0.31293556,-0.67655694,0.11161502,-0.5015117,-0.0049299425,-0.116359316,0.3048552,-0.21015622,0.2519798,-0.44553393,0.4232525,-0.4295921,0.027822444,0.24578209,-0.14701758,-0.007753517,-0.46706557,-0.22281003,-0.1143102,0.36271906,-0.072833486,-0.12662302,0.29822645,0.16326377,0.6730167,0.099213004,-0.30596307,-0.23887137,0.0009871231,0.095317885,0.49829465,0.10457908,-0.05811229,-0.30607992,-0.2485576,0.2873648,0.42369467,0.0010261195,-0.40008014,0.08066206,-0.18449466,-0.1580543,0.13522044,0.4414485,-0.17569157,-0.41577336,0.26533312,0.5889934,-0.099177085,-0.09757932,0.028635655,0.10378337,-0.5522562,-0.25134498,0.42045814,-0.20239195,0.5541396,-0.11702146,0.15758447,0.7127547,-0.26098964,0.010029797,-0.21501096,-0.018838763,-0.056363888,-0.37729174,-0.1466484,0.3198247,-0.5251829,0.13182244,-0.27045622,0.6906099,0.09474083,-0.728643,0.35608348,-0.61645174,0.072090805,0.08547907,0.70068544,0.7715451,0.42574194,0.37210733,0.76425946,-0.32922792,0.20840268,-0.10389686,-0.27942947,-0.10324563,-0.26566216,0.31066513,-0.42300877,-0.0011803551,-0.2214518,-0.2195343,-0.20211922,0.5103259,-0.37030867,-0.040447433,0.05450988,0.6591366,-0.39889404,0.0805822,1.0887129,1.008796,1.020413,0.16551253,1.5002261,0.49386913,-0.2882208,0.078534104,-0.27500317,-0.5815798,0.11059631,0.22797358,0.14277825,0.22892046,0.11418391,0.052680515,0.56045187,-0.5109151,0.1705809,-0.08477717,0.22278865,-0.1498731,0.2782102,-0.56459385,-0.41877753,0.10083377,-0.0096003935,0.12184442,0.41394684,-0.16683786,0.6869492,0.14573781,1.2777399,-0.16159578,0.17144284,0.070459604,0.21496716,-0.046067093,-0.18759547,-0.22489317,0.18368807,0.23400007,-0.09575587,-0.57557356,-0.12475269,-0.2763855,-0.29827914,-0.38198617,-0.2340418,-0.01304741,-0.3498462,-0.38679072,-0.29766187,-0.096403204,-0.33686393,0.4530147,-2.0949018,-0.19941041,-0.2992867,0.24401675,-0.2952104,-0.48083884,-0.1589174,-0.5653567,0.3326201,0.24772082,0.22670674,-0.5683869,0.5339194,0.34444088,-0.48385218,-0.19744428,-0.7751029,-0.06765782,-0.09276124,0.2378854,-0.11559864,-0.29142213,-0.44664198,-0.06427218,0.47948432,-0.12149988,0.11298133,0.40118614,0.4713739,0.22685324,0.56859237,0.29408857,0.55994874,-0.4687126,-0.16829689,0.50365436,-0.3675692,0.49072558,0.072699174,0.15743266,0.5826054,-0.7586242,-0.70449716,-0.777939,-0.8150049,0.95682305,-0.39602613,-0.31391412,0.18485539,-0.12218319,-0.22918715,0.1183901,0.5730456,-0.20458078,0.13328885,-0.7465426,-0.05853427,0.0064024054,0.41785067,-0.02429025,0.17358235,-0.60498923,0.6805696,-0.25849104,0.34635085,0.54256725,0.23728958,-0.21688366,-0.36301523,0.18480526,0.9769146,0.34049723,0.14730628,-0.22340132,-0.5283805,-0.14870216,-0.3565204,0.042162802,0.3884997,0.60177183,-0.0074863583,0.023364065,0.32344773,-0.31181622,0.17664722,-0.217567,-0.29096812,-0.15793923,0.13676973,0.6618179,0.56926084,-0.050928585,0.43013272,-0.2428725,0.3805608,-0.09448404,-0.46352005,0.4317977,0.90875477,-0.026270786,-0.07050882,0.88828665,0.5410963,-0.54842085,0.4677278,-0.6407727,-0.38857478,0.49284253,-0.041705202,-0.5750727,-0.052942853,-0.27691147,0.23580208,-1.0478624,0.23521541,-0.22266737,-0.47847462,-0.76971847,-0.14610918,-2.4941628,0.19993709,-0.23788777,-0.025544295,0.0208218,-0.3453827,0.3521636,-0.4533495,-0.7253036,0.23115186,-0.07021698,0.47601438,-0.03619564,0.16032934,-0.296022,-0.19228448,-0.339861,0.21200882,0.35400924,0.22678988,-0.22480781,-0.4236474,0.14856169,-0.35816407,-0.39901596,-0.11672802,-0.8333139,-0.6643891,-0.26434132,-0.6143001,-0.3906577,0.6557756,-0.28452227,-0.07863797,-0.30992338,0.025908474,-0.17723158,0.32887432,0.16693917,0.49261013,0.23408367,-0.07981194,-0.30761623,-0.3826372,0.28742582,0.093448974,0.049916882,0.41954464,-0.025350442,0.32161364,0.27064505,0.7299185,-0.09607482,0.77784634,0.23493876,0.010187856,0.26480448,-0.32624754,-0.2842349,-0.6788754,-0.24302052,-0.17884788,-0.40423152,-0.5318242,-0.14874074,-0.35522342,-0.83406764,0.6553218,0.13212846,-0.06049351,-0.12305606,0.25370625,0.33582646,-0.28401655,-0.00093334913,-0.25944528,-0.026616825,-0.5386768,-0.6665128,-0.7391538,-0.64831275,-0.10635773,1.3435843,0.07080175,-0.18306021,0.21145038,-0.5208372,0.16742049,0.29633158,0.048148043,0.22809713,0.66508293,-0.019348988,-0.6705119,0.45889023,0.14506349,-0.104075186,-0.48467326,0.14123093,0.84800816,-0.7109459,0.73764336,0.50362915,0.14265239,0.04698086,-0.46969572,-0.3201637,0.011220076,-0.26779345,0.4702681,0.33218163,-0.63632107,0.4596314,0.21413887,-0.04036614,-0.97442627,0.2879775,0.044479933,-0.102288544,0.21395476,0.48285595,-0.044276316,0.034300923,-0.22934791,0.102969036,-0.36960265,0.23064484,0.4831583,-0.0074835634,0.26977032,-0.3706138,-0.19222763,-0.6702325,0.09452776,-0.38063285,-0.37923655,0.1236536,-0.04119549,-0.062573954,0.40638217,0.22381186,0.30165553,-0.28783396,0.096343435,-0.16250262,-0.33012876,0.1189922,0.41641945,0.23820616,-0.7009009,0.7632123,0.06026425,-0.133011,-0.2573105,0.048685916,0.36000416,0.19468832,0.2601952,-0.18748805,-0.1979101,0.090225115,0.7073102,0.07102697,0.55875766,0.24602027,-0.0061972737,0.35036537,0.051052768,0.20878565,-0.17069218,-0.36470675,-0.045039184,0.06482405,0.120501176,0.38814512,-0.0417099,0.5695155,-0.052143864,-0.05636855,0.20264135,0.17044719,-0.21848986,-1.1811503,0.24281634,0.08898933,0.7514802,0.6273963,0.06669525,0.011901034,0.6746916,-0.59524524,-0.08678059,0.29311532,-0.008251705,-0.3863184,0.6470683,-0.52354014,0.4970927,-0.30417424,-0.11810614,-0.096728764,0.057470918,0.40388685,0.9616614,-0.16253991,0.048689783,-0.09918839,-0.027095625,0.19942181,-0.23203002,0.074498065,-0.5323039,-0.43423027,0.82095426,0.26284122,0.5751696,-0.29706812,-0.06621692,0.12800613,-0.1467901,0.15114813,-0.024668818,-0.07755597,0.20974134,-0.59450465,-0.050901067,0.65878445,-0.16264357,0.099270605,0.2371454,-0.48846027,0.20680788,-0.1211774,-0.10467972,-0.05513602,-0.919112,-0.10125544,-0.49760464,-0.49341255,0.056290153,-0.3540623,0.10755419,0.14416353,0.15129408,-0.44167623,0.16629656,0.2314547,0.98743427,0.2452925,-0.051994745,-0.09257173,0.17392446,0.39824325,-0.36682442,0.08788057,-0.29529557,0.13689736,-0.69538796,0.6312221,-0.14644305,-0.36630806,-0.040395644,-0.03262576,0.025526868,0.60407966,-0.09225888,-0.06476877,0.20072989,-0.008949871,-0.302201,-0.13744143,-0.29618487,0.17798814,0.044729028,0.08398446,0.0048874957,-0.05008936,-0.1831045,0.781293,0.0983796,0.1782918,0.44920188,-0.12382078,-0.33563298,0.14711185,-0.06626924,0.49166277,-0.024165511,-0.33682474,-0.21819302,-0.06054296,-0.0413607,0.67158467,-0.078034624,0.16910248,0.06927196,-0.34942415,0.86206394,0.11947288,1.0565357,0.11382695,-0.27394974,0.012679781,0.38468742,0.045083832,0.027189795,-0.5172937,0.9753536,0.3994247,-0.10329938,-0.17094907,-0.51361954,-0.17783545,0.24271451,-0.17438366,-0.04412112,-0.16123359,-0.7701168,-0.31431445,0.19126,0.47197896,0.004884579,-0.16905114,0.19380276,0.1931214,0.06504411,0.6011194,-0.61916524,-0.14330073,0.47899765,0.2445685,-0.05137476,0.41605616,-0.24470136,0.43985695,-0.7685421,0.20483875,-0.5229618,-0.025239391,0.06102317,-0.17597389,0.15833183,0.08252849,0.48873633,-0.37001392,-0.19905648,-0.40234756,0.79292494,0.23360452,0.24151771,0.827727,-0.26494858,0.0035093683,0.21128154,0.5154136,1.409126,-0.28357157,0.24728754,0.07746764,-0.13108931,-0.48408392,0.39694375,-0.3488362,0.025062528,0.048176143,-0.44859228,-0.38160425,0.105863355,0.23902893,-0.10965212,0.07286371,-0.45878175,-0.054096818,0.4494608,-0.20000541,-0.24559034,-0.29112652,0.32665682,0.68184704,-0.113258235,-0.21874173,0.03845346,0.2867395,-0.35926583,-0.40924302,-0.046681795,-0.44671887,0.3674731,-0.055263,-0.37479308,-0.07559507,0.22857676,-0.4453943,-0.066190556,0.24763286,-0.29090026,0.03740291,-0.26305676,-0.01132751,1.038313,0.09317352,0.15866843,-0.51521486,-0.6563541,-0.9404147,-0.26359266,0.2755835,0.17618111,0.021560503,-0.4340479,0.1022455,-0.16819875,-0.035948463,0.31396648,-0.50368273,0.31997466,0.29451638,0.5679473,-0.04220484,-0.78001505,0.14337866,0.122144595,-0.174506,-0.3332869,0.39575568,-0.06977365,0.7692439,0.04704992,0.10778966,-0.05365012,-0.55815727,0.48540053,-0.2709639,-0.036567178,-0.8575007,-0.08299335 -343,0.4962234,-0.14468534,-0.479629,-0.114340924,-0.15230532,0.085745685,-0.13392492,0.6933918,0.23028654,-0.42883915,-0.13239685,-0.1161287,-0.017694967,0.20347986,-0.036814343,-0.3902947,-0.0040855366,0.062569804,-0.2571959,0.44139135,-0.40681738,0.29931137,-0.1297438,0.3681349,0.076479085,0.26621774,0.060061608,-0.075145215,0.06012819,-0.09746418,-0.08356936,0.35326517,-0.27341187,0.15411378,-0.14030442,-0.38073125,-0.12158562,-0.48233992,-0.40188345,-0.60674745,0.20219725,-0.70676386,0.46876556,0.1112403,-0.3406997,0.39032644,-0.12649965,0.19915822,-0.2645015,0.06408462,0.15052779,0.0128013035,0.035504896,-0.19931957,-0.27206853,-0.32562968,-0.4835284,0.05137682,-0.38236508,-0.070737645,-0.13972585,0.0199272,-0.23738606,-0.09456001,0.030511076,0.40124464,-0.50813127,-0.14376643,0.19661047,-0.14977987,0.39036465,-0.55569667,-0.16134192,-0.06722692,0.25711676,-0.2564804,-0.109283656,0.11299399,0.22027,0.58119166,-0.122622006,-0.07769735,-0.46894425,-0.029882776,-0.08717731,0.4665502,-0.19809107,-0.44311187,-0.120997615,0.008999053,0.28357276,0.26607472,0.09060762,-0.13976917,-0.1915168,-0.05883836,-0.23870324,0.2877402,0.53898925,-0.48867068,-0.21053381,0.39593357,0.61695707,0.17053191,-0.06700684,0.10078002,0.026568497,-0.46832076,-0.18848103,-0.039037473,-0.26611674,0.41563532,-0.13045062,0.28552186,0.57455915,-0.0040414156,0.07762418,0.20547329,0.08124872,-0.13933477,-0.24113505,-0.17201601,0.237447,-0.3430349,0.10577533,-0.08283626,0.59355795,0.021563845,-0.7580665,0.3550388,-0.47635266,0.08597764,-0.09302937,0.56551147,0.70685524,0.2586792,0.23808987,0.69581974,-0.5598784,0.061935145,-0.0890006,-0.23132303,0.04629232,-0.051346347,-0.16863866,-0.6121771,0.051501464,0.23577596,0.020021824,0.31962457,0.2550554,-0.5666939,-0.11278122,0.34167245,0.7198297,-0.25315112,-0.08216271,0.63797307,1.050216,0.9647111,-0.04372503,0.91328496,0.07425129,-0.2588076,0.3026385,-0.4654311,-0.6210898,0.24526644,0.39409503,0.10286393,0.3378499,0.18326506,0.061485585,0.3334288,-0.32663345,0.032373942,-0.11656036,-0.041676287,0.054940183,-0.094447,-0.51977694,-0.21762429,-0.11109093,0.13682117,0.04010438,0.30180654,-0.19607855,0.3206304,0.029036919,1.578001,-0.07727944,0.11207398,0.15168503,0.4012528,0.19097881,-0.13599531,-0.08491926,0.38184717,0.32947114,0.10468421,-0.5341985,0.14842325,-0.14068937,-0.47831973,-0.042195465,-0.27228668,-0.032061145,-0.024995176,-0.5166286,-0.025330318,-0.20272781,-0.43256676,0.4396198,-2.981584,-0.17362207,-0.090306655,0.24590905,-0.22550805,-0.33896488,-0.19883347,-0.35148653,0.42079535,0.37245145,0.4782093,-0.7241973,0.40966097,0.41617545,-0.42677397,-0.020513069,-0.57651544,-0.16857836,-0.0012811144,0.24544494,0.12539019,-0.026714247,0.056185022,0.24881262,0.43751732,-0.010683592,0.12519534,0.21124509,0.36559853,-0.023132626,0.36071503,-0.04766184,0.37382317,-0.26395485,-0.26276797,0.29909483,-0.32867423,0.2191658,-0.13451253,0.1159583,0.36389393,-0.4693244,-0.9148778,-0.5880563,-0.17725602,1.2011335,-0.112363,-0.49007824,0.29629403,-0.46761814,-0.3182081,-0.17010294,0.48336306,-0.1320009,-0.12114557,-0.830466,0.07193089,-0.11094549,0.09776711,-0.014899443,-0.074341096,-0.4249848,0.62731785,-0.071045436,0.64558995,0.47449714,0.10154462,-0.18614183,-0.36777824,-0.07672764,0.8898668,0.4114313,0.15768522,-0.26288334,-0.006373485,-0.3844353,0.14762452,0.17820488,0.391698,0.59003866,-0.012182137,0.18016103,0.2856752,0.059963275,-0.04770537,-0.1899592,-0.1378649,-0.051069524,0.07349988,0.58214176,0.64765954,-0.2380359,0.35059512,-0.027431717,0.08748203,-0.2747363,-0.42985743,0.4509388,0.6355756,-0.108001195,-0.26042938,0.619355,0.54241526,-0.22269617,0.40076026,-0.6284199,-0.37701324,0.26087976,-0.22405806,-0.40879574,0.23159274,-0.25572526,0.20381318,-0.8811623,0.10292506,-0.12582044,-0.53715146,-0.53318614,-0.09675675,-3.1131577,0.2115647,-0.18894343,-0.19141397,-0.11963852,-0.117349245,0.2278432,-0.5305765,-0.6082007,0.13789447,0.17701077,0.5953726,-0.0168058,0.07286237,-0.25155255,-0.32560942,-0.20314918,0.115098074,0.042322174,0.36983454,0.14057653,-0.54162925,-0.12620491,-0.07510712,-0.33961037,0.012974268,-0.49866858,-0.37885752,-0.07994396,-0.4948741,-0.24064894,0.53424954,-0.3041564,0.04437773,-0.22484487,0.009934378,-0.11457865,0.3098269,0.045582097,-0.00054191746,-0.082221,-0.009535178,0.11512097,-0.2959091,0.36038116,-0.00071409147,0.16667862,0.40508652,-0.2295331,0.14004658,0.5921795,0.6449732,-0.1414554,0.78730184,0.5504119,-0.026814636,0.29314086,-0.19367829,-0.2223235,-0.5430655,-0.39269397,-3.970663e-05,-0.439631,-0.4774874,-0.0338199,-0.3882392,-0.8396864,0.5085015,-0.14372008,0.21736728,0.054475196,0.18382269,0.5862261,-0.25498107,0.07080577,-0.052764867,-0.11831444,-0.434958,-0.28927457,-0.6015055,-0.3380038,0.20579425,1.0248423,-0.26469284,0.13694862,0.16029915,-0.124852404,-0.09470706,0.09288724,0.087877624,0.20181979,0.3658183,-0.0887522,-0.44384992,0.47099102,-0.098109215,-0.23836933,-0.51543504,-0.008315953,0.51342446,-0.5533572,0.39403853,0.25301307,0.004444812,-0.106692694,-0.6308626,-0.10056174,-0.124146394,-0.27532354,0.4620666,0.3391867,-0.7473278,0.4405406,0.3806691,-0.15603283,-0.5987217,0.52329564,-0.1341038,-0.31499568,-0.08107013,0.22781666,0.16527714,0.021290315,-0.06316658,0.18495055,-0.35925236,0.33417302,0.2316,-0.11076292,0.47685573,-0.2228845,0.031075787,-0.7406151,-0.19854283,-0.51263976,-0.235734,0.22352749,0.14829665,0.11242003,0.11101618,-0.0009087642,0.37883767,-0.37347215,0.12533079,-0.11127705,-0.20444325,0.36256486,0.34265217,0.4912522,-0.30597445,0.5156104,-0.020780701,-0.049839042,-0.18253177,0.03680711,0.4923256,-0.019546568,0.34404567,-0.18477722,-0.27450624,0.33153105,0.609662,0.23485817,0.1828319,-0.013909137,-0.14897971,0.20589216,0.07080366,0.09953003,-0.16415234,-0.41663468,0.11142365,-0.21107878,0.20370755,0.38017878,0.10238325,0.31005913,-0.13909313,-0.30830562,0.07296548,0.20293145,-0.035974845,-1.0602983,0.29104272,0.17937063,0.77660674,0.4292488,0.07802673,0.055873744,0.6391705,-0.157623,0.1618505,0.3979277,-0.008124963,-0.52789277,0.5319963,-0.76294005,0.5683877,-0.031180333,-0.019776108,0.071277305,-0.10168301,0.4549311,0.67469734,-0.047911175,-0.0076474985,0.050677154,-0.31513882,0.017728085,-0.33937067,0.0428459,-0.6409288,-0.1342748,0.6134359,0.564298,0.3509167,-0.17858155,0.004927536,0.06530822,-0.0102566965,0.051059864,0.060362037,0.16823182,-0.2538226,-0.6976332,-0.07384103,0.4101092,0.18704651,0.060731824,-0.101006284,-0.2727031,0.20230147,-0.06993909,-0.056706198,-0.023040036,-0.5030284,-0.017537037,-0.286843,-0.36105555,0.5243822,-0.115915984,0.3225184,0.0947208,0.09721365,-0.19628935,0.3837581,0.026221048,0.78856796,0.04437208,-0.040745094,-0.4242236,0.22521658,0.24330479,-0.14015831,-0.21756564,-0.32569078,0.0986353,-0.50628954,0.35862547,-0.050715342,-0.2304669,0.21019231,-0.084763214,0.1306047,0.49465993,-0.038863577,-0.19284123,-0.051283564,-0.1301896,-0.29277962,-0.20822026,-0.21250232,0.32892177,0.06798182,-0.12979904,-0.15187772,-0.028603133,-0.06934737,0.3313168,0.08268115,0.23265578,0.2800814,0.07542508,-0.3065593,-0.02588133,0.13144273,0.41885084,-0.009458935,-0.10432921,-0.24409577,-0.5369648,-0.27439675,-0.048579644,-0.10859116,0.37151212,0.062343836,-0.013823533,0.7505772,0.043818634,1.0845106,0.12300258,-0.30411768,0.04891061,0.42847264,0.023218174,-0.044469308,-0.27205163,0.91701305,0.544997,-0.11274474,-0.17074773,-0.17861785,-0.016147533,0.12256336,-0.1401124,-0.17575084,-0.017338676,-0.7052159,-0.21469766,0.33808202,0.20151688,0.2678105,-0.09519334,0.092302896,0.24453601,0.047907267,0.2438922,-0.39110184,-0.14937337,0.22006962,0.28181604,-0.049804326,0.09038602,-0.3917224,0.38911656,-0.54889846,-0.046907213,-0.28517812,0.1126585,-0.299869,-0.36211973,0.17302814,-0.08144187,0.33724988,-0.22787975,-0.36434734,-0.23140332,0.4641817,0.10026647,0.050233483,0.45062992,-0.24803773,0.08286516,-0.061680395,0.32638642,0.9994891,-0.22688462,-0.093979105,0.4443093,-0.20798007,-0.66026974,0.21615934,-0.4216599,0.29330933,-0.112416,-0.23557782,-0.39781153,0.40282497,0.19878118,0.037829813,0.050330188,-0.4540314,-0.023768242,0.16616192,-0.2693021,-0.23757878,-0.3205072,-0.017650675,0.5103837,-0.2822924,-0.44839928,0.11397799,0.36445883,-0.16097613,-0.5494176,0.1415437,-0.35754502,0.22267725,0.11688396,-0.3754289,-0.052179392,-0.04598715,-0.32714245,0.09042645,0.24537244,-0.3061537,0.024231173,-0.54249203,-0.012745134,0.9764422,-0.1636561,0.29547003,-0.48028532,-0.40934098,-0.89664894,-0.29568416,0.53411037,0.06775934,0.037180845,-0.5924737,0.17948388,-0.10167958,-0.103610545,-0.16651203,-0.16853961,0.5268773,0.16826579,0.35327882,-0.23203327,-0.692603,0.18553379,0.117580004,-0.18281381,-0.4941916,0.4728742,0.037601806,0.78360516,0.13198681,0.11660567,0.3193569,-0.53638816,-0.06710822,-0.22744921,-0.13671404,-0.6706341,-0.05014234 -344,0.4060908,-0.28418133,-0.48288763,-0.112924576,-0.1687824,0.10602184,-0.17159455,0.51518387,0.066764906,-0.46229172,-0.23279692,-0.099224895,0.05766911,0.52161515,-0.3037459,-0.4217427,-0.10703529,0.0124837775,-0.44113928,0.27236235,-0.58539706,0.22533864,0.059430666,0.38277417,0.14826438,0.115617394,0.13677293,-0.0761093,-0.035419457,-0.11182961,-0.024863325,0.24495591,-0.48291743,-0.0088704685,-0.12936364,-0.3985804,0.09032743,-0.57109874,-0.35896605,-0.7215281,0.39647907,-0.98747313,0.57933,0.04150943,-0.24079281,0.32950988,0.080213144,0.16824605,-0.25390863,-0.12386981,0.20339264,0.04245452,-0.11853523,-0.06671205,-0.15596487,-0.24429318,-0.59907377,-0.00096468744,-0.6228888,-0.11532406,-0.22241205,0.19645295,-0.43958834,0.15145156,-0.05231824,0.32248446,-0.49335915,-0.0655939,0.10020435,0.001631911,0.10359399,-0.6666121,-0.115138054,-0.06895609,0.19342646,-0.19415125,-0.12983784,0.3301271,0.22528681,0.4322129,-0.11849969,-0.1949926,-0.24320623,0.098157726,0.031356916,0.6678178,-0.13951153,-0.54096997,-0.11236389,0.16526794,0.38251275,0.15004791,-0.06306304,-0.13784085,-0.14326993,0.14010891,-0.1900627,0.39601994,0.5644361,-0.31273457,-0.2965225,0.49265403,0.5216302,0.2517593,-0.03842097,-0.18124177,0.07351984,-0.53457826,-0.13100015,0.051321957,-0.2875768,0.38965416,-0.06273963,0.4249284,0.57356215,-0.28909189,0.32026407,0.05173171,0.124748506,-0.1008168,-0.21417537,-0.30070922,0.08563626,-0.40871525,0.12172846,-0.16745481,0.9631656,0.099170074,-0.7437819,0.4150049,-0.5074238,0.08339966,-0.21160303,0.6084468,0.6412645,0.35492304,0.355713,0.6225951,-0.35436404,0.037149515,-0.1750372,-0.36125448,0.17428787,-0.01771186,0.0013319391,-0.4132088,-0.20075305,-0.0278874,-0.11370738,-0.016831895,0.6674935,-0.54820657,-0.07929624,0.024757339,0.775893,-0.33394054,-0.023996856,0.6103184,1.0594839,0.8003642,-0.0004648509,1.0786059,0.2570527,-0.13631187,0.22627904,-0.32503238,-0.859575,0.36295393,0.5196367,-0.26811653,0.36818898,0.1385263,-0.11837585,0.37273857,-0.47839335,-0.13136213,-0.22351122,0.30662182,0.15324003,0.1505847,-0.5402342,-0.25322238,-0.090273574,0.055824365,0.13223368,0.28060144,-0.4236384,0.13781117,-0.042413753,1.8003218,-0.0990919,0.061318442,0.05077695,0.5059683,0.1917188,-0.04386169,-0.099982366,0.3381426,0.37341216,0.012471731,-0.80789125,0.16245815,-0.24068849,-0.3855376,-0.2509989,-0.36790594,-0.06411307,-0.034206107,-0.41257846,-0.012572238,0.06536133,-0.2929722,0.44512865,-2.5781908,-0.2710445,-0.08987348,0.49351296,-0.3745993,-0.4729128,-0.23824078,-0.5083355,0.5199564,0.31971136,0.5759801,-0.6159653,0.39362213,0.46408245,-0.49640036,-0.14787787,-0.67907757,-0.17922749,0.022406539,0.29529157,0.014241489,-0.16696747,-0.044376712,0.018794857,0.44473436,0.043657605,0.10204867,0.2894578,0.7035376,0.01122772,0.47107968,-0.17325687,0.5780067,-0.36688,-0.13715771,0.31833073,-0.25020638,0.37365076,-0.3638347,0.18064652,0.46143296,-0.52643716,-1.0181977,-0.6409314,-0.1805339,1.2800018,-0.36957583,-0.33618978,0.33947462,-0.21911608,-0.22000445,-0.14103398,0.52259195,-0.168948,-0.27727032,-0.8191484,0.06746621,-0.14899786,0.1476186,-0.038098708,0.10403303,-0.31171873,0.5036678,-0.1805335,0.40966195,0.13272628,0.24831463,-0.12025886,-0.38648465,-0.0061576893,0.7810365,0.4083651,0.0913786,-0.1690345,-0.29914898,-0.24277817,-0.029534074,-0.033989724,0.4514361,0.76691014,0.10672275,0.086352535,0.19900551,-0.10016111,-0.022068053,-0.20639004,-0.36730134,-0.04901932,0.06630291,0.50608337,0.5622097,-0.2915286,0.51501536,-0.10146198,0.16593379,-0.12507384,-0.42512256,0.37365946,0.7719841,-0.15989903,-0.06858344,0.6241217,0.4560115,-0.28259087,0.3400304,-0.7290078,-0.3526323,0.44163698,-0.22447443,-0.43379673,0.090169385,-0.13437682,0.07483502,-0.91375035,0.42804432,-0.18847837,-0.35020238,-0.5652166,-0.06209733,-2.7970874,0.12168431,-0.25179258,-0.11373536,-0.039613064,-0.21635532,0.3414068,-0.64445394,-0.5292144,0.16440326,1.8972616e-05,0.6294066,0.035779677,0.15278493,-0.16191739,-0.1621246,-0.31430322,0.014572492,0.24911365,0.43744075,0.14873932,-0.46298224,0.116671674,-0.08914166,-0.35629636,0.1806582,-0.49320406,-0.56603575,-0.047590297,-0.5277757,-0.16060288,0.6757766,-0.13697761,-0.064291514,-0.0969356,0.2182532,-0.11458867,0.37546116,0.125394,0.10978408,0.05127352,-0.13738635,0.052590158,-0.3523021,0.5584291,0.013943275,0.26183403,0.4088752,-0.0034469275,0.17419197,0.69900364,0.46073797,-0.040062044,0.86696976,0.5044412,-0.20799193,0.12348211,-0.19984175,-0.25865254,-0.37933058,-0.3322856,0.03682226,-0.38792786,-0.37894645,-0.12632176,-0.3845984,-0.8614518,0.48062402,-0.10120757,0.23146725,-0.08553354,0.28156108,0.5414808,-0.13877155,-0.009618433,0.106060505,-0.022139993,-0.6122681,-0.3530512,-0.6855805,-0.40941793,0.05723144,1.0604457,-0.32018945,-0.088725336,-0.17658673,-0.11820202,-0.079356395,-0.23172198,-0.029846797,0.23352131,0.3939077,-0.055892266,-0.709726,0.40137386,-0.06973021,-0.066187255,-0.6537627,0.091487244,0.6028776,-0.6243363,0.34928042,0.46732074,0.14315091,-0.017729916,-0.65045464,-0.17761962,0.13397835,-0.17831025,0.36902797,0.14867407,-0.78394705,0.5435623,0.36909765,-0.40824845,-0.73700786,0.4574061,0.095825635,-0.28357655,-0.08461898,0.2567476,0.27879044,0.115890175,-0.23017788,0.28660643,-0.4216266,0.4325418,0.14886478,-0.102346465,0.59186035,-0.38045284,-0.16225456,-0.6460434,-0.050422058,-0.5128915,-0.26799634,0.27730703,0.015333663,0.2087027,0.1455773,0.18001677,0.4645586,-0.5262034,-0.018907119,0.0059663286,-0.2506149,0.33674857,0.46586716,0.59320086,-0.38451466,0.5784071,0.050959826,-0.19161199,0.16217066,0.005394913,0.36295503,0.034627378,0.26032984,0.0023587483,-0.17154756,0.29979298,0.98376584,0.09061948,0.3542269,0.13567963,-0.25213617,0.22483756,0.023042617,0.0010583195,-0.038247187,-0.5391957,-0.054907702,-0.10206191,0.12618852,0.5756137,0.21953954,0.22920488,-0.149983,-0.21617457,0.1083589,0.10843292,0.04579805,-1.0364827,0.33207732,0.07567484,0.6592394,0.25526974,-0.053876996,0.046902888,0.55864334,-0.10148711,0.037107177,0.33730572,0.0949781,-0.5878073,0.56384623,-0.58266747,0.48465627,-0.11615435,0.023662217,-0.027487801,0.10589023,0.35612643,0.7917991,-0.08507225,-0.025574194,0.13301574,-0.31521654,0.15226102,-0.3765955,0.04233928,-0.6761502,-0.19760528,0.5141662,0.46106374,0.32366607,-0.036361955,-0.033088468,0.071925275,-0.07455499,0.14670523,-0.008301515,0.019191582,0.07280113,-0.827091,-0.17097534,0.4962223,0.28590682,0.24108711,-0.20655407,-0.107362136,0.24470256,-0.25237533,-0.052115194,0.0192418,-0.67729354,-0.19937491,-0.5273356,-0.5903403,0.15784414,-0.16414918,0.26909092,0.18775474,-0.021971593,-0.32245204,0.28099614,0.19972946,0.93813324,-0.102325924,-0.17917307,-0.5651241,0.024470512,0.24044083,-0.25382066,-0.059143092,-0.35514122,-0.02947242,-0.6220198,0.64967877,-0.22226086,-0.2794764,0.06996297,-0.2865156,0.024959601,0.6013838,-0.083480686,0.0012478462,-0.36577764,-0.36913458,-0.3933142,-0.24752067,-0.14950654,0.09302867,0.24581869,-0.08454831,-0.13983038,-0.33097252,-0.19994906,0.59535545,0.0557972,0.38468295,0.46367496,0.2198608,-0.19063272,-0.22380526,0.14237663,0.6832909,-0.06014006,-0.1679462,-0.56786096,-0.36941344,-0.21668789,0.32970554,-0.23304786,0.32185745,0.17437561,-0.24561745,0.66377455,-0.0647185,0.89585114,0.090554245,-0.16641468,-0.034210112,0.52844834,0.17114124,-0.07312444,-0.46907532,0.89032966,0.52737695,0.023690086,-0.15277888,-0.57551277,-0.24719779,0.42932054,-0.2946215,-0.117678694,-0.18262686,-0.6673923,-0.2888672,0.28012705,0.22675307,0.077391274,-0.06763769,0.20056817,0.109377705,0.15824145,0.5012828,-0.55758774,-0.16586392,0.37924162,0.21902207,0.091117784,0.18885292,-0.5372012,0.44593573,-0.40095583,0.08629736,-0.35259908,0.2320763,-0.053603604,-0.18941508,0.16761667,0.16371349,0.44864982,-0.23824668,-0.39021048,-0.13898781,0.54823184,0.18703276,0.11059937,0.54156935,-0.27220476,0.03425288,-0.08908835,0.5997478,1.1424311,-0.18134345,0.18589851,0.35278577,-0.26281685,-0.6489684,0.45422903,-0.38200617,0.14679694,0.03187016,-0.21427134,-0.5908547,0.38175663,0.16844584,-0.033752643,-0.03908412,-0.35146672,-0.2621755,0.30640084,-0.24790359,-0.17564645,-0.22784,0.06737466,0.66102624,-0.3009954,-0.094303206,0.035719138,0.53157395,-0.13409834,-0.50295794,-0.04208443,-0.46603158,0.16931221,-0.007861779,-0.23838748,-0.16173181,0.015851837,-0.34659487,0.13773304,0.040925678,-0.38025495,0.017743744,-0.143217,0.13340522,0.9504462,-0.18510239,-0.06315563,-0.7349393,-0.40082586,-0.8252418,-0.20157006,0.48113933,0.16896142,0.099861614,-0.6356767,0.12331251,-0.00733067,-0.13284414,-0.18911353,-0.55195016,0.4076026,0.06219298,0.26335162,-0.08457515,-0.607976,0.0985669,0.00034156212,-0.3591607,-0.49614507,0.6265763,-0.086453244,0.92358154,0.03935706,0.08163112,0.019865576,-0.3414747,-0.02474575,-0.33411834,-0.23960263,-0.75082135,0.188493 -345,0.28038058,-0.058492415,-0.35166937,-0.16610023,-0.26665673,0.2545003,-0.136235,0.38708666,0.082905285,-0.41255632,-0.13199362,-0.16728891,0.002101581,0.25000766,-0.24715698,-0.32044622,-0.032410305,0.06925832,-0.5162366,0.42515436,-0.3306241,0.25940517,-0.0014066355,0.36031905,0.07784248,0.21268474,0.21626894,-0.24763907,0.025067803,-0.3478977,-0.0670227,0.09430007,-0.5946831,0.34386966,-0.2065184,-0.4100628,0.21890458,-0.33125925,-0.29717755,-0.5764755,0.22308408,-0.8959327,0.59448045,0.19909358,-0.2007751,0.3092058,0.18349501,0.314114,-0.09070194,0.083867624,0.15050514,-0.12622549,-0.079632804,-0.09048818,-0.19773175,-0.46088293,-0.50460476,0.111237966,-0.5274668,-0.10917543,-0.34331754,0.12491765,-0.23745908,-0.062044468,-0.028771725,0.21227573,-0.326106,0.10493721,0.13143703,-0.23030397,0.2334455,-0.46913496,-0.06707778,-0.04568148,0.3821609,-0.35382515,-0.23009814,0.19543207,0.19748509,0.49048725,-0.023543762,-0.121482596,-0.24932694,-0.15456808,0.112905204,0.45323342,-0.02625915,-0.40570492,-0.105429895,0.05778793,0.2013099,0.3347105,-0.048454665,-0.1658847,-0.11209602,-0.00031803336,-0.2569433,0.41716343,0.47803825,-0.5244732,-0.29606763,0.5018755,0.4736486,0.06253411,-0.0550035,-0.06021153,0.014314099,-0.4667086,-0.22584918,0.008974816,-0.20268393,0.38741067,-0.068117335,0.38088813,0.54810447,-0.28406522,0.058893092,0.11315359,0.036638804,-0.2075725,-0.04963622,-0.19491819,0.20480706,-0.5520369,0.040012956,-0.23729222,0.7509841,0.0027282494,-0.6466919,0.18987213,-0.52678436,0.049333673,-0.093453966,0.49687293,0.63775826,0.49043447,0.17425932,0.666763,-0.4437645,0.06193527,-0.2576681,-0.31815705,0.17168763,-0.25910586,-0.15218599,-0.49540922,0.038904946,0.21384346,0.045378458,-0.0031639847,0.2328136,-0.5792228,0.01740034,0.22035515,0.694621,-0.25300583,-0.08616124,0.67827284,0.9953094,0.82695687,0.00829543,1.2114784,0.04602343,-0.20659797,0.13818559,-0.17351605,-0.672898,0.24796939,0.45812348,0.109825,0.20040539,0.21576153,0.10471393,0.2943058,-0.56374985,-0.052096844,-0.15050173,0.3568565,0.012302816,-0.021724263,-0.3207779,-0.16097067,0.025829362,-0.018900607,0.1808451,0.26003483,-0.268055,0.2746901,0.093472704,1.4354388,-0.0010660291,0.23161377,-0.03954542,0.5184024,0.08572125,-0.024003517,-0.081544146,0.2908122,0.23774573,0.25606632,-0.4916382,0.014524349,-0.22635476,-0.5019,-0.13613829,-0.35828695,-0.19337733,-0.024293797,-0.30885658,-0.12087361,-0.12519903,-0.27389067,0.47799355,-2.9883215,-0.09276631,-0.119450174,0.33574155,-0.23653449,-0.3319537,-0.18095048,-0.53676313,0.500959,0.4354456,0.4926388,-0.54970455,0.25465113,0.41472197,-0.50270176,-0.20595935,-0.60474735,0.032201923,-0.07926995,0.37315074,0.020247193,-0.12206549,-0.1889224,0.11219903,0.36356777,0.09697223,0.06896337,0.20438422,0.31909427,0.20041974,0.48916796,0.054606985,0.47457185,-0.32812378,-0.1997584,0.18111053,-0.28221995,0.37926593,-0.18428089,0.060490813,0.36465245,-0.5041906,-0.9033085,-0.7867773,-0.26918846,1.2479832,-0.17630579,-0.33777332,0.17130601,-0.3254468,-0.26473418,-0.14373514,0.4580881,-0.18891795,-0.019549701,-0.6579222,0.1328505,-0.12721986,0.31760624,-0.02654976,0.054254126,-0.58032113,0.43402,-0.07352716,0.34377018,0.23516564,0.100764275,-0.22505212,-0.35637283,0.07420226,0.9012871,0.35140806,0.1741731,-0.09452883,-0.2920738,-0.39199093,0.013440869,0.20924994,0.44984013,0.59218985,0.016215654,0.13847825,0.20957543,-0.03244877,-0.0017152365,-0.15810478,-0.21919338,-0.08596777,-0.010865705,0.71440023,0.51123226,-0.018520202,0.36187196,0.030265199,0.25394133,-0.2946863,-0.42739883,0.47360748,0.72837,-0.17958887,-0.22027488,0.78967625,0.6326794,-0.14158681,0.44922122,-0.6859721,-0.45883957,0.31736714,-0.14213641,-0.40078932,0.040518906,-0.34260163,0.0934178,-0.90629184,0.32123068,-0.014541005,-0.48747107,-0.57617325,-0.119210295,-3.3258939,0.108145066,-0.07297211,-0.05287993,-0.082952656,-0.17674498,0.36335856,-0.42121235,-0.49365446,0.14468446,0.06329013,0.6921672,-0.101381846,0.1162904,-0.19645442,-0.3066177,-0.3362067,0.14617136,0.10653198,0.24328454,-0.029800713,-0.39384896,0.11665989,-0.13761364,-0.25989708,0.085690975,-0.46655107,-0.3307562,-0.17467526,-0.32310253,-0.18689391,0.642404,-0.40843558,0.03782314,-0.2650226,0.022161616,0.0146682495,0.26568967,0.19455531,-0.045955576,0.12089079,0.017213454,-0.103535056,-0.40080976,0.47216752,0.010773101,0.21799377,0.3612344,-0.064810224,0.17402749,0.43849435,0.47163528,-0.100261256,0.880709,0.32429084,-0.15268347,0.23204152,-0.2183418,-0.26847202,-0.39423636,-0.25829563,-0.15966187,-0.43841413,-0.28891948,0.06461115,-0.3094783,-0.74332875,0.58367044,0.027738502,0.07568896,-0.13088156,0.32098752,0.43493932,-0.27467054,-0.0435923,0.04005978,-0.11372704,-0.51292384,-0.40919083,-0.4128917,-0.3211939,0.0085278405,1.0215893,-0.22762725,0.06767476,0.07674747,-0.12711169,0.091790535,0.107837394,0.014909779,0.13011941,0.4807536,-0.017748924,-0.7357952,0.5569932,-0.19243596,-0.08377649,-0.60993063,0.16726531,0.47250882,-0.7193918,0.21549475,0.43728352,0.20804672,-0.1431754,-0.41476932,-0.18561554,-0.14316538,-0.24629101,0.19303045,0.15371825,-0.93077326,0.4024139,0.10270037,-0.10064961,-0.7106548,0.56300396,-0.06957727,-0.20456605,-0.024229795,0.30721527,0.41774163,0.048877984,-0.15988216,0.2253062,-0.36680394,0.30173138,0.21403222,-0.04319584,0.58681935,-0.23679774,-0.22540322,-0.68337446,-0.16359973,-0.49258026,-0.32167384,0.33126426,0.118183576,-0.028887639,0.37627116,0.023807576,0.3862636,-0.26422054,0.034481112,-0.00069948816,-0.16996488,0.37989673,0.36646268,0.55405647,-0.48042205,0.6343977,-0.016684845,-0.04966404,-0.13733175,-0.03709284,0.40884355,-0.05835077,0.3585767,-0.02817752,-0.29022613,0.35012332,0.7846378,0.19346571,0.18670334,0.012061032,-0.018459206,0.22657755,0.06740646,0.0142940115,0.13938737,-0.61142427,0.013287772,-0.22787966,0.11742204,0.36165634,0.108646326,0.23378216,-0.024833824,-0.1174796,0.08957092,0.037343554,-0.027735254,-1.130119,0.30636486,0.15889467,0.68325466,0.3859152,-0.048706613,0.06569622,0.68570995,-0.27365798,0.045624204,0.36155647,0.16046199,-0.2973338,0.5415584,-0.65363586,0.6355057,0.025152903,-0.09458583,-0.00024858754,-0.061077558,0.35681626,0.9761719,-0.16043496,0.17734696,0.01391465,-0.29935724,0.08978094,-0.19229157,0.12230379,-0.6375442,-0.21613982,0.62383515,0.404268,0.373339,-0.0802443,-0.07026039,0.04575317,-0.19799729,0.08715075,-0.05067208,0.064701505,0.016618686,-0.5838828,-0.107595645,0.5598696,0.18119062,0.16234004,0.050985422,-0.32771233,0.17711662,-0.1451525,0.08290993,-0.05300424,-0.5337179,-0.08470551,-0.2048732,-0.3783982,0.53105706,-0.3998057,0.29809743,0.17897841,0.03510789,-0.14027481,0.36164308,0.12469317,0.6452176,0.055401344,-0.18716063,-0.38604012,0.16287102,0.17101829,-0.17606077,-0.09902061,-0.24809884,0.15282223,-0.6793255,0.267527,-0.16624944,-0.36972243,-0.009288839,-0.22103919,0.037325077,0.48670107,0.08256916,-0.008961269,0.12784183,-0.19441254,-0.2339059,-0.051946707,-0.25312203,0.16737364,0.12753102,-0.021207942,-0.17307849,-0.18491633,-0.17713349,0.21837933,0.026417244,0.2803637,0.19561234,-0.026145276,-0.20924893,-0.18074621,-0.049763583,0.4627668,-0.18170555,-0.024861509,-0.1455524,-0.44278234,-0.34246352,0.12593625,-0.10341282,0.2122354,0.16752005,-0.23572707,0.57817966,-0.0650338,1.1049801,0.109022,-0.35986784,0.094534434,0.58340967,-0.0150980605,-0.020615932,-0.3858378,1.034394,0.5445029,-0.057985578,-0.20054178,-0.27465123,0.039579995,0.18187027,-0.13219702,-0.24896172,-0.096734785,-0.5999103,-0.24361695,0.2005733,0.2900085,0.1711549,0.049951386,-0.025714364,0.16378585,0.037804406,0.4115544,-0.39191538,-0.19170132,0.41657957,0.34512046,-0.021175057,0.18636099,-0.43588158,0.4190724,-0.54638344,-0.09876859,-0.24225068,0.1770519,-0.21097471,-0.28056976,0.2134815,0.07135145,0.3777926,-0.19785623,-0.51295465,-0.15553482,0.43284434,0.14055453,0.24363396,0.56520045,-0.16020809,-0.16039202,-0.20800588,0.37004763,1.0787386,-0.17772143,0.036720913,0.41890118,-0.26420993,-0.4578753,0.25358805,-0.5165363,0.25818095,0.0915699,-0.26521906,-0.21571438,0.24966621,0.17015417,0.11455178,0.03621008,-0.61668223,-0.15296434,0.06819634,-0.16484873,-0.2272767,-0.16885641,0.12672202,0.6446536,-0.21657364,-0.14329393,0.09159287,0.3903474,-0.18333144,-0.52584034,-0.104385674,-0.26684895,0.19784233,0.08753977,-0.3249653,-0.15344098,0.0648856,-0.40281504,0.035212543,0.13269888,-0.37477705,0.018515566,-0.3557208,0.11607581,0.8114112,-0.12733573,0.20979373,-0.45554808,-0.28103128,-0.83719456,-0.17166604,0.30516776,0.24470164,0.017898094,-0.36569825,-0.00022133334,-0.077727936,-0.11566608,-0.036128096,-0.38027018,0.42706767,0.06407094,0.39360523,-0.036327116,-0.9334441,0.14229587,-0.05349054,-0.2570104,-0.52114546,0.5830671,-0.111437716,0.7933963,0.06155791,0.033560812,0.33680955,-0.5780305,0.082031325,-0.17923954,-0.09085463,-0.7681051,0.12807743 -346,0.41385305,-0.24147965,-0.4935366,-0.096243314,-0.48476636,0.0699186,-0.19057226,0.36709067,0.09218217,-0.5042292,-0.117370635,-0.24032561,-0.055247404,0.54333234,-0.24499522,-0.46894327,-0.07471437,0.14563583,-0.4646268,0.2449813,-0.5781421,0.2576922,-0.073546715,0.44282162,0.088906415,0.2611922,0.15937962,-0.09714091,-0.21002379,-0.02106441,-0.17819272,0.07573709,-0.7539362,0.23156945,-0.17038843,-0.45820743,0.050101954,-0.5479855,-0.2724988,-0.6408456,0.31475672,-0.88391197,0.34913304,-0.139042,-0.16817173,0.06079891,-0.060054,0.3781153,-0.21829575,-0.018347513,0.29276344,-0.19932793,0.011439637,-0.28997755,-0.28419062,-0.49858636,-0.6094662,0.061464667,-0.5648199,0.00041769102,-0.15978736,0.15068576,-0.2411158,0.065615006,-0.22286895,0.17663318,-0.47144082,-0.055553734,-0.040052928,-0.030218977,0.101519585,-0.35899132,-0.21287192,-0.16122109,0.18670493,-0.12347282,-0.2240764,0.34180656,0.16564701,0.33694,-0.10428597,-0.10596389,-0.39143842,0.15654717,0.20072791,0.5287216,-0.028211415,-0.37243646,-0.15798657,0.09560899,0.27152756,0.28047207,0.023343492,-0.4260007,0.015549751,0.082848124,-0.34125042,0.32938117,0.53003514,-0.28108796,-0.34015888,0.4118256,0.5486772,0.08715158,-0.17264225,-0.050507985,0.028841052,-0.5302428,-0.20218743,0.25978872,-0.08652963,0.61968064,-0.12177299,0.30641648,0.74583817,-0.4017753,-0.019264776,-0.08696086,-0.022651525,-0.1435466,-0.106199756,-0.19873379,0.130959,-0.4518228,0.08601343,-0.15745878,0.7146996,0.15675506,-0.9906648,0.41049954,-0.6009296,-0.004267862,-0.05252496,0.43655604,0.52494085,0.5903332,0.3551889,0.59655035,-0.47304666,0.1842322,-0.07627252,-0.5817545,0.17468749,-0.20870028,-0.04523752,-0.32472977,-0.23667161,-0.058874838,-0.14135696,-5.924931e-05,0.46009535,-0.3836721,0.03382453,-0.046732564,0.64274687,-0.4089781,-0.14451018,0.8507403,0.9530815,1.0101602,0.19751662,1.2086263,0.21156755,-0.049506865,0.20957701,-0.20878688,-0.71392053,0.2971128,0.3802249,-0.0673213,0.34749046,0.24000336,0.2646374,0.39078096,-0.17294312,0.107065,-0.17565998,0.19977781,0.08061764,0.0186057,-0.39130625,-0.41480842,0.04203475,0.025492746,-0.12155804,0.362312,-0.12166396,0.43692604,0.21138892,1.6327139,0.12904556,0.106043085,-0.0065223714,0.5500851,0.057698205,-0.07395695,-0.17984273,0.2958748,0.22705474,0.08758744,-0.5468147,-0.0054334057,-0.1958057,-0.54651797,-0.13635787,-0.2732488,-0.14363322,-0.3801756,-0.5282113,-0.08695387,0.114449866,-0.23838289,0.5697482,-2.4686046,-0.19229335,-0.003565433,0.29505327,-0.28153867,-0.51865184,-0.080590196,-0.48996308,0.1922901,0.3373873,0.43927053,-0.67184,0.5461905,0.4190368,-0.48327225,-0.17306596,-0.727403,-0.119287305,-0.05764645,0.26104057,-0.07299643,0.072221056,-0.05299414,-0.042051975,0.4638087,-0.16385219,-0.16322634,0.10945813,0.6675885,0.28469497,0.5924486,0.09047067,0.4499866,-0.42361706,-0.031365007,0.33677477,-0.43516028,0.4944892,0.23862281,0.18781692,0.4490759,-0.48649043,-0.95697695,-0.63847446,-0.48177177,1.1799706,-0.27981967,-0.2543889,0.19152695,-0.15545747,-0.3694498,-0.26105478,0.37310812,-0.08086043,-0.003371986,-0.7289667,-0.052021444,-0.1202376,0.27656353,-0.004780391,0.15345478,-0.18968007,0.58607364,-0.02409337,0.42044565,0.39715514,0.12349315,-0.3008166,-0.47864035,0.11115302,0.6600955,0.22024444,0.18778084,-0.18594797,-0.20678036,-0.17362191,0.027559012,0.09744421,0.40403354,0.602404,0.06894427,0.067996375,0.28922895,-0.19897968,3.7986498e-05,-0.17280401,-0.20007664,-0.13082522,0.0059595476,0.49689335,0.75789,-0.2329727,0.53338885,-0.26567662,0.20073095,-0.16526328,-0.35161325,0.33500677,0.70560277,-0.04581896,-0.059097894,0.38133457,0.7216788,-0.43851674,0.34469315,-0.54779917,-0.23276427,0.5281977,-0.183982,-0.40392575,0.08452533,-0.16795543,0.101538554,-0.872992,0.24893077,-0.1785307,-0.6056702,-0.6973775,-0.11267777,-3.070931,0.16470549,-0.09916735,-0.2734055,0.14337572,-0.26934168,0.21966435,-0.5953891,-0.4882975,0.1434493,0.0044597317,0.60536814,-0.029029908,0.18126132,-0.3577181,-0.19421329,-0.31290883,0.26693928,0.24075381,0.28918698,0.028241782,-0.49845332,-0.07002238,-0.4241475,-0.48741004,0.060093183,-0.67821026,-0.5365858,-0.11358343,-0.47775996,-0.45741156,0.7186743,-0.49679247,-0.1612989,-0.03446005,-0.07088036,-0.18706912,0.4351316,0.10220746,-0.0555166,0.04393814,-0.011795963,-0.14771558,-0.36295912,0.37928316,0.091422096,0.39284948,0.47135,-0.029112807,0.13260928,0.7510811,0.7305647,0.13515122,0.8391014,0.11158972,-0.13384579,0.33792192,-0.343029,-0.30375296,-0.70583403,-0.21903774,-0.12619196,-0.33902246,-0.49031103,-0.05210636,-0.33415768,-0.7275448,0.5551568,-0.018057356,0.03215202,0.0039704293,0.22698948,0.40223354,-0.19711104,0.12461305,-0.077121936,-0.16239223,-0.538777,-0.6147486,-0.60830647,-0.63302517,0.018514551,1.3294027,0.011731001,-0.3077768,-0.05417672,-0.34254435,0.17701045,-0.0196955,-0.004978761,0.35706806,0.22148313,-0.16937974,-0.6275622,0.423845,-0.028199764,-0.11866975,-0.40045264,-0.060583856,0.8009815,-0.6878229,0.336802,0.32960102,0.084132224,0.2655174,-0.41468197,-0.2125363,-0.02389144,-0.2004509,0.3501856,0.21918859,-0.7241498,0.4496985,0.21804993,-0.33220255,-0.65606076,0.47370023,0.034287095,-0.043666165,-0.023646198,0.28839105,0.24900834,-0.025665214,-0.2921757,0.24570133,-0.49842724,0.18738149,0.35757798,0.060939386,0.15452327,-0.065271586,-0.039570846,-0.68634087,-0.035312846,-0.15881221,-0.2531236,0.29258582,0.09424706,0.1794339,0.1427344,0.14519492,0.28074488,-0.38560194,5.749097e-05,-0.017286457,-0.18689057,0.27214855,0.3942061,0.4862703,-0.52103233,0.5725411,-0.010544167,0.11776047,0.13159473,0.037665788,0.23994902,0.27455133,0.19451149,0.16081634,-0.31915414,0.042630214,0.8500526,0.3649734,0.59368587,0.11130818,-0.17782713,0.36219552,0.1910349,0.27458894,0.0721922,-0.39413774,0.21103007,0.052033957,0.2102016,0.29902884,-0.15137543,0.27321097,-0.25650734,-0.12761119,0.16469169,0.2582575,-0.12913615,-1.1684549,0.24285537,0.19462532,0.593134,0.53803754,0.02931319,0.19721888,0.553191,-0.42206904,0.06961483,0.4085193,0.13356937,-0.57970434,0.5013842,-0.6162007,0.618715,-0.24068075,-0.042652424,0.0482653,0.010424678,0.4061791,0.86839134,-0.059240773,0.045473073,0.06519215,-0.25688332,-0.008319506,-0.39164215,0.08093056,-0.58675057,-0.088882156,0.67551965,0.50082,0.3559807,-0.094836846,-0.07301806,-0.032825083,-0.10385014,0.3003645,0.021018667,-0.042997103,0.046031576,-0.7067161,-0.2189784,0.6841198,-0.06796226,0.22480904,0.14611807,-0.4870861,0.39990905,-0.14594269,-0.175236,-0.029769907,-0.7567661,-0.030802837,-0.30781978,-0.47520617,0.20272332,-0.13275012,0.32460406,0.26797137,0.069312446,-0.3161252,0.4002554,0.38630444,0.89192265,0.07176326,-0.08154281,-0.33895966,0.074013986,0.30823898,-0.2614248,0.0007083966,-0.28418988,-0.0016155496,-0.511137,0.32500616,-0.14013764,-0.28193358,-0.16916889,-0.039449938,0.06763804,0.5699931,-0.003619836,-0.17934108,-0.09846174,0.16641514,-0.21497767,-0.044169657,-0.30793858,0.21466118,0.117553785,-0.19425796,0.06921475,-0.07497647,-0.0025213545,0.53457594,-0.012517626,0.37907112,0.19170274,0.024316631,-0.33678353,-0.20604776,-0.2286289,0.5767147,-0.02216175,-0.24768756,-0.44946703,-0.14031875,-0.12436641,0.28581417,-0.15357023,0.16419032,0.10846687,-0.5427543,0.8101311,-0.11929046,1.1793239,0.009258609,-0.3496677,0.21248762,0.38136095,0.23253019,-0.0071940836,-0.40847772,0.89606345,0.46095127,-0.24607475,-0.282346,-0.42277873,-0.38357133,0.109690316,-0.31522113,-0.21944703,-0.050507605,-0.59774697,-0.0716551,0.2451024,0.20395687,0.12650725,-0.064687535,0.15580049,0.21358593,0.17061323,0.4343705,-0.36453283,-0.21283355,0.31873733,0.39620414,0.05465593,0.0932306,-0.39469665,0.4895692,-0.5695463,0.2501126,-0.6140161,0.1355473,-0.17150116,-0.2743253,0.16635516,0.26764616,0.4557109,-0.119594015,-0.36423513,-0.27976838,0.71266234,0.25731868,0.4656301,0.65112716,-0.17682761,-0.11376618,-0.052148614,0.30239895,0.9748034,-0.24491332,-0.17217544,0.45775208,-0.32948405,-0.45151842,0.3765051,-0.48229617,0.17636791,-0.029872715,-0.14787665,-0.525964,0.26615188,0.25898057,0.14217807,-0.09631252,-0.39800093,-0.042757154,0.5731909,-0.40899548,-0.33585852,-0.39185625,0.3573478,0.79963905,-0.46035355,-0.26366836,-0.11439355,0.40779427,-0.21507233,-0.2963392,-0.09774894,-0.41563714,0.32028845,0.035316713,-0.30436298,-0.020829061,0.13854179,-0.2792609,0.102722846,0.18318804,-0.431199,0.060724005,-0.25770777,-0.015938204,1.075625,-0.102925666,0.083313465,-0.58435285,-0.57471406,-0.9660602,-0.25418955,0.3277761,0.23504315,-0.038931362,-0.4638235,0.09612127,0.08810495,-0.4284255,-0.07109019,-0.626679,0.439566,0.15064564,0.34592393,0.04132832,-0.90033084,-0.0033948696,0.17608956,-0.17549759,-0.4789777,0.5888395,-0.19005106,0.7176853,0.02456952,0.15610582,0.03834728,-0.36186415,0.2497468,-0.42380667,-0.063625425,-0.6161451,0.08728261 -347,0.4291949,-0.28821105,-0.71106386,-0.12129944,-0.37268382,-0.027653363,-0.21182603,0.54624397,0.25050074,-0.5028977,-0.15852854,-0.18383016,-0.07859042,0.38789803,-0.249407,-0.46107498,-0.023039054,0.21299127,-0.69224733,0.59743804,-0.20448416,0.11141658,-0.0017242096,0.53526026,0.34261507,0.10493975,-0.059664443,-0.035021074,-0.06099059,-0.043950677,0.037824493,0.15271431,-0.6682434,-0.027938053,-0.33765957,-0.48221505,-0.15640552,-0.4669638,-0.50707865,-0.93950623,0.45571402,-0.9058737,0.5210687,-0.061740004,-0.42553473,-0.05069153,0.16437262,0.39962265,-0.114681005,-0.16411337,0.20223443,0.030301169,-0.11375928,0.10518196,-0.16108516,-0.32096958,-0.6206835,0.12954542,-0.46218097,0.08994098,-0.11368542,0.24751246,-0.32515478,0.13325047,-0.20878886,0.679866,-0.33161226,-0.118939534,0.35328028,-0.06065856,0.37998587,-0.71117496,-0.08288991,-0.1432323,0.26624638,-0.07330812,-0.21838826,0.2934962,0.22071186,0.5560187,0.006501248,-0.29053843,-0.31525105,0.24530667,0.067377776,0.297794,-0.15979466,-0.45334184,-0.073844,0.10462396,0.336223,0.1955603,0.24068508,-0.36701393,-0.09886608,0.10730366,-0.222352,0.2477125,0.533958,-0.086039215,-0.1454721,0.2386143,0.6015279,0.40954676,-0.060985517,0.1921254,0.051872365,-0.534329,-0.1796698,0.0273794,-0.2667577,0.5597007,-0.12022557,0.2800716,0.52053636,-0.104080096,-0.12801477,0.049645577,0.015448865,-0.120589495,-0.3284876,-0.31647438,0.34004575,-0.38500684,0.34805256,-0.1975514,0.63058263,0.19827583,-0.7873212,0.22307442,-0.61693263,0.25876182,-0.040084146,0.45896274,0.8612313,0.51728475,0.28315327,0.8016251,-0.37894866,0.12778457,-0.04464195,-0.3355407,0.096489646,-0.34226853,-0.059377268,-0.45239997,-0.18496063,-0.24279864,-0.19552688,-0.020164296,0.40826428,-0.6148306,-0.09452794,-0.08563043,0.79137695,-0.14777172,-0.029990299,0.8091145,0.92071205,1.1453578,0.11385803,1.0815026,0.10972233,-0.2570765,0.35598737,-0.084516585,-0.9480829,0.3758359,0.264116,-0.2794487,0.293532,0.017397664,-0.033356618,0.6457786,-0.60004103,0.20367137,-0.16138303,0.13154055,0.040053997,-0.14386441,-0.3706106,-0.21249929,-0.07149233,-0.0071269907,-0.032188345,0.2349157,-0.121761486,0.32367426,0.021268666,1.7670696,-0.097141795,0.03284807,0.11914079,0.45011413,0.055550024,-0.18107408,-0.19574848,0.04833506,0.3665065,0.115276225,-0.54184675,0.007129524,-0.27482155,-0.43483698,-0.113169104,-0.20451069,-0.19336447,-0.19952112,-0.55286306,-0.3006562,-0.17055674,-0.3554056,0.36675102,-2.383348,-0.20917189,-0.10042316,0.319714,-0.35467768,-0.36342478,-0.0042778067,-0.6141705,0.5177165,0.35715333,0.33545065,-0.6689116,0.42082572,0.3731116,-0.56873935,0.070298344,-0.6704553,-0.14852257,0.12881675,0.26136687,0.0029514097,-0.16816798,0.13364862,0.17436108,0.34579697,0.016882375,0.10900734,0.34322694,0.29767948,0.05898597,0.53200233,-0.17019232,0.4833431,-0.3351877,-0.17474595,0.41768232,-0.406267,0.18855245,-0.098478064,0.10397195,0.539731,-0.62280875,-0.87108254,-0.66880906,-0.19268373,1.2167766,-0.105017334,-0.39281476,0.32381177,-0.5843193,0.048237577,-0.10951227,0.56639326,-0.0072506703,0.0049633086,-0.8811352,-0.09299533,-0.1515471,0.2070709,0.0148293255,-0.08476448,-0.43143532,0.5300136,0.019132506,0.47553158,0.5500299,0.09470428,-0.21750623,-0.6848333,0.15341505,0.8885836,0.4015117,0.20140457,-0.27303588,0.0016714036,-0.54917186,0.021096379,0.0675202,0.47929007,0.8081669,-0.0952376,0.21774411,0.17617847,0.06299934,0.11285957,-0.24978155,-0.43298316,-0.25236496,0.061837226,0.5800404,0.73695123,-0.13972837,0.47403225,-0.12986808,0.33152568,-0.2609108,-0.35478693,0.5430726,1.0894958,-0.37963408,-0.2929873,0.57516927,0.49000758,-0.20123422,0.5049173,-0.5023125,-0.35228658,0.5116271,-0.12085181,-0.5087906,0.24875745,-0.37025934,0.26405725,-0.94107527,0.2781623,-0.39999115,-0.27880898,-0.67672044,-0.07790632,-2.3580751,0.17259549,-0.21630791,-0.17818367,-0.23644283,-0.25051373,0.28494114,-0.58261776,-0.8713112,0.06923823,0.047907416,0.74824184,-0.105976,0.10402401,-0.10769802,-0.25352016,-0.3150311,0.08781539,0.42631307,0.31141454,0.01039584,-0.6362337,-0.24393527,-0.19538969,-0.35341677,-0.0028474052,-0.65516907,-0.5305294,-0.2773769,-0.63076407,-0.35466862,0.6111696,-0.099146396,0.038474716,-0.22852762,-0.09523067,0.027793135,0.33205503,0.004744237,0.20402768,0.09292861,-0.09124361,-0.0041619837,-0.112200916,0.03605943,0.0928049,0.18718548,0.24619173,-0.20351325,0.44968075,0.65270203,0.9575223,-0.37614703,0.90970504,0.69054073,-0.09315187,0.3090247,-0.2761229,-0.35793197,-0.6143017,-0.057693187,0.10938047,-0.43937272,-0.42367145,0.1672279,-0.4959618,-0.8070546,0.68251777,-0.15308553,0.24459025,0.14264764,-0.032173418,0.5861672,-0.24514154,0.00017437339,-0.19086762,-0.12274424,-0.51014495,-0.38641527,-0.5508378,-0.59653807,-0.14114857,1.3173242,-0.052510068,-0.034550734,0.24981335,-0.25080287,0.13070239,0.07702948,-0.02962742,0.20031081,0.42852664,-0.13950361,-0.76787806,0.26360595,0.05581928,-0.047175247,-0.5518088,0.25386465,0.65078294,-0.6364436,0.5715741,0.22686222,-0.061946914,-0.28747073,-0.60323465,-0.0117738135,0.058543466,-0.24396631,0.5402713,0.3325423,-0.65591806,0.34512037,0.36967546,-0.18553938,-0.8323062,0.481822,-0.07038048,-0.16767436,-0.10869146,0.36899552,-0.029927567,0.038277354,-0.22171472,0.10213732,-0.3034458,0.2455086,0.37456328,-0.14472976,0.25686032,-0.24581403,0.09777418,-0.74744916,0.20323814,-0.5362028,-0.18917094,0.38444534,0.11278857,0.10711317,0.06680924,0.23783153,0.30069053,-0.26359597,0.07681193,-0.105846375,-0.322583,0.31243974,0.51705945,0.47287083,-0.5708442,0.6194289,-0.0042118244,-0.22016971,0.004195139,0.00803078,0.40877643,0.022853822,0.2726067,0.15206897,-0.21703202,0.13414025,0.8360461,0.04254581,0.48896223,0.01297117,-0.13081574,0.06855748,0.14223307,0.13629466,-0.020723939,-0.71084976,0.038183622,-0.19054782,0.11471166,0.53135914,0.13417384,0.22029614,-0.04238718,-0.36532494,-0.08764583,0.07748085,-0.08450776,-1.5997167,0.44131818,0.18917438,0.87932813,0.6255944,0.10597595,-0.05763654,0.49466118,-0.1770477,0.16678864,0.59550214,0.009297178,-0.49679723,0.4944925,-0.775225,0.52496815,-0.030497469,0.08725366,0.08722445,0.09570095,0.4616334,0.70933497,-0.115656845,0.0788899,-0.012162376,-0.25502908,0.09952789,-0.3248328,-0.0871189,-0.5702345,-0.31927356,0.6365249,0.52757394,0.32426995,-0.28559667,0.056501046,0.14965153,-0.14713357,0.19501083,-0.004965726,0.05443295,-0.1387026,-0.70840585,-0.10506822,0.48861367,-0.07992062,0.030167159,-0.04121197,-0.25759378,0.21388713,-0.15824264,0.05767907,-0.07146526,-0.8702571,-0.1656131,-0.5317817,-0.23576252,0.32789806,-0.17128736,0.13726336,0.23088966,0.13386534,-0.4410317,0.39755318,-0.14442451,0.7544006,-0.15867752,-0.08957036,-0.32362345,0.22336426,0.25000423,-0.22588758,-0.09510277,-0.11295687,0.0282881,-0.37272385,0.443318,0.06464506,-0.32947108,0.13461494,-0.021916721,-0.03897445,0.4506,-0.2636967,-0.19551963,0.064535186,0.036632862,-0.26034814,-0.26313207,-0.09657502,0.18765019,0.17082623,0.07452943,-0.18838236,-0.110370114,-0.064106695,0.56719834,0.033111334,0.3836432,0.54801214,0.09537331,-0.48702154,-0.06403579,0.33307636,0.60400057,0.07466239,-0.17935526,-0.46661323,-0.30200142,-0.3416547,0.17749259,-0.089830466,0.40286523,0.100445166,-0.2230694,0.7491839,0.22089754,1.2519238,0.01819296,-0.34967124,0.066230014,0.3416072,-0.039870262,-0.15832752,-0.5266115,0.7810025,0.42634046,-0.16308415,-0.18630773,-0.32245877,-0.0631741,0.1431145,-0.15611249,-0.11667544,-0.107960515,-0.7059681,-0.26232204,0.22900023,0.3376382,0.16404976,-0.18633384,0.04060767,0.3620599,-0.027917162,0.2876331,-0.44940138,-0.23009318,0.3206846,0.2082142,-0.05311752,0.06024859,-0.52132565,0.37453538,-0.4390359,-0.07576633,-0.18869102,0.110627085,-0.11719543,-0.3335291,0.25697014,-0.054188747,0.36704227,-0.32227215,-0.31644845,-0.28467134,0.54779387,-0.023444533,0.15453026,0.6626734,-0.27142507,0.0013833418,0.06412703,0.55046654,0.9310859,-0.29598114,0.09414067,0.20143351,-0.1947142,-0.6272427,0.34719118,-0.29672644,0.14813668,-0.028384045,-0.23652977,-0.6007786,0.1901368,0.1470383,-0.017991893,-0.013108939,-0.7663897,-0.16058691,0.45623094,-0.21108225,-0.15936248,-0.42354605,0.0041963086,0.4277857,-0.14079314,-0.4451081,0.12813997,0.33171403,-0.053322405,-0.4626217,-0.07482268,-0.33066365,0.20829701,0.113053784,-0.55527073,-0.17663312,0.0967851,-0.49472147,0.1619609,0.18351072,-0.3080482,0.0034329025,-0.317862,-0.104826376,1.1307744,-0.17785211,0.18007472,-0.2960259,-0.48644674,-0.97070175,-0.3288002,0.286609,0.34376848,0.015404712,-0.80537117,-0.08043942,-0.22667754,-0.15435304,-0.0057313293,-0.16462919,0.50886464,0.20084783,0.58487743,-0.07419771,-0.59506655,0.20106757,0.12862015,-0.02879234,-0.33308712,0.6409602,0.12272835,0.811031,0.0071454816,0.20208997,0.20805535,-0.46178627,-0.06107994,-0.1486339,-0.1664623,-0.5967696,-0.08169547 -348,0.3876429,-0.18664272,-0.5069942,0.02134613,-0.17535135,-0.10613557,-0.21562098,0.48356503,0.45176634,-0.22442818,-0.19536597,0.08726204,-0.111502126,0.40871271,-0.112401694,-0.6039013,-0.013224572,0.2479984,-0.50169015,0.8837276,-0.28531948,0.18447,-0.13432676,0.47638825,0.2545807,0.23529524,-0.0121126175,0.118360646,-0.081548944,-0.38927764,0.21377994,0.3614601,-0.66635776,0.35376278,-0.27999032,-0.2650374,-0.06589646,-0.4144182,-0.46459764,-0.98513633,0.49262273,-0.69557977,0.47460657,0.1085261,-0.36317137,0.0077195647,0.06123648,0.17687255,-0.11367352,-0.2709281,0.19763364,-0.25831622,-0.16151112,-0.2590078,0.09040487,-0.14649917,-0.6671292,-0.08550509,-0.31738418,0.061888464,-0.47975776,0.19620745,-0.5198525,-0.060672306,-0.21109769,0.65722936,-0.38475227,0.13231611,0.22042535,-0.14754918,0.2990718,-0.74593765,-0.41061804,-0.14620373,0.105115965,0.15511939,-0.38074446,0.50728637,0.17895801,0.39683214,0.04426463,-0.19420351,-0.29479483,-0.059556916,0.32182333,0.32273707,-0.32969353,-0.55923784,-0.121000245,0.04084518,0.22269113,0.17912841,0.11356827,-0.20216924,-0.09767525,-0.01707713,0.025830576,0.49908823,0.62406254,-0.089524716,-0.21547724,0.11616153,0.47254127,0.4653358,0.0037533469,-0.06687843,-0.016400779,-0.59415776,-0.2548065,-0.21921876,-0.40960932,0.59203357,-0.19000901,0.12305093,0.6288601,-0.16133715,-0.3131717,0.22515774,0.18475477,0.1489119,-0.39487204,-0.28459984,0.43181625,-0.54565364,0.26240417,-0.15368894,0.63277733,0.042845942,-0.5552539,0.2531211,-0.6266914,0.22776556,0.00716305,0.52889884,0.70633703,0.5351506,0.5168439,0.85522306,-0.4077935,0.046565533,0.05961385,-0.25923353,0.25849596,-0.27240112,0.0010204866,-0.4424059,-0.16716614,-0.14905277,-0.24297017,0.14931136,0.5043893,-0.6262547,-0.23036702,-0.0048522213,0.67120945,-0.13581382,0.16514191,0.87825453,1.111375,1.2728144,0.09897543,1.3431786,-0.2151255,-0.18001844,-0.01730145,0.0027805795,-0.90816087,0.2493097,0.22778085,-0.14702769,0.18264134,0.030011466,-0.03963745,0.50540173,-0.5790252,-0.18657218,-0.15943876,0.68969566,0.05407194,-0.28937933,-0.4903583,-0.3158043,-0.29314747,0.17225811,-0.17727455,0.41829398,-0.04143382,0.36083362,0.17216443,1.2949469,-0.23350382,0.06721553,0.16836683,0.37257642,0.25835568,-0.20908943,-0.15567572,0.21463276,0.103472464,0.2539833,-0.5207263,0.022166077,-0.3022641,-0.4905942,-0.1121327,-0.26606575,-0.024587473,0.0100284815,-0.12240854,-0.34796715,-0.2976258,-0.22129983,0.47137088,-2.3464637,-0.25000334,0.04014292,0.40191334,-0.18353179,-0.24867454,-0.0067770206,-0.4890668,0.52002394,0.14184743,0.62332016,-0.7353181,0.009338581,0.6411813,-0.90611655,-0.0024647897,-0.4623885,-0.19640256,0.14975391,0.44582468,0.089486875,0.024308534,-0.124876745,0.09431279,0.39179233,0.19690941,0.17502785,0.4149244,0.35276377,-0.39584392,0.26526362,-0.16215202,0.501654,-0.24718522,-0.2729199,0.32089064,-0.2653989,0.465957,-0.4349078,-0.057949882,0.6151262,-0.45446718,-0.82877064,-0.42539662,-0.047028914,1.2838943,0.044191938,-0.7242336,0.34370327,-0.7374316,-0.22097294,-0.10952,0.4941638,-0.18347114,-0.06713031,-0.7649578,-0.006371943,-0.17892505,0.074309126,0.08363937,-0.14492978,-0.5301145,0.84176505,0.121487334,0.3930348,0.57646513,0.057699926,-0.41720805,-0.5181011,-0.014344981,0.875266,0.72409,0.2361928,-0.38077897,-0.112915,-0.33613592,-0.27298287,-0.017790588,0.85000384,0.6080356,-0.28427,0.08798493,0.30275786,0.0017793855,0.029773759,-0.15268272,-0.40592638,-0.21194611,-0.0071705487,0.7667736,1.1604253,-0.2907014,0.20412137,0.15800689,0.22516412,0.08478913,-0.46802956,0.61358005,1.3918096,-0.1889627,-0.20245793,0.912092,0.30574408,-0.26077315,0.5291323,-0.36185944,-0.3743506,0.48646098,-0.0729465,-0.52032274,0.131336,-0.39345816,0.096811645,-0.6865015,0.5386416,-0.63437366,-0.39074376,-0.638004,-0.034919508,-2.2552419,0.2869151,-0.4424842,0.004715507,-0.37509468,-0.061413866,0.07085352,-0.59847534,-0.9134922,0.30610254,0.12172398,0.72073835,-0.373671,-0.047000412,-0.055119373,-0.4936486,-0.23312418,0.21956037,0.24042009,0.36942676,-0.0052910307,-0.4827259,-0.10305312,0.07544072,-0.44752738,0.07431816,-0.4340959,-0.67081255,-0.13780929,-0.6033333,-0.21748474,0.66903436,-0.091526344,-0.06900522,-0.28153366,-0.013549044,0.03405808,0.016707998,-0.09689255,0.25442603,0.13508298,-0.09666211,-0.110044464,0.04028302,0.18122555,-0.10635888,0.5145227,0.4231621,-0.21643823,0.25531504,0.5433839,0.78711534,-0.38195986,1.074835,0.6044227,-0.15989979,0.15801474,-0.18273316,-0.587924,-0.64083,-0.2758962,0.35699382,-0.3907049,-0.40465072,0.034384258,-0.4085298,-0.72077173,0.8228057,0.047542036,0.24814218,-0.03571022,0.11295342,0.42418802,-0.2754546,-0.016103717,-0.15696804,-0.15720378,-0.72069156,-0.14330162,-0.6177034,-0.49467343,0.08479946,0.9293979,-0.51113534,-0.0003110262,0.3728733,-0.2353089,0.007140412,0.14241098,-0.20339495,-0.031640146,0.51631814,0.23208846,-0.62122285,0.47991842,0.2241804,0.091537714,-0.43433154,0.34855586,0.5801944,-0.6080202,0.7569166,0.51683164,-0.17630202,-0.279047,-0.8315488,-0.16516624,0.021714078,-0.2718709,0.53879887,0.45577034,-0.7398981,0.49515527,0.34979752,-0.52079076,-0.76958644,0.4996083,-0.22673157,-0.35094362,-0.19655667,0.51547563,-0.06381333,0.08205526,0.003916172,0.56825066,-0.3214484,0.28438357,0.17231956,-0.23249221,-0.12763889,-0.25802666,-0.30730122,-1.050886,0.134999,-0.6205425,-0.2910679,0.4055789,-0.050552167,-0.2269532,0.046799514,0.6523853,0.4321039,-0.27006626,0.1558489,-0.15510324,-0.48277473,0.46830118,0.56407297,0.76960033,-0.40802157,0.557383,0.00067799364,-0.1445013,-0.04669763,0.0124380225,0.43931177,0.044056144,0.42646152,0.09556697,-0.09071673,-0.079165176,0.97943693,-0.065761775,0.23999701,0.014657784,-0.0003700073,0.15591563,0.09692733,0.54538786,-0.17468666,-0.6864463,0.14517961,-0.33028427,-0.058473267,0.5354395,0.27293116,0.049939614,-0.09696536,-0.54327095,-0.18557207,0.18853566,0.14725107,-1.654298,0.5648782,0.21223116,0.8727373,0.63655955,0.15337904,-0.01027463,0.77760816,0.011018847,0.035574943,0.44603646,0.05472485,-0.48104456,0.4261659,-0.83379513,0.41144282,0.08380491,0.12411002,0.035331782,-0.08857993,0.38534242,0.720973,-0.25696895,-0.16289026,-0.15119076,-0.3925991,0.26054832,-0.42616162,-0.0024684025,-0.5562157,-0.52645457,0.71229565,0.6383059,0.30678904,-0.24983913,0.14498848,0.05041673,-0.15603524,0.46794412,-0.078713425,-0.014022728,-0.10371364,-0.5631931,0.16572969,0.35749975,0.013668476,0.06837379,-0.26227495,-0.041496873,0.16727759,-0.27312994,-0.058236003,-0.20900416,-0.90886337,-0.088520035,-0.61371607,-0.23518173,0.45909324,-0.19011556,0.14478198,0.22106808,0.19950669,-0.26143557,0.32847688,-0.19569151,0.5827695,-0.04534988,-0.1587778,-0.12762672,0.30795905,0.056828592,-0.22743274,0.21185732,0.0049261954,0.12754324,-0.449165,0.6692415,0.013740425,-0.209599,-0.103401735,-0.13264059,-0.024806576,0.48871803,-0.28065968,-0.28307375,-0.22936867,-0.18792024,-0.17399652,-0.3625738,0.061696008,0.11295373,0.38533732,-0.044668134,-0.30551293,-0.17750655,-0.19449936,0.20982035,-0.026246913,0.24650995,0.30714655,0.07506873,-0.47070795,0.017657725,0.30555412,0.50486827,2.6409443e-06,-0.12003733,-0.30089098,-0.5007382,-0.50985914,0.15357842,-0.046614766,0.4276001,0.03203437,-0.1251167,0.6322666,0.14634898,1.0355453,0.048200544,-0.24795988,0.006697838,0.6796811,-0.3006089,-0.18907312,-0.30102545,0.8359076,0.39209753,-0.35816628,-0.016803902,-0.44122,0.38925013,0.2279206,-0.2655972,0.05986581,0.08021133,-0.53007257,-0.11609534,0.2189936,0.43461022,-0.10159469,-0.28643098,-0.2031564,0.3933831,0.21297397,0.1662382,-0.48722583,-0.30336016,0.49166033,0.14071155,0.20444734,0.0808223,-0.42013088,0.36059028,-0.47049987,0.30036908,-0.20157844,0.12322032,-0.3111809,-0.392979,0.2487029,-0.11158239,0.31255367,-0.4405897,-0.31897634,-0.21911496,0.11874855,0.20791326,0.053975448,0.5963918,-0.43375447,-0.14440924,0.25477946,0.5202706,1.0028943,-0.22185895,-0.082287826,0.23749647,-0.40412372,-0.54178846,0.45174375,-0.3007874,-0.08334536,-0.112574786,-0.27438393,-0.8673789,0.07578157,0.1131854,0.082469776,-0.095278755,-0.9050559,-0.22328869,0.081909984,-0.29640183,-0.10224851,-0.251107,-0.08306206,0.74865735,-0.112294436,-0.5794458,0.19336702,-0.0012663695,-0.22828855,-0.61996084,0.030023463,-0.41631475,0.25244263,-0.0026779014,-0.47193888,-0.20667087,0.23487212,-0.57193387,0.106504455,0.13666534,-0.3330256,-0.024548402,-0.3887351,0.043456852,0.88172597,-0.60424924,0.50470215,-0.0123265525,-0.40933686,-0.737028,-0.113928705,0.37764263,-0.039561264,0.08003687,-0.86980784,-0.05644393,-0.16971175,0.13350764,-0.11525807,-0.34559676,0.57474935,0.08406369,0.27508724,-0.26827157,-0.7509229,0.29883748,0.24007735,-0.024050327,-0.4742738,0.49101228,0.0015079471,0.7179482,0.06933732,0.02967745,0.12303138,-0.5509468,0.1289617,0.07881904,-0.19726755,-0.43189934,0.023863632 -349,0.2799495,-0.22101761,-0.5632244,-0.090169854,-0.28618804,-0.18961337,-0.2204801,0.38622993,0.12951103,-0.04724788,-0.20660962,-0.11066878,0.13826096,0.332903,-0.12636794,-0.4615941,-0.262901,0.1104493,-0.6596681,0.6132912,-0.5156348,0.1062896,0.01929852,0.4792257,0.25334686,0.43722084,0.14895001,-0.026791487,-0.07030252,-0.042538624,-0.14911686,0.29804403,-0.49076816,-0.14746693,-0.26235068,-0.394176,0.06482848,-0.52297735,-0.2795492,-0.70615333,0.3522227,-0.97381645,0.5025805,-0.020339876,-0.12154686,0.12485636,0.36120978,0.26432988,-0.40297765,-0.10032814,0.12333039,-0.027699862,-0.023994574,-0.23605146,-0.010565494,-0.24096155,-0.47145972,-0.05026507,-0.50778854,-0.27080482,-0.2474976,0.1341324,-0.34694523,0.097314365,-0.20904247,0.44213468,-0.41063753,-0.06892107,0.16963594,-0.2244788,0.32806158,-0.5972255,-0.021807143,-0.0662443,0.4960317,-0.16753305,-0.10669653,0.37049484,0.34631154,0.2952557,0.12894566,-0.23954234,-0.35023493,-0.1485311,-0.016779976,0.40195546,-0.21636678,-0.5294167,-0.16874684,0.10440813,0.13374522,0.41498134,-0.022248974,-0.03361569,0.02813716,-0.08766969,-0.14892046,0.4292457,0.43406913,-0.27049178,-0.40460292,0.22136497,0.5017726,0.33183286,-0.2868559,-0.1896449,0.0007221252,-0.5152403,-0.11951876,-0.020808471,-0.08175522,0.6090638,-0.07964543,0.24037018,0.7644253,-0.07363839,0.029834509,-0.11140644,-0.04428306,-0.27194992,-0.3780149,-0.18495162,0.14218703,-0.46964496,0.22187044,-0.16818318,0.5464146,0.028249476,-0.6208982,0.48480755,-0.60224974,0.12221086,0.015876105,0.47540018,0.5818594,0.22726324,0.5019875,0.55280656,-0.16727448,0.14571175,-0.08150844,-0.46336713,0.06405033,-0.12067044,0.17535487,-0.54059994,0.07157456,-0.017144416,0.0697767,0.14217773,0.3865695,-0.44436735,-0.027030254,0.36206594,0.7362334,-0.3347458,-0.033164356,0.6712502,1.0896496,0.947197,-0.035392437,1.0941546,0.11735999,-0.23409748,0.25335044,-0.2794105,-0.7576538,0.19322965,0.43440375,-0.19113244,0.33687702,-0.053485252,0.0010198696,0.37620422,-0.3356969,-0.0124646975,0.016131673,0.18916328,0.20563848,-0.008920239,-0.5630252,-0.21631159,-0.042320807,0.03395078,0.18470834,0.18478803,-0.15794775,0.26156497,-0.071373485,1.5536368,-0.09808683,0.11278153,0.19142997,0.6705891,0.28692725,-0.0295156,-0.16308282,0.40849558,0.3643478,0.111125596,-0.6102115,0.3083989,-0.36791855,-0.39224127,-0.03785393,-0.44161654,-0.16192618,0.14869213,-0.49460587,-0.06089555,-0.07353012,-0.2757454,0.24700773,-3.085756,-0.17903028,-0.15817031,0.29022428,-0.2561539,-0.20516798,-0.015393534,-0.50498706,0.24498908,0.3117669,0.5712789,-0.6416523,0.42856675,0.42280254,-0.49715632,-0.063603766,-0.6693858,-0.16735551,-0.020699484,0.5279208,-0.0028190443,-0.10502974,-0.06517802,0.34626052,0.6946059,0.17696452,0.1413741,0.41875857,0.34296554,0.12925184,0.6699147,-0.11543542,0.56759614,-0.29174858,-0.15939215,0.18666966,-0.17562042,0.19489472,-0.14061695,0.15265961,0.5617873,-0.5654809,-1.025813,-0.5235351,-0.24996032,0.9899737,-0.36479086,-0.31586075,0.2930842,-0.41114405,-0.16547091,-0.03538125,0.5666913,-0.22193244,0.09468552,-0.7170808,0.14675386,-0.22013395,0.18188599,0.078942455,-0.022078259,-0.43111163,0.6521336,0.022701478,0.6537624,0.29625273,0.13070132,-0.23363034,-0.36849195,0.12791212,0.69726837,0.23202784,-0.08261431,-0.17024218,-0.23998079,0.025686452,-0.10962306,0.044036668,0.48240587,0.63076836,0.006130866,0.2604691,0.23630312,-0.05804453,0.0425317,-0.08259074,-0.06153634,-0.06079781,0.11139796,0.4315894,0.7044017,-0.21106423,0.40564185,-0.24410285,0.44283018,-0.07943093,-0.46949816,0.59970385,0.61006916,-0.14317057,-0.03466715,0.62675625,0.56861573,-0.41591686,0.46486384,-0.5551251,-0.14236902,0.64405686,-0.20945333,-0.35381645,0.27890018,-0.27299136,0.12372417,-0.7656975,0.08094524,-0.19995157,-0.3160004,-0.38518152,-0.20442548,-3.589677,0.16764006,-0.17233774,-0.21242966,-0.3077951,-0.26188633,0.30700347,-0.7373549,-0.6963504,0.16780289,0.17422147,0.61606425,-0.11620875,0.09572685,-0.25463343,-0.27988246,-0.064238906,0.24591634,0.2730803,0.36675677,-0.110149756,-0.45514473,-0.08931506,-0.02179685,-0.5780389,0.10999192,-0.6263767,-0.3139806,-0.025370521,-0.6647693,-0.2010735,0.6021853,-0.2450966,-0.006232125,-0.23751402,0.025353815,-0.21461865,0.22255863,0.15361723,0.24170838,0.155206,0.15186831,0.27254924,-0.36541754,0.4717948,-0.025566015,0.33438468,0.08460718,0.07091992,0.14786133,0.43119717,0.6005753,-0.21811111,1.0934632,0.5441454,-0.1047193,0.20536889,-0.33729884,-0.24825236,-0.74177796,-0.3964302,-0.053760678,-0.38406724,-0.55909413,-0.063868314,-0.25255683,-0.7131413,0.7329544,-0.08749991,0.39288494,-0.008474575,0.30005607,0.39877334,-0.20745413,0.010224031,-0.0142499665,-0.15794598,-0.5816987,-0.18919554,-0.5934804,-0.53820825,-0.15053819,0.67180216,-0.25133103,0.0017372774,-0.06505454,-0.37807807,0.05610638,0.10920281,0.20827067,0.49420705,0.57201916,-0.0013526423,-0.57217973,0.4318466,-0.058596995,-0.23479298,-0.39332995,-0.03168098,0.48642674,-0.76271826,0.68188816,0.345216,0.08407533,-0.09639237,-0.49439627,-0.32698426,0.04668538,-0.10276383,0.51067615,0.27348694,-0.9294142,0.5693463,0.25305483,-0.3205728,-0.7030757,0.43054706,-0.12355473,-0.35323763,-0.25078565,0.30605975,0.037290633,-0.024825973,-0.09598706,0.19882457,-0.31157497,0.19095527,0.16307713,-0.045650218,0.29953837,-0.1582553,-0.08951122,-0.7024611,0.10404987,-0.43524432,-0.17531082,0.43097052,-0.018234462,-0.018696764,0.093941554,-0.061303575,0.2227784,-0.3379414,0.15671237,0.10758751,-0.26064733,0.15206024,0.4001289,0.34813064,-0.45792508,0.48343626,-0.0032303163,-0.23992153,0.21968272,-0.14523962,0.3545676,-0.20852473,0.3577941,-0.17174862,-0.26994243,0.415909,0.69011676,0.20303848,0.35749313,-0.015948722,0.05527773,0.39770794,-0.026455551,0.033648577,0.08267731,-0.53832144,0.06886741,-0.15571491,0.09186085,0.48502275,0.26541096,0.17869738,-0.014504467,-0.19843149,-0.018032888,0.24699365,-0.01672422,-1.0262333,0.3691821,0.13906579,0.8021057,0.508225,0.15347083,-0.273965,0.6684573,-0.39221933,0.04383201,0.50469035,0.1950341,-0.49955526,0.7754594,-0.49729726,0.55843115,-0.08403605,-0.13387762,0.07214207,0.026426481,0.29593083,0.7618758,-0.26373592,0.06302615,0.05361599,-0.13661753,-0.009460279,-0.26654598,-0.12232035,-0.3506926,-0.25089094,0.7327463,0.46059364,0.36374384,-0.16084753,-0.14270474,-0.05805134,-0.1785403,0.09925077,-0.039565686,0.039375424,0.13465817,-0.62124527,-0.13481216,0.5200495,0.19838156,0.2832511,-0.25739327,-0.41464907,0.19637212,-0.18903668,-0.08471494,0.02696672,-0.67265874,0.1340154,-0.2427498,-0.61916035,0.47505453,-0.30657294,0.17616318,0.14304794,-0.025990931,-0.22284304,0.3095445,0.10933064,0.77051556,-0.07874964,-0.08626352,-0.33369663,0.030034548,0.18291728,-0.16608839,-0.13994026,-0.5040816,0.11281668,-0.42072996,0.59582853,-0.0044471705,-0.4497574,0.023711175,-0.13622436,-0.019207165,0.6103553,0.012096056,-0.12218244,-0.1409467,-0.1034193,-0.31429988,-0.1569158,-0.25867826,0.25327972,0.26743,0.06746641,-0.12517011,-0.123959385,-0.14596272,0.7499055,-0.047357697,0.6268792,0.28278056,0.15464678,-0.04430912,-0.05992835,0.24059132,0.5689503,-0.031416096,-0.028249076,-0.47222218,-0.38872674,-0.20662867,0.10575043,-0.053862114,0.21571279,0.17706597,-0.18296294,0.8077939,-0.060056586,1.0468524,0.12867986,-0.41858527,0.085194774,0.4861861,-0.19082543,-0.029887626,-0.31454477,0.95615864,0.5219046,-0.15461151,-0.15580805,-0.2708509,0.049251895,0.19478825,-0.34721926,-0.03124025,-0.21113563,-0.44437966,-0.3062401,0.2019717,0.1841131,0.23171118,-0.08328766,0.099003434,0.06333395,0.094460726,0.4388762,-0.5468217,-0.27249646,0.32567477,0.120205335,-0.067790955,0.23669136,-0.47287676,0.46570283,-0.4992577,0.12053461,-0.6387252,0.21023308,-0.18420386,-0.3968027,0.034657028,-0.13359454,0.48418358,-0.23667665,-0.27884078,-0.14697734,0.36550888,0.0266571,0.10384822,0.6134887,-0.16319276,0.09782999,0.025469085,0.61588466,1.0409716,-0.32219052,-0.021804312,0.18720534,-0.2924902,-0.52819294,0.27490753,-0.35289028,-0.047681298,-0.030574856,-0.2771302,-0.5076715,0.10494547,0.12527001,-0.022883907,-0.10972514,-0.4967093,-0.1979274,0.2837712,-0.2728005,-0.17184344,-0.22568855,0.23136976,0.75324917,-0.24301922,-0.27632278,0.054750483,0.1856159,-0.09087928,-0.45001355,-0.014597939,-0.27448258,0.41573018,0.1639245,-0.35286373,-0.09915595,0.196282,-0.40660164,0.18920837,0.23950633,-0.3102451,0.057528336,-0.3433877,-0.122619696,1.195278,-0.21620813,-0.0022366047,-0.51761335,-0.5378149,-0.9199398,-0.38949618,0.34030333,0.010301812,0.1464959,-0.38683796,0.09803771,-0.095313735,-0.2950382,-0.02056302,-0.37907144,0.35215065,0.0795596,0.63703763,-0.23646137,-0.7444898,0.07212988,0.11529744,-0.033533864,-0.5570709,0.7093114,-0.03408989,0.73554426,0.055035226,-0.037417788,0.08280493,-0.26624745,-0.07089477,-0.36291203,-0.034860827,-0.8033716,-0.04121675 -350,0.5089712,-0.31802735,-0.81285536,-0.20682365,-0.29452607,0.07975662,-0.1473373,0.42172706,0.13501471,-0.65249616,-0.21798259,-0.2847972,0.05220417,0.67694336,-0.21712185,-0.7668041,-0.2597593,0.006675777,-0.7933204,0.6561151,-0.25887898,0.3726556,0.26541138,0.057820473,0.38751885,-0.06923194,0.3473206,-0.1534562,0.23960294,-0.2584112,-0.25109485,0.0607006,-0.62222636,0.35602877,-0.13707577,-0.5584494,-0.034295067,-0.46312657,-0.4076164,-0.6552139,0.269895,-0.9714027,0.72563213,0.12111172,-0.20074853,0.13387933,0.28955087,0.27715552,0.02326136,0.13082029,0.2170879,-0.00272756,-0.115934655,0.008931914,-0.47972992,-0.66956633,-0.5966206,-0.14012267,-0.70306814,-0.33159125,-0.20044747,0.009095442,-0.511053,0.11407154,-0.21393909,0.22439796,-0.494203,-0.19629388,0.18747951,-0.10352809,0.23024407,-0.60448587,-0.19591166,-0.18394302,0.23665819,-0.22497354,-0.13830763,0.25163922,0.24521047,0.45665914,0.014143915,-0.23653898,-0.08516416,-0.24949893,0.3344573,0.66848016,0.27825207,-0.45137805,-0.2591832,0.22696833,0.54334855,0.5287321,-0.016438575,-0.5679088,-0.20055428,-0.27489215,-0.19003941,0.6920268,0.38394654,-0.4140751,-0.29992402,0.52610755,0.4840655,0.33309102,-0.14853162,0.35076985,0.037164833,-0.4951659,-0.10176954,0.24721192,-0.13575892,0.5338282,-0.1221253,0.3015721,0.6558775,-0.35690418,0.043090414,-0.01637836,-0.11398752,-0.321167,-0.12325997,-0.20843767,0.19664723,-0.6763786,0.125656,-0.19692746,0.9740564,0.15428205,-0.71941084,0.24950868,-0.6266636,0.09042222,-0.16428037,0.7411204,0.6750451,0.37150052,0.19027595,0.9154637,-0.4577261,0.19600926,-0.27311823,-0.5537977,-0.22267394,-0.10671973,-0.22958437,-0.6291146,-0.03476964,-0.12603325,0.10132161,-0.11453269,0.7274886,-0.46377876,-0.1607779,-0.00037315759,0.80958056,-0.35599157,0.0009166869,0.77731586,0.8675379,1.175701,0.042630874,1.208012,0.11831212,-0.25416312,-0.10277519,0.04766869,-0.7391153,0.29848278,0.54800487,0.06646553,0.41807374,-0.067028545,0.24469486,0.030550253,-0.5167547,0.08045252,-0.14865208,0.34391123,-0.11817396,-0.077076904,-0.6222904,-0.18710397,-0.12378072,0.068394035,0.109081514,0.3399801,-0.15270065,0.43658936,0.08031785,1.4801277,-0.41164753,0.07708077,0.090351835,0.33137554,0.26276758,-0.17930788,-0.04520152,0.3466376,0.6228476,-0.00927477,-0.85679555,-0.08850505,-0.29851523,-0.38829133,-0.22095229,-0.49646062,-0.15948203,-0.18601255,-0.3818743,-0.11366271,0.04668224,-0.49740943,0.40910873,-2.4505863,-0.24345079,-0.30087128,0.1994449,-0.34711444,-0.32998216,-0.18550168,-0.64865214,0.3565489,0.33326617,0.5473697,-0.57681024,0.2942024,0.72427374,-0.5085642,-0.05259125,-0.70106757,-0.0641088,-0.13681696,0.33216354,-0.16102456,0.05522256,0.10318902,0.31691912,0.48353577,0.007343498,0.06874954,0.3404844,0.6639417,0.00024080276,0.6288882,-0.10542581,0.6941955,-0.40345404,-0.024268262,0.49479502,0.12604915,0.43996623,-0.30501482,0.1920001,0.5782924,-0.5734293,-0.7027149,-0.45288822,-0.54864204,1.1256211,-0.58832526,-0.3804819,0.32559454,0.11329207,-0.009009329,-0.08736748,0.44916105,-0.02431749,0.06978618,-0.7290934,0.12079305,-0.048468564,0.027617766,-0.09834595,-0.0566434,-0.35837862,0.6350061,-0.11360223,0.53464925,0.16812977,0.18999147,-0.14557022,-0.46903965,0.1772307,1.0866385,0.5432255,-0.039960314,-0.43261385,-0.23035145,-0.49335355,-0.07754011,-0.0026217157,0.3875429,0.80618286,-0.10269313,0.045443013,0.27368897,0.109699704,0.14462832,-0.18808016,-0.28713462,-0.034619704,-0.08162724,0.5690387,0.32978654,0.014631605,0.7313804,0.045041595,0.17019354,-0.301095,-0.58836645,0.36716473,0.8383,-0.08172953,-0.35807037,0.80143017,0.60011166,-0.12146699,0.5006595,-0.63712096,-0.37952605,0.63630116,-0.35188067,-0.5625674,0.51506203,-0.35946527,0.16921511,-1.0088692,0.104431204,-0.24024068,-0.38382876,-0.2523985,-0.107367344,-2.4417634,0.27485254,-0.22704378,-0.16429879,-0.14258566,-0.19218569,0.17259659,-0.42656282,-0.76915413,0.1629843,0.06948177,0.7128401,-0.111290194,0.08273411,-0.0706646,-0.19602905,-0.34861383,0.36362875,-0.120130904,0.38475922,-0.07729836,-0.40194806,-0.030381268,-0.07251071,-0.3255578,0.1177638,-0.37421626,-0.42183,-0.05867893,-0.51953846,-0.17542611,0.68213534,-0.20516528,-0.03924211,-0.009657302,0.009902882,0.13841489,0.103481166,0.072530314,0.17708446,0.07120922,-0.1266798,-0.16366754,-0.26133844,0.4661626,0.10521603,0.27469423,0.29694036,-0.16313982,0.22372168,0.45231116,0.44480088,-0.1702357,0.83543456,0.3175692,-0.21743408,0.17737347,-0.11657598,-0.26630542,-0.6994943,-0.2991741,-0.05853246,-0.46288407,-0.76052403,-0.09268414,-0.20689778,-0.8639101,0.5890058,0.23679328,0.5304054,-0.21861662,0.29185763,0.39277804,-0.057548415,0.032104794,0.03443941,-0.23054615,-0.550209,-0.3712389,-0.82863426,-0.4141241,0.21274537,1.3462348,-0.4319873,-0.16930579,-0.14443474,-0.33853987,0.20674363,-0.026514774,0.19655548,0.29669115,0.28807366,0.13139838,-0.58684254,0.6636208,-0.0145792635,-0.029795371,-0.41604242,0.13754381,0.7929523,-0.6297568,0.04186642,0.30811036,0.02668017,-0.12855572,-0.5367015,0.039261293,0.19425505,-0.31816968,0.35178262,0.1927453,-0.6500529,0.4092271,0.21537885,-0.22729798,-0.9369251,0.60843986,0.07882141,-0.16959228,0.09032758,0.42333964,0.17791034,-0.057100818,-0.41157445,0.29651618,-0.37893394,0.3899902,0.34129024,-0.0804283,0.27761707,-0.29246598,-0.44531262,-0.7727314,0.13607243,-0.5170458,-0.2592246,0.24311072,-0.017631533,0.095690794,0.3287449,-0.0062744725,0.4822672,-0.35033613,0.14083366,-0.00042222303,-0.31461117,0.6591506,0.3819462,0.37161618,-0.33179387,0.763602,0.17582594,-0.14865552,0.064825945,0.2493186,0.45051393,0.016683893,0.28412586,-0.013536015,-0.36390302,0.4240893,1.1368527,0.14923412,0.18434663,0.31700325,0.013011336,0.08002459,0.16170023,0.1272039,-0.09016326,-0.59825224,-0.2206133,-0.14767553,-0.012478124,0.54079145,0.18254758,0.3427514,-0.142396,-0.21157217,0.07268929,-0.005941467,-0.016185122,-1.1870773,0.10889853,0.08401413,0.65839,0.6030371,0.1227672,0.08644556,0.34005582,-0.41260484,0.025679938,0.22732696,0.09895923,-0.37884703,0.67839384,-0.47431853,0.6012075,-0.20373407,-0.02126903,0.19538894,0.0548194,0.39212912,1.0104923,-0.16299285,-0.0091793975,-0.04359258,-0.30409572,0.21695064,-0.4659565,0.004526344,-0.65526253,-0.47460088,0.7401404,0.4073005,0.274843,0.09236274,-0.074186176,0.005859765,-0.09306658,0.09500484,0.08752572,0.019350886,-0.04909217,-0.5186268,-0.12112133,0.59168166,0.05647708,0.090502314,-0.043199405,-0.19307798,0.2780042,-0.13619484,0.083043694,-0.013799516,-0.8408321,-0.16697152,-0.6072248,-0.60502714,0.083737165,-0.28732368,0.28485292,0.24283212,-0.14078422,-0.103037335,0.10247434,0.3843154,0.77187574,-0.19303657,-0.2143878,-0.40954277,0.11098025,0.21158639,-0.28693178,-0.057093356,-0.087908745,0.13659881,-0.86515695,0.59058297,-0.057623457,-0.41907704,0.06784095,-0.26040748,-0.17829247,0.6009707,-0.06932576,0.00900792,-0.051349856,-0.41201115,-0.32865298,-0.23073682,-0.2569082,0.19445838,0.12881361,-0.11873818,-0.11131742,0.050369024,0.036863707,0.26062036,-0.0029669187,0.35407087,0.25083694,0.09979921,-0.4606892,0.051043645,0.17706752,0.54148126,0.014944294,0.108548634,-0.045136616,-0.29722306,-0.3359788,0.12291931,-0.21831228,0.3246553,0.16794632,-0.27048934,0.73526025,0.14307469,1.0372028,0.12845224,-0.49321443,0.14649326,0.53370166,0.12035446,-0.2862302,-0.17182961,1.0820167,0.6508058,0.044513825,-0.30872703,-0.52190787,-0.23400389,0.22253461,-0.31943858,-0.16900617,0.33836517,-0.39525613,-0.29080993,0.3515061,0.021985842,0.18570599,-0.31161642,-0.03470006,0.20905614,0.024818247,0.3495545,-0.6742637,-0.27747074,0.05994372,0.11563821,0.05791438,0.082409926,-0.5655164,0.41394737,-0.79631007,0.22746111,-0.25103667,0.17358145,-0.092048906,-0.03446833,0.29314366,0.15017357,0.52904356,-0.39333865,-0.4594424,-0.20123562,0.74149036,-0.03239083,0.19503213,0.7952085,-0.3077367,0.15353036,-0.035328757,0.5336807,1.2995689,-0.11457232,0.043745376,0.39903033,-0.56576496,-0.7471064,0.34089032,-0.7893278,0.50738716,0.06965,-0.28214967,-0.33313182,0.33562323,0.23309174,0.09571753,0.11966608,-0.6235446,-0.14945564,0.34534088,-0.2861984,-0.28328478,-0.4555362,-0.05440725,0.6632714,-0.24952866,-0.32653582,0.06726727,0.20886122,-0.28193483,-0.78914547,0.027734486,0.0324126,0.15407392,0.012642189,-0.16348846,-0.027746003,0.03817972,-0.4658108,0.03146269,0.16259342,-0.26395184,0.08477233,-0.2674325,-0.039631642,1.0377537,-0.4432887,-0.39937228,-0.5868929,-0.55419594,-0.768554,-0.39381483,0.62205166,0.092442185,0.201277,-0.6074738,-0.0030019013,-0.111808494,0.12632363,0.034995016,-0.3021033,0.51365733,0.0943396,0.3355086,-0.06320444,-1.1704866,0.40891477,0.054628752,-0.36686116,-0.6499204,0.52456343,-0.078377254,0.7301786,0.23067011,-0.034917142,0.35183853,-0.6515842,0.25626156,-0.17140085,0.022899134,-0.8263118,0.19419384 -351,0.25476158,-0.1094178,-0.6950211,-0.13033952,-0.18008119,0.13865356,-0.2640089,0.37856397,0.03861251,-0.66222245,0.0089290785,-0.2752875,-0.14568739,0.17354834,-0.14796166,-0.57739884,-0.005749376,0.23050146,-0.3289893,0.76524967,-0.42612424,0.17126489,0.5229095,0.17236592,-0.041480195,0.0712705,0.34967616,-0.106648974,-0.17030473,-0.45338377,-0.083651714,0.08357238,-0.69535357,0.36279234,-0.16297327,-0.24595332,0.24289007,-0.28947583,-0.08132738,-0.7993788,0.048250783,-0.8998831,0.486509,0.0026749223,-0.37699497,0.3435718,0.2581862,0.048585277,-0.07991894,0.0144100385,0.21729481,-0.4378371,-0.3824931,-0.2501072,-0.39300922,-0.7024925,-0.5329239,-0.1834969,-0.48772526,-0.1616155,-0.34292403,0.15035138,-0.44675863,0.012061852,-0.47984496,0.34562492,-0.5040478,-0.08567283,0.052637067,-0.1417253,0.29688153,-0.65277725,-0.018688986,-0.154844,-0.12557875,0.2768691,-0.14261998,0.28646353,0.38209286,0.49518308,-0.0019297799,-0.18753637,-0.06064907,-0.3131381,0.1462835,0.37960157,-0.31303802,-0.22461021,-0.20540534,-0.18228577,0.50746703,0.6142877,0.053395066,-0.2158764,0.1748095,-0.18984117,-0.4524761,0.25482738,0.52424115,-0.24038915,0.026163762,0.3189884,0.15448594,0.08038718,-0.25293395,0.14018045,-0.12645476,-0.37023684,-0.12912683,0.33737707,-0.12030202,0.4726024,-0.036005937,0.073569804,0.69155437,-0.11734706,0.11219513,-0.07150431,-0.06597894,-0.052585647,-0.44087192,-0.3099467,0.46589446,-0.8378849,0.02642704,-0.5626773,0.6887424,-0.22865224,-0.7767949,0.306232,-0.4808217,0.06471505,-0.19212222,0.7464997,0.6249321,0.6770232,0.07108471,0.8714147,-0.4382198,-0.023328125,-0.22038521,-0.096960716,0.24000418,0.07177651,0.3099521,-0.35058674,0.03740074,0.007899329,-0.11336479,-0.20088488,0.39335904,-0.31471103,-0.31277558,0.2024525,0.80597514,-0.38236615,0.00036341944,0.49856755,1.2337013,0.8732662,0.12601475,1.1650809,0.32030615,-0.18758889,-0.1972572,0.32972163,-0.70546895,0.10000894,0.49745765,0.44814992,-0.022961637,0.068305105,-0.24529266,0.41611198,-0.22821842,-0.16476175,-0.21621476,0.23692967,-0.19935493,-0.14434786,-0.42196965,-0.1974958,0.16389383,-0.105519794,-0.0128831165,0.46659252,-0.11287755,0.49923047,0.25516894,1.3504158,-0.21428871,0.044997346,0.21192364,0.33784696,0.1529466,-0.014224701,0.23976481,0.45334098,0.3516558,-0.08766989,-0.5273281,0.2379746,-0.22833359,-0.6305646,-0.0595075,-0.48183298,-0.08098104,-0.24496908,-0.29584357,-0.20462257,-0.1077841,-0.4649888,0.26476616,-2.6084387,-0.0012758821,-0.2293734,0.14374171,-0.29121804,-0.18030906,0.02352115,-0.3891798,0.7319019,0.313113,0.44836316,-0.54488295,0.42120734,0.67432475,-0.1983332,0.046963964,-0.8729494,-0.21130145,-0.27244547,0.47761765,-0.095064424,-0.29117754,-0.016068816,0.021243116,0.70338774,0.24643324,0.32109246,0.37190065,0.40010038,-0.2690772,0.35802647,-0.020526528,0.61373895,-0.3377924,-0.18218513,0.13746552,-0.31422496,0.38074216,-0.25939694,0.15492527,0.4741834,-0.31711313,-0.41005465,-0.41754282,-0.33209717,1.1935071,-0.66718656,-0.674537,0.19230671,0.1739682,0.02702268,-0.13634093,0.5720983,-0.13630946,0.16370757,-0.5127535,-0.008071368,-0.09773055,0.3400537,-0.10531596,0.19872434,-0.39173308,0.8188023,-0.13847958,0.7253247,0.52165884,0.19276048,-0.3487948,-0.3193827,0.0015299817,0.8508244,0.40547776,0.012656915,-0.22295499,-0.12960567,-0.10682591,-0.22768807,0.14804296,0.636324,0.86955315,-0.08713106,0.064362206,0.33778176,-0.25807765,-0.095140256,-0.16506116,-0.63767415,-0.11106771,0.19347638,0.43925726,0.3744386,0.030793056,0.46490172,0.0345083,0.34519348,-0.31505296,-0.5193322,0.3071251,0.59480846,-0.23107804,-0.0723961,0.821707,0.7606707,-0.36575595,0.5546128,-0.64070517,-0.3798829,0.59269804,-0.08292795,-0.6967013,0.28836092,-0.23058385,-0.04497869,-0.7684538,0.14703505,-0.6146649,-0.5086475,-0.5188584,-0.05256459,-2.5876877,0.2542419,-0.20037991,-0.19350302,-0.31272623,-0.23784961,0.37867284,-0.41075826,-0.5397435,0.16325994,0.26017678,0.40245298,-0.018760601,-0.08287086,-0.40638718,-0.3399118,-0.010598862,0.31972995,-0.051395644,0.0010157848,-0.472236,-0.3980486,0.016055847,0.0025745258,-0.3024544,0.046197087,-0.49267352,-0.3940208,-0.14875247,-0.30911455,-0.22936516,0.6716244,-0.5358302,-0.013613584,-0.22328047,-0.014590498,-0.06712986,0.22493356,0.06406767,0.33201313,-0.2348241,-0.13808869,-0.0957944,-0.3967429,0.03272381,0.025698707,0.40667406,0.4067167,-0.21189575,0.045392554,0.5035663,0.490774,0.16695297,1.01713,0.20903015,-0.1207684,0.42437533,-0.14819334,-0.16285501,-0.73006153,-0.1197747,-0.14131683,-0.3673325,-0.40279898,0.08276337,-0.27710733,-0.6776485,0.67800933,0.34625217,0.08199886,-0.044913393,0.62772423,0.37760052,-0.11578863,0.009880826,-0.23924935,-0.16807795,-0.5592137,-0.30193663,-0.98067474,-0.36441913,0.14167584,0.8577635,-0.23048024,-0.23686959,0.10419971,-0.108173646,0.12610374,0.2140861,0.17677677,0.16397537,0.38723585,0.13630824,-0.7147978,0.6977388,0.15181883,0.0777772,-0.66740316,0.20760252,0.79122156,-0.7600562,0.41712785,0.52161574,-0.0007071197,-0.35983372,-0.8111717,-0.17499399,0.1081296,-0.194736,0.51836854,0.24613155,-1.0065136,0.51195866,0.30052865,-0.0014803087,-0.6985505,0.41459253,-0.25221604,-0.16856243,0.05829199,0.41237903,-0.021687618,0.14073516,0.015922084,0.08992093,-0.46506715,0.30415085,0.28091216,-0.19945748,0.46829474,-0.25588524,-0.14244054,-0.7800512,0.2777917,-0.5781681,-0.30946726,0.43053827,-0.19610412,-0.033299282,0.4771134,0.016611755,0.3895825,-0.21108705,0.2348814,-0.2482121,-0.38918567,0.63490707,0.47687754,0.43026552,-0.3610206,0.7769074,0.035869043,-0.3048377,-0.13083674,0.31109202,0.38954994,0.3294123,0.41208735,-0.32676023,-0.121078454,0.28616846,0.88902456,0.24285842,0.38007072,0.22141315,0.14853771,0.4230909,0.01963894,0.14602064,-0.05299555,-0.6150957,-0.20728463,-0.23312871,0.100161225,0.50341135,0.14932548,0.4997693,-0.07522278,0.1446571,0.025737813,0.17950737,0.0884361,-0.70990163,0.3313784,0.2241958,0.6108887,0.623506,0.06927816,-0.004722784,0.5511878,-0.38326526,0.20953031,0.3920842,0.18450217,-0.25621402,0.7916576,-0.697148,0.1511926,-0.19900943,0.15951277,0.084981196,0.02607719,0.4906238,1.0824673,-0.27179348,0.049664963,-0.099896275,-0.33925483,0.32330287,-0.21999459,0.06463956,-0.12883787,-0.6047004,0.45361838,0.14144722,0.33848774,-0.23470716,-0.16086744,0.22511458,-0.17336817,0.4371791,-0.003312568,0.027207606,-0.1444941,-0.28300187,-0.29921743,0.72431034,-0.11251631,0.17543583,0.03367095,-0.21168704,0.44149837,-0.09918946,-0.16718054,0.09099864,-0.6398772,0.25138658,-0.4049447,-0.64960426,0.46090436,-0.21787356,0.08442182,-0.006686432,0.0038060944,-0.11303956,0.016946608,0.28380224,0.44947073,-0.21365625,-0.22174436,-0.21599203,-0.20902438,7.0539616e-05,-0.37866628,-0.029908681,-0.016677383,0.10640836,-0.6993293,0.3601521,-0.4781185,-0.33094704,0.15727565,-0.14283516,-0.25767946,0.48995757,-0.094479404,-0.03751411,-0.10309147,-0.1525269,-0.29844382,-0.40614483,-0.15572406,0.23184407,-0.2803562,0.13484012,-0.21563756,-0.15185775,-0.00023208062,0.1643341,-0.0054317564,-0.008045803,0.34010413,0.22228368,-0.45746747,0.10031348,0.0056196055,0.40895247,-0.10428103,0.056030393,-0.16486281,-0.3508816,-0.28639254,0.10877827,-0.21686317,0.448447,0.09742426,-0.43177631,1.1401948,-0.13997042,0.8461825,0.049100194,-0.4386896,-0.13988197,0.5500126,-0.08080328,0.0143382205,-0.16533819,0.8281148,0.6706178,0.054727,0.008449872,-0.5149818,-0.17093657,0.5256259,-0.22224194,-0.2012664,-0.0013120522,-0.76284105,-0.066713594,0.1898063,0.36574867,0.07274269,-0.17337932,0.068345614,0.34328178,0.1970734,0.43243623,-0.55028564,0.08052619,0.23349774,0.1754273,-0.09392238,0.12769501,-0.3251996,0.23767602,-0.8106303,0.30719492,-0.52546984,-0.12966277,0.19294171,-0.1883566,0.06464921,-0.13619824,0.26203275,-0.12039578,-0.28526625,0.06357404,0.47063228,0.26789406,0.43583047,0.7520582,-0.20065916,0.14605549,0.04200073,0.5392572,1.3263569,-0.27443388,-0.27385107,0.15919496,-0.52829784,-0.9965935,0.17837518,-0.3621323,0.11378717,0.086969756,-0.5962482,-0.23755546,0.30687585,0.17985356,-0.38726756,0.08040962,-0.5132327,0.048086554,0.11898818,-0.30682537,-0.24927606,-0.33917335,0.23197965,0.82123655,-0.31774935,-0.19066758,-0.15743236,0.20444012,-0.4725883,-0.6930265,0.07357426,-0.46015653,0.34301963,0.12947495,-0.5209258,0.36616158,0.116821416,-0.60117227,0.17090903,0.12398253,-0.2146637,-0.08539203,-0.3058519,0.21969979,0.6540217,0.14091071,-0.44370928,-0.41985032,-0.73599,-0.5051055,-0.48089623,0.2387501,0.10864825,0.24522816,-0.52873784,0.088432826,-0.22178386,0.07486453,0.031113872,-0.4849328,0.41159964,0.2851101,0.48874307,-0.15369648,-0.83870906,0.16589251,-0.014458508,0.055259686,-0.4725987,0.5725243,-0.43252537,0.889514,0.1099622,0.0005075733,0.1784572,-0.66216296,0.38102254,-0.3709018,-0.30766448,-0.5827842,0.075113826 -352,0.30270267,-0.22076301,-0.6189473,0.14926556,-0.17274523,-0.18966845,-0.09590276,0.7959539,0.40552926,-0.19913363,-0.29734918,-0.12748644,-0.27541453,0.3970728,-0.07241086,-0.28980315,-0.38153383,0.31560233,-0.4212714,0.68298304,-0.12951788,0.20565715,-0.12247894,0.6605643,0.3843236,0.26793593,-0.26943463,0.15677586,-0.1166201,-0.31529796,0.12669301,0.41031557,-0.4728244,0.40231714,-0.25671688,-0.43502292,-0.2241638,-0.67856276,-0.5142509,-0.77147037,0.24770863,-0.790959,0.65192235,0.084886745,-0.33371258,0.21515858,-0.20305291,0.29214764,-0.098060176,-0.109171964,0.25643715,-0.052190423,-0.20220017,-0.34664375,-0.19484481,-0.08442042,-0.4006177,0.0641029,-0.18408492,0.02727561,-0.17834297,0.19680844,-0.13251123,-0.08759144,-0.17190008,0.624777,-0.47048873,0.09255152,0.021569718,-0.03528756,0.2754859,-0.7208342,-0.2884654,-0.19589068,0.05538894,-0.2654732,-0.33181608,0.17157844,0.06364829,0.3157216,-0.16742826,0.109820664,-0.5285181,0.09713211,0.11066727,0.513218,-0.35965988,-0.49089193,0.084746845,0.1867263,0.38207474,0.14922129,0.17104083,-0.4148222,-0.10203304,-0.26688078,0.1123267,0.33548945,0.5486258,0.13012102,-0.109762296,0.31072095,0.47567,0.4217588,-0.02630642,-0.048858978,-0.019726684,-0.49480146,-0.025907898,-0.25999492,-0.22429495,0.5755531,0.08255319,0.18189634,0.5308258,0.017910969,-0.17578329,0.23393509,0.2559988,0.121306755,-0.290284,-0.3605376,0.30848366,-0.14148639,0.29657242,0.09328227,0.48282972,-0.10626966,-0.8606348,0.3183192,-0.56649923,-0.03634771,0.0132066365,0.4072093,0.68479896,0.53219473,0.3948111,0.66986334,-0.26891333,0.117462896,0.08895446,-0.17435999,-0.1350691,-0.091905825,-0.3577898,-0.61960906,-0.21388903,-0.18317477,-0.45357442,0.3527437,0.36301047,-0.6265572,0.0004144013,0.1856519,0.6991911,-0.24124098,0.018109512,0.9163747,1.1578156,0.97683734,0.1009233,1.040815,0.05190422,-0.27917105,0.11276581,-0.28197667,-0.72021925,0.19688377,0.35673317,-0.75451267,0.36861467,0.13605925,0.2028995,0.37023354,-0.6134646,0.00044805408,-0.2181211,0.1268613,0.13748926,-0.25108463,-0.64757764,-0.29595095,-0.19406529,0.23889904,-0.20960769,0.33209544,-0.298194,0.20952332,0.051739026,1.625267,-0.1484901,-0.0783536,0.13041314,0.3384114,0.03093117,-0.31791544,-0.099038735,0.107467495,0.25284064,-0.11989101,-0.47728163,0.0048719915,-0.016481891,-0.46471724,-0.24044223,-0.041742682,-0.1638005,0.008424776,-0.32106647,-0.45334035,-0.18347962,-0.3899375,0.5565176,-2.59132,-0.029822985,-0.05196839,0.33755627,0.019497449,-0.46292764,0.026717972,-0.14367788,0.40979567,0.30898222,0.5118865,-0.5621885,0.09110691,0.4942804,-0.66669565,-0.1623046,-0.46798334,-0.03239942,0.19720729,0.30385393,-0.03161588,0.061345387,0.11203964,-0.20340152,0.3790105,-0.07015221,0.13551737,0.5832106,0.34821597,-0.19803487,0.18867114,-0.10097512,0.5630902,-0.26747185,-0.42267293,0.42185515,-0.22547965,0.2610256,-0.21860214,0.06621106,0.4726185,-0.48012704,-0.8196584,-0.55112606,-0.09079864,1.2175156,0.019074077,-0.5374434,0.469683,-0.5905503,-0.41570598,-0.09183719,0.5326061,-0.22538039,-0.17139752,-0.95652187,-0.16538826,-0.129013,0.24495402,-0.08616358,-0.21469721,-0.57774216,0.7442376,-0.022097915,0.28397712,0.6598114,0.20463257,-0.39000627,-0.5552582,0.11743001,0.9987712,0.5724441,0.19381489,-0.1714578,-0.038400866,-0.28158605,-0.029338788,0.19654219,0.62890166,0.52215594,-0.18197943,0.17837603,0.20515785,0.033242792,-0.039196488,-0.25749817,-0.15963969,-0.18630637,0.20398936,0.54398304,0.80827254,-0.14721712,0.58278954,-0.14582632,0.15486154,0.116367295,-0.2942496,0.33197927,1.0038058,-0.15795232,-0.508759,0.6181942,0.5794867,-0.25465012,0.40036505,-0.43190044,-0.057451874,0.2462533,-0.10477483,-0.4825533,0.27054948,-0.25428694,0.137073,-0.89508,0.32133502,-0.20381093,-0.83482516,-0.74573505,-0.022087798,-1.8708279,0.21439426,-0.33377305,-0.3973039,-0.14566013,-0.33303845,0.007344377,-0.6810832,-0.8494853,0.12639761,0.07450078,0.5056664,-0.10757003,0.08503419,0.21708632,-0.37124467,-0.046839394,0.18154056,0.21303454,0.34894764,0.023406547,-0.46814197,-0.34400672,0.025423557,-0.38653773,-0.1025156,-0.8039255,-0.33188498,-0.09943463,-0.70018375,-0.08163136,0.49373856,-0.49444956,-0.0467997,-0.30117166,-0.03309893,0.0049256743,0.13831834,0.030184459,0.15142366,0.22921613,-0.05346313,0.12741894,0.1076742,0.1370761,-0.00019754768,0.2718869,0.28967825,-0.2530299,0.41705623,0.39515296,0.9129421,-0.46902323,0.87496746,0.85025024,-0.24619141,0.072689146,-0.3493914,-0.26364493,-0.5387064,-0.2901848,0.1786824,-0.46474448,-0.52772367,-0.007877481,-0.29915985,-0.89551175,0.665531,-0.109972894,0.05285596,0.28978705,0.053867597,0.49439946,-0.19199203,0.013011667,-0.13756166,-0.04834137,-0.44696265,-0.31496114,-0.5211009,-0.39356047,-0.075319424,1.3975092,-0.0440032,0.20399356,0.43459326,-0.37037283,0.07989882,0.15303285,-0.18246107,0.07918112,0.4207944,0.0445681,-0.56403106,0.12194184,0.17237154,-0.10261308,-0.5626483,0.26022774,0.72434384,-0.51020753,0.67127144,0.07751302,-0.1347261,-0.21861973,-0.5821464,-0.19510281,-0.16112499,-0.2893228,0.5245315,0.47553486,-0.49811706,0.34202957,0.42412573,-0.26290748,-0.8985301,0.28712326,-0.06347017,-0.13115138,-0.047844447,0.27932057,-0.11181512,-0.09271226,0.031096166,0.52358985,-0.050747644,0.4055608,0.080615684,-0.24555309,-0.26136827,-0.35063475,0.030716557,-0.94248545,0.5017021,-0.22569835,-0.40872687,0.24896026,0.25550288,0.14862081,-0.055252276,0.34117502,0.41883516,-0.3269426,0.10983026,-0.3011067,-0.40926307,0.15401785,0.42873096,0.6111764,-0.38810858,0.42567787,0.0026372462,-0.17394291,-0.22865506,-0.08042766,0.5456252,-0.20678806,0.1742096,-0.012864068,-0.25436032,0.19405054,0.6548564,0.16487479,0.40173763,-0.23572822,-0.013203105,0.10199189,0.085073456,0.31546384,-0.16930383,-0.6588727,0.36997557,-0.345573,0.10847793,0.30302006,0.27710375,0.17191657,-0.31568474,-0.532195,-0.038974848,0.27487448,0.3540365,-1.3194425,0.42804036,0.14778784,0.8041746,0.5951282,0.24836175,0.18145049,0.7047471,-0.081322886,0.039450057,0.4379216,0.06171156,-0.56807494,0.30852705,-0.76840156,0.4749865,0.17341043,-0.008089364,0.21416697,-0.14015353,0.46177554,0.6917782,-0.22996917,-0.057888776,0.10114577,-0.26764667,-0.31835097,-0.36494908,0.06344317,-0.67690545,-0.47921228,0.8202387,0.66905785,0.2768576,-0.07485413,0.06855549,0.24263553,-0.03552719,0.28735158,0.08934732,0.07921406,0.07227193,-0.58435047,0.14820807,0.49070144,-0.098472275,-0.086786814,-0.15459765,-0.22593784,0.23153472,-0.08445184,-0.2563519,-0.10063998,-0.69373703,0.061310492,-0.5175457,-0.33065495,0.19097343,0.074567616,0.14450026,0.06058824,0.1340333,-0.2515617,0.58912647,0.15184547,0.9371437,0.0876853,-0.09577666,0.043260522,0.5308049,0.14573081,0.029528266,-0.11784413,-0.17945406,-0.1589956,-0.61573476,0.37587467,0.07217071,-0.46125436,0.11980514,-0.03607369,0.16137244,0.40850696,-0.13427147,-0.24405709,-0.072586045,-0.32826224,-0.24422567,-0.3935448,-0.2490286,0.31259048,0.33871153,-0.029287804,-0.14616136,-0.092346236,-0.14775512,0.42978683,-0.07927437,0.63862115,0.2994381,0.27081895,-0.35024983,-0.07528577,0.17701039,0.5274076,0.03239072,-0.072043344,-0.24045832,-0.30028296,-0.45330983,-0.047408592,-0.18839277,0.5011848,0.14660445,-0.16179048,0.68208826,0.19552186,1.3309797,0.004110202,-0.30171674,0.21561317,0.47605997,-0.20622799,-0.19732976,-0.22852746,0.9668209,0.59532535,-0.051672686,-0.01878149,-0.28788632,-0.07875742,0.2356712,-0.195738,-0.15341493,-0.08432339,-0.65081984,-0.15147603,0.29267743,0.29214102,-0.008675933,-0.11275707,0.16200522,0.2716751,-0.16970274,-0.008781677,-0.15363467,-0.102722704,0.39748782,0.23767479,-0.002400446,-0.11593536,-0.6314426,0.30879968,-0.50948185,0.0356257,-0.25421667,0.2052451,-0.35289168,-0.30751982,0.09691523,-0.054073382,0.3856233,-0.3559731,-0.122816466,-0.32778403,0.6241647,-0.17103049,0.0069992035,0.33717698,-0.40109196,0.20170085,-0.10761396,0.21545449,0.6483084,-0.36133313,-0.08394027,0.2589867,-0.12767771,-0.25058317,0.35106504,-0.25760418,-0.022993337,0.04421516,-0.07421805,-0.7033861,0.09005718,0.1214062,0.096605554,-0.3591244,-0.63032216,-0.07677375,0.30238757,-0.20031957,-0.024369448,-0.32612842,-0.17976953,0.6487926,-0.09596736,-0.70433533,0.1582695,0.074194446,-0.2770633,-0.23131022,0.105625644,-0.38056713,0.21632382,-0.12822986,-0.576424,-0.41820994,0.11784853,-0.34931335,-0.056243617,0.10445938,-0.34599385,0.021253377,-0.36732882,0.107814,1.035338,-0.24539714,0.5493891,-0.39745015,-0.60220987,-0.90197545,-0.27631247,0.5224079,0.22514208,-0.13186684,-0.9401415,0.08476186,-0.28811964,-0.20061472,-0.1141784,-0.13224584,0.48538175,0.19117396,0.54704773,-0.50656193,-0.8028841,0.47531638,0.27674404,-0.0742351,-0.5348644,0.5604002,0.38366356,0.9139946,-0.07520707,0.21150765,0.11969022,-0.61884993,0.01537385,0.12798546,-0.22281972,-0.5429152,0.06150139 -353,0.2691832,-0.17276919,-0.3753003,-0.19889002,-0.1889699,0.17313732,-0.13141353,0.52076256,0.43970227,-0.4937714,-0.26271105,-0.08520921,0.08969369,0.28722167,-0.086360715,-0.6134738,-0.050489243,0.1239251,-0.42772707,0.53092474,-0.40023065,0.14574613,-0.12377206,0.37289655,0.20015757,0.1345947,0.00073530275,-0.100711636,0.061113477,-0.22400956,-0.024822697,0.39947197,-0.52347946,0.279748,-0.079472534,-0.34819257,-0.10991073,-0.50499374,-0.45707044,-0.6977353,0.3279189,-0.8100643,0.56493455,-0.015572146,-0.1786354,0.33002976,0.06771883,0.1910045,-0.070318595,-0.05707547,0.05557582,-0.21054675,-0.1809447,-0.029090896,-0.36161658,-0.388684,-0.6373505,-0.019845432,-0.45558187,-0.18208474,-0.45418707,0.10164002,-0.34393203,-0.14974844,-0.07295685,0.6336834,-0.41066512,0.08040773,0.22742124,-0.14225005,0.257586,-0.6751733,-0.12010608,-0.10146052,0.26527753,-0.24919884,-0.2761349,0.16836573,0.3178825,0.42417476,0.07739275,-0.06323197,-0.25579906,-0.11454066,0.4633359,0.4453701,-0.045643043,-0.45943534,-0.15560909,0.02627434,0.14415763,0.28195587,0.26444125,-0.15876476,-0.19550066,0.0567876,-0.24793105,0.6576748,0.35198328,-0.24413711,-0.48670164,0.30976978,0.51963115,0.2761293,-0.014605552,0.20816775,0.029781142,-0.51606864,-0.1871587,0.036895756,-0.2866542,0.3642011,-0.28046075,0.26276016,0.5529627,-0.25378114,0.07273633,0.135906,-0.027513603,-0.039697636,-0.42080918,-0.044802908,0.13819662,-0.6122875,0.28300488,-0.16256765,0.87572354,0.08015712,-0.6310766,0.29071602,-0.54719836,0.23582117,-0.069852725,0.61547136,0.77920026,0.25095233,0.2939533,0.72228676,-0.33329108,-0.002197494,-0.1214196,-0.42434236,-0.1372103,-0.18628453,-0.05018094,-0.4441572,-0.09988254,0.06363125,0.064192526,0.02924884,0.45272923,-0.56348485,-0.06433756,0.081672646,0.8239121,-0.20981842,-0.18898034,0.8696556,1.0059527,0.984698,0.08532142,1.3335367,-0.020711342,-0.08532754,0.09708891,-0.26057985,-0.7106018,0.24757718,0.29947478,-0.021393022,0.22350593,0.12924115,0.055211365,0.37173584,-0.50778127,-0.0074377707,-0.15529196,0.2506237,0.090367265,-0.22125228,-0.3978397,-0.18531425,-0.12451992,0.013301303,0.1762764,0.107194334,-0.14014833,0.38545752,0.10852214,1.0356232,-0.23059995,0.10199565,0.040136855,0.35729852,0.20203006,-0.20947307,-0.017682523,0.2567438,0.4544679,-0.007942383,-0.728995,0.14814857,-0.16696762,-0.29880312,-0.19535506,-0.39725447,-0.15149473,0.08051722,-0.24930249,-0.16426305,-0.25077417,-0.49777457,0.52906907,-2.808218,-0.23596977,-0.09044865,0.25008163,-0.12648691,-0.2541671,-0.05647242,-0.43679777,0.34990963,0.30180383,0.4681411,-0.5388026,0.3658111,0.615402,-0.57747525,-0.037114296,-0.73801136,-0.17759915,0.002994309,0.29297456,0.10376629,-0.0023170311,-0.13822763,0.01598542,0.54677826,0.1305083,0.18099512,0.4376109,0.2939587,-0.19541466,0.43202806,-0.18429695,0.5729096,-0.11007013,-0.18642752,0.31042424,-0.27823743,0.36331055,-0.3201336,0.09683573,0.48141214,-0.32832918,-0.7140084,-0.7131087,-0.5854236,1.2930351,-0.15967105,-0.39971387,0.41825798,-0.50918573,-0.27318284,-0.1449495,0.7097993,-0.1236175,-0.13617267,-0.7346421,0.074225694,-0.10649049,0.028970562,-0.059576362,-0.050343677,-0.4605308,0.7287748,-0.1199008,0.41360763,0.27110085,0.21915185,-0.23116489,-0.30848962,0.02163309,0.8779389,0.323006,0.23505391,-0.3413409,-0.18239777,-0.4822085,-0.08126195,0.0076638856,0.7094369,0.6096054,-0.055855066,0.16805567,0.30651182,0.061389077,0.11526683,-0.16661541,-0.19785126,-0.17240264,0.010127445,0.5117507,0.37359908,-0.21726836,0.4501698,-0.018008582,0.023174947,-0.19626725,-0.46917453,0.3898379,0.85412675,-0.2579871,-0.3028557,0.8010931,0.40399337,-0.22916333,0.38927105,-0.47231603,-0.18334071,0.54110074,-0.20886733,-0.51381767,0.081899814,-0.3607756,0.07533448,-0.9196238,0.24012887,-0.438957,-0.89411443,-0.32117182,0.009322226,-3.4899614,0.18527997,-0.26653063,-0.1317804,-0.35224602,-0.21947797,0.22026062,-0.32751593,-0.7052676,0.12539782,0.12016409,0.6682873,-0.24354093,-0.01573056,-0.1825528,-0.1920038,-0.2783458,0.13478947,0.04494901,0.31272492,-0.13599227,-0.2503177,0.02488161,-0.0033948321,-0.3277866,0.03860389,-0.46062288,-0.46284366,-0.02949071,-0.56551266,-0.18960948,0.65291303,-0.42182776,0.014104978,-0.36440822,0.06300821,-0.057523478,0.39586115,-0.08087924,0.19518328,0.115128435,-0.07591544,-0.14137019,-0.16685553,0.46098828,-0.027846724,0.3845601,0.43889514,-0.2147507,0.26487538,0.43465266,0.58560663,-0.0442856,1.0592369,0.4552718,-0.17010872,0.3010404,-0.16749436,-0.36293006,-0.53379804,-0.2590002,0.21667518,-0.48116744,-0.5583448,-0.2011435,-0.23588897,-0.8172743,0.41251794,0.049977437,0.44822812,-0.0041049547,0.15993927,0.47534677,-0.034939535,-0.00085357827,0.015304089,-0.18199383,-0.52017236,-0.3215362,-0.6576497,-0.37795487,0.13355936,0.8618179,-0.2624105,0.11940917,0.04285829,-0.41076735,-0.0458521,0.31222224,0.055634636,-0.019130426,0.435766,-0.04522301,-0.51502043,0.39412746,0.014690901,-0.20070733,-0.682348,0.14861052,0.61726326,-0.5875619,0.7457617,0.27292806,-0.02870331,-0.22730213,-0.45349693,-0.1864245,-0.24818261,-0.286312,0.40785122,0.32047972,-0.90798396,0.39917815,0.30556354,-0.022483448,-0.81282943,0.4738914,-0.10781319,0.018829936,0.008002485,0.3817579,0.2081105,0.09670683,0.06138298,0.22004934,-0.24493949,0.45400307,-0.021398028,-0.11224624,0.3173902,-0.083818056,-0.1393181,-0.7345913,-0.16799326,-0.64915246,-0.1397906,0.17912483,0.05459286,0.17063236,0.23443031,0.16011535,0.49020576,-0.10852852,0.15659478,0.05756257,-0.43612626,0.30948249,0.49663273,0.43399975,-0.31892627,0.63531464,0.1235893,-0.042167082,0.088634856,0.21924748,0.45845696,-0.036855143,0.5643876,0.014069587,-0.2668958,0.16038205,1.0459869,0.08980394,0.43136334,0.047480542,0.07349142,0.34678006,0.047423493,0.24668585,-0.114369996,-0.5916403,-0.018835843,-0.42870435,0.17692263,0.37833512,0.25796878,0.2755603,-0.0786491,-0.31938878,-0.03957908,0.22161533,0.08175179,-1.1235696,0.16233923,0.24740952,0.98090744,0.50163394,0.015568882,0.049025044,0.51445645,-0.027730873,0.12818046,0.4737154,0.12808669,-0.5461307,0.6327589,-0.7329591,0.5310903,-0.12810804,-0.09346012,0.10031066,-0.061743062,0.38185576,0.8575689,-0.26122764,-0.05645975,-0.018973842,-0.23120558,0.25649083,-0.5138084,0.062267322,-0.5440431,-0.17240427,0.6957515,0.6428923,0.31021246,-0.25632766,0.0121086165,0.09312538,-0.07334735,0.10463613,-0.03081317,-0.083071746,-0.11229553,-0.6806565,-0.075820304,0.38951755,-0.029957464,0.21143906,0.1139374,-0.19548805,0.20451386,-0.14505354,-0.15441193,-0.15403509,-0.60226023,-0.17184341,-0.20159447,-0.58958507,0.38560852,-0.31072113,0.1509258,0.2760562,0.0619926,-0.18708992,0.25553933,0.015439372,0.6842873,0.035382003,-0.029898183,-0.39355373,0.15597163,0.19316812,-0.20441294,-0.075613044,-0.1990143,-0.03207175,-0.62881064,0.31457523,-0.14098251,-0.45257068,0.2286704,-0.098131716,0.009045641,0.48872527,-0.064643346,0.016576363,0.05483977,-0.3637937,-0.24630344,-0.08719621,-0.073902994,0.2743559,0.10478143,-0.029341787,-0.18722296,-0.16792254,-0.12617038,0.07987986,-0.009418495,0.36188218,0.3240103,0.07476582,-0.21987449,-0.25721407,0.27812287,0.520829,0.037897702,-0.09152516,-0.08024782,-0.42368403,-0.28912652,0.19212835,0.04001023,0.39187065,0.053818136,-0.36965835,0.5758706,0.13717702,0.9437507,0.10884452,-0.31975922,0.120553575,0.42423105,0.053595472,-0.12725203,-0.32415178,0.84457797,0.3241139,-0.04534048,-0.08760601,-0.4014542,0.12517555,0.2578716,-0.08321703,-0.08534371,-0.030200884,-0.6579377,-0.14803106,0.33359453,0.22083616,0.14206715,0.020222805,0.0032836497,0.21764721,-0.08307821,0.38254324,-0.5154004,-0.15169556,0.29492828,0.20475936,0.10920326,0.11412374,-0.418113,0.30087543,-0.6032793,0.030159721,-0.087815665,0.11785654,-0.4361247,-0.19615488,0.33844018,0.049947213,0.54543465,-0.18770508,-0.43239787,-0.2847713,0.38917243,0.0110458685,0.14874427,0.5328035,-0.20703556,0.055173073,0.115276895,0.45827422,1.030858,-0.06684029,0.12721686,0.2706978,-0.35446683,-0.5952681,0.33268282,-0.4686557,0.29616427,0.06739005,-0.19546175,-0.3340524,0.19592296,0.19508588,0.0906406,0.2582818,-0.47138146,-0.32614592,0.06473134,-0.23372996,-0.12900719,-0.2433691,0.036238447,0.5876713,-0.30263144,-0.23921831,0.063457824,0.29135546,-0.25523707,-0.51842815,0.020829797,-0.12054909,0.19313234,-0.16247547,-0.4370668,-0.08213994,-0.03949993,-0.48886415,0.045878574,0.084379174,-0.29198512,0.10484606,-0.20386969,-0.07271165,0.7944836,-0.34823337,0.15529136,-0.45062867,-0.5535787,-0.7068949,-0.24162574,0.3268983,0.17861392,-0.07286513,-0.40737367,-0.023050815,-0.059699148,-0.022458896,0.14627516,-0.48493996,0.4635227,0.110706836,0.43142948,-0.0674377,-0.8170635,0.20132725,0.15482864,-0.014587606,-0.6972613,0.47209564,-0.08820506,0.72246003,0.14641432,0.0877069,-0.0010185441,-0.5267119,-0.043663505,-0.1835746,-0.15809543,-0.61997455,0.11229187 -354,0.39751598,-0.1600375,-0.6400139,-0.04177462,-0.2530757,0.053641293,-0.17072906,0.36214575,0.33338922,-0.22676589,-0.060686965,-0.1827576,0.040513378,0.35857224,-0.03200791,-0.48862144,-0.010878171,0.23909427,-0.628382,0.56782496,-0.32652742,0.2840472,-0.14502707,0.48763004,0.07592062,0.19107877,-0.18056385,-0.003413226,0.014644482,-0.024331136,-0.07143942,0.48625913,-0.5362133,-0.025489245,-0.22855508,-0.17845652,0.0004368041,-0.44119206,-0.5125025,-0.8350502,0.39237228,-0.91849846,0.65307415,0.23169294,-0.43046004,0.11547833,0.051171023,0.3492318,-0.3129273,0.054693986,0.18739091,-0.026078293,-0.026823657,-0.18392824,-0.40098077,-0.22097836,-0.5212184,0.012841708,-0.47408465,-0.069791675,-0.24298766,0.21934463,-0.2535975,-0.11739242,-0.15355322,0.14041004,-0.41184136,0.2871542,0.36268267,-0.15991649,0.28928095,-0.46367663,-0.08126465,-0.14896424,0.26210222,-0.14384802,-0.3507438,0.2044693,0.2771728,0.55094445,-0.19821604,-0.17022543,-0.22045423,0.081631,-0.034645844,0.55801046,-0.28977615,-0.19872217,-0.22563374,-0.024853025,0.31507733,0.312793,0.01717638,-0.40383294,-0.102288984,-0.1795368,0.04254621,0.24137671,0.5264455,-0.22539772,-0.32995683,0.41070175,0.47531933,0.36866325,-0.015577625,0.118809454,0.15897064,-0.59946936,-0.17471822,0.027258087,-0.05655893,0.59834594,-0.01767858,0.15652888,0.59799576,-0.0068413443,-0.07197748,-0.049249373,0.16054949,0.01436363,-0.43432283,-0.16069439,0.14784154,-0.38150868,0.1802081,-0.02528274,0.52531236,0.104235575,-0.6290489,0.39423022,-0.62171525,0.2030162,-0.07070099,0.574875,0.843706,0.42030635,0.26918402,0.81794316,-0.38107467,0.13958342,-0.08111609,-0.2524126,0.23934652,-0.15434395,-0.020527413,-0.50140315,-0.0046642805,0.0053682327,-0.2432704,0.23961322,0.48273137,-0.5551835,-0.17038263,0.121626295,0.789526,-0.23943423,-0.03281147,0.5611395,0.9148588,0.71797216,0.04520338,1.2244397,0.3828688,-0.11646778,0.29676118,-0.24549642,-0.9714513,0.20208989,0.20933323,-0.34596187,0.3343316,0.27311093,-0.18859246,0.4731668,-0.4121273,-0.028894093,-0.20117,0.10757399,-0.07109659,-0.239493,-0.45167834,-0.18237938,-0.10835371,0.11759359,-0.021787567,0.25258753,-0.33106375,0.14922956,0.021561285,1.8364033,-0.09265167,0.110990785,0.08540412,0.37086567,0.3724367,-0.24135944,-0.2506126,0.5164931,0.3167561,0.01801153,-0.5068527,0.17104223,-0.18589592,-0.28193036,-0.14461477,-0.21550938,-0.032511555,-0.016359976,-0.54664904,-0.16047081,-0.08862511,-0.1900738,0.52815515,-2.6693037,-0.2306178,0.03558034,0.4812507,-0.29508922,-0.37982115,-0.33736846,-0.2908586,0.3579481,0.20459142,0.4196196,-0.65333575,0.21309425,0.41481653,-0.5879361,-0.1048635,-0.5666139,-0.107864454,0.034692638,0.28676122,-0.076427326,-0.14303191,-0.055103917,0.26135314,0.34381407,0.04555176,0.05550931,0.37722185,0.51719683,-0.030378733,0.29207686,-0.15771897,0.54184324,-0.27209002,-0.3672574,0.34858972,-0.16655353,0.44677585,-0.07852447,0.09152556,0.42627048,-0.45312157,-0.769916,-0.5817588,-0.15827772,0.9845422,-0.3876973,-0.43402693,0.32912943,-0.67062336,-0.22354415,0.040738594,0.6001233,-0.016573396,-0.07965224,-0.86541885,-0.10810753,-0.048321757,0.41740936,0.04256287,-0.045841813,-0.2006811,0.52871984,-0.074160695,0.31521717,0.3041227,0.19420527,-0.20827569,-0.56769603,0.039676983,0.78926915,0.3776687,0.15082748,-0.25565836,-0.29211277,-0.3476756,-0.07020133,-0.0014886548,0.56886864,0.69951344,-0.17566638,0.13071124,0.22825268,0.042644806,-0.073123716,-0.15229057,-0.27382314,-0.06267798,0.05781453,0.4575192,0.84022856,-0.2781684,0.3377718,-0.026131796,0.18877146,-0.10564846,-0.5577316,0.49409813,0.9362391,-0.1934267,-0.22995064,0.82827157,0.33278927,-0.40063772,0.4475911,-0.6884421,-0.28622684,0.44232175,-0.067176946,-0.40052056,0.38990498,-0.3085094,0.12760472,-0.8443102,0.29540986,-0.036536593,-0.39895126,-0.44627836,0.057064194,-2.9283922,0.22820783,-0.23185669,-0.029036496,-0.111036785,-0.08611948,0.3098362,-0.45985508,-0.64342266,0.17589046,0.04229337,0.6125882,-0.16780986,0.08201055,-0.1664159,-0.3432889,-0.18035546,0.15499462,0.28923044,0.4196231,-0.11277835,-0.48138514,-0.2937127,-0.02437513,-0.2857724,0.034568142,-0.8108748,-0.4710216,-0.19728486,-0.70085686,0.054741126,0.6277823,-0.34136373,-0.10295969,-0.27108186,0.073801994,-0.09230667,0.19813594,0.28840497,0.22149444,0.050515838,-0.09736727,-0.19534738,-0.23348461,0.25123295,0.08031767,0.13128544,0.3887406,-0.053873863,0.21287577,0.45651874,0.6285305,-0.44317648,0.74469954,0.6509136,-0.13432114,0.23176892,-0.18153633,-0.19629061,-0.4123519,-0.20666982,-0.16993225,-0.46344826,-0.41559377,-0.09063268,-0.4207521,-0.82367134,0.46626166,-0.12447219,0.26255623,0.07110641,0.09613179,0.56574106,-0.18821546,-0.047423277,-0.0906465,-0.16214824,-0.553038,-0.39051962,-0.4023145,-0.43654588,0.44439176,1.0813105,-0.31736168,0.121189184,0.20802096,-0.2652478,-0.16567591,0.020107267,0.003758984,0.16492335,0.61757594,0.11209696,-0.5091634,0.36515445,-0.025603235,-0.27187723,-0.67179614,0.25671402,0.56005013,-0.7046818,0.68094665,0.2017822,0.11604411,-0.08775103,-0.598575,-0.33124432,0.12616552,-0.21804926,0.386514,0.27618152,-0.78255,0.30398688,0.36874765,-0.36069474,-0.66858095,0.59863746,-0.11424001,-0.38334665,-0.08411165,0.3717049,-0.037981246,0.14561008,-0.12123503,0.3476422,-0.30108237,0.22918664,0.32227185,-0.22045732,0.17969958,-0.34728152,-0.084188096,-0.73329735,0.19832115,-0.3925286,-0.40262643,0.42952892,-0.023526916,0.026181826,0.04387332,0.24219052,0.45348892,-0.4151763,0.109924994,-0.13169043,-0.2702014,0.29164585,0.47132364,0.6539548,-0.41135213,0.5372255,-0.09299653,-0.22900875,0.08672059,0.1438092,0.44924846,-0.09852069,0.3785362,-0.20891131,-0.086271115,0.17017272,0.8110839,-0.025659472,0.29400212,0.078128375,0.04065356,0.2191782,0.08748375,-0.014527374,-0.07091809,-0.5619452,0.011853869,-0.2586093,0.25637332,0.4155698,0.22803457,0.19281837,-0.15864016,-0.33618885,0.09270941,0.1800383,0.17911008,-1.1461092,0.229764,0.19692448,0.6803392,0.3987523,0.13584764,-0.036052566,0.5490543,-0.16772287,0.17922702,0.4208943,-0.211877,-0.52885354,0.40228203,-0.61974055,0.5316466,0.023066742,0.025922025,0.303052,0.18197468,0.49045292,0.83002514,-0.10455004,-0.035252813,0.160452,-0.25742933,0.0041094595,-0.23842917,0.038273096,-0.73210543,-0.4129384,0.59207207,0.6150649,0.2621752,-0.3090165,-0.024467712,0.05343039,-0.18839452,0.12663794,-0.00044802364,0.1424632,-0.057553478,-0.6554031,-0.05105578,0.4838574,0.07312251,0.014714007,-0.0696715,-0.1231129,0.22060432,-0.3741259,0.093572445,-0.14900969,-0.91010714,-0.09301804,-0.66770357,-0.51637524,0.3965713,0.0050203605,0.18207444,0.20856152,0.0597185,-0.40014586,0.8091188,-0.16205457,0.99006903,0.022980882,-0.22635028,-0.32580763,0.4517366,0.19224116,-0.1342641,-0.060385134,-0.30009255,0.10091122,-0.6291217,0.5814619,-0.021944676,-0.30281687,0.007652868,-0.13369325,0.11520473,0.5938784,-0.072281525,-0.27313206,-0.0822569,-0.29218867,-0.5779866,-0.23732397,-0.12962803,0.23576859,0.31534353,-0.051613748,-0.11161324,-0.12539104,-0.13006714,0.33105418,0.05786091,0.3847887,0.52162915,0.1955348,-0.14593248,0.08776188,0.3347406,0.6540928,-0.028844109,0.0062525272,-0.16369537,-0.32270542,-0.50451285,0.21628109,-0.118392654,0.4032528,0.1487405,-0.21331121,0.8475546,0.20532739,1.0207733,0.0037299267,-0.26992306,0.17090991,0.58047587,-0.060471892,-0.18443155,-0.4207751,0.90714633,0.6680628,0.03006496,-0.08929966,-0.21261434,-0.121478006,0.16871384,-0.23564382,0.03914376,-0.019076701,-0.73819005,-0.12582298,0.16663513,0.27245894,0.21449389,-0.12637839,0.212902,0.07691832,-0.05597961,0.06951722,-0.46241924,-0.18883857,0.31368712,0.33273628,-0.011658958,0.20817111,-0.5157007,0.42425916,-0.43455312,-0.00010515536,-0.40554836,0.15691577,-0.12567401,-0.3077266,0.076305404,-0.15203094,0.3094583,-0.5263237,-0.090792336,-0.29927492,0.429558,0.16388896,0.10690957,0.59253514,-0.24553905,-0.043428637,-0.032006506,0.51593673,0.88633305,-0.36954626,-0.05550188,0.4001169,-0.2654779,-0.7464486,0.40490004,-0.45901605,0.25219616,-0.05587239,-0.2591939,-0.628331,0.22605798,0.035121877,0.019356413,-0.14224166,-0.62583625,-0.02239785,0.1364299,-0.03168542,-0.15510271,-0.30345675,0.0925812,0.6658557,-0.05020498,-0.343119,0.27540258,0.12147043,-0.26959226,-0.48931232,0.098960534,-0.3616634,0.144284,0.052158184,-0.4844868,-0.062284846,0.050720084,-0.53628397,0.1211882,0.17016886,-0.3014426,0.11831469,-0.37044844,-0.09359503,1.2590293,-0.31299996,0.09001949,-0.5746975,-0.569358,-0.9193188,-0.24614532,0.3662257,0.27543566,0.14513254,-0.60034645,0.06513816,-0.13985787,-0.08833135,-0.059319813,-0.28234115,0.50715476,0.063749604,0.38601416,-0.2619742,-0.8059048,0.05944476,0.033251464,-0.4535864,-0.59247696,0.63229877,0.016862707,0.92864597,-0.025158746,0.106558666,0.40239158,-0.5735479,-0.020989956,-0.25191644,-0.062442463,-0.763919,-0.0629684 -355,0.4613714,-0.13106865,-0.5328524,-0.39678258,-0.38789192,0.17201337,-0.23783986,0.2767117,0.14825001,-0.5455645,0.047110874,-0.019386651,-0.18367128,0.12538506,-0.12960616,-0.7575871,-0.14421667,0.0319849,-0.6157442,0.21302938,-0.52369785,0.38695827,0.2247114,0.17617036,0.062784515,0.16638121,0.09611066,-0.18164924,-0.09770845,-0.4033441,-0.17116442,0.20627752,-0.68949854,0.29162392,0.060433097,-0.43395868,-0.016104816,-0.3911863,-0.21221521,-0.5742704,0.20605275,-0.8091792,0.58454335,-0.01599191,-0.22823803,-0.008715285,-0.08041464,0.23367369,-0.05714848,0.4346709,0.39435524,-0.29006454,0.014390618,-0.19863327,-0.29324692,-0.36776713,-0.573995,0.020579776,-0.60473835,-0.03785812,-0.10695722,0.22456458,-0.18522409,0.055924833,-0.327799,0.5020786,-0.46102643,-0.19491461,0.10777674,-0.2547899,0.47095475,-0.598725,-0.19007555,-0.012951711,0.18171728,-0.32962033,-0.18043362,0.06870369,0.21158732,0.5916926,0.022808393,-0.1741363,-0.2535188,-0.049695384,0.14650096,0.47335482,-0.15793459,-0.21074183,-0.26824662,-0.052960847,0.37670884,0.235103,-0.021173483,-0.52371895,0.1074123,0.03248457,-0.27852255,0.5200277,0.44381553,-0.36537173,-0.10724635,0.3679997,0.43866214,0.14937909,-0.10522755,0.20148663,-0.051387608,-0.41748723,-0.15276177,0.4598008,-0.04345445,0.3054995,-0.085028894,0.17188565,0.6344561,-0.22659251,0.0019738248,0.0066186124,-0.16204712,0.06236985,-0.05904026,-0.26692232,0.19026613,-0.5350341,-0.0046622413,-0.32965395,0.7927996,-0.07958143,-0.8859485,0.23511529,-0.5553406,0.074456386,-0.15731467,0.6434533,0.65583616,0.35610864,-0.048783462,0.8778057,-0.4862376,0.018914664,-0.14704004,-0.2280563,-0.011851435,-0.009250156,0.08069791,-0.50678295,-0.09871689,-0.17246675,-0.02920301,0.0027553807,0.34398833,-0.42698956,-0.13552855,0.07291705,0.49390307,-0.42619038,0.08026651,0.79096097,1.0376272,1.0445815,0.1966947,1.229112,0.2760893,-0.21016566,-0.11770461,-0.3112049,-0.40285474,0.19550292,0.40889025,0.44096637,0.26979935,0.03191394,0.2547942,0.44206256,-0.3025527,0.030509692,-0.14900663,0.25746855,-0.18620001,-0.08610523,-0.41040543,-0.19706987,0.1404266,0.1892611,-0.07578814,-0.008557673,-0.28000203,0.40139428,0.22328046,1.0851077,-0.15438022,-0.030065535,-0.025720207,0.12317113,0.13213205,-0.17097083,-0.021542093,0.21081318,0.39168572,-0.15405814,-0.56320304,0.020440102,-0.111030295,-0.2187556,-0.33693674,-0.27179384,0.012783374,-0.1468071,-0.4485975,-0.08415847,0.2721715,-0.59781986,0.45767492,-2.2691426,-0.13852754,-0.20862661,0.30815506,-0.06569678,-0.4054504,-0.28593773,-0.36854425,0.37384132,0.36789355,0.34475356,-0.55472887,0.5356394,0.36347565,-0.20558967,-0.07669871,-0.81479853,-0.12661389,-0.10301925,0.16768481,0.105156824,-0.07951016,-0.27605295,0.22691692,0.6140937,-0.08256902,-0.030635683,0.17228423,0.44173983,0.019553747,0.7976127,0.24649465,0.52780193,-0.15160693,-0.09647785,0.42059997,-0.41010138,0.08414098,0.16473712,0.2017848,0.2786292,-0.66357046,-0.8374926,-0.8061291,-0.519312,1.3271188,-0.20016564,-0.51308656,0.22664483,0.103251144,-0.4526975,0.13529243,0.437316,-0.1819717,-0.062799126,-0.80388755,-0.13081856,-0.16646467,0.33660862,-0.1160668,0.15078165,-0.48100287,0.6895575,-0.216481,0.6038178,0.4451465,0.22323373,-0.010770134,-0.27606812,-0.06687148,1.1728001,0.3741654,0.12260028,-0.20549135,0.023436503,-0.14480329,0.07270602,0.18431692,0.595224,0.821694,0.05513804,0.064465694,0.37362623,-0.1813869,0.039086483,-0.09817847,-0.49979806,-0.041621268,0.08255044,0.6697994,0.24783674,0.23557556,0.54837054,-0.12975559,0.17921582,-0.17836499,-0.51536876,0.28121695,0.84510624,0.051607437,-0.3524263,0.49475452,0.4718861,-0.16675197,0.3889982,-0.5028665,-0.30466223,0.3860787,-0.11534332,-0.4556058,0.23602594,-0.46444964,0.28960064,-0.9421005,0.37696692,-0.24972187,-0.76860046,-0.5364281,-0.35538524,-2.586161,0.18548994,-0.030845689,-0.062699445,0.050214797,-0.32817098,0.3880753,-0.3779493,-0.60474193,-0.060248878,0.009554556,0.43086833,-0.020671934,-0.011652525,-0.107745625,-0.17047878,-0.21312363,0.37941477,0.121672235,0.13902922,-0.007453727,-0.33852172,0.14424051,-0.36072782,-0.43430966,-0.124653935,-0.57565653,-0.5490468,0.010388238,-0.5587038,-0.30345374,0.6947264,-0.32945886,-0.07462986,-0.14084634,0.0080375625,-0.0060089016,0.3767008,0.04392612,0.21035555,0.0012678036,0.00607511,-0.2881751,-0.30028382,0.12103777,0.17329752,0.07530161,0.26111877,-0.22543512,0.18525194,0.52287835,0.6173949,0.021102633,0.73642975,0.3178692,-0.14138891,0.12492067,-0.3988597,-0.29882008,-0.68876106,-0.40373558,-0.110047564,-0.50835824,-0.44218823,-0.16087021,-0.39121923,-0.7820958,0.4643612,0.0055738473,-0.07241932,-0.028575778,0.41513616,0.31869143,0.14372028,0.13256402,-0.07164766,-0.17244972,-0.4145063,-0.4232111,-0.64518803,-0.43868157,-0.050727163,1.3334028,-0.091445364,0.061625663,0.08905559,-0.17781428,0.2115608,0.07285629,0.10755486,0.27437606,0.4414127,0.049489,-0.66446465,0.06857254,-0.20198822,-0.094371095,-0.59263355,0.0014557338,1.0161718,-0.6785089,0.52402127,0.3679927,0.2873655,0.019045915,-0.37667012,-0.11565576,0.11699908,-0.30821344,0.7459578,0.08186676,-0.32937154,0.6452361,0.24449621,-0.040976252,-0.67292535,0.4051271,0.12254349,-0.25814977,0.20751712,0.38973984,-0.072905816,-0.09790414,-0.19046178,0.17827486,-0.33620772,0.383552,0.34226447,0.0159305,0.23242633,-0.19664189,-0.33990863,-0.6084198,-0.010714693,-0.53748685,-0.2795675,0.003487885,-0.09679165,0.17799892,0.24343322,-0.13308729,0.52487427,-0.25905767,0.16036613,-0.26945224,-0.18999414,0.41277903,0.44687095,0.17695235,-0.41776448,0.5231341,0.043921847,-0.058119614,-0.35786948,-0.046180643,0.5588344,0.0481471,0.15480046,-0.24411641,-0.19679908,0.4138012,0.6227437,0.19878078,0.28737107,0.050590318,-0.14639452,0.15178049,0.22374442,0.23048666,-0.21100381,-0.21279924,-0.031123275,0.120691076,0.082322106,0.2614002,0.016173856,0.34591874,-0.29348162,-0.07627914,0.18990088,0.24191798,-0.2219416,-1.0069147,0.376785,0.10317611,0.5919828,0.5404407,0.056972105,0.19494614,0.42676854,-0.47255063,0.06489471,0.124590404,-0.0106489975,-0.2384227,0.4445564,-0.5151586,0.40484133,-0.16279817,0.10623976,-0.0024070058,0.061286505,0.4476543,0.91674334,-0.10977091,0.08211633,-0.111504234,-0.11897743,0.066706814,-0.26133177,0.059726477,-0.559373,-0.40532213,0.7831091,0.25632882,0.44045094,-0.21752074,-0.052113693,0.1159611,-0.17653145,0.1344249,-0.03800279,-0.08762334,0.07333811,-0.54828507,-0.19399811,0.5399832,-0.0034968343,-0.13376495,0.18607573,-0.37065244,0.2849043,0.20830517,0.093816295,-0.07209254,-0.44107124,-0.14964227,-0.51841354,-0.2373428,-0.08547232,-0.40497962,0.21887438,0.12294804,-0.017096518,-0.076876484,0.24275385,0.47248918,0.81069905,-0.018574314,-0.13300523,-0.28999466,0.18336762,0.31183743,-0.21433473,-0.28509247,-0.29791743,0.2419733,-0.7701622,0.38678727,-0.17651093,-0.34910282,0.24830873,-0.15503648,0.048318952,0.4038075,-0.45872498,-0.071484014,0.3213299,0.035506543,-0.11375102,-0.081978746,-0.37901226,0.17322354,-0.07960236,-0.089213066,-0.07335414,-0.15389907,-0.16311789,0.31132653,0.26165575,0.42019,0.2720836,0.08558728,-0.5506851,-0.033468988,-0.063626565,0.30354756,0.12155003,0.054866504,-0.18239483,-0.35214347,-0.1581452,0.40682703,-0.12931581,0.1715016,0.0044469875,-0.5123235,0.7735816,0.1575396,1.145613,-0.016719606,-0.33363298,-0.16474022,0.4250682,-0.0038425007,0.05987996,-0.23886512,0.87394947,0.5803603,-0.039508108,-0.11337678,-0.5262976,-0.26371768,0.008211502,-0.1942852,-0.1909952,-0.17182887,-0.68124527,-0.39062813,0.1416183,0.1016387,0.013919693,0.08612508,0.16558114,0.11485953,0.0045644683,0.34190464,-0.4190447,0.10848228,0.092284426,0.074963145,0.03326113,0.075476356,-0.4758045,0.25139883,-0.65852225,0.1153124,-0.2175647,0.10802544,0.110583186,-0.13421257,0.13978817,-0.037865598,0.19165646,-0.33256793,-0.4653349,-0.22139776,0.7267296,0.020131102,0.22919051,0.79196197,-0.18394475,0.17275335,0.16443588,0.46844012,1.5096337,-0.097665116,0.0676695,0.38806957,-0.17578237,-0.42391726,0.11387439,-0.3024683,-0.094483376,-0.030649176,-0.42474237,-0.18328401,0.33322933,0.123213105,-0.06165282,0.017987404,-0.48303396,-0.15241475,0.53401995,-0.28549552,-0.3090283,-0.27144694,0.2654562,0.5378768,-0.37922543,-0.40097564,0.012760012,0.34261498,-0.33765978,-0.5176877,0.0846665,-0.18480454,0.48944142,0.24993905,-0.24288262,0.038647253,0.265261,-0.39164057,-0.04181196,0.302264,-0.3005348,-0.06743302,-0.17084697,-0.19729851,0.890866,0.06544782,0.05003815,-0.634312,-0.58581,-0.85008705,-0.26098362,0.2534069,0.2339653,-0.08439134,-0.5507478,-0.037292983,-0.1627231,-0.07504266,0.17855628,-0.448098,0.49979714,0.13609028,0.62764466,-0.33687013,-0.8571935,0.20697948,0.06072877,-0.34937313,-0.5426212,0.5276534,0.11082878,0.5437581,0.13626032,0.032457944,0.11512053,-0.5935134,0.25385752,-0.15107404,-0.15203135,-0.79982346,0.054632213 -356,0.592731,0.05543471,-0.3375172,-0.06505,-0.1841648,0.19834708,-0.084174134,0.13797355,0.03494438,-0.5528215,-0.20723407,-0.28709862,-0.114092946,0.20877397,-0.122639775,-0.5248171,0.06248807,0.27150002,-0.17446361,0.388885,-0.4790018,0.6536528,0.1079641,0.31087294,-0.03688928,0.23444296,0.44948715,-0.21529126,-0.3642128,-0.4051234,-0.3461619,0.0008682268,-0.47990036,0.24074794,-0.19787717,-0.5649007,0.106671,-0.44205046,-0.1426821,-0.55258995,0.27229276,-0.8471421,0.5118026,0.12955312,-0.030148242,0.27011794,0.076396994,0.22383745,-0.024035176,0.19588622,0.20804371,-0.30785936,0.05066984,-0.38398173,-0.3330824,-0.37709028,-0.35808796,-0.01099592,-0.4221194,-0.21140207,-0.2826482,0.104978785,-0.16718443,-0.12656567,-0.030485475,0.06956539,-0.43086764,-0.053354625,0.21782579,-0.28595707,0.1497076,-0.54444724,-0.22927073,-0.1249383,0.30512843,-0.36025342,-0.055922262,0.22224696,0.2005211,0.7301025,0.03212294,-0.11991216,-0.37546566,-0.21259582,0.11722166,0.6907219,-0.13819726,-0.40671787,0.00071744405,-0.13839628,0.22665094,0.22835529,0.20995869,-0.050815422,-0.07276515,-0.08836873,-0.15989849,0.20993932,0.5078103,-0.41598907,-0.15190813,0.46161652,0.4773086,-0.052929234,0.047668133,0.060551815,-0.040284276,-0.29256085,-0.22166392,-0.059289653,-0.08568864,0.5928839,-0.07246596,0.3406976,0.69478375,-0.17955254,0.2818048,-0.025085239,-0.025204957,-0.13755505,-0.061024446,-0.28221074,0.29222706,-0.46626586,0.00083901203,-0.132854,1.0037869,0.065690935,-0.49734873,0.3543686,-0.43054938,0.021353062,-0.053902548,0.5422868,0.39195442,0.370297,0.12542404,0.8352528,-0.6073211,-0.0015215363,-0.06899167,-0.2652358,-0.076048136,-0.08779482,0.021792918,-0.3943523,0.12597403,0.12735608,0.0200598,0.07749859,0.35054275,-0.5005075,0.012286289,0.21205756,0.81403285,-0.39840505,0.046176936,0.7377172,0.99576914,0.9852937,-0.033318948,1.2038705,0.38088158,-0.34526125,-0.17980349,-0.23962614,-0.5143713,0.1737354,0.33194426,-0.24008611,0.15904866,0.2227108,0.11524185,0.28301042,-0.4251614,-0.10657453,-0.37879398,0.12564178,0.022676935,-0.03208409,-0.47646168,-0.23312758,-0.12435452,-0.03661749,0.23859671,0.28019506,-0.27457118,0.354307,-0.0029187116,1.940833,-0.17680487,0.1659771,-0.03213331,0.41368634,0.28475124,-0.078644,0.0760184,0.25331888,0.14397225,-0.17924415,-0.51309913,-0.1318951,-0.17826942,-0.66989106,-0.24172528,-0.17568599,-0.10650623,0.11344324,-0.36179778,-0.12412996,-0.07015581,-0.45070818,0.36254916,-2.3818202,-0.048370022,-0.052590933,0.41770926,-0.2857156,-0.35283202,-0.09655796,-0.37421662,0.48549455,0.31700978,0.37578836,-0.5092783,0.20510209,0.49038792,-0.31308696,-0.39063978,-0.5468142,0.21148929,-0.20680825,0.17382814,0.0030524784,-0.2576148,-0.08756534,0.032623496,0.45258692,-0.100599244,0.12946649,0.12454593,0.43895158,0.21703921,0.31357768,0.21751574,0.5970181,-0.3206953,-0.23676597,0.50410306,-0.38328308,0.16896474,-0.2734344,0.11705304,0.22951104,-0.48758918,-0.68558687,-0.77126557,-0.39727163,1.0390265,-0.032842625,-0.5545193,0.17290565,0.056735683,-0.32693365,-0.13112886,0.3957294,-0.08866983,-0.17003246,-0.67488515,0.08929474,-0.14176042,0.15435405,0.06305699,0.07895018,-0.5789903,0.74976623,-0.19432701,0.3906073,0.3827886,0.2948065,-0.08641259,-0.32189035,0.03866262,1.0249244,0.5083863,0.14532934,-0.27678606,-0.14607044,-0.17921183,-0.1442565,0.16367137,0.36318234,0.7782001,-0.034821104,-0.03499136,0.2275871,0.14897718,0.011480453,-0.09988451,-0.36980262,-0.09117043,-0.12125663,0.67308295,0.48487502,-0.047561992,0.3670796,-0.1669444,0.31322506,-0.45152143,-0.36577538,0.6033859,0.74537927,-0.149444,-0.10236745,0.49527326,0.4587055,-0.19650884,0.3588573,-0.8156132,-0.47590193,0.25258717,-0.11388641,-0.46960124,0.00163017,-0.32088658,0.11470372,-0.8222737,0.29158783,-0.08618844,-0.41261795,-0.5622684,-0.32010883,-2.9369137,0.105518565,-0.19997314,-0.05402993,0.025263892,-0.16817202,0.11776316,-0.5516189,-0.38124612,0.08552958,-0.055816118,0.6803531,0.14211346,0.41813466,-0.12649286,-0.328933,-0.28474423,0.12121022,-0.1890235,0.2891764,0.10558311,-0.31770834,0.12701532,-0.24523488,-0.31210405,-0.08090663,-0.45268694,-0.3982966,-0.20478322,-0.2689424,-0.2633657,0.67184734,-0.5803561,0.15793936,-0.2739363,-0.11614169,-0.28121194,0.26622567,0.21041994,0.107707225,0.081540704,-0.06363101,-0.06363305,-0.40798637,0.29413396,0.13548966,0.15026595,0.48956385,-0.25909683,0.030997226,0.2592871,0.565936,-0.042985227,0.74522454,0.31457093,-0.13744819,0.2833921,-0.35994628,-0.18256046,-0.567248,-0.5279792,-0.105882,-0.45733288,-0.5645677,-0.16347902,-0.43541098,-0.7486869,0.5416563,0.031035524,0.062304616,0.013377577,0.32721615,0.37597862,-0.1848624,-0.13642655,0.049824975,0.10847199,-0.45720044,-0.34778705,-0.5955282,-0.33192962,0.2101868,0.9777234,-0.05858204,-0.1005696,0.2705126,-0.0071146786,0.028844884,-0.06508316,0.17751837,-0.15586986,0.51141316,0.020723006,-0.6632977,0.5581617,-0.049516056,-0.118372954,-0.63638914,0.026075492,0.55872625,-0.61946434,0.32047436,0.574522,0.19004358,0.2550169,-0.3901317,-0.2136044,-0.089547835,-0.3852773,0.12394946,0.14724705,-0.60540205,0.4478716,0.30568048,-0.2386699,-0.7808846,0.33961678,0.15986834,-0.49534503,0.055856925,0.08649453,0.28733233,-0.00926312,-0.11234665,0.12375213,-0.5099812,0.3624687,0.32998037,-0.017862927,0.5340206,-0.41310206,-0.30156687,-0.65638435,-0.030912926,-0.32486743,-0.3891795,-0.033408266,0.24023303,0.07176628,0.3552491,0.1812817,0.35868016,-0.5806528,0.049585395,-0.10111286,-0.09114873,0.3630087,0.23743503,0.3931019,-0.45912987,0.583642,-0.10886894,-0.019562943,-0.2760308,0.1110233,0.42557272,0.1790189,0.18092012,0.038604956,-0.2679444,0.32310668,0.7845511,0.18617892,0.2802802,0.08714784,-0.20210867,0.27773932,0.16835964,0.052228305,0.10959106,-0.4609826,-0.11590148,-0.17108522,0.062637344,0.41683617,0.24791737,0.47361293,-0.16758797,-0.2080197,0.11811825,0.10847013,-0.2863877,-0.8874442,0.22603181,0.02461786,0.70266163,0.4852233,-0.08466338,0.1891692,0.65997726,-0.28934738,0.11374002,0.14135279,-0.18641849,-0.2854562,0.48893446,-0.5075941,0.24064718,-0.11079986,-0.061890673,-0.0066962456,-0.121842384,0.2805076,0.66193146,-0.08813091,0.16944186,-0.013069583,-0.3342852,-0.08709918,-0.24666597,0.12110807,-0.6034004,-0.13816981,0.77992773,0.33955812,0.37605026,-0.13127483,0.034578715,-0.028955055,-0.16891313,-0.02668726,0.14501916,0.15435168,0.083375745,-0.51049405,-0.22216238,0.64544,0.16239507,0.08049776,0.0009727478,-0.42400995,0.26418176,-0.14678645,-0.07186711,0.026356105,-0.5179399,0.20959656,-0.427354,-0.3182063,0.30695263,0.15504806,0.287717,0.17343585,-0.019720022,-0.056555837,0.33240986,0.41182908,0.7226286,0.068499826,-0.16892599,-0.38696626,0.34618765,0.18411449,-0.21787651,-0.08925002,-0.035377085,0.11178783,-0.654945,0.37341323,-0.06573608,-0.05144957,0.2565963,-0.18958065,-0.015270091,0.51297987,-0.16994773,0.008288029,0.2996059,-0.19465725,-0.32548323,0.07093075,-0.37949067,0.0773576,0.07163956,-0.19593294,-0.17772005,-0.12075334,-0.20404114,0.25886935,0.10642882,0.27282897,0.3398855,-0.0010626231,-0.5291224,-0.11554794,-0.06355218,0.46494937,-0.09145673,0.03776274,-0.23267038,-0.51454175,-0.23872216,0.2881883,-0.1555386,0.038611267,0.21261093,-0.22663224,0.82696897,0.12130336,1.0786092,0.15979764,-0.2560804,0.005065177,0.53204024,-0.17085247,0.115985036,-0.3745673,1.0491081,0.5327659,-0.021439003,-0.06258277,-0.09048986,-0.032290217,0.21824126,-0.32117897,-0.24316895,-0.007659729,-0.7300201,-0.4589088,0.27589852,0.24891534,0.037309516,0.020326108,0.16542353,0.19316487,0.11371124,0.39739043,-0.4398143,-0.34935004,0.28196123,0.23547015,0.042856205,0.028500216,-0.3547915,0.47343358,-0.5619954,-0.09010482,-0.35527998,0.10086161,-0.24208842,-0.23912382,0.21362655,0.111724496,0.35409817,-0.3291312,-0.38320538,-0.19370379,0.32843715,0.11744861,0.32381183,0.4297109,-0.19186834,0.1442441,-0.13866538,0.4592407,1.2826601,-0.14848375,0.16815947,0.64393157,-0.37544844,-0.5612273,0.29860568,-0.37742025,-0.14127025,-0.15606865,-0.39787006,-0.4484315,0.31241196,0.29278952,0.008797796,0.21347985,-0.48404688,-0.16188839,0.36662194,-0.3130732,-0.26601312,-0.2696521,0.06246921,0.6245913,-0.19746554,-0.3007019,0.22306585,0.52756387,-0.2613098,-0.58614916,-0.066177,-0.31280702,0.46313915,0.20570771,-0.22651471,-0.15388475,0.015292968,-0.38988492,0.053226907,0.28059402,-0.43671724,0.00969874,-0.5919098,0.15945117,0.70870507,0.032359447,0.05228389,-0.5740749,-0.25863943,-0.98528534,-0.3731343,0.58187854,0.2241811,0.04071957,-0.35921484,-0.025349587,-0.21149196,-0.04996272,-0.17123748,-0.43764332,0.27719852,0.27336767,0.46163413,-0.15613903,-0.77607286,-0.012371557,0.16800925,-0.43686432,-0.49987346,0.44600987,0.0018009299,1.0388337,0.099889256,-0.22062945,0.33437204,-0.6166056,0.26268968,-0.20208265,-0.1690541,-0.80799454,0.13927451 -357,0.44616517,-0.14449367,-0.29252276,-0.18168725,-0.16541788,0.0048882505,-0.2417605,0.04133111,0.006568694,-0.413503,-0.21533568,-0.3369967,0.105321854,0.44799423,-0.033806812,-0.8278377,-0.18994114,-0.03923719,-0.5670001,0.35371393,-0.612842,0.4564928,0.166988,0.20321368,-0.064801045,0.5040623,0.532264,-0.32387882,0.01031546,-0.015569266,-0.07436846,0.095159374,-0.54510313,0.024831617,-0.026843281,-0.29196018,0.23346823,-0.4104044,-0.13058765,-0.6203622,0.26252005,-0.9137323,0.33261913,0.04678842,0.13880107,0.108711496,0.13167842,0.3975995,-0.35701668,0.32940274,0.251441,-0.11524332,0.049445532,-0.20633171,-0.10609674,-0.58319795,-0.48693976,0.06162502,-0.4951387,-0.5738379,-0.17849591,0.16043955,-0.36809602,0.07269921,-0.05527101,0.07073073,-0.47008198,-0.24558268,0.4110047,-0.19032839,0.31374013,-0.44736186,0.029585933,-0.16571322,0.48371086,-0.26745114,0.08349781,0.36462346,0.32766733,0.48871118,0.1956254,-0.19594495,-0.11057205,-0.20758137,0.32553303,0.50224596,-0.17399518,-0.41670945,-0.2073129,0.17218398,0.092728786,0.34190375,-0.11406569,-0.20121019,-0.100282855,-0.0012811184,-0.25000617,0.3595496,0.40191928,-0.30688033,-0.46897155,0.2933193,0.5823609,0.03981423,-0.089815125,0.05203055,0.037606683,-0.48592886,-0.07262554,0.19822973,-0.10548909,0.40786844,-0.14590415,0.21922828,0.90285593,-0.22890197,0.17401846,-0.4937138,-0.32917106,-0.3238827,-0.101663575,-0.08563951,0.11217332,-0.5265156,0.039300125,-0.3077825,0.80203265,0.28768378,-0.805627,0.53633314,-0.52007204,0.17966703,-0.19782655,0.6579171,0.56136197,0.10838485,0.3449608,0.71581346,-0.48813584,0.20746498,-0.13648868,-0.47498766,0.025433961,-0.13465753,-0.039018217,-0.4255682,0.19532661,-0.0390927,0.13451153,-0.115325116,0.34640732,-0.5411535,0.10794135,0.1614059,0.71932465,-0.4500555,0.084615685,0.5245973,0.89537686,0.92619646,-0.019294607,1.2173561,0.40948448,-0.37190717,0.30066332,-0.5507145,-0.5953176,0.10778166,0.44556123,0.16854502,0.26428553,-0.1206609,0.065871574,0.2248407,-0.35625127,0.11579824,-0.106024735,0.1434203,0.15543102,0.0010670185,-0.5062017,-0.029791793,-0.043395314,-0.14597298,0.18398596,0.035814866,-0.16563664,0.26684147,0.0036870777,1.5359241,0.026900899,0.20610933,0.07571348,0.44050667,0.22949627,-0.10000787,-0.011044041,0.3905043,0.44197902,0.024920993,-0.6965422,0.19510235,-0.36112705,-0.55257213,-0.13550285,-0.2662153,0.041055318,0.16476305,-0.31487525,0.018660152,-0.005967033,-0.2939996,0.38427296,-2.6013923,-0.35276413,-0.2590957,0.21964373,-0.4387592,-0.120596066,-0.1869101,-0.5546572,0.235561,0.39500704,0.40707085,-0.6216473,0.47342938,0.3562636,-0.37313238,-0.1645615,-0.7363983,0.034610644,-0.14868774,0.3822828,0.02057594,-0.11000366,-0.16855282,0.24008457,0.554882,-0.03485244,0.041334048,0.21921295,0.48085496,0.43560895,0.5299329,-0.015659126,0.5048377,-0.17239295,-0.12600061,0.3495861,-0.24000007,0.28240934,-0.121401675,0.16215038,0.3162875,-0.4479753,-0.9010052,-0.68598115,-0.75840914,1.0505795,-0.39906433,-0.30898112,0.21136548,0.29485148,-0.050889395,-0.029140553,0.43119627,-0.14782508,0.106552266,-0.75517935,0.24235246,-0.09606181,0.18900456,0.14192274,0.1446894,-0.26933756,0.607925,-0.15931253,0.47324744,0.30509403,0.20270762,-0.021654272,-0.39616948,-0.0073135197,0.98015213,0.21517776,0.021619864,-0.110411644,-0.26875928,-0.18182757,-0.22140674,0.09838779,0.27709225,0.8133382,0.14118953,-0.030444784,0.2950217,-0.03589884,0.029096542,-0.17885806,-0.20329003,0.16876696,0.0030484677,0.5411011,0.38580963,-0.2432681,0.42660484,-0.24527904,0.29514554,-0.059808783,-0.36891893,0.6219111,0.6959356,-0.12361703,0.055056017,0.41812345,0.42124563,-0.4558784,0.38689712,-0.73656434,-0.19952099,0.6905421,-0.32753173,-0.3601949,0.19252107,-0.20029855,0.16181153,-0.94723296,0.3333617,-0.26629388,-0.06525235,-0.54630816,-0.17315309,-3.6506877,0.111037485,-0.06157828,-0.21292074,-0.069263235,0.0073028128,0.36132118,-0.66494066,-0.5153714,0.13749863,0.06362374,0.4886799,-0.0014607619,0.22311792,-0.35667378,0.0048831305,-0.19435872,0.14316693,0.13506134,0.18234383,-0.026167594,-0.40358338,0.15624724,-0.19144277,-0.53287876,0.29260197,-0.28617185,-0.3968999,-0.15930547,-0.44178954,-0.23812495,0.45166683,-0.409276,0.0700034,-0.13628358,0.08566442,-0.33574805,0.24600463,0.25173876,0.22273895,0.07084788,0.0007410437,-0.051654015,-0.28091526,0.57620883,-0.010875749,0.2859496,0.08328109,-0.102815054,-0.02346204,0.39195317,0.5196701,0.0052631935,0.8277747,0.44435918,-0.09844051,0.2248035,-0.43834192,0.007759585,-0.6342476,-0.5115868,-0.14652628,-0.3747296,-0.77581066,-0.08002725,-0.2782954,-0.68874043,0.50884163,-0.094739236,0.26506966,-0.054302763,0.24955977,0.2734424,-0.120499596,0.15113007,0.025790721,-0.11248701,-0.5271491,-0.23108469,-0.6664661,-0.434616,0.20430177,0.84795773,-0.20386644,-0.09325694,-0.27201587,-0.18521556,0.0022319714,-0.07823343,0.10179113,0.37521112,0.28460935,-0.01963609,-0.71069616,0.47965083,0.050188936,-0.106292926,-0.55190027,-0.09108288,0.6981279,-0.6505036,0.45649686,0.35642707,0.11086757,0.13577761,-0.4618997,-0.21252136,0.024666492,-0.2910245,0.36452276,-0.16673002,-0.5608927,0.5245535,0.33848614,-0.39003232,-0.69657135,0.35216933,0.114157066,-0.35108125,0.1435292,0.229642,0.12622096,-0.12446065,-0.4033639,0.24263597,-0.5248042,0.12765428,0.321318,0.012212296,0.4091643,-0.026978334,-0.2818213,-0.68502986,-0.09698143,-0.45111006,-0.21785736,0.28027007,-0.058428366,-0.030403875,0.13119714,-0.031209985,0.44631404,-0.18709596,0.023427697,0.13581893,-0.1631062,0.07296967,0.35465226,0.21519738,-0.39636675,0.55760765,0.11658872,-0.18330072,0.021884413,-0.084819235,0.38515237,0.11332866,0.17137638,-0.040266875,-0.31669158,0.4506045,0.77232325,0.28460553,0.39239785,0.2170777,-0.19409303,0.55140764,0.08865324,-0.004476134,0.12845169,-0.20939773,-0.17948365,0.23440695,0.05472506,0.47229415,0.2379389,0.43909076,-0.08487735,-0.20792398,0.08953323,0.28270036,-0.13482584,-0.66247994,0.28679785,0.17816506,0.65573823,0.54620284,-0.058866195,0.11013026,0.4924099,-0.3639124,0.11559009,0.3014767,-0.10493722,-0.5981628,0.7290708,-0.4195308,0.17638078,-0.13216928,-0.041269325,-0.012039872,0.17819414,0.25849673,0.7413592,-0.16775551,0.037313182,-0.15850057,-0.058619604,0.13941227,-0.30141914,0.075478554,-0.27787992,-0.22252975,0.6079418,0.3423564,0.2277016,-0.0924811,-0.09866483,-0.051945124,-0.11490408,0.2565631,0.0026488602,-0.006300187,0.124318294,-0.59415275,-0.35270888,0.61221045,0.15551935,0.1724187,-0.07540473,-0.46269524,0.14271961,-0.23248737,-0.028618613,0.040154193,-0.53241354,-0.03908988,-0.095299825,-0.5121017,0.37716025,-0.21495527,0.2912612,0.13476382,-0.049081776,-0.19795561,0.0432381,0.1678627,0.80480224,-0.05789369,-0.35874715,-0.41546288,0.06235748,0.36226088,-0.2742694,0.015978483,-0.2944249,-0.05682412,-0.58652663,0.66617674,-0.047625538,-0.3546901,0.24117793,-0.33737782,-0.16763096,0.6474054,-0.19070576,0.020446952,0.1375492,-0.23499289,-0.38868314,0.050420593,-0.3698272,0.10413658,0.19261116,-0.02928977,-0.1392161,-0.10426666,-0.09852992,0.6393786,0.11700698,0.3630771,0.19983597,0.16264696,-0.3599711,-0.05836458,0.1208581,0.19953363,0.1688107,-0.10002697,-0.31933758,-0.46845227,-0.10747778,0.0070235906,-0.10679086,0.24269359,-0.026592802,-0.5564787,0.7970666,0.03925343,1.1568758,0.1614098,-0.30543965,-0.017778581,0.536632,-0.111299396,0.11801769,-0.38005254,0.73789686,0.67481405,-0.017327627,-0.28206375,-0.2744494,-0.22635098,0.21971878,-0.29531974,-0.10380731,-0.058791224,-0.5658624,-0.6774409,0.35426196,0.18276826,0.076149516,-0.005501882,0.0025612593,-0.0886084,0.14761356,0.666407,-0.58546424,-0.40025845,0.18091844,0.17388138,0.06673231,0.12801242,-0.3045588,0.48476535,-0.6405217,0.18508612,-0.41454497,0.13564402,-0.1395318,-0.23968592,0.15801072,-0.022300832,0.3454427,-0.15813513,-0.5855286,0.039549835,0.48094568,-0.0021511943,0.242839,0.62686354,-0.29549783,0.2373092,0.08759121,0.60826993,1.4270257,-0.31635746,0.11239956,0.3658968,-0.3504214,-0.59223354,0.35535136,-0.30183318,-0.054019887,-0.15628938,-0.43188938,-0.2910428,0.3333632,0.21349713,-0.046198417,0.07712574,-0.4695473,-0.34258312,0.4048256,-0.31179163,-0.23022725,-0.17567171,0.36757222,0.879707,-0.41725168,-0.11488864,0.057167538,0.31183922,-0.46746242,-0.60780865,-0.26954967,-0.13075392,0.50148547,0.27742523,-0.13152494,0.17364591,0.26210505,-0.33407772,0.14766566,0.19134738,-0.49493933,-0.028999973,-0.16225019,-0.069578856,0.8219985,-0.1532094,-0.31877887,-0.8339099,-0.3157883,-1.0234797,-0.48521823,0.5962117,0.14699793,0.06326295,-0.23396635,0.15395358,0.041672014,-0.17417912,0.08115468,-0.5783249,0.2542755,0.17762426,0.6699304,-0.2727266,-0.6775827,-0.07008342,0.107891195,-0.06309291,-0.6613215,0.60787773,-0.022086136,0.8859657,-0.0056669414,-0.018914755,0.19410318,-0.3471468,0.13384908,-0.36111408,-0.18700816,-0.9036282,0.12871204 -358,0.33155707,-0.054749366,-0.43327934,-0.03584791,-0.15694363,0.16578484,0.017331354,0.43455827,0.18575674,-0.37341633,-0.030293532,-0.13283862,0.08040549,0.27705848,-0.09545436,-0.40256053,0.018434547,0.08809252,-0.54171216,0.5333857,-0.3501389,0.24046095,-0.21003398,0.33146697,0.075566076,0.366261,0.11363597,-0.28986442,-0.108347654,0.14330427,-0.20402682,0.24721147,-0.40929186,0.01331397,-0.060906604,-0.082154244,0.10495362,-0.33030698,-0.31435415,-0.60887325,0.36320055,-0.64154,0.26506644,0.06233788,-0.10582316,0.23043989,0.012409076,0.25736654,-0.39093053,-0.06396218,0.18578595,-0.12772182,-0.050404858,-0.15854013,-0.092388,-0.35207105,-0.43673128,-0.0044008642,-0.3682555,-0.16125546,-0.28097713,0.03963897,-0.32374477,-0.16933851,-0.027531052,0.33493534,-0.49666905,0.14386389,0.1796503,-0.1527377,0.089778535,-0.48574236,-0.08085483,-0.115950726,0.35349166,-0.23574767,-0.14919531,0.35411647,0.23955444,0.4192284,-0.09705838,-0.13003762,-0.286815,-0.046862863,0.20413047,0.44326806,-0.11901217,-0.50684834,0.014049593,0.06187921,-0.13028878,0.26158273,0.045034997,-0.39007953,-0.21213235,0.1301182,-0.13696337,0.2112586,0.45260733,-0.27015007,-0.23160061,0.4600098,0.539296,0.110485725,-0.20908333,-0.19811615,0.009120047,-0.5138694,-0.15396705,0.18768732,-0.18597502,0.49652737,-0.03679803,0.21375284,0.7160166,-0.23537734,0.067113414,-0.054742876,0.029109161,-0.068317816,-0.16106029,-0.013771649,0.033153847,-0.37666172,0.27345976,-0.0052475315,0.72055304,0.27993375,-0.705245,0.32693064,-0.47236413,0.19926614,-0.19642459,0.5129981,0.6481279,0.28477767,0.3764202,0.77382123,-0.5255748,0.14499643,-0.075526565,-0.5587697,0.13993102,-0.10250962,-0.2359348,-0.5232345,0.011870917,0.08098375,-0.11414065,-0.02794848,0.045653433,-0.48073238,-0.03371707,0.14831626,0.80133575,-0.3143844,-0.12002427,0.41085887,0.8396673,0.81737554,0.06172649,1.138981,0.052293852,-0.30957487,0.5028852,-0.36997724,-0.79261863,0.14420298,0.25910446,0.061324503,0.16612105,0.22449458,0.070746474,0.33066002,-0.39622325,0.1642699,-0.18412998,0.2740128,0.23451237,-0.037855104,-0.23616418,-0.2557198,-0.1415824,0.02037551,-0.028908081,0.24098451,-0.20448962,0.044580862,-0.058384877,2.0182,0.10910216,0.12285094,0.08391702,0.6023979,0.13756393,-0.098752536,-0.26766622,0.54206574,0.37068683,0.27060226,-0.5590112,0.13160965,-0.2557571,-0.59402895,-0.04463712,-0.43636408,-0.104710236,0.09653731,-0.48003298,-0.04089271,-0.04739367,-0.23467512,0.6182135,-2.9060493,-0.008910675,-0.11870566,0.3305603,-0.3205199,-0.28048563,-0.15317717,-0.4197012,0.3023132,0.35694402,0.41866112,-0.6868997,0.26781484,0.31585363,-0.45973113,-0.09626819,-0.5678879,-0.17481081,0.007772334,0.38210315,0.054914773,0.03518718,0.12273975,0.15797038,0.3316009,-0.016089901,0.060617216,0.14553174,0.2687353,0.26100522,0.5247984,-0.051447432,0.49074373,-0.06979792,-0.109156296,0.1415592,-0.25486958,0.43666494,0.019018017,0.08283168,0.31503353,-0.29416597,-0.89317226,-0.54797244,-0.14470997,1.17808,-0.32239735,-0.16592625,0.3358339,-0.4811701,-0.072341174,-0.26069197,0.50179005,-0.028541164,-0.20341307,-0.7545872,0.22143555,-0.07854833,0.20478384,0.0312962,0.016287895,-0.29370397,0.5245081,0.009482159,0.5950594,0.40997714,0.04068682,-0.06561756,-0.3323016,0.0034664944,0.6278187,0.21329756,0.1084951,-0.16348016,-0.26612943,-0.33950043,-0.123479515,0.11051297,0.48236707,0.636021,-0.0396799,0.1016365,0.2066586,-0.023247063,-0.03746711,-0.21326116,-0.24306601,0.0416155,-0.19276357,0.45394742,0.63644457,-0.2681513,0.41795015,0.004466906,0.14366329,-0.21179354,-0.3002239,0.3763687,0.8961953,-0.15496437,-0.016942844,0.28842926,0.54448926,-0.2576217,0.32696417,-0.5314776,-0.00026395544,0.55054355,-0.2098074,-0.29360154,0.112433255,-0.2843489,0.116043925,-0.694747,0.25564283,-0.023804173,-0.27350223,-0.38753676,-0.06724373,-3.348951,0.1394254,-0.27800474,-0.23637794,-0.03385808,0.026053369,0.111359775,-0.7117706,-0.4229672,0.20017637,0.048566602,0.5767046,-0.062169958,0.07403554,-0.3272633,-0.23034146,-0.25885892,0.08847201,-0.05811148,0.36157048,-0.07377399,-0.5077465,-0.016808039,-0.13005461,-0.2828216,0.059714727,-0.44936436,-0.35157514,-0.13701722,-0.3749712,-0.31103128,0.68882227,-0.28150287,0.046742536,-0.13256662,-0.11173533,-0.18505591,0.26350534,0.27440065,0.040836446,-0.014011946,0.15409824,-0.039788477,-0.33357045,0.19488826,0.02895103,0.30880392,0.3680073,0.16202942,0.10550414,0.45848617,0.54920316,-0.1747246,0.80615366,0.62478244,-0.13076141,0.20583825,-0.40151232,-0.10657695,-0.47437686,-0.48984987,-0.109631516,-0.41299695,-0.45190307,-0.07283461,-0.3410005,-0.6604141,0.4389377,-0.03865861,0.1678094,0.110167645,0.10095479,0.514754,-0.31596482,0.026154637,0.038107812,-0.10525206,-0.6278314,-0.28449285,-0.51706797,-0.35861328,0.25630966,0.8929161,-0.34920144,-0.21257526,-0.0008016676,-0.3009522,-0.053555593,0.034312725,0.013452504,0.3290813,0.3314805,-0.12901717,-0.6063861,0.59115326,-0.07226202,-0.10949543,-0.6945873,0.13496795,0.36961704,-0.63073164,0.5636421,0.29847088,-0.0031667277,0.02484259,-0.5043012,-0.33154058,-0.03769873,-0.1488528,0.2048128,0.08759816,-0.78992146,0.31907225,0.2390199,-0.23910153,-0.62964714,0.6142189,-0.033078834,-0.37860084,0.028864115,0.21611066,0.17357108,-0.0656639,-0.2432164,0.2334743,-0.49785006,0.18375267,0.47941425,-0.03177402,0.1308405,-0.12121019,-0.051702254,-0.620347,0.055779375,-0.34614426,-0.15968403,0.36403877,0.103997186,0.19134147,0.038045995,0.16033801,0.2881682,-0.39443293,0.08990322,0.007864803,-0.13320783,0.3689,0.37134382,0.51818216,-0.4714365,0.4890403,-0.08182292,-0.0757227,0.1718092,0.13890278,0.4512117,0.13142447,0.2193766,-0.010624155,-0.32655793,0.22733387,0.8584116,0.22188324,0.36504912,-0.06451078,-0.16191232,0.25679436,0.17904544,0.17513657,0.20501724,-0.5074018,0.07283746,0.03778605,0.2717626,0.34445894,0.1415278,0.25207657,-0.03325719,-0.24857469,-0.009127807,0.2240631,0.066786125,-1.1448114,0.45167756,0.27583474,0.7481478,0.42277265,0.029055677,0.006109776,0.5245109,-0.22156322,0.21357478,0.31952336,-0.22468111,-0.6575093,0.46766692,-0.6084429,0.5374417,0.035016276,-0.060545877,0.06571078,-0.06747302,0.18456301,0.78075665,-0.16885833,-0.05237681,0.10147524,-0.28216195,0.08630716,-0.38421318,-0.06933535,-0.6450641,-0.31744534,0.46407843,0.52652866,0.30003533,-0.07274847,0.05221938,0.050558373,-0.14122897,0.04595388,0.030451294,0.29197544,0.20370619,-0.7076887,-0.25214785,0.53094065,-0.421587,0.13834083,-0.094066896,-0.18403247,0.28599867,-0.31306916,-0.11757663,-0.050333258,-0.59329593,0.008090951,-0.16886106,-0.3818356,0.42938817,-0.10308439,0.36868975,0.21465877,0.03679144,-0.3649831,0.63954335,0.040328134,0.6770346,-0.30052406,-0.09502675,-0.5721647,0.07419575,0.22440487,-0.07268019,-0.12439343,-0.31172138,-0.048603803,-0.46275717,0.3535499,0.09106381,-0.16885251,-0.14910342,-0.26213527,-0.012357531,0.6048069,-0.07485607,-0.23390666,-0.21986504,-0.13703498,-0.32051817,-0.15537706,-0.18318167,0.19744459,0.18725568,-0.024120454,-0.084912255,-0.18971872,-0.07677182,0.3305381,0.06581519,0.31237143,0.22271204,-0.039560646,-0.16576964,-0.2382927,0.21270607,0.38637006,-0.09690787,-0.014061365,-0.2606738,-0.3948297,-0.39206105,-0.014823377,-0.19025995,0.3947684,0.20084125,-0.25432026,0.5765801,-0.088839084,1.0880187,0.13296777,-0.30302775,0.036475077,0.49022686,0.0895346,0.074443646,-0.29728118,0.7242193,0.54948246,-0.0013235807,-0.23790863,-0.1680144,-0.08108929,0.26120368,-0.16237068,-0.04332584,0.11722089,-0.5371953,-0.121821806,0.32791352,0.17714082,0.3113779,-0.017668005,-0.09576451,0.09850824,0.10035844,0.22341105,-0.39672333,-0.22170497,0.25312954,0.22156088,0.15565124,0.16531122,-0.43436262,0.54988587,-0.30759892,-0.07879435,-0.22859854,0.22470848,-0.2026865,-0.19527845,0.18918118,-0.005686894,0.50923526,-0.21339539,-0.29756153,-0.38384682,0.45429635,0.17239931,0.2736809,0.48707408,-0.15036157,0.04260013,-0.008630503,0.47534665,0.8754332,-0.3008352,-0.090263404,0.4758274,-0.35154992,-0.5860794,0.2160067,-0.23345718,0.09701744,-0.086354226,-0.09568912,-0.5634717,0.18916762,0.16394565,0.068268806,-0.0037461221,-0.6070255,-0.2398425,0.14446191,-0.32420862,-0.29191932,-0.35535038,0.24167064,0.8417667,-0.41350555,-0.20089397,0.14170115,0.11968061,-0.12370608,-0.47921842,-0.051578462,-0.33146563,0.20262615,0.065315306,-0.3791016,-0.16842334,0.11068856,-0.32047206,0.15066274,0.12833443,-0.3758534,0.19098449,-0.16473666,-0.05406574,0.9717226,-0.14334421,0.026064936,-0.48183435,-0.37485158,-0.73921853,-0.39197832,0.46932343,0.14984527,-0.042974956,-0.4394943,0.03819154,0.030515928,-0.13774599,-0.18980499,-0.495983,0.5201467,0.03724117,0.15961215,0.013925785,-0.84509325,-0.044433624,-0.003315946,-0.2108525,-0.5679987,0.49346906,-0.18551958,0.8514601,0.045172665,0.019475358,0.3304889,-0.26687753,-0.053848855,-0.33402815,-0.19466941,-0.6701064,0.098495245 -359,0.3936746,-0.18311538,-0.41547486,-0.17173803,-0.2672259,0.12780501,-0.18199413,0.2093463,0.08871172,-0.21741351,-0.13882837,-0.15895769,-0.06855543,0.37911904,-0.10385078,-0.6800562,-0.19662607,-0.019178264,-0.74021596,0.4456239,-0.60135955,0.43313712,0.16770303,0.19748496,0.009831274,0.53215283,0.3206888,-0.26326728,-0.06362379,0.031666137,-0.07825661,0.08645564,-0.43347853,0.055249978,-0.09782757,-0.15630753,0.08571226,-0.2951654,-0.32859576,-0.58902186,0.34078476,-0.6549716,0.32905784,-0.06400811,-0.07814741,0.10409463,0.305062,0.44431865,-0.33808446,0.10826135,0.1900166,-0.15877785,-0.08509118,-0.24963541,0.0036159193,-0.41323286,-0.396941,0.0057408772,-0.6102721,-0.4420624,-0.057390388,0.17349057,-0.3170887,-0.025863664,-0.11856335,0.38574815,-0.3698914,-0.048397418,0.37992495,-0.13369821,0.27970904,-0.61863947,0.033189215,-0.064375944,0.42499664,0.02564961,0.041147493,0.3963826,0.28915754,0.38703328,0.22313438,-0.25127006,-0.19525975,-0.21250631,0.26855686,0.3695251,-0.19617002,-0.23846708,-0.14472511,0.15322079,0.02792553,0.27238038,-0.0702626,-0.31316125,-0.025736328,0.0099695865,-0.29244053,0.43573394,0.5955186,-0.24110898,-0.39664066,0.30569714,0.65941566,0.11324738,-0.2556187,-0.030133262,-0.072776474,-0.42604375,-0.08565914,0.24546537,-0.060305882,0.39943814,-0.05984539,0.1782811,0.79676104,-0.113632016,0.018518336,-0.27163544,-0.20680203,-0.117601156,-0.16202363,-0.008826067,-0.06686615,-0.5857747,-0.09038272,-0.25003582,0.6548223,0.20070507,-0.7121824,0.4126515,-0.4095644,0.18197969,-0.09568734,0.53102267,0.65174246,0.22372887,0.17410961,0.80290985,-0.45217386,0.1433594,-0.09599462,-0.5137825,0.017139912,-0.15192893,0.05082189,-0.48452008,0.076007284,-0.18399785,0.08096194,-0.054985393,0.17909864,-0.50688374,0.019114831,0.17369537,0.7919638,-0.33614135,-0.0037409489,0.4952516,1.1043366,0.88971496,-0.03554515,1.1494851,0.3311042,-0.32258344,0.31879807,-0.7033673,-0.5141791,0.17863248,0.44412696,0.24332285,0.34057823,-0.15234879,-0.028910875,0.3748255,-0.39420065,0.16493252,-0.09386108,0.23941539,0.1792105,-0.027972838,-0.27513814,-0.06584142,-0.048639655,0.0019773666,0.1407703,0.14449762,-0.27704218,0.30995825,-0.087172285,1.2710466,-0.07703965,0.17878053,0.04757633,0.47720656,0.13369791,-0.11652807,-0.026934918,0.44944814,0.4569597,-0.017861502,-0.6994508,0.19848628,-0.41964895,-0.4070376,-0.22375576,-0.4266952,0.0022751584,0.21586165,-0.37352005,-0.15922198,0.028458336,-0.2619252,0.3737166,-2.9559078,-0.20453134,-0.27868053,0.22585592,-0.42556548,-0.16574113,-0.041662596,-0.56618357,0.3149053,0.40462518,0.44072545,-0.52714103,0.52696186,0.3993838,-0.34891057,-0.11152234,-0.550858,0.016120581,-0.1331426,0.5116986,0.005499206,0.01523933,-0.15167674,0.18556575,0.6054857,-0.05224492,0.08054104,0.35324472,0.38063228,0.16751096,0.6367192,0.03893323,0.5538866,-0.28470477,-0.09304088,0.4074386,-0.21380974,0.12485719,-0.18091641,0.13712645,0.37392756,-0.42142394,-0.77461004,-0.61332977,-0.4365902,1.0956417,-0.34135222,-0.2849917,0.28587666,-0.015562689,-0.01011204,-0.051319584,0.527911,-0.0062532984,0.1753271,-0.67063314,0.25148654,-0.078017555,0.12753671,0.02371671,-0.07926772,-0.29218656,0.6620526,-0.023294313,0.55823374,0.22528337,0.25123295,-0.11707885,-0.38460648,0.06652727,0.8973904,0.32760534,-0.030315153,-0.049586814,-0.27908647,-0.049455322,-0.20857221,-0.01966116,0.40029478,0.7148655,0.088712275,0.11331297,0.2680614,-0.14760101,0.014435971,-0.07336948,-0.18597268,0.047448363,0.0045050173,0.43627667,0.4513536,-0.09800631,0.4683663,-0.19563943,0.24342217,-0.07638005,-0.47775823,0.6152923,0.5470623,-0.162008,-0.12777098,0.36207595,0.49670723,-0.35244772,0.4134604,-0.65351725,-0.2699564,0.7331949,-0.28607315,-0.3651612,0.17284772,-0.19610034,-0.0022698115,-0.7727821,0.27268198,-0.38681042,-0.3784616,-0.4019045,-0.21642078,-3.743237,0.14747682,-0.23800892,-0.23504601,-0.08058852,0.09975662,0.28856444,-0.6203916,-0.3070912,0.08258778,0.21568263,0.46829468,0.07684914,0.07420307,-0.24319753,0.008296132,-0.16626999,0.17441264,0.033062823,0.18115325,-0.146376,-0.45469904,0.05805111,-0.12861082,-0.52133965,0.17027421,-0.25789398,-0.4104889,-0.1629853,-0.39315864,-0.1754057,0.5908814,-0.276923,0.06620381,-0.22792244,0.07540143,-0.13707034,0.2140251,0.09375409,0.2259465,0.13727006,-0.08045605,0.057857715,-0.5039713,0.45310792,-0.015505322,0.39646846,0.18330856,0.028730523,0.13416924,0.35299557,0.4694435,-0.16674128,0.7912158,0.4190895,-0.11040533,0.28188077,-0.27531078,0.009229843,-0.53472656,-0.46739027,-0.053030476,-0.33566356,-0.6623628,-0.07483677,-0.3479758,-0.73186547,0.48368803,-0.090377316,0.32455465,-0.061142493,0.2556689,0.34860978,-0.18726638,0.06264604,-0.17610775,-0.156239,-0.4870358,-0.3393852,-0.6057992,-0.509457,0.08449575,0.7715564,-0.25158894,-0.07145516,-0.30354357,-0.24137735,-0.019717686,-0.08067863,0.13273266,0.3863913,0.2392708,-0.12495964,-0.60199434,0.52188814,-0.16805449,-0.09283056,-0.5195217,0.057031635,0.58226043,-0.5490984,0.54251635,0.25269046,0.07613124,0.09080979,-0.37136292,-0.15464675,0.034479737,-0.27342582,0.4883182,-0.02913713,-0.73683137,0.44267598,0.2148376,-0.40270606,-0.7130211,0.30512607,-0.03154402,-0.33772972,0.023617804,0.23222195,0.116335556,-0.06909864,-0.27045655,0.08772605,-0.4073944,0.17476118,0.18070412,-0.026116157,0.3304155,-0.1667719,-0.2709538,-0.6715969,-0.015945021,-0.42754623,-0.18827543,0.2743288,0.021064132,0.06730814,0.12146797,0.03209551,0.388184,-0.04986791,0.15113685,0.15241644,-0.3200037,0.22431228,0.41994068,0.23550373,-0.45793232,0.46932092,0.08354974,-0.22744098,0.0121905245,0.050679415,0.46250182,0.16538633,0.28241226,-0.13125369,-0.18610346,0.53156304,0.70979106,0.17467283,0.42566532,0.18803053,-0.25780845,0.37647605,-0.018784083,-0.021515526,0.121251695,-0.3934997,-0.080593415,0.11825232,0.22618905,0.5018752,0.344609,0.44536796,0.026636595,-0.15135156,0.048541993,0.29858637,-0.06841543,-0.8558382,0.32748425,0.26562658,0.81563354,0.3115024,0.028938452,-0.21528654,0.6308352,-0.2679245,0.08168381,0.37333533,-0.10437343,-0.50655264,0.6866937,-0.6122785,0.42236742,-0.1969662,-0.13150875,0.049354583,0.18633491,0.2736512,0.76714987,-0.1266278,0.04860316,-0.073779464,-0.22883612,0.078441694,-0.2544554,0.07379083,-0.34890652,-0.34736723,0.55803007,0.30008298,0.21382557,-0.09503891,-0.04201095,0.0006711869,-0.14171284,0.2451244,-0.111439675,0.0696787,0.06117414,-0.6004842,-0.31405166,0.4348439,0.024286166,0.24234547,-0.06909065,-0.22274333,0.047423147,-0.25999415,-0.017522208,0.02348959,-0.5229406,0.023870446,-0.0061499653,-0.4561833,0.40994942,-0.3455113,0.15584555,0.18659317,0.0039429157,-0.3233569,0.22193839,0.1012437,0.73489875,0.04045197,-0.20574951,-0.48337364,-0.012060192,0.271158,-0.26543447,0.11173094,-0.42081878,-0.03786474,-0.5856384,0.6127478,-0.16951638,-0.32303938,0.23420732,-0.28942013,-0.044190325,0.6242663,-0.157999,-0.15543534,0.19569753,-0.16896504,-0.38028708,-0.032846842,-0.298475,0.19131619,0.21374424,0.09352708,-0.10769744,-0.1543342,-0.059739042,0.5268839,0.10725298,0.37597102,0.15593913,0.059961677,-0.23729862,0.009245473,0.19020994,0.3235762,0.25275564,0.034760293,-0.31250083,-0.44699726,-0.25780463,0.11902896,-0.042709477,0.20271191,0.03818682,-0.42556947,0.744458,-0.04382618,1.2170621,0.2145637,-0.19561616,0.06546351,0.40956587,-0.008368085,0.16343959,-0.42691883,0.6763338,0.6521657,-0.016866338,-0.098490566,-0.30016506,-0.09931912,0.3059166,-0.33246517,-0.018612504,-0.004026816,-0.556497,-0.47384048,0.19669542,0.16554415,0.09801392,0.035966065,-0.11927511,-0.053268902,0.038453877,0.4745786,-0.53074735,-0.172418,0.16961718,0.1501661,-0.06641011,0.12638173,-0.32991543,0.5355024,-0.5883733,0.08747729,-0.28119275,0.023430975,-0.12757318,-0.23374093,0.1561392,-0.07532205,0.36630872,-0.18801716,-0.5029967,-0.022851668,0.5694704,0.091357134,0.22550967,0.67788035,-0.27404168,0.11011348,-9.9185636e-05,0.52894884,1.2314218,-0.40938288,0.05811813,0.2562301,-0.4039621,-0.6229368,0.43374118,-0.21983974,-0.045810614,-0.108904086,-0.4880916,-0.2554925,0.36410922,0.10245361,-0.035526562,0.10289311,-0.5019479,-0.26784086,0.39853516,-0.3702648,-0.2990614,-0.18251832,0.4374742,0.7116259,-0.372687,-0.24642193,0.069137335,0.40147278,-0.3457411,-0.3666892,-0.02177916,-0.10328949,0.3968439,0.16343737,-0.121069625,-0.017504832,0.24176347,-0.35234588,0.17327486,0.16591746,-0.44327316,-0.05843892,-0.047550373,-0.13372326,0.7871533,-0.1929488,-0.13742508,-0.73592275,-0.41333362,-0.9261804,-0.5908947,0.38292584,0.1399237,-0.0034239152,-0.30145752,-0.06225708,0.007347696,-0.025187591,0.004032135,-0.56643414,0.2692199,0.09785592,0.5832443,-0.19856274,-0.7664836,-0.053394362,0.15267862,-0.14725792,-0.6551251,0.54252696,-0.12639314,0.79422337,0.023968395,0.01826171,0.12584718,-0.36921456,0.14503877,-0.41647217,-0.26311943,-0.8675416,0.16711934 -360,0.49796352,-0.2697957,-0.46565452,-0.057399303,-0.32320553,-0.06773582,-0.073013656,0.75910234,0.38539127,-0.13349235,-0.1426747,-0.1340318,0.030845622,0.45705938,-0.15571368,-0.51465625,-0.04920579,0.123458564,-0.30633312,0.4149343,-0.4379114,0.23510075,-0.2227959,0.44311818,0.33624256,0.26956952,-0.16467358,0.11503833,-0.19825989,-0.12984815,-0.119140975,0.26000103,-0.20465636,0.05142348,-0.007955735,-0.30584118,-0.16164628,-0.6167524,-0.4233099,-0.6315591,0.49878109,-0.76906663,0.44812667,-0.031154731,-0.2413605,0.42101946,-0.04049708,0.31006882,-0.1092859,-0.15194018,0.047161847,-0.021949356,0.024048137,-0.2383095,-0.24549668,-0.29100838,-0.6499904,0.071913,-0.38131395,-0.28829315,-0.17405991,0.06322015,-0.28941652,-0.012467076,0.030949524,0.56402767,-0.45781696,0.23322405,0.0664604,-0.084551156,0.022430763,-0.58127326,-0.2107761,-0.013231501,0.23104751,-0.19888568,-0.21286552,0.23375398,0.2424895,0.22763185,-0.22607328,0.015973978,-0.50218886,0.073201425,0.032752022,0.61766076,-0.041207593,-0.7111912,0.045439884,0.09570092,0.17018147,0.22082944,0.2889962,-0.09452024,-0.14362767,0.02745375,-0.066759594,0.7054832,0.41021037,-0.17277904,-0.21569782,0.3585584,0.5400505,0.3474373,-0.100166164,-0.051146653,0.063927345,-0.572676,0.005029609,-0.15340576,-0.16904624,0.55167264,-0.03993765,0.34355783,0.5865841,-0.20456783,-0.004390154,0.1592397,0.009735807,-0.0124539435,-0.222784,-0.23096573,0.18059105,-0.32071662,0.14581905,0.05393141,0.65339595,0.16319533,-0.78641564,0.3820151,-0.5281492,0.12222937,-0.14077519,0.33736697,0.62021613,0.33349356,0.34496936,0.5224236,-0.18528523,0.17242877,-0.10149276,-0.3805376,-0.026835402,-0.16596562,0.013255581,-0.5492544,-0.13888873,0.05224975,-0.3556501,0.34153855,0.3073113,-0.4882872,-0.066318564,0.17364772,0.76953506,-0.23192157,-0.18357998,0.9090479,1.0927877,0.9179426,-0.043793615,0.8424914,0.075117774,-0.017055502,0.2183301,-0.46718502,-0.5190435,0.24570428,0.21153305,-0.48647928,0.4084607,-0.08582735,-0.032767404,0.37805733,-0.20626305,-0.02247504,0.0024596553,0.28539374,0.41151866,-0.2684879,-0.488894,-0.40035412,-0.21736646,0.15029591,0.21887648,0.32752058,-0.32223466,0.3155472,0.019806236,1.665182,0.12263385,-0.022684991,0.051961232,0.6342748,0.21928878,-0.24412835,-0.07966408,0.1940161,0.23444296,0.06763512,-0.57614857,0.23010091,-0.11798748,-0.5202549,-0.12731154,-0.35664964,-0.2147706,-0.12761883,-0.3558675,-0.13450018,-0.22420907,-0.3132678,0.5440176,-3.0485537,-0.20609732,0.06466586,0.37396464,-0.0070001483,-0.46438363,0.044091742,-0.37638426,0.23868383,0.26233038,0.4647933,-0.7472765,0.43747357,0.38410744,-0.64699596,-0.10631762,-0.4788425,-0.051989723,0.056714743,0.3458705,-0.021295292,0.14929228,0.31110632,0.22350782,0.45071545,-0.08017983,0.1093693,0.24015851,0.41182923,-0.11685765,0.35172603,-0.24293637,0.40797928,-0.07920034,-0.18675096,0.25926444,-0.3506042,0.19963944,-0.19988094,0.11289721,0.32488328,-0.2557876,-1.0048773,-0.43165198,0.12850721,1.0916387,0.064443834,-0.31877288,0.37974682,-0.60371363,-0.26392075,-0.23771052,0.44675672,-0.12705058,-0.3195714,-0.63664836,-0.08157284,-0.1493294,-0.06839814,0.028111314,-0.16536178,-0.3723533,0.5150328,0.0133991465,0.34618464,0.24973236,0.13859026,-0.46902883,-0.41662827,0.11038306,0.54764086,0.31980106,0.10581634,-0.22483365,-0.15395711,-0.28826064,-0.09373957,0.16346483,0.51692396,0.54673886,-0.03603532,0.15926027,0.14446758,-0.06297649,0.029860312,-0.18729119,-0.07464684,-0.06510341,-0.0016595721,0.57144076,0.7878882,-0.25473043,0.640493,-0.016872024,-0.010625879,-0.21930945,-0.33963332,0.47196245,0.90618616,-0.11932764,-0.3563546,0.5342173,0.45413843,-0.3176739,0.21586074,-0.4747746,0.07681464,0.4116434,-0.27194643,-0.3402544,0.25055906,-0.12883526,0.05135706,-0.7716965,0.22662741,-0.1562902,-0.58505756,-0.49600402,-0.05122937,-2.8433545,0.060083617,-0.17508547,-0.44902134,-0.10203407,-0.4002522,-0.14554602,-0.6539411,-0.63747674,0.21353191,0.13500936,0.66740316,-0.18477277,0.14975126,-0.09403339,-0.2668927,-0.2807697,0.12880905,-0.048817486,0.5408106,0.09641854,-0.24033551,-0.09942625,0.015427329,-0.57955986,0.16463907,-0.5045996,-0.39743498,0.010873179,-0.5532608,-0.21508242,0.6393408,-0.22085728,-0.017139146,-0.24680926,0.006664125,0.0022534777,0.34980264,0.0325763,-0.07486754,0.19975339,-0.009208153,0.39897725,-0.06997502,0.3320427,-0.024834173,0.46841803,0.23256075,-0.1254908,0.3265616,0.54755336,0.7591975,-0.034738783,0.83251333,0.40564713,-0.030465126,0.13627036,-0.27886444,-0.21087475,-0.2765948,-0.25680402,0.12022597,-0.3309441,-0.52429795,-0.21951097,-0.37511888,-0.76535124,0.4823006,-0.028781937,0.13318713,-0.009688401,0.26149747,0.6423211,-0.22922331,0.054339845,-0.021409651,-0.103089355,-0.57220274,-0.15593706,-0.5030086,-0.3359921,0.17963015,1.0074555,-0.27151665,0.045793284,0.09814021,-0.3857604,-0.09440596,0.083845936,-0.051037002,0.09090218,0.05484262,-0.30198538,-0.51497084,0.2902967,-0.22102128,-0.24365385,-0.54825014,0.0929643,0.48036528,-0.34201893,0.4438838,0.12282926,-0.031191962,-0.14225088,-0.4163442,-0.10735736,0.02006656,-0.14321879,0.41138592,0.35972607,-0.7783678,0.3814321,0.46680388,-0.20757847,-0.6029028,0.50887907,-0.078960516,-0.29448888,-0.19716068,0.20912488,0.45075202,0.0046360246,-0.2986335,0.22720008,-0.3888698,0.21531892,0.12732537,0.012049873,0.17602009,-0.08975639,-0.006009052,-0.7236514,0.091655254,-0.3082197,-0.31304705,0.084487,0.24733059,0.45727167,0.08431544,0.1340215,0.21010049,-0.4138324,-0.03667466,-0.054727633,-0.3063366,0.20766331,0.34061837,0.6395363,-0.39130113,0.50791556,0.0341555,-0.03363334,0.34534106,-0.08533224,0.42465147,0.0057396046,0.3078665,0.34056556,-0.372723,0.2090552,0.78966266,0.06925871,0.39745927,0.044847935,-0.08618707,0.12886417,-0.015808642,0.2874877,0.024241269,-0.46588445,0.16265717,-0.3384994,0.19522877,0.45018816,0.14721249,0.19939996,-0.09174181,-0.57688755,0.022014461,0.3286862,0.048856754,-1.4186772,0.22395511,0.2804916,0.90097666,0.29308683,0.10399425,0.046264518,0.7242346,-0.004468473,0.09063,0.33925986,0.2555693,-0.5713009,0.43583915,-0.7526204,0.6709285,0.02911075,-0.11567729,-0.0063048503,-0.07897058,0.3661619,0.4874555,-0.15414922,-0.1339942,0.09132215,-0.35150024,-0.11624241,-0.41951844,0.041156914,-0.7289927,-0.048689585,0.7410782,0.60810775,0.26435837,-0.050447453,0.055941958,0.22586083,0.03453346,0.01901052,-0.05883028,0.086624555,-0.069013566,-0.68861914,-0.09343252,0.35306755,-0.088283785,0.13835679,-0.23529238,-0.06830457,0.17022699,-0.24879237,-0.38049772,-0.07757486,-0.73438615,0.09281536,-0.12520288,-0.59210426,0.43390647,0.06004029,0.25561643,0.3036938,0.10385344,-0.2781426,0.403819,0.15010439,0.8931466,0.028133372,0.03740182,-0.41431764,0.19797187,0.14822932,-0.1006572,-0.15698941,-0.14225465,0.03452565,-0.34048045,0.39200416,-0.025960783,-0.41570878,-0.19723241,-0.12550397,0.26838478,0.5138797,-0.30377242,-0.16850972,-0.17157167,-0.3916181,-0.23108584,-0.1982183,-0.12432114,0.29135302,0.34842682,-0.37211564,-0.1293172,-0.09696916,0.0048046783,0.4414494,-0.051696867,0.56209964,0.265763,0.2283587,-0.09898021,-0.38199964,0.14950563,0.59253377,-0.0921246,-0.19344407,-0.56485647,-0.41535124,-0.20660956,0.2143333,-0.09335569,0.3211188,0.14199293,-0.13538875,0.55998534,0.1162134,1.1587653,0.07586279,-0.35801756,0.43514776,0.31593558,0.08997498,-0.16780365,-0.27644137,0.8703682,0.28539324,-0.11631227,-0.19829203,-0.36579645,0.058724836,0.20717601,-0.21306072,-0.04092129,0.06644249,-0.62729,-0.08244484,0.43916824,0.068653375,0.17587276,-0.18295647,0.2397996,0.3791226,0.015424263,0.27496907,-0.3909509,-0.105307795,0.28497696,0.24960436,0.15882643,0.11592519,-0.5766313,0.23223941,-0.37350821,0.09268231,-0.30639207,0.2679883,-0.20074786,-0.25216207,0.2229455,0.24555571,0.3777322,-0.24707793,-0.36274847,-0.367884,0.4404633,-0.019053617,-0.037717517,0.17495783,-0.28183052,-0.036937907,-0.08480538,0.40954754,0.85066414,-0.050922763,0.007511983,0.3096014,-0.3198575,-0.68704224,0.3786874,-0.22868319,0.21256213,0.030997908,0.10093135,-0.7287538,0.30951592,0.29863706,0.13492452,-0.047908485,-0.40998152,-0.3739173,0.21104665,-0.34248313,-0.1294021,-0.38881,-0.13913172,0.6571401,-0.19018905,-0.31970662,0.059811145,0.43177798,-0.07077828,-0.21280019,0.072385736,-0.32184994,0.24395542,-0.17386077,-0.2841204,-0.3714812,0.03211325,-0.32833865,0.20293538,0.08472663,-0.24003148,0.2145075,-0.22856021,0.03149578,0.92788935,-0.34682772,0.37329432,-0.5361583,-0.5686248,-0.8174775,-0.48682487,0.20098181,0.03122284,-0.07423713,-0.8321211,0.06267492,-0.031809587,-0.3081946,-0.05638581,-0.3966639,0.45537862,0.031091457,0.1511095,-0.091571964,-0.81826633,0.05498904,0.12232707,-0.40639758,-0.64034224,0.51507443,0.08025955,0.82418877,-0.0045207404,0.13866149,0.09680581,-0.21755636,-0.058518816,-0.22746907,-0.24838902,-0.45018658,0.17564897 -361,0.45662248,-0.06940386,-0.40450862,-0.0035135425,-0.23345004,-0.0041090916,-0.14977911,0.2517875,0.37264097,-0.32051608,-0.3251893,-0.18059033,-0.037998088,0.19648656,-0.059632026,-0.27029675,-0.0100082755,0.5158541,-0.5884834,0.5720181,-0.15016451,0.26012027,0.10907365,0.5882118,0.1676368,0.041382786,-0.020639108,-0.09015939,-0.11864174,-0.26545164,0.20732641,0.07218823,-0.95305294,0.28618348,-0.43749565,-0.40058157,-0.075700864,-0.49009615,-0.4315925,-0.84669524,0.20748605,-0.76185983,0.64878803,0.08019397,-0.38068658,0.21548226,-0.03751725,0.35319296,-0.01110054,-0.059469108,0.3633723,-0.31659266,-0.15557456,-0.3038613,0.034614887,-0.1825104,-0.51484203,0.1178116,-0.19669707,0.099539086,-0.410436,0.13910863,-0.21766901,0.0032834227,-0.1633626,0.49456608,-0.42041555,0.2770105,0.041172247,-0.042340115,0.3599304,-0.55605245,-0.09652995,-0.20509213,0.28546068,-0.1750491,-0.19129722,0.2374755,-0.07469245,0.5870131,0.005030669,-0.09620938,-0.13842452,0.15836607,0.0110948365,0.42672136,-0.099711016,-0.12571344,0.002815696,-0.21099307,0.12337109,-0.04939199,0.08421048,-0.18475668,-0.044773165,-0.32068458,-0.014836027,0.18739015,0.5831414,-0.100954376,-0.1321799,0.15488577,0.713643,0.27399933,0.0492268,0.05378843,0.034635488,-0.4823669,-0.3022889,-0.07279074,-0.334912,0.569244,-0.09893139,0.14303686,0.5904323,0.04061894,-0.16560186,0.1587808,0.13812222,0.09740896,-0.21073821,-0.50568074,0.63518155,-0.4061222,0.14797226,-0.11291964,0.6882797,0.13040888,-0.6501461,0.2640197,-0.56368285,0.049036857,0.024858452,0.5412529,0.67265797,0.4590939,0.3442605,0.7132321,-0.48652875,0.16490701,-0.028113237,-0.20292854,0.058979254,-0.2525129,0.14390594,-0.29241624,-0.22996548,-0.11228686,-0.33584368,0.023181153,0.4146444,-0.54425913,-0.11676823,0.24837619,0.69417965,-0.20697044,-0.041315094,0.6754639,1.0727448,1.0793172,0.11561433,1.1595167,0.23056124,-0.3465896,0.019467281,-0.08630224,-0.7357139,0.1672447,0.13536757,-0.27788928,0.15722539,0.32188103,-0.073347464,0.49506935,-0.9455317,0.0199564,-0.2006626,0.17434451,-0.13559696,0.016788244,-0.60151714,-0.26856327,-0.22534916,0.08690625,0.05662748,0.23620874,-0.27692428,0.1581982,0.110916615,1.5467308,-0.28349835,-0.0058725188,0.14294428,0.36846793,0.06401388,-0.26034105,-0.17532757,0.10400966,0.29306847,0.066346936,-0.4181236,-0.011520734,-0.033693165,-0.39837056,-0.24030367,-0.059305485,-0.04374238,-0.037158053,-0.3891263,-0.4437564,-0.06181222,-0.53158784,0.43874007,-2.0583704,-0.14553028,0.028240545,0.61928505,-0.35315466,-0.268438,-0.11023808,-0.42043594,0.31190962,0.26886442,0.3462651,-0.56777775,0.33804765,0.56865287,-0.66891503,-0.0829991,-0.60128313,-0.21847092,0.06905425,-0.016059931,0.11527724,-0.10780648,-0.16296738,0.053822048,0.2698657,0.023105837,0.14268702,0.46263158,0.2678242,-0.08031835,0.32447842,0.04933898,0.4584869,-0.46139696,-0.19132076,0.54420793,-0.32831648,0.22822809,-0.4411279,0.06411555,0.4912353,-0.44833705,-0.6851801,-0.5730143,-0.2870373,1.0642831,-0.15917514,-0.5023668,0.1846121,-0.2527309,-0.25444227,0.096873745,0.60242283,-0.05095411,0.06995977,-0.8800643,-0.17120904,-0.13796112,0.35343584,0.10901398,0.04201859,-0.6701952,0.6631676,-0.17763938,0.29285187,0.51845646,0.298562,0.014769738,-0.48301446,0.18378693,1.0511394,0.37757143,0.19302501,-0.4881148,-0.052969966,-0.36019403,-0.03702859,-0.2364838,0.58843446,0.68643516,-0.29400998,0.038432315,0.15064934,-0.048237555,0.018227926,-0.15129127,-0.4324856,-0.084153906,-0.1932869,0.6213437,1.1166134,-0.020492705,0.19328164,-0.12581475,0.2373531,-0.20758358,-0.45228326,0.5186638,0.9221662,-0.16222903,0.04864728,0.7769318,0.3324219,-0.21583956,0.5251429,-0.72718036,-0.47631696,0.24822792,0.04011325,-0.43220806,0.14564699,-0.3512997,0.2865311,-0.6516985,0.5466136,-0.14335926,-0.44017187,-0.7615465,-0.08134719,-1.3305871,0.17549871,-0.30809245,0.009010691,-0.08044234,-0.1721213,0.031768434,-0.40221915,-0.6308202,0.27847427,0.11368036,0.6130841,-0.11997534,0.3001201,-0.0808135,-0.41629952,-0.36277536,0.067361504,0.3939315,0.29458782,0.041920997,-0.37193224,0.008812757,-0.12203283,-0.103995614,-0.14119089,-0.742948,-0.49898177,-0.16708161,-0.48628986,-0.33691055,0.5740414,-0.3549464,0.001878688,-0.31491444,-0.14634511,-0.075102635,0.11882074,0.06506132,0.23528291,0.12806562,-0.18002525,-0.24028212,-0.13737722,0.41124395,0.16063362,0.036674876,0.36119187,-0.23127382,0.15551975,0.3913878,0.7249756,-0.33431453,1.0516958,0.69846153,-0.09436277,0.06725864,-0.15228441,-0.28912348,-0.50201565,-0.13375998,-0.06584096,-0.451488,-0.34970632,0.105310716,-0.3383015,-0.8368533,0.6286056,-0.10608347,0.10354233,0.27359873,0.09700168,0.3981167,-0.28269857,-0.2998811,-0.141368,-0.048776135,-0.6087055,-0.4430806,-0.5243725,-0.4268589,-0.09123456,1.1750005,-0.014393472,0.1674013,0.4966943,-0.16506103,0.07524955,0.086496875,-0.200627,-0.15622947,0.8065204,0.16551307,-0.66467863,0.3351032,0.19023544,-0.06603192,-0.6010673,0.4380449,0.62269235,-0.5603752,0.5223291,0.38275015,0.024145126,-0.15769124,-0.6256291,-0.44225502,-0.13747174,-0.23117803,0.30336604,0.24940076,-0.6369678,0.24197966,0.17923053,-0.34922367,-0.9836802,0.51383936,-0.052640095,-0.50673854,0.14143418,0.24723086,-0.21730232,0.060244117,-0.028560685,0.2909514,-0.29415774,0.46751451,0.15335305,-0.28224996,0.03826545,-0.47769362,0.0074478206,-0.8668194,0.14461862,-0.5100387,-0.50769603,0.09653907,0.12226556,-0.1922833,0.5638602,0.5694995,0.31766525,-0.28066894,-0.0082141,-0.30088842,-0.33782065,0.3478751,0.3533406,0.55732507,-0.47272813,0.5359739,-0.089175135,-0.2212158,-0.2896743,-0.08891516,0.40313542,-0.285391,0.3372645,0.045928534,-0.022677375,0.057879083,0.64533496,0.07350826,0.32225344,0.008942476,-0.10943956,0.34189433,0.05415116,0.2554478,-0.118102,-0.6595447,0.2803651,-0.27302867,0.075681426,0.25436166,0.16111249,0.3347925,-0.08619695,-0.4288302,0.107861474,0.17266501,-0.0745198,-1.2610291,0.302116,0.090829425,0.6906103,0.5972087,0.010522842,0.0719604,0.88730663,-0.0633398,0.11388858,0.21889177,-0.04704052,-0.23257685,0.50753677,-0.5575892,0.23541634,-0.14354767,-0.064302176,0.117257446,0.001839922,0.33472508,0.62706745,-0.14381391,0.010398507,-0.3176592,-0.22978494,0.035378493,-0.32813868,0.39867193,-0.7377425,-0.3820296,0.8753332,0.59278905,0.40394205,-0.24321413,0.17453298,-0.034918692,-0.19353512,0.23996346,0.13193712,-0.15846154,0.34351602,-0.54742694,0.2508671,0.4290136,-0.35814685,-0.11792715,-0.0948195,-0.24143508,0.061547756,-0.344727,-0.22112964,-0.09964614,-0.96558887,-0.18678276,-0.60505086,-0.09192419,0.34946683,-0.0187524,0.18773317,0.13134703,0.07911265,-0.24059692,0.40021926,0.096929595,0.7480495,0.3121414,-0.074564986,-0.18199374,0.4430569,0.27042872,-0.18677591,0.15590443,-0.17955218,0.17281786,-0.54073584,0.3407912,0.047842264,-0.21241197,0.21149364,-0.14443046,0.06842721,0.66337174,-0.044300683,-0.12080201,0.15615152,-0.2947631,-0.18973705,-0.108523995,-0.26028177,0.29210892,0.26354605,-0.24286117,-0.09979301,-0.06722551,-0.20208311,0.43760973,0.06492503,0.52335095,0.3573492,-0.038776875,-0.37665686,0.025918035,-0.03217978,0.67718506,-0.0036556995,-0.24559662,-0.22294539,-0.40526587,-0.36316362,0.56939405,-0.10118169,0.2122183,0.12237969,0.06711679,0.816935,0.39378807,1.0112793,0.042045675,-0.17730466,0.16699776,0.44034898,-0.08314828,0.007967811,-0.64431417,0.9319443,0.40729207,-0.15579851,-0.025418751,-0.10493781,-0.067925446,0.088246055,-0.10285127,-0.055455163,-0.035568025,-0.7946952,-0.042486522,0.13503595,0.46716213,-0.1200072,-0.13338384,0.14968944,0.33185166,-0.10093232,0.40093577,-0.5207163,-0.23144343,0.48606846,0.23542213,0.041199878,0.16052318,-0.2977057,0.3482173,-0.4543834,-0.040966466,-0.39655298,0.08537232,-0.23999588,-0.38265273,0.2075937,0.1927808,0.45291325,-0.62966925,-0.10856671,-0.33517092,0.36324868,0.28395775,0.08762377,0.55283535,-0.29530576,-0.096344404,-0.035116017,0.37772793,0.9106386,-0.43992174,0.25472447,0.40035054,-0.24985097,-0.443804,0.35018831,-0.20282644,0.01625492,-0.11628966,-0.3345372,-0.6249993,0.19554418,0.03601024,-0.21430741,0.109673895,-0.91843915,-0.00788419,0.46892676,-0.1583236,-0.13665663,-0.22214444,-0.0053221467,0.4191389,0.017552119,-0.47342923,0.04269941,0.20996983,-0.32155484,-0.49117836,-0.033615395,-0.59906393,0.15393016,0.07719814,-0.40911028,-0.38646978,0.040322416,-0.54848725,-0.12113318,0.11936033,-0.31395817,0.0116618965,-0.38574484,0.18933609,0.8890094,-0.07343075,0.19002557,-0.2734687,-0.41200745,-1.0369961,-0.18977165,0.35064098,0.22801381,-0.031021796,-0.4763014,-0.14858659,-0.2322639,-0.07882984,0.044199195,-0.40996927,0.3518206,0.35617396,0.41325554,-0.29493484,-0.89408994,0.05083853,0.13280807,-0.39288476,-0.44782147,0.2766251,0.23602046,0.9824769,-0.06702229,0.06361734,0.04281155,-0.6772764,0.17230085,0.04058161,-0.17176077,-0.68160015,0.019821597 -362,0.22216204,-0.22317496,-0.50383073,-0.040160958,-0.30944487,0.2270812,-0.2862664,0.45623222,0.14483222,-0.4599017,-0.06886654,-0.09660527,-0.10218386,0.22105983,-0.12307542,-0.23468794,-0.042792883,0.23044515,-0.5540239,0.36706442,-0.37832636,0.23072772,-0.039099026,0.3311748,0.08660055,0.29080427,-0.095801316,-0.08717968,-0.04494264,-0.25713536,0.0051985225,0.22380342,-0.5859307,0.36502045,-0.27230728,-0.2708977,0.014948899,-0.31949326,-0.25054702,-0.65569717,0.10299856,-0.8029992,0.5569999,0.0020869474,-0.24610282,0.10277686,0.07471417,0.44651732,-0.1649966,0.0740466,0.31404248,-0.31522733,-0.25918275,-0.37936923,-0.0653685,-0.45286375,-0.48868412,-0.06397649,-0.50471336,-0.111052044,-0.15257612,0.28446656,-0.21730667,-0.06568535,0.04447,0.3025929,-0.36056077,0.307565,0.049966726,-0.15869074,0.15715507,-0.6940076,-0.06323972,-0.17989495,0.23304892,-0.2552327,-0.47573838,0.3170581,0.1642903,0.40541667,0.041424643,-0.10995094,-0.34789243,-0.12000222,0.0923398,0.44986832,-0.23506378,-0.22947365,-0.026214894,0.078066126,0.29466662,0.22707106,0.0135760745,-0.3985162,-0.13356471,0.012773673,-0.12187287,0.32437629,0.5307403,-0.14478745,-0.30972096,0.43727788,0.72816443,0.08876414,-0.14154339,0.049247734,-0.06637272,-0.5720207,-0.06138247,0.030472064,-0.07249069,0.37569442,-0.11176488,0.11043942,0.6917606,-0.36083743,-0.20444734,0.07772417,0.21227923,0.01067268,-0.2694486,-0.16928817,0.3432473,-0.48472112,0.12563623,-0.13220532,0.62030697,-0.03840377,-0.68988776,0.1743981,-0.5194414,0.0186328,-0.04253309,0.53714246,0.7930702,0.53032476,0.17240402,0.70476204,-0.3358764,0.1438573,-0.18341699,-0.21884535,0.1346971,-0.24328664,-0.13707122,-0.50582784,0.079280496,-0.072450414,-0.17025934,0.18494278,0.20739144,-0.6999544,-0.12682973,0.2503899,0.56842655,-0.36963928,-0.111485265,0.6556145,0.91719043,0.8512102,0.13378535,1.1963936,0.2214536,-0.16865346,0.16296639,-0.27603564,-0.7464993,0.17846803,0.20188037,-0.1437179,0.15605578,0.19180816,0.06797199,0.32918233,-0.5371425,-0.15796791,-0.20000052,0.52744216,0.13493109,-0.11414286,-0.23302348,-0.06532092,-0.031166304,0.02651426,0.097870745,0.23133118,-0.31463405,0.32971627,0.19146723,1.3586164,-0.039210625,0.0794646,0.12817478,0.24193494,0.190662,-0.1812384,-0.0342777,0.47236678,0.33102196,0.1951321,-0.40870178,0.060125407,-0.17134802,-0.5022064,-0.17442714,-0.1996967,-0.16501203,-0.087075315,-0.3718523,-0.29992172,-0.045919266,-0.193612,0.6096435,-2.8550622,0.021341983,-0.10296359,0.312697,-0.18191984,-0.4624747,-0.18835713,-0.39607298,0.33819792,0.17199828,0.4597025,-0.54268897,0.19672935,0.3280403,-0.65010893,-0.18556385,-0.6227841,-0.07502679,0.01577553,0.33459166,0.14784239,-0.03984654,-0.06596201,-0.1862279,0.54985446,-0.26852232,0.07478944,0.42824656,0.2639397,0.054002333,0.4050412,0.20031519,0.55866086,-0.29301116,-0.34916785,0.3917485,-0.4177009,0.29026607,0.070788704,0.03576598,0.49277037,-0.2785293,-0.8196776,-0.7702165,-0.025414975,1.1815034,-0.2627352,-0.38765225,0.14172377,-0.3448019,-0.3987519,-0.07593051,0.33528948,-0.102622405,0.06126604,-0.7791069,0.054319393,-0.14776094,0.4045959,-0.008854168,-0.019600682,-0.3902979,0.5840379,-0.20543763,0.35302174,0.45067436,0.18777351,-0.40695724,-0.3463363,-0.033228595,1.0194811,0.415109,0.08032766,-0.08586346,-0.28349826,-0.2862906,-0.12211146,0.21872982,0.6415091,0.41375384,-0.1344572,0.19161947,0.27095786,-0.16987279,0.113802314,-0.15281662,-0.18241236,-0.11214439,0.12717548,0.52628744,0.5910825,-0.008980027,0.57203656,-0.083496355,0.31180412,-0.09874127,-0.5400474,0.38794377,0.87033355,-0.19178829,-0.39820367,0.530991,0.37960353,-0.1814909,0.37915593,-0.55473113,-0.3272412,0.4350796,-0.16923732,-0.44938537,0.13907005,-0.24162285,0.24696249,-0.7753955,0.30731332,-0.22908685,-0.7429904,-0.71092093,-0.2699777,-2.0898414,0.14889066,-0.17240664,-0.103244044,-0.050968993,-0.19080044,0.21450645,-0.52929574,-0.34114343,0.12959987,0.10375834,0.5292409,-0.047922213,0.00059620343,-0.22403142,-0.32527918,-0.16687514,0.3207246,0.20717494,0.21963318,-0.113037795,-0.42427388,0.003177599,-0.016468795,-0.2941558,0.08712377,-0.6451189,-0.38826066,-0.07509635,-0.4566803,-0.26947448,0.7042674,-0.420549,-0.10170989,-0.1060807,0.11611153,0.121681325,0.088501826,0.22992903,0.16013367,0.12847368,0.013707325,-0.06815661,-0.31860194,0.3272642,0.025645072,0.2518446,0.48170286,-0.17222634,0.27163887,0.49465984,0.563835,-0.33717743,0.8483397,0.60356987,-0.10314844,0.2240209,-0.14041616,-0.21797727,-0.45806897,-0.300825,-0.14564157,-0.5608286,-0.26245517,0.021395126,-0.22064005,-0.73297024,0.64149475,0.02067559,-0.11892459,-0.03483819,0.46604246,0.4138198,-0.20951134,-0.17865008,-0.18715292,-0.09658448,-0.4419723,-0.4818316,-0.5324212,-0.50453967,0.008791673,1.3586421,-0.33703658,0.1841381,0.091607936,-0.22719435,-0.026802218,0.32026756,-0.100986265,0.14977883,0.5631723,-0.10465158,-0.5352615,0.3399308,-0.19026352,-0.22896232,-0.6982948,0.35306683,0.59973925,-0.7512999,0.43529573,0.23872373,0.057302628,-0.180759,-0.58846146,-0.13046496,-0.05550456,-0.4043117,0.30698243,0.25744256,-0.7594372,0.4233511,0.2928382,-0.24866104,-0.5863513,0.3427796,-0.059439663,-0.12221754,0.015122445,0.32833913,0.16678163,-0.03268489,-0.18883258,0.2573615,-0.28580314,0.37121534,0.06297266,-0.06562191,0.18125172,-0.24805681,-0.21221265,-0.6487226,0.044487,-0.3771318,-0.40875858,0.34416017,0.015680082,0.085702516,0.33163124,0.063826576,0.4268447,-0.27219963,0.07852785,-0.29939848,-0.2716824,0.20262337,0.40132916,0.42364243,-0.37639135,0.5396241,0.07094412,-0.26062095,-0.08472673,-0.0031827649,0.62213033,-0.1362337,0.39123717,-0.040725492,-0.110041395,0.18607426,0.67901117,0.13638707,0.49778822,-0.2377939,-0.16702232,-0.012300013,0.03599467,0.18384238,0.060078543,-0.6174462,0.10955949,-0.12142204,0.22078404,0.40210587,0.07979039,0.4897384,-0.09585734,-0.21341226,-0.048643567,0.20345102,0.21447198,-1.3725859,0.39636225,0.31401882,0.7843548,0.31131876,0.11321406,0.07080007,0.63120157,-0.23718172,0.11677875,0.23016709,-0.13025509,-0.2721791,0.372245,-0.90604085,0.56556714,-0.06981301,0.07124616,0.0661813,-0.09745179,0.44544584,0.9843871,-0.26955906,0.03700069,0.10355911,-0.27502537,0.1546088,-0.2840673,0.1737261,-0.57555085,-0.39751995,0.7104218,0.44941172,0.44320408,-0.15137953,-0.050033305,0.2890595,-0.11108819,0.23423032,-0.031065112,0.17681615,0.05133455,-0.3525236,-0.10212493,0.6320721,-0.21841711,0.16944881,0.11007878,-0.20157698,0.36750358,-0.036246035,0.014566581,-0.13319452,-0.42110118,0.025052028,-0.248049,-0.37399042,0.60495794,-0.3516179,0.15611272,0.20449717,0.090964206,-0.21350582,0.53644484,0.15644707,0.8579283,0.06983432,-0.19211505,-0.29654747,0.34225276,0.14929628,-0.16460893,0.020611163,-0.27645996,0.016169855,-0.6906857,0.18149765,-0.23647954,-0.43989143,0.01575404,-0.15288748,-0.0064271945,0.5036803,0.03880385,-0.12565298,0.14577295,-0.26543403,-0.25396684,-0.20621684,-0.2497699,0.2817539,0.29578844,0.023223843,-0.21635841,-0.22775349,-0.23330459,0.19938754,0.06240917,0.31252918,0.20071216,0.00872858,-0.19221278,0.08525823,0.13522281,0.4945388,-0.16354989,-0.12398208,0.003259448,-0.3293396,-0.46182826,0.19252902,-0.15552332,0.45473078,0.2271653,-0.26142147,0.8296173,-0.115653835,1.2195494,0.082483746,-0.2655707,0.14032486,0.5077652,0.14629236,0.07875439,-0.35871398,0.9049601,0.6516244,0.071372,-0.06369691,-0.2641744,-0.13058107,0.19586353,-0.18544601,-0.15323757,-0.035795353,-0.663433,-0.29597527,0.34505552,0.19239025,0.09365849,-0.12299867,-0.04614792,0.29342833,-0.09459269,0.16704121,-0.43272546,0.044960868,0.21841694,0.3883037,-0.10741396,0.19412167,-0.49720865,0.4289107,-0.4760249,0.028203432,-0.1383625,0.22449154,-0.18398218,-0.17843825,0.14215747,-0.025443697,0.3474765,-0.4150421,-0.31950453,-0.20280698,0.49240273,0.17440285,0.19805747,0.59101105,-0.3255631,0.02420566,-0.05645193,0.29312143,0.9671353,-0.578494,-0.08784457,0.4355393,-0.2395514,-0.404028,0.3753988,-0.40372494,0.19501638,-0.03475887,-0.2396904,-0.280235,0.28966597,0.18246517,0.08546179,-0.052402362,-0.6055954,0.102035746,0.15980321,-0.3120684,-0.108807944,-0.10467779,0.29116383,0.66676456,-0.26164332,-0.46576247,0.07932003,0.25465414,-0.267979,-0.37177786,-0.055089258,-0.32886928,0.19777207,0.0095748985,-0.37020403,-0.15390949,0.08545688,-0.42583594,-0.11436289,0.10971387,-0.2488313,0.046077285,-0.20357123,0.17759481,0.68413514,-0.19542636,0.21088044,-0.46860406,-0.37512106,-0.78105074,-0.011877577,0.21195449,0.19301298,0.006783644,-0.7364767,-0.12651552,-0.2045193,-0.3194889,-0.032367244,-0.5060594,0.5632467,0.15615335,0.1637352,-0.25485367,-0.9897414,0.25318652,0.13979381,-0.020005222,-0.64337975,0.51376766,-0.088404864,0.81685513,0.09452493,0.009782829,0.34948668,-0.49947014,0.2031475,-0.20017835,-0.071408816,-0.86050797,-0.1021341 -363,0.35971028,-0.36468747,-0.48205894,-0.22272827,-0.24908689,-0.13386776,-0.15561691,0.41706812,0.23036702,-0.2952564,-0.22295114,-0.07928608,0.03345733,0.4267648,-0.026248066,-0.6298166,-0.12254857,0.10559634,-0.56204385,0.59299076,-0.54844314,0.19410071,0.118176386,0.49693367,0.119056806,0.27029303,0.29417238,-0.1822456,0.076094314,0.0058019804,-0.19781953,0.3278764,-0.37046435,0.14511569,-0.09662085,-0.36101466,-0.05936218,-0.50796074,-0.08955085,-0.76423043,0.13288651,-0.888359,0.38098648,0.09904099,-0.349642,-0.26770973,0.2817205,0.4603636,-0.41075343,0.022360729,0.21402296,-0.085666165,-0.21999851,-0.15694621,0.05393662,-0.22966957,-0.3896878,-0.1309044,-0.4989227,-0.262124,-0.01526684,0.19666037,-0.41176775,-0.13193594,-0.21362415,0.37669578,-0.42875496,-0.065232545,0.48266882,-0.23950857,0.4244599,-0.534001,-0.07521642,-0.17172012,0.35376552,-0.05825534,-0.41350225,0.32458177,0.3844217,0.36154413,0.122617535,-0.24906111,-0.10508633,-0.189294,0.16629556,0.4098999,-0.25478473,-0.2992944,-0.20234126,0.06738176,0.3142141,0.559101,-0.028161498,-0.4677078,-0.054307397,-0.06845644,-0.120835155,0.34702837,0.48798913,-0.15818664,-0.2623338,0.14069916,0.5360521,0.28692326,-0.23081534,0.073164746,0.1364502,-0.63092506,-0.09579112,0.4008249,0.03870304,0.5223048,-0.06681988,0.15885566,0.88305724,-0.102788724,-0.004044267,-0.017780405,0.04416441,-0.2607167,-0.5419765,-0.26196364,0.2094228,-0.55470186,0.13453048,-0.24482657,0.8328922,0.04512929,-0.7606526,0.2841866,-0.60687065,0.16191587,-0.19804588,0.65243876,0.7338672,0.34644598,0.4083128,0.71355534,-0.22470704,0.15890151,0.08022396,-0.38617718,0.04493849,-0.17026281,-0.017953685,-0.5815226,0.12099739,-0.022744715,0.15005113,0.07734304,0.2891727,-0.5669905,-0.14417502,0.16871825,0.71346855,-0.31537765,-0.04702043,0.56930906,0.9406207,0.9559621,0.15269688,1.0103217,0.29020408,-0.14681925,0.2687827,-0.2728545,-0.6542338,0.14637558,0.36773637,-0.018234005,0.16754839,-0.20115297,-0.1613369,0.35492626,-0.3019976,0.07266908,-0.10690526,0.16475758,-0.011687545,-0.10485586,-0.61478615,-0.2855481,-0.120422564,-0.09478076,-0.0996375,0.15210022,-0.20474349,0.37700638,-0.14248866,1.3425905,-0.09351414,0.061654605,0.17227395,0.50053847,0.20278963,-0.19295517,-0.08343374,0.43891585,0.58998704,-0.07426961,-0.5456372,0.29259968,-0.24458566,-0.46833462,-0.036985766,-0.46699312,-0.11061602,0.0011999791,-0.61041045,-0.15302391,-0.11394104,-0.23985934,0.39071104,-2.9190955,-0.19869398,-0.26836175,0.16785939,-0.25189203,-0.10097206,-0.18834612,-0.39550593,0.25086498,0.29552886,0.54204667,-0.6335596,0.40256235,0.48447558,-0.50196713,-0.17188266,-0.7461552,-0.14790536,-0.04944472,0.33927172,0.009165817,0.029728783,-0.046848692,0.120915905,0.6704662,-0.09207012,0.12808993,0.47483715,0.2843528,0.097702146,0.42907238,-0.03413993,0.5365862,-0.43276164,-0.18445888,0.25930282,-0.21793574,0.2392274,0.15646154,0.094381995,0.5141434,-0.4519699,-0.927584,-0.6738932,-0.4110487,1.0268245,-0.50579596,-0.33568323,0.20414576,-0.2885365,0.04632491,-0.024901778,0.65657,0.017492028,0.16770941,-0.7699538,0.13696748,0.026765347,0.31000468,0.059741873,-0.19017552,-0.21303262,0.66599756,-0.035879478,0.68395877,0.35375485,0.13064276,-0.2595066,-0.47091872,0.052178852,0.70078856,0.3247641,0.053281955,-0.11141659,-0.2877733,-0.12110551,-0.11770395,0.14423428,0.60138595,0.89821726,-0.052553836,0.14889579,0.39304286,-0.11321033,0.033821154,-0.081617944,-0.15498553,-0.10101238,0.1504269,0.41719264,0.5011928,-0.089847654,0.4742131,-0.19236627,0.3373268,-0.0971963,-0.51174825,0.66065115,0.5489584,-0.106182046,-0.083584115,0.39559808,0.6580743,-0.4350336,0.40643805,-0.58399177,-0.08668094,0.6668521,-0.2376524,-0.48621053,0.20674501,-0.38467392,0.2269633,-0.94053376,0.36178896,-0.47472665,-0.44993395,-0.36582205,0.014745548,-3.2836645,0.34013063,-0.19391544,-0.28404042,-0.3397885,-0.057759568,0.33008832,-0.6269244,-0.5198194,0.10268636,0.29161072,0.70756215,0.05010759,-0.061949436,-0.379504,-0.06831288,-0.055661567,0.19115283,-0.012744784,0.23435329,-0.16456074,-0.42725194,-0.123585545,0.011128907,-0.565946,0.18320659,-0.609442,-0.48598942,-0.14703074,-0.6046225,-0.3120371,0.62794644,-0.27887028,-0.06078252,-0.030962948,0.07288889,-0.14406577,0.3717068,0.17740437,0.23312944,0.11941959,-0.056915265,-0.07146896,-0.29126185,0.23019692,-0.08783984,0.20297956,0.075943254,-0.04483402,0.3312575,0.5365388,0.5256245,-0.11142826,0.8042996,0.48174497,-0.027901081,0.2410799,-0.31549627,-0.15189816,-0.47578618,-0.31587458,-0.2078823,-0.33628413,-0.49257982,0.11200314,-0.14143276,-0.79746825,0.61879516,-0.045511525,0.29224253,0.010862357,0.21237707,0.4050887,-0.09747538,-0.019652762,-0.12612788,-0.10731081,-0.47825366,-0.24686025,-0.71781355,-0.44441932,0.1101801,1.0171002,-0.32580015,0.13388707,-0.09238885,-0.34979427,-0.048629794,0.1462085,0.03390294,0.40614447,0.35198674,-0.17191672,-0.54438937,0.32047898,0.08491544,-0.3442517,-0.50713366,0.09240997,0.70249265,-0.74938715,0.6819045,0.21329778,0.02058052,-0.22860672,-0.5796156,-0.3304008,0.04421423,-0.16700205,0.36954525,0.12790516,-0.71151453,0.44904476,0.4648295,-0.28525904,-0.72496235,0.34760195,-0.12332504,-0.3441332,-0.08000113,0.3307475,-0.123855755,-0.12670499,-0.19507192,0.23489657,-0.41542625,0.16182676,0.16656008,-0.108621866,0.4861512,-0.16686152,-0.1065817,-0.5968467,0.15433581,-0.6848535,-0.19139725,0.48022744,-0.057525728,0.010054744,0.060362935,0.014129451,0.350495,-0.20650846,0.13758247,0.029017938,-0.27673286,0.23170903,0.5285077,0.24538986,-0.27280533,0.5801337,0.17884949,-0.04561992,-0.11507307,0.24786347,0.32273844,0.075580485,0.44670156,-0.50094837,-0.31442547,0.38874462,0.8211102,0.11524101,0.5265167,0.021332929,0.06763384,0.25149998,-0.008775353,0.22548261,0.0005896917,-0.23974323,-0.0578591,-0.110954635,0.14754571,0.5055943,0.23584692,0.37290102,0.09524894,-0.1554246,0.08730053,0.3236574,-0.042961504,-1.0104865,0.5636753,0.34798065,0.7667054,0.49169064,0.085013285,-0.28226832,0.5705219,-0.31431916,0.1722778,0.3109059,0.024012158,-0.52336025,0.8727173,-0.68443674,0.5063278,-0.21271075,-0.0625891,0.13897546,0.038449205,0.36712706,0.6698048,-0.077333614,0.07304769,0.008353787,-0.23288253,0.04546908,-0.43364355,-0.017084168,-0.42687815,-0.45161802,0.662861,0.4481437,0.35064122,-0.19862372,-0.072210364,0.17597121,-0.107615486,0.20542225,-0.07390815,0.06564758,0.1406943,-0.6247121,-0.15242502,0.5686227,-0.103374675,0.1493168,-0.124930106,-0.3029433,0.07534342,-0.14315987,0.11959501,-0.045558736,-0.61865276,0.15240936,-0.41338634,-0.47844556,0.38273776,-0.5555793,0.17263664,0.14198266,-0.007920637,-0.13663095,0.40884843,-0.009820416,0.8762643,-0.055511914,-0.25864947,-0.36267716,0.061950013,0.17827763,-0.23044378,-0.07791607,-0.39394933,-0.093621895,-0.5251864,0.5627453,0.1046022,-0.3509995,0.26918414,-0.20731269,-0.0746258,0.5603889,-0.052923676,-0.16005437,-0.13326746,-0.2609008,-0.45004383,-0.03399735,-0.24664317,0.30831325,0.24139833,0.14745936,-0.053659555,-0.1303044,-0.03429598,0.53024113,0.12224821,0.45295575,0.34353536,0.122645065,-0.34159756,0.12236829,0.21679181,0.4346097,0.27908596,0.057544444,-0.38556704,-0.24831054,-0.20984147,-0.06457791,-0.16919623,0.34837517,0.03410031,-0.20012951,1.0050213,-0.051662702,1.0236329,0.035477635,-0.37324584,0.003828819,0.34826204,-0.034692623,-0.014938538,-0.24890019,0.7389316,0.574314,-0.06455215,-0.03274967,-0.31425267,-0.21547583,0.42321056,-0.2655937,-0.1287336,-0.056089394,-0.53169715,-0.36846447,0.19092928,0.20744817,0.23288478,-0.10373409,-0.12798215,0.038612004,-0.014748587,0.20725147,-0.46852258,0.077016346,-0.04617683,0.31328848,-0.02021185,0.17921966,-0.43095696,0.39380565,-0.77793163,0.2875912,-0.48760796,0.09658089,-0.14863455,-0.34941992,0.07419026,-0.106084,0.28459197,-0.24995208,-0.18891114,-0.019661056,0.5637551,0.13064131,0.13287574,0.71888375,-0.2451973,0.17749572,0.16980058,0.46804816,1.1822221,-0.4823233,-0.25692588,0.30497634,-0.44396877,-0.6520977,0.3422451,-0.35784715,-0.010807239,-0.13856688,-0.45601746,-0.44564378,0.24603759,0.29968384,0.10039944,0.064368576,-0.48858228,-0.059615415,0.34697235,-0.26563826,-0.31933314,-0.3588837,0.50058323,0.6179127,-0.19016673,-0.43298537,0.00020601199,0.18687609,-0.1974694,-0.31941396,0.10949036,-0.18999085,0.23903309,0.025559563,-0.32345185,-0.087626144,0.09317071,-0.4839856,0.09989272,0.1960899,-0.2615457,0.1825571,-0.1364989,-0.2179779,0.9721352,-0.25119773,-0.2461783,-0.57435256,-0.38784263,-0.7693637,-0.37734467,0.50789773,0.081629835,0.08298014,-0.4775999,0.20338416,0.038531456,-0.17102018,-0.0957529,-0.3498071,0.41806063,0.119644806,0.38261476,-0.15798444,-0.71179396,0.31768295,0.043573186,-0.061215244,-0.6493419,0.49609616,-0.17405918,0.85047746,0.12043047,-0.12491639,0.10823099,-0.3724186,0.1681678,-0.3421842,-0.17729422,-0.8415816,-0.13845466 -364,0.34625703,0.011339994,-0.45186532,-0.06357749,-0.33647975,0.1439781,-0.14301774,0.5106424,0.021718243,-0.40238163,-0.052542415,-0.08135971,0.07799088,0.36447963,-0.29952303,-0.5067516,0.08139011,0.11059241,-0.4766464,0.6143879,-0.32290748,0.39282146,-0.085792035,0.22202258,0.19191392,0.35712227,0.09886484,-0.22790964,-0.23860504,-0.091315016,-0.10200844,0.25110504,-0.5980235,0.10774582,-0.099495344,-0.3084139,-0.008114491,-0.1614287,-0.4829694,-0.60374933,0.3231529,-0.76086813,0.43092683,-0.06194804,-0.2764452,0.37650868,0.093374036,0.28669894,-0.19800492,0.010724926,0.115388766,-0.07770169,-0.0023732951,-0.19515152,-0.15454645,-0.6453065,-0.5473828,0.022967098,-0.5714461,-0.24513987,-0.32949135,0.14148931,-0.28942317,-0.12213791,-0.14814474,0.2962829,-0.6295029,0.09484087,0.09239789,0.037925895,0.11299636,-0.5597435,-0.13889913,-0.027553022,0.25272325,-0.17752409,-0.0023442705,0.3435832,0.20266335,0.2239077,0.011187092,-0.06158062,-0.42451972,-0.22707777,0.27392054,0.39430892,-0.18693647,-0.62627804,-0.00632481,0.0167053,0.078598686,0.10687326,0.15878065,-0.116819985,-0.15296885,-0.054475117,-0.31461304,0.37972873,0.48496065,-0.34882516,-0.29106063,0.33031458,0.41693336,0.26905122,-0.28916612,-0.020652508,-0.027599568,-0.47818673,-0.09914212,0.10885032,-0.06825996,0.54977226,-0.21201071,0.27111003,0.7345347,-0.3111338,0.17386265,-0.0052669784,0.06851465,-0.026435426,-0.10497127,-0.096409716,0.07668544,-0.46510497,0.08477166,-0.1999435,0.8060169,0.16057518,-0.6405551,0.3918521,-0.56791306,0.06405785,-0.10657035,0.4013554,0.3496138,0.466101,0.045717414,0.5242549,-0.3004633,0.07102857,-0.020059569,-0.42532244,0.18264885,-0.28031498,-0.22458868,-0.4548005,0.03751082,0.08128725,-0.062273636,-0.20554732,0.53113395,-0.49255827,-0.101056576,0.20041393,0.87687504,-0.36278695,-0.13630909,0.6993581,0.939062,0.9982803,-0.0673898,1.1177777,0.039297827,-0.22023672,0.054612365,-0.2998508,-0.6343184,0.19198507,0.251564,0.05903331,0.24140361,0.2355946,-0.041118186,0.20028739,-0.24385157,0.05031923,-0.33858433,0.16920932,0.1360089,-0.14923534,-0.3706164,-0.3221807,-0.040795684,0.02914212,0.13305138,0.3555441,-0.056664966,0.39253986,0.004890426,1.7328582,0.035142846,0.08651967,0.065274045,0.7043964,0.26506016,0.100986436,-0.02617168,0.29252827,0.39453512,0.3074362,-0.4445634,0.06269631,-0.27081886,-0.81073534,-0.011138278,-0.38331014,-0.23774593,-0.10314817,-0.6813461,-0.17881706,0.043181177,-0.076697126,0.3336774,-2.7456236,-0.07263397,-0.086063646,0.27712256,-0.19831398,-0.24262063,-0.06342059,-0.35082525,0.42061904,0.31340164,0.50593317,-0.65214443,0.56024474,0.4189638,-0.42778552,-0.02825353,-0.45047233,-0.1842115,-0.032655425,0.47324613,-0.07668244,0.07868758,0.28716508,-0.009785447,0.42777404,-0.30673778,0.18277659,0.11990775,0.21643446,0.060847457,0.39223462,0.11057327,0.4124886,-0.21018313,-0.09209382,0.28292984,-0.28382805,0.40101483,-0.18272498,0.14646628,0.2925234,-0.4417206,-0.9270445,-0.5879584,-0.12872571,1.016903,-0.14652057,-0.3469524,0.2095292,-0.31104368,-0.28822866,-0.19310807,0.25762552,-0.08223845,0.09564511,-0.7114715,0.06465534,-0.08682978,0.20383967,0.0018686026,0.017447893,-0.38020393,0.6690582,-0.014627339,0.34098053,0.29423296,0.14191738,-0.32809058,-0.57930094,-0.046594366,0.72854084,0.30485693,0.092249535,-0.33029085,-0.25748855,-0.30951527,-0.0822734,0.07232778,0.4128834,0.62407655,0.057893295,0.10858288,0.14159267,-0.030482966,0.09827403,-0.17096399,-0.35211584,-0.052813496,-0.09405272,0.54902387,0.5355928,-0.2929239,0.5819415,-0.22487248,0.30165687,-0.2813987,-0.38143572,0.4957334,1.1158336,-0.17956166,-0.21112356,0.5557832,0.6071977,-0.2712439,0.3398001,-0.4801531,-0.23635688,0.5123659,-0.26661,-0.35741326,0.25586027,-0.23809032,0.054843616,-0.8914215,0.4479212,-0.46967295,-0.418497,-0.52293694,-0.11379507,-3.6562617,0.093790166,-0.22322902,-0.2764099,-0.2014447,-0.15411803,0.08957682,-0.6933047,-0.4384352,0.056177862,0.1441392,0.6299116,-0.072294086,0.12682289,-0.25453153,-0.25514343,-0.2346795,0.21256499,0.13845731,0.2987667,-0.21624425,-0.43911165,-0.025899675,-0.26976597,-0.3884764,0.14158958,-0.61503154,-0.40227228,-0.12888719,-0.457853,-0.24277078,0.6677142,-0.17159237,0.027397713,-0.17476943,-0.012704237,-0.16738766,0.27325642,0.1188351,0.044381738,0.08420261,-0.05891432,0.10628676,-0.2806541,0.28940424,0.08790962,0.5285312,0.42570436,-0.08693843,0.005120615,0.55107003,0.45612544,-0.10015964,0.8296679,0.28900862,-0.17900136,0.34987456,-0.3074375,-0.18778893,-0.6604278,-0.35080966,0.028293813,-0.32098073,-0.59608215,-0.074154645,-0.3691368,-0.7232999,0.51421255,-0.19171901,0.024192674,-0.04934422,0.37263843,0.48824865,-0.11763317,-0.025021719,-0.0567679,-0.032234218,-0.5556141,-0.33758202,-0.5907221,-0.4256995,-0.094285876,0.94715756,-0.19101678,-0.08734188,-0.13913304,-0.27688536,-0.0031154433,0.116464406,0.07844202,0.17013845,0.26577204,-0.16483113,-0.7861604,0.7586412,-0.066630706,-0.23008905,-0.302354,0.05667751,0.48559472,-0.71656144,0.35977966,0.57062477,0.040749263,0.023745649,-0.534212,-0.2176027,0.055078007,-0.13917738,0.34047496,0.10828714,-0.71243644,0.41858897,0.2933257,-0.36598584,-0.54847604,0.7728352,-0.0030615865,-0.41282788,0.08047261,0.25507954,0.011737378,-0.016393578,-0.34958515,0.36067683,-0.5302937,0.18338004,0.19170551,-0.001347049,0.3597557,-0.14027707,-0.21666236,-0.6371692,0.11316438,-0.34501138,-0.30562735,0.28862724,0.13999985,0.009315117,0.13409847,0.07312472,0.37729225,-0.4395464,0.15682913,-0.019101245,-0.1268173,0.4338557,0.27870587,0.49802065,-0.4849645,0.5309385,-0.06878033,0.0010059933,0.15290171,0.18207581,0.48026648,0.086616434,0.47757953,0.23674649,-0.21535192,0.29566517,0.9264297,0.348108,0.5636119,0.034134816,-0.30685616,0.2991653,0.12551257,0.14170144,0.111704506,-0.37486073,-0.020329492,-0.12580012,0.14999662,0.42149353,0.054713666,0.25885847,-0.1627255,-0.19101177,-0.017967869,0.26816234,0.1444331,-1.023435,0.3479101,0.23612578,0.6269628,0.47518757,0.045207057,0.11946246,0.62270904,-0.32403982,0.1787091,0.37651315,0.114816226,-0.6358401,0.46941358,-0.65571827,0.4906164,-0.017139716,-0.031250868,0.12712398,-0.10503352,0.25770316,0.77401847,-0.017665587,0.06272714,0.05483863,-0.4514756,0.061286233,-0.47339553,0.12481126,-0.3717759,-0.091709524,0.63564163,0.49595654,0.20083402,-0.10801905,-0.00899879,0.19264267,-0.11120126,0.23746678,0.16458565,0.34389463,-0.029067885,-0.5392223,-0.373526,0.54755867,-0.31086066,0.104788676,0.04090522,-0.2252245,0.3781308,-0.20769806,-0.061443508,-0.01628549,-0.6789003,0.25640732,-0.15775868,-0.31321982,0.49988708,-0.28847477,0.2917824,0.22903657,0.0063494844,-0.42419142,0.2962614,0.016501259,0.6188666,-0.06678273,-0.14695288,-0.30812433,-0.020086054,0.19513565,-0.21001269,-0.06356262,-0.09021358,0.05927141,-0.47687542,0.34720075,-0.08433204,-0.18317658,-0.24568357,-0.13701344,-0.07648385,0.433672,-0.0033281366,-0.15177199,-0.073585376,0.14319763,-0.22868031,0.024621133,-0.033473715,0.15263878,0.27876794,-0.18552405,-0.10191794,-0.122834936,0.030838294,0.42599162,-0.09570774,0.44913784,0.3844163,0.07923215,-0.3431646,-0.20651852,0.24378088,0.44160125,-0.15028347,0.04449008,-0.25952426,-0.34420618,-0.26923132,0.19341087,-0.26246762,0.24854441,0.26180857,-0.3088577,0.8737447,-0.028508432,1.1484572,0.089377865,-0.43855894,0.27693036,0.5230077,0.10906188,0.063186795,-0.31198344,1.0853007,0.58836263,-0.13216445,-0.18872811,-0.16238949,-0.07335614,0.12311465,-0.20865989,-0.2532047,0.024530776,-0.43804953,-0.13056314,0.31454024,0.2583819,0.16542734,-0.017833322,-0.07324067,0.23185495,0.21139531,0.3096542,-0.58804536,-0.32623607,0.32613364,0.2271823,0.09646765,0.1677557,-0.5270259,0.36545002,-0.49027374,0.104332656,-0.23657991,0.14995432,-0.18952782,-0.3500437,0.15759894,0.13359115,0.3890583,-0.22647175,-0.33228862,-0.30987504,0.3455349,0.25400832,0.20550154,0.5330872,-0.14688705,0.20390965,0.057424523,0.43738803,0.8953884,-0.20164742,-0.27218536,0.4612565,-0.46674463,-0.710277,0.20685536,-0.38635787,0.22868395,-0.16068941,-0.18458632,-0.6480611,0.31632602,0.35866168,-0.06684127,-0.01249156,-0.5534698,-0.17880502,0.36078602,-0.3559494,-0.3502697,-0.3008958,0.1547416,0.7804083,-0.35874337,-0.2132256,-0.03429509,0.2365358,-0.17603621,-0.54875565,0.015154209,-0.40069744,0.3901413,0.09133746,-0.19262238,-0.049302123,0.002136596,-0.26478153,0.31244114,0.45880514,-0.3437182,0.14305966,-0.3327276,0.040950146,0.8026945,-0.2389306,-0.044885363,-0.53275084,-0.47913837,-0.81748736,-0.3942421,0.5035889,0.21978544,0.052388463,-0.6126614,-0.08476851,0.024979651,-0.30029002,-0.02042227,-0.39693558,0.50363314,0.113609955,0.0766874,-0.08123512,-0.81728643,0.08719869,0.09397229,-0.24221863,-0.5151111,0.53156376,-0.22674847,0.90204775,0.0609734,0.013365784,0.25419906,-0.34630394,0.046474654,-0.2071159,-0.19148885,-0.5316352,0.061536584 -365,0.6376568,-0.1266958,-0.86025375,-0.1667313,-0.20108327,-0.21506327,-0.30618224,0.61569506,0.1866024,-0.6133633,-0.14182673,0.019732475,0.004029323,0.25807813,-0.30295327,-0.60266644,0.19825964,0.12880082,-0.48593023,0.36395875,-0.5410373,0.21954961,0.118510135,0.5998411,0.36556098,0.19418277,0.14202927,0.0056024953,-0.24925388,-0.45146272,0.047101546,0.24455313,-0.61870015,0.20146535,-0.18468815,-0.56373966,-0.07369244,-0.52387315,-0.24613571,-0.87217194,0.16963015,-0.93734723,0.50953275,-0.053197697,-0.33518934,-0.043972544,0.32045925,0.49456587,-0.051327195,-0.056717332,0.24831098,-0.21650225,-0.24584116,0.021386618,-0.17123881,-0.47180787,-0.54302734,0.12193661,-0.39320326,-0.1142275,-0.3094156,0.22567138,-0.50730884,0.044446435,-0.23669897,0.4659743,-0.28956935,-0.29929343,0.29077053,-0.1568016,0.38562152,-0.53876734,-0.10180376,-0.184623,0.26302457,-0.33985087,-0.3099229,0.034560993,0.22295041,0.39261657,0.13099207,-0.2258818,-0.18923269,0.017436933,0.1262851,0.44995755,-0.21924797,-0.52978516,-0.2920409,0.094566576,0.2553585,0.32622957,0.09849808,-0.27599433,0.040431537,0.24339381,-0.3166832,0.6999315,0.41816247,-0.23408669,-0.042250928,0.13702425,0.29734635,0.4106024,-0.24409844,0.2267962,0.08440896,-0.6482633,-0.20564885,0.10893195,0.08681163,0.5018381,-0.16586265,0.4412938,0.81789875,-0.18726367,-0.045828406,0.40307617,-0.014616034,-0.20964298,-0.25837305,-0.26077712,0.29825595,-0.75984454,0.3445566,-0.27876914,1.0128227,0.0644751,-0.7035966,0.18690108,-0.65821165,0.05836694,-0.24859676,0.5671963,0.7547311,0.41746894,0.18701796,0.8017141,-0.35977545,0.07787089,-0.09924908,-0.5064734,0.012344653,-0.13737498,0.21856436,-0.44083786,-0.20734343,-0.072070025,0.11376477,0.07619274,0.41080332,-0.39074615,-0.3028576,0.14590448,0.76118016,-0.28391582,-0.11254751,1.0282043,0.89061224,0.9639833,0.21443714,0.9170345,0.07146701,-0.021420462,-0.04680976,0.2774718,-0.6721255,0.49248636,0.28677467,-0.19885674,-0.08656266,-0.041709676,0.05472562,0.6601502,-0.38611242,-0.08084268,-0.2414606,0.21228217,-0.09387147,-0.23052135,-0.46088088,-0.21350503,0.14754638,0.11193674,0.17010732,0.2360937,-0.011534518,0.57233447,-0.06661475,1.1288064,-0.16205448,-0.02499278,-0.07647473,0.5508066,0.10985238,-0.113143705,0.0076007084,-0.27876604,0.4018611,0.071789935,-0.478209,0.074698806,-0.14111827,-0.34709758,-0.19014816,-0.33703324,-0.24005832,-0.22682372,-0.5530277,-0.06050491,-0.18595861,-0.43617487,0.38129798,-2.6313958,-0.22555159,-0.10959633,0.09068302,-0.20932513,-0.37734985,-0.19919275,-0.57499814,0.730623,0.22035135,0.744602,-0.56425244,0.50857717,0.47263443,-0.5639156,-0.065082476,-0.81885505,-0.14918767,-0.08333971,0.3193645,0.23396832,-0.17948078,-0.16299157,0.03275223,0.70230526,-0.08578091,0.04400684,0.07898878,0.36288863,-0.28131688,0.7117011,-0.019961419,0.72803587,-0.5827487,-0.27884886,0.40816566,-0.33765143,0.10042636,-0.16568312,0.12932502,0.45640424,-0.49397984,-1.0798537,-0.7531017,-0.30014506,1.2942865,-0.1142009,-0.34043658,0.33010775,-0.30477107,-0.29873285,0.32343912,0.54753786,-0.19829105,0.17356569,-0.7655537,-0.01488309,-0.33661097,0.03372258,-0.108319044,-0.06541116,-0.53399426,0.60439736,-0.036027286,0.28694752,0.34151947,0.13429625,-0.32317308,-0.47168368,-0.011198381,1.1143479,0.38817587,0.22429118,-0.40415135,-0.072773926,-0.61348873,-0.031784836,0.057647314,0.7843122,0.88496435,0.03757544,0.14981355,0.2062695,-0.051161405,0.026513398,-0.08297077,-0.43937206,-0.24524342,0.023658244,0.6978905,0.5652098,0.15299836,0.5507307,-0.18128164,0.4893013,-0.23896341,-0.4288619,0.66031694,0.5908161,-0.20780925,-0.35293448,0.7820392,0.5149336,-0.033845406,0.49168625,-0.5353641,-0.5694043,0.3959752,0.06606024,-0.5911688,0.14383596,-0.46880838,0.24548583,-1.2050495,0.12981738,-0.6789741,-0.8450132,-0.46976936,-0.23310103,-3.6198547,0.32456455,-0.22767463,-0.07996345,-0.35408154,-0.31360272,0.29219168,-0.3960932,-0.70815897,0.018926365,0.01574956,1.0463939,-0.13651547,0.08141626,-0.25263163,-0.17854749,-0.24047233,0.098672085,0.28802758,0.23811017,0.03581917,-0.28352633,-0.08975475,-0.22487086,-0.5265351,-0.072729975,-0.8087141,-0.62099284,-0.00070104277,-0.45228264,-0.42676076,0.6417768,-0.37455264,-0.03945091,-0.1776256,0.039146617,-0.035271432,0.6037579,0.13062023,0.042709745,0.17800412,-0.036948327,0.06942697,-0.30079415,0.08007354,0.0914511,0.29766354,0.36126855,-0.13042176,0.34152985,0.61068803,0.85055995,-0.018135542,1.1216956,0.31801525,-0.050389852,0.21015826,-0.2947415,-0.6324263,-0.3964096,-0.1044401,-0.034986213,-0.4061909,-0.22079779,0.082273334,-0.27413815,-0.7747374,0.71046805,0.25029376,0.016673446,-0.18563937,0.34911394,0.3478484,-0.29160893,-0.22274238,0.03784961,-0.070326,-0.5522217,-0.21101926,-0.56639177,-0.71403044,-0.50239444,1.1065084,-0.17230095,0.2791315,0.04515846,-0.030500846,0.13129827,0.12817138,0.005493821,0.08807883,0.43047154,-0.1494168,-0.8028568,0.3755732,-0.4156019,-0.15018986,-0.69999397,0.2196683,0.8458933,-0.67890143,0.39757603,0.59784585,0.1841467,-0.24070325,-0.49953744,-0.112020016,-0.03228065,-0.1298827,0.48788702,0.27926943,-0.9122214,0.6637299,0.53610426,0.084365375,-0.7123365,0.63659036,0.19301344,-0.29525563,-0.051214717,0.41470882,0.06762517,-0.02886924,-0.1686695,0.3597285,-0.37790975,0.319718,0.0897336,-0.11523687,0.5613283,-0.2411428,-0.21893372,-0.569268,-0.009665695,-0.7208213,-0.32275584,0.13264082,-0.11450753,-0.0038584063,0.3614128,-0.103966124,0.34245327,-0.38881576,-0.006156378,-0.34690636,-0.32625648,0.28614518,0.679439,0.4652801,-0.5309222,0.8605166,0.23773375,-0.08151496,0.059728276,0.14614536,0.6009044,-0.13129176,0.6574399,-0.12245654,-0.10543304,0.053550765,0.98001903,0.0011472411,0.49014628,-0.05709349,0.07844227,0.0013735525,0.09032852,0.28213167,0.054984048,-0.6868998,-0.09409079,-0.5421036,0.13719188,0.5368511,0.044024084,0.35883087,0.021695338,-0.20205289,0.044737592,0.029307062,-0.12854493,-1.6194236,0.84616494,0.3521629,0.77695984,0.15099448,0.061469987,0.11223757,0.76900387,-0.18106434,0.23470503,0.19421753,0.14630906,-0.2822868,0.6009375,-0.8410016,0.5279431,-0.053207003,0.09895671,-0.049224116,-0.080276735,0.59570724,0.8183893,-0.17334707,0.23701324,0.056835912,-0.43000537,0.25489038,-0.42875358,-0.06828579,-0.5012712,-0.2072958,0.86089826,0.51949334,0.27126482,-0.23900089,-0.023763329,0.2241001,0.079663284,0.0026029618,-0.13220182,0.06653739,0.03748147,-0.66812444,-0.17127243,0.4444629,0.32559374,0.3585709,-0.063457325,-0.096378215,0.41529796,0.01762077,0.1518963,-0.2841368,-0.512911,0.04964707,-0.7013635,-0.45215356,0.2402427,-0.5959652,0.24588038,0.28563583,0.021427764,-0.03375903,0.34330985,-0.0220872,0.72283834,-0.08684499,-0.19808136,-0.32889712,0.21114501,0.27296627,-0.33759993,-0.4487035,-0.38823068,0.107460566,-0.49316072,0.20146655,-0.24771677,-0.59668154,0.3137448,0.0010652948,-0.02119726,0.36750194,-0.075693004,-0.0037243692,0.2524273,-0.15041353,-0.08039196,-0.22245806,-0.12799792,0.31584123,0.27517164,-0.03684401,-0.08189079,-0.14528647,-0.15127084,0.27662337,0.030846195,0.43660268,0.42873427,0.12152119,-0.42046392,-0.074169114,0.24899565,0.7223658,-0.12498551,-0.18008795,-0.3762743,-0.15431887,-0.3284458,0.19043283,-0.060984746,0.28717282,0.18002012,-0.15513149,0.6127685,0.083981685,1.0690193,0.06251751,-0.38901073,0.24225721,0.39895356,-0.19532953,-0.1619663,-0.4635062,0.9279945,0.2671845,-0.29266608,-0.04070907,-0.59610754,0.00935995,0.1463513,-0.16655217,-0.36979103,-0.08633385,-0.46589783,-0.18569335,0.37746924,0.47970784,0.16935903,-0.13222319,-0.016247392,0.35852757,0.017256064,0.33708555,-0.6315696,-0.03424794,0.19196044,0.46630457,-0.25051266,0.07829624,-0.5580792,0.32050678,-0.7172702,0.101946235,-0.44506186,0.30006745,-0.24255008,-0.28073737,0.2723402,-0.11484649,0.43747216,-0.34571794,-0.2520478,-0.05448518,0.3010602,0.35873246,0.22364436,0.6589041,-0.3069103,-0.04679406,0.1274841,0.54722476,0.9215074,-0.29584062,0.041963607,0.39043275,0.048509702,-0.43673185,0.3185466,-0.41268328,0.34141347,0.11586419,-0.3127086,-0.47198868,0.23483062,0.28811017,0.06265123,-0.044683598,-0.6015019,-0.08823776,0.41534746,-0.06372296,-0.35036346,-0.3905796,0.14902972,0.40893576,-0.099135034,-0.26605025,0.06038618,0.35771593,-0.05305999,-0.3512652,0.010089587,-0.10878564,0.19879656,0.07518529,-0.43773296,-0.11012013,-0.0561738,-0.5609034,0.25866315,0.12622762,-0.22404069,0.10737579,-0.114495374,0.026811618,0.9680809,-0.37881252,0.303819,-0.44749567,-0.4681641,-0.50901705,-0.20704263,0.26093596,0.1431657,-0.046875324,-0.5473538,-0.17289227,-0.10824435,-0.029012637,-0.012692484,-0.37124202,0.49325037,0.042779647,0.6260948,-0.09559026,-0.83979553,0.2205696,-0.070101924,-0.30635816,-0.5263772,0.4963993,0.09666107,0.6894813,0.105640404,0.15071443,0.32627535,-0.4967778,-0.07419088,-0.06587272,0.009934258,-0.9917124,0.033116058 -366,0.63092357,-0.26233086,-0.5572039,-0.011875686,-0.1920706,0.029617153,-0.10887793,0.59732527,0.43189347,-0.230915,-0.19048156,-0.08137605,0.018321106,0.48783693,-0.08478785,-1.0425683,-0.073550664,0.3671123,-0.6816693,0.8009626,-0.29693797,0.49744728,0.00082707405,0.3484477,0.31403777,0.19277339,0.066463776,0.10679678,0.014693886,-0.039266884,-0.08063974,0.20304102,-0.5754669,0.3068368,0.02164642,-0.5629028,-0.11586823,-0.43874252,-0.36573383,-0.8406283,0.2915106,-0.67190164,0.75857645,0.022381878,-0.3860651,-0.07923689,-0.2284816,0.48353612,-0.212601,0.08171246,0.037710946,0.015788754,-0.1507414,-0.31208786,-0.056924094,-0.52369404,-0.57833767,-0.059008975,-0.32014754,-0.025283104,-0.07798526,0.06584259,-0.27254897,0.1610524,-0.06964425,0.30750874,-0.37641263,-0.010308244,0.41787907,-0.11031693,0.054349024,-0.67099094,-0.20618069,-0.20811458,0.19772863,-0.14031433,-0.5180313,0.16183268,0.38848484,0.48663977,0.0489409,-0.24677818,-0.045537192,0.0307329,0.16317604,0.52089906,-0.25722882,-0.5651563,-0.30947128,0.07526729,0.73856086,0.0010143667,0.38426295,-0.35987607,-0.06304905,-0.16013172,-0.13398474,0.3398805,0.49919662,-0.31155416,-0.15331261,0.22511053,0.76288337,0.3383758,-0.046588067,0.13090284,0.065724365,-0.4846805,-0.04240105,0.05034332,-0.20753479,0.48482051,-0.19216645,0.089574136,0.6494623,-0.045246333,0.023453748,0.20033531,0.0490912,-0.29418933,-0.24301527,-0.29392365,0.41168466,-0.4303452,-0.04659452,-0.34422672,0.7065871,0.28319815,-0.4946077,0.35579506,-0.57988614,0.22389257,0.023823464,0.46007085,0.8764598,0.29106966,0.1324089,0.76496714,-0.3928473,0.0057053813,-0.04467095,-0.21118514,0.05132767,-0.102656834,-0.048029464,-0.5738104,0.043960575,-0.12337919,-0.33579364,0.37658063,0.49240935,-0.70202017,-0.191864,-0.12199137,0.5456028,-0.33423758,0.017185846,0.96989065,1.1615175,0.809318,0.050964158,1.709215,0.45216608,-0.31404325,0.12705848,-0.42407545,-0.7897094,0.1925038,0.42078057,-1.0748957,0.9002757,0.04120078,-0.03371794,0.39479935,-0.4512358,0.02631636,-0.084865965,0.15510063,-0.0434909,-0.44142988,-0.5469649,-0.15923904,-0.13011599,0.039676595,0.12788804,0.3173912,-0.4019575,0.47842398,0.20641737,1.2739067,-0.063858144,-0.18820113,-0.20996524,0.11034355,0.36994433,-0.36396465,-0.10945097,0.26814857,0.5172784,-0.1986192,-0.7034738,0.18035395,-0.247009,-0.30677706,-0.31959388,-0.04805386,-0.09346018,0.14317946,-0.24278958,-0.30204836,0.1277719,-0.145086,0.4429327,-2.1750906,-0.36439896,-0.04972981,0.39147338,-0.07970014,-0.41675273,-0.223803,-0.4530653,0.099583425,0.27538243,0.3625127,-0.7822082,0.320398,0.47430634,-0.7405606,-0.10440003,-0.6344217,-0.004550956,0.09273253,0.32266694,-0.00029864907,0.026426842,0.23536575,0.37814915,0.41342744,-0.056615192,-0.059131477,0.36731339,0.38669348,-0.11051998,0.28149715,0.2051851,0.66587895,-0.11805612,-0.2731662,0.40384066,-0.3344668,0.36462995,0.1260149,0.09700477,0.46405005,-0.29650247,-0.87972,-0.62482595,-0.1868804,0.8020263,-0.18434243,-0.41403452,0.111533165,-0.29305327,-0.45646015,0.07784333,0.5396959,-0.2759739,-0.33777258,-0.9738322,-0.20499907,0.015738292,0.1711151,-0.12247184,-0.15809765,-0.47357702,0.8657183,-0.11310104,0.3983018,0.35952652,0.3469946,-0.18695812,-0.65952694,0.2298897,1.0257066,0.5317599,0.103081726,-0.29212916,-0.022042671,-0.3763665,0.18758881,0.10076862,0.60639906,0.71073717,-0.19916458,0.03072876,0.27406508,0.11069086,0.07390739,-0.11376061,-0.12184181,-0.1725624,-0.06226032,0.50987226,0.79908735,-0.3465692,0.25480542,-0.23666419,0.32011652,0.0064694933,-0.7729473,0.92315865,1.2664161,-0.21273291,-0.35353398,0.77057844,0.19042736,-0.29550216,0.4609526,-0.59114575,0.012129396,0.47347426,-0.04478104,-0.21570058,0.4930338,-0.24149792,0.31999347,-1.0194143,0.40402427,-0.21055444,-0.41799447,-0.6124961,0.097768314,-2.6532402,0.22714292,-0.2430743,-0.19078101,-0.2219159,-0.12737553,0.2433393,-0.6536519,-0.7155251,0.19293725,0.12333569,0.506162,-0.08113495,0.017496416,-0.031703204,-0.49846384,-0.12793903,0.1877646,0.16650103,0.32835403,-0.050560232,-0.42729458,-0.0025865932,-0.17432006,-0.45580316,0.15401946,-0.8167862,-0.51192766,-0.20398752,-0.6589105,0.0054376223,0.66151065,-0.27110007,-0.0076395646,-0.1996079,0.029787928,-0.09180423,0.33818388,-0.02633777,0.019788822,0.1516227,0.0752889,0.07933048,-0.225913,0.17309777,0.15517879,0.38626638,0.27291062,-0.22068578,0.29334474,0.4934365,0.8728759,-0.11954459,0.805645,0.6113406,-0.108544976,0.1809821,-0.22035594,-0.3474873,-0.5603762,-0.40005198,-0.19830294,-0.5646314,-0.4080665,-0.20321141,-0.34655747,-0.91561365,0.37584925,-0.11545678,0.12018611,0.13114305,0.28974143,0.52967817,-0.18107855,0.101831496,-0.1617759,-0.28700927,-0.32506248,-0.19549674,-0.6271661,-0.49370775,0.41231665,1.3361186,-0.21000572,0.25492415,0.11676947,-0.38108444,0.17854036,0.11233013,0.019845089,-0.0011475185,0.4110445,-0.049180683,-0.46201053,0.2555413,0.024403164,-0.40270078,-0.73051447,0.21688236,0.53990453,-0.79057115,0.5971119,0.08903476,-0.13837434,0.09605983,-0.30312622,-0.07030653,0.09870546,-0.35669944,0.51047945,0.3775619,-0.3577867,0.3574767,0.46009067,-0.20235002,-0.6663416,0.38468647,-0.05135115,-0.27952898,-0.06736217,0.33037835,0.005477642,0.028371744,-0.19591145,0.27714685,-0.4002219,0.21177031,0.24324976,-0.18492758,0.060143847,0.014022008,-0.22606343,-1.008222,0.17954397,-0.4741381,-0.28609267,0.08543708,0.19286601,0.2661431,0.028885132,0.34185147,0.3683466,-0.4736025,0.19739546,-0.15127788,-0.371614,0.43290162,0.48024622,0.268909,-0.11774523,0.299074,0.018693307,-0.02244241,-0.12423036,-0.12533191,0.5718469,0.14293332,0.3784552,0.23748,-0.09171033,0.26552543,0.6516442,-0.06339815,0.27799436,0.1848297,-0.108835764,0.036542613,0.19038129,0.3280809,0.058874916,-0.42914426,0.00829788,-0.007418548,0.18939076,0.59284747,0.17296474,0.103072286,-0.25147983,-0.62601644,0.030515978,0.13514918,0.24249943,-1.6889662,0.2506696,0.17699397,0.65444326,0.5818005,0.10279242,0.010591269,0.27787313,-0.2047164,0.13252445,0.37557563,-0.14823575,-0.42247632,0.30918,-0.7332373,0.40306905,-0.026302144,0.06607295,0.11128404,-0.15741742,0.25890025,0.97838384,-0.28940618,0.020369371,-0.17617817,-0.12528986,-0.09629994,-0.42337617,0.00895523,-0.6446957,-0.39495274,0.8146479,0.42586294,0.33261093,-0.27897748,0.1267645,0.18484879,-0.16653427,0.1152864,-0.0051001343,0.24021317,-0.015352872,-0.46957144,-0.19942148,0.52458715,-0.22923303,-0.20645379,-0.2145981,-0.38063237,0.14787531,-0.12102544,-0.031644884,-0.103460036,-1.00451,-0.1398346,-0.47535387,-0.49490976,0.55262905,0.0588537,0.0543446,0.30054343,0.006646319,-0.2338742,0.6239541,0.06595289,0.9584608,0.12340853,-0.1292395,-0.15747134,0.63552445,0.20063019,-0.2747563,0.11128372,-0.08398253,0.31162336,-0.47961155,0.7548766,0.14020203,-0.4497641,-0.030342868,-0.060561318,0.13782717,0.3440541,-0.532432,-0.2940998,-0.02831024,-0.17233093,-0.104631625,-0.4091556,-0.24765413,0.19885744,0.35353315,0.016021306,0.019201657,-0.1306327,-0.0106098065,0.41954637,0.18418975,0.45485643,0.6956455,0.017815018,-0.5470016,-0.037853792,0.41514444,0.30137765,-0.045974936,-0.26147717,-0.4077356,-0.58714557,-0.62679124,-0.01903665,-0.18197699,0.29351643,-0.048692446,-0.26066005,0.82078,0.31878233,1.4235029,-0.041329518,-0.4733982,0.2095285,0.7788027,-0.09456036,-0.18844311,-0.31745175,1.1075782,0.4466165,-0.22840305,-0.109018736,-0.36032578,-0.24418141,0.34099352,-0.32318318,-0.036523163,-0.053835183,-0.65518665,-0.4520255,0.21586788,0.26673445,-0.046953723,-0.045507696,0.37495968,0.29280093,-0.17676233,0.10334021,-0.5832204,-0.072384395,0.1316482,0.20228986,0.12135989,0.24765484,-0.46232262,0.41220883,-0.6966684,0.072757535,-0.32823163,0.091212064,-0.03497711,-0.363122,0.1159559,0.29956213,0.1501316,-0.58799285,-0.3650012,-0.37099472,0.57151824,0.016547972,0.10880538,0.71201664,-0.2303927,-0.0860019,0.06604781,0.55030614,1.2616246,-0.14235188,-0.02868239,0.3413523,-0.4455308,-0.55054796,0.31849632,-0.3010507,0.1595599,-0.30689907,-0.27437288,-0.77289265,0.304014,0.056595024,0.1466673,-0.058385458,-0.6516178,-0.26066902,0.41249862,-0.41859016,-0.13731398,-0.44677505,0.12929875,0.5850162,-0.32425538,-0.63741606,0.12734044,0.23746854,-0.28103957,-0.6278839,-0.2102073,-0.3251656,0.4090351,0.1189942,-0.29758397,-0.13335097,0.0063693426,-0.44313732,-0.0057822242,0.17486174,-0.41465545,0.2590102,-0.26185128,-0.077813186,0.98221046,-0.12091244,0.3234244,-0.74150914,-0.5978232,-0.85534984,-0.53584045,0.45897377,0.29363683,-0.1200246,-0.95819086,0.040212706,-0.112354845,0.03454982,0.18312927,-0.09701834,0.5117522,0.11843252,0.61267525,-0.06957943,-1.1130534,0.18645586,0.25430152,-0.20067078,-0.77060276,0.47296035,0.121243395,0.9468386,0.12615912,0.04727447,0.11600316,-0.67254955,0.07982678,-0.28634873,-0.08121807,-0.77452105,0.16894405 -367,0.35841963,0.033524085,-0.6125652,-0.3067084,-0.35337538,0.18302837,-0.46861264,0.17292787,0.26603904,-0.25933456,0.07083733,-0.012168332,-0.27318743,0.25406834,-0.22731331,-0.94253653,0.20428823,0.079669,-0.6238651,0.64478433,-0.39663863,0.40011564,0.11037234,0.1799827,-0.18639043,0.12024594,0.47405857,0.1095567,0.031559877,-0.39459303,0.15852652,0.20751223,-0.8775045,0.34978142,-0.015862575,-0.20516777,-0.09827935,-0.47539932,-0.10607122,-0.90845937,0.2621588,-0.7855527,0.55885404,-0.09644634,-0.43044335,-0.02755284,0.16636476,0.20559515,-0.07058547,0.08094977,0.28578207,-0.3344917,-0.19674815,0.116402104,-0.06690605,-0.5320745,-0.54980105,0.008603153,-0.66223794,-0.0012884566,-0.34466797,0.38186482,-0.33324292,-0.10398744,-0.37054187,0.22455035,-0.35980317,-0.123966634,0.2621509,-0.40300274,0.055040065,-0.49589628,-0.058193725,-0.14071532,0.49913028,0.00045166697,-0.15965368,0.380786,0.52488154,0.641002,0.100671545,-0.37351185,-0.054923225,-0.2170279,0.25817457,0.5947011,0.03641257,-0.5285211,-0.31851986,-0.052698195,0.6435156,0.053318296,0.16432206,-0.32981592,0.00847838,-0.17948224,-0.029418945,0.7024912,0.5950295,-0.5234377,-0.05704693,0.5409561,0.26536772,0.37696353,-0.28562006,0.3621882,-0.16259839,-0.4108471,-0.25313875,0.29779792,0.027369468,0.4887741,-0.2250798,0.11011721,0.85267526,-0.037500966,-0.02734435,0.20548965,-0.15657587,0.03575221,-0.13481237,-0.066905364,0.26021078,-0.5562446,0.014412169,-0.43884903,0.5988485,0.08509286,-0.8996751,0.31721744,-0.3548687,0.13750459,0.08857016,0.8333596,0.9414553,0.46645245,0.12480574,1.1018133,-0.5358247,0.014535508,0.37540987,-0.37254265,0.04596361,0.0022200432,0.067784235,-0.37132493,0.27046615,-0.09366355,0.09524261,-0.06783343,0.4429202,-0.5116623,-0.10805039,-0.013745828,0.54002655,-0.28642845,-0.14744309,1.0042828,1.0209777,1.0694338,0.015057253,1.2631617,0.22512162,0.029705862,-0.40143389,0.06552024,-0.5421497,0.31589556,0.49909708,0.7315784,0.33711267,0.047606595,0.0099283075,0.29002067,-0.46964136,-0.25698397,0.1308401,0.3918218,-0.052650232,-0.33840445,-0.43686375,0.028406573,0.4416431,0.15282205,0.08839653,0.21573985,-0.081788726,0.5647184,0.17090575,0.58580494,-0.109188676,0.08647684,-0.031702194,0.35339665,0.21766233,-0.2578212,0.1987063,0.13625507,0.26075214,-0.10449036,-0.4952092,-0.08381634,-0.40714666,-0.4358911,-0.26326314,-0.41585895,-0.4212112,-0.20620091,-0.32422638,-0.20739272,0.10604175,-0.22654554,0.49994227,-2.416045,-0.23004277,-0.36334845,0.3550728,-0.1538368,-0.21324213,-0.17412946,-0.5564394,0.46032968,0.341935,0.49120182,-0.64113075,0.38936567,0.33303812,-0.2979098,-0.13831954,-0.74343795,0.09675656,-0.017675575,0.52184427,0.051371165,-0.40599993,-0.032447316,0.39302513,0.7599692,0.31054574,0.05671944,0.28904969,0.72564715,-0.21156533,0.42871326,-0.028985007,0.68254036,-0.12887834,-0.19706538,0.37561896,-0.50770205,0.63691676,-0.3528896,0.09868318,0.5224825,-0.27487892,-0.8343421,-0.5526854,-0.38309553,1.4632858,-0.43509668,-0.7821067,0.057645205,0.42258328,-0.16304791,0.14773428,0.539522,-0.08072112,0.15280768,-0.54773504,-0.12115367,-0.30664435,0.27732515,-0.26626632,0.08681847,-0.55865246,0.8580941,-0.24462748,0.47799176,0.18269464,0.123926364,-0.28909776,-0.5210745,0.033523023,1.0427173,0.6362249,0.052338462,-0.19962652,-0.20156077,-0.50436634,-0.40124565,-0.112545066,0.84973,0.4273978,-0.0533387,0.068910375,0.36944303,-0.0893039,0.21640804,-0.21984935,-0.58047974,-0.23533382,0.1145404,0.83368737,0.6667411,-0.33521715,0.29970816,-0.038523596,0.033252448,-0.2001035,-0.50421274,0.45657036,0.5323615,-0.21897057,-0.20392779,0.44934255,0.35129732,-0.27499706,0.500637,-0.60994476,-0.65113205,0.53193235,0.12835693,-0.47815853,0.18519334,-0.41013023,0.14503722,-0.6796516,0.57946354,-0.47733933,-0.7236189,-0.3910703,-0.232357,-2.8623672,0.07029886,-0.12518395,0.17914852,-0.457584,-0.11171063,0.4613417,-0.41602772,-0.79513973,-0.00575568,-0.016499365,0.5690408,-0.24615976,0.070184745,-0.33497497,-0.28272817,-0.11490335,0.4710793,0.17330442,0.38314137,-0.01898798,-0.061907146,0.04385628,-0.35551235,-0.36946398,-0.25727886,-0.61615354,-0.67850065,0.013802481,-0.32799646,0.0954417,0.6907819,-0.70107377,0.03422185,-0.26225457,-0.019082764,-0.17717846,0.13547377,0.112162426,0.19461183,-0.0847997,-0.14392304,-0.050889414,-0.14903928,0.44517216,0.07588218,0.30758947,0.47605923,-0.2546868,0.17650345,0.520364,0.58948797,0.14636944,0.9421779,0.04239065,-0.06804083,0.44292277,-0.10201855,-0.40264267,-0.7651897,-0.31750455,-0.012582108,-0.5061561,-0.37479073,0.011060203,-0.35343245,-0.8982797,0.3623964,0.14372154,0.385766,-0.31539258,0.31010112,0.24281693,-0.17953089,0.10983674,-0.0846147,-0.23833187,-0.46356645,-0.36498114,-0.7609116,-0.5520598,0.040112156,0.8162084,-0.1734567,-0.21373202,0.18431412,-0.117937885,0.08880718,-0.016608402,0.272414,-0.026606092,0.3417354,0.1004701,-0.8740568,0.38416693,-0.28838554,0.10534818,-0.5557887,0.11600215,0.6888575,-0.5832452,0.27158314,0.60732305,0.28985476,-0.096256666,-0.77934223,-0.11762651,0.1510237,-0.2899497,0.56291157,0.13776846,-0.5464157,0.6518493,-0.015187242,-0.12314129,-0.6118094,0.64130646,0.120407164,0.08021845,0.25746244,0.4812932,-0.075629435,-0.11462755,-0.1807632,0.3272945,-0.5381521,0.44230264,0.39275554,-0.08507971,0.4845979,-0.047979005,-0.63462263,-0.52827615,-0.15833111,-0.7055621,-0.32524952,-0.026285563,-0.17777629,-0.040613372,0.046381168,0.13690732,0.5331721,-0.3079017,0.12795216,-0.17606023,-0.29929128,0.68112665,0.63323206,0.49863988,-0.4600604,0.6949709,0.29193807,-0.021262405,-0.019528363,0.09072958,0.63954324,0.27569905,0.3860825,-0.023992207,0.18023065,-0.06619502,0.5449311,0.28234118,0.3948854,0.20103979,-0.29240718,0.35078296,0.06107494,0.49703616,-0.38526216,-0.5498525,-0.09086067,-0.040122706,0.0016371746,0.45509848,0.14770164,0.24769542,0.051095646,-0.19656365,0.11747413,-0.112457834,-0.24648798,-1.535178,0.42088023,0.23182829,0.78936344,0.2559896,-0.03395394,0.08614968,0.5570526,-0.26854637,-0.15143363,0.39755073,0.088085614,-0.3746267,0.5513729,-0.49728012,0.25159213,-0.18856955,0.18009599,0.2057956,0.23421256,0.49580693,0.86042327,-0.14293444,0.040572487,-0.27263075,-0.27424064,0.13444774,-0.28143254,0.33945307,-0.3100407,-0.36618656,0.6703099,0.30780414,0.26432377,-0.34460157,0.051234502,-0.02824889,-0.315223,0.05235184,-0.17167042,-0.086740054,-0.35245916,-0.48508188,-0.1232247,0.6680501,0.0051615834,-0.1321664,0.107544556,-0.24785928,0.23370838,-0.07836231,0.19946377,-0.16125591,-0.7463947,-0.1803313,-0.58922815,-0.50588137,0.22763543,-0.26579455,0.3338627,0.2907844,-0.08042015,-0.12070365,0.090649076,0.11854366,0.41624528,0.031164348,-0.27891135,-0.32675007,-0.14481023,0.34994334,-0.43451935,-0.053350564,-0.20021772,0.3073564,-0.43758106,0.35947245,-0.39965394,-0.3116264,0.18552384,-0.03184455,-0.2445079,0.35728452,-0.25645772,-0.16180792,0.29551083,-0.302376,-0.07323702,-0.047051884,-0.25679538,0.26990715,0.08751982,-0.020799914,-0.08476504,-0.044342704,-0.17518868,0.15140118,0.07249719,0.1084401,0.6743631,-0.0015750059,-0.7138397,0.28828996,0.0915146,0.6844068,0.21879342,0.054137833,-0.20976639,-0.46539885,-0.46893117,0.7890285,-0.21633424,0.18544881,0.07005691,-0.3129504,0.7847617,0.17082377,1.1541506,0.13609883,-0.6277522,0.048309058,0.7237204,0.02780373,0.07294605,-0.36147442,0.9547545,0.53299254,-0.11391248,0.083729506,-0.5520796,-0.025616746,0.25782365,-0.17819127,-0.1480058,-0.15649335,-0.6541476,-0.15563338,0.021427555,0.20122483,0.016567692,-0.11889503,-0.24141285,0.16432749,0.17819087,0.39298293,-0.87686837,-0.34017804,0.24814437,0.124360576,-0.19889866,-0.0415419,-0.34216875,0.29262123,-0.8294169,0.12126456,-0.58808714,0.17250605,-0.065200515,-0.43837658,0.38547182,-0.22871438,0.3811029,-0.3532105,-0.4139169,-0.08122091,0.4647534,0.36106962,0.24707386,0.73684055,-0.18935974,-0.208051,0.2278982,0.61245006,1.3060305,-0.051082294,0.14894919,0.20680937,-0.400651,-0.6272258,0.018595848,-0.6358043,0.20480503,-0.1021673,-0.5262547,-0.30731106,0.15427849,-0.057535954,0.1091602,0.14734364,-0.83055866,-0.22596705,0.29305276,-0.28639808,-0.23035358,-0.39244965,0.07808571,0.74148476,-0.40395632,-0.35813135,0.0043574315,0.26891214,-0.38330224,-1.0312511,0.2154136,-0.3089432,0.37397188,0.09745752,-0.5129152,-0.011661432,0.2809715,-0.45219082,0.40165728,0.5151702,-0.31760582,-0.05324651,-0.19165525,0.07427122,0.8136725,0.0028780145,0.16233923,-0.5447603,-0.48905095,-0.81110954,-0.24711822,0.07277185,0.36522952,-0.102725744,-0.519641,-0.35829213,-0.5044379,0.118324175,0.07666715,-0.53477955,0.32322145,0.109947436,0.63854754,-0.20569287,-1.14002,0.053722654,0.015668487,-0.0023783338,-0.44409537,0.4053066,-0.09121646,0.70037574,0.13402446,0.08081637,-0.019216478,-0.93859273,0.36119658,-0.19161974,-0.0077478206,-0.63835675,0.4632717 -368,0.45018086,-0.2364872,-0.42682832,-0.24639902,-0.26220647,0.012085685,-0.09272171,0.53468305,0.20419887,-0.37097174,-0.28472072,-0.31801316,0.029789329,0.5740972,-0.17262064,-0.6296615,-0.05788323,0.0944882,-0.62491095,0.7080721,-0.30261335,0.179184,0.28362235,0.3474159,0.52712315,0.24002257,0.28423563,-0.14886306,-0.0827909,-0.16697346,-0.20850913,0.1971543,-0.46710736,0.12540719,0.0057888883,-0.34037516,0.0055320784,-0.37256983,-0.35726696,-0.8477734,0.42414325,-0.96877843,0.46268535,-0.033257794,-0.19353639,0.3913899,0.1347493,0.50050336,-0.35359982,-0.18039992,0.11364224,-0.069331184,-0.12509693,-0.07547665,-0.0039981776,-0.42887667,-0.7069145,-0.07097815,-0.26001856,-0.38633674,-0.4015539,0.08301815,-0.37187845,0.048939977,-0.00025035653,0.61480385,-0.45130232,-0.02877487,0.3759479,-0.17413895,0.26360252,-0.6251001,-0.223765,-0.094205804,0.26385006,-0.010601188,-0.058782734,0.38140345,0.44789174,0.19284718,0.08042483,-0.21695413,-0.20158419,-0.017233917,0.10363114,0.36382556,-0.111503355,-0.69591206,0.079497404,0.16727415,0.1964055,0.30158487,0.33668354,-0.29067013,-0.20308377,0.092455946,-0.28262743,0.29160234,0.3738316,-0.3095053,-0.28046387,0.44488934,0.46022135,0.13262634,-0.05513105,-0.07171651,-0.03406511,-0.59141874,-0.046294354,0.019791672,-0.38111606,0.6739877,-0.23418872,0.27122137,0.7524094,-0.13761583,0.022355633,-0.07025757,0.114162244,-0.31430793,-0.2618287,-0.28408793,0.21753727,-0.4222533,0.30175433,-0.24681011,0.83755404,0.18650429,-0.6250816,0.23035678,-0.58755875,0.248053,-0.21773006,0.46492293,0.6444173,0.2856094,0.4479048,0.59610456,-0.500884,0.0055904803,-0.06249958,-0.47770095,0.052965377,-0.23932374,-0.0366653,-0.5631982,0.015180715,-0.024858305,-0.09889972,0.12169496,0.22757597,-0.55056196,-0.027412305,0.060563378,0.78862095,-0.25240093,-0.03190504,0.7909933,1.0178796,0.9798521,0.020836404,1.0922669,0.3027366,-0.31171924,0.3172337,-0.30174664,-0.6662189,0.3371965,0.6688519,-0.50160074,0.30809647,-0.024485067,-0.021605058,0.29695,-0.33417526,-0.009997108,-0.31151935,0.16618972,0.24990673,-0.33506542,-0.38814372,-0.25952515,-0.07092677,0.020896604,0.12688635,0.25999624,-0.074658975,0.38730118,-0.014737887,1.6370901,0.029879782,0.021811215,0.04152785,0.39164788,0.20673566,-0.13458201,-0.10415898,0.3680875,0.46070185,0.12595968,-0.5606735,0.18940951,-0.3164017,-0.48145458,-0.11997745,-0.3708191,0.07982893,0.14548866,-0.3330497,-0.0766083,-0.23896995,-0.14149812,0.40117565,-2.8896368,-0.27917233,-0.22704509,0.22501767,-0.3180838,-0.23494376,0.14758505,-0.51030236,0.4250036,0.4399073,0.4854091,-0.6712359,0.22424321,0.3314421,-0.71428174,-0.13180251,-0.5831949,-0.08172804,-0.038034566,0.44806114,-0.082594,-0.16074432,0.07006355,0.058730662,0.39507908,0.07233425,0.14113732,0.39373067,0.33327463,0.05951715,0.49961886,-0.028858075,0.533668,-0.13194779,-0.14146936,0.23152855,-0.14008239,0.45134875,-0.10725074,0.091582336,0.56700414,-0.361324,-0.8489135,-0.6974581,-0.2567658,1.2355039,-0.29177305,-0.30970213,0.24776676,-0.10872082,-0.08262753,-0.056094382,0.35626975,-0.17981638,-0.141171,-0.78813106,0.094796024,-0.012444994,-0.02913537,0.0049185907,-0.1625456,-0.4069745,0.79172695,0.016029615,0.38297603,0.27716756,0.19854258,-0.39791423,-0.4506082,0.06275292,0.86356366,0.39754248,-0.038315184,-0.11740164,-0.24018177,-0.50237143,-0.18790796,0.23358266,0.42903143,0.7013589,-0.008120378,0.1064197,0.22305979,-0.06518167,0.06297445,-0.2502881,-0.23130812,-0.060356077,-0.006504408,0.43411463,0.58381623,-0.13247783,0.5108448,-0.099899575,0.31144163,0.034540087,-0.51623255,0.71534437,1.3124367,-0.18120375,-0.3211324,0.5743857,0.41743067,-0.1581995,0.47485584,-0.4402752,-0.13963506,0.59880495,-0.21872623,-0.38580042,0.16806832,-0.23843524,0.124151655,-0.93358666,0.238549,-0.30384043,-0.37406352,-0.49959913,0.02795544,-3.3704379,0.23377919,-0.33323193,-0.18908015,-0.24663281,-0.21543467,0.17018318,-0.69772184,-0.4651323,0.27264827,0.15399791,0.8555349,-0.10221087,0.21066198,-0.16135387,-0.1695761,-0.29454586,0.042551212,-0.030607702,0.29448527,-0.034098413,-0.41535488,0.14560829,-0.04287953,-0.57693857,0.13243246,-0.5299132,-0.4302862,-0.31075612,-0.44401744,-0.34190044,0.5952024,-0.20953642,0.06729386,-0.12837508,0.014778083,-0.08516636,0.18315196,0.08093578,0.10095896,0.10896306,0.0036522597,0.06985135,-0.39666587,0.41508836,0.015200155,0.3866386,0.35064745,-0.18926832,0.28811032,0.3513581,0.5719738,-0.15160473,0.6910902,0.4317614,-0.06427523,0.2576334,-0.23019895,-0.30851275,-0.5637202,-0.33755854,-0.03919622,-0.32079872,-0.40306106,-0.122133374,-0.33921337,-0.67278165,0.47967148,0.027979845,0.31175843,-0.09072698,0.29660162,0.61637074,-0.31067005,0.04269874,-0.021522235,-0.20295897,-0.65771645,-0.03905773,-0.6369948,-0.46583298,0.2645572,0.8661558,-0.28662133,-0.11652065,-0.15211225,-0.3682335,0.15073411,0.0066365427,-0.20016472,0.099026084,0.31272727,-0.14132579,-0.8002483,0.6637036,-0.026001113,-0.12024488,-0.5223693,0.26704088,0.42062762,-0.43895411,0.45117757,0.21789753,-0.044568814,-0.10976207,-0.33635995,-0.17917001,-0.09600454,-0.26763493,0.30994752,0.22785613,-0.65368754,0.38200098,0.41337943,-0.29778418,-0.76776886,0.46501392,0.016106913,-0.19495715,0.005373729,0.20719203,0.2842254,0.044989485,-0.28098944,0.19562355,-0.5094289,0.18889233,0.12876435,-0.031333003,0.251671,-0.05511275,-0.07387591,-0.7951861,0.12906884,-0.32106882,-0.21058403,0.2507641,0.22351561,-0.0046564424,0.068968445,0.105311535,0.37525532,-0.11564578,0.1628437,-0.050332267,-0.24617918,0.376841,0.4798324,0.32204118,-0.5376012,0.6425248,-0.053825855,-0.085916884,0.024189722,-0.021022445,0.49111792,0.35197586,0.35142514,0.121673174,-0.23781858,0.35746452,0.5896894,0.07868651,0.44131595,0.1458682,-0.1068364,0.23122971,0.051381554,0.22682966,0.1031866,-0.62072414,-0.04161952,-0.28455305,-0.018456439,0.6106839,0.056080867,0.12777664,-0.027316472,-0.47597966,-0.05983148,0.002438907,0.016232967,-1.0671928,0.42226917,0.31503597,0.83903486,0.49557644,-0.24149558,-0.10480498,0.78348416,-0.16794932,0.1564844,0.3604752,0.002599729,-0.6250238,0.5965725,-0.857273,0.35868615,0.04661083,-0.08284824,-0.048282016,0.08580857,0.16139562,0.7205078,-0.2515649,-0.0056303483,-0.10398074,-0.4161612,0.33235398,-0.37540904,-0.014625243,-0.5780967,-0.3329474,0.36682183,0.49345875,0.2783184,-0.08324722,-0.009551162,0.16053547,-0.16554105,0.28931546,0.16645236,0.1368672,0.052524034,-0.56324893,-0.28971466,0.40179938,-0.0251155,0.36863974,-0.087068364,-0.19574581,0.22580817,-0.32240704,-0.10566332,-0.16061376,-0.7485107,-0.005428642,-0.09760017,-0.3457648,0.50535214,-0.16338755,0.25518647,0.22567551,0.101382814,-0.14385669,0.13087158,0.038065225,0.88657486,-0.050872866,-0.28810245,-0.3029308,0.19876416,0.033512298,-0.13181296,0.16563666,-0.15080397,-0.16362773,-0.62212986,0.63726246,0.032278467,-0.2886093,-0.07156115,-0.19941998,0.07182544,0.596063,-0.23020756,-0.023789244,-0.22456113,-0.2314916,-0.15784028,-0.25769696,-0.10923431,0.3252283,0.29217127,0.2196552,-0.2200365,-0.008207634,-0.07927536,0.4966062,-0.14210467,0.3035221,0.21632311,-0.11514684,-0.22837187,-0.37795955,0.2653982,0.36760256,0.17921512,-0.22238682,-0.39218494,-0.48154068,-0.41805503,-0.0021533924,-0.039623715,0.4678237,0.03080371,-0.25437427,0.7813419,-0.10206963,1.3364226,-0.03888506,-0.4392064,0.11388435,0.65600485,0.024112549,-0.1659183,-0.11558678,0.9385404,0.52163815,-0.07014798,-0.039584137,-0.42179343,-0.029108593,0.31740412,-0.23492469,-0.07256466,0.07979113,-0.483078,-0.4755044,0.14134884,0.32114983,0.1925338,-0.086439386,0.033054896,0.27568272,-0.051608305,0.5206288,-0.2395698,-0.30700874,0.19963405,0.17467165,0.028941298,0.11058948,-0.5139052,0.48594713,-0.6361946,0.21010001,-0.21111958,0.2087475,-0.23555276,-0.32998198,0.28056854,0.051710945,0.32804176,-0.31766585,-0.51239485,-0.16497569,0.54391867,0.2812404,0.12296168,0.6671772,-0.3736345,0.016315278,0.05391728,0.43860856,0.90953696,-0.16897038,0.036656175,0.3729264,-0.45447573,-0.65065515,0.5413874,-0.22213279,0.31819883,-0.041145064,-0.1369144,-0.62890923,0.26238376,0.36432013,-0.0036253482,-0.034054484,-0.6053949,-0.2963763,0.34513617,-0.39035413,-0.16953342,-0.406173,0.18082802,0.4035838,-0.2950909,-0.3502398,0.07450138,0.09319825,-0.08200623,-0.43934625,-0.2315246,-0.32359052,0.32012185,0.04906676,-0.33267593,-0.14741233,0.089099765,-0.3963876,0.2086778,-0.23601472,-0.38777637,0.07898784,-0.35616398,-0.0077688354,0.87050164,-0.22477841,0.099174105,-0.6576519,-0.36827025,-0.7007438,-0.40481105,0.5995244,-0.1318027,0.09707133,-0.6499491,0.062337425,-0.04442897,0.07522,-0.15143652,-0.29383484,0.38383445,0.13333496,0.39302382,0.02679973,-0.7176686,0.12274605,-0.004462653,-0.033300005,-0.63700813,0.50515926,-0.07741648,0.7170065,0.06527988,0.22509514,0.2736491,-0.37002745,-0.020610092,-0.27284682,-0.33323577,-0.53018624,0.046934027 -369,0.2904438,-0.3339659,-0.4747232,-0.21492504,-0.3568096,-0.1347881,-0.12549068,0.33293015,0.3164558,-0.1556716,-0.2708693,0.092876874,0.05418231,0.5708275,-0.017712131,-0.68815684,-0.07845068,0.28228846,-0.6748972,0.4460751,-0.56528,0.30628005,0.14891805,0.47864228,0.067875355,0.4325659,0.34414017,-0.11299069,0.0649974,0.064826176,-0.10014514,0.29989856,-0.6498749,0.20109712,-0.10056567,-0.4041093,0.040274676,-0.3982224,-0.29359043,-0.78855634,0.12267749,-0.9866617,0.6393915,-0.0862885,-0.13508905,-0.1325608,0.19914666,0.41697532,-0.45788553,-0.0848005,0.21757856,-0.24618402,-0.26474532,-0.19917957,0.09269826,-0.46595445,-0.4653239,0.03130882,-0.5941207,-0.31582433,-0.27571943,0.18990889,-0.30318004,-0.06874769,-0.100061566,0.3309582,-0.37968862,-0.1157052,0.3721395,-0.3997334,0.21359086,-0.5809915,-0.0045354357,-0.031580348,0.4074578,-0.07012493,-0.34645858,0.4672255,0.39119813,0.5457083,0.413699,-0.37915447,-0.18053728,-0.110248454,0.10098258,0.4624755,-0.13822684,-0.22168292,-0.20517002,0.21385615,0.42138475,0.23858379,0.09112268,-0.16293682,-0.05570409,0.015810968,0.08834969,0.3970719,0.5630481,-0.16030894,-0.35653502,0.31004998,0.5346166,0.1906821,-0.12371589,0.005480051,-0.046815176,-0.5435739,-0.28409228,-0.11527665,-0.19805455,0.5986842,-0.22703949,0.048371155,0.9472256,-0.09340705,-0.063112795,0.06833297,0.020535268,-0.28684443,-0.36714083,-0.14473929,0.37182963,-0.47893667,-0.05841831,-0.21663526,0.6847979,0.16767247,-0.68457663,0.39369312,-0.48260644,0.15583012,-0.21310197,0.6836306,0.8018281,0.48431364,0.42641702,0.96797407,-0.2591311,0.3210076,0.1630227,-0.52265155,0.18109155,-0.38347536,0.004452561,-0.6091231,0.11373231,-0.1946558,0.009913518,0.089017905,0.33863053,-0.7879106,-0.04096739,0.24523197,0.8045077,-0.3061994,-0.1327068,0.7056437,1.1065955,0.9948076,-0.06786673,1.217076,0.44832823,-0.26513502,0.28383854,-0.37764394,-0.7442763,0.26834223,0.51918495,-0.15466021,0.35783356,-0.009937688,-0.019102342,0.46005052,-0.57302374,0.030578546,-0.06793367,0.30081585,0.029678,-0.22908022,-0.62446797,-0.046229545,-0.025255147,-0.19492237,0.17994016,0.31859928,-0.25148395,0.32765928,-0.16572863,1.3246144,-0.011062888,0.067274526,-0.0131556485,0.59918,0.28175446,-0.26089507,-0.078514256,0.3588494,0.47839049,-0.13779742,-0.5734669,0.20752014,-0.43948978,-0.56876,-0.15921809,-0.49202678,-0.13570637,0.19672063,-0.28617102,-0.35721982,-0.14226307,-0.3412426,0.3241192,-2.5946531,-0.28280297,-0.087594695,0.46125105,-0.43707502,-0.067894764,-0.03277909,-0.51541555,0.20541562,0.30878437,0.5500015,-0.66823924,0.48659053,0.44976902,-0.6440411,-0.22550589,-0.6681652,0.06884374,-0.110878415,0.53954834,0.0530171,-0.23738292,-0.09728587,0.01517648,0.7442951,0.08715891,0.2390768,0.5846166,0.33791322,0.20164695,0.35825017,-0.16641071,0.73860157,-0.33826926,-0.3154298,0.41428682,-0.17662531,0.34072325,-0.22339915,0.01767583,0.574909,-0.45506513,-0.99938244,-0.74051595,-0.24884237,1.0053899,-0.3473444,-0.57907957,0.31423596,-0.32318592,0.026485337,0.15612698,0.59646726,-0.04626282,0.09195929,-0.7136466,0.11770516,0.009342895,0.12675267,0.1405394,-0.018875016,-0.41102707,0.72971207,-0.11013218,0.55555165,0.23874386,0.38886362,-0.22281991,-0.44548064,0.12067714,0.6671266,0.2862589,-0.062487654,0.011495094,-0.28384012,-0.2145022,-0.27178642,0.04270098,0.5723534,0.8405896,-0.12042062,0.040180124,0.3294969,-0.11651481,0.009861302,-0.076012194,-0.23173314,-0.13449273,0.2551952,0.49467283,0.73752606,-0.32095894,0.51673424,-0.34438694,0.40384355,0.0045755277,-0.7259834,0.808108,0.59602284,-0.23092434,-0.06760586,0.67537147,0.43352273,-0.380817,0.6137829,-0.6962003,-0.34477425,0.63290966,-0.20668727,-0.39007622,-0.13136294,-0.18975121,0.24368367,-1.0678334,0.28310376,-0.22682475,-0.552743,-0.45716876,-0.08353249,-3.0552244,0.1603294,-0.27682766,-0.010539367,-0.34606302,-0.058735747,0.22015712,-0.8425748,-0.5334456,0.17178217,0.20275563,0.74431443,0.053980295,0.2014951,-0.21485975,-0.24110784,-0.12794222,0.23332904,0.07240263,0.2417562,-0.05766178,-0.52214825,0.0064243814,0.09581872,-0.5986408,0.18460736,-0.6843389,-0.4640228,-0.21549703,-0.72993016,-0.23785485,0.5360559,-0.34070876,-0.00334112,-0.2168712,0.26419577,-0.16760813,0.20195502,-0.00080744276,0.16932766,0.3513344,-0.14932455,0.14462592,-0.27899072,0.46841064,-0.058073528,0.5734039,0.091860786,-0.18291236,0.19579348,0.6738746,0.7062959,-0.32701114,0.9772206,0.6385977,-0.05651849,0.26174238,-0.38266203,-0.23594056,-0.639067,-0.5210868,-0.14626667,-0.466703,-0.58013296,0.29179668,-0.29693502,-1.0710869,0.7822619,0.038397916,0.58799654,-0.020698603,0.24870393,0.6110598,-0.20921165,0.014610974,-0.22193053,-0.27432156,-0.59043705,-0.29430568,-0.5569422,-0.590243,-0.027827721,0.96844304,-0.36973813,0.09975903,-0.007201296,-0.3724345,-0.006908685,0.041993115,-0.10993511,0.3315225,0.45099348,-0.1315549,-0.79111755,0.28445643,0.17483465,0.05079742,-0.6206068,0.17849304,0.54155934,-0.8300931,0.6313874,0.20683065,0.014442866,-0.07650916,-0.48958528,-0.30667984,-0.10039493,-0.031479537,0.50350934,0.17377004,-0.7776158,0.6001431,0.33205146,-0.5271035,-0.8071989,0.101490855,-0.14840208,-0.16256014,-0.03985307,0.17964877,-0.025438355,-0.07434937,-0.3017731,0.12718727,-0.46024588,0.24332689,0.21794558,-0.008198362,0.51437956,-0.2192516,-0.3109557,-0.99064535,-0.07921989,-0.5537746,-0.07839678,0.2198342,0.10712956,-0.07812733,0.2428565,0.2940629,0.43975526,-0.2097256,0.20407125,0.062216856,-0.57634157,0.20834854,0.5300429,0.23466757,-0.5579673,0.43852428,0.2294119,-0.35519952,-0.08843331,-0.07741917,0.55266696,0.14919086,0.30706096,-0.123702064,-0.22271322,0.25977403,0.8200722,-0.051619086,0.45509008,0.033986203,-0.076497406,0.36150652,-0.005002439,0.2678911,-0.07524602,-0.62123173,0.06910353,-0.089422,0.20496605,0.46933922,0.5235225,0.31129667,0.14090887,-0.251315,0.03822348,0.114478536,0.112111084,-1.067287,0.48678714,0.44844165,0.9589721,0.41238764,0.0976855,-0.3016632,0.76018846,-0.21355632,0.101760454,0.49006674,-0.20243612,-0.583876,0.6932193,-0.7913997,0.4224293,-0.09408593,-0.11414374,0.13569114,0.20973668,0.4067458,0.8793426,-0.20077842,0.04986729,-0.057059947,-0.124075375,0.108674124,-0.32701573,-0.02280166,-0.5987276,-0.30108097,0.8160439,0.4580579,0.42564875,-0.1929238,-0.1149012,0.13048698,-0.1472165,0.38335845,-0.12388161,-0.0056903777,0.1599604,-0.43410155,-0.1304229,0.49975142,0.34754503,0.27740878,-0.19557208,-0.32698902,0.09321051,-0.37832123,-0.22658443,-0.07287323,-0.65570736,0.01814404,-0.07863373,-0.43358496,0.84707254,-0.17455809,0.19590847,0.15026037,0.041852675,-0.19922656,0.29029778,-0.14207155,0.83884054,0.13464317,-0.38008994,-0.32474375,0.16053356,0.23571719,-0.3077091,0.22776063,-0.3751804,-0.059961732,-0.4156819,0.5802402,-0.06613147,-0.5687626,0.18961431,-0.25082687,0.037913088,0.5188383,-0.11446754,-0.14566085,0.13359937,-0.22225808,-0.5625688,-0.09011534,-0.33587205,0.2479594,0.16157392,0.051849823,-0.30628735,-0.25133654,-0.14136522,0.5679229,-0.01552778,0.3641848,0.10396846,-0.09153257,-0.19397052,0.109820336,0.425899,0.41358426,0.29194447,0.042017724,-0.39045593,-0.33254406,-0.32759768,-0.104758374,-0.027108865,0.26413727,-0.025876174,-0.21371463,0.8578994,0.14870769,1.4671777,-0.02323513,-0.3725391,0.12195529,0.59894127,-0.0039502014,-0.023075713,-0.45031247,0.8727439,0.7179709,-0.056808453,-0.00988372,-0.5913089,-0.22569785,0.5690922,-0.35810497,-0.23103501,-0.054185085,-0.69836515,-0.6210197,0.3191357,0.21474358,0.11564587,0.009752049,0.06628183,-0.12776144,0.031775236,0.37514502,-0.6767209,-0.32196224,0.19940995,0.40430245,-0.049340706,0.11439967,-0.46205643,0.45474848,-0.792273,0.2383125,-0.29951003,0.059756715,-0.34031793,-0.39416578,0.21125351,0.10989117,0.37571144,-0.2956789,-0.46177036,-0.012087317,0.5877524,-0.08093194,0.10950081,0.7716037,-0.4359059,0.017426819,0.10055573,0.4223784,1.2135129,-0.36170834,0.009588987,0.28202498,-0.41503957,-0.7229966,0.68044335,-0.3096809,-0.008174887,-0.14755969,-0.52631867,-0.50252205,0.1464816,0.2478567,0.018888762,0.10707385,-0.5249597,-0.07377833,0.30321434,-0.2536793,-0.09829418,-0.15781514,0.3396599,0.6597732,-0.26800823,-0.4378117,0.14849758,0.34321725,-0.16152123,-0.47960952,-0.14077859,-0.1920099,0.35519713,0.030847536,-0.52075356,-0.05461314,0.14430691,-0.4796201,0.17407693,0.29972404,-0.3423807,0.15488341,-0.31364632,-0.00023852174,0.8725304,-0.18938483,0.065221936,-0.65815353,-0.33690295,-1.0492011,-0.5365808,0.28978556,0.20112036,-0.08556879,-0.5427708,0.13384703,-0.082739696,-0.21060926,0.04978511,-0.6537799,0.37711328,0.098819606,0.5752685,-0.15370142,-0.9574904,0.09516633,0.18563502,-0.0070178965,-0.6876534,0.5828154,-0.15899266,1.0721967,0.0677379,-0.1115938,0.0921021,-0.45789343,0.07683728,-0.35736024,-0.121995434,-0.7793964,-0.11210852 -370,0.45149723,-0.16686709,-0.5143641,-0.19389842,-0.004983598,0.07874029,-0.30243346,0.840473,0.16895212,-0.38395953,-0.05519764,0.015207271,-0.052369326,0.3320572,-0.2454298,-0.66799474,0.047131438,-0.021495702,-0.35838607,0.5439169,-0.4847908,0.27925643,-0.093111075,0.44617745,0.1043131,0.25376248,0.34037402,0.2589077,-0.083007134,-0.16654304,-0.04891328,0.05935354,-0.52376956,0.29424474,-0.17505755,-0.23909168,-0.04131401,-0.40122545,-0.34994295,-0.7914288,0.38613388,-0.6593473,0.32677883,0.13710189,-0.33782864,0.09566507,0.27206036,0.12963921,-0.33272573,-0.08821422,0.11811521,-0.15811881,0.10016174,-0.14067246,-0.05288546,-0.6305843,-0.5843115,-0.08424715,-0.5491912,-0.051186223,-0.003303945,0.24551766,-0.42630032,-0.222807,0.023424553,0.62718314,-0.39775273,-0.40974155,0.35309944,-0.3355044,0.19196235,-0.85783035,-0.15920167,-0.10749822,0.1592498,0.042618394,-0.2159893,0.3725098,-0.046133026,0.339897,-0.057141673,-0.18877558,-0.20045245,-0.24095166,-0.043324042,0.4298834,-0.27446938,-0.60981315,-0.16214477,-0.09237704,0.3296979,0.1547412,0.26262623,-0.058461726,-0.11696026,-0.074444175,-0.19327205,0.5750341,0.62584215,-0.19223905,-0.012832627,0.3368189,0.6835165,0.20955026,-0.15732028,-0.024407187,0.03489698,-0.5551226,-0.21113615,0.012237226,-0.18915083,0.5191631,-0.22434963,0.3961633,0.5449373,-0.21412249,0.043669302,0.09727762,0.22328697,0.014922802,-0.21532117,-0.2933804,0.34736958,-0.45319572,-0.0690307,-0.32888398,0.7121115,0.244675,-0.60390776,0.3362633,-0.2996112,0.0465693,-0.055456463,0.66654795,0.8244133,0.42881238,0.3366952,0.94799787,-0.39300957,0.07810057,0.0117761595,-0.06639161,0.18619692,-0.25197813,0.12397834,-0.44742784,0.10922364,0.23054874,0.06603081,0.064072944,0.4806207,-0.5459285,-0.19897306,0.43232283,0.7028573,-0.19784975,-0.011255483,0.8428135,1.2069951,0.9858276,-0.011606932,0.8127702,0.027389893,-0.19663258,-0.012783219,0.16263323,-0.77928895,0.28312925,0.4347173,0.58945936,0.40837398,0.059794385,-0.03205648,0.40901506,-0.55023736,-0.11877516,-0.12035134,0.38979855,0.16157164,-0.08475397,-0.32405356,0.045645982,0.027810214,0.15853517,0.05657971,0.32184446,-0.25983086,0.30047998,-0.100205295,1.1855651,-0.12334295,0.091939986,0.1922574,0.52902937,0.2648996,-0.4210154,0.31131852,0.3603499,0.44339085,0.14011633,-0.57743275,0.06527435,-0.36844325,-0.6907764,-0.13075034,-0.33947793,0.04620916,-0.096587546,-0.45716718,-0.23752517,-0.086962104,-0.1140678,0.3355641,-3.0881793,-0.15099497,-0.23985629,0.2772629,-0.19821109,-0.21800832,-0.12361785,-0.49777338,0.5091849,0.5942836,0.4140779,-0.64576846,0.09733797,0.37194073,-0.45926058,0.016817546,-0.564405,0.065698035,-0.11262595,0.4873235,0.09710961,-0.2271276,0.07324994,0.47550288,0.50643235,0.22823347,0.22436123,0.10348272,0.382068,-0.31435552,0.26950905,-0.13284664,0.38766813,-0.43426713,-0.17315787,0.3135524,-0.6371333,0.1199914,-0.4876366,0.16073531,0.53744674,-0.17544909,-0.8256356,-0.5040781,0.12901208,1.2102863,-0.16040601,-0.7294685,0.13670413,-0.24733348,-0.1323835,-0.0908038,0.55614936,-0.17903852,-0.08970338,-0.6165952,0.08156046,-0.36988544,0.1392281,-0.07411951,-0.010831823,-0.53807807,0.81506443,0.00998396,0.51025295,0.33934188,0.08618816,-0.6239886,-0.37005875,-0.06058373,0.7842174,0.63031954,0.09928688,-0.19257323,-0.048990708,-0.1657508,-0.16450089,0.222151,0.7744995,0.81998825,-0.1048905,0.21539827,0.33827415,-0.07425539,0.05795771,0.09429663,-0.32637125,-0.26442686,0.25695404,0.7168676,0.59770304,-0.118171036,0.14932309,-0.0647525,0.16459651,-0.2634485,-0.47570714,0.39558005,0.7935167,-0.18536568,-0.3233962,0.560353,0.47902367,-0.22378969,0.6621671,-0.7086828,-0.4758842,0.49753428,-0.12516315,-0.34427705,0.13432789,-0.38629195,0.10238904,-0.75814277,0.27454486,-0.36538282,-0.60040396,-0.739454,-0.36580846,-3.2761047,0.20819353,-0.32654276,-0.13386686,-0.24153256,-0.18584792,0.21476442,-0.73757166,-0.5693023,0.1900676,0.0894249,0.71340877,0.018916365,0.017785585,-0.32482162,-0.3267688,-0.112868905,0.18697853,-0.017867932,0.21039951,0.07210681,-0.3238041,-0.101555966,-0.047094915,-0.39818358,-0.15256646,-0.40681243,-0.4728122,-0.25007865,-0.5164792,-0.079244606,0.6622832,-0.30735746,-0.032711364,-0.14677346,-0.01474001,-0.074977495,0.10181267,0.001829187,0.19922282,0.027623514,-0.10631671,0.055244815,-0.4288546,0.15425014,0.066771366,0.47029042,0.25833043,-0.1883791,0.12583716,0.6075552,0.5566645,-0.16294473,0.86403656,0.41817796,-0.05437538,0.29420897,0.03330676,-0.1152828,-0.52429277,-0.36536124,0.30229667,-0.47012004,-0.33504197,-0.14452045,-0.33201084,-0.87638515,0.46007586,0.038588624,0.58868855,-0.12119169,0.4433279,0.34091076,-0.25502762,-0.13978316,0.022325685,-0.13484356,-0.46630108,-0.20329838,-0.5987367,-0.35017335,0.30099872,0.80563897,-0.37956536,-0.12202326,0.20828335,-0.17046846,0.0138738705,-0.0022521715,0.079366855,-0.09960624,0.3290882,0.062004745,-0.587272,0.44030452,-0.2401657,-0.022148123,-0.50649786,0.0980992,0.40864873,-0.43376896,0.57349306,0.4372541,0.07772002,-0.3388139,-0.7582226,-0.09540657,0.06558597,-0.1332269,0.41850838,0.28776145,-0.74843025,0.5525573,0.086755864,-0.41001233,-0.63551563,0.48511043,-0.08227763,-0.20858096,-0.15921186,0.23165995,0.13619958,-0.027039543,-0.15424152,0.36615786,-0.2808631,0.23506917,0.1723709,-0.041493047,0.5912749,-0.083089374,-0.16002811,-0.58296067,-0.052309494,-0.7442048,-0.20650937,0.29483262,-0.18417907,0.053782433,0.08905974,0.04964316,0.35139474,-0.33904216,0.24090953,-0.0851384,-0.33953795,0.5177791,0.5677194,0.57845896,-0.5046219,0.6789887,0.16502474,-0.008933057,-0.05228362,0.012159526,0.48439702,0.12030822,0.43783227,-0.16077513,0.0012518564,0.20076223,0.77500194,0.27351654,0.40861008,-0.060548726,-0.071497925,0.08020388,0.053842414,0.27254006,-0.03575516,-0.6277633,-0.03712389,-0.23601979,0.053885013,0.45547438,0.18818922,0.39294425,0.11038057,-0.35603622,0.042959273,0.12461395,-0.0794894,-1.430953,0.4727893,0.21829616,0.9052105,0.3808786,0.0024271756,-0.04827286,0.6794769,-0.07426231,0.06434103,0.4004883,0.00060335424,-0.37444147,0.5707132,-0.70020944,0.50576735,0.029654743,-0.11087579,-0.07210955,-0.040487263,0.5909483,0.48661232,-0.20740636,-0.009790971,0.043475732,-0.22578955,0.18023473,-0.4094944,-0.057743043,-0.527482,-0.2800386,0.53157085,0.48010978,0.30588645,-0.04313883,-0.07193205,0.093827866,-0.06313628,0.053448807,-0.2430225,0.05545525,-0.18492673,-0.60903555,-0.25620496,0.4397478,0.037146453,0.13718212,-0.025596509,-0.20080392,0.11525094,-0.08400092,0.031971827,-0.02401062,-0.77171296,0.052691262,-0.21241431,-0.45932516,0.85617733,-0.30609128,0.23373759,0.24442428,0.008248996,-0.033667725,0.14558788,0.020142952,0.8103668,-0.2910532,-0.23026596,-0.5053516,-0.040328633,0.20452213,-0.29796037,0.020584038,-0.3081921,0.070778824,-0.45670247,0.41318926,-0.20344369,-0.08955252,0.26825702,-0.24536765,-0.060159955,0.58353657,-0.070893325,-0.034465168,0.034214765,-0.3924968,-0.0911906,-0.20249961,-0.36209884,0.23940723,0.03895251,0.105697244,-0.14153534,-0.15427549,-0.05557056,0.19249316,0.088046074,-0.02589638,0.4024636,0.042332824,-0.43140054,0.057415936,0.2462327,0.5203703,0.09396129,-0.14188635,-0.30541536,-0.6737926,-0.4761748,0.3366913,-0.13944836,0.2787434,0.2518625,-0.058463488,0.8142233,0.041626472,1.0872902,-0.026879543,-0.5889836,-0.1348445,0.69021916,0.043890476,0.015029204,-0.2994589,0.93279195,0.49464127,-0.037796848,0.049860377,-0.3972415,0.18929805,0.43881336,-0.13726634,-0.2785679,-0.21206611,-0.6474935,-0.20207983,0.46600845,0.2716014,0.2234204,-0.15608364,-0.07824074,0.4110558,0.11433811,0.3321019,-0.6375015,-0.07035343,0.25611153,0.10890916,0.020304346,-0.03587227,-0.40499285,0.29346192,-0.6820321,0.027658528,-0.3902665,0.25567415,-0.254649,-0.55192477,0.23191637,-0.14793281,0.5504345,-0.30687633,-0.3946992,0.05263135,0.3412937,0.32187402,0.1915753,0.38756704,-0.24605255,0.019299813,-0.07490186,0.48395917,1.0162364,-0.3357124,-0.012384196,0.38961026,-0.47799316,-0.96175575,0.101165116,-0.550697,0.15531622,-0.12879777,-0.3350666,-0.5466757,0.28945926,0.32879946,0.030944278,0.089440785,-0.5856591,-0.31660578,0.08691593,-0.21972097,-0.24682009,-0.3793203,0.07144338,0.73055935,-0.3368515,-0.3586733,0.12674691,0.5962663,-0.11472422,-0.71668077,0.14610212,-0.33105335,0.31064713,0.019800948,-0.27448663,-0.17013498,0.041166823,-0.46720704,0.4273905,0.1953181,-0.24643536,-0.0924415,-0.16723682,0.16285004,0.8444843,-0.05381917,0.30367678,-0.46431383,-0.320257,-0.7393515,-0.46892095,0.37633905,-0.018242663,0.05170003,-0.771811,0.030051127,-0.27352306,0.040224966,-0.2602393,-0.30358532,0.51286703,0.13568264,0.3808719,-0.06941333,-0.6933213,0.16668911,0.037326258,0.01402128,-0.4321381,0.36386633,-0.14846504,0.9543864,0.08972657,-0.050145924,0.022008449,-0.63858217,0.34951875,-0.3161757,-0.4042549,-0.57856363,0.27828076 -371,0.30907848,-0.39294997,-0.43636298,-0.22854419,-0.22407478,-0.10063062,-0.21873103,0.2504592,0.16866839,-0.35696593,-0.21475697,-0.3361809,-0.059684347,0.6703151,-0.25121453,-0.72135264,-0.03868786,0.185418,-0.52219886,0.83955735,-0.37746415,0.17703497,0.33324727,0.35345307,0.21607225,0.097409405,0.49551392,-0.07876418,-0.10750863,-0.15659352,-0.10667229,0.059610214,-0.8706514,0.22532655,-0.25506923,-0.37971473,0.06561538,-0.28778055,-0.46985975,-0.89223367,0.32175753,-1.0065039,0.50608784,0.18121886,-0.28725478,0.08416658,0.32682195,0.19151741,-0.18584482,-0.088937156,0.10028332,-0.1419449,-0.030334687,-0.0069440603,-0.18665385,-0.5430039,-0.79608303,0.05435351,-0.60700065,-0.27762544,-0.27934,0.22246428,-0.4105216,0.0075984946,-0.06767613,0.70201254,-0.5966124,-0.29286557,0.20585035,-0.096193366,0.6288424,-0.58595467,-0.19509935,-0.29369453,-0.0950435,-0.15057828,-0.12744687,0.35509205,0.3177502,0.38317132,-0.009761676,-0.3969262,-0.26054773,-0.06321262,0.1360066,0.44454047,-0.07018328,-0.5847659,-0.25747183,0.14802994,0.012807672,0.22351821,-0.055876583,-0.531956,0.07361307,-0.27190128,-0.21661122,0.47112635,0.54759234,-0.36779192,-0.35480273,0.092384376,0.3612008,0.136856,-0.12799564,-0.0655638,0.117069125,-0.5983489,-0.124843776,0.2618342,-0.37783194,0.7125853,-0.20044951,0.09987458,0.75137764,-0.28164676,-0.022648096,-0.119399995,0.033460107,-0.21000521,-0.1075213,-0.3683858,0.46713397,-0.5779913,0.12176696,-0.22229493,0.8095813,0.1485161,-0.6917823,0.21577562,-0.59750706,0.18010537,-0.11934925,0.60603946,0.7326772,0.2815393,0.6449943,0.6304882,-0.33752576,0.22569157,0.08275558,-0.42996383,0.2006098,-0.43810812,-0.04354036,-0.35452166,-0.19317968,-0.26828706,-0.19519466,-0.31876436,0.5114108,-0.6096551,0.08560421,0.15966208,0.87480736,-0.17566256,-0.15115198,0.61331344,1.1026434,1.1637887,0.07851285,1.3095431,0.40744007,-0.21420346,0.24946064,0.039737526,-0.8004233,0.38083628,0.6291538,0.14522552,0.37484884,-0.016493052,0.03840435,0.33828723,-0.717261,0.17550667,-0.40041253,0.31083035,0.12797292,0.03835811,-0.72549766,-0.36177778,-0.066015154,0.11718563,-0.060901117,0.28436592,-0.12089663,0.28899148,0.035780217,1.6382914,-0.17805262,0.121738315,0.15013413,0.60020906,0.18377894,-0.056234896,0.017529873,0.24538553,0.27253133,0.3452871,-0.67481995,0.10675343,-0.33199513,-0.40398595,-0.31660298,-0.37301478,0.2369871,-0.030954799,-0.5050564,-0.24111187,0.041734412,-0.3742241,0.48403963,-2.207467,-0.19061309,-0.17551184,0.06948849,-0.37796286,-0.1583148,-0.005313953,-0.47787547,0.57685506,0.52079266,0.5426396,-0.7712801,0.09965768,0.54806,-0.5726855,-0.022819469,-0.6706927,-0.15618828,-0.2310722,0.59368205,0.1106833,-0.19123976,-0.014066647,0.25428924,0.43983746,0.058610737,0.16758084,0.23930408,0.30650613,-0.07011801,0.44256556,0.048894692,0.27781403,-0.41167542,-0.17594413,0.4977529,-0.1328965,0.376116,-0.3457372,0.16208644,0.5219659,-0.75134295,-1.0232807,-0.6236577,-0.7013127,1.1409186,-0.36996314,-0.58311814,0.30951035,0.18449746,0.02138122,-0.08360133,0.5961633,-0.23634668,0.3415784,-0.73719853,0.013704021,0.08196629,0.22576888,0.099054754,-0.072284326,-0.45118448,0.7843656,0.020457076,0.102489,0.357924,0.333599,-0.4293621,-0.93246984,0.10754356,0.9957838,0.46119747,0.129873,-0.42638135,-0.24658291,-0.12481294,-0.17000179,-0.027536387,0.41827568,0.9793553,-0.16452146,0.095480226,0.27436888,-0.0648699,-0.023019241,-0.05369993,-0.42480478,-0.004354082,0.06788688,0.72096854,0.798801,-0.1990096,0.43653026,-0.21911184,0.431906,0.036460366,-0.47656956,0.47487366,1.295018,-0.05960214,-0.17496628,0.7520757,0.5202019,-0.43170223,0.6044493,-0.7375102,-0.45134577,0.46897283,-0.095400296,-0.6370338,0.19589572,-0.45389786,0.056035925,-0.91432804,0.51895547,-0.20488904,-0.26130196,-0.6856957,-0.18898274,-3.7137775,0.36404297,-0.2855653,-0.14533934,-0.14104837,-0.08713143,0.3226898,-0.6443415,-0.61256224,0.30761698,0.005018167,0.5132626,-0.11934361,0.1456338,-0.17325349,-0.227031,-0.2705878,0.30151203,0.31168392,0.23233359,-0.17878999,-0.5355234,-0.02873204,-0.29039335,-0.5072635,0.09301996,-0.6611313,-0.6642399,-0.46810874,-0.72186965,-0.40137252,0.6918332,-0.043134045,0.03650582,-0.17986305,-0.009123241,2.8789043e-05,0.2801461,0.30800137,0.4667364,-0.035904545,-0.088240646,-0.22880723,-0.18824898,0.32048467,0.02703487,0.31673887,0.38757387,-0.13983135,0.24627213,0.7155462,0.5851145,-0.26107812,0.8667958,0.7168614,-0.15799963,0.17732161,-0.100981824,-0.3320097,-0.6602228,-0.39802817,0.09680409,-0.32589737,-0.5195177,0.060869288,-0.23279332,-0.62235016,0.80043125,-0.17422302,0.32085222,-0.06611701,0.031487603,0.42530814,-0.32249957,-0.13880755,-0.16248083,-0.06675344,-0.69420034,-0.47294354,-0.71393156,-0.60602236,0.03752521,1.0035058,-0.056256324,-0.24082334,0.079993,-0.2939473,0.00576519,-0.07526266,-0.058125228,0.19147782,0.36457077,0.15906961,-0.9101282,0.6272673,0.2323969,-0.01711682,-0.42101946,0.37413415,0.7237656,-0.6742413,0.5752799,0.46361613,0.12573043,-0.20434983,-0.673932,-0.45162544,0.09689955,-0.26488984,0.44893932,0.094627716,-0.7637868,0.49552956,0.21082835,-0.64097214,-0.8919964,0.5886046,-0.096841164,-0.21164083,-0.049583506,0.51731217,-0.060567122,0.1520692,-0.45849583,0.27641836,-0.46053484,0.11629615,0.27628872,0.012928896,0.37021258,-0.2012077,-0.21986957,-0.8434885,0.20494421,-0.44586077,-0.40277842,0.32589287,-0.06277323,-0.37808502,0.33577514,0.012639731,0.37766218,-0.09098852,0.080234356,-0.04834209,-0.36435166,0.45450833,0.54733205,0.53798956,-0.51572984,0.7299836,0.054812323,-0.08789978,-0.26239216,-0.036563158,0.38340685,0.10797355,0.3526789,0.048993807,-0.042168453,0.31798574,0.88285565,0.15656962,0.6444629,0.26266375,-0.0038210948,0.36628306,0.00900285,0.12260753,0.039507296,-0.56688225,-0.0036835074,-0.25701797,0.06339007,0.5891097,-0.0941939,0.3817732,-0.19310562,-0.29305282,0.18454361,0.34869394,0.10348076,-1.213075,0.21018012,0.17522903,0.59570116,0.7323198,0.043556023,-0.0069415173,0.86791116,-0.31466463,0.029988103,0.45146748,0.13323462,-0.5663068,0.8036633,-0.70861006,0.38383052,-0.13362604,0.05085565,-0.14150046,0.2559103,0.36188698,0.7089241,-0.15295254,-0.047737718,-0.26347488,-0.18564594,0.21621484,-0.540093,0.32346895,-0.3073829,-0.5681074,0.6568065,0.4907359,0.13322873,-0.079539776,-0.06116295,-0.069029175,-0.18313412,0.40817067,-0.026275346,-0.11548557,0.06442162,-0.72803,-0.1050451,0.5557149,0.14411661,0.19388713,0.057066146,0.058728784,0.13841286,-0.3007269,-0.20317383,0.028172761,-0.9697558,-0.06476381,-0.39905754,-0.35247675,0.5741802,-0.6112371,0.24480677,0.009225105,-0.0156167,-0.63552564,0.07620182,0.09261272,0.7260254,0.1142743,-0.20075583,-0.21562712,-0.013677504,0.11969113,-0.2756802,0.06715586,-0.2690479,0.013457951,-0.68106,0.7468485,-0.14516486,-0.5090528,0.032388944,-0.14001675,-0.18992585,0.71167517,-0.050413072,-0.27833235,-0.12619282,-0.18391053,-0.11802914,-0.21233672,-0.03793506,0.31312472,0.2045223,-0.058947522,-0.17670906,-0.01023497,-0.025173217,0.62795836,-0.22203256,0.38757297,0.30768695,0.21300496,-0.37576437,-0.031741094,0.11940267,0.53038925,0.17093472,-0.038744528,-0.018477896,-0.285601,-0.32813475,0.003061076,-0.08902701,0.23243974,0.12213731,-0.3359793,0.9518666,0.16173786,1.3831749,0.006977121,-0.4535999,0.09354351,0.5036114,0.010977815,-0.10619768,-0.45170748,0.9582378,0.6696906,-0.115371644,-0.319227,-0.42401972,-0.05009063,0.27885965,-0.2426846,-0.065986715,0.024539294,-0.6778336,-0.3382819,0.23314519,0.4843603,-0.0012300014,-0.16148812,0.100694805,0.1650457,0.10421076,0.525478,-0.35276666,0.04168423,0.41387033,0.3309135,-0.012704412,0.21276076,-0.25644058,0.35504702,-0.5600961,0.17331143,-0.514853,0.22750835,-0.202909,-0.3759664,0.31461594,-0.016756365,0.58502406,-0.28302765,-0.12264276,-0.14049904,0.69559234,0.20829014,0.14074807,0.75091743,-0.30336222,0.17160143,-0.010085049,0.56835407,1.3055766,-0.6006631,-0.08813393,0.06399154,-0.24336658,-0.7276352,0.6691904,-0.5056712,0.21761853,-0.034087855,-0.37860146,-0.581863,0.124186784,0.108307295,-0.13914204,0.056142733,-0.5367173,-0.16566205,0.35631815,-0.22296107,-0.22466664,-0.5236802,0.22869761,0.49045467,-0.20043118,-0.35391286,0.1239602,0.15395771,-0.26116848,-0.64401144,-0.106312715,-0.27353606,0.29763278,0.12028333,-0.34255943,0.052235257,0.04278585,-0.5690215,0.079492025,0.20228177,-0.371737,0.03221177,-0.07932521,0.059692513,1.0773674,-0.33423916,-0.20049123,-0.70735407,-0.53544575,-1.1498666,-0.22093163,0.87681025,0.114736296,0.14750026,-0.5421476,0.15485537,-0.15169916,0.21243036,0.044871926,-0.50773984,0.30264243,0.07881489,0.59862006,-0.08962801,-0.75731045,0.1882879,0.10437769,0.11677904,-0.6372297,0.47356665,-0.12332487,0.8226056,-0.0044244477,0.0954772,0.23768596,-0.44729593,0.16794656,-0.17228025,-0.37678966,-0.70900106,0.19998892 -372,0.26078454,-0.21409829,-0.39637342,-0.15190388,-0.3581217,0.17423071,-0.22757702,0.15576416,0.07971278,-0.38774088,-0.20025234,-0.04329093,0.07824548,0.27986094,-0.08047913,-0.5966879,-0.02079057,0.15933967,-0.798496,0.44301277,-0.6156396,0.35509402,0.11437754,0.33525088,0.0962731,0.4245097,0.12970257,-0.1492869,-0.055055395,-0.23688258,-0.07410271,0.15926674,-0.3881047,0.21771884,-0.16834728,-0.20212762,0.16640997,-0.3619074,-0.22614051,-0.61363804,0.09544352,-0.97322726,0.44337618,-0.13964802,-0.10620155,-0.089236304,0.18879806,0.4627786,-0.36524472,0.10633993,0.12273606,-0.2499825,-0.23500015,-0.38961565,-0.049104653,-0.20337561,-0.31525585,0.0939947,-0.47468823,-0.40971696,-0.044827603,0.23160559,-0.2083249,0.067680076,-0.18682022,0.18743657,-0.41349143,0.090997666,0.32506734,-0.32016128,-0.05583902,-0.51837593,-0.014587259,-0.026962193,0.56263787,-0.06600411,-0.114361,0.33969492,0.18026471,0.48728,0.24359483,-0.24008112,-0.0519435,-0.3496308,0.17219916,0.56083834,-0.061735388,-0.10774982,-0.22064851,-0.0077235224,0.29077825,0.37447268,-0.0037507752,-0.2642484,-0.102316804,-0.2800471,-0.17367649,0.2754194,0.44155154,-0.22158654,-0.31259635,0.35656688,0.50589013,0.038566433,-0.17965372,0.20639838,0.03977915,-0.40098047,-0.16428007,0.18702513,0.19386564,0.4323782,-0.13541085,0.21842629,0.75963646,-0.11415381,0.08887504,-0.05208335,-0.0155107975,-0.18735425,-0.28883377,-0.16467114,0.044074953,-0.547738,0.011488537,-0.30411884,0.8367037,0.19588155,-0.6441374,0.35882792,-0.47545975,0.072664656,-0.017136518,0.63399166,0.4841057,0.3852565,0.19842069,0.6718289,-0.3217208,0.22132412,-0.16566893,-0.34468976,-0.13347551,-0.13333826,0.044500813,-0.38465947,0.28628045,-0.030501945,0.120913714,-0.056213833,0.38141266,-0.5306789,-0.0020943086,0.14886467,0.7182036,-0.38244337,0.05395723,0.78875417,0.94940394,0.7064836,0.04125541,1.2026378,0.37890518,-0.185466,-0.0048307795,-0.24879931,-0.61962116,0.0782468,0.32482263,0.43572506,0.14110237,0.020882575,-0.061881885,0.3581707,-0.47593558,0.1599231,-0.19905697,0.30603963,-0.12719344,0.1686379,-0.44455853,-0.20625499,0.040243115,-0.16715784,0.25335506,0.23607992,-0.2580707,0.42515987,-0.05804495,1.299687,-0.119053885,0.09497897,0.18809037,0.44401243,0.09406173,-0.13475566,-0.15377375,0.42616826,0.46094647,-0.1906786,-0.6234113,0.0500684,-0.25034148,-0.4313713,-0.16130237,-0.38018006,-0.1302372,-0.04778831,-0.3870547,-0.26060975,-0.038971648,-0.32982534,0.41883758,-2.6781774,-0.22309606,-0.15371844,0.33521843,-0.39047292,-0.27708676,-0.1714845,-0.43278927,0.2193594,0.1790796,0.34038055,-0.5291366,0.47913292,0.4329911,-0.29271695,-0.28115177,-0.6532672,0.04643317,-0.10498902,0.34103858,-0.016854756,-0.092426635,-0.42129996,-0.14888027,0.5899093,-0.036154635,0.14665829,0.5429342,0.30211893,0.35209048,0.51297444,0.06642253,0.6384954,-0.39531168,-0.12805375,0.38857394,-0.24783958,0.37112096,-0.18772887,0.12586217,0.38966045,-0.6033309,-0.54861706,-0.5888482,-0.49311242,1.1724377,-0.45361117,-0.36465582,0.19692533,-0.16238587,-0.18837349,0.10736305,0.63993704,-0.1695173,0.02060825,-0.5798063,-0.009108181,-0.024741888,0.41066235,-0.0012954145,0.02953537,-0.31335393,0.5768949,-0.25442323,0.6751572,0.17495622,0.22179495,-0.085610196,-0.28015763,0.12152529,0.9310115,0.26329815,-0.0058270413,-0.10431349,-0.34195006,-0.19023076,-0.31209052,-0.045928497,0.585971,0.78269464,0.077538244,0.014546224,0.32217038,-0.16124485,-0.0051392196,-0.17841548,-0.1259211,-0.10651131,0.065584496,0.47621605,0.40757248,0.05188097,0.4859261,-0.28784496,0.46550223,-0.18826638,-0.4541903,0.4848846,0.2303296,-0.20806475,-0.1681637,0.5881158,0.6495533,-0.28608522,0.34120852,-0.6117423,-0.31920528,0.58222985,-0.18025322,-0.49624434,0.28698146,-0.1601731,0.31110534,-0.80783045,0.24961138,-0.23735647,-0.5041799,-0.41627845,-0.0690866,-2.5679312,0.10047575,-0.04429859,-0.13796361,-0.17020164,-0.11765487,0.16486746,-0.389213,-0.35756508,0.13670023,0.19929396,0.6251139,0.051176038,0.13009037,-0.2876239,-0.09960375,-0.02457467,0.13774046,0.061669096,0.2748896,-0.32981095,-0.23584965,0.06073548,-0.09055285,-0.36651233,0.17255399,-0.6611858,-0.524954,0.01263939,-0.5528019,-0.21540709,0.6172826,-0.54322463,0.024148563,-0.20322813,-0.0707432,-0.22512333,0.12126226,0.20870797,0.26845166,0.13609266,-0.13699798,-0.07335699,-0.49426338,0.4669577,0.031263687,0.22493187,0.084410325,0.02031706,0.13441661,0.22367963,0.50411284,-0.18582787,0.8959843,0.2170653,-0.07340159,0.24371475,-0.27589953,-0.29980054,-0.4383438,-0.22031341,-0.021592315,-0.3517024,-0.4639605,-0.052934263,-0.25254694,-0.777561,0.5937208,0.13243145,0.0633621,-0.09490714,0.31741938,0.4214652,-0.016754815,-0.026307741,-0.06595855,-0.08129821,-0.44850424,-0.41890207,-0.6208909,-0.36130196,0.027274013,0.97012067,-0.2571618,0.057430103,-0.027613753,-0.42303413,-0.044394914,0.066215925,0.13406317,0.37155056,0.60120636,-0.1273912,-0.60059524,0.47017315,-0.13481788,-0.15746687,-0.33290288,0.070514955,0.6557039,-0.8456002,0.49548784,0.25840327,0.114420764,-0.038860217,-0.32499543,-0.2231863,-0.02154702,-0.27299318,0.38873115,0.101634055,-0.7537338,0.47714177,0.1733673,-0.16666079,-0.85859406,0.18930095,-0.06164786,-0.30545172,0.16919045,0.43364894,0.027316237,-0.044855542,-0.25069648,-0.017398022,-0.36397296,0.26884183,0.21010993,-0.17534687,0.25906426,-0.3989379,-0.36198375,-0.59067225,-0.05571767,-0.5483111,-0.22203524,0.23120579,-0.06344338,-0.035590388,0.27065858,0.067856304,0.35075885,-0.33756146,0.097371385,0.025741274,-0.2994148,0.16916583,0.33967468,0.23173358,-0.41826317,0.520409,0.06370401,0.019129673,-0.08255809,0.08969094,0.42030498,0.042576227,0.28069574,-0.2478786,-0.14570875,0.36414775,0.91289276,0.1575451,0.5106428,0.2380445,-0.11951324,0.41168964,-0.011236661,0.05549644,0.07513544,-0.37727496,0.013850365,0.10566136,0.1277477,0.34047043,0.4647011,0.5344214,0.058992404,-0.21104528,0.048337374,0.1437411,-0.118990324,-0.83896744,0.20777269,0.13365431,0.7408908,0.29100844,0.11370536,-0.1358126,0.65164816,-0.35476333,0.14030625,0.22304174,-0.18436402,-0.41205174,0.66012514,-0.36550808,0.41815317,-0.20244715,-0.071593255,0.26696873,0.06917237,0.28259805,0.8286676,-0.110330366,0.03254462,-0.07320344,-0.056939777,-0.0827047,-0.2887432,-0.031856816,-0.44686705,-0.32509592,0.6720941,0.40276405,0.45707008,-0.14182329,-0.0077411523,0.13791077,-0.15034573,0.11325385,-0.011452576,0.053455822,0.1669914,-0.43901518,-0.2981793,0.5649043,0.022358995,0.09556745,0.03309323,-0.3168513,0.10849576,-0.2710796,0.039076988,-0.10238348,-0.60128444,0.124343604,-0.28321105,-0.57971513,0.09026919,-0.24966292,0.16536449,0.21326794,-0.06952039,-0.19729838,0.39590067,0.118555516,0.94266224,0.075689174,-0.3407055,-0.23955849,0.009090984,0.32007858,-0.34935957,0.0862895,-0.38274363,0.13852367,-0.7413871,0.5453549,-0.18379964,-0.37653401,0.21202949,-0.23834863,-0.13082753,0.49443752,-0.03276856,0.021352682,0.16400068,-0.20049745,-0.47076893,-0.010693184,-0.34295723,0.11759349,0.35185793,0.023090383,-0.047417905,-0.19312058,-0.11807697,0.47376072,0.09192371,0.5176554,0.20731373,-0.045172047,-0.14888467,0.16264413,0.15146914,0.42293134,-0.030842774,0.12175061,-0.19009107,-0.2714438,-0.08468618,0.44896066,-0.052549053,0.21229932,0.07571094,-0.25399983,0.9177036,0.0046973866,0.84604377,0.17174286,-0.2353391,0.07207643,0.46583515,-0.09271596,0.16984409,-0.3440316,0.9372579,0.3913007,-0.0293629,0.03378216,-0.42025438,-0.15252203,0.34918308,-0.29911658,-0.09303393,-0.09544309,-0.4742221,-0.45741794,0.21065207,0.20343964,0.15029334,-0.03858849,0.013376715,-0.05013104,-0.059298635,0.3455649,-0.6930243,-0.10376059,0.27127197,0.1489065,-0.06776159,0.14833859,-0.44048193,0.48385912,-0.77686983,0.1594425,-0.39537245,0.008244603,-0.07548496,-0.23491865,0.0109366635,-0.013304802,0.31461823,-0.5402927,-0.42482606,-0.2639967,0.47795212,0.09010527,0.20719963,0.65656036,-0.24994664,0.00038493623,0.13792108,0.54928905,1.049086,-0.22002943,0.14283167,0.23316115,-0.3492211,-0.5589991,0.27394742,-0.2705011,-0.053063378,0.0004831925,-0.4710416,-0.2999602,0.35610092,0.3444748,0.06718295,0.08074163,-0.51923823,-0.052627023,0.45625082,-0.14991353,-0.28954583,-0.16170861,0.29062968,0.63280475,-0.08255849,-0.3159736,-0.028590463,0.29708746,-0.43535712,-0.40816957,-0.075768456,-0.25486898,0.2697625,0.04061521,-0.2268051,-0.1959913,0.12984632,-0.39820918,0.008731453,0.33205974,-0.35198414,-0.008445493,-0.101672806,0.018445313,0.8199556,-0.14468478,-0.09160821,-0.68656045,-0.4788664,-0.7758052,-0.50439954,0.20407334,0.19005568,0.052122395,-0.27807814,0.04277234,-0.19181246,-0.17379607,0.2949224,-0.51039255,0.26831338,0.1856248,0.4235444,-0.2784732,-0.9192263,0.26044187,0.030636137,-0.3770655,-0.54464954,0.4909249,-0.09196527,0.701455,-0.006522368,-0.1397861,0.08986498,-0.53469825,0.13292977,-0.35815546,0.04927652,-0.8223669,0.1032072 -373,0.26363564,-0.10444322,-0.5769257,-0.20922524,-0.17679816,0.13084625,-0.4289472,-0.113573425,0.15387958,-0.46266463,-0.14526515,-0.19190587,-0.044894207,0.50493544,-0.09700615,-0.8302627,-0.27063212,-0.053076137,-0.4553859,0.49772015,-0.4899752,0.24732168,0.0770815,0.33265552,-0.018455481,0.28423822,0.3733828,-0.26726344,-0.11854198,-0.06850278,-0.15195619,0.28733465,-0.8168526,0.16543142,0.17678948,-0.39987993,0.12779139,-0.28468102,-0.19711995,-0.76630515,0.5207725,-0.9740855,0.6216312,0.09787033,-0.10088877,0.04497582,0.26440737,0.32251838,-0.18969357,0.18485759,0.36737934,-0.5143587,-0.059247147,-0.21415854,-0.32447544,-0.60575444,-0.7284872,-0.01707536,-0.6809347,-0.28257355,-0.2621911,0.31725854,-0.4786612,0.046989594,-0.28208598,0.40476927,-0.3833399,-0.3243637,0.31162444,-0.27587786,0.5470037,-0.47856054,-0.21907514,-0.17200458,0.36117443,-0.33613852,0.05872522,0.22487675,0.41825005,0.56889874,0.078144826,-0.22135895,-0.29545364,-0.101833306,0.30106544,0.47242022,-0.18819518,-0.32394272,-0.18790285,-0.049716055,0.18900554,0.4556282,-0.27339047,-0.36548495,0.14030226,0.1769625,-0.20553535,0.31114703,0.29039714,-0.41776428,-0.51988214,0.27819085,0.36072335,-0.012723473,-0.1243969,0.01309063,0.20023681,-0.5339637,-0.2092218,0.62347424,-0.15145016,0.5113831,-0.10668627,0.29266497,0.9200193,-0.15771592,0.0047085085,-0.49707213,-0.16793175,-0.17005973,-0.23483725,0.022480875,0.27449104,-0.53930724,0.18949513,-0.2511662,0.79699516,-0.08669859,-0.781799,0.21545202,-0.6642246,0.06656281,-0.13461791,0.857168,0.72182447,0.07663456,0.36832032,0.8737766,-0.51212245,-0.032869406,-0.038021367,-0.55361754,-4.009406e-05,0.040614445,0.025231093,-0.40407977,-0.037968915,0.04578486,0.14925571,-0.030347593,0.33147952,-0.40399346,0.27699766,0.07093161,0.801857,-0.38371563,0.043031286,0.6438213,0.96050006,0.93232447,0.06243692,1.4385881,0.21782674,-0.19959952,0.18838435,-0.49824128,-0.5487797,0.23732138,0.5228531,-0.17548436,0.32874003,0.051340748,0.15148284,0.5001243,-0.38001713,0.030228177,-0.15229174,-0.03360917,0.00069538754,-0.0074448236,-0.43749252,-0.18653661,-0.03826458,0.017804405,0.14325859,0.19200842,-0.14998804,0.55580664,0.17866527,1.2537065,-0.25902656,0.3511548,0.06731566,0.25382772,0.02863091,0.04388086,0.03420484,0.35204384,0.47766104,0.05413446,-0.7042168,0.0065976568,-0.33354864,-0.38103566,-0.28156167,-0.31219634,0.058444798,0.02763915,-0.47087345,-0.11130554,-0.03431188,-0.43222857,0.30529884,-2.3976133,-0.19052243,-0.30299485,0.13778208,-0.16501729,-0.3141988,-0.25798437,-0.5577252,0.45585606,0.46306476,0.36596504,-0.61097145,0.39575765,0.5656757,-0.37193063,-0.22400306,-0.68424064,-0.04612724,-0.22745074,0.40502426,-0.10727694,-0.28435284,-0.35688075,0.33615848,0.6168346,-0.031032493,-0.00703234,0.2551817,0.51381874,0.26721045,0.6404695,0.17102218,0.6105857,-0.2062919,-0.29861662,0.3997217,-0.20606877,0.30223915,0.067207314,0.042092633,0.33956409,-0.5135412,-0.9584972,-0.8039406,-0.87873346,1.0810784,-0.47062543,-0.31967324,0.30853352,0.12353003,-0.35891733,-0.053927105,0.6490138,-0.35891247,0.16217774,-0.8610415,0.18000148,-0.2627264,0.36950615,0.033085965,0.03861693,-0.49928188,0.558572,-0.15851985,0.16074018,0.48045754,0.11288903,-0.27914003,-0.5961929,0.077459395,1.1578428,0.25465512,0.18566854,-0.18082325,-0.2901206,-0.028765837,-0.0915971,0.10668977,0.36256528,0.73652935,0.12923567,0.17259087,0.34617546,-0.16991083,0.04777349,-0.16146298,-0.3180786,-0.027362509,0.12257373,0.5494725,0.4474628,-0.020966323,0.33711037,-0.0964623,0.18060885,-0.032187693,-0.3636903,0.5444229,1.0008316,0.035943016,-0.06862165,0.84702665,0.606109,-0.4425145,0.520019,-0.62185663,-0.34342453,0.6632026,-0.18872683,-0.63363427,0.06912902,-0.44120786,-0.00586023,-0.9738148,0.114469975,-0.24462934,-0.4149522,-0.51018286,-0.11445666,-4.4062924,0.18766485,-0.39406145,-0.23255853,-0.17329395,-0.22880019,0.5596345,-0.67708445,-0.6668367,0.112184845,0.13122474,0.43653154,-0.1768656,0.19579627,-0.39725092,0.09785526,-0.05615298,0.3134,0.36891744,0.014725651,0.060306504,-0.5042544,0.16839594,-0.30610967,-0.5404052,-0.012434085,-0.4831679,-0.51800966,-0.1462344,-0.58959,-0.47199497,0.72166777,-0.45364448,-0.1033136,-0.2512655,0.09226346,-0.108974196,0.5218553,0.24718527,0.33527064,0.10073625,0.06521894,-0.43294123,-0.25835857,0.35901678,-0.048399646,0.21573555,0.38369146,-0.15442966,0.23176102,0.3643717,0.51046944,0.15629753,0.8875084,0.51105374,-0.042773504,0.19145435,-0.37667462,-0.21664578,-0.94129425,-0.5316591,-0.23896022,-0.38621843,-0.7033368,-0.15955885,-0.3316746,-0.8324334,0.64921016,-0.12111244,0.20376302,-0.086854406,0.30919147,0.21419592,-0.1988657,0.043061525,-0.102033086,-0.12837328,-0.54020786,-0.38727692,-0.77605885,-0.70394516,0.013065268,1.0000948,-0.087944776,-0.0122231245,0.079004884,-0.4884011,-0.035769474,0.2993492,0.32124805,0.36579132,0.6811743,0.04920815,-0.7794803,0.47337088,0.029962068,0.00842655,-0.6156363,-0.15519762,0.78644896,-0.80152655,0.7186165,0.39516136,0.13271171,0.04585662,-0.43613973,-0.44050142,0.008906906,-0.35848364,0.5461344,0.24808191,-0.51788026,0.41181985,0.12492537,0.0075908103,-0.76497513,0.45350528,-0.015351675,-0.14990284,0.2209803,0.46705046,-0.14724554,0.08968961,-0.09124448,0.3113002,-0.28247583,0.27712217,0.3313779,-0.032534495,0.53075314,-0.13731778,-0.1673612,-0.7123762,0.19494434,-0.48566994,-0.23250253,0.04943191,0.032585364,-0.047147736,0.3253648,-0.21119773,0.5097505,-0.17019361,0.18857129,0.09109044,-0.32615653,0.11240044,0.501223,0.06688158,-0.4445097,0.80117583,0.07496381,-0.2311997,-0.3040978,0.11770156,0.48284325,0.13435064,0.3153855,-0.29556546,-0.36029562,0.37378028,0.68661374,0.15880239,0.44647726,0.25402543,-0.012960981,0.48677957,0.17035069,0.03740721,-0.071075365,-0.36400974,-0.10310497,-0.07024176,-0.019080793,0.4738616,0.1031669,0.5285405,-0.20813312,-0.16690612,0.24156465,0.33160427,-0.17681675,-0.780335,0.33380723,0.28702036,0.546665,0.6465788,0.02915132,0.09472983,0.5089159,-0.5293587,-0.11860173,0.37602195,0.25147116,-0.51757264,0.86835074,-0.4995965,0.28263938,-0.15208048,-0.042486954,-0.022518495,0.15742292,0.23301357,1.0967668,-0.20052786,-0.0024694402,-0.18470664,-0.032253236,0.18622096,-0.12613729,0.13495708,-0.49861237,-0.37748566,0.57188654,0.40352866,0.44162527,-0.21507667,-0.20571733,0.103937715,-0.058942735,0.13417661,-0.10983794,0.000928099,0.13216181,-0.6409759,-0.30760857,0.5807718,0.068029635,-0.0025620784,0.05017972,-0.4348874,0.19353043,0.00017076482,-0.1258849,-0.06849071,-0.6570699,-0.037236422,-0.46147737,-0.5523383,0.30895963,-0.7402268,0.36720097,0.1436881,0.041211527,-0.31764263,0.021912793,0.2524449,0.8699119,0.149845,-0.09983364,-0.29985693,-0.009812991,0.23586889,-0.19411038,-0.02225081,-0.37503853,0.065077655,-0.7296577,0.54708976,-0.15015425,-0.3726574,-0.037743647,-0.18761621,-0.070141114,0.4232738,-0.10964233,-0.077906966,0.22055583,-0.11048571,-0.24817686,-0.11160946,-0.4184607,0.19696581,-0.06931233,0.119612776,-0.12691511,-0.09825545,-0.26895502,0.52585584,0.11182255,0.09602228,0.2553464,0.040243983,-0.42566124,-0.077050485,-0.043947857,0.4533395,0.18015473,-0.05015539,-0.10257528,-0.44259873,-0.06848026,0.2663447,-0.054654937,0.2678896,0.028380485,-0.5372505,0.84222406,0.15557514,1.0394114,0.20963486,-0.40044406,-0.06657608,0.4974853,-0.018039053,0.08300879,-0.40528622,0.9430523,0.568681,-0.2053191,-0.21865447,-0.3824904,-0.1964361,0.18936105,-0.18050438,-0.02738001,-0.23859859,-0.79357463,-0.33243528,0.2150269,0.30836645,0.1783884,0.081057824,0.0903636,0.05503648,0.08399477,0.67722005,-0.5522225,-0.06553027,0.2127965,0.22603251,0.02925995,0.3101857,-0.21119408,0.60788,-0.6541286,0.23924641,-0.5860196,0.06302812,0.08287931,-0.22664537,0.22612941,-0.09793219,0.45807147,-0.10023055,-0.2180296,-0.16622923,0.7991707,0.09250487,0.27730256,1.0842062,-0.29630658,0.07283495,-0.069697864,0.42023864,1.5862554,-0.2344778,0.11632788,0.26571837,-0.18443692,-0.43762556,0.29581574,-0.469321,-0.013435234,-0.058660835,-0.6128071,-0.23171718,0.12387395,0.025631748,-0.07659928,0.08696561,-0.3591542,-0.26596734,0.54922754,-0.29405764,-0.3015156,-0.15693413,0.44052362,0.7972602,-0.39629355,-0.38880825,0.02619349,0.43336022,-0.34481385,-0.37945077,0.056819785,-0.26231384,0.47362694,0.29471514,-0.34454274,0.20332642,0.32082722,-0.3405331,0.008213538,0.45978656,-0.29788372,-0.010064691,-0.17384176,-0.21084587,1.1831857,-0.18086255,-0.0778107,-0.6598224,-0.33994094,-1.0237378,-0.3167021,0.44490144,0.23490278,0.088784985,-0.18083425,-0.008433993,-0.122034825,0.14026897,0.22237349,-0.6284515,0.42222133,0.10163107,0.7956009,-0.10061881,-0.72750306,0.03223002,0.18318294,-0.14059478,-0.58335716,0.37535933,-0.20788427,0.71312445,0.16884331,0.11684343,0.1402302,-0.442085,0.22994907,-0.33014354,-0.26702335,-1.1050473,0.019657055 -374,0.41962647,-0.24215575,-0.4231162,-0.07121038,-0.2287366,-0.026348716,-0.09918063,0.54684407,0.11272981,-0.25240216,-0.16269861,-0.21478426,0.08625043,0.41847536,-0.14124256,-0.41189805,-0.15663813,0.17687404,-0.50174457,0.4236226,-0.42373767,0.0318412,-0.045377746,0.4370391,0.15096708,0.29919618,0.017456122,-0.047366813,-0.14318216,-0.14622818,-0.21856058,0.23243602,-0.59346336,0.17192058,-0.08690069,-0.3421227,0.014468848,-0.6642474,-0.35128596,-0.64152855,0.25533667,-0.90524364,0.36868277,0.0062858663,-0.20923813,0.51585937,0.007966776,0.44105956,-0.24352391,-0.13004543,0.19492102,-0.1489572,0.12019012,-0.31985584,-0.06798258,-0.033087257,-0.36068806,-0.0771467,-0.17714667,-0.41450545,-0.31787464,-0.01503545,-0.30784228,0.042968046,0.04806937,0.29918584,-0.45723245,0.22935577,0.12633294,-0.2246209,0.2456451,-0.434618,-0.14471276,-0.11994123,0.306399,-0.30436492,-0.20347846,0.4192067,0.14369173,0.19146085,-0.13881211,-0.016526729,-0.2766452,0.0029722068,0.15939057,0.5991043,-0.25216365,-0.29050934,-0.004367826,0.024380123,-0.0009909669,0.23517215,0.07282208,-0.23687315,-0.19392188,0.0061786473,-0.21763448,0.17034025,0.3603343,-0.3101643,-0.20456219,0.35246134,0.59081346,0.17791522,-0.19185525,-0.2531718,0.016744621,-0.4763023,-0.106176965,-0.041785568,-0.16555937,0.5844604,-0.08584232,0.25319594,0.69694924,-0.22180438,-0.018907085,-0.08474958,0.04461323,-0.049734652,-0.27354947,-0.32794297,0.3174813,-0.28578413,0.18808158,0.005493954,0.73843384,0.20936291,-0.6691475,0.49695277,-0.6082843,0.14331114,-0.21299629,0.3390499,0.40763247,0.5994348,0.34554765,0.5719581,-0.48238218,0.16870148,-0.18225265,-0.38105965,0.14968969,-0.1304275,0.0804388,-0.45605895,-0.09904886,-0.017439136,-0.202457,0.30732566,0.08940182,-0.40916118,-0.0080032,0.23319013,0.7931904,-0.2707924,0.036672294,0.5573152,1.0824825,0.86735445,0.0292712,0.86926943,0.23903972,-0.21861525,0.32710195,-0.15022703,-0.71629435,0.2400593,0.5039503,0.035842817,0.14856005,0.20543201,-0.005293722,0.3360436,-0.34484127,0.043413386,-0.19690435,0.06101479,0.3033131,-0.08993742,-0.3978955,-0.28806928,-0.14138657,-0.01775009,-0.2693214,0.2512659,-0.13738938,0.40709043,0.09752182,2.041231,0.14419085,0.13093422,0.119496174,0.56882304,0.15111764,-0.064672105,-0.16006117,0.44609317,0.26857364,0.24052083,-0.4242293,0.29675904,-0.05893604,-0.4611107,0.00988694,-0.39383888,-0.006790817,0.076308206,-0.43238294,-0.08256304,-0.11049944,0.0022093505,0.53417397,-2.9519968,-0.098296724,-0.008013062,0.45320186,-0.25399894,-0.34805176,0.031130895,-0.4148133,0.31011865,0.32609007,0.5667159,-0.61298436,0.34424296,0.29831377,-0.58778685,-0.14197898,-0.53017396,-0.1590534,0.011248848,0.21076006,0.017715072,0.044240624,0.0005022486,-0.007502382,0.40062007,-0.054653924,0.015328073,0.2978033,0.35989463,0.05563861,0.62773156,-0.12642139,0.35774836,-0.35586998,-0.22125165,0.17805177,-0.21471472,0.22274369,-0.0660811,0.07684178,0.3786117,-0.25591344,-0.946544,-0.7279174,-0.17874797,1.276076,-0.30838308,-0.40965214,0.31000054,-0.27718756,-0.26625225,-0.20797984,0.29116192,-0.0067681274,-0.0650567,-0.7357388,0.047658045,-0.10821357,0.21332575,0.15430248,-0.29770836,-0.39263666,0.5654754,-0.14521827,0.49411932,0.42170724,0.012421156,-0.027746096,-0.19094509,0.027755693,0.67152375,0.24702889,0.1426653,-0.18438636,-0.20476924,-0.16603373,-0.07759546,0.08240603,0.3665718,0.53921217,-0.056744333,0.09411526,0.20878588,-0.11285583,-0.0040284446,-0.18071687,-0.21565163,-0.037027482,-0.07194232,0.530832,0.76630956,-0.07670797,0.38228163,0.02407361,0.27002907,0.04349551,-0.36420354,0.2768683,0.821743,-0.05544689,-0.19526684,0.3989013,0.5069907,-0.28427118,0.31092742,-0.44567463,-0.12590365,0.41918692,-0.17532992,-0.45924637,0.21736409,-0.16109604,0.108453095,-0.5869159,0.21444412,-0.35226965,-0.42936635,-0.42735913,-0.11748185,-3.3181257,0.24506299,-0.22737092,-0.36213875,0.079099126,-0.15277778,0.08166645,-0.7484047,-0.44448698,0.16958348,0.084291995,0.633064,-0.0959532,0.0052282587,-0.2849134,-0.2553893,-0.31952503,0.04592591,0.09282895,0.3170389,0.026194364,-0.41889644,-0.13569732,-0.059743565,-0.38754272,0.16124727,-0.66792226,-0.26287004,-0.054447968,-0.45406875,-0.40409002,0.5882842,-0.33378196,0.03746411,-0.06334969,0.011568014,-0.19947648,0.13281882,0.19783504,0.16389965,-0.05841024,0.028332775,0.062269967,-0.2620375,0.366596,0.077755064,0.30793598,0.096553765,-0.102279134,0.09168041,0.50368065,0.5702499,0.0037099272,0.76045924,0.43333685,-0.10054956,0.17431171,-0.42321673,-0.27551773,-0.49410942,-0.28862274,0.07399116,-0.2950208,-0.42550454,-0.08164534,-0.31354502,-0.6524515,0.5992548,0.021744633,0.010204424,0.10038275,0.20473723,0.5303719,-0.23625867,-0.1189301,0.019440634,-0.04512304,-0.7750456,-0.09364072,-0.54392976,-0.4069049,0.07841111,0.85875803,-0.26854846,0.15600246,0.025288343,-0.22437839,0.04185289,0.1493633,-0.23291962,0.25871027,0.48341295,-0.21848035,-0.59707505,0.30792853,-0.09638542,-0.32609764,-0.714909,0.41208354,0.49693406,-0.6731821,0.70853215,0.25681022,0.01438914,-0.0034513872,-0.42947736,-0.44878468,-0.15231293,-0.13196237,0.2239406,0.09310102,-0.77947974,0.226016,0.43144354,-0.38268974,-0.60090137,0.51560086,-0.106232785,-0.47771516,0.050658137,0.13081847,0.13828483,-0.10057708,-0.014387831,0.18316452,-0.4327244,0.27554372,0.19314058,0.018349776,-0.009806282,-0.08771237,0.061156314,-0.6615651,0.1970557,-0.14683096,-0.35609365,0.40188417,0.089273654,-0.019340781,0.146945,0.17583126,0.3040391,-0.2467351,0.07240299,-0.100941785,-0.31476724,0.43639624,0.3551928,0.45918655,-0.5211466,0.53574365,-0.037221164,-0.0445251,0.035840508,-1.6490618e-05,0.389464,-0.042416263,0.2966024,-0.12975852,-0.30354193,0.15575044,0.5055741,0.23637593,0.45534372,-0.10600128,0.054879773,0.2291594,0.14409834,0.1912388,0.07858941,-0.5958707,0.24038602,-0.19279158,0.08028663,0.47520903,0.13196409,0.20827074,-0.113540046,-0.34061074,0.01214428,0.23619036,4.9407285e-05,-0.9430244,0.41061744,0.1544214,0.73359674,0.40048265,0.05082062,-0.05309176,0.79325414,-0.14517182,0.108798005,0.16288428,-0.0020825714,-0.5412918,0.5373078,-0.75547504,0.45896408,0.19268398,-0.07650063,0.02612281,-0.002295509,0.32276446,0.50180084,-0.25798586,-0.078671396,-0.016362377,-0.4020164,0.0839909,-0.51701975,-0.024243861,-0.73070604,-0.24385327,0.44274127,0.6023697,0.35036543,-0.1436802,0.05788913,-0.0035325864,-0.09701892,0.2255677,0.10915189,0.14848013,0.2262553,-0.74618083,-0.06702434,0.63729835,-0.358958,0.25387067,-0.1327666,-0.18122248,0.45729876,-0.12079116,-0.1938078,-0.057521153,-0.5518167,0.3044514,-0.36668798,-0.2912588,0.35614172,0.1181913,0.28634346,0.16777702,0.029876495,-0.14126165,0.6164086,-0.03497117,0.9719487,-0.008684439,-0.2426774,-0.54815215,0.24814671,0.0420972,-0.0067120045,0.18949284,-0.38595986,-0.14040858,-0.39426923,0.35960928,0.0906279,-0.26561937,0.05950415,-0.1137265,0.05781843,0.67640954,-0.106326036,-0.14212856,-0.37984666,-0.15337278,-0.32723954,-0.25083992,-0.12550856,0.19206898,0.19439267,0.10306406,-0.04400715,-0.04308887,-0.12744214,0.55130345,-0.032922026,0.557801,0.07304668,0.07543903,-0.12665386,-0.32391575,0.015416066,0.4050922,-0.11716338,-0.155834,-0.3352814,-0.49146923,-0.20889823,0.17466158,-0.11329385,0.48813185,0.13753115,-0.017465798,0.692378,-0.31368807,0.9422929,-0.026361967,-0.26484752,0.24360116,0.48409274,0.07788659,-0.045205098,-0.2754085,0.79869866,0.532309,0.02479322,-0.075528495,-0.27371812,-0.20528036,0.03622684,-0.18019243,-0.09493139,0.06118913,-0.47566566,-0.14408019,0.10581293,0.19720592,0.47681007,-0.0642567,0.20323335,0.34267482,0.091436334,0.12289411,-0.21668117,-0.424257,0.29357502,0.23485851,-0.09308851,0.0578792,-0.51518273,0.44566572,-0.24349074,0.14514405,-0.45425358,0.110213935,-0.107945144,-0.20133658,0.1324011,-0.044272203,0.36415043,-0.2478661,-0.24857013,-0.14650021,0.46991834,0.28807762,0.2212904,0.5286606,-0.22335784,0.08268917,-0.0641278,0.4169136,0.6006146,-0.3513292,-0.1355988,0.4920117,-0.2949657,-0.47312275,0.33759192,0.02486004,0.044603035,0.072497346,0.08377299,-0.67079955,0.22342066,0.067678,-0.13404225,0.029425493,-0.6325214,-0.187819,0.3167042,-0.39740613,-0.2607101,-0.54417396,0.24968094,0.6469534,-0.27123895,-0.3165766,0.10799948,0.079679824,-0.08176511,-0.24138723,-0.11106271,-0.3471043,0.14686401,0.09217157,-0.36543342,-0.20221984,0.10207832,-0.259901,0.13493277,-0.07151113,-0.26745924,0.12944013,-0.31168035,-0.049918164,1.0259782,-0.2645416,0.023188373,-0.5538453,-0.39743993,-0.6942982,-0.33791542,0.5890601,0.0403035,0.00042966506,-0.441681,-0.07091777,0.059324462,-0.29465023,-0.31038198,-0.3376119,0.44714728,-0.0050350055,0.35831547,-0.16200985,-0.7154847,0.34460554,0.041040253,-0.09034085,-0.6090438,0.48470488,-0.107448466,0.8313079,-0.111156486,0.04720347,0.25475705,-0.22631657,-0.190396,-0.30166072,-0.33610806,-0.54443043,0.005555878 -375,0.34747848,0.089317866,-0.52498776,-0.14957862,-0.47804976,0.3626904,-0.27542835,0.15596631,0.26213574,-0.041051693,0.025546398,0.07172917,-0.12612233,0.19472708,-0.14264545,-0.6235419,-0.0470714,0.118232146,-0.54727244,0.5373343,-0.3136992,0.43999347,-0.18176228,0.3570059,0.18234754,0.44480556,0.13535897,0.100254595,-0.050050635,-0.006547004,-0.25139558,0.29976928,-0.5793214,0.3299203,-0.046792366,-0.4041298,-0.074739106,-0.41727468,-0.22878978,-0.67062366,0.33657938,-0.7756567,0.5996088,-0.1234653,-0.3434726,0.060199123,0.22950369,0.16070612,-0.2475226,0.038126104,0.19441892,-0.24508496,0.15109268,-0.30290973,-0.31217468,-0.5648461,-0.49957004,-0.18640098,-0.65999365,-0.06291662,-0.35957313,0.23751542,-0.23250076,-0.12549315,-0.36650518,0.10137911,-0.5118352,0.17933914,0.14353873,-0.35421038,-0.16709717,-0.4899528,-0.062774554,-0.13251711,0.2100831,0.11190003,-0.06808624,0.40984076,0.18274157,0.4630803,0.13915852,-0.31964236,-0.45306984,-0.14078858,0.062202945,0.37087616,-0.08447322,0.014028877,-0.26035962,-0.14102635,0.4686729,0.36676794,0.11855616,-0.25300923,-0.017290588,-0.10529396,-0.1303508,0.28498137,0.40979677,-0.4006348,-0.22924635,0.45127273,0.45333806,0.16910452,-0.33370575,0.22093195,-0.12448439,-0.2100984,-0.29843894,0.17110693,-0.061120704,0.41092217,-0.07983069,0.13439009,0.72948194,-0.04522788,0.077823214,-0.19412135,-0.061929565,-0.02410172,-0.32412586,-0.0709095,0.15778627,-0.3758158,0.20003963,-0.13550963,0.501102,0.06634526,-0.6996801,0.34630787,-0.5589515,0.097573996,-0.0310492,0.5117209,0.7413222,0.5305866,0.085276894,0.93619066,-0.32290044,0.012852779,-0.19281201,-0.18509465,0.1414396,-0.052637644,0.11697943,-0.4783632,0.22483908,0.088357195,-0.030810822,0.13081534,0.32805023,-0.27769095,-0.11499332,0.09466539,0.59532416,-0.4378554,0.044473827,0.6916282,1.0566318,0.9509522,0.009343766,1.1242303,0.3691675,-0.13243747,-0.2477292,-0.24134031,-0.4860061,0.054715924,0.42702737,-0.067560345,0.5341852,0.16623247,0.02924773,0.30932584,-0.22995867,0.047164492,0.095232494,0.21885416,-0.05300907,-0.06318657,-0.370697,-0.2115887,0.31103063,0.10427318,0.079706356,0.23483118,-0.28601414,0.41887483,0.27453035,1.524298,0.112898365,0.12930906,0.13634777,0.38096374,0.26192573,-0.21274936,-0.035866674,0.35120878,0.29734913,-0.21915835,-0.47079235,0.064817585,-0.35896763,-0.5319387,-0.062280837,-0.3608964,-0.28208637,-0.027863203,-0.38008514,-0.18850131,0.050918456,-0.23353615,0.37904108,-2.6252382,-0.009249248,-0.114850104,0.2776768,-0.26904333,-0.2964453,-0.35849482,-0.4900306,0.21227118,0.31229013,0.18720606,-0.45779657,0.4243045,0.4364321,-0.36521006,-0.06424151,-0.5613518,0.16908032,-0.020174779,0.40542814,-0.16496283,-0.20696978,-0.17686006,0.3923161,0.65759087,0.11749414,-0.043194663,0.33994743,0.38554555,-0.029051978,0.36998037,0.10359404,0.5637358,-0.13241492,-0.16338105,0.48348737,-0.4531383,0.49226692,0.002037216,0.10276273,0.41279632,-0.4170158,-0.6916162,-0.49489784,-0.14316425,1.1474724,-0.4443487,-0.46074513,0.13463373,-0.109394774,-0.23373657,0.10353261,0.37803358,-0.036959875,-0.04387176,-0.5613023,0.03386663,-0.2548429,0.17573163,-0.12664908,0.29976684,-0.35248628,0.754312,-0.2288157,0.5575232,0.23116267,0.20786373,-0.06689963,-0.42079002,0.19300231,0.65809685,0.5145977,0.09616051,-0.24797249,-0.13231027,-0.066036895,-0.31216633,0.24526063,0.5723767,0.49850157,-0.14891456,0.051439166,0.29949662,-0.18550918,-0.067766234,-0.2809913,-0.20230773,-0.010449211,0.22001748,0.40408498,0.60973406,-0.18673325,0.16676506,-0.11896149,0.20530955,-0.18569356,-0.65351886,0.37830853,0.5251411,-0.16684633,-0.23523259,0.59759986,0.4294301,-0.25701424,0.3584295,-0.68562555,-0.2567119,0.521691,-0.09838858,-0.40011394,0.09944001,-0.2928587,0.05225282,-0.60455287,0.055932343,-0.05668055,-0.5120877,-0.39025715,-0.14220601,-2.9892108,0.07412993,-0.13281965,-0.0511002,-0.120722145,-0.19761708,0.2844038,-0.6228751,-0.65146625,0.07005748,0.01341957,0.41641876,-0.07976845,0.12281148,-0.35490492,-0.24600662,-0.26437172,0.29095864,0.052030064,0.40646234,-0.20782523,-0.29508686,0.037241846,-0.116062805,-0.44078094,-0.120620616,-0.48003694,-0.26491284,-0.18903066,-0.32445735,-0.07862117,0.6027198,-0.49806833,-0.0063349344,-0.29827648,-0.045416694,-0.08019033,0.2408998,0.35157394,0.0937375,0.23514643,0.06065296,0.018230624,-0.3547027,0.3566062,0.077742994,0.21821362,0.46014988,-0.09090811,0.06910587,0.4352725,0.5512694,-0.059716173,0.73184955,0.16478908,-0.1727506,0.4751886,-0.2885802,-0.32988465,-0.79810536,-0.39096096,-0.21926324,-0.46919203,-0.39553905,-0.2506227,-0.38587,-0.86303484,0.31984645,0.13898183,0.36908284,-0.043124177,0.23810567,0.39983407,-0.2017287,0.09361711,-0.023163386,-0.2412585,-0.4880882,-0.5334705,-0.61334217,-0.6498798,0.35715732,0.93276894,-0.16808334,-0.04132969,0.17437339,-0.34931955,0.068987615,0.18722421,0.17681788,0.09319514,0.47660923,-0.056962237,-0.45917356,0.32281193,-0.0147032775,-0.086731404,-0.49943352,0.058697235,0.6652529,-0.56440526,0.44986266,0.15877399,0.18927999,-0.05809626,-0.7591111,-0.18841529,-0.07514569,-0.285058,0.5910719,0.3104056,-0.5799296,0.38151607,0.009969203,-0.123440355,-0.55478966,0.45527542,-0.093547136,-0.18169296,0.009401761,0.4042542,0.07921409,-0.12613498,0.11825238,0.14735945,-0.5151669,0.382639,0.2495614,-0.07817056,0.2949899,0.03448657,-0.23778504,-0.7089717,-0.0743234,-0.4333474,-0.4672895,0.09228411,0.02350352,0.028075676,0.08154144,0.064168856,0.5186048,-0.3651756,0.21619296,-0.18570141,-0.24577343,0.36674514,0.3683706,0.39683193,-0.4746353,0.5569813,0.049702093,0.08782458,0.055025928,0.145177,0.55655307,0.09587101,0.3570789,-0.11964494,-0.11345849,0.066712774,0.51904523,0.31058088,0.1893675,0.041054774,-0.37681484,0.2745749,0.14977297,0.12745373,-0.028067479,-0.2937806,-0.010041162,-0.18509838,0.19850895,0.4312796,0.15391672,0.3561762,-0.028221171,-0.022124158,0.3590675,0.080342606,-0.34376758,-1.0174048,0.2631886,0.25175682,0.7936069,0.46094567,0.0065306993,-0.013673756,0.41713905,-0.43726355,0.031485245,0.5303932,0.07862244,-0.36118543,0.47529805,-0.539816,0.45356196,-0.1248591,-0.101650625,0.3043838,0.35825115,0.39769518,0.8880794,-0.16176125,0.058771774,-0.035853438,-0.22341754,0.020124305,-0.025550734,0.14607403,-0.44216132,-0.39888042,0.5986644,0.41428104,0.4658175,-0.34665945,-0.09495589,-0.11296227,-0.19135591,0.1406814,-0.006542243,-0.045687035,-0.18652494,-0.37777904,-0.41658068,0.54264283,-0.17155805,-0.077227,0.03909645,-0.3051796,0.21698567,-0.016203472,-0.014418237,0.06343947,-0.546305,0.029702801,-0.22929882,-0.38673097,0.43363827,-0.22851709,0.25454268,0.09761216,0.011668788,-0.23550107,0.28865466,0.1595303,0.67506963,0.021323517,0.036957853,-0.31714672,0.35999572,0.35125828,-0.23169483,0.009001434,-0.2458877,0.26858914,-0.6352674,0.22469121,-0.21602178,-0.24154481,-0.05146223,-0.23079538,0.016099405,0.37529528,-0.18210566,-0.16204791,0.12306309,0.03554699,-0.42765212,-0.15465203,-0.4492191,0.12295321,-0.06835364,-0.1415777,-0.0049792305,-0.0779293,-0.14048085,0.26919937,0.11811527,0.1040167,0.29010674,-0.18244925,-0.39812553,0.083245695,0.034729626,0.34731114,0.11231084,0.081097245,-0.23517483,-0.393849,-0.35793272,0.5463939,-0.2678005,0.108747795,0.08062823,-0.31892383,0.8403751,0.03869987,1.141523,0.12000276,-0.41716722,0.14974612,0.5620742,0.14902104,0.15645412,-0.28371167,0.8852012,0.65371317,-0.14414573,-0.118898325,-0.20890775,-0.19817525,0.24873401,-0.41008478,-0.18184987,0.030546244,-0.77601045,-0.07285103,0.15770063,0.10628922,0.14933795,-0.041822117,-0.14333996,0.04941197,0.1335738,0.5098408,-0.36959273,-0.2946416,0.3844726,0.092621006,0.038042575,0.26172236,-0.29427993,0.39679286,-0.72589856,0.2050178,-0.6205827,0.089968316,-0.18535401,-0.32913965,0.2151249,-0.01565774,0.27072197,-0.35286152,-0.48605323,-0.16233747,0.4992459,0.14587417,0.2928065,0.62345326,-0.23764795,-0.0511531,-0.07615308,0.3945731,1.1014624,-0.059493348,0.08849135,0.37647384,-0.3820747,-0.6656472,0.018436713,-0.4260089,0.092870906,-0.012380734,-0.44490296,-0.18292552,0.32353866,0.00011852011,-0.11627299,0.027095638,-0.51892567,-0.055340067,0.24110118,-0.2461754,-0.1685456,-0.33458155,0.19703183,0.78188086,-0.27570027,-0.5575718,0.11383383,0.35999978,-0.25874195,-0.61965626,0.15880674,-0.12036589,0.39586556,0.07290517,-0.45198423,0.08859818,0.41634566,-0.43298686,-0.027707111,0.4552574,-0.3404195,0.005769156,-0.3571887,0.097509146,0.92876315,0.02232558,0.001301378,-0.43514043,-0.4411075,-0.96121025,-0.35857368,-0.13176823,0.1982457,-0.03569322,-0.5263714,-0.042812534,-0.31212592,0.14593762,0.05534191,-0.5611141,0.44111773,0.29113716,0.53617704,-0.19764194,-0.93400884,-0.0376667,0.2036443,-0.14699933,-0.4526598,0.57375175,-0.32308716,0.65206516,0.1586481,-0.040015258,0.13417819,-0.785665,0.39845616,-0.43090913,0.029082628,-0.6543202,0.11470379 -376,0.45744035,-0.07391837,-0.3943597,-0.08523166,-0.22766961,0.09785192,-0.06976802,0.652017,0.27815732,-0.4421025,-0.10432261,-0.105532214,0.008603103,0.22878921,-0.10826692,-0.40432703,-0.12265198,0.19674142,-0.5054987,0.45093787,-0.4732623,0.33218655,-0.11646354,0.3313921,0.23699169,0.3107617,-0.044652387,0.0065103625,-0.23802279,-0.00791274,-0.09926237,0.40274668,-0.2535105,0.10602201,-0.13944222,-0.26142746,-0.14337613,-0.45795736,-0.4156755,-0.56714165,0.33121693,-0.65486765,0.37877217,0.0052859336,-0.32370317,0.2928899,-0.06750365,0.2697531,-0.14608547,-0.02586314,0.076434866,-0.0109243095,0.013600022,-0.17754044,-0.30513716,-0.23199084,-0.5789364,0.1689986,-0.4024582,-0.17610951,-0.19340345,0.065755054,-0.20340358,-0.06702736,0.049553134,0.36457318,-0.4390728,0.053967178,0.12751901,-0.010332417,0.16417575,-0.47955406,-0.082791775,-0.03655806,0.2986836,-0.28972366,-0.21506178,0.2361981,0.24107209,0.50376916,-0.09755167,-0.06267186,-0.39252192,0.005323801,0.16269766,0.4579691,-0.17845286,-0.43768695,-0.14340205,0.0017589778,0.12350486,0.27311248,0.19180912,-0.2872632,-0.18314552,0.018988717,-0.16103746,0.399423,0.4936738,-0.28480285,-0.36444664,0.43010768,0.69986343,0.10912333,-0.12021092,0.0032076687,-0.006369613,-0.49924728,-0.15982814,0.015639506,-0.10359213,0.35621035,-0.033195145,0.15946358,0.5603296,-0.14931983,0.04986193,0.08209808,-0.024095442,0.007970378,-0.31502095,-0.12101841,0.10972302,-0.39025778,0.043434367,-0.027224481,0.6692406,0.15545972,-0.84703255,0.35065228,-0.5283076,0.094695225,-0.07168086,0.4703629,0.7543261,0.31258416,0.27848223,0.6772431,-0.38206527,0.11531207,-0.15311289,-0.27634633,0.061805617,-0.17441055,-0.013076,-0.56869704,0.0010142997,0.08717788,-0.23219717,0.19550174,0.37613043,-0.54084814,-0.10312829,0.1866897,0.70737237,-0.3203549,-0.15898697,0.75554144,1.0482701,0.9015969,0.00084352866,1.1839348,0.12965745,-0.24600336,0.36341614,-0.58841515,-0.65362847,0.23244718,0.30732843,-0.041617483,0.24438493,0.07847977,0.086940095,0.3661922,-0.34595177,0.122969806,-0.11425104,0.12656748,0.025188467,-0.06052576,-0.4667763,-0.25646973,-0.058733612,0.11258273,0.16698505,0.2620538,-0.30475265,0.30894053,-0.004401058,1.8418664,-0.050939083,0.09600865,0.073855676,0.44355887,0.13302082,-0.38057294,-0.11106227,0.29477105,0.23581801,-0.08125664,-0.48189205,0.12968007,-0.1261223,-0.5118357,-0.106973395,-0.354244,-0.004211195,-0.06553277,-0.41150647,-0.057669815,-0.1466279,-0.40976536,0.59279835,-3.000711,-0.22508922,-0.07546188,0.25391018,-0.23660137,-0.5026798,-0.21006235,-0.35805467,0.3330263,0.284529,0.38389316,-0.66620445,0.3043356,0.32094425,-0.4901164,-0.11385669,-0.61788285,-0.09653697,0.005290818,0.20520833,-0.06345002,0.050771542,0.06828288,0.11761187,0.4100172,-0.070157334,0.103104316,0.31043357,0.33804107,0.016126432,0.3999051,-0.052371543,0.5077654,-0.14188483,-0.28271458,0.39219922,-0.35577613,0.20077284,-0.011500113,0.1322027,0.30007517,-0.48327675,-0.83759284,-0.57621056,-0.21758074,1.0499628,-0.15387362,-0.2976634,0.3487913,-0.51787084,-0.27821586,-0.13951068,0.53156495,-0.010806009,-0.21088672,-0.8232014,0.08617456,-0.062448245,0.09114905,-0.079334095,-0.03641425,-0.4089394,0.55811477,-0.11443919,0.52817166,0.3486418,0.22417015,-0.24490875,-0.38628352,0.072249815,0.9573705,0.30188948,0.12422803,-0.20014004,-0.23288193,-0.44314754,-0.11791626,0.15822689,0.4553115,0.62917155,0.010087129,0.14200397,0.22459736,-0.02096044,0.031065002,-0.15378274,-0.16489245,-0.088772595,-0.10982325,0.6094662,0.58060926,-0.14573397,0.559562,-0.020270895,0.09910452,-0.2646212,-0.3952812,0.40688467,0.69651866,-0.1532684,-0.26544866,0.61813617,0.39013314,-0.2127074,0.36235464,-0.5671308,-0.1539855,0.40175873,-0.30266422,-0.3775185,0.27776662,-0.2383292,0.07312742,-0.9264042,0.16548331,-0.12252238,-0.56799877,-0.5668842,-0.08547874,-2.8936908,0.13782802,-0.086563095,-0.2890944,0.05114461,-0.15081277,0.08304515,-0.46838295,-0.5479272,0.18960324,0.10894125,0.61211514,-0.076501906,0.029053457,-0.20668823,-0.24982521,-0.37220243,0.09891917,0.077292494,0.43331647,-0.02210622,-0.34895647,-0.10578127,-0.15399823,-0.43346006,0.0683835,-0.54909563,-0.40173885,-0.067569345,-0.47056675,-0.23683634,0.65020764,-0.33527407,0.0021037832,-0.21781778,-0.084391214,0.02654408,0.3276044,0.13350897,0.09479366,0.24614564,-0.03953173,0.026049152,-0.26309577,0.25294617,0.07005697,0.29401374,0.37727296,-0.21458507,0.28330076,0.48605746,0.64494246,-0.23459092,0.82454044,0.56120205,-0.05159812,0.20343357,-0.29317647,-0.079325624,-0.3779006,-0.24897553,-0.07060677,-0.40497252,-0.51960135,-0.22326528,-0.4086745,-0.73888814,0.41809797,0.04274481,0.13954636,-0.015727937,0.21172199,0.51479715,-0.18479067,-0.014241319,-0.14864857,-0.15377977,-0.5040809,-0.32652032,-0.583069,-0.48608768,0.29475862,1.0611997,-0.12740457,0.07028509,0.050048284,-0.20849656,-0.09473016,0.06828181,-0.01909914,0.21023008,0.2999203,-0.16141573,-0.41984862,0.40467978,-0.08260971,-0.198643,-0.6162095,0.16970678,0.49157718,-0.45286196,0.5914915,0.18851757,0.0748619,-0.059100647,-0.48249727,-0.08952238,-0.02860707,-0.25527805,0.45906162,0.30201417,-0.8229363,0.4430623,0.30636793,-0.14548641,-0.7421022,0.48991895,-0.07512554,-0.2083329,-0.104692265,0.2514477,0.258145,0.020828161,-0.19535288,0.19877405,-0.37337822,0.31414807,0.19874671,-0.045904964,0.33610487,-0.22129397,-0.10995342,-0.61006963,-0.01669845,-0.54782754,-0.24696968,0.14408356,0.12840733,0.2526339,0.20329897,0.080830306,0.3209952,-0.27961376,0.09618143,-0.04286141,-0.20433591,0.1697354,0.35006875,0.56470543,-0.35487702,0.40218896,-0.01433032,-0.0054769516,-0.0866336,0.020742133,0.550045,-0.020325907,0.24038172,-0.0497372,-0.32159734,0.31623322,0.675125,0.1840519,0.19060582,0.009025779,-0.22558299,0.2042234,0.036609314,0.19012126,-0.016786385,-0.47542223,0.12294674,-0.11060813,0.23433271,0.37519288,0.1960304,0.26984784,-0.10088168,-0.33043873,0.048649244,0.18050148,-0.042815626,-1.1719396,0.303849,0.19160937,0.8963756,0.4999057,0.07011539,0.07982701,0.53597206,-0.20398945,0.19238973,0.35204357,-0.15353253,-0.48887247,0.4417708,-0.7657452,0.569429,0.00632238,-0.052886695,0.08071186,-0.126351,0.47527277,0.68025124,-0.13168916,0.078394085,0.04824791,-0.23047906,0.0447364,-0.28528756,0.02869229,-0.705802,-0.17234378,0.6552832,0.47965816,0.3137421,-0.11386407,0.034620374,0.16332117,-0.029309683,-0.04964801,-0.014368542,0.09475505,0.028909795,-0.58614457,-0.20205769,0.42368174,-0.12960617,0.08680267,0.056833297,-0.18464066,0.15462562,-0.11637682,-0.22094037,-0.06402308,-0.5582095,-0.06394024,-0.23994511,-0.3186614,0.4296198,-0.11131984,0.22299507,0.18700187,0.15156838,-0.24765554,0.47202063,0.15636483,0.8508404,0.04021624,-0.047087356,-0.38145387,0.28128877,0.19466014,-0.14613977,-0.2139897,-0.29040688,0.0119047575,-0.56733644,0.34112853,-0.06139993,-0.42101166,0.14534122,-0.068631664,0.123882115,0.5250914,-0.11286679,-0.10050111,-0.04303241,-0.16993046,-0.2688641,-0.04503457,-0.089034155,0.3716817,0.26457876,-0.12233058,-0.015251784,-0.109222606,-0.026770085,0.38598138,0.083910674,0.42447075,0.26618308,0.10136098,-0.22942673,-0.08028734,0.21955481,0.3649144,-0.10946655,-0.087333284,-0.24879202,-0.31285912,-0.4034869,0.23405407,-0.15783378,0.35856104,0.106734574,-0.15534152,0.5763874,0.09514621,1.1199358,0.11774806,-0.28338832,0.22094816,0.3625235,0.10791221,-0.01510454,-0.35053635,0.84885806,0.43302196,0.0008812137,-0.13719055,-0.2723303,-0.04758152,0.19360967,-0.1941059,-0.14532101,-0.0022034608,-0.6778131,-0.2285736,0.30944502,0.10834257,0.24419561,-0.06650615,0.0546651,0.21525146,-0.016845496,0.19259323,-0.3285059,-0.16662419,0.26979047,0.36020043,-0.013948422,0.12344775,-0.46882528,0.37668163,-0.47501153,-0.008911636,-0.14080645,0.18633534,-0.18207017,-0.29421747,0.19632556,0.03233317,0.39956617,-0.19957656,-0.40884602,-0.3501436,0.48699084,-0.02354655,0.09586364,0.36781007,-0.24357477,0.08112793,0.013425876,0.32602856,0.9779189,-0.20533818,-0.0526445,0.36759293,-0.17711496,-0.5990652,0.35891756,-0.26495022,0.28383058,0.031533964,-0.14244157,-0.4018342,0.35230866,0.2105911,0.053882256,0.069433525,-0.44389248,-0.13397793,0.16256408,-0.26339495,-0.1852905,-0.2557852,0.05689735,0.6522943,-0.28897193,-0.37047315,0.12174042,0.3276794,-0.16948947,-0.43754363,0.0785079,-0.39668524,0.16212423,-0.0056059957,-0.3065818,-0.17996322,0.004511304,-0.3077485,0.08097823,0.19494262,-0.2781026,0.10876496,-0.30277494,-0.07104777,0.998006,-0.12922063,0.31413177,-0.5032442,-0.5510154,-0.83105356,-0.43637025,0.2952127,0.10998124,-0.11698732,-0.56155264,0.020200029,-0.09638355,-0.24587333,0.029488826,-0.3255632,0.49332216,0.09436758,0.24978544,-0.24671172,-0.76368576,0.009258365,0.12341892,-0.33701584,-0.5674976,0.5548901,0.123192534,0.87976295,0.07542935,0.09292491,0.28010866,-0.4837958,-0.00042272732,-0.2959114,-0.07568779,-0.63400316,0.094098695 -377,0.30533296,-0.1557929,-0.45070538,-0.14327288,0.026436014,0.17172475,-0.12622155,0.59860355,0.2076995,-0.4987909,-0.0007022659,-0.1831708,0.046967927,0.14595346,-0.18490297,-0.36560422,0.023356104,0.076920815,-0.20749687,0.35778967,-0.47839496,0.32301226,0.038577553,0.13743207,0.1365065,0.30769035,0.16408795,-0.20644644,-0.10054768,-0.11792863,-0.33979067,0.28875294,-0.37969428,0.07168415,-0.20157911,-0.20702095,0.14456293,-0.38528213,-0.4219096,-0.6554678,0.3808438,-0.75352466,0.4437741,0.07682007,-0.1596681,0.2252043,0.15739581,0.2670323,-0.18871447,0.022621969,0.24172309,-0.063716374,0.16432239,-0.16103655,-0.31740245,-0.392744,-0.37750638,0.040099356,-0.46526152,-0.21753529,-0.21292563,0.04060425,-0.31410822,-0.12686591,-0.22881489,0.29562318,-0.36541858,-0.1484953,0.17471059,-0.24093147,0.24261841,-0.5602502,-0.21320948,-0.028090527,0.19439448,-0.2929901,-0.15962233,0.22743554,0.19252181,0.471024,-0.23399611,-0.026536204,-0.13367341,-0.23242368,0.07873833,0.5570732,-0.23120798,-0.5863339,-0.010254057,0.0630858,0.2049256,0.17946178,0.06452129,-0.23084898,-0.1514408,-0.040392954,-0.33709174,0.3941611,0.6077772,-0.39613244,-0.109161824,0.29569873,0.46950716,0.257444,-0.1299276,0.03670273,-0.0672239,-0.57865214,-0.14097403,0.046825014,-0.2541858,0.62141794,-0.09485171,0.21535166,0.587941,-0.24309942,0.1533049,0.13868889,0.075991295,-0.06700942,-0.19475564,-0.25768584,0.058941957,-0.45797125,0.09087249,-0.10320867,0.76159453,0.14352895,-0.6225308,0.4078199,-0.36387083,0.109712124,-0.052882608,0.49592984,0.52639335,0.18545265,0.18084106,0.7168633,-0.62704563,0.12716162,-0.16577269,-0.34941146,0.12134813,-0.057358123,-0.023017133,-0.39254877,0.07587024,0.14929156,-0.06806908,0.10539199,0.28230342,-0.49445316,0.02463617,0.10609953,0.8903919,-0.25265136,-0.061192267,0.54811573,0.8397688,0.8259202,0.012694941,1.0125105,0.04601551,-0.3075151,0.053758804,-0.14730765,-0.76278913,0.24362427,0.2925935,-0.11263145,0.17369388,0.30270287,0.12984471,0.17025325,-0.29133466,-0.06391523,-0.18543476,0.21021064,0.17145385,0.009894192,-0.30190113,-0.2539841,-0.08822908,0.0727902,-0.008922827,0.18030605,-0.16499853,0.2252745,0.08775996,1.6135821,-0.031118723,0.11215185,0.12236268,0.42545998,0.27551612,-0.16594853,-0.08673313,0.43537548,0.45773628,0.005313532,-0.5351125,-0.07668374,-0.179564,-0.37057585,-0.08313959,-0.26209837,-0.08300929,0.011567845,-0.5180397,-0.08143958,-0.10178733,-0.27219915,0.48448464,-3.046693,-0.00020488998,0.0009623468,0.27928355,-0.31646767,-0.33299333,-0.13546751,-0.46432915,0.3241575,0.4124557,0.36553103,-0.650217,0.12191723,0.33299434,-0.26587746,-0.18296097,-0.62087756,-0.098828636,-0.06109423,0.30519918,0.120368384,0.00095648767,0.053301882,0.2285754,0.332145,-0.00015509129,0.0774678,0.025211167,0.4131465,0.2598568,0.38637343,0.0017443975,0.47908542,-0.18224488,-0.05924257,0.34003645,-0.3783055,0.18840833,-0.029307198,0.1729844,0.33767274,-0.26088235,-0.6806454,-0.48178998,-0.24484423,1.195819,-0.23786242,-0.3791579,0.2876152,-0.29329816,-0.31812173,-0.22355217,0.46833393,-0.12755887,-0.15591525,-0.73970824,0.0608697,-0.11701135,0.16964646,0.004339232,-0.043802906,-0.34375465,0.6227352,-0.00036295652,0.4362251,0.3889273,0.10998125,-0.17933348,-0.31037274,-0.05639263,0.8637066,0.37416857,0.11172963,-0.16272688,-0.08449728,-0.2983642,0.06241963,0.13085261,0.52177304,0.7466019,-0.008582128,0.05900377,0.25221127,0.106939115,-0.005878357,-0.08377197,-0.3022442,-0.0371245,-0.036040016,0.6093375,0.39002064,-0.14360599,0.38698027,-0.07923588,0.09776608,-0.305067,-0.3983929,0.28594717,0.64694905,-0.081129625,-0.1916019,0.41453227,0.44840494,-0.17705555,0.3886627,-0.5828855,-0.30555293,0.581516,-0.2554521,-0.35211104,0.3889032,-0.39333174,0.12104332,-0.74470216,0.20545253,-0.15377621,-0.46295077,-0.5315587,-0.17476243,-3.4071834,0.08662378,-0.13173482,-0.21794952,-0.098906115,-0.07615617,0.17457822,-0.5157689,-0.46905518,0.18880787,0.05401493,0.5530759,-0.018328506,0.008104726,-0.25828722,-0.28068334,-0.21976201,0.05718473,0.010581698,0.23654552,0.026852647,-0.3655501,-0.17012046,-0.21640588,-0.25516984,0.105470754,-0.44452965,-0.45455799,-0.10214718,-0.41314203,-0.27007198,0.6899281,-0.55707335,-0.08916328,-0.08131564,0.03843004,-0.13477524,0.27267888,0.23470858,0.08699468,-0.14298029,-0.049702052,0.087871484,-0.39277717,0.37642893,0.10043288,0.2786003,0.37454802,0.017539905,-0.06690764,0.402208,0.56270826,-0.0009917389,0.7931608,0.38130972,-0.15972723,0.317702,-0.31199995,-0.23696078,-0.39106795,-0.30159843,0.094526425,-0.4277326,-0.48108438,-0.19982852,-0.32062256,-0.641745,0.37806913,-0.08309554,0.21545258,0.025328994,0.41663283,0.41154426,-0.0264195,0.025178226,0.020570543,-0.0887426,-0.49107042,-0.4246675,-0.6539845,-0.30798087,0.19890782,0.91354907,-0.26475412,0.0042643705,-0.056204088,-0.19091728,-0.027646145,-0.04432801,0.07127709,0.14284308,0.35026667,-0.18067463,-0.64999163,0.4254928,-0.09461593,-0.3329741,-0.5529054,-0.1466958,0.55327696,-0.6092419,0.4220236,0.3508574,0.052242246,0.018616097,-0.45297417,-0.25355422,0.062187087,-0.3115793,0.32255235,0.107999116,-0.6007017,0.46902734,0.27871883,-0.27483788,-0.5154288,0.5648018,0.08551501,-0.2835341,-0.10295608,0.3193367,-0.007892545,0.056306206,-0.03294208,0.08399018,-0.48925695,0.18049082,0.43084806,-0.014914504,0.23565097,-0.1565154,-0.12927239,-0.637022,-0.014777863,-0.45602772,-0.2058796,0.21987718,0.09309204,0.2479584,0.16004784,0.0020145932,0.39272574,-0.4524497,0.18126695,-0.002542615,-0.084759474,0.45816612,0.31208494,0.4491429,-0.35245517,0.53133476,-0.058219545,-0.0712202,0.028401764,0.10438654,0.5266512,0.12363358,0.14614318,-0.05566888,-0.26669264,0.44208857,0.9547471,0.29192504,0.3643198,-0.07193861,-0.030645275,0.18479557,0.16097307,-0.0021189451,0.16496822,-0.46745518,-0.30232856,-0.15504879,0.1597632,0.41385904,0.07844747,0.3277014,-0.07469229,-0.28215143,0.12575656,0.2984465,0.08717772,-0.8998224,0.32733476,0.040333245,0.6975955,0.3737482,0.063598685,0.07846693,0.4645527,-0.19224565,0.17926727,0.25733286,-0.015149661,-0.45357457,0.3456398,-0.442328,0.4700638,-0.10330978,0.07327242,-0.014150337,-0.14007764,0.43018335,0.874807,-0.23799919,-0.009680662,0.1534685,-0.19228597,0.088577755,-0.4236193,-0.036662914,-0.5929243,-0.2720832,0.5172622,0.3419456,0.26332334,-0.11527563,-0.06583352,0.024363752,-0.08566954,0.06553067,-0.025103698,0.14281888,-0.10239677,-0.68666,-0.18755566,0.4610258,0.047325276,0.10064735,-0.086857796,-0.18470278,0.4006761,-0.1561608,-0.0037884174,-0.08691091,-0.4876327,0.015011223,-0.24850562,-0.43352416,0.38482884,-0.13583949,0.37660998,0.2533293,0.06730484,-0.16161658,0.29368046,0.20790315,0.7514372,-0.31096172,-0.18800099,-0.61106366,0.17357571,0.19213396,-0.08845285,-0.20144528,-0.29866472,0.072962776,-0.58872056,0.32105434,-0.057073448,0.05459921,0.05225769,-0.23093094,-0.0048825084,0.5885794,-0.020742588,-0.08645283,-0.08317283,-0.100758746,-0.14711457,-0.08610104,-0.23573735,0.21178001,0.16492996,-0.109227546,-0.15302554,-0.18668485,-0.2476826,0.12305519,0.05235732,0.3119798,0.24896751,0.16533802,-0.21653162,-0.06461155,0.012383123,0.34325856,0.11037354,-0.11819782,-0.31103337,-0.49809152,-0.24405281,0.2463975,-0.10996482,0.24620469,0.17886125,-0.18199791,0.7572294,-0.087789744,1.007559,0.022948762,-0.3112742,-0.0717827,0.58541584,0.015114715,-0.00040506918,-0.3755657,0.8724431,0.54972064,0.095295526,-0.058859065,-0.2010684,0.07255257,0.11703871,-0.12028349,-0.02020987,0.030763436,-0.50315076,-0.18937905,0.3196657,0.28337386,0.20931625,-0.06661579,-0.036983658,0.27752116,0.08677114,0.3170043,-0.4417904,-0.14682104,0.22715853,0.19160934,0.0640594,0.028159397,-0.41232854,0.44558823,-0.4752538,-0.08645323,-0.35374793,0.14589112,-0.15159303,-0.24760336,0.22300452,-0.17160273,0.42098555,-0.42121708,-0.3195386,-0.25711903,0.35556224,-0.03839528,0.2390385,0.3492549,-0.14617442,0.033702232,0.02140812,0.5732368,0.94989026,-0.13537152,-0.029812733,0.68857294,-0.2549566,-0.5661909,0.15010783,-0.35591316,0.17506583,-0.013930885,-0.08627291,-0.30162752,0.27372715,0.27607438,0.083492674,-0.02745952,-0.46329403,-0.28085086,0.31809404,-0.21561055,-0.3252183,-0.31375843,0.15696795,0.6358041,-0.3672064,-0.23864378,0.044271518,0.34673056,-0.27035624,-0.5637377,0.021663785,-0.26073655,0.4568182,0.19011268,-0.12813352,-0.07009271,0.01781358,-0.36121893,0.2540732,0.16108726,-0.3671921,0.04708788,-0.22169575,-0.027255036,0.823443,-0.08814091,0.0036639848,-0.49134776,-0.3551273,-0.72353005,-0.29634705,0.54182756,0.03266538,0.11369376,-0.50170475,0.004270758,-0.05276685,-0.048423495,-0.15216784,-0.24094613,0.5732204,0.11044283,0.3876224,-0.15733983,-0.69793725,-0.036491103,-0.018670047,-0.2976049,-0.5357084,0.5511742,-0.02871995,0.7084685,0.11949184,-0.017948382,0.37776554,-0.40112096,0.083816625,-0.26708603,-0.24737126,-0.70653665,0.10413548 -378,0.484175,-0.25802,-0.54303086,-0.1426332,-0.39823565,0.0011411948,-0.15601642,0.20226325,0.31330386,-0.5193478,-0.06991916,-0.13500224,-0.07173364,0.03666347,-0.123782344,-0.38420925,-0.14437328,0.2014669,-0.7198634,0.9246759,-0.27316958,0.25255254,0.1410245,0.36128494,-0.040648956,0.2258705,0.08328087,-0.0817889,-0.08176935,-0.27064434,-0.025477078,-0.023140226,-0.88865995,0.3846166,-0.1667534,-0.3109992,-0.14712766,-0.28726798,-0.25928405,-0.850235,0.32356873,-0.9103154,0.6293095,0.026719894,-0.36098072,0.1386012,0.17600273,0.1917318,-0.1918621,-0.023579895,0.254901,-0.13136858,-0.32080764,-0.27521807,0.007064547,-0.36869168,-0.5494779,0.026071966,-0.32881704,0.10008835,-0.24548905,0.27650222,-0.21737976,-0.084719755,-0.28185806,0.6303102,-0.34648708,0.24383654,0.15853143,-0.17715494,0.243189,-0.6976784,-0.08005613,-0.22854242,0.13196845,-0.15470697,-0.29841056,0.20342655,0.15596437,0.6447425,0.04908436,-0.23146746,-0.20301327,0.14914884,0.041085254,0.21413878,-0.23073065,-0.36890438,-0.20982039,-0.1487424,0.21977374,0.208496,0.15191129,-0.37614974,0.18454275,-0.19288349,-0.11122338,0.38708162,0.5481162,-0.3724377,-0.22478925,0.32383028,0.6016892,0.15544698,-0.077932715,-0.085028365,-0.13264118,-0.5636429,-0.22685516,0.21073547,-0.2388719,0.51568574,-0.16933599,-0.042680003,0.2637646,-0.16885877,-0.201273,0.37313846,0.071031354,0.060163092,-0.38193908,-0.33961126,0.3758095,-0.5530982,-0.04811556,-0.40468398,0.40820327,-0.01412942,-0.68021697,0.2873227,-0.5388838,0.19158776,0.060492076,0.52728593,0.8788024,0.7231421,0.15862527,0.9250728,-0.55234534,0.0019386688,-0.0596809,-0.18131073,0.18449725,-0.28559768,0.13693997,-0.42926425,0.012110518,-0.1995139,-0.20793544,-0.21279022,0.34222513,-0.6435247,-0.3138928,0.23691122,0.6556714,-0.15069151,-0.03173423,0.89353997,1.1029478,1.1457062,0.1791183,1.401556,0.25553098,-0.15002389,0.07448893,-0.16591205,-0.8706466,0.1669178,0.25515184,0.3179787,0.11484272,0.21519129,0.0039534057,0.57001215,-0.5408513,-0.05790478,-0.15450358,0.5703291,-0.035884228,-0.011829087,-0.19800104,-0.15199922,0.12747951,0.14138515,0.15264502,0.10421128,-0.41807103,0.05672843,0.25505847,1.2188696,-0.35638338,0.12351223,0.22019693,0.24503648,0.27592978,-0.12847014,0.036537316,0.24302857,0.17387404,0.0770237,-0.4645863,-0.0645598,-0.27541474,-0.45323303,-0.15603785,-0.101027966,-0.21262553,-0.16497706,-0.38777635,-0.37511498,-0.0186371,-0.35866648,0.48364726,-2.4470916,0.0060069305,-0.2735205,0.3316314,-0.34477064,-0.34061676,-0.07427334,-0.46071666,0.45021942,0.33170286,0.47050935,-0.67376155,0.32303756,0.36690086,-0.5640953,0.007974305,-0.65926117,-0.19353011,-0.06673993,0.40728283,0.22630608,-0.33180425,-0.10556132,0.049213566,0.38847998,0.122550555,0.13336499,0.42714685,0.37330753,-0.07493918,0.4632364,0.2009995,0.61088794,-0.4363067,-0.29957512,0.35240462,-0.48961663,0.2504545,-0.090235256,0.083131954,0.5135659,-0.520652,-0.7506456,-0.93943864,-0.23826209,1.2091463,-0.053782243,-0.625663,0.024819639,-0.42439845,-0.27382162,0.048617102,0.5663999,-0.07103238,0.117698215,-0.8521351,-0.05356484,-0.1484041,0.4889718,0.018045949,0.13469587,-0.6282163,0.93305844,-0.075388364,0.51576024,0.50503355,0.2568415,-0.40523106,-0.39819345,0.0871596,1.0261403,0.44572824,0.059194975,-0.123146884,-0.22142029,-0.36681613,-0.12401498,0.10637567,0.6588462,0.4258561,-0.1675427,0.03765976,0.3484006,-0.10846811,0.0030385256,-0.1657779,-0.34799606,-0.31993183,-0.05511206,0.6224187,0.7411563,-0.04048052,0.27227524,-0.06909605,0.24638668,-0.16183329,-0.68046916,0.61877793,0.8819017,-0.21364081,-0.33238325,0.7148362,0.38617298,-0.34326547,0.55141795,-0.58605,-0.51603925,0.09042396,0.037678514,-0.47330925,0.07362775,-0.43032023,0.19237961,-0.65111953,0.46613187,-0.43238586,-0.43037748,-0.65200377,-0.28729132,-2.7053905,0.3419141,-0.1610961,0.15627456,-0.16694786,-0.098753974,0.2665992,-0.41065758,-0.7770953,0.20789954,0.0513305,0.55134374,-0.12947348,0.038098138,-0.1726128,-0.3828214,-0.29672167,0.3136904,0.07144543,0.2065963,0.00515581,-0.30322388,-0.06735667,0.118233725,-0.20905626,-0.1100796,-0.6659512,-0.55296975,-0.12900753,-0.5848443,-0.31320977,0.68027353,-0.29789498,0.0022236246,-0.3979921,0.0006583035,0.074441925,0.2407086,-0.02132726,0.31529555,0.10097617,-0.11378608,-0.20072703,-0.28864786,0.13948062,0.070714846,0.023412893,0.35757175,-0.29781437,0.22317609,0.24903545,0.81831235,-0.124623396,0.9984857,0.5180536,-0.17273673,0.36389896,-0.10236149,-0.252012,-0.56937426,-0.15330826,-0.0011152221,-0.49812266,-0.24817026,0.21727583,-0.29147002,-0.8236772,0.5845632,-0.08376957,0.04564156,0.12661757,0.19000861,0.5025632,-0.2367632,-0.057889488,-0.20869216,-0.23944949,-0.3827823,-0.41865116,-0.49538592,-0.28850874,-0.08010453,1.3096688,-0.1698725,0.05353244,0.36463323,-0.07936301,0.04662568,0.19333962,-0.11875304,0.041969005,0.57952976,0.14354849,-0.60297775,0.26163292,0.11937797,-0.04711512,-0.53407997,0.5218077,0.72962207,-0.58600754,0.7324275,0.33662292,0.16097721,-0.3016109,-0.64585173,-0.18674847,0.08525412,-0.3460137,0.36357546,0.2813457,-0.8208478,0.3420863,0.30641714,-0.061356127,-0.9150662,0.4244229,-0.089864604,-0.29163155,-0.2144343,0.5539908,-0.09240927,0.17222592,-0.22649133,0.26039305,-0.49432787,0.27209178,0.14411378,-0.11963358,0.14389372,-0.26429206,-0.2775698,-0.7623335,-0.05838127,-0.6296402,-0.377462,0.3269669,-0.09310372,-0.09256896,0.51322234,0.37086672,0.45981672,-0.045116026,0.10921175,-0.19281052,-0.30955014,0.4577933,0.4991699,0.41645887,-0.5104893,0.6127423,0.03302953,-0.1452495,-0.3063685,0.017197618,0.36763185,-0.05239892,0.4052773,0.053891234,-0.009868396,0.2103549,0.77293235,0.08506274,0.32744756,-0.0028657967,-0.09957613,0.18578295,0.008235639,0.27530354,-0.19583546,-0.6978971,0.07852707,-0.12678525,0.24964544,0.28839263,0.05562825,0.2798859,-0.0021404538,-0.25882062,-0.16829102,0.09769909,-0.12548839,-1.3667657,0.27297103,0.06091092,0.86545384,0.79258364,-0.046907116,-0.053773455,0.6622805,-0.16741051,0.04917856,0.35277894,-0.13908936,-0.13666907,0.4797427,-0.6976364,0.39321136,-0.06033177,0.08972835,-0.1398109,0.11707436,0.2232791,0.9853249,-0.19804104,0.039364655,-0.31904426,-0.12707621,0.19548596,-0.30644995,0.18935998,-0.3967875,-0.4855378,0.7736811,0.4097367,0.6332798,-0.2723218,0.0038921577,-0.030865133,-0.20737076,0.27946797,-0.043650843,0.00073203444,0.11519628,-0.480599,0.11374504,0.5148331,-0.07899733,0.09505505,0.1310263,-0.2775605,0.1547921,-0.106556654,-0.060929086,-0.103183195,-0.78713405,-0.14008398,-0.2872332,-0.061157208,0.44324556,-0.28916717,0.08365012,0.1400259,0.09863331,-0.2617975,0.24605879,0.09225713,0.5611873,0.16752562,0.0065537817,-0.2682779,0.29034588,0.01826428,-0.21504827,0.15847445,-0.15815724,0.2592096,-0.81440365,0.3521246,0.05691546,-0.5201172,0.21369468,-0.04758527,0.06250282,0.5923974,-0.24941644,-0.32698044,0.17211542,-0.15498288,-0.09519189,-0.113331296,-0.048922118,0.2266346,0.036565997,0.11928101,-0.0860814,-0.0829036,-0.23651543,0.33249065,0.20562895,0.34626967,0.43826166,0.13156562,-0.5765656,0.21911204,0.17540477,0.6705771,-0.14348319,-0.09200498,-0.04515359,-0.5204259,-0.48153216,0.38660124,0.069182016,0.26114938,4.780718e-05,-0.18671687,0.8152914,0.20651875,1.1808488,-0.010527859,-0.14365561,-0.06742164,0.53123605,-0.014682548,-0.07615525,-0.44766346,0.9978164,0.62818575,-0.065664746,0.012328567,-0.23583767,0.00383475,0.20606533,-0.17154181,0.15191317,0.0047458643,-0.8009109,-0.24348558,0.038657743,0.38785082,-0.05252245,-0.109043814,0.027549535,0.26944622,0.026428375,0.2608121,-0.5548353,-0.04308009,0.4192007,0.37275606,-0.0151941795,0.21903324,-0.33339268,0.19739236,-0.72259384,0.19466667,-0.22310236,-0.03482182,-0.15965056,-0.18150248,0.14465669,-0.019394722,0.28484297,-0.48773432,-0.41540188,-0.25888047,0.5087901,0.2407411,0.09805415,0.7867956,-0.18780129,0.039754722,0.20627277,0.5334235,0.9907322,-0.10957432,0.09530316,0.14294545,-0.373933,-0.5825477,0.34871587,-0.2644639,0.010664889,0.0679624,-0.26732108,-0.32441136,0.21702719,0.11006122,-0.031477835,0.16291536,-0.88769025,-0.07874996,0.2857873,-0.18195139,-0.029459102,-0.062436618,0.22152767,0.64317566,-0.08504139,-0.27147728,0.008082156,0.15367231,-0.37018976,-0.7506615,-0.044564385,-0.671069,0.3821972,0.12914579,-0.4428704,-0.15927413,0.027674155,-0.7765187,-0.014089035,0.03773733,-0.30368942,0.021649582,-0.33544332,0.02438957,0.7417855,0.03125076,0.26009187,-0.27641186,-0.559606,-0.8659479,-0.09309477,0.11567499,0.15385008,-0.024970492,-0.55430764,-0.18379939,-0.3440869,0.061141938,0.15949944,-0.33436617,0.46456507,0.16662331,0.5217727,-0.1434997,-0.9630392,0.18943965,0.053875785,0.06399751,-0.35580257,0.35442993,0.04694416,0.62457025,0.047359638,-0.045318313,0.22598353,-0.86188775,0.19372202,-0.14732072,-0.103760004,-0.64959675,0.034931343 -379,0.3878598,-0.23697208,-0.7560808,-0.22240216,-0.3888969,-0.041478023,-0.39649865,0.3147587,0.12915562,-0.3679042,-0.3982294,-0.10265458,0.2391973,0.4617985,-0.11690907,-0.7191696,0.2119775,0.4044766,-1.0130814,0.67787486,-0.7164018,0.3682739,0.23975077,0.38144988,0.060958266,0.27760088,0.46618843,-0.106236786,-0.07822712,-0.13396704,-0.1174161,0.11176183,-0.8013393,0.23481369,-0.20662369,-0.5727446,0.036705125,-0.5365686,0.08941009,-0.8696434,0.16510516,-1.0112517,0.6080397,0.04863042,-0.20527703,-0.32657358,0.35840005,0.4526839,-0.56146604,0.18388508,0.17714691,-0.39604786,-0.46962067,-0.31093925,0.011951962,-0.44588366,-0.6373972,0.07955952,-0.7416942,-0.30538443,-0.28921366,0.09135389,-0.26700214,0.1533949,0.06577966,0.24921495,-0.4928405,-0.15302792,0.119585685,-0.25868514,0.13835673,-0.545402,-0.0062796203,-0.3591073,0.71087563,-0.2083476,-0.44008273,0.6349865,0.48746058,0.48244238,0.29250157,-0.41825324,-0.13830568,-0.18957953,0.1748478,0.47785404,0.003033611,-0.46205598,-0.41193792,-0.16536579,0.42263296,0.43674266,0.117443606,-0.32271266,-0.067445174,-0.3245845,-0.21165037,0.40575027,0.57193494,-0.5126629,-0.27226242,0.3699174,0.5762089,0.2967557,-0.22206813,0.05791862,0.03374187,-0.7583093,-0.28744003,0.084040835,-0.10663957,0.62169456,-0.27476108,0.026576502,1.0112557,-0.16035928,-0.17915148,0.012001363,0.030139424,-0.3469227,-0.15010905,-0.26891357,0.32121992,-0.58117497,-0.060180567,-0.3772443,0.8085615,0.31714466,-0.7234091,0.43994868,-0.68886054,0.13736509,-0.16887902,0.66802776,0.8203409,0.52060884,0.51772404,0.8338356,-0.23253697,0.2004991,0.028707374,-0.43890473,0.112905286,-0.38202572,0.02848553,-0.5291342,0.25615746,-0.18807106,0.15472783,0.22839163,0.76960677,-0.44009352,-0.18244427,0.21214153,0.46973744,-0.37789962,-0.18336977,0.80159205,1.0673026,1.1541486,0.08688206,1.5341516,0.3978593,-0.23133044,-0.05467534,0.15537754,-0.8826923,0.18520314,0.38895255,-0.10709162,0.38459274,-0.0015023933,0.115690164,0.2685626,-0.49336156,0.10160358,0.010872559,0.42544606,-0.10604474,-0.1568017,-0.42525432,-0.23806962,0.24353462,-0.07197296,0.031552155,0.39055946,-0.062013734,0.5175311,-0.116037086,1.1907586,0.005141486,0.04081013,-0.09491174,0.6445801,0.37492812,-0.00080374425,-0.13026847,0.46529582,0.32622087,-0.05447607,-0.74887675,-0.0051933066,-0.4430499,-0.41470078,-0.14636606,-0.44126692,-0.1312051,0.0670781,-0.30849344,-0.25750196,0.14032349,-0.3349616,0.6032591,-2.307587,-0.38431007,-0.17581585,0.35357133,-0.16437201,-0.15053768,-0.4296654,-0.53593946,0.35888326,0.20543097,0.6395131,-0.66774374,0.5197883,0.4877966,-0.54473186,-0.3425563,-0.7408809,0.033061158,-0.178637,0.30071506,-0.03208595,-0.46280354,-0.15503551,0.051672403,0.86080205,-0.057004567,0.2110783,0.5860147,0.32397398,0.22671534,0.66590613,0.007502675,0.80521685,-0.5958731,-0.32381713,0.23275088,-0.39026144,0.4110491,-0.1954093,0.06855827,0.67267424,-0.77429765,-1.1769868,-0.69597465,-0.32155097,0.929884,-0.68561304,-0.4895109,0.20704287,0.12373755,0.091174535,0.22604136,0.6354193,-0.03720957,0.3081261,-0.62327117,0.024401354,0.14809927,0.3023369,0.14464271,0.06995103,-0.3128085,0.8238472,-0.1461059,0.67331225,0.30506343,0.15608256,-0.3981263,-0.51516825,0.2781181,1.0981001,0.25749025,0.06356366,-0.24912702,-0.4440067,-0.5545988,-0.46126565,0.027611287,0.4565837,0.830075,-0.1292217,0.20332886,0.23766023,0.015912237,0.058516968,-0.25202787,-0.34785405,0.046488818,0.10208678,0.57230896,0.78923357,-0.13083555,0.43975222,-0.12695977,0.50555086,-0.06774091,-0.64300126,0.79048383,0.7846073,-0.23796977,0.021554552,0.5542316,0.4892898,-0.5386024,0.77342284,-0.71676546,-0.6248073,0.720909,0.08810596,-0.31674093,0.24160375,-0.32643566,0.3219478,-0.85947853,0.3758166,-0.42898875,-0.12588225,-0.30974507,-0.16333094,-3.313584,0.48561695,-0.02240984,0.16127427,-0.31060046,0.004662655,0.1884851,-0.6997328,-0.7157975,0.18804522,0.15872315,0.7201839,-0.32453245,0.100043915,-0.31196406,-0.4815688,-0.07485613,0.34587488,-0.034996785,0.32499266,-0.15060163,-0.49152032,0.17041768,-0.13240567,-0.4920947,-0.0059898277,-0.79558414,-0.5314674,-0.16633761,-0.80947137,-0.3030462,0.6364286,-0.60088557,-0.008577073,-0.114039965,0.06744623,-0.23453626,0.06607444,0.038642243,0.3024256,0.06291758,-0.03322592,0.013871464,-0.24581103,0.3957486,-0.08215627,0.18746439,-0.11924615,-0.11199509,0.07602267,0.56642395,0.6695661,-0.29311648,1.1772107,0.3277176,-0.07709776,0.19728754,-0.3077013,-0.3011716,-0.64594454,-0.398198,-0.31283703,-0.5043005,-0.6018967,0.15412375,-0.1414159,-0.93644214,0.8381625,0.11416393,0.15396954,0.051377904,0.41529274,0.17042428,-0.21642455,0.027460061,-0.20542307,-0.16092165,-0.5838212,-0.29750234,-0.7789182,-0.46145403,0.038399242,0.91005534,-0.46790618,-0.12791617,0.023341803,-0.20219189,0.06591098,0.17798829,0.045477238,0.30516872,0.5195302,0.015380209,-0.8346433,0.41780195,-0.13815926,-0.11432552,-0.36184165,0.047591913,0.63803095,-0.94126207,0.6638978,0.5313566,0.014760955,0.10953698,-0.57215923,-0.23369789,0.0663753,-0.17142586,0.4770919,0.04114318,-0.96849597,0.623445,0.29294503,-0.64093703,-0.88430953,0.4589427,-0.11085358,-0.021898003,-0.030727327,0.4689206,0.12162048,-0.15824214,-0.55769056,0.021911843,-0.5619657,0.27156648,0.09178218,-0.03059242,0.4903941,-0.21899416,-0.46162987,-0.75871813,-0.058545467,-0.5364468,-0.19312996,0.2584864,-0.08968067,-0.151823,0.28501952,0.16583756,0.26776707,-0.48628035,0.19093294,-0.035438005,-0.3638017,0.27851832,0.4764817,0.39481962,-0.3885082,0.63568,0.11654013,-0.048617743,0.0063632294,-0.1557279,0.32071376,0.19917502,0.5027894,0.1357551,-0.1440602,0.17028981,0.75783044,0.21640204,0.4282618,0.3261825,-0.11264808,0.30422217,0.22793283,0.3548835,0.103186674,-0.4059694,0.060194492,-0.075673975,0.03854857,0.5938101,0.32816565,0.35584566,0.1697817,-0.18977575,-0.10336837,0.23819251,-0.036155127,-1.197276,0.5458799,0.25342077,0.62231314,0.5655725,0.12553807,-0.08527991,0.5728893,-0.47002304,0.013086501,0.30195987,-0.14345303,-0.37348825,0.7504946,-0.6217457,0.42297238,-0.3317973,0.053184744,0.23578629,0.2041515,0.40033987,1.0930908,-0.17181139,0.17934419,0.017650925,-0.043695446,0.18944122,-0.42278755,-0.190333,-0.30024338,-0.3254749,1.0512462,0.22998138,0.3988918,-0.24687782,0.001024297,0.046844736,-0.2848004,0.24197723,-0.043181613,0.16620807,0.13562304,-0.6356734,0.05527922,0.8440361,0.2389537,0.15998678,-0.008674234,-0.37020305,0.3845313,-0.321673,0.07491455,-0.18255988,-0.8041197,-0.054277387,-0.3600507,-0.57234246,0.48143092,-0.19055535,0.13743241,0.26127127,-0.037777845,-0.17907481,0.6221357,0.0793487,0.7232825,0.12126567,-0.33326447,-0.090189844,0.29326853,0.38748854,-0.4147162,0.18606086,-0.50596,0.03679975,-0.5209843,0.64773613,-0.12730622,-0.54069287,0.103620656,-0.08927498,-0.18614693,0.55171543,-0.10301059,-0.07977751,0.10971076,-0.094769955,-0.30353963,-0.2055915,-0.48942044,0.12749292,0.177654,0.08581226,-0.28981057,-0.11415741,0.026323937,0.41449106,-0.15931544,0.44016704,0.22442926,0.19317326,-0.19701004,0.26509717,0.13341357,0.608646,0.09575055,-0.14318845,-0.24784812,-0.26801765,-0.29368594,-0.03010726,-0.1032793,0.18239866,0.2308528,-0.15917255,0.83065015,-0.00073792716,1.2838949,0.04222499,-0.40732047,0.19775625,0.5776867,0.042930815,-0.16074233,-0.3108826,1.0870013,0.5020037,-0.31746206,-0.05852735,-0.5609688,-0.22499298,0.29295292,-0.35672522,-0.36976585,-0.05593356,-0.6559209,-0.55291575,0.26790398,0.32310084,0.26110613,-0.2549239,0.31532386,0.16768785,0.2699117,0.18324007,-0.8043661,-0.37787217,0.31116712,0.41960728,-0.15103608,0.1421103,-0.2865942,0.49099767,-0.9082687,0.18520388,-0.6088386,0.09219191,-0.28199747,-0.497546,0.109892584,0.043662723,0.29890835,-0.24571995,-0.31718618,-0.06317613,0.45424226,0.08209156,0.38294137,0.7755565,-0.27733448,-0.0956759,0.06440015,0.5467048,1.1993788,-0.43205306,-0.08840936,0.330214,-0.27223998,-0.6186645,0.44033882,-0.5879498,-0.05632758,-0.18915725,-0.5640276,-0.6535911,0.01357117,0.024995087,-0.0015966567,0.19431292,-0.81777954,0.027028143,0.2905144,-0.17244568,-0.27669916,-0.22640872,0.4250023,0.8754952,-0.27863026,-0.30845764,0.15339956,0.201313,-0.28261366,-0.69959265,-0.09821772,-0.2855687,0.5260039,0.18979074,-0.22999105,0.10264215,0.25695845,-0.62545794,0.12895916,0.2143827,-0.31398842,0.24400349,-0.3673955,0.11325943,0.9943966,-0.3012052,0.1158777,-0.3299035,-0.5868648,-0.9663875,-0.18672553,0.39124486,0.13145883,-0.023823934,-0.46854445,0.10479589,-0.113441296,-0.2973209,0.16853276,-0.50014514,0.42481068,0.047342572,0.51738095,-0.13960798,-1.1337304,0.25282988,0.2421164,-0.16592802,-0.81183165,0.45615652,-0.2708311,1.0946188,0.0674851,-0.22119536,0.18209243,-0.61174846,0.22163433,-0.4451151,0.28583968,-0.52959704,0.07400022 -380,0.50782305,-0.026919255,-0.86487496,-0.09133184,-0.18963869,0.1949787,-0.4193539,0.2820279,0.36991054,-0.42836618,-0.10277653,0.00055760995,-0.13860354,0.09575633,-0.13921218,-0.4859634,-0.06814637,0.22646545,-0.5007494,0.49481848,-0.32876113,0.44398436,-0.13262963,0.2738611,0.10997901,0.15854628,-0.0634794,0.024084965,-0.1838253,-0.22164014,0.409003,0.2686728,-0.808205,0.24150479,-0.24859156,-0.45939058,-0.22856848,-0.38707623,-0.37662676,-0.78563136,0.27347323,-0.7986174,0.7203619,-0.08290107,-0.1785119,0.24810122,0.15331256,0.18658125,0.03453679,-0.015371391,0.26362208,-0.30244637,-0.3135981,-0.22124493,-0.15522228,-0.42319033,-0.5889134,0.041784156,-0.58705074,0.15933785,-0.27062395,0.22248344,-0.41689306,0.032266345,-0.28794196,0.565114,-0.36791867,0.17773406,0.18277727,-0.07243485,0.09620799,-0.7921758,-0.23729178,0.0112485485,0.16629304,-0.20650885,-0.24709116,0.16968273,0.28595918,0.49651575,-0.12308591,-0.1074348,-0.46362224,0.08634225,0.40516695,0.43360308,-0.21888162,-0.15188639,-0.22073138,0.019569788,0.3679592,0.014657522,0.21919744,-0.2404267,0.025536835,0.028002646,-0.106501594,0.6220253,0.5298247,-0.1814811,-0.08011471,0.5317579,0.6339408,0.3265482,-0.11362704,0.1311386,-0.11517884,-0.5199423,-0.17416222,0.069361284,-0.13956538,0.2559254,-0.16237082,0.19834408,0.42898887,-0.22510739,-0.23633364,0.3405476,0.06948615,0.11677142,-0.28112957,-0.1427267,0.40451404,-0.3934203,0.023293434,-0.30652553,0.5148274,-0.14432044,-0.7624363,0.30636454,-0.5652978,0.19163729,0.05231113,0.66708106,0.85705376,0.5377857,0.09062751,0.88923186,-0.36294478,0.049269974,0.009359811,-0.43943945,0.22043487,-0.24904636,-0.047819175,-0.5059078,0.051849876,-0.043147597,-0.14558671,0.13882653,0.5872973,-0.63200563,-0.15666959,0.025902467,0.55375475,-0.2236743,-0.18000977,0.79593223,1.0331122,1.0810813,0.1645892,1.2858257,0.13372907,-0.14416625,-0.14225018,-0.17944776,-0.9770662,0.3820798,0.18923454,-0.5262867,0.4922929,0.15753387,-0.0506689,0.48783198,-0.33323076,-0.27225307,0.016209142,0.28009596,0.040232044,-0.36923423,-0.30977395,-0.1017857,0.0549513,0.053991344,0.32787338,0.2868158,-0.33262998,0.1707124,0.23425022,1.2115448,-0.33241656,0.07852975,0.13105668,0.027805071,0.29347426,-0.31965527,0.03135222,0.10635342,0.29812655,0.06987108,-0.51965475,0.10283785,-0.20332101,-0.44983634,-0.25251532,-0.16583316,-0.3551736,-0.09294166,-0.27990714,-0.114560366,-0.26278612,-0.4271637,0.29934576,-2.3539917,-0.12223029,-0.06326533,0.42569312,-0.12693636,-0.5014356,-0.2912341,-0.35885864,0.2446352,0.25650337,0.43440935,-0.40223986,0.4409275,0.5321153,-0.71543354,-0.02936109,-0.5483586,-0.026681978,0.053984087,0.2896538,0.09285291,-0.23362522,0.06629977,0.19597457,0.45887575,-0.2031143,0.043264944,0.5407132,0.55538255,-0.20659424,0.28047436,0.001365983,0.5415703,-0.32811734,-0.3362317,0.6092159,-0.5060419,0.25261924,-0.12053047,0.14409114,0.5133377,-0.37696293,-0.9670049,-0.44060293,-0.03270168,1.3243601,-0.10497636,-0.5581964,0.066816404,-0.42973566,-0.5656499,0.045017667,0.48035255,-0.20107564,-0.08703004,-1.0447515,-0.083887115,-0.26464185,0.25254712,-0.13467091,0.11807054,-0.46521944,0.68769306,-0.09907874,0.6377412,0.38201734,0.34171343,-0.404423,-0.46964908,0.10542,1.1290932,0.5668112,0.15025273,-0.3816903,-0.04609636,-0.42416954,0.013367168,0.05397741,0.61151993,0.47978458,-0.015327836,0.11654645,0.26998454,0.052438956,0.07830663,-0.34244302,-0.2786137,-0.22360703,-0.028810391,0.5887762,0.67992216,-0.15600397,0.37922436,0.07984709,0.15912414,-0.29258284,-0.5227809,0.5750226,0.95427716,-0.1277671,-0.3923672,0.6750869,0.2202535,-0.36742708,0.55464447,-0.5657932,-0.39002138,0.16421448,-0.17048404,-0.3390489,0.26014438,-0.44842345,0.08969428,-0.8671937,0.3566182,-0.32904142,-0.51858765,-0.65891486,-0.22571734,-2.3533916,0.22476718,-0.21062073,-0.038932826,-0.43048754,-0.03953116,0.29508743,-0.41149908,-0.8931926,0.13004363,0.052217487,0.75299853,-0.30239743,0.12126899,0.008492691,-0.35714182,-0.1486758,0.19788323,0.27910587,0.21468028,0.10270601,-0.30027536,-0.10055146,-0.1446841,-0.3302245,-0.12404863,-0.375038,-0.3918166,0.030018657,-0.35076407,-0.20838521,0.67800015,-0.50628364,-0.054229736,-0.35845974,0.07976756,0.1870173,0.3781373,-0.07746242,0.22299598,0.17445697,-0.22395912,0.015357022,-0.13248348,0.37305158,-0.012814288,0.39451674,0.6602454,-0.45443028,0.12714961,0.53355366,0.8532172,-0.061886072,1.1371149,0.32273147,-0.081247725,0.3388128,-0.1610428,-0.24911346,-0.6372786,-0.17959292,0.09442743,-0.56530637,-0.38407835,0.056013364,-0.39284927,-0.9433418,0.5410717,-0.092093386,0.25582328,-0.07687146,0.46696594,0.46251553,-0.013859843,-0.08781611,-0.119633354,-0.17773072,-0.26759237,-0.3889955,-0.52521825,-0.45508152,-0.056767605,1.2185434,-0.20339003,0.23394266,0.28419954,-0.11611093,0.1510591,0.1618096,0.04780974,0.102638826,0.4689846,0.19416185,-0.5747351,0.24965146,-0.26336086,-0.121266425,-0.72769547,0.1851219,0.5979314,-0.5634581,0.5221766,0.48824543,0.1446459,-0.118272446,-0.6550127,0.06114166,0.1913226,-0.26241073,0.5232188,0.40315008,-0.74481016,0.54601794,0.36964354,-0.30104,-0.67382854,0.5889527,0.108877964,-0.019384291,-0.17427948,0.48869172,-0.04760773,0.05940089,-0.053607017,0.34233952,-0.21158192,0.27761018,0.14676253,-0.15367392,0.1500103,-0.17980312,-0.24015959,-0.7319118,0.09345947,-0.48535055,-0.19228068,0.14128485,-0.013689105,0.20670216,0.22313507,0.16963516,0.514456,-0.29598433,0.040779117,-0.2579634,-0.37593347,0.46590304,0.53839654,0.43660545,-0.40026346,0.5767722,0.055314567,-0.24655236,-0.038438015,0.07720908,0.5295798,-0.15165012,0.34128585,0.3612824,0.049142394,0.056329813,0.8138995,0.13369204,0.38428852,0.034784187,-0.21232936,0.14075865,-0.048230194,0.38228962,-0.30976132,-0.5950927,-0.11496173,-0.08327906,0.19608591,0.5361846,0.039680112,0.3095724,-0.27231923,-0.2908195,0.04704106,0.29404396,-0.051847033,-1.3522674,0.36451986,0.14179602,0.94780254,0.48639435,-0.043952722,0.23888956,0.41250756,-0.053197365,0.08706943,0.33493063,-0.10568931,-0.37815306,0.38293704,-0.7813417,0.35677555,-0.11871685,0.0043584937,0.03173614,-0.035653204,0.52094716,0.89049566,-0.16232303,0.052567057,-0.084400974,-0.21384,0.12405389,-0.31089598,0.2905113,-0.45692858,-0.24859904,1.0161496,0.581186,0.43614942,-0.43013695,0.0699609,0.10857421,-0.188786,0.19228064,0.033495225,0.07275228,-0.20554748,-0.49844685,-0.06433093,0.42723465,0.1806259,0.039268192,0.010451229,-0.23745687,0.27915362,-0.03285726,-0.0015162954,-0.09564352,-0.7098418,-0.052924834,-0.34092337,-0.53889793,0.23114048,-0.0741395,0.095740385,0.34100798,0.11082005,-0.48834023,0.3163244,0.097278185,0.72378623,-0.041254025,-0.07091818,-0.27302772,0.4181362,0.21447489,-0.17407164,-0.1054836,-0.20609458,0.3612358,-0.49163744,0.40070948,-0.21584551,-0.45114344,0.18162386,0.0146688605,0.02927483,0.5572134,-0.27126986,-0.21875787,0.16042168,-0.1324511,-0.1977396,-0.21596332,-0.21291657,0.10826058,0.055992994,-0.2729279,-0.26004297,-0.059507247,-0.24402888,0.12203958,0.07299639,0.22721447,0.59662473,0.21714938,-0.62955487,-0.062977016,0.3545002,0.77856624,-0.0029971856,-0.118626066,-0.48698995,-0.53306764,-0.3516298,0.6688828,-0.030955834,0.1862522,0.081808686,-0.39080316,0.7276269,0.159149,1.0338647,-0.03333699,-0.3391642,0.0136301685,0.64068323,-0.018745702,-0.3591094,-0.4904826,0.94969434,0.5756995,-0.24656595,-0.04844805,-0.4191943,-0.030304665,0.07795157,-0.27221617,-0.09988628,-0.07589308,-0.72468454,-0.13302122,0.07894441,0.36831182,-0.17171097,-0.2704363,0.15746641,0.37152356,-0.026099,0.07359545,-0.6181037,-0.20602775,0.22620642,0.2082628,-0.12814423,0.09266468,-0.46526143,0.14237408,-0.7687476,-0.103789225,-0.20895062,0.10860966,-0.051665027,-0.26591998,0.30950195,0.03294681,0.2284026,-0.43912014,-0.23001455,-0.21024169,0.23861238,0.059098125,0.108204745,0.745048,-0.3118647,0.18386438,0.24956532,0.4163518,1.0261009,-0.08125426,0.07383723,0.25763017,-0.35618162,-0.6922025,0.2992868,-0.533848,0.24985959,-0.2315768,-0.39186624,-0.6083603,0.19912206,0.1862716,0.18109153,-0.046604175,-0.72456485,-0.1281722,0.24811952,-0.32898828,-0.13790497,-0.23812468,-0.31320807,0.7526809,-0.19639349,-0.35121122,-0.059069566,0.4325866,-0.10962001,-0.574166,0.043250468,-0.42679778,0.34902224,-0.018944826,-0.20133911,-0.11946101,-0.038847845,-0.5880887,0.213502,0.2959779,-0.30072355,-0.054205406,-0.30627736,0.08840691,0.61025614,-0.23583926,0.31136903,-0.30371216,-0.57021856,-0.97208023,-0.0937022,-0.0059206313,0.083566286,0.033209175,-0.79031324,0.027400775,-0.240503,-0.16389155,-0.06857792,-0.45301756,0.4074157,0.19987658,0.46452427,-0.2987619,-0.9953421,0.0019682434,0.1956776,-0.26837006,-0.41101104,0.4779447,0.0740021,0.7150899,0.15994108,0.0997378,0.1317256,-0.8039426,0.18989691,-0.04732195,-0.098176174,-0.69691694,-0.044530537 -381,0.4061044,-0.11393451,-0.51231676,-0.28111187,-0.4842675,0.012623429,-0.30313617,0.2578685,0.21295628,-0.21146104,-0.21540451,0.06981294,0.05174367,0.26644385,-0.11058598,-0.66882914,-0.01661117,0.18920717,-0.7282622,0.5507897,-0.5121731,0.29677728,-0.008467366,0.34098825,0.12748054,0.4814534,0.14040048,0.061056823,-0.12866873,0.054992314,0.00921572,0.34314233,-0.5812936,0.09023236,-0.19282486,-0.28040624,0.024665605,-0.31628257,-0.1732033,-0.6613978,0.06416743,-0.8434659,0.5332183,-0.15642202,-0.19171108,-0.08838757,0.41776377,0.52229005,-0.37875745,0.17061235,0.25930566,-0.27500725,-0.1384382,-0.33470076,-0.0799726,-0.5510041,-0.5021815,-0.09909784,-0.76861906,-0.3270473,-0.21611217,0.2179231,-0.23589201,-0.03412286,-0.14907998,0.24279982,-0.5138257,0.09462898,0.258486,-0.08980951,0.22273172,-0.4448903,0.036652397,-0.12528878,0.36677355,0.015453931,-0.20733058,0.40959558,0.258497,0.39911357,0.2996641,-0.3077097,-0.30964178,-0.19888012,0.28783795,0.24590215,-0.10612127,-0.101977415,-0.40298247,-0.01032459,0.42907742,0.4490619,0.07007766,-0.15888268,-0.07911668,-0.09452296,-0.104978524,0.47401962,0.44787928,-0.23721807,-0.2681291,0.31159145,0.6238579,0.24245605,-0.43263984,0.056601062,0.0059980643,-0.4320399,-0.21121132,0.16134945,-0.09184896,0.39037928,-0.1656937,-0.019818993,0.9187886,-0.18480277,-0.0007286668,0.018304924,0.11502326,-0.15275495,-0.24018657,-0.12607448,0.067657344,-0.6266468,0.00255722,-0.2376153,0.52960634,0.049719706,-0.62773514,0.1718708,-0.53558016,0.20811583,-0.09231615,0.6605573,0.7611679,0.53684247,0.28127453,0.6904879,-0.11791151,0.26432934,-0.1458474,-0.4295142,0.14885002,-0.2921822,0.09774321,-0.53426516,0.07059892,-0.24959329,0.028615776,0.08032592,0.51238775,-0.48905876,-0.018360615,0.1994623,0.77709585,-0.40427917,-0.0344261,0.62612,1.0856283,0.9846751,0.007936706,1.2040962,0.3911581,-0.15008682,-0.008312281,-0.4186182,-0.46300253,0.14449944,0.36032286,-0.17669374,0.3947639,-0.11065855,0.093758054,0.31189036,-0.48974812,0.10384517,0.036975436,0.41259772,0.083907396,-0.11200631,-0.33854955,-0.06325908,0.14611787,0.0751973,0.17217535,0.24184474,-0.29957658,0.3845855,0.026323633,1.3726131,0.049095202,0.036055487,0.0752185,0.57609314,0.29795814,-0.136452,0.082499005,0.52064145,0.24625222,0.0015972572,-0.5721853,0.20697062,-0.34336966,-0.47361407,-0.2318593,-0.4709165,-0.10968668,-0.07302517,-0.40360045,-0.17650315,-0.08002027,-0.23996174,0.36952156,-2.5850625,-0.23029317,-0.08802398,0.3974704,-0.17296861,-0.20812844,-0.08547764,-0.53868306,0.2966116,0.30158436,0.4281463,-0.56862015,0.5928972,0.611613,-0.5128117,-0.07181012,-0.69738936,-0.17767376,-0.1292264,0.5160482,0.054544274,-0.054958396,-0.10638099,0.32434055,0.6876554,-0.092849106,0.20282693,0.5335442,0.24012358,-0.00094933016,0.5904138,0.11435691,0.52731246,-0.19015156,-0.2558199,0.35665008,-0.3050335,0.23607355,-0.06790823,0.008538804,0.60480034,-0.42311174,-0.9357032,-0.5554297,-0.2645564,0.9790867,-0.41325647,-0.48037955,0.12404747,-0.21613492,-0.19105367,0.09981069,0.53939,-0.17411993,0.25213584,-0.7872996,0.150676,-0.07163777,0.24585775,0.0040910053,0.078942716,-0.32927138,0.69254065,-0.12863988,0.63424414,0.1720143,0.23513177,-0.21658082,-0.39174855,0.16919926,0.90427196,0.42433333,-0.11324833,-0.23182958,-0.33998275,-0.058009386,-0.17360622,0.12781943,0.4763272,0.62978506,-0.15032086,0.28217012,0.354662,-0.15116796,-0.09138701,-0.23182446,-0.15529881,0.0379063,0.14080516,0.49194145,0.844854,-0.16179584,0.45479083,-0.2371155,0.38325593,-0.04125734,-0.6566228,0.5574353,0.39216006,-0.19523917,-0.15077828,0.64540106,0.5179726,-0.42363238,0.58650523,-0.759185,-0.30678785,0.65751946,-0.1144749,-0.29112646,0.20004569,-0.36657974,0.2596936,-0.745513,0.37511775,-0.30580184,-0.36958963,-0.5181489,-0.25615963,-2.9341998,0.073697746,-0.07004651,-0.13457693,-0.30623677,-0.079535894,0.24659608,-0.6653886,-0.6661518,0.029912269,0.16194107,0.5763383,-0.07629565,0.058976356,-0.22696744,-0.34461856,-0.14380087,0.29241252,0.06603287,0.29771462,-0.23005639,-0.58223903,-0.058157165,-0.12813558,-0.61761904,0.080288395,-0.42750955,-0.3998325,-0.09088826,-0.48207957,-0.16354366,0.51942784,-0.27197483,0.031169927,-0.3365564,-0.025001705,-0.107233495,0.1856731,0.28291705,0.18201691,0.2627531,0.050964385,0.04447355,-0.36949894,0.31787166,-0.11137869,0.32264867,0.17828687,0.03778121,0.26637965,0.45792955,0.549375,-0.29607368,1.0049539,0.33497226,-0.11896173,0.23555453,-0.3041763,-0.3314069,-0.64071137,-0.3654363,-0.22890483,-0.43519875,-0.47368297,0.054134592,-0.35510153,-0.8676001,0.6590142,0.02046273,0.3375531,-0.21592711,0.2631365,0.40791008,-0.11426443,-0.16869698,-0.038912747,-0.3031381,-0.5112066,-0.39865866,-0.69475627,-0.5120005,0.083192386,1.0337185,-0.32225126,0.077855885,-0.01894554,-0.23063906,-0.03139263,0.18103631,0.015318267,0.24591163,0.42227054,-0.03377362,-0.62717265,0.37917703,-0.013939507,-0.05953593,-0.46648183,0.050413404,0.6307879,-0.7642396,0.54438776,0.38771325,0.0944391,0.030100612,-0.5864343,-0.09349978,-0.10304125,-0.22952046,0.5551653,0.2269155,-0.74185216,0.54670423,0.13921508,-0.35726935,-0.6990462,0.37195942,-0.14875038,-0.31186378,-0.018242078,0.2804451,0.099979684,-0.08130947,-0.32299536,0.20822367,-0.3747748,0.27877185,0.37469044,-0.14417572,0.3126121,-0.15953523,-0.31484357,-0.7416722,0.04028535,-0.4973704,-0.3182289,0.1831014,-0.0668067,-0.0905757,0.20524803,0.07775897,0.30690905,-0.22354788,0.059304498,-0.051411103,-0.32976636,0.19563878,0.48240638,0.3980979,-0.3645713,0.55140954,0.20182383,-0.20181015,-0.00085160485,0.028622834,0.398581,-0.078267306,0.42032507,0.027026042,-0.12367565,0.4058581,0.48008996,0.21507514,0.48147702,0.14295956,-0.27160996,0.3479348,0.021263689,0.10700786,-0.10134249,-0.36774424,0.099227585,-0.17688325,0.1858419,0.46733183,0.3680123,0.4458945,0.08688447,-0.056731038,0.08493589,0.24022831,-0.107938714,-1.5752206,0.31743094,0.34849602,0.79497737,0.4567657,0.18685006,-0.20003772,0.6184456,-0.47592023,0.041341275,0.50976616,0.09975618,-0.3621507,0.7403251,-0.6943228,0.48422655,-0.13775851,-0.07908985,0.09192805,0.15232491,0.4422714,0.9208973,-0.12230468,0.13951345,0.015277766,-0.2551064,0.17603509,-0.24775477,-0.046401262,-0.42126232,-0.3784545,0.72538215,0.2512027,0.4138624,-0.18523057,-0.053911045,0.03806082,-0.32431895,0.28067684,-0.07988324,0.05319924,0.080248505,-0.28282252,-0.28705856,0.44065025,-0.15594558,0.118836306,-0.016963854,-0.35104448,-0.00661147,-0.09788628,0.09915839,0.045855295,-0.58977115,-0.111792006,-0.09282665,-0.4845972,0.59748936,-0.269551,0.062150605,0.16302884,-0.027720852,-0.2637024,0.20972522,0.0748383,0.5609723,0.087871775,-0.2501412,-0.092570744,0.035750583,0.33604407,-0.3070217,0.15523833,-0.3358289,0.20261894,-0.6340395,0.54436654,-0.17290433,-0.51374125,0.18098472,-0.2660676,-0.047007933,0.3883885,0.014362363,-0.31698993,0.12058345,-0.15434498,-0.35823086,-0.1407453,-0.34277987,0.20460075,0.08296888,-0.10944772,-0.19088042,-0.10103217,0.06353102,0.5873337,-0.059599113,0.42136765,0.29428184,-0.07246484,-0.34728914,0.14390399,0.21841791,0.35141373,0.046976924,0.15066902,-0.28660032,-0.39545086,-0.3427853,0.29485434,-0.23731677,0.14315043,0.16019782,-0.26598418,1.0523114,0.0035301237,1.2981788,0.117401965,-0.41041943,0.12801956,0.4144492,-0.1124832,0.13051589,-0.38249475,0.84356755,0.6417418,-0.16864349,-0.10678876,-0.5251222,-0.14859538,0.28419444,-0.36183152,-0.21720812,-0.06918398,-0.6511346,-0.4490503,0.21292919,0.17953622,0.20885971,-0.052211236,0.002896905,0.15891762,0.14132826,0.2754149,-0.5980054,-0.17819656,0.2602692,0.2279067,-0.10833044,0.17307441,-0.4535743,0.47042012,-0.61472476,0.09639828,-0.32580617,0.19003327,-0.2731299,-0.43666464,0.18406975,0.018735433,0.29557183,-0.27277017,-0.43338045,-0.073111095,0.49398625,-0.044755157,0.22425807,0.60835826,-0.3440987,0.059195366,0.010035094,0.40694317,1.2915965,-0.44248322,0.032216955,0.3657741,-0.40470248,-0.7105464,0.33215243,-0.4677832,0.014163305,-0.083933696,-0.61981356,-0.4320001,0.25601447,0.0052552433,0.056549057,0.09636813,-0.39283448,-0.003875473,0.31593665,-0.24938115,-0.16803864,-0.09596125,0.24154495,0.6898974,-0.36657307,-0.27471572,0.1137318,0.32644367,-0.3206656,-0.30894315,-0.052648015,-0.05427259,0.50479233,0.013074647,-0.28773728,-0.012803011,0.16326806,-0.4153854,0.022838509,0.53439444,-0.26386106,0.056894284,-0.3614373,0.051178467,0.8943249,-0.20342968,-0.12566167,-0.4779346,-0.49061045,-0.8627881,-0.3990478,-0.012246931,0.13605301,-0.056522045,-0.4145426,0.0334516,-0.22994877,-0.16839908,0.14227617,-0.552524,0.42436072,0.20186548,0.3443934,-0.2471679,-0.9951091,0.05944984,0.082710184,-0.1530291,-0.64050215,0.7691258,-0.26668045,0.75863683,0.13751812,-0.06265838,0.0007702708,-0.4697513,0.1825099,-0.31148994,-0.010389875,-0.8409211,0.029594835 -382,0.46082702,-0.08962192,-0.63523424,-0.055769913,-0.06932945,-0.016776575,-0.29317933,0.3439371,0.19227903,-0.45694792,-0.05774081,-0.09627376,0.011801752,0.25461316,-0.13266961,-0.53612804,-0.10200004,0.1417068,-0.52888674,0.5486743,-0.60615885,0.3351043,-1.414679e-05,0.33738914,0.064226806,0.1961089,0.36340165,-0.094996214,-0.17747255,-0.10340592,0.32325745,0.32484868,-0.6894123,0.099966496,-0.08576693,-0.39079514,-0.10010813,-0.31946248,-0.4109821,-0.7459335,0.33232507,-0.9229522,0.58724535,0.20248377,-0.22875446,0.26479554,0.05673766,0.18746474,-0.3637151,0.20626715,0.11395939,-0.24672112,-0.15395138,-0.3405464,-0.024698593,-0.2668964,-0.6686996,-0.012337409,-0.45506644,-0.043284073,-0.3404078,0.19276805,-0.38048762,0.08015042,-0.33416396,0.42530048,-0.5498455,0.012501545,0.3040002,-0.050060693,0.38971204,-0.46646267,-0.12374762,-0.18093783,-0.045516692,-0.13956283,-0.31585038,0.26014328,0.22429729,0.511121,-0.048158787,-0.28305215,-0.36361974,-0.062146984,0.32019347,0.31814802,-0.3196484,-0.4912926,-0.1180276,-0.10781232,0.125299,0.1732288,0.10071975,-0.38647223,-0.0624544,0.2952659,-0.122428045,0.42494303,0.6662631,-0.24374503,-0.16049686,0.31566703,0.5640099,-0.02530496,-0.07223033,0.13035405,-0.05846075,-0.6355344,-0.24243575,0.26880008,-0.18489029,0.4870996,-0.07662748,0.12131955,0.6588867,-0.2822784,-0.15613186,0.0871072,0.024239017,0.1021953,-0.2518246,-0.41598687,0.47250146,-0.5492388,0.105918124,-0.29811952,0.66464853,-0.009259708,-0.7478559,0.366054,-0.5700174,0.21153635,-0.13323045,0.7436179,0.63952786,0.54083323,0.41661417,0.76804227,-0.6194156,0.049914606,-0.046640955,-0.3922975,0.19495668,-0.1673877,-0.09822814,-0.4260908,-0.07073236,0.07513184,-0.20122541,0.12461152,0.5153619,-0.473635,-0.005981233,0.038806923,0.5459808,-0.34310013,0.033141028,0.5825072,1.084965,1.0503772,0.15431333,1.3340056,0.26759157,-0.28974307,0.100286745,-0.12690687,-0.88754654,0.3012858,0.38536358,-0.31586802,0.36238623,0.08864795,-0.11341926,0.38394138,-0.55545473,-0.06737424,-0.19528326,0.24096504,-0.13871789,-0.30982295,-0.30185828,-0.14455453,0.018281696,0.029167201,0.0039691906,0.36491898,-0.2604315,0.22303486,0.10863261,1.5513463,-0.13468814,0.16046113,0.23973647,0.26385736,0.24060722,-0.25470415,-0.007686347,0.33437654,0.51292855,0.25652742,-0.5805735,0.11902793,-0.16203775,-0.6521512,-0.16373931,-0.2506982,0.19590662,-0.1158478,-0.5091963,-0.05156257,-0.046396594,-0.38782007,0.40553004,-2.4334335,-0.051696204,-0.07954764,0.30415538,-0.18856838,-0.34330404,-0.24392188,-0.45928484,0.44230145,0.3674032,0.47147062,-0.75418496,0.3401283,0.36795652,-0.4857641,-0.015938662,-0.7088133,-0.081511796,-0.115222156,0.29719236,0.0266799,-0.23800378,0.028150344,0.28665292,0.5369252,-0.19997618,0.06882404,0.28954113,0.3470301,-0.08785098,0.5143121,0.08259969,0.33570662,-0.40350038,-0.3136591,0.509866,-0.404208,0.14409679,0.017190957,0.057013523,0.3105538,-0.46577707,-1.0761021,-0.5727358,-0.09362118,1.1939337,-0.42852974,-0.49543658,0.25915977,-0.18188997,-0.39657772,-0.005373981,0.3770932,-0.2721915,0.08879172,-1.007409,0.093016386,-0.19190165,0.3111822,0.05384399,0.15621431,-0.4426397,0.66798943,-0.17840205,0.6328775,0.53086185,0.10495782,-0.33005223,-0.49197915,0.12856293,1.0809131,0.36253577,0.15786584,-0.2881161,-0.15209489,-0.14035553,0.009309959,0.16275303,0.46994463,0.7389728,-0.06514608,0.19212109,0.24279903,-0.04931747,-0.0021284223,-0.2779754,-0.2922796,0.030089222,0.16496843,0.6207278,0.7640704,-0.14049888,0.21275233,-0.02928543,0.43914568,-0.1664807,-0.5192453,0.51034814,1.1617646,-0.032707743,-0.33736497,0.6933415,0.4064209,-0.29753736,0.6301637,-0.6878288,-0.28687435,0.3996089,-0.10261051,-0.34516326,0.29877138,-0.44264162,0.215116,-0.8420427,0.5096177,-0.37902364,-0.32016122,-0.6149133,-0.30491266,-3.3563364,0.16311494,-0.3303943,-0.09720088,-0.023398563,-0.01765401,0.3633841,-0.6603442,-0.6432242,0.07479508,0.21223706,0.59117025,-0.12416208,-0.052095905,-0.17898916,-0.14644484,-0.10470213,0.25381222,0.26437408,0.16216087,0.10796036,-0.5550946,-0.18253273,-0.117806226,-0.4400653,-0.105547085,-0.5460361,-0.47311515,-0.20971721,-0.5436719,-0.4968903,0.6066659,-0.3105177,-0.07833555,-0.17736208,-0.08082145,0.0011662329,0.3324635,0.060875498,0.34712535,0.003545612,-0.10773158,0.032816686,-0.15228847,0.20793697,-0.059458822,0.22426304,0.43668276,-0.32081848,0.041231655,0.46747848,0.61536604,-0.14433096,0.8265102,0.6582937,-0.028364308,0.3066776,-0.21750408,-0.2490914,-0.82513523,-0.4592031,-0.1539374,-0.51901376,-0.296866,-0.008921728,-0.31149748,-0.7672252,0.6465796,-0.162818,0.16651355,-0.01640901,0.38217023,0.3457776,-0.15001976,-0.124989,-0.105420314,-0.201454,-0.5066204,-0.27756903,-0.77323645,-0.5750807,-0.101468354,1.1892328,-0.06413547,0.0067826733,0.057968877,-0.052781228,0.01761199,0.2631198,0.012011811,0.33603853,0.5121347,0.11165141,-0.5088934,0.43435657,-0.15858954,-0.20648076,-0.71350837,0.020710312,0.6369173,-0.6159965,0.6552961,0.5837091,0.1803674,-0.040730555,-0.7936188,-0.32732716,0.14681058,-0.14736882,0.75148827,0.33763188,-0.91342866,0.5075604,0.50088567,-0.43057632,-0.66249484,0.47068036,-0.026697375,-0.20869567,0.045546535,0.46642706,-0.2876209,0.037919603,-0.25069636,0.3398775,-0.46430883,0.2684963,0.20089567,-0.08069417,0.3532044,-0.2653727,-0.24378377,-0.71234435,0.10764556,-0.5455487,-0.25205907,0.18840045,-0.09901987,-0.08736153,0.1693338,-0.12789214,0.57139206,-0.22580041,0.1406821,-0.17484131,-0.41634554,0.5472709,0.58403176,0.28127706,-0.27964064,0.64301157,-0.091577224,-0.10085101,-0.43248826,0.061090983,0.5990759,-0.06920835,0.406866,-0.069271505,-0.03145521,0.41586274,0.7396955,0.2862762,0.49039125,0.19778326,-0.14923303,0.22344086,0.14026698,0.24826603,-0.028069712,-0.38006157,-0.064640045,-0.13868518,0.23694071,0.47869536,0.034459345,0.48812017,-0.25825256,-0.2695225,0.069493026,0.20457359,0.014707044,-1.3503091,0.50415194,0.066380374,0.5917774,0.6323708,0.035554923,0.027800871,0.43475682,-0.20948133,0.08671051,0.23820919,-0.10427386,-0.54284835,0.5904739,-0.67705333,0.2991024,-0.16229598,0.035774656,0.020709515,-0.014020022,0.45638803,0.6642844,0.0058971047,0.20769322,-0.09097804,-0.20099516,0.21471678,-0.3172045,0.1934315,-0.42281118,-0.34600025,0.8727326,0.2959953,0.49888033,-0.21346617,-0.0944114,0.2633221,-0.16856673,0.18522683,-0.013384998,0.094071135,-0.05361446,-0.5344744,-0.26830366,0.53103966,0.124869436,0.13111736,-0.059825774,-0.17971386,0.21384344,-0.12913854,-0.060929887,-0.0948079,-0.6124508,-0.042217176,-0.41279453,-0.3148871,0.49303186,-0.38688445,0.22514108,0.2644334,0.06634855,-0.49485978,0.09964301,0.2080782,0.7000614,-0.07630318,-0.21184605,-0.14177594,0.31116927,0.23087502,-0.11278197,-0.010095088,-0.29914227,0.1338485,-0.7014051,0.42437315,-0.120198935,-0.31628755,0.23614205,-0.056782324,-0.06014569,0.60248023,-0.23159745,-0.42035866,0.17556922,-0.14176206,-0.19428822,-0.4587742,-0.15243617,0.2931531,0.09323883,0.08443828,0.016761992,0.028645277,-0.03870665,0.4124506,0.15515228,0.20208362,0.3806673,0.076543465,-0.46874547,0.010786563,0.15740435,0.63758326,0.015989438,-0.12765408,-0.509931,-0.53293705,-0.22011738,0.13412097,-0.20723605,0.34812757,0.015336929,-0.4233231,1.0081605,0.028837964,1.1033587,-0.030624062,-0.34028402,-0.044861145,0.6463156,-0.06294967,-0.17233053,-0.23497126,0.97514623,0.741453,-0.23170158,-0.15154302,-0.2734808,-0.04669563,-0.05621905,-0.2909377,-0.299105,-0.017908841,-0.6882685,-0.12153642,0.1501857,0.41134748,0.027181309,-0.12616691,0.13251323,0.21822104,0.03841881,0.14758107,-0.41358593,0.033225533,0.23174551,0.18801422,-0.015741013,0.013449255,-0.49226096,0.30589333,-0.4619286,0.07102504,-0.24885362,0.07269812,0.07374567,-0.36900532,0.27588397,-0.028994923,0.25239512,-0.3813585,-0.15375021,-0.09595442,0.44153678,0.19094682,0.1643492,0.8099092,-0.2852347,0.26555791,0.11042024,0.4508978,1.2374226,-0.38291565,0.039881453,0.33658957,-0.3332383,-0.71459544,0.26242116,-0.2929377,0.2605991,-0.20399226,-0.49789214,-0.54711497,0.12481852,0.05608498,-0.06688508,0.15559179,-0.67896795,-0.18247536,0.18160054,-0.3384604,-0.26559108,-0.4154317,0.0013394132,0.6262288,-0.2444235,-0.41903898,0.02926249,0.3565386,-0.26215267,-0.4670628,-0.08621634,-0.3086596,0.2253713,0.17181587,-0.24645899,0.10784143,0.16374794,-0.38021338,0.11552368,0.32465205,-0.33920914,-0.017434195,-0.35364193,-0.06839953,0.77474564,-0.18031748,-0.043616965,-0.44405383,-0.5682447,-1.1116331,-0.1351372,0.52314496,0.04313305,0.15153357,-0.6337361,0.08812329,0.057359003,0.0030366946,-0.14336753,-0.3687286,0.46430326,0.07643395,0.36648217,-0.04478998,-0.64428765,-0.051028542,0.13630687,-0.10747099,-0.4236055,0.58284736,-0.026702758,0.7244387,0.07405549,0.18250987,0.2586373,-0.6739099,0.18315002,-0.13565019,-0.25460768,-0.73849326,-0.042553253 -383,0.40857178,-0.13191256,-0.3706587,-0.118870005,-0.112028435,0.12954892,-0.18037558,0.25454444,0.18786488,-0.1368882,0.009210318,-0.22511603,0.025746044,0.34780577,-0.108655274,-0.62124926,0.0036862008,-0.060362473,-0.55855507,0.6021019,-0.46071875,0.23533547,-0.056235626,0.29596925,0.11493039,0.3566143,0.23371601,-0.19287983,-0.07620843,-0.085188866,-0.0662719,-0.03541802,-0.4806579,0.12260955,0.026860118,-0.115967795,0.12846327,-0.2862792,-0.37480357,-0.7031477,0.3728459,-0.6410177,0.29209918,-0.05249577,-0.12721126,0.45263484,0.08134189,0.39292794,-0.24850115,0.015244349,0.2773546,0.011477165,0.016521882,-0.041330844,-0.03779304,-0.49892926,-0.47141844,0.070066005,-0.34153783,-0.32041112,-0.17024094,0.11166608,-0.20126906,-0.032110415,-0.12634356,0.2635117,-0.49137786,-0.0030225143,0.19495839,-0.15815216,0.3736791,-0.44511992,0.09119868,-0.10633194,0.22445144,-0.12765121,-0.05953487,0.33836848,0.36181742,0.35635528,-0.10268232,-0.060845517,-0.355423,-0.046482407,0.17246866,0.4055531,-0.08131911,-0.4495163,-0.16110662,-0.056746252,-0.12101191,0.14157133,-0.009643901,-0.36723614,-0.059797086,0.088756785,-0.24315888,0.30942068,0.45931345,-0.35112906,-0.3341304,0.47492042,0.59512514,0.21074533,-0.19740057,-0.18456735,0.029446693,-0.41628382,-0.1333033,0.14845288,-0.20777225,0.4918307,-0.17256413,0.19629245,0.71402943,-0.1727849,-0.04340243,-0.14498745,-0.1012192,-0.26183003,-0.19508205,-0.05890758,0.00707086,-0.50262886,0.11518529,-0.22739723,0.5626967,0.263329,-0.6526349,0.40414992,-0.40475774,0.15195681,-0.15213284,0.46269023,0.7013746,0.2460212,0.12626337,0.81137997,-0.61840403,0.16664502,-0.108716615,-0.47759625,0.2944656,-0.13674192,-0.16028918,-0.5461171,-0.022352427,0.07342851,-0.104824975,-0.16492188,0.096481524,-0.5296591,0.025376597,0.07114891,0.7994394,-0.23114122,-0.05524823,0.45463502,1.0231862,0.9588588,0.014392944,1.0895952,0.19959761,-0.32789302,0.3989295,-0.4596657,-0.7436346,0.18026099,0.23891395,0.058641165,0.13242014,-0.031481735,-0.0113122985,0.36410227,-0.33672333,0.13069308,-0.15741712,0.22917828,0.21435285,-0.01974143,-0.11542554,-0.2392098,-0.012544334,0.14157522,0.12809579,0.21988633,-0.23040184,0.12522434,0.0076037943,1.8287952,-0.08336468,0.10886299,-0.0011463054,0.52117234,0.23228663,-0.16229194,-0.044130366,0.29871115,0.42842063,0.30440158,-0.5684603,0.24479626,-0.23866579,-0.5192504,-0.042570226,-0.24980626,0.039524198,0.02182366,-0.30690366,-0.060254384,0.08152002,-0.16036856,0.51834166,-2.8498783,-0.01755394,-0.21879016,0.24338126,-0.27729192,-0.22217081,-0.018046819,-0.43881336,0.3574493,0.46716636,0.42923063,-0.67646176,0.27751186,0.39261642,-0.5025531,-0.013827674,-0.59122574,-0.04386752,-0.059891153,0.4783558,0.07007527,0.056166478,0.040908754,0.28680348,0.3860642,0.009162955,0.17226714,0.12779836,0.29240087,0.15435848,0.545481,0.06741763,0.518952,-0.034093946,-0.12360296,0.29977056,-0.31492233,0.2967809,-0.1505134,0.16705783,0.36829302,-0.26475886,-0.8866765,-0.60547763,-0.2502882,1.0829082,-0.22548506,-0.3649658,0.28101528,-0.07073168,-0.18950509,0.010190833,0.37840876,-0.06325491,-0.030917987,-0.70787734,0.2217155,-0.038828067,0.157606,0.013051312,-0.07618017,-0.3694133,0.6351781,-0.011430139,0.46864307,0.26647708,0.12172917,-0.1897966,-0.56636316,0.06920305,0.87187475,0.2852061,-0.05579868,-0.10066854,-0.14071025,-0.46243957,-0.16422397,0.11062072,0.34490496,0.58051336,0.01777405,0.063678585,0.14106065,-0.08546934,-0.03769084,-0.05073335,-0.3020608,0.12693787,-0.21007556,0.45826933,0.6304452,-0.13992241,0.31366378,-0.044964544,0.2578119,-0.14161333,-0.4761041,0.65423405,0.7891268,-0.12716453,-0.121281825,0.3032208,0.33810797,-0.17632295,0.33974165,-0.57400554,-0.16790798,0.34725484,-0.12325791,-0.2634394,0.12573494,-0.22826603,0.026614279,-0.70677954,0.24674675,-0.24576628,-0.34765857,-0.50915396,-0.14850177,-3.8178072,0.0418646,-0.21396083,-0.32863885,-0.045310505,0.096168235,0.35172108,-0.5368079,-0.52170473,0.110465646,0.020882133,0.4832308,-0.009105237,0.12687247,-0.38693458,-0.0017621573,-0.44374,0.26279998,0.05617642,0.20768657,0.10598208,-0.4816118,0.031578615,-0.19112849,-0.45566538,0.03407821,-0.38993353,-0.38373658,-0.23407315,-0.39447036,-0.32675523,0.6668488,-0.20495006,0.067315996,-0.08832534,-0.056299247,-0.2259531,0.35781208,0.19819462,-0.029824216,-0.02784501,0.026644029,-0.022216598,-0.29307607,0.17699721,0.03709221,0.23039813,0.3045532,-0.014996804,0.043578282,0.35683265,0.5133405,-0.14972827,0.67021513,0.5408718,-0.18549696,0.22556233,-0.32439113,0.004964955,-0.30823025,-0.3715565,-0.14705487,-0.30074123,-0.59217596,-0.12549509,-0.2850417,-0.6490296,0.3091573,0.03361319,0.10465045,-0.025778782,-0.03194097,0.37375918,-0.21078917,0.22601047,-0.024497058,-0.028756447,-0.53833693,-0.26232633,-0.57160306,-0.38198352,0.25155294,0.8610672,-0.17717841,-0.25110462,-0.08364985,-0.20357056,0.056391574,-0.011062678,-0.08457717,0.1786585,0.22285864,-0.14009166,-0.68214464,0.5587427,-0.17699164,-0.006670367,-0.6404563,0.15546003,0.497005,-0.4291339,0.43898058,0.24234219,0.043631233,-0.030115977,-0.44376525,-0.06707177,-0.060702905,-0.26218256,0.3642654,0.07473485,-0.7621087,0.3145402,0.29016274,-0.23782389,-0.6042367,0.5580789,0.08863224,-0.2715574,0.015375772,0.26393473,0.0570522,-0.0068556303,-0.4021125,0.2601039,-0.5402055,0.07851815,0.35840333,-0.009888218,0.24593747,-0.10926472,-0.058691572,-0.5728455,-0.044593327,-0.31127647,-0.18426187,0.19350775,0.08422357,0.17282483,0.22377989,0.14891285,0.3150922,-0.17872483,0.15294898,0.10322697,-0.16617149,0.32764333,0.3561204,0.34719482,-0.44223303,0.47614655,0.00872688,-0.2278555,0.18977965,0.04179509,0.3774745,0.2772544,0.3950574,0.111256614,-0.20924571,0.32360986,0.6959349,0.19468117,0.3793753,-0.08346817,-0.3069777,0.23796517,0.14971283,0.18244809,0.17511925,-0.4892928,0.018436529,0.017710928,0.25712597,0.344138,0.10044318,0.28560323,-0.08167225,-0.3325166,-0.045285918,0.08129539,-0.10913531,-1.0799819,0.4512028,0.30659348,0.8170342,0.5651067,-0.096578084,0.052968226,0.66425085,-0.06815271,0.107946485,0.31404763,0.023036636,-0.56054395,0.4567545,-0.7430699,0.35813728,0.04826456,-0.069612436,0.0037453105,-0.078352265,0.25707886,0.7755944,-0.1926683,0.02786794,-0.19225952,-0.3558074,0.22613727,-0.21836632,0.096154705,-0.45147622,-0.43020585,0.5137182,0.45189252,0.19979958,-0.15392014,0.07656212,0.024686556,0.010219075,0.045495313,0.05653403,0.1349789,0.12992464,-0.6850989,-0.34248072,0.502271,-0.4354574,0.076226756,-0.039429538,-0.19984806,0.1317011,-0.23310024,-0.000922136,-0.007200945,-0.575579,-0.053752013,-0.029837757,-0.21901362,0.46559006,-0.26683986,0.29260877,0.06571163,0.09046039,-0.34796032,0.31691265,0.060036495,0.6363139,-0.0766222,-0.07351753,-0.50172466,0.09499475,0.14874075,-0.15339819,-0.111278154,-0.23581956,-0.08563559,-0.5315812,0.42456663,-0.024545662,-0.37299463,0.04424714,-0.20596203,0.0435728,0.6249589,-0.22093017,-0.30854854,-0.1137445,-0.092467666,-0.22448164,-0.13921705,-0.15380178,0.13035089,0.14647163,-0.002787061,-0.05993629,0.04550415,-0.15950295,0.38675985,0.14096321,0.32938334,0.26120383,0.07744853,-0.35203254,-0.074404046,0.085288495,0.38777483,-0.0027822554,-0.00325761,-0.23043343,-0.5043327,-0.4343109,0.07609382,-0.11373958,0.4683214,0.092587456,-0.22723113,0.4509095,0.05133113,1.190038,0.061025493,-0.28022966,0.022775456,0.48775,0.048295412,0.047853634,-0.4201688,0.7421515,0.5511458,-0.14040945,-0.1770041,-0.1285636,-0.21540913,0.20045352,-0.12524602,0.05162185,0.0661386,-0.74465007,-0.32116112,0.20112091,0.16001844,0.1730653,-0.018217843,-0.12108435,0.19505236,0.115728274,0.44062525,-0.50329596,-0.17015694,0.3248243,0.23791207,0.092591256,0.21210326,-0.35682362,0.3729586,-0.36418986,0.08811496,-0.13405363,0.19276476,-0.18255605,-0.15249534,0.16337168,-0.18766084,0.33073053,-0.17813146,-0.4157233,-0.29116485,0.57897526,0.273036,0.2645294,0.68205607,-0.17445143,0.09714066,0.051366262,0.57246304,0.99336684,-0.26974532,0.006000558,0.376956,-0.29336575,-0.60119706,0.25143215,-0.11982484,0.16563283,0.0260113,-0.24334703,-0.41902438,0.39975888,0.06376065,-0.005130873,0.10211431,-0.71747804,-0.20032129,0.31685573,-0.17041212,-0.3011832,-0.3497461,0.19762093,0.67120576,-0.33932543,-0.2090821,0.16358641,0.25404063,-0.30948865,-0.51529294,-0.115457416,-0.37971824,0.2974953,0.15470177,-0.3196406,-0.13458768,0.09702438,-0.41826868,0.25293532,-0.047530707,-0.3553085,0.043250803,-0.121124655,-0.072867185,0.8595285,-0.2151047,-0.01678238,-0.66611373,-0.33692598,-0.73850536,-0.42924884,0.39786407,0.14082937,-0.057603966,-0.4481929,-0.16079591,-0.086223654,0.07263685,-0.12224874,-0.43287137,0.44570157,-0.010452025,0.31633353,0.029178854,-0.8591997,0.02655756,0.18671556,-0.10902269,-0.57331836,0.49714273,-0.13258883,0.6787336,0.101483844,0.12430021,0.34919345,-0.2768302,0.10794826,-0.36384484,-0.24007438,-0.6887463,0.28202152 -384,0.44850278,-0.18615955,-0.47189382,-0.11289778,-0.4705565,0.04662679,-0.31288883,0.2199559,0.3078071,-0.23867658,-0.07725166,-0.041361924,-0.0035764417,0.1872627,-0.075739324,-0.6674762,-0.31074917,0.12983496,-0.905875,0.5893266,-0.5307893,0.33420536,0.11905865,0.27867943,0.2177006,0.4295022,0.16524425,-0.14265999,-0.17439362,-0.051729593,-0.17848828,0.24137707,-0.5864043,0.11965025,-0.151284,-0.27927506,-0.007255719,-0.42299628,-0.29898226,-0.6781657,0.042435814,-0.81880563,0.49511236,-0.13417816,-0.1324631,-0.10190773,0.16989702,0.40412927,-0.4815468,0.18244435,0.33608562,-0.21928768,-0.1650399,-0.2603918,-0.0011993436,-0.46529365,-0.4748617,-0.13358296,-0.62649345,-0.19733918,-0.08680555,0.26590887,-0.24774796,0.022912113,-0.21883292,0.33745137,-0.46703044,-0.03845015,0.22098714,-0.189354,0.1926245,-0.550426,0.0751438,-0.12469187,0.46673304,0.024654543,-0.22434828,0.34662756,0.30009627,0.39739764,0.33031026,-0.36446565,-0.26248452,-0.1282128,0.18643644,0.34915763,-0.16008443,-0.28845727,-0.26348746,0.037764892,0.40574175,0.15732917,0.024628485,-0.33320054,-0.021999916,-0.08189296,-0.17756031,0.5060511,0.48129058,-0.29700625,-0.2932208,0.3217926,0.45959926,0.25889057,-0.243315,0.07559967,-0.017607044,-0.4371919,-0.09472603,0.29718006,-0.010385182,0.37736213,-0.16617101,0.11461225,0.70250756,-0.06495635,-0.044140853,0.02858771,-0.06172493,-0.09007179,-0.14035466,-0.09003679,0.16124749,-0.529999,-0.0014026866,-0.25611487,0.49352893,0.21569817,-0.6600466,0.39984584,-0.5468316,0.17539138,0.011585514,0.61662287,0.7678239,0.5196856,0.26635718,0.77729654,-0.24764243,0.23937404,-0.037610214,-0.40070784,0.055134606,-0.23464483,0.09374512,-0.5054108,0.13545197,-0.32426772,0.088069804,-0.028328104,0.31569353,-0.5203773,-0.11526553,0.11845225,0.75530154,-0.3200075,-0.073502764,0.74238956,1.1299605,1.017249,0.03989187,1.1700444,0.33239797,-0.28062072,0.012369475,-0.37920514,-0.5733849,0.1878802,0.36115837,-0.24445051,0.51920193,-0.19250631,0.059881665,0.34184787,-0.3978216,0.046032187,0.0076977294,0.2886994,0.098351926,-0.10245613,-0.28720757,-0.053100344,-0.023474878,-0.033795673,0.18381299,0.13990158,-0.31240445,0.3354133,0.06311555,1.3185148,-0.17307048,-0.052044585,0.108836286,0.44748846,0.34788686,-0.18377681,0.04091949,0.4431361,0.4719998,-0.053155072,-0.61172205,0.22444797,-0.3834388,-0.35685566,-0.1529454,-0.24526155,-0.030214015,0.03255148,-0.38067633,-0.26301652,0.024210887,-0.3443657,0.38630196,-2.7138574,-0.23110847,-0.15627086,0.2393653,-0.31265318,-0.2538047,-0.10840759,-0.6015012,0.26383138,0.16488871,0.4456918,-0.6518197,0.5958545,0.5241016,-0.6029582,-0.1493484,-0.63721454,-0.056361888,-0.013619703,0.652711,0.0281058,-0.22985727,-0.11034473,0.15846097,0.61673397,-0.016401151,0.19968913,0.50827605,0.4106766,0.113984555,0.6603305,0.093446955,0.6262257,-0.26987004,-0.17864957,0.52512604,-0.34323284,0.17440446,-0.049078517,0.12790836,0.54622793,-0.4692713,-0.88812804,-0.5717738,-0.1684933,1.0593843,-0.39257646,-0.44035226,0.15858668,-0.05549123,-0.082127035,0.24544188,0.5239177,-0.025497572,0.08204786,-0.78117174,0.15119298,-0.07622467,0.24254936,0.105092615,-0.005957421,-0.28437933,0.6886941,-0.043612957,0.6066097,0.25701421,0.29921448,-0.1318579,-0.4754769,0.117095076,0.9808426,0.3812682,-0.046584226,-0.1648262,-0.25477734,-0.093351744,-0.16433077,-0.07492789,0.5921214,0.68150306,-0.08533921,0.1363836,0.3281152,-0.052180193,0.060498517,-0.21297573,-0.18710569,-0.06871122,0.13560237,0.33003584,0.7239896,-0.08488748,0.56367356,-0.14653845,0.33470327,-0.021819398,-0.6064267,0.73921305,0.78769547,-0.1968045,-0.12363156,0.41716394,0.42279777,-0.20907472,0.48707294,-0.6143084,-0.3379797,0.5898641,-0.20450707,-0.3188489,0.3634679,-0.30937073,0.2441095,-0.77109784,0.28009284,-0.35142976,-0.35985166,-0.47807553,-0.21131705,-2.8650527,0.07091489,-0.11714387,-0.12849179,-0.28398877,-0.1232149,0.3000586,-0.6477492,-0.5846475,0.1301206,0.2376571,0.490117,-0.06592057,0.14995787,-0.2847643,-0.14354466,-0.06598874,0.32222533,0.17805405,0.27495033,-0.18084161,-0.42200732,-0.13712938,-0.04291336,-0.48319322,0.070345685,-0.62027335,-0.39887148,-0.07999577,-0.539147,-0.16888677,0.5933167,-0.39948723,0.03965471,-0.25686884,0.08507141,-0.14522855,0.13489217,0.20825505,0.13442221,0.16378221,-0.07213887,0.05190827,-0.2126062,0.3082003,0.06614628,0.27189234,0.15255973,0.06258047,0.12846236,0.34749532,0.6619057,-0.2565214,0.96479136,0.3289158,-0.20476343,0.28718486,-0.2514552,-0.26237458,-0.68942887,-0.39802995,-0.13923436,-0.46264675,-0.5593873,-0.022644838,-0.31368256,-0.8960139,0.56890327,-0.019299746,0.31981882,-0.005574724,0.2240806,0.51010257,-0.09958397,0.062123775,-0.1299368,-0.18965551,-0.42145953,-0.33596587,-0.6658631,-0.43374568,0.10670881,1.0618092,-0.22343229,0.038801495,0.0041787555,-0.32526106,-0.020504935,0.066837914,0.1307739,0.29955584,0.44974816,0.085981175,-0.5630366,0.26511276,-0.1027361,-0.012871999,-0.4984868,0.17675227,0.6201545,-0.6806565,0.5763725,0.24339117,0.06511205,-0.008257256,-0.44365698,-0.1513923,-0.0148456795,-0.16182308,0.5434088,0.18189357,-0.6815842,0.49306214,0.23340058,-0.38948226,-0.7616974,0.32060555,-0.004243153,-0.20359749,-0.07268039,0.37405288,0.051079623,-0.08849813,-0.2701741,0.26117754,-0.34281024,0.27742994,0.1543677,-0.14395303,0.1338254,-0.0030642275,-0.5380242,-0.77138907,0.07662951,-0.4753336,-0.33939767,0.2616926,-0.04095672,-0.0068347314,0.0068185665,0.11138312,0.37917086,-0.27978593,0.15292463,-0.009575253,-0.19877058,0.23395334,0.5067097,0.20955731,-0.37348127,0.51442456,0.21282099,-0.24397977,0.06515188,-0.032141376,0.3069806,-0.011091302,0.28187698,0.066552766,-0.1021669,0.44450638,0.70694894,0.23447716,0.46197942,0.043127034,-0.23574734,0.32492948,-0.04495468,0.23128802,-0.07509234,-0.46951175,-0.040714614,0.12228959,0.21368907,0.3823551,0.3979584,0.31504938,-0.02377642,-0.15403435,-0.022134542,0.17704369,-0.04047605,-1.2571459,0.25886077,0.25357983,0.8990974,0.51438713,0.054459494,-0.16140929,0.6297848,-0.33439907,0.027081707,0.4199301,-0.115272045,-0.35401553,0.64816445,-0.49538836,0.26446924,-0.11661619,0.05144767,0.098383114,0.07417938,0.3434316,0.79448205,-0.22554962,-0.015686214,-0.1205235,-0.09528487,-0.04706725,-0.18711255,0.024964644,-0.3229282,-0.45712113,0.8085645,0.32634774,0.3838582,-0.23153555,-0.026867086,0.043292698,-0.17335795,0.1506573,0.03341879,0.013084833,0.12625182,-0.3573945,-0.28433162,0.5496987,-0.18919465,0.0063369977,-0.13140216,-0.2910187,0.026269468,-0.14469756,0.05674254,-0.08826785,-0.70834106,-0.04485536,-0.33089167,-0.45722002,0.40594476,-0.19448459,0.031201705,0.105604075,0.05678594,-0.1872273,0.29179332,0.15856016,0.66157085,0.06521997,-0.1795069,-0.28348175,-0.026631903,0.21555653,-0.22367087,0.039944388,-0.37347126,0.097813815,-0.6274057,0.60938096,-0.21692273,-0.44706815,0.17779142,-0.29153323,-0.022729432,0.5187334,-0.097213075,-0.2652567,0.31631458,-0.06862079,-0.4279637,-0.11670755,-0.27531192,0.27921644,0.36339098,-0.030958967,-0.08055015,-0.13315356,-0.246114,0.54560035,0.09994079,0.49194565,0.30188632,0.03626736,-0.24406901,0.07763881,0.3162621,0.46881622,0.21255884,0.053683367,-0.31767362,-0.40581036,-0.4032581,0.22636084,-0.1443828,0.19497137,-0.049755476,-0.3414156,0.90653473,0.047806762,1.2694826,0.0096569555,-0.44471636,0.01800333,0.5340503,-0.09775038,-0.047657162,-0.2842621,0.9398338,0.63034403,-0.06771942,-0.028923241,-0.42505646,-0.25836176,0.21716194,-0.32505876,0.008104911,-0.109330155,-0.592102,-0.38305223,0.2952732,0.08855552,0.027621578,-0.06454012,-0.041037798,0.048114788,0.07321078,0.25992203,-0.6984888,-0.2132061,0.1671459,0.15656538,-0.08353546,0.106823035,-0.42424372,0.34733927,-0.6492038,0.10498498,-0.38707605,0.11238603,-0.08562078,-0.22633988,0.19964266,-0.0533799,0.29038692,-0.43273112,-0.4572171,-0.2462519,0.49473304,-0.07384395,0.11544933,0.66034997,-0.31851202,0.15264976,0.19742054,0.62305486,1.1285734,-0.46506304,0.10832079,0.34454447,-0.42025805,-0.5510142,0.3248317,-0.3052591,-0.0588552,-0.032721065,-0.4515735,-0.49972612,0.3151249,0.1242058,0.18892823,0.15685214,-0.7280948,-0.09578427,0.35327873,-0.29656562,-0.17980956,-0.19358721,0.32409522,0.8489141,-0.38143045,-0.46695998,0.08535447,0.3074142,-0.27623746,-0.51230234,-0.10815842,-0.22327664,0.3373239,0.2441776,-0.15567577,-0.034227543,0.14468396,-0.5301674,0.07461586,0.33877417,-0.3454762,0.09184937,-0.11716638,-0.042598363,0.84810144,-0.22086407,0.027876012,-0.65251493,-0.43050814,-0.84154344,-0.4866996,0.100340426,0.17033891,-0.0043280404,-0.5152063,0.049822416,-0.2280817,-0.22015287,0.15395257,-0.6063627,0.4114996,0.11336633,0.53574765,-0.37398657,-0.9875928,0.044774044,0.22512172,-0.12486259,-0.60528517,0.67297477,-0.05548993,0.8269415,0.08282194,-0.0836622,0.0085278675,-0.4873591,0.06127034,-0.40013918,-0.05217778,-0.79783404,0.054251656 -385,0.35054532,-0.10264499,-0.5272358,-0.07333874,-0.16091532,0.10645963,-0.25474313,0.37639564,0.20150734,-0.34510213,-0.061664246,-0.12174579,0.033146624,0.24955411,-0.07702443,-0.397134,-0.027573593,0.1226847,-0.42415184,0.39449513,-0.43000707,0.32834715,-0.15440567,0.4288754,0.18058538,0.36800358,0.004736149,-0.1092586,-0.089811794,-0.14568983,-0.19590937,0.3559081,-0.2652658,0.01577725,0.018813642,-0.24856058,0.09044311,-0.40090287,-0.3363863,-0.70859164,0.34314257,-0.7496962,0.46196193,0.037252538,-0.20002492,0.2831141,0.1937259,0.46467572,-0.25352198,0.035387866,0.26965034,-0.15879965,-0.057627454,-0.16506048,-0.18505353,-0.4110342,-0.47027284,-0.036600366,-0.43009868,-0.30844435,-0.30796713,0.14805211,-0.25091097,-0.1031963,-0.05059373,0.48680675,-0.5196947,0.03525501,0.21939228,-0.20243715,0.2741811,-0.56625557,-0.0964388,-0.053535905,0.38565928,-0.14950386,-0.06669666,0.1512584,0.34286746,0.32742792,-0.038457647,-0.1523943,-0.39774877,-0.1440349,0.08952022,0.47720978,-0.20183171,-0.41837952,0.0016966263,0.037274104,0.06405766,0.2754503,0.14060625,-0.21583636,-0.07901504,0.14235623,-0.2498469,0.24805422,0.33695304,-0.34456146,-0.14721942,0.3682311,0.5179056,0.16459551,-0.17935811,-0.030900208,0.03433485,-0.4505186,-0.11782119,0.033802677,-0.28534257,0.4257264,-0.08949568,0.3527119,0.716758,-0.14006427,0.070499904,-0.10613774,0.057268873,-0.14618436,-0.25651297,-0.24022214,0.087151185,-0.36400706,0.28078535,0.01643575,0.78013384,0.12285651,-0.5817878,0.293304,-0.56521314,0.10617157,-0.20868212,0.39149123,0.5243409,0.29789177,0.40437856,0.6175133,-0.349485,0.09199225,-0.07853539,-0.48667124,0.0008229415,0.0287156,-0.1006749,-0.5798434,0.06213408,0.001793023,-0.11749258,0.08339731,0.31378883,-0.5071814,0.06875264,0.17981987,0.8903796,-0.3216206,-0.13647394,0.54282135,0.97486454,0.8738857,-0.0012544801,0.9490939,0.20531943,-0.319548,0.18224287,-0.41855878,-0.52436936,0.276625,0.3753914,-0.33361977,0.23044287,0.15362087,-3.973643e-06,0.472133,-0.31629428,0.059344966,-0.120250106,-0.011817662,0.22352338,-0.07333107,-0.42703724,-0.21674512,0.0038902601,-0.068629436,0.16715011,0.23604487,-0.18697158,0.24293788,0.013006385,1.830352,-0.03727317,0.10301965,0.09750584,0.47163334,0.19026877,-0.11571153,-0.052975737,0.5305231,0.3724906,0.12594754,-0.5902086,0.20981078,-0.23447566,-0.5096455,-0.10098745,-0.3075482,0.012971576,0.12232354,-0.49505523,-0.0839714,-0.17815271,-0.26338112,0.38001385,-2.8320668,-0.06314812,-0.14290066,0.27943403,-0.25546712,-0.32150945,0.09364574,-0.3753722,0.36417338,0.28107145,0.39646706,-0.5892151,0.3919135,0.41398683,-0.47925416,-0.11491089,-0.54381585,-0.2102692,-0.06298981,0.24552082,0.019982386,-0.060504008,-0.035023235,0.19550835,0.38567588,-0.10311278,0.1464723,0.275641,0.40954506,0.14582056,0.6516895,0.055621095,0.5639441,-0.03741013,-0.22243829,0.25622594,-0.23852442,0.17559548,-0.020367904,0.058962647,0.3249181,-0.2688323,-0.85061705,-0.6874197,-0.1997569,1.2549099,-0.26529953,-0.36397055,0.28143886,-0.23758346,-0.31017172,-0.03607653,0.44604757,-0.08563115,-0.17948173,-0.7899802,0.17069206,-0.18567027,0.18678102,0.11884232,-0.039314706,-0.48874867,0.5753666,-0.03686055,0.5415268,0.34281683,0.20559318,-0.17392395,-0.28085816,-0.049745012,0.79206175,0.31189126,0.11962021,-0.14042439,-0.24425247,-0.28809386,-0.10148044,0.0962565,0.49083653,0.71228856,0.06310757,0.15292458,0.2323771,-0.11211609,0.039964907,-0.18552858,-0.26635417,0.07168518,-0.0179434,0.5184398,0.37979907,-0.19310942,0.48062798,-0.067789994,0.29610264,-0.18633755,-0.26987717,0.38451546,1.0421579,-0.22298566,-0.27477834,0.5494039,0.45389155,-0.2928957,0.25356534,-0.6256624,-0.10009327,0.57288325,-0.18064533,-0.49049786,0.1816954,-0.30287373,0.16222474,-0.91143507,0.19946954,-0.16332461,-0.44767115,-0.45894888,-0.09461192,-3.945421,0.15596907,-0.34319007,-0.22871044,-0.1257508,-0.119476505,0.1944508,-0.66150266,-0.4790016,0.103605986,0.07395646,0.6381131,-0.117190756,0.13529888,-0.26608953,-0.2102837,-0.2297246,0.13855341,0.031994537,0.35157612,0.009894282,-0.5197912,0.02266037,0.045963403,-0.47685614,0.11763408,-0.59953743,-0.3681907,-0.049890295,-0.5677608,-0.27232495,0.5665999,-0.2950427,0.011749911,-0.22844772,0.02833523,-0.14150563,0.34044167,0.18596111,0.10906125,0.022465134,-0.044698615,0.05026526,-0.314067,0.30618212,0.007608664,0.23679402,0.19347292,0.10466916,0.11093195,0.41736028,0.52559066,-0.07447281,0.7446156,0.47979668,-0.177395,0.26224577,-0.40129507,-0.21430959,-0.5015292,-0.39614055,0.00346333,-0.3665758,-0.5035895,-0.16292463,-0.44795334,-0.66953295,0.5411077,-0.01755611,0.15600829,0.029330263,0.33724433,0.49148986,-0.16932772,-0.058694147,0.062376186,-0.13397278,-0.5542718,-0.129957,-0.5183516,-0.34182945,0.18704656,0.77036494,-0.26924053,0.070990674,-0.011175762,-0.21682781,-0.108179025,0.0778688,0.13542554,0.286445,0.49835014,-0.22597955,-0.6727254,0.446607,-0.13158734,-0.1994366,-0.6055452,0.190448,0.5579836,-0.6184429,0.632984,0.30374378,0.16390972,-0.11440048,-0.5239149,-0.17629464,0.12093479,-0.21448784,0.37676004,0.19257364,-0.7011557,0.39794433,0.40680048,-0.12321411,-0.5580603,0.550619,-0.06239787,-0.39114487,-0.025230369,0.3606785,0.12564664,-0.033657014,-0.25644138,0.18520007,-0.4344537,0.24627382,0.2567091,-0.1529984,0.22555852,-0.2011017,-0.03398396,-0.6641907,-0.016473632,-0.42623004,-0.24496572,0.249546,0.109420255,0.13740817,0.22210635,-0.049879488,0.33603603,-0.32754388,0.023376746,-0.079992995,-0.0977825,0.19747901,0.40056565,0.39115104,-0.45098782,0.46448594,-0.019073619,-0.17360792,-0.06590239,0.052249327,0.44893512,-0.0028640905,0.41763538,-0.11593281,-0.26044744,0.37067363,0.7000836,0.19482677,0.5301026,-0.03392671,-0.09159856,0.14223951,0.07522189,0.055878386,0.08786937,-0.6305409,0.02745777,-0.17124303,0.19829673,0.5512608,0.21469767,0.32441458,-0.08703396,-0.36028376,0.051889736,0.20967683,-0.06958601,-1.0124122,0.48508373,0.24002157,0.7548285,0.34388754,0.013946267,0.0051740725,0.67706895,-0.2897205,0.10964758,0.34112868,0.062418986,-0.5163904,0.49062034,-0.7235332,0.3591175,-0.026425295,-0.055380117,0.029283376,-0.14725667,0.3162063,0.7604191,-0.15927163,0.018350072,0.116140015,-0.28771913,0.10482235,-0.35194317,-0.06088888,-0.56565875,-0.25290543,0.4223097,0.58792996,0.2870037,-0.13989156,0.033891257,0.17167212,-0.12239271,0.11547801,0.122858986,0.18166704,0.106281824,-0.73254913,-0.3441966,0.4947858,0.011656737,0.10467462,-0.12397125,-0.1933031,0.2625582,-0.19439714,0.0075804633,0.030373275,-0.48920193,0.0546261,-0.21291488,-0.43091437,0.41367343,-0.006259565,0.25099793,0.1275033,0.01354845,-0.24648994,0.49942556,0.10410605,0.6811656,0.09311078,-0.058856726,-0.5346511,0.08024497,0.067358874,-0.07465851,-0.23199923,-0.377255,0.044107176,-0.5973165,0.4011304,-0.003039509,-0.32766595,0.0032895803,-0.2053095,-0.016434517,0.5331936,-0.0925,-0.122750856,-0.026861038,-0.157538,-0.25218183,-0.24369009,-0.20206429,0.19430926,0.078582555,0.033083856,-0.20214829,-0.07590259,-0.2607598,0.4608614,-0.039015956,0.4274739,0.41627118,-0.048134945,-0.19344044,-0.25486425,0.11982748,0.38155222,-0.19024356,-0.11975444,-0.2579899,-0.5241549,-0.28921852,0.065537974,-0.07371151,0.46402544,0.16678311,-0.12799717,0.7709353,-0.0814358,1.0765901,-0.0059670787,-0.3938409,0.045896333,0.481946,0.028182097,0.07523389,-0.35904095,0.8383024,0.58195853,0.034294207,-0.13923441,-0.32421863,-0.046289004,0.1838792,-0.16445312,-0.08484397,-0.019216113,-0.588315,-0.2769989,0.242453,0.19834144,0.22688071,0.026443118,0.14398827,0.20376097,0.018519463,0.28923878,-0.39991772,-0.20084316,0.24868867,0.28168955,-0.030704807,0.082507625,-0.5322723,0.4793568,-0.3750554,0.03051082,-0.37493026,0.28152147,-0.16829756,-0.30601946,0.2264654,-0.08717983,0.35021332,-0.24217574,-0.27076906,-0.15204452,0.44799128,0.17058145,0.15261017,0.570757,-0.25992194,0.10984944,0.02590347,0.5573916,0.9365172,-0.22814696,-0.0035516818,0.3788628,-0.35148647,-0.5782388,0.24616845,-0.27975428,0.00012212197,0.1637369,-0.178942,-0.4475413,0.28853807,0.15992838,-0.020584345,-0.039637137,-0.47571176,-0.16690446,0.2847617,-0.27941486,-0.19783321,-0.21292101,0.20982952,0.5466768,-0.4138298,-0.37737432,-0.019203926,0.3098393,-0.041814215,-0.47273967,0.0046843886,-0.3244823,0.36585724,0.1529058,-0.3514547,-0.18261383,0.033127658,-0.2679709,0.13308571,0.24723364,-0.3423794,0.12214088,-0.34006804,-0.10154384,0.8124396,-0.123958975,-0.0039459704,-0.60366756,-0.26973626,-0.7304161,-0.376594,0.36050168,-0.028470643,0.006654664,-0.5256073,0.0012006343,-0.060855806,-0.15892357,-0.13944179,-0.38440618,0.4145142,0.07112969,0.46431234,-0.08589358,-0.6525227,0.06871036,0.04721675,-0.31683695,-0.6084433,0.6295541,-0.13840695,0.9053986,-0.035758425,0.074478164,0.3137696,-0.35082817,-0.047339685,-0.27535278,-0.2557747,-0.8845133,-0.07058258 -386,0.41594556,-0.13296951,-0.3204371,-0.15966667,-0.21045326,0.07181232,-0.14989659,0.42499512,0.16989331,-0.5347624,-0.1928748,-0.15376158,-0.0029024244,0.17147675,-0.1911599,-0.5196776,0.028058577,0.12482793,-0.3560848,0.53430426,-0.43751496,0.36469948,0.12007679,0.26359957,0.05852061,0.25529876,0.20991677,-0.109229706,-0.1399793,-0.32434005,-0.15136965,0.40868282,-0.5453009,0.2323025,-0.19262467,-0.31170815,-0.037789892,-0.36910588,-0.22316314,-0.71961915,0.09083494,-0.77178496,0.45933005,-0.049483284,-0.34288624,0.3248687,-0.014635078,0.24230008,-0.11425854,0.08979882,0.040911935,-0.21794817,-0.05486485,-0.14238901,-0.21301985,-0.35950738,-0.5046219,0.009033122,-0.4592945,-0.30154693,-0.3640509,0.11397512,-0.38444698,-0.12183733,-0.06987718,0.431091,-0.5405231,-0.055306792,0.14763273,-0.091979265,0.45352978,-0.4666266,-0.1132152,-0.17153336,0.14515145,-0.255562,-0.16060032,0.14172183,0.3501194,0.567052,0.018413862,-0.1314521,-0.3118601,-0.1762657,0.22264251,0.3997847,-0.13641602,-0.42380854,-0.06968624,-0.064902015,0.19613439,0.22762752,0.06632414,-0.14683929,-0.201508,0.08194106,-0.24613978,0.18007837,0.38876355,-0.40969542,-0.38009498,0.29443753,0.58350307,0.037221774,-0.08083737,0.10790315,0.00918089,-0.33942863,-0.15305933,0.14654599,-0.1789239,0.46963614,-0.12929705,0.24249345,0.61375266,-0.17470007,0.076602474,0.0132846115,0.048307776,-0.074672,-0.19493069,-0.15604901,0.2604189,-0.5030337,0.098997094,-0.2638388,0.8034667,-0.024760647,-0.7281082,0.24938484,-0.47779578,0.07399333,0.026740806,0.6150259,0.68428767,0.40655786,0.15723133,0.5413684,-0.39494503,0.027822841,-0.16543573,-0.29350388,-0.062754154,-0.13089362,-0.062464766,-0.4746733,-0.081832774,0.13796622,-0.07199289,0.024946062,0.24195029,-0.61019516,-0.016624684,0.2009244,0.79203606,-0.2832002,-0.04932135,0.774668,0.96134585,0.8649466,0.1144315,1.1461756,0.19425449,-0.13652338,0.0997798,-0.28787735,-0.45655537,0.33130094,0.4223794,-0.020097153,0.1857088,0.060906507,0.05782266,0.30243593,-0.4594631,0.10217301,-0.27956364,0.18391708,-0.05534608,-0.12685356,-0.4522172,-0.19235484,0.013757606,0.16806234,-0.08138911,0.26198906,-0.08408397,0.42134216,0.1061292,1.3180226,-0.08786054,0.17362577,0.114647865,0.32570994,0.15967911,-0.12988463,-0.018579157,0.21586189,0.3513905,0.17838106,-0.5132649,0.028704107,-0.14342676,-0.53492624,-0.18518162,-0.34041464,0.021371333,-0.053849675,-0.37904373,-0.076006666,-0.11384494,-0.42372462,0.42680883,-2.7206962,-0.09987227,-0.18260457,0.24062999,-0.2381669,-0.30739194,-0.06880648,-0.50424933,0.3950995,0.37933084,0.38766858,-0.6187813,0.3260612,0.44059163,-0.39140555,-0.0897368,-0.60665095,-0.109298825,-0.035197236,0.28274238,0.008033577,-0.10710009,-0.120003834,0.094365425,0.53771466,-0.053289067,0.09022608,0.2762057,0.18629424,0.10075995,0.365549,0.071102604,0.36270413,-0.15935706,-0.21445903,0.30761477,-0.34059185,0.1483066,-0.05496488,0.14948587,0.3167091,-0.4796295,-0.7829845,-0.8195981,-0.63004494,1.264008,-0.1783733,-0.4751976,0.31312266,-0.00068225263,-0.32720172,-0.16469221,0.41496876,-0.111683525,0.076289885,-0.7601215,0.024383353,-0.041005395,0.2661079,-0.027094936,-0.020249192,-0.4769167,0.5588715,-0.23328765,0.36237937,0.3645052,0.2211707,-0.17892818,-0.37952435,0.0008263747,1.1910596,0.4951006,0.11108374,-0.25602823,-0.2739064,-0.4019491,0.06551325,0.11936345,0.419048,0.81763685,0.010463031,0.14579882,0.2854602,-0.05150117,0.10030452,-0.20831315,-0.22989419,0.0004622698,0.091909125,0.5980291,0.3055004,-0.095192,0.58019453,-0.08335081,0.28092292,-0.17576183,-0.40829426,0.4282336,0.7862975,-0.13226499,-0.14162056,0.7034384,0.48266417,-0.29657415,0.4531147,-0.506622,-0.3541795,0.43437624,-0.19971961,-0.48018378,0.24630491,-0.32490075,0.17222641,-0.9147377,0.28955778,-0.23704694,-0.7366695,-0.5615462,-0.1618751,-3.380588,0.2537594,-0.020239519,-0.283528,-0.04663224,-0.14858767,0.350235,-0.54632014,-0.43991286,0.09831705,0.09452021,0.6487926,0.01462461,-0.03556273,-0.20060712,-0.3613247,-0.2382292,0.17540468,0.15759334,0.21852382,-0.12669009,-0.36111528,-0.06903078,-0.24645445,-0.38373536,0.0777805,-0.43555743,-0.62589926,-0.16123705,-0.5069151,-0.27669868,0.6498291,-0.3834883,0.0737636,-0.30801657,-0.019252146,-0.0476799,0.3192875,0.22816344,0.17678685,0.058724426,-0.040335394,-0.031580128,-0.32755485,0.26014823,0.122069165,0.15703064,0.41243747,-0.241531,0.31245264,0.5186102,0.473738,-0.017403984,0.856807,0.462115,-0.11866434,0.3508773,-0.32317728,-0.37063166,-0.6335533,-0.28331006,-0.016943391,-0.40248236,-0.45569313,-0.12672347,-0.23375884,-0.7871647,0.56425744,-0.069349386,0.18355693,-0.18656246,0.36658576,0.45399052,-0.16695681,-0.1281498,-0.11859117,-0.10647693,-0.3414603,-0.3016216,-0.710984,-0.4809658,0.004567965,0.99882203,-0.14952059,0.16105199,-0.0038503646,0.010727604,0.005578065,0.16540441,0.059182417,0.13103758,0.39524564,-0.09858761,-0.6094162,0.52160674,-0.014862915,-0.210951,-0.615884,0.0904781,0.68549925,-0.6532345,0.35814926,0.32396486,0.03221885,-0.10914184,-0.5186737,-0.09893311,-0.15643229,-0.2903989,0.36098856,0.15848778,-0.70709676,0.43834648,0.326867,-0.06489787,-0.69594246,0.41335824,-0.09082743,-0.2984223,0.08546508,0.33617082,0.04010666,0.13437177,-0.09045787,0.24634436,-0.3808187,0.28686634,0.3107072,-0.08122079,0.50376934,-0.23320647,-0.15725191,-0.6813475,-0.018338358,-0.519225,-0.2853617,0.097941525,0.17913832,-0.0415516,0.35416985,-0.03739055,0.5224773,-0.22317982,0.15936178,-0.045899443,-0.37200516,0.3009635,0.451762,0.39859912,-0.21896076,0.6751862,0.12822393,-0.12640935,-0.46585166,0.0576279,0.54345876,-0.0034350078,0.332901,-0.1169788,-0.2676206,0.3461065,0.6917357,0.23164259,0.5090379,-0.050575472,-0.012030824,0.30408138,0.08678306,0.07986673,0.011964065,-0.34713528,-0.044429254,-0.17370084,0.007167812,0.3896801,0.13204971,0.35079032,-0.09993304,-0.17357302,0.09882196,0.2307888,-0.01742334,-1.0066311,0.29301637,0.15040436,0.7606051,0.522234,0.05978655,0.040310595,0.55670816,-0.28508195,0.11596243,0.27885067,0.014765684,-0.49296457,0.6678163,-0.7615942,0.42043433,-0.084781185,-0.05024492,-0.016054261,-0.20110632,0.43771157,0.8691046,-0.11954939,0.027749471,-0.107801594,-0.19442698,0.1809129,-0.375341,0.17084293,-0.4496265,-0.28090188,0.6509941,0.47210297,0.39844096,-0.16201058,0.0059764427,0.07078223,-0.09785371,0.28106123,0.020086015,0.18911843,-0.06193797,-0.4891305,-0.22974135,0.498983,0.0005080859,0.06411428,0.06429502,-0.20825809,0.22920719,0.07555238,-0.038754035,0.029857853,-0.47710323,0.09117357,-0.45121643,-0.3338272,0.53133446,-0.31067377,0.26249102,0.102191545,0.08932131,-0.22913978,0.1831698,0.3165588,0.5607781,0.20850913,-0.15487507,-0.21291202,0.31475565,0.13979611,-0.23446044,-0.22412801,-0.18592699,0.04568858,-0.77043027,0.32239476,-0.21595459,-0.35011417,0.25269127,-0.13798553,0.0328324,0.4378482,0.041652255,-0.063623406,0.09362214,-0.22033216,-0.17202047,-0.0765935,-0.14803538,0.32064417,0.0459963,-0.08203794,-0.055430364,0.019994205,-0.091485016,0.3712122,-0.007907578,0.28469747,0.29614592,0.039541133,-0.415908,-0.06910234,0.034356005,0.3551419,0.06116717,0.1074605,-0.092802115,-0.39233997,-0.29355735,0.05577445,-0.17662868,0.33233315,0.053268544,-0.28717214,0.8034899,0.036377057,1.093768,0.05679721,-0.31096166,0.08298907,0.42836374,-0.097456194,-0.049269654,-0.32155052,1.0026821,0.4776229,-0.10603037,-0.16021754,-0.30885032,-0.01943006,0.22057393,-0.17770334,-0.27548236,-0.023185236,-0.761963,-0.2573922,0.20860034,0.2649979,0.099571474,0.0008533875,0.03231249,0.2861625,0.08693342,0.36547843,-0.4237084,-0.041308444,0.34991786,0.18965694,-0.03243132,0.046607964,-0.27778044,0.36710218,-0.6321786,0.01272641,-0.217658,0.08904905,-0.18278423,-0.35784185,0.18963096,0.092151746,0.30071816,-0.2087845,-0.41260117,-0.2641651,0.47520238,0.057420537,0.050246514,0.5395533,-0.24919994,0.15947656,-0.05703367,0.31877652,1.1318599,-0.12892571,-0.0813045,0.34442836,-0.3486254,-0.5570252,0.32082474,-0.44424364,0.21441337,-0.056202713,-0.37077323,-0.30745703,0.20200929,0.2663443,-0.048860736,0.10852325,-0.3434522,-0.07684005,0.1512335,-0.33388776,-0.21318905,-0.28469548,0.22343321,0.5887238,-0.3044287,-0.33400232,-0.029178618,0.22739644,-0.32293513,-0.53349847,-0.04959051,-0.111223124,0.29606083,0.09413422,-0.408918,0.1016867,0.08880569,-0.4004571,-0.13479067,0.2328782,-0.3447086,0.057078432,-0.37293705,0.07376787,0.81725335,-0.09197722,0.07960473,-0.52012926,-0.49018842,-0.7254082,-0.3247945,0.58375794,0.15998732,0.066846676,-0.4860592,0.106400646,-0.16711618,0.10260216,0.0043105492,-0.29812476,0.40877002,0.252035,0.40090057,-0.08472548,-0.7013746,0.14990835,0.066073306,0.010788933,-0.48629397,0.51005775,-0.08191409,0.63419133,0.11994402,0.052109934,0.27426043,-0.59945625,-0.09322729,-0.15632442,-0.13789517,-0.6341201,-0.0038097014 -387,0.567862,-0.25396055,-0.53441715,-0.12439224,-0.07181092,-0.011439901,-0.217751,0.5307791,0.07386535,-0.52788734,-0.19862755,-0.10269634,-0.0789495,0.28326982,-0.13422732,-0.55527335,-0.12462803,0.14746459,-0.5179745,0.7818162,-0.3335291,0.30394486,0.054895338,0.45869648,0.3148944,0.26491964,0.451621,-0.055572692,0.075814575,-0.22012265,-0.035674673,0.010373705,-0.7272621,0.2786334,-0.26941454,-0.52476776,-0.042064156,-0.28800216,-0.34330308,-0.96664834,0.3451099,-0.8069172,0.5143491,-0.015810696,-0.4261465,0.3708603,0.048092816,0.24160506,-0.2736429,-0.0039763036,0.031500414,-0.24825884,0.099781126,-0.16331567,0.03082138,-0.40102822,-0.6792623,-0.033513587,-0.5638571,-0.07871958,-0.30484992,0.24606358,-0.3556617,-0.12464591,-0.1833333,0.6320674,-0.5165025,-0.07639968,0.23513362,-0.15592255,0.39244783,-0.75976,-0.076841965,-0.18353227,0.18608302,0.05914502,-0.059855204,0.3076772,-0.031877078,0.44375637,0.30635157,-0.27709845,-0.35804746,-0.18920901,-0.012696647,0.22905779,0.0446413,-0.38366216,-0.04502328,-0.23463687,0.46670565,0.30222338,0.15306315,-0.08174174,-0.08221764,-0.20417927,-0.17322744,0.42170128,0.57891166,-0.27387503,-0.35582113,0.38149935,0.6967128,0.112205476,-0.20521834,0.25404263,-0.097604714,-0.4086412,-0.17646171,0.3039902,-0.20432582,0.48771837,-0.1689309,0.29804358,0.57788974,-0.28507522,0.07292707,-0.026285913,0.061927676,-0.11972009,-0.16371931,-0.314731,0.36826813,-0.5488255,0.122094594,-0.32489812,0.8085171,0.12558377,-0.6140567,0.28066745,-0.53474134,0.08815102,0.07605862,0.7952508,0.8113706,0.48453152,0.34894082,0.7899858,-0.27439135,-0.017363291,-0.20333108,-0.14960033,0.04686161,-0.16247235,-0.024350945,-0.45736223,0.025301086,0.008750393,0.0483995,-0.0893544,0.39227217,-0.5239264,-0.10302198,0.2775669,0.61977357,-0.30943304,0.1191833,0.96061486,1.1087623,1.0966927,0.034437545,1.1882861,0.22855824,-0.32077497,0.100486025,-0.20838727,-0.64653003,0.27056172,0.3168072,0.33635813,0.4347483,0.09513427,-0.04358381,0.3458267,-0.5691363,-0.13418666,-0.23774692,0.102157995,-0.13669322,0.08045046,-0.4924023,-0.19876017,0.036657218,0.05907643,0.19973947,0.2927454,-0.31741655,0.43254662,0.017357584,1.2208277,-0.18583485,0.12109123,0.19490734,0.6329359,0.14530298,-0.24202672,-0.00641843,0.3612376,0.37828833,0.025027605,-0.6353179,0.18207206,-0.31842783,-0.5185822,-0.19417025,-0.40138853,0.00550859,0.09065231,-0.31716025,-0.088648684,-0.14072372,-0.65980744,0.16835657,-2.7442877,-0.15207036,-0.0649327,0.30181307,-0.4067631,-0.18127234,-0.093856566,-0.66475606,0.4170909,0.4387593,0.46836802,-0.57002,0.33143583,0.55808616,-0.57434314,0.032527838,-0.5910352,0.016542636,-0.15894485,0.50668275,-0.11526919,-0.124552324,-0.031200595,0.21994926,0.54749745,0.21694528,0.09782557,0.29483587,0.24528776,-0.094682164,0.36685848,0.112921275,0.34747702,-0.5768621,-0.12656492,0.43937975,-0.4297825,0.21418728,-0.25524837,0.15857737,0.53203803,-0.7146235,-0.8263315,-0.7362982,-0.17898251,1.2175885,-0.24904665,-0.648306,0.21009311,-0.26721746,-0.09196861,-0.0889969,0.65263945,-0.22354521,0.014053798,-0.62285686,-0.087165125,-0.14328705,0.41211003,0.09846204,0.08802899,-0.56815714,0.8552993,-0.12098964,0.54501176,0.1350094,0.31930256,-0.26981845,-0.588012,0.08500531,0.9003573,0.5515531,0.05120554,-0.24511279,-0.19374865,-0.19139482,-0.003911275,0.17503493,0.6321733,0.88009864,-0.06302698,0.074222706,0.3694965,-0.016575424,0.10574473,-0.15528542,-0.20152195,-0.29480773,0.10994522,0.51096886,0.4275322,0.09894541,0.29607195,-0.048512872,0.32498705,-0.18784958,-0.45804194,0.67207664,0.913309,-0.24119934,-0.14053239,0.6549766,0.5893944,-0.25698882,0.63737774,-0.7770987,-0.31029308,0.50882876,-0.18706831,-0.5265205,0.09855694,-0.2630499,0.15188766,-0.84204257,0.06011154,-0.5222857,-0.6181011,-0.6386124,-0.05449278,-3.0901003,0.13934885,-0.2985594,-0.16429576,-0.26301384,-0.38280588,0.23795739,-0.65172064,-0.54812753,0.10130124,0.1785035,0.7747935,-0.124186054,0.086382195,-0.35257453,-0.40813303,-0.47951317,0.26079848,0.18525402,0.26145533,-0.13746163,-0.34317133,-0.01124459,-0.016573237,-0.39970493,-0.087262556,-0.4561847,-0.40572527,-0.35605958,-0.60787004,-0.23761691,0.6162783,-0.17798185,0.020343473,-0.16686463,-0.0029821475,0.042430427,0.3099349,0.23783118,0.24483909,0.13059038,-0.05858194,-0.02795401,-0.39122552,0.09049826,0.017636573,0.30989453,0.28289524,-0.42627066,0.210418,0.46608633,0.55236524,-0.1072021,0.88764626,0.52083445,-0.005780041,0.25556973,-0.105293676,-0.46397826,-0.78269136,-0.21407369,-0.0939232,-0.3742334,-0.47378775,-0.06437301,-0.3117278,-1.0381259,0.6754304,-0.042584535,0.54256594,0.05991539,0.40078798,0.52226,-0.14171967,0.018761082,0.025526332,-0.18221952,-0.49868977,-0.14574371,-0.7321368,-0.5302206,0.059473965,0.89976823,-0.42530838,-0.032920096,0.15225331,-0.16214181,0.04698262,0.123122945,0.09116379,0.08021371,0.4403098,0.13654065,-0.55161256,0.6387043,0.14395514,-0.11423516,-0.47002873,0.28052613,0.5251949,-0.66988724,0.34388858,0.26909497,-0.058419444,-0.35756096,-0.5206616,-0.039415672,-0.09458875,-0.1469447,0.42091635,0.25995824,-0.6988717,0.40696925,-0.09076106,-0.05835137,-0.896719,0.40760425,-0.08289298,-0.46599996,-0.017909361,0.41942495,-0.0042998423,-0.019139597,-0.23709062,0.15028074,-0.3208609,0.21330465,0.22406827,-0.24399532,0.63156855,-0.2950113,-0.1350324,-0.6849402,0.11874343,-0.75463635,-0.1573565,0.42132467,0.16307563,-0.18208522,0.28499275,0.05141149,0.51099163,-0.052937314,0.23646978,-0.078350656,-0.2864371,0.5234687,0.61291045,0.43069723,-0.4251594,0.755895,0.08568445,-0.27903545,-0.20672546,0.068919465,0.28740957,-0.045824762,0.52821976,-0.15297836,-0.19202128,0.22043116,0.5508495,0.40254274,0.4770309,0.04497872,-0.0077371597,0.41256282,0.04134951,0.3436939,-0.17762573,-0.5696913,-0.030300658,-0.38973168,0.04863275,0.51838195,0.118287526,0.5108901,-0.058264103,-0.16291459,0.15410918,0.105337754,-0.38504058,-1.0185566,0.27486178,0.15209354,0.8329786,0.67985624,0.010768409,-0.013198472,0.7187258,-0.1669449,0.12612893,0.32165343,0.14220574,-0.54474956,0.72463006,-0.6729158,0.50910443,-0.015534699,-0.15774338,0.08463057,0.0048362473,0.47974333,0.8025691,-0.17839248,-0.006972077,-0.09640352,-0.26171806,0.25302047,-0.35694218,0.16333422,-0.4898929,-0.33750227,0.64102626,0.4475465,0.3447728,-0.103724465,-0.15460865,-0.0849645,-0.057780817,0.348043,0.024066377,0.05523592,-0.13079235,-0.41222617,-0.33355537,0.42111266,-0.08027108,0.16658956,0.06117381,-0.35604748,0.120084055,0.01944972,-0.06432709,-0.0020429676,-0.7062196,0.15004538,-0.13372889,-0.22867253,0.7245258,-0.33088952,0.37939996,0.17852321,-0.043538693,-0.23806919,-0.040135954,0.21184942,0.5441795,0.07710715,-0.1596537,-0.37533453,0.19996616,0.21225603,-0.3631515,-0.034367718,-0.20318402,-0.023697166,-0.5625821,0.31179267,-0.13295524,-0.29633734,0.12623766,-0.19874977,-0.12522727,0.6016561,0.036386915,-0.03534319,-0.013105794,-0.12341685,-0.33753034,-0.30852926,-0.26011017,0.13401723,-0.010453563,-0.00092676055,-0.13229625,0.13632432,0.12817836,0.49557012,0.13419114,0.26162127,0.23827362,-0.16931102,-0.500692,-0.012215046,0.26960224,0.31211483,0.17300616,0.03820566,-0.14067104,-0.5850879,-0.39455953,0.1076366,-0.06616345,0.25067225,0.12968916,-0.021268936,0.903733,0.14628391,1.0415864,-0.0344461,-0.44725344,0.22488025,0.62215483,-0.04324244,-0.20779863,-0.34585145,1.1069381,0.59121335,-0.15142864,-0.15327464,-0.117193766,-0.042193055,0.24322022,-0.23862305,-0.15659834,-0.010058861,-0.6317459,-0.28276402,0.15678604,0.31954825,0.109636106,-0.14990924,-0.03726045,0.3474903,0.093520634,0.43785155,-0.36045694,-0.19591907,0.4434954,-0.112488866,-0.009223076,0.12574533,-0.3089221,0.43484277,-0.7898688,0.023222772,-0.34350544,0.12702686,-0.16046335,-0.48212168,0.2626684,0.09228909,0.4090854,-0.32077327,-0.49556255,-0.2502964,0.4262644,0.22762868,0.24576876,0.591862,-0.29338053,0.20160708,-0.057656605,0.38808277,1.1175872,-0.25253397,-0.055520717,0.19541039,-0.49411488,-0.8343987,0.17816773,-0.37128955,0.22008851,-0.13723914,-0.37853834,-0.39353615,0.16996962,0.2318201,-0.06762995,0.29230043,-0.7400068,-0.31904903,0.05854493,-0.31961825,-0.18035449,-0.4134897,0.13142052,0.6267703,-0.34184054,-0.46743518,0.08523892,0.25541213,-0.20214151,-0.7491987,-0.11422115,-0.31885302,0.18849204,-0.014466185,-0.3987875,0.014521058,0.33411708,-0.5402268,0.098374195,0.05064459,-0.3063565,-0.06083195,-0.43607002,0.19443229,0.86957425,-0.062246844,0.041850787,-0.38731676,-0.4542146,-0.9372009,-0.43762514,0.5170116,0.17052454,0.14393707,-0.6411397,0.21730272,-0.4403124,0.2584639,-0.06471935,-0.43787426,0.33607572,0.28689402,0.47332948,-0.04486996,-0.7991537,0.35768113,0.10713823,-0.072104625,-0.54421043,0.4637378,-0.1564557,0.8594493,0.11872563,0.063666925,0.18572506,-0.6306164,0.028909473,-0.22579503,-0.2046189,-0.6495448,0.07659893 -388,0.35654536,-0.06485928,-0.79066414,-0.24005254,-0.03192277,0.0068301996,-0.10762326,0.40373623,0.28261402,-0.37000865,-0.014143586,0.25455797,-0.1955057,0.19364204,-0.15205055,-0.5562205,-0.016255863,0.020319592,-0.4939443,0.2800484,-0.4542789,0.19197692,-0.36648914,0.15560462,0.017358892,0.31025225,0.119111136,0.017184956,-0.11447981,0.036240306,0.24912484,0.25591853,-0.29986826,0.13620727,-0.1037495,-0.27013585,-0.14120045,-0.2264608,-0.4321452,-0.6362518,0.33164713,-0.6514152,0.4792793,-0.020872306,-0.2757368,0.41850278,0.118571214,0.13133475,-0.27897078,-0.07325692,0.24924894,-0.15776567,-0.1610412,-0.15685193,-0.2795786,-0.30310652,-0.5519689,-0.10811882,-0.5590034,-0.11889874,-0.14736047,0.15456559,-0.3641589,0.021264255,-0.3611232,0.5286515,-0.52890193,-0.18603091,0.20758416,-0.033546567,0.08469191,-0.66073775,-0.080345966,-0.07069322,0.0053219595,0.006303382,-0.11822862,0.2542449,0.06175859,0.42445576,-0.0658857,-0.14743844,-0.32705295,-0.20575644,0.2379951,0.27464485,-0.25436392,-0.22150977,-0.15809578,-0.0992023,0.27739677,-0.00032283267,-0.073437005,-0.2689109,0.0021933685,0.23600957,-0.1237737,0.41284835,0.57362497,-0.2313039,-0.09698777,0.40263417,0.68277234,0.06828005,-0.25281325,0.12334437,-0.13373287,-0.3074704,-0.24350366,0.07326892,-0.21698043,0.389946,-0.10114867,0.19645172,0.6331216,-0.17953545,-0.0547205,0.11456875,0.14737056,0.22032684,-0.25472218,-0.3639085,0.19824977,-0.3800978,0.17522596,-0.13151953,0.6420747,-0.050192676,-0.7853769,0.44689572,-0.33340162,0.008360745,-0.07828962,0.72743404,0.724342,0.431129,0.14297317,0.78837204,-0.51190484,0.087683804,0.055788763,-0.22137363,-0.05614723,-0.04734243,-0.15706037,-0.54396343,-0.102177285,0.0173433,-0.10789063,0.1667208,0.3555483,-0.37892446,-0.15335235,0.079881154,0.6630243,-0.37116736,-0.040196847,0.48892447,1.1252505,0.89578474,0.091344036,0.8080483,0.16569962,-0.19317141,0.023408405,-0.30829743,-0.78289723,0.30707577,0.26409185,0.029495923,0.28373823,0.10249522,0.028751219,0.39541048,-0.55840796,0.047986843,-0.16418737,0.36501116,0.029731035,-0.11241283,-0.3502126,-0.055093877,0.17421891,0.08670616,0.12204352,0.29702628,-0.32999766,0.14272544,0.1584669,1.104968,-0.14065188,0.018727712,0.2779332,0.526079,0.07536084,-0.25737748,-0.05876417,0.31405878,0.4600363,-0.14820108,-0.5984357,0.25010398,-0.1697914,-0.4514805,-0.25263315,-0.40436277,-0.05760888,-0.10615087,-0.2828437,-0.1094142,-0.07346424,-0.5927362,0.37556204,-2.5495882,-0.065560766,-0.20330374,0.32412216,-0.015666785,-0.15871711,-0.26850036,-0.4874224,0.25980428,0.32757363,0.3060938,-0.47986826,0.56782085,0.5371757,-0.5121965,0.082488336,-0.4576398,-0.019639753,-0.112848714,0.34911206,0.19624542,-0.022977514,0.070907906,0.3534614,0.49961954,-0.110035524,0.054447673,0.33860728,0.3043499,-0.10199913,0.32615843,0.04778398,0.51398563,-0.38720262,-0.14649798,0.32305688,-0.555034,0.051208623,-0.18415686,0.14977542,0.33715513,-0.3658067,-0.86866117,-0.46163902,-0.0111804325,1.4679056,-0.26569945,-0.42675573,0.3609171,-0.29484412,-0.3907291,-0.12677905,0.3404576,-0.1645243,-0.14066973,-0.80297256,0.069822975,-0.12075526,0.24799529,-0.06703396,0.07513857,-0.3319198,0.53234416,-0.15169829,0.7392737,0.2726874,0.2205589,-0.3407033,-0.3214214,0.025396006,0.78103215,0.42646745,0.03336924,-0.07396185,-0.06781671,-0.13317028,-0.10815818,0.18553811,0.49485716,0.7595943,0.05311857,0.03751523,0.23452981,-0.1087372,-0.019904347,-0.35685176,-0.248958,-0.14027418,0.21820864,0.507345,0.42715168,-0.14374685,0.16946366,-0.008207824,0.21191563,-0.27652475,-0.44482958,0.35206816,0.781415,-0.0970429,-0.3789228,0.5133398,0.4667641,-0.39188626,0.3829382,-0.7040061,-0.25142255,0.4665607,-0.22412848,-0.42552254,0.0024053256,-0.36402088,0.2791403,-0.71120346,0.372495,-0.3437961,-0.8526997,-0.4849084,-0.34093362,-2.44799,0.14377281,-0.25948018,-0.11369816,-0.021155033,-0.066524476,0.14746903,-0.51306695,-0.58135605,0.12742938,0.19748738,0.5853819,-0.026007008,-0.007103904,-0.20205253,-0.12755357,-0.16166073,0.25112826,0.047486283,0.28351125,-0.019011267,-0.43620098,0.0001654605,-0.07212099,-0.42626226,-0.1632208,-0.23559631,-0.32344255,-0.049897347,-0.45553645,-0.22602695,0.5349122,-0.27343467,0.0026611488,-0.2563918,0.062988825,0.0029175798,0.33413804,0.08110854,0.22129145,0.032763492,-0.16352002,0.09927165,-0.25924695,0.30856097,-0.06713942,0.4126581,0.5070637,-0.080785625,-0.06669752,0.7055215,0.54295784,0.16621895,0.9111015,0.3760416,-0.21323632,0.3281379,-0.15652773,-0.20450355,-0.5701017,-0.40064317,0.13800049,-0.34577492,-0.40127477,-0.030146532,-0.41304067,-0.9593108,0.31613114,-0.07542172,0.28798333,-0.06984527,0.31909055,0.4322424,0.041221175,0.02605377,-0.023448769,-0.15242004,-0.36391097,-0.27976283,-0.7796369,-0.3704755,-0.0027529956,1.2392342,-0.14605917,-0.057282034,-0.042184167,-0.15761699,0.14412193,0.2426105,0.19960366,0.2904901,0.3081328,-0.11941867,-0.4737256,0.22915031,-0.25384828,-0.078994796,-0.63622224,-0.03900421,0.62941843,-0.5007466,0.45235482,0.40868053,0.07196616,-0.19325706,-0.6938908,-0.09207222,-0.008836524,-0.17786957,0.52860236,0.14204028,-0.6888047,0.60311955,0.27335185,-0.1880634,-0.6194602,0.48955613,-0.13240685,-0.0846638,0.09592676,0.42170507,-0.15714502,-0.089614496,-0.27294922,0.21142563,-0.22538862,0.3072034,0.36206248,-0.08620939,0.32256016,-0.2415149,-0.14577015,-0.6630056,-0.14727716,-0.6762722,-0.15085353,0.1317394,-0.07887956,0.2425084,0.15969951,-0.19003071,0.5043309,-0.2950819,0.14619112,-0.121946484,-0.4580991,0.47812334,0.4965921,0.3117882,-0.17400303,0.596494,0.047615774,-0.13190705,-0.13583554,0.11019419,0.5366415,0.0665616,0.53561693,0.14648075,-0.09409812,0.33941734,0.878957,0.28762487,0.32622772,0.10828933,-0.27122015,0.17096946,0.014724095,0.16084167,-0.14947525,-0.3228435,-0.13709687,-0.04483781,0.29570764,0.25331157,0.10191258,0.45014015,-0.18336889,-0.18811907,0.08541216,0.22792539,-0.09795781,-1.0987631,0.35469052,0.10604923,0.6184019,0.32893407,0.10727375,-0.0851017,0.37910905,-0.17109908,0.18316112,0.2669753,0.058287546,-0.53206575,0.42776924,-0.5147961,0.53069764,-0.058573026,0.0401901,0.15296602,0.15668508,0.37268314,0.78733754,0.028784977,0.03353297,0.07850961,-0.2825406,0.31422532,-0.3203345,0.12479255,-0.46056375,-0.34777364,0.67376465,0.40335366,0.5122153,-0.08406736,-0.08435019,0.14564626,-0.13927175,0.24227594,-0.11649641,0.150374,-0.16146322,-0.6235944,-0.24068548,0.25221747,0.13491756,-0.02954427,0.04334496,-0.07812178,0.22145271,0.062190574,0.09872319,-0.04860317,-0.326369,0.026984401,-0.12259365,-0.5366033,0.2502333,-0.3315408,0.31421328,0.21532795,-0.018319169,-0.508191,0.12340274,0.16181454,0.5487149,-0.10958148,-0.17751502,-0.3838929,0.15160613,0.20899653,-0.17660576,0.057595145,-0.23486954,0.27356234,-0.7285912,0.49513647,-0.25675926,-0.30629954,0.22505818,-0.361095,0.024470834,0.57377994,-0.27502435,-0.27977422,0.0025709548,-0.119748406,-0.26519403,-0.25420746,-0.21142486,0.19841416,-0.26804808,-0.03826856,-0.14278106,-0.13112207,0.012443272,0.20842642,0.08164889,0.14476416,0.53176665,0.05202539,-0.5366374,-0.06769434,0.07844628,0.5171248,0.07114525,-0.09065304,-0.43364003,-0.50066423,-0.22621065,0.2490708,-0.114937395,0.36075222,0.16026513,-0.26980987,0.5405004,-0.12522195,0.95858425,0.14771791,-0.19011027,-0.05209761,0.5576604,0.16702352,-0.0684076,-0.09943358,0.6680057,0.62241113,-0.17385949,-0.21977429,-0.42765045,-0.02009002,0.08914534,-0.121755034,-0.2342353,0.020872243,-0.8085484,-0.16552404,0.29929227,0.1772839,0.0755871,-0.139615,0.13667414,0.16356733,0.0626228,0.22235754,-0.56598735,0.064098924,0.32492265,-0.002779166,0.029371109,0.01683733,-0.603898,0.18066235,-0.6205184,-0.034859236,0.096936375,0.010495835,-0.13067235,-0.22273202,0.19401623,0.09066629,0.21075375,-0.2921655,-0.22352795,-0.16365926,0.40496242,0.056588393,0.15793559,0.542236,-0.159045,0.16228113,0.17757194,0.46663603,1.0053177,0.017312765,0.067812555,0.26812407,-0.3529562,-0.74936575,0.11388652,-0.36649868,0.1663513,-0.12202971,-0.26124477,-0.5581609,0.35150903,0.19351088,-0.22598241,0.2679566,-0.54378206,-0.26210248,0.013831405,-0.31420806,-0.1348815,-0.32532135,-0.019504141,0.5656443,-0.37555832,-0.15419106,-0.07334766,0.41081354,-0.19176833,-0.5071817,0.096911795,-0.21753031,0.43097144,-0.0022945127,-0.30351028,-0.093182966,-0.05202907,-0.36096635,0.33194435,0.3507403,-0.25656736,0.021001266,-0.1750709,0.07549168,0.34599802,-0.061367907,-0.02344757,-0.28406557,-0.41441518,-0.9104944,-0.19912206,0.10724071,0.23974515,-0.19285719,-0.5783851,0.11655159,-0.08121009,0.14093709,-0.080751576,-0.41726094,0.5203275,0.020072717,0.28028256,-0.12439458,-0.7827395,-0.02287558,0.130272,-0.22086248,-0.25806746,0.58485,-0.1707608,0.7590119,-0.021068934,0.06773131,0.057690404,-0.52755105,0.33161354,-0.29700717,-0.22912888,-0.4721168,-0.041097745 -389,0.24972583,0.009260978,-0.46927705,-0.17386529,-0.1880504,0.25551525,-0.1622887,0.32666883,0.043789625,-0.53634244,-0.25139612,-0.10563852,0.042494573,0.2366461,-0.2671716,-0.37469706,-0.006079729,0.15460813,-0.21173719,0.1388418,-0.602171,0.26843378,0.062133227,0.16372587,-0.13662192,0.09914475,0.36661434,-0.18695624,-0.13850798,-0.24189329,0.043829735,0.11089178,-0.5284137,0.14983916,-0.088741064,-0.34511822,0.09218432,-0.424679,-0.41384977,-0.7162193,0.44950482,-1.0144477,0.5915294,0.0531074,-0.17753117,0.3955664,0.12879886,0.12466921,-0.22660403,0.045745216,0.1667709,-0.250892,-0.230376,-0.023672745,-0.14857998,-0.2278004,-0.6599302,0.05814147,-0.427373,-0.11076685,-0.39952633,0.19693093,-0.5078042,0.13462915,-0.25260854,0.39767233,-0.43034583,-0.10922599,0.1710175,-0.14203237,0.09903019,-0.5534991,-0.07518792,-0.0113468915,0.1375357,-0.26397353,-0.044086788,0.25115168,0.20108159,0.49780226,-0.07466247,-0.23933725,-0.23132144,-0.034774583,0.21021377,0.43602404,-0.20203972,-0.5325912,0.012106165,0.016090747,0.1395611,0.2282052,-0.0001823519,-0.18356107,-0.009295021,0.28355178,-0.28537658,0.28991336,0.71096575,-0.25302514,-0.20505273,0.45572728,0.6282919,-0.12346704,0.05883029,0.07626389,-0.021162977,-0.47765896,-0.21981624,0.10883479,-0.27041915,0.4304569,-0.17062528,0.32223272,0.6010174,-0.39974502,0.1697732,-0.035378456,0.041900326,-0.1431115,-0.23762687,-0.35605988,0.32681134,-0.4513769,0.20236461,-0.1960289,0.9913308,-0.007971071,-0.7393488,0.43699953,-0.31296164,0.14692661,-0.15498972,0.75074154,0.47645062,0.40207312,0.29978707,0.79173106,-0.6428369,-0.06785239,-0.120693386,-0.4243681,-0.013902477,-0.08512349,-0.07362021,-0.27212957,-0.00019637177,0.19456713,-0.07538716,-0.06958356,0.32808998,-0.37949437,-0.046295796,0.11365009,0.6815089,-0.38500962,-0.07528491,0.67961264,1.0795543,0.78635967,0.1088557,1.257453,0.28102836,-0.14728229,-0.02072319,-0.11450783,-0.92636096,0.32328865,0.4232758,-0.015534137,0.19877066,0.1925553,-0.059255455,0.36864495,-0.6010356,-0.08485869,-0.2960514,0.38372585,0.03320734,-0.1303484,-0.41518405,-0.08236909,0.15460719,-0.0053166235,0.25368172,0.3772771,-0.25447327,0.13380113,0.14986417,1.3674074,-0.10051419,0.14102785,0.20406125,0.38850433,0.17158154,0.057858247,-0.12099862,0.17782459,0.4367996,0.08013768,-0.588524,0.0009388583,-0.16254091,-0.60687625,-0.20543303,-0.27469984,0.05877183,-0.20289032,-0.26446465,-0.091562934,-0.11326216,-0.4947719,0.4608881,-2.6429691,-0.13708152,-0.051040474,0.29060268,-0.2365541,-0.3587238,-0.093895376,-0.53903544,0.5242032,0.3936319,0.39637044,-0.64129215,0.39297202,0.4188733,-0.355321,-0.10006989,-0.7977122,-0.037309147,-0.18339911,0.23943445,0.25874284,-0.2603374,-0.050041646,0.01060866,0.42707655,-0.04497239,0.086919464,0.30189565,0.39932773,0.1642951,0.38186383,-0.013847649,0.5281585,-0.41558614,-0.1875625,0.350386,-0.42113143,0.20300113,-0.26225427,0.19116847,0.28404397,-0.5083083,-0.7678973,-0.68661296,-0.38489166,1.3703252,-0.22691151,-0.4113121,0.3560283,-0.12055551,-0.21893491,-0.06803995,0.33698598,-0.40289047,-0.060366232,-0.7741273,0.13428286,-0.18183279,0.26426694,-0.12473241,0.20060763,-0.5139306,0.6031857,-0.36382374,0.4988703,0.40798324,0.22331078,-0.34526005,-0.31467444,0.0070165866,1.0321833,0.47098234,0.07083223,-0.27757698,-0.121110566,-0.08338334,-0.1786668,0.039295934,0.49318913,0.79130226,0.07098652,0.03685399,0.28322887,-0.042379763,0.016777474,-0.16604002,-0.38157532,-0.09151476,-0.037798412,0.5825413,0.3299151,-0.34691736,0.3435475,-0.15410313,0.25346512,-0.31752926,-0.26923043,0.43400598,0.68394405,-0.19055541,-0.20338297,0.6075736,0.40973678,-0.40530068,0.40871662,-0.683912,-0.28949562,0.33723265,-0.18178198,-0.44992965,0.0034742611,-0.1409651,0.14539467,-0.77014446,0.43605596,-0.22148024,-0.6528605,-0.5480183,-0.19730197,-3.2305715,0.12384749,-0.30253306,-0.050937057,-0.1552364,-0.13684285,0.19286063,-0.39749345,-0.54388946,0.11894226,0.08675862,0.60226864,0.09568183,0.18322597,-0.12290001,0.0174005,-0.38263625,0.031004881,0.13144681,0.23169242,0.024713393,-0.37985986,0.110409655,-0.22879136,-0.48303202,0.10680834,-0.46447867,-0.3326524,-0.17097072,-0.38776582,-0.38688797,0.63889754,-0.32554156,-0.030242186,-0.29882997,0.06030373,-0.147077,0.49417305,0.014257188,0.15146779,-0.082580395,-0.21977328,0.0460079,-0.26381612,0.5342944,-0.08606971,0.31485656,0.59778106,-0.21760552,-0.059980284,0.47799364,0.5773544,0.14480567,0.8904427,0.24993351,-0.11276617,0.23801105,-0.21140747,-0.21287163,-0.4740102,-0.33607274,0.17284894,-0.50039643,-0.34265503,-0.06366537,-0.42649135,-0.8278977,0.52510977,-0.064542346,0.07770443,-0.03770419,0.3741584,0.39572588,-0.05194477,-0.092962466,-0.10691129,-0.0937054,-0.52836096,-0.35048527,-0.70477647,-0.33789763,-0.23587091,1.0396538,-0.105388455,-0.017344456,-0.14681487,-0.040077608,0.04781481,-0.1212619,0.035312433,0.19799738,0.37999138,-0.14829288,-0.6675292,0.45826247,-0.17686315,-0.21530953,-0.6606337,0.051378634,0.58238584,-0.6213869,0.43987712,0.46767694,0.21134017,-0.12658371,-0.67522246,-0.21974976,-0.036191158,-0.14730671,0.44571576,0.12591802,-0.92045206,0.65812224,0.48379755,-0.26647833,-0.7007155,0.3860948,0.111058235,-0.08813642,0.14998014,0.34469908,-0.024219492,-0.015514136,-0.116486855,0.17377302,-0.42946172,0.37193355,0.09710191,-0.022811545,0.74372333,-0.32993904,-0.27980494,-0.6082264,-0.2124286,-0.5923719,-0.055802107,-0.048959557,-0.011473281,0.039775398,0.20754956,-0.045382563,0.5252519,-0.4468761,0.03835088,0.04572221,-0.29803663,0.37531805,0.35356978,0.3471186,-0.41748816,0.6706608,-0.01857852,-0.08092958,-0.21441242,0.0153961945,0.53311026,0.13875407,0.32110003,-0.01339263,-0.054475274,0.41490522,0.9918557,0.2162088,0.43407467,0.20095253,-0.1735505,0.3615895,0.12809072,0.17091383,0.035873923,-0.44490868,0.0002369242,-0.15860398,0.09472239,0.4975625,0.14881425,0.49187174,-0.17950006,-0.1731555,-0.01960143,0.1643617,-0.14340138,-0.99881214,0.35676524,0.0045212507,0.71675843,0.2807106,-0.12757386,0.097715676,0.5379416,-0.16199212,0.22969241,0.25968918,0.024446966,-0.46620324,0.57266814,-0.63460267,0.35417816,-0.111553654,0.02924,-0.014318168,0.084274255,0.38621017,0.69093513,-0.071338095,0.056114364,-0.07027115,-0.25851274,0.35836634,-0.36358184,0.23727322,-0.40090078,-0.1967143,0.6936321,0.40520695,0.33731762,-0.070552506,-0.16732778,0.17356706,-0.0635246,0.15252228,0.10260345,0.10717927,-0.08770699,-0.65124947,-0.40074188,0.5199564,0.48044667,0.11997967,-0.07494099,-0.2287534,0.25857976,-0.2809357,-0.12132495,0.011702897,-0.60316485,0.073321305,-0.07553144,-0.38804308,0.17926848,-0.27383122,0.31425613,0.23567687,0.008023717,-0.4480984,-0.049307752,0.32408124,0.66295415,-0.01030457,-0.22136316,-0.41282913,0.084856056,0.22673652,-0.27613658,-0.05256633,-0.24681275,-0.033090625,-0.5890643,0.36654973,-0.21199839,-0.23758377,0.3834907,-0.21644023,-0.12081587,0.67036563,-0.19275835,-0.071830645,-0.022061387,-0.20956774,-0.1745577,-0.15747023,-0.24407096,0.18339656,0.17745864,-0.023155246,-0.10416232,-0.17649506,-0.2961976,0.43952295,0.08763043,0.07763725,0.30837122,0.113445945,-0.38358614,-0.22616203,-0.0884741,0.6522341,-0.03231758,-0.122997455,-0.3364084,-0.36858624,-0.034167625,0.17807904,-0.16877365,0.17078936,0.10692399,-0.42446575,0.64304954,0.009037571,0.9386496,0.13872398,-0.27476665,-0.19679113,0.5973557,0.09507489,0.015851405,-0.24434659,0.92448467,0.50490296,-0.09660512,-0.23345968,-0.45901707,0.14197801,0.25569525,-0.14229849,-0.33567017,-0.059985988,-0.6189229,-0.2091989,0.3175306,0.3110806,-0.006129334,0.016942654,0.107387766,0.22916345,0.11036033,0.53851116,-0.4908097,0.0061922497,0.41479522,0.1338305,0.10306623,0.092057206,-0.41928148,0.30169544,-0.62602806,0.07385801,-0.16191085,0.075396456,-0.1557237,-0.1751214,0.23630778,0.1034497,0.44048765,-0.22581737,-0.35420698,0.050703663,0.39138004,0.23649357,0.1275695,0.65395135,-0.12569477,0.091379754,0.1415756,0.46532282,1.0447301,-0.070214316,0.166765,0.2798328,-0.27388975,-0.75360626,0.4922955,-0.16429773,0.08510762,-0.045047212,-0.22755544,-0.37311158,0.29333398,0.31963953,-0.2042394,0.19958791,-0.4197309,-0.22550228,0.3571531,-0.32037774,-0.19082847,-0.24730404,0.115871385,0.7091943,-0.21037804,-0.10043383,0.03605668,0.44838986,-0.28896877,-0.56596476,-0.19225201,-0.31091523,0.26350722,-0.01003121,-0.28787738,0.029408647,0.004549269,-0.37535685,0.1481214,0.13533548,-0.31029576,0.06800079,-0.20256093,0.049937453,0.5616519,-0.12372679,0.062360145,-0.72391975,-0.35575828,-0.9806493,-0.015199627,0.46657944,0.12968174,0.049715232,-0.5308417,-0.06209124,0.041940708,-0.08896939,-0.062172156,-0.56119215,0.32684332,0.14959009,0.29360119,-0.013950015,-0.50941133,-0.13310155,-0.06999878,-0.18385532,-0.2918671,0.6760487,0.037233222,0.7757661,0.056862105,0.06291078,0.16684613,-0.48802,0.16022095,-0.18429239,-0.32675603,-0.651347,0.11531223 -390,0.433946,-0.119195625,-0.4921053,-0.057085373,-0.32679302,-0.21004061,-0.25874928,0.39942473,0.25271913,-0.072294146,0.19180638,-0.16967326,-0.14392978,0.57413906,-0.075377285,-1.0452224,0.00925089,0.103055835,-0.7576379,0.7653721,-0.44988206,0.25377938,-0.21745118,0.35857907,0.1912582,0.18713579,0.12555224,-0.15366274,0.20709096,-0.24053007,0.09357567,-0.030176379,-0.902038,0.22370343,-0.15995489,-0.2647091,0.17215453,-0.37856743,-0.6833966,-0.89267385,0.37621567,-0.5622221,0.4997559,0.16731669,-0.23786345,0.20961815,0.16393624,0.54839265,-0.26287538,0.010684892,0.31528145,-0.13928334,0.052737843,-0.1932937,-0.20671806,-0.6070333,-0.6451071,-0.16885568,-0.7184805,-0.30279472,-0.36071053,0.2855275,-0.49577674,-0.21624942,-0.110368244,0.452314,-0.52557707,0.21713771,0.1941208,-0.070922025,0.24605586,-0.6257328,-0.090437554,-0.1194922,0.031776436,0.053167637,-0.07814886,0.5513385,0.12551461,0.32051992,-0.06711128,-0.25119376,-0.24547528,-0.20348567,0.11348407,0.5599975,-0.14300384,-0.36286798,-0.16098265,0.1199969,0.068185315,0.17260857,-0.105202936,-0.51846004,-0.071122,-0.08236251,-0.17328459,0.6128205,0.5050677,-0.24768977,-0.40477782,0.3855867,0.43371192,0.5170757,-0.08185948,0.014996897,0.06291323,-0.475247,-0.10466959,0.16856529,-0.18536209,0.37209624,0.031896625,0.28321078,0.87333757,-0.21142846,-0.06907103,-0.14163472,0.19829582,0.16753612,-0.36417034,-0.23117803,0.1971578,-0.54820216,0.33265063,-0.10950744,0.99666846,0.052214216,-0.631554,0.31464356,-0.7173107,0.13421844,-0.017112168,0.5642379,0.6528172,0.34539545,0.30503342,0.74136925,-0.39595938,0.22930117,-0.026164683,-0.34240797,0.02780665,-0.17752336,0.22520533,-0.46179894,-0.20594558,-0.19959946,-0.00023564967,-0.07263473,0.31310186,-0.64671916,-0.19105512,0.15195945,1.0574435,-0.23141213,0.16346906,0.41525257,1.0327722,1.2500771,-0.075203344,1.2148736,0.3966045,-0.23517774,0.34339702,-0.2954826,-0.8425585,0.2353756,0.29924423,-0.16103727,0.32866934,0.07858991,-0.026094258,0.4342516,-0.4503458,0.07600356,-0.18179804,0.47561428,0.10438023,-0.18700486,-0.37731352,-0.20950828,-0.09916958,-0.01414968,-0.05573753,0.3538108,-0.43627885,0.0333232,-0.14446624,1.602618,-0.014989307,0.14084662,0.19421731,0.67247695,0.27010342,-0.02999581,-0.08518116,0.48684627,0.30978587,0.19283009,-0.78859746,0.12328731,-0.48525962,-0.25638297,-0.1885703,-0.30773515,-0.08112109,0.033751562,-0.40886652,-0.1450725,-0.16821441,-0.016947847,0.49942634,-2.5462215,-0.33322647,-0.16173464,0.30889314,-0.36140898,-0.15981284,-0.13593741,-0.4734646,0.49267948,0.24424754,0.5173137,-0.50798285,0.37674028,0.6132655,-0.6033043,-0.03431248,-0.5655591,-0.15660848,0.014168152,0.5868425,-0.0675838,-0.009472284,-0.028113311,0.23458098,0.5847048,0.09069078,0.131238,0.37657824,0.5866262,-0.10396168,0.53459835,-0.15507044,0.35909402,-0.37075785,-0.16251203,0.25457448,-0.39510718,0.46768942,-0.2734508,-0.002792716,0.59044015,-0.40028742,-1.044492,-0.32510307,-0.15625133,1.0058799,-0.32821512,-0.47607544,0.37022343,-0.057881773,0.06785241,-0.095485836,0.4640442,-0.12463972,0.14325204,-0.6168889,0.14983173,-0.2078442,0.35387343,0.0632675,0.0072237225,-0.24813908,0.6631407,-0.11320818,0.22190224,0.26538932,0.2391013,-0.38475198,-0.46928623,0.06107149,0.65082544,0.33010656,0.12353026,-0.24995016,-0.19580694,-0.21835676,-0.27360877,0.079907574,0.68670374,0.79509205,-0.23092085,0.17280546,0.36160916,-0.20047039,0.011090717,-0.2788061,-0.45191047,-0.02930299,0.14057396,0.48260844,0.8521168,-0.02878467,0.60168976,0.034132734,0.15699123,-0.2179514,-0.3732687,0.4107973,1.0522645,-0.20986448,-0.16978163,0.47438014,0.42218924,-0.4084421,0.5595425,-0.6606073,-0.3244026,0.6894112,-0.24418063,-0.46380377,0.086548686,-0.40393874,-0.25820896,-0.6364632,0.5425495,-0.45183823,-0.47162005,-0.53118515,-0.2514501,-2.8833337,0.21088682,-0.48067695,-0.07528681,-0.16874336,0.19556826,0.07823956,-0.6522561,-0.42586794,0.1666991,0.14372958,0.72662026,-0.17242077,0.21358271,-0.255137,-0.3109087,-0.46545088,0.21133451,0.033229675,0.26351136,0.045736313,-0.44714224,0.08159008,0.029891046,-0.36635953,0.059231922,-0.5593243,-0.3552895,-0.1413158,-0.6942333,-0.10655882,0.8109365,-0.3464081,0.02094577,-0.25606373,-0.010353581,0.0030396446,0.29391164,0.31809524,0.23423082,-0.00047278404,-0.057766918,-0.28562537,-0.34099105,0.2431686,0.015986634,0.44702914,0.2036498,0.042301048,0.0036019303,0.6151151,0.5641879,-0.004794262,0.9155134,0.3959472,-0.30760917,0.32367888,-0.30999807,-0.103888705,-0.54856676,-0.484752,-0.060069397,-0.30169562,-0.5360235,-0.11677668,-0.2786499,-0.6438472,0.5817513,0.011906168,0.35883555,-0.010759478,-0.04965302,0.3431856,-0.056036018,-0.13203627,-0.025390197,-0.13224429,-0.32481328,-0.3475078,-0.65017325,-0.4198224,0.523822,1.084174,-0.3940666,-0.206625,0.036423065,-0.2888516,-0.17846125,0.061475705,-0.0928055,0.2756456,0.28629336,0.26840815,-0.7316416,0.38487184,-0.032870747,0.06668586,-0.7793736,0.12731677,0.83358175,-0.6761976,0.63180757,0.13839386,0.15844855,-0.175946,-0.70063734,-0.2874486,0.21483727,-0.14838718,0.18300147,-0.020842364,-0.7167685,0.31387192,0.21115264,-0.6603302,-0.7981552,0.5579897,-0.08868072,-0.40957212,-0.018481864,0.43221417,0.32345474,0.011419047,-0.12291145,0.5495224,-0.33790606,0.2337638,-0.028326284,-0.22484417,0.34938872,-0.13870165,-0.2237277,-0.6838041,0.068889596,-0.34937224,-0.5753405,0.37893382,-0.013533755,-0.16228977,0.32865992,0.110095,0.32878783,-0.022845106,0.11742881,-0.110471636,-0.33720663,0.57616496,0.3844875,0.5931673,-0.5001981,0.7282579,0.10123153,-0.1387472,0.31917775,0.22696634,0.39603177,-0.06063156,0.6270829,-0.037107155,-0.031949017,0.14383943,0.93548197,0.19747171,0.56762314,0.0928378,-0.13913965,0.14556818,0.11491914,0.0055717095,0.040163502,-0.51361305,0.09219634,-0.15835091,0.10356229,0.6885668,0.14827342,0.25163934,-0.08904541,-0.4317695,0.11556984,0.27271846,-0.034993242,-1.3461627,0.3599541,0.20574325,0.7722303,0.44458216,0.17895229,0.07593587,0.7848613,0.06668921,0.023166437,0.3100708,0.08334212,-0.48205835,0.65756834,-0.7303093,0.54393446,-0.1852894,0.0708071,0.11844299,0.33250463,0.45739233,0.6383477,-0.30782703,-0.15294704,-0.15098943,-0.6053091,0.02676666,-0.2680511,0.5116648,-0.51184946,-0.61788106,0.42674103,0.7571234,0.058559474,-0.09848046,0.06664393,-0.05906938,-0.18761374,0.10373402,0.025202584,-0.29094225,0.19985951,-0.72765726,-0.012620238,0.52948385,-0.23749326,0.0773035,-0.066654444,0.12987748,0.32844165,-0.37259862,0.09116921,0.07340419,-0.80309397,0.14671355,-0.27642143,-0.3731435,0.29964554,-0.24823256,0.35390428,0.116194695,-0.008307883,-0.35257104,0.48454902,0.04016542,0.88372785,-0.27998415,-0.29120293,-0.4233391,0.087461494,0.09753496,-0.15517558,0.09445607,-0.411469,-0.1217723,-0.6555323,0.3159492,-0.25106916,-0.3009611,-0.17753276,-0.2633665,-0.13541101,0.6978851,-0.059389427,-0.14033462,-0.2766539,-0.5358835,-0.27842295,-0.13282599,0.019225864,0.29731205,0.20657654,-0.16441809,-0.30439532,-0.23771177,-0.14655682,0.2834663,-0.15155637,0.3695384,0.1574278,0.5020333,-0.17412828,-0.09998827,0.1715853,0.5867535,0.13135894,0.089952715,-0.1417024,-0.34659413,-0.49728444,0.40964186,-0.2813028,0.30240613,0.11629564,-0.41037214,0.95427614,0.21481696,1.2682018,0.03428265,-0.19558357,0.25017154,0.6221133,0.01893266,-0.08736627,-0.48382375,1.0193394,0.7104939,-0.05247076,-0.18191361,-0.21133782,-0.29694343,0.26546848,-0.39513782,-0.16246194,0.035978425,-0.5067677,-0.12506622,0.22795461,0.24550194,0.0895624,-0.20244938,-0.23209785,0.27802998,0.21774307,0.47288162,-0.5168911,-0.082257554,0.18440899,0.34592316,0.19484347,0.20707391,-0.3287905,0.3698614,-0.60452634,0.31621236,-0.22442287,0.22279787,-0.29151106,-0.18873411,0.24094233,0.03520466,0.38753927,-0.37632474,-0.21183725,-0.095449686,0.48130023,0.3045509,0.21369362,0.76905924,-0.36365092,0.0662675,-0.09452522,0.6278683,0.9389277,-0.5037739,-0.22855468,0.41516545,-0.4613967,-0.8720189,0.3570486,-0.52139604,0.03492565,-0.18491082,-0.42744473,-0.47527835,0.21938166,-0.059006274,-0.07941408,-0.063298255,-0.79441947,-0.061249994,0.34676802,-0.12732935,-0.2849867,-0.27446175,0.23652549,0.8729201,-0.06905465,-0.40977955,0.14425196,0.17125657,-0.16841511,-0.64368623,-0.015729029,-0.38690272,0.26450327,0.097926766,-0.23354338,-0.046277966,0.17535801,-0.6221634,0.048520323,0.19398232,-0.37413666,-0.1424203,-0.07293914,0.02666132,0.8476415,-0.49195388,-0.017685706,-0.6602297,-0.45087186,-0.82209307,-0.2930535,0.65497565,0.22593746,0.056935344,-0.6093692,-0.052654527,-0.06672546,-0.02489932,-0.10018455,-0.5704545,0.21380472,0.059312306,0.40646917,-0.3156452,-1.1776726,0.12236318,0.30056712,-0.2725799,-0.8752701,0.48439324,-0.34139106,0.76117796,0.07625151,0.029893762,0.11829307,-0.2575802,0.10488805,-0.356507,-0.25665382,-0.71765155,0.2451589 -391,0.41069046,-0.2983465,-0.6712728,-0.12728402,-0.47849113,0.048126824,-0.3705594,0.15552884,0.14266498,-0.2705845,-0.37095064,-0.13840741,0.08932359,0.4617262,-0.14640404,-0.58417386,-0.1696139,0.19156949,-0.7411411,0.47320682,-0.5627225,0.38468403,0.16513428,0.4699052,0.014000609,0.40968162,0.5097348,-0.089939155,-0.3986316,-0.07112125,-0.24471384,0.18454641,-0.8353862,0.0019839085,-0.31260428,-0.539544,0.105700344,-0.43500343,-0.100219734,-0.7573119,0.22568002,-1.1185567,0.6611611,-0.26609975,-0.14433034,0.05163192,0.21716864,0.3712894,-0.4688155,0.16581303,0.10929703,-0.42186993,-0.2616152,-0.3347786,-0.11962773,-0.52285177,-0.49712104,-0.09020118,-0.7788977,-0.22370134,-0.21074182,0.20569748,-0.35600126,0.04906168,-0.11856394,0.21959808,-0.4889829,-0.15080915,0.20386234,-0.24554898,0.26924866,-0.49483952,-0.032801993,-0.1810049,0.48542646,-0.20299679,-0.17149568,0.37120718,0.42599732,0.41748178,0.24327454,-0.22197214,-0.3338229,-0.12015091,0.16592862,0.4391751,-0.089254506,-0.5414213,-0.2728081,-0.04746525,0.46599978,0.38385564,0.1272181,-0.12655231,0.11576311,0.015095747,-0.20233178,0.4825725,0.47773436,-0.33977625,-0.3558896,0.30357653,0.6107887,0.18613076,-0.18626347,-0.042577047,0.02503046,-0.59995645,-0.07924236,0.1794145,-0.17890662,0.68561435,-0.13809755,0.1581436,0.77032727,-0.41843966,0.18169022,-0.17662928,-0.0729374,-0.45496604,-0.039006747,-0.19379099,0.33737066,-0.4910444,-0.035912752,-0.27000996,0.6516477,0.18648292,-0.65751183,0.42898133,-0.550297,0.10400609,-0.10886361,0.67042315,0.64316624,0.4873299,0.44994646,0.7985378,-0.22953965,0.25623462,-0.07992203,-0.47606814,0.08343788,-0.41191941,-0.015592296,-0.4759403,0.087358914,-0.21035412,0.047603387,-0.017042445,0.5240878,-0.6157131,-0.033414323,0.14386767,0.5835057,-0.39878848,-0.061021272,0.8783621,0.9920933,0.86971104,0.08118309,1.3478405,0.58766663,-0.2858313,-0.05105488,-0.16975863,-0.6924232,0.2327532,0.54045683,-0.6226533,0.592612,-0.03426447,-0.011451464,0.2372661,-0.35184243,-0.1076752,-0.16788012,0.25920004,0.11211675,-0.03964562,-0.4991047,-0.0433163,0.08779097,-0.14017569,0.2853214,0.27312565,-0.26025644,0.4578153,0.11122361,1.4558812,-0.12300264,0.022904672,0.024823265,0.49963576,0.41025966,0.072953925,-0.021809412,0.50229615,0.41425037,-0.02671989,-0.71480477,0.19266646,-0.3524308,-0.575435,-0.27561596,-0.3788504,-0.028391462,0.08607384,-0.25517103,-0.19079198,-0.010780482,-0.20599383,0.4062265,-2.2843108,-0.3740032,-0.18810728,0.2884683,-0.4239745,-0.18048471,-0.1373606,-0.54463446,0.2524047,0.37199882,0.4914408,-0.71660227,0.46781942,0.5010256,-0.49967325,-0.34102863,-0.72304535,-0.006887858,-0.058031894,0.5088874,-0.0049101617,-0.42722577,-0.033799544,0.08239603,0.76678014,-0.02697091,0.17325526,0.40568668,0.6291677,0.2378033,0.53173524,0.10058172,0.5320621,-0.28570718,-0.29069936,0.47194564,-0.20197898,0.26432323,-0.1414802,0.15039322,0.5974155,-0.4440177,-1.1130615,-0.73848665,-0.31850296,1.1209229,-0.46637475,-0.64561915,0.025345244,0.13136746,-0.1112584,0.14521255,0.46037996,-0.16330245,0.1839638,-0.8352042,0.15056756,-0.01895982,0.35336134,0.15431598,0.14467552,-0.37077668,0.7316086,-0.16603532,0.40362516,0.25947133,0.4979584,-0.21164027,-0.43199056,0.15873119,1.1025065,0.3134735,-0.047410663,-0.17049734,-0.3773867,-0.027808867,-0.17152572,0.012989654,0.41251087,0.7727341,-0.024623066,0.11933982,0.3874081,-0.09289924,0.047369156,-0.24653079,-0.22201236,-0.088586554,0.15732846,0.48985523,0.7389853,-0.19728157,0.7091682,-0.37973258,0.3789315,-0.017236603,-0.6003719,0.90484184,0.93948454,-0.2831581,-0.03777273,0.64180624,0.4046534,-0.59977114,0.66187346,-0.88046134,-0.3804146,0.740763,-0.18640849,-0.34973508,0.16409577,-0.20223445,0.19252007,-0.9419102,0.26942638,-0.21587834,-0.069846615,-0.56718934,-0.21253055,-3.4865294,0.18164952,-0.17510363,-0.15353268,-0.39089757,-0.17866479,0.3477198,-0.8002366,-0.6519219,0.18072268,0.1806074,0.55397874,-0.113472074,0.301523,-0.35472423,-0.22742122,-0.05528019,0.28599903,0.22542527,0.16363981,-0.23113221,-0.56618893,0.13254417,0.0026085377,-0.57014656,0.061011836,-0.5414239,-0.44242924,-0.21975818,-0.54726803,-0.1984489,0.57356924,-0.46895158,-0.03134368,-0.34127557,0.22662173,-0.29387012,0.26939476,0.03788329,0.21763913,0.26217604,-0.08011823,0.26231766,-0.32517087,0.5923649,-0.040221803,0.17930023,0.14330432,-0.18776673,0.12220487,0.48174456,0.69734865,-0.13671158,0.96731085,0.4020019,-0.08812496,0.23679544,-0.3590592,-0.3347853,-0.7976701,-0.47879204,-0.1736869,-0.44193414,-0.55707556,-0.044014737,-0.27599415,-1.0033513,0.8015801,-0.12868246,0.3882159,-0.15505804,0.5963059,0.477342,-0.24392489,0.02178543,-0.055859767,-0.16060609,-0.5791734,-0.33649927,-0.6655906,-0.5404892,0.008731108,0.78523946,-0.23648259,-0.050530277,0.031318847,-0.19715887,0.06175919,0.011323104,0.05500333,0.29035455,0.5029142,0.05688956,-0.80854887,0.4092574,0.026730042,-0.10040217,-0.5366618,0.07618795,0.7329022,-0.7419223,0.45355445,0.51729167,-0.0009886485,0.23595898,-0.51703715,-0.15766786,0.009138052,-0.112368874,0.44042015,0.13536903,-0.80832994,0.6414318,0.30457097,-0.49041465,-0.82454884,0.39014652,0.08153567,-0.10735123,0.054891817,0.38619936,0.26530787,-0.20048769,-0.43291092,0.07151853,-0.51438946,0.1692734,0.2174765,-0.12651326,0.4804285,-0.1202308,-0.40125796,-0.8989673,0.08234106,-0.42962742,-0.24027762,0.37570578,-0.040381625,-0.025926296,0.1394775,0.07800818,0.38198668,-0.5026597,0.04194852,0.05698835,-0.2862593,0.24667928,0.4775756,0.32674125,-0.45001984,0.58878917,0.07533814,-0.2926833,0.099927135,-0.23323679,0.40278503,0.3110946,0.25993186,0.114955515,-0.21743539,0.3051281,0.6786207,0.16717595,0.51810825,0.2137835,-0.2789452,0.41690725,0.11015984,0.3263644,0.011538034,-0.4026777,0.0048575583,0.14728345,0.046382006,0.5636829,0.35858205,0.36779073,-0.0002833238,-0.10374355,0.054351524,0.24870507,-0.09714731,-1.1130421,0.2260548,0.3177668,0.7915102,0.4098048,0.040318254,0.030836545,0.6056048,-0.47505024,-0.0040801396,0.4437469,0.19464876,-0.488372,0.7658454,-0.5182126,0.24751066,-0.25105852,-0.026415791,-0.014584496,0.1645472,0.24325432,1.0511914,-0.16092856,0.11631698,-0.027884759,-0.042787753,0.0029513377,-0.28985485,-0.07292623,-0.28109005,-0.31318066,0.79851127,0.22895196,0.5020441,-0.15582636,-0.12973475,-0.009682564,-0.20636997,0.34228727,0.01830804,0.16742125,0.17576534,-0.5033705,-0.16468917,0.64784825,0.4035694,0.18729165,-0.17374226,-0.5427304,0.17220515,-0.29599598,-0.08392544,0.07238589,-0.78001773,-0.14479853,-0.17541514,-0.57903516,0.49876764,-0.00019768569,0.09633042,0.17774823,-0.11202483,-0.215072,0.068931825,0.20558807,0.863281,0.18827699,-0.22756775,-0.28919366,0.06763068,0.35554594,-0.30982324,0.118575685,-0.25963962,-0.025785863,-0.43782642,0.63599247,-0.28197932,-0.5034014,0.17270637,-0.28294644,-0.07655359,0.51179403,-0.044125676,-0.17884398,0.27824783,-0.029217161,-0.43894598,-0.20413163,-0.38124663,0.122250505,0.19423327,0.0074452804,-0.15915534,-0.10613562,-0.09717265,0.6952193,-0.047510844,0.38170096,0.3639397,0.13807082,-0.24453309,-0.11236724,0.17863491,0.47570884,0.019708138,-0.04949468,-0.43075764,-0.5875818,-0.23464698,0.05593091,-0.1111317,0.009993718,0.1972555,-0.42753536,1.0020036,-0.07422137,1.3379052,-0.02453598,-0.5037553,0.030787386,0.5884109,-0.09379486,0.04020818,-0.40949428,1.0155221,0.5481223,-0.10655438,-0.04694328,-0.50054955,-0.3322027,0.36473462,-0.45177624,-0.10351718,-0.102565534,-0.543252,-0.60186976,0.26368892,0.32471386,-0.08633513,-0.12936454,0.26256222,0.13754436,0.22412753,0.5601896,-0.69695824,-0.44164512,0.33131278,0.29245013,-0.21242894,0.146538,-0.3378944,0.43894285,-0.679161,0.009186685,-0.67752266,0.10612023,-0.04238128,-0.3239946,0.16993812,0.16724494,0.3424212,-0.2861087,-0.37389034,-0.120696835,0.5574828,-0.025193967,0.1576941,0.5603498,-0.33307633,0.17486909,-0.00763436,0.5817429,1.4460899,-0.5259682,0.08978763,0.30461568,-0.37082958,-0.5650295,0.5617955,-0.39711645,0.073813766,-0.15414296,-0.5751716,-0.5856882,0.2853402,0.035836395,0.13525142,0.024943627,-0.54574245,-0.09913568,0.3197606,-0.35497755,-0.09906257,-0.115731746,0.46456212,0.82388204,-0.32469523,-0.22913283,0.0843211,0.45629832,-0.19819102,-0.47410634,-0.17202164,-0.18323734,0.4333706,0.17421454,-0.28634164,0.05779729,0.23510474,-0.51249146,-0.041641887,0.33279455,-0.3588285,0.09880968,-0.22297002,0.19763455,0.8228366,-0.21526036,-0.107007705,-0.74362767,-0.43928173,-1.1072233,-0.37863982,0.20926043,0.1721227,0.07604094,-0.56877273,0.35806194,-0.13769643,-0.27701494,0.09711201,-0.7033351,0.42352405,0.22056419,0.7373283,-0.29401308,-0.89296025,0.06760617,0.1844653,-0.11000181,-0.6454149,0.6668341,-0.13643366,1.0230904,0.0684988,-0.08621139,0.034627113,-0.5809299,0.065617874,-0.3716284,-0.23108222,-0.915902,0.040227372 -392,0.6095721,-0.16081503,-0.51293385,-0.047129236,-0.44097424,-0.18420373,-0.30782384,0.175539,0.4167295,-0.31796044,-0.26854184,-0.13977475,0.11073545,0.19579047,-0.14949283,-0.8346628,0.02600309,0.26567692,-0.69844234,0.6740548,-0.5076211,0.2466483,0.12093811,0.33141276,-0.14594758,0.26875144,0.36670515,-0.14783114,0.26987278,-0.12887304,0.20059404,0.06615205,-0.9945732,0.21209332,-0.28034317,-0.21806438,0.029587714,-0.28139806,-0.3111854,-0.8919439,0.08648141,-0.8587706,0.59568495,0.23399527,-0.35609612,-0.12288572,0.12036768,0.3002457,-0.3802822,0.0075387578,0.27586004,-0.15426967,-0.19322263,-0.33374086,0.1072254,-0.25651813,-0.52492356,-0.051479295,-0.45167235,-0.00245269,-0.44710144,0.08147447,-0.35442162,-0.12315276,-0.22279018,0.5288714,-0.34761617,-0.024877576,0.44077036,-0.10168607,0.53276634,-0.47794625,0.028254403,-0.25767252,0.30640036,0.11893756,-0.31723803,0.3555994,0.15739219,0.47264847,0.41830048,-0.46257716,-0.07481411,0.05076977,0.24097095,0.1748856,-0.19976571,-0.25095242,-0.2634048,-0.032980517,0.15381779,0.1967838,0.10541963,-0.44461858,0.10257515,-0.18277285,-0.065613754,0.57763153,0.5908212,-0.13237597,-0.21617362,-0.05781011,0.6787605,0.17368643,-0.17176533,0.0691512,-0.0051347855,-0.6641347,-0.3000722,0.08728046,-0.034209315,0.5763213,-0.25068247,-0.08375032,0.7208235,-0.10866328,-0.30035508,0.18408665,-0.09639568,0.10052097,-0.31910726,-0.17702629,0.36520594,-0.7676524,0.021352759,-0.37505788,0.63202924,0.18507141,-0.8029854,0.3005591,-0.56838727,0.1950117,0.06752326,0.7547569,0.8575119,0.4773394,0.362621,0.8012263,-0.36265448,0.25924754,0.16361928,-0.4706615,0.16834712,-0.3806404,0.00570609,-0.34537122,-0.07489718,-0.39352992,-0.09819676,0.004407681,0.23461154,-0.48466963,-0.18434931,0.24972439,0.71282005,-0.22816207,-0.042890217,0.59963036,1.2161947,1.0361682,0.19181888,1.2818598,0.27960122,-0.25992778,0.10137982,-0.045080263,-0.8039717,0.20729978,0.32008642,0.20397271,0.32620743,-0.08569436,-0.07759778,0.35607097,-0.6957858,-0.002029474,-0.0872212,0.5279553,-0.035504498,-0.1777683,-0.4421318,-0.20392106,-0.056633238,0.11110253,-0.011969568,0.22058694,-0.046536062,0.27602407,0.08338351,0.84562886,-0.21457274,-0.004609163,0.029455395,0.47666407,0.35506418,-0.18973795,-0.14514713,0.29242772,0.37565723,0.07341273,-0.536986,0.14671895,-0.2065714,-0.19736038,-0.082832485,-0.2268665,0.19359769,0.079753324,-0.1735613,-0.2668154,-0.058016405,-0.400291,0.3905338,-2.37512,-0.16572846,0.045572773,0.33761138,-0.26060757,-0.052590705,-0.18217471,-0.6523746,0.35066503,0.26239303,0.55655843,-0.65502644,0.42426094,0.6754194,-0.7031776,-0.20396706,-0.85690236,-0.15534392,-0.14947143,0.49142715,0.16950494,0.011241532,-0.2027594,0.29415736,0.6666496,0.25515363,0.105027206,0.41053003,0.31020027,-0.07024601,0.5111275,0.05449952,0.48959643,-0.35820502,-0.19824144,0.4450557,-0.06805063,0.19186847,-0.3903425,-0.030453948,0.5575771,-0.5674161,-0.81465137,-0.57441276,-0.4139311,1.2301198,-0.30986217,-0.4837775,0.20954584,-0.2270059,0.052781902,0.24428342,0.5459136,-0.06429359,0.36718258,-0.82743555,0.080285326,0.07017897,0.23016483,0.11834002,-0.17183542,-0.45751017,0.77337044,-0.081681736,0.41856596,0.4644647,0.23757927,-0.00840105,-0.60996735,0.21127734,0.9056292,0.30931315,0.07142562,-0.39867622,-0.077757075,-0.17678073,-0.031970646,-0.14000186,0.68264264,0.8001338,-0.29947174,0.12402064,0.3123686,0.035503063,0.14818528,-0.13900489,-0.3178434,-0.13563678,-0.1835448,0.5339554,1.0875857,-0.18101858,0.14084028,-0.21530584,0.37266976,0.03426919,-0.5370327,0.76203567,0.89989007,-0.0821403,-0.0026664366,0.52298295,0.5343354,-0.39844117,0.6671524,-0.5008716,-0.33236387,0.5456284,0.059007328,-0.4315384,0.15122162,-0.44437632,0.2760894,-0.81704646,0.5391432,-0.5088266,-0.38126788,-0.30919933,-0.04474173,-3.2633743,0.452941,-0.36485514,0.027373012,-0.36523777,0.00047628582,0.34732214,-0.47316155,-0.5183036,0.22155564,0.11145231,0.52506375,-0.1673398,0.03093594,-0.16690221,-0.3755654,-0.22924218,0.22942962,0.34755927,0.17085648,-0.18429129,-0.47618595,-0.2643992,-0.21246828,-0.49405634,0.05561447,-0.6049223,-0.41059777,-0.15123726,-0.6057147,-0.26244396,0.49979395,-0.26831204,-0.039064176,-0.28002182,0.11175153,-0.21076533,0.21008733,-0.1586704,0.36886916,0.085360594,-0.008208468,-0.039314702,-0.18477869,0.49049234,0.08777897,0.11221536,0.0649467,-0.10269281,0.15892474,0.56383103,0.85371757,-0.2703609,1.0625755,0.46955696,-0.08606677,0.26820862,-0.275555,-0.4879781,-0.8157135,-0.22206964,-0.117940575,-0.36514527,-0.37174007,0.3263343,-0.35562497,-0.7635237,0.7717101,-0.05165728,0.33240384,0.11882894,0.09369766,0.32721645,-0.24023016,-0.050521307,-0.15687521,-0.21994798,-0.7144132,-0.10912721,-0.6641521,-0.468582,-0.07941385,0.8572969,-0.39822623,0.17393667,-0.042910106,-0.2247627,0.2931684,0.2299864,-0.0018160527,0.19594957,0.6444878,0.3021564,-0.6257608,0.29468158,0.081097916,-0.1281942,-0.43444303,0.39218712,0.68823344,-0.91033804,0.7387232,0.36098534,-0.008377179,0.03668453,-0.67287546,-0.43812525,0.0061639226,-0.24124774,0.72587615,0.16295502,-0.88804317,0.42428318,0.28248757,-0.67589355,-0.7314927,0.4612244,-0.18651265,-0.32628155,-0.110215984,0.32982907,-0.27117947,-0.0542484,-0.347311,0.234609,-0.24899226,0.32876155,0.09194294,-0.27748606,0.085960716,-0.029824475,-0.16838461,-0.894008,0.04972324,-0.644278,-0.21100436,0.30583805,-0.014315044,-0.35474014,0.1216406,0.3230434,0.4454282,-0.22099529,0.23264915,-0.088902086,-0.5033692,0.44712904,0.56945,0.2545477,-0.42187178,0.6502972,0.1396535,-0.28392297,-0.18069424,0.1050167,0.29481974,-0.19557868,0.39430237,-0.15574107,0.14119802,0.19812514,0.6535793,0.032576382,0.47858965,0.12482175,0.102311045,0.5806917,0.11561907,0.42739394,-0.07837364,-0.43298993,0.08915219,-0.33002913,0.09075847,0.4264487,0.31468484,0.22977525,0.059953365,-0.274045,-0.13756727,0.27347094,0.06476418,-1.5649135,0.35274106,0.18393706,0.6146482,0.6809684,0.13878381,-0.20835516,0.73085916,-0.08352626,0.13377245,0.4945094,0.0014473704,-0.38138294,0.6142677,-0.615676,0.18788542,-0.2249859,0.005462344,0.34838116,0.052187547,0.3326766,0.87656295,-0.20645544,0.060507588,-0.11968643,0.029322777,0.11601297,-0.4792606,0.1281228,-0.35754436,-0.51213235,0.6628294,0.44040123,0.43525028,-0.34025162,0.108734354,0.07348679,-0.12491175,0.3692076,-0.072178066,-0.2636848,0.15532048,-0.5549502,0.015122189,0.43614006,0.04864203,-0.014579296,-0.20723908,-0.19027098,0.086506516,-0.2985465,-0.116601095,-0.12282079,-0.9705681,-0.16169311,-0.37570783,-0.19219583,0.53273004,-0.36522982,0.035886925,0.17549944,0.027353566,-0.14736761,0.26710454,0.05328538,0.61530936,0.23753045,-0.15213038,-0.23466791,0.18547426,0.1599641,-0.3207579,0.18843731,-0.3212219,0.2092929,-0.5190125,0.56605804,-0.1356635,-0.319064,0.1573551,-0.21969077,-0.21109512,0.59899575,-0.08313031,-0.27705786,0.19164151,-0.15453185,-0.23888944,-0.11969411,-0.13978869,0.3219512,0.23551805,-0.07727841,-0.031219216,-0.15222576,-0.12844694,0.491121,0.15989326,0.4401348,0.14359659,0.0792387,-0.27250627,0.13687834,0.16772975,0.52297455,0.19997364,-0.019363271,-0.19068374,-0.3148461,-0.35604045,-0.020853732,-0.12169187,0.10984163,0.040739637,-0.088943355,0.84301686,0.3324706,1.1814954,-0.15919663,-0.34037367,0.07087904,0.5368929,-0.16682278,-0.05882007,-0.44774202,0.9533975,0.5373844,-0.4380177,-0.047152855,-0.49332345,-0.094995975,0.0506415,-0.3187655,0.06021943,-0.03236691,-0.5475529,-0.281551,0.117974624,0.38748264,0.004976529,-0.12648454,0.04423241,0.0048152003,0.03810025,0.30466396,-0.6696666,-0.22509758,0.2563346,0.2152289,-0.06508958,0.12717615,-0.25171393,0.28759524,-0.5674437,0.22722787,-0.34015912,-0.08229689,-0.44116205,-0.4272227,0.059753172,-0.04326646,0.34191358,-0.5291622,-0.27267906,-0.20024167,0.36616704,0.22224984,0.23239042,0.70448536,-0.3253555,0.042363666,0.2041192,0.5202106,0.9872074,-0.48528826,-0.094884865,0.2776793,-0.43350476,-0.5235148,0.31780818,-0.35217953,-0.03622422,-0.3669378,-0.5235669,-0.5958834,0.06583,-0.08176982,0.015710043,0.17059146,-0.87146384,-0.091873795,0.3307904,-0.31218106,-0.11791515,-0.27824888,0.36200717,0.5890773,-0.21341246,-0.4667092,0.07257293,-0.01814712,-0.27810603,-0.54926974,-0.30281073,-0.17624232,0.197669,0.30619204,-0.26725823,-0.12208899,0.25095108,-0.5342079,0.0668358,0.17542437,-0.33761105,0.11712568,-0.21424738,-0.062401496,0.96697646,-0.33013612,-0.067034245,-0.3541334,-0.5847137,-0.9874327,-0.38901776,0.41466346,0.08119129,0.09066277,-0.37969416,-0.036541857,-0.1701688,-0.0067924997,0.17606227,-0.45000055,0.29669297,0.079716094,0.629449,-0.19706538,-0.9839868,0.24537222,0.33813694,-0.039854802,-0.6825809,0.5670038,0.09910404,0.794835,0.056052998,0.049047865,-0.016041266,-0.48337942,0.042885907,-0.21323657,0.02795776,-0.57598853,0.051374022 -393,0.24982458,-0.40945628,-0.41597423,-0.044439554,-0.04474616,-0.08159276,-0.18722029,0.61466116,0.12752877,-0.6263152,-0.33669296,-0.17554994,0.1347147,0.51251674,-0.25644943,-0.5393891,-0.1111199,0.1953137,-0.48595396,0.66275793,-0.36876956,0.13430424,0.15718968,0.46368885,0.060284484,-0.0040046684,0.38649294,-0.031968106,0.13534343,-0.11159209,0.08182072,0.21804857,-0.7298891,0.21355684,-0.14815246,-0.6900138,0.06241183,-0.56294674,-0.28530478,-0.76068753,0.26803753,-0.9634099,0.7927095,0.28971723,-0.34694242,0.045450386,-0.05403887,0.45302972,-0.3587514,0.13234241,0.16452666,-0.08639627,-0.057513148,-0.110717595,-0.08904773,-0.35793796,-0.58314383,0.11574483,-0.43780437,-0.014408509,-0.010009806,0.23512666,-0.15310252,0.15160252,-0.3373351,0.42489684,-0.6268112,-0.1974718,0.25363386,-0.09225166,0.5924177,-0.6713915,-0.15802474,-0.24217944,0.15736155,-0.39310265,-0.34757307,0.14455189,0.3862438,0.51489455,0.038823888,-0.29442585,-0.18038552,0.00094045204,0.039655637,0.47325668,-0.14788128,-0.6105147,-0.20691603,-0.02518343,0.3171099,0.1766665,0.114608325,-0.53667784,-0.09977746,-0.15106149,-0.20600252,0.24098007,0.49096295,-0.4181441,-0.199134,0.15755244,0.65978414,0.19758004,-0.06325481,0.09669549,0.076039374,-0.6259432,-0.18758993,0.21242593,-0.37509492,0.7153222,-0.17707582,0.21971522,0.5217867,-0.053994667,0.10944054,-0.054949608,-0.07265537,-0.33802995,-0.33188987,-0.50779057,0.5380602,-0.3425996,0.24259563,-0.42336106,0.6872743,0.11525056,-0.76558965,0.33236733,-0.6495521,0.072047345,-0.1721546,0.6370811,0.61062855,0.34282365,0.35131767,0.63818103,-0.3303138,0.14461814,-0.110669166,-0.26418188,0.055448562,-0.06694856,-0.20663448,-0.5033314,-0.07773133,-0.17308877,-0.14918427,0.07215737,0.52528006,-0.71913594,0.02785707,0.24600725,0.6870115,-0.28850293,0.0036327243,0.7082786,1.2477949,0.9382648,0.12695114,1.5504144,0.23104157,-0.24953596,0.024355173,-0.18960936,-0.6741271,0.21804784,0.603085,0.15166819,0.5244185,0.11765453,0.03773121,0.5155648,-0.62474626,0.14321204,-0.044382017,0.020449324,-0.14582762,-0.18965574,-0.51873046,-0.08041886,-0.0034578096,0.02256535,-0.053864274,0.17229252,-0.27153414,0.33029136,2.2192797e-05,1.5557429,-0.21327937,0.10184193,0.068727344,0.32227707,0.15080081,-0.15613098,0.10885372,0.3068212,0.60699385,-0.008326988,-0.56544024,0.13136421,-0.22947931,-0.61303574,-0.24623097,-0.13569205,0.056266963,0.06660915,-0.54327756,-0.046133686,0.11232375,-0.1822923,0.29954723,-2.4105318,-0.2635149,-0.28936592,0.2869514,-0.2582784,-0.3332085,-0.052223444,-0.32282546,0.57676905,0.49219513,0.4156301,-0.7465835,0.43993017,0.4725882,-0.50133115,0.014507587,-0.75373656,-0.16239347,-0.014264475,0.34449065,0.0039756745,-0.061078016,0.12243318,0.23771472,0.4282889,-0.122524254,0.090317756,0.16251452,0.31401515,0.08283996,0.41749716,-0.0029571753,0.5526115,-0.44975147,-0.25955164,0.37294018,-0.18444264,0.32673785,-0.050355047,0.13746469,0.39874184,-0.5300043,-0.91159177,-0.79397947,-0.68118733,0.84017444,-0.2711312,-0.475938,0.17942633,0.011591415,-0.26274776,-0.053539112,0.7018636,-0.18413782,0.06256551,-1.0663234,-0.12239971,-0.083993524,0.46285948,0.030542716,-0.094031475,-0.77456135,0.60716844,-0.0930034,0.44043866,0.8062399,0.2315671,-0.10760694,-0.63292044,0.026086519,1.0471433,0.37173513,0.16915971,-0.2570975,-0.145732,-0.27041715,0.24697097,0.089630194,0.42170978,0.78006315,-0.08774814,0.022733167,0.24492462,0.17066936,-0.03291543,-0.23074186,-0.39717066,-0.06345882,0.18519153,0.66870433,0.63706285,-0.27326104,0.21593587,-0.3362132,0.6412173,-0.096068166,-0.52044946,0.6200345,0.98796076,-0.04622275,-0.17614628,0.98954344,0.5030597,-0.4016315,0.5669091,-0.86868316,-0.14791799,0.43140173,0.0024790664,-0.38032266,0.2612092,-0.37960768,0.32975116,-1.2017223,0.35388517,-0.37255585,-0.17956126,-0.91866606,-0.18604994,-3.552417,0.2453389,-0.307832,-0.13794418,-0.059163403,-0.26795244,0.37520257,-0.83873844,-0.6518181,0.32846826,0.1786722,0.40485105,-0.1739968,0.13127713,-0.25066045,-0.25847098,0.0041689673,0.32205695,0.3969663,0.1120593,-0.10131901,-0.57968146,0.062509306,-0.104101025,-0.5318318,-0.009020095,-0.774502,-0.3229257,-0.22191077,-0.77653784,-0.25489083,0.5244382,-0.36072063,-0.15043165,-0.101657234,0.20045011,-0.044686932,0.44479287,0.15165293,0.34412405,0.08012411,0.071913995,-0.14877406,-0.1901354,0.17990251,0.19947775,-0.08907626,0.12269833,-0.23701508,0.26926404,0.46712446,0.7014563,-0.19823165,0.7747519,0.81508845,-0.024361035,0.17628737,-0.13012297,-0.25602293,-0.72891706,-0.51848096,-0.1331992,-0.45882866,-0.86779696,0.05615754,-0.23523499,-0.83716327,0.8419113,-0.18285452,-0.030157944,0.20089693,0.24567549,0.43707475,-0.34060225,-0.092731,-0.058876857,-0.1185532,-0.52804035,-0.48581252,-0.65231496,-0.5838774,-0.18817948,1.1819811,-0.09274045,0.25355202,0.24010508,-0.12775593,0.009950727,0.24962316,0.09634098,0.08657827,0.5139296,-0.04420775,-0.7342684,0.40387273,0.2895147,-0.50891596,-0.60586613,0.3223653,0.7345574,-0.76178473,0.66387343,0.24789996,-0.047588304,-0.2721012,-0.63463473,-0.3788283,0.14494397,-0.2696284,0.6633072,0.26643857,-0.56784636,0.42323363,0.35974702,-0.21722406,-0.9026939,0.616043,-0.16269831,-0.2771817,0.075113736,0.41167954,-0.25485685,0.15806833,-0.31450167,0.2602975,-0.38414836,0.09504893,0.32651034,-0.13630913,0.38751897,-0.30623665,0.11123756,-0.9641412,0.30365568,-0.52848023,-0.21392739,0.22089599,-0.007669285,-0.054761246,0.2876592,0.046930343,0.42153922,-0.28612134,0.23075408,-0.016673813,-0.4156387,0.25485682,0.61595124,0.22618848,-0.29770136,0.6075694,-0.09872762,-0.26365513,-0.44489563,-0.04238824,0.52613705,0.06037274,0.3991125,-0.20763223,-0.023113899,0.3788612,0.8509252,0.23109926,0.4083061,0.1928162,0.05849482,0.3013417,0.15720485,0.2269214,0.021116039,-0.5300536,0.06855241,-0.061914742,0.09636489,0.4695859,0.122028776,0.3755919,-0.22690201,-0.4283575,0.16075097,0.26373664,0.29398343,-1.1700615,0.23003815,0.0686682,0.6392718,0.6965122,0.12572691,0.023900678,0.58724636,-0.43039966,-0.012468462,0.39654934,0.07011499,-0.4049135,0.593934,-0.7155282,0.313112,-0.16036175,0.054336082,-0.050819125,-0.28796056,0.4426558,0.9014897,-0.149076,0.13244388,0.02553094,0.054297302,0.066949174,-0.4275445,0.018990526,-0.37842214,-0.46867976,0.7577136,0.5108534,0.47257033,-0.3330727,-0.04847899,0.28086808,-0.11749687,0.2611648,0.02962335,0.14524573,0.14554024,-0.53202385,-0.12642014,0.6960352,-0.04978181,0.038943138,-0.093689166,-0.47598645,0.1858807,-0.14121246,-0.19049962,-0.01049678,-0.9458651,-0.24924423,-0.46598974,-0.22351277,0.612398,-0.27211007,0.14596628,0.007041288,0.067101754,-0.253674,0.44935593,-0.070321575,0.9849084,0.37944195,-0.0143358195,-0.1744558,0.25305775,0.22948901,-0.085728556,0.13180979,-0.37170017,0.024404904,-0.6581485,0.504766,0.15342097,-0.43992576,0.021008397,-0.065050036,-0.055159424,0.4765923,0.022685358,-0.19153555,0.18563293,-0.16911477,-0.23525803,-0.4739059,-0.21044536,0.31765735,0.17393635,0.34480146,-0.07974874,0.027767234,-0.22615556,0.7543605,0.2377839,0.37521413,0.36089802,-0.01716187,-0.47287536,0.023283577,-0.09288671,0.45454368,-0.20923883,-0.27431688,-0.11275568,-0.61470985,-0.22613911,-0.104942046,-0.20858665,0.36787465,-0.087991536,-0.1642946,0.8118474,0.25402853,1.373959,-0.09023342,-0.60310227,-0.016141394,0.5288601,-0.051323224,-0.1605624,-0.45454872,1.0421034,0.5707924,-0.054491464,-0.13167079,-0.13680713,-0.09191513,0.15502451,-0.1394208,-0.073395975,-0.054647427,-0.79225564,-0.18447442,0.12402894,0.49176893,0.04805395,0.022921637,0.32451373,0.21018817,-0.06076966,0.23508193,-0.5490743,0.07362514,0.3300935,0.31060117,-0.02243931,0.07805491,-0.46183667,0.396657,-0.49801013,-0.010377844,-0.55545884,-0.050745994,-0.17455657,-0.28005472,0.15046857,-0.12945858,0.39671576,-0.45141935,-0.19383006,-0.15053457,0.59347826,0.12737413,0.16928507,0.7810159,-0.11706395,0.2481138,-0.05407236,0.52243495,1.290264,-0.6620548,-0.0903612,0.28979996,-0.41076493,-0.47704026,0.36591506,-0.4544654,0.10631446,-0.08209094,-0.33574283,-0.6142506,0.13098122,-0.07980866,-0.22311153,0.0015776964,-0.687555,-0.08514458,0.47921443,-0.3710222,-0.23664005,-0.40868306,0.30544528,0.65949565,-0.2041542,-0.64258796,0.06311899,0.26153925,-0.22967525,-0.6211542,-0.13255395,-0.26600575,0.371554,0.2063021,-0.39409614,0.0021469493,0.10871712,-0.46314645,-0.08523812,0.38173875,-0.3011459,0.11536176,-0.40077734,-0.16224729,1.0812137,-0.1492394,0.019510472,-0.73698425,-0.45280495,-1.1301248,-0.40194893,0.6603554,0.26738974,0.012399043,-0.5652336,0.22713543,-0.19449043,-0.091272146,-0.0019552708,-0.049779475,0.543733,0.15246168,0.8957963,-0.07513456,-0.7955957,0.23267214,0.045851987,-0.03169774,-0.5043845,0.4190618,0.22762226,1.0370563,-0.06694703,5.5852037e-05,0.1741606,-0.6508464,0.13377208,-0.27679026,-0.24487717,-0.80344445,0.049473394 -394,0.37134942,-0.3724428,-0.56502086,-0.047969237,-0.21196242,-0.03431101,-0.18209565,0.63821095,0.22500162,-0.29479423,-0.19985123,-0.051484853,-0.031784445,0.3910662,-0.17067462,-0.51248515,-0.26893464,0.3015379,-0.75360924,0.8022814,-0.36540118,0.1752457,-0.2822965,0.59889346,0.39053866,0.19252296,-0.20257998,0.1438277,-0.16783798,0.10164654,0.07252168,0.4137298,-0.51087683,0.12795506,-0.20302196,-0.43458727,-0.21125953,-0.46532485,-0.5520044,-0.8138554,0.39940917,-0.7495832,0.6858881,-0.11501571,-0.3040087,0.20173597,0.16893901,0.39870787,-0.123939246,-0.13389188,0.1471232,0.035903193,-0.04522403,-0.12256127,-0.29038638,-0.45742905,-0.7073118,0.032201495,-0.5570635,-0.05189644,-0.08545879,0.24645412,-0.30522594,-0.18499054,-0.06449043,0.6660172,-0.40367857,0.11915451,0.12366575,0.14689279,0.08293063,-0.6671112,-0.29802704,-0.15339462,0.38581228,-0.1557911,-0.25466654,0.25016478,0.23656048,0.27320346,-0.16097464,-0.09384155,-0.49230528,0.11843667,0.1005871,0.4565247,-0.08493966,-0.6208474,-0.07827092,0.1576883,0.10854753,0.13363259,0.39248034,-0.17691125,-0.07771634,-0.1174773,0.011712611,0.63635355,0.44462153,-0.22069462,-0.39919427,0.3841652,0.7435727,0.43200827,-0.22577085,-0.02096959,0.050185908,-0.6588702,-0.06251093,0.07657786,-0.1535036,0.5669935,-0.09886796,0.2878509,0.48040316,-0.10244733,-0.27117783,0.19651063,0.16261122,-0.11239711,-0.18486536,-0.38623643,0.3168771,-0.2603233,0.11766649,-0.041594177,0.54148746,0.14510506,-0.7573158,0.24987173,-0.64770275,0.16156682,-0.036623597,0.41747418,0.8976707,0.47434807,0.36678752,0.49803355,-0.017358614,0.1440473,0.07658094,-0.2775305,-0.07062683,-0.34350464,-0.12575297,-0.70948976,-0.11030483,-0.20969881,-0.12627454,0.13120554,0.55709773,-0.5646449,-0.1845762,0.19183202,0.8407459,-0.201136,-0.29414275,0.82298094,1.0292455,1.0864615,0.03387622,1.2266613,0.092536725,-0.2761283,0.20204979,-0.47098717,-0.83726543,0.28780255,0.18696956,-1.0770503,0.5481551,-0.05959777,0.062498618,0.46402514,-0.45020723,0.18876171,-0.19027399,-0.04968816,0.27494228,-0.25198781,-0.5041981,-0.4041431,-0.2826297,-0.001892969,0.19838111,0.27112392,-0.21060419,0.4590292,0.06006977,1.6967968,0.016335854,-0.05204567,0.060162142,0.6170189,0.16055132,-0.33647427,-0.090413034,0.13942854,0.4938196,0.103333734,-0.5172116,0.22189343,-0.18836556,-0.3766582,-0.29869595,-0.37993765,-0.12150881,-0.095015846,-0.3544949,-0.29099262,-0.16055042,-0.24924235,0.42988598,-2.591583,-0.18787408,-0.08738359,0.32414088,-0.18489568,-0.41406783,-0.20186673,-0.49074328,0.27143642,0.15263806,0.44366273,-0.5407794,0.5259152,0.33440757,-0.6860771,0.012714326,-0.6888225,-0.31127268,0.12596875,0.41731003,-0.14239171,0.20589788,0.46102276,0.30100915,0.31841156,-0.16933368,0.10170695,0.36824015,0.50796866,-0.06015703,0.5507211,-0.08898785,0.5151069,-0.26370117,-0.28768635,0.35972342,-0.45619783,0.23692827,-0.014231672,0.09082935,0.65654176,-0.5211748,-1.0647881,-0.45630467,0.17021966,1.1223603,-0.1737928,-0.34307685,0.12100784,-0.6381331,-0.2595192,-0.2540063,0.4680799,-0.23375987,-0.3034854,-0.9098537,-0.15401644,0.0013025211,0.26828998,-0.023955913,-0.07003481,-0.52628887,0.4399083,0.14445375,0.52706265,0.30015618,0.18561234,-0.5546797,-0.66694,0.024821743,0.76528305,0.24970238,0.13524254,-0.35451102,-0.20302628,-0.39491785,0.15648435,0.014023165,0.58256346,0.39641193,-0.13446185,0.29737598,0.27367344,0.015083708,0.20552675,-0.32279024,-0.264522,-0.34453735,0.1150889,0.4539084,0.79246706,-0.30773038,0.7481629,-0.072316445,0.03647719,-0.09162751,-0.42022637,0.58450925,1.451342,-0.23542176,-0.34481704,0.68818146,0.63718706,-0.33444273,0.40056124,-0.27670023,-0.13966799,0.5602787,-0.2824725,-0.30191913,0.22856928,-0.22078432,0.103974484,-1.0490571,0.21637857,-0.26141652,-0.42011228,-0.8286002,0.15538457,-2.7606392,0.101037204,-0.18249865,-0.2381636,-0.13391604,-0.42991844,0.0028330584,-0.6636091,-0.7695282,0.22060525,0.14627953,0.63394624,-0.24488378,0.07848767,-0.16411385,-0.37544417,-0.322333,0.10495859,0.40665463,0.4603095,-0.06563597,-0.6071995,-0.11399367,-0.13510497,-0.426651,0.052305102,-0.73945314,-0.30808637,0.038494382,-0.76353073,-0.31529322,0.6524684,-0.16895278,-0.07950788,-0.30235243,0.07012602,0.23911901,0.28410769,-0.12915057,0.19584769,0.22251685,-0.18570302,0.11996305,-0.015683472,0.20528953,-0.053634554,0.35114214,0.2652302,-0.11556015,0.48971054,0.6579481,0.9272744,-0.102603786,0.9404356,0.77279717,-0.12299124,0.220381,-0.21569736,-0.2450422,-0.59344417,-0.16229574,0.0917764,-0.46616852,-0.60621756,-0.044561192,-0.33356038,-0.8691351,0.67505527,-0.11266627,0.24209772,0.074589886,0.25265697,0.67727643,-0.14961886,0.1509365,-0.23505694,-0.17473173,-0.36970282,-0.32101113,-0.52507144,-0.48017165,0.03918721,1.3040787,-0.38907722,0.16705604,0.2093782,-0.48401883,-0.011457756,0.39555368,-0.0690193,0.20998888,0.45844916,-0.11083472,-0.5682002,0.33202943,-0.118450515,-0.12653334,-0.44809565,0.2046837,0.5719542,-0.54103464,0.55910444,0.2558411,-0.20566404,-0.38720286,-0.5170412,-0.2557337,0.059266165,-0.053966444,0.44155893,0.425733,-0.74090123,0.3703831,0.21039271,-0.4099058,-0.7563433,0.66058135,0.017109461,-0.25956976,-0.09615668,0.3363085,0.16932933,0.05708896,-0.43269196,0.28102353,-0.23220678,0.24449389,0.10753101,-0.14421022,0.025153616,-0.2182147,0.040757086,-0.8723237,0.33599052,-0.514095,-0.41645172,0.42868724,0.11274061,0.33581683,0.16657478,0.13302271,0.17394245,-0.36074305,0.016070588,0.009913783,-0.30632055,0.08782196,0.34434974,0.49574533,-0.594576,0.37592244,0.055755775,-0.22880207,0.08466863,0.16511224,0.44027892,0.094625175,0.49432993,0.29822728,-0.21909547,0.27940848,0.8241939,0.1554499,0.43289927,-0.05190918,-0.14409243,0.15717961,0.025789412,0.3573172,-0.18519217,-0.48082113,0.14556605,-0.17935239,0.33477747,0.6122396,0.14759918,0.29394925,-0.2507127,-0.48488393,-0.013001372,0.2704095,0.11261338,-1.6622219,0.28076234,0.38526925,0.9400986,0.4314367,0.15391785,-0.031742617,0.6330438,-0.18983887,0.08737304,0.502579,0.09118295,-0.5134763,0.5058766,-0.6602488,0.64032304,-0.009254538,0.042948347,0.018188754,0.0077490136,0.4188412,0.73868084,-0.16885817,-0.010491162,0.23571952,-0.29944602,0.021806696,-0.3022841,0.1262726,-0.5410343,-0.15915684,0.69623643,0.6682188,0.29696414,-0.2567081,0.10287851,0.17075415,-0.21540864,0.2212566,0.027183155,0.05720297,-0.12733312,-0.83566314,0.038152903,0.45727775,-0.25732228,0.0072886646,0.05450854,-0.21419275,0.22112496,-0.16810507,-0.025744775,-0.047091275,-0.870049,-0.13963845,-0.2737727,-0.3770943,0.56918406,-0.024082491,0.08590657,0.3851045,0.13398768,-0.46440527,0.46357703,-0.19270968,0.72324616,-0.012849897,-0.045506436,-0.32853606,0.20959993,0.15167885,-0.17258316,0.04927978,-0.39417568,0.059947822,-0.26082075,0.50233823,0.25836328,-0.39947185,-0.27046087,0.06911055,0.092502445,0.48486552,-0.10585416,-0.035214495,-0.21225436,-0.18080258,-0.2583082,-0.2880874,-0.110475264,0.29979226,0.49658194,-0.06059574,-0.19515814,-0.04342394,-0.0077109137,0.6333356,-0.024153432,0.5428226,0.5531194,0.31830204,-0.27477187,-0.14700665,0.3168089,0.64124906,-0.15378167,-0.18260889,-0.5146462,-0.32806465,-0.30650377,0.30414632,-0.1685593,0.42756283,-0.038257178,-0.22129446,0.62403536,0.04002026,1.2740074,-0.017571816,-0.5478998,0.19746776,0.4449592,0.13324134,-0.16203666,-0.45629692,0.92960185,0.29032543,0.061633814,-0.12545927,-0.47823206,-0.03703314,0.0128132,-0.22275595,-0.16047491,-0.022050649,-0.4989191,-0.16078639,0.3110652,0.17076135,0.25849178,-0.21162772,0.32501394,0.3702457,-0.007228171,0.15970428,-0.48569536,-0.15447329,0.16423772,0.28697917,-0.0111449165,0.051608723,-0.5459276,0.25080988,-0.39436194,0.084815465,-0.1922208,0.29427934,-0.2041023,-0.40049395,0.22466677,0.10644215,0.36169994,-0.30798805,-0.23918171,-0.35588264,0.53977376,0.10237795,0.09098903,0.46476987,-0.31381267,0.23046596,-0.0149417715,0.39908543,0.9969797,-0.20787656,-0.19636922,0.2056169,-0.3889514,-0.77512765,0.28343013,-0.33785176,0.34856096,-0.031726483,-0.060141165,-0.8292191,0.2677345,0.0791777,0.2613894,-0.2022792,-0.5770517,-0.21128917,0.3009807,-0.36857677,-0.10253135,-0.4526656,-0.09802959,0.5045066,-0.24118592,-0.44824114,0.0492554,0.1785713,-0.102283925,-0.31387517,-0.105663024,-0.5130497,0.23965414,-0.065914616,-0.4177257,-0.40688112,-0.1428498,-0.45721766,0.3037375,0.31854227,-0.26061568,0.15699394,-0.27154538,-0.24607503,1.2049123,-0.53480595,0.27266863,-0.38711488,-0.63707083,-0.87045336,-0.36529875,0.26689056,0.22638847,-0.09792187,-0.96864986,0.13828988,-0.07350489,-0.5303616,0.07752953,-0.32365927,0.45198348,0.09960105,0.26678246,-0.1902253,-0.7833266,0.2197151,0.13133046,-0.19343974,-0.5424766,0.57696337,0.07001797,1.0080436,0.0047267624,0.30847183,0.16865034,-0.29841352,-0.1518779,-0.15952201,-0.044721868,-0.5813524,0.0010746518 -395,0.4775764,-0.16867478,-0.3551897,-0.26988202,-0.27182147,-0.017425196,-0.21346082,0.3392262,0.35612956,-0.19455945,-0.11291851,-0.18743582,0.061638348,0.30378655,0.0038680178,-0.91947544,-0.153036,0.17292492,-0.7877356,0.32521176,-0.6704989,0.2401738,0.108116664,0.45170873,0.13588285,0.24066181,0.27159476,-0.19003963,0.032977078,-0.14641215,0.07588174,0.29118183,-0.569708,0.17784925,-0.08373826,-0.3051664,0.03395291,-0.44942114,-0.26097313,-0.7867344,0.10500735,-0.89132214,0.58777416,0.099336185,-0.15087172,-0.16890989,0.1973054,0.39686045,-0.22387195,0.18900283,0.37458324,-0.29514006,-0.08140789,-0.353586,-0.08711193,-0.45619693,-0.5144119,-0.020982686,-0.39313263,-0.4620208,-0.2527533,0.29575783,-0.3099017,-0.036749654,-0.19920263,0.43593094,-0.31903434,-0.03774062,0.49538666,-0.31098297,0.38100782,-0.46857905,-0.044732638,-0.09396633,0.36860496,-0.037499852,-0.36352178,0.3570182,0.26240596,0.43977612,0.19680248,-0.2989612,-0.117956854,-0.17529885,0.107920006,0.476583,-0.362123,-0.22978865,-0.27811417,-0.010553087,0.21305905,0.44220072,-0.04235639,-0.37387824,0.1419622,-0.008404182,-0.13710748,0.5664788,0.5774776,-0.21095014,-0.38186222,0.16716695,0.486604,0.17190656,-0.14758961,0.086488195,0.18369368,-0.6333898,-0.13338102,0.2602566,0.07190214,0.41891608,-0.030894816,0.028505312,0.90922016,-0.24123593,0.0036171165,-0.050289564,-0.084140435,0.095246024,-0.52816284,-0.40064812,0.2812087,-0.61030006,-0.03436227,-0.38361236,0.8902475,0.12165748,-0.69502074,0.41401199,-0.61006546,0.13328008,-0.089188375,0.7054256,0.7156321,0.22284034,0.4040062,0.7992183,-0.2713444,0.2348027,-0.076172166,-0.21445577,0.18347792,-0.24404533,0.119455695,-0.4064568,0.07759955,-0.27162623,0.07544619,0.17714272,0.32674196,-0.6522447,-0.099578306,0.24209516,0.7458531,-0.3914385,-0.00877593,0.4972539,1.1215545,0.9683184,0.16637407,1.2866402,0.56379855,-0.299928,0.25239238,-0.34959045,-0.69081223,0.26681098,0.22954848,-0.08854822,0.14485338,-0.14270823,-0.120070525,0.28533578,-0.4995478,0.02781601,-0.12229497,0.30987898,0.08024935,0.021543162,-0.5043037,-0.19031642,0.0094431145,-0.17554428,0.1924948,0.12337949,-0.29699382,0.1459349,-0.17504899,1.1982747,-0.13165697,0.044996817,0.055146728,0.47065926,0.24491759,-0.27876428,-0.031118581,0.41144547,0.43810034,-0.022005187,-0.60700405,0.4180203,-0.24749987,-0.2413126,-0.18861698,-0.37743568,0.14885923,0.12337403,-0.38992968,-0.24899237,-0.0020264685,-0.2759779,0.41013288,-2.60079,-0.23344533,-0.043032072,0.2925234,-0.2307915,-0.1694946,-0.25576377,-0.4645376,0.3532796,0.15969333,0.38121885,-0.53166187,0.50774133,0.4980081,-0.41230506,-0.19557187,-0.9050821,-0.027538285,-0.16339673,0.37187523,0.050887596,-0.07827972,-0.2150736,0.18236473,0.7664784,0.014064423,0.14054526,0.40982586,0.348887,0.32408485,0.52928305,0.041350543,0.5214328,-0.26039723,-0.3642212,0.39952525,-0.31911713,0.1536943,-0.060587887,0.092060976,0.5327739,-0.39637655,-0.9516198,-0.70718616,-0.57070243,0.85722244,-0.343601,-0.56163436,0.20972559,0.024763469,-0.089064,0.1463602,0.7279065,-0.076160036,0.01788245,-0.79716116,-0.037792083,0.030498879,0.32561323,0.127029,0.04316664,-0.38031095,0.67374086,-0.09562029,0.46196848,0.09685694,0.30397382,-0.3091457,-0.3817655,0.13152666,1.045882,0.08976187,-0.10885771,-0.061022364,-0.33442703,-0.030848145,-0.18704014,0.014082147,0.61920786,0.99409544,-0.04342612,0.10588868,0.41833335,-0.20981479,0.044338066,-0.115481496,-0.29588857,0.038020585,0.012209995,0.6104391,0.6035327,-0.00290787,0.50399554,-0.20491222,0.48193392,-0.1567627,-0.47581407,0.58479124,0.5832923,-0.067965366,-0.12473466,0.5270043,0.4665282,-0.48301458,0.5010224,-0.69493306,-0.13779561,0.7063441,-0.18881579,-0.59908885,0.23730037,-0.26473892,0.14736843,-0.85211563,0.49861595,-0.33724242,-0.5129994,-0.4814468,-0.22045393,-3.2252033,0.2703063,-0.1333497,-0.094016634,-0.19917895,0.02279386,0.42994317,-0.48123312,-0.40863603,0.08265327,0.26371938,0.6601492,-0.048774846,0.041542847,-0.30248263,-0.13842592,-0.07849306,0.1860574,0.20997913,0.26932713,-0.09871677,-0.16891742,0.09220479,-0.019965777,-0.5352348,0.14170758,-0.56355196,-0.5555813,-0.13709147,-0.57502156,-0.3141346,0.6705605,-0.55527985,0.060984906,-0.2504572,0.12156362,-0.1412217,0.28251666,0.1941127,0.40311024,0.16983688,-0.042546775,-0.16450882,-0.34765768,0.38833687,0.0020917526,0.24000342,0.068630725,-0.06081023,0.19740187,0.40108702,0.5821868,-0.021504657,0.96318054,0.43496484,0.020493427,0.10381468,-0.36493948,-0.18166326,-0.51896244,-0.2883784,-0.07501692,-0.46939102,-0.51697326,-0.08429285,-0.2287595,-0.7552825,0.6567318,-0.07960411,0.161564,-0.12228019,0.3538975,0.26268402,-0.14226995,0.0042360616,-0.11957546,-0.15396808,-0.41715384,-0.1513904,-0.60714966,-0.57921827,0.2350526,0.8994718,-0.42845693,0.13580316,-0.109252386,-0.23745812,0.033259057,0.16664746,-0.025541931,0.42747793,0.5527774,-0.046431992,-0.6248541,0.33311573,-0.024056163,-0.22481258,-0.68705237,0.23725142,0.9213111,-0.9370151,0.8368004,0.28113842,0.086158745,-0.10684689,-0.46886167,-0.3100461,0.106358,-0.31517285,0.45717832,-0.075372204,-0.72002614,0.5047137,0.47103474,-0.3774939,-0.68637973,0.26576027,-0.044485655,-0.2608661,0.03745189,0.36106166,0.013940877,0.0261761,-0.15578285,0.3206111,-0.4607562,0.12254696,0.10593377,-0.049555182,0.34080467,-0.10803715,-0.19122621,-0.6387939,0.18202604,-0.72855467,-0.3678229,0.31519005,-0.101534806,0.012106182,0.48719996,0.10085724,0.5349063,-0.058897913,0.19137374,-0.095515795,-0.32710248,0.24074002,0.4473568,0.2861843,-0.34798524,0.46258712,0.12112881,-0.29012236,0.036816232,0.06905256,0.5523357,0.043778066,0.45648694,-0.44710848,-0.17825453,0.4294393,0.7075429,0.009139478,0.49375203,-0.009823097,0.017284978,0.42025375,-0.040683854,-0.035377264,-0.05340794,-0.34725904,-0.030349761,0.023345321,0.25718927,0.44053826,0.33083862,0.34421605,0.07607752,-0.31009308,0.02857596,0.22084257,-0.14479303,-1.0837492,0.45530114,0.18854928,0.78026855,0.41266972,0.108188175,-0.20790689,0.641697,-0.1996424,0.17172922,0.27507433,-0.08445908,-0.38056132,0.68860483,-0.66891587,0.27805954,-0.21864907,-0.06489205,0.05099217,0.13730396,0.46367273,0.8435875,-0.2512689,0.13210632,-0.011406153,-0.05433805,0.18215565,-0.39111927,0.19804955,-0.4599659,-0.49391454,0.6178728,0.40861958,0.2835363,-0.21155752,-0.0067496086,0.17734413,-0.15336196,0.26044053,-0.07339924,-0.18465975,0.32331252,-0.5699449,-0.23041086,0.5947875,-0.13684873,0.040400088,-0.1647148,-0.14378218,0.058855575,-0.22179808,0.11075697,-0.0940017,-0.64935833,-0.027684197,-0.37421897,-0.49375173,0.4297488,-0.3205223,0.085703455,0.18058507,0.15062033,-0.20601818,0.30482584,0.18211551,0.8164838,0.039736263,-0.27295652,-0.31723103,0.16286547,0.1811875,-0.30894572,0.031802602,-0.45007697,0.04459733,-0.709246,0.63452303,-0.19403411,-0.51218015,0.26744688,-0.12401665,0.014861451,0.62770844,-0.23263986,-0.1291507,0.19197942,-0.32244787,-0.37658533,0.11608847,-0.26949486,0.13273813,0.26969537,-0.11376179,-0.11985821,-0.3924222,-0.269154,0.57238823,0.06691874,0.49456236,0.3862467,0.17580934,-0.07333385,0.11245983,0.17453422,0.4783407,0.20638075,0.016851231,-0.28922158,-0.28121337,-0.24524865,0.26758265,-0.12993333,0.30804926,-0.052213676,-0.46551323,0.93558174,0.009973628,1.1264355,0.015746806,-0.33596402,0.051125776,0.5279838,-0.12983586,0.05086846,-0.6062929,0.7420221,0.5945295,-0.09361894,0.04868881,-0.32295647,-0.26110896,0.38471857,-0.3329282,-0.078262605,-0.15490878,-0.75339514,-0.52365017,0.2165654,0.23396388,0.13488464,-0.03964767,0.07035762,-0.045802508,0.005106447,0.3296656,-0.6186567,0.110017,0.02923583,0.44320637,-0.06111055,0.248329,-0.29797664,0.40618357,-0.6954389,0.24027647,-0.43201184,-0.025046801,-0.10081673,-0.36265358,0.03508853,0.042689554,0.27124208,-0.18283136,-0.2990808,-0.001835508,0.45540243,0.09000807,0.14693022,0.74164516,-0.24308804,0.05442259,0.23889768,0.6913194,1.5212862,-0.33633,-0.05428212,0.21936782,-0.38609287,-0.69031554,0.37445912,-0.3325315,-0.24142231,-0.14464422,-0.5593506,-0.38834208,0.28487843,0.16635136,-0.075364806,-0.06916887,-0.46952528,-0.080850616,0.33835357,-0.28024095,-0.29398936,-0.24192752,0.45025888,0.6737823,-0.23598845,-0.2997723,0.01737827,0.3198389,-0.44111797,-0.44544458,-0.023193631,-0.39221355,0.3883353,0.00936631,-0.32896852,-0.00092926197,0.017361926,-0.5432752,0.06217115,0.16516688,-0.37595803,0.049614467,-0.029464845,-0.047919806,0.8551195,-0.10033615,-0.2128568,-0.7929517,-0.4724164,-0.9359379,-0.57865685,0.26775137,0.23812358,0.077893674,-0.30062222,0.037366908,-0.12622516,-0.1557494,0.06739856,-0.56664747,0.28613183,0.06476032,0.6252656,-0.38251114,-1.0366086,0.12006731,0.17055316,-0.27683657,-0.81726724,0.58632714,-0.045236606,0.74623626,-0.04687819,-0.0542193,0.045644186,-0.31573296,0.22786865,-0.47004417,-0.20541202,-0.98807734,0.117833816 -396,0.32289988,-0.12556121,-0.48344436,-0.11919715,-0.11715784,-0.08486343,-0.4242592,0.14449307,0.2505355,-0.30338013,-0.11079133,0.023541806,-0.0020101864,0.22054072,-0.10577072,-0.6733065,-0.112110995,-0.023905175,-0.7602676,0.5606467,-0.54654396,0.24910611,0.062316693,0.3207857,0.06717905,0.5324941,0.112100884,-0.13172476,-0.13685115,-0.1410263,0.010297598,0.27484253,-0.5515819,0.012209479,-0.18284117,-0.1763931,0.062085018,-0.36090603,-0.2655162,-0.75526524,0.08867852,-0.9442189,0.43981764,0.011575496,-0.10340985,-0.040658545,0.22838868,0.39060268,-0.3013912,0.07778315,0.08500417,-0.19378385,-0.23447946,-0.3554938,-0.07810337,-0.16566086,-0.43981287,0.051488977,-0.59117633,-0.29309127,-0.14164788,0.14202935,-0.32926,0.04010922,-0.20587334,0.40893134,-0.42210358,0.019008867,0.3675178,-0.14514272,0.23274466,-0.5337202,0.03723212,-0.069826715,0.5414139,-0.099285655,-0.12992273,0.26613972,0.27987128,0.48357543,0.23816255,-0.2086524,-0.22046873,-0.301128,0.34136003,0.35937673,-0.21453683,-0.2323306,-0.27157295,0.11242792,0.23451686,0.49970284,-0.077318385,-0.17042087,-0.03298696,-0.13859606,-0.12369546,0.44639847,0.5807483,-0.22999433,-0.3919515,0.24009782,0.68195546,0.31500596,-0.244198,-0.01772201,0.048276164,-0.45938635,-0.12351279,0.32082495,0.009003683,0.40293592,-0.1424763,0.057734456,0.7550017,-0.18741319,0.012331589,-0.12260855,-0.07907527,0.0055565196,-0.31058857,-0.15849301,0.19102041,-0.54208004,0.12314439,-0.22663012,0.55748993,0.10311618,-0.7048971,0.35460594,-0.5168836,0.17499687,0.02885836,0.72794735,0.7308481,0.34635967,0.40444103,0.6656733,-0.317221,0.20692724,-0.096758924,-0.37711114,-0.12018802,-0.14024504,0.120229684,-0.42325813,0.06108885,-0.19245267,0.057340417,0.04163103,0.20804933,-0.43722153,-0.01989568,0.21414515,0.6765331,-0.3302748,0.035389718,0.8461638,1.1073711,0.9466475,0.12147677,1.2232056,0.30547932,-0.22943231,0.036074936,-0.36523214,-0.7011231,0.1664731,0.31919473,0.26735938,0.25934255,-0.089045666,-0.0010880192,0.37667206,-0.54744774,0.05377047,-0.07165535,0.30143464,0.028173586,0.043208305,-0.5244595,-0.09093909,-0.053084966,-0.044784658,0.16464636,0.21791936,-0.018571654,0.42313534,-0.060012903,0.9447385,-0.15059566,0.1018786,0.22346057,0.43540427,0.20311442,-0.1835912,-0.084886186,0.4439258,0.39981282,-0.05871659,-0.6531688,0.14383316,-0.3322234,-0.2598708,-0.17682497,-0.40365335,0.03516126,0.10336068,-0.31931478,-0.12364454,-0.110476874,-0.25252277,0.34179935,-2.7989824,-0.1946859,-0.23515701,0.20178786,-0.31940612,-0.1679629,-0.1525794,-0.5155411,0.4029148,0.17428258,0.48404628,-0.5674068,0.48868167,0.45342407,-0.5540076,0.019100396,-0.72849935,-0.13040547,-0.09093905,0.47151688,-0.018886916,-0.031112226,-0.1354502,0.13358736,0.63980037,0.055194657,0.05464629,0.45551482,0.31238785,0.17081235,0.46462905,0.0020288667,0.5289667,-0.3166008,-0.2336015,0.36986867,-0.2748136,0.32084653,-0.18577024,0.15030378,0.5313833,-0.5444544,-0.82455766,-0.5454742,-0.5246635,1.225129,-0.3184901,-0.5559122,0.14050029,-0.18253721,-0.22283313,-0.011767631,0.54588765,-0.10895642,0.13178048,-0.7896651,0.12749575,-0.11822731,0.30593714,0.08252669,0.024275996,-0.35245085,0.5813529,-0.114818364,0.41926658,0.33019102,0.26208577,-0.13125362,-0.3983381,0.08233533,0.8832144,0.35205323,-0.030098354,-0.19524717,-0.33421904,-0.077033244,-0.26874813,0.0019432565,0.537551,0.75444204,-0.045125745,0.07624658,0.2610774,-0.08720069,0.13654779,-0.020376006,-0.22157662,-0.12310359,-0.0154864015,0.6143909,0.696471,-0.034794427,0.4128777,-0.1311995,0.31771263,-0.05693585,-0.4101854,0.68015504,0.46425977,-0.086079165,-0.19148375,0.672008,0.5371048,-0.46749237,0.4489515,-0.4652755,-0.11945235,0.5022027,-0.23986268,-0.48624197,0.2842771,-0.24542652,0.27034754,-0.88122445,0.28738865,-0.44311973,-0.3548148,-0.47829455,-0.01795601,-3.2186513,0.16553338,-0.21892601,-0.15247947,-0.28621334,-0.15384929,0.31291255,-0.45182547,-0.5660854,0.20017727,0.16773704,0.5845645,-0.11941109,0.020197034,-0.2018253,-0.18897404,-0.13902506,0.18120496,0.317282,0.304032,-0.20746405,-0.29760855,-0.016170789,0.0022043309,-0.37450403,0.13841693,-0.47230327,-0.42186794,-0.06550275,-0.5272404,-0.19967261,0.5783599,-0.3712173,0.01376735,-0.3215226,0.018702531,-0.19640532,0.22466844,0.27407932,0.47612536,0.19883302,-0.062380888,-0.019768571,-0.25680593,0.3761764,-0.0014948408,0.21529607,0.09362879,-0.010684959,0.24966905,0.2745543,0.64936715,-0.1701618,0.9820579,0.4985953,-0.13436407,0.17314707,-0.3607196,-0.29689848,-0.68817294,-0.29540852,-0.03159486,-0.37987489,-0.56478614,-0.08106141,-0.3399936,-0.790081,0.6393069,-0.025069462,0.3144722,-0.1177526,0.3445406,0.4137993,-0.12865312,-0.0021276711,-0.04260877,-0.13478637,-0.4588346,-0.19798318,-0.619697,-0.4700731,-0.041714672,0.62215483,-0.29729757,0.07509737,-0.10324917,-0.27160233,-0.10577025,0.17309189,0.14998421,0.35442343,0.4791754,0.1374913,-0.46532765,0.3785644,-0.012131163,-0.24264516,-0.67175126,0.11761902,0.7477786,-0.73682314,0.78011954,0.406704,-0.01800735,-0.07486208,-0.534199,-0.16362606,0.04512578,-0.2022855,0.45246804,0.19116965,-0.7649018,0.50504136,0.267278,-0.12509176,-0.74924093,0.39784303,0.027885545,-0.33958894,0.1047818,0.4024351,-0.10163123,-0.09568003,-0.18850523,0.17044643,-0.19415388,0.19054943,0.27469096,-0.15568878,0.31912068,-0.20035791,-0.389135,-0.67545664,0.057699773,-0.7301901,-0.13217872,0.42881697,-0.12581255,-0.028526342,0.08685548,0.10893535,0.41548756,-0.25002614,0.14017421,-0.06660469,-0.28677115,0.1851959,0.4513137,0.32729998,-0.38498262,0.60093063,0.24153452,-0.22732183,-0.031878915,0.18910232,0.5156273,-0.1651149,0.32079333,-0.12598167,-0.2651936,0.22091939,0.71513075,0.1342248,0.5272569,0.16787186,0.04734111,0.5429667,0.0706438,0.08054426,-0.12637119,-0.29912692,-0.026359256,0.040545084,0.1516977,0.38261938,0.30668148,0.36253154,-0.0027421354,-0.12987109,-0.097042,0.29983345,0.095158,-0.91410655,0.4558689,0.15568884,0.7267185,0.47475556,0.22833906,-0.22797646,0.63685673,-0.37397403,0.02464271,0.36922082,-0.07871953,-0.4631033,0.6951857,-0.5906766,0.42812806,-0.110205695,-0.042754356,0.115555845,0.07759144,0.36829293,0.80464005,-0.15408619,0.01818697,-0.13487272,-0.14134507,0.048762646,-0.35030535,-0.011246097,-0.18219924,-0.4298683,0.7238567,0.3022003,0.38744393,-0.18410078,-0.03821036,0.14832702,-0.16435018,0.2079129,-0.060707606,0.103676386,0.090222575,-0.46204826,-0.29996333,0.42064494,-0.0062516807,0.13400032,-0.12460505,-0.11945703,0.13770384,-0.12207987,-0.05200994,-0.032260813,-0.63707936,0.027218413,-0.29358834,-0.6167406,0.3083315,-0.3589709,0.10135272,0.20132115,0.025195079,-0.3178264,0.3314442,-0.030283865,0.7789776,0.054236572,-0.32414237,-0.25282428,0.033467844,0.32536,-0.26341054,0.08613958,-0.32239813,0.17467724,-0.6517953,0.5938518,-0.21813798,-0.4853081,0.08213628,-0.18862757,-0.10456476,0.55857795,-0.123998694,-0.17996383,0.12696384,-0.2670972,-0.49364802,-0.21229444,-0.21109088,0.18126336,0.38120988,0.03774694,-0.12768625,-0.28885585,-0.24753179,0.49278605,0.08947592,0.4644786,0.24317935,0.06788887,-0.20182504,0.11174633,0.33072913,0.3619369,0.072167605,-0.0011300087,-0.2962265,-0.52678496,-0.3303055,0.27079198,-0.0037584554,0.26258242,0.011563527,-0.21168108,0.8106173,-0.024414547,0.92327946,0.17645113,-0.327793,0.009324964,0.34843355,-0.17269519,0.0038964867,-0.29656747,0.8914797,0.6057797,-0.08651365,0.0034040094,-0.46959826,-0.072824515,0.082483195,-0.30531093,0.037844278,-0.032225892,-0.46036485,-0.29868758,0.24408573,0.23389739,0.16025697,-0.06087373,0.00055422384,-0.025972996,0.11986867,0.36743417,-0.7295486,-0.2430356,0.28250778,0.11846664,-0.08311354,0.19839059,-0.23100866,0.4589569,-0.63762325,0.1191809,-0.46539778,0.014714847,-0.021529967,-0.39816633,0.07651887,-0.1699853,0.36842838,-0.39803204,-0.37223947,-0.2195271,0.37200016,0.09049301,0.09995777,0.5884149,-0.20988682,0.15166728,0.24945377,0.5895698,1.1470497,-0.30985337,0.07007038,0.03240854,-0.17325017,-0.54779506,0.33266327,-0.49670753,0.08497702,-0.12145608,-0.39659792,-0.38438243,0.12322755,0.22312044,0.03727257,0.08021391,-0.50424105,-0.20361201,0.1568479,-0.25835094,-0.20721497,-0.18037295,0.26126713,0.68116534,-0.27892083,-0.28032127,0.0025363048,0.041425202,-0.32486945,-0.4004437,-0.07203179,-0.14830494,0.17154773,0.17651722,-0.3677761,-0.013455932,0.16334276,-0.5031246,-0.016127756,0.2722553,-0.2854442,-0.032764602,-0.15779853,-0.08775063,0.7705401,-0.42295468,-0.0014336269,-0.5743977,-0.5135069,-0.8780824,-0.37006032,0.28644735,0.06496947,0.17744279,-0.5095765,0.115443006,-0.19301656,0.048057437,0.25293967,-0.5941917,0.40641546,0.1613488,0.5066873,-0.30793694,-0.7735414,0.14205606,0.031849388,-0.17928578,-0.59080505,0.5840673,0.020544019,0.77427846,0.03486492,-0.12121141,0.055467412,-0.57716674,0.033782475,-0.33472964,-0.15504365,-0.88824826,-0.06047653 -397,0.3161616,0.01815457,-0.47410515,-0.027874198,-0.3575265,0.07835531,0.0070016044,0.25642976,0.16909404,-0.13353923,0.059417207,-0.30689654,0.0021190303,0.3878785,-0.08550087,-0.7547421,-0.03974591,0.039063327,-0.51286405,0.27800423,-0.40354332,0.42843923,0.07091472,0.4617227,-0.16537833,0.35437965,0.2619727,-0.1438061,-0.05381068,-0.015033909,-0.24982539,0.19594257,-0.6559028,0.09282819,0.031083176,-0.33116537,0.21050762,-0.23349926,-0.37043986,-0.6166934,0.26906008,-0.6581888,0.49033785,0.051084448,-0.1825864,0.08793599,0.09245806,0.2581662,-0.46841198,0.16064155,0.19659789,-0.39461538,0.24140178,-0.27814975,-0.42038321,-0.51010233,-0.5344297,-0.053744502,-0.5437383,-0.36623117,-0.29199737,0.17719178,-0.29118133,-0.13931167,-0.13192429,0.28140768,-0.5089601,0.14549954,0.32074752,-0.27024215,0.30751085,-0.23431884,-0.13379237,-0.10971558,0.14135613,-0.14057565,-0.13991918,0.406109,0.1913993,0.36830744,0.042068683,-0.26860854,-0.31157297,-0.16579035,0.08245771,0.54526466,-0.2307106,-0.18512993,-0.0484682,-0.019842079,-0.228374,0.31966886,-0.0062177842,-0.2918541,-0.041349918,-0.079582036,-0.00082081556,0.1413349,0.4423584,-0.34068346,-0.47896147,0.21287797,0.32219872,0.0695658,-0.18528436,0.11062306,0.010806603,-0.4912198,-0.3030167,0.11393233,-0.0379443,0.4772089,-0.02424759,0.26434842,0.9029418,-0.24304943,-0.046998907,-0.38731033,-0.074424945,0.030307308,-0.11531067,0.04107212,0.15673964,-0.43509182,0.07837435,-0.044885345,0.7850308,0.24988009,-0.7150083,0.3688098,-0.5653798,0.07763563,-0.11229139,0.56950945,0.48318785,0.34748298,0.25733608,0.83951026,-0.6731852,0.17700246,0.079587355,-0.5755213,0.13458358,-0.043938752,-0.14660658,-0.5078303,-0.15290941,0.097366095,0.0049080127,0.07906977,0.064880356,-0.49277496,0.10469629,0.04748718,0.960831,-0.4483092,-0.13927616,0.5544345,0.94213694,0.8431634,-0.10064324,1.288148,0.31593943,-0.25767943,0.167451,-0.38108453,-0.4867072,0.12147774,0.26698917,-0.03216586,0.36306968,0.173852,0.11093502,0.21709983,-0.19759832,0.11062654,-0.06404284,0.1108669,-0.025408119,-0.082360186,-0.42296916,-0.23425247,-0.045602717,-0.015239969,-0.05935049,0.26921532,-0.00068198994,0.4500603,-0.032649916,1.7665937,0.18939848,0.28130436,0.05555951,0.54908437,0.301615,0.17198469,-0.18240035,0.36529997,0.2413796,0.34384242,-0.39947578,0.009511533,-0.26343557,-0.55590314,-0.15677588,-0.41457152,0.09918225,-0.19854534,-0.5351391,-0.06293715,0.16459705,-0.23413096,0.5166355,-2.6196969,-0.013104318,0.0019470368,0.15953149,-0.2355173,-0.22860578,-0.1110994,-0.30944157,0.29810348,0.4755918,0.38527945,-0.6214291,0.3293114,0.42820245,-0.2415436,-0.21413364,-0.48050812,-0.08376082,-0.030622393,0.32749918,-0.104821905,0.09145812,-0.17118691,0.27183673,0.52047,-0.15632156,-0.079571165,0.052924458,0.41041845,0.07703604,0.44433594,0.088678256,0.49521023,-0.24698296,-0.17476514,0.3023813,-0.27526817,0.33094338,0.05265912,0.16109125,0.24272665,-0.36544403,-0.8967398,-0.49248666,-0.4198874,1.0318792,-0.3187003,-0.2288376,0.40673643,-0.10629136,-0.11358387,-0.13856612,0.4768888,-0.09595193,0.23601532,-0.52613485,0.15302439,-0.12273652,0.2836841,0.06477557,0.15504357,-0.23204432,0.5517031,-0.15421773,0.29829055,0.4398252,0.11514536,-0.1161098,-0.5268834,0.16664289,0.744258,0.22742681,0.17282407,-0.047363408,-0.10726619,-0.015721457,-0.14829023,0.068091616,0.41885462,0.81923705,-0.016385127,0.07034512,0.27036956,-0.055919044,-0.049791303,-0.03206087,-0.27891526,0.19220184,0.028111594,0.5341658,0.7091018,-0.3465927,0.5174074,-0.07637827,0.46144032,-0.06677497,-0.45979324,0.39901495,0.9214153,-0.074725375,-0.052669667,0.5255261,0.38911787,-0.5404802,0.3527403,-0.62863296,-0.14626996,0.7894303,-0.16534135,-0.5124985,0.13285504,-0.17431638,-0.05255178,-0.9273147,0.35398167,0.084072724,-0.49553004,-0.3606561,-0.14885783,-4.5367208,0.12399893,-0.43411967,-0.16223967,0.022252126,0.009424044,0.2291391,-0.64556545,-0.36261374,0.029108373,0.08908419,0.3963223,-0.078113236,0.17095849,-0.33018237,-0.1365299,-0.16826025,0.30633423,0.22066787,0.18537508,-0.11448007,-0.5145688,0.016969323,-0.35921955,-0.6778521,0.065222524,-0.47282892,-0.54982084,-0.08942852,-0.58301336,-0.3587613,0.8495249,-0.45648235,-0.096368365,-0.26922202,-0.09724251,-0.21352999,0.37947372,0.36632538,0.19329023,0.0345358,0.09024603,-0.28241354,-0.30518508,0.17216182,0.1489907,0.42286757,0.36676255,-0.053791165,0.08449026,0.49247876,0.573348,-0.08951236,0.5758621,0.20493309,-0.19302668,0.37367997,-0.49711987,-0.20243393,-0.833745,-0.5853214,-0.14448915,-0.33738428,-0.62633884,-0.19402388,-0.33815208,-0.6921304,0.57015854,-0.11038674,0.21771117,-0.12578759,0.19966781,0.331052,-0.31733203,-0.060766958,-0.13576756,-0.20886707,-0.5814985,-0.3906176,-0.5336304,-0.6918348,0.13597038,1.104488,-0.23653622,-0.13509764,-0.0580662,-0.18554242,-0.014458205,0.011650673,0.21860813,0.37009645,0.16614683,-0.1289719,-0.7109966,0.70390046,-0.1238145,-0.13750409,-0.6965822,-0.04014527,0.6152979,-0.756441,0.6235363,0.26327384,0.12903157,0.30077097,-0.5145921,-0.38639444,0.012963514,-0.057512097,0.41371703,0.015900834,-0.56425375,0.31765014,0.1992741,-0.2417113,-0.547853,0.44648266,-0.15249643,-0.47448975,0.2590421,0.27159163,-0.08318015,-0.091153584,-0.047444563,0.30596682,-0.50900346,0.18473288,0.39533213,0.0776552,0.32890075,0.012605404,-0.22519389,-0.6647043,0.15718302,-0.30741122,-0.32185125,0.16875318,0.12083296,-0.111018695,0.21066427,-0.028784439,0.41436407,-0.23037355,0.16215746,0.012105652,-0.27724174,0.33989748,0.45529523,0.360967,-0.55529165,0.58817893,-0.06236153,0.022954047,-0.020091763,0.14226924,0.6174061,0.16782871,0.25161317,-0.07401418,-0.17728855,0.2024268,0.7646697,0.24135251,0.52369225,0.09609477,-0.082601294,0.4301787,0.26582,0.021210935,0.13104363,-0.17613056,0.074843995,0.040612858,0.18398483,0.40681642,0.16173506,0.37170568,-0.078097045,-0.19311284,0.26957038,0.34644157,0.033878367,-0.7513197,0.33346102,0.2675719,0.62007713,0.44638512,0.13077168,0.03191061,0.54926157,-0.32833457,0.016566852,0.38710862,-0.032479446,-0.5323002,0.66634095,-0.5513495,0.5995328,-0.07551924,-0.13768221,0.13165103,0.11970614,0.30886474,0.9658235,-0.04314627,-0.066490814,0.028943846,-0.20635094,-0.05181716,-0.4417328,0.11879842,-0.49565983,-0.3460973,0.49117404,0.40276226,0.119104676,-0.24420659,-0.05227852,0.026919544,-0.079714194,0.23764226,-0.13810112,0.056776028,0.014339499,-0.54081684,-0.39629364,0.6724304,-0.24816059,0.009940935,-0.06381052,-0.22256646,0.3111539,-0.14397685,-0.14341524,0.04191347,-0.64429617,0.25198787,-0.28983465,-0.5359182,0.51072127,-0.43825045,0.42188543,0.14173386,0.045387227,-0.3760304,0.3905293,0.07311485,0.8277125,0.08231759,-0.21862428,-0.274023,0.19197956,0.25738767,-0.28425997,-0.06463773,-0.3211755,-0.0025290507,-0.45756182,0.3417008,-0.11769436,-0.28073522,-0.17751034,-0.1667758,-0.09902697,0.35560355,-0.07087476,-0.18873134,-0.10513612,-0.07052116,-0.21546938,0.057558775,-0.3746911,0.20707856,-0.0105107855,-0.2216275,0.06683159,-0.040202253,-0.00543929,0.36557838,-0.0142564345,0.29630965,0.12301799,-0.13261221,-0.34190777,-0.051365174,-0.1062822,0.2814059,-0.005068924,0.1654892,-0.115840316,-0.29955214,-0.14446817,0.13915204,-0.26514784,0.17425261,0.21137142,-0.46331507,0.8804439,0.16366899,1.2094144,0.09395377,-0.36856103,0.14969692,0.41590554,0.1000942,0.15439878,-0.42355937,1.0706557,0.70970535,-0.120710574,-0.43282256,-0.12484108,-0.18084148,0.32435063,-0.3094437,-0.2687634,-0.04041016,-0.6429148,-0.11476149,0.23537299,0.22828378,0.24948713,0.057121865,-0.24297084,0.074733205,0.2075647,0.39705816,-0.4045051,-0.2044321,0.36836082,0.20849358,0.049126502,0.19930093,-0.23135035,0.5901941,-0.42418078,0.23629197,-0.5727537,0.06309839,-0.32464394,-0.32183775,0.20857045,-0.062714465,0.35785952,-0.12530336,-0.17045249,-0.2973378,0.53082365,0.32069135,0.24087277,0.7868398,-0.294941,0.09223694,0.007200935,0.23833017,1.1873591,-0.28981856,-0.22521904,0.42286724,-0.33204502,-0.49645618,0.1328285,-0.32548475,-0.099684834,-0.31957155,-0.346675,-0.31664708,0.20576009,0.14904974,-0.12360823,0.0019982415,-0.38779435,-0.05646968,0.44360113,-0.31555972,-0.456497,-0.40133026,0.48597044,0.8290532,-0.35976425,-0.27841118,0.21936992,0.080954365,-0.31617504,-0.4878437,0.06761273,-0.24677432,0.3363778,0.091572404,-0.42364433,0.12759556,0.22859754,-0.3404959,0.15648499,0.5309215,-0.3793485,0.012315358,-0.10044331,-0.14936556,1.0052674,-0.08900911,-0.16415074,-0.70701253,-0.47715268,-1.0507594,-0.4040238,0.61126614,0.20193566,-0.008434245,-0.40598693,-0.10448701,0.008443577,-0.09064867,-0.032783058,-0.51260656,0.27324095,0.05455423,0.44996566,-0.062271647,-0.9400672,0.043273382,0.18805565,-0.21619448,-0.6711988,0.49141556,-0.40860862,0.6635541,0.03214823,-0.026480095,0.43794253,-0.39274105,0.22001444,-0.35000387,-0.30273277,-0.62704086,0.10796035 -398,0.40571758,-0.22509621,-0.6935705,-0.102544785,-0.18542893,0.011636496,-0.079123594,0.46763262,0.15378746,-0.53779095,-0.17877199,-0.21668836,-0.217563,0.5634212,-0.15873,-0.5601633,-0.06769219,0.18107572,-0.5327047,0.4465301,-0.19770725,0.33570847,0.2072761,0.25652778,0.12778725,0.100710325,0.029010568,-0.20212092,-0.09720759,-0.23572104,-0.18359457,0.011220778,-0.74240595,0.29885238,-0.18681209,-0.26594916,0.020267384,-0.5291286,-0.3404692,-0.7683148,0.16962683,-0.71234196,0.6109218,-0.08179278,-0.17011344,-0.02611867,-0.043520357,0.44999668,-0.18099172,0.06858893,0.1862621,-0.16680503,-0.2401247,-0.03274923,-0.12735082,-0.39675447,-0.5318018,0.19599101,-0.41328254,-0.098280355,-0.073180676,0.13297139,-0.2587628,0.15100057,-0.039662454,0.48999944,-0.3634723,-0.07493279,0.33118466,-0.2839693,0.20047195,-0.628837,-0.019148916,-0.2215664,0.2460057,-0.3084995,-0.16854696,0.47377682,0.13796957,0.519025,0.11728512,-0.21538389,-0.087518826,-0.017578874,-0.024278065,0.5463618,-0.090983175,-0.5130765,-0.039285414,0.15488997,0.20933783,-0.016435953,0.028718233,-0.4454578,-0.11116997,-0.046945546,-0.043280583,0.2422851,0.56328267,-0.14789991,-0.08010403,0.26463184,0.49238846,0.2429612,0.115600206,0.05386715,0.021228923,-0.5982842,-0.21481575,-0.03113403,-0.12087073,0.4730009,0.0021680498,0.12105727,0.7155131,-0.2478365,-0.0588825,0.07107444,-0.09596219,0.079086915,-0.06738297,-0.53640646,0.40132317,-0.32827377,0.23484576,-0.13516651,0.80007297,0.29366532,-0.80968654,0.28218535,-0.5130574,0.091310635,-0.02236964,0.57923114,0.6049325,0.6746831,0.18911876,0.7067232,-0.49115017,0.29565987,-0.06805783,-0.4137539,-0.057160676,-0.23478203,-0.2119009,-0.38757318,-0.08793516,-0.21962436,-0.26593533,-0.022790253,0.11441855,-0.71098363,0.06975693,-0.18321334,0.9758547,-0.33363777,-0.037238505,0.6624997,0.78731376,1.0669335,0.053203084,1.0685612,0.28984287,-0.29829624,0.17132793,-0.042021804,-0.739349,0.29490614,0.39451483,-0.43153572,0.37727356,0.094320126,0.018311938,0.4110206,-0.56876594,0.06401528,-0.1705424,0.24388142,-0.060505062,-0.19473039,-0.50778455,-0.17660138,-0.09640469,-0.0354414,-0.037048254,0.21415249,-0.15634987,0.36624697,0.04688647,1.6360699,-0.12240951,0.10787887,0.10330333,0.41631594,0.049352713,-0.118090905,-0.27118573,0.11346943,0.41155997,0.055222113,-0.47068796,0.0064401454,-0.18011987,-0.34479785,-0.23305634,-0.16091384,0.055179596,-0.098128855,-0.19760248,-0.41485593,0.014928277,-0.23926438,0.4888033,-2.2504976,-0.012263362,-0.060135867,0.33897918,-0.44888803,-0.30358917,0.022072783,-0.43317065,0.2920074,0.27116886,0.3975275,-0.58688074,0.2637581,0.34371918,-0.40372705,-0.35520336,-0.5144168,-0.05441503,0.07922252,0.20064794,0.027122272,-0.08031983,0.003916681,-0.057315707,0.4183991,-0.19720615,-0.09358157,0.38491288,0.33569553,0.32221675,0.347117,-0.055352055,0.5667074,-0.57297546,-0.053856395,0.38939553,-0.2788405,0.13664035,-0.06084386,0.09116547,0.1903452,-0.6289273,-0.71094376,-0.7257889,-0.37687328,1.3065983,-0.2446278,-0.386549,0.17532992,-0.058902767,-0.02817492,-0.07378469,0.42782626,-0.10420438,0.13267523,-0.74440485,-0.20043206,-0.04908544,0.44312605,0.051815342,0.04746042,-0.5257563,0.39723855,-0.17838891,0.4025697,0.53976965,0.19186997,-0.12763633,-0.71148527,0.09079836,1.2587289,0.38710886,0.16517337,-0.15154697,-0.07553917,-0.3210755,-0.13413247,0.047461953,0.42220137,0.99501216,0.016385345,-0.07327194,0.1960983,0.08434039,0.10690357,-0.038616538,-0.44580057,-0.12543777,-0.03132943,0.6321574,0.43049797,-0.08259996,0.5077219,-0.150601,0.43299803,-0.10721593,-0.3207048,0.5192996,0.9445673,-0.21670885,-0.23771305,0.4142986,0.3774489,-0.13661353,0.4141536,-0.6609179,-0.37406904,0.57313,-0.18475853,-0.60377556,0.20035489,-0.19485308,0.30116898,-1.0596651,0.4401634,-0.2649159,-0.5656071,-0.5663374,-0.20045482,-2.6035488,0.08609086,-0.229404,-0.10488714,-0.012616639,-0.030497223,0.25787634,-0.3883495,-0.64567864,0.10897423,0.07251048,0.6048241,-0.016713295,0.18199624,-0.14293478,-0.28093648,-0.33729073,0.19626996,0.3196796,0.18702914,0.12041635,-0.43033966,-0.21280535,-0.1971203,-0.42463818,0.15511057,-0.71154565,-0.45605606,-0.33046344,-0.68891424,-0.1582148,0.740251,-0.46169308,0.022684751,0.030966822,0.053065,-0.048288256,0.10282015,0.07854797,0.15560757,0.028193329,-0.1392503,0.015285543,-0.27852887,0.17701514,0.2923412,0.3640353,0.120401934,-0.30089402,0.23907746,0.5763025,0.9774603,-0.030643817,0.70821875,0.581186,-0.09843048,0.30652985,-0.35466743,-0.44869956,-0.57015336,-0.38243622,0.1664172,-0.31393978,-0.47217226,0.14066216,-0.3462037,-0.8408421,0.5921845,-0.0804973,-0.09713663,0.091838054,0.105026804,0.4338558,-0.2980392,-0.09304881,-0.07814532,-0.019896852,-0.47829387,-0.3103285,-0.52217686,-0.5660877,-0.1078632,1.3799423,-0.030135078,0.024683995,0.07771454,-0.26581344,0.2514152,-0.23476125,-0.13518511,0.29205042,0.39208618,-0.146662,-0.83097994,0.4236882,-0.17251322,-0.2286862,-0.5598914,0.3365439,0.74546874,-0.8503761,0.21855997,0.27193215,-0.00029526014,-0.050640136,-0.42018837,-0.093149506,-0.033347886,-0.22157185,0.2750443,0.051516704,-0.50790304,0.34098405,0.3999135,-0.39938816,-0.8355754,0.21472628,0.075272344,-0.16752194,0.2533993,0.31513166,-0.11739182,-0.09108962,-0.28865275,0.08607332,-0.35454768,0.22614299,0.33082458,-0.093884386,0.22392991,-0.33274606,-0.13144387,-0.7880224,0.29206187,-0.5282045,-0.29444912,0.38801712,0.17295514,0.09647452,0.017613355,0.21640618,0.4020475,-0.20502011,-0.0020900518,-0.22146475,-0.34920523,0.42261416,0.5252019,0.3892882,-0.4627862,0.55605775,-0.049378034,0.058224943,-0.06835191,-0.059594482,0.5413126,0.078860104,0.087015964,0.06637315,-0.20976312,0.15413775,0.7753042,0.17343485,0.46949115,0.071787074,-0.1576537,0.17894724,0.2613192,0.06699999,0.25059882,-0.5992764,0.038621087,-0.027606914,0.045427773,0.5268366,0.28153363,0.38469782,-0.16080177,-0.27291033,-0.011137475,0.09560507,0.0245383,-1.115106,0.54132426,0.074723616,0.6555819,0.34154898,0.21775971,0.11754868,0.61408323,-0.06991075,0.18365584,0.28648114,-0.0751095,-0.54739463,0.40754598,-0.56205994,0.56108284,0.10329763,0.018867608,0.17219791,-0.057953577,0.5445805,0.9534575,-0.052381102,-0.002988694,-0.17231242,-0.14831647,0.030615646,-0.5721355,0.05428913,-0.48029855,-0.43494874,0.61612254,0.33338028,0.23078568,-0.080585554,0.025249656,0.14584284,-0.13802603,0.34700578,-0.124066964,0.045834523,0.034381025,-0.5846513,-0.16691075,0.56776035,0.057249036,0.013525069,0.06728067,-0.18760633,0.30101672,-0.21342273,0.011368181,-0.17802045,-0.72843593,0.024419146,-0.41604328,-0.23508532,0.20367776,-0.016956074,0.3403764,0.077464,0.11779999,-0.4355785,0.5250953,0.13573568,0.9569806,0.057239287,-0.3422177,-0.38156897,0.2906378,0.2775497,-0.27908108,0.071522966,-0.22669958,-0.12053812,-0.58549064,0.32035774,-0.08359831,-0.30300516,0.23782131,-0.10120129,-0.09340962,0.52936864,-0.1481748,0.13073339,0.22502725,-0.113334134,-0.13197581,-0.21442239,-0.23247457,0.15686817,0.2981004,0.06654299,-0.07260815,-0.11165738,-0.18927094,0.4520864,0.0056220717,0.34839553,0.31983802,0.113363825,-0.32048315,-0.1544193,-0.0676413,0.45941186,0.18405616,-0.087509654,-0.2755415,-0.2925349,-0.26308197,0.086262144,-0.24268754,0.35136157,0.122538455,-0.42292818,0.74993867,0.15498044,1.3455343,-0.10127328,-0.29205003,0.09379776,0.46115395,0.08554795,0.051659014,-0.5984607,1.071344,0.45237827,-0.10701636,-0.04264868,-0.24336232,-0.23366082,0.17887093,-0.29836673,-0.24018732,-0.12379936,-0.5202569,-0.34753904,0.21080358,0.3005055,-0.059447985,-0.12107396,0.020577295,0.19307955,-0.017623493,0.16492932,-0.38325113,0.13481952,0.3005752,0.19822943,0.05091945,0.061143797,-0.5026709,0.39504856,-0.55415756,0.07423418,-0.2519366,-0.0044783824,-0.057496227,-0.2918797,0.24375118,0.104340024,0.4010245,-0.5339375,-0.3142598,-0.20827827,0.4831212,0.06798038,0.19286244,0.7677141,-0.30346802,-0.049399015,-0.0076237237,0.5497243,0.83508635,-0.33369747,0.10121442,0.41294542,-0.2659022,-0.3240094,0.3987077,-0.20014276,-0.03608535,-0.16466679,-0.17207691,-0.4820202,0.20110822,0.21999522,-0.26322937,0.0685746,-0.8085597,-0.16525146,0.31898147,-0.33423448,-0.3387113,-0.5307153,0.24206792,0.59777486,-0.32412556,-0.48792505,0.12624148,0.1292223,-0.13559775,-0.4372292,-0.1445553,-0.2065465,0.29902405,0.19799452,-0.3885452,-0.24595825,0.13027672,-0.41364044,0.069472305,0.011547004,-0.4092149,-0.14851442,-0.10388331,-0.042010646,0.7343133,-0.018597607,0.09294964,-0.61810225,-0.35394284,-1.0680618,-0.35432154,0.56465316,0.3271387,0.03996402,-0.70063674,-0.12456514,-0.14778371,-0.08621676,-0.0014861013,-0.24918441,0.26740894,0.1291233,0.5369725,-0.2197925,-0.8048348,0.41696146,0.12632531,-0.25360724,-0.5384186,0.36061922,0.15242195,0.913134,-0.023186317,0.048701517,0.42198506,-0.6640344,-0.017513556,-0.21031378,-0.08717605,-0.5309937,0.14434126 -399,0.39169198,0.024716329,-0.4501772,-0.006098793,-0.2988155,0.10779696,-0.16364051,0.43008474,0.36413142,-0.37515867,-0.2639002,-0.3814183,0.05710777,0.034812946,-0.019284012,-0.6337934,0.1955679,0.45150998,-0.5468922,0.610309,-0.2376189,0.52124035,-0.01066063,0.25737333,0.0020719308,0.18098706,-0.19525972,-0.11770367,0.012303407,-0.25866166,0.13171934,0.22640091,-0.7387532,0.33847564,-0.41848513,-0.38747534,-0.029583372,-0.41312873,-0.50035024,-0.8908288,0.1956374,-0.7560723,0.6612824,0.0098398905,-0.27903485,-0.12691058,0.026440445,0.5663761,0.02170958,-0.08488417,0.28957573,-0.072070114,-0.31505373,-0.053788595,-0.28310457,-0.4668073,-0.44831437,0.07522058,-0.22900942,-0.037803613,-0.21521775,0.25413153,-0.24893847,0.006912094,-0.16341776,0.51617485,-0.38569075,0.4735082,0.22775212,-0.03211812,0.1742368,-0.6886987,-0.13312778,-0.18995048,0.36183867,-0.2951127,-0.35721743,0.18711862,0.37115815,0.53505045,0.08940759,-0.23274279,0.11574267,-0.09514475,0.29313976,0.5063306,-0.12717362,-0.1784056,-0.15812851,-0.034525387,0.16840512,0.14415087,0.27790892,-0.61959547,-0.06118498,-0.19187348,-0.27140978,0.27461252,0.5987906,-0.07267483,-0.2017002,0.23261364,0.68584865,0.11696683,-0.099573925,0.30304706,0.0890059,-0.40998322,-0.2238283,-0.01630408,-0.21117148,0.49446753,-0.17988321,0.110949025,0.6106156,0.0100398045,-0.1902486,0.039867733,0.138839,-0.11119938,-0.4980928,-0.14154615,0.2288719,-0.5783421,0.14862452,-0.24704984,0.8316131,0.20827939,-0.5818541,0.43367517,-0.6272023,0.11208506,0.08385221,0.50181574,0.799419,0.1718503,0.07021815,0.6876911,-0.434035,0.110783085,0.0407195,-0.24326494,-0.09654395,-0.07912098,0.16726439,-0.45888388,-0.12932207,-0.10706195,-0.23224065,0.07413255,0.34823167,-0.65145457,-0.22471069,-0.028729044,0.87127465,-0.30714735,-0.12569514,0.98697853,1.0053341,0.7008928,0.13703424,1.7807028,0.32582018,-0.22164088,0.065097675,-0.30812213,-0.82390743,0.012973929,0.09232327,-0.7793973,0.12550029,0.22955543,-0.12516424,0.5232059,-0.7462581,0.049742147,-0.28891614,0.3881095,-0.068611704,-0.22783338,-0.39407128,-0.13046457,-0.061075136,-0.06818185,0.18243697,0.26878923,-0.13774271,0.28647533,0.17266263,1.129709,-0.10659088,0.0022254656,0.044263843,0.15666708,0.23619786,-0.14004713,-0.115162626,0.3697498,0.28681982,-0.1502752,-0.46457112,0.059747934,-0.23457211,-0.2596089,-0.22759742,-0.03262195,-0.24666458,0.103975266,-0.3628046,-0.27425855,-0.2430535,-0.15459807,0.59080213,-2.3239622,-0.31348684,-0.116777696,0.45820644,-0.24574266,-0.45665672,-0.07940538,-0.4765097,0.43449467,0.05009663,0.38556603,-0.69781494,0.34894806,0.40639222,-0.64917195,-0.1775184,-0.64278924,-0.10063718,0.19878432,0.01665276,-0.036383294,0.0786827,-0.11699128,-0.11905052,0.24083652,-0.11980404,0.2067907,0.5589143,0.40126917,0.038469996,0.11251343,0.18940727,0.6276271,-0.1807833,-0.24994612,0.34836298,-0.3958691,0.34044963,-0.053627886,-0.029871656,0.51115596,-0.36574772,-0.48428434,-0.73815817,-0.6480722,0.692103,-0.08897858,-0.31481934,0.16350645,-0.39718467,-0.3752454,0.050131876,0.71458757,-0.06323253,0.020304946,-0.9607168,-0.15421669,-0.05222342,0.29109514,-0.078682035,-0.07194225,-0.48407093,0.70305693,-0.26996535,0.24874184,0.5445047,0.28979185,-0.29256824,-0.45968622,0.042924866,1.1038349,0.47699717,0.17168155,-0.33166093,-0.120849006,-0.6288695,-0.20096079,-0.10141493,0.6998222,0.58116657,-0.1998388,-0.06303459,0.34514964,0.16676371,0.119810894,-0.19439664,-0.395838,-0.09344048,-0.096488625,0.4440263,0.655061,-0.34543338,0.4428766,-0.24022867,0.2757994,-0.2817555,-0.63810074,0.52804494,1.0168408,-0.27275366,-0.08479854,0.5917252,0.095694885,-0.2777583,0.43719292,-0.6023179,-0.23387238,0.4316898,0.084232956,-0.5787878,0.12507428,-0.28163356,0.071467295,-0.92877775,0.5838649,-0.32229388,-0.6969741,-0.5150245,0.01185276,-2.1645172,0.18298443,-0.21873783,0.09540324,-0.2239467,-0.1388121,0.017745825,-0.1194669,-0.5346035,0.30577037,-0.010182849,0.5254861,-0.10830971,0.29537266,-0.10398969,-0.28569424,-0.2455176,0.10216783,0.2366599,0.25664994,-0.29798982,-0.34881195,-0.03427686,-0.18331376,-0.21923648,0.0649203,-0.97661793,-0.39227107,-0.1696729,-0.74282575,-0.1624363,0.6317158,-0.6262182,0.06303187,-0.34272972,-0.11903059,-0.1548829,0.3263861,0.2445578,0.14621447,0.113148876,-0.014707482,-0.3281837,-0.3002265,0.2597129,0.12951306,0.19028851,0.35979465,-0.0762513,0.31984636,0.18927646,0.8683921,-0.051207658,0.8613876,0.3844661,-0.24337676,0.40010446,-0.15611452,-0.23425214,-0.6480701,-0.23677972,-0.20645425,-0.5292208,-0.52595174,-0.08060134,-0.4669482,-0.6418115,0.35787064,0.18794118,-0.12731816,0.16981475,0.085875675,0.34439528,-0.18090947,-0.033797693,-0.20129624,-0.08325717,-0.5071671,-0.41607162,-0.5359608,-0.4301924,0.3051813,1.1153169,0.039830104,0.23352449,0.23164234,-0.25770906,-0.0048245285,0.29651898,0.015808774,-0.07413325,0.6954378,-0.15836035,-0.5098585,0.36777702,0.1804493,-0.30725056,-0.83685726,0.321637,0.7515204,-0.7754273,0.9001468,0.18517168,-0.10409261,-0.11533736,-0.38496032,-0.32286674,0.058079287,-0.46593994,0.2939796,0.10960452,-0.5392535,0.12100426,0.41844457,0.019027976,-0.79310703,0.5255817,-0.19184828,-0.105636425,0.08379196,0.3784266,-0.08209194,0.040160272,-0.044908945,0.14974402,-0.2506941,0.2663298,0.13422976,-0.32050565,0.3029338,-0.24111745,-0.09884198,-0.92006105,0.048285585,-0.4633592,-0.38520148,0.02001701,0.12904093,-0.16037439,0.3100189,0.5220299,0.2925403,-0.1247005,0.16551235,-0.13828503,-0.35329387,0.24069253,0.3237725,0.45171863,-0.31485933,0.63223404,-0.102187954,-0.18001501,-0.20735525,0.3043728,0.5642676,0.043295495,0.4031296,0.29963797,-0.06767594,0.1488615,0.85024774,0.051652852,0.57582206,0.22456291,0.0022703845,0.14593242,-0.0056239734,0.17899132,0.10089053,-0.56439793,-0.035115086,-0.16743049,0.11649255,0.4527086,0.22383657,0.3016822,-0.12545468,-0.59308875,-0.11578565,0.18665688,0.30668914,-1.2638664,0.20686167,0.3001876,0.8308626,0.42791972,0.0010981285,-0.008166109,0.35288456,-0.079059295,0.31381184,0.2182788,-0.256772,-0.21102987,0.3885589,-0.764457,0.32622588,-0.18475287,-0.01600696,0.28410822,-0.20143065,0.3177714,0.9724618,-0.22025385,0.0056619644,-0.1596744,-0.12828,0.09292006,-0.34497267,0.29326564,-0.45789692,-0.37500462,0.7917109,0.57877886,0.27838528,-0.5204823,0.18201014,0.1636777,-0.22739877,0.09820581,0.026130777,0.10212298,0.08516801,-0.51984763,-0.286536,0.5760132,-0.26519617,-0.034466162,0.19793159,-0.23414482,0.25406778,-0.28092864,0.18255483,-0.01908439,-0.99749047,-0.107833266,-0.360906,-0.3508724,0.4412139,0.06711486,0.11287545,0.22414318,0.12267951,-0.2474157,0.75195855,-0.10749745,0.9748109,0.26865557,-0.04427336,-0.1168511,0.47671303,0.26790857,-0.11465229,0.107821375,-0.09897309,0.10820052,-0.50419474,0.4883981,0.12638249,-0.33224875,0.119366236,-0.046301045,-0.0064810514,0.41841248,-0.17733558,-0.1453524,0.30745995,-0.14529036,-0.14081377,-0.06712469,-0.07338343,0.22776319,0.5797018,0.0053983377,-0.105830275,-0.18237416,-0.29268375,0.1888163,0.0917025,0.33729628,0.59240395,0.20551865,-0.47301775,-0.06990835,0.3419011,0.42870983,-0.24053223,-0.14363629,0.12127275,-0.39120024,-0.35870054,0.29513764,-0.044020727,0.3511153,0.021688405,-0.22085561,0.7733502,0.42831305,1.3362287,0.1583862,-0.3548425,0.09529054,0.47098783,-0.11235334,-0.02567432,-0.44651616,1.0438608,0.49899846,-0.13078068,-0.058230393,-0.37512174,-0.09505704,0.3332662,-0.02798958,-0.12272184,-0.03616394,-0.75825983,-0.30037606,0.17706765,0.41934484,-0.117912054,0.073272735,0.10553796,0.37397468,-0.18476817,0.31905794,-0.79056937,-0.02487369,0.28110167,0.38147053,0.06469929,0.20573409,-0.29464343,0.4346934,-0.6272275,0.13677074,-0.18848838,0.020598246,-0.32378584,-0.28993145,0.050051205,0.16092142,0.32939273,-0.5964824,-0.26702613,-0.399679,0.3767325,0.21573679,0.055561524,0.7631627,-0.16015497,0.012196624,0.035245333,0.5128975,0.894892,-0.23908004,-0.13832524,0.43755376,-0.4416119,-0.5584187,0.39090627,-0.36791295,0.051417787,-0.15055127,-0.2865469,-0.56528974,0.22796117,0.13266018,-0.094054975,0.054322243,-0.688254,0.14599489,0.36521637,-0.25632668,-0.13853249,-0.21872045,0.26211274,0.8803712,-0.15584405,-0.36109003,0.037549775,0.11650955,-0.44376072,-0.59885925,-0.1256523,-0.3780389,0.32428965,0.05423597,-0.29749313,-0.17721912,0.054180283,-0.47278875,-0.11159445,0.15430191,-0.26174697,0.103931814,-0.17377783,-0.14980909,0.76319164,-0.14404248,0.22182114,-0.48524863,-0.54372907,-0.6320215,-0.31018576,0.3407365,0.51332986,-0.12234998,-0.62109524,-0.12591146,-0.20233296,0.03317466,0.17407066,-0.35876495,0.4334393,0.39414245,0.51081795,-0.20866098,-1.1442418,-0.062054098,0.2414954,-0.2744372,-0.64637125,0.33266133,0.11527021,0.85634875,0.06772954,-0.032710653,0.25348008,-0.5776647,0.22836384,-0.19568811,-0.06340037,-0.70547926,0.034960542 -400,0.18438314,-0.06712983,-0.5809528,-0.21488993,-0.15501611,0.2288882,-0.15135927,0.5084624,0.15331867,-0.27004355,0.07929175,0.034397196,-0.309916,0.5028694,-0.19410203,-0.8277963,0.047391083,0.08318346,-0.6949911,0.70816326,-0.34200284,0.2084527,-0.021396017,0.288065,-0.0403546,0.040855438,0.30402374,0.12816186,0.02450102,-0.27692798,0.060928714,0.099054106,-0.5935497,0.50201917,-0.025108814,-0.11603832,-0.05946973,-0.46083474,-0.07465526,-0.72987574,0.20760965,-0.49818072,0.5476856,-0.109761335,-0.4098389,-0.041630883,0.13963018,0.0730839,-0.18943523,-0.04976781,0.29526293,-0.17900622,-0.09843534,0.13037997,-0.30715105,-0.40979278,-0.5339238,-0.11149418,-0.57676834,0.0019692082,0.006599615,0.27420756,-0.4325721,-0.18142766,-0.42222556,0.42856088,-0.34260908,-0.25476673,0.34227738,-0.17748368,-0.10136857,-0.5563496,-0.118429266,-0.08188658,0.35109332,0.023933416,-0.23786145,0.32501897,0.18954231,0.48922548,0.10225574,-0.25918123,0.04283522,-0.3123758,0.28267053,0.565334,0.03827096,-0.38031313,-0.26932004,-0.07420012,0.39134526,0.26333484,0.15749295,-0.38653025,0.04120415,-0.16808026,-0.084696986,0.5289325,0.5186755,-0.46425757,-0.14537239,0.48176387,0.37439513,0.49367204,-0.148479,0.21819139,-0.17092031,-0.36150208,-0.3321624,0.2389266,0.01862449,0.41796878,-0.08701802,0.26706788,0.5376687,0.0613268,0.019737238,-0.1419345,-0.08766084,-0.06980487,-0.32201567,-0.18454774,0.26731125,-0.5418083,0.22226112,-0.34499124,0.5626964,0.1036839,-0.61728096,0.30085868,-0.44547284,0.1313203,0.09204636,0.66884446,0.897813,0.40200892,0.011788043,1.0382957,-0.38566634,0.08823362,0.12227172,-0.0521024,-0.054198157,0.1028049,0.08839828,-0.5184009,0.23482297,-0.0775537,0.12580557,-0.04733737,0.04968788,-0.5115883,-0.3008056,0.0801576,0.53628594,-0.25475755,-0.15661146,0.7383051,1.1464804,1.1527127,-0.1951914,1.408206,0.24283539,-0.1310515,-0.27888784,0.080707304,-0.4702022,0.13018638,0.43307352,0.37001,0.39773574,-0.145632,-0.026568627,0.48952642,-0.28450975,-0.092679,0.059473295,0.41021955,-0.0866432,-0.30446592,-0.49446234,-0.08944583,0.3235149,-0.1019708,-0.02523614,0.3248955,-0.30630806,0.4604396,0.04766051,0.94457144,-0.07125168,0.13975202,0.12175261,0.2193503,0.2631149,-0.30937788,0.11916822,0.26265308,0.34734425,-0.26462868,-0.52605754,0.01913821,-0.54188186,-0.40476468,0.004603175,-0.59295535,-0.37387395,-0.1398771,-0.41180226,-0.012932439,0.08421812,-0.13882798,0.4766958,-2.8600705,-0.32316795,-0.3949271,0.074186996,-0.28530025,-0.25127736,-0.3069765,-0.35711077,0.40026653,0.23630898,0.49034515,-0.3690492,0.3628818,0.4273822,-0.24710512,-0.002718995,-0.659853,-0.07359529,0.15811552,0.28248718,-0.13738602,-0.10264055,-0.1330464,0.40638566,0.53826016,0.33208042,0.0005390495,0.38099623,0.5736803,-0.18312526,0.31723967,-0.1482151,0.70058227,-0.44524977,-0.04375757,0.35437313,-0.35530952,0.8855877,-0.19821505,0.13080831,0.57170874,-0.27552694,-0.6441197,-0.29430056,-0.42915034,1.3088189,-0.4819571,-0.5090262,0.12803553,0.13918738,-0.09984138,0.010044728,0.5919503,-0.0034715533,-0.073123515,-0.41508853,0.07142341,-0.13390015,0.35011196,-0.30076298,0.1396216,-0.39144084,0.66643256,-0.12789577,0.7325156,0.36011398,0.22067387,-0.14746024,-0.3262232,-0.07493419,0.87126523,0.57648575,0.07840335,-0.18549187,0.0035352658,-0.4568572,-0.18246269,0.097082905,0.7547906,0.4222065,0.029495252,0.02069825,0.37816846,0.07123909,0.14893594,-0.13125068,-0.48193192,-0.2833201,0.19119294,0.6450115,0.49986354,-0.25347006,0.41847822,-0.0015051117,-0.15243581,-0.38634112,-0.4814707,0.3571451,0.44090188,-0.28546923,-0.18900484,0.5191029,0.3987763,-0.19786389,0.45812368,-0.61573213,-0.39595017,0.7136232,-0.04402082,-0.3906881,0.05612266,-0.24609514,-0.13636194,-0.7844658,0.2334563,-0.4091488,-0.67591596,-0.5831738,-0.24392502,-2.258521,0.08293036,-0.081728615,0.025282884,-0.31727633,-0.12717749,0.25244924,-0.545352,-0.7547167,0.026945377,0.0626932,0.4546033,-0.2134489,-0.02926541,-0.23940392,-0.4555668,-0.1968231,0.39983344,-0.024116153,0.15067859,-0.15210544,-0.19791378,-0.06540191,-0.039814617,-0.32224122,-0.031105697,-0.42911562,-0.37162986,-0.04771827,-0.2771759,0.13218419,0.6996166,-0.6420044,-0.048090708,-0.12532786,-0.05880397,-0.022979328,0.12815835,0.17891097,0.3873391,0.06877239,-0.19296461,-0.19063143,-0.28275296,0.15972482,0.24183655,0.37391075,0.5687481,-0.16785032,0.26387957,0.4570733,0.7513013,0.15368718,0.8087233,0.054028686,-0.027156321,0.49957252,-0.13943683,-0.31341562,-0.5790949,-0.3107157,-0.030062819,-0.43521392,-0.6557111,-0.040679455,-0.23651437,-0.7313318,0.25972912,0.31293347,0.54744315,-0.33979174,0.28349397,0.31806538,-0.32828906,0.17186548,-0.026463456,-0.07673304,-0.36633512,-0.44148663,-0.8121779,-0.46738687,0.24255683,0.97600365,-0.2424509,-0.15046597,0.10849575,-0.29609954,0.042616438,-0.015520061,0.22338259,-0.0066989907,0.16598941,0.07220559,-0.68281335,0.37046576,-0.11228093,-0.0060592196,-0.3832738,0.14383739,0.8013487,-0.33525726,0.41231132,0.28059295,0.14669432,-0.38376632,-0.7373304,-0.07367362,0.2334351,-0.19366185,0.44847807,0.21259844,-0.5411003,0.43437704,-0.049800485,0.057921153,-0.6731079,0.57011366,0.022130214,0.15632997,0.14039145,0.42165437,0.12176102,-0.07942265,-0.07492801,0.43836737,-0.41499528,0.4473387,0.4340383,-0.05235648,0.29113454,-0.09143051,-0.46963117,-0.50898594,0.0061129183,-0.7845885,-0.40385988,0.12932183,-0.020604754,0.045190502,0.1055071,0.09669223,0.4378706,-0.33478168,0.3775176,0.059385482,-0.31527236,0.6285531,0.51321363,0.35348645,-0.44080457,0.5853165,0.2224235,0.12439054,0.09014842,0.15933028,0.47964814,0.32187644,0.40824232,-0.36592352,0.08690397,0.019034922,0.63412005,0.22313166,0.1175842,0.12178128,-0.18303919,0.17613514,-0.0150873335,0.18303137,-0.18347822,-0.47696552,-0.112236224,0.09464743,-0.00877817,0.6182453,0.101961076,0.15909599,0.17952721,-0.15815991,0.225563,0.06307126,-0.3101006,-1.262937,0.50164646,0.13839763,1.0218638,0.3987882,0.12880588,-0.049416166,0.29216334,-0.3315651,0.15088388,0.5859609,-0.029396215,-0.44069877,0.73975587,-0.42903474,0.4054868,-0.2213778,0.08099454,0.23642659,0.14828676,0.4762728,0.8261259,-0.1777336,0.10479156,-0.21287994,-0.1984132,0.15011895,-0.28572068,0.17857839,-0.37682864,-0.49304876,0.48137307,0.34364557,0.25263593,-0.39257157,0.044214975,-0.049285535,-0.2702462,-0.035492495,-0.10582361,0.10565353,-0.1740197,-0.36786318,-0.2131287,0.5947024,-0.36056653,-0.06293275,0.023633962,-0.32184678,0.16609515,-0.0151405735,0.22318335,0.004422406,-0.75958306,0.046479475,-0.4204688,-0.43923387,0.11465907,-0.38590863,0.22154026,0.14676987,-0.06745768,0.013707439,0.34787127,0.0075179436,0.5661797,-0.22986268,-0.07601055,-0.3447934,0.24466574,0.12485134,-0.265001,0.09883708,-0.2896032,0.18549906,-0.4944847,0.27204344,-0.069353655,-0.38373888,0.01766622,-0.014735264,-0.13124497,0.37105858,-0.08775283,0.07798145,-0.077529244,-0.3595878,-0.18077195,-0.067087166,-0.3122038,0.24581821,-0.13181688,0.19638719,-0.14252336,0.061733667,-0.08490751,-0.034582987,0.2897421,-0.09055016,0.41463947,-0.0071446574,-0.59808373,0.19701695,-0.019180506,0.35105944,0.3386089,-0.09524839,-0.24842674,-0.28167087,-0.46306872,0.7181633,-0.32949227,0.23165183,-0.046960194,-0.36215624,0.6238647,0.18140002,1.2008247,-0.057672054,-0.4680606,-0.06787715,0.7639548,0.17802654,-0.100620955,-0.3009962,0.8572976,0.4009833,0.12711066,0.13382697,-0.34554777,-0.27265474,0.3243675,-0.18209119,-0.14029439,0.060231198,-0.5327765,-0.14526652,0.053276855,0.14560074,0.13910487,-0.22512893,-0.4214313,0.27929807,0.21197218,0.4832064,-0.67984366,-0.36063877,0.2249781,0.14833419,-0.055629462,0.1358218,-0.2870929,0.2811569,-1.1080198,0.28728625,-0.53337115,0.07009962,-0.13978498,-0.3634443,0.21828406,-0.10638691,0.42543432,-0.28087762,-0.32236442,0.050365325,0.4784191,0.33737317,0.22362001,0.7025277,-0.21361987,-0.0924552,0.14688653,0.47985652,1.0939852,-0.079533674,-0.14483668,0.16337754,-0.46501315,-0.79986596,-0.19341226,-0.6416228,0.3261766,-0.27711767,-0.4191654,-0.25681877,0.092151366,0.0016870102,-0.063619375,0.039660722,-0.711379,-0.12800327,0.26494902,-0.17304087,-0.25038773,-0.3899932,0.00078008574,0.7512997,-0.2822677,-0.38073203,0.05022199,0.1635502,-0.30991682,-0.8889396,0.23530205,-0.38915148,0.28708985,0.06736233,-0.38633373,-0.03661422,0.19496803,-0.5078211,0.28209224,0.2369823,-0.30566722,-0.18840735,-0.09737966,-0.14685506,0.8884974,0.05689943,0.014101602,-0.44651437,-0.55542284,-0.5209797,-0.44859013,0.15198143,0.16997051,-0.069717765,-0.70264345,-0.08264006,-0.37385657,0.16949125,-0.08140779,-0.2652891,0.22696143,0.16141123,0.45806623,-0.17639603,-1.0322412,0.19712871,0.033901054,-0.013112068,-0.31432977,0.37463066,-0.12969787,0.6645474,0.052838694,-0.061098233,-0.13345093,-0.8828977,0.3139643,-0.31018797,0.034353346,-0.4632957,0.44868407 -401,0.5471104,-0.102342494,-0.5094384,0.016130729,-0.5048779,-0.039230637,-0.21061502,0.23475564,0.4734177,-0.1444976,-0.26843143,0.08028341,-0.053414676,0.08875232,0.05849337,-0.5760516,-0.09231607,0.32695732,-0.9860198,0.68741995,-0.44029364,0.30505365,0.033325978,0.46014315,0.01491269,0.3232201,0.003851699,0.07034318,-0.19986425,-0.011806245,0.11418476,0.20149381,-0.69465303,0.17230128,-0.2983327,-0.23810515,-0.24458666,-0.48620468,-0.22193787,-0.6861726,0.11951669,-0.7512831,0.57181555,-0.06266485,-0.35968882,-0.19204605,0.213051,0.10746444,-0.18646193,-0.035203867,0.25202852,-0.035469446,-0.37507337,-0.32677817,-0.07005272,-0.22649762,-0.54254645,0.044448137,-0.39546224,-0.029643271,-0.044414412,0.22647555,-0.18057871,-0.06598115,-0.28300235,0.5987815,-0.2755776,0.0930331,0.39858755,-0.067125164,0.06630587,-0.6284567,0.092762046,-0.012296866,0.4313602,0.10730536,-0.4719092,0.26549482,0.28976223,0.5596028,0.2627209,-0.3360422,-0.24587466,0.11042906,0.18200555,0.36362362,-0.26571852,-0.114081845,-0.15758778,0.013527312,0.27418295,0.24770644,0.1818472,-0.3418631,0.08786968,-0.43972534,0.14630838,0.3585618,0.41361183,-0.23848507,-0.32367104,0.18385589,0.6807931,0.37066168,-0.15631975,-0.027279105,-0.0117664775,-0.5666984,-0.13889854,0.030372305,-0.055059593,0.32947683,-0.16505252,0.17656955,0.556917,0.028409908,0.04928143,0.33613318,0.10837877,0.1886932,-0.5481575,-0.17996743,0.25283334,-0.5233453,-0.083166495,-0.26644513,0.39591795,0.09320237,-0.54646903,0.40888852,-0.68507385,0.2148895,0.13863297,0.5233658,0.9863414,0.6811657,0.17412826,0.715823,-0.20061418,0.19708546,-0.072913185,-0.13227941,0.25720066,-0.22774342,0.25344136,-0.5947502,0.077829614,-0.2911319,-0.1340348,0.09433324,0.5662519,-0.67200387,-0.31671825,0.033605866,0.719338,-0.2226769,-0.16693719,0.8753323,1.0970637,1.05893,0.15925315,1.3742207,0.37287885,-0.2983868,0.034582574,-0.29791382,-0.7284071,0.14380567,0.30925828,-0.40640688,0.47529772,-0.19726923,-0.09112542,0.47126558,-0.49678588,-0.046112914,-0.0129099125,0.47625503,0.0636626,-0.11293733,-0.45486137,-0.29985145,-0.035076495,0.038814545,0.21739043,0.37617776,-0.2799354,0.2130408,-0.05407295,1.0884627,-0.2079577,0.11292275,0.14806227,0.13438746,0.31721213,-0.29641375,-0.21577524,0.33762607,0.20742324,-0.09450601,-0.4169496,0.24037986,-0.37528515,-0.3437541,-0.11980975,-0.19533217,-0.16828267,-0.04600999,-0.45037287,-0.40530705,-0.10660391,-0.39708552,0.3693492,-2.4147885,-0.27191764,-0.06813977,0.4889833,-0.23531768,-0.3492454,-0.273854,-0.41203764,0.16575532,0.05832698,0.40704945,-0.53675216,0.45855826,0.52587324,-0.8136155,-0.20280859,-0.7352143,0.03758359,0.17464487,0.24876098,-0.0283932,-0.14737211,-0.044083495,0.049444515,0.508922,-0.078932725,0.13574672,0.62374294,0.32736614,-0.05415374,0.18850546,-0.095757425,0.63987285,-0.42888308,-0.34133577,0.4303626,-0.40071133,0.352304,-0.09893345,0.04162624,0.755435,-0.4523131,-0.83652604,-0.50711215,-0.16378649,0.9525797,-0.16947412,-0.30964956,0.039987717,-0.6478281,-0.13389893,0.23509641,0.79772854,-0.037618034,-0.014575094,-0.7729978,0.007199977,0.021724632,0.16015632,-0.013627721,-0.045620847,-0.43420824,0.76638776,-0.046506736,0.52396613,0.3036849,0.25887266,-0.2426871,-0.4336435,0.19417588,0.76604426,0.453819,0.0658204,-0.19364385,-0.11990649,-0.16400246,-0.036937945,0.0019122107,0.7423585,0.58726776,-0.24722163,0.17942545,0.23383021,0.020681515,0.10070085,-0.22240391,-0.21471505,-0.21298364,0.11692853,0.44811177,0.8722922,-0.11087891,0.32335708,-0.21882798,0.23004495,-0.18334782,-0.7050312,0.6287537,0.785308,-0.36477706,-0.037537318,0.63965607,0.30938032,-0.4499926,0.51444036,-0.5355936,-0.37586954,0.39578167,-0.17049514,-0.32519552,0.20430814,-0.3515363,0.29351786,-0.63583523,0.5087346,-0.47511503,-0.5130847,-0.5117984,0.018489957,-1.8063935,0.34410697,-0.16160667,0.076387085,-0.27575245,-0.21867761,0.1955783,-0.5430064,-0.77299935,0.14949845,0.18045858,0.6114222,-0.25166735,0.09015368,-0.03918266,-0.57586604,-0.10455398,0.24176393,0.28855795,0.37204367,-0.28346878,-0.29596773,-0.15381943,0.07977159,-0.34670225,0.09976474,-0.8175683,-0.5430973,-0.10771928,-0.6380182,0.027288776,0.565735,-0.44766143,0.033648483,-0.3606863,0.13129722,-0.04540888,0.36751,0.027151743,0.37362668,0.23963077,-0.09116233,-0.05578783,-0.12575151,0.33618638,0.045083165,0.26078948,0.37603572,-0.063580856,0.35216638,0.38623363,0.98912185,-0.18879817,1.0789243,0.3602542,-0.15188758,0.3024292,-0.33886668,-0.2781312,-0.5718292,-0.28747267,0.019958155,-0.47505683,-0.39313933,0.17008086,-0.4107203,-0.8422719,0.40466008,-0.06467708,0.20661101,0.10353891,0.2186233,0.5049241,-0.3770719,0.032898746,-0.18752027,-0.19589867,-0.49826095,-0.28942934,-0.53634936,-0.5912963,0.24180542,1.2218674,-0.3494901,0.3196583,0.13603322,-0.30559346,0.052145246,0.09227705,-0.105713435,0.09002964,0.5271002,0.12614669,-0.4347317,0.112653,0.019619746,-0.30326796,-0.36935148,0.49737436,0.7405891,-0.79917425,0.7812977,0.3158991,-0.033575356,-0.12137882,-0.6022099,-0.18742903,0.14682068,-0.20376039,0.45305315,0.4241402,-0.74999344,0.3628456,0.33562663,-0.36321998,-0.8941251,0.32558408,-0.035906058,-0.17803624,-0.22980908,0.526017,-0.012344905,-0.043510947,-0.17225185,0.33575407,-0.39376995,0.25269642,0.056912232,-0.1411951,0.0040178215,-0.20916112,-0.39236972,-0.81720304,0.0613328,-0.60365933,-0.4401218,0.44062132,0.02819267,-0.06492387,0.18494828,0.43984097,0.37607923,-0.32722667,0.08652729,-0.17338912,-0.39721438,0.17177339,0.44288573,0.4545381,-0.3588087,0.43971178,0.08656736,-0.083066046,0.124970235,0.113458075,0.33963466,-0.106604934,0.4317727,-0.07218913,-0.03915401,0.11007363,0.76983494,-0.034360353,0.28732395,0.045715757,-0.10233327,0.27479437,-0.057340737,0.2608827,-0.3006869,-0.3851802,0.09362275,-0.03323579,0.17927457,0.42481932,0.32890248,0.18186699,0.012985195,-0.2446707,-0.04707695,0.33710048,0.11792948,-1.4081715,0.4581771,0.17274663,0.9539235,0.59380925,0.15803686,-0.31517002,0.61806935,-0.15047288,0.12267748,0.5207463,-0.20586602,-0.37814403,0.5225779,-0.67774487,0.42493483,-0.18823764,0.014994609,0.14262539,-0.014249444,0.27261925,0.82456017,-0.14741442,-0.009808438,-0.174945,-0.12398779,-0.033172403,-0.22716321,0.09973145,-0.48163837,-0.502286,0.9879891,0.3681464,0.48560214,-0.3458167,0.033928454,0.073087975,-0.36989954,0.3994035,-0.069928996,0.09991383,0.04922619,-0.55291593,-0.09933109,0.43031642,-0.09997799,0.010296891,0.022918237,-0.16453834,0.000681817,-0.32999977,-0.045118418,-0.12653364,-0.83755547,-0.020142687,-0.45895338,-0.39502588,0.337454,-0.16907641,-0.19401659,0.2635096,0.12817265,-0.28897983,0.56859803,-0.051612716,0.7247977,0.1426132,-0.10582357,-0.04872137,0.5063122,0.1437706,-0.3164289,0.14407781,-0.19609664,0.36484236,-0.5515148,0.7059582,0.074293986,-0.47738218,0.07886108,-0.13163117,0.02131416,0.4473841,-0.21526875,-0.29108956,0.0005649499,-0.14459752,-0.42984197,-0.010250045,-0.15923794,0.15957835,0.34404776,-0.15554562,-0.22068821,-0.28101617,-0.20155656,0.5755078,0.08171618,0.33104032,0.4114706,0.03189262,-0.35142913,0.21021561,0.5025967,0.5544709,0.18451378,-0.0665852,-0.6281694,-0.24928565,-0.4248433,0.42788187,-0.10072928,0.23243164,-0.06722398,-0.16886835,0.990775,0.1517068,1.1039948,-0.050995376,-0.29530266,0.015917907,0.4688902,-0.18268749,-0.20373945,-0.52336293,0.9860501,0.5153324,-0.15083776,0.028964734,-0.371185,-0.2292877,0.2970485,-0.3351333,0.038073856,-0.055251133,-0.7181021,-0.3362632,0.06290009,0.10745569,-0.0007126161,-0.21831869,0.056263737,0.12831672,-0.06625111,0.17127001,-0.70622575,-0.13432573,0.16043079,0.41200203,-0.084573284,0.41137198,-0.2667213,0.2557935,-0.91875935,0.14382792,-0.30542946,0.007946178,-0.1842442,-0.59797174,0.2103575,0.20144667,0.3437039,-0.38506943,-0.30326128,-0.21539102,0.3038362,-0.021061037,0.12171741,0.6923857,-0.27486092,-0.097257175,0.29373288,0.60527515,1.097955,-0.21281007,-0.028898831,0.11500982,-0.40558583,-0.7295055,0.40266103,-0.3499152,-0.058669765,-0.17438526,-0.32520035,-0.48648357,0.1523195,0.21292962,0.204513,-0.08599132,-0.68855,0.10842698,0.18826342,-0.26915914,-0.036054228,-0.24223717,0.3502833,0.8200942,-0.14495707,-0.2539925,0.04806876,0.1754719,-0.3176448,-0.44471768,-0.030136015,-0.52690804,0.16281836,0.17155676,-0.38879538,-0.08323383,0.0012123095,-0.5934361,0.059643608,0.14656594,-0.28669205,0.10834457,-0.2681594,-0.012938602,0.9060332,-0.07738395,0.13469163,-0.23342316,-0.7061457,-0.89850533,-0.30990744,-0.15231626,0.2141769,-0.028175231,-0.6874219,0.011620053,-0.2661219,-0.20561567,0.12717378,-0.3598349,0.35516214,0.24905765,0.38356972,-0.36458546,-1.0594131,0.08156144,0.30487442,-0.095785804,-0.53303766,0.36347312,0.074205756,0.8818899,0.09667535,-0.114657044,-0.061289035,-0.5699417,0.1486177,-0.2783995,0.12052058,-0.71676856,0.026848128 -402,0.52976876,-0.19649707,-0.459397,-0.045846265,-0.14595553,0.08074615,-0.19763584,0.47854295,0.18107596,-0.50196755,-0.19615676,-0.18836541,0.015833903,0.26128194,-0.2551295,-0.41051203,0.003817306,0.1657492,-0.4311748,0.62703425,-0.29861277,0.31165218,0.12815657,0.3921833,0.10796503,0.20346005,0.254619,-0.17381702,-0.17309867,-0.19300574,0.038965877,0.13346389,-0.58020204,0.17898442,-0.19074275,-0.35569525,0.03574149,-0.5303557,-0.39881754,-0.8250395,0.316938,-0.8267587,0.5158011,0.050736766,-0.33456382,0.22092326,0.093644574,0.22113724,-0.2049511,0.041582294,0.11884538,-0.024821432,-0.062200543,-0.13865168,-0.08225188,-0.20289294,-0.62096953,0.08328467,-0.3441343,-0.07002498,-0.33675286,0.11970064,-0.31299785,0.017224608,0.018995518,0.5642557,-0.45350105,0.08287273,0.07088461,-0.10062255,0.3602328,-0.5631781,-0.23644494,-0.06953239,0.2513217,-0.2221728,-0.17088011,0.24544828,0.24692623,0.5868855,-0.048833895,-0.09304547,-0.31664938,-0.038832687,0.1575183,0.5762023,-0.2170235,-0.5664686,0.046721254,-0.052815013,0.4010418,0.10276245,0.12102404,-0.33338442,-0.22126958,0.018878842,-0.2071098,0.286158,0.5629765,-0.29739103,-0.186925,0.3831445,0.48709956,0.090192094,-0.097185835,0.15776081,0.0022884437,-0.47023678,-0.17601998,0.052686416,-0.26028463,0.5264108,-0.10849902,0.35368773,0.5668123,-0.16457245,0.07013211,0.20717007,0.012338259,-0.15996285,-0.07523842,-0.3302695,0.14172271,-0.41937378,0.04044692,-0.17344595,0.83374393,0.16225317,-0.9803196,0.37718323,-0.41006973,0.13949206,-0.03186388,0.47110024,0.6371505,0.41317847,0.40924576,0.7237383,-0.5559218,0.035275765,-0.046956223,-0.32237238,-0.04026491,-0.12135164,-0.112623654,-0.50292075,-0.08789406,0.01230946,-0.21421584,0.12948318,0.3536705,-0.42972645,-0.024546228,0.06498469,0.8353911,-0.26450244,-0.004617548,0.7411902,1.0351918,1.0210091,0.11152507,1.1204245,0.104216725,-0.24526592,0.16196747,-0.22699696,-0.7392753,0.29001638,0.51707727,0.051249392,0.25454962,0.10956114,0.048371196,0.33962637,-0.4906594,0.11190781,-0.11657758,0.122286476,0.098978326,-0.12354017,-0.39192504,-0.25533408,-0.053929795,0.021068012,-0.06550304,0.1964943,-0.22780101,0.33973208,0.05577987,1.7597317,-0.058957685,0.055406317,0.11130783,0.5210611,0.16092794,-0.17196724,-0.08299808,0.19627616,0.23581554,0.06922005,-0.62505645,0.056230154,-0.13386443,-0.50964314,-0.1563974,-0.2804204,-0.058890525,-0.041174445,-0.4709925,-0.15605387,-0.20066194,-0.44400266,0.39822063,-2.714137,-0.1010317,-0.019903159,0.27347293,-0.28863952,-0.43236813,-0.08660402,-0.5236126,0.41088834,0.38846162,0.46276578,-0.7969884,0.24357125,0.38704026,-0.4598357,-0.08413753,-0.68877304,-0.20550285,-0.042368047,0.3480469,0.093968645,-0.123430364,0.014748935,0.28953037,0.426025,0.025121678,0.1079447,0.26954764,0.34184977,0.12346509,0.40308458,-0.104058504,0.37234756,-0.1444905,-0.1590252,0.46984187,-0.36897284,0.11777903,-0.18489258,0.17439477,0.29624787,-0.5222559,-0.8756341,-0.745681,-0.16858646,1.2020452,-0.0984571,-0.49138483,0.31324038,-0.20647262,-0.19016454,-0.09701999,0.48238316,-0.15355946,-0.059741892,-0.97113776,-0.059318606,-0.083751366,0.25131702,0.09790778,-0.028114738,-0.46488246,0.6234446,-0.04074482,0.523576,0.4142213,0.111068584,-0.16001572,-0.4197567,0.15995486,1.0612293,0.45738122,0.17639078,-0.22751443,-0.08683122,-0.4285287,-0.10339907,0.06333045,0.45450085,0.7207436,-0.029615736,0.06952303,0.22044028,0.024242532,0.07620443,-0.18142296,-0.29345942,-0.090416685,-0.02379055,0.5983091,0.6279678,-0.18040743,0.32554835,-0.09062519,0.09370062,-0.13756332,-0.39343926,0.68801016,0.84263235,-0.08283229,-0.25138462,0.4952221,0.4620808,-0.20633288,0.4500609,-0.64669687,-0.30537316,0.38662001,-0.13578863,-0.4011576,0.31996462,-0.37327746,0.21919979,-0.84545344,0.33729467,-0.31511128,-0.33160096,-0.43405816,-0.10376431,-3.0694964,0.12836502,-0.07821267,-0.25593868,-0.06776477,-0.15722667,0.15538135,-0.49727723,-0.6140104,0.12073799,0.09683609,0.669738,0.009795813,0.14046334,-0.095278345,-0.30593827,-0.43631747,0.04109179,0.04949951,0.36537328,0.1061863,-0.4721186,-0.16807511,-0.2522529,-0.360742,0.09600319,-0.4314043,-0.57210785,-0.18943828,-0.38533047,-0.35718054,0.54443747,-0.3706979,0.037376884,-0.19925527,-0.14827545,-0.22397973,0.39196032,0.11678008,0.030658606,-0.065835305,-0.05842892,0.033928044,-0.21451534,0.3118154,0.07813521,0.19600753,0.41876754,-0.20161152,0.24987835,0.5672712,0.6578522,-0.22329578,0.8022957,0.52267563,-0.07836791,0.24866231,-0.31463856,-0.33842298,-0.50623995,-0.24754842,-0.06642525,-0.40269655,-0.3253304,0.00819056,-0.40059254,-0.8032158,0.373656,-0.022434182,0.068140015,0.04954777,0.18776347,0.42075577,-0.12986878,-0.048026,-0.08746711,-0.19876143,-0.6499544,-0.35014597,-0.6945582,-0.39682716,0.07278232,0.97599906,-0.06638887,-0.07113098,0.09892905,-0.0669453,0.026385916,-0.026687698,-0.03772882,0.12577382,0.34917113,-0.009753371,-0.80714345,0.47335443,0.0109597575,-0.1817166,-0.50942767,0.10544138,0.4438599,-0.48455924,0.44576743,0.33274314,0.062810004,-0.015225093,-0.51460737,-0.1406071,-0.070317626,-0.16913743,0.38620594,0.21078709,-0.6911382,0.43692234,0.34473047,-0.14898206,-0.7160356,0.4117562,0.061325047,-0.27992913,-0.010981506,0.22673517,-0.058509476,0.08970035,-0.31244355,0.14259343,-0.5092652,0.4437637,0.24100211,-0.028495006,0.34164056,-0.24841285,-0.17975898,-0.6952287,-0.0946593,-0.544315,-0.28454092,0.09055993,0.24761786,0.046144985,0.0978313,0.10386734,0.44020203,-0.3371954,0.0965164,-0.081090145,-0.1377026,0.3371352,0.5016348,0.5574576,-0.35233447,0.5651195,0.011285651,-0.15325163,-0.22429675,0.11749674,0.40420702,0.17849824,0.10275779,0.033690277,-0.1817531,0.32187182,0.6952573,0.26463315,0.39475575,0.046081662,-0.25579172,0.34565926,0.099002674,0.21679632,-0.014192323,-0.5084172,0.018886006,-0.2960478,0.010797769,0.47744498,0.081200056,0.25253052,-0.11183665,-0.40636304,0.065674044,0.27354875,-0.13559261,-1.239652,0.31242904,0.09150105,0.7342079,0.700126,-0.16967802,0.17612417,0.79664266,-0.18753843,0.12231662,0.28794548,-0.022314962,-0.5386069,0.536116,-0.6807179,0.39440468,-0.038445108,0.039326645,0.044280298,-0.051341772,0.26381642,0.68059593,-0.015994826,0.1436225,-0.07294185,-0.22313994,0.0343608,-0.44437835,-0.029772973,-0.53068155,-0.17466873,0.7435346,0.40093428,0.32724002,-0.06361163,0.10527982,-0.0028393387,-0.062214017,0.15983225,0.103466555,0.092944145,-0.113754176,-0.69463736,-0.14446431,0.5504243,-0.0017282963,0.21219444,-0.021490533,-0.23591436,0.21167523,-0.20125748,-0.18832156,-0.08534415,-0.6555719,-0.09626627,-0.27428487,-0.2276695,0.50991696,-0.081188746,0.33923957,0.22958294,0.07588094,-0.2299296,0.17822023,0.27221808,0.602793,0.062695175,-0.11902766,-0.26993656,0.20371667,0.18230054,-0.17588903,-0.10522876,-0.113890775,-0.037732646,-0.5567686,0.38648835,0.03546167,-0.25897458,0.29242313,-0.10173321,0.061302237,0.68790764,-0.21264677,-0.13707842,0.04239161,-0.14300379,-0.15831779,-0.16258499,-0.18837173,0.30702743,0.2308979,-0.1232251,-0.026336042,0.013983035,-0.047955815,0.3827091,-0.0059030154,0.41495952,0.23393577,0.07498367,-0.47556442,-0.042323176,0.07339377,0.4729184,0.11628286,-0.0051728827,-0.3101577,-0.4415921,-0.34023672,0.03276826,-0.12982677,0.18511719,0.16761617,-0.21998765,0.7898578,0.19484912,1.0272759,0.050640773,-0.25460297,0.091832526,0.3999557,-0.05120166,0.0022180458,-0.3268608,0.8774847,0.5471751,-0.056995478,-0.100536965,-0.2636318,0.012541489,0.11494686,-0.16228692,-0.07273841,0.06710081,-0.6751119,-0.32562053,0.23404716,0.32529926,0.08754481,-0.12362529,0.011551324,0.1159351,-0.008235367,0.2986809,-0.39006907,-0.11096891,0.3756072,0.23282649,0.051237073,-0.07829022,-0.56823164,0.41199923,-0.58806485,-0.11100997,-0.2201319,0.17248051,-0.15743509,-0.35018736,0.24832286,0.1756636,0.39488247,-0.35827672,-0.39790204,-0.29220816,0.5123152,0.038567614,0.15068217,0.4047624,-0.25702164,0.1349316,0.03452134,0.4648,1.0939878,-0.22846317,0.13905926,0.4324016,-0.33303705,-0.5119873,0.2837119,-0.24949278,0.13193773,-0.06296237,-0.18424413,-0.6685308,0.122742586,0.26767066,0.078562655,0.016048301,-0.62082887,-0.40638226,0.34489354,-0.39270642,-0.25227723,-0.34502062,-0.11856289,0.608547,-0.38185367,-0.34096402,0.12999313,0.32056728,-0.15552655,-0.5247568,-0.10869319,-0.29761487,0.2579649,0.18569562,-0.28515682,-0.23526448,0.23003823,-0.37560174,0.02784777,0.1267394,-0.3641159,0.08791385,-0.52100956,0.0359743,0.9303596,-0.15780789,0.13258187,-0.4616299,-0.42956793,-0.932046,-0.2503609,0.6153645,0.10486197,-0.003759414,-0.68878245,0.029015103,-0.14544246,-0.006025954,-0.06416166,-0.36603323,0.49647114,0.13737385,0.37261721,-0.11457411,-0.593406,0.04905789,-0.008709189,-0.19351648,-0.4580024,0.5182722,0.2020058,0.8519713,0.010745904,0.043667484,0.30301368,-0.637086,-0.019635057,-0.13512109,-0.24875149,-0.55916125,0.15156236 -403,0.47254524,-0.23516163,-0.48331732,-0.14500734,-0.2794086,0.17383964,-0.37998754,0.061408218,0.19073431,-0.41365644,-0.033781376,-0.0959167,-0.025977135,0.35331085,-0.107342206,-0.85370255,-0.11940973,0.1574378,-0.75487643,0.87078303,-0.38512745,0.31444958,0.15686813,0.12833083,0.18877077,0.16024709,0.35923323,-0.02836317,0.06620067,-0.18071604,0.019022848,0.046090297,-0.6939301,0.20814396,-0.21505539,-0.3104313,0.060912017,-0.3032258,-0.53983533,-0.70851266,0.29653898,-0.8759494,0.5326789,0.124421,-0.2806403,0.266391,0.18291959,0.18783078,-0.22489902,0.06829127,0.24779542,-0.21847169,-0.066166185,-0.2133271,-0.31509236,-0.30860087,-0.60162824,0.043069866,-0.7221159,-0.28952697,-0.18537475,0.25143704,-0.36436057,-0.15632828,-0.25128075,0.61394125,-0.45573753,-0.0061505693,0.25531563,-0.13699888,0.123328194,-0.6368993,-0.10772363,-0.087621994,0.06613626,-0.024717344,-0.11405391,0.265402,0.01433077,0.57080644,0.1838479,-0.5229303,-0.21042886,-0.15230073,0.4093059,0.34097582,-0.03551554,-0.133063,-0.2901976,-0.08526047,0.22664104,0.16943955,0.036948137,-0.35674903,-0.01811854,-0.16352391,0.00033473969,0.51785815,0.63985825,-0.42169762,-0.4546086,0.30029368,0.5298184,0.25376245,-0.157933,0.087689914,-0.03366926,-0.40834814,-0.12527223,0.3613348,-0.1758697,0.46674314,-0.20949428,0.10999511,0.59128726,-0.085861854,0.05208053,-0.063110866,-0.013809183,0.10528999,-0.27609032,-0.060054723,0.42406994,-0.6576303,0.07112213,-0.30211046,0.7272869,0.12563461,-0.5384023,0.31169686,-0.5340612,0.23058833,0.099412285,0.72699594,0.7018617,0.2901136,0.06303116,0.85628796,-0.43695396,0.20351042,-0.2180717,-0.2519194,-0.02233897,-0.27847275,0.11510539,-0.49717662,-0.030940847,-0.24605118,-0.0739307,-0.19408412,0.49756914,-0.40252873,-0.22672789,0.26668033,0.9212827,-0.22484906,0.06649286,0.69896644,1.216848,1.1476619,-0.1353126,1.1911259,0.22680536,-0.28850007,-0.13280305,-0.2921045,-0.7395331,0.20597853,0.4245959,0.85274404,0.38140106,0.034755386,-0.067434266,0.3495066,-0.47476608,0.08709309,-0.26066002,0.29515067,0.07334279,0.14953066,-0.45904055,0.00411149,-0.0050540566,0.0072371033,0.06720461,0.28962526,-0.24798921,0.3496129,-0.04245403,1.2845724,-0.3303066,0.093791984,0.26360136,0.53871393,0.2917622,-0.07978515,0.21647502,0.28520232,0.39124417,0.26142254,-0.6612602,0.020775659,-0.51360995,-0.32911697,-0.3611688,-0.4049602,0.030200584,-0.025373863,-0.43106884,-0.14904551,0.08831232,-0.38019252,0.2653788,-2.53284,-0.14559962,-0.1806247,0.2061491,-0.37727162,-0.23619907,-0.03990507,-0.5224639,0.47579116,0.33698764,0.368624,-0.46831813,0.28505665,0.46033144,-0.5444834,0.091616206,-0.5778554,-0.13055219,-0.17363223,0.76775974,-0.075617865,-0.08865646,-0.21935494,0.2051617,0.62624484,0.079198666,0.07789658,0.3632577,0.2229139,-0.04228136,0.36384916,0.077897415,0.3481638,-0.4068389,-0.19804034,0.5688581,-0.09200442,0.37499508,-0.31382173,0.14477493,0.4628127,-0.54112256,-0.7660932,-0.5811437,-0.47177172,1.3546344,-0.42873165,-0.75403774,0.42035514,-0.069977775,-0.03957917,-0.05994016,0.5177408,-0.014791638,0.18917152,-0.65258825,0.18151376,-0.0030884955,0.25419256,-0.009392893,-0.033849634,-0.41434476,0.723666,-0.12377254,0.3982682,0.32561573,0.3443194,-0.08215368,-0.5523489,0.14759648,0.9908193,0.3853364,0.008725994,-0.36369923,-0.19002523,-0.0538654,-0.07393523,0.00030538332,0.56400603,0.79907054,-0.19321191,0.049413007,0.4553552,0.01360694,0.08804513,-0.09813045,-0.3607214,-0.16819426,0.022168918,0.4844303,0.6091469,0.029853672,0.3331162,-0.0014321485,0.2752705,-0.087202616,-0.5249761,0.42435077,1.0089475,-0.25285217,-0.25153905,0.6335934,0.49910614,-0.51495934,0.51185566,-0.6598256,-0.3478327,0.53310925,-0.13581082,-0.5375816,0.14682953,-0.3196251,0.07079182,-0.64186364,0.27159423,-0.3310247,-0.5765877,-0.4800233,-0.28860617,-3.2538676,0.12790918,-0.45466644,0.076127455,-0.07936462,-0.16625507,0.28935978,-0.41429207,-0.44403172,0.12274318,0.124079265,0.57624495,-0.22172312,0.13986638,-0.23270825,-0.1720836,-0.41092852,0.37299684,0.22826178,0.21570802,-0.25140828,-0.3677327,-0.07543968,-0.13028106,-0.25002342,0.0028673199,-0.6265519,-0.38801405,-0.31306073,-0.519821,-0.0811309,0.5797063,-0.14867248,0.09033624,-0.2556015,0.115571395,0.01582307,0.051885325,0.2761086,0.43645817,0.0801561,-0.17404485,-0.26298848,-0.33607167,0.33656996,0.15003736,0.39970455,0.30826712,-0.047112882,0.19435258,0.39237183,0.4117592,-0.16301426,0.9364945,0.4240446,-0.16313018,0.2815115,-0.11271029,-0.33906168,-0.755993,-0.1920633,-0.017134229,-0.4795484,-0.5883598,-0.074320115,-0.23766156,-0.7579837,0.5765186,0.14249665,0.49674973,-0.098301284,0.13075782,0.5169001,-0.23546961,-0.17612115,-0.0401303,-0.19964395,-0.47113487,-0.341287,-0.76081467,-0.5148449,0.06579961,0.81890994,-0.18503377,-0.10641866,0.005658441,-0.33486223,-0.0093130665,0.20629944,0.13947473,0.053028487,0.6055102,0.32278314,-0.75357616,0.5524108,0.13711983,0.054670732,-0.45081022,0.27097288,0.5709631,-0.5674806,0.53732383,0.23879957,0.09505736,-0.33959246,-0.6044907,-0.20569248,0.044095118,-0.30496362,0.51042867,0.1399606,-0.7725186,0.44104466,0.09215584,-0.37906367,-0.807485,0.40508085,-0.124042936,-0.28341308,0.14554787,0.4215075,-0.09294616,0.069111295,-0.12944041,0.32360846,-0.30955106,0.30444488,0.2990346,-0.13233909,0.18368205,-0.2605885,-0.5790726,-0.66872513,0.012078209,-0.552522,-0.44230607,0.3656781,-0.043810852,-0.055890534,0.3306196,0.0934357,0.571729,0.06290458,0.22307931,-0.025273409,-0.45622435,0.67676556,0.44147015,0.50721484,-0.50291634,0.66833985,-0.011914109,-0.25671968,-0.06555087,0.17110135,0.4038264,0.14829643,0.53804606,-0.08598157,0.14447796,0.24150407,0.7657532,0.26041675,0.54352915,0.29136786,-0.19800986,0.46289536,0.07300886,0.03282202,-0.2819306,-0.6377193,-0.10241654,-0.0626164,0.2015923,0.46081918,0.027818756,0.4371365,-0.14618692,-0.22845581,0.056395892,-0.013323362,0.036565047,-1.18577,0.12479733,0.21636507,0.7150138,0.53361136,0.049181443,-0.029697511,0.60347766,-0.10190161,0.01479951,0.33402696,-0.08098019,-0.40572342,0.48716053,-0.6337847,0.45313898,0.04614083,0.08944794,0.10289558,0.15901458,0.41095877,0.78021944,-0.2142524,0.004027307,-0.14023668,-0.2885285,0.14207436,-0.26577827,0.28321305,-0.26167268,-0.54843706,0.5587771,0.44994083,0.32694498,-0.16142464,0.0040519633,0.06131942,-0.19700181,0.27696365,-0.017837528,-0.12952293,-0.12015524,-0.47117501,-0.2293844,0.51885855,0.017027974,0.0526712,-0.07309175,-0.05407083,0.20238213,-0.12652943,-0.09135311,-0.0050591337,-0.7886855,0.0784735,-0.2284715,-0.5406818,0.45488063,-0.3668552,0.19029193,0.06587423,-0.07554215,-0.4281501,0.34054285,-0.05106622,0.65982765,0.20150009,-0.23410788,-0.2978484,-0.027004166,0.0483194,-0.30133417,0.16542175,-0.26527232,0.21106242,-0.7801204,0.542223,-0.2537382,-0.41919544,0.10904662,-0.21501744,-0.16748978,0.63717234,0.12407957,-0.21465686,0.09366554,-0.20947514,-0.34933165,-0.30893946,-0.021064295,0.20549226,0.1493216,-0.24329717,-0.1797802,-0.10746108,0.10371997,0.3290631,0.018977266,0.20566507,0.18167289,-0.06804494,-0.3811622,0.065850414,0.4724531,0.3954267,0.11030848,0.028962126,0.078355245,-0.48617616,-0.500592,0.29114634,-0.122746214,0.2244699,-0.02003409,-0.21572591,0.90382034,0.2746223,1.2551239,0.0767296,-0.32740232,0.10571976,0.5815529,-0.0065537053,-0.1456939,-0.3278951,1.0690694,0.67100763,0.057609122,-0.103761,-0.52304363,0.030632865,0.09578525,-0.26853994,0.06721135,-0.036025286,-0.6523976,-0.069409154,0.1354014,0.39763635,0.116785236,-0.17385638,-0.156182,0.11128347,0.21569426,0.3645341,-0.64563316,-0.15582755,0.43921232,0.06371977,-0.1786971,0.3413466,-0.3893893,0.4055488,-0.6371693,0.20063205,-0.19931749,0.069939435,-0.01421561,-0.31120783,0.31056908,-0.0432719,0.37350893,-0.45278856,-0.39729834,-0.357151,0.50169486,0.2691864,0.111324705,0.6697851,-0.15477784,0.21056536,0.08319722,0.52727044,1.1376598,-0.25473842,-0.025252968,0.14721613,-0.41725156,-0.84998953,0.20233142,-0.48638996,0.2835806,-0.1091782,-0.4730749,-0.45386818,0.16526487,0.05189043,-0.18395673,0.12452129,-0.68916243,-0.17567801,0.008820832,-0.22062981,-0.23153774,-0.27719375,0.10511228,0.60813487,-0.16542974,-0.37251344,0.064280875,0.24993649,-0.38363594,-0.69069874,-0.09269107,-0.3642137,0.056513663,-0.022979338,-0.29901218,0.06832314,0.1746532,-0.62817633,-0.06077587,0.29195523,-0.3496881,-0.086181775,-0.053238213,-0.020293942,0.7802184,-0.140656,0.035657827,-0.61171055,-0.6373205,-0.8965336,-0.4170474,0.4179135,0.121994235,0.21575506,-0.4574256,-0.074032985,-0.3353896,0.18789063,0.08574497,-0.5843363,0.3561173,0.1261699,0.45330596,-0.24967349,-0.92686653,0.27703738,0.082740866,-0.069497004,-0.4818217,0.37086532,-0.16984282,0.6159709,-0.0640042,0.015813854,0.120377526,-0.6576177,0.103611596,-0.2479049,-0.23218516,-0.71152383,0.13358982 -404,0.6599548,-0.20711432,-0.69425005,-0.032104187,-0.23374046,0.12172841,-0.5006115,0.622955,0.25521508,-0.7266007,-0.08044751,-0.09884567,0.022789776,0.47624156,-0.25968012,-0.46698952,-0.051715255,0.30736348,-0.5487381,0.92425424,-0.19826278,0.37065098,0.14067979,0.38393107,0.36168724,0.19278711,0.3320063,0.21891555,-0.2614093,-0.30476353,0.08350777,0.25691056,-0.39959896,0.28523377,-0.35738072,-0.6668437,-0.1873038,-0.5246536,-0.13157582,-0.8160814,0.32564145,-0.9498667,0.8486199,-0.021612762,-0.25266755,0.07176209,0.3461873,0.35149992,0.034239385,0.11288788,-0.00973449,-0.03872987,-0.24603273,-0.2293272,-0.14653648,-0.7032017,-0.4908457,0.053782523,-0.52299404,-0.10880958,-0.06757606,0.19031717,-0.30253944,0.124827385,0.08643002,0.5999785,-0.3971639,0.0019393618,0.09975281,-0.023643393,0.30979797,-0.825683,-0.44371155,-0.089218564,0.39997673,-0.2831362,-0.070906125,4.4324183e-06,0.33284166,0.55305713,-0.123483986,-0.05691211,-0.47275102,-0.055744328,-0.021104895,0.43936223,-0.2639155,-0.690068,-0.18508743,0.1063513,0.36573842,-0.04531075,0.50531775,-0.18892193,0.013526391,-0.21905182,-0.31905547,0.43185046,0.40607417,-0.5236506,-0.2340259,0.29991972,0.515057,0.17852145,-0.19792518,0.12020464,0.017998142,-0.4048935,-0.10229156,0.08971122,0.01568721,0.5175893,-0.13950835,0.47183752,0.24333254,-0.05499899,-0.03272148,0.17309524,0.05849153,-0.28598955,-0.047262374,-0.3371007,0.28236726,-0.48283517,-0.1509932,-0.34133208,0.6025875,-0.025481893,-0.74376655,0.23813581,-0.6733969,-0.03204397,0.038959764,0.32571045,0.71477646,0.3619004,0.038108114,0.67264885,-0.16459599,-0.08979354,-0.19539024,0.008558891,-0.18049699,-0.39924982,0.023711862,-0.6839303,0.2210415,0.20449518,0.021321476,0.104494445,0.68490505,-0.48524484,-0.37698203,0.28473136,0.87778527,-0.14290586,-0.17662263,1.0107733,1.1110498,1.1021477,-0.029838694,1.2535129,0.20959538,-0.33020136,-0.16872287,-0.09090137,-0.57836604,0.39981362,0.40287447,-0.2685077,0.67328084,-0.017953236,-0.02519127,0.20057128,-0.28996593,0.05054793,-0.20616207,-0.09718582,0.15652992,-0.21499161,-0.45290306,-0.25130752,-0.10011547,-0.07690552,0.32108507,0.13049728,-0.12923445,0.5272524,0.12279907,1.4885098,-0.4288992,0.014832418,0.14523846,0.3657853,0.30278918,-0.2473368,0.026372107,-0.026227111,0.22260061,0.20042758,-0.3804631,-0.023389613,-0.1594691,-0.54239196,-0.30555734,-0.19031705,-0.18875675,0.17145418,-0.41468504,-0.1817822,-0.2057518,-0.28789243,0.28375885,-2.5514257,-0.30388805,-0.3058572,0.13599296,-0.2509675,-0.3316666,-0.3367034,-0.3047718,0.51309264,0.47139838,0.42726755,-0.50916886,0.4313254,0.3703991,-0.6278787,-0.1594201,-0.43798593,0.024355633,-0.06647821,0.34078053,-0.16671008,-0.46965578,0.28574908,0.2865493,0.41913554,-0.12846683,0.12607189,0.39588043,0.4227567,-0.116376065,0.310608,-0.09124045,0.46072024,-0.44877818,-0.36264694,0.640107,-0.3444959,0.26677442,-0.028323503,0.15427916,0.45827314,-0.654159,-0.9369862,-0.79926646,0.061094083,1.1720371,0.06551104,-0.69056153,-0.07811661,-0.28339112,-0.4282778,-0.030581713,0.5111092,-0.09315505,0.105182976,-0.9412693,-0.08414132,-0.10161831,0.18999009,0.0074467524,-0.13833237,-0.7098885,0.7791275,-0.0024562962,0.5512975,0.5013516,0.30905855,-0.5258306,-0.49298772,0.0061655315,1.1450535,0.57043856,0.14757964,-0.30065823,-0.11984847,-0.61205935,-0.036964092,0.19888173,0.5647192,0.644499,0.0750611,0.16460277,0.2804074,0.049194697,0.33611146,-0.028647033,-0.4088991,-0.39801013,0.34754202,0.60670877,0.39649117,-0.060757313,0.68194366,-0.098312564,0.34769222,-0.30267808,-0.39015332,0.6677277,1.0769411,-0.29794168,-0.5455161,0.73705655,0.5179918,-0.47219875,0.559486,-0.6298397,-0.5731639,0.090462886,-0.104467995,-0.40608093,0.37842348,-0.43963596,0.27717257,-1.1535609,0.16996811,-0.5453138,-0.080227286,-0.7190697,-0.19429411,-2.6463053,0.40254858,-0.036481608,-0.058866583,-0.30607587,-0.44918442,0.28301275,-0.6717009,-0.85892236,0.14509557,-0.01050812,0.86459833,-0.0758451,0.12728815,-0.04523586,-0.5629596,-0.004552401,0.30882794,0.0142613975,0.39671403,-0.109636,-0.5525871,-0.033490717,-0.1871272,-0.25093588,-0.10035977,-0.6325816,-0.46633303,-0.19380751,-0.5015717,-0.08439552,0.55913824,-0.42876866,0.08790453,-0.31311557,0.016639011,-0.11500976,0.34631455,-0.15266046,0.0142736705,0.26657593,-0.32010138,0.16029698,-0.13647157,0.12152959,-0.04524274,0.1694728,0.5519567,-0.3216318,0.5310932,0.37236795,0.6906852,-0.15234494,0.8012013,0.356388,-0.031221986,0.2721303,-0.23861562,-0.26994184,-0.48799333,-0.13957219,0.091044664,-0.4249401,-0.5397947,-0.06653913,-0.29519346,-0.78918874,0.77836555,-0.06352558,0.17086148,0.13505553,0.58669513,0.47616938,-0.22894841,0.024805225,-0.08497571,-0.11425085,-0.40625545,-0.35491073,-0.5746708,-0.47889173,-0.0015475967,0.8975095,-0.24179992,0.15023734,0.45047605,-0.037676256,0.17946734,0.37578297,0.23864026,-0.09316697,0.5847809,-0.10145183,-0.7124862,0.3207915,-0.2913089,-0.21540776,-0.45366678,0.23066348,0.38125613,-0.46766064,0.31212616,0.5775065,0.16448158,-0.26370108,-0.5080938,-0.048787203,0.14105177,-0.28862283,0.38848066,0.51806045,-0.7092298,0.46914247,0.335338,-0.16815744,-0.83172053,0.5691117,0.1811369,-0.12831345,-0.08346176,0.500246,0.43172243,0.0015430559,-0.329754,0.16230628,-0.3501519,0.28022736,-0.20727801,-0.047628842,0.29129812,-0.2889595,-0.41194603,-0.66262746,0.15773696,-0.5972159,-0.44349277,0.2847215,-0.008524745,0.03413159,0.20577708,0.03138031,0.3926921,-0.55223715,0.10965135,-0.25991994,-0.21014641,0.42714927,0.2830331,0.39543855,-0.53474635,0.54050213,-0.11409991,-0.088597395,-0.1969298,0.08182913,0.55317557,0.2911723,0.31469706,0.23503928,-0.233739,0.15289593,0.73270506,0.3059894,0.26595458,0.20980163,-0.16182938,0.187927,0.053333934,0.102470875,-0.08723467,-0.38634378,-0.34114438,-0.23593248,-0.036198687,0.51077783,-0.05100931,0.2875579,-0.21727018,-0.4349824,0.032495443,0.14016804,-0.011484764,-1.245151,0.21711001,0.09960823,0.7844419,0.5249741,-0.23098463,0.14130455,0.66999745,-0.18386702,0.07051236,0.2671697,-0.034251403,-0.51515007,0.6362193,-0.62770635,0.21517324,-0.059802547,-0.002204223,-0.09762411,-0.061272237,0.3251219,0.6823418,-0.08817088,0.29001227,-0.018693956,-0.18266453,-0.2227326,-0.24314499,0.08470941,-0.3803363,-0.13788487,0.8034775,0.3110117,0.44550782,-0.34146932,0.04693869,0.14453612,-0.16805117,0.24737997,0.14890546,0.27068326,-0.21791063,-0.57399994,-0.023804624,0.5896717,0.5203628,0.21686341,0.13372883,-0.5135019,0.25358784,0.10097492,0.05255309,-0.037317675,-0.6908279,-0.06690823,-0.6284988,-0.42541322,0.5272208,-0.24727002,0.03335434,0.3110629,0.14520416,-0.0987812,0.287862,0.079040416,0.66148794,0.03567398,-0.019718854,-0.115808725,0.3199448,0.14596678,-0.26187673,-0.27163073,-0.18778892,0.28886288,-0.6446887,0.47829658,0.065437496,-0.18597707,0.3155093,-0.02868742,0.08838526,0.50196093,-0.19649467,-0.058682546,0.36236078,-0.028195906,-0.17240584,-0.38706627,-0.18802188,0.2984021,0.15885304,-0.034753088,-0.24744558,-0.08493414,-0.22365604,0.22331086,0.005480273,0.37536347,0.5998771,0.33859974,-0.42831972,0.27104673,0.31112316,0.5268078,0.06561306,-0.18113305,-0.40125218,-0.6077029,-0.32349765,0.24609566,0.030574165,-0.037700772,0.20893188,-0.32862765,0.7852078,0.13298978,1.0398155,-0.036299035,-0.4690534,0.173558,0.3364149,-0.2999873,-0.33704314,-0.2143403,1.061926,0.6451355,-0.020234613,0.13162468,-0.38590318,-0.13553321,0.05441637,-0.3594363,0.026275726,-0.09208859,-0.66992986,-0.5023081,0.22637612,0.32106206,-0.057071235,-0.27586174,0.3531288,0.30342612,0.025770582,0.18222012,-0.52112174,-0.24650808,0.39492807,0.40199968,-0.12599869,0.19721292,-0.44587305,0.24041319,-0.9511141,-0.11485353,-0.46267784,0.25029364,-0.073540956,-0.29672122,0.23822089,-0.082174435,0.33916685,-0.4596276,-0.3950415,-0.27210596,0.41029721,0.070225984,-0.039262358,0.5000206,-0.20219584,0.08353474,0.032368865,0.4881302,1.117293,-0.2188644,0.055303074,0.25971198,-0.31729302,-0.59988856,0.29824993,-0.5950911,0.41780564,-0.112725824,-0.11390207,-0.63890654,0.31424564,0.43078518,0.18404074,-0.21697454,-0.5070429,-0.1277357,0.2953256,-0.32909295,-0.11217535,-0.31202915,-0.17254396,0.42839032,-0.040703706,-0.4214798,0.0410957,0.54373556,-0.19736028,-0.70004934,-0.12660839,-0.25631168,0.36502847,0.29050872,-0.1416018,-0.2443042,-0.023218004,-0.5361216,0.07869753,0.32835528,-0.4271477,-0.09173619,-0.5674738,-0.09110291,0.8418691,-0.07551206,0.38834754,-0.39025956,-0.48536193,-0.85021305,-0.28352094,0.27940074,0.12374928,0.20103164,-0.7499414,0.19286604,-0.42614946,-0.21321541,0.0793291,-0.20649758,0.34744257,0.16838853,0.5855379,-0.3337773,-0.7333019,0.21816729,0.15879753,-0.00074402854,-0.44637346,0.38173753,0.1524856,0.99542445,0.11022677,0.0503706,0.35680076,-0.8405689,-0.025858099,-0.004122001,-0.080987364,-0.7527465,0.025854541 -405,0.30118203,-0.5466114,-0.6223716,-0.15959503,-0.2136596,0.14784272,-0.32625034,-0.03915971,0.259436,-0.3898153,-0.2041363,-0.025330657,0.08365596,0.7168574,-0.19061832,-0.88016653,-0.17133999,0.2842042,-1.0814236,0.6935425,-0.3081173,0.24856287,0.33559847,0.4151021,-0.14379652,0.035273414,0.41615328,-0.14172088,-0.18913625,-0.17878236,-0.19498973,-0.23662686,-0.8489482,0.1188153,-0.20025587,-0.2790746,-0.03561036,-0.3031928,-0.03125168,-0.95831496,0.23150294,-1.0846306,0.5193068,-0.1052534,-0.14801703,-0.12771428,0.24984126,0.49500632,-0.5380429,0.074176595,0.1795689,-0.5119501,-0.4283557,-0.5652189,0.14523591,-0.6162846,-0.5051617,0.018589104,-0.73848915,-0.27356678,-0.069515124,0.2664306,-0.2978296,0.041334778,-0.2531505,0.5560077,-0.1921934,-0.20758174,0.39541626,-0.29100224,0.43593645,-0.6153168,0.012862886,-0.19624327,0.49487796,0.055724394,-0.24049926,0.3130531,0.24750434,0.49091938,0.3882185,-0.4196992,-0.1907217,-0.013334925,0.35793912,0.3726424,0.092731275,-0.6987855,-0.120552756,0.103595205,0.18766457,0.14401531,0.1244635,-0.4105134,0.0879002,-0.14076908,-0.104849994,0.5786038,0.6046647,-0.35936055,-0.3114908,0.12491962,0.76819324,0.23560505,-0.14120048,-0.07823471,-0.04334123,-0.6947098,-0.062486615,0.45477113,-0.10678199,0.7359292,-0.28110123,0.05737542,0.81935996,-0.21719736,-0.2953212,-0.062897466,-0.0934486,-0.15017007,0.05531917,-0.28695333,0.417326,-0.42520067,-0.16142319,-0.7016068,0.7526493,0.19444485,-0.8430802,0.3602631,-0.6104341,0.4071274,0.01770392,0.7193513,0.72554207,0.6070257,0.28572044,0.83122087,-0.3787959,0.12453375,0.077055715,-0.3919276,-0.052394092,-0.5069845,0.14315172,-0.3374673,0.0789536,-0.5141522,-8.597473e-05,-0.25310057,0.46753561,-0.5061224,-0.10815191,-0.12777734,0.6298597,-0.2976853,-0.033106368,0.7672028,1.0396787,1.1733685,0.20372982,1.4641422,0.50542265,-0.41802648,-0.101364404,-0.0458221,-0.713573,0.18650937,0.284167,0.2909719,0.4529165,-0.30689144,0.025326759,0.3910319,-0.62243795,0.1951658,-0.005969137,0.36526623,0.0323745,-0.092250295,-0.3840302,-0.06190728,0.039746407,-0.05982529,0.18773691,0.11746112,-0.17841959,0.72939634,0.06974552,0.9837592,-0.18545151,0.052145008,-0.015419312,0.25240955,0.30788532,0.14206704,-0.029359499,0.31603444,0.5742225,-0.068948634,-0.72939825,0.12810464,-0.397645,-0.3822306,-0.32286462,-0.24936444,0.012702187,0.008837636,-0.24434483,-0.3048023,0.20329332,-0.24900408,0.33349058,-1.9215728,-0.22436784,-0.26851586,0.2683716,-0.36353424,-0.056039672,0.056943834,-0.638276,0.32095528,0.31614593,0.4729596,-0.72735375,0.5666285,0.47305885,-0.44823977,-0.17933756,-0.7508056,-0.24926679,-0.068414815,0.5884534,0.017026743,-0.32631946,-0.11967492,0.07555705,0.7774647,-0.024775112,-0.041970376,0.7395293,0.35493755,-0.07074127,0.6244919,0.10628301,0.60792094,-0.57658154,0.00631695,0.4122404,-0.37654945,0.27435878,-0.16131759,0.09894096,0.5978499,-0.44488287,-0.8196098,-0.7102831,-0.2962378,1.3013417,-0.3661933,-0.6680357,-0.0056804814,0.34255275,0.08967137,-0.043064382,0.75626206,-0.074623756,0.37416705,-0.7154502,-0.030673578,-0.024354309,0.41680095,0.05014317,-0.027578846,-0.32988605,0.8844294,-0.10552192,0.49992085,0.32921538,0.35188577,-0.48634195,-0.6065212,0.30678305,1.1190994,0.17329247,-0.029179895,-0.07135942,-0.33684444,-0.14704873,-0.25006318,-0.22449301,0.5713234,0.9188035,-0.090503864,-0.008607651,0.3199087,-0.29265347,0.109598875,-0.10890609,-0.4357551,-0.07517638,-0.073806286,0.49959245,0.735892,-0.056817397,0.52925116,-0.4042479,0.4114686,0.078095265,-0.4869319,0.9181257,1.0679208,-0.20935495,-0.1256651,0.3213053,0.26662028,-0.56086713,0.6212803,-0.6380544,-0.5513359,0.812037,-0.18933141,-0.47359076,0.29714903,-0.24287541,0.2817159,-0.89612293,0.3905597,-0.41907966,-0.15543793,-0.6870635,-0.14726985,-2.951749,0.32378715,-0.2064979,-0.028219322,-0.49584332,-0.112809815,0.08449733,-0.37173864,-0.62154764,0.23636883,0.27849156,0.6631153,-0.045855854,0.26624337,-0.19783615,-0.12930682,-0.0750343,0.3834164,0.14398511,0.124618836,-0.22088946,-0.3252906,0.15532762,-0.1143187,-0.3503581,0.15107922,-0.6701414,-0.5034355,-0.22758032,-0.55944186,-0.40200695,0.7703031,-0.41924587,-0.030777127,-0.2179421,0.034139283,0.019093363,0.25216773,-0.006963114,0.29834154,0.28463206,-0.2135156,-0.04252633,-0.20845766,0.16116108,0.01282828,0.12573613,0.13820897,-0.26994407,0.21943349,0.3803045,0.89514464,-0.11604303,0.75136167,0.38100877,-0.014051318,0.2134005,-0.2736309,-0.52170044,-0.67227477,-0.25162736,0.012049596,-0.36947298,-0.4726027,-0.030241301,-0.3135955,-0.82565516,0.6647652,0.024592737,0.09019103,0.20462531,0.57091427,0.42433926,-0.23424001,-0.0029647846,-0.17990609,-0.17966656,-0.43572167,-0.37585476,-0.74801785,-0.44671974,-0.2275825,0.83783835,-0.096246004,-0.09228671,-0.040308278,-0.30268112,0.22637348,0.27085593,0.017216375,0.33808407,0.3903555,0.19973814,-0.7251509,0.4747622,-0.004884993,-0.15372872,-0.47296515,0.33626235,0.72865134,-0.8309763,0.39374366,0.42935157,-0.22608559,-0.055106323,-0.33181265,-0.15554178,0.039017413,-0.1737535,0.3169825,0.024542972,-0.46235904,0.50727075,0.28288063,-0.4209317,-0.93743515,0.15806253,-0.08692818,-0.42921543,0.04195505,0.3885769,-0.109148264,0.02534409,-0.545837,-0.0154179735,-0.6021024,0.115739666,0.24238272,0.0038955808,0.08513701,-0.17189366,-0.4079695,-0.8519774,0.21831791,-0.7249122,-0.2089517,0.3528591,0.17508219,-0.037445337,0.20948626,0.08943388,0.4839717,-0.23469968,0.07997111,-0.1500323,-0.27793643,0.33264473,0.60254085,0.16202994,-0.4885571,0.69287926,0.13596605,-0.2077622,-0.16829383,-0.039381977,0.45237303,0.32421604,0.44077078,0.14880009,0.07015652,0.357808,0.7441438,0.050967023,0.6776109,0.29286554,-0.23260318,0.46097314,0.020366112,0.39629507,-0.06884791,-0.35124627,0.18579824,0.13002925,0.10976824,0.4718989,0.17353421,0.46993482,0.13544875,-0.1682757,-0.053661942,0.3769599,-0.088230066,-1.343211,0.49319467,0.3274324,0.89261013,0.60163236,-0.014899393,-0.014326732,0.6486791,-0.3868327,0.030814812,0.27976528,0.025420552,-0.31628036,0.78028053,-0.5731804,0.19391344,-0.2781193,0.08676174,-0.026911953,0.14277779,0.13749366,0.97571343,-0.12798063,0.04711689,-0.24378651,0.09392587,-0.029717395,-0.44205216,0.14568047,-0.21430469,-0.75333613,0.71564704,-0.016737381,0.50772667,-0.35421702,0.06420031,0.036130387,-0.16345902,0.45792747,-0.11233238,0.008118595,0.21476448,-0.61471397,-0.08737254,0.5100935,0.009711432,0.09463217,-0.059444774,-0.22884612,-0.031540405,-0.17020868,-0.16602087,-0.13970293,-0.8487258,-0.08808506,-0.3564445,-0.4958897,0.47312403,-0.4341369,0.128288,0.28751025,-0.040670004,-0.42332065,-0.035081495,0.120785035,0.769463,0.3162099,-0.33615926,-0.28554407,0.087124385,0.21898328,-0.4430329,0.3758998,-0.23620683,-0.03399583,-0.6161158,0.6870992,-0.19933426,-0.4939233,0.27389646,-0.36399713,-0.36347055,0.675683,-0.3597568,-0.08070942,0.2661982,-0.22277623,-0.01832625,-0.27651736,-0.27271375,0.3086684,0.13825537,0.007901815,-0.08555332,0.007722477,-0.062711865,0.6411409,0.11853977,0.4345858,0.3402178,-0.046599507,-0.37117136,0.09233481,0.09426731,0.45326152,0.36881927,-0.118669085,-0.38782397,-0.6231614,-0.27009004,-0.022713104,-0.08368736,-0.00049177307,0.1364906,-0.3307945,0.9273274,0.22444604,1.2036237,0.18822443,-0.2473998,0.14191356,0.55079556,0.095487274,0.025783831,-0.54906434,0.92355293,0.43313503,-0.038912345,0.09736562,-0.54594857,-0.13143651,0.42047834,-0.351413,0.069045216,-0.09734789,-0.672113,-0.5570784,0.13933918,0.2805287,-0.15543495,-0.20718046,0.0013726801,0.17463566,0.03905948,0.48961604,-0.7163784,0.055079132,0.33368874,-0.034302913,-0.08000043,-0.012332712,-0.29373986,0.4341377,-0.71659535,0.14846377,-0.50445604,0.023568856,0.077423476,-0.20772922,0.2182076,0.20379257,0.12498126,-0.5235674,-0.48354957,-0.036081105,0.6755419,0.31969664,0.2651159,0.796187,-0.29658827,0.017105363,0.31286404,0.610295,1.4176589,-0.64204645,0.14802586,0.08958224,-0.39756978,-0.58039695,0.65446085,-0.1787806,0.03229584,-0.22451043,-0.51223546,-0.73314255,0.13368045,0.14774619,-0.059206277,0.19309461,-0.7626245,-0.2982702,0.67972344,-0.61101955,-0.22271395,-0.28216556,0.49781632,0.5257681,-0.19909944,-0.44816235,0.040831387,0.2522121,-0.42660776,-0.52413565,-0.20901231,-0.28461468,0.28956196,0.1923343,-0.2832506,-0.102954745,0.26305154,-0.81498146,0.14612062,0.14858897,-0.37548244,0.059333097,-0.031647455,-0.122592725,0.6849707,-0.33869055,-0.0888274,-0.6668089,-0.48651478,-1.0935222,-0.22420041,0.43864414,0.027845422,0.088461034,-0.74126524,-0.17993478,-0.14739406,-0.026373321,0.15649319,-0.48613977,0.30268905,0.17707258,0.55871516,-0.1656849,-0.9635811,0.2801409,0.012481585,-0.16417047,-0.47858366,0.39796874,-0.032616798,0.6303862,-0.08612466,-0.057521597,0.108083405,-0.7644132,0.05123816,-0.23048638,-0.17826231,-0.6225063,0.11456386 -406,0.53002167,-0.26943555,-0.41976786,0.0012981181,-0.110187545,0.10680325,-0.199221,0.4529423,0.33282697,-0.317603,-0.1991834,-0.09903736,0.0024756147,0.07614465,-0.052851412,-0.58201593,-0.11682598,0.20323291,-0.49646157,0.4787808,-0.41144863,0.25870568,-0.15317385,0.4725143,0.062838905,0.22396578,0.009017582,-0.070168525,-0.27992004,-0.16229725,-0.07230911,0.3342817,-0.6756006,0.111833096,-0.18964338,-0.3684757,-0.13558555,-0.64630693,-0.33654323,-0.7468357,0.25685304,-0.8558238,0.50583065,0.17291392,-0.23356368,0.5368236,-0.22718756,0.04565966,-0.2870207,0.011760795,0.1362737,-0.05932216,0.12645479,-0.30971402,-0.11249934,0.043077763,-0.5102221,0.09329207,-0.3024406,-0.09394853,-0.20008415,-0.018012019,-0.35281304,0.071038775,-0.056384426,0.4197721,-0.4017633,0.12455959,0.024102243,-0.16487822,0.24521115,-0.42325565,-0.1257698,-0.035291627,0.33269712,-0.25862777,-0.1627797,0.13542308,0.21953371,0.4369784,-0.13077137,-0.09581164,-0.38695806,0.029367503,0.027305553,0.48649868,-0.11450355,-0.552586,-0.06007584,-0.098471135,0.07543932,0.03287808,0.15420254,-0.18296,-0.15821022,-0.15909284,-0.20114954,0.34811,0.50859046,-0.26250082,-0.34979913,0.3738343,0.5723001,0.11917542,-0.007815831,-0.121426456,0.052627638,-0.47484916,-0.17549719,0.060440265,-0.26796153,0.35251486,-0.1367899,0.29944417,0.66246444,-0.20304105,0.0398583,0.17467158,0.03693531,0.06109411,-0.1829816,-0.23946428,0.25520742,-0.22513595,0.0947831,-0.14327325,0.78905004,0.13411357,-0.8378359,0.39045507,-0.5661613,0.0926621,-0.0069375494,0.477434,0.53988063,0.413218,0.39000732,0.58475053,-0.35441473,0.048554942,-0.03811719,-0.32113644,-0.071084276,0.011766452,0.009492664,-0.44960785,-0.030070726,0.008939991,-0.24584971,0.26050866,0.23040605,-0.43839914,-0.057203982,0.15811047,0.7949254,-0.25953892,-0.062040593,0.8953033,0.92515594,0.92970335,0.0625014,1.0819547,0.281103,-0.20071483,0.2087877,-0.4230037,-0.93172604,0.23517077,0.21372506,-0.22549178,0.3790067,0.07653504,-0.05069145,0.16468272,-0.25666815,0.027439026,-0.21036185,0.20413129,0.078863256,0.031744838,-0.3159756,-0.37970337,-0.2421529,0.085220896,0.14872086,0.2358481,-0.29849717,0.3524719,0.1233615,1.7548184,-0.025038637,0.08188828,-0.0349877,0.47490522,0.22646984,-0.07951694,-0.288289,0.29824096,0.22214857,0.023159714,-0.6339613,0.2923122,0.06356135,-0.42816833,-0.07962273,-0.27320033,-0.05633837,-0.12711701,-0.26181525,-0.19001484,-0.14616242,-0.36822942,0.42423835,-2.806212,-0.12806928,0.091429316,0.41586363,-0.22652024,-0.34116676,-0.20488022,-0.43276897,0.3229939,0.27805153,0.45923188,-0.79878324,0.31816167,0.45723635,-0.52151114,-0.19332677,-0.5526351,-0.08948867,0.1459509,0.2044475,-0.02829863,0.058961324,-0.017318824,0.08319863,0.40029246,0.05543306,0.090847254,0.30494925,0.516618,0.08564734,0.29177186,-0.005282824,0.47692686,-0.17159933,-0.16759099,0.31191713,-0.54930925,0.20927042,-0.16598447,0.1080481,0.40253836,-0.44523928,-0.87431496,-0.6097416,-0.08078161,1.1853887,-0.092637554,-0.32334116,0.20392288,-0.3126426,-0.27181536,-0.0816976,0.49478376,-0.17933644,-0.26292264,-0.7973533,-0.07488971,-0.14046572,0.30469343,0.046523664,0.0043459763,-0.36819407,0.6041653,-0.069581084,0.47339338,0.30025145,0.17912021,-0.27257356,-0.4913818,0.14512028,0.9218984,0.2514907,0.17410086,-0.23893632,-0.20614845,-0.20061707,0.026386399,-0.066589125,0.48607552,0.65704155,-0.11020233,0.093978055,0.29045555,0.012387202,0.08442546,-0.13287756,-0.18434502,-0.28004768,-0.085205965,0.5368173,0.7272325,-0.27812994,0.38265884,-0.0778829,0.25803006,-0.14337116,-0.36606878,0.6421366,0.8074439,-0.019092308,-0.15087058,0.48489726,0.37915972,-0.4163171,0.40735003,-0.5144507,-0.23753741,0.4059889,-0.26009744,-0.40746513,0.37658677,-0.17610262,0.049568195,-0.75074875,0.277998,-0.20086639,-0.3042291,-0.53344274,0.045344625,-3.033173,0.080529526,-0.13782163,-0.34995937,-0.16276988,-0.19576046,-0.016291006,-0.5017111,-0.59311473,0.2807835,0.122057766,0.6260516,-0.05743862,0.27296627,-0.17708723,-0.20100348,-0.4219507,0.119771,0.18685794,0.36249587,0.078032136,-0.41010654,-0.17060216,-0.11015658,-0.38153818,0.08346103,-0.51346755,-0.43190274,0.0025898183,-0.61848366,-0.24545306,0.63244027,-0.145999,0.047708366,-0.27370968,-0.070007294,-0.21879816,0.45005068,0.085181825,0.063640036,-0.013723369,-0.10884542,0.08970566,-0.24468192,0.36264497,0.081823185,0.18631674,0.41206735,-0.20283769,0.1401141,0.42671597,0.6480822,-0.017332403,0.7598978,0.324031,-0.07913264,0.2681846,-0.2914872,-0.32819945,-0.3934935,-0.2365074,0.045112655,-0.34337008,-0.43643206,-0.12855874,-0.408937,-0.7669297,0.42728755,-0.052203473,0.0060742726,0.10052199,0.3198319,0.5090036,-0.12752461,0.095061906,-0.07034631,-0.07166804,-0.43038028,-0.15133543,-0.5547933,-0.3326155,0.31173742,0.85834384,-0.18315217,0.08115453,0.09926458,-0.11895188,0.001754041,0.05092735,-0.05299072,0.24060392,0.47236717,0.07049802,-0.5221845,0.40016046,0.0011729277,-0.31283072,-0.5327404,0.18544309,0.6109035,-0.6641462,0.49939096,0.25116202,-0.09905957,0.018659115,-0.34482405,-0.1946573,-0.09256964,-0.109259024,0.21693482,0.27387297,-0.6392117,0.39770392,0.3382608,-0.12476898,-0.7943916,0.26626205,-0.019399848,-0.42251474,-0.14841872,0.3397702,0.051252488,0.073627725,-0.19439855,0.084444754,-0.3400025,0.17326942,0.059519447,-0.056007523,0.2665567,-0.14162613,-0.18017963,-0.68722546,0.07075661,-0.42533487,-0.28884602,0.27075043,0.14792845,0.19141029,0.22238642,0.061385337,0.35486886,-0.35204846,0.03659545,0.07105609,-0.05981922,0.2723776,0.32352245,0.5499604,-0.42565683,0.430465,0.024834292,-0.07111989,0.09129456,-0.034941677,0.38381606,-0.029419852,0.2048714,0.21995999,-0.26085517,0.34872577,0.6626284,0.16172273,0.41350016,0.03258518,-0.13263336,0.40564343,0.09536052,0.25189304,-0.041517,-0.4615052,0.124699384,-0.09865591,0.060624916,0.3257001,0.19297712,0.24777159,-0.06318552,-0.35076883,-0.0765798,0.40140602,-0.039524738,-1.103374,0.17662011,0.03489795,0.84721494,0.5673694,0.033850744,0.23501556,0.621879,-0.1226988,0.15754499,0.19094168,-0.046709154,-0.5989762,0.47838262,-0.6037553,0.43664852,-0.0035082102,0.0065681865,0.033263784,-0.14333321,0.29556173,0.5877825,-0.1191835,-0.004793149,-0.08369899,-0.20963216,-0.019387173,-0.47894728,0.14485711,-0.5121308,-0.12351467,0.6472627,0.437157,0.23342076,-0.11733748,0.09834341,0.02464985,-0.02461174,-0.017549993,0.15580368,0.116466336,0.11016789,-0.7222049,-0.107442774,0.5379975,-0.0408436,0.14343025,-0.13319333,-0.20141469,0.23997267,-0.24115053,-0.31701052,-0.0920241,-0.75056046,0.103986435,-0.258194,-0.3479254,0.27328327,0.1190646,0.20499936,0.21261957,0.050898645,-0.31134304,0.35730487,0.36710933,0.7956006,0.096554115,-0.095052555,-0.43198907,0.39095753,0.17722812,-0.20927882,-0.119564734,-0.08676116,0.00071753905,-0.39443606,0.40902716,0.0037224637,-0.35730955,0.041930363,-0.111306146,0.099638306,0.6383972,-0.13733636,-0.10214523,-0.13675086,-0.26932812,-0.4451036,-0.028778177,-0.08798464,0.251064,0.45902413,-0.22273782,0.015136187,-0.0049473,-0.19369109,0.55025035,0.07841745,0.49281484,0.3110833,0.15548648,-0.40254122,-0.15489134,0.070668645,0.51012766,-0.089279376,-0.08244036,-0.34408906,-0.4393838,-0.32288507,0.2427315,-0.12515415,0.22036894,0.043274768,-0.24114071,0.64861655,0.097958125,0.9087578,0.057025865,-0.18641017,0.13049948,0.29332137,0.06280555,-0.12163003,-0.4405019,0.97514117,0.35772485,-0.21905565,-0.10322069,-0.22826663,-0.21147797,0.054900903,-0.23145384,-0.027911544,-0.048771746,-0.6513654,-0.30943,0.17751524,0.18765756,0.15532123,-0.13806747,0.20946693,0.2446534,0.043672718,0.12012995,-0.4286138,-0.13362995,0.3840787,0.1385556,0.13466899,0.07341636,-0.42098612,0.29794565,-0.40663323,0.065862186,-0.23177932,0.1589409,-0.17297928,-0.2037852,0.21493293,0.15774855,0.32988584,-0.45473486,-0.40864915,-0.40588772,0.349064,0.10750851,0.19978699,0.4582546,-0.22051588,0.17529556,0.02890319,0.5880309,0.81390953,0.050392386,0.048867628,0.42124015,-0.24580106,-0.4962343,0.34764832,-0.13221973,0.083714634,-0.103503354,-0.057231877,-0.604386,0.30210185,0.20329711,0.2134343,0.14133245,-0.62251943,-0.228602,0.33120087,-0.33173102,-0.15369704,-0.39315298,-0.041827958,0.8024536,-0.19610661,-0.24125849,0.16606356,0.13239565,-0.2360471,-0.4098375,-0.20781183,-0.4299871,0.20735352,0.05231961,-0.2851219,-0.19328862,0.11368991,-0.3574853,0.09393449,0.060840562,-0.27360103,0.029037442,-0.2534391,-0.029294638,0.98051745,-0.22739083,0.25351882,-0.4495921,-0.5624357,-0.9015583,-0.25859582,0.50583583,-0.0066828807,-0.076980226,-0.7251349,-0.0126167815,-0.13231272,-0.31100208,-0.00056227355,-0.37127674,0.4205273,0.1055747,0.33336112,-0.08031697,-0.75392145,0.18796931,0.21116208,-0.34749666,-0.6858079,0.5139493,0.08853222,0.7374535,0.017921861,0.007163925,0.30785984,-0.47953245,-0.16184816,-0.26839688,-0.12865077,-0.59095705,0.15619142 -407,0.35159218,-0.04062946,-0.30652282,-0.13163343,-0.17718433,0.051708713,-0.09640332,0.3979382,0.22101974,-0.53689283,-0.14267935,-0.06517235,0.02097596,0.3224262,-0.10526514,-0.34651673,0.05099589,0.05572307,-0.30655882,0.4052987,-0.49983782,0.26073068,-0.046867974,0.2939128,0.08776267,0.13674363,0.0664363,-0.06910949,-0.08250875,-0.2073885,-0.03318084,0.11402599,-0.47547022,0.3067455,-0.07211085,-0.34668404,-0.19290183,-0.39880693,-0.43333003,-0.5359286,0.34232923,-0.84649646,0.35742933,0.05844209,-0.07199443,0.21390077,0.22070767,0.2779953,-0.07186929,-0.053248744,0.17488235,-0.13982643,-0.118473664,-0.09525363,-0.23143005,-0.4310125,-0.62658846,0.007855685,-0.45345542,-0.31757754,-0.4087047,0.09011463,-0.29068822,-0.09562259,0.028094081,0.4497856,-0.46942037,0.059725173,0.121715665,-0.11214356,0.2829175,-0.69554263,-0.21768776,-0.03981826,0.23933789,-0.25059083,-0.20696172,0.27421176,0.42464063,0.39167827,0.04429823,0.018140174,-0.3125238,-0.0755735,0.34134606,0.62052333,-0.16217092,-0.44726703,-0.10665211,-0.07535716,0.13723277,0.1778202,0.0970914,-0.47729582,-0.07332203,0.079411894,-0.19649854,0.4533796,0.50014657,-0.16040659,-0.3284478,0.33884567,0.31961024,0.10866271,-0.17865357,0.11832387,0.024072288,-0.37933546,-0.12249721,0.0014501947,-0.10885853,0.4809578,-0.15024266,0.31497318,0.63959575,-0.19255254,0.13119093,0.16736184,-0.056364004,-0.013650684,-0.29851156,0.00686016,0.081427924,-0.4410914,0.19085358,-0.1305181,0.7638871,0.12504573,-0.9172002,0.38424593,-0.5637893,0.028087698,-0.07340704,0.49260804,0.66428787,0.20953134,0.18833426,0.6689949,-0.50743645,0.019867154,-0.07810479,-0.29820845,0.030039238,-0.1697077,-0.047068037,-0.51658314,-0.14050502,0.24913138,-0.056101542,0.11567107,0.39421415,-0.5065089,-0.05618089,0.14325374,0.74745023,-0.24999008,-0.1367706,0.7941588,1.0889983,0.7395764,0.090342894,1.099106,0.09973882,-0.09865899,0.19087726,-0.22296587,-0.55611044,0.18217829,0.2937863,-0.08345906,0.087316364,0.15152411,-0.0076263295,0.2371915,-0.4398893,0.11582288,-0.044618424,0.29716572,0.18142946,-0.32717434,-0.2672428,-0.1810968,-0.0061642597,0.02213888,0.082388274,0.18339603,-0.25103363,0.2850663,0.09358527,1.453471,-0.07393862,0.14443389,0.04471228,0.5331477,0.12468395,-0.17092787,-0.0012232477,0.0694852,0.3536065,0.07774404,-0.54384255,0.06490774,-0.097807854,-0.49491426,-0.20115773,-0.3818919,-0.26347575,-0.01246578,-0.34043202,-0.092184104,-0.016452752,-0.57684064,0.51766366,-2.9921975,-0.23092307,-0.08582743,0.38398185,-0.2497438,-0.24337377,-0.10895153,-0.37171063,0.48796308,0.30005953,0.423917,-0.6822256,0.24786673,0.42375997,-0.45641333,-0.2261921,-0.55607355,-0.022110783,-0.056313813,0.2778753,0.09846199,0.015924646,0.19118944,0.028621836,0.4956929,0.036827043,0.17713822,0.28391966,0.27259797,0.008691705,0.37785882,-0.11188364,0.50644994,-0.20006345,-0.14994164,0.43042052,-0.35163435,0.116147056,-0.18199426,0.12525561,0.27444384,-0.31209803,-0.912892,-0.6761449,-0.5474273,1.0307724,-0.05428298,-0.4863846,0.40553555,-0.34812406,-0.23066308,-0.032663483,0.64465433,-0.003125851,0.1922423,-0.74115986,0.08025593,-0.20165178,0.04938662,-0.014662043,-0.019075146,-0.5473243,0.6897904,-0.11593831,0.44419533,0.34619427,0.31509095,-0.35410532,-0.3541853,0.08505003,0.9947621,0.3257443,0.14415361,-0.13621569,-0.15631786,-0.3592571,-0.31848955,0.22159702,0.556356,0.6210381,-0.014156566,0.1879239,0.24553323,0.041845363,0.010470439,-0.09937556,-0.18860728,-0.11518192,-0.04176037,0.573668,0.51727414,-0.22003031,0.61410433,-0.10280825,0.10421961,-0.27824956,-0.3892399,0.5154377,0.75633156,-0.05900485,-0.13391535,0.5897529,0.354938,-0.16719271,0.29420945,-0.5859927,-0.21013783,0.519276,-0.1424219,-0.48640063,0.059447885,-0.43219426,-0.0056996895,-0.7743739,0.3637632,-0.30269846,-0.77695316,-0.46834734,-0.19344553,-3.1526628,0.10423739,-0.23960136,-0.31164223,-0.11722629,-0.2371017,0.18290435,-0.4761605,-0.5098342,0.18937324,0.059038933,0.7361444,-0.074091695,0.09884904,-0.28090772,0.027219703,-0.22922857,0.07898802,-0.013248058,0.3871575,-0.15544176,-0.26498115,-0.0674767,-0.019982247,-0.5625018,0.059380826,-0.38002458,-0.5323696,-0.01270727,-0.39068937,-0.21127683,0.7190705,-0.5613715,-0.051227845,-0.2726606,-0.10595457,-0.17515557,0.46078518,0.13527891,0.09181296,0.14200157,0.026888648,-0.05344985,-0.21177243,0.40697977,0.12172302,0.3860321,0.5819833,-0.30776325,0.22343196,0.406743,0.55265325,-0.11660425,0.97297037,0.46419948,-0.06092038,0.24328105,-0.34664375,-0.16429259,-0.43477643,-0.36161402,0.028984942,-0.35767886,-0.64209807,-0.13102868,-0.29370946,-0.779755,0.42531878,0.005088458,0.16525151,-0.008225058,-0.02448551,0.28151062,-0.110818535,-0.14245579,-0.22633985,-0.0144149205,-0.60714555,-0.35531405,-0.5577274,-0.62846047,0.017166954,0.8941069,-0.07343507,-0.02308599,-0.025137233,-0.32076088,-0.1403944,0.07099592,0.07656283,0.045060415,0.1904947,-0.13716431,-0.6744827,0.56586486,-0.20513664,-0.13905388,-0.6253414,0.20493577,0.6433848,-0.44447166,0.4557001,0.28010982,0.096064314,-0.14820205,-0.43300635,-0.2662283,-0.20234005,-0.36024842,0.31329286,0.047272187,-0.84512126,0.425511,0.35413584,-0.2380884,-0.68018764,0.5540653,-0.005094721,0.009390895,0.062116906,0.23268461,0.2931627,-0.02913063,-0.16149117,0.34697706,-0.5601208,0.38727856,0.17120752,-0.030330699,0.5724281,-0.098910585,-0.18306321,-0.5757198,-0.0109757185,-0.4961592,-0.25722522,-0.0684652,0.27194998,0.2573079,0.45519844,0.003620354,0.35833663,-0.3011102,0.14428595,-0.041636325,-0.29972112,0.08475053,0.3374273,0.5248019,-0.4499216,0.6060916,0.0035431522,-0.10440503,-0.009723461,0.1146885,0.47560343,0.14870411,0.29503986,-0.0049594548,-0.19276756,0.16252184,0.94542706,0.2382366,0.41179234,0.028967999,-0.17763683,0.3217306,0.04417773,0.22222394,0.1833837,-0.622578,0.021624625,-0.26021582,0.2552868,0.36501738,0.18307194,0.36538866,-0.0989486,-0.279053,0.09923793,0.22470543,-0.059456248,-1.2124121,0.43620723,0.24427833,0.7767999,0.46630472,-0.05290179,0.16076909,0.6636021,-0.09112227,0.18599969,0.30046928,-0.035184003,-0.4663587,0.5544246,-0.79837203,0.5569458,-0.024391102,-0.054434583,0.09864911,0.09444279,0.36207154,0.75247014,-0.053210177,0.09344746,0.030915665,-0.29469872,0.09559874,-0.46616942,0.24563053,-0.45752007,-0.14274539,0.8066405,0.5508387,0.19640757,-0.10059774,0.05844572,0.0811611,-0.0054281903,-0.0061945734,-0.10767731,0.18672012,-0.13022086,-0.653342,-0.25084355,0.43277708,-0.16697079,0.20363949,0.1839303,-0.0030741142,0.20761058,-0.10805177,-0.16466394,0.008530407,-0.6235001,0.058114648,-0.23953074,-0.35523394,0.34199026,-0.37875605,0.25411624,0.12100427,-0.039225504,-0.10051485,0.40415654,0.23209327,0.6070964,-0.060378138,-0.05777285,-0.34395313,-0.016359907,0.21488568,-0.110569715,-0.09666577,-0.14031756,-0.12200959,-0.6671344,0.42805332,-0.08875464,-0.24673326,0.30973953,-0.14220884,0.05350596,0.47745937,-0.048150107,-0.11706508,0.29944664,-0.18147555,-0.17034248,-0.011084139,-0.16109878,0.35707793,0.24225466,-0.0717725,-0.02302539,-0.13787314,-0.19925134,0.02896208,0.025904136,0.47203547,0.27914318,0.059308566,-0.2666372,-0.19744796,0.264133,0.44728532,0.061138317,0.04594251,-0.06660744,-0.4196551,-0.34185356,0.09687578,-0.12837075,0.37059513,0.09069143,-0.24139506,0.44216144,0.030061828,1.098901,0.09242689,-0.354051,0.22852556,0.26659685,-0.021088783,-0.011836982,-0.2668849,0.85165334,0.5388434,0.06931174,-0.13693859,-0.3459412,-0.04402266,0.37074095,-0.15552743,-0.22369258,0.051333334,-0.75960404,-0.26843736,0.24911015,0.15494336,-0.09548084,-0.07021714,-0.0088393,0.19448218,-0.037988964,0.27448177,-0.59720224,-0.05766269,0.414834,0.46820074,-0.003980749,0.09611543,-0.39002594,0.38517523,-0.5599474,-0.0063768122,-0.14759047,0.16082558,-0.30805305,-0.104917526,0.2472578,0.16838191,0.4856748,-0.01719622,-0.30752033,-0.22620772,0.46011978,-0.02365586,0.16337048,0.4491703,-0.22872066,0.038346387,-0.067827515,0.31361657,1.0910562,-0.21121645,-0.007818795,0.35209215,-0.3600386,-0.56623924,0.5119168,-0.29601356,0.37145963,0.065905616,-0.26902005,-0.34017628,0.19164208,0.24594167,0.053791963,0.16376835,-0.47860608,-0.36472258,0.14970633,-0.32561734,-0.33551612,-0.35503864,0.042313144,0.6205488,-0.3123778,-0.22764063,0.08448439,0.41831955,-0.20222116,-0.5548402,0.0206254,-0.13193652,0.24540646,0.017067881,-0.35014403,-0.2616374,0.050026137,-0.32996362,0.19750334,0.17550865,-0.42835385,0.14153616,-0.18879212,-0.086273484,0.834439,-0.20107515,0.099041,-0.6560231,-0.46649557,-0.63238865,-0.46529543,0.18959545,0.33453828,-0.14171773,-0.38039902,-0.12503614,0.0039162533,0.0027143222,-0.075589426,-0.3685084,0.4447386,0.12336059,0.39436758,-0.16072853,-0.7701572,-0.04637038,0.19955625,-0.023677519,-0.59275687,0.54096496,-0.03074989,0.845028,0.11454303,-0.00944839,0.22663209,-0.41315615,-0.0074177017,-0.14053145,-0.2736029,-0.70747906,0.09781388 -408,0.41307178,-0.3016015,-0.78751546,-0.14961426,-0.27707267,0.25424647,-0.19615783,0.5745319,0.2609366,-0.73196936,-0.2489224,-0.077347815,0.05231856,0.29194286,-0.16899155,-0.52270025,0.00013493498,0.38677672,-0.47479343,0.40811595,-0.2979924,0.14563094,0.09737114,0.5436875,0.28392798,0.085639395,-0.13720815,-0.123135306,-0.17603791,-0.2855131,-0.19037716,0.3361275,-0.4080089,0.278456,-0.29467493,-0.6118714,-0.110997416,-0.41147575,-0.48384237,-0.75701886,0.16975026,-0.9870283,0.85464144,0.020508716,-0.43966952,-0.048145134,0.2647708,0.26734418,0.12782075,0.08648423,0.23414786,-0.2989342,-0.14490394,-0.26260397,-0.44911703,-0.6431742,-0.5855832,-0.093730874,-0.42822945,0.12377902,0.07636011,0.35148504,-0.29757285,-0.048814785,-0.2469893,0.35690156,-0.39507782,0.32264033,0.14207815,-0.13289745,0.2797921,-0.67326236,-0.3692402,-0.11811817,0.21719821,-0.13095525,-0.24546134,0.13600293,0.092528425,0.5524941,-0.0041288235,-0.090031564,-0.27804464,-0.00962481,0.09838635,0.62650853,-0.3136208,-0.14955966,-0.28002015,-0.037000615,0.3862296,0.23607974,0.23745406,-0.29344934,0.10358003,-0.19350497,-0.25551778,0.39803696,0.6107369,-0.20708607,-0.29048958,0.2533234,0.40570977,0.07887565,-0.3210092,0.11497489,0.06256137,-0.42070803,-0.07761068,0.048853476,-0.11335514,0.5362581,-0.114614844,0.3048127,0.39329323,-0.19242883,0.013398995,0.21184587,0.30507144,0.027401596,-0.42435697,-0.50470465,0.42711583,-0.53935605,0.010766474,-0.24934427,0.73494864,-0.04526782,-0.6280212,0.20046921,-0.56786793,-0.016209511,-0.10358432,0.48282728,0.55577475,0.39366186,-0.029262925,0.6575095,-0.13485764,0.013804778,-0.012408048,-0.014241626,-0.061385196,-0.35924363,0.23388658,-0.5791082,-0.045646995,-0.06627391,-0.050313745,0.14387709,0.64252657,-0.64708924,-0.49911204,0.23375231,0.9636949,-0.35183835,-0.110687785,0.8664349,1.1067692,0.8958187,-0.028752869,1.2021604,0.2770426,-0.24709038,-0.26107013,-0.16616607,-0.6546679,0.33896077,0.091059506,-0.55518264,0.361086,0.17095047,-0.14657168,0.47131944,-0.44126603,0.0323213,-0.36512208,-0.08207903,-0.014334996,-0.028234722,-0.5685279,-0.3152616,-0.09981284,-0.14351755,0.22883976,0.16006267,-0.447582,0.6093074,0.086069144,1.306591,-0.29416478,0.00069422275,0.09608549,0.3460668,0.06665868,-0.10161635,0.17871113,0.24698605,0.35954818,0.08321228,-0.45542097,0.017348707,-0.33284983,-0.3714287,-0.30456427,-0.16127995,-0.2468956,-0.003127632,-0.47798762,-0.32392564,-0.06020305,-0.29680023,0.26546878,-2.3447814,-0.26491967,-0.14376174,0.41482666,-0.27228543,-0.44379422,-0.3078204,-0.5017998,0.32642215,0.19285144,0.50922424,-0.5592892,0.559087,0.33559546,-0.43164656,-0.16061507,-0.80006474,-0.20093124,-0.09082994,0.15233774,0.027068308,0.011859134,0.15245833,-0.21596193,0.46033946,-0.26578006,0.14975417,0.272306,0.4884757,-0.058017895,0.27209416,0.14851505,0.6512213,-0.5483109,-0.24922371,0.42138448,-0.5753693,0.14266993,-0.12521932,0.14185886,0.57977563,-0.43169785,-0.6622257,-0.7812336,-0.24026245,1.1571702,-0.0639954,-0.5046219,0.03318261,-0.3200315,-0.41367468,-0.08077401,0.521154,-0.21267177,0.019006163,-0.81134254,-0.17921348,-0.08247938,0.17188315,-0.120665886,-0.026283868,-0.4181771,0.55607295,-0.15816681,0.4614644,0.47617027,0.33186245,-0.16174509,-0.35994014,-0.015927767,1.0349854,0.31972954,0.20119189,-0.3413159,-0.055916145,-0.39024183,0.12806807,0.07205343,0.54981226,0.60127616,-0.05395356,0.16080602,0.4624864,0.05459304,0.23144953,-0.08205556,-0.53791314,-0.33876798,0.20292914,0.54843724,0.45602885,-0.07460556,0.62570906,-0.14976856,0.55921596,-0.31062064,-0.48380914,0.20325428,1.2541689,-0.38321152,-0.48082566,0.81328326,0.5109305,-0.39107418,0.5353236,-0.80646104,-0.44920778,0.21905406,-0.083801515,-0.49727774,0.13759638,-0.20555843,0.3087834,-1.0215845,0.42108706,-0.29518715,-0.6788171,-0.6079801,-0.20930071,-1.6204447,0.30679616,-0.3185359,-0.09621834,-0.25273937,-0.3701179,0.24445917,-0.5271486,-0.41350856,0.037931174,0.16669983,0.55485535,0.01000008,0.11885438,-0.18746744,-0.3765031,-0.16296391,0.3987781,0.32283553,0.26433787,-0.21398921,-0.5029961,0.057767626,0.0630094,-0.1592737,0.115641505,-0.943927,-0.4805498,-0.005912623,-0.56839913,-0.26476875,0.70823735,-0.327095,-0.030299796,-0.305431,0.18080805,-0.051657956,0.16876818,-0.07114149,0.22691523,0.014092207,-0.20639147,0.086063124,-0.25843778,0.23040426,0.09064102,0.24780159,0.5214902,-0.14217055,0.22624065,0.44550633,0.5296424,-0.044747695,0.8520837,0.58476895,-0.13713221,0.20686038,-0.20630771,-0.3370668,-0.55836195,-0.20434071,0.17690347,-0.52935433,-0.42906857,0.012193498,-0.3821908,-0.9735767,0.714433,0.10989403,0.20293814,-0.026064435,0.4547012,0.60034555,-0.14529474,-0.13498582,-0.07757347,-0.13650203,-0.41274127,-0.5398331,-0.6738667,-0.48150158,-0.12881972,1.4868202,-0.15624276,0.35956702,0.32121944,-0.23770846,-0.044532508,0.5194058,-0.060270894,-0.20575665,0.6829532,-0.19387297,-0.6163478,0.2079304,-0.12438813,-0.18714094,-0.619824,0.35862145,0.70851165,-0.80657226,0.41556206,0.4752097,-0.030617507,-0.45152032,-0.5500222,-0.1317989,0.039970938,-0.22207838,0.55448073,0.270803,-0.35009933,0.23700239,0.2209916,-0.2040689,-0.55309874,0.44006243,-0.14024164,-0.31739685,-0.040135287,0.45766166,-0.012799243,-0.0053455927,-0.09067271,0.12196824,-0.27210233,0.43989384,0.07129781,-0.1898552,0.16510163,-0.3777006,-0.13674432,-0.79243773,0.14184205,-0.7185128,-0.3434881,0.3640896,0.04696365,0.24034637,0.40744886,0.14045806,0.3427666,-0.4433335,0.04085366,-0.27592474,-0.39809623,0.48339677,0.3086176,0.4094882,-0.4242493,0.5422459,0.08788409,-0.33772373,0.038469184,0.2326606,0.5956393,-0.011424969,0.4988831,-0.092683546,-0.160864,0.29018134,0.90738374,0.29352638,0.5054353,0.041890413,-0.1635801,-0.07359192,-0.03125496,0.14052975,-0.23633327,-0.4883997,-0.14607644,-0.3992988,0.2479112,0.466913,0.0747525,0.56916744,-0.15267597,-0.2037253,0.094322145,0.069934204,0.14214982,-1.3507805,0.1776576,0.16561586,0.85722286,0.13808517,0.0077199093,-0.089407094,0.62411654,-0.15918975,0.19722761,0.39925256,-0.068131775,-0.26723588,0.6155137,-0.6273393,0.387869,-0.13887414,0.1805296,0.0060431226,-0.15854631,0.49739423,0.8553369,-0.1320805,0.1263515,0.1282624,-0.3343245,-0.012078084,-0.31089804,0.22761138,-0.6840121,-0.22320545,0.806201,0.5943614,0.59947675,-0.20094042,-0.018324887,0.2931507,0.014124672,0.36965418,0.21629119,0.27156493,-0.050272223,-0.69772696,0.037798654,0.6072103,0.11078188,0.030964077,0.1873625,-0.31343052,0.29026666,-0.061998025,0.18964845,-0.0700606,-0.4115213,-0.12741075,-0.4540952,-0.51632625,0.4170444,-0.25646302,-0.0023975458,0.1962539,0.21580078,-0.20619595,0.30577964,0.08590194,0.8819682,0.12267947,-0.16248359,-0.37578273,0.28454545,0.25802392,-0.29152635,-0.10443934,-0.32208392,0.20537136,-0.4951252,0.38399723,-0.09537715,-0.15538044,0.105264574,-0.20504765,0.0026461494,0.47364795,0.00036268434,0.07459587,0.19448233,0.1875356,-0.524229,0.0064010173,-0.15184505,0.2684741,0.2744707,0.047546554,-0.2856975,-0.2027862,-0.14742355,0.2512455,0.03914519,0.4185636,0.60592085,0.12686133,-0.29049516,-0.07426807,0.25967914,0.6335528,-0.04400088,-0.1513045,-0.13627402,-0.5469853,-0.24898405,0.38489008,-0.17858417,0.31758365,0.18123262,0.032986462,1.0600108,0.01296404,1.1847938,0.04638807,-0.37832502,-0.003540665,0.47996387,0.086932965,-0.056473404,-0.28496498,1.1189156,0.55501,-0.030139035,-0.102879465,-0.4482486,-0.07959104,0.20616733,-0.20664203,-0.23637791,-0.078843094,-0.65609837,-0.19090398,0.31083488,0.30083275,0.19457929,-0.04065308,0.3768654,0.3230298,0.008819046,0.1916861,-0.69564635,-0.13669665,0.17510271,0.383906,-0.16487257,0.29080012,-0.43544206,0.27672827,-0.61221075,-0.031134807,-0.20173661,0.13597782,-0.08971543,-0.22910815,0.19021513,0.03768409,0.3437623,-0.63948137,-0.18642415,-0.1771097,0.47342828,0.1814682,0.029937305,0.56336707,-0.21280652,-0.050372645,0.10457484,0.54443353,1.2319192,-0.41644824,0.059908777,0.4850143,-0.47912553,-0.80825645,0.25158405,-0.44202673,0.18589222,-0.02093353,-0.33619848,-0.57492137,0.41734993,0.17166798,-0.16926081,0.06637996,-0.33902225,0.18945044,0.20607449,-0.2509043,-0.17765139,-0.2995715,0.2467679,0.29631048,-0.11000648,-0.40505576,-0.08064115,0.4650443,-0.22089891,-0.3274177,0.07300676,-0.4413302,0.20896429,0.155316,-0.3351383,-0.059514627,-0.24071027,-0.45531586,0.10965956,0.43745804,-0.29336298,0.13884343,-0.33297247,-0.079228744,0.65417594,-0.07992047,0.08914303,-0.63642603,-0.36562207,-0.72152585,-0.39171967,0.047152665,0.3269184,-0.071440876,-0.59603333,-0.03063599,-0.21837734,-0.4395094,0.0030759622,-0.34378576,0.543892,0.2202781,0.32446355,-0.21414852,-0.85779786,0.27339283,0.08663682,-0.26201132,-0.5110788,0.39106926,-0.115265556,1.0258886,0.14911303,0.16489793,0.2630957,-0.5754152,-0.053413883,-0.21605909,-0.23132975,-0.9100585,-0.3596723 -409,0.367461,-0.21981768,-0.5038935,-0.111332305,-0.14238863,0.20077865,-0.19544935,0.47295702,-0.043608896,-0.4872675,-0.1029324,-0.2506765,-0.022403877,0.32110158,-0.17540582,-0.34659493,-0.011594049,0.013662334,-0.54346824,0.4266126,-0.44326916,0.2327375,-0.023632389,0.35696134,0.10644266,0.21568385,0.022957452,-0.11434393,-0.18126613,-0.06775978,-0.20485996,0.14448309,-0.5194511,0.09574134,0.030538162,-0.16538976,-0.03920033,-0.33884355,-0.19152793,-0.63432103,0.3373241,-0.6670404,0.43056244,0.034813803,-0.33192864,0.27404925,0.20475931,0.3549022,-0.28028476,-0.06473755,0.21792142,-0.061678402,0.11290066,-0.14545903,-0.07846589,-0.41455773,-0.5321389,0.044260144,-0.47592303,-0.29978323,-0.016002767,0.16061303,-0.27922007,-0.037234895,-0.3003665,0.46119052,-0.4017784,0.010518197,0.25391552,-0.08749146,0.18486737,-0.5715264,-0.094501115,0.033321105,0.20284876,-0.2482739,-0.2340414,0.23179223,0.17204557,0.40952852,-0.21585874,-0.080896504,-0.24511315,-0.016257267,0.16292308,0.51369715,-0.19523495,-0.3972294,-0.113893226,0.013346998,0.091579325,0.017036764,0.21118815,-0.29295632,-0.25291613,0.09939063,-0.0917722,0.3135336,0.5370539,-0.20507552,-0.15783015,0.30051243,0.5508082,0.23922817,-0.14137593,0.05135901,-0.011537863,-0.5226255,-0.098955356,0.19096518,-0.17531066,0.44263062,-0.14386219,0.30288297,0.5416094,-0.21367364,0.016905967,0.084939696,-0.03385192,0.05092891,-0.13429448,-0.25211477,0.12545495,-0.36258385,0.0291265,-0.28239915,0.7199679,0.22223148,-0.7894282,0.4089378,-0.46649152,0.13774295,-0.03792332,0.53381133,0.75061774,0.42394117,0.22148259,0.7081104,-0.46049663,0.12162669,-0.101234816,-0.23528562,0.19417614,-0.20875986,-0.036674373,-0.5462449,-0.16897169,-0.06619263,-0.23581961,-0.1290126,0.23225409,-0.71000105,0.19055723,0.05298012,0.77387375,-0.26531556,-0.06587792,0.73758286,0.81365585,0.9291593,0.2331272,0.8892709,0.19273315,-0.27593547,0.20489372,-0.3129191,-0.7140667,0.26452354,0.3291529,0.47083881,0.31420258,0.097513564,-0.062136672,0.44692963,-0.41348988,0.16355298,-0.23787345,0.07554371,0.08468009,-0.12491291,-0.25276792,-0.19482599,-0.07022305,0.06717167,-0.068213105,0.25855508,-0.18005134,0.47058597,0.09425966,1.7330229,-0.06882762,0.07461745,0.09646846,0.3499726,0.07259084,-0.43764964,-0.061603583,0.33328068,0.59184074,0.0486472,-0.67765087,0.11276191,-0.03498784,-0.47086862,-0.16146661,-0.3310905,-0.0843996,-0.083746225,-0.54107744,-0.17591763,-0.007894035,-0.15178087,0.28633928,-2.93659,0.09085957,-0.06491298,0.30063048,-0.2476462,-0.3265873,-0.0060578664,-0.51382315,0.3253712,0.47316483,0.27764252,-0.6888317,0.3731474,0.24054378,-0.25590977,-0.00022776921,-0.6413133,-0.011508377,-0.06569636,0.28534365,-0.043547515,0.046951976,0.23886102,0.19254269,0.37316337,-0.16938373,0.11169119,0.055965893,0.41564742,0.11793114,0.3594993,0.09310956,0.35170257,-0.15899692,-0.10096536,0.28492278,-0.35892335,0.064273156,0.0102642495,0.13000327,0.31797445,-0.41903085,-0.6382814,-0.57406056,-0.13964488,1.0867658,-0.18564327,-0.4155825,0.26146916,-0.2798894,-0.3373122,-0.23886092,0.40660337,-0.06330566,-0.19329184,-0.80085284,0.010118812,-0.19281188,0.2504495,-0.042813636,-0.2067015,-0.38473067,0.71206325,-0.11663916,0.49419674,0.39134887,0.0573266,-0.21818991,-0.44149786,0.09008883,0.81648916,0.4522511,0.114847854,-0.16852763,-0.21206698,-0.29373276,0.10322032,0.17287797,0.47457585,0.74597394,-0.021031145,0.15075655,0.26160353,-0.117851235,0.050155062,-0.15309931,-0.2534685,-0.08571995,-0.008601157,0.62463486,0.5073669,-0.077402,0.56338084,-0.13522059,0.17414586,-0.19493799,-0.4355995,0.38961002,0.81525916,-0.06917436,-0.2639218,0.44742066,0.51808566,-0.18844433,0.2943207,-0.5151002,-0.22394064,0.5570269,-0.2672637,-0.34417427,0.29713294,-0.29735613,0.2530632,-0.7730109,0.41564313,-0.19169979,-0.547649,-0.714888,-0.13231167,-2.8350012,0.14030232,-0.29756597,-0.3414481,-0.08753727,-0.1354434,0.2635992,-0.5621025,-0.445324,0.203011,0.08001689,0.69285023,0.06929531,-0.027087457,-0.15638402,-0.20552193,-0.1729108,0.07780601,0.06448174,0.2080203,-0.0027337868,-0.37569797,-0.01537865,-0.19072972,-0.25820178,-0.015896667,-0.41821703,-0.5612315,-0.28449836,-0.49394158,-0.31578842,0.58679783,-0.36425093,0.020287514,-0.11879993,-0.03263028,0.011303683,0.4249741,0.23154637,0.107103474,-0.08727476,-0.059432086,0.086247444,-0.4198329,-0.053506553,0.067161724,0.30419743,0.3871794,0.103519715,0.28112862,0.46593297,0.5840398,0.02238344,0.5646282,0.5317341,-0.060330965,0.29441896,-0.29116902,-0.056533553,-0.40525237,-0.23124522,0.108620666,-0.4435288,-0.50431687,-0.03286253,-0.2680162,-0.72317535,0.32269913,-0.12864642,-0.027125163,-0.01048701,0.33931282,0.49300498,-0.10423223,-0.016277773,-0.18378963,-0.13368924,-0.46488407,-0.28503132,-0.6036977,-0.39795277,0.11695898,1.2009218,-0.13789102,-0.04552157,-0.0147486245,-0.21317865,0.06313405,0.14541057,-0.059649162,0.25115138,0.24879247,-0.23868078,-0.6745227,0.47409979,-0.08721169,-0.22296026,-0.56758726,0.07300392,0.4843398,-0.5908802,0.45146036,0.13547148,0.084544234,-0.13946003,-0.4871909,-0.08157874,0.11229508,-0.25193676,0.357006,0.08992003,-0.66107845,0.38021088,0.29904515,-0.24992698,-0.7087201,0.31917867,0.0055904468,-0.38247368,-0.0024502676,0.19162661,-0.18587752,0.060722537,-0.2698094,0.19835353,-0.46190643,0.037786223,0.45533744,0.004992529,-0.01841592,-0.24392039,-0.13532373,-0.56497395,0.032007955,-0.48512,-0.21298787,0.2599888,0.10743243,0.23017666,0.16460416,0.18513091,0.46368402,-0.3113567,0.11024661,-0.05191202,-0.2265308,0.20216791,0.45222276,0.34252298,-0.42317298,0.6139625,0.088051334,-0.0188262,-0.1414721,0.19894062,0.49437687,0.25131565,0.32820952,-0.07467187,-0.24285218,0.356261,1.0262887,0.22095136,0.6268417,0.031145748,-0.066335775,0.0711968,0.08463215,0.16232672,0.148226,-0.29893506,-0.01564238,0.052023195,0.15548955,0.38118833,0.03278928,0.32570016,-0.06138899,-0.2697787,0.12310977,0.19353513,-0.02957805,-1.1108493,0.3686928,0.23811728,0.7632121,0.4172987,0.028708482,0.060269114,0.53900707,-0.26180372,0.13940115,0.0519745,-0.022328673,-0.51819235,0.42640617,-0.7040742,0.40572065,-0.13704711,-0.036608703,-0.07327543,-0.13824573,0.45911068,0.770134,-0.22548018,0.077158354,0.050710548,-0.23830914,0.11735116,-0.4168972,0.09500847,-0.573964,-0.33072,0.59123045,0.40393803,0.4167847,-0.05867343,0.019905804,0.16715463,-0.117413335,0.060844418,0.026965864,0.13817693,0.060473602,-0.7097721,-0.31469238,0.47119176,-0.22527485,0.1733944,0.005198264,-0.23342076,0.11908435,-0.16920453,-0.10099704,-0.1176398,-0.59562546,0.17056532,-0.282061,-0.45316964,0.47483456,-0.19898368,0.26746044,0.34575734,0.111264326,-0.34861085,0.29289913,0.088977896,0.6673032,-0.15033881,-0.12841333,-0.48145428,0.25298294,0.21936525,-0.18567172,-0.15979847,-0.28532192,0.0854899,-0.5252124,0.41267532,-0.037381873,-0.25053385,0.08911301,-0.05856015,-0.027929919,0.6725292,-0.053463403,-0.17531122,0.07962136,-0.29600614,-0.20190257,-0.1693071,-0.11962009,0.21053505,0.17914085,-0.04013898,-0.023144472,0.046645183,-0.118555374,0.3141229,0.21730341,0.4165966,0.3673586,0.00093242526,-0.54282516,-0.018452918,0.03675862,0.4410724,0.08343046,-0.18688531,-0.43872327,-0.5389411,-0.3050437,0.26856306,-0.22405316,0.3879532,0.041553576,-0.31187242,0.79821575,-0.040128756,1.0574201,0.03172239,-0.396735,0.05970359,0.5073648,-0.004678599,-0.01703184,-0.38592407,0.70466536,0.47620448,0.0316525,0.03247955,-0.14267255,-0.0417823,0.3906893,-0.107030585,-0.17121309,-0.022083888,-0.5740545,-0.21355735,0.16777371,0.18663219,0.20563895,-0.067859426,0.06005149,0.2136075,-0.109783836,0.09241968,-0.4032943,0.0058688642,0.20804267,0.0530492,0.10280616,-0.03490566,-0.4391848,0.39993006,-0.3358887,-0.004657308,-0.23435402,0.069201365,0.10635857,-0.27433914,0.13014767,-0.068837866,0.17241293,-0.35604605,-0.192755,-0.32345596,0.59030557,0.2757822,0.3405619,0.5153291,-0.20917886,0.2066619,0.10336632,0.58930564,0.9374276,-0.2761325,-0.08641403,0.43060505,-0.31764647,-0.60711795,0.33947983,-0.15025851,0.09689628,0.010794019,-0.25063014,-0.46336097,0.24135561,0.26562348,0.0076382714,0.10459914,-0.5335681,-0.30198687,0.4071855,-0.35680917,-0.27977893,-0.26515368,0.24281837,0.56279725,-0.2908702,-0.1461203,-0.028551165,0.32576576,-0.2598425,-0.3179926,0.05081127,-0.33618298,0.22027776,0.004344233,-0.25195614,-0.17936026,0.18214951,-0.3303718,0.19847186,0.20150293,-0.34172696,-0.030933417,-0.24550638,-0.15630119,0.78326124,-0.23247531,-0.06531762,-0.6517099,-0.44980052,-0.82881814,-0.30236876,0.4537587,0.11184616,0.13472907,-0.724964,-0.05592393,0.0006737729,0.030239249,-0.14144494,-0.30816728,0.55910796,0.15613873,0.28802723,-0.029237783,-0.5909077,0.10543993,0.063435085,-0.17077859,-0.45175913,0.5028834,-0.006918065,0.79214096,0.036318116,0.11891481,0.23203048,-0.47642463,0.20414506,-0.23518935,-0.26146248,-0.69835436,0.09137197 -410,0.12351086,0.036737423,-0.65934503,-0.20137458,-0.26614955,0.06052604,-0.2385367,0.3006265,0.42949268,-0.23833747,0.093401894,-0.17785887,0.022318646,0.19143412,-0.10273246,-0.7305013,-0.070260264,0.17452994,-0.4158327,0.377187,-0.62296695,0.27256683,0.030894104,0.2759095,-0.04876808,0.25683212,-0.006197768,-0.37936598,-0.0056206607,-0.25622833,-0.11437785,0.21118878,-0.37098327,0.10185252,-0.06343695,-0.25338447,0.30102268,-0.40756032,-0.42890143,-0.66277516,0.17245711,-0.705874,0.5028023,0.13811071,-0.2734093,0.35151473,0.056189597,0.21590416,-0.14876638,0.038399577,0.3241735,-0.30728784,-0.32829756,-0.1413769,-0.40010455,-0.43403766,-0.60017765,-0.13829152,-0.48904228,-0.11657059,-0.23910911,0.14487822,-0.4327151,-0.05902515,-0.1477158,0.3801624,-0.42604813,0.060638078,0.13825865,-0.23568901,0.19382633,-0.5667451,-0.045785937,-0.009707929,0.13561194,0.011463659,-0.08521693,0.14790191,0.03503375,0.46633333,-0.026296139,-0.17078151,-0.3948555,-0.022489114,0.09608756,0.5642542,-0.21693747,-0.20988293,-0.035659935,0.13747345,0.20771718,0.4393879,-0.1673893,-0.12489448,-0.11573959,0.054627955,-0.39148638,0.41635886,0.53186196,-0.18537731,-0.061039057,0.4099919,0.2762034,0.2530312,-0.21538207,0.14107832,-0.0700819,-0.4401979,-0.20204869,0.065761045,-0.13738945,0.37768427,-0.12493414,0.26349556,0.61029196,-0.20474227,-0.035086103,-0.0038862228,-0.024601946,0.17925005,-0.1916617,-0.15603106,0.32386377,-0.49448732,0.099552974,-0.20698662,0.7378839,-0.07877243,-0.8366333,0.39386153,-0.5292838,0.18803287,-0.25494972,0.71090996,0.5865099,0.61190015,0.35075384,0.72063965,-0.41995025,0.2231509,-0.08020858,-0.4477037,0.29783282,0.13472779,0.14927895,-0.53911346,-0.09598142,0.04055569,-0.20407462,0.14165936,0.36323142,-0.49206457,0.02496274,0.21722195,0.82391137,-0.28503567,-0.08307298,0.57271767,1.1295166,0.8906693,0.08636044,1.0146782,0.30031508,-0.17580725,0.007440384,-0.3315896,-0.83783025,0.13104217,0.21691704,-0.110531315,0.23245737,0.046961136,-0.06646589,0.3261111,-0.32909387,-0.13693073,-0.14809522,0.29357812,0.025699649,-0.05507644,-0.32228413,-0.31886292,-0.034195464,-0.007274573,0.20776984,0.27175856,-0.1353722,0.3833708,0.046963204,1.4062366,0.052894752,0.110685095,0.099015035,0.4681892,0.19863454,0.038754296,-0.0053163213,0.566827,0.20532903,0.021458153,-0.6549992,0.12445732,-0.12102244,-0.33702794,-0.1341903,-0.25770977,0.00021371672,-0.05665533,-0.17820038,-0.28235516,-0.14040676,-0.36559802,0.48754957,-2.874235,-0.02410183,0.024529502,0.31320563,-0.06519335,-0.2401651,-0.03798338,-0.5036606,0.4484399,0.29367477,0.4944766,-0.57211626,0.45359465,0.5219354,-0.50779325,-0.21236922,-0.70716506,-0.16999473,-0.032705877,0.38360813,0.08871371,-0.1124681,-0.075550534,0.01448346,0.3107455,0.0023238808,0.14049523,0.24314417,0.59681696,0.067823246,0.4693375,-0.06010211,0.56917804,-0.08687697,-0.10866646,0.17704964,-0.33559173,0.27480084,-0.22670472,0.035121158,0.35432133,-0.327346,-0.70524114,-0.24080086,-0.02285018,1.2485622,-0.15566672,-0.4068109,0.19009627,-0.1301755,-0.16200177,-0.031073082,0.44412598,-0.16056453,-0.26257214,-0.71034443,-0.020369647,-0.16322783,0.2735377,0.056631945,0.062092338,-0.4195496,0.5014383,0.0144430315,0.53837746,0.32745662,0.09876716,-0.18057169,-0.4027338,-0.026525598,0.68713135,0.3219533,0.087373264,-0.23816817,-0.2198091,0.01087944,-0.108579874,-0.054880533,0.5463901,0.7604211,-0.11042493,0.11166376,0.37925705,-0.37089425,0.006991063,-0.23639956,-0.40260014,-0.07920461,0.021069458,0.46486542,0.5319168,-0.15301703,0.44799057,0.1783602,0.31213382,-0.12634383,-0.37942272,0.29970485,0.7761531,-0.119847186,-0.14870293,0.4654891,0.48625207,-0.16102548,0.45785162,-0.5102516,-0.2127959,0.4657116,-0.16032712,-0.5654068,0.31154436,-0.19828394,0.045708317,-0.87231094,0.28484765,-0.25281364,-0.5263426,-0.7261316,0.037399653,-3.166468,0.038541056,-0.39311212,-0.098587416,-0.13498984,0.059738856,0.14610846,-0.37652153,-0.5216904,0.13089816,0.377769,0.42458507,-0.16272889,0.09340505,-0.33655456,-0.065738834,-0.31880242,0.24518673,0.0407631,0.23266718,0.005920261,-0.5353493,0.01274193,-0.19655047,-0.27426606,0.04837619,-0.39089766,-0.18134955,-0.015318049,-0.5481058,-0.19350128,0.7152135,-0.37147316,-0.10508013,-0.30113506,0.061791744,0.1076153,0.30063978,0.016982645,0.14094216,-0.07555385,-0.0065092957,-0.023844024,-0.29966882,0.3433985,0.014423685,0.30262658,0.25121808,0.08178137,-0.03959585,0.61942434,0.49912515,0.025727486,0.8027515,0.48429415,-0.19634484,0.30556482,-0.30271107,-0.03825151,-0.43007877,-0.35758576,-0.16371581,-0.4114972,-0.4975212,-0.091602124,-0.3840962,-0.8414206,0.51162374,0.10407251,-0.03402024,0.052492652,0.32258686,0.4910903,0.0324549,0.16334851,-0.067581035,-0.18501766,-0.34348387,-0.09965148,-0.76297325,-0.2803857,0.21102282,0.9646602,-0.29717693,-0.06856503,0.119843744,-0.32559282,-0.1410059,0.18926157,0.1010376,0.37177625,0.35442767,0.123299845,-0.6531034,0.4471872,-0.10742529,0.059036944,-0.7542928,0.06921844,0.646619,-0.81997067,0.39232212,0.5276356,-0.02511701,-0.016158478,-0.61506397,-0.28087622,0.058298197,-0.14957549,0.32826096,0.031709153,-0.7977314,0.63868797,0.27172372,-0.25046623,-0.7391796,0.32203063,-0.086400524,-0.3725792,0.18850558,0.30035022,0.12034444,0.060954865,-0.21634053,0.16730879,-0.33850604,0.3441494,0.051592994,-0.15029518,0.22264597,-0.044656273,-0.07942803,-0.8174313,-0.11903507,-0.5073223,-0.30429077,0.3958756,0.036896594,0.26785567,0.04130314,0.09624035,0.4424937,-0.20193873,0.078236006,-0.1618428,-0.25162378,0.44926164,0.48280174,0.23344989,-0.46771988,0.55522364,0.05331077,-0.156788,0.06285393,0.008259871,0.40299314,-0.0018833982,0.31253046,0.05969588,-0.29808834,0.15583995,0.87151915,0.15703861,0.36892158,0.11198033,0.028933665,0.46563342,-0.051708996,-0.0017848952,-0.07486127,-0.4878428,-0.06454766,-0.27280927,0.22849067,0.37568134,0.17212251,0.460322,-0.14043395,-0.16836107,-0.019228382,0.24116635,0.21303265,-0.7198998,0.38073167,0.16236408,0.58893985,0.54283947,0.1623807,0.13446002,0.670119,-0.26101425,0.031271588,0.43078908,0.14993559,-0.470804,0.5017575,-0.6646541,0.36092734,-0.10099148,-0.023422748,0.22764595,0.08057524,0.39130673,0.84366196,-0.1901052,0.00085852825,-0.05270955,-0.23127587,0.03388591,-0.1747417,-0.012996427,-0.3372577,-0.28697917,0.56225145,0.31058547,0.32761285,-0.13613813,-0.023907542,0.29704595,-0.048949268,0.30389175,0.06364531,-0.05377862,-0.15211587,-0.5780312,-0.1673261,0.62002534,-0.008017495,-0.008483206,-0.06428738,-0.1660751,0.32859588,-0.30273682,-0.11323094,-0.03810316,-0.45635337,0.0064117396,-0.20938404,-0.66945326,0.5390524,-0.017538872,0.27457294,0.104027815,0.12464774,-0.17012906,0.1603463,0.15508518,0.7257196,-0.12719508,-0.21029556,-0.33634117,-0.18253164,0.16827835,-0.25204447,-0.3104872,-0.23685408,0.064835526,-0.54958475,0.40453848,-0.4726148,-0.32593796,-0.034668088,-0.24198975,-0.038708877,0.45203224,-0.2843924,-0.10353987,0.03802922,-0.24558903,-0.288555,-0.2495249,-0.27628937,0.15747033,0.026024427,-0.19660068,-0.2422246,-0.22291167,-0.1335254,0.3888208,-0.0006409841,0.15799613,0.26393154,0.14394554,-0.28771666,-0.25966164,0.13944848,0.56643075,-0.14626636,0.017734213,-0.26857144,-0.25549954,-0.30002612,0.14911675,-0.093910694,0.368633,0.068872005,-0.45059237,0.81305134,-0.030563751,0.9485888,-0.010457243,-0.33856964,0.15030381,0.548855,0.14553261,0.14902128,-0.2547523,0.95667636,0.6505944,-0.0691318,-0.16392647,-0.5541765,-0.11596105,0.34185982,-0.18433419,-0.1774433,0.006307487,-0.5411933,-0.20821932,0.3667483,0.082651615,0.12523939,-0.15551749,0.0819739,0.04063142,0.24846962,0.23080441,-0.40263417,-0.16300781,0.24486981,0.14801721,0.14737667,0.17901662,-0.4058485,0.25062272,-0.332659,0.18726993,-0.37948632,0.08691553,-0.11500012,0.02393855,0.19610044,-0.060245693,0.25742355,-0.2466491,-0.4575143,-0.019851675,0.43898663,0.19055273,0.3184202,0.6438021,-0.22349752,-0.04451722,-0.09693108,0.6605805,1.2066647,-0.20561756,-0.09321177,0.506288,-0.26956242,-0.6474144,0.18499517,-0.4225922,-0.16323607,0.03827181,-0.36180285,-0.41264132,0.24758582,0.13021311,-0.10605584,0.09527375,-0.37212276,-0.19622609,0.19269408,-0.35155082,-0.26606572,-0.33177313,0.124186814,0.8791432,-0.2983052,-0.23534767,0.036888976,0.16208646,-0.23008992,-0.5777916,0.16162685,-0.30950165,0.24333332,0.2873283,-0.40044388,0.055966623,0.08622528,-0.44524607,0.15778086,0.3968459,-0.29907745,-0.020610021,-0.2655422,-0.0077018524,0.8408227,-0.16394846,0.13364796,-0.5038465,-0.45893887,-0.71423185,-0.32198197,0.36723518,0.03635713,-0.037550908,-0.57399684,0.040664595,-0.06369226,-0.2591844,-0.103391014,-0.58366907,0.5138661,0.051941685,0.27694577,-0.35137722,-0.9091463,0.08275662,0.110405214,-0.4839905,-0.57101876,0.6324647,-0.23556812,0.8680186,0.116534874,0.04599231,0.23267868,-0.47757,0.35747197,-0.4456146,-0.3850265,-0.65215683,-0.018939788 -411,0.19224054,-0.11861815,-0.55022216,-0.03745103,-0.21068436,0.070961446,-0.31020743,0.35196728,0.24868076,-0.3055924,-0.18788838,-0.11392296,-0.0008227788,0.33659086,-0.14777595,-0.45878762,-0.027944393,0.23412447,-0.6467651,0.46928078,-0.4083532,0.20832911,-0.22381112,0.23888108,0.14586253,0.06675977,0.1366315,-0.075033605,-0.08125128,-0.106972985,0.153783,0.278759,-0.5519203,0.34212866,-0.22515717,-0.35871875,-0.052410603,-0.38093197,-0.47891364,-0.86106837,0.14531983,-0.6284699,0.5426832,-0.11426708,-0.20727138,0.34216067,0.04825057,0.23340936,-0.20614766,0.015441008,0.12633646,-0.30733538,-0.31368217,-0.12579082,-0.1289562,-0.3765438,-0.52537996,0.15917706,-0.45976332,-0.022840556,-0.30756378,0.15843575,-0.45021725,0.077651024,-0.1453229,0.46012187,-0.32433483,0.07964796,0.11195756,-0.1224089,0.08184731,-0.64395636,-0.07436329,-0.0834678,0.15014845,-0.08660397,-0.28744182,0.3554389,0.23401448,0.35676908,-0.07816216,-0.23587401,-0.18730906,-0.0015459917,0.069131054,0.48951143,-0.21870062,-0.28724873,-0.059607036,-0.030002255,0.3957434,0.031789623,-0.17639768,-0.24986112,-0.12111571,0.17016245,-0.16728815,0.23678069,0.66201,-0.1117012,-0.004043415,0.39411145,0.41240677,0.1225204,-0.089916356,0.028488897,-0.11113077,-0.43470633,-0.19449429,0.020007059,-0.10289548,0.38511327,-0.060902916,0.14412934,0.54410446,-0.16180956,-0.15377486,0.16569479,0.06591052,0.112287514,-0.1213204,-0.36321628,0.35571444,-0.53304285,0.15283361,-0.11608208,0.80648726,0.04665301,-0.709204,0.30516136,-0.41917795,0.14826441,-0.018189881,0.6962686,0.67463636,0.5165529,0.34946445,0.7563035,-0.3969695,0.06678455,0.023728974,-0.3434198,0.022084221,-0.2095798,-0.14562075,-0.3794619,0.04411233,0.18542561,-0.15988111,0.14993264,0.23143877,-0.5049023,-0.056648985,-0.0062003303,0.55414397,-0.28219992,-0.025983132,0.69835967,0.9587797,0.882318,0.11719304,1.1440634,0.18596719,-0.09416362,-0.019242518,-0.023239046,-0.79968566,0.28662544,0.1944604,-0.5883486,0.2774797,0.14568017,-0.20011686,0.34450462,-0.59716016,-0.23742557,-0.1771253,0.30898288,-0.005049616,-0.12804261,-0.27226725,-0.3282939,0.007440418,0.06476203,0.10732288,0.31683084,-0.2377497,0.1900284,0.16270982,1.2294052,-0.082247734,-0.025747176,0.27124217,0.32604477,0.13364145,-0.16663438,-0.10880429,0.110070735,0.49044815,0.08209589,-0.58061033,0.025422871,-0.14226076,-0.40895593,-0.15585268,-0.19895396,0.07494685,-0.08471978,-0.3430959,-0.16600668,-0.18848416,-0.5238247,0.5172334,-2.6610098,-0.11483997,-0.09690125,0.32250273,-0.12310476,-0.20936315,-0.24500015,-0.49891865,0.39519432,0.36167148,0.39525896,-0.49481776,0.32003665,0.26246157,-0.67769706,-0.12208405,-0.59363055,0.092516094,-0.012506014,0.3698804,0.11105826,-0.1341711,0.023168813,0.038622055,0.5455523,-0.14560714,0.08974991,0.37696266,0.30472726,-0.103816904,0.27583644,0.011976939,0.5280584,-0.3884138,-0.2852608,0.43816566,-0.3276397,0.21423852,-0.13850962,0.16702369,0.39887518,-0.58735657,-0.8471942,-0.49848232,-0.13568333,1.4208606,-0.30463868,-0.49763295,0.26210028,-0.24177054,-0.3015135,-0.0655482,0.43890443,-0.24225032,-0.10391819,-0.75825036,-0.008081645,-0.057727724,0.35286027,-0.063894846,0.040375434,-0.35554278,0.50754,-0.16887636,0.5690922,0.38138855,0.18927306,-0.2235343,-0.36400688,0.10713777,0.9382789,0.5083554,0.1511701,-0.18666671,-0.09915264,-0.21439643,-0.2184102,0.1854587,0.50680107,0.6957313,-0.06311566,0.111665316,0.29912356,0.0115129575,0.08199797,-0.19303702,-0.21576136,-0.011103552,0.18187542,0.6629111,0.56677914,-0.016117483,0.29381746,0.05028924,0.3307425,-0.187997,-0.40074623,0.4351523,1.0054443,-0.15364105,-0.28591442,0.42059946,0.49017882,-0.1441007,0.43423328,-0.55205506,-0.48827192,0.4593512,-0.19132984,-0.47227228,0.19666156,-0.29890233,0.19112349,-0.6447472,0.4172303,-0.22188683,-0.67311263,-0.41512185,-0.06092264,-2.973662,0.10012135,-0.31629926,-0.164365,-0.20274365,-0.09496001,0.23995024,-0.42283365,-0.5856006,-0.0075424146,0.16229844,0.7570189,-0.048534863,0.02720714,-0.16012917,-0.19863933,-0.34900028,0.041346613,0.24325302,0.23859406,-0.015949555,-0.39229512,-0.13960186,-0.25415024,-0.40854624,0.028718185,-0.44783545,-0.28971282,-0.25907406,-0.5094612,-0.28214633,0.5646341,-0.35207734,0.00958672,-0.23810978,0.015450355,-0.028829256,0.33381593,0.06197741,0.03857056,0.06762475,-0.16385542,0.059227124,-0.22072357,0.37671202,-0.0058117434,0.20860581,0.4848414,-0.25334427,0.07447862,0.49412674,0.6062057,-0.21240908,1.073992,0.44919264,-0.039287236,0.270899,-0.13575397,-0.3596237,-0.46814185,-0.20269334,0.09643796,-0.444063,-0.23622468,-0.031727254,-0.26021153,-0.8918482,0.6029829,-0.021394297,0.18921432,0.018708339,0.21648249,0.46470273,-0.11751792,-0.059276525,-0.07665891,-0.15909836,-0.24395737,-0.24078974,-0.7300563,-0.4684857,-0.0873788,1.1207459,-0.17464653,0.08864833,0.069196686,-0.087865174,0.15742683,0.05172602,0.07994797,0.30994463,0.38234764,-0.02501899,-0.70858157,0.37813908,-0.3170653,-0.16788045,-0.5044018,0.2237507,0.64211446,-0.58985287,0.33871612,0.43950728,0.11404957,-0.2240777,-0.63355017,-0.15712783,-0.00571901,-0.21530762,0.4580468,0.2135537,-0.9286687,0.5063917,0.41031662,-0.3177077,-0.66718864,0.5125165,-0.022775747,-0.05939088,0.07327984,0.4931836,-0.16006473,-0.025024297,-0.12284312,0.22286779,-0.22823864,0.33575994,0.14836463,-0.080003336,0.3442336,-0.27054244,-0.117840126,-0.647861,0.037209183,-0.43538198,-0.16298638,0.0799349,-0.027582468,-0.07333382,0.10466844,-0.09706274,0.46725088,-0.3597269,0.11254299,-0.21708298,-0.4256224,0.48560685,0.54460526,0.4134369,-0.22788179,0.6403358,0.055238873,-0.11971663,-0.2678912,-0.0032560527,0.50531566,-0.009121759,0.38463026,0.05328562,-0.08750273,0.24853373,0.8122193,0.221865,0.4260533,0.04013498,-0.21835285,0.08250056,0.17665364,0.28706396,-0.007384423,-0.39713073,-0.071523376,-0.3021843,0.21505743,0.39920345,0.18113545,0.4547893,-0.19023362,-0.29048878,-0.017620666,0.13970175,-0.045173895,-1.259601,0.53203577,0.08187431,0.7210116,0.35348988,0.12809214,0.048629627,0.5311662,0.0076486208,0.11162607,0.2004293,0.004736066,-0.46541113,0.5248681,-0.7920043,0.4481393,0.00050416216,0.005725532,0.16486612,0.07431585,0.4436667,0.74904096,-0.24857375,0.06919209,-0.07911341,-0.1594168,0.32195422,-0.40294698,0.23293464,-0.4582491,-0.46599513,0.720354,0.34954262,0.43485814,-0.21085197,-0.037614837,0.07961,-0.14433305,0.25915954,0.039426204,0.029265925,-0.066317104,-0.5086671,-0.13271585,0.38874355,0.06967576,0.03515459,-0.0006445721,-0.06015835,0.3073998,-0.19513825,0.044032335,-0.1325493,-0.4636152,-0.017427243,-0.33793083,-0.43033344,0.2844968,-0.35139593,0.3140279,0.26309228,0.0064214403,-0.44792494,0.12388407,0.29146636,0.6696036,-0.050012454,-0.28587282,-0.15957668,0.25291005,0.2100005,-0.2403793,-0.03130214,-0.30251706,0.03740938,-0.69684535,0.37431,-0.2443184,-0.2681455,0.39504755,-0.105904914,-0.031608462,0.5044707,-0.12978098,-0.08875239,0.06957179,-0.12458427,-0.2173939,-0.34157324,-0.16706379,0.30489075,0.16348204,0.015277773,-0.044715825,-0.024806513,-0.13408631,0.23508587,0.044168964,0.25457814,0.31539237,0.05208999,-0.31257147,0.011556052,0.043417774,0.6259966,0.17105588,-0.16094097,-0.35013634,-0.32380375,-0.19354607,0.08723253,-0.120443106,0.2901202,0.10470513,-0.26910025,0.61990964,-0.09684965,0.8680159,-0.030353349,-0.2781302,0.02799464,0.5528805,-0.05274694,-0.22871241,-0.22924712,0.8539982,0.481117,-0.118943945,0.010107737,-0.30171707,-0.10591623,0.1510809,-0.27569583,-0.23242879,0.03451424,-0.59514177,-0.29133087,0.20439203,0.3491341,-0.052704073,-0.15639308,-0.034649394,0.29789782,-0.0019224472,0.224776,-0.41142517,0.029995784,0.3694622,0.12096751,-0.051643316,0.12647992,-0.4065709,0.28008458,-0.59900415,0.003117174,-0.06708902,0.10614151,-0.121438764,-0.30420122,0.3216231,0.14425625,0.36560318,-0.2485703,-0.14389892,-0.21719536,0.35808802,0.087903604,0.082107365,0.51705784,-0.2942745,0.014024869,0.13643178,0.39393765,0.75853795,-0.25831467,0.14349931,0.25731188,-0.33717647,-0.5285256,0.3126998,-0.29024178,0.16163377,-0.1014328,-0.2722876,-0.41300607,0.22942173,0.27257574,0.08267803,0.023628533,-0.68719894,-0.053919785,0.129552,-0.22548848,-0.2197109,-0.3864408,0.17313522,0.587639,-0.27846795,-0.2994978,0.053898267,0.26148728,-0.15622492,-0.53532386,0.04724273,-0.36315495,0.13327634,-0.055752013,-0.28158897,-0.08607245,-0.0010953397,-0.4473805,0.15539303,0.12174542,-0.2915553,-0.055667922,-0.12668264,0.13049708,0.69134945,-0.28925928,0.24151555,-0.47847727,-0.47424442,-0.9110911,-0.25825405,0.37146205,0.29613602,0.042722773,-0.6695363,-0.0016220417,-0.054397285,-0.21875301,-0.0701389,-0.36907238,0.40393832,0.16306971,0.2908164,-0.20900092,-0.74339926,0.14408265,0.059038512,-0.22289339,-0.28470084,0.33800235,-0.010979906,0.65983385,0.14657578,0.12510094,0.15294372,-0.53349185,0.15329847,-0.15564738,-0.20416254,-0.56752384,0.09929624 -412,0.2608963,-0.19791207,-0.4556026,-0.1276548,-0.38019255,0.16607325,-0.3415489,0.18822905,0.15344569,-0.27149865,-0.31076917,-0.03603986,0.05908561,0.27160645,-0.08925081,-0.39283493,-0.11493141,0.13038583,-0.8012556,0.37406513,-0.49826413,0.30203944,0.3035788,0.4334465,0.29290244,0.22686434,0.27166718,-0.031688124,-0.07829219,-0.33271137,-0.24915512,0.1726968,-0.61425495,-0.008926928,-0.4159502,-0.45480648,-0.029399378,-0.53271675,-0.2950522,-0.8044396,0.17484055,-1.1437263,0.6019812,-0.23664556,-0.13613799,0.12382449,0.480526,0.3181701,-0.25779715,0.07135833,0.26701647,-0.3345507,-0.20434497,-0.23058586,-0.13783653,-0.41386822,-0.6291503,-0.005875311,-0.5588364,-0.19006893,-0.26766533,0.3083014,-0.41807276,0.21241906,-0.14805886,0.33075953,-0.4422815,0.018614369,0.12739976,-0.17763427,0.3116906,-0.6902835,-0.054960992,-0.14486142,0.53928083,-0.1322451,-0.14956924,0.37369162,0.43344972,0.34189606,0.20293193,-0.29918188,-0.29235062,-0.13748595,-0.07179684,0.5495721,-0.2690631,-0.26217192,-0.21117933,0.12751417,0.66432095,0.5777306,-0.088746965,-0.011428833,0.0344831,-0.10006712,-0.276177,0.6037587,0.5375115,-0.27763537,-0.44102737,0.27300003,0.48584646,0.27050117,-0.2490635,-0.04781846,0.037892647,-0.56469613,-0.11129417,0.19315767,-0.1149287,0.44246218,-0.08419274,0.2173632,0.7969359,-0.21510157,0.1528757,0.05683049,0.016312305,-0.18482693,-0.12456925,-0.30590272,0.24435057,-0.65463024,0.10769068,-0.2598665,0.7411274,-0.035965,-0.7125934,0.38755414,-0.50535095,0.18540628,-0.0024888557,0.6188999,0.75293285,0.42283112,0.46246925,0.85676795,-0.18712728,0.115084566,-0.072924785,-0.29412475,-0.037098657,-0.23468934,0.18477571,-0.45735887,-0.0045240694,-0.18382803,0.11583089,0.17323065,0.52344996,-0.5457775,-0.18398046,0.24735714,0.75915635,-0.26373008,0.0088688815,0.8108658,0.9962886,1.1158708,-0.03543121,1.1620985,0.30308303,-0.16600993,-0.061437402,-0.19512129,-0.64861596,0.2170602,0.3902777,-0.08027581,0.23723236,-0.07872523,-0.12574045,0.17701064,-0.6091073,-0.023297897,-0.060733464,-0.015951613,0.18467619,0.08263038,-0.41383767,-0.33432585,0.012273969,0.042070083,0.19989853,0.17512178,-0.31335458,0.53158224,0.048058152,1.2917484,-0.10741147,-0.036384407,0.12365488,0.5898203,0.2562614,-0.0265041,-0.13274828,0.29032773,0.5605028,-0.06630875,-0.6028036,0.18289651,-0.38803953,-0.1559558,-0.1807904,-0.3709922,-0.20915444,0.17087008,-0.2598231,-0.261982,-0.08529217,-0.41939712,0.37695518,-2.760166,-0.2513817,-0.16403088,0.28328282,-0.23677166,-0.13140155,-0.29248303,-0.7037765,0.341938,0.18344995,0.5494691,-0.54522485,0.45191264,0.5775451,-0.60848445,-0.20506392,-0.7394929,-0.30510396,-0.034655403,0.3949793,0.18333384,-0.19527128,-0.11387044,0.15736233,0.8098798,0.18744572,0.093309775,0.5625595,0.4798686,-0.011985724,0.6615805,-0.012638365,0.6318747,-0.37059578,-0.22329232,0.41875404,-0.27284223,0.19418256,-0.31396392,0.11362469,0.7321933,-0.4907784,-0.97190064,-0.62798446,-0.218205,1.1723777,-0.3243348,-0.4785232,0.10957755,-0.06344131,-0.067269154,0.044296686,0.68146497,-0.138977,0.042871624,-0.64765847,-0.16092728,-0.04804581,0.17687471,0.02297713,-0.035137665,-0.41464397,0.66044843,-0.12385775,0.56570905,0.13357764,0.33452216,-0.3475679,-0.27746907,0.14118703,0.98479843,0.4379361,-0.050480846,-0.28374764,-0.21635492,-0.15611836,-0.31404656,0.016014894,0.5976431,0.6607023,-0.08517671,0.32225636,0.39035383,-0.10166705,-0.011326836,-0.14989267,-0.23165417,-0.10733301,0.053110685,0.47881168,0.62593853,0.032630146,0.6363178,-0.12122929,0.30759162,0.022851706,-0.5936436,0.52134806,0.48355708,-0.25929815,-0.024999088,0.6052712,0.39247203,-0.43524244,0.53372806,-0.6718459,-0.4595646,0.66496474,-0.19379804,-0.54742426,0.24256802,-0.26023835,0.06854217,-0.5024027,0.23196027,-0.23537543,-0.42744973,-0.46838167,-0.063183956,-2.797512,0.114687406,-0.10868207,-0.07575985,-0.3339823,-0.39847568,0.29956725,-0.4501261,-0.6323705,0.16371782,0.30700678,0.6926654,-0.15777051,0.088646784,-0.2446955,-0.29613203,-0.2440356,0.13358179,0.28727862,0.28639945,-0.25373232,-0.38888672,0.13890955,-0.0817876,-0.46746454,-0.008220774,-0.58925426,-0.46469665,-0.07075507,-0.45212078,-0.26995423,0.61939293,-0.38032347,0.04941849,-0.33332154,0.1530473,-0.085223936,0.14955446,0.13858022,0.13778675,-0.022989238,-0.17579223,0.25469932,-0.3267672,0.7356985,-0.011653787,0.28792992,0.158025,0.14640346,0.21502994,0.48419943,0.4994951,-0.18738112,1.2257385,0.33846673,-0.10711365,0.06420321,-0.16444638,-0.48612946,-0.61925185,-0.26067978,0.09499172,-0.4884694,-0.3507173,0.020880163,-0.23846798,-0.8893509,0.72045124,-0.03782398,0.38065425,-0.11152918,0.38692278,0.3895626,-0.19273032,0.07787478,-0.078797765,-0.1365954,-0.4095091,-0.3049648,-0.75748444,-0.5316542,-0.21422526,1.010704,-0.31254718,0.08629947,-0.023082623,-0.28367874,0.13806216,0.10660056,0.085300006,0.2789424,0.5437594,0.029555395,-0.6700854,0.407387,-0.18071638,-0.07130408,-0.5894936,0.17355272,0.7286001,-0.7865323,0.38533565,0.4631439,-0.059890207,-0.22307007,-0.49516746,-0.14135599,-0.090797424,-0.20567301,0.42428732,0.1372725,-0.80762005,0.6144935,0.22713956,-0.41700524,-0.70558804,0.33797923,-0.045674015,-0.21076809,0.040276464,0.28540263,0.1778815,-0.09793752,-0.10333402,0.088215984,-0.33140817,0.485727,-0.102615416,-0.015576558,0.38105878,-0.24969898,-0.35812983,-0.68915,0.054432195,-0.4967744,-0.3616956,0.38521558,0.018441211,0.012563962,0.41136715,0.0010719256,0.3839392,-0.21700907,0.07442311,-0.07885039,-0.38059574,0.27088833,0.43879214,0.37357023,-0.39350373,0.6071639,0.14060245,-0.38303182,0.36416027,0.032320883,0.33959088,-0.028118243,0.42490265,-0.20626035,-0.25050634,0.47689396,0.7263049,0.11530006,0.3668141,0.028541889,-0.11300607,0.37975916,0.00069107965,0.07330277,0.0066299182,-0.61214393,-0.0030865776,-0.20172319,0.073723234,0.55107254,0.1781513,0.29832214,0.037347045,-0.085379735,-0.059653427,0.008143323,-0.16825345,-1.2074239,0.25394818,0.09871025,0.90124285,0.27066514,0.07520529,-0.12041949,0.7746612,-0.3226873,-0.06648446,0.44393554,0.24045531,-0.37682933,0.74264854,-0.6345922,0.5925306,-0.07838056,-0.060526464,0.039677925,0.11881317,0.29919845,0.96525466,-0.38061306,0.10432718,-0.00045104537,-0.19210641,0.10125561,-0.2875219,0.111025274,-0.4172635,-0.47396946,0.8681653,0.32088703,0.312803,-0.093338184,-0.07058827,-0.13388877,-0.24039257,0.23929271,0.11129558,-0.035660572,-0.109445095,-0.5893734,0.11180077,0.45403147,-0.012491705,0.15355146,-0.0671851,-0.1640265,-0.0033345628,-0.19319177,0.07060262,-0.076770484,-0.72342974,-0.13183364,-0.2519181,-0.5671225,0.3348233,-0.33476833,0.16514206,0.29111043,-0.0789568,-0.11480454,0.30755037,0.25698093,0.7165442,-0.12184609,-0.16979837,-0.28651127,0.12998281,0.28856617,-0.2736894,0.16669586,-0.3796497,0.08000101,-0.63776845,0.63463944,-0.3315196,-0.5681847,0.28522852,-0.21774448,-0.092739515,0.61100465,0.041028738,0.04274691,0.014249989,-0.15483162,-0.40388387,-0.14146875,-0.28210527,0.10213132,0.35041657,-0.0905983,-0.17982104,-0.2947299,-0.17445461,0.5099697,-0.08896933,0.5817073,0.27701157,0.22627698,-0.2085472,0.06644354,0.089719035,0.713225,0.08767193,-0.041710887,-0.6361081,-0.38564208,-0.17993112,0.38889155,-0.1060223,0.20187752,0.005340802,-0.33972007,0.9233622,-0.15145275,0.9815132,0.11182415,-0.31249005,-0.016855385,0.59049904,-0.15021849,-0.08737944,-0.4075168,0.9201228,0.55583346,0.0038605076,-0.009336216,-0.5225388,0.043115955,0.40751106,-0.37957758,-0.1708524,-0.08182528,-0.5354553,-0.44128084,0.19591966,0.17517349,0.15945272,-0.18749537,0.105965756,0.31191248,0.17887416,0.5299275,-0.59170055,-0.15587641,0.30557826,0.25755182,-0.44354525,0.21496296,-0.45634085,0.40023056,-0.5560451,0.039001953,-0.48744062,0.09068892,-0.12217416,-0.2731888,0.2264743,0.014810975,0.48978308,-0.2717527,-0.39275938,0.07446419,0.42021602,0.16244696,0.23496091,0.5514229,-0.25287586,-0.06552289,0.027878301,0.61573166,1.402362,-0.4599609,0.026630988,0.23597498,-0.387993,-0.52211535,0.46702924,-0.39883247,-0.11351176,0.020038579,-0.4139025,-0.2394558,0.30367973,0.099022545,0.099095754,0.017516447,-0.47217172,-0.051841624,0.20306432,-0.22915332,-0.22424044,-0.36698446,0.306784,0.56788176,-0.19684969,-0.27065048,0.016290251,0.45602056,-0.21781516,-0.5036075,0.013882982,-0.3185024,0.25468516,0.034304854,-0.34640315,-0.075300984,0.08423545,-0.5700307,0.02934419,0.09371416,-0.42459294,-0.07162418,-0.112067334,0.040681034,0.89120185,-0.28548428,-0.09406536,-0.4622623,-0.5020266,-0.7708954,-0.2716947,0.19646123,0.3313639,0.002528742,-0.41561127,-0.050605927,-0.19478133,-0.28425378,0.051421966,-0.48455307,0.31485456,0.0965644,0.51966304,-0.44939107,-0.7477729,0.23290597,-0.07036998,-0.17749739,-0.4827017,0.67169094,0.12296837,0.7345069,0.16898844,-0.0142961955,0.05886813,-0.30793437,0.081270315,-0.3843471,-0.14210846,-0.8910156,0.09613495 -413,0.52283764,0.09304914,-0.45039216,-0.1428425,0.0061902544,0.15326853,0.055367716,0.4001071,0.025951883,-0.42767745,-0.26590905,-0.2740839,-0.039829448,0.12117514,-0.2284996,-0.7676305,0.22124025,0.039288078,-0.22039206,0.43160072,-0.38461608,0.45941284,-0.028603157,0.18800806,-0.029279169,0.2588734,0.32693002,-0.14874192,-0.14723186,-0.26957992,-0.12378929,0.17742811,-0.36494005,0.11939098,-0.021129966,-0.22471005,0.19751692,-0.20118432,-0.4131244,-0.6678596,0.2529684,-0.72773415,0.4850647,0.17964397,-0.26222843,0.3734186,0.07089503,0.02890436,-0.1089354,0.053741872,0.08698754,-0.1861005,0.09546973,-0.24623345,-0.3887069,-0.5356091,-0.41138873,0.06969901,-0.32589054,-0.3364889,-0.38275835,0.016410789,-0.37472022,-0.06887902,-0.13145241,0.2376318,-0.37766513,-0.21493965,0.30189535,-0.26389146,0.1662631,-0.6254852,-0.26536193,-0.09623721,0.03236529,-0.12229618,-0.10688848,0.24259697,0.24479225,0.60384315,-0.19977862,-0.05619428,-0.23071384,-0.12667035,0.14906244,0.7095319,-0.32786173,-0.4291588,-0.08430875,-0.030859835,0.23491758,0.15028967,0.21120737,-0.03370973,-0.07899599,0.06525811,-0.3089001,0.35430127,0.61040086,-0.50735825,-0.14520663,0.24629763,0.25955105,0.040812254,-0.13453798,0.06580592,-0.14379962,-0.43548742,-0.15025263,-0.09803764,-0.22893405,0.63224614,-0.035835396,0.09649493,0.5716578,-0.23197684,0.36982498,0.1671777,-0.10959067,0.01928867,-0.117662326,-0.03098003,0.24654022,-0.33647877,0.117118426,-0.33779955,0.80055493,0.13636313,-0.5043753,0.3971409,-0.35168043,0.14875335,-0.025341133,0.52233535,0.476525,0.401886,0.3114397,0.53202605,-0.48405424,-0.0221182,0.060962103,-0.34864834,0.2284955,0.010346635,-0.096241646,-0.32230753,0.08169716,0.26427725,-0.052132837,0.093581885,0.35236987,-0.49560753,-0.022982163,0.19665144,0.75282305,-0.28262872,-0.10924285,0.51706636,1.0832436,0.7194323,-0.13746206,1.0331539,0.3034378,0.006538208,0.0689652,-0.17238222,-0.5861487,0.14478454,0.46540272,-0.04643506,0.15953337,0.19184774,-0.21409898,0.437327,-0.28453574,-0.108427316,-0.16909365,0.33814463,0.060838383,-0.29462376,-0.36620352,-0.05573345,-0.00974462,-0.059943233,0.08784019,0.3407998,-0.21565093,0.36318552,-0.07755222,1.2898988,0.087490164,0.14061943,0.14465874,0.45982248,0.2772866,0.04780542,0.21618897,0.29190832,0.08601699,0.026902897,-0.34042504,0.0345769,-0.22193769,-0.5772652,-0.08560289,-0.3078983,-0.042908918,-0.0697873,-0.42878953,-0.03960887,0.068947755,-0.11463677,0.37342662,-2.8161366,-0.04207351,-0.19099328,0.24183662,-0.23912835,-0.362064,-0.031908862,-0.4005998,0.38603413,0.48615137,0.42814368,-0.59583294,0.3396962,0.524424,-0.3642171,-0.108058706,-0.6050802,-0.09758532,-0.007011022,0.48652583,0.20225506,-0.05378469,0.034131695,0.12665504,0.54888153,-0.016130947,0.055216774,0.05624924,0.38966593,0.000113449496,0.30427375,0.035812013,0.5047001,-0.11283945,-0.064957805,0.38499674,-0.25731647,0.31802285,-0.051958364,0.17274718,0.1381592,-0.24049264,-0.6961548,-0.48494962,-0.3382447,1.2099564,-0.12365355,-0.3415615,0.32237884,-0.1512052,-0.29896182,-0.049741283,0.37329972,-0.13996077,0.01216472,-0.60236764,0.14310452,-0.2964955,0.100711815,-0.07669083,0.069908954,-0.38498715,0.72324306,-0.15457843,0.31949413,0.26892012,0.27525526,-0.14678532,-0.3774751,-0.22155038,0.8997147,0.47128296,0.05145209,-0.15668355,-0.025060542,-0.23573385,0.035464182,0.071216986,0.6651359,0.58988833,0.07652767,-0.03685806,0.15770459,-0.06932637,-0.039965417,-0.23030806,-0.22861648,-0.014765438,-0.07100785,0.72049916,0.6179976,-0.29464513,0.29640785,-0.1295646,0.36602995,-0.32292783,-0.4436641,0.33772194,0.7457024,-0.110935606,-0.13351418,0.6156124,0.39901802,-0.3146289,0.3051553,-0.6914013,-0.36980808,0.66923565,-0.24465333,-0.42731893,0.31965736,-0.327755,0.11501764,-0.83330804,0.3420054,-0.27610627,-0.4071356,-0.50279707,-0.18296571,-3.8768773,0.19248359,-0.34517804,-0.16976248,0.053524084,-0.020272184,0.21199326,-0.6149426,-0.27087924,0.030103523,0.17109251,0.38701564,-0.045025207,0.11162362,-0.3597883,-0.34018666,-0.10644548,0.22045945,0.06581504,0.18793978,-0.15136531,-0.34364802,0.088800825,-0.115744375,-0.2846341,0.08356464,-0.47909608,-0.70789295,-0.2057216,-0.252829,-0.11185273,0.61202174,-0.38321838,0.005302509,-0.15458873,0.011255564,-0.182805,0.14466755,0.23175506,0.28398198,-0.24032643,-0.029094942,0.10586225,-0.39696506,0.35329434,0.22986834,0.43874177,0.6759091,-0.14104427,-0.080402546,0.54131925,0.3586611,0.12552403,0.6776193,0.2896112,-0.070120215,0.4477043,-0.24670911,-0.29793578,-0.54389215,-0.37134922,-0.14361137,-0.26056248,-0.39560926,-0.23536752,-0.37238902,-0.65420705,0.3693829,-0.11056917,0.10719409,-0.14921491,0.4203452,0.53816295,-0.15742601,-0.11718012,0.197221,-0.056652103,-0.44187263,-0.17101994,-0.6525412,-0.5124887,0.18761882,0.788906,-0.016586844,0.024925685,-0.0935534,0.05582576,0.06156148,-0.05675687,0.26309472,0.064780034,0.20245294,-0.1030351,-0.66325754,0.5992435,-0.11959146,-0.23762615,-0.66128945,0.023572851,0.57832944,-0.6511469,0.4169232,0.3471213,0.09183829,0.15698878,-0.660994,-0.036474444,-0.018932767,-0.279626,0.28775498,0.13324705,-0.85992336,0.46439174,0.34896657,-0.13810486,-0.51195484,0.56722033,-0.00024900833,-0.5370342,0.059361234,0.21024793,0.10122096,-0.109875254,-0.020165265,0.34282213,-0.49537718,0.2425525,0.33853632,0.11621458,0.439473,-0.046606172,-0.20496865,-0.64435035,-0.029431501,-0.5618912,-0.2692998,0.119457215,0.089727,0.10596076,0.2237211,0.033489242,0.44405457,-0.42658302,0.21701351,-0.06619807,-0.15820242,0.5192442,0.44632214,0.3579249,-0.31668308,0.60281265,0.040019307,0.051501174,-0.0009880265,0.15108554,0.52639294,0.005628689,0.31352738,-0.084778994,-0.19794671,0.20924307,0.833126,0.18478225,0.5076625,0.20851365,-0.20413306,0.26773676,0.032057635,-0.036899503,0.07507339,-0.4035043,-0.13892956,0.08647003,0.055190135,0.44917,0.096516415,0.26141033,-0.21668513,-0.25830165,0.14925636,0.24875066,0.3046395,-0.8119655,0.051149774,0.13067529,0.7267916,0.4006843,-0.0015083621,-0.035294782,0.4675662,-0.14449285,0.087982625,0.27666438,-0.082100585,-0.47621396,0.41910288,-0.3715992,0.41586077,-0.10819044,-0.03509685,-0.031687018,-0.18216094,0.18887094,0.79602635,-0.25250018,0.05892933,0.02965949,-0.32167676,0.06464692,-0.3387019,0.11428626,-0.48061463,-0.18032427,0.58008105,0.5242532,0.24431208,-0.11769616,-0.13579425,0.02462192,-0.1427702,0.031825088,-0.05048776,0.27406222,-0.29454023,-0.44700292,-0.38911754,0.5327881,0.039279427,0.022647794,-0.067418054,-0.20502059,0.23223835,-0.04340543,-0.17932421,-0.046982016,-0.30985066,0.21836276,-0.36540386,-0.5050207,0.42003092,-0.18653938,0.2943428,0.11131024,0.02407488,-0.13425669,0.26235893,0.17474109,0.51828617,-0.15042336,-0.16548277,-0.56476337,0.10321171,0.15398814,-0.23463821,-0.1264097,-0.23504472,0.24403878,-0.53290737,0.15491822,-0.16420422,-0.14370099,-0.24697772,-0.12130164,-0.07382346,0.40531236,-0.1160452,-0.24466613,0.015765835,-0.037138455,-0.23696709,0.09487367,-0.06042615,0.20106776,-0.07046097,-0.17309317,-0.0027420605,-0.0412822,0.047400434,0.22214463,0.16741136,0.10071906,0.48186558,-0.097290024,-0.36829805,-0.13829833,0.054363307,0.50756055,-0.15322207,0.050997846,-0.17869076,-0.7377819,-0.34612963,0.073915854,-0.2365684,0.32786974,0.1862063,-0.2239274,0.8385748,0.029615168,1.1454232,-0.09580227,-0.35487562,-0.11883228,0.6862202,-0.013626237,0.0045561027,-0.3072167,0.9999071,0.47244537,-0.11186908,-0.30044883,-0.17493644,-0.089871235,0.13423388,-0.21433218,-0.15500759,-0.067460746,-0.59892356,-0.08264002,0.18411712,0.34635752,0.20790972,-0.026550118,0.112799376,0.19342484,0.12252974,0.42773706,-0.5074566,-0.37423265,0.24773873,0.21122865,-0.20145969,0.08072082,-0.2929931,0.34125632,-0.58638245,0.042419,-0.36966255,-0.049344994,-0.079512216,-0.3152213,0.20492938,0.0051617185,0.41979793,-0.5079671,-0.30482197,-0.0969937,0.2242491,0.12090328,0.24420057,0.40516073,-0.035626166,-0.095996186,0.09917917,0.6350422,1.3700638,-0.13799831,-0.10273475,0.37730893,-0.43721846,-0.75080764,0.100186124,-0.2997326,0.21917786,-0.31593454,-0.3113245,-0.4170861,0.32826197,0.30422333,-0.10594097,-0.022786062,-0.46504503,-0.35511622,0.16364853,-0.47798604,-0.33373752,-0.33739147,0.18907033,0.67863065,-0.38176996,-0.12034545,-0.18764037,0.36610496,-0.30944297,-0.6651061,0.059948526,-0.10990637,0.3081958,0.19444755,-0.34270018,0.030274995,0.067115314,-0.36145398,0.15477876,0.3208405,-0.36696237,0.017581536,-0.3205982,0.049368836,0.7609135,-0.04447078,0.008420467,-0.51201886,-0.5032179,-0.8451882,-0.6048195,0.5096625,0.14843506,-0.062897764,-0.43395123,-0.12452352,-0.047709934,0.029923836,-0.1348395,-0.109974034,0.5203181,0.12913394,0.25645128,-0.057762615,-0.73862725,0.016824134,0.087775774,-0.19401169,-0.6286403,0.38501078,-0.1356708,0.7957096,0.17322809,0.02064865,0.30034986,-0.4039817,0.14634424,-0.23992898,-0.21483094,-0.57983685,0.16145308 -414,0.45053414,-0.12968606,-0.43032527,-0.08667877,-0.34911296,-0.16173112,-0.20125102,0.4814901,0.33572602,-0.1984907,-0.1649515,-0.061711233,-0.16920608,0.30436474,-0.15201536,-0.6326561,-0.14460324,0.075104475,-0.530755,0.80364925,-0.29602942,0.18582936,-0.060223695,0.4995667,0.25838736,0.340873,0.1485113,0.15508768,0.098144054,-0.29006362,-0.022031672,0.11624777,-0.5413442,0.28029084,-0.098686844,-0.2171356,0.019309515,-0.5106959,-0.3735455,-0.7478841,0.3547417,-0.6946196,0.3023201,0.06623758,-0.21847437,0.26434073,0.2880452,0.22658531,-0.1833943,-0.20015447,0.07344675,-0.016495334,0.05966306,-0.17146266,-0.14117329,-0.2660478,-0.5837718,-0.060795236,-0.4107958,-0.28261283,-0.36213407,0.14663316,-0.3837417,-0.0085680485,-0.15117148,0.5406888,-0.4122341,0.024083292,0.2718427,-0.21578614,-0.015779153,-0.7355535,-0.18184519,-0.058749873,0.25844917,0.15892369,-0.13563989,0.3311257,-0.051819026,0.092387356,-0.028838431,-0.11850527,-0.42691377,-0.13092521,0.04057621,0.44892302,-0.05490197,-0.297556,-0.024141813,-0.048082292,0.05152754,0.26706377,0.18222241,-0.014875382,-0.1197241,-0.265109,-0.24206477,0.2354135,0.4077607,-0.22525121,-0.18429703,0.3245487,0.402383,0.30933437,-0.23388807,-0.14429443,0.025869288,-0.5074816,-0.031735834,0.061292876,-0.14268313,0.4863936,-0.052360967,0.12007984,0.63790697,0.036112085,-0.10574204,-0.025206573,0.13826783,0.08455249,-0.44535318,-0.15656357,0.36542037,-0.26781544,0.31238577,-0.113827385,0.63991326,0.21814753,-0.567969,0.24123025,-0.50856805,0.061935153,0.013851009,0.43112326,0.5624628,0.43885565,0.37571922,0.67723674,-0.15474133,0.24054801,-0.20398033,-0.07536561,0.012124668,-0.18793811,0.074822225,-0.47783384,0.10613504,-0.12683462,-0.16141622,0.11016939,0.23716147,-0.41080585,-0.108448364,0.2938111,0.8020093,-0.16291411,0.0184531,0.6869505,1.0904828,1.0612577,0.03552113,0.6795421,0.022588203,-0.29482034,0.17170674,-0.14844944,-0.6441513,0.22283249,0.27936995,0.36025858,0.15324046,0.03325823,-0.0689654,0.29359555,-0.38299665,-0.066751726,-0.011522633,0.2028603,0.38737252,-0.018643787,-0.43770614,-0.35731182,0.012705256,0.00062051415,0.061032888,0.25925973,-0.23798136,0.3382958,-0.08191682,1.4589968,0.14677875,0.057468012,0.31108359,0.6363405,0.17325175,-0.234537,0.11355134,0.3741726,0.22575676,0.1287461,-0.5480903,0.27188066,-0.25232676,-0.45761228,-0.093904875,-0.39893183,-0.12395722,-0.091774546,-0.38038716,-0.19246785,-0.13310057,-0.11146123,0.5092799,-3.1013381,0.20238006,-0.13032922,0.24090302,-0.33750066,-0.18544406,0.13150196,-0.44261464,0.41885892,0.42513016,0.4003378,-0.4236132,0.30439842,0.51089895,-0.7554088,-0.05039029,-0.46146822,-0.14551426,0.04337482,0.47109663,-0.0852815,-0.009223759,-0.111897446,0.1433952,0.49355194,0.085995354,0.23440562,0.2904365,0.3480347,-0.14105599,0.56606156,-0.022343969,0.44530687,-0.40116358,-0.104341865,0.3068864,-0.6323262,0.3997828,-0.20815761,0.107710995,0.5233994,-0.33471832,-0.94417953,-0.32145998,0.09543737,1.1835542,-0.29088742,-0.5407383,0.25254574,-0.46855286,-0.025928995,-0.07552681,0.3292746,-0.08619788,-0.05643637,-0.6094027,-0.04743822,-0.13172697,0.29612598,0.011281774,-0.19478898,-0.44609714,0.78071696,0.10228857,0.53853273,0.12766625,0.11791158,-0.38324085,-0.31520253,-0.0078078485,0.5046384,0.33682916,0.045180917,-0.22643715,-0.121915035,-0.24936573,-0.1501232,0.19970094,0.66657096,0.32130912,-0.057876855,0.08646389,0.23290634,-0.14692396,0.012892987,-0.13914002,-0.12615874,-0.29092103,0.0670385,0.5625491,0.8714115,0.0874528,0.186974,0.08247944,0.41659904,-0.14988814,-0.39125332,0.3024076,0.86326295,-0.042142376,-0.30202246,0.46643496,0.69446295,-0.19135119,0.36419368,-0.4729942,-0.3020039,0.46884397,-0.05297023,-0.45044044,0.02159667,-0.2776619,-0.095701076,-0.5143369,0.07156682,-0.3914877,-0.52521396,-0.67763203,-0.17012925,-3.0113401,0.09152123,-0.15871255,-0.36025807,-0.24409036,-0.11128535,-0.0094388025,-0.661238,-0.6146072,0.15610938,0.14457053,0.69905496,-0.18291067,0.08408585,-0.30388233,-0.26420662,-0.30001536,0.3324484,0.104284085,0.3303227,-0.06559158,-0.36673012,-0.2512473,0.024939187,-0.3583497,0.09609148,-0.5771745,-0.23364985,-0.12811422,-0.52048063,-0.13099584,0.5922473,-0.32478037,0.051259298,-0.101489045,0.03424187,-0.15154476,-0.014006806,0.12714343,0.27448303,0.08036459,-0.17749697,0.031120569,-0.1991105,0.31604797,0.08052195,0.49342838,0.24554682,0.056979913,0.12524289,0.3975524,0.53096396,0.0158521,0.93810636,0.3369627,-0.011414922,0.2163157,-0.21353601,-0.26669797,-0.4396397,-0.11429875,0.22411354,-0.28782076,-0.29179588,0.010417628,-0.3381681,-0.7250417,0.44944742,0.13538752,0.06005727,-0.009134951,0.107161194,0.46411037,-0.2774953,0.059000175,0.13848592,0.095686086,-0.529485,-0.31007472,-0.45626426,-0.22945191,-0.07799927,0.9524625,-0.27622953,-0.11591199,0.055483777,-0.3770238,-0.122707,0.34806266,-0.0015807375,0.12509996,0.4018116,0.1783482,-0.6075373,0.58317965,-0.2198381,-0.07062544,-0.38070354,0.339559,0.38550022,-0.42415038,0.64115644,0.20855975,0.09432725,-0.30467358,-0.583992,-0.23386808,-0.04769157,-0.0015547549,0.2007512,0.37339702,-0.7052722,0.28938755,-0.012263906,-0.35416052,-0.72140455,0.3534322,-0.15095527,-0.5260315,-0.09912232,0.29268727,0.15863807,0.017580131,-0.2812769,0.27625751,-0.26199827,0.063168176,0.12795405,-0.031226685,0.12821941,-0.2071687,-0.10983666,-0.620506,0.11929528,-0.16486685,-0.29860738,0.47203317,0.010904876,0.109077595,0.15832518,0.12560277,0.23569076,-0.039790887,0.13797319,-0.27098164,-0.20193535,0.5333579,0.37656072,0.66243124,-0.55214685,0.5925985,0.11825154,0.063399956,0.2851027,0.08127191,0.2612558,-0.09590566,0.5831156,-0.030769527,-0.18859749,0.13520524,0.66957045,0.15549676,0.24058072,-0.06084068,0.00062366825,0.44021574,-0.17325298,0.1731879,-0.06887158,-0.66524893,0.11974918,-0.2679925,0.095454484,0.35918677,-0.010335515,0.24923348,0.038491957,-0.21969248,0.013872738,0.1378954,-0.098468326,-1.1427876,0.26623145,0.18366157,0.9820182,0.5277207,0.08978953,-0.017332753,0.91938514,0.021610491,0.029222438,0.2502751,0.20583083,-0.44369796,0.5097075,-0.54677063,0.65834856,0.040694147,-0.12495202,0.024383346,0.025743319,0.46062824,0.6813106,-0.24275148,-0.0953873,0.033959884,-0.46570408,0.020211577,-0.33993673,-0.034241676,-0.5017569,-0.3308518,0.6162874,0.5671909,0.32157367,-0.2249128,0.04566586,0.10388625,-0.09281653,0.14778362,-0.043070305,-0.115916185,0.013663036,-0.5375121,-0.114641674,0.3794193,-0.3222622,0.13392504,-0.01739595,-0.06265852,0.31601852,-0.036467124,-0.10948441,-0.09035424,-0.61340743,0.31729957,-0.23377351,-0.38966784,0.31610766,-0.08843261,0.32339874,0.17435805,-0.050822366,-0.26238647,0.53764635,0.02856788,0.87224984,-0.2278171,-0.01635614,-0.36762294,-0.13411772,0.008043289,-0.1423722,0.08513141,-0.31587875,0.20042665,-0.4685222,0.48995924,-0.13273999,-0.31376117,-0.21971919,-0.1502241,0.01689162,0.542326,-0.05918285,-0.21202187,-0.27095833,-0.15807115,-0.27094522,-0.2351812,-0.2162847,0.29586968,0.03303061,-0.0560413,-0.051784564,-0.017683335,0.20534097,0.41826093,-0.15222734,0.3484495,0.18637513,0.14791036,-0.45963082,0.0449139,0.031830996,0.60585564,-0.12774996,-0.049331564,-0.21102862,-0.50700647,-0.50499874,0.33926442,-0.09382743,0.5760402,0.0985831,-0.17296368,0.5906893,-0.0569372,1.0334376,-0.114846684,-0.4317796,0.21509741,0.5620695,0.010817919,-0.10222585,-0.1911603,0.81496304,0.43670988,-0.017838046,-0.09493134,-0.33506665,0.10308098,-0.040076975,-0.1685416,-0.09189197,-0.0194054,-0.44613084,0.014978233,0.101607054,0.10472044,0.34764683,-0.27161875,-0.07275844,0.17107171,0.19607021,0.19287372,-0.40969738,-0.15705319,0.3445319,0.011938234,-0.01613759,0.099482596,-0.55329037,0.3600154,-0.45923004,0.25356057,-0.323195,0.26410818,-0.3549888,-0.24696703,0.2007044,-0.08503776,0.42549098,-0.55394334,-0.21551013,-0.3062885,0.5219054,0.3825984,0.26481283,0.43341216,-0.1193239,0.08909758,-0.027868101,0.64828056,0.63323313,-0.30009645,-0.06439012,0.10061572,-0.4458553,-0.6258742,0.110033415,-0.3569757,0.16021663,0.08081104,-0.08518827,-0.63896185,0.22345285,0.18457107,0.1935529,0.059354197,-0.6932916,-0.20265387,0.0953004,-0.32641742,-0.25159395,-0.43188456,0.06524919,0.5254813,-0.0630799,-0.2813423,0.10078668,0.06751921,-0.068727635,-0.4836805,0.0077841133,-0.51183504,0.24878334,0.04476893,-0.31214762,-0.452999,0.03313761,-0.4445307,0.2609601,-0.01841312,-0.26619855,-0.056189165,-0.30268982,0.11099607,0.94430333,-0.27264252,0.3456602,-0.48574802,-0.48585665,-0.8034094,-0.30602935,0.3105545,-0.001881803,-0.05593048,-0.5376684,-0.19322588,-0.2360934,-0.25892267,-0.22156107,-0.43234196,0.3637983,0.0307986,0.30401558,-0.15564471,-0.87117416,0.30934033,0.05042355,-0.08927029,-0.44767824,0.22960506,-0.08524573,0.7857154,0.031298485,0.047793508,0.10363682,-0.30447567,0.04239772,-0.1586345,-0.069353454,-0.3849474,0.22316633 -415,0.40067476,-0.24763907,-0.4825695,-0.12675264,-0.17145033,0.08948279,-0.33976677,0.28742546,0.11292575,-0.35295397,-0.120646104,-0.035399437,0.04942404,0.3595112,-0.06013912,-0.5126442,-0.14466122,0.025194513,-0.55908495,0.4305252,-0.6797813,0.40248474,0.14631376,0.3960094,0.26176673,0.37302646,0.10475485,-0.12640207,-0.058397196,-0.284813,-0.14787497,0.4189231,-0.556514,0.05284794,-0.006425917,-0.2840137,0.039692543,-0.416287,-0.21382464,-0.6856758,0.052905314,-0.96154153,0.5411667,-0.01891908,-0.22326319,-0.111735106,0.32519674,0.5001315,-0.22584508,0.25594425,0.28633097,-0.10585298,-0.097514614,-0.28863147,-0.11447805,-0.44714254,-0.4998793,-0.06336337,-0.5756298,-0.31043634,-0.15681352,0.32335874,-0.33276886,0.06406707,-0.41387525,0.3249351,-0.4581669,0.04835976,0.3153533,-0.18365166,0.6468194,-0.5440324,0.00047799837,-0.07883211,0.28855547,-0.11031341,-0.24782309,0.18645497,0.42690268,0.40898186,0.13204728,-0.12736164,-0.26523086,-0.25201803,0.19414723,0.5155108,-0.28912854,-0.30989522,-0.25652042,0.10109766,0.4963577,0.52287805,-0.098192945,-0.43380126,-0.007965894,0.093754016,-0.24473608,0.4217045,0.47765622,-0.2723388,-0.44660917,0.2611441,0.45933676,0.17571457,-0.25228268,0.0901952,0.070926435,-0.5813789,-0.03753594,0.2744971,0.11463293,0.48273996,-0.019726064,0.13447976,0.7879148,-0.12945183,0.017553095,-0.04146438,-0.19645922,-0.02847051,-0.32945338,-0.32115826,0.08188492,-0.5924323,0.14472297,-0.39391023,0.71741134,0.022812711,-0.6726965,0.38994965,-0.57729024,0.11456791,-0.073216036,0.6960341,0.5524066,0.437805,0.25885564,0.7101863,-0.36285734,0.07163739,-0.15151384,-0.33393964,0.088693395,-0.10784934,0.17969596,-0.46522164,0.089441344,-0.12791313,0.1254059,0.017887881,0.6244531,-0.557319,-0.09589512,0.06853037,0.80114204,-0.42302802,0.007510426,0.5940374,1.0171658,1.0046675,0.072983675,1.1739401,0.31541926,-0.17506881,0.015379255,-0.3362095,-0.4332088,0.3199268,0.37373325,-0.20858352,0.275667,-0.101615705,-0.10878658,0.32837456,-0.22293319,0.042591877,-0.1355264,0.13965856,0.09635381,-0.111029044,-0.5738072,-0.16738364,-0.00023629835,-0.079451695,0.10796155,0.02037154,-0.3275579,0.30784765,0.024312636,1.5343667,-0.37384096,0.07164653,0.13565162,0.34348527,0.20368683,-0.2991722,0.039744873,0.31913665,0.57463133,-0.00087342516,-0.6018144,0.3700948,-0.24146469,-0.43062672,-0.16168235,-0.36658007,0.032679413,-0.014302224,-0.4975083,-0.070260786,0.039507177,-0.28766873,0.40900165,-2.7549732,-0.26985464,-0.16638435,0.2516598,-0.30708143,-0.2770644,-0.08995237,-0.46398783,0.3366092,0.14369473,0.4574962,-0.5761505,0.55487734,0.45016223,-0.29184645,-0.24003564,-0.8649524,-0.13741906,-0.041391365,0.39059553,-0.009124451,-0.1651561,-0.17657125,0.2437693,0.75860065,-0.15599218,0.13465367,0.35303846,0.4466903,0.13451949,0.72013867,-0.018807197,0.62590784,-0.16638756,-0.17771776,0.4233096,-0.32746544,0.1452339,-0.005337681,0.09322052,0.38706803,-0.3766293,-0.96327096,-0.71477306,-0.39995548,0.9490308,-0.40088964,-0.5985212,0.13426915,-0.0815053,-0.18333934,0.05408141,0.5196219,-0.076428674,0.12080346,-0.84116745,0.08611953,-0.16293319,0.28831762,0.034468103,0.028420065,-0.33118185,0.50376886,-0.062548,0.60206044,0.33504882,0.28399017,-0.1173977,-0.4074693,0.008166526,1.0735584,0.3085452,-0.07009513,-0.23097573,-0.34755522,-0.03955927,0.0046015806,0.04564034,0.5721129,0.8309904,0.026750853,0.20473385,0.3109353,-0.12662266,0.006768661,-0.13233538,-0.3116722,0.0004392181,0.12696472,0.487233,0.4345687,-0.0039165276,0.6078321,-0.266145,0.3940153,-0.018623037,-0.55436724,0.40180996,0.7221679,-0.23019816,-0.114768334,0.6654223,0.49130657,-0.27419108,0.37604794,-0.682733,-0.13962868,0.65115684,-0.23816173,-0.35838142,0.40466383,-0.34323516,0.19242035,-0.89750785,0.41682014,-0.36485,-0.58685195,-0.3543434,-0.122527614,-3.3190994,0.10009501,-0.05933932,-0.2577064,-0.17837746,-0.18595965,0.5357784,-0.5616469,-0.5436455,0.044573266,0.27156284,0.5497455,-0.089237355,-0.0048028827,-0.3611019,-0.12633108,-0.0316348,0.2953855,0.19891103,0.24298131,-0.09761156,-0.35485378,-0.06630974,-0.016539956,-0.55063117,0.21806815,-0.65742105,-0.6630045,0.10995269,-0.46158195,-0.3554458,0.6969058,-0.35497603,-0.02391092,-0.11074285,0.12767293,-0.12756449,0.3610899,0.1821865,0.28744766,0.16714002,-0.057455964,0.13268368,-0.33810344,0.3857608,0.0654576,0.26338392,0.015421697,-0.06806021,0.23284133,0.42998257,0.45184612,-0.04970748,0.92490727,0.43109173,-0.0558374,0.13297571,-0.41594955,-0.25778988,-0.59683937,-0.36921486,-0.13045521,-0.5167397,-0.5018231,-0.018890264,-0.15218617,-0.7605174,0.6454379,-0.11300678,0.30720815,-0.20835434,0.43100294,0.38299686,-0.018684974,0.04749281,-0.092498355,-0.12127384,-0.45227104,-0.30051252,-0.6980645,-0.62435657,0.024288502,0.8966412,-0.31112686,0.1035016,-0.13833949,-0.18991415,-0.07169501,0.14357196,0.13682869,0.3966351,0.53498495,-0.07549673,-0.625385,0.30701247,-0.06041221,-0.14919004,-0.5724211,0.13687536,0.87050927,-0.73202235,0.44419298,0.32421955,0.10736925,-0.15201077,-0.6827739,-0.21866962,0.14665702,-0.38360453,0.62075406,0.0711453,-0.6787167,0.4495117,0.41857198,-0.33482006,-0.50034064,0.37281066,0.014998709,-0.32436445,0.035864633,0.40388846,0.029160371,-0.065655135,-0.14772418,0.20209225,-0.41190082,0.22248946,0.26536494,-0.15273984,0.26525804,-0.12980911,-0.2627359,-0.7297827,0.03369643,-0.64530885,-0.33259135,0.37655607,-0.060557313,0.05053795,0.29235348,-0.13608304,0.4342751,-0.28706184,0.037734687,-0.12670876,-0.3084218,0.24865206,0.5830518,0.19388258,-0.29275373,0.4050533,0.13691247,-0.26470414,0.046768103,0.031063642,0.43304858,-0.11343595,0.3785527,-0.46877295,-0.2082545,0.5148181,0.6206774,0.22191682,0.502035,0.030286644,-0.06833081,0.28764588,0.030046115,0.05319894,0.05065495,-0.28900757,-0.16756137,0.022763653,0.21807781,0.60415643,0.29907662,0.2828623,0.010048977,-0.12945545,0.14307404,0.1406565,-0.10778255,-1.020848,0.60940784,0.25559947,0.6189884,0.38923502,0.1530435,-0.09346785,0.57317245,-0.4283648,0.07514287,0.42539334,0.1897875,-0.50738436,0.8355544,-0.72978956,0.3966492,-0.1680025,0.09677714,0.118694425,0.060542516,0.49879768,1.0597274,-0.17854837,0.105144314,-0.0032000926,-0.06811552,0.04119673,-0.28558406,0.029009882,-0.36464566,-0.42216334,0.8153983,0.4344468,0.37347198,-0.16766138,-0.018871699,0.15360324,-0.22217028,0.28716272,-0.023940995,0.051289413,0.08173934,-0.511912,-0.24259678,0.54397017,-0.01845421,0.07980677,-0.048795186,-0.24361347,0.06526808,-0.07715116,0.03829405,0.046418216,-0.47943214,-0.1124668,-0.46428564,-0.53646916,0.25207847,-0.4562067,0.055645872,0.08494748,-0.055512194,-0.11709361,0.22543919,0.1795437,0.7855526,0.04682111,-0.29328915,-0.38362813,-0.033883955,0.20930798,-0.27373645,-0.12900257,-0.3167434,0.04835248,-0.7627203,0.45653984,-0.12880194,-0.5572124,0.27510387,-0.18259047,-0.07284207,0.54512423,-0.12535672,-0.098471396,0.17488894,-0.15684868,-0.36676416,-0.13834454,-0.13679962,0.16407487,0.23751982,-0.016655479,0.017260972,-0.27829227,-0.15110986,0.42630836,0.15770398,0.5451439,0.3557975,0.18216573,-0.15718332,0.029443962,0.18333437,0.4869786,0.1796821,0.13160925,-0.38303423,-0.4610502,-0.2597062,0.21164958,-0.11970315,0.34631944,-0.029020848,-0.4089341,1.1367255,-0.076571174,1.1289918,-0.050423894,-0.35800576,-0.039422866,0.43650573,-0.12549141,-0.06803949,-0.39863458,0.8795174,0.4950905,-0.07084466,-0.05160751,-0.46970218,-0.29379392,0.2139121,-0.30710435,-0.057399597,-0.16090563,-0.6060613,-0.3745083,0.19480984,0.1594726,0.10412911,0.0295614,0.044337843,0.15343942,-0.00049486116,0.38614416,-0.5496907,-0.01416422,0.041956007,0.31677118,-0.17624311,0.13767968,-0.51738083,0.36799923,-0.57023066,0.19689748,-0.43230423,0.11501299,-0.0050104004,-0.2886582,0.16284433,-0.2987902,0.1667349,-0.24411058,-0.25440755,-0.027151287,0.5329207,0.07182978,0.1525656,0.8398266,-0.1980999,0.17550626,0.15255037,0.577199,1.4985182,-0.47550353,0.069135204,0.29079586,-0.40988997,-0.6267465,0.3517316,-0.3172956,-0.075416386,0.15862629,-0.5871583,-0.2992681,0.22252993,0.078166686,0.097086586,-0.06204686,-0.3746605,-0.13725884,0.32366678,-0.30832013,-0.28188446,-0.28946072,0.46509784,0.66467243,-0.322948,-0.42129496,-0.05297963,0.36186934,-0.4475154,-0.3981216,0.024660388,-0.10973121,0.38760298,0.14869633,-0.26925704,0.010892391,0.08231931,-0.3997225,-0.02620847,0.2790888,-0.3751295,0.10838636,-0.11535998,-0.14480567,0.82885486,-0.2527258,-0.45757246,-0.7278164,-0.4271378,-0.8950273,-0.5173907,0.2377034,0.2529591,0.059563525,-0.33493486,0.0697245,-0.11062238,-0.082648255,0.009654446,-0.52497476,0.40886313,0.09242842,0.58924323,-0.34829378,-0.80548227,0.20946144,0.19658235,-0.14488818,-0.64640385,0.79585457,-0.11488483,0.6974786,0.10905355,0.053163,0.05131026,-0.4677827,0.048674114,-0.26714423,-0.1999005,-1.1060573,-0.054313485 -416,0.33530164,-0.3668265,-0.560308,-0.0716576,-0.008330777,-0.035952155,-0.14190225,0.25662723,0.091609545,-0.52545446,-0.14971864,0.013052541,-0.044977665,0.38672987,-0.18467422,-0.55474573,-0.0748446,0.06941301,-0.40005437,0.77188486,-0.22754896,-0.019816542,-0.07141036,0.38745716,-0.015546153,0.21334712,0.42423794,-0.04514508,0.035072286,-0.14246412,0.04759693,-0.011636019,-0.63631743,0.31475073,0.0043343254,-0.32681143,0.11591091,-0.25312954,-0.32287517,-0.6195701,0.20233311,-0.8916807,0.48212886,0.09060731,-0.23665337,0.10917834,-0.07319447,0.29573122,-0.37664673,0.079117246,0.15776233,-0.1232101,-0.052071106,-0.17836785,0.17838643,-0.46848997,-0.43404052,-0.056769982,-0.33501792,-0.18801318,-0.15504967,0.15459968,-0.4063516,-0.11239711,-0.08459435,0.5436594,-0.5631226,-0.24123399,0.13219605,-0.3328179,0.48743233,-0.7378134,-0.122979976,-0.1804939,0.07696127,-0.2323528,-0.14541806,0.18144763,0.11752007,0.4913186,0.13129263,-0.08081331,-0.26528534,-0.04979269,0.29545656,0.43468747,-0.17032088,-0.6132651,-0.08723098,0.040477604,0.04758993,0.10240799,0.0018089911,-0.4297255,-0.11828113,0.19454534,-0.056055408,0.2055927,0.5338325,-0.29747894,-0.263696,0.30740777,0.52702415,0.027178338,-0.11370199,-0.11799207,0.022735955,-0.40628967,-0.24509054,0.09219226,-0.26703405,0.81993407,-0.13014312,0.33148944,0.7009208,-0.13737157,0.10902294,0.027450735,-0.055159543,-0.2566144,-0.313951,-0.2733886,0.41540432,-0.3416817,0.22297625,-0.27582154,0.6301109,0.103250034,-0.78950644,0.351805,-0.39627144,0.07563854,-0.29268923,0.65262383,0.5699473,0.23322432,0.19317158,0.851235,-0.59833217,0.021960557,-0.0051347166,-0.42417148,0.16136354,-0.04914118,-0.2382242,-0.52505416,-0.039663,0.118500926,0.039282184,-0.13360593,0.05551998,-0.5676088,0.001462996,0.20969616,0.71460444,-0.24805768,0.09954699,0.40844956,1.1262897,0.7791068,0.055710193,1.3884562,0.06446918,-0.22901022,0.10050406,0.041302115,-0.7632976,0.15166914,0.57201004,0.61386245,0.13898145,0.2141313,-0.13505018,0.51259416,-0.5517406,0.16862373,-0.26227683,0.48807546,0.029812893,-0.24622309,-0.48568952,0.052122515,-0.08711324,0.15449785,-0.15572475,0.15750816,-0.17452134,0.17303473,0.09212359,1.5791229,-0.28948715,0.24717538,0.073879,0.45349443,0.095689975,0.032699954,0.21253587,0.24678992,0.546856,0.22467737,-0.5511747,0.06598896,-0.1505236,-0.6075904,-0.17317384,-0.1993616,0.09218589,0.14904934,-0.4805878,-0.104643546,0.0144417705,-0.16668738,0.37135926,-2.7672796,-0.080187924,-0.31544286,0.30938128,-0.43360844,-0.23183538,-0.05406214,-0.27264696,0.5625208,0.55245376,0.5549324,-0.78585356,0.3261482,0.4128643,-0.34142664,-0.017468056,-0.6033659,-0.08097363,-0.13262963,0.5753611,0.21951592,-0.2920236,-0.03823096,0.1400752,0.43813226,0.06708279,0.044163574,0.1662366,0.09745773,-0.0030768712,0.4021354,0.02334652,0.5258111,-0.14918698,-0.109270655,0.295424,-0.11690325,0.2671028,-0.17732131,0.22130519,0.29593456,-0.24485652,-0.9591756,-0.85910916,-0.27388605,1.2413636,-0.25722829,-0.68196297,0.3415368,-0.09098274,-0.2448529,-0.09158663,0.2443444,-0.06710341,0.12987006,-0.93868166,0.22159147,-0.17194617,0.27419794,0.08101461,-0.19538528,-0.6959195,0.7752116,-0.04650423,0.53440666,0.7106995,0.21495783,0.048275203,-0.4011704,-0.046355028,1.0505432,0.48614255,0.009536505,0.0021730985,-0.091790594,-0.16213651,-0.1593163,0.26967648,0.586633,0.73827815,-0.041615974,0.094251156,0.22259027,-0.09679335,-0.0889692,-0.03992934,-0.29819787,-0.081953295,0.18349992,0.6132355,0.75342655,-0.22698373,0.3019797,-0.11512076,0.23427713,0.00936084,-0.42033246,0.6341673,0.7442443,-0.06418134,-0.16235982,0.60953397,0.45749107,-0.27075496,0.3965609,-0.7485876,-0.21910618,0.39600122,-0.01849381,-0.38383412,0.035135064,-0.5370106,0.29974985,-0.9724191,0.41422763,-0.393525,-0.42465994,-0.75384694,-0.4154749,-3.524975,0.12521727,-0.4845117,-0.21497114,-0.16095354,-0.18861187,0.4520432,-0.82877135,-0.41108298,0.3093131,0.08463049,0.43314,0.021799406,0.08657289,-0.26085553,0.06427891,-0.014548525,0.23052041,0.1449772,0.041873503,0.07116721,-0.49756444,-0.05820999,0.08636012,-0.42764565,0.1678945,-0.45550263,-0.41288486,-0.2597873,-0.38098314,-0.2514175,0.70923567,-0.2658334,-0.09841463,-0.14791004,0.05575956,-0.32086167,0.3459619,0.12102006,0.13734852,-0.036965366,0.13438685,-0.060264233,-0.2938974,0.07469636,0.04185394,0.29138052,0.22054088,-0.45685053,0.030504083,0.4685932,0.4134234,-0.23136972,0.69465643,0.8925125,-0.08493057,0.2249163,-0.11000057,-0.24515676,-0.60866165,-0.65770394,-0.08432913,-0.4241921,-0.5103736,0.09157578,-0.24092735,-0.8086366,0.46596718,0.015496075,0.09150365,0.12696548,-0.013812979,0.42354688,-0.22338152,-0.16211613,-0.0061544105,-0.11712861,-0.7231057,-0.3962046,-0.63050634,-0.48123083,-0.09384332,1.0343517,-0.14102037,-0.13332637,0.17446828,-0.29469594,0.03525974,0.2642242,-0.026326546,0.04792896,0.42157486,0.058626276,-0.7266709,0.5986369,0.06352201,-0.12853692,-0.7786005,0.1799928,0.51258683,-0.606327,0.4093791,0.29868862,0.035207387,-0.2066329,-0.48692688,-0.38337883,-0.14489795,-0.14057447,0.39320433,0.12937461,-0.6458619,0.37469888,0.28391334,-0.07787448,-0.596419,0.61621124,-0.07383811,-0.13945974,0.008238246,0.19988638,-0.03719804,-0.00024219106,-0.23072372,0.25374132,-0.44305018,0.29755083,0.34163293,-0.10178673,0.44082534,-0.044612337,-0.15464668,-0.71544546,-0.010626306,-0.57060474,-0.14347266,0.23717229,0.011588689,-0.016844235,0.07148398,0.052098114,0.4354014,-0.37427154,0.2092252,0.007773792,-0.44889057,0.44021568,0.47278103,0.27053562,-0.4605141,0.70223117,0.055715498,-0.1569275,-0.46423587,0.090209804,0.57729846,0.19328684,0.29402873,-0.31932887,-0.05924253,0.19361128,0.7629475,0.1473233,0.51775837,0.015715161,-0.002730896,0.35097682,0.09671999,0.17219125,0.11915609,-0.5561971,0.13035159,0.04572931,0.24267767,0.2821707,0.19760565,0.39146078,-0.04999408,-0.22588842,0.07257492,0.25433752,0.12907855,-1.0515827,0.42178378,0.23459323,0.7800563,0.6100778,-0.053414356,0.06902236,0.6368874,-0.16142279,0.14795387,0.27900976,-0.0995093,-0.55578667,0.65327144,-0.69206,0.298023,0.029444082,0.023120366,-0.014587258,0.049628492,0.22686402,0.69306487,-0.11886272,0.13221383,-0.24093919,-0.108407654,-0.09011236,-0.29515338,0.10334454,-0.34135357,-0.41244042,0.655055,0.555209,0.4355451,-0.18568386,-0.06917569,0.19727404,-0.04134219,0.34981653,-0.12335082,0.22316803,0.17492408,-0.59712225,-0.3030757,0.59186727,-0.12798828,0.13668096,-0.08071997,-0.26269814,0.2601607,-0.0022937257,-0.1357152,0.007819126,-0.54335356,0.19387865,-0.24916089,-0.20808727,0.8475497,-0.39921084,0.2690005,-0.0043740943,0.04308486,-0.13979535,0.15312888,-0.056114513,0.7796038,-0.015815655,-0.07162307,-0.5731521,-0.031449422,0.09851969,-0.057247538,0.032906104,-0.34951186,-0.08894632,-0.6915352,0.39395848,0.0038856443,-0.12356189,0.3168429,-0.32951277,-0.07508718,0.43091425,0.017104102,-0.2062978,0.20260091,-0.15861385,-0.23603976,-0.35065368,-0.19631682,0.33179972,0.11529541,0.33013645,0.022602806,-0.027761055,-0.16682518,0.22544676,0.29349837,0.10276965,0.2568262,-0.051105637,-0.32580957,-0.26588055,0.19010238,0.39416113,0.005992415,-0.010898262,-0.10155297,-0.8325732,-0.45415354,-0.2789512,-0.10528784,0.3548768,0.061259795,-0.19194879,0.5351822,0.23213972,1.2605268,0.025938155,-0.38062456,-0.090120584,0.6222354,-0.11521991,-0.049122553,-0.21533959,0.929061,0.7433026,0.0750347,-0.08856818,-0.37307587,-0.18756855,0.2729782,-0.11981038,-0.0157631,-0.024888838,-0.76753855,-0.34143057,0.27488264,0.34432808,0.045427185,-0.07501692,-0.10199863,0.13789472,0.063834086,0.26741728,-0.4969244,-0.13353288,0.3026159,0.21825619,0.021548659,0.1904789,-0.3853978,0.3853564,-0.52068263,-0.085145555,-0.29610264,0.077656515,0.033571158,-0.18803555,0.13305669,-0.111901365,0.44280002,-0.32887217,-0.27631953,-0.14885375,0.6698394,0.2517908,0.13228165,0.7840623,-0.14069119,0.024221092,-0.18737066,0.36092445,1.0708104,-0.49491537,0.15123188,0.33397838,-0.3063686,-0.68631977,0.2961898,-0.3191883,0.3419353,-0.14434105,-0.44111028,-0.5899392,0.17828846,0.09697463,-0.23087008,0.06719756,-0.671957,-0.36423385,0.12556979,-0.37990692,-0.19943243,-0.33481026,0.1501482,0.6573819,-0.389354,-0.349075,0.20866652,0.30245245,-0.09472451,-0.5867937,-0.032757122,-0.26872438,0.3495325,0.16828902,-0.5084296,-0.17153801,0.18130521,-0.40561923,0.07072649,0.09550025,-0.3185005,0.02682273,-0.2946745,-0.12056898,0.9705283,-0.04911373,0.17210932,-0.7268064,-0.28581432,-0.79906344,-0.4068384,0.4027001,0.24540393,0.013795223,-0.53634137,0.06374439,-0.069495596,0.31118393,-0.2588547,-0.33497834,0.4993575,-0.020663934,0.47754708,-0.13306434,-0.6619578,0.112130694,0.1556926,0.14520277,-0.42560253,0.4567894,-0.041788813,0.81619,-0.0013756308,0.13211331,0.12955476,-0.5291092,-0.09770876,-0.20731144,-0.3966445,-0.6951662,-0.0077561457 -417,0.44448304,-0.05357919,-0.57774115,0.020538377,-0.41698867,0.24008113,-0.085006356,0.48158738,0.22481553,-0.3956047,-0.20796375,-0.01646078,-0.07025402,0.17067751,-0.23048283,-0.572177,-0.038632564,0.15583116,-0.31168306,0.51219267,-0.29766452,0.38414574,0.10352304,0.20528223,0.24804159,0.15425496,0.008831149,-0.11577277,-0.23449121,-0.29066503,-0.12860227,0.27523965,-0.6552275,0.41206986,-0.1263452,-0.24458233,-0.011642383,-0.36223197,-0.3654142,-0.72485757,0.16556695,-0.69599617,0.6009751,0.10272372,-0.3978052,0.06425668,0.18180582,0.262507,0.014991526,0.04219288,0.21610975,-0.09213393,-0.008141674,-0.1690414,-0.012865409,-0.5197476,-0.53049505,-0.18083817,-0.5410688,-0.11065841,-0.040880557,0.26289213,-0.23643012,-0.09693979,-0.2128649,0.5878427,-0.47625887,0.10433967,0.26932722,-0.099544756,0.2984433,-0.59229374,-0.09649122,-0.05680555,-0.017291121,-0.09258796,-0.26496643,0.25879204,0.10247259,0.43436998,-0.044187702,-0.14441268,-0.18835363,-0.007057769,0.12904644,0.3541434,-0.34443322,-0.34564888,-0.12521252,0.057067335,0.41450316,0.010541424,0.19881742,-0.2898787,-0.0984333,0.00299526,0.0004746858,0.32593712,0.5601946,-0.20131657,0.02833677,0.2683451,0.5498877,0.1646821,-0.15397334,0.08445297,0.02910145,-0.36980665,-0.107629046,-0.034580253,-0.19278763,0.5119804,-0.056423172,0.06418395,0.62152344,-0.052016012,-0.07069114,0.1933788,0.17300698,0.12284908,-0.1671778,-0.3238883,0.23469745,-0.5358335,-0.13597329,-0.059396695,0.72690475,-0.0029116161,-0.6967779,0.23502828,-0.45236146,0.07211675,0.02327825,0.5134348,0.5866006,0.5229084,0.11253024,0.81332487,-0.3252492,0.093092844,-0.07325549,-0.2441818,0.14837097,-0.097466975,-0.102137685,-0.4764642,-0.14667618,-0.09806079,-0.3717081,-0.102841295,0.3568007,-0.6772174,-0.161382,0.11359477,0.71029484,-0.30801672,-0.06334789,0.5815383,1.0361937,0.9133095,0.1622867,0.86493623,0.18093422,-0.120234795,-0.19417393,-0.2363586,-0.5367043,0.18426618,0.29315543,-0.17051071,0.4662167,0.24359998,0.111863464,0.44483924,-0.47576267,-0.027886763,-0.19423388,0.4046003,-0.054997966,-0.07051061,-0.38711122,-0.17571594,0.048496045,0.1732299,-0.016975999,0.363797,-0.24666332,0.25276986,0.25037786,1.4961476,-0.28349656,-0.041926056,0.12580717,0.28309557,0.16389883,-0.40226734,0.016144596,0.31161958,0.28688484,0.0441501,-0.50481653,-0.0099709,-0.099219725,-0.46241063,-0.16894628,-0.13575886,-0.175997,-0.15243079,-0.44455382,-0.26918462,-0.06129051,-0.25815868,0.44376233,-2.596479,0.11102483,0.00875938,0.3221828,-0.20577392,-0.40615585,-0.07916466,-0.40932447,0.19686183,0.33797723,0.33005285,-0.66619617,0.33371562,0.501018,-0.34374523,0.036504373,-0.554187,0.14252785,-0.011225332,0.41116202,-0.025126241,0.03726967,0.19823165,0.31444886,0.45007935,-0.17327113,0.20329544,0.19230132,0.26338103,-0.021352792,0.27498785,0.08112947,0.4272759,-0.0015000179,-0.19450785,0.4649301,-0.34985703,0.18863326,0.008500997,0.037075747,0.29072142,-0.3182774,-0.6231465,-0.5886066,-0.11895515,1.0260904,-0.27122086,-0.5669538,0.19008467,-0.19929296,-0.29556555,-0.046308592,0.29773527,-0.06225604,0.04881013,-0.802515,-0.07046445,-0.18918946,0.3244556,-0.08917268,-0.05248966,-0.52931774,0.74169683,-0.23895866,0.4717089,0.43688127,0.27318263,-0.29324746,-0.54553664,0.029552605,1.0227723,0.6427189,0.14298353,-0.27986917,-0.17128731,-0.21943365,0.0899801,0.09244561,0.6584248,0.83893925,-0.14810686,0.044623874,0.2963422,0.03923425,-0.020651817,-0.16294536,-0.4713926,-0.021221235,-0.043482564,0.5756096,0.6588111,-0.054035667,0.53186953,-0.0904161,0.3573795,-0.17985806,-0.50574327,0.37543058,0.7292539,-0.19337985,-0.28127712,0.70259833,0.5319041,-0.1277705,0.41211647,-0.63711834,-0.22584085,0.4130394,-0.18778259,-0.460356,0.34099495,-0.3386954,0.26599586,-0.6984291,0.6681497,-0.25254917,-0.7902309,-0.5787822,-0.17428377,-1.8986577,0.2319839,-0.20843507,-0.19278768,-0.06820953,-0.174518,0.24163476,-0.7090213,-0.5985995,0.16422954,0.058514047,0.5179846,0.03229276,0.049262565,-0.08006145,-0.369147,-0.041320577,0.2865653,0.16403157,0.16331154,-0.00037343055,-0.4273113,-0.058791965,-0.110770814,-0.2903884,0.020170484,-0.620363,-0.63271457,-0.12661842,-0.51735824,-0.13078405,0.6425432,-0.3745888,0.039179888,-0.21108957,0.043770812,-0.009243948,0.07367091,0.1221991,0.11633359,-0.025451235,0.0153685585,-0.0041462183,-0.29739195,0.09405681,0.12905961,0.4086738,0.3772646,-0.13532978,0.23251027,0.54187816,0.6247122,0.022826418,0.8297721,0.4838931,-0.26702797,0.08712918,-0.121267386,-0.27018243,-0.60572624,-0.32911754,0.0692912,-0.5690847,-0.2684956,-0.0037758294,-0.39675286,-0.75910234,0.4803298,-0.13878152,0.2646956,-0.037298903,0.2206463,0.45557368,-0.20811602,-0.13245195,-0.23944923,-0.13791972,-0.58999515,-0.33925512,-0.67303884,-0.36554453,0.19224092,1.4155059,-0.34134272,0.005990967,0.13601124,-0.1752761,0.109329656,-0.037504133,-0.07140587,0.020105675,0.49698406,-0.076577716,-0.58501863,0.20820257,-0.1659774,-0.031661157,-0.4611863,0.10797348,0.5330993,-0.61263216,0.45460412,0.2785011,0.16936406,-0.05471401,-0.6758014,-0.06557665,0.10445873,-0.39552355,0.53319085,0.31729904,-0.5203556,0.33163568,0.27247363,-0.37600124,-0.66317654,0.46586883,-0.02941426,-0.32069522,-0.09806052,0.2977333,-0.12659632,-5.1882118e-05,-0.030428424,0.23081182,-0.3208171,0.19501904,0.2903458,-0.12676094,-0.08091363,-0.25367856,-0.18778999,-0.7874133,0.14231874,-0.33681762,-0.36532068,0.10878666,0.024198802,0.08591122,0.23638028,0.2288419,0.5682353,-0.31158423,0.08328809,-0.09080383,-0.30840212,0.5767659,0.47138473,0.42238602,-0.18684886,0.46196437,0.07067905,-0.0586303,-0.26248562,0.12766422,0.4321701,-0.0314757,0.26101136,0.028892636,-0.080317214,0.34014776,0.8709954,0.10845532,0.43717536,-0.073023215,-0.15729167,0.08612442,-0.010190858,0.22311693,0.010586977,-0.5528188,-0.051751696,-0.02372301,0.13089716,0.3825928,0.19010639,0.28481805,-0.14639148,-0.37256575,0.1335514,0.20045355,0.035011586,-1.3014609,0.23483513,0.02869787,0.73898697,0.6180024,0.2585122,0.030776855,0.4661612,-0.27034938,0.051420618,0.2201368,0.047651455,-0.3517263,0.32575125,-0.6651114,0.28737113,-0.0935492,-0.02111565,-0.019281514,-0.22838348,0.33566308,0.90484196,-0.14550184,-0.050094202,-0.0724447,-0.14666288,-0.073709436,-0.29379803,0.2452085,-0.6569596,-0.5055909,0.7583792,0.5279231,0.46795654,-0.14125869,0.017453307,0.18744728,-0.22212619,0.22713718,0.04779107,0.02623648,0.007548958,-0.4562738,-0.27997917,0.5367172,-0.19792691,-0.107157506,-0.08821065,-0.12422041,0.07553616,-0.15660311,-0.10828527,0.045101993,-0.7030739,0.018759497,-0.47764555,-0.3140206,0.47328857,-0.19367218,-0.013081364,0.09971104,-0.023401465,-0.28795817,0.2874211,0.33111274,0.616909,0.09829463,-0.02550962,-0.21577784,0.3410818,0.07714887,-0.13466938,-0.042034633,-0.11649219,0.3639235,-0.5794043,0.34062934,-0.007063272,-0.19657938,0.061756596,-0.21514213,0.0113281105,0.5008058,-0.11004007,-0.1715225,0.10413315,-0.19191706,-0.15875654,-0.14892586,-0.21904443,0.12215334,0.06643747,-0.14902756,0.03230136,-0.13504845,-0.2138947,0.11616941,0.1822033,0.41306233,0.58386695,-0.11767873,-0.61478174,-0.049379557,-0.036396287,0.42808118,0.061457533,-0.09163959,-0.3860615,-0.39762378,-0.41823965,0.2765946,-0.26342672,0.35328665,0.036038034,-0.24075244,1.0386342,0.12498914,1.1844214,-0.031279653,-0.40992138,-0.15151432,0.5758287,-0.05197399,0.081967145,-0.4248561,1.0148636,0.5789015,-0.058993764,-0.019400088,-0.23893094,0.08050496,0.29294112,-0.12860397,-0.21050946,-0.060091034,-0.5833829,-0.09620122,0.29718453,0.20542824,0.021884248,0.05820515,0.022546554,0.31418857,0.016763197,0.23912251,-0.56000465,0.12864691,0.23043641,0.12424964,0.24896917,0.020845752,-0.5488243,0.3009022,-0.41971135,0.14422771,-0.21593225,0.009971544,-0.028767955,-0.36317104,0.18464492,0.015699223,0.31172925,-0.5533619,-0.23013741,-0.18177673,0.56311744,-0.078138195,0.12085394,0.59383565,-0.20421793,0.15364474,-0.04227063,0.5714767,1.0344056,-0.3346857,-0.094471954,0.51583606,-0.45386976,-0.60959536,0.1868928,-0.3200952,-0.1262541,-0.17159045,-0.47419637,-0.5137471,0.25354522,0.25128877,-0.113359265,0.06333685,-0.7074996,-0.042948484,0.33489603,-0.3554762,-0.13711308,-0.17158157,0.25480425,0.6216849,-0.4233954,-0.36223462,-0.15562102,0.37066185,-0.28603202,-0.45022488,-0.06930498,-0.25851613,0.3206843,0.071507044,-0.33683798,-0.14826146,0.18748969,-0.32607397,-0.06797536,0.35833117,-0.24788958,0.04121328,-0.18807995,0.11992433,0.69172686,0.039575655,-0.13277023,-0.49710453,-0.32926926,-0.889227,-0.35177654,0.14178836,0.1050643,0.015194388,-0.6999022,-0.06693013,-0.29074228,-0.0225273,-0.09454564,-0.34966207,0.5364835,0.22082853,0.3457569,-0.05630234,-0.90047574,0.16024269,0.09638362,-0.10617225,-0.57041377,0.46374062,-0.03193241,0.85945636,-0.0058970097,0.0054980777,0.077810705,-0.6352874,0.1988842,-0.16010323,-0.1384446,-0.8226621,0.11848143 -418,0.58248997,-0.5155177,-0.5585042,-0.1554834,-0.3319211,0.017544592,-0.3825368,0.43781447,0.30907288,-0.3994363,-0.36382157,-0.15031426,0.0874148,0.09693818,-0.33297044,-0.47944522,0.003825891,0.113105975,-0.56621444,0.33693317,-0.60867286,0.30204067,0.18471673,0.39897582,0.26333687,0.12564333,0.07995675,-0.057871204,-0.03149035,-0.362859,0.09382935,0.24052659,-0.71901685,-0.087249495,-0.4768942,-0.4892025,-0.05199235,-0.8033346,-0.1663771,-1.0403335,0.20132756,-1.1264834,0.52908075,0.09159803,-0.4129359,-0.1611573,0.30996767,0.16866931,-0.247996,0.06757979,0.23071893,-0.06047826,-0.21243432,-0.12411158,-0.20514226,-0.43436328,-0.6616068,-0.031235963,-0.5401629,-0.31204364,-0.2527091,0.26898843,-0.3309181,-0.019972168,-0.36705953,0.3952282,-0.4490127,0.045977622,0.036221363,0.07393761,0.6262288,-0.73566866,-0.21228144,-0.2634518,0.37258285,-0.16805485,-0.55575454,0.32987916,0.71520174,0.31088734,-0.07365684,-0.16729248,-0.29056698,-0.10303788,0.09434132,0.5243702,-0.419043,-0.47661978,-0.22684553,-0.042703133,0.63441527,0.72416174,0.060323514,-0.222439,0.12613788,-0.1385059,-0.31553602,0.75909626,0.65461016,-0.367728,-0.24204187,0.12808831,0.56094074,0.47915727,-0.37999958,-0.084767185,0.076876394,-0.8018511,-0.13705638,0.39586583,-0.23573379,0.71735406,-0.2249206,0.31234708,0.72023743,-0.31434923,0.111448765,0.30945134,0.060052186,-0.15346469,-0.2547549,-0.38405538,0.25277805,-0.76141393,0.11048633,-0.47124052,0.7452787,0.07701273,-0.8034981,0.3520397,-0.7028133,0.19545497,-0.17491788,0.5585547,0.8245352,0.5152381,0.4524657,0.7806853,-0.124490544,-0.019626806,-0.0139942765,-0.37369198,0.32457188,-0.35468313,0.16454132,-0.3908654,-0.07679907,-0.3124276,0.07456128,0.10887375,0.77936286,-0.6221072,-0.2402137,0.13728765,0.53229153,-0.28944892,-0.061083723,0.781175,1.0762863,1.1044587,0.27403915,1.2961781,0.24973798,-0.2482458,0.23060937,0.08487896,-0.7653177,0.35018867,0.27621096,-0.89657706,0.25957397,-0.199368,-0.17422771,0.30762714,-0.3836074,-0.08949001,-0.016162958,0.13224736,0.12657216,0.015652765,-0.571693,-0.37246782,-0.039052747,0.11476196,-0.030061115,0.28583536,-0.2238111,0.18493369,0.04416847,0.9543439,-0.1414309,-0.048155405,0.07973595,0.46333194,0.11015254,-0.14833371,-0.0036985637,0.2992398,0.40704888,0.16282572,-0.74002105,0.2299453,-0.2732069,-0.20034692,-0.00014373063,-0.42896265,-0.30365664,-0.013829028,-0.554158,-0.23263498,-0.18024111,-0.17410183,0.471222,-2.532937,-0.31899324,-0.09188224,0.29862416,-0.17253436,-0.32683724,-0.20879528,-0.55872965,0.35228592,0.18822198,0.6058821,-0.76579064,0.32704094,0.7510699,-0.61968935,-0.17150493,-0.9397398,-0.35427552,-0.037236415,0.3689428,0.123974666,-0.13906305,0.17467925,0.11151884,0.7669672,0.2419084,0.2371666,0.30975726,0.87087315,-0.113387324,0.7536417,-0.20331244,0.38946286,-0.42813396,-0.38079327,0.18882275,-0.4528067,0.31387696,-0.0702965,0.027270153,0.7118818,-0.58609235,-1.1898801,-0.6292645,-0.38558847,1.2110037,-0.30912894,-0.5848368,0.2220501,-0.33679584,-0.113047935,-0.067360155,0.8330914,-0.036501296,0.14278528,-0.8340004,-0.10319202,-0.12635441,0.09129818,-0.012358924,-0.0098244725,-0.33598965,0.76187336,-0.02987414,0.45204955,0.13395867,0.027980745,-0.47061223,-0.5851701,0.13085334,0.94880754,0.400106,0.06104473,-0.31518552,-0.23527725,-0.45173937,0.085132346,0.076802984,0.7036923,0.8526537,-0.09815043,0.36623025,0.36318356,0.05428084,0.10717245,-0.23283009,-0.37433428,-0.22333923,0.012873101,0.6145911,0.7745815,-0.02522102,0.40834093,-0.14227271,0.12280446,-0.17368291,-0.4374237,0.5727363,0.9499313,-0.18181233,0.10106345,0.6792774,0.5986222,-0.53644526,0.5886021,-0.61325896,-0.30996674,0.5525382,-0.1298786,-0.55675936,0.33862552,-0.34269303,0.1064497,-0.7757219,0.45979613,-0.53030956,-0.19178078,-0.44365054,0.012700248,-3.1960728,0.4753852,-0.06887099,-0.019453824,-0.49027044,-0.36122918,0.40141815,-0.5384201,-0.8144541,0.11438437,0.10637965,0.707974,-0.29364967,-0.007348135,-0.251419,-0.4951474,-0.13888457,0.22037145,0.2540563,0.4049727,-0.286736,-0.38756305,0.07456623,-0.07413669,-0.3664286,0.07027016,-0.65544975,-0.77066886,-0.035237007,-0.48864836,-0.34824783,0.70456576,-0.4439655,-0.060413145,-0.11898255,0.15568523,-0.020460587,0.4138237,0.059917856,0.36170852,-0.09861286,-0.034536436,0.10289303,-0.016251069,0.62237245,-0.09084515,0.14030018,0.22327396,-0.1046807,0.18169901,0.6062525,0.7809586,-0.16518314,1.4507278,0.27157903,0.043708228,0.21066587,-0.22706954,-0.4575158,-0.6592939,-0.007733959,-0.14761986,-0.4588353,-0.39545098,0.18565437,-0.10181258,-0.74351984,0.7461983,-0.13404587,0.42584544,0.01782621,0.6077029,0.35039523,-0.12041736,0.06322132,-0.1029249,-0.18774691,-0.5034326,-0.29300943,-0.6994477,-0.34530076,-0.13293992,0.8456483,-0.38165075,0.020329619,0.059867937,-0.06712863,0.11928346,0.022770975,-0.029775506,0.21421805,0.43408594,0.06410129,-0.72825205,0.3268986,0.07711452,-0.1260691,-0.48259658,0.16571645,0.8755144,-0.8925851,0.633817,0.54577935,-0.15477669,-0.28285646,-0.6878928,-0.16500756,0.14402635,-0.30602926,0.61067414,0.19857588,-0.9508754,0.49349517,0.6118819,-0.40166536,-0.7066512,0.827592,-0.07060613,-0.11010505,-0.38437217,0.43698162,0.22539859,0.04307879,0.018539742,0.3735049,-0.46182862,0.35978943,-0.14813253,-0.031561956,0.22875309,0.0028969229,-0.083321504,-0.7900177,0.26697877,-0.5906455,-0.31099427,0.52650255,-0.06732385,-0.018500831,0.5345098,0.17947158,0.45255914,-0.35354486,0.030778294,-0.10182357,-0.35286897,0.24722195,0.5952231,0.51634705,-0.40338683,0.6298608,0.33009464,-0.28612804,0.31600326,0.06905739,0.28099936,-0.0536075,0.42666483,-0.15233728,-0.38370094,0.25712112,0.88955724,0.13873808,0.6455963,-0.06408814,0.12325704,0.30909923,0.17912552,0.37086418,-0.1402466,-0.65975654,-0.12642172,-0.27729294,0.1587917,0.55530584,-0.009763909,0.11232369,-0.025679385,-0.13186865,-0.066433616,0.49953598,0.045609795,-1.3879391,0.29070044,0.15811504,0.88144445,0.5792725,0.041510504,-0.057553727,0.54513335,-0.27651757,0.06859597,0.7262269,0.41423398,-0.51806885,0.76865166,-0.5674574,0.4022309,-0.50070536,0.18804781,-0.056229286,0.11590133,0.41033572,0.95762175,-0.27219272,0.051443357,0.08779316,-0.35209784,0.060502566,-0.47651085,0.24389467,-0.38466376,-0.26468423,0.9479103,0.46652904,0.3396774,-0.16869906,0.02162965,-0.004341171,-0.26923004,0.32511792,0.03908817,-0.03421718,-0.01983245,-0.803316,0.20445009,0.76829165,0.23319674,0.02181903,-0.18566492,-0.2610987,0.20439911,-0.25402912,0.22870848,-0.076182075,-0.8878813,-0.16731188,-0.6415823,-0.68147665,0.30461273,-0.170549,-0.027421664,0.3752852,-0.005393248,-0.23200937,0.35894006,0.31919074,0.6119093,-0.12985548,-0.13477382,-0.33426142,0.21765096,0.24753308,-0.24956593,-0.24721572,-0.2304401,0.18650971,-0.35412616,0.66222894,-0.21862635,-0.5864188,0.0015159845,0.009242264,-0.15998007,0.77013093,-0.14765744,-0.12479456,-0.117927566,-0.07901556,-0.24241671,-0.17071733,-0.11397624,0.18703267,0.27138987,-0.13547057,-0.34683627,-0.3642547,-0.06679928,0.3329482,-0.1651713,0.6105212,0.60413283,0.34606206,-0.23740582,0.14812787,0.07799255,0.69606704,0.032972954,-0.21980497,-0.75416607,-0.21103103,-0.26040268,0.26170284,0.040365897,0.37339193,0.16551343,-0.3530765,0.9818114,-0.12995449,1.059192,0.043445177,-0.44523796,-0.01755861,0.52789366,-0.27451625,-0.23226133,-0.3577088,0.7913976,0.53449446,-0.33710146,0.010891649,-0.4344894,-0.1132102,0.18808493,-0.3662786,-0.12868538,-0.19113375,-0.58571947,-0.074019894,0.16019535,0.39194906,0.18463561,-0.11897153,0.19880785,0.3332333,0.089588985,0.44389915,-0.6766529,-0.28110623,0.0316655,0.60235536,-0.18183081,0.1953672,-0.23800921,0.28962496,-0.6705705,0.21990657,-0.73139524,0.16851345,-0.22352739,-0.45715818,0.018346088,-0.0873846,0.378198,-0.13580741,-0.31947255,0.031956147,0.36526334,-0.040981613,0.32060662,0.5983442,-0.23400351,0.03338954,0.031688638,0.7001654,1.3563786,-0.3604119,-0.28331703,0.20453861,-0.36181682,-0.7820616,0.5355045,-0.6522838,0.012289846,0.069546215,-0.24498609,-0.3461046,0.11271523,0.23950395,0.3383112,-0.25150225,-0.7656708,-0.19032073,0.46274084,-0.13738635,-0.1759392,-0.2813148,0.39619377,0.58669037,-0.3795625,-0.21195713,-0.36465412,0.39222825,-0.16307986,-0.44869298,0.056680508,-0.49822393,0.34086072,0.11840383,-0.3359622,0.038963728,0.1344032,-0.59386104,0.14995794,0.042615317,-0.32166824,0.13573922,-0.31606725,0.11255572,1.0112087,-0.28748626,-0.23955217,-0.29187983,-0.7097847,-0.7706811,-0.19595799,-0.03888315,0.3596117,0.13189521,-0.4342204,0.17685589,-0.1226604,-0.4115215,-0.07673846,-0.5394689,0.45563078,0.1010319,0.5835811,-0.2809784,-0.80110437,0.21843472,0.24187675,0.0038047596,-0.56545,0.68075293,0.019487465,0.78495777,0.17165212,-0.058407366,0.025410105,-0.37856606,0.073310114,-0.15268013,-0.05826179,-0.8885721,0.022545625 -419,0.48849174,-0.1582443,-0.5711394,-0.11536427,-0.1928539,-0.020564714,-0.16477807,0.66031057,0.19423796,-0.48268303,-0.15477511,-0.07308455,-0.0012405157,0.32530233,-0.14254403,-0.55494726,-0.046647895,0.20112911,-0.6685674,0.50111234,-0.38989198,0.21504945,0.0035164037,0.6391394,0.1907023,0.2071252,-0.1185888,0.12942539,-0.0449241,-0.2568779,0.060327195,0.25286338,-0.6984786,0.08207383,-0.21540776,-0.37982234,-0.19765292,-0.4599577,-0.47496712,-0.8439314,0.33704415,-0.8856557,0.6252439,-0.123770975,-0.39631155,0.03228833,0.23971382,0.50514436,-0.14538689,-0.17660482,0.089247026,-0.07767153,-0.09279051,-0.15236838,-0.17003575,-0.35248852,-0.60965854,0.1769537,-0.32168496,0.0192847,-0.23477693,0.19305226,-0.35280353,0.18427688,-0.11143017,0.47450784,-0.30772454,0.0929966,0.40962836,-0.084133066,0.25501245,-0.5421083,-0.044007838,-0.093338825,0.26692593,-0.07678464,-0.34532252,0.29407808,0.14682418,0.4748637,0.05327636,-0.34618455,-0.24826832,0.041100193,-0.037462786,0.46313015,-0.1969797,-0.48575824,-0.16085263,0.054252733,0.43983504,0.22438224,0.11852822,-0.06697743,-0.12503307,0.040851276,-0.20252392,0.47161832,0.6082565,-0.08146591,-0.2998264,0.28501242,0.54885805,0.23477171,-0.059428032,0.09851417,0.08122445,-0.60560507,-0.20028053,0.0072871167,-0.19846793,0.40530396,-0.16529998,0.25321847,0.6996977,-0.19344202,-0.11126101,0.21251847,0.063244,-0.03515721,-0.4166459,-0.3190302,0.23557563,-0.53549314,0.23871265,-0.26021224,0.77471405,0.18346676,-0.68727505,0.22623353,-0.65968174,0.2306175,-0.045523856,0.47276226,0.74901325,0.50942165,0.25582466,0.74380493,-0.38792592,0.13312745,-0.10871067,-0.32744038,0.10889505,-0.28263727,0.10295877,-0.4195093,-0.010632523,-0.02993315,-0.1256003,0.14741129,0.38143805,-0.5695141,-0.21743637,0.03592142,0.89475477,-0.21013379,-0.06960059,0.98178655,0.82848895,0.9131826,0.04264941,1.1305851,0.14699398,-0.1427504,0.18743162,-0.09031366,-0.9175498,0.43799964,0.20275782,-0.37906292,0.31895414,-0.064024985,-0.080348685,0.48759925,-0.49406117,0.072917886,-0.18254468,0.3396697,0.058025733,-0.13233154,-0.4309254,-0.24066718,-0.054309145,-0.10603355,0.21860828,0.26651976,-0.026542332,0.56775594,-0.013014967,1.444268,-0.026728181,0.08623282,0.091234185,0.40101975,0.1760597,-0.12965855,-0.13583365,0.08291386,0.32071564,0.15649267,-0.5297826,0.079304345,-0.1670923,-0.32392102,-0.18493064,-0.21598014,-0.1864528,-0.20719372,-0.4556733,-0.3053821,-0.26809344,-0.18570815,0.38358715,-2.5995722,-0.2824978,-0.0406509,0.33926356,-0.3824855,-0.48695558,-0.14125462,-0.56109875,0.6067226,0.18164107,0.5517781,-0.67831737,0.27057555,0.28173155,-0.5672777,-0.013702829,-0.7967984,-0.16788565,0.17095011,0.21266563,0.06797599,-0.19852321,-0.051414188,0.11310158,0.47684056,-0.06473721,0.01131554,0.28210488,0.44554406,-0.13479567,0.5229011,-0.17865114,0.65980476,-0.45271817,-0.25859788,0.35460767,-0.45094463,0.28454313,-0.07443158,0.060933303,0.51742846,-0.5288344,-0.8625441,-0.5270812,-0.17618115,1.029627,-0.17942767,-0.34974283,0.20393215,-0.6468189,-0.24720025,0.05136131,0.4587631,-0.17900518,0.0021662554,-0.79284364,-0.13340817,-0.22289582,0.02667452,-0.057085764,-0.10497376,-0.3416725,0.6128043,-0.14556995,0.2710986,0.38281924,0.12684889,-0.4415935,-0.5588102,0.06984376,0.8517721,0.38063785,0.22564551,-0.29723296,-0.23292615,-0.52613986,-0.22536628,0.026735552,0.7256361,0.80106646,-0.14831872,0.119303614,0.2621383,-0.01665976,0.022216681,-0.08715749,-0.33349222,-0.2579365,-0.096976265,0.76002175,0.7784495,-0.19369285,0.5362405,-0.077129774,0.32869393,-0.24721578,-0.4931005,0.5968609,0.8074852,-0.24660672,-0.40079087,0.65487194,0.33797613,-0.14935762,0.4504071,-0.4869346,-0.4074168,0.43811128,-0.09256632,-0.5141057,0.2072209,-0.2582901,0.23012428,-1.0372955,0.12380169,-0.43798986,-0.44596758,-0.75323296,-0.13755803,-2.229101,0.09494659,-0.24914196,-0.032692518,-0.37877426,-0.18576954,0.18114506,-0.40288654,-0.73193586,0.16998489,0.07016155,0.8617972,-0.09659937,0.1266672,-0.22969145,-0.12757851,-0.4526744,0.08239431,0.49578354,0.3804615,0.0011137803,-0.44716138,-0.1860418,-0.15360567,-0.5847871,0.13768053,-0.77734035,-0.5689727,-0.16074546,-0.5368387,-0.233255,0.74214536,-0.23424792,0.017783105,-0.19204544,0.05231712,0.035766937,0.3782798,0.12154619,0.04483113,0.18852353,-0.13215347,0.1442743,-0.27506742,0.21670556,0.09130125,0.38845342,0.29421484,-0.12458382,0.405078,0.45422328,0.99846596,-0.16106264,0.8383485,0.51437134,-0.010065607,0.31566238,-0.29737896,-0.42660195,-0.36170083,-0.054076534,0.053628445,-0.402525,-0.20663856,0.059604295,-0.3959953,-0.80954564,0.5723365,0.08856324,0.021879641,-0.076352164,0.16580829,0.5120365,-0.3130991,-0.14379296,-0.120899886,-0.12674962,-0.551775,-0.2700464,-0.5066673,-0.7363354,-0.1822531,1.1294007,-0.07354965,0.11637257,0.040504653,-0.29154077,-0.015114402,0.0645244,-0.09427259,0.049014084,0.48094395,-0.055275,-0.5327397,0.35136178,-0.05711599,-0.24406256,-0.7508575,0.3474788,0.6766319,-0.5172223,0.4453047,0.24323566,0.014038042,-0.30802646,-0.5631917,0.031933777,0.020115407,-0.20719299,0.4785455,0.26532796,-0.736904,0.52732736,0.5203075,-0.20156728,-0.73635304,0.44802076,0.12502573,-0.18797217,-0.16957802,0.37112343,0.16439782,0.03463644,-0.11754663,0.27137575,-0.31809312,0.17222585,0.20240487,-0.14179869,0.4404958,-0.26079527,-0.17477076,-0.7801819,0.10707584,-0.62706643,-0.31572473,0.2843136,0.053973947,0.13376264,0.1168905,0.22677456,0.3534762,-0.37388146,0.00439415,-0.30308864,-0.3633054,0.3062954,0.39641348,0.555705,-0.559358,0.62449104,0.11101139,-0.058014736,0.1817243,0.0709255,0.57972616,-0.07152724,0.37282214,0.10838968,-0.05414347,0.03611536,0.81179726,0.06160659,0.4586765,0.11745076,-0.027146196,0.086563796,0.15163599,0.14750801,0.06321495,-0.6570298,0.006448972,-0.14579615,0.1560516,0.49915224,0.16325945,0.29139656,0.02732306,-0.32693556,-0.07199858,0.028003637,-0.036116008,-1.7327473,0.55293757,0.25097293,0.95014185,0.18783556,0.09106705,0.09623359,0.74588335,-0.15173618,0.17683949,0.37815616,-0.07786754,-0.3985255,0.49555746,-0.85220975,0.53565824,0.052270226,0.0940978,0.087545484,0.046803687,0.6611098,0.729487,-0.13381882,0.053560477,0.00560801,-0.31574726,0.22986865,-0.43248132,0.05840396,-0.5243917,-0.17528585,0.71778774,0.43458578,0.321054,-0.246574,-0.017258553,0.25557077,0.0064982893,0.10474647,-0.0558849,0.11973882,-0.0048884354,-0.5474136,-0.16711381,0.46329355,0.16894814,0.2953687,-0.008173669,-0.025436934,0.2585129,-0.15371905,-0.048963286,-0.21106839,-0.75230354,0.0031637151,-0.5348412,-0.41925618,0.34100544,-0.2618591,0.15753286,0.2489184,0.11176691,-0.29104292,0.484742,-0.21986805,0.9210394,-0.06566002,-0.2728363,-0.28195947,0.25748464,0.25378835,-0.3175612,-0.07393178,-0.21412976,0.053189833,-0.3924532,0.37120265,-0.16509561,-0.5235968,0.1314611,-0.0992703,0.04918351,0.3932182,-0.2563063,0.017537594,0.11857606,-0.30786282,-0.21176742,-0.32165977,-0.044725068,0.3799176,0.44643372,-0.018531067,-0.01773294,-0.12936859,-0.20213011,0.4236522,-0.010688647,0.4200283,0.4152942,0.0884991,-0.31338528,-0.11237788,0.35844672,0.55441767,-0.09097996,-0.11493899,-0.45926067,-0.2730573,-0.3303894,0.52839917,-0.1031254,0.39490405,0.042402517,-0.24917823,0.7350956,0.088157065,1.1476914,-0.00048511822,-0.36333174,0.19599281,0.4052098,-0.005121684,-0.1059532,-0.4845689,0.8981962,0.3025959,-0.2311531,-0.05916622,-0.41721928,0.17066711,0.25157234,-0.22372201,-0.20311387,-0.13306238,-0.45943356,-0.25685754,0.32513836,0.2853306,0.18361594,-0.18107751,-0.014666454,0.23435208,-0.15586305,0.29632145,-0.43477204,-0.07536217,0.24795447,0.3339321,-0.095074974,0.112579376,-0.54932976,0.3863458,-0.44413102,0.05996388,-0.3173283,0.25330672,-0.030666979,-0.39002207,0.29140842,-0.108933054,0.3254951,-0.4759856,-0.29003245,-0.19499715,0.39708424,0.2743267,0.18555768,0.5608271,-0.26420134,-0.101391315,0.12506422,0.5277761,0.86198145,-0.25314948,0.19002658,0.22305563,-0.13678926,-0.5183284,0.46612185,-0.18123141,0.37048098,-0.033739995,-0.22698107,-0.5394361,0.27637464,0.2914789,0.06376802,-0.034657877,-0.679359,-0.20416495,0.32846102,-0.24630699,-0.24731849,-0.3821694,-0.021668483,0.53303826,0.072743736,-0.28810644,0.16159014,0.2634384,-0.08511257,-0.39259586,-0.09986513,-0.37158218,0.044774555,-0.0072139422,-0.36523038,-0.109188475,0.04495422,-0.55901736,0.1565926,0.110674165,-0.3299826,-0.016402697,-0.20647025,-0.0929806,0.9153797,-0.29625174,0.4167905,-0.5096093,-0.44573736,-0.7280615,-0.36684996,0.35221425,0.16237657,0.022234468,-0.77738076,-0.2698173,-0.09949843,-0.17075586,0.0014130791,-0.32456413,0.404348,0.18881239,0.35607547,-0.13473195,-0.6106786,0.15295093,-0.015999347,-0.26164773,-0.5394319,0.57989115,0.10255278,0.7933654,0.02126753,0.2676819,0.3767917,-0.5966034,-0.21192688,-0.08939754,-0.13496017,-0.7216127,0.012478224 -420,0.29216203,-0.23718733,-0.6186886,-0.18674152,-0.28597784,-0.010277345,-0.2215191,0.33365828,0.23455903,-0.67680305,-0.16153885,-0.33356625,-0.24208236,0.53089905,-0.3028776,-0.7236411,-0.024293402,0.12412517,-0.74217045,0.69264853,-0.27191716,0.37482518,0.25289896,0.36202827,0.27206367,0.11661197,0.2723847,-0.055082895,0.0069559123,-0.12538776,-0.03607381,-0.20347676,-0.6571105,0.10194782,-0.04843175,-0.49444962,0.0050195754,-0.33553997,-0.22880138,-0.845396,0.48460707,-0.8438722,0.41638392,-0.16538474,-0.3266939,0.048691146,0.053144787,0.57021743,-0.17168695,0.09050707,0.09670297,-0.0323542,-0.124073185,0.17011206,-0.21479353,-0.5082176,-0.6754539,0.17395383,-0.40347517,-0.23195094,-0.27939218,0.09506503,-0.41041976,0.16717641,-0.19498378,0.40469974,-0.35034975,-0.19320199,0.33632326,0.02608067,0.4225543,-0.71301895,-0.19959368,-0.36582085,0.20063022,-0.19556099,-0.18166892,0.20609874,0.4104083,0.5393692,0.037354823,-0.026173644,-0.2184624,0.0028146293,0.3295121,0.2688132,0.03677392,-0.39702585,-0.22789064,-0.09098242,0.34466124,0.10200036,0.35594875,-0.40291956,0.031560276,0.07834661,-0.35039192,0.25207514,0.42505696,-0.19393466,-0.2310244,0.2768442,0.6132674,0.36139774,-0.030801224,0.13388847,0.1653772,-0.55836,-0.20177056,0.22922546,-0.30833882,0.5188708,-0.27616403,0.27339426,0.4349618,-0.13455233,0.13628629,-0.17614865,-0.21181631,-0.2794988,-0.08723743,-0.35208362,0.26656678,-0.4676469,0.2163933,-0.39258474,0.65366876,0.33353382,-0.6278489,0.2941341,-0.6018655,0.35681498,-0.061777994,0.43349198,0.83109325,0.34122828,0.1334619,0.7705122,-0.44066587,0.14176334,-0.017149486,-0.22605988,-0.048573263,-0.38661745,-0.26585615,-0.39871305,-0.08645597,-0.22839539,-0.10382126,-0.14247502,0.51462805,-0.5684234,0.028289787,-0.10971388,0.66362923,-0.22998333,0.12073427,0.99263483,0.749579,1.2191787,0.16377266,1.4871119,0.3171438,-0.40777257,0.27786875,-0.0853116,-0.884146,0.38199493,0.4779218,-0.05970248,0.4284795,-0.15922552,-0.024440814,0.52593255,-0.64252764,0.26940665,-0.45408392,-0.16783307,0.05197721,-0.1254387,-0.2570173,-0.1441395,-0.10596228,0.04789178,0.030732136,0.1809659,0.015028023,0.42167953,0.170629,1.2846328,-0.33104345,0.07427667,0.19928874,0.28206453,0.21678162,-0.34217733,-0.060140334,-0.15056324,0.6193021,0.03798355,-0.7952163,-0.02781524,-0.2308959,-0.5706953,-0.37260753,-0.15234576,-0.021509789,-0.086839035,-0.52584434,-0.22314177,-0.10608873,-0.40469086,0.097601965,-1.9268303,-0.3337093,-0.49760845,0.24158181,-0.25992018,-0.2338641,-0.09871973,-0.54399747,0.47368556,0.5173492,0.24724272,-0.6364952,0.32470006,0.52797395,-0.4404866,0.10109794,-0.7493407,-0.18490204,0.00081356213,0.18579791,-0.018589642,-0.07401988,-0.020911392,0.2270024,0.35237756,-0.053530116,0.02631924,0.22808883,0.55007124,0.039298788,0.6378873,-0.046715073,0.6503586,-0.4575494,-0.17791043,0.5566057,-0.38288873,0.1527387,-0.051167443,0.24932194,0.46361732,-0.74611896,-0.7317107,-0.862428,-0.66999024,1.3743954,-0.014043822,-0.40615904,0.38149977,-0.26811308,-0.11426394,-0.12707011,0.62845176,-0.23396495,-0.098700054,-0.92785794,-0.03324348,-0.123962894,0.19771153,0.05779248,-0.16050608,-0.5154464,0.74821544,-0.097239465,0.4647647,0.47550693,0.22432512,-0.176678,-0.67186075,0.08561259,1.0022918,0.53698194,0.24344349,-0.31783772,-0.1526313,-0.67512894,0.010563337,0.037148036,0.2034994,0.88210577,0.02238958,0.07942811,0.30324337,0.113847,0.29014963,-0.11274132,-0.4048341,-0.14554149,-0.09215943,0.6357819,0.3421076,-0.040676996,0.22887316,-0.049510993,0.2365702,-0.17034888,-0.38658231,0.7581391,1.1685072,-0.2628271,-0.3652748,0.53282887,0.4532289,-0.3266803,0.48327684,-0.6748615,-0.34430158,0.4822161,-0.033096552,-0.43951124,0.17346828,-0.55606425,0.3187694,-1.1159093,0.41491556,-0.43809512,-0.27627102,-0.86004037,-0.06781749,-2.7165768,0.28954193,-0.25260073,-0.26414827,-0.46318465,-0.20487401,0.4791755,-0.4884901,-0.9300878,0.113118835,0.024287852,0.8787155,-0.00124297,0.10534386,-0.20568512,-0.23597339,-0.38823846,0.0185092,0.21694955,0.30794996,0.1401909,-0.39841035,-0.09724213,-0.378078,-0.40982294,-0.016208006,-0.49435553,-0.57099086,-0.4530051,-0.521532,-0.39456397,0.62566274,-0.31946552,0.11919836,-0.17258762,-0.1301634,-0.20557539,0.34909388,0.07790819,0.1578548,0.18471663,-0.14895226,-0.22723077,-0.22051542,-0.05059501,0.09549032,0.0012450493,0.18400982,-0.27586183,0.48845404,0.50253356,0.96396595,-0.21299484,0.8716446,0.68060344,-0.065457076,0.30748737,-0.35194346,-0.22480692,-0.55940044,-0.10191197,0.06256096,-0.3447221,-0.7498611,0.23577768,-0.21595861,-0.8019424,0.49680087,-0.015127329,0.17077821,0.114719145,-0.058634043,0.30338675,-0.07141583,-0.06495642,0.0038521243,-0.104872,-0.46985534,-0.45135644,-0.75631654,-0.51116985,-0.08857442,1.2728631,0.04836499,-0.09706437,0.18784975,-0.3687236,0.27832204,0.20447713,0.016819706,0.024585761,0.31300285,-0.005384107,-0.6800463,0.4018335,0.052642364,-0.1000758,-0.7084392,0.13887602,0.8077021,-0.4672634,0.34112746,0.30827338,-0.1483295,-0.17016572,-0.44272548,-0.0044552204,0.10168985,-0.29793766,0.31902027,0.24676313,-0.5209291,0.37091547,0.3153265,-0.08724214,-0.97634757,0.5277288,0.17578384,-0.067748114,0.041114215,0.3317248,-0.036756057,0.13048641,-0.30203703,0.34913555,-0.31578717,0.08888659,0.37924188,-0.13335766,0.14419377,-0.25309926,-0.1895017,-0.76801056,0.12298655,-0.6361183,-0.041863672,0.28208297,-0.064413026,0.16650066,0.11950864,0.22197448,0.34486505,-0.11700957,0.030726526,-0.1468653,-0.3593467,0.20370255,0.48243618,0.36206907,-0.50920635,0.7422911,-0.016584963,-0.16351381,0.08157405,0.09376837,0.41217571,0.1796853,0.38870987,0.20498034,-0.17112376,0.2765635,1.0019228,0.14395675,0.5412864,0.2159753,-0.20609204,0.25787014,0.37847933,0.1689832,-0.08795696,-0.4982817,-0.039479714,0.058831975,0.02087241,0.58475554,0.026844826,0.29299122,-0.117586866,-0.30911925,-0.031216644,0.023531996,-0.17548281,-1.4749107,0.3998887,0.15693368,0.80028564,0.6849571,-0.07231065,0.18967769,0.4727696,-0.17879762,0.12630829,0.33490494,0.003279466,-0.5331466,0.4709646,-0.5796621,0.27240595,-0.09928419,0.026501795,-0.030453386,0.12701881,0.5853003,0.70059454,-0.05274739,0.17944646,-0.16940607,-0.23450504,0.3555821,-0.34252164,-0.050755646,-0.33525902,-0.36811167,0.6086451,0.5090467,0.332593,-0.22080255,0.04441653,0.0013021025,-0.121138625,0.18391348,-0.12629256,0.010340007,0.05649082,-0.67499447,-0.12842968,0.51487345,0.15950471,0.18712543,0.047923453,-0.6764089,0.14517115,-0.08823586,0.0527722,-0.08515142,-0.8741842,-0.08976821,-0.5171724,-0.26355526,0.1465767,-0.27175155,0.2214531,0.38562918,0.06994884,-0.5073963,0.07767063,-0.22409089,0.74789727,-0.08088835,-0.16019355,-0.32685694,0.27920756,0.257206,-0.5322786,-0.07833673,-0.16057517,0.035320137,-0.54654336,0.45524582,0.043157678,-0.26161596,0.30525976,-0.14173485,-0.14600295,0.6011706,-0.400614,-0.05446263,0.25562182,-0.05276635,-0.13385913,-0.26102254,-0.14779039,0.27957025,0.073466934,0.25279588,-0.18857208,-0.012902285,0.0015238294,0.59599376,0.14083639,0.5152292,0.6346922,0.12840487,-0.7551301,-0.11715547,0.1699016,0.5498339,0.12547109,-0.37715954,-0.29804227,-0.4878054,-0.22677842,0.39640716,-0.15959874,0.38806766,0.2042875,-0.66421914,0.6131346,0.42030826,1.1651617,-0.041784685,-0.52689093,0.08141492,0.43508714,-0.08483602,-0.23882154,-0.42820695,0.6205776,0.4564606,-0.26186225,-0.15061554,-0.2886595,-0.07458922,0.113923125,-0.2897743,-0.020251594,-0.13309528,-0.7097247,-0.34180322,0.20795038,0.3304475,0.08270093,-0.1998119,0.19981688,0.119551465,-0.06081268,0.47332513,-0.4738674,-0.24497288,0.24934009,0.06962821,-0.010931705,0.04826272,-0.32375076,0.3591641,-0.70568305,0.011431511,-0.26166663,0.27545065,0.018058363,-0.25607646,0.22983608,0.011855226,0.41561353,-0.32205054,-0.34665698,-0.31774583,0.61111164,0.22643398,0.2851656,0.7295712,-0.3980417,0.1675556,0.16938064,0.80962753,1.1077392,-0.09024776,0.15995084,0.17136781,-0.358664,-0.42395276,0.4237677,-0.49037182,0.21485512,-0.019153507,-0.21574304,-0.6010396,0.20331922,0.30590528,-0.045935236,0.0898774,-0.7017547,-0.5022074,0.39717183,-0.2835218,-0.25986207,-0.43248302,0.03582057,0.36606127,-0.27686808,-0.28521198,0.09086644,0.40793875,-0.20863542,-0.50110394,-0.19976814,-0.20071451,0.44097614,0.1368445,-0.34374857,-0.110077135,0.06494988,-0.5349848,0.14732935,0.02292511,-0.43727323,-0.09655272,-0.2927536,-0.086207286,0.99764484,-0.22695354,0.037270658,-0.43865183,-0.46508682,-0.8900041,-0.28520992,0.6815084,0.27269956,0.10754386,-0.5707889,-0.08079657,-0.12761047,0.17583922,0.22013667,-0.24809936,0.43016693,0.16765915,0.7269039,-0.039315615,-0.5857759,0.20279314,0.12161834,-0.09533966,-0.4480073,0.505114,0.14577805,0.88357836,0.11124824,0.21513098,0.07005779,-0.6319481,0.078030504,-0.020651337,-0.24149033,-0.61462873,0.17791055 -421,0.36147222,-0.35028967,-0.46228337,-0.072776526,-0.0765855,0.24892731,-0.1755478,0.55909276,0.10223934,-0.5338808,-0.21737625,-0.1884361,0.06757313,0.6650375,-0.22310913,-0.40139404,-0.059348155,0.2154655,-0.69299674,0.5368156,-0.5152107,0.16980606,0.008884132,0.5675348,0.35075822,0.21959507,-0.027314106,-0.031823453,-0.48075727,-0.26281756,0.106505595,0.1839699,-0.41849998,0.17868944,-0.2885026,-0.35662904,-0.2556826,-0.6356163,-0.41853794,-0.82608026,0.30704924,-0.98909265,0.64216846,-0.0733156,-0.20609085,0.20228708,0.25382695,0.4767015,-0.18643558,0.0069456645,0.23873204,-0.06022605,-0.16251464,-0.20219499,-0.38146648,-0.30431458,-0.593701,0.10095542,-0.4724295,-0.15451808,-0.004705722,0.12486323,-0.14398123,0.039180394,-0.10707053,0.4288731,-0.47784853,0.11385697,0.114284426,0.1154573,0.3255086,-0.5257887,-0.29666817,-0.14537358,0.3768693,-0.26052058,-0.20383231,0.13919288,0.16112918,0.27153346,-0.20783634,-0.013150022,-0.29784873,0.03054261,0.26184577,0.53337365,-0.19909115,-0.59707415,-0.10887734,-0.023440802,0.3596836,0.2396702,0.24832587,-0.26854554,-0.010379334,-0.06501174,-0.20967591,0.45849028,0.47299588,-0.14007069,-0.22920232,0.38693252,0.49235925,0.2954757,-0.16834418,-0.10718878,-0.00425715,-0.55439687,-0.034924123,0.3331661,-0.09574619,0.5010442,-0.08178104,0.3030347,0.562938,-0.25101322,0.07237146,0.058806077,0.10651513,-0.11546894,-0.061407432,-0.40582845,0.1280325,-0.3124986,0.12031594,-0.24217278,0.6191212,0.18630265,-0.8054554,0.33298197,-0.5417481,-0.058315944,0.02799653,0.41806534,0.6713354,0.45327398,0.23952639,0.46354046,-0.1504973,-0.012744069,-0.20106815,-0.2552292,-0.13232583,-0.25727955,0.012379408,-0.5165415,-0.026148587,0.045330476,-0.3277462,0.018039228,0.635542,-0.47210607,-0.092708535,-0.05467224,0.7227728,-0.2680046,-0.11146625,1.0583817,0.9900444,0.9054148,0.14340247,1.2234498,0.2931252,-0.23800516,0.207388,-0.34619534,-0.64319915,0.35595682,0.30405614,-0.60711044,0.46876073,-0.04600802,0.06864434,0.24428236,-0.38536093,0.1828195,-0.16545452,0.0016308824,0.030581782,-0.072362065,-0.33987585,-0.40821347,-0.22412162,-0.06819786,0.23469321,0.24083018,-0.30227327,0.47003937,-0.002487858,1.7234708,-0.11876628,0.02558245,-0.11642515,0.51368976,-0.014232379,-0.22929372,-0.28188023,0.19292684,0.49131474,0.03230693,-0.5455,0.07313036,-0.09174443,-0.3962622,-0.1991332,-0.3383443,-0.11748961,-0.15944384,-0.4339927,-0.12798332,-0.14000623,-0.39885616,0.32012662,-2.6516972,-0.18234836,-0.07109717,0.3794277,-0.3122525,-0.44943753,-0.28053156,-0.46982273,0.44081393,0.16514748,0.42873988,-0.56213874,0.50408727,0.26197934,-0.5681339,-0.2235089,-0.6678533,-0.11408798,0.04027294,0.3452411,-0.1835335,0.14891173,0.24856551,0.07822461,0.3782272,-0.11323918,0.119463764,0.3558227,0.46701947,0.17974757,0.5148606,-0.1696306,0.5899193,-0.37288466,-0.15902565,0.3318213,-0.41236028,0.28919455,-0.12107196,0.18448426,0.45109335,-0.61521524,-0.87600213,-0.7996175,-0.3170924,1.2201116,-0.11941895,-0.3041562,0.10023334,-0.4648719,-0.37213853,-0.10597962,0.7234389,-0.12062863,-0.08166466,-0.75490874,-0.25543702,-0.060937632,0.23008795,-0.10505625,0.11726108,-0.48015133,0.35832608,-0.033884887,0.41549048,0.21277992,0.11680422,-0.35625562,-0.41633388,0.08884629,1.0068884,0.24861908,0.18866406,-0.08049906,-0.2728101,-0.52171034,0.015411426,-0.014589992,0.6520128,0.52696913,0.060935408,0.17252322,0.20102002,-0.09031976,0.23626797,-0.18291272,-0.28051147,-0.28634915,0.13171734,0.55094886,0.37511697,-0.0964321,0.8846963,-0.21773611,0.2919507,-0.27737883,-0.33132392,0.4417889,0.9486838,-0.19290869,-0.20507504,0.6943818,0.5315754,-0.36117497,0.43536067,-0.53276527,-0.38033947,0.38253883,-0.18156068,-0.38491395,0.3561319,-0.2247278,0.22148268,-1.0113505,0.2802724,-0.39478564,-0.4873464,-0.52401274,0.030244233,-2.6165564,0.16933203,0.0329481,-0.3882521,-0.16143586,-0.4042158,0.05301583,-0.5228961,-0.645189,0.167924,-0.020271989,0.7956133,-0.017852884,0.06404875,-0.23550205,-0.32517195,-0.20242687,0.09046644,0.15616387,0.58070546,-0.1982119,-0.49706396,-0.085865915,-0.32714757,-0.20904438,-0.012689586,-0.69177073,-0.52618635,-0.17182195,-0.54012316,-0.23851436,0.7431006,-0.31300303,-0.013690156,-0.19520533,-0.007299622,-0.14499031,0.4051591,-0.033578087,0.26909283,0.2882186,-0.24181515,0.117488,-0.15992047,0.2270034,0.16760947,0.21533884,0.4188086,-0.07224175,0.5413716,0.3903943,0.665085,-0.08482923,0.9571251,0.4876287,-0.16505705,0.22429311,-0.39678803,-0.17361589,-0.49563327,-0.14922711,0.049023822,-0.41635668,-0.6534867,-0.21540032,-0.33188593,-0.80715275,0.63549584,-0.040381588,0.14150411,-0.017023025,0.29693598,0.49666408,-0.13403334,0.09189424,-0.12441939,-0.050225765,-0.49375084,-0.2958052,-0.5416338,-0.37183383,-0.029414216,1.2033798,-0.030265436,0.13363114,0.11802036,-0.4145267,0.0901075,0.13185026,-0.07918519,0.01068301,0.31333938,-0.16904522,-0.62013704,0.35759518,-0.18676978,-0.17567773,-0.42459312,0.2700888,0.7967413,-0.56883854,0.59143895,0.39283165,-0.06460012,-0.31966665,-0.29829696,-0.14344364,0.009051929,-0.101849504,0.24931103,0.25444964,-0.6868897,0.37200046,0.34119055,-0.1826138,-0.8525017,0.55859095,0.013131182,-0.16568424,-0.048134733,0.37019798,0.20743747,0.05839849,-0.4955325,0.2563805,-0.4243208,0.32793555,0.23947053,0.0020869772,0.1561345,-0.2107348,-0.1495605,-0.83741635,0.22573519,-0.5176321,-0.32864356,0.368793,0.045367558,0.2953173,0.34211743,0.15882954,0.30839005,-0.49896303,0.028120646,-0.088257484,-0.22566342,0.092438616,0.3771639,0.45989183,-0.44440722,0.6079463,0.061862785,-0.093325086,0.017961195,0.046420053,0.42397705,0.14340156,0.400254,0.054898053,-0.41833082,0.28095075,0.8365826,0.30954158,0.39887825,0.0783967,-0.20813228,0.094231986,0.08104228,0.32327297,0.07210624,-0.49528828,-0.059634898,-0.11318431,0.113342844,0.3897008,0.06697155,0.284096,-0.04362753,-0.42048398,-0.033844028,0.13509433,-0.037122194,-1.3141135,0.41217938,0.06232362,0.74226624,0.4594265,-0.0024304714,0.05462794,0.61140203,-0.21380068,0.09836569,0.4138259,-0.085578345,-0.61797553,0.60999423,-0.7129157,0.5648691,-0.0034100327,0.061591774,-0.039227765,-0.1159828,0.5246349,0.8713452,-0.042639542,0.13120829,0.15180512,-0.2631711,0.17486703,-0.42271423,-0.0018315626,-0.69879436,-0.28829876,0.6863478,0.40735427,0.4998692,-0.0778774,0.046650544,0.10309234,-0.115407825,0.14794387,0.15176135,0.29182348,0.08806858,-0.8042528,-0.0695431,0.5047156,-0.029217025,0.1490503,0.15250298,-0.34536973,0.3267069,-0.19452988,0.019820148,-0.057768982,-0.8418923,-0.08518051,-0.5914832,-0.45729044,0.10892651,-0.173582,0.16436766,0.30692348,0.02143875,-0.2367162,0.4877883,0.2239006,0.8456035,-0.07695109,-0.27955464,-0.19490308,0.35682333,0.3397119,-0.2572968,-0.06666678,-0.16512902,-0.024801603,-0.5963433,0.42338133,0.023243926,-0.45793784,-0.06657078,0.020306163,0.10753638,0.6102889,-0.08956462,-0.039618988,-0.028495127,-0.334916,-0.27873728,-0.17422058,-0.13789578,0.24826832,0.42999735,-0.052923393,-0.11485674,0.07348907,-0.05598901,0.43126592,-0.08528378,0.56181175,0.5981313,0.25928542,-0.17259717,-0.15680705,0.11292878,0.5598256,0.03775306,-0.16281347,-0.3991412,-0.23529935,-0.32333592,0.39773098,-0.086162664,0.4375945,0.15183316,-0.32025546,0.5396289,-0.13424735,0.93803406,0.045300215,-0.3469925,0.14589624,0.3363441,-0.030574663,-0.16746758,-0.42062807,0.86219674,0.35139504,0.0033434331,0.022649286,-0.42548797,-0.16157383,0.25895542,-0.2769291,-0.26343942,0.0053297975,-0.51212496,-0.28111526,0.23589264,0.18149734,0.23800832,-0.1451693,0.3784156,0.19943862,0.07036758,0.16943836,-0.52288204,-0.08249289,0.4849856,0.37202105,0.028946325,-0.011118789,-0.4639224,0.28939387,-0.52309644,0.04012795,-0.11492163,0.17654686,-0.14556392,-0.40048194,0.2392615,0.25393242,0.35780036,-0.33448777,-0.39780465,-0.35328278,0.55248195,0.18342185,0.12792401,0.45711198,-0.31141332,0.08321486,0.082837105,0.59730333,0.9347866,-0.16395463,0.082315505,0.43065393,-0.37839222,-0.6643949,0.4194484,-0.3154485,0.35666633,0.02688774,-0.12053167,-0.59699565,0.31408677,0.3704879,0.084472,-0.13009435,-0.3652879,-0.19408311,0.39691177,-0.22841424,-0.25519246,-0.45840153,0.052126188,0.46622673,-0.27488202,-0.34070864,0.09348485,0.25788617,-0.3461,-0.31680703,-0.16437665,-0.30734387,0.27573493,-0.13049866,-0.4172682,-0.3003627,-0.20647116,-0.41390717,0.21622084,-0.0070452243,-0.43775022,0.055215564,-0.29041734,-0.21426387,0.95658296,-0.35948744,0.019222012,-0.29691067,-0.5009979,-0.7173676,-0.37010908,0.12613277,0.13619865,-0.12269289,-0.57929677,0.14228702,-0.1651472,-0.32876694,0.10413747,-0.36670926,0.34670186,0.07622239,0.36041972,-0.06693222,-0.76557165,0.36068392,0.14406013,-0.21038824,-0.60496277,0.47199082,-0.034650028,0.8978706,0.033991236,0.15316005,0.3355504,-0.4256055,-0.1737554,-0.00978089,0.013202999,-0.8120989,0.18314576 -422,0.48803526,-0.275356,-0.35190195,-0.038852457,-0.09993102,0.29836157,-0.19579948,0.4667609,0.09770955,-0.28728446,0.10543706,-0.050861895,0.05291864,0.46653196,-0.10957967,-0.38149998,-0.22567381,0.036705766,-0.57179147,0.8089697,-0.25273472,0.19979021,-0.19533612,0.4918108,0.21124892,0.32688975,-0.033866253,0.0669197,-0.09961874,-0.016594289,0.08650063,0.10198606,-0.76109356,0.016977033,-0.2590484,-0.1925423,-0.12647322,-0.36250582,-0.42950276,-0.8204897,0.48367548,-0.84026676,0.80213886,-0.008007535,-0.18254396,0.48851374,0.29153794,0.26354071,-0.2536495,-0.13596341,0.09095667,-0.09356097,0.07312933,-0.23824976,-0.27343908,-0.41781813,-0.6287252,0.009831854,-0.50420946,-0.102654085,-0.2543618,0.14933889,-0.25717214,-0.0805143,-0.13767181,0.37432715,-0.5866736,0.1289976,0.16382237,-0.030452013,0.18286209,-0.6453303,-0.20538683,-0.16509488,0.38737893,-0.134869,0.020235592,0.35624272,0.06111776,0.3357965,-0.056842368,-0.08628961,-0.45160356,-0.19546525,0.004245526,0.43634892,-0.18752834,-0.56078804,-0.09355213,-0.03611308,0.18520345,0.10631316,0.16163956,0.06408094,0.0065287477,-0.11943662,-0.14237085,0.6540347,0.5038363,-0.2560149,-0.5518887,0.34962568,0.6225554,0.33006337,-0.17845607,-0.0763496,-0.012474194,-0.47252512,-0.16379483,0.26794133,-0.11427467,0.4811732,0.025034394,0.191762,0.58229816,-0.30976272,0.07245384,-0.1218433,-0.032084584,-0.010741294,-0.13322154,-0.29492992,0.16901521,-0.3340278,0.34040293,-0.318759,0.5713952,0.18081668,-0.6655176,0.43799525,-0.5963666,0.103154644,0.2151586,0.42717162,0.65668136,0.6165007,0.19700027,0.5969877,-0.12876897,0.06290444,-0.15249808,-0.04057732,-0.018410001,-0.30741692,0.038974915,-0.38494954,0.20985666,0.009632627,-0.23268504,-0.093211465,0.53265244,-0.5345656,-0.08904052,0.05885021,0.9514249,-0.21507004,-0.050507586,0.88237846,0.98568827,1.0807588,0.010154643,1.0076479,0.24855237,-0.26885888,0.1969689,-0.46829328,-0.745423,0.22151871,0.24906988,-0.07370348,0.6579185,0.023141623,-0.03744324,0.223936,-0.43222818,-0.0041908408,-0.18681593,0.13056388,0.2625601,-0.0012788262,-0.2957297,-0.35276583,-0.06279864,-0.06049794,0.32538062,0.2668387,-0.27532652,0.42785883,0.08985416,1.7341765,-0.03222939,0.18230216,0.14331453,0.7692326,0.15951394,0.013569428,-0.09386654,0.4871022,0.3958287,0.22955108,-0.5704878,0.2753366,-0.33624655,-0.51710385,-0.034823824,-0.5075082,-0.16405039,-0.10639221,-0.3134897,-0.24033312,-0.15396579,-0.1659523,0.26697716,-2.780316,-0.048808984,0.05094275,0.4074173,-0.40181535,-0.25308552,-0.22509328,-0.48468757,0.37170935,0.2544094,0.35032937,-0.576572,0.4745646,0.36487192,-0.57281625,-0.063632265,-0.48051253,-0.16905595,-0.05358594,0.5294935,-0.13558885,0.049189754,0.2252318,0.32068482,0.48945612,0.06628381,0.053337425,0.29882982,0.49127752,-0.088330634,0.46358243,-0.16395679,0.3130156,-0.37515283,-0.12845673,0.36303598,-0.4634392,0.27548954,-0.2402494,0.11640591,0.40396675,-0.530807,-0.9955905,-0.62118053,0.08531396,1.0719388,-0.22873987,-0.49885002,0.104120255,-0.5185841,-0.09865444,-0.23637106,0.6548773,-0.22992387,-0.032610383,-0.6848207,-0.12648141,-0.17638287,0.30680385,0.102542825,0.31752592,-0.5151321,0.7233017,-0.05149347,0.4913176,0.06534237,0.19365014,-0.34159857,-0.4947715,0.1263547,0.6509126,0.2792906,0.026880225,-0.2133384,-0.34949446,-0.21537177,-0.04279509,-0.0036984682,0.6824275,0.3975388,0.03892991,0.054221444,0.2792186,-0.26843172,0.2626236,-0.3075994,-0.25164056,-0.23515598,-0.05682716,0.53688055,0.5279399,-0.20112456,0.40237978,-0.06079853,0.34520307,-0.2137054,-0.32867804,0.39450374,1.0275589,-0.17532344,-0.13697301,0.60546035,0.64225256,-0.30234247,0.4286799,-0.69433075,-0.26911953,0.5464705,-0.2973841,-0.4216331,0.2156693,-0.16873321,-0.029452965,-0.8353272,0.11881452,-0.40894917,-0.22078142,-0.56709856,-0.04672418,-3.1814027,0.043794017,-0.08208908,-0.2608527,-0.21950047,-0.1909864,0.12727578,-0.66705424,-0.6656617,0.12792324,0.11101854,0.7154317,-0.17662077,0.12008651,-0.26355058,-0.41788298,-0.4530378,0.23690851,0.22381108,0.47442034,-0.22917387,-0.35346267,-0.027569976,-0.12667163,-0.45595428,-0.0438264,-0.34809965,-0.20284685,-0.18029845,-0.56022155,-0.23725145,0.64006644,-0.19119331,0.009835799,-0.3185815,-0.07239436,0.005425036,0.39614472,0.103700034,0.2570105,0.26490957,-0.28389427,0.15451156,-0.2672927,0.39769608,0.013880354,0.24659704,0.32781643,-0.28527254,0.2090887,0.46646598,0.68313694,-0.019562343,0.8800832,0.4133763,-0.2036442,0.44211754,-0.37116805,-0.19913468,-0.6256402,-0.26334682,0.15499173,-0.26894787,-0.56476396,-0.26707926,-0.390896,-0.7785883,0.4997322,-0.22927181,0.30939704,-0.07079079,0.410641,0.5411151,-0.28628168,0.14554095,-0.002684887,-0.07905109,-0.4579065,-0.15228784,-0.45320204,-0.50703233,-0.038115773,0.8372982,-0.15649104,-0.0815475,0.048439562,-0.35753566,0.078118965,0.13778612,0.04707078,0.15459251,0.44854045,-0.13725218,-0.53137267,0.5062472,-0.14750113,-0.20123275,-0.4618177,0.27423304,0.46949443,-0.6530263,0.5177943,0.30904302,0.063616715,-0.39870936,-0.55168986,-0.056189425,0.0786242,-0.02839927,0.17468552,0.1832566,-0.75890297,0.31186494,0.15782166,-0.3271223,-0.74901885,0.6382128,0.01548455,-0.4082283,-0.054800034,0.4057683,0.13069002,0.0050554615,-0.33713886,0.2734945,-0.5117283,0.13940278,0.028297368,0.0008667537,0.29838613,-0.12974034,-0.1795794,-0.756178,0.2891956,-0.4910232,-0.39698607,0.524845,0.19781365,0.010715208,0.1636437,0.09653983,0.46794388,-0.21501009,0.12714069,-0.11188483,-0.25796962,0.38853928,0.36705837,0.48956823,-0.5695868,0.61383694,-0.0701718,-0.1073113,0.18590626,0.066907115,0.41633382,-0.08151679,0.4705317,0.22197826,-0.246896,0.1966565,0.6336876,0.26738885,0.40756986,0.049194477,-0.26752704,0.28187412,0.054029506,0.09143048,0.005382214,-0.45582086,0.023737554,-0.0024971557,0.04478589,0.49005747,0.115686946,0.20058759,-0.15427086,-0.25666302,-0.01776385,0.3138607,-0.2413671,-1.1708087,0.1960263,0.07094621,0.928292,0.5157298,-0.022437086,0.15710711,0.6550441,-0.16900866,0.0417799,0.45170793,0.23457643,-0.608389,0.61086494,-0.5799716,0.51529473,0.005578088,-0.09500701,0.09182258,0.043517265,0.46289402,0.7759555,-0.17589186,-0.07579684,0.015157102,-0.22822773,0.20884669,-0.36708575,0.19763856,-0.4929857,-0.20074601,0.5792802,0.46132162,0.45833638,-0.09253546,0.008708437,-0.021437477,-0.15962103,0.35293594,0.06710435,0.14878769,-0.107592575,-0.7301674,-0.16067235,0.5856128,-0.19591309,0.0840566,-0.0023438972,-0.3289215,0.28531665,-0.2060405,0.015241095,-0.046595413,-0.82475036,0.14858712,-0.24396488,-0.34172317,0.47461972,-0.109338276,0.28301445,0.28009948,0.004910086,-0.41281524,0.1865276,0.10432314,0.62770563,-0.04016419,-0.2004932,-0.5208643,0.0615863,0.20895854,-0.33338594,0.10827153,-0.034614928,0.08133624,-0.43173236,0.4173197,-0.06970885,-0.36305103,-0.20225546,-0.1434696,0.12335084,0.7094494,-0.09395925,-0.07107345,-0.23564592,-0.19172096,-0.2898768,-0.21376733,-0.14042373,0.14222762,0.2708524,-0.12678018,-0.1616937,-0.031105667,-0.115892984,0.6213398,0.11149181,0.4235289,0.47975513,0.23708834,-0.27927262,-0.0007741622,0.20613411,0.5119666,0.0023726565,-0.1135131,-0.48613718,-0.41332576,-0.34027752,0.5614506,-0.14068247,0.21766078,0.12959789,-0.34883627,0.8160714,-0.051936906,1.0106288,0.06982335,-0.381327,0.26770094,0.6826928,-0.062456913,-0.14917724,-0.6275717,1.0412077,0.48023817,-0.09319741,-0.07399974,-0.1303223,-0.09242435,0.10408329,-0.3403791,-0.13251686,-0.10699083,-0.58040756,-0.1543971,0.20483677,0.26678714,0.1489532,-0.17381987,-0.022544865,0.16237238,0.07440383,0.3572742,-0.4151704,-0.19848537,0.5045767,0.032154977,0.14849196,0.09954219,-0.34046537,0.27224487,-0.43112653,0.14639293,-0.36369988,0.18115386,-0.19556251,-0.37070227,0.30340335,0.06431528,0.3953523,-0.33143035,-0.4862779,-0.2436816,0.33442876,0.19848405,0.1808431,0.4783679,-0.2717629,0.15566148,0.031074833,0.5322277,0.84745824,-0.13123752,-0.045726426,0.1487982,-0.43282494,-0.79460174,0.32511896,-0.36910948,0.290227,-0.07845278,-0.0017323217,-0.4907042,0.24978428,0.1862584,-0.12554142,-0.094841205,-0.7560924,-0.42322785,0.14124645,-0.27481326,-0.17789292,-0.38515943,0.03351814,0.80156404,-0.27419737,-0.3443749,0.076322995,0.20918392,-0.12574497,-0.65469295,-0.073769234,-0.40126732,0.25817078,-0.022725407,-0.2516697,-0.1987551,0.120135084,-0.5185973,0.19996145,0.08826111,-0.38355398,-0.11349627,-0.3788331,0.015067009,0.9469643,-0.2881828,-0.10703581,-0.36828607,-0.49102113,-1.0139692,-0.3408982,0.18248634,0.1478348,0.042630352,-0.68354654,0.08210137,-0.16535392,-0.19723992,0.028632984,-0.4721512,0.26155514,0.09576897,0.39033198,-0.22514309,-0.6627054,0.32188097,0.08465792,-0.11347612,-0.5930975,0.521262,-0.09352287,0.8455184,0.01675388,0.10198307,0.21928863,-0.5345654,-0.15681846,-0.0819158,0.0036873263,-0.67283183,0.26782647 -423,0.17450686,-0.3215367,-0.23146237,-0.1093061,-0.26150414,0.26480034,-0.3029692,0.36652955,0.13357067,-0.5760895,-0.25155082,-0.27431324,0.13692135,0.63099337,-0.13202439,-0.6163279,0.06959368,0.10688821,-0.492023,0.44421047,-0.5217449,0.45039812,0.20660591,0.28736213,-0.059265703,0.17875536,0.37440988,-0.1331115,0.07365471,-0.30491823,-0.15333983,0.24343614,-0.5422788,0.31108046,-0.11757109,-0.51060784,0.23636536,-0.5824417,-0.27113977,-0.6858142,0.22607468,-0.8694658,0.6317944,-0.038102753,-0.040527552,0.20519061,0.20277123,0.38079765,-0.07243767,0.12604472,0.11072507,-0.15127836,-0.2631093,-0.066593125,-0.22181252,-0.4969624,-0.58832854,0.07946729,-0.4922426,-0.28351766,-0.13676035,0.15358898,-0.21327087,0.2196655,-0.14418535,0.27232677,-0.36939612,-0.103866674,0.36548916,-0.26523915,0.14583215,-0.5756606,-0.12458937,-0.053820055,0.39461032,-0.2999998,0.017925696,0.13987368,0.3605245,0.6201275,0.1117092,-0.21682313,-0.30472523,-0.17106536,0.031174025,0.7182098,-0.06465888,-0.5097851,-0.23251216,-0.048545156,0.19676927,0.1905925,0.17205824,-0.22649513,-0.103144825,-0.025400281,-0.3235469,0.32692358,0.333901,-0.50993246,-0.5048403,0.25618,0.6762633,0.09746911,0.043194972,0.029585311,0.10287325,-0.5541935,-0.10386997,0.13768753,-0.11610566,0.46469876,-0.14833894,0.41661957,0.64101034,-0.07177256,0.058774106,-0.12532409,-0.20487969,-0.3324189,-0.16416833,-0.18997996,0.22357742,-0.38133842,0.044468444,-0.32236502,0.9429664,0.13663307,-0.5779472,0.38591933,-0.5645444,0.037952032,0.06336967,0.5924922,0.649376,0.28627226,0.1611376,0.49209502,-0.3915686,0.0060060746,-0.3603735,-0.32267937,-0.15274069,0.0009897436,0.103117265,-0.37007594,0.16677652,0.00941429,0.10910934,0.07996808,0.46273014,-0.59502256,-0.015267645,0.12840493,0.88498324,-0.3213567,-0.18887106,0.87957084,0.94258803,0.8296442,0.03384297,1.4037564,0.32208186,-0.14669213,-0.027309602,-0.33157334,-0.51740295,0.19702442,0.52023274,0.13024853,0.32093,0.11049873,-0.04123809,0.6259493,-0.3561242,-0.02768018,-0.14647171,0.06579482,0.100817814,-0.10833268,-0.54677373,-0.15522416,0.0922444,-0.04984365,0.50547594,0.25196424,-0.15849778,0.4568694,0.03523395,1.6113132,-0.14097434,0.236976,0.0135750575,0.2922983,0.22214384,-0.030239698,0.021092827,0.1291293,0.40514305,-0.080983795,-0.66789776,0.12854739,-0.13632941,-0.5031573,-0.32117683,-0.16185501,-0.20705445,0.017460538,-0.41392916,-0.011008016,-0.08646778,-0.1738619,0.42418644,-2.64875,-0.31667137,-0.24736242,0.27032727,-0.33276513,-0.45658556,0.008092955,-0.5189938,0.6201319,0.3739802,0.42978913,-0.5450265,0.55896705,0.50018233,-0.49287412,-0.26734415,-0.67040443,0.021477597,-0.08765496,0.30189925,0.11455909,-0.2831519,-0.05948656,0.14881788,0.576094,-0.084611736,0.07766138,0.17700407,0.46364778,0.15380494,0.5464991,0.018188324,0.6475112,-0.31555787,-0.25302845,0.4051268,-0.2792676,0.34445506,-0.29862112,0.14069577,0.35829896,-0.24554984,-0.8120912,-0.78167075,-0.6683046,0.9347786,-0.08490475,-0.3873101,0.15736888,0.051930554,-0.22100125,-0.06347729,0.48920673,-0.29646578,-0.05573821,-0.75157374,0.08166443,-0.11106078,0.2956678,-0.04832266,-0.059604533,-0.69434303,0.63496196,-0.13354206,0.4046684,0.35694915,0.293505,-0.28847334,-0.30816394,0.018567953,0.96562153,0.38584214,0.124653734,-0.14495994,-0.35406017,-0.25722274,-0.15586363,-0.11091669,0.61572725,0.6110595,0.12607212,0.02878545,0.29755583,0.003954717,0.12280936,-0.14027603,-0.1908083,-0.022011185,0.08363377,0.6453921,0.4323639,-0.18322925,0.43494654,-0.27199706,0.46464723,-0.2520052,-0.46804348,0.5883406,0.6851962,-0.21851103,-0.11735307,0.70064014,0.46439764,-0.17839466,0.28911307,-0.794969,-0.3206084,0.4075219,-0.18665262,-0.46675247,0.13519272,-0.09648828,0.06974346,-0.99014616,0.15689568,-0.32197165,-0.366523,-0.6411319,-0.19133177,-3.9692307,0.14561664,-0.11587562,-0.11979196,-0.08856209,-0.2641801,0.12287271,-0.57938385,-0.4825146,0.27953306,0.025413213,0.513558,-0.0013436835,0.19486694,-0.36404043,-0.18503262,-0.076772414,0.20768584,0.042928156,0.24011335,-0.04800402,-0.3998582,0.27348152,-0.22198136,-0.5895559,0.13234709,-0.7536889,-0.3420598,-0.28625575,-0.5497028,-0.21450898,0.69223934,-0.4241991,0.13433237,-0.27322772,0.13989545,-0.2508285,0.45311883,-0.0023013353,0.1145869,0.16410144,-0.11123622,-0.010159408,-0.34498987,0.43497974,0.11338342,0.14951739,0.3964804,-0.13862668,0.17737392,0.3295452,0.56826895,0.045912843,0.73044294,0.41691118,-0.11041236,0.38430968,-0.24818571,-0.28043488,-0.4073533,-0.36078352,0.07494485,-0.38053554,-0.65638924,-0.25754127,-0.27840582,-0.781931,0.5781104,0.1882409,-0.17267905,-0.15137707,0.25057805,0.39550108,-0.39183745,-0.022345887,0.019015511,-0.04292488,-0.5038108,-0.4709713,-0.5385206,-0.5122346,-0.08538556,0.90791035,-0.06786333,0.040824283,-0.008073858,-0.10828079,-0.023117809,0.2537177,0.26696655,0.11826155,0.41973883,-0.23321724,-0.6359846,0.63507235,-0.23086299,-0.52464724,-0.58670574,0.15896378,0.6364145,-0.6654271,0.5897784,0.44707564,0.07624163,-0.15662548,-0.3632087,-0.14171429,0.1880859,-0.27232844,0.30436006,0.16390316,-0.7221082,0.57993,0.38155314,-0.16516478,-0.7667154,0.47880435,-0.017170131,-0.2900353,0.031047668,0.34857896,0.27192792,0.15887877,-0.25059995,0.013417006,-0.49153313,0.16395353,0.08207368,0.011785588,0.7452058,-0.4087263,-0.0857914,-0.81236523,-0.063515976,-0.4609786,-0.15843986,0.041591186,0.0021164545,0.094152756,0.32746193,-0.0820359,0.46367216,-0.41659683,0.15667917,0.003820679,-0.18635042,0.056373987,0.4079681,0.24916694,-0.35635558,0.56119156,0.03439465,-0.093738794,-0.08918439,0.019297361,0.505665,0.1401669,0.41840822,-0.33651093,-0.16719493,0.32929987,1.0116872,0.06524175,0.35736564,0.123816766,-0.15660265,0.28020713,-0.037036676,0.024980443,-0.003602228,-0.5392687,-0.032324374,-0.10082921,0.04203844,0.56491166,0.22657715,0.48521465,-0.05956555,-0.41817483,0.05376563,0.12055659,0.077733524,-1.0768858,0.110863246,0.17203477,0.8780119,0.2902221,0.029509654,0.12391822,0.5593647,-0.35702276,0.07492687,0.15409632,-0.037673082,-0.36481762,0.6682654,-0.59859246,0.41469225,-0.0947836,-0.052757483,0.0051511205,-0.22157037,0.33767456,0.8724564,-0.15227413,0.088228464,-0.0714064,-0.109226905,0.038117208,-0.3215027,0.16523328,-0.38512024,-0.23310542,0.74227524,0.56027925,0.51024634,-0.19466053,-0.06205738,0.2879345,-0.06978581,-0.0034796128,-0.019233465,0.19850731,0.01115541,-0.5230819,-0.21144918,0.6416216,0.12743755,0.24035752,-0.0273004,-0.46479088,0.33533984,-0.029429352,-0.054209154,-0.062603034,-0.76276875,-0.007595586,-0.3738239,-0.50360173,0.3303886,-0.07721293,0.08148186,0.11309111,-0.0043114848,-0.26121324,0.4323837,0.14364685,0.8604945,0.31717187,-0.05249834,-0.37840584,-0.026006013,0.22141278,-0.34612226,-0.033119135,-0.26269153,0.1579567,-0.7479083,0.391843,-0.013604641,-0.26989213,0.21149406,-0.16362545,0.033225738,0.48278075,-0.052416228,-0.08748401,0.27156106,-0.34476417,-0.19750714,-0.1983585,-0.16187096,0.29977673,0.14006975,0.17619897,-0.017867966,-0.21080852,-0.4266982,0.5471727,0.16856553,0.16444115,0.3818748,0.134218,-0.24132085,0.011260362,-0.04464885,0.4730899,-0.23415148,-0.1515424,-0.22622347,-0.53088665,-0.3259289,0.27087834,-0.039291166,0.2438642,0.009822324,-0.28097695,0.65937096,0.0047761714,1.0027747,0.15218432,-0.49760434,0.122090645,0.4498008,0.027927687,0.032395426,-0.42061177,1.0304672,0.41202635,0.054189008,-0.13354717,-0.3854055,0.043237936,0.20367728,-0.24438055,-0.14784253,-0.21488857,-0.7631267,-0.28183585,0.19997308,0.31887075,0.10352332,-0.05071176,0.14415905,0.2570021,0.09267426,0.52832264,-0.71744496,-0.08856384,0.42508665,0.3542646,-0.05313899,0.03456038,-0.42949706,0.50360614,-0.55399126,0.1260715,-0.5482796,0.1347014,-0.32200438,-0.051934667,0.2100269,0.059792865,0.3034699,-0.30706105,-0.45071214,-0.093070924,0.4173587,0.18907571,0.05381904,0.7594968,-0.13886294,-0.08086334,-0.06592203,0.6927709,1.2125558,-0.5119753,0.051608827,0.45171443,-0.3416086,-0.44437608,0.2627904,-0.2854376,0.03727588,0.082834825,-0.23484854,-0.37902212,0.27195656,0.11495775,0.023380103,0.09293378,-0.352803,-0.09045548,0.34630826,-0.4062038,-0.22433321,-0.25531742,0.35596296,0.82777214,-0.15378727,-0.2768391,0.08138519,0.44192547,-0.37356868,-0.63044745,-0.11060302,-0.22869632,0.41523427,0.14915879,-0.27224967,-0.26709023,0.05256788,-0.3885041,-0.076521985,0.27394503,-0.36499643,0.115002,-0.42165485,-0.015683489,0.8726725,-0.0716542,0.21985865,-0.8523143,-0.34418252,-0.88355356,-0.43014625,0.5655098,0.2379932,-0.11682507,-0.39016205,0.015400307,-0.11759029,-0.16658977,0.039312597,-0.34463933,0.30102667,0.20489776,0.4953905,-0.1484975,-0.6589981,-0.016832232,0.040842097,-0.2164872,-0.39178547,0.47347063,0.06602046,0.8683906,0.04235202,-0.029261377,0.28321356,-0.47815588,0.115951546,-0.3166781,-0.09104635,-1.0542707,0.0860079 -424,0.39630306,-0.018253805,-0.40479007,-0.24491388,-0.32377306,0.044087667,-0.04304913,0.24412547,0.40460846,-0.34110063,-0.020516817,-0.12159344,-0.054688156,0.25859916,-0.050124187,-0.695874,0.023444887,0.11865546,-0.7429116,0.42094472,-0.42816338,0.42384127,0.11432659,0.28158957,0.0459857,0.19469574,0.035061084,-0.05719238,-0.09524098,-0.14309913,-0.075751506,0.15335807,-0.7521449,0.20601335,0.024090687,-0.2325899,-0.07452585,-0.32562,-0.3036641,-0.71027046,0.33721587,-0.86281747,0.72081065,-0.09058372,-0.44326767,0.15255481,-0.0070475433,0.3327615,-0.27023947,0.112749845,0.1657088,-0.17312127,-0.017309513,-0.06973385,-0.24272805,-0.42246026,-0.54140514,-0.0688916,-0.5342331,-0.21491726,-0.21216121,0.09388613,-0.3212032,-0.0069362842,-0.33505934,0.59777075,-0.30289915,0.17616533,0.33196527,-0.0745375,0.32725284,-0.5365897,-0.1210234,-0.099043556,0.24579018,0.0012864516,-0.40973324,0.22955292,0.45527446,0.60138994,0.12950668,-0.2760054,-0.013875102,-0.0005044662,0.22335275,0.26791736,-0.12548737,-0.15783618,-0.19861962,0.006562545,0.34378022,0.25339985,0.15229186,-0.4572215,0.16868351,0.2002435,-0.111772224,0.38252783,0.4170317,-0.21018857,-0.34156746,0.4345654,0.461455,0.08413121,-0.022504646,0.3116728,-0.044370174,-0.5111571,-0.27629867,0.23269114,-0.23905778,0.3955683,-0.159988,0.019095797,0.8298267,-0.10359387,0.11722593,-0.09134357,-0.24007362,0.08208111,-0.36966366,-0.070608914,0.063347265,-0.5743961,0.02457019,-0.17467025,0.62953925,0.15104273,-0.73813045,0.25893575,-0.57740474,0.12696533,-0.1054264,0.61534315,0.84453744,0.33091074,0.15259555,1.0236707,-0.658797,0.03177016,0.07463697,-0.24156544,0.10590862,-0.24151272,0.27654558,-0.6140523,-0.1791061,-0.04127513,-0.20205964,0.01647285,0.14096847,-0.51484346,-0.22510716,-0.07193132,0.5158062,-0.3227188,-0.039891087,0.8190402,1.0651349,0.96525824,0.2567377,1.4902766,0.5052729,-0.16430578,0.250513,-0.29221052,-0.65388334,0.07318462,0.23509052,-0.19240904,0.34478074,0.004177121,0.014246175,0.2985534,-0.42427033,0.119856246,-0.09870657,0.349189,0.033485804,-0.2954009,-0.40566808,-0.16097243,0.14972483,0.045378625,-0.050803706,0.116787106,-0.16637124,0.35098642,0.25855824,1.120469,-0.120795846,-0.025818206,-0.036749817,0.28174078,0.25126413,-0.25483146,-0.050661363,0.3648104,0.45008132,-0.16518325,-0.54948395,0.12641829,-0.25926372,-0.27603355,-0.27570868,-0.275588,0.0966157,-0.14251496,-0.25105202,-0.2749926,0.047610685,-0.461832,0.445168,-2.475235,-0.25808552,-0.24337919,0.3370595,-0.20958193,-0.27890533,-0.21666907,-0.44749722,0.27990717,0.32829005,0.3342277,-0.72767985,0.2732803,0.30746365,-0.43366578,-0.053193636,-0.7252028,-0.05892458,0.04444492,0.24284817,-0.046859972,-0.07611963,-0.274332,0.23905018,0.6357749,0.15543197,0.10060258,0.34154174,0.34072953,-0.049056835,0.42886177,0.21457675,0.5988404,-0.09661767,-0.13730057,0.46138972,-0.33849785,0.14529784,0.1688517,0.09582094,0.33459914,-0.4488705,-0.671854,-0.76007926,-0.5061782,1.2840018,-0.35101095,-0.4253163,0.40596274,-0.26873118,-0.19437233,0.12331472,0.43707854,-0.050291777,0.06590022,-0.8196815,-0.044381417,-0.06581555,0.23675473,-0.15307906,0.05601341,-0.2642222,0.76467663,-0.25886977,0.48691857,0.31915563,0.12470496,-0.12399439,-0.41693908,0.09718038,1.1767921,0.5764892,0.060371988,-0.03767349,-0.18411261,-0.3151739,-0.22414629,0.1473049,0.6150785,0.75973547,-0.11328027,0.07465534,0.33656108,-0.23547648,0.07369772,-0.08355352,-0.37694675,-0.020945854,-0.0048247394,0.46787754,0.35577643,-0.081851594,0.49297982,-0.20987852,0.11326362,-0.14805458,-0.62953365,0.5439699,0.7950363,-0.268285,-0.34108666,0.48766863,0.25880587,-0.34314328,0.35127798,-0.47147718,-0.12258832,0.73728245,0.05000815,-0.5129045,-0.019237537,-0.32957327,0.25399467,-0.95765746,0.3258511,-0.24252878,-0.73135847,-0.41001722,-0.03335099,-3.2143795,0.13631564,-0.2870391,-0.07040773,-0.23049249,-0.079849295,0.41003454,-0.23998588,-0.6316806,0.061719675,0.024998458,0.4802146,-0.08891915,0.03937833,-0.24156204,-0.16296816,-0.40179268,0.15940025,0.06274398,0.18118931,-0.055376265,-0.3623366,0.10356298,-0.16268939,-0.610448,-0.06909909,-0.65994805,-0.5974986,-0.21142942,-0.5141543,-0.34487432,0.7148742,-0.41543177,-0.1630249,-0.2898213,-0.02270616,-0.12854198,0.30842498,0.106375895,0.22492291,0.012055278,-0.033119086,-0.26851672,-0.3383789,0.14668491,0.08484212,0.29932266,0.3961738,-0.18288375,0.3143615,0.50001436,0.6401175,0.007933129,0.72997135,0.34596106,-0.17347775,0.31403765,-0.31200355,-0.17465805,-0.7268967,-0.38288307,-0.18016389,-0.4251427,-0.43357518,-0.21664923,-0.31634837,-0.8781365,0.33985144,0.08462755,0.32414386,-0.040831126,0.38344413,0.33942035,-0.03465297,0.14426345,-0.20805107,-0.28768215,-0.5961917,-0.35581487,-0.7282139,-0.47893354,0.29911476,1.1561017,-0.21799073,0.02126766,0.02742206,-0.52712506,0.18717942,0.0830969,0.10342912,0.14030518,0.57515645,-0.09406022,-0.7106615,0.1581572,0.036185358,-0.06127762,-0.73924726,0.12303435,0.9711578,-0.693153,0.6833133,0.17638408,0.16290379,-0.066909954,-0.45899013,-0.23495704,0.20348889,-0.33653846,0.4753328,0.29204985,-0.44917887,0.36537236,0.2852925,0.0155360745,-0.6734565,0.4155647,-0.013938487,0.019363683,0.07823208,0.36875102,-0.09639395,-0.08243867,0.008304522,0.2542878,-0.4351216,0.41033384,0.44504377,-0.08577215,0.14962788,0.050841827,-0.305496,-0.64302987,-0.012827177,-0.5344296,-0.35480732,0.048911598,0.0907575,0.09082479,0.2514024,0.19741638,0.43097016,-0.10957505,0.12779514,-0.14687073,-0.36896196,0.51638174,0.5383764,0.24162579,-0.36751133,0.57211185,0.08215862,-0.1154579,-0.23594628,-0.021018948,0.5064787,0.2522072,0.40229636,0.05427322,-0.09603036,0.18964837,0.711423,-0.01925375,0.3105148,0.0833752,0.013063293,0.31228703,0.168004,0.1546723,0.024498655,-0.39771354,-0.06115124,-0.10039529,0.2181209,0.36116126,0.17507178,0.2334589,-0.029740917,-0.20407027,0.013224089,0.10034631,-0.12621102,-1.3512925,0.3930456,0.27528778,0.54332757,0.5414134,0.0026997786,-0.0031827688,0.41223437,-0.24862854,0.18829148,0.35416126,-0.10152991,-0.31173283,0.44900566,-0.68871665,0.48415044,-0.1615196,0.093084306,0.14498861,0.27843747,0.35307,1.0120579,-0.21041848,-0.07401185,-0.007659509,-0.26323408,0.25250325,-0.3012723,0.17130746,-0.59372437,-0.4775039,0.60764587,0.47947404,0.2502784,-0.38432154,-0.051585987,0.063685685,-0.2664981,0.13443568,-0.09781342,-0.15655789,-0.055748977,-0.54035145,-0.28533944,0.47940624,-0.15678413,-0.03243607,0.13048063,-0.19806473,0.15408958,-0.2854063,-0.0028294371,-0.12627387,-0.7289327,-0.2333779,-0.27962878,-0.27218756,0.18696631,-0.42138177,0.23454425,0.20134884,-0.02457278,-0.27077252,0.05934809,0.05254358,0.5832682,-0.1564843,-0.24030334,-0.20277113,0.13452438,0.19774477,-0.32472903,0.094530806,-0.21236,0.09854702,-0.59574085,0.49477312,-0.20966905,-0.2786558,0.1674896,-0.21360819,-0.12049552,0.3562786,-0.51733124,-0.1403374,0.052789908,-0.22185446,-0.1883355,-0.16625541,-0.23296309,0.22534928,0.10611351,0.07715516,0.061444107,-0.09145835,-0.15128615,0.14012533,0.33705804,0.26459035,0.42022097,-0.13693883,-0.32880914,-0.014555454,0.10217486,0.36712232,0.23081493,-0.09001963,-0.08177047,-0.20119897,-0.28522727,0.33092964,-0.15928017,0.29744637,-0.054471496,-0.558158,0.82793087,0.31396323,1.2622002,0.04425278,-0.2990949,-0.05384693,0.5283266,-0.026142888,0.056309693,-0.29404518,0.8317548,0.63123256,0.011293248,0.020814218,-0.3961516,-0.2064008,0.45484847,-0.105030864,-0.07381043,-0.053193577,-0.7852446,-0.3624808,0.15508237,0.2596746,0.00036241917,0.20251785,-0.025024153,-0.020964792,-0.051369388,0.36034277,-0.51622677,0.07006494,0.16215992,0.19090572,0.121132426,0.2803474,-0.3935377,0.35202518,-0.7792173,0.22294298,-0.20127241,0.082724735,0.035722487,-0.12465123,0.10062293,0.17797372,0.40301242,-0.41143835,-0.29046035,-0.2979832,0.7245986,0.17088653,0.26688144,0.8372272,-0.23929961,-0.033013783,0.24532267,0.5439196,1.3293959,0.09253732,0.16186784,0.19214351,-0.40023917,-0.6809286,0.28896403,-0.24002345,0.19083785,-0.08243525,-0.32289308,-0.25724214,0.3143185,0.06372233,-0.06704041,0.109095015,-0.5839258,-0.27606624,0.42453912,-0.4142814,-0.29002765,-0.33664423,0.20151402,0.5315675,-0.29196402,-0.29340628,0.0010971198,0.2600319,-0.4295743,-0.47154668,-0.048225682,-0.19367114,0.35731757,0.06106599,-0.37822664,0.036604814,0.2780928,-0.5513864,0.005415169,0.24259421,-0.30215746,0.051635504,-0.09446837,-0.16578914,0.7524642,0.0077367653,-0.117277674,-0.6709784,-0.58102715,-0.6679788,-0.21535787,0.27933085,0.2191318,-0.044875327,-0.47426522,-0.17999472,-0.21404082,0.3127795,0.15718427,-0.55120736,0.44777945,0.21670048,0.4863715,-0.04583697,-0.93,0.04485925,0.04891257,0.09444007,-0.6222467,0.5751849,0.08204706,0.607551,0.096242204,0.08583819,0.1633679,-0.55744195,0.3192653,-0.3088163,-0.14190769,-0.6887707,0.11450188 -425,0.63436127,-0.1755228,-0.61630726,-0.13695338,-0.31202766,-0.110784926,-0.15061116,0.66157466,0.3209379,-0.36279625,-0.2822427,0.056740057,-0.10099316,0.28743002,-0.2286062,-0.47472933,-0.06444293,0.20787796,-0.44348237,0.6259974,-0.3619863,0.18560563,-0.03456207,0.5696914,0.3296148,0.24152054,-0.11523726,0.013747581,0.022528056,-0.30749288,-0.06541533,0.20785879,-0.5247859,0.26004437,-0.29063788,-0.36228338,-0.12877552,-0.54814273,-0.5614254,-0.7735795,0.16553552,-0.7259819,0.5872865,0.056000404,-0.36412674,-0.032665737,-0.049240913,0.30754372,-0.31501445,-0.029066173,0.0063680154,0.092453666,-0.08455753,-0.16481256,-0.061632693,-0.21508637,-0.55139506,-0.11252514,-0.27784505,0.15839458,-0.2021469,0.20993216,-0.14066336,-0.032294605,-0.1157239,0.72281665,-0.45807192,0.18120928,0.0530485,0.028821,0.26578456,-0.5935115,-0.23500511,-0.19252996,0.15966387,-0.17670575,-0.416087,0.21940483,0.102706656,0.3308459,-0.10075863,-0.085386135,-0.27044436,-0.019872086,-0.00087690353,0.41337866,-0.26481313,-0.61145085,-0.2511931,-0.035985835,0.33358595,0.2745807,0.09419004,-0.35749206,-0.03872076,-0.22100623,-0.2279457,0.44454917,0.5743796,-0.23665275,0.03143953,0.28104925,0.42799434,0.3686151,-0.17577298,-0.021455662,0.016854847,-0.655021,-0.16835071,-0.063169524,-0.16146655,0.442015,-0.020913819,0.1576301,0.46447882,0.022874882,-0.2182579,0.27459806,0.15666585,-0.01833473,-0.34592596,-0.47295782,0.35138136,-0.49974412,0.2482539,-0.08227015,0.6535115,0.12898639,-0.8523919,0.14132546,-0.49199036,0.07007295,-0.11742789,0.40647432,0.7215504,0.56935453,0.18733826,0.6017745,-0.33655867,0.1056134,-0.017607663,-0.31972772,-0.029515719,-0.043854367,-0.28857806,-0.49518687,-0.04271675,-0.121556155,-0.18259227,0.15383497,0.40943772,-0.5163776,-0.2648416,0.10385474,0.7110124,-0.31557122,-0.029567106,0.7978953,1.1983621,1.082084,0.076934196,1.1038462,0.08074614,-0.24415085,0.15649326,-0.14443932,-0.73931086,0.38192096,0.3361455,-0.40233845,0.39512986,-0.011280651,-0.0337875,0.31258565,-0.37766668,-0.18588468,-0.072400086,0.19913563,0.04185152,0.028196242,-0.58850735,-0.3279216,-0.07925109,0.118930325,-0.031259477,0.24452206,-0.23048033,0.4527429,0.172555,1.3007624,-0.035175834,0.0008074785,0.17648885,0.48574534,0.29302746,-0.18352115,-0.19931439,0.29937434,0.39476633,0.056722987,-0.5287546,0.04283396,-0.21810542,-0.3613736,-0.033754766,-0.27873677,-0.13952886,-0.106193915,-0.47791976,-0.20441844,-0.032931842,-0.20754528,0.46084756,-2.7126968,-0.049163792,-0.13218336,0.18407226,-0.20724156,-0.39083338,-0.124125816,-0.3892457,0.40092844,0.2271644,0.61618537,-0.6107799,0.34997422,0.55870515,-0.5864725,0.056553874,-0.57563305,-0.19647874,0.13940477,0.35882112,0.00053956464,0.09702446,0.046380486,0.2506862,0.525581,0.07543576,0.19760169,0.3740897,0.29029018,0.06003912,0.5662776,-0.054706216,0.4529794,-0.36895055,-0.1801268,0.23235513,-0.38118345,0.18078259,-0.119050786,0.094334744,0.63489324,-0.68884426,-0.8741881,-0.61478424,-0.036570378,1.2182579,-0.26930478,-0.25693187,0.22302654,-0.5380831,-0.26591572,0.049504016,0.4107198,-0.20757388,-0.039369863,-0.80127144,-0.20967259,-0.025966397,0.28302065,-0.051016536,-0.050735623,-0.3762212,0.6179264,0.04205048,0.55786747,0.38197055,0.062542446,-0.291984,-0.5761835,0.07140344,0.75732505,0.40617082,0.2648421,-0.30451888,-0.052055273,-0.39719483,0.20452182,0.10460179,0.72859234,0.65592927,-0.15648553,0.057121404,0.25433022,0.1767486,0.10651392,-0.19931455,-0.24049668,-0.28828558,0.08052977,0.6433231,0.7021541,-0.082343556,0.25721404,0.009844899,0.4208828,-0.14152355,-0.42713237,0.41605425,1.0726004,-0.12775534,-0.4650806,0.6774177,0.6066043,-0.15412576,0.4334535,-0.4852216,-0.24707203,0.27177387,-0.06223883,-0.38562134,0.27978355,-0.29251167,0.22415796,-0.8327598,0.19327047,-0.47771695,-0.63000154,-0.6331008,0.004480596,-2.7177727,0.32194063,-0.100119285,-0.23440015,-0.120582126,-0.2016449,0.22732806,-0.5165502,-0.7410296,0.20498304,0.056424435,0.66456497,-0.15186153,0.04980923,-0.05833157,-0.3504855,-0.30270982,0.21367595,0.3889645,0.32833046,0.07241466,-0.5211568,-0.29872963,-0.113840096,-0.39991996,-0.00025872674,-0.7210652,-0.33951154,0.01485981,-0.69187653,-0.17639923,0.5015412,-0.24100903,0.03769624,-0.04013914,0.07962065,-0.06280477,0.18233855,-0.116498984,0.2164621,-0.0434807,-0.11208952,0.10338408,-0.1163725,0.183894,0.100217715,0.24360272,-0.053383876,-0.23642926,0.17668514,0.51952803,0.8633243,-0.117238395,0.93654007,0.47509387,-0.114097916,0.2590469,-0.21039137,-0.3947629,-0.5237261,-0.15318504,-0.0361228,-0.40830275,-0.21532081,0.03221074,-0.42205328,-0.82800376,0.6015983,-0.04944551,0.070246294,0.030915039,0.080601655,0.6264333,-0.13417788,0.03029327,-0.06965578,-0.11579711,-0.5255558,-0.28698045,-0.63493824,-0.28410107,-0.12142681,1.250857,-0.26933554,0.10197952,0.083103836,-0.32839075,0.10075688,0.30067566,-0.12938455,0.119429015,0.3615783,-0.07394147,-0.6165782,0.27199104,-0.09524324,-0.2521247,-0.50286543,0.29928213,0.6815314,-0.6123695,0.63502795,0.28056353,-0.047875278,-0.34308004,-0.59208155,-0.2446319,0.08848763,-0.18080674,0.60041434,0.40083867,-0.6909718,0.34220117,0.37471056,-0.25792366,-0.7364909,0.68399274,0.035487644,-0.29390875,-0.1047488,0.45500994,0.013516622,-0.07547135,-0.034347627,0.24364607,-0.1205814,0.30897194,-0.0061986274,-0.17288415,-0.119330205,-0.27890903,0.036484446,-0.82607746,0.04028062,-0.48833588,-0.35075393,0.44632095,-0.013452434,0.119615674,-0.04082489,0.11675453,0.3973896,-0.2442921,0.020637367,-0.31080046,-0.3381803,0.5207762,0.5353474,0.54908544,-0.20496342,0.51562476,0.06679062,-0.006016714,-0.04719798,0.19562839,0.35235718,-0.18995993,0.4386606,-0.008116952,-0.20507877,0.25629407,0.53738904,0.30896482,0.2833642,0.011987345,0.115085684,0.1997569,0.0889522,0.3305977,-0.021777919,-0.5941447,0.016723577,-0.30260405,0.11282454,0.47605518,0.07105429,0.09206401,-0.15332188,-0.36041954,0.0043454575,0.12019849,0.18994963,-1.5496639,0.39218372,0.06346161,0.78901994,0.5998797,0.07930546,-0.059739444,0.67366487,-0.081045814,0.09964997,0.48067173,0.17221625,-0.3902233,0.35478958,-0.4644373,0.5413805,0.068156585,0.047925774,0.09621467,-0.17644283,0.5124199,0.8414699,-0.07342571,0.06747253,0.12935919,-0.32839957,-0.010149568,-0.36121854,0.018446812,-0.5542001,-0.29856706,0.73125154,0.5621714,0.33402762,-0.21557076,-0.048037004,0.15529595,-0.14780955,0.14294098,0.091297254,-0.14900632,-0.11700606,-0.6130184,-0.0044025397,0.52215254,-0.1239833,-0.01417418,0.058588736,0.016417775,0.20303817,-0.009833,0.012796538,-0.1199648,-0.72294384,-0.12845123,-0.42574042,-0.25939566,0.34375006,-0.21278928,0.09223969,0.17806177,0.074927926,-0.28586164,0.40383333,0.014933271,0.7679849,0.028393855,-0.10622658,-0.121797785,0.21018216,0.15753198,-0.090315886,-0.18433753,-0.45245442,-0.016463665,-0.6483608,0.3200233,0.112038136,-0.31786898,0.027631888,-0.011748819,0.118401416,0.39888865,-0.16343173,-0.29496628,-0.16261151,0.05992908,-0.23241642,-0.26871797,-0.22447598,0.17483532,0.23825786,0.05447381,-0.02527828,-0.07012128,-0.0490581,0.49119917,0.0030835846,0.5865713,0.36672983,0.21195997,-0.3417488,-0.083572224,0.22341289,0.6340267,-0.0032074836,-0.1309181,-0.29000887,-0.34859723,-0.38588953,0.16546132,-0.12470198,0.455925,0.12630497,-0.13923158,0.6824943,-0.04474252,0.99133146,-0.20034842,-0.4427603,0.013187612,0.56663287,-0.034764986,-0.11675096,-0.28144246,1.0470915,0.48680282,-0.23199794,-0.15517308,-0.41633326,0.11686436,-0.121494934,-0.26409474,-0.21280222,-0.07531034,-0.4872704,-0.06695612,0.14513159,0.26362076,0.37847498,-0.05518164,0.051176786,0.31736472,0.008960651,0.26145306,-0.38170737,0.031561118,0.2039415,0.26673967,0.06749726,0.108465485,-0.54469097,0.22831175,-0.4758629,0.12973489,-0.3459433,0.19588806,-0.29588,-0.4726484,0.18706474,-0.07584627,0.33276314,-0.4215496,-0.25922257,-0.3669437,0.62948895,0.10522051,0.08446802,0.5543441,-0.16052951,0.12132098,0.049150746,0.45545465,0.78094643,-0.26716554,-0.17918672,0.28918117,-0.34230515,-0.37400454,0.057109497,-0.43992114,0.3541408,0.13044259,-0.0911988,-0.6482123,0.27085716,0.031389546,0.13346761,0.03735608,-0.87511647,-0.057624307,0.31340376,-0.15931962,-0.10485532,-0.38151282,0.081250615,0.4470389,-0.21306147,-0.42599055,0.02875503,-0.0058625424,-0.06654795,-0.56705064,0.059241295,-0.55439216,0.23888218,0.120214224,-0.35968113,-0.2916382,-0.091204986,-0.41482466,0.14262705,0.106195256,-0.2859438,0.13114585,-0.3785573,-0.06624163,0.9404564,-0.2773979,0.22023287,-0.36059457,-0.48290876,-0.7676535,-0.25687316,0.4857646,0.13445185,-0.007162075,-0.8844143,-0.004467883,-0.12256008,-0.23708224,-0.07176117,-0.24080944,0.47349724,0.13230495,0.50639784,-0.020158023,-0.8813469,0.45900744,0.02465352,-0.2630545,-0.51735103,0.49345464,0.067326136,0.8631467,0.059736557,0.17244835,0.2587282,-0.6283795,-0.1388463,-0.17092372,-0.048206985,-0.6065706,0.15696101 -426,0.3006641,0.03711903,-0.48590174,-0.16693991,0.06052093,0.04349509,-0.20053726,0.4215006,0.42587027,-0.319959,-0.30871126,-0.45778835,0.1399073,0.39716807,-0.118234545,-0.7782378,0.13174076,0.07342293,-0.5162337,0.63652706,-0.43312514,0.4289168,0.23573445,0.36910298,0.062908895,0.29791585,0.36791185,-0.081186526,0.029949853,-0.19919734,-0.1166658,0.016780207,-0.47892806,0.030525846,-0.27140728,-0.34381056,0.09221992,-0.62195945,-0.5259876,-0.70916337,0.33042482,-0.81488544,0.5557601,0.25245303,-0.06007127,0.14288181,0.13285062,0.20180283,-0.3268602,0.0113055995,0.090792395,0.028389243,-0.036473546,-0.007400453,-0.52920485,-0.2614905,-0.57758254,-0.019794753,-0.42907083,-0.30985415,-0.319896,0.017171822,-0.25404707,0.121324874,-0.035519708,0.37106717,-0.39232135,0.16035068,0.28001943,-0.26897427,0.22302486,-0.5262124,-0.19515349,-0.24533717,0.2348553,-0.32388034,-0.2042054,0.2601927,0.33913818,0.38236752,-0.07032012,-0.112131365,-0.19462049,-0.09997296,0.081088856,0.6308121,-0.21216445,-0.4638482,-0.16035277,-0.075606845,0.15142466,0.3393961,0.19007917,-0.34691134,-0.131808,-0.23265533,-0.35584787,0.4058216,0.52245665,-0.35905048,-0.31209084,0.27732095,0.27379763,0.26581392,-0.07006886,0.024776498,0.032843437,-0.59673494,-0.16572598,-0.026181787,-0.18471648,0.7000871,-0.064154156,0.14279902,0.6662485,-0.100281596,0.053477466,-0.071221046,-0.14673358,-0.15839039,-0.22673185,-0.13772605,0.21495736,-0.39460966,0.2402935,-0.20117116,0.6840742,0.31239507,-0.53937215,0.39690694,-0.60302514,0.21572717,0.03313082,0.44197333,0.6289042,0.28299144,0.29082635,0.6011455,-0.40376493,0.10106465,-0.02288269,-0.24635458,0.083242886,0.011514981,-0.053685922,-0.4344903,-0.1616803,0.16014087,-0.23014146,0.5580008,0.39552972,-0.44456613,-0.05158106,0.029457768,0.89683455,-0.20589232,-0.19060123,0.80323404,1.0912075,0.83178276,-0.014978959,1.3249929,0.24107341,-0.2109565,0.11334888,-0.16267085,-0.78290766,0.06789906,0.30488807,-0.47392678,0.26976943,0.07711614,-0.13353743,0.20563471,-0.34950662,-0.019143483,0.07351423,-0.08280045,0.034866404,-0.22761959,-0.2514468,-0.28576833,-0.16099657,-0.029994385,0.31977215,0.27528626,-0.12607712,0.4250044,-0.08189497,1.2882236,0.07151619,0.0349528,0.040475354,0.46607184,0.42933175,-0.03955479,-0.14680867,0.31712583,0.4145325,0.0020340334,-0.55528086,0.09354039,-0.19889294,-0.26121065,-0.038851526,-0.35497245,-0.21126322,0.12622485,-0.2939038,-0.020183353,-0.09403503,-0.24964382,0.32141343,-2.9004667,-0.22328125,-0.1237421,0.3573973,-0.10635957,-0.16465805,-0.24734674,-0.48057154,0.5542613,0.30180633,0.55820036,-0.57573336,0.2584491,0.49532893,-0.6042782,-0.2700857,-0.56104374,-0.035825204,0.027555672,0.2909661,-0.074614316,0.2036374,0.16363983,0.3819377,0.45629978,0.24640441,0.12294976,0.21188849,0.5853485,-0.028347686,0.41267386,-0.11991344,0.63400036,-0.18127711,-0.20004743,0.21837896,-0.370316,0.386225,-0.34109357,0.03814618,0.39762935,-0.36394706,-0.83601564,-0.4317008,-0.42910644,0.8950953,-0.18738933,-0.2871723,0.28765616,-0.29286125,-0.25404242,-0.07190783,0.9566204,-0.22948404,0.0850715,-0.68205327,-0.10320866,-0.023989573,0.19566838,0.055460382,-0.10339906,-0.4657003,0.5696243,0.020111052,0.4833363,0.3489875,0.121428706,-0.26932123,-0.5978493,0.20313956,0.93175673,0.22039665,0.19998603,-0.17045969,-0.1703093,-0.4495804,-0.068074234,0.06653298,0.61442137,0.46198186,-0.08112864,0.15109593,0.3008441,0.32866707,0.04856545,-0.08527724,-0.30774447,-0.032340225,-0.13450356,0.5448152,0.8449642,-0.36035,0.2291012,0.00024753343,0.4500247,-0.21119313,-0.47094774,0.73294854,0.8926013,-0.044921756,-0.1157128,0.5742247,0.34270915,-0.19501781,0.43924376,-0.50275415,-0.23549491,0.5580327,-0.089874364,-0.37219775,0.36836156,-0.20538878,-0.10915405,-0.9056389,0.25729764,-0.13157831,-0.12795849,-0.30305478,0.057861436,-4.1829047,0.046173353,-0.22587554,-0.23969108,-0.26251075,-0.06670704,0.06506271,-0.38455772,-0.696958,0.27227625,0.038449854,0.6024299,-0.27952766,0.18652473,-0.22064061,-0.22349168,-0.3091612,0.17612024,0.06560641,0.4050009,0.017042384,-0.40970668,-0.1611286,-0.10044994,-0.5892608,0.14208661,-0.49454522,-0.20675613,-0.1779656,-0.7364123,-0.15635398,0.73083496,-0.34687924,0.014821082,-0.22099257,-0.025965473,-0.17408828,0.23615919,0.2838288,0.19391806,-0.099855654,0.049404938,0.047852665,-0.09952211,0.35730043,0.24322219,0.20353746,0.20539403,-0.029884165,0.14469038,0.28783348,0.6295168,-0.101479255,0.7712055,0.35548273,-0.046290804,0.26443005,-0.2577341,-0.24178724,-0.55543286,-0.28784502,-0.09036163,-0.30840117,-0.65006363,-0.2016492,-0.30924007,-0.6963766,0.345373,0.07667586,0.13025013,0.05023709,0.06153378,0.3041465,-0.2257965,0.12149406,0.07055224,-0.013399561,-0.4391658,-0.12309507,-0.55575603,-0.3409494,0.3455243,0.6674202,-0.22369711,0.048125025,-0.0117563745,-0.12568106,-0.046177585,0.19488658,0.1498775,0.20456667,0.4194218,-0.12679733,-0.6031721,0.5276617,-0.19774397,-0.4336563,-0.760122,0.2557837,0.5523604,-0.7234724,0.75907737,0.3640891,-0.060372617,-0.12011305,-0.46810094,-0.36044577,-0.04271615,-0.082067855,0.18836771,0.14567617,-0.69118625,0.29109433,0.120233715,-0.2570332,-0.6633069,0.72343904,-0.079763226,-0.45650116,0.048160106,0.36239052,-0.04552408,-0.038545694,-0.17805599,0.16369547,-0.2544447,0.21155381,0.21628666,-0.076781146,0.49390182,-0.17668597,-0.058100987,-0.7710008,0.18126988,-0.4610599,-0.16077414,0.10587881,-0.016782552,0.0928468,0.10734322,0.059909463,0.17983238,-0.18084443,0.21445668,0.013964285,-0.21468814,0.35327852,0.335255,0.5768648,-0.24698128,0.63224345,-0.061019078,-0.111937605,0.22182511,0.24740012,0.35816967,-0.021157106,0.30775318,0.18927689,-0.3007606,0.10905069,0.62203246,0.14315337,0.060504425,0.33156547,0.016178856,0.36377835,0.11339363,0.002413607,0.14614101,-0.5843785,-0.14298598,-0.34737274,0.088848,0.45482412,0.1768146,0.12968771,-0.14250916,-0.54422766,-0.048605938,0.2864438,0.29428473,-0.9929301,0.17873871,0.06883578,0.71397257,0.4820136,0.102188975,-0.12582992,0.40162173,-0.102916785,0.20625223,0.28705612,-0.016065983,-0.4959365,0.5761228,-0.45965552,0.67613727,0.1162622,-0.011186537,0.07133666,-0.08409411,0.21273454,1.0931908,-0.14665976,0.03908459,0.045700505,-0.16337545,0.09780896,-0.53999734,0.009824793,-0.36294666,-0.36451873,0.75241774,0.35478342,0.13830306,-0.19236839,-0.03616123,-0.0214035,-0.124792,-0.13828665,0.03327547,0.20325382,-0.14924553,-0.7178295,-0.12846683,0.5732673,-0.16004519,0.097891726,0.0057589025,-0.19504671,0.30242833,-0.23974375,0.020026492,-0.11491404,-0.95505005,-0.12040484,-0.41055062,-0.3112228,0.29368275,-0.22188966,0.3790647,0.15290096,0.025066068,-0.2469464,0.69199306,0.07270222,0.7541997,-0.07805318,-0.16740651,-0.2589397,0.21970946,0.24548332,-0.22139935,0.017355464,-0.2591389,0.07475852,-0.44866154,0.42785537,0.094929196,-0.27663627,-0.14900061,-0.09021034,0.08516124,0.50455546,-0.12102225,-0.13580133,0.09116777,-0.2328579,-0.33887455,-0.056156006,-0.0770651,0.20082025,0.3940648,0.01838406,-0.06375743,-0.13716206,-0.12938237,0.17695726,-0.03388879,0.42129362,0.2558541,0.3308091,-0.1984818,-0.026302397,0.13586678,0.42905334,-0.0107509345,-0.12957035,-0.13774605,-0.5300775,-0.43021205,0.13595806,-0.13692683,0.3863761,0.106978394,-0.059486687,0.4607451,0.15417945,0.7997218,-0.00831614,-0.41940644,0.22482233,0.43782067,0.04745853,-0.2483862,-0.18757184,1.1533794,0.45761076,-0.059749704,-0.21848758,-0.12825309,0.026067153,-0.10231402,-0.24630593,-0.23253739,-0.051166583,-0.55193007,-0.07568375,0.14017843,0.28289452,0.41443935,-0.09479848,0.19431585,0.21669276,0.15288614,0.17821486,-0.7411461,-0.31476948,0.4105126,0.205557,0.11023811,0.16744912,-0.3737605,0.46240056,-0.37248802,0.076297544,-0.3668425,0.07624469,-0.32282126,-0.27650264,0.20787726,0.009900428,0.49910092,-0.4091781,-0.26747277,-0.48801443,0.3147692,0.16682953,0.22887324,0.6503103,-0.115021534,-0.049428344,-0.059758414,0.7009225,0.99728173,-0.16438179,-0.13724762,0.4632454,-0.4524599,-0.4343078,0.16346927,-0.4494451,0.17687605,-0.08284851,-0.0051694117,-0.5415231,0.104500614,-0.13516437,0.14521927,0.17844094,-0.73691624,-0.32087168,0.21480119,-0.16325879,-0.35045096,-0.5265897,0.1682623,0.70944005,-0.09263611,-0.18084757,0.25756308,0.015826354,-0.15384157,-0.7449599,-0.026993096,-0.1918151,0.3917303,0.13787618,-0.22709364,-0.07348836,0.05387071,-0.43483993,0.25927225,-0.06867989,-0.33693206,0.048285082,-0.36073866,-0.28255698,1.0315589,-0.3365477,0.06055669,-0.5051768,-0.5718051,-0.65518165,-0.5160827,0.62706107,0.058515895,-0.10687586,-0.5849489,-0.12820615,-0.1270197,0.1222535,-0.01008596,-0.11557368,0.41198516,0.07176565,0.4884572,-0.14190024,-0.9059295,0.15381323,0.0848755,-0.30800465,-0.70800096,0.3362942,0.09420872,0.72040826,0.0857295,-0.12732418,0.6150508,-0.47810593,0.03289619,-0.3458779,-0.025008053,-0.4782864,0.24480808 -427,0.51366365,-0.34278736,-0.2526229,-0.110519156,-0.12799208,0.15645483,-0.020287257,0.45809975,0.18976621,-0.5122078,-0.1987977,-0.092914365,0.08531503,0.16584037,-0.2689094,-0.56345886,-0.089719094,0.05284924,-0.2677122,0.6203071,-0.48295972,0.25631312,0.025560172,0.3023181,0.12103493,0.20365277,0.19177864,-0.112294175,-0.29653797,-0.12439269,-0.1819615,0.44313684,-0.44917122,0.1260597,-0.15278356,-0.35324517,-0.03717763,-0.5475311,-0.42909673,-0.6446252,0.3455798,-0.872808,0.43184668,0.08808172,-0.21182823,0.31136182,0.02745332,0.09802798,-0.17989671,-0.035636242,0.09025916,-0.0742992,0.047301583,-0.21808818,-0.12800366,-0.29300356,-0.6615239,0.21588878,-0.41469154,-0.23899187,-0.12566002,0.18408616,-0.23362698,-0.15266256,-0.15749338,0.67451096,-0.39097002,-0.089982286,0.14071995,-0.08110307,0.20331396,-0.6096167,-0.24347152,-0.03342402,0.07832109,-0.12279577,-0.2157494,0.16835043,0.3888496,0.5743028,0.0035493714,-0.20548984,-0.4645976,0.07905858,0.13308951,0.47373837,-0.21134843,-0.6846186,-0.1489114,0.051315915,0.026976313,0.14725873,0.17249636,-0.26407745,-0.017533425,0.1279818,-0.35375023,0.33233014,0.6159907,-0.50006056,-0.3908177,0.32003906,0.50685674,-0.024630632,-0.085585065,-0.07889397,0.041468024,-0.50612295,-0.11152721,0.26687112,-0.34084964,0.6309697,-0.1743487,0.21371739,0.55665696,-0.14106613,0.14696975,0.097446375,0.05186177,-0.0854429,-0.3739201,-0.14660656,0.16121556,-0.37295356,0.002829654,-0.30847153,0.9243908,0.14247808,-0.83149606,0.41339806,-0.43676642,0.176182,-0.09206134,0.46704397,0.6105265,0.30185032,0.36585554,0.71255463,-0.5914475,-0.027210891,-0.033440035,-0.26280984,-0.08584539,-0.1875305,0.028176626,-0.44275147,-0.057222784,0.10135579,0.08260291,-0.008589902,0.41550726,-0.63394654,-0.11687446,0.13598858,0.8539376,-0.24987794,-0.12754059,0.81896657,1.0301888,1.01517,0.08115011,1.2140082,0.28957638,-0.27414733,0.36500448,-0.5251852,-0.58444065,0.240145,0.38352495,-0.014208623,0.20272446,-0.050245803,-0.059216913,0.3984757,-0.42207235,0.1512483,-0.30501047,0.13464117,0.24248055,0.037863042,-0.44545883,-0.30603164,-0.029876342,0.029634979,0.14600317,0.23448586,-0.29609564,0.21168362,-0.006403297,1.5437254,-0.08924435,0.097873375,0.020392636,0.44479233,0.23897502,0.023539374,0.010919852,0.2478917,0.38500157,0.11507776,-0.60662323,0.07692267,-0.29396006,-0.55971324,-0.07470103,-0.24243638,-0.01566923,0.039272524,-0.4769078,-0.13679121,-0.13432355,-0.39577106,0.4658072,-2.8351707,-0.22481643,-0.06648358,0.34084153,-0.34815782,-0.35683864,-0.09120687,-0.5170471,0.46926895,0.4439222,0.3969976,-0.72276586,0.32086772,0.38383222,-0.4047831,-0.054716174,-0.73872524,-0.042239822,-0.14763677,0.40623084,0.20192322,-0.14644429,0.05292332,-0.09299635,0.61428106,0.021788942,0.10909099,0.21539696,0.3648441,-0.019420488,0.38240665,0.0034042087,0.38949612,-0.2742503,-0.15226956,0.42925352,-0.5005532,0.2001672,-0.023492511,0.095274806,0.4168586,-0.55749446,-0.7676878,-0.6837124,-0.36528158,1.1291236,-0.09592999,-0.483187,0.21284994,-0.20782045,-0.21485297,-0.14276025,0.5330824,-0.041712668,-0.11260373,-0.7863582,0.13353391,-0.0501186,0.06407924,-0.039419223,0.08291594,-0.40411657,0.7120476,-0.07428861,0.43200037,0.34466144,0.30156612,-0.40492877,-0.5073586,-0.04897689,1.1579325,0.2997114,0.1904255,-0.15422414,-0.131484,-0.27982637,-0.090995386,0.053954422,0.60668504,0.7769357,0.0624473,0.027517065,0.40076905,0.020349452,0.07589626,-0.19437753,-0.30933002,-0.16746283,0.0052762455,0.60009474,0.58404195,-0.24929254,0.45075664,-0.14821155,0.21455275,-0.29604387,-0.38808012,0.5656696,0.9042373,-0.13363412,-0.2593284,0.6364407,0.53353775,-0.37898856,0.36613682,-0.5604878,-0.34923676,0.39795583,-0.32020378,-0.48123953,0.20235303,-0.2863932,0.064644374,-0.74794143,0.3970892,-0.1011933,-0.39208105,-0.6801714,-0.16300039,-3.8097458,0.19553478,-0.26557574,-0.09870559,-0.017683323,-0.14269756,0.12211809,-0.58712375,-0.42305812,0.17404087,0.0922596,0.48748192,-0.08958299,0.24258125,-0.31226653,-0.19897996,-0.21183035,0.15799603,0.013194678,0.29134065,0.0001839442,-0.31778383,0.1881802,-0.15255284,-0.38226956,0.12219964,-0.5710495,-0.6183491,-0.12566267,-0.53662974,-0.4649847,0.64808,-0.41941592,0.06481037,-0.2392919,0.039127864,-0.106843926,0.49725088,0.11523632,0.12273019,0.01917175,-0.1365487,0.013294271,-0.32583585,0.38175708,0.03281013,0.17683113,0.5521,-0.1501743,0.20367506,0.5057883,0.55431193,-0.013738968,0.92890614,0.55517143,-0.09350366,0.32005218,-0.27461046,-0.12957011,-0.64005023,-0.28643754,0.04113962,-0.46067485,-0.48736662,-0.03221649,-0.40480706,-0.7994491,0.44731817,-0.06341529,0.26011625,0.019770814,0.3881753,0.60348505,-0.133494,0.088392474,-0.04459027,-0.11659279,-0.45901734,-0.30779156,-0.6635273,-0.4323501,0.15120329,0.74421823,-0.047414005,-0.14058976,0.0700054,-0.11753696,-0.2171575,0.054449294,0.020907333,0.16686545,0.33717924,-0.094296746,-0.6568188,0.4348519,-0.045824084,-0.21388586,-0.4556488,0.15209453,0.63088,-0.6482797,0.66412,0.38306236,0.16673458,-0.085722804,-0.44210666,-0.18992543,-0.0141561795,-0.24696036,0.45075276,0.21545961,-0.84534645,0.48607874,0.4345546,-0.11782583,-0.8104087,0.47551972,-0.048169114,-0.20774145,-0.120655365,0.42548147,0.272645,0.09231542,0.0021311832,0.16841769,-0.63370705,0.16931374,0.18237914,0.0073261773,0.504053,-0.19865441,-0.20916311,-0.714119,-0.09934343,-0.6110584,-0.26591617,0.24402383,0.14359857,0.10478575,0.28810802,-0.006135055,0.45707288,-0.22351758,0.076969914,0.1428623,-0.08481825,0.23288883,0.38410214,0.42626414,-0.36672786,0.45805565,-0.030090949,0.020876423,-0.0428757,0.010727601,0.37678313,0.22239807,0.47044042,0.0053303284,-0.26067096,0.4480678,0.81106776,0.18830717,0.4905203,0.15135813,-0.21644142,0.35317725,0.05373799,0.15864551,-0.103296876,-0.48655206,-0.0083118845,-0.11567237,0.19508316,0.31891146,0.07724837,0.34088883,-0.14453351,-0.20583235,0.046196546,0.2897916,-0.06547816,-1.010207,0.17776458,0.086192675,0.8847467,0.49666172,-0.09369966,-0.046714455,0.57894117,-0.263238,0.17042239,0.38875988,-0.08878323,-0.5690858,0.5871439,-0.6403182,0.48717612,-0.25659028,0.079306565,-0.14271957,0.01387919,0.28038287,0.64139706,-0.14617357,0.03782358,-0.12217043,-0.31909758,0.2075402,-0.5071484,0.33916304,-0.4691225,-0.21634956,0.7173742,0.5500659,0.3355421,-0.16120042,-0.039952457,0.07001377,-0.07757097,0.19202545,0.053769328,0.070527576,-0.05852071,-0.8500909,-0.2868762,0.50626093,-0.015239452,0.19533762,-0.07422041,-0.16640179,0.2292802,-0.30361986,-0.22544847,-0.029771173,-0.5956873,-0.044003338,-0.12847964,-0.61049515,0.41571158,-0.063595906,0.20505439,0.17660587,0.058972068,-0.44652,0.099481404,0.22590597,0.65933424,-0.0476768,-0.05877779,-0.5189723,0.051836375,0.18191688,-0.2351722,-0.06432404,-0.24476917,0.16803011,-0.6221774,0.46916315,-0.0038175497,-0.40749738,-0.0035430107,-0.08490718,0.046504386,0.6595899,-0.16836119,-0.1548126,-0.11243933,-0.21506444,-0.313617,-0.037535507,-0.050663147,0.32140714,0.14212729,-0.011747931,-0.018801374,-0.3012379,-0.18321885,0.47212616,0.16700228,0.2934184,0.39351606,0.14952575,-0.30921248,-0.09818753,0.16874568,0.5249191,0.0022406876,-0.184617,-0.23551463,-0.47462717,-0.38003296,0.08460719,-0.030939434,0.34958002,0.018040879,-0.3730965,0.6989598,-0.057491083,1.3583337,0.21438251,-0.2781177,-0.08567464,0.49325964,0.02945217,0.0627723,-0.44730368,0.98495436,0.51756126,-0.054951105,-0.07197944,-0.35705322,0.04312549,0.25611955,-0.106980965,-0.10891839,-0.03405843,-0.7782712,-0.28634453,0.18457265,0.23457615,0.11250603,0.020727083,0.024890738,0.1812649,-0.0030148583,0.34249067,-0.46362028,-0.1313426,0.28262442,0.40880257,-0.019403415,0.14516446,-0.33472252,0.3091755,-0.48352018,0.12208253,-0.2816357,0.09105679,-0.19083138,-0.17816785,0.30856448,0.06631242,0.4604828,-0.23436478,-0.5722515,-0.23147273,0.5184434,0.090342335,0.098155834,0.49512672,-0.22475357,0.004687735,0.14038768,0.6112474,1.4091034,-0.09800776,-0.058605663,0.23809217,-0.32433876,-0.8367391,0.44331786,-0.22863555,0.20034036,0.051122587,-0.20920454,-0.46342307,0.2969819,0.3005361,0.03455949,0.16826083,-0.5008758,-0.29220995,0.2466698,-0.30828813,-0.12819245,-0.24380681,0.16977215,0.7044589,-0.38415337,-0.24442632,-0.03748711,0.39673838,-0.27590173,-0.5772295,-0.046415504,-0.4991994,0.29505596,0.15200599,-0.33710593,-0.041229844,-0.008652432,-0.44234136,0.04139169,0.23644029,-0.37118545,0.06536516,-0.15682082,-0.13812374,0.9066893,-0.0536162,0.2679722,-0.66551155,-0.48915675,-0.95514864,-0.32573754,0.39269066,-0.01581292,0.051010076,-0.5910567,-0.007945738,0.0013848458,-0.11070793,-0.094374895,-0.5625068,0.5476073,0.11955606,0.47514147,-0.10723179,-0.5683576,-0.031424053,0.20349933,-0.05953788,-0.5288746,0.51505,0.023987344,0.7858524,-0.00067864306,0.09231899,0.37576288,-0.54425555,-0.11519419,-0.27467713,-0.2931628,-0.6841596,0.09551083 -428,0.40313807,-0.4503812,-0.38844034,-0.20038478,-0.3545233,-0.119619876,-0.18417384,0.3913255,0.40901175,-0.16982375,-0.22456543,-0.14937979,0.08076143,0.6196217,-0.19780298,-0.60329866,-0.20551904,0.138492,-0.8246326,0.53446615,-0.579121,0.101569176,0.02843109,0.6478316,0.12279434,0.0920192,0.2629954,0.023943752,0.12672399,-0.09586834,-0.09707453,0.4574871,-0.70040256,0.07430432,-0.2637898,-0.3693298,-0.13347577,-0.54094523,-0.28031406,-1.0656953,0.24390234,-1.1174997,0.60023075,-0.111219965,-0.28442678,-0.1362903,0.5518201,0.4359231,-0.45392978,-0.012186043,0.23895387,-0.29104626,-0.19472325,-0.23253757,0.010543197,-0.50906724,-0.6998516,-0.08934671,-0.5517542,-0.34232256,-0.26548368,0.33494052,-0.3799999,0.025631694,-0.21881811,0.5900088,-0.38934875,-0.05183484,0.42359623,-0.1304944,0.565099,-0.5456267,-0.0460151,-0.14856197,0.41111338,0.06099065,-0.53577584,0.40165827,0.49300894,0.11003544,0.17293413,-0.30406168,-0.28162715,-0.027282774,0.01845328,0.3036741,-0.25402394,-0.5285287,-0.1444932,0.16151504,0.4114213,0.6970537,0.07604602,-0.238355,0.040963117,0.05689111,-0.073208265,0.88245577,0.57259744,-0.13730653,-0.50034237,0.2116701,0.60583377,0.2140301,-0.31717524,0.05931821,0.076154366,-0.7164753,-0.06952574,0.2975799,-0.19115347,0.5096072,-0.25031146,-0.02548325,0.9566615,-0.27554515,-0.29109335,0.084369265,0.09312507,-0.24577975,-0.27905026,-0.32658496,0.36556473,-0.5030317,0.07565407,-0.42058828,0.7619781,0.07586919,-0.74905825,0.14402258,-0.7234084,0.26216128,-0.014766593,0.7035869,0.9434468,0.63138884,0.70557183,0.88207906,-0.04046495,0.23905085,0.037139546,-0.40631446,0.1544017,-0.5869985,0.14250204,-0.56489515,0.053979266,-0.24568802,0.026531557,0.15309107,0.58812875,-0.7081876,-0.2576472,0.23600312,0.68692714,-0.25461793,-0.15271406,0.7737184,0.88256335,1.1300414,0.10762579,1.1642538,0.44639525,-0.17281811,0.25318143,-0.20297277,-0.803566,0.30374566,0.281299,-0.68222475,0.31552956,-0.23217273,-0.004525905,0.23089129,-0.64391834,-0.034815338,0.01549852,0.38401818,0.290167,-0.1831367,-0.47550353,-0.12888806,-0.12515639,0.0076059154,0.201997,0.24929135,-0.24945356,0.5132933,-0.09757928,1.3239901,0.046651583,0.055247784,0.065776326,0.6324517,0.27919987,-0.058321446,0.0691741,0.381826,0.44471478,0.2419982,-0.5923167,0.31591424,-0.23521398,-0.37457785,-0.1289769,-0.4834052,-0.058286086,-0.012389779,-0.3497331,-0.31758234,-0.22219075,-0.10986104,0.45650733,-2.5666063,-0.25712317,-0.025025347,0.31138313,-0.23312749,-0.14945512,-0.15582682,-0.7108753,0.4531381,0.3511833,0.52480966,-0.6511806,0.38326105,0.50899655,-0.72029537,-0.16159871,-0.98089606,-0.2832177,-0.082864255,0.52821594,0.09111861,-0.18859096,-0.006052756,0.32148233,0.8617652,0.1559711,0.2243375,0.6172499,0.6169949,-0.104166925,0.86521626,-0.13948755,0.47083005,-0.43367946,-0.2876034,0.25915226,-0.4419056,0.16642551,0.0066803196,-0.069283344,0.8995505,-0.51536024,-1.3003627,-0.49965724,-0.12761463,0.91463304,-0.49375868,-0.57528496,0.24754083,-0.33658385,0.01784687,0.033235412,0.84300685,-0.11825784,0.20780669,-0.7933542,-0.033902675,-0.024589172,0.27402988,0.042894695,-0.1310512,-0.33369875,0.69589525,-0.09967188,0.42577282,0.109214075,0.11877948,-0.8309863,-0.68476933,0.09529742,0.78530526,0.28966105,-0.115754165,-0.18787716,-0.39354602,-0.11814954,-0.22424872,-0.1047484,0.7721477,0.7229247,-0.1727913,0.28996205,0.47669482,-0.27694222,-0.107676454,-0.33574653,-0.28817227,-0.18869591,0.08210551,0.66978407,0.87069035,-0.20386137,0.77920073,-0.20523976,0.35944238,0.041090798,-0.59287804,0.7724204,0.8780701,-0.1437539,-0.11277174,0.5674339,0.49709812,-0.41219243,0.5727278,-0.53677636,-0.3817784,0.76873416,-0.24290186,-0.64697224,0.19359465,-0.29419506,0.075520635,-0.7875745,0.2504642,-0.38478163,-0.35735145,-0.63463384,-0.10754921,-3.10011,0.21113782,-0.10139779,-0.23293985,-0.52491933,-0.16054727,0.177161,-0.66468924,-0.70033073,0.1860985,0.2862518,0.6610204,-0.18342014,0.15542673,-0.3804771,-0.08631915,-0.13335897,0.3171949,0.29792917,0.37960878,-0.0743075,-0.46178904,0.04368347,0.023279516,-0.6676635,0.112330765,-0.7293741,-0.5685058,-0.089901276,-0.7492421,-0.38694045,0.72808313,-0.4647968,-0.11987919,-0.28371117,0.2358848,0.16334467,0.3135879,0.13866241,0.26693165,0.22331555,-0.13223106,0.124432385,-0.09734646,0.42889297,-0.17499463,0.2451735,-0.006427283,-0.122188866,0.3509936,0.5593595,0.8496337,-0.15995397,1.1896195,0.6054829,-0.0040116482,0.15821867,-0.24487518,-0.35197592,-0.720071,-0.17673309,-0.16213088,-0.49411345,-0.33710727,-0.035824556,-0.30292043,-0.7865111,0.93397903,-0.017237728,0.34448043,-0.116618305,0.3325762,0.5554026,-0.16470863,0.11058563,-0.10425662,-0.24961787,-0.5084821,-0.1991949,-0.48184657,-0.677392,-0.17970896,0.8917689,-0.3271208,0.04897702,-0.14355788,-0.27802533,-0.06990502,0.24059387,-0.059750292,0.43127835,0.56706315,-0.007922833,-0.7511628,0.3722502,-0.024964178,-0.104614414,-0.74084574,0.40303087,0.78518075,-0.7906795,0.7445688,0.19272192,-0.05941397,-0.5060443,-0.6651411,-0.25702706,0.031490196,-0.11065915,0.5474581,0.1304987,-0.89082456,0.6882758,0.4480455,-0.6222276,-0.68863875,0.24884641,-0.19700246,-0.43851808,-0.033207797,0.29311383,0.1702624,0.07271131,-0.41262445,0.31450644,-0.39973202,0.14757508,-0.01319322,-0.047136564,0.38887823,-0.17999242,-0.2437545,-1.0323507,0.1871938,-0.62231755,-0.44316742,0.426386,-0.0023526002,-0.1646353,0.36262754,-0.17824419,0.31200972,-0.15345985,0.10559202,-0.14271021,-0.38945803,0.21697104,0.559004,0.32097557,-0.4759272,0.7188824,0.20203269,-0.343091,-0.065010056,-0.086908825,0.2935695,-0.054303348,0.57819086,-0.20250721,-0.25700602,0.40568328,0.6997799,0.015320365,0.6529176,0.046617907,0.06821527,0.29490992,0.014114599,0.2776979,-0.19801772,-0.58133614,0.16890936,-0.37118506,0.14165601,0.56170434,0.24232495,0.35690507,0.17730153,-0.24595912,-0.03492464,0.27851674,-0.04815604,-1.6614476,0.44181016,0.3660957,1.0593079,0.4292195,0.1225098,-0.027475381,0.92529327,-0.2692498,0.012343925,0.58274835,0.20681651,-0.32262692,0.91663057,-0.87068844,0.41979793,-0.24238144,0.022740424,-0.013347837,0.327004,0.4738458,0.88523865,-0.22439174,0.036584787,-0.09795693,-0.09390473,0.31306353,-0.47840914,0.14385004,-0.29713145,-0.5074065,0.6438685,0.36926386,0.50880605,-0.19923155,-0.023219155,0.07900085,-0.1662514,0.28669295,-0.09647102,-0.21463574,0.07113417,-0.63220406,-0.01261736,0.6364827,0.16893859,0.18732445,-0.19098113,-0.13144611,0.16669603,-0.18871953,-0.020406261,-0.11969352,-0.88947815,-0.1164907,-0.2072498,-0.55880564,0.7893183,-0.46957552,0.09517092,0.25963125,-0.010084261,-0.25764772,0.078731656,0.14157693,0.94801205,-0.019236708,-0.26750562,-0.24404915,0.05851658,0.13052498,-0.34351906,0.08730956,-0.4127083,-0.09561926,-0.38737187,0.58942443,-0.12664104,-0.6872197,0.10315021,-0.17142832,-0.03988422,0.6111124,-0.063307546,-0.07860358,-0.089194596,-0.41692758,-0.25609526,-0.19951351,-0.17710279,0.36721393,0.2393203,-0.057582293,-0.17295583,-0.07220588,-0.1529954,0.6911566,-0.19505446,0.49315813,0.41026223,0.32553008,-0.032414626,0.1565247,0.20502484,0.69755125,0.2746748,-0.11576951,-0.43327084,-0.39249966,-0.26932752,-0.03158356,-0.08170659,0.36491212,0.013644591,-0.43139789,0.94136924,-0.036384568,1.3437909,-0.022475548,-0.51643205,0.12255031,0.55147177,0.041787084,-0.042528585,-0.48707774,0.7782392,0.50153774,-0.0972004,0.1489899,-0.60334986,0.06979678,0.5200829,-0.39329365,-0.2603736,-0.11682612,-0.5280369,-0.38973996,0.2694055,0.18175316,0.22398424,-0.2335363,-0.07521615,0.14031558,0.016245976,0.53952754,-0.45016274,0.0323112,0.11673234,0.4376779,-0.048003603,-0.021927029,-0.4315907,0.3016579,-0.5332986,0.30213904,-0.63236624,0.3049269,-0.28706503,-0.29390103,0.14337488,-0.07087726,0.4623493,-0.08400708,-0.32712424,0.020910004,0.55630815,0.29147887,0.12624799,0.6863323,-0.28740373,-0.0044869557,0.16835235,0.58870804,1.4422178,-0.73298097,-0.031532988,0.24073581,-0.45532617,-0.7637794,0.744384,-0.29757264,-0.020746192,-0.0030340205,-0.5123338,-0.35852286,0.16538198,0.17403616,0.2943287,-0.16319413,-0.4969519,-0.17290811,0.49186638,-0.28094202,-0.15198165,-0.3877512,0.4572042,0.61550266,-0.17743821,-0.5048075,0.07138535,0.3364917,-0.2219999,-0.5183373,-0.07882441,-0.2967185,0.38632992,-0.0028115276,-0.33796015,-0.011685133,0.121021785,-0.69053674,0.1029641,0.02853325,-0.34228548,0.17388006,-0.24943167,-0.051651824,1.0243894,-0.45809212,0.006139969,-0.684194,-0.5022936,-0.9566024,-0.21526338,0.2788201,0.05999953,0.041336957,-0.6339918,-0.09393164,-0.057074185,-0.37508568,0.044650078,-0.55025536,0.39724755,0.12576462,0.497818,-0.29102194,-0.8474795,0.23632812,0.16726351,-0.047324717,-0.6650663,0.71865493,-0.1397196,0.81869936,0.014397167,0.13649784,0.18807583,-0.38209605,0.021854855,-0.26777756,-0.18203847,-0.85051996,-0.09696373 -429,0.554978,-0.2876211,-0.6992448,-0.30416185,-0.30579787,-0.14310232,-0.051252764,0.57669437,0.21269357,-0.57459915,-0.21035492,-0.30995908,-0.026344487,0.4523813,-0.23443238,-0.7675276,-0.026280528,0.13235453,-0.52363044,0.5370087,-0.19157502,0.45390216,0.07483334,0.46724805,0.2751817,0.23399459,0.20563987,-0.0004849157,0.03508641,-0.2296096,-0.021609485,0.18023355,-0.72455263,0.22741233,-0.18825828,-0.47732875,0.05946344,-0.39893582,-0.17513934,-0.84560126,0.2280015,-0.9299125,0.5332263,0.019223157,-0.3547056,-0.03603203,0.1871297,0.35517687,-0.19788016,0.048503764,0.13596086,-0.004130602,-0.03715289,-0.009731932,-0.1321555,-0.4055592,-0.6336368,-0.0009800483,-0.3909072,-0.15160052,-0.22629046,0.1806655,-0.4506183,0.09563075,-0.03545704,0.5423879,-0.41389707,-0.18296258,0.34572443,-0.33397555,0.43712166,-0.5233111,-0.13723803,-0.20327474,0.13190225,-0.28687695,-0.18686928,0.47883466,0.25646925,0.5782803,0.06678315,-0.3387491,-0.3300763,0.032249454,0.12923373,0.36489272,-0.105277434,-0.38178807,-0.0796113,-0.11130444,0.27398533,0.25364912,0.3628311,-0.32783017,-0.11103965,-0.030572537,-0.17692293,0.15087639,0.5640964,-0.26168463,-0.15571538,0.20978378,0.52443814,0.14509806,0.002805812,0.24297889,0.04078201,-0.4558356,-0.26654878,-0.00039402928,-0.20562431,0.59823877,-0.05937932,0.29390964,0.68830293,-0.17093626,0.061962068,0.017069574,0.036896355,-0.21088552,-0.31364962,-0.44075066,0.5016075,-0.5113627,0.1504778,-0.3511066,0.8508703,0.15345071,-0.8012309,0.2529651,-0.5098964,0.08698373,-0.24181738,0.47872597,0.64274585,0.59228843,0.16671406,0.76687855,-0.5353905,-0.008000876,-0.0483256,-0.38380337,0.13316391,-0.20840335,-0.10020293,-0.39091828,-0.056763273,-0.0017551908,-0.12619671,0.0812286,0.30127534,-0.52413833,-0.13333881,0.058276992,0.84465724,-0.28558728,-0.016840747,0.7171079,0.9150711,1.056878,0.0004796737,1.1171349,0.16857578,-0.2503667,0.2332698,0.04147276,-0.81677675,0.33851737,0.42889038,-0.12107414,0.3484246,-0.08406405,0.030179905,0.55956763,-0.4578835,0.11524254,-0.17011191,0.22430389,-0.13768415,-0.22894947,-0.5706602,-0.2962513,0.06262701,0.0131383585,-0.1496021,0.33966866,-0.10289966,0.5430094,0.13364847,1.7241004,-0.03307811,0.089334235,0.06714385,0.46740177,0.25294465,-0.18245813,-0.10590859,-0.0359898,0.3025561,0.17531319,-0.5380698,0.10102116,-0.25027663,-0.60905266,-0.13929759,-0.4083925,0.039464083,-0.29539487,-0.56072515,-0.11419628,-0.09958006,-0.2760911,0.27748576,-2.3165023,-0.08590074,-0.20927441,0.4023705,-0.32706413,-0.28557086,0.00479057,-0.6088214,0.4473238,0.39808813,0.5453509,-0.68365467,0.4282832,0.5349702,-0.4742289,-0.048186813,-0.6301834,-0.124075934,0.0018465945,0.14875767,0.14463331,-0.18387116,0.052697264,0.25096747,0.47121528,-0.09944887,0.029924218,0.3005131,0.2860622,0.0368695,0.5896225,-0.11339973,0.5615647,-0.39906338,-0.15755312,0.42165932,-0.42981106,-0.0057389056,0.030618817,0.11621483,0.3658029,-0.5540606,-0.93762577,-0.75796455,-0.37179485,1.1527689,-0.2024122,-0.46919647,0.38144973,-0.025190694,-0.07016046,-0.06417266,0.5010657,-0.19837852,0.12337331,-0.8427374,0.0070581394,-0.22655511,0.26195383,-0.013687889,-0.05000371,-0.5172435,0.5011677,-0.047598932,0.57857805,0.5132402,0.25366133,-0.40714058,-0.6628813,0.1525042,0.9984948,0.39230442,0.12770998,-0.2073966,-0.11439557,-0.61699057,-0.0053625107,0.14156055,0.39947703,1.0985858,-0.10988621,0.1403745,0.25781414,0.08900191,0.059109736,-0.0874152,-0.44589403,-0.15839098,0.16869657,0.6041528,0.7034256,-0.05461661,0.27698946,-0.13606976,0.59340906,-0.20165937,-0.5831191,0.58526576,0.98923475,-0.17685437,-0.24528459,0.6699294,0.36731324,-0.2687349,0.62535614,-0.78564394,-0.4515598,0.48818588,-0.13992251,-0.51008576,0.18069792,-0.36769125,0.29828128,-1.0435086,0.38088745,-0.42883188,-0.21783893,-0.62407845,-0.13491312,-3.1879308,0.23944418,-0.14409105,-0.17129956,-0.07650423,-0.16088045,0.32560307,-0.7810317,-0.7700593,0.1332667,0.15267207,0.78635234,-0.0058022058,0.062283732,-0.30931643,-0.2908551,-0.20844293,0.099453375,0.2651946,0.2190782,0.24178384,-0.643935,-0.22417913,-0.18852463,-0.5683134,0.118659206,-0.52564585,-0.6733286,-0.22539333,-0.68264925,-0.3506414,0.6976738,-0.09555693,0.038516648,-0.021444967,-0.12949081,-0.119747065,0.23087265,0.0059496677,0.16464202,-0.010701115,-0.019559784,-0.06364714,-0.28866133,0.114186086,0.11922221,0.2304001,0.11554611,-0.3201346,0.2415341,0.758215,0.6956531,-0.21734868,0.6923433,0.5145031,0.006752372,0.43672252,-0.29213545,-0.39268127,-0.66876996,-0.18878281,-0.06893408,-0.45066068,-0.26427922,0.14472485,-0.35534698,-0.8569089,0.79406357,0.0017373307,0.15104966,-0.002064575,-0.038449235,0.32465097,-0.15477514,-0.2623639,-0.04517717,-0.07337255,-0.5237189,-0.30450282,-0.91247004,-0.61004436,-0.016651912,1.2759372,-0.12777512,0.028077511,0.15528563,0.024164122,0.27035502,0.107914194,-0.032146696,0.13051699,0.37788296,0.0110302055,-0.70411146,0.59787375,-0.0018198745,-0.06922644,-0.43902764,0.20551352,0.51344854,-0.65751475,0.24291642,0.31904012,-0.058403574,-0.06279372,-0.5937995,-0.14026105,-0.0541536,-0.15402956,0.51452035,0.21718237,-0.72177607,0.33971164,0.38318238,-0.24816836,-0.7655012,0.4492481,-0.05782487,-0.2814494,-0.07652478,0.2870929,0.030775595,0.054286234,-0.22418694,0.18689695,-0.35297483,0.20165393,0.41410422,-0.09663046,0.5522839,-0.21162947,0.064119406,-0.8338168,0.11968309,-0.55578554,-0.31415892,0.21552123,-0.105762616,-0.13144594,0.2753511,0.14992951,0.38295487,-0.20596603,0.052951314,-0.074456796,-0.279197,0.4767255,0.49012676,0.54252994,-0.51757616,0.58977944,0.03237227,-0.083056286,-0.07375594,0.049477916,0.5255662,0.08419679,0.29666874,0.02332156,-0.1386402,0.3470549,0.6602789,0.15396738,0.45755535,0.0068124705,-0.10391651,0.07315525,0.24362536,0.16842754,0.12198845,-0.5308201,0.05682366,-0.14729674,0.044838924,0.6369466,0.15091369,0.37884673,-0.07394797,-0.25512728,0.054276995,0.14012972,-0.31733721,-1.4837695,0.45118597,0.18415701,0.860237,0.6392355,0.14380002,0.05595668,0.52240896,-0.1565188,0.18627928,0.22855751,-0.14174715,-0.53479826,0.7980841,-0.6110421,0.42789808,0.17416371,0.07110773,-0.01056792,-0.02367711,0.49855575,0.7008199,-0.0021380612,0.2770848,-0.042226326,-0.16304262,0.20723298,-0.45302382,-0.124933235,-0.39119262,-0.240411,0.71959496,0.4420605,0.30091554,-0.16046606,-0.02762559,0.107335515,-0.22023785,0.24639463,-0.13650557,0.11622204,0.02501091,-0.4861775,-0.24218094,0.6248564,0.015459814,0.17239495,-0.11704842,-0.28821912,0.20873106,-0.054963384,0.09670215,-0.0053127473,-0.8537465,-0.02183706,-0.638363,-0.08722212,0.34537268,-0.22429173,0.12070114,0.20202589,0.081060715,-0.3368695,0.3601728,0.17334248,0.68467283,-0.051591218,-0.28669235,-0.32575372,0.11441798,0.1850435,-0.34498554,-0.082224905,-0.2498569,-0.02269732,-0.47535166,0.30503258,0.082329,-0.22462396,0.20912118,-0.15140884,-0.023684442,0.43248802,-0.19468403,-0.071946755,0.096982025,0.04221197,-0.21840255,-0.277721,-0.22467057,0.22862364,0.053383414,0.07961892,-0.0023846093,-0.029759841,0.14221181,0.5454701,-0.060315188,0.34322938,0.4606347,-0.08810481,-0.642163,0.0425568,0.24382018,0.4680594,-0.07190818,-0.057635177,-0.4632502,-0.33311257,-0.24689615,0.083279036,-0.2541311,0.39321235,0.042960458,-0.33510646,0.8182478,0.256198,1.25313,-0.11800779,-0.50186867,0.06287778,0.40010306,-0.019512352,-0.19079758,-0.35833025,1.0661128,0.5798572,-0.3422231,-0.3218561,-0.4029869,-0.18620834,0.08309824,-0.28093067,-0.25492945,-0.17824122,-0.74932575,-0.3816697,0.2615684,0.35002324,0.17390393,-0.15138374,0.101602614,0.22040297,0.06065783,0.33543035,-0.50776917,-0.075732045,0.12414087,0.21540008,0.057482485,0.13067997,-0.5098517,0.4153533,-0.6101491,0.14310098,-0.26434824,0.20569392,-0.061518915,-0.42573997,0.22491257,0.022673564,0.27626893,-0.37012705,-0.3839372,-0.22440471,0.5547997,0.08168525,0.25564185,0.7715491,-0.3723479,0.1682341,0.0075344318,0.5786673,1.0506752,-0.1512043,-0.02306199,0.40523916,-0.4211629,-0.6348556,0.2273331,-0.23835008,0.13711728,-0.15907721,-0.4054185,-0.63424605,0.1534792,0.24195062,-0.12991521,0.24971573,-0.6124965,-0.20213284,0.3359297,-0.35751915,-0.36630282,-0.48110482,0.03387509,0.42765373,-0.24368058,-0.30935344,0.231446,0.17296967,-0.053970624,-0.5320739,-0.23909776,-0.2564467,0.2812254,0.162097,-0.5768861,-0.038003888,0.09142796,-0.3856566,0.18953209,0.3228093,-0.25060046,0.11296922,-0.35175657,-0.029988868,1.0418651,-0.0039693033,0.0020953822,-0.5709253,-0.46460894,-0.9688896,-0.40068898,0.5709581,0.23559071,-0.026846869,-0.71991485,-0.067585096,-0.30190244,-0.03201591,-0.06367482,-0.09328932,0.3534624,0.16508438,0.6372079,-0.05355387,-0.77089036,0.3051956,0.28220218,-0.14418118,-0.47093382,0.5512167,-0.026698688,0.81995124,0.14275233,0.09955255,0.41106907,-0.5917943,0.022206562,-0.22732256,-0.2257575,-0.47862187,-0.020139256 -430,0.43284628,-0.6280102,-0.4661105,-0.17515256,-0.36287543,-0.047564384,-0.41436952,0.14968814,-0.015466826,-0.42452893,-0.12271454,-0.034624245,-0.045457177,0.522468,-0.2844855,-0.6080216,0.10847872,0.21019675,-0.66100013,0.8495828,-0.40106556,0.2282434,0.17502668,0.33181217,0.27738017,0.0019800875,0.34651944,0.07396941,0.15078886,-0.29332992,-0.05016038,0.16299722,-0.77424395,0.23434761,-0.27744195,-0.617248,0.050838705,-0.3871269,-0.44221255,-0.96880203,0.28042835,-0.9915381,0.6418777,0.04225725,-0.51226026,0.11305916,0.36912152,0.3523159,-0.055443235,0.016743716,0.03721768,-0.20508528,-0.20688686,-0.1343139,0.053699356,-0.63119644,-0.6916668,0.047918376,-0.8362056,-0.18714762,-0.1725627,0.2547733,-0.4390029,0.075566955,-0.16596739,0.2754008,-0.5806214,-0.16796279,0.117463745,-0.005639815,0.43537256,-0.64475614,-0.061407242,-0.2125379,0.13563868,-0.040142585,-0.24656078,0.38961357,0.22880994,0.6838364,0.10613227,-0.37897423,-0.061990213,-0.2428297,0.18268108,0.45152217,-0.022304995,-0.31874546,-0.2694433,0.015508004,0.59892005,0.27575448,0.015440558,-0.2977817,-0.07071746,-0.0055633783,-0.25183246,0.46100587,0.43980727,-0.35556954,-0.29052094,0.26722378,0.59090364,0.13076892,-0.24060354,0.23072144,0.10368768,-0.5511721,-0.17587182,0.35951713,-0.1837736,0.43074137,-0.1966739,0.2963889,0.6276846,-0.23991217,0.061244477,0.1753601,-0.015634337,-0.25408587,-0.033628944,-0.4077273,0.2861097,-0.6998132,0.14496711,-0.36470705,0.8051357,0.04579676,-0.73229885,0.25501293,-0.665572,0.22327577,-0.11727078,0.82291085,0.9285111,0.44968963,0.33037332,0.67849725,-0.21060348,0.041082088,-0.04964653,-0.31556305,0.18493976,-0.49446386,-0.009948194,-0.5967956,0.016525086,-0.1458542,-0.020909885,-0.20207189,0.8140796,-0.40292707,-0.12474822,0.011782007,0.71670425,-0.24391782,0.15972665,0.83655727,0.9401504,1.1499726,0.28485844,1.2888767,0.28286752,-0.08048008,0.01778948,0.029063335,-0.8564099,0.35464576,0.65189296,0.6039843,0.4445622,0.01791511,0.043236874,0.51037353,-0.6891023,0.10123829,-0.22885904,0.27980494,-0.19494824,-0.065793164,-0.7114814,-0.2374037,-0.0039005023,0.11683541,-0.0565643,0.3685148,-0.18831706,0.5560249,0.11081842,1.3897092,-0.26877183,-0.092605524,0.06093227,0.52857167,0.28399786,-0.17740776,-0.05793615,0.1471492,0.5424413,0.079899274,-0.73677635,0.15210582,-0.29752347,-0.44465867,-0.33167243,-0.38548407,0.07313661,-0.3262031,-0.3769731,-0.2630903,-0.017629582,-0.32838398,0.24700777,-2.3635924,-0.35556835,-0.17002524,0.30407065,-0.38382673,-0.19488072,-0.03888497,-0.4871716,0.5761389,0.5383353,0.60491604,-0.80380887,0.4787943,0.53750515,-0.5891398,0.02904376,-0.7886189,-0.20184056,-0.1617453,0.7007991,0.015142388,-0.258221,-0.151033,0.38864738,0.5689396,-0.19671483,0.21312417,0.4091625,0.34866786,-0.1162609,0.45648935,0.03964698,0.36303115,-0.3758312,-0.14417017,0.5331936,-0.16194668,0.23106954,-0.14753962,0.16043188,0.49558607,-0.69186443,-0.89775324,-0.66174215,-0.3877571,1.0815637,-0.38686222,-0.66812044,0.21289727,-0.32484207,-0.051809926,-0.019710246,0.37182027,-0.26474136,0.09772807,-0.863719,-0.08953314,0.055383272,0.3581141,-0.0007618964,0.058027744,-0.36462218,0.7199942,-0.06761594,0.33313414,0.25362816,0.30677778,-0.31195784,-0.5061592,0.19012567,0.772298,0.65416557,0.11439968,-0.39700085,-0.33024392,-0.2428576,-0.21595709,-0.101591244,0.45571023,0.89096034,-0.17988463,0.10981203,0.30079055,-0.32415706,-0.018625693,-0.18784492,-0.2303251,-0.14225397,0.24581735,0.6282207,0.60823566,0.018755564,0.36375025,-0.10985807,0.37918594,-0.018925011,-0.6577368,0.5690815,0.95279646,-0.10640652,-0.033397626,0.65449685,0.69687796,-0.3084716,0.66740936,-0.90724134,-0.4656895,0.39582726,0.053339582,-0.4378402,0.18278591,-0.56315154,0.34480497,-1.1029736,0.43187937,-0.44730407,-0.35242304,-0.67487746,-0.17029183,-2.8504775,0.22267506,-0.18117142,-0.13096984,-0.30229023,-0.3546969,0.48520088,-0.5963088,-0.6671506,0.08465368,0.07685784,0.7525886,-0.053735103,0.053532492,-0.4022284,-0.28791434,-0.47493818,0.13444361,0.23161857,0.24126102,-0.2165893,-0.45949632,0.026971022,-0.29536012,-0.3797616,-0.0700827,-0.70917946,-0.78927153,-0.28928784,-0.5006194,-0.3081238,0.5159846,0.06438826,-0.07962749,-0.26482138,-0.058494605,-0.031334765,0.46151236,0.25919273,0.10375234,0.21379888,-0.021837156,-0.0661676,-0.33078906,0.14631303,-0.05084129,0.14000079,0.34447783,-0.2295144,0.39345708,0.7738191,0.37613168,-0.14420818,0.7751959,0.7302652,-0.13912174,0.32338086,-0.11355574,-0.55336946,-0.58482236,-0.24838646,0.028670311,-0.36017323,-0.42687824,-0.045702547,-0.19907722,-0.80707806,0.72337264,0.115657054,0.20405017,-0.15785272,0.31726333,0.30469745,-0.09206699,-0.22928466,0.020988086,-0.36773568,-0.6114674,-0.337596,-0.9788459,-0.68931824,-0.15149556,1.1642425,-0.14287733,-0.14026447,0.11799294,-0.20447226,0.13438429,0.19496436,-0.054627564,0.28056163,0.45910972,0.14109269,-0.7509535,0.6417025,0.13888277,-0.024071634,-0.423618,0.06717243,0.5567539,-0.6575451,0.15626645,0.47533625,0.16814053,-0.09399652,-0.53103065,0.014243892,0.11804389,-0.20817055,0.6461285,0.21999599,-0.71109736,0.7130191,0.30669692,-0.29378477,-0.7537411,0.6300587,-0.04213817,-0.20466676,-0.123919025,0.46447268,-0.03305487,0.22373912,-0.29335552,0.375292,-0.44725677,0.32518747,0.3126886,-0.07178164,0.40214136,-0.21497306,-0.27166674,-0.7782359,0.08237908,-0.68938625,-0.17179625,0.1796474,-0.21134695,-0.061766054,0.17198288,0.046942454,0.37539098,-0.23654905,0.09633054,-0.03524087,-0.4417987,0.5157965,0.6119021,0.54016393,-0.32967618,0.7145244,0.23507895,-0.22882462,-0.29690823,-0.0016917458,0.37833586,0.13610028,0.45017013,-0.029741015,0.04419589,0.36716524,1.0163033,0.13614388,0.39013246,0.11290655,-0.12199625,0.31173164,0.13506953,0.26966643,-0.09612436,-0.2997923,-0.046690065,-0.14963265,0.0362282,0.6303763,0.22596304,0.2549651,-0.038156807,-0.13123128,0.0940511,0.11644881,-0.026294043,-1.4811461,0.31540936,0.4328626,0.5393562,0.6826049,0.085493155,0.20180757,0.7791873,-0.36582354,-0.12940684,0.22311296,0.19152176,-0.5725919,0.7815134,-0.7769988,0.4661141,-0.21329843,0.08818569,-0.10172093,0.076548204,0.5480691,0.78574646,-0.051889982,0.22023942,-0.14535286,-0.33862638,0.22726735,-0.38440326,0.025570462,-0.30819145,-0.35849422,0.77723736,0.47382402,0.37760043,-0.0600793,0.023495363,0.08164559,-0.11404286,0.40762123,-0.0845462,-0.056741007,-0.21939461,-0.6050982,-0.14257936,0.5745026,0.16976003,0.27365607,-0.018804763,-0.2642059,0.25883967,-0.10292685,-0.15480182,-0.043712784,-0.8147294,0.009574541,-0.41647837,-0.27965206,0.5304306,-0.46754757,0.17952682,0.24243604,0.016142543,-0.44713202,-0.12223633,0.017101428,0.65828276,0.09651936,-0.30303356,-0.18335535,-0.19254817,0.20992324,-0.44815418,-0.027170649,-0.1306441,0.08441305,-0.77024,0.6455245,-0.15459335,-0.35121387,0.30857036,-0.24332294,-0.0784558,0.39697045,-0.11932246,-0.32643923,0.11960236,-0.10424775,-0.24402414,-0.45028335,-0.07118537,0.44424227,0.07030349,0.07087066,-0.07617317,0.0031537712,0.051151,0.75148815,-0.18449919,0.39665794,0.31481332,-0.05106966,-0.47457328,0.09710058,0.20908499,0.49138302,0.008078933,0.20304516,-0.14560877,-0.33337852,-0.272422,0.16289112,-0.24278083,0.2927628,0.06937444,-0.38847896,0.8984231,0.099612236,1.1162775,0.068735845,-0.40552852,0.17442966,0.42699718,-0.08888136,-0.20333643,-0.2481402,0.68570846,0.54823345,-0.13554819,-0.19775662,-0.7255317,-0.209469,0.21251412,-0.22640356,-0.009704198,-0.14682539,-0.5734896,-0.29723832,0.18754165,0.2578272,-0.09768542,-0.08972834,0.13073413,0.023056405,-0.17713769,0.35069165,-0.48101735,-0.029196143,0.44940624,0.10040771,-0.11128503,-0.13767256,-0.5087362,0.38933364,-0.6194506,0.10861652,-0.43967724,0.2368106,0.043781154,-0.25685284,0.25749156,-0.056629658,0.24113502,-0.44594073,-0.25878796,-0.14324676,0.64013195,0.2917498,0.22582929,0.75815135,-0.47091904,0.38455158,0.082484,0.43323746,1.256397,-0.38404703,-0.028409805,-0.0102094365,-0.48891777,-0.62799984,0.4660901,-0.4004531,0.17834575,0.09739057,-0.5559583,-0.70012194,0.21018316,0.29357225,0.11666991,-0.029324966,-0.5424128,-0.24559622,0.22452198,-0.23888373,-0.20236918,-0.5357553,0.09219315,0.5766305,-0.2216471,-0.35742974,0.07458712,0.25483888,-0.27869278,-0.4447997,0.08935673,-0.26594704,0.25092295,-0.014581586,-0.2638496,0.03922052,0.23266566,-0.5703384,0.08031212,0.30819204,-0.3271887,0.045065053,-0.35043564,0.039567865,1.0675398,-0.33109137,-0.24482436,-0.6143287,-0.58503145,-0.81887007,-0.37538818,0.6685132,0.48346952,0.16624287,-0.4953386,0.07877501,0.012031336,0.031349596,0.0752769,-0.60504276,0.4981062,0.06659727,0.54622996,0.0074401754,-0.67024887,0.22646558,0.07074107,-0.016531656,-0.45665708,0.4673486,-0.18361211,0.7505433,0.1591235,0.14052862,0.028512508,-0.5457641,0.19432212,-0.09313322,-0.1692648,-0.7331191,-0.040297966 -431,0.22890776,0.113838054,-0.726351,-0.014920226,-0.20793132,0.14508858,-0.29825816,0.29427394,0.4277551,-0.3071332,0.10326342,-0.14745137,-0.24903795,0.23885968,-0.067348465,-0.5260765,-0.06296571,0.15431139,-0.50375676,0.6803718,-0.27586517,0.27324903,0.18862289,0.22179101,-0.05908961,0.16397518,0.1766296,-0.22392255,-0.09919466,-0.096514195,0.1661685,0.09046119,-0.39903364,0.24283062,-0.1376641,-0.18943158,0.14123696,-0.26302534,-0.4696635,-0.6782294,0.15125881,-0.6244184,0.57457006,0.042557884,-0.15412553,0.40811607,0.12402308,0.22523595,-0.11995847,-0.11314788,0.15218973,-0.20954747,-0.3079085,-0.3070159,-0.48377407,-0.26604262,-0.4000831,-0.08100773,-0.5615049,-0.011612189,-0.40130028,0.06741117,-0.25527748,-0.15627335,-0.2027476,0.20353231,-0.26547843,0.089939386,0.29772085,-0.0965453,0.23922403,-0.63377434,-0.038959287,-0.08402352,0.16928883,0.08115406,-0.049517743,0.39595076,0.18610694,0.6095949,-0.031310964,-0.07185222,-0.3511586,-0.17504174,0.10512379,0.46473533,-0.20657612,-0.14224361,-0.14915921,0.0015837859,0.5520822,0.3719977,0.1307023,-0.2787145,0.048307095,-0.07188226,-0.18350762,0.3020323,0.5044309,-0.33428344,-0.052351873,0.52466846,0.31672686,0.29699403,-0.12902492,0.027508607,-0.22501943,-0.3744598,-0.17551622,0.1608038,-0.09188145,0.36764425,0.10254885,0.16575782,0.6916969,0.06504164,0.06024118,-0.043996986,-0.034291316,0.009261827,-0.24978133,-0.08730625,0.15168367,-0.5862688,0.13414901,-0.014511275,0.49811956,-0.06512884,-0.78181267,0.36606464,-0.36101872,0.20474547,0.029951552,0.6316407,0.77882975,0.5474704,0.10656322,0.8978522,-0.5544024,0.061125115,-0.105668634,-0.33512396,0.31256238,0.12681109,0.26816306,-0.48722684,-0.038369153,0.12944229,-0.19203645,0.07119895,-0.0139803095,-0.47053796,-0.17907871,0.17256543,0.8947947,-0.19800244,-0.118854046,0.45112726,1.2768867,0.7274231,-0.06757558,1.3009094,0.22891493,-0.23206387,-0.039107542,-0.3505977,-0.77351326,0.09298487,0.25090137,-0.22877833,0.35880697,0.14332514,-0.09313824,0.2859073,-0.18978778,-0.27109843,-0.13104823,0.44056645,-0.05753749,-0.10779099,-0.1661109,-0.06454791,0.025161719,-0.030791827,0.23273952,0.3096971,-0.14502877,0.30771872,0.18770064,1.5357829,-0.19036181,0.12997915,0.12761433,0.26305813,0.273376,0.090298295,-0.018164646,0.49540985,0.1634461,-0.13645434,-0.4970522,0.14668792,-0.2509213,-0.50457025,-0.018501464,-0.29409772,-0.15203379,-0.03970992,-0.17102978,-0.11551415,-0.15585211,-0.4382066,0.38637635,-2.9689667,-0.110549435,-0.12393982,0.2057298,-0.24802695,-0.22876994,-0.18009202,-0.3103911,0.5033446,0.19983058,0.47726008,-0.5234115,0.3008793,0.5282852,-0.5472752,-0.16799626,-0.53587216,0.11929016,-0.0079902215,0.39978713,-0.044172406,-0.2098518,0.13754848,0.13936552,0.45697612,0.094547346,0.1171628,0.4774646,0.5934395,-0.10002806,0.27235654,-0.20023298,0.50368494,-0.31339988,-0.109166175,0.22815919,-0.2049594,0.43924174,-0.27839762,0.25054324,0.42811403,-0.23763014,-0.51068634,-0.29703802,-0.08250424,1.1073252,-0.3431595,-0.46785438,0.19443278,-0.20726448,-0.18595624,-0.04937346,0.5382601,-0.015557552,-0.08303365,-0.61952174,-0.12805618,-0.18159316,0.2150801,-0.009318471,0.18128294,-0.32751036,0.6266106,-0.0153368395,0.4996066,0.45854917,0.18044071,-0.16909109,-0.26087785,0.113807105,0.75429136,0.33238715,-0.022061443,-0.1780634,-0.17741826,-0.141429,-0.2750777,0.08961095,0.44364834,0.53618675,-0.1281035,-0.022296278,0.32387677,-0.1837913,-0.081378214,-0.20986666,-0.40662175,-0.09774186,-0.026259832,0.40016097,0.6705741,-0.17428096,0.41581133,0.06856454,0.09589963,-0.3579468,-0.5229023,0.6578665,0.31284174,-0.29662704,-0.07184775,0.58334947,0.38360873,-0.12806289,0.557346,-0.6327267,-0.36890188,0.594999,-0.04919074,-0.4265007,0.15054967,-0.23494552,-0.119535886,-0.86548007,0.15471181,-0.44587475,-0.46556967,-0.47279274,0.10814484,-2.3724353,0.031755447,-0.39415067,-0.014994486,-0.22395103,0.13286643,0.25013438,-0.38337848,-0.5504758,0.19499278,0.362691,0.4296408,-0.06506552,0.03348671,-0.23938936,-0.35194892,-0.24634762,0.20906706,-0.00026640893,0.17962469,-0.099152654,-0.36270398,-0.1839331,-0.041577592,-0.2571309,0.0711047,-0.3370008,-0.12603292,-0.1593087,-0.36459127,-0.21466415,0.56849873,-0.54107183,-0.08225942,-0.2546664,0.04755064,0.08617924,0.28944224,-0.028966289,0.05842612,0.023564806,-0.09671029,-0.054406084,-0.32952687,0.3325786,0.051859036,0.3617263,0.47286728,-0.16813228,-0.049936797,0.41906032,0.6248903,0.0058599473,0.7485023,0.31774598,-0.19068378,0.37667704,-0.32118714,-0.004237652,-0.5579833,-0.28585884,-0.16262144,-0.296595,-0.58110327,-0.12642314,-0.37954485,-0.8381029,0.4469569,0.23810394,0.14387183,-0.090183325,0.30566877,0.5548378,-0.17953806,0.12507522,-0.15921314,-0.2910629,-0.39179212,-0.2652301,-0.87755865,-0.3503523,0.5222293,0.8544327,-0.26466256,-0.15394899,0.1515792,-0.29573867,-0.05365008,0.09408396,0.15035537,0.12397049,0.34473324,0.13195014,-0.52731746,0.45213005,0.057692744,-0.06738159,-0.7044532,0.21826465,0.6654265,-0.5872316,0.3693251,0.46931702,0.08218567,-0.17380746,-0.6644253,-0.054193776,0.18520352,-0.23852943,0.28532708,0.14040388,-0.6882277,0.44685698,0.3343517,-0.16561309,-0.78480583,0.34491715,0.16862385,-0.09007836,0.10108875,0.32198623,0.031354982,0.07392362,-0.29518095,0.17220011,-0.35657227,0.41368935,0.16582607,-0.12856512,0.32052407,-0.107827865,-0.23254314,-0.7805831,0.123113185,-0.40577847,-0.16837496,0.42662138,0.13396019,0.1520883,0.026988832,0.22891696,0.34384057,-0.32354805,0.18740006,-0.22438008,-0.25136676,0.515781,0.55562234,0.25222084,-0.40071282,0.6673427,-0.06885321,-0.29777083,0.03071196,0.14219205,0.38021147,0.16506688,0.2584687,0.10068491,-0.2695879,0.12405389,0.6471809,0.13100664,0.044908356,0.16940166,-0.08746397,0.40421662,0.06759008,0.0875672,-0.15538415,-0.563626,-0.13575138,-0.16064388,0.13723952,0.44679463,0.3400531,0.3980517,0.06093015,-0.25327745,-0.028173085,0.1053332,0.115367845,-0.8375688,0.46594226,0.16987206,0.65953165,0.570939,0.106842354,0.14643161,0.5828202,-0.07042783,0.10484045,0.3932972,-0.03334059,-0.35905072,0.5838154,-0.57537276,0.31141302,-0.08522335,0.017512536,0.24077241,0.18655568,0.36648044,0.9639761,-0.15008315,0.03594102,-0.17460544,-0.23110642,-0.00587025,-0.007126081,0.07880423,-0.38099244,-0.58931977,0.5347649,0.30405876,0.37919888,-0.1711858,-0.107284896,0.14248435,-0.20526408,0.37851867,0.033715144,0.12980859,0.0132676605,-0.3386527,-0.22397962,0.55309504,-0.11984274,0.08600429,-0.024961213,-0.109854,0.18612695,-0.28565767,-0.11013316,-0.03590669,-0.55845696,0.036426138,-0.15485662,-0.5133899,0.5041661,0.012286535,0.359526,0.075850055,-0.01621206,-0.018711202,0.46842894,0.06640463,0.4904012,-0.057856336,-0.30837405,-0.14135262,-0.012730726,0.057698734,-0.2849242,0.03225072,-0.08566627,-0.00061005354,-0.68322647,0.37308267,-0.18614711,-0.23202582,0.031010918,-0.3281175,-0.044587784,0.4339975,-0.19380663,-0.16533785,-0.14246625,-0.36800098,-0.33006334,-0.3485776,-0.21952267,0.13698778,-0.061413877,0.056338437,-0.18869153,-0.05572145,-0.075664744,0.040196516,-0.033205613,0.022633553,0.3150209,0.20072612,-0.48706922,-0.06288936,0.21830685,0.35209975,0.17148025,-0.07554807,-0.33275324,-0.34769276,-0.4765615,0.20792542,-0.14072795,0.23608643,0.07297416,-0.38175312,0.8141281,0.0039866883,1.0262221,-0.042264473,-0.23308048,0.08889755,0.51380664,-0.017783856,0.017978204,-0.35491225,0.90865886,0.6511509,0.03969964,-0.04952654,-0.34223023,-0.119283326,0.27837244,-0.32714817,-3.491044e-05,0.09920255,-0.60126716,-0.3572537,0.20529579,0.08747165,0.0009474476,-0.23690931,0.060525026,0.02949744,0.24948207,0.37049854,-0.5247696,-0.35342023,0.2641982,0.17946202,0.07398669,0.15803401,-0.42426312,0.32009622,-0.56898874,0.13690825,-0.37044343,0.018042084,-0.1523655,-0.22639808,0.16187154,-0.026690014,0.32965487,-0.32334888,-0.32625416,-0.0798214,0.38323727,0.20993692,0.21527386,0.66332275,-0.19954354,0.03687733,-0.035219852,0.5209374,1.060847,-0.24287723,0.0073129814,0.3777389,-0.37939173,-0.6958938,0.045037482,-0.521109,0.07695913,-0.11718504,-0.45692894,-0.26813787,0.31527558,-0.11605081,-0.02897408,-0.04002986,-0.7010838,-0.16187264,0.065476425,-0.33148602,-0.18232365,-0.3055558,-0.06717383,0.9336037,-0.38376188,-0.26572987,0.097251095,0.2120176,-0.28610387,-0.57553905,0.14574848,-0.3733658,0.2325146,0.17380041,-0.33640486,-0.040990938,0.12566955,-0.584885,0.09647396,0.055051804,-0.23178886,-0.03357211,-0.2954207,0.22017466,0.65970117,-0.08598492,-0.097331986,-0.38318422,-0.5248578,-0.7260253,-0.4929593,0.11713578,0.1522529,0.022386499,-0.4804512,-0.009057776,-0.154811,0.06430543,-0.09069826,-0.39520797,0.3235712,0.14656208,0.15850927,-0.4398072,-1.0068375,0.010323493,0.119161285,-0.0393149,-0.5900343,0.54466766,-0.13485104,1.0220003,0.085511945,-0.14307556,0.2733593,-0.6313299,0.2514868,-0.43660113,-0.1964243,-0.6587722,0.23057882 -432,0.343856,-0.0948985,-0.5074908,-0.25063604,-0.08810692,0.10914751,-0.15083154,0.5692445,0.1873137,-0.50176626,-0.1739269,-0.018462896,-0.034379803,0.33895972,-0.3079685,-0.37903273,-0.15260777,-0.01936383,-0.45641467,0.5393026,-0.26916024,0.20669022,-0.074006446,0.50660884,0.28035063,0.32390675,0.07101626,0.05307891,-0.038711634,-0.43659586,-0.15048474,0.33899865,-0.4850135,0.3915711,-0.14986897,-0.20409232,-0.024973737,-0.4436005,-0.31932512,-0.7485868,0.23045489,-0.8767154,0.46558148,-0.1175319,-0.26628736,0.24198332,0.3268372,0.17204182,-0.022772243,-0.26910532,0.36777988,-0.1969429,-0.069210365,-0.31689838,-0.12652668,-0.39972937,-0.47804514,-0.11150846,-0.320816,-0.28920907,-0.30192602,0.25414267,-0.2590446,-0.087513715,-0.034785084,0.68788457,-0.47445157,0.28939733,-0.004138644,-0.3484111,0.30590773,-0.7484305,-0.17524019,0.07795826,0.3440994,-0.13805816,-0.10720343,0.3331901,0.14552933,0.29048678,-0.1705899,0.039365843,-0.32719484,-0.2237462,0.17953593,0.5185706,-0.15471125,-0.41209057,-0.045168407,-0.11123073,0.30319786,0.2492409,0.13652548,-0.403683,-0.14727259,-0.07196983,-0.17176008,0.49916995,0.35899633,-0.10262227,-0.07945042,0.41335207,0.4152642,0.3110474,-0.2662947,-0.11901905,-0.12860161,-0.43980423,-0.09994961,-0.12094741,-0.12990576,0.44801039,-0.040553056,0.36061537,0.6320287,0.03590917,-0.08945394,0.07816609,0.1732572,-0.099962756,-0.2608145,-0.14124677,0.16838945,-0.28356472,0.120086744,-0.12050577,0.69493794,-0.10182906,-0.68600905,0.336858,-0.5368284,0.009907945,-0.0911419,0.41945064,0.43097466,0.45260188,0.21652205,0.6809865,-0.45700902,0.022613006,0.05569174,-0.34394646,0.097588494,-0.07998077,0.08820923,-0.6055179,0.045110688,-0.019491963,-0.03899665,0.17786247,0.34747612,-0.5912236,-0.08087374,0.19194777,0.89693743,-0.24917096,0.04276019,0.70104444,1.005781,0.8652939,-0.021982808,0.93347234,-0.048257835,-0.20771953,-0.15041897,-0.07286214,-0.5875846,0.2342375,0.44243434,-0.16356692,0.07954648,0.07397939,0.23323454,0.3699997,-0.27814567,-0.14442874,-0.15463935,0.3352466,0.16946353,-0.11300461,-0.44246963,-0.22560279,0.06190386,0.14400141,0.17425409,0.07440481,-0.3174423,0.3766527,0.20443891,1.8241178,-0.057627637,0.055460252,0.12144168,0.2949855,0.22842953,-0.03546457,0.03679227,0.41868722,0.24590427,0.15939368,-0.47162172,0.21154903,-0.23103139,-0.44903627,-0.08893318,-0.44524178,-0.27633184,-0.05714757,-0.243097,-0.1765944,-0.019293023,-0.33691108,0.3826056,-2.9015913,-0.1066861,-0.24785392,0.37551305,-0.029514648,-0.3559725,-0.068924695,-0.40976068,0.38953245,0.32792667,0.62273765,-0.5405634,0.19419065,0.49579054,-0.5207934,-0.2215666,-0.37812594,-0.12265471,0.10489815,0.3908258,0.17367442,0.021958195,-0.07691842,0.3238947,0.3537687,0.08002353,0.14515577,0.4279687,0.4446676,-0.29707295,0.560522,-0.1560958,0.57981193,-0.069870144,-0.18778434,0.34332642,-0.36547932,0.14580847,-0.17265779,0.11606869,0.4534305,-0.09748059,-0.8591627,-0.53788555,-0.16621725,1.2469573,-0.18669316,-0.56259346,0.23492835,-0.19946139,-0.41164318,0.08821122,0.46761644,-0.1638942,0.081860386,-0.7902547,0.096780665,-0.3001514,0.23954108,0.0065585147,-0.24418443,-0.5038491,0.73625183,-0.021657787,0.74044454,0.3059641,0.1915684,-0.43837196,-0.20487793,-0.032376572,0.898645,0.5116066,-0.018215898,-0.10132863,-0.10066133,-0.45333037,-0.18407463,0.21249554,0.78221214,0.4554914,-0.027458243,0.053006027,0.31514993,-0.026387779,-0.012052624,-0.16897069,-0.35053423,-0.025268666,-0.028179446,0.5107575,0.64511967,-0.059974,0.42898348,0.045181815,0.46586365,-0.114941485,-0.44369617,0.22859544,0.6508486,-0.16050933,-0.34820366,0.71848094,0.4267922,-0.16007999,0.3533293,-0.5434155,-0.37725103,0.5927583,-0.13825212,-0.53424495,0.25634748,-0.2726031,0.06394959,-0.75858086,0.3904532,-0.19458032,-0.7599863,-0.5573258,-0.13380185,-2.4899766,0.18942359,-0.1380563,-0.26068416,-0.27824384,-0.23710236,0.05042032,-0.6316028,-0.70715785,0.10511708,0.045810994,0.51845443,-0.16487297,0.09800568,-0.07393949,-0.24255705,0.09359123,0.27651203,-0.0669901,0.34897768,-0.048712485,-0.38429457,-0.21753788,0.071252026,-0.40836507,0.055488925,-0.5179299,-0.5982994,0.0997634,-0.56693965,-0.07555162,0.6558351,-0.50804806,0.021982102,-0.27092963,0.11780128,-0.065134816,0.077416666,0.18886654,0.107099295,0.14233659,0.041990988,0.06438918,-0.38432252,0.3156792,0.010673802,0.3035011,0.21519385,0.09687367,0.25362667,0.42429477,0.5610381,-0.21309185,0.93092835,0.3208483,-0.06779209,0.107846774,-0.26225916,-0.48009217,-0.4917553,-0.3520201,0.36163074,-0.34114093,-0.28183633,0.004158552,-0.31341457,-0.7132779,0.511633,0.11598532,0.2019701,-0.11441915,0.012412308,0.42709434,-0.15143083,-0.17285424,0.03732968,-0.10331997,-0.6453285,-0.31690872,-0.6826344,-0.45747566,-0.06566739,0.8740566,-0.24217829,0.019143943,0.17736514,-0.2142397,0.12928057,0.061523356,-0.011628673,0.12220489,0.4111374,0.0067413105,-0.65206087,0.40958178,-0.26368484,-0.06038762,-0.5408834,0.26382077,0.63218176,-0.46293515,0.34779704,0.36139858,0.0670078,-0.24853936,-0.40699893,-0.0006311622,-0.11891627,-0.17312989,0.394914,0.15342568,-0.5549616,0.38769785,0.13115293,-0.19223136,-0.7043369,0.528706,-0.14531864,-0.16189758,-0.018361267,0.39094633,0.07457414,-0.09636022,-0.36324582,0.114003025,-0.280498,0.3429024,0.17498933,-0.032534413,0.28859144,-0.18324134,-0.08018549,-0.6871379,0.079217955,-0.498964,-0.42795944,0.23275962,-0.009975597,-0.034107737,0.14892116,-0.02292495,0.2714512,-0.5125538,0.07255482,-0.16528323,-0.42202532,0.5136897,0.45312965,0.6359834,-0.39298072,0.57643056,0.06700694,-0.12220522,0.09719315,-0.0010364148,0.42220575,-0.03986941,0.30819613,-0.004894614,0.045130644,0.35216787,0.5603024,0.24830765,0.34538034,-0.041853603,-0.253533,0.03141075,0.00535581,0.18025826,0.002587291,-0.7802821,0.271589,-0.30704525,-0.0049092416,0.4919031,0.16462411,0.26556608,0.06290928,-0.5331854,0.14452943,0.2148259,-0.038614675,-1.0565362,0.30676368,0.05555496,1.0467257,0.32856897,0.10718958,0.06988095,0.7729941,-0.084965944,0.053171866,0.32740358,0.06209004,-0.33890995,0.50704813,-0.80064553,0.36775815,0.00043848387,-0.03715155,0.15473893,-0.054587882,0.32664618,0.70157087,-0.22221628,0.0667337,-0.048530392,-0.31759247,0.07264908,-0.40980715,0.07101012,-0.30917743,-0.42043594,0.42592114,0.57532436,0.4089864,-0.23794493,0.13963129,0.059883814,-0.11535645,0.13041623,0.011372202,0.06981854,-0.084650606,-0.63251454,-0.08739584,0.3819825,-0.005625036,0.17453417,-0.10956462,-0.15995726,0.37360522,0.06290277,0.1155156,-0.008163175,-0.51596683,0.03679817,-0.32163,-0.4518262,0.3783446,-0.21215382,0.149753,0.17776471,-0.05740908,0.016620673,0.39430487,0.31585538,0.8763873,0.15791765,-0.056180887,-0.38950267,0.18242396,0.12144462,-0.15174024,-0.032013163,-0.4112522,0.13564986,-0.6292622,0.37278306,-0.11002084,-0.42576128,0.04129764,-0.24543296,0.08624719,0.36638826,0.010903707,-0.11596047,-0.16541964,0.02156678,-0.0054763462,-0.13107058,-0.22042462,0.19442496,0.09162622,0.00021869403,-0.2019232,-0.077382796,-0.36355722,0.07335795,0.001485687,0.57080716,0.44918293,-0.069021694,-0.31304976,0.06381233,0.0927097,0.5559096,0.03615533,-0.053395946,-0.10082225,-0.5710816,-0.44076332,0.53540796,-0.06950731,0.3467476,0.2756984,-0.10927113,0.55984294,-0.1621986,1.1320007,-0.0016985948,-0.41189083,0.12600213,0.49906117,0.059116364,0.031811886,-0.3105019,0.9726132,0.46651238,0.04099583,-0.056593813,-0.412031,0.03118045,0.27098888,-0.17234462,-0.061406054,-0.19404468,-0.6274094,-0.421363,0.102954075,0.16932562,0.21891436,-0.13422707,-0.067001745,0.38995552,0.07379123,0.28266117,-0.38031524,-0.17114346,0.20348524,0.08626751,-0.16841468,-0.008108834,-0.5310347,0.35262614,-0.45907623,0.15229867,-0.49126202,0.1820316,-0.2735379,-0.11153335,0.14739448,-0.2943278,0.42547005,-0.42320564,-0.47964185,-0.09913477,0.34663063,0.14158146,-0.029643547,0.49116734,-0.3256028,0.03003542,0.00027223735,0.48486096,0.86551344,-0.33740857,0.1937487,0.4571506,-0.45279294,-0.51942915,0.104696974,-0.32436657,0.123277105,-0.0684784,-0.19864693,-0.29266727,0.35032675,0.27145046,-0.093519084,-0.1054362,-0.4011456,-0.100602284,0.36362627,-0.30584177,-0.15028456,-0.26968363,-0.141719,0.36844715,-0.3499676,-0.4729033,0.11600414,0.29602125,-0.02862057,-0.6351689,-0.041633762,-0.33410507,0.48297003,0.043108344,-0.47365522,-0.3730521,-0.07571534,-0.36056322,0.31649765,0.1357709,-0.23095372,-0.048261944,-0.2247978,-0.029008912,0.8665902,-0.1349391,-0.025372697,-0.44658074,-0.2968252,-0.6422174,-0.34824717,0.20372626,0.06284371,-0.06736329,-0.5832258,-0.20018516,-0.26256046,-0.025217175,-0.17924307,-0.19367959,0.3485431,0.08012966,0.6009134,-0.40655282,-0.951018,0.40974694,0.17830542,-0.022606198,-0.68523586,0.5149224,0.003503866,0.57985604,0.048806135,0.091219984,0.23566912,-0.5911335,-0.1028914,-0.23647764,-0.18480395,-0.471498,0.27989072 -433,0.27506414,-0.018000979,-0.41581768,-0.1941529,-0.27825344,-0.08691562,-0.15631384,0.26924276,0.2667783,-0.067048796,0.07018325,-0.010746259,-0.1526925,0.47601846,-0.07709804,-0.84789306,0.071184985,-0.028383275,-0.6882118,0.54178834,-0.5722021,0.2745378,-0.10776433,0.35728306,-0.08044604,0.20256898,0.06786693,-0.07953261,0.15952608,-0.06648321,-0.105281286,0.22886637,-0.6178366,0.35758665,-0.04646381,-0.24557965,0.0727094,-0.2417365,-0.38330925,-0.57232106,0.18487015,-0.5429131,0.59113365,0.044511054,-0.32676938,0.2422571,0.22364885,0.25574565,-0.36116028,-0.021880733,0.27908558,-0.15076983,-0.16401713,-0.15015496,-0.21954481,-0.53759223,-0.54883164,0.02197917,-0.7711905,-0.0909289,-0.24537228,0.22153696,-0.3529355,-0.07517863,-0.26274273,0.47666708,-0.34361127,0.17302468,0.14199881,-0.110319145,-0.065350644,-0.38453534,-0.08330501,-0.09884539,0.29640672,0.020152735,-0.3170217,0.3374052,0.37413904,0.48759687,-0.049121615,-0.24767703,-0.25527507,-0.17645772,0.18196625,0.47071093,-0.018328428,-0.26026374,-0.2189408,0.044349805,0.123988815,0.23286694,-0.061878428,-0.46506995,0.041886587,0.0049647368,-0.32586053,0.58095163,0.40535054,-0.5486348,-0.38362342,0.5220241,0.36098802,0.2026053,-0.24695651,0.16445614,-0.07197123,-0.5361593,-0.2416795,0.17350386,-0.1326073,0.3609963,-0.15676938,0.1752879,0.70299286,-0.19049191,-0.1593332,0.09448438,-0.21882409,0.10231069,-0.32052034,0.025062634,0.037279792,-0.5563591,0.061201558,-0.21640888,0.8062169,0.05042582,-0.8233712,0.28694677,-0.5904843,0.06371541,-0.20292942,0.6620147,0.8342132,0.33709347,0.21924034,0.75336206,-0.5078212,0.08219877,0.06672762,-0.39068043,0.02710124,-0.042492066,0.20088723,-0.6051677,-0.006406885,-0.053151462,0.086837806,0.13148037,0.17590117,-0.39512417,-0.14542745,0.09037364,0.83564335,-0.29479435,-0.30205154,0.7653671,1.098113,1.0268279,0.11007099,1.2047147,0.40358722,-0.10916788,0.14553049,-0.42058828,-0.49770424,-0.0031756805,0.2188155,-0.11219649,0.27716443,-0.02843136,0.13638937,0.43207085,-0.21725999,0.01511848,0.03223068,0.5087035,0.05926421,-0.15502277,-0.17717582,-0.24269469,0.18586993,-0.10507139,-0.03470793,0.35321766,-0.20971915,0.33442286,0.14101234,0.9994853,0.23283936,0.15363114,-0.05772137,0.4379021,0.24641384,-0.10213321,-0.09273608,0.4052486,0.37062436,-0.05706082,-0.56752014,0.07809667,-0.44452265,-0.27381867,-0.18367052,-0.44752643,-0.21235606,-0.03355104,-0.30922747,-0.22483373,-0.0040364745,-0.13165836,0.543366,-3.007884,-0.2371659,-0.15849908,0.20647614,-0.14303707,-0.1321253,-0.12513775,-0.49708843,0.3269511,0.35969183,0.36657906,-0.5580474,0.55684924,0.3203796,-0.41786352,-0.24397938,-0.6973674,-0.18248327,0.056952477,0.3430581,-0.11413883,0.047684744,-0.13796066,0.105451584,0.6598376,-0.07391545,0.026372384,0.14805569,0.5712941,-0.13256243,0.52998745,0.10593592,0.6523049,-0.27481854,-0.15595442,0.26483876,-0.39718232,0.5289889,0.07741535,0.15146627,0.5233912,-0.42702115,-0.9141124,-0.42879596,-0.3537911,1.1105874,-0.28016263,-0.29604974,0.29866183,-0.3012968,-0.13639967,-0.03479329,0.3458951,0.002916203,-0.11501361,-0.6077945,0.19712344,-0.21332678,0.2213289,-0.08797788,0.010548736,-0.19063732,0.68705,-0.061393175,0.55768496,0.2569437,0.09692964,-0.40546206,-0.30658787,0.031119611,0.8405746,0.36832288,-0.011411394,-0.12690352,-0.20708445,-0.22020754,-0.32814163,0.08614178,0.679895,0.47635126,-0.08367057,0.09548993,0.44600445,-0.27214268,0.104974344,-0.11439863,-0.32763317,-0.07361306,0.23161313,0.4303183,0.6548005,-0.22533043,0.66378176,-0.025378194,0.04156742,-0.23677577,-0.44832614,0.5446554,0.47025383,-0.10586922,-0.32562065,0.47422224,0.38578928,-0.20899075,0.3967647,-0.44834378,-0.33138803,0.6953475,-0.0836255,-0.3390644,0.030943481,-0.24314973,-0.15131694,-0.890031,0.28704745,-0.33139977,-0.6447812,-0.4947704,-0.107967615,-3.8110754,0.04313095,-0.2857097,0.07068088,-0.15384696,-0.061952714,0.2556182,-0.43365,-0.40719938,0.21396142,0.18957426,0.44481552,-0.10985829,0.16961217,-0.24916026,-0.27891478,-0.33348128,0.26178804,0.04671137,0.2011945,0.10015479,-0.39900228,0.21815032,-0.11999167,-0.5219294,-0.055111427,-0.38142845,-0.34391367,0.018223587,-0.5493876,-0.20443231,0.74220806,-0.54389656,-0.056268223,-0.3243256,0.041301075,-0.082350604,0.38007757,0.18453392,0.2130566,0.018379541,-0.04408376,-0.27184188,-0.44177192,0.18905303,0.11185797,0.40199375,0.49337357,0.1384483,0.25879824,0.6425492,0.6251765,0.052753273,0.6832656,0.16592942,-0.1961372,0.38238522,-0.24185228,-0.1790732,-0.59565914,-0.44832066,-0.2588223,-0.40903085,-0.5588665,-0.0544815,-0.20483285,-0.74498105,0.47085905,0.21696314,0.02666541,-0.23381259,0.30249053,0.27281708,-0.12545177,0.17491056,-0.17178679,-0.18360645,-0.41479862,-0.4059605,-0.69178903,-0.47890377,0.23572055,1.1220337,-0.24063618,-0.062443033,-0.04365423,-0.33652973,-0.08546483,0.024368923,0.18794507,0.31022274,0.22637513,-0.14231607,-0.6268917,0.35395527,-0.29093477,0.053068757,-0.5643132,0.035321455,0.81229717,-0.7236439,0.64057153,0.19227457,0.1905788,-0.013706519,-0.5739438,-0.34048197,0.055196628,-0.09485273,0.35647964,0.13369504,-0.6928406,0.44243982,0.27689713,-0.18081625,-0.70622635,0.4302185,0.015627421,-0.11280219,0.13772377,0.31225646,0.2611271,-0.09508023,-0.022693377,0.32059538,-0.45167038,0.2379965,0.07464379,-0.034627896,0.2397016,0.008129725,-0.20542862,-0.5499682,-0.15300393,-0.42153352,-0.36224237,0.058727667,0.11975603,0.1921302,0.061615486,-0.08100788,0.26129586,-0.15735966,0.2490041,0.010263479,-0.13663727,0.32567424,0.406462,0.30246398,-0.5482553,0.57614106,0.29942787,0.08264477,0.03970067,0.1515809,0.44184902,0.17107306,0.4558931,-0.08430241,-0.14823252,0.23844655,0.86137986,0.13607004,0.24839677,0.15051112,-0.030917048,0.22999135,0.0690355,-0.027327742,0.09377468,-0.26976562,0.05257869,0.02562621,0.24855742,0.44504637,0.16516949,0.293737,-0.0067590335,-0.06360377,0.13196188,0.22612514,0.07379262,-1.0535167,0.49289852,0.25645375,0.7360202,0.45200032,0.09306634,-0.055299,0.6673408,-0.27594075,0.040377684,0.5253989,-0.029036295,-0.3068848,0.5620307,-0.6124738,0.6465436,-0.13026363,0.074490756,0.22844134,0.16230623,0.22832134,1.0122977,-0.16244675,-0.015619512,0.061200477,-0.40276676,0.06886614,-0.21861324,0.14350374,-0.32858998,-0.35056353,0.6538692,0.43505356,0.14901075,-0.24349032,-0.0104112085,0.060658243,-0.15588555,-0.087463774,-0.15079346,-0.0349262,-0.17525643,-0.50067425,-0.11874248,0.6564372,-0.14096998,0.06481722,0.10581219,-0.16373433,0.36724275,-0.22050546,0.013092334,-0.025467783,-0.5465486,-0.01427468,-0.21476248,-0.49158207,0.28179842,-0.43909612,0.24901755,0.13798885,-0.014306387,-0.23861185,0.49110258,0.038298585,0.6724195,-0.20178403,-0.025386218,-0.21759135,0.050897956,0.256108,-0.2387836,-0.02600329,-0.49086776,-0.00669362,-0.7012206,0.34861276,-0.2651815,-0.37098455,-0.39692357,-0.099527486,0.11335841,0.40487495,-0.28231838,-0.11727974,-0.0051211235,-0.21385002,-0.29095995,-0.018618045,-0.21315274,0.30504093,0.15231012,0.14445028,-0.07986773,-0.25352138,-0.1648326,0.16766335,0.11033487,0.18310048,0.055297416,0.09861675,-0.19071124,0.035177276,-0.062242653,0.40543666,0.20353852,-0.013043018,-0.12728843,-0.13563463,-0.34110802,0.3549606,-0.09537117,0.25019658,-0.040736053,-0.5739947,0.69056374,0.0583558,1.361031,0.08555811,-0.36574686,0.12252743,0.60337454,0.12224959,0.1951076,-0.15573381,0.80154705,0.5327108,-0.04575267,-0.12613787,-0.45332274,-0.24921598,0.35782778,-0.28315282,-0.29645592,0.08535172,-0.5823361,-0.061737895,0.12189767,0.08328785,0.15577577,-0.08500011,-0.27063277,-0.010985489,0.21388935,0.4272959,-0.6575492,-0.06608736,0.20766027,0.37625366,0.065722,0.22913098,-0.3561077,0.34341228,-0.7013804,0.33457425,-0.42374232,0.10771505,-0.2853269,-0.14284907,0.21287915,0.11273584,0.31070006,-0.18608679,-0.27586764,-0.13949244,0.6920255,0.28846586,0.30705863,0.7670987,-0.28854033,-0.1829009,0.060321026,0.5354017,1.0891024,-0.074827276,-0.36102512,0.075190976,-0.2863354,-0.7064472,0.11011289,-0.47849458,0.021419208,-0.049866863,-0.28479046,-0.18538603,0.2805659,0.080863826,0.18943486,0.14117745,-0.6749016,-0.15033549,0.38749915,-0.22991107,-0.31412274,-0.20805621,0.23974395,0.8993903,-0.26757038,-0.2720956,0.11086981,0.19356304,-0.26577532,-0.5388753,0.10999697,-0.31891558,0.29821312,0.16355893,-0.3345714,0.051571324,0.28922248,-0.50919414,0.19291559,0.32773682,-0.31471828,-0.029572196,-0.14267935,-0.2584306,0.9631764,-0.15133867,0.29674688,-0.56656307,-0.5995234,-0.55196273,-0.37694848,0.25822887,0.12341734,-0.0933258,-0.57449,-0.22324476,0.0040509976,-0.08391379,0.116787426,-0.60313493,0.35845274,0.0472979,0.30340323,-0.08250827,-1.0714452,-0.066427454,0.22698127,-0.07795334,-0.65626407,0.4792207,-0.25211477,0.69715494,0.022891285,0.036821492,0.2192505,-0.48732615,0.26694587,-0.49109915,-0.09021825,-0.57533646,0.18821104 -434,0.21671604,-0.14576726,-0.4396658,-0.16615231,-0.03888813,0.13179046,0.010855798,0.44126204,0.21987823,-0.2924538,-0.07857022,-0.01784355,-0.07286522,0.28354672,-0.0836324,-0.4618145,-0.09194422,0.0064898254,-0.42765176,0.50929075,-0.3743372,0.33982697,-0.18169667,0.23905872,0.049272887,0.46335572,0.012584706,-0.23936138,-0.021453539,0.07232802,-0.13762389,0.07590981,-0.29754364,0.10422266,-0.008360481,-0.11948124,0.13518767,-0.14684643,-0.3642183,-0.5459616,0.31392956,-0.6115729,0.27617797,-0.052643344,-0.1600217,0.19264896,-0.009103866,0.26677302,-0.4197208,0.040180467,0.1247025,0.06780619,0.029970497,-0.07900189,-0.103924975,-0.3441148,-0.42463753,-0.051598325,-0.4384201,-0.16416411,-0.2241871,0.013276321,-0.3011873,-0.1275461,-0.052097205,0.30120182,-0.4744174,0.04054548,0.20979223,-0.123676576,0.17381884,-0.60366035,0.0032758713,-0.0791308,0.23745912,-0.12826405,-0.14021303,0.35379118,0.16701144,0.37537375,-0.01469383,-0.052730188,-0.23532481,-0.1460355,0.18426739,0.30107197,-0.074536756,-0.3569177,-0.06515055,0.038869165,-0.0070711565,0.14990367,-0.07133912,-0.26534688,-0.15075992,0.119175814,-0.21445383,0.13722964,0.38960043,-0.33176154,-0.28597492,0.5190667,0.680513,0.17194414,-0.1823098,-0.01662411,0.021543443,-0.34315094,-0.1665469,0.06437426,-0.16690359,0.4661752,-0.09998706,0.15844399,0.6870021,-0.2684001,0.2293706,-0.13386269,-0.00436124,-0.25857064,-0.18341725,-0.15374002,-0.023888268,-0.32417208,0.14468366,-0.0547477,0.6937138,0.19648512,-0.58449817,0.2839811,-0.39253342,0.16074158,-0.15580127,0.5660306,0.6590254,0.33114845,0.13573319,0.7046505,-0.54580694,0.15045461,-0.08017949,-0.39604595,0.23726,-0.1813377,-0.32754505,-0.5365011,0.014508668,0.18478104,-0.21864031,-0.095114104,0.011015827,-0.46738005,-0.01781035,0.0939517,0.6784943,-0.3083974,-0.02219191,0.30949125,0.97391254,0.8350811,0.020585299,1.158613,0.14033826,-0.2910104,0.39471313,-0.45877746,-0.7630686,0.21048026,0.37029874,0.08544178,0.29185003,0.17290844,0.09058203,0.32351542,-0.49232545,0.19856617,-0.21886893,0.36122695,0.151572,0.01251254,-0.30302677,-0.13059801,-0.041908544,0.033733074,0.035066646,0.24454387,-0.21232969,0.061489318,0.110588886,1.7823108,0.052308485,0.1689474,0.12798722,0.53809226,0.118555546,-0.1522459,-0.13559748,0.44925976,0.46297294,0.07505036,-0.6441526,0.1346902,-0.2959094,-0.5015023,-0.12682232,-0.40157983,-0.03287922,-0.019244047,-0.46223825,-0.07590027,-0.050374962,-0.19912843,0.44254604,-2.9483306,0.0070397565,-0.16159429,0.3562898,-0.37102565,-0.19121294,-0.08123185,-0.36290917,0.2881422,0.44043052,0.36445385,-0.5542254,0.23783468,0.4662331,-0.45513442,-0.0872135,-0.4791398,0.0019133012,0.01845998,0.40692264,0.022045493,0.087355055,-0.061258364,0.13331005,0.22835064,0.048625812,0.060216565,0.26823145,0.21728247,0.18082261,0.48613197,0.053706225,0.38416958,-0.11945343,-0.011623895,0.17045905,-0.26085472,0.40607125,-0.1067913,0.1393225,0.31817374,-0.32393128,-0.68387806,-0.6388418,-0.28693503,1.3607057,-0.30874628,-0.24896882,0.33741978,-0.3727109,-0.16730683,-0.2867817,0.4785406,-0.119139,-0.15166196,-0.7367063,0.18783692,-0.06626064,0.3471678,0.06695916,-0.0455721,-0.36661634,0.61689365,-0.002055033,0.5730497,0.3193015,0.045879528,0.0058399043,-0.40037423,0.025608849,0.6210888,0.34710154,0.08710531,-0.10710421,-0.13604528,-0.36149016,0.009469772,0.22075869,0.33526003,0.6252335,0.008230916,0.06959353,0.19871108,-0.071488775,-0.07708063,-0.13250032,-0.18792349,-0.006543659,-0.10030716,0.45465457,0.54527944,-0.29055503,0.2841566,-0.11607465,0.062239435,-0.21564975,-0.3629527,0.5978395,0.62002295,-0.16411476,-0.086486764,0.4334891,0.5570151,-0.23883823,0.30714625,-0.6174333,-0.04127473,0.5491756,-0.23076038,-0.26102734,0.10766511,-0.31696665,0.15162945,-0.8218279,0.15785922,-0.16343832,-0.2980885,-0.5737121,-0.16934608,-3.3325572,0.042349003,-0.16205554,-0.2605029,-0.0828259,0.056550495,0.32536164,-0.6897012,-0.4595345,0.18965912,0.055038232,0.5262267,0.04969844,0.01598804,-0.3245679,-0.1466196,-0.37346593,0.07014597,-0.0024300218,0.27305043,0.041909643,-0.47299936,-0.109424844,-0.024960598,-0.36665618,0.13384151,-0.36002052,-0.2999925,-0.18223931,-0.42586327,-0.260024,0.7166376,-0.22954842,-0.0021113951,-0.09062126,-0.050525267,-0.15278901,0.21508007,0.2129133,0.007687326,0.064969555,0.046053533,-0.055427518,-0.33734688,0.29560757,0.040894914,0.3251477,0.2602902,-0.02660156,-0.0086691575,0.5189021,0.45828596,-0.16011448,0.6712143,0.6384984,-0.1630168,0.2550631,-0.36852664,-0.027341468,-0.39473048,-0.33807555,-0.13182727,-0.30834988,-0.56339556,-0.09560881,-0.37580347,-0.7760876,0.32945263,-0.042556245,0.15349859,0.10896052,0.09364555,0.48124236,-0.032833498,0.12664399,0.09611745,-0.07135823,-0.50775516,-0.39750162,-0.5455232,-0.24052949,0.30076537,1.0902883,-0.32639298,-0.13519984,-0.06618771,-0.37313882,0.004219826,-0.0072148363,0.028621078,0.16849962,0.24726114,-0.06792227,-0.6091313,0.43709722,-0.017021434,-0.08778828,-0.66561204,0.02364157,0.43106174,-0.63699263,0.4579838,0.2605518,-0.023154374,0.043534692,-0.4438421,-0.22758952,-0.10779837,-0.14940977,0.25490692,0.07651344,-0.6794967,0.31475708,0.18555507,-0.15830651,-0.58056194,0.4991583,-0.09853282,-0.32719097,0.020676693,0.20717087,0.13003652,-0.01550856,-0.21166459,0.24639037,-0.44356278,0.12748006,0.42521688,-0.07021981,0.2477306,-0.12399988,0.015274067,-0.6066941,-0.038204525,-0.41775474,-0.10341255,0.2541662,0.15292324,0.18272908,0.089502946,0.12034129,0.31366682,-0.20497343,0.07347346,0.10702494,-0.19965261,0.3779542,0.31968567,0.3859581,-0.34343272,0.46561342,-0.038560223,0.051954433,-0.00574344,0.13364072,0.4407967,0.18596435,0.3075722,0.048951097,-0.3463679,0.28430682,0.7986853,0.21051452,0.3934277,-0.068278536,-0.24559633,0.2673949,0.12800585,0.17417835,0.085407324,-0.46954945,0.030054754,0.013262113,0.23162948,0.32382366,0.15022011,0.3079481,-0.09642685,-0.20055334,0.054462608,0.20303354,-0.031259645,-1.0029397,0.40816358,0.18350394,0.67130876,0.46352944,0.018331798,0.019446472,0.48546496,-0.16320726,0.2275845,0.33024853,-0.096323684,-0.58229154,0.3852275,-0.6264004,0.5840561,0.113491155,-0.07295361,-0.020507058,-0.024147844,0.16360421,0.82153064,-0.09210971,-0.098566435,-0.018686993,-0.32773176,0.074931994,-0.34864298,0.015067903,-0.5514472,-0.30133867,0.39712662,0.47135913,0.3410447,-0.10495426,-0.050739136,0.020395812,-0.0693795,0.14316039,-0.083783254,0.061367355,0.12681721,-0.63511956,-0.3395219,0.4249563,-0.28700778,0.10149581,-0.071227506,-0.22346841,0.23920618,-0.1033251,0.010728343,0.025924172,-0.52210957,0.056682013,-0.074695274,-0.24813621,0.3950179,-0.27451906,0.41199857,0.10037688,0.013862564,-0.33591393,0.38533834,-0.020052908,0.6693495,-0.22722481,-0.19083251,-0.5346642,0.07277249,0.16938621,-0.1303918,-0.04014063,-0.30327466,0.0061375815,-0.4641075,0.28829896,-0.01358366,-0.21925873,0.0027469953,-0.42330703,0.0017667651,0.56995314,-0.07197411,-0.16179824,-0.20255576,-0.14647485,-0.21535069,-0.15157579,-0.19534935,0.22805944,0.12389514,0.050383464,-0.07950313,-0.19611983,-0.06504185,0.29202473,0.11248014,0.24736144,0.30554187,-0.076203935,-0.21822467,-0.2381794,0.16769163,0.3070661,-0.04379758,-0.04476245,-0.2708465,-0.47001684,-0.3661137,0.08024383,-0.17543958,0.35475904,0.13223521,-0.30714092,0.48759657,0.011817753,0.9113588,0.039677605,-0.2528636,0.08582635,0.5415299,0.21325938,0.08358096,-0.21477972,0.7505774,0.6734455,-0.07114153,-0.22415896,-0.1771622,-0.17757146,0.16575721,-0.14455391,-0.06463777,0.046382997,-0.6542391,-0.1836599,0.28419396,0.11795798,0.22568344,0.09287238,-0.17377645,-0.034693576,0.14598796,0.36854658,-0.3911542,-0.12819725,0.30685318,0.08170034,0.26641655,0.21860339,-0.4629658,0.46206513,-0.47680372,0.024260055,-0.13578254,0.19439769,-0.20031887,-0.18354866,0.1674544,0.030734815,0.39302924,-0.21933015,-0.4391592,-0.32970962,0.54749453,0.011952051,0.19544159,0.5171263,-0.16265719,0.04936694,0.008568951,0.49962854,0.9119591,-0.20154507,0.0009536902,0.46204728,-0.37854657,-0.50593936,0.16725609,-0.2920121,0.15788864,0.07046212,-0.15697552,-0.44947675,0.24530627,0.13210125,0.012314472,0.09863009,-0.58322006,-0.34042248,0.09716579,-0.24534711,-0.1924074,-0.28697115,0.13400911,0.7511403,-0.40267423,-0.2351015,0.0774147,0.28048542,-0.17725264,-0.5122897,-0.08462319,-0.4179181,0.31514102,0.12427257,-0.2377796,-0.14533135,0.11651703,-0.30649242,0.19851759,0.115937695,-0.37711382,0.11717607,-0.26452413,-0.020178366,0.8249945,-0.08616725,0.0063017607,-0.48747364,-0.2576827,-0.7886088,-0.28097102,0.47415748,0.10135265,-0.07762957,-0.4028873,0.09501315,-0.022526132,0.15968429,-0.08344632,-0.51045203,0.5730475,0.049417216,0.14697787,0.021907179,-0.84351563,0.040999316,-0.023006618,-0.17663051,-0.5046573,0.593779,-0.18847513,0.8374857,0.033021983,-0.037884165,0.1427634,-0.3807205,0.07094689,-0.29019117,-0.2837387,-0.62560266,0.11276896 -435,0.38612556,-0.36577418,-0.64805084,-0.14325818,-0.0023077405,0.055153105,-0.36041215,0.3172119,0.018616028,-0.6378844,-0.08999358,-0.052856866,-0.08284744,0.14065307,-0.18775657,-0.48002717,-0.037628576,0.12420264,-0.5192626,0.40167925,-0.64203715,0.22407605,-0.09539854,0.18044037,-0.12099433,0.078697,0.23109096,-0.094355874,0.121725306,-0.17404915,0.28468752,-0.08704695,-0.62397164,0.25428846,-0.13252237,-0.42164823,-0.01090376,-0.30690357,-0.39031076,-0.7765277,0.31836507,-0.80998355,0.49273905,0.118196264,-0.26742065,0.20860672,-0.044341106,0.2995019,-0.32965267,0.21096016,0.23963049,-0.18447235,-0.18849255,-0.1546092,0.03940657,-0.30945554,-0.5312457,0.05052457,-0.5137011,-0.012320184,-0.24038556,0.19070338,-0.40123448,0.05966068,-0.3032685,0.25848457,-0.43497902,-0.22826006,0.28863642,0.02744895,0.31666666,-0.5797539,-0.1579303,-0.22343516,0.15227993,-0.19412059,-0.21134081,0.22207054,0.14212188,0.485822,-0.041516863,-0.081763946,-0.11246065,-0.088105716,0.5021466,0.4530557,-0.075013615,-0.37311834,-0.2283899,-0.22724034,0.15557133,0.06771266,0.00028300285,-0.2484681,-0.07811273,0.07708509,-0.26228064,0.28099996,0.62739587,-0.18695047,-0.13664082,0.34574705,0.6898061,0.16720557,-0.040943705,0.28038457,0.037483998,-0.53175974,-0.31290415,0.26730523,-0.14777043,0.33767554,-0.20943072,0.33292845,0.45738012,-0.22978657,-0.056800522,-0.00884173,-0.10710733,-0.04617491,-0.30158645,-0.37946904,0.32601207,-0.5137876,0.109315634,-0.38044655,0.6833807,0.06657791,-0.72318065,0.3842042,-0.49404156,0.20665742,-0.03391489,0.8700351,0.769193,0.38983816,0.08271801,0.8065522,-0.53308743,0.030018069,-0.00078081165,-0.35666913,0.27455476,-0.2608303,-0.2011494,-0.3215441,0.003217578,0.08214466,0.0071633686,-0.20646533,0.48183364,-0.5035376,-0.04582008,0.06984928,0.5271621,-0.29633385,0.25934446,0.7467679,1.1157504,1.09625,0.27569023,1.2815922,0.25626293,-0.2725674,0.0044703805,0.0074305166,-0.99613726,0.2920292,0.29139993,0.1571378,0.2639777,0.121738344,-0.3021676,0.4795043,-0.44507128,0.03132347,-0.27496505,0.24187341,-0.24275126,-0.18120027,-0.4364282,-0.067418545,0.10111026,-0.039573487,0.022952905,0.25974068,-0.27793437,0.33365208,0.08535007,1.1090645,-0.37956384,0.18123606,0.075741634,0.24279083,0.18160227,-0.27378613,0.03897887,0.22816795,0.5728918,0.15732847,-0.7032065,0.18694337,-0.14477286,-0.48631924,-0.14055444,-0.15850884,0.052885048,-0.13949819,-0.3388577,-0.17996573,-0.0012985033,-0.44806856,0.21870448,-2.5270028,-0.1786126,-0.18087754,0.2359333,-0.097403534,-0.15613762,-0.0706466,-0.39903104,0.49935454,0.42089707,0.46560752,-0.5355319,0.41246873,0.48429155,-0.4439371,0.11868775,-0.7620331,-0.13695045,-0.19302522,0.29937124,0.13312699,-0.106526986,-0.024025513,0.11395447,0.39247248,-0.15023006,0.12691721,0.2474707,0.44965026,-0.012727453,0.5041948,0.028873939,0.5209933,-0.48650625,-0.17395003,0.37268984,-0.44030717,0.30830732,-0.09740868,0.26854143,0.3567108,-0.5941273,-0.93377185,-0.5880397,-0.42414,1.3419559,-0.12920272,-0.5338854,0.30681878,-0.31989023,-0.39839008,-0.013203463,0.45289543,-0.26931828,0.007849052,-0.9546131,0.004702582,-0.17814478,0.40364838,-0.10826261,-0.0036757635,-0.6497096,0.721534,-0.092476755,0.53666425,0.4490355,0.15603295,-0.2477156,-0.5059512,0.010314813,1.0503069,0.38130283,0.1900042,-0.26169246,-0.031038664,-0.25397283,0.069863044,0.03560746,0.4043122,0.81946886,0.03844542,0.27041373,0.23606946,0.072109774,0.064358406,-0.077629775,-0.3291334,-0.21239226,-0.06364278,0.6391251,0.48944646,-0.11202899,0.1336744,-0.027085373,0.2909306,-0.3279025,-0.37476003,0.500781,0.7914531,-0.061506663,-0.2995443,0.6664662,0.6052833,-0.22369348,0.57237476,-0.6304757,-0.44853476,0.23932065,-0.039941814,-0.3673696,0.33679295,-0.49508154,0.25891382,-0.89032745,0.3848556,-0.6374798,-0.71232855,-0.7121509,-0.26624137,-3.5540633,0.30970255,-0.15754685,-0.1868667,-0.2291517,-0.06162759,0.549274,-0.4698577,-0.6074989,0.16479741,0.10894866,0.73389995,-0.09415773,-0.08120235,-0.3548157,-0.03179648,-0.45404655,0.15638176,0.251245,0.04449995,0.05176099,-0.36988977,-0.18147479,-0.3188637,-0.2950732,-0.07969327,-0.46124637,-0.338561,-0.14238243,-0.3781179,-0.4300279,0.6648363,-0.21330403,-0.0714282,-0.17154318,-0.010371302,-0.1533321,0.47990465,0.052835006,0.24405906,-0.095247544,-0.18808188,-0.21593054,-0.18538244,0.16859889,0.022578625,0.14796475,0.49728182,-0.59353626,-0.090741605,0.3479093,0.6515453,-0.17125061,0.9379569,0.49978513,-0.1660983,0.40830147,-0.16897072,-0.25585312,-0.51100945,-0.20810571,-0.028155813,-0.4595116,-0.5259975,0.045434237,-0.3586439,-0.8071595,0.5426791,-0.11229812,0.10929751,-0.04457983,0.19234252,0.19926745,-0.0077808043,-0.03545425,-0.18056637,-0.120877475,-0.31485498,-0.35898775,-0.81114674,-0.4819628,-0.12161536,1.22898,-0.18695869,0.09053634,0.15368226,-0.17676269,0.17307083,0.21154836,0.05896109,0.24296425,0.34876618,0.16385324,-0.6254085,0.49047568,-0.16261429,-0.2251913,-0.6485258,0.08923447,0.7884997,-0.626688,0.4737072,0.5443598,-0.033296898,-0.19141586,-0.6221998,-0.09828469,0.05185249,-0.13710898,0.57179266,0.22461806,-0.84470785,0.53954935,0.36555788,-0.13135025,-0.6747439,0.53731734,0.084302835,0.058855765,0.053131223,0.43409082,-0.43675998,0.06232941,-0.19197644,0.34078678,-0.27419588,0.33945194,0.19238622,-0.14864218,0.42771465,-0.21937473,-0.12275417,-0.51736456,-0.13019544,-0.68797046,0.01263654,0.27703208,-0.15718427,0.018103536,0.14659296,-0.02462051,0.583043,-0.2528229,0.07143417,-0.099039845,-0.4350453,0.3693241,0.5443804,0.19343932,-0.3622346,0.6809011,0.08047174,-0.26440364,-0.34829727,0.26272488,0.476821,0.041631103,0.57259166,-0.10104275,0.094004355,0.30591172,0.9825023,0.28366244,0.7124442,0.18259764,-0.050475355,0.2119891,0.25164783,0.3086949,-0.0009697263,-0.34361792,0.037936598,-0.032926776,0.26371711,0.3471623,0.00549459,0.48724973,-0.21637811,-0.12784195,-0.0005133106,0.32066786,-0.05906673,-1.2171581,0.58273953,0.10664124,0.7033273,0.64356637,-0.018158723,0.16907209,0.4692313,-0.19063853,0.07542311,0.16635264,0.13749443,-0.49577123,0.4700508,-0.753211,0.2689601,-0.16407767,-0.0024562455,0.17645349,-0.19245552,0.6580573,0.63473225,-0.019788774,0.22196515,-0.12106584,-0.13797377,0.3037813,-0.27750397,0.2965825,-0.26426566,-0.33211473,0.7997194,0.54424304,0.384531,-0.22484732,-0.04083071,0.031600047,-0.08443188,0.15852666,-0.012045879,0.04283518,0.005571429,-0.651512,-0.16173172,0.5386128,0.112484604,0.10587248,0.12703745,-0.3827855,0.22995193,0.043452714,0.11033809,-0.04357366,-0.5980783,0.13627441,-0.3870155,-0.30696803,0.27151912,-0.3525712,0.2730815,0.3191302,0.048571844,-0.37254614,0.008581487,-0.0618558,0.7128467,-0.02592203,-0.1971812,-0.38691285,0.28404,0.3305135,-0.3407374,-0.07576531,-0.40829134,0.048406202,-0.6199847,0.4953895,-0.12149884,-0.25590184,0.44032013,-0.020828221,-0.010401724,0.554903,-0.34370738,-0.22465254,0.21232727,0.025111616,-0.19375786,-0.1815834,-0.14725097,0.19109562,0.11936282,0.21887049,0.02128932,0.18610956,-0.054356217,0.38851973,0.2968734,0.2987131,0.42574328,0.110131554,-0.63899666,0.009083831,0.006050715,0.67469394,0.05975501,-0.113129064,-0.3118254,-0.7098615,-0.24958898,0.18519154,-0.12112231,0.24667645,0.05811021,-0.27982932,0.6814303,0.22606349,0.9601954,0.013110115,-0.40554312,-0.0035177744,0.73519194,0.043389603,-0.20962895,-0.35850254,0.8784735,0.63578475,-0.38214478,-0.085186586,-0.29881126,-0.1845356,0.05157605,-0.26983327,-0.26900804,-0.073147476,-0.791734,-0.07624045,0.16783795,0.3344538,-0.021129988,-0.17332682,0.11127511,0.29491755,0.025382899,0.082005896,-0.68431944,-0.030275155,0.21529767,0.16310175,-0.030474255,0.06390096,-0.30474064,0.23484658,-0.76597416,-0.024642803,-0.17664433,0.07350154,0.027925886,-0.46050772,0.10560233,0.01572572,0.34874582,-0.37138087,-0.21371518,-0.055524983,0.38297784,0.220134,0.33139548,0.8605948,-0.22735724,0.19899045,0.20264561,0.35427406,0.9645062,-0.314272,-0.01489046,0.2762499,-0.3939441,-0.69779235,0.1284276,-0.48778504,0.3323631,-0.17352353,-0.4322594,-0.47480538,0.25599715,0.24264549,-0.055839337,0.09443457,-0.79995114,-0.19018294,0.22836025,-0.18365632,-0.2452252,-0.3980026,-0.01774268,0.6120783,-0.26609653,-0.26611727,0.02867077,0.3494822,-0.4132529,-0.58840317,-0.058384456,-0.46191713,0.3669272,0.09987114,-0.14462504,0.022963643,0.10598544,-0.5073875,0.2661312,0.004644347,-0.26889646,0.021048166,-0.3722901,-0.058336217,0.7507751,-0.23191191,-0.030931445,-0.6122182,-0.58708036,-0.87859976,-0.20921485,0.6470193,0.23462452,0.07939183,-0.5361637,0.05350179,0.07982819,0.28102115,-0.14386015,-0.3461094,0.44241005,0.04415383,0.4162973,-0.11077202,-0.7480587,0.22108918,0.25950545,-0.19802545,-0.46730053,0.48759276,0.021126628,0.6443065,0.18775576,0.26130655,0.103352055,-0.7270967,0.16290042,-0.1617739,-0.20070688,-0.75491804,0.025048275 -436,0.5095377,-0.08348252,-0.53348917,-0.06252741,-0.3197182,0.14301583,-0.14777113,0.4862275,0.14269504,-0.6903191,-0.18163456,-0.25278082,-0.10903601,0.23551926,-0.27008912,-0.39146617,-0.0043227756,0.13956417,-0.36638102,0.5404882,-0.40576997,0.38602242,0.13788591,0.41320825,0.10086453,0.14546172,0.20736876,0.21386385,-0.017800774,-0.44569275,-0.0018081239,0.051329434,-0.91701883,0.31035823,-0.20374468,-0.6288099,-0.08619547,-0.3560849,-0.21490733,-0.74648917,0.42317447,-1.0525227,0.57026863,-0.012420088,-0.3166313,0.09562928,0.24485265,0.28238946,0.07386762,0.028641436,0.17826419,-0.03691123,0.070531145,-0.1686959,-0.12398002,-0.52663386,-0.54535,-0.10744305,-0.4597029,-0.16051422,-0.27432165,0.24124745,-0.28309345,0.07706879,-0.14860308,0.3933266,-0.51557094,0.0114947725,0.094772436,-0.09201052,0.38891178,-0.573861,-0.28394908,-0.16837718,-0.023552848,-0.21932687,-0.18757747,0.32501644,0.1559525,0.5677332,-0.099752784,-0.13168906,-0.18264076,-0.036606822,0.058995247,0.5426174,-0.31282115,-0.2610683,-0.20494941,-0.19426958,0.54852927,0.13463938,0.41009447,-0.14914767,-0.02553692,-0.105996266,-0.22132862,0.3782483,0.52851385,-0.35993478,-0.11211673,0.2504457,0.5746542,0.14383613,-0.20816016,0.08189333,0.018730866,-0.3396999,-0.26892906,-0.022287173,-0.24913141,0.54795194,-0.114235945,0.28389364,0.49020797,-0.33134046,0.109932005,0.22391571,0.037548814,-0.07592348,-0.13964073,-0.5134384,0.42754668,-0.57108516,0.13244678,-0.23703685,0.5077658,0.08366083,-0.7303112,0.2297206,-0.5503721,0.050214548,-0.12038999,0.59793466,0.6557003,0.6095696,0.22689417,0.7864666,-0.5344619,-0.13733801,-0.24968253,-0.019245865,0.26286557,-0.19500561,0.00066938996,-0.37140545,-0.038804647,0.0959193,-0.17477468,-0.21361181,0.44024158,-0.65663326,-0.18657722,0.2240015,0.5915928,-0.3539289,-0.0285131,0.6684126,1.2321264,0.99857754,0.16753271,1.0146178,0.13020973,-0.1995691,-0.1659269,0.12425143,-0.7243535,0.20798019,0.39366204,0.12937632,0.50802404,0.1958626,0.07886078,0.2932572,-0.46286887,-0.0958421,-0.14180422,0.35627362,0.05807956,-0.22122402,-0.32507214,-0.091798045,0.15779701,0.04268635,-0.1100061,0.2433687,-0.30593953,0.33661222,0.30014262,1.4633372,-0.12723525,0.07883149,0.06940137,0.42206034,0.16710128,-0.32429948,0.084910154,0.17568436,0.25602886,0.066696934,-0.5217611,0.1279771,-0.12486816,-0.59521013,-0.05510857,-0.3393621,-0.16784689,-0.19340065,-0.50605416,-0.28438607,-0.06319487,-0.14231248,0.28582588,-2.6520114,-0.009680344,-0.13285783,0.35235658,-0.2621681,-0.3177273,-0.124303736,-0.34274483,0.3447174,0.36276388,0.30840948,-0.66961586,0.3706039,0.57474214,-0.39499524,-0.016328821,-0.57084954,0.036053102,-0.03967106,0.36728492,-0.01161477,-0.16340998,0.14381705,0.33765632,0.46526495,0.072957635,0.33126265,0.17085029,0.4534785,-0.046792906,0.43358824,0.024599578,0.3375464,-0.31691977,-0.19957992,0.39727598,-0.45015565,0.083562545,-0.13930978,0.16237614,0.48217636,-0.35550013,-0.7826534,-0.72372085,-0.28991273,1.141597,-0.3221065,-0.8234005,0.13689096,-0.12889203,-0.29154596,-0.1592176,0.40502486,-0.17829713,0.12045795,-0.816648,-0.085845135,-0.18550725,0.34933323,-0.012382058,-0.067110404,-0.47125414,0.81768364,-0.14892693,0.46782616,0.38367265,0.21702273,-0.36138174,-0.50819236,0.07480739,0.8879994,0.567896,0.15446527,-0.28128713,-0.1555675,-0.16792668,0.09178603,0.19881596,0.6481427,0.86220807,-0.12257711,0.17208864,0.27036387,0.105758764,-0.02738102,-0.122180834,-0.39092764,-0.11003168,-0.03576774,0.61268055,0.6387981,-0.0103311455,0.3857076,-0.080802836,0.16817372,-0.24411853,-0.5871315,0.3572453,0.79156315,-0.0836299,-0.20279035,0.7724213,0.5616629,-0.23621945,0.5412174,-0.8671734,-0.4578499,0.42317364,-0.003104261,-0.37764925,0.10399098,-0.3666841,0.27288294,-0.70671505,0.39316764,-0.37144926,-0.49786693,-0.624591,-0.3245876,-2.2269874,0.25075626,-0.032372084,-0.2151916,-0.22970107,-0.45795456,0.4714396,-0.70816153,-0.71660286,0.2160234,-0.006349453,0.6253518,0.07644809,-0.005464462,-0.22814591,-0.36513162,-0.23608148,0.27534634,0.22993326,0.18250749,0.049605105,-0.47215912,-0.15030491,-0.010867813,-0.38052934,-0.12691408,-0.40831187,-0.60973126,-0.2430453,-0.31022838,-0.25617915,0.6479785,-0.33093125,0.07420929,-0.1705861,-0.04888031,-0.07457195,0.24955237,0.08643828,0.17253903,-0.083678305,-0.019774403,0.009027196,-0.21650219,0.15276404,0.11786473,0.23351768,0.37155274,-0.42275968,0.008256435,0.401856,0.61153024,-0.031711966,0.94724643,0.35657853,-0.18182682,0.43152565,-0.08374459,-0.37773147,-0.7606355,-0.19409132,-0.033358272,-0.4333828,-0.40835786,0.032501843,-0.32484457,-0.81829566,0.6417242,0.03210214,0.41304094,-0.07496631,0.33899,0.3371912,-0.17974658,-0.1853122,-0.21011388,-0.17859961,-0.6042233,-0.5486686,-0.7897404,-0.37383685,0.09577298,1.0961752,-0.09013756,-0.10623927,0.28645366,-0.017318564,0.1811612,0.14567474,-0.11897581,-0.17897354,0.4264309,0.08772198,-0.63036126,0.4047688,0.028973188,-0.015496878,-0.6486518,0.18466774,0.5710289,-0.5392132,0.35686377,0.34508112,0.11903907,-0.2578554,-0.67701846,-0.09749983,0.023936335,-0.33427566,0.44880065,0.31623182,-0.91306335,0.41230744,0.2597102,-0.33381885,-0.5775376,0.73676264,-0.10181292,-0.08791786,-0.2854326,0.2974959,0.2023423,0.06506184,-0.15478067,0.2702564,-0.46721724,0.22169098,0.28967017,-0.014440417,0.31562498,-0.08425832,-0.19451605,-0.7183406,0.21225527,-0.43797746,-0.2866576,0.15652418,-0.21797189,-0.1540647,0.5911637,0.25256127,0.48810023,-0.4357981,0.13182968,-0.20740844,-0.31284878,0.48939678,0.46295288,0.53545886,-0.35032767,0.5922681,0.10805245,-0.13042964,-0.10767382,0.11272115,0.42586702,0.1433864,0.23268273,-0.0031534943,-0.22526152,0.19574758,0.93439347,0.28044683,0.3494308,0.08153115,-0.12361369,0.21985625,0.1624246,0.24419291,-0.03212943,-0.579999,-0.0739143,-0.098370634,0.0031925205,0.443745,0.06314922,0.27025852,-0.0052017504,-0.1965976,0.14221953,0.20715025,-0.16522388,-1.3002635,0.20014241,0.011394688,0.8746254,0.65984905,-0.031817075,0.14706214,0.47989374,-0.37540627,0.044724148,0.2703529,0.16458802,-0.32766202,0.51453793,-0.6286769,0.20440389,-0.07460828,0.03957348,-0.10819795,-0.010337318,0.51950276,0.83131063,-0.18156931,0.102406465,0.037208315,-0.093723215,0.121346295,-0.26019785,0.03913496,-0.40793434,-0.21867688,0.8118966,0.35387668,0.48396465,-0.15450723,-0.0070821154,0.06547956,-0.23569389,0.07942016,-0.040906984,0.10883308,-0.22278449,-0.32198524,-0.15136327,0.62722784,-0.05902582,0.06306057,0.06447006,-0.36280057,0.18004613,0.097012915,-0.12590963,0.11090755,-0.91331327,0.0012194173,-0.49960145,-0.21667491,0.54394025,-0.08374778,-0.013356273,0.19522083,-0.005439986,-0.089732304,0.15205929,0.31103557,0.4227941,0.021557242,-0.25554493,-0.20877708,0.21157101,0.06638188,-0.21303841,0.040905893,-0.08652103,0.21389034,-0.556662,0.35951018,-0.07403588,-0.26893386,0.33508244,-0.22275075,-0.037888985,0.57818854,-0.049686484,-0.15865932,0.15658604,-0.18284942,-0.16769919,-0.3454527,-0.23208702,0.32326803,-0.22191088,-0.059115466,-0.04110021,-0.03016339,-0.107176654,0.18922003,0.1874952,0.27848083,0.43543336,-0.10038531,-0.7010264,0.093761556,-0.07224572,0.43817744,-0.17008111,-0.022365306,-0.21270314,-0.67498827,-0.42973477,0.3796234,-0.061994214,0.25005552,0.0025007182,-0.27423915,1.08272,0.14111239,0.9798333,-0.17457731,-0.52527064,-0.07141841,0.62512815,-0.1839434,-0.029492898,-0.31673616,0.86320335,0.5661364,-0.08579343,-0.058733318,-0.14578316,-0.06763081,0.22496553,-0.26101372,-0.24921928,-0.08909773,-0.60670024,-0.114692606,0.20749815,0.43357927,0.015043297,-0.0036241156,0.18445642,0.4055788,-0.006393152,0.49147433,-0.63984984,-0.23020685,0.20018496,0.25221846,-0.0075313216,-0.0006060217,-0.27170646,0.2423528,-0.59886277,-0.039981153,-0.37115237,0.050003447,-0.050262503,-0.44618252,0.13434319,0.047270235,0.36585304,-0.36503845,-0.35855198,-0.18694581,0.47493187,-0.04780907,0.3319047,0.4797913,-0.16409092,0.18836084,-0.17733407,0.49028498,1.0620644,-0.17868379,0.024652889,0.41370508,-0.56959444,-0.68252057,0.305149,-0.4128394,0.28815752,-0.020798849,-0.40747318,-0.39546424,0.2891395,0.24781418,-0.12763736,0.16860656,-0.6935876,-0.22321153,0.28988007,-0.2620476,-0.22614564,-0.20881006,0.14892483,0.58593273,-0.24414514,-0.17237575,0.00746916,0.46296856,-0.29459044,-0.5187239,-0.11926278,-0.3301176,0.4022204,0.02185033,-0.37795258,-0.04824575,0.17542386,-0.4198125,-0.054274227,0.27251396,-0.16753758,0.045421325,-0.41524765,0.21807075,0.720419,0.03576348,-0.12920482,-0.39611128,-0.50834817,-0.87924,-0.30931324,0.28024706,0.29378554,0.020044714,-0.55507606,-0.014562892,-0.25857073,0.031684857,-0.118146606,-0.2656716,0.47906858,0.15596743,0.44921848,0.023483634,-0.7542799,0.14726555,0.038696755,-0.016393749,-0.4081619,0.59241116,-0.038886644,0.8369489,0.19332448,-0.05695207,0.01144634,-0.7582831,0.3950893,-0.17002146,-0.070401974,-0.6401471,0.118171446 -437,0.5077678,-0.045964736,-0.6411325,-0.11906049,-0.09817219,0.13094462,-0.266324,0.47233585,0.30083168,-0.48895785,-0.058827415,-0.2584228,0.09013828,0.4201409,-0.22728652,-1.1005701,0.036411304,0.17537977,-0.41495785,0.40187377,-0.42371148,0.4501992,0.10084864,0.5990029,0.2287589,0.17364965,0.119942054,0.007174107,-0.21025737,-0.0831238,0.08241533,0.019961122,-0.81617886,-0.05899149,-0.1117977,-0.7290242,0.12520498,-0.28856033,-0.34676364,-0.85443777,0.47612652,-0.9240449,0.73200065,0.017431019,-0.26354438,0.04984012,0.1838035,0.49974588,-0.06080785,0.14321212,0.26169732,-0.12345925,0.095977984,-0.03653479,-0.4831287,-0.72691566,-0.59886587,0.16991115,-0.63911384,-0.20696269,-0.10508839,0.29024416,-0.36015877,0.028107522,-0.075766735,0.4486497,-0.30345407,-0.29276296,0.52462065,-0.087022856,0.49483392,-0.67496836,-0.10569855,-0.10224915,0.14086565,-0.18756849,-0.121096246,0.15454294,0.4457323,0.6013898,0.12940277,-0.30556774,-0.36109537,0.21389844,0.12679638,0.38119358,-0.339169,-0.33480453,-0.3511092,0.026234388,0.3650591,0.24490833,0.34570968,-0.36634716,0.13274175,0.32660082,-0.36844915,0.54685676,0.5630416,-0.5856317,-0.050495524,0.18712837,0.4036514,0.17875718,-0.05732592,0.27548772,0.16923556,-0.5062398,-0.18951145,0.24092612,-0.26043406,0.56129265,-0.17636982,0.31842345,0.7186534,-0.23696111,0.15422378,0.101952754,-0.06880601,-0.06279114,-0.44811985,-0.15836808,0.34017718,-0.6366097,0.023685502,-0.37996605,0.8846025,0.2598031,-0.68465525,0.28149208,-0.66802055,0.16034463,-0.20484385,0.48382106,0.7218558,0.34648398,0.19555518,0.9876552,-0.7432153,-0.04044473,-0.059900828,-0.3432966,0.103011385,-0.21558556,0.020793071,-0.3855706,-0.11667041,-0.11330401,0.09046876,0.17504588,0.57879704,-0.61338466,-0.08853279,0.15641347,1.1236564,-0.32845253,-0.12570003,0.7042904,1.1939569,0.93651456,0.07416104,1.2075508,0.3861851,-0.30158645,0.12954426,-0.21914874,-0.69288504,0.45797044,0.28005394,-0.52105033,0.46495232,0.03022977,-0.0053978907,0.6488289,-0.43316948,0.06329868,-0.21504351,0.1366159,0.07770995,-0.37311867,-0.26280922,-0.08569997,-0.022512428,-0.2244842,0.25039136,0.25328347,-0.13624884,0.2657393,0.014363807,1.3479207,-0.2244681,-0.080430225,0.012479448,0.42208755,0.30596173,-0.030700188,0.13391441,-0.054311965,0.28961188,0.061104454,-0.6290484,0.098264605,-0.36088386,-0.53343296,-0.34057707,-0.08477424,-0.06735222,0.058532834,-0.60991156,-0.18585761,-0.08919033,-0.1376453,0.3809381,-2.217565,-0.4310358,-0.1074985,0.2643388,-0.40941235,-0.43865368,-0.19359629,-0.59353477,0.5642116,0.3554532,0.32616442,-0.7080888,0.48512346,0.37822196,-0.27360636,-0.124545366,-0.7176691,-0.11448649,-0.09238354,0.16723078,0.10320134,-0.34375176,-0.018913796,0.29857615,0.61643153,0.100564554,0.006767825,0.089971215,0.46272108,0.0033345313,0.5045163,0.057669878,0.7225899,-0.19113654,-0.18845892,0.4872376,-0.42972466,0.007489122,-0.054784432,0.2018331,0.3949857,-0.5325525,-0.9314215,-0.834946,-0.29014197,1.0198256,-0.1416972,-0.5042924,0.26450533,-0.07017047,-0.16930725,0.08613502,0.39441264,-0.1764588,0.06905477,-0.95851034,0.03449654,-0.19948068,0.04486992,0.045279477,0.036325235,-0.36025804,0.68146205,-0.20271462,0.33856267,0.46067375,0.23425047,-0.23075208,-0.6827844,0.06345964,1.1042367,0.47396028,0.25163832,-0.3863251,0.020800646,-0.56075704,-0.15673298,0.057353374,0.43218577,1.1056262,-0.05900626,0.04966373,0.29015163,0.054898266,-0.026037235,-0.10519523,-0.73596346,-0.16997847,0.015053199,0.59040666,0.6389058,-0.25957453,0.59550387,-0.2636244,0.38526338,-0.39217582,-0.3632801,0.7649008,1.1894126,-0.39230987,-0.3376481,0.78116924,0.34943488,-0.3735917,0.5791652,-0.72436684,-0.45896244,0.3975286,-0.14014468,-0.5875586,0.1505523,-0.38742545,0.13224414,-1.2681091,0.31112936,-0.44766602,-0.20309447,-0.4606641,-0.2727772,-3.6500068,0.22700736,-0.2753318,0.07890816,-0.24200135,-0.061231434,0.46047628,-0.5107707,-0.73490554,0.051198784,0.07405189,0.7158209,0.04822487,0.3168484,-0.20875515,-0.18356594,-0.24371709,0.23194133,0.41310075,0.15872638,0.10097771,-0.5750876,-0.21214588,-0.22341953,-0.5351154,0.024395406,-0.71876377,-0.56401587,-0.253142,-0.71978366,-0.50068974,0.6839733,-0.49335,0.055286683,-0.38667712,0.10239903,-0.18136334,0.64379686,-0.0016968227,0.17766206,0.16742751,-0.10887054,0.005349966,-0.34110075,0.06854547,0.12003778,0.32193473,0.43736956,-0.14034976,0.21724826,0.65605855,0.8340325,0.01903572,0.76617974,0.6540498,-0.090687126,0.32875612,-0.34753892,-0.3419275,-0.5967179,-0.3318758,-0.13333125,-0.38801906,-0.50672305,0.13290733,-0.5370665,-0.85407674,0.5771161,-0.11009837,0.19502665,0.10802027,0.34389764,0.3622891,-0.25252914,-0.0004225442,-0.17275651,-0.09322837,-0.411943,-0.26157823,-0.70001674,-0.6991305,0.087468,1.0317847,-0.08680169,-0.09025183,0.2368667,-0.07422949,0.066972956,0.1736159,0.13329722,-0.11561342,0.6079198,-0.03914146,-0.74422234,0.23560473,-0.1634404,-0.059258167,-0.77120155,0.117036976,0.5937564,-0.7975627,0.6656247,0.4609186,0.26064113,0.05778189,-0.5411657,-0.0382387,0.11309851,-0.2718464,0.5710816,0.2621617,-0.71043456,0.5227605,0.5536754,-0.37782127,-0.7455124,0.52486044,0.13162807,-0.295001,-0.23399813,0.43307146,0.12517022,0.036895525,-0.27377972,0.10131982,-0.4844515,0.15312037,0.41669592,-0.13230282,0.4321281,-0.115437835,-0.29926512,-0.83477604,0.028496174,-0.75535995,-0.26262662,0.14925858,0.012130146,-0.023573894,0.3343112,0.276681,0.4183663,-0.3268552,0.1017601,-0.18689553,-0.2510595,0.34862298,0.4012205,0.4382618,-0.56337047,0.4973888,-0.025477936,-0.26555318,-0.013686483,-0.026389189,0.6149932,0.16957259,0.38443896,0.1544477,-0.046199992,0.17704208,0.74978226,0.055890806,0.50403196,0.26652384,-0.21165265,0.124904856,0.21259366,0.1078667,0.081207946,-0.54425466,-0.11983066,-0.083391465,0.17777555,0.6614793,0.10094023,0.34304053,-0.017908413,-0.43919343,-0.020569097,-0.13427125,-0.19107917,-1.368451,0.44942415,0.23151618,0.76344675,0.52637947,0.020966705,0.20293695,0.40701932,-0.13489811,0.24328288,0.40072414,-0.048508175,-0.3943331,0.5939646,-0.56231296,0.20791976,-0.14381371,0.16351369,-0.039091494,0.19047128,0.46055558,0.91129464,-0.076583356,0.17490432,0.009068801,-0.21477437,0.041842666,-0.31192172,0.04592686,-0.50276566,-0.21634547,0.7642482,0.44894093,0.25810283,-0.37086105,-0.16248274,0.15632048,-0.263058,0.16036397,-0.14968544,-0.04065569,-0.048154082,-0.6184671,-0.4741193,0.46356437,0.40797022,0.04752457,-0.1598956,-0.34218377,0.118416786,-0.16760992,-0.00096674147,0.0056311246,-0.7776107,-0.078091934,-0.64183545,-0.50783986,0.41410348,-0.14953612,0.04893573,0.11869872,0.13156503,-0.26628283,0.3752616,-0.15102202,0.56065714,-0.14909206,-0.22310577,-0.38593516,0.12751627,0.2796696,-0.3007387,-0.09337719,-0.13974518,0.068078466,-0.4777601,0.5678106,-0.03353001,-0.15303499,0.2610215,-0.12175167,-0.20154946,0.45454937,-0.38770214,0.02140938,0.5736424,-0.03511935,-0.28117552,-0.30056044,-0.15627591,0.14992502,0.0017349261,-0.17072707,-0.13238509,-0.2949699,-0.13870409,0.45483023,-0.004882914,0.31341824,0.729675,0.06389495,-0.4454529,-0.17112017,0.34222284,0.5090816,-0.047526654,-0.1697773,-0.4950039,-0.63421685,-0.23196441,0.18110111,-0.1617987,0.21124576,-0.021243356,-0.47490677,1.0311421,0.41695812,1.5857877,-0.038835023,-0.42403713,-0.0007850757,0.52322435,-0.20251355,-0.12597202,-0.66272247,1.0276127,0.7515841,-0.24429336,-0.051471952,-0.47109926,-0.008895571,0.1745427,-0.2404446,-0.1289836,-0.12360231,-0.65762943,-0.5666187,0.41103265,0.43423763,-0.04808955,0.03188977,0.3063928,0.1022567,-0.033145946,0.4241234,-0.7359779,-0.12615083,0.15128794,0.35059786,-0.025563817,0.16047262,-0.42364818,0.36500916,-0.65592915,0.031090068,-0.33583933,0.09306185,0.058868177,-0.45141622,0.25149286,0.03858445,0.24463296,-0.2710246,-0.28321522,-0.03956846,0.48835355,0.09959461,0.3811247,0.77533305,-0.24568497,-0.062173586,-0.048842136,0.7581886,1.547075,-0.12679799,0.013974025,0.35437062,-0.20751128,-0.84879875,0.3645264,-0.44805315,0.20209168,-0.11382373,-0.46055302,-0.7126506,0.36525455,0.17148891,-0.103066646,0.16686517,-0.5187588,-0.32089284,0.27442205,-0.34299326,-0.34455353,-0.13595083,0.1449195,0.6678285,-0.14577499,-0.1823031,0.1901094,0.6030527,-0.19870917,-0.46693894,-0.13887091,-0.40978792,0.27147454,0.3433804,-0.4195655,-0.0061198175,0.16662183,-0.45784152,0.18251991,0.46311796,-0.36819017,0.07564764,-0.27950227,-0.12591584,0.8958903,-0.10154344,0.14239345,-0.71850914,-0.43789288,-1.0065333,-0.28570315,0.3622952,0.31470916,-0.013497064,-0.6962319,-0.01836399,-0.20805773,-0.033435643,0.16873714,-0.46201563,0.45254377,0.08332557,0.7081634,-0.006499449,-0.616565,-0.11935397,0.3703542,-0.25190586,-0.58371484,0.6499217,-0.060229477,1.0549363,0.07368198,0.05535023,0.27839822,-0.516945,-0.011126929,-0.3413078,-0.22689596,-0.9641348,0.024075674 -438,0.35862616,-0.14920567,-0.6817047,0.044039745,-0.010379012,0.2515693,-0.22621812,0.31453058,0.25837755,-0.5070181,-0.103799544,-0.008951513,-0.043619476,0.2576967,-0.21006939,-0.3651351,-0.14994411,0.22462101,-0.43020695,0.34910917,-0.2447984,0.29860315,-0.0230339,0.20640156,-0.0121826185,0.12770948,-0.07668228,-0.06410439,-0.22879292,-0.29292837,0.13978179,0.17491822,-0.5279158,0.090781234,-0.02476834,-0.45317125,-0.04925153,-0.55389285,-0.3885522,-0.7105585,0.37641725,-0.86896807,0.5625218,0.04598069,-0.112588845,0.3284929,0.028264046,0.10218173,-0.115255155,-0.09018818,0.28971618,-0.2131468,-0.25727686,-0.17300247,-0.20751469,-0.21407744,-0.5187848,0.055109743,-0.44884467,0.07480485,-0.17127183,0.16323595,-0.31654316,0.1900116,-0.32280523,0.43108168,-0.32340723,-0.016503586,0.24416296,-0.17743942,0.28380424,-0.7056964,-0.124009386,-0.087960176,-0.0041132653,-0.23937647,-0.20265403,0.1739913,0.4025376,0.53381586,-0.21273589,-0.094973005,-0.48085648,0.11800706,0.31191492,0.5462609,-0.27520415,-0.35514018,-0.120444335,0.07501276,0.32631493,-0.14451419,0.108442284,-0.37139216,-0.060618848,-0.0132913245,-0.23622625,0.3824133,0.5694179,-0.19706167,0.024145875,0.3886045,0.5606957,0.18002473,0.08305548,0.009160272,0.054153804,-0.3558907,-0.06689624,0.109824546,-0.27434352,0.44248867,-0.08533258,0.1520131,0.4157146,-0.24272552,-0.14175077,0.25040507,0.10651418,0.07985475,-0.15647663,-0.28914642,0.25652704,-0.32055163,0.03170757,-0.22886086,0.57091147,0.017844988,-0.82073337,0.3243076,-0.5354544,0.12728123,0.011828874,0.54930615,0.6055352,0.5439218,0.12767921,0.8836403,-0.58294475,-0.03252266,-0.1536652,-0.31283242,0.10122681,-0.051412173,-0.10893085,-0.44528422,0.06128341,-0.13521554,-0.25781196,0.08856208,0.43451554,-0.4962297,0.07885981,-0.081235364,0.6495221,-0.2787686,-0.04424233,0.5940915,1.1357008,1.0642384,0.093594395,1.0844405,0.13236335,-0.29423568,-0.16068979,-0.17396896,-0.9494411,0.3415162,0.34415552,-0.36702496,0.46199203,0.19395865,-0.093640916,0.3579946,-0.46012625,-0.09782217,-0.07020812,0.16092345,0.076748684,-0.21059455,-0.37939343,-0.19211721,0.051398486,0.042283,0.108693704,0.19100103,-0.3229676,0.15662464,0.31220677,1.3441972,-0.24467526,0.07566546,0.13224675,0.011620028,0.15498777,-0.0991587,-0.10761397,0.240798,0.2700819,0.082617395,-0.56273234,0.08905601,-0.058450036,-0.41774014,-0.23942316,0.09373515,-0.10771626,-0.06161322,-0.19689226,-0.18573916,-0.052381728,-0.44495058,0.33222634,-2.3372433,-0.1016925,0.016631657,0.38530353,-0.11280662,-0.37015867,-0.14574154,-0.44288453,0.33137035,0.31980172,0.41391686,-0.6806877,0.32732853,0.47367558,-0.53333753,-0.13221905,-0.494499,-0.08694895,0.009708852,0.19720729,0.17150669,-0.19250874,0.0882592,0.17994003,0.34438398,-0.2062724,0.010696004,0.527285,0.46302631,0.027375665,0.27913645,-0.039187193,0.5553327,-0.25264728,-0.23199868,0.4779392,-0.4554133,0.25536117,0.027883539,0.11735606,0.30072612,-0.3093986,-0.8695167,-0.51515585,-0.06758778,1.4437035,-0.20709737,-0.55645865,0.14697051,-0.17625019,-0.42857462,-0.026775854,0.3504384,-0.18782985,-0.14371176,-1.0445782,-0.07054995,-0.13642105,0.28597215,-0.07047375,0.0770021,-0.47291157,0.75564796,-0.09111809,0.6260737,0.64145195,0.12966561,-0.24956837,-0.4905738,0.087415695,1.2517358,0.50064725,0.16804925,-0.23482111,-0.021867683,-0.2614146,0.014483051,0.060709354,0.46664485,0.66318846,0.002117506,0.09700147,0.11262957,0.14836146,-0.019626277,-0.24227217,-0.3259118,-0.116312064,-0.056715794,0.53870696,0.56799036,-0.25140834,0.30192345,-0.09252139,0.18742573,-0.1039662,-0.48373535,0.3917624,0.96622574,-0.14255436,-0.39285278,0.69652855,0.32723337,-0.39908618,0.46727252,-0.47455046,-0.26390043,0.24665044,-0.2771701,-0.30981416,0.42630452,-0.29928118,0.1321851,-0.77477986,0.39886925,-0.21426384,-0.3552322,-0.6049987,-0.09298881,-2.5590477,0.1545919,-0.24779771,-0.17904167,-0.20300327,0.010467768,0.3506519,-0.47863507,-0.8593445,0.10183261,0.12914495,0.5184361,-0.19665672,0.027140483,0.107624985,-0.14271805,-0.07662726,0.24324656,0.21087937,0.15347789,0.107730426,-0.46607473,-0.10948604,-0.18138511,-0.33291468,-0.013917376,-0.53246677,-0.4472558,-0.03529076,-0.39287153,-0.27053684,0.49918684,-0.44441643,-0.050690167,-0.20855351,0.035252344,0.023444954,0.3337951,-0.15193537,0.13316147,-0.04505033,-0.14428899,0.10177236,-0.020308206,0.3887468,0.08597313,0.16827333,0.57542557,-0.27166036,0.10974027,0.42407343,0.94254625,-0.04606964,0.9712907,0.4845517,-0.15208252,0.19766642,-0.16178845,-0.25316158,-0.52612936,-0.21947663,0.14557645,-0.5265864,-0.40955186,-0.030088216,-0.38304192,-0.9483367,0.49989435,-0.07831664,-0.0052465284,0.11039344,0.4047092,0.43232843,-0.15503995,0.19936265,-0.14936547,-0.17596538,-0.26410347,-0.3778798,-0.6106396,-0.30577818,-0.16547735,1.1583096,-0.12889698,0.05344063,0.16543719,-0.13004246,0.12967624,0.037198715,0.058394797,0.26639456,0.4808981,0.099642955,-0.5422765,0.27038953,-0.18296231,-0.1977849,-0.5207008,0.14113985,0.5008171,-0.58203983,0.48266488,0.39423952,0.029652039,-0.024157524,-0.5709669,-0.031085294,0.06825129,-0.29075623,0.5449696,0.40019363,-0.595822,0.44790283,0.49495173,-0.44367892,-0.7246079,0.33521387,0.090366386,-0.03998425,-0.07610935,0.42612043,-0.15090585,0.11203102,-0.1835989,0.19364044,-0.27884722,0.34639445,0.10346361,-0.16825701,-0.009766971,-0.22346091,-0.16210473,-0.7201804,0.26629716,-0.35177824,-0.17523237,0.10225582,0.14877465,0.07043753,0.10389706,0.10981451,0.5770968,-0.35666615,0.0044851177,-0.082712755,-0.30116668,0.36488852,0.48215374,0.40089723,-0.27131805,0.4962983,-0.12191946,-0.2441427,-0.20387578,-0.08854663,0.5444681,0.03237465,0.15404211,0.2366568,-0.058265217,0.337716,0.75122416,0.10110392,0.40203318,0.025698543,-0.17733045,0.15690783,0.07445603,0.22124624,-0.09047676,-0.55755174,-0.02321268,-0.06487194,0.21062903,0.53100556,0.115179606,0.33486605,-0.34544048,-0.2943217,0.012654846,0.23967569,0.048379127,-1.1659728,0.3411425,-0.05142008,0.7491497,0.6274296,0.0131689655,0.3429242,0.31347138,-0.21588376,0.062441822,0.43157926,-0.016560614,-0.5806641,0.38583544,-0.70247334,0.24810886,-0.15243256,0.13007079,0.14053123,-0.07258712,0.4683055,0.8784181,-0.157512,-0.028182914,-0.09600027,-0.20490953,-0.010160876,-0.2972928,0.19268297,-0.48975375,-0.4537684,0.7756434,0.45303705,0.43900228,-0.29687792,0.10743941,0.18958433,-0.14005154,0.33787876,0.034431387,0.116159745,-0.21071182,-0.65506303,-0.05258011,0.5622381,0.2499117,-0.06315942,-0.1797073,-0.25623506,0.16678654,-0.047629446,-0.09167951,-0.14727828,-0.67077214,-0.25747824,-0.4358246,-0.4301979,0.114832796,-0.0562376,0.059702314,0.19449432,0.02220336,-0.4933274,0.2247324,0.32447442,0.7101037,-0.06072728,0.0131797,-0.23532031,0.451509,0.15151428,-0.0034610373,-0.011097832,-0.15151438,0.20714426,-0.6231288,0.6032339,-0.20311311,-0.36058143,0.19500051,-0.18645273,-0.020168742,0.54750466,-0.35196966,-0.24043849,0.1441399,0.032653105,-0.2775651,-0.37581626,-0.23056516,0.030882506,0.18074346,-0.17922893,-0.11378447,-0.07243372,-0.3008185,0.2615985,0.19408797,0.25621882,0.49998856,0.2021414,-0.70988417,-0.06453898,0.023380855,0.55857366,0.15001443,-0.22560342,-0.6094979,-0.5616826,-0.21030743,0.25524643,-0.17840552,0.2292362,-0.017671293,-0.3492883,0.7673755,0.13343297,1.1752918,-0.06388052,-0.33785635,-0.037963424,0.69634706,-0.08575194,-0.14512096,-0.4700344,0.880902,0.5496489,-0.17556688,-0.0908319,-0.41610426,-0.068075016,0.11106555,-0.21942818,-0.15779069,-0.038990743,-0.73499775,-0.3280477,0.18460962,0.36496702,-0.1543866,-0.12715113,0.2183167,0.34138268,-0.006376321,0.20248969,-0.4687396,-0.16150415,0.26912388,0.120056204,-0.005736251,0.023494722,-0.48254195,0.35109228,-0.53607017,-0.06610314,-0.1753342,-0.031228688,-0.06154812,-0.12193389,0.2231235,0.031414412,0.15427755,-0.35342735,-0.2974681,-0.118742384,0.44577268,-0.04902837,0.20776053,0.6992391,-0.205565,0.15257896,0.15792002,0.5660199,0.99370384,-0.20426954,0.11415933,0.33979347,-0.3158303,-0.6442236,0.41099548,-0.2370604,0.006969405,-0.117975816,-0.2899973,-0.6113553,0.3782864,0.15459171,0.026916513,0.011859564,-0.564597,-0.21008638,0.458389,-0.41373748,-0.08998541,-0.24307151,-0.15540232,0.62771046,-0.29939127,-0.45093113,0.04290654,0.36545846,-0.30162284,-0.52165866,-0.055483367,-0.3723864,0.26746362,0.1674712,-0.22919764,-0.08065427,0.15127672,-0.4477633,0.07206279,0.18307877,-0.32638782,-0.01766387,-0.32230118,0.08684067,0.63787585,-0.2565764,0.13385464,-0.5329408,-0.5965554,-1.0291415,-0.15810017,0.25025147,0.06557678,-0.021526417,-0.80637115,-0.029244509,-0.08340863,-0.14712052,-0.18260875,-0.42339906,0.55157614,0.17157386,0.41950795,-0.26978308,-0.6274029,0.05607578,0.15045322,-0.18096621,-0.35422453,0.4989542,0.2004755,0.73707527,0.058457058,0.07334201,0.26940474,-0.680924,0.1969379,-0.13521066,-0.20068319,-0.6536039,0.02141474 -439,0.54258764,-0.246599,-0.46401307,-0.13401093,-0.23087756,0.33900234,-0.19774412,0.4323172,0.07745938,-0.44695294,-0.2027361,-0.20601763,0.14375392,0.48310146,-0.10974585,-0.5436607,0.16666655,0.2056728,-0.6124276,0.5778428,-0.47652674,0.36915454,0.046293817,0.33489358,0.081287034,0.36173362,0.15480514,-0.16628161,-0.3700551,-0.06235798,-0.037182026,0.16004378,-0.6095801,0.17580867,-0.16989027,-0.36857402,0.02451755,-0.48926392,-0.3591847,-0.6062968,0.120374694,-0.8361033,0.511467,-0.1235226,-0.23244566,0.41910014,0.14600195,0.33504808,-0.2837632,0.22173792,-0.0054142238,-0.020636294,-0.14695519,-0.30070373,-0.31365326,-0.5924426,-0.56829375,0.11092871,-0.45248488,-0.14528807,-0.014842431,0.048243944,-0.2570726,0.05330439,0.06740985,0.24948801,-0.39528444,0.04430207,0.19848748,-0.04453396,0.03505746,-0.36297145,-0.14525911,-0.13400497,0.4020987,-0.23488232,-0.13320352,0.27216455,0.43645996,0.54901284,-0.026727477,-0.16254619,-0.27825782,-0.014095739,0.2122889,0.6137908,-0.077269174,-0.54938114,-0.18329215,-0.0077323597,0.21121988,0.17964587,0.28528097,-0.2359538,-0.07375403,-0.14743312,-0.22815384,0.21732108,0.45957267,-0.4930841,-0.38013253,0.45482698,0.5532552,0.09782275,-0.10976561,0.11978779,-0.017978309,-0.43797973,-0.1772668,0.20328368,-0.1514101,0.5633674,-0.13491735,0.1678804,0.61902887,-0.25562224,0.08201766,-0.0033390084,-0.110295005,-0.091699705,-0.061091807,-0.2320419,0.08939996,-0.3240333,-0.013932964,-0.21036403,0.6205794,0.35103816,-0.6755302,0.39798632,-0.48208427,0.0988045,-0.12210252,0.45347995,0.61614996,0.37281168,0.081294656,0.52368087,-0.3634514,0.10820875,-0.184863,-0.2886688,-0.008437932,-0.27934203,-0.15199734,-0.5326592,0.2850355,0.036243536,-0.11862152,0.11756339,0.44532606,-0.42860827,-0.07200251,0.10442243,0.833314,-0.32861263,-0.19108939,0.79677075,0.96087736,0.8435312,0.0016756833,1.348993,0.49221423,-0.20223993,0.04956076,-0.3878952,-0.6142731,0.28427663,0.40187228,-0.44220915,0.54344505,0.08724427,-0.029447485,0.29993975,-0.24911736,0.015019019,-0.11161947,0.1019698,0.08391218,-0.14289276,-0.28745282,-0.2345747,-0.078258514,-0.16583358,0.30500597,0.26041034,-0.19057003,0.39915147,-0.031629372,1.8752548,0.040943615,0.03747534,-0.13110633,0.4498315,0.23708993,-0.08249641,-0.11400983,0.35421208,0.2884801,0.026578037,-0.5188796,0.08299964,-0.20541224,-0.59688514,-0.2394378,-0.3317428,-0.008548474,-0.03466981,-0.39279366,-0.13415232,-0.063403204,-0.14731741,0.51349026,-2.6517127,-0.34108797,-0.070747495,0.37187654,-0.4182478,-0.33380902,-0.38154152,-0.40985182,0.28428108,0.2590248,0.44057867,-0.68755364,0.47225678,0.21441571,-0.44226745,-0.2365254,-0.513542,-0.076155625,-0.08498539,0.31080717,-0.1657067,0.009996502,0.26832542,0.12820335,0.45628703,-0.12606026,0.07549556,0.22494617,0.40996578,0.28942686,0.3243815,-0.008741426,0.59564763,-0.3014874,-0.20149669,0.3634239,-0.29265928,0.32135952,0.01248302,0.16869082,0.25096285,-0.48932686,-0.7750902,-0.7087298,-0.21423617,1.0531418,-0.22631845,-0.3593408,0.03906629,-0.028267376,-0.19052012,-0.026879616,0.32058176,-0.07386096,-0.11975361,-0.7372945,-0.022608537,0.11945069,0.1481922,-0.05721822,0.18237475,-0.31587043,0.3703621,-0.10194448,0.43701306,0.15163739,0.31785482,-0.024401283,-0.42644787,0.15652078,1.0125328,0.34499472,0.14390928,-0.11637686,-0.32805404,-0.32101497,-0.051946647,0.09460737,0.3802245,0.65683836,0.020830495,0.037974156,0.24672154,0.017987955,0.17073599,-0.09993162,-0.27245033,-0.07735274,-0.047657795,0.48388854,0.39937577,-0.18051535,0.67496514,-0.25289413,0.29175237,-0.20795529,-0.4494821,0.53913915,1.0019157,-0.33376735,-0.24458064,0.42603728,0.35966504,-0.43224427,0.4507558,-0.6991294,-0.31597424,0.42237297,-0.1664591,-0.25338027,0.3574713,-0.17791338,0.17506264,-1.0693185,0.3679979,-0.1899597,-0.17132495,-0.43563712,-0.062702574,-3.2227342,0.066092394,-0.040225253,-0.16019192,0.03475038,-0.1408365,0.11083523,-0.58151424,-0.51178247,0.2986674,0.0038854082,0.7310871,-0.04056799,0.26405704,-0.2514762,-0.3101538,-0.34757754,0.19291785,-0.0060998024,0.37737125,-0.022320224,-0.4502615,0.019323412,-0.25585315,-0.25741893,0.17451675,-0.6670097,-0.46235836,-0.25638145,-0.40900338,-0.22289354,0.65209305,-0.35746473,0.018889105,-0.1992314,-0.055638324,-0.23042892,0.27066436,-0.033362944,0.15081628,0.14475702,-0.11176095,0.06402339,-0.2776836,0.3695555,0.15503411,0.20560858,0.43853536,-0.12603109,0.16790657,0.44772884,0.58048266,-0.08577065,0.5125495,0.47374538,-0.07678084,0.3377079,-0.46367767,-0.07555329,-0.38831088,-0.48258334,-0.16018876,-0.3864924,-0.6321208,-0.15208188,-0.329776,-0.7021175,0.5141173,0.003766038,0.022452127,-0.111103006,0.2626227,0.54378307,-0.26450628,0.04852248,-0.12926526,-0.12970784,-0.4869663,-0.3595077,-0.5105622,-0.43615732,0.31937847,0.9920201,-0.17012501,-0.052555274,-0.06791529,-0.11428172,-0.024013495,0.009915622,-0.041200817,0.037825234,0.46115965,-0.15694954,-0.6996648,0.43461025,-0.28368086,-0.2988215,-0.5214639,0.21178092,0.5905887,-0.6606477,0.64221054,0.40765172,0.09706895,0.1966252,-0.44738185,-0.1383627,-0.03511095,-0.21861553,0.18695065,0.0932414,-0.8054771,0.40595484,0.3215481,-0.44416216,-0.7132168,0.5830423,0.1186728,-0.21363279,0.08076416,0.2909115,0.24410187,-0.02382751,-0.5604923,0.19445625,-0.66911775,0.31675848,0.31546992,0.027116705,0.28964078,-0.072192825,-0.15808302,-0.74587923,-0.08747649,-0.46305454,-0.35790947,0.20057635,0.11210565,0.17480174,0.08205695,0.10724218,0.39606762,-0.6099175,0.14762478,0.10346263,-0.20729944,0.24740645,0.28549603,0.381563,-0.5131807,0.52725726,-0.00058473746,-0.12495572,0.0894841,0.11759755,0.46579638,0.34700042,0.18868503,0.26072434,-0.186756,0.24005897,0.66816705,0.24375452,0.30175036,0.2272722,-0.36456245,0.24374917,0.090440944,0.12907812,0.0027718623,-0.3012351,-0.13956502,-0.040932346,0.18311307,0.42047137,0.20260862,0.35313976,-0.05787495,-0.34933102,0.007861304,0.08514786,-0.0054852883,-1.0656213,0.23820442,0.11349078,0.6664224,0.41911134,-0.023586726,0.20498905,0.44156516,-0.24150859,0.12224308,0.36889064,-0.17298803,-0.44861552,0.5030336,-0.4920578,0.28536034,0.05518001,0.007999997,0.00022753874,0.04559327,0.3229922,0.9028693,-0.07651775,0.23616555,-0.005730599,-0.27374077,0.034801364,-0.39636356,-0.00096779066,-0.5380755,-0.17908049,0.6172632,0.33895886,0.3072711,-0.19728504,0.053539746,0.13079314,-0.14280109,0.09450755,0.23394568,0.34462267,-0.026597448,-0.68141437,-0.34765238,0.63073605,-0.097551316,0.052611776,0.10765692,-0.34678748,0.26546347,-0.26180103,-0.011825574,0.017166765,-0.677912,-0.19970235,-0.36127606,-0.33879337,0.3581785,-0.08292107,0.1628036,0.14587332,-0.008879966,-0.31011766,0.44574445,0.19027726,0.7204104,-0.026409928,-0.2773321,-0.42002872,0.2181824,0.3106645,-0.29849556,0.13669871,-0.101392195,0.060039394,-0.57267386,0.49597415,-0.043093577,-0.3028344,-0.03873811,0.038906302,0.049558412,0.53552544,-0.17950107,-0.08775881,0.10883788,-0.16448234,-0.3925625,-0.014114467,-0.19883868,0.15412425,0.32007235,-0.1898789,-0.087926574,-0.027650945,0.06926866,0.42873606,-0.0773761,0.35017845,0.3835308,0.14394219,-0.19057178,-0.10603556,0.20524979,0.3795796,-0.076050065,-0.08878129,-0.35871843,-0.36172524,-0.1931923,0.049968217,-0.25606287,0.23798886,0.11504405,-0.26644817,0.70056623,0.086210646,1.1687354,0.05942201,-0.36025506,0.1784232,0.33303395,0.041339274,0.004345547,-0.41601345,1.0146118,0.50752366,0.047177568,-0.057082076,-0.36628598,-0.2324564,0.14045782,-0.27126077,-0.38328457,0.03296543,-0.56882876,-0.5512951,0.19593503,0.14858662,0.22459255,-0.14378884,0.3432783,0.22644135,0.13860424,0.21858393,-0.5196174,-0.3648825,0.35473308,0.42648742,0.030439286,0.14779054,-0.36938506,0.37528738,-0.55711675,-0.010562325,-0.18242179,0.15871212,0.034374077,-0.34023717,0.21866134,0.2517031,0.299453,-0.30141178,-0.48631537,-0.22066413,0.49570426,0.06818002,0.09919355,0.57644683,-0.24831632,0.044598326,0.04498228,0.4964048,1.117864,-0.19712307,-0.00046124856,0.5643606,-0.32714233,-0.6646773,0.48886257,-0.22877187,0.28949896,-0.15140961,-0.23124415,-0.77685916,0.4423909,0.17291957,0.024645964,0.0590206,-0.414726,-0.16215661,0.3790531,-0.35398942,-0.3139948,-0.41654146,0.17150228,0.8208316,-0.3186822,-0.19564942,0.18871015,0.2891473,-0.34261626,-0.49375254,-0.21978179,-0.31975135,0.22588444,0.1661231,-0.29761654,-0.16053371,-0.044655148,-0.31017417,0.23268427,0.2598872,-0.29461777,0.1397079,-0.47095382,-0.052488703,0.8847717,-0.26345423,0.082155354,-0.66112083,-0.38306874,-0.89893925,-0.4200601,0.36022398,0.10069712,-0.08323581,-0.53106284,0.09862742,-0.03225647,-0.26637247,0.0033065677,-0.3643113,0.41694865,0.025268465,0.23570086,-0.098072104,-0.79159826,0.16295354,0.21235624,-0.31791788,-0.6028276,0.43177864,-0.083440565,1.1171308,0.09403975,-0.0116063235,0.4929827,-0.49372515,-0.09552369,-0.31784764,0.04910079,-0.649571,0.13056569 -440,0.6686596,-0.36048025,-0.5320132,-0.12252111,-0.4435543,0.09479825,-0.23706429,0.49247402,0.22193874,-0.55836993,-0.18995099,-0.15183301,-0.04397974,0.2790548,-0.08131684,-0.55513465,0.15926066,0.3631043,-0.7159712,0.6361432,-0.48848635,0.36964312,0.28011602,0.37977546,0.17570148,0.1740518,0.20330827,0.001983917,-0.077780046,-0.0876848,-0.133674,0.31965503,-0.5086177,0.1971116,-0.16902785,-0.30723405,-0.06337323,-0.43021634,-0.37055227,-0.8775111,0.30520815,-1.007474,0.4868407,0.08886889,-0.47310677,0.113349214,-0.017519388,0.17847188,-0.24231423,-0.033191465,0.1682575,-0.16041856,-0.2769019,-0.25804815,-0.19064464,-0.28090328,-0.61543334,0.15150443,-0.56353337,-0.12898889,-0.1754291,0.33045414,-0.32356933,-0.044488728,-0.20664942,0.4717234,-0.3680888,-0.0122721195,0.15839794,-0.2507674,0.12904164,-0.63161933,-0.05145958,-0.12640576,0.08572935,-0.09429218,-0.40729836,0.35318893,0.24734484,0.6532458,0.09730638,-0.38504115,-0.3285973,0.12994711,-0.010395595,0.49140614,-0.06988212,-0.34672323,-0.23322807,0.07288713,0.3664501,0.11273604,0.20718816,-0.440881,-0.069701634,-0.21505441,-0.071865395,0.3813772,0.6220422,-0.2817101,-0.33959126,0.28174335,0.48950627,0.018966973,-0.11330037,0.102936566,0.024663206,-0.54111403,-0.07270647,0.13324149,-0.11846922,0.4728232,-0.27261665,0.1321808,0.59463626,-0.09529372,-0.08806694,0.2656461,0.21972778,0.018741919,-0.34337804,-0.20489326,0.4057006,-0.57153827,-0.12803,-0.3011784,0.7709875,0.1001922,-0.57094324,0.4644027,-0.46624878,0.16311756,-0.16740046,0.5577526,0.8972701,0.4679276,0.20822217,0.8673659,-0.4395292,0.1668232,-0.1317894,-0.32173458,0.18473889,-0.23303106,0.1704536,-0.47776222,0.0067299646,-0.17259869,-0.23218636,-0.10314189,0.8115733,-0.6638149,-0.23227927,0.14699984,0.75834656,-0.3573415,-0.23959541,0.9048625,0.8344571,0.94460595,0.0059486586,1.3083595,0.47443554,-0.09620834,0.21850559,-0.30652285,-0.84657806,0.37364691,0.35001636,0.34548363,0.2722251,0.1311175,-0.14300503,0.42769474,-0.47161037,-0.0895919,-0.3329916,0.26098105,-0.035165805,0.01513602,-0.63003427,-0.24942514,-0.056090105,0.1686245,0.158446,0.30080885,-0.33636746,0.24639286,-0.15909275,1.765977,-0.09964875,0.06640264,0.12088028,0.47122833,0.3394709,-0.1960235,-0.1242134,0.37153324,0.28525168,0.063086614,-0.54420793,-0.05843216,-0.30444378,-0.47544456,-0.22259243,-0.29401073,0.05984052,-0.22110888,-0.58625144,-0.31720716,-0.02469643,-0.45510575,0.4200809,-2.198644,-0.32122475,-0.10121583,0.5036808,-0.3616003,-0.43891048,-0.29075375,-0.50551283,0.298613,0.32975888,0.5323919,-0.6542329,0.34357467,0.4546679,-0.59811926,-0.070721544,-0.6554963,-0.008051144,-0.19205448,0.43793863,0.018210616,-0.26742476,-0.03437404,-0.16320278,0.58668226,-0.11831101,0.07611002,0.416052,0.4872509,0.07002954,0.36592048,0.14957799,0.50976914,-0.37750274,-0.35843617,0.45566756,-0.31195453,0.17873088,-0.07555745,0.10153751,0.6172456,-0.578863,-0.8262765,-0.7593004,-0.038009845,1.1453636,-0.21086428,-0.45236716,0.20426229,-0.34915575,-0.28456357,0.1211344,0.49301568,-0.18677898,-0.09700949,-0.87705135,-0.019545188,0.017214714,0.24610741,-0.09529341,0.01994938,-0.37114438,0.7066645,-0.25458977,0.39595693,0.21097486,0.30127952,-0.354465,-0.6130991,0.07202438,0.96103066,0.3185632,0.1129999,-0.2746543,-0.20662509,-0.2528861,-0.19352253,0.040136103,0.5425302,0.8250289,-0.034353685,0.11345833,0.3653803,-0.054266386,-0.039425228,-0.13276389,-0.37432772,-0.18806683,0.10732552,0.6405679,0.7910314,-0.099997506,0.5701325,-0.1859281,0.37514958,-0.07180379,-0.6532893,0.5170513,1.1673367,-0.14973655,-0.34010223,0.6316233,0.24631016,-0.4870775,0.55403155,-0.67296535,-0.44472244,0.1528923,-0.21482055,-0.44880867,0.27346936,-0.32131618,0.2515138,-0.91219366,0.4264769,-0.02525318,-0.48873916,-0.579119,-0.20854142,-3.0028775,0.24404609,-0.26307243,0.10940784,0.040508218,-0.19011469,0.1585755,-0.57881135,-0.36631468,0.10423229,0.009508188,0.74373055,-0.026209537,0.2087269,-0.2706414,-0.38885778,-0.20680702,0.2191952,0.19762094,0.35021564,-0.008440665,-0.49409994,0.09300677,-0.076203145,-0.24365316,-0.0027030376,-0.9107604,-0.63629055,-0.26116213,-0.6834916,-0.17455606,0.6675892,-0.12815826,0.0455491,-0.23790279,0.0128148245,0.037689447,0.30655068,0.095674835,0.12165998,0.21751077,-0.100273,-0.11169831,-0.2977441,0.26865622,0.043638777,0.15202396,0.5121708,-0.21269463,0.24798486,0.5714847,0.6629873,-0.34918264,0.89649117,0.53949624,-0.13064049,0.26127028,-0.07892122,-0.35826525,-0.5784742,-0.17993028,-0.117143944,-0.5633715,-0.24083403,0.14564289,-0.46482685,-0.90532935,0.6722303,-0.078821406,0.13399537,0.13039394,0.43515852,0.7080044,-0.19279234,-0.123283245,-0.14666389,-0.16716619,-0.486344,-0.43818545,-0.6094779,-0.58660764,0.16599502,1.2422073,-0.22095878,-0.0040959525,0.08742845,-0.06075359,-0.065124825,0.031461954,-0.013885924,0.20345663,0.52230257,-0.020543303,-0.671183,0.41165516,-0.0990089,-0.11436854,-0.4194807,0.34881148,0.6015133,-0.8200242,0.49713114,0.32304606,0.14120428,-0.11975572,-0.5855513,-0.29689035,0.16864787,-0.20351872,0.5748425,0.24934933,-0.82855034,0.5054201,0.41323397,-0.2930801,-0.9109615,0.28895146,-0.032176714,-0.39594746,-0.18548393,0.45997348,-0.03859612,0.09265734,-0.29286882,0.19333206,-0.4419256,0.099532895,0.25436786,-0.14460394,0.40037516,-0.3832625,-0.3603313,-0.70188683,-0.0006829415,-0.54446644,-0.34714416,0.25035352,0.006795662,0.068978034,0.34159067,0.17017612,0.5407166,-0.2847202,-0.004513455,-0.08813296,-0.18453725,0.32870674,0.3796489,0.499026,-0.6015374,0.5299329,-0.041792836,-0.17152514,-0.06771104,-0.023479206,0.4765306,0.16649196,0.3684884,0.04671083,-0.094407395,0.3200957,1.0082595,0.0591713,0.50251216,0.1733071,-0.26082942,0.20263453,0.09053285,0.24708636,-0.27226385,-0.49783203,-0.027423242,-0.09531837,0.30677453,0.4557615,0.13904011,0.3852811,-0.1303561,-0.27197772,0.08156405,0.010557814,0.031277042,-1.3295166,0.06514568,0.2341439,0.8413636,0.31712088,-0.002527535,-0.13540138,0.6779899,-0.21519685,0.1715938,0.22979109,-0.2963979,-0.4587229,0.49856824,-0.663817,0.43897718,-0.16314304,0.06459965,-0.06634897,0.032749865,0.456811,0.7996991,-0.13109383,0.056379385,-0.08795023,-0.3425488,0.20621906,-0.42670915,0.116760306,-0.46722883,-0.32249385,0.71833706,0.42681208,0.3959438,-0.16683002,-0.012761305,0.1518425,-0.111107066,0.2100034,-0.009863491,0.12704,0.08537221,-0.60938925,-0.18662484,0.6075753,0.42025122,0.13643529,0.02790388,-0.06717869,0.2979398,-0.17099331,-0.1891552,-0.13177499,-0.81220716,-0.11549927,-0.33210963,-0.46229458,0.42929643,-0.056509733,0.025743794,0.2904572,0.04320022,-0.46750718,0.3875663,0.19719587,0.9535684,0.06560954,-0.19444373,-0.43717465,0.3204798,0.1440061,-0.29762736,0.032858413,-0.23169962,0.2013613,-0.70136374,0.5549343,-0.033154275,-0.5252303,0.20271835,-0.06518744,0.00043376003,0.5070589,-0.16871254,-0.22148885,0.07176448,-0.10749788,-0.4605386,-0.15358233,-0.06311987,0.21529378,0.20147684,-0.24256168,-0.15578556,-0.120735705,-0.03351351,0.6013878,0.088573985,0.3003487,0.38682798,0.16917256,-0.40618253,0.13277826,0.5916088,0.56756014,-0.045942962,-0.18823318,-0.25161478,-0.368205,-0.4157645,0.15663119,-0.05294035,0.36981267,0.13755463,-0.21999113,0.9129095,0.122708015,1.2416831,-0.024840828,-0.3559356,0.08630047,0.5319274,0.096791506,-0.10127338,-0.33271855,1.0184892,0.63800615,-0.13366385,-0.08940283,-0.54827416,-0.22244772,0.26695225,-0.33500388,-0.1314876,-0.123237416,-0.82034665,-0.31995973,0.2635107,0.2962152,0.02148901,-0.14894907,0.301761,0.21931298,-0.0110457605,0.16787995,-0.6446702,-0.048139844,0.25211045,0.46764532,-0.017557234,0.22180034,-0.48938587,0.3169044,-0.6932803,0.1895463,-0.22535641,0.18930514,-0.0112460805,-0.34473753,0.2491208,0.20374165,0.39618382,-0.53449965,-0.36411348,-0.42775226,0.54706633,0.16823514,0.14949723,0.67916876,-0.32265607,-0.010640179,0.18684961,0.49144483,1.1441948,-0.09695796,0.002796037,0.3342177,-0.27609876,-0.84338677,0.45080683,-0.28825787,0.26967606,-0.06346009,-0.352597,-0.5984878,0.27453914,0.21796116,0.031224787,0.0034838447,-0.50828314,-0.016714351,0.42949995,-0.1346179,-0.19936457,-0.28355846,0.14073423,0.54504055,-0.13493355,-0.31248587,0.09738559,0.3383519,-0.3097056,-0.5675688,-0.15800521,-0.62549335,0.16285758,0.090249725,-0.325687,0.065514326,-0.01801149,-0.5943006,0.1891135,0.317229,-0.33501714,0.17997496,-0.21773137,-0.050972197,0.91851556,-0.08122521,0.14358458,-0.6157369,-0.54687434,-1.0182117,-0.2528514,0.4425717,0.14275165,0.060157605,-0.8976757,-0.10792171,-0.28607103,-0.20690049,0.13617194,-0.52244174,0.512867,0.2538999,0.31744495,-0.120288566,-0.9902563,0.1876178,0.17161416,-0.4055087,-0.52768266,0.4076569,-0.058068115,0.9377678,0.09721865,0.10049647,0.3764227,-0.6324442,0.14748916,-0.29761535,-0.07131035,-0.7125297,-0.19541717 -441,0.26896745,-0.10740343,-0.5708771,-0.12883179,-0.3833991,0.16756882,-0.18735124,0.1541665,0.15284277,-0.2363693,0.09495448,0.067301616,0.05699042,0.5198067,0.03781362,-0.5249085,0.10475676,0.06934023,-0.53529716,0.6135422,-0.3958758,0.45458496,-0.14533135,0.3236686,-0.092351526,0.40553412,0.22465502,-0.009378354,0.071164705,0.07112017,-0.14542475,0.21984115,-0.3323936,0.13824199,0.22496305,-0.14825891,-0.062958434,-0.16412076,-0.51194483,-0.57234484,0.43711206,-0.71423745,0.45763084,-0.002926926,-0.3227035,0.20764692,0.14938416,0.28228563,-0.26616022,-0.024733407,0.17929812,-0.0102407215,-0.006647726,-0.19501378,-0.21296965,-0.6044502,-0.46010673,0.017689547,-0.67959684,-0.42818195,-0.40006727,0.19206928,-0.37383428,-0.09431238,0.0047375243,0.24779858,-0.5199214,-0.04898065,0.21555112,-0.3324429,0.13040875,-0.5620043,0.03398638,-0.059587978,0.13816282,-0.0077008805,-0.11005703,0.3226699,0.34056658,0.54076993,0.06858475,-0.28663716,-0.3375582,-0.2549183,0.16087481,0.4890705,-0.16464345,-0.38150012,-0.21576685,0.011812897,0.09412577,0.07167559,0.041501537,-0.45957634,-0.13478562,0.11491553,-0.18840875,0.30770475,0.37445953,-0.46590653,-0.2682778,0.49724343,0.42559382,0.16733167,-0.32981396,0.13754915,0.03674818,-0.35051352,-0.16508318,-0.06950946,-0.13324882,0.47388694,-0.18504009,0.3467134,0.7636854,-0.11768742,0.11831937,-0.055057224,0.008131657,-0.14134921,-0.1107031,-0.004125754,-0.05282827,-0.38633636,0.115316026,0.0039026698,0.72335804,0.10539201,-0.5853477,0.52782935,-0.440945,0.20001386,-0.17089157,0.52365357,0.7796266,0.29917967,0.13796881,0.7649247,-0.35849476,0.12116823,-0.03691281,-0.4463678,0.20851485,-0.20237708,-0.14234997,-0.5210846,0.14052705,0.21510503,-0.09196282,0.03044182,0.47134152,-0.50790435,-0.07454698,0.17267632,0.8146736,-0.2986413,-0.09089853,0.38032082,0.9480196,0.7728804,-0.017269773,0.93897754,0.3023557,-0.18798889,0.17592493,-0.35434955,-0.6940746,0.16871881,0.43652865,0.465964,0.39010665,0.07835189,-0.037259087,0.4290642,-0.28744125,0.056267783,-0.11729201,0.27144825,0.14204147,-0.17514782,-0.44891873,0.05252371,0.10194211,0.074892215,0.0632107,0.2126976,-0.28326887,0.20576015,-0.0025974275,1.6608016,-0.087926544,0.13413247,0.037911654,0.614199,0.381332,-0.1250746,-0.047601882,0.39843225,0.2636474,0.03722073,-0.65760416,0.17302996,-0.2883279,-0.59213704,-0.21397178,-0.34386963,-0.10762766,0.08921233,-0.5705139,-0.114803426,0.15151149,-0.21851291,0.32618293,-2.8045163,-0.18918997,-0.1880236,0.3438596,-0.36039332,-0.17524824,-0.16743985,-0.2689048,0.29393238,0.45491067,0.40634638,-0.6712808,0.31573817,0.54525936,-0.38775623,-0.045670215,-0.4319671,0.051530045,-0.1908882,0.5960019,0.05245511,-0.17646663,-0.07344203,0.34207574,0.42825297,-0.08551493,0.059865322,0.2764784,0.22092246,0.03338178,0.36629677,-0.013264817,0.4971295,-0.115885355,-0.2170908,0.25451177,-0.20726734,0.11201512,-0.16538692,0.1165984,0.3390215,-0.27908713,-0.88370097,-0.55210805,-0.17983995,1.0947748,-0.3310657,-0.46956456,0.4315707,-0.43523982,-0.0973777,0.100488216,0.44388637,-0.04046567,-0.013532472,-0.7058899,0.36357656,-0.15080157,0.14913702,0.063169256,-0.044321317,-0.28319255,0.6760188,-0.09129922,0.5561408,0.25162166,0.22978045,-0.15307373,-0.38177168,0.13094571,0.6316496,0.40605417,0.10840314,-0.20145728,-0.17551139,-0.1428574,-0.34476584,0.17013834,0.38601393,0.63775223,0.0616539,0.10716956,0.06919976,-0.16583137,-0.08660764,-0.18582882,-0.23035093,0.12896803,0.1650863,0.4773941,0.53852,-0.36018926,0.43757012,-0.050545827,0.15110968,-0.16830514,-0.63582575,0.5789191,0.7971772,-0.18277289,-0.21716096,0.6579115,0.3105469,-0.42388472,0.33995023,-0.81151426,-0.23992325,0.52070916,-0.2497082,-0.31183183,0.18566367,-0.35106486,0.12765911,-0.73617005,0.23396407,-0.036958773,-0.47527802,-0.34565744,-0.34756836,-3.8936741,0.13104327,-0.2960149,-0.050230518,-0.041519817,0.06416848,0.29321855,-0.5741328,-0.48469648,0.17279415,0.018194227,0.57376534,0.034800522,0.086347915,-0.25821432,-0.09164173,-0.13774936,0.25452718,-0.07217509,0.37501648,-0.07894461,-0.5468122,-0.04434751,-0.073152415,-0.46483982,-0.0026819468,-0.6028709,-0.36557525,-0.24490817,-0.49806774,0.05291619,0.66724396,-0.16134758,0.022204872,-0.29236275,0.024899192,-0.22110555,0.37459272,0.2208115,0.05469084,0.14157984,0.08474771,0.017691517,-0.43621635,0.2476093,-0.012706732,0.30462307,0.3981675,0.006018609,0.061840605,0.5992919,0.52079654,-0.19418456,0.72728896,0.6033174,-0.21242818,0.35037655,-0.24721844,-0.12458932,-0.4750307,-0.5333065,-0.10113835,-0.3281584,-0.52455634,-0.11312131,-0.31058592,-0.7175875,0.3816784,-0.0010423899,0.2727101,0.10005762,0.075788274,0.38608322,-0.10474817,-0.096909,-0.025091164,-0.22675554,-0.6288399,-0.34932372,-0.4032225,-0.5185267,0.27987766,0.8358333,-0.17551391,-0.093036786,-0.10851801,-0.22802779,-0.32125142,0.027116176,0.22041363,0.26270905,0.2142795,-0.13751528,-0.62509435,0.43654177,-0.18082194,-0.11906057,-0.54809725,0.081680365,0.4132194,-0.5474838,0.44234422,0.24213572,0.2238848,-0.04788577,-0.4955767,-0.2765025,0.12833615,-0.21978925,0.42129698,0.03024272,-0.86823326,0.50874865,0.29243782,-0.32312804,-0.57018214,0.4565446,-0.11328093,-0.37374324,-0.13589387,0.33708572,0.10707751,-0.030177813,-0.3628707,0.19397749,-0.55107814,0.21306553,0.22434494,-0.15647568,0.54402834,-0.17041518,-0.24066612,-0.50323164,-0.07935725,-0.46113694,-0.23898989,0.04084819,0.0795825,0.09182118,0.08884533,-0.1488354,0.4427676,-0.22887649,0.097714804,-0.07276132,-0.31200975,0.30932277,0.42069384,0.3707404,-0.40015844,0.6449216,0.00030736823,0.040377658,0.017215466,0.057153787,0.5802938,0.19377418,0.43529505,-0.09274291,-0.0449601,0.33002174,0.9661921,0.20209248,0.4064799,0.14292297,-0.32311738,0.17935805,0.09430125,0.03482069,-0.0054808715,-0.37548053,-0.051774185,-0.13686393,0.27683115,0.47991142,0.31690514,0.2694192,-0.061973203,-0.29378784,0.2783443,0.13182975,0.082124546,-1.2095453,0.31369972,0.32401893,0.5442698,0.34032905,0.05759793,-0.094610244,0.69811004,-0.21496609,0.07416689,0.40925542,-0.18939985,-0.5943126,0.49025312,-0.70051485,0.4917439,-0.11258684,-0.0844049,0.17221728,0.15998983,0.23794064,0.7721849,-0.0026563844,0.006779309,0.022849003,-0.30439535,-0.002625068,-0.2438187,0.0021559636,-0.45909664,-0.359191,0.49837723,0.50849086,0.11784434,-0.10509611,-0.024316497,0.07885714,-0.03951012,0.08244583,-0.19198619,0.09573933,-0.17589077,-0.5968185,-0.38269183,0.46668735,0.3034379,0.20328824,-0.04783971,-0.09281362,0.25748524,-0.15859774,-0.12175682,0.015975077,-0.5793485,0.08849721,-0.1798217,-0.5619081,0.6776878,-0.24465476,0.3624044,0.08518101,-0.027204253,-0.3008861,0.49090147,-0.033371396,0.68873,-0.067001335,-0.017703746,-0.3377456,0.016614746,0.13794388,-0.17546077,-0.13212852,-0.30311787,0.03736017,-0.5934557,0.43529007,-0.18022205,-0.25083753,0.20256549,-0.32748285,0.09207278,0.442316,-0.014954076,-0.34564635,0.0141388895,-0.15446499,-0.31981885,-0.2237486,-0.19658905,0.29799044,-0.0058306833,-0.119568996,-0.13019241,-0.210242,-0.059074398,0.37980828,-0.084992565,0.31735742,0.30063623,-0.031850565,-0.20085564,-0.09626408,0.484767,0.44096896,0.0017415951,0.2734982,-0.027083572,-0.43807703,-0.43063775,-0.010915989,-0.14972925,0.32199106,0.22113034,-0.3800053,0.71380776,0.08724819,1.1106781,0.061417706,-0.3586419,0.24715382,0.46916518,0.15893093,0.119806886,-0.30532557,0.76708233,0.73395634,0.052263778,-0.23849179,-0.35839856,-0.21668401,0.33387795,-0.33371383,-0.038075868,-0.024761982,-0.7924507,-0.2502575,0.24864857,0.10085547,0.060595706,0.022208298,-0.04697315,-0.12125597,0.06626714,0.21898752,-0.5893863,-0.00405768,0.38346985,0.27153763,0.0723032,0.17977871,-0.5141306,0.5500243,-0.6467965,0.15044023,-0.2918003,0.19742697,-0.17986913,-0.22456628,0.2078016,0.083568424,0.38711017,-0.10566518,-0.28548527,-0.24956438,0.51999533,0.048101746,0.19634227,0.58110774,-0.27111292,0.13370919,-0.08407815,0.44529706,0.9449735,-0.29026952,0.039987557,0.30539054,-0.28707945,-0.80723757,0.35417932,-0.21888584,0.23573822,0.027368577,-0.28032753,-0.525173,0.23300551,0.09721539,-0.11278558,-0.014257888,-0.3427703,-0.26415756,0.068954244,-0.20220213,-0.15614696,-0.25614497,0.17007726,0.74278235,-0.32125765,-0.19015694,0.16854759,0.44349414,-0.1577391,-0.6474791,0.17400764,-0.1254169,0.41743007,0.1980445,-0.3721631,0.04961645,0.16579764,-0.45960334,0.15325975,0.3689147,-0.45030123,0.119898655,-0.26531383,-0.005699877,0.96503794,-0.07169805,-0.010397641,-0.75520396,-0.525858,-0.8381596,-0.39594123,0.2953061,0.23393002,-0.039777283,-0.5375771,0.0021755616,-0.13506956,0.10671555,-0.026974298,-0.6294441,0.43780333,0.008076872,0.35136992,-0.086061254,-0.78362113,-0.13163637,0.03828531,-0.1654337,-0.6300059,0.57936215,-0.2786627,0.879501,0.10346565,-0.04794926,0.20527667,-0.40244955,0.10821877,-0.29419273,-0.28694314,-0.6682914,0.039246812 -442,0.32783356,-0.14121215,-0.80863315,-0.19212647,-0.34795097,-0.07910989,-0.4074962,0.13533454,0.40132746,-0.052700203,0.07182936,-0.09848285,0.033634033,0.52881104,-0.05934388,-0.91293436,-0.046712816,0.10141548,-0.7183413,0.5371384,-0.4738265,0.26756778,-0.3278687,0.5458364,0.2696471,0.25678626,-0.010623217,0.038536977,-0.082148604,-0.040225834,-0.17303903,0.3603249,-0.4349996,0.17099996,0.021018812,-0.28511444,-0.05854169,-0.2940679,-0.20786373,-0.7498687,0.35422418,-0.599468,0.6551707,-0.0861497,-0.374282,-0.092389785,0.30001888,0.38395348,-0.2988533,0.17016329,0.17996442,-0.25259998,-0.055832703,-0.1935,-0.4781233,-0.5321174,-0.6042631,-0.046075106,-0.8089991,-0.17027377,-0.21082897,0.2841814,-0.3348248,-0.17391771,-0.22513752,0.51341313,-0.3676982,0.17876285,0.27788952,-0.06210458,0.31988743,-0.4927437,-0.18678685,-0.11103027,0.37060586,-0.13294423,-0.4747287,0.25500885,0.4045259,0.28762245,0.09757918,-0.15548514,-0.29357305,-0.27519137,0.13163574,0.32066408,-0.089924656,-0.3868716,-0.34426594,-0.076472886,0.10768827,0.37247518,-0.064368255,-0.44898593,0.119787075,0.011776105,-0.048912365,0.5294847,0.37081003,-0.14151146,-0.4179039,0.27759323,0.3548975,0.22121316,-0.2022749,0.2624067,0.042073894,-0.4950552,-0.18733983,0.0967258,0.20165019,0.46898606,-0.06897301,0.31045088,0.6583452,-0.26553956,-0.1700495,-0.1349352,-0.07021574,0.009882431,-0.46192098,-0.18139331,0.06772641,-0.65643185,0.10357078,-0.18628877,0.5197167,0.07012891,-0.742888,0.2793183,-0.75954914,0.10718425,-0.045367163,0.6519857,0.9700165,0.4335269,0.2429489,0.76040655,-0.3544793,0.17149138,-0.024131685,-0.4177054,0.13148502,-0.08011644,0.1541066,-0.6389793,-0.14074285,0.0339983,-0.085521124,0.14883637,0.4091312,-0.57632875,-0.022076374,-0.045897532,0.71886325,-0.3810853,-0.11697819,1.0375754,1.1372632,1.0297323,0.03720804,1.3015872,0.34499952,-0.17563593,0.052936535,-0.23408179,-0.4233035,0.26103553,0.07893294,-0.33123174,0.47503698,-0.03891887,0.022205437,0.482114,-0.28800085,-0.08352488,0.09184656,0.26378372,-0.001402835,-0.2085286,-0.3339161,-0.25736594,0.1363455,0.045602545,-0.086301126,0.38029456,-0.26127,0.6127019,0.035428327,1.2689477,0.05054004,0.08683408,-0.1682371,0.46989822,0.23378591,-0.276758,-0.20536333,0.3218254,0.35840544,0.118543774,-0.5822745,0.014700632,-0.3425587,-0.32784572,-0.29469863,-0.4418123,-0.016462406,-0.3535439,-0.28125682,-0.17131619,0.021306323,-0.22044908,0.46070996,-2.676391,-0.2360789,-0.19736208,0.17743045,-0.07056721,-0.25730228,-0.1457852,-0.41004407,0.40883872,0.30990574,0.3471965,-0.45661506,0.48159358,0.47528902,-0.47709003,-0.15783225,-0.6742069,0.027180491,-0.048965532,0.32812056,-0.23635195,-0.0008553763,0.0053429133,0.25677904,0.6106294,-0.0608898,0.10561796,0.19915096,0.3637123,-0.023312578,0.47551313,0.05788344,0.66416603,-0.29572818,-0.18921797,0.29235217,-0.3539333,0.2916441,0.08081878,0.0595813,0.5803261,-0.56631553,-0.9653823,-0.5356793,-0.21900551,0.9645334,-0.31985566,-0.39184716,0.3405273,-0.3268158,-0.33022586,0.04582077,0.47199544,-0.056669395,0.10639358,-0.7479449,0.043334797,-0.013608803,0.22411604,-0.08587766,0.08036217,-0.4970862,0.3891109,-0.09468863,0.35795784,0.44308516,0.1675445,-0.44350263,-0.50457406,0.16587518,0.74915767,0.35848716,0.04785494,-0.14442939,-0.23252022,-0.16672574,-0.13064939,0.17319883,0.5796159,0.5799404,-0.070323385,0.29777256,0.33007726,-0.35913953,0.23153548,-0.13852699,-0.26289776,-0.068057254,0.27179787,0.56644183,0.6911908,0.11036533,0.6571892,0.05011657,0.17206798,-0.22877991,-0.6135851,0.63529724,0.9071357,-0.16652237,-0.41033086,0.6360393,0.42074904,-0.4060916,0.48527423,-0.33583546,-0.10451286,0.65632236,-0.16652803,-0.49692246,0.09632966,-0.2729173,0.040722,-0.9804418,0.20654249,-0.13787948,-0.80002016,-0.4343575,-0.026367769,-4.0432043,0.14341669,-0.2578001,-0.23617043,-0.1524966,-0.22651494,0.38600788,-0.46607995,-0.75410074,0.06513911,0.12757947,0.6309246,-0.22562988,0.015572533,-0.20652507,-0.31957218,-0.2740157,0.33741602,0.16000195,0.24625237,-0.05855288,-0.4119468,-0.017156659,-0.17783737,-0.64826506,-0.011878227,-0.45770562,-0.38812736,-0.052333966,-0.73540825,-0.18964799,0.8001767,-0.29297945,-0.159379,-0.37180722,-0.02850095,0.022039192,0.4277371,0.15493353,0.29645786,0.33116713,-0.02913248,-0.16053666,-0.19878499,-0.01063924,-0.043403387,0.22735365,0.26103184,-0.020051053,0.441378,0.42901823,0.74260616,-0.05823512,0.8365585,0.25534785,-0.09904013,0.34746668,-0.5012847,-0.41101936,-0.524951,-0.3950273,-0.20494771,-0.44079807,-0.5607094,-0.27726483,-0.36752465,-0.8299308,0.53239775,0.1297111,0.33141723,-0.22749883,0.22775328,0.23253055,-0.19481586,0.030673137,-0.19806664,-0.15283649,-0.45580444,-0.2537384,-0.6134386,-0.68332815,0.2117595,0.9838149,-0.33960596,-0.0019441334,0.10899782,-0.4545795,0.04942509,0.49985766,0.27416882,0.33193362,0.3503677,-0.050931826,-0.6518693,0.30893633,-0.1495343,-0.15174171,-0.6846681,0.09386295,0.9361908,-0.66629946,0.6226519,0.38420382,0.16632754,-0.24691863,-0.45582283,-0.19503753,0.15279539,-0.26345634,0.661809,0.38619804,-0.75721234,0.3822012,0.1014493,0.00047030053,-0.5865264,0.5708697,-0.07023962,-0.1763205,0.19321321,0.4313849,0.031697903,-0.10726962,-0.1952526,0.3856096,-0.2427668,0.2171429,0.22794133,-0.07317657,0.37049222,-0.0775599,-0.34033167,-0.7097232,-0.018632168,-0.6203138,-0.34624735,0.18059595,0.08274726,0.22479863,0.1814472,-0.029686704,0.2927879,-0.3867782,0.13515331,-0.17241216,-0.29039624,0.04533476,0.49938145,0.3343561,-0.5976079,0.6287923,0.1391457,-0.03160136,0.100563735,0.10550579,0.5014077,0.01937717,0.7612756,0.005374814,-0.2660673,0.24262583,0.74584395,0.13235384,0.47545874,0.13051736,-0.13250698,0.18055618,0.120205045,0.22911851,0.07613311,-0.15981276,-0.013152045,-0.21364002,0.25222918,0.5344222,0.10090735,0.35634816,0.0064708665,-0.21687436,0.30927572,0.15903954,-0.08656976,-1.4199991,0.58130056,0.4996511,0.71566063,0.5973009,0.22548616,-0.050321043,0.48132542,-0.30736747,-0.08008341,0.48234165,0.17783333,-0.4672083,0.70168227,-0.6512381,0.5960906,-0.074226476,-0.07115138,0.14889084,0.105940394,0.5025947,1.1180955,-0.14519116,0.21888232,0.14950027,-0.19668572,-0.011799921,-0.26002213,-0.06672376,-0.57507324,-0.35438752,0.7253851,0.41156888,0.2810956,-0.23916064,-0.16181423,0.22255497,-0.11861787,-0.062884085,-0.12597425,-0.008353104,-0.2467748,-0.5864132,-0.31496412,0.45590016,-0.16618407,0.11709121,0.089841045,-0.22108977,0.22022486,-0.12920593,0.0400022,0.04216826,-0.6874168,-0.04084873,-0.34783402,-0.54106456,0.56528366,-0.62729186,0.29337063,0.28343946,0.17687334,-0.34098253,0.51026016,0.023333317,0.7593424,0.040779304,-0.0808644,-0.06421036,0.16079135,0.3942795,-0.30746332,-0.20880377,-0.36665273,0.11491597,-0.6098087,0.40220198,-0.027266553,-0.42068088,-0.07097267,0.05204979,0.13978635,0.40854517,-0.17363025,-0.20572267,0.14697504,-0.13496771,-0.25891685,-0.26091745,-0.272779,0.3264427,0.03389463,0.100259,-0.094520666,0.04531299,-0.0802479,0.3550277,0.08833325,0.2752458,0.35165584,0.07781742,-0.16709392,-0.04694299,0.0063373647,0.45983467,0.14776237,-0.023548925,-0.13797532,-0.16249143,-0.33377767,0.33202097,-0.1809064,0.15135454,0.09683933,-0.47037062,0.8131544,0.20051564,1.2900367,-0.041328803,-0.4692192,0.2665235,0.35431468,-0.021631598,-0.02515187,-0.25962743,1.0712386,0.5746929,-0.18349732,-0.21015687,-0.56518674,-0.3646543,0.18000674,-0.3589141,-0.26288384,-0.13262533,-0.5899952,-0.10408121,0.2997261,0.16402988,0.16383314,-0.06307875,0.06507603,0.19862658,0.10558987,0.26678622,-0.6251959,0.111685395,0.29302707,0.37460145,0.027472207,0.13161021,-0.30411157,0.43364868,-0.64978933,0.21880513,-0.4326372,0.17248897,-0.3135475,-0.36426446,0.19053693,0.07938557,0.18393476,-0.12586592,-0.16406976,-0.38272485,0.71393937,0.14832516,0.19080073,0.8419624,-0.31618384,0.014650375,-0.02779339,0.3318117,1.0989479,-0.12514763,-0.26549426,0.31511527,-0.36812493,-0.72774357,0.19081752,-0.50512147,0.24134856,-0.021529237,-0.4186209,-0.31904668,0.17198877,-0.07525108,0.04243059,-0.1392061,-0.49497938,-0.083098896,0.26182362,-0.1814149,-0.32561448,-0.3397467,0.26222888,0.7223576,-0.32222047,-0.410249,0.043317214,0.3474786,-0.23383565,-0.5152723,0.12445328,-0.008263677,0.46622476,0.0510038,-0.39125454,-0.022102779,0.2561036,-0.4459417,-0.025629679,0.3542225,-0.19489424,0.18206233,-0.20099163,-0.30744195,1.0864341,-0.29313496,0.27686736,-0.58040965,-0.63051766,-0.84893703,-0.22631018,0.008117378,0.1493285,0.006884247,-0.6747535,0.14377165,-0.049433004,0.0011016031,0.14686094,-0.4896609,0.4131324,0.05173758,0.46697333,-0.10091462,-1.0797492,0.09833535,0.27927816,-0.2912254,-0.7106897,0.7075146,-0.31203702,0.6647506,0.16990499,0.22796382,0.25836775,-0.5926882,0.3048477,-0.18746763,-0.1674012,-0.685689,-0.05814408 -443,0.485247,0.0043414007,-0.6685237,-0.21352641,-0.40758988,0.17650819,-0.27452457,0.23784432,0.4444237,-0.36991942,0.09494973,-0.21820904,-0.060878165,0.5692195,-0.18995331,-0.8637247,0.14101173,0.025128208,-0.49103683,0.47477716,-0.45755246,0.49886888,0.03396411,0.16312529,0.004781017,0.2817515,0.3930367,0.041042082,-0.20779133,0.13561901,-0.19091848,-0.053238086,-0.5029004,0.27362078,0.061738424,-0.29197255,-0.021176614,-0.35836363,-0.08599463,-0.73456997,0.4784292,-0.7241261,0.5193309,-0.06270626,-0.311959,-0.0046464778,0.10338247,0.24914683,-0.2071464,0.123322435,0.08684121,-0.30307385,-0.1291776,-0.033102877,-0.5634336,-0.74028516,-0.5587965,-0.1748084,-0.7578685,-0.4090059,-0.2855181,0.22884512,-0.37735793,-0.075967446,-0.14729854,0.4272785,-0.35649619,-0.12715359,0.47462323,-0.35063455,0.037486788,-0.6534409,-0.2042594,-0.069409214,0.15899856,0.1193982,-0.043166663,0.4029628,0.521333,0.47049764,0.13976699,-0.30167925,-0.3663883,-0.091957025,0.052955493,0.6764934,-0.103090316,-0.35207382,-0.2740854,-0.053694017,0.3518866,0.2214871,0.29306948,-0.5355798,0.02751874,-0.021527352,-0.24458398,0.41533008,0.39375132,-0.58528477,-0.09875413,0.50483763,0.45124233,-0.04904637,-0.28552377,0.26481444,0.022780117,-0.5728291,-0.15863213,0.22075336,-0.015374182,0.5386541,-0.10961143,0.24914843,0.7066634,-0.13523905,-0.00029112742,-0.06522195,0.011734105,-0.20330484,-0.4432185,0.13674006,0.01915687,-0.40055263,-0.053598188,-0.17671126,0.8899583,0.23302096,-0.8331309,0.28496143,-0.4936542,0.12586437,-0.09423984,0.56273806,0.7031486,0.37035766,0.20623438,1.137501,-0.6514828,0.06984392,0.047415607,-0.37240976,-0.027138757,-0.15116161,0.3720881,-0.54222214,0.29493657,0.07307046,-0.05811197,0.15804185,0.50542676,-0.39488634,-0.16088662,0.0395009,0.7697967,-0.35463068,-0.19944994,0.8848139,1.1215907,1.0079507,-0.010421372,1.1154046,0.4251995,-0.14353971,0.13389063,-0.3776441,-0.52690357,0.15406948,0.3838608,0.2820007,0.4593526,0.11316391,-0.08989389,0.4262822,-0.0040004435,-0.08257527,0.029623875,0.21428178,0.23326954,-0.38131857,-0.3684977,-0.14844412,0.20369056,0.018656693,0.0337369,0.2551401,-0.111694776,0.48538658,-0.09606384,1.2800355,-0.044903442,0.13211703,0.03807422,0.47735244,0.35995322,-0.18644808,0.1048622,0.35580748,0.037976284,-0.098353535,-0.54555243,-0.12087718,-0.43621433,-0.6133834,-0.2107076,-0.34706512,-0.1403621,0.05138165,-0.4135072,-0.17513545,-0.02343334,-0.20567696,0.44862556,-2.429279,-0.24117756,-0.3163361,0.22459888,-0.26769277,-0.2644487,-0.19746603,-0.44577476,0.2253631,0.5170727,0.31669915,-0.63489217,0.32318476,0.39753723,-0.32910424,-0.16087349,-0.56885254,0.22624056,-0.22289507,0.32924125,-0.095580466,-0.28709444,-0.04428902,0.4113738,0.73392105,0.19618203,0.048568264,0.16330811,0.49331105,-0.11279682,0.39692357,0.06722696,0.7416235,-0.22851898,-0.07532215,0.30896047,-0.6729359,0.33914706,0.12139844,0.27612692,0.47510454,-0.3337645,-0.7700857,-0.74568206,-0.3158589,1.044056,-0.38119236,-0.6142638,0.40907434,0.09858379,-0.17933351,0.1309445,0.5151983,0.06093091,0.08174033,-0.4219778,0.1736193,-0.08106131,-0.023865167,-0.105890475,0.12078448,-0.30267906,0.91629535,-0.28396687,0.53451765,0.3473738,0.32077855,-0.25718427,-0.4244626,-0.11120706,0.8554833,0.37244096,0.026545128,-0.10691199,-0.33676192,-0.36154124,-0.5077143,0.23047742,0.48581746,0.6688188,-0.0015428525,0.0617426,0.20724975,-0.14985856,0.08643313,-0.020087687,-0.44149435,0.04160236,0.24331619,0.38553318,0.5293969,-0.30783242,0.44087765,-0.03638666,0.044140026,-0.2618068,-0.6703721,0.5000834,0.7343339,-0.26181757,-0.3658133,0.54791903,0.22344956,-0.5563473,0.37938398,-0.59984964,-0.40548736,0.7549485,-0.043925084,-0.44383985,-0.17947637,-0.35535944,-0.059997056,-0.96744245,0.30279535,-0.15956838,-0.6495912,-0.1824008,-0.21672112,-4.180641,0.24746698,-0.18257199,-0.020810418,-0.11896049,0.10025667,0.15779728,-0.6029278,-0.6436932,0.07802306,0.026834704,0.5756963,-0.14211956,0.25055137,-0.38609907,-0.21900247,-0.29609525,0.3000382,-0.35307053,0.30146366,0.09234962,-0.28335613,0.21042845,-0.24320854,-0.62977284,0.0035853845,-0.64074904,-0.5285683,-0.35799712,-0.60103595,-0.29863638,0.7760714,-0.5007838,-0.1321781,-0.24876657,0.111090675,-0.29888007,0.33356205,0.058104806,0.16541924,0.17708908,-0.09795807,-0.24763478,-0.3685368,0.151248,0.061328277,0.38763964,0.62000334,-0.24504837,0.21985278,0.6773929,0.72221076,0.122829914,0.65240216,-0.062831916,-0.104679376,0.4078678,-0.29241246,0.06694013,-0.70285076,-0.5747268,-0.16166057,-0.3048851,-0.65630764,-0.12728237,-0.3658625,-0.74127614,0.35748026,0.005031251,0.45083907,-0.16038436,0.31320125,0.41068667,-0.19349931,0.097098716,-0.096140094,-0.31562713,-0.52201414,-0.41491443,-0.5418399,-0.6298775,0.5614052,1.1712998,-0.23642081,-0.2976967,-0.03390995,-0.35522687,-0.030276863,0.09433972,0.38273457,-0.022976449,0.13722128,-0.18877324,-0.6615481,0.31324846,-0.30363813,0.04507725,-0.59962773,-0.03274681,0.62007916,-0.3885497,0.6405719,0.3278538,0.35334486,-0.023179086,-0.71999687,-0.2060319,0.24599259,-0.25770712,0.43900216,0.19988228,-0.72777873,0.41356614,0.21931693,-0.36782554,-0.68783367,0.33416286,0.041782938,-0.044880025,0.024439814,0.5250081,0.38382715,-0.20076095,-0.24176401,0.17190988,-0.81844294,0.26204255,0.35004342,0.1186292,0.47828716,-0.033258773,-0.46562326,-0.64337784,-0.31790775,-0.4704027,-0.023201855,-0.019271655,-0.1132394,-0.03771758,0.167146,0.005620287,0.38889438,-0.36632305,0.1678196,-0.007176116,-0.23741072,0.53224856,0.47694808,0.4231323,-0.5312511,0.5669666,0.08779128,-0.06626884,-0.1489126,-0.032936696,0.5252885,0.44445023,0.47036636,0.13467671,-0.049259756,0.10347022,0.65882504,0.17801629,0.27657107,0.3323847,-0.4681301,0.32280633,0.22204576,0.23031163,-0.016404454,-0.34708288,-0.050741013,-0.08330921,0.14175545,0.42693627,0.10681115,0.4348561,0.07636157,-0.16166207,0.20683138,-0.037503753,-0.17323126,-0.98867184,0.19055654,0.34415627,0.65561163,0.40602282,-0.1217876,-0.045260847,0.46317494,-0.120214224,0.0363632,0.42035824,-0.13214476,-0.46769845,0.6375612,-0.5170876,0.52550954,-0.34520978,-0.0091617685,0.22907932,0.4261598,0.4439511,0.89328796,-0.026746068,-0.11067902,-0.14813076,-0.3435227,0.010945604,-0.22495954,-0.02250613,-0.6042405,-0.3223549,0.5291316,0.37122443,0.28027427,-0.13704677,-0.16178177,0.085061185,-0.12039178,0.08672089,-0.14089411,-0.075613946,-0.13252316,-0.5522129,-0.3583531,0.5531991,0.018094879,0.124629006,0.054190297,-0.5094563,0.30776012,-0.23130593,-0.03958466,0.04680644,-0.6660362,0.025671657,-0.12396525,-0.6889356,0.31032938,-0.29198864,0.35486662,0.30839756,-0.06192287,-0.33086756,0.13960132,0.15503179,0.7904078,-0.11644996,-0.25305793,-0.19886167,0.013502995,0.3735131,-0.2796953,0.24916172,-0.1576067,0.085004956,-0.657047,0.55639803,-0.20558816,-0.19248103,-0.054465856,-0.23280217,0.037987083,0.5159959,-0.40039107,-0.12541538,0.005434201,0.083061926,-0.2814517,-0.07019133,-0.37459657,0.30845448,-0.16553503,-0.09464316,0.03981433,-0.12945086,0.12837654,0.1353485,-0.034876235,0.019046064,0.31557512,0.035173073,-0.54712117,0.047127146,-0.025982866,0.47800383,0.19110085,-0.061841767,-0.15661833,-0.41793522,-0.3857941,0.1230884,-0.14257553,0.14751954,0.1103328,-0.5462559,0.83856785,0.1851391,1.5081303,0.049803182,-0.40658945,-0.016731624,0.6592922,0.15729618,0.006747594,-0.2969438,1.0811101,0.82577455,-0.19677837,-0.051018815,-0.45009026,-0.20755032,0.41088134,-0.26441583,-0.12768196,0.028915482,-0.7163648,-0.1933129,0.1758218,0.13619806,0.16561641,-0.13288862,0.014430372,0.13001864,0.23516542,0.45016322,-0.5772079,-0.10859848,0.19313985,0.38345426,0.18851644,0.21921586,-0.30770552,0.3492072,-0.96364397,0.51543033,-0.35154134,0.14911814,-0.21266721,-0.23335227,0.2644347,0.12295545,0.38488537,-0.15025336,-0.30714417,-0.22478789,0.7459749,0.29954857,0.23244601,0.80649704,-0.23227455,-0.14514852,0.15511513,0.6412251,1.4388934,0.07525494,0.10602948,0.3412417,-0.3494228,-0.8430548,0.35692424,-0.41883674,-0.027863191,-0.2724819,-0.30754215,-0.5383139,0.36519668,0.27827072,-0.08971365,0.12452033,-0.40411553,-0.19630986,0.18058299,-0.43087527,-0.3106357,-0.25657827,0.3074649,0.79886335,-0.27885675,-0.31470346,0.14282772,0.33825353,-0.26273614,-0.72789484,0.19848411,-0.069204554,0.51959634,0.1355978,-0.41478425,-0.07530038,0.41146183,-0.47153336,0.16838612,0.21643063,-0.39127886,0.24102004,-0.2850303,-0.13219628,0.9475636,0.1734081,0.31733516,-0.8650701,-0.49942896,-0.9296262,-0.44658133,0.17931238,0.08049662,-0.07278144,-0.5230908,-0.26551184,-0.12037408,-0.031718757,0.08815916,-0.4817053,0.3060169,0.096583486,0.5620501,-0.086324915,-0.92814076,-0.12285091,0.3268748,0.019543162,-0.4610194,0.45040348,-0.23268813,0.90794855,0.19845137,-0.035904467,0.22537793,-0.55367124,0.6424609,-0.33056927,-0.23331903,-0.53075844,0.07429405 -444,0.31775296,-0.26094893,-0.31158227,-0.18869501,-0.34846622,0.06771515,-0.31666982,0.33806604,0.34535885,-0.321214,-0.24862,0.0019840049,0.09811905,0.42159575,-0.065914825,-0.7210322,-0.007820975,0.22618745,-0.5958513,0.32731935,-0.65761435,0.24715398,-0.0778516,0.6115893,0.05852376,0.22010945,0.07049276,-0.033442155,0.01939993,-0.21228665,-0.11083104,0.2819102,-0.4119728,0.08135504,-0.13145664,-0.2980518,0.06249954,-0.44456804,-0.24066192,-0.76677394,0.13960534,-1.0621413,0.5383878,-0.12070815,-0.26759106,-0.06932437,0.28170684,0.4420411,-0.26102227,0.045569222,0.19510658,-0.3621216,-0.20418602,-0.3224363,-0.08580538,-0.40113434,-0.41553614,-0.10470249,-0.44978014,-0.3383026,-0.13708168,0.33238205,-0.27477723,-0.0012547832,-0.2488514,0.4627851,-0.37541336,0.03964958,0.41564038,-0.35035425,0.4403071,-0.58147216,-0.059322033,0.06830864,0.47275653,-0.029638309,-0.28997672,0.2708866,0.29315156,0.46785113,0.291989,-0.30154794,-0.17243978,-0.19146544,0.15170583,0.56940895,-0.16067241,-0.23055403,-0.3602092,-0.03647759,0.3150287,0.46166795,-0.05405335,-0.1552737,0.097618334,-0.03464895,-0.08507493,0.58772254,0.48397115,-0.093483485,-0.29393142,0.20503443,0.6611271,0.09708112,-0.22975746,0.08745679,0.14001034,-0.49299335,-0.041201968,0.19672343,0.024487164,0.45294783,-0.21194217,0.13333386,0.8114897,-0.16576406,0.04505894,-0.011974137,-0.030524896,-0.07913871,-0.53166735,-0.3746743,0.2644832,-0.6216767,0.008693819,-0.3152076,0.6987618,0.23161793,-0.521272,0.3538593,-0.48958254,0.182944,-0.122146234,0.64139336,0.53598714,0.37719554,0.3630648,0.7413304,-0.2500344,0.1721227,-0.011007804,-0.2434925,-0.042971566,-0.24664123,0.39373624,-0.43198237,0.1749422,-0.1423545,0.016806375,-0.049789328,0.3605434,-0.5435186,-0.17561309,0.2903525,0.89848715,-0.3469447,0.06491917,0.8639441,1.1176524,0.98090863,0.03636748,1.1962234,0.4707096,-0.18425813,0.04345923,-0.2557533,-0.5856683,0.21715161,0.30035856,0.3021217,0.16840726,-0.053963706,-0.16218759,0.50229144,-0.5766569,0.021089297,-0.07605482,0.33505294,0.06960113,0.13637096,-0.72911304,-0.10121008,0.021925509,-0.15545066,0.32902193,0.19950558,-0.34110418,0.37076366,-0.16240758,1.1432393,-0.17735669,-0.004385444,0.020679392,0.53316456,0.16048545,-0.17992106,-0.0111224195,0.33959547,0.46714866,0.008464665,-0.7050706,0.22280714,-0.35783303,-0.25953162,-0.2364893,-0.34859657,-0.055700354,-0.088541284,-0.2716292,-0.11298061,-0.11360179,-0.32003242,0.3549539,-2.5773401,-0.44098407,-0.27841222,0.42574304,-0.28799555,-0.11547558,-0.0836029,-0.5502931,0.38981885,0.23731057,0.4382539,-0.5706472,0.545524,0.45442247,-0.42313382,-0.21635665,-0.8460305,-0.1071745,-0.079247594,0.39512417,0.104439825,-0.1723218,-0.2869845,0.11064012,0.72092474,0.2516452,0.15551361,0.39806592,0.42718336,0.1102177,0.43397078,-0.07170902,0.7044496,-0.35139766,-0.21774855,0.3307111,-0.3636074,0.23921365,-0.28760365,0.0581753,0.52770287,-0.4928393,-0.8271971,-0.68007284,-0.44839033,1.0544404,-0.33241192,-0.60230696,0.22953483,-0.33746687,-0.18982808,0.11948211,0.6776642,-0.19478893,0.08617341,-0.7797755,0.009251283,-0.101440795,0.3055056,-0.007144991,0.0887808,-0.45102146,0.62998366,-0.26578647,0.52547073,0.13709033,0.38796943,-0.18431237,-0.3479772,-0.034583256,0.7525662,0.30479863,-0.09295569,-0.18203816,-0.2095051,-0.12035535,-0.28118312,-0.11446287,0.7015908,0.95960575,-0.1756986,0.043226577,0.3693024,-0.1890871,0.049935397,-0.069826275,-0.4087585,-0.09242965,0.08913871,0.60724723,0.6490078,-0.044711158,0.5186022,-0.28915185,0.44968364,-0.09783312,-0.48961037,0.57724464,0.4120841,-0.27132368,-0.13646805,0.6830301,0.39564344,-0.46056396,0.5497413,-0.68786967,-0.17312358,0.5247046,-0.19673918,-0.55381817,0.032662775,-0.229969,0.21508214,-0.8018962,0.36882657,-0.35323972,-0.80512416,-0.4919418,-0.112516046,-3.199869,0.20337193,-0.16102156,-0.17168981,-0.35152197,-0.16384986,0.30217865,-0.43703586,-0.5433909,0.23316155,0.13722438,0.6843436,-0.021971872,0.100931995,-0.37283498,-0.055759218,-0.14064252,0.17623329,0.19304046,0.29138476,-0.18348394,-0.348692,0.18342489,0.06749316,-0.5670413,0.25770137,-0.79599184,-0.49480432,0.011123311,-0.61663944,-0.350367,0.58341277,-0.29466817,0.11609154,-0.4042588,0.08426892,-0.15682386,0.2638562,-0.0019249412,0.3237027,0.2920397,-0.10212234,0.16165172,-0.25636894,0.42089036,0.037186936,0.192533,-0.056698818,0.04820961,0.17688663,0.48056236,0.6713157,-0.07856148,1.1383383,0.497403,-0.06962201,0.2141835,-0.34968597,-0.35318547,-0.44583386,-0.31388718,0.03135946,-0.51581985,-0.36659703,0.0516217,-0.24899629,-0.7910677,0.6925825,0.058531098,0.3992248,-0.08063236,0.31554604,0.4746037,-0.107280605,-0.057335734,0.0028319359,-0.111283064,-0.54763603,-0.21124572,-0.7277061,-0.52063346,0.005637311,0.73927283,-0.29359025,0.18426742,-0.042886432,-0.37946707,-0.006605524,0.25527093,-0.02851467,0.26463726,0.55561966,-0.011506532,-0.58869636,0.22255662,-0.07998076,-0.020131115,-0.68289757,0.31245774,0.9508381,-0.7739235,0.7555733,0.3999079,0.002271799,-0.46685395,-0.5313122,-0.2848589,0.007977901,-0.16923593,0.53920263,0.20156266,-0.77693707,0.53925526,0.33825487,-0.31568938,-0.7342988,0.22335282,-0.12830704,-0.20078476,0.017235804,0.45956853,0.056490548,-7.183047e-05,-0.124919586,0.170475,-0.40809435,0.23538457,0.13545324,-0.021789696,0.5556838,-0.283248,-0.20505752,-0.8110436,-0.26268953,-0.74316597,-0.1797498,0.21620625,-0.1305972,-0.088985406,0.4031298,0.07676677,0.33248076,-0.15035945,0.071418256,-0.11536017,-0.5128311,0.24512321,0.51216686,0.31588003,-0.3592555,0.49748024,0.21723141,-0.23596133,-0.009441743,-0.069044836,0.43912596,-0.11493439,0.5826193,-0.30698746,-0.13086475,0.30180484,0.729714,-0.0016785952,0.58818465,0.15314198,-0.025853492,0.42638677,0.0074959374,0.26606253,-0.12407037,-0.42537454,0.12806326,-0.13858546,0.1629701,0.456514,0.4441897,0.4549408,0.19438614,-0.23640466,0.040449567,0.0542379,-0.14360216,-1.3153762,0.49639946,0.14995535,0.91677475,0.20994934,0.17483534,-0.20751542,0.80751103,-0.20704561,-0.0061231647,0.400502,-0.036340214,-0.34785938,0.81132066,-0.7115246,0.3269189,-0.1536069,0.059504632,0.098078646,0.23362881,0.5916054,0.8249401,-0.21246068,0.08428958,-0.17779145,-0.1415815,0.24393202,-0.34338155,0.02733371,-0.47410455,-0.42819244,0.64499164,0.49934208,0.4974969,-0.25002232,-0.06554249,0.18764642,-0.09011444,0.18237805,0.008975405,-0.21707663,0.12055845,-0.5931434,-0.22049332,0.41977268,0.16553035,0.1745143,-0.271326,-0.18981703,0.029951163,-0.23180848,-0.027987314,0.110027395,-0.7152669,-0.15154602,-0.32138056,-0.5927433,0.32510248,-0.32899,0.019615779,0.12420234,-0.056672275,-0.15623657,0.22346023,0.07495691,0.8892823,0.15898988,-0.35814795,-0.35005695,-0.07411974,0.27747294,-0.3668146,0.21223995,-0.40030134,0.10291011,-0.5930008,0.6753298,-0.22765735,-0.6249949,0.31814435,-0.18503761,-0.043029826,0.5601779,-0.18575518,-0.09699166,0.1675646,-0.3753994,-0.5197648,-0.103348345,-0.15689792,0.09394082,0.22930224,-0.0081413435,-0.107883126,-0.30113876,-0.13179371,0.73606193,0.039467867,0.5020966,0.32894993,0.10980633,-0.15354347,0.09481346,0.20491236,0.48118034,0.070934765,-0.03966316,-0.27563402,-0.42394587,-0.17553216,0.37230375,-0.078445986,0.3201185,-0.055463262,-0.25897396,0.9974226,-0.02795225,1.1427633,0.167898,-0.4079812,-0.0283702,0.47520602,-0.14206146,0.14779924,-0.5626677,0.9214709,0.42156792,-0.15215525,-0.0031007002,-0.6823338,-0.08716936,0.4458024,-0.3803844,-0.16350761,-0.22107047,-0.5391937,-0.45701107,0.22119392,0.29054788,0.13832054,-0.05974218,0.22312453,0.037745424,-0.03996312,0.5160236,-0.7479038,0.06396696,0.26834112,0.30673763,-0.1256903,0.20734136,-0.27858686,0.35024974,-0.6511807,0.25009197,-0.45143697,0.072189234,-0.12102992,-0.41380385,0.0939062,-0.013218238,0.28861356,-0.35868707,-0.3573934,-0.035168573,0.5481341,0.1609227,-0.08812037,0.62080574,-0.25981238,-0.036862765,0.3061132,0.6906332,1.4061285,-0.41452742,0.21216947,0.18204363,-0.32140678,-0.71834767,0.4594557,-0.24786161,-0.06779928,0.078320034,-0.53278226,-0.5159509,0.2755449,0.21025041,-0.03929036,0.114645004,-0.32336596,-0.16473685,0.3588672,-0.18483308,-0.16480957,-0.14165942,0.3561265,0.4750689,-0.093848154,-0.41444975,-0.07290498,0.47399923,-0.41826135,-0.4510756,-0.055969957,-0.25259262,0.2986693,-0.034806512,-0.4405944,-0.004802915,-0.04155689,-0.5511641,-0.03821,0.16659945,-0.32618284,0.16099548,-0.17391841,-0.10656948,0.82006043,-0.23455109,-0.060668927,-0.892333,-0.39324972,-0.79532564,-0.34494463,0.11223333,0.25855976,-0.010060411,-0.34879196,-0.020921864,-0.11166002,-0.1482924,0.21244122,-0.60038143,0.33814475,0.19472449,0.6924775,-0.31201616,-0.9171763,0.15879598,0.13306859,-0.2692621,-0.66661584,0.65257955,-0.093483254,0.7942658,0.025384229,-0.017131723,-0.08094602,-0.27514946,0.07095078,-0.24735834,-0.3030843,-1.032845,0.026638445 -445,0.42971015,-0.43067425,-0.5138517,-0.0448897,-0.20661746,-0.10231465,-0.321248,0.23325446,0.059784148,-0.3034473,-0.0654273,-0.09585978,0.023303317,0.30501992,-0.10672394,-0.7272549,-0.07528802,0.031179238,-0.8527511,0.8407998,-0.36680415,0.24044964,-0.1226189,0.2933078,0.19149849,0.21648408,0.099848926,0.07169102,0.0631173,0.09061726,-0.02973226,0.20439948,-0.6532865,-0.043347936,-0.08918351,-0.3020509,-0.05014589,-0.2863932,-0.50110596,-0.9408372,0.4049171,-0.9246527,0.5197017,0.008210449,-0.3838748,0.29975775,0.051171184,0.36085263,-0.4843139,-0.0040431344,0.10044553,0.003950668,-0.054261293,-0.1833519,-0.042705078,-0.36271352,-0.5560474,-0.0060714823,-0.66993773,-0.12886886,-0.27111122,0.18280652,-0.39466622,0.044416495,-0.22954342,0.3600792,-0.5170767,0.045111503,0.24424984,0.09770865,0.20650947,-0.67526287,-0.0043460256,-0.18030559,0.2524486,0.0056536454,-0.31754652,0.4112992,0.12978324,0.46888566,0.05448452,-0.20072368,-0.13779916,0.033665553,0.18857601,0.3953612,-0.1512271,-0.39614984,-0.28833678,0.012077059,0.30738562,0.09388618,0.11332905,-0.30906707,-0.17651007,-0.019697087,0.030134814,0.34502384,0.5295794,-0.36924353,-0.30687183,0.35397294,0.56589067,0.26143268,-0.14603257,0.116281234,0.016675627,-0.617256,-0.11255489,0.21011806,-0.20506705,0.6649584,-0.20358315,0.22229981,0.4772741,-0.14127913,-0.14896,0.023945251,-0.024450513,0.031926613,-0.20525034,-0.19771756,0.2560739,-0.51098496,0.20393482,-0.24737212,0.61774623,0.2901409,-0.6645659,0.36758566,-0.50980306,0.254982,0.049220663,0.7281432,0.8638553,0.37720302,0.35611036,0.7983538,-0.36764738,0.12310781,0.037819438,-0.32402697,0.11148343,-0.2244992,-0.10320855,-0.51429653,-0.017925825,-0.24203862,-0.12854825,-0.02554624,0.49865893,-0.45349854,-0.08415533,0.09378631,0.6494859,-0.30901942,0.13864437,0.76159126,0.88817686,0.94083077,0.13342826,1.0796617,0.27848572,-0.18337683,0.19993135,-0.28861004,-0.84658396,0.20800741,0.29478732,0.49627876,0.34354857,0.041238002,-0.12826987,0.5070234,-0.49511296,0.18717219,-0.2189665,0.17154162,-0.008375453,-0.10438169,-0.43734494,-0.04983953,-0.055664174,0.10542451,-0.105434775,0.26058406,-0.17361467,0.48508355,0.050201576,1.3960943,-0.17596748,-0.0081857275,0.10192102,0.41632605,0.35117346,-0.1828723,-0.1870517,0.2719086,0.6112901,0.15619552,-0.71936387,0.17982565,-0.23440422,-0.36587116,-0.2301131,-0.28430197,0.0791562,-0.006010677,-0.4756885,-0.1888103,0.107591935,-0.26109442,0.35306352,-2.5260623,-0.28011864,-0.1454923,0.30946943,-0.26563063,-0.21819887,-0.17292377,-0.5037879,0.46418017,0.31137636,0.4490573,-0.6532596,0.28967288,0.4278087,-0.54578155,0.108919606,-0.68477833,-0.24694109,0.06472771,0.48144808,-0.038212143,-0.1763922,-0.005932457,0.22044137,0.42077166,-0.0356242,0.1192832,0.4296281,0.3587045,-0.12240616,0.444323,0.056126926,0.5122508,-0.3526332,-0.2262754,0.39446312,-0.13920268,0.4001139,-0.035732355,0.21344523,0.51928395,-0.6480648,-0.8988322,-0.4791287,-0.13386418,1.2832835,-0.37211296,-0.64360684,0.34777564,-0.4399348,-0.07527586,-0.08011909,0.47466102,-0.03725032,0.013865926,-0.8606362,0.09568066,-0.07225195,0.41498813,0.028532092,-0.10248553,-0.29765087,0.72020006,0.002328628,0.28180936,0.37299767,0.11794372,-0.20795162,-0.65450734,0.16250144,0.72841704,0.44060662,0.04023557,-0.2911157,-0.21320005,-0.27343044,-0.082856655,-0.0033184162,0.4932005,0.7686081,-0.09548753,0.15487751,0.19403125,0.031076908,-0.0046856934,-0.24876477,-0.15919252,-0.18702327,0.041144915,0.52730745,0.72779197,-0.10792269,0.46103215,-0.05276474,0.24108613,0.09466488,-0.50631624,0.6405822,1.1864911,-0.16364226,-0.30584997,0.55796736,0.3596534,-0.27385834,0.4416326,-0.49617776,-0.35307726,0.46850497,-0.117686205,-0.4719043,0.38170055,-0.4631857,0.26944104,-0.80566436,0.29615864,-0.37801692,-0.38949254,-0.6114231,0.030225227,-3.4831638,0.22652021,-0.4131433,-0.17551781,-0.29533324,-0.3296435,0.21768829,-0.5460934,-0.6571703,0.18905321,0.111577325,0.7060273,-0.22897413,-0.07013861,-0.16270807,-0.22416493,-0.3136041,0.17102285,0.3095058,0.3441787,-0.09812689,-0.48567563,-0.2587338,-0.13332525,-0.40213874,-0.12845206,-0.5692013,-0.44958147,-0.18524979,-0.56407845,-0.11983784,0.696227,0.010034119,0.011096135,-0.33393842,-0.044046946,0.05489495,0.32424682,0.25591114,0.4015944,0.05147747,-0.13978863,-0.10717641,-0.18607445,-0.074121274,0.051808503,0.075817056,0.29346758,-0.100787126,0.22748525,0.49735898,0.68030924,-0.256797,0.75848716,0.6571765,-0.17912377,0.33598262,-0.22091344,-0.40323427,-0.6416563,-0.3009965,-0.10399248,-0.42931786,-0.49690613,-0.13444814,-0.35380667,-0.81562644,0.51307166,-0.18643166,0.2794983,0.0939093,0.26919565,0.47278777,-0.028971529,-0.052340005,-0.121537805,-0.24217676,-0.50028974,-0.2759605,-0.696548,-0.5604874,0.07528882,0.89318955,-0.3472032,-0.009133518,0.17685474,-0.3476649,-0.006731987,0.01645894,0.026982335,0.33054423,0.38643447,0.15897019,-0.6497267,0.59669435,-0.007926175,-0.2192936,-0.6034774,0.20980267,0.5319222,-0.68204814,0.5441855,0.23441961,-0.05741823,-0.25635192,-0.70023817,-0.18439364,0.12876949,-0.254559,0.48718715,0.27439013,-0.7844477,0.50011986,0.31239653,-0.3005546,-0.737799,0.53424114,-0.020206204,-0.55091417,-0.010630237,0.384489,-0.24737202,0.15686704,-0.30000883,0.33800554,-0.34126702,0.19356868,0.32005635,-0.14129692,0.08023338,-0.117558286,-0.30495626,-0.63356304,0.08644838,-0.5030554,-0.14510341,0.43710497,0.022735974,0.048127957,-0.05611326,0.09571082,0.560909,-0.3245638,0.20107315,-0.15432762,-0.3678688,0.41313487,0.6337374,0.41148165,-0.41710472,0.62781733,0.023676872,-0.1555836,-0.033845272,0.21703954,0.41092587,-0.04887951,0.3854394,0.020659983,-0.024454415,0.0949435,0.8418743,0.1601444,0.68065697,0.14826643,-0.0029342559,0.38259405,0.17493396,0.24187799,-0.1028033,-0.32447228,0.020071212,-0.028884223,0.21843506,0.5193052,0.15139093,0.18218125,-0.12915854,-0.19323099,-0.008528592,0.19649656,0.20937695,-1.2872313,0.37476534,0.2752954,0.631463,0.6269383,0.061916213,-0.073263645,0.6540188,-0.3067512,-0.03514352,0.28626558,0.029645992,-0.5597286,0.5643035,-0.68939537,0.48844594,0.029548809,0.033899445,0.1999037,0.18865538,0.41354913,0.7741431,-0.15240659,-0.07484049,0.06968018,-0.23555498,0.24667755,-0.3486906,-0.073181145,-0.2872737,-0.44178072,0.6501294,0.5082906,0.20493482,-0.18256323,0.00018431034,-0.016929755,-0.20040977,0.27340502,-0.07533682,0.08108242,-0.13670693,-0.63572437,-0.23529005,0.4434735,0.022916649,0.11909541,-0.06208127,-0.046231877,0.18170099,-0.13352738,-0.17654851,-0.19245842,-0.92277753,0.16374898,-0.5617199,-0.43515852,0.51519215,-0.299414,0.24548051,0.32982087,0.05981746,-0.5279246,0.2665884,-0.24045834,0.73466504,-0.0037831664,-0.15711546,-0.35113317,0.17982514,0.2978773,-0.31357956,0.12151205,-0.25332773,0.07118296,-0.50501794,0.6181897,-0.09313939,-0.3720765,0.0515352,-0.18940385,-0.082133666,0.5591262,-0.2684502,-0.24878572,-0.01686682,-0.23008823,-0.38273048,-0.4181724,-0.07016242,0.26952747,0.29820988,0.1176701,-0.08592575,-0.012374418,0.05184824,0.7121352,0.062418826,0.43683332,0.41461685,0.02204832,-0.404155,0.048641022,0.45278528,0.6245286,0.06368973,0.019388186,-0.29167917,-0.5025547,-0.3986458,0.13213114,-0.11218126,0.43286902,-0.020305736,-0.24788108,0.83569634,0.13937293,1.0368043,-0.05619226,-0.32030267,0.23335107,0.61664397,-0.05231062,-0.22201405,-0.20939814,0.8281078,0.6265822,0.0010651669,-0.06557132,-0.25346866,-0.01873965,0.18149793,-0.22297321,-0.004813854,-0.040280856,-0.46598104,-0.12590334,0.18417035,0.37755463,0.05311626,-0.16327485,0.07773372,0.010048787,-0.06087571,0.08386072,-0.55292785,-0.1077352,0.4090019,-0.06333287,0.0058860267,0.20635703,-0.39453223,0.40703696,-0.5809207,0.06493417,-0.37181538,0.19681872,0.15572476,-0.28580856,0.21549144,-0.0065805316,0.3704872,-0.51273245,-0.17858028,-0.39558104,0.47546488,0.27468258,0.14951505,0.6094604,-0.23226449,0.274705,0.18934436,0.44398338,0.80080426,-0.32209778,-0.03790101,-0.017443892,-0.36928114,-0.6622843,0.41885456,-0.3855788,0.3338636,-0.1501522,-0.21730113,-0.7370196,0.09780989,0.16049287,0.10921048,-0.030433616,-0.820527,-0.36885688,0.18623559,-0.15176785,-0.15836105,-0.45826334,0.064951435,0.63827336,-0.31807062,-0.15059116,0.1214739,0.06585198,-0.26754066,-0.5106597,0.00739752,-0.38421303,0.2331823,0.08124978,-0.34565988,0.0795088,0.15990482,-0.58723825,0.14981297,0.20167516,-0.3883831,0.09907403,-0.18180202,-0.050893094,1.1415464,-0.47910792,0.097290866,-0.49280292,-0.6236867,-0.97482353,-0.29414603,0.65169156,0.18781556,0.19050685,-0.78880596,0.071729265,-0.10791052,0.14789979,0.033304445,-0.47507286,0.529377,0.03403179,0.3246958,-0.12843938,-0.80984145,0.2515514,0.019287225,-0.21144114,-0.4681642,0.5423986,-0.030325158,0.7263759,0.088340424,0.11635254,0.09825229,-0.6719288,-0.040113542,-0.21631983,-0.18763816,-0.654595,0.0032099315 -446,0.3301438,-0.05799749,-0.362448,-0.1857623,-0.3572312,0.025461279,-0.023666332,0.2892419,0.28478742,-0.2938921,0.030903433,-0.045293573,-0.1313643,0.41271222,-0.20923378,-0.7574931,0.009242635,-0.0026604282,-0.53017414,0.41547197,-0.5801066,0.48745254,0.1361002,0.321324,0.03353852,0.45401588,0.14667697,-0.10077845,0.12746678,-0.07093073,-0.29771677,0.1357124,-0.7019405,0.28425044,0.05598315,-0.42288935,0.10710887,-0.16662839,-0.3639027,-0.67318684,0.33565575,-0.7310867,0.4797632,-0.0877241,-0.4327467,0.057812627,0.013744042,0.2650584,-0.515566,0.160434,0.22926015,-0.3466136,0.13608658,-0.24637042,-0.15832397,-0.60320055,-0.5153641,-0.11087206,-0.69501466,-0.20430769,-0.41383302,0.07825167,-0.44732088,-0.06572421,-0.2717387,0.22576721,-0.5718497,0.055451386,0.1777387,-0.2292194,0.18172154,-0.44452494,-0.064650305,-0.15238704,0.0136438245,0.07826675,-0.19995125,0.35081628,0.2234385,0.4894738,0.13797212,-0.30219883,-0.2669218,-0.088284954,0.11415741,0.3677792,-0.1787369,-0.23627752,-0.14348923,0.015440033,0.21850745,0.29388723,-0.10655432,-0.23296162,0.016139291,0.09815183,-0.30564138,0.12701806,0.50350803,-0.39646527,-0.3159811,0.39116016,0.41698247,-0.068348534,-0.19756548,0.31465304,-0.08549142,-0.3522324,-0.34252757,0.12761018,-0.11809046,0.46818113,-0.29933923,0.07725472,1.0254763,-0.22797664,0.14426902,-0.002442516,-0.061798036,-0.1645396,-0.10224971,0.0014219009,0.09505264,-0.54800624,0.08718816,-0.23257521,0.87866944,0.25730184,-0.80013824,0.26328242,-0.46679562,0.18590964,-0.23801933,0.67962843,0.6161717,0.5199961,0.22378229,0.87082756,-0.7078181,0.07487812,-0.0028225183,-0.46716434,0.29397076,-0.19562244,-0.05342454,-0.47377008,-0.027267141,0.025816638,-0.11608425,-0.09068264,0.23807128,-0.45954356,-0.008285478,0.055912517,0.7135928,-0.4277808,0.05269042,0.64124244,0.93718207,0.95596606,0.030071642,1.2739428,0.27818006,-0.18458678,0.19099143,-0.34745884,-0.61233276,0.09690477,0.29818627,0.28603938,0.25659496,0.22274843,0.25349864,0.35952708,-0.26320145,0.1251688,-0.16268298,0.41663292,0.07374985,-0.20944987,-0.33335197,-0.2605795,0.14384024,0.15690099,-0.24436334,0.40682977,-0.0013172626,0.5328356,0.24315813,1.5330198,0.12785104,0.11895464,0.101556465,0.55401105,0.22011669,-0.028640104,0.11562324,0.350865,0.36118692,0.14825012,-0.65650874,0.08113357,-0.30637205,-0.4879937,-0.09742875,-0.40558308,-0.026201276,-0.2206788,-0.5238428,-0.19514205,0.04135535,-0.21830927,0.39687032,-2.3684602,-0.068123825,-0.08970575,0.25373796,-0.25626764,-0.2049509,-0.037758622,-0.4376983,0.23375462,0.4751292,0.43151143,-0.7670355,0.5478519,0.62860847,-0.33507058,-0.056675933,-0.69246453,-0.19909027,-0.1260442,0.40697733,0.029574784,-0.057747737,-0.20399164,0.16146412,0.6527523,0.07347828,0.011310701,0.14507146,0.4817282,-0.04614521,0.64948857,0.2428446,0.5209173,-0.23033029,-0.0922881,0.3511193,-0.5626067,0.3185215,0.16859378,0.1461399,0.37153932,-0.5115524,-0.9778005,-0.65134454,-0.39028805,1.2296449,-0.4275595,-0.3817506,0.4854833,-0.20546053,-0.17253676,-0.14427406,0.29211673,-0.15100926,0.10114642,-0.65511763,0.0845307,-0.10541716,0.2310145,0.053189296,0.09416811,-0.18643287,0.8386864,-0.17086774,0.53447497,0.25746426,0.028994897,-0.16299655,-0.41096142,0.058737405,0.75640047,0.45998973,0.18662664,-0.14268751,-0.23647976,-0.0639218,-0.2526679,0.20245332,0.5115295,0.7350186,-0.0737997,0.08764219,0.4728443,-0.34669253,-0.13002037,-0.1946997,-0.30031088,0.04086314,0.1422176,0.5030493,0.67735183,-0.21378352,0.36786813,-0.05304054,0.2625193,-0.07088391,-0.57044023,0.31849656,0.79808533,-0.11051871,-0.122977294,0.41869593,0.38307902,-0.43293285,0.3518655,-0.6163082,-0.30466366,0.63950866,-0.094384395,-0.4763173,0.026503874,-0.307787,0.0006611164,-0.847664,0.39086834,-0.17610455,-0.74927926,-0.5918395,-0.15227804,-4.075387,0.12066886,-0.34827328,-0.14192544,-0.0886596,-0.07536221,0.35421717,-0.66401,-0.5937834,0.016477294,0.14002842,0.43647954,-0.058860525,0.20846651,-0.34249938,-0.11822777,-0.36950037,0.27569273,0.07009168,0.14732073,-0.04733136,-0.49387008,-0.010497142,-0.16614777,-0.5511928,0.100560896,-0.5371224,-0.5863913,-0.050981965,-0.43553653,-0.29457834,0.75727314,-0.30655175,-0.060664956,-0.19670913,-0.15486775,-0.41282666,0.3097812,0.27790377,0.0022927339,0.026885888,0.123032495,-0.21496163,-0.44424164,0.22725056,0.038996115,0.6173325,0.26690868,-0.19555381,-0.046963587,0.8159891,0.46747193,0.10895968,0.7594201,0.21361175,-0.27091837,0.36174032,-0.40474504,-0.36222076,-0.78342086,-0.45355394,-0.2366476,-0.39680687,-0.41935742,-0.032501265,-0.3939802,-0.8340596,0.37216902,0.18729807,0.08867662,-0.13892218,0.17889251,0.36352703,0.001074227,-0.016688792,-0.06290685,-0.30125666,-0.65586627,-0.33132035,-0.7031266,-0.5509686,0.27698243,1.1302558,-0.18500353,-0.22842811,-0.09260245,-0.26199603,0.09675415,0.13273802,0.14504658,0.15512034,0.327288,-0.15093468,-0.69573694,0.42206606,0.010846524,-0.010488739,-0.63878834,-0.05319556,0.6737659,-0.8102448,0.60880417,0.25380775,0.1708728,0.21242288,-0.52978665,-0.38058552,-0.12804028,-0.19213493,0.5843451,0.090385355,-0.72086704,0.4450924,0.21728148,-0.2454984,-0.47598425,0.41801125,-0.19954681,-0.26337355,0.04637233,0.331397,0.086971596,-0.14868739,-0.015267821,0.3124832,-0.58651245,0.3099853,0.42103237,0.042925224,0.23889884,0.048185505,-0.23584089,-0.7306947,-0.105120294,-0.43842635,-0.20420827,0.01601196,0.011802018,-0.11825115,0.19637749,0.030728515,0.43981138,-0.120493904,0.20020793,0.012540267,-0.3699552,0.49777886,0.5107728,0.3901853,-0.5080644,0.6010668,0.13988239,0.08085366,-0.071878664,0.11887249,0.45343935,0.27008596,0.40581873,0.011862149,-0.1557396,0.29732907,0.88525933,0.299407,0.54940116,0.16208468,-0.052687425,0.48375386,0.2880503,0.0939887,0.0126855625,-0.29984114,0.15834895,0.05851018,0.19047818,0.3874116,0.18392506,0.37420136,-0.029034039,-0.14473857,0.15355161,0.29026276,-0.20086497,-1.0890921,0.24478468,0.3342385,0.65418994,0.6023856,0.07615674,0.01491503,0.6412825,-0.3585664,0.017917361,0.40277264,0.07762267,-0.52709484,0.63234144,-0.70890427,0.56015795,-0.09682166,0.015209248,0.056013525,0.26932067,0.3170888,0.9555155,-0.085676245,-0.08860305,-0.02998802,-0.2961182,0.10093163,-0.5840883,-0.014304831,-0.3975647,-0.2938866,0.53956914,0.38306206,0.28925183,-0.27572298,-0.05053238,-0.08316494,-0.09468583,0.21672784,-0.10783399,-0.06857881,-0.193973,-0.44847664,-0.39851972,0.56201404,-0.19398531,0.18265317,0.04001806,-0.29957274,0.4776603,-0.06005407,-0.2557068,0.013874018,-0.50956947,0.16423562,-0.16166672,-0.44605345,0.37077075,-0.33782685,0.3507687,0.22830346,-0.017662225,-0.41821223,0.11543691,0.1521994,0.58024305,-0.0807069,-0.28255317,-0.317862,-0.004157126,0.1763691,-0.35117263,-0.012450475,-0.32457352,0.07641862,-0.5481892,0.314403,-0.22384971,-0.3187825,0.025647182,-0.2983886,-0.10276516,0.34724584,-0.25298178,-0.25566402,0.0055901823,0.008572074,-0.21536806,-0.14598408,-0.38670304,0.36598447,-0.08592938,-0.017435363,0.08006047,-0.19317183,0.070399426,0.3930143,-0.06533934,0.17017478,0.11842172,-0.09096595,-0.35949844,-0.07369558,-0.008730077,0.34581867,-0.013302649,0.15040554,-0.082642965,-0.46580756,-0.21674183,0.12478193,-0.21057552,0.3257838,0.07053384,-0.59652066,0.89876455,0.019168634,1.2304026,-0.03454101,-0.3335156,0.11012506,0.6304033,0.27707547,0.15157053,-0.101388484,0.89697933,0.7895869,-0.28030083,-0.2491212,-0.50086915,-0.30003157,0.27631044,-0.24170464,-0.24109653,0.07962965,-0.7680169,-0.04576418,0.30241245,0.19450651,0.21107414,0.121580325,-0.17533945,0.097996406,0.28226793,0.4703572,-0.50424474,-0.21209224,0.3182589,0.00020851538,0.16214718,0.1374636,-0.3712813,0.47969964,-0.61286724,0.28871143,-0.33158424,0.1105655,-0.25682193,-0.2753403,0.14478956,-0.0135416845,0.35296583,-0.12853867,-0.36238325,-0.22625396,0.6714783,0.21152687,0.3685072,0.80584943,-0.25043228,0.10661879,0.018510286,0.3547161,1.1341527,0.05615129,-0.18430616,0.27819473,-0.410497,-0.65570843,0.22936313,-0.3612427,-0.024641184,0.0029714017,-0.43452084,-0.2797128,0.24386615,0.13021776,0.010551526,0.20083117,-0.44765505,-0.15891191,0.30938965,-0.46147746,-0.3495436,-0.3159018,0.34613228,0.8040679,-0.53351974,-0.2141307,0.13469611,0.18872762,-0.32381672,-0.44156554,-0.14855477,-0.27412212,0.49660286,0.12109906,-0.439215,0.19309685,0.2976948,-0.26794702,0.05761508,0.45704556,-0.36718628,0.21868268,-0.1512952,-0.0006259932,0.9754839,0.057932414,-0.052177675,-0.8201857,-0.4188636,-0.9205844,-0.25607112,0.6017822,0.25397402,-0.11519301,-0.558725,-0.09674437,0.14755669,-0.026889296,0.045626003,-0.6086058,0.519417,0.112364225,0.31088987,0.015577821,-0.9705438,0.05079276,0.19939181,0.008863027,-0.62744015,0.7199113,-0.5423454,0.69118434,0.04897401,0.05345475,0.02388238,-0.48476908,0.3155511,-0.35720342,-0.36494124,-0.60542274,-0.021572232 -447,0.4517142,-0.16423167,-0.7208946,-0.17249434,-0.036343906,-0.20299354,-0.037998155,0.62131,0.3373836,-0.616122,-0.05345827,-0.29957587,-0.013208558,0.58090717,-0.1638729,-0.93254095,0.046948645,0.13786675,-0.2963254,0.39897376,-0.4830987,0.21411303,0.084254555,0.3497181,-0.044471566,0.19413444,0.19370696,-0.24307714,-0.03429312,0.016227493,-0.14476992,0.3776635,-0.43254772,0.013036921,-0.02105978,-0.4832961,0.08224201,-0.4007866,-0.38393953,-0.8810707,0.29607162,-0.8020315,0.56234014,0.26114678,-0.24368383,0.13569538,0.29946157,0.27393964,-0.2222366,0.05367947,0.12996271,-0.14093818,-0.078653224,-0.17005,-0.44635662,-0.46083432,-0.64117366,0.10948956,-0.50504965,-0.22849068,0.045478977,0.20268616,-0.41217974,0.12797196,-0.15758587,0.48931995,-0.35206068,-0.196579,0.48847458,-0.24843779,0.37475443,-0.49680245,-0.1933812,-0.13767359,0.097080044,-0.14323786,-0.28742707,0.2257297,0.30539423,0.66491234,-0.0076360656,-0.32152206,-0.41019434,0.041005787,0.055240314,0.34717962,-0.41378987,-0.4601908,-0.11564001,0.16761972,0.09787856,0.3379022,0.18606336,-0.45165458,0.009966233,0.080460675,-0.36497533,0.40127856,0.55874157,-0.49335164,-0.22774228,0.22236377,0.6303117,0.0990675,-0.06879314,0.18718162,0.113294,-0.63091034,-0.10793049,0.17067152,-0.21133456,0.55144656,-0.14903913,0.21827984,0.7063335,-0.24549133,-0.024209062,0.0762013,-0.065917425,0.014433624,-0.5163467,-0.06474538,0.26655835,-0.48570392,0.1887892,-0.20822746,0.8094066,0.22102803,-0.7096719,0.4055977,-0.61600155,0.21194448,-0.23520991,0.626393,0.58442265,0.3366995,0.43199867,0.80225444,-0.5783332,0.051847532,-0.2028397,-0.34576967,0.0074305534,-0.13866816,0.044402234,-0.51411927,0.035576124,-0.056503017,-0.051923815,0.24512123,0.31878668,-0.6335954,-0.15170808,0.19089589,1.0971847,-0.27284622,-0.22435689,0.6833037,0.941523,1.1018625,-0.0020007892,1.2221657,0.26669404,-0.15178639,0.36728472,-0.25296265,-0.8985698,0.35503483,0.2696591,-0.28000996,0.30025128,-0.014178487,0.016824067,0.5023375,-0.2650501,0.17075542,-0.30336767,0.311221,0.16300741,-0.24653713,-0.27953294,-0.16876672,-0.15468827,-0.19577423,0.093766876,0.20619175,-0.12957118,0.35708806,-0.30324525,1.6693473,-0.16269109,0.122883305,0.17139302,0.42499542,0.21735407,0.14048669,0.022296974,0.22328931,0.1642378,0.24429165,-0.5541634,0.10011624,-0.30109233,-0.5201147,-0.13848445,-0.28627652,0.03475498,-0.18539634,-0.46071944,-0.17028663,-0.16310552,-0.2554522,0.43698832,-2.5832205,-0.2597718,-0.06666948,0.29557645,-0.28996944,-0.3415839,-0.22932562,-0.44270658,0.5222763,0.3805123,0.5330646,-0.64872354,0.43184492,0.45660654,-0.3889763,-0.1389164,-0.70305693,-0.028623484,-0.06490347,0.120015904,0.082208805,-0.20260698,0.07238652,0.113032185,0.553453,-0.09938283,-0.06554308,0.20856938,0.43296334,0.07976767,0.5244128,-0.163947,0.6359435,-0.48425776,-0.319797,0.4459413,-0.6196139,0.23074004,0.1802056,0.0782483,0.4193609,-0.5662421,-1.041247,-0.6049156,-0.25262123,0.95689195,-0.05637266,-0.40920988,0.3216211,-0.31114966,-0.13340928,-0.08271175,0.33661267,0.041873556,0.027736394,-0.8155073,0.12146636,-0.111706786,0.08369536,-0.010783758,0.0033914696,-0.17725751,0.684681,-0.1225599,0.34696776,0.47297227,0.048824623,-0.45051214,-0.5990147,-0.1731034,0.89731115,0.20063403,0.20589128,-0.15499401,-0.21178237,-0.3486619,-0.13734767,0.12006275,0.5321325,0.9944618,-0.19228841,-0.004807085,0.37505454,0.09943051,-0.05707205,-0.116806105,-0.510684,-0.10187189,0.07184182,0.53814536,0.68284225,-0.34478515,0.43707758,-0.038658336,0.44180298,-0.30888382,-0.3351898,0.4625277,0.95243526,-0.30593008,-0.39376733,0.5484906,0.33189276,-0.5449851,0.5317586,-0.58531505,-0.35976675,0.4748483,-0.13202561,-0.5297553,0.08868972,-0.33757207,0.13505812,-1.0801041,0.16814044,-0.33685124,-0.1840322,-0.49396783,-0.37177208,-3.5774736,0.29449886,-0.41389135,0.03867925,-0.13524069,0.1394749,0.110157505,-0.4588248,-0.82731354,0.018739166,0.19411667,0.511066,-0.21263117,0.2573004,-0.2247224,-0.07433233,-0.29681745,0.15357825,0.18050256,0.28206146,0.16625589,-0.48436153,-0.022249788,-0.1924679,-0.56889236,0.0884829,-0.66723084,-0.5098301,-0.22737758,-0.8079484,-0.38252962,0.7022547,-0.43126833,-0.051208302,-0.19985421,0.19144644,-0.12427844,0.4858792,0.05053965,0.16033052,0.02206229,-0.09955641,-0.21810451,-0.20460428,0.04423785,0.10317215,0.3985251,0.38377002,-0.11332726,0.20836793,0.6825768,0.90315723,0.1267862,0.6044551,0.4915989,-0.073932104,0.40539128,-0.3822948,-0.21331006,-0.5422668,-0.37060907,-0.040167883,-0.39599264,-0.59887785,0.16068673,-0.44826406,-0.7543245,0.67748004,0.039937954,0.0911064,0.08118076,0.19979829,0.494549,-0.20667815,0.03027459,0.044143174,-0.16432752,-0.6505023,-0.26783508,-0.5697159,-0.6002665,0.27372503,1.0967923,-0.28652307,-0.008232474,-0.0037827538,0.002770387,-0.20837195,0.25412667,0.033383705,0.21181162,0.3174415,-0.08388301,-0.5964717,0.30676615,-0.07239859,-0.16695905,-0.5739661,0.17912859,0.6566915,-0.7819444,0.7739678,0.23057875,0.059697013,0.056145675,-0.59177303,-0.17840296,0.024605151,-0.16452065,0.42748374,0.08636964,-0.68722016,0.4385408,0.79160124,-0.36267346,-0.7559072,0.29829565,0.01487664,-0.3108524,-0.087924965,0.40827864,0.18514368,0.011480807,-0.08109247,0.16432516,-0.5404562,0.10065244,0.2491979,-0.07301135,0.50998396,-0.20974973,-0.26395166,-0.88874,0.040860124,-0.71133673,-0.13363647,0.36065823,-0.008641963,0.034537356,0.1266381,0.04184491,0.36615828,-0.23685661,-0.0002294733,0.035907142,-0.19265376,0.38254803,0.38023794,0.32791144,-0.5300826,0.5934373,0.07512658,-0.14490315,0.14801516,0.03245525,0.43549523,0.09871006,0.49989843,0.12810661,-0.152733,0.20617032,0.970122,0.021949722,0.3848516,0.14243066,-0.18752535,0.31312507,0.16722108,-0.11107015,-0.0064161923,-0.5116314,0.11315424,-0.12461055,0.2346722,0.57419467,0.2031094,0.42818272,0.017983878,-0.29255626,-0.042843424,0.18973319,0.026687654,-1.2306516,0.2993553,0.17514825,0.79914486,0.4800026,0.1548233,0.14962062,0.5860608,-0.20954297,0.18945128,0.38485548,-0.43419358,-0.5949393,0.625424,-0.63718224,0.42074284,-0.22801417,0.13570412,0.025466355,0.18988334,0.44522446,0.71318376,-0.021275895,-0.0035063922,-0.067001775,-0.2035124,0.23914893,-0.49124452,0.026624532,-0.3596643,-0.2316583,0.6476829,0.4147066,0.34694174,-0.22508933,-0.08427013,0.2756736,0.005314146,0.16938528,-0.12708679,0.095606014,-0.12992255,-0.62401444,-0.24285659,0.69100195,0.2652933,0.22885388,-0.1263164,-0.168792,0.4482837,-0.10783021,-0.123791024,-0.21761107,-0.55007863,0.06831344,-0.28715688,-0.61278766,0.30486038,-0.051354785,0.20112029,0.21357217,0.14012378,-0.5468591,0.5107518,-0.19049476,0.73519546,-0.3408519,-0.07872952,-0.51916164,0.15720358,0.23290351,-0.30667746,-0.123397574,-0.29240054,-0.053309843,-0.36318016,0.5331658,-0.008505734,-0.3373937,0.008213337,-0.14453635,-0.063600734,0.49900347,-0.3458327,-0.14720961,0.001858952,-0.31742314,-0.3368941,-0.23505291,-0.031984884,0.38996884,-0.018497368,-0.1280584,-0.103789,-0.26240775,-0.13477874,0.52020925,-0.07501269,0.1992344,0.3372299,0.28514925,-0.44003388,-0.09375767,0.29725772,0.54982525,0.07341483,-0.15150337,-0.18771745,-0.30711463,-0.30493304,0.11060724,-0.16372862,0.42619988,0.2024811,-0.47789866,0.88480276,0.26604554,1.4686018,0.10503828,-0.32758063,-0.06882959,0.42806962,0.096124664,-0.09660347,-0.4513989,0.8961899,0.692695,-0.24153325,-0.11483187,-0.44242558,-0.028125368,0.1648725,-0.29185537,-0.11126227,0.026621345,-0.65581447,-0.29421267,0.37088314,0.19380906,0.38259447,-0.21262087,0.23364179,0.061346695,0.03497076,0.23792753,-0.334669,-0.23989837,0.19095439,0.5282692,0.02160125,0.03575964,-0.41344446,0.35035354,-0.44651476,0.2191233,-0.3931791,0.19956507,-0.11343817,-0.21511382,0.23173922,-0.14149407,0.31312704,-0.1971283,-0.24885233,-0.02972335,0.4916336,0.2451852,0.18839192,0.81062126,-0.23785727,-0.042031206,0.13920905,0.68495524,1.2001796,-0.2101498,-0.078588754,0.3653384,-0.14024065,-0.78881544,0.44509476,-0.25849092,0.10861298,-0.06396334,-0.28732842,-0.63685447,0.31440413,0.27743196,-0.11994326,0.27988416,-0.6327356,-0.19755857,0.21316549,-0.45503807,-0.24259204,-0.4324202,0.21442915,0.78263193,-0.19891214,-0.23992234,0.30179664,0.18040085,-0.15142344,-0.52149606,-0.010602355,-0.3276737,0.31758925,0.29095381,-0.3203395,0.08472763,0.059209637,-0.5650008,0.060335334,0.2102646,-0.26347554,0.18945166,-0.25950724,-0.19035676,0.88947856,-0.12055736,0.25950387,-0.67281795,-0.42719504,-1.0289443,-0.20822194,0.7038841,0.038168706,0.061057705,-0.55727476,-0.05926186,0.0824631,-0.4336317,-0.033967417,-0.28053057,0.45467955,0.084202126,0.3833445,-0.1471297,-0.6522552,0.032949284,0.35286158,-0.19574833,-0.6780023,0.4676182,-0.09988146,0.9273762,0.14924009,0.011773069,0.5698446,-0.46446273,-0.071169436,-0.34546867,-0.33827665,-0.6288583,-0.15662266 -448,0.42296317,-0.052017223,-0.70880556,-0.03987619,-0.2345366,0.03712285,-0.24867964,0.580204,0.2869381,-0.4309534,0.029281782,-0.2975029,0.16177149,0.38377714,-0.025805587,-0.60385567,0.031196913,0.15334423,-0.58623683,0.5039192,-0.527541,0.3291439,0.23556478,0.21014036,-0.07312775,0.30452457,0.14180307,-0.27963218,-0.08210889,-0.17845489,0.022809312,-0.11499723,-0.6193334,0.17271858,-0.16647576,-0.27224028,0.18142955,-0.51511174,-0.2308327,-0.4553407,0.15757404,-0.7762229,0.44677982,0.14088723,-0.20987451,0.23751032,-0.07940657,0.30716205,-0.1379193,-0.03957927,0.18104608,-0.22877403,-0.46090093,-0.26894933,-0.19782679,-0.36300078,-0.65360874,-0.091828674,-0.5714206,0.009745588,-0.2974775,-0.09713483,-0.27861264,0.16696973,-0.00861762,0.02437373,-0.3418609,0.1400578,0.1369365,-0.23488365,0.11577002,-0.3566105,0.016029526,-0.036687598,0.31408733,-0.026226776,-0.18821818,0.36518797,0.24988787,0.49715194,-0.14570595,-0.0005223602,-0.25854912,0.011046323,0.103446476,0.64709824,-0.11407358,-0.22542489,-0.10003719,0.062954314,0.20090628,0.25248533,0.009563297,-0.19572203,-0.024902822,-0.08901552,-0.5400229,0.29990235,0.42078137,-0.3526781,-0.056800764,0.49668908,0.32054573,0.14930303,-0.11185545,-0.018257113,-0.04366648,-0.51725477,-0.16685532,0.05501124,-0.17417979,0.5007505,0.0196096,0.24089873,0.6007379,-0.12271532,-0.069117665,0.009928332,-0.06064483,0.02551321,-0.065887615,-0.09636378,0.29542252,-0.56026167,-0.17394502,-0.31972152,0.8313172,0.07452961,-0.93030024,0.45374337,-0.52306324,0.0094038285,-0.116275914,0.56244797,0.67217296,0.6663955,0.08268163,0.7604075,-0.6298675,0.15243433,-0.1845063,-0.5280841,0.46119216,-0.0010933504,0.29339278,-0.41857782,-0.100802936,0.27454266,-0.19766064,0.2777175,0.5185521,-0.41787782,-0.16449234,0.04928915,0.6023001,-0.31367722,-0.23204128,0.55674654,1.1806499,0.64042044,0.12428533,1.0957137,0.23502183,-0.18472119,0.1827334,-0.23042436,-0.8597725,0.13951705,0.26565143,0.050370097,0.272072,0.20354323,-0.14570187,0.29623893,-0.050092507,-0.09547899,0.100717865,0.32683447,-0.15579735,-0.18653363,-0.2549049,-0.4419055,0.018701242,0.00907598,0.103553504,0.5294815,-0.17205675,0.4783894,0.05814593,1.7457167,0.15224421,0.20723684,-0.03203569,0.38097063,0.2059433,-0.16095321,-0.31497797,0.34146252,0.26475415,0.09137287,-0.44297266,0.024933686,-0.13638616,-0.48184153,-0.044800628,-0.38507438,-0.030590782,-0.14984265,-0.23388696,-0.11599362,-0.023696415,-0.38635072,0.4756768,-2.915374,-0.16136265,-0.05658439,0.4538701,-0.16895944,-0.26530394,-0.16482499,-0.475304,0.31039384,0.34071663,0.5150088,-0.5434322,0.3452928,0.3685336,-0.5994572,-0.1474322,-0.60188156,0.06910961,-0.09612429,0.2348011,-0.10146699,-0.17021419,0.05776051,0.06663843,0.38509092,-0.06542458,0.05122673,0.35039982,0.6096911,0.17204493,0.50980514,-0.25053707,0.5921955,-0.39856216,-0.114972435,0.10574273,-0.3024095,0.38682786,-0.19743252,0.16279452,0.26834735,-0.32763898,-0.8646838,-0.25001144,0.065545805,1.1257414,-0.5098559,-0.2572073,0.26650274,-0.107820295,-0.27542827,-0.103215866,0.6516002,-0.04621954,-0.14038442,-0.579465,-0.020202776,-0.046209678,0.19528417,0.013157298,0.047408123,-0.32949343,0.5505418,0.109209895,0.67475575,0.3718406,0.010927807,0.01560162,-0.18423288,0.27496347,0.8864808,0.14108694,0.29062274,-0.24524494,-0.070943974,-0.3275832,-0.09906969,0.07500297,0.41890118,0.51650745,-0.030999178,0.08773434,0.28478086,-0.1588686,-0.028280007,-0.05352914,-0.4059545,-0.10432277,-0.1631476,0.5531573,0.9384963,-0.10967841,0.35810325,0.06326332,0.23668022,-0.24692816,-0.544076,0.567643,0.41628662,-0.105832696,-0.020105114,0.49189663,0.598533,-0.20876616,0.48630503,-0.4411644,-0.4873689,0.41379666,-0.1100199,-0.39484942,0.44575164,-0.21424349,0.11337263,-0.8371268,0.10123753,-0.2544264,-0.49014947,-0.40757465,0.16419573,-3.301053,0.22196639,-0.06776908,-0.25212917,0.023383088,0.118308835,0.16780673,-0.44952753,-0.41805875,0.19315831,0.24023162,0.6397651,-0.053516556,0.059886903,-0.3867544,-0.42280138,-0.21094382,0.16819459,-0.0090993,0.19257389,0.03392138,-0.46939826,-0.12568347,-0.2636378,-0.13217005,0.10938772,-0.51369643,-0.3113126,-0.08860776,-0.36936966,-0.46556982,0.6832726,-0.4746485,-0.125174,-0.07322814,0.010319288,-0.0028116603,0.18390198,-0.20908375,-0.10216906,-0.059227377,-0.08302527,-0.03530222,-0.43598256,0.3711563,0.0752311,0.519536,0.5266888,-0.078480415,-0.099617295,0.74905187,0.4392389,0.14578632,0.8737576,0.22058874,-0.10495844,0.22086291,-0.32395726,0.013752893,-0.48078927,-0.13248639,-0.35504434,-0.34919837,-0.33667135,-0.014026861,-0.30640325,-0.7206817,0.49815226,0.20727618,-0.08324965,-0.0032618914,0.4038304,0.32011762,-0.17987923,0.039625872,-0.1885312,-0.20781912,-0.43173054,-0.205746,-0.73187065,-0.38210464,0.40876773,0.90105075,-0.20538396,-0.0436035,-0.008551528,-0.21635734,0.05723447,-0.03927936,0.12418381,0.3044537,0.2923642,-0.13494171,-0.63549757,0.59369856,-0.31670627,-0.09338024,-0.7739193,0.0058440245,0.5167222,-0.77662396,0.2524046,0.48309544,0.027092883,0.25180194,-0.42744184,-0.20536186,0.112156786,-0.19285627,0.12105747,0.14883615,-1.0748521,0.42095575,0.21445839,-0.362155,-0.7155821,0.38339064,-0.10921329,-0.22195435,-0.08013772,0.21825172,0.19671036,0.10298443,-0.27930853,-0.0026170823,-0.60494214,0.27398035,0.17391519,-0.096458636,0.42720476,0.0699266,-0.066354305,-0.7163358,-0.12533227,-0.34258366,-0.13352425,0.48044315,0.10840899,0.34044066,-0.07390986,0.3138536,0.23148017,-0.548863,0.0058057145,-0.16542868,-0.30155605,0.6046373,0.46084538,0.44872975,-0.46854576,0.5915422,-0.08273322,0.05218019,0.029120097,0.04455598,0.3975263,0.1179016,0.15764335,0.24692304,-0.42535457,0.20394816,0.81925434,0.19155668,0.24884063,0.21146883,-0.024695838,0.39484215,0.054581165,0.08002991,0.06447878,-0.6418376,-0.112017386,-0.15460391,0.1738143,0.46588275,0.16313879,0.38038406,-0.19287701,-0.21487617,0.06727513,0.19690214,0.17860873,-0.7593619,0.38638362,0.17526847,0.36173224,0.5970351,0.017111504,0.051853534,0.641753,-0.2442503,0.20784055,0.22146599,-0.15953273,-0.45869482,0.5813555,-0.73402554,0.49445522,-0.027861044,-0.08665537,0.30133754,-0.14969653,0.42352363,0.95181733,-0.070109636,0.050471947,0.04327256,-0.3726921,-0.05270167,-0.23408665,-0.19424795,-0.64054626,-0.25467858,0.70645314,0.29084125,0.45520344,-0.015562098,-0.0031657096,0.07102046,-0.14600833,0.2660884,0.04265527,0.12566097,0.020064272,-0.62339497,-0.19298953,0.6968608,-0.008803246,0.20082678,0.110773884,-0.05592978,0.5179027,-0.25117335,-0.30316925,-0.15466118,-0.5402411,0.22520006,-0.33085996,-0.51462257,0.65008754,0.13434167,0.4453968,0.20878617,0.101091236,-0.20459844,0.5219212,0.22912216,0.8495304,-0.09735512,-0.4567324,-0.26555893,0.06772804,0.20151623,-0.2745225,-0.11036538,-0.28014678,-0.075822674,-0.6081229,0.25487968,-0.27274185,-0.25443485,-0.2265705,-0.093886115,0.20461905,0.42511824,-0.10137954,-0.0667735,-0.11631008,-0.017904684,-0.2822723,-0.21535511,-0.39135313,0.033787426,0.11724297,-0.13271281,-0.067128666,-0.06994586,0.11352361,0.25598976,0.008006036,0.19497938,0.08674107,0.23265012,-0.2014784,-0.15743405,0.24715507,0.51214147,-0.045573216,-0.11368352,-0.5928871,-0.3056483,-0.3212255,0.028223723,-0.046302553,0.34194255,0.18737829,-0.32898912,0.72123957,-0.1991849,0.7701526,0.057438314,-0.24236353,0.23382263,0.5050582,0.12944227,-0.1298341,-0.3458136,0.95785713,0.5188975,-0.15122853,-0.1776275,-0.540866,-0.26490805,0.05356242,-0.2738841,-0.33211628,0.09391681,-0.5777128,-0.14448595,0.17572713,0.17345269,0.2859966,-0.22095306,0.25776047,0.23719655,0.28136525,-0.038593963,-0.4486409,-0.34884632,0.24377875,0.2707614,0.12105731,0.12907135,-0.4400022,0.338199,-0.5617202,0.15600248,-0.31486753,-0.031193443,-0.048552092,-0.24581258,0.1479022,0.19960018,0.35691747,-0.32558027,-0.33154732,-0.082391895,0.44480625,0.30840242,0.4674919,0.73791915,-0.21617214,-0.23506431,-0.08352325,0.52878255,1.0754625,-0.2566785,-0.0542267,0.5971964,-0.35778335,-0.6470385,0.19774915,-0.1710182,0.28545165,-0.07088128,-0.298798,-0.37438235,0.23614155,-0.0170713,-0.13915215,0.06263074,-0.4685893,-0.12378082,0.16355814,-0.43414137,-0.42293334,-0.39888033,0.10308203,0.81404954,-0.32772863,-0.2059774,0.09178442,0.14060846,-0.2239012,-0.33685616,-0.07940218,-0.39719164,0.06623083,0.21731007,-0.33220115,0.02497004,0.23995824,-0.44238773,0.2626751,0.07391996,-0.33519658,0.023676356,-0.4522679,0.07678409,0.9947445,-0.1365603,0.025436094,-0.31028283,-0.57796854,-0.6978554,-0.4652665,0.2689091,-0.022041043,0.0034876342,-0.32935473,-0.060209442,0.006376141,-0.22139542,-0.27260423,-0.4884192,0.44864354,-0.03337876,0.24213803,-0.06465843,-1.0771533,0.10772303,0.044030298,-0.34969768,-0.63602537,0.36791983,-0.30062836,1.0368584,0.10368628,0.08369169,0.46049976,-0.59596163,0.08765891,-0.4248676,-0.0826981,-0.5206046,0.0722707 -449,0.43781084,-0.21513583,-0.42867208,-0.036755256,-0.21589702,0.034020744,-0.009163776,0.19886586,0.16105798,-0.45969892,-0.03280802,-0.19093274,0.03126132,0.45168388,-0.18143976,-0.5820059,-0.0740113,0.15522194,-0.4764271,0.4617086,-0.36416078,0.33956927,0.08092535,0.22268766,0.023865059,0.28110188,0.283955,-0.38508394,-0.16947316,-0.04418429,-0.26913548,0.16841605,-0.44797352,0.24063885,-0.034147326,-0.3525712,0.21822743,-0.31755558,-0.34015363,-0.57292694,0.15118042,-0.5977967,0.28988856,0.09138428,-0.12042518,0.26287538,-0.020045683,0.35192716,-0.3947553,0.04463777,0.12247547,-0.12596986,-0.10087487,-0.41079706,-0.04449997,-0.31044838,-0.3834426,-0.020483036,-0.29579425,-0.13942882,-0.27628875,0.14544488,-0.26824626,-0.011861388,-0.14670652,0.23287576,-0.42635453,-0.0065506883,0.15087032,-0.23010483,0.23227827,-0.44078714,-0.12910768,-0.059205934,0.17005636,-0.21779212,-0.07929378,0.3966871,-0.07620276,0.41104335,-0.027220525,-0.0254491,-0.37590432,-0.20321818,0.13636287,0.59836197,-0.18619579,-0.47510082,-0.042437345,0.08971882,-0.015778987,0.12480891,-0.1470956,-0.36138427,-0.15936552,-0.19528747,-0.20555922,0.1332601,0.5029939,-0.3569636,-0.014745437,0.34165215,0.35961324,0.0038718395,-0.09088564,-0.25078988,0.02527326,-0.49595052,-0.15914157,0.06922436,-0.20137537,0.51246095,0.01819558,0.1562649,0.57831526,-0.17365614,0.06540222,-0.092203885,-0.048627418,0.00049661845,-0.08315222,-0.20431691,0.1780979,-0.22533299,0.034714025,-0.08365071,0.83340555,0.1591426,-0.75695705,0.28945512,-0.46874672,0.12795964,-0.07742749,0.42970824,0.17497374,0.55941296,0.22462668,0.70776075,-0.56919473,0.19098078,-0.21774772,-0.28591645,-0.16783412,0.122531354,-0.19454832,-0.38063848,0.14705941,0.030065082,-0.18332988,0.15697984,0.10332022,-0.4470181,0.14670092,0.041711144,0.8553525,-0.39222682,0.06576434,0.46551093,0.88542193,0.81392473,0.03932379,0.9790069,0.1778386,-0.39091122,-0.017392755,-0.35283095,-0.6298306,0.12647226,0.41274124,0.026897728,0.18960969,0.22285119,0.12671754,0.27237076,-0.23767659,-0.029807054,-0.21803296,0.12305711,0.056528613,0.044618096,-0.29756865,-0.16819046,-0.229049,-0.05562019,0.014382154,0.1620267,-0.2990019,0.3589731,0.16640416,1.9587575,0.021926463,0.15362163,0.1468601,0.2886188,0.12790059,0.06658058,-0.071267776,0.28566927,0.15773056,0.022114258,-0.46923596,0.0664969,-0.16157562,-0.63310385,-0.06517082,-0.13996929,-0.05099164,0.064841434,-0.3035335,-0.10053918,0.023223553,-0.23908082,0.507523,-2.5080552,-0.0037736772,0.020879956,0.4034679,-0.32536113,-0.26181307,-0.10998382,-0.3386631,0.32987198,0.38857955,0.45749205,-0.610459,0.31834686,0.34992847,-0.39336196,-0.2072678,-0.4901064,-0.033035547,0.041316226,0.2647737,-0.014747538,0.00017414615,-0.008446544,-0.015282784,0.32116893,-0.25724888,-0.011262268,0.2051992,0.25604165,0.29355055,0.46299934,0.01880122,0.48313707,-0.31937844,-0.05692187,0.14150253,-0.39473546,0.21357298,0.12934463,0.12858617,0.2838316,-0.46537662,-0.73978233,-0.601691,-0.1997109,1.1006719,-0.23195887,-0.2783086,0.24991465,0.06467661,-0.17507368,-0.086099416,0.20553441,-0.023380954,-0.034051657,-0.72032225,0.097245395,-0.058779787,0.33407542,0.1257993,-0.0098639615,-0.35416853,0.6479527,-0.0978726,0.500474,0.45217508,0.20812126,-0.110906586,-0.26140928,0.06305315,0.83957785,0.29612598,0.19942777,-0.08373466,-0.2067532,-0.11200181,-0.11525272,0.17687231,0.370514,0.6746487,-0.07151493,-0.03876148,0.19942942,0.10125175,-0.14386,-0.12113187,-0.30467257,-0.00614696,-0.050488766,0.5421698,0.5059915,-0.17731848,0.32752067,-0.0958291,0.41630673,-0.13823408,-0.32059905,0.41155854,0.9301066,-0.1301502,-0.20630088,0.46302438,0.6065628,-0.119369134,0.29983494,-0.6806927,-0.25918484,0.44673896,-0.21862265,-0.30718866,0.16839704,-0.21210834,0.10949693,-0.8517305,0.3178393,-0.20233771,-0.3508729,-0.5123684,-0.16176422,-2.8129115,0.10153549,-0.27501512,-0.22333549,0.1478962,0.1656302,0.0072476473,-0.58132076,-0.3777016,0.13206932,0.13373639,0.4598436,0.049250785,0.3223238,-0.14763469,-0.035361923,-0.15980253,0.17198999,0.01572571,0.18335146,0.05700034,-0.45651513,-0.14364259,-0.17327055,-0.30962947,0.19799608,-0.49810743,-0.35249627,-0.1163339,-0.48206747,-0.25698364,0.46642146,-0.3564514,-0.009275654,-0.1362474,-0.019245826,-0.1886016,0.18600832,0.055721797,0.094432354,-0.058055304,-0.108862266,-0.043146316,-0.2939917,0.28477916,0.16737077,0.21229124,0.28591722,-0.018708197,-0.028953936,0.39715958,0.5433129,0.011447951,0.5935863,0.37799028,-0.13764074,0.20255944,-0.4085545,-0.29258543,-0.51378167,-0.5739034,-0.038388938,-0.26405936,-0.37225962,-0.08795297,-0.37014633,-0.61421824,0.5442296,0.037413828,-0.16352512,0.089506775,0.16704324,0.49366072,-0.1599202,-0.16537187,0.05007731,-0.12634182,-0.45861566,-0.415284,-0.50007534,-0.23352721,0.07611455,1.1516507,-0.14305004,-0.09699787,0.002973061,-0.086492166,-0.1302542,0.057078995,-0.019596584,0.33012837,0.26818562,-0.14553507,-0.6170152,0.5948189,-0.062919304,-0.26713574,-0.44633704,0.19367884,0.5335927,-0.61143553,0.29967642,0.2507013,0.16477537,0.188936,-0.37400517,-0.25545353,-0.08067722,-0.21095052,0.22740573,-0.023719944,-0.4508748,0.25218433,0.40775812,-0.4536792,-0.7375062,0.2842934,0.027380425,-0.63066864,0.096887365,0.24010655,0.08493017,-0.12557751,-0.19726755,0.092852555,-0.33387575,0.2708459,0.2846305,0.026758224,-0.070357926,-0.28563625,-0.16205162,-0.78070354,0.05363054,-0.27344295,-0.21068606,0.2873507,0.14787965,-0.022212364,0.011300772,0.09435603,0.37068954,-0.36008158,-0.0057551675,-0.11775267,-0.100179255,0.44986308,0.3449121,0.38640285,-0.3303923,0.53441817,-0.06790672,0.032267477,-0.31169614,0.0236061,0.5042641,0.047029894,0.097022146,0.0072631687,-0.3208039,0.38750803,0.5800126,0.2597314,0.36580932,0.052236363,-0.25024697,0.38333243,0.19925675,0.08386487,0.167124,-0.3908611,0.1480466,0.02180031,0.112443194,0.34567666,0.20063248,0.45708588,-0.12056572,-0.28820714,0.0668437,0.18548532,-0.0055058897,-0.8944698,0.3468862,-0.046429858,0.61039203,0.60631657,0.066319264,0.17739305,0.67379457,-0.2195301,0.06481975,0.27729762,-0.14639534,-0.4465146,0.43272984,-0.58816767,0.3467526,-0.016081264,0.04746805,0.08819333,0.041159738,0.2661338,0.8539129,-0.13763416,0.04111893,0.016120883,-0.17950052,-0.103637844,-0.26638377,-0.07475789,-0.4879066,-0.42783922,0.51548505,0.27434647,0.388861,0.0017372333,0.02557617,0.14575726,0.036625035,0.294736,0.15866488,0.10554601,0.1008465,-0.6085575,-0.19720122,0.5840597,-0.18468267,0.13280536,-0.032495484,-0.14290705,0.37055722,-0.116343096,-0.24877664,-0.06127502,-0.39269364,0.080358475,-0.2511883,-0.18105721,0.31034565,0.0064277556,0.42822868,0.04484033,0.01271314,-0.34645975,0.42552522,0.20476991,0.85266864,0.06967774,-0.166061,-0.3443281,0.12292977,0.28882793,-0.07203717,0.13333087,-0.04481519,-0.12066685,-0.7840923,0.34787372,-0.0010493323,-0.16462809,0.18379083,-0.2431021,-0.066569544,0.45810902,-0.14717492,-0.15824936,-0.0045077577,0.061577633,-0.22408797,-0.0749688,-0.33253968,0.16775763,0.1315274,0.06140131,0.028047701,-0.055030633,-0.0131617505,0.48298556,-0.004340902,0.41965804,0.08307733,0.06951964,-0.4569187,-0.13058856,-0.0016705543,0.34791726,-0.08096044,-0.10197753,-0.25214168,-0.48382398,-0.26396698,-0.12055324,-0.22707824,0.18096757,0.16044015,-0.31692877,0.752499,-0.07052171,1.028943,-0.049772423,-0.14732188,0.056636572,0.41218778,-0.024699215,0.16371955,-0.30704197,0.95442194,0.7143679,0.001909893,-0.15053412,-0.1950586,-0.07750409,0.00035844743,-0.16116625,-0.036607064,0.09909472,-0.39109,-0.41500044,0.18386455,0.08334152,0.13074163,-0.05359577,-0.004112974,0.13299245,0.123902366,0.21898791,-0.28608587,-0.24602596,0.2489824,0.082737885,0.21609493,0.081242114,-0.48246056,0.49584568,-0.36378145,0.105686925,-0.28096527,0.09231285,-0.12733558,-0.1537278,0.15502536,-0.04628098,0.1643471,-0.36202002,-0.24932992,-0.21630044,0.47314382,0.14690118,0.21624191,0.55480313,-0.138966,0.019930733,-0.0061383788,0.41862863,0.7916889,-0.48855555,0.113543645,0.6065416,-0.34279382,-0.25212544,0.275776,-0.052065425,-0.19472834,-0.06658526,-0.18816769,-0.5693002,0.32453987,0.1583437,-0.08200332,0.044984207,-0.59496665,-0.16283607,0.38248855,-0.3744921,-0.31576842,-0.31115562,0.4253886,0.5479822,-0.2999226,-0.3271241,0.27236816,0.055640712,-0.20949376,-0.37838507,-0.106592916,-0.40000957,0.3379894,0.30539867,-0.23323618,-0.2236504,0.08512483,-0.25052622,-0.0010803342,0.18387169,-0.2835257,0.068689846,-0.30527496,-0.08209729,0.78736913,-0.18107529,0.099369705,-0.7328191,-0.280164,-0.9776161,-0.46681684,0.680002,0.19958304,-0.051963042,-0.47569248,-0.1366793,0.056594,-0.3259861,-0.14956485,-0.3656422,0.39172444,0.12778854,0.2654726,-0.16212979,-0.72429556,0.14244741,0.11194228,-0.2971381,-0.42952323,0.38934952,-0.121523425,0.8663033,-0.023142532,-0.017417647,0.45215666,-0.5171739,-0.08851802,-0.21127596,-0.35190645,-0.52892,-0.008576974 -450,0.22598192,-0.14704128,-0.4802016,-0.21707061,-0.36286235,0.27551383,-0.18881808,0.15421484,0.056256443,-0.3439699,0.09499914,-0.0983002,-0.0483315,0.393104,-0.14326088,-0.5673921,-0.20408352,0.070091605,-0.6212999,0.307875,-0.522283,0.21583879,0.007793518,0.32109743,-0.09802556,0.36401957,0.23417568,-0.09057612,-0.19444169,0.03618993,-0.026745811,0.2544534,-0.7449648,0.138161,-0.039593115,-0.37540373,0.0061710607,-0.49466923,-0.17681544,-0.544883,0.3931712,-0.6512866,0.44309294,-0.28879482,-0.26165378,0.34187365,0.12673828,0.15932246,-0.17740327,0.07343279,0.31826785,-0.1258495,0.026288792,-0.08716062,-0.22898212,-0.5048188,-0.52942973,0.037570275,-0.632686,-0.2035349,-0.062262937,0.31249607,-0.25325978,0.13936058,-0.2563444,0.47718427,-0.31149256,-0.13128768,0.15848434,-0.14345893,0.14446178,-0.4469445,-0.023959897,-0.08856875,0.2621118,-0.20544076,-0.07699002,0.18009098,0.2822536,0.5262426,0.016247459,-0.24554682,-0.22145209,0.044900164,0.0017741807,0.53392154,-0.17064436,-0.21491466,-0.27937284,-0.074729964,0.0035257116,0.15412365,-0.076361254,-0.4209164,0.031939052,0.11500387,-0.30270717,0.27208275,0.32828763,-0.4862051,-0.39123982,0.46439302,0.4293394,0.05343821,-0.06937809,0.06103646,0.021590006,-0.5213231,-0.20480044,0.22691236,-0.11758771,0.42272168,-0.10739444,0.33192444,0.726435,-0.062053256,0.033110507,-0.22461616,-0.16674669,0.033019163,-0.3300775,0.10497814,0.066264525,-0.38181728,0.014035106,-0.12216644,0.59227043,0.08995489,-0.9354814,0.43233728,-0.43040052,0.03624121,-0.103258036,0.5435747,0.7184311,0.32337683,0.079789676,0.7697381,-0.45175475,0.114396304,-0.0942882,-0.3598317,0.14024192,0.012282187,0.081899874,-0.5603795,0.05543811,-0.011547431,0.11982538,0.007985719,0.30374515,-0.4562404,-0.013394954,0.073623866,0.66549623,-0.41210154,-0.11169527,0.6378954,0.9504164,0.85938656,0.08560973,1.3678887,0.1416264,-0.17450625,0.16355726,-0.37544698,-0.45186585,0.2090607,0.41268957,0.2052103,0.29077336,0.07035284,0.16727988,0.49613026,-0.18224987,0.12933797,-0.031065881,0.22219652,0.021806091,0.02042232,-0.41360652,-0.32452428,0.23342748,0.036298703,0.060905192,0.1543421,-0.25993603,0.40286216,0.2930674,1.5485425,-0.0189918,0.12122854,-0.029953208,0.35484648,0.18888947,-0.14245686,-0.12987724,0.31320268,0.27098596,-0.040958658,-0.5034377,0.11625085,-0.2382931,-0.44734418,-0.22986774,-0.3217116,-0.17541833,-0.2187088,-0.50167215,-0.12575956,0.13757363,-0.40869397,0.4432089,-2.7010183,-0.23842812,-0.17687248,0.2601503,-0.24059968,-0.4056443,-0.20391896,-0.3823119,0.27778608,0.4299889,0.2753017,-0.49055988,0.46376395,0.305305,-0.37366667,-0.1638025,-0.6366556,-0.082159504,-0.03387029,0.3015849,-0.045229845,-0.18679003,-0.40642434,0.37184578,0.42758536,-0.13441455,-0.017608348,0.19900338,0.4119978,0.23084883,0.5284231,0.0672026,0.5259764,-0.160936,-0.17368217,0.4814654,-0.36118937,0.15895325,0.053914744,0.2442011,0.3374262,-0.40994874,-0.914415,-0.6236252,-0.52242017,1.0922521,-0.31241214,-0.2963379,0.32823354,0.04355661,-0.29751757,0.07999496,0.39373308,-0.0802742,-0.004449159,-0.7350051,0.09415972,-0.06466375,0.25830793,-0.09293306,0.12403967,-0.45377126,0.508965,-0.113721065,0.51200986,0.41616723,0.17573214,-0.14390258,-0.317109,0.08274028,0.9492088,0.3600951,0.13371946,-0.08772094,-0.14890921,-0.16152011,-0.01218842,0.044978116,0.35519475,0.6565174,0.12549052,0.11861106,0.22592515,-0.123306304,0.071919374,-0.12233967,-0.26499572,0.011826862,0.046092805,0.4781881,0.42676806,-0.16973895,0.3711821,-0.18041152,0.22331145,-0.063535474,-0.4380718,0.32244635,0.63713485,-0.24096352,-0.07409754,0.49756077,0.43792728,-0.32434595,0.4272977,-0.5586835,-0.2997716,0.6269775,-0.21539661,-0.38385433,-0.015025707,-0.2500465,0.043417193,-0.8127221,0.16979682,-0.013463385,-0.41457024,-0.46318468,-0.26876402,-3.870001,0.0947949,-0.050552018,-0.1447643,0.005239073,-0.16067955,0.3910193,-0.47567138,-0.5923235,0.06705904,-0.022887034,0.53488064,-0.006457641,0.21659933,-0.36267963,-0.11140807,-0.21119049,0.35422483,0.09666634,0.1964644,0.05440402,-0.4540282,0.09975171,-0.40017825,-0.53439784,0.040644504,-0.5807479,-0.4846521,-0.056118302,-0.53765595,-0.4295488,0.6412203,-0.40204066,-0.17330424,-0.2660118,0.03680952,-0.08497603,0.42360196,0.153298,0.08243161,0.17792304,0.04714998,-0.091290414,-0.26183882,0.2554933,0.12789086,0.19527617,0.37850052,0.06461582,0.1847245,0.5271435,0.5492724,0.046953607,0.7649541,0.28913218,-0.062866405,0.40293303,-0.3261062,-0.12616327,-0.6374715,-0.384049,-0.13067816,-0.46195945,-0.49337703,-0.12239413,-0.32744747,-0.6728476,0.50589323,-0.005263649,0.0432387,-0.061945453,0.31313795,0.3211658,-0.2841724,0.14549205,-0.15014508,-0.11811862,-0.3794502,-0.5567817,-0.74002546,-0.60272145,0.02773913,1.130861,0.022730805,-0.112600096,-0.0030780416,-0.2007648,-0.031056521,0.03939039,0.19867729,0.41758382,0.46819204,-0.1476932,-0.6596226,0.4115237,-0.20963445,-0.041108966,-0.4366982,-0.014225777,0.5440885,-0.5310623,0.5661672,0.39880446,0.25005454,0.2366188,-0.5254879,-0.08574413,0.08046149,-0.33594278,0.58692735,0.18331897,-0.6706763,0.61883885,0.05242539,-0.14160529,-0.7879046,0.50766546,0.020081358,-0.07873233,-0.010601282,0.38525462,0.14219564,-0.052764155,-0.061375733,0.14932458,-0.5769143,0.40474677,0.32981744,0.10677385,0.6378317,-0.20200537,-0.17910227,-0.6073359,-0.3360908,-0.29496664,-0.30660677,0.019376144,-0.09696242,0.19000946,0.2749746,-0.10723195,0.48153383,-0.36498195,0.044942234,0.020230232,-0.2458959,0.17431377,0.4908017,0.2888213,-0.34581813,0.5213029,-0.04480501,-0.0752602,-0.20581105,-0.043596677,0.46152824,0.2594477,0.15499511,-0.05081825,-0.20164655,0.21306089,0.67019266,0.17821836,0.23500627,-0.091271624,-0.3363743,0.36548933,0.047398932,0.017566182,0.024836209,-0.31876695,-0.05684479,0.080826394,0.15005532,0.38751876,0.06388682,0.30878842,-0.12560558,-0.08890858,0.22197025,0.22168922,-0.26315874,-0.8766723,0.19305782,0.19607541,0.74997675,0.62120634,0.07947743,0.100240335,0.4551384,-0.48253673,0.07055997,0.3856783,0.0105064325,-0.43073803,0.59671456,-0.54189473,0.5378555,-0.19252436,-0.091198534,0.21776988,0.07926008,0.37198704,0.9700892,-0.027837114,0.11445622,0.11248578,-0.19074306,0.2082431,-0.11651388,0.077413514,-0.4098337,-0.24659565,0.5454876,0.44707555,0.28016573,-0.2791644,-0.07379182,-0.007116899,-0.20204921,0.08049305,-0.027828919,-0.14480115,0.037289813,-0.6502512,-0.38413623,0.5956988,0.062239453,0.042303268,0.13607839,-0.48799267,0.22863227,-0.10139086,-0.101408824,0.045916293,-0.5986979,-0.1373642,-0.28260228,-0.42323795,0.2542542,-0.36506084,0.18046221,-0.012801062,0.10490905,-0.35719785,0.128961,0.3117949,0.71973586,0.12066104,-0.059059393,-0.32097036,-0.01212462,0.25011328,-0.2947186,-0.11788149,-0.5099107,0.12619361,-0.5667951,0.4993897,-0.10529021,-0.27905786,0.1307096,-0.033448223,0.12688282,0.37986827,-0.011921838,-0.06855072,0.0009443313,0.1789008,-0.32674092,0.02246768,-0.45706275,0.2047306,0.06467896,-0.03290601,-0.020716127,-0.09970578,-0.2446508,0.51539016,0.21861903,0.26193422,0.28025293,0.043723043,-0.45924503,-0.049840495,-0.078095034,0.44846165,-0.055913553,-0.04544067,-0.27180344,-0.17955947,-0.18365355,0.47326186,-0.17983934,0.1447188,-0.01913283,-0.41125822,0.7068318,-0.007159304,1.1353136,0.13685548,-0.3200521,-0.010280365,0.40146077,-0.023532137,0.08877006,-0.52400994,0.8506818,0.5197318,-0.012093529,-0.24015653,-0.26018003,-0.17627132,0.20478255,-0.22207892,-0.1438382,-0.27307895,-0.7808904,-0.3905439,0.20288897,0.15666184,0.13970375,-0.015126124,0.034228116,0.071584545,0.12293695,0.54016364,-0.4450764,-0.10285192,0.3221038,0.3161898,-0.052951746,0.26152647,-0.31765977,0.5352662,-0.68677163,0.17328432,-0.42982662,0.04310813,-0.034110785,-0.14337021,0.10522288,0.0679626,0.37519386,-0.088732034,-0.40883997,-0.25242853,0.6201448,0.17328137,0.2116833,0.876794,-0.11798394,0.038947098,0.0121004805,0.44292507,1.1887664,-0.1686776,0.05479254,0.28881717,-0.17349233,-0.5630528,0.014228843,-0.4302585,0.031738523,-0.011990827,-0.22313325,-0.2746358,0.2730739,0.11880739,0.057392247,-0.042754944,-0.43954644,-0.022629414,0.6017995,-0.23334141,-0.21343043,-0.25064445,0.39434183,0.80991906,-0.43524095,-0.1780205,0.02049881,0.4578419,-0.2716961,-0.62481165,0.06375962,-0.4620058,0.4910628,0.11026174,-0.3507744,-0.004684329,0.19566101,-0.4028417,0.13506323,0.45807797,-0.3389226,-0.12852094,-0.23728588,-0.1158249,1.018357,0.10697491,0.095880345,-0.64334273,-0.51132196,-0.96838784,-0.19366743,0.14611197,0.14554307,-0.069098376,-0.30588046,-0.08012816,-0.22416013,-0.08496731,0.021409549,-0.5902253,0.36446336,0.09387514,0.61006564,-0.10275406,-0.81737924,-0.18555461,0.22805361,-0.10873905,-0.41636622,0.6150006,-0.06004535,0.7063208,0.108304225,-0.031229373,0.09897095,-0.42187372,0.26937163,-0.52702576,-0.069725245,-0.76809734,0.18014172 -451,0.44451973,-0.06777794,-0.38291168,-0.0038338602,-0.31688014,0.02914986,-0.2508967,0.4923315,0.23566605,-0.32713547,-0.1831372,-0.036829036,-0.014817439,0.23789813,-0.24548829,-0.5223285,-0.064763695,0.12193075,-0.36237022,0.7347952,-0.5016438,0.3008681,-0.04464761,0.4188319,0.37594706,0.20466378,0.12638833,-0.10129751,-0.22232948,-0.19745469,-0.11029577,0.3409887,-0.47375646,0.061071333,-0.28694737,-0.39242396,-0.026016124,-0.4874332,-0.42605647,-0.76386636,0.4239806,-0.7342169,0.4664576,0.0022662356,-0.2888924,0.37185726,0.053959988,0.24904229,-0.26739687,-0.08375195,0.14226021,-0.15141456,-0.019681713,-0.04668682,-0.21754856,-0.33891475,-0.58661103,0.023738967,-0.5496067,-0.08387506,-0.34072948,0.18507214,-0.26500246,-0.10122241,-0.029292833,0.5494766,-0.48706818,-0.1090345,-0.03735688,-0.04594233,0.21369919,-0.6222775,-0.22305241,-0.15051597,0.10786004,-0.07948608,-0.21273804,0.18319933,0.24062651,0.42880958,-0.01317884,-0.11316859,-0.39038694,-0.096172765,0.12277517,0.3660905,-0.115550384,-0.673371,-0.19699025,-0.10967422,0.2591704,0.1772237,0.08197195,-0.29399154,0.0126642175,0.10938469,-0.3154379,0.5251929,0.48738348,-0.2958049,-0.2155606,0.3477167,0.52226764,0.33037752,-0.18543407,0.017803643,-0.12711716,-0.49858353,-0.12804465,-0.06330104,-0.23419383,0.6316476,-0.094241664,0.21832013,0.56541204,-0.11450455,0.042809837,0.055936992,-0.07677792,-0.1112079,-0.32331538,-0.2848594,0.12376417,-0.43452936,0.24577479,-0.13783154,0.72263384,0.07565626,-0.6802199,0.34116754,-0.4919788,0.11431542,-0.032837983,0.5469432,0.6505781,0.37029755,0.36792317,0.6695604,-0.34103954,0.02082435,-0.13603044,-0.21642052,-0.06354219,-0.034951046,-0.13193047,-0.42580673,0.018373914,-0.053118654,-0.10929192,0.039199136,0.41604453,-0.5017575,-0.054005772,0.12805289,0.71409607,-0.29085478,-0.07647378,0.8556314,1.1425065,1.0760148,0.03557445,1.0842618,0.20835245,-0.06692393,0.1132528,-0.26821935,-0.6544961,0.24313305,0.37278375,-0.14720689,0.22906367,0.06738509,-0.04024055,0.39809844,-0.446795,-0.11443657,-0.17430696,0.23225449,0.12024864,0.062289752,-0.3886023,-0.24298842,0.01716935,0.087207526,0.15002133,0.25291318,-0.34926063,0.19671628,0.1545543,1.4659207,-0.15281264,0.021466812,0.1014271,0.5648393,0.19211501,-0.08212135,-0.028433712,0.40524265,0.40325058,-0.021626819,-0.6482338,0.12031908,-0.25453612,-0.47492322,-0.07264534,-0.3112328,-0.09192243,0.05132623,-0.41051474,-0.07318407,-0.17721938,-0.3708339,0.45419282,-2.7536168,-0.15270236,-0.04653553,0.20823461,-0.14464577,-0.32458925,-0.048686326,-0.43740407,0.3691236,0.2655349,0.44175178,-0.6442204,0.34960496,0.5631918,-0.4603828,-0.1599013,-0.6648611,-0.14000735,-0.08418821,0.56283516,-0.078805976,-0.020991009,0.029287234,0.12753011,0.5973617,0.06469574,0.20755492,0.25151545,0.37594542,0.0104018,0.4579154,-0.007879738,0.43206176,-0.12821057,-0.14657554,0.40616497,-0.30269742,0.26273844,-0.101374015,0.1903985,0.43912786,-0.5121552,-0.84748685,-0.6407411,-0.14910227,1.2123936,-0.24234863,-0.47750688,0.35077983,-0.26421806,-0.21954764,-0.03305676,0.44508117,-0.15854552,-0.11274975,-0.8308129,0.04508332,-0.15943623,0.095801525,-0.012042571,0.18231307,-0.3126626,0.6530933,-0.05925186,0.46873713,0.3610234,0.29976672,-0.33079976,-0.54814065,0.06403111,0.9431645,0.4425941,0.09532687,-0.2689594,-0.21011055,-0.25430292,0.0097181,0.063757256,0.58080786,0.63898325,-0.026053607,0.15312195,0.27615112,0.052194938,-0.035898883,-0.22418845,-0.20704222,-0.08090404,0.06050422,0.4847383,0.62873775,-0.19855219,0.4492002,-0.04957623,0.20184776,-0.21187623,-0.39393225,0.52469933,0.9672699,-0.28322253,-0.23269756,0.6873698,0.4908156,-0.1838714,0.4950112,-0.66467535,-0.27071157,0.48288906,-0.20988426,-0.3646203,0.29922628,-0.2930065,0.060858823,-0.7907873,0.27531672,-0.26698905,-0.521835,-0.53953683,-0.1823678,-3.1462991,0.13264632,-0.27978426,-0.25239056,-0.18855456,-0.2683702,0.2943592,-0.5671748,-0.5288675,0.15768687,0.15566182,0.5534224,-0.11463793,0.08209873,-0.29640007,-0.3118907,-0.30277023,0.1670716,0.122449346,0.4158468,-0.1017957,-0.400038,-0.074641734,-0.14714362,-0.39307266,-0.027425893,-0.41844198,-0.33989957,-0.0845892,-0.47680607,-0.23309009,0.60240465,-0.39279908,0.06259271,-0.26520035,-0.11259332,-0.13277516,0.36271882,0.17651027,0.13895501,0.018046834,0.0033735633,0.07413352,-0.33512992,0.1344399,0.058271248,0.08183143,0.38644612,-0.137214,0.20181426,0.3786648,0.6528541,-0.18604976,1.0017946,0.5554738,-0.13660459,0.30906227,-0.28167748,-0.28550193,-0.67691904,-0.2925469,-0.12635976,-0.40517175,-0.4923787,-0.20088254,-0.2886993,-0.78268373,0.54466355,-0.025885087,0.40203723,-0.041653357,0.24843833,0.49556762,-0.20138445,-0.018974576,-0.010221276,-0.06315457,-0.5178822,-0.30074394,-0.69728166,-0.46229795,0.018275179,0.79342675,-0.11027445,-0.049983546,0.10064432,-0.26637352,-0.038553976,0.052641194,0.08889316,0.14037831,0.47992235,-0.092603736,-0.67754686,0.39946085,-0.109763905,-0.11021565,-0.486022,0.1460569,0.5765082,-0.5845129,0.51931703,0.40864965,0.14687406,-0.123056054,-0.55641335,-0.20945549,-0.06269771,-0.18733217,0.5353543,0.30553308,-0.86182994,0.51712114,0.35761335,-0.16000679,-0.7724113,0.60773903,-0.08556959,-0.23654185,-0.013525642,0.36927155,0.17555135,0.060530674,-0.21562648,0.24285273,-0.30118787,0.317926,0.19247016,-0.18124986,0.22031385,-0.2722426,-0.12347363,-0.6888721,-0.0027132947,-0.47187635,-0.2663832,0.07643427,0.08123036,0.060416117,0.10192925,-0.079160444,0.4199191,-0.2614801,0.19619244,-0.03852416,-0.09816493,0.25484952,0.5675283,0.5387718,-0.30057555,0.6006624,0.04099491,-0.18757536,0.028604329,0.024581715,0.33817077,-0.06748944,0.34361777,0.069985986,-0.18328172,0.29266214,0.6475818,0.32609093,0.4856341,-0.039775558,-0.26801598,0.364773,0.15719143,0.35223448,-0.011515968,-0.5392587,-0.12550119,-0.20869207,0.14730604,0.6046226,0.18772054,0.33278278,-0.10720987,-0.19309412,0.04797052,0.15035373,-0.1499036,-1.2298027,0.27054662,0.15357584,0.7945816,0.6205452,-0.027833328,0.09872344,0.4852047,-0.22112998,0.06378875,0.44937187,0.23837943,-0.5269819,0.52585006,-0.66334,0.41065407,-0.095590755,0.03694419,0.046858825,-0.06429562,0.39690065,0.72412944,-0.24871151,0.08039221,0.013459016,-0.23536706,0.16490573,-0.2758496,0.10605101,-0.54851794,-0.25322825,0.6289884,0.6066642,0.31267664,-0.19809729,-0.005204918,0.10131423,-0.13338028,0.0687109,0.06552385,0.06769795,-0.16444421,-0.5765429,-0.24847682,0.47842526,-0.12210417,0.14073858,-0.06032449,-0.2514394,0.13959911,-0.067992695,-0.16648962,0.037792232,-0.6601176,-0.12724699,-0.19304094,-0.40199634,0.47108808,-0.20147073,0.21676925,0.085765116,0.07976898,-0.28404468,0.19312029,0.17117447,0.589793,-0.039467134,0.01888372,-0.285039,0.10505855,0.18411678,-0.0926998,-0.29246548,-0.31249565,-0.00074471533,-0.6613401,0.37855187,-0.06512237,-0.26753864,0.0957139,-0.16377449,0.06555029,0.56517863,-0.063127816,-0.1984927,0.0003274083,-0.063894585,-0.27442718,-0.19134885,-0.059544142,0.24685512,0.19984448,-0.11109781,-0.09896722,-0.06597288,-0.0633425,0.3933593,-0.01887973,0.4430727,0.3050281,0.13863814,-0.33240163,-0.11533095,0.15392056,0.46188238,0.027466774,-0.10235011,-0.16668658,-0.37742162,-0.3756345,0.17081767,-0.19404143,0.24598739,0.13912337,-0.3390203,0.77799976,0.1594173,1.1762954,0.03674459,-0.4078716,0.12917727,0.57666075,-0.10324524,0.030529492,-0.34246397,0.9320572,0.38197276,-0.13897514,-0.11877288,-0.3968167,0.008849807,0.27867374,-0.1897199,-0.16723382,-0.12287509,-0.5148517,-0.18317926,0.1886808,0.3113378,0.097045176,-0.11769718,-0.07414428,0.216025,0.086898655,0.538249,-0.3757646,-0.079340115,0.41433382,0.16810873,-0.03944129,0.14011088,-0.4238382,0.4069624,-0.46415478,-0.040726773,-0.30735183,0.1407053,-0.30569148,-0.3194595,0.24381743,0.017359853,0.3997707,-0.29232085,-0.4125139,-0.29271212,0.5014888,0.021634974,0.12829491,0.5011674,-0.2793029,0.13048176,-0.10696965,0.37626055,0.9781264,-0.30411306,-0.055457935,0.28805977,-0.37831524,-0.63675284,0.27274507,-0.42542124,0.11738002,0.0074362457,-0.23366284,-0.524865,0.34007865,0.16152069,0.024296202,0.019312967,-0.6829386,-0.117222086,0.32204992,-0.1196831,-0.16553196,-0.15459979,0.008027852,0.6825529,-0.32626113,-0.50765926,-0.03786192,0.27866322,-0.13483879,-0.6515809,-0.05494752,-0.3682592,0.361497,0.20074086,-0.23004934,-0.06742695,0.15392676,-0.49556336,-0.031052908,0.1737881,-0.29925418,0.024612581,-0.31943184,0.07910969,0.98359096,-0.12412379,0.22004616,-0.43851113,-0.48017263,-0.855254,-0.37630552,0.28315437,0.18217164,0.11232138,-0.5811115,0.13712528,-0.21906734,-0.08883226,-0.06112693,-0.4637902,0.4910633,0.1343608,0.49405006,-0.11999388,-0.7669378,0.03328792,0.09167336,-0.033004276,-0.5478617,0.5293842,0.039621197,0.7475435,0.082084246,0.13359918,0.13318242,-0.49829382,-0.003601674,-0.22780731,-0.18621401,-0.66213256,0.15509748 -452,0.48970097,-0.32276142,-0.509445,-0.0620706,-0.3854331,0.19760817,-0.258139,0.46204883,0.15324987,-0.32348865,-0.1210406,-0.11008004,0.018158004,0.33181438,-0.21578357,-0.41942397,-0.022813495,0.25501424,-0.5014791,0.67894506,-0.30667183,0.21472132,0.0017515756,0.34469363,0.31669858,0.2546714,0.1024344,-0.063586965,-0.26295578,-0.19464673,-0.23268732,0.3373986,-0.48450148,0.1759124,-0.072651595,-0.254166,0.0048796833,-0.42561036,-0.3466012,-0.7584709,0.32438725,-0.8264398,0.4861465,-0.08777632,-0.3636867,0.28795016,0.12640406,0.412204,-0.28201497,-0.100007996,0.2330973,-0.1641739,-0.08628783,-0.17794566,-0.102689624,-0.38586792,-0.5238595,0.063566096,-0.3803897,-0.16828367,-0.30121797,0.25154412,-0.2422475,0.04215671,-0.14886901,0.5708462,-0.53566384,0.19413164,0.16417266,-0.15734394,0.227756,-0.73700416,-0.07526253,-0.058123313,0.31198555,-0.038200885,-0.09355421,0.2579234,0.40374434,0.32284224,0.14027551,-0.24838696,-0.34498224,-0.14935295,0.048087835,0.42178017,-0.13827959,-0.52236277,-0.19118766,0.02486898,0.22405028,0.16528897,0.13619584,-0.335005,-0.11715815,0.014294378,-0.28115225,0.26518577,0.41056812,-0.3454664,-0.087646246,0.38826802,0.64591306,0.15218475,-0.244184,-0.17191675,-0.08567284,-0.57884896,-0.09219212,0.06729093,-0.2760769,0.64535713,-0.15161923,0.27760905,0.7130016,-0.11050324,-0.08690968,0.07976746,0.08052409,-0.27882788,-0.29499745,-0.25835183,0.09831718,-0.44723392,0.20034893,-0.09247703,0.8402555,0.07776435,-0.6234559,0.3423978,-0.5073413,0.13393575,-0.093979806,0.3833142,0.56892,0.4359953,0.36285952,0.639001,-0.30680227,0.10858681,-0.016439393,-0.5338692,-0.037208844,-0.08492889,-0.11571526,-0.5730232,0.14816184,-0.17035851,-0.08483715,-0.050063718,0.5670221,-0.47739226,0.017113568,0.1124806,0.8353871,-0.3221863,-0.15615767,0.717543,0.94484115,0.97533476,-0.0047452133,1.1025677,0.29995626,-0.24126339,0.07030912,-0.35386258,-0.5255387,0.34388286,0.5524342,-0.25514922,0.25553113,0.07773158,-0.029661588,0.54336655,-0.31317538,-0.03463526,-0.263694,0.0969519,0.12560445,-0.085333765,-0.44963673,-0.27631387,0.02593896,0.17204918,0.1273557,0.2188404,-0.15032417,0.47286817,0.22010756,1.7044631,-0.08853501,0.03666447,0.075439006,0.42826995,0.19254096,-0.09818779,-0.073300764,0.35728267,0.46350855,0.108758986,-0.5125749,0.08682604,-0.28448057,-0.5309621,-0.16011393,-0.28265935,-0.21276754,0.060323734,-0.48142153,-0.11940314,-0.1408792,-0.16588038,0.45379433,-2.643458,-0.16761643,-0.2237351,0.12839699,-0.3098777,-0.41528794,0.12344752,-0.5201182,0.30826676,0.32682756,0.4810847,-0.668568,0.38753864,0.29980943,-0.57107794,-0.053578023,-0.5873326,-0.24208283,-0.05329942,0.5030776,0.0015882179,-0.14431137,-0.023171319,0.04030416,0.5273109,-0.096485965,0.18695399,0.36353108,0.3820011,-0.0080924295,0.5854372,0.07705639,0.52290344,-0.09054742,-0.21995142,0.35291195,-0.22963293,0.33799717,-0.071812235,0.13399519,0.49245805,-0.3967871,-0.83425,-0.72561157,-0.06584716,1.2695539,-0.27397025,-0.4630765,0.24652296,-0.2365973,-0.242399,0.0064395815,0.33283696,-0.10885172,-0.046094354,-0.7991662,0.14408064,-0.055113524,0.12414143,0.0012358124,-0.19141684,-0.43286628,0.78256494,-0.06816846,0.47005978,0.4062553,0.13754618,-0.24049722,-0.39082196,0.008410774,0.93088365,0.45103303,0.047175743,-0.22429474,-0.19290179,-0.42619365,-0.083465174,0.046255924,0.42827308,0.5216249,0.06451161,0.11867438,0.22310662,-0.03459706,0.09500594,-0.24075955,-0.2437467,-0.0671417,0.012902714,0.55663514,0.6390604,-0.06593032,0.5407279,-0.17522226,0.3081977,-0.10864829,-0.510605,0.5392504,1.0585954,-0.27400675,-0.4313878,0.66594183,0.48913875,-0.17108703,0.33543938,-0.5188717,-0.27497625,0.48498607,-0.16752735,-0.45465022,0.19539948,-0.23373866,0.07248755,-0.87685776,0.20548517,-0.2029157,-0.457323,-0.5109947,-0.12270189,-3.195571,0.34710085,-0.3287048,-0.23440051,-0.12117391,-0.2563947,0.14349256,-0.7080406,-0.48223782,0.14339083,0.0945201,0.55100477,-0.055667117,0.12009959,-0.24235836,-0.19747202,-0.15235332,0.15257987,0.075938694,0.2454537,-0.19045007,-0.5352179,0.009226784,-0.07062844,-0.445978,0.015832044,-0.7417289,-0.48288274,-0.12648734,-0.48050362,-0.23030525,0.60248566,-0.31749308,0.08055529,-0.23101917,0.075581625,-0.0918278,0.19094688,0.05693923,0.14268251,0.0035192445,-0.12596343,0.13994552,-0.3406114,0.33406222,0.04381404,0.25181264,0.14118709,-0.06478939,0.26848477,0.39578474,0.62147415,-0.28127626,0.93217945,0.4956536,-0.14938852,0.23102091,-0.09236546,-0.3045879,-0.63632417,-0.3070701,0.027231136,-0.4377269,-0.43335178,-0.07561239,-0.32656693,-0.6774234,0.6479883,-0.011980869,0.12385017,0.019565325,0.3232325,0.6336721,-0.31901518,-0.041662183,-0.049762227,-0.17515975,-0.6120002,-0.31692243,-0.6161394,-0.4607687,0.0317719,0.9710592,-0.10486682,0.10890836,0.031396504,-0.3492474,-0.040236253,0.10653034,-0.028407812,0.26652187,0.48387605,-0.31348825,-0.75922894,0.49850577,-0.14512874,-0.15196311,-0.41803855,0.24808578,0.50849825,-0.5330438,0.5567065,0.39298213,0.104588866,-0.10215707,-0.50352454,-0.18538481,-0.040048257,-0.2825718,0.52523047,0.25670782,-0.623187,0.44068852,0.23625849,-0.19107732,-0.8110782,0.5083675,-0.09952819,-0.3322938,-0.10341464,0.33969408,0.089785166,-0.02013378,-0.3421531,0.08648404,-0.45016196,0.3011569,0.20414749,-0.14426383,0.08504156,-0.22838682,-0.1344189,-0.7712926,-0.0106553435,-0.4195356,-0.30323777,0.25534463,0.03792236,0.01841122,0.10593267,0.10071339,0.32570624,-0.26860946,0.11731429,-0.04675115,-0.22423631,0.33028957,0.45978576,0.51827574,-0.465937,0.5833431,0.05682816,-0.12173832,-0.2238775,0.027761621,0.47544292,0.08923195,0.5114964,-0.061783433,-0.20256913,0.4504501,0.60836923,0.24651252,0.5850314,-0.032466464,-0.15768981,0.12902877,0.053638235,0.29628605,0.0916736,-0.7127294,0.06591556,-0.2612139,0.14994349,0.5936433,0.13701922,0.32430965,-0.07145752,-0.30091915,0.073403716,0.119475275,0.0808194,-1.1351147,0.28080425,0.3514469,0.8403541,0.31893685,-0.026409669,-0.07377981,0.8189286,-0.31465888,0.08291411,0.4420582,0.07933493,-0.5203424,0.53158593,-0.8614752,0.37543654,-0.07085427,-0.02655089,0.09822014,-0.077863224,0.29018986,0.82717264,-0.2340567,-0.00857158,-0.0017406233,-0.42128327,0.163911,-0.35627538,-0.056303486,-0.57462424,-0.38973498,0.6324439,0.5897278,0.35055888,-0.15913455,0.057030357,0.12182324,-0.14733325,0.13761525,0.17178038,0.18513367,-0.009742692,-0.71741253,-0.19389603,0.45595014,0.0677336,0.23454629,-0.033938095,-0.18436322,0.2995515,-0.3279135,-0.09678719,-0.02364346,-0.6404318,-0.06108529,-0.15324357,-0.46335512,0.43308616,-0.12176325,0.14070715,0.13802476,0.10148922,-0.26724374,0.38658562,-0.008608237,0.8713978,0.21946555,-0.087707594,-0.29337186,0.20355272,0.06198311,-0.054784898,-0.061982546,-0.3737753,-0.012017764,-0.6699569,0.39380258,-0.046174247,-0.40742528,0.05427464,-0.17178309,-0.022128914,0.50164247,-0.07556046,-0.18383336,-0.03953463,-0.0049901716,-0.24012433,-0.28313613,-0.07801247,0.24756631,0.3045053,0.14060326,-0.17380938,-0.011570256,-0.18330187,0.4921417,-0.06377886,0.4344408,0.3125077,-0.08318418,-0.2620198,-0.21271215,0.20437667,0.4959507,-0.15720508,-0.16094969,-0.33249578,-0.5401356,-0.26201954,0.1363696,-0.045971952,0.39555544,0.11891541,-0.09909913,0.8653343,-0.16073205,1.2918534,0.11247928,-0.44905084,0.083904065,0.53866446,0.052082345,0.0377296,-0.30972183,0.926319,0.41882673,-0.022311486,-0.14763291,-0.4721365,0.020580132,0.19914341,-0.16595855,-0.018769763,-0.053506725,-0.55767536,-0.2878722,0.16859865,0.293901,0.1841661,-0.0074113384,-0.015651532,0.32804614,-0.059606872,0.41697615,-0.4413898,-0.30353385,0.2859838,0.21074477,-0.18393797,0.14545287,-0.5732469,0.44392833,-0.4445724,0.062199183,-0.35933742,0.13245098,-0.26504534,-0.23966569,0.26538843,-0.1119862,0.43508995,-0.4312979,-0.32284388,-0.30503932,0.55198914,0.22846103,0.14157641,0.550936,-0.37935892,0.09960551,0.12231882,0.44076028,0.7941428,-0.39845937,-0.0061109215,0.34992123,-0.2744378,-0.5496887,0.38279977,-0.18905377,0.11859644,0.24497643,-0.21750113,-0.44769618,0.36527988,0.109735295,0.007871866,0.041426525,-0.654228,0.031506464,0.44645756,-0.25204408,-0.079257235,-0.18408753,0.28584963,0.49928206,-0.32786208,-0.57864964,-0.00844142,0.21703897,-0.08544268,-0.46699697,-0.08930599,-0.36706057,0.34453255,0.090391815,-0.28847805,-0.17205751,0.087539315,-0.43522334,0.093107104,0.26710725,-0.38683122,0.08973021,-0.30102712,-0.12080374,0.9234961,-0.17062879,0.108650714,-0.6512611,-0.35618982,-0.7097651,-0.32116538,0.32659364,0.04021185,0.049080513,-0.6129118,-0.07383104,-0.2497979,-0.12824732,-0.05046953,-0.43088073,0.50025785,0.15235186,0.4904371,-0.052194238,-0.6710453,0.20549473,0.024793053,-0.12652586,-0.5641483,0.54020065,-0.14033356,0.8256649,-0.0131118875,0.20374253,0.26401767,-0.4817716,-0.072721004,-0.32579908,-0.18521973,-0.81394434,-0.007047821 -453,0.5245703,-0.08201839,-0.6586304,-0.064208075,-0.41573185,0.0031055936,-0.37414208,0.18976943,0.3559825,-0.45080236,0.09876416,-0.17694642,0.10406109,0.09551136,-0.28538755,-0.5844292,0.108167276,0.2697509,-0.5416554,0.74780095,-0.43465084,0.21342097,0.30526957,0.21476582,-0.046224136,0.038059317,0.17018959,-0.2412751,0.03239902,-0.22765231,0.09340207,0.2490287,-0.79227096,0.3261327,-0.1562273,-0.22478461,0.14952265,-0.42039427,-0.26670346,-0.8132161,0.19812763,-0.8105845,0.5497269,0.12799379,-0.29868275,0.26817355,0.15030916,0.07069136,-0.18148647,-0.076305576,0.23980178,-0.46332213,-0.62241644,0.028445354,-0.17024197,-0.43090567,-0.63111323,-0.05502964,-0.69305265,0.12007912,-0.32159182,0.2891937,-0.35556436,-0.13400319,-0.2327074,0.42060784,-0.39045557,0.018185964,0.09238948,-0.18951699,0.3324555,-0.5485824,0.042309515,-0.100409985,0.23251823,-0.06610907,-0.22390711,0.09590115,0.21754701,0.6034562,0.10968476,-0.36051878,-0.34134573,0.023510316,0.10302345,0.34929132,-0.14899264,-0.22164658,-0.23011647,-0.05286434,0.27433845,0.21695216,0.031130398,-0.39533657,-0.02693975,-0.22826962,-0.30992705,0.5144136,0.539697,-0.31651512,-0.0686797,0.45793417,0.39071772,0.2173075,-0.18130048,0.2495891,-0.063645825,-0.5966083,-0.22338429,0.1759374,-0.06336113,0.5054342,-0.25276658,0.2896826,0.47781375,-0.07920087,-0.19669567,0.18038414,-0.06736143,0.11330678,-0.2606869,-0.12396624,0.26844743,-0.6363679,0.034749832,-0.37147546,0.7344714,-0.09133709,-0.8195401,0.4372444,-0.48618677,0.31699553,-0.14768243,0.8726258,0.9277044,0.63879687,0.2447132,0.9019914,-0.44600025,0.13372208,-0.0973467,-0.57641995,0.41677812,-0.06144604,0.3152184,-0.48684925,-0.051687777,-0.008999133,-0.0745967,-0.15726277,0.65883267,-0.34161186,-0.23585628,0.08714414,0.7128792,-0.20918925,-0.13359977,0.7081703,1.1649574,0.948965,0.26867926,1.2677182,0.29595134,-0.03566765,-0.11014276,0.0627112,-0.91261524,0.25087565,0.2673506,0.32849434,0.15481146,0.1886371,-0.001336515,0.35297123,-0.3280042,-0.23616263,-0.1256274,0.33863026,-0.25574186,-0.21480799,-0.28805804,-0.17582151,0.1683778,0.14655772,0.094391,0.25621548,-0.042238366,0.31575766,0.21661331,1.2493807,-0.22101031,-0.07648251,-0.034113046,0.33113128,0.28984305,0.13686225,-0.14112161,0.3602385,0.3163666,0.07292477,-0.5435076,0.15214317,-0.026418442,-0.45818743,-0.14583094,-0.36089686,0.020018442,-0.32211527,-0.23335396,-0.17025098,0.04860351,-0.53587496,0.3697779,-2.641309,-0.13518855,-0.028202176,0.23857869,0.057253987,-0.12132935,-0.09555433,-0.45735452,0.646739,0.3467452,0.47653526,-0.6928358,0.46024656,0.62687236,-0.5211157,-0.14675984,-0.85775155,-0.18055084,-0.24117234,0.46890873,0.17411283,-0.30373782,-0.013252854,0.19366482,0.520021,0.03960667,0.114347495,0.37641826,0.5568339,-0.061342154,0.5880571,-0.03187883,0.40389842,-0.17744796,-0.23738702,0.3341386,-0.11338846,0.28428504,-0.36304286,0.08341093,0.38711032,-0.29841033,-0.85008734,-0.48158485,-0.030030916,1.1872222,-0.40353838,-0.5928527,0.26435387,-0.11029462,-0.02638994,0.19445232,0.5084007,-0.19174977,0.00075827754,-0.85785896,-0.09978233,-0.008968894,0.27069613,0.017863095,0.07390641,-0.54919434,0.8074406,-0.088863306,0.5515696,0.4409763,0.23552716,-0.17170651,-0.54665387,0.16075289,0.93708867,0.33796427,0.052125197,-0.29892197,-0.21842201,-0.13014151,-0.103964105,-0.12656944,0.62120104,0.7139822,-0.19246408,0.109511234,0.40901747,-0.32453138,-0.027214106,-0.19290236,-0.4794354,-0.17967303,-0.09347641,0.43625125,0.73473036,-0.11454546,0.2815576,0.009120324,0.3180497,-0.11570237,-0.55246943,0.56411934,0.7679905,-0.15697111,-0.06564711,0.58687913,0.3335112,-0.11411699,0.66111606,-0.49566334,-0.37615567,0.45691362,0.030869177,-0.43741298,0.31263262,-0.43519711,0.044380814,-0.9804179,0.27782378,-0.30904618,-0.38875514,-0.5380601,-0.05222952,-3.3579717,0.13832606,-0.20495763,-0.00549025,-0.20924327,-0.11578868,0.2843185,-0.39753813,-0.62430036,0.0972433,0.27602723,0.40078434,-0.18820013,0.020752046,-0.35427108,-0.23857376,-0.2843421,0.2726706,0.071518905,0.20451555,-0.099082395,-0.50697535,-0.039801907,-0.23649143,-0.11039174,-0.09922833,-0.55076796,-0.27219453,-0.010931505,-0.4301267,-0.41187605,0.66257715,-0.3493376,-0.06025475,-0.35060695,-0.03294832,0.012084403,0.32868668,-0.16787517,0.0876589,-0.13344671,0.06575279,-0.12373192,-0.16214971,0.22042938,-0.06433644,0.046085153,0.4587337,-0.14891268,0.038266174,0.57537425,0.45763466,-0.17852198,1.0387008,0.43703502,-0.08410144,0.33081603,-0.05961436,-0.20184804,-0.72636455,-0.1781892,-0.35274604,-0.6130303,-0.30394703,0.05287259,-0.34922048,-0.8252174,0.6140782,0.08410493,0.06525555,0.036076725,0.39256412,0.48340723,-0.046628926,0.09332122,-0.15439974,-0.34854868,-0.583831,-0.26219767,-0.87977844,-0.36607352,0.07708102,0.75255024,-0.29223222,-0.12512794,0.18183093,-0.09615783,0.029708069,0.14471333,0.038492706,0.21804142,0.5157746,0.1979738,-0.7564755,0.5789042,-0.10694955,0.10565523,-0.55426955,0.16889071,0.61769474,-0.78098726,0.3600058,0.5974045,0.1156702,-0.005277949,-0.6920809,-0.26515993,-0.009446161,-0.19249359,0.59245217,0.079442434,-1.0116287,0.77747506,0.1561545,-0.22727093,-0.85977024,0.5233248,-0.014551888,-0.23111956,0.08330897,0.35615572,0.06368957,0.18030642,-0.28135473,0.12870625,-0.43334407,0.368542,0.027507136,-0.23221795,0.37834427,-0.0332377,-0.15524109,-0.8038572,-0.20055307,-0.5668208,-0.31561118,0.25623316,-0.01831678,-0.023359181,0.009404323,0.21909904,0.5090384,-0.30899793,0.1000473,-0.12647615,-0.3387421,0.482346,0.689653,0.34730884,-0.4889095,0.6519289,-0.12452966,-0.09950174,-0.16788769,-0.019346574,0.3138244,0.09835351,0.32829872,0.05357996,-0.008175281,0.17419434,0.8562374,0.13307022,0.3562434,0.1076733,0.0066555953,0.5652116,0.030460963,0.23162436,-0.3029504,-0.55358034,-0.1371275,-0.30490947,0.19749673,0.47497186,0.18612495,0.41913202,-0.06851656,-0.023586724,-0.016266672,0.16542217,0.17934133,-0.9903554,0.39611068,0.30302644,0.49011278,0.8041171,-0.07036225,0.3391957,0.6560153,-0.27451125,0.12617977,0.4126591,0.11520219,-0.21987002,0.46818447,-0.77501136,0.19916888,-0.20228294,0.1533366,0.24353728,0.08553479,0.3920901,0.8802145,-0.12049552,0.16667996,-0.14990373,-0.23991439,0.12206478,-0.2037003,0.0894968,-0.22659619,-0.41742778,0.64880717,0.47883514,0.41737917,-0.23166847,-0.0078494,0.18976314,-0.20468964,0.31493577,0.113046885,-0.10694562,-0.061610024,-0.58246034,-0.079287395,0.8198349,0.07270396,-0.13791336,0.0030924848,-0.17026709,0.2515879,-0.17940901,-0.1621217,-0.20712207,-0.7113249,-0.113209434,-0.24135697,-0.4192645,0.6580065,-0.13727951,0.19967103,0.10838751,-0.0043133325,-0.16855909,0.05761042,0.1102746,0.4293804,0.09002344,-0.18010446,-0.2472765,-0.15901318,0.17447993,-0.33737865,-0.37495413,-0.123261884,0.23558177,-0.4269125,0.33630803,-0.40573272,-0.47094208,0.19047774,-0.20096496,-0.017487247,0.508875,-0.11423655,-0.13688563,0.14497186,0.0021245736,-0.15917632,-0.32527322,-0.250211,0.1937885,-0.06106421,-0.06298326,-0.11389266,-0.047627144,-0.11549253,0.2985544,0.18696281,0.16081071,0.240517,0.22419594,-0.49965072,0.041987862,0.26244864,0.5513518,-0.048062053,-0.06803646,-0.23549286,-0.23362921,-0.2887365,0.010838747,-0.07275186,0.18489338,0.1360722,-0.36665994,0.9183095,0.19448999,0.94904655,0.03563225,-0.3953715,0.19050145,0.5023037,0.0015505062,0.0044816094,-0.28105226,0.86309004,0.5546113,-0.19169863,-0.13861682,-0.6320944,-0.16958673,0.28731355,-0.1723394,-0.0072641796,-0.02430345,-0.72117436,-0.2182009,0.276954,0.31402102,0.022592962,-0.24803235,0.042152856,0.09862275,0.16234958,0.19117914,-0.54802024,-0.04585278,0.2981186,0.26112267,-0.03466127,0.054514714,-0.4021816,0.2901205,-0.57157195,0.07517824,-0.5291835,-0.030928025,-0.043219864,-0.019461062,0.15203866,-0.17253973,0.328353,-0.27099505,-0.3520876,-0.11065634,0.5020209,0.31585482,0.26541078,0.81877136,-0.3098605,0.030677391,0.13077737,0.60680825,1.1269511,-0.24086325,-0.0823408,0.34597096,-0.25939927,-0.62768143,0.08469852,-0.4892051,0.07762111,0.04924274,-0.44217846,-0.43092498,0.012915747,0.016112361,-0.027566712,0.083067454,-0.59940594,-0.12458635,0.32397628,-0.23836528,-0.16753806,-0.22885633,0.064832635,0.9021222,-0.39738178,-0.30454394,-0.09788479,0.124496035,-0.3231067,-0.78246117,0.11469752,-0.42016152,0.29663992,0.32598257,-0.3689029,0.0922913,0.19277914,-0.66634953,0.13049577,0.38593677,-0.27225545,0.08150984,-0.39275715,0.06304329,0.90151817,-0.11364007,0.08605274,-0.46456665,-0.6692293,-0.76134235,-0.18515442,0.18661985,0.060216513,0.058578465,-0.49034002,-0.08036914,-0.28585917,-0.046365302,0.06392871,-0.6994749,0.55249894,0.07893182,0.417999,-0.15741444,-1.0486609,0.05447053,0.08828611,-0.24689402,-0.58960164,0.6138659,-0.038154453,0.7890813,0.12967882,0.052344,0.1918702,-0.6554993,0.21219574,-0.32085484,-0.11315693,-0.64228487,0.060067765 -454,0.31618056,-0.116326354,-0.43790933,0.026592294,-0.16852938,0.2903851,-0.06488991,0.3361296,0.17899303,-0.38194773,-0.195137,-0.24551177,0.11745342,0.37090656,-0.17969082,-0.3147449,-0.1084953,0.30008966,-0.429351,0.5164589,-0.13215967,0.29060358,0.06193483,0.4586723,0.09367503,0.14267541,0.057735316,-0.095672645,-0.4136822,-0.2704216,-0.107002534,0.3689852,-0.5665066,0.18464515,-0.30608973,-0.4551904,-0.06556716,-0.5276702,-0.39089197,-0.66152316,0.1938001,-0.94808465,0.6369033,0.055060677,-0.0869205,0.23328148,0.21762082,0.19607614,0.016671443,-0.022463625,0.15367484,-0.22731006,-0.08917488,-0.26464584,-0.3217711,-0.4972878,-0.51816684,-0.030972281,-0.33606955,-0.045475993,-0.21369468,0.16431443,-0.24853897,-0.0758004,-0.069339715,0.24588527,-0.38372126,0.2944179,0.21826747,-0.20206143,0.20753574,-0.49360356,-0.21479042,-0.15251873,0.28007415,-0.35132763,-0.09000896,0.2625876,0.22272332,0.44555384,-0.20564081,-0.07539102,-0.3870078,0.068240546,0.09833851,0.61720645,-0.28936478,-0.5166749,-0.070410036,0.11155999,0.24866097,0.17954822,0.10981791,-0.0780048,-0.026320558,-0.26059872,-0.080427766,0.169024,0.41434756,-0.27063158,-0.38000798,0.3658214,0.4118275,0.10207195,-0.11968238,-0.15733418,0.08424862,-0.36992428,-0.19053893,0.09261148,-0.22552936,0.5888948,-0.005003546,0.22241719,0.5276957,-0.19011827,0.1001979,-0.06936703,0.13527547,-0.018312028,-0.22624059,-0.26054016,0.29715374,-0.21648799,0.19082832,-0.10722875,0.683982,0.21027432,-0.71423435,0.34295842,-0.6360822,0.042864706,-0.022613633,0.42624733,0.5268745,0.44927496,0.2549214,0.55131346,-0.24923193,0.095884554,-0.02841021,-0.24749017,-0.004576304,-0.2221772,0.035653606,-0.49014035,0.049118597,0.10075049,-0.22031738,0.1290582,0.35478336,-0.4897781,-0.13415064,0.19810799,0.9053842,-0.2852417,-0.12774453,0.6674558,0.98919,0.73457515,-0.011596201,1.2812608,0.2751018,-0.25829512,0.05988019,-0.33834597,-0.6567523,0.15129744,0.31121135,-0.83729374,0.4684868,0.21335039,-0.092568636,0.17958508,-0.4790186,-0.058183733,-0.1505913,-0.04241815,0.09325119,-0.054430343,-0.38918695,-0.2488373,-0.13926625,-0.23001216,0.2778564,0.29206055,-0.19312511,0.3857097,0.14409539,1.7993056,-0.049558103,0.13206714,0.10939957,0.42173338,0.11371643,-0.0098933,-0.05427279,0.3901394,0.16295193,0.12893942,-0.19777201,0.06675862,-0.24727185,-0.55657274,-0.19605319,-0.13946614,-0.17304961,0.14675646,-0.3318232,-0.17085505,-0.09227367,-0.17513518,0.44890267,-2.545927,-0.083942406,-0.025004629,0.38061768,-0.3832222,-0.35333315,-0.30756122,-0.41548157,0.32188544,0.18200128,0.37564135,-0.6383391,0.21912828,0.2900447,-0.44205683,-0.25784138,-0.56491023,-0.12760928,-0.00056857296,0.18187717,-0.04180256,-0.09300632,0.1443989,0.013139104,0.32655457,-0.03971398,0.044651512,0.33680555,0.4568932,0.07868584,0.2611157,-0.10945157,0.50395113,-0.3808622,-0.25659966,0.33386973,-0.36705294,0.42276335,-0.030035572,0.08935744,0.3902431,-0.28126594,-0.75948054,-0.63471884,-0.29564166,1.1133882,-0.20299633,-0.3548536,-0.05746139,-0.105704956,-0.24679868,-0.14359619,0.5296346,-0.15433009,0.011719248,-0.8248947,0.016382392,-0.16879018,0.34541076,0.058290165,0.15535513,-0.44282365,0.56142753,-0.1578661,0.4262411,0.28097436,0.20707619,-0.24677877,-0.4679171,-0.01422743,1.0561911,0.29769093,0.21617977,-0.16957322,-0.3568282,-0.28955093,-0.07607285,0.00051372394,0.48291197,0.40915465,-0.058799833,0.046644177,0.32129553,0.07960702,0.114158385,-0.18293251,-0.27160993,-0.0662905,0.008744137,0.51818186,0.6372174,-0.29513508,0.5256497,-0.23336227,0.38141748,-0.17272829,-0.3524911,0.3687454,1.0265478,-0.18738055,-0.10291053,0.7450876,0.40575483,-0.38553157,0.35390326,-0.66569585,-0.41744247,0.28765568,-0.1291499,-0.40353116,0.18779857,-0.12918003,0.11723832,-0.9113316,0.45026478,-0.14421593,-0.19551764,-0.6658975,-0.05347339,-2.4432647,0.08889108,-0.13047719,-0.16604027,0.020579457,-0.11541498,0.1411985,-0.57114875,-0.5322057,0.15543309,0.112610884,0.49558973,-0.1369377,0.31304002,-0.16655578,-0.3851893,-0.17268144,0.26379994,0.30795035,0.35856822,-0.2421514,-0.47688326,-0.09184636,-0.031307634,-0.22671056,0.06608558,-0.7972559,-0.34399632,-0.12408701,-0.4924877,-0.15810248,0.6315827,-0.5970635,0.008107139,-0.22418468,-0.0575178,-0.16967642,0.13785253,0.0844735,0.21048376,-0.0011657849,-0.043344624,0.008943558,-0.21838193,0.4609943,0.11901299,0.2304455,0.4736473,-0.18671568,0.18356933,0.28326124,0.53666526,-0.048105605,0.75141007,0.5706664,-0.124965705,0.19918548,-0.27873427,-0.16701405,-0.55948025,-0.4112325,0.022281902,-0.41701588,-0.4413716,-0.08834733,-0.39414415,-0.8305102,0.66897666,-0.1704971,0.09821926,-0.048736814,0.36984086,0.52050745,-0.39052588,-0.059239753,0.010127522,-0.085219786,-0.48675847,-0.4710331,-0.35235733,-0.33169454,0.06653179,0.99956405,-0.16266926,0.119042285,0.13809453,-0.14668977,-0.07535104,0.12624355,0.10017408,-0.030093106,0.6662879,-0.079036355,-0.57085216,0.43233132,-0.14044479,-0.18067022,-0.61488646,0.2701798,0.5634181,-0.7527877,0.5526246,0.4644782,0.031325523,-0.18859695,-0.52187425,-0.31564596,-0.1339675,-0.1246724,0.141844,0.16446856,-0.510365,0.24382676,0.3539441,-0.3480465,-0.7363807,0.50137514,0.0167371,-0.3756929,-0.0055554197,0.29404226,0.03125069,-0.028474996,-0.19178925,0.2448199,-0.36017624,0.3000808,0.09397477,-0.15597223,0.20863827,-0.24592744,-0.09975474,-0.8301312,0.38079724,-0.35334593,-0.45353493,0.41731152,0.11098527,-0.047071,0.27880168,0.12554505,0.32367215,-0.4110822,0.0029777843,-0.015921244,-0.21484216,0.28570157,0.2170675,0.55521786,-0.5253519,0.5566521,-0.11133184,-0.26985392,0.022650795,0.016724126,0.51205176,0.012390405,0.20428261,0.1003482,-0.32179937,0.16801058,0.7010934,0.19567879,0.38750595,0.10955145,-0.06099022,0.27743393,0.06417818,0.050914086,0.02202796,-0.5972823,-0.064147666,-0.22046116,0.11620821,0.37758908,0.105744086,0.36287507,-0.2558323,-0.27652428,0.058380913,0.14082143,0.16155526,-1.0333936,0.14998674,0.01334316,0.74782956,0.32791528,0.049934857,0.12801269,0.6438045,-0.22522299,0.07583641,0.38309908,-0.1400247,-0.39074925,0.58140945,-0.58431065,0.2779295,0.004517398,0.011674159,-0.020846201,-0.047099177,0.22850081,0.81487185,-0.22221348,0.09740906,-0.01563497,-0.27044842,-0.018504636,-0.260459,0.32570282,-0.580869,-0.20549496,0.6438459,0.4430392,0.43793112,-0.21300279,0.08310955,0.06178238,-0.18944037,0.20162654,0.22537829,0.31608003,0.11935259,-0.5644312,0.0008824212,0.7268964,-0.0448745,0.0049760765,0.039014578,-0.30686074,0.26041284,-0.26477963,-0.010470403,-0.08592522,-0.6643155,-0.025716636,-0.57011193,-0.42819193,0.4364331,0.08513416,0.15215273,0.122805014,0.03491838,-0.22972319,0.48650816,0.23345329,0.83103794,0.066767626,-0.24214318,-0.25010866,0.30551872,0.23331411,-0.14789112,0.095742844,-0.110728465,0.17573152,-0.51846546,0.307152,-0.08942883,-0.22585031,-0.08614846,-0.1531249,0.1054845,0.4898696,0.11205391,-0.03765751,-0.027226636,-0.056819685,-0.48715836,-0.019161072,-0.18929422,0.09020444,0.3412682,-0.098851785,-0.1650507,-0.16328396,-0.3097546,0.32060698,-0.00958424,0.40004662,0.5994557,0.18120918,-0.21658978,-0.022302065,0.07607259,0.5314993,-0.14182876,-0.19160354,-0.3075866,-0.32737923,-0.24435234,0.30222756,-0.19653805,0.14769255,0.2000618,-0.30288342,0.88417065,-0.045472775,0.99267,0.07567153,-0.24952282,-0.06267677,0.44708714,-0.016052887,-0.039069302,-0.42172375,1.0902647,0.6223067,0.18044195,-0.0076290583,-0.089617826,-0.048242204,0.083561614,-0.22897728,-0.20316401,0.0069287247,-0.5346065,-0.2742438,0.19882563,0.30282336,0.14941724,-0.106590234,0.29320398,0.19795202,0.13088147,0.24815392,-0.4952774,-0.24995486,0.3793966,0.40943268,-0.019134032,0.25085765,-0.3406556,0.39625028,-0.39492688,-0.00040388107,-0.4479682,0.07772682,-0.14386173,-0.23159565,0.13976164,0.00047939163,0.4273145,-0.44991305,-0.28181985,-0.15842007,0.33221117,0.1732893,0.0879262,0.44940853,-0.22395824,-0.01908746,-0.013283761,0.5034514,1.1283073,-0.38298774,0.1019912,0.4199989,-0.20208745,-0.5629258,0.3835027,-0.32030708,0.17892821,-0.17321107,-0.17520557,-0.5080156,0.2568464,0.1248749,-0.10075416,-0.1333926,-0.42779508,-0.045607537,0.23743495,-0.30251804,-0.23786448,-0.23572288,0.09460856,0.52746665,-0.15074696,-0.3405002,0.17334117,0.22794403,-0.21450724,-0.38017735,-0.11019908,-0.38004285,0.07684892,0.18212487,-0.34070224,-0.20340729,-0.024889281,-0.38877004,0.0675989,0.20533194,-0.37141708,-0.043819923,-0.26596838,0.07840241,0.8794039,-0.17934923,-0.015446224,-0.49088404,-0.38505316,-0.90032345,-0.39519963,0.30505088,0.14906137,0.027363848,-0.5690642,0.032723103,-0.10124094,-0.30199438,-0.15914421,-0.33524898,0.3074856,0.23154533,0.4322137,-0.26968294,-0.68586415,0.16260715,0.011394133,-0.1468147,-0.5941094,0.35959777,0.08027729,1.0882565,-0.073947154,0.016839594,0.45006588,-0.5727411,-0.19246863,-0.10438924,-0.069787726,-0.6604322,0.08852208 -455,0.20462254,0.03321197,-0.5317203,-0.23621331,-0.08419818,0.23038629,-0.14453268,0.38850254,0.15417223,-0.61709684,0.07592409,-0.108394735,0.07956212,0.40530446,-0.13396832,-0.4908368,0.20548926,0.011341544,-0.5356576,0.3072409,-0.46656507,0.15661423,-0.12574634,0.22547671,-0.007538374,0.28641966,0.19033787,-0.3546259,-0.28909636,0.016875539,-0.1143124,0.17436512,-0.44138846,0.22036743,-0.11785289,-0.15832019,0.19704802,-0.23093328,-0.51016235,-0.5775796,0.14859827,-0.7391213,0.5059338,0.108061805,-0.11400863,0.21856005,0.1657822,0.14466214,-0.24631135,-0.06896581,0.33065414,-0.36259422,-0.2169586,-0.23173453,-0.36112276,-0.6105991,-0.55680764,-0.0497712,-0.5123871,-0.20270446,-0.3559876,0.09900213,-0.35199967,-0.18470852,-0.045826316,0.43440676,-0.37065792,-0.053863347,0.11334671,-0.30285195,0.22069001,-0.63805723,-0.102426186,0.03328534,0.37876892,-0.2949564,-0.08548416,0.40874985,0.30403677,0.49081972,0.020392152,-0.2121257,-0.360853,-0.1493307,0.122396156,0.49674144,-0.23310423,-0.46593386,-0.009094162,-0.0808252,0.08614584,0.101129904,0.016004797,-0.31800586,-0.14185928,0.2192022,-0.24444234,0.51507246,0.59303534,-0.36675748,-0.15956272,0.45380238,0.47931892,0.065539375,-0.24750963,0.043139525,-0.07821612,-0.44788218,-0.1346448,0.2715065,-0.21393606,0.40763107,-0.19334888,0.32706395,0.80573004,-0.15352729,0.043730352,0.1172201,0.115204915,-0.0084726,-0.12614438,-0.027100038,0.06116522,-0.5416563,0.12689231,-0.2707052,0.82309246,0.17722164,-0.80203545,0.41697237,-0.431546,0.076929554,0.0283725,0.5513957,0.5662924,0.39170223,0.14955114,0.7359342,-0.5762825,0.024256127,0.10878665,-0.42153722,0.13787067,-0.06801487,0.06386582,-0.5149871,-0.11778386,0.10225002,0.078992255,0.059080865,0.22115466,-0.42561898,-0.09286749,0.37897918,0.8678668,-0.34438905,-0.18896,0.29650545,1.0682299,0.7614188,0.03888011,1.1713077,0.12005932,-0.29926077,0.109364115,-0.25547424,-0.7518957,0.28648704,0.33081284,0.23686323,0.1460271,0.19487491,0.19801223,0.30036047,-0.4844949,0.104666255,-0.18218902,0.24857916,0.15308608,-0.09690582,-0.24803284,-0.24357916,0.0380853,-0.11612763,0.20106263,0.18663676,-0.17509656,0.25036412,0.20526086,1.355651,-0.05843476,0.111377835,0.049646597,0.71653754,0.11010532,0.10620683,-0.087615676,0.40676418,0.32512143,0.015391505,-0.48317465,0.029699573,-0.35020456,-0.47494096,-0.21284582,-0.4071918,-0.1590767,0.037937608,-0.45607647,-0.10274004,0.10744758,-0.530239,0.6021012,-2.852514,-0.068862855,-0.15031849,0.32604602,-0.19996616,-0.16536322,-0.08735527,-0.413322,0.45424923,0.31316376,0.41982746,-0.61445385,0.38478252,0.6102396,-0.4029772,-0.14012696,-0.67432624,-0.13832001,-0.24894652,0.23103204,0.19186516,-0.17821513,-0.06396003,0.20849654,0.4236431,-0.09541652,0.058550425,0.23195755,0.1997973,0.03766797,0.512973,-0.09409972,0.6066182,-0.2964156,-0.14536344,0.26829955,-0.49368435,0.09730513,-0.0240648,0.13737448,0.52923244,-0.09232137,-0.79526037,-0.6063923,-0.28462243,1.0733258,-0.2770674,-0.28608492,0.40906587,-0.17628439,-0.26145032,-0.12579152,0.56421787,-0.04410303,0.12428714,-0.68367606,-0.034952383,-0.09637386,0.16614243,-0.12774768,0.10761206,-0.39829472,0.77409756,-0.043865394,0.52401096,0.236659,0.18396525,-0.4127813,-0.29832342,0.020856513,0.7541253,0.19869478,0.1560353,-0.12099888,-0.25894454,-0.22458243,-0.22434609,0.13749182,0.49403995,0.5905085,-0.09616334,0.014922278,0.30239272,-0.10660629,-0.07317817,-0.16298512,-0.3614683,-0.042840745,0.1872515,0.57739055,0.45972404,-0.1827086,0.41026944,-0.14532845,0.18429706,-0.31026417,-0.39414543,0.5284667,0.599309,-0.19180237,-0.25879207,0.4069603,0.45833877,-0.28721604,0.32245514,-0.72897893,-0.38753682,0.6164113,-0.14901343,-0.5144215,-0.06930054,-0.2710375,0.18435419,-0.75937873,0.38818482,-0.19363107,-0.6827876,-0.4175304,-0.16733791,-3.5615008,-0.07266346,-0.34251684,-0.113456026,-0.05324184,0.10717155,0.23110892,-0.56806195,-0.26991352,0.12043587,0.096133016,0.6060257,0.086772576,0.021591434,-0.4031114,-0.13424285,-0.24146244,0.22746415,-0.0068872147,0.27298814,-0.06334532,-0.4346015,0.25698477,-0.22026123,-0.34621546,0.09525993,-0.52590686,-0.37817234,-0.19076847,-0.5825421,-0.40796638,0.7606606,-0.605642,0.037875872,-0.29377255,0.039510462,-0.24348356,0.386077,0.21615908,-0.0032367196,-0.041314453,-0.020740347,-0.0777269,-0.49581695,0.3650792,-0.022289345,0.36957887,0.46989962,0.04705013,-0.102271564,0.647638,0.57719916,-0.035380572,0.95500964,0.3545852,-0.033889253,0.43808392,-0.2755471,-0.20807214,-0.50108564,-0.44877085,0.11284467,-0.3736946,-0.2754564,-0.049330354,-0.34848437,-0.6794356,0.41320756,0.107283406,0.100651465,-0.0026050976,0.1372285,0.3093794,-0.23574856,-0.096487276,0.024683671,-0.17895474,-0.48119488,-0.33427528,-0.7024718,-0.52460533,0.087852105,0.886007,-0.07523038,-0.14148116,0.09092803,-0.33551598,0.16141064,0.2894042,0.16986445,0.23567311,0.50558364,-0.13719732,-0.68220145,0.5100059,-0.24097982,-0.004180342,-0.5830709,-0.0015719533,0.705516,-0.6981939,0.58462226,0.36892393,0.05357015,-0.23802952,-0.4672344,-0.2595677,-0.2097356,-0.21539171,0.2163085,-0.15063033,-0.9821431,0.44293836,0.20209742,-0.37366793,-0.49312314,0.49066895,-0.04481062,0.026454816,0.17353562,0.38594374,0.047062654,-0.1110659,-0.111548916,0.113579996,-0.50482875,0.36200455,0.33030686,0.10294598,0.43937343,-0.14775912,-0.14741485,-0.6376999,-0.3018472,-0.4483934,-0.2896116,0.25426933,0.027416382,0.17781186,0.14619151,-0.07692694,0.29908055,-0.33790976,0.12050308,-0.104310825,-0.2952424,0.3029201,0.35952976,0.35489702,-0.34222007,0.6679916,-0.024532648,0.009123698,0.020792374,0.017828953,0.5192357,0.32089314,0.43287757,0.030111184,-0.17247322,0.2634261,1.137824,0.29527515,0.4248662,0.1471967,-0.1338553,0.24279754,0.06109767,0.022255434,0.08876974,-0.49379987,-0.08345991,-0.18888076,0.17837422,0.35893154,0.10908791,0.34605545,0.007057999,-0.226248,0.030137384,0.17025311,-0.086308636,-1.328293,0.34015724,0.34972593,0.81064624,0.17656729,0.06505007,-0.018007457,0.821349,-0.17689559,0.1669743,0.14050199,-0.21662895,-0.48894623,0.6038065,-0.7515473,0.50416607,0.008305396,-0.08163362,0.040286977,0.004669509,0.2783624,0.90890396,-0.202505,0.12573524,0.07154008,-0.3234423,0.29890266,-0.40124485,0.20980957,-0.31605196,-0.27421495,0.48959488,0.48806515,0.42292634,-0.14124103,-0.027096357,-0.05073472,-0.18707392,0.17847721,-0.14909838,0.025052914,-0.1204836,-0.6245772,-0.23515725,0.4203606,0.09322602,0.29227147,0.237875,-0.0985564,0.5112985,-0.12859014,0.14943083,-0.11665017,-0.4671075,0.0873229,-0.006844797,-0.4567501,0.4990644,-0.36241907,0.43760014,0.27268124,0.0027972634,-0.10138909,0.52878326,0.3290069,0.77573395,-0.10175736,-0.20694253,-0.4637766,-0.12888396,0.10134578,-0.26759043,-0.10253294,-0.4474029,-0.07817139,-0.49155268,0.20842838,-0.23583505,-0.2204973,0.033080287,-0.2958171,0.06364461,0.6407549,-0.06452401,-0.15358461,-0.025203113,0.032861274,-0.11831548,-0.030572874,-0.2654498,0.21667962,0.094278954,0.0478274,-0.23969911,-0.3195634,-0.17609684,0.12544468,0.04230594,0.18431698,0.40654883,0.07554851,-0.23832531,0.03490217,0.19420172,0.57640225,0.14562032,-0.034113668,-0.17715561,-0.25613695,-0.2665234,0.08281155,-0.100422785,0.22581625,0.19578576,-0.38792562,0.60698825,-0.3530536,1.1264176,0.19446513,-0.26330742,-0.010087328,0.5776178,0.025333779,0.17744756,-0.3708015,0.7202214,0.41589567,-0.022760093,-0.18000586,-0.41817507,0.013819271,0.36811957,-0.08721212,-0.20042913,0.012268598,-0.78543967,-0.20956203,0.3677114,0.19164518,0.325239,-0.06068139,-0.17927395,0.18610118,0.16893479,0.54960835,-0.6359878,0.0069857496,0.29395872,0.1780088,0.07914775,0.13088927,-0.36459112,0.3918102,-0.5344804,-0.040714372,-0.17176557,0.045125734,-0.39933532,-0.20191817,0.20292547,0.035554502,0.4807911,-0.097361766,-0.23830414,-0.077619076,0.5888534,0.22249894,0.2922924,0.67962205,-0.060159948,-0.08212356,0.11226861,0.31190827,0.87261873,-0.2927482,-0.005614255,0.42406207,-0.37972468,-0.6051623,0.28598592,-0.48326555,0.22408538,-0.053402882,-0.38837764,-0.2197143,0.23941055,0.27037725,0.021197487,0.17139904,-0.54014766,-0.22218823,0.30169296,-0.4119095,-0.2929682,-0.21648143,0.13321377,0.5390128,-0.40747693,-0.09991813,0.17728603,0.27782083,-0.16739824,-0.5515629,0.0803191,-0.34185463,0.431308,0.10946699,-0.46294695,0.014413608,0.08252458,-0.3333288,0.33023474,0.23136675,-0.41470575,0.019279571,-0.095989905,-0.061842434,0.69093996,-0.07580023,0.14232771,-0.54427946,-0.325634,-0.91907275,-0.27205014,0.3067911,0.12764464,-0.121782534,-0.44579035,-0.1739386,0.0837222,-0.045511026,0.043130044,-0.50573915,0.43880266,0.061026342,0.41602057,-0.03959114,-0.86249775,0.02721847,0.15081705,-0.040635288,-0.5076919,0.52782094,-0.29128,0.827375,0.058971163,0.1287945,0.12203749,-0.35394642,0.1700858,-0.39483786,-0.27216247,-0.55045944,0.038068723 -456,0.38652596,-0.1133988,-0.43247327,-0.06558145,-0.63056165,-0.026060645,-0.33389422,-0.096490026,0.50690854,-0.25420934,-0.34419835,0.01879453,0.019440738,0.21473464,0.0039238823,-0.44042426,0.013180369,0.36495963,-0.88250595,0.89232033,-0.38906452,0.22646569,0.18968433,0.48295468,0.18807422,0.23334843,0.27069312,-0.007845449,-0.3127365,-0.30909756,0.07389222,0.116916664,-0.694039,0.36475143,-0.420042,-0.370707,-0.07980586,-0.50207955,-0.18911679,-0.8320009,0.1422134,-0.9297409,0.5759879,-0.07918256,-0.11708448,-0.17255592,0.5546504,0.26055,-0.15617207,-0.18205366,0.28587386,-0.25173357,-0.4895119,-0.29203066,0.021211147,-0.28550455,-0.43374854,-0.10370984,-0.26422197,-0.008601991,-0.33217117,0.36791816,-0.20344052,-0.022109063,-0.2688122,0.55105126,-0.30566394,0.2720514,0.23731002,-0.19287401,0.073717274,-0.60679,-0.13889907,-0.1778646,0.35832042,0.21083452,-0.21147195,0.495286,0.40106142,0.53795695,0.3408164,-0.47206408,-0.2684901,-0.080507725,0.4007216,0.36167976,-0.18101178,-0.040123034,-0.25364912,-0.04082379,0.4591597,0.26187554,0.29850572,-0.42543405,0.06174077,-0.35111418,-0.02168812,0.53213567,0.42198056,-0.124843486,-0.03900575,0.18015558,0.53115904,0.40823942,-0.3306226,-0.081713244,-0.12092821,-0.5878302,-0.07687654,0.105725765,-0.028895162,0.43601266,-0.1598515,-0.030007469,0.70035523,0.0793887,-0.23991491,0.2453995,0.26001254,0.06888007,-0.30750006,-0.3720241,0.42030653,-0.56433874,0.067885734,-0.38536358,0.43833357,-0.022205738,-0.6355809,0.2645694,-0.6578093,0.30608985,0.028476255,0.52502835,0.7936027,0.52977484,0.4105033,0.8689445,-0.2190189,0.08479243,0.0045452835,-0.31189603,0.10762138,-0.44900268,0.19295746,-0.49784133,0.10126633,-0.36381906,-0.016796289,0.07097337,0.45759362,-0.5413605,-0.32386035,0.10601783,0.6921484,-0.21718672,-0.035334524,0.9243816,1.072231,1.4094803,0.08938178,1.279983,0.244484,-0.25098553,-0.34091997,-0.087018356,-0.7072143,0.2192064,0.33378616,-0.24851583,0.22139817,-0.094682805,0.04607869,0.40582636,-0.4532601,-0.25372612,-0.13737251,0.39184555,0.09304322,-0.11331882,-0.4375989,-0.24678345,0.10931419,-0.06517453,0.31697482,0.31215662,-0.22859277,0.40508226,-0.0260191,0.9255529,-0.20852627,-0.077297546,0.10696873,0.19640996,0.2551257,-0.25036505,-0.07031714,0.10456176,0.18813096,-0.12823766,-0.40284425,0.09531482,-0.34946424,-0.42603272,-0.086089745,-0.25505528,-0.35249588,0.14723593,-0.20282291,-0.3243208,-0.1508369,-0.16980682,0.4138034,-2.2841098,-0.16088858,-0.30812663,0.32139647,-0.35062736,-0.06631526,-0.07076599,-0.50174624,0.3148499,-0.0010163427,0.5645255,-0.48278695,0.5000686,0.5473841,-0.9068156,-0.18240331,-0.68904465,-0.12850715,0.15915368,0.50743103,0.006696681,-0.1835006,-0.009951339,0.20392206,0.6202642,0.174062,0.3062073,0.7792459,0.39736283,-0.06612911,0.41798934,0.14258222,0.6096933,-0.4216255,-0.25409478,0.47023946,-0.36427832,0.61544406,-0.17413782,-0.03101296,0.847046,-0.49687755,-0.7911469,-0.5688103,-0.15815005,1.0385529,-0.28002194,-0.5835322,0.0429224,-0.2389362,-0.03937678,0.22372094,0.59433067,0.011128727,0.09625486,-0.81570536,-0.09314318,0.123022035,0.21377611,-0.05787731,-0.047937755,-0.37075073,0.96035314,-0.08946707,0.48087198,0.33159408,0.3555049,-0.34925476,-0.2906875,0.23877177,0.6491576,0.48643726,-0.018074095,-0.34123522,-0.28447813,-0.16510585,-0.36246613,0.06146807,0.7095738,0.35329637,-0.26567513,0.106397554,0.27672347,-0.07173597,-0.00036301216,-0.36763304,-0.35486168,-0.21904966,-0.06703076,0.67550385,0.9411007,0.092963606,0.4350154,-0.12364534,0.24711244,-0.024580842,-0.74072593,0.6736853,0.77851105,-0.25962368,-0.1139773,0.5919392,0.4823923,-0.32264194,0.5985718,-0.5546407,-0.45569292,0.31354347,0.057697255,-0.44880906,-0.04750829,-0.3449964,0.2073965,-0.53158647,0.49833643,-0.5553144,-0.34472924,-0.5029566,-0.12392581,-1.2863462,0.39275083,-0.19431487,-0.049033143,-0.38676843,-0.08334788,0.13909088,-0.5070597,-0.85883194,0.178924,0.14450374,0.6453213,-0.15656191,0.20513707,-0.12674192,-0.45085984,-0.061176267,0.07917584,0.20445539,0.30557278,-0.20479682,-0.32990646,-0.001207606,-0.07368041,-0.33990914,0.01728791,-0.66590947,-0.68740237,-0.08556107,-0.43614033,-0.2604451,0.48796022,-0.57347757,0.15781109,-0.381406,0.00046070566,-0.0016563535,0.1197519,-9.4572704e-07,0.4577108,0.262424,-0.09025813,0.039898,-0.02923197,0.48055094,0.09355715,0.23180316,0.34400436,-0.15454578,0.2339471,0.31891313,0.9114038,-0.2568232,1.1464275,0.27994823,-0.06547157,0.14097808,-0.17046283,-0.49817386,-0.6692442,-0.1427642,0.13108698,-0.49088925,-0.33885816,0.12743202,-0.2615112,-0.90415394,0.73049664,0.11362118,0.2918469,-0.053355694,0.014899,0.40521082,-0.2106887,-0.14203697,-0.06589849,-0.19210745,-0.5373783,-0.38445032,-0.6580792,-0.42037347,-0.088582516,0.9794144,-0.27830786,0.098095275,0.2627443,-0.40393466,0.13460384,0.094811045,-0.23756412,-0.012197224,0.5341122,0.34607905,-0.67324984,0.33989325,0.17882991,0.11660053,-0.3247728,0.5808104,0.62590504,-0.50811756,0.6441533,0.51204675,-0.00087016023,-0.2314268,-0.70831907,-0.23502807,0.024419168,-0.32251033,0.55680645,0.33069086,-0.72041285,0.33843046,0.3017244,-0.5747073,-0.8465564,0.3929339,-0.09759892,-0.21381894,-0.07659977,0.41535056,0.125344,-0.011871616,-0.1852276,0.2302927,-0.3453175,0.4507321,-0.020308161,-0.15066192,0.029226955,-0.32234222,-0.45638102,-0.93234575,0.058690075,-0.5590398,-0.41846704,0.2923414,-0.065263845,-0.19282189,0.16344097,0.4837122,0.29213133,-0.1642301,-0.015654929,-0.29868945,-0.3750435,0.30699807,0.55320895,0.5381958,-0.3697337,0.553862,0.18142526,-0.21716604,0.10934145,-0.0825383,0.19299902,0.08310738,0.45043847,0.008629203,0.06881566,0.115263104,0.67241395,0.049600624,0.23479728,-0.0385655,-0.23239651,0.42131862,-0.16439062,0.4168226,-0.2739455,-0.45671165,-0.07575991,-0.11344138,0.030472675,0.530389,0.23019342,0.25360912,0.10093,-0.21570028,0.012304133,0.051719714,-0.06899258,-1.593081,0.40461487,0.20801617,1.0149279,0.69866055,-0.053101975,-0.14291154,0.89041406,-0.2801481,-0.0492872,0.3854216,-0.09967646,-0.37107357,0.61103326,-0.6159976,0.28246826,-0.32794517,0.019518351,0.04812826,0.2370192,0.25282595,0.78026354,-0.2241903,0.13127324,-0.32507998,-0.19453172,-0.020947166,-0.19318612,0.20054843,-0.2812566,-0.6332639,0.86534894,0.44544113,0.57615906,-0.39930883,0.047249626,0.04390707,-0.2785343,0.24097733,0.12416215,-0.09997587,0.04096062,-0.4932173,0.09701422,0.5753681,-0.37142316,0.0992013,-0.06285833,-0.17981052,-0.056032136,-0.22862308,-0.14758164,-0.10736946,-0.88449633,-0.108752996,-0.2642151,-0.32111886,0.21971779,-0.13510567,-0.11353455,0.14012466,0.014114801,-0.20446461,0.41404662,0.13786131,0.74664766,0.15236965,-0.10717675,-0.0073180515,0.28936383,0.16495815,-0.0827305,0.31649157,-0.099392384,0.2182552,-0.49873984,0.64888775,-0.13773306,-0.55058473,0.10990674,-0.09060254,-0.04770026,0.3939112,-0.19397224,-0.27014688,0.11903678,-0.17264065,-0.40158752,-0.025476066,-0.16436726,0.19714803,0.25611123,-0.09863881,-0.20758978,-0.24625872,-0.29887754,0.6009659,-0.041824803,0.46043497,0.4638656,0.013036823,-0.5718468,0.2384078,0.24756359,0.6328245,0.13555962,-0.2009621,-0.42613807,-0.25378305,-0.5075559,0.54099655,-0.101689555,0.12748829,-0.13891909,-0.25083652,0.9948016,0.008753519,1.2379973,-0.031522807,-0.32789642,0.07156811,0.5213665,-0.2195357,-0.021284968,-0.39894918,0.729767,0.50289375,-0.23387899,0.10067525,-0.59302765,-0.006963515,0.27043793,-0.44612178,-0.047198612,0.0069193305,-0.5783959,-0.2610239,0.031638123,0.20184389,-0.08135513,-0.20207088,0.06001658,0.19334932,0.15496905,0.45608252,-0.7229534,-0.3634826,0.25727904,0.376427,-0.15984543,0.079179175,-0.31032807,0.2351946,-0.7162055,0.20509095,-0.27493516,0.076440066,-0.28076553,-0.403029,0.06491148,-0.04917332,0.27678463,-0.5277999,-0.31326225,-0.19575523,0.41238514,0.17242132,0.07078169,0.69682604,-0.2727445,-0.00039522848,0.36512512,0.47927582,1.0335171,-0.37659565,0.01806319,0.280091,-0.40432614,-0.5286092,0.45819512,-0.34260422,-0.11101629,-0.008958801,-0.4917565,-0.5543863,0.12511404,0.22615841,0.16935375,-0.027552279,-0.7796648,-0.008251055,0.44229928,-0.2054121,-0.12864801,-0.18535402,0.113758534,0.41845804,0.038027413,-0.39849514,-0.029646715,0.18527724,-0.3010287,-0.54849946,-0.013045875,-0.55582017,0.3379396,0.0201564,-0.34006253,-0.20995663,-0.07626111,-0.6285207,-0.056808893,0.06504829,-0.24976209,0.17004985,-0.19323249,0.14032888,0.79273385,-0.24766506,0.17427997,-0.42405784,-0.5978081,-0.8487944,-0.2043115,-0.15940197,0.14562576,-0.073762745,-0.55543005,-0.11514707,-0.16200349,-0.30290714,0.21576889,-0.58707654,0.22720197,0.3512079,0.36743814,-0.30646998,-0.94601417,0.13474433,0.17408974,0.071185656,-0.38154075,0.4283121,0.06555453,0.7962765,0.12006923,-0.16156629,-0.16575459,-0.4238098,0.23145825,-0.28775874,-0.028972857,-0.5623402,0.0934923 -457,0.6461529,-0.11692968,-0.62517256,-0.21784914,-0.21264414,0.35960105,-0.16800654,0.49234644,0.32534263,-0.37760186,-0.17044751,-0.16161726,0.04226749,0.55255824,-0.13929884,-0.858126,0.021294,-0.032687422,-0.39159,0.19244963,-0.74641275,0.3516817,-0.035351794,0.57224363,0.102099605,0.33106595,0.32323864,-0.00859492,-0.3981003,0.13762303,-0.121082425,0.29617777,-0.4605824,-0.037554562,-0.044611428,-0.4316825,0.054661036,-0.24892955,-0.32297316,-0.7022273,0.42654085,-0.96625835,0.5449589,-0.028565267,-0.4111537,0.1492524,-0.07204083,0.1541573,-0.29856214,0.100862116,0.20342481,-0.2646384,0.02502209,-0.27228522,-0.47133312,-0.7908845,-0.5971925,0.082893066,-0.5534316,-0.22126609,-0.29120815,0.27918062,-0.22582145,0.030852938,-0.18753654,0.22205722,-0.37071776,-0.21906237,0.40523908,-0.28023136,0.22267084,-0.3723527,-0.14477144,-0.1091427,0.22578174,-0.061547566,-0.112466566,0.12888461,0.38648164,0.642127,-0.0013573306,-0.19945775,-0.3726236,0.13681848,0.16827798,0.5243447,-0.23366976,-0.60310066,-0.40078446,-0.19593243,0.22432764,0.12826115,0.17517543,-0.23143673,0.2829943,0.32642925,-0.19946043,0.50371563,0.5687488,-0.3925643,-0.27776775,0.3949697,0.5634727,-0.06566115,-0.12971656,0.09445083,-0.06116088,-0.5769618,-0.21795712,0.15947883,0.022673195,0.7396958,-0.17201914,0.2274661,0.8703559,-0.14081691,0.13153593,-0.1750701,-0.09633859,-0.1920336,-0.16445784,-0.040380284,0.09114441,-0.40388528,-0.09674117,-0.28154576,0.7769776,0.26597133,-0.729873,0.49011073,-0.32703698,0.11381122,-0.12195516,0.6027723,0.63189334,0.2415687,0.16426836,0.95520824,-0.7959345,0.021055585,0.09055189,-0.42790642,0.1737317,-0.1849848,0.15341282,-0.32979903,0.14740764,0.14575644,-0.16186243,0.014395486,0.62321615,-0.5016223,-0.09168017,-0.018895427,0.8385742,-0.5557001,-0.20356049,0.72937155,1.094431,0.8585537,0.0027479727,1.542974,0.5656689,-0.2168296,0.13305669,-0.43102375,-0.59574944,0.36172888,0.2815059,-0.053778425,0.4392778,0.19890843,0.107913055,0.61398524,-0.15252255,0.053855956,-0.07550695,0.2368777,0.04382522,-0.11895424,-0.39875567,-0.056857605,0.13776524,-0.015751222,0.3235349,0.22277965,-0.27653968,0.42675424,-0.105113685,1.6674813,-0.1316368,0.031241506,-0.218774,0.42515612,0.19985045,-0.12556864,-0.02240479,0.3455352,0.2985334,-0.0013121702,-0.560492,-0.03082273,-0.33922216,-0.53531003,-0.29302308,-0.3862802,-0.07721744,-0.068104945,-0.37023333,-0.041469816,0.07633634,-0.27807644,0.4834857,-2.2116597,-0.3678908,-0.16802196,0.38806048,-0.2339197,-0.4064114,-0.22173695,-0.36392593,0.24326777,0.5799876,0.37207413,-0.67158175,0.35693732,0.30877402,-0.14374492,-0.16362242,-0.60149574,0.16765134,-0.1194397,0.46153903,-0.04436924,-0.23316194,-0.18996894,0.42747214,0.6331536,0.18420541,0.05213892,0.09724253,0.77367586,0.028733455,0.4710193,0.15669492,0.7107311,-0.2455409,-0.14721681,0.5328854,-0.6768108,0.44638622,-0.01925508,0.34693012,0.3337172,-0.5185345,-1.0277421,-0.77684873,-0.25303903,1.1418155,-0.27624083,-0.3940351,0.28276643,-0.11877168,-0.42681885,0.015647948,0.4338697,-0.13080075,-0.029544959,-0.85386306,-0.0671067,-0.0036809247,0.08054734,-0.059709176,0.24315028,-0.27440897,0.7316434,-0.22864544,0.32193124,0.26116827,0.16177468,-0.14238529,-0.54940313,-0.030381752,1.0280737,0.33364853,0.22659814,-0.16659276,-0.22138286,-0.29895917,-0.13683604,0.15318029,0.515906,0.8986294,0.19117542,0.055264186,0.32748428,-0.11772651,-0.18060589,0.00044321516,-0.4682819,-0.013759136,0.0075508556,0.6600232,0.75381607,-0.37084332,0.36569712,-0.31762594,0.35444525,-0.2529079,-0.41929957,0.6395035,0.8577559,-0.3108202,-0.15924098,0.635242,0.2601073,-0.6907219,0.51292676,-0.7758047,-0.3319423,0.6557979,-0.034678858,-0.47407508,0.06356703,-0.34954008,-0.016187442,-1.0838364,0.3386536,0.08808068,-0.56684196,-0.46383265,-0.27077404,-4.4372888,0.16273981,-0.16697401,-0.10641,-0.08567864,-0.07119086,0.36271158,-0.6274317,-0.56230164,0.021799749,-0.038832147,0.4461671,0.059042573,0.319542,-0.48070955,0.03239631,-0.22881205,0.25163004,0.16482951,0.27228367,0.027374068,-0.47385767,0.14635521,-0.37721792,-0.4234302,0.034915134,-0.61546594,-0.66034216,-0.19923873,-0.4790989,-0.22085941,0.77678066,-0.47992852,-0.07777298,-0.40771067,0.04379117,-0.35552844,0.42910227,0.07061424,0.045268606,0.22784609,-0.08717712,-0.10379502,-0.41308522,0.11351415,0.1298737,0.33523235,0.46436062,-0.21849544,0.10081446,0.67203206,0.7790799,0.07277699,0.6684994,0.2214927,-0.00047649443,0.36235118,-0.37478194,-0.10601765,-0.63995916,-0.5495529,-0.22446515,-0.53038245,-0.6459742,-0.2370062,-0.45360705,-0.82202154,0.3494602,0.01703309,0.23661543,-0.14065926,0.3392773,0.48325858,-0.20952213,0.035937514,-0.14191249,-0.2684758,-0.7259197,-0.4004139,-0.5340921,-0.8234647,0.4880711,0.935381,-0.11348482,-0.18129216,0.0054742596,-0.36972532,0.10843035,0.08322682,0.056530625,0.036970954,0.350029,-0.17423661,-0.72690123,0.40121257,-0.23446257,-0.10737654,-0.7172561,-0.11648149,0.82414055,-0.70930386,0.71175903,0.50889415,0.22930777,0.36782086,-0.46437764,-0.34985527,0.09500649,-0.16524924,0.6160762,0.22599381,-0.58788013,0.4746214,0.31240103,-0.16634507,-0.69078094,0.39794818,0.029492103,-0.106366456,0.09860661,0.42454028,0.06949078,-0.09951931,-0.39648852,0.1269617,-0.6042112,0.23279245,0.5553073,0.2586479,0.4594239,-0.09671497,-0.29365972,-0.66537017,-0.2288096,-0.59461564,-0.17052688,0.04273206,0.030750299,0.12673792,-0.02323846,0.10904261,0.40884113,-0.463473,0.15601662,0.091610186,-0.30325508,0.35061225,0.48402616,0.35891104,-0.54786927,0.42557105,0.097217225,-0.04965448,-0.0011617094,-0.02478137,0.5503008,0.42744246,0.33146688,0.20245339,-0.048112106,0.33404532,0.67718405,0.21072932,0.49884796,0.38046268,-0.42086568,0.36587867,0.26437172,0.20208776,0.05450428,-0.41767797,-0.07526436,0.042114988,0.25747198,0.42616722,0.16917461,0.35700512,-0.03938591,-0.1810884,0.28601316,0.05506146,-0.20691116,-0.92042345,0.21804023,0.23519528,0.7044327,0.38192573,-0.15631437,0.09751556,0.31973565,-0.22635464,0.13513285,0.36605525,0.05504181,-0.7148218,0.58862436,-0.5509373,0.2998725,-0.31184325,0.10784122,0.03557214,0.30542782,0.52894783,0.9317439,-0.02289736,0.09311381,-0.09432449,-0.09344485,0.08143835,-0.34907207,0.12126372,-0.6156152,-0.24482512,0.6343592,0.45089516,0.3989286,-0.2730018,-0.20061584,-0.0135495765,-0.0066219023,0.030694218,-0.21517341,0.08114689,-0.12810679,-0.86830693,-0.53114706,0.5508509,0.37234282,0.09687062,-0.04539506,-0.5395456,0.38758394,-0.34318212,-0.13335562,0.14935516,-0.6167969,-0.18289919,-0.2326281,-0.72518975,0.40343705,-0.28899738,0.18536325,0.26103902,0.08774996,-0.3920069,0.10219181,0.117000334,0.8762587,0.16278844,-0.27086642,-0.51610357,0.119333744,0.45874822,-0.49061725,-0.13223962,-0.43198428,0.032047484,-0.44233048,0.52525693,-0.04885775,-0.45449948,0.039372683,-0.18254876,0.072149046,0.54518855,-0.3868492,-0.26210627,0.3047277,-0.008075605,-0.19150357,-0.071200885,-0.35616156,0.28538898,-0.08898923,-0.14729412,-0.022285879,-0.096265465,0.04173219,0.33624876,0.15837581,0.18355854,0.59412414,0.072142646,-0.348024,-0.11069258,0.08967384,0.40068075,0.19154526,-0.18502341,-0.3513513,-0.585367,-0.3379279,0.15421005,-0.24251588,0.07122505,0.20574541,-0.4500905,0.7899187,0.1481746,1.3761716,0.14682426,-0.38470516,-0.04482514,0.6053011,0.22369987,0.16648829,-0.6266274,1.05053,0.52274674,-0.34380195,-0.20974214,-0.52703923,-0.40741596,0.37693286,-0.36911237,-0.14277564,-0.33464384,-0.9800842,-0.18016534,0.27422085,0.3579978,0.1329404,0.037133355,0.37731346,0.111111045,0.14168279,0.53597564,-0.5196384,-0.18557103,0.35105157,0.26580614,-0.07710827,0.018507808,-0.25538588,0.40088844,-0.69932896,0.017541463,-0.51469505,0.05154489,-0.058138404,-0.46146086,0.23105021,0.06505097,0.2817432,-0.35950637,-0.4066038,-0.2504898,0.7962883,0.40264452,0.3002684,0.6646106,-0.2506226,-0.24564202,0.16977102,0.5577689,1.580574,-0.10333664,0.24687566,0.44964418,-0.30082527,-0.74910396,0.30696753,-0.39209807,0.22328727,-0.18805617,-0.55153376,-0.5611967,0.3905177,0.17090963,-0.1908922,0.047280055,-0.3595145,-0.1476493,0.4325087,-0.4437991,-0.2791613,-0.18425727,0.24463056,0.7772861,-0.6198965,-0.34359264,-0.010237713,0.57569605,-0.40256128,-0.5442157,-0.038262192,-0.2830646,0.62888604,0.17576212,-0.39913702,0.04897939,0.0827174,-0.4119614,0.36065945,0.33166304,-0.43451008,0.19993202,-0.3486835,-0.14700407,1.0095433,0.20641679,0.04817618,-0.9701398,-0.3145707,-1.0763398,-0.39890042,0.1499334,0.13323738,-0.10557572,-0.43933627,0.028667452,-0.114827424,0.050470978,0.17829712,-0.6132206,0.4463495,-0.016683215,0.74273103,0.001834297,-0.994281,-0.201694,0.3118367,-0.32032105,-0.6916971,0.63456583,-0.34533465,0.75619966,0.12285773,0.2788315,0.31818378,-0.58324283,0.29036734,-0.47256526,-0.18216431,-0.8220169,0.20711039 -458,0.3635993,-0.31528375,-0.31806636,-0.12502895,-0.06681312,-0.079418115,-0.06491435,0.7151827,0.29666474,-0.48275304,-0.20388012,-0.07203819,0.0029575874,0.38116026,-0.07638203,-0.44215536,-0.019655282,0.22299655,-0.42752528,0.48243752,-0.4782711,0.1326068,-0.057572234,0.49738005,0.24056323,0.10706382,0.04384719,-0.09815142,-0.19216911,-0.16075122,-0.025102785,0.2922058,-0.4901563,0.30845463,-0.2675817,-0.40128875,-0.16767173,-0.8030606,-0.44071946,-0.7511861,0.22574656,-0.729902,0.4927794,0.0021619946,-0.20091183,0.23381376,-0.050522882,0.23170024,-0.20042832,-0.120734245,0.24243791,-0.0585487,-0.119763434,-0.00072916347,-0.094862126,-0.18620308,-0.6160129,0.06548538,-0.34302375,0.015088809,-0.32095546,0.08559764,-0.32445112,-0.068332486,0.031994563,0.4142375,-0.4218706,-0.06205109,-0.028512567,-0.024730345,0.3092815,-0.4842113,-0.1932121,-0.14647667,0.32803392,-0.26586023,-0.32317522,0.27871087,0.26416174,0.39054775,-0.13146032,-0.017980209,-0.2502557,0.12248274,0.18394864,0.60208154,-0.1923505,-0.6387957,-0.15126006,-0.0870007,0.12171022,0.18860507,0.025432209,-0.23433824,-0.09726692,0.012386878,-0.19410627,0.47322857,0.5369393,-0.12489218,-0.27863327,0.36255383,0.45031774,0.28976128,-0.06346089,0.010672058,0.09156537,-0.5862258,-0.16566825,-0.042818833,-0.21787398,0.47259414,-0.18101026,0.29791602,0.6446554,-0.13338147,0.054201275,0.14947772,0.046246413,-0.109280884,-0.19494243,-0.16638063,0.17419563,-0.45368817,0.23040032,-0.16744919,0.7883374,0.15374847,-0.7410593,0.37938473,-0.54023796,0.14092585,-0.109874964,0.5036528,0.84690934,0.30793762,0.4485396,0.6337326,-0.36806825,0.07924803,-0.021665744,-0.40946662,0.03119246,-0.27165768,0.017574051,-0.4980215,-0.21255386,0.03708598,-0.17060052,0.16789939,0.4475534,-0.5168516,-0.12825762,0.116341054,0.72587186,-0.2288961,-0.13419773,0.9774968,1.06844,1.0963894,0.024905002,1.2139114,0.14308184,-0.13143285,0.25452372,-0.22898443,-0.79584765,0.29131404,0.33555523,-0.11460888,0.07407963,0.1772887,-0.08606553,0.39747226,-0.60510826,0.010349358,-0.14885305,0.19177318,0.019574502,-0.14993559,-0.539887,-0.45521328,-0.26690516,0.08640926,-0.004295071,0.24342608,-0.28199044,0.4392732,-0.020781994,1.648171,-0.030211389,0.042415038,-0.10175339,0.58252656,0.15183644,-0.27243435,-0.2811034,0.13893451,0.46873245,0.04177658,-0.55317473,0.17399447,-0.18145446,-0.2855639,-0.050389152,-0.33720174,-0.106408656,-0.1435717,-0.39493135,-0.08048051,-0.037558753,-0.46182215,0.559717,-2.8758032,-0.29587683,0.0050209314,0.30089578,-0.14670646,-0.32182112,-0.19501863,-0.45544264,0.49243656,0.27971956,0.5878172,-0.6230073,0.2501367,0.4229865,-0.5991423,-0.12530543,-0.6946972,-0.10460528,0.03946564,0.3555689,0.09873643,0.097668566,0.10566327,0.021794787,0.5348813,0.13709699,0.11813123,0.25178578,0.39683926,-0.07300681,0.41301623,-0.15396397,0.54310495,-0.3186241,-0.19133711,0.29092526,-0.35401025,0.3190376,-0.41016972,0.13826859,0.45800304,-0.4567779,-1.0472254,-0.62008315,-0.34603086,1.170278,-0.09570793,-0.25180137,0.282949,-0.36133638,-0.16049995,-0.00741378,0.69024485,-0.15845752,-0.09277586,-0.7483194,-0.121550106,-0.026681691,-0.035725314,-0.07046413,-0.033162307,-0.5056512,0.53651863,-0.008219724,0.44059452,0.31054413,0.22436662,-0.21421759,-0.43534088,0.13169432,0.8825412,0.348946,0.21001054,-0.27222332,-0.049354147,-0.4202118,-0.09480729,0.0027081731,0.548628,0.64486223,-0.1050967,0.20579605,0.25249684,0.19831936,0.08404052,-0.052833606,-0.1795891,-0.21039887,-0.013299475,0.5962742,0.7574766,-0.11292698,0.51725966,-0.051321805,0.06424846,-0.21286444,-0.3872241,0.4923921,0.7719738,-0.115697734,-0.066028796,0.6240189,0.4591715,-0.061872292,0.41925952,-0.43455768,-0.3117056,0.37866583,-0.15833108,-0.4991496,0.16208975,-0.23839758,0.026396802,-0.86225414,0.36879525,-0.23734789,-0.7504938,-0.5718162,0.04506007,-3.11481,0.1239754,-0.15931764,-0.2807682,-0.12132612,-0.2712542,0.2038755,-0.5290111,-0.6007126,0.25294277,-0.012616299,0.77596515,-0.14195336,0.05979991,-0.2495591,-0.1659774,-0.45413804,-0.0052198023,0.0490322,0.45556578,0.07189641,-0.36415246,-0.08677465,-0.25364533,-0.46717033,0.08587727,-0.63321584,-0.47199655,-0.043666374,-0.52695626,-0.39032102,0.73502237,-0.30801752,0.02714228,-0.19273357,-0.010732651,-0.1837867,0.46398512,0.084907465,0.13623863,0.018821849,-0.18123977,0.039845586,-0.11946244,0.418296,0.1302296,0.21897954,0.3650274,-0.24002719,0.30200684,0.5288845,0.6929254,-0.23245107,1.0485889,0.5547174,-0.16900033,0.11095103,-0.30077112,-0.27164507,-0.41474044,-0.31595814,0.09047922,-0.4053963,-0.55489665,-0.11173701,-0.34029174,-0.84446317,0.44910645,0.058980092,0.32138792,-0.013896805,-0.14475642,0.3944234,-0.2445964,-0.0023776118,-0.091507934,0.0100065665,-0.52747977,-0.21641646,-0.6947155,-0.547938,0.082009815,0.98667675,-0.12695673,-0.016162673,0.14334835,-0.31693718,0.012905109,0.048759002,-0.1646752,0.06423869,0.2447031,-0.056905765,-0.7137067,0.4977902,-0.013613194,-0.13950478,-0.5861749,0.24710435,0.6439805,-0.57856506,0.53481764,0.46892658,-0.013457959,-0.120032676,-0.51102155,-0.30560485,-0.22905983,-0.06868679,0.31450534,0.22211313,-0.8569071,0.42802787,0.32278252,-0.29366845,-0.8233838,0.49689326,0.008090851,-0.036462646,0.022556761,0.3146645,0.1763181,0.021407137,-0.25301048,0.367771,-0.42387915,0.5809398,0.041760176,-0.015840987,0.29268834,-0.19621031,-0.033679496,-0.6950863,-0.038730007,-0.5830239,-0.26195264,0.18624544,0.087812744,0.19022517,0.13285163,0.1261748,0.256376,-0.30831316,0.07180204,0.0033703148,-0.3561726,0.1438656,0.5304268,0.613196,-0.3316126,0.6140347,0.105798036,-0.07921261,0.071614675,0.13802059,0.3278061,0.08705357,0.40470755,-0.069494106,-0.32156584,0.12003202,0.88228273,0.17876203,0.33219746,-0.041092686,-0.18753405,0.20485966,0.11659413,0.4067417,0.045756686,-0.5816106,0.11286188,-0.3684287,0.19732141,0.42822647,0.17469136,0.16736549,-0.029480522,-0.40531504,-0.046984717,0.26162422,-0.00427104,-1.5518737,0.50960714,0.28031817,0.9518607,0.48579112,0.03397273,0.063501574,0.7088435,0.009310037,0.13584848,0.39432564,0.017427072,-0.53982383,0.5652984,-0.8533945,0.5908039,0.012662083,-0.0025314193,0.052753255,-0.17070235,0.4415531,0.6232115,-0.1538292,0.08394074,-0.027185967,-0.30973604,0.19855703,-0.44828764,0.16960211,-0.65685785,-0.19780447,0.7249424,0.67156833,0.14423244,-0.08148653,0.06531957,0.022875557,-0.103579044,0.022679828,0.10018453,0.091531634,0.018589618,-0.89654493,-0.047721874,0.4913379,-0.14466985,0.24754329,0.033476487,-0.080856405,0.20448153,-0.26119173,-0.099999525,-0.08895627,-0.74278545,-0.1104289,-0.402526,-0.23145859,0.38489938,-0.25367704,0.30036458,0.20310558,0.12495468,-0.09439912,0.40852013,0.0705777,0.77503806,-0.007849147,-0.24570847,-0.39695215,0.28336775,0.21218853,-0.18790686,-0.16240981,-0.2167328,-0.18412836,-0.41681066,0.5203541,-0.031487525,-0.2972783,0.23431651,-0.051286813,0.104571044,0.567519,-0.059489056,-0.037485197,-0.15913509,-0.11950368,-0.28248814,0.053642858,-0.107940495,0.36441445,0.41928712,0.015992576,-0.09196654,-0.045382846,-0.24594255,0.34839115,0.0336782,0.40912804,0.24466719,0.18866281,-0.2740973,-0.19978328,0.25250453,0.5768519,0.062103868,-0.12945999,-0.29360434,-0.28574407,-0.38315263,-0.0074032843,-0.20303774,0.41419676,0.06727322,-0.0897102,0.43179384,-6.406506e-05,1.0238439,0.16247864,-0.36645913,0.18789184,0.44681087,-0.004226332,-0.21870889,-0.3877987,0.87451106,0.33892965,-0.1758727,-0.022097737,-0.3921446,-0.05560699,0.33541012,-0.2122035,-0.3638549,0.045903247,-0.71529096,-0.17189221,0.25118187,0.21423535,0.22478063,-0.08058824,0.008462508,0.4510335,0.04241531,0.2815331,-0.45504078,-0.22336411,0.40911487,0.4012799,-0.005266145,0.15714167,-0.35455287,0.32547605,-0.43808174,0.063882686,-0.1675244,0.1963477,-0.4464798,-0.34532967,0.26587796,0.22619112,0.49539974,-0.104796976,-0.382138,-0.24971318,0.44786,0.10100556,0.14858986,0.48164794,-0.28875193,-0.042100668,-0.054393813,0.3529614,0.89062786,-0.3239548,0.027879447,0.5473497,-0.22066064,-0.5003029,0.4136515,-0.3070616,0.34156188,0.014538705,-0.19715965,-0.6185393,0.24669844,0.05645923,0.057661917,0.1017315,-0.61581326,-0.08460379,0.2923527,-0.08749872,-0.29373398,-0.47925982,-0.015482977,0.5493984,-0.35277796,-0.45143282,0.21345524,0.17800517,-0.17811923,-0.5865176,-0.048293322,-0.42799103,0.14930119,-0.02691035,-0.4587845,-0.19471914,-0.16362451,-0.4308082,0.26517832,-0.084797055,-0.31445256,0.1319681,-0.20338076,-0.035860613,1.1151694,-0.35739723,0.3052142,-0.5112731,-0.4754497,-0.72019404,-0.249839,0.48484865,0.25705734,-0.18014045,-0.5589376,0.0051656864,-0.04352792,-0.1776856,-0.12698518,-0.43798876,0.4574122,0.08776284,0.35005483,-0.14754525,-0.7809749,0.2099812,0.20761992,-0.14405556,-0.62161094,0.43620014,0.07218022,0.7842862,0.06431954,0.11533982,0.15969527,-0.30428126,-0.16772467,-0.2047341,-0.12141351,-0.5358451,0.12019112 -459,0.46886176,-0.20655255,-0.50999033,-0.091684714,-0.6117102,0.2628128,-0.27889287,0.14959493,0.31676427,-0.102021545,0.0009845495,0.07542877,-0.2813149,0.10118657,-0.033966456,-0.76311255,0.017253434,0.17665136,-0.8920032,0.744076,-0.22363731,0.4140101,-0.04420373,0.31545222,0.3223034,0.30333897,-0.07330459,0.17331488,-0.07672019,-0.34821,-0.1779687,0.18228498,-0.8017271,0.35697597,-0.17195912,-0.40947077,-0.20928656,-0.47712898,-0.40577838,-0.85139036,0.37212974,-0.8813901,0.62935936,-0.07161838,-0.39397725,-0.10620861,0.23227058,0.27693313,-0.031708367,0.016603947,0.24329174,-0.31553406,-0.091291174,-0.262283,-0.19172777,-0.363216,-0.537453,-0.12543283,-0.46770066,-0.033845823,-0.21627282,0.28339833,-0.2535229,-0.056898817,-0.40039742,0.33827555,-0.35090846,0.401268,0.18362041,-0.17732322,-0.011755854,-0.50617224,-0.10181446,-0.22773688,0.25630015,0.1926043,-0.35899085,0.53880864,0.14298989,0.6441521,0.31087554,-0.34843552,-0.15738031,-0.13525237,0.05363472,0.38265058,-0.11683048,0.04954748,-0.42046145,-0.089656994,0.6351906,0.25064075,0.036209546,-0.33580002,0.057252493,-0.28727943,0.028154664,0.48050198,0.4894942,-0.18709736,-0.008874422,0.28924564,0.5340191,0.30396247,-0.34216374,0.22500226,-0.17352013,-0.26117414,-0.22058612,0.352058,-0.07028316,0.37794134,-0.08020733,-0.008578233,0.5954622,-0.098250926,-0.17038958,0.05121132,-0.03517825,0.10502272,-0.33224568,-0.18408865,0.26997474,-0.5671518,0.2018272,-0.29931185,0.5525721,0.16025999,-0.7326907,0.32136112,-0.61770296,0.22358626,0.04515131,0.65415835,1.0332575,0.66650796,0.08271735,0.921232,-0.22166233,0.16777661,-0.04476242,-0.044198558,-0.03138814,-0.13331935,0.14486621,-0.43219256,0.14739797,-0.3078986,-0.13846162,-0.032005645,0.29609054,-0.4280653,-0.24950144,-0.06652584,0.5531924,-0.29108217,0.10532327,1.0396514,0.8870115,1.0604074,0.12585822,1.1074481,0.28849345,-0.1441488,-0.3450408,-0.011246502,-0.55182517,0.10488926,0.19734108,0.13474168,0.4076566,0.10471556,0.0060066204,0.30267012,-0.47234344,-0.13394302,-0.022720568,0.16891298,-0.12038049,-0.006131809,-0.57119733,-0.35657632,0.33671027,0.059329856,0.06947389,0.3066061,-0.32580233,0.64689314,0.26740927,0.964986,-0.0241917,0.026475018,0.034223735,0.21351886,0.17475225,-0.3390891,-0.059296794,0.31995514,0.393807,-0.14405191,-0.554615,0.03080492,-0.29182273,-0.33386794,-0.17498414,-0.31902707,-0.27235204,-0.2288419,-0.42522424,-0.37654865,-0.029647658,-0.34382543,0.50793135,-2.3886003,-0.22078533,-0.1457524,0.22622968,-0.18250349,-0.21984738,-0.2313622,-0.49980488,0.21249992,0.20554551,0.32548457,-0.63742256,0.41478813,0.45416957,-0.5692861,0.07783819,-0.62225807,-0.015067632,0.12843308,0.37161618,-0.12410718,-0.09399946,-0.16310269,0.2332623,0.5950802,0.07391339,0.08105283,0.45221916,0.3982715,-0.17795531,0.29914337,0.08253026,0.57533634,-0.3870215,-0.20850152,0.61741877,-0.3889907,0.4340052,-0.023927048,0.05173829,0.5640541,-0.5469965,-0.5005992,-0.46264893,-0.26607218,1.1591502,-0.42969358,-0.67663187,0.0055969283,-0.18015185,-0.13755485,0.104336776,0.5220637,-0.12518571,0.011313468,-0.61198556,-0.19211906,-0.08848479,0.32130224,-0.289301,0.14334121,-0.39762446,0.76925296,-0.16406712,0.5200963,0.3027515,0.14335637,-0.18731563,-0.50638455,0.19042102,0.7232338,0.63467395,0.14935116,-0.2643792,-0.15592343,-0.19731995,-0.25731575,0.11218402,0.8499235,0.5055918,-0.1701633,0.09573589,0.44663867,-0.15683128,0.10172094,-0.24061377,-0.27924734,-0.29747775,0.084636696,0.57744277,0.5770315,0.11704992,0.34316203,-0.11108298,0.28906995,-0.043394007,-0.5903817,0.44161737,0.8114864,-0.31164923,-0.2756066,0.52915865,0.3985632,-0.33423448,0.45148587,-0.64990306,-0.25434038,0.56155676,0.058348946,-0.50515485,0.16338195,-0.25033906,0.19153607,-0.75722194,0.2695418,-0.3877699,-0.7213433,-0.5207279,-0.011708781,-2.3797355,0.21107852,-0.20523071,-0.050167456,-0.37669456,-0.3577396,0.29974544,-0.36548576,-0.698448,0.037028372,0.06115564,0.5467737,-0.13448334,0.09694365,-0.2700869,-0.29653558,-0.30878085,0.28260642,0.25704625,0.34804815,-0.39029068,-0.21492733,-0.044647567,-0.13189794,-0.38889682,-0.19838521,-0.76379144,-0.3953436,-0.09856067,-0.58361685,-0.20924537,0.6296425,-0.43084145,0.011640493,-0.37923068,-0.084923364,-0.00080077536,0.1292639,0.28939056,0.32184982,0.25271288,-0.13207254,-0.10916183,-0.18825254,0.16628619,0.04009492,0.17864084,0.23787948,-0.18701313,0.4070589,0.32545185,0.7779696,-0.08435931,0.7948605,0.22701585,-0.17854714,0.4801583,-0.21620616,-0.49816066,-0.797575,-0.14934686,-0.07448462,-0.48374826,-0.37420994,-0.122389644,-0.35150313,-0.99809265,0.4224238,0.22121009,0.34065726,-0.038872786,0.32491693,0.44156373,-0.108274266,0.082623154,-0.12349582,-0.3648678,-0.3679552,-0.47154787,-0.6003752,-0.5963631,-0.03933434,1.1611147,-0.14412841,0.10559121,0.32444012,-0.374062,0.25224802,0.19560789,0.14763528,0.116327584,0.5172022,0.10405861,-0.39845386,0.39345366,-0.09014063,-0.010471076,-0.4672583,0.24274948,0.82872957,-0.6158184,0.48640653,0.29636782,0.12203072,-0.32472527,-0.7794804,-0.06469601,0.023532568,-0.2793076,0.5694411,0.40213093,-0.4679209,0.4906779,0.112300634,0.07244401,-0.66817695,0.47080886,0.0064621232,-0.27165776,0.10076037,0.5386171,-0.17163955,-0.09752088,0.14096266,0.18777114,-0.30976984,0.3383814,0.2802763,-0.21120085,0.033425823,-0.00033577532,-0.38610232,-0.697481,0.17300484,-0.7048975,-0.3848189,0.17472482,-0.0324132,0.029775828,0.1289978,0.20848833,0.5554772,-0.17272994,0.16322048,-0.27968764,-0.30120388,0.45592597,0.5264445,0.35996258,-0.46585986,0.6922707,0.1968065,0.034620192,0.10238805,0.30961472,0.53652024,0.048733346,0.41578358,-0.028721306,-0.029897474,-0.0028775334,0.5609308,0.21152736,0.35667658,0.020320268,-0.13815114,0.16016775,0.16408563,0.42593062,-0.18302998,-0.34519294,-0.014172355,-0.037279606,0.08124477,0.50382566,0.20284235,0.30233282,-0.027127005,-0.014354702,0.14541754,0.017427877,-0.26564714,-1.5171356,0.2708916,0.36185396,0.8583473,0.38602275,0.15061918,-0.027115352,0.54867643,-0.4412812,-0.043909512,0.42532903,0.019211173,-0.22735694,0.4449415,-0.6188072,0.373653,-0.17138694,-0.027756238,0.33340287,0.19937128,0.49972457,0.82977647,-0.2511179,-0.021619149,-0.047222972,-0.29078287,0.13417923,-0.1502394,0.14651722,-0.38067457,-0.5426479,0.68652946,0.36158428,0.3767004,-0.4793347,0.060959864,-0.14769778,-0.1991888,0.16431232,-0.0046870485,-0.08592844,-0.22099844,-0.43464708,-0.23959842,0.531531,-0.34190017,-0.10393067,0.1471878,-0.29622534,0.13738012,0.0069154277,0.07875419,-0.08100857,-0.7727102,0.1909784,-0.41004676,-0.33747077,0.3090287,-0.35422623,0.0519716,0.29916286,-0.016226143,-0.27408963,0.28742123,0.05808003,0.74948597,0.009360317,-0.07346876,-0.0826694,0.34537196,0.26137242,-0.26547295,0.012563869,-0.13660105,0.26527187,-0.56638473,0.32828853,-0.24084266,-0.3646009,0.112566866,-0.16475895,-0.10539009,0.3488528,-0.2537709,-0.11356455,0.13595521,-0.031183109,-0.42852852,-0.16855729,-0.3009556,0.18222478,0.17783208,-0.12281355,-0.09406081,-0.0026154341,-0.14067496,0.3403713,0.13077456,0.27968284,0.46904147,-0.05163886,-0.5643316,0.20400469,0.111629665,0.3802846,0.07557195,0.0034927614,-0.18200406,-0.21687928,-0.428573,0.6985929,-0.26925817,0.29035395,-0.10869761,-0.36399475,0.87631863,0.048324183,1.1329077,0.078912295,-0.40133953,0.03791136,0.6001171,-0.18183152,-0.036069665,-0.29597202,0.8550624,0.49319845,-0.034981057,-0.10821947,-0.2668858,-0.07429378,0.2189621,-0.32142645,-0.17905147,-0.09291234,-0.5558029,-0.0631047,0.10000047,0.20913625,-0.013449809,0.0242698,-0.25397697,0.1870891,-0.02031244,0.3091895,-0.50908625,-0.15402761,0.37388927,-0.0132588595,-0.11322971,0.18043326,-0.34236974,0.30545002,-0.75670624,0.16898777,-0.549994,0.03619916,-0.017668117,-0.27839425,0.23426622,-0.13867745,0.19179466,-0.56730735,-0.25438517,-0.24773641,0.51444924,0.18554708,0.25213963,0.6965904,-0.26571554,-0.03332889,0.22389674,0.37216932,0.98581195,-0.1866884,0.015289582,0.07105173,-0.39739567,-0.61173224,0.13623753,-0.33071902,0.15511726,0.08759408,-0.40621263,-0.2066476,0.31487063,0.15686086,0.10170476,0.033833504,-0.90718293,-0.026283199,0.41097522,-0.14111045,-0.11240129,-0.39986727,0.2950786,0.67460984,-0.20021172,-0.4147123,0.073730625,0.2334401,-0.35467416,-0.556298,0.25788388,-0.32322478,0.29053324,-0.04363065,-0.4540713,0.009225331,0.33914444,-0.52570546,-0.017982394,0.3728578,-0.24446537,0.021237355,-0.13883716,-0.019124866,0.8925054,-0.14148128,0.09937978,-0.47174096,-0.57743305,-0.8579515,-0.28863662,-0.10361617,0.45181322,-0.016256426,-0.70379305,-0.2657325,-0.4473611,-0.04072075,0.11696419,-0.4850735,0.48334157,0.31855166,0.5635668,-0.17260002,-0.9423855,0.31134874,0.08200056,-0.25184587,-0.331975,0.4487201,-0.060235277,0.5681642,0.18386196,0.084279254,-0.018757083,-0.70564604,0.32878622,-0.28284025,-0.035857957,-0.72160625,0.06374255 -460,0.4364792,-0.28320318,-0.6573085,-0.10535417,-0.31381926,0.13893674,-0.04878521,0.54235286,0.40872964,-0.6052756,-0.17745769,-0.12233957,-0.107887186,0.25627595,-0.013775479,-0.5613577,0.01582095,0.32925606,-0.5635332,0.40885735,-0.28975204,0.36553597,0.18758155,0.1319413,0.1855094,0.18185139,0.04562934,0.06636509,0.12832084,-0.33442476,-0.02713567,0.13046688,-0.5484266,0.36394337,0.0008092125,-0.35408762,-0.21864985,-0.55981857,-0.14489305,-0.6607453,0.39184403,-0.6987433,0.61104685,0.059658904,-0.2163914,-0.016366443,0.04683569,0.2793084,-0.06916193,0.052158743,0.28453878,-0.06252993,-0.18489362,0.05319706,-0.13302954,-0.3940544,-0.62737834,-0.04308701,-0.24685502,-0.2455401,-0.058566403,0.21799685,-0.25290063,0.10913101,-0.29415628,0.7709603,-0.28075758,-0.05454651,0.36531988,-0.23526816,0.15292247,-0.60898083,-0.025020929,-0.020852635,0.096791714,-0.16682255,-0.26565686,-0.015242338,0.26790997,0.64680886,0.108133115,-0.16374378,-0.15966074,0.015526245,-0.016394496,0.512379,-0.1856817,-0.32682022,-0.12693627,0.038487013,0.042180847,-0.0040249303,0.30680847,-0.4206089,-0.056638747,-0.18866324,-0.09372034,0.2988146,0.47417286,-0.17846388,-0.12529723,0.21488841,0.5945482,0.061337557,0.04340918,0.3480985,0.16079088,-0.41960564,-0.2730638,0.002812316,-0.14198388,0.34502456,-0.25254652,0.24377584,0.4459324,0.024437621,-0.09102025,0.15482213,0.063888036,0.13846473,-0.2707182,-0.3126838,0.3064585,-0.50567144,0.07171177,-0.1507272,0.7555155,0.12587275,-0.6406945,0.33478844,-0.5048563,0.11888287,-0.052592278,0.45481098,0.76523274,0.33099103,0.027884245,0.7351964,-0.2969834,0.18731642,-0.23100407,-0.047398087,-0.0771208,-0.04853506,0.08650739,-0.4521846,-0.044429656,-0.105383776,-0.40000042,0.052417535,0.41561997,-0.7397695,-0.1505675,0.14065166,0.68169194,-0.28556362,-0.066896826,0.8503788,0.9751906,1.0356342,0.11580518,1.3066401,0.34167704,-0.24520187,0.05298415,-0.22838049,-0.782188,0.1201968,0.24049282,0.23769112,0.3348457,0.07757242,-0.033504788,0.4948846,-0.67991114,-0.0014426237,-0.26908526,0.38718143,-0.061836123,-0.13090606,-0.4393929,-0.15766917,0.0226018,0.24911453,0.036457013,0.23325318,-0.30577114,0.20547183,0.14315365,1.514967,-0.33949903,0.068861075,0.07924502,0.14724769,0.09140897,-0.44578174,-0.17187376,0.11349351,0.5389934,-0.08253647,-0.64599365,-0.038920864,0.046012823,-0.32107353,-0.2885389,-0.13388278,0.035928156,-0.24031526,-0.3690124,-0.37163427,-0.13004327,-0.5103845,0.4083147,-2.464685,-0.048988853,-0.09977574,0.426069,-0.18234622,-0.39729533,-0.097648025,-0.4230961,0.19201617,0.3321171,0.29178536,-0.6961109,0.48695865,0.41000152,-0.59669733,0.13153733,-0.6145351,-0.0024507642,-0.026936622,0.25472635,0.057977196,-0.034512743,-0.15007228,0.25657296,0.25636742,-0.063491635,0.1736178,0.50620747,0.22877438,0.09251172,0.34534872,0.14102088,0.5686385,-0.33357143,-0.23345144,0.39795136,-0.23065066,-0.052616376,-0.15634792,0.013982604,0.2755945,-0.5745558,-0.7097003,-0.8486962,-0.27961257,1.0565494,-0.17412,-0.2198761,0.37100253,-0.40585354,-0.33901075,-0.05474304,0.4930745,-0.13754027,-0.19949551,-0.88822293,-0.12968707,-0.09165504,0.291173,-0.0076797195,-0.16678004,-0.7403596,0.81567687,-0.36985204,0.55185264,0.47580776,0.2150299,-0.25089088,-0.4367545,-0.037699718,1.2483674,0.5243389,0.15650016,-0.19399911,0.020481825,-0.43016353,0.032264534,0.039888084,0.75896806,0.88017017,-0.064615846,0.10397004,0.29090452,0.13138653,0.10524436,-0.15087287,-0.45967278,-0.20810503,-0.001029737,0.6210606,0.31965607,-0.025340289,0.46606854,-0.20061083,0.2863585,-0.1520972,-0.51770633,0.26523194,0.70400137,-0.10556245,-0.3902923,0.7232155,0.30627105,-0.12904786,0.41432175,-0.56536406,-0.15153849,0.2784426,-0.17733581,-0.44718006,0.41695073,-0.30733636,0.32712916,-0.8745231,0.49933895,-0.21436654,-1.0696431,-0.50321865,-0.16868001,-2.6489818,0.26038638,-0.14022501,-0.13080768,0.116161376,-0.27313492,0.15056463,-0.49466422,-0.7525658,0.27327552,-0.038304333,0.6695669,-0.023324018,0.12368029,-0.001398156,-0.3486553,-0.26105532,0.25393793,-0.008965931,0.16485642,0.121575475,-0.35553977,0.011362463,0.031835195,-0.25038978,-0.047562826,-0.89990926,-0.61288947,-0.093212344,-0.62109107,-0.17007451,0.5372584,-0.20038353,0.14885317,-0.28997838,-0.012833379,-0.15141308,0.19772293,-0.074119374,0.15142232,0.04955925,-0.04794183,-0.117417805,-0.0151324915,0.08173216,0.06979519,0.25649205,0.26333988,-0.1932292,0.37969086,0.41725945,0.82467985,-0.02556748,0.8702875,0.64733803,-0.14439338,0.19498597,-0.08033681,-0.18320866,-0.43352386,-0.23943567,0.050748598,-0.5781078,-0.40204564,0.07319477,-0.27604857,-0.8309515,0.44274735,0.1429652,0.1294544,0.21887426,0.0983119,0.46599552,-0.033947732,-0.05917569,-0.21426575,-0.19763552,-0.3986304,-0.23814298,-0.59891844,-0.25196767,0.19601083,1.4007844,-0.2191691,0.32726693,0.22655535,-0.23892719,0.13502644,0.15910709,0.07407581,0.13082565,0.59207267,0.025468903,-0.524387,0.12795267,-0.1440928,-0.04420371,-0.57021457,0.18681721,0.6589916,-0.6395492,0.57311255,-0.0408162,0.031143665,-0.38493538,-0.45651722,-0.10563948,0.12208605,-0.39600214,0.4436321,0.35395467,-0.58552283,0.39336398,0.20791323,0.013102755,-0.868488,0.21933328,-0.050568655,-0.08336705,0.010130018,0.2453537,-0.0709881,0.0016175011,-0.09935909,0.1918058,-0.19584614,0.24232365,0.18712282,-0.11207622,-0.1276228,-0.49288306,-0.06015859,-0.646334,0.060972784,-0.6535053,-0.25792286,0.05744003,0.05592838,0.19041611,0.4020721,0.08115702,0.41786954,-0.28840685,0.114905775,-0.04057937,-0.49857497,0.45798466,0.29257363,0.15066338,-0.32598415,0.47132602,-0.039903518,-0.0048183077,-0.3137747,-0.11979184,0.5527948,-0.104899615,0.31312093,0.066964686,-0.21670975,0.4554362,1.0342246,-0.02147991,0.35529044,-0.1210148,-0.002213766,0.10582381,0.104021214,0.10656127,-0.033454318,-0.5830919,0.05335732,-0.004568994,0.14011472,0.24437083,0.2710162,0.44493625,-0.2232374,-0.4946603,-0.0018462291,0.09183354,-0.044448163,-1.3529624,0.29500234,-0.034611944,0.7779827,0.6010032,0.18251169,-0.011681658,0.39694735,-0.11464194,0.21898471,0.17523652,-0.17756367,-0.2969415,0.3045043,-0.5285018,0.31833813,-0.057254136,0.0070280028,0.0040906467,-0.15735815,0.44276738,0.8069343,-0.201478,-0.034420826,-0.19654842,-0.23264122,0.025358269,-0.44232643,0.017893642,-0.7958495,-0.41363403,0.70674473,0.5262403,0.4713414,-0.11122342,-0.027162677,0.12605216,-0.034409788,0.10123038,0.06627509,-0.01597456,0.03205923,-0.5766533,-0.24889039,0.49641132,0.011338155,0.07011578,0.030076772,-0.43689048,0.1611361,-0.064865,-0.13104951,-0.22160721,-0.7656819,-0.08922288,-0.44662693,-0.2698803,0.3235836,-0.049864154,0.021641115,0.24055521,-0.0010916753,-0.32680622,0.30012405,0.29445454,0.71116066,0.0022748485,0.019619694,-0.036212374,0.44205233,0.088510506,-0.20224567,-0.024348937,-0.19810693,0.3084897,-0.79958373,0.46297368,0.19055013,-0.45502877,0.5044729,-0.0125157125,0.14734179,0.50844914,-0.21232845,0.0072936863,0.21078722,-0.40942457,-0.14209338,-0.3657702,-0.22314928,0.17841716,0.05173437,0.018134668,-0.07618775,0.03245281,-0.14256789,0.3780481,0.35966143,0.38011226,0.48327425,-0.001629124,-0.54368687,0.013746222,0.088810004,0.35854593,-0.022912046,-0.14880766,-0.2009896,-0.37999114,-0.361413,0.14068906,-0.096311204,0.41094315,-0.07847607,-0.12905863,0.869694,0.34047946,1.2294756,-0.090617985,-0.36980036,-0.08607439,0.498415,-0.060455907,0.027160563,-0.35871974,0.90740347,0.5019723,-0.007997549,-0.16294347,-0.35839486,-0.03859714,0.29887256,-0.024635958,-0.1715727,-0.057014663,-0.6505948,-0.32710275,0.3463484,0.20610125,0.03700312,-0.015573124,0.34650055,0.32314357,-0.24993174,0.1451217,-0.5152365,0.14310415,0.19621278,0.18089183,0.1877339,0.014538598,-0.5159637,0.20276849,-0.76486593,0.20770524,0.003316154,0.07418049,-0.08371966,-0.19884598,0.09803331,0.11975237,0.2746686,-0.47808048,-0.2998513,-0.25750008,0.6886406,-0.058967095,0.10703059,0.63671607,-0.30314347,0.0330305,0.07672935,0.5843429,0.9409322,-0.04726109,0.12784809,0.37804404,-0.29186973,-0.531951,0.21620023,-0.06007744,-0.09030813,0.008455341,-0.2758262,-0.5432749,0.16962312,0.29612583,-0.11295568,0.29193845,-0.43202272,-0.20373894,0.32754767,-0.3283917,-0.15130603,-0.28549722,0.19210088,0.58021706,-0.3441815,-0.36265305,-0.02055952,0.31418702,-0.35754856,-0.5116718,-0.18939276,-0.23077208,0.23882596,0.079766735,-0.37022945,-0.2605497,-0.014745593,-0.31750807,-0.20734842,0.23898156,-0.30800918,0.025382385,-0.34394494,-0.11320681,0.79317635,-0.07573531,0.17736042,-0.55659705,-0.4508277,-0.7995963,-0.390064,0.2801828,0.1486492,-0.089648664,-0.71325725,-0.097241364,-0.22553886,0.0024414163,0.124027275,-0.1267906,0.5724724,0.24657303,0.3800477,-0.18067628,-0.9393156,0.2693694,0.17842811,-0.26105478,-0.46948192,0.49671292,0.3036822,0.7450569,0.06457729,-0.03366803,0.14636914,-0.63176024,0.2474007,-0.13064015,-0.039689824,-0.7250609,0.14084633 -461,0.5076115,-0.35023946,-0.20874335,-0.08229304,0.09557371,0.16416693,0.011757135,0.72024924,0.46122846,-0.26861927,-0.17783321,-0.28630152,0.119913965,0.4590187,-0.11800382,-0.55824304,-0.19279465,0.14419205,-0.35319927,0.4256667,-0.5039384,-0.06363558,0.10269079,0.6703341,0.092464514,0.22142096,0.11944198,0.036303148,-0.3497221,-0.3040609,-0.009432558,0.42589462,-0.5639356,0.06954347,-0.27672547,-0.4050384,-0.20964375,-0.6737455,-0.38764656,-0.81206137,0.2577017,-0.9798084,0.43956822,0.2780101,-0.31772435,0.41804254,0.11749806,0.10045877,-0.29477242,-0.22649874,0.10439932,-0.22915958,0.036643144,-0.32860807,-0.19134527,-0.15055352,-0.64619887,0.022162838,-0.20684749,-0.05996721,-0.25217515,0.04098052,-0.3212425,0.017279593,0.02720862,0.62043524,-0.32762086,-0.008336875,0.24539155,-0.22735806,0.41365355,-0.38432646,-0.28071377,-0.12011693,-0.033851657,-0.20627743,-0.414094,0.19275995,0.36375463,0.3654374,-0.2641796,-0.13347858,-0.4314401,0.1666701,0.0047032726,0.57253623,-0.423684,-0.853603,-0.19484685,-0.10991133,0.028529463,0.29057574,0.108873755,-0.115044214,0.0053501367,0.13427414,-0.26199207,0.5974648,0.47873643,-0.28117943,-0.24551457,0.1658466,0.3421787,0.17820027,-0.10927246,-0.35102403,0.16665114,-0.6200446,-0.101161644,0.06998389,-0.40584117,0.61008793,-0.18257241,0.25008893,0.70846796,-0.28323433,0.047242034,0.16291101,0.093401596,-0.1564784,-0.4908729,-0.289904,0.38614228,-0.30656248,0.19737186,-0.29214442,0.7630312,0.037629534,-0.7019349,0.34612465,-0.56488353,0.12844227,-0.18123268,0.4667567,0.70409006,0.34631062,0.6713232,0.50144905,-0.4276024,-0.11868434,-0.090694316,-0.25904053,0.18412094,-0.33483526,0.16548266,-0.52126783,-0.19263583,0.22498664,-0.11521218,0.35919487,0.33198768,-0.6516521,-0.08743116,0.30201957,0.89699274,-0.1967962,-0.17991723,0.79638976,1.1478599,0.97743535,-0.016088445,1.1114388,0.2551368,-0.14904626,0.35622957,-0.17465371,-0.6264403,0.3249699,0.3464364,-0.7242088,0.3083023,0.029231494,-0.097851425,0.3123915,-0.43878946,-0.10441578,-0.017363267,0.13839771,0.19133784,-0.055100147,-0.53665984,-0.41651866,-0.18029283,-0.029317927,0.12587704,0.32214835,-0.2482817,0.37574932,-0.10887775,1.3970383,0.10111956,0.07265256,0.077067286,0.49869397,0.08045553,0.015531888,-0.114638835,0.31182498,0.20350236,0.23376603,-0.43340674,0.29553804,-0.25461718,-0.35395572,-0.009797928,-0.38629466,-0.053574726,-0.04734185,-0.3483075,-0.12778634,-0.18430279,-0.27297565,0.44863108,-2.9671197,-0.14550471,0.023497896,0.2697291,-0.25492528,-0.3984477,-0.077980325,-0.5513916,0.36018705,0.36488923,0.59866387,-0.7552128,-0.012399441,0.2986872,-0.5645261,-0.25637132,-0.6634214,-0.06768036,-0.047968343,0.3014751,0.124899,-0.1069869,0.12896855,0.107110076,0.62915426,0.19074363,0.14691716,0.22610006,0.38101044,-0.15639624,0.379525,-0.28304294,0.38338575,-0.41466486,-0.2418777,0.31680194,-0.54011464,0.23419929,-0.18758616,0.071233645,0.5287668,-0.17017184,-1.0702381,-0.6623159,-0.28546393,1.1594071,-0.1862573,-0.43899423,-0.0026292964,-0.28648233,-0.24758376,-0.097078495,0.7641441,-0.19678959,-0.005671826,-0.83840084,0.031298283,-0.12950853,0.15557212,-0.0075695217,0.06944495,-0.28231013,0.5987759,0.06124039,0.28159073,0.21761371,0.042378172,-0.5081926,-0.5367811,0.07267791,0.9574425,0.23583554,0.25035843,-0.15180263,-0.13558723,-0.25611943,0.04560463,0.021997713,0.59520555,0.4799302,-0.035693992,0.12072747,0.28066424,-0.007417744,-0.04469557,-0.10068686,-0.22239529,-0.17860635,-0.046901718,0.73552316,0.8562927,-0.2518505,0.30431554,-0.14764614,0.37192476,-0.14083852,-0.29990116,0.54788357,0.92416835,-0.032793615,-0.18981284,0.70908827,0.58616185,-0.40508983,0.46907815,-0.57585007,-0.39731562,0.4749358,-0.20481537,-0.52976525,0.18042043,-0.19138798,0.12518184,-0.76886386,0.19916467,-0.15613557,-0.28312498,-0.61049813,-0.032386873,-3.633195,0.2389485,-0.2208067,-0.41020852,-0.20161204,0.046878137,0.19387488,-0.54702497,-0.5313295,0.06367877,0.07668433,0.67136025,-0.15256423,0.09238484,-0.30877638,-0.23391284,-0.209105,0.019245094,0.20737432,0.3695234,-0.0031351934,-0.4128154,-0.039980482,0.013470542,-0.43771237,0.1422903,-0.6548234,-0.52823377,-0.1518709,-0.52273184,-0.324594,0.7226098,-0.4217431,0.007964605,-0.19837722,0.01915033,-0.11581977,0.42066842,0.24455337,0.0976054,-0.10300157,-0.025370417,0.16171287,-0.1945343,0.44985607,0.09814735,0.33645752,0.5842609,-0.20321707,0.3053851,0.54231745,0.6440888,0.13329878,0.92775023,0.48760653,0.031707004,0.14707294,-0.26918328,-0.17639638,-0.5255218,-0.26425925,0.038147867,-0.37078837,-0.2247301,-0.05779476,-0.38327178,-0.8356157,0.5885583,-0.13624601,0.22076736,-0.024667041,0.41322204,0.66404843,-0.45705768,0.06981986,-0.02923057,-0.13575102,-0.54786414,-0.15205325,-0.58654493,-0.37845972,0.10511141,0.6492982,-0.124316745,0.14034532,0.105743416,-0.1261449,-0.23124439,0.1033644,-0.1317635,-0.0018567063,0.47255784,0.033678595,-0.6688251,0.49277675,-0.048901033,-0.2621861,-0.64322615,0.3776311,0.5890391,-0.72501355,0.6681539,0.50014913,0.07066608,-0.23512922,-0.49183524,-0.33752444,-0.15706551,-0.007902276,0.24571896,0.28994036,-0.74108547,0.37480393,0.3937556,-0.33288375,-0.68658644,0.4647568,0.06888375,-0.4782299,-0.27303788,0.3699336,0.1599311,0.078344695,0.039288677,0.237075,-0.5233324,0.1448778,0.112772815,0.07114404,0.44485474,-0.06257841,-0.008017031,-0.7658665,0.25012556,-0.55443215,-0.4112352,0.3695788,0.15732646,0.1663713,0.37180164,0.07482355,0.25413954,-0.11105988,0.0018881437,-0.117974326,-0.22691607,0.28930762,0.5338787,0.58517045,-0.39599445,0.6421189,0.14492749,0.014973694,0.13504928,-0.060719576,0.46125433,0.014636598,0.45368993,-0.024448026,-0.42716444,0.18983509,0.71628743,0.15992099,0.41891745,-0.071316116,0.15227121,0.3363509,0.03975585,0.33270475,-0.03511584,-0.6546641,0.07271713,-0.4714329,0.15710515,0.50348073,0.061427828,0.13434882,0.011827344,-0.38955268,0.105830885,0.28383175,0.10957618,-1.3834649,0.35486397,0.1696576,0.8429443,0.46255264,-0.105702765,0.009302857,0.7990186,-0.15163273,0.23514418,0.5058423,-0.06182359,-0.5492458,0.7664963,-0.7690014,0.4780064,-0.12408001,0.035817835,-0.21262704,-0.03395753,0.32798383,0.6464457,-0.22678342,-0.03877984,-0.044844475,-0.44263223,0.16626166,-0.585174,0.34283754,-0.6567784,-0.1688795,0.69495374,0.6345327,0.32446477,-0.21524908,-0.000627221,0.038328867,-0.040637437,0.16917898,-0.0042539346,0.15477432,-0.0034629554,-0.912497,-0.07452088,0.5742515,0.022977652,0.30829173,-0.06865802,-0.012127074,0.12798022,-0.15708642,-0.300906,-0.15823083,-0.66494197,-0.005616589,-0.39093435,-0.44985113,0.55443174,-0.21202415,0.21958518,0.24383493,0.11092372,-0.32479417,0.29855874,0.24615383,0.8493814,0.090408474,-0.29192272,-0.39227116,0.34146017,0.14568084,-0.11676364,-0.1809379,-0.2744006,-0.056413304,-0.27316907,0.48027992,-0.1263392,-0.42111957,-0.08263791,-0.01444709,0.20449814,0.55418724,-0.07999742,-0.21314669,-0.35928926,-0.3945645,-0.31444937,-0.043517567,-0.044838548,0.38873526,0.28568527,-0.1025807,-0.045265585,-0.173038,-0.3442735,0.46287486,-0.06509705,0.36195806,0.42755747,0.17745383,-0.17669591,-0.12559056,0.23379244,0.54210436,0.031334564,-0.34145418,-0.47988293,-0.34063652,-0.42480794,0.056049194,-0.117248416,0.4784934,0.10661921,-0.2589572,0.81408274,-0.23847164,0.9848926,0.09188735,-0.36612532,0.029301655,0.4054669,-0.080702394,-0.06965704,-0.43393335,0.8426525,0.43285716,-0.17331909,-0.06754381,-0.28329527,0.09197517,0.27048904,-0.17730762,-0.23113535,-0.014360002,-0.7819757,-0.16164091,0.1867075,0.37217912,0.33070382,-0.09745017,0.15446411,0.20949163,0.037875235,0.43523324,-0.3518414,-0.055457674,0.31304285,0.48904133,0.017737947,0.18632135,-0.29665187,0.31757423,-0.43674755,0.061103996,-0.5622941,0.061054014,-0.34332952,-0.47475827,0.31753948,0.100438975,0.4322872,-0.19025232,-0.39514083,-0.13478743,0.35606864,0.20427586,0.042378332,0.5209443,-0.2230134,-0.029883178,0.086310424,0.5244804,1.2234005,-0.32114193,0.08584443,0.18589792,-0.2714696,-0.7547604,0.6462665,-0.13285315,0.39251944,-0.009351871,-0.020700509,-0.557884,0.17513698,0.18060623,-0.011146829,0.08324787,-0.49233177,-0.1286399,0.27185777,-0.30851784,-0.27862713,-0.40115455,0.14335427,0.4562029,-0.17582592,-0.21037906,0.13881993,0.34152785,-0.12581268,-0.39807215,-0.076096684,-0.5309995,0.18204632,-0.024747519,-0.45378572,0.035683706,-0.10643177,-0.4703987,0.18096437,-0.06789133,-0.30245462,0.10861833,-0.2779856,-0.06502631,1.0392745,-0.13763766,0.20416659,-0.632753,-0.4400884,-0.81290936,-0.2740851,0.49678734,-0.12513155,0.0066733225,-0.49892223,-0.019225923,0.07528725,-0.23177561,-0.19348422,-0.47378168,0.42466688,0.1057319,0.48844197,0.009210722,-0.6489875,0.09733874,0.16250935,-0.039756734,-0.6937137,0.34257224,-0.01048533,0.9466844,0.06652854,0.10421844,0.445278,-0.4589326,-0.22403346,-0.21696176,-0.28849518,-0.5820862,0.22115445 -462,0.46679348,-0.258114,-0.48746365,-0.24510612,-0.4291197,0.002858327,-0.36941534,0.27715012,0.23146158,-0.24384299,-0.1565294,-0.22025508,0.15999897,0.32073843,-0.18362696,-0.47251987,-0.13212262,0.05021506,-0.7363552,0.29297888,-0.6637655,0.19486706,0.05113759,0.4211538,0.15650257,0.29264718,0.16881107,-0.0077053127,0.16607888,-0.20694557,0.01800211,0.011641667,-0.7409176,-0.08248993,-0.2354129,-0.47981304,-0.04364474,-0.67854893,-0.38269165,-0.74565065,0.31939715,-1.1682574,0.71237075,-0.021057116,-0.20077714,-0.25223178,0.38538373,0.5500469,-0.227272,0.19060375,0.28766006,-0.15008129,-0.017523352,-0.22611512,-0.09014472,-0.477277,-0.6681848,-0.124739096,-0.5834329,-0.44993654,-0.083679505,0.31391823,-0.22386377,0.186608,-0.13537578,0.17527606,-0.41009971,-0.055059772,0.43303674,-0.11378872,0.51183474,-0.6126381,-0.006608832,-0.094580255,0.4184659,-0.038512293,-0.2699695,0.2906877,0.31603777,0.4376602,0.11744217,-0.2516114,-0.24508773,-0.2289786,-0.060551602,0.5407471,-0.22776446,-0.2625646,-0.31979164,-0.04848818,0.6591215,0.6817798,0.037225418,-0.27043372,0.04451383,-0.0055819703,-0.3523501,0.675112,0.6311897,-0.3085512,-0.34194276,0.19282165,0.55800176,0.17535767,-0.3383971,0.26963308,0.11441447,-0.60249645,-0.15725987,0.10526668,-0.030717466,0.4327676,-0.1360218,0.22368163,0.77544373,-0.17547435,-0.010233361,-0.06363002,-0.14827277,-0.24144346,-0.26518032,-0.3364498,0.18284376,-0.6049453,0.040833957,-0.27971193,0.6416451,0.029097885,-0.7600281,0.43706682,-0.776415,0.20571741,-0.030977923,0.75276226,0.80641395,0.40128958,0.51817775,0.71071583,-0.23004836,0.1047685,-0.12003647,-0.24772035,0.19693345,-0.47439963,0.31651482,-0.44469076,0.094311684,-0.19578725,0.009257784,0.093450755,0.7066082,-0.5323626,-0.06998814,0.32983333,0.777812,-0.32568794,0.012037428,0.70232964,1.2049534,1.0645335,0.09928624,1.2635653,0.40010065,-0.3366585,0.16819102,-0.2956183,-0.6636209,0.14701013,0.31940874,-0.19760616,0.5057352,-0.09686418,-0.03621757,0.31320804,-0.5016379,0.04365585,0.17738718,0.15783852,0.24537775,-0.18215325,-0.5496732,-0.09828048,-0.0015590305,-0.08166616,0.2836912,0.1618367,-0.2667138,0.3377922,0.002825746,1.3485807,-0.14879341,0.06591575,0.16773184,0.5983654,0.22615913,-0.15374303,0.00946718,0.3949513,0.39879754,0.070384756,-0.614022,0.31429067,-0.17323014,-0.37391567,-0.30088285,-0.3875303,-0.31009457,-0.028898107,-0.4681767,-0.295279,-0.14389594,-0.17562184,0.39011952,-2.7252414,-0.48040932,-0.23068437,0.43663535,-0.21940711,-0.15586424,-0.055567943,-0.53484976,0.20279016,0.3956599,0.4787661,-0.764198,0.62003267,0.6651777,-0.5341467,-0.14885522,-0.855463,-0.050979033,-0.096013665,0.4107907,0.089922555,-0.24677493,-0.12528132,0.30247784,0.7422997,0.16809104,0.10423387,0.31698924,0.62630373,0.042204473,0.79584086,-0.18115054,0.44904324,-0.2604384,-0.16229905,0.32545218,-0.25212112,0.1627735,-0.17415515,0.07244346,0.58382607,-0.56789017,-0.9434869,-0.71469104,-0.34479952,0.82579815,-0.15735349,-0.5580492,0.17072669,-0.48122236,-0.1835714,0.032257564,0.76109815,-0.14731005,0.26449353,-0.86559135,-0.043166656,-0.21927682,0.19239953,0.066974,-0.05869478,-0.41143486,0.78502536,-0.19226602,0.56008065,0.2775566,0.23370042,-0.3191886,-0.40266228,0.17659679,0.74032474,0.39556745,0.02882257,-0.23370674,-0.2945639,-0.1547574,-0.26994607,-0.0021114533,0.48820436,0.78593457,-0.12080933,0.21524818,0.49653673,-0.17548603,0.040668026,-0.09723551,-0.17404468,-0.03525934,0.047157783,0.5654558,0.74054337,-0.23323932,0.45258194,-0.3016872,0.33797666,-0.16196664,-0.5022022,0.53102106,0.429838,-0.106530935,-0.10602821,0.6277424,0.58215505,-0.44019333,0.57838535,-0.8348971,-0.29265347,0.53440225,-0.0032482366,-0.54683995,0.2714548,-0.3681084,0.2130293,-0.9193607,0.3795168,-0.25935087,-0.3841987,-0.39043564,-0.2725199,-2.8420932,0.21870469,-0.15088403,-0.039913043,-0.3002767,-0.24988899,0.443351,-0.57854974,-0.7330604,0.0330557,0.100979015,0.62023616,0.06013892,0.14914267,-0.30901366,-0.14777778,-0.22276293,0.25125915,0.15130088,0.32635546,-0.10841559,-0.4130699,0.07787016,-0.12740925,-0.59469175,0.1903988,-0.6352999,-0.5856416,-0.017582532,-0.44629732,-0.36827946,0.6304289,-0.3770209,0.050642166,-0.33821696,0.044060245,-0.21880102,0.34022874,-0.054258034,0.15844356,0.11755002,0.026461324,0.0929555,-0.22187828,0.47667342,-0.097997196,0.274488,0.08351728,-0.07394115,0.20335284,0.44346985,0.6952779,-0.16577421,1.0255427,0.5397111,-0.08291234,0.13249364,-0.25640017,-0.21124306,-0.5630793,-0.26273766,0.0108809015,-0.4276548,-0.5871551,-0.0036435951,-0.2843621,-0.77488035,0.7146098,-0.14866835,0.3779864,0.065150216,0.32274547,0.35644802,-0.08631488,-0.0019067571,-0.0341768,-0.17817718,-0.5940577,-0.34596682,-0.6794665,-0.4869816,0.035850324,1.1122477,-0.11072091,0.13035771,0.10863897,-0.28379446,-0.047307637,0.1848351,0.08825148,0.2464042,0.4545113,-0.045919523,-0.6397813,0.21753357,-0.2194628,-0.26764244,-0.5813469,0.11752919,0.7849597,-0.75033367,0.51671296,0.44702148,0.14571558,-0.21877956,-0.5064706,-0.18989754,0.045521352,-0.38072425,0.5521194,0.1327429,-0.80912334,0.60151774,0.3264708,-0.42355797,-0.7029067,0.5133795,-0.12390112,-0.2371993,-0.109171286,0.24023518,0.24845555,0.005585817,-0.2961877,0.23487933,-0.40887308,0.32948363,0.13370673,-0.043570288,0.43904394,-0.04554713,-0.19411817,-0.7623532,-0.005679943,-0.60860103,-0.29504773,0.3083192,-0.0864937,0.108901575,0.37595522,0.05389462,0.38241023,-0.2409574,0.15408714,-0.07413705,-0.42354038,0.11482299,0.46078536,0.35882616,-0.39853165,0.6466989,0.10430848,-0.26781213,0.05308052,-0.0120094055,0.38710898,-0.10421408,0.39798468,-0.23328549,-0.19636084,0.34760967,0.8134555,0.20661889,0.46538243,0.24542218,0.052971635,0.40814787,0.015604924,0.112606175,-0.026743192,-0.5486286,0.0151478555,-0.21776502,0.23178442,0.52703744,0.2818812,0.3108197,0.0106478445,-0.19371334,0.034470204,0.17638241,-0.34236485,-1.3047105,0.27216122,0.23418294,0.8023576,0.35201243,-0.01352843,-0.0030189843,0.6247078,-0.23363484,0.032541282,0.53521526,0.27076122,-0.3843436,0.78900665,-0.5805365,0.46085307,-0.22762917,-0.0411548,-0.030261708,0.31336552,0.46006152,0.814996,-0.1969138,0.11855517,0.0899158,-0.09387442,0.060937352,-0.33990914,0.0351958,-0.44103116,-0.23918816,0.8804155,0.31160122,0.44053745,-0.110421166,-0.06270074,0.08149932,-0.09165946,0.21824461,-0.12237556,-0.27305892,-0.018381901,-0.6202122,-0.09722757,0.5297892,0.13929796,0.20793414,-0.086971484,-0.4215323,0.0045279837,-0.14589931,0.068033084,0.03145873,-0.6990531,-0.17747065,-0.26458415,-0.62091476,0.5418528,-0.23645419,0.046365783,0.23698662,-0.087687716,0.032657787,0.19294967,0.053129986,0.7983014,0.07974454,-0.24181181,-0.16758893,-0.03631313,0.38891765,-0.33675525,0.02097521,-0.37446138,0.13070534,-0.5907341,0.7385713,-0.17154656,-0.4938243,0.2960007,-0.2140527,-0.04234922,0.6628417,-0.19138001,-0.06304546,0.31403834,-0.2051174,-0.17848325,-0.0823546,-0.37288377,0.2767445,0.22074237,-0.09583517,-0.05468649,-0.3350048,-0.067731254,0.5611629,-0.037242945,0.5780391,0.4417178,0.10998507,-0.1996637,0.0201541,0.1762295,0.6106459,0.12774825,0.030549984,-0.35942045,-0.568943,-0.17109449,0.28464603,0.0386921,0.29022425,0.1659645,-0.2773938,1.0701611,0.045032863,1.1922319,0.13137084,-0.41920993,0.05535058,0.5092197,-0.016406314,0.042671144,-0.4996708,0.8885444,0.5480272,-0.15076326,-0.093501955,-0.4963015,-0.07316804,0.37369007,-0.38841832,-0.210581,-0.13853656,-0.65009874,-0.37601727,0.24312733,0.14277278,0.15717953,-0.06718306,0.31834057,-0.03152525,-0.10775777,0.46420938,-0.5907627,-0.16870292,0.2617486,0.33940008,-0.19332123,-0.005716012,-0.3704038,0.40674928,-0.5996202,0.08882027,-0.63355446,0.09119049,-0.124149635,-0.35504356,0.056968313,-0.0018295416,0.33268648,-0.20020407,-0.35653597,0.06848046,0.548382,0.08958989,0.16588427,0.62267864,-0.30848673,-0.0658132,-0.058573928,0.58896744,1.5626928,-0.5170836,0.106233396,0.23886405,-0.47655562,-0.6970561,0.49750185,-0.4486212,-0.017699186,0.02976859,-0.44973361,-0.4595012,0.23260736,0.14967932,-0.12292601,0.035516612,-0.4703827,-0.33491665,0.36857584,-0.32040212,-0.10324262,-0.17280081,0.40336066,0.65542847,-0.15867358,-0.30872184,-0.072882816,0.60226053,-0.3457284,-0.4321993,0.08603936,-0.16733606,0.38699389,0.06890031,-0.28969333,-0.13263069,0.074999385,-0.5729169,-0.015244434,0.29165265,-0.41436324,0.16913247,-0.33820608,-0.10239559,1.0272807,-0.21657851,-0.2890525,-0.6664221,-0.535418,-0.9303372,-0.42192188,0.059157424,0.3177365,0.008500645,-0.28354946,0.01505943,-0.063130155,-0.2390259,0.13160744,-0.5255438,0.36911073,0.09260217,0.6202849,-0.3674608,-0.8162812,0.09300881,0.12819329,-0.2714407,-0.71169,0.82437736,0.05229954,0.9114202,0.14731516,-0.045596227,-0.118491046,-0.43186203,0.11910303,-0.27072436,-0.27929166,-1.0536376,0.007841312 -463,0.2892776,-0.096222095,-0.55279756,-0.23315361,-0.3079243,0.10616893,-0.15809539,0.5833818,0.16556583,-0.45990136,-0.08805764,-0.09088994,0.07103196,0.24568154,-0.13811989,-0.33965573,0.03635318,0.057373386,-0.5094068,0.3099789,-0.44415075,0.19275245,-0.021100132,0.24967018,0.32063565,0.2431412,0.09113905,-0.06038402,0.051309366,-0.23575686,-0.23636106,0.20386097,-0.35464603,0.22159657,-0.14749739,-0.36332005,-0.0270652,-0.54669183,-0.29775408,-0.62796336,0.4148229,-0.71698475,0.49287483,0.016693665,-0.18896158,0.25658697,0.2123127,0.24720143,0.023163052,-0.1757767,0.134967,-0.014457262,-0.078282624,0.048613828,-0.21374084,-0.3021882,-0.46300867,0.05672822,-0.5738674,-0.21047424,-0.18755557,0.11112221,-0.20276625,-0.031414714,-0.21828414,0.5877641,-0.3594427,0.021862773,0.13150565,-0.036308166,0.21114543,-0.6073946,-0.15325688,0.040390767,0.314148,-0.28936937,-0.23288931,0.13426341,0.14875028,0.42394108,-0.16686608,-0.08475714,-0.15777174,-0.08504073,0.13643977,0.55682874,-0.14123307,-0.47011626,-0.04847483,0.032545228,0.24059772,0.1695845,0.18249324,-0.3023206,-0.1788635,-0.08579573,-0.24134597,0.53569853,0.5019285,-0.33504778,0.040184215,0.36346638,0.39989662,0.27624154,-0.13409323,0.026559133,-0.018916331,-0.5568772,-0.1727012,-0.030707065,-0.078447744,0.4788141,-0.08047155,0.4885812,0.32592127,-0.063686,0.051386926,0.18135525,-0.026361635,-0.042740382,-0.21265125,-0.08759463,0.11693846,-0.5120552,0.17228566,-0.106759325,0.67144907,0.08235052,-0.81164753,0.30913976,-0.51177734,-0.026202839,-0.1125671,0.45170873,0.715207,0.28320068,0.19022171,0.58140576,-0.31531614,-0.02005711,-0.23525074,-0.17841434,-0.13394994,-0.015422647,-0.0025772406,-0.6016257,-0.16234484,0.0013809571,0.099953964,-0.01565109,0.2506268,-0.62739944,-0.099873334,0.27929893,0.6230396,-0.25518972,-0.2019698,0.8907765,1.0241284,0.8371111,0.13424899,0.86055154,0.008566911,-0.1694089,0.11190396,-0.11421195,-0.5739769,0.1974521,0.3674968,0.38500708,0.060306434,-0.0033509685,0.08037892,0.3874276,-0.36930102,0.061622698,-0.124647304,0.22048649,0.10326894,-0.014119749,-0.2463936,-0.44189388,0.0315031,0.08804179,0.07368717,0.17274567,-0.32557064,0.28296474,0.0509244,1.4716479,-0.15704168,0.051972803,0.031155583,0.44243732,0.14094175,-0.36504143,-0.20114814,0.14704943,0.4147285,-0.077446334,-0.60574764,0.08166126,-0.10234356,-0.40340954,-0.08000005,-0.35837853,-0.22841658,-0.22403485,-0.4670655,-0.025124284,-0.116102256,-0.476983,0.46167162,-3.1838849,-0.14426436,-0.1471855,0.22824231,-0.19851127,-0.4129969,-0.11559437,-0.35492626,0.4303695,0.22952358,0.42449972,-0.48502403,0.46943277,0.2733727,-0.482299,-0.1277954,-0.643528,-0.13341437,0.08012405,0.15222144,0.03621691,0.10415631,0.07655688,0.21076201,0.39686936,-0.142233,0.23160638,0.18290994,0.37628874,0.13870548,0.51676095,-0.10117916,0.44614542,-0.24664041,-0.14339203,0.24154812,-0.24617492,0.17567436,-0.16391315,0.1527833,0.3757859,-0.49005178,-0.78489345,-0.57506835,-0.3023624,1.258031,-0.20482375,-0.46509174,0.33873212,-0.47480303,-0.24834178,-0.08306154,0.5892166,-0.026768832,-0.21437287,-0.6453718,0.12214956,-0.24797322,0.14091255,-0.14446418,-0.10661995,-0.45342892,0.46445772,-0.062064044,0.56666875,0.31259757,0.1985248,-0.32217664,-0.28001758,0.005920234,0.81816,0.4007549,0.06515745,-0.07565454,-0.09710695,-0.41562033,0.120034605,0.06527214,0.69278204,0.6476295,0.032880165,0.23326534,0.24496497,0.11781226,0.07331508,-0.16966741,-0.27833053,-0.1567382,0.109850414,0.60968745,0.26554906,0.07310362,0.58270085,-0.073388904,0.09746291,-0.3149096,-0.42555624,0.23203531,0.48468426,-0.15708624,-0.27936906,0.5322456,0.5903898,0.025101367,0.31539932,-0.5409615,-0.37629515,0.4814277,-0.21280836,-0.36564186,0.18393192,-0.27713817,0.15480086,-0.859352,0.21208562,-0.26901916,-0.8230843,-0.26901934,-0.030820774,-2.9286807,0.17606783,-0.07992076,-0.2520787,-0.07514573,-0.47380877,0.15373695,-0.28919396,-0.5414116,0.16463654,0.030445097,0.7830439,-0.033471912,-0.018557338,-0.12053038,-0.12819734,-0.2022093,0.11693446,-0.016608147,0.28346783,-0.15088527,-0.24578835,-0.12867738,-0.18681993,-0.4127094,0.06294605,-0.37624756,-0.36068624,-0.085353024,-0.36256278,-0.23982853,0.5928204,-0.28269878,0.010263354,-0.2773584,-0.0037057896,0.055315867,0.31734514,-0.05602663,0.23791926,-0.021870337,-0.041138988,-0.006431843,-0.21307865,0.13094975,0.09250614,0.22059004,0.29430377,0.105524436,0.35644725,0.45963037,0.6366416,-0.034969073,0.86508507,0.39660078,-0.034686718,0.28790432,-0.14091454,-0.22548905,-0.3772989,-0.15131006,0.1424316,-0.4115984,-0.42052138,-0.15325062,-0.19855087,-0.62166935,0.519336,0.13288385,0.14601746,-0.033749975,0.2903077,0.4324442,-0.14872469,0.019326594,-0.17059158,-0.067934,-0.57571083,-0.31731227,-0.59690964,-0.24791978,-0.025347453,1.0540819,-0.3097687,0.15953788,0.002706961,-0.08863215,0.1436217,0.13022141,0.07548188,0.2576589,0.29265544,-0.2610262,-0.6366721,0.30679318,-0.30630022,-0.09703641,-0.456253,0.098250166,0.58181405,-0.47288784,0.29127395,0.16879933,0.10471253,-0.3039717,-0.5543198,-0.08810357,-0.002564758,-0.2925008,0.28178126,0.23734856,-0.88193345,0.53924996,0.24314049,0.036563616,-0.78916895,0.5550103,0.06826406,-0.2272765,-0.15592974,0.28265423,0.14237908,-0.064895645,-0.25683495,0.1268763,-0.33268452,0.33502606,0.20751268,-0.04522947,0.13715726,-0.3211225,0.057278283,-0.47479242,-0.05475229,-0.5584674,-0.18060857,0.14486618,-0.035972767,0.31905064,0.3102171,-0.14525613,0.3231924,-0.3615969,0.12065454,-0.0018623793,-0.27674213,0.19499299,0.421373,0.35735723,-0.4470881,0.53849643,0.100110084,-0.05128732,-0.023525449,0.082927026,0.41111374,-0.08772767,0.2499291,-0.21475968,-0.318595,0.30373868,1.0132455,0.110549875,0.25417712,-0.13181065,0.089232296,0.11797619,-0.06334014,0.11232985,0.05416385,-0.48813704,-0.009011007,-0.23606294,0.12447519,0.463936,0.13088162,0.3093594,-0.025802324,-0.35635334,0.030901663,0.08225406,-0.105268,-1.1920661,0.4878598,0.10563194,0.853418,0.49677354,0.018198324,-0.035068743,0.50234514,-0.1644379,0.16190727,0.17582291,0.10618536,-0.3741188,0.46259066,-0.71655875,0.5722081,0.05024862,-0.053262945,0.016671915,-0.12601498,0.49118507,0.8735056,-0.14995503,0.12632617,0.16688673,-0.21648511,0.13728788,-0.3106394,-0.10377994,-0.79663473,-0.22460644,0.63540643,0.35691673,0.40225062,-0.017341137,-0.0029595448,0.20990625,-0.06586421,-0.0504729,0.07676982,0.16662869,-0.18828462,-0.6126023,-0.1531666,0.48530167,0.006151707,0.07566108,0.034226835,-0.3485916,0.19078746,-0.16003095,0.011334835,-0.09778093,-0.57316136,0.017457072,-0.33184153,-0.35292333,0.35732657,-0.30969298,0.21658982,0.20930058,0.082186386,-0.06253411,0.3374154,0.20726794,0.69593817,-0.10049888,-0.033084843,-0.30711433,0.16245845,0.16078523,-0.1317936,-0.37057912,-0.3250241,-0.002083329,-0.6284791,0.24517584,0.010699987,-0.23025315,0.2630326,0.0129082985,0.10138113,0.4821553,0.029480843,0.113538355,0.020995338,-0.24786064,-0.11437859,-0.12956683,-0.09036117,0.21892956,0.089924246,-0.070678,-0.12952209,-0.042029914,-0.0929458,0.15526533,0.024656834,0.41748527,0.20273909,0.10342341,-0.3750534,-0.0022332072,0.047526672,0.46838406,-0.06655211,-0.12685539,-0.28513476,-0.2059779,-0.22011478,0.22712845,-0.059833348,0.37191072,0.020088973,0.014348929,0.64393395,-0.03541014,0.96609867,0.0018875301,-0.33009848,0.062794924,0.33732063,-0.049096465,-0.13755377,-0.23185284,0.7379342,0.31821647,0.14739433,-0.048892114,-0.31537136,-0.017129358,0.23383142,-0.033433955,-0.2152591,-0.05019973,-0.46206248,-0.15469643,0.21564844,0.13015546,0.2574616,-0.11835175,0.09513699,0.29361373,-0.0627219,0.1967659,-0.5527456,0.032753084,0.3224285,0.2951998,-0.013642645,0.034948662,-0.4928088,0.24694315,-0.5639895,0.032006033,-0.19166708,0.21923491,-0.103984594,-0.1992032,0.17255051,-0.0056752446,0.37802717,-0.1848804,-0.28754777,-0.21804298,0.5631257,0.19886912,0.16742875,0.476394,-0.25931373,0.17819251,-0.02342652,0.46419704,0.7996686,-0.18042403,0.02474793,0.45794237,-0.24726953,-0.5503795,0.24469516,-0.3017723,0.14013794,0.17708398,-0.11990325,-0.25778946,0.27433878,0.41930988,0.109715134,-0.027080046,-0.6245809,-0.2085026,0.3223967,-0.101860136,-0.2430508,-0.43942058,0.045581486,0.4505989,-0.20156178,-0.10370108,0.09205376,0.35509712,-0.17435138,-0.4742017,0.111674055,-0.25604692,0.19296315,-0.06025354,-0.368111,-0.30036572,0.035637803,-0.35809153,0.15546788,0.08382566,-0.21164802,0.024645315,-0.14438732,0.028370012,0.9125281,-0.21196082,0.15800579,-0.4184696,-0.5261669,-0.5319342,-0.29676443,0.21089815,0.032573916,-0.049891934,-0.5406144,0.0024770086,-0.13011052,-0.1744456,-0.043859642,-0.19763573,0.4919713,0.10230397,0.24981183,-0.120362125,-0.8598023,0.3611945,0.027388124,-0.29320267,-0.29942855,0.46723062,0.112426385,0.6369941,0.07033397,-0.017317377,0.18444851,-0.3124763,0.049129937,-0.19596246,0.03292751,-0.63568056,0.25098258 -464,0.39893162,-0.27513134,-0.45944378,-0.033637475,-0.31174165,0.26648477,-0.224493,0.356489,0.21880385,-0.3677296,-0.18778022,-0.21917261,-0.015666299,0.2634962,-0.09231173,-0.4774355,-0.047826655,0.21653247,-0.5173281,0.4515332,-0.44078532,0.26600334,-0.063328214,0.412376,0.15309456,0.2570921,-0.008792253,-0.055902123,-0.05362066,-0.26638168,-0.2749125,0.2430659,-0.3473919,0.20338202,-0.1015409,-0.22325799,0.0652197,-0.422354,-0.40777,-0.68820816,0.22725011,-0.81209755,0.45772177,-0.04377501,-0.22556782,0.35324818,0.13568054,0.3632331,-0.16736025,-0.04956247,0.16705759,-0.18558596,-0.13328846,-0.1917452,-0.270501,-0.3576294,-0.44992113,0.09795694,-0.23023123,-0.16067824,-0.2355189,0.15160926,-0.2705509,0.018761834,-0.05412874,0.46874878,-0.30601978,0.27451274,0.31221452,-0.25124106,0.17435858,-0.49771416,-0.1186413,-0.048015308,0.38550365,-0.08570119,-0.11730423,0.17389669,0.30146295,0.4209674,0.0010551374,-0.17523393,-0.2591251,-0.102130145,0.045324706,0.5942576,-0.14265624,-0.21648288,-0.13628465,0.114829145,0.05810138,0.21948798,0.14486483,-0.22331055,-0.2449949,-0.08368589,-0.2674711,0.254949,0.34777805,-0.33047402,-0.16487056,0.3526753,0.5571198,0.23977055,-0.08728221,-0.0048523825,0.0716531,-0.50284415,-0.10649813,-0.004790632,-0.15850039,0.37719557,-0.17662899,0.3691246,0.72300684,-0.045431886,-0.049658794,0.058448814,0.06803334,-0.26643065,-0.27382573,-0.04959711,0.23008355,-0.35425338,0.23677579,0.030770082,0.7963149,0.13846442,-0.51164335,0.3559539,-0.5712607,0.21987948,-0.10773623,0.4822587,0.53590864,0.30366567,0.37139353,0.6759819,-0.33707675,0.11717863,-0.1794326,-0.47165075,-0.0365356,-0.08367948,-0.06046052,-0.52629334,0.2065585,0.06907559,-0.04102192,0.1264525,0.2719045,-0.53060853,0.008700303,0.1396578,0.91147447,-0.18850726,-0.22712971,0.72831833,0.83475804,0.81854415,-0.00662694,1.0660021,0.17482957,-0.24149957,0.07873664,-0.19690758,-0.66232646,0.32864732,0.38586494,-0.20422669,0.38650098,0.19956166,-0.06644816,0.43603453,-0.18984611,-0.06167204,-0.14852484,-0.028109057,0.07856913,-0.037909616,-0.5198077,-0.27372512,-0.050104942,-0.089382716,0.24605672,0.22143345,-0.036076196,0.4230078,0.018669853,1.799132,-0.05780097,0.09997327,0.11988466,0.33573535,0.17625989,-0.05208937,-0.13261737,0.45580044,0.27893108,0.14215712,-0.46542466,0.15939544,-0.17809767,-0.3679531,-0.054945447,-0.26906845,-0.14674467,-0.011225927,-0.33044305,-0.14661138,-0.22202727,-0.2811415,0.44051018,-2.9048626,-0.114695095,-0.14808077,0.22074631,-0.36624253,-0.32018915,-0.0496231,-0.39814112,0.25225842,0.26704434,0.40527192,-0.61520976,0.36392567,0.35251692,-0.5718573,-0.15775792,-0.5717426,-0.0729386,0.018649915,0.32428256,0.049137402,-0.034372076,-0.13838957,0.13248776,0.39441517,-0.0038037659,0.11595071,0.3449112,0.5279821,0.09504504,0.59190166,0.025965648,0.56188065,-0.18313059,-0.2122495,0.3508387,-0.25417817,0.41484064,-0.072116375,0.0296793,0.48722488,-0.37714463,-0.73803,-0.57176113,-0.20356987,1.2802218,-0.3405231,-0.39932775,0.14847206,-0.3305619,-0.22720289,0.04911542,0.36255082,-0.010599622,-0.1707747,-0.76806366,0.060309667,-0.0564972,0.14581588,-0.006008125,-0.15665272,-0.37109908,0.6903752,-0.051935576,0.5137524,0.27937967,0.1252403,-0.08957222,-0.26003167,-0.016127653,0.7371719,0.27461308,0.12980086,-0.2579992,-0.2489021,-0.40590897,-0.09828579,0.017798722,0.5672098,0.48952636,0.01285923,0.12920184,0.3028025,0.0856834,-0.017013645,-0.13327073,-0.1601449,-0.03469352,-0.14009802,0.55043024,0.60079676,-0.09728865,0.41562927,-0.004469522,0.35397857,-0.2046654,-0.41727942,0.36247647,0.8591955,-0.23617058,-0.29616565,0.5967297,0.45168218,-0.2656794,0.3099942,-0.5671007,-0.25499952,0.5312514,-0.123385,-0.3985906,0.22719416,-0.25162137,0.08263216,-0.84370273,0.15135676,-0.037137613,-0.45539805,-0.48404625,-0.05503636,-3.2090352,0.30708873,-0.23538037,-0.16736175,-0.13031547,-0.09521333,0.09416116,-0.5377744,-0.51578724,0.16059269,0.060392603,0.64026713,-0.15504518,0.18217164,-0.2527408,-0.23603755,-0.20915255,0.054963693,0.050098095,0.39482927,-0.16155007,-0.40006378,-0.040258866,-0.08711263,-0.2034186,0.05908637,-0.69939816,-0.47384608,-0.07847778,-0.59376115,-0.14721926,0.5510239,-0.28366405,0.04086101,-0.35878527,0.08169736,-0.23140584,0.18566613,0.05924351,0.0628555,0.01735398,-0.12132611,-0.03577683,-0.3254023,0.4026366,0.055012453,0.22655062,0.29084238,-0.10110746,0.1583989,0.36701238,0.6141685,-0.19294651,0.8114223,0.24473481,-0.108378075,0.2366868,-0.17659302,-0.2640036,-0.46747112,-0.2339651,0.0289984,-0.40519634,-0.5026208,-0.12572983,-0.3801171,-0.76402867,0.6103604,0.117247604,0.14931637,-0.06878074,0.28094947,0.6695011,-0.28130147,-0.0140015045,0.055956457,-0.16695718,-0.6156227,-0.25512788,-0.45694366,-0.29306838,0.19684696,0.8300785,-0.2801218,0.22451775,0.09034217,-0.38190684,-0.13054398,0.13537754,0.07461043,0.23391794,0.54984784,-0.1619323,-0.60564154,0.46174648,-0.24171187,-0.20488653,-0.50666124,0.17323564,0.5820857,-0.52922153,0.59021324,0.33588943,0.15899648,-0.04839502,-0.35985374,-0.18324202,-0.034226045,-0.24212125,0.33989725,0.29207394,-0.62531906,0.4116582,0.30437702,-0.07651488,-0.6494156,0.48401892,-0.08080585,-0.26448333,0.047655176,0.36993924,0.091836944,0.03672589,-0.10922213,0.06900466,-0.35913655,0.22178431,0.13003689,-0.096956864,0.16240555,-0.1367619,-0.0970874,-0.7089643,-0.04980938,-0.39079005,-0.3133087,0.1969718,0.058527194,0.06956775,0.14922647,0.09333031,0.32499954,-0.34554005,0.05793226,-0.09470393,-0.11205448,0.2883033,0.38767383,0.4385476,-0.4968958,0.59612614,0.09129074,-0.05996274,-0.031376578,0.01465379,0.40363452,0.01602726,0.42093906,-0.06018173,-0.21803604,0.25312933,0.7583265,0.101977155,0.42397854,0.019528484,-0.10915195,0.13003162,0.04310181,0.19717026,-0.09299179,-0.657623,0.06692357,-0.31019884,0.15070547,0.4350446,0.23953056,0.22007415,0.026894707,-0.39289463,0.033966172,0.055071868,0.009214874,-1.1022936,0.23403695,0.30982897,0.78558296,0.22168787,0.04225823,0.06260369,0.72273606,-0.23424512,0.057163604,0.34929028,-0.056265958,-0.45841452,0.45411018,-0.67973113,0.3916281,-0.090275005,-0.105162166,0.047478918,-0.07759573,0.36992353,0.76011974,-0.2517627,-0.063261345,-0.047101703,-0.29026002,0.03946118,-0.34358725,-0.01769081,-0.53949946,-0.30555883,0.5031242,0.6251201,0.41828716,-0.3122365,0.08994175,0.1255159,-0.05968712,0.06841978,0.1687198,0.042720035,-0.048429232,-0.698019,-0.030292857,0.4844853,0.05638198,0.16091548,-0.06465828,-0.24664369,0.3319135,-0.20422623,0.044570826,-0.1448844,-0.58275586,-0.06316691,-0.2785248,-0.5959435,0.27302346,0.010974821,0.24294277,0.2041748,-0.036586415,-0.18411733,0.4450825,-0.03411734,0.91232115,0.16219282,-0.15009643,-0.4391629,0.14359075,0.06881847,-0.14392696,-0.20295925,-0.37342948,0.07828246,-0.49417406,0.41015598,-0.00035152436,-0.44509727,-0.020900821,-0.10173389,-0.029982623,0.47202882,-0.09233283,-0.0775934,-0.07992127,-0.08524019,-0.31726468,-0.12874936,-0.119358525,0.24641673,0.17717521,-0.114004225,-0.17716551,0.02581381,-0.21816446,0.23543282,0.021883544,0.28908473,0.37721482,-0.028215058,-0.21923088,-0.11608362,0.09406569,0.5070717,-0.1546141,-0.19708855,-0.13187961,-0.44535434,-0.3014229,0.38252315,0.059480906,0.43438992,0.11873278,-0.08081896,0.65931576,-0.050016057,0.98457664,0.004440093,-0.29194355,0.057613246,0.44175225,0.0059262295,-0.062467977,-0.37255624,0.78833014,0.38859072,-0.026158221,-0.117158055,-0.4122087,-0.028936421,0.17094453,-0.13716987,0.06590886,-0.0012632052,-0.54495996,-0.3028504,0.22191606,0.1398873,0.31142533,-0.10148773,0.059711024,0.25849804,-0.05350331,0.377543,-0.36319768,-0.35844183,0.2126334,0.17757,-0.09338929,0.046696,-0.4691342,0.49632883,-0.5018467,0.11532046,-0.38710606,0.1572878,-0.26165643,-0.14244431,0.23678038,-0.14933348,0.43886903,-0.50001985,-0.2716451,-0.2880069,0.3627557,0.20421878,0.05490222,0.4884616,-0.30744162,-0.021608679,0.20551856,0.55646193,0.7610827,-0.18325427,0.17084439,0.4101085,-0.24469115,-0.44920558,0.31044826,-0.3394708,0.15677755,0.07482872,-0.17599398,-0.41126797,0.3702116,0.2308498,0.20239243,0.03328601,-0.5778696,-0.036837403,0.36554432,-0.24240042,-0.2126797,-0.2144662,0.0370155,0.5094787,-0.1490786,-0.43032658,0.050224468,0.06307737,-0.12970187,-0.45565835,-0.02391095,-0.2903218,0.3290081,0.02243137,-0.29006794,-0.18963,-0.0950929,-0.3865117,0.1462397,0.18085746,-0.33501577,0.09060943,-0.33784738,-0.09531889,0.8641667,-0.26351127,0.17074485,-0.5911338,-0.3106005,-0.6669511,-0.42356452,0.3000766,0.01137735,0.031152477,-0.42108622,-0.011915958,-0.16520678,-0.3302016,-0.050793275,-0.35648057,0.42547634,0.12137343,0.4616556,-0.07721111,-0.7750032,0.25263876,-0.027598495,-0.31900755,-0.5814077,0.463561,-0.12984724,0.66560155,0.049179256,0.07936774,0.30803075,-0.4521705,0.01691585,-0.24321891,-0.0626752,-0.80516076,-0.047899667 -465,0.43468145,-0.32778743,-0.6378153,-0.07537391,-0.22286658,0.0014487902,-0.24980967,0.5680304,0.19973443,-0.23412816,-0.12468111,-0.26197764,0.104857825,0.5576377,-0.20768309,-0.7494345,0.008806233,0.1365617,-0.602349,0.36861277,-0.5255426,0.4077092,-0.064956866,0.48495516,0.09715178,0.20840067,0.19165371,-0.03115061,-0.032823235,-0.17069846,-0.06626991,0.10086295,-0.47331032,-0.1718897,-0.00080262247,-0.49247012,0.16798961,-0.32860032,-0.40202776,-0.7886472,0.48319232,-0.8533456,0.5444115,0.16255331,-0.40104005,0.12620278,-0.06729282,0.29299927,-0.36570486,0.1278951,0.13260199,-0.043319363,0.1448191,-0.34695137,-0.34313694,-0.59892464,-0.52529025,-0.10800981,-0.64593387,-0.22161657,-0.27916446,0.10475788,-0.38011912,0.06217432,0.06277213,0.03803088,-0.5180028,-0.086959004,0.23042472,-0.1464588,0.35289,-0.59240466,-0.16862762,-0.16540973,0.07589836,-0.054151442,-0.07151825,0.33539864,0.28367326,0.5181174,-0.1383204,-0.13962246,-0.23565096,-0.06611648,-0.10396841,0.58276826,-0.22462924,-0.5435249,-0.20286275,-0.06958641,0.30187944,0.29261252,0.112519376,-0.11663694,0.021125654,0.16163714,-0.36667967,0.36916795,0.49694154,-0.4120945,-0.11798153,0.38705316,0.3537395,0.3179913,-0.09228077,-0.1295821,0.0625107,-0.5474675,-0.22993092,-0.016065026,-0.3187267,0.5943188,-0.1491173,0.32775566,0.75516814,-0.2769083,0.25443247,0.0070634335,0.08230103,-0.26642284,-0.12689157,-0.26341763,0.17338397,-0.4920163,0.12798254,-0.22968914,0.7305677,0.2422501,-0.48936835,0.40759793,-0.6144001,0.20949109,-0.13114482,0.50198066,0.6246523,0.4342718,0.27711114,0.63921916,-0.35001037,0.028343031,-0.06839686,-0.23467867,0.41900802,-0.11466536,-0.13484725,-0.43848673,-0.07384939,0.10581652,-0.08066111,0.20254247,0.7310481,-0.7000818,0.0190653,0.038066614,0.81773585,-0.33839583,0.12395424,0.4978304,1.1405934,0.95738226,-0.10435811,1.166765,0.30637783,-0.34402764,0.18427734,-0.16099165,-0.8910801,0.3255132,0.43821657,-0.57311064,0.5628775,0.029623033,-0.11393402,0.43854782,-0.22367871,-0.06320438,-0.17491882,0.17535351,-0.0110611515,-0.15673833,-0.40472892,-0.23292035,-0.17871487,0.053756464,0.040957004,0.35970864,-0.34646836,0.21079904,-0.12510242,1.6096225,-0.060927648,0.079478465,-0.014804646,0.64376837,0.2846066,0.014734118,0.08511704,0.46053943,0.34493637,0.20925796,-0.81195,0.15103602,-0.32432714,-0.47822514,-0.18323769,-0.34125766,-0.03703774,-0.121746026,-0.57029897,0.0727072,-0.019028932,-0.20243323,0.26956603,-2.2692046,-0.32648847,-0.21148781,0.435339,-0.25432223,-0.30387792,-0.108122796,-0.32036915,0.45107567,0.3448635,0.48474565,-0.72574204,0.3058966,0.59507173,-0.4627348,-0.06865216,-0.5621698,-0.1423498,-0.15511791,0.2845238,-0.027363976,-0.18755007,0.13160504,0.33141991,0.5663989,0.023659488,0.23025428,0.118510485,0.62327987,-0.098898135,0.4175036,-0.12764682,0.49132648,-0.27142295,-0.17767431,0.28261948,-0.4708527,0.27174905,-0.23965698,0.14332752,0.42916545,-0.46184158,-1.0332993,-0.5392585,-0.040673513,1.2490892,-0.40313712,-0.4558861,0.3466197,-0.19190198,-0.19361897,-0.08894268,0.6041493,-0.17794447,-0.103881665,-0.8383789,0.16489233,-0.1552632,0.12661622,0.092876665,0.11307057,-0.21113239,0.64597183,-0.015749725,0.3381028,0.14303547,0.21579534,-0.1749232,-0.50349617,0.05121843,0.7044843,0.50453264,0.13066101,-0.11927682,-0.16582388,-0.39923653,0.08998406,0.11958472,0.38447914,0.81905013,-0.0054069213,0.18987362,0.2646994,0.050803095,0.0024577181,-0.29792282,-0.36380133,0.11342412,0.06307279,0.5963059,0.7518668,-0.2163213,0.35757485,0.060107056,0.27433398,-0.27117658,-0.48493174,0.5374944,1.1014739,-0.22829014,-0.024173537,0.60574466,0.5743809,-0.52365375,0.5823479,-0.8677711,-0.44730827,0.5071706,-0.13981093,-0.41277936,0.2520177,-0.29271165,0.117085494,-0.88158035,0.4052968,-0.1476142,-0.16358918,-0.52955943,-0.13329042,-3.837535,0.24645321,-0.34735635,-0.1507623,-0.14602792,-0.015776915,0.44834018,-0.86221343,-0.5805947,0.022199722,0.07169509,0.6678495,-0.0952257,0.07280054,-0.26572448,-0.44194445,-0.3434523,0.15565902,0.08627965,0.32777607,0.009513855,-0.56568843,-0.09377909,-0.18441482,-0.4966631,0.16960816,-0.6385654,-0.4770769,-0.19772714,-0.57492554,-0.22622709,0.73831797,-0.033591706,-0.031719875,-0.20536196,0.008323519,-0.1156345,0.24069785,0.22358716,-0.040516336,-0.076749586,-0.11804446,0.041198473,-0.33269867,0.19071741,0.062922634,0.30253816,0.18786968,-0.141952,0.015936106,0.7471269,0.66350365,-0.06524366,0.8670804,0.52813077,-0.1037642,0.26471445,-0.28832453,-0.31833476,-0.5163911,-0.41365895,-0.099099696,-0.3529618,-0.39060232,-0.18221445,-0.32233164,-0.75663805,0.5702872,0.06010686,0.38158128,-0.13352804,0.2829392,0.47674838,-0.09235714,-0.0928591,0.09329403,-0.16098152,-0.54107314,-0.119636066,-0.6624513,-0.3741612,0.46867982,0.8102947,-0.31446812,0.055401534,0.13385306,-0.11360752,0.115595184,-0.009673521,0.06486491,0.06779344,0.31446505,-0.0948151,-0.72686774,0.44875765,-0.075552665,-0.12939723,-0.72208714,-0.019126922,0.6934213,-0.7023893,0.3136761,0.44531405,0.16537993,0.03477857,-0.5419633,-0.0186238,0.24655561,-0.15507732,0.20395863,0.21164544,-0.7299984,0.34087434,0.36390457,-0.4410626,-0.4783372,0.7591321,0.004365807,-0.3577856,-0.17412753,0.41391388,0.22184277,0.13514672,-0.29428402,0.40873694,-0.57185614,0.26212138,0.29895863,-0.112461925,0.51526463,-0.013212125,-0.15267918,-0.8209025,0.22550605,-0.47366634,-0.3999587,0.26169524,0.036973383,0.11087588,0.2144966,0.17105883,0.3991252,-0.4430038,0.060322892,-0.071374156,-0.29101273,0.5168557,0.5464495,0.53157645,-0.32411674,0.74106294,0.055158705,-0.15457268,0.23820657,0.011373748,0.4326109,0.032844495,0.5213975,0.11744813,-0.2541832,0.38295457,0.8534271,0.103293516,0.34093884,0.16455893,-0.11150966,0.16676916,0.21280809,-0.04141204,-0.019778142,-0.4584596,-0.08299256,0.07142968,0.21280806,0.719248,0.1532297,0.29535303,-0.013991068,-0.39428496,0.19726408,0.28694776,-0.035986796,-1.334855,0.25851986,0.24334736,0.6642985,0.5016798,-0.0061913184,0.015834963,0.43824276,-0.12541576,5.0519902e-05,0.35788378,0.10078772,-0.6285989,0.7115574,-0.59648395,0.4082137,-0.1710322,0.04007521,-0.06478617,0.051377963,0.4333993,0.8129433,-0.07335081,-0.056339473,0.09332299,-0.39306298,0.002992183,-0.407168,-0.05659665,-0.5930199,-0.29213956,0.5034406,0.45451102,0.2635859,-0.20251285,-0.015140157,0.0021009545,-0.19811969,0.28268543,-0.06342112,0.043977547,-0.21623991,-0.7118148,-0.30787036,0.4636664,0.11828646,0.19066697,-0.10477164,-0.19970576,0.34882447,-0.28465092,0.07851851,0.11909708,-0.75541836,0.03410038,-0.56279,-0.60259455,0.35929433,-0.030630061,0.308725,0.20151426,0.031651437,-0.35701153,0.2917328,-0.07424768,0.88936776,-0.02161105,-0.32492957,-0.35389042,0.13559987,0.123230666,-0.2582234,-0.15526606,-0.29967955,0.096868984,-0.37268606,0.4704553,-0.12125028,-0.2091559,-0.089731865,-0.27810556,-0.033071984,0.4643226,-0.19702005,-0.3123853,-0.21902442,-0.13155837,-0.3380301,-0.33937135,-0.21878009,0.19002075,0.0751096,0.02704519,-0.16193524,-0.17362387,0.14148687,0.5735886,-0.0753211,0.30505848,0.5561245,0.30316907,-0.28853512,-0.26362953,0.26136085,0.5627782,-0.103973456,-0.04298061,-0.44789353,-0.6448752,-0.38976905,0.14935142,-0.32538182,0.47630307,0.215223,-0.3442336,0.8586676,0.097689055,1.1054982,-0.13796109,-0.34551477,0.04946643,0.7045744,0.009752795,-0.14722134,-0.42461395,1.0468912,0.5496555,-0.2517901,-0.3481935,-0.3371123,-0.29325712,0.3482984,-0.37957776,-0.20615955,-0.116542935,-0.7460905,-0.32858655,0.20272334,0.4512001,0.19021003,-0.04609414,0.25673983,0.21600562,0.20443778,0.25693157,-0.60154504,-0.3981553,0.34043404,0.23942153,-0.12412796,0.1311509,-0.40229404,0.43026295,-0.46142054,0.010997802,-0.42575562,0.19856791,-0.048993815,-0.514909,0.18897648,0.003361779,0.28450927,-0.30804113,-0.39385024,-0.19121878,0.4390413,0.13203983,0.21943177,0.5688741,-0.39610443,0.030927265,-0.10099503,0.71287966,1.1627444,-0.12244239,-0.11057352,0.45954534,-0.59248483,-0.87996656,0.34981743,-0.3354477,0.14416118,0.030238977,-0.34484783,-0.69608873,0.4083188,0.02335906,-0.062085103,0.13873766,-0.438761,-0.29695714,0.31199095,-0.30555347,-0.31476712,-0.4325179,0.20432086,0.6230083,-0.39270028,-0.18086445,0.090168215,0.444803,-0.16635828,-0.6073637,-0.12905051,-0.4495714,0.47878805,0.117934205,-0.3973503,0.1380776,-0.04589175,-0.48588145,0.15547948,0.26059085,-0.35628104,0.17642236,-0.3833324,-0.027417326,1.0398469,-0.19622523,-0.16527694,-0.6980717,-0.45744416,-0.7640919,-0.4159218,0.60224044,0.22531821,0.12004294,-0.678675,0.17501782,0.0061290674,-0.07401656,-0.15619296,-0.26748526,0.43631387,0.14550622,0.48798504,0.04705253,-0.66397625,0.15589847,0.10031108,-0.454891,-0.6642371,0.6472674,-0.30349913,0.8321271,0.16371413,0.09963576,0.23893769,-0.36027035,0.016467681,-0.27022693,-0.25439999,-0.7077131,0.19873774 -466,0.39498043,-0.1846466,-0.45923853,-0.048765987,-0.14194578,-0.25621954,-0.07456515,0.6306386,0.23242573,-0.3445705,-0.24152379,-0.19105506,0.04437296,0.4929615,-0.14326704,-0.65039915,-0.124863185,0.22396636,-0.47205043,0.63467216,-0.29675588,0.12653889,-0.05949043,0.52479464,0.15144731,0.13235414,0.19694877,-0.03475495,-0.021960616,0.06540939,-0.019790133,0.29414544,-0.5124518,0.12572,-0.110549115,-0.4476095,-0.12713324,-0.5577552,-0.42262658,-0.71396416,0.4257101,-0.7305996,0.5095436,0.19019906,-0.28204662,0.40148762,-0.115849115,0.2619875,-0.35138285,-0.17011636,0.033868033,-0.056694206,0.022683987,-0.31959477,-0.122723736,-0.13310438,-0.5984611,0.12477374,-0.34161362,-0.035141762,-0.32669127,0.13489772,-0.32293585,-0.115035415,-0.0031230499,0.47051588,-0.43773842,-0.107787974,0.1827846,-0.043037713,0.5250706,-0.55884856,-0.1472153,-0.20898652,0.18349324,-0.27816716,-0.21855848,0.40449348,0.13480304,0.45241866,-0.09973931,-0.15445496,-0.48638096,0.14539774,0.08214589,0.4710625,-0.23806633,-0.6764942,-0.031014303,0.10818762,0.061650634,0.21759538,0.20350654,-0.27205274,-0.11389816,-0.08951471,0.0071471133,0.426716,0.5365912,-0.1391356,-0.30552956,0.35558447,0.59854907,0.17648691,-0.05747639,-0.13052581,-0.010463144,-0.5674457,-0.22187693,-0.12179614,-0.24688238,0.64014125,-0.16304286,0.22148061,0.5544966,-0.11352697,-0.112430096,-0.034102768,-0.053670686,-0.018675208,-0.3512303,-0.3135691,0.45098162,-0.2359302,0.32910326,-0.11582901,0.6895118,0.23799467,-0.85873324,0.41358694,-0.5596879,0.21124025,-0.15920241,0.5728101,0.81413645,0.4470559,0.39100692,0.7352647,-0.44978634,0.12084105,0.0011402766,-0.46952057,0.07848633,-0.18906434,-0.14720415,-0.5407229,-0.14959306,0.036383193,-0.2686944,0.28311613,0.19319057,-0.5769201,-0.02908056,0.2213761,0.72896963,-0.27263775,-0.10002605,0.8134901,1.0975164,1.079846,0.021860063,0.9966143,0.1713868,-0.31935894,0.42895755,-0.43703112,-0.8524339,0.25845483,0.28617683,-0.31367728,0.30546036,0.09302575,0.03973156,0.39005423,-0.5555932,-0.03488308,-0.23339029,0.11957737,0.003278258,-0.23935981,-0.6231013,-0.19008346,-0.2511534,0.06399628,-0.0077764317,0.31302106,-0.1922629,0.42660832,-0.056663107,1.5396461,0.0038256745,0.09683678,0.043725315,0.5163861,0.21408796,-0.16081442,-0.20464808,0.32479212,0.31266996,0.124316074,-0.6252346,0.20838137,-0.15885915,-0.5373458,-0.06277185,-0.23859817,0.15485741,0.11202743,-0.31256,-0.15741819,-0.1530634,-0.33982202,0.46539295,-2.6925857,-0.18663247,0.057382483,0.37488472,-0.21610934,-0.30924854,-0.07699487,-0.5009017,0.5310425,0.3881999,0.5404802,-0.6870071,0.16474135,0.3275601,-0.5896196,-0.0649365,-0.59858155,-0.12359882,-0.050987486,0.36995038,0.018912008,0.06783143,0.28017202,0.21967228,0.4584471,-0.006420354,0.028275639,0.15401582,0.28266752,0.0024471283,0.25027663,-0.19725831,0.48987722,-0.33058056,-0.27945176,0.22434372,-0.21532829,0.16863938,-0.20696343,0.1434525,0.42661998,-0.43331861,-0.99289036,-0.5120856,-0.065751195,1.0456439,-0.110474795,-0.4136417,0.4139024,-0.34044215,-0.061683137,-0.16297852,0.48461214,-0.1116029,-0.21164648,-0.8309696,-0.048907865,-0.050464194,0.10994935,0.050046246,-0.13688916,-0.5233147,0.6125181,0.032633316,0.38099155,0.41536632,0.21544282,-0.27539012,-0.64042145,0.052416395,0.6563134,0.33302423,0.1542778,-0.2520872,-0.15632033,-0.28830048,-0.035245437,0.103936076,0.4346824,0.7631333,-0.11607329,0.044340704,0.34051895,0.05363814,0.081414595,-0.089763016,-0.24704766,-0.096317135,-0.11049963,0.6336004,0.9125492,-0.27678218,0.38316965,-0.091812246,0.3447611,-0.0654691,-0.32884148,0.6809843,1.2308904,-0.10923847,-0.19085068,0.61199605,0.41150025,-0.26936814,0.51568395,-0.57071024,-0.121716835,0.39358306,-0.18972683,-0.39216506,0.07699216,-0.28338555,0.17826729,-0.9864156,0.2009641,-0.23179038,-0.39535293,-0.82529974,0.0017228723,-3.3333256,0.15492627,-0.4745911,-0.26823676,-0.032958224,-0.17475446,0.09025067,-0.80898476,-0.57243526,0.25609842,0.16733404,0.6978747,-0.11882442,0.19359471,-0.20487015,-0.24775167,-0.2980012,0.061074555,0.26738653,0.3118092,0.19811754,-0.39510584,-0.04593696,-0.10486916,-0.4741961,0.046238143,-0.4804881,-0.30591905,-0.3184199,-0.6861925,-0.35560802,0.5441061,-0.2513503,0.06400014,-0.18152083,-0.106382035,0.01802564,0.3256715,0.07943214,0.28045708,0.12707542,0.025565654,0.15935378,-0.1891879,0.10740035,0.07706735,0.2733995,0.3279226,-0.27306178,0.21599068,0.64052004,0.8603063,-0.18568899,0.7309206,0.88907003,0.057028443,0.1580968,-0.34195653,-0.2606137,-0.6725807,-0.42005157,-0.052294344,-0.34568262,-0.69495463,-0.044130694,-0.4396303,-0.86581916,0.5905685,-0.110511065,0.36566505,0.1241061,0.09422789,0.5818946,-0.264726,-0.006078293,-0.042154253,-0.057972908,-0.5846706,-0.1742152,-0.5591596,-0.5797958,0.06944715,0.99216205,-0.13744037,-0.027709356,0.043070752,-0.1269703,0.03269147,0.16581191,-0.11440762,0.28132832,0.22182584,0.053517163,-0.6126373,0.5207824,0.21899967,-0.24386747,-0.6234016,0.2861567,0.46149072,-0.6200452,0.55305845,0.2343244,-0.12536815,-0.13974883,-0.6983094,-0.26401302,-0.009409882,-0.12794419,0.37931088,0.32584378,-0.78229064,0.4690121,0.48199877,-0.44369534,-0.8268588,0.45109963,0.035139408,-0.47128668,-0.05479008,0.122216485,-0.01956912,0.041728575,-0.36888623,0.32730582,-0.3581908,0.23036341,0.23633225,-0.008602497,0.26798937,-0.23803693,0.08562777,-0.89259404,0.28961632,-0.6260622,-0.1638547,0.30447838,0.2259513,0.09438595,0.04179198,0.21694076,0.3864732,-0.27946746,0.15827294,-0.06811127,-0.21657403,0.18038131,0.5078874,0.4225954,-0.49797478,0.51644963,-0.040159877,-0.17652436,-0.17669697,0.0011887898,0.47439042,0.00786445,0.32768974,0.040192783,-0.27733403,0.055407565,0.56857514,0.1765284,0.3386121,-0.040173445,0.035242874,0.3946497,0.11726737,0.35110986,0.00748088,-0.4414413,0.091558926,-0.22631784,0.1715643,0.46880743,0.16441129,0.32977495,-0.25162387,-0.43158078,0.0014184279,0.26486248,0.12206795,-1.3512353,0.4387599,0.29383263,0.804418,0.73842806,0.19965146,-0.045906752,0.70968604,-0.20933919,0.22486635,0.3382151,-0.0071049533,-0.69619054,0.51069105,-0.82364494,0.37297976,0.010632376,-0.12944268,0.05870758,-0.047849316,0.27875006,0.55717564,-0.21164858,0.097675584,-0.024623385,-0.15837018,0.100206316,-0.4074721,0.1282252,-0.7037615,-0.27047798,0.58771676,0.56830627,0.2550374,-0.18705185,0.02001839,0.15889832,-0.011065225,0.13999663,0.02064105,0.18382053,0.10555809,-0.60235643,-0.2362153,0.42641202,-0.040165823,0.13042311,-0.20729046,-0.19705468,0.094380535,-0.16272287,-0.38277373,-0.05835546,-0.7336922,0.074363485,-0.13465114,-0.18088089,0.6827233,-0.081338786,0.34304562,0.18225108,0.25680813,-0.36647078,0.2675622,0.022092521,0.8198983,0.12139321,-0.2153822,-0.28522506,0.28502956,0.20219582,-0.17021833,-0.039049152,-0.19392705,-0.08452516,-0.34678987,0.63318205,0.091319025,-0.22129607,-0.03234793,-0.05954552,0.06870352,0.624992,-0.14679138,-0.1671719,-0.12284794,-0.22739106,-0.32897407,-0.26396486,-0.13166448,0.32108662,0.26388392,0.046272904,-0.025240997,0.04951315,-0.06312236,0.6736052,0.047119632,0.37618995,0.21898745,0.121347345,-0.37221512,-0.27749744,0.16708319,0.3705939,0.045862336,-0.19384648,-0.2542024,-0.41936693,-0.36775216,-0.2318395,-0.09486374,0.4285945,0.07766176,-0.120034,0.527631,0.23464982,1.1619549,-0.030212333,-0.40320686,0.22319023,0.443656,0.012147297,-0.17295621,-0.31306514,0.948154,0.55720407,-0.16908377,-0.13861667,-0.15171246,0.017086783,0.18977256,-0.20440696,-0.19415247,0.053135555,-0.5816708,-0.28369698,0.28876892,0.2202369,0.29685256,-0.15866749,0.19637525,0.13315131,0.011360452,0.29425934,-0.24270584,-0.19158655,0.38856867,0.278308,0.10032063,0.12199665,-0.3295761,0.37411836,-0.3187071,0.03049565,-0.30900946,0.18367988,-0.22198947,-0.5519886,0.17435496,0.12313048,0.34312353,-0.060725633,-0.27967098,-0.26422378,0.4995595,0.14571242,0.13821702,0.56297797,-0.28103396,0.07650518,-0.10801635,0.30185822,1.0208479,-0.31288955,-0.11570728,0.2700191,-0.26503047,-0.69408154,0.456409,-0.12959006,0.15803866,-0.28915122,-0.12788415,-0.8098914,0.108927466,0.18161368,-0.021938095,-0.0013047172,-0.6271832,-0.27594283,0.18149066,-0.2993687,-0.19077568,-0.4253184,0.07733696,0.604233,-0.32551822,-0.41148105,0.20347631,0.07698164,-0.123678,-0.46160784,-0.10928873,-0.3642381,0.23025036,0.14726175,-0.5283381,-0.10611666,0.20302089,-0.3349729,0.113084435,0.036302228,-0.26801932,0.13454838,-0.41265082,-0.09265804,1.1038938,-0.3007794,0.22629388,-0.49778035,-0.46926853,-1.114575,-0.3240455,0.7242964,0.03583156,0.084474385,-0.80797696,0.11010436,0.011465128,-0.20150131,-0.15701781,-0.16466542,0.3007389,0.12968366,0.3065263,-0.08173359,-0.69131327,0.13388757,0.20965695,-0.03413689,-0.6362897,0.55495864,0.10343114,1.0766311,-0.025069088,0.15694602,0.3047211,-0.43022457,-0.058667164,-0.26001897,-0.3121992,-0.51847833,0.025583217 -467,0.5330191,-0.1667318,-0.5979684,-0.21661724,-0.31873578,0.1847531,-0.35157543,0.24135756,0.29157168,-0.16154051,-0.118956044,0.022826228,0.18211898,0.45495528,-0.12701829,-0.9416556,0.05478539,0.32023033,-0.5873104,0.57069606,-0.5189806,0.3081165,0.042499278,0.43890736,0.25148222,0.084100805,0.12671581,0.1676334,-0.083465986,0.062386017,-0.052630518,0.23900546,-0.56440693,0.13852407,-0.25714606,-0.4925379,-0.2707037,-0.4802126,-0.3406231,-0.89660424,0.3659552,-0.81505287,0.64076334,-0.18869124,-0.46702358,0.075103804,0.08309867,0.12680931,-0.22646295,-0.094251394,0.18992485,-0.23522094,-0.17030177,-0.17503121,-0.290785,-0.4058681,-0.5958201,0.025679203,-0.6895266,0.119196855,-0.13713269,0.13987735,-0.3385661,-0.013327869,-0.10916033,0.48509052,-0.32110897,0.08962561,0.28383118,-0.0950739,0.08112711,-0.41722077,-0.10262445,-0.10617894,0.36495638,0.08079965,-0.49980664,0.29923338,0.39927548,0.50163305,0.06778607,-0.44364443,-0.3715029,0.069530465,0.096547626,0.49398112,0.05101761,-0.38893107,-0.4836538,-0.011009506,0.3332341,0.08898958,0.045824032,-0.28104416,-0.08224607,0.050877668,-0.09012128,0.61609566,0.5140289,-0.24315913,-0.09807386,0.32651773,0.53889364,0.19663158,-0.31465262,0.095394,0.029827228,-0.6278275,-0.16264808,0.10563507,-0.07440402,0.63085526,-0.37564352,0.1530642,0.5700884,-0.1420683,-0.37685442,0.09291696,-0.005156449,-0.07915517,-0.23557453,-0.20555861,0.26810485,-0.5505105,-0.023003897,-0.20916994,0.6543546,0.2734217,-0.9180976,0.39887252,-0.49257892,0.3053176,0.04522913,0.63025033,1.1193212,0.44462886,0.34975663,0.9043481,-0.32072097,0.114062384,0.26825044,-0.44048056,0.050498135,-0.19412567,0.14496008,-0.5831021,0.04252961,-0.07051417,-0.23405112,0.15674771,0.7475868,-0.49850026,-0.123800874,-0.1026078,0.5922588,-0.37285396,-0.24854349,1.155596,1.0522152,1.1924458,0.09310765,1.3050703,0.44460732,-0.056056015,-0.09163545,-0.18914123,-0.69370365,0.24584839,0.10351692,-0.34525728,0.7776331,0.02032673,0.058569986,0.48850566,-0.3200376,-0.11050554,0.054222196,0.17947683,-0.077548705,-0.07096248,-0.51022214,-0.34365073,0.16162512,0.11502273,0.19209644,0.3374465,-0.22208823,0.7720833,0.103966355,1.2387229,0.13902943,-0.18703093,-0.16870871,0.37853232,0.41318497,-0.23474209,-0.26285234,0.33675876,0.42831537,-0.114244774,-0.56569254,-0.15096048,-0.35532758,-0.16538687,-0.1893989,-0.33982614,-0.09651508,-0.29884106,-0.3796887,-0.2262713,0.101205066,-0.41988117,0.4655302,-2.3690765,-0.5515973,-0.025084661,0.29448012,-0.04705145,-0.473073,-0.42834383,-0.6292137,0.3577493,0.2425939,0.4287708,-0.78517085,0.45136425,0.3500723,-0.6655427,-0.07627903,-0.7227332,-0.05354442,0.026352942,0.38610226,-0.032472108,-0.24658029,0.13580814,0.31289315,0.7065887,0.060676064,-0.012802647,0.45765516,0.6167108,-0.17701821,0.49257842,0.09911042,0.66507083,-0.18410088,-0.12393902,0.4396135,-0.35046366,0.3321612,-0.2645026,0.12258851,0.623478,-0.51108754,-0.84686595,-0.55176216,-0.016006645,1.2800217,-0.36925894,-0.48422793,0.020060828,-0.391355,-0.29050046,0.18295991,0.46826896,-0.048698187,0.03188449,-0.7405637,-0.21788533,0.1855615,0.06023676,-0.17839918,0.22696564,-0.32355312,0.6922129,-0.17950591,0.39593193,0.35403326,0.14745788,-0.21186724,-0.65531284,0.23293538,0.758701,0.26954132,0.07630899,-0.427749,-0.25052845,-0.35214335,-0.20463812,0.056917462,0.6315225,0.5910166,-0.11527895,0.05618828,0.42980137,0.0307614,0.14642325,-0.19221221,-0.30266908,-0.23444855,0.04947256,0.6615532,0.9798058,-0.2510038,0.5656871,-0.10848717,0.20513186,-0.0794975,-0.68924683,0.759028,1.0664815,-0.27242455,-0.35717988,0.3592486,0.14927197,-0.43355793,0.46017966,-0.39804888,-0.20650163,0.58868724,0.034187123,-0.2585444,0.29134035,-0.38001236,0.1264576,-0.8696385,0.24103239,-0.09447446,-0.582701,-0.6391342,-0.19633736,-3.8801448,0.14357014,0.022768319,0.031859428,-0.23497216,-0.29553345,0.2042661,-0.50808316,-0.7671798,0.048669994,-0.00653424,0.7056952,-0.3117195,0.0943627,-0.31060606,-0.45420012,-0.35507086,0.25134033,0.2712632,0.5105565,-0.0074871522,-0.37540603,0.080536745,-0.45896897,-0.59008604,-0.16322266,-0.75989485,-0.4909644,-0.12733427,-0.66200536,-0.28495792,0.7882622,-0.34639543,0.048239343,-0.32531086,0.04779189,0.05537392,0.34343284,-0.021041395,0.101729564,0.19006209,0.017877916,0.10529393,-0.08193477,0.22082332,0.007715766,0.21664225,0.4054515,-0.0944634,0.43367764,0.6389619,0.8726286,-0.15004556,1.0424182,0.35250887,-0.077623256,0.26869297,-0.20384811,-0.34467217,-0.6675028,-0.14499633,-0.23725213,-0.6755763,-0.43084636,-0.19248597,-0.45007125,-0.9804129,0.4485759,-0.0031151006,0.19879031,-0.10055732,0.4452822,0.511835,-0.17552508,0.17732306,-0.21976106,-0.38580346,-0.5527529,-0.39557832,-0.69031364,-0.6121529,0.08453585,0.84333813,-0.14281853,0.026894907,-0.053002425,-0.49867788,0.22118306,0.27583647,0.2226878,0.20848384,0.2958364,-0.15365975,-0.7124157,0.14585085,-0.253722,-0.1268501,-0.6206721,0.22762145,0.71896166,-0.47069654,0.5792284,0.41299608,0.17947435,-0.045531187,-0.58848953,-0.042626016,0.17019643,-0.14231773,0.72698075,0.35790667,-0.60233194,0.58027077,0.2204748,-0.13581927,-0.6171277,0.5704659,-0.00806966,0.007966944,-0.083045505,0.5022331,-0.036080923,-0.035101365,-0.18200563,0.1290781,-0.5600055,0.21921457,0.22408852,-0.029977152,0.2804773,0.057324264,-0.26405483,-0.7558343,-0.14574681,-0.6109322,-0.29110596,-0.040184226,0.12420894,0.27269605,-0.18710062,0.28254262,0.43300357,-0.31751826,0.05339023,-0.23290761,-0.2559578,0.31862,0.56127816,0.3198585,-0.47991082,0.687839,0.030767053,0.07700542,0.034779344,-0.08881031,0.39519194,0.26162767,0.43373445,0.27189702,0.026131127,-0.051584255,0.6444705,0.23589425,0.41749796,0.23139203,-0.27273256,0.10618604,0.08642864,0.43720534,-0.21380305,-0.20344631,0.047951933,-0.30753464,0.22346838,0.5427629,0.2099085,0.08816164,-0.123097196,-0.30663034,0.13235576,0.119602926,-0.062898815,-1.7911146,0.46382698,0.38976097,0.75287706,0.35957885,-0.046060685,0.0010597706,0.43549326,-0.39297867,0.10312695,0.54671717,0.048710447,-0.2944837,0.49158064,-0.7454896,0.49775696,-0.18913303,0.16221325,0.2171541,0.099503435,0.37986448,0.9279334,-0.15158577,0.09074599,-0.08242234,-0.120383516,0.15196338,-0.33405086,0.027688235,-0.4786769,-0.3191785,0.8149253,0.41157055,0.39042202,-0.43032566,0.04920571,0.04564147,-0.17439492,0.1333688,-0.0006919993,-0.011026795,-0.3229761,-0.65500915,-0.17547129,0.49503753,0.027817488,0.11415822,0.14848697,-0.21728878,0.2404627,-0.06509222,-0.011213005,-0.19140713,-0.9028273,-0.19765688,-0.31633767,-0.5627081,0.56782764,-0.38702223,0.25355902,0.27232778,0.022865878,-0.3455537,0.19468312,0.041420996,0.7091693,0.20754561,-0.09592422,-0.22344184,0.19278334,0.43546385,-0.35846907,-0.060100455,-0.30916032,0.26498583,-0.43827057,0.5251824,-0.1816306,-0.37167114,-0.13502665,-0.018787,0.008310063,0.41329965,-0.34044117,-0.10459956,0.028686536,0.06182479,-0.23982465,-0.160293,-0.30986282,0.26674542,0.14774469,-0.26389328,-0.018074155,0.031345267,-0.1336559,0.4357381,0.0040164376,0.27534673,0.461164,0.0040677446,-0.32616535,0.03682675,0.17411272,0.5409387,0.33095354,-0.33613792,-0.45187297,-0.20800985,-0.418576,0.35941258,-0.15816939,0.052963313,0.08676902,-0.25230595,0.68751776,0.1497835,1.353577,0.04190443,-0.3650991,0.13804662,0.5968947,0.12225338,-0.10777758,-0.23915373,0.9385548,0.46846333,-0.26851568,-0.05559483,-0.5011332,-0.09660586,0.30155304,-0.25347278,-0.21199211,-0.1516095,-0.69089764,-0.18697342,0.204772,0.10054896,0.16591416,-0.14875767,0.100975044,0.10012921,0.04064581,0.33367515,-0.5596051,-0.12300159,0.4332552,0.2500196,0.013446687,0.11812067,-0.33414772,0.39182827,-0.562736,0.08875382,-0.50397825,0.23190962,-0.12239998,-0.38404015,0.31091315,0.17680784,0.20563708,-0.30087137,-0.3147722,-0.4315836,0.5561442,0.15652843,0.08483742,0.50858647,-0.19046034,-0.20882286,0.45430037,0.47277185,1.2341012,-0.092440896,0.12396972,0.2916114,-0.2847471,-0.62933403,0.22398856,-0.5226856,0.34525946,-0.09369801,-0.26205948,-0.65338475,0.13202292,-0.013208575,0.19206135,0.12937471,-0.58249086,-0.28788158,0.33593076,-0.26222256,-0.05584254,-0.37733343,-0.005944844,0.57770854,-0.34350422,-0.47728953,-0.009096571,0.23910463,-0.26747552,-0.63146335,0.13581456,-0.3869265,0.43859452,0.04351254,-0.38524956,-0.033966567,0.21911065,-0.524518,0.2552654,0.43461823,-0.43204588,0.17553835,-0.19446182,-0.11715715,1.0965954,-0.38026524,0.42662236,-0.49315313,-0.593456,-0.96869105,-0.24104404,-0.010782204,0.12508836,-0.107077,-0.81482476,-0.089553766,-0.18560669,-0.14987575,0.14156635,-0.5591289,0.46610168,0.17239107,0.3607963,0.04907493,-1.030659,-0.013105606,0.13659994,-0.2752121,-0.54997593,0.60628045,-0.045944426,0.7191931,0.14083888,0.2778742,0.15999115,-0.5802719,0.31150988,-0.27138105,0.0047249966,-0.5742178,-0.06595205 -468,0.5694362,-0.045545444,-0.6567918,-0.16152166,-0.39166275,0.0018534542,-0.2025833,0.534766,0.03863627,-0.58068836,-0.20792815,-0.3717796,0.06981537,0.47408772,-0.3724737,-0.8340614,0.11061323,0.10622995,-0.39202365,0.50145584,-0.44730175,0.47078595,0.18634887,0.32501885,0.26200092,0.15653175,0.3311375,-0.13024692,-0.34398207,-0.1911309,-0.108324386,0.32078496,-0.72230214,0.1393197,-0.32934442,-0.5654846,0.07851417,-0.32270595,-0.29330513,-0.84005517,0.30694386,-0.91152483,0.51341325,-0.15923618,-0.23596317,0.14728983,0.2834655,0.40178096,-0.20904014,0.06443634,0.11716759,-0.16554922,-0.13095458,-0.008097989,-0.39184144,-0.55909073,-0.6347715,0.1329393,-0.5670653,-0.24730816,-0.19617723,0.24799798,-0.3398357,0.05089439,0.0935219,0.4527336,-0.49371782,-0.03655938,0.38852826,-0.13805647,0.4887022,-0.53734726,-0.1574557,-0.24303418,0.24079219,-0.3143063,-0.16126718,0.31307808,0.41961893,0.43285763,0.058459684,-0.33690426,-0.27176344,-0.21016781,0.18493634,0.494751,-0.18826623,-0.56379014,-0.20818153,-0.016517513,0.30653659,0.37329707,0.29713675,-0.3158129,-0.07903948,0.0325079,-0.26331785,0.4756122,0.52664477,-0.23032397,-0.1417218,0.22359155,0.45854428,0.22639732,-0.17914693,0.16905712,0.07562078,-0.7192885,-0.1778873,0.19281892,-0.121832736,0.697498,-0.22266191,0.25773308,0.9327785,-0.2724339,0.15420313,0.015427204,0.021237902,-0.18667905,-0.30387154,-0.13220374,0.26376787,-0.74570835,0.054934446,-0.26093423,0.8243821,0.23680855,-0.60221225,0.25497615,-0.62610155,0.15484299,-0.22279929,0.49917072,0.5152369,0.36380064,0.23158789,0.59554917,-0.5169226,0.094676815,-0.0061039287,-0.55615354,0.024587043,-0.2585487,-0.1709692,-0.26491964,0.050577387,-0.07545142,0.12366561,0.064256035,0.61806995,-0.5330256,-0.11496716,-0.14558731,0.9690666,-0.42834598,-0.16172476,0.8795845,0.81578314,1.1187946,0.013124556,1.5365936,0.36042482,-0.13002534,0.087107584,0.051697426,-0.750873,0.36151406,0.3703942,-0.71594584,0.39005703,-0.09079264,-0.027910419,0.38555342,-0.3546127,0.100117035,-0.32270682,0.22854996,0.06073568,-0.16054402,-0.4601846,-0.28247404,-0.0245358,0.057271685,0.038846295,0.2606992,0.08761713,0.5411055,-0.06802724,1.5880955,-0.08125904,0.13467526,0.099474095,0.415061,0.3249755,0.048425045,-0.08574625,0.11099127,0.29650113,0.28552723,-0.45852357,-0.1320109,-0.29333696,-0.6580312,-0.30955347,-0.33189562,-0.118848085,-0.18446025,-0.6329572,-0.063443676,-0.1789582,-0.13315052,0.40237454,-2.2036738,-0.26487154,-0.22669211,0.29827932,-0.30443236,-0.3790379,-0.25211227,-0.6146263,0.6847127,0.3280901,0.53863335,-0.6835512,0.28991327,0.5407935,-0.39009902,-0.14215222,-0.6779359,-0.19242784,-0.05570994,0.107545115,-0.12406877,-0.22959423,0.13553128,0.1530127,0.6526268,-0.09071956,0.1306795,0.10841612,0.38031873,-0.030167906,0.5533865,-0.023380661,0.4938306,-0.38116512,-0.14643027,0.4494171,-0.26113644,0.22982273,-0.1011976,0.13486129,0.40130553,-0.5657818,-0.90987647,-0.7154313,-0.47931245,0.96021706,-0.0851903,-0.36519533,0.22734267,-0.11186109,-0.07209642,0.0027656397,0.34960216,-0.061800797,0.29029667,-0.7543672,0.02354443,-0.051277813,-0.061154533,0.053558,0.1165133,-0.3637019,0.58580405,-0.098105565,0.21500629,0.5473404,0.30110174,-0.4090695,-0.6384815,-0.0034111936,1.1455867,0.47410074,0.21043733,-0.394033,-0.25384638,-0.6328111,-0.18580763,0.006926947,0.45213747,1.0388315,-0.12356716,0.21587181,0.2820144,0.1511597,0.1824902,-0.14172688,-0.39611655,-0.057936795,-0.07209533,0.5374087,0.5290193,-0.12880313,0.6246079,-0.1743706,0.4996091,-0.14563355,-0.5275067,0.5137852,1.0851667,-0.25813758,-0.33103976,0.5569635,0.5536142,-0.32755914,0.5742542,-0.5823851,-0.44722813,0.62234956,-0.15531859,-0.5955569,0.30225095,-0.31492862,0.064557865,-1.0704379,0.38066757,-0.37314954,-0.25716257,-0.49047655,-0.3308787,-3.4224653,0.20862335,-0.25060907,-0.024794834,-0.24585867,-0.18734269,0.23903729,-0.6177775,-0.7722081,0.10074129,-0.0906843,0.7663236,-0.0066243648,0.28899378,-0.26008508,-0.2656857,-0.20333356,0.21012473,0.1969313,0.15820608,-0.09857491,-0.57334936,-0.023481274,-0.33546653,-0.563549,0.10508467,-0.66605085,-0.71694237,-0.21032622,-0.60977185,-0.41091475,0.75702184,-0.45806524,0.021797976,0.011723267,-0.045442645,-0.042591907,0.3876433,0.17269984,0.20082276,0.08146052,0.033284757,-0.028113969,-0.27631226,0.25965393,0.14084278,0.33432138,0.19251941,-0.17234534,0.3617272,0.5884174,0.78149915,-0.14923705,0.82120425,0.28184345,-0.028897293,0.33643007,-0.33393392,-0.45530263,-0.6963509,-0.31716177,-0.08062904,-0.45691442,-0.5209208,0.051162466,-0.38278368,-0.8395326,0.8080013,0.05453224,0.17349972,-0.15566581,0.19670945,0.34018523,-0.15582912,-0.1887927,-0.039628897,-0.07984843,-0.5691029,-0.2493794,-0.8363539,-0.7310105,0.02135911,1.1448365,-0.15287393,-0.12880261,0.00047286352,-0.07172527,0.10442982,0.110671885,0.0020067215,-0.046139017,0.34964854,0.020575562,-0.7822373,0.6030692,-0.05616985,-0.28616545,-0.584144,-0.029994993,0.74244773,-0.79164207,0.5150002,0.5590571,-0.024475146,0.021805732,-0.6554764,-0.014583544,-0.030517658,-0.29271114,0.59870833,0.08644864,-0.64893526,0.45745564,0.52890515,-0.34850532,-0.7322605,0.628178,0.076029174,-0.10696439,0.0806115,0.3802415,0.12152807,0.0021896164,-0.2655089,0.23153356,-0.5780228,0.1678379,0.47986373,-0.04138851,0.59878933,-0.12956911,-0.22104102,-0.9099701,0.13185428,-0.36196476,-0.2062635,0.1542663,-0.14435396,-0.16171265,0.25299913,0.06997255,0.3978914,-0.33267644,0.14926572,-0.219002,-0.21294504,0.39335486,0.47041887,0.51469547,-0.5206653,0.73330265,-0.08476596,-0.16304734,0.035882663,0.16385338,0.5520488,0.1185403,0.38841802,0.11244586,-0.16676359,0.19792883,0.8489735,0.10552221,0.5963798,0.19092256,-0.15851332,0.06372576,0.19248514,0.13121895,0.19728324,-0.48614424,-0.16688581,-0.12501852,0.059115663,0.5892159,0.105067015,0.48116416,0.0059654335,-0.33459935,0.0009852102,0.080878004,0.07515598,-1.3566903,0.30285266,0.22764717,0.8920843,0.40222946,0.091073014,0.048583522,0.3775204,-0.19113146,0.18655281,0.39360335,-0.11856291,-0.50294566,0.6919609,-0.57635915,0.5024783,-0.1783759,0.0110368375,-0.0037930012,-0.05435969,0.6135474,0.89854866,0.010507288,0.1140223,0.05447936,-0.23004971,0.30336332,-0.6266911,-0.10918453,-0.29183453,-0.11162158,0.73773444,0.49698284,0.18333739,-0.17900151,-0.045455106,0.1434399,-0.13051495,0.2667118,-0.09862111,0.18023509,-0.17006269,-0.48324153,-0.4592799,0.6445926,0.112227425,0.2215218,-0.06930779,-0.2679171,0.33825633,-0.10253001,0.22151624,-0.09406375,-0.73859125,-0.10993918,-0.5388996,-0.51947576,0.40642068,-0.06620653,0.2266729,0.21116644,0.030445836,-0.5238965,0.34703663,0.0012410044,0.6720889,-0.2766537,-0.36506838,-0.34387502,0.24630737,0.29574403,-0.43736014,-0.08887484,-0.23353502,0.073640704,-0.54015976,0.48328,-0.039863057,-0.36647052,0.07674026,-0.117581606,-0.20248102,0.54289925,-0.21788451,-0.10414974,0.16442111,-0.029093647,-0.25249073,-0.15226151,-0.11789094,0.18268143,0.23407531,-0.08502472,-0.09266079,-0.025917102,0.014579328,0.4339548,-0.13475773,0.43891767,0.44292685,0.07244816,-0.59632,-0.15169027,0.22511454,0.5440343,0.020658651,-0.069149986,-0.32812515,-0.3908347,-0.18009663,0.1944123,-0.17861442,0.2687419,0.2702864,-0.3332638,0.9500536,0.1831935,1.3382818,0.16496107,-0.4837237,0.057945617,0.44196382,-0.007693823,-0.11990871,-0.40256557,1.0953541,0.48434475,-0.3166872,-0.24361286,-0.42650408,0.08375989,0.18295123,-0.2508431,-0.37046131,-0.13178165,-0.6161125,-0.38914502,0.26980764,0.30756366,0.06765128,-0.21959805,0.045868803,0.22361161,0.06671004,0.475627,-0.6937468,-0.1336626,0.2703088,0.4327648,-0.07898669,0.045054156,-0.38731676,0.4192975,-0.46221238,0.033195946,-0.35589954,0.21616293,-0.20653062,-0.47860065,0.22097236,0.015150745,0.31411144,-0.23792733,-0.3243026,-0.26388216,0.39152676,0.115569495,0.1841967,0.67150855,-0.33367026,0.063769914,-0.047513787,0.62710446,1.309365,-0.29785246,-0.042742293,0.4945941,-0.30562392,-0.5963565,0.34882644,-0.49564323,0.21501279,-0.10385745,-0.3882588,-0.59803975,0.17356734,0.21764903,-0.06481422,0.20525083,-0.52402794,-0.07124679,0.37868994,-0.32311156,-0.37154058,-0.4894406,0.12808558,0.6414986,-0.2765657,-0.19058684,0.1702247,0.24600692,-0.21476075,-0.52790517,-0.06553994,-0.109370895,0.42539462,0.15812577,-0.25552,0.05898606,0.058731247,-0.4665165,0.26971608,0.31672874,-0.27228454,0.14687923,-0.17677666,0.050093874,0.9403122,-0.14880241,0.010554866,-0.4226775,-0.53928924,-0.90770394,-0.35637558,0.6093209,0.35292488,0.14260936,-0.5655623,-0.029381497,-0.12859195,0.06150277,0.09396294,-0.23745887,0.36145183,0.09000961,0.5220073,-0.15203851,-0.7947434,0.0057942867,0.16839121,-0.3035725,-0.6018902,0.5762491,-0.20163898,0.8294765,0.12866051,0.03559098,0.48364004,-0.48182756,-0.10671293,-0.20616667,-0.13502903,-0.69442344,0.014549955 -469,0.3773507,-0.26607946,-0.5519564,-0.100700244,0.057584368,0.0068896506,-0.17786814,0.6888168,0.2798844,-0.3467474,-0.16974856,0.13790967,-0.08411369,0.3493107,-0.25829726,-0.4123363,-0.0009548412,0.19569801,-0.33169875,0.5792411,-0.27725393,0.13886186,-0.30581433,0.530786,0.18562943,0.45478284,-0.090969816,0.03696487,-0.24754082,-0.07170061,0.17891072,0.33411056,-0.4138795,0.32086897,-0.18783495,-0.110570125,-0.053223126,-0.35360795,-0.57946783,-0.802126,0.1428101,-0.8869103,0.58767056,-0.037537124,-0.41849777,0.391266,0.02265373,0.25970942,-0.3138645,-0.22012816,0.067727245,0.07137661,-0.15302542,-0.22237056,-0.192724,-0.5319063,-0.37748262,0.028709196,-0.40502226,-0.026652185,-0.21429381,0.11836258,-0.12109232,0.0005049522,-0.11639004,0.5990899,-0.4925561,-0.004744209,0.14417383,-0.14006463,0.16333342,-0.742705,-0.16989134,-0.14385055,0.18297723,0.030521406,-0.19389969,0.08936704,0.33329943,0.36603352,-0.08722716,-0.04390466,-0.2874096,0.0045756195,0.0602688,0.36097592,-0.18714274,-0.6552705,-0.08004579,0.042375036,0.32358444,-0.06976716,0.3040964,-0.16881584,-0.01617079,-0.0024612867,-0.21042424,0.46083274,0.50016636,-0.22257394,-0.10362502,0.257254,0.5785363,0.24511209,-0.1637282,-0.064351335,-0.06676232,-0.39700752,-0.1392686,-0.1263247,-0.21152171,0.6950575,-0.10043751,0.17203537,0.51935285,-0.11707355,-0.1059378,0.28939208,0.1063248,0.12609799,-0.4026329,-0.49401963,0.19500579,-0.31462464,-0.07166779,-0.19301875,0.37074238,0.13256362,-0.7853129,0.40736076,-0.25000608,0.0016934321,0.0015461708,0.45171526,0.5249304,0.48965538,0.259525,0.5250779,-0.29444692,-0.010015017,0.09007508,-0.22742048,0.054524317,-0.15618023,0.010360997,-0.5159372,0.09638306,0.0024739136,-0.33450046,0.12481002,0.34792474,-0.50671345,-0.15631682,0.15402032,0.81092274,-0.26304027,-0.02262982,0.712527,1.1979294,0.7926531,0.056832466,1.1581004,0.3138514,-0.017918114,0.18027137,-0.2619663,-0.6981513,0.22773398,0.3375561,-0.24018827,0.50628173,0.10818023,-0.07995416,0.3011061,-0.41120666,0.09130675,-0.24867564,0.2788048,0.17173547,-0.07008393,-0.5310981,-0.2831715,-0.070379026,0.10226449,0.15816173,0.2419224,-0.329226,0.20643218,0.17076111,1.3603234,-0.06783582,-0.107611746,-0.0038485527,0.6767104,0.23380612,-0.15978187,0.036012556,0.3551119,0.38173342,-0.05025529,-0.52656883,0.06434659,-0.14207175,-0.40082,-0.19485815,-0.31550518,0.04604051,0.03771512,-0.30545375,-0.2322488,-0.031036433,-0.26939905,0.3426846,-2.7390108,-0.18609282,-0.13521637,0.38869566,-0.13947545,-0.21226655,-0.08260775,-0.38459074,0.27402204,0.38972634,0.45055264,-0.49590856,0.40443105,0.5028271,-0.54503036,-0.12656495,-0.45195162,-0.120275706,-0.05174034,0.42400688,-0.057226602,0.07177866,0.0968746,0.2309694,0.5437782,0.09667058,0.14233087,0.4017841,0.20665462,0.0007559428,0.1626028,-0.027171195,0.5559725,-0.12587138,-0.20312871,0.22717908,-0.34140375,0.29319197,-0.09611389,0.19108406,0.3549971,-0.4537501,-0.8028771,-0.7195494,0.053469583,1.3524724,-0.15851113,-0.49248546,0.29707193,-0.60500187,-0.43554094,-0.050689835,0.33866495,-0.010883844,-0.029989246,-0.77757585,-0.069148585,-0.05818344,0.13082828,0.07233084,-0.054015376,-0.4443135,0.7900519,-0.041135646,0.3838121,0.20874459,0.14420745,-0.22403431,-0.5046533,0.06664815,0.88487244,0.47081602,-0.036405005,-0.16496482,-0.12789038,-0.4221823,0.016828729,0.12901717,0.6133592,0.6575748,0.021207752,0.008905358,0.15367739,-0.07532439,0.18926653,-0.19810821,-0.40964168,-0.21740717,0.22501208,0.58675057,0.5563449,-0.36104357,0.3736332,-0.28324816,0.3060951,-0.03759884,-0.36029917,0.5465762,0.76475817,-0.23735425,-0.30623367,0.64052683,0.58472323,-0.4524544,0.3958185,-0.616171,-0.15680496,0.28907043,-0.113312535,-0.36486107,0.40999413,-0.27323306,0.12766597,-0.8869593,0.4666128,-0.34241173,-0.5685309,-0.4343382,0.0065589,-2.9788208,0.23118779,-0.16827556,-0.32785827,-0.21180497,-0.15481465,0.3619835,-0.5926279,-0.62677866,0.25801146,0.026005553,0.58512574,-0.12488378,-0.045292452,-0.075136095,-0.3254873,-0.12286652,0.16362058,-0.026022749,0.29482773,-0.012389448,-0.4749553,-0.15690136,-0.07626024,-0.30056936,0.052718647,-0.7060379,-0.34488395,-0.11980624,-0.5346871,-0.039552845,0.5178009,-0.19721207,0.123527355,-0.27278298,0.10292062,-0.20766214,0.22175948,-0.101309486,0.18100078,0.117319025,-0.031634506,0.12660517,-0.19501029,0.2881932,0.07704825,0.42229638,0.13447055,-0.12242535,0.14745489,0.5568139,0.6924374,-0.16557987,0.9540631,0.54240006,-0.23551252,0.40153974,-0.23396836,-0.36500123,-0.5076244,-0.28073052,0.07292989,-0.35953337,-0.39625514,0.07320999,-0.40388057,-0.86373925,0.543943,-0.12965518,0.17299396,0.12283161,0.1617838,0.5003635,-0.11219794,0.16157103,-0.1498953,-0.21857627,-0.5483726,-0.20872802,-0.64600503,-0.3217462,0.08587499,0.95288235,-0.23397864,0.21592237,0.12384856,-0.2708144,0.1384072,0.028254487,0.06420973,0.1074605,0.43782407,-0.2425878,-0.61636347,0.18202637,-0.096099846,-0.16757832,-0.45821708,0.29877624,0.62218255,-0.6380594,0.7828162,0.33551362,-0.05612445,-0.3864951,-0.5485208,-0.320818,-0.13953139,-0.20528556,0.6043969,0.29573807,-0.8363275,0.3311427,0.41286257,-0.37145123,-0.6545534,0.54021615,-0.24777736,-0.061079565,-0.23819491,0.36036873,-0.09413024,0.095272556,-0.24049816,0.2508838,-0.21106951,0.054208342,0.16360757,-0.105530314,0.24999632,-0.17601545,0.01711607,-0.81077546,-0.08822027,-0.48321384,-0.16256054,0.26752302,0.11332527,0.17737092,-0.038519245,0.050216578,0.4420944,-0.4066548,0.13839039,0.008038231,-0.52034813,0.53828627,0.4762463,0.5971004,-0.320499,0.5470489,-0.013793198,-0.18632475,-0.14223923,0.012971174,0.37793362,0.025326777,0.35090902,0.1492756,-0.060021795,0.31755447,0.8190545,0.21044184,0.71216893,0.07178481,-0.039341513,0.29208997,0.04978574,0.18662585,-0.03784424,-0.50999683,-0.010869127,-0.1800805,0.25239477,0.3988783,0.15426911,0.34041166,-0.19686532,-0.3797936,-0.09917481,0.095729515,0.29917076,-1.1318634,0.4636757,0.17536995,0.74667513,0.3295152,0.16808571,-0.16413692,0.7868362,-0.04698314,0.09192102,0.36166975,-0.0021578257,-0.7509662,0.47229415,-0.64324516,0.31473425,0.02464062,0.028355662,0.18344013,-0.07686438,0.5048986,0.92335904,-0.10888261,0.011650656,-0.039304197,-0.24389139,0.11597155,-0.41678503,0.15591599,-0.49318138,-0.4178977,0.59321797,0.6068665,0.43386656,-0.2317447,0.027227027,0.13846129,-0.05970667,0.2691895,-0.018719474,0.002186218,-0.07929453,-0.79357624,-0.15619272,0.3138551,0.041662678,0.037196957,0.0018627369,-0.18289989,0.2711614,-0.014403064,-0.13347504,-0.015170019,-0.5838716,-0.02715135,-0.2037281,-0.43722403,0.48331207,-0.063209146,0.013387859,0.10392574,-0.036382865,-0.24578007,0.313173,-0.007113819,0.6012367,0.017976884,-0.104492314,-0.44197023,0.20712164,0.08099721,-0.13585535,0.09038444,-0.57348037,-0.0012246737,-0.6238809,0.3948701,-0.036771458,-0.33972442,-0.01672858,-0.13341188,0.16459091,0.40280426,-0.23844847,-0.19606437,-0.10875548,-0.15519343,-0.31745836,-0.42454866,-0.13104701,0.29944247,0.27098852,-0.10870095,-0.13174035,-0.102817565,0.08611875,0.4763417,0.030823244,0.4741593,0.48337027,0.19006136,-0.27075678,-0.114078075,0.20847185,0.5081584,0.13511862,-0.060266815,-0.4585403,-0.55902743,-0.31726155,0.14257543,-0.12321798,0.32333905,0.16544054,-0.1250659,0.7262839,0.06767725,1.2804809,-0.052489154,-0.3458338,0.11233489,0.591995,0.0133575015,-0.021367176,-0.34195393,0.9322994,0.4330257,-0.10738341,0.018435039,-0.62976485,-0.066618316,0.12789264,-0.26520127,-0.20427714,-0.120379046,-0.7433383,-0.2277708,0.14951293,0.38569605,0.15001503,0.08596937,0.35723412,0.089465655,0.066541225,0.2418311,-0.44159475,-0.10343965,0.3259726,0.20996127,0.008497806,-0.0275969,-0.45031342,0.28101286,-0.5128381,-0.017886817,-0.16865459,0.06506637,-0.1650757,-0.5050206,0.099769555,-0.015177882,0.40359205,-0.40050867,-0.46272993,-0.18041195,0.5470504,-0.045708224,-0.008026228,0.33692232,-0.23892544,-0.028979192,0.18130706,0.6234103,0.82093495,-0.12350594,0.074199274,0.20481242,-0.35548654,-0.79378384,0.22260642,-0.29911777,0.41611913,0.009380668,-0.21910451,-0.7350832,0.32840383,0.31473377,-0.17305122,-0.058987737,-0.50747514,-0.41623312,0.21313363,-0.3199511,-0.044071976,-0.28198257,-0.068007044,0.45747727,-0.3965731,-0.465202,0.0143621955,0.14843403,-0.26140815,-0.50596994,-0.062212475,-0.38302854,0.34741163,0.01272948,-0.39200354,-0.29976082,-0.038951874,-0.42440763,0.24138647,0.24751824,-0.38866836,0.03245666,-0.41042322,-0.0051730047,0.65195143,-0.2021653,0.14646903,-0.4180573,-0.48893908,-0.9129057,-0.4429485,0.2574474,0.1853412,-0.16713482,-0.71281326,0.1183226,-0.1700213,0.06412786,0.04593778,-0.21339384,0.47106442,0.024691941,0.5137346,-0.079554,-0.83963335,0.17270668,0.15398833,-0.102998465,-0.5281132,0.5224073,-0.071260676,0.998189,-0.0019232447,0.21836883,0.14695862,-0.5418681,-0.17630593,-0.22256985,-0.16465957,-0.53166807,0.20569783 -470,0.39165783,-0.28674686,-0.42994496,-0.17055002,-0.26839757,0.012411118,-0.17865655,0.45396894,0.18469885,-0.45540002,-0.10159512,-0.014693503,-0.125877,0.35409653,-0.1564561,-0.4204757,0.008173237,0.05151888,-0.5271197,0.5701556,-0.28926173,0.30257845,-0.10981006,0.28644097,0.060212724,0.37000424,0.1834662,-0.12918173,0.13980433,0.0448013,0.0008476743,0.041206364,-0.45552048,0.42823797,-0.17770377,-0.3786222,0.065545306,-0.3938684,-0.45727232,-0.6835645,0.31211382,-0.6066389,0.40506473,0.08813383,-0.22977032,0.022907188,0.3257389,0.40447375,-0.290758,-0.053445585,0.14935635,0.20013398,-0.11371365,0.05748946,0.013915961,-0.4635031,-0.62536055,-0.08839734,-0.4296189,-0.05676166,-0.34507325,0.20612074,-0.36346757,-0.09327539,0.09806083,0.45679426,-0.34954965,-0.014491077,0.22880663,-0.14065708,0.23985301,-0.6108808,-0.123439394,-0.17095631,0.45516062,-0.14815545,-0.13981815,0.23388818,0.09005387,0.41182297,-0.06378557,-0.112871446,-0.35235184,-0.053063784,-0.055437677,0.49248064,-0.13530022,-0.4105271,-0.017537566,0.009111469,0.047246553,0.113212794,0.01111026,-0.11297606,-0.12466412,-0.018781176,-0.2418891,0.2515714,0.4116082,-0.2941629,-0.23269334,0.41779897,0.6310572,-0.0012555397,-0.10119014,-0.01954671,0.16312562,-0.37902206,-0.16957489,0.00075718074,-0.006798822,0.44804227,-0.04581513,0.47421524,0.5517031,0.032323387,0.046053015,-0.014066772,-0.019896774,-0.12338478,-0.058553394,-0.24743699,0.093797095,-0.4352697,0.18105555,0.019912353,0.6384084,0.21851602,-0.78252506,0.25814924,-0.4695348,0.11989219,-0.006236685,0.46884155,0.7693213,0.3595921,0.23449406,0.70692146,-0.24863142,0.10293078,-0.15034768,-0.20726803,0.099354215,-0.1386062,0.04063564,-0.54818463,-0.06502317,0.21409193,-0.1014105,0.07501132,0.2681788,-0.4439378,-0.09553036,0.16669485,0.88222927,-0.13182053,0.019994259,0.53047353,0.93763,0.83791393,0.0959384,0.9784628,0.07231559,-0.20591189,0.39811623,-0.3529785,-0.6740965,0.27270472,0.46061662,0.3035202,0.34126422,0.15556325,-0.06090619,0.46399996,-0.41280305,0.14057629,-0.23262534,0.10841285,0.16933621,-0.07806851,-0.3118189,-0.30849096,-0.11636452,0.040871557,0.01990879,0.19219452,-0.1608196,0.18500659,0.13576461,1.760269,0.058203213,0.07483806,0.14794233,0.6334331,0.098633416,-0.35662454,-0.22825654,0.13437259,0.26202923,0.14784724,-0.53962,0.2667644,-0.13888377,-0.48824412,-0.12503529,-0.268675,-0.2200961,-0.04234809,-0.5348758,-0.1318556,-0.20343934,-0.4176648,0.3934855,-2.9961066,-0.17519492,-0.164771,0.40632206,-0.28820807,-0.20091401,-0.086499214,-0.4130383,0.37521183,0.5211715,0.42260906,-0.5671111,0.42756766,0.4374861,-0.62178004,-0.104900785,-0.48735178,0.0043113735,-0.0016427475,0.41253027,0.104767315,-0.071361236,-0.012096245,0.33172843,0.27254856,0.03226719,0.09179621,0.3433539,0.43149045,-0.020201953,0.5440891,-0.059362777,0.3207781,-0.42796454,-0.16670473,0.24979307,-0.5349342,0.22887537,-0.12715796,0.16131225,0.3911336,-0.58330274,-1.0395966,-0.78013414,-0.1710651,1.0338428,-0.0071807746,-0.17636387,0.28045732,-0.7217548,-0.123945944,-0.16869235,0.6533737,-0.029780086,-0.07507919,-0.7990661,0.00056468067,-0.17085077,0.31556436,0.04878777,-0.20424232,-0.56109256,0.694264,-0.031684842,0.67992336,0.18114184,0.1718122,-0.2914724,-0.39083284,0.043479823,0.65641403,0.26841635,0.20170794,-0.26979765,-0.15434252,-0.4373446,0.06876338,0.14553285,0.59943146,0.5031615,-0.032623906,0.10542793,0.18937752,-0.04774895,0.00015350488,-0.15754771,-0.15653977,-0.20589143,0.1398455,0.6227795,0.5268252,-0.06534323,0.24529894,-0.06006498,0.12854105,-0.35534558,-0.28017452,0.40827927,0.7897158,-0.035331488,-0.2360913,0.47129995,0.7369329,0.0053775264,0.291807,-0.6803083,-0.40846708,0.24125499,-0.07488033,-0.3657616,-0.03305914,-0.39531755,0.09165629,-0.8070052,0.21810338,-0.4328496,-0.62098515,-0.5910339,-0.004743553,-3.4950233,0.19883682,-0.018831994,-0.3166722,0.0034179597,-0.15640141,0.34240195,-0.6501405,-0.53477424,0.2027702,0.025990807,0.82758486,0.055945974,0.03200715,-0.27913204,-0.2391981,-0.27534348,0.081187434,0.056450844,0.325992,0.07703839,-0.5715989,-0.15659073,-0.14110105,-0.30457076,-0.031984333,-0.49320033,-0.37483972,-0.22340004,-0.5260115,-0.28064114,0.59031963,-0.1706613,0.124542445,-0.25459197,-0.06329029,-0.24442445,0.41156265,0.11687009,-0.046251792,0.056670647,-0.0882105,-0.05248952,-0.21965617,0.32386643,0.107070774,0.47252968,0.31935903,-0.11165916,0.24901234,0.6728893,0.5007205,-0.15243602,0.83072597,0.44795477,-0.030709453,0.25737953,-0.09316162,-0.1357846,-0.33154044,-0.21369651,-0.0044976105,-0.29577497,-0.35070637,0.11179324,-0.4619231,-0.76997375,0.35861233,-0.118582696,0.058777656,0.16244167,-0.045321032,0.47722414,-0.20343333,-0.019539384,0.0027327584,-0.09170257,-0.50824064,-0.37642235,-0.46996337,-0.46588993,0.06518661,1.1809356,-0.21879779,0.08810865,0.14387293,-0.21174754,-0.032797515,0.15626904,0.025190432,0.19094841,0.33305776,-0.08623835,-0.5464172,0.41469118,-0.24764282,-0.09325556,-0.48216152,0.20740463,0.36896643,-0.5151847,0.4177086,0.2606026,0.09592286,-0.16366124,-0.42393655,-0.19385634,-0.12905632,-0.15959321,0.24000877,0.2321594,-0.793062,0.28415072,0.077356376,-0.16412772,-0.67209435,0.6752378,0.036802802,-0.30700994,-0.16895764,0.14354068,0.19460867,-0.054180667,-0.29636562,0.2337339,-0.15067285,0.294299,0.08742729,-0.06379597,0.42913246,-0.22826226,0.11334014,-0.5990743,-0.06502731,-0.32867175,-0.21716644,0.37760094,0.1777403,0.090892985,0.18775629,-0.042484693,0.2194393,-0.22315417,0.026595125,-0.058316734,-0.3371696,0.288508,0.3629033,0.4332037,-0.4062761,0.5744345,-0.030989073,-0.035463966,-0.073960274,0.10904003,0.32019836,0.09101462,0.4282633,-0.15924142,-0.2844892,0.3223286,0.81098163,0.28855836,0.24789454,-0.053056955,-0.10711701,0.30963105,0.089091495,0.054778796,0.08586466,-0.614087,0.07234431,-0.192199,0.15128866,0.37169743,0.050053317,0.13909562,-0.11863402,-0.32746425,0.02617836,0.13186556,-0.12103589,-1.2577817,0.50553167,0.14439754,0.9021447,0.51258093,-0.04103645,0.020367738,0.82185304,-0.05063717,0.16446082,0.3383153,0.049520567,-0.44724348,0.5228729,-0.6082572,0.6252314,0.12131989,-0.06080943,0.010475055,-0.099266924,0.37539244,0.7342664,-0.119579405,0.05266107,0.040102933,-0.31662023,0.087448545,-0.23127797,0.0995192,-0.74413556,-0.18057145,0.57269675,0.59859765,0.32619843,-0.090782,0.007624351,-0.06450946,-0.045075003,0.15480322,-0.13123009,0.0040324377,-0.044360377,-0.76572984,-0.0125963185,0.4547377,-0.00089172676,0.24104108,0.08574458,-0.30081776,0.14901362,-0.077117555,0.067711286,-0.09873311,-0.5956895,0.011069975,-0.2964647,-0.1371523,0.6291033,-0.2654925,0.31107572,0.27383298,0.02872467,-0.1858616,0.41797206,-0.064723425,0.6815988,-0.08041418,-0.009294083,-0.3772877,-0.086496994,0.21261214,-0.24820283,-0.1349174,-0.45507452,-0.016806712,-0.63198286,0.371,0.11061588,-0.23071326,0.2094915,-0.22552332,0.18950166,0.5116081,-0.11970021,-0.1655259,-0.13247919,0.03638282,-0.234824,-0.15618251,-0.19812404,0.37936303,0.014141931,0.15713388,-0.036248058,-0.1129433,-0.034436278,0.36831018,0.105909154,0.33178288,0.35186327,0.1913383,-0.27396473,-0.014648474,0.060334187,0.64452654,0.059238553,-0.06640789,-0.37144312,-0.4650075,-0.34309414,0.16338855,-0.059662644,0.29824883,0.08818836,-0.25052875,0.52404594,-0.10768226,1.0848857,-0.016792594,-0.3619285,0.15119551,0.40799934,0.064767495,-0.01329134,-0.39075246,0.71267086,0.43576685,-0.09316797,-0.14717868,-0.2578216,-0.040135484,0.11905714,-0.13295019,-0.26098987,-0.027669106,-0.76205856,-0.23891038,0.28744662,0.16332348,0.19657254,-0.01902897,-0.018408217,0.12936231,-0.04012892,0.22546461,-0.41757795,-0.10142905,0.28249028,0.21413949,0.096950844,0.08147964,-0.58290625,0.43391684,-0.6225944,0.019059297,-0.18258968,0.25295335,-0.3237079,-0.34299275,0.19764009,0.11715695,0.5185117,-0.14638022,-0.3340435,-0.2890884,0.61332947,0.1734101,0.1426904,0.40313628,-0.1504785,-0.019911302,-0.036594465,0.48192486,0.78183705,-0.41169208,-0.010138402,0.28287208,-0.31991693,-0.4804157,0.12816356,-0.48870704,0.22809432,0.14749135,-0.13268282,-0.47890833,0.3304095,0.3057182,0.15385808,-0.08273796,-0.6739505,-0.30162022,0.14729787,-0.36214522,-0.23305362,-0.35508063,0.12647113,0.47426298,-0.24586917,-0.19376789,0.1740358,0.3997517,-0.049470887,-0.5508012,0.026424063,-0.36190736,0.22325894,0.039392628,-0.386081,-0.43365282,-0.055123147,-0.38114598,0.26212925,0.18761604,-0.43763632,-0.038122036,-0.42487592,-0.19774716,1.0299853,-0.10619941,0.21850055,-0.36497226,-0.25515202,-0.77582455,-0.37307656,0.47589552,0.33114326,-0.16725738,-0.42720574,-0.01109335,0.00786133,-0.020895757,-0.07211428,-0.38790002,0.39133167,0.13063666,0.46319884,-0.009487675,-0.8376239,0.06692942,0.040306766,-0.23834261,-0.446105,0.5336,-0.029945333,0.9912479,0.040512268,0.09779506,0.20849006,-0.521067,-0.10127906,-0.1952798,-0.1405301,-0.60225207,0.097133115 -471,0.40264237,-0.1679899,-0.4802995,-0.16587515,-0.3385637,-0.122598335,-0.17884423,0.15004854,0.4015525,-0.098975085,-0.122951716,0.10523403,0.108599186,0.41238675,-0.036142685,-0.8389684,0.06586108,0.18451773,-0.7927752,0.62938124,-0.6026385,0.30705795,0.050622907,0.3586607,-0.13338585,0.3384333,0.2470652,-0.12651502,0.15894248,0.06733705,-0.037348356,0.40742412,-0.6940885,0.16403697,-0.15072492,-0.29120797,0.0013699974,-0.31999704,-0.35883293,-0.65369827,0.052788757,-0.83779615,0.61086464,-0.10236256,-0.27847534,-0.030789483,0.31547043,0.3263547,-0.39821205,0.03977517,0.14430091,-0.16071323,-0.2845145,-0.27838293,-0.0748302,-0.5678392,-0.52975965,-0.15292598,-0.7378346,-0.32457206,-0.37417176,0.15698227,-0.40398923,-0.034340993,-0.1590193,0.49490058,-0.467993,0.0693861,0.42905357,-0.13018341,0.33153114,-0.46483555,0.103470564,-0.034271635,0.36299297,0.08515073,-0.33168876,0.4535913,0.46132988,0.49434987,0.40377745,-0.46179172,-0.15472965,-0.2620904,0.19504209,0.14637883,-0.1289727,-0.47534427,-0.22798967,0.20194012,0.43463197,0.37168255,0.06701417,-0.37030327,0.058213223,0.04651204,-0.08579958,0.76853645,0.6561216,-0.3148426,-0.4586521,0.28744113,0.5400926,0.2352219,-0.26615295,0.08903926,-0.09365411,-0.5974342,-0.16592295,0.08152588,-0.09793986,0.5435093,-0.1489741,-0.066526,0.9434576,-0.26292762,-0.17151895,-0.014344088,-0.12173598,-0.16984482,-0.41598448,-0.090555936,0.17037673,-0.7166803,0.023040874,-0.3468689,0.5286281,0.22024134,-0.6375852,0.38217577,-0.6225869,0.18510556,-0.11241291,0.79707325,0.86218005,0.5771703,0.43639365,0.7727119,-0.2516052,0.217182,0.050815653,-0.56935245,0.10150441,-0.3254128,0.20252076,-0.4329255,0.14347376,-0.11034744,0.0734012,0.085888796,0.27662626,-0.55712295,-0.19565961,0.1894011,0.79215276,-0.251946,-0.08477225,0.74282825,1.1983415,0.98072374,0.017142685,1.3027227,0.4314759,-0.20012216,0.16040663,-0.3643107,-0.6324326,0.10922242,0.36723772,-0.027771624,0.4173622,-0.12919718,-0.10553925,0.27690157,-0.42829916,-0.054744843,0.03645568,0.69203764,0.15345676,-0.23056652,-0.4603467,-0.008741983,-0.017277567,-0.015804755,0.17543039,0.2086896,-0.21341361,0.37641633,0.053131886,0.9020494,-0.062506035,0.030403731,-0.1152656,0.60998845,0.3912758,-0.052451935,0.002091988,0.40899217,0.43053246,0.03163508,-0.63821244,0.21744363,-0.50723493,-0.3547179,-0.19217713,-0.46288604,0.0886047,0.05282236,-0.16833964,-0.122076795,-0.07247559,-0.18829711,0.487346,-2.7271113,-0.43160036,-0.15277363,0.32974333,-0.20026925,0.05458251,-0.04628582,-0.6105356,0.31303596,0.24420676,0.4496746,-0.5878092,0.559889,0.56634414,-0.7042741,-0.20820251,-0.7237227,0.008749434,-0.079438224,0.57016903,-0.065462366,-0.13022466,-0.092350975,0.28175557,0.74576443,0.14566132,0.1824383,0.48860988,0.3137966,-0.010853142,0.46728972,-0.013269965,0.61667764,-0.1638158,-0.1360174,0.3738917,-0.0631612,0.23167762,-0.24796392,0.025450626,0.7373124,-0.37363407,-1.0226855,-0.57299334,-0.25294617,0.99691457,-0.4323025,-0.5981588,0.20805521,-0.31898823,0.02989483,0.08152571,0.51482016,-0.031195957,0.20846108,-0.6984798,0.2817214,0.019241596,0.059979416,-0.0008292834,0.061655216,-0.29306775,0.70791173,0.0027418255,0.48814824,0.21141897,0.30796114,-0.20194016,-0.4094245,0.19896351,0.7243965,0.4610249,-0.14198421,-0.23805697,-0.29160976,-0.08953678,-0.09012641,-0.1162019,0.62386364,0.82184345,-0.2543752,0.051061127,0.3409057,-0.15528393,0.048176885,-0.23208478,-0.20457897,-0.09700008,0.15830947,0.41666165,0.80857646,-0.32378516,0.44817743,-0.25571215,0.2758323,0.2320409,-0.7453896,0.86601156,0.66774625,-0.23892625,-0.009428555,0.45488185,0.39534423,-0.48612964,0.623642,-0.6771604,-0.06891642,0.6992304,-0.1966953,-0.32750842,0.06889579,-0.26192525,0.1353365,-0.8691903,0.3266271,-0.39943114,-0.4998302,-0.34504732,-0.12775302,-3.6425161,0.30892035,-0.2862628,0.05915526,-0.38295072,-0.04279165,0.25471914,-0.6611821,-0.5877094,0.26642668,0.36803037,0.6639195,-0.18796274,0.15095739,-0.22626643,-0.3324293,-0.2104165,0.19815639,0.10099713,0.2077355,-0.17053273,-0.41506454,-0.01403478,0.11509439,-0.6910662,0.16829161,-0.43747824,-0.23969136,-0.12183391,-0.5644625,-0.24282815,0.5909234,-0.21675219,0.10820128,-0.33073172,0.13363484,-0.17158455,0.26759666,-0.026994854,0.23135492,0.29034585,0.034865927,0.14056556,-0.1978089,0.36183196,-0.17650212,0.48780957,-0.0007567763,-0.052789416,0.13261048,0.5345865,0.59983814,-0.066914655,0.8796711,0.4554692,-0.051919222,0.30856806,-0.29004657,-0.44903424,-0.7918664,-0.4638548,-0.1577936,-0.4680774,-0.43184605,0.07549201,-0.3712273,-0.83562976,0.6444734,0.0029356799,0.5948388,-0.1306425,0.35062495,0.50715554,-0.22746609,-0.020211438,-0.028579751,-0.27126104,-0.56844103,-0.16707583,-0.75737417,-0.48937505,0.17597456,0.797004,-0.48038006,0.06113341,-0.22747265,-0.17231701,0.019535951,0.19578744,0.098189086,0.2937029,0.5372142,0.03540136,-0.5914997,0.31664032,-0.055628855,-0.13960162,-0.61754143,0.26761684,0.7195384,-0.7770387,0.6353987,0.2705665,0.014424769,-0.06322281,-0.6677824,-0.21808268,0.03931054,-0.13507421,0.56758285,0.13026549,-0.9313913,0.6034678,0.27021593,-0.49770212,-0.5794212,0.35773066,-0.10855148,-0.2663315,-0.2126008,0.2784246,0.27975038,-0.019800669,-0.3955657,0.21825118,-0.4911017,0.27191678,0.1166403,-0.19984072,0.37733242,-0.0017712235,-0.34880814,-0.9019867,-0.18262109,-0.52948093,-0.2096619,0.242797,-0.14585882,-0.07349178,0.053852383,0.070988625,0.4181868,-0.20659043,0.23330545,0.015437833,-0.39694998,0.30882367,0.52060676,0.2341966,-0.30035153,0.581251,0.18466516,-0.27055562,-0.0729872,0.05937369,0.38695866,0.030509952,0.459898,-0.10667605,-0.15272735,0.33822125,0.62538356,0.076241724,0.38628012,0.14242738,-0.018508645,0.42223194,-0.012086492,0.18580872,-0.067156784,-0.35046992,-0.08083158,-0.15711002,0.1707714,0.60828024,0.5481842,0.27994165,0.13695367,-0.30547562,-0.033413336,0.26602995,-0.018843746,-1.3407369,0.5025725,0.30432996,0.8258727,0.4634705,0.14890303,-0.2510684,0.6962435,-0.1755028,0.08142104,0.60119706,0.050164707,-0.33969113,0.8420652,-0.6600982,0.29359716,-0.09641974,-0.033273146,0.15300956,0.19201978,0.2941261,0.9414423,-0.26637694,-0.0009395043,-0.19296323,0.031890508,0.16091847,-0.30636585,-0.10357095,-0.28125197,-0.43055546,0.6232706,0.32930854,0.2822669,-0.27511173,-0.08919775,0.1605299,-0.29356524,0.14910358,-0.17360216,-0.05493941,0.026408393,-0.38974056,-0.16568565,0.42394632,0.14332575,0.10950978,-0.21883012,-0.1299108,-0.10316682,-0.24408515,-0.21685001,0.012423986,-0.77624476,-0.06440873,0.033205662,-0.36507982,0.8470451,-0.31291613,0.097918384,0.15519004,0.036392026,-0.08737563,0.25788847,-0.0009627501,0.50689656,0.0663882,-0.3147925,-0.2345365,0.09990947,0.13711183,-0.27160576,0.18044646,-0.2926778,0.01966494,-0.51048726,0.57023895,-0.10606127,-0.2820379,0.16576494,-0.3169913,-0.00088473357,0.47804725,-0.1461518,-0.19200061,0.14841466,-0.25599733,-0.34453616,-0.24292348,-0.17681411,0.31818995,0.11786975,-0.11687513,-0.023234315,-0.18918686,-0.09051234,0.6321447,0.006842812,0.22169085,0.035454035,0.012289532,-0.13913621,-0.024021022,0.29861557,0.38044676,0.22473916,-0.011205125,-0.22849837,-0.321861,-0.3987836,-0.05001629,-0.019317485,0.13575663,-0.031625975,-0.30479184,0.93475723,0.26358253,1.2906178,0.017313337,-0.4342965,0.05821686,0.60550994,-0.10493471,-0.0013019105,-0.36613658,0.83893734,0.5547371,-0.14328977,-0.003948768,-0.57559264,-0.07534344,0.3483943,-0.47379225,-0.1374268,-0.110899635,-0.5551668,-0.447746,0.261144,0.18661141,0.04721183,-0.024330325,-0.053635262,0.00513889,0.054393817,0.51995367,-0.65040535,-0.15834548,0.09016817,0.26446426,-0.02076137,0.15654446,-0.29633945,0.40986907,-0.7441176,0.123767495,-0.2691026,0.097788915,-0.3343062,-0.4758188,0.18294725,0.040220723,0.2543623,-0.22073312,-0.48605564,-0.16058478,0.42471427,0.04549056,0.0036770504,0.710548,-0.29306373,-0.028941998,0.23719932,0.57139564,1.3411558,-0.34187216,-0.04408992,0.2913475,-0.5639336,-0.67906183,0.40670022,-0.47291362,0.015020418,-0.15354668,-0.42358112,-0.42419356,0.16900189,0.015539757,0.05446518,0.15059544,-0.6204142,-0.16018179,0.25396922,-0.24390006,-0.1122199,-0.28971785,0.3620259,0.81081414,-0.23847413,-0.36359996,0.17661034,0.30815956,-0.17797399,-0.60271555,-0.12922941,-0.18960471,0.33357424,-0.018445302,-0.34076518,0.06560121,0.2830579,-0.5635571,0.020346701,0.28085878,-0.2849933,0.18086338,-0.28658238,-0.0942934,0.8416429,-0.2508003,0.0146010835,-0.6066969,-0.48557863,-0.8587854,-0.4075348,0.07379707,0.17893726,-0.012194244,-0.48366338,0.06092388,-0.06576065,0.082846574,0.076963425,-0.53676605,0.25551307,0.04144881,0.58008575,-0.1678303,-1.1045245,0.00042969186,0.16893476,-0.0089258235,-0.77357864,0.7295714,-0.19708322,0.8021853,0.06801106,-0.09513078,-0.09980035,-0.3896207,0.08362843,-0.4190507,-0.15520318,-0.6910627,0.016965771 -472,0.47834542,-0.14273867,-0.29396996,-0.07148707,-0.10321995,0.29629704,-0.13581808,0.30490538,0.048996765,-0.5285431,-0.26527706,-0.22844408,0.07804785,0.35737976,-0.25225264,-0.40626097,-0.022298638,0.18054093,-0.42861217,0.47528532,-0.4040227,0.4135201,0.18762067,0.40130132,0.19780533,0.28647348,0.30674738,-0.23660158,-0.37085757,-0.22642335,-0.20719096,0.17380211,-0.53191835,0.096261226,-0.117081285,-0.44121125,0.0151199205,-0.46471828,-0.2350401,-0.70348686,0.42364755,-0.9670745,0.53387064,0.04722766,-0.21249728,0.39730725,0.11125275,0.1429217,-0.2209284,0.06716423,0.20941556,-0.26445538,-0.00022329178,-0.2327832,-0.09205141,-0.3242218,-0.6198438,0.17572837,-0.45218903,-0.20575173,-0.31681678,0.15203223,-0.19429366,0.06489094,0.0039503616,0.4172361,-0.4120946,-0.1262351,0.105002105,-0.23599707,0.2587073,-0.5415287,-0.25997385,-0.10543947,0.31753424,-0.28707042,-0.08554826,0.1833569,0.301425,0.5426118,0.027715117,-0.055105235,-0.39167854,0.014865892,0.041886587,0.5375585,-0.14165404,-0.56566757,-0.19106553,-0.18491246,0.20122756,-0.014087021,0.15767698,-0.1346183,-0.09189733,0.027668906,-0.25206265,0.3334939,0.47403198,-0.44608182,-0.30771664,0.4029728,0.5066122,-0.07105916,0.014976497,-0.08739761,0.006150995,-0.4796583,-0.11637713,0.16961214,-0.2697091,0.5873187,-0.18102908,0.35393476,0.6685295,-0.2506042,0.07073304,-0.014760624,0.039826963,-0.20489308,-0.031375222,-0.19306247,0.18047203,-0.3282624,-0.010342581,-0.31250316,0.9941836,0.17792289,-0.67012817,0.3206697,-0.4378552,0.15759684,0.009119206,0.5681391,0.4646509,0.43517366,0.33092484,0.6528572,-0.5261423,-0.036819525,-0.0554034,-0.35204133,-0.07871906,-0.24062102,-0.0633462,-0.33775237,0.10746177,0.20798783,-0.10537411,0.032233406,0.60738295,-0.5664944,0.11184013,0.13819213,0.77027434,-0.3321503,-0.13390757,0.8850283,0.9684697,0.88508904,0.028071016,1.1544313,0.30947632,-0.361401,-0.061746716,-0.4036133,-0.5511868,0.2741974,0.41246256,-0.35990843,0.38138396,0.09498457,-0.08059193,0.3398289,-0.46642825,-0.0076928735,-0.2226292,0.08522027,-0.011280141,0.086814515,-0.45054606,-0.27627507,-0.02022894,-0.01787528,0.33966848,0.23866208,-0.29789656,0.54302174,0.083687015,1.4842957,-0.13509949,0.120852254,0.0067044008,0.47973388,0.09071381,0.104137145,-0.084988214,0.34260824,0.32221323,0.08875646,-0.6628242,0.027477475,-0.16212818,-0.5601004,-0.23479693,-0.26837987,-0.17239383,0.07552232,-0.37929183,-0.22553132,-0.0706687,-0.37191895,0.40022114,-2.53021,-0.14075881,-0.0059220493,0.2584999,-0.2438203,-0.41069454,-0.08630369,-0.5841952,0.33918157,0.35793945,0.43193692,-0.68013877,0.19325624,0.38031787,-0.3932825,-0.26710746,-0.58458996,-0.051080763,-0.080982484,0.32722563,0.018969268,-0.1983618,-0.089057155,-0.037435073,0.5131995,-0.04111827,0.064887695,0.27377498,0.3669548,0.12414432,0.40885878,0.2147224,0.6025972,-0.19425377,-0.13677125,0.4637147,-0.3714103,0.2876635,-0.2482251,0.13624169,0.3339395,-0.5006591,-0.82777923,-0.71667445,-0.19117442,1.3112704,-0.14159362,-0.49120674,0.14423452,-0.038095795,-0.19699891,0.015087182,0.42287722,-0.23576058,-0.013387923,-0.79356843,0.031094562,-8.752303e-05,0.30506244,0.074099004,0.12745441,-0.49695587,0.6360439,-0.065863825,0.26943046,0.24544685,0.2229161,-0.3178065,-0.57876045,0.10973228,1.1577307,0.32045317,0.19523844,-0.30666497,-0.27053052,-0.29169875,-0.13054667,-0.025758576,0.47461677,0.78242856,0.11383244,0.10551683,0.29963073,-0.011297425,0.19299795,-0.10346796,-0.26170525,-0.11906821,0.0028480205,0.5796453,0.5650291,-0.1700059,0.39991316,-0.23907603,0.38327318,-0.16548602,-0.3736441,0.6550188,0.95657635,-0.1802921,-0.1982332,0.6610366,0.5654248,-0.30399707,0.43530703,-0.6621068,-0.5542451,0.45476896,-0.23253189,-0.42049533,0.27675885,-0.2983306,0.21789679,-1.0321711,0.3250154,-0.049117785,-0.28829965,-0.5461354,-0.09546673,-3.5224717,0.1210578,-0.24117978,-0.10598196,-0.059979822,-0.29842982,0.19106375,-0.6130075,-0.4405396,0.15613382,0.09770105,0.5898047,-0.012364619,0.31603995,-0.19201884,-0.15035531,-0.24371807,0.14983566,0.14494033,0.3464353,0.01738579,-0.42458826,0.18521254,-0.21755256,-0.32482022,0.009004703,-0.5053716,-0.5899496,-0.17798677,-0.5025193,-0.40624288,0.6367754,-0.42190072,0.111820474,-0.17143007,-0.037885703,-0.113824494,0.38734266,0.09257709,0.10335362,0.08742523,-0.084867276,0.06385702,-0.25210315,0.35799244,0.056541093,0.18609087,0.5141508,-0.19476035,0.14632739,0.40106845,0.5521548,-0.08811133,0.7540046,0.47539926,-0.083811246,0.24167268,-0.36564043,-0.30596787,-0.65356344,-0.3274782,-0.057332516,-0.42820403,-0.48377195,-0.15168135,-0.407338,-0.7926753,0.5332542,-0.008894001,0.09947449,-0.13330297,0.43643835,0.5276832,-0.23853885,-0.13384669,-0.089277886,-0.10609286,-0.58307296,-0.30630055,-0.70745766,-0.41171455,0.004326471,0.7480218,-0.11121053,-0.027715072,0.12864996,-0.1845105,-0.07956008,0.041007586,0.07617341,0.0507359,0.403765,0.018040424,-0.8339385,0.60174185,-0.02750416,-0.14240015,-0.39867765,0.23723176,0.5359272,-0.7377078,0.31670547,0.5691313,0.117694,0.06542619,-0.34230354,-0.2155324,-0.13194442,-0.13957441,0.36795434,0.14987996,-0.5395425,0.48262814,0.3363521,-0.17732294,-0.7225872,0.39455935,0.023065014,-0.29998326,-0.020497799,0.34806442,0.14329095,0.12159048,-0.23598132,0.006841949,-0.55812114,0.34973192,0.21048912,0.024477025,0.5358507,-0.24611057,-0.24960367,-0.7194459,0.078753665,-0.5620007,-0.30186465,0.1667614,0.18224338,0.031208206,0.28462452,-0.011563046,0.4165442,-0.34417912,0.06256272,-0.03046048,-0.06323458,0.16445932,0.40199164,0.48228803,-0.47184324,0.6105046,0.038341917,-0.05123357,-0.10137047,-0.080731936,0.47339037,0.10900394,0.2762616,0.08257325,-0.26065943,0.33520907,0.5585338,0.3090765,0.5159389,0.071949355,-0.17561163,0.25345707,0.090983994,0.23317711,0.021867799,-0.5446184,-0.07597648,-0.2701026,0.037664212,0.41876116,0.13599828,0.3852521,-0.2319968,-0.20101412,0.15903974,0.118313245,-0.112893775,-0.8716914,0.30408925,0.17415714,0.70912826,0.5131167,-0.17659497,0.19550355,0.71825033,-0.41525242,0.14387551,0.28071523,0.087724485,-0.60468096,0.56006646,-0.6320154,0.37976217,-0.13706997,-0.041266866,-0.024611253,-0.14765191,0.2595878,0.7448616,-0.12951444,0.103886805,-0.09278076,-0.26267895,0.14608097,-0.46025127,0.23598811,-0.6618681,-0.062461384,0.7686892,0.28381088,0.27799687,-0.040711105,-0.0784321,0.08320427,-0.111297354,0.13647392,0.1678853,0.1532984,0.032804172,-0.59472454,-0.28070706,0.6088398,0.12213447,0.19129659,0.09366029,-0.30020759,0.21381816,-0.2992139,-0.11632972,-0.108323626,-0.59898597,-0.051988143,-0.34381977,-0.4909316,0.4499664,-0.09810189,0.2344397,0.17039743,0.07745866,-0.38498583,0.09540395,0.30170658,0.711991,0.16729693,-0.20579302,-0.35783157,0.21320668,0.34380072,-0.24461316,-0.2053521,-0.1531268,0.08583229,-0.6395771,0.50514233,-0.17792462,-0.23486833,-0.050843988,-0.1684056,-0.0373016,0.56537914,-0.12114572,-0.013596735,0.19174089,-0.09642895,-0.24094085,0.008061192,-0.26481357,0.2211236,0.3564153,-0.14149372,-0.12889113,-0.115619384,-0.25841242,0.42161343,0.00073150866,0.25997907,0.3234501,-0.05489647,-0.39262143,-0.14971839,0.098041914,0.49803233,0.011333619,-0.09439596,-0.28882432,-0.46839955,-0.35173002,0.19195381,-0.12861116,0.10824144,0.17499205,-0.27419502,0.82581675,0.076291844,1.0173525,0.05273598,-0.40852362,0.018266609,0.57618797,0.0062448094,0.01507522,-0.46546954,1.1882131,0.49010712,-0.14823115,-0.13295095,-0.41186148,0.031236961,0.24047025,-0.20370445,-0.20741437,-0.13229953,-0.70105827,-0.4268525,0.25295392,0.41972753,0.12680651,0.012571649,0.14520216,0.17608872,0.029684484,0.5105627,-0.4971525,-0.3395217,0.3974443,0.19660068,-0.03750858,0.16654894,-0.40732625,0.48599434,-0.57520264,0.010806552,-0.2559836,0.11518476,-0.2131282,-0.3659223,0.27648923,0.19498166,0.37301296,-0.39158177,-0.5647087,-0.31126902,0.5127131,-0.009354413,0.18427125,0.51452553,-0.29419675,-0.07448358,0.008407449,0.44809827,1.2273704,-0.17500615,0.182286,0.39361694,-0.1771497,-0.58504105,0.39358807,-0.30401167,0.15616526,-0.02145212,-0.24331443,-0.5335873,0.27114144,0.23722686,-0.051294863,0.14357135,-0.58211166,-0.18663232,0.29245797,-0.32292014,-0.15953408,-0.18760225,0.17055367,0.47737616,-0.36391163,-0.2199604,0.09326797,0.3665192,-0.2737425,-0.52071583,-0.1715989,-0.38578436,0.3115855,0.20267394,-0.27269053,-0.19222876,0.16795646,-0.3925005,0.13603535,0.24143039,-0.4357883,-0.009750153,-0.38888735,0.18481538,0.84388953,-0.052360766,0.20082834,-0.5767425,-0.33736476,-1.0888405,-0.316205,0.50517404,-0.04345619,0.043374192,-0.6352596,0.024537696,-0.19477741,-0.14159267,-0.0052439948,-0.59244937,0.48096782,0.17431612,0.37915948,0.04275645,-0.6650351,0.04448546,0.109432,-0.24115281,-0.60683316,0.49104425,0.027474489,0.80769587,0.13358144,0.08541971,0.45547774,-0.67976385,0.011475989,-0.26062748,-0.1542573,-0.8181335,0.089647196 -473,0.5396634,-0.31399593,-0.46249247,0.017070945,-0.19791177,0.105316825,-0.2538402,0.20443419,0.28465316,-0.33042827,-0.05719804,-0.25166887,-0.05434982,0.389205,-0.22078513,-0.70166796,0.007332983,0.036397014,-0.5424922,0.6244523,-0.35287935,0.37023988,0.2085559,0.19063865,0.14944077,0.17963667,0.43677917,-0.09815756,-0.022476068,0.0032896486,-0.07767612,-0.060404222,-0.53130955,0.1535478,-0.10406256,-0.24079047,0.07366645,-0.3422571,-0.5243782,-0.79908645,0.37095356,-0.7108527,0.4745392,0.19174434,-0.2890828,0.2512397,0.114043154,0.15256259,-0.4302616,0.16920964,0.10528301,-0.004400089,-0.14095697,-0.15823261,-0.18908131,-0.5340425,-0.50335485,0.08588594,-0.4703806,-0.14678124,-0.11961746,0.16248877,-0.30847546,0.033740293,-0.07912927,0.3932779,-0.40653077,-0.141048,0.31509352,-0.19697224,0.12328304,-0.6109017,-0.11119946,-0.06618659,0.10057939,-0.0011894575,-0.09716238,0.16659045,0.21171466,0.5859098,0.089831874,-0.27781954,-0.09281441,-0.13636151,0.10244235,0.5800997,-0.11993706,-0.6720788,-0.22950518,0.019701406,0.17252302,-4.432031e-06,0.26347765,-0.6123265,-0.11746968,-0.13726644,-0.25076324,0.41406587,0.6168162,-0.43606848,-0.025104033,0.3917481,0.36574134,0.14300115,-0.03646185,0.11436505,0.009817166,-0.53549886,-0.12648684,0.09790119,-0.1957127,0.47163978,-0.21403232,0.35185447,0.5147995,-0.1252698,0.1477188,0.1484594,-0.011762423,-0.2500074,-0.10294869,-0.13220783,0.02126419,-0.53163874,-0.011202357,-0.20956881,0.9536065,0.18163922,-0.7216956,0.46352914,-0.47163367,0.3391408,-0.12370978,0.5606577,0.6692509,0.210457,0.13911566,0.8670963,-0.54362446,0.0010549149,-0.035569303,-0.33097023,0.017286122,-0.11986494,-0.14791308,-0.42557862,0.14479855,-0.14052199,0.0041251546,-0.11431401,0.38257876,-0.43131533,-0.12038821,0.10964436,0.8825551,-0.30769068,0.08107583,0.51259965,0.9565508,0.97412163,0.036836714,1.3956966,0.4196043,-0.14033784,0.020380428,-0.1665772,-0.8407025,0.25391957,0.5453308,0.39816317,0.34528804,0.057986103,-0.057529602,0.3608689,-0.31974903,0.037663747,-0.29295477,0.2498269,0.0841655,-0.03806903,-0.23557864,-0.18637326,-0.035262477,0.14488284,0.04556193,0.23025343,-0.2079498,0.04065162,0.10300023,1.4017977,-0.23275454,0.031073261,0.053511087,0.44391727,0.37666702,-0.06502775,-0.009980313,0.14086536,0.4203585,-0.11370055,-0.7110864,-0.049711432,-0.21110871,-0.6013214,-0.23244362,-0.15665743,-0.10002206,0.010764049,-0.47786847,-0.190991,0.02933796,-0.2112254,0.5109759,-2.5846746,-0.30690187,-0.19825625,0.18236789,-0.31323975,-0.22382474,-0.1437616,-0.3440431,0.330211,0.41936332,0.4073541,-0.80397975,0.23697077,0.45044497,-0.42487118,-0.047191612,-0.5844585,-0.112229824,-0.1649724,0.51929945,0.16582943,-0.24811503,-0.023863282,0.18588623,0.4047074,0.02230628,-0.000532989,0.23021759,0.4215024,-0.058846373,0.29838997,0.09402964,0.4531223,-0.30668506,-0.004896631,0.42742702,-0.2586678,0.34690756,-0.11117823,0.1300173,0.34452638,-0.5712518,-0.68109274,-0.6237173,-0.1760359,1.2190361,-0.16175653,-0.49210072,0.3604048,-0.06968348,-0.010855677,0.029872417,0.32889464,-0.15880361,-0.012419377,-0.8040394,0.15822251,0.028884713,0.14461875,-0.0067041037,-0.13505162,-0.24065053,0.9396798,-0.036284667,0.43200812,0.33258668,0.21866168,-0.05917201,-0.5202837,0.12625541,0.9282964,0.5705313,0.059839573,-0.16580391,-0.22412835,-0.29018325,-0.29543957,0.051501483,0.45894644,0.8516312,-0.05186992,0.012892683,0.17697403,0.057865627,0.07908558,-0.10129563,-0.41051707,-0.12665638,0.043896075,0.50790125,0.5624905,-0.25843897,0.3148912,-0.18292375,0.2235812,-0.031346034,-0.42630607,0.6183612,1.0759866,-0.17713983,-0.31028983,0.47759873,0.4625885,-0.33527872,0.3480081,-0.7306885,-0.3828071,0.5167595,-0.05958146,-0.30984232,0.3222427,-0.35679564,0.14743233,-0.9904518,0.5156226,-0.21384767,-0.13500263,-0.45789504,-0.28958482,-3.3545833,0.30969673,-0.38983074,0.070639476,-0.19812475,-0.05521032,0.2441157,-0.45840052,-0.5714348,0.13843335,-0.039263852,0.4466169,0.053041387,0.40953085,-0.137292,-0.06487385,-0.3255253,0.099454924,-0.17420135,0.2998615,0.033919718,-0.3352706,-0.099762745,-0.22572753,-0.13753308,0.18936238,-0.6269825,-0.50104934,-0.17473376,-0.36400706,-0.23063429,0.57079375,-0.11962557,-0.043651104,-0.28235072,-0.064779945,-0.2992802,0.3076864,0.14869222,0.048317883,-0.09579594,-0.054875273,-0.17657158,-0.34135813,0.10190426,0.059578955,0.17324932,0.37860364,-0.17071964,0.09825848,0.32776,0.5737329,-0.16081929,0.70804864,0.37271643,-0.25963226,0.369175,-0.07224507,-0.22561835,-0.6031323,-0.44826132,-0.0038019929,-0.29107842,-0.39169475,0.013881372,-0.21568203,-0.54010147,0.3547976,0.030172566,0.24091335,0.114920124,0.038597416,0.50223035,-0.026370207,-0.00931456,0.052065305,-0.22610529,-0.5509344,-0.30892515,-0.6628942,-0.43234894,0.2442443,0.9077875,-0.23172572,-0.19069226,0.086179,-0.3025653,0.018142525,-0.090542,0.07923741,0.19940348,0.27601722,-0.018142594,-0.81432545,0.54748785,-0.08803046,-0.07544417,-0.33675125,0.06567091,0.5253135,-0.63127095,0.37548873,0.32461435,0.26749977,0.1560094,-0.42495432,-0.25045958,0.17099588,-0.19057767,0.35596874,0.08627951,-0.63705444,0.50592357,0.41239813,-0.3868323,-0.7002622,0.36620805,0.14194393,-0.24162416,0.022719,0.4323153,0.024625616,0.0229372,-0.09275227,0.3213787,-0.46611744,0.36709884,0.20889838,0.0075213155,0.32102713,-0.03597302,-0.3960773,-0.47165608,-0.04957358,-0.563424,-0.29183146,0.112123795,0.069540545,-0.05077925,-0.06744247,0.03339174,0.48383072,-0.40836763,0.23992789,-0.012883748,-0.16752163,0.49886027,0.50299925,0.44810933,-0.3294458,0.7309986,0.038595412,0.004849415,-0.08493485,0.04078693,0.33221224,0.33809948,0.20370004,0.10670073,0.1696758,0.30818313,0.7677041,0.15130493,0.32658103,0.15874591,-0.2323231,0.3474114,0.19438942,0.11460585,-0.17716815,-0.38027757,-0.17675686,-0.0088421535,0.14713049,0.47863135,0.16057943,0.33183807,-0.053956065,-0.37906316,-0.0024701399,0.14913477,0.06047334,-0.9533178,0.19734374,0.09885175,0.65934974,0.5261752,-0.29872292,0.18021987,0.5742325,-0.023599382,0.03815196,0.3706564,-0.01683159,-0.6296508,0.56189364,-0.41843694,0.2555106,-0.23573725,0.06811024,0.036277413,0.25855896,0.14799416,0.6515004,-0.053424794,-0.025484834,-0.12271087,-0.34269962,-0.09739251,-0.38306412,0.08835875,-0.3120377,-0.4679342,0.53197205,0.4266057,0.111723125,-0.10483612,-0.0056715873,0.008121592,-0.091951184,0.3536419,-0.11067919,-0.021201747,-0.17274778,-0.76559454,-0.28464925,0.6411811,0.22657318,0.12548025,-0.09896823,-0.1807398,0.23720251,-0.35692835,-0.026581135,-0.05502247,-0.67987645,0.058886033,-0.25941572,-0.4561494,0.27192697,-0.18623354,0.21277867,0.34865,-0.056536905,-0.38124654,0.019052532,0.042151254,0.70740986,-0.224514,-0.12212366,-0.39280048,0.076823615,0.15164945,-0.29673108,-0.032652743,-0.18878242,0.0014119148,-0.6645383,0.61221164,-0.09330249,-0.18761043,0.23464558,-0.3249393,0.0008337008,0.5519726,-0.31274647,-0.20948176,0.06595833,-0.1145877,-0.13820745,-0.24850729,-0.20429376,0.2855385,0.29718897,-0.12836742,-0.05496319,-0.29147986,-0.023166602,0.36047015,-0.069302075,0.26827312,0.34558472,0.2125162,-0.47680405,0.011486175,0.3677664,0.48176688,0.123642504,-0.01915833,-0.21683457,-0.44149342,-0.35536623,-0.032935046,-0.2358344,0.114039205,0.19078901,-0.52655447,0.7673176,0.37195262,1.2136955,0.06627154,-0.21799581,0.042425327,0.5874902,-0.031909276,-0.084510185,-0.26157,0.8135508,0.61048955,-0.0323906,-0.14860474,-0.45423833,-0.11491657,0.22481349,-0.22713542,0.11009042,0.03620639,-0.55129784,-0.45078692,0.2593903,0.25742856,-0.06602163,-0.05318639,-0.066994414,-0.015432426,-0.044997673,0.4201041,-0.59236187,-0.19972368,0.15518394,0.15398335,0.09890117,0.019382102,-0.5341007,0.41506624,-0.78670347,0.08212757,-0.30380705,0.090330146,-0.14504926,-0.18568611,0.13146362,0.02283293,0.4871359,-0.4285205,-0.44198123,-0.21600161,0.56132567,0.08725827,0.22798422,0.7061295,-0.30609962,0.07547762,0.18325637,0.57264787,1.1108373,-0.22160976,0.1292739,0.30404565,-0.34591633,-0.68735105,0.34990257,-0.30252153,0.1984609,-0.038416263,-0.3067247,-0.73162156,0.18390162,0.3056238,0.10701859,-0.050892152,-0.6729762,-0.35505182,0.42548415,-0.21661088,-0.27866918,-0.3856236,0.04312053,0.67150074,-0.3424744,-0.2228164,0.14345683,0.115917526,-0.32763818,-0.71558446,0.01915629,-0.38215336,0.40484047,0.36256027,-0.052240193,-0.15539919,0.1215161,-0.5163617,0.13737942,0.0628377,-0.42103437,-0.004834805,-0.1952214,-0.016864385,0.9679488,-0.20935598,0.057781164,-0.7774364,-0.54415697,-0.8467488,-0.42672208,0.64609474,0.19535731,0.23362707,-0.57989675,-0.08090522,-0.008021106,0.09898678,0.03508275,-0.4944648,0.43569687,0.04964013,0.47773814,-0.13075402,-0.70338064,-0.027370343,0.027970959,-0.15720975,-0.42635137,0.46157768,0.07230195,0.9080463,0.04677427,-0.099040456,0.27510354,-0.55190897,0.15868902,-0.25764412,-0.27573997,-0.5866504,0.23185599 -474,0.47691774,-0.16193405,-0.48991284,-0.36763057,-0.32041317,-0.06409705,-0.32162353,0.19941531,0.26958537,-0.46059224,-0.09610996,-0.04108553,-0.021258041,0.2643075,-0.25772116,-0.73202634,-0.063091315,0.13891818,-0.8203034,0.4689678,-0.55755895,0.17026679,0.30905744,0.42433557,0.18163274,0.33976912,0.21620369,-0.065695435,0.1396621,-0.009571716,0.21112435,-0.20573954,-0.7982855,0.3038131,-0.17060868,-0.38437518,-0.03058925,-0.5547232,-0.39462313,-0.6775376,0.29182336,-0.7079921,0.44065842,0.17656517,-0.23905893,-0.37767053,0.072414815,0.23795736,-0.3507565,0.22871739,0.36562037,-0.2511568,-0.022578625,-0.084693335,0.10506507,-0.5336763,-0.4017261,0.06849151,-0.435563,-0.030326271,-0.10351621,0.15172297,-0.23787351,0.041241143,-0.11977816,0.42174998,-0.48258314,-0.2124893,0.11390203,-0.19752152,0.26183605,-0.50305015,-0.38446924,-0.14864543,0.23551226,-0.12024528,-0.31768563,0.3607117,0.12975313,0.5753326,0.20085645,-0.21759377,-0.056587335,0.09790907,0.06401277,0.48155892,-0.053444054,-0.31120345,-0.2704935,-0.14553373,0.28966972,0.10109773,0.054474384,-0.49431428,0.13712056,-0.008715575,-0.29909885,0.45368278,0.6548465,-0.32217965,-0.037830085,0.27225175,0.15550643,0.3000626,-0.19957201,0.20025969,0.0124542015,-0.45277128,-0.28309712,0.15766068,0.00048167506,0.71626395,-0.13415809,0.38567185,0.67124385,-0.097919285,0.02532879,0.0007315874,-0.018435394,-0.03165061,-0.17050529,-0.45171842,0.35946086,-0.6515536,-0.030464694,-0.36557746,0.6846792,0.16688013,-0.81706804,0.3406807,-0.6843143,0.15400527,-0.29763767,0.5686845,0.8592327,0.46122953,0.20649308,0.7415514,-0.5802516,0.08102374,0.08854952,-0.25680414,0.19044735,-0.14226125,0.24287541,-0.4012846,-0.23397724,-0.042492528,0.12415514,-0.075362094,0.42420062,-0.26655173,-0.12275771,0.12454891,0.6478134,-0.30703062,0.06907328,0.85117006,1.3699918,1.2096654,0.22813708,1.4427084,0.30563548,-0.16350166,-0.115650766,0.101365924,-0.62237537,0.19426809,0.31261957,0.6028732,0.25786898,0.16369309,-0.18528087,0.43738842,-0.6368362,0.17616822,0.02553535,0.26951385,-0.06637983,-0.06303206,-0.40788043,-0.1899507,0.070388086,0.12918414,-0.3577728,0.3088682,-0.13508649,0.26124164,0.05285876,1.0907363,0.11804745,0.039089963,0.036603525,0.6599221,0.14809406,-0.35130402,0.038416844,-0.008644484,0.42773843,-0.07791258,-0.6763191,-0.12915973,-0.30080685,-0.48225296,-0.25158313,-0.43258628,-0.18118958,-0.18575454,-0.5773232,-0.12970938,0.15552849,-0.29499164,0.2585598,-2.389139,-0.320107,-0.20488691,0.4520876,-0.14550287,-0.066591226,-0.20566891,-0.23774154,0.45892176,0.5303744,0.57858074,-0.6900387,0.67700726,0.5027484,-0.40094972,0.04325561,-0.65503156,-0.03833131,-0.11573679,0.05642764,-0.045088097,-0.21745495,-0.08712741,0.18174537,0.60370976,0.14796297,0.0591736,0.1334029,0.53173983,-0.044119965,0.78125995,-0.048922658,0.39159894,-0.41885352,-0.22481918,0.2538608,-0.5493802,0.13473295,0.03259032,0.19265594,0.5929082,-0.5716071,-0.98957795,-0.67077214,-0.33341095,1.1373171,-0.258289,-0.38365176,0.36307105,-0.07376455,-0.23696782,0.069738775,0.6991756,-0.28478137,0.17359103,-0.7912801,-0.052496895,-0.15388037,0.1558498,0.0017635425,0.06581962,-0.52584475,0.79613465,-0.027994903,0.5318726,0.48038152,0.15050842,-0.04791811,-0.44907987,0.26992658,0.83205026,0.44972563,0.10645195,-0.14492875,-0.012430511,-0.23027913,-0.077306814,0.18213822,0.67201835,0.77646303,-0.19028477,0.20497292,0.42804587,-0.23864198,-0.033268932,-0.06087561,-0.5067165,-0.128253,0.14762713,0.68943834,0.9626458,0.0014165143,0.19336838,-0.094940476,0.17130516,-0.29516134,-0.4067018,0.5493016,0.5135378,0.031733114,-0.0972051,0.5683226,0.48493552,-0.2835462,0.42441192,-0.55565745,-0.5181753,0.420041,0.1108905,-0.32841945,0.03588816,-0.5932355,0.11410882,-0.9574384,0.5757708,-0.19692798,-0.5624474,-0.59114295,-0.39263055,-2.89624,0.095203616,-0.30530217,-0.2459157,-0.22200137,-0.17988239,0.41987333,-0.6640334,-0.60228395,0.22119176,0.07810467,0.62896186,0.07495479,0.094279446,-0.21542925,-0.15746462,-0.37516102,0.21993844,0.13738339,0.2470904,0.1688165,-0.35237274,-0.0689295,-0.30107912,-0.41314316,0.085808694,-0.51428604,-0.56214064,-0.020643897,-0.48473728,-0.40623498,0.72646093,-0.18757649,-0.09281907,-0.17327201,-0.16453646,-0.3185631,0.34659806,0.24561436,0.16764264,-0.056290567,0.039940316,-0.39293876,-0.24644147,0.08224248,0.1462145,0.30612007,0.25642672,-0.3032178,0.09561028,0.54948956,0.48557582,-0.119367175,0.7231803,0.34694767,0.00962129,0.33621466,-0.26817125,-0.36001515,-0.6062063,-0.3169097,-0.100579955,-0.37283692,-0.3828317,0.06703718,-0.29024133,-0.78633875,0.35034943,0.11744008,-0.08308225,-0.056315064,-0.06056876,0.064162366,-0.008961335,-0.094320156,0.025407834,-0.023737073,-0.5480374,-0.32412234,-0.90858,-0.5086055,-0.17868656,1.1836501,0.025118887,-0.17424202,0.37283137,-0.37424707,0.28766987,0.114973255,0.05597956,0.03241073,0.31770945,-0.13526097,-0.79999703,0.3542961,-0.30996928,-0.13766527,-0.59479064,-0.0621351,0.900822,-0.6229483,0.55339086,0.5574348,0.25378242,-0.18334843,-0.5279575,-0.44816634,0.012516111,-0.05796976,0.5309575,0.063991405,-0.73498154,0.51158303,0.036701772,-0.2598603,-0.6652833,0.6035982,-0.05312908,-0.2468168,0.31399372,0.22639032,-0.09754904,-0.26989016,-0.15001887,0.52204496,-0.40752423,0.55493206,0.13954927,-0.040137917,0.5133371,-0.008544791,-0.28029022,-0.5381163,-0.12464375,-0.5806152,-0.26782915,0.06442665,-0.006590525,0.07893911,0.22021544,0.088871144,0.32580975,-0.19143985,0.24078561,-0.27279365,-0.40598145,0.26431462,0.6253472,0.4791766,-0.6174446,0.7717921,0.21114711,0.08172501,-0.35560703,0.11257068,0.28105506,0.31600082,0.22444735,-0.23134486,-0.052072663,0.0632864,0.84072924,0.30012825,0.41867337,0.39437357,-0.13099934,0.40581688,0.1646723,0.12534507,-0.14734526,-0.2929134,0.029268406,0.036282625,0.20729357,0.24494927,0.032937996,0.31905305,-0.11721227,-0.12653768,0.19283734,0.2190675,-0.19652705,-1.3245804,0.5148305,0.35494184,0.690947,0.7295406,-0.11902404,0.09608809,0.5978875,-0.15007307,-0.015027653,0.11691496,0.14845626,-0.39682198,0.63883203,-0.37758437,0.4310741,-0.16569753,-0.036788642,-0.025816761,0.08884738,0.46971107,0.6391126,-0.05283824,0.17165989,0.01890481,-0.24687111,-0.19716705,-0.44246793,0.14286968,-0.56210023,-0.3567975,0.84675485,0.39391986,0.14119692,-0.19132541,0.010006945,0.008044953,-0.19794911,0.26608768,-0.16351335,-0.38802004,0.11825833,-0.8261352,-0.22890943,0.62875545,-0.38019833,0.02895803,0.14318173,-0.26262796,0.19894056,0.078380145,0.061468836,0.026174719,-0.7049265,-0.0058275214,-0.54656076,-0.19649106,0.26503414,-0.53630894,0.19200593,0.19622485,0.02886797,-0.06304907,0.19969316,0.07389628,0.6738846,0.13025719,-0.28150627,-0.21871513,-0.20454359,0.25387678,-0.2512764,-0.17255329,-0.60133547,0.11997992,-0.52030534,0.47776887,-0.043966696,-0.053406674,0.22794724,-0.13054818,0.010539651,0.40016636,-0.27254003,-0.12316823,0.30827036,-0.012468721,-0.22447796,-0.055520177,-0.48635152,0.42212498,0.14189686,0.24815275,0.0028164138,-0.060233504,-0.002761364,0.37275597,0.34248912,0.3071349,0.3437979,-0.029598659,-0.47057533,0.091132216,-0.117271245,0.45789036,0.36301842,-0.19241233,-0.41393554,-0.37221393,-0.16111644,0.33944598,-0.21865262,0.110120974,0.08107524,-0.27430865,0.7389787,0.3182791,1.185531,0.008644273,-0.39299902,0.119223095,0.45568717,-0.1710751,0.11845579,-0.43503007,1.0025352,0.5288082,-0.16157539,-0.24643576,-0.5605847,-0.38989496,0.121358104,-0.30742317,-0.41774783,-0.18329547,-0.7336127,-0.10521028,-0.013558109,0.16158904,-0.10979119,-0.027885154,-0.04208744,0.19166203,0.19384663,0.27416393,-0.7969963,-0.121002525,0.27155074,0.20741095,-0.03154858,0.14874046,-0.416383,0.46614417,-0.69903296,0.20217091,-0.5418124,0.031852666,0.013663414,-0.30558074,0.18489797,0.029396117,0.5134842,-0.37202707,-0.19581799,-0.2248283,0.7746075,0.26241654,0.37679553,0.7190583,-0.26491746,-0.08362528,-0.040956616,0.50135756,1.3230695,-0.32613418,0.11348582,0.29584903,-0.35681364,-0.45161334,0.09856704,-0.5157133,-0.039913867,0.013262439,-0.35137174,-0.53061104,0.20820993,-0.09483933,-0.20547496,0.11291853,-0.74340314,-0.29624704,0.5101918,-0.14337151,-0.462381,-0.34811613,0.18597741,0.6181674,-0.35089457,-0.12465721,-0.03153787,0.32868484,-0.30490014,-0.5506454,0.07908874,-0.53685135,0.48725,0.0022784073,-0.24709213,-0.21644938,0.18473889,-0.49885634,0.28181934,0.26304808,-0.26331237,-0.024453903,-0.21290796,-0.1611551,1.2273185,0.16952622,0.3156307,-0.6635654,-0.48576844,-0.8167555,-0.4570388,0.18380986,0.42669192,-0.0698806,-0.46113205,-0.14670801,0.0040592104,0.03383918,0.0061823525,-0.5911127,0.5217686,0.11515385,0.60927176,-0.058513075,-0.87291175,0.09463922,0.08877188,-0.32371798,-0.30853906,0.5043893,0.05157691,0.85552263,0.081885636,0.08257197,-0.23757589,-0.6316754,0.39079043,-0.28709745,-0.2643647,-0.57175094,0.038079754 -475,0.37181288,-0.21333095,-0.33367524,-0.22168739,-0.2510693,-0.016126756,-0.08960874,0.22437029,0.33605364,0.044008248,-0.075987436,-0.2675028,0.20073251,0.3383484,-0.06907474,-0.921218,-0.07142811,0.1955915,-0.6991018,0.3769854,-0.5969512,0.21821916,0.05055613,0.40002674,-0.0044082874,0.3646048,0.30506405,-0.17169435,-0.017808642,-0.21406238,-0.13883771,0.16590516,-0.54584754,0.09907503,-0.12294708,-0.17309128,0.23174052,-0.50262725,-0.21491814,-0.72339123,0.2154148,-0.8140504,0.348763,-0.021201735,-0.035069037,0.16071594,0.14768001,0.26064986,-0.46844453,-0.066571645,0.20785879,-0.15512776,-0.08714954,-0.21862705,0.0039825267,-0.22588398,-0.47146273,0.002696205,-0.33978036,-0.3810349,-0.26589122,0.06852253,-0.36994085,-0.08555342,-0.068146765,0.4875162,-0.34070444,-0.04673856,0.44598657,-0.3048244,0.2334603,-0.42147604,0.09436655,-0.0054620174,0.38013533,-0.012185301,-0.07033981,0.36732435,0.30810374,0.3566374,0.19497588,-0.32863528,-0.19523928,-0.16994987,0.0988304,0.48461744,-0.1272511,-0.5441102,-0.16876017,-0.05224622,-0.04451099,0.322295,0.018044634,-0.20233293,-0.014828918,-0.07536846,-0.25772604,0.5155071,0.5102716,-0.30738372,-0.37843132,0.14375623,0.42264417,0.2183548,-0.066641614,-0.1531529,0.1334788,-0.5872269,-0.2553528,0.103061385,-0.117725134,0.5031179,-0.15286693,0.1092127,0.8323057,-0.21366824,0.13951205,-0.04756003,-0.040115397,-0.031940784,-0.43344888,-0.22378264,0.18003912,-0.5446847,-0.026739206,-0.2945425,0.96203625,0.22818467,-0.74764144,0.4825504,-0.5714355,0.221261,-0.21471913,0.59494126,0.5912038,0.1544199,0.41967997,0.69490254,-0.28299505,0.2205206,-0.018805798,-0.56916684,0.098794945,-0.1659645,0.25299266,-0.358926,0.10167586,-0.2049947,0.18057005,0.15246332,0.048901957,-0.5688508,-0.12642224,0.17486344,0.77505726,-0.3044211,-0.024260942,0.49803782,1.0760187,0.9109182,0.04367476,1.2829998,0.42828718,-0.3317061,0.25414363,-0.31893826,-0.6736904,0.18531029,0.2903122,0.058366843,0.04788989,-0.18170512,-0.11757953,0.3110489,-0.2782823,-0.020943651,-0.040128417,0.43259814,0.104442425,-0.025626838,-0.46906194,-0.37164015,-0.013902971,-0.18995054,0.21661799,0.21364617,-0.13643835,0.22130395,-0.03343285,1.3085943,0.10248013,0.044309024,0.015488273,0.53369516,0.3799371,-0.14857301,-0.1783062,0.45454052,0.33972308,-0.20560725,-0.6494093,0.3453868,-0.2867485,-0.23947088,-0.10996973,-0.35754362,0.016690228,0.18062197,-0.33412513,-0.15133122,-0.065621786,-0.14074989,0.5499321,-2.909515,-0.20690699,-0.035257123,0.3034969,-0.3386434,-0.13329677,-0.0686354,-0.5601739,0.17534228,0.19766672,0.47350317,-0.5988861,0.45719978,0.49662122,-0.49610543,-0.26139474,-0.7098216,-0.1577611,-0.08348004,0.3458519,0.111871995,-0.12081417,-0.26749307,0.19391418,0.682865,0.21269287,0.1435493,0.3719949,0.3855853,0.15098238,0.5857361,-0.007308564,0.5566106,-0.19567406,-0.12781146,0.25524992,-0.2717668,0.26819652,-0.16322947,0.10496514,0.55680764,-0.31246203,-0.91540325,-0.5839227,-0.30909082,1.0163525,-0.29883915,-0.41883412,0.27426204,0.04015961,0.082806654,0.18342574,0.5035051,-0.07765211,-0.09110948,-0.58370787,0.23234256,-0.004429005,0.16081978,0.11935247,-0.118972756,-0.28170744,0.6871428,-0.10647978,0.44573084,0.18681507,0.31004506,-0.20960252,-0.35976237,0.03518817,0.7042465,0.11631697,-0.04723447,-0.054056812,-0.32615286,-0.14837871,-0.2366996,-0.103491135,0.5469021,0.8960725,-0.026508909,0.09486049,0.3473723,-0.15537049,0.070746526,-0.04977266,-0.3415611,0.03766782,-0.13014777,0.49327877,0.60561603,-0.1361306,0.45106453,-0.083858505,0.32312408,-0.08997051,-0.47739628,0.6412754,0.4045372,-0.14412144,0.05491974,0.41590056,0.40299892,-0.5243655,0.4385964,-0.5668972,-0.13324332,0.69117004,-0.18965642,-0.40824476,0.12897018,-0.18793483,-0.054578934,-0.84266204,0.39114454,-0.32616186,-0.3157701,-0.29701257,-0.18596826,-3.8472435,0.20449676,-0.17399761,0.047981262,-0.3152202,0.07975662,0.24652901,-0.511547,-0.47450134,0.19445927,0.23560679,0.5707169,-0.031051407,0.20862484,-0.32820204,-0.04940578,-0.18080328,0.17900898,0.066496804,0.3112774,-0.090745464,-0.30086476,0.10482552,-0.08086186,-0.5458969,0.29764956,-0.6247057,-0.4574538,-0.0812021,-0.62691915,-0.37989402,0.67355996,-0.3337067,0.038957503,-0.24606164,0.16659227,-0.37625107,0.24519132,0.056739993,0.1482025,0.00617608,-0.0081811035,-0.0044546383,-0.32634577,0.4538321,-0.06594364,0.41694552,-0.03088059,0.16548088,-0.0053590154,0.45242682,0.52393717,-0.018375358,0.8177867,0.30092523,-0.02728512,0.22997113,-0.33146933,-0.16971993,-0.44337362,-0.3900886,-0.11160367,-0.3802635,-0.4895012,-0.13047187,-0.26264217,-0.5969754,0.42763737,0.06911225,0.2261057,-0.045491397,0.14994693,0.4524432,-0.055189546,0.11664729,0.008225098,-0.07770084,-0.5593487,-0.063835606,-0.7130119,-0.33013153,0.28150135,0.59675354,-0.3037875,-0.028691968,-0.18776624,-0.27889398,-0.0032274222,-0.009477409,0.0722316,0.43921456,0.39362517,-0.03567613,-0.4765405,0.4264233,-0.14228553,-0.18546431,-0.5378469,0.10475601,0.6989427,-0.72620547,0.79617023,0.3795672,0.068952605,0.01398095,-0.40878645,-0.3247764,0.13599786,-0.05585063,0.44017062,-0.012434147,-0.7930266,0.5314025,0.32850048,-0.34725672,-0.7135796,0.28552952,-0.0038423985,-0.33007273,-0.12380376,0.21601944,0.21348803,-0.10422294,-0.26010108,0.21022895,-0.5666493,0.253984,0.069510184,-0.005698749,0.364537,-0.03499111,-0.22044523,-0.66094935,-0.15774715,-0.54960436,-0.26947877,0.28430563,0.009043434,-0.00041836075,0.2157185,0.12074758,0.39719057,-0.21552147,0.08722095,0.1077522,-0.2885428,0.25948706,0.39221743,0.24400434,-0.37024778,0.45222765,0.08297696,-0.101191156,0.16980512,0.041477036,0.40542752,0.107189775,0.31205288,-0.2670146,-0.13655406,0.36794338,0.73897886,-0.06759857,0.43923476,0.022044985,0.0049577695,0.5044541,-0.090241514,0.056561984,0.18831436,-0.38634083,-0.0005192182,0.028174324,0.19237329,0.5711821,0.31353584,0.19015037,0.22783132,-0.36805153,-0.036004033,0.26657632,-0.22418642,-0.8112668,0.48410895,0.20676576,0.81375027,0.54709584,0.026563047,-0.19671461,0.6681601,-0.13549589,0.26122352,0.35790467,0.028426642,-0.5502654,0.8240779,-0.4810517,0.32349315,-0.24159832,-0.10949765,0.08827436,0.16745016,0.3250433,0.6510564,-0.24263729,0.049244545,-0.047229312,-0.09668206,0.12027625,-0.38949013,0.13736463,-0.37922344,-0.33609533,0.5488861,0.41322502,0.22299597,-0.17180155,-0.033840474,0.09710874,-0.08076988,0.11357926,-0.043787006,-0.14773412,0.40486977,-0.64422745,-0.21231304,0.652876,-0.09009192,0.14349365,-0.3164621,-0.22470354,0.06652896,-0.246953,-0.060103416,-0.109198175,-0.5923504,0.1025927,-0.15468302,-0.48397443,0.53263867,-0.29996392,0.047069542,0.121449426,0.06010032,-0.14645858,0.20329727,0.2351556,0.78035724,-0.09985415,-0.15396737,-0.49132323,0.030259123,0.17171183,-0.13824931,0.0013319403,-0.50621945,-0.09017162,-0.4028133,0.54887533,-0.16937026,-0.39911842,0.1133761,-0.20487438,-0.04808449,0.5677315,-0.210615,-0.002399996,-0.13560236,-0.23144628,-0.29781055,0.056233916,-0.21104158,0.24769463,0.30026746,-0.035536345,-0.12439958,-0.3181491,-0.19637172,0.43698445,0.04124838,0.40455136,0.17299776,0.13694717,-0.10764237,-0.01831449,0.11495984,0.39992833,0.09191256,-0.02667124,-0.40375134,-0.18043308,-0.19676106,0.11346163,-0.09705693,0.18106723,-0.0438464,-0.37814385,0.8318089,-0.022097,1.170502,0.06313501,-0.29340583,0.11432878,0.52851665,0.026577126,0.100743994,-0.4497142,0.86940545,0.44375062,-0.086464815,-0.13955274,-0.39991635,-0.16165264,0.39509693,-0.2408478,-0.064168625,-0.033428144,-0.52392757,-0.45043325,0.2612609,0.18229087,0.097766705,-0.010995223,-0.038235676,0.04279237,0.11198696,0.48127678,-0.6320924,-0.1422611,0.08956231,0.34462452,0.024340803,0.342292,-0.35033903,0.4357861,-0.6479,0.26061246,-0.47236896,0.057489764,-0.22762366,-0.23849452,0.056969117,-0.024064763,0.30138633,-0.23852055,-0.48351583,-0.044497646,0.414008,0.24255247,0.20416965,0.70736355,-0.21331096,-0.048304122,0.23507215,0.7654069,1.1706308,-0.40117723,-0.03217777,0.29430452,-0.2644277,-0.67222995,0.3343213,-0.14583673,-0.21841058,-0.16686454,-0.29749563,-0.49456885,0.23001745,0.20352319,-0.07994496,0.07710729,-0.4910482,-0.19007213,0.38770416,-0.29840502,-0.2962708,-0.31135818,0.39790183,0.76814777,-0.30140513,-0.25770932,0.076758325,0.20306407,-0.28162345,-0.55544937,-0.05332733,-0.36099738,0.38196787,-0.009613902,-0.21402155,-0.09176389,0.1088391,-0.38282797,0.1177938,0.030831883,-0.3380069,0.167553,0.010593504,0.05783658,0.8582414,-0.16357324,-0.11427291,-0.73542815,-0.52096474,-0.80841285,-0.4462777,0.44347164,0.09771502,-0.05415795,-0.3237231,0.07309692,0.039836876,-0.12929228,0.0037521315,-0.5130424,0.22753723,0.01699404,0.48139605,-0.29904944,-0.94878143,0.015812175,0.18241088,-0.2718944,-0.6463084,0.6186535,-0.09410877,0.8098346,-0.03465987,-0.08353015,0.02989566,-0.21201102,0.10237908,-0.512924,-0.23333962,-0.6689312,0.16095778 -476,0.466701,0.063577764,-0.52145016,-0.14826263,-0.2577547,0.26817626,-0.18518524,0.43287912,0.1445649,-0.46556458,-0.06212636,-0.15743457,0.03898955,0.229805,-0.23335226,-0.68718714,0.15536563,0.061059084,-0.56738967,0.28567863,-0.5096383,0.30882448,-0.18711063,0.38318136,-0.084978685,0.25591713,0.02826688,-0.23734137,-0.014263784,-0.19482274,-0.06825484,0.24440213,-0.68683994,0.13027741,-0.12650353,-0.13150716,0.20697178,-0.5688533,-0.44909462,-0.58406013,0.265348,-0.80525094,0.59916407,0.10507011,-0.22074953,0.25599298,0.015047384,0.05923329,-0.15264562,0.19099961,0.05340105,-0.18608366,-0.104828335,-0.16370165,-0.3831797,-0.36594534,-0.5981981,0.04360998,-0.40987426,-0.08350413,-0.2848942,0.058261693,-0.27509645,-0.1106183,0.039622836,0.26469928,-0.36562496,0.18834427,0.17109069,-0.13359466,0.13267621,-0.5169949,-0.13457182,0.08303816,0.42971912,-0.38434657,-0.19026197,0.22647998,0.33575106,0.46212795,-0.09267305,-0.14095727,-0.22419763,-0.10060125,0.07931619,0.7073311,-0.10745708,-0.361981,-0.14029162,-0.10727135,0.07890655,0.4065526,0.13431966,-0.3610303,-0.2783043,-0.13437936,-0.24785657,0.3604262,0.54593176,-0.32636458,-0.24663024,0.48540375,0.42854384,0.29203245,0.01319004,0.18064448,0.048891734,-0.63609296,-0.2791104,0.07099193,-0.0989484,0.4595025,-0.2386484,0.29555783,0.68325347,-0.22092569,0.015606582,0.020052237,-0.013544382,0.005496583,-0.26005882,-0.20651332,0.18576072,-0.46002728,0.13227174,-0.17434047,0.88485724,0.26405635,-0.8576475,0.34129667,-0.6493049,-0.05406143,-0.027811876,0.52268034,0.46288612,0.41797924,0.16006182,0.49804425,-0.5724631,0.100990705,0.031340033,-0.4557808,0.08402158,0.0024786505,-0.1021976,-0.4092029,-0.02573881,0.070117824,0.08555799,0.06636701,0.26333833,-0.3441141,0.044242553,0.13370526,0.76402515,-0.39015582,-0.124970295,0.6539456,0.97887594,0.82303935,0.1948833,1.4172984,0.2606225,-0.07145027,0.07608058,-0.11536717,-1.012989,0.32416603,0.33226332,-0.31605586,0.3459641,0.16814877,0.052033428,0.19744995,-0.25267163,-0.11856433,-0.15877317,0.3950841,0.065638825,-0.17891923,-0.36843127,-0.29035383,-0.019782593,-0.13708211,0.20786247,0.21020485,-0.074342474,0.31883606,0.23965468,1.4327984,0.012923769,0.22452058,0.09119288,0.3495135,0.2813955,-0.040317304,-0.22542624,0.4330275,0.35066327,0.03454111,-0.5460412,0.07366222,-0.07732902,-0.48214558,-0.25465286,-0.3204674,-0.1427235,-0.09176403,-0.38815784,-0.1680506,-0.15330113,-0.14230178,0.68950814,-2.7654834,-0.07417271,-0.101534076,0.5027987,-0.23799336,-0.42287308,-0.12167722,-0.39981732,0.5642904,0.2966173,0.31891236,-0.5654944,0.308827,0.55808014,-0.21474981,-0.2236878,-0.6197206,-0.01021914,-0.012696047,0.09543346,-0.103479646,-0.088614896,-0.07199762,0.06128071,0.37231496,-0.08579273,0.13579506,0.1968659,0.3771946,0.25393826,0.33303016,-0.04309424,0.56460553,-0.21006986,-0.1443658,0.20033444,-0.3526471,0.36660698,-0.14626494,0.15924396,0.42807823,-0.3901406,-0.57143444,-0.6142302,-0.4417243,1.0732244,-0.1875648,-0.36294073,0.25631064,-0.20259003,-0.41482827,-0.07647681,0.27335164,-0.30726424,-0.13861367,-0.7032798,-0.05936247,-0.06129327,0.29876164,-0.06746237,0.009496548,-0.40933576,0.6299427,-0.10351247,0.47435635,0.29428616,0.1631227,-0.19942223,-0.58136255,-0.043884106,0.80263007,0.35884684,0.24384281,-0.29813936,-0.27553174,-0.15268819,-0.16354541,0.08856231,0.46063063,0.7439887,-0.010649144,-0.02778734,0.28526792,0.060695767,0.13954891,-0.043958418,-0.20368035,-0.16079943,-0.11505138,0.6029722,0.44198585,-0.2690676,0.31885046,-0.1717762,0.28406817,-0.25227532,-0.31843826,0.51329726,0.8322664,-0.1668222,-0.31577566,0.6282014,0.31961676,-0.35492092,0.3460873,-0.55276126,-0.20127296,0.46547285,-0.18036537,-0.48488447,0.19507074,-0.19722925,0.09139245,-0.960195,0.36185002,-0.23786506,-0.3935419,-0.3553404,-0.12914434,-3.3018222,0.114918195,-0.30458382,-0.10910446,-0.27325764,-0.14612804,0.2996516,-0.5265701,-0.63881445,0.22480758,-0.033199422,0.57531327,-0.040874295,0.18416773,-0.17599164,-0.14017951,-0.42697647,0.109589815,0.16000092,0.3571732,0.04654608,-0.24200343,0.05237024,-0.1478061,-0.45077106,0.18543613,-0.57239103,-0.3532338,-0.12289314,-0.5008252,-0.32810187,0.6586403,-0.5306062,0.007364984,-0.33401746,-0.047781263,-0.29409394,0.37479088,0.1302047,0.25411308,0.037182886,-0.0044334745,-0.17522028,-0.3415944,0.36817703,-0.017873645,0.22474118,0.3767075,-0.1293454,0.017531583,0.2932416,0.61763614,-0.05962955,0.6660691,0.25980222,0.01464578,0.37121916,-0.3582801,-0.28065267,-0.45935464,-0.33594006,0.07429417,-0.4091406,-0.45779082,-0.24941407,-0.31648996,-0.66101325,0.3583632,0.060205292,-0.103007786,-0.040099956,0.17519537,0.4278913,-0.14653297,-0.08445358,0.017637078,-0.116930015,-0.42319646,-0.28774858,-0.52302396,-0.39253864,0.19852564,0.82706606,-0.1245906,0.001579059,0.10500852,-0.27154356,0.010604552,0.063272506,-0.044541974,0.18139699,0.38723627,0.058578033,-0.58070517,0.44975963,-0.07676356,-0.42187086,-0.6502544,0.043991905,0.64579976,-0.753851,0.66521156,0.39120278,0.122686945,-0.034469545,-0.6778265,-0.26029077,-0.055648427,-0.2746801,0.39233992,0.18476449,-0.8213664,0.52663475,0.3504713,-0.24137296,-0.71272224,0.56035525,0.025657784,-0.22479142,0.18913957,0.32925767,0.07128988,-0.08584551,0.022242596,0.1655751,-0.43042222,0.3102778,0.22530167,0.1205123,0.4888136,-0.16030252,-0.07625139,-0.65573466,-0.13502742,-0.4721957,-0.26960698,0.14137198,-0.019343589,0.04792469,0.06697499,0.12205422,0.41304973,-0.51238286,0.21321656,0.022145381,-0.17041706,0.10942067,0.3226781,0.47258392,-0.29968593,0.5343314,-0.076701574,0.21422677,0.10243105,0.28589854,0.5509651,0.15351157,0.2459897,0.0022564617,-0.096292995,0.083334304,0.9673395,0.11707902,0.45164284,0.18435942,-0.013835409,0.32171923,0.09422188,0.13292548,0.1269252,-0.4346871,-0.0449575,-0.110672824,0.14834835,0.43419906,0.1969773,0.31439406,-0.2010828,-0.27967682,-0.016572878,0.2884399,-0.022360427,-1.1606305,0.30799314,0.20681879,0.72290057,0.36891922,0.06697996,0.08259814,0.4561885,-0.15412776,0.18086015,0.24488685,0.12959771,-0.4827238,0.4619332,-0.5620467,0.3202219,-0.13412105,-0.11067158,0.063983396,0.06825273,0.37595245,0.7764087,-0.07783602,0.11179025,0.054722376,-0.2510215,0.17894666,-0.46507066,-0.03917528,-0.29461557,-0.09642226,0.5946774,0.48355785,0.34515166,-0.3038182,-0.058464266,0.12234696,-0.07102336,-0.053364657,0.049983066,0.009248146,-0.0009978244,-0.48715696,-0.45342168,0.57682574,0.17948072,0.09764942,0.02412199,-0.30057892,0.23260124,-0.31007403,0.04533746,-0.07090672,-0.8341857,0.07033906,-0.21287884,-0.4756792,0.20775102,-0.123131596,0.054582994,0.28812355,0.120199546,-0.2647319,0.42789063,0.12910149,0.8676943,0.03283601,-0.21044262,-0.49046573,0.039435916,0.3707025,-0.21214284,-0.05720804,-0.3683736,-0.016955333,-0.36021286,0.22416975,-0.092478454,-0.17996083,0.11721604,-0.017442951,-0.001048301,0.55420107,-0.16931598,-0.0764217,0.10887296,-0.12860681,-0.26934835,-0.11593153,-0.21432386,0.13259806,0.37029487,-0.120051794,-0.057006627,-0.11066883,-0.24689393,0.30083126,0.17620654,0.39733812,0.35400137,0.15531142,-0.31285077,-0.25136355,0.11454104,0.52448493,-0.12886985,-0.10155564,-0.24664749,-0.48731092,-0.050408714,0.38116437,-0.12492945,0.11487621,0.103442565,-0.313167,0.6639742,0.06545146,0.8610789,0.122057155,-0.2960522,0.03205396,0.3944113,0.016502466,-0.047675434,-0.42174813,0.98920244,0.47099012,-0.101998195,-0.15787123,-0.16347368,-0.020510124,0.102361046,-0.25295073,-0.10640925,-0.13025491,-0.61514145,-0.21624687,0.21445836,0.053843968,0.036255006,0.03751983,-0.04285596,0.26612148,0.13574865,0.35861796,-0.57615125,0.06106243,0.26293442,0.21978606,0.2070411,0.3541095,-0.3494627,0.3510151,-0.44677845,0.035852347,-0.35812035,0.10719202,-0.10758043,-0.193879,0.029673113,-0.07559567,0.36219662,-0.19018261,-0.34158987,-0.16404316,0.40705734,0.18360035,0.24969395,0.6382937,-0.14831273,0.13571075,0.034009855,0.53058136,0.914899,-0.1480421,0.12703311,0.42827997,-0.28752726,-0.5753279,0.20266683,-0.37865216,0.14340873,-0.17810516,-0.14227872,-0.2123266,0.18523815,0.25613222,0.15298651,0.13054866,-0.55325747,-0.1983613,0.46067205,-0.2095186,-0.29824862,-0.21367928,0.16614945,0.94582224,-0.19214654,-0.020193292,0.16298823,0.1769658,-0.2257148,-0.47859487,0.018581271,-0.25323996,0.19734953,0.063831076,-0.25800484,-0.089913525,-0.001920253,-0.28800598,0.20936258,0.26316532,-0.33398136,-0.061276946,-0.2561413,-0.010838611,0.68935204,-0.27951807,0.06464971,-0.682312,-0.5317368,-0.9671317,-0.30438456,0.36220798,0.13067476,0.051939316,-0.4922612,0.010337174,-0.025800357,-0.06123566,0.0065417713,-0.36345553,0.46601343,0.17498492,0.39786604,-0.104756035,-0.86362755,0.07654511,0.09742106,-0.38064417,-0.61981636,0.62640876,-0.16305313,0.75771505,0.048997436,0.03404967,0.05508778,-0.5393652,0.2753441,-0.3166401,-0.04940458,-0.73237187,0.22605732 -477,0.55987656,-0.113476455,-0.40422213,-0.046877395,-0.14786562,0.08240479,-0.19167861,0.48580974,0.16146863,-0.37183526,-0.22011071,-0.24412322,0.09089124,0.3827627,-0.16637063,-0.576145,-0.1589401,0.13505791,-0.37792096,0.5053246,-0.42139786,0.2262488,0.05459927,0.40036732,0.2113016,0.33393407,0.20162284,-0.08403645,-0.24188668,-0.06348808,-0.07006805,0.4390813,-0.5905725,0.02381491,-0.06670663,-0.36391807,-0.164704,-0.4968606,-0.28092578,-0.6397628,0.399194,-0.70792186,0.3851941,0.19194153,-0.16899914,0.3391639,0.03701485,0.15857375,-0.23755533,0.022019722,0.10188388,-0.18772954,-0.030041747,-0.14234565,-0.1236618,-0.22254004,-0.6755693,0.03647419,-0.4245108,-0.23709728,-0.23920657,0.17159575,-0.24910937,0.032253623,-0.12128946,0.49398777,-0.43664593,-0.07659982,0.24413607,-0.12882489,0.25172645,-0.50949895,-0.21600379,-0.056444652,0.23015143,-0.25735936,-0.059790403,0.15713668,0.29314986,0.5591259,-0.009291768,-0.1452046,-0.4616272,-0.0039381757,0.114572555,0.5461145,-0.3235031,-0.62132436,-0.14968073,0.046686463,-0.066981845,0.17056233,0.07472732,-0.28067473,-0.099128306,-0.016425185,-0.104376316,0.30707207,0.39745742,-0.39796123,-0.36475092,0.2723598,0.44790033,0.13431445,0.0022537597,-0.0687439,0.062964246,-0.58466244,-0.11380616,0.08164819,-0.25293484,0.53887546,-0.004511562,0.3079708,0.6033297,-0.08597009,-0.00014880672,-0.10902071,-0.06457043,0.013414107,-0.35196766,-0.055240422,0.25996858,-0.26356953,0.21417224,-0.06143526,0.7916312,0.06257202,-0.86198604,0.3285754,-0.5224923,0.13433042,-0.034209475,0.49257267,0.68735963,0.23385113,0.4440467,0.7124036,-0.498939,0.052032705,-0.13357584,-0.32312334,-0.052143943,-0.07698007,0.104066506,-0.58672965,0.046238806,0.030548364,-0.025886144,0.21242452,0.4383691,-0.6091192,0.01500589,0.21737443,0.77939934,-0.28152248,-0.08907705,0.7088105,1.0593488,1.0916336,0.021725936,1.1087545,0.16730575,-0.22536412,0.32355052,-0.45114,-0.6817584,0.17980225,0.3788038,-0.008008048,0.20546597,0.1368496,-0.11123401,0.3992867,-0.36435997,0.004030615,-0.07106517,0.029933944,0.17381293,0.023921961,-0.424706,-0.21117964,-0.08979235,0.05748434,0.13924994,0.2272803,-0.21082519,0.39195856,0.005957395,1.8882668,-0.13782428,0.1744794,0.10946442,0.43584442,0.13005584,-0.15748218,-0.12182912,0.21593246,0.31854877,0.050708696,-0.5589001,0.06828946,-0.1657542,-0.53334594,-0.067700416,-0.29245734,-0.13095874,0.011413803,-0.51455015,-0.113770336,-0.13861099,-0.40174824,0.43368635,-2.9760284,-0.06461412,-0.010623328,0.25802648,-0.2215704,-0.45243692,-0.17071602,-0.42618665,0.36781245,0.37113973,0.39708096,-0.629917,0.25978097,0.25330546,-0.4511979,-0.1433442,-0.6058028,-0.08396982,-0.05874797,0.33299077,-0.036919672,-0.14100555,0.058032084,0.17116605,0.5480056,-0.02258461,0.13481483,0.18575493,0.378319,-0.0120676905,0.48147854,-0.03128034,0.4563833,-0.18027806,-0.27357033,0.36288017,-0.34158513,0.1835229,-0.1962981,0.17793927,0.2976477,-0.39355752,-0.9429245,-0.57727695,-0.23318839,1.0441918,-0.21031645,-0.3417229,0.27351364,-0.14371899,-0.17068075,-0.0468701,0.49349585,-0.085301176,-0.08005212,-0.8334856,0.16380444,-0.14484581,0.051502645,0.05414681,0.017443081,-0.5018524,0.7209642,-0.08313431,0.4917996,0.465151,0.20364021,-0.16146186,-0.45674625,0.11460626,0.96013534,0.24832392,0.19576128,-0.16585547,-0.18137994,-0.17595562,-0.08315089,0.0527326,0.53254825,0.6537018,0.07333877,0.21743599,0.24017769,0.04124111,0.07887219,-0.16257358,-0.2537681,-0.10022578,-0.09890157,0.5823503,0.72721213,-0.21700728,0.3899423,-0.10657567,0.23427793,-0.08267856,-0.28363758,0.5176084,0.93412507,-0.11022433,-0.18609233,0.6019459,0.5440167,-0.23399329,0.3908231,-0.5681313,-0.2958311,0.4680771,-0.24225569,-0.41935426,0.25937712,-0.3079641,0.0004594396,-0.9012984,0.15208332,-0.1867853,-0.2533476,-0.5595981,-0.15409157,-3.7883723,0.1622963,-0.35969937,-0.21367334,-0.04440467,-0.09463053,0.16068242,-0.64417946,-0.46898472,0.098254934,0.06189393,0.5401655,-0.10704103,0.17929739,-0.2062802,-0.1750161,-0.16872244,0.16971156,0.11807665,0.32678562,0.0403292,-0.36706105,-0.019199044,-0.14117111,-0.34874076,0.01960501,-0.537062,-0.45221043,-0.10663716,-0.524799,-0.40181297,0.5423006,-0.41466618,0.019166376,-0.22432305,-0.08823477,-0.14502373,0.35897568,0.099411085,0.20102471,0.028065383,-0.06724247,0.019153185,-0.24104086,0.25424904,0.049052887,0.23990612,0.5533716,-0.19127515,0.20864119,0.38172033,0.53450316,-0.07564603,0.8533062,0.64765924,0.043963253,0.18687277,-0.3038343,-0.119794734,-0.62205404,-0.42502272,-0.11579797,-0.3932628,-0.5128648,-0.18225747,-0.41625202,-0.7436744,0.5132638,-0.0803491,0.28901052,-0.04284702,0.30316338,0.5206559,-0.30973968,-0.03859575,-0.07129637,-0.035214797,-0.4814106,-0.27180773,-0.5703091,-0.63148797,0.052716166,0.7819148,-0.055599667,-0.031797655,0.05279605,-0.15624693,-0.16861044,0.19442397,0.06729712,0.1858277,0.49377772,0.024141889,-0.644818,0.5771538,-0.11846945,-0.22608304,-0.66379434,0.12162564,0.34868076,-0.58005905,0.66805726,0.33928835,0.14500016,0.12158221,-0.5396582,-0.19197361,-0.07804249,-0.19061086,0.43305504,0.26698452,-0.77521193,0.4631802,0.37354156,-0.22458456,-0.8366779,0.4483614,0.017103255,-0.4476115,0.012667246,0.2950526,0.14161794,0.05609715,-0.16004513,0.20430629,-0.4826255,0.3058162,0.17402315,-0.084713414,0.38087595,-0.21611843,-0.07519282,-0.5917759,0.0927123,-0.47234327,-0.31720048,0.15945588,0.12277676,0.15621763,0.16509081,-0.050343707,0.37626594,-0.24770534,0.079277486,0.03182346,-0.19070083,0.17807506,0.43882617,0.40875685,-0.4082431,0.5388138,-0.02680791,-0.09181556,-0.03236695,0.1294542,0.48123303,0.017367065,0.36844686,-0.11594848,-0.33964297,0.3203935,0.6112784,0.12766185,0.35760802,-0.014385151,-0.2370823,0.47082135,0.05672317,0.08630409,0.007017538,-0.5779403,0.007475402,-0.16066456,0.21461949,0.5043167,0.14254616,0.3695081,-0.15418366,-0.1910215,0.12222126,0.22270907,-0.075151704,-1.0298469,0.22445802,0.08475925,0.85024196,0.6439278,-0.06532645,0.061030786,0.4981109,-0.24038182,0.12065603,0.3091877,-0.06305881,-0.56218934,0.62002516,-0.7056688,0.42314374,-0.11576476,-0.027392827,0.0093635805,-0.109872654,0.35358024,0.6107987,-0.12431471,-0.0021337233,0.023974115,-0.2557769,0.016626012,-0.30540425,0.24270518,-0.6026249,-0.15807395,0.64142215,0.6189202,0.33547372,-0.13326332,-0.027924387,0.0754807,-0.05534531,0.010594575,0.034458026,0.15977766,0.044858918,-0.64310193,-0.27615103,0.59650064,-0.12740088,0.12187313,-0.04064888,-0.29910034,0.19305253,-0.15088984,-0.30097032,-0.05750697,-0.6029158,0.08806686,-0.36551178,-0.44576228,0.5558195,-0.08121514,0.3053885,0.14610192,0.14582413,-0.43012884,0.20776322,0.1727629,0.8837738,0.03301818,-0.16233736,-0.41705662,0.13133153,0.2378582,-0.11485269,-0.2969228,-0.29741046,0.03877889,-0.58520454,0.44285107,-0.053061314,-0.29909387,0.12145206,-0.10681027,0.087995626,0.56623346,-0.016040355,-0.17022216,-0.010272458,-0.085755646,-0.35005322,-0.087275654,-0.14637545,0.29673114,0.12549414,-0.09313042,-0.0726043,-0.10067952,-0.1429712,0.4365617,0.1219841,0.35132334,0.32518405,0.06774732,-0.3537661,-0.072107844,0.30614185,0.42289826,-0.03781103,-0.17094271,-0.2951406,-0.49537224,-0.40277472,0.14518897,-0.1729851,0.3493729,0.09709449,-0.23099163,0.74406767,0.021246959,1.1078784,0.1322333,-0.28826553,0.12820557,0.4225341,-0.026788294,0.015837558,-0.43517148,0.9647877,0.5796401,-0.009549692,-0.14288771,-0.17013618,0.049139127,0.1300731,-0.17862976,-0.08787852,-0.13490205,-0.6292217,-0.26904348,0.14112023,0.27342343,0.23917706,-0.09328098,0.012191951,0.19514665,0.053975582,0.41383877,-0.396808,-0.22262092,0.32365492,0.31383362,-0.061502982,0.11290604,-0.46473038,0.45936057,-0.3748819,-0.026397139,-0.37923014,0.15763137,-0.18220073,-0.19688772,0.26356867,-0.08692074,0.46646142,-0.2094245,-0.3334953,-0.2559689,0.40854925,0.07684653,0.07816401,0.59327394,-0.24279904,0.13812667,-0.0003117174,0.52447927,1.223969,-0.34779084,0.005622633,0.32784027,-0.17034632,-0.63712823,0.35256574,-0.1658857,0.12090272,-0.043136552,-0.21534272,-0.47956574,0.22356063,0.08528167,-0.019580454,0.052211083,-0.49247813,-0.2237237,0.21818888,-0.28591034,-0.1921817,-0.24663532,0.14661187,0.6965349,-0.29732037,-0.32464954,0.11344212,0.33471954,-0.07677485,-0.60833734,0.050364092,-0.37842667,0.24678163,0.19589408,-0.28209856,-0.15838148,0.087868325,-0.36181483,0.009384707,0.25544742,-0.3354674,0.046571314,-0.34836873,-0.023866748,1.0036452,-0.1434604,0.25220722,-0.5899623,-0.4776214,-1.0184579,-0.42918056,0.5529223,0.06515078,0.087232195,-0.50939274,0.0461761,-0.1446162,-0.1819715,-0.14276353,-0.40325308,0.46731696,0.13824245,0.42187953,-0.15712032,-0.45288387,-0.0019828398,0.1606966,-0.13042863,-0.4952998,0.45152473,0.09987415,0.86081535,0.028688904,0.081214495,0.34712043,-0.52493006,-0.13780625,-0.20559573,-0.1945796,-0.7390426,0.086000346 -478,0.47030336,-0.12382321,-0.43200123,-0.10787996,-0.31666964,-0.045495573,-0.29886252,-0.0057393215,0.28539732,-0.23917821,-0.1138192,0.032287005,0.005490287,0.18215059,-0.13292313,-0.65306973,-0.11636744,0.1447219,-0.6805506,0.8408645,-0.34412882,0.2941564,0.086771436,0.41297176,0.14035244,0.37761247,0.33090955,0.05532503,-0.058240794,-0.13951156,-0.04737824,0.1496028,-0.50030726,0.30747518,-0.13254887,-0.24069716,0.059921097,-0.3627982,-0.1941293,-0.75907934,0.15999056,-0.78499794,0.3869626,0.023792572,-0.14516428,-0.029927218,0.41226277,0.22549309,-0.32532245,-0.16217443,0.28483158,-0.22040492,-0.28885555,-0.27228928,0.110194854,-0.19554469,-0.37378946,-0.11044302,-0.48025802,-0.3023078,-0.23055,0.22586387,-0.33574283,-0.09194414,-0.102435365,0.48875037,-0.30935657,0.039108045,0.37999153,-0.34704426,0.09757417,-0.73246455,-0.17117085,-0.02953732,0.27428162,0.10828622,-0.09495786,0.45223674,0.119314566,0.33957565,0.31951702,-0.38803795,-0.18008515,-0.21238898,0.24219012,0.33937117,-0.17177013,-0.22086522,-0.19188349,0.093322195,0.21242398,0.3151699,0.25175476,-0.3252796,0.081558384,-0.3074439,-0.015702466,0.53585374,0.53082293,-0.11487128,-0.25159654,0.16666521,0.41710955,0.31224123,-0.20522642,-0.17757617,-0.13089126,-0.43956295,-0.23153816,0.09465303,0.084501535,0.30879217,-0.04399096,0.08179938,0.68984693,-0.046490442,-0.067063875,0.059866015,0.065924205,-0.021964995,-0.45074564,-0.17786215,0.39382643,-0.48979932,0.02538972,-0.34409046,0.59683824,0.03236767,-0.6288564,0.3225623,-0.4654854,0.1155677,-0.01711152,0.54116285,0.63873786,0.32638073,0.2344422,0.8358296,-0.2980549,0.073835246,-0.07781514,-0.2864107,-0.07788048,-0.06616335,0.31570658,-0.45035902,0.21842507,-0.16205911,0.26817912,0.052548204,0.09569286,-0.3689413,-0.18923952,0.26485267,0.7982805,-0.25392732,0.026975425,0.58984894,1.2129834,1.0012575,0.0003303965,0.9605588,0.0858284,-0.14907299,-0.21320334,-0.18485136,-0.6409288,0.19263858,0.39822438,0.2994529,0.25292623,-0.19229083,-0.14724661,0.30881223,-0.22752836,-0.18335511,0.013963699,0.38049185,0.16831703,-0.017850947,-0.41433632,-0.11954306,0.028140258,-0.15870208,0.2125004,0.19946294,-0.24939913,0.17895705,0.006854109,1.2886649,-0.29690397,0.1544307,0.2513698,0.38195366,0.29637802,-0.064860485,0.046371922,0.4045496,0.30369377,0.038386367,-0.39843026,0.23978344,-0.38048786,-0.5190824,0.0063522756,-0.3915844,-0.16208294,0.26756752,-0.35068992,-0.11032726,-0.10739317,-0.12030192,0.27758357,-2.9376643,-0.10380237,-0.16189797,0.24158047,-0.33441848,-0.103581905,0.045619685,-0.41782892,0.4191181,0.16285749,0.48837617,-0.47192398,0.37869474,0.5534115,-0.6130695,-0.0994754,-0.50511754,-0.035105307,0.03381056,0.57454795,-0.006147424,-0.23159024,-0.09327661,0.32564506,0.53936744,0.2717692,0.12019763,0.5253094,0.37321794,-0.13043651,0.53590786,0.025582092,0.4707106,-0.41828945,-0.15935649,0.37404498,-0.27766985,0.4952207,-0.21099456,0.06511244,0.6093656,-0.26741073,-0.77248496,-0.37330583,-0.31275722,1.0384653,-0.40115225,-0.6547409,0.19970585,-0.07321348,-0.04142379,0.0048542065,0.46735448,0.0287352,0.22637078,-0.67256665,0.18632777,-0.19419362,0.25391018,-0.028424911,-0.045752898,-0.5811668,0.83850235,0.036520947,0.6724111,0.30365753,0.33806622,-0.2530914,-0.2921957,0.14048833,0.6794681,0.34818634,-0.08094124,-0.084546454,-0.14727281,0.096137956,-0.29252782,0.09165815,0.71714425,0.5451957,-0.080865875,0.13629359,0.28111008,-0.0014202555,0.0393824,-0.030639656,-0.24427687,-0.22061807,0.021524465,0.4547795,0.7199711,-0.11166605,0.2989497,-0.04100675,0.354047,-0.009013606,-0.51691926,0.54293483,0.42437935,-0.18236552,-0.10180202,0.61028737,0.46645936,-0.3818508,0.46439382,-0.5938354,-0.2577843,0.5333914,-0.20111643,-0.39023834,0.13437746,-0.33438575,0.06354568,-0.6771197,0.25497347,-0.3282618,-0.15515219,-0.47706768,-0.17354825,-2.8039384,0.13186206,-0.26118222,-0.07980277,-0.40595323,-0.11011651,0.14879677,-0.51034164,-0.6257267,0.28858036,0.20343968,0.56465054,-0.1392574,0.17549817,-0.2110906,-0.19576403,0.10569927,0.33166885,0.004492915,0.24676204,-0.09773184,-0.24426739,-0.13837244,0.15881017,-0.42587057,0.14581485,-0.42331377,-0.44050542,-0.090379745,-0.4728394,-0.14113645,0.55961055,-0.2815408,0.02760228,-0.24617685,-0.02961019,-0.13426287,0.012797316,0.16607136,0.41780454,0.13309114,-0.0055924216,0.0133326845,-0.2553809,0.40099776,0.09869549,0.27054068,0.2710856,0.0067336964,0.11159813,0.08274969,0.5941608,-0.1989284,0.80283934,0.15692739,-0.030454764,0.33128726,-0.278935,-0.36638066,-0.68152267,-0.22147924,0.09644888,-0.28583616,-0.53466445,-0.12384317,-0.26952636,-0.723726,0.56330806,0.018342761,0.42829463,-0.13614883,0.14142103,0.40419525,-0.18961406,-0.14288162,0.08609458,-0.1363856,-0.38276762,-0.20161219,-0.66264313,-0.38842118,0.042569347,0.59465504,-0.34669897,0.063829824,0.16208805,-0.28983596,0.042587135,0.05615646,0.11304732,0.14866382,0.53490514,0.3787939,-0.56459373,0.55026984,-0.034878317,-0.10549453,-0.3415631,0.26898178,0.5184943,-0.46782383,0.6232356,0.29802486,0.009802962,-0.23468809,-0.55343753,-0.21195044,0.1728758,-0.20560642,0.57113236,0.22781888,-0.7315177,0.46654415,0.25922376,-0.38590783,-0.692561,0.28727564,0.041224837,-0.45729315,0.026143724,0.35880896,-0.03680621,0.021831274,-0.039615728,0.25768363,-0.32829374,0.22524339,-0.02661035,-0.064226195,0.2302323,-0.07636175,-0.3981028,-0.5385476,0.14268026,-0.5128967,-0.38191268,0.43933782,-0.1663895,-0.24006179,0.16179769,0.12841697,0.45186406,-0.18896645,0.2358978,-0.07054364,-0.27432343,0.34671846,0.52014846,0.43073317,-0.5410951,0.42240062,0.17932945,-0.18451977,0.30551916,0.08912828,0.41089332,0.06353755,0.22521213,-0.2824908,0.093319535,0.22239552,0.47275847,0.11956131,0.24117169,-0.03295285,-0.17114744,0.42410502,-0.08698741,0.17637524,-0.10285983,-0.5775597,-0.053677734,0.08866464,0.11050888,0.40767708,0.39131305,0.29940793,0.19047739,-0.23478274,0.0256391,0.25271493,-0.12852639,-1.0528485,0.50462836,0.11280503,1.0054989,0.48177993,0.07846915,-0.15995571,0.60223866,-0.13273205,-0.014953659,0.31004703,-0.09144094,-0.46465594,0.83458066,-0.19363855,0.24718536,-0.14867072,-0.047913425,0.018456837,0.05020195,0.22127247,0.6428595,-0.29292932,0.06353542,-0.23844801,-0.056788135,-0.099622406,-0.2565548,0.021396257,-0.12123122,-0.60265654,0.550267,0.401275,0.4201867,-0.29050907,0.054774225,0.012377064,-0.23867856,0.103356205,0.060058594,-0.107949145,0.1811686,-0.40326855,-0.16319723,0.6731566,-0.29047737,0.13636188,-0.17894024,-0.18244092,-0.09232155,-0.04122754,0.07138678,-1.9425153e-05,-0.76484436,0.17513342,-0.21104869,-0.46381262,0.32010728,-0.32179075,-0.017126737,0.18861757,0.032146133,-0.13840438,0.28038058,0.13554975,0.72477186,-0.042426016,-0.14977105,-0.3147482,-0.0408451,0.03850789,-0.15080936,0.177581,-0.25458524,0.20394757,-0.6047825,0.6816853,-0.10510604,-0.38074145,0.07370193,-0.24582325,-0.06092384,0.5309495,-0.13157865,-0.13862595,0.051736522,-0.22265993,-0.41893435,-0.14890173,-0.2975327,0.19590974,0.3068139,0.042323697,-0.10705698,-0.2705095,-0.23052618,0.43632132,0.04117399,0.4118611,0.24608612,0.08545904,-0.30646548,0.22496013,0.22636904,0.46816912,0.11845934,0.0035791874,-0.3174936,-0.42486572,-0.41038027,0.47694066,-0.103052236,0.07016414,-0.12733015,-0.32926908,0.9294547,0.08182379,0.9798088,-0.029839583,-0.2829137,-0.01267459,0.41821158,-0.38664955,0.0014038205,-0.3021614,0.92593056,0.53017545,0.026752762,0.063498065,-0.43599644,-0.040578965,0.27317008,-0.47614065,0.1083906,-0.14000839,-0.38277033,-0.454651,0.1047108,0.20991118,0.035671305,-0.2523863,-0.13136911,0.050349046,0.22235523,0.405712,-0.6843719,-0.28448927,0.066416614,-0.012993407,-0.17843069,0.22112706,-0.40248844,0.4811987,-0.70605177,0.3352693,-0.62764823,-0.03971332,-0.14437507,-0.2290132,0.019431893,-0.17385188,0.30895475,-0.5501502,-0.3465805,-0.08776433,0.16470076,0.14932217,-0.0019922291,0.6394512,-0.18697913,0.2084384,0.22602068,0.60304046,0.9122563,-0.27982897,0.0050390563,0.024264129,-0.43281466,-0.5782881,0.2209219,-0.23682334,-0.19622773,-0.20594765,-0.45337477,-0.42305267,0.10870511,0.18522808,0.12343751,-0.0001959006,-0.7729304,-0.20786247,0.27740154,-0.22727199,-0.25421098,-0.24691932,0.11886832,0.69378656,-0.10741542,-0.20928262,0.03261651,0.08752545,-0.12952584,-0.61705554,-0.0052858195,-0.30612105,0.36797503,0.006764652,-0.14068452,-0.32526004,0.1156328,-0.5311716,0.11612766,0.12631108,-0.25387356,0.0077846926,-0.06559841,0.010169395,0.8510865,-0.08765635,-0.0126039665,-0.6141083,-0.46034253,-0.77730817,-0.43219388,-0.15997785,0.046831507,0.063703306,-0.40754193,0.01719188,-0.309379,0.026767237,-0.0659427,-0.3925048,0.15180531,0.15214032,0.5109432,-0.43177038,-0.8273869,0.21565224,0.15370144,-0.042857815,-0.38572964,0.53017956,-0.0594554,0.65357345,0.05928616,-0.15313295,-0.01051596,-0.46236676,0.15513134,-0.32522982,-0.10407261,-0.7575789,0.13852435 -479,0.46494067,-0.31955165,-0.49006227,0.0074068583,-0.27775788,-0.13978687,0.027098903,0.36092678,0.30686748,-0.14702085,-0.17654663,-0.18210533,0.08032934,0.43788052,-0.07854676,-0.7004143,-0.12874462,-0.0034137666,-0.6080962,0.45479208,-0.543875,0.37339422,0.16227725,0.2820764,0.073135704,0.39920872,0.11830132,-0.11945543,-0.16772032,0.10323822,-0.34143606,0.1533613,-0.571454,-0.039720498,-0.037749466,-0.39030567,0.13063289,-0.47311223,-0.24909988,-0.6063393,0.13955584,-0.81281865,0.5486625,-0.01626319,-0.058334075,-0.024859034,0.039333366,0.33588105,-0.43497747,0.06367464,0.0946511,-0.19412503,0.069245785,-0.52050155,-0.10534281,-0.3531224,-0.48890203,-0.06328305,-0.6043472,-0.389686,-0.11477196,0.046717443,-0.45090505,-0.096065395,-0.111121945,0.28307343,-0.49938604,0.112065434,0.37904108,-0.122008614,0.12529041,-0.44965234,-0.039907806,-0.09571245,0.26760802,-0.13098882,-0.23257956,0.43051666,0.35872254,0.29925883,0.23291829,-0.3558971,-0.19497606,-0.07903829,0.098041624,0.50369006,-0.2514022,-0.45287913,-0.11316535,0.30780733,0.2809032,0.4479067,0.1583958,-0.04987316,-0.09208527,0.01860955,-0.20116733,0.40694508,0.5265518,-0.2781521,-0.42635548,0.35456488,0.5897447,0.14038357,-0.09021192,0.021805223,0.0013368806,-0.4240434,-0.22223602,0.060726427,-0.18805665,0.4200641,-0.057409365,0.1649778,0.871693,-0.37715986,0.06211189,0.101159625,-0.06276436,-0.17995217,-0.28473428,0.0066250013,0.1306889,-0.49336654,0.044793963,-0.18857387,0.82615334,0.298692,-0.7756427,0.38436604,-0.5722743,0.14542875,-0.12690543,0.6704035,0.63945144,0.5646906,0.3962136,0.74433583,-0.4269363,0.19839834,-0.025074009,-0.6575501,0.19077192,-0.29583046,-0.06539677,-0.5810428,0.07291005,0.006514258,-0.05778329,0.104431316,0.31173712,-0.66911435,0.011140933,0.19532332,0.85943544,-0.36814684,-0.15318862,0.6744401,0.960346,0.8398578,-0.056873064,1.1324717,0.29392093,-0.23706509,0.35526708,-0.5119106,-0.68739384,0.15880649,0.42835903,-0.5154568,0.4792691,0.05975804,-0.13987055,0.15263966,-0.10849651,-0.016942225,-0.058343694,0.34426963,0.07358846,-0.21160175,-0.40184563,-0.19303538,-0.25793526,-0.20872349,0.04340434,0.3300533,-0.32779124,0.4159185,-0.11456793,1.5591779,0.0452593,0.10811183,-0.059980307,0.5981748,0.31762716,-0.013713418,-0.057215407,0.62664986,0.2733196,0.13438052,-0.57490194,0.2587354,-0.30869082,-0.6050586,-0.07539826,-0.4264147,0.08380635,-0.07102936,-0.33787107,-0.09709096,-0.11804439,-0.23126748,0.4571519,-2.763409,-0.22777136,0.033063214,0.37295532,-0.3618288,-0.3456531,-0.005778203,-0.47685972,0.060651146,0.2548591,0.5487095,-0.8001559,0.47258684,0.42772028,-0.42800045,-0.2779391,-0.61978954,-0.05201306,-0.065631166,0.43279216,-0.057158526,0.01554497,0.022407008,-0.027606914,0.7283039,-0.10548806,0.032323018,0.42529356,0.47520873,0.12683572,0.5039386,0.031439956,0.7045087,-0.35562816,-0.14121386,0.23960015,-0.23427366,0.24858437,0.1297567,0.06315397,0.40223947,-0.440436,-1.0578719,-0.41126245,-0.17337526,0.9207331,-0.43537867,-0.20667814,0.21705683,-0.21413061,-0.13294917,-0.15144552,0.46048135,-0.04256963,0.11106999,-0.51973057,0.16003507,-0.083157375,0.008762281,0.0447992,0.05191162,-0.16117246,0.5914503,-0.024987984,0.61499727,0.118648894,0.2109113,-0.20564602,-0.32058594,0.11583759,0.76742077,0.2985055,0.015698595,-0.034470797,-0.28159672,0.004238931,-0.12120188,0.1299641,0.4654565,0.9017246,-0.05805128,0.14947869,0.39711654,-0.03825516,0.018987156,-0.07727747,-0.1669322,-0.00045599847,0.05207265,0.3561298,0.7469037,-0.41505656,0.6699118,-0.1315323,0.49794608,0.007382952,-0.6479673,0.60946137,0.62298656,-0.1334301,-0.019641988,0.48837274,0.39879587,-0.63338184,0.43250528,-0.60184634,-0.11672656,0.7665486,-0.20264374,-0.30550945,0.3920315,-0.075858116,0.11634838,-1.0163487,0.36834285,-0.18932328,-0.4630007,-0.36480346,-0.08991533,-3.772402,0.20184313,-0.3051852,-0.20137277,-0.20612353,0.041422166,0.058871888,-0.76067543,-0.46331736,0.1524988,0.29448837,0.5253377,-0.12620626,0.2395273,-0.19642814,-0.1639671,-0.20500205,0.12473573,-0.010977305,0.270576,-0.21561678,-0.3969019,-0.12665406,-0.057148658,-0.66486037,0.3647637,-0.54158264,-0.4825673,-0.07966623,-0.6905089,-0.2675919,0.7134644,-0.15735668,-0.17766438,-0.2508845,0.14652252,-0.23252736,0.264945,0.01388739,0.13606623,0.086273745,-0.09590785,0.221009,-0.3764773,0.43547016,0.046647456,0.702582,0.19543102,-0.17008239,0.07726049,0.5628784,0.62804514,-0.012623865,0.7631474,0.344464,-0.2745185,0.42773947,-0.41733748,-0.1817743,-0.67461115,-0.5483342,-0.14737283,-0.34874365,-0.5545838,0.020794878,-0.2774688,-0.8300692,0.6324182,0.0147717,0.43547535,-0.10851341,0.43322754,0.5434058,-0.22170442,-0.071638495,-0.15437225,-0.2667572,-0.57161605,-0.1284261,-0.61559683,-0.5223637,0.21413547,0.9351451,-0.37360904,0.07593788,-0.27746642,-0.16779591,-0.0027548005,-0.0015313992,0.04518091,0.4304569,0.20061725,-0.20562026,-0.6903636,0.45528156,0.017116722,-0.22301711,-0.46241555,0.016797602,0.5564662,-0.7736646,0.56098634,0.074158974,0.026998933,0.19815913,-0.47070315,-0.12725528,0.03616466,-0.1422273,0.24454077,0.14053503,-0.83981293,0.46374124,0.5790397,-0.5853501,-0.6114396,0.13294646,-0.018413447,-0.3029752,-0.14261031,0.22283602,0.15825449,-0.07866723,-0.18551356,0.18513666,-0.51194006,0.29308298,0.16942343,-0.09335538,0.26272538,0.07733512,-0.4479917,-0.75725543,0.2154105,-0.4546866,-0.1933377,0.3636352,0.09313411,0.00085401995,0.05457913,0.25697815,0.37310192,-0.42037576,0.047662996,0.16804324,-0.46389326,0.24963981,0.4670696,0.3698714,-0.43273354,0.4160511,0.20730904,-0.2696894,0.13985491,0.043653168,0.51441616,0.046603844,0.19348238,0.15079601,-0.30604637,0.40358955,0.7057794,0.09468404,0.55091864,0.16826397,0.04186368,0.42497462,0.15630467,0.06063927,0.20141408,-0.39938685,0.23140973,0.19280913,0.2239592,0.5917852,0.43611315,0.19997492,0.07444926,-0.20631708,-0.026302058,0.36646932,0.020882245,-1.1543972,0.30292556,0.34060642,0.8217445,0.36827552,0.19889584,-0.13336393,0.68069834,-0.18732038,0.06608394,0.39766663,-0.14423053,-0.6372779,0.7093783,-0.6561583,0.52756304,-0.09789773,-0.08782439,0.08131818,-0.0017786187,0.39551815,1.0044729,-0.24390186,-0.12551059,-0.025164586,-0.11379034,-0.016488846,-0.4497399,-0.053012677,-0.45217472,-0.2897592,0.6776995,0.22774476,0.27501184,-0.011870204,-0.050990764,0.12974904,-0.20117106,0.37404597,-0.06190942,0.15662855,0.113194376,-0.48600438,-0.32352698,0.6506927,-0.020465164,0.24284495,-0.26812473,-0.24779616,0.23914215,-0.22234176,-0.31675127,0.011283732,-0.5643297,0.30101398,-0.1521855,-0.6460504,0.48674452,-0.093409695,0.26131776,0.24253093,-0.00025002172,-0.27451527,0.28263676,0.17015935,0.8289718,-0.16614506,-0.41792154,-0.37527138,0.21877597,0.17909454,-0.3191921,0.22962059,-0.24389932,-0.036517628,-0.5203858,0.6762116,-0.031057596,-0.47395563,0.005651286,-0.1628935,-0.063223764,0.44178736,-0.077698246,-0.15809217,-0.24045658,-0.23690608,-0.4228999,-0.15733679,-0.22548944,0.27604848,0.29357406,-0.23214811,0.03673286,-0.17729561,0.11285948,0.6098432,-0.031899765,0.42227834,-0.030977456,0.0829441,-0.20798498,-0.0820866,0.31129682,0.3146412,0.04605814,0.14002748,-0.4350039,-0.2834223,-0.29214844,-0.08676065,-0.21439226,0.32901147,0.04304495,-0.36401013,0.921671,-0.0010338334,1.4267461,0.009748628,-0.2460363,0.100674465,0.56526625,-0.037134048,-0.0009891575,-0.39887968,1.1395621,0.6530036,-0.04013175,-0.13174325,-0.58845943,-0.2884085,0.3699621,-0.45659402,-0.16859634,0.1153053,-0.3931972,-0.4887316,0.25762904,0.07570772,0.27472454,0.024927814,0.029017888,0.17114703,0.06035894,0.11754001,-0.47130007,-0.35149992,0.15732907,0.18592356,-0.059031446,0.14127561,-0.5306161,0.41644585,-0.5957876,0.3962455,-0.2678662,0.18812507,-0.11102454,-0.46143392,0.13121751,0.032125615,0.38829824,-0.23755851,-0.3953605,-0.039249346,0.468301,-0.017905818,0.1723825,0.68744975,-0.28916293,0.03775505,-0.03293516,0.45277756,1.2636836,-0.22563502,-0.076828636,0.34546143,-0.45603555,-0.72232616,0.60420346,-0.16860925,-0.06239722,-0.25250813,-0.36601856,-0.51116693,0.27379873,0.23055166,0.16862835,0.062923744,-0.4290817,-0.2305994,0.2447621,-0.4790626,-0.23007125,-0.2921075,0.41706747,0.9764117,-0.3053518,-0.29431984,0.19582242,0.11633588,-0.24374372,-0.35438892,-0.15879491,-0.114061765,0.3656581,-0.01531981,-0.20403257,-0.004316963,0.21191421,-0.21320699,0.043974288,0.2194407,-0.3991719,0.2680379,-0.138495,-0.12365743,0.9478044,-0.28491196,-0.101488866,-0.7288901,-0.54219866,-0.8853419,-0.6030073,0.40979576,0.04735223,0.012436484,-0.56094486,0.065268755,0.07922184,-0.3995755,-0.06944268,-0.58096623,0.30927607,-0.01575267,0.2945865,-0.2703708,-0.9429463,0.18273929,0.22536659,0.008831634,-0.89155644,0.57690895,-0.2680799,0.84667075,0.1066814,-0.11506856,0.3028321,-0.35156476,-0.01331148,-0.46015352,-0.22799836,-0.66975623,0.041471504 -480,0.5565596,0.001014638,-0.39452943,-0.10205022,-0.2806684,0.2514066,-0.24811004,0.3062008,0.22566423,-0.3634821,-0.024679966,-0.10519368,0.06715044,0.13678767,-0.10071471,-0.4392462,0.012023584,0.20153719,-0.6624418,0.78134364,-0.20048006,0.31373346,-0.0863777,0.2886173,0.26701933,0.3751425,-0.0018278281,-0.109060444,0.08950884,-0.17216259,-0.21932332,0.12284465,-0.5530083,0.26651025,-0.20567025,-0.14571913,-0.044920865,-0.29647195,-0.31605455,-0.772935,0.23730183,-0.83639544,0.4961613,0.002967002,-0.30208358,0.15355358,0.39226705,0.2700983,-0.16980138,-0.039603658,0.14487073,-0.2311276,-0.05442745,-0.14529628,-0.17175217,-0.4834022,-0.5478736,-0.16690132,-0.562111,-0.16771163,-0.48308524,0.21976046,-0.229923,-0.06839485,-0.10650604,0.45634142,-0.40165532,0.3422474,0.26433203,-0.19517508,0.22845072,-0.46133268,0.032179203,-0.20071827,0.4602693,0.077383325,-0.09353827,0.33593082,0.16309503,0.2966157,0.20231646,-0.17203331,-0.36772,-0.17743604,0.16726777,0.386844,-0.13259348,-0.22328593,-0.13034287,-0.041871503,0.19496737,0.28850573,0.14811665,-0.17132749,-0.13695696,-0.18250886,-0.12455538,0.5237429,0.4143058,-0.2733456,-0.16397524,0.464641,0.6814518,0.28583857,-0.27510312,0.17140417,0.07979922,-0.3765202,-0.1404794,0.2069309,-0.1441841,0.38116995,-0.10828586,0.20025219,0.7454322,-0.08242383,0.003189977,0.016902555,0.028587364,-0.076067075,-0.14237013,-0.2207287,0.2776535,-0.55504376,0.28471035,-0.20622204,0.6982969,0.1722763,-0.47217277,0.27559844,-0.6603091,0.13191028,0.058897413,0.50102746,0.6900408,0.58794576,0.277227,0.8420978,-0.29676828,-0.015329782,-0.18593569,-0.2936049,0.13896431,-0.28373146,0.104763635,-0.40610632,0.13544385,-0.14360183,-0.05176534,-0.04187589,0.35587972,-0.47548848,-0.14097333,0.053512465,0.9155363,-0.24317786,-0.07727809,0.7919911,0.9625138,0.98141986,-0.021779247,0.8720299,0.11247955,-0.31919867,-0.037246782,-0.27294254,-0.5120315,0.2988402,0.25200033,0.17004435,0.3131504,0.16637413,-0.023090772,0.26101035,-0.4458696,0.0017499209,-0.054721642,-0.0002966881,0.13476764,-0.026597532,-0.31129983,-0.24380137,-0.04900132,-0.023709033,0.33241406,0.09723968,-0.22426198,0.4231661,0.18082695,1.6020249,-0.0547217,0.15313055,0.18412256,0.51544094,0.23042901,-0.043775834,-0.17784038,0.5068665,0.23921238,0.2522454,-0.5319441,0.26436108,-0.33466884,-0.36099002,-0.042726222,-0.4251827,-0.16288668,0.03358221,-0.28307423,-0.11823023,-0.092441835,-0.405771,0.43041328,-2.8306253,-0.07392807,-0.1145712,0.44754502,-0.217266,-0.081353836,-0.081167124,-0.48721343,0.21003816,0.2673691,0.39298025,-0.5746794,0.40002587,0.5803181,-0.7053322,-0.09355271,-0.48051426,-0.12873097,-0.06602333,0.4449786,-0.003792413,0.021664698,-0.051151354,0.25068027,0.4888807,0.0905791,0.15790042,0.43314478,0.33533624,-0.18184546,0.6439336,-0.056554716,0.41554984,-0.22596039,-0.22199942,0.3070428,-0.40896252,0.35123,-0.15150723,0.05218337,0.57322043,-0.37014818,-0.9044865,-0.5964401,-0.06167831,1.0840732,-0.3701391,-0.5276752,0.19910583,-0.42822555,-0.25000075,-0.040012337,0.5978554,0.039152972,0.02140624,-0.692407,0.05445837,-0.12935044,0.34284163,0.047389325,-0.039191406,-0.4067235,0.7551787,-0.022685679,0.64650434,0.06633422,0.15584382,-0.31677362,-0.5512352,0.052156396,0.68443215,0.32999796,0.018397637,-0.32295278,-0.19650653,-0.30369613,-0.0824622,0.061167736,0.7001484,0.439401,-0.15422884,0.15945773,0.34338838,-0.14527005,0.095101476,-0.2655562,-0.34933332,-0.07440605,-0.15720804,0.3919157,0.66076505,0.013529015,0.3315768,0.10575512,0.4154255,-0.12153879,-0.49202988,0.45450088,0.7359192,-0.24859677,-0.2780832,0.66113824,0.46690273,-0.10077245,0.50858814,-0.66406316,-0.27397364,0.543147,-0.1228115,-0.54515076,0.14235385,-0.3079553,0.16386385,-0.69163394,0.12923545,-0.3975081,-0.5556571,-0.26057488,0.087407865,-3.3762577,0.12447238,-0.21019082,-0.19468693,-0.2502053,-0.10398283,0.1742851,-0.5340776,-0.6259345,0.040173195,0.0991522,0.70143026,-0.25923645,0.07641177,-0.31579062,-0.41359165,-0.28982598,0.31573611,0.029007895,0.40743822,-0.24325815,-0.41231102,-0.08611085,-0.004247512,-0.31361067,-0.10143534,-0.5348637,-0.30053625,-0.115518026,-0.48985875,-0.2635148,0.6198047,-0.24485391,0.11988519,-0.3054697,-0.06875708,0.014686712,0.2813327,0.17083628,0.11297465,0.096010916,-0.07539725,-0.09969567,-0.20441015,0.38780203,-0.05072358,0.2258125,0.294024,-0.09015414,0.18772344,0.45011356,0.50179106,-0.17580834,1.0423039,0.2971355,-0.14233555,0.3757504,-0.18318197,-0.3706164,-0.6034339,-0.16539663,0.066200264,-0.3955898,-0.4234204,-0.21054031,-0.36241144,-0.86686337,0.56962806,0.07732786,0.34917447,-0.06137536,0.2368003,0.63127786,-0.29724208,-0.07930647,0.1097428,-0.22851999,-0.5608085,-0.06558181,-0.5648476,-0.42144352,0.15351343,0.76937795,-0.5304941,0.080068834,0.17058153,-0.30259132,0.027632337,0.2256319,0.07996328,0.19740209,0.593881,-0.079950385,-0.50300467,0.5649126,-0.25457147,-0.12995185,-0.569021,0.34534058,0.6686257,-0.728349,0.48995253,0.25716186,0.00034776528,-0.41193613,-0.5337886,-0.076362155,-0.18756442,-0.19862194,0.38194525,0.20623474,-0.8936212,0.18158813,-0.0128142275,-0.19752786,-0.7382225,0.5942086,-0.1641398,-0.3466717,0.031827632,0.43952453,0.11489895,-0.014067594,-0.20384963,0.09091962,-0.42569244,0.24528852,0.20657666,-0.12523662,0.2956799,-0.22260815,-0.20744921,-0.7358882,0.09697333,-0.48084825,-0.26980317,0.47813836,0.091024645,-0.09443197,0.3397319,0.087874934,0.3648707,-0.1629006,0.105427906,-0.104829066,-0.0859797,0.50651646,0.5087295,0.40387884,-0.53560066,0.663229,0.087092526,-0.18985817,0.19209221,0.13020107,0.31715918,-0.11710718,0.6547695,0.0895999,-0.21247967,0.29330498,0.6103923,0.22144876,0.2858406,-0.0035787423,-0.15542601,0.17794551,0.12123504,0.30031157,-0.040972367,-0.73878765,0.084267505,-0.350545,0.106483124,0.43828896,0.1315311,0.23272608,0.023804126,-0.36880767,0.020903386,0.1505939,-0.17040902,-1.2632378,0.29644737,0.30662337,0.94967043,0.3770173,0.07921381,0.019584406,0.8563141,-0.17099245,0.0741104,0.34174082,0.14633815,-0.44162452,0.62062305,-0.85102785,0.4239444,0.04819463,-0.08636169,0.11984114,0.018904828,0.4140892,0.76016915,-0.2510807,-0.081790365,-0.105447024,-0.39056093,0.270441,-0.3479864,0.10570372,-0.52056056,-0.4715854,0.48564994,0.50990295,0.4731695,-0.1972195,0.05594609,-0.07918159,-0.12327822,0.23353821,0.15017897,0.054240204,-0.19241914,-0.56382245,-0.1481204,0.57486284,-0.3003273,0.10146518,0.032356147,-0.16381626,0.28990656,-0.08787267,0.07811465,-0.14074747,-0.6749861,0.049375717,-0.14588541,-0.3829723,0.54236156,-0.07821553,0.32192785,0.20241661,-0.061381463,-0.15369691,0.59076345,0.06567837,0.57159495,0.08319429,-0.042405583,-0.37434617,0.2084994,0.15771252,-0.21933502,0.04690043,-0.15954584,0.17712136,-0.5717495,0.4328825,-0.22294684,-0.43317923,0.0067470195,-0.18518928,-0.006211537,0.63330495,-0.05425,-0.227042,-0.16825113,-0.12905437,-0.357712,-0.29674903,-0.12548338,0.07270065,0.21549359,-0.13365367,-0.20918849,-0.119295925,-0.16186818,0.26028237,0.069605194,0.49336928,0.22844149,-0.067051075,-0.3090594,0.09382091,0.3175434,0.46209946,-0.022948574,-0.019369427,-0.12738104,-0.56994045,-0.5597131,0.22794189,0.037833616,0.2962376,0.13320015,-0.14221494,0.81448555,-0.20014653,1.0671436,0.13923642,-0.35873163,0.24475415,0.5818163,-0.036068074,-0.11772822,-0.33370668,0.90548426,0.54589725,-0.07942363,-0.06478038,-0.28817686,-0.096708044,0.08135331,-0.273225,-0.06489112,-0.008814188,-0.50204283,-0.010261583,0.15584472,0.23855467,0.24352536,-0.17741965,-0.09196485,0.2610336,0.0347062,0.23413117,-0.42212582,-0.3583519,0.37200195,0.13065995,0.041174565,0.075345956,-0.3684381,0.51740175,-0.44131315,0.1036541,-0.44811124,0.18957087,-0.3058061,-0.29408118,0.26651117,-0.01684734,0.3719679,-0.37931675,-0.35730037,-0.27596468,0.36024266,0.3236111,0.14777349,0.6046576,-0.23734204,-0.005022588,0.031690706,0.5036472,0.6563694,-0.29987144,0.0042250515,0.2826678,-0.4143149,-0.6429402,0.26464683,-0.44847286,0.07655353,0.1636629,-0.23060669,-0.31237724,0.24221581,0.073820226,0.064866945,-0.00035971802,-0.8087186,-0.16521874,0.08795827,-0.18909802,-0.17043617,-0.26678938,0.1771544,0.52459,-0.27464774,-0.41073525,0.08429897,0.1124145,-0.10537586,-0.74380016,-0.180296,-0.28389937,0.31253582,0.002023856,-0.32355502,-0.0919795,0.21620461,-0.57038474,0.1961173,-0.03952004,-0.29273683,0.04299965,-0.28345966,0.020231605,0.787958,-0.31959313,-0.123534456,-0.46743917,-0.4127839,-0.8110569,-0.2859067,0.15664919,0.2228241,-0.021096965,-0.45638457,-0.125491,-0.22584338,-0.067909926,0.012375092,-0.57798386,0.40289906,0.14047,0.4398155,-0.105975464,-1.0128057,0.2804725,0.009341021,-0.19815612,-0.7327353,0.43498433,-0.21123073,0.7607819,0.11017787,0.07734346,0.21936718,-0.53031856,-0.034036182,-0.24109516,-0.039126635,-0.6918738,0.011636992 -481,0.3446981,-0.44895157,-0.53131795,-0.28600302,-0.3401588,0.036297195,-0.30300373,0.22405945,0.160829,-0.456469,0.0036115348,-0.10315341,0.015480216,0.36093363,0.0285424,-0.7186662,0.08517812,0.23627737,-0.9391098,0.78271115,-0.36955288,0.2217963,0.034920607,0.13595484,0.058731396,0.09379522,0.17939027,-0.041408997,0.073401555,0.06199302,-0.07455923,0.13421357,-0.7445584,0.28141105,-0.20095423,-0.33517963,-0.13337891,-0.31245366,-0.5188165,-0.950206,0.24335076,-0.9110027,0.50644624,0.039341625,-0.51388675,0.049606062,0.18611836,0.2650939,-0.2717563,0.017839551,0.17463943,-0.18237665,-0.18936817,-0.25466672,-0.10277689,-0.6350408,-0.6190461,-0.039528172,-0.7300132,-0.1872833,-0.24788703,0.16080384,-0.4046075,-0.08587929,-0.3306314,0.61956173,-0.41508606,-0.008369259,0.32258892,-0.07125074,0.36944762,-0.62250036,-0.023002336,-0.1981043,0.17519979,0.12670384,-0.40943593,0.29794577,0.16331956,0.63759816,0.15036337,-0.4046936,-0.051092785,0.0109653305,0.2660345,0.31626627,-0.09123443,-0.3509334,-0.30947286,0.005896021,0.25037402,0.031069806,0.06642436,-0.5162772,0.07187538,-0.012485419,-0.22352849,0.4982935,0.5556559,-0.31020445,-0.29634953,0.28944764,0.5796889,0.16979769,-0.07966401,0.103787936,0.015965786,-0.49549118,-0.19434987,0.37545165,-0.2175075,0.45082203,-0.2678699,0.059414454,0.48658317,0.0037657928,-0.12699112,0.09333408,0.04808536,0.02224498,-0.25748068,-0.29558092,0.27003944,-0.6314634,0.18850546,-0.34594443,0.7615763,0.15848604,-0.5761566,0.3895026,-0.5593753,0.31427914,0.013534094,0.6570907,0.9746126,0.5527911,0.16617881,0.8750424,-0.25807407,0.1862736,-0.09001192,-0.21804866,0.22819516,-0.42207056,0.20527972,-0.5365431,0.032096915,-0.3545961,-0.16382241,-0.19022521,0.5040234,-0.63877237,-0.17117366,0.10111792,0.7949027,-0.29082975,0.13986737,0.8165994,0.95571774,1.1601247,0.24320388,1.2477351,0.4640977,-0.17121112,0.137036,-0.09354247,-0.8260344,0.30504563,0.30733278,0.37130037,0.34520164,0.0026144162,0.09345382,0.61273605,-0.5277161,0.09902471,-0.33532366,0.38427618,-0.07502501,-0.08004982,-0.4070718,-0.1386293,0.12426896,0.18438493,-0.040158067,0.23648202,-0.22295353,0.36663008,0.20673643,1.0580344,-0.26938254,-0.08884532,0.009385331,0.3524361,0.37831184,-0.24191894,0.023143645,0.28925195,0.35558385,-0.033783454,-0.79406154,0.14315674,-0.31712213,-0.24020742,-0.28221944,-0.32763788,0.22481622,-0.23294957,-0.431758,-0.29828763,0.054554876,-0.25025484,0.3954709,-2.3132937,-0.39016366,-0.13204758,0.2083218,-0.2779142,-0.20296358,-0.02638838,-0.48257142,0.45955205,0.35014105,0.36370888,-0.61281097,0.47405097,0.4480531,-0.5628478,0.013833689,-0.6525315,-0.114714704,-0.08018499,0.5946168,-0.0066779256,-0.23804423,-0.17822869,0.24611673,0.45881408,-0.13430789,0.118027054,0.3619514,0.23682788,-0.13338907,0.2569114,0.04901245,0.46788666,-0.4213934,-0.19691847,0.41718966,-0.20837021,0.17170055,-0.116739385,0.11898391,0.56358135,-0.63153166,-0.79474896,-0.7002859,-0.32297948,1.2073725,-0.27529714,-0.62552696,0.18794203,-0.4468477,0.034488156,-0.028994232,0.41926554,0.036781397,0.09314256,-0.8882141,0.08254867,0.0086760735,0.42214495,-0.004392994,-0.10795855,-0.37483045,0.8276431,-0.029094057,0.3684821,0.31150725,0.23249182,-0.37547573,-0.5532921,0.22170803,0.9406944,0.5557275,0.1007442,-0.3011255,-0.24136247,-0.2985219,-0.086977184,-0.049281757,0.54291683,0.8109626,-0.20000724,0.01209448,0.35702363,-0.19569634,0.16462313,-0.30073524,-0.4714241,-0.13762853,0.16948102,0.4977108,0.4520151,-0.027210103,0.35495177,-0.048761863,0.20385087,-0.010256158,-0.61549133,0.5965192,1.2913922,-0.19476148,-0.1989266,0.6071829,0.40991262,-0.42021242,0.55877227,-0.6836597,-0.42937043,0.47851223,-0.11835712,-0.41921633,0.17916194,-0.4946306,0.30473432,-0.83768827,0.4315755,-0.39990163,-0.43733335,-0.63325816,-0.11398571,-3.253381,0.3036407,-0.2803442,0.0710411,-0.33472922,-0.09997046,0.3824268,-0.24666573,-0.5949564,0.18102732,0.12530799,0.7483324,-0.114572264,0.05206603,-0.26432696,-0.25162292,-0.35198328,0.20799412,0.0584948,0.25185174,-0.13025129,-0.3728643,-0.021846652,-0.24040566,-0.45419958,0.035828386,-0.73920745,-0.4706059,-0.30657127,-0.74601406,-0.17693543,0.60772896,-0.096330605,0.030734697,-0.43310028,-0.0040172297,0.067361765,0.37035236,0.2165047,0.23860228,0.17636187,-0.027228998,-0.25064304,-0.33158416,0.024306433,0.062073197,0.10654241,0.35511035,-0.021082338,0.2199429,0.56371146,0.63575107,-0.0332176,0.827007,0.5785913,-0.20276248,0.58576244,-0.15063807,-0.3839807,-0.5564206,-0.24253988,-0.14812963,-0.44857496,-0.37659758,0.0960396,-0.33331856,-0.80137354,0.54700553,0.087239124,0.2703602,0.20868738,0.2560515,0.4594238,-0.06833914,-0.023812333,-0.16541897,-0.3005306,-0.5694122,-0.39608738,-0.6338049,-0.48586056,0.11632083,1.1495736,-0.2274802,-0.16503975,0.081672944,-0.25027758,0.03928293,0.2812274,-3.022807e-05,0.2858149,0.4215847,0.105300106,-0.59960705,0.29299498,0.0903017,-0.08451391,-0.45328754,0.40020236,0.6666755,-0.7209038,0.57542473,0.3370042,0.13611527,-0.31106117,-0.6425049,-0.05878133,0.13289821,-0.26115808,0.46443796,0.13502368,-0.80219287,0.49807438,0.34479758,-0.16899464,-0.8916413,0.4032764,-0.123030506,-0.24576625,-0.107962444,0.4579865,-0.052145384,0.16378136,-0.32477376,0.30145612,-0.4723224,0.2924786,0.29785267,-0.09744661,0.28177136,-0.16717906,-0.35961398,-0.63651377,-0.14331175,-0.7018643,-0.27880505,0.40082034,-0.017179267,-0.01816873,0.10889349,0.06382406,0.5628017,-0.01676592,0.14416294,-0.1233222,-0.41358042,0.5208892,0.63726467,0.3685739,-0.34542805,0.7672245,0.08465236,-0.13712831,-0.2728043,0.21390018,0.44746274,0.29141337,0.54758126,-0.036837477,0.093219735,0.30114624,1.004418,0.09164839,0.49753904,0.139169,-0.05807044,0.24656649,0.058347754,0.15503871,-0.18110932,-0.27774262,-0.040491965,-0.10498619,0.21551068,0.43747273,0.07029659,0.25099745,-0.025549177,-0.2761487,-0.10708822,0.16598178,-0.029048989,-1.4760295,0.4216263,0.36572525,0.71032715,0.6233597,0.060009796,-0.12306412,0.659377,-0.2300411,0.07849259,0.30409268,-0.20172314,-0.41167974,0.5335789,-0.8334393,0.29376957,-0.098123655,0.05289316,0.07460264,0.29767373,0.5026459,0.8809232,-0.27575547,0.027093444,-0.14800835,-0.22050692,0.31127867,-0.2806977,0.16225983,-0.25612456,-0.61611134,0.603638,0.3532825,0.3548103,-0.41453415,0.027744489,0.002525385,-0.2815999,0.3194154,-0.06939762,-0.1810629,-0.051865228,-0.5963478,-0.19312513,0.49020672,-0.014619546,0.12350474,0.044522427,-0.21039455,0.172246,-0.20379052,0.018166568,-0.1394292,-0.86263263,0.057494458,-0.28509843,-0.30622318,0.64622515,-0.2793717,0.027674558,0.14356425,0.0009827401,-0.4291846,0.3813491,-0.10855518,0.55784494,0.23079333,-0.125542,-0.24308501,0.16948901,0.115061365,-0.30899972,0.1318811,-0.3088037,-0.0007382887,-0.7091292,0.60305595,-0.07058236,-0.3306806,0.3538305,-0.14973833,-0.10040041,0.5855913,-0.30753675,-0.19099239,-0.039292198,-0.20103848,-0.16584696,-0.28274596,0.011865114,0.41493845,0.11940997,0.06125245,-0.2029678,-0.055056214,-0.020756837,0.62593764,0.12777461,0.26513335,0.49173784,0.113789186,-0.53538895,0.05885556,0.27131665,0.6156203,0.27704784,-0.14141823,-0.008318944,-0.30869347,-0.42671338,0.02710058,-0.18111612,0.2613876,0.0366774,-0.4045739,0.81488526,0.16179757,1.288468,-0.053524118,-0.32443067,0.16435088,0.51865035,0.04019245,-0.08727678,-0.46207744,0.7073207,0.6525154,0.0659947,-0.0013403083,-0.5149099,-0.10821118,0.24705853,-0.215009,-0.019211207,-0.05594259,-0.84382313,-0.22009227,0.22800843,0.29682872,-0.072564304,-0.14104661,0.032985296,0.1266232,0.013661628,0.20524856,-0.5879334,0.092829965,0.37852404,0.18197353,0.00014162276,0.10840397,-0.37827772,0.313699,-0.74499226,0.13234398,-0.29465818,-0.021507947,-0.091185294,-0.2815914,0.29958007,0.09873747,0.23377822,-0.4307025,-0.32582277,-0.21070337,0.7003452,0.2119062,0.041645806,0.7520593,-0.32461643,0.217276,0.27087972,0.42050728,0.9822566,-0.2887566,-0.002582005,0.084696345,-0.50304806,-0.7517198,0.3969216,-0.2326304,0.2230886,0.069109164,-0.33217782,-0.46613583,0.13542648,0.15016055,-0.04583892,0.018731007,-0.81891817,-0.1509881,0.22004938,-0.20738307,-0.06985763,-0.34514925,0.16719405,0.52554816,-0.34140936,-0.21248582,0.19371383,0.29839143,-0.3890055,-0.6722707,-0.044255793,-0.43471226,0.33229417,0.13940834,-0.3868007,0.054467957,0.14617382,-0.7322666,-0.012103117,0.23382302,-0.32873815,0.039469905,-0.19420226,-0.0025587422,0.82877046,-0.1501993,-0.036237843,-0.51485795,-0.6644575,-0.97766685,0.017928004,0.6561464,0.24747238,0.21327095,-0.8198747,-0.07563334,-0.09750442,0.17982088,0.15113533,-0.60780233,0.41690734,0.13126907,0.53133184,-0.05363765,-0.9889039,0.20856924,0.14920865,-0.056085493,-0.47483233,0.3767992,-0.16384973,0.79292476,-0.011915388,0.07458056,0.056340553,-0.68785137,0.014652938,-0.3198536,-0.22292875,-0.6256132,-0.047882777 -482,0.3680927,-0.17802821,-0.5020959,-0.09681561,-0.083916456,-0.05829483,-0.21205862,0.4026619,0.20841344,-0.6391501,-0.26950482,-0.15919639,0.14847188,0.2844012,-0.2310756,-0.64751357,-0.069654554,0.16193981,-0.5556933,0.68544513,-0.42621616,0.15217979,0.07578818,0.42804572,-0.05539647,0.13183907,0.25967988,-0.1355461,-0.18885684,-0.08525142,-0.12396642,0.4569594,-0.37894592,0.13780497,-0.3004277,-0.33680508,0.10689247,-0.49968085,-0.06439202,-0.8550853,0.17104274,-0.82022476,0.26955178,0.113072306,-0.27125183,0.15104313,0.081318855,0.23200697,-0.25876242,-0.077595055,-0.040959407,-0.08123361,-0.25987023,-0.23712929,-0.19847143,-0.27743337,-0.50973815,0.032304283,-0.56395715,-0.10172518,-0.11154304,0.1724958,-0.26642358,0.0028044533,-0.1792212,0.7252848,-0.4026785,-0.101094484,0.15483202,-0.07780754,0.2890387,-0.59348804,-0.23093426,-0.19230944,0.30733195,-0.1941445,-0.2645487,-0.025192574,0.3024675,0.39617774,-0.07599529,-0.17757845,-0.32872,-0.12209172,0.17401473,0.4537361,-0.1814978,-0.6898916,-0.12435738,0.1254031,-0.08698317,0.19888408,0.12718195,-0.26445675,-0.03883365,0.011026424,-0.28891647,0.3890581,0.43154278,-0.43010652,-0.16140276,0.28725842,0.58660525,0.1184017,-0.22543307,-0.18703806,0.10443139,-0.58047485,-0.067829095,0.27441117,-0.26035655,0.6353659,-0.16035855,0.37036267,0.32464066,-0.12046385,-0.063895054,0.035866816,0.06502962,-0.09945768,-0.32891205,-0.19305593,0.32924494,-0.32863492,0.144157,-0.31417564,0.7577662,0.09985822,-0.7639168,0.29778728,-0.57171375,0.06886345,-0.105039574,0.4579043,0.6313531,0.261232,0.33997628,0.50248766,-0.2592369,-0.046441827,-0.26601493,-0.22334735,-0.2823026,0.03696199,0.17782788,-0.4021947,0.00915432,-0.0945876,0.006243492,0.018680537,0.19175164,-0.4677752,-0.21482146,0.18638472,0.7026705,-0.25134152,-0.27324256,0.7802126,0.96474665,0.86570734,0.15706451,1.0477813,0.0563297,-0.14543933,0.21794467,-0.22571822,-0.65235186,0.34697708,0.48739636,-0.016956776,0.20974962,-0.064872034,0.009345611,0.4768796,-0.3228402,-0.033066202,-0.16981514,0.057147533,0.18059689,-0.023630932,-0.36948848,-0.2499125,-0.15384872,-0.031266943,0.10373353,0.21383287,-0.1659232,0.17305861,0.10577831,1.3152114,0.0028357257,0.08811456,0.16976328,0.2479387,0.17987269,-0.0975701,-0.07831529,0.29538757,0.2093984,0.19929409,-0.5606661,0.11708444,-0.20533027,-0.39945015,-0.15565181,-0.31653416,0.030204332,-0.035486255,-0.4732393,0.019760981,-0.14664106,-0.46450686,0.48428893,-2.8248692,-0.15618971,-0.2124116,0.38695887,-0.33242828,-0.38454112,-0.17617404,-0.51763135,0.421855,0.3056482,0.5044339,-0.48701605,0.45514187,0.33276936,-0.5351357,-0.107011996,-0.72792363,-0.11625707,-0.07293781,0.31738058,-0.09219267,-0.06764362,0.016294496,-0.04474553,0.46451917,-0.022503927,0.06312462,0.29289564,0.41530475,0.08503589,0.51386297,-0.07541355,0.46877038,-0.4626012,-0.26796433,0.13744275,-0.44739556,0.35423616,0.08251255,0.14617541,0.5219975,-0.5275907,-0.9683178,-0.7245836,-0.3876989,1.2783278,-0.23663945,-0.3895078,0.15660828,-0.23477913,-0.28021362,-0.13820279,0.58389306,-0.013100128,-0.117115356,-0.7355346,0.099408895,-0.14491548,0.37204966,0.0040958,0.027392983,-0.42161146,0.5348225,-0.039235603,0.47889552,0.44609985,0.2188797,-0.409407,-0.31788647,-0.19277768,1.0557438,0.13949938,0.12165292,-0.15697162,-0.35040057,-0.4021742,0.27750865,0.09388695,0.74075985,0.5675491,0.014215897,0.11520877,0.33270726,0.104798265,0.15873285,-0.19236402,-0.32535148,-0.18757741,0.17124517,0.5752916,0.50631076,-0.15881954,0.4485104,-0.042029787,0.2691277,-0.26462778,-0.26594272,0.35145918,0.9674747,-0.09853941,-0.30646852,0.74094385,0.719539,-0.35167336,0.41874337,-0.5260508,-0.3572937,0.39678374,-0.25017175,-0.3767973,0.14686368,-0.3073516,0.16728765,-0.8747851,0.1449458,-0.48315677,-0.31545404,-0.5780743,0.0010515526,-3.424012,0.3827115,-0.109360635,-0.15555638,-0.13798217,-0.15910459,0.018431088,-0.65622485,-0.5783015,0.20994139,0.06746939,0.6809094,-0.122740276,0.13843288,-0.3075814,-0.4329826,0.04763906,0.2099222,0.25434333,0.26720157,-0.059416264,-0.43813968,-0.036172524,-0.116003335,-0.20152117,0.15492015,-0.5981397,-0.48090395,-0.11535943,-0.6537575,-0.28278923,0.54180837,-0.51031893,-0.0089074625,-0.18556423,0.09583602,-0.053083126,0.45567992,0.081845745,0.39932826,0.05941093,0.014935772,-0.13302918,-0.23409574,0.31011805,0.06778354,0.23541522,0.38932326,0.06325383,0.34955302,0.5845549,0.6039702,0.14760168,0.8936169,0.46552268,0.039246727,0.22717594,-0.21896766,-0.32471418,-0.59390926,-0.14267023,-0.058956314,-0.41429797,-0.37917015,0.019844458,-0.18190773,-0.6599408,0.69880223,-0.09909115,0.001403451,0.061128434,0.55974597,0.6587231,-0.23471898,0.025614897,-0.010047853,-0.054871585,-0.35463926,-0.2955975,-0.5357981,-0.3110038,-0.10788178,0.85357505,-0.25452772,0.053947877,-0.04939456,0.014128526,-0.10597712,0.2819809,0.14990559,0.25493518,0.5647495,-0.0056687393,-0.5365109,0.388611,-0.1608354,-0.22556917,-0.43479443,0.19930847,0.64636296,-0.7107871,0.63650185,0.42096996,0.04780018,-0.28461298,-0.53540236,-0.23372777,0.15430146,-0.22394316,0.33417436,0.33336282,-0.74318075,0.36351907,0.27256477,-0.04090199,-0.83145255,0.60773826,0.011119316,-0.43495902,-0.2496084,0.46472147,0.18653458,0.13097341,-0.10472986,0.061486024,-0.18590677,-0.036512237,0.20388897,-0.089826554,0.28353426,-0.36755848,0.010045166,-0.73890036,0.015098144,-0.49558416,-0.1934046,0.4605206,0.036387663,0.020382958,0.30146632,-0.0506373,0.36190984,-0.3248471,0.022556469,-0.10716281,-0.08263152,0.27927423,0.45790133,0.43004894,-0.43771216,0.55160224,0.0761954,0.0035238713,-0.2910907,0.0057200096,0.34161735,-0.093068264,0.46885642,-0.14533901,-0.2855583,0.38040745,0.6747206,0.16858149,0.46839082,0.021459272,0.08767029,0.25260928,-0.009002621,0.18485768,-0.09792581,-0.44267365,-0.01759786,-0.15373796,-0.027357524,0.42607614,0.01530686,0.30338442,-0.06630662,-0.2642001,-0.01427238,0.27547076,0.13692363,-1.0545596,0.36181214,0.07957124,0.8607734,0.5423514,0.008356363,-0.021922419,0.5241275,-0.23899902,0.13711514,0.3453258,-0.06966578,-0.45794976,0.6761485,-0.52976304,0.42854548,-0.15178262,0.015324754,-0.17590208,-0.22519304,0.4211646,0.9027171,-0.1841778,0.11527262,0.14193963,-0.19941129,0.12058446,-0.39560536,0.048696768,-0.5761337,-0.2674315,0.4982275,0.50425965,0.42288318,-0.2740592,-0.011326909,0.24211435,-0.12323973,0.22719419,-0.007071609,0.16106993,0.024796464,-0.6118535,-0.1447489,0.59738356,0.25148895,0.2800387,0.024563989,-0.14956535,0.3813567,0.07926197,-0.10836562,-0.0725881,-0.4563551,0.0034674257,-0.4729656,-0.44060907,0.36560142,-0.18868224,0.25128055,0.23655313,0.09356292,-0.414757,0.3636509,0.23272878,0.685023,0.030600289,-0.013199575,-0.34513053,0.18476315,0.14205872,-0.13200577,-0.08802409,-0.4675368,0.14861448,-0.76402706,0.42604887,0.06751121,-0.43613508,-0.20445114,0.07857543,-0.00295798,0.66916037,-0.0091582285,-0.13805912,-0.19121253,-0.17215236,-0.23363644,-0.18955682,-0.1457638,0.30662978,0.0639665,0.06781434,-0.14392199,-0.12541218,-0.11335526,0.47278056,0.0631947,0.312511,0.3522167,0.32387736,-0.4009056,-0.06123505,0.07694664,0.50238585,-0.084206276,-0.2816946,-0.257107,-0.32206288,-0.2652543,0.08800163,-0.016536668,0.35263705,0.14305891,-0.2731249,0.6468348,-0.07937608,1.1791633,-0.032992203,-0.31403407,-0.10018466,0.32840565,-0.106072895,-0.1626646,-0.2789586,0.85290784,0.35189542,-0.004644955,-0.09580579,-0.39918983,0.1500341,-0.029667,-0.14894325,-0.1393308,-0.01087334,-0.45258352,-0.23812751,0.03907764,0.25344074,0.20783354,-0.11652749,0.17713992,0.22548658,0.038902845,0.24920593,-0.3990078,-0.019840576,0.21123226,0.28630772,0.00030078492,0.10482761,-0.32196563,0.41027805,-0.58076704,0.18018985,-0.42460394,0.23148747,-0.21893483,-0.23339461,0.25763878,0.10446908,0.4271207,-0.22898181,-0.304901,-0.24874587,0.53885114,0.2531109,-0.008401553,0.4579518,-0.061605264,0.04808296,0.03822043,0.5878777,1.0280324,-0.23038262,-0.049731623,0.265932,-0.18498583,-0.64200646,0.23533864,-0.4564383,0.20225249,0.016241482,-0.116034426,-0.6439997,0.20018019,0.24539763,0.13053848,-0.047569346,-0.5365928,-0.21714692,0.23033683,-0.35180655,-0.17945059,-0.32306972,0.15749131,0.5608894,-0.17930917,-0.17932236,-0.099270016,0.113193505,-0.18600471,-0.5064929,-0.079776905,-0.38072324,0.19600303,0.16510856,-0.3093695,-0.14949168,0.07949004,-0.5001359,0.056138445,0.15466931,-0.3054588,0.049749475,-0.22840214,-0.10697479,1.0248339,-0.15210494,0.23264627,-0.28489563,-0.60403883,-0.701225,-0.17489605,0.44654128,-0.09915937,0.044123083,-0.59065443,0.13556875,-0.08597923,-0.33683276,-0.12920116,-0.33641073,0.3973249,0.0867643,0.5178963,0.02853328,-0.71267796,0.09669775,-0.0018144349,-0.105965845,-0.4077413,0.3202885,-0.031813707,0.8605363,-0.026618041,0.13049266,0.42361653,-0.4385073,-0.089540064,-0.15675153,-0.08760571,-0.5363419,-0.016362138 -483,0.41468373,-0.09196275,-0.55435437,-0.1214716,-0.11826503,-0.14683099,-0.15782227,0.2198779,0.35867888,-0.18709598,-0.3146702,-0.31576434,0.2846279,0.16742921,-0.06188257,-0.8114487,-0.06568711,0.14635652,-0.53191566,0.4527221,-0.60914856,0.35852468,0.33933425,0.33971366,-0.059890293,0.35047886,0.27039048,-0.29865685,-0.029888082,-0.11161339,-0.24424772,0.24371971,-0.7739017,-0.12531857,-0.21162567,-0.2036048,0.13977164,-0.5641339,-0.3500991,-0.70042455,0.24432544,-0.95734614,0.4606911,0.24878922,-0.0751344,-0.046024095,-0.020077862,0.28752172,-0.2931567,0.02662653,0.0906151,-0.34208474,-0.002066157,-0.44715604,-0.062127892,-0.18601812,-0.41633147,-0.03362689,-0.4822922,-0.2932989,-0.18071495,0.033155546,-0.3779434,-0.09779904,-0.16360193,0.42471418,-0.31878945,0.039113674,0.37039435,-0.33589777,0.32221738,-0.442227,-0.004224934,-0.17997502,0.43430978,-0.27508304,-0.30348292,0.3814306,0.32114103,0.39426127,0.14790478,-0.25982243,-0.07085142,-0.12632102,0.2391735,0.60797256,-0.17542592,-0.6130548,-0.0792402,0.21223901,0.14969274,0.38219917,-0.054610487,-0.27077445,0.014337759,-0.08198594,-0.2533697,0.5973839,0.6143032,-0.12527715,-0.35978687,0.11405497,0.36524916,0.27522066,-0.077755995,-0.19575585,0.062579446,-0.66874087,-0.118875355,0.23571433,-0.29303405,0.77097917,-0.11248409,0.031778913,0.89873886,-0.41248763,0.015608197,0.0329663,-0.046716347,-0.08079368,-0.27210048,-0.15339485,0.22060637,-0.5158376,0.09058625,-0.31688365,0.86081386,0.34391972,-0.69337964,0.3571451,-0.6287071,0.28249434,-0.14130239,0.70648015,0.5733765,0.3390687,0.6177938,0.707979,-0.39581358,0.24032404,0.1475097,-0.8223902,0.116772324,-0.09212711,0.17319344,-0.29933894,-0.18678738,-0.097293615,0.015006742,0.22908849,0.1777355,-0.50169545,0.018276805,0.16769662,0.8107839,-0.28385794,-0.015025312,0.46031407,1.0292039,0.8653759,0.07354442,1.0172328,0.35171145,-0.36108735,0.21806125,-0.08617736,-0.89967763,0.18938078,0.25277415,-0.5586364,0.3761939,-0.07591844,-0.11112602,-0.024085673,-0.50102943,-0.1379978,-0.04010065,0.30900174,0.16433102,0.08352267,-0.5772628,-0.25229168,-0.1917626,-0.12467872,0.15180658,0.123482466,-0.21440049,0.19983426,-0.016272712,1.2549942,0.002748232,-0.027571656,-0.0054207323,0.59438443,0.339283,0.08322363,-0.16882075,0.6369066,0.36253738,0.063966006,-0.58441776,0.15136792,-0.3388516,-0.2334256,-0.030703926,-0.38100398,0.17038852,0.19879875,-0.38602355,-0.011216239,0.016996296,-0.19339241,0.5392911,-2.644583,-0.15856415,0.021060353,0.39258865,-0.3251529,-0.09324595,-0.073048346,-0.5477039,0.12278008,0.22823748,0.5515657,-0.8286682,0.23999853,0.5073494,-0.34494156,-0.23731488,-0.7060643,-0.09566034,-0.099241406,0.25202683,0.17837568,-0.054371174,-0.030307604,0.18946391,0.57678026,0.14012839,-0.024455212,0.3882116,0.49627057,0.2632949,0.59634584,-0.093343996,0.617474,-0.25579283,-0.04988688,0.29167542,-0.18014918,0.16182432,-0.1883297,0.102228835,0.48048887,-0.19753915,-0.7737007,-0.44606903,-0.43852293,1.0528249,-0.6223246,-0.3435864,0.10966144,0.046761915,-0.0761227,-0.15014611,0.63806176,-0.16443335,0.07887698,-0.6650824,0.11843776,-0.007366663,0.3038946,0.15883376,0.070902795,-0.17557658,0.5874482,-0.01390318,0.35160643,0.34017518,0.22097798,-0.09067186,-0.5977724,0.2367058,0.826603,0.16281079,0.044081714,-0.2705638,-0.22862807,-0.025052048,-0.050094996,-0.10095399,0.6875002,0.9649733,-0.25697592,-0.008910465,0.36893636,0.14794411,0.059714172,-0.08184657,-0.34810868,0.03557866,-0.34976757,0.54960436,0.84653074,-0.29979154,0.43303186,-0.12721948,0.45608833,0.22614022,-0.4022708,0.55126613,0.8147377,-0.05074475,0.11878893,0.30470002,0.25987422,-0.5370075,0.42307436,-0.71529907,-0.082321525,0.8087146,-0.19771014,-0.4095373,0.46678594,-0.22663428,0.21422273,-0.9117601,0.6158185,-0.061930634,-0.046547867,-0.35950646,-0.07415092,-3.815584,0.12595716,-0.22275823,-0.15120345,-0.33480757,0.029296564,0.18481316,-0.45524025,-0.45994437,0.2608657,0.20650621,0.59331506,-0.14105724,0.16764012,-0.24992627,-0.22617526,-0.11401326,0.22587603,0.3175953,0.3138998,-0.110022776,-0.27828872,-0.05733393,-0.057353582,-0.3866719,0.3002067,-0.48100817,-0.50390106,-0.025627958,-0.74678934,-0.52845216,0.70726734,-0.32969484,-0.057585336,-0.124151014,0.09018517,-0.24200033,0.19451088,0.16286002,0.20765615,-0.1334762,0.22882175,0.20632638,-0.2905429,0.63656515,0.13414244,0.29295728,-0.15071115,0.12772328,0.028778953,0.38186315,0.52718383,0.04247505,0.88878196,0.3652195,-0.057634678,0.13163163,-0.35872358,-0.2335667,-0.5776398,-0.34129003,-0.0072112354,-0.31299734,-0.383937,-0.118051834,-0.34145296,-0.6811235,0.45698547,-0.22855577,0.28968665,0.21824785,0.42096394,0.56105524,-0.20279603,0.13118722,0.12779164,-0.16156918,-0.6184406,-0.058021355,-0.6859257,-0.36269614,0.021612173,0.474344,-0.25044155,-0.062303305,-0.13821992,-0.23636632,0.09452391,-0.13270348,0.075831935,0.32333955,0.5550867,0.009726779,-0.63680035,0.4642895,-0.05527141,-0.26960853,-0.6155989,0.052518193,0.70425725,-0.9492418,0.5282096,0.52604747,0.021719651,0.13868397,-0.3537662,-0.52611566,0.13976549,-0.19827953,0.20002404,-0.002688045,-0.6216044,0.3152712,0.1996573,-0.5531097,-0.61187005,0.43108085,-0.032857124,-0.53108513,0.044680197,0.3146233,-0.11276805,-0.107530616,-0.26893547,0.020957666,-0.4337597,0.14316799,0.22204114,-0.07987369,0.29330727,0.1892573,-0.16563457,-0.74304825,0.2173625,-0.48126495,-0.31595343,0.47908762,0.043276664,0.079224534,-0.0021680484,0.16388874,0.27770147,-0.26869386,0.066832885,-0.009487727,-0.3518072,0.47082683,0.538049,0.39591888,-0.35014957,0.60189193,0.06692076,-0.097745225,0.29810742,0.029242473,0.26485884,-0.12500918,0.14571701,0.17138341,-0.32031778,0.28771195,0.62744516,0.22828649,0.5100068,0.12503193,0.20650244,0.5644784,0.060926005,0.096098565,0.28051317,-0.59713405,-0.21263222,-0.07867039,0.1772799,0.49564803,0.37516487,0.22020365,-0.024268549,-0.30665037,-0.025352625,0.53365934,0.049967006,-0.88808995,0.31026408,0.17749232,0.6521399,0.41048443,0.15975332,-0.030025197,0.42605492,-0.24217692,0.21560341,0.28508332,0.09281384,-0.52609915,0.7161135,-0.37606642,0.446194,-0.18101634,0.04911323,0.07067147,0.044907644,0.20359187,0.92681557,-0.35340583,-0.031600896,0.024253286,-0.017648047,-0.0675049,-0.6400311,-0.0044783223,-0.43983018,-0.39932016,0.59330183,0.35103768,0.225725,-0.14387143,0.10490182,-0.038996067,-0.27425203,0.26006567,-0.154989,-0.065798976,0.32656497,-0.7976768,-0.08558437,0.59953827,-0.03966357,0.10801413,-0.3093643,0.002504327,0.15168843,-0.36158073,-0.22276597,-0.15455563,-0.7192139,0.077026,-0.27216253,-0.5463976,0.41437054,-0.2738833,0.29141644,0.22317825,-0.03998784,-0.15498972,0.39796802,0.35912216,0.899507,-0.06722627,-0.3870354,-0.602114,0.083060645,0.26067954,-0.19712353,-0.075372465,-0.44949257,-0.08786717,-0.3159276,0.6071389,-0.07526563,-0.33807823,-0.2438528,-0.23863024,-0.06614404,0.7737423,-0.14984424,-0.06812119,0.030247962,-0.21278638,-0.4012521,0.038438845,-0.33750665,0.19510213,0.5610616,-0.26677096,-0.0644934,-0.29199818,-0.28915465,0.42422426,-0.021715848,0.62834793,0.23344989,0.27233046,0.0065888925,-0.31566676,0.04962412,0.54229474,0.16518107,-0.16037582,-0.3867976,-0.2981759,-0.24568881,0.048675373,-0.08625417,0.19459246,0.010061459,-0.3467271,0.96450704,0.04279264,1.130672,-0.06600762,-0.27032995,0.029909855,0.4023741,-0.10190008,0.037134256,-0.4713744,1.0231051,0.4044379,-0.17036897,-0.17290027,-0.3330536,-0.08060198,0.05481175,-0.15160766,-0.027871989,0.033888187,-0.43338802,-0.46810588,0.28626013,0.34787026,0.17224862,-0.07028877,0.050695613,0.04675288,0.07701766,0.38195646,-0.5499669,-0.24490692,0.13194424,0.13522771,-0.031606294,0.16915782,-0.2547262,0.5003412,-0.42174625,0.06647516,-0.76952934,0.06809152,-0.13250014,-0.27667096,0.21505746,-0.14553542,0.45589036,-0.5817711,-0.30724066,-0.18586536,0.30763876,0.030643074,0.35094774,0.63685596,-0.11216123,-0.06331896,0.08429374,0.84275,1.40242,-0.36921835,0.0018304099,0.4316415,-0.46670654,-0.55770665,0.39700648,-0.27988508,-0.024275905,-0.2951224,-0.30643114,-0.6104589,0.09055045,-0.083010904,0.10934841,0.07261829,-0.5903828,-0.258372,0.3138783,-0.4306489,-0.2517041,-0.35514915,0.45214346,0.81211776,-0.2699087,-0.208111,-0.0071903286,0.07391267,-0.09990215,-0.50373155,-0.17926614,-0.15715672,0.29721078,0.123843886,-0.29027557,-0.20083322,0.32837793,-0.5480579,0.17063493,0.12813458,-0.43242761,0.19408153,0.13401024,-0.16860597,0.9092398,-0.3090979,-0.3502766,-0.6154711,-0.59996545,-0.96054214,-0.5265124,0.42534983,0.062921435,0.16953698,-0.40218914,0.050283004,-0.014091421,-0.2550759,-0.14354756,-0.45944998,0.3803039,0.0549363,0.716744,-0.3307141,-0.9966795,0.107012205,0.025318416,-0.30783927,-0.9282655,0.55419916,0.07059111,0.7267962,-0.009467423,-0.16390434,0.23477548,-0.16822395,-0.07160408,-0.3105769,-0.15781696,-0.82840323,0.082508974 -484,0.38969797,-0.29060543,-0.2663957,-0.11714233,-0.13108118,-0.07289187,-0.12515196,0.49373004,0.19919012,-0.28955537,-0.093853146,-0.23619193,0.050282534,0.24608923,-0.14966248,-0.6367692,-0.00320985,0.28522092,-0.270581,0.4734952,-0.5587191,0.20496355,-0.22184001,0.39116177,0.12840138,0.108650334,0.022894073,-0.16656138,-0.07391688,-0.27116483,-0.19154842,0.33272326,-0.56326187,-0.036964934,-0.04069362,-0.37722492,0.05092412,-0.4957345,-0.2905173,-0.8968311,0.27246246,-0.74483365,0.43637624,0.15690678,-0.24305765,0.416223,0.082771726,0.33975542,-0.25676265,-0.03203971,0.20537655,-0.123842,0.06636779,-0.19087921,-0.17720453,-0.24642505,-0.63064206,0.07048765,-0.22036567,-0.23919442,-0.26070815,0.20332097,-0.34668472,-0.11685333,-0.16280161,0.61614037,-0.39093626,0.12643759,0.0034058462,-0.1593323,0.2570468,-0.5612141,-0.2314991,-0.13873616,0.1589032,-0.12333167,-0.22146481,0.34574965,0.26304188,0.35150734,-0.11412993,-0.16886112,-0.38225392,-0.055584982,-0.015766643,0.50752074,-0.17463091,-0.5525947,-0.01657453,-0.011177695,0.03180044,0.14719924,0.16960427,-0.2238175,-0.21248291,0.11950926,-0.4037312,0.46074423,0.53092295,-0.36398178,-0.27102214,0.24752945,0.43957335,0.18760441,-0.11623517,-0.12983185,0.015051087,-0.6111193,-0.113290735,0.12518857,-0.3848602,0.534628,-0.30781123,0.1761241,0.6327734,-0.27774718,-0.06229382,0.04538822,0.15002576,0.09330916,-0.4066772,-0.48112524,0.33564758,-0.3030904,0.28387135,-0.33850747,0.91291326,0.21637847,-0.6245507,0.39686888,-0.6222864,0.19399871,-0.06158708,0.5701441,0.5552681,0.34661433,0.54240286,0.5553331,-0.3191128,-0.0029621674,-0.018887222,-0.23741971,0.044054627,-0.18611191,0.03861421,-0.34462547,-0.037932232,-0.09184202,-0.17104897,0.1155942,0.36307353,-0.49009305,0.060173567,0.14840303,0.7748218,-0.29971978,-0.03605555,0.6130259,0.9426437,1.1857355,0.1371089,0.9484594,0.26614702,-0.25756794,0.22487181,-0.28086954,-0.7177852,0.34570682,0.312149,-0.18825828,0.15765318,0.050151944,-0.04441841,0.34123978,-0.39460367,-0.09279744,-0.11617914,0.19028275,0.35401395,-0.071071856,-0.41226482,-0.44542724,-0.2586658,-0.0058756517,-0.004834819,0.2241332,-0.2720035,0.14984305,0.1232154,1.5246613,0.10882731,-0.022759655,0.13754065,0.5465782,0.10509081,-0.08265771,0.034993097,0.39013803,0.31367317,0.117795855,-0.6722657,0.10424492,-0.1766749,-0.40186608,-0.10587435,-0.17772517,0.0103564765,0.11315211,-0.45333093,-0.21532948,-0.21490589,-0.24735083,0.46882904,-2.498413,-0.09292466,0.07113424,0.40265882,-0.18865837,-0.43114412,-0.07990874,-0.5343421,0.44182867,0.2906455,0.4053485,-0.6931144,0.25961003,0.47890857,-0.47993743,-0.17156993,-0.72080386,-0.26198527,-0.09148069,0.18382852,-0.0028129725,0.13118914,-0.014330594,0.07065381,0.48617035,0.07968081,0.074919924,0.24258725,0.3790859,0.08153557,0.49538466,0.017760845,0.40980476,-0.18639752,-0.14299855,0.2070469,-0.5474497,0.12520656,0.02337017,0.015784632,0.49349028,-0.47134346,-0.8617743,-0.5661478,-0.25121778,1.2514383,-0.17007817,-0.39601284,0.27406687,-0.18296202,-0.17169641,-0.2721759,0.42770416,-0.24639456,-0.32940477,-0.7371876,0.02398667,-0.08917637,0.2938938,0.031533606,0.0017494765,-0.35686225,0.6868257,-0.036323544,0.3123861,0.33440492,0.070049375,-0.32253388,-0.6178952,-0.10168206,0.77632564,0.23397739,0.16241026,-0.26820067,-0.22235486,-0.14183912,0.038129702,0.02149564,0.43636507,0.6535951,-0.22056785,0.16492556,0.3043732,-0.014363931,-0.0033610738,-0.16423172,-0.26497933,-0.07922811,0.008703103,0.5628609,0.657091,-0.19286548,0.37230846,-0.028841317,0.1893163,-0.24690355,-0.26821387,0.39500067,1.3300744,-0.12202323,-0.2742434,0.566082,0.35431913,-0.36617997,0.3986712,-0.5030292,-0.18028353,0.4863854,-0.27207357,-0.41431966,0.13449016,-0.23648089,0.0014323466,-0.6214166,0.3958177,-0.08708931,-0.35460123,-0.6403735,-0.107139416,-3.2126613,0.13202275,-0.26144338,-0.21243364,-0.18286814,-0.081636354,0.06904316,-0.56108445,-0.6532069,0.19504881,0.17886904,0.635211,-0.088929646,0.11969283,-0.23458287,-0.30791405,-0.45593196,0.11626393,0.1420142,0.35560486,0.1714468,-0.42053515,0.0075652874,-0.03483508,-0.4084476,0.16155115,-0.5379554,-0.36552656,-0.097214855,-0.60076046,-0.46585524,0.64197856,-0.36413208,0.03986079,-0.17624341,-0.07517909,-0.11495188,0.45599616,0.13309576,0.12158251,-0.13257143,-0.02640659,0.025697025,-0.18500589,0.281587,0.0012934575,0.1631709,0.2574019,-0.031659234,0.096565045,0.41998944,0.7282584,-0.028078636,0.91309273,0.54559255,-0.05171961,0.28158367,-0.3412774,-0.1872789,-0.5444099,-0.3086866,0.012595003,-0.3650034,-0.3991877,0.017530737,-0.31130153,-0.73946345,0.52927995,-0.20829138,0.08117519,0.12632664,0.23832399,0.5496102,-0.043128755,0.049869753,0.05760139,-0.066623636,-0.49515718,-0.191806,-0.64260256,-0.27790648,0.29136306,0.88346016,-0.2233247,-0.023139307,0.02695813,-0.18887725,-0.11035749,0.13568428,-0.060574096,0.2418902,0.47783643,0.04741587,-0.65823257,0.32644004,0.05372761,-0.18142924,-0.5185365,0.19041386,0.7027038,-0.7321454,0.5935577,0.2353563,-0.047393158,-0.101906165,-0.45079672,-0.31121314,0.049580853,-0.26370722,0.3850096,0.15489075,-0.7421526,0.4253316,0.35800645,-0.18544064,-0.70537305,0.35356152,-0.005867399,-0.5061224,-0.106776275,0.37633684,0.074245736,0.18275896,-0.07933279,0.2518439,-0.5059045,-0.013690912,0.27584472,-0.110255666,0.113374956,-0.1675815,0.028687665,-0.7867546,0.05782682,-0.4280748,-0.31841245,0.13816,0.24059357,0.03618499,0.34380165,0.09771776,0.36225173,-0.104650006,0.1039375,-0.08799085,-0.081879325,0.2621768,0.4171589,0.4619482,-0.3446657,0.6039991,0.071035735,-0.094566345,-0.050225,-0.13421567,0.24246076,0.0470953,0.3726394,0.062233493,-0.29499513,0.38292143,0.72550994,0.2636645,0.5977366,-0.015489734,-0.009813162,0.30709144,0.13708515,0.22459039,-0.024705576,-0.48003948,0.06295141,-0.23979503,0.099396,0.5183478,0.04247709,0.27965254,-0.12270229,-0.19770098,0.015254388,0.30505493,-0.15167196,-1.0622377,0.37101644,0.1594189,0.84809846,0.6260608,-0.01151719,0.11257232,0.57847154,-0.28461555,0.052691616,0.31246153,0.12808622,-0.51550287,0.5752798,-0.6788698,0.33991468,-0.19223492,0.101688266,-0.13147381,0.05867881,0.40634376,0.5714092,-0.23547922,-0.037308518,-0.091356955,-0.21084279,0.19109347,-0.42489237,0.17483704,-0.50205415,-0.24352866,0.6237312,0.42322233,0.30134347,-0.3009154,0.10350033,0.10676826,-0.169216,0.15923288,0.0634754,-0.11589698,-0.0044707814,-0.69898605,-0.07245524,0.6609592,-0.18905717,0.08535076,-0.06886852,-0.14344479,0.18178664,-0.26903397,-0.16758479,-0.008076773,-0.6985257,-0.008129717,-0.14985725,-0.41639492,0.402243,-0.014703567,0.28889486,0.29198244,0.13828991,-0.3308573,0.22873066,0.34079537,0.541469,-0.117623165,-0.005319587,-0.3254966,0.23882093,0.03184732,-0.089802265,-0.025405837,-0.17701899,-0.08508389,-0.3394856,0.40364203,0.005046707,-0.29462305,-0.121092215,-0.08408345,-0.04656631,0.5901,-0.17358865,-0.01659197,-0.082700625,-0.30733484,-0.21780278,-0.22467087,-0.07797395,0.29058906,0.15380135,-0.16339114,-0.18893164,-0.23683871,-0.2239589,0.55341613,-0.08054121,0.34355816,0.30699342,0.1274973,-0.26828438,-0.26912636,-0.14034835,0.56407726,-0.003660147,-0.243799,-0.21945731,-0.42799,-0.2944527,0.1721135,-0.13560551,0.4158252,-0.020522278,-0.436632,0.7822161,0.054519698,1.1730683,-0.079865016,-0.41366702,0.09711027,0.3959565,0.02262673,0.014049315,-0.38195065,0.871509,0.38737854,-0.19502391,-0.08957524,-0.29522616,-0.018799443,0.29680303,-0.059897926,-0.082235664,0.044251904,-0.5443676,-0.30119544,0.2381354,0.19788414,0.108767636,-0.10102567,0.07668103,0.32426384,0.07859976,0.39811146,-0.24828616,-0.005082974,0.22702001,0.20604222,0.19722417,0.16104129,-0.31603268,0.308449,-0.2996963,0.15761563,-0.35635123,0.21460119,-0.06519757,-0.2093388,0.29970104,0.15822817,0.3204635,-0.27506813,-0.38518393,-0.26394218,0.41380072,0.02070001,0.22441237,0.39710525,-0.24847716,0.042621143,0.031754535,0.60825634,1.0103569,-0.061175868,-0.074004054,0.32502142,-0.4838463,-0.6558314,0.45209163,-0.18259433,-0.15593466,0.07857306,-0.121327244,-0.5976673,0.18807885,0.2492017,0.23706895,0.24608847,-0.5023367,-0.4109698,0.37764496,-0.41418082,-0.17429782,-0.2941267,0.16224486,0.6857822,-0.28189933,-0.39759383,-0.014582327,0.111139536,-0.23570636,-0.52275664,-0.08352829,-0.6087716,0.40190536,0.05323744,-0.30936903,-0.09738697,0.16344541,-0.53178287,-0.058239285,0.14555813,-0.33818755,0.179283,-0.27530444,-0.057557087,0.9356591,-0.19798425,0.2526424,-0.5714459,-0.56688225,-0.93941295,-0.2639699,0.6558907,0.09155154,0.063300565,-0.668529,0.048640914,0.03790241,-0.42433923,-0.070006326,-0.40370685,0.5083679,0.27193645,0.28531435,-0.059043936,-0.61101174,0.012906143,0.016461708,-0.19037768,-0.4875329,0.44673803,0.00886366,0.80846477,0.033554055,0.08550538,0.117894225,-0.31054962,0.1424885,-0.12837031,-0.2847175,-0.61555743,0.025539454 -485,0.41734442,0.032107465,-0.364383,-0.25434116,-0.31611258,0.13663131,-0.14266853,0.20950963,0.23545246,-0.24931218,0.04150709,-0.098652475,-0.08477325,0.3182973,-0.12393169,-0.8945287,0.01030964,0.077589706,-0.6556323,0.3013976,-0.65162724,0.44278318,-0.008824845,0.38407022,0.06356993,0.17263816,0.21055596,-0.15930709,-0.012525376,0.12156153,-0.2265851,0.2817343,-0.29606524,0.15154846,0.10988108,-0.2612451,0.117799595,-0.28944728,-0.28138685,-0.6335317,0.41919738,-0.59597605,0.45109928,-0.043896746,-0.30002818,0.037377674,0.10064909,0.3188865,-0.33438513,0.079246715,0.17226568,-0.24693012,0.036236834,-0.2021506,-0.35478926,-0.45924333,-0.5644122,-0.038965657,-0.56108195,-0.23079206,-0.33412108,0.2533205,-0.34071064,-0.006980101,-0.15593949,0.394797,-0.2764689,-0.00031154155,0.40935323,-0.11275485,-0.03064653,-0.31782553,-0.13119921,-0.1074595,0.1820878,0.09629426,-0.22312202,0.27598968,0.40000474,0.5128987,0.018037518,-0.35320896,-0.17016882,-0.099013075,0.009405152,0.58429044,-0.16730422,-0.20264015,-0.23394765,0.042656757,0.06903614,0.22369912,-0.032147296,-0.3537906,0.076079085,0.15081613,-0.30502367,0.36943296,0.46556023,-0.44589356,-0.2599653,0.2909275,0.4285552,0.04843103,-0.21173699,0.13990706,0.04079827,-0.51403135,-0.22921304,0.37316486,-0.056392193,0.48360792,-0.119490676,0.1432643,0.7523906,-0.1556934,0.05249833,-0.22229895,-0.009507533,0.08328617,-0.43152,-0.15951003,0.052070513,-0.5091399,0.039126977,-0.2727074,1.0884264,0.21335483,-0.81835014,0.43780506,-0.54061186,0.15408255,-0.21127032,0.6040577,0.8256864,0.2185546,0.2610691,0.875517,-0.56027275,0.015749995,-0.05623114,-0.3301946,0.042662553,-0.040633313,0.13845341,-0.39705893,0.19201492,-0.07857264,0.06858122,0.025433216,0.2089569,-0.37709013,-0.14044315,0.015652705,0.787912,-0.45706284,-0.058766555,0.5977118,0.93756014,0.83390737,0.06613851,1.3614888,0.48435095,-0.22961117,0.12218382,-0.50305927,-0.4409407,0.17012812,0.2721626,0.111680046,0.28193656,0.11574253,0.0031500577,0.49559408,-0.32864246,0.055018116,-0.068747304,0.17546192,0.10336504,0.030275583,-0.4112853,-0.26887062,0.14286469,-0.084532954,0.14306515,0.24072647,-0.23894222,0.18229917,0.022856057,1.5050857,0.13544154,0.093968056,-0.016281486,0.3972023,0.21210776,-0.06153575,-0.013180212,0.24651736,0.39821658,-0.17159064,-0.6285613,0.037964236,-0.33896497,-0.34201044,-0.22458461,-0.36216062,0.054853033,0.038762208,-0.4830969,-0.071849465,0.04667924,-0.19025213,0.42786208,-2.532677,-0.27716866,-0.116141416,0.28226337,-0.1711639,-0.35799122,-0.37980384,-0.45411274,0.26665574,0.27959195,0.26275122,-0.6068007,0.48750687,0.2220682,-0.16410685,-0.066993594,-0.7362683,-0.08484002,-0.1522462,0.22386935,-0.09782956,-0.01778605,-0.2926633,0.2512123,0.75370353,0.061484497,-0.0899707,0.08758545,0.4522552,0.093020044,0.66067594,0.1293091,0.60016507,-0.05754958,-0.092567235,0.2649162,-0.4075515,0.3799878,0.20254189,0.16841109,0.3717327,-0.44961846,-0.726921,-0.5960909,-0.4339878,1.0390383,-0.40740526,-0.24107066,0.28296635,-0.07704559,-0.19402638,-0.020713849,0.42234933,-0.14451388,-0.23190306,-0.6283511,0.09828969,0.02107157,0.20252508,-0.09448437,0.08679313,-0.10352895,0.70317096,-0.28252926,0.3904838,0.16417433,0.21957922,-0.09767883,-0.4848143,-0.07313397,0.7652919,0.25604862,0.11287297,-0.14044835,-0.30667064,-0.1672428,-0.22066982,0.13055287,0.58363265,0.76009476,0.08679023,0.0115874745,0.42756268,-0.34846336,-0.012623112,-0.020344911,-0.36720958,0.012905631,0.040615592,0.6027014,0.37206486,-0.18184786,0.39373034,-0.046638586,0.12509362,-0.245399,-0.46883938,0.50530994,0.8539597,-0.16142759,-0.21921794,0.5235124,0.3104758,-0.42077243,0.21107379,-0.56436086,-0.1335812,0.75665843,-0.06970928,-0.3385124,0.03481854,-0.3463318,-0.08473335,-0.85969085,0.27324483,0.0099931145,-0.514117,-0.43520844,-0.16013509,-3.8147469,0.09146308,-0.29556212,-0.007866031,0.023433836,-0.026441677,0.2630406,-0.495179,-0.4125681,0.025029985,0.046881445,0.43023345,-0.003936555,0.1441969,-0.33647403,-0.12908359,-0.23005971,0.15543595,0.085037455,0.27734974,0.07832193,-0.24219665,0.37715694,-0.31150502,-0.44736817,0.115591414,-0.46324876,-0.5403146,-0.088277325,-0.45755556,-0.34975323,0.7564452,-0.42429674,-0.047129493,-0.26793945,0.031721175,-0.21011919,0.45941082,0.35338357,0.25768253,0.08743162,-0.055250842,-0.27718097,-0.4331547,0.24377945,0.07554488,0.2767014,0.31518194,0.119532585,0.08073091,0.48033306,0.5672486,0.10911797,0.5876024,0.26323518,-0.061717037,0.28166348,-0.42445284,-0.108327605,-0.54162794,-0.3906819,-0.29524803,-0.40904674,-0.51528126,-0.208848,-0.36067614,-0.74762714,0.31928506,0.026361426,0.07090931,-0.18029475,0.34679997,0.45874307,0.054783616,0.07167601,-0.018900782,-0.22496991,-0.5105425,-0.46083322,-0.61477774,-0.49397048,0.42092884,1.1265072,-0.18893534,-0.07641395,-0.17274904,-0.28365517,-0.024145277,0.1020317,0.2752439,0.36716402,0.35295677,-0.3010811,-0.5739882,0.31315392,-0.2081193,-0.18537287,-0.6826966,-0.029155118,0.75428444,-0.72874093,0.77448493,0.24664919,0.2939429,0.013815471,-0.5788707,-0.36805838,0.21889606,-0.27550495,0.5825959,0.0635544,-0.57834435,0.47076142,0.22512633,-0.0022233527,-0.65895665,0.429067,-0.06988521,-0.31060722,0.1130606,0.3421274,0.13303287,0.007185646,-0.07076802,0.20943078,-0.571334,0.19036002,0.3325674,0.14691098,0.41206276,-0.17317909,-0.15373367,-0.5162937,-0.12890056,-0.6233116,-0.24935442,-0.048186406,0.07178435,0.18147253,0.20885865,-0.06618293,0.4545835,-0.32149774,0.2188624,-0.010577491,-0.06893722,0.19121447,0.42364174,0.08485958,-0.44303137,0.5151211,0.08743424,0.083336,-0.024008267,0.14659627,0.46846783,0.23571663,0.40200812,-0.33853918,-0.10871223,0.17022607,0.7598021,0.13255502,0.27384704,0.23178443,-0.14711234,0.38509548,0.09758519,-0.048868276,0.07964332,-0.098074645,-0.22285321,0.11020344,0.2754385,0.4251478,0.09269862,0.31811893,-0.05204374,-0.22775091,0.26474205,0.14661631,-0.21563976,-1.0023925,0.33279592,0.25577906,0.66456765,0.41931295,-0.037953105,-0.06526154,0.40740055,-0.32925713,0.16976805,0.2945205,-0.06253786,-0.43783873,0.6196474,-0.49415386,0.499644,-0.2541005,0.006472842,0.040018365,0.29276946,0.3870161,0.80553985,-0.06775699,0.08509946,0.009347041,-0.28879306,0.107281,-0.24164991,0.15329823,-0.5164315,-0.2756891,0.47277874,0.40139726,0.24459137,-0.34180614,-0.10453653,0.08460323,-0.10603401,-0.005828138,-0.20270552,-0.14028719,0.017357413,-0.57911646,-0.503255,0.58712757,-0.24893516,0.0874513,0.07068627,-0.17406961,0.24178529,-0.038649686,-0.024918763,0.0026033083,-0.561291,-0.08994734,-0.18726215,-0.5737962,0.28748688,-0.5075052,0.2339295,0.26989654,0.06692989,-0.43340454,0.30448493,0.3243407,0.6614228,-0.12367081,-0.15968212,-0.51209515,0.06352102,0.14876227,-0.33155948,-0.10855395,-0.40736675,0.17962167,-0.6534311,0.47129157,-0.15407015,-0.25289476,-0.18321608,-0.13068983,-0.027925126,0.52726364,-0.36096197,-0.08142764,-0.0648442,-0.13352497,-0.2721487,-0.06926647,-0.27861246,0.27020866,-0.0055104415,-0.03432359,0.059763264,-0.26674092,-0.15950152,0.36276403,0.16736998,0.2048799,0.24189927,0.059514545,-0.2914439,-0.074749134,-0.12058282,0.2713597,0.057712745,-0.12537216,-0.32051694,-0.22349897,-0.19530776,0.4612986,-0.17352858,0.18869925,0.07940967,-0.5393043,0.75172776,0.08511984,1.1027681,0.15248843,-0.23096053,0.014046828,0.5569145,0.13602854,0.1951108,-0.2785739,0.7277736,0.55787903,-0.07992129,-0.2507455,-0.35367343,-0.1342503,0.26938984,-0.2592941,-0.23165806,-0.15565583,-0.6946861,-0.28206483,0.066675834,0.09330918,0.2253451,0.05201825,-0.15040486,0.06697524,0.10416536,0.63713515,-0.3698373,0.0869663,0.21915096,0.26948187,0.16278794,0.3706822,-0.23830882,0.3860996,-0.69539225,0.25482374,-0.4823139,0.09530724,-0.058513213,-0.19434121,0.19961151,-0.021228233,0.3125321,-0.120600715,-0.19782962,-0.21318303,0.6860308,0.24947461,0.32659626,0.7552935,-0.18872125,-0.046473976,0.19864415,0.5684659,1.5070076,-0.027800512,-0.029433267,0.18967454,-0.2282456,-0.6585687,0.17065343,-0.2865457,-0.054248538,-0.10678712,-0.39579725,-0.42084616,0.30868977,0.15467754,0.055920806,0.17788093,-0.46760628,-0.34359607,0.44427374,-0.28246453,-0.3020274,-0.3155184,0.40644592,0.74221367,-0.29820454,-0.30469558,-0.09209277,0.38524598,-0.2722197,-0.61173195,0.058447346,-0.44128215,0.47654375,0.1317241,-0.23229375,0.03223694,0.30961615,-0.4004135,0.11975608,0.42019045,-0.37301016,0.17179851,-0.015747407,-0.20799974,1.086701,0.12731074,0.061620545,-0.8432789,-0.45463958,-0.9356426,-0.39365166,0.5035292,0.23634954,0.0050926646,-0.47499448,-0.19861937,0.12664746,-0.07207707,0.10397796,-0.591059,0.25285357,0.07724382,0.37943587,-0.05154522,-0.8984446,-0.28088242,0.023083298,-0.37018028,-0.5068994,0.5617437,-0.29495364,0.80422443,0.050915506,-0.012605276,0.078231014,-0.36268967,0.4015505,-0.5249638,-0.21818975,-0.84573936,0.10090483 -486,0.36918116,-0.12376928,-0.46930483,-0.07703581,-0.19395348,0.18459842,-0.22597407,0.55067533,0.22955169,-0.46510595,-0.14746772,-0.17466094,0.0593395,0.2769387,-0.06226444,-0.3381257,0.10825781,0.20287843,-0.37160447,0.3508251,-0.41906562,0.25641164,0.10773391,0.3919311,0.29138693,0.31472537,0.0062254667,0.12999788,-0.2097381,-0.20794842,-0.090347424,0.20006402,-0.4187228,0.09051294,-0.22893003,-0.2174584,-0.19791009,-0.6451367,-0.44812396,-0.7005209,0.23697965,-0.87545824,0.5806478,-0.001510122,-0.25940678,0.15564089,0.2980392,0.33410224,-0.054335017,-0.043057587,0.14496829,-0.08837391,0.039817356,-0.041830745,-0.28982228,-0.40191165,-0.59570324,-0.020642992,-0.43324047,-0.04087192,-0.15342604,0.13976507,-0.20234835,0.10658358,-0.09259153,0.28023556,-0.3795021,0.17024705,0.38054466,-0.18512209,0.18855783,-0.50041777,-0.16523325,-0.0714312,0.18161467,-0.1315357,-0.31198516,0.1937749,0.36607343,0.41899508,-0.16718586,-0.12461083,-0.3480157,0.054964755,0.123506345,0.6136123,-0.18062183,-0.2597765,-0.22334707,0.057005588,0.33802363,0.23244484,0.22961123,-0.11551223,-0.18917963,-0.15121873,-0.26051012,0.30449295,0.5423416,-0.3163592,-0.20206022,0.41690138,0.602485,0.29076776,-0.1738336,0.1628289,0.11964804,-0.6251605,-0.06663338,-0.0047467947,-0.22695172,0.56737953,-0.08994063,0.16568504,0.52107334,-0.1551442,0.019189147,0.23170315,0.104091965,-0.085067384,-0.26156175,-0.20383517,0.16137084,-0.5133223,0.05737659,-0.11962811,0.5638185,0.2083355,-0.6207875,0.3547449,-0.41042852,0.09347285,-0.064253196,0.3674436,0.8786945,0.3523119,0.18169917,0.76318634,-0.32991424,0.067923665,-0.21032305,-0.24317774,0.2657499,-0.19514664,0.025074553,-0.5484258,-0.05048784,0.102725066,-0.18653925,0.27828258,0.6357112,-0.51743037,-0.13167731,0.17192881,0.85309345,-0.23436524,-0.2720596,0.82924527,0.9048427,0.91327274,0.091707334,1.0412929,0.19762121,-0.10953792,0.0178441,-0.18680182,-0.72603065,0.30041662,0.27631885,-0.37465957,0.3326741,0.21521606,0.02530135,0.27170318,-0.24475773,0.002188606,-0.10551425,0.10148174,0.094567,-0.14583695,-0.22592159,-0.27291688,-0.06827385,0.073468804,0.075675465,0.18724056,-0.1882914,0.5531789,0.027893903,1.6030598,-0.058949925,0.025526192,-0.02265698,0.3297805,0.26699337,-0.48784086,-0.18649022,0.33446583,0.47559044,0.104570866,-0.43466383,-0.011343254,-0.11117266,-0.27028576,-0.17981836,-0.295943,-0.22935806,-0.10469465,-0.39255333,-0.14020036,-0.12074558,-0.30174333,0.40017393,-3.076598,-0.11670299,-0.05787915,0.2722972,-0.26140156,-0.4168689,-0.31020245,-0.5110487,0.31426218,0.29437986,0.42059755,-0.6271516,0.25745288,0.21409342,-0.5386486,-0.057297893,-0.706962,-0.04856097,-0.027128713,0.24579236,-0.0025189668,0.011451781,0.1429847,0.371368,0.50119126,0.061768018,0.16109884,0.3183496,0.4751093,0.17090607,0.35270697,-0.14613228,0.60931695,-0.13167801,-0.22038145,0.34924704,-0.4223922,0.29591402,-0.20766017,0.14905997,0.4953501,-0.3792695,-0.89261085,-0.5922273,-0.08354538,1.0527318,-0.20893583,-0.34435305,0.16243908,-0.47471032,-0.3627959,-0.038939927,0.4688109,-0.09897138,-0.15389864,-0.77764183,-0.19967021,-0.097773604,0.060167454,-0.18646394,-0.1317621,-0.3491409,0.536078,-0.098912,0.30813876,0.30585784,0.17552896,-0.24920967,-0.5095488,0.034563083,0.9966367,0.4141571,0.13623108,-0.30210486,-0.20940141,-0.5313026,0.03546454,0.16126664,0.5284532,0.6948975,-0.11651276,0.2267582,0.27018994,0.117125764,0.051958892,-0.087911926,-0.27867582,-0.115356624,0.0019841024,0.5474631,0.62499607,0.0070869857,0.6295083,-0.078117564,0.1355033,-0.23667121,-0.6685155,0.33932325,0.73261845,-0.18607321,-0.39424846,0.6102791,0.28994566,-0.07685772,0.43891138,-0.4590679,-0.33917826,0.28868523,-0.103485,-0.2529741,0.33721253,-0.33586994,0.17914906,-0.8366548,0.22720702,-0.04604578,-0.65425557,-0.49172285,-0.1268816,-3.2902963,0.2107015,-0.068809785,-0.25460002,0.03299603,-0.27502462,0.25444317,-0.46677405,-0.6264983,0.20541202,0.04287466,0.8152104,-0.12543797,0.049959812,-0.11535786,-0.35010242,-0.4341028,0.105487876,0.17370787,0.36181825,-0.001777734,-0.4196965,-0.08191117,-0.2981759,-0.45090294,-0.018914979,-0.57116014,-0.4958814,-0.21769752,-0.37538925,-0.12070187,0.6154044,-0.41157827,-0.0031959626,-0.20295747,0.081853725,0.01780599,0.30315706,0.15487167,0.026861522,0.015459577,-0.023703447,0.095806904,-0.22527803,0.3262665,0.2382283,0.24732235,0.5349394,0.052126233,0.23738249,0.4628634,0.62522143,-0.21098234,0.9241265,0.4302945,-0.13703261,0.1976928,-0.15889283,-0.15886736,-0.34998116,-0.15500543,0.020929093,-0.5925647,-0.44924274,-0.13966413,-0.33692354,-0.81862366,0.38425532,0.075024344,0.24396369,-0.03361254,0.28145412,0.4992699,-0.2283829,0.015827557,-0.16231051,-0.19008,-0.5511165,-0.39206886,-0.5800877,-0.45433268,0.32418796,1.1466277,-0.26380777,0.17459403,-0.03319757,-0.24640675,0.0021353576,0.12839553,-0.10322668,0.058229625,0.3834381,-0.14459483,-0.59560716,0.3055697,-0.20783089,-0.18192177,-0.70571136,0.12795582,0.5604935,-0.576459,0.5868598,0.32249063,0.043817084,-0.3354031,-0.52887475,-0.12981406,-0.093036704,-0.33092052,0.45796487,0.28139082,-0.7276449,0.41588134,0.2876335,-0.41669032,-0.6335104,0.56626123,-0.015450587,-0.077408634,-0.19055526,0.23172651,0.09463567,0.11134834,-0.22582507,0.12483721,-0.45629027,0.17011239,0.20665576,-0.008621393,0.21461177,-0.2929649,-0.19482647,-0.5836738,-0.06578624,-0.4058771,-0.29913813,0.19568726,-0.0140659725,0.28848934,0.18191852,0.2513081,0.36161885,-0.42309552,0.139853,-0.14337263,-0.2466688,0.3330953,0.41639462,0.6092824,-0.39586475,0.5529612,0.0359775,-0.18526353,0.15488508,0.06327586,0.46228045,0.1264709,0.24863566,0.041393936,-0.2515519,0.13941933,0.84455544,0.123740904,0.34168777,-0.060349006,-0.039870173,0.044239026,0.06418372,0.20249344,0.07639601,-0.61580247,-0.17513232,-0.46792722,0.22987683,0.44636998,0.1471231,0.3079349,-0.04560992,-0.3070846,0.0157606,0.09205581,0.1920968,-1.262082,0.3108543,0.18462732,0.8104434,0.34652933,-0.027371513,0.0467655,0.58570015,-0.19802403,0.24048771,0.3519757,-0.09877543,-0.48734468,0.39210322,-0.8414416,0.5515191,0.01194562,-0.001501905,0.063254125,-0.081174575,0.54466236,0.9720624,-0.20647527,0.093331195,0.16908382,-0.18687008,0.10062361,-0.38247898,0.024721907,-0.8183793,-0.24078356,0.86308664,0.4404209,0.40290254,-0.10136127,-0.11936562,0.06780085,-0.02314662,-0.0234746,0.054527283,0.21453407,-0.19330451,-0.6269578,-0.15680476,0.49911907,0.06324262,0.22349472,0.06679288,-0.11583454,0.21018216,-0.220862,0.04935683,-0.1292802,-0.7578959,-0.1809129,-0.3811813,-0.59323794,0.49803644,-0.14907242,0.20920195,0.2733969,0.07471984,-0.14386933,0.50817937,0.12084804,0.80090183,-0.076627605,-0.08706988,-0.39955968,0.38302046,0.26346186,-0.15986598,-0.07012163,-0.28335747,0.14826189,-0.5104391,0.49170634,-0.13460143,-0.27807355,0.08103696,-0.05383871,0.14613663,0.57976186,-0.08446998,0.002876782,0.09243227,-0.28910765,-0.3975153,-0.06084072,-0.1674945,0.22087602,0.22523072,-0.26202437,-0.07077751,-0.10810805,-0.12845378,0.15552938,-0.00928766,0.34227303,0.31987476,0.016717723,-0.30955595,-0.11093012,0.1336768,0.56901705,0.0439741,-0.2212532,-0.41171366,-0.4698282,-0.4110961,0.38441822,-0.09461049,0.35688308,0.084600076,-0.048914585,0.8264497,-0.072348885,1.0096207,0.078982964,-0.45141095,0.06440391,0.477897,-0.040236473,-0.12795302,-0.43364257,0.9005085,0.4316137,0.057627518,0.011223636,-0.38695422,0.10066223,0.28248027,-0.1709644,-0.29289076,-0.052817326,-0.60576427,-0.10877304,0.30044016,0.25659975,0.28152832,-0.11040217,0.25152746,0.350521,0.0054239524,0.11658756,-0.45094466,-0.19612369,0.34574747,0.35575145,0.09715692,0.11397147,-0.44640183,0.298898,-0.4385151,-0.109301485,-0.12411549,0.19206718,-0.16191813,-0.5007127,0.22217146,0.13428898,0.4092694,-0.31008658,-0.37515035,-0.37814167,0.49688774,0.1644912,0.20138517,0.4463484,-0.20247896,0.025581151,0.008358674,0.45496324,0.8958201,-0.2974356,0.060318656,0.64988,-0.27334887,-0.7225567,0.3900561,-0.5100945,0.38472024,0.027973441,-0.21613303,-0.5421509,0.26698816,0.17466176,0.18683897,0.063233115,-0.40411255,-0.035122197,0.1365324,-0.13051149,-0.26887634,-0.41744962,0.10402475,0.49941716,-0.20986399,-0.2543813,0.110813186,0.38911125,-0.14093404,-0.38489813,-0.047972288,-0.17721748,0.23416497,-0.037411004,-0.27094236,-0.15986612,-0.060033318,-0.41515923,0.26462942,0.03918012,-0.2616303,0.120825045,-0.32717827,0.019259809,0.72237504,-0.24966972,0.07886908,-0.58457565,-0.43620366,-0.63426167,-0.28095084,0.22700688,0.116003715,-0.0784973,-0.6954121,-0.05900988,-0.1686429,-0.17864592,-0.09106009,-0.38298365,0.56184846,0.1324372,0.14507745,-0.026878506,-0.68105274,0.11024565,0.084049754,-0.24346818,-0.6004745,0.5665983,-0.08004756,0.87726814,0.19389184,0.09432892,0.32206106,-0.48143312,0.13242052,-0.2676211,-0.07121243,-0.6912423,0.058586296 -487,0.47552627,-0.049618296,-0.53528297,-0.3627831,-0.3705599,0.25790825,-0.22503291,0.1357572,0.190998,-0.6340478,-0.13584255,-0.191563,-0.023357842,0.27616042,-0.089262195,-0.7640916,0.11690206,0.23234406,-0.8002558,0.4738219,-0.5208193,0.47461537,0.39865956,0.2871291,-0.0049603325,0.19732334,0.1677996,-0.22836593,0.015019,-0.3009657,-0.27409703,0.17114356,-0.7354598,0.39861658,0.022655046,-0.3235972,-0.09063427,-0.29644293,-0.25149933,-0.781325,0.16348322,-0.87127864,0.4979424,-0.12708794,-0.34649044,0.09593747,-0.120679624,0.21263467,-0.3657453,0.24209774,0.16930489,-0.41965765,-0.22221024,-0.30265966,-0.26447687,-0.47460514,-0.687786,0.04873717,-0.48950472,-0.027855141,-0.37497,0.26927283,-0.30570653,0.16310672,-0.24170658,0.37132934,-0.39242128,0.12151776,0.21471755,-0.15917492,0.0531396,-0.30881286,-0.15047598,-0.21384239,0.363151,-0.13332106,-0.3217036,0.09871854,0.31012446,0.6502934,0.33293024,-0.38187757,-0.08834823,-0.2237541,0.22198145,0.4314136,0.09189476,-0.25900793,-0.30897412,-0.18983206,0.41243282,0.11122879,0.023699598,-0.3750408,0.043053742,-0.21344955,-0.35557604,0.3352058,0.5478794,-0.37842542,-0.18018498,0.3612307,0.43490744,-0.0929841,-0.24255231,0.17523275,-0.09232252,-0.51832765,-0.26167387,0.4377292,-0.07467967,0.54469544,-0.3168029,0.13871875,0.72195655,-0.23249009,-0.04264036,0.015386106,-0.07791401,-0.07130713,-0.18384756,-0.19742009,0.25363812,-0.55028176,-0.055041235,-0.52323955,0.91382176,0.18880264,-0.81814575,0.29421827,-0.46845263,0.21681885,-0.06655864,0.89513785,0.80245143,0.5054904,0.26129022,0.858126,-0.59490025,0.13698062,-0.007937188,-0.35192367,-0.02768089,-0.24724542,0.18557541,-0.33625653,0.06942613,-0.19888829,-0.008008084,-0.02781052,0.4203648,-0.3788815,-0.25907794,0.038088042,0.45980963,-0.5327565,-0.03579855,0.9768796,0.81598514,1.0673163,0.18679965,1.4493355,0.65559834,-0.31562576,-0.22930689,-0.042413823,-0.6637573,0.20526794,0.2647849,0.67141765,0.22239836,0.017527806,0.22457696,0.36703295,-0.5120503,-0.0070108133,-0.26323977,0.14238255,-0.20674013,0.08527725,-0.5023974,-0.3248088,0.21640396,0.05652355,0.0399263,0.3381656,-0.0869445,0.64799106,0.28477722,0.9552737,0.041525073,-0.01042293,0.026104173,0.28109804,0.08656763,-0.1350191,-0.03708716,0.20624678,0.50657594,-0.18076041,-0.779753,-0.20729458,-0.1972679,-0.24271965,-0.32825089,-0.35351875,0.05421457,-0.19452007,-0.36652133,-0.18369459,0.14554882,-0.44282645,0.4517756,-1.9298805,-0.2836086,-0.22704124,0.22895353,-0.101700015,-0.3068266,-0.29537842,-0.5596975,0.4235718,0.32114676,0.40688667,-0.7771473,0.5309826,0.31753942,-0.26703686,-0.056271818,-0.8686609,0.0066033774,-0.20936666,0.20942108,0.026520206,-0.21831687,-0.39296356,0.069291525,0.62931055,-0.079985484,-0.014138922,0.3514125,0.412986,0.0671676,0.579189,0.30958152,0.62481946,-0.2764024,-0.08201579,0.40879473,-0.45367464,0.30646738,-0.029748008,0.1334139,0.48760098,-0.65648043,-0.59672654,-0.7258422,-0.5825337,1.3598607,-0.61974424,-0.46495792,0.13879265,-0.0035351047,-0.24777998,0.08339264,0.39848855,-0.19188444,-0.012609013,-0.5717039,-0.14089617,0.13715379,0.41455576,-0.17775321,0.1138492,-0.32839122,0.77243435,-0.3203428,0.45853266,0.385712,0.10281751,-0.17879905,-0.46052054,0.12330204,1.1033342,0.38010105,0.113791645,-0.29193598,-0.5032205,-0.22514048,-0.2634005,0.09096517,0.5614199,0.7786732,-0.12673306,0.049853954,0.5244598,-0.151003,0.1388531,-0.17694494,-0.31482333,-0.17587273,0.004343716,0.73982936,0.52032745,0.08462299,0.3151706,-0.16569486,0.22632335,-0.045498915,-0.5363408,0.6428332,0.95658666,-0.0684914,-0.30378065,0.54400474,0.2576519,-0.43309504,0.42056307,-0.49310535,-0.45911855,0.48044276,0.04544925,-0.32258442,0.12164911,-0.30564335,0.32391962,-0.9910699,0.2968027,-0.10550935,-0.6517624,-0.5202494,-0.11698628,-3.2121506,0.23268549,-0.12679191,0.096116476,-0.2195196,-0.2317975,0.39265904,-0.30302206,-0.5979467,0.045009393,0.036472674,0.58334297,0.009889014,0.1246109,-0.3158962,-0.24728929,-0.35689703,0.04390978,0.15169014,0.2291276,-0.008044043,-0.2612735,0.2040209,-0.31777525,-0.34864822,-0.05043404,-0.75588906,-0.6548495,-0.15511712,-0.4017556,-0.29388162,0.7082859,-0.4067344,0.08775653,-0.22270177,0.0103279725,-0.18364742,0.23376454,0.23804767,0.2813883,-0.05974155,-0.0061316234,-0.23075901,-0.32621735,0.119715855,0.035784714,0.121985264,0.16021016,-0.26482698,0.19142565,0.37257907,0.68662864,-0.05440342,0.7296592,0.30462748,-0.091844305,0.25758287,-0.123939,-0.4689033,-0.70861477,-0.26891395,-0.14492072,-0.5088817,-0.3439081,-0.07396306,-0.24049024,-0.95618314,0.41045538,0.14719906,-0.14621337,0.0069732154,0.45652184,0.47506526,0.058699794,0.019586692,-0.10299375,-0.3227522,-0.47640234,-0.51486725,-0.8688482,-0.55980045,0.17531641,1.237541,-0.108657524,-0.11777594,-0.04977939,-0.38094157,0.26700068,0.33569518,0.22078393,0.23654678,0.54846734,-0.13232043,-0.6887782,0.51913863,-0.056490805,-0.123474665,-0.5429563,0.13947766,0.9822248,-0.796348,0.48987255,0.38877693,0.12814654,-0.037608426,-0.44866443,-0.30392462,-0.044069324,-0.32040712,0.5365157,0.15842421,-0.59294283,0.6300964,0.17535912,0.08202796,-0.70414436,0.3978339,-0.04467148,-0.112086244,0.23755987,0.50338924,-0.069548026,0.032301355,-0.13126372,0.04283009,-0.45596543,0.16009195,0.51323,-0.036059577,0.118526615,-0.18395032,-0.33365256,-0.6061712,-0.19973211,-0.7955922,-0.24451283,-0.016385375,-0.06970816,0.0148300035,0.15562764,0.078412004,0.48416963,-0.116018586,0.1616381,-0.26199308,-0.22960036,0.4572056,0.46934572,0.27503592,-0.5497832,0.7897201,0.21074353,0.17358887,-0.3184933,0.08012565,0.5155858,0.25912246,0.42258886,-0.15721965,-0.08176577,0.10549233,0.7132164,0.36225396,0.413951,0.27365252,-0.081730664,0.45672098,0.30331168,0.28031835,-0.1354052,-0.1983757,-0.12376434,-0.031108277,0.16167477,0.34016728,0.019686922,0.50609046,-0.07438527,-0.05218202,0.12758991,-0.0323064,-0.16646543,-1.2199333,0.3098201,0.2840747,0.5934347,0.37171555,-0.026229382,0.0033071872,0.6401698,-0.61679965,0.019126778,0.123690546,-0.14438908,-0.32175848,0.5846583,-0.604128,0.42492062,-0.15845574,0.040611763,0.10467994,0.28810278,0.4282067,0.92782295,-0.15963955,0.067620434,-0.14751032,-0.15039523,0.2802032,-0.5158349,0.013172047,-0.46784216,-0.37822595,0.68692726,0.1292102,0.44248182,-0.39165846,-0.030991161,0.057343926,-0.15399596,0.11243453,0.020592107,-0.11359525,-0.13166814,-0.61103487,-0.26659337,0.5896522,-0.098538026,0.2194921,0.28952187,-0.29498053,0.34578982,-0.07092856,0.009573979,-0.25965184,-0.65915245,-0.13449004,-0.41123804,-0.40227073,0.17935495,-0.5162844,0.25582865,0.3062499,-0.03801651,-0.27609205,0.16583502,0.14776002,0.6445055,0.12778163,-0.36552027,-0.17589308,0.113786526,0.31858665,-0.4354352,-0.057439215,-0.23119248,0.11912899,-0.68900985,0.38957787,-0.2312522,-0.29927343,0.14161423,-0.115709044,-0.02944226,0.47800663,-0.27302057,0.018695993,0.21139719,-0.06468714,-0.22219276,-0.14281635,-0.30848163,0.22514923,0.062400084,0.038363438,0.094152704,-0.09032676,-0.036879547,0.4108704,0.11157979,0.220302,0.33162668,-0.09997697,-0.35959122,0.105753556,0.0045127785,0.31166926,0.25725833,-0.19555925,-0.13731472,-0.24602939,-0.21085814,0.49405834,-0.1302068,0.22599576,0.0023385542,-0.52142197,0.99559087,0.12343591,1.0207226,-0.016389813,-0.4007906,-0.012027702,0.6030968,0.081976466,0.12930496,-0.022948068,0.95125145,0.52222085,-0.1595447,-0.11480212,-0.48773673,-0.18990898,0.19305773,-0.19497243,-0.254619,-0.023158569,-0.63336146,-0.27692422,0.13448767,0.33614245,0.108983755,0.03864414,0.07296302,0.0647318,-0.024458472,0.5263785,-0.63156223,0.055265743,0.32098386,-0.0015873994,-0.0908581,0.2253696,-0.21663009,0.3840065,-0.8610352,0.19225146,-0.36665156,0.06776952,0.15656063,-0.24086435,0.2949927,0.07932188,0.20641886,-0.4159067,-0.31962433,-0.38830563,0.7143027,0.305147,0.36641726,0.8656761,-0.32013518,-0.06059318,0.33209515,0.567106,1.3324662,0.014236455,0.21557967,0.23788579,-0.47115287,-0.5151002,0.27889967,-0.19573542,0.08470575,-0.020349517,-0.4755078,-0.32107323,0.25931618,0.11621871,0.054510858,0.31214735,-0.5681959,-0.19867133,0.36486942,-0.25645915,-0.34868482,-0.3045604,0.29261133,0.4817135,-0.28636807,-0.24119529,0.018504713,0.14056514,-0.48395988,-0.602469,-0.01963514,-0.4720711,0.3518751,0.112714775,-0.28849903,0.11087727,0.3265493,-0.52059263,-0.070827946,0.2475414,-0.4031736,0.09590657,-0.24294119,-0.037564296,0.942092,0.09202175,0.20237994,-0.7620286,-0.63056594,-0.78004616,-0.36891195,0.6104716,0.24995048,0.04099479,-0.5146437,-0.1677909,-0.1807839,-0.053369064,0.25189543,-0.49218354,0.3695366,0.356939,0.38098726,-0.010640867,-1.0293877,0.20811176,-0.09003256,-0.27451214,-0.4936726,0.4213222,-0.12978305,0.5899199,0.12869155,0.124934964,0.09350366,-0.5764919,0.4243081,-0.1796078,-0.19899143,-0.6533968,-0.05192439 -488,0.6771746,-0.18933274,-0.35046014,-0.05649352,-0.36075774,0.10477588,-0.19909556,0.3502059,0.1511701,-0.40327558,-0.22858474,-0.022732342,-0.13549575,0.27908677,-0.27986035,-0.5649878,-0.08505822,0.13310114,-0.33396482,0.5751959,-0.48205584,0.2867801,-0.0066894847,0.42658952,0.34199473,0.31065693,0.11051672,0.032303445,-0.36654967,-0.42728347,-0.047742512,0.16548967,-0.5887235,0.3017563,-0.18076913,-0.46149865,-0.11210847,-0.3648793,-0.39678589,-0.5994063,0.27214274,-0.9023823,0.47575814,0.060282245,-0.15304647,0.16812068,-0.025315214,0.23988806,-0.19203043,0.16134879,0.13532989,-0.25775552,-0.11956618,-0.29031697,-0.16755982,-0.35004807,-0.57640666,-0.019232472,-0.38065752,-0.017346315,-0.35187447,0.29141957,-0.21815224,-0.030994643,-0.11323437,0.33759016,-0.6065396,0.20912905,0.100333974,-0.14950228,0.0916238,-0.68038255,-0.26354447,-0.1672933,0.10668508,-0.22189312,-0.2853414,0.2482424,0.22576329,0.54188144,0.1196741,-0.09702485,-0.42292354,-0.14398794,0.19425553,0.44488445,-0.21314666,-0.47284317,-0.18174477,-0.20908254,0.46924534,0.24428104,0.1342668,-0.30162686,-0.011187295,0.007120947,-0.28434753,0.43732733,0.5616703,-0.321261,-0.13360998,0.288598,0.44810066,0.0773484,-0.17565988,0.09523428,0.006875506,-0.40525302,-0.13641357,0.105656095,-0.2592502,0.5543644,-0.15134883,0.1600632,0.693194,-0.30793306,0.15786695,0.078978695,0.0665052,-0.05154059,-0.28215355,-0.41192505,0.2209549,-0.47997102,0.13502121,-0.17666125,0.84916705,-0.0128371315,-0.7453364,0.29941642,-0.47816986,0.030485954,-0.2056121,0.57805127,0.50318563,0.3736557,0.3648634,0.7553074,-0.4003002,0.074360386,-0.16151695,-0.24841572,-0.14258316,-0.104590885,-0.05500184,-0.44591948,0.067093804,-0.052993543,-0.032732103,0.13473774,0.6146399,-0.49073225,0.007925693,0.19440025,0.6908632,-0.48728865,0.10243584,0.8745335,1.180151,1.0878825,0.044613454,1.271089,0.4183136,-0.20075141,-0.104546115,-0.318875,-0.41936073,0.20354423,0.35335335,-0.2995311,0.24957825,0.17654237,0.016491778,0.34075877,-0.5320472,-0.02437845,-0.23410797,0.27983925,0.025118995,0.07119671,-0.4166675,-0.23422691,0.09387562,0.022904355,0.083964795,0.28655598,-0.4053819,0.32457176,0.10832551,1.4089652,-0.096554294,-0.06704379,-0.039492354,0.59283066,0.16580805,-0.10813924,0.15186939,0.121707715,0.3530808,-0.22234297,-0.6457811,-0.034408636,-0.23630738,-0.57692087,-0.17085025,-0.21944171,-0.14422426,-0.10842579,-0.35567385,-0.21518761,0.09292955,-0.3405832,0.49253052,-2.3453827,-0.15417449,-0.041341417,0.26105016,-0.11117775,-0.3976975,-0.118645445,-0.38870084,0.47038767,0.15315394,0.32384047,-0.63806117,0.46862787,0.57426864,-0.44279012,-0.12331005,-0.7231334,-0.056766447,-0.1609589,0.31495324,-0.03134869,-0.029871194,0.05493563,0.00048578184,0.70556706,-0.12097355,0.2558536,0.20976128,0.1970041,0.08248244,0.43027946,0.33640262,0.51399004,-0.24876696,-0.35432243,0.3878237,-0.36165914,0.19344038,-0.10307266,0.061248444,0.39714354,-0.51585495,-0.88288593,-0.71442914,-0.35918558,1.0962906,-0.20980929,-0.602327,0.25262558,-0.14209819,-0.37027842,0.031746723,0.3583205,-0.23171923,-0.094765306,-0.8288881,-0.041521255,-0.0672808,0.18095544,0.022436267,0.12643424,-0.41544935,0.6220386,-0.27612934,0.3795333,0.4524755,0.28281823,-0.2379993,-0.44060317,0.08905805,1.1049416,0.53098416,0.13687344,-0.31308013,-0.20664595,-0.07493031,-0.11120499,0.09692171,0.47841948,0.6173541,-0.06035509,0.113743134,0.16701236,0.05537912,-0.05743698,-0.28781447,-0.35662174,-0.11819984,0.1352391,0.7631451,0.59948194,0.06603796,0.5624069,-0.10389139,0.29336932,-0.19041462,-0.48007196,0.5404078,0.8783299,-0.16469781,-0.32846695,0.8155115,0.48105183,-0.30179256,0.5062186,-0.7979796,-0.27750364,0.30358955,-0.124956205,-0.4051711,0.13849793,-0.27556956,0.107378915,-0.8400603,0.4226179,-0.21264455,-0.62219876,-0.5787697,-0.38136283,-2.4211605,0.13844348,-0.30861017,-0.20985392,0.01841074,-0.3774509,0.25032836,-0.6468754,-0.5730569,0.12809776,0.08841979,0.5102208,0.028514652,0.15078214,-0.063489534,-0.16042337,-0.20913473,0.19829664,0.070886105,0.34469602,-0.01123902,-0.40256062,0.18634507,-0.0508185,-0.37321767,0.009624811,-0.63791883,-0.43901184,-0.079959854,-0.3847197,-0.2003992,0.57745343,-0.51871437,0.026467387,-0.35262316,0.013233998,-0.20647839,0.34112284,0.1376742,0.17545962,0.08667817,0.06156163,0.026630938,-0.25045437,0.1924443,0.108870655,0.084136315,0.32683536,-0.19434375,0.07235206,0.37776697,0.56683564,-0.07597058,0.9358022,0.54800767,-0.20420215,0.107009284,-0.18384266,-0.23547395,-0.66753083,-0.45165017,-0.082845695,-0.46687385,-0.48713174,-0.011206611,-0.3535175,-0.89888597,0.6628106,0.010451762,0.09786172,-0.015606379,0.2525505,0.3667843,-0.15482183,-0.056796867,-0.08644628,-0.0759247,-0.54595834,-0.43646047,-0.7149159,-0.35182026,0.031312272,1.0667329,-0.09673167,-0.06427263,0.3159858,-0.42426687,-0.040393054,0.10159678,-0.08248145,-0.021087121,0.5643266,-0.0041656257,-0.59736407,0.31190178,-0.036322888,-0.11972645,-0.5688087,0.1866845,0.72845197,-0.6460865,0.46045917,0.40505296,0.2166061,0.010672923,-0.54083425,-0.19058944,-0.12940179,-0.2403757,0.55036914,0.28571197,-0.71133727,0.5277549,0.33050898,-0.15967195,-0.726697,0.4924107,0.019214239,-0.2534804,0.006036838,0.23934379,0.24597129,-0.0036033874,-0.20968013,0.25268048,-0.40616304,0.3929337,0.28432903,-0.12536997,0.25092345,-0.32323965,-0.22712317,-0.75341034,0.034405947,-0.322361,-0.46381328,-0.013262633,0.09814789,0.11519162,0.3078801,0.21554963,0.3823654,-0.35012978,0.08848371,-0.14336236,-0.24726157,0.336981,0.5122333,0.5622838,-0.22202516,0.60152066,0.07110792,-0.15503922,-0.09034422,-0.097560376,0.48515707,-0.07631029,0.3263676,0.009240075,-0.20296517,0.37912115,0.70439947,0.25831065,0.39637628,0.011729197,-0.16120577,0.2816576,0.14317992,0.2858573,-0.018229397,-0.4464708,0.061396692,-0.030487688,0.18676478,0.34390822,0.2741631,0.42646676,-0.1186914,-0.2121481,0.06305133,0.03853774,-0.1500923,-1.4222913,0.26606888,0.06550066,0.75597084,0.637896,-0.057857372,0.06675088,0.60481197,-0.31257483,-0.074588105,0.34316596,0.07199159,-0.24900834,0.41155356,-0.6356558,0.436155,-0.08990897,0.091215506,0.038313277,-0.0010289471,0.36119977,0.74574834,-0.13283505,0.1012098,0.037832838,-0.33377087,0.026758019,-0.27272728,0.23158069,-0.57807237,-0.22675394,0.9531425,0.52224845,0.4400533,-0.10721293,0.00073380274,0.0672494,-0.10275384,0.1927108,0.13642098,0.013657181,-0.10947332,-0.51248604,-0.27077886,0.571066,-0.17701085,-0.012303487,0.053581335,-0.23612888,0.13779251,-0.052274924,-0.16176215,0.00060118735,-0.6144115,-0.08898397,-0.2498189,-0.27419585,0.21879816,-0.1292091,0.11944027,0.18357004,-0.050114784,-0.19495322,0.25906336,0.24731025,0.713437,0.18018939,-0.16577168,-0.08902285,0.22261162,0.2871929,-0.030041456,-0.06295838,-0.21000935,0.15763777,-0.7705932,0.36718887,-0.19699351,-0.38165298,0.16229142,-0.12645693,0.037955347,0.4502388,-0.12260506,-0.16067918,0.21896096,-0.09880975,-0.35289034,-0.15283523,-0.32844552,0.18857603,0.12393144,-0.062001027,-0.13002926,-0.1471182,-0.12977225,0.5286256,0.19084409,0.42009798,0.40014294,0.017278433,-0.46612567,-0.16052395,-0.034653846,0.513057,-0.2006602,-0.029803399,-0.23055588,-0.41102222,-0.3197821,0.23653339,-0.23990028,0.28175375,-0.016161462,-0.32399222,0.90125376,0.052914597,1.3135465,0.10912595,-0.4120038,0.17575432,0.5487168,-0.19654875,0.15280072,-0.23745598,0.95695007,0.5910067,-0.08944195,-0.23922281,-0.41537267,-0.039260093,0.23831914,-0.21172322,-0.29219633,-0.07069206,-0.7357147,-0.31062654,0.23059402,0.17080829,-0.036665265,0.061089672,0.247465,0.3813226,0.011893004,0.46293864,-0.5195523,-0.12714791,0.42705435,0.2709461,-0.042189114,0.09854113,-0.4083598,0.29110846,-0.5243744,-0.109641396,-0.25563952,0.1437818,-0.17147087,-0.2575832,0.21807583,0.107029915,0.41226283,-0.3528772,-0.29003084,-0.17408305,0.5778283,-0.09777316,0.10349556,0.44606146,-0.32782146,0.22029829,-0.11003087,0.37876967,1.178648,-0.3685544,0.13370892,0.33300468,-0.26712272,-0.49916515,0.33983314,-0.42795965,-0.08252878,0.11208407,-0.36291638,-0.54557407,0.3074264,0.14404781,-0.03958591,0.20212097,-0.61723965,-0.082830526,0.32404977,-0.11057563,-0.18169644,-0.1972575,0.12096931,0.6433605,-0.40482223,-0.3704136,0.029718788,0.37057763,-0.29868275,-0.43946043,-0.020743124,-0.32860625,0.41806367,0.11147587,-0.30863044,-0.1747557,0.11615745,-0.3912564,-0.14885044,0.37310597,-0.24738249,0.075691275,-0.34225675,0.21175508,0.6856361,-0.11162198,0.20146951,-0.68213195,-0.4450857,-0.9199956,-0.24465127,0.32154617,0.2025326,-0.10825407,-0.6672765,0.08664866,-0.21333763,-0.1722345,0.012691768,-0.5022673,0.49649277,0.19681378,0.45751247,-0.0494985,-0.81673527,0.056115076,0.04499763,-0.21449505,-0.5520179,0.5441961,0.059564088,0.889512,0.103809625,-0.012824378,0.005857573,-0.6393315,0.070208795,-0.21486661,-0.21427448,-0.83237904,0.14279476 -489,0.36313927,-0.3790143,-0.3228584,-0.087354496,-0.22513638,0.011488942,0.051946037,0.57417923,0.02965292,-0.37962893,-0.117036216,-0.08115336,-0.09269293,0.13110767,-0.083935335,-0.05116925,-0.2353425,0.10060028,-0.37800202,0.45166126,-0.36132747,0.2026007,0.002332912,0.29830724,0.09339813,0.19648519,-0.07542475,0.090607695,0.088412285,-0.17004688,-0.035566453,0.14308298,-0.58230585,0.18481511,-0.085150704,-0.40431228,0.009824202,-0.4676058,-0.29898977,-0.62878704,0.31011838,-0.8948832,0.43484864,0.045194488,-0.38355556,0.4326014,-0.26601526,0.3321381,-0.15656915,-0.00905763,0.3346658,0.06940765,0.04582813,-0.07929906,0.13238026,-0.2652521,-0.4298324,-0.09737266,-0.10008236,-0.17750248,-0.1426892,0.008901209,-0.21966356,0.0591924,-0.1778536,0.28926912,-0.35988137,-0.0914892,0.18251003,-0.104559295,0.38831902,-0.6291099,-0.024014,-0.22891371,0.18255672,-0.25721562,-0.19897403,0.20348364,0.16496332,0.48351896,-0.22574756,-0.028042546,-0.23345691,0.066881515,-0.111884005,0.37735826,-0.114932746,-0.22754073,-0.079438105,-0.0761846,0.107602134,0.19695161,0.11380903,-0.24679068,-0.05495298,0.13817066,-0.10872274,0.116731375,0.35696432,-0.24487494,-0.25864604,0.2979077,0.58597624,0.12398122,-0.025168657,-0.2073218,0.0065666856,-0.50212365,-0.07608132,0.039383017,-0.41237456,0.55870557,-0.01861477,0.08262442,0.48874775,-0.15432034,-0.025684148,0.060587768,0.036362268,-0.022847231,-0.42457172,-0.39790598,0.3874759,-0.39539778,0.14592281,-0.09412743,0.44547632,0.048192043,-0.6142947,0.20764868,-0.4363876,0.0034841322,-0.081223965,0.38336557,0.5947734,0.42068562,0.10827499,0.67899776,-0.5771664,-0.018656552,-0.23717627,-0.09835135,0.16179278,-0.063566245,-0.029666662,-0.54892886,-0.10977602,0.045370873,-0.20824337,0.012129087,-0.12740459,-0.63397694,-0.0434732,0.3263003,0.5368005,-0.24977154,0.17702326,0.625926,1.0621989,0.73145556,0.20048968,1.1419836,0.0893154,-0.13534018,0.38574663,-0.16762103,-0.7645795,0.10418634,0.40453148,0.0566951,0.11787072,0.1449452,0.12288319,0.4089766,-0.338076,0.05000125,-0.26123816,0.30580574,0.1364751,-0.19541131,-0.4602576,-0.17813395,-0.05831911,0.3197926,-0.16434084,0.18771039,-0.26341113,-0.040043257,0.13783601,1.4780132,-0.17542961,0.11303055,0.22771071,0.25318652,0.08471819,-0.19840632,-0.10513782,0.25661546,0.4542657,0.11324986,-0.4754984,0.34434363,-0.11115393,-0.45865625,-0.103592284,-0.2097782,0.13779606,0.005444224,-0.41866487,-0.19911385,0.015755828,-0.29232317,0.5085939,-2.9080265,0.017121397,-0.2619824,0.34870645,-0.29151827,-0.37840587,-0.02777284,-0.26520893,0.34172827,0.4398732,0.43551058,-0.5729381,0.102674395,0.27038896,-0.60456795,0.02118349,-0.53700507,-0.22582571,0.022725467,0.27013785,0.29464203,-0.020322012,-0.004680835,0.050507147,0.33021492,0.09333165,0.073568694,0.32228562,0.22832632,0.0034740842,0.46532902,-0.043525193,0.36992285,-0.2469735,-0.16196299,0.27875865,-0.226147,0.099940434,0.073742256,0.20773202,0.2600709,-0.39974082,-0.7381572,-0.7330829,-0.22442132,1.3509681,0.00035155966,-0.4356531,0.28726995,-0.44495112,-0.36204025,-0.13322145,0.27554426,-0.08724281,-0.1353381,-0.84992826,-0.017594108,-0.2608158,0.38458696,0.029217703,-0.19659151,-0.6011032,0.67985713,-0.0083162375,0.5269203,0.52228075,0.14840676,-0.04548556,-0.3088613,-0.121991664,0.8014698,0.43331578,-0.007539742,-0.032293413,-0.015619239,-0.24492548,0.1479418,0.29242247,0.32938883,0.5861312,-0.054731123,0.040458057,0.04841653,-0.032912545,-0.023587713,-0.00013341125,-0.17542283,-0.11606209,-0.13823462,0.4795473,0.50695306,-0.09650918,0.23460276,-0.18294437,0.22407508,-0.057974156,-0.4891836,0.31113863,0.73872125,-0.14051008,-0.20870623,0.62304604,0.56858546,-0.099396706,0.30866617,-0.4919907,-0.07964575,0.2188185,-0.08175226,-0.4208712,0.15645303,-0.40270934,0.21475789,-0.7325615,0.18356206,-0.37719786,-0.44505337,-0.72869956,-0.21967578,-2.3674054,0.28417647,-0.14299065,-0.2250234,-0.07083417,-0.19409752,0.41526604,-0.6898114,-0.5639733,0.22332583,0.03001657,0.5411198,0.02688502,-0.16384634,-0.220377,-0.25665653,-0.13756418,0.17584588,0.08125635,0.12906107,0.078419924,-0.44010654,-0.21731088,0.0021722019,-0.40889886,0.033695534,-0.6921192,-0.4170037,-0.17184916,-0.4746068,-0.31636384,0.5899621,-0.22816303,-0.001985284,-0.13584429,0.038348787,-0.07157171,0.23182583,0.041211147,0.2540475,0.123902634,0.026333291,-0.039942123,-0.26265243,0.1331864,0.22473095,0.1319002,0.2852115,-0.36558276,0.08653314,0.47658074,0.6265805,-0.18123068,0.81294906,0.73746884,-0.16139036,0.20153467,-0.23770165,-0.17407902,-0.41997844,-0.3025308,-0.08726247,-0.39994043,-0.45162246,0.09157757,-0.21256098,-0.6494229,0.62660253,-0.09903869,0.031181565,0.23286365,0.13574171,0.43930838,-0.25944027,0.06538845,-0.08078074,-0.018017402,-0.43832833,-0.39719063,-0.4863621,-0.36394197,-0.1503115,1.1557103,-0.1548059,0.21099006,0.12679873,-0.3011492,0.16426131,-0.00854434,-0.07482021,0.08551932,0.42426914,-0.05412696,-0.51388484,0.36501583,0.0920138,-0.1007736,-0.5984625,0.19256212,0.55041796,-0.5205469,0.4250776,0.15049574,-0.02073233,-0.20878448,-0.48041776,-0.25336125,0.009374132,-0.3390637,0.27143443,0.18281955,-0.6394998,0.22584938,0.3814673,-0.04133181,-0.6153634,0.50096184,-0.054810926,-0.35855022,-0.12774624,0.27743915,0.0077424785,0.09825866,-0.0051273406,0.35752138,-0.35467723,0.19943771,0.4540376,-0.020799499,0.20937449,-0.21002898,0.1863816,-0.6581752,0.1537073,-0.27208254,-0.10337908,0.3725176,0.061281208,0.05544334,0.39067873,0.30812597,0.3521485,-0.3253236,0.14916097,-0.10580586,-0.3594399,0.32931238,0.43395218,0.4450228,-0.25230125,0.38523838,-0.0029188967,-0.13917267,-0.18951797,-0.05252729,0.5081757,-0.056854643,0.13664979,-0.32147372,-0.20356329,0.25210744,0.68560463,0.08116984,0.30294803,-0.19519332,-0.06175256,0.1631502,0.039476093,0.19323209,-0.01668069,-0.56702036,0.32189783,0.00076687336,0.21200754,0.2499191,0.07065757,0.1133423,-0.23144963,-0.25801405,-0.046264455,0.14040893,0.17513797,-1.0591261,0.40543252,0.078512624,0.74815327,0.5695,0.10217551,0.04764647,0.39084145,-0.10791151,0.1312557,0.23710534,-0.033622377,-0.4514825,0.37885353,-0.6047534,0.39019835,0.13431652,-0.09363193,0.089541435,-0.17445676,0.40422648,0.7374429,-0.24896969,0.024115054,-0.052978653,-0.26109427,0.045379758,-0.3002226,0.14846037,-0.5381918,-0.36833414,0.6105654,0.51789826,0.37175095,-0.25138667,-0.026060088,0.13801269,-0.06281039,0.26003247,-0.075529926,0.06392648,0.20002754,-0.5064768,-0.013182847,0.33571845,-0.07326106,-0.021802617,-0.15998012,-0.30037436,0.11178664,-0.06524981,-0.08895634,-0.083206646,-0.66366476,0.16853389,-0.47273877,-0.10245769,0.31040192,-0.091352805,0.1770563,-0.023468686,0.0137981875,-0.17809552,0.2899442,0.0015682166,0.7469968,-0.09848188,-0.0037004764,-0.3738941,0.13109101,-0.017959429,-0.07401551,0.080189295,-0.26422068,-0.01780758,-0.6162916,0.25084403,0.083995506,-0.18776067,0.18002954,-0.22824004,0.11097327,0.43083823,-0.11946849,-0.18617003,-0.10321966,-0.051178914,-0.0830298,-0.23908383,-0.16149785,0.22067785,0.10410622,0.22462471,-0.022058047,0.02866535,-0.17860079,0.43905464,0.38118806,0.380545,0.31895855,-0.009276867,-0.22129609,-0.038986776,0.07148771,0.41735741,-0.20497172,-0.12897891,-0.21705343,-0.5530174,-0.2481319,0.14927171,-0.11894928,0.54675364,0.062024813,-0.010251169,0.6472898,0.1402093,1.1164355,-0.0817378,-0.35853478,-0.07876827,0.51631093,-0.040831387,-0.13662848,-0.28081557,0.715165,0.5487021,0.024608195,-0.015394954,-0.04996672,-0.005427434,0.15088572,-0.012360986,0.07864283,-0.14348875,-0.8078851,-0.27184156,0.116728336,0.3094558,0.07983367,-0.040445626,0.08035676,0.23052186,-0.1076572,0.18216808,-0.23374034,-0.14201383,0.26577508,0.23577714,0.00943944,0.17914654,-0.43372032,0.32764578,-0.47833002,0.057080455,-0.28187594,0.10092178,-0.09334278,-0.099788494,0.040981732,-0.11882096,0.42635316,-0.37685326,-0.42715073,-0.20885023,0.54767954,0.12671229,0.13121937,0.5348618,-0.09869581,-0.0027724276,-0.045892827,0.3652814,0.78377926,-0.26034796,0.09461261,0.18071455,-0.3113192,-0.43055674,0.23278649,0.01996911,0.2012961,0.0669028,-0.1706199,-0.38954398,0.2862371,0.22921287,-0.113982886,-0.13547304,-0.552775,-0.21196094,0.17643268,-0.29998782,-0.0924528,-0.31932825,0.22873023,0.56380945,-0.18624696,-0.4529721,0.13260414,0.24812481,-0.24454728,-0.34216627,0.03443983,-0.5069277,0.17342679,-0.020170024,-0.48572657,-0.34545884,0.04347606,-0.41224292,-0.013743653,-0.002980489,-0.2444827,-0.050359707,-0.298937,0.044965487,0.91745543,-0.023446359,0.10107838,-0.4336174,-0.35666576,-0.7567203,-0.41547582,0.52644473,0.2076558,-0.029822316,-0.33462098,0.15431826,-0.20091532,0.058348384,-0.1931014,-0.06312703,0.51166,0.121445365,0.41453546,-0.20468657,-0.5865731,0.15420881,0.017482487,-0.007239741,-0.36866057,0.48174554,0.18727365,0.5732193,-0.098634325,0.16864474,0.03575317,-0.38311687,0.04120437,-0.098353535,-0.11148587,-0.67727,-0.036027428 -490,0.4197061,0.008952935,-0.6930895,-0.16147007,-0.20514016,-0.17641716,-0.25315595,0.41071644,0.37900975,-0.59944814,-0.16221146,-0.35355556,-0.083976865,0.5962799,-0.33464238,-0.727158,-0.084249,0.1503193,-0.4343659,0.71046454,-0.3997393,0.2933941,0.05791081,0.5613304,0.26224828,0.16260162,0.40686712,-0.062427133,-0.17410457,-0.18328635,0.18518631,0.12888898,-0.6889948,0.10686004,-0.24344672,-0.7173235,0.053900737,-0.5236468,-0.23559736,-0.9238791,0.4597682,-0.89444405,0.585608,0.2842897,-0.2795212,0.07616768,0.451733,0.39879593,-0.12351749,-0.019349152,0.0935773,-0.026864627,-0.062416818,-0.06823699,-0.4652749,-0.56454414,-0.7872341,0.25727776,-0.41607985,-0.27244982,-0.2794682,0.22849013,-0.44358516,-0.02359199,-0.06343154,0.5334706,-0.32147592,-0.3024706,0.4514482,-0.18138091,0.41098198,-0.5527967,-0.26271304,-0.30373368,0.12963246,-0.2592089,-0.15834413,0.23545635,0.3409133,0.6612576,0.003934244,-0.35498548,-0.5455758,-0.0024848357,0.19246435,0.21799172,-0.3009236,-0.6105605,-0.17973489,-0.0053896704,0.1686186,0.33624926,0.3417846,-0.3112942,0.106870614,0.08177408,-0.33886895,0.4240178,0.5426601,-0.5077061,-0.3276129,0.31611872,0.5399456,0.3482908,-0.11493191,0.01582489,0.05558913,-0.6822732,-0.3541056,0.05000006,-0.24899305,0.7118395,-0.1489123,0.22274727,0.6334706,-0.21545269,-0.07344011,-0.065453894,-0.15960658,-0.23185135,-0.37797663,-0.33267266,0.35291854,-0.40749446,0.19144702,-0.33596477,0.7257107,0.14599682,-0.6564772,0.36814275,-0.80470127,0.19855334,-0.06656968,0.5231693,0.77800775,0.35713968,0.43765518,0.7228344,-0.44625005,0.015969634,-0.04697596,-0.30402434,0.13478439,-0.42047283,0.04582702,-0.3492745,0.047369216,-0.09515149,-0.1522033,0.09134385,0.47067627,-0.52144617,-0.07444259,0.3639566,0.85092664,-0.120654225,-0.08504478,0.80329704,1.01613,1.2048804,0.09548926,1.4238142,0.24986996,-0.31677637,0.3555216,-0.13116394,-0.93901634,0.3924161,0.31295744,-0.7481661,0.5107929,-0.011937936,0.18145086,0.5729504,-0.45194492,0.15558918,-0.42336038,0.21468915,0.14914323,-0.25812227,-0.24465953,-0.17874672,-0.108527504,-0.11436918,0.14475627,0.285947,0.043352153,0.15038247,-0.12314906,1.4782991,-0.17853846,0.14656365,0.08306701,0.40713045,0.2621218,-0.15059365,0.010668457,0.055695225,0.19902599,0.16362761,-0.55469304,0.05837296,-0.32857263,-0.51067674,-0.2518014,-0.316523,0.028420143,0.086722314,-0.50357866,-0.06252802,-0.19537552,-0.20092516,0.3021401,-2.3909209,-0.27935743,-0.123878054,0.05390334,-0.30226883,-0.3110532,-0.17794748,-0.5408693,0.6065014,0.3458269,0.35960403,-0.5726184,0.32702172,0.6560512,-0.54872304,-0.011341427,-0.73769593,-0.15291913,-0.17032908,0.39150998,0.0070418664,-0.28688025,-0.049880225,0.3319269,0.44148088,0.1803621,-0.018939978,0.063850276,0.611573,-0.1713835,0.69959885,-0.15179045,0.62459,-0.46803275,-0.3777516,0.45586035,-0.43726873,0.32889065,-0.07994852,0.11160687,0.47021106,-0.6399495,-1.114094,-0.7080485,-0.37264323,0.97815967,0.08689738,-0.5058949,0.28592843,-0.28738552,-0.17451723,-0.1208255,0.51724404,0.013742874,0.26721707,-0.94235444,0.10665991,-0.1704395,0.12725067,0.09484062,-0.013222158,-0.6146388,0.6961524,0.09152942,0.31414437,0.54871637,0.22543752,-0.43380055,-0.7028024,0.113119304,1.0626668,0.35594007,0.1822471,-0.45556894,-0.24605481,-0.5504579,-0.040094834,-0.006564399,0.39263737,0.7849417,-0.12299359,0.11661818,0.2957808,0.17610578,0.080892794,-0.123046,-0.47290096,-0.07614391,0.076716475,0.60184497,0.744853,-0.2559468,0.37167165,0.023224512,0.46887353,-0.3422438,-0.27754503,0.7662112,1.2326105,-0.033383425,-0.25124702,0.8461993,0.4752988,-0.30866858,0.7146179,-0.54113394,-0.39098713,0.34863567,-0.062000707,-0.5100766,0.16633876,-0.48298085,0.086525135,-1.1496662,0.31749263,-0.33543012,0.042236906,-0.8624308,-0.2559143,-3.614584,0.3427603,-0.3084226,0.04180521,-0.16330206,-0.016952349,0.42276883,-0.6078894,-0.9959312,0.10421201,0.07992903,0.9017484,-0.34738234,0.22654288,-0.17238365,-0.26771006,-0.29789314,0.17779781,0.27273428,0.30704135,0.06493336,-0.5597421,-0.15392424,-0.2935807,-0.40532413,-0.019934973,-0.59446275,-0.46124685,-0.3887289,-0.687212,-0.2611499,0.7119941,-0.40191534,0.0024885882,-0.2638254,-0.0087448405,-0.12215953,0.45860517,0.09716863,0.32720348,0.33956918,-0.107381366,-0.06831888,-0.16134748,0.07945591,-0.011545758,0.15561572,0.36246192,-0.20347561,0.4261305,0.5708956,0.94027835,-0.15244864,0.93652314,0.6475689,-0.056016874,0.2644502,-0.36713448,-0.36362147,-0.63772607,-0.37359467,-0.030606555,-0.41216543,-0.60385674,0.085281216,-0.32419816,-0.7940659,0.85407376,-0.1171977,0.22616607,-0.07108337,0.0070191524,0.35846713,-0.35878935,-0.09685969,-0.046240896,-0.10417149,-0.44989792,-0.4282963,-0.5010259,-0.5606676,-0.03945035,0.9821272,-0.07770989,0.039893534,0.33231303,-0.05906439,-0.0012570173,0.17042004,0.11956056,0.030672327,0.5580815,0.14873376,-0.7522096,0.4351885,-0.038019866,0.051411062,-0.6592961,0.23252113,0.64970595,-0.6338834,0.68621963,0.4999105,-0.019826418,-0.09476807,-0.65049744,-0.21051829,0.15443356,-0.1393184,0.41522446,0.27882382,-0.72759295,0.45128426,0.46693325,-0.35669228,-0.992692,0.68147826,-0.022239998,-0.22831923,-0.252588,0.44170296,0.22837047,0.16257913,-0.27448514,0.26226726,-0.37219962,0.04168449,0.29363456,0.017670337,0.38021278,-0.2806277,-0.17058659,-1.0347408,0.13402532,-0.57817155,-0.32747638,0.3070229,-0.00788489,-0.10596158,0.26765198,0.08985028,0.2767368,-0.21488136,0.22149892,-0.14272879,-0.18685515,0.32010934,0.46829298,0.5896683,-0.72001046,0.7066458,-0.0692474,-0.13400784,0.09157107,-0.10833335,0.47689936,-0.15452679,0.4480597,0.079184055,-0.2423537,0.16481057,0.8868165,0.07161015,0.3351073,0.22981568,-0.02890035,0.3380704,0.19983383,0.06271416,0.02764525,-0.68787503,-0.13767691,-0.24364167,0.16111414,0.4979544,-0.054549653,0.335421,-0.0799252,-0.43121707,0.047269534,0.114290945,-0.11770576,-1.2959641,0.31811574,0.16161765,0.894056,0.7683688,0.12786125,0.15974867,0.638351,-0.15377016,0.17212784,0.57023054,-0.0665605,-0.56969017,0.65520716,-0.48290667,0.35421476,-0.02876974,0.0015107145,-0.23417489,0.11652267,0.6218837,0.6019015,-0.22663665,0.22916764,-0.032386195,-0.21319933,0.16126077,-0.32014427,0.11133164,-0.33473957,-0.32291755,0.8206651,0.53778917,0.26640192,-0.23688538,-0.07057571,0.16584626,-0.16268152,0.09594003,-0.15017454,0.05100982,0.082003325,-0.6455774,-0.08559644,0.5864478,0.27633876,0.24698134,-0.06544028,-0.41866323,0.17925502,-0.254432,0.019783521,-0.104352176,-0.70130616,-0.1607227,-0.4651222,-0.48641655,0.54363483,-0.17426401,0.2627668,0.14843564,0.21260794,-0.36204383,0.42034706,-0.11871792,0.64823127,-0.14463158,-0.025226852,-0.2274433,0.36410034,0.18037944,-0.42657447,-0.21152677,-0.29022986,0.30150554,-0.5235664,0.5483082,-0.03266704,-0.36699247,-0.044173975,-0.06327019,-0.047707215,0.68003863,-0.29891577,-0.16101687,0.16099994,-0.22137773,-0.15941961,-0.186782,0.04433364,0.4326633,-0.028324386,0.033330362,-0.20986764,-0.15407205,-0.111937426,0.4631813,-0.12923305,0.20922165,0.54815334,0.150635,-0.3541893,-0.11908642,0.17619938,0.7226756,0.022924483,-0.3358387,-0.3277144,-0.34622812,-0.37999848,0.3261187,0.07244622,0.18278007,0.1669146,-0.46914014,0.63940215,0.42273495,1.3820043,0.046875507,-0.5135828,-0.026799003,0.4747205,-0.16257279,-0.29265746,-0.48054484,1.0062068,0.6435053,-0.22486703,-0.14466125,-0.4119152,0.16160071,0.09738044,-0.33304438,-0.13627727,0.04001561,-0.58413935,-0.26327464,0.2761127,0.45048425,0.14444475,-0.22339207,0.20289725,0.13814956,0.13953398,0.45996174,-0.45164025,-0.3347681,0.3013843,0.5130649,-0.034045275,0.048652917,-0.31268132,0.34154156,-0.6277662,-0.0074743927,-0.5271276,0.20827417,-0.26643276,-0.44017473,0.18266523,-0.08514738,0.2929655,-0.30726814,-0.29974708,-0.1485926,0.49902713,0.20412888,0.18366475,0.6869831,-0.26321003,-0.04534823,-0.061000567,0.72199994,1.2864287,-0.24365985,0.002136469,0.24333255,-0.019142816,-0.6196924,0.44168022,-0.7080769,0.26377377,-0.109585546,-0.28682292,-0.69977957,0.08067846,0.21434312,-0.16264628,0.053637173,-0.66844136,-0.29516098,0.11968521,-0.18908823,-0.20615588,-0.28657237,-0.070643805,0.5493472,-0.16360267,-0.34977826,0.13134374,0.33545592,-0.16563025,-0.5117508,-0.1711783,-0.22728886,0.3657867,0.30249116,-0.372646,-0.0306604,0.12179487,-0.64372736,0.18065463,0.18390667,-0.4071881,-0.101680376,-0.40283856,-0.09511182,1.1908921,-0.15851073,0.32719484,-0.35759392,-0.5041607,-1.062574,-0.26162672,0.5316008,-0.0022874575,-0.023994192,-0.652566,0.053076062,-0.15522878,0.05015863,0.14686792,-0.2966083,0.26124188,0.056745637,0.6839041,-0.16876169,-0.550635,-0.047635783,0.24016808,-0.07309022,-0.59906566,0.61383283,-0.11297759,1.0708766,0.0353693,0.0919801,0.38560346,-0.5107781,0.025256285,-0.16903867,-0.22622108,-0.65612906,0.16585834 -491,0.24049966,-0.25650468,-0.35081318,-0.15486254,-0.43201378,0.19977714,-0.1477667,0.2767664,0.19764386,-0.43069348,-0.37798762,-0.06538121,0.14273253,0.27482396,-0.13981353,-0.5460409,-0.10728748,0.20747402,-0.61586946,0.38590056,-0.61422014,0.4227015,0.21010001,0.29989582,0.08795591,0.33450365,0.31367126,-0.06290937,-0.18199857,-0.016130766,-0.23801391,0.22766519,-0.47460708,0.062440302,-0.2663318,-0.294549,0.11309331,-0.54005724,-0.3084114,-0.68727547,0.32481366,-1.1061409,0.5095324,-0.08924583,-0.07773471,0.13881186,0.23639631,0.21814713,-0.30465502,0.102339335,0.1845167,-0.20898366,-0.113840766,-0.17316072,-0.23545928,-0.37148646,-0.5389961,0.11170624,-0.43004194,-0.30294746,-0.19877698,0.20172803,-0.3832216,0.21284424,-0.1051054,0.21522224,-0.39597628,0.005538436,0.31719413,-0.2097667,0.112185225,-0.5185978,-0.024987202,-0.09792093,0.43629304,-0.103742935,-0.04803598,0.40494743,0.40414408,0.5914603,0.22149475,-0.30786142,-0.24588068,-0.11918129,0.1634904,0.6615373,-0.14518595,-0.2547179,-0.26584843,0.070927225,0.24300899,0.36647967,0.056816135,-0.005589749,-0.100280404,-0.07472236,-0.35654083,0.32771155,0.5381891,-0.3901971,-0.44937128,0.3223255,0.6798707,0.035518203,-0.17454728,0.041549627,0.054826148,-0.49146575,-0.09604473,0.14068106,-0.111484475,0.5337062,-0.22541912,0.1314343,0.8221125,-0.081436194,0.19506754,-0.088639416,0.054544803,-0.32908052,-0.23533659,-0.13595568,0.09485108,-0.5343618,0.1044483,-0.2753038,0.8092946,0.15623654,-0.6405343,0.511319,-0.44651845,0.22515866,-0.08287496,0.55536443,0.5644436,0.27323848,0.44281715,0.7968812,-0.3594253,0.16605963,-0.11821497,-0.413579,-0.04871491,-0.33374646,0.17202497,-0.3850631,0.27665702,-0.09101761,0.02205508,-0.057876505,0.5965052,-0.5077107,-0.14587271,0.20236471,0.87502,-0.41358763,-0.078966975,0.725758,0.9060388,1.0287869,-0.012302036,1.466627,0.41627914,-0.25700906,0.040289182,-0.3156326,-0.804728,0.20624433,0.4121268,0.27241448,0.26203835,0.08838998,-0.11450576,0.3168089,-0.49585503,0.004920491,-0.29611486,0.17910595,0.13232867,0.08058932,-0.5300722,-0.20783648,0.080422565,-0.13000453,0.2768353,0.19208468,-0.17472894,0.44306558,-0.13640691,1.4733334,-0.08034211,0.08085072,0.15453216,0.48754546,0.26823792,-0.046763547,-0.09105503,0.4350633,0.42298684,-0.10602269,-0.67380106,0.12389201,-0.31826422,-0.4154997,-0.20427693,-0.2885882,-0.21571632,0.18087408,-0.28404826,-0.29074886,-0.13466732,-0.3203303,0.35601753,-2.5626054,-0.35376593,-0.20012115,0.3546547,-0.33442837,-0.23183951,-0.12931518,-0.60754937,0.28037095,0.22312157,0.43933445,-0.6638493,0.39519802,0.5122952,-0.48109192,-0.10607187,-0.7351743,-0.13075699,-0.024608906,0.4086538,0.035446096,-0.17725696,-0.3106169,0.032262024,0.61593664,0.17568922,0.15958211,0.5475098,0.53174764,0.275964,0.53856725,0.0885408,0.6162292,-0.40910688,-0.1080181,0.4506381,-0.31541744,0.41208276,-0.20825349,0.11079256,0.5109929,-0.5200481,-0.8167587,-0.6801787,-0.52835506,1.1095207,-0.38326547,-0.35103115,0.20963576,-0.09402021,-0.14740051,-0.06354953,0.5087591,-0.19040813,0.00019700613,-0.78881747,0.034407355,0.09635035,0.15168382,0.071097836,0.022998348,-0.24746041,0.7624922,-0.1570469,0.5550908,0.16787876,0.20394818,-0.08572284,-0.29920247,-0.0003667942,0.89904225,0.3558384,0.069069214,-0.22790502,-0.36833778,-0.12832537,-0.36795992,-0.022180377,0.4184281,0.7078802,-0.0025173745,0.08097653,0.3576396,-0.07038939,0.036240183,-0.18318343,-0.17029135,-0.10653346,-0.031675704,0.4210295,0.56222636,-0.24781227,0.42234325,-0.35484833,0.31479773,-0.12695341,-0.60702235,0.4988849,0.60067034,-0.16035624,-0.0528103,0.6646458,0.48825735,-0.48121718,0.44435582,-0.74385357,-0.22544673,0.64820784,-0.17316996,-0.49759415,0.05599352,-0.25946897,0.16006884,-0.7843433,0.26820204,-0.13740091,-0.3268542,-0.49138913,-0.13506404,-3.1376898,0.13621387,-0.1559253,-0.14180402,-0.22454797,-0.26244855,0.17242989,-0.47129375,-0.63881916,0.2407074,0.09744728,0.5387248,0.009609767,0.30426827,-0.30412918,-0.014744282,-0.3220704,0.1257601,0.16067502,0.3770955,-0.23541567,-0.46236324,0.09211063,-0.1591716,-0.4708733,0.20273037,-0.69097954,-0.5296236,-0.15625797,-0.42948723,-0.26033407,0.5814754,-0.40240175,0.05849433,-0.31948707,0.013574489,-0.32453632,0.14763677,0.16678728,0.22189035,0.11208214,-0.18452753,0.06487828,-0.31902406,0.7479038,-0.038089115,0.27666014,0.21928212,-0.08761239,-0.024765449,0.3092138,0.5931781,-0.1718813,1.034897,0.3109731,-0.12868576,0.231788,-0.29721993,-0.16202618,-0.5909713,-0.24336112,0.023425927,-0.47332856,-0.6011899,0.041985925,-0.35454848,-0.85075873,0.56016797,0.0133578135,0.30726844,-0.06080394,0.3211135,0.41902143,-0.15341285,0.0034302622,-0.060696237,-0.16623776,-0.6247167,-0.37520885,-0.65204686,-0.44418493,0.091399364,0.9784308,-0.19595559,-0.067911886,-0.20541285,-0.35310864,0.0032667858,0.08546572,0.09298807,0.2621731,0.56676036,-0.027684463,-0.7658719,0.48584446,0.11372022,-0.07633956,-0.45818433,0.01414824,0.59020865,-0.8008461,0.5866347,0.46149462,-0.027776761,0.05344332,-0.4602847,-0.36368564,-0.18196462,-0.2610374,0.39363232,0.18488696,-0.78311974,0.5357692,0.34809685,-0.4836966,-0.9061679,0.16995142,-0.041989915,-0.052498903,0.058848985,0.300245,0.1860214,-0.098636165,-0.107964754,0.019652953,-0.4482054,0.3582767,0.22324446,0.056754094,0.42296726,-0.28898,-0.40699124,-0.75623196,-0.070392266,-0.49742618,-0.12603198,0.30556387,-0.03440812,-0.10464525,0.17269857,0.06986349,0.46615845,-0.30318406,0.076848924,0.12991564,-0.2643686,0.1495523,0.32345596,0.37905365,-0.40746525,0.5594481,0.07473806,-0.18154904,0.13777538,-0.028327227,0.32387856,0.15809543,0.26147553,0.06450045,-0.20622848,0.41452068,0.91338265,0.13269158,0.4411873,0.2614374,-0.1821406,0.52567387,-0.012781224,0.055977397,-0.02346846,-0.44840124,-0.03940257,0.000494693,0.10506599,0.39140844,0.2999632,0.34501797,-0.076751806,-0.067636274,-0.05278519,0.11583813,-0.055959642,-1.0166038,0.029227462,0.12569581,0.8728918,0.35079426,-0.015393466,-0.055236083,0.6326057,-0.33106866,0.14261167,0.4680124,-0.045290954,-0.50824344,0.73145527,-0.4385407,0.40895873,-0.27024737,0.004637137,0.031189825,0.19667777,0.2470245,0.86403495,-0.18380283,-0.00996095,-0.10466308,-0.19363086,0.101552926,-0.30756727,0.02654752,-0.3786249,-0.26984617,0.67045826,0.31924817,0.3771551,-0.05254137,-0.08315575,-0.0877995,-0.11419921,0.20395228,0.13524589,0.11333089,0.08829391,-0.63777494,-0.2396911,0.6212556,0.2462039,0.27758262,-0.15963146,-0.43831182,0.19649199,-0.33649006,-0.056602936,0.028576186,-0.7434961,-0.025093505,-0.09836234,-0.6731024,0.20964544,-0.008966736,0.125217,0.25914183,-0.056307603,-0.25978437,0.07973023,0.13479689,0.88057965,0.0014810839,-0.2813923,-0.37142643,0.09021664,0.369314,-0.36581627,0.27037463,-0.29463348,0.0476729,-0.51806575,0.85209095,-0.20572202,-0.46943498,0.26269013,-0.32060322,-0.03859728,0.6160592,-0.09097718,-0.08856673,0.02552453,-0.15582047,-0.51106745,-0.010115491,-0.19569792,0.17990068,0.35163397,-0.12245524,-0.13312794,-0.29021087,-0.076667294,0.647457,-0.0043669906,0.42226702,0.2485706,0.026489917,-0.23228455,0.05743951,0.14424588,0.5617785,0.03257354,-0.033987906,-0.34224796,-0.46543485,-0.110826,0.22119235,-0.12924854,0.21967593,-0.024768349,-0.4545451,0.87734693,-0.03113241,1.0942985,0.25728545,-0.3145669,-0.06913582,0.56542253,-0.04725821,0.011067905,-0.2780939,0.82006294,0.48684222,-0.06088891,-0.0466506,-0.55456465,-0.040983073,0.31217146,-0.28900725,-0.12483189,-0.05816463,-0.55871457,-0.3614203,0.24297215,0.1852074,0.16935508,-0.054281324,0.16819116,-0.013995273,0.07951559,0.6004039,-0.587409,-0.32908455,0.2399843,0.0864948,-0.019100705,0.17615688,-0.40097308,0.39563814,-0.5855812,0.15585874,-0.41246095,0.0036230257,-0.24689354,-0.3655618,0.086315,0.060868464,0.45178843,-0.29124743,-0.47105378,-0.07474317,0.46805468,0.086907096,0.20511863,0.5763214,-0.26477298,-0.0080574835,0.12288236,0.60919464,1.3523681,-0.27977487,0.18777944,0.2662827,-0.34053904,-0.7141678,0.51940435,-0.3442092,-0.021166964,0.015155767,-0.36530557,-0.4621285,0.26711634,0.31644276,0.0066254246,0.18409058,-0.47874138,-0.21503296,0.35291085,-0.2293924,-0.14943527,-0.1805984,0.29415736,0.74694264,-0.26531652,-0.19709133,0.03666767,0.31154448,-0.39468876,-0.52017367,-0.18567984,-0.2736902,0.3085635,0.1552821,-0.23129228,-0.073614106,0.13333401,-0.42639682,0.10838835,0.13791497,-0.41617584,0.0412565,-0.2883721,0.0334217,0.86791563,-0.17496344,-0.07519891,-0.7573551,-0.3849383,-0.9090906,-0.3532929,0.37311077,0.1800841,0.021201761,-0.3681224,-0.013363277,-0.056459077,-0.23226474,0.17409587,-0.586082,0.45195103,0.18127675,0.46537906,-0.2388355,-0.7730765,0.014573693,0.042989526,-0.1642467,-0.5539171,0.6301418,-0.04067092,0.8724877,0.11080713,-0.12999311,0.047357257,-0.38099998,0.16045892,-0.41615534,-0.094602756,-0.8604995,0.0259652 -492,0.520342,-0.2658092,-0.71149826,-0.042771846,-0.5879007,-0.056008488,-0.096246965,0.3785757,0.15514563,-0.49668285,-0.21395816,-0.079818316,-0.011984487,0.14164646,-0.17352246,-0.30862692,-0.062651396,0.39094055,-0.77205586,0.61897314,-0.14964549,0.26729178,0.15878294,0.356113,0.2954142,0.09248778,-0.049624104,0.13472973,-0.030714171,-0.4771037,-0.047859024,-0.05945371,-0.9219084,0.07439216,-0.21435124,-0.59951967,-0.1453206,-0.6103785,-0.4569035,-0.95973897,0.43114412,-0.95015526,0.67767715,-0.08481363,-0.27047506,0.25034347,0.22072256,0.4240508,0.071554296,-0.09261825,0.33438882,-0.22349799,-0.14139092,-0.10558358,-0.018738827,-0.32063246,-0.6644415,-0.15325789,-0.43129587,-0.260253,-0.26540914,0.2535695,-0.37427536,0.07845341,-0.3084297,0.8508887,-0.42905512,0.40600267,0.11334545,-0.06566826,0.11836406,-0.7239402,-0.13500336,-0.18815927,0.3295369,-0.17943175,-0.16471003,0.29939595,0.21992809,0.22956878,0.10460534,-0.25018266,-0.23334736,0.016347952,0.05729741,0.50553393,-0.18664818,-0.23882794,-0.07782537,0.07521797,0.2629691,0.24788284,0.34818223,-0.1587636,-0.03884752,0.042610664,-0.07992603,0.8471523,0.4432211,-0.35266402,0.013933678,0.4174787,0.7464769,0.28156707,-0.243602,0.10220149,-0.135344,-0.51896596,-0.1391526,0.12770559,-0.29677233,0.4455899,-0.23041292,0.29154804,0.51742136,-0.2813084,-0.3639799,0.3997376,0.061439905,0.07066012,-0.19778742,-0.4421239,0.54101175,-0.628527,0.3652792,-0.19760782,0.6434215,0.035050254,-0.72742623,0.28722754,-0.6649964,0.25939295,0.061125796,0.5523723,0.7140949,0.55847836,0.31309298,0.74737245,-0.3277436,0.13204326,0.076957814,-0.3337066,-0.2701782,-0.37076083,0.13324328,-0.45684066,-0.014836639,-0.48355758,-0.15096574,0.0011316066,0.56545824,-0.64044744,-0.43521166,0.20307438,0.8210357,-0.20148681,-0.17186145,1.1494873,0.9169063,1.3280958,-0.0069330237,1.0532962,0.035583157,-0.14975798,-0.09425926,0.037400115,-0.604391,0.31606713,0.37588024,-0.020788796,0.07943753,0.123782456,0.08563437,0.4548775,-0.47931466,-0.1001299,-0.13574518,0.1778128,0.16376296,-0.24735199,-0.53372747,-0.1957118,-0.08980199,0.1646552,0.05745719,0.2763289,-0.23683472,0.43213263,0.19801068,1.3275372,-0.10489905,0.14927368,0.13591151,0.6027379,0.23217303,-0.27924457,-0.012172937,0.17831671,0.32140324,0.21596317,-0.5258543,0.08088184,-0.29985094,-0.4372361,-0.19249535,-0.35969564,-0.49924454,-0.08741468,-0.39461184,-0.39830813,-0.13558333,-0.44279385,0.33343327,-2.4889994,-0.21100879,-0.15751998,0.44294417,-0.1745234,-0.41926524,0.05324167,-0.6664286,0.35358617,0.21790437,0.6793744,-0.6577699,0.5128326,0.51211727,-0.8159016,0.19627966,-0.68788093,-0.21127439,0.039304744,0.23053907,-0.068803094,-0.13847528,0.0576638,-0.04120626,0.52643234,0.1898756,0.15612951,0.39500514,0.47975227,-0.20216607,0.8017002,-0.017350676,0.5064232,-0.41819975,-0.24671058,0.5571878,-0.31308636,0.21486188,-0.3676224,0.021931099,0.7408963,-0.57381684,-1.0611814,-0.6725464,0.03382786,1.2870256,-0.15810134,-0.6032328,0.21340346,-0.58271486,-0.23075263,-0.10160824,0.49784622,-0.06255526,0.016577335,-0.60313433,-0.1349973,-0.15829796,0.041228037,-0.05340628,-0.030796722,-0.625207,0.7465677,-0.15478538,0.53363734,0.23592453,0.19253348,-0.4917909,-0.3979597,-0.0027694304,0.8648353,0.5083235,-0.0020075936,-0.31374136,-0.13252214,-0.2868018,-0.15778744,0.028375706,0.74699074,0.4908948,-0.18190043,0.14585792,0.4341537,-0.014136613,0.19940864,-0.22024387,-0.34805164,-0.34859416,-0.13409854,0.60960805,0.6492029,0.014709805,0.7812063,0.014270608,0.07654638,-0.09798623,-0.62628937,0.39590684,1.0140544,-0.36391136,-0.5005501,0.6924572,0.30919418,-0.33154032,0.4758695,-0.40897623,-0.26487866,0.45606112,-0.049020942,-0.7307547,0.041227,-0.23920207,0.14741032,-0.5308487,0.19518411,-0.5764479,-0.7901376,-0.42315707,-0.27963343,-2.1318777,0.34768367,-0.34568986,0.09848402,-0.16573435,-0.4688889,-0.14255603,-0.43509424,-0.7726801,0.09317122,0.076063976,0.9162715,-0.19493489,0.12303389,-0.24429588,-0.43469325,-0.35888842,0.3132386,0.25444984,0.3956274,-0.17456406,-0.31258163,0.11880133,-0.036098417,-0.35963917,-0.17508478,-0.70783615,-0.46538067,-0.09552752,-0.5933187,-0.46134984,0.6390025,-0.19926326,0.21704586,-0.3445774,0.0036150722,0.15748487,0.10426576,-0.061465774,0.3003358,0.18647893,-0.19285291,0.12006072,-0.10812568,0.25138763,-0.0534465,0.4142822,0.16391653,-0.2623775,0.39008817,0.42782223,0.91332644,0.0080150375,1.1824275,0.333416,-0.19407529,0.29569834,-0.07656846,-0.43156245,-0.79213595,-0.12228539,0.2870216,-0.4845954,-0.55373996,0.16404088,-0.3326119,-0.9390021,0.80634004,-0.0067745545,0.42177102,0.052263767,0.5191385,0.6842404,-0.23430061,-0.13622765,-0.0598723,-0.24326496,-0.54995817,-0.20080298,-0.6653318,-0.5063523,-0.30582735,1.1752257,-0.46335712,0.023626527,0.23275608,-0.33588064,0.19851585,0.3194599,-0.1445522,-0.012645498,0.5529886,-0.15110162,-0.65340406,0.330663,-0.1977008,0.084128715,-0.6329227,0.45309448,0.64462346,-0.60524654,0.520236,0.3616519,-0.12432758,-0.46264783,-0.68016595,0.0316444,0.07998082,-0.2634363,0.44735715,0.36608526,-0.8374467,0.46709546,0.34168124,-0.14513026,-0.9543991,0.7175146,-0.0062193573,-0.49409485,-0.043573257,0.55061626,0.20937105,-0.070693545,-0.27611992,0.23782794,-0.40608212,0.40232623,0.038280766,-0.18946719,-0.03474586,-0.26467738,-0.37593773,-0.81444067,0.16529985,-0.6354923,-0.29227474,0.30534253,-0.079041354,0.058782134,0.5228193,0.3387543,0.41071928,-0.10098243,0.018735593,-0.4094727,-0.45179796,0.4595375,0.47155285,0.58708525,-0.62349415,0.6826981,0.094993465,-0.36610237,0.08285355,-0.0011371473,0.47716287,-0.13772124,0.63401663,0.27446225,-0.112865806,0.015067573,0.76522785,0.25777063,0.4563931,0.025511762,-0.038456842,0.038149346,0.13717079,0.5020166,-0.27494383,-0.81532127,0.20628984,-0.33012328,0.0055382303,0.5601179,0.009494926,0.16269475,-0.11936291,-0.33849752,-0.04282075,-0.0010365596,-0.19750232,-1.246848,0.36250302,0.3045836,1.0943075,0.5250783,0.040673006,0.01846253,0.8496143,-0.29302195,-0.028417692,0.33240503,0.063979074,-0.22914803,0.541265,-0.91126555,0.56627613,0.078921326,-0.05055231,0.06389579,-0.051458117,0.42410913,0.79168534,-0.21547057,-0.108680926,-0.15805756,-0.33550707,0.28890845,-0.4042687,0.14257605,-0.49052128,-0.24439223,0.8726804,0.575698,0.3188472,-0.25811523,0.1662835,-0.003386562,-0.25723782,0.24735884,0.114588894,0.048066746,-0.13569169,-0.51803035,0.072216325,0.4661555,-0.08197377,0.030482167,0.14569597,-0.13670526,0.391543,0.040418237,-0.021142036,-0.14234553,-0.8632006,0.09053004,-0.24092078,-0.350433,0.29875186,-0.037968498,0.21198839,0.3176055,0.0026882563,-0.17466597,0.31673595,0.021729177,0.55730134,0.014719139,-0.006025642,-0.24367958,0.28787157,-0.023545578,-0.16719688,0.21463831,-0.0634318,0.23102961,-0.62077665,0.4331747,-0.07064399,-0.53499234,0.17187603,-0.035697658,-0.07064516,0.57175344,-0.09311918,-0.09397164,0.041505467,-0.114243396,-0.14306176,-0.3621255,-0.07274213,0.14766796,0.07035775,-0.19729292,-0.3941517,0.019190183,-0.17273748,0.5121607,-0.030533478,0.49417457,0.17679645,0.051319867,-0.56264263,0.09202039,0.22744231,0.68031,-0.28856805,-0.10702872,-0.20207958,-0.27428532,-0.36358544,0.5130965,0.0075695417,0.3212644,0.052731026,0.097603254,0.77816564,-0.07291849,1.2768844,0.011915073,-0.33561432,0.07461143,0.56576777,-0.038342457,-0.25864306,-0.25250313,1.0124038,0.5263315,0.040681858,0.09583449,-0.41120687,0.07889414,0.14873473,-0.14984788,-0.118303336,0.13510005,-0.38372573,-0.075953774,0.14535423,0.29895115,0.2115082,-0.19963448,0.17882253,0.68126637,-0.13007341,0.17307079,-0.5931412,-0.40919027,0.390826,0.2349331,-0.2137479,0.04289932,-0.51052314,0.27720734,-0.6038322,0.22345708,-0.30316338,0.17422909,-0.28995946,-0.28037512,0.2564859,0.12949002,0.49223718,-0.24951144,-0.43715248,-0.17727064,0.3561237,0.3800098,0.04421547,0.57428384,-0.31800416,-0.010869493,0.10545873,0.31293663,0.6521382,-0.073328026,-0.16222993,0.12866066,-0.45703158,-0.74508214,0.544215,-0.41386577,0.15358488,0.22329189,-0.011604215,-0.37540996,0.17567928,0.18700503,-0.09520978,-0.020832727,-0.92225426,-0.05131994,0.30477703,-0.33135262,-0.004577182,-0.34980062,0.116042465,0.63483787,-0.13919967,-0.32816657,-0.13793826,0.2604795,-0.14755498,-0.56209475,0.0892168,-0.44424295,0.26135883,-0.17780845,-0.4560915,-0.23082662,0.036246758,-0.6063269,0.16951312,0.14207298,-0.28096363,0.12815751,-0.29245093,0.11214453,0.8342605,-0.30387908,0.14928927,-0.1888455,-0.52111083,-0.610653,-0.10508738,0.084987104,0.16458859,-0.02874249,-0.7656832,-0.23407543,-0.32794634,-0.3436929,-0.05370428,-0.47249314,0.39311504,0.14791656,0.46356666,-0.10077146,-1.0127312,0.35031286,0.018599981,-0.06963225,-0.44009387,0.44424388,0.08179615,0.7016174,0.03962819,0.16505136,-0.031358164,-0.46879444,-0.07151509,-0.067833595,-0.14404573,-0.5642708,-0.12608342 -493,0.51450217,-0.4394157,-0.37761635,-0.15012561,-0.4108265,0.058883984,-0.12671632,0.60278016,0.22898443,-0.5806503,-0.1748298,-0.13106689,0.0019435063,0.28406787,-0.17747894,-0.490166,-0.007862031,0.24689633,-0.47664583,0.6712477,-0.34325504,0.26076856,0.0348287,0.30510983,0.26327935,0.24096984,0.15377204,-0.048471898,-0.21184543,-0.10107516,-0.16077548,0.3216729,-0.42602658,0.33546287,-0.13129649,-0.20471361,0.14388643,-0.4011659,-0.18806866,-0.7240249,0.21831799,-0.71786594,0.39711303,0.066711515,-0.39734143,0.36214226,0.08657156,0.28894657,-0.2716765,0.0014729686,0.09158144,0.03784483,0.113993704,-0.15236689,-0.08608249,-0.47339272,-0.5792835,-0.03958689,-0.358381,-0.30504775,-0.30031672,0.14850122,-0.39188504,-0.02520074,-0.08377628,0.6138009,-0.5178393,0.100233406,0.24866715,-0.16493292,0.3213302,-0.62356,-0.14525318,-0.17710093,0.221596,-0.029401395,-0.17586958,0.33510745,0.30495262,0.32229927,-0.023339923,-0.20760679,-0.3688017,-0.06467153,0.28255185,0.38899305,-0.18195923,-0.40723103,-0.008990396,-0.011511371,0.20916128,0.21180859,0.25347507,-0.23261595,-0.18031764,0.030418772,-0.17258403,0.19686796,0.2806762,-0.23546425,-0.25130975,0.18650684,0.5575591,0.05377645,-0.18863939,-0.10338688,0.05319529,-0.5410229,-0.2622896,0.10142292,-0.33971858,0.47490036,-0.19796333,0.15907559,0.6911714,-0.22993621,0.0014298633,-0.030565152,0.14864218,-0.119818866,-0.33378765,-0.33164772,0.22260754,-0.4737396,0.012079585,-0.10772078,0.71114475,0.1253757,-0.5826591,0.21138194,-0.45822275,0.123172306,-0.14993227,0.3454042,0.5599738,0.4751796,0.3580061,0.62286305,-0.45719138,0.12381175,-0.07133427,-0.35302174,0.07804133,-0.26135045,-0.0621849,-0.53356063,0.044413857,-0.06761194,-0.13010791,-0.009547897,0.4184552,-0.5557638,0.011275047,0.12819508,0.78336114,-0.31296116,0.002960654,0.70699775,0.8193278,1.071048,0.06612349,1.0872217,0.23684858,-0.2792827,0.24350396,-0.2212893,-0.63647014,0.31872588,0.51398754,0.08691114,0.2823378,0.012685649,0.11452568,0.4268002,-0.2379596,0.17927364,-0.28566587,0.08133734,0.0293569,-0.31863552,-0.48738053,-0.35666752,-0.09984346,0.11141048,-0.18663085,0.2635428,-0.08451975,0.33030778,0.078437194,1.825329,-0.022392813,0.051737092,0.14636981,0.33464938,0.27296734,-0.20250969,-0.008961476,0.5684296,0.2912759,0.26771998,-0.56891525,0.15966411,-0.25505444,-0.54676664,-0.14367746,-0.3546793,0.03217999,-0.057143345,-0.5016639,-0.18397595,-0.12538359,-0.24246922,0.35006514,-2.6359115,-0.24969566,-0.28098664,0.25483721,-0.21819478,-0.3132183,0.017166961,-0.41681635,0.29024047,0.3651513,0.46209568,-0.58286893,0.2148005,0.42114815,-0.5823205,-0.050383724,-0.51296484,-0.2627843,-0.1720549,0.4014666,0.037724763,-0.020394623,-0.012593016,0.15800425,0.5351353,-0.15003252,0.26994675,0.2675277,0.31472713,0.028243814,0.5602941,0.07512971,0.39356464,-0.1905364,-0.22571626,0.3569373,-0.3741917,0.15896714,0.19378158,0.21910529,0.41695294,-0.43322092,-0.85730326,-0.7693228,-0.31039667,0.9974409,-0.15008616,-0.38338658,0.32412386,-0.27695617,-0.31879053,-0.10930998,0.2405304,-0.06433832,0.051781446,-0.8697221,0.14044039,-0.014078848,0.076762296,0.01325421,-0.23876299,-0.3882746,0.7961986,0.0009035021,0.50886667,0.38627958,0.13083223,-0.24710312,-0.3781613,-0.07313366,0.8932732,0.4950974,0.12248451,-0.2745929,-0.23981844,-0.34068918,0.03756319,0.060391698,0.36196744,0.7687806,-0.13861081,0.17437957,0.19026011,-0.025225462,0.109273896,-0.19788298,-0.28796163,0.02416107,0.098615885,0.42977673,0.46237725,-0.16317846,0.37588117,-0.10322266,0.46517193,-0.05785299,-0.49428165,0.47168815,0.9477996,-0.114693575,-0.32307476,0.57809484,0.6500872,-0.1852963,0.4297251,-0.4582606,-0.12810037,0.5766963,-0.27514562,-0.36755317,0.14001466,-0.41198906,0.19228579,-0.8826092,0.3410434,-0.3116568,-0.38369882,-0.48474476,-0.14792956,-3.0003169,0.2532333,-0.22966374,-0.372626,-0.1404463,-0.1200147,0.17609195,-0.7777301,-0.48375952,0.17434254,0.16269645,0.6836459,-0.008549045,-0.03231941,-0.1901587,-0.38627532,-0.14251216,0.15352555,-0.07391624,0.19019589,-0.10010338,-0.5761239,-0.04236804,-0.16542394,-0.3854165,0.117599815,-0.6835582,-0.5532621,-0.24991766,-0.56725556,-0.37137094,0.7021184,-0.05458394,-0.008904889,-0.047393546,0.02709626,-0.059093148,0.24542254,0.12657845,0.13282825,0.10054098,-0.093122415,0.0015109777,-0.28305182,0.27192,0.10600096,0.23404469,0.30906263,-0.1654539,0.19067585,0.5975564,0.5745152,-0.22257681,0.7656855,0.41349852,-0.124148294,0.2957762,-0.28315538,-0.2928117,-0.49751395,-0.41410655,0.01844336,-0.4170686,-0.45352063,0.043775134,-0.35192412,-0.64317095,0.6327739,-0.011273105,0.243785,-0.06439926,0.20353642,0.43162096,-0.31558037,-0.112318374,-0.11371808,-0.15715599,-0.52121305,-0.2913548,-0.75538605,-0.47865453,0.19623527,1.0827334,-0.2550724,-0.01445058,-0.013590792,-0.2154878,0.060397454,0.117225036,-0.06833062,0.20554361,0.38497278,-0.059617758,-0.6409999,0.5360558,0.09443759,-0.21863562,-0.35914046,0.18112344,0.6033334,-0.46488726,0.6153524,0.33969188,-0.014853289,-0.12873018,-0.6013917,-0.116277635,0.02693107,-0.17697728,0.5085231,0.27035642,-0.70439464,0.38552237,0.3085831,-0.47284904,-0.69788355,0.5237934,-0.14106151,-0.27734458,-0.065759495,0.35984498,0.15039998,-0.028662158,-0.23665795,0.3293237,-0.44351518,0.26445287,0.36489275,-0.03161947,0.16449186,-0.16000411,-0.07518034,-0.88932335,-0.035089523,-0.39319602,-0.32154825,0.34537965,0.10083298,-0.04725185,0.26293075,0.070765205,0.41718173,-0.3801624,0.10479267,-0.03489121,-0.24799635,0.44555855,0.4074707,0.41811842,-0.38794056,0.455936,0.0038498528,-0.035669334,-0.18566537,0.0337345,0.4504866,0.098785974,0.42702717,-0.19061524,-0.16329253,0.49601975,0.79946935,0.15892695,0.46141642,0.09640754,-0.27208817,0.27450886,0.09946765,0.18644702,0.0264249,-0.46368232,0.06694684,-0.1637163,0.06995263,0.48901778,0.09922795,0.18275593,0.001098223,-0.2622887,0.11942159,0.27722943,0.14264579,-1.1999959,0.24562171,0.2003403,0.7761741,0.5483485,0.09546644,-0.04127019,0.65805924,-0.31222796,0.088382535,0.37700784,-0.010706186,-0.5869038,0.6045048,-0.718072,0.3419427,-0.09813504,-0.10428536,0.0046618897,-0.13420421,0.54017365,0.7370821,-0.16615714,-0.0025347807,0.010544991,-0.4129222,0.31113875,-0.47930858,-0.07469328,-0.52424306,-0.38129738,0.5646982,0.5298802,0.34873214,-0.13421158,0.002711975,0.1434752,-0.18305583,0.24135737,0.10245929,0.16995195,0.11705602,-0.6670128,-0.16914034,0.40744817,-0.042200387,0.21844679,-0.09452155,-0.26875955,0.15605305,-0.18943341,-0.09922117,-0.0008189799,-0.709428,0.07904452,-0.25186032,-0.34784266,0.5222299,-0.07400407,0.09894849,0.18321991,0.084301874,-0.29621992,0.28059095,0.18403088,0.7532196,0.01219596,-0.057880335,-0.18587075,0.2221905,0.05882949,-0.15423003,0.046714634,-0.22529808,0.06566857,-0.68991655,0.46964335,0.10103734,-0.3182744,0.07739161,-0.19025037,-0.018186798,0.5704186,-0.16022463,-0.28413856,-0.35238016,-0.017950408,-0.14285871,-0.34376758,-0.05534992,0.3805801,0.07483011,0.14812388,-0.12590925,0.0853831,0.0067647584,0.47428775,0.031436183,0.47383085,0.2709019,-0.09755212,-0.4955034,-0.016059887,0.15795079,0.30614188,-0.0871561,-0.11977194,-0.22192529,-0.410052,-0.38310504,0.07787123,-0.11845904,0.38033873,0.14359672,-0.22952503,0.9416295,-0.11627372,1.3021328,0.007909581,-0.4611296,0.1313607,0.5658734,-0.07080194,-0.04991001,-0.30647314,0.88599443,0.55538476,-0.05381173,-0.12876324,-0.36814833,-0.0807578,0.16385582,-0.24603215,-0.13788721,-0.058419958,-0.6183747,-0.29607594,0.23141901,0.21292126,0.22913171,-0.09215565,0.037420474,0.3128252,0.014554638,0.27980718,-0.36562005,-0.2895254,0.212585,0.19323276,0.033779837,0.15631306,-0.5642903,0.39151302,-0.53948,0.27669156,-0.17526597,0.23184069,-0.24758646,-0.3161172,0.25274402,0.06428022,0.25437728,-0.34166652,-0.34398508,-0.17823824,0.5962768,0.07749504,0.17021239,0.580907,-0.32202056,0.20170566,0.11469978,0.4734745,0.9078936,-0.2859613,-0.107488334,0.37572068,-0.48364797,-0.7106856,0.34516162,-0.23140001,0.11898661,-0.037287265,-0.32276264,-0.58089584,0.3105905,0.25231972,0.02627831,-0.051745538,-0.4738366,-0.13591681,0.49145705,-0.46834853,-0.2867842,-0.24719727,0.31938314,0.48715663,-0.2951513,-0.5222243,0.004109338,0.19844712,-0.26779842,-0.3791399,-0.16778074,-0.256285,0.41904438,0.023115885,-0.31511003,-0.077754,0.014147047,-0.39879766,0.10310477,0.18442795,-0.31468093,0.11439511,-0.3863155,-0.108878985,0.9554932,-0.05303095,-0.010622915,-0.44938016,-0.3333888,-0.8333485,-0.2995353,0.6689798,0.0031455234,0.09076264,-0.47607118,-0.037416324,-0.043444812,-0.07909857,-0.12551057,-0.25977278,0.43809772,0.15316302,0.38378912,-0.079694346,-0.6919452,0.15919852,0.15811954,-0.031719197,-0.61314505,0.5278294,-0.26418033,0.8772219,0.07086868,0.081973076,0.27237183,-0.45608944,-0.021405365,-0.16365597,-0.33444098,-0.5409193,-0.08278483 -494,0.46343616,-0.41619137,-0.5334911,-0.04582523,-0.2059081,0.033180084,-0.41266504,0.30400503,0.21699607,-0.35076296,0.028170833,-0.027866667,0.00012880564,0.26644698,-0.15996227,-0.5095085,0.043964665,0.12509392,-0.6371346,0.61034,-0.2502394,0.002171417,-0.27317557,0.45502925,0.12047485,0.24100764,0.005003271,0.11039164,0.02973693,-0.24606864,0.034425173,0.108069815,-0.7397359,0.267102,-0.040187757,-0.3620628,-0.12381408,-0.46765187,-0.516337,-0.8173032,0.32585192,-0.8673286,0.622765,0.024660408,-0.3239994,0.13093962,0.17525877,0.44434473,-0.1088445,-0.012281497,0.2596068,-0.21885307,-0.057211816,-0.23729807,-0.053971227,-0.4887713,-0.6762538,-0.04310869,-0.4591874,-0.24275239,-0.35620484,0.31877723,-0.4398429,-0.012640317,-0.19730055,0.74860185,-0.50354177,0.2694193,0.20060356,-0.079644404,0.480902,-0.65115136,-0.098038085,0.00019278626,0.28665486,-0.11013257,-0.22500987,0.11879108,0.2536586,0.30564234,0.03226876,-0.1712749,-0.2378589,0.05898133,0.07219868,0.42105618,-0.1867422,-0.34144488,-0.14350563,-0.007769257,0.09257553,0.14042164,0.2617413,-0.27394092,-0.08378158,0.24835563,-0.17645437,0.62975496,0.5526455,-0.34797788,-0.1993726,0.32182837,0.64089185,0.14774446,-0.33639184,0.12300553,0.09134787,-0.50706685,-0.15421908,0.12348837,-0.16385192,0.4826397,-0.26966572,0.42535236,0.73472095,-0.17297788,-0.22587956,0.20226765,-0.01257513,-0.04969449,-0.34574106,-0.22001529,0.20437978,-0.47303525,0.29161656,-0.28565535,0.76458454,0.09755877,-0.7600867,0.34548306,-0.6159964,0.24995913,-0.06314022,0.42919055,0.7737654,0.4846519,0.41152176,0.73950815,-0.35510036,0.08029193,0.04106042,-0.3625066,0.1776809,-0.3319828,0.0670861,-0.5938218,-0.17261016,-0.21713807,-0.107873686,-0.0031729538,0.4318676,-0.51340675,-0.08076424,0.3118243,1.0577928,-0.15638064,-0.121298514,0.91375417,1.1084557,1.1843578,0.0892089,1.0188146,0.25975254,-0.23432474,0.14478534,-0.1075446,-0.75351554,0.28852403,0.32085472,0.37628773,0.19146578,0.15984027,-0.034022693,0.6289808,-0.47994757,0.1092942,-0.17998771,0.13045973,0.21592279,-0.4636273,-0.3201755,-0.048023224,-0.07370349,0.045530308,0.024218261,0.119648,-0.16886361,0.49031413,0.07408923,1.5420517,-0.15562695,0.0488784,0.10033467,0.58218235,0.22995172,-0.3333731,0.038370788,0.07618651,0.38531113,0.30980897,-0.51695865,0.30236182,-0.19945621,-0.43626007,-0.24387419,-0.27361688,-0.2947319,-0.17135215,-0.45676115,-0.28027868,-0.09075758,-0.20032358,0.31028742,-2.8569298,-0.21270423,-0.1711816,0.357546,-0.06439507,-0.17167287,0.15164796,-0.4980588,0.45185533,0.35440886,0.4672196,-0.64999574,0.6252162,0.53507763,-0.6124859,0.08668393,-0.76832837,-0.21745062,-0.18905018,0.565708,0.18669651,-0.11848272,0.01837599,0.31024578,0.49370492,0.15846312,0.08240223,0.286142,0.44780335,-0.25230154,0.5658722,0.09666124,0.49863645,-0.14775172,-0.2191227,0.2414648,-0.39615682,0.05750808,-0.11031673,0.022551244,0.5301773,-0.323053,-1.0910935,-0.8042343,0.10052028,0.9403901,0.0121413665,-0.6622489,0.24534297,-0.42801142,-0.33209822,-0.030325308,0.51125026,-0.09328166,0.06546557,-0.85539764,-0.029545298,-0.30219343,0.22889544,0.048025925,-0.3168564,-0.71415824,0.9148715,-0.13822562,0.50021124,0.36102676,0.19747885,-0.40646517,-0.51467556,0.0052678916,0.8438644,0.35884842,0.08570842,-0.39070264,-0.191845,-0.20005314,-0.10637534,0.0046396516,0.595277,0.46340445,-0.14469723,0.23290907,0.3800199,-0.18445623,0.014897303,-0.12915127,-0.4194934,-0.17601834,-0.15643303,0.5797371,0.8308666,-0.11502046,0.4189744,-0.22065772,0.27233252,-0.14103599,-0.4590231,0.507496,1.1508747,-0.15043141,-0.5122412,0.59201056,0.3127133,-0.27241215,0.3575655,-0.5057221,-0.17155762,0.2776836,-0.12712757,-0.5613349,0.11191123,-0.4916577,0.042040367,-0.70832115,0.45197168,-0.39742208,-0.79985094,-0.6242239,-0.30626038,-3.7250443,0.31722477,-0.3646467,-0.18854026,-0.13861422,-0.18335326,0.23685052,-0.57972413,-0.5623389,0.1517592,0.056946233,0.8317762,-0.14730941,0.12612684,-0.2759514,-0.19054453,-0.49926463,0.2731675,0.24268062,0.20975114,-0.022387,-0.32688817,0.024546495,-0.10774497,-0.48698592,-0.024422375,-0.65907955,-0.49145696,-0.04933967,-0.47558418,-0.28711233,0.66201574,-0.13429323,-0.023180187,-0.50078845,-0.034283906,-0.1759916,0.4326795,0.12481771,0.03984176,-0.023246577,-0.12552826,0.07115733,-0.2855219,0.16032003,-0.08490765,0.42682424,0.25967908,-0.114581384,0.17611535,0.57091933,0.5731153,-0.023536662,1.0453686,0.52916586,-0.091037594,0.1920998,-0.21585245,-0.34193027,-0.62824243,-0.26289684,0.23409784,-0.49046817,-0.44943354,0.18818368,-0.47702408,-0.5887503,0.54927933,-0.049188714,0.18364494,0.15643124,0.3006802,0.52399445,-0.098217845,-0.20092504,0.009714666,-0.1981089,-0.49450204,-0.15368499,-0.5700622,-0.74598056,0.036052655,0.97552615,-0.18456827,0.13098292,0.31998095,-0.225622,-0.031517368,0.35613278,-0.23402606,0.095436335,0.52758676,-0.23708938,-0.70537883,0.2705902,-0.36425602,-0.16134161,-0.76070195,0.33135107,0.67132264,-0.4453325,0.72823113,0.40398395,0.19927652,-0.40511957,-0.511401,-0.026091957,-0.104281835,-0.24410348,0.45683596,0.17841573,-0.9063821,0.53753746,0.3857272,-0.21468906,-0.6630584,0.5641543,-0.06408065,-0.33676553,-0.06633223,0.30406716,0.046921562,-0.16079198,-0.29485142,0.38692394,-0.43485495,0.38842908,0.061273098,-0.11793,0.04676796,-0.0911181,-0.113757074,-0.63063025,-0.1642934,-0.5350903,-0.33478472,0.2111485,0.024201414,0.15051363,0.37785196,0.052714605,0.41470793,-0.15559644,0.0460823,-0.23191452,-0.36410654,0.29780403,0.51603407,0.49144375,-0.56787986,0.5740214,0.13247068,-0.08901992,0.14992142,0.15409757,0.4681623,-0.06992119,0.71120566,0.008774404,-0.047442097,0.123664945,0.85743254,0.176068,0.80698806,0.06613154,-0.17726319,0.27740696,0.113764465,0.36563635,-0.013047864,-0.679547,0.30612722,-0.31991342,0.29017854,0.42456737,0.037046563,0.3144534,-0.091571845,-0.39088318,-0.025648003,0.30480728,-0.013437018,-1.5597771,0.37570855,0.3558724,0.94366795,0.40420008,0.034075454,0.02236695,0.9020378,-0.016504154,-0.0020265777,0.3221128,0.23180752,-0.29838952,0.61502457,-1.0258936,0.28256017,0.04933014,-0.024400821,-0.054602932,-0.13350268,0.36749783,0.71365595,-0.241943,0.013254997,-0.14137588,-0.31780127,0.25645083,-0.48209608,0.2808678,-0.27864686,-0.28470936,0.70484525,0.7218087,0.3818756,-0.19435465,0.08658904,0.02168403,-0.062185418,0.078652956,0.13524163,-0.07925492,0.0178267,-0.7957802,-0.17136814,0.47280505,-0.16043425,0.24749935,-0.087727375,-0.17487304,0.3340297,-0.156047,-0.041410007,-0.059842408,-0.65209967,0.09098617,-0.1466032,-0.44566515,0.64101785,-0.015374725,0.21766834,0.241051,0.06363401,-0.14174102,0.37998128,-0.13290058,0.6023764,0.19153188,0.030022025,-0.42776036,0.024472052,0.13026355,-0.28574437,-0.10429289,-0.33880785,0.31004056,-0.47380546,0.39789262,0.040940244,-0.6336801,0.3000668,0.00594868,0.011340615,0.6648161,-0.2605625,-0.25930616,0.2198899,-0.08640623,-0.14420389,-0.29339787,0.049055066,0.27614114,0.1806974,0.0016750097,-0.119725145,-0.115529954,-0.21279943,0.45676574,0.11065712,0.5935686,0.55450344,0.027138317,-0.29476595,-0.23618281,0.14007105,0.6890221,-0.10156027,-0.2837111,-0.24875307,-0.7428369,-0.41940007,0.31651744,0.07537297,0.41390204,0.09151485,-0.20438255,0.6703569,-0.104909,1.2073326,0.015194446,-0.40472162,0.20139123,0.42550936,0.1001557,-0.047634836,-0.42899668,0.77601355,0.6196199,-0.19320162,0.0007875909,-0.4179332,-0.06560879,0.05766691,-0.1701535,-0.10173776,0.018268669,-0.7687702,-0.03704625,0.20154835,0.29290217,0.33851555,-0.19065881,0.15502602,0.476935,-0.13721412,0.102933645,-0.55687696,-0.15851663,0.38869748,0.35556945,-0.12361789,-0.038651723,-0.60623497,0.25955942,-0.38248512,0.1269208,-0.3949809,0.23438637,-0.10834528,-0.3236339,0.28738096,-0.13041908,0.3681194,-0.26713228,-0.10938164,-0.1117953,0.47862196,0.4765062,0.1430274,0.72557735,-0.20691466,0.031551372,0.12282276,0.559274,0.85327554,-0.34989873,-0.0855879,0.2900679,-0.35976994,-0.63736075,0.38089052,-0.2369953,0.1807824,0.16849244,-0.18248408,-0.58252084,0.09914061,0.17218183,0.036076378,0.011727077,-0.68639994,-0.29265866,0.255412,-0.4730517,-0.10793165,-0.22243236,0.13122584,0.6011185,-0.2331355,-0.124781586,-0.06349374,0.39988616,-0.14337581,-0.51258576,-0.053846404,-0.34792122,0.4620259,0.011042863,-0.51804775,-0.20000468,-0.0039871335,-0.5784947,0.18955976,0.22588438,-0.34303942,0.10584915,-0.32121763,-0.2368396,0.8531156,-0.4380573,0.061003704,-0.61797374,-0.38553837,-0.75207233,-0.10894898,0.19123806,0.15330751,-0.007387212,-0.6811579,-0.2759236,-0.17854422,-0.12199986,0.044696715,-0.6079064,0.42457876,0.06278818,0.5599506,-0.07680101,-0.7627065,0.18496944,0.12975466,-0.16203557,-0.66860276,0.7988685,-0.14345448,0.7440899,0.025699401,0.36915568,0.08019576,-0.3411223,-0.0046224445,-0.23585035,-0.3356665,-0.86430097,-0.057143062 -495,0.40957752,0.11999353,-0.49313012,-0.08773901,-0.1660156,0.14940752,-0.22911574,0.2187241,0.016397187,-0.69589335,-0.11370385,-0.17495383,0.016849527,0.062205825,-0.19457848,-0.41425326,0.039078392,0.23286664,-0.6533104,0.5912842,-0.3265009,0.5976964,0.12796818,0.26238817,-0.14214122,0.255438,-0.026710358,-0.3586472,-0.1841687,-0.2086397,0.0019886494,0.03788557,-0.6373493,0.27938315,-0.15312119,-0.3253734,-0.028432326,-0.14915381,-0.34640327,-0.600811,0.013078188,-0.6644224,0.48389593,-0.119478345,-0.22977994,0.09962108,0.17074703,0.3239492,0.07614691,0.13462779,0.19933787,-0.104040794,-0.29151177,-0.33463043,-0.04483784,-0.7683415,-0.2808219,0.00028755408,-0.5312181,-0.15263358,-0.24836108,0.14341034,-0.2601735,-0.16437423,-0.16462053,0.44300368,-0.2262405,0.26468012,0.11462758,-0.00981637,0.25317544,-0.61284447,-0.0974704,-0.18278255,0.5289124,-0.28087106,-0.0213356,0.09088574,0.14404671,0.42540652,-0.06202782,0.047892597,-0.1875608,-0.1479154,0.36259347,0.47590885,-0.1340721,-0.43158183,0.06912942,-0.0022550907,0.15612169,0.006839288,0.053656302,-0.4099102,-0.045484312,-0.27216402,-0.12646171,0.24355534,0.38608938,-0.19955406,-0.098125644,0.4316652,0.548171,0.098296985,-0.16826873,-0.03554227,-0.008116399,-0.30366236,-0.11074125,0.19976155,0.021789687,0.48953348,0.04313067,0.21781012,0.5890776,-0.050903626,-0.079566516,-0.04565683,0.031743355,0.12685408,0.037872333,-0.13873081,0.034041185,-0.4575961,-0.1982709,-0.29115772,0.90496856,-0.052941877,-0.75291765,0.3193373,-0.46172443,-0.06378902,0.14004196,0.520972,0.5155723,0.59178346,-0.21492144,0.46915463,-0.3875735,0.030371334,-0.08748363,-0.31238633,-0.023894574,-0.09052177,-0.06509574,-0.30465874,-0.07490616,-0.03350439,-0.18198295,-0.08792215,0.45586538,-0.4176796,-0.14520612,0.100571476,0.78610146,-0.25578028,-0.028711604,0.6298484,0.94569725,0.5963103,0.22096321,1.3387206,0.21131994,-0.2264546,-0.10388042,-0.33031988,-0.4871142,0.22939841,0.13852061,-0.45389608,0.24669157,0.19730636,-0.044691775,0.35234,-0.4390345,-0.048372895,-0.33258182,0.39638895,-0.019987125,-0.0066766357,-0.22627221,-0.08574755,0.062152464,-0.030812768,0.25861782,0.1558648,-0.17601204,0.25870356,0.27441868,1.439314,-0.2606625,0.12677042,0.06257414,0.078750476,0.13284835,-0.118072405,-0.05356333,0.31448677,0.27308956,0.082048856,-0.439434,-0.0299823,-0.13302372,-0.5263086,-0.28509837,-0.07057647,-0.16627577,0.16979663,-0.5219182,-0.10968452,0.010548661,-0.3238518,0.2902655,-2.268442,-0.1506385,-0.18366721,0.4547577,-0.23120263,-0.34181184,-0.21160515,-0.27013534,0.4989118,0.2025013,0.44511694,-0.49863428,0.33381313,0.3016582,-0.23073734,-0.32500443,-0.46968696,0.085409455,0.05281176,0.092073336,-0.12713863,-0.105287276,-0.018091397,-0.11193427,0.24622543,-0.4124625,0.067857325,0.4795544,0.3106406,0.105141915,0.29208073,0.13528086,0.5762864,-0.19991668,-0.13603339,0.27687877,-0.29267806,0.16173863,0.009887912,0.2008769,0.25877914,-0.43768993,-0.59411716,-0.71129173,-0.51993877,1.1573576,-0.2110173,-0.40649912,0.062492903,0.033247363,-0.46679983,-0.107487746,0.5065573,-0.019510482,0.11948715,-0.90883887,-0.086227365,-0.11847741,0.5996647,-0.017031142,0.026136998,-0.50876176,0.6310698,-0.20653684,0.36299664,0.3647832,0.23770912,-0.24452119,-0.35105085,0.14252521,1.2969247,0.32742238,0.16253278,-0.13677499,-0.18466996,-0.43636194,0.08012222,0.0043390947,0.5534811,0.54167426,0.06703831,-0.09758448,0.16619399,-0.03362948,0.14736386,-0.16849576,-0.36757448,-0.15486588,-0.092182174,0.47871074,0.3316166,0.008846326,0.6621641,-0.22461207,0.2891728,-0.30124086,-0.39503106,0.5418387,0.82403433,-0.29095525,-0.24935041,0.43055186,0.33493638,-0.20489617,0.25190696,-0.4956496,-0.49898833,0.2544159,-0.113531485,-0.29980895,0.3898964,-0.23270825,0.33533213,-0.9609255,0.4259179,-0.4533015,-0.62894577,-0.58867127,0.015733182,-2.291132,0.17050026,-0.07745962,-0.17222096,-0.102336235,-0.04290631,0.2469976,-0.41330048,-0.3917862,0.20059372,0.026990457,0.42765215,0.059651084,0.27581272,-0.02991036,-0.36319256,0.025655495,0.32545638,0.1666316,0.08025478,-0.12347505,-0.33745012,-0.089693114,-0.1362686,-0.14684807,0.0025477686,-0.6468759,-0.3728858,-0.08087111,-0.44138837,-0.2932806,0.6352161,-0.7611085,0.14843376,-0.26682708,-0.058532655,-0.017396914,0.24286495,0.15221092,0.13380599,0.08860384,-0.12928274,-0.23506583,-0.39740777,0.3238755,0.16697834,0.08817304,0.36263254,-0.21543296,0.1880063,0.2758036,0.507845,0.045509692,0.69559276,0.48340598,-0.15898809,0.18791568,-0.292101,-0.15591455,-0.53587055,-0.29736456,0.008996538,-0.4390448,-0.39907947,-0.2303088,-0.37105316,-0.7108653,0.46163246,-0.029097144,-0.2464381,-0.037768316,0.41391554,0.35982534,-0.0750611,-0.08799702,-0.1079133,-0.09980756,-0.38351223,-0.4675021,-0.5468569,-0.25626564,-0.11509216,1.106819,-0.0734082,0.12338811,0.09171382,-0.123221226,0.09516704,0.1094218,0.021777224,0.02781251,0.59113634,-0.13116057,-0.5469657,0.41182545,-0.26574644,-0.21975306,-0.48237637,0.26554924,0.69354403,-0.72165984,0.5301344,0.44505718,0.008087103,-0.24236782,-0.38746077,-0.14800511,0.08460774,-0.3834171,0.11534856,0.021282554,-0.5903816,0.27515408,0.2303257,-0.1088957,-0.7586469,0.5043569,0.08967268,-0.45380083,0.10898081,0.36243448,-0.13321361,-0.08839529,-0.39206403,0.027470836,-0.33982736,0.29615778,0.14151205,-0.18173543,0.18132128,-0.27716222,-0.15191567,-0.8400777,0.028307596,-0.24984476,-0.5026743,0.21557891,0.22841308,0.02822942,0.29751995,0.050765276,0.4269352,-0.33539537,0.031464554,-0.28213686,-0.19209497,0.32295623,0.24987066,0.2814909,-0.41836128,0.578762,-0.086830415,-0.17739883,-0.30491278,0.37385184,0.54668295,0.11775773,0.2739927,0.066980325,-0.09870706,0.235322,0.7200841,0.14240238,0.59355056,0.100829355,-0.1973373,0.115800515,-0.046813082,-0.017971788,-0.054226775,-0.4437438,-0.16694845,-0.11453598,0.15641782,0.38291264,0.052624997,0.38750392,-0.23262176,-0.4496438,0.05992181,0.31570715,0.15993772,-1.1349107,0.43548864,0.11151294,0.6950946,0.47197503,0.09095604,0.094951294,0.5092766,-0.31609562,0.2330222,0.032284375,-0.24736731,-0.1312262,0.41250664,-0.6289595,0.12995283,-0.09525219,-0.09593914,0.17667441,-0.21118914,0.14648175,0.93737113,0.0072542257,0.09745385,-0.0056567276,-0.20672889,-0.0884498,-0.26107213,0.27026865,-0.4791929,-0.3793933,0.51778436,0.38847706,0.34643242,-0.37193745,0.069802605,0.046257257,-0.26040486,0.13352789,0.109210625,0.16199313,0.14842346,-0.5720435,-0.1496804,0.62444484,-0.19373807,0.026198464,0.25152496,-0.21701853,0.3389376,-0.0043151462,0.1455971,-0.011103911,-0.5638166,-0.0022169563,-0.63300985,-0.19878879,0.2774575,-0.20296879,0.22370307,0.17043246,0.06874932,-0.25994274,0.57638836,0.33816057,0.5763914,0.26000306,-0.1833564,-0.22096054,0.27675882,0.21237054,-0.17027818,-0.007573511,-0.13823418,0.24681881,-0.6937651,0.22111544,-0.01020733,-0.055535905,0.13914415,-0.14324816,0.02633184,0.43324742,-0.06975906,0.0067073107,0.4011948,0.10608958,-0.10607404,0.041811705,-0.1593122,0.02502018,0.36632252,0.027794357,-0.031233212,-0.045871537,-0.2936835,0.23575775,0.12685128,0.4694076,0.55286694,0.21932428,-0.3724579,0.04058264,0.16624393,0.44612646,0.031737573,0.04267056,-0.1366461,-0.4457148,-0.3138546,0.26840416,-0.12821104,0.043136287,0.3245361,-0.28114226,0.81307095,0.12356249,0.9173684,0.0676653,-0.1550635,0.078044124,0.37283617,0.010724626,0.08863907,-0.4530097,1.0955489,0.63781846,0.08425275,0.15893129,-0.11544687,-0.17704798,0.09683372,-0.18702756,-0.19328655,0.0075439704,-0.6225219,-0.6263286,0.08448601,0.36351246,-0.15897797,0.045558177,-0.004666818,0.15109052,0.08268625,0.2675198,-0.7323845,-0.03579545,0.205961,0.23000588,0.061386254,0.28169844,-0.4055255,0.52104527,-0.6713843,0.010144889,-0.26484132,0.09270166,0.0411448,-0.23176332,0.06724241,0.12846586,0.33140805,-0.47436237,-0.20645568,-0.25007114,0.44688532,0.0041702176,0.09093958,0.6852023,-0.10164292,0.3093283,0.036131937,0.51415783,0.95370305,-0.23984215,-0.007126727,0.43273848,-0.4109383,-0.40789843,0.10472744,-0.38105163,0.2053765,-0.19998685,-0.28972858,-0.38867265,0.35127494,0.11332048,-0.14216657,-0.11750934,-0.64490193,0.0069175875,0.40340844,-0.26910594,-0.1616981,0.013055878,0.18679364,0.44868046,-0.1491396,-0.31419322,0.03699497,0.30119702,-0.3452697,-0.52542835,-0.15645969,-0.46720925,0.3221007,0.24855348,-0.30247977,-0.3073859,0.13683169,-0.38339496,-0.013086421,0.25626707,-0.25331825,-0.11349618,-0.24937005,-0.14910464,0.63229626,-0.016712418,-0.0748743,-0.40190262,-0.3467553,-0.6353832,-0.34084892,0.35708088,0.33373094,0.017665947,-0.65521014,-0.1096593,-0.2522871,-0.012593431,-0.13435967,-0.3657577,0.2999141,0.30575958,0.46496367,-0.1637856,-0.9967105,0.0997573,0.14797081,-0.24922517,-0.62488264,0.43071842,0.046997003,0.8286425,0.008023896,-0.006981741,0.47023895,-0.77033824,-0.0227438,-0.10196392,0.01808829,-0.7547907,0.08569453 -496,0.4260507,-0.041456725,-0.57330424,-0.2416503,-0.31320113,0.16769218,-0.19609343,0.18106298,0.13703378,-0.45384318,0.0017665704,-0.21759002,-0.025797209,0.32230815,-0.17708327,-0.72591287,0.13467021,0.0061785253,-0.5420479,0.30295345,-0.6630065,0.48324487,0.1730757,0.24568774,-0.047355246,0.35019392,0.28674078,-0.25544426,-0.1414086,0.019312883,-0.12425909,0.1569486,-0.7356097,0.14125894,0.018959641,-0.32273108,-0.0008977016,-0.23604779,-0.307885,-0.59959817,0.45597032,-0.7535713,0.46501198,-0.1340874,-0.3554589,0.16910018,0.06546009,0.29539862,-0.38109028,0.24689461,0.2594168,-0.086204566,-0.048384834,-0.067582436,-0.2622359,-0.60133857,-0.52892435,0.010396512,-0.5815715,-0.2360063,-0.31796482,0.17645188,-0.31688184,0.010985064,-0.21507107,0.33281243,-0.43673864,0.03725346,0.16184555,-0.114866875,0.23731384,-0.48175696,-0.1327474,-0.07752385,0.29368958,-0.13112608,-0.117987424,0.24477428,0.33107367,0.5439813,0.05747135,-0.1662654,-0.24056283,-0.17266493,0.19129829,0.53176206,-0.04300858,-0.29053155,-0.2880593,-0.12522583,0.029031456,0.21845552,0.06240581,-0.5766298,-0.013478746,0.14009279,-0.24189289,0.3908036,0.4782076,-0.48234737,-0.2346391,0.4256676,0.3700802,0.116852984,-0.14483516,0.29996485,-0.07708069,-0.6045606,-0.21645936,0.20782763,-0.08397301,0.5800007,-0.20554574,0.2121243,0.7957056,-0.13162464,0.078204624,-0.23360306,-0.24338265,-0.08227086,-0.1859596,-0.0064813453,0.13373835,-0.5107894,-0.022922348,-0.11848413,0.6765725,0.1777051,-0.74761045,0.41901118,-0.473689,0.01599839,-0.18269673,0.5875699,0.72766346,0.23120533,-0.0032277545,0.8247843,-0.65174663,-0.0013365905,-0.055017337,-0.55222255,0.17912436,-0.05262318,-0.033997003,-0.41375324,0.0011123011,0.19308046,0.09119236,-0.15103714,0.30023772,-0.38154152,0.06584989,-0.101963416,0.5656914,-0.51589495,-0.08358307,0.70466894,0.93820226,0.89442724,0.26276892,1.4216658,0.42328778,-0.15274204,0.20638159,-0.29092553,-0.52444977,0.13866693,0.29855412,0.13614163,0.24921721,0.14916325,0.08864615,0.32656005,-0.11687945,0.06780216,-0.05321157,0.23145603,-0.05424579,-0.17291114,-0.3546139,-0.1749223,0.1631808,0.0942302,-0.00086769264,0.110730365,-0.07789004,0.31636333,0.21879432,1.3762795,0.04159168,0.20756012,-0.02273035,0.2978897,0.21879171,-0.1373148,-0.10923188,0.34217697,0.28667516,0.007970643,-0.60958415,-0.024692647,-0.23538907,-0.46525815,-0.15139347,-0.35108584,-0.11632361,-0.15620016,-0.58988065,-0.08702615,0.1884466,-0.26338878,0.60235536,-2.5126905,-0.2872066,-0.2444885,0.23230022,-0.3045491,-0.30871376,-0.26542625,-0.49109048,0.33880728,0.46991724,0.34536391,-0.67147917,0.40334728,0.34200498,-0.12593421,-0.18836823,-0.6176599,-0.046559326,-0.0720977,0.33602676,-0.17696005,-0.10517728,-0.17257455,0.19691268,0.58153224,-0.121819325,0.054937758,-0.04055547,0.5046529,0.18958613,0.5877725,0.19550864,0.5742586,-0.23986258,-0.0040692864,0.3247896,-0.28191903,0.35523808,0.034908675,0.2712956,0.28698498,-0.42339668,-0.7539161,-0.6444075,-0.5209481,1.1312039,-0.38193005,-0.30122143,0.26143792,0.12088397,-0.19171911,0.0754156,0.35185447,0.044007346,0.074268706,-0.7406698,0.052376118,-0.12886047,0.11556726,-0.09724119,0.14255136,-0.28382534,0.67653006,-0.14048252,0.44832295,0.4404712,0.14394946,-0.0074288687,-0.5201291,0.029718745,0.9160059,0.34660515,0.09921103,-0.17751905,-0.18659058,-0.116777726,-0.23079745,0.16938387,0.4509724,0.746144,0.14421508,0.118416555,0.23800442,-0.07412307,0.11960276,-0.041490827,-0.26755682,0.05649643,-0.019839263,0.49990425,0.4775711,-0.3004927,0.40445417,-0.15791057,0.02969169,-0.23049614,-0.49824747,0.5841517,0.8621031,-0.17751579,-0.1526309,0.40965033,0.45110422,-0.39290848,0.40979636,-0.55596274,-0.2257886,0.6999373,-0.13433628,-0.33755988,0.08151173,-0.3120584,0.013600239,-1.0323287,0.34016842,-0.10856249,-0.409393,-0.41542754,-0.34969458,-4.389174,0.19443472,-0.2662714,-0.06757997,-0.13485391,-0.09176891,0.42584118,-0.5757305,-0.52625185,0.14487596,-0.09407184,0.45977706,0.02969556,0.25653225,-0.3719373,0.039164003,-0.17368388,0.23828726,0.045060694,0.1877448,-0.004050636,-0.40154073,0.15344462,-0.3298525,-0.5120347,-0.0048387805,-0.49545118,-0.60669845,-0.16421948,-0.43540546,-0.25449896,0.7973221,-0.49280944,-0.046071984,-0.1932977,-0.070183605,-0.39026827,0.493025,0.15549608,0.16151592,0.08764076,0.11984439,-0.2662701,-0.41061285,0.10419414,0.11869314,0.18012573,0.37139443,-0.21686259,0.1003991,0.4518965,0.5667928,0.021673024,0.62257695,0.11553285,-0.09339795,0.45376363,-0.3774943,-0.14032741,-0.7970993,-0.58032584,-0.4317385,-0.37714043,-0.72344244,-0.25961643,-0.32019052,-0.6930588,0.4172084,0.04666374,0.17583065,-0.1406435,0.13732506,0.24478808,-0.11363016,0.10373313,-0.1111063,-0.1540301,-0.52088714,-0.52449167,-0.61337173,-0.64965326,0.20800617,0.9400947,-0.068108864,-0.26268145,-0.00056989194,-0.27011248,0.012023994,-0.007306075,0.29198435,0.1757852,0.30857712,-0.14737895,-0.7113407,0.59444034,-0.18152998,-0.12790585,-0.5567494,-0.1807567,0.83793217,-0.60300606,0.5151582,0.45566064,0.25856888,0.2786433,-0.56340444,-0.33000082,0.08990244,-0.35037887,0.5935021,0.061965328,-0.5869939,0.50400364,0.28888848,-0.07437956,-0.5983354,0.70820206,0.078223705,-0.17251012,0.1793667,0.3773742,0.05947916,-0.10515296,-0.19270252,0.2962204,-0.6337755,0.23755787,0.44433117,0.078158885,0.52905285,0.009628359,-0.19615754,-0.6312147,-0.27077582,-0.3984486,-0.14443718,-0.04514854,-0.044935085,0.13769743,0.079850316,0.076608226,0.43296665,-0.44077697,0.23778777,-0.0349999,-0.11104055,0.17848912,0.5098152,0.2765442,-0.5091335,0.61410695,0.1092033,0.12787305,-0.10165558,0.08139895,0.47126517,0.38931766,0.32216308,-0.10376118,-0.15385208,0.11808273,0.7869704,0.341024,0.49576625,0.31365407,-0.30107126,0.34818122,0.26754457,0.2421952,0.06313331,-0.1836128,-0.072151676,0.017230935,0.20488717,0.35460442,0.123448804,0.34721455,-0.14326088,-0.046367295,0.1846247,0.22929786,-0.09777414,-0.9206468,0.3287646,0.30349013,0.49715182,0.58207417,-0.06377684,0.22208364,0.27470973,-0.3450295,0.10734818,0.34152743,0.02637427,-0.5648502,0.492406,-0.49852848,0.4060406,-0.34346077,-0.09362197,0.13707685,0.22748218,0.27158463,0.878912,0.07349127,0.20128404,0.12911256,-0.2414151,0.18022276,-0.3208228,0.068411775,-0.31157053,-0.13152732,0.621413,0.47892615,0.21963838,-0.28288367,-0.0751801,0.0115781985,-0.035841055,-0.02219599,-0.059721943,0.04660797,-0.035336114,-0.6682852,-0.4585522,0.5452604,0.006535061,0.029895313,0.13732593,-0.48070225,0.34666,-0.1961594,0.076739505,-0.036853734,-0.6701098,-0.058627892,-0.23477596,-0.48220712,0.2656652,-0.27452666,0.34083155,0.109840594,0.006385394,-0.3136595,0.10133372,0.12376644,0.7541223,-0.04470478,-0.22178572,-0.41152763,-0.12625211,0.5089019,-0.34954742,-0.17381331,-0.30586892,0.10661181,-0.46614513,0.33438358,-0.059254117,-0.058231276,0.07409743,-0.12812495,-0.011560345,0.43342283,-0.29820105,-0.10683085,0.21965216,0.0690607,-0.20388646,-0.020467173,-0.32373917,0.25798622,0.008836976,0.019799419,0.06094823,-0.052609634,-0.1317051,0.34384248,0.2418812,0.21376519,0.35426006,-0.055689495,-0.37276125,-0.12752435,0.027770517,0.3475291,0.071630575,-0.044812597,-0.12209376,-0.41415194,-0.25611743,0.34851483,-0.1403029,0.07074283,0.115758575,-0.42110613,0.63908696,0.14902648,1.1201528,0.15606856,-0.3779395,0.086231455,0.38689807,0.01554087,0.10874043,-0.35835248,0.92182696,0.70270467,-0.20342067,-0.28211066,-0.2790842,-0.27059403,0.1858035,-0.36377433,-0.23813592,-0.0694303,-0.6645744,-0.15208088,0.11750902,0.18753293,0.0057435534,0.092028625,-0.097098134,0.008972061,0.12656517,0.5603694,-0.65790784,-0.20419003,0.30605787,0.2762751,0.061420243,0.11290951,-0.23522994,0.4968618,-0.5844204,0.1212689,-0.4988243,0.09149123,-0.15528414,-0.1994429,0.14003812,0.06933274,0.29857475,-0.1305348,-0.36116028,-0.32710397,0.62028044,0.13004914,0.32014477,0.7553169,-0.21481527,-0.0070501724,0.0751962,0.5422491,1.2426059,-0.12069538,0.041498695,0.44873014,-0.39638695,-0.557943,0.14902149,-0.46525446,0.15981577,-0.19185804,-0.36623254,-0.3263475,0.3332563,0.1288301,-0.0050262213,0.11822633,-0.5171491,-0.30509266,0.5290843,-0.21043536,-0.38300574,-0.19316076,0.43420035,0.81521255,-0.5827686,-0.21522847,0.015696477,0.2751899,-0.27452743,-0.6045921,0.114308454,-0.2576196,0.4751105,0.18653539,-0.23896506,0.081379585,0.3081492,-0.28220752,0.20599073,0.44591448,-0.30017498,0.08806753,-0.3675541,-0.20242685,0.9789877,0.08075064,0.08367419,-0.7365542,-0.4814342,-0.9995377,-0.37939575,0.3524249,0.21287781,0.0186713,-0.36968583,0.04270952,-0.04074514,0.04208542,0.09797328,-0.49883178,0.44904894,0.115536585,0.45145407,0.02384944,-0.794624,-0.16266823,0.21865317,-0.26878262,-0.45658287,0.6429067,-0.2168968,0.62854886,0.15819179,0.06840715,0.11454192,-0.6022984,0.34847978,-0.4304603,-0.12515752,-0.79392934,0.07304946 -497,0.44793394,-0.1494282,-0.46540242,-0.07423659,-0.16244462,0.21318494,-0.12557997,0.54064995,0.11332112,-0.4733925,-0.045416966,-0.10939525,-0.09131634,0.35143444,-0.12198211,-0.45723686,0.008526276,0.16327527,-0.6528274,0.51666814,-0.38718292,0.25523174,0.026681887,0.36292073,0.20546368,0.34626237,0.07131039,-0.21754017,-0.3344808,-0.0625394,-0.16578004,0.31314442,-0.4255001,0.06341316,-0.17611067,-0.21418813,-0.018207554,-0.4034848,-0.35136673,-0.6621596,0.11067505,-0.7758629,0.42992118,-0.077997066,-0.22498429,0.2926533,0.031320684,0.38103485,-0.26397842,0.054876726,0.16343725,-0.17816448,-0.024718424,-0.20774749,-0.21802972,-0.3901824,-0.41303462,0.043182407,-0.38444918,-0.22532117,-0.1902197,0.09069182,-0.28966913,-0.06038448,-0.14212401,0.2802012,-0.45422623,0.046404764,0.12898536,-0.09606999,0.08101102,-0.55932665,-0.08171847,-0.1608552,0.19179758,-0.15213734,-0.14744452,0.38414422,0.27070072,0.452445,-0.055614218,-0.074212365,-0.30787024,-0.068962544,0.12815148,0.45198178,-0.22682257,-0.48143286,-0.005244171,0.062261973,0.260841,-0.0040944815,0.11186896,-0.15881695,-0.13171272,0.017953781,-0.1989128,0.2045925,0.528377,-0.33113953,-0.34321055,0.4258009,0.43469024,0.111404076,-0.18737103,-0.050935812,-0.061911106,-0.42046702,-0.13957153,0.18259275,-0.09167723,0.34118828,-0.13526046,0.13949282,0.6285074,-0.20762923,0.076780915,0.02099533,0.025804698,-0.006549085,-0.098751694,-0.15781105,0.1077195,-0.22466092,0.044657994,-0.19349141,0.6270752,0.32323268,-0.6388776,0.36249495,-0.47644126,0.15803878,0.008791033,0.5046344,0.56324506,0.53813696,0.18784492,0.6256115,-0.32936192,0.16501561,-0.10396369,-0.27974415,0.115373924,-0.2616597,-0.034806896,-0.48188636,0.11731933,0.049475525,-0.19383638,0.077845275,0.3137089,-0.6340639,-0.05062917,0.08863096,0.83337736,-0.3213895,-0.1316674,0.6859959,0.8356136,0.73635244,-0.017780349,1.1255234,0.3196868,-0.3256797,0.26519865,-0.51095897,-0.5949452,0.24189793,0.24456558,-0.32598433,0.33713534,0.07163411,-0.1641987,0.25470352,-0.26301754,0.061703738,-0.27396798,0.038706716,0.10392377,-0.08391613,-0.25159004,-0.297865,-0.14546038,-0.02082655,0.17950882,0.26446527,-0.3153355,0.38318425,0.012599798,2.0231104,-0.064529754,0.014081001,0.026972791,0.47394493,0.14438544,-0.060811576,0.006604426,0.41874236,0.3399437,0.04494628,-0.4600637,0.13751984,-0.24800093,-0.57717466,-0.06241122,-0.40390444,-0.06779573,-0.026290867,-0.41556612,-0.14280383,-0.020559479,-0.23883645,0.40592256,-2.5994017,-0.14200792,-0.053549707,0.37782282,-0.27196306,-0.3379832,-0.32502288,-0.40768752,0.28656757,0.2917132,0.49574515,-0.62464803,0.40227303,0.22556248,-0.48342323,-0.13429631,-0.46307507,-0.058862742,0.0019214854,0.3398506,-0.06982119,0.057821717,0.18500814,-0.03884411,0.4564825,-0.14308444,0.044766538,0.28988335,0.38251796,0.17844823,0.3199956,0.0099327145,0.61292034,-0.28529286,-0.23913841,0.2955352,-0.39112988,0.23990479,0.049686972,0.12085522,0.32982904,-0.41571656,-0.8549779,-0.60741043,-0.061788775,1.2350107,-0.19472894,-0.27624562,0.18987083,-0.2007484,-0.2358654,-0.107364364,0.35347316,-0.08007469,-0.120114885,-0.78006774,0.0526217,-0.09517358,0.24356855,0.007596349,0.06941745,-0.3381768,0.6446506,-0.16913508,0.51677907,0.19039173,0.14096598,-0.047950193,-0.40234578,0.118477166,0.9414622,0.32535997,0.11664764,-0.110787325,-0.3453853,-0.2904678,-0.045902666,0.105688654,0.40039802,0.58223987,0.04059905,0.08763488,0.31150082,-0.060285266,0.046853367,-0.21857318,-0.27414328,-0.0871411,0.057619408,0.52995425,0.4200761,-0.27327392,0.51304454,-0.09021075,0.3573962,-0.046317108,-0.43304673,0.508943,1.037287,-0.2635072,-0.17474388,0.365402,0.4357003,-0.3567566,0.3538766,-0.5760376,-0.32995728,0.4408996,-0.22456595,-0.24339135,0.33265412,-0.28608397,0.16027416,-0.8623396,0.369879,-0.18594551,-0.36978403,-0.61187696,-0.00962466,-3.0172203,0.06532308,-0.17153782,-0.29862842,-0.06112643,-0.051836945,0.101112716,-0.6147979,-0.3001852,0.08850803,0.1307684,0.6510409,-0.032118745,0.034257684,-0.28884166,-0.3215524,-0.26933584,0.14051482,0.17267634,0.42439717,-0.09836896,-0.46213293,0.000537129,-0.20187327,-0.3054634,0.10807266,-0.62637836,-0.41290793,-0.19992292,-0.46739808,-0.24267124,0.62997866,-0.2918853,0.009428315,-0.19411844,-0.007451734,-0.13639925,0.19218731,0.07929872,0.12160462,0.10966602,-0.14686637,0.029920638,-0.2662778,0.25374737,0.10728369,0.32096684,0.49887815,-0.072340816,0.09803122,0.4777214,0.59125865,-0.13178603,0.76103836,0.39557457,-0.1574145,0.33246443,-0.38462642,-0.15343136,-0.48338076,-0.3150905,-0.0076148547,-0.3897082,-0.47988117,-0.054825854,-0.35734576,-0.7585861,0.42189723,-0.13177997,0.026724128,-0.050087158,0.3255669,0.5788189,-0.07821286,0.0448592,-0.2121205,-0.019773953,-0.47094333,-0.33891964,-0.5861697,-0.45328188,0.18566427,1.1690663,-0.22068843,-0.057301104,-0.0364038,-0.23399965,-0.044594914,0.04999838,0.088576026,0.15960406,0.4191388,-0.3196649,-0.59734625,0.41270345,-0.22823967,-0.2105391,-0.48157126,0.22386289,0.6013329,-0.6376129,0.5396365,0.28524572,0.067419276,-0.06496304,-0.389851,-0.17729509,-0.049528927,-0.17337053,0.16719571,0.08807731,-0.60439575,0.40496644,0.3211966,-0.362072,-0.61581844,0.3866287,-0.041306537,-0.2771032,0.1029961,0.31987846,0.064853914,-0.058474038,-0.20921737,0.21668178,-0.41459802,0.27534795,0.2433744,-0.013445002,0.14688851,-0.1079545,-0.21519151,-0.6846241,0.12615427,-0.4280077,-0.3155024,0.26852873,0.1816003,0.25763714,0.0635826,0.048281994,0.38463345,-0.35172972,0.07612125,-0.064413235,-0.15996605,0.35820866,0.26613846,0.45448226,-0.53341407,0.5138694,-0.026852548,-0.21912098,0.045564614,-0.032699957,0.44572854,0.10878402,0.28425628,0.123835295,-0.27729496,0.35419926,0.74633306,0.2705765,0.528759,0.03537709,-0.30927086,0.30362582,0.10894987,0.10798758,0.038903616,-0.39140317,-0.044966474,0.071087584,0.14843139,0.39359525,0.10560279,0.37529022,-0.053635687,-0.19788165,0.031440966,0.16658486,-0.003787139,-1.0937774,0.34716478,0.16907942,0.76791465,0.30655527,-0.033484213,0.080851495,0.6582885,-0.22926442,0.119170144,0.23573625,-0.20261565,-0.62404037,0.42637858,-0.63758934,0.37919766,-0.015165462,0.04369452,-0.038658984,-0.028167684,0.33580488,0.7907121,-0.16634586,0.071699485,-0.0038514822,-0.26789448,0.04345793,-0.25405464,0.084071465,-0.5574502,-0.34248567,0.65978366,0.3797093,0.41852602,-0.14156422,0.03649678,0.05208122,-0.112468876,0.086552665,0.12463039,0.246678,0.008620973,-0.5677821,-0.20872939,0.5369245,-0.34343162,0.11430424,0.19928703,-0.32542923,0.2967151,-0.08833428,0.047900718,-0.12343707,-0.50195843,-0.019148178,-0.2547135,-0.36814034,0.29710722,-0.08132526,0.3148736,0.22343287,-0.029814979,-0.33247325,0.32815132,0.15136899,0.716302,-0.12701824,-0.3114965,-0.34377167,0.24557434,0.14491381,-0.30235344,-0.017331332,-0.14574051,0.09706193,-0.5011579,0.30541128,-0.028131071,-0.33758226,0.04960446,-0.19184792,-0.07957764,0.45618045,-0.12037799,-0.13199502,-0.1136154,-0.09417871,-0.32941073,-0.049708337,-0.13789979,0.22777021,0.21401526,-0.06451526,-0.10810919,-0.027232265,0.016480096,0.4323747,0.022757228,0.29140425,0.4420438,0.21139699,-0.20857659,-0.121846676,0.17467903,0.47002557,0.052882224,-0.0076241563,-0.3077058,-0.44358972,-0.3656969,0.17448285,-0.23223737,0.34797317,0.3081173,-0.4758468,0.71638834,-0.03497885,1.1674553,-0.01819394,-0.3151746,0.10596991,0.46938178,0.16033217,0.07764114,-0.33698916,0.9003211,0.52620494,0.051372312,-0.12602346,-0.35183096,-0.21068855,0.17954223,-0.19981611,-0.18124926,-9.8691264e-05,-0.5729617,-0.4106652,0.27722034,0.115467094,0.29016325,-0.053404324,0.116992906,0.23698534,0.10787417,0.13768283,-0.3773988,-0.34248534,0.2997682,0.16084455,-0.014719276,0.08996049,-0.40377885,0.34221253,-0.47733092,-0.0148239,-0.112540945,0.11340155,-0.045732904,-0.18728681,0.17403592,0.016805867,0.385646,-0.3995097,-0.28948787,-0.27783304,0.5175724,0.04106185,0.21129663,0.5537427,-0.24938262,-0.0026661789,0.11864993,0.50874835,0.96724373,-0.23379768,0.09379514,0.54973197,-0.27878258,-0.61383706,0.32627404,-0.19323914,0.11123926,-0.14630347,-0.32028997,-0.49381396,0.37172282,0.23167005,0.056491986,-0.03185257,-0.47981766,-0.14614141,0.39913845,-0.38303027,-0.2648517,-0.38648695,0.24063416,0.7094922,-0.36743748,-0.38337868,0.19805478,0.17532493,-0.23610777,-0.47872868,-0.16915046,-0.29980427,0.32349056,0.064778425,-0.17355537,-0.11166602,0.0077640363,-0.32842818,0.24520645,0.20167753,-0.38782835,0.08880678,-0.2863594,-0.014640967,0.84939957,-0.14697675,0.10566608,-0.5623397,-0.42037264,-0.75113386,-0.5257456,0.40822175,0.12607253,-0.060002193,-0.68243104,0.027512213,-0.028865432,-0.39794403,-0.06512493,-0.33839867,0.401029,0.08608997,0.14964488,-0.11009507,-0.74088115,0.22532184,0.041870333,-0.122671545,-0.5397228,0.4428882,-0.036583643,0.91306955,0.14571564,0.03336792,0.33487567,-0.37243515,-0.1775429,-0.2670408,-0.103786334,-0.6428684,0.03357805 -498,0.5318661,-0.24511266,-0.74447155,-0.111088865,-0.114138074,0.03133242,-0.35242602,0.326442,-0.020824768,-0.69648623,0.030616414,0.05486759,-0.02831491,0.21328668,-0.25868243,-0.71011686,0.08790558,0.083713524,-0.3907056,0.2758788,-0.5817414,0.11341102,-0.018735908,0.2564222,-0.19205818,0.14806326,0.35481453,0.044020113,0.004517157,-0.31082743,0.38519028,0.099469356,-0.6074958,0.44311878,0.1086227,-0.40637082,-0.071558446,-0.16507897,-0.40071356,-0.5559744,0.17691278,-1.0662344,0.63358325,0.13875502,-0.2989131,0.15332995,-0.121254034,0.16212767,-0.2489802,0.21980014,0.14391202,-0.2964473,-0.23891196,-0.38590917,0.07301721,-0.5697054,-0.47504416,0.12710327,-0.66589046,-0.121523835,-0.15616517,0.34050772,-0.36039734,0.14634328,-0.30971444,0.37054855,-0.38236627,-0.3023334,0.118870854,-0.19503999,0.2924693,-0.47173396,-0.21447612,-0.060421396,0.1281438,-0.27596337,-0.2801097,-0.07846237,0.072062925,0.5826712,-0.12009922,-0.16899997,-0.12219472,-0.07728066,0.50548846,0.51076895,-0.29707536,-0.665322,-0.37888715,-0.17053427,0.35333222,0.11017644,0.069221355,-0.44707707,0.066846006,0.16038495,-0.21673721,0.62703514,0.74854445,-0.41620922,-0.05210275,0.3136226,0.5271315,-0.10587526,-0.10231454,0.2487157,0.004761666,-0.44568816,-0.18138415,0.09913505,-0.003451369,0.548764,-0.042124446,0.33176553,0.5735295,-0.48171794,-0.015154773,0.23285326,-0.20471643,-0.15187424,-0.28745857,-0.18858719,0.29387745,-0.55986446,-0.08374755,-0.32613778,0.8339711,-0.006402108,-0.8341019,0.47849253,-0.36812484,-0.019199127,-0.18735419,0.78969646,0.5569872,0.47786185,-0.020254984,0.7564749,-0.5840862,-0.052038845,-0.14753594,-0.3674506,0.12472559,-0.11250644,-0.06902056,-0.29573515,-0.05886561,0.16708232,0.048060916,-0.2523984,0.6526978,-0.4554079,-0.030348886,0.10732202,0.5254741,-0.318057,0.05243277,0.70269656,1.4453024,0.8017216,0.23098673,1.2806331,0.31192872,0.06895693,-0.17253856,0.17599535,-0.8388013,0.2996829,0.50730854,0.36312893,0.32456586,0.1416055,-0.12823959,0.6608677,-0.39681676,-0.1297749,-0.14381877,0.502538,-0.15291482,-0.2642093,-0.42079258,0.20549712,0.31318298,-0.066120386,0.065948285,0.34302008,-0.42891595,0.27628207,0.23189844,0.99494684,-0.33911753,0.19811669,-0.060148988,0.24318056,0.11776003,-0.13328719,0.22841386,0.14391166,0.48786113,0.03562462,-0.6366661,0.11544938,-0.05973439,-0.80833155,-0.23363695,-0.12897575,0.022289168,-0.18430923,-0.41643333,-0.07155743,-0.0067470726,-0.3320669,0.36138317,-2.5649607,-0.250455,-0.089251906,0.34225857,-0.08791267,-0.38429716,0.020988367,-0.22233354,0.3936982,0.4836644,0.41041052,-0.5597778,0.6805842,0.34128243,-0.22090702,-0.14416002,-0.7314945,0.21881229,-0.32193375,0.5382032,0.08864179,-0.4350169,0.11579141,0.03641239,0.6649472,-0.2973699,0.10916907,0.13666983,0.29675913,0.020813037,0.33079073,-0.0773099,0.5775021,-0.5031337,-0.3080312,0.43085095,-0.35833287,0.15710586,-0.09696992,0.33377817,0.14496416,-0.3945981,-0.97323436,-0.66486365,-0.25830767,1.2185429,-0.20697221,-0.5951915,0.24355522,0.08402132,-0.42284384,-0.010234594,0.28205588,-0.18763013,0.28259695,-0.8091417,0.09629204,-0.29704994,0.26762822,-0.06414156,-0.03420128,-0.58866686,0.63254106,-0.14703494,0.4996599,0.55515635,0.2503411,-0.22255164,-0.36019892,0.14787255,1.188371,0.46511757,0.22282475,-0.09098256,-0.12712765,0.27191648,-0.017444454,0.15358135,0.6187695,0.8050131,0.12964618,0.09758286,0.1959318,-0.06719861,0.017388886,-0.10734425,-0.4783776,-0.09739917,0.23079781,0.78380734,0.5147841,-0.1659787,0.31812328,-0.18919978,0.3332001,-0.34405804,-0.35230073,0.51561254,0.61250734,-0.110419035,-0.4952966,0.7496515,0.52754116,-0.49648902,0.5376436,-0.8247691,-0.36465922,0.19406533,-0.12652922,-0.2652929,0.3464422,-0.4383622,0.41405356,-1.0763966,0.6434171,-0.5508333,-0.61568147,-0.5709348,-0.53249705,-3.9761076,0.2593648,-0.32633093,-0.1324464,-0.18653503,-0.22133207,0.522731,-0.53479916,-0.43919545,0.10032385,0.020584838,0.50067043,-0.07614317,0.039353024,-0.20442967,-0.120112635,0.15127963,0.3945947,0.11549282,0.080392145,-0.05744314,-0.23602585,0.0093584275,-0.13440652,-0.2969137,-0.03499886,-0.53399366,-0.37606448,-0.06965243,-0.28570873,-0.27236468,0.690093,-0.36685464,-0.1519688,-0.20797187,0.074359424,-0.31105283,0.6947868,-0.0068607223,0.1561345,-0.010170356,-0.046839204,-0.0738737,-0.39457372,0.18305661,-0.047068,0.39763406,0.43533066,-0.4870796,-0.061083756,0.5422117,0.46600133,0.12765852,0.74477464,0.20350231,-0.11850396,0.40266106,-0.22575597,-0.25056016,-0.5907226,-0.49447238,-0.0060706516,-0.5444445,-0.3844849,-0.15520854,-0.31563532,-0.80334437,0.7167092,0.0156135345,0.10841675,0.07046968,0.56976503,0.14231634,0.07903897,-0.2643665,-0.09170341,-0.16410933,-0.47779855,-0.45498466,-0.705834,-0.46269885,-0.14484693,1.0849975,-0.0155308135,-0.027918529,0.07080142,0.045740448,0.04248376,0.22047386,0.16146351,0.05129081,0.43002957,0.033644833,-0.6652769,0.29497808,-0.31312874,-0.28417343,-0.6404064,-0.101115726,0.62032264,-0.63744485,0.58376884,0.4888421,0.41014668,0.043249346,-0.43826154,-0.17025395,0.2603724,-0.109248616,0.6838877,0.32786843,-1.1130028,0.59544903,0.52329725,-0.20244637,-0.7472014,0.476649,0.026596654,0.13906993,-0.101538375,0.43500802,-0.2170463,-0.047982097,-0.28138474,0.24841617,-0.5503071,0.3089175,0.102917,-0.08582788,0.6241767,-0.16714941,-0.21314313,-0.51315826,-0.113150746,-0.6615797,-0.0684014,0.080689706,-0.21838027,0.12335015,0.21939507,-0.06393202,0.6259046,-0.3296382,0.1709184,-0.05291011,-0.47978345,0.3421663,0.69659877,0.29288688,-0.3536502,0.7017359,0.13826789,0.046506427,-0.43414584,0.21085744,0.6173353,0.18551077,0.34354916,-0.16959323,0.05004419,0.45137691,1.037778,0.3580945,0.75668436,0.22272073,-0.1675584,0.23980427,0.16111487,0.22127585,0.108790495,-0.422307,-0.09231014,-0.06696685,0.33232328,0.41008618,0.06276224,0.4409353,-0.27212662,-0.20524506,0.06128267,0.49424726,0.0597893,-1.3197169,0.42647693,0.1828468,0.5354083,0.42629144,-0.0025965518,0.20180832,0.21666841,-0.13568376,0.020471351,0.09492843,0.028862411,-0.38875178,0.68414056,-0.78115964,0.18525676,-0.21101,-0.0012051951,0.03429207,-0.09404471,0.33407107,0.7263046,0.0632866,0.2714623,-0.08591562,-0.13723603,0.048465088,-0.2581298,0.23450185,-0.23950242,-0.22131914,0.93400055,0.3849919,0.4809841,-0.25073615,-0.19153762,0.24963813,0.051570904,0.29770458,0.01911544,0.20717321,-0.15089144,-0.6225819,-0.30970925,0.67403406,0.3823824,0.061549794,-0.059629276,-0.3700166,0.36772376,0.02027341,-0.26659966,0.063747354,-0.4202808,0.08180775,-0.40949297,-0.68913406,0.41318738,-0.16334993,0.10175382,0.3030693,0.0035009126,-0.2655342,-0.07546152,0.049933173,0.68341184,0.12710749,-0.17420727,-0.3494717,-0.051500376,0.28240517,-0.27046764,-0.28118336,-0.4999595,0.12754622,-0.72611934,0.36607507,-0.25391924,-0.35491148,0.45508575,-0.055445258,-0.015015141,0.5484913,-0.2249869,-0.27292317,0.45892525,0.03598768,-0.27961606,-0.4595602,-0.17183174,0.16631044,-0.04190575,0.15676211,-0.01664142,-0.08200511,-0.15896381,0.18759294,0.23313557,0.21053891,0.51469564,0.24486643,-0.38421118,-0.15408613,0.06252914,0.568983,0.006222391,0.033703506,-0.23360105,-0.7805904,-0.1563142,0.00012423775,-0.043891773,0.13421626,0.06061952,-0.43888614,0.6237635,0.08926412,1.0134213,0.13133273,-0.29753688,0.09454077,0.6334005,-0.044525765,-0.13722219,-0.3076531,1.1650043,0.68275136,-0.14230235,-0.1206557,-0.4866079,-0.26374432,0.04079199,-0.34079847,-0.23104912,-0.103432246,-0.8297934,-0.1404131,0.1365254,0.47966897,-0.115142725,-0.031433284,0.30315658,0.3126965,0.10977509,0.05729051,-0.6548029,-0.02956211,0.41343707,0.37715366,-0.09521273,-0.05971625,-0.39546746,0.20463677,-0.75204545,-0.06243296,-0.39272708,-0.023822678,0.22462234,-0.25237587,0.11660092,0.082082294,0.24475622,-0.2305106,-0.21709043,0.18114394,0.518754,0.16126443,0.16293806,0.84911215,-0.05686581,0.0975322,0.0022043532,0.41544393,1.1772046,-0.29633895,0.033646896,0.25618723,-0.3407706,-0.87133354,0.25448477,-0.42410737,0.2567096,-0.06206597,-0.5892886,-0.5640586,0.2105944,0.14122313,-0.28818586,0.09457508,-0.6329458,-0.2833541,0.20981936,-0.4322957,-0.13632306,-0.18596016,0.069806054,0.83471733,-0.35129294,-0.18784119,-0.030406285,0.57106423,-0.49039316,-0.54569167,-0.00741536,-0.3257465,0.32289946,0.1256169,-0.31797585,0.13613068,0.17842427,-0.46520853,0.23759142,0.21059841,-0.17976092,0.041088287,-0.22184229,0.024522977,0.5164966,-0.060212586,0.09949145,-0.9038946,-0.6434407,-1.0193925,-0.4599012,0.16135551,0.26631087,0.12401747,-0.53441006,0.11416225,-0.18645038,0.1567696,-0.1735307,-0.5851876,0.4430066,-0.029975869,0.6784616,0.018049277,-0.6897302,0.15024582,0.16293646,-0.10739493,-0.5276199,0.5593239,-0.2561386,0.82113284,-0.040877078,0.054010466,0.1482696,-0.8343656,0.040003482,-0.20041813,-0.38184527,-0.92281747,0.0614527 -499,0.6610824,-0.4318547,-0.79166734,0.0822906,-0.582223,-0.1047054,-0.30484316,0.76651865,0.12916961,-0.60741574,-0.12019611,0.14108878,-0.29145402,0.10579144,-0.35336226,-0.4510149,-0.011327559,0.18612465,-0.48550603,0.4843971,-0.31452802,0.5331209,0.14094685,0.281946,0.32389224,0.03997545,-0.23442483,0.19308029,-0.02831346,-0.55991346,0.053750455,0.2267821,-0.74718374,0.3039012,-0.37114188,-0.7683092,0.026526345,-0.59006643,-0.21577907,-0.7849461,0.36953676,-0.7818602,0.75660384,-0.025466204,-0.6059902,-0.17734411,0.0302756,0.52482617,0.08577495,0.05950931,0.22355957,-0.18456899,-0.16288796,-0.22988628,-0.058418762,-0.34170282,-0.69093245,0.10153962,-0.5161529,0.0875488,-0.04747678,0.34609345,-0.31968403,0.1041127,-0.20510374,0.54716796,-0.37762782,-0.0041769133,0.122615926,0.05759928,0.31568202,-0.93206143,-0.04742131,-0.29160726,0.13682579,-0.37912264,-0.3085537,0.12541097,0.09612486,0.65334463,0.15151842,-0.12314867,-0.17654297,0.18388051,-0.23193568,0.40397942,-0.40110913,-0.28381765,-0.13924022,0.09775981,0.6128938,0.2794445,0.26672113,0.027985213,0.098148875,-0.110643655,-0.1841998,0.64247876,0.4167806,-0.2614031,0.18046567,0.007930869,0.73347586,0.24580704,-0.03736799,0.15608579,-0.005968511,-0.57153594,-0.26787513,0.00056456437,-0.23636952,0.49727115,-0.070591,0.3399463,0.46998912,-0.34972745,-0.08018858,0.66234684,0.21012536,0.011702841,-0.103737116,-0.659231,0.4533162,-0.6394244,0.07213765,-0.25412387,0.8474826,0.06356514,-0.6923923,0.029835511,-0.7051004,-0.04457982,-0.012632641,0.5061674,0.6046801,0.8752034,0.14841388,0.7490545,-0.35398793,0.015894849,-0.19246398,-0.090971686,-0.08343742,-0.19685169,0.009029966,-0.34066153,-0.26592368,-0.5194712,-0.2706982,-0.04684632,0.6187668,-0.779602,-0.19073986,0.04531548,0.6259112,-0.29492092,-0.13627546,0.9848175,0.99827707,1.2212809,-0.076447174,1.0433627,0.0652891,-0.14634305,-0.10755489,0.16615205,-0.6421953,0.41317606,0.48715642,-0.15460223,0.40936276,0.22914958,-0.001136811,0.5400646,-0.543205,-0.037335254,-0.17505866,0.13716637,0.015208479,-0.30479366,-0.5893971,-0.31524104,0.10553735,0.18845235,-0.0999697,0.4847422,-0.25950024,0.5867476,0.09516302,1.2060775,-0.24649125,0.15112342,0.2276505,0.34928018,0.039160527,-0.21022578,-0.14076129,-0.3224987,0.28569934,0.2720731,-0.59784234,-0.077368386,-0.111855745,-0.4040206,-0.29641116,-0.14264274,-0.35779336,-0.5061981,-0.59026676,-0.43485597,-0.17627412,-0.2707926,0.2960193,-1.9629265,-0.27391088,-0.09361625,0.46995065,-0.20816651,-0.6244674,0.045479264,-0.4623032,0.4008106,0.19506116,0.54332787,-0.6228802,0.6501925,0.58178675,-0.40040255,0.10200372,-0.70391685,-0.3431641,0.05710994,0.05768696,0.20564103,-0.29286873,-0.0175039,-0.20182584,0.557743,-0.34764272,-0.03066989,0.26216802,0.4389342,-0.27676365,0.7020693,0.010181709,0.5396271,-0.6643005,-0.42659238,0.66484857,-0.49211475,-0.06891909,-0.08245858,0.00058043003,0.41329768,-0.678629,-0.911306,-0.8152905,-0.25280637,1.3361126,-0.056359448,-0.4619686,0.08783645,-0.6834228,-0.39599323,-0.2029873,0.2895424,-0.13638228,0.087849975,-0.7668907,-0.32383215,-0.31000704,0.32574427,0.067825176,-0.100857854,-0.7258583,0.71316105,-0.07641976,0.3786745,0.49688908,0.11739481,-0.30135024,-0.53301877,0.07980058,1.1683503,0.6910934,0.20606862,-0.3693636,0.07391623,-0.20380996,0.41582146,0.021947784,0.7094068,0.7666531,-0.110450916,0.15025462,0.2230408,0.0015738715,0.14125295,-0.063537,-0.5723808,-0.35271966,-0.0027641682,0.8898976,0.8391049,0.11159749,0.43551895,-0.115209885,0.445871,-0.15250403,-0.4477029,0.34049243,0.97179693,-0.24382162,-0.42340127,0.85406685,0.6017683,-0.16986771,0.5758623,-0.5794819,-0.528108,0.18684587,-0.11471145,-0.44639805,0.29274487,-0.3286514,0.33149,-0.98508584,0.42233017,-0.74228853,-0.630115,-0.6182278,-0.23709202,-1.8238641,0.491975,-0.19826902,0.026903791,-0.05317416,-0.5098929,0.2051931,-0.6669209,-0.7961344,-0.034704708,0.15119566,0.71766335,-0.05081668,-0.09845979,-0.035015795,-0.7442539,-0.19697885,0.119934365,0.40480626,0.15196289,0.0065015717,-0.4363967,-0.019577948,-0.34265634,-0.3014537,-0.13440055,-0.90231186,-0.65133053,-0.08328199,-0.62552774,-0.4060826,0.8225651,-0.23282123,-0.043651395,-0.21555905,0.055570375,0.15512466,0.29456326,-0.25741503,0.0397846,0.069071025,-0.24946715,0.07558834,-0.14870375,0.079857446,0.178382,0.43707916,0.33943394,-0.46896428,0.32504025,0.84733987,0.933568,-0.16833733,1.1750985,0.5030539,-0.14385635,0.27368304,-0.16946357,-0.6427262,-0.618012,0.12402162,0.2663152,-0.50681597,-0.15310456,0.35785297,-0.33625612,-0.9310512,0.85471576,-0.20226212,-0.031150877,0.1255688,0.6097573,0.48306406,-0.2988309,-0.42893317,0.04155411,-0.2024185,-0.38732642,-0.42721912,-0.5408054,-0.49806872,-0.6329289,1.7786618,-0.18397747,0.37920886,0.46986458,-0.067446575,0.19768216,0.05827947,0.011402789,0.08771371,0.59075433,-0.21133779,-0.8095614,0.12603615,-0.22685537,-0.06643958,-0.30063033,0.21809706,0.78497255,-0.8378416,0.1296451,0.41327703,-0.020817501,-0.109329075,-0.6892826,0.1410702,0.18444906,-0.29078272,0.5450382,0.511933,-0.5656782,0.43143034,0.345904,-0.2840061,-0.76454985,0.52902454,-0.06637083,-0.41884154,-0.16049789,0.39482358,0.22992998,0.006036466,0.07778573,0.20638758,-0.40874565,0.48231384,0.027472723,-0.18474227,-0.21687722,-0.2777311,-0.24740265,-0.7903187,0.3343685,-0.5378125,-0.58447236,0.35767624,0.059309363,0.08643457,0.47522643,0.50161874,0.5208501,-0.32327202,-0.076787695,-0.34572232,-0.5450659,0.56824774,0.5512759,0.6430682,-0.49288788,0.5388911,0.17711458,0.04977006,-0.11272097,0.13792668,0.59587634,-0.48966244,0.37953168,0.049915258,-0.13342303,0.22159442,1.0765634,0.16061015,0.40407676,-0.10824654,0.008099556,-0.14610499,0.22125855,0.266798,-0.03268321,-0.69739825,0.054404322,0.027792638,0.048307624,0.6651757,-0.07578421,0.17918563,-0.28701356,-0.3225291,-0.09300835,0.17973928,-0.2104939,-1.7403547,0.4461137,0.089724965,0.8655657,0.35083297,0.370177,0.13766377,0.6353227,-0.32144636,-0.00089198624,0.427642,0.18585008,-0.15272653,0.5265227,-0.57549584,0.6347252,0.041152433,0.1397031,-0.068539806,-0.37717655,0.5718887,0.88887686,-0.18833952,0.07064881,0.010134664,-0.38140938,-0.16428326,-0.51652616,-0.07554401,-0.60594964,-0.123675585,1.0227557,0.46402597,0.41159552,-0.191948,0.028366674,0.16589078,-0.12266369,0.4606969,-0.20550914,0.048682537,-0.2480341,-0.33399305,0.19454727,0.6572683,0.1264926,-0.0064616124,-0.06039703,-0.11252118,0.28880182,0.08491146,-0.07932551,-0.18714686,-0.8466547,0.09864055,-0.7621019,-0.21203123,0.123685576,0.0058878334,-0.0851982,0.2926865,0.12563306,-0.35715985,0.46311873,0.04189417,0.5843908,-0.03041656,-0.07590899,-0.096555494,0.4547758,0.08764198,-0.31716105,-0.1916859,-0.13548519,0.45250985,-0.56719875,0.24447137,-0.13324484,-0.40631372,0.118195035,-0.046368983,-0.0946979,0.38953254,-0.20741655,-0.09142039,0.34334043,-0.01216754,-0.022856258,-0.34771794,-0.19459642,0.092336066,0.27966633,-0.19822446,-0.2506387,-0.34566176,-0.0344481,0.50798804,0.10443134,0.45327684,0.47722006,0.19845603,-0.47565463,0.039976254,0.14199246,0.7327333,-0.2732535,-0.0708746,-0.58251965,-0.22913092,-0.33790523,0.6297911,-0.1313821,0.33338895,-0.048445366,-0.35352919,1.1814541,0.4145827,1.3604579,-0.038607087,-0.3133427,-0.011319258,0.54603744,-0.34614763,-0.16168019,-0.4839814,1.2941773,0.38985175,-0.26062486,-0.12836608,-0.5182286,-0.041548092,-0.18065949,-0.34206226,-0.26911452,-0.100340255,-0.5821259,-0.1014739,0.43819606,0.46755487,-0.026515007,-0.17687038,0.21562615,0.576184,0.016866384,0.01788153,-0.41251087,-0.12334018,0.40840933,0.34146583,-0.28648213,0.029136397,-0.637622,0.26474944,-0.758033,0.07775923,-0.38137913,0.15439178,-0.20079578,-0.51092345,0.31348684,-0.1705113,0.30968726,-0.47617912,-0.28055122,-0.03819679,0.26094747,0.04004667,0.20342135,0.6265891,-0.35854125,-0.017233757,-0.25386813,0.3512522,0.8896647,-0.19030127,-0.23989083,0.18210465,-0.30894575,-0.5517234,0.28919217,-0.34809282,0.06429014,-0.0065753,-0.2650285,-0.52210593,0.29486415,0.40169457,0.097722076,-0.10571203,-0.77307606,0.10176389,0.5412868,-0.45478103,-0.2857179,-0.315021,0.17804004,0.64797443,-0.0577948,-0.32062104,0.0020701452,0.63697714,-0.17161523,-0.41208783,-0.0043179337,-0.35483673,0.17204365,-0.08570438,-0.34064052,-0.0928677,0.020469742,-0.5386498,-0.100015596,0.5198692,-0.34384358,0.0033674024,-0.19176155,0.15916711,0.8987076,-0.117452934,0.115329735,-0.16743508,-0.5169461,-0.9508438,-0.28768885,0.18081596,0.50979954,-0.07439233,-0.86741185,-0.14014763,-0.36550573,-0.4558201,0.051723924,-0.08479918,0.5256512,0.24639797,0.6136264,-0.28174993,-0.7989495,0.34444502,0.14395514,-0.1816053,-0.3277304,0.4897981,0.15252568,0.7985458,0.049757812,0.09622779,0.21548805,-0.6061947,0.19567494,0.028551238,-0.038278803,-1.0292283,-0.22610584 -500,0.47934106,-0.1596756,-0.26435047,-0.13674746,-0.14446059,0.24349762,-0.014144784,0.51497906,0.21576613,-0.44875783,-0.0713023,-0.33221695,0.015919244,0.35741183,-0.11036571,-0.37945196,-0.04062205,0.085865445,-0.5029161,0.40101779,-0.44267836,0.3111629,0.063042775,0.37267935,0.08086705,0.25478926,0.17371774,-0.28873765,-0.20144895,-0.13535866,-0.15672608,0.07375113,-0.38369435,0.09307286,-0.13260351,-0.23443845,0.049991485,-0.41248983,-0.29493922,-0.66740566,0.19982651,-0.5720454,0.37882122,0.10658465,-0.1706007,0.4192859,0.031324517,0.2053292,-0.3392344,0.0030265688,0.23765244,-0.13244122,-0.025834598,-0.12782493,-0.12717612,-0.17495842,-0.4226179,0.022790283,-0.38319722,-0.28897622,-0.2784859,0.08576926,-0.23604693,-0.05465922,0.008835968,0.3702113,-0.40517557,0.020120287,0.12744065,-0.2197395,0.2629408,-0.3936269,-0.20476636,-0.088859685,0.30568713,-0.19949108,-0.09188767,0.3057283,0.12688252,0.5358114,-0.10491757,-0.1031264,-0.37604204,-0.10303364,0.07091076,0.53363436,-0.1167702,-0.56543595,-0.014011327,-0.10291125,0.03013722,0.09075793,0.11971423,-0.20556055,-0.20960355,0.022504533,-0.2880661,0.26348045,0.394829,-0.29730338,-0.28639558,0.38997838,0.47623986,0.041374613,-0.053792093,-0.12228927,-0.030720767,-0.51360697,-0.17936471,0.03875346,-0.2568685,0.3950164,-0.064293586,0.3385393,0.5763129,-0.15138507,0.05498759,0.04919665,-0.0075206677,-0.07824227,-0.049294513,-0.12256401,0.10559084,-0.29080874,0.11006028,-0.20335884,0.79926187,0.18851084,-0.72487414,0.3849027,-0.50068134,0.11796041,0.010367441,0.53870976,0.661992,0.32933146,0.32099822,0.6742644,-0.47833315,0.071744636,-0.1584395,-0.23890625,-0.03444445,-0.16834857,0.04645842,-0.46300977,0.032674022,0.18449458,-0.06854502,0.108107835,0.28789172,-0.5202123,0.004352021,0.17686574,0.7977058,-0.28511104,-0.033376567,0.59298044,0.95016503,0.79225427,0.010243264,0.94188476,0.21471867,-0.3670662,0.36471745,-0.4521349,-0.62638414,0.2943888,0.3099366,0.24831854,0.1630781,0.15866566,-0.013069505,0.26907107,-0.46876648,0.0983198,-0.11589846,0.114703946,0.170151,0.016611164,-0.27699262,-0.2909492,-0.13469583,-0.016810572,0.19469234,0.23527312,-0.21776484,0.30036786,-0.108137034,1.8105998,0.03500437,0.13166337,0.03184895,0.5121337,0.02210259,-0.019783003,-0.2107032,0.42102548,0.25478905,-0.031801384,-0.60793394,0.1885922,-0.14122869,-0.41360804,0.013239511,-0.3762879,-0.118795514,-0.030731698,-0.36402103,-0.0810068,-0.035013195,-0.4230321,0.48479268,-2.9111395,-0.18792789,-0.07084112,0.2277339,-0.25252813,-0.18919782,-0.15817288,-0.45269832,0.35824803,0.4488002,0.41411713,-0.60153395,0.2389153,0.29458395,-0.4093034,-0.21882716,-0.48219642,-0.058170192,0.04155537,0.3289896,0.06986656,-0.072275795,-0.07499752,0.11937588,0.36843392,0.019017844,0.055076923,0.23066787,0.40351954,0.09023321,0.4252113,0.022840777,0.42504492,-0.32553264,-0.12449643,0.22262189,-0.36308333,0.1967899,-0.11397317,0.120418265,0.2685916,-0.40558255,-0.8222036,-0.5626514,-0.21052662,1.2997204,-0.19722243,-0.28278822,0.3350393,-0.22568811,-0.116558574,-0.09175444,0.5139975,-0.018941225,-0.038652293,-0.79184353,0.1158224,-0.09791071,0.2916661,0.013910353,0.054633576,-0.4206083,0.67146236,-0.10959189,0.5158792,0.24554816,0.08451322,-0.26048645,-0.29246178,0.08997456,0.82248205,0.20637421,0.1516894,-0.054605056,-0.15831108,-0.30688605,-0.13942362,0.07510129,0.4302192,0.69035065,0.12708707,0.12929483,0.21979144,-0.021554856,0.030138314,-0.13058794,-0.1620778,-0.06056327,0.008128715,0.5460397,0.48446214,-0.19781272,0.40849712,-0.12107571,0.260068,-0.17506786,-0.35225576,0.52280045,0.52622265,-0.17110582,-0.1078285,0.48306274,0.5027574,-0.19196387,0.3880382,-0.5828667,-0.44320595,0.5921567,-0.23987235,-0.4617477,0.1697637,-0.27209333,0.16248061,-0.90433615,0.19779243,-0.092228316,-0.39398205,-0.4784432,-0.07382973,-3.4486873,0.03736379,-0.1185052,-0.28509533,0.08362018,0.0039408705,0.041916132,-0.56301063,-0.42461735,0.06494415,0.0046516676,0.5717274,0.010382014,0.14627688,-0.24368502,-0.23527925,-0.32381842,0.083201304,-0.09264967,0.36870325,0.04336308,-0.44927654,-0.0689442,-0.22106291,-0.34748375,0.04575577,-0.42850438,-0.4287627,-0.14829901,-0.4807476,-0.2592807,0.53705764,-0.3875402,0.0104044415,-0.20200695,-0.06160388,-0.1340401,0.41032505,0.20237058,0.1005133,-0.023796504,-0.039056037,-0.01745177,-0.2849882,0.28112152,0.09029015,0.1620295,0.503353,-0.051007506,0.15533727,0.44599405,0.63399637,-0.094303645,0.69889313,0.34122074,-0.11119275,0.2877049,-0.3583912,-0.1721176,-0.40814447,-0.2971381,0.030920785,-0.32101068,-0.38291562,-0.18318193,-0.3240513,-0.67985284,0.37898487,-0.0374472,0.12420061,0.043589063,0.15977392,0.4924708,-0.23210208,0.04330326,-0.117521666,0.009895444,-0.538906,-0.31560585,-0.6173624,-0.36629662,0.18522042,0.9179873,-0.11860275,-0.031933084,0.088500604,-0.174207,0.01795212,0.0049612005,0.080724865,0.16627066,0.36044046,-0.063482635,-0.6624907,0.5888884,-0.18924928,-0.13467093,-0.5744103,0.14002581,0.42489475,-0.55588967,0.39847437,0.29386997,0.16026898,0.019645441,-0.36050823,-0.19188073,-0.16229773,-0.1579803,0.18094209,0.03366091,-0.6006492,0.40661365,0.3179493,-0.24977309,-0.7432251,0.34186834,0.01672398,-0.4045687,0.053638794,0.26856562,0.21312396,0.052792773,-0.12974145,0.10229861,-0.45986488,0.383584,0.19167209,0.03222287,0.42825952,-0.21842642,-0.18123169,-0.5668695,-0.05904075,-0.39567268,-0.26509446,0.14850076,0.20830488,0.14868547,0.1935654,-0.038270786,0.29767832,-0.25784758,0.02939715,0.01197522,-0.12671374,0.2748081,0.37773094,0.47499588,-0.45261115,0.60513365,-0.020475268,0.021202154,-0.10617325,-0.11598126,0.37572908,0.07116546,0.27480513,-0.093989305,-0.3429353,0.3473114,0.6590141,0.23510985,0.28685942,0.035116866,-0.22555949,0.31072798,0.14757027,0.10765807,0.07095248,-0.42571828,0.014426375,-0.1593711,0.13292116,0.36754766,0.11240664,0.33507204,-0.024839604,-0.26051086,0.038339652,0.22332273,-0.21485281,-1.16645,0.30556786,0.10751455,0.8176301,0.49056482,-0.058963794,0.15096132,0.6678404,-0.22259562,0.13041261,0.19847076,-0.08573287,-0.6760368,0.58013,-0.56158733,0.48682755,-0.14626673,-0.024599869,0.006257677,-0.04520084,0.32114217,0.6496513,-0.14281705,0.017117003,0.094561115,-0.2677738,0.060284723,-0.35596138,0.15436387,-0.62164783,-0.189905,0.41371816,0.3473665,0.26520675,-0.17791346,0.05414849,-0.009258425,-0.06666002,-0.020357788,0.053581495,0.14501959,-0.027932383,-0.76135796,-0.15002309,0.5196544,0.00076028507,0.18483013,0.10076413,-0.25844678,0.15720078,-0.20808302,-0.10711077,-0.13265486,-0.451731,-0.057078507,-0.2809909,-0.3091249,0.3223864,-0.11607633,0.3785782,0.16961072,0.03504878,-0.26312014,0.33136776,0.2367527,0.6350434,-0.002236581,-0.15304706,-0.36731353,0.16106315,0.19100532,-0.14436038,-0.14873329,-0.16844334,-0.14407928,-0.49205893,0.4597715,-0.026609052,-0.16743806,0.18988337,-0.22368802,0.042327013,0.54639333,-0.054528333,-0.037367,-0.14363585,-0.2337556,-0.22067611,0.020677272,-0.1958432,0.28148574,0.13375495,-0.070136756,-0.05317998,-0.028933508,-0.07675794,0.40718687,0.04587681,0.251277,0.2458478,0.047864117,-0.30083483,-0.03098611,-0.006275928,0.3458983,0.06585122,-0.050879758,-0.27897498,-0.37383544,-0.36201757,0.094852366,-0.15044095,0.2694983,0.14536117,-0.33382872,0.6107499,-0.0016957521,0.96920913,0.05276328,-0.24637909,0.12446022,0.46308577,0.043644957,0.064442776,-0.4019514,0.75253814,0.46583265,0.016071744,-0.15143734,-0.19513386,-0.059775088,0.26152197,-0.19983643,-0.20583579,-0.06905233,-0.55679476,-0.36358684,0.28092724,0.20982693,0.22459193,-0.065380365,-0.03309358,0.1315197,0.054903116,0.37199852,-0.3859194,-0.2556311,0.34136513,0.17131875,0.11082614,-0.0076861638,-0.3611298,0.5042296,-0.57205606,-0.033677638,-0.13700955,0.09342549,-0.3181222,-0.19590276,0.2060601,0.19618651,0.3550865,-0.25679624,-0.36000004,-0.32593113,0.4484766,0.10376713,0.18462618,0.4345466,-0.1848118,-0.03027785,0.12891522,0.46240488,0.9416462,-0.26153857,0.05239524,0.47730866,-0.21378371,-0.5346909,0.35333374,-0.22992104,0.11896697,-0.05431315,-0.12646773,-0.46116582,0.29498917,0.18630543,0.08766388,0.037404962,-0.50992244,-0.24115713,0.40411982,-0.27383354,-0.26914513,-0.3378278,0.14699058,0.57543725,-0.28580686,-0.16993122,0.16046809,0.3159179,-0.24724385,-0.5816995,-0.019254986,-0.26391527,0.25992802,0.10192467,-0.25639048,-0.232995,0.093012385,-0.35149416,0.09335995,0.05950465,-0.45183438,0.022173723,-0.40594965,0.025595158,0.93114054,-0.08345785,0.26461002,-0.6177657,-0.38855875,-0.8689812,-0.33530897,0.72004396,-0.023254562,-0.17269227,-0.40391633,-0.08570218,-0.0750818,-0.15006648,-0.09361201,-0.31389925,0.39172748,0.14495216,0.3042969,-0.02125732,-0.60768783,0.075360455,0.017005173,-0.21266934,-0.4917694,0.4431333,0.06913815,0.74396497,0.059622664,0.0030501762,0.3748806,-0.47613484,-0.00314341,-0.17185974,-0.13038643,-0.52440447,0.16448304 -501,0.37973613,-0.24020703,-0.29820785,-0.10328083,-0.31426185,0.05764691,-0.17165308,0.56068057,0.108654805,-0.40981343,-0.19682193,-0.05067043,-0.005895086,0.22199017,-0.2422795,-0.3936381,0.109445676,0.07518103,-0.35367793,0.6106816,-0.37531388,0.20349605,-0.12284434,0.47238198,0.12139759,0.20807672,0.010169997,0.11443151,-0.031389546,-0.23657608,-0.04176379,0.4970083,-0.51438075,0.353245,-0.21401855,-0.2999906,-0.044518422,-0.47874394,-0.31198072,-0.8349547,0.19803686,-0.78211224,0.5351187,-0.15934245,-0.32784307,0.2914609,0.11563102,0.20660701,0.10794115,-0.18829863,0.06157569,-0.19227849,-0.0062109153,-0.15855023,-0.097897336,-0.3750442,-0.5351309,0.06260281,-0.46735686,-0.09771497,-0.33960503,0.169304,-0.30242622,-0.01721739,-0.0678194,0.53148913,-0.4745431,-0.043821275,0.13405846,-0.099488616,0.26835594,-0.6874162,-0.1159246,0.005892376,0.20629008,0.015419803,-0.24939826,0.2862381,0.3122508,0.46488082,-0.020059535,-0.16897802,-0.21618271,-0.05007823,0.1919642,0.6330119,-0.06287813,-0.47108567,-0.16283207,-0.11746909,0.3066507,0.18381189,0.14516404,-0.08106061,-0.2616255,0.056730725,-0.16361256,0.29720607,0.5128968,-0.26762497,-0.22676441,0.34229377,0.39488128,0.2984504,-0.09561868,0.08105477,0.016536148,-0.5009095,-0.16655357,-0.11443313,-0.23378533,0.56349903,-0.18428424,0.361596,0.55234057,-0.10134997,0.0025708356,0.22818293,0.07163432,-0.10046904,-0.33371836,-0.17605038,0.24926546,-0.55474406,0.1656505,-0.15807503,0.82301843,0.007219887,-0.6557226,0.27381974,-0.4450339,0.0015749614,-0.037498925,0.49771836,0.71959186,0.45521376,0.37322176,0.60853094,-0.2685891,-0.08225613,-0.13839136,-0.25929397,-0.083056614,-0.29005238,0.034299936,-0.53669757,0.0032261333,0.0830861,0.080503955,-0.048758525,0.3656708,-0.5535281,-0.06598093,0.09378286,0.72081053,-0.2438718,0.0025913268,0.93111813,0.9930488,0.9053267,0.19597673,0.9080839,-0.0022179803,-0.011110131,0.1242067,0.027402673,-0.5026949,0.29376423,0.35973495,0.43682507,0.12708068,0.015943909,-0.05157837,0.57461804,-0.33370203,-0.14042886,-0.16814466,0.2697968,0.09930487,-0.13774611,-0.5212557,-0.37077686,-0.0074839336,0.06616263,0.045540452,0.31322414,-0.19509272,0.41694075,0.13830169,1.3766351,-0.18481812,0.029330527,0.16449252,0.4403226,0.25117788,-0.20843367,-0.004635143,0.2643428,0.31050456,0.111523725,-0.5842211,0.22338744,-0.11074621,-0.50874895,-0.1167892,-0.3792626,-0.28068072,-0.027381087,-0.6063121,-0.15285152,-0.17332618,-0.24939051,0.41038808,-2.864657,-0.18219529,-0.04261452,0.29441112,-0.1639276,-0.4027771,0.10188819,-0.4762491,0.48605672,0.39394653,0.41799232,-0.5601625,0.3911373,0.4117007,-0.5316478,-0.10455168,-0.5650858,-0.18887635,0.06346748,0.3532258,0.21836516,-0.07848155,-0.029403877,0.021886593,0.5633897,-0.07938683,0.19745257,0.1822912,0.2550251,-0.21511021,0.31341723,-0.11097832,0.41641834,-0.14643352,-0.14857803,0.38433376,-0.3088727,0.29011604,-0.18222356,0.1829568,0.564395,-0.37894627,-0.8023671,-0.73622704,-0.38085017,1.2613108,-0.114979476,-0.45295924,0.2944755,-0.4996432,-0.34360075,-0.11667332,0.38442072,-0.17254296,-0.0095051015,-0.6409668,0.033645667,-0.17795709,0.005804288,-0.028688876,-0.08885148,-0.43791136,0.7016046,0.028424565,0.59725696,0.29865912,0.28048858,-0.26318267,-0.36941722,-0.07872556,0.6875697,0.64137596,0.18300216,-0.43164933,-0.18353605,-0.36353332,-0.06279787,0.14798495,0.57775635,0.6520315,0.010302013,0.18392883,0.21228646,-0.0034802635,0.051420704,-0.16730374,-0.16618367,-0.07180928,0.1642976,0.6816036,0.5754817,-0.15602855,0.37299076,-0.07747989,0.1788516,-0.26503322,-0.49039212,0.39737085,0.9095213,-0.20064835,-0.24372987,0.72528225,0.58796024,-0.078009404,0.33900625,-0.60296375,-0.34360605,0.38474637,-0.17165047,-0.437938,0.12968679,-0.31237248,0.21776079,-0.84571916,0.35046303,-0.34852192,-0.7759292,-0.5617236,-0.026347978,-2.9023771,0.24746071,-0.09669791,-0.26422295,-0.24112305,-0.48073474,0.23035595,-0.5785645,-0.5592143,0.15158479,0.04116533,0.72107065,-0.075413816,0.050355904,-0.23493095,-0.37774652,-0.20974083,0.11725021,-0.03213637,0.272597,-0.17732912,-0.2732924,-0.06729995,-0.15092497,-0.46394333,0.096385695,-0.4029547,-0.5767908,-0.17282775,-0.27685538,-0.27986276,0.49670985,-0.25148335,0.10742987,-0.23071188,-0.06045395,-0.09863225,0.35223112,0.11019232,0.22369304,0.12362803,-0.100492135,0.13199158,-0.29898226,0.17286961,0.023051314,0.22688776,0.52049047,-0.1005676,0.3285905,0.5916316,0.47557268,-0.20089836,1.0503544,0.43616676,-0.008764724,0.35480973,-0.14545682,-0.4418293,-0.46686694,-0.20785376,0.122204505,-0.42750493,-0.38651326,-0.029577564,-0.3198695,-0.78175324,0.5104903,0.093056805,0.29585725,-0.07268151,0.105200835,0.47922,-0.25145784,-0.14489584,-0.05454852,-0.08486382,-0.5706237,-0.4024487,-0.7510216,-0.63237965,-0.110246256,0.96357137,-0.15121704,-0.02483238,0.052031223,-0.17127705,0.028095761,0.10410966,0.010375985,-0.08288085,0.29895976,-0.108957544,-0.7255261,0.56193715,-0.009024119,-0.29379666,-0.3687577,0.2572913,0.58077115,-0.53113365,0.37254927,0.3919956,0.15925191,-0.225838,-0.64002967,-0.026658202,-0.16317873,-0.23310052,0.54279655,0.36821836,-0.8031657,0.4874629,0.28451353,-0.10840105,-0.76015157,0.46296754,-0.06009863,-0.21451406,-0.103446074,0.25488433,0.2418711,0.120006606,-0.12554003,0.19867174,-0.48395106,0.22778368,0.24575557,0.009767375,0.35537624,-0.25915366,-0.042005744,-0.67448497,-0.14208578,-0.60350454,-0.25264397,0.11792461,-0.026532345,0.088171616,0.23454615,0.12613818,0.3747514,-0.35734546,0.17222439,-0.058133963,-0.24731295,0.27197757,0.555292,0.54286104,-0.23670082,0.6125339,0.14811231,-0.012461766,-0.038427927,0.19300191,0.45436624,0.08428168,0.4716276,-0.23808217,-0.08743334,0.068941675,0.98420143,0.14480996,0.49381608,-0.101661175,-0.09863148,0.23069206,0.025737613,0.42481238,-1.9598006e-05,-0.53872234,-0.032794528,-0.3890207,0.07261038,0.5270915,0.087148994,0.24196924,-0.00085702934,-0.23571876,0.092689484,0.12128583,-0.07540814,-1.327005,0.3627529,0.29320842,0.8807564,0.47875676,0.053721204,0.071154036,0.7385511,-0.19133136,0.18036614,0.27926254,0.15882272,-0.4811956,0.5599805,-0.94487244,0.3787279,-0.051614273,-0.08802879,-0.040950757,-0.12418036,0.401093,0.59777015,-0.2049621,0.03439321,0.019441886,-0.41512254,0.2096034,-0.46419683,-0.041474994,-0.47371835,-0.23466955,0.72477204,0.56981176,0.3337148,-0.28087014,0.005231581,0.21057497,-0.07983933,0.110242404,0.038777165,0.08534687,-0.12972438,-0.45540947,-0.1430529,0.5506068,-0.059667077,0.29720017,-0.055576514,-0.26672336,0.19912027,-0.005748419,-0.23455824,-0.010383767,-0.6496974,0.10546659,-0.37993076,-0.55973727,0.45646408,-0.15257473,0.06886645,0.18303236,0.07571146,-0.12730366,0.18514591,0.07801485,0.64098495,0.052273862,-0.019520227,-0.31852925,0.13213506,0.1904097,-0.23632553,-0.20547065,-0.2291488,0.08304896,-0.45685995,0.28935555,-0.0937659,-0.19815236,0.12499056,-0.036672514,0.094604746,0.39467195,0.03949051,-0.12382393,-0.009866301,-0.20524146,-0.33218077,-0.20857283,-0.03720599,0.2989403,0.055330165,-0.08751013,-0.1035573,-0.12270708,-0.120934404,0.34755218,-0.0023668776,0.33427987,0.26274812,-0.17224601,-0.28908926,-0.047518842,0.19140667,0.51718545,-0.08931386,-0.09372511,-0.20590973,-0.42785487,-0.31051922,0.15531185,-0.032263644,0.31690255,0.09882224,-0.19139466,0.82096,0.0143622635,0.9008208,-0.012421777,-0.41067976,0.17797548,0.3346867,-0.01893372,-0.09597003,-0.33236548,0.78266186,0.29083106,-0.026694138,-0.11425122,-0.32833788,0.1184999,0.22305365,-0.14538176,-0.019383287,-0.066076554,-0.7319768,-0.17031386,0.27159357,0.29236957,0.015788956,-0.12562472,-0.14658995,0.31923616,-0.05214445,0.30544126,-0.44252524,-0.19162253,0.3708223,0.10593996,-0.091690384,0.12071596,-0.43916938,0.26910952,-0.6003021,0.07183839,-0.2266719,0.142945,-0.3562879,-0.23904593,0.27755642,0.021654343,0.36707643,-0.19188677,-0.35630074,-0.2825428,0.37505576,-0.0075883707,-0.00038990827,0.34129706,-0.223327,0.055246938,0.058829468,0.41291746,1.0220274,-0.30748194,0.108687945,0.2557109,-0.36895084,-0.54801,0.23808673,-0.30554885,0.19203204,0.072718844,-0.1957152,-0.53845036,0.16896993,0.38908184,0.17486241,0.007005318,-0.61534745,-0.15595001,0.13424608,-0.32238284,-0.1852909,-0.2580567,-0.015746208,0.56714183,-0.2571089,-0.23196311,0.032609895,0.3362004,-0.16384955,-0.512843,0.08768209,-0.3012399,0.23550098,-0.11773858,-0.41922912,-0.1376799,0.03422577,-0.39961174,0.08374774,0.18444853,-0.2661365,0.08093724,-0.4826073,0.22713418,0.9551332,-0.15906072,0.18432857,-0.46059695,-0.549822,-0.6649315,-0.39104903,0.22009425,0.28170303,-0.033032183,-0.5124953,0.07786395,-0.098496065,-0.08353775,-0.14138618,-0.35067004,0.4947073,0.17333221,0.34105304,0.010438045,-0.71524084,0.2810153,0.061013527,0.040848512,-0.41594493,0.39104757,-0.031287562,0.71633023,0.08763389,0.15330939,-0.022410464,-0.48342305,0.10272276,-0.20603244,-0.21885824,-0.6371656,0.042993255 -502,0.47348526,-0.13783331,-0.46250674,-0.23882219,-0.35402694,0.094659574,-0.20632228,0.13780919,0.14928171,-0.42971244,-0.3375693,-0.09647892,0.09929888,0.4643588,-0.08623574,-0.850038,0.014174532,0.1489138,-0.9729093,0.5281824,-0.59610945,0.43097478,0.20893383,0.1668884,0.23609553,0.51554453,0.49223906,-0.23785885,-0.19238617,0.06446986,-0.105932996,-0.026264615,-0.54457074,0.13667816,-0.099304706,-0.33708042,0.09978412,-0.46422133,-0.20984975,-0.6445492,0.23405139,-0.934042,0.4005385,-0.070310876,0.054960873,-0.06421557,0.26556534,0.37870464,-0.45802042,0.2791655,0.18949763,-0.27474937,-0.22780478,-0.29011297,0.06388188,-0.52895457,-0.49593818,-0.021187592,-0.5708545,-0.43993077,-0.2223,0.13762242,-0.3417303,0.13774905,-0.09979221,0.26516268,-0.44865096,-0.030231535,0.37912947,-0.15831794,0.059686534,-0.44471318,0.058840632,-0.0972448,0.4922255,0.022899894,-0.12939042,0.51835257,0.3760395,0.54535496,0.31540242,-0.35857132,-0.12430917,-0.22487845,0.36069712,0.39705235,-0.010178011,-0.37464792,-0.18792215,0.07540199,0.2639892,0.3239111,0.08236116,-0.34137586,-0.029664196,-0.04773048,-0.17136304,0.51986015,0.5816116,-0.31566438,-0.37806982,0.40406924,0.5154479,0.15703134,-0.14093718,0.02981016,-0.039245263,-0.5692242,-0.19939637,0.31262493,-0.012271348,0.43949366,-0.10657795,0.06573734,0.9312744,-0.37173587,0.029184595,-0.3091861,-0.20248824,-0.2658538,-0.0982163,-0.11942295,0.075924546,-0.6010235,-0.0770693,-0.43369573,0.70443964,0.317771,-0.71201664,0.2971518,-0.5220341,0.18749897,-0.22776106,0.6518684,0.65932393,0.32468975,0.304266,0.8533787,-0.41735363,0.38759202,-0.10669266,-0.5080389,-0.010650314,-0.41444463,0.09460445,-0.4362793,0.09511533,-0.30012167,0.016924925,0.026860744,0.47127026,-0.49183035,0.015522853,-0.025233645,0.66086733,-0.47018087,0.00304088,0.70385295,1.0884315,1.1476834,0.09861373,1.2699256,0.59953076,-0.3553074,0.16611724,-0.4674024,-0.60678,0.20325933,0.45166638,0.25338712,0.28193212,-0.1729607,-0.01173383,0.20006011,-0.57734436,0.15681179,-0.0405015,0.35407212,0.06717324,-0.082988255,-0.32041845,-0.20322594,0.03771069,-0.034583084,0.1338308,0.23637593,-0.2182017,0.43826032,-0.062391363,1.3389617,-0.017665874,0.050938338,-0.16484855,0.5546859,0.21815278,-0.1898351,-0.06801336,0.29164532,0.4858863,-0.13823657,-0.75678754,0.1390171,-0.44077194,-0.3999242,-0.26298058,-0.4297482,0.05567981,0.00064085796,-0.25863063,-0.09577274,0.04009255,-0.3003874,0.4244941,-2.4923532,-0.31792313,-0.1982219,0.3178141,-0.2791265,-0.07832976,-0.12345046,-0.53686965,0.31151733,0.27848703,0.4531342,-0.60060304,0.46573412,0.3467982,-0.55563056,-0.24255101,-0.827495,0.03267911,-0.1394227,0.47700834,-0.11722441,-0.061673373,-0.11888704,0.16948673,0.69856083,-0.13061218,0.12913306,0.4347866,0.36067265,0.23044962,0.5957397,0.076629594,0.6776781,-0.28922027,-0.12911946,0.40262994,-0.21793172,0.30150005,-0.22099628,0.09752904,0.39729905,-0.5465139,-0.80302393,-0.70916665,-0.45147532,0.9673617,-0.42121896,-0.4099781,0.10416779,0.057753675,0.14876412,-0.017344896,0.5622899,-0.06864289,0.14423129,-0.6192086,0.08224525,0.07769417,0.06221426,0.09681189,0.11729282,-0.3240568,0.5925386,-0.06674118,0.5302609,0.18649301,0.3562982,-0.14156668,-0.3572879,0.30008325,1.0425876,0.20476946,-0.10151471,-0.15173087,-0.3307028,-0.19017468,-0.31945884,0.026705246,0.36620018,0.8386214,-0.031539973,0.14993499,0.22562133,-0.21252753,0.038885944,-0.14804688,-0.23781197,0.07478716,-0.02393777,0.43999827,0.6594087,-0.09712075,0.5112262,-0.2640217,0.34708127,-0.005694689,-0.5944346,0.7166811,0.6458108,-0.06300139,-0.005247634,0.46344256,0.47354138,-0.44193053,0.5939622,-0.6779815,-0.2766113,0.8445196,-0.23103637,-0.35903174,0.16971338,-0.27815422,0.15494019,-0.8571571,0.43348745,-0.28338924,-0.22192436,-0.35315657,-0.031566955,-3.5704775,0.11862823,-0.081231356,-0.14246683,-0.0775799,-0.053725332,0.21838614,-0.63149405,-0.5010522,0.18958034,0.22435188,0.72799206,-0.008667545,0.22188509,-0.24481618,-0.15038499,-0.2472234,0.19442938,-0.016668811,0.2517555,-0.06381045,-0.30595055,0.092452876,-0.10513154,-0.5314549,0.19811355,-0.43658802,-0.48515335,-0.18054013,-0.40735742,-0.36621097,0.6059056,-0.34117416,-0.048020877,-0.14636318,-0.05727138,-0.29682472,0.24971168,0.16037542,0.19528909,0.25299633,-0.029660894,0.0040817894,-0.2862609,0.45286328,-0.03882528,0.41004616,0.12341542,0.01611101,0.13600978,0.40485507,0.5410124,-0.14612918,0.8360958,0.39441705,-0.09437984,0.116673715,-0.3561527,-0.23407793,-0.55744344,-0.45491093,-0.116168484,-0.28891814,-0.5435478,-0.022124913,-0.34816098,-0.8114065,0.43878135,0.104655646,0.3121234,-0.11585195,0.22441025,0.3136974,-0.10598377,0.0034575872,-0.12712128,-0.16490021,-0.5718492,-0.23005438,-0.69560754,-0.51484776,0.12440481,0.7788714,-0.2882353,-0.122558996,-0.21613605,-0.3106336,0.048657805,-0.009422336,-0.07071061,0.32307285,0.3303553,-0.0226829,-0.805784,0.47967827,-0.16969468,0.0069321617,-0.5809068,-0.011489274,0.5753552,-0.750329,0.47893924,0.4247216,0.045780312,0.23766537,-0.48146763,-0.12387139,0.030285783,-0.11503125,0.31045392,-0.03463081,-0.8716383,0.5708845,0.17785086,-0.48234028,-0.7419029,0.37320578,0.13170373,-0.18893918,0.18435733,0.2021912,0.09613375,-0.13062803,-0.46209043,0.25866768,-0.5603709,0.3635781,0.22126125,0.019612487,0.3320825,-0.1520532,-0.46158224,-0.6126039,-0.046670146,-0.502614,-0.030087277,0.25512964,-0.051360223,0.10763466,0.13612747,0.058964282,0.43860483,-0.2660908,0.087606415,0.06616871,-0.39124438,0.18207856,0.443845,0.33085135,-0.4925266,0.5768494,0.12328462,-0.29671952,0.18503745,0.033382773,0.37046516,0.29266256,0.2681534,0.022801548,-0.22686668,0.41863522,0.7364608,0.06748929,0.2707771,0.19058034,-0.34924775,0.5001633,0.0824566,0.113190554,0.109324396,-0.25946724,-0.019516699,0.19873932,0.120457806,0.483222,0.373463,0.58997047,0.111705825,-0.18740398,0.037690267,0.1128279,-0.06512548,-1.0982428,0.30557936,0.15564004,0.76929724,0.6245052,-0.04297693,-0.16245052,0.60365075,-0.28846228,0.089253455,0.33263004,-0.095675915,-0.5433169,0.66877186,-0.6088795,0.43080124,-0.093857825,-0.10463246,0.0052811727,0.1710616,0.16225773,0.8777402,-0.13799721,0.12996888,-0.081092134,-0.2047216,0.15800714,-0.36438316,-0.037358716,-0.48672372,-0.42646807,0.69114083,0.19944195,0.22131228,0.025697127,-0.088987306,0.102104396,-0.21672162,0.272033,-0.012308657,0.022165336,0.07449392,-0.5623024,-0.37756804,0.40322724,-0.18156715,0.13610585,-0.156177,-0.27495295,0.015222952,-0.3350036,-0.026962966,-0.073904954,-0.7378411,-0.050145905,-0.19403814,-0.3862401,0.3941734,-0.21477455,0.2898174,0.27081457,0.031593315,-0.20824261,0.20642085,0.1806033,0.77209646,-0.013364304,-0.35129154,-0.31703866,-0.054897897,0.44019163,-0.31335005,0.3191267,-0.3546133,0.030981295,-0.6950992,0.7462082,-0.20209724,-0.38686016,0.27428687,-0.21747702,-0.06595485,0.5761453,-0.2173526,-0.08799252,0.19413069,-0.06497089,-0.31394905,0.024328474,-0.40274128,0.1408274,0.18880993,-0.037363555,-0.1334554,-0.16888891,0.06645142,0.6437085,0.0075868256,0.45890537,0.118058115,0.04681447,-0.20328712,0.05621554,0.22766127,0.3868758,0.29609695,-0.014929088,-0.4783838,-0.34209025,-0.3497582,0.20282781,-0.16924015,0.093678385,0.04975808,-0.49595717,0.7083204,0.024646766,1.2771386,0.17479905,-0.38965535,0.16518623,0.48999915,-0.12884827,0.074886695,-0.42380095,0.7734209,0.54524267,-0.018663388,-0.008788981,-0.44950703,-0.2344409,0.42487007,-0.32288447,-0.15135789,-0.029564466,-0.6628902,-0.52351487,0.22836453,0.03869583,0.14095566,0.023386894,-0.02498395,0.030847725,0.22320883,0.5076515,-0.6922929,-0.23504108,0.19732891,0.22927849,0.039944082,0.21376655,-0.3978778,0.5207772,-0.74035794,0.17134407,-0.25289357,0.08248071,-0.099746384,-0.4054979,0.20641796,0.21935505,0.4008483,-0.23676133,-0.5648046,-0.015384253,0.6256716,-0.06259893,0.2560432,0.66615355,-0.43128368,0.06568417,0.035793975,0.5940081,1.3642629,-0.35368073,0.17173153,0.34281802,-0.4234056,-0.6050324,0.47510242,-0.29659808,-0.093057446,-0.10048365,-0.44828188,-0.431284,0.38170213,0.19544294,-0.03591147,0.18287444,-0.5095478,-0.17227845,0.39568794,-0.25283545,-0.41641045,-0.25272468,0.3650126,0.6773737,-0.48589897,-0.14755684,0.2086299,0.36604244,-0.28092042,-0.34893972,-0.12164796,-0.2205647,0.3912482,0.15874226,-0.22804344,-0.14142297,0.16241078,-0.4187703,0.112600796,0.20717089,-0.37474322,-0.05815331,-0.087441325,-0.06390187,0.80177057,-0.17681618,-0.052820176,-0.69235903,-0.3789117,-0.89898837,-0.5138289,0.3306432,0.07748174,-0.016659051,-0.39490548,0.057233676,0.060194246,0.009971049,0.17974386,-0.6262853,0.3709812,0.07243952,0.4149689,-0.21933728,-0.87319344,-0.01824873,0.15677027,-0.27021837,-0.6337986,0.5767727,-0.13782915,0.8767363,0.094026044,-0.11150934,0.06833776,-0.41507933,0.13358963,-0.4135067,-0.1540873,-0.7698557,0.22093849 -503,0.47078818,-0.16959016,-0.43959963,-0.19772743,-0.28984544,0.17583479,-0.25424224,0.106228605,0.25042415,-0.0836203,-0.0003531933,0.07959489,-0.19837332,0.30148897,-0.10391138,-0.6412183,-0.0053943973,0.06189034,-0.6731709,0.6042294,-0.3466716,0.3799207,-0.10622565,0.36984184,0.056904666,0.46662918,0.06265338,0.0972615,0.07527294,-0.049315352,-0.122472264,-0.005011038,-0.685783,0.3513983,-0.18633865,-0.3466702,-0.1378856,-0.3524424,-0.27425116,-0.72669256,0.32801867,-0.71254843,0.4779557,-0.22398624,-0.4170572,-0.08348176,0.16730952,0.3099147,-0.37385038,-0.115548834,0.13404961,-0.18760593,0.013581167,-0.11783629,-0.16076094,-0.6188792,-0.48782757,-0.11207645,-0.5590894,-0.037715618,-0.21282199,0.28102133,-0.30330345,0.017782044,-0.1810047,0.33166963,-0.40255097,0.033433095,0.27332312,-0.3057905,-0.15036091,-0.40459552,0.022757845,-0.14226022,0.2837972,0.27845183,-0.10723553,0.33074033,0.23162319,0.5637292,0.30540064,-0.30567947,-0.26410097,-0.17145504,-0.037131857,0.4285456,0.034030396,-0.19832917,-0.3156757,-0.20218521,0.5882446,0.13517745,0.097867414,-0.3169811,0.06378483,-0.17858212,-0.11586938,0.35974583,0.57002985,-0.29560956,-0.16842517,0.4363893,0.40864372,0.08409428,-0.33706146,0.27692947,-0.095046975,-0.22199488,-0.1925252,0.06529094,-0.07861824,0.46260878,-0.033400305,0.19749339,0.69350946,-0.04075213,-0.011591085,-0.0945696,-0.12282631,-0.07890694,-0.32686502,-0.19126488,0.19776143,-0.45283228,0.021864064,-0.28618547,0.60789263,0.058126587,-0.88998026,0.36044753,-0.44425672,0.07933437,0.034379017,0.6511932,0.79303956,0.5854669,0.17825945,0.8232966,-0.34639597,0.10717309,-0.0507854,-0.18796453,0.14033447,-0.20463659,0.14098732,-0.45737132,0.26521018,0.078127116,-0.072514854,-0.062329803,0.23114513,-0.43491375,-0.15263334,0.039187655,0.61328727,-0.3564087,0.016919034,0.8977121,1.0204091,1.0001845,0.070126645,1.1875837,0.4001156,-0.09054337,-0.093353905,-0.22734803,-0.43112096,0.053077593,0.32472813,0.31819,0.48235947,0.084059514,-0.07538209,0.49042332,-0.26890835,-0.0336048,0.047571026,0.26773027,-0.053869966,-0.023829728,-0.43020073,-0.2604762,0.32001698,0.1528768,0.0113118645,0.39928564,-0.22277983,0.55896974,0.1815949,1.1570085,0.17255625,0.10131014,0.09174042,0.44319162,0.15109368,-0.3699838,-0.048404567,0.25959048,0.29711086,-0.19444065,-0.51621443,-0.0901705,-0.34294024,-0.37633628,-0.21737316,-0.413964,-0.22433634,-0.10851264,-0.31201327,-0.26691416,-0.0005960822,-0.29033864,0.43940315,-2.4993908,-0.09806886,-0.25322142,0.2946105,-0.3290776,-0.15705791,-0.18439502,-0.50646263,0.13953243,0.35673636,0.31530195,-0.6007674,0.45049953,0.36098224,-0.51752186,-0.035520125,-0.6019681,0.18329407,-0.06298067,0.45381248,-0.078538746,-0.209047,-0.22472224,0.2730123,0.72282284,0.3886042,0.054959483,0.31793195,0.37624472,-0.07523026,0.3991932,0.08397557,0.44190425,-0.34725994,-0.110217944,0.43032664,-0.54275364,0.37833968,-0.06763103,0.19073887,0.47057286,-0.56730336,-0.64612454,-0.55737895,-0.26484433,1.3748542,-0.48656946,-0.53225404,0.27357972,-0.088858895,-0.21474247,0.062648825,0.5362236,-0.13824943,0.0989989,-0.48550975,-0.07573934,-0.10364883,0.22809839,-0.0903356,0.07766868,-0.3196179,0.7309775,-0.23707788,0.53600526,0.24856658,0.23910576,-0.1248514,-0.46110305,0.14378087,0.7123608,0.61396325,0.055498164,-0.074848175,-0.12601008,-0.22824939,-0.35471237,0.09567787,0.66062903,0.5786549,-0.09954928,0.07887055,0.33532888,-0.2650199,0.1397493,-0.13826875,-0.29051667,-0.1997463,0.17880633,0.5969414,0.6278963,-0.107069425,0.13517164,-0.12553866,0.16236594,-0.12240375,-0.60368407,0.5205523,0.5835295,-0.21658655,-0.14519024,0.5747841,0.47219247,-0.3622423,0.47366798,-0.62916696,-0.3697137,0.53706586,0.0029649993,-0.46906677,0.10137481,-0.3370965,0.058787894,-0.7064143,0.24366006,-0.13224284,-0.67323047,-0.42695218,-0.11644344,-2.8689017,0.115013756,-0.035312593,-0.11677567,-0.120356135,-0.11522511,0.42865425,-0.55951744,-0.5637369,0.20698342,0.062480614,0.43018153,-0.034608047,0.12389679,-0.29281434,-0.24345447,-0.4118797,0.25573274,0.10481093,0.2830097,-0.1445265,-0.357662,-0.0810739,-0.110865235,-0.5041584,-0.08195067,-0.65035075,-0.39926496,-0.19097878,-0.4818357,-0.18288682,0.6100058,-0.3433716,0.09331739,-0.34599647,-0.121699266,-0.2384107,0.23922087,0.22239408,0.16667245,0.14368607,-0.12464102,0.035099737,-0.2964404,0.29228547,0.055106103,0.32857648,0.41517422,-0.18506838,0.108320154,0.5188413,0.6022464,-0.01554536,0.7857017,0.07448629,-0.07300145,0.5422216,-0.19992606,-0.4019932,-0.61828697,-0.3142205,-0.13028578,-0.45282713,-0.3724334,-0.020886092,-0.2942103,-0.8571589,0.3468485,0.12726162,0.3441753,-0.1881868,0.13133296,0.45212355,-0.14691353,0.0873461,-0.09710515,-0.21223497,-0.5035948,-0.40999004,-0.65676516,-0.6037548,0.28938434,1.0585825,-0.100962594,-0.009290362,0.037373934,-0.3888879,0.0779617,0.10041855,0.21049014,0.057953235,0.31370825,-0.075140916,-0.628587,0.4186882,-0.17904653,-0.041752737,-0.48823044,0.21586703,0.6300146,-0.5939914,0.51003045,0.24273029,0.18233518,-0.14931351,-0.7652298,-0.15303864,0.005486107,-0.10808496,0.5803907,0.34802625,-0.6498818,0.38916004,-0.005467121,-0.1402888,-0.6347091,0.37950525,-0.082730226,-0.06603432,0.014764738,0.43993774,0.058834195,-0.20072702,-0.14250953,0.14007153,-0.5756965,0.2590576,0.39960727,0.027512755,0.43209597,-0.037211105,-0.33461085,-0.63977164,-0.17405656,-0.56369674,-0.20594254,0.09123346,0.046129253,0.023654552,0.022905236,-0.034796778,0.41065267,-0.21330027,0.21484426,-0.10073986,-0.284957,0.58776295,0.508003,0.47278252,-0.44728792,0.6766785,0.24964467,-0.043639265,-0.12957197,0.058331575,0.48121887,0.2242212,0.3588497,-0.07351885,-0.017601904,0.012746751,0.53635937,0.3406104,0.40694264,0.08009555,-0.29071534,0.33209208,0.14829364,0.1076866,-0.10493448,-0.31019703,-0.037237186,-0.14515024,0.17659439,0.411279,0.06808378,0.47717178,-0.10826111,-0.035353877,0.2435017,0.01520447,-0.31545582,-1.1771249,0.29579464,0.3091425,0.8082207,0.45086887,0.15383783,-0.15351573,0.6646829,-0.29941443,0.06304648,0.3900101,0.0077313026,-0.39505714,0.58997667,-0.44986698,0.41992807,-0.018658495,-0.011639134,0.3504486,0.2687287,0.45519385,0.8079949,-0.101371594,0.026122864,-0.115607545,-0.26687425,-0.007088356,-0.2253042,0.26510292,-0.4664851,-0.45108128,0.58221537,0.32669073,0.35677797,-0.3091245,-0.09619379,-0.010383652,-0.1708481,0.11161712,-0.15635708,-0.021924365,-0.24634014,-0.53244287,-0.3704396,0.5265905,-0.2861474,-0.057678837,0.13432887,-0.3273163,0.15344815,-0.13930945,-0.03730391,0.04354048,-0.63320345,0.14448781,-0.23426278,-0.33513588,0.3932673,-0.29867032,0.2511179,0.14070779,-0.040786274,-0.36464444,0.06473133,0.07482691,0.7454719,-0.014653317,-0.19208957,-0.2606706,-0.02277985,0.32015565,-0.38232043,0.10607801,-0.3391598,0.054487552,-0.6106317,0.32054654,-0.2389432,-0.22203453,0.052068885,-0.13024895,0.011159425,0.38450032,-0.1982844,-0.16203478,0.22971365,0.03697184,-0.4944211,-0.25036728,-0.3430194,0.28787374,0.101358004,0.06838725,0.07120703,-0.08351316,0.07929257,0.35855597,0.09825872,0.13068579,0.29981664,-0.18698259,-0.46072626,0.24790828,-0.0093858,0.34441042,0.21706527,0.031570774,-0.32015827,-0.37585753,-0.36161432,0.3243226,-0.22943905,0.19179024,-0.06699875,-0.2657576,0.8389632,0.08063242,1.1422323,0.08566458,-0.42219195,0.18950576,0.59679484,0.007348754,0.084843226,-0.30621612,1.0158727,0.62803155,-0.177215,-0.18494233,-0.4284724,-0.26156232,0.21936226,-0.36831194,-0.27675804,-0.014772505,-0.6586495,-0.11794748,0.017680092,0.17894863,0.033971462,-0.057630047,-0.13158354,0.22462621,0.127537,0.5353279,-0.4981984,-0.17048544,0.32518804,0.020447278,0.06641692,0.17964908,-0.3808858,0.3858639,-0.82052684,0.12153331,-0.45020404,0.0432832,-0.100096814,-0.4184206,0.16404481,0.039735034,0.3590731,-0.39517292,-0.51610595,-0.17813708,0.6464522,0.24218264,0.20806861,0.67336756,-0.27401263,-0.15241215,0.118727475,0.53367865,1.1535027,-0.13901709,0.09852834,0.18621698,-0.3403856,-0.7053595,0.11636943,-0.35639194,0.093617685,-0.00654765,-0.44449535,-0.2731891,0.30371687,0.11919567,-0.14636315,0.19484776,-0.5612856,-0.15462217,0.14505482,-0.24870926,-0.18550208,-0.33834794,0.20864144,0.6852292,-0.33725864,-0.502464,0.0026091218,0.22241758,-0.24838775,-0.7015769,0.04131611,-0.24420626,0.31017044,0.0006816864,-0.49213573,-0.099748135,0.29169372,-0.42491737,0.043673143,0.36015892,-0.37152913,-0.0031460046,-0.29898208,-0.118331686,0.9559891,0.20549883,0.14686604,-0.64772666,-0.40780053,-0.8605577,-0.44120774,0.0569125,0.27079687,-0.051351972,-0.5060028,-0.03326165,-0.30878222,0.21530391,0.116863504,-0.5192934,0.31598425,0.21828909,0.5714489,-0.13957296,-0.94697213,0.12607187,0.20519136,-0.1275159,-0.41974264,0.5192279,-0.12995404,0.74565226,0.210361,-0.012354863,-0.061585434,-0.6951185,0.228117,-0.3165492,-0.17665698,-0.6166454,0.2218052 -504,0.34947008,-0.037415575,-0.5401853,-0.25259864,-0.41191542,0.1494754,-0.27967772,0.1658052,0.16032194,-0.3358309,-0.00020453334,-0.06613841,-0.110926986,0.28264672,-0.0932029,-0.5621502,0.1405038,0.11705259,-0.67848855,0.48192212,-0.6309001,0.3160143,0.044101954,0.3205712,-0.034660317,0.24073629,0.13894,-0.08834412,0.023835996,-0.07328084,-0.13924718,0.36494955,-0.76529515,0.2560805,-0.109521486,-0.31699154,-0.0032312472,-0.23791961,-0.21647525,-0.696727,0.18521948,-0.7012474,0.5452983,-0.10672405,-0.4418848,0.027408374,0.059812233,0.29901823,-0.30516112,0.15635599,0.31280607,-0.14205557,-0.13682999,-0.09219635,-0.10068042,-0.41617125,-0.5071201,-0.026027216,-0.6717859,-0.08151453,-0.27493662,0.23977095,-0.34104434,0.006991601,-0.3718139,0.4172579,-0.37461442,0.057042487,0.013666423,-0.13551189,0.04543812,-0.43251938,0.0017121792,-0.09721469,0.3594937,0.022327201,-0.23912078,0.056593616,0.32582673,0.673204,-0.0035496673,-0.2244497,-0.16678225,-0.24049574,0.21544844,0.33704773,0.03381252,-0.18659994,-0.22451226,-0.080966264,0.22486286,0.2407053,-0.06365953,-0.47215202,0.12103991,0.05665218,-0.25138897,0.24639218,0.4118077,-0.4176186,-0.2354566,0.4053322,0.45070824,0.12564509,-0.26300147,0.3090626,-0.07560987,-0.44713694,-0.29580015,0.2803383,-0.03182378,0.31537655,-0.19800942,0.23819488,0.77033347,-0.08287461,-0.028406302,-0.05821781,-0.14771049,-0.0862445,-0.2575934,-0.07602237,0.04333668,-0.5147659,0.11626462,-0.2622347,0.7658812,0.04502745,-0.8742846,0.31491116,-0.55377674,0.06870469,-0.13744614,0.71501356,0.85898966,0.3054727,0.10673485,0.7151481,-0.49766046,0.07611248,-0.11032586,-0.39927092,0.018364366,-0.09346934,0.15816246,-0.47076994,-0.05825435,0.015767861,0.028918136,-0.22259732,0.17513438,-0.3926097,-0.16522236,0.04084378,0.5615256,-0.41922665,0.005677076,0.7426283,0.89717776,0.95109934,0.17499945,1.3631443,0.35381094,0.007837304,0.024793236,-0.27064294,-0.5445505,0.086006634,0.30260774,0.23688792,0.16841622,0.07497723,0.15437654,0.58597565,-0.30386174,0.07180907,-0.06713063,0.2894865,-0.059268963,-0.114638805,-0.24835481,-0.14672539,0.34108385,0.091942295,-0.0944716,0.38451284,-0.13863716,0.3426472,0.28570208,1.2385406,-0.03867278,0.0866679,0.09930624,0.27781916,0.12962858,-0.31207985,-0.092601046,0.33378547,0.45151833,-0.12459662,-0.539864,-0.026621092,-0.22722344,-0.32300287,-0.21734768,-0.33514988,-0.1409127,-0.16766702,-0.4603242,-0.14592272,0.009320175,-0.25673702,0.49855837,-2.6803937,-0.16127406,-0.116202496,0.22463153,-0.22706273,-0.2976301,-0.33538043,-0.47528553,0.3264701,0.30524987,0.34593168,-0.6221701,0.6002011,0.38497737,-0.2730389,-0.17443953,-0.74076235,-0.12372797,-0.027772052,0.42647,-0.052658953,-0.13876642,-0.24530564,0.18365638,0.64205575,-0.048691437,0.1484153,0.15136878,0.57838815,0.07086606,0.7033161,0.2412108,0.5571063,-0.25580895,-0.115103595,0.32977343,-0.30899844,0.41301683,0.07101323,0.18164212,0.36914328,-0.42502794,-0.68006855,-0.6213518,-0.4432951,1.2329772,-0.48599538,-0.35217422,0.27608618,-0.10814789,-0.27044323,0.13022453,0.47187233,-0.026007365,0.042371426,-0.70753545,0.011715635,-0.09138338,0.32213518,-0.16298757,0.1944469,-0.345864,0.6967152,-0.1307335,0.55269307,0.42681,0.1883829,-0.048614264,-0.34081814,0.043687582,0.9798616,0.4237226,0.096959956,-0.17219235,-0.2549332,-0.22252528,-0.117662676,0.116424054,0.5850916,0.5049745,-0.02334974,0.27389982,0.35729876,-0.27241242,-0.029979836,-0.25849682,-0.3414784,-0.031916093,0.20878454,0.40535837,0.5182329,-0.16404766,0.45468143,-0.16370554,-0.055561606,-0.18797049,-0.56169546,0.46609047,0.52902716,-0.24478269,-0.099182114,0.51626337,0.45489326,-0.26000458,0.36910564,-0.4460624,-0.3335067,0.62808496,-0.06589348,-0.40283865,0.2352562,-0.312113,-0.0067774337,-0.8981773,0.27580884,-0.29842246,-0.6840631,-0.6073467,-0.19512925,-3.5629687,0.13347314,-0.04222304,-0.016676713,-0.16032162,-0.2440505,0.41376358,-0.45115831,-0.54360956,0.05541509,0.0077474616,0.40790537,-0.09502018,0.19608015,-0.39514834,-0.27568468,-0.27999896,0.2997509,0.14260027,0.24804758,-0.06578065,-0.40698782,-0.021268262,-0.17175461,-0.35179582,-0.04879084,-0.5452899,-0.46166018,-0.070140496,-0.33135378,-0.18539077,0.72128415,-0.36259288,-0.01936612,-0.32187563,-0.1041173,-0.2285299,0.43359053,0.2946287,0.2053197,0.014455278,0.01978915,-0.28781626,-0.3845103,0.02793723,0.053752553,0.22730058,0.40487856,-0.017714404,0.11946774,0.38102975,0.48617393,0.025194407,0.7278254,0.20994386,-0.15488516,0.4665345,-0.30500704,-0.3158473,-0.70447034,-0.3412094,-0.3617207,-0.444096,-0.479031,-0.13568586,-0.23961735,-0.78996634,0.40624025,0.14008994,0.06526665,-0.26717025,0.27019483,0.4024107,-0.040314034,0.030472837,-0.11919613,-0.27236593,-0.49212188,-0.58212173,-0.7211332,-0.51569366,0.17339522,1.0852114,-0.22496475,-0.16778582,-0.037157293,-0.2689392,0.037166674,0.10206654,0.15101784,0.21553849,0.4702845,-0.08972012,-0.7286608,0.39089635,-0.1192526,-0.075145,-0.585874,-0.031114427,0.8971062,-0.7309656,0.5787468,0.17650573,0.16490243,0.10469149,-0.68143934,-0.24794243,0.07061409,-0.28801638,0.66822433,0.15757132,-0.6665975,0.5169859,0.22416018,0.16068366,-0.6237503,0.5127439,0.06925983,-0.035714213,0.14069079,0.3631991,0.026523607,-0.02849264,-0.06692353,0.25838587,-0.38231087,0.3839706,0.3794154,-0.15277322,0.2630684,-0.067080356,-0.26014766,-0.47052592,-0.16603208,-0.5256061,-0.23494077,-0.020125242,0.030133603,0.1267203,0.11608707,-0.0643459,0.39511806,-0.24677357,0.21009485,-0.009150382,-0.15126596,0.32674465,0.5060927,0.26217684,-0.4669406,0.57245654,0.18096629,-0.06439016,-0.059821185,0.14042705,0.4237993,0.26720753,0.40694058,-0.19403562,-0.1221652,0.22839823,0.7718093,0.2216153,0.5044104,0.07799064,-0.09444402,0.21970682,0.18657748,0.13172239,-0.1274938,-0.3108692,-0.058141377,0.05811154,0.26447293,0.4433282,0.19016916,0.37967265,-0.059408147,0.043068595,0.20741338,0.115572624,-0.11723181,-1.192817,0.39120582,0.23779099,0.6380126,0.5420091,-0.00535237,0.14265281,0.38767853,-0.41918564,0.068656534,0.31928667,0.114356056,-0.40550023,0.5624226,-0.53873163,0.42840147,-0.18128523,0.06652691,0.07341895,0.07123765,0.3251556,0.95956486,-0.11330571,0.14183985,-0.009267681,-0.20225026,0.16597085,-0.22567043,0.040514637,-0.47848836,-0.33494103,0.621949,0.50840396,0.25693858,-0.48997843,-0.10495486,0.021398136,-0.16884102,-0.034680095,-0.09044244,-0.0250472,-0.041526258,-0.4736602,-0.27477887,0.65786564,-0.10678108,-0.08601298,0.1242656,-0.42708784,0.39081162,-0.027914755,0.12085328,-0.03299934,-0.5573375,-0.061951797,-0.36193618,-0.4526181,0.27919734,-0.3561111,0.32004228,0.19339152,-0.041098427,-0.24734996,0.28048027,0.06529272,0.694488,-0.008546948,-0.005823815,-0.15305836,-0.01301932,0.33504456,-0.2560396,-0.24791694,-0.43964192,0.113516964,-0.557836,0.21957661,-0.16207296,-0.31748745,-0.08570672,-0.103960626,0.04936601,0.44592407,-0.113518916,-0.11185603,0.18667619,0.022657549,-0.34198064,-0.110417694,-0.3012872,0.2802612,-0.0058322507,0.1665424,0.020076983,-0.10134433,-0.052640155,0.22964798,0.10329192,0.1740181,0.30499655,-0.009320561,-0.34308872,0.04875172,-0.02367781,0.29121864,0.18068711,-0.16696633,-0.17996763,-0.32259098,-0.25217277,0.41232428,-0.17228647,0.16825533,0.005019593,-0.4211788,0.8270014,0.18838876,1.0747948,0.13839908,-0.40298328,0.11901602,0.47521192,0.09262927,0.19861427,-0.20101728,0.725662,0.56358224,-0.10090234,-0.050162863,-0.37486744,-0.28733787,0.20811826,-0.28906327,-0.309953,-0.08362282,-0.6606472,0.024310084,0.07119907,0.2145705,0.073858365,-0.08892129,-0.13186292,0.14005966,0.12620457,0.5459231,-0.6123091,-0.08467414,0.30626944,0.1675542,-0.0020335119,0.16510716,-0.33512318,0.47246546,-0.7551639,0.17424825,-0.43287563,0.12792546,-0.12580553,-0.23397176,0.09669127,0.015966212,0.28076893,-0.2523824,-0.3452019,-0.28428742,0.64891624,0.23467524,0.34040126,0.82760406,-0.21253271,-0.033090122,0.110265814,0.44822198,1.129997,-0.07540289,-0.19587891,0.268262,-0.28149548,-0.6558182,0.117896,-0.48345944,0.1622316,0.007694801,-0.50545573,-0.12880345,0.2822836,0.045217037,0.07446216,-0.103905566,-0.57868195,-0.05623637,0.44733208,-0.06317298,-0.19320989,-0.16995606,0.1838262,0.8207055,-0.39749396,-0.29436162,-0.10573004,0.217073,-0.32906947,-0.51168597,0.038720217,-0.31275573,0.36664453,0.24053457,-0.32472762,0.10085012,0.29451123,-0.4658117,-0.018503796,0.38163865,-0.3166495,0.07431031,-0.23397213,-0.07319231,1.0651536,0.02268556,0.087398715,-0.42912945,-0.50278324,-0.685559,-0.20910087,0.20566256,0.2679666,-0.056068107,-0.45789957,-0.021263702,-0.17129542,-0.03979141,0.1723031,-0.5781847,0.46364367,0.19091773,0.40762377,-0.0042109014,-0.87440324,0.07426281,0.15031637,-0.007358742,-0.47500473,0.6472823,-0.17938073,0.7030401,0.040423695,0.051119283,-0.038817402,-0.58162993,0.22655058,-0.33153498,-0.083903044,-0.8124988,0.06356659 -505,0.3776622,-0.19073853,-0.23871598,-0.32204252,-0.16539063,-0.027343664,-0.054398227,0.3979992,0.15788527,-0.5177097,-0.2093895,-0.22812216,0.019995868,0.36409548,-0.18213786,-0.7690657,0.048724853,0.12390971,-0.43656057,0.5757774,-0.52017814,0.48680454,0.1885718,0.08320509,0.033491034,0.312478,0.27238637,-0.28215042,-0.13495855,-0.19383676,-0.14629053,0.2509891,-0.6242667,0.1434271,-0.037966616,-0.2599751,0.08351033,-0.36365113,-0.31622916,-0.9517889,0.4249122,-0.9296743,0.39698854,0.067640536,-0.29569906,0.4702575,-0.09746294,0.14374152,-0.35288957,0.18858545,0.15504017,-0.224515,-0.060322158,-0.21733566,0.01936322,-0.3830411,-0.63347703,0.020303141,-0.33303303,-0.3262488,-0.3699372,0.13873309,-0.46832296,-0.10951625,-0.12518704,0.34841985,-0.5566494,-0.1794437,0.15867434,-0.14402188,0.42658654,-0.5813232,-0.057056602,-0.23115203,0.25319648,-0.20067856,-0.11894108,0.5882451,0.37916437,0.5565706,0.093417905,-0.2464228,-0.26836848,-0.18895552,0.33902302,0.45814997,-0.07765529,-0.64466566,0.119447455,-0.07001786,0.15210493,0.21330312,0.17979462,-0.26829484,-0.26864594,0.07132088,-0.3291876,0.3791885,0.55694944,-0.28987122,-0.207486,0.36051902,0.5992742,0.054575566,0.039914377,-0.07260083,-0.16145019,-0.71638834,-0.18474351,0.18758236,-0.5557099,0.7813269,-0.41350538,0.02546061,0.68588597,-0.34773463,0.08768691,0.022468854,-0.05726288,-0.02347417,0.046977036,-0.36465052,0.3158713,-0.36842448,0.1496226,-0.39314857,0.7658621,0.35534006,-0.9086899,0.33332095,-0.46551418,0.40887457,-0.24895467,0.6912378,0.6420112,0.40727305,0.4046242,0.7462015,-0.52820754,0.009886578,0.0821315,-0.34898487,0.10885195,-0.24393643,-0.19668683,-0.36902738,-0.077861264,-0.112007834,-0.25078154,0.072283685,0.50076693,-0.61641663,0.24424736,0.025921097,0.6951219,-0.36573917,0.084323645,0.86733943,0.8537272,1.2119743,0.234617,1.1763481,0.27934057,-0.3930599,0.15417449,-0.35022038,-0.77808267,0.24922505,0.55687654,0.051307652,0.2478752,-0.0045726425,0.08724795,0.22726043,-0.58252996,-0.07123559,-0.38911363,0.3589391,-0.051204734,-0.22924447,-0.6051356,-0.21182013,-0.15662296,0.18730018,-0.048405863,0.23513797,-0.095165886,0.44563198,0.09189533,1.146101,-0.01823644,-0.041586194,-0.0049595153,0.3434525,0.22198334,0.056500282,-0.09101389,0.3709384,0.42003074,0.036123026,-0.73773205,0.009314452,-0.18679582,-0.580136,-0.11185621,-0.39850768,0.20582195,-0.054674324,-0.25638565,-0.2399691,-0.02471592,-0.3690736,0.5831003,-2.2949822,-0.24633233,-0.044817924,0.28770047,-0.14960508,-0.18889797,0.06434474,-0.50592667,0.5914294,0.4122831,0.6633234,-0.8784452,0.17055485,0.44591135,-0.4458466,-0.044827964,-0.8115594,-0.23765466,-0.07676884,0.26495036,0.25017983,-0.051754117,0.16637741,0.07028188,0.49093837,0.11184429,0.09311847,0.22054294,0.3628985,0.024150005,0.45426533,-0.08800514,0.4971573,-0.056553196,-0.22453682,0.27509436,-0.4074778,0.22946917,-0.24572547,0.1050879,0.30357185,-0.51919407,-0.81879175,-0.71733034,-0.57432574,1.2265636,-0.110966764,-0.54059154,0.49626356,0.019181821,0.024553189,-0.12958436,0.46160224,-0.33855775,-0.06068043,-0.83350426,-0.06085884,-0.08669377,0.1037185,0.060901176,0.109903894,-0.47986767,0.7827137,-0.13737275,0.16481768,0.37795806,0.14363666,-0.3421731,-0.56780773,-0.020770805,0.9770436,0.5562417,0.17378542,-0.1763296,-0.29757962,-0.2350642,-0.1590188,0.13006428,0.44196466,0.9639663,-0.16581598,-0.013195003,0.2707779,-0.048571806,0.061610818,-0.21000555,-0.3408359,0.07981328,-0.09942139,0.6708001,0.50854665,-0.1717565,0.45486832,-0.15824471,0.25401872,0.005884092,-0.44915038,0.57423794,1.2891377,-0.029511433,-0.19346417,0.6367288,0.48088127,-0.2886067,0.5658994,-0.65586704,-0.3581593,0.63397354,-0.12669845,-0.36582866,0.13686205,-0.32096085,0.2723896,-1.0731643,0.56930363,-0.20956981,-0.38851485,-0.7032881,-0.14955695,-3.1579587,0.06700551,-0.26190022,-0.17043492,-0.12990938,-0.13343501,0.1341849,-0.59960175,-0.64611137,0.17957088,0.034095243,0.6510474,-0.15223686,0.05484257,-0.11920406,-0.16857612,-0.26668116,0.09682142,0.04985721,0.37213796,0.04456365,-0.39462146,0.08512693,-0.28163034,-0.54073256,0.06121976,-0.47066054,-0.6290683,-0.28449494,-0.604672,-0.32145882,0.65621614,-0.26370257,0.010676826,-0.18880095,0.022238735,-0.110339925,0.23885243,0.20106827,0.18273826,0.030812472,0.0016327186,0.052024193,-0.16654944,0.2944625,0.012731456,0.18375142,0.4594845,-0.399357,0.23567936,0.6246579,0.718948,-0.10402964,0.7991084,0.63207716,-0.08649915,0.2605513,-0.46951482,-0.32461897,-0.7556798,-0.5961203,0.1831087,-0.3888447,-0.5931329,-0.116168104,-0.36162776,-0.80229664,0.46044722,-0.18877305,0.06203235,0.0018301478,0.3549935,0.4266279,-0.13233212,-0.014749868,-0.083573595,-0.20546784,-0.55800307,-0.19413963,-0.83215123,-0.30240673,-0.09343876,1.0189754,-0.14054121,-0.11911224,-0.07274071,-0.08254702,0.0024566597,-0.06717985,-0.11015654,0.14552777,0.07574097,0.10837562,-0.6964427,0.63570553,0.12054981,-0.12890954,-0.54538614,0.10863929,0.5802708,-0.65999955,0.31542715,0.5125038,-0.13520029,0.052612,-0.5053682,-0.16871464,0.057995852,-0.2064663,0.4398237,-0.030771,-0.54675853,0.635791,0.43605447,-0.33660126,-0.8251292,0.4859064,-0.11430342,-0.36568955,0.20809756,0.25128132,0.06220003,0.09136436,-0.41902986,0.36885738,-0.55979866,0.32594427,0.44618505,0.13843496,0.19957183,-0.022341486,-0.15999381,-1.0052902,0.026159981,-0.5480793,-0.061001576,0.006244523,0.015297068,-0.005296477,0.06778036,0.27590445,0.6201549,-0.27932796,0.1737101,-0.062897526,-0.29850218,0.23520799,0.54659015,0.4661226,-0.47829285,0.6480842,0.08242159,-0.08577398,-0.35928917,-0.087721124,0.5566074,0.080599435,0.17518584,0.14994009,-0.17778303,0.3461516,0.75340474,0.3128495,0.43993658,0.16915084,-0.1832727,0.32132763,0.2810559,0.39937097,0.020028105,-0.30431986,0.07768302,-0.0004307713,-0.045776468,0.6065112,0.1234845,0.33719802,-0.12436432,-0.2551021,-0.084507175,0.4053972,-0.008723186,-1.2565581,0.45467377,0.24748568,0.625967,0.74911255,0.0074140835,0.109278,0.61432785,-0.37555838,0.102008305,0.28981456,-0.068855904,-0.6862579,0.37639675,-0.79939973,0.28517672,-0.1146696,0.118357114,-0.102863565,-0.013341425,0.36851075,0.76176995,-0.14554204,-0.011351377,-0.30769315,-0.2611567,0.29261297,-0.59240735,0.030134294,-0.3068015,-0.2737405,0.5486036,0.20595762,0.20504144,-0.048595157,0.048396517,0.17330109,-0.047307365,0.46355757,0.066287324,0.14409135,-0.12754838,-0.63370407,-0.17766427,0.55238736,0.024584243,0.20656122,-0.06944228,-0.1850402,0.13330294,-0.3278115,-0.28809503,-0.1737282,-0.76498044,0.021983203,-0.22552983,-0.14955355,0.43548802,-0.15342149,0.37308493,0.2999466,0.040647216,-0.33776146,-0.14628257,0.20738505,0.63497275,0.023779264,-0.26716474,-0.24414758,0.27747348,0.28212988,-0.27127925,0.12275759,0.14243369,-0.15991269,-0.54621226,0.5460853,-0.13109799,-0.25943002,0.033573948,-0.3025918,-0.19448566,0.5990418,-0.3933417,-0.105658405,-0.039933033,-0.34950063,0.03010256,0.022035966,-0.20478086,0.31586966,0.27085945,-0.07362535,-0.20204237,-0.001351746,-0.14786772,0.6302661,-0.05264015,0.31627947,0.20230351,-0.016525416,-0.51653385,-0.23318912,-0.012691728,0.37309834,0.11489659,-0.047195487,-0.35165665,-0.38884598,-0.23566459,-0.06929792,-0.27207965,0.42303753,0.039220214,-0.44823456,0.67782634,0.27309874,1.346255,0.00056073227,-0.39831695,0.055036515,0.58908516,-0.06328044,-0.010029604,-0.16111813,0.9717658,0.5386214,-0.22486337,-0.05786229,-0.45043063,0.07594795,0.22350383,0.008552472,-0.10973159,0.069299534,-0.60499793,-0.42425582,0.36807543,0.3339807,0.026801584,0.0011262809,-0.07697029,0.056710757,0.109512724,0.4744703,-0.43983626,-0.12182515,0.42008162,-0.035663955,0.29956177,-0.08881245,-0.30627504,0.40379858,-0.4661799,0.071073376,-0.32735443,0.21221375,-0.18866086,-0.2832913,0.35601005,0.13923018,0.26993313,-0.22940397,-0.6670755,-0.17135978,0.442279,-0.037831936,0.20532705,0.5373944,-0.46002927,0.20981956,0.11885678,0.541616,1.1426439,-0.17849667,0.07381336,0.30185315,-0.42215395,-0.5630511,0.5812513,-0.2349269,-0.08902122,-0.16765802,-0.22008531,-0.75338393,0.11614585,0.25295907,-0.077020586,0.21019188,-0.5923797,-0.36828664,0.31643203,-0.3684766,-0.19210364,-0.36390617,0.30577537,0.75760883,-0.5563052,-0.37002033,0.13803658,0.06588309,-0.44969982,-0.5158602,0.021081243,-0.22359623,0.47174576,0.12917721,-0.36962134,0.0464632,0.20129633,-0.32670003,0.20732056,0.18120255,-0.31371,0.18449762,-0.25653985,0.12019903,0.80872077,-0.31957576,0.13023528,-0.6413918,-0.553357,-1.068574,-0.15295954,0.9667389,0.153649,-0.01044264,-0.7748019,-0.026529504,-0.002765451,-0.05117031,0.0033882984,-0.33212522,0.5075608,0.20707546,0.31240305,-0.040369947,-0.55796546,0.055511385,0.010815082,-0.040092174,-0.51864547,0.4802167,0.10610471,0.7101803,0.14961866,0.11431418,0.13137303,-0.53040326,-0.065282516,0.076980665,-0.26327327,-0.45804876,0.045973103 -506,0.52170515,-0.13285601,-0.5648892,-0.12425259,-0.24816622,0.037382558,-0.14109461,0.43734244,0.0542057,-0.5352376,-0.058186024,-0.21258216,-0.15729606,0.48484132,-0.33443993,-0.81617844,-0.13163379,0.2109634,-0.5657329,0.5374635,-0.30666816,0.31918347,0.06354454,0.3533397,0.1600517,0.2223414,0.28255063,-0.13557482,-0.21545278,-0.06993626,-0.034247786,0.13454974,-0.5693052,0.026162714,-0.23486373,-0.49694413,-0.075295456,-0.35761708,-0.25418985,-0.8901343,0.51437813,-0.86185604,0.43964344,-0.19588917,-0.30327648,0.0877228,0.25832975,0.43977576,-0.13426517,-0.033913888,0.20349678,-0.074039474,-0.033196386,-0.064454995,-0.22702983,-0.34089875,-0.56497645,0.27347955,-0.5228778,-0.11784705,-0.22888991,0.2821878,-0.38343543,0.057421215,-0.11248047,0.49131274,-0.3759163,-0.2606138,0.46452516,-0.146323,0.47110355,-0.620228,0.0049508065,-0.14134042,0.12309774,-0.11867687,-0.036384955,0.28558087,0.30832276,0.6035104,0.1370127,-0.29373193,-0.32936832,0.13258314,0.1714812,0.37656796,-0.19734661,-0.5645822,-0.180033,0.08635003,0.23639476,0.1452907,0.1527401,-0.3993376,0.0126517825,0.12447407,-0.2907689,0.4386357,0.45779428,-0.3171821,-0.19106704,0.34603375,0.63286823,0.27255058,-0.14185914,0.09589616,-0.015310781,-0.48528963,-0.17863072,0.17379622,-0.17886856,0.46559548,-0.14229871,0.2369272,0.6711033,-0.19193932,0.0518886,0.06859626,-0.0705412,-0.17404231,-0.24011138,-0.21499565,0.21871267,-0.4885295,0.052627653,-0.3176297,0.84324795,0.12312962,-0.7945703,0.41367602,-0.5622601,0.32565582,-0.15994556,0.5050875,0.72826725,0.36465997,0.16818494,0.96606964,-0.534282,0.045043923,-0.118827716,-0.44135028,0.13423464,-0.21364763,-0.05818242,-0.3847381,0.018107593,-0.18687926,-0.1478502,-0.07158527,0.39841804,-0.6770703,-0.043488726,-0.16594325,0.9085908,-0.3308688,-0.018572327,0.7074506,0.97353613,1.0701294,0.03406394,1.4197917,0.23451778,-0.23328452,0.2965413,-0.2552301,-0.7525039,0.42636275,0.33426043,-0.2690872,0.31526908,-0.03431625,-0.062330436,0.5239173,-0.41972452,0.090489835,-0.38385522,0.22158533,0.056151822,-0.15234184,-0.37917265,-0.13916324,0.05341899,-0.023568776,0.1921309,0.14266303,-0.12678203,0.388952,0.00559932,1.6365064,-0.17101943,0.06044312,0.097689286,0.42689914,0.11442323,-0.039486952,-0.095828,-0.019767068,0.41079897,0.001114238,-0.44418657,0.097466595,-0.23182407,-0.6040264,-0.22754075,-0.21054621,-0.0753946,0.075459994,-0.4595502,-0.2165697,-0.09075263,-0.24298725,0.38571694,-2.3236651,-0.20252606,-0.09099139,0.20574096,-0.3481487,-0.39192063,-0.0924723,-0.6081388,0.5777367,0.34804156,0.46722442,-0.6694723,0.41004488,0.39272264,-0.4728449,-0.06724772,-0.67454904,-0.111632586,-0.008547043,0.35582986,0.12836343,-0.3454675,-0.0377196,0.18419012,0.53984475,0.05004242,0.01719879,0.19426209,0.25367236,0.091853015,0.46536142,0.08595514,0.5894506,-0.25093645,-0.21205004,0.49640316,-0.24768785,0.1064221,-0.05801931,0.049633056,0.3482671,-0.508214,-1.0516051,-0.82704556,-0.26508993,1.1915879,-0.009831635,-0.49165827,0.22227083,-0.0385456,-0.11404574,0.09500462,0.38277236,-0.06537528,-0.05325242,-0.9452573,0.07520776,-0.106931746,0.09342767,0.1728538,-0.12353043,-0.4376125,0.6926387,-0.12361396,0.41172677,0.51664996,0.18955638,-0.22020684,-0.6706181,0.043883666,1.0660995,0.33150384,0.09801978,-0.17889665,-0.20684011,-0.51820195,-0.1655609,0.09904662,0.45974624,0.89670956,0.1609546,-0.026467334,0.2435235,-0.09820351,0.039387673,-0.10861181,-0.48735076,-0.19250038,-0.09308903,0.5900126,0.58068264,-0.09075725,0.5297491,-0.27275807,0.4307341,-0.086193435,-0.429067,0.8282827,1.1774987,-0.32325816,-0.24600407,0.62263525,0.32009298,-0.24447784,0.5692564,-0.56806195,-0.40786362,0.49114165,-0.16535614,-0.51479274,0.23848006,-0.37757042,0.20233282,-1.0886284,0.31112358,-0.45631427,-0.21362221,-0.6959161,-0.23856488,-3.1855962,0.24658494,-0.21167973,-0.111564,-0.15416369,-0.09954588,0.3091655,-0.5621631,-0.72451586,0.052167475,0.14068536,0.6403351,0.054293778,0.20916651,-0.1676727,-0.13155958,-0.25302055,0.1237998,0.30230987,0.30052283,0.05777806,-0.5666816,-0.17852291,-0.30348054,-0.36262006,0.0037162472,-0.64051867,-0.5431485,-0.38454276,-0.5833739,-0.3903873,0.6634249,-0.44217312,-0.022078188,-0.21313836,-0.0230292,-0.029380482,0.44214204,-0.05538659,0.10274442,0.14373952,-0.06567611,0.043159015,-0.27161664,0.16411889,0.12020031,0.36538833,0.3422634,-0.24251725,0.35019505,0.63855064,0.80766815,-0.11073792,0.74883974,0.66341645,-0.051124338,0.25712037,-0.33989906,-0.29406285,-0.6932161,-0.28929237,-0.1279478,-0.37189525,-0.4226249,0.004201457,-0.48777753,-0.8140116,0.58164006,-0.039826594,0.14095278,-0.0041970722,0.20262651,0.47147048,-0.11047186,0.0028124396,-0.15521559,-0.22038577,-0.5346464,-0.27683535,-0.7022545,-0.71008044,0.062422164,1.1230365,-0.15201548,-0.10951766,0.107605174,-0.12390341,0.16171122,-0.0101823285,-0.08306558,0.16553299,0.41407317,-0.12028677,-0.7341524,0.31324053,0.06761247,0.011471946,-0.5303277,0.13583595,0.63058203,-0.597388,0.41172817,0.37276697,0.10925056,0.07895529,-0.4676444,-0.06836802,0.062859684,-0.23461658,0.6184139,0.18187052,-0.5229805,0.5841044,0.45957977,-0.1936485,-0.92866147,0.40600216,0.08828328,-0.17667682,-0.1886813,0.24882373,-0.024088949,-0.029673757,-0.30820185,0.08622379,-0.48131114,0.28124565,0.35825938,-0.061743803,0.36745334,-0.26729003,-0.25340256,-0.6905452,0.16214883,-0.5503806,-0.17395964,0.18328269,0.041106045,0.019604731,0.082232684,0.16238788,0.4805307,-0.22468038,0.10285151,-0.017888643,-0.21148491,0.3380402,0.4454913,0.3171479,-0.607056,0.5354024,-0.119355515,-0.15936193,-0.103248544,-0.026202422,0.64383394,0.21649964,0.22639458,0.12139503,-0.08568726,0.22429335,0.66953313,0.05957594,0.42400986,-0.061743736,-0.2647403,0.12464081,0.173993,0.24924242,0.14972349,-0.5251728,-0.12273117,0.106848955,0.104491696,0.51261073,0.12375878,0.37403643,-0.0117866425,-0.42539254,0.0010055285,0.05595319,-0.23353758,-1.3679272,0.5101995,0.2024255,0.78379,0.60941887,-0.07901084,0.054283045,0.5749655,-0.12608641,0.28336906,0.33682722,-0.092303,-0.56350106,0.57602584,-0.71581674,0.2882563,-0.10420859,0.1410575,-0.009975071,0.09160344,0.33575362,0.7623726,-0.11770995,0.18565272,-0.1747688,-0.18007614,0.10436301,-0.25565535,0.103374474,-0.38512015,-0.25739288,0.61867255,0.4302876,0.33319375,-0.24443501,-0.0063125696,0.14319667,-0.11743276,0.15431398,-0.057813384,0.0772323,0.018249536,-0.62588215,-0.37793243,0.47649837,0.16340238,0.039940946,0.008920386,-0.38022688,0.18037164,-0.14496167,0.0062564462,-0.13012658,-0.54625314,-0.12133275,-0.34112805,-0.24767676,0.2801756,-0.10709107,0.1961945,0.15489593,0.183792,-0.45645413,0.23486793,-0.060793154,0.74731946,-0.17967851,-0.1426555,-0.38451743,0.19241704,0.24019426,-0.3330243,-0.20241873,-0.114957705,0.08429216,-0.53088975,0.5311335,-0.121205434,-0.36668733,0.33024198,-0.1459177,-0.20862797,0.5351223,-0.32723758,-0.14194568,0.16726997,-0.13526385,-0.13295425,-0.21063852,-0.074215375,0.12364962,0.15387417,-0.056263976,-0.20883426,-0.18133911,-0.09906908,0.55449986,-0.034634087,0.363932,0.5250805,0.12499833,-0.56252116,-0.10490906,0.23900151,0.49729097,-0.0006201826,-0.07706905,-0.3766813,-0.38094088,-0.3018663,0.16469367,-0.18712887,0.1982541,0.10457156,-0.3922218,0.8249459,0.28560928,1.3343024,0.044970617,-0.28924483,0.08792336,0.45943016,0.10189337,-0.022838023,-0.49097782,0.8034469,0.5996519,-0.20851144,-0.08147007,-0.4475213,-0.14176244,0.18330702,-0.29057068,0.081415996,-0.12081801,-0.6354636,-0.5538856,0.33521032,0.3670527,0.098927006,-0.12212902,0.005339101,0.15741602,0.03378948,0.41776088,-0.4511478,-0.14278826,0.2459788,0.2852576,-0.02686239,0.06805973,-0.59983814,0.41500285,-0.5535377,-0.029408373,-0.21762724,0.19271731,-0.0075684637,-0.27893198,0.22631392,-0.1728106,0.32148758,-0.2657426,-0.4695487,-0.20752159,0.4932028,-0.02349351,0.1292718,0.81911826,-0.30254567,0.07849406,-0.0102658495,0.6507214,1.3171916,-0.2409753,0.119210266,0.3343367,-0.12051056,-0.5227331,0.250262,-0.27417266,0.049789585,-0.15738943,-0.35175762,-0.58839464,0.28609577,0.14777304,0.049011778,-0.057101276,-0.6690514,-0.30355403,0.39460266,-0.30946317,-0.27752906,-0.34359163,0.15097596,0.5926835,-0.33754903,-0.34327602,0.13805723,0.3900475,-0.11368032,-0.5729352,-0.14913228,-0.2871392,0.35934526,0.40133113,-0.4258793,0.025387136,0.1778894,-0.48499024,0.28737068,0.18711114,-0.33225876,0.042448543,-0.25904277,0.008726031,1.0055988,-0.13098311,0.11874038,-0.4955399,-0.4313391,-1.0515406,-0.3454129,0.4232963,0.21246657,-0.016991425,-0.67989564,-0.05344806,-0.28802478,0.039112017,0.11819378,-0.35237795,0.32598948,0.15395218,0.6715691,-0.22191483,-0.6123781,0.04854154,0.12338349,0.001405701,-0.5008192,0.61426705,0.0693547,0.8141793,0.11205638,0.12138124,0.3170588,-0.5937315,-0.021878751,-0.25134543,-0.2619084,-0.74588823,0.14190456 -507,0.61291754,-0.1743935,-0.60405684,-0.16173771,-0.42314413,0.13305414,-0.22976385,0.40418768,-0.030602379,-0.4939389,-0.3733731,0.090130396,-0.11051422,0.17416954,-0.3408303,-0.48287064,0.13033165,0.33607802,-0.45178056,0.5255784,-0.35519344,0.37692523,0.03499505,0.19721402,0.11064913,0.1742979,0.17977658,0.007509994,-0.103576675,-0.3452931,-0.18611957,0.39361635,-0.6203288,0.32166526,-0.2767451,-0.518355,0.024427755,-0.25764894,-0.30656263,-0.7849123,0.08394306,-0.938542,0.5287951,-0.09660999,-0.39690208,0.033834048,0.13690002,0.17648466,-0.19665393,0.003177366,0.16604432,-0.116865456,-0.39634758,-0.24537063,-0.16206674,-0.51028115,-0.6172957,-0.0029911995,-0.5954603,0.024780473,-0.25699422,0.2090652,-0.21578155,0.026139243,-0.102135226,0.5693269,-0.5088487,0.030257208,-0.013153894,-0.0046165967,0.17197539,-0.71704453,-0.13214879,-0.2160323,0.32305288,-0.27164337,-0.2877815,0.087895036,0.24773005,0.50190884,-0.002235653,-0.20459954,-0.34544283,-0.16610506,0.000725082,0.42664808,-0.20168747,-0.5840207,-0.13809007,-0.12611307,0.43380496,0.1710478,0.06892044,-0.1467139,-0.024224052,-0.017259547,-0.32003406,0.45064566,0.54901445,-0.41754952,-0.08360052,0.30628076,0.7711447,0.018888298,-0.28452757,0.023023708,-0.0869477,-0.5895379,-0.21397673,0.07155541,-0.1898315,0.5916691,-0.22695234,0.25850192,0.5804053,-0.22302392,0.010593414,0.5069662,0.058690164,0.015032336,-0.04452598,-0.48263428,0.28948444,-0.57156426,-0.00076808676,-0.20599614,0.69914085,0.1488985,-0.9221164,0.24986432,-0.41857734,-0.08581338,-0.15868106,0.5728979,0.5347301,0.6258749,0.13169873,0.6634921,-0.3736362,0.047566377,0.043911483,-0.20080069,-0.08228583,-0.09490853,-0.09696041,-0.3486115,0.026317282,-0.18103907,-0.12067306,-0.079612836,0.6540557,-0.6773161,-0.29038236,0.00820102,0.6804039,-0.42961338,-0.2621313,0.8438315,0.9021054,0.97921723,0.086110584,1.273344,0.19023266,-0.09653612,-0.09486592,-0.19760929,-0.5443093,0.32495573,0.3638718,-0.15562315,0.2944917,0.04661516,0.11925124,0.2800315,-0.31333214,-0.06858079,-0.23318622,0.2758088,0.05741263,-0.004338552,-0.40185097,-0.2898263,0.12015995,0.14941335,0.16545057,0.34553698,-0.2168113,0.4102168,0.35940948,1.5186504,-0.07247265,-0.077145375,0.10317602,0.38048798,0.24350344,-0.066664524,-0.06673306,0.14040144,0.1860437,0.025306532,-0.54457676,0.070529915,-0.22197822,-0.5206334,-0.34245273,-0.332241,-0.028218577,-0.2632986,-0.42667338,-0.19500338,-0.0846089,-0.33850846,0.5538781,-2.2106266,-0.16367877,-0.06303832,0.4567612,-0.1639627,-0.46036482,-0.20368187,-0.5458818,0.3863244,0.1732616,0.5943969,-0.6705805,0.6348642,0.64195216,-0.5680695,-0.13671717,-0.75192356,-0.1540668,-0.045192074,0.2761069,0.19464506,-0.123363614,0.080301404,-0.020002646,0.5352621,-0.07008683,0.13465759,0.31180364,0.38871378,0.11288678,0.56564057,0.1656997,0.5302177,-0.40992185,-0.2537571,0.55024976,-0.40624303,0.20336355,-0.2479262,0.1116993,0.46580023,-0.5744385,-1.044994,-0.82292575,-0.27864328,1.1741949,-0.22493543,-0.5589569,0.1279597,-0.25283542,-0.23788159,0.013345114,0.3425682,-0.2467433,0.039394345,-0.81762666,-0.100494385,-0.011171971,0.3303647,0.027634498,0.05647099,-0.5402733,0.56691784,-0.106135726,0.49769384,0.30213282,0.27900973,-0.3786797,-0.4343756,-0.054908894,1.160743,0.486747,0.08627667,-0.305526,-0.28272176,-0.32789835,0.14644723,-0.013553883,0.6863987,0.63251984,0.0017583178,0.057867937,0.25206277,4.715153e-05,0.08520079,-0.28470963,-0.36319605,-0.22200845,0.21472253,0.57942927,0.5993857,-0.12700854,0.58547074,-0.09880565,0.44245413,-0.07582772,-0.57926136,0.37596402,1.1497585,-0.21912594,-0.3827253,0.67404366,0.44620946,-0.36410537,0.47275427,-0.84757966,-0.47759086,0.35597435,-0.08072996,-0.34518725,0.2532936,-0.33242288,0.30769423,-0.8758071,0.48911864,-0.4589456,-0.5748619,-0.56303495,-0.2132227,-2.8146808,0.30550224,-0.08105976,0.02779861,-0.0025793484,-0.48459557,0.13829839,-0.64873666,-0.6723239,0.114758015,0.07173819,0.6520204,0.030732628,0.09970135,-0.15369861,-0.467851,-0.0613064,0.39537653,0.2336824,0.3081348,-0.15357237,-0.5580712,-0.024628673,-0.19657342,-0.36649057,-0.117419206,-0.6251931,-0.54572785,-0.04940513,-0.62394947,-0.24818094,0.63048416,-0.37036243,0.02979814,-0.14898536,0.029472578,-0.09482376,0.3164346,0.019544752,0.051955145,0.04667334,-0.117092736,0.040031973,-0.24494873,0.25141364,0.014512032,0.2235163,0.4030783,-0.18157971,0.27480826,0.63967794,0.67050844,0.0070349746,0.97552997,0.40479738,-0.16330361,0.3183809,-0.1256587,-0.57070667,-0.75885004,-0.21215561,-0.04409207,-0.43700388,-0.2859377,0.11777533,-0.43195254,-0.87708706,0.7547706,-0.07837959,-0.092785425,-0.043085046,0.52179897,0.49738804,-0.15807867,-0.14426324,-0.17407598,-0.29206735,-0.5402227,-0.48489562,-0.64499325,-0.34467492,-0.15670545,1.3866061,-0.2685298,0.047249325,0.03626975,0.12775984,0.09643229,0.34840775,0.013143202,0.19670527,0.4676502,-0.14841302,-0.62913185,0.3854765,-0.114134505,-0.18173984,-0.30648157,0.13139711,0.7278232,-0.7690965,0.37414792,0.5263116,-0.025305884,-0.1052118,-0.7448648,-0.17947422,0.11804652,-0.17801574,0.49437883,0.3708706,-0.75158066,0.5030981,0.24964583,-0.1790199,-0.68911177,0.66398114,-0.06364953,-0.21535107,-0.12999548,0.49429178,0.10783128,-0.036014337,-0.36312225,0.056695104,-0.2813106,0.20534785,0.11974406,-0.06666069,0.24530001,-0.39439037,-0.19629121,-0.96668285,0.022833666,-0.5089227,-0.29511333,0.18957336,-0.124597296,-0.008068391,0.4052,0.25973675,0.4872571,-0.47717842,-0.022538813,-0.16663341,-0.3417999,0.3749954,0.42389226,0.6250715,-0.4330447,0.46622214,0.04444066,-0.06100104,-0.23928706,0.03006805,0.4953284,-0.048820037,0.41666082,0.15004608,-0.1023289,0.24131565,0.8904285,0.28687721,0.40201634,0.068516575,-0.21680303,0.033601053,-0.034933332,0.37385172,-0.11702054,-0.5667213,0.12855636,-0.11728766,-0.0075449455,0.5240912,0.08043708,0.34811,-0.20810196,-0.23131824,-0.032257415,0.27899426,0.05800849,-1.3133522,0.42814094,0.19144467,0.8426914,0.56162643,0.12847196,0.04759874,0.6171497,-0.38772205,0.19126053,0.33991084,0.169364,-0.33197388,0.42029324,-0.59347343,0.52014583,0.00566414,0.06721917,-0.095189296,-0.32044214,0.3486214,1.0984744,-0.024728434,0.124039635,0.013223103,-0.25848714,0.31832942,-0.47482994,-0.073808685,-0.50862503,-0.11967309,0.9427367,0.44967103,0.4305849,-0.03150616,-0.05962146,0.122101665,-0.10715289,0.36575896,0.00050196477,0.26454666,-0.1336417,-0.43448713,-0.06592412,0.5237514,0.15613307,0.08716404,0.14683056,-0.2796556,0.37802213,0.009770905,0.13327734,-0.10000765,-0.6710826,-0.056632962,-0.39309806,-0.30826113,0.49525532,-0.19964156,0.099357486,0.28787392,0.040040605,-0.41682407,0.12847802,0.26544163,0.46975836,0.23276523,-0.0322666,-0.21355602,0.2025163,0.26340154,-0.2979818,-0.045622732,-0.29763627,0.34565213,-0.86204445,0.33246794,-0.23620622,-0.49146292,0.16166271,-0.0037549522,-0.021800442,0.5702455,-0.022532126,-0.2836308,0.03708234,0.059124894,-0.14245515,-0.1297233,-0.2571903,0.208967,0.19360168,-0.13655356,-0.21870331,-0.11913336,-0.07878531,0.47261164,-0.047800038,0.4248342,0.35337016,0.17897627,-0.50535077,0.02511606,0.09262203,0.6228438,-0.2531528,-0.018838236,-0.27158114,-0.3876405,-0.2563881,0.2259904,-0.078105055,0.25026882,0.20934023,-0.19859298,0.6626855,-0.15299633,1.1214526,0.018013034,-0.31272227,-0.0001765745,0.54442227,-0.04562504,-0.07327569,-0.30081782,1.1418607,0.49382016,-0.15650065,-0.17507641,-0.46027848,-0.08335883,0.005897624,-0.15984178,-0.26795965,-0.09737213,-0.58734846,-0.21525216,0.16399722,0.35212097,0.053332526,-0.041445564,0.09786839,0.38727397,0.14970635,0.2418495,-0.6298361,-0.04728503,0.4479727,0.30458122,-0.17710291,0.05192085,-0.48240545,0.30799457,-0.49904945,-0.013042869,-0.40439504,0.19384088,-0.27237418,-0.31183353,0.213101,0.26095963,0.31768373,-0.18824475,-0.38642427,-0.3096199,0.4331443,0.10172911,0.07648832,0.5157792,-0.26507398,0.14030328,-0.07440597,0.50048107,0.93351567,-0.31754836,-0.04695469,0.38710532,-0.2568533,-0.49647596,0.27009884,-0.6073813,0.07589245,0.048839383,-0.19149558,-0.6261514,0.3103662,0.3251221,0.026031375,0.1432866,-0.652362,0.019387024,0.23764549,-0.31652758,-0.05868073,-0.266287,0.13235702,0.74091846,-0.42323425,-0.22149386,-0.0055227196,0.32854956,-0.21251014,-0.51715153,-0.022621645,-0.3400996,0.36440706,0.1614826,-0.387881,-0.056432962,0.019768408,-0.4077356,0.18736006,0.5180903,-0.31055602,0.12900944,-0.39164025,0.2169429,0.7833253,-0.09360523,0.26324707,-0.16244231,-0.45642784,-0.7905174,-0.098566905,0.2890366,0.29012677,-0.06633099,-0.7344963,-0.010158663,-0.26839757,-0.2543927,-0.021457851,-0.30755973,0.5195106,0.17591882,0.39036307,0.033405118,-0.9576683,0.18699421,0.08609979,-0.18342482,-0.40166825,0.5650664,-0.16533026,0.89307976,0.13033597,0.027356679,0.21848191,-0.65858024,-0.053048976,-0.23565276,0.078851044,-0.7189782,-0.07035757 -508,0.20839795,-0.23320669,-0.27750412,-0.04980665,-0.18748668,0.055032555,-0.06227998,0.29266256,0.1639896,-0.21177272,-0.22720115,-0.13077432,0.122595504,0.51428556,-0.1438552,-0.6003743,-0.1773817,0.053184763,-0.7050668,0.39590275,-0.6086069,0.22855447,0.052104782,0.38749468,0.089229725,0.3958674,0.33624285,-0.33034974,-0.038188815,-0.00874265,-0.23820741,0.06611471,-0.46945572,0.15981182,-0.073936544,-0.2302358,0.18852122,-0.5036356,-0.3205728,-0.6207835,0.2419629,-0.79980177,0.41477972,-0.08368016,0.022315998,0.1517894,0.22836414,0.30916864,-0.54370755,0.0060100695,0.1673507,-0.13305551,-0.06994187,-0.2710195,0.10055666,-0.37678066,-0.3653343,-0.013991123,-0.5194181,-0.3997281,-0.1611868,0.08979817,-0.35782018,0.07012733,-0.0904293,0.2678831,-0.37236091,-0.050727885,0.2674165,-0.25884256,-0.010002887,-0.46436444,0.036662403,0.046198267,0.48913842,0.038891055,-0.057374246,0.41782808,0.24387763,0.36066395,0.1364927,-0.18038104,-0.16360071,-0.2470551,0.11827299,0.4955911,-0.07534606,-0.5710203,-0.03743149,0.26970273,0.03373424,0.32503065,-0.031631026,-0.20782048,0.010159182,-0.07733572,-0.2173833,0.36621937,0.5810435,-0.31397438,-0.30379498,0.39764553,0.5666706,0.2321152,-0.11119384,-0.11216596,0.02879507,-0.4752715,-0.10426514,0.044573452,-0.14516118,0.5159735,-0.04959281,0.25480476,0.8805731,-0.14999028,0.06975384,-0.029953847,-0.070353515,-0.2051437,-0.1547232,-0.13674076,0.06360181,-0.41977125,0.03948715,-0.31875798,0.7702372,0.23827794,-0.66416717,0.45041835,-0.5116927,0.16042216,-0.0275418,0.58020717,0.46578053,0.39802685,0.3841069,0.6971602,-0.44998223,0.2127112,-0.14229806,-0.5316585,0.010969766,-0.20471616,0.06775243,-0.42824575,0.16859215,-0.122657865,0.10875727,0.053225335,0.15869766,-0.48015058,-0.042655006,0.17679039,0.89434296,-0.35091242,0.049605347,0.7387804,1.052665,0.95692027,-0.06810602,1.096569,0.35503095,-0.2759077,0.18909487,-0.35015264,-0.7133649,0.20246018,0.4262921,0.10074175,0.18186472,-0.05648321,-0.047233775,0.2458559,-0.4369094,0.03354633,-0.088084176,0.40625817,0.23921426,0.0069398223,-0.44216108,-0.16312605,0.011547157,-0.10910844,0.15703987,0.26126608,-0.26586926,0.38057986,-0.029813834,1.5497915,0.07182158,0.19633128,0.08472312,0.6411896,0.18148498,0.060799997,-0.2095695,0.44616386,0.45691592,-0.08926323,-0.61614645,0.21047634,-0.382286,-0.4640936,-0.10250981,-0.40365422,-0.11133407,0.05314288,-0.30793524,-0.10434841,-0.04011968,-0.16628547,0.36191216,-3.0749674,-0.2583524,-0.04691015,0.2740029,-0.4123543,-0.041827958,-0.035196066,-0.56119734,0.24517842,0.23645741,0.47178724,-0.6819917,0.5082113,0.35597423,-0.41326487,-0.2399642,-0.57066065,-0.091552615,-0.022821682,0.5277411,-0.02290957,-0.08598062,-0.23876637,0.088137306,0.6431096,0.008476222,0.12092975,0.36383066,0.44280016,0.26654023,0.5831228,-0.01291406,0.5544596,-0.4441959,0.022135073,0.26708892,-0.21151753,0.29444394,-0.19012037,0.07324306,0.4004845,-0.4730144,-0.7996073,-0.53986275,-0.22314148,1.0690863,-0.45345482,-0.31310543,0.17817098,-0.09113694,0.055129964,-0.074682444,0.52140063,-0.18120816,0.00072346925,-0.64170057,0.19855699,-0.037251554,0.16203955,0.02145792,0.07729039,-0.26647803,0.612851,-0.06269524,0.6137769,0.25697377,0.26548257,-0.14306569,-0.12861617,0.105325244,0.7395187,0.18780541,0.015139715,0.039813768,-0.23960909,-0.007055072,-0.2518522,-0.053980887,0.5303297,0.7304611,0.06820318,0.09529962,0.22569595,-0.089351445,-0.02165415,-0.15829936,-0.124389075,-0.01912738,0.0051570544,0.41668993,0.70881444,-0.2420039,0.47696218,-0.22367702,0.25765598,-0.01352064,-0.47084185,0.56833816,0.29707372,-0.20589164,0.034228943,0.3490315,0.53448826,-0.36384937,0.35548952,-0.55056036,-0.24288599,0.80232847,-0.24763156,-0.44734085,0.20435794,-0.12481297,0.11353137,-0.7913501,0.27229118,-0.18913594,-0.40545088,-0.5004558,-0.06992841,-3.4078085,0.049801525,-0.14979678,-0.16734466,-0.23197703,0.023737805,0.13882573,-0.63004786,-0.4997985,0.14695533,0.20479712,0.46078414,0.029173354,0.19426364,-0.3316216,-0.07571193,-0.2821493,0.07650148,-0.020092558,0.16488044,0.0037822365,-0.4331816,-0.065908246,-0.070711754,-0.46980843,0.3106557,-0.48416424,-0.33258632,-0.07550541,-0.45034778,-0.3005513,0.6201936,-0.34847316,-0.02811767,-0.19596092,0.013378571,-0.23241732,0.12555437,0.2390733,0.12045538,0.04843549,-0.110753424,0.17247722,-0.39617643,0.5144502,-0.057102904,0.3602637,0.17197797,0.17037304,-0.028372265,0.3579535,0.6469074,0.0012759328,0.85182387,0.28165582,-0.11215033,0.28517768,-0.42840183,-0.29204655,-0.39734328,-0.38868216,0.07822945,-0.33372396,-0.52150315,-0.0737362,-0.33275935,-0.6164905,0.4778062,0.056864142,0.29943052,-0.09426728,0.24004501,0.48201567,-0.18861346,0.05746245,0.034541164,-0.035441402,-0.6338628,-0.25615594,-0.68101275,-0.48094234,0.0912857,0.80958164,-0.2509604,-0.13571982,-0.2574697,-0.30659547,0.011363983,-0.09425783,0.057255816,0.4353219,0.38961878,-0.11752563,-0.75688773,0.6063356,-0.1646851,-0.14404087,-0.50294393,-0.03364609,0.5429381,-0.7923281,0.4646396,0.26130265,0.06894981,0.085501246,-0.42884588,-0.21538846,0.0148402015,-0.04262594,0.19443093,0.003464663,-0.7475923,0.50215834,0.3155751,-0.50843626,-0.6796672,0.14713958,-0.024417615,-0.389388,0.042213973,0.24534872,0.29833105,-0.086186394,-0.23765449,0.08675163,-0.5208524,0.36465406,0.120590284,-0.035075285,0.39880288,-0.15015851,-0.3509518,-0.61410147,-0.13649149,-0.37729114,-0.121116035,0.34097666,0.11279712,0.042892918,0.07226248,-0.046709027,0.37337816,-0.32652834,0.050248936,0.06262281,-0.25056642,0.1961977,0.35190842,0.32426804,-0.47776878,0.54540455,0.105317675,-0.11327278,0.20266373,-0.015762066,0.3106225,0.1296676,0.29394072,-0.11297576,-0.22048712,0.47677276,0.7471686,0.14858226,0.29153264,0.02340018,-0.17456481,0.5044922,0.04349832,-0.04062321,0.20919634,-0.39088258,0.060083885,0.021342056,0.110790364,0.4506606,0.34082305,0.37306765,0.12187294,-0.21260755,-0.0077311792,0.25242084,-0.10807726,-0.99494344,0.3898706,0.18738794,0.85920936,0.34764448,0.10305931,-0.04751265,0.6591494,-0.20833853,0.07726297,0.32604933,-0.027611073,-0.53769857,0.76106566,-0.54628557,0.5096291,-0.14135045,-0.09010019,0.08005655,0.14824532,0.22023821,0.79537845,-0.21662147,0.010202727,0.025147093,-0.14722899,-0.036445554,-0.3421126,-0.04020146,-0.4163221,-0.30746603,0.41317406,0.3452093,0.1940438,-0.13853852,-0.07013928,-0.04059168,-0.1731722,0.17404468,-0.047544356,0.02659425,0.07827243,-0.66422355,-0.3382024,0.54838365,-0.03807079,0.22371654,-0.21210937,-0.23217858,0.17735665,-0.32955158,-0.14616974,-0.0005591651,-0.49233797,0.1673562,-0.1367045,-0.46099937,0.29351494,-0.18337385,0.27548367,0.1403826,-0.04404513,-0.23636302,0.23062481,0.07609712,0.8932096,-0.107576095,-0.3001852,-0.48724887,-0.07873292,0.21253572,-0.1446023,0.10306371,-0.38947037,-0.050744805,-0.44966692,0.6175711,-0.1723141,-0.2696219,0.14666374,-0.35738984,-0.018506024,0.6130837,-0.08078194,-0.08468275,-0.18496396,-0.15866007,-0.4553086,-0.051194,-0.3607294,0.17377545,0.30147108,0.06749033,0.03134951,-0.2381488,-0.23098345,0.64429206,0.052484546,0.48885968,0.16680704,0.032432318,-0.07077717,-0.082979426,0.07639112,0.38752773,0.21132298,-0.03225182,-0.40512225,-0.32806763,-0.30944923,0.21456775,-0.20168668,0.18709926,0.020672692,-0.31849864,0.7369372,-0.010077574,1.1888893,0.1415722,-0.24943513,0.13204564,0.5863121,-0.06802692,0.06485756,-0.4306335,0.81594646,0.5474809,0.021629453,-0.0027074656,-0.37101367,-0.089971304,0.37857386,-0.34131902,-0.18305579,-0.02299652,-0.30568233,-0.43412405,0.19655643,0.2177692,0.24572173,0.032668784,-0.2167448,-0.065462664,0.16652988,0.49474207,-0.5181627,-0.2517432,0.26983958,0.1365966,-0.03679619,0.09916702,-0.39485553,0.5084354,-0.48146492,0.18993454,-0.4001261,0.06785533,-0.14014135,-0.2210931,0.13707668,0.0020803988,0.41797325,-0.32763547,-0.53455395,-0.0196409,0.362101,0.07432036,0.20666704,0.56917155,-0.1668588,-0.0457383,0.11482366,0.5756724,0.93623084,-0.4000294,0.11484321,0.37344503,-0.37916392,-0.55875415,0.4432464,-0.2523752,-0.08712778,-0.07450824,-0.24464537,-0.4987177,0.3309341,0.23246117,0.015201994,-0.05468239,-0.45960584,-0.24078865,0.48327824,-0.2995408,-0.32160708,-0.2878685,0.28138766,0.75479543,-0.35262054,-0.16076487,0.09951404,0.26154423,-0.24667886,-0.51935166,-0.14093632,-0.30760816,0.33769673,0.16104965,-0.106294125,-0.14407301,0.19411786,-0.4365902,0.13406903,0.08673752,-0.37980232,0.09441535,-0.078465395,-0.032174803,0.8800115,-0.27224478,0.03377303,-0.87254006,-0.31522706,-0.8543139,-0.44105855,0.49436945,0.08839854,-0.028785255,-0.38387024,-0.046300914,0.10581711,-0.1387763,0.0038062194,-0.5287147,0.31793335,0.020916771,0.49384117,-0.21031275,-0.74347967,0.07708573,0.035511136,-0.1761414,-0.564087,0.68760693,0.044524226,0.7202451,-0.05151031,-0.09010072,0.107418604,-0.34851846,-0.032090366,-0.45176107,-0.17366965,-0.7371662,0.22641271 -509,0.34157935,-0.023922686,-0.606838,-0.06673883,-0.076514125,0.24658781,-0.09421153,0.55009604,0.13826074,-0.4114552,-0.2023406,-0.05154179,0.06869525,0.16960065,-0.16511229,-0.40778053,-0.08105531,0.14820513,-0.49626762,0.50523967,-0.31743354,0.15948498,-0.1411955,0.37607566,0.06051261,0.27799812,-0.03243781,-0.1342978,-0.24768128,-0.013453372,-0.046368472,0.5576168,-0.31858087,-0.04153593,-0.2168766,-0.18663603,-0.0033457354,-0.38407332,-0.38675952,-0.6125736,0.27401355,-0.7777752,0.45928875,0.027890973,-0.2531763,0.3865473,0.082051456,0.13654232,-0.20181039,-0.11271596,0.114402026,-0.060320348,-0.02227594,-0.20044675,-0.23711443,-0.35444692,-0.49171883,0.07627821,-0.39557108,-0.0718357,-0.22084403,0.1259596,-0.2837754,-0.096698105,-0.11620523,0.41359806,-0.5014896,0.2064957,0.1305733,-0.059807204,0.14695969,-0.72850806,-0.15017025,-0.088214,0.2311876,-0.25626338,-0.07343424,0.21707411,0.3450745,0.47056097,-0.16001034,-0.039211754,-0.43206042,0.036354307,0.13694014,0.42253518,-0.31067625,-0.49435723,-0.005742319,0.10118528,0.14469868,0.11951689,0.11065602,-0.14254785,-0.19999766,-0.1044385,-0.15003242,0.25288478,0.5065657,-0.28659767,-0.2947607,0.42845938,0.49867266,0.2311281,-0.15777661,-0.14926551,-0.015509626,-0.4046049,-0.100613,0.07163233,-0.17748138,0.5095337,-0.06199587,0.18784921,0.5331971,-0.03454249,0.11536198,0.093470015,0.16272892,0.086436056,-0.23424923,-0.0057746675,0.046145722,-0.2248755,0.1181921,-0.082236305,0.57102776,0.08271201,-0.6587555,0.35667786,-0.47368288,0.09789752,-0.06081073,0.43766886,0.582811,0.32894617,0.15525448,0.4986275,-0.25108805,0.046744443,-0.055290103,-0.2698717,0.12110754,-0.047518287,-0.11918993,-0.5910953,0.11654732,0.023602467,-0.101889834,0.13974035,0.22135891,-0.4853893,-0.10693413,0.2622011,0.85471946,-0.2939383,-0.1965149,0.54653037,0.92094964,0.6760081,-0.03962151,1.1542281,0.11625635,-0.11581996,0.31722325,-0.47994307,-0.6787537,0.17615739,0.3177692,-0.28109342,0.26844883,0.18117365,-0.051123302,0.4253009,-0.34890622,-0.004456859,-0.24720046,0.16616261,0.17697653,0.01785085,-0.3443696,-0.2871576,-0.1560046,0.026296176,0.16008289,0.24121475,-0.22321065,0.1939906,-0.017104715,1.7335783,-0.045002766,0.10295726,0.11129656,0.36502355,0.16687551,-0.009994863,-0.007945754,0.4733106,0.16557568,0.06051163,-0.43050998,0.1779605,-0.14241487,-0.57666993,-0.12406877,-0.32881042,-0.096191764,0.09478017,-0.51903003,-0.09574711,-0.19645111,-0.33008724,0.45503128,-2.9099863,-0.08496471,-0.08675025,0.42122355,-0.21980652,-0.41660067,-0.3360968,-0.35979056,0.35964102,0.26749936,0.46349797,-0.6444826,0.36007625,0.18874864,-0.44916293,-0.10241818,-0.53386587,-0.1884939,0.035470165,0.27754843,0.021465996,0.021886382,0.16099903,0.08124321,0.34349436,-0.17788845,0.10415368,0.28439653,0.39128327,-0.008542702,0.30713493,-0.15201893,0.5395478,-0.1547949,-0.2802233,0.2803898,-0.38075966,0.38325173,-0.091581784,0.13933809,0.27442282,-0.32244253,-0.863032,-0.544452,-0.08379724,1.2983624,-0.13540016,-0.32243136,0.18617995,-0.33480442,-0.20663804,-0.1621324,0.46406096,-0.16447984,-0.14708519,-0.84204054,0.12153278,-0.1825875,0.19419253,-0.049948473,0.003869757,-0.38433385,0.6170863,-0.057538517,0.5176301,0.3528072,0.18967009,-0.09242091,-0.31395227,-0.031619254,0.8220685,0.39414954,0.08096506,-0.15190053,-0.28910798,-0.28629836,-0.0005709864,0.11649657,0.54788125,0.38296035,0.036579113,0.19949421,0.2664249,-0.0039080624,0.057572458,-0.17758858,-0.2756489,-0.07416308,0.050982174,0.4599828,0.63963956,-0.39821336,0.39004666,-0.15690488,0.31738335,-0.10463937,-0.37751183,0.3245914,0.77337426,-0.17769298,-0.2572422,0.59403706,0.5562748,-0.33229697,0.2899308,-0.47139144,-0.28449616,0.43024495,-0.23124646,-0.29044455,0.17729114,-0.2663445,0.03178668,-0.8857272,0.3558402,-0.2807519,-0.33465648,-0.56831044,0.020939395,-2.9039965,0.14404982,-0.22073679,-0.16693005,-0.1489835,-0.08954622,0.10178978,-0.6303819,-0.47500262,0.15580873,0.12733713,0.43709713,-0.0773471,0.16810647,-0.14337404,-0.29248032,-0.10531397,0.11913216,0.21655166,0.37410372,-0.17569637,-0.54652846,-0.07181366,-0.10051243,-0.24348855,0.18566993,-0.65546393,-0.37176737,-0.011885009,-0.5102558,-0.19579661,0.5107192,-0.44262478,-0.07331212,-0.21626224,0.09589228,-0.0851886,0.27680796,0.07799817,0.15398681,0.022237182,-0.041050643,0.09426908,-0.25572628,0.43900204,0.04692482,0.27931678,0.5199548,0.020512078,0.15231277,0.5064546,0.49500835,-0.08970583,0.75521123,0.5782895,-0.039026733,0.26596716,-0.25659895,-0.15687399,-0.4288153,-0.3548838,0.011191161,-0.40710792,-0.3923485,-0.05605556,-0.40254146,-0.8343761,0.4162707,-0.10254046,0.00082897395,0.0071487874,0.22313657,0.597272,-0.17586334,0.049345143,-0.06994296,-0.100469775,-0.4713808,-0.362175,-0.57031834,-0.33965775,0.07255953,1.0855725,-0.2587304,0.10264119,-0.0635017,-0.11536461,-0.14450729,0.1809677,0.01905346,0.16882476,0.58469087,-0.15733282,-0.52442145,0.3925706,-0.13319334,-0.2965153,-0.5525868,0.21022128,0.40449202,-0.6107421,0.67727,0.4080771,0.04868027,-0.07070542,-0.57324976,-0.1710342,-0.095227584,-0.22268689,0.26242954,0.19464919,-0.66827756,0.36689132,0.29329118,-0.24801345,-0.6767843,0.54896116,-0.041492265,-0.3291109,-0.027718272,0.3043273,0.062902644,-0.007173948,-0.18144764,0.13441932,-0.28224245,0.37969267,0.11959619,-0.07981466,0.3751038,-0.21035369,-0.10213128,-0.7110472,0.01627276,-0.4824239,-0.29085535,0.2998021,0.11275213,0.15333264,0.020666145,0.038776886,0.34757793,-0.5058874,0.043958515,-0.058672015,-0.21227194,0.2314901,0.25740254,0.48288548,-0.42099577,0.45630607,0.0059055574,-0.103597626,0.09503804,0.19101125,0.5185507,-0.011895396,0.24660324,0.06724633,-0.17201589,0.24670248,0.68486345,0.11083948,0.360709,-0.053197384,-0.26067847,0.32386485,-0.07884242,0.00371461,-0.12803613,-0.42871925,-0.0036641285,-0.124214396,0.21787284,0.47740746,0.12671465,0.37365618,-0.12875941,-0.26958188,0.046958845,0.26484263,0.2304119,-0.93619955,0.22884694,0.10317109,0.867447,0.27160847,0.089605644,0.011914946,0.5039022,-0.146534,0.14738247,0.45308238,-0.15117316,-0.5785719,0.529095,-0.6337825,0.37587747,-0.007462986,0.015689226,0.0648572,-0.010419935,0.26591274,0.7871925,-0.1830388,0.019254304,0.12056307,-0.41283715,-0.014745681,-0.25706574,0.098291434,-0.57861906,-0.22812992,0.46941617,0.62062484,0.31149408,-0.22140019,0.015657067,0.14664853,-0.09362446,0.11224674,0.11577102,0.29426485,-0.01986004,-0.68226326,-0.21307878,0.53406274,-0.029262774,0.1374754,0.029203907,-0.19446439,0.36444265,-0.10816142,-0.07810031,-0.03517254,-0.36330473,-0.0525829,-0.29827008,-0.43972746,0.4174324,-0.2018006,0.29573053,0.17298281,0.037171736,-0.32406533,0.4844776,-0.01624412,0.8007661,-0.040196735,-0.10087323,-0.48921725,0.24918208,0.22643107,-0.101514,-0.13375378,-0.39125037,0.13890451,-0.39964315,0.40228853,-0.09181355,-0.15479134,-0.05305604,-0.19405083,0.02339533,0.5003283,-0.013722625,-0.122898325,-0.15126473,-0.10288292,-0.44408137,-0.1388985,-0.09905031,0.26042143,0.23454323,-0.070431605,-0.17782465,-0.17942303,-0.11996086,0.31754813,0.12423085,0.33273625,0.45350683,0.11064408,-0.28281772,-0.16776676,0.2548172,0.5118124,-0.04644253,-0.11958513,-0.3270952,-0.43889675,-0.28446943,0.1229409,-0.21707338,0.2788066,0.23826706,-0.1155281,0.65457535,-0.01008147,1.1214718,0.15866926,-0.23649268,0.02888693,0.357108,0.011191264,0.01470547,-0.2852224,0.845538,0.53377587,0.1328396,-0.07638456,-0.33134606,-0.026962664,0.021973591,-0.087795116,-0.12373543,-0.09703592,-0.6209841,-0.3488757,0.15667583,0.14936286,0.2865191,-0.0642,0.15137559,0.11722288,0.0991855,0.21478803,-0.40652022,-0.25991008,0.23792392,0.28447548,-0.023545831,0.191135,-0.44626504,0.4242072,-0.42088312,-0.090425625,-0.22685549,0.1945417,-0.044930626,-0.2645342,0.11925585,-0.2045081,0.38098627,-0.3924472,-0.2552952,-0.26329666,0.46020013,0.13902307,0.09864537,0.4811896,-0.19148669,0.050597217,0.011634536,0.5209958,0.87277603,-0.2524661,0.07355094,0.3919471,-0.23806642,-0.70445293,0.2306765,-0.24892384,0.20982939,-0.16221917,-0.12909405,-0.536921,0.39143467,0.07909874,-0.026850767,-0.1363773,-0.42237455,-0.095541745,0.18998966,-0.33815545,-0.17099628,-0.22000827,0.04333123,0.6225916,-0.26319906,-0.29409933,0.065678984,0.24645203,-0.13362908,-0.43098128,0.03533683,-0.4224137,0.2454951,0.1260989,-0.25707224,-0.15720078,0.11166128,-0.297859,0.20532468,0.28550017,-0.22586803,0.024189103,-0.26645386,-0.023769952,0.8902818,-0.1386474,0.16303535,-0.4628289,-0.44162938,-0.7596909,-0.22960547,0.32654655,0.06742707,0.024761844,-0.6873275,0.01617793,-0.12898965,-0.33389673,-0.18967474,-0.3390442,0.43482065,0.07929659,0.15486851,-0.2739867,-0.6001564,0.12658358,0.059300013,-0.16198337,-0.50946647,0.43244886,-0.035971396,0.97465044,0.058645286,0.13327631,0.34830558,-0.32875365,-0.16424775,-0.19363579,-0.15451927,-0.6150231,-0.051552847 -510,0.41129443,-0.15848988,-0.4143674,-0.37374204,-0.55595124,0.10497449,-0.25126848,0.07307747,0.217644,-0.59411,-0.051971808,-0.25898525,-0.039266504,0.24783534,-0.28095502,-0.8336814,-0.017509073,0.007286384,-0.49403983,0.5338863,-0.60000414,0.31099173,0.12576683,0.12469872,0.092047505,0.295469,0.4564037,-0.28796414,-0.12951055,-0.13519557,-0.066649966,-0.07266942,-0.8005556,0.42031315,-0.18231367,-0.35461947,0.2725218,-0.36302167,-0.2693352,-0.63710403,0.40300104,-0.90672356,0.51108354,-0.04651401,-0.26341248,0.12137138,0.2986181,0.18188198,-0.30810708,0.1477004,0.29541835,-0.23893283,-0.025051478,-0.122713804,-0.2781091,-0.73585045,-0.7059699,-0.024835011,-0.7627185,-0.2705064,-0.4053763,0.3491367,-0.3776091,-0.0721591,-0.28747368,0.45180097,-0.4927642,-0.038290773,0.06504896,-0.19327109,0.35837877,-0.45196757,-0.29707548,-0.18214224,0.12654355,-0.1325908,-0.010237102,0.3506089,0.17770712,0.49904612,0.21288148,-0.34787947,-0.18877046,-0.07919566,0.0905505,0.42817885,-0.031253356,-0.23207012,-0.23722951,-0.15689391,0.18251991,0.3756675,-0.013634159,-0.23686594,0.15494975,0.10433826,-0.42551547,0.4830566,0.47485656,-0.31856588,-0.35798916,0.21811257,0.25090504,-0.28344557,-0.1931229,0.14691065,-0.05796703,-0.44666788,-0.37313846,0.30926964,-0.25305197,0.5552851,-0.34871066,0.23829857,0.8593501,-0.26904207,0.0402349,-0.15066156,-0.10703052,-0.17669106,-0.18913959,-0.094238706,0.24420527,-0.7601173,-0.025674032,-0.34816912,0.87205887,0.07202061,-0.7102891,0.3081608,-0.5271884,0.013279488,-0.18743102,0.59872127,0.54454684,0.47171742,0.27361652,0.7849598,-0.610738,0.03043463,-0.034839507,-0.45016736,0.1803721,-0.28075105,0.2389557,-0.36109522,-0.05576063,0.13128206,0.24412958,-0.24724367,0.47027934,-0.40182698,0.020035084,0.16996704,0.78457963,-0.4176114,0.11543802,0.89040685,1.1433985,1.0150585,0.1141731,1.5407217,0.23575085,-0.24347752,0.1616714,-0.26052597,-0.48899093,0.17366208,0.3800361,0.24390925,0.12043785,0.14808936,0.14902352,0.3737848,-0.32370996,-0.0056351516,-0.18414123,0.27320334,-0.11599306,-0.055970564,-0.5417474,-0.23384163,0.21393606,0.044372484,0.14115268,0.32135704,-0.07591745,0.40820238,0.21818517,1.103016,0.059112504,0.1946454,0.008150715,0.5525911,0.17095663,0.121388994,0.09917518,0.1555971,0.16778935,0.23676579,-0.6168444,-0.10369077,-0.33543462,-0.4636998,-0.25798732,-0.42842403,-0.06819168,-0.38484985,-0.4671653,-0.24379233,-0.069874436,-0.45691353,0.3494446,-2.3296666,-0.36748812,-0.23933417,0.2877398,-0.15375766,-0.1709884,-0.0020360856,-0.60986894,0.5479459,0.48519304,0.49379143,-0.63329375,0.5196921,0.5707064,-0.4343509,-0.08330404,-0.6643992,-0.14135021,-0.33215138,0.47996983,0.096642256,-0.24878153,-0.39154866,0.1487201,0.70679134,0.13496414,0.12652904,-0.009609823,0.5335153,-0.05510632,0.7821507,0.2554832,0.41715506,-0.36159915,-0.06689734,0.25382644,-0.46759132,0.26459953,-0.045104206,0.20816357,0.4651977,-0.72163856,-0.9039241,-0.78364444,-0.7194456,1.0027636,-0.19951695,-0.40730646,0.31029508,0.058385007,-0.29636416,-0.037740346,0.42204666,-0.15568492,0.25859195,-0.68142384,0.12483089,-0.17765154,0.2475276,0.0144214425,0.14213352,-0.4758208,0.8586343,-0.16272023,0.38104203,0.25026646,0.18134008,-0.41798884,-0.43455428,0.22042133,0.9710782,0.4520861,0.13025111,-0.15758404,-0.29145575,-0.023419619,-0.20885287,0.118304975,0.5640234,0.78681886,-0.063256264,0.0069444273,0.47960335,-0.28321642,0.16957949,-0.062383812,-0.33931258,-0.14029573,0.16786374,0.5515493,0.5382021,-0.078052655,0.2845528,-0.1725777,0.38259146,-0.29360723,-0.49083328,0.43859193,0.91371316,0.016896416,-0.05591784,0.73634785,0.70635724,-0.32035553,0.5849424,-0.58437276,-0.51770806,0.53360564,-0.09947182,-0.6110047,-0.19308347,-0.49341008,0.02916034,-0.9570593,0.314625,-0.30350664,-0.510148,-0.46993384,-0.3025251,-4.275504,0.11838729,-0.31861037,-0.023168923,-0.19995227,-0.23119426,0.42333797,-0.58478075,-0.59701604,0.1447563,-0.09261887,0.63584656,0.14381282,0.3098475,-0.41918102,-0.15741822,-0.32110888,0.34450948,0.02123166,0.07189344,-0.060220126,-0.4930935,0.25884166,-0.39793873,-0.47555125,-0.025813993,-0.5406227,-0.61483777,-0.17257255,-0.61428607,-0.6478314,0.77975315,-0.15880075,-0.09821946,-0.24570605,-0.084065914,-0.20209654,0.34240496,0.11645221,0.1530135,0.07986251,0.009523036,-0.23977143,-0.41674307,0.40965682,0.10176338,0.37077004,0.49697983,-0.21156587,0.03626422,0.49691042,0.4736901,-0.0061809216,0.91837794,-0.029662771,-0.1565802,0.46382582,-0.2260452,-0.38791782,-0.98877215,-0.36804244,-0.18846975,-0.41074023,-0.49674562,0.0058142613,-0.37017742,-0.70675874,0.57533514,0.116275616,0.26494074,-0.25035098,0.19262213,0.19727764,-0.119238764,-0.10679478,-0.14744094,-0.20782903,-0.53803307,-0.3732259,-0.9110184,-0.5674207,-0.058468316,1.0383513,0.06553717,-0.2696595,0.18899877,-0.18565471,0.28897095,0.19338314,0.1800985,0.250251,0.51376164,0.0024959857,-0.8319665,0.65377,0.034454457,0.16657227,-0.309769,-0.057637766,0.8166532,-0.7352634,0.54959863,0.54552287,0.250473,0.061392527,-0.44400018,-0.2794154,-0.05851651,-0.2113529,0.47745907,0.24419369,-0.8630508,0.5690453,0.0965044,-0.18575433,-0.71775496,0.63755137,-0.076326326,-0.14637417,-0.0049450216,0.4351522,0.2557301,0.041050937,-0.14075647,0.26517546,-0.5903638,0.3123984,0.33495638,0.07250242,0.558218,-0.16267094,-0.2672879,-0.7705371,-0.31939203,-0.41326112,-0.16464692,0.056601517,-0.11491806,-0.17743233,0.46228868,0.076182365,0.3591664,-0.23996504,0.15169056,0.029782057,-0.2842329,0.23832592,0.50913167,0.42453733,-0.50793445,0.7178033,0.14356637,-0.025243236,-0.30021393,0.06416873,0.3240557,0.28274587,0.39601392,0.0669943,-0.17369369,0.37648866,0.878239,0.25174335,0.47016907,0.31761762,-0.17634198,0.5418425,0.14184622,0.08931299,0.08922701,-0.4020242,-0.008964995,-0.009951674,0.062401667,0.3304089,-0.03924689,0.36736393,-0.11787416,0.0164832,0.06358257,0.24523799,-0.28661156,-1.1293278,0.2598199,0.270779,0.7132625,0.7242771,-0.013666823,0.06342457,0.6466823,-0.42080593,-0.075018674,0.29699972,0.19348064,-0.24352632,0.7946224,-0.44225305,0.4878116,-0.2478637,0.037951723,-0.08459135,0.14958504,0.24736287,1.027883,-0.061499868,0.08563762,-0.015590246,-0.26167205,0.32330042,-0.28364357,0.155169,-0.38362768,-0.17074205,0.64227307,0.4368019,0.38374907,-0.106332794,-0.1432638,-0.107080184,-0.13073964,0.25919795,0.05491287,-0.18771124,0.005000756,-0.59392846,-0.34343937,0.65064746,0.0964781,0.3047833,0.20004624,-0.3944006,0.27316812,-0.08110364,-0.02473864,0.071828775,-0.71904916,0.004620944,-0.2002983,-0.3962069,0.39476126,-0.3510469,0.25053114,0.18083392,-0.00085901987,-0.33530667,-0.31171018,0.37713435,0.35937107,0.17627081,-0.25515667,-0.24053948,-0.36492532,0.30710715,-0.4596395,0.08648382,-0.22962166,0.20194183,-0.58735,0.55815643,-0.121039614,-0.261128,-0.10896769,-0.26654908,0.027259516,0.4166368,-0.088714086,-0.10751809,0.18317358,0.20275787,-0.24289285,-0.14174563,-0.31816804,0.2000651,-0.010608948,0.118014224,0.021871714,-0.16719583,0.0079773115,0.5806769,0.16719058,0.114315234,0.12498014,0.008002283,-0.4736736,-0.056991182,-0.115514114,0.45617726,-0.10159363,0.05247393,0.048028138,-0.30657345,-0.20941088,0.2673228,0.0006904625,0.0411485,0.111217864,-0.39694798,0.824865,0.10568835,1.1093171,0.15020221,-0.3648418,-0.028467132,0.54099494,-0.24866806,0.10654784,-0.24433917,1.1356746,0.5730324,-0.34962434,-0.24967399,-0.60833,0.009486764,0.10920587,-0.31485572,-0.20418002,-0.13723351,-0.73614544,-0.24809821,0.3254297,0.35405365,-0.060320225,0.06721484,0.05313963,0.09340528,0.2498276,0.61084497,-0.76187605,-0.15175936,0.33057636,0.19522108,0.19478963,0.23091283,-0.22798349,0.45321244,-0.7283975,0.28110364,-0.34860307,0.036188558,-0.23136605,-0.28731945,0.19305955,0.07770565,0.42504787,-0.11456287,-0.3795121,-0.312771,0.65908486,0.21543606,0.31360066,0.8057978,-0.18290922,0.022997783,0.06182084,0.4991945,1.3624952,-0.018086186,-0.017851435,0.27042624,-0.42644188,-0.6530565,0.17168196,-0.4906324,-0.097892776,0.033774886,-0.5450535,-0.27680895,0.2670603,0.19912966,0.09009935,0.17867658,-0.50979304,-0.17583561,0.5029286,-0.36048853,-0.40582913,-0.10647628,0.3400033,0.6738176,-0.34178492,0.0230052,-0.049173556,0.48792166,-0.41462347,-0.6632853,-0.09420129,-0.2833789,0.690199,0.027771382,-0.36174026,0.078498006,0.26036984,-0.45853233,0.101387225,0.49011448,-0.32950082,0.009867257,-0.34913096,-0.122141905,0.89978683,0.10864939,0.08842325,-0.6896906,-0.35487196,-0.8545262,-0.2803075,0.25749916,0.2687764,-0.013768609,-0.26721486,-0.049693234,-0.10550824,0.09014741,0.16518937,-0.67401975,0.31058624,0.1977183,0.61620295,0.06822778,-0.9715041,-0.057428323,0.3469928,-0.04353204,-0.4105236,0.6444453,-0.33054098,0.5534707,0.15089723,0.04296191,0.027888967,-0.5394801,0.46829054,-0.3381408,-0.17068546,-0.6822954,-0.07966575 -511,0.26272914,-0.22772,-0.2882349,-0.18136737,-0.08938908,0.1180809,-0.117764875,0.22091235,0.21253271,-0.38571966,-0.11939384,-0.337305,-0.0011851862,0.42762125,-0.09626112,-0.7196283,-0.076490365,0.091663666,-0.66235346,0.54872555,-0.32902604,0.22925673,0.023229357,0.2337921,0.08864347,0.1367702,0.2714266,-0.19314842,-0.15497287,-0.113766156,-0.14321056,0.17152436,-0.7658842,0.19136581,-0.032089923,-0.34764752,0.0046402137,-0.39441463,-0.35132405,-0.7142977,0.3762662,-0.71282065,0.40152732,0.07000971,-0.14995964,0.55017763,-0.054090023,0.2557897,-0.27093303,0.047016144,0.13097808,-0.13116166,-0.012028182,-0.03552265,-0.07167603,-0.272339,-0.64984494,0.11347102,-0.28447706,-0.3427164,-0.29687998,0.120672636,-0.312708,0.0065006656,-0.11615406,0.46382242,-0.3948094,-0.09167648,0.20548235,-0.04405747,0.28424263,-0.4589403,-0.093868814,-0.06865978,0.30458668,-0.20978801,-0.081710644,0.30186087,0.28168952,0.5369276,0.031864144,-0.204218,-0.28152573,-0.074324444,0.15806171,0.4383387,-0.06813073,-0.65194887,0.10504044,-0.020877134,0.028677246,0.07662519,0.14101614,-0.30057475,-0.23392671,0.11218336,-0.23146074,0.32905665,0.46733978,-0.22544833,-0.44344914,0.31022835,0.4427262,0.106851354,0.069589265,-0.022969551,0.060504936,-0.5323748,-0.20963697,0.229115,-0.39103386,0.49533924,-0.16211747,0.21496339,0.61603475,-0.21436258,0.05379103,-0.059510984,-0.16307707,-0.007656606,-0.011927973,-0.21081534,0.19835587,-0.36303812,0.24924086,-0.2646294,0.8649432,0.162245,-0.89449674,0.38050455,-0.5232171,0.24066798,-0.105506524,0.49822286,0.65308756,0.25285822,0.25862497,0.5836324,-0.5308531,0.0629567,-0.069975615,-0.29822385,-0.121720634,-0.18939777,-0.1644682,-0.4549017,-0.09969446,-0.012921901,-0.05085804,0.06572349,0.19211751,-0.57700235,0.18534318,-0.0054733157,0.8073563,-0.30679855,-0.05346987,0.7006249,0.94292957,1.0887277,0.108090386,1.1634543,0.36098003,-0.32139906,0.3392576,-0.44263572,-0.7386344,0.24885885,0.3902038,-0.1385574,0.2047191,-0.061083894,0.07248007,0.25868964,-0.48272312,0.14958216,-0.19290206,0.2722599,0.14010467,-0.18587698,-0.23837239,-0.25160363,-0.12621944,-0.030781623,0.08441942,0.24780017,-0.06936366,0.35322964,0.101213306,1.4887097,0.020894436,0.006390067,-0.059412036,0.43372378,0.09904029,-0.12413964,-0.103471026,0.21746582,0.3396921,-0.028025659,-0.6982956,0.13495913,-0.11533766,-0.4182248,-0.22199167,-0.23857592,0.09598257,0.09602179,-0.28377303,-0.1688214,-0.13693123,-0.27469215,0.5622471,-2.576571,-0.17165892,-0.08564626,0.21916114,-0.29266223,-0.25108743,-0.015995828,-0.64459056,0.44355857,0.30030766,0.35338017,-0.69153404,0.24955139,0.31805187,-0.4881281,-0.12288265,-0.6132826,-0.19568771,0.05132554,0.3502865,0.038194895,0.012275894,0.05704986,0.22743526,0.41302612,0.055626296,0.027003247,0.20132042,0.34167856,0.23298305,0.39650324,0.066622294,0.53066397,-0.16761066,-0.059077222,0.35267073,-0.30868948,0.23768239,-0.1388858,0.11996408,0.35183373,-0.44724062,-0.7829474,-0.6400465,-0.37521067,1.2226056,-0.09353139,-0.42193028,0.3009426,0.08001487,-0.0024428288,-0.12997141,0.37340164,-0.1952499,-0.09766063,-0.7134703,0.028019872,-0.0077770553,0.15567869,0.06677984,-0.037070647,-0.4499844,0.5085554,-0.08032047,0.30347204,0.42972305,0.2583783,-0.22081408,-0.5977986,0.109716006,0.8856382,0.35757312,0.09480477,-0.11803708,-0.19845985,-0.340968,-0.15606576,-0.016955966,0.2912427,0.8143424,-0.03285544,0.03376417,0.21733321,-0.012667712,0.18091859,-0.17152539,-0.2906529,-0.0334222,-0.026013525,0.46797886,0.4847224,-0.18899265,0.36680204,-0.0147957895,0.15212923,-0.042386137,-0.3309167,0.7006709,1.3575647,-0.017212989,-0.17121647,0.4324191,0.39182574,-0.16164121,0.3781279,-0.53186935,-0.17965606,0.6221391,-0.280218,-0.3997142,0.17265339,-0.2769605,0.12418392,-1.007046,0.3132887,-0.2829351,-0.33772194,-0.65126693,-0.001200223,-3.0645423,0.04380722,-0.30655634,-0.21301118,-0.02367088,-0.09458869,0.08973112,-0.45734197,-0.5407464,0.27906764,0.09651407,0.56182694,-0.012659138,0.35498697,-0.09509715,0.031973567,-0.44231603,0.1981473,0.124345556,0.20708415,-0.032713007,-0.43339488,0.022765178,-0.2215793,-0.48638743,0.22244257,-0.40087324,-0.41803405,-0.23522167,-0.47663593,-0.36833936,0.59611624,-0.33059838,-0.01021936,-0.24066891,-0.05995293,-0.15854478,0.387584,0.12931268,0.09344888,0.024804382,-0.101024665,-0.09204681,-0.27926216,0.28872287,0.12128422,0.23047495,0.38978302,-0.10995151,0.102583535,0.4011485,0.6098389,0.08671908,0.5474687,0.5908371,-0.043690324,0.27697966,-0.37254006,-0.24498574,-0.45885712,-0.4157354,-0.0011982997,-0.295866,-0.5665907,-0.12919278,-0.3086084,-0.62121975,0.28898916,0.036809493,0.07656355,-0.0070573133,0.08290111,0.3265619,-0.12716934,0.04659176,-0.11674614,-0.07184649,-0.456147,-0.22945307,-0.6175939,-0.44147837,0.18568398,0.8867477,-0.03209604,-0.17577177,-0.01836118,-0.12626705,0.033013273,0.046896324,-0.20812137,0.25854266,0.19033581,0.020348763,-0.76214516,0.6457659,0.07979665,-0.13794184,-0.558737,0.09331919,0.4049556,-0.43902656,0.38583076,0.23315702,-0.085117795,0.051193174,-0.36695406,-0.14285374,-0.10936601,-0.25590506,0.20197791,0.07818357,-0.5480642,0.45733076,0.28725776,-0.27291048,-0.79722524,0.32626218,0.16018803,-0.26132205,0.09747161,0.2587148,0.026752282,0.04991246,-0.3267152,0.23086244,-0.48172697,0.32004008,0.21201201,0.024275146,0.23774086,-0.13180296,-0.19293927,-0.7525907,0.045402322,-0.46492118,-0.20714083,0.07984998,0.21246459,0.05433546,0.20977508,0.07825799,0.38336438,-0.20099173,0.1288967,0.041512366,-0.28745395,0.15834092,0.399498,0.3900248,-0.39860395,0.552031,0.0017957409,-0.09128548,-0.09488596,0.0016855558,0.44564942,0.1671148,0.14013998,0.16420645,-0.26614273,0.3677538,0.7564139,0.12940189,0.33536866,0.008056871,-0.23411082,0.43406755,0.10461093,0.19296604,0.116316035,-0.42422396,0.0008361022,-0.119509,0.13213173,0.41809246,0.037199296,0.31624985,-0.093885705,-0.37174782,-0.076425195,0.23789713,-0.1614096,-1.016524,0.30638137,0.17908505,0.94460857,0.8238256,-0.08782514,0.23204234,0.52083385,-0.21517912,0.11755691,0.32421646,-0.08713479,-0.64063376,0.5913946,-0.6301206,0.313612,-0.06034905,0.0034137985,0.0088522965,-0.0076362095,0.17827211,0.6338132,-0.22377568,0.04718038,-0.16425091,-0.2525712,0.23124212,-0.43352994,0.2140688,-0.4166778,-0.2426332,0.5612537,0.35721365,0.21545695,-0.05729365,0.051584173,0.23985939,-0.1489441,0.26179653,0.1142228,0.03909627,0.06483532,-0.6634812,-0.25209945,0.52723885,-0.08420698,0.08155822,-0.08737927,-0.28472334,0.09968879,-0.42227095,-0.19037716,-0.12894902,-0.68332297,9.498596e-05,-0.21895865,-0.1486847,0.44417006,-0.17398281,0.23930341,0.16419882,0.18591736,-0.27569738,0.052870393,0.21475355,0.5819769,0.10250326,-0.14494728,-0.33569032,0.034988206,0.14846367,-0.17111482,0.01948135,0.1504675,-0.1528835,-0.6229642,0.50438,-0.06584834,-0.12464678,0.14994453,-0.20758574,0.013166964,0.50012016,-0.21436192,-0.0060241045,0.14620931,-0.14924075,-0.11655847,-0.03332882,-0.08645291,0.332601,0.29287827,-0.017214911,-0.048599277,-0.0366614,-0.18571551,0.44615474,0.052891497,0.30917376,0.16183032,-0.072371416,-0.37708017,-0.25679672,0.026221566,0.24623537,0.06467515,-0.018111292,-0.25193715,-0.3547802,-0.32600358,-0.030068127,-0.14878526,0.3051328,-0.093837894,-0.44031996,0.52645105,0.12605573,1.0852422,0.10216353,-0.2916269,0.15040687,0.36433417,0.038842823,-0.004660055,-0.45567068,0.822652,0.47202045,0.026310543,-0.110913925,-0.22489296,-0.0043310644,0.18842998,-0.06354765,-0.08591063,0.063114755,-0.5938486,-0.45208848,0.25393337,0.22208157,0.069097914,-0.120456584,-0.088596344,0.18548624,-0.040275138,0.31125742,-0.45408437,-0.12398497,0.3052936,0.10438809,0.1928017,0.090650894,-0.3919554,0.3504078,-0.52111864,0.13222086,-0.12525758,0.17089316,-0.16013715,-0.0846031,0.28729126,0.25267273,0.2210057,-0.2037785,-0.4437577,-0.22634731,0.5125012,0.070867464,0.22211751,0.60527116,-0.28190258,0.045457896,0.02053577,0.4764558,1.0072715,-0.14421968,0.060379528,0.35957465,-0.33412874,-0.3978451,0.61505926,-0.083790526,0.039798904,-0.0880369,-0.21131748,-0.6069762,0.15451466,0.21859767,0.08710385,0.16869506,-0.64940166,-0.42917055,0.3063716,-0.40160066,-0.2786021,-0.32520702,0.15225662,0.643203,-0.43403354,-0.1626127,0.2537452,0.17524013,-0.29071432,-0.5314435,-0.081955805,-0.32939416,0.20484404,0.09512374,-0.39983746,-0.17790177,0.2877397,-0.30925676,0.09598958,0.07062583,-0.39021462,-0.04513091,-0.22967942,-0.04676125,0.89194554,-0.3201835,0.14420582,-0.6394674,-0.4332433,-0.9492042,-0.3584102,0.67319924,0.12594979,-0.01068548,-0.6278858,-0.008193183,0.0036655266,-0.021850187,0.05628791,-0.40073958,0.436264,0.18061113,0.35720718,-0.049773466,-0.5318665,-0.0065409304,0.09311843,-0.12950203,-0.47046325,0.4969228,0.05737768,0.7089646,-0.011083547,0.008345628,0.34942624,-0.49267128,-0.036855314,-0.17115323,-0.21269657,-0.5187098,0.10314908 -512,0.5090282,-0.22086236,-0.1665506,-0.18345739,-0.091481104,0.30191782,0.008856298,0.45796153,0.115140185,-0.53096974,-0.28341052,-0.27856442,0.008047393,0.23231767,-0.21256542,-0.3596721,-0.06265961,0.075123645,-0.34759548,0.38600698,-0.48405024,0.36185727,0.13925087,0.36527285,0.18144391,0.1320782,0.0711196,-0.09997299,-0.35294417,-0.37284645,-0.14425614,0.013982713,-0.5933162,0.11506268,-0.2237394,-0.46413234,0.041454196,-0.5028953,-0.34490368,-0.6859697,0.31958354,-0.96414304,0.4098581,0.044842705,-0.23830391,0.5359595,-0.10953549,0.08250843,-0.05054362,-0.0701188,0.15402198,-0.13441141,0.076185994,-0.26941806,-0.18124318,-0.3113414,-0.61461747,0.14530635,-0.28374562,-0.20624638,-0.21483469,0.12589866,-0.21955672,0.12496769,-0.15760276,0.42244714,-0.32199398,0.10551861,0.03240838,-0.17535421,0.13845469,-0.59336144,-0.24936946,-0.051044382,-0.0100435065,-0.15632263,-0.048492156,0.22887349,0.20772563,0.49864244,-0.07146365,-0.167343,-0.2953351,0.10237881,-0.053009365,0.5297992,-0.18184575,-0.39557326,-0.10576504,-0.13710085,0.23818551,0.22305125,0.24457666,-0.05038207,-0.023694621,0.022630692,-0.45727178,0.2673005,0.62570006,-0.36203206,-0.3079619,0.36372954,0.4091771,-0.10716748,-0.012599102,-0.29351348,0.03470011,-0.40852544,-0.032957725,0.080221064,-0.3454935,0.60466486,-0.14241053,0.30705217,0.5642615,-0.22644421,0.24289626,0.10620684,0.06530823,-0.038454525,-0.38122478,-0.2606761,0.22888257,-0.44234908,0.06471667,-0.37927598,0.9906116,0.027122539,-0.65457577,0.37255794,-0.4092421,0.095995866,-0.029187623,0.44406807,0.5127556,0.43051174,0.22026494,0.56765354,-0.49563602,-0.07514054,-0.18922976,-0.11367079,0.036693756,-0.19115232,0.27675596,-0.356377,-0.058662713,0.08009631,-0.12989074,-0.05593624,0.50110346,-0.514172,-0.02608792,0.2416504,0.86089396,-0.27561727,-0.08327504,0.8147539,1.1526225,0.81850106,-0.012757645,1.122485,0.3754505,-0.30329153,0.2653394,-0.29812703,-0.5790392,0.21928088,0.28975803,-0.04492935,0.07448563,0.13386424,-0.25637472,0.34885332,-0.412532,-0.072651215,-0.1755943,0.18074645,0.15877166,0.20565759,-0.39323857,-0.36158404,-0.080257066,-0.11206611,0.12403921,0.24908683,-0.4433706,0.2562831,0.034488324,1.5697007,-0.1028109,0.049585205,0.019275766,0.4445508,0.019905534,-0.08336648,0.057176314,0.32328576,0.18060364,-0.05921845,-0.57688475,0.08827932,-0.23590817,-0.5266829,-0.11210956,-0.16115347,-0.12751514,0.029478531,-0.48667255,-0.21732815,-0.101612315,-0.3052184,0.47577316,-2.6798844,-0.13248327,-0.04616133,0.4323911,-0.35306928,-0.5241991,0.13641001,-0.49466595,0.50610375,0.36034852,0.33893505,-0.66552216,0.22227438,0.32017934,-0.37718794,-0.18996103,-0.6645516,-0.038311005,-0.0029085898,0.21829261,0.014670551,-0.06794659,-0.14104894,-0.21744321,0.51923853,0.11826429,0.13081755,0.3427096,0.36606738,0.06076061,0.27259395,0.061336737,0.5408814,-0.32798645,-0.092950635,0.32233348,-0.5598147,0.1965263,-0.10201435,0.20987867,0.4391152,-0.41452137,-0.603853,-0.7402378,-0.3893631,1.2317464,-0.05949715,-0.5132321,0.15409479,-0.004778635,-0.16274577,-0.13608402,0.47039875,-0.09535318,-0.2121439,-0.63740724,0.026743952,-0.09859169,0.21476905,-0.05474948,0.08581615,-0.35060993,0.6892666,-0.104750596,0.29087916,0.2083537,0.2863154,-0.26674768,-0.2983058,0.066206984,0.95642483,0.37617937,0.14358251,-0.15871866,-0.19949849,-0.20069951,-0.12835674,0.11476935,0.36770236,0.67096716,0.07185933,0.026316883,0.28325447,-0.044565532,0.042226203,0.006891787,-0.36021334,-0.23752007,-0.08759376,0.58553195,0.52232987,-0.08821811,0.37504804,-0.2270325,0.28123558,-0.33435866,-0.40172255,0.4175406,0.84982044,-0.1273911,-0.13955787,0.61189806,0.4016169,-0.31707218,0.33529982,-0.6471087,-0.37511533,0.40782374,-0.18674384,-0.5344113,0.027667113,-0.18058927,0.033036944,-0.70474327,0.37063557,-0.16873035,-0.51146644,-0.6607038,-0.14760199,-2.9154904,0.112161525,-0.23547599,-0.21233885,0.02372215,-0.2854726,0.15973538,-0.5350288,-0.2835135,0.14889503,0.023313664,0.5814011,0.100347556,0.2571368,-0.24364045,-0.116342254,-0.46780857,0.11114231,0.09180014,0.25987688,-0.07184973,-0.30660778,0.10876687,-0.04374307,-0.40056944,0.22790645,-0.6458709,-0.60900444,-0.18430826,-0.45084348,-0.32280177,0.6718326,-0.31331035,0.059911814,-0.16033116,-0.020525614,-0.18639381,0.3255072,0.12644257,0.13659313,0.021222414,-0.20154308,-0.020308604,-0.49740526,0.43609384,0.18979551,0.25467426,0.57653284,-0.22272037,0.12219714,0.30201942,0.51996136,0.06951944,0.6908808,0.3206938,-0.12932402,0.3035955,-0.2758817,-0.16873305,-0.4960538,-0.24655375,0.029001493,-0.4235565,-0.2938989,0.02455058,-0.34777158,-0.69100124,0.41173348,-0.09383341,0.15457606,0.036496587,0.32351625,0.60945904,-0.08323741,-0.06246852,-0.057444178,0.044420555,-0.54102474,-0.45345122,-0.7097552,-0.42274886,0.15851013,0.9462331,0.05958645,-0.028026508,0.075908616,-0.069690116,0.008441438,-0.1224588,-0.13628556,-0.15447313,0.3857714,-0.0403632,-0.6631707,0.40491962,0.12339525,-0.14327544,-0.5672072,0.37588516,0.6104647,-0.5539173,0.44105765,0.4549162,0.19106224,-0.03384371,-0.37440616,-0.21525805,-0.08830496,-0.26205713,0.15544352,0.2487231,-0.7028108,0.33336988,0.33883625,-0.20534751,-0.8064594,0.29022712,-0.016884156,-0.31944278,-0.15078798,0.3391897,0.30060938,0.023891173,0.05172692,0.15609114,-0.6029524,0.21825822,0.27117437,0.010204684,0.52861464,-0.18552701,-0.18859409,-0.5690391,0.08148983,-0.46103895,-0.37295067,0.20896152,0.13946119,0.0024752824,0.53217435,0.31342414,0.37763232,-0.20816845,0.019540312,0.07357991,-0.17975913,0.38407356,0.3413417,0.53549874,-0.38336813,0.5175308,-0.013224478,-0.026706379,0.059043128,-0.04003279,0.39559463,0.17952879,0.2674357,0.048674718,-0.31561935,0.28918883,0.693108,0.21206306,0.4964522,0.115701444,-0.116257615,0.3395146,-0.014946048,0.10780425,-0.020046793,-0.6489351,-0.01240254,-0.13087688,0.1465185,0.32611263,0.043052875,0.31396213,-0.11790491,-0.18049566,0.033377673,0.110005505,-0.27902448,-1.0029057,0.20221901,0.0020095683,0.8591006,0.42847776,-0.13240066,-0.023770183,0.69253135,-0.22217844,0.10231086,0.3036601,0.07121905,-0.39025533,0.63220793,-0.6772015,0.35886568,-0.061299894,0.022731006,-0.14004233,0.013505837,0.27441487,0.59639823,-0.14016059,-0.032773994,-0.094705105,-0.4035821,0.11458015,-0.40340278,0.33988607,-0.5981077,-0.17646359,0.66599154,0.3556066,0.3422721,-0.1193782,-0.016068352,0.06964864,-0.115609735,0.15176445,0.21795759,-0.009411385,0.12662183,-0.6028083,-0.22589646,0.54189426,-0.082020134,0.28970343,-0.031105684,-0.19443053,0.11495567,-0.3511831,-0.24350199,0.10941499,-0.49947256,0.011764746,-0.41553497,-0.36145836,0.17630744,-0.044859327,0.13504794,0.094906,0.022982882,-0.24819133,0.036182184,0.49494055,0.710888,-0.0061496864,-0.1617588,-0.512345,0.14036368,0.08557523,-0.2576329,0.10053499,-0.026115537,-0.072893046,-0.65893805,0.46327966,-0.14022711,-0.18239322,0.11866072,-0.16166767,0.03204981,0.54515827,-0.04889113,0.06929596,0.005443449,-0.12760805,-0.29426846,0.016378578,-0.039957292,0.17225121,0.19792151,-0.06677212,-0.00080153346,-0.25998777,-0.17707282,0.37370205,0.07712478,0.31813204,0.4096709,-0.0019699885,-0.25852925,-0.18685181,-0.04502048,0.47358978,-0.051329337,-0.13006276,-0.22421314,-0.49205297,-0.22186916,0.24743302,-0.031675085,0.33511308,0.06826039,-0.25231877,0.80495113,-0.11300899,0.9842291,0.09447496,-0.3055981,-0.069739476,0.47733828,0.024311772,0.03405195,-0.38545662,1.0423543,0.47118548,-0.055075057,-0.12794045,-0.27329016,-0.054429896,0.32772392,-0.101417944,-0.1061916,-0.09074888,-0.76948094,-0.2966566,0.16732618,0.3294732,0.0030540503,0.007617068,0.1450813,0.38013855,0.01072421,0.56159395,-0.40655378,-0.20298482,0.3241033,0.3174372,0.069629885,0.2564004,-0.33274743,0.2924005,-0.6726065,0.048950203,-0.24745645,0.0860804,-0.045963354,-0.14970689,0.25591865,0.19933516,0.45695004,-0.31343126,-0.47817233,-0.22497079,0.432998,0.12896124,0.2135465,0.47522512,-0.12088561,-0.16862181,0.07264068,0.5683344,1.263173,-0.030877706,0.27846798,0.2694511,-0.4340747,-0.74317765,0.5775393,-0.02755912,0.07524833,-0.0051912987,-0.13014825,-0.46464485,0.2792958,0.2804744,-0.13851115,0.20776878,-0.5045795,-0.23545907,0.24422097,-0.36189026,-0.18296552,-0.25219458,0.21451408,0.579812,-0.20389539,-0.067288026,0.0068909023,0.535266,-0.35326612,-0.4598926,-0.10968847,-0.56744224,0.22092707,0.03806956,-0.35259807,-0.14498053,-0.04037582,-0.3039731,0.029144693,-0.065444194,-0.39126506,-0.003000186,-0.26680878,0.12615986,0.7507368,0.16687836,0.08592277,-0.72910726,-0.42049664,-0.7606444,-0.49051648,0.33546227,0.2141814,-0.03706921,-0.45164937,-0.10794093,-0.12829028,-0.14893979,-0.10404159,-0.49151626,0.41292784,0.25003645,0.40267426,-0.01736285,-0.5449308,0.13512342,0.19180062,-0.16712266,-0.5237251,0.36142874,-0.0632739,0.8137195,0.009968469,0.003201205,0.16279595,-0.45712692,0.087458804,-0.24131301,-0.3161956,-0.6475429,0.2119371 -513,0.5089107,-0.39344767,-0.5765568,-0.19216156,-0.19188073,0.14993174,-0.1536203,0.5347287,0.18393236,-0.59513706,-0.16576502,-0.2898908,0.03856995,0.030010305,-0.13817057,-0.46506107,-0.19612151,0.29849693,-0.48264763,0.33165792,-0.37161726,0.20055962,-0.08166873,0.512941,0.19115084,0.16720922,-0.080114685,0.0005579178,-0.14535531,-0.2107365,0.12399158,0.2710354,-0.6597372,0.08421034,-0.16516337,-0.52486396,-0.07744459,-0.55495834,-0.32554385,-0.8407136,0.45544258,-1.0964067,0.81780946,0.03233697,-0.42452848,0.28202406,0.12508914,0.38469303,-0.13325946,0.15201792,0.34039873,-0.14285183,-0.11721479,-0.070217066,-0.29668862,-0.32741964,-0.59938174,0.024136182,-0.4114529,-0.12301071,-0.16479929,0.18172683,-0.22732902,0.23105961,-0.16877405,0.41109565,-0.4662588,0.024073623,0.25661173,-0.12416531,0.50293756,-0.61793685,-0.13728882,-0.13522622,0.27878523,-0.31296903,-0.2892869,0.048597332,0.2867858,0.622915,0.004778899,-0.22949699,-0.16343786,0.03811519,-0.050152995,0.4933947,-0.28800362,-0.3272039,-0.2254466,-0.20725808,0.30929,0.30047053,0.23095028,-0.23665205,0.008649936,0.081395626,-0.22908543,0.34237304,0.5198564,-0.35814828,-0.10590102,0.32124227,0.69395745,0.061083134,-0.037819743,0.20423014,0.078851685,-0.52417153,-0.24770865,0.0639207,-0.31311035,0.38861826,-0.16264637,0.15685333,0.55000556,-0.21140242,0.07727383,-0.037560828,-0.013914695,-0.1251801,-0.50634253,-0.60982317,0.38437095,-0.4191613,0.26328075,-0.18319392,0.6940431,0.14624292,-0.6550807,0.3305171,-0.6157005,0.12561457,-0.0819013,0.55189264,0.6195596,0.33563244,0.4354317,0.74746776,-0.31237662,-0.040676557,-0.06572633,-0.011434183,-0.043601613,-0.24232548,0.123422936,-0.4701158,0.08202894,-0.14905931,-0.18924618,-0.029178904,0.71306545,-0.6783358,-0.054378632,0.24870385,0.8322964,-0.35436395,0.0057142056,0.88485074,1.0504963,0.99527526,0.096627235,1.4578427,0.39140967,-0.3527755,0.124912016,-0.14397441,-0.79745066,0.3089562,0.46522048,-0.04999379,0.29171273,0.28402883,-0.15619867,0.6005016,-0.55395687,0.050514594,-0.21495351,-0.044764895,0.04137856,0.003704722,-0.42715743,-0.08433371,-0.03396917,0.022100508,0.14623931,0.07356327,-0.2755408,0.23935558,0.13268913,1.7826797,-0.33779538,0.06408321,0.15354799,0.37718704,0.10803375,-0.16983272,-0.11509096,0.34437877,0.41433626,-0.0030364578,-0.693603,0.12697843,-0.1588636,-0.35239884,-0.28602722,-0.13950044,-0.14099225,-0.09212438,-0.3770673,-0.2771072,-0.23925963,-0.43032667,0.2385673,-2.336477,-0.19935966,-0.18075721,0.4149771,-0.21998169,-0.5032942,-0.08116714,-0.37234285,0.4275878,0.3014855,0.27785316,-0.64945424,0.5678327,0.5010115,-0.47672096,-0.06005567,-0.7484846,-0.21989308,-0.07498348,0.17513315,-0.07508887,-0.16092221,-0.11434555,0.16370961,0.40494892,0.15124032,0.18578163,0.34035423,0.58413404,0.047570292,0.68681526,0.10939272,0.6296756,-0.22097088,-0.23773256,0.45019862,-0.5138396,0.07303015,-0.011639962,0.09605576,0.37876037,-0.6592388,-0.8210614,-0.96652955,-0.45970517,1.1237733,-0.19808133,-0.51588976,0.19871174,-0.49511582,-0.42194477,-0.09189921,0.5932232,-0.08331703,-0.070276335,-0.98574644,-0.15856196,-0.108027786,0.2777979,-0.0056747934,0.035067447,-0.6060516,0.78409237,-0.29957053,0.48814037,0.42740667,0.15358527,-0.15962079,-0.56291664,-0.10626336,1.0849373,0.38032863,0.18593472,-0.17179108,-0.09233824,-0.33581975,0.035519425,0.012604734,0.5268613,0.8260755,-0.038610756,0.12484799,0.33973792,-0.020583896,0.02744523,-0.16504908,-0.42014816,-0.28381985,0.023091912,0.6332041,0.42180306,-0.15926565,0.37803885,-0.2286134,0.4146636,-0.2212076,-0.331243,0.2622506,1.1601914,-0.20509328,-0.36308286,0.90836835,0.35114703,-0.40059775,0.4344517,-0.7731677,-0.15805252,0.30129626,-0.14800496,-0.6043094,0.2718881,-0.3269682,0.08463674,-1.0687928,0.34691185,-0.25152352,-0.5266322,-0.54901236,-0.20288672,-3.020621,0.3213744,-0.2668483,-0.12818597,-0.106886946,-0.30361474,0.34712622,-0.5058974,-0.75012237,0.19579676,-0.036790144,0.6490638,-0.040956557,0.1374719,-0.23533106,-0.27867505,-0.35815552,0.10463948,0.2844055,0.36884293,-0.12453142,-0.45758873,0.02966072,0.015563871,-0.32841095,-0.02529678,-0.74038386,-0.49856326,-0.1286963,-0.70336497,-0.22267172,0.6130468,-0.26090837,0.022557782,-0.3654273,-0.018549332,-0.19363293,0.37292543,0.025951143,0.29456815,0.018937739,-0.17810036,-0.13616621,-0.22530922,0.2074271,0.03287953,0.037112154,0.12709525,-0.31660464,0.20287775,0.30729574,0.63752747,-0.08707281,0.9649836,0.553649,-0.12911291,0.229731,-0.23635975,-0.23949239,-0.5716058,-0.2924171,0.034217633,-0.53192496,-0.48855942,-0.0552224,-0.39621335,-0.82754546,0.6516332,-0.12380001,0.1178525,0.17503211,0.4881001,0.5535377,-0.10775685,-0.04666078,-0.09573459,-0.18438706,-0.52503365,-0.292476,-0.5551587,-0.41596112,0.16124545,1.1183442,-0.14825958,0.20485717,0.39664122,-0.21235721,0.041552186,0.25133798,-0.08338798,0.09935614,0.80054486,-0.10403914,-0.648812,0.1970829,-0.04926946,-0.23823167,-0.64977425,0.28620613,0.7894811,-0.74416,0.7878376,0.42704958,0.064101085,-0.3406131,-0.59929615,-0.17643642,-0.06459987,-0.3353315,0.51270306,0.3016453,-0.76644427,0.38272065,0.42523214,-0.0662068,-0.91249454,0.5545272,-0.12760904,-0.28591898,0.0131222885,0.50510263,-0.010619927,0.046493657,-0.1326583,0.26847035,-0.34086528,0.22893293,0.22476842,-0.20094512,0.10400295,-0.20590773,-0.061146118,-0.77024585,0.058786336,-0.69157666,-0.28226966,0.24610311,-0.09775675,0.056407996,0.46130422,0.14130937,0.53386503,-0.27243155,0.087227836,-0.108306736,-0.37749034,0.2369971,0.49415764,0.3627761,-0.5202841,0.5961564,-0.11030127,-0.1741883,-0.27666503,0.02442597,0.5264069,-0.08129314,0.38943213,-0.124988645,-0.12384435,0.3904333,0.8693852,0.25088957,0.5860098,0.16375622,0.0155448,0.22634667,0.21126343,0.27693835,-0.1671709,-0.6722879,0.05377352,-0.085508436,0.16368912,0.4357791,0.14360894,0.36218676,-0.2135301,-0.33294266,-0.044382695,0.11713365,-0.17760497,-1.0536427,0.23369122,0.0006712744,0.8218479,0.5268312,-0.04910136,0.13048752,0.5302378,-0.11602742,0.016817214,0.3016555,0.06155346,-0.36254817,0.5106675,-0.69639164,0.28361037,-0.17531368,0.07383268,-0.07812376,-0.034425642,0.5778641,0.817097,-0.13553038,0.03396103,-0.111176364,-0.04101452,0.2553114,-0.4997698,-0.010342703,-0.5853218,-0.2663429,0.76062214,0.5977555,0.5181391,-0.30566242,-0.041530803,0.11190552,-0.14764515,0.18461488,0.14165017,-0.033889778,-0.016327139,-0.68698657,-0.2769562,0.4875938,0.077381134,0.062082887,0.007941232,-0.49491236,0.25355676,-0.16596912,0.042714544,0.033236604,-0.81674266,-0.16726646,-0.41374123,-0.45950222,0.3046196,0.09310095,0.0680724,0.2127277,0.062453922,-0.26418453,0.2540108,0.050155144,0.8459063,0.18442413,-0.04843923,-0.36106876,0.19149238,0.13759181,-0.292436,-0.0012111939,-0.27069774,0.2199436,-0.7547355,0.5583127,0.100667715,-0.53265643,0.4167768,-0.15124597,-0.03416568,0.6117334,-0.22588918,-0.110412724,0.2522897,-0.29229015,-0.2465163,-0.28827363,-0.11313323,0.19453672,0.03995103,0.14240903,-0.09331381,-0.034964424,-0.1952152,0.6851034,0.09188839,0.43883345,0.6730236,0.0693216,-0.28916198,-0.07975078,0.10156584,0.57190377,-0.2056924,-0.3481354,-0.13321802,-0.6969203,-0.12693748,0.4071492,-0.08828121,0.43723387,0.08369497,-0.27966845,0.9984944,0.21954864,1.1060665,-0.097901374,-0.39935333,-0.113594376,0.68320805,0.024079856,-0.17015566,-0.43444008,0.9124612,0.51324284,-0.07701351,-0.0051091816,-0.3585205,-0.20711364,0.2277348,-0.15176679,-0.0009410748,-0.13253045,-0.6614368,-0.29680032,0.17721128,0.36300808,0.15347286,-0.08330417,0.5327788,0.3651689,-0.23813747,0.30484784,-0.5064742,-0.17829615,0.37186712,0.20988688,-0.024714649,0.04430948,-0.3233064,0.2975493,-0.5817659,0.0007065764,-0.37589586,0.07601185,-0.065044515,-0.26440424,0.12089015,-0.03144056,0.3345172,-0.47809204,-0.13523847,-0.12188936,0.44759244,0.29947582,0.16565312,0.6154668,-0.2759517,0.12281758,0.05846649,0.59367526,1.1200734,-0.08806522,0.1201049,0.27471843,-0.42249808,-0.6376308,0.44931918,-0.30418384,0.015517216,0.22711664,-0.25815076,-0.42758548,0.31855875,0.330732,-0.19024572,0.10485225,-0.6803824,-0.22875382,0.31297824,-0.21016847,-0.033455428,-0.23172417,0.1529097,0.7588611,-0.1642134,-0.24502207,-0.0099544665,0.38446712,-0.3432711,-0.56055975,-0.061538585,-0.5665242,0.40786332,-0.011631274,-0.3625929,-0.06086529,-0.019472687,-0.40556434,0.050743677,0.21868812,-0.36088532,0.11853178,-0.44526705,-0.11932572,0.9568609,-0.006469543,0.05161116,-0.5655903,-0.45600563,-1.0328988,-0.2951635,0.2696185,0.16409718,0.111264475,-0.45234755,0.082202025,-0.2232962,-0.22625971,0.22266576,-0.3463217,0.45991796,0.21092854,0.74549675,-0.23284842,-0.7404269,0.111493066,0.052715864,-0.29631287,-0.5065703,0.63215,0.14543712,0.8928741,0.05775594,0.03925946,0.10943564,-0.5523168,0.0381254,-0.1274517,-0.17857677,-0.87056553,-0.14672865 -514,0.48197073,-0.061342563,-0.45668152,-0.011954708,-0.27047703,0.16332696,-0.15466452,0.41166702,0.33326578,-0.45663118,-0.28306413,-0.18849131,-0.02223739,0.3092856,-0.16948073,-0.45185804,0.05562898,0.30123243,-0.54344255,0.5388325,-0.33164755,0.3706492,0.1750067,0.44973454,0.22612607,0.07988347,0.27614293,0.046701077,-0.32495198,-0.24781707,-0.17170425,0.24931227,-0.6731955,0.27631146,-0.3490515,-0.5199603,-0.099082574,-0.664885,-0.318804,-0.6384924,0.25604314,-0.79156464,0.63724834,-0.052079625,-0.09595452,0.42929322,0.07452599,0.17583264,-0.1359459,0.0032138804,0.057920627,-0.25093603,-0.16566303,-0.20546614,-0.30525237,-0.16722178,-0.6393629,0.14203788,-0.402797,-0.02202194,-0.3196862,0.15397176,-0.1392433,0.045760337,0.07287069,0.43152437,-0.40414777,0.23591089,0.09010327,-0.26046208,-0.06348385,-0.5477546,-0.23734729,0.009179096,0.38101873,-0.30524173,-0.2048545,0.1551945,0.28803024,0.6082279,0.087987185,-0.097749285,-0.33575693,-0.070490904,0.10445998,0.65012974,-0.05188236,-0.37954548,-0.25660548,-0.055395387,0.26850334,0.024265762,0.2554818,-0.14648663,-0.15154922,-0.2555127,-0.18976632,0.38095492,0.36763063,-0.46962157,-0.2523508,0.37988016,0.50274265,0.2888897,-0.089328006,0.12942624,0.048902307,-0.5734991,-0.1414085,-0.118572675,-0.30316168,0.58378685,-0.17735514,0.36908174,0.40282488,-0.08600831,0.07610305,0.2513934,0.091098905,-0.08819591,-0.23774567,-0.16942559,0.31475085,-0.374108,0.060888257,-0.014551693,0.7827085,0.1921104,-0.6438712,0.34347057,-0.51205015,0.18469355,0.04393112,0.42703938,0.6932568,0.35087922,0.29303408,0.7173406,-0.39730924,0.09064971,-0.050332963,-0.24176535,-0.1565721,-0.3064952,-0.089758106,-0.5060802,0.09768762,0.07757513,0.048570838,0.3356485,0.6076594,-0.4846476,-0.19798665,0.090030834,0.78781253,-0.28143176,-0.22696483,1.0394915,1.0440272,1.1884528,-0.05963816,1.33527,0.25977725,-0.19547412,-0.102550015,-0.09014682,-0.7415423,0.2336858,0.29003724,-0.30118254,0.36546925,0.15836896,0.012938985,0.18723074,-0.40280375,-0.051302414,-0.103241704,0.04995988,0.023341464,-0.08722866,-0.43739817,-0.32942614,0.016187048,-0.009957954,0.2804931,0.22869857,-0.16719699,0.60356534,0.0752791,1.527516,-0.09680014,0.060055044,0.06718566,0.4134173,0.30433723,-0.09212196,-0.20545562,0.14142616,0.26839444,-0.1055416,-0.49682182,-0.045243736,-0.18778421,-0.46841478,-0.23671408,-0.24416848,-0.29892465,-0.081632785,-0.2139862,-0.2104081,-0.097332604,-0.48418215,0.46125698,-2.5712144,-0.37145934,-0.04391895,0.33210403,-0.21561678,-0.3797168,-0.23680802,-0.43473572,0.38521174,0.27739272,0.4447723,-0.53759754,0.28150782,0.48209766,-0.58446455,-0.34902623,-0.5390419,-0.05484909,0.08908422,0.2773306,0.008518615,-0.23198535,-0.11361421,0.10977055,0.4417434,-0.108751945,0.05642912,0.43497586,0.41550294,0.07942484,0.42144087,-0.08646689,0.5341489,-0.30742362,-0.20445307,0.52585185,-0.35006645,0.3798918,-0.32511982,0.1789658,0.51699764,-0.45030528,-0.9141561,-0.6682324,-0.23232964,1.2322241,-0.104681745,-0.41169545,0.15916313,-0.3068111,-0.30245176,0.069676735,0.51083577,-0.14764461,-0.06409879,-0.75331336,-0.041977722,0.103810586,0.0681777,-0.0047856653,0.051478095,-0.5298614,0.6847064,-0.055840276,0.41975814,0.37279612,0.30283123,-0.1774135,-0.39526916,0.08302379,1.0417384,0.4088089,0.14596902,-0.3296307,-0.08833301,-0.41528532,-0.08599152,-0.0036327168,0.38748935,0.58192223,-0.059907254,0.16031465,0.3164659,0.28533527,0.17988017,-0.25646996,-0.19642743,-0.2052838,-0.004833426,0.65223414,0.7069742,-0.13723728,0.41589913,-0.10451355,0.16331029,-0.18160698,-0.49550208,0.67247003,0.89690983,-0.25757232,-0.307983,0.6280777,0.28028724,-0.21759656,0.47133717,-0.5714602,-0.44906905,0.35223866,-0.13744566,-0.35586166,0.1347886,-0.23930891,0.10792948,-0.89060056,0.17242484,-0.07326252,-0.37042728,-0.5076579,-0.21793799,-2.6897995,0.16254638,-0.057730373,-0.0810305,-0.18805793,-0.31640643,-0.038644295,-0.40918854,-0.6871605,0.12619011,0.07950759,0.73107237,-0.22047487,0.27059203,-0.033469584,-0.4325626,-0.48097998,0.035613023,0.0031985599,0.4118888,-0.047595065,-0.32633618,0.054505873,-0.30392936,-0.3960977,-0.031680252,-0.66701895,-0.3388098,-0.06834135,-0.41227937,-0.26623413,0.5744041,-0.5571161,0.068721734,-0.38322368,0.0006418377,-0.11267976,0.2796223,-0.03809147,0.061931092,0.1415118,-0.12806162,0.014090802,-0.11463589,0.33467028,0.18059766,0.12555125,0.4971113,-0.29760554,0.2447416,0.30070263,0.6848917,-0.1624693,0.96325845,0.38881892,-0.10597398,0.30734292,-0.318373,-0.3430765,-0.46821976,-0.19742109,-0.06959063,-0.47874665,-0.4981673,-0.09082169,-0.33263615,-0.9718415,0.54394627,0.12237848,0.20664643,-0.0160078,0.3591761,0.5171694,-0.25434044,-0.052956235,0.008691364,-0.160135,-0.4894402,-0.44427726,-0.6432393,-0.48145145,0.04837052,1.0664426,-0.19288592,0.15682958,0.31882706,-0.28250137,0.02213644,0.22322538,0.022059662,0.014445926,0.48690417,0.029992793,-0.7343717,0.37987366,-0.14712,-0.22391383,-0.5600048,0.20896554,0.6287195,-0.5953616,0.4626865,0.5064057,0.054582495,0.03600158,-0.41252443,-0.16306044,-0.30180082,-0.2244565,0.30378813,0.32856926,-0.7478631,0.5323864,0.28040403,-0.2462431,-0.91677725,0.46125776,0.04863194,-0.15272294,-0.00037347418,0.38098758,0.3380631,-0.0570153,-0.15134035,0.055212803,-0.48080403,0.47159344,0.03983908,-0.06530111,0.23130682,-0.3210056,-0.32798216,-0.69353926,-0.08697856,-0.4038516,-0.3355019,0.06439992,0.1253318,0.073889025,0.114670716,0.21441428,0.3552293,-0.45402312,0.054142572,-0.10221573,-0.2047508,0.21514638,0.42591694,0.5809721,-0.37797803,0.56099015,-0.011031353,0.009363924,-0.0005376935,0.005885797,0.35367376,-0.05210528,0.27881598,0.24963416,-0.23696797,0.15699145,0.6086916,0.18176067,0.22177164,0.123025246,-0.17158148,0.24629888,0.10435124,0.35035488,-0.077136196,-0.4634729,0.03891664,-0.35376135,0.088120066,0.41488966,0.26048777,0.4071483,-0.095944166,-0.24479449,0.02580188,0.10501503,-0.13656503,-1.2302291,0.10770529,0.078644134,0.8356027,0.5205106,-0.0639307,0.17404659,0.6664468,-0.165978,0.11151902,0.36351618,-0.124976814,-0.4247301,0.5148438,-0.599,0.5062441,-0.11445648,-0.067786284,0.15838826,0.005742026,0.44644314,0.7589081,-0.15173802,0.016111165,0.008738165,-0.23210306,-0.016171467,-0.41529346,0.1087235,-0.56881696,-0.08100842,0.9186384,0.51858777,0.3295543,-0.20185111,0.04265982,0.00096121005,-0.15891409,0.03926726,0.14374109,0.14651088,-0.12250918,-0.6803785,0.04698736,0.5124446,0.15822713,0.16729133,0.1783167,-0.37623772,0.26958936,-0.20121494,-0.04812215,-0.13476199,-0.7555834,-0.08030361,-0.30423257,-0.45176274,0.25574547,-0.025475154,0.1781036,0.21905306,-0.009262919,-0.21899168,0.43603468,0.10472657,0.71449697,0.111766085,-0.22487108,-0.14738823,0.41312948,0.24122335,-0.22839996,-0.039644923,-0.20321354,0.04752975,-0.4792238,0.529211,-0.053353515,-0.20725545,0.2265607,-0.029929727,0.15831664,0.5465531,-0.057634775,-0.012592867,0.111148104,-0.19241191,-0.42244843,-0.053439695,-0.28129247,0.21976373,0.34149918,-0.29494184,-0.12273021,-0.10596291,-0.11709727,0.34195164,-0.043279205,0.47047982,0.2923648,0.013521319,-0.43393072,-0.07903051,0.19602005,0.546125,-0.07338721,-0.18848218,-0.23710953,-0.38177687,-0.28319404,0.3705387,-0.14239483,0.10776687,0.12986574,-0.13261887,0.7308531,0.17530043,1.0750307,0.12765129,-0.2932077,0.13014717,0.47666985,-0.15094827,-0.20950206,-0.4131891,1.0670345,0.44124696,-0.083605304,-0.11688995,-0.33333415,0.027218755,0.01294033,-0.25377217,-0.24542761,-0.0584959,-0.5538857,-0.20768218,0.18634148,0.17456268,0.15361612,-0.2137474,0.18354538,0.32648274,-0.04993229,0.31357422,-0.4708592,-0.40863803,0.40821913,0.30465826,-0.08538548,0.06253214,-0.36820894,0.35934687,-0.683438,-0.08684117,-0.19738163,0.10762106,-0.33738202,-0.2355591,0.31717777,0.2180189,0.32953167,-0.3574418,-0.35518423,-0.38776797,0.26436347,0.09637491,0.12620118,0.4503948,-0.29485112,-0.015412659,0.013613863,0.37167838,1.0630339,-0.2401048,0.15123065,0.34261927,-0.22465035,-0.37589172,0.3077193,-0.437515,0.30907395,0.10004433,-0.12376343,-0.7224196,0.13063031,0.17707062,0.23490962,0.14299668,-0.6041283,-0.100542545,0.2250325,-0.18625805,-0.18560424,-0.34009284,-0.1847955,0.55251527,-0.17058055,-0.2486724,0.21929066,0.29250106,-0.22685972,-0.6422077,0.00026128974,-0.36783692,0.26280484,0.11681234,-0.29436573,-0.2923848,0.011313447,-0.5053023,0.018994076,0.1966474,-0.37786105,0.049556576,-0.48233637,0.07388045,0.88761914,-0.27489325,0.43548456,-0.46160984,-0.5398181,-0.9685891,-0.26653633,0.3275884,0.16025813,-0.043820154,-0.5474768,-0.04240766,-0.28007892,-0.3369891,0.10605831,-0.4583837,0.4983669,0.18402554,0.3880326,-0.11725033,-0.8360345,0.13597305,0.009715042,-0.29382768,-0.4829895,0.35990858,0.14712791,0.8405577,0.08919967,-0.12700406,0.27784726,-0.62635463,-0.029586043,-0.19147627,-0.010333159,-0.5974594,0.089426704 -515,0.4993614,-0.52453095,-0.6405702,-0.19302619,-0.20565088,0.017973565,-0.23986216,0.293776,0.11151024,-0.47147074,-0.16933481,0.022182494,-0.0014487008,0.46190706,-0.14149065,-0.84546113,-0.08859652,-0.011795341,-0.48838553,0.4250857,-0.60410094,0.32896617,0.0039023906,0.48934996,0.099514484,0.33806786,0.20425999,-0.069855645,-0.12112283,0.062181797,-0.08554045,0.2238305,-0.7028679,0.19185303,0.22230999,-0.4561727,0.030653298,-0.43123963,-0.3083536,-0.65025336,0.32770675,-0.9053592,0.58898246,0.13211039,-0.35258362,-0.026130551,-0.21469301,0.30916944,-0.61188227,0.2903035,0.09373236,-0.24762322,0.005221226,-0.3435935,-0.23652351,-0.39729846,-0.6384265,-0.011516675,-0.5735945,-0.12580536,-0.04353434,0.10448303,-0.40063366,-0.040005505,-0.38246012,0.5406416,-0.609557,-0.19744629,0.24971366,-0.12763706,0.22559637,-0.565579,-0.18722223,-0.26036927,0.12879096,-0.1084793,-0.3880429,0.039679233,0.18453635,0.6754852,0.19256978,-0.31282035,-0.37244025,-0.035591196,0.24418916,0.51530606,-0.17088576,-0.45962515,-0.26870435,-0.03249641,0.28868547,0.23513447,0.054646295,-0.45512363,0.05599167,0.10860199,-0.17074454,0.54828733,0.5670833,-0.21303982,-0.30439812,0.27982673,0.5539916,0.040811434,-0.049316343,0.33350554,0.00839815,-0.46095213,-0.28991887,0.3894924,0.15611327,0.6487446,-0.19390722,0.27251697,0.79829246,-0.33247247,-0.021631658,-0.06433573,-0.13897012,0.088286005,-0.22321981,-0.31747425,0.2784065,-0.5165944,0.08384811,-0.39260408,0.78951234,0.19258142,-0.8873988,0.3003686,-0.48553458,0.19937132,-0.213893,0.8682526,0.71893173,0.4642385,0.25290382,0.70351344,-0.69385093,0.12440914,0.14666475,-0.37095556,-0.095794745,-0.10218493,-0.07919801,-0.37789688,-0.04459876,-0.19873166,-0.12458765,-0.13412966,0.4597012,-0.47380757,-0.02787424,-0.1828571,0.59744817,-0.43043885,-0.052605186,0.9886713,1.0376182,1.053196,0.098294295,1.2792009,0.45234847,-0.12750575,0.06281814,-0.21362258,-0.5772253,0.2684324,0.481956,0.22386025,0.55009407,-0.0024424095,-0.07218271,0.47801006,-0.24786146,0.16377948,-0.23263335,0.1502163,-0.092299044,-0.15404513,-0.56160563,-0.1100212,0.06965807,-0.037640862,-0.17289847,0.31311062,-0.18214393,0.6896911,0.021004893,1.4127522,-0.05519122,0.14291327,-0.09298015,0.4206419,0.20356452,-0.24814947,0.094800055,0.28936377,0.60199404,0.035607353,-0.8823538,0.04093905,-0.31551948,-0.6152709,-0.2713348,-0.399628,0.08763859,-0.3285258,-0.6020859,0.053506706,0.038547352,-0.27580357,0.23666398,-2.243103,-0.26643217,-0.06517772,0.32834914,-0.20216839,-0.35447666,-0.06654274,-0.42382732,0.25917366,0.48679557,0.43273187,-0.91326445,0.53088003,0.5058736,-0.31706628,0.00023096055,-0.8070574,-0.17593347,-0.18103445,0.32423195,-0.15452538,-0.06592751,0.06594856,0.09394977,0.67476934,-0.16259833,-0.057632234,0.045811485,0.5934177,0.011791264,0.61386496,0.22987634,0.5503816,-0.5000685,-0.086230434,0.42336652,-0.41567865,0.3324189,0.14110671,0.1775168,0.35985556,-0.6081373,-0.8931981,-0.70021635,-0.42651176,1.1646641,-0.36344823,-0.41901794,0.19832355,-0.16717225,-0.32030046,-0.24239628,0.3913689,-0.32744798,-0.029070335,-0.8584772,-0.0016644945,-0.10975248,0.20790692,-0.069435805,0.11516055,-0.26193854,0.6272358,-0.19972758,0.47488582,0.5677574,0.20866053,-0.12992065,-0.58634627,0.08783426,0.9393453,0.33852378,0.1765439,-0.28122172,-0.1992587,0.014022599,-0.002403438,0.105068445,0.5797402,0.93381506,0.021581432,0.110175826,0.3714129,-0.10922339,0.112595625,-0.2595029,-0.4107221,-0.28754863,0.22071011,0.62726736,0.62196296,-0.32507506,0.4936492,-0.12933217,0.25569096,-0.058161687,-0.45733523,0.59254366,1.1548194,-0.08504636,-0.21496814,0.6224411,0.4891955,-0.67249876,0.44138741,-0.72167593,0.042565748,0.5758803,-0.17143582,-0.42260575,0.19421445,-0.3493255,0.16459294,-1.0045431,0.40504026,-0.28789297,-0.6369382,-0.592029,-0.24390812,-3.5310354,0.26692203,-0.37137294,-0.24010836,-0.12825659,-0.42286345,0.24946052,-0.85417366,-0.5458463,0.27396917,0.13070856,0.37007606,0.015383795,0.12388459,-0.4006665,-0.061826333,-0.18316191,0.24437277,0.2203923,0.118504375,0.0015399456,-0.34988406,-0.033413846,-0.16997935,-0.57155484,0.08043623,-0.58061355,-0.6463675,-0.12423556,-0.615902,-0.34512123,0.73233265,-0.05684785,-0.124907315,-0.10675516,-0.03429011,-0.28366622,0.45179144,0.050648343,0.3099304,0.06526465,-0.06653326,-0.17145602,-0.30442628,0.09732163,0.06277903,0.4024664,0.24937749,-0.3943604,0.28254095,0.71475583,0.78373903,0.08747738,0.5378195,0.38612735,-0.044730738,0.29073706,-0.3467051,-0.3091301,-0.85047513,-0.47115585,-0.2823098,-0.5194978,-0.5570919,0.059948266,-0.32221723,-0.9128135,0.57973975,0.006307187,0.276064,-0.10030771,0.36848494,0.41130814,0.0053775706,-0.02347076,-0.22090203,-0.21537317,-0.53313977,-0.34711495,-0.79136634,-0.7571447,0.18114668,1.12166,-0.034005433,-0.09118051,-0.0040522516,-0.45873603,0.16426583,0.2941161,0.08768494,0.26535347,0.22753887,-0.16291584,-0.60638684,0.35441867,0.052136708,-0.28488764,-0.5447442,-0.121259846,0.8361657,-0.6990425,0.77850085,0.29911435,-0.055457886,-0.035320923,-0.62947315,-0.43090308,0.12582342,-0.017629514,0.6037068,0.1894297,-0.70631456,0.31511095,0.32995367,-0.074641235,-0.5960447,0.39525452,0.0036232274,-0.18999599,0.12584396,0.43901715,-0.08750826,-0.16058299,-0.16278672,0.31217018,-0.46914646,0.23367858,0.35878053,-0.06389292,0.30168223,-0.035371277,-0.26489946,-0.74830943,-0.0158338,-0.8227079,-0.11999971,0.2222532,0.02758702,0.22032027,0.0012089213,0.06429594,0.541764,-0.4445248,0.13434677,0.04333042,-0.39019442,0.26082093,0.55212426,0.16914056,-0.53812474,0.61929065,0.1830294,0.04521576,-0.051640898,0.35508272,0.45866346,0.29131585,0.44516048,-0.012040894,-0.0885605,0.2887354,0.8621581,0.3092618,0.7557278,0.38032636,-0.13356082,0.38059327,0.23362432,0.33458373,-0.15743934,-0.08641412,0.11370777,0.29027113,0.19075592,0.4806423,-0.039522085,0.5308934,-0.29364672,-0.09096133,0.2895867,0.26036057,-0.056853533,-1.1354244,0.24843115,0.22991507,0.63137406,0.54641944,0.08389958,-0.08352023,0.4226749,-0.39960155,0.005800287,0.3636265,0.13042101,-0.57749265,0.7800224,-0.5031924,0.35104966,-0.2265122,0.16202737,-0.028956363,0.06511859,0.4103371,0.7529022,0.022022093,-0.00022647779,-0.06298473,-0.06924351,0.013204694,-0.62775517,0.064645104,-0.470404,-0.30783102,0.794625,0.49576774,0.35691395,-0.08218012,-0.19045796,0.18520927,-0.06643113,0.29665866,-0.073752716,0.0132722035,0.049592227,-0.6177211,-0.3913047,0.5425258,-0.007377515,0.20436817,-0.05137968,-0.41703868,0.38427404,0.0059494376,-0.23274446,0.04854768,-0.6558129,0.12427407,-0.48907685,-0.54067504,0.3186442,-0.3999051,0.1378284,0.24298346,0.08776033,-0.5000604,0.06901966,0.04333785,0.8672678,-0.06366845,-0.22843993,-0.40840045,0.0701325,0.4156628,-0.34848508,0.100789316,-0.30658877,0.17527731,-0.62519664,0.42325506,0.0055918843,-0.4180862,-0.10420781,-0.050730154,-0.04084143,0.565515,-0.32959536,-0.30730549,0.10301901,-0.09005741,-0.28229442,-0.312084,-0.24976148,0.37070575,0.053724747,0.13268243,0.13665994,0.0396686,-0.0052458644,0.4611297,0.23835717,0.2568329,0.37316844,-0.10117433,-0.54165965,-0.1014267,0.12539828,0.35235667,0.24694002,-0.16173273,-0.3463802,-0.4906589,-0.18314809,0.17086244,-0.27485648,0.33512464,-0.010449062,-0.5640379,0.9491031,0.15452062,1.2930257,-0.036763106,-0.3961326,0.006306559,0.48066974,0.1146124,0.00092152756,-0.1642904,1.0058953,0.5741555,-0.19179118,-0.30819634,-0.5687682,-0.36809552,0.17608742,-0.30302432,-0.28485477,-0.099648595,-0.7261159,-0.09996287,0.26587802,0.14048503,0.17975198,0.056310367,0.14426541,0.13805097,0.013138414,0.38555232,-0.5847197,0.1218349,0.17462908,0.13755943,0.020893475,0.09332079,-0.4250014,0.32303914,-0.6940224,0.3825264,-0.4715338,0.17741273,0.086616315,-0.2834515,0.26371494,0.059113335,0.22483851,-0.4074115,-0.284589,-0.32738855,0.8359904,0.16048272,0.39079687,0.83127713,-0.3075176,0.15219049,0.13249806,0.43873847,1.4162006,-0.06608615,-0.10885068,0.32398906,-0.31419334,-0.78523713,0.2569466,-0.32204852,0.33324566,-0.19793268,-0.44329453,-0.62042063,0.15346353,0.17548622,-0.1185837,0.18738091,-0.53252214,-0.3244343,0.51283926,-0.4478674,-0.25187686,-0.38746095,0.2471602,0.70434374,-0.47150633,-0.31144688,-0.043369222,0.3767183,-0.29320085,-0.37050724,-0.028696133,-0.24355714,0.32352456,0.11080479,-0.35664198,0.080036364,0.2751111,-0.2846638,0.2011009,0.5507856,-0.32949972,0.13588591,-0.0946249,-0.4107801,1.0683262,-0.081864916,0.081457496,-0.56785005,-0.49161342,-1.0512761,-0.4415667,0.46336463,0.20626305,0.05736346,-0.87218803,0.21393521,0.035754096,0.08760336,0.012326658,-0.5123022,0.4895537,0.059185922,0.5368712,0.05066358,-0.8067798,0.082265735,0.22561389,-0.22916047,-0.55669504,0.67747086,-0.16796398,0.6900237,0.09077088,0.25338888,0.11768945,-0.6172897,0.20156397,-0.40437606,-0.38784918,-0.7195093,-0.0491136 -516,0.38833612,-0.22331135,-0.52271444,-0.12273347,-0.12431395,0.16939034,-0.09247494,0.6382496,0.27548364,-0.3102471,-0.17320326,-0.027663182,-0.058637083,0.116113916,-0.071918644,-0.35571423,-0.06136479,0.1586879,-0.34655595,0.3064436,-0.44671223,0.2414625,-0.23587857,0.48288026,-0.008385726,0.32277557,-0.07698591,-0.11211856,-0.0941967,-0.06990364,0.05249656,0.20009701,-0.5034653,0.18468535,-0.21073274,-0.22205885,0.06657764,-0.45091024,-0.4037541,-0.6351467,0.20208056,-0.6702794,0.55680877,0.13670053,-0.25671017,0.11518077,-0.11038587,0.31982288,-0.31118867,0.15661652,0.2090733,0.027147233,0.030620605,-0.1681282,-0.22373803,-0.31891897,-0.41708788,-0.02758566,-0.32593456,0.11481057,-0.046057265,0.09571905,-0.20403457,-0.09606123,0.054483037,0.19025488,-0.39812157,0.07492752,0.2316018,-0.07115957,0.31761572,-0.50349575,-0.057465546,-0.18771955,0.25031942,-0.22806609,-0.35054383,0.17225806,0.2420878,0.38626626,-0.1512172,-0.08956813,-0.21874169,0.06613641,0.057965923,0.51313066,-0.19409218,-0.3461878,-0.15828688,-0.011607059,0.16461551,0.3179911,-0.026774362,-0.3284735,-0.08825741,-0.034104887,-0.16962685,0.18697026,0.45311317,-0.17066193,-0.21684077,0.44100827,0.65835094,0.24251921,-0.13190435,0.0752204,0.102691785,-0.48528567,-0.26936752,0.01613711,-0.066913486,0.42126852,-0.060636204,0.16561364,0.6005497,-0.22534576,0.044430885,0.120794944,0.14491403,-0.065843925,-0.36835107,-0.2605808,0.11833144,-0.43479106,0.11647391,0.043301325,0.48612022,0.16654356,-0.773811,0.30379072,-0.48768565,-0.039471574,-0.14506564,0.46018973,0.72339904,0.36310267,0.07732113,0.7533568,-0.45862404,0.10227449,-0.110116705,-0.28834465,0.24392779,-0.13726631,-0.27819216,-0.5619251,-0.032947216,0.14481668,-0.21748923,0.15719615,0.20727518,-0.523127,-0.094047174,0.2356285,0.6971577,-0.28402767,-0.012766817,0.5297279,1.0229372,0.7881781,0.07888118,1.2174414,0.18318437,-0.20288096,0.29827246,-0.2973515,-0.8583035,0.25729942,0.28398997,-0.40823895,0.2862857,0.25567427,-0.012447382,0.3170905,-0.42167473,0.08163545,-0.17569928,0.23242274,0.061080612,-0.09977215,-0.37198335,-0.16264954,-0.11002148,0.07559826,-0.0015894409,0.11625483,-0.29918084,0.045533735,0.022542706,1.6936404,-0.07523538,0.07114402,0.075862214,0.42995828,0.29672602,-0.23903057,-0.24739002,0.4621695,0.32670325,0.041548435,-0.49088898,0.16538931,-0.0797954,-0.4529497,-0.12314649,-0.21235672,-0.053712767,-0.030795734,-0.41835418,-0.11368662,-0.07464092,-0.24491286,0.56734085,-3.059758,-0.10532091,0.003775867,0.35041922,-0.23188867,-0.37307963,-0.31519964,-0.2910796,0.40052363,0.32258347,0.41370985,-0.61624783,0.22014007,0.363107,-0.4923654,-0.114020094,-0.5607327,-0.023496827,-0.06608774,0.15475067,0.0771901,0.1309532,-0.030567693,0.07930277,0.3489821,0.018736694,0.13106754,0.26429686,0.35062,0.17577538,0.30789492,-0.023885157,0.5513549,-0.2675776,-0.22770227,0.20964594,-0.40178388,0.37846312,-0.06684296,0.1389732,0.36363724,-0.39439696,-0.7744605,-0.7433511,-0.31585464,1.1352737,-0.09913169,-0.2153703,0.24405824,-0.5355391,-0.43868738,-0.06903053,0.48335218,-0.09939657,-0.0769936,-0.78720874,-0.05873576,-0.038698558,0.27711424,-0.04215037,-0.03711682,-0.37498218,0.50465405,-0.057129834,0.45776924,0.39279482,0.12618186,-0.012689216,-0.3630752,-0.023393128,0.785497,0.32899597,0.20225,-0.07186721,-0.13021104,-0.405376,0.0692464,0.19601624,0.47516492,0.6628803,-0.102444,0.08269201,0.23164591,0.06555754,-0.025081446,-0.02912559,-0.20446995,-0.10370314,0.024416719,0.45920214,0.59561026,-0.24884753,0.32938102,-0.09980643,0.19121528,-0.23458685,-0.35581827,0.4562308,0.5041022,-0.16201106,-0.1963712,0.50435513,0.46318203,-0.28969607,0.38621807,-0.64365673,-0.11743344,0.28480133,-0.08074578,-0.3521429,0.150037,-0.28981858,0.13107076,-0.79782486,0.23039038,-0.22508118,-0.4897918,-0.4676891,-0.16299696,-2.8842413,0.17161553,-0.04767397,-0.2199321,-0.03647903,-0.016548077,0.32486483,-0.5375487,-0.5473927,0.21780573,-0.04375713,0.56129247,-0.003473912,0.009881073,-0.24555066,-0.24787806,-0.40026268,0.12710682,0.15591598,0.2842167,-0.06013745,-0.45987344,-0.28798217,-0.085960254,-0.29672313,0.07611145,-0.5548916,-0.3613945,-0.15378754,-0.49677753,-0.14918923,0.6432471,-0.35095105,-0.057669677,-0.12719306,0.08900799,-0.15803662,0.31349915,0.110995464,0.094371065,0.08574986,-0.07379801,-0.11800366,-0.28091666,0.35467649,0.09679745,0.18052319,0.35030276,-0.18648815,0.15694794,0.46464893,0.6000938,-0.306918,0.72578526,0.52251136,-0.15294524,0.24063852,-0.23957387,-0.14215067,-0.22439204,-0.31809774,-0.12336874,-0.40557358,-0.539231,0.006299351,-0.4309814,-0.7978844,0.435462,0.014740025,0.081438676,0.1100124,0.080727376,0.4315572,-0.27138776,0.122676685,-0.07700186,-0.097629316,-0.47163102,-0.39857492,-0.3978262,-0.3688722,0.30588004,1.1482184,-0.31783336,0.111741535,0.10866649,-0.27924946,0.056049425,0.08459227,-0.16037706,0.090525344,0.37600285,-0.021039503,-0.4892521,0.35818842,-0.057451643,-0.29454756,-0.6373922,0.13496672,0.580719,-0.682951,0.6825738,0.28685755,0.053204834,-0.108203545,-0.54174274,-0.21337937,-0.10752963,-0.19485526,0.3608994,0.21234797,-0.82354206,0.3405473,0.3306524,-0.24025595,-0.6275448,0.5392286,-0.048282135,-0.19040336,-0.11758081,0.3242289,0.04252881,0.016574526,-0.21178806,0.33499452,-0.32685512,0.18553202,0.24644177,-0.16500379,0.2565045,-0.13946515,0.053721078,-0.651409,-0.0107235825,-0.48967028,-0.23522295,0.31902176,0.017734239,0.10538375,0.12381495,0.3133313,0.3854634,-0.42783532,0.12252243,-0.038534544,-0.29124936,0.2801945,0.3393428,0.56087905,-0.3006709,0.41770062,-0.057990793,-0.11904045,-0.0030625719,0.1921287,0.4377543,-0.015368079,0.33037472,-0.075745344,-0.1595839,0.22038443,0.7580947,0.10138223,0.2752753,-0.0872621,-0.15076981,0.11103281,0.09289605,0.20930317,0.07032858,-0.54036325,0.02331886,-0.15755013,0.23237015,0.29873863,0.18970571,0.21243954,-0.0559495,-0.189694,-0.012608631,0.24153194,0.20415767,-1.0268854,0.39578167,0.17760292,0.77834475,0.42622256,0.08212763,0.08329691,0.40949455,-0.059366845,0.28372476,0.33710548,-0.08628937,-0.44249153,0.30271143,-0.67503136,0.51849496,-0.018409982,-0.07165513,0.14513305,-0.16667823,0.5154821,0.8824849,-0.018630203,0.06440751,0.095688686,-0.23508975,0.07822567,-0.32318863,0.02838583,-0.7235297,-0.27100685,0.5965193,0.6087044,0.38756707,-0.14220642,-0.09228063,0.1200924,-0.02517576,0.10349225,-0.032620136,0.19798912,0.12773319,-0.65192395,-0.15634228,0.39740413,-0.036646504,0.12046402,-0.016483588,-0.23910722,0.24229966,-0.111569546,0.12344681,-0.041060958,-0.62715924,-0.037428796,-0.32049394,-0.31357384,0.39542732,-0.171041,0.22838278,0.09627167,0.10945397,-0.20470282,0.6211692,-0.029025625,0.8853103,-0.019933837,-0.10746665,-0.5064913,0.38052484,0.2602938,-0.14660631,-0.1354453,-0.31137872,-0.023626294,-0.5569784,0.37750122,0.07631942,-0.28032735,0.14412387,-0.15677586,0.09409598,0.59469193,-0.027029783,-0.2643743,-0.006740303,-0.31215635,-0.32933596,-0.08587032,-0.17764787,0.29176834,0.27838564,-0.023414543,-0.045399833,-0.05734392,-0.10742295,0.2633249,0.15554766,0.36365095,0.3519566,0.054677896,-0.22603965,-0.13619456,0.101514764,0.47555453,-0.10387429,-0.05155593,-0.20075993,-0.4374599,-0.33564574,0.094728775,-0.14956252,0.41792765,0.12843904,-0.01950568,0.58704346,0.10175575,1.0230757,0.00044902734,-0.20295751,0.085918866,0.5136093,0.036655564,-0.106070876,-0.48443553,0.8632657,0.5609482,-0.12572148,-0.05539332,-0.15916406,-0.20072302,0.12997498,-0.15604237,-0.0060414374,-0.05049076,-0.802777,-0.23569909,0.20526157,0.216581,0.18862118,-0.0282926,0.045478284,0.14863284,-0.015162939,0.08676096,-0.41315168,-0.103475,0.33504367,0.43372563,0.053130936,0.21073537,-0.44872794,0.35919023,-0.44350109,-0.038127013,-0.14805089,0.22195847,-0.32858464,-0.39106295,0.07755886,-0.025020916,0.34471464,-0.2918748,-0.36977807,-0.28468725,0.45821968,0.15993173,0.28593203,0.50085837,-0.27479056,0.0029102224,-0.1112896,0.47432423,0.8080816,-0.29033586,-0.10473098,0.65009767,-0.23298731,-0.53662026,0.24487206,-0.4323873,0.24325152,0.004288465,-0.23300405,-0.4819757,0.37656382,0.16236892,0.04206158,-0.015672365,-0.65486866,0.034143515,0.12655939,-0.08472326,-0.1970004,-0.20172271,0.15831752,0.80228585,-0.20139053,-0.43808657,0.14902271,0.27639422,-0.2716797,-0.36635795,0.011995784,-0.34800863,0.18315998,0.021726653,-0.3397448,-0.2607095,-0.047696956,-0.43470588,0.13297163,0.029529164,-0.29815742,0.08648811,-0.38835558,-0.062221687,0.9051545,-0.17566507,0.16766466,-0.40332016,-0.3963302,-0.72719127,-0.28132984,0.40798035,0.17752822,-0.026491674,-0.4702769,0.1110251,-0.07457851,-0.08913636,-0.10886905,-0.21515281,0.5078572,0.041224293,0.28782955,-0.19349328,-0.89094603,0.119098485,0.13676505,-0.3079392,-0.59664965,0.5205686,-0.05867044,0.789832,0.06408534,0.031049516,0.30337867,-0.44049922,-0.0005747463,-0.27063534,0.038371198,-0.72152084,0.045927692 -517,0.33949152,-0.20070569,-0.3661718,-0.25766653,-0.37147003,-0.06265949,-0.22641332,0.39752445,0.36346084,-0.021167597,-0.116263725,-0.023844277,0.029534552,0.37301397,-0.16863884,-0.64720047,-0.12016706,0.089146666,-0.69567645,0.61729413,-0.5375858,0.18476631,-0.12404548,0.35801294,0.11571063,0.32390437,0.27228266,0.005044005,-0.0040098685,-0.18534507,-0.022531044,0.15861061,-0.56282115,0.24063604,-0.32350186,-0.037807524,0.124340914,-0.5360676,-0.18581088,-0.72776526,0.09515054,-0.6874679,0.46683955,-0.02383943,-0.27957252,-0.0833083,0.3909436,0.26441282,-0.33253166,-0.15712701,0.12972276,-0.1674533,-0.13134804,-0.27624756,-0.042887695,-0.4149039,-0.49686316,-0.07574123,-0.59960204,-0.29105255,-0.19169684,0.28824827,-0.3477016,-0.108755484,-0.07414108,0.6010569,-0.360931,-0.014700617,0.43940252,-0.26088265,0.20430791,-0.59572786,-0.05637086,-0.07227381,0.4967608,0.2314489,-0.28829622,0.3910317,0.39056233,0.23166673,0.30001926,-0.4445486,-0.18255602,-0.3403688,0.13489059,0.3992059,-0.056445558,-0.31357303,-0.17656676,0.00081918604,0.17922238,0.3975183,0.07886408,-0.17238823,0.006945263,-0.20911275,-0.207427,0.75127316,0.51957786,-0.15244927,-0.22767782,0.32152963,0.5785348,0.4466157,-0.38715464,-0.046930183,-0.01622633,-0.535277,-0.008269697,0.1795002,-0.096442156,0.4096267,-0.1680118,-0.067171015,0.8796133,-0.12060789,-0.0992809,-0.029498054,0.082355216,-0.091423154,-0.48478022,-0.0908234,0.18309096,-0.46302864,0.008795355,-0.32366195,0.6725833,0.18658392,-0.5941537,0.3425255,-0.5645772,0.19795227,0.103757985,0.5932007,0.6799821,0.48648423,0.40656796,0.74242103,-0.027751466,0.27681166,0.12040358,-0.3559436,0.17667103,-0.5308135,0.10913899,-0.331173,0.083653025,-0.20209798,0.064247645,-0.054295022,0.31048554,-0.5349658,-0.17774987,0.37710115,0.85476655,-0.20432271,-0.090273924,0.8198703,1.1652324,1.0710176,-0.025045034,1.1872075,0.28742024,-0.20646413,0.1547462,-0.30346107,-0.6536328,0.18912141,0.40820494,0.30146512,0.25219655,-0.15918902,-0.05158231,0.37880865,-0.4623862,-0.042484485,0.06207048,0.3892656,0.25290695,-0.12116999,-0.4240438,-0.22208425,-0.013571969,0.038322117,0.1765564,0.22692506,-0.29850525,0.33163553,-0.12422116,1.1116062,-0.03540106,0.07542974,0.13775304,0.6847376,0.35401648,-0.11396014,0.046361186,0.5649513,0.29622558,-0.04059126,-0.5849214,0.31628567,-0.44145808,-0.29760224,-0.12050109,-0.45554584,-0.16002215,-0.031741805,-0.35825038,-0.01507027,-0.0015139729,-0.21089162,0.39718658,-2.9375892,-0.2850377,-0.25079384,0.28967264,-0.23757844,0.002164909,0.0051420764,-0.5348647,0.2719648,0.34505334,0.52413327,-0.5676058,0.44794697,0.53873956,-0.58741695,-0.16050935,-0.7504301,-0.107261255,-0.1689028,0.57303774,0.06272994,-0.008776789,-0.14324729,0.22324161,0.86179113,0.301037,0.123164475,0.43868825,0.33898577,-0.1665778,0.61541194,-0.05191976,0.45878622,-0.2450907,-0.14884038,0.2495244,-0.48932287,0.3564107,-0.27862927,0.10847836,0.6873024,-0.40015522,-1.0393573,-0.6020239,-0.36551064,1.0717199,-0.30708784,-0.5148239,0.1828358,-0.34156674,-0.094219685,-0.016182525,0.75304544,0.0012509525,0.29130363,-0.5800832,0.088306464,-0.07512146,0.11124885,-0.006912407,0.009249449,-0.37780094,0.7758461,0.023352828,0.5301181,0.09016233,0.2847861,-0.28746843,-0.40639523,0.024790483,0.5349082,0.3473506,-0.14758515,-0.19496632,-0.26830512,-0.052820094,-0.20411314,0.02255323,0.6692376,0.5510106,-0.18012966,0.07254432,0.349935,-0.15900032,0.052762408,-0.17165907,-0.19223033,-0.13730422,0.06248315,0.46478945,0.81206566,-0.09930769,0.33994243,-0.10474931,0.27081156,-0.09895999,-0.49407625,0.73636,0.5480734,-0.20434867,-0.1127793,0.38996,0.5520915,-0.5069791,0.52191967,-0.54074585,-0.0797854,0.7088179,-0.10327946,-0.50373805,0.12548365,-0.2080772,-0.045786362,-0.6957407,0.351242,-0.41451117,-0.46045998,-0.46791092,-0.11367808,-3.3669028,0.13199821,-0.14244471,-0.21550952,-0.4342012,-0.03449956,0.21400462,-0.5479299,-0.53610605,0.19209363,0.28913537,0.6305569,-0.1398451,0.087943606,-0.37232646,-0.22629209,-0.23366629,0.27425426,-0.07296874,0.35995224,-0.3146865,-0.30339304,0.0077622705,-0.15548947,-0.5952776,0.16158509,-0.5372005,-0.43212146,-0.080859415,-0.57563597,-0.10812926,0.66147363,-0.34311932,0.06335683,-0.18709336,0.18232597,-0.10635511,0.23645541,-0.047658127,0.32307878,0.18418038,-0.1637768,0.16117045,-0.31350708,0.48576263,-0.027235596,0.4227688,0.06011542,0.11512655,0.20881854,0.63083947,0.62474674,-0.16712868,1.1182814,0.36084148,-0.097982824,0.28227726,-0.2790447,-0.25279865,-0.5101895,-0.26686192,0.089692846,-0.42671207,-0.47581577,-0.03324584,-0.2983916,-0.7334337,0.5155846,0.084039465,0.31528863,-0.010122932,0.17395563,0.37558573,-0.26022688,0.045293696,0.0583965,-0.11377406,-0.58279794,-0.192561,-0.61516434,-0.4196798,0.07792831,0.7142571,-0.36282596,0.018629897,-0.20431328,-0.48237616,0.002079044,0.16648297,0.08033202,0.16033961,0.36896887,0.059422206,-0.5893253,0.3564301,-0.030046506,-0.04251074,-0.49313977,0.2529236,0.6624368,-0.72577983,0.77104837,0.369411,0.108242,-0.3055554,-0.63192147,-0.2258923,-0.014671796,-0.10869271,0.45150185,0.05627925,-0.8667702,0.49957734,0.02784665,-0.44075772,-0.6947287,0.29736045,-0.24868275,-0.13404815,-0.023045972,0.33364484,0.24249499,-0.18510392,-0.35582533,0.2805248,-0.41463703,0.12197246,0.114646114,-0.007808217,0.44117424,-0.11703551,-0.31361192,-0.8005079,-0.08827671,-0.56683517,-0.33361688,0.3826608,-0.055935476,0.019058645,0.07535078,0.18224931,0.21644713,-0.15548666,0.16859491,0.003997726,-0.4327583,0.43786258,0.53771496,0.48995224,-0.50181234,0.5096802,0.21069722,-0.11353461,0.101858035,0.14871696,0.20353325,-0.013750808,0.54738003,-0.102774434,0.013716067,0.22960792,0.69664925,0.17447911,0.46085587,0.1838633,-0.20890068,0.5073528,-0.154382,0.27331594,-0.06949333,-0.45640564,0.06909912,-0.29525656,0.12717174,0.48778385,0.2550766,0.3466241,0.23242353,-0.34245226,0.05261422,0.2827404,-0.17327465,-1.3304205,0.42857003,0.4366507,0.990396,0.390164,0.13987996,-0.13701652,0.93126494,-0.10515259,0.0009897479,0.5254093,0.1262027,-0.3773009,0.70384496,-0.7342596,0.6542513,-0.08831779,-0.15930246,0.16340172,0.24163808,0.5244047,0.7377287,-0.22946028,-0.028894896,-0.077958785,-0.2615372,0.12278998,-0.43388563,0.09773923,-0.24693811,-0.4118125,0.5986914,0.37117788,0.42354134,-0.21730836,0.04461465,0.07352718,-0.2284969,0.2522934,-0.20339087,-0.38460732,0.027473314,-0.6005041,-0.18533404,0.54496753,-0.08826851,0.18067011,-0.13153982,-0.11051762,0.019451307,-0.24963458,-0.06567695,-0.029983094,-0.69883543,-0.008472143,0.0556611,-0.5875796,0.5119576,-0.4115087,0.16150965,0.22823927,-0.015712619,-0.16294768,0.46766493,0.06618328,0.87326324,-0.051734217,-0.33043915,-0.40646964,0.014879746,0.13863486,-0.34227392,0.060438126,-0.43264857,0.0627189,-0.47879925,0.6559077,-0.27612025,-0.4463329,-0.01416191,-0.17165093,-0.0576892,0.6075812,-0.12950768,-0.23369339,-0.15767513,-0.23112185,-0.20394969,-0.008873982,-0.18980739,0.24516416,0.28966147,-0.22193614,-0.17107923,-0.14386265,0.07930287,0.55486155,-0.038144324,0.4140814,0.14447449,-0.11780294,-0.12608092,0.054339997,0.27004206,0.52443606,0.22102149,-0.057210326,-0.28548998,-0.3309346,-0.33903316,0.24450125,-0.026404846,0.15942955,0.0073761493,-0.21668456,0.74335384,0.021051237,1.2473463,0.058607962,-0.3869975,0.19728735,0.58683544,-0.10375144,0.058996383,-0.48889425,0.852097,0.442645,-0.15452072,-0.044596683,-0.6609602,-0.0076586604,0.38390133,-0.350852,-0.011492344,-0.045855463,-0.5948416,-0.18379724,0.13838162,0.10901173,0.23826525,-0.16189913,-0.18512893,0.05404681,0.17540121,0.41915822,-0.59141976,0.03747328,0.3095822,0.21159098,-0.08912647,0.021992058,-0.32274392,0.42944124,-0.65717477,0.25852826,-0.3569037,0.18164046,-0.51286155,-0.36490706,0.17170827,-0.060125034,0.35814667,-0.30539924,-0.38648096,-0.059861097,0.55702764,0.12070383,0.081315234,0.51700836,-0.30452496,-0.04683638,0.16297688,0.67116946,1.0302159,-0.45002407,0.045879632,0.10720159,-0.53879535,-0.5351858,0.31014776,-0.4585783,0.120293796,-0.08679892,-0.42309448,-0.51387393,0.21604571,0.15036038,0.16404247,0.12294048,-0.6393046,-0.26838377,0.27430266,-0.3662474,-0.27902514,-0.29113847,0.21275207,0.76446456,-0.2308295,-0.5559972,0.073203966,0.20767297,-0.15564434,-0.53018963,-0.05991116,-0.23635612,0.34308308,-0.066764854,-0.36685798,-0.08738107,0.015051656,-0.57273394,0.14312468,0.16755798,-0.3406535,0.074231744,-0.062952206,-0.05742562,0.8850764,-0.27587715,0.029869225,-0.55934054,-0.5385291,-0.8898288,-0.5081867,0.22854187,0.11521884,-0.022107124,-0.35047546,0.05087418,-0.15571903,-0.061591525,0.09802619,-0.67995805,0.2460023,0.113257594,0.5274517,-0.36351702,-1.0325301,0.1601031,0.16909401,-0.020510452,-0.73227566,0.52326804,-0.20608732,0.67304903,0.05537481,-0.030717824,-0.10629785,-0.32251474,0.111405864,-0.36169273,-0.1740632,-0.731676,0.31502342 -518,0.5444685,-0.26923248,-0.5171682,-0.11406352,-0.22871889,0.08830041,-0.15120816,0.5004249,0.20164907,-0.37079677,-0.24754131,-0.16667248,0.0063584405,0.106739216,-0.19081299,-0.50848913,-0.028106462,0.20920028,-0.5490055,0.5429812,-0.3117643,0.28440946,-0.033421487,0.3585636,0.22844757,0.24998637,-0.16117649,-0.0119080115,-0.20612405,-0.24398364,-0.01973643,0.15134564,-0.3326995,0.09896245,-0.17044297,-0.36720043,-0.01606724,-0.57679385,-0.32055685,-0.7829844,0.35365012,-0.78844357,0.51207495,0.13623714,-0.40550715,0.2264155,0.1288547,0.49160028,-0.19442652,-0.02432957,0.24252304,0.024019914,-0.09389806,-0.1741869,-0.106620856,-0.29543775,-0.62763584,0.023108972,-0.23439372,-0.12636988,0.013059588,0.1210956,-0.26316825,0.10822676,-0.00067121006,0.6333934,-0.3539775,0.124961935,0.34793755,-0.1204573,0.34931442,-0.6126613,-0.17628582,-0.09704177,0.26015696,-0.16698167,-0.21887903,0.0699109,0.26761478,0.41083437,-0.0947174,-0.18576486,-0.14826906,-0.071932115,0.07436579,0.4974605,-0.2585598,-0.35833946,-0.07319069,0.018174853,0.20376869,0.20856558,0.2367918,-0.20109245,-0.04839954,0.0087228585,-0.28496534,0.27797857,0.40796205,-0.33579317,-0.06956398,0.33067378,0.68473834,0.07044094,-0.079063006,-0.15306576,0.1349285,-0.46631542,-0.14556547,0.114348315,-0.30480966,0.49334583,-0.0570325,0.22794998,0.4740836,-0.14068979,0.040486194,0.09545808,0.14693509,-0.11963398,-0.27677798,-0.40265203,0.2329882,-0.3969691,0.059898607,-0.23828936,0.8401147,0.16774063,-0.6659552,0.25401723,-0.6062568,0.113073215,-0.12438255,0.3890083,0.62923825,0.38287964,0.2839822,0.5760953,-0.24101345,-0.030601945,-0.051433094,-0.17983472,0.00564866,-0.09989716,0.1759645,-0.56019145,-0.07609552,-0.018107167,-0.100168034,0.062055536,0.32502517,-0.6167044,-0.11481125,0.04326868,0.85815084,-0.20557824,-0.095451996,0.76034635,1.0749606,0.8486592,0.024171766,0.98829085,0.27455088,-0.23947895,0.19090907,-0.4013501,-0.5535781,0.31503564,0.344145,-0.4548457,0.22933903,0.0066316235,-0.12759782,0.5180373,-0.38124913,0.14016205,-0.24108876,0.117847405,0.098777756,-0.081355326,-0.39372855,-0.36904603,-0.08433016,-0.042393416,0.122357525,0.338772,-0.2109933,0.2573511,0.017099764,1.5270119,-0.036187153,0.11605795,0.12324598,0.1634526,0.12092668,-0.13237199,-0.17898533,0.38184658,0.20047851,0.063769974,-0.5453073,0.21415019,-0.23957255,-0.3512581,-0.059739348,-0.13890274,-0.122023776,0.074916296,-0.43780988,-0.14722167,-0.30807877,-0.32005876,0.40079448,-2.735909,-0.24133444,-0.18648541,0.44041434,-0.3251175,-0.47496685,-0.026219854,-0.47661275,0.40612406,0.2963865,0.4291429,-0.6123451,0.47326368,0.20476885,-0.532607,-0.15945256,-0.5865502,-0.08077465,0.08242049,0.0944988,-0.16486566,-0.12871632,0.011145779,0.17503557,0.3735349,0.02152094,0.1439691,0.40857357,0.43270758,0.0071570063,0.40549448,-0.027233137,0.47172302,-0.27289245,-0.19744286,0.2596244,-0.53199875,0.18722776,0.0768106,0.07722323,0.45300967,-0.48401165,-0.73962146,-0.7259621,-0.24670915,1.1367357,-0.12202596,-0.3444929,0.07896956,-0.47390768,-0.3712539,-0.07569647,0.50769657,-0.026257515,-0.1628776,-0.8633893,-0.02831162,-0.095869504,0.1938964,0.07370608,-0.090323076,-0.44205108,0.62487406,-0.107906945,0.467124,0.31950215,0.15678032,-0.258504,-0.3152893,0.011627818,0.98717505,0.47960737,0.19296907,-0.14710948,-0.0926127,-0.4224508,-0.09400444,0.105292656,0.5363502,0.7035986,-0.016716788,0.098692246,0.25193673,-0.19080488,0.09736194,-0.16921902,-0.34140706,-0.076371856,-0.006796445,0.5436337,0.5310419,-0.15521447,0.463974,-0.017886935,0.3840097,-0.2753853,-0.34154463,0.43433857,1.065564,-0.17945302,-0.28622463,0.56592053,0.4207377,-0.27646786,0.37954426,-0.422852,-0.27260712,0.3394902,-0.20768431,-0.5032957,0.20274237,-0.23715438,0.25165817,-0.7421269,0.38511297,-0.34357005,-0.39749637,-0.5503772,-0.011600745,-2.5508654,0.36512586,-0.20824705,-0.20345654,-0.11270356,-0.09805191,0.16521527,-0.5729088,-0.5946099,0.20804635,0.0870961,0.7205623,-0.08251894,0.17756028,-0.012665885,-0.3648305,-0.2922613,0.06781763,0.09314896,0.3570359,0.0011155562,-0.41630608,0.00691492,0.008456601,-0.3009846,0.11580617,-0.6975927,-0.47804186,-0.152216,-0.6065035,-0.26478723,0.5945884,-0.2603709,0.09870006,-0.2547776,0.020297846,-0.08593003,0.3802937,0.1376594,0.18617797,-0.03601735,-0.10464966,0.025902187,-0.32786292,0.28592715,0.121214606,0.27120206,0.24654357,-0.04161477,0.4372644,0.38747448,0.61188716,0.09113622,0.68309546,0.44727358,-0.06731173,0.23399314,-0.24605939,-0.30485,-0.36360437,-0.21995625,-0.038462706,-0.3233396,-0.33692142,-0.13383375,-0.3913465,-0.7369107,0.33744946,-0.08162021,-0.004143432,0.10394055,0.41784358,0.58245754,-0.20521869,0.020662675,0.00041237473,-0.06547385,-0.50249916,-0.14665782,-0.51276064,-0.2659423,0.34729555,0.9093596,-0.13233076,0.21067445,0.07086803,-0.1408435,-0.022731423,0.09512318,-0.085210375,0.061555546,0.43670887,-0.21933351,-0.57972866,0.25888795,-0.06510197,-0.18476723,-0.6264725,0.30709997,0.57567394,-0.61467826,0.6386304,0.359703,0.030497218,-0.14787386,-0.38530746,-0.043143563,0.1083886,-0.28335378,0.29857412,0.24747176,-0.59899235,0.22720012,0.37775165,-0.12839888,-0.78820884,0.5757459,0.0360353,-0.41547993,-0.16374885,0.37853226,0.13839172,-0.07476497,-0.10556908,0.17047499,-0.37044147,0.16129212,0.14549434,-0.13696799,0.31165674,-0.19226818,-0.08599682,-0.7124685,0.18181626,-0.62569463,-0.31533903,0.35269174,0.19635805,0.15104869,0.22051491,0.24829452,0.3536149,-0.31717533,-0.0071229837,-0.09716178,-0.2731275,0.30839515,0.4575627,0.47808757,-0.39011383,0.5161732,-0.03213758,0.05617118,-0.116018586,0.020198124,0.41423145,0.025018675,0.36707976,0.06953789,-0.27182359,0.28478107,0.5786663,0.13604103,0.48290607,0.1888217,-0.036687735,0.031225245,-0.011951945,0.038304534,-0.068002515,-0.58364445,-0.0942639,-0.1816916,0.089839,0.46565697,0.07089685,0.20380652,-0.09703133,-0.48376098,-0.03658533,0.21886806,-0.15242657,-1.0907135,0.35419255,0.07893695,0.7925881,0.41858673,-0.047060974,-0.027745545,0.60002023,-0.10036936,0.14220771,0.42902642,-0.05495102,-0.44482404,0.58800274,-0.64166003,0.36136395,-0.075016595,-0.095560595,-0.08470564,-0.12813349,0.32472703,0.65529937,-0.17178878,-0.053054087,-0.03565738,-0.44264203,0.07411885,-0.35409832,0.05862059,-0.7349291,-0.2879727,0.61104065,0.37406036,0.34500784,-0.2700212,0.14616182,0.18516997,-0.16962764,0.27089196,0.15838851,0.11344472,0.09617839,-0.8107049,-0.21507049,0.44346768,-0.20828114,0.07327994,0.009583524,-0.10998452,0.092413746,-0.19116643,0.03559899,-0.012131019,-0.7005133,-0.0025024798,-0.40481773,-0.4061658,0.4980575,-0.003947652,0.13427988,0.16170415,0.14792112,-0.26474872,0.46975031,0.11414158,0.7853312,0.038382743,-0.0911082,-0.39247355,0.24792473,0.049994104,-0.061373584,-0.054547876,-0.29539108,0.16541906,-0.70610017,0.61290467,0.13055924,-0.25613084,0.019526856,-0.084021345,0.060491852,0.49755856,-0.33577552,-0.08772534,-0.12090932,-0.17728266,-0.22599517,-0.24879424,-0.030164609,0.15329537,0.3110501,0.02701916,-0.20324019,-0.09622906,-0.18389848,0.4154672,0.01120816,0.39368486,0.57715255,0.11582478,-0.27511838,-0.23390767,0.15759984,0.40664318,0.0030379551,-0.21570632,-0.5040253,-0.527064,-0.22437708,0.35199362,-0.10336582,0.42337003,0.08297376,-0.04985244,0.77107984,-0.0559238,1.1371796,-0.006415561,-0.24535394,-0.09051407,0.46226782,-0.10325559,-0.16828242,-0.30785832,0.8592068,0.4878704,-0.08254646,0.02926599,-0.3511813,-0.13374828,0.27088538,-0.10826401,0.010308598,0.024896959,-0.5969154,-0.3799993,0.07116727,0.34945914,0.093279116,-0.056981314,0.19443159,0.3337915,-0.06862486,0.21631935,-0.3490564,-0.13590017,0.22867326,0.25967833,0.082204334,0.17866051,-0.50271714,0.34440327,-0.5801262,0.13696203,-0.28848213,0.07955655,0.017879823,-0.34606576,0.20639603,0.12695542,0.2635983,-0.38177863,-0.32051474,-0.1417806,0.4841461,0.21295655,0.09219655,0.580161,-0.21277103,-0.019913286,0.041810982,0.61870724,1.0343295,-0.011776676,-0.04130277,0.2586916,-0.29015929,-0.71868545,0.4400771,-0.24587771,0.14000158,0.058950417,-0.15331374,-0.58845294,0.34393862,0.31662717,-0.052876096,-0.023873275,-0.5687891,-0.17701468,0.26236114,-0.38821626,-0.18733253,-0.31571573,0.15924859,0.6184212,-0.1972398,-0.24098857,-0.12900971,0.25741774,-0.11185622,-0.3685204,-0.06316566,-0.55010104,0.14708158,0.069455706,-0.32739297,-0.20162772,0.046343926,-0.3367884,0.122719154,0.09126198,-0.31268725,-0.020988831,-0.29139522,-0.21791495,0.802399,-0.07754439,0.06655956,-0.36070156,-0.33812448,-0.6331113,-0.46390668,0.306078,0.019323025,0.009850489,-0.67140526,0.0073436648,-0.078738175,-0.10073928,-0.034408417,-0.3457519,0.40184426,0.27232832,0.37805313,-0.07845465,-0.5823106,0.113206856,0.06001512,-0.36509332,-0.5629125,0.4034373,-0.054038525,0.84001714,0.020208964,0.07885271,0.291637,-0.47143754,-0.058087617,-0.17724034,-0.277513,-0.642933,-0.06724663 -519,0.20914426,-0.2966808,-0.33269888,-0.14282367,-0.32173258,0.13666882,-0.21478432,0.39558583,0.14498304,-0.30024332,-0.14002983,-0.09113794,-0.06123455,0.6829671,-0.31839576,-0.63398975,-0.1456251,0.22475931,-0.5894757,0.56309074,-0.3501446,0.33295536,0.20286602,0.29792878,0.21740381,0.10886444,0.391038,-0.010187085,0.018324045,-0.34911522,-0.13558626,0.23314582,-0.42502764,0.42229387,-0.11213784,-0.35749468,0.108089,-0.26423752,-0.4581055,-0.583723,0.35025305,-0.8663488,0.44301206,-0.08500174,-0.36046442,0.34885687,0.35771242,0.067998566,-0.1055826,-0.15675908,0.109485775,-0.08857291,-0.056643836,-0.24375024,-0.22033776,-0.5511415,-0.5263627,0.06477931,-0.636056,-0.22670746,-0.23246266,0.15308496,-0.27832076,0.027620513,0.03470486,0.42672998,-0.32637638,-0.17345873,0.20526996,-0.19047403,0.22914937,-0.652284,-0.02304084,-0.09897761,0.09752226,0.056642573,-0.03422919,0.37789148,0.07790943,0.49039206,0.028769255,-0.29664937,-0.32827213,-0.18490373,0.11398341,0.428868,-0.23770277,-0.42608532,-0.19304968,0.20408522,0.48019505,0.29770976,0.023965565,-0.16608554,0.0361855,-0.067014925,-0.33160892,0.48210484,0.4405002,-0.46881816,-0.30836165,0.5332937,0.45472643,0.1402379,-0.096455105,-0.049243577,-0.009830335,-0.396483,-0.14315093,0.11143159,-0.33235282,0.36207902,-0.2206135,0.15395644,0.59469855,-0.19913626,0.19937691,0.06711074,0.0794493,-0.20726147,-0.20084332,-0.35765022,0.19333234,-0.5322577,-0.025966447,-0.075238146,0.8757487,0.023277182,-0.51418835,0.307844,-0.42216295,0.17868121,-0.20213117,0.582401,0.6962328,0.47754493,0.18767193,0.8496408,-0.3873661,0.05809862,-0.23420347,-0.2118107,0.20421559,-0.23789419,-0.17069355,-0.5197923,0.0684988,-0.0018850679,0.03114936,0.024439834,0.36254984,-0.55889916,-0.11230003,0.25947806,0.85468066,-0.2612329,-0.0066597094,0.57225513,1.2154223,0.9186564,-0.06068974,0.9937626,0.26511556,-0.2299123,0.13757212,-0.10043741,-0.6739184,0.24792796,0.66126895,-0.04205238,0.36050302,-0.13745053,0.06252286,0.2072163,-0.48203418,-0.17776185,-0.31051847,0.38440564,0.071680665,0.13632375,-0.5100803,-0.2562861,0.0696406,0.0022828246,0.12370357,0.3150589,-0.3128019,0.36486083,0.11460929,1.1286107,-0.17049439,0.15592924,0.079958186,0.51328385,0.21866685,-0.028407652,0.050899662,0.27987587,0.24933812,0.047100488,-0.7715095,0.16630608,-0.35320103,-0.49333864,-0.18781216,-0.39904335,-0.047931187,0.087216586,-0.19447653,-0.25013313,-0.030095844,-0.25582185,0.42020765,-2.6076484,-0.21657711,-0.2752328,0.2218305,-0.39577696,-0.24995096,-0.061316784,-0.47835767,0.5376975,0.33035213,0.53791875,-0.43898508,0.21263605,0.39720413,-0.57022166,-0.19356629,-0.5157901,0.100848354,-0.10086402,0.54445213,-0.002178465,-0.33170018,-0.18543823,0.12687762,0.58200496,0.16101912,0.1868102,0.35473076,0.3554116,-0.076734655,0.33555,-0.1222464,0.50743806,-0.5175562,-0.18984734,0.45933583,-0.13368428,0.33017766,-0.28272593,0.18584211,0.4785287,-0.4384989,-0.7487351,-0.6152555,-0.34462655,1.4001069,-0.4345282,-0.6141025,0.149607,-0.009182717,-0.10868514,-0.068321355,0.40426382,-0.102833144,-0.030666938,-0.705749,0.19262768,-0.0777537,0.31015733,0.0807689,-0.08981383,-0.32571566,0.6609515,-0.037258957,0.37277773,0.03946698,0.15607467,-0.39213943,-0.4873403,0.0009617828,0.9551556,0.512778,0.033522654,-0.09932076,-0.21898064,-0.25168324,-0.12634173,0.07625497,0.444963,0.59974617,-0.045488592,-0.021061026,0.2697325,-0.22062953,0.10919845,-0.10508662,-0.3615143,-0.15692714,0.13128196,0.6594066,0.44299638,0.13065356,0.41241938,0.027912725,0.19194862,-0.17554869,-0.5326245,0.5692502,0.79058164,-0.20651037,-0.24560587,0.8684081,0.5998984,-0.1729645,0.5343025,-0.67829067,-0.6265049,0.37637514,-0.22495839,-0.43982103,-0.00095836935,-0.29778162,-0.013912916,-0.8230671,0.1387314,-0.35663545,-0.3425137,-0.5608272,-0.18460788,-2.79047,0.17944512,-0.2875516,-0.12791584,-0.21187328,-0.07018172,0.44549677,-0.5078952,-0.47971126,0.13113488,0.17345564,0.6774155,0.08185654,0.15490547,-0.25977004,-0.23530212,-0.23458283,0.25769645,0.14529869,0.2568897,-0.07574692,-0.4754545,0.13345392,-0.10420943,-0.29806656,0.10054033,-0.5858222,-0.3046102,-0.3651058,-0.5132132,-0.14704572,0.57686436,-0.4591196,-0.00041532976,-0.19230388,0.13224392,0.05878128,-0.030293612,0.07488374,0.114389606,0.14360037,-0.16593273,-0.013349497,-0.5049635,0.49524164,0.10327336,0.3396716,0.26843616,-0.10938956,0.07618152,0.6477843,0.5289631,-0.06735211,0.8945163,0.4936001,-0.061985947,0.2693432,-0.07147597,-0.24393742,-0.50332874,-0.312331,-0.059347685,-0.35396928,-0.46518084,-0.09154646,-0.33491406,-0.88495076,0.663318,0.07237941,0.39022684,-0.16522905,0.31441832,0.40336508,-0.30182403,0.04868259,0.0285338,-0.20468187,-0.51476014,-0.3159156,-0.59639525,-0.27565655,0.13287893,0.98174596,-0.20283943,-0.13332303,0.057390332,-0.28159618,-0.06096476,-0.086413614,0.04209064,0.26888517,0.4139444,0.12628414,-0.61612827,0.551275,0.01902296,0.1520238,-0.44391394,0.24240604,0.6023708,-0.6266104,0.17731652,0.3965092,0.12204779,-0.28451893,-0.45523232,-0.039425492,0.11081584,-0.18585083,0.38200107,0.26466638,-0.8144301,0.4711948,0.17106383,-0.36355653,-0.80962366,0.4268475,-0.054248966,-0.086969584,-0.0406655,0.22709924,0.28715917,0.0734026,-0.2357886,0.121563874,-0.36100706,0.27340433,0.060291633,-0.013864934,0.51024437,-0.4001012,-0.2464666,-0.7800921,0.006219671,-0.49845728,-0.37527677,0.36316285,-0.015079856,-0.104817934,0.27933642,-0.017274048,0.49563506,-0.13699482,0.17253953,-0.095069356,-0.24738759,0.57441306,0.53276783,0.44623283,-0.45933002,0.68111986,0.012655214,-0.12163505,-0.30543068,0.043717053,0.44309947,0.16852483,0.31893027,-0.084107846,-0.13513896,0.40773186,0.7552666,0.082645655,0.19981429,0.043627374,-0.06471397,0.18708041,-0.10643235,-0.010685361,-0.033288278,-0.61313117,-0.16616474,-0.2803547,0.063659236,0.5005222,0.14330848,0.3547142,-0.019696318,-0.12540573,0.102884136,-0.026339961,-0.04383364,-1.0308099,0.33491677,0.09826236,0.50711477,0.48029238,0.015107155,-0.1192528,0.8550714,-0.30582154,-0.024242131,0.45071,0.06553417,-0.3440278,0.6451366,-0.754227,0.53896904,-0.103176005,-0.0058021443,0.011229918,0.22620502,0.3578817,0.969335,-0.097141065,0.09014789,-0.0011437627,-0.3610482,0.17191985,-0.18412232,0.2179447,-0.47559687,-0.34266183,0.5577771,0.26997682,0.38150597,-0.063853495,-0.07960569,0.044801194,-0.10983519,0.2024084,-0.1353356,-0.030741084,-0.2015091,-0.5228174,-0.113842875,0.44175285,0.4341653,0.31695002,-0.07649703,-0.097108014,0.20929143,-0.2413749,-0.11667434,0.06173659,-0.676814,-0.0778072,-0.1856948,-0.43990687,0.38334146,-0.4929276,0.19878064,0.054258373,-0.002121091,-0.2212454,0.11651094,0.2358741,0.7376514,0.08801566,-0.29700235,-0.24800006,-0.15972677,-0.0032469905,-0.23374209,0.010496552,-0.27262232,-0.036382165,-0.78856623,0.54919297,-0.31428045,-0.24873558,0.21141984,-0.26430607,0.044365086,0.46150124,0.025514685,-0.059190173,-0.0643799,-0.31889486,-0.37481207,-0.34268254,-0.14555596,0.09646141,0.049155787,0.086232826,-0.2644707,-0.22207865,-0.19299085,0.4003778,-0.1736035,0.15802996,0.3051148,0.18439847,-0.28920227,0.026091466,0.19475302,0.51438576,0.0071677472,0.11640836,-0.061471183,-0.3152261,-0.35225356,0.12309929,-0.10158171,0.310521,0.010323396,-0.40056208,0.6952354,-0.115515046,1.1488879,0.01278545,-0.3490763,0.09177804,0.4927338,0.0076082144,0.002822711,-0.23995084,0.8619341,0.56718665,0.05068224,-0.18684891,-0.5235741,-0.11401717,0.2700078,-0.26899827,-0.13903579,-0.07265445,-0.5129868,-0.42314318,0.3064968,0.30507347,0.032432124,-0.046773467,0.035284467,0.0163787,0.13574564,0.545283,-0.37902626,-0.05240857,0.33077937,0.25176367,-0.14287871,0.18039131,-0.413657,0.4787172,-0.66628945,0.15257701,-0.42593902,0.057795938,-0.2824197,-0.24292047,0.26604122,0.08593733,0.45226428,-0.25976565,-0.513015,-0.11581536,0.5911359,0.1173492,0.0983533,0.6507995,-0.2985996,0.04019652,-0.08257668,0.54038817,1.0775695,-0.3278697,-0.039363924,0.042598527,-0.46702322,-0.77010375,0.45014748,-0.59336543,0.11688961,0.10098373,-0.37511688,-0.3024618,0.3368362,0.20797107,0.09623904,0.072258204,-0.47297356,-0.12186089,0.14696303,-0.2669632,-0.20958194,-0.2712445,0.18619925,0.42418486,-0.29704946,-0.3579515,0.15167323,0.5691419,-0.19059053,-0.7001979,-0.025040992,-0.34059808,0.24824524,0.09965229,-0.24924126,-0.009547105,0.07054683,-0.47602007,0.0370653,0.10055256,-0.34144512,-0.036276277,-0.17374004,0.2273732,0.5866172,-0.12820962,0.030281644,-0.6450559,-0.43179065,-0.89153916,-0.39360598,0.4233025,0.22472146,0.16991727,-0.5169354,0.068864055,-0.22772066,0.03616725,-0.060840316,-0.4780207,0.32041022,0.09562476,0.53147066,-0.08859314,-0.74618345,0.20057312,0.07699979,0.10203045,-0.513621,0.46941552,-0.25039345,0.86735463,-0.017632624,-0.0011625359,0.20795172,-0.5838626,0.24229468,-0.32709444,-0.32571647,-0.66360784,0.16250291 -520,0.6587957,-0.13766381,-0.31318069,-0.17675631,-0.23469721,0.010239944,-0.11576856,0.44209656,0.05683001,-0.29746968,-0.25343412,-0.0548942,-0.090636194,0.21635021,-0.2058048,-0.7384821,0.2034158,0.17000851,-0.3157579,0.71952397,-0.46677855,0.3789429,-0.37068063,0.4143053,0.18189219,0.34883335,0.1448166,0.1190803,0.031481266,-0.27180123,0.05709872,0.051083785,-0.31873795,0.28686446,0.049250934,-0.28629112,0.066655494,-0.29788694,-0.47388777,-0.7324397,0.10041996,-0.7195489,0.50927055,-0.10395245,-0.4976199,0.11253329,0.13231578,0.045869052,-0.19847775,-0.018048307,0.07941477,0.040339317,0.029330041,-0.08592762,-0.051077466,-0.6162158,-0.5193759,-0.06316158,-0.27665883,-0.11802621,-0.2170082,0.14955719,-0.40049425,0.002462668,0.0012633672,0.37568188,-0.3878494,-0.1332459,0.18798149,-0.22501144,0.2398478,-0.65961516,-0.17739932,-0.21977878,0.13529544,0.13828231,-0.16279124,0.27468282,0.15663333,0.34335676,-0.006823097,-0.11882118,-0.21063672,-0.078083254,0.09375123,0.66937286,-0.22335473,-0.26526278,-0.24114962,-0.2057469,0.23200624,0.089456744,0.16245835,-0.023655836,-0.075009815,-0.22545537,-0.31513026,0.16322754,0.5580336,-0.35454327,0.046579618,0.19749999,0.3985493,0.07309202,-0.2759948,0.23503749,0.02443183,-0.37061396,-0.17155185,-0.2691411,-0.009892668,0.568806,-0.22407295,0.30144793,0.546567,-0.08115142,0.18120234,0.13176174,-0.1009062,-0.1354436,-0.22881682,-0.2122009,0.22319166,-0.38768396,0.20083015,-0.21024407,0.7340339,0.11486108,-0.5912402,0.36387005,-0.29867366,0.17531577,-0.03478753,0.4974131,0.6264576,0.3738752,0.2985997,0.5928379,-0.30842534,-0.039940603,0.12849353,-0.25058582,0.2254978,-0.0143224,-0.08833648,-0.4453034,0.15646325,0.22966179,-0.12990859,-0.008610581,0.42398745,-0.44256717,-0.08438211,0.22534159,0.78409326,-0.28587055,0.0751357,0.7125525,1.1518152,0.9314273,0.012732923,1.0155487,0.33539554,-0.020464735,-0.10256274,-0.13230011,-0.5940876,0.18738714,0.43907672,0.4506325,0.24318917,0.17025603,-0.15620807,0.5329351,-0.44117957,0.037201654,-0.08672003,0.3540718,0.07652228,-0.2132316,-0.57361037,-0.13101068,0.12525524,-0.0010054836,0.04432229,0.28283614,-0.17671023,0.50362206,0.0431554,1.4457743,0.09633159,0.03855907,0.120333456,0.65441996,0.25090545,-0.23418263,0.18409511,0.10075356,0.32265016,0.017396446,-0.39936286,0.18060112,-0.1534147,-0.50725025,-0.1829422,-0.2737251,-0.06807969,-0.12810984,-0.36431012,-0.23274414,0.010079088,-0.20646341,0.27855355,-2.8886206,-0.100750804,-0.21565059,0.22337295,-0.111753,-0.17542498,0.07945154,-0.35661426,0.4198669,0.61073685,0.40721768,-0.6231095,0.47650674,0.57358605,-0.55548996,0.141139,-0.5352693,-0.11798079,-0.11391764,0.61641985,0.24817179,0.059567023,-0.07701181,0.42131725,0.48203853,-0.012819707,0.13702567,0.21714926,0.22421451,-0.13414662,0.2903839,-0.052514885,0.3653517,-0.07655388,-0.105131365,0.30232415,-0.42392445,0.058077075,-0.15378563,0.18452719,0.34410724,-0.4484718,-0.6468257,-0.69495517,-0.3074975,1.171665,-0.051414672,-0.4998445,0.34957093,-0.41334108,-0.24760978,0.012047193,0.3896294,-0.31673148,-0.113054,-0.7166689,0.002693815,-0.16610262,0.13155884,-0.071357384,-0.20381853,-0.5107383,0.80290943,-0.09623214,0.50507957,0.22939084,0.2695144,-0.15207171,-0.51315975,-0.05146151,0.6958647,0.57151425,0.19127691,-0.297782,-0.03331673,-0.23908891,0.06809656,0.0998084,0.62448967,0.6326715,-0.12974985,0.1273099,0.19175036,-0.21652095,-0.062983826,-0.14569452,-0.114517465,-0.05134407,0.0529922,0.682924,0.7583016,-0.14400575,0.20305249,-0.12635937,0.39274785,-0.3004293,-0.49079624,0.3829093,0.60734314,-0.17039643,-0.19772074,0.6460619,0.53589123,-0.24792366,0.35419554,-0.6935793,-0.22840047,0.3179404,-0.1402683,-0.30291286,0.24131629,-0.47833443,0.260294,-0.75249493,0.44354233,-0.1802657,-0.65208626,-0.6374726,-0.23571716,-3.6355777,0.19242701,-0.08161656,-0.34535167,-0.0012074624,-0.3070319,0.4843397,-0.59090245,-0.496367,0.16394024,0.03998103,0.6031008,0.010327361,-0.040890064,-0.3598432,-0.25242037,-0.37116623,0.15348387,0.10802613,0.37580338,-0.008651167,-0.43736163,-0.032713592,-0.12170501,-0.4708257,0.029748809,-0.5039537,-0.6426191,-0.18229267,-0.32982093,-0.13005061,0.5663863,-0.08205861,0.17538333,-0.3627115,-0.19087765,-0.29816762,0.15846084,0.1276693,0.08387679,-0.16375038,-0.07995763,0.043844905,-0.29254866,0.30945322,0.15539674,0.34234613,0.4508479,-0.24166103,-0.04429731,0.61639434,0.37579027,-0.06970694,0.83062065,0.38686106,-0.15833592,0.43363625,-0.15066974,-0.38222727,-0.40950748,-0.3085482,0.020858943,-0.424532,-0.36781237,-0.22963257,-0.40277147,-0.661045,0.50156254,-0.008038606,0.07612418,-0.018987432,0.015243269,0.36747342,-0.07535299,-0.09058995,0.19691657,-0.14752848,-0.5244233,-0.24556987,-0.64594203,-0.3537996,0.09693124,1.03912,-0.012788425,0.11464784,-0.025054445,-0.29463318,0.053127985,0.03939461,0.090034604,0.025566492,-0.0011964568,-0.0220392,-0.6938353,0.5012318,-0.05489164,-0.13229097,-0.4254945,0.16816461,0.6059776,-0.64320266,0.31962404,0.29023853,0.08842556,-0.15521131,-0.62003547,-0.19793734,-0.14926486,-0.3056036,0.47002056,0.29204726,-0.87910736,0.43942636,0.22770736,0.017063703,-0.5670983,0.52254,-0.12527487,-0.39128903,0.06648846,0.18294474,-0.0029849666,0.03121362,-0.3069722,0.35755607,-0.4507324,0.1536728,0.19123231,0.022419985,0.46680218,-0.056525372,-0.029145787,-0.60462,-0.22670087,-0.6031799,-0.2698046,-0.011452769,0.08526741,0.00829471,0.21846654,0.10219032,0.4446973,-0.18834041,0.13387302,-0.10289859,-0.35491425,0.4616778,0.4897905,0.4473308,-0.33456162,0.74543184,0.19666465,0.14410213,-0.16036725,0.16170199,0.37749553,-0.015122367,0.4898732,-0.0180403,0.042462904,0.16704223,0.9084324,0.11757974,0.52569485,0.12063426,-0.32444876,0.2942029,-0.037349872,0.23638144,-0.026254904,-0.4476564,0.051423762,-0.16280238,0.2075322,0.36869144,0.13118292,0.26413244,-0.046026286,-0.4535605,0.06083194,0.18781216,0.034383945,-1.259246,0.26696858,0.19740845,0.7983093,0.5464738,-0.023400223,-0.10978887,0.69501895,-0.14607988,0.09951516,0.23171796,0.046624295,-0.3313265,0.39459345,-0.56595093,0.3811787,-0.014606276,-0.054990944,-0.046588004,-0.09522164,0.38542393,0.65840656,-0.099231474,0.16095705,-0.003481667,-0.33700266,-0.008499588,-0.25377238,0.012015425,-0.5046443,-0.2187415,0.55370367,0.4791646,0.35407346,-0.15347219,0.025501583,-0.0070768567,-0.06548876,0.16283004,-0.032347612,-0.03232702,-0.40675634,-0.5563746,-0.37776068,0.41004023,-0.12923793,0.08036472,0.012089129,-0.26458433,0.035698954,-0.06827426,-0.032944858,0.14360373,-0.5485277,0.101898775,-0.16658004,-0.30645037,0.5351099,-0.24491167,0.23674165,0.18475573,-0.01729242,-0.15877475,0.10743014,-0.008755432,0.5089775,0.14391987,-0.17399241,-0.32958388,-0.032994457,0.20789716,-0.33184034,-0.23844539,-0.37355906,0.10457446,-0.3923049,0.3524383,-0.07175725,-0.32193497,0.09627807,-0.13534662,0.02383698,0.3815913,-0.09406157,-0.2739603,0.13116482,0.0887718,-0.23455903,0.007524324,-0.09889477,0.34668946,0.13066004,-0.2103497,0.077054635,0.01602542,0.20034178,0.33255714,0.12298017,0.25850576,0.48233318,-0.116315626,-0.35281864,-0.04291207,0.058165126,0.58579785,-0.06389194,0.1432289,-0.15628688,-0.7425161,-0.3810401,0.034781497,-0.18163657,0.33048287,0.08941518,-0.20461813,0.67415196,0.1583998,1.0118779,-0.048417576,-0.39538223,0.019197745,0.5324941,0.013743903,0.077199884,-0.27243882,1.004817,0.48438063,-0.4217214,-0.31219482,-0.29667643,-0.04929363,0.23688915,-0.13029331,-0.21647009,-0.113445304,-0.7624015,-0.1008143,0.2369286,0.27798986,0.04669208,0.009368676,0.0659708,0.20468317,0.024118645,0.3441372,-0.39655045,0.01031191,0.40167236,0.08819259,-0.11536479,0.07738646,-0.37122288,0.24557948,-0.59073746,0.09153683,-0.28047195,0.117039025,-0.17056324,-0.40052834,0.21710598,0.068807274,0.3714687,-0.41507366,-0.29953048,-0.16855605,0.47501656,0.09783767,0.11763412,0.37980404,-0.15879479,0.084984735,0.09184133,0.44799975,1.1070482,-0.10509571,0.04902047,0.26436958,-0.47149712,-0.69784135,0.071745835,-0.1016945,0.1677717,-0.114444956,-0.4051067,-0.5318335,0.33728194,0.40123802,-0.038378578,0.21851563,-0.38383317,-0.34996146,0.16876519,-0.42218584,-0.22653215,-0.4287819,0.018532855,0.4601708,-0.3478729,-0.25533888,-0.10283186,0.27953854,-0.35956457,-0.67909575,-0.08479677,-0.29642513,0.41684595,0.121629424,-0.48065296,-0.15753052,-0.09073765,-0.4188992,0.09327187,0.22506817,-0.39440152,0.21397689,-0.39038482,0.023935573,0.86889297,-0.16274872,0.18138303,-0.66659164,-0.5322946,-0.8586332,-0.58012444,0.4160428,0.35167697,-0.15790065,-0.47914585,-0.11644302,-0.2646239,0.13715358,0.010130955,-0.17656581,0.47829375,0.20215066,0.4139605,0.065506,-0.8655936,0.040462673,0.09849991,-0.17462817,-0.47597593,0.57198995,-0.0574084,0.7611719,0.18951012,0.15983252,0.088225365,-0.32345653,0.24368349,-0.20483017,-0.36955765,-0.49301043,0.17482866 -521,0.24929059,0.100198805,-0.6359823,0.06336234,-0.39375865,0.19247355,-0.3932277,0.09322749,0.22990336,-0.22637774,0.10555887,-0.03507271,-0.21170989,0.060398635,-0.10450687,-0.58358586,-0.0063702553,0.09707198,-0.5044861,0.8204946,-0.28739667,0.38981748,0.10359985,0.2290248,0.018032754,0.30346847,0.053861793,-0.112853095,-0.22866766,-0.23434651,0.029997062,0.11336242,-0.50181323,0.4210152,-0.11807372,-0.2139651,0.20059128,-0.28547877,-0.36282045,-0.6009009,0.13008477,-0.5558262,0.571407,-0.012492143,-0.27914196,0.2837855,0.10753058,0.15171887,-0.11463416,-0.007190417,0.23439586,-0.35195684,-0.3675967,-0.26745394,-0.40447745,-0.5136493,-0.58681154,-0.1806865,-0.6316184,0.039780706,-0.34296677,0.23236914,-0.37059814,-0.12103419,-0.12659353,0.2783639,-0.4671485,0.21833897,0.0431755,-0.12669516,0.08442101,-0.62622565,-0.08492398,-0.14297532,0.018993363,0.23545453,-0.061661083,0.3736341,0.087659806,0.42092904,0.1238243,-0.24253267,-0.37724525,-0.25361457,0.26648033,0.44971973,-0.16657531,0.08816618,-0.25924644,-0.13220519,0.45196614,0.34178713,0.119189054,-0.12958202,-0.039788958,-0.19322419,-0.34258765,0.3064684,0.47888178,-0.23988348,-0.0032771826,0.5151324,0.38824928,0.24251808,-0.3208393,0.1315194,-0.122778244,-0.267751,-0.2282436,0.10841309,-0.12783451,0.45654824,-0.037014686,0.22541498,0.54428846,-0.12587027,-0.027334943,0.00088702934,0.0066656647,0.14725052,-0.17207238,-0.1014524,0.21741147,-0.6415015,0.06598228,-0.25750983,0.5280139,-0.112104,-0.6708791,0.28751084,-0.4678278,0.035341073,-0.05900723,0.6118842,0.8170962,0.7197202,0.13730565,0.72927046,-0.30118334,0.09995299,-0.29736513,-0.12904319,0.2149537,0.108904906,0.11009978,-0.5359367,0.0049848137,0.02495931,-0.12149707,-0.06832054,0.5181213,-0.28126436,-0.2000185,0.1681523,0.798583,-0.28611267,-0.098578624,0.5543738,1.2183927,0.99345285,0.10004728,0.99623436,0.16452564,-0.06093657,-0.32479954,-0.18386838,-0.68097484,0.11734845,0.23689671,0.15585223,0.30000293,0.12017323,-0.07746272,0.41468582,-0.21480481,-0.15188599,-0.1651893,0.43469954,-0.04374467,-0.15593363,-0.27672338,-0.13689855,0.22847848,-0.028904347,0.18220603,0.43467715,-0.2004916,0.43619648,0.2760708,1.3150089,0.015135727,0.06973051,0.15320404,0.23766091,0.25118458,0.004203658,0.07233399,0.5706053,0.2302293,0.0071282326,-0.45619178,0.1520089,-0.23169495,-0.6544538,-0.07661866,-0.28658542,-0.12016626,-0.14717418,-0.2415749,-0.15667804,-0.14100367,-0.4515272,0.33156925,-2.8826807,-0.08990941,-0.122741155,0.1216688,-0.12793514,-0.19352229,0.056223925,-0.32124144,0.5171766,0.23608103,0.39561895,-0.4575896,0.5289791,0.56419635,-0.53659993,-0.07704265,-0.47476274,-0.25685295,0.00015930568,0.54269236,-0.10069496,-0.12687477,-0.101999834,0.18548043,0.5038511,-0.019953834,0.18062414,0.35828647,0.4179237,-0.20358375,0.28235716,0.0155307865,0.43215388,-0.16119839,-0.20558034,0.22862667,-0.30025297,0.5067069,-0.30155328,0.17098607,0.47278753,-0.2696577,-0.46583536,-0.30188045,-0.00045814234,0.99753255,-0.44531175,-0.557569,0.07612136,-0.22315487,-0.2030809,-0.014014209,0.3765373,-0.109638855,0.033121053,-0.61696106,-0.0058367183,-0.15152489,0.21663223,-0.050445676,0.19819185,-0.4336927,0.62952054,0.034805823,0.7465238,0.45685792,0.2266902,-0.29448605,-0.28975353,0.17725751,0.69734836,0.43511733,0.16599166,-0.3811908,-0.24908912,-0.00502958,-0.24186558,0.12243236,0.51272416,0.5491186,-0.12129774,0.14967945,0.2975053,-0.28840163,-0.16374265,-0.2223269,-0.2780041,-0.058522575,0.033653677,0.343632,0.74164623,-0.12839226,0.39718428,0.006686919,0.38934043,-0.19316293,-0.44286856,0.39458966,0.70139575,-0.26888466,-0.20112708,0.6629612,0.58276623,-0.07086956,0.5597805,-0.60038537,-0.35064954,0.457111,-0.05511122,-0.44433174,0.2161357,-0.38047057,-0.05271511,-0.7274078,0.2756793,-0.4058995,-0.5142778,-0.6876142,-0.067445196,-2.285068,0.1020991,-0.37324056,-0.15377155,-0.15870221,-0.13973399,0.21684068,-0.50632626,-0.6216202,0.23708293,0.3228939,0.38407052,-0.13146807,0.074673146,-0.22782937,-0.3831648,-0.10720442,0.3508541,0.0938743,0.10572018,-0.31121108,-0.50508726,-0.1651687,-0.025822453,-0.25236323,-0.023393441,-0.35001665,-0.19814093,-0.007323556,-0.2876103,-0.06388552,0.508397,-0.4510478,-0.065036766,-0.4153118,0.0056593698,0.1727875,0.09738278,0.07949446,0.17099422,0.0036118084,0.00079563435,0.039308697,-0.3458064,0.18680826,0.056446843,0.30431703,0.5253106,-0.030683728,0.05560581,0.5246072,0.50560385,-0.13550024,0.8375307,0.25949693,-0.27489656,0.325373,-0.15201043,-0.30387282,-0.6922307,-0.27808505,-0.050344244,-0.40772262,-0.45610526,-0.04180717,-0.35132927,-0.7961777,0.56717765,0.18900694,0.08368441,-0.18344986,0.42873806,0.3902621,-0.21998453,-0.030101446,-0.13623765,-0.23252569,-0.34055176,-0.36455074,-0.9697646,-0.36840636,0.12575614,1.1622884,-0.22594345,-0.19484234,0.2772524,-0.23380423,-0.09613633,0.16059518,0.22706708,0.2153256,0.2530143,0.20493867,-0.49962312,0.6092767,-0.0936349,0.07444882,-0.6109308,0.006202053,0.63524,-0.61394244,0.34095624,0.5690285,0.013470191,-0.13959771,-0.94287986,-0.13340022,0.038768977,-0.21455358,0.51270807,0.32219893,-0.79844,0.59390754,0.16786504,-0.23743178,-0.6889338,0.420534,-0.15125895,-0.2484525,0.0096690655,0.3727142,0.13805234,0.024419231,-0.13618736,0.24265862,-0.2550795,0.45200947,0.01098145,-0.2019444,0.26005092,-0.12717177,-0.25483927,-0.8495495,-0.022887178,-0.37524915,-0.333779,0.3703427,-0.018666046,0.10383773,0.13960662,0.1696175,0.4239613,-0.28564802,0.078929216,-0.20344256,-0.32560062,0.36793414,0.5015666,0.5464147,-0.25643215,0.5831404,-0.07107417,-0.10304952,-0.066161394,0.14369504,0.41925344,0.029079929,0.36773065,0.01660107,-0.10785832,0.10358122,0.7987857,0.23917353,0.26085785,0.15627606,-0.22821732,0.4302385,0.03856907,0.15681374,-0.020649128,-0.5603484,-0.06713239,-0.24342832,0.2201199,0.4893248,0.12016894,0.56775576,-0.1473287,-0.00962533,-0.02841939,0.07476667,0.17432228,-0.9052022,0.2656604,0.24771996,0.6950332,0.58511364,0.24529937,0.14321335,0.57574314,-0.35849193,0.01355408,0.45276356,0.016390625,-0.31020397,0.49548844,-0.6236972,0.2708492,-0.04730002,0.038461827,0.21573503,-0.0897062,0.49452108,0.9806104,-0.23209515,0.015548072,0.055020522,-0.35588127,0.06463657,-0.13210328,-0.07248683,-0.20199423,-0.40312257,0.62153184,0.3224924,0.31296474,-0.22978115,-0.05304584,0.21389598,-0.18325959,0.3264528,0.07033083,0.030886194,-0.14024904,-0.29142547,-0.3493011,0.6032973,-0.19043674,0.046220537,0.08361522,-0.14256081,0.18877865,-0.14431128,-0.2097801,0.13981174,-0.50187546,0.030039767,-0.2094897,-0.5327313,0.57703847,-0.000754977,0.08727817,-0.011370161,0.012083616,-0.13321303,0.28538626,0.10046307,0.46100268,0.17208512,-0.10428101,-0.04634845,-0.18019114,0.09174684,-0.26709098,0.050136693,-0.041059986,0.26173604,-0.84401584,0.3284883,-0.3911795,-0.34200278,0.053862456,-0.34107158,-0.0928156,0.2730254,-0.05072508,-0.20461711,-0.020962825,-0.13036129,-0.37468153,-0.4120107,-0.27378297,0.08796976,-0.11344877,-0.11093527,-0.17142677,-0.09213606,0.027123788,0.167771,0.033441186,0.06462873,0.20766917,0.08392343,-0.43927455,-0.12741244,0.2069542,0.4042102,-0.20388891,0.053523153,-0.23229116,-0.38685554,-0.31616092,0.34669754,-0.20170514,0.2302535,0.030808799,-0.3656367,0.975698,-0.05332233,0.9854407,0.046794683,-0.43783525,0.08521273,0.6293235,-0.02614212,0.19520298,-0.18326499,0.89390737,0.6435467,-0.023626955,-0.19472612,-0.5418208,-0.014810153,0.24926873,-0.3335628,-0.19564968,-0.0065989634,-0.55355865,-0.06770196,0.30229604,0.14000204,0.019239051,-0.13664791,-0.027519543,0.2017058,0.30953187,0.29171696,-0.61919004,-0.120150976,0.38705292,0.007113534,-0.0045850924,0.18843138,-0.4061833,0.28933555,-0.55972934,0.19445491,-0.3932372,-0.00652586,-0.06834152,-0.14997752,0.17120709,-0.002043584,0.26476288,-0.23420276,-0.33782855,-0.04649903,0.28681314,0.20355123,0.3678658,0.60866976,-0.16659792,-0.00036285556,-0.15028852,0.5030005,1.0824155,-0.37189186,-0.15313914,0.31856143,-0.35426965,-0.6580095,-0.023777338,-0.5206786,0.08702048,-0.010276135,-0.5335598,-0.35713455,0.25029984,-0.111870706,-0.021200605,0.07106398,-0.54333663,0.03304056,0.076969385,-0.26180243,-0.15213305,-0.109306335,-0.048046898,0.85725486,-0.2578981,-0.26332924,-0.0023934946,0.2601153,-0.34681404,-0.5499387,0.1988462,-0.27758178,0.24856529,0.122838214,-0.33707866,0.12823276,0.15396813,-0.4705222,0.018502962,0.47933656,-0.2704557,-0.042223725,-0.42253852,0.28021273,0.72620684,-0.14385945,-0.03161138,-0.2922527,-0.5433248,-0.6564266,-0.2879257,-0.06912236,0.13350002,0.0039337524,-0.57837534,-0.009694983,-0.2371548,0.009701473,0.004267959,-0.60856843,0.49335957,0.26384,0.2693206,-0.3339511,-0.87016565,0.04200284,0.056165185,-0.1563647,-0.4892957,0.5813343,-0.28389668,0.8988161,0.09493354,-0.05623954,0.09847184,-0.71379507,0.39653125,-0.40347278,-0.14520946,-0.5570829,0.06269128 -522,0.4805629,-0.401172,-0.5102972,-0.16485667,-0.24178126,0.24353388,-0.28043553,0.20308682,0.08176412,-0.53996193,-0.087102234,-0.37563568,-0.023235831,0.51304156,-0.28559342,-0.75344616,-0.005648315,0.19017114,-0.707202,0.6512906,-0.42700514,0.3494954,0.19431588,0.0065245456,0.2254966,0.19863705,0.49413636,-0.18096747,0.06729265,-0.07791939,-0.18586542,-0.03646102,-0.77602714,0.018054297,-0.21831584,-0.30139425,0.13121074,-0.34113497,-0.4412067,-0.87981164,0.5381213,-0.9748783,0.29442674,0.0154152345,-0.3287548,0.3496534,0.15350077,0.19511771,-0.21469785,0.077939734,0.19512774,-0.03205961,-0.078642,0.023381472,-0.28175774,-0.6399555,-0.71100414,0.07953048,-0.77283305,-0.43676716,-0.1926643,0.28990045,-0.38199,0.09918397,-0.19394474,0.25647333,-0.48818615,-0.4149219,0.19270065,-0.06764854,0.26499417,-0.71123326,0.05366216,-0.17473526,0.051479112,-0.106894724,-0.011006756,0.36390445,0.29243177,0.56229836,0.10234494,-0.28681347,-0.1997632,-0.18465081,0.3520582,0.58547866,0.105349064,-0.5099883,-0.30626887,0.08210863,0.33029824,0.1712866,0.07549632,-0.4299161,-0.08075641,-0.06643027,-0.25950092,0.53875023,0.48774672,-0.5127215,-0.3895561,0.42601892,0.6628989,0.20648716,-0.19982277,0.096871495,0.009105909,-0.6078641,-0.087983,0.3965218,-0.3373018,0.60767555,-0.22721966,0.12735668,0.7309635,-0.20241408,0.16981599,-0.3640181,-0.057066094,-0.19345617,-0.010281444,-0.23597577,0.22544363,-0.5614723,0.12644923,-0.29071063,0.8332381,0.185937,-0.70011604,0.43142205,-0.58843696,0.31244397,-0.1756632,0.8073569,0.60624987,0.27327222,0.16305752,0.8252115,-0.44108626,0.2022885,-0.04989593,-0.38065535,0.089889355,-0.35370654,-0.22843643,-0.25774518,0.098702446,-0.27931774,-0.10688763,-0.30759457,0.76348543,-0.38211623,-0.08527275,0.0045034206,0.769813,-0.33070067,-0.005089249,0.5910691,0.9577503,1.2816465,0.04671687,1.4093354,0.4755115,-0.25816467,-0.023687933,-0.18359184,-0.8158215,0.27576822,0.5374752,0.464844,0.3046259,-0.060704228,-0.05952885,0.29733127,-0.4961451,0.12856178,-0.28008613,0.19711651,0.012830623,0.034779247,-0.38972944,-0.08969637,0.083166294,0.17433546,0.18715964,0.29017815,-0.26344654,0.3586473,0.053966798,1.5807146,-0.32188565,0.046632368,0.15753104,0.59199417,0.2218077,-0.08766645,0.13714437,0.17815872,0.502955,0.012720363,-0.9151735,-0.00012831177,-0.47566932,-0.5213008,-0.3202625,-0.31119418,0.11571524,-0.010102762,-0.41481033,-0.36891857,0.16621163,-0.29776812,0.39701673,-2.137866,-0.2120719,-0.43228698,0.16975823,-0.36767584,-0.1953825,-0.07990437,-0.63731545,0.34262648,0.4487327,0.32316038,-0.7509567,0.35200998,0.5248913,-0.44788024,0.04242431,-0.77455175,-0.10186816,-0.25127655,0.64123785,-0.0056350543,-0.03233393,-0.054855056,0.21051039,0.48034254,0.21063831,0.09376056,0.19685616,0.4877544,0.19300124,0.524924,0.18884648,0.35579374,-0.24694169,0.03807766,0.6462273,-0.29957047,0.51788217,-0.40536323,0.15370591,0.4184796,-0.5785518,-0.81597155,-0.7135919,-0.44369918,1.1617978,-0.30921957,-0.7522522,0.44405863,0.14896749,0.0024050304,-0.13126884,0.465587,-0.29542464,0.00065304124,-0.69257206,-0.045736175,0.06738965,0.22518526,0.03663202,0.057736117,-0.37533018,0.8624825,-0.007043268,0.36960378,0.1946139,0.23087811,-0.2243005,-0.72478145,0.08480639,0.9266051,0.49803346,-0.025153533,-0.27647382,-0.24070771,-0.3368452,-0.31229013,-0.09573257,0.31765786,0.9381666,-0.013546995,0.08726398,0.26538816,-0.12178528,0.06702127,-0.114954196,-0.38889974,-0.04786208,-0.121234655,0.52681357,0.45521185,-0.12401653,0.31366706,-0.16216199,0.29377636,-0.0063700355,-0.47657886,0.53899246,1.1542803,-0.09247851,-0.067002244,0.47309664,0.6559579,-0.42443958,0.6517442,-0.8479914,-0.2774828,0.5933186,-0.21950798,-0.43208987,0.15536399,-0.39803043,0.000199476,-0.8879537,0.45259875,-0.3115588,-0.07371169,-0.51857054,-0.30023378,-2.7423131,0.17999187,-0.21977665,-0.0612212,-0.16256367,-0.054716878,0.3775673,-0.37273392,-0.6354249,0.11958305,0.03470511,0.5332727,0.12774654,0.2035502,-0.2856928,-0.0015195012,-0.6421523,0.19826181,-0.03887302,0.32461062,-0.11884109,-0.42323452,0.09464158,-0.41073015,-0.395042,0.015973227,-0.45006016,-0.45805788,-0.29219383,-0.35019264,-0.23346625,0.5638397,-0.06669981,0.010497366,-0.12037935,-0.090399995,-0.036258645,0.2791942,0.13062055,0.2619957,0.052921932,0.0050627505,-0.06836392,-0.29496905,0.3799193,0.0015622868,0.20980392,0.26891443,-0.16044573,0.038943715,0.44103643,0.5109443,-0.20550646,0.8270799,0.5083593,-0.12580712,0.11565901,0.13021632,-0.22757672,-0.5912501,-0.25949544,0.022757104,-0.27996582,-0.66612285,-0.16134538,-0.31963438,-0.76362115,0.357661,-0.012796981,0.34266424,0.058340006,0.055858213,0.3496568,-0.13185465,0.07924993,-0.11261362,-0.13939336,-0.5442739,-0.40540245,-0.8712968,-0.55811673,0.2015177,0.9465584,-0.16954236,-0.44309196,-0.051465034,-0.27834752,0.04207951,-0.1096738,-0.039148718,0.24395084,0.34183273,-0.015232084,-0.8993756,0.75329393,-0.023845183,0.16041772,-0.35268018,0.058978762,0.55338424,-0.5183841,0.24953775,0.5442211,0.14432767,-0.016774297,-0.6739612,-0.20639507,0.06536215,-0.26586035,0.43694773,0.053045534,-0.68414956,0.51479846,0.015776025,-0.5532006,-0.84598213,0.5505603,0.061060328,-0.17068611,0.024650266,0.3129469,0.0344778,0.03879559,-0.5584622,0.35635805,-0.57082766,0.2661375,0.34751394,0.027435804,0.41494253,-0.24060687,-0.41776162,-0.62178373,0.072572686,-0.40787935,-0.12311975,0.18409596,-0.01605105,-0.015914185,0.19592007,0.07635792,0.550198,-0.25040206,0.120504804,-0.00026902132,-0.2580899,0.61234635,0.4770479,0.5067448,-0.5185143,0.6995302,0.11167705,-0.2065595,-0.089003205,0.030621039,0.21321987,0.2299211,0.28050622,0.11959604,-0.07137892,0.2573047,1.0228517,0.26542303,0.42943606,0.24760243,-0.4897682,0.4679844,0.19092976,0.07968719,-0.09694285,-0.5343086,-0.24944337,-0.07011719,0.016364312,0.55813795,-0.028948456,0.55587137,-0.10810661,-0.18718402,0.048869606,-0.038781676,-0.19644573,-1.0373569,0.100199565,0.110627696,0.644231,0.7199109,-0.15938345,0.1717373,0.5911718,-0.24662733,0.037620563,0.40615535,0.17575301,-0.6915354,0.5162057,-0.5049167,0.29957882,-0.14813061,0.030944845,0.18365182,0.28253266,0.43159977,0.7272007,-0.0043857074,0.06513057,-0.17672122,-0.30280992,0.31364632,-0.37573224,0.26176962,-0.29662457,-0.37707832,0.57506216,0.4862557,0.18701081,0.060082283,-0.049655076,-0.013565055,-0.14788201,0.29425567,-0.039031107,-0.06468693,-0.072542086,-0.6467127,-0.24608503,0.60582143,0.10976248,-0.008601568,-0.033001624,-0.35626617,0.16246238,-0.39703798,-0.017303998,-0.06022642,-0.8859814,-0.045884736,-0.09952767,-0.43472952,0.35117808,-0.19542591,0.27236515,0.27329516,-0.18204376,-0.367747,0.03791505,0.148296,0.7600447,-0.048308734,-0.08510937,-0.49198776,-0.15290785,0.2986186,-0.31943402,0.09951317,-0.05339821,0.018909859,-0.73113,0.67743367,-0.27767316,-0.28317225,0.23091117,-0.26231572,-0.20014845,0.6110484,-0.15750761,-0.07496427,0.1264895,0.0274092,-0.1837246,0.011433197,-0.205361,0.10951956,0.15004559,-0.19915833,-0.21056522,-0.09561163,0.119962804,0.5331293,-0.10602302,0.2806835,0.32931963,0.059065945,-0.58214444,-0.08139573,0.14469202,0.45298788,0.19046403,0.084620796,-0.1508085,-0.37417862,-0.30593994,0.27080554,-0.13959198,0.2817164,0.19661883,-0.46615776,0.63938135,0.3883355,1.251107,0.04855142,-0.35706544,0.16495533,0.69312775,0.076937065,-0.06836974,-0.503528,0.76144785,0.6518088,-0.20874767,-0.16328296,-0.40343314,-0.15399988,0.26056957,-0.2756645,0.073252626,0.02579956,-0.68453443,-0.26306197,0.20230415,0.36443773,0.027480448,-0.1521544,-0.0031994197,0.045794465,0.13648415,0.6227154,-0.6356084,-0.25879344,0.34030324,0.03327111,0.118972614,0.06538494,-0.300198,0.42323923,-0.6802071,0.09706782,-0.27340153,0.18939964,-0.2072228,-0.35618547,0.20931663,0.2531114,0.3625972,-0.35157043,-0.53849924,-0.23772885,0.770148,0.25956076,0.41399002,0.72377664,-0.4198709,0.29128236,-0.09850002,0.6312561,1.2988656,-0.25605378,0.06817025,0.18760154,-0.4749277,-0.8168098,0.3737104,-0.4865597,0.23445916,-0.055146463,-0.28835994,-0.54488105,0.32866198,0.1571921,-0.146947,0.14078033,-0.59070724,-0.44858894,0.310186,-0.12967572,-0.37091064,-0.47616556,0.23575817,0.74927384,-0.4361506,-0.26184845,0.15273967,0.3570377,-0.37164953,-0.79824334,-0.022811592,-0.35796338,0.40321985,0.04575319,-0.10666021,0.054524362,0.09922743,-0.56206787,0.17430487,0.22334819,-0.39462128,0.04188297,-0.30552012,0.25723317,0.9327876,-0.21025173,-0.31291676,-0.7713121,-0.6235854,-0.95715624,-0.5540763,0.5950858,0.22212096,0.18476741,-0.45720533,-0.06479044,-0.2206253,0.36505443,0.16647615,-0.62152725,0.37274107,0.013075856,0.50307876,-0.12786703,-0.7734398,0.0420706,0.091535985,-0.23394208,-0.32651475,0.622489,-0.15445654,0.8544506,0.16597857,0.12453629,0.12971413,-0.6177627,0.3508451,-0.30154327,-0.31608567,-0.634788,0.30920097 -523,0.21488595,-0.006994162,-0.5379756,-0.26192886,-0.34797043,0.33477402,-0.32463378,0.20393796,0.23935628,0.041577708,0.15281399,-0.16882102,-0.23181942,0.35261136,-0.13711601,-0.83219105,-0.010814727,-0.05439614,-0.63581264,0.47934565,-0.468309,0.4209028,-0.18170205,0.2756286,-0.06875079,0.47634655,0.31502816,-0.07471355,0.07640751,-0.112480335,-0.11548715,-0.06623511,-0.66363984,0.15266027,-0.14816794,-0.15918711,-0.06865139,-0.51769257,-0.3117105,-0.7185868,0.33953652,-0.6999339,0.38332626,-0.17091744,-0.372006,0.074086435,0.14270253,0.25040796,-0.3622543,0.048061676,0.24307539,-0.29835537,0.037330475,0.014448411,-0.33649355,-0.75342256,-0.46961573,-0.124739096,-0.61160904,-0.22842745,-0.25002646,0.21070036,-0.37196255,-0.08783458,-0.13721669,0.1614867,-0.3993821,-0.05408751,0.27501866,-0.43276724,0.07917715,-0.51249737,0.10109272,-0.13243648,0.27709994,0.18037142,-0.100685164,0.4512995,0.31829503,0.43867925,0.19069116,-0.24477267,-0.18570079,-0.2290297,0.107686296,0.5300781,0.06369701,-0.33918503,-0.22179988,-0.14054361,0.31186703,0.19419445,-0.024364263,-0.1676791,0.0067832046,-0.009549303,-0.25634125,0.46704218,0.5371026,-0.33688623,-0.037867554,0.5000622,0.4640862,0.2814272,-0.17257135,0.23281625,-0.078688845,-0.34886137,-0.30051583,0.21059915,-0.11465882,0.46492848,-0.20519228,0.17770298,0.7817993,-0.103769325,0.08903803,-0.19624129,-0.21679817,-0.11825164,-0.17916492,-0.025577888,0.13629742,-0.42634028,0.19209974,-0.24080372,0.59048927,0.23002806,-0.60889477,0.44221607,-0.4105416,0.2027391,0.02881128,0.6882989,0.82157755,0.55905545,0.069630034,0.95067036,-0.36369893,0.05792942,0.035432033,-0.24459545,0.27919286,-0.07859901,0.13333853,-0.5026776,0.17866695,0.162564,0.056275126,0.04179465,0.229924,-0.3791599,0.023644624,-0.017808845,0.6640636,-0.30256003,-0.06598572,0.7853146,1.1642562,0.8421425,-0.0065050083,1.3253384,0.27516425,-0.27308565,-0.027892262,-0.1983464,-0.60757107,0.1992292,0.4153281,0.4167154,0.46505406,0.14115301,-0.08415301,0.30853027,-0.33802193,-0.043192264,-0.019270267,0.21664958,0.119120136,-0.042694844,-0.33190307,-0.12551455,0.28456026,0.08367627,0.068731524,0.2368528,-0.262354,0.4377597,0.09194863,1.2394177,0.08688251,0.09464768,0.008802925,0.5580221,0.33546352,-0.0546692,-0.005549748,0.48971257,0.14783154,-0.027805133,-0.5530562,0.082786515,-0.39790747,-0.5168486,-0.14213024,-0.40022555,-0.18537949,-0.075776294,-0.3672658,-0.04373633,-0.021129148,-0.40085143,0.47293523,-2.584526,-0.16183257,-0.3420256,0.32525158,-0.29491097,-0.14066264,-0.2262111,-0.4163909,0.30708006,0.42723435,0.40134478,-0.650929,0.44488305,0.4388191,-0.4320781,-0.047172885,-0.4697378,0.10646598,-0.08224575,0.4340164,-0.069754295,-0.25104183,-0.109086156,0.47309342,0.7064601,0.38554594,0.03549222,0.24492113,0.59534734,-0.1810941,0.4332575,-0.08101218,0.5351581,-0.22163339,-0.0001538066,0.2956377,-0.62217087,0.5142592,-0.1497393,0.20024356,0.3713291,-0.3017334,-0.8624135,-0.62381077,-0.3996243,1.3280708,-0.47660616,-0.6360958,0.36202368,-0.116361804,-0.21461026,0.090588376,0.7595355,-0.07784516,-0.03969252,-0.5444379,0.105679035,-0.20405634,0.24896309,0.004284317,0.25468674,-0.36262473,0.84220856,-0.233623,0.5096028,0.15780583,0.14303496,-0.031665303,-0.39073104,0.03420688,0.5766778,0.59741265,0.038731694,-0.045255106,-0.10185533,-0.1989088,-0.38795885,0.057106238,0.7724166,0.5529238,-0.050082948,-7.124032e-05,0.29413676,-0.14657864,-0.0052998653,-0.18474758,-0.23957276,-0.066846855,0.052040108,0.52081674,0.5843905,-0.19103663,0.13042943,-0.064783275,0.17453721,-0.19028142,-0.6022175,0.44294482,0.66899985,-0.21370146,-0.042781573,0.20497279,0.403831,-0.36335224,0.47134995,-0.711154,-0.36515537,0.66751605,0.07000143,-0.5064644,0.121298835,-0.23701465,-0.05383087,-0.74386567,0.22850962,-0.10465259,-0.68746835,-0.3928888,-0.2005776,-3.7038271,0.048718035,-0.04442594,-0.15713601,-0.33821827,-0.03210341,0.42688808,-0.52260625,-0.604857,0.04910555,-0.028472926,0.59371185,-0.1636893,0.18889272,-0.32970795,-0.094665356,-0.38909656,0.2474264,-0.06466244,0.37300286,-0.07656657,-0.24857788,-0.072444454,-0.25091696,-0.6232577,-0.08409166,-0.5451937,-0.38994327,-0.16536972,-0.36399904,0.021734076,0.61046284,-0.39068168,-0.010529169,-0.21718307,-0.028417895,-0.27256727,0.25802833,0.2917569,0.05746457,0.013105699,-0.09767907,-0.060187165,-0.30504397,0.39581412,0.07435722,0.37326193,0.36402115,-0.19411048,0.040964548,0.6041001,0.63883644,-0.029023958,0.7016217,0.044451892,-0.0671978,0.5480334,-0.22487459,-0.1939427,-0.6603758,-0.39220187,-0.041147243,-0.41686204,-0.45308822,-0.3151361,-0.31298786,-0.8580799,0.07547845,0.22652142,0.30297494,-0.09219641,0.116999306,0.4156783,-0.13091718,0.11986222,0.088465706,-0.25014487,-0.57768583,-0.3034169,-0.5302928,-0.5178894,0.37627697,0.8318249,-0.060613196,-0.14103307,-0.065634444,-0.3895611,0.10447345,-0.11342076,0.3033487,0.13567066,0.2368858,-0.087358356,-0.5715207,0.47791067,-0.22284935,-0.11798381,-0.7396266,-0.020945577,0.62618244,-0.5067776,0.4054861,0.40802497,0.23887992,0.021635754,-0.6070389,-0.14718984,-0.018548131,-0.18980037,0.4042259,0.1197587,-0.6282544,0.43490624,-0.20337443,-0.07922935,-0.48982033,0.4731662,0.037380867,0.02045766,0.046058256,0.39932433,0.12870874,-0.19209039,-0.19311726,0.21623231,-0.5326422,0.2885404,0.3799583,0.07404918,0.67404807,0.06149509,-0.2923243,-0.6382274,-0.19453931,-0.49034172,-0.1538532,0.11844514,0.021341026,0.07218086,-0.08546233,0.014937631,0.3356178,-0.31628507,0.25531095,-0.039148502,-0.3412619,0.5896615,0.5646642,0.41482475,-0.5453387,0.6926672,0.122196145,-0.012196928,0.10966066,0.020232186,0.4934404,0.27077952,0.40873665,0.08820844,-0.016842322,0.057605643,0.55215484,0.2849522,0.2629039,0.07356262,-0.3737931,0.4913697,0.11220671,0.16308339,-0.14557488,-0.4886859,0.0063584275,-0.032751746,0.15313159,0.3993507,0.255007,0.39761263,0.08363026,-0.25849512,0.1745611,0.05558782,-0.35751185,-1.0600605,0.33151785,0.3761955,0.8371142,0.45006004,-0.11138137,0.1679082,0.49331623,-0.1763197,0.050760366,0.34565443,0.11025201,-0.5272783,0.5132108,-0.5656847,0.3942306,-0.03492635,-0.09661041,0.34007192,0.37263364,0.51081234,0.75895244,-0.1943403,-0.04137551,-0.022844464,-0.28655547,0.08328704,-0.17642684,0.09010514,-0.46510705,-0.3408925,0.42625588,0.3264545,0.33429092,-0.28849083,-0.15952794,-0.13958009,-0.17326416,0.1663429,-0.16638486,-0.15943933,-0.31194973,-0.72935694,-0.44837388,0.4178832,-0.13588418,0.05263317,0.075101696,-0.52177966,0.15476848,-0.09589387,0.05353754,0.06702868,-0.6733814,0.08360604,-0.15577619,-0.44456795,0.46447924,-0.3566362,0.44161573,0.1874532,-0.16959794,-0.31485072,0.10712503,0.12603779,0.90790254,-0.014307984,-0.19542088,-0.47584078,-0.051326238,0.30083698,-0.37824202,-0.11675215,-0.3317224,-0.0634376,-0.3560136,0.39093825,-0.38356623,-0.20399089,0.21875587,-0.25421497,-0.078118615,0.3985751,-0.32907873,-0.2638887,0.07681555,0.0002923927,-0.21266769,-0.0016175935,-0.4460236,0.2726564,0.13525064,-0.025988536,-0.033180326,0.023266288,0.031189706,0.24571483,0.06405317,0.08085517,0.28968862,-0.092780046,-0.34054795,-0.12103723,0.049109805,0.44810015,0.20567404,0.033245087,-0.17796671,-0.52290803,-0.33657667,0.26286224,-0.20335959,0.10288726,0.16529499,-0.28422603,0.57067746,0.15066074,1.1712369,0.0685007,-0.39490393,0.22136381,0.6555114,0.07058764,-0.020683339,-0.366297,0.83703434,0.5302487,-0.24638237,-0.18545625,-0.37581292,-0.15869066,0.3931827,-0.20765473,-0.19293885,-0.11315719,-0.79856193,-0.17577113,0.13739653,0.19117667,0.030918185,-0.10117334,-0.25616035,0.03082249,0.1698885,0.47288388,-0.4617829,-0.22069347,0.4886301,-0.11207999,-0.055654056,0.05980727,-0.24104299,0.4427673,-0.60888755,0.034578387,-0.5397715,0.042225067,-0.16223018,-0.25457817,0.18863153,-0.14838386,0.3592078,-0.19416308,-0.40918532,-0.07133349,0.57785183,0.38196418,0.39748022,0.6124615,-0.15740974,-0.10403474,0.046202403,0.63489395,1.2045892,-0.1612344,0.2415292,0.31609038,-0.58569896,-0.54210144,0.026515901,-0.47128457,0.033730157,-0.10511994,-0.41066408,-0.27477375,0.29519218,0.041446745,-0.00073862926,0.18454583,-0.63376087,-0.30468607,0.17503093,-0.3100532,-0.28485572,-0.4835202,0.18022303,0.84862083,-0.3498809,-0.4284665,0.13174072,0.24185872,-0.24439815,-0.6541972,0.1459919,-0.16964924,0.38082388,0.07230145,-0.41584596,0.06595864,0.32252353,-0.44682032,0.3366631,0.080113895,-0.35986808,0.017181393,-0.2018564,-0.049078,0.8235939,0.1233687,0.11258314,-0.79032546,-0.36151674,-0.86615974,-0.47357342,0.12749171,0.22434127,-0.10986989,-0.38903108,-0.11628728,-0.23316206,0.17335913,0.010286055,-0.4991341,0.37255356,0.17996731,0.6790153,-0.18147771,-0.87363243,0.111390844,0.2127579,-0.22322972,-0.49211115,0.5511008,-0.19818768,0.64576876,0.16143815,-0.0014438586,0.06755887,-0.59697247,0.34935883,-0.29382712,-0.13790132,-0.57304686,0.41210365 -524,0.59429115,-0.055924278,-0.7033105,-0.035893563,-0.32566503,0.16779576,-0.45581,0.19517066,0.4509099,-0.44612184,0.040565617,-0.061961576,-0.0014912598,0.24247514,-0.12562767,-0.4640767,-0.095932364,0.18726453,-0.54490685,0.68458486,-0.48155266,0.22398046,0.27984,0.39683178,0.0831654,0.12864453,0.16150501,-0.20623766,-0.18533832,-0.23714355,0.14391285,0.15175493,-0.64948523,0.21334395,-0.26840943,-0.22707218,-0.07524197,-0.44402152,-0.34291595,-0.72441405,0.23849678,-0.76196766,0.64740616,-0.011388354,-0.33862948,0.12654427,0.19614702,0.070390105,-0.19774696,0.07737994,0.23548174,-0.35212725,-0.63210905,-0.12369519,-0.1369028,-0.4386711,-0.6547485,-0.1112683,-0.60848236,0.18786272,-0.39044905,0.337729,-0.3921489,-0.0419408,-0.20959745,0.4813521,-0.45942312,0.15423574,0.09130153,-0.21590386,0.06845897,-0.62818253,-0.056827966,-0.029956017,0.23976383,0.2961538,-0.20757012,0.11795701,0.28431427,0.5760829,0.19834238,-0.36599743,-0.4797525,0.025034515,0.048265412,0.38418984,-0.21852882,-0.17369884,-0.17202915,-0.025683448,0.5529057,0.31171793,0.010610057,-0.30190012,-0.07751022,-0.15279193,-0.2852039,0.38924408,0.6119039,-0.26315925,0.011911824,0.40675336,0.36143637,0.21186496,-0.2294138,0.14759272,-0.1661661,-0.57919985,-0.113695085,0.10676515,-0.11280028,0.42351478,-0.112173446,0.34306583,0.59590095,-0.106886804,-0.19637859,0.15539177,0.074024096,0.12194196,-0.3281684,-0.1935342,0.37607944,-0.58408755,0.08480912,-0.3333671,0.5958689,-0.13284087,-0.85238314,0.3771259,-0.36626163,0.2011484,0.14254332,0.72821236,0.999197,0.66497433,0.23321256,0.94015896,-0.35810316,0.12401199,-0.18854815,-0.3171002,0.3164052,-0.029423699,0.47083795,-0.56091124,-0.108346716,-0.1045295,-0.18023466,0.02693653,0.8530592,-0.48966786,-0.20955299,0.15498537,0.7025744,-0.23535222,-0.10000898,0.88079405,1.0939652,1.0701774,0.048291054,1.2450148,0.30534405,-0.16142772,-0.2622923,-0.24390173,-0.92180836,0.20411292,0.28620666,0.43825567,0.3041661,0.27433023,-0.13452137,0.53813124,-0.35199064,-0.27583212,0.0149623975,0.44167817,-0.057439517,-0.12534457,-0.40429187,-0.18841875,0.17445248,0.022418475,0.22943616,0.38291246,-0.121629745,0.45847416,0.07840437,1.5685436,-0.16055328,0.08643058,0.13677007,0.22812274,0.23723432,-0.082048595,-0.05205709,0.3344913,0.44513866,0.006215574,-0.44091392,-0.011735849,-0.26269567,-0.47092357,-0.19512776,-0.31968987,-0.23735337,-0.31684533,-0.2233644,-0.24103497,-0.048861083,-0.6107954,0.25727782,-2.7214353,-0.10711194,-0.10794976,0.26394832,-0.16957672,-0.32505554,-0.15055601,-0.44629246,0.65486383,0.3006161,0.55312634,-0.6282548,0.518124,0.54532015,-0.65121716,-0.04841967,-0.86060417,-0.15974651,-0.22512189,0.45648316,-0.04699749,-0.46687424,-0.078938,-0.03736265,0.6194781,-0.028132048,0.13201074,0.5673267,0.47262657,-0.19352224,0.4193422,-0.1271864,0.6240632,-0.2986945,-0.24280035,0.37133452,-0.401689,0.25957435,-0.48243994,0.0862086,0.4469136,-0.35544744,-0.7151343,-0.39827558,0.1444657,1.0792215,-0.42121997,-0.5966895,0.17457198,-0.40497988,-0.1646719,0.25783408,0.60913414,-0.12700294,-0.034371294,-0.8381989,-0.16988534,-0.055483736,0.13418561,-0.09420976,0.19315562,-0.54252666,0.8197991,-0.106484674,0.59738827,0.42461756,0.3165979,-0.25543788,-0.2981287,0.21051735,0.9344827,0.37773976,0.014676617,-0.27912593,-0.19480552,-0.11519421,-0.33309484,0.012179827,0.7007722,0.5482773,-0.12710553,0.14071879,0.30431962,-0.27228263,0.0140062645,-0.20519868,-0.36546153,-0.28263658,0.05759711,0.5889472,0.7627771,0.043059662,0.5340115,-0.004652027,0.29645765,-0.13457969,-0.59021974,0.57765085,0.6371213,-0.27929282,-0.2028428,0.5784392,0.29176608,0.011857361,0.62172437,-0.59404504,-0.43071026,0.25010154,0.008681687,-0.4408834,0.3270262,-0.4522758,0.029241465,-0.8929063,0.1815297,-0.34464556,-0.6520222,-0.6822798,-0.23213989,-2.617296,0.10191874,-0.3349041,0.0010177772,-0.17004858,-0.11196635,0.26471484,-0.45180142,-0.64120877,0.10188027,0.21728416,0.5480944,-0.18721053,-0.03510474,-0.21670283,-0.44892353,-0.3230601,0.26151276,0.13854755,0.21286127,0.039734643,-0.41342407,-0.021547372,-0.20724453,-0.13606998,-0.17063117,-0.58247685,-0.25711495,-0.04817173,-0.44047368,-0.31946254,0.69964206,-0.39590958,0.08514185,-0.34308058,0.08145752,0.09448248,0.18884407,-0.15056428,0.22882888,0.06820454,-0.15248072,0.0048172977,-0.29666752,0.2617179,-0.031226201,0.3665784,0.5989737,-0.10303074,0.15462402,0.4800384,0.7786517,-0.14283903,1.1348684,0.46918643,-0.11244486,0.1951659,-0.10630394,-0.20633027,-0.6904177,-0.17363587,-0.040764857,-0.61227053,-0.33059385,0.020194769,-0.481786,-0.8493649,0.58732766,0.1950663,0.056336366,-0.055031568,0.47732493,0.5633157,-0.19578591,-0.06306833,-0.15368693,-0.34366554,-0.41731688,-0.27960625,-0.81282985,-0.51916677,-0.12881483,1.1972195,-0.12404098,-0.14500824,0.11799263,-0.3365607,-0.044016417,0.2180633,0.10375649,0.1539774,0.4133653,0.18189305,-0.679309,0.49850917,-0.24603051,0.095022395,-0.70336944,0.28814477,0.58961606,-0.75144863,0.41545478,0.482483,0.23154083,-0.19463576,-0.7882138,-0.18497205,0.15822837,-0.13892512,0.49200666,0.36289865,-0.8303683,0.7303865,0.27769613,-0.14302516,-0.8055819,0.25000358,-0.0019366089,-0.3022324,-0.027120396,0.3502926,0.09276549,0.17684597,-0.41173202,0.26539776,-0.41058356,0.5630485,-0.0058521964,-0.27025875,0.3287072,-0.15925932,-0.25375038,-0.8003937,-0.07231979,-0.45579273,-0.34301305,0.23788583,0.14597799,0.14606068,0.020649455,0.22551352,0.51020455,-0.41760284,0.12868343,-0.51312494,-0.32030517,0.5098387,0.5891497,0.3213219,-0.38337085,0.6447078,0.050053064,-0.25877854,-0.136167,-0.038910724,0.3768948,-0.08206052,0.49398655,-0.055373106,-0.15645707,0.30968845,0.7926107,0.081880316,0.30656856,0.10633649,-0.1438826,0.37870586,-0.09451027,0.15256603,-0.22143261,-0.63096553,-0.14791203,-0.2013728,0.2476597,0.48913652,0.21070407,0.57667065,-0.14817084,-0.046677716,0.1044647,0.12506013,0.16728783,-1.1045251,0.35436827,0.18292674,0.72681427,0.46651977,0.000892777,-0.035896644,0.7158251,-0.2969066,-0.026805306,0.41531307,-0.0038238093,-0.21161738,0.5641379,-0.84094983,0.3718341,-0.2610937,0.10079077,0.17527558,0.08250446,0.47905806,0.99269366,-0.2534274,0.13432029,-0.047868386,-0.2723496,0.12176722,-0.110445835,0.06329052,-0.48891923,-0.3739506,0.77245283,0.30137426,0.5632506,-0.22898757,-0.047956653,0.3063481,-0.19299802,0.2846247,0.048995722,-0.0018952321,-0.11999667,-0.4274829,-0.16550678,0.5076617,0.08832002,0.109888576,0.10309323,-0.10640568,0.31634814,-0.14718215,-0.19663727,-0.06045807,-0.5607773,-0.04529698,-0.34805736,-0.53223705,0.5977751,-0.030391209,0.25137037,0.17557883,0.035250593,-0.06771594,0.27906376,-0.014999688,0.78157187,0.092440456,-0.28556192,-0.056301106,-0.0706289,0.20738672,-0.27925476,-0.12353979,-0.18314098,0.2420198,-0.6867301,0.38930798,-0.45627084,-0.4414689,0.20494826,-0.22922425,-0.00894168,0.47076082,-0.14114043,-0.16173705,0.23834842,-0.12976688,-0.18440579,-0.39483997,-0.40537623,0.17222454,-0.17542934,-0.042704783,-0.12318621,-0.07580116,-0.12365899,0.38556674,0.17218211,0.017583646,0.42508113,0.1884771,-0.43836358,0.050945487,0.43224412,0.60804194,-0.036212824,-0.083694965,-0.55041504,-0.36634555,-0.4413026,0.26819074,-0.06937688,0.33947727,0.08488926,-0.37819105,1.0618993,0.10726053,0.9910326,0.061405025,-0.32011998,0.08815082,0.6761754,0.06300612,0.07770229,-0.32341993,0.9440323,0.553918,-0.12242288,-0.0075032692,-0.62293833,0.021619286,0.4218481,-0.3618033,-0.15965414,-0.07919012,-0.73053193,-0.102252655,0.15544473,0.16597873,0.063663445,-0.23602793,-0.004201226,0.17262188,0.25160813,0.17690468,-0.6012459,-0.1304853,0.46128935,0.20411535,-0.086057,0.17669556,-0.44855917,0.2289544,-0.5983783,0.10883327,-0.3063901,0.109912656,-0.079941444,-0.19396386,0.4581118,-0.010169897,0.2851074,-0.37847218,-0.31825185,-0.08604437,0.2900256,0.2395827,0.3374486,0.6457684,-0.31839967,-0.085732155,0.1572047,0.58116335,1.2233826,-0.34378463,0.19005656,0.2916345,-0.37135664,-0.775524,0.26546726,-0.39070997,0.09868758,0.033952985,-0.53639483,-0.44756836,0.2226884,-0.005451534,-0.05636154,0.05626699,-0.44868276,-0.14510721,0.23378861,-0.34745663,-0.12382526,-0.1915454,0.026057068,0.81967545,-0.28699547,-0.2967317,-0.07960458,0.28872132,-0.111159146,-0.5254252,0.13314213,-0.45970762,0.2220383,0.24403065,-0.3444858,0.0030437186,-0.046296027,-0.75437516,0.025721382,0.36121702,-0.29326633,0.03972645,-0.443063,0.055465948,0.8753252,-0.083000794,0.22710901,-0.44979206,-0.49696285,-0.81589746,-0.0934196,-0.06282313,0.0032953247,-0.017924191,-0.5552939,-0.09080522,-0.35938096,-0.123325415,-0.0449121,-0.64806247,0.39566302,0.15443835,0.39127672,-0.27824238,-0.9802826,0.045726717,-0.005224675,-0.24352297,-0.38576564,0.6193359,0.044900343,0.92835563,0.17066541,0.055161633,0.13634112,-0.6519726,0.1465154,-0.27087086,-0.2760916,-0.82671416,-0.02734004 -525,0.32526845,-0.10144975,-0.6639423,-0.047369216,-0.25075015,0.1953845,-0.19068736,0.33284485,0.16297859,-0.367813,0.030794542,-0.13061056,-0.014745977,0.38845187,-0.013777081,-0.5308367,0.028261295,0.21221833,-0.6510348,0.40963054,-0.51123303,0.343443,-0.11783797,0.17266583,0.15416974,0.29586965,0.17970422,0.02011276,-0.13056499,-0.0018653534,0.08467642,0.20458874,-0.39443463,0.23585421,0.003190089,-0.301055,-0.07686164,-0.34491426,-0.35179454,-0.5336864,0.289062,-0.5591303,0.5852437,-0.20747778,-0.15933767,0.2891776,0.171672,0.23713282,-0.2552393,-0.08329907,0.058771566,-0.28095508,-0.23634312,-0.3167987,-0.2123224,-0.22963497,-0.54898256,0.06823331,-0.54237664,-0.09197006,-0.3031274,0.1087034,-0.3383334,0.121926725,-0.06859459,0.51842993,-0.3911151,0.10904503,0.11972511,-0.20853546,-0.07198855,-0.62431145,-0.033397384,-0.04586863,0.0995339,-0.20698312,-0.27953976,0.3381037,0.17259628,0.44039628,-0.043986592,-0.11048412,-0.4192029,-0.17117628,0.07337201,0.5852814,-0.16659299,-0.11517004,-0.15886556,0.014113128,0.09367801,0.06622795,0.044898957,-0.22041011,-0.15119544,0.059695676,-0.121510066,0.32360736,0.49265128,-0.44315463,-0.18775493,0.49363256,0.5948058,-0.03999634,-0.10764932,0.10366977,-0.10765182,-0.48740095,-0.19263917,-0.020560972,-0.058915474,0.3886137,-0.17798045,0.20677158,0.5234543,-0.27495396,-0.12882599,0.24148151,0.16366082,0.061233673,-0.245301,-0.12935318,0.19458619,-0.45942914,-0.07180007,-0.0899343,0.6189029,0.15157513,-0.60385406,0.35059324,-0.45464808,0.13182035,0.01982373,0.5914477,0.7818122,0.46823406,0.17907497,0.72575885,-0.31565684,0.14341629,-0.12867843,-0.31313205,0.038081557,-0.08184837,-0.117880814,-0.51247567,0.16295813,0.10943897,-0.013257029,0.29279897,0.5382198,-0.43896243,-0.100706175,0.09932619,0.6776245,-0.3433539,-0.21907452,0.7117421,1.0298043,0.9382893,0.025255416,1.1699511,0.14938113,-0.21600297,0.092810735,-0.27341676,-0.7101183,0.22291473,0.26328698,-0.123923644,0.33361536,0.15481503,-0.029305026,0.3863079,-0.40581757,-0.025364451,0.0053738104,0.2407232,0.01796294,-0.042859968,-0.36055022,-0.26238933,0.08555652,0.032278605,0.20595077,0.33415642,-0.42202932,0.41635787,0.09419788,1.5516872,-0.041093785,0.16260675,0.13760756,0.29352295,0.14790845,-0.24890675,-0.21875905,0.26459473,0.31962022,0.08805053,-0.49257246,0.034157522,-0.17407314,-0.4928072,-0.1176061,-0.31692886,-0.078808,-0.18501276,-0.4192653,-0.21862376,-0.052241717,-0.5642253,0.42004097,-2.723856,-0.18756893,-0.0744454,0.3374355,-0.11614647,-0.3947353,-0.28863296,-0.46889764,0.17617218,0.3722633,0.41971177,-0.475922,0.34987172,0.26871604,-0.42100975,-0.15438277,-0.50682664,-0.0030116625,-0.09931369,0.2274795,0.0414119,-0.110512644,-0.010888159,0.1833509,0.49681938,-0.31156683,0.049332842,0.31903327,0.24931511,-0.012067404,0.3431378,-0.028422505,0.659976,-0.47294784,-0.28829777,0.429056,-0.5321865,0.062672846,-0.06705813,0.19837159,0.36228955,-0.49966407,-0.84978783,-0.4700501,0.05164349,1.3255169,-0.25688595,-0.23780414,0.26629508,-0.3761394,-0.44135696,-0.10653433,0.36021,-0.14304177,-0.112642355,-0.7500033,0.07021873,-0.18043756,0.24937037,-0.12167309,0.0010601319,-0.37776482,0.49690711,-0.057896398,0.71192336,0.31048605,0.17083436,-0.3684773,-0.23263685,0.21513267,0.96593237,0.39072645,0.14393345,-0.18296659,-0.17364258,-0.25483862,-0.14200568,0.21902862,0.5013536,0.6207731,0.025576435,0.117153,0.29901415,-0.019573372,-0.042400375,-0.2127408,-0.21733828,0.03149733,0.07345317,0.6003015,0.43151295,-0.05741708,0.37925044,0.0490328,0.30129567,-0.26997158,-0.5349347,0.32908878,0.8917818,-0.17892274,-0.45418978,0.43691495,0.5253706,-0.2807163,0.478807,-0.5261634,-0.38434616,0.24239507,-0.3151205,-0.17360248,0.17701684,-0.32384968,0.16083728,-0.70111144,0.18348911,-0.018982448,-0.6873566,-0.5398575,-0.20668797,-3.3466072,0.04986553,-0.13181515,-0.10657129,0.054792494,0.023178335,0.114400834,-0.42922533,-0.47084057,0.008435257,0.19417672,0.6701287,-0.07382832,-0.086353466,-0.10392146,-0.39206713,-0.2279025,0.1549448,0.077782914,0.30733567,0.0009456761,-0.41325897,-0.0033193715,-0.29206192,-0.40048173,-0.093787074,-0.48989844,-0.33964586,-0.12738073,-0.5140064,-0.32857266,0.6572802,-0.4532056,0.13269442,-0.2660115,-0.0150772,0.043154128,0.30387637,0.03481394,0.050037537,0.15680647,-0.12705731,0.18954141,-0.38416964,0.2388382,-0.025898237,0.23021276,0.5844489,-0.16987783,0.088541664,0.5387726,0.64760786,-0.03212945,0.9571339,0.40560704,-0.103998184,0.33208346,-0.26550847,-0.20800102,-0.3662871,-0.31241283,0.07586433,-0.46156758,-0.32560337,-0.06458337,-0.3649884,-0.84462905,0.45873222,-0.026106343,0.09205688,0.034269758,0.3753695,0.40667132,-0.20459563,-0.055665366,-0.07945424,-0.14497003,-0.29755592,-0.37821257,-0.67542726,-0.54790026,0.100091085,1.2989877,-0.21618266,0.06258691,-0.004994899,-0.22531143,0.018255979,0.17190626,0.2750144,0.42602807,0.3868728,-0.18652567,-0.5210935,0.28878176,-0.5143623,-0.18080415,-0.5604231,0.1059899,0.5020606,-0.5848162,0.39238268,0.3504184,0.25503865,-0.045754142,-0.48988473,-0.0065757334,0.021238148,-0.21255279,0.45967537,0.30229783,-0.8831317,0.5468966,0.24952477,-0.34310478,-0.70461285,0.44687876,-0.02704601,-0.058233026,-0.034993906,0.40145367,-0.034318954,-0.053889148,-0.27234024,0.02740432,-0.4068439,0.32459465,0.20302492,0.053552985,0.37498492,-0.3420652,-0.14586985,-0.5249008,-0.13039425,-0.45218498,-0.1829633,0.07696217,0.048145875,0.23130043,0.17255342,-0.09264386,0.3778761,-0.35452807,0.061354313,-0.18803306,-0.36845538,0.28999227,0.41110602,0.34617478,-0.2924903,0.5733039,-0.033450194,-0.008921862,-0.12865682,0.008139454,0.49856657,-0.012663737,0.37826344,0.0856424,-0.09019528,0.2618704,0.8944862,0.2513649,0.2325426,0.073913805,-0.3067779,0.02829101,0.058847472,0.13909593,0.08738397,-0.40918037,0.02895065,-0.15289424,0.2292107,0.5363481,0.21977563,0.55311465,-0.18309367,-0.34738404,0.050505616,0.12407571,-0.069697335,-1.3746457,0.3344848,0.09370223,0.7363719,0.4263652,0.111288905,0.05781661,0.43806654,-0.29348826,0.20440075,0.23980534,-0.26760483,-0.35414982,0.488194,-0.79682803,0.6063173,0.06755085,0.017839843,0.15147997,-0.052594446,0.47651994,0.87675184,-0.11418027,0.016982058,0.23817801,-0.2270203,0.2011309,-0.32348704,0.06646,-0.5705452,-0.20914519,0.7534969,0.34294578,0.43889648,-0.15921953,-0.035880253,0.05420556,-0.19902213,0.16779152,-0.03194139,0.23194247,-0.22990659,-0.54678065,-0.21833004,0.40812993,0.14063305,0.19289063,0.22717986,-0.1237878,0.2965149,-0.046910085,-0.099315636,-0.11448746,-0.4614092,-0.026479661,-0.2575424,-0.5444343,0.27073416,-0.17950714,0.3045498,0.2720514,0.04767154,-0.50288314,0.42696726,0.23772223,0.82610476,-0.0322339,-0.15978532,-0.19229741,0.26250684,0.2703729,-0.20483619,-0.122742675,-0.48433942,0.14885195,-0.64737993,0.43026453,-0.16958839,-0.29793423,0.28376037,-0.08228508,-0.023374364,0.53157574,-0.10727183,-0.09891847,0.030004412,-0.051697824,-0.30689913,-0.2246782,-0.3149112,0.23402584,0.002598565,-0.09999849,-0.1990253,-0.106419556,-0.106682345,0.24921583,0.051671114,0.27070183,0.2835851,0.09521541,-0.32211894,-0.018417902,0.12281724,0.5477993,-0.0029652454,-0.15244283,-0.41684213,-0.36712205,-0.19304697,0.29687777,-0.066617094,0.25544536,0.18303156,-0.24448287,0.6788263,-0.20744804,1.0734968,0.10663144,-0.26261404,0.11049198,0.51853937,-0.00085695833,-0.08789933,-0.25695515,0.91550875,0.5266954,-0.105708666,-0.27629015,-0.38320687,-0.029229265,0.17536686,-0.23306158,-0.40695667,-0.107346945,-0.6178523,-0.36416098,0.19721733,0.17079407,0.24396339,-0.17530909,0.15721169,0.30242214,0.050663453,-0.03066133,-0.39740855,0.08460522,0.411836,0.24617986,-0.090816446,0.12501979,-0.4878365,0.3649771,-0.604018,-0.057965726,0.024162918,0.15326916,-0.11881991,-0.31214154,0.3177734,0.24061587,0.26935893,-0.22236478,-0.22911078,-0.2547738,0.48598397,0.026490834,0.045865834,0.68494266,-0.2519661,0.003636674,0.06984052,0.34577942,0.910621,-0.2109925,-0.0126285665,0.25873595,-0.31845582,-0.5961969,0.29930663,-0.34972262,0.15052831,-0.119972125,-0.25742692,-0.5281704,0.36930424,0.18600042,0.07923671,0.11025898,-0.44453585,-0.1475099,0.15150577,-0.31732532,-0.1559179,-0.36876535,-0.06517278,0.628386,-0.21396211,-0.21206895,0.20554945,0.4499949,-0.17908686,-0.58647555,-0.018298738,-0.38684368,0.2700679,-0.027790073,-0.19344401,-0.112088524,0.02751819,-0.36205292,0.25628042,0.3324346,-0.22451177,0.09679867,-0.23368557,0.01864621,0.72066045,-0.17730722,0.20765164,-0.48406988,-0.5583443,-0.9305092,-0.2364796,0.36233783,0.12004247,-0.022206372,-0.6404655,-0.006802369,-0.17639975,-0.28986073,-0.007468488,-0.47250152,0.38593483,0.027501876,0.18901014,-0.19028898,-0.8240031,0.08119241,0.13794275,-0.24096549,-0.43204802,0.40994185,-0.044460934,0.7507831,0.22461702,0.05808507,0.41808003,-0.5380412,0.13484575,-0.17839801,-0.102822155,-0.58610874,-0.014051076 -526,0.44879216,-0.20394604,-0.4532657,0.10141205,-0.3139833,-0.088288955,-0.24372028,0.057105556,0.32635066,-0.22438303,-0.35854167,-0.22445217,0.13676713,0.20226695,-0.032677464,-0.5841843,-0.063384876,0.24201989,-0.82208884,0.58602494,-0.42500064,0.33865717,0.29019588,0.5217706,0.07757326,0.3250804,0.19984862,-0.05271969,-0.27311474,-0.084649175,-0.0036009504,-0.010904088,-0.97428745,-0.066938356,-0.4388309,-0.30859816,-0.024967395,-0.5601456,-0.4360742,-0.8855091,0.38429424,-1.1168237,0.63912797,-0.024959253,-0.036999263,-0.05387117,0.04613351,0.32832578,-0.29540783,0.011735995,0.21724036,-0.47954082,-0.06660354,-0.49685222,0.069368616,-0.28787497,-0.44779623,0.020499326,-0.5651464,-0.19712509,-0.23343185,0.12552625,-0.28891593,0.09958382,-0.2445613,0.43655586,-0.41902205,0.28933614,0.29563835,-0.22755125,0.23459552,-0.5616386,-0.093763314,-0.11110987,0.42794177,0.040377297,-0.23877944,0.45514914,0.30943805,0.5158219,0.3394375,-0.42498308,-0.072023466,0.09919981,0.2107163,0.44559887,-0.14256535,-0.23896298,-0.20490707,0.017298369,0.3766109,0.23774052,0.17896794,0.01322319,0.1296522,-0.12797326,-0.08046666,0.44783682,0.6448341,-0.26359767,-0.2929207,0.059783485,0.6045419,0.18130884,-0.101593524,-0.19244541,0.057829723,-0.5370112,-0.117082275,0.054187205,-0.22850443,0.7751208,-0.07645675,0.07269303,0.8256327,-0.3063927,0.13766286,0.21033849,0.09112762,-0.064684704,-0.27376258,-0.18471564,0.4042864,-0.7149922,-0.05197271,-0.44167122,0.6612328,0.19946653,-0.5452958,0.43066517,-0.51099974,0.21763483,0.066389844,0.67300946,0.64124906,0.5004599,0.6046399,0.7365624,-0.34844068,0.19230549,0.13174751,-0.3979171,0.14158246,-0.45016268,0.3383757,-0.37399152,-0.13052535,-0.2424399,0.013758641,0.0034373861,0.29758582,-0.65195906,-0.15281881,0.28316686,0.9482721,-0.20670062,-0.049014244,0.7491826,1.231745,0.96422553,-0.054199174,1.4628251,0.3710717,-0.3013419,0.06343777,-0.21420647,-0.79187816,0.1777787,0.21710041,-0.33910835,0.2334154,0.13452314,-0.16032726,0.3470662,-0.79122174,0.06648746,0.1266962,0.24637589,0.0070385863,0.048092283,-0.60099864,-0.18384954,-0.14972031,-0.18115605,0.21734849,0.25192896,-0.2877892,0.43046087,-0.045231983,1.2628459,-0.1377444,0.09795204,0.06980081,0.66025513,0.26214993,0.088660054,-0.041494362,0.31783935,0.3376217,0.106491014,-0.47666854,0.19293457,-0.5866351,-0.3487123,-0.24855638,-0.23447114,-0.111943685,0.04703235,-0.39221618,-0.26893428,-0.021594506,-0.2142563,0.2854865,-2.5668893,-0.38569638,-0.0769545,0.60179985,-0.42192534,-0.14872618,-0.0373224,-0.54463744,0.17125617,0.08871277,0.43857747,-0.7977279,0.51072925,0.5007687,-0.56687343,-0.26170814,-0.7590125,-0.151184,-0.0037511748,0.43312904,0.0823517,-0.24633636,-0.39792532,0.033936918,0.77612627,0.11498124,0.17179935,0.59425855,0.53950644,0.009282029,0.5501727,0.10227975,0.64618486,-0.463156,-0.09940198,0.36139604,-0.30607885,0.38145542,-0.2681011,0.10704965,0.6497288,-0.34955603,-0.75130916,-0.55378634,-0.3726971,0.9844822,-0.304896,-0.62997407,0.039140668,-0.36355668,-0.022247832,0.049292088,0.65330976,0.019946052,0.28017068,-0.7215011,-0.13694476,-0.06710158,0.26983404,0.14210567,0.07522862,-0.34283102,0.78915465,-0.017293958,0.29457837,0.2035885,0.4050528,-0.09382219,-0.40432137,0.21932837,0.99167264,0.2854896,0.115226544,-0.28456977,-0.16406387,-0.3069041,-0.23750417,-0.17768182,0.5133041,0.8095703,-0.2171004,0.033942197,0.33945215,0.0455486,0.059228834,-0.08910349,-0.40122253,-0.16634513,-0.08885704,0.55297405,1.0744674,-0.20439483,0.5298849,-0.2999248,0.39638144,-0.043068234,-0.55804116,0.59714353,0.69947475,-0.26292166,0.24007583,0.49304536,0.4059665,-0.6790931,0.5573623,-0.77010494,-0.4918253,0.6399677,-0.06846543,-0.48601085,0.15784948,-0.2736122,0.13825813,-0.6471789,0.48733467,-0.24631287,-0.26828736,-0.4539797,-0.1371875,-2.4563174,0.2505514,-0.21670192,0.06359181,-0.36905953,-0.120878175,0.23568204,-0.50586784,-0.5231076,0.1912219,0.19024959,0.6649421,-0.15697613,0.16679867,-0.28062078,-0.27737278,-0.13279969,0.19798224,0.4210338,0.24986142,-0.24353248,-0.41498503,0.057747927,-0.05135902,-0.3048483,0.20260009,-0.842391,-0.63654625,-0.12064147,-0.48437002,-0.47175688,0.6459875,-0.2474654,0.056584045,-0.44700974,0.04569502,-0.15743674,0.18158963,0.050427087,0.21369685,-0.015750239,-0.10828463,0.13046369,-0.22972742,0.5614075,0.086656146,0.41739988,0.20426634,-0.11571692,0.11812571,0.37002373,0.67700696,-0.14669698,1.08299,0.33890402,-0.19781743,0.28674358,-0.2765245,-0.40802372,-0.7806653,-0.29106295,0.08036439,-0.3834369,-0.40183386,0.19929284,-0.44687653,-0.88791907,0.6898949,-0.042443417,0.3013884,0.1552306,0.51047105,0.5383374,-0.28018805,-0.026678396,0.02500192,-0.10079599,-0.64763737,-0.27498913,-0.6997988,-0.5459785,-0.20293261,0.8276257,-0.20313846,0.10692087,0.1617062,-0.36589786,0.0876443,0.12122545,-0.13586673,0.11919646,0.704378,0.12038354,-0.6860476,0.4059359,0.03737803,-0.06415015,-0.5678727,0.3425998,0.70747215,-0.8641967,0.69642836,0.54371446,0.03134135,-0.042482145,-0.42861256,-0.31868997,-0.111343786,-0.06707604,0.42224953,0.22106431,-0.75420576,0.34128177,0.22073653,-0.57397336,-0.78854764,0.2997165,-0.14864576,-0.37810832,-0.12118939,0.37147486,-0.00041894728,0.01423248,-0.19800803,0.15045494,-0.5025399,0.34411636,0.23361829,-0.15702611,0.36973482,-0.13436507,-0.39276254,-0.74856514,0.1734543,-0.48362118,-0.2474352,0.4744445,-0.090936415,-0.1538355,0.4024177,0.41394186,0.26927117,-0.22799203,0.004029751,-0.04964669,-0.52032065,0.3575555,0.5232408,0.47462577,-0.5078215,0.6294642,0.14085981,-0.4156335,0.10549942,-0.014225116,0.38111675,-0.06093136,0.3735022,0.1313327,-0.040484585,0.22878817,0.722897,0.075484104,0.590507,0.14659368,0.09234975,0.51561964,-0.009782443,0.23442517,-0.047292683,-0.6071006,0.13386308,-0.049712364,0.09027912,0.39035955,0.33062792,0.16765174,0.10401427,-0.21188563,-0.14269498,0.15178087,-0.026822237,-1.2293142,0.17863414,0.18262061,0.8257626,0.17773302,-0.018366477,-0.17555656,0.82878834,-0.14632016,0.10277304,0.46078733,-0.03931817,-0.32747686,0.80059874,-0.57416433,0.4530481,-0.13163576,0.11359182,0.038334534,0.18995704,0.31417623,0.9623804,-0.36028522,-0.056105375,-0.22217767,-0.084846824,-0.04564872,-0.52180946,0.16051194,-0.46604127,-0.49578497,0.96666944,0.34294945,0.39537874,-0.19973351,0.06879918,-0.092497915,-0.3089477,0.46970075,-0.027321467,-0.091700755,0.26411518,-0.5957747,0.0811586,0.45879695,-0.16338246,0.13151759,-0.2249326,-0.089349434,0.084183164,-0.33725742,-0.2238329,-0.07465757,-0.9407342,0.01697774,-0.436387,-0.60607785,0.4931746,0.025988404,0.026575267,0.10975372,0.011822669,-0.22166021,0.48252985,0.0015280613,0.69374317,0.1759085,-0.45524004,-0.3542227,0.11171191,0.23401393,-0.26845026,0.37758777,-0.3951059,0.19961245,-0.40152338,0.83864254,-0.13413502,-0.47003475,-0.06245791,-0.25862136,-0.13742413,0.6702674,-0.12484889,-0.19160047,0.0051796734,-0.25180355,-0.39255017,-0.06807394,-0.19153307,0.15119682,0.47024626,-0.17537317,-0.16503319,-0.36688775,-0.16064757,0.69060475,-0.02289491,0.5051743,0.25033897,0.0060411463,-0.21525511,-0.052874804,0.3249212,0.67939913,-0.044945616,-0.20281996,-0.499659,-0.42860582,-0.37966225,0.36942455,-0.037870977,0.17178401,-0.037865028,-0.08138193,1.1205522,0.08535728,1.3419236,0.21665147,-0.24661158,-0.010306468,0.56614584,-0.21625185,-0.028509911,-0.63647586,1.1103603,0.47970244,-0.1287335,-0.071380146,-0.49549162,-0.07394206,0.3227802,-0.3378035,0.012774364,-0.10405089,-0.57009137,-0.35201794,0.16785677,0.43131477,0.033662833,-0.031104542,0.20073321,0.17901827,-0.0094759725,0.3867486,-0.83285993,-0.40242693,0.46581233,0.20449382,-0.2646912,0.2216627,-0.38030273,0.43512625,-0.6297268,0.20051931,-0.5250604,-0.016456343,-0.111816995,-0.5503645,0.3151283,0.07847366,0.47818896,-0.7322601,-0.3118387,-0.20943841,0.29916236,0.27874315,0.18845645,0.5936892,-0.22934411,-0.15792002,0.16345504,0.61594355,1.3186798,-0.4976369,0.19040087,0.1633125,-0.43263912,-0.6699613,0.44885558,-0.28419793,-0.03624285,-0.19623272,-0.52438,-0.7143556,0.20825823,0.02220914,-0.031234851,0.09433686,-0.7410698,-0.19390967,0.2564522,-0.26971155,-0.16891879,-0.18414395,0.34845448,0.5849857,-0.03392055,-0.25393537,0.042996313,0.3195871,-0.22697943,-0.42152196,-0.13219975,-0.44012964,0.25667408,0.12838395,-0.35690647,-0.14512442,0.17725402,-0.57710266,0.073954515,0.2321853,-0.4239261,0.070763454,-0.14815713,0.031562347,0.8290532,-0.18137988,-0.057830118,-0.5658115,-0.50510144,-0.93050766,-0.29287407,0.12436588,0.13400735,0.017668111,-0.39713553,-0.16576293,-0.09602829,-0.2185187,0.095889375,-0.6830136,0.32505527,0.1524984,0.67824906,-0.43413624,-0.9833152,-0.03308893,0.1985422,-0.25284183,-0.6023401,0.50534177,0.05998006,0.8695667,-0.03138909,-0.03284234,0.05695599,-0.44982332,0.020422658,-0.33558825,-0.1439692,-0.75953805,-0.014414602 -527,0.46489426,-0.080914535,-0.5603358,-0.01607945,-0.45637348,0.08908556,-0.26436177,0.044016838,0.38521352,-0.75172263,-0.3867313,-0.20551966,0.056307774,0.1923141,-0.18509795,-0.43364254,0.1748556,0.4596932,-0.6606428,0.4988626,-0.19012944,0.2641181,0.23063894,0.26206836,-0.01952676,0.08608926,0.37358892,-0.22377402,-0.3168204,-0.1538834,-0.11754706,0.20217796,-0.77856225,0.50253373,-0.47575536,-0.32173392,-0.0072146654,-0.5896167,-0.44256935,-0.73573565,0.21753854,-0.88243335,0.6038023,0.28327024,-0.23768939,0.056103896,0.24824683,0.10862449,-0.04261231,0.17465484,0.21968524,-0.48658827,-0.2683849,-0.29916972,-0.42565468,-0.5340615,-0.5896616,-0.0050404766,-0.2819147,0.182018,-0.2813431,0.20310038,-0.16047262,-0.047460306,-0.15438607,0.36836848,-0.21008527,0.13451049,0.26531217,-0.23376715,0.16443649,-0.6718289,-0.28138146,-0.017727332,0.424143,-0.012113555,-0.23064832,0.35057512,0.19576983,0.68962526,0.11399468,-0.3238023,-0.32918757,0.17151435,0.22325128,0.43001652,-0.33970594,-0.18625121,-0.24973607,-0.2716731,0.329667,0.31041396,0.09354269,-0.5253436,-0.012679678,-0.35184297,0.054911237,0.05773489,0.6586571,-0.31090614,0.0068746805,0.3483177,0.28474793,0.2169454,0.099553324,0.082379304,0.1161429,-0.52076274,-0.17792624,0.10878762,-0.1590911,0.72354037,-0.021502987,0.26434448,0.44119433,0.13356102,0.047438044,0.2885491,0.29458627,0.0523587,-0.17253953,-0.2719183,0.5270502,-0.64132607,-0.07574615,-0.3079477,0.76159424,0.0014789067,-0.6927111,0.24807817,-0.5106454,0.08854165,0.09024923,0.4909807,0.59468263,0.75402117,0.014966738,0.9606848,-0.69132215,0.0472503,0.012857415,-0.18665366,0.07484126,-0.18246438,0.22764957,-0.49222812,-0.12141687,0.025027692,0.12098161,0.035447884,0.613228,-0.30517924,-0.33783832,0.19334882,0.9060604,-0.25201973,-0.022665525,0.58435315,1.1401585,0.9788354,0.18903248,1.5388894,-0.0072895787,-0.13219666,-0.3103596,0.16310988,-0.9819463,0.25526282,0.22338028,0.042497616,0.12813662,0.39810362,0.018059308,0.2616624,-0.57643384,-0.14252296,-0.23102057,0.27633688,-0.113161355,-0.050904114,-0.27999,-0.3911244,0.03235189,-0.064794324,0.0008562605,0.29015294,-0.21404171,0.3385719,0.16080149,1.3648256,-0.320645,0.27970013,0.11882273,0.09532428,0.20559092,-0.19784229,0.004360378,0.12105187,0.15651761,0.012039016,-0.24365556,-0.11202011,-0.27928132,-0.4955304,-0.16677962,-0.08323633,-0.19176678,0.046653774,-0.37176636,-0.44686827,-0.14074804,-0.54765254,0.6512199,-2.2453876,-0.07589967,-0.1630513,0.5412848,-0.3218253,-0.18296646,-0.27713364,-0.52281183,0.51837677,0.18368463,0.32399395,-0.5439763,0.2422895,0.54591084,-0.578328,-0.16907929,-0.71551675,0.0968704,-0.055506814,0.110830724,0.0265795,-0.3514026,0.007447183,-0.11159446,0.29818112,-0.0069809607,0.14288606,0.4644545,0.4358708,0.10847229,0.25556374,-0.054175083,0.60609835,-0.6909468,-0.31206045,0.37369108,-0.48038638,0.2921957,-0.096880086,0.10572141,0.6683199,-0.5248725,-0.5227189,-0.73812073,-0.23407884,0.83112764,-0.25650468,-0.51873446,0.23231298,-0.14604937,-0.25423166,0.08191677,0.66606796,-0.041495055,0.2580029,-0.80864066,-0.17352879,0.019924039,0.28494594,-0.042050485,-0.12615202,-0.6553001,0.7910448,-0.009698613,0.5607448,0.6268596,0.3028841,-0.27517852,-0.30020997,0.12188426,1.004996,0.36885405,0.24371439,-0.28643677,-0.05198429,-0.3279193,-0.32074842,0.17714204,0.52182144,0.5699978,-0.3660129,-0.025262676,0.38761047,0.30034354,0.08513698,-0.14527698,-0.45281252,-0.26750633,-0.18114348,0.53210276,0.96619636,-0.058530796,-0.027107084,-0.23836224,0.31860077,-0.2664652,-0.42971873,0.6978461,0.9160096,-0.15142627,-0.19475032,0.7145017,0.54189533,-0.3171321,0.49634567,-0.7034827,-0.6649735,0.27364004,0.0046206363,-0.5829501,0.061549913,-0.38981676,0.22513403,-0.65547097,0.6720672,-0.32873434,-0.43710634,-0.59927315,-0.16533104,-1.7507143,0.26565364,-0.36301747,-0.027615448,-0.2086739,-0.044673342,0.0563546,-0.46766067,-0.5364134,0.3017448,0.009602994,0.6682985,-0.12741886,0.26870412,-0.20931412,-0.2663159,-0.47533345,0.19083948,0.10463367,0.19203442,0.022080516,-0.3960723,0.030484227,-0.12454957,-0.0843815,0.031953633,-0.8895278,-0.32276428,-0.2435946,-0.4890798,-0.4096608,0.6088092,-0.5524445,-0.028436167,-0.40381217,-0.022891497,-0.23442583,0.22978444,0.089727335,0.29387847,0.002704922,-0.24089484,-0.28212208,-0.20332426,0.3552821,0.17055173,0.1445942,0.70120215,-0.41180262,0.07748502,0.20294221,0.7574566,-0.27845147,0.92737675,0.2969319,-0.013705641,0.285651,-0.10696995,-0.46717462,-0.5616616,-0.16529745,0.021299222,-0.54177195,-0.32253495,0.16121288,-0.33162138,-0.7957905,0.60897803,0.22415133,0.15095507,0.12712573,-0.046708494,0.2796847,-0.46710315,-0.27374157,-0.047111493,-0.08082888,-0.39711538,-0.3982537,-0.6330051,-0.47210178,-0.0076304176,1.0754668,-0.105659746,0.16578595,0.6781318,-0.039883774,0.20365252,0.12022341,-0.15145242,-0.16818516,0.6783962,0.27476498,-0.62972504,0.5522768,0.10688049,-0.12395001,-0.58078915,0.4341909,0.5852459,-0.585213,0.7371262,0.61037654,0.13749798,-0.32548708,-0.7700227,-0.40729317,-0.3086619,-0.28522035,0.35533366,0.22403616,-0.7896617,0.27110016,0.31770965,-0.7098362,-0.8314062,0.43259302,-0.12159028,-0.20684119,0.16241784,0.42198125,-0.060501207,-0.008413166,0.2311673,0.2891141,-0.47239017,0.5595214,0.1327994,-0.031207347,0.2871298,-0.3120229,-0.49383664,-0.7499152,0.01292979,-0.4692813,-0.40572098,0.32028982,0.02832134,-0.17734228,0.25407416,0.38359413,0.3482376,-0.322956,0.1488853,-0.12460189,-0.17708498,0.3787446,0.315532,0.7049379,-0.42522183,0.5413931,-0.13885303,-0.036403816,-0.28904346,0.21832292,0.3186312,0.22849102,0.3884997,-0.23989932,-0.11172005,0.056751233,0.98504084,0.04741883,0.26667103,0.16760385,-0.050162327,0.30840763,0.23826714,0.18536274,-0.1173087,-0.79522616,-0.015196408,-0.4372847,0.090374805,0.27509904,0.020029379,0.34342656,-0.09815777,-0.19723046,-0.113595925,0.1017978,0.11990281,-1.5270268,0.30107477,-0.057876673,0.79333115,0.49804425,0.015057147,-0.1312614,0.7143955,0.0052443817,0.0890399,0.27054444,-0.27773845,-0.26565006,0.51681185,-0.5429511,0.14967549,-0.10963262,-0.062202673,0.062401142,0.055060238,0.33075714,0.7308932,-0.099045314,0.0069638393,-0.2592462,-0.33342686,0.19892804,-0.32529545,0.2865139,-0.4461052,-0.4996383,0.6929156,0.4171134,0.43475112,-0.4175663,-0.018594196,0.014516582,-0.15337233,0.21830434,0.25861263,0.042130377,0.06705863,-0.631347,0.1828109,0.6637067,0.18932365,0.034155365,0.10022005,-0.3173081,0.16455004,-0.3323743,0.022530103,-0.15426244,-0.9550707,0.087630056,-0.6273313,-0.20688975,0.23572855,0.10781617,0.05584355,0.21049552,0.052021146,-0.1520134,0.51057464,0.11125171,0.83902043,0.26768914,-0.18626618,-0.2547226,0.39258957,0.22002034,-0.17402194,0.37396002,-0.19636218,0.20385163,-0.52415353,0.37659335,-0.05005924,-0.040785324,0.42371014,-0.014425139,0.095285594,0.6017681,-0.037577588,-0.11368971,0.18443038,0.110530734,-0.3973572,0.004981642,-0.22509044,0.13860776,0.114387214,0.05895633,-0.14183067,-0.3335669,-0.28807297,0.06753692,0.1322214,0.3236408,0.36518702,0.085925065,-0.39612627,0.2773756,0.20503211,0.5889208,0.05433513,-0.17870636,-0.11503763,-0.38558844,-0.40337062,0.26209906,-0.040086415,0.117525555,0.07054291,-0.19847937,0.83474094,0.11844192,1.067824,0.17721815,-0.09756365,-0.09664213,0.57114416,-0.17067377,-0.20348053,-0.399546,1.0003939,0.75110966,-0.073875524,-0.020741686,-0.15290315,-0.004430771,-0.02332878,-0.27370223,-0.1911835,0.013797902,-0.7550661,-0.09635517,0.040866405,0.3326392,0.052912742,-0.26716563,-0.040285736,0.49654838,0.24805696,0.16019215,-0.6342507,-0.31459832,0.30224597,0.30864963,0.14581512,0.2888073,-0.32831055,0.42033625,-0.67349845,0.05373319,-0.31841996,0.027989013,-0.2286833,-0.32681745,0.15576322,0.08592079,0.4440948,-0.3906866,-0.13090356,-0.1522705,0.36935106,0.23304224,0.41916445,0.76356906,-0.04897285,-0.09084255,0.045003552,0.51515335,0.93093514,-0.4949402,0.096994184,0.497403,-0.46582285,-0.6509005,0.31229964,-0.48072314,-0.021643033,-0.22061078,-0.41284332,-0.39269698,-0.011224274,0.09085085,-0.104284674,-0.06427384,-0.8420165,0.08343502,0.3023015,-0.1777158,-0.370899,-0.19103883,0.2665255,0.47950792,0.048566118,-0.2493905,0.11260132,0.10974938,-0.2959933,-0.6647978,0.056953203,-0.5674863,0.21002771,0.13501437,-0.46325707,-0.14604479,-0.10729282,-0.5789389,-0.018849293,0.0023309987,-0.3142484,0.0114500625,-0.29038313,0.038688857,0.8089847,-0.027377367,0.28414705,-0.49172142,-0.42116585,-0.9721172,-0.18535225,0.10533663,0.2180149,0.016108578,-0.539222,-0.29063,-0.22805469,0.13413133,-0.034631494,-0.3758278,0.40240347,0.12376917,0.43609032,-0.23472027,-0.76739854,0.20556982,0.23956211,-0.22504096,-0.27197757,0.41881976,-0.047708612,1.0563544,-0.07734628,-0.086021,0.17484672,-0.74408406,0.29356137,-0.18216045,-0.09828276,-0.6095014,0.023467546 -528,0.4730344,-0.008141155,-0.6503826,0.090540774,-0.25683215,0.27714622,-0.42355463,-0.017840624,0.11900023,-0.7044454,0.025338786,0.11186929,-0.38658392,0.057584837,-0.078355044,-0.37387183,0.2922253,0.18715747,-0.7628218,0.649184,-0.23114516,0.43420416,0.1279753,-0.02189156,-0.18817958,0.10263947,0.27682588,0.17408516,0.057429057,-0.6051258,0.064028874,-0.16465221,-0.812041,0.57379586,-0.13875198,-0.22961348,-0.24719144,-0.27496535,-0.38147402,-0.7486446,0.1394199,-0.81953174,0.6206237,-0.06414526,-0.33808035,0.08483534,0.19880962,0.18113597,0.2902604,-0.11036868,0.230541,-0.40944722,-0.40566716,-0.24298246,-0.16307935,-0.42363086,-0.51070964,0.1145172,-0.53968376,0.013104806,-0.42804855,0.33122766,-0.39483228,0.11138044,-0.3017386,0.61657727,0.009972047,0.1103739,0.046623792,-0.26885012,0.07112314,-0.53994554,-0.028488997,-0.07754414,0.34131387,-0.0049697435,-0.12078676,0.43353432,0.14046322,0.60935414,0.013741509,-0.3048751,-0.12913217,-0.25269955,0.36638114,0.5920492,-0.1244538,-0.06847698,-0.23702183,-0.19615412,0.5604057,-0.07073835,0.16831297,-0.32623738,0.0015504796,-0.14797495,-0.16689602,0.587366,0.5571843,-0.16996886,-0.008203726,0.3635119,0.66562086,-0.028861586,-0.18318488,0.090740256,-0.1544555,-0.26909986,-0.23762354,0.24270612,0.10436346,0.25533018,-0.20179318,0.33198804,0.5092177,-0.1583786,-0.22905304,0.6043978,-0.029391041,0.34483972,-0.07598075,-0.13980372,0.39146423,-0.75622857,0.0051199337,-0.5836544,0.6801492,-0.13516688,-0.8437706,0.45272824,-0.41542453,0.07919052,0.16138826,0.7081921,0.6877423,0.84061915,-0.060156584,0.9358227,-0.35234377,-0.13925043,-0.077205606,-0.18026403,-0.052955702,-0.267176,0.027190413,-0.2611223,-0.07233917,0.043996327,-0.01730244,-0.07897,0.32599655,-0.42410624,-0.3970755,-0.04407451,0.83645976,-0.19796024,-0.024664283,0.81150925,1.0882124,0.9930893,0.12645374,1.1441727,-0.036013044,-0.17229316,-0.515074,0.2289976,-0.7590144,0.35887656,0.1935257,0.53240144,0.27791116,0.06557681,-0.204792,0.15684308,-0.49679,-0.33245167,-0.06658311,0.29313654,-0.1416946,-0.15231477,-0.30461484,-0.0449995,0.29455253,0.07258298,0.3069824,0.25891787,-0.34053496,0.50338256,0.14890805,0.630767,-0.28575554,0.093159184,0.06696362,0.22081396,0.07856778,-0.35822228,0.0695247,0.14323834,0.26672763,0.23209557,-0.54083,0.022727687,-0.2448275,-0.30675027,-0.26319122,-0.20350493,-0.2984897,-0.102544345,-0.11117841,-0.42617494,-0.19095877,-0.45809704,0.30506366,-2.5677009,-0.13730791,-0.09699479,0.30242524,-0.17236209,-0.24169654,-0.09616903,-0.65055394,0.4170381,0.16079783,0.46897206,-0.53889954,0.42552269,0.4626277,-0.3703405,-0.14163646,-0.5945075,-0.0001583512,0.045401853,0.48048922,0.11708564,-0.18531504,-0.16258198,0.09875835,0.5311555,0.007645836,0.117953315,0.58155024,0.40629718,-0.07469483,0.18544902,0.025045175,0.5665134,-0.52453583,-0.1756991,0.51724184,-0.51632386,0.2554558,-0.2028723,-0.01117505,0.45135567,-0.38890135,-0.5664883,-0.49720544,-0.15734926,1.5004003,-0.17434567,-0.8740274,0.03439154,-0.05028093,-0.3372876,-0.091855355,0.38583085,-0.064834364,0.1313711,-0.5407254,-0.072065026,-0.20956443,0.5543336,-0.20210248,-0.22237231,-0.46242425,0.7251151,-0.052262213,0.72488487,0.31214988,0.31984228,-0.42844164,-0.29110003,0.04492967,1.336679,0.5934176,0.18991579,-0.28757828,-0.07454605,-0.27926522,-0.42575172,-0.022534508,0.76649857,0.5251789,-0.020018853,0.070547484,0.50849205,-0.07292619,0.24228914,0.0585972,-0.42171147,-0.37363493,0.0053193294,0.743521,0.47027808,-0.023037454,0.3293596,0.019234447,0.16202277,-0.30206817,-0.492352,0.48761448,0.7427905,-0.2161689,-0.28787258,0.50962555,0.57037014,-0.3444947,0.57012933,-0.5763436,-0.66160464,0.3524666,-0.07712043,-0.47459376,0.06898789,-0.43396562,0.2581483,-0.39068967,0.57626814,-0.57667637,-1.1166294,-0.32635257,-0.0488557,-1.6124737,0.2859507,-0.20649551,0.0091881985,-0.38849103,-0.13253309,0.23847939,-0.21791182,-0.56300503,0.03761154,0.14665464,0.8454313,-0.09422203,-0.016913066,-0.17295045,-0.36247206,-0.1547731,0.29965398,0.12849285,0.120591596,-0.28081146,-0.10309573,-0.12116151,-0.21644229,-0.12175751,-0.18407425,-0.44095558,-0.31405133,-0.2418015,-0.21596774,-0.17487954,0.6601357,-0.40968984,0.13896751,-0.29262316,0.047385298,0.09791653,0.23202246,-0.042695846,0.18482637,0.05033276,-0.37269592,0.042198803,-0.2849396,0.36608493,0.014939523,0.44438207,0.5199061,-0.40788218,0.075798236,0.3503736,0.6481273,0.13133751,1.0765784,-0.045221284,-0.21261787,0.4403985,-0.03180411,-0.4919441,-0.65345997,0.1725565,0.4807623,-0.382298,-0.199565,0.2186401,-0.23443991,-0.98105824,0.57278156,0.20290415,0.2654925,-0.23851922,0.5395467,0.19701368,-0.17570908,-0.14427249,-0.21066219,-0.28177398,-0.36971074,-0.4079752,-0.7282866,-0.47995663,-0.1320295,1.0071696,-0.09846006,0.07432901,0.33526084,0.020653386,0.27367818,0.15044788,0.16529836,-0.04642048,0.43909535,0.14672497,-0.6396402,0.477459,-0.37233564,0.1024898,-0.41293982,0.5156497,0.61202216,-0.48594317,0.124475956,0.5367857,0.07852332,-0.39820942,-0.6567226,0.13671671,0.0053517567,-0.17740026,0.28978515,0.3082522,-0.8603824,0.5025222,0.19652966,-0.23688293,-0.64918995,0.25699085,0.0024276834,-0.05482064,-0.061961643,0.48498484,-0.12431354,-0.040123872,-0.04459726,0.17143592,-0.34558156,0.32561514,-0.008684392,-0.14968985,0.22532281,-0.2614045,-0.42154947,-0.5421054,0.084622785,-0.8278455,-0.13657102,0.23750472,-0.16241309,-0.0848689,0.47790962,-0.016376985,0.47491565,-0.19966926,0.13069269,-0.28008264,-0.3553526,0.62381274,0.46061713,0.46682066,-0.5598687,0.77520853,0.22992085,-0.20222405,-0.086852394,0.20680879,0.4865858,0.095649056,0.4687607,0.0109869605,0.13345575,-0.034147076,0.81949055,0.34679046,0.32634524,0.0596196,-0.056861877,0.25410667,0.019297095,0.3693071,-0.13737677,-0.6570536,-0.10135892,-0.16216166,-0.0017920182,0.37773877,0.034827266,0.4344789,-0.02686031,-0.14738944,-0.083463736,-0.06704101,-0.17790006,-1.5044205,0.44064033,0.1685634,0.745546,0.21681306,0.18413195,0.021661805,0.7098423,-0.106366195,0.009757672,0.12986046,0.024155827,-0.3370773,0.49259627,-0.78474844,0.2778656,0.06764741,-0.014136798,0.091061756,-0.10221676,0.40795678,0.8376417,-0.13598657,0.18973556,-0.23994437,-0.3136131,0.16561607,-0.36696097,0.54023886,-0.30628648,-0.46353543,0.72983146,0.101493485,0.44136652,-0.30812755,0.07514251,0.10727252,-0.19565865,0.3029742,-0.028195769,0.17036544,-0.3161085,-0.2356836,0.13203624,0.507723,-0.055318337,0.0330635,0.21275337,0.014761352,0.11318027,0.16386183,0.07888622,-0.06361253,-0.7165861,0.3110456,-0.33622858,-0.46224898,0.100496516,-0.19298735,0.0077682505,0.29258066,0.14331304,-0.2158526,0.31350186,0.33702978,0.30239275,0.032714624,-0.14450344,-0.25832742,0.15770909,0.005551118,-0.3998977,0.21026811,-0.008869629,0.19295874,-0.5878058,0.39068285,-0.39764926,-0.3321423,0.44692013,-0.09572249,-0.1260409,0.41032633,-0.045953266,-0.012494729,0.4021007,-0.16709001,-0.18071714,-0.29748806,-0.0103297,0.11691345,0.06037519,-0.13532957,-0.07395414,-0.14220718,-0.2534664,-0.074344985,0.15955822,0.2560457,0.3993061,0.042802773,-0.6597346,0.27819434,-0.0008679812,0.52850425,0.030879421,0.17301312,-0.217994,-0.41679847,-0.46013469,0.6565039,0.062176052,0.107604794,0.15421282,-0.4075219,0.64530945,-0.10696941,0.82659924,-0.011903156,-0.31183964,0.029182963,0.60515165,0.042873416,-0.18322532,-0.36789984,0.93748826,0.44711035,-0.10572868,0.08250291,-0.5624128,0.027713913,0.07373057,-0.24862124,-0.21648718,0.029875685,-0.6633905,-0.1714018,0.14403212,0.413612,0.05619768,-0.21043733,-0.07304126,0.5278629,0.049578905,0.028608102,-0.5297742,-0.11239138,0.383561,-0.05219553,-0.23071441,0.072231404,-0.4937349,0.16376597,-0.8764063,0.06848888,0.04585349,-0.084016636,0.051133927,-0.3255319,0.3562236,0.17132014,0.28849828,-0.331653,-0.21379264,-0.005936359,0.2285436,0.27848396,0.31050593,0.6884851,-0.19338351,0.011398282,0.090552844,0.3491828,0.9278638,-0.058167763,0.031175168,-0.044387594,-0.49546754,-0.73002493,0.066227205,-0.35573688,0.20733769,-0.052727994,-0.4109542,-0.3555463,0.2655936,0.11411505,0.0076545156,0.1250643,-0.90825903,-0.2789195,-0.10977467,-0.44580394,-0.24381612,-0.2715465,-0.021774825,0.53488946,-0.018277435,-0.26245564,-0.04237949,0.38894904,-0.2586659,-0.7654197,-0.10548549,-0.32216138,0.07607742,0.017848881,-0.23946443,-0.16991176,0.13253722,-0.499935,0.17715599,0.11238973,-0.28348047,-0.13545574,-0.34099784,0.08507626,0.3726586,-0.11441869,-0.07954547,-0.24947897,-0.6762534,-0.63879627,-0.37794712,-0.18154882,0.32303736,-0.0053647067,-0.63256115,-0.33803913,-0.4949772,0.049428187,0.0066157123,-0.43138936,0.31426528,0.20714341,0.27070072,-0.26946607,-1.0151604,0.25742775,0.033899095,0.022354722,-0.3731434,0.2620656,-0.019803403,0.5825393,0.18183932,-0.015253599,0.21085602,-0.85361284,0.31750947,-0.23536086,-0.042004295,-0.67459166,0.17810021 -529,0.39425248,-0.27943,-0.38352886,-0.09607843,-0.44737053,-0.19187959,-0.27445135,0.26668027,0.25711608,-0.17982292,-0.17666334,-0.18041697,0.04206842,0.3558868,-0.107024334,-0.6331807,-0.17019469,0.27525896,-0.69889504,0.46406925,-0.61390215,0.25239742,0.1168876,0.4776715,0.18482862,0.28370997,0.13229635,-0.05084498,0.124335684,-0.086127594,-0.16056857,0.27174857,-0.59606564,-0.07169138,-0.07407079,-0.36844397,0.0063325227,-0.5155333,-0.27099383,-0.8616423,0.3166615,-0.97003555,0.51267207,0.0073908814,-0.1360838,0.02898761,0.25344315,0.48356286,-0.32856452,-0.034765862,0.27119815,-0.2302112,-0.09990709,-0.19508545,0.044650827,-0.3159238,-0.5857594,-0.035406444,-0.49548826,-0.28236568,-0.287948,0.18573989,-0.35233793,-0.01185532,-0.23180467,0.39277184,-0.34774825,-0.0065742093,0.29843855,-0.15853548,0.3740297,-0.53095526,0.045960825,-0.05174681,0.38953227,-0.12450516,-0.29762274,0.38717115,0.25888613,0.35502508,0.2577149,-0.32396993,-0.24255733,-0.12111986,-0.052272234,0.45078033,-0.20006628,-0.33362392,-0.17311688,0.28174958,0.4400085,0.4614755,-0.115555204,-0.28185034,-0.076972276,-0.0069587547,-0.13641547,0.596915,0.5872042,-0.124745734,-0.2993246,0.2417874,0.5183824,0.24573107,-0.1878232,0.025510598,0.01934358,-0.64249015,-0.08463354,0.08935259,-0.039246965,0.44609097,-0.16222474,0.12925224,0.72964346,-0.15715204,-0.068879366,0.02739763,-0.07539643,-0.041196954,-0.31629503,-0.28939238,0.27889648,-0.5529308,0.22854522,-0.18911871,0.69313556,0.11464217,-0.8274912,0.44628233,-0.6512623,0.26352343,-0.08769759,0.6480729,0.70578307,0.47227922,0.554936,0.8153793,-0.22917941,0.38711005,-0.12007497,-0.54654026,0.15033947,-0.19253989,-0.10945201,-0.55421895,-0.0037634731,-0.3499098,-0.11210441,0.15601276,0.2739062,-0.6402837,-0.03611044,0.22486895,0.80695724,-0.33258888,-0.08499904,0.6417342,0.99844956,1.0936404,0.025664996,1.024837,0.2363756,-0.19054644,0.3344604,-0.3851976,-0.7403592,0.19478863,0.19719206,-0.1629586,0.32965755,-0.13605139,-0.11980493,0.40966207,-0.2516808,-0.14144418,-0.054500673,0.16362165,0.16831616,-0.026499128,-0.56190807,-0.14985567,-0.027123865,-0.113935016,0.11353779,0.16330314,-0.2637261,0.2896947,-0.080792114,1.5230082,-0.021756949,0.00041204592,0.12026083,0.6394543,0.23425764,-0.23695119,-0.09104692,0.46396178,0.46889514,0.05551688,-0.6614171,0.33024204,-0.20627907,-0.43069133,-0.034106452,-0.34782833,0.005320144,0.10125827,-0.4573421,-0.20110345,-0.25073162,-0.24602102,0.48590326,-2.7997935,-0.16068786,0.061953876,0.35531884,-0.3303852,-0.23091078,0.020018332,-0.5354753,0.27211544,0.19686121,0.5673133,-0.7382107,0.52548873,0.46717384,-0.6252556,-0.10292755,-0.84496224,-0.13979739,-0.01882077,0.47952306,-0.010684212,-0.08510297,-0.05681509,0.1518769,0.6476096,0.039772447,0.09278619,0.3580974,0.48887846,0.3075186,0.6178802,-0.12999049,0.5683026,-0.20964536,-0.18046458,0.31240207,-0.28629822,0.17225844,-0.024168214,0.014205563,0.49200794,-0.4929064,-1.0476972,-0.5195132,-0.085963845,1.0043538,-0.40719688,-0.46464807,0.2092286,-0.1838623,-0.054906268,0.024131322,0.5414,-0.11795199,-0.08916895,-0.67866236,0.046419326,-0.045572057,0.17876813,0.15644178,-0.03807719,-0.29982477,0.59548825,-0.070882685,0.37286848,0.31674317,0.28670698,-0.28102097,-0.51387495,0.06942495,0.6330758,0.1687788,-0.021429634,-0.14313854,-0.3602406,-0.09612155,-0.14904073,0.07289528,0.6180406,0.78663915,-0.033544905,0.13690136,0.36192238,-0.089968406,0.07585524,-0.14352337,-0.21886571,-0.09220155,0.013603886,0.5206219,0.71632135,-0.14861843,0.58472514,-0.110718,0.21305908,0.06955732,-0.5212205,0.6100155,0.89795506,-0.18433352,-0.0700809,0.40688947,0.42712873,-0.3237,0.4036145,-0.5845422,-0.05268787,0.63303494,-0.19650245,-0.45307997,0.22729507,-0.16498251,0.15660448,-0.91847324,0.31274906,-0.3240844,-0.43099013,-0.5449096,-0.037921224,-3.3201709,0.25478002,-0.28309804,-0.18824038,-0.30989558,-0.095819905,0.26313114,-0.6283938,-0.53329164,0.1047244,0.24193197,0.6431878,-0.075832285,0.09405122,-0.33973604,-0.13607319,-0.25743675,0.15934464,0.21657303,0.40078792,-0.09754014,-0.46231553,-0.006373045,-0.036307946,-0.66470563,0.1839198,-0.56218135,-0.40253586,-0.03585791,-0.59191185,-0.26860157,0.54673505,-0.1900775,-0.0049006464,-0.30025098,0.15079568,-0.11054646,0.29729167,0.17625245,0.15728538,0.14146711,-0.014219081,0.12340326,-0.26880226,0.3987742,-0.02625528,0.31011182,-0.0050750654,0.055025026,0.1226837,0.4663458,0.7596209,-0.12791568,1.0220008,0.46544078,-0.082923315,0.23265703,-0.43038622,-0.21761635,-0.5011789,-0.36211297,-0.13619779,-0.37604234,-0.45570073,-0.009007406,-0.35562038,-0.75497615,0.65616804,-0.15178797,0.34887904,-0.06589797,0.33134988,0.5892731,-0.15064378,0.0809,-0.1449062,-0.23948641,-0.58015263,-0.15809545,-0.47517186,-0.49893874,-0.07782105,0.86399096,-0.3931545,0.12722407,-0.123050645,-0.26470006,-0.020696245,0.086950764,-0.055823293,0.5092772,0.37643963,-0.10611746,-0.681502,0.3860528,-0.035555795,-0.15204898,-0.60601336,0.27867705,0.6112429,-0.6346226,0.6186135,0.25136754,0.07847901,-0.11090063,-0.65543044,-0.2387092,0.2103696,-0.20485207,0.5085061,0.19133997,-0.783501,0.59209126,0.43820542,-0.4020433,-0.64448965,0.31074855,-0.0066532535,-0.42702103,-0.10887669,0.25472027,0.125956,-0.016388515,-0.2283197,0.29009697,-0.46167767,0.19354844,0.13803138,-0.113350056,0.28554687,-0.07589895,-0.20223165,-0.6966664,0.10321706,-0.5015205,-0.23210093,0.36426327,0.086859226,0.0070874733,0.13898157,0.053819664,0.4888981,-0.18689609,0.08185795,-0.13928773,-0.274174,0.06230533,0.60320276,0.2799866,-0.5594224,0.4609294,0.14374089,-0.4169774,0.11906708,-0.033139847,0.38902676,-0.07536792,0.32140845,-0.18732995,-0.22743489,0.27069905,0.613176,0.105798535,0.523062,-0.09609128,0.08766178,0.40912306,0.015807267,0.14521977,0.029210063,-0.5261582,0.030238628,-0.06077874,0.21401009,0.58906347,0.27276745,0.31832436,0.10100543,-0.26380432,0.02350189,0.16089109,-0.11215386,-1.278216,0.45013097,0.37577337,0.837688,0.4374314,0.14519085,-0.12014118,0.7240542,-0.38437536,0.06657267,0.4586747,0.14960645,-0.5346369,0.71578497,-0.74875504,0.41631052,-0.17464621,0.0076550017,0.2180817,0.20861807,0.38707766,0.8045995,-0.23724985,0.048845522,0.048035275,-0.13413051,0.0802928,-0.32131797,0.0036497752,-0.46915832,-0.3062687,0.63624364,0.3847966,0.32944977,-0.16030383,-0.053786017,0.20048866,-0.14303586,0.21011229,-0.010519874,-0.0668918,0.14910553,-0.5226456,-0.16175808,0.5596455,-0.024107965,0.15383552,-0.28142297,-0.17615916,0.09483667,-0.27062437,-0.1106424,-0.07260578,-0.736985,0.08135627,-0.17190836,-0.42282364,0.4896909,-0.25144556,0.18530267,0.2467943,0.08956682,-0.24836417,0.21674234,0.08519812,0.8154827,-0.020613719,-0.15946075,-0.458496,0.0059734504,0.27034596,-0.2097784,-0.07088627,-0.27620974,-0.012735617,-0.40163666,0.54242,-0.05131664,-0.4696728,0.10912969,-0.1148663,-0.0016056955,0.65697724,-0.19682044,-0.12836792,0.10556396,-0.26373658,-0.47444934,-0.14656787,-0.1379829,0.24417894,0.37605187,-0.15811189,-0.12406637,-0.18559602,-0.1566062,0.6982773,0.020637074,0.55401766,0.17627941,0.09175287,-0.17806835,-0.052524447,0.19064805,0.5284837,0.120976426,-0.036863282,-0.46541438,-0.24945217,-0.29878145,0.06189642,-0.03778087,0.3146885,0.015218946,-0.28710252,0.9606058,0.10255634,1.2306828,-0.09393989,-0.37121338,0.12721759,0.5158751,-0.0633123,-0.002784427,-0.4549825,0.83001,0.6103017,-0.04727642,-0.093755476,-0.3659332,-0.14847043,0.3455719,-0.34916884,-0.03215027,-0.005395317,-0.4383582,-0.30632845,0.30701303,0.19887818,0.087316945,-0.093950406,-0.08969578,0.0030283094,0.019830205,0.3136141,-0.46717706,-0.092353545,0.0762571,0.33411366,-0.035201486,0.1582346,-0.5631902,0.36035052,-0.46379706,0.21045771,-0.5016899,0.18127844,-0.10568517,-0.32818794,0.14526659,-0.099661335,0.22755848,-0.24066485,-0.33776492,-0.075023256,0.41139805,0.11198393,0.22215533,0.69748706,-0.32533875,0.16517782,0.13069758,0.5072856,1.1970555,-0.4308309,-0.120995365,0.23161678,-0.40188587,-0.6495561,0.4318821,-0.3676644,-0.22162676,-0.1214726,-0.23814635,-0.56149393,0.18861505,0.15965652,0.17446679,-0.004602305,-0.57100016,-0.15336673,0.39140835,-0.31114933,-0.22052911,-0.25100726,0.4212127,0.7487372,-0.22291903,-0.3788242,-0.013641062,0.21032873,-0.08342394,-0.42863828,-0.00803113,-0.24539852,0.38575575,0.035332028,-0.32598412,-0.11239885,0.1891232,-0.48903838,0.03143607,0.060275912,-0.30630052,0.20413749,-0.18297866,-0.031582892,0.90987813,-0.38859683,-0.12704968,-0.6833017,-0.4690488,-0.92000836,-0.38521203,0.24550171,0.120307714,0.10143101,-0.5594992,0.11842752,-0.10493803,-0.48873252,0.033478413,-0.50358623,0.40043926,0.12582757,0.4122029,-0.3315261,-0.7757549,0.08248493,0.10288853,-0.23520802,-0.6713839,0.7177364,-0.007792393,0.8148325,0.0466549,0.10843302,0.06694411,-0.298591,0.14666967,-0.25982454,-0.2572915,-0.8552096,-0.12186468 -530,0.5707178,-0.22915268,-0.32688242,-0.16969909,-0.10958416,0.14510226,-0.085622676,0.6179935,0.30128056,-0.4015501,-0.030157885,-0.11614748,-0.025386512,0.23091312,-0.14179191,-0.34386343,-0.18930407,-0.0033661823,-0.32094488,0.41928136,-0.48330557,0.37185755,0.04447672,0.3319605,0.10848842,0.35190347,0.114974484,-0.08978895,-0.31066892,-0.06865385,-0.029613016,0.36245593,-0.4402831,0.11104924,-0.076711155,-0.2736133,-0.09284257,-0.4556368,-0.25022015,-0.6385911,0.34541863,-0.76406294,0.36364162,0.04793903,-0.26354995,0.51054335,-0.21962428,0.2304453,-0.3258892,-0.012602258,0.13238995,0.020368882,0.1076292,-0.30949312,-0.12310596,-0.10736658,-0.54240835,0.06825514,-0.34231907,-0.20631857,-0.22807267,0.031145705,-0.28273928,-0.12076382,-0.061801057,0.424043,-0.55109847,-0.015984686,0.0929405,-0.12279649,0.35534278,-0.4728735,-0.17223594,-0.13416764,0.17312641,-0.32651553,-0.1910461,0.26749372,0.2891282,0.4890186,-0.18076637,-0.075268276,-0.42362192,0.03603119,0.10864694,0.44806066,-0.14184949,-0.5496952,0.008433302,-0.119901165,0.2117529,0.105342075,0.22078072,-0.19726877,-0.12136277,0.10461128,-0.23307796,0.32930967,0.44025618,-0.37106958,-0.3502039,0.39069477,0.6016716,0.10853281,-0.05819233,-0.12614778,-0.0019349098,-0.4786247,-0.15421107,0.13470554,-0.22356321,0.4366851,-0.048849624,0.14086252,0.68320984,-0.29604965,0.1563502,0.027212283,-0.050698176,-0.050993647,-0.22578636,-0.36251214,0.14544824,-0.33589974,0.065204695,-0.1832161,0.7138172,0.14724733,-0.8198378,0.46879488,-0.4440986,0.1249767,-0.073789276,0.5416035,0.6212524,0.48710364,0.2951107,0.52571255,-0.52907366,0.06452446,-0.10788288,-0.33512545,0.16181925,-0.1947449,-0.008943256,-0.48847097,-0.021962786,0.19723123,-0.27144778,0.21262808,0.26985252,-0.55114746,-0.034477178,0.05838022,0.7066914,-0.31954917,-0.04004299,0.66080266,0.9858348,0.80964255,0.02136246,0.9933701,0.29769897,-0.30462012,0.35576832,-0.5580161,-0.698203,0.24706252,0.3904193,-0.26935062,0.43841752,0.076874286,0.010457941,0.24860236,-0.22937585,0.08254752,-0.14400263,0.086887866,0.046514224,-0.133624,-0.33516148,-0.31429157,-0.09308198,0.025322856,0.102646686,0.2948164,-0.2654885,0.29528993,0.07593642,1.8958958,-0.06904671,0.10139693,0.026158722,0.5268253,0.13384432,-0.18134978,-0.0865307,0.40415943,0.3231854,-0.010674343,-0.6228542,0.21934459,-0.07288299,-0.556397,-0.043346517,-0.38523585,0.019675542,-0.027056165,-0.41233927,-0.032556485,-0.08574215,-0.34345138,0.43928662,-2.8515074,-0.12323789,-0.0416488,0.31227702,-0.36972153,-0.38756612,-0.12817578,-0.41586643,0.22304726,0.37859645,0.4526693,-0.76413804,0.1770911,0.41950214,-0.43952566,-0.10412369,-0.51305807,-0.18949969,-0.030587418,0.20911212,0.047697432,-0.0694903,0.08604036,0.07768781,0.47292697,-0.018267225,0.040081467,0.15063897,0.39656964,0.057039283,0.42102614,-0.0456809,0.35478225,-0.18005866,-0.12886314,0.3785879,-0.46068648,0.1912765,-0.011549822,0.110718586,0.2949603,-0.37153092,-0.8887024,-0.68053406,-0.23378658,1.2096263,-0.22687913,-0.43649295,0.2281425,-0.2401919,-0.32768828,-0.15670091,0.46191165,-0.038370993,-0.17155242,-0.86915547,0.086669795,-0.12872487,0.2091406,0.09268635,0.087758206,-0.32843882,0.59178865,-0.0064039226,0.55023277,0.30981934,0.12551233,-0.2541566,-0.32094273,0.062150232,0.8494743,0.2411541,0.18245491,-0.2353941,-0.16443253,-0.23996633,-0.013250749,0.1107543,0.36907223,0.59659934,0.053862497,0.107991055,0.23920579,-0.09740862,0.013748421,-0.21041423,-0.25294894,-0.053573046,0.035827875,0.59602445,0.5933854,-0.3012532,0.38963354,-0.032155316,0.13472182,-0.17153317,-0.44816077,0.5391309,0.8053616,-0.08506659,-0.1963992,0.55528206,0.44084072,-0.39432374,0.42507216,-0.65163887,-0.15227176,0.5065031,-0.26818287,-0.3483668,0.17429687,-0.3020786,0.20581713,-0.85906225,0.20632957,-0.22026332,-0.19233035,-0.47896814,-0.04962462,-2.965305,0.05129439,-0.07322886,-0.32431927,-0.014939936,-0.0457824,0.15137815,-0.68463117,-0.46489826,0.13480756,0.07220246,0.55156296,0.012217129,0.092368215,-0.29555458,-0.2915633,-0.27511975,0.104854375,0.016350504,0.39299732,0.07951956,-0.42081764,-0.14246188,-0.108864926,-0.31891492,0.06751914,-0.41592675,-0.5899133,-0.09564883,-0.50621736,-0.255864,0.59413797,-0.28655714,0.009639531,-0.072628975,-0.022543278,-0.19964594,0.30569503,0.13805081,0.10827314,0.0320297,-0.045498528,0.08143756,-0.33154428,0.4031804,0.06924748,0.23276795,0.37519833,-0.20527712,0.17261535,0.52013934,0.71375257,0.021798754,0.7164875,0.48248863,-0.10608717,0.24552749,-0.4388315,-0.15046555,-0.54838455,-0.31679666,-0.121491216,-0.33414438,-0.4837471,-0.124422185,-0.3776301,-0.726588,0.4088782,-0.13094571,0.20405401,-0.024301311,0.30326098,0.5595557,-0.11283469,0.010339325,-0.03657768,-0.13136502,-0.5749846,-0.27084216,-0.6403155,-0.45148343,0.34983927,0.89844704,-0.10943446,-0.03422386,0.048128698,-0.11439856,-0.0011019906,-0.05137334,0.023596514,0.14585263,0.34451395,-0.096857786,-0.50850165,0.44908032,0.12059531,-0.25907248,-0.5734663,0.1285597,0.55150425,-0.5317703,0.5158151,0.20015389,0.03150216,0.089614086,-0.44086948,-0.2714061,-0.0040705204,-0.13388847,0.3916257,0.2095671,-0.677525,0.3703944,0.44112974,-0.23860508,-0.5648707,0.48113325,-0.02293874,-0.2774019,-0.1619166,0.32382807,0.12834075,-0.0023869157,-0.023925578,0.2041594,-0.54179597,0.17244036,0.2787438,-0.03196903,0.3491226,-0.09051822,-0.05593811,-0.71163666,0.0996035,-0.40220478,-0.2484058,0.26816496,0.12416907,0.27319184,0.15000436,0.15516454,0.41006953,-0.28535542,0.010998539,0.09272087,-0.1385835,0.34066164,0.3875204,0.420029,-0.3761884,0.44330847,-0.034874253,-0.0111031495,-0.01842045,-0.016221635,0.48170382,0.14484215,0.19667652,0.105635785,-0.42231804,0.33641207,0.6547386,0.28344172,0.33345142,-0.001035738,-0.18430886,0.27906454,0.13341744,0.1496511,-0.0051676035,-0.43642232,-0.022709308,0.07051318,0.09876918,0.32199726,0.067667454,0.2649804,-0.17863421,-0.29242542,0.12327651,0.31808227,-0.10045255,-0.93599254,0.23425776,0.1562151,0.7555878,0.49484053,-0.03266505,0.035049286,0.5972716,-0.24334869,0.16219005,0.35407597,-0.043177128,-0.7165413,0.5067681,-0.54792005,0.5169957,-0.0065203826,0.0074227136,-0.06776716,-0.18704662,0.3580536,0.5959286,-0.1504757,0.02472644,0.006539178,-0.27095243,0.103219636,-0.3929966,0.12283961,-0.5437423,-0.08406026,0.6536373,0.34421575,0.36520654,-0.09422276,0.006038326,0.12332212,-0.062225834,0.10689971,0.044822566,0.20134917,0.077294014,-0.6021036,-0.15229605,0.47273,-0.009209394,0.10788686,-0.0569961,-0.2670164,0.25569206,-0.15071446,-0.2818903,-0.09768221,-0.56059974,-0.023100447,-0.26617864,-0.32331836,0.44421807,0.100439675,0.22323425,0.1706738,0.04912295,-0.26497024,0.33274317,0.28326443,0.79783064,-0.083492175,-0.21239497,-0.4713663,0.2650766,0.20714131,-0.15323777,-0.21676664,-0.12170402,-0.10031442,-0.43519402,0.36867175,0.031295374,-0.28016788,-0.044076275,-0.10434297,0.1442537,0.53345853,-0.18839951,-0.2605895,-0.25447407,-0.17215373,-0.27854052,-0.1791634,-0.12011981,0.31184137,0.21592419,-0.049311146,-0.14167532,-0.035982568,-0.0008346081,0.33349985,0.047715798,0.37798107,0.3763321,0.066698484,-0.32023576,-0.14285943,0.19795264,0.34616655,-0.033790655,-0.11227246,-0.40990308,-0.44001496,-0.33699366,0.25497884,-0.1252696,0.31565,0.064853534,-0.3775427,0.72050244,-0.053696092,0.9948027,-0.053009074,-0.28090152,0.121537425,0.4756259,0.068905085,-0.044904593,-0.34651458,0.92783296,0.51368433,-0.0366678,-0.1529705,-0.25817767,-0.110162355,0.075323865,-0.2356347,-0.05516041,-0.034571268,-0.78669876,-0.15999158,0.28282663,0.2980397,0.17384318,-0.04506452,0.12180747,0.15639986,0.10746429,0.33753502,-0.3282423,-0.21614113,0.31817982,0.24238695,0.13277534,0.086729005,-0.4183219,0.29783782,-0.5180337,0.06259544,-0.28141063,0.0790802,-0.12648931,-0.36072528,0.2306808,0.037944753,0.25941747,-0.28866777,-0.4467501,-0.30332428,0.46037,0.008887267,0.22014008,0.45645636,-0.25223827,0.13175668,0.069509335,0.4720781,0.9956886,-0.117507316,0.030500496,0.3938716,-0.31295094,-0.6513949,0.3646858,-0.22425693,0.31771106,-0.08651468,-0.07520021,-0.5512536,0.21877731,0.2193312,-0.019239118,0.04533035,-0.5307178,-0.32937375,0.24804278,-0.46261463,-0.19790073,-0.3373027,0.048713025,0.701821,-0.36205283,-0.21694906,0.0666547,0.26562884,-0.23956896,-0.43559054,-0.08179858,-0.30307397,0.269322,0.14234802,-0.30875942,-0.038898468,0.095926724,-0.24818635,0.1873394,0.15291952,-0.4443043,0.04734587,-0.3886613,0.050016984,0.8912079,-0.09153037,0.11909221,-0.51233697,-0.45615712,-0.9934617,-0.3432814,0.5646578,-0.0379322,-0.03880613,-0.5737598,0.054364145,-0.076579615,-0.11517052,-0.07355148,-0.39419183,0.49051887,0.10474825,0.28039372,-0.048863087,-0.66173774,0.026420971,0.13896376,-0.12531088,-0.6393932,0.45866823,0.0053327004,0.8580247,0.06922313,0.1480309,0.31805116,-0.54064,-0.13214971,-0.27012682,-0.30176607,-0.5454509,0.12671691 -531,0.38451442,-0.22912131,-0.4120676,0.0051033497,-0.2723107,0.13728738,-0.19350107,0.40037158,0.04868893,-0.3271786,-0.34832254,-0.23117682,-0.09249425,0.24982065,-0.1796277,-0.24556652,-0.14195497,0.1116268,-0.6133363,0.7772437,-0.24150953,0.1846226,0.07845459,0.349026,0.56231105,0.34712696,0.0128827095,0.059888594,-0.07190984,-0.18036194,-0.09029868,-0.01263423,-0.44660476,0.23007794,-0.33327484,-0.30468968,-0.14790025,-0.5534443,-0.40368646,-0.7879623,0.48768583,-0.92217076,0.5127223,-0.10249814,-0.18971278,0.32237193,0.3239916,0.4580649,-0.083050504,-0.23808973,0.23107643,0.027887743,0.0027758598,-0.11063998,-0.23291388,-0.29357606,-0.65329,-0.015784467,-0.3513617,-0.1585705,-0.3213494,0.15791318,-0.2371966,0.09429715,-0.08900988,0.49959967,-0.48798472,0.1884696,0.16794991,-0.05903607,0.19499345,-0.640777,-0.10629061,-0.1002954,0.26984656,-0.051415052,-0.050530538,0.3901178,0.18022975,0.27815625,0.036095854,-0.07292471,-0.22216678,-0.08569781,0.20174739,0.42404234,-0.032930065,-0.20695862,-0.09234211,0.077451356,0.3120233,0.2554724,0.2464438,-0.172723,-0.16765413,-0.10271914,-0.09351371,0.3872866,0.40154165,-0.31774828,-0.2304986,0.45623732,0.72181094,0.39027327,-0.16579264,-0.10262781,-0.06291194,-0.45813975,-0.05991841,0.07526692,-0.23052505,0.47358528,-0.08395777,0.30078313,0.59150547,-0.08884787,0.023949917,0.055674236,0.07297225,-0.28517953,-0.18394588,-0.2988308,0.16285841,-0.32093576,0.23305477,-0.11778324,0.61356276,0.0822988,-0.6274124,0.30112842,-0.6376893,0.17141543,0.0750531,0.39646137,0.65647,0.41235942,0.31366622,0.6864847,-0.21286711,-0.04079107,-0.1812328,-0.27811202,0.027899317,-0.16279088,-0.078411244,-0.50289226,0.06568034,-0.027447548,-0.17758434,-0.060001127,0.46927872,-0.47269762,0.027250059,-0.033060454,0.83157176,-0.19608808,-0.05357278,0.8610446,0.9617091,1.0754783,0.01436369,0.95875156,0.0469486,-0.18247803,0.24227217,-0.3113976,-0.61949635,0.29477307,0.48204416,-0.2649053,0.4323608,0.03799783,0.04403523,0.19794528,-0.37173712,0.04947981,-0.16647092,0.028147634,0.17591238,0.021013642,-0.40264797,-0.3262515,-0.033806585,0.045617413,0.15317042,0.15543877,-0.18876056,0.3559432,0.11196886,1.6745857,-0.03979645,0.11393415,0.22075526,0.43005645,0.105262965,-0.186132,-0.19604556,0.31178606,0.2801737,0.13101022,-0.5844612,0.12249541,-0.31034496,-0.3619117,-0.07157412,-0.41892287,-0.18456681,0.005860158,-0.28783026,-0.124327324,-0.29698378,-0.40665302,0.37768242,-2.9048107,-0.075870804,-0.20348834,0.31973222,-0.31551287,-0.31430808,-0.032212805,-0.46881694,0.44148862,0.28853193,0.4446188,-0.44643804,0.33669567,0.4594274,-0.7862787,-0.010174662,-0.603855,-0.027886685,0.059227057,0.4355834,-0.15318875,0.066711895,0.05476357,0.13083455,0.39279196,0.16304497,0.15319188,0.44971055,0.3585196,-0.0040305974,0.59054416,-0.05489309,0.35447592,-0.21688086,-0.06942418,0.35026494,-0.29762954,0.45189843,-0.18581297,0.08939649,0.5156509,-0.6395427,-0.67733186,-0.52971715,-0.34373215,1.2153848,-0.3202256,-0.42416012,0.21689695,-0.38366997,-0.23293614,-0.14829381,0.49061933,-0.14367057,-0.15152134,-0.6724691,-0.06322834,-0.08915739,0.08473872,-0.06740678,-0.04401844,-0.44527277,0.7851099,-0.02760812,0.5066779,0.2341895,0.1766328,-0.24354927,-0.44941577,0.102180496,0.6145531,0.52308816,-0.07819516,-0.2202219,-0.2025365,-0.46440184,-0.1383834,0.1481191,0.53451,0.44442898,-0.10079051,0.12089523,0.23293978,-0.016107695,0.09864157,-0.27301127,-0.17270856,-0.18966807,-0.12246934,0.5278772,0.55546534,-0.043973286,0.3915366,-0.0076789046,0.19903399,-0.05155929,-0.43649408,0.38285998,1.0291483,-0.20663717,-0.28937122,0.4997246,0.49922836,-0.095501885,0.39583486,-0.4485025,-0.1297204,0.49762994,-0.18491836,-0.52593637,0.14369126,-0.2733965,0.092975505,-0.6816719,0.07090418,-0.32890046,-0.4489938,-0.49198705,-0.03244262,-2.6909902,0.1997114,-0.22223641,-0.31593996,-0.20429493,-0.26784247,0.13346083,-0.5205931,-0.74022734,0.10459896,-0.024469035,0.7476031,-0.16572623,0.09893784,-0.111353904,-0.3171551,-0.5040371,0.10292607,0.17270851,0.48149505,-0.22569636,-0.35260668,-0.0066010356,-0.12445373,-0.431714,-0.05453132,-0.4908375,-0.27331343,-0.2070567,-0.45266002,-0.27862123,0.5405051,-0.22694273,0.12836237,-0.20043509,-0.05750947,-0.002043438,0.2409798,0.1117202,0.15200955,0.16745421,-0.07785211,0.033529177,-0.23591141,0.4084547,0.06536665,0.2705221,0.29206753,-0.14563054,0.48662817,0.22913072,0.5650631,-0.13740991,0.8830263,0.37351578,-0.10385704,0.24951622,-0.12688692,-0.25191846,-0.5284082,-0.040019803,0.011422913,-0.3194125,-0.60701066,-0.21646158,-0.32319462,-0.7339354,0.46559212,0.04856634,0.42129382,-0.081453085,0.14398544,0.60104537,-0.14321724,-0.028732311,0.027421588,-0.10309114,-0.5271026,-0.26925468,-0.5593267,-0.47169542,0.090848155,0.9813882,-0.21768995,-0.026257379,0.016415948,-0.42336166,0.05209573,0.16524537,-0.13155,0.15371273,0.3635093,-0.12223085,-0.6444117,0.5266067,0.11497761,-0.11250194,-0.4972655,0.27900696,0.5274279,-0.45685798,0.41580746,0.17517394,-0.06449894,-0.40586936,-0.36833766,0.04687099,-0.14631823,-0.38576502,0.3478075,0.27996063,-0.6333738,0.23965698,0.13048328,-0.11530604,-0.8057335,0.62500274,0.009913338,-0.1747816,-0.06194573,0.33888534,0.17114067,0.07321683,-0.29240692,0.24184094,-0.39979076,0.2253155,0.14373954,-0.07702633,0.09824824,-0.22005422,-0.06316783,-0.6976134,0.20292956,-0.45248362,-0.20674899,0.39956748,0.17946559,0.07429843,0.1312234,0.26357633,0.3531495,-0.18251851,0.12516245,-0.10049868,-0.14223416,0.2752106,0.4562359,0.52110124,-0.51189405,0.5667346,0.10875599,-0.12073615,0.15855257,-0.022304932,0.31598994,-0.040910535,0.36689964,0.1587916,-0.26399043,0.19379759,0.44476023,0.25127524,0.40785334,0.12711893,-0.22519556,0.2424851,-0.020004774,0.29757357,-0.1726962,-0.7760048,0.050790954,-0.17576332,-0.006689489,0.42528522,0.11089594,0.17642742,-0.12565418,-0.27486506,-0.017784135,0.08790623,-0.181703,-1.0172242,0.32748762,0.2226622,0.8344374,0.48944822,-0.101404294,-0.040087834,0.80652505,-0.2187006,0.020347845,0.38919735,0.08359609,-0.58448434,0.53354865,-0.65446216,0.54141337,0.039652992,-0.16201933,0.015926171,0.06324487,0.38182485,0.74555135,-0.25340423,-0.07361223,-0.079375155,-0.3132626,0.23029505,-0.26296356,0.07688745,-0.6536752,-0.3476806,0.5483973,0.48380837,0.39077646,-0.061434396,0.04457328,-0.022792079,-0.1858681,0.31598055,0.22343366,0.024894655,-0.11084868,-0.6988575,-0.14787151,0.35394594,-0.20464954,0.18131712,0.10738205,-0.21078472,0.16569851,-0.10784519,0.103019305,-0.06464643,-0.81658643,0.016178926,-0.18445517,-0.34890592,0.25828475,-0.081935935,0.39278945,0.21244766,-0.018164687,-0.2400628,0.25497472,0.025861586,0.7073709,-0.04221126,-0.13598819,-0.26175842,0.24756299,0.10224519,-0.15095115,0.03117278,-0.0689624,-0.0007068356,-0.6774488,0.55143625,0.008313179,-0.37234586,0.009211158,-0.12858982,4.972418e-05,0.59941155,-0.036438607,-0.11054944,-0.20705572,-0.2339974,-0.34996003,-0.31474656,-0.067489006,0.175283,0.19735752,-0.049004447,-0.16428988,0.029407978,-0.08460761,0.46499607,-0.023872351,0.49352965,0.3061215,-0.036170542,-0.3475081,-0.17768279,0.098134756,0.4048987,0.059972513,-0.055605765,-0.23762989,-0.43664104,-0.3536788,0.3588949,0.004201887,0.4808551,0.12513512,-0.11964246,0.58591205,-0.1444568,1.1316231,0.10280406,-0.35380822,0.10504864,0.5876607,-0.013239384,-0.28377548,-0.25179768,0.80796224,0.40503556,-0.00087288616,-0.117676,-0.40212968,0.01493994,0.12426688,-0.2035357,-0.07804171,-0.036323536,-0.48826426,-0.23250729,0.04283445,0.22397305,0.24732514,-0.14636874,0.004423173,0.30178696,-0.103850685,0.43613917,-0.18742631,-0.41840804,0.4386085,0.035810925,-0.0692958,0.09319995,-0.51575166,0.48729312,-0.47365946,0.115238756,-0.106589414,0.22913964,-0.23238482,-0.30520502,0.24321993,-0.04464469,0.42439142,-0.31290588,-0.48680156,-0.34980997,0.44748682,0.16248083,0.14563455,0.53684276,-0.29701152,0.031181427,0.019898552,0.50678796,0.8139259,-0.051488716,0.08310942,0.2954849,-0.45821625,-0.6089315,0.4165226,-0.38458893,0.2633879,0.12832968,-0.06863859,-0.39638153,0.203774,0.21044649,0.075928465,-0.04332743,-0.7302349,-0.30885828,0.19578432,-0.1608621,-0.06998941,-0.3616597,0.009835561,0.5704781,-0.23210195,-0.38824043,0.036449306,-0.022930019,-0.06552999,-0.53935397,-0.07670857,-0.317154,0.29138896,-0.19466496,-0.27331442,-0.2229313,0.18580271,-0.41869804,0.136691,-0.13269398,-0.35596895,0.027184209,-0.36177298,-0.02116838,0.8405291,-0.3194846,0.032440808,-0.27421156,-0.46384528,-0.7114867,-0.32290745,0.13345142,0.13243014,0.11171617,-0.4940538,0.038499847,-0.293056,-0.057788435,-0.026607621,-0.4219708,0.37301022,0.1628065,0.32832012,-0.030159187,-0.6851539,0.32519934,0.011662317,-0.07488518,-0.5273293,0.48555508,-0.029389897,0.5605408,0.11073222,0.1386485,0.110132344,-0.50503916,-0.10811723,-0.07964236,-0.04905549,-0.5525917,0.12518866 -532,0.3820969,-0.088073574,-0.5793608,-0.061827358,-0.07225851,-0.0077517508,-0.22685553,0.55981505,0.2183953,-0.42226565,-0.053866245,-0.18005185,-0.18630987,0.4918951,-0.18309686,-0.6819814,-0.046354655,0.000118923184,-0.47278067,0.6597842,-0.2700864,0.23608041,-0.11788319,0.34120214,0.33288518,0.44748646,0.09532474,-0.07130203,-0.15068556,0.0029317776,-0.021108676,-0.02608375,-0.6153705,0.09977843,-0.2295256,-0.22400256,-0.050035994,-0.4024643,-0.4424393,-0.8104376,0.52382624,-0.70431507,0.4950709,-0.15628478,-0.1504769,0.12414264,0.3255392,0.49455833,-0.2737632,-0.11674843,0.18192032,-0.031295024,0.0146857025,-0.11750098,-0.27755865,-0.3047283,-0.5072533,-0.0009602785,-0.5466208,-0.17661135,-0.28514707,0.06883911,-0.39540675,0.114421606,-0.21815681,0.44285005,-0.42073393,-0.095839135,0.25549558,-0.20718518,0.16723807,-0.6482728,-0.07781479,-0.06180749,0.23090926,-0.06203403,0.083808206,0.58721095,0.012009605,0.35661882,0.11605073,-0.11943548,-0.34603855,-0.13197869,0.08850599,0.39985734,-0.07481059,-0.4996216,-0.021753248,0.13548718,0.22002415,0.24361105,0.07467014,-0.18781596,-0.050393123,0.03232095,-0.16029003,0.35801136,0.563551,-0.17030008,-0.17071046,0.23872334,0.6787743,0.43174362,-0.104217194,0.025018184,-0.047067594,-0.38032562,-0.20982672,0.14769341,-0.09427571,0.42851058,0.00016978482,0.21944323,0.71355814,-0.23413788,0.14414598,-0.20520504,-0.059119105,-0.038411703,-0.3585287,-0.15289226,0.14613758,-0.45715123,0.3526107,-0.16634175,0.6950501,0.23994507,-0.53510827,0.40430278,-0.5594606,0.10749598,0.17022328,0.47987634,0.54426986,0.44859582,0.2782686,0.7751447,-0.41850427,0.15921988,-0.24349871,-0.3879226,-0.011316367,-0.12286695,0.111426815,-0.3382489,0.11908548,-0.008582557,-0.1503625,-0.0071307025,0.25147727,-0.37522376,0.02502543,-0.12974282,1.0481355,-0.23483826,0.020733627,0.78575253,0.92751163,1.0326531,-0.054846484,1.0307711,0.19428025,-0.31395277,0.30006334,-0.29519948,-0.7715538,0.26649016,0.30754262,-0.13241759,0.38712266,0.10561561,-0.07168508,0.28576082,-0.39084443,0.11797669,-0.17114058,0.3278052,0.22556342,-0.054772984,-0.27769443,-0.26203385,-0.07248165,-0.098583184,0.17468247,0.15893528,-0.06114203,0.36190504,-0.04117233,1.9271721,-0.007333215,0.1013124,0.23950627,0.7627947,0.20731324,0.09763401,-0.20125493,0.21726602,0.32251665,0.0977752,-0.56655705,0.10397147,-0.4253206,-0.5007806,0.006588155,-0.3507413,-0.11417234,-0.18944542,-0.37426907,-0.113614894,-0.16675453,-0.21670271,0.3806774,-2.613446,-0.097498335,-0.042102143,0.28172618,-0.46553692,-0.33406267,-0.13802367,-0.49364248,0.51440394,0.27026272,0.45515078,-0.5351471,0.36551753,0.45648187,-0.5096778,-0.13438174,-0.47891137,-0.002643445,0.049485724,0.41791207,-0.18385817,-0.05464101,-0.022782546,0.18188652,0.47651485,0.046780646,-0.06535123,0.3511774,0.32622442,-0.03752717,0.5079734,-0.07828857,0.36292145,-0.47280538,0.027952898,0.3427032,-0.44402263,0.360635,-0.14414527,0.105669476,0.35953072,-0.54527056,-0.78206384,-0.46743843,-0.21676953,1.1784885,-0.22487354,-0.30451897,0.21800779,-0.36192197,-0.046034332,-0.21124716,0.51495147,-0.13596712,-0.08614957,-0.5979719,-0.04183153,-0.17316829,0.20204605,0.057443567,0.13780187,-0.29921913,0.68660843,-0.09003343,0.4302542,0.31010565,0.14729923,-0.20162958,-0.50862163,0.18648429,0.6715842,0.33636686,0.06196626,-0.14622228,-0.1874018,-0.33580476,-0.3218861,0.09482949,0.56253356,0.79877734,-0.0043620467,-0.062318258,0.28457502,-0.11226422,0.07622392,-0.109895155,-0.3512202,-0.19582948,-0.07375871,0.51641905,0.52362806,-0.2535986,0.42565066,-0.11973627,0.27377662,-0.15914348,-0.25122064,0.44206536,0.7170327,-0.26482168,-0.21526346,0.21818672,0.378814,-0.24867047,0.45722216,-0.622829,-0.25389516,0.6418078,-0.15459843,-0.5006903,0.20698348,-0.21701524,-0.03631486,-0.7693129,0.08759741,-0.46674055,-0.1977021,-0.56180024,-0.22519669,-3.0392113,-0.040971972,-0.297244,-0.2731575,-0.27030477,-0.014659218,0.098073706,-0.62313306,-0.7338054,0.058029197,0.030712523,0.63632333,-0.06509123,0.13224591,-0.23815273,-0.14945598,-0.49708667,0.05319996,0.18101232,0.4135119,-0.01582137,-0.35032994,-0.17168526,-0.21654005,-0.53750294,0.14006029,-0.4298349,-0.26629573,-0.31108874,-0.63414055,-0.2502905,0.7016183,-0.30720875,0.07201998,-0.08891097,-0.040722728,-0.04396362,0.3550963,0.27765483,0.102863386,0.1411747,-0.13969061,0.1192691,-0.27154133,0.29723972,0.13968916,0.51709825,0.2761596,-0.16963361,0.18372224,0.42964408,0.8804442,0.036601044,0.64014524,0.23475161,-0.07592262,0.5130797,-0.50005466,-0.33799165,-0.45593512,-0.26932546,0.12306671,-0.15099595,-0.5585602,-0.23700124,-0.48176,-0.7462581,0.46115252,-0.0043763616,0.2716374,0.058381774,0.0690809,0.49016997,-0.079750456,0.06465104,0.13119473,-0.0035997361,-0.5577,-0.22890504,-0.59340125,-0.6508402,0.153274,0.90268695,-0.18648118,-0.25484648,0.04441581,-0.37903562,0.11838824,0.011986201,-0.05062574,0.08374482,0.33430877,0.00957065,-0.64219356,0.5637011,-0.041872792,-0.25807568,-0.5285435,0.18775466,0.5760157,-0.7129056,0.3940607,0.14004748,0.078977264,-0.15778205,-0.4184922,0.019470425,-0.078218736,-0.09684394,0.20080137,0.024698235,-0.5522025,0.30556193,0.28827986,-0.35755688,-0.713233,0.421725,0.012685581,-0.20837933,-0.06698772,0.36359635,0.21068461,-0.022601627,-0.3008121,0.14557037,-0.46998948,0.12084135,0.2915612,-0.050676566,0.36922127,-0.092262894,-0.21689278,-0.6737157,0.2585283,-0.4484783,-0.27880973,0.40904495,0.1616672,-0.0073615075,-0.10671607,0.12608194,0.28587568,-0.24610987,0.09708818,-0.05743162,-0.19064493,0.44186744,0.35789368,0.5322842,-0.5377003,0.6228058,-0.06907807,0.031368382,0.4014665,0.04474932,0.3475141,0.04098988,0.2603094,0.18062595,-0.28351593,0.11008488,0.6662636,0.2548567,0.35202286,0.08443562,-0.25186926,0.297135,0.16477509,0.056221765,0.19482626,-0.561824,0.08793828,0.126157,0.052371185,0.5437838,0.2052543,0.26731464,0.016517902,-0.30709985,0.012947952,0.30655816,-0.40731537,-1.2751864,0.43072632,0.11093124,0.83036524,0.4258531,0.03373867,0.1573413,0.67917067,-0.0065622567,0.13793232,0.42718518,-0.0048842034,-0.57419115,0.5725982,-0.5209876,0.6065622,0.17998269,0.031422924,0.06525864,0.22921608,0.46780547,0.6805441,-0.19295806,-0.1697097,-0.120248675,-0.1861339,0.012291924,-0.4342782,0.064116694,-0.3632597,-0.3653317,0.35991818,0.4000184,0.23075594,-0.098808765,0.01794465,-0.00609897,-0.1463447,0.32876962,-0.1712978,0.041318152,-0.0070347786,-0.5538344,-0.4868167,0.445443,-0.18788053,0.20153375,-0.07968361,-0.11169513,0.33745876,-0.046024267,0.09320072,-0.113003224,-0.6936963,0.2614745,-0.3218431,-0.32302862,0.19921528,-0.033113636,0.4500661,0.21437404,-0.014674308,-0.46797925,0.51511383,-0.012887995,0.7504503,-0.37626633,-0.4037213,-0.5068785,0.12855585,0.27132717,-0.28908154,0.07717698,-0.17067914,-0.12955269,-0.4628006,0.38633072,-0.16821732,-0.18118912,0.06711295,-0.3358088,-0.13518216,0.63206214,-0.28103822,-0.08110391,-0.20826991,-0.19390734,-0.13198216,-0.39454982,-0.12383927,0.17311804,0.22282681,-0.10514658,-0.124366425,-0.11611791,0.06523564,0.56015,-0.04311881,0.32845223,0.26432112,0.11791755,-0.4128771,-0.19005278,0.23507851,0.4219301,0.28608173,0.01644746,-0.3757218,-0.42240956,-0.3344118,0.37025866,-0.21193379,0.3051134,0.2151231,-0.38955978,0.6589552,0.12878689,1.1655457,0.108304895,-0.30248848,0.21932861,0.5868586,0.049500704,-0.022223437,-0.45700207,0.93555486,0.4629549,-0.16279794,-0.12695633,-0.25552592,-0.08329641,0.14215094,-0.3086677,-0.029412726,-0.09530118,-0.4916124,-0.26942444,0.21116047,0.21083727,0.103882395,-0.13219768,-0.2322052,0.037856262,0.044379298,0.53589493,-0.32608262,-0.31605992,0.3830363,-0.044404354,0.02039365,0.05739343,-0.5534676,0.52220565,-0.48405486,0.18834049,-0.31982085,0.17598289,-0.13486268,-0.26979822,0.22872803,-0.046627782,0.43483263,-0.37327424,-0.42812642,-0.32306376,0.38762406,0.18447848,0.22726528,0.620107,-0.24429867,-0.0076429048,0.011424422,0.58880603,0.8177354,-0.063547954,-0.019198166,0.31170732,-0.3435845,-0.548966,0.2871248,-0.2630906,0.17524329,-0.13267362,-0.106529795,-0.56463695,0.25890106,0.1520353,-0.15789977,-0.08487972,-0.7837884,-0.3781883,0.10068281,-0.27274936,-0.314779,-0.5165736,0.03857998,0.7668648,-0.29353616,-0.3221098,0.27986076,0.10168077,-0.05915629,-0.56283927,-0.131665,-0.2383309,0.33403715,0.10050027,-0.27659643,-0.13550477,0.27968735,-0.48661545,0.1551917,-0.024632962,-0.43903705,-0.115376435,-0.114144914,-0.0904587,0.81964505,-0.13357607,0.051888693,-0.5166939,-0.3922862,-0.90544796,-0.36296654,0.45018014,0.074843384,0.057582345,-0.66141814,-0.058127474,-0.14651212,0.11077838,-0.0067781,-0.4801492,0.32140383,0.19365433,0.36860266,-0.30881748,-0.6791235,0.21328619,0.19444942,-0.1990111,-0.57437515,0.47803268,-0.067816906,0.7500679,0.05433382,-0.048538376,0.27566776,-0.4439266,0.0071169455,-0.23932555,-0.16818307,-0.47740585,0.27210522 -533,0.5388405,-0.075732134,-0.4764496,0.007016465,-0.32325414,-0.109426044,-0.27000263,0.16492535,0.3157039,-0.113277525,-0.077779435,0.20048194,-0.15334095,0.24671477,-0.17374921,-0.6435368,0.016150564,0.22771466,-0.78536886,0.6888378,-0.3384409,0.46726775,0.007326757,0.33318058,0.0062987655,0.19966893,0.18106802,0.082417965,-0.08172019,-0.40350756,-0.051146436,-0.04159929,-0.7604533,0.122224726,-0.30137148,-0.30021736,-0.09551209,-0.5825315,-0.27449286,-0.80718565,0.29654595,-0.62248784,0.5730939,-0.11471126,-0.31750128,-0.08381504,0.11714617,0.31603715,-0.16327797,-0.12895481,0.27852836,-0.31140438,-0.056533486,-0.25293356,0.2623873,-0.22555894,-0.48701033,-0.060096722,-0.52323574,-0.069963686,-0.106180705,0.26068017,-0.4924581,-0.06810358,-0.3686925,0.3910657,-0.23616727,0.09986061,0.15867043,-0.23812938,0.088244855,-0.6975427,0.104463704,0.043997813,0.61965245,0.035550714,-0.07730386,0.54871887,0.046445712,0.33595785,0.12791218,-0.397163,-0.054352075,-0.117262565,-0.06634109,0.50317353,-0.32949418,-0.18111886,-0.12192479,0.18975289,0.57265586,0.2259124,0.073745206,0.17857255,0.06485763,-0.30768332,-0.017987708,0.7135572,0.5874261,-0.108998,-0.120851465,0.1834327,0.65608525,0.6123852,-0.08779774,-0.1288641,-0.11180731,-0.4521428,-0.14580405,0.037272464,0.012501205,0.32173154,-0.11107675,0.29830074,0.6729899,-0.11135411,-0.0697053,0.33057168,0.10260784,0.33468518,-0.05347131,-0.24024232,0.4397703,-0.75129825,0.14449733,-0.47585824,0.54595315,0.15419614,-0.7967711,0.39813003,-0.5203053,0.19308393,0.18142295,0.6496803,0.80592984,0.57467806,0.271149,0.829288,-0.34697947,0.21998377,0.061574757,-0.23853649,-0.03175093,-0.15660258,0.2320563,-0.41538915,-0.117238574,-0.35894606,0.032480616,0.06075452,0.109490074,-0.6462373,-0.41831768,0.07596731,0.7367337,-0.15810005,0.0756624,0.880364,1.1881894,1.0043426,-0.13366164,1.055265,0.016568413,-0.22853106,-0.25507924,-0.08081757,-0.5684135,0.2211235,0.36983028,-0.10588676,0.396407,-0.16465436,-0.22123636,0.21030836,-0.41346255,-0.26395866,0.032996383,0.39038578,-0.008305937,-0.03704716,-0.6037292,-0.23487872,-0.052479725,-0.0445123,0.13407107,0.39620385,-0.36175963,0.283325,-0.041884243,0.83349866,-0.042484034,0.14220822,0.09678468,0.4454358,0.30326062,-0.25638604,-0.065244265,0.23230113,0.44714704,0.04269721,-0.571657,0.24247587,-0.6676931,-0.2673428,-0.03999589,-0.33540976,-0.2714369,0.1081898,-0.17486073,-0.1844634,-0.080958106,-0.103977345,0.27102166,-2.8445394,-0.24047899,-0.015858674,0.4034734,-0.30328414,-0.25270948,-0.12852913,-0.5071723,0.25653085,0.05962189,0.5794241,-0.5087347,0.40637055,0.46135953,-0.6939295,-0.06691112,-0.58464503,-0.06247439,0.21326743,0.48469058,0.06989134,-0.21786149,0.0012392203,0.24663927,0.6508688,0.31023958,0.11443577,0.48487842,0.5206325,-0.045761067,0.3386213,-0.1306764,0.553158,-0.51786804,-0.100726545,0.3467209,-0.4358578,0.28739086,-0.37367523,-0.019470075,0.55885357,-0.33614933,-0.91409284,-0.35367227,0.07120843,1.2300369,-0.19858612,-0.71323586,0.01656405,0.11068779,0.028056234,0.08552089,0.5354257,-0.0030870736,-0.088120885,-0.48018384,-0.13360757,-0.27361596,0.19263814,0.007363303,-0.07477323,-0.40848923,0.67366296,0.008958782,0.5869205,0.09277666,0.4214641,-0.2561599,-0.37604108,0.16633117,0.7932593,0.4922198,-0.033097297,-0.16427372,0.029292053,-0.09625413,-0.13191609,-0.10648817,0.906127,0.68392867,-0.127187,0.04337576,0.36408463,-0.0744121,0.19735956,-0.019527191,-0.3941795,-0.3846432,-0.19198422,0.63878983,0.84169227,0.06908996,0.4977051,0.06852742,-0.05142938,-0.16429152,-0.5321736,0.5962417,0.4465573,-0.35034204,0.13524334,0.41446522,0.41313732,-0.27977583,0.4500076,-0.6332106,-0.3956875,0.6956437,-0.13703506,-0.5752968,0.17349453,-0.20537055,0.12400669,-0.4284731,0.53376514,-0.6405113,-0.8328366,-0.6226842,0.008472954,-1.3576895,0.25299013,-0.26697883,0.017164016,-0.5409212,-0.06560323,0.035674635,-0.6565481,-0.6390656,0.17139399,0.28799814,0.7488113,-0.29911312,0.08493381,-0.28944382,-0.4817386,-0.21553159,0.20992716,0.30441806,0.2604359,-0.07624942,-0.07732294,-0.16420893,0.1820445,-0.31797215,0.09735918,-0.49441376,-0.49118948,-0.10280342,-0.4573743,-0.16012542,0.69328433,-0.32947412,0.12702248,-0.23826742,0.13017386,0.0895231,-0.08051099,-0.02190273,0.29756093,0.1436598,-0.31681207,0.20645057,-0.22110361,0.55805534,0.17646794,0.6274225,0.06364221,-0.13159733,-0.026857957,0.52565026,0.77889746,0.1106222,1.1297666,0.12384259,-0.10187993,0.315697,-0.2688744,-0.45600548,-0.5835714,-0.21646039,0.3690498,-0.41589454,-0.4128606,0.028692508,-0.33467317,-0.8675086,0.5935978,0.08750505,0.57384163,-0.22857885,0.5197485,0.4530588,-0.40081254,-0.080682136,-0.016865104,-0.13446192,-0.3068143,-0.04313776,-0.8049963,-0.3677212,-0.1397547,0.6746073,-0.3992546,0.16703485,0.16478913,-0.17146665,0.26389447,-0.24320333,0.04116005,-0.07430562,0.19947542,0.1099867,-0.4909723,0.31453183,-0.08120961,0.04880173,-0.4862026,0.31712225,0.6763933,-0.58305883,0.41647196,0.40190268,-0.24861081,-0.26317206,-0.7215872,0.13099241,0.27106825,-0.11559514,0.08635215,0.28498366,-0.7222037,0.41393456,0.22338672,-0.40007284,-0.72044563,0.4069914,0.04078434,-0.40031755,-0.10670337,0.34561822,0.059532207,-0.084194005,-0.06908773,0.30482554,-0.4246582,0.5334135,-0.097776115,-0.20259254,0.09080567,0.0004244099,-0.40041065,-0.80928755,0.22999696,-0.7782077,-0.3800284,0.5299701,-0.10943258,-0.14085509,0.23996337,0.33780667,0.37480965,-0.37838283,0.12188217,-0.18741234,-0.38900352,0.5227886,0.4915069,0.6124273,-0.4940989,0.56592035,0.3460233,-0.21299589,0.48287663,0.0063131354,0.46804214,-0.12602079,0.48928866,-0.019812634,0.093347855,0.09037015,0.45709494,0.14709185,0.32111904,-0.07083708,-0.11107788,0.18636446,-0.08253374,0.4016985,-0.06148092,-0.48054203,0.09502286,0.026136583,-0.062946044,0.55086416,0.1425963,0.033888917,0.1072411,-0.36752418,-0.11377636,0.20041697,-0.27219114,-1.4221096,0.75142986,0.21615066,1.0535105,0.2672923,0.33956468,-0.13508116,0.7162742,-0.030390888,0.08217759,0.28014705,0.10231558,-0.3144592,0.6229761,-0.6600531,0.459214,-0.0024291675,0.047012016,0.18955827,-0.100613706,0.35710225,0.73662764,-0.21356289,0.011598177,-0.26618394,-0.18002494,-0.23237781,-0.33154103,0.34310493,-0.3698307,-0.3943317,0.6583786,0.25930178,0.25293496,-0.23735707,0.17158449,-0.17932224,-0.30643752,0.31393573,-0.08106138,-0.0587047,-0.04484059,-0.42357802,-0.012093355,0.4330018,-0.26525453,-0.046777368,-0.28836882,0.120132856,0.080891095,-0.098382376,0.025477692,-0.031087995,-0.83532023,0.32702333,-0.44105542,-0.28553087,0.22089016,-0.13552712,0.095760226,0.15039293,0.12392289,-0.13262758,0.31633142,0.14661002,0.4810854,-0.11787551,-0.46588492,-0.51820916,0.21163201,-0.016153028,-0.28960225,0.24064004,-0.08399775,0.13351886,-0.28214058,0.46375358,-0.23303115,-0.48642853,0.023266265,-0.18284942,-0.144324,0.48760387,-0.15761766,-0.1656164,0.021820545,-0.38553238,-0.2457213,-0.19840746,-0.20230366,0.12266763,0.49733236,-0.23961337,-0.13747092,-0.1425089,-0.31554404,0.4616791,0.13399495,0.44677857,0.4141465,0.2545546,-0.48878717,0.22737016,0.25035083,0.55074537,0.0609861,0.10325691,-0.6004756,-0.36266127,-0.45037642,0.72020334,-0.25288412,0.19226371,-0.12033522,0.030932268,0.9704311,0.05385765,1.1539025,-0.108954154,-0.22195147,-0.13049161,0.6410733,-0.20950365,-0.21633099,-0.5181369,1.084653,0.35780907,-0.11137983,0.19922237,-0.27091804,0.030697992,0.2997159,-0.29990044,-0.15403347,0.015043855,-0.41778883,-0.43091437,0.24882756,0.32951736,0.10708284,-0.19445582,-0.23119931,0.45252302,0.17155188,0.27329925,-0.7345248,-0.34518757,0.23487116,0.1372429,-0.24157834,0.24973206,-0.37876758,0.31357348,-0.73730785,0.25463408,-0.5523873,0.18986791,-0.1060715,-0.43594456,0.22431801,-0.04839888,0.40302786,-0.44565463,-0.47531453,0.090512075,0.030911619,0.31622994,0.09428963,0.4993688,-0.16882797,-0.015228194,0.18539904,0.6318125,0.9748549,-0.29897997,-0.045991093,0.123577476,-0.478542,-0.76356125,0.1632031,-0.34184575,-0.109566174,-0.20595759,-0.36043382,-0.46578574,0.19951141,0.09560878,0.2335844,-0.14898583,-1.0217983,-0.13604264,0.21680729,-0.32113656,-0.17436612,-0.38634527,0.32436725,0.7896655,-0.15396339,-0.38473415,-0.12496967,0.41181406,-0.23844163,-0.7016251,0.03433615,-0.48110488,0.15339395,-0.091080874,-0.34599257,-0.21415438,0.047233712,-0.6307195,0.21911614,0.13160495,-0.30503443,-0.099515595,0.105962075,0.24176194,0.6166389,-0.43939868,-0.042810958,-0.32957613,-0.44626746,-0.7727411,-0.2885402,-0.16120268,0.4559872,-0.067570806,-0.7406582,-0.0063821874,-0.38952732,-0.15163745,-0.15006721,-0.4053111,0.25205836,0.21491419,0.52809846,-0.49176225,-1.0646347,0.19637656,0.11185437,-0.1329139,-0.46283093,0.381997,0.15736824,0.6832836,-0.031957787,-0.11357864,-0.14569734,-0.45781025,0.20498566,-0.324543,0.03525586,-0.77891546,0.31981444 -534,0.23811346,-0.07309845,-0.3059545,-0.2046873,-0.24830309,0.09492013,-0.0171434,0.39501163,0.24176015,-0.13240942,-0.0048894454,-0.20549704,-0.026525626,0.46161348,-0.012379573,-0.78415024,-0.14671305,0.048294324,-0.57131237,0.35951024,-0.487316,0.2804071,-0.06456619,0.49091128,0.1134413,0.36142284,0.10326373,-0.08145363,0.07214056,0.15744402,-0.27657902,0.18561332,-0.5366342,0.12087667,0.11750566,-0.20949475,-0.11693545,-0.3999349,-0.38725778,-0.6067906,0.34361485,-0.59818465,0.42886522,-0.10938546,-0.28732923,0.1641323,0.072684675,0.23629355,-0.52670956,-0.0092793815,0.2669678,-0.12726262,0.19929364,-0.111771025,-0.29588547,-0.37922555,-0.48806655,-0.06089846,-0.41940692,-0.22226843,-0.27613685,0.06375539,-0.36869806,-0.12834165,-0.17524853,0.47324243,-0.37062213,0.22711545,0.25653416,-0.15709975,0.15578406,-0.43139923,-0.13881639,-0.16076134,0.085861534,-0.021527745,-0.21597753,0.33239767,0.3056528,0.31844383,-0.088569015,-0.121601835,-0.2213915,-0.022641677,0.0074356887,0.432848,-0.21637902,-0.28467023,-0.12223761,0.035100535,-0.014441635,0.18698627,-0.04675613,-0.4446871,-0.04707184,0.13032508,-0.23529941,0.15261349,0.29068625,-0.29842672,-0.2797127,0.37298664,0.24005304,0.16433352,-0.104988165,0.12200098,0.01367558,-0.5106298,-0.2020451,0.16538833,-0.033133145,0.36999696,-0.08033219,0.13126303,0.78200984,-0.14302751,-0.0065295147,-0.1767699,-0.0252811,0.022706985,-0.32917374,-0.12110912,0.05131519,-0.32867214,0.28493118,-0.06342102,0.7586435,0.15241274,-0.8688951,0.3164967,-0.5291576,0.16340016,-0.12354978,0.49812725,0.70527977,0.31116536,0.20240267,0.8423763,-0.47841755,0.05242979,-0.017147861,-0.32024986,0.18640845,-0.026397912,-0.0013443736,-0.53677696,-0.030368218,0.11963001,-0.070021994,0.18347992,0.027302088,-0.43459657,-0.065688714,-0.032459177,0.7713067,-0.33946323,-0.15706357,0.53972113,0.8398612,0.9080321,0.14737494,1.195724,0.29719636,-0.21153274,0.30472866,-0.37819433,-0.6582498,0.16291276,0.28702235,-0.10148107,0.231781,0.045912307,0.025971761,0.22916242,-0.12734857,0.16106136,-0.10940315,0.16742983,0.1695917,-0.120350435,-0.13836968,-0.3884895,0.06392603,-0.04366521,-0.099699646,0.21138474,-0.18924528,0.32481065,0.06418287,1.724189,0.19083378,0.08694708,0.07332965,0.38682142,0.1882469,-0.1096393,-0.13877146,0.45852053,0.35475275,0.06223132,-0.5805517,0.2436286,-0.17103657,-0.4605112,-0.0029975732,-0.4247606,-0.065121025,-0.11804747,-0.4363718,-0.22851986,0.007845681,-0.28195763,0.4451821,-2.9042587,0.0036205994,-0.009115458,0.22013241,-0.27177784,-0.24541415,-0.2783238,-0.3056534,0.29840022,0.4328933,0.38659653,-0.5786155,0.21417497,0.31018847,-0.28135234,-0.312561,-0.5735887,-0.08799878,0.08203392,0.18672647,-0.12191228,0.13409215,-0.11661533,0.19574502,0.5715682,-0.024357852,-0.036911123,0.2680678,0.4998794,0.17364946,0.53482157,0.06395371,0.47147018,-0.13249363,-0.09909045,0.27785036,-0.48993322,0.3018706,0.23807158,0.088057905,0.3979874,-0.38964775,-0.82450473,-0.48407382,-0.36013615,1.2442305,-0.4260432,-0.21485028,0.31342798,-0.25634918,-0.10678319,-0.103947006,0.4533226,-0.1361573,-0.18630257,-0.6454292,0.0194962,-0.060521465,0.33229563,-0.040986005,0.042833064,-0.08778033,0.55856615,-0.05244518,0.47992632,0.3329975,-0.017159197,-0.18240738,-0.46023324,0.112714894,0.6726433,0.18390411,0.18615586,-0.03874342,-0.07218286,-0.052655872,-0.107849054,0.1996776,0.5905661,0.57794493,-0.01109246,0.17416558,0.40143937,-0.2386435,-0.08769524,-0.048408847,-0.20139226,-0.015839221,0.05051644,0.4567329,0.5694579,-0.2412793,0.44114617,-0.07671538,0.17965595,-0.17159358,-0.4718868,0.50309086,0.8231443,-0.14839718,-0.14546844,0.27706736,0.48497933,-0.33092526,0.24127078,-0.47183955,-0.14675349,0.79613936,-0.14457901,-0.33208874,0.14737675,-0.26215336,-0.15112591,-0.75328535,0.15934794,-0.034462478,-0.43193018,-0.524953,-0.10861099,-3.6963515,0.022741826,-0.27249634,-0.326956,-0.18863359,-0.048614137,0.23261547,-0.5032269,-0.5596275,0.012409542,0.063714154,0.44878438,-0.046657786,0.18638285,-0.31744164,0.012248195,-0.36295986,0.1581227,0.019364376,0.39733568,0.071173295,-0.35219002,-0.07263144,-0.2515098,-0.61652946,0.10290216,-0.44659775,-0.41079235,-0.13475008,-0.5509223,-0.28142262,0.6715368,-0.46279588,-0.11686886,-0.14285041,-0.11197022,-0.23217049,0.3846858,0.3751776,0.07993157,0.062098905,0.01660626,-0.29757196,-0.31050056,0.19216236,0.102367096,0.35013574,0.41308576,-0.0018520906,0.15362443,0.52275246,0.58367467,0.11034428,0.5334998,0.27183402,-0.023744611,0.34358212,-0.50822854,-0.034467246,-0.5201161,-0.25376102,-0.2577282,-0.26624033,-0.50417006,-0.17659834,-0.34519672,-0.68330914,0.19921662,0.04268159,0.081159905,-0.023276385,0.072057314,0.36546168,-0.13376766,0.18771309,-0.04511334,-0.15982884,-0.46859643,-0.40079653,-0.5009937,-0.48533195,0.2764509,0.99726135,-0.16994482,-0.21616003,-0.16436094,-0.3919906,-0.08747926,0.04143658,0.06686321,0.32590136,0.24551392,-0.14223753,-0.6327123,0.3312693,-0.1070299,-0.12766753,-0.69811565,0.13190733,0.6114815,-0.6126288,0.6502844,0.0875796,0.180675,0.031028142,-0.4783502,-0.34878066,-0.01722813,-0.13844426,0.37126273,0.09697234,-0.5658923,0.37178108,0.26818264,-0.13469872,-0.5615621,0.39296645,-0.021737365,-0.36618295,0.08574056,0.25253212,0.07836402,-0.092250995,0.071022175,0.268061,-0.48772028,0.18016948,0.2496976,0.04883675,0.35085183,0.084289715,-0.09496788,-0.48206905,0.081597656,-0.3213967,-0.3611112,0.2202582,0.1309706,0.15456489,0.04039426,-0.1270595,0.29075745,-0.1278502,0.083309256,-0.04819358,-0.061876237,0.29462364,0.42084467,0.33150667,-0.50139433,0.4612885,-0.013640711,0.1975787,0.23131841,0.20464513,0.36855492,0.35323903,0.19655353,-0.11094462,-0.27156723,0.15341736,0.5887674,0.14596346,0.35421783,0.031046368,-0.12281629,0.41761252,0.09593666,0.11783986,-0.008597255,-0.2930011,0.010225324,-0.13005096,0.24207425,0.39937815,0.108661614,0.21596028,-0.010321475,-0.18479535,0.14154445,0.28408208,-0.06556906,-0.9461374,0.3390713,0.2968775,0.63499355,0.5501406,-0.02899561,0.05526871,0.5267846,-0.22623135,0.17468221,0.42096123,0.0578787,-0.6321497,0.59893775,-0.6247682,0.5918755,-0.14999436,-0.07674168,0.05698437,0.29779112,0.30718237,0.8757213,-0.07589232,-0.07927973,0.13858652,-0.35438633,0.024730159,-0.42183086,0.18990056,-0.57215345,-0.2991142,0.36290976,0.3634873,0.16443665,-0.36867985,-0.029938968,0.0008280369,-0.16961035,0.090073556,-0.006085694,-0.09020721,0.051962554,-0.62439835,-0.5137569,0.54754186,-0.21593396,0.09487137,0.10282454,-0.22492838,0.3468963,-0.23471092,-0.058713026,-0.06517637,-0.5465937,0.07828351,-0.26891437,-0.47305197,0.24735212,-0.30487883,0.3005298,0.22179733,-0.0018236866,-0.49085698,0.37061617,0.17799972,0.8053869,-0.22977774,-0.14787532,-0.40475973,0.048522856,0.24835514,-0.15430519,-0.24048415,-0.28574798,-0.1248378,-0.32102224,0.36011165,-0.014169324,-0.23603524,0.017134923,-0.13543354,0.013267821,0.3770168,-0.1208433,-0.07935039,-0.3013436,-0.19249216,-0.31240985,0.0612767,-0.33147228,0.4183539,0.05452925,-0.0006631842,0.086534604,-0.13153365,-0.11268464,0.24411613,-0.024736252,0.2718826,0.20592664,0.11515816,-0.25827175,-0.044395007,-0.09391807,0.4003185,0.27422735,-0.031600237,-0.14088625,-0.17630014,-0.2946447,0.28787243,-0.26837066,0.3000646,0.16761369,-0.6645248,0.6540556,-0.008321494,1.0093929,-0.024589868,-0.18783917,0.126499,0.42985928,0.2480167,0.08298084,-0.27219212,0.6561612,0.65395766,-0.024822744,-0.19681194,-0.1442628,-0.27841842,0.26694477,-0.20747529,-0.2691766,0.0064293053,-0.6150652,-0.15587163,0.06642041,0.06950521,0.30966246,0.07955496,-0.25212517,0.058983766,0.13488448,0.3585079,-0.20701121,-0.056083385,0.25095302,0.111333005,0.26344043,0.22229902,-0.35126045,0.43387902,-0.6027308,0.34109193,-0.30723593,0.19910192,-0.14288828,-0.12733954,0.096978195,0.03657565,0.3580101,-0.13299383,-0.24130553,-0.26331857,0.6632118,0.21041836,0.3894207,0.7999137,-0.18286672,0.013367231,0.082544915,0.4829739,1.0243853,-0.08897396,-0.123780265,0.32613137,-0.4313125,-0.60884696,0.21567973,-0.27583548,0.11591805,-0.039220765,-0.092250384,-0.26303193,0.24243182,0.082597815,0.14719023,-0.017296195,-0.5239312,-0.2861238,0.4353499,-0.24179038,-0.2920564,-0.45249063,0.32641503,0.69268066,-0.3617684,-0.21321605,0.18645485,0.18431138,-0.19935611,-0.3499125,0.07711477,-0.38369262,0.35971898,0.111034885,-0.28258863,-0.031066183,0.16815391,-0.3295583,0.15975857,0.14854066,-0.34905034,0.041299343,-0.111111194,-0.1504197,0.9223906,-0.03544758,0.015687564,-0.6475885,-0.45007923,-0.8518098,-0.23767583,0.5157988,0.020768883,-0.19478036,-0.5432354,-0.1767535,0.14126964,-0.21141146,-0.101251125,-0.51118064,0.4294232,0.03627736,0.17895328,0.02445689,-0.789733,0.08021101,0.10573197,-0.14890848,-0.6557254,0.5415983,-0.2997101,0.6570531,0.03181008,-0.071151264,0.28068465,-0.35680965,0.2526203,-0.43962306,-0.25423762,-0.44730398,0.20690249 -535,0.28974363,-0.43786776,-0.64213127,0.0054681934,-0.36915472,0.06286543,-0.28493205,0.3188917,0.26290622,-0.3875344,-0.20417021,-0.099599384,-0.117679335,0.19166829,-0.17073892,-0.39179298,-0.20832683,0.24738292,-0.761658,0.6349954,-0.27548409,0.29308996,0.19391966,0.39922774,0.15550335,0.15434116,0.15394837,0.12541641,-0.13039784,-0.116763115,-0.14394489,0.26003966,-0.7773592,-0.014614898,-0.46351945,-0.37789008,-0.0065100216,-0.58744305,-0.37363574,-0.956754,0.35718468,-1.1307992,0.73375076,-0.08156783,-0.12214569,0.11178311,0.39210823,0.37285408,-0.057617094,-0.07726734,0.19251025,-0.427675,-0.060173783,-0.35981175,-0.28965232,-0.34135476,-0.5145985,-0.0057997354,-0.6200071,-0.17366238,-0.21339433,0.25694585,-0.33924493,0.025287798,-0.42924607,0.382224,-0.32620475,0.066635095,0.3484119,-0.15059443,0.33879933,-0.6910505,0.06975298,-0.09424462,0.35565105,0.061938126,-0.10248422,0.43617213,0.3279883,0.5046268,0.14401977,-0.34692708,-0.21953852,-0.17453612,0.32314026,0.5008082,-0.17747246,-0.29695037,-0.18256998,0.22649772,0.5993965,0.68333155,0.074816495,0.041476388,0.04587716,-0.17754011,-0.005174806,0.7557575,0.6172593,-0.3796421,-0.47864294,0.12388588,0.7819064,0.34622577,-0.1746161,0.008072714,-0.10281073,-0.4670565,-0.17240125,0.3479115,-0.2552289,0.689353,-0.21342397,0.040171083,0.7323796,-0.14061448,-0.08434937,0.064450115,-0.0017482663,0.02932004,-0.2727305,-0.13653842,0.40865973,-0.7404845,0.22665322,-0.35949823,0.48984084,0.059496637,-0.71907157,0.25881776,-0.5702446,0.27638265,0.33848062,0.5852638,0.7132306,0.7469101,0.37059128,0.94009835,-0.33040237,0.046708267,-0.0069314935,-0.3433138,-0.1321588,-0.37460807,0.1489918,-0.42880812,0.16501907,-0.51670724,0.028426135,-0.060641598,0.40382156,-0.6388871,-0.22972874,0.18514399,0.8933718,-0.20421839,0.09703223,0.94225997,0.91893506,1.2323366,-0.05928487,1.2952794,0.1046679,-0.23418415,-0.035721224,-0.056225937,-0.7865966,0.22058988,0.47426522,-0.06571376,0.37227324,-0.1571322,0.054524645,0.1996109,-0.5596878,-0.071784794,-0.07754093,0.19218333,0.10258164,-0.15363508,-0.5304878,-0.02473844,-0.15363818,-0.023004541,0.041445892,0.2818166,-0.15177247,0.68408424,0.075683735,0.85944957,-0.36470532,0.109743364,0.27513131,0.46109596,0.2821109,-0.09572342,0.08986511,0.39169183,0.36278853,0.20103748,-0.57891446,0.07123899,-0.57046723,-0.26564565,-0.28032133,-0.4181049,-0.3190077,0.1672883,-0.32751492,-0.41558233,-0.24828397,-0.22685595,0.35600066,-2.6005895,-0.16838504,-0.28148916,0.32451436,-0.41316128,-0.2610829,0.15543354,-0.72152084,0.26759943,0.15776886,0.5763397,-0.4633919,0.38836512,0.6081161,-0.80060226,-0.00040451685,-0.7420742,-0.19106455,0.09636215,0.5875728,-0.00048492601,-0.10243026,-0.0015266935,-0.017464058,0.7223859,0.32822087,0.18458958,0.6823342,0.66820544,-0.078422494,0.49948063,-0.1701569,0.5596368,-0.5996868,-0.17918126,0.5943509,-0.26266775,0.5751813,-0.3999246,-0.017037123,0.77811486,-0.49010196,-0.71640635,-0.52182883,-0.25421745,1.2435087,-0.25227857,-0.79631025,0.019644046,-0.2199973,-0.023217387,-0.18216263,0.5937043,-0.013729672,0.23956217,-0.5881104,-0.10296649,-0.28156468,0.2809103,-0.05454427,-0.101411164,-0.3438021,0.7990787,0.0005702488,0.40961275,0.23380013,0.22074789,-0.31747195,-0.462581,0.011960391,0.7229659,0.5940942,0.007497015,-0.22814906,-0.18056566,-0.162979,-0.28165194,-0.14288272,0.76496285,0.577612,-0.2743,0.08858345,0.47209522,0.1811034,0.16639972,-0.21777289,-0.40186235,-0.38388,0.032953966,0.5923801,0.7426493,-0.17287183,0.40479288,-0.10793871,0.202698,-0.108513236,-0.58034325,0.61857265,0.7969119,-0.2860845,-0.09141356,0.7656141,0.59271485,-0.5233132,0.58653885,-0.64389473,-0.26451018,0.75109315,-0.3874778,-0.74535745,0.1798969,-0.30063966,0.088947214,-0.5743679,0.15018211,-0.6272239,-0.35130918,-0.56599444,0.037549753,-1.9711194,0.1954153,-0.3401005,0.08454636,-0.4971697,-0.27019405,0.15384822,-0.38734022,-0.8798733,0.21497719,0.28488693,0.66473645,-0.23263343,0.11171979,-0.2291245,-0.40693748,-0.21969666,0.4500599,0.33980152,0.15844718,-0.4599112,-0.3293015,-0.07715412,-0.029167116,-0.36479056,0.092422724,-0.6191154,-0.40610436,-0.16010426,-0.3835374,-0.0760796,0.5939037,-0.32534268,0.086025864,-0.22476132,0.08648836,0.048232753,-0.05242144,-0.018975342,0.57165474,0.25842717,-0.31860423,0.21025805,-0.19215412,0.56669587,0.0033548698,0.38668644,0.1995027,-0.08531544,0.27171347,0.22516663,0.88530225,-0.1879191,1.1587371,0.2670298,-0.13783334,0.37680855,-0.10178428,-0.5625333,-0.82528406,0.014214146,0.20031266,-0.4234551,-0.69401425,0.083072074,-0.35218778,-0.8145709,0.75480336,0.041842286,0.86307734,-0.065330476,0.576606,0.5560235,-0.4066621,-0.044778924,-0.09256539,-0.25214994,-0.4837052,-0.32426247,-0.75811523,-0.5462374,-0.11238297,0.8062158,-0.23064731,0.029431678,0.21948342,-0.23582093,0.114033096,0.24758823,0.04236861,0.10430806,0.5875885,0.21739535,-0.63067967,0.3465662,0.2989391,-0.021972215,-0.55246145,0.4377799,0.50804263,-0.64369553,0.63899446,0.4178939,-0.19871478,-0.3836197,-0.7143035,-0.016648298,-0.10546881,-0.29830503,0.55122524,0.42068172,-0.65847504,0.41227743,0.26428285,-0.40526745,-0.9698412,0.28288797,-0.080806725,-0.41635442,0.0069441744,0.4172198,0.088567115,-0.04614639,-0.17824632,0.20329313,-0.30977586,0.28061378,0.15627043,-0.22603114,-0.055560738,-0.17967361,-0.47417638,-0.8581045,0.39911494,-0.6216673,-0.20995729,0.6962736,-0.13181126,-0.2589573,0.27720362,0.28070742,0.45104477,-0.023243865,0.1991501,-0.034244508,-0.52307034,0.50721973,0.5145862,0.4418559,-0.6243265,0.6853177,0.18355708,-0.50321907,0.27631336,0.20262444,0.3491163,-0.12971576,0.4872655,0.10321194,-0.27834353,0.16688855,0.77099305,0.2642508,0.5104559,0.19888614,0.10498631,0.5285764,-0.08325764,0.28526124,-0.28543308,-0.79031307,0.032761704,-0.118873,-0.0986014,0.5906406,0.105154246,0.28911954,0.0011142939,-0.0025213335,-0.18046923,0.11397499,-0.012638737,-1.3114694,0.12248849,0.18831353,1.1888977,0.45831943,0.35380745,-0.14559014,0.7913397,-0.34646225,-0.08824899,0.69782287,0.09854925,-0.5149161,0.80147123,-0.62868005,0.449531,-0.10138605,-0.052978273,0.1075929,0.11610886,0.3262881,0.9251668,-0.21323685,-0.16276488,-0.21348332,-0.17986172,0.30082622,-0.32543647,0.14685458,-0.25811577,-0.52890843,0.67952204,0.29602215,0.46885267,-0.3243825,-0.004726795,-0.016077045,-0.2305518,0.3665458,0.13457245,0.10908162,0.028112188,-0.2121476,0.18445659,0.49188837,0.113368176,0.14440836,-0.23013283,-0.27296534,0.101875804,-0.2371196,-0.091333,-0.10404267,-0.9048489,0.052554276,-0.42103776,-0.8871905,0.37151837,0.029806614,-0.07560875,0.2115798,0.025703616,-0.15550835,0.2351054,-0.10377586,0.7000664,-0.10321935,-0.15992284,-0.40203723,0.31253436,0.108414344,-0.24694173,0.42704698,0.07352037,0.27160707,-0.42062917,0.6042539,-0.26276416,-0.6024162,-0.033864077,-0.24926142,-0.28334585,0.7020337,-0.04418218,-0.11987088,0.015054042,-0.3341999,-0.5352189,-0.4999145,-0.1104685,0.14974599,0.23938413,0.012123828,-0.3268012,-0.16774939,-0.1700372,0.6642042,0.072550215,0.37921643,0.22992541,-0.035923433,-0.53294826,0.18648934,0.13584137,0.6041593,0.109290354,0.013494733,-0.2696984,-0.60999286,-0.38761532,0.4719511,0.02885962,0.37592432,-0.02717603,-0.097538024,1.1593335,-0.088668466,1.1161007,0.007810369,-0.31172928,-0.025462756,0.5931467,-0.16610599,-0.17934386,-0.5346028,0.90277857,0.51951855,0.032888252,0.1353875,-0.35790992,0.24839528,0.077967755,-0.32572684,-0.08799293,-0.011472236,-0.44881988,-0.34282187,0.18818569,0.33429834,0.31925392,-0.28522503,-0.06678758,0.36476746,0.042733908,0.3482157,-0.4726695,-0.7431925,0.41479635,0.10866346,-0.20218986,0.110640585,-0.39129272,0.32381627,-0.69859713,0.041376248,-0.51907456,0.04747656,-0.1545061,-0.4107778,0.1819808,-0.2519993,0.37227735,-0.4424442,-0.45598876,0.0058964514,0.2747902,0.26529258,0.12462645,0.5338704,-0.22968946,0.01180917,0.18792196,0.5962386,1.127682,-0.39448872,-0.10604302,-0.013604519,-0.6018027,-0.7221415,0.5360213,-0.48687768,0.06946382,0.038010333,-0.3593423,-0.32859668,0.09022268,0.09406135,0.051121917,-0.22020958,-0.8438864,-0.303508,0.2792116,-0.39589342,-0.07629528,-0.3077302,0.2876743,0.78202724,-0.045491133,-0.43040118,0.06261023,0.2527226,-0.35163307,-0.5565599,0.042642605,-0.24837027,0.16317774,-0.12084544,-0.4812627,0.062370364,0.18427129,-0.70703393,0.038565334,0.23694944,-0.3713342,-0.0956319,-0.30013525,0.10496905,0.8356343,-0.5625878,-0.2821806,-0.16065641,-0.6027782,-0.9032793,-0.26409557,0.05493185,0.13505785,0.08397177,-0.72547215,0.0017538866,-0.4835659,-0.098237,0.15213759,-0.45703176,0.40388575,0.08897393,0.5819741,-0.4054273,-0.8542967,0.34262824,0.12234748,0.12293301,-0.4876937,0.5604474,-0.07414506,0.80060536,-0.022768294,0.04149406,0.09212976,-0.79855686,0.07914802,-0.22401597,-0.107211,-0.86622065,0.081097536 -536,0.76107115,-0.33354887,-0.6878814,-0.25452816,0.0043636216,0.061218195,-0.3302631,0.8232317,0.36436856,-0.4662754,-0.3061758,0.03907133,-0.042215984,0.62280107,-0.2581543,-0.75841445,0.15727416,0.21948063,-0.39896402,0.48067442,-0.45183268,0.27424437,-0.16797063,0.6385861,0.16299847,0.21131417,0.12721296,0.046425402,-0.011177635,-0.2608758,0.04838066,0.35665274,-0.531115,0.13551936,-0.17568554,-0.4349026,0.025590574,-0.49319673,-0.30447993,-0.88811433,0.30808347,-1.0481827,0.84242535,0.0583152,-0.30615482,0.13830428,0.10470903,0.101464294,-0.26697105,0.06298722,0.07324226,-0.07249192,-0.07477914,-0.2859618,-0.26614136,-0.7520963,-0.47823173,-0.062955186,-0.32651058,0.038876675,-0.34956545,0.124001145,-0.34143656,0.049589496,-0.12360398,0.33035713,-0.5364504,0.03829226,0.11501509,-0.17043371,0.026695762,-0.7160897,-0.29178184,-0.15600617,0.22688088,-0.07324906,-0.28535706,0.13258441,0.34416825,0.55067414,0.023281792,-0.24951248,-0.28912959,-0.04470015,-0.19543484,0.49356842,-0.44594917,-0.64348996,-0.22078443,-0.14344418,0.56029886,0.17340544,0.3094582,0.021491861,0.18077321,0.16440812,-0.35131636,0.5991965,0.63011134,-0.44040775,-0.063975275,0.2871391,0.269671,0.4381064,-0.20844486,-0.06697458,-0.00010195039,-0.5405618,-0.25667766,-0.16128683,-0.3263805,0.702354,-0.06946546,0.2806061,0.61038077,-0.10804232,0.037742157,0.26886225,0.26498747,-0.11974915,-0.25498864,-0.5219434,0.3198513,-0.48108858,0.25426108,-0.335541,0.87099046,0.22280276,-0.40746206,0.291326,-0.50453675,0.019934729,-0.24285977,0.44926682,0.6229442,0.56107783,0.19604044,0.6299086,-0.46283206,0.027663594,0.06828056,-0.19644889,0.22756943,-0.28343195,-0.024998346,-0.416642,0.374948,0.04745242,-0.053753734,0.265599,0.82883036,-0.44700733,-0.3019634,0.3409379,0.9972084,-0.33464226,-0.03504865,0.8648211,1.2064121,1.0059295,-0.045864914,1.243735,0.32672006,-0.2282494,-0.04305157,0.15046509,-0.8765324,0.41638032,0.45356828,-0.5874554,0.45351687,0.19167952,-0.19541505,0.5205971,-0.41202703,-0.3403534,-0.16031143,0.3003194,0.039209895,-0.19341554,-0.71802247,-0.1398088,-0.031900357,-0.061023116,0.3506616,0.34142983,-0.23127356,0.30168867,-0.13754562,1.1517813,-0.2272801,-0.037717454,0.02394698,0.70013744,0.29107812,-0.04517481,0.38629627,0.042595237,0.5642801,0.0726527,-0.70378363,0.21703184,-0.3264979,-0.51073015,-0.11001159,-0.3724157,-0.037574865,0.17619045,-0.52581865,-0.31118608,-0.110335864,0.13539279,0.15710986,-2.2011828,-0.18227808,-0.15521458,0.54517156,-0.2174205,-0.38004476,-0.13414271,-0.40837446,0.5482746,0.25563842,0.51681584,-0.6105675,0.4675506,0.44637638,-0.54876566,-0.0625054,-0.7225623,-0.08235377,-0.16307874,0.39555678,0.14147356,-0.25817862,0.16511779,0.09013806,0.7557828,0.19834426,0.31578547,0.3288295,0.61881196,-0.29279202,0.27164418,-0.19827786,0.7391446,-0.3509359,-0.22836447,0.30417198,-0.4805495,0.14168124,-0.46540552,0.22636211,0.52144676,-0.57834613,-1.1274776,-0.6395138,0.23437342,1.3231552,-0.1279957,-0.6905333,0.15777494,-0.23534298,-0.3376526,0.03589834,0.53219485,-0.2292699,-0.1551706,-0.8211651,-0.06958101,-0.19518504,0.02879783,-0.013614145,0.13659194,-0.36960858,0.68601054,0.023625914,0.48145208,0.09358826,0.32495227,-0.1510875,-0.48285574,0.009481487,0.82517165,0.54841363,0.17328921,-0.20749989,-0.17171887,-0.26082486,0.026597396,0.11545249,0.8257141,0.7088741,-0.13421886,0.044113494,0.15039071,0.15431046,0.20959921,-0.08896743,-0.5516224,-0.31944138,0.10838944,0.65054494,0.6279726,-0.3209692,0.14258851,-0.1100831,0.43199334,-0.33875102,-0.3493195,0.56507224,1.2488817,-0.42327124,-0.20241506,0.86407566,0.35659337,-0.43878046,0.5756332,-0.86346817,-0.5101024,0.36015952,-0.0460855,-0.34649295,0.04760475,-0.3380536,0.1735132,-1.003236,0.38453954,-0.49666348,-0.44088715,-0.49972385,-0.22702244,-3.6957119,0.26078492,-0.28197774,-0.13634655,-0.44448757,-0.30150804,0.45344287,-0.7263861,-0.7104238,0.16352043,-0.015445677,0.7324864,-0.14644569,0.14468685,-0.30732673,-0.44311935,-0.23792624,0.052220292,0.12932728,0.46109754,0.077161,-0.49655432,0.11756353,-0.023069937,-0.351383,0.061868764,-0.7828541,-0.3921109,-0.13751571,-0.6209365,-0.13781531,0.6919366,-0.26381117,0.010760257,-0.3692044,0.26551536,-0.5370556,0.35102007,-0.22867303,0.14596407,-0.07163367,-0.23937015,0.3086532,-0.25036603,0.40265623,0.08898175,0.41364416,0.26441392,-0.32932058,-0.16845435,0.5894524,0.6160768,-0.07499508,0.99458426,0.52525395,-0.058457177,0.43192416,-0.16729233,-0.3499663,-0.4918375,-0.47798938,-0.024776183,-0.5280254,-0.389141,0.041383795,-0.52626723,-1.0200789,0.5156878,-0.06973629,0.4971025,-0.016152669,0.23193395,0.6190909,-0.15089394,-0.10577662,0.04221902,-0.08079006,-0.54800934,-0.10216445,-0.62957394,-0.39054865,0.014983076,0.7607673,-0.18022144,-0.007841313,0.19691172,-0.14996548,0.12418165,0.12664992,0.014516002,-0.25118724,0.61362666,-0.05809685,-0.85180223,0.397092,-0.28472415,-0.14041206,-0.6325384,0.2746243,0.48453036,-0.7522296,0.69172144,0.65025914,0.06718791,-0.19690295,-0.6646942,-0.3430817,0.056385987,-0.07314896,0.35810146,0.23240311,-1.1132221,0.42300463,0.51208264,-0.43110055,-0.5295738,0.69212395,-0.077261545,-0.21828754,-0.17477489,0.50372607,0.15225784,0.0052844523,-0.16012457,0.28611404,-0.5568978,0.54376346,-0.01941717,-0.06470199,0.3520357,-0.07712868,-0.047408655,-0.84291077,-0.00977386,-0.6819855,-0.3315422,0.35118464,-0.027084216,0.24204655,0.031993292,0.252796,0.3941078,-0.5558108,0.21926601,-0.24636261,-0.47198382,0.5228762,0.5479879,0.641657,-0.39166126,0.62782556,0.16127424,-0.28429803,0.32461375,0.2657841,0.44978252,0.08553614,0.5517651,0.06104193,-0.105569504,0.13246484,0.89182776,0.2210784,0.43475938,0.11985467,-0.11618004,0.34372798,0.19119683,0.041043967,0.05138098,-0.5205325,-0.23820587,-0.26489657,0.09307994,0.7076658,0.19632569,0.29458532,-0.039429985,-0.1924413,0.006311202,0.07243003,0.13549203,-1.4000612,0.34711814,0.08716114,0.8372998,0.27481657,-0.004775393,-0.13687015,0.5328943,0.04382139,0.036748875,0.39833325,0.021877874,-0.44730163,0.657668,-0.42496553,0.22773671,-0.22705793,0.06743524,0.00873515,0.16493931,0.38216943,0.89543074,-0.031172097,0.11048603,0.09222296,-0.38110894,0.09235612,-0.5534919,-0.06793509,-0.5562042,-0.098782256,0.6949595,0.58834195,0.41757688,-0.4105513,0.013672042,0.08142565,-0.049196135,0.1161958,0.044099636,0.13524568,-0.12811033,-0.89257944,-0.016553547,0.6263242,0.16942212,0.15479906,-0.04793928,-0.3817929,0.39158133,-0.1786246,0.07445023,0.08082893,-0.71326816,-0.15560913,-0.5544112,-0.56266916,0.43003696,0.120294645,0.10898368,0.22256951,0.13784409,-0.14247201,0.052193295,-0.124595165,0.73328316,-0.13775012,-0.3924558,-0.6964018,0.06791736,0.2340425,-0.35735354,0.018874586,-0.3357772,-0.017594362,-0.3562084,0.40079445,-0.039268147,-0.112666905,0.083953835,-0.13483328,0.07978262,0.51136047,-0.2968301,-0.07491088,0.14401838,-0.12283883,-0.46324173,-0.40087795,-0.21405277,0.29649252,0.15934888,0.06083698,-0.31339258,-0.2217947,-0.07411294,0.3916299,-0.0043887035,0.2852305,0.69831693,0.2604316,-0.05403299,-0.13391913,0.37317905,0.7254583,-0.08861059,-0.3418988,-0.43987423,-0.77054876,-0.43157583,0.15028316,-0.1079849,0.32237613,0.1903816,-0.14113069,0.67287105,0.10614057,0.9962284,0.019379342,-0.48260736,0.018503105,0.7370756,-0.0929242,-0.10255227,-0.4808529,1.1825413,0.56080973,-0.1353104,0.020163335,-0.4497335,-0.059444536,0.24522085,-0.33925933,-0.22783999,-0.20770828,-0.87100714,-0.26444104,0.23769519,0.3868738,0.20805533,-0.015735906,0.35609922,0.44679037,0.28226763,0.35976738,-0.78514135,-0.41292697,0.29206362,0.28619486,-0.08870681,0.21210656,-0.43588978,0.13057463,-0.5850906,-0.1371415,-0.47849727,0.24617608,-0.17862919,-0.55649203,0.29474768,-0.12621717,0.34497645,-0.4706233,-0.33927137,-0.0876385,0.37309995,-0.010974282,0.13643956,0.42646867,-0.30353186,-0.022094551,0.11468472,0.73179924,1.0603579,-0.061592102,0.2656073,0.41938406,-0.5490657,-0.9115345,0.18885782,-0.22855778,0.3029531,-0.1219453,-0.17404456,-0.69487435,0.4142068,0.1522939,-0.09612067,0.13181055,-0.58719933,-0.16824222,0.23405898,-0.14547619,-0.23051906,-0.24287276,0.087376855,0.62411183,-0.37498024,-0.24312058,0.08211042,0.508157,0.013663804,-0.7603016,-0.08967814,-0.55541545,0.4920053,0.1212009,-0.37896657,-0.27647287,-0.26133233,-0.53165543,0.4076189,0.22633728,-0.3588973,0.19075216,-0.58899534,0.09721885,0.75802964,-0.20283797,0.23945908,-0.7038445,-0.5633706,-0.9378582,-0.4831645,0.35527217,0.29579014,0.06603722,-0.76139647,0.18189995,-0.0050913664,-0.16234276,-0.24091025,-0.29020727,0.40627307,0.011122468,0.5236806,-0.06552081,-0.7427475,0.18599558,0.1184745,-0.29442316,-0.5038971,0.50410306,-0.19810739,1.1512175,-0.012286427,0.14129779,0.077940024,-0.61522305,-0.14777678,-0.23170403,-0.21209475,-0.86231315,0.17823504 -537,0.25146565,-0.36239854,-0.46195096,-0.17846766,-0.030383293,-0.038663693,-0.14251819,0.60467017,0.08071542,-0.55977243,-0.29627043,-0.23407285,0.066041134,0.5829401,-0.19931321,-0.4372336,-0.08424716,0.036948893,-0.46307644,0.43159837,-0.46095222,0.21861713,0.17253987,0.37726778,0.23958106,0.25667542,0.35697597,0.17047718,0.20813587,-0.2859998,-0.30024034,-0.14760461,-0.33646128,0.054200433,-0.027144387,-0.71718293,-0.1734325,-0.4854104,-0.22499737,-0.5637577,0.49921948,-1.1099613,0.45546237,0.015346269,-0.16491331,0.16454454,0.3034156,0.38559538,-0.0378892,-0.031251557,0.09656974,0.11370997,0.22648223,0.049811803,-0.20767908,-0.6719302,-0.607261,-0.006629196,-0.3630274,-0.38002688,-0.031628285,0.114696644,-0.41344985,0.2723577,-0.02605618,0.30011505,-0.3764512,-0.3970302,0.34434038,-0.26757368,0.5623962,-0.68408227,-0.17326185,-0.13325848,0.05226478,-0.17401382,-0.16875824,0.0366466,0.31785268,0.47127628,-0.19306785,0.024639254,-0.1683627,-0.22315283,0.0039616586,0.53784484,-0.11389546,-0.44393507,-0.17793298,0.09860934,0.23374113,0.27292278,0.36928526,-0.23672815,-0.021434875,-0.05565951,-0.48663402,0.2978006,0.45024213,-0.38383925,-0.2094402,0.325099,0.69800746,0.16371588,-0.1774627,0.16328962,0.11864607,-0.40190515,-0.16346039,-0.13461745,-0.13192126,0.74220717,-0.20137219,0.50364596,0.47221413,-0.14475393,0.29181308,-0.13719226,-0.11439254,-0.56266844,-0.088630185,-0.30495346,0.15950361,-0.54049,0.13224006,-0.15436341,0.68119097,0.18972512,-0.6210319,0.41559115,-0.4491225,0.15006527,-0.20722468,0.41996813,0.6493941,0.15628079,0.15296581,0.632965,-0.3659001,-0.03181108,-0.3245522,-0.18209164,0.10554123,-0.10517621,0.04810431,-0.5896927,-0.008960945,0.40967494,0.012899597,-0.05722496,0.59813035,-0.54094684,-0.030906623,0.184329,0.8332197,-0.26030633,-0.1530753,0.7897295,1.1822182,0.9764759,0.19803278,0.95892274,0.15985918,-0.21533923,0.061662674,0.010924434,-0.70094544,0.17120898,0.5150702,0.2160147,0.5223998,0.09066653,0.14176263,0.54494536,-0.38419345,0.3169902,-0.15465288,0.25976148,0.073010944,-0.100018665,-0.32513303,-0.066341646,0.06294809,0.08663825,0.027362537,0.27235827,-0.083625935,0.5492647,0.11738205,1.6098287,-0.22932334,0.16196625,0.028331721,0.44042388,0.08241896,-0.40713596,0.11875558,-0.09945594,0.6318799,0.00047674478,-0.5615265,0.08124201,-0.052179825,-0.5593338,-0.2508977,-0.26402816,0.08153734,-0.09460066,-0.4242534,-0.18437462,-0.16299477,-0.22523698,0.25812417,-3.0541427,-0.22008014,-0.36111024,0.2682073,-0.31470677,-0.34892654,-0.07668745,-0.45646495,0.5008044,0.6099874,0.3032151,-0.7582136,0.43905106,0.28174287,-0.31623527,-0.012971786,-0.6819671,0.11633494,-0.15565397,0.3746521,-0.004777658,-0.093678616,0.09545787,0.41635942,0.4022603,0.043399468,0.2588596,0.1680002,0.34392446,0.09070216,0.42480263,-0.12445531,0.47148308,-0.16749242,-0.10267912,0.27506557,-0.23630437,0.057430785,-0.36618072,0.25923425,0.3277903,-0.43718886,-0.66205525,-0.7080142,-0.37738746,1.1897832,-0.32453924,-0.50519043,0.20983887,-0.2777659,-0.27111688,-0.12392092,0.5380029,-0.26526585,-0.10016801,-0.8172328,0.08877921,-0.26912856,0.1377155,-0.060359783,-0.32956594,-0.4909719,0.6870039,-0.087008275,0.43054813,0.4218976,0.16767006,-0.24018745,-0.32327288,0.049709253,1.0030338,0.52499044,0.07412461,-0.20601669,-0.08097871,-0.6124064,-0.19578381,0.32838738,0.4497052,0.8770156,0.05616992,0.23105642,0.24465004,0.0650012,0.0025896549,0.0014468462,-0.25802687,-0.0038978006,0.075740784,0.7061713,0.31781274,-0.101489164,0.51368177,-0.19863081,0.1573227,-0.30687958,-0.5023764,0.5060366,0.6360158,-0.0821475,-0.2536915,0.6462416,0.5854733,-0.18799944,0.43528676,-0.6599348,-0.314481,0.3737895,-0.02372005,-0.3472527,0.20387907,-0.42144394,0.2452313,-1.0558549,0.11604321,-0.2641372,-0.5077899,-0.67449147,-0.29413858,-3.6810029,0.24186301,-0.045708794,-0.38862675,-0.033386398,-0.4845708,0.42744023,-0.60769576,-0.76995873,0.29024988,-0.022613788,0.6906186,0.035256676,0.035009008,-0.20564842,0.026508782,-0.32213774,0.0021779598,0.010449916,0.29175797,0.15339115,-0.42168155,-0.09352004,-0.13852815,-0.4669262,0.096406356,-0.5456158,-0.5343258,-0.3078894,-0.4429717,-0.30043173,0.59080845,-0.24727666,0.027278492,-0.23654528,-0.16640729,-0.21570782,0.4231971,-0.0021898418,-0.016026502,-0.05004553,0.059437342,0.086974606,-0.29156655,0.0702867,0.13395925,0.24956533,0.25277615,-0.20853579,0.29060578,0.53533983,0.65141165,0.02607106,0.6429986,0.5553969,-0.015204499,0.25329894,-0.19566508,-0.048588417,-0.31867254,-0.2982521,0.0023973763,-0.4900961,-0.7084067,-0.23453279,-0.20380493,-0.7404719,0.40862298,0.10799199,0.27756304,0.1889734,0.2721776,0.3387161,0.10035913,-0.017762896,-0.16833699,-0.114141144,-0.726946,-0.3803521,-0.68072724,-0.35748744,0.28378028,0.9569088,-0.1333141,-0.057980895,-0.01836977,-0.2053746,0.09231975,0.12983456,0.014093732,0.09742623,0.22504883,-0.22058907,-0.75415576,0.37873903,-0.17092246,-0.21587129,-0.6526051,0.043790765,0.45885658,-0.609529,0.29001933,0.16693126,0.12675422,-0.28252262,-0.39151436,-0.13737163,-0.04793901,-0.43186814,0.2999757,0.19431607,-0.7086452,0.4594244,0.30452102,-0.0070779147,-0.6755818,0.548213,-0.04621318,0.021126425,-0.22816613,0.14291403,0.16925508,0.13764688,-0.19976917,0.045249242,-0.40091118,0.17655928,0.26914915,0.084024236,0.57173884,-0.17064103,0.060973454,-0.49057484,0.15102243,-0.596001,0.013570631,0.061663527,0.045418065,0.27627704,0.3714901,-0.1205284,0.26659966,-0.36558825,0.212751,0.02940548,-0.21026659,0.19994621,0.36015505,0.14652462,-0.4771615,0.7069659,0.12805484,-0.0050783753,-0.2908144,-0.04486268,0.3694432,0.36612505,0.19531626,-0.0800946,-0.3177886,0.22674341,0.92455447,0.22564058,0.29654917,0.034609426,0.1073875,0.15278979,0.0769481,0.038303513,0.19982278,-0.5264274,-0.10808619,-0.26596937,0.092132896,0.47617406,0.17438999,0.46398455,0.010688079,-0.44045967,0.05279116,0.0826319,-0.19128682,-1.2302033,0.31819692,0.21581419,0.66851056,0.6567126,-0.10798297,0.028066855,0.46024346,-0.3640132,0.24032016,0.25778276,0.10192846,-0.4716088,0.5480753,-0.75848776,0.493308,-0.019654462,-0.054971587,-0.20923634,-0.02314666,0.40733385,0.80473155,-0.14659278,0.2051394,0.0524307,-0.19726494,0.087720715,-0.36915112,-0.2278914,-0.65865177,-0.1927174,0.7494503,0.2806104,0.43973747,-0.020316636,-0.071292005,0.09419592,-0.001557681,-0.072523125,-0.08344648,0.20953634,-0.19854863,-0.58968216,-0.35944614,0.5180296,0.23056214,0.17555487,0.13632715,-0.55525845,0.19976725,0.053011365,-0.11703117,0.09470331,-0.7692485,0.02106909,-0.21449736,-0.37149283,0.47899145,-0.38023692,0.29712147,0.18092579,0.025171164,0.07265536,0.09985517,0.11690112,0.68000954,-0.07209325,-0.10040627,-0.41472167,0.043143004,0.10909231,-0.18103197,-0.17036077,-0.3280405,0.06720707,-0.6371404,0.49101108,0.15419355,-0.22132988,0.3317132,-0.13214473,0.06377424,0.4720746,-0.163684,0.16079195,0.34600535,-0.2706767,-0.075044826,-0.23981848,-0.1900035,0.41549674,-0.17927521,0.13606687,0.08313281,0.013730327,-0.19115594,0.26006573,0.14765489,0.34857607,0.41830772,0.019830292,-0.38829094,-0.20123956,-0.088417515,0.3442195,-0.06535942,-0.27372947,-0.20581654,-0.7011366,-0.33602294,0.2138646,0.014942378,0.37424374,0.036925543,-0.08403344,0.52530587,0.18145624,1.0500834,0.01296849,-0.5281436,-0.052318476,0.42800212,-0.036613256,-0.12926188,-0.19019283,0.7113983,0.43092126,0.014468759,-0.13731341,-0.31790385,-0.138254,0.41510803,-0.09619165,-0.27930713,-0.054992937,-0.6185856,-0.3846688,0.19084981,0.26594394,0.11475314,-0.0014808982,0.43198252,0.19907334,-0.17651248,0.46003932,-0.52178836,-0.12001421,0.3770507,0.17854603,-0.009352893,0.0003406167,-0.39072633,0.3019372,-0.621173,-0.12554218,-0.33900762,0.14303368,0.06258216,-0.35945314,0.22727661,0.06794651,0.41208172,-0.2569406,-0.35723227,-0.1113631,0.6339697,0.039190307,0.2656964,0.47666678,-0.21335849,0.15029716,-0.0782964,0.4468503,1.1928475,-0.17043826,0.11126516,0.3616547,-0.36212796,-0.7341191,0.38705525,-0.23974738,0.37413326,0.11592597,-0.2201829,-0.5388762,0.4618104,0.35150686,-0.22980814,0.23647055,-0.30715448,-0.50497496,0.22698197,-0.31993353,-0.32340586,-0.4768513,0.04428351,0.43668857,-0.2640402,-0.1001639,0.03839059,0.5078451,-0.17363098,-0.49738225,-0.16818154,-0.10475986,0.356692,0.16838457,-0.26837784,-0.09580114,0.19244345,-0.31477657,0.16188869,0.03253244,-0.29172903,0.10256374,-0.42495552,-0.15615645,1.0134465,-0.1547524,-0.14616272,-0.6636546,-0.42484665,-0.5164844,-0.56602585,0.4971016,0.10549915,-0.035481397,-0.49427122,0.010575402,-0.026489545,0.12617418,-0.052016426,-0.1197175,0.5438965,0.06704782,0.5613714,0.1666486,-0.49223357,0.055591308,0.028340992,0.025434593,-0.43259087,0.7088851,0.019461792,0.7887747,0.15545525,0.07288001,0.14524925,-0.46404523,0.1705465,-0.15683095,-0.23857732,-0.7843734,0.21565488 -538,0.6090177,0.04098755,-0.5328307,-0.09267609,-0.12561153,0.08774397,-0.17231122,0.3071688,0.18407795,-0.5368694,-0.4277728,0.022478415,-0.17226832,0.21504182,-0.39114574,-0.80301285,0.1027402,0.21564351,-0.23187762,0.78869176,-0.29621822,0.4412103,-0.0996685,0.23374394,0.12166689,0.13208903,0.29642585,0.07120249,-0.15165043,-0.28285056,-0.118856356,0.34274772,-0.3980869,0.2920903,-0.20012563,-0.23405248,0.023252575,-0.20016098,-0.4139408,-0.8773858,0.25888225,-0.72289175,0.6912936,0.015436358,-0.53184307,-0.12301069,0.19653445,-0.06720707,-0.15923318,0.099943176,0.11450582,-0.2551193,-0.057276662,-0.32154402,-0.40263745,-0.5027727,-0.5070629,0.011471446,-0.37593862,0.10400575,-0.45080784,0.29681233,-0.41654396,-0.18334082,-0.062410172,0.3734472,-0.3829404,-0.027469039,0.10622215,-0.12748367,0.3336349,-0.88762176,-0.3115536,-0.1633574,0.111263126,-0.033584952,-0.16567567,0.39995936,0.21046686,0.67618304,0.01935072,-0.18769082,-0.21204267,-0.18229792,0.085475735,0.5418525,-0.5196203,-0.6244679,-0.21233581,-0.1798837,0.48839536,0.30106682,0.08161934,-0.26656044,0.058528386,-0.29221854,-0.10946748,0.30929154,0.7724275,-0.35047156,0.17113993,0.19139999,0.3445397,0.14291164,-0.1194784,0.054902654,-0.18252578,-0.62432545,-0.38839525,-0.21451943,-0.1476948,0.645806,-0.09656766,0.14834884,0.47233555,-0.09021755,0.21127741,0.33755222,-0.017688064,0.19928163,-0.1445434,-0.2944331,0.25412935,-0.3129279,0.22007996,-0.3743423,0.6399652,0.092733435,-0.61402076,0.31754526,-0.41288787,0.24065281,0.07691837,0.7749969,0.69561744,0.63035935,0.27273905,0.8280305,-0.5552982,-0.0960697,0.23606454,-0.08512707,0.08300451,-0.09220926,-0.21280447,-0.48275054,0.11876961,-0.096717276,-0.11398884,0.10952166,0.5698588,-0.51543576,-0.22285363,0.07406927,0.81751883,-0.274296,0.18303499,0.6649734,1.1028104,0.98216176,-0.19223438,1.3672028,0.24307753,-0.10272991,-0.38773364,0.11664534,-0.7656755,0.2531265,0.45373026,-0.23198754,0.32505116,0.20360002,-0.12693521,0.45643404,-0.65361226,-0.29852885,-0.14750917,0.4360533,-0.111795664,-0.19986698,-0.6595426,0.06801079,0.0874888,0.109563045,0.06943972,0.489411,-0.29196465,0.51172745,0.068498224,1.2304479,-0.1768782,0.11449519,0.18596688,0.4037134,0.27240354,-0.047418978,0.149626,0.12930076,0.22834888,-0.008661187,-0.42415088,-0.061055284,-0.24945384,-0.5169665,-0.19297232,-0.21868055,-0.16562748,0.01753857,-0.29400456,-0.30680335,-0.10545325,-0.44164672,0.29356462,-2.399343,-0.00022746279,-0.07519801,0.30066398,-0.24211396,-0.34407762,-0.16280852,-0.33821118,0.69206303,0.34210613,0.42357937,-0.7183847,0.27989465,0.75702405,-0.46200264,-0.016080031,-0.694642,-0.098872915,-0.106302366,0.6282655,0.27125221,-0.22774747,-0.040025588,0.26125497,0.63970596,0.27290475,0.16520081,0.22067226,0.38380578,-0.35863787,0.2582061,-0.09512811,0.4633498,-0.26284537,-0.15936361,0.49735647,-0.3046838,0.26974308,-0.30740264,0.10667764,0.40262794,-0.5792417,-0.63761014,-0.76095015,-0.23258089,1.190738,-0.020746391,-0.75275266,0.30258787,-0.44087675,-0.35710156,0.010474508,0.67137057,-0.30407172,0.1270282,-0.8000789,0.014607819,-0.21441418,0.16106217,-0.0520459,-0.036737587,-0.68907547,0.93568045,-0.14240462,0.4236002,0.42088747,0.24604405,-0.26323992,-0.5780572,-0.010108124,1.0230292,0.80418193,0.191622,-0.31699535,-0.026105693,-0.25469473,0.012207678,-0.04895733,0.963539,0.63015527,-0.1071362,-0.07954432,0.27654016,-0.059279736,-0.021637525,-0.24789111,-0.34316924,-0.122542344,0.16496475,0.75795066,0.7310994,-0.30685753,0.19112413,-0.16302244,0.374618,-0.42715532,-0.42064968,0.38749272,1.0433737,-0.20282911,-0.17064136,0.97987694,0.57004535,-0.25717786,0.6184139,-0.68839705,-0.5965753,0.41417167,-0.20220588,-0.5935992,0.22910985,-0.4645486,0.118876114,-0.78960145,0.36998522,-0.43292838,-0.5261097,-0.596637,-0.10882894,-2.5159247,0.31082428,-0.36131018,-0.07955663,-0.27196217,-0.118940905,0.42726606,-0.5627614,-0.57261777,0.20986709,0.09427807,0.46710762,-0.07601108,0.0339997,-0.17370392,-0.47676325,-0.1373484,0.16974324,0.16679026,0.2533033,-0.10250913,-0.4878008,-0.1404573,-0.10617456,-0.29247332,-0.048292764,-0.60279006,-0.5287531,-0.12179898,-0.23667619,0.0039622504,0.54714805,-0.4116929,0.09725277,-0.40991578,0.07777619,-0.16459414,0.044076502,-0.008925681,0.41580835,-0.20941386,-0.3037028,0.07054611,-0.24734071,0.39785093,0.110632695,0.3646457,0.50294673,-0.34037,-0.092080705,0.3807389,0.6386284,-0.10294919,1.1170131,0.5506721,-0.06572443,0.34464008,-0.08456484,-0.6301545,-0.6707936,-0.37210506,0.17389861,-0.48529595,-0.25730193,-0.13912684,-0.53521883,-0.89588153,0.59918493,-0.00036483773,0.2802749,-0.112935595,0.2338909,0.46503168,-0.3546949,-0.16464688,0.055700462,-0.21950558,-0.49878305,-0.2830211,-0.68259627,-0.44288862,-0.03690848,0.95561993,-0.0923008,0.09889205,0.17615971,-0.1644937,0.0497416,0.052412704,0.12771852,-0.11807353,0.2955764,0.050951835,-0.7652625,0.4549742,0.11338019,-0.20586099,-0.5527867,0.22258799,0.79884326,-0.5322174,0.5816555,0.3619558,0.0031363093,-0.3094712,-0.90113574,-0.095091835,-0.10061695,-0.2983657,0.5652667,0.2796667,-0.80281126,0.4241493,0.35872915,-0.12418978,-0.6795522,0.518916,-0.11173531,-0.63573045,0.0894666,0.42281517,-0.13148102,-0.11888708,-0.08783269,0.42331997,-0.2557526,0.4192793,0.088726684,-0.006068569,0.24133411,-0.23795924,-0.19129366,-0.96510416,0.032060605,-0.7574272,-0.28173172,0.24274302,0.082597174,-0.2238494,-0.0076749693,0.08891744,0.57601196,-0.4199127,0.37310168,-0.24800764,-0.4253405,0.50064087,0.50115544,0.48932618,-0.2782257,0.7774344,0.12822741,0.020046206,-0.32268095,0.23929907,0.4680814,-0.047401153,0.5226153,-0.35995796,0.006294209,0.23276573,0.7279943,0.19977877,0.333729,0.18569528,-0.103244424,0.30393597,0.07523486,0.16616961,-0.06509424,-0.54166055,-0.12349444,-0.22424287,0.034153495,0.45165315,0.16585511,0.4370411,-0.21137282,-0.2861985,0.09129473,0.22497389,0.18346885,-1.2639658,0.2849642,0.02817579,0.81258667,0.6049834,0.13788773,-0.042496268,0.5709247,-0.047318097,-0.0022262563,0.5257145,0.009971802,-0.27519143,0.4242795,-0.4646116,0.19819432,-0.031719003,0.16707054,-0.00017404786,-0.06357733,0.44594288,0.8306003,-0.1819677,0.13357632,-0.052409448,-0.2757107,0.0930206,-0.35992205,0.12426467,-0.4038868,-0.5457826,0.4451199,0.5113631,0.37854153,-0.19995154,-0.076614134,0.13187179,-0.17264324,0.10811898,0.037221793,0.04180267,-0.42269886,-0.47395295,-0.0063009034,0.45368063,0.1452527,-0.09896446,0.0371309,-0.050492726,0.23700887,-0.09434407,-0.03053744,-0.019828402,-0.4738328,0.08576154,-0.47658175,-0.2889134,0.58539283,-0.33443853,0.1772859,0.15925004,0.006965651,-0.12907784,0.278248,-0.031436764,0.639255,0.20670363,-0.23275667,-0.2910399,0.13614541,0.25534502,-0.3588739,-0.08131074,-0.15127252,0.21831335,-0.54869074,0.3007022,-0.17133263,-0.12405969,0.19573344,-0.21155216,-0.17495833,0.44856527,-0.10584496,-0.30980724,-0.09274781,-0.026838463,-0.29304215,-0.16855359,-0.06531046,0.23908383,0.08366881,0.17192973,-0.093150035,-0.081814036,-0.08494889,0.15771021,0.19192515,0.16548692,0.5285654,-0.061446767,-0.38577506,0.07874311,0.1802865,0.6611852,-0.011073183,0.12842865,-0.11091364,-0.7879568,-0.41883025,0.043863077,-0.3287311,0.25479788,0.14543514,-0.15379262,0.8708983,0.27583292,1.1065694,-0.0026437228,-0.38480106,-0.26625633,0.80258167,-0.22251478,0.020428717,-0.22639187,1.2738012,0.639289,-0.3416106,0.036701117,-0.3537863,0.1724564,0.18112095,-0.22126311,-0.21229456,0.0061131944,-0.6583884,-0.019152144,0.24448389,0.41586986,0.0038799988,-0.021377834,-0.07049242,0.24195717,0.28988233,0.30603427,-0.4587592,-0.046128374,0.4692267,0.15392496,-0.11962635,0.035047926,-0.32704017,0.21224411,-0.60852534,0.037770323,-0.33770898,0.011125566,-0.326359,-0.46737194,0.33686006,-0.10751014,0.28033647,-0.5338491,-0.1438191,-0.087030895,0.18252338,0.10690679,0.094058394,0.49679023,-0.1225598,0.018964635,0.06888972,0.50054836,1.2207068,-0.14586757,0.037964437,0.37825018,-0.54976666,-0.7422698,0.025294028,-0.5476844,0.030543271,-0.190483,-0.5755555,-0.4070994,0.16576649,0.110587604,-0.017820487,0.013954365,-0.5878309,-0.17587735,0.18888593,-0.33327535,-0.17076348,-0.19336846,0.16035852,0.5041343,-0.29955083,-0.39688328,-0.16719334,0.28075716,-0.37513843,-0.9041379,0.080538705,-0.27698612,0.30029285,0.32658005,-0.43155453,-0.124055415,0.0021456708,-0.52208257,0.1446712,0.22183448,-0.33377832,0.030226776,-0.27774075,-0.009355714,0.7389877,-0.19829819,0.19326574,-0.2888503,-0.49541092,-0.85562474,-0.42205244,0.3860137,0.35113877,0.0139424205,-0.77339524,-0.12376853,-0.4291244,0.22661924,0.058413632,0.026462574,0.5365437,0.23020898,0.3677808,-0.27654502,-0.72485936,0.22544256,0.19305642,-0.075695716,-0.513143,0.63842237,0.12681893,0.8996277,0.12973821,0.10420998,0.23975658,-0.7109537,0.22045022,-0.10676163,-0.34481698,-0.5826549,0.07257377 -539,0.5299336,-0.119712055,-0.5737795,-0.053311445,-0.41182956,0.17510359,-0.20176855,0.32523298,0.31859055,-0.36602148,-0.050976016,0.1416305,-0.15879878,0.19739789,-0.18745393,-0.6125623,-0.051329203,0.10683901,-0.3770923,0.61481565,-0.38199753,0.4477176,0.0017060991,0.22286928,0.054519318,0.34081122,0.022426743,-0.0633907,-0.108002886,-0.30379945,-0.07283636,0.19389573,-0.6181721,0.30222642,-0.017400056,-0.28615868,-0.036709264,-0.36754194,-0.15282512,-0.6782506,0.22038195,-0.5611668,0.6040133,-0.0303232,-0.26990792,0.18015537,0.043270335,0.26199657,-0.079712406,0.015338529,0.2556057,-0.058472387,-0.28165781,-0.10058556,-0.06941734,-0.35668844,-0.477359,0.035257906,-0.39193398,0.019330544,-0.16242635,0.21245624,-0.25284824,0.00694409,-0.17970128,0.40852526,-0.32623643,0.101566374,0.09979515,-0.11396398,0.22202489,-0.65930724,-0.00828832,-0.1291128,0.18082853,-0.1156363,-0.23720872,0.26187408,0.3328086,0.47319594,0.10081493,-0.19507879,-0.35222626,0.01344084,0.20316112,0.41174063,-0.2750865,-0.3727646,-0.22281788,0.08966566,0.2571653,0.064957395,0.041535452,-0.41601783,-0.03711579,-0.14306049,-0.26417837,0.4188767,0.43055475,-0.3472445,-0.05336556,0.41983667,0.5937897,0.20717287,-0.07553825,0.016731502,-0.086637214,-0.46887338,-0.19459756,0.07650323,-0.055666573,0.33861327,-0.0918315,0.099876404,0.44913775,-0.12151457,-0.225276,0.22102669,0.037387922,0.033939272,-0.19244164,-0.1638228,0.17264512,-0.5594638,0.0027519874,-0.24586795,0.5599358,0.115016736,-0.7630632,0.27368742,-0.45707077,0.032116186,0.011316504,0.4711671,0.77113414,0.5067013,0.08981614,0.8627989,-0.4655012,0.049727976,-0.18809393,-0.35342547,0.15198202,-0.08450579,-0.10510534,-0.61389065,0.19950613,-0.07148476,-0.18233056,0.09051452,0.17855084,-0.595754,-0.029156156,0.116812065,0.6321983,-0.33506268,-0.031212322,0.65278727,1.1203363,1.0556722,0.07908062,1.3572732,0.09541459,-0.18834989,-0.02784653,-0.3098987,-0.68081677,0.28340447,0.3631249,-0.09165092,0.3315794,0.17721127,-0.032149762,0.38653147,-0.32814482,-0.11013037,-0.12659107,0.46685073,0.029283747,-0.115893364,-0.3467259,-0.21676062,0.064875275,0.18486893,0.022639103,0.19192791,-0.32170013,0.24293192,0.16805917,1.368526,-0.22372365,0.039139427,0.12507154,0.23586933,0.27426895,-0.21547568,-0.1001806,0.22344726,0.3091622,0.18514416,-0.4552368,-0.034451026,-0.17112724,-0.43854946,-0.13276312,-0.15246198,-0.15618712,-0.07285302,-0.2194378,-0.23030153,0.04291907,-0.26567686,0.5561055,-2.6145256,-0.035375386,-0.12944037,0.16665274,-0.11687632,-0.4942421,-0.11583814,-0.45468652,0.3447874,0.2750615,0.43203205,-0.63955665,0.36189806,0.42499927,-0.55995613,-0.13140196,-0.5077952,-0.13780625,-0.015981125,0.38037914,0.13276675,-0.16478245,-0.15644999,0.21765454,0.41689432,-0.14174774,0.09407386,0.3887563,0.33151776,-0.057755936,0.45439088,0.13652739,0.60886955,-0.13529415,-0.21663764,0.401533,-0.3360127,0.20480159,-0.07301368,0.14622858,0.3228651,-0.404427,-0.88190854,-0.7581035,-0.1558178,1.3306019,-0.19312441,-0.4430816,0.14779317,-0.23579833,-0.49175957,0.061932236,0.19030476,-0.072216675,-0.12885642,-0.8371941,0.07871011,-0.10232245,0.20316568,-0.075686365,-0.015154716,-0.6355525,0.7538853,-0.11825861,0.45718542,0.5377065,0.15713033,-0.11542064,-0.44370946,-0.08253458,1.0834823,0.54966515,0.025907632,-0.17029291,-0.13707021,-0.35342407,0.059329055,0.16347206,0.59071827,0.5090927,-0.037430447,0.04326486,0.15450318,0.01438003,0.06337915,-0.207477,-0.36049202,-0.05627147,-0.19084811,0.5899891,0.62258536,-0.07281919,0.4312031,-0.048147645,0.26466858,-0.007265631,-0.574181,0.4310481,0.9515383,-0.1519793,-0.29897207,0.73434365,0.37140027,-0.07399689,0.4428526,-0.4546788,-0.36601135,0.17827265,-0.10056832,-0.27594006,0.27127588,-0.24068148,0.09023104,-0.6171125,0.35193986,-0.32912964,-0.6620139,-0.42974293,-0.1559606,-3.032799,0.28250134,-0.12889653,-0.057874627,-0.012882199,-0.047814902,0.29702404,-0.5688583,-0.62223583,0.13196763,0.08143738,0.5048202,-0.14742705,-0.012888711,0.013036879,-0.37160277,-0.13330066,0.26481566,0.054294672,0.27153242,0.07492443,-0.3767238,-0.08485874,-0.10945335,-0.32313693,-0.000327399,-0.55964494,-0.52986073,-0.08391571,-0.43887672,-0.22871716,0.7235667,-0.48730248,0.03797582,-0.22294539,0.02821263,0.031575486,0.16993658,-0.15589263,0.07896264,0.004863739,-0.018450607,0.03686332,-0.22546867,0.30278265,0.10612109,0.27925617,0.3316208,-0.11380872,0.26339865,0.46751028,0.7395648,-0.10838328,0.94200724,0.43111598,-0.17446733,0.25965238,-0.14853062,-0.30368084,-0.5157283,-0.34504503,-0.023651712,-0.54552984,-0.24412231,-0.02347364,-0.35196114,-0.7982096,0.55354506,0.06546947,0.0030313283,0.011498272,0.27092236,0.5052166,-0.12783802,0.08484201,-0.16097902,-0.24026631,-0.44402874,-0.33209544,-0.5606233,-0.31974968,-0.015949491,1.2859938,-0.38026124,0.11450536,0.09765959,-0.16981411,0.09001225,0.03220187,0.017881092,0.16513127,0.41545427,-0.03348886,-0.6502037,0.3007602,-0.2352524,-0.029375408,-0.5362127,0.27261436,0.61824197,-0.62014925,0.34706858,0.34894323,0.18815178,0.035449825,-0.504827,0.0058782306,0.060712095,-0.3689076,0.597717,0.2628854,-0.6293486,0.45545888,0.36138952,-0.23488094,-0.73868126,0.42838562,-0.067826025,-0.19846858,-0.07284898,0.36229616,0.1696867,0.042342626,-0.19210558,0.1826947,-0.27599886,0.38217127,0.13025393,-0.09489293,0.061179493,-0.16972502,-0.20688528,-0.7708963,-0.03945017,-0.3885211,-0.40803194,0.13144824,0.045393802,-0.031531043,0.10190649,0.13244766,0.46465695,-0.3760162,0.0790125,-0.10928235,-0.30779716,0.45784575,0.47195402,0.37442935,-0.276602,0.47955823,-0.00022386573,-0.2037161,-0.22456895,-0.07807088,0.5182091,-0.027539417,0.2910819,0.07374756,-0.0045631714,0.29902285,0.6214487,0.05165613,0.25435895,-0.17903164,-0.31814954,0.07539787,0.01935316,0.24356024,0.045607165,-0.5108663,0.04246967,0.030812431,0.16539565,0.5788237,0.18051676,0.207048,-0.14307891,-0.33230293,0.035422537,0.14758949,0.032458715,-1.431038,0.34700432,0.038287267,0.78758645,0.64553094,0.010792816,0.14668858,0.5317235,-0.122686855,0.073112026,0.421969,-0.014765263,-0.29864383,0.28348494,-0.7699202,0.3339244,-0.07079777,0.11755325,0.121407524,-0.14102615,0.31238177,0.9925064,-0.14518136,0.03173295,-0.17511438,-0.19979914,-0.15427276,-0.26607943,0.09239873,-0.5214056,-0.41901842,0.75216484,0.44758558,0.49338982,-0.20934889,0.07988189,0.10095156,-0.15916465,0.16123754,-0.027408775,0.027896114,-0.05355698,-0.53268576,-0.13482954,0.58971983,-0.071901396,-0.018751284,0.03521783,-0.23152058,0.18831539,-0.059777766,0.0050517824,-0.04645495,-0.62583435,-0.19470438,-0.38353032,-0.2421973,0.2881024,-0.12502415,0.12900649,0.07851526,0.12995014,-0.2168689,0.28936344,0.25511765,0.7428379,0.118615836,0.011441879,-0.21915662,0.31024596,0.10478999,-0.15971951,-0.10259826,-0.15325254,0.20454764,-0.7553601,0.40368998,-0.03644833,-0.4071414,0.17138043,-0.039424144,0.055563435,0.42917594,-0.26785696,-0.23948863,0.092380166,-0.066878825,-0.0651666,-0.23543167,-0.12315134,0.07691464,0.158667,-0.16991606,-0.119924545,-0.21479985,-0.14691705,0.21711329,0.11517088,0.33029917,0.35752818,0.09453127,-0.518082,0.048589915,0.13845539,0.51389676,-0.06746194,-0.13587634,-0.3031754,-0.4953366,-0.3809603,0.21902698,-0.11901705,0.25715607,-0.09255629,-0.24157766,0.71612906,0.16115323,1.3393891,0.019933375,-0.30006862,0.042271502,0.5101028,-0.028231248,0.09351201,-0.39792675,0.99757624,0.6121471,-0.21930267,-0.12741299,-0.48013043,-0.052778408,0.07262147,-0.1757741,0.041683394,-0.09094004,-0.68105924,-0.38287205,0.2810238,0.21484277,-0.018767953,0.019336477,0.0059100688,0.21220498,0.05359085,0.32431838,-0.47253597,-0.031220905,0.24409948,0.27805462,0.053592555,0.058155067,-0.55720353,0.34522474,-0.503228,0.09225313,-0.17758746,0.04239578,-0.19841754,-0.12773491,0.14333218,-0.11728555,0.24770574,-0.4273508,-0.49343586,-0.20455985,0.41041967,0.021606125,0.05126465,0.66197026,-0.22676125,0.0945203,0.04521574,0.41208613,1.0293245,-0.2645388,0.033540823,0.3896476,-0.27334043,-0.4486019,0.016322471,-0.21603274,-0.06864646,-0.023515977,-0.32327998,-0.46038458,0.3616588,0.1070558,0.11396462,0.049514554,-0.6829914,0.024928167,0.33085746,-0.20537427,-0.1434924,-0.16441175,0.10756622,0.7183168,-0.39056206,-0.5766759,0.07027486,0.26363474,-0.19549254,-0.6590604,-0.14799032,-0.30990058,0.3605055,0.22161919,-0.3036175,-0.1939565,0.07573663,-0.44804156,-0.10100937,0.26036233,-0.30526096,0.025409443,-0.29492608,-0.067158096,0.7309532,-0.08963003,0.24139978,-0.46718943,-0.4512794,-0.8731165,-0.23194283,0.19312683,0.262052,-0.072356865,-0.6617424,-0.09092212,-0.26149896,-0.12394957,0.011563063,-0.38115793,0.4539492,0.14940977,0.3868367,-0.19805312,-0.891557,0.15100096,0.20842397,-0.028275289,-0.43262523,0.47060126,0.064499184,0.6522759,0.15599813,-0.001107309,0.18329407,-0.63325906,0.107636124,-0.1624769,-0.0767656,-0.7242565,0.11816088 -540,0.5190452,-0.25818977,-0.28044242,-0.20523398,-0.13307624,0.11555139,-0.06850347,0.51554525,0.21901357,-0.5699329,-0.130034,-0.22012968,-0.01562348,0.28067356,-0.13213348,-0.5370329,0.026533753,0.1867207,-0.38791627,0.52192694,-0.52196664,0.23497605,0.046862464,0.39263248,0.06326459,0.22047058,0.14908396,-0.1613125,-0.23519541,-0.19437878,0.011303084,0.20265998,-0.6060033,0.33045343,-0.17448187,-0.332617,-0.07834854,-0.49719042,-0.44616684,-0.78653985,0.34330246,-0.9652888,0.5044622,0.09031124,-0.18140896,0.34748587,-0.05101112,0.25810042,-0.29864207,-0.0025145356,0.28233936,-0.17213129,-0.050712552,-0.14927784,-0.10575312,-0.18425371,-0.58968246,0.11856927,-0.37608114,-0.12686159,-0.35917607,0.16363427,-0.21980672,0.030147675,-0.08553807,0.37198952,-0.46047583,-0.01793112,0.13734423,-0.14809132,0.34720638,-0.49021286,-0.16997471,-0.11699506,0.17819794,-0.1819958,-0.2040995,0.35579696,0.22788729,0.5223647,0.008900396,-0.21892986,-0.32921368,0.03502339,0.20510796,0.5640992,-0.17672013,-0.632946,-0.16968463,-0.17081822,0.12262235,0.09039237,0.051976006,-0.2418963,-0.057168026,0.02499327,-0.20959057,0.33892804,0.5973605,-0.22246747,-0.32557264,0.32594976,0.59325683,0.102125965,0.04724117,-0.09732266,-0.06539857,-0.45290312,-0.18485881,0.1069413,-0.29602915,0.51981914,-0.044959046,0.13268682,0.7237474,-0.22499646,0.12947305,0.04771923,-0.05779885,0.023554554,-0.3489775,-0.31756037,0.2544386,-0.402824,0.17063081,-0.2784107,0.8763777,0.121444285,-0.7410267,0.5130726,-0.3828779,0.06748947,-0.033223443,0.5921817,0.66728646,0.4518253,0.40580007,0.7446479,-0.62758446,0.024015177,-0.13770841,-0.24353471,-0.016769607,-0.1783965,0.17949389,-0.33476844,-0.0021550101,0.078175224,-0.19235133,-0.09732572,0.5121001,-0.5435704,0.0020862904,0.17764173,0.8396984,-0.3136315,-0.017414523,0.8714805,1.0979576,0.9557892,0.07258296,1.2940766,0.39493516,-0.31776863,0.25957367,-0.2693382,-0.775878,0.26483724,0.32723546,0.24935646,0.009392832,0.23350227,-0.048519082,0.43443868,-0.6178834,0.03956139,-0.1632736,0.36067644,0.018202756,0.0064690784,-0.49521774,-0.2910862,-0.14478625,0.00040531158,0.06499706,0.18869486,-0.35760722,0.27328518,0.06411279,1.7802916,-0.16423178,0.07616373,-0.068799466,0.5456,0.069624744,-0.09913601,-0.09714628,0.23419568,0.31917995,-0.078369774,-0.5711488,0.053760957,-0.15480033,-0.48996305,-0.1384423,-0.24665998,-9.563991e-05,-0.08356537,-0.42155796,-0.19042066,-0.064721845,-0.40396172,0.5000889,-2.5664613,-0.18477903,-0.009285235,0.3261816,-0.21516664,-0.3529298,-0.06883429,-0.47984287,0.46805954,0.38344914,0.39910308,-0.6949088,0.39224574,0.38450652,-0.46682456,-0.14491017,-0.663524,-0.041549463,-0.047229063,0.38112357,0.20554349,-0.08080488,-0.076282926,0.012532075,0.51709235,0.06578245,0.15997496,0.31449717,0.3849353,0.07943255,0.4313183,-0.013663226,0.5582616,-0.2749305,-0.14189373,0.37641844,-0.47322822,0.22538264,-0.3179674,0.2092136,0.34472346,-0.45882514,-0.8484916,-0.89041215,-0.49756685,1.1210641,-0.11290494,-0.46617433,0.30402747,-0.24282338,-0.22695121,0.00050867134,0.55038154,-0.12617566,-0.068655476,-0.7746018,-0.068830006,-0.06884332,0.1914604,-0.031750724,0.071925156,-0.46328872,0.79585886,-0.09857433,0.40775782,0.2797916,0.21659414,-0.15471013,-0.39831686,0.10683364,1.0450066,0.35550103,0.18438552,-0.106724,-0.21203835,-0.20833097,-0.15817595,-0.013047963,0.5176667,0.77397346,-0.002955642,0.03227054,0.2715203,-0.07129613,0.016322926,-0.091436975,-0.3621294,-0.22653624,0.0421029,0.7045041,0.62957144,-0.18114944,0.3873338,-0.341338,0.20546399,-0.13075967,-0.35835978,0.5289607,0.78522,-0.13420808,-0.08935772,0.54716,0.424349,-0.2939637,0.46167496,-0.7614437,-0.3713213,0.44391838,-0.14301327,-0.46935493,0.14709413,-0.32261905,0.14459682,-0.89002705,0.46991786,-0.24044533,-0.70675385,-0.495179,-0.16693582,-3.360561,0.076304436,-0.13871299,-0.12081178,-0.055422373,-0.19522886,0.20754762,-0.49216405,-0.5610424,0.19150934,0.013609686,0.62745446,0.11844268,0.13071005,-0.27923894,-0.07461543,-0.4614274,0.026062336,0.10475143,0.33021027,0.020775547,-0.3911967,-0.023110254,-0.1870433,-0.24502386,0.04761646,-0.5794687,-0.5411281,-0.2189388,-0.4494469,-0.26927635,0.6608597,-0.36729473,0.07172791,-0.20613118,-0.08025585,-0.3685441,0.4197044,0.07761478,0.18782978,0.04603896,-0.2038143,-0.07145584,-0.33383328,0.4147424,0.1618341,0.14827867,0.46419606,-0.23372957,0.127746,0.46467143,0.5796199,-0.0920309,0.9645747,0.4446014,-0.090897314,0.34816557,-0.35752568,-0.1499499,-0.64680946,-0.3319079,-0.04414245,-0.4068884,-0.48075524,-0.053989053,-0.4719284,-0.9071669,0.4492932,0.009811367,0.15130424,0.027297305,0.09690697,0.45926183,-0.17309478,-0.12456922,-0.11004914,-0.05161329,-0.648529,-0.3364951,-0.716165,-0.52109325,0.12918332,0.96377057,-0.007812858,-0.066834435,0.16324724,-0.12255488,0.13562202,0.11250804,-0.19764055,-0.08352012,0.41487542,0.009574183,-0.73176724,0.5801949,0.03872504,-0.17756002,-0.6086284,0.31765977,0.65229034,-0.6623906,0.5792634,0.38630813,0.10527086,-0.0043562567,-0.42237744,-0.28508398,-0.2618207,-0.13888629,0.3170615,0.063191876,-0.84195787,0.46805218,0.45722088,-0.25163943,-0.9638356,0.30943805,-0.068692185,-0.17733094,0.05588132,0.2755303,0.16063856,0.012689168,-0.25052175,0.21196079,-0.64190066,0.36284348,0.28651777,-0.0006484368,0.27865893,-0.1516392,-0.11893896,-0.67846686,-0.17011525,-0.5953684,-0.30372864,0.1268289,0.088456355,0.046718437,0.28889203,0.23406407,0.46660694,-0.19844206,0.10226748,-0.019767238,-0.31165746,0.1882608,0.42637524,0.46423602,-0.42199415,0.58504057,0.0066534854,-0.030745456,-0.1680227,0.12553765,0.38795704,0.1429694,0.37204796,0.012865058,-0.20720336,0.2847729,0.9481339,0.29215154,0.46418524,0.063523166,-0.240448,0.39903164,0.18782659,0.3209804,0.023348536,-0.54298955,0.13495697,-0.18563178,0.11313653,0.34956476,0.23013541,0.37325493,0.005464409,-0.2437607,-0.021927472,0.20695874,-0.22056378,-1.176644,0.41875353,0.028167682,0.87981266,0.5781765,-0.12587228,0.17350934,0.70431626,-0.112841144,0.08531757,0.23980297,-0.19578911,-0.5097927,0.5434341,-0.8034231,0.33950052,-0.09473239,0.07182197,0.013683374,0.00809661,0.4471839,0.6455478,-0.1305049,0.06585181,-0.11551307,-0.18553376,0.2148247,-0.4924154,0.24515586,-0.58083165,-0.26567715,0.7719043,0.54385436,0.36758548,-0.067770176,-0.006543662,-0.008047434,-0.092439756,0.112722084,0.059414305,-0.036877666,0.060401924,-0.6519886,-0.18816338,0.5614196,-0.06711644,0.18591945,0.052594792,-0.37764493,0.2444994,-0.25805736,-0.23398979,-0.0044099456,-0.7033367,0.053329997,-0.3000376,-0.27879956,0.44864908,0.048335142,0.28695995,0.19489965,0.07184259,-0.1870056,0.22047962,0.18224187,0.74056536,0.14438042,-0.25985566,-0.4950826,0.17654082,0.25614807,-0.3610335,-0.0009256474,-0.17668726,-0.10398691,-0.66856575,0.42811838,-0.104357064,-0.28466564,0.28549367,-0.17505002,0.04029704,0.68802696,-0.19753551,-0.12091797,0.05125314,-0.2572197,-0.2722351,-0.10088384,-0.071534984,0.29008928,0.20162311,-0.032405846,-0.009429149,-0.07847254,-0.1233034,0.441508,0.12315468,0.32947585,0.3371737,0.04374546,-0.32057914,-0.10109925,0.124723956,0.5257436,0.036258917,-0.14361665,-0.14670287,-0.4112884,-0.38606954,0.074663214,-0.12170297,0.31122366,0.045978326,-0.3887978,0.71213686,0.039310317,1.0822277,0.2082574,-0.25389996,0.13838977,0.5608953,-0.003499789,0.055717833,-0.5209642,0.9099525,0.48552886,-0.09064714,-0.038772207,-0.3435752,-0.090039596,0.37085888,-0.213678,-0.049910817,-0.078014016,-0.80773586,-0.29626665,0.22417453,0.32957605,0.08155363,-0.032947604,0.08181038,0.17004661,0.026138488,0.4123574,-0.60540295,-0.1326388,0.44346806,0.25353575,0.016669432,0.05306379,-0.28701356,0.38628736,-0.5592948,0.004975515,-0.1993902,-0.011028002,-0.33637482,-0.28130823,0.27263024,0.13157064,0.40443844,-0.29148695,-0.44697067,-0.2271827,0.49332008,0.18844049,0.19369711,0.52868515,-0.26260373,-0.039134163,0.12701397,0.5174037,1.1296697,-0.28039506,0.14875484,0.40952176,-0.39709014,-0.5171492,0.45398584,-0.19286117,0.1403465,-0.0041977507,-0.34455207,-0.5715831,0.29002288,0.24325036,-0.13826312,0.17563283,-0.69979125,-0.17241669,0.2070686,-0.25944382,-0.25474587,-0.26823077,0.11943468,0.74258167,-0.38577485,-0.31506062,0.23996043,0.30399033,-0.3613754,-0.60860014,-0.18858555,-0.50398654,0.41069052,0.040154338,-0.4389861,-0.09873917,-0.041906733,-0.41692182,-0.02913265,0.055860903,-0.435687,0.07937329,-0.3975907,0.045981746,0.86705583,-0.005041097,0.18524453,-0.6927243,-0.36554185,-0.9686455,-0.34557822,0.521479,0.24814503,-0.032124784,-0.40024135,-0.02849414,-0.092792764,-0.05450511,0.028014554,-0.5222566,0.42598563,0.14208268,0.4236713,-0.124077305,-0.7683272,0.03703916,0.16600393,-0.09858662,-0.5232851,0.44912523,-0.027323186,0.80155194,0.012373729,0.01693448,0.18851617,-0.64590484,0.012321419,-0.26337197,-0.22439767,-0.66417027,0.1901152 -541,0.46070936,-0.19075465,-0.44737095,-0.22102329,-0.18991594,0.0015873994,-0.27012843,0.33230135,0.14434595,-0.7463569,-0.11978583,-0.28784242,0.033184264,0.07789111,-0.26427338,-0.38419458,0.0021051702,0.17211446,-0.53770864,0.64787287,-0.3126753,0.30989757,0.14294727,0.3308633,0.18522072,0.26013198,0.1456444,-0.15375005,-0.09070264,-0.20408764,-0.08587804,0.36335394,-0.549972,0.22521842,-0.15873067,-0.29050106,0.040319365,-0.53125876,-0.34221438,-0.83282334,0.29593387,-1.028884,0.5504218,0.07812268,-0.22407582,0.127721,0.3632248,0.23408826,-0.005970027,0.058686316,0.2484924,-0.1196937,-0.023962319,-0.14499965,-0.21789792,-0.5397487,-0.5463773,-0.038980458,-0.39411947,-0.25093266,-0.47541544,0.12598836,-0.35753986,-0.02094558,-0.089322925,0.6651772,-0.44560024,0.11988122,0.17360224,-0.10276849,0.6296363,-0.5097002,-0.13185583,-0.23807715,0.37115532,-0.35246128,-0.22557423,0.18436949,0.37927008,0.3690446,-0.030010585,-0.124936104,-0.11485613,-0.21885109,0.21360905,0.4806467,-0.010342787,-0.50536495,-0.1238636,-0.0009467261,0.1897175,0.3124682,0.1581382,-0.38578114,-0.11204074,-0.05212199,-0.29674855,0.5937808,0.46666268,-0.26449198,-0.19662812,0.2823273,0.4917175,0.15214992,-0.19744785,0.087739035,0.027864996,-0.6073193,-0.15557657,0.11245848,-0.14479665,0.49604106,-0.20252459,0.33299485,0.68594646,-0.17619804,-0.08880835,-0.0093736565,0.032994848,-0.24534146,-0.20114551,-0.26099062,0.23637894,-0.4973693,0.16014624,-0.120479636,0.7733072,0.064822756,-0.6749433,0.2168806,-0.69757175,0.02950255,-0.14289232,0.48617974,0.6131758,0.4116594,0.41195112,0.65505993,-0.4102704,-0.04515322,-0.07796453,-0.46002966,-0.08725158,-0.24615279,-0.0048888326,-0.4896164,-0.033595104,-0.07437853,-0.039319776,-0.10894464,0.45025247,-0.53845483,-0.049883973,0.06712138,0.8421885,-0.3413071,-0.031344812,0.70331234,0.80885315,0.9551035,0.17095795,1.0570896,0.18874943,-0.25331283,0.12165881,-0.13882415,-0.71429247,0.48166603,0.48163393,-0.20279762,0.16102542,0.12713917,0.08562336,0.2823698,-0.48783943,-0.056219798,-0.25558394,0.103275195,0.08536389,-0.16563939,-0.38946792,-0.1830773,0.008649264,0.04586635,0.19290476,0.037681498,-0.17105304,0.39579266,0.15402003,1.4801512,-0.22009026,0.14981076,0.16714922,0.37490946,0.25946468,-0.1153657,-0.112266876,0.38525146,0.3684321,0.33745456,-0.5315021,0.10863508,-0.18471263,-0.36036688,-0.13739152,-0.3786123,-0.029613184,-0.05173077,-0.5152,-0.12678318,-0.193276,-0.38618717,0.33388934,-2.5909514,-0.22558078,-0.22466834,0.38326263,-0.23080046,-0.18550666,-0.12208356,-0.4429172,0.47326994,0.27961856,0.49335125,-0.60449374,0.30533132,0.50919586,-0.43608353,-0.16928218,-0.6028274,-0.1879036,-0.12595643,0.2656,0.019482514,-0.01656809,-0.0012611406,0.21405147,0.45292228,-0.068205245,0.12508318,0.2520345,0.5553151,0.0042225486,0.7276955,-0.07788719,0.41902187,-0.15155695,-0.24290243,0.3018952,-0.24169837,0.12847464,-0.07113643,0.119613506,0.6010265,-0.5178853,-0.7848158,-0.7785476,-0.48739418,1.1482166,-0.2500204,-0.4429132,0.15924338,-0.2920423,-0.4009774,-0.023941722,0.5565399,-0.14512838,0.105771266,-0.8993251,0.029347632,-0.14451313,0.30722946,0.053318582,-0.06975235,-0.51735973,0.68899286,0.027767641,0.55971247,0.31596655,0.11791329,-0.45909443,-0.5209578,0.034780294,1.046466,0.30813095,0.09339379,-0.30463403,-0.13909325,-0.29340306,0.15775199,0.05444341,0.5541713,0.5889679,-0.037268996,0.25652987,0.27391347,0.08989757,0.044307504,-0.17458291,-0.22218286,-0.16260271,-0.16776207,0.57247037,0.466978,-0.10966221,0.44751713,-0.14564261,0.3586259,-0.20291568,-0.42288256,0.5055782,1.2499007,-0.13301584,-0.34105065,0.7684523,0.50043195,-0.24360763,0.36104298,-0.5570567,-0.2734981,0.5126963,-0.26081342,-0.58967274,0.21822047,-0.34257942,0.17902468,-0.9283904,0.32699987,-0.26552996,-0.51311284,-0.5125806,-0.07960071,-3.4321027,0.23914878,-0.12986258,-0.2575005,-0.19010891,-0.20743951,0.24830219,-0.5392637,-0.6366302,0.19423877,-0.032425847,0.83358943,-0.14054379,0.048233297,-0.16697825,-0.32857245,-0.15649213,0.13278653,0.14537606,0.25255585,-0.036396574,-0.43987986,-0.029103573,-0.090749666,-0.49892673,0.017623423,-0.45461348,-0.51091546,-0.076075755,-0.51812255,-0.4448507,0.6432592,-0.23551203,0.087448426,-0.15949766,-0.033112515,-0.036848713,0.3756364,0.047209147,0.32449144,-0.04230138,0.020417849,-0.13356413,-0.24061169,0.32427257,0.0670976,0.015003903,0.21353279,-0.23352115,0.24960926,0.43499878,0.51785964,-0.06579567,1.0368136,0.47894213,0.011037922,0.23129804,-0.22907844,-0.4125362,-0.622796,-0.23474357,0.11774964,-0.42655092,-0.49279505,-0.06569909,-0.22398531,-0.67885256,0.66230166,-0.031651232,0.17035246,-0.08142527,0.31023124,0.3813313,-0.18471913,-0.07762623,0.039807446,-0.21916984,-0.48525223,-0.17777275,-0.5485196,-0.41137686,-0.07601182,0.9336225,-0.19453035,0.11318209,-0.02832058,-0.122351594,0.038227003,0.1325377,0.039903786,0.29213238,0.51638305,-0.07301862,-0.7763921,0.48883197,-0.1660401,-0.18546076,-0.5671962,0.1734333,0.8388263,-0.6847497,0.5102927,0.40660954,-0.0517107,-0.4456469,-0.49965903,-0.22046028,0.0019476755,-0.34959173,0.41901827,0.24845171,-0.81228954,0.40779802,0.32454687,-0.06295215,-0.75970954,0.6901831,0.018238416,-0.34775713,0.14377023,0.4325829,0.032325026,0.07796095,-0.25668186,0.29284135,-0.29974207,0.22098766,0.19563672,-0.0648913,0.21399538,-0.19010046,0.034706473,-0.7697268,-0.037591957,-0.5491894,-0.31475472,0.3490599,0.037778,0.05101455,0.46392304,-0.10232393,0.4018932,-0.22925816,0.06938108,-0.16865978,-0.14809974,0.24919094,0.3920626,0.40035793,-0.39507386,0.65785754,0.10974187,-0.11931438,-0.113751315,0.1717714,0.46299663,0.048796397,0.5087224,-0.09508143,-0.27350232,0.38943225,0.8624183,0.1423827,0.5347348,0.14194383,-0.0536997,0.23528273,0.16231439,0.32791567,-0.07951302,-0.6031208,-0.058053337,-0.3923474,0.07441368,0.47770327,0.048844926,0.23132399,-0.13059933,-0.41816407,0.030966401,0.23898955,0.09413675,-1.2559927,0.35984167,0.2595108,0.744174,0.46782997,-0.0075600552,0.049007952,0.7169825,-0.14282045,0.08070064,0.29073793,0.0925296,-0.40089175,0.52468437,-0.7008137,0.30241945,-0.067515425,-0.08413851,-0.051279243,-0.10106256,0.3594549,0.8611022,-0.16988352,0.13233604,0.015742056,-0.23080035,0.4026546,-0.51407105,-5.264793e-05,-0.45380408,-0.33536768,0.5733825,0.529895,0.3663888,-0.21156211,0.117030226,0.051326316,-0.16708292,0.08588327,0.19162926,0.037591882,-0.092968,-0.70663023,0.008580208,0.5461823,0.21663283,0.16583297,-0.03787783,-0.17531323,0.25538927,-0.07071145,0.11272343,-0.12031497,-0.7572866,-0.18720445,-0.3325358,-0.429499,0.40114993,-0.2503269,0.2566074,0.23443747,0.059800297,-0.1264852,0.3145152,0.23621416,0.60686386,0.16139923,-0.13439113,-0.38251457,0.18234482,0.11878472,-0.23737358,-0.123354636,-0.37256053,0.1547385,-0.6624637,0.36598486,0.027507534,-0.45193774,0.17730989,-0.049674876,-0.03186258,0.62980705,-0.06281131,-0.12860267,0.014846512,-0.19902705,-0.15507376,-0.19779982,-0.04519147,0.24927227,0.13636352,0.043141466,-0.18801682,-0.0145301325,-0.32639986,0.34152898,0.061907716,0.6037415,0.42025205,0.11670057,-0.1502659,-0.011956432,0.10683049,0.5400249,-0.013241397,-0.14530008,-0.1548544,-0.48154134,-0.2594365,0.088286914,0.04838689,0.31253046,0.16336298,-0.18669772,0.8005972,-0.07325376,0.92095226,0.021953242,-0.43839216,0.042591717,0.42367622,-0.043005444,-0.13353518,-0.31555352,0.8194839,0.46151283,-0.041968025,-0.13088836,-0.23536791,0.021256091,0.0048753535,-0.17959738,-0.14092557,-0.02579473,-0.6667247,-0.3353205,0.173241,0.2885186,0.13005841,-0.101235114,0.00016155413,0.30530658,-0.09969431,0.33664083,-0.51418364,-0.09137595,0.23382904,0.3377781,-0.05998562,0.06126448,-0.4232562,0.4944888,-0.4309192,0.11501817,-0.36818442,0.2563955,-0.29411554,-0.19211249,0.25782114,-0.059780873,0.40796188,-0.3078077,-0.28905058,-0.22172871,0.44885603,0.09244267,0.110765405,0.52898103,-0.22205839,0.15159278,0.1038411,0.5700578,1.020898,-0.19524479,0.095352374,0.42639518,-0.40582004,-0.56230813,0.30500504,-0.34849748,0.10249252,0.143185,-0.17693904,-0.26353168,0.18907015,0.18245338,0.1451822,-0.059424873,-0.628188,-0.20748027,0.44355896,-0.24674447,-0.15552095,-0.23067543,0.061669465,0.40281466,-0.21570112,-0.28005642,0.0012918072,0.17029865,-0.23799971,-0.6563713,-0.22415839,-0.34234914,0.36514035,0.108976856,-0.32298613,-0.10941016,-0.016548842,-0.5107885,0.19147067,0.08505658,-0.34292814,-0.024192136,-0.30471244,-0.19129749,0.98382384,-0.2922385,-0.16485927,-0.37348786,-0.46817106,-0.8013772,-0.22793637,0.4981139,0.0883111,0.15304056,-0.39010695,-0.037714157,-0.09818648,-0.06701531,-0.059879035,-0.30787128,0.3680577,0.17418239,0.6000972,-0.10076071,-0.8848596,0.1262537,0.020700326,-0.24095045,-0.62617916,0.6362471,0.008905726,0.64895695,0.034239825,0.12271856,0.33340353,-0.42981243,-0.122130975,-0.11079568,-0.13422522,-0.8026416,-0.023888567 -542,0.40442163,-0.08123167,-0.6056547,-0.16819912,-0.11548204,0.12582904,-0.16457354,0.3861938,0.24139209,-0.57544583,0.019221505,-0.1380443,0.15153152,0.35569292,-0.1725809,-0.5044201,0.032734226,0.12909347,-0.49027568,0.3221062,-0.41953653,0.12741166,-0.0722337,0.31730187,-0.025165025,0.29910722,0.1485233,-0.1865643,-0.22512512,0.0025541463,-0.038138323,0.21283272,-0.42616904,0.0195658,-0.21043468,-0.21442154,0.047116317,-0.50392365,-0.55756444,-0.4750412,0.2697921,-0.7512556,0.5374317,0.20556338,-0.2236019,0.29409888,0.12256398,0.1643001,-0.1419254,0.007970095,0.25140652,-0.19135343,-0.050286707,-0.30701068,-0.50710374,-0.4173355,-0.63686424,0.016453655,-0.46704683,-0.084633775,-0.28034678,0.050777555,-0.20386457,-0.13815099,-0.061498247,0.41751137,-0.31999677,-0.12563531,0.2391749,-0.10615802,0.38456213,-0.41537544,-0.15988533,0.03483314,0.2089818,-0.31056228,-0.14790876,0.29693907,0.24335714,0.5252275,-0.13660456,-0.16799815,-0.49529022,0.021595526,0.12631041,0.5223433,-0.36398697,-0.23947555,-0.12432846,-0.06540878,0.012418326,0.20017369,0.083569564,-0.38193217,-0.050902344,0.12088564,-0.16640557,0.35349256,0.5921717,-0.33706185,-0.27352592,0.32733336,0.4129138,0.09023586,-0.2085221,0.04619504,0.047906827,-0.6035566,-0.22602458,0.23460184,-0.08471303,0.55065984,-0.04001383,0.24688905,0.6699047,-0.06407554,0.042376336,0.04506607,0.12215665,0.080776915,-0.27913803,-0.051217444,0.16142768,-0.5390567,0.091703154,-0.11036103,0.60023665,0.13714263,-1.0163794,0.4236026,-0.45667565,0.11891305,0.034049317,0.39704028,0.66087306,0.32645336,0.17437236,0.6410806,-0.5883756,0.10671806,0.01634549,-0.43908235,0.21797352,-0.023597471,0.04411515,-0.63107437,-0.21807712,0.18461987,-0.016700847,0.20308219,0.37512964,-0.4023948,-0.0581223,0.3933917,0.9511436,-0.25813672,-0.13609505,0.53107285,1.0509137,0.8122865,0.06987946,1.2067205,0.032219205,-0.21678302,0.4146429,-0.45112324,-0.827004,0.20578642,0.27369243,-0.08732664,0.31386292,0.20336756,0.122685194,0.36846834,-0.40719974,0.12969166,-0.11589073,0.09763624,0.041723046,-0.08073279,-0.33485857,-0.2897376,-0.06616119,-0.15018041,0.036390748,0.2623325,-0.15099292,0.23953393,0.06812994,1.5751191,-0.044978146,0.16620535,0.14277591,0.52211124,0.15894076,-0.066616274,-0.2391009,0.34549272,0.3071578,0.124911405,-0.3346106,0.037237413,-0.23078607,-0.42013216,-0.13482854,-0.40814734,-0.09584619,-0.012111904,-0.6387438,-0.03787052,-0.0138065135,-0.5877527,0.5923494,-3.0001588,-0.055710666,-0.028506227,0.39885297,-0.20607813,-0.36721045,-0.1978909,-0.45700464,0.50227153,0.3463092,0.35671017,-0.6097113,0.44118786,0.43691355,-0.37586215,-0.034354124,-0.677391,-0.113170385,-0.16064616,0.21741988,0.035387453,-0.078068495,0.08108146,0.32282346,0.4208648,-0.08580421,0.035527576,0.15323423,0.24251394,0.13158907,0.40061933,-0.079218976,0.48492584,-0.31268248,-0.22301564,0.28247052,-0.43069908,0.04721039,0.048336107,0.15924694,0.38467172,-0.40704778,-0.8663333,-0.54176676,-0.19924137,0.9437541,-0.194537,-0.19839248,0.4505013,-0.35510364,-0.5248245,-0.12968987,0.46366245,-0.0020316492,0.06141912,-0.769205,-0.04386504,-0.061893288,0.06710594,-0.043087896,0.087775186,-0.3732501,0.51766104,-0.0759377,0.5568269,0.3699414,0.15465643,-0.34759566,-0.31850478,0.051756285,0.8571453,0.14962134,0.22531568,-0.07673324,-0.18938926,-0.220764,-0.14189383,0.09203492,0.42089608,0.65293825,-0.08021048,0.040816884,0.29334864,0.0035381773,-0.0006641666,-0.09007309,-0.30919763,-0.061366737,-0.013069626,0.49385267,0.5815024,-0.17614664,0.33075988,-0.1071584,0.20826514,-0.29130477,-0.34214363,0.5047706,0.7822544,-0.11923668,-0.24404725,0.52258575,0.48718387,-0.36659,0.42352235,-0.54432815,-0.21703626,0.3677247,-0.17232116,-0.5281635,0.1376244,-0.27621493,0.10931907,-0.70345145,0.36138353,-0.08928741,-0.5565757,-0.3606208,-0.21342705,-3.7484941,0.1135875,-0.31698242,-0.24421015,0.09917816,-0.03562154,0.24850792,-0.59363014,-0.33293897,0.17227268,0.0637794,0.68085986,-0.02270337,-0.0008588314,-0.32792467,-0.22862455,-0.42714664,0.2260301,0.12128305,0.33607987,0.03148444,-0.38862106,-0.006755646,-0.30501387,-0.438517,0.07882186,-0.66919124,-0.32066664,-0.20059116,-0.547961,-0.49754703,0.65296835,-0.38147697,0.028314868,-0.32191196,-0.026321758,-0.20739625,0.50367796,0.1882268,0.22023672,-0.08353199,0.022636019,-0.09661916,-0.32451364,0.3380394,0.058313694,0.27293503,0.48422757,-0.014656887,0.15795197,0.5427446,0.69297576,-0.030803012,0.853639,0.5277909,-0.033244465,0.36326542,-0.322524,-0.15621088,-0.5241208,-0.43398544,-0.04119315,-0.42947558,-0.495792,-0.14891683,-0.3748618,-0.6685139,0.51758903,0.028504014,0.13673791,0.04017908,0.059303537,0.37930673,-0.38779387,-0.07347205,-0.07014886,-0.17408492,-0.43505695,-0.22757745,-0.6495183,-0.6232826,0.17880979,0.86824787,0.015522566,0.00090084475,0.13434651,-0.24151418,0.070069045,0.26332188,0.09174445,0.27602798,0.41884714,-0.08565818,-0.5779466,0.4876122,-0.17686033,-0.25464457,-0.6716124,0.12808451,0.46908206,-0.60537255,0.8255456,0.31517,0.15126783,-0.22277735,-0.53462297,-0.3979751,-0.09821275,-0.19146729,0.48231933,0.16739537,-0.9301793,0.3937098,0.3373383,-0.34159335,-0.5795872,0.558829,-0.014851188,-0.109344214,0.06788782,0.30000108,-0.08848643,-0.081091516,0.08003749,0.23117085,-0.42254582,0.32893947,0.41800186,0.11903105,0.4891686,-0.20488565,-0.066349275,-0.6359942,-0.13484058,-0.56312734,-0.22317266,0.27112296,0.05607494,0.14985372,0.13754426,-0.06564642,0.30620968,-0.38096467,0.19468366,0.019565642,-0.31898203,0.3046161,0.36035487,0.4621755,-0.29839134,0.5416137,-0.15273425,-0.098465726,-0.06086874,0.09621586,0.4874147,0.20681718,0.3490301,-0.12259617,-0.26881352,0.19579177,0.79427874,0.14219648,0.3755613,0.14067243,-0.120031714,0.21268173,0.093881935,0.0012795528,0.047250643,-0.42937025,0.012777378,-0.17561558,0.3116453,0.31051067,-0.0079833465,0.30803692,-0.20127797,-0.22180298,0.043738764,0.23398356,-0.030399524,-1.3152848,0.2956077,0.23801205,0.7509679,0.4224254,0.07035017,-0.13400714,0.5786928,-0.10242233,0.19551611,0.26652965,-0.19185114,-0.56209296,0.510366,-0.5671568,0.54265076,-0.02613899,-0.10114645,0.06784757,-0.0018281654,0.3587522,0.796125,-0.08298149,0.15065564,0.08630352,-0.27999762,0.26481918,-0.38603157,0.23687258,-0.48718184,-0.24056077,0.64144015,0.5472791,0.4944003,-0.11693453,-0.034229632,0.04051752,-0.16217558,0.09168022,0.047263548,0.12365634,-0.020405002,-0.71955925,-0.3245416,0.45217654,0.04864826,0.1321517,0.13598041,-0.17268063,0.25681317,-0.20383257,-0.01584537,-0.09850068,-0.5945017,0.027962986,-0.1898621,-0.45659977,0.5162639,-0.2811966,0.32828522,0.2232822,0.15022616,-0.34753767,0.5945737,0.1983313,0.8142888,-0.045667242,-0.11127166,-0.49163967,0.047867797,0.22743173,-0.1737002,-0.013891022,-0.5312694,-0.022971185,-0.5422159,0.3342931,-0.018096784,-0.19324191,0.028737184,-0.071358405,0.20080802,0.6096227,-0.13091625,-0.25469705,-0.0903944,0.11084136,-0.29966697,-0.09073779,-0.10668739,0.28700578,0.06199495,-0.046238128,-0.025146667,-0.15466881,-0.007247631,0.21321079,0.1324916,0.3790287,0.40678692,0.11657388,-0.3118717,-0.032521542,0.19699615,0.47502175,0.05605821,-0.024291592,-0.27082887,-0.35342452,-0.25867656,0.102861516,-0.12632567,0.2869629,0.136403,-0.117317446,0.69344574,-0.15268378,1.0766796,0.18151958,-0.22733116,0.031913195,0.38966998,0.023252197,0.040859576,-0.41025078,0.8226144,0.59307647,0.008558678,-0.20109305,-0.26692465,0.0042661824,0.2006708,-0.19508366,-0.14069447,-0.032011967,-0.75411165,-0.08047335,0.10235042,0.16435657,0.3971958,-0.11050156,0.036255524,0.20979944,0.04455695,0.22672892,-0.4517458,-0.0069828867,0.2908512,0.42140776,0.0395617,0.21158628,-0.3776851,0.41965505,-0.38485998,-0.093783125,-0.19425559,0.0975925,-0.16897024,-0.33387688,0.16578704,-0.008538397,0.44770786,-0.100067444,-0.22681968,-0.16833471,0.51851207,0.20240897,0.2940588,0.68809336,-0.15999451,0.013917879,0.049218122,0.42281106,0.99714625,-0.19708459,-0.093996815,0.46524334,-0.2780272,-0.74622154,0.09917723,-0.373542,0.31131217,-0.13772412,-0.22201914,-0.33909687,0.22100642,0.10379359,-0.13873006,0.19520734,-0.44082865,-0.21902353,0.19778076,-0.3126455,-0.32414767,-0.36091194,0.14009267,0.60273683,-0.31638357,-0.13549486,0.13123444,0.17295106,-0.07792045,-0.46240193,0.08883119,-0.33221582,0.13732024,0.11511079,-0.45836112,0.05942426,-0.081147425,-0.26828042,0.24951321,0.23565947,-0.34520617,0.059329167,-0.22124977,-0.23362795,0.9004616,-0.1340279,0.10930226,-0.5446579,-0.5124388,-1.0169582,-0.42726192,0.39859846,0.028733628,0.015436019,-0.49476385,-0.053150535,0.034338497,0.019477606,-0.06376112,-0.37611148,0.3985359,0.085941225,0.3751416,-0.10830288,-0.6069002,-0.03569002,0.17906937,-0.22445525,-0.58518684,0.57297903,-0.116414025,0.89877665,0.12657101,0.094147034,0.34858236,-0.41948527,0.060816135,-0.38234884,-0.12912926,-0.61778045,0.059449792 -543,0.4056616,-0.17708063,-0.62789726,-0.057793196,-0.23298539,-0.27565858,-0.110915095,0.71206367,0.22970016,-0.4098967,-0.04764477,-0.23650089,0.062159237,0.4977514,-0.23947753,-0.75994086,-0.13953789,-0.007587231,-0.4031391,0.49155384,-0.34696645,0.13226713,-0.10506361,0.52480817,0.31698215,0.18709938,0.060675126,-0.013976806,-0.18689595,-0.022593472,-0.016241623,0.37776878,-0.529919,0.1338542,-0.14341788,-0.36030075,-0.057922244,-0.5604851,-0.37469038,-0.79474545,0.3503853,-0.6470304,0.37271002,0.1678574,-0.3283299,0.16140778,0.16367984,0.36270824,-0.26439258,-0.1556986,0.096587405,-0.045689683,0.032343682,-0.18042172,-0.39251283,-0.35425457,-0.6167449,0.2484152,-0.41898024,-0.10752074,-0.14700936,0.16184415,-0.33276218,-0.08338167,-0.12650847,0.6015471,-0.4270106,0.09372859,0.36072716,-0.094410196,0.38730007,-0.50797075,-0.2527195,-0.07107416,0.056859348,-0.3344164,-0.3740252,0.35997778,0.31854022,0.4172443,-0.077708475,-0.24323827,-0.36705458,0.12268224,0.05627755,0.5174646,-0.378116,-0.62794536,-0.11958117,0.08897717,0.047461573,0.36116594,0.21841358,-0.3780743,-0.10436766,0.1019461,-0.16567662,0.5370228,0.55328697,-0.24008428,-0.13963313,0.22129895,0.35577348,0.20414092,-0.15521277,-0.005848316,0.088055834,-0.7177341,-0.11633541,0.17973782,-0.0071186377,0.50151896,0.0023412073,0.12430028,0.58177125,-0.14432329,-0.11547151,0.1093164,0.047702946,0.1019938,-0.6068541,-0.10294028,0.25971058,-0.38325393,0.23055857,-0.18701246,0.68618834,0.19335777,-0.8664248,0.28037953,-0.72095406,0.09451255,-0.18713567,0.317743,0.6993274,0.39054933,0.39268976,0.6658549,-0.3867995,0.16499883,-0.08603401,-0.42465594,0.052668452,-0.11013405,-0.11377284,-0.42465293,-0.18996364,-0.13404319,-0.08197955,0.21845095,0.18231465,-0.6271934,-0.10613743,0.16244744,0.919773,-0.20768449,-0.1842579,0.80187356,0.89483684,0.9787015,0.019570043,1.0648996,0.080579445,-0.0574307,0.39254856,-0.20477489,-0.69490397,0.25397483,0.22278753,-0.54184854,0.0850978,-0.09008607,-0.05290886,0.54768854,-0.24974498,0.1633096,-0.21360885,0.25496346,0.21289983,-0.21988407,-0.40911546,-0.3003139,-0.1738925,0.00018906823,-0.09017886,0.26516947,-0.07346081,0.23995763,-0.23301473,1.6803752,0.0839104,0.18611974,0.19832823,0.5032337,0.23420373,-0.20342717,-0.18846567,0.03435523,0.17218648,0.2443303,-0.4626148,0.22888035,-0.21405488,-0.46922684,-0.054794285,-0.41242725,0.008649762,-0.2697591,-0.6612251,-0.01822311,-0.10030385,-0.14451799,0.5005915,-3.0144718,-0.13750051,-0.045316383,0.22604224,-0.23346618,-0.4607271,-0.106895216,-0.47815847,0.6678772,0.23438343,0.56192863,-0.5491691,0.30354622,0.3475444,-0.42919478,-0.0507713,-0.6660324,-0.1186546,0.054470595,0.23961791,-0.021438777,-0.032388683,0.18348251,0.03192785,0.5193268,-0.23353139,0.04960672,0.05070857,0.39268377,-0.024011303,0.57155854,-0.2710603,0.50502867,-0.4208083,-0.38962042,0.2667317,-0.40227082,0.2056579,0.16958894,0.092147045,0.37203085,-0.47872654,-1.1455042,-0.5210578,-0.25269535,0.8032369,-0.13353515,-0.34016603,0.37792173,-0.38968483,-0.10541907,-0.15957655,0.37283128,0.1164834,0.12681518,-0.8007657,0.0073434734,-0.16362938,0.06371395,-0.009426295,-0.17866296,-0.27387697,0.4090495,-0.03997226,0.23530036,0.6248645,0.09991591,-0.42247465,-0.5411512,0.03528411,0.91621876,0.18434307,0.16350082,-0.13657348,-0.18486391,-0.28361666,-0.13120781,0.12124907,0.590634,0.695064,-0.07041013,0.12283058,0.22365001,0.12073333,-0.040314138,-0.08241645,-0.36386302,-0.14454235,-0.02999845,0.6689377,0.8587227,-0.060433313,0.6008114,-0.06667708,0.427002,-0.17683141,-0.34180447,0.5271519,1.0357609,-0.06720089,-0.43301246,0.6779693,0.48099026,-0.24569637,0.41246703,-0.3118266,-0.20024869,0.51793545,-0.20155074,-0.49356332,0.25421807,-0.26239502,0.045515444,-0.9217483,0.16365074,-0.37483957,-0.3058109,-0.51431113,-0.21317913,-3.4372673,0.24406657,-0.33354643,-0.13839945,-0.08665712,-0.112636514,0.02774999,-0.54677,-0.645028,0.15249854,0.17532825,0.7174213,-0.21586895,0.1419501,-0.21567138,-0.17560457,-0.109207705,0.08417818,0.3381114,0.3235394,-0.009889419,-0.34184378,-0.27540705,-0.21331567,-0.6519941,0.22629294,-0.71873105,-0.48410732,-0.20876637,-0.75931066,-0.40259218,0.79947305,-0.34870714,-0.12679985,0.004176649,0.109668225,0.05911828,0.34694782,0.1699729,0.35256514,0.035648104,-0.026612502,0.07531184,-0.19112776,0.09520899,0.10422177,0.45666042,0.24511415,-0.06393749,0.38260084,0.589541,0.8383003,-0.05098444,0.8192478,0.5934091,0.010724019,0.25045794,-0.3601392,-0.31153804,-0.45909372,-0.3119567,0.028871408,-0.36302382,-0.37076157,0.056718692,-0.37520742,-0.64077157,0.74619514,-0.116131864,-0.046039782,-0.00045221357,0.21725038,0.47476518,-0.39736712,-0.13568202,-0.05545872,-0.014703374,-0.5401324,-0.3056395,-0.47819468,-0.66686887,-0.039548054,1.0788167,-0.19953893,0.02287221,0.012048547,-0.16867083,-0.049511082,0.14510801,-0.05236957,0.3153709,0.23892404,-0.06128988,-0.6660592,0.4562672,-0.2085008,-0.25478303,-0.5230991,0.2578664,0.56348294,-0.5820734,0.7188726,0.26362637,0.057705063,-0.11481536,-0.6573089,-0.20080318,0.14536446,-0.078132406,0.4111219,0.24877785,-0.87320733,0.46228558,0.6660135,-0.29050198,-0.8068327,0.48185286,-0.011647075,-0.30966237,-0.13584942,0.31675756,0.15106069,-0.07323671,-0.07572002,0.31013906,-0.38549036,0.18552233,0.26235145,-0.021512188,0.36551717,-0.19018191,0.03163954,-0.68228555,0.21671098,-0.5055781,-0.29711148,0.40890986,-0.008034321,0.04130787,0.13213499,-0.009337529,0.25029048,-0.24912558,0.059996467,-0.14923836,-0.26678863,0.19016251,0.49956182,0.52252054,-0.5562806,0.46838978,0.03327863,-0.018556166,0.20940682,0.13438685,0.46179432,-0.11488458,0.40242708,-0.183763,-0.206747,0.24860327,0.79089016,-0.029747518,0.42666963,0.043799594,0.032239463,0.11728729,0.037309144,0.055155627,0.111880675,-0.5511936,0.24558797,-0.03994097,0.26893032,0.54300684,0.010514711,0.3040813,-0.103705406,-0.44119638,0.014338945,0.3527698,0.11708852,-1.4094315,0.4762351,0.16855201,0.8811947,0.4724004,0.2598173,-0.07918271,0.63050365,-0.03154432,0.18892384,0.41551006,-0.13297707,-0.41077846,0.5176344,-0.65795255,0.6926998,-0.068494014,-0.034195356,0.032471158,0.08291514,0.52543426,0.74081874,-0.12697554,0.03498042,0.15834707,-0.34304354,0.21284005,-0.49842644,0.13975972,-0.44217843,-0.3141955,0.6075278,0.686106,0.22442244,-0.18388622,-0.044030324,0.3913115,-0.05666434,0.12727812,-0.15508445,0.07776785,0.089928776,-0.67773175,-0.18495281,0.6145408,-0.031913407,0.26325417,-0.12625928,8.812318e-06,0.31755707,-0.1364609,-0.13822879,-0.21330807,-0.75042504,0.14051278,-0.54112047,-0.46560666,0.34366444,-0.22497654,0.20123388,0.24057946,0.12297675,-0.5295065,0.7357447,-0.11268951,1.0297828,-0.3447035,-0.11138638,-0.47039992,0.22577778,0.26049095,-0.15842448,-0.22783767,-0.43613333,0.03247368,-0.4753531,0.4414372,0.011787627,-0.3630218,-0.16994959,0.0756473,0.024973579,0.50587934,-0.15419616,-0.058744356,-0.12868603,-0.22676903,-0.2010011,-0.11809091,0.0065276003,0.25042313,0.23388785,-0.01582264,0.053961232,-0.10650235,-0.012244491,0.48669037,-0.058878668,0.46741125,0.2922828,0.2674726,-0.16798022,-0.0964405,0.2821328,0.66524786,-0.04249612,-0.1990328,-0.3589562,-0.15488683,-0.25051105,0.14606191,-0.20779821,0.5186027,0.071736865,-0.29401737,0.7247391,0.025138604,1.3660672,0.056849226,-0.3401077,0.1274884,0.27585062,-0.03534762,-0.05067022,-0.40991643,0.9750915,0.4593976,-0.12372523,-0.09327423,-0.19938058,0.044300836,0.05024837,-0.19688162,-0.118674435,0.032547884,-0.5369765,-0.13186818,0.1887512,0.2607351,0.38668662,-0.28185943,0.042468563,0.21837482,0.085966945,0.10515352,-0.391165,0.08400411,0.15259954,0.53407913,-0.020431038,0.106158786,-0.5559644,0.37013185,-0.27456695,0.2363967,-0.40046751,0.18943821,-0.15702055,-0.24296525,0.24743366,-0.2508827,0.4198268,-0.23304923,-0.0949515,-0.19963768,0.43128303,0.24785307,0.108626194,0.7189627,-0.24222888,0.05436096,-0.0013766426,0.58875084,0.9081843,-0.3627922,-0.25556353,0.3082001,-0.124870226,-0.5686022,0.27456528,-0.2714913,0.25001287,-0.1370181,-0.10465552,-0.6289376,0.18500346,0.25205103,-0.042376526,-0.12884086,-0.6731326,-0.11752545,0.23576447,-0.25469628,-0.29653156,-0.48272178,0.1302747,0.70796114,-0.10605175,-0.29287735,0.26783735,0.07460925,-0.018919935,-0.2781088,0.085300975,-0.3465638,0.08280099,0.035206456,-0.39009264,-0.12210517,0.031717267,-0.4109135,0.14537154,-0.013361555,-0.24681455,0.065481566,-0.034872368,-0.21020606,1.1672885,-0.21614406,0.42995626,-0.46976092,-0.60357994,-0.95622647,-0.32717034,0.51277894,-0.029547848,0.01006634,-0.7469682,-0.17666945,0.04247492,-0.39747244,-0.10227369,-0.24941023,0.39850044,-0.042831793,0.44323823,-0.21021166,-0.6986439,0.14718772,0.2862971,-0.19921626,-0.60423905,0.3393448,-0.028149046,0.7944308,0.036701,0.11267467,0.4984775,-0.29567453,-0.1964046,-0.29643834,-0.23281544,-0.64716,-0.023842921 -544,0.35816383,-0.13896003,-0.39540946,-0.07878546,-0.16796422,0.056594294,-0.1082544,0.4953292,0.15760191,-0.34612653,-0.10978533,-0.2127011,-0.042428937,0.35834935,-0.020865945,-0.5946268,0.09069168,0.19018391,-0.44009134,0.47085062,-0.41354397,0.22399308,-0.054479744,0.2310707,0.26049247,0.2737064,0.043051746,-0.26035845,-0.016272558,0.03806197,-0.30168912,0.24620603,-0.17897147,0.1494889,0.17277588,-0.26039746,0.021893712,-0.3423227,-0.36699846,-0.6695424,0.39591676,-0.6090945,0.3980369,-0.0027540922,-0.06761057,0.019000271,0.10617593,0.60835004,-0.28101593,-0.01718063,0.23508468,-0.012030845,-0.09007902,-0.087046474,-0.09156546,-0.36186197,-0.5430025,-0.029285578,-0.3790286,-0.3416255,-0.1644148,0.17640981,-0.43986648,-0.13155463,-0.003710169,0.46084097,-0.4543485,0.009647434,0.3472522,-0.1510174,0.25577775,-0.6103469,-0.14311713,-0.05741373,0.49291164,-0.19073898,-0.06724033,0.25950795,0.4117951,0.36263138,0.012205105,-0.120711334,-0.2940292,-0.030842565,0.1123866,0.65456104,-0.24811424,-0.457779,0.0001210662,0.07468957,0.078164026,0.18927462,0.1043036,-0.3184407,-0.101338,0.21252856,-0.21239087,0.20548424,0.2740702,-0.39325052,-0.20492572,0.38954812,0.54382807,0.15500186,-0.056788232,0.02051591,0.09497293,-0.46098378,-0.13322297,0.025007006,-0.22984369,0.41492602,-0.06861124,0.43834892,0.732839,0.0018808658,0.15902121,-0.09786815,-0.03597874,-0.10824765,-0.22973031,-0.23656255,0.10548072,-0.40234885,0.2678801,0.03337002,0.7473206,0.16947764,-0.631944,0.3768938,-0.6201639,0.21675709,-0.20306683,0.4118128,0.629996,0.17645177,0.30580518,0.7347076,-0.42077562,0.049277425,0.006791768,-0.46839175,-0.037640233,-0.040910684,0.023446936,-0.54962665,-0.041197564,0.034116525,-0.05407427,0.16525069,0.09589525,-0.6635221,0.029522149,0.071722426,0.9095872,-0.26801857,-0.08770884,0.5087222,0.90133464,0.89413464,-0.027908228,0.88481647,0.2552395,-0.3335565,0.3915965,-0.5054972,-0.5360116,0.25359637,0.48093367,-0.2741335,0.18824036,0.036853906,-0.19487497,0.5962975,-0.3066311,0.1282587,-0.22908424,-0.0302217,0.16033506,-0.21645601,-0.42283887,-0.33856207,-0.2382161,-0.01605187,0.034031134,0.32123172,-0.111589834,0.22550653,-0.113110736,1.87462,0.076156415,0.086161934,0.14445725,0.4608816,0.1253621,-0.11378349,-0.17755239,0.28826892,0.46713746,0.085225455,-0.5903917,0.26348156,-0.3432294,-0.3529738,-0.0315272,-0.27705923,-0.12245015,0.10850942,-0.46890146,-0.06634263,-0.14578642,-0.28192317,0.5205578,-2.934577,-0.214904,-0.19710304,0.3321272,-0.3192658,-0.29896894,-0.04011703,-0.42743227,0.20526387,0.24207568,0.5649375,-0.59156257,0.4775488,0.3351598,-0.5296005,-0.17546375,-0.6300726,-0.14955367,0.020605328,0.17554328,0.05604922,0.017457949,0.14487979,0.19062024,0.33176595,-0.10381468,0.08500462,0.32234928,0.40352386,0.1669507,0.6312291,-0.09011956,0.56807333,-0.13656127,-0.18045303,0.21965793,-0.25186735,0.116830915,-0.07509504,0.025235187,0.4289232,-0.33165917,-0.9402335,-0.6081529,-0.18089046,1.1777561,-0.23133704,-0.13250592,0.41381344,-0.32125062,-0.11768985,-0.1218146,0.49934322,-0.043743666,-0.24797153,-0.78073955,0.122838184,-0.14377776,0.07344706,0.09195949,-0.25641996,-0.41638348,0.51391566,-0.1429707,0.54235476,0.34238476,0.16972455,-0.071191296,-0.25664812,-0.015097221,0.673758,0.24308476,0.068605125,-0.01896893,-0.050037246,-0.43721315,-0.0005563773,0.093164556,0.45400026,0.64984965,-0.0025464343,0.16228813,0.2945903,0.06626671,0.027381612,-0.102616735,-0.34953254,-0.0057208696,0.06729274,0.46862262,0.5194164,-0.21266763,0.5310574,0.030688496,0.14218229,-0.20040666,-0.35803193,0.41559362,0.9869555,-0.22589031,-0.1514361,0.44768128,0.48586333,-0.11480768,0.23939016,-0.48331717,-0.15015744,0.5128652,-0.25945187,-0.40878546,0.12930308,-0.30462843,0.08907537,-0.92366135,0.29555553,-0.38397,-0.540051,-0.3753082,0.0067583597,-3.505353,0.19047019,-0.45558488,-0.20495392,-0.0070032133,0.048038814,0.10872805,-0.8535966,-0.39541134,0.0973867,0.0794309,0.6463356,-0.094077736,0.047037106,-0.2323641,-0.13310665,-0.25835982,0.0316163,0.039307527,0.33190903,0.11019159,-0.4570312,0.043656625,-0.031578794,-0.37906837,0.18972093,-0.6885401,-0.38134164,-0.073709205,-0.6380418,-0.44915125,0.63294005,-0.27096123,0.17276603,-0.17557567,0.029094104,-0.09673281,0.29595873,0.14697419,0.14220876,-0.057625514,-0.010014396,-0.06236309,-0.21505621,0.2802057,0.010475071,0.40469298,0.07584477,0.039645456,0.212903,0.5694423,0.526006,-0.08543766,0.7903111,0.64708126,-0.13916558,0.19130588,-0.36060098,-0.1724846,-0.42569262,-0.45450175,0.109944,-0.3006372,-0.6843563,-0.0810961,-0.29069048,-0.6143033,0.38715157,-0.052720267,0.3150646,0.0023440432,0.057237286,0.4904208,-0.20531636,-0.029798033,0.0911613,-0.06845553,-0.56902534,0.008725862,-0.6359965,-0.47808176,0.33261442,0.8926396,-0.37609562,0.09915999,0.01802362,-0.3491888,-0.028114822,0.16113044,-0.029981641,0.25379556,0.31991932,-0.34872818,-0.70873463,0.3071992,-0.26106188,-0.086272925,-0.5789139,0.19187333,0.53780854,-0.57537854,0.63770556,0.19268686,-0.05938222,-0.08927514,-0.38589767,-0.26367396,-0.012647037,-0.20011054,0.22200654,0.0722787,-0.7093176,0.22335212,0.44555223,-0.3053969,-0.55537885,0.50820404,-0.015614129,-0.30087572,-0.03478165,0.2758757,0.24317035,-0.06249346,-0.12898096,0.18442297,-0.4565258,0.34952193,0.21520187,-0.18763453,0.15838967,-0.12330006,0.050181333,-0.7112513,0.06210598,-0.40513703,-0.22113389,0.30122307,0.12197766,0.2516163,0.028350811,0.0547569,0.28855312,-0.2064677,-0.032061413,0.13702682,-0.26785058,0.15889956,0.38893017,0.2859739,-0.47621676,0.49409962,0.011549121,-0.111690335,0.04325336,0.08354698,0.42289498,0.05989862,0.46168166,-0.22488506,-0.34082222,0.41254586,0.7572927,0.16010341,0.44030845,-0.017094554,0.0016461107,0.0335444,0.065871544,0.010938313,0.08740226,-0.506218,0.031027608,-0.15153146,0.23828061,0.64038473,0.19103941,0.24723099,-0.13699357,-0.45880458,-0.013500204,0.19638799,-0.04218116,-1.1776848,0.59308416,0.33447948,0.8119138,0.3417227,0.06716682,-0.033372242,0.6498733,-0.1364865,0.14567201,0.27378994,-0.18728612,-0.56179214,0.59533346,-0.8287322,0.4245488,0.058360025,-0.04169544,-0.009992485,-0.1236508,0.30918005,0.6090804,-0.2200174,-0.07994028,-0.06592633,-0.3314936,0.0585686,-0.34974077,0.17407773,-0.80412585,-0.33177012,0.37697843,0.72390264,0.18892011,-0.12555414,0.11307592,0.1507113,-0.04952326,0.19059907,0.016372409,0.1251124,0.08479067,-0.7380065,-0.25580594,0.49216413,-0.3270684,0.1378416,-0.073468976,-0.08819543,0.32098153,-0.2441222,-0.038971823,-0.09402338,-0.42624313,0.1169048,-0.24456501,-0.32404095,0.52031934,-0.038756672,0.28998443,0.18967925,0.07365825,-0.13714376,0.5638556,-0.12473588,0.7130959,-0.10151443,-0.23384021,-0.5129189,0.032168396,0.042577524,-0.014110153,-0.10389609,-0.39919478,-0.019876339,-0.45786554,0.49301112,0.19232494,-0.16873649,0.03289261,-0.24248083,0.0020389785,0.5582965,-0.18654491,-0.016121099,-0.20997629,-0.23044035,-0.27693504,-0.16812348,-0.06651009,0.17992646,0.26023343,0.23602965,-0.14944401,-0.11211956,-0.20571245,0.41482627,0.019242644,0.35763696,0.30044392,0.11531018,-0.095707186,-0.26433378,0.28722686,0.29587346,0.014152231,-0.14919697,-0.36953622,-0.4181824,-0.32901904,0.054518737,-0.17939216,0.5961824,0.014002692,-0.14642248,0.67005324,-0.03917452,1.1839579,0.006983466,-0.31683528,0.03484035,0.5543264,-0.025471352,-0.037467368,-0.22691822,0.82779056,0.49888128,0.050566796,-0.083683915,-0.29347867,-0.20134355,0.22539261,-0.17843,-0.07100557,0.11332656,-0.48259962,-0.3576488,0.22048889,0.10969555,0.26749262,-0.021764288,0.054171447,0.27479225,-0.07050767,0.21685109,-0.3699476,-0.4694491,0.22012475,0.31817257,0.056168642,0.17395224,-0.4998511,0.475385,-0.43635103,0.17160533,-0.23351629,0.22011471,-0.19721015,-0.17926511,0.2773334,-0.046036743,0.4457288,-0.19312249,-0.19960602,-0.13910809,0.50450236,0.20918515,0.06115113,0.6921225,-0.3241688,-0.023439636,0.08814111,0.47881082,0.7808411,-0.2957024,-0.075020514,0.493208,-0.3141333,-0.6264299,0.30463535,-0.18826698,0.044307653,0.14417964,-0.20858333,-0.49420956,0.2527049,0.16212644,-0.010819504,-0.09107128,-0.53608316,-0.2948781,0.15797184,-0.30381778,-0.16093418,-0.3880672,0.32513952,0.55386996,-0.37312853,-0.3411404,0.08823562,0.21862537,-0.109911166,-0.4430712,0.050321106,-0.3270056,0.23338103,0.12629727,-0.37790787,-0.23521468,0.039355107,-0.29483137,0.1374068,0.11903475,-0.36317757,0.17449203,-0.19095418,-0.28155234,1.0303582,-0.27399155,-0.019403577,-0.5670916,-0.28387785,-0.64365613,-0.47382516,0.58504236,0.051131897,-0.118722916,-0.5500735,0.011194816,0.087948285,-0.1918281,-0.2609658,-0.27581355,0.42597005,0.030351318,0.38842872,-0.08745696,-0.6903845,0.21730962,0.036477905,-0.17698534,-0.58748746,0.49932748,-0.081226215,0.93254447,0.022023259,0.09235242,0.24571115,-0.110494606,-0.14057311,-0.28891036,-0.30791414,-0.7507998,-0.16452552 -545,0.42676592,-0.092413254,-0.48785624,-0.18532579,-0.49393088,0.05026161,-0.32434678,0.21731278,0.13206774,-0.2815878,-0.11480349,0.05106269,0.044835076,0.3809694,-0.10602163,-0.671316,-0.10454391,0.18089648,-0.7452983,0.5316739,-0.5821596,0.3787261,0.16800027,0.32315433,0.115712516,0.4770876,0.38972086,-0.11526604,-0.08470085,-0.003648758,-0.099901035,0.25220823,-0.55620795,0.1495883,-0.1929217,-0.33831435,-0.0006710326,-0.23470223,-0.1437783,-0.63899004,0.12547311,-0.7687661,0.5664186,-0.10745035,-0.16482855,-0.023526588,0.39476764,0.4241861,-0.3325171,0.115881786,0.21050519,-0.2805153,-0.1452035,-0.38349593,-0.06050509,-0.5068851,-0.4111368,-0.10210258,-0.8031937,-0.38071543,-0.15293936,0.2394811,-0.28893065,0.05926438,-0.10590209,0.23979995,-0.47104874,0.0052037514,0.3020829,-0.22024852,0.2956889,-0.5068455,0.0039032907,-0.0684564,0.4745241,-0.020230126,-0.11917574,0.39716333,0.27585897,0.471385,0.33918297,-0.35743332,-0.25788662,-0.29331318,0.1298392,0.2775004,-0.15569475,-0.12149269,-0.2376948,0.026375918,0.4509596,0.4083951,-0.040469725,-0.1315305,-0.07646036,-0.09059179,-0.14505595,0.3608396,0.426311,-0.26683438,-0.34674436,0.20190766,0.53862405,0.13677311,-0.36050227,0.1429884,-0.084578745,-0.49871096,-0.19194373,0.1395971,0.08205213,0.35864955,-0.14608698,0.054346196,0.8822751,-0.17121363,-0.08674529,-0.06277293,-0.03225936,-0.16566628,-0.19360924,-0.019174652,0.03321722,-0.6015062,-0.040966094,-0.23751853,0.6543724,0.05275309,-0.6953696,0.27733764,-0.5230307,0.14049393,-0.0027369612,0.65101653,0.7356067,0.45853147,0.25007987,0.8025882,-0.27156994,0.22148682,-0.06496592,-0.40134788,0.104571454,-0.20385705,0.06580897,-0.5108701,0.19254528,-0.0688544,0.11362846,0.09370572,0.50268346,-0.5220926,-0.04278419,0.18698636,0.7575626,-0.35937622,0.0024781018,0.7236754,1.0131627,0.9712587,-0.0051591136,1.1416237,0.33902538,-0.17313747,0.019519437,-0.40863284,-0.4453477,0.13487844,0.4049013,0.114126794,0.4373541,-0.18205409,0.10997057,0.32764992,-0.3629634,-0.054970074,-0.0114370305,0.30119285,-0.007560935,-0.14624833,-0.40853047,-0.116095476,0.06900975,-0.011872313,0.10664476,0.29788375,-0.25130856,0.42530924,-0.09646825,1.4294958,-0.037341483,0.047602065,0.09029006,0.50023603,0.29748645,-0.07135147,0.063033886,0.46478468,0.36328694,0.008453194,-0.4993143,0.15985602,-0.36188596,-0.53444684,-0.19177583,-0.5547732,-0.10742122,-0.00855422,-0.40052766,-0.225772,-0.05357364,-0.31353232,0.30231082,-2.7720659,-0.21103045,-0.13244829,0.2633203,-0.26647827,-0.14900897,-0.10857344,-0.54118264,0.2853858,0.31773582,0.41883194,-0.5709442,0.62111056,0.50566477,-0.47896743,-0.13008225,-0.6261328,-0.12432463,-0.13020793,0.52347934,-0.03776696,-0.08270283,-0.076962724,0.33532923,0.761855,-0.0837527,0.17600326,0.44589496,0.3044799,0.07095089,0.5861697,0.0971655,0.50111467,-0.24875581,-0.22044098,0.4451689,-0.2102604,0.14454988,-0.076402694,0.021561485,0.45514172,-0.4533388,-0.9329871,-0.5785256,-0.19044554,0.94285494,-0.44992423,-0.4670104,0.19081448,-0.13578062,-0.07119005,0.14254193,0.46326408,-0.119530156,0.31389785,-0.66421473,0.17219158,-0.022354078,0.12235117,0.025981836,0.011338508,-0.31140572,0.6892806,-0.077214494,0.62628543,0.22784954,0.32650942,-0.18096225,-0.3303453,0.18047607,0.90160024,0.35382167,-0.07376243,-0.17504697,-0.39822942,-0.15470679,-0.22007407,0.08930296,0.41737628,0.6562028,0.022614345,0.2570336,0.29069212,-0.1731579,-0.0077639013,-0.1325688,-0.08990533,-0.00081767055,0.13540804,0.37716478,0.63177586,-0.07721125,0.50662243,-0.14737357,0.5034575,-0.08054373,-0.63345194,0.5947993,0.4281856,-0.18052399,-0.07651211,0.552412,0.59026414,-0.34146821,0.56295204,-0.7464294,-0.32602358,0.655177,-0.15365006,-0.32504478,0.2443444,-0.34007135,0.18035254,-0.7859254,0.21984488,-0.2470417,-0.3551035,-0.39935353,-0.3677726,-3.4313772,0.13572991,-0.097253,-0.11576462,-0.23737301,-0.058981992,0.31866282,-0.70285374,-0.510842,-0.0022698992,0.15743382,0.5901254,-0.039996658,0.07054987,-0.28631827,-0.29466945,-0.06592291,0.25426617,-0.010498965,0.24027407,-0.25267074,-0.53953326,-0.08480013,-0.109101236,-0.5583023,0.13214532,-0.42197537,-0.39379352,-0.13227497,-0.36571768,-0.20649588,0.59673476,-0.24101846,0.048182756,-0.28488135,0.017251585,-0.17744164,0.09562033,0.26035264,0.16802478,0.2123419,0.041567355,0.04377893,-0.3846132,0.33980414,-0.09879494,0.4304027,0.21972138,-0.018755361,0.19686921,0.43498605,0.41790238,-0.1682444,0.9448353,0.30418265,0.004421277,0.27957273,-0.2015519,-0.32129994,-0.7022786,-0.4579652,-0.2372742,-0.41746756,-0.45586595,-0.002583658,-0.35175645,-0.73978674,0.6961526,-0.03849848,0.36506423,-0.21476936,0.33201566,0.41001734,-0.2013696,-0.1261191,-0.050482597,-0.31507814,-0.44731444,-0.3146595,-0.7219419,-0.6169931,0.039563973,0.95748454,-0.33030513,0.029049776,-0.10593519,-0.10405994,-0.015523614,0.17302617,0.13203083,0.32409358,0.43894392,-0.0549025,-0.6937531,0.4939413,-0.1624617,-0.10040266,-0.40958494,-0.020801533,0.5034864,-0.72280777,0.45887688,0.3116215,0.13030347,0.16013591,-0.5459226,-0.051350325,0.047937654,-0.22792593,0.5072379,0.14897764,-0.7761903,0.5873137,0.16483569,-0.37398273,-0.6419937,0.33542752,-0.06775281,-0.32391235,0.025104284,0.3647251,0.124858916,-0.16317089,-0.18150128,0.17800036,-0.47381642,0.24935745,0.26145357,-0.057702586,0.3642935,-0.092510656,-0.38104108,-0.6747798,-0.055495467,-0.44062933,-0.31818917,0.100906976,-0.01640243,-0.047155954,0.19027698,0.001995788,0.3876452,-0.26542652,0.14701262,-0.022172824,-0.33777934,0.3270653,0.46835232,0.37834653,-0.32602787,0.51349425,0.15529835,-0.20475891,-0.025146568,0.04751921,0.3898799,0.030607501,0.43469906,-0.18822803,-0.15391193,0.5134518,0.5297598,0.19982211,0.36816403,0.08029195,-0.26779866,0.37683558,0.006213583,0.070502914,0.024609586,-0.3861199,-0.014976042,-0.03647158,0.18123727,0.47602105,0.30038112,0.41230634,0.106880456,-0.065659605,0.15306413,0.2034371,-0.17003058,-1.1982033,0.3441272,0.35734513,0.69183713,0.47244874,0.118127026,-0.22711046,0.6242628,-0.39130998,-0.0039217053,0.38269755,0.007973804,-0.32914072,0.8004637,-0.6300311,0.4937825,-0.1869059,-0.12611046,0.08515031,0.0571704,0.34911865,0.9435314,-0.09533269,0.118279174,0.054362837,-0.20437855,0.09172169,-0.22349863,-0.06968987,-0.31542614,-0.36942986,0.70617723,0.21896884,0.4235166,-0.18660723,-0.09136225,0.058775697,-0.23178254,0.28450677,-0.08886609,0.05814209,0.031083688,-0.3012902,-0.3389045,0.4874148,-0.012921256,0.16542695,-0.12820311,-0.36112148,0.036808643,-0.16382243,0.072348826,0.026205175,-0.5708141,-0.019105325,-0.21960768,-0.5161577,0.59363806,-0.3290762,0.18151586,0.13215786,-0.06627122,-0.23936269,0.15227424,0.031294398,0.5967126,0.11003257,-0.21647994,-0.12891541,-0.024994746,0.28972292,-0.30351895,0.0619145,-0.33851567,0.16323127,-0.63718694,0.4891613,-0.19629762,-0.4741138,0.22886604,-0.18752076,-0.015799837,0.4349718,0.06988022,-0.2281322,0.13568231,0.07405576,-0.3356396,-0.1203291,-0.32831043,0.2473905,0.08202448,-0.096917085,-0.12659006,-0.14303195,0.009071084,0.5130189,-0.014623187,0.39025858,0.18563387,-0.06553456,-0.2388835,0.17135644,0.22008084,0.33897176,0.10148146,0.10301774,-0.26817188,-0.4526284,-0.30624127,0.2143262,-0.18120295,0.17292397,0.08694731,-0.3063668,1.0454699,-0.025035521,1.1560079,0.07634526,-0.29601076,0.11087933,0.45163777,-0.06755044,0.14299114,-0.35614485,0.8487108,0.5914589,-0.20606922,-0.18039243,-0.36896336,-0.046132255,0.3625371,-0.43767968,-0.060983866,-0.07891343,-0.58480364,-0.4951641,0.21552481,0.16577867,0.14363071,-0.033433948,-0.039693784,0.100004785,0.077893436,0.36362973,-0.6579671,-0.16726822,0.25306445,0.24108899,-0.1579904,0.18404257,-0.45631382,0.49052772,-0.6671123,0.14810304,-0.42266092,0.09509012,-0.13470575,-0.43857467,0.16472319,-0.011613446,0.25497478,-0.27182114,-0.45628238,-0.046100155,0.52486014,-0.021525815,0.16737483,0.6864923,-0.35350284,0.084943116,0.042903025,0.41971254,1.2452444,-0.408714,-0.116912164,0.28569952,-0.43662453,-0.6193389,0.28262255,-0.4211526,-0.06382681,-0.15076624,-0.6623723,-0.3116979,0.30590096,0.13118306,0.071568444,0.12675111,-0.46768048,-0.0019315752,0.2841503,-0.28340152,-0.26635274,-0.12783222,0.34040084,0.72096807,-0.32390907,-0.20611098,0.03609228,0.3213023,-0.31230304,-0.47906342,0.0027013104,-0.15457757,0.46406594,0.049231447,-0.18415299,0.01619428,0.13956791,-0.37205294,0.12908186,0.5057578,-0.32553616,0.0027591656,-0.30784836,-0.08253807,0.84768057,-0.10981888,-0.14528431,-0.47580898,-0.4321211,-0.9088715,-0.5624868,0.11487756,0.15556903,0.02093191,-0.37331554,0.05764825,-0.08931253,-0.14563121,0.1920509,-0.5130823,0.39516348,0.11654767,0.47905603,-0.17382413,-0.9205907,0.0865462,0.13571306,-0.1510169,-0.6528585,0.6351069,-0.25267926,0.7705915,0.09579508,-0.08266172,0.074254304,-0.37435588,0.27099815,-0.3624497,-0.054985188,-0.8119465,-0.042681698 -546,0.40010044,-0.4011125,-0.5130579,-0.07328784,-0.10146293,-0.07814579,-0.24375735,0.3928626,0.41587305,-0.20579968,-0.24905902,0.05055678,0.14615153,0.40059346,-0.14415874,-0.70281506,-0.19890517,0.19371401,-0.62488407,0.4810293,-0.46687806,0.27585465,0.009558907,0.40735933,0.104336455,0.38261706,0.16161115,-0.009348557,-0.087450914,0.04158093,-0.17708112,0.39336762,-0.51258963,-0.021028932,-0.2323809,-0.27191177,-0.06819194,-0.35829383,-0.46364912,-0.8071508,0.32637978,-1.0379556,0.5476849,-0.047426745,-0.25425673,-0.14489628,0.22994004,0.3310095,-0.50756085,-0.08473598,0.23136099,-0.21314606,-0.21769592,-0.38962382,-0.068011835,-0.26969016,-0.5348567,-0.008390257,-0.50424033,-0.17612007,-0.1476573,0.30598906,-0.25628722,0.047131684,-0.2889018,0.32387745,-0.40994897,0.042085275,0.55893624,-0.2549481,0.25583,-0.66219836,0.003562863,-0.042787287,0.42662513,0.18644069,-0.35777935,0.39751127,0.5768829,0.4357438,0.29080203,-0.37795708,-0.4300236,-0.0669755,0.21873361,0.47088,-0.31535274,-0.41835684,-0.14678676,0.055824675,0.41809368,0.29866135,0.12219561,-0.13370898,-0.08972238,-0.025069036,-0.0013192686,0.5362605,0.6928953,-0.20766751,-0.40327394,0.2906799,0.6274825,0.37038672,-0.107781775,-0.12015385,-0.08084749,-0.55699575,-0.13656107,0.09123291,-0.2870714,0.61543745,-0.16170758,0.089119725,0.8701217,0.012369289,-0.12405847,-0.06928721,0.03386998,-0.09987906,-0.48736987,-0.10838742,0.19825648,-0.42616907,-0.028474726,-0.22777121,0.46297625,0.08875612,-0.69421333,0.46390554,-0.40956414,0.21836469,-0.007340789,0.6667054,0.75716305,0.6434917,0.4405378,0.95843667,-0.4103395,0.04539223,0.037044488,-0.4317716,0.1011219,-0.3760246,0.1847186,-0.40387917,0.21750242,-0.2989083,0.06765147,0.21583289,0.53032047,-0.58355,-0.20997097,0.24560253,0.7597409,-0.25143465,-0.11102295,0.63278604,0.94898564,0.895078,-0.066097066,1.3379171,0.35473666,-0.20815077,0.07218997,-0.36731467,-0.80390006,0.18110028,0.45324105,0.13087524,0.34710568,0.0056848573,-0.13980922,0.514802,-0.39528656,-0.020708203,-0.11201504,0.27346843,0.16225658,-0.18804012,-0.49628654,-0.04299798,-0.19955325,-0.021822095,0.1996164,0.12515916,-0.33182466,0.33964866,-0.0920958,1.491657,-0.17546853,-0.0069825146,0.09737253,0.50312996,0.31167233,-0.12043564,0.030819017,0.50389093,0.5003521,-0.024343142,-0.58029467,0.22001132,-0.36573908,-0.44229868,-0.13885428,-0.36885172,-0.22774515,0.14276096,-0.43437284,-0.15486453,0.0031765471,-0.10464855,0.33286333,-2.5712903,-0.37292764,-0.22737652,0.39297736,-0.29038838,-0.21225952,-0.057713397,-0.5836167,0.32067955,0.22597793,0.6317062,-0.70383734,0.49287716,0.5264647,-0.673307,-0.032046024,-0.6492968,-0.09027282,-0.069746144,0.51889175,0.07893737,-0.25043407,-0.18910058,0.02562411,0.81575924,0.12388612,0.1219228,0.78635746,0.5354044,-0.28700647,0.509819,-0.14514455,0.71561325,-0.29394788,-0.20276326,0.49263757,-0.291308,0.5102112,-0.28684896,0.028714428,0.6907516,-0.4044389,-1.0472993,-0.53593224,-0.05299323,1.020507,-0.4143373,-0.6180235,0.28663152,-0.4165511,-0.2352766,0.019258497,0.7534546,0.12281636,0.19134524,-0.6745453,0.0198677,-0.12542133,0.21576524,0.047319695,-0.22675492,-0.32987386,0.9548378,-0.040894803,0.66361916,0.31906906,0.1946989,-0.22601286,-0.26245242,0.070847645,0.81134886,0.42521226,0.022968577,-0.12710527,-0.2662006,-0.07918203,-0.25461295,-0.17103036,0.7414342,0.64622307,-0.2051492,0.113393225,0.30130914,0.18168102,-0.18270746,-0.20214356,-0.20122987,-0.2299359,0.07915953,0.38974208,1.0913441,-0.314328,0.30369696,-0.2501745,0.3309277,0.111189075,-0.6962933,0.751633,0.5210297,-0.22601043,-0.1340636,0.7956658,0.36746475,-0.42591894,0.48766062,-0.7414944,-0.25131208,0.64312947,-0.17319417,-0.4543482,0.3259192,-0.31823447,-0.041685656,-0.69829834,0.21193933,-0.17867139,-0.30352893,-0.43129513,-0.13422845,-3.1222837,0.22593714,-0.25636542,0.0068687657,-0.3941471,-0.09805958,0.28041384,-0.7299588,-0.66872185,0.32860184,0.2981656,0.51793957,-0.060901627,0.1359246,-0.1716462,-0.1281627,0.10340735,0.19496796,0.0723129,0.22769362,-0.15906051,-0.54185146,-0.08576916,0.0074552116,-0.5968328,0.21175687,-0.6934343,-0.49802992,-0.14134425,-0.5929125,-0.088455915,0.6040256,-0.4567172,0.0002300556,-0.29397035,0.2005895,-0.17047574,0.08690696,-0.08492542,0.33876494,0.097211875,-0.17300144,0.24107759,-0.121421926,0.5320584,0.029453686,0.47339675,-0.004515171,-0.1359212,0.14763466,0.4063379,0.82243663,-0.4464889,1.142458,0.57741046,-0.07361303,0.22890283,-0.0011785534,-0.26819447,-0.6773206,-0.40574265,0.16289082,-0.57741827,-0.45056045,0.06005744,-0.4909827,-0.9303316,0.633974,-0.049134668,0.5307666,0.05317863,0.28275606,0.586901,-0.44547954,0.039608486,-0.06603651,-0.25356582,-0.5363947,-0.35069895,-0.6109784,-0.55763173,-0.030530801,0.8996289,-0.25847176,0.078874916,0.009323881,-0.350374,-0.0863992,0.15083821,0.01374368,0.19130953,0.7101629,0.055018984,-0.67214274,0.44942126,-0.078127146,-0.08669865,-0.56880426,0.20947228,0.42333305,-0.80542666,0.83096415,0.312803,-0.06365558,-0.032290623,-0.6502364,-0.38967612,-0.20199277,-0.18416712,0.64344543,0.27195185,-0.7313565,0.5378414,0.43694365,-0.64088416,-0.69353074,0.28589427,-0.23488078,-0.33722863,-0.29190123,0.27463058,0.21903093,-0.012715266,-0.1439791,0.15626076,-0.40338737,0.30738974,0.1925042,-0.16369708,0.28815788,-0.19786112,-0.35912684,-0.9779556,-0.040332302,-0.48423958,-0.19383337,0.42419764,-0.14953937,-0.040623114,-0.052566543,0.23033156,0.4192743,-0.3219661,0.1455602,0.051373184,-0.58302844,0.30900744,0.4571339,0.49505666,-0.49402338,0.49860412,0.13768,-0.42860237,-0.0012857777,0.049403496,0.44795698,0.02631583,0.4904204,-0.23251557,-0.035184246,0.3657343,0.9138399,0.025982806,0.48666164,0.12530454,-0.118029244,0.4821631,0.08269335,0.17991462,-0.12637514,-0.6426421,0.08731919,-0.09581113,0.16595362,0.62025267,0.41407472,0.28603995,0.06140024,-0.2733484,-0.0027249032,0.16692199,0.18014309,-1.1912055,0.30230427,0.3453994,1.257133,0.24521755,0.19520536,-0.31787217,0.69347984,-0.110234454,0.11804809,0.4849301,-0.2422072,-0.5527105,0.6789779,-0.6641391,0.31142104,-0.1638681,-0.039062344,0.2657327,0.26890475,0.326259,0.9136304,-0.23526806,-0.028989378,0.026602749,-0.17313674,0.12857477,-0.44393656,-0.058257937,-0.41728038,-0.5392347,0.68874836,0.5870905,0.5309951,-0.24103044,-0.04693655,0.04563568,-0.23031497,0.20419241,-0.144506,-0.081589565,0.0091001205,-0.6814259,-0.018375289,0.49899098,0.16848357,0.18156716,-0.33921528,-0.27619043,0.12981488,-0.32297662,-0.24250051,-0.13445823,-0.80698735,-0.10729842,-0.34339464,-0.7671336,0.60716516,-0.056145407,0.087019734,0.29567665,-0.0772829,-0.15437657,0.491255,-0.16166753,1.1016986,0.06339332,-0.25894326,-0.48575976,0.28454477,0.3122414,-0.25629744,0.33959338,-0.49376696,0.059194207,-0.44705644,0.70292753,-0.22585584,-0.43273816,0.24405967,-0.32153767,-0.048194,0.51534235,-0.22763707,-0.19855836,-0.011097748,-0.26296142,-0.4667285,-0.29264316,-0.29165003,0.24459466,0.27955666,0.027219405,-0.08267595,-0.24665792,-0.22168483,0.56497824,0.0820857,0.43783882,0.33324718,-0.031864174,-0.15669163,0.1251448,0.40630677,0.66616166,0.19032016,-0.17257024,-0.5429094,-0.6535318,-0.4399112,0.26108617,-0.0015640488,0.34223667,-0.027468609,-0.16707842,0.9823441,0.083617456,1.2168218,0.20900853,-0.37327954,-0.04873459,0.7187278,-0.19717774,0.097579904,-0.50780344,0.8071575,0.47436947,-0.13277198,0.19122069,-0.55103153,0.13570857,0.38918126,-0.44078827,-0.04554597,-0.09336197,-0.6915069,-0.41168773,0.19579981,0.18382683,0.2937349,-0.08019649,0.10029804,0.05313817,0.11795466,0.26446855,-0.6459837,-0.49485844,0.27989727,0.20394073,-0.18109773,-0.13882755,-0.45544508,0.47448623,-0.48483467,-0.017765045,-0.5125564,0.08307834,-0.30731076,-0.40570518,0.15840207,-0.19910343,0.4188332,-0.5039583,-0.46206692,-0.06902605,0.3786109,0.10434219,0.09714343,0.55650914,-0.36302522,-0.030248495,0.21836373,0.6763856,1.2244596,-0.6714259,0.13967624,0.38137674,-0.4991318,-0.670914,0.5750407,-0.23134503,0.08563748,-0.005358297,-0.49922377,-0.57454705,0.2428403,0.105536625,-0.0074958475,0.065921955,-0.62873244,-0.2735433,0.36898452,-0.29684144,-0.09849973,-0.014299411,0.37853816,0.7090721,-0.3352383,-0.5307146,0.2457849,0.30423266,-0.18012787,-0.4495306,-0.064820506,-0.35253355,0.24259886,0.039379843,-0.4087334,-0.11805444,0.09909793,-0.6184177,0.08500493,0.24747115,-0.41468212,0.17567381,-0.24766019,-0.11417178,1.0681807,-0.31119904,0.06062657,-0.776387,-0.43605083,-0.9822022,-0.42890328,0.19085161,0.12806135,-0.19881727,-0.55155563,0.010808908,-0.16796145,-0.0029314721,-0.061091576,-0.52007043,0.53154415,0.0543521,0.6898263,-0.38463798,-0.84313864,0.061995186,0.17686334,-0.17043863,-0.5281293,0.7626855,-0.016746558,1.0343251,-0.05112344,0.09421044,0.08148125,-0.4514414,0.07280152,-0.40895572,-0.14969099,-0.86084455,0.06460089 -547,0.51568323,-0.2674424,-0.38963905,-0.101524904,-0.118014805,0.09241285,-0.0015864457,0.3375191,0.26705712,-0.2737455,-0.08297624,-0.16346404,0.025960108,0.27623987,-0.17072947,-0.8083639,-0.037483923,0.123640485,-0.3263637,0.42308024,-0.37784904,0.34544924,-0.07603365,0.23208325,-0.09907281,0.32714692,0.25112623,-0.29099995,-0.013130145,0.0019552857,-0.19526227,0.16383699,-0.60430086,0.021226197,-0.0020345193,-0.18841097,0.21000752,-0.35345054,-0.2332803,-0.63018167,0.3379211,-0.7633683,0.39286858,0.14706846,-0.09884382,0.30216202,-0.19223757,0.26311168,-0.31120515,0.05585184,0.047737896,-0.07144358,-0.019898316,-0.18275991,-0.13051543,-0.37274057,-0.48406228,0.028127978,-0.32176128,-0.18899354,-0.16111241,0.041528992,-0.297456,-0.10957297,0.06032764,0.24096592,-0.46627048,0.050600078,0.33421153,-0.17035381,0.25618455,-0.40059265,0.024879022,-0.097407155,0.34315267,-0.25641784,-0.16878045,0.22826442,0.44325835,0.3940112,-0.08145278,-0.1459633,-0.21784171,-0.08635575,0.19549678,0.5300181,-0.12922364,-0.5816822,-0.1234162,-0.021094492,-0.028785374,0.16751547,0.020076016,-0.36501098,-0.12431042,0.1068346,-0.27940556,0.27746886,0.44003874,-0.41382048,-0.31760964,0.3997321,0.6428029,0.13052307,-0.037689645,-0.029313995,0.1738118,-0.49746588,-0.18615505,0.23775665,-0.28774303,0.61603105,-0.18406709,0.2248695,0.6405425,-0.35973138,0.20151745,-0.06325697,0.019265512,-0.20486614,-0.14049332,-0.12867878,0.29231492,-0.47070804,0.14847526,-0.22325647,0.90250885,0.34255102,-0.6830158,0.47097495,-0.50742304,0.17281236,-0.20725104,0.56791145,0.63718647,0.24622223,0.17743602,0.73827946,-0.6321686,0.053674288,-0.107192025,-0.5172413,0.14630751,-0.06409539,-0.1962444,-0.42440027,0.07876384,0.15118659,-0.050079104,0.07618432,0.033282883,-0.5835019,-0.043731757,-0.021716604,0.7989453,-0.3093808,-0.03842282,0.4396043,0.8500537,0.7292576,0.08877695,1.2998568,0.32486406,-0.34841195,0.22457579,-0.3519916,-0.8763793,0.1795298,0.37426096,-0.39093986,0.2971129,0.13367887,-0.08557142,0.32335573,-0.3197483,0.019106904,-0.22156502,0.3497918,0.02358016,-0.035291784,-0.32084513,-0.17242952,-0.076307885,0.026922744,0.20706545,0.27999836,-0.18735263,0.24025975,0.22609894,1.6920542,-0.071257696,0.2063636,-0.010559755,0.4286614,0.23226693,0.04800723,-0.1899121,0.40474734,0.4008099,0.21555343,-0.63175136,0.1119685,-0.1926204,-0.50190645,-0.10098672,-0.1936507,0.014248759,0.13513419,-0.24638236,-0.08533596,-0.06094462,-0.08696639,0.6604367,-2.6592064,-0.16641323,-0.19326143,0.37690592,-0.39631358,-0.352025,-0.11299207,-0.51146954,0.25621584,0.33987805,0.3865704,-0.80152035,0.17609453,0.36738768,-0.4635234,-0.20163603,-0.59029925,-0.11080301,-0.032453798,0.30243784,0.06509818,-0.053298257,-0.016786452,0.11239966,0.30501264,0.063389756,0.012759618,0.18129984,0.41565377,0.27638173,0.32972902,0.018102573,0.49704382,-0.12030617,-0.104883365,0.20953846,-0.24739827,0.48891982,-0.11624866,0.1302023,0.2609017,-0.34398818,-0.81280524,-0.74153507,-0.42519385,1.194133,-0.24803059,-0.36525688,0.14178917,-0.037176576,-0.16534296,-0.2191684,0.4205308,-0.12684244,-0.1628094,-0.8014436,0.18176362,-0.083103135,0.26161534,0.13746315,-0.0445191,-0.28872514,0.6424042,-0.110802375,0.3666079,0.333951,0.1482207,-0.008987563,-0.521475,0.02005182,0.89384973,0.2576986,0.17516662,-0.14440596,-0.11220901,-0.34875712,-0.042619742,0.052152928,0.3734817,0.8119596,-0.03505372,-0.116010725,0.37763402,0.08409149,0.06701321,-0.09803694,-0.28451782,-0.060512338,-0.25343746,0.5021587,0.6002387,-0.39597878,0.31111187,-0.013894683,0.17654128,-0.14254029,-0.33667582,0.73203224,0.9799171,-0.18605646,-0.0727613,0.46163034,0.33769602,-0.46944332,0.3086372,-0.6998784,-0.1158335,0.51621383,-0.15858619,-0.36660808,0.14742303,-0.31714985,0.12855771,-0.8131651,0.3502226,-0.12932628,-0.07904802,-0.48664555,-0.034486473,-3.7010481,0.2715206,-0.24371007,-0.09232955,-0.15242028,0.05819788,0.221579,-0.61762667,-0.47184733,0.35467482,0.01612806,0.5346699,-0.0066451197,0.2489827,-0.31851768,-0.2141908,-0.40200514,0.0036273429,0.10491353,0.21934983,0.021905115,-0.3974072,0.050924875,-0.17835389,-0.2724535,0.23861173,-0.39717227,-0.467886,-0.14252672,-0.44430476,-0.30482382,0.7032653,-0.43998143,0.07164502,-0.23068886,0.016489347,-0.26080674,0.30255753,0.050719433,0.026786625,-0.118037425,0.07243546,-0.07991849,-0.3314788,0.4326641,0.056959014,0.20131257,0.24404632,-0.14411448,0.015735183,0.51915485,0.65104806,0.051762037,0.69516885,0.41931105,-0.11386383,0.29918113,-0.2901279,-0.10846947,-0.4321501,-0.38544145,-0.07728305,-0.38666183,-0.48847595,-0.16924174,-0.33379784,-0.6286513,0.42240328,0.003920172,0.14514913,-0.012142627,0.2686855,0.51996005,-0.24208105,0.12752098,0.0762856,-0.14990725,-0.6135988,-0.22372939,-0.5512685,-0.21391544,0.45054218,0.78341764,-0.3475761,-0.16298553,-0.023787903,-0.19290686,-0.025038991,0.041400485,-0.028866012,0.18202294,0.30495828,-0.19010016,-0.6151823,0.57872295,-0.08580029,-0.25188664,-0.71354496,0.038617726,0.53370416,-0.7708327,0.5005287,0.34782505,-0.027748445,0.20353971,-0.38525528,-0.3109341,0.060038473,-0.3127444,0.2088971,0.12849902,-0.60102886,0.29951388,0.3976782,-0.18725345,-0.61479825,0.5509848,0.016378125,-0.29953668,-0.004340949,0.35286894,0.24385493,0.048936166,-0.12447716,0.13810113,-0.46850938,0.10767969,0.35567078,-0.07285981,0.4382711,-0.078805745,-0.026943717,-0.7994413,0.018669413,-0.53986603,-0.1611854,0.21651459,0.1029992,0.093509056,0.04971854,0.23252876,0.42285585,-0.40428463,0.050992332,0.16221943,-0.13110706,0.30802208,0.33213946,0.34726575,-0.37157372,0.54092276,-0.024847584,-0.0073313927,0.041767474,0.1047293,0.47571626,0.25944316,0.25859728,0.15692422,-0.26077744,0.29837936,0.8006088,0.13420317,0.3916826,0.011306771,-0.07290652,0.33117953,0.24504313,0.077145256,0.26988357,-0.4665483,-0.12235492,0.08251437,0.13963965,0.5123952,0.25474268,0.34951606,-0.13411827,-0.28517863,0.002750069,0.16145894,0.006222908,-1.0207411,0.23619436,0.24176274,0.6579806,0.39658743,-0.07405118,0.076133505,0.34279054,-0.1796962,0.24294178,0.35092688,-0.112593494,-0.56090504,0.49031025,-0.62273943,0.34151396,-0.0851091,0.046266735,0.042259395,-0.074723735,0.17715219,0.84932816,-0.08842609,0.00010552151,-0.16965567,-0.27998644,0.10395197,-0.39735144,0.0630849,-0.59245354,-0.2560026,0.5573951,0.49281248,0.37788078,-0.17245825,0.037470575,0.009386854,-0.0892421,0.12056724,-0.102498576,0.1835911,0.10572393,-0.68002087,-0.2993164,0.59812194,-0.120242305,-0.013643137,-0.21440932,-0.17688973,0.27815557,-0.23814689,-0.10281285,-0.074621566,-0.68858296,0.031551667,-0.11405829,-0.47413325,0.46332914,0.04592875,0.20785515,0.18873072,0.071696766,-0.37055284,0.37825212,0.17287104,0.77964294,-0.08781387,-0.22510158,-0.69447106,0.23086669,0.24997686,-0.14267494,-0.041450433,-0.25856024,-0.005453604,-0.4693105,0.44591472,0.057123307,-0.11349409,-0.011207036,-0.2936439,-0.007698402,0.60271806,-0.2854319,-0.20757703,0.01658082,-0.22297192,-0.27598125,-0.1430695,-0.23373199,0.21235396,0.3475078,-0.03993268,-0.06558777,-0.22618021,-0.24935268,0.3288305,0.18366113,0.18198964,0.41333872,0.09575007,-0.24750592,-0.3630043,0.110984154,0.31750014,-0.18949951,-0.21194272,-0.3752547,-0.6614006,-0.3103731,0.030865695,-0.11034404,0.34770563,0.04483521,-0.24926038,0.5575182,0.028272403,1.0636145,0.12908855,-0.23559897,-0.045020778,0.5529898,0.04417502,-0.03417152,-0.42622146,0.93286073,0.5025278,-0.17228699,-0.2073694,-0.2536076,-0.17332435,0.14184023,-0.19783816,0.12674752,0.065393366,-0.73519856,-0.36195877,0.24483828,0.21561602,0.12208898,0.09055551,-0.022238161,0.084375344,0.14296699,0.41702494,-0.50471354,-0.2601127,0.23639403,0.21501262,0.18360053,0.27692667,-0.21517162,0.48314548,-0.39589623,0.016479015,-0.36160707,0.18575104,-0.19339553,-0.24250937,0.17590424,0.06764383,0.42579156,-0.34475204,-0.5468681,-0.25077948,0.4550435,0.20175031,0.15460436,0.5382799,-0.1932037,0.0038465688,0.017492592,0.55945134,0.99932915,-0.11580886,-0.011035462,0.5048159,-0.38570762,-0.59346473,0.19941917,-0.29468325,0.19841042,-0.071028754,-0.13144697,-0.62589127,0.30731383,0.20118788,0.078037724,0.11782757,-0.68679196,-0.31394482,0.24682817,-0.4455438,-0.22697568,-0.2879303,0.3381768,0.84521854,-0.39286375,-0.2783049,0.09340318,0.2070028,-0.15639997,-0.5169321,-0.21719684,-0.39916542,0.33674297,0.21219052,-0.2975793,-0.14427991,0.103346534,-0.37039572,0.21010546,0.14517106,-0.36284113,0.14304115,-0.22732762,0.05508756,0.8669445,-0.15553491,0.03718389,-0.6558679,-0.3662848,-0.823505,-0.4225656,0.5319678,0.14217289,0.08809978,-0.460499,0.09649592,0.009423473,0.039121162,-0.12505394,-0.38292128,0.49980202,0.14076522,0.34827238,0.025522564,-0.8249292,-0.11643256,0.03393365,-0.21643913,-0.6013864,0.51613563,-0.119953506,0.80022043,0.057217818,-0.011767368,0.37033367,-0.4341159,-0.107401155,-0.36626515,-0.21539056,-0.7660518,0.15987955 -548,0.30875817,-0.31982443,-0.50262606,-0.17107148,-0.17111687,0.10202718,-0.124803536,0.42721042,0.13809742,-0.4927179,-0.073740244,-0.18806301,0.022218456,0.1367421,-0.13128221,-0.4299131,-0.12094506,0.14543805,-0.5777926,0.50783765,-0.3187925,0.09323556,-0.10867474,0.310299,0.16631658,0.34396204,-0.11494126,-0.11403109,-0.1019107,-0.033471633,0.030735109,0.3512536,-0.6509897,0.22670303,-0.05535348,-0.18411948,0.051076118,-0.49780035,-0.50481135,-0.7258393,0.39580607,-0.9013811,0.5358705,0.13133694,-0.16118181,0.3215247,0.12038396,0.34842965,-0.27611533,-0.10547737,0.29409933,-0.18236296,-0.07000028,-0.25601903,0.11486639,-0.31474692,-0.49054766,-0.011470703,-0.39895663,-0.3827731,-0.3221427,0.14955345,-0.35412127,-0.1848785,-0.13127455,0.7992834,-0.460887,0.159571,0.20590737,-0.20858887,0.4144197,-0.64718246,-0.13120957,-0.052373935,0.40471736,-0.26403934,-0.2652451,0.31052324,0.30649948,0.27271408,-0.018448949,-0.18930969,-0.23964259,0.01576577,0.29828882,0.39731073,-0.16970359,-0.5059225,-0.010186568,0.06377875,-0.17109013,0.12483476,0.12303661,-0.42609975,-0.1217907,0.17669296,-0.14699593,0.42773703,0.5475913,-0.14682774,-0.21793151,0.35167545,0.581304,0.1854759,-0.010212285,0.022837268,0.062797114,-0.47010064,-0.23974656,0.0807277,-0.22214173,0.4796255,-0.2013717,0.17859736,0.71812165,-0.17283395,-0.09690865,0.11784321,0.07754888,0.038948417,-0.32842,-0.2776852,0.2737865,-0.44526443,0.177844,-0.11226697,0.59862053,0.20910628,-0.6817195,0.25257373,-0.4989302,0.19570984,-0.06064058,0.49109176,0.6905862,0.5766963,0.41413808,0.65862805,-0.5425482,0.12353051,-0.0123291975,-0.40107885,0.115219064,-0.28336987,-0.03785305,-0.5952496,-0.038752895,-0.14690728,-0.044051316,-0.05129098,0.12712203,-0.52802217,0.02921938,0.1159702,0.897282,-0.2659799,0.010161653,0.6864279,0.88925844,0.9010662,0.08997548,1.0132214,0.16463096,-0.34231743,0.39226553,-0.1619672,-0.7658666,0.32141414,0.36647388,0.2576507,0.10405155,0.14340773,0.064476855,0.5535034,-0.5633596,0.10897901,-0.21343371,0.26578426,0.23228168,-0.21660236,-0.34665203,-0.13128941,-0.1450247,-0.0268487,-0.15009773,0.14650556,-0.16345404,0.3502153,0.14303407,1.7337452,-0.022526069,0.084525295,0.027411535,0.4636797,0.1089476,-0.12052013,-0.070883475,0.5251408,0.30827922,0.307756,-0.6565892,0.14287034,-0.093242414,-0.47936395,-0.13047884,-0.3817045,-0.04653847,-0.071592584,-0.4706857,-0.25553444,-0.18941642,-0.2027893,0.41366524,-2.8154237,-0.06752796,-0.061074786,0.4484914,-0.24672388,-0.35248327,0.0820275,-0.43045053,0.3145654,0.3002201,0.46254316,-0.65518224,0.34791797,0.3692817,-0.6803737,-0.04837806,-0.5551178,-0.11405944,-0.11242322,0.37340617,0.019925723,0.027968619,0.10921068,0.03606754,0.46598586,-0.17471208,0.15845494,0.33176002,0.4208955,-0.009276067,0.6682091,-0.06290591,0.4640757,-0.2909508,-0.19878875,0.23894587,-0.363547,0.13467352,-0.04323066,0.03264668,0.44246894,-0.49009943,-0.8724774,-0.7880369,-0.17864569,1.0812868,-0.28812045,-0.43331861,0.34542444,-0.6303504,-0.16561112,-0.1581011,0.46681514,-0.0012639835,0.032659505,-0.80877155,0.10694974,-0.12197248,0.11944078,0.052141182,-0.13975775,-0.49696127,0.76735383,-0.031755794,0.5381169,0.33309892,0.04960799,-0.39781502,-0.50659955,0.0736627,0.7677153,0.32917714,0.18677017,-0.13407384,-0.19357629,-0.16306125,-0.12393583,0.07674115,0.66376895,0.6220914,-0.04319539,0.19072689,0.27624688,-0.118283086,0.07338763,-0.23523216,-0.35176426,-0.15046866,0.039805464,0.5455079,0.5667876,-0.19129166,0.39987674,-0.060315665,0.23560587,-0.029085146,-0.38710123,0.4794212,1.1287817,-0.106387995,-0.306014,0.4633972,0.461263,-0.32407537,0.32923433,-0.522147,-0.1725374,0.56308764,-0.31667447,-0.581205,0.14823686,-0.28410387,0.12414096,-0.78759444,0.29647207,-0.34731865,-0.5859322,-0.5579714,-0.053389568,-3.5300632,0.11258374,-0.348662,-0.15659143,-0.12836877,-0.09956469,0.112104245,-0.5315159,-0.45324877,0.26049253,0.03693018,0.6601804,-0.122835256,0.11533991,-0.21687038,-0.1879782,-0.17890398,0.16529377,0.15395106,0.2197221,-0.038766127,-0.44471693,-0.056580134,0.0028939843,-0.37684456,0.105158195,-0.5436153,-0.3666672,-0.16365735,-0.5714266,-0.38592204,0.58426434,-0.19527078,0.019183097,-0.0055399365,0.026711373,-0.19266526,0.2870099,0.12733756,0.30422166,-0.022236211,-0.036960874,-0.06844868,-0.25930825,0.2912329,0.023769064,0.2775992,0.20492856,-0.10956427,0.23734276,0.4817584,0.6972732,-0.11626311,0.9674097,0.5630831,-0.15436438,0.39878646,-0.30301914,-0.3596177,-0.55136067,-0.33664903,0.07169919,-0.3881862,-0.46108887,0.115326636,-0.44244787,-0.6656469,0.5343963,0.10273309,0.13225333,0.13797602,0.25307363,0.54089683,-0.2066226,-0.07784552,-0.071442835,-0.19318111,-0.6474268,-0.17942905,-0.5913452,-0.52459127,0.07529771,0.80212206,-0.1911455,-0.004086117,0.045822535,-0.2934049,0.015015007,0.29374558,-0.12656489,0.33731747,0.503986,-0.09475587,-0.6798615,0.536729,-0.07793922,-0.2537482,-0.6133485,0.39776424,0.51071817,-0.68529713,0.82661295,0.2764551,-0.012355427,-0.26406333,-0.3541581,-0.31732932,-0.08908571,-0.35036105,0.4443082,0.2055114,-0.8924207,0.3881398,0.4781282,-0.3199942,-0.81310517,0.6116831,-0.118541665,-0.21760656,0.1294611,0.31061798,0.1382185,0.0069505787,-0.17096595,0.22885774,-0.46488646,0.26008913,0.14392321,-0.09734026,0.17239991,-0.15905987,-0.12046533,-0.8005754,-0.058980707,-0.5243898,-0.27528265,0.3807213,0.05166643,0.15990745,0.2307113,0.13412751,0.44460696,-0.108118095,-0.0018767224,-0.05498302,-0.369564,0.24733648,0.43650237,0.37137318,-0.45767114,0.54551905,-0.017698612,-0.03959608,-0.080656305,0.17438519,0.39296103,0.18262546,0.54598796,-0.0046650767,-0.20504034,0.28373274,1.0322254,0.22520924,0.63812774,0.027961688,-0.017573697,0.28561908,0.097398415,0.23695843,0.020411888,-0.708809,0.30208698,-0.20489593,0.16997002,0.4762937,0.10377072,0.30952767,-0.18763556,-0.35365137,-0.03251515,0.42985812,0.1298609,-1.1744442,0.45474234,0.2373346,0.9701737,0.5387354,0.048491944,-0.032310586,0.74501044,-0.1554576,0.028270055,0.3183048,-0.15455164,-0.5528809,0.5067707,-0.8671566,0.39166594,0.029493583,-0.028431445,0.039650016,0.045507066,0.343088,0.6105023,-0.15314369,-0.05052952,-0.026339035,-0.37547782,0.3410129,-0.48208794,-0.0045297616,-0.43943042,-0.3060777,0.52923524,0.68156713,0.33313683,-0.13844767,0.024127241,0.053008746,-0.18632977,0.2831497,0.098324895,-0.03562986,0.06651957,-0.764349,-0.1594021,0.54421586,-0.07395883,0.19777285,-0.036932748,-0.19737853,0.39057806,-0.22753558,-0.08805324,-0.1012771,-0.662844,0.21808188,-0.39013702,-0.49272153,0.6174328,-0.019394372,0.23084164,0.30392203,0.05536103,-0.32143563,0.48292357,-0.11285017,0.81123346,0.012033678,-0.142527,-0.55641454,0.022897022,0.13402386,-0.14111789,0.04239967,-0.4099335,0.035110217,-0.5320586,0.51778823,0.04688664,-0.31422907,0.13085511,-0.18498622,0.03199542,0.6736613,-0.2351558,-0.12802288,-0.007850911,-0.23157826,-0.22394302,-0.36675328,-0.14983419,0.27569455,0.078061104,0.25259873,-0.18470736,-0.09741773,-0.13553298,0.57085127,0.036830287,0.518928,0.2883673,-0.018728767,-0.29200095,-0.2298274,0.24389179,0.47693262,-0.059201233,-0.11315244,-0.19886371,-0.45242754,-0.33554557,-0.0860163,0.031050546,0.4981421,-0.04714032,-0.1745491,0.7316157,-0.21714924,1.1851661,0.057695184,-0.4025865,0.20354983,0.45014757,0.0041064,-0.0063948375,-0.39834663,0.71514654,0.4856205,0.075232625,-0.0150696505,-0.35348624,-0.04292364,0.15169954,-0.15113628,-0.064939044,-0.0009967664,-0.6584118,-0.25222608,0.18215795,0.23774667,0.29725805,-0.067215964,0.010666992,0.14587508,-0.06685887,0.15416436,-0.4748513,-0.25027683,0.26238075,0.23398706,0.0017994003,-0.03057514,-0.48122096,0.51100415,-0.39953837,0.11126824,-0.22947593,0.17223103,-0.28905937,-0.2078058,0.21353947,-0.062809125,0.36635903,-0.21600378,-0.29012758,-0.12382008,0.5279769,0.18487048,0.13960455,0.56075555,-0.20080653,0.056047954,0.08618599,0.5584715,0.69037247,-0.31822035,-0.09563104,0.34311262,-0.52909696,-0.6115409,0.4806995,-0.25164863,0.13120583,0.14493802,-0.08286856,-0.4056389,0.14373194,0.26632398,-0.02613618,-0.08209114,-0.8047238,-0.27377447,0.3282223,-0.48243567,-0.19133233,-0.17702611,0.23987661,0.68307745,-0.33707312,-0.23045108,0.092034176,0.19178514,-0.19071224,-0.3427262,-0.02572762,-0.45403472,0.33038434,-0.13896063,-0.3961375,-0.17198041,0.11057686,-0.46025616,0.20733579,0.030352166,-0.35105258,-0.008709957,-0.23934126,-0.10270449,0.9222396,-0.20231405,0.14764452,-0.49186987,-0.41866454,-0.8745972,-0.16231643,0.4633163,0.027254691,0.13410607,-0.6244697,-0.019556986,0.0058480203,-0.15331466,-0.17620002,-0.5004891,0.4629589,-0.017745646,0.3985291,-0.092951454,-0.7546377,0.28901234,0.22900318,-0.14546137,-0.6430756,0.5599118,-0.14215484,0.8540684,-0.05051748,0.14258854,0.21462353,-0.4071266,-0.11241384,-0.22760336,-0.2808972,-0.6996389,-0.09388385 -549,0.38085282,-0.06742072,-0.6622934,-0.003776749,-0.13768879,0.022629745,-0.33199197,0.17981215,0.06288911,-0.3519815,0.007963999,-0.046364315,-0.122743614,0.16838057,-0.2904321,-0.52923626,-0.09409551,0.13104846,-0.52770865,0.47922948,-0.32938612,0.3362265,-0.06240447,0.23100458,0.07442028,0.18141259,0.29000875,0.0005567044,-0.107144274,-0.18461789,0.23481931,0.09131852,-0.77262574,0.14758497,-0.23612516,-0.47944212,0.04406679,-0.26523092,-0.4384953,-0.66859794,0.2482704,-0.8046566,0.57475203,0.12262327,-0.23926172,0.28903654,0.10351919,0.28008977,-0.21973675,0.15315269,0.23735365,-0.32709485,-0.08287631,-0.34200275,-0.13263087,-0.3304279,-0.54807186,-0.11756631,-0.6931213,0.08809606,-0.3053312,0.17567548,-0.2607134,0.093248576,-0.2706481,0.30454636,-0.46712402,-0.07673081,0.12575296,-0.026095828,0.3759283,-0.53968453,-0.13346152,-0.06470242,-0.1367651,-0.10751936,-0.1048664,0.35849756,-0.020451205,0.4049601,0.048439067,-0.17126186,-0.24719235,-0.13213101,0.23657556,0.34888414,-0.20615426,-0.14390947,-0.20595078,-0.16496179,0.25407898,0.1813497,-0.060438737,-0.098493144,0.10035305,0.047753986,-0.20361385,0.40361753,0.65204227,-0.3246089,0.0045952797,0.18809018,0.44110346,0.06175473,-0.12322358,0.06060213,-0.11791734,-0.43611953,-0.27758518,0.06644075,-0.2720316,0.49949735,-0.091269,0.2027557,0.43912405,-0.33951387,-0.011350846,0.1372371,0.09207355,0.1370598,-0.15849236,-0.49874866,0.57459235,-0.57801217,0.032246955,-0.29287606,0.5049907,-0.031085866,-0.5587758,0.23209305,-0.5042239,0.08130336,-0.057360753,0.69872475,0.5054218,0.58191323,0.27781633,0.8283847,-0.55166835,0.02096682,-0.075489394,-0.2660562,0.1360973,-0.14036743,0.025471712,-0.33178654,-0.093660325,0.05753582,0.020738553,0.120336026,0.29772326,-0.44747767,-0.07154789,0.18494767,0.68669194,-0.31122106,0.19347157,0.6289354,1.4027661,1.0020355,0.0035467674,0.95931077,0.15043738,-0.30657575,-0.23318271,0.022521181,-0.62820154,0.25460228,0.31969458,-0.2831789,0.42821723,0.054086674,-0.096415974,0.25201675,-0.64979976,-0.21743444,-0.08780745,0.25889763,-0.095466964,-0.09167417,-0.44471312,-0.08136437,-0.004915043,-0.031072017,0.06929579,0.3875248,-0.30202702,0.26729432,0.19583626,0.9870445,-0.07629483,0.08110363,0.27080372,0.3699103,0.23301719,-0.039864812,0.025248932,0.15696262,0.29938897,0.31262824,-0.5251324,0.0068505467,-0.2716777,-0.5687384,-0.16641887,-0.2203429,0.080154024,-0.1820921,-0.37706232,-0.22637695,-0.07737621,-0.41057274,0.31142634,-2.6098611,-0.102013074,-0.088024266,0.38352603,-0.083543025,-0.23268987,-0.063654594,-0.42132905,0.4982763,0.40045193,0.32200253,-0.47078377,0.45437717,0.40280122,-0.45244822,0.052549638,-0.49933738,-0.14588745,-0.14282684,0.37425143,0.113080226,-0.23908481,-0.060131736,0.3169605,0.45137584,-0.13194618,0.19683306,0.24054457,0.2992185,-0.30353013,0.43890905,0.15731785,0.31443512,-0.57841337,-0.23095515,0.4088674,-0.3919253,0.14916301,-0.17386168,0.18973789,0.3617139,-0.46805292,-0.862383,-0.47963476,-0.0881536,1.3286211,-0.27212816,-0.64651895,0.22325936,-0.03733109,-0.3546123,-0.050072454,0.38838488,-0.17776951,0.1249919,-0.7589956,0.09227796,-0.30697075,0.31830266,0.035648186,0.12979192,-0.5226502,0.59936583,-0.14276142,0.5617913,0.45482367,0.25011736,-0.25528148,-0.48167408,0.24445662,0.9828824,0.5997791,0.07706203,-0.28886947,-0.0331567,0.036678042,-0.007856385,0.12122477,0.49367222,0.83524907,-0.12669522,0.21700595,0.28170907,-0.0010722796,0.014364633,-0.10132802,-0.3351351,-0.045301307,0.091669835,0.6195389,0.6805573,-0.024725394,0.14967784,-0.025698483,0.46403047,-0.16895537,-0.3481918,0.36689675,0.9599725,-0.02211872,-0.23062156,0.7803937,0.604684,-0.14610146,0.70008713,-0.7239791,-0.70066553,0.32022515,-0.030507123,-0.37787977,0.27241156,-0.4499317,0.18548091,-0.7467474,0.34706864,-0.38207757,-0.39079836,-0.6099111,-0.39910582,-2.8782275,0.17958327,-0.33713597,-0.058017183,-0.19590253,-0.11645138,0.32501113,-0.48029292,-0.5411405,0.101280466,0.1494408,0.5354773,-0.14201389,0.09926745,-0.12895775,-0.35209405,-0.24984874,0.24297498,0.35692108,0.12503272,0.01613551,-0.49234095,-0.09780507,-0.2018138,-0.37347463,-0.011788062,-0.4502084,-0.32763594,-0.18962656,-0.3826763,-0.35445538,0.6008343,-0.15079173,0.052409936,-0.29244575,-0.074298516,0.07773861,0.25269774,0.17463306,0.29031688,-0.08269518,-0.09684177,0.13717273,-0.15560946,0.2515342,0.12982906,0.4081664,0.4446005,-0.31143722,-0.08567799,0.39706662,0.48445675,-0.1183207,0.8111588,0.38278225,-0.15358521,0.36463684,-0.089845344,-0.40342888,-0.7822042,-0.3908352,-0.035743006,-0.33310872,-0.29986477,-0.041810084,-0.35919935,-0.83798367,0.73922706,-0.16821143,0.23783194,-0.07365048,0.42046693,0.37343618,-0.20268092,-0.24247552,0.019263554,-0.18031724,-0.28273484,-0.3169267,-0.83112663,-0.33892834,-0.25107828,1.0463289,-0.06357371,-0.09897058,0.34239703,0.055915967,0.13006428,0.2764975,0.023793833,0.123577155,0.65724087,0.26194373,-0.66680235,0.48892814,-0.18517107,-0.17532755,-0.6329596,0.103517085,0.5756907,-0.64483553,0.36323005,0.55555147,0.22181155,-0.082196824,-0.64098656,-0.033305444,-0.008945823,-0.15150131,0.6122438,0.32096916,-0.76052296,0.5064967,0.19586569,-0.37090188,-0.5962995,0.63024837,-0.052563332,-0.3279423,0.00473272,0.35796925,-0.13628553,0.05394325,-0.08550278,0.31787097,-0.30622584,0.3434721,0.28139746,-0.09353294,0.39416325,-0.25512996,-0.22606961,-0.6980599,0.074782595,-0.5763193,-0.19775729,0.14603554,-0.11291588,-0.22238792,0.26399252,0.008804563,0.4561617,-0.25326154,0.0631837,-0.22074887,-0.42813867,0.6348725,0.59308344,0.3749585,-0.35427365,0.6805219,0.10789795,-0.1655676,-0.39929682,0.047552798,0.49795854,-0.16218852,0.420251,-0.02733791,0.17962806,0.31960356,0.5054219,0.30528548,0.4281852,0.1995259,-0.04018317,0.19078507,0.10910257,0.06189302,0.03316226,-0.3711131,0.034517385,-0.24366716,0.12790868,0.44329178,0.105023764,0.5355392,-0.22202425,-0.124828674,0.021900574,0.22251698,-0.14991666,-1.3082211,0.45245978,0.026171435,0.5840672,0.55428386,0.10031603,0.09745834,0.5128736,-0.2728076,-0.08293841,0.23679747,0.24401169,-0.25757587,0.64180017,-0.6100843,0.4293394,-0.104146,0.031119756,-0.060810376,0.0535744,0.5254248,0.7684837,-0.09931672,0.139361,-0.023588214,-0.21447489,0.24311881,-0.26233086,0.27276048,-0.37760115,-0.34656507,0.7707445,0.29229945,0.35035527,-0.24543397,-0.012219445,0.06398235,-0.25582752,0.363079,-0.027225064,0.016646456,-0.16028315,-0.4807031,-0.12353815,0.46423975,-0.018679181,-0.015328783,0.048331086,-0.18206218,0.06107629,0.088633224,-0.07900517,-0.02057057,-0.5473176,0.13008352,-0.37351754,-0.2840495,0.44616783,-0.27458265,0.2210633,0.18711877,0.0112432195,-0.45125884,-0.030655837,0.11038222,0.5069636,0.06355749,-0.2868786,-0.18669862,0.10594635,0.22249483,-0.26345226,-0.020551106,-0.33459902,0.28303945,-0.673499,0.5144113,-0.22747014,-0.20967585,0.16958629,-0.1993397,-0.12573777,0.51247954,-0.17112255,-0.11948948,0.059301242,-0.08954889,-0.25865477,-0.4513925,-0.2441248,0.11118793,0.08510963,-0.021042172,-0.029714258,0.065019704,-0.040016912,0.43441695,0.11763813,0.24301949,0.26511353,0.03526608,-0.5560729,0.022890644,-0.11795983,0.55806464,-0.08627278,0.0044699153,-0.36429018,-0.666914,-0.1865752,0.29858023,-0.17118959,0.21158719,0.13188712,-0.13042517,0.99426675,0.10241256,1.124645,0.00016543269,-0.3042805,-0.052823428,0.66059506,-0.29284108,-0.16934289,-0.29251912,0.9553387,0.64598536,-0.21458639,-0.20996472,-0.2615507,0.09732737,-0.084271,-0.23015015,-0.37144747,-0.11765353,-0.67371136,-0.25097418,0.14633636,0.42349702,-0.07067951,-0.15167457,0.11168614,0.4194153,0.12723742,0.20251945,-0.48325342,-0.15840606,0.51012284,0.0481289,-0.058917332,0.060952947,-0.36317107,0.33948454,-0.49654335,-0.13892053,-0.31559098,-0.009617325,-0.038629737,-0.4533949,0.31140384,-0.07545767,0.20653722,-0.39664462,-0.099163555,0.005616051,0.2236309,0.25625405,0.14785086,0.6567015,-0.2036461,0.11356856,-0.041363187,0.40345758,1.1276792,-0.32447538,0.041131597,0.2187164,-0.4176595,-0.6982502,0.11639709,-0.45607063,0.02179912,-0.14323992,-0.46005338,-0.5079647,0.31309286,-0.033646364,-0.06493278,0.18642655,-0.6745778,-0.21971565,0.22848286,-0.27326262,-0.2526653,-0.32372823,0.013526329,0.6238477,-0.20959559,-0.32390803,0.039225213,0.3949589,-0.26610553,-0.55498695,0.14935793,-0.3265373,0.3338007,-0.04117986,-0.1929101,0.080613956,0.11652549,-0.46032482,0.07573087,0.4086596,-0.29285005,-0.04254302,-0.34720847,0.019710895,0.5440957,-0.13144879,0.12020759,-0.45180404,-0.5036585,-1.0523045,-0.16497359,0.28229797,0.10331485,0.07719709,-0.5027674,-0.041934133,-0.18126637,-0.06855796,-0.11763299,-0.34467852,0.3160899,0.13775437,0.48270544,-0.20216209,-0.7537028,0.08309902,0.17428796,-0.27273458,-0.19223714,0.5382902,-0.10736386,0.62550056,0.0489605,0.1005478,0.10990753,-0.7065081,0.2677641,-0.086807065,-0.23371443,-0.58776206,0.00092234614 -550,0.56727403,-0.12481538,-0.43146855,-0.20822519,-0.50135154,0.40555078,-0.29213637,0.2421826,0.2464297,-0.28281966,-0.13450126,-0.095183305,0.015861064,0.26749057,-0.21287332,-0.6822195,0.048578434,0.22013858,-0.56974274,0.33567613,-0.65639114,0.44318697,0.05640333,0.47950593,0.08746459,0.29339233,0.14108501,0.025046114,-0.38796335,-0.00036678315,-0.10822281,0.22450924,-0.5917366,0.17296098,-0.30070984,-0.4033574,-0.10553963,-0.32545072,-0.22086586,-0.6501015,0.23973446,-0.81548345,0.6128777,-0.18482867,-0.33887926,0.08934984,0.10223846,0.1520443,-0.2399882,0.13439171,0.08549156,-0.1672654,-0.043954246,-0.32802135,-0.45433372,-0.53159344,-0.5342778,0.15312289,-0.6218744,0.027624415,-0.19414823,0.2694983,-0.1990131,0.082173735,-0.13291289,0.2890135,-0.27536616,0.20844455,0.257805,-0.32760695,-0.2693151,-0.48304942,-0.16257595,-0.13679132,0.2871653,0.056739345,-0.32037848,0.010900433,0.39470783,0.60354435,0.047036003,-0.27520955,-0.3616527,-0.11101837,0.102894165,0.5240526,-0.09580162,-0.17245798,-0.32435018,-0.1359165,0.4806487,0.18569802,0.15370008,-0.29007742,0.09688307,-0.12145162,-0.22379327,0.20339727,0.52044547,-0.4521801,-0.23895298,0.35701334,0.4281578,0.04625477,-0.17635117,0.24647234,-0.006215787,-0.546353,-0.1833722,0.10473275,0.110263556,0.618239,-0.26905116,0.23589562,0.69393057,-0.1487575,0.021891275,-0.044619314,0.052203346,-0.08864071,-0.31960583,-0.025896946,0.06436207,-0.49589494,-0.1600399,-0.25789824,0.58371407,0.09575831,-0.70080525,0.40813535,-0.5246556,0.04266713,-0.03755563,0.40206805,0.864165,0.348852,0.032459434,0.7361423,-0.3373222,0.047689836,-0.16706075,-0.27137044,0.07522988,-0.19173536,0.13684374,-0.39325052,0.18170029,0.10509084,-0.10090377,0.043959476,0.7141277,-0.41668376,-0.15838803,-0.05016174,0.51681656,-0.4792013,-0.15632248,1.0176435,0.8724085,0.9390427,0.09736322,1.5357877,0.5096198,0.08540311,-0.015741842,-0.22229414,-0.5119764,0.16475365,0.14943895,-0.1826182,0.42344257,0.19161278,0.014607605,0.52362186,-0.17312293,-0.08192758,-0.038530577,0.24569298,0.049370475,0.0622188,-0.25500524,-0.3980158,0.25301117,-0.0012744387,0.121528655,0.39860016,-0.14436322,0.4409514,0.12407123,1.5283009,0.061158106,0.033625,0.07232623,0.23937152,0.30350497,-0.24982338,-0.079799175,0.292605,0.1925602,-0.19058962,-0.4857159,-0.16061245,-0.30561975,-0.4010881,-0.20024997,-0.3280564,-0.25094935,-0.15862392,-0.50968474,-0.23215698,-0.01312817,-0.3310658,0.536103,-2.3184354,-0.403927,-0.14943291,0.35978475,-0.20755723,-0.54225093,-0.44727585,-0.5074083,0.16323242,0.21047395,0.25124398,-0.5389917,0.27833304,0.35955334,-0.40707532,-0.34142062,-0.6905005,0.07377585,-0.08370028,0.22758977,-0.2698059,-0.1476719,-0.19672656,0.07876566,0.75477415,-0.04606665,0.10551087,0.4051337,0.64346117,0.10241225,0.45756587,0.23504385,0.6768011,-0.35903102,-0.2858071,0.43115357,-0.48945245,0.44848397,0.05711017,0.19983073,0.5639633,-0.4773473,-0.7480174,-0.65294427,-0.24157873,1.1765608,-0.3108965,-0.29068616,0.027263952,-0.31399265,-0.3728834,0.05064655,0.43054417,-0.08882164,-0.07493441,-0.65166456,-0.040620573,-0.03195894,0.112881966,-0.19421917,0.25877127,-0.27765718,0.6010891,-0.115802355,0.35771438,0.264385,0.2453617,-0.028111223,-0.32333967,0.0755358,0.8655415,0.35556135,0.124871686,-0.26550442,-0.22875471,-0.23839352,-0.11882378,0.060418606,0.5465897,0.53914666,0.024548301,0.22602259,0.34971103,0.0035081585,0.05147322,-0.17027596,-0.1988895,-0.14439838,0.17822386,0.5745005,0.71836495,-0.1867494,0.45388713,-0.21771608,0.16988198,-0.27690214,-0.6471827,0.42240143,0.69723946,-0.23171256,-0.20286518,0.57344383,0.32897452,-0.43825683,0.38972962,-0.49664548,-0.3931764,0.51601005,-0.10833274,-0.45778498,0.19136031,-0.34049806,0.005897848,-0.82025784,0.33802155,0.043286443,-0.47070345,-0.4780835,-0.27628785,-2.9935496,0.22262995,-0.03209548,0.0060936767,-0.041236177,-0.35852635,0.23836157,-0.5559828,-0.5343907,0.16117303,-0.040715978,0.4873455,-0.12623009,0.26724443,-0.30192414,-0.28779763,-0.28287876,0.2315011,0.13717842,0.35182497,-0.13498668,-0.3230597,0.08267941,-0.31713742,-0.3240924,0.053908005,-0.73252815,-0.5347895,-0.055471875,-0.3474442,-0.20534325,0.7452291,-0.5407766,-0.11176041,-0.33756238,0.0115068,-0.2168711,0.4061838,0.13923311,0.11831167,0.21586803,0.07148765,-0.1315278,-0.4225482,0.2613912,0.047653675,0.2310854,0.59429157,-0.14687027,0.22801049,0.4064904,0.65990853,-0.08061635,0.73586977,0.11061563,-0.012068317,0.4109951,-0.19405165,-0.24799137,-0.62845254,-0.2891408,-0.27777404,-0.5521938,-0.4527993,-0.06289946,-0.42425162,-0.77817714,0.52026635,0.074081905,0.12612817,-0.16009255,0.36418253,0.5752248,-0.22200276,0.018060315,-0.107268535,-0.26575077,-0.4192305,-0.5800033,-0.50686496,-0.67181337,0.41523272,1.3229403,-0.09553901,-0.0147778215,0.0676144,-0.2514172,0.058892895,0.14438525,0.1804469,0.0017173251,0.5385254,-0.12148021,-0.65616506,0.28934756,-0.22519697,-0.19116801,-0.5987785,0.031254236,0.788602,-0.6801443,0.5892449,0.48678023,0.2953555,0.21852341,-0.63530284,-0.19464913,-0.005095767,-0.21716617,0.569232,0.3780209,-0.59640694,0.49929056,0.17451094,-0.14692971,-0.6881111,0.43455064,0.050119884,-0.10027452,-0.087004855,0.45915973,0.18565963,-0.08919444,-0.028182156,0.11595039,-0.5717894,0.22127104,0.37718853,-0.04604406,0.44921103,-0.06535982,-0.3159003,-0.7255037,-0.13533194,-0.32620484,-0.3879042,0.049295582,0.08711221,0.21003075,0.20424767,0.112680584,0.32978344,-0.5421477,0.08298545,-0.06930241,-0.15695214,0.28235683,0.33235958,0.43877605,-0.49168795,0.569102,0.015319387,0.04261225,0.12214902,0.018638404,0.42270857,0.15780085,0.3270225,-0.020047562,-0.06824487,0.126022,0.70662075,0.1354088,0.34160557,0.19115622,-0.4235726,0.2732752,0.20542759,0.15845184,-0.15178935,-0.2846747,-0.087898664,-0.10436814,0.31674522,0.37458208,0.15640524,0.36563593,-0.092206575,-0.15455057,0.22297017,0.031209907,-0.066507444,-1.2201155,0.05786802,0.25178203,0.69730973,0.3163953,-0.012878434,0.0046813986,0.3146243,-0.35505995,0.12420644,0.4025282,-0.13588074,-0.26704788,0.44235426,-0.48557532,0.46577016,-0.24127795,-0.00034626125,0.0811659,0.18899943,0.39624876,1.0071167,0.0055744736,0.019326758,0.09908161,-0.31981897,-0.0040541687,-0.30193803,0.019343495,-0.6087712,-0.19971623,0.9017436,0.41389903,0.36142403,-0.4728137,-0.13709646,0.009063214,-0.17991628,0.034334492,0.042054903,0.062404417,-0.20909758,-0.5612968,-0.2509382,0.5838764,0.060267814,0.06679074,0.15272127,-0.43990287,0.30163166,-0.21009302,0.0562974,-0.010078947,-0.6536223,-0.17947952,-0.40555525,-0.69550437,0.25047365,-0.15839347,0.06675645,0.19098625,0.03462953,-0.33844927,0.28183562,0.10595486,0.95299995,-0.048466526,-0.06092206,-0.23118776,0.20321494,0.43851286,-0.26185554,0.002549267,-0.25457516,0.2751522,-0.504059,0.42476672,-0.20203556,-0.23050229,-0.13480766,0.017385293,0.07282066,0.43344697,-0.19716215,-0.09284285,0.124129586,0.03189729,-0.40739474,0.049492143,-0.33671626,0.2784592,0.065059915,-0.19705442,0.017383516,-0.1666243,0.017401194,0.2512616,0.106949694,0.14511853,0.4267255,-0.055035256,-0.27203313,0.0712651,0.04707354,0.5066331,0.0036918442,-0.16465409,-0.3425127,-0.30660385,-0.39668533,0.6303471,-0.14758253,0.065913506,0.106203645,-0.28404462,0.83958435,0.14529055,1.143694,0.14059053,-0.3739188,0.06383536,0.5500459,0.05653548,0.054383874,-0.29652923,0.90937793,0.5863754,-0.1525034,-0.16186357,-0.25401223,-0.2355916,0.20424777,-0.38778496,-0.20249948,-0.14680801,-0.7158914,-0.09589977,-0.017340787,0.10698258,0.07362993,-0.19510178,0.1629569,0.16305518,0.0909694,0.5646487,-0.5423963,-0.17045334,0.27383092,0.3983542,-0.08279003,0.31409442,-0.30962792,0.38726285,-0.72994643,0.09629773,-0.4991097,0.19745909,0.0020874818,-0.37263072,0.13684319,0.18456106,0.3200221,-0.3685347,-0.3872393,-0.42537835,0.5371334,0.08696316,0.29713824,0.6153201,-0.24770811,-0.29406464,0.08369085,0.5509334,1.3157476,0.100147806,-0.019859107,0.4567221,-0.2437081,-0.68844205,0.2614221,-0.50183207,0.15235479,-0.08463655,-0.33311552,-0.3923903,0.39393845,0.2663725,0.11299028,0.05108243,-0.51728016,-0.028441422,0.38974422,-0.20753309,-0.21433306,-0.19269043,0.17741175,0.76378757,-0.32525048,-0.36634833,-0.03698719,0.33490238,-0.3665529,-0.51091427,-0.017443193,-0.44794658,0.4321817,0.24695061,-0.25038633,-0.055706702,0.1519514,-0.45672318,0.035845652,0.23903266,-0.26713672,0.06781195,-0.3384449,0.0017240762,1.0637202,0.053908728,0.2749742,-0.5306082,-0.5554558,-0.96386313,-0.28265908,-0.008623147,0.11067511,-0.023619385,-0.53208464,-0.0543794,-0.11689366,-0.21574463,0.08331716,-0.4113993,0.47148132,0.24519315,0.47153717,-0.014758078,-0.9569566,-0.089314505,0.1113029,-0.43659985,-0.4659949,0.5318812,-0.18082409,0.72448623,0.19170062,0.0020286718,0.13078572,-0.61543834,0.36115253,-0.35310224,0.03533729,-0.69640833,0.0006256302 -551,0.20015462,-0.11799073,-0.45342574,-0.017225707,-0.07266738,0.13536623,-0.14587136,0.35895947,0.039143916,-0.65271664,-0.10626748,-0.24754727,-0.04619819,0.037442744,-0.24171104,-0.27418527,-0.0722884,0.21493848,-0.47898343,0.21911745,-0.5285193,0.32085988,0.14795732,0.03817646,-0.14631328,0.13794313,0.26890162,-0.23812921,-0.18729667,-0.32222596,0.109641224,0.026846737,-0.7833051,0.28182033,-0.13302046,-0.3025603,0.03908384,-0.4007467,-0.46636328,-0.6946802,0.44376764,-0.88265353,0.5158794,0.118107714,-0.08744935,0.3029053,0.092026,0.31725505,-0.19208823,0.14231841,0.45712975,-0.098437965,-0.05551068,-0.18837143,-0.18847577,-0.16138966,-0.51249564,0.06043588,-0.4576054,-0.21775223,-0.4553114,0.26157248,-0.32775757,0.08086643,-0.27909073,0.32465017,-0.32409033,0.041353602,-0.03954682,-0.08378645,0.3236508,-0.5612709,-0.031829935,-0.12122267,0.106330134,-0.37355185,-0.038862288,0.30161405,0.14080143,0.5111595,-0.052766357,-0.017121777,-0.17615421,-0.075217985,0.14646068,0.49080595,-0.23989713,-0.34274018,-0.021803081,-0.13702302,0.047357883,0.07405925,-0.124425136,-0.3349005,-0.038746145,0.057119977,-0.3446149,0.3299424,0.6717561,-0.24081069,-0.18795045,0.3937485,0.49659744,-0.1052258,0.1403865,0.07714148,0.06864355,-0.54046625,-0.2793912,0.1481986,-0.17437617,0.39151493,-0.071492456,0.255448,0.6308744,-0.35661447,-0.008311641,0.1559667,0.095175944,0.08904624,-0.15264863,-0.30895117,0.2846934,-0.4980527,0.026717743,-0.24710111,0.94128543,-0.0072807926,-0.85051465,0.32478413,-0.48152336,0.055458248,0.038698778,0.63329774,0.45044866,0.5790518,0.15067412,0.7445128,-0.58866996,-0.010889645,-0.13655399,-0.34935763,0.09787475,0.009393573,-0.12288645,-0.17553179,-0.10765002,0.17452681,-0.12727605,-0.21831144,0.44807616,-0.3897836,0.016787728,-0.002112319,0.69940376,-0.3429903,0.07935217,0.513848,1.0518328,0.717459,0.20265524,1.4046768,0.095653795,-0.27943203,0.14933336,-0.17439759,-0.9903566,0.26428688,0.3094009,0.13431758,-0.015992701,0.2990763,-0.09733218,0.15304853,-0.5009926,-0.05462873,-0.3047774,0.25896212,-0.1028151,-0.11712936,-0.29011336,-0.17176718,0.1013318,0.05361761,0.116625905,0.15501922,-0.31938756,0.037293848,0.20543182,1.2529706,-0.2474044,0.33173195,0.21889721,0.32724044,0.07086306,-0.016900113,-0.13593693,0.24108303,0.395573,0.24393952,-0.6253636,-0.07118358,-0.13751866,-0.44709292,-0.12200529,-0.14683785,-0.06177522,-0.076858275,-0.29188862,-0.26088318,-0.14080155,-0.6226742,0.3122861,-2.5677593,-0.067696586,-0.064373404,0.47732508,-0.18637168,-0.24915652,-0.14609434,-0.4327083,0.53648466,0.43019542,0.46086392,-0.6734109,0.34976295,0.5276585,-0.3535377,-0.050041478,-0.57104474,0.049923908,-0.11266842,0.2707719,0.1300305,-0.16690218,-0.16263653,-0.045442265,0.29642656,-0.15284234,0.07133765,0.4075221,0.44365743,0.18352382,0.47551283,-0.04666409,0.45198694,-0.45125794,-0.20761962,0.27948707,-0.5138197,0.032068282,-0.033944268,0.16754736,0.23172492,-0.68316674,-0.83218235,-0.6833413,-0.51808816,1.3697819,-0.28516886,-0.3606054,0.46917662,-0.11297505,-0.34840932,-0.18788572,0.47320354,-0.16565253,0.09271645,-0.8675057,-0.05317059,-0.2481765,0.5337865,0.010847968,0.113711655,-0.53869337,0.6425515,-0.23913622,0.4211184,0.4440712,-0.03255752,-0.5296622,-0.44914934,0.061736804,1.2379532,0.26063907,0.25440654,-0.13665228,-0.16150375,-0.24430929,-0.067366086,0.01631798,0.4766527,0.7470019,0.059478845,0.04147862,0.27473417,-0.00016047557,0.036900375,-0.042860318,-0.38749966,-0.16328971,-0.11786459,0.65156645,0.40467775,-0.09538818,0.2244764,-0.111567535,0.21363513,-0.3102213,-0.27714503,0.3407255,0.6526327,-0.02372425,-0.2479309,0.6283936,0.49227104,-0.25621954,0.44928607,-0.5331703,-0.5667687,0.27588657,-0.22788316,-0.5247043,0.2882182,-0.35973784,0.11614274,-0.72776264,0.5385166,-0.31352594,-0.70003,-0.51622075,-0.19994695,-3.5556939,0.18286891,-0.21097668,-0.18457837,-0.063351065,-0.06884059,0.21383817,-0.3286747,-0.5108308,0.05029181,0.08542162,0.5182153,0.0029591906,0.033451468,-0.1980576,-0.043257892,-0.266069,0.24118741,0.2578575,0.12973036,-0.00403064,-0.38943854,-0.12388512,-0.17277716,-0.16688836,0.006882814,-0.5351679,-0.40776834,-0.07837827,-0.6559928,-0.4534019,0.7523864,-0.412631,-0.040429983,-0.23286788,-0.02019392,-0.14393948,0.45871553,0.10092089,0.18753518,-0.072226174,-0.22103477,-0.24452268,-0.14767526,0.5651395,-0.00786304,0.32315412,0.5061114,-0.41553497,-0.15132606,0.33293068,0.6041183,0.031134715,0.99317855,0.2603276,-0.18328495,0.26561037,-0.1886232,-0.19367194,-0.55778694,-0.12430539,0.061571747,-0.401216,-0.27854148,0.040712297,-0.40015602,-0.7006569,0.5359163,-0.12166223,-0.033801634,0.11342555,0.31011948,0.22355956,0.04086708,-0.19206937,-0.18078315,-0.09087625,-0.39750266,-0.3486173,-0.7267158,-0.2796772,-0.168703,1.1822997,0.061441142,0.13077502,0.14988597,0.020317161,0.111346535,-0.031686783,0.062077958,0.27827552,0.5070084,-0.05560891,-0.6135246,0.38559735,-0.197563,-0.08544803,-0.57699525,0.0510288,0.66344213,-0.67182285,0.53687257,0.4528388,0.13198969,-0.23599708,-0.4515591,-0.3312885,-0.067444265,-0.19851011,0.28936994,0.15186876,-0.81532437,0.412294,0.329803,-0.21458645,-0.73875403,0.48324445,-0.094917536,-0.09243282,0.13173287,0.4809425,-0.3094202,0.047600195,-0.11485708,0.24897473,-0.21545869,0.48179784,0.007514199,-0.073671386,0.50835836,-0.3422121,-0.22565621,-0.5619601,0.078998886,-0.4792877,-0.14512907,0.15054077,0.0037648405,-0.026426012,0.38744855,-0.11499258,0.5417201,-0.3050114,0.03819171,0.052641213,-0.22787617,0.36113456,0.3215407,0.3897055,-0.38513115,0.65570074,-0.013818492,-0.1375464,-0.46323195,0.18602057,0.41266093,-0.055775937,0.26885006,0.090362586,-0.097781144,0.46121225,0.9491101,0.3350583,0.59018564,0.16790496,-0.019301271,0.33889067,0.2287354,0.13898887,0.18810946,-0.6519757,-0.05089805,-0.0869908,0.12677474,0.30437407,0.06204322,0.38551185,-0.29653832,-0.2305996,-0.07142642,0.3978301,-0.13102658,-0.9761629,0.3650795,0.014637157,0.562005,0.5138561,0.02838993,0.16365838,0.5500364,-0.15960056,0.0610023,0.13560326,0.051501393,-0.46936318,0.5513758,-0.60030115,0.34075582,-0.14604832,0.03766923,0.094382055,-0.081881754,0.39316395,0.71659833,0.053723603,0.019426906,-0.13081867,-0.09984999,0.17746536,-0.3669277,0.33119848,-0.32876906,-0.27526724,0.7161729,0.25440294,0.25063702,-0.07093683,-0.024247602,-0.10383946,-0.14975804,0.09093539,0.034425814,0.073154785,-0.025871957,-0.73327583,-0.109211385,0.5330026,0.32753095,0.17394985,0.14918368,-0.21641405,0.36496785,-0.12826908,-0.06998919,-0.110129006,-0.5822385,0.07802217,-0.36226735,-0.24960943,0.033808265,-0.21945198,0.37568244,0.22755341,0.02097094,-0.52924025,0.17097561,0.47887626,0.5523014,-0.04565933,-0.27202925,-0.20652135,0.2132687,0.15639216,-0.21905775,-0.021696342,-0.2778233,-0.072855465,-0.76822454,0.35915998,-0.110433914,-0.23844905,0.37695834,-0.19519328,-0.04413739,0.587827,-0.011312445,0.014609297,0.31180567,-0.17217797,-0.12599783,-0.09812981,-0.17311333,0.13032325,0.30497053,0.06259606,-0.047797773,-0.029083215,-0.20394294,0.3432952,0.08767387,0.29303426,0.2975308,0.4057046,-0.32643732,0.0030984383,-0.12934011,0.6968043,0.038110066,0.07318299,-0.2145626,-0.39495358,-0.16138679,0.26827475,-0.06148382,0.22601992,0.18655439,-0.44265756,0.71260947,0.05132736,0.88341635,0.06414673,-0.1507663,-0.14357899,0.6154178,-0.03652099,-0.13490482,-0.36097836,1.0636332,0.66640186,-0.20232894,-0.19695874,-0.2945696,-0.06460601,-0.11517277,-0.12638429,-0.26095784,-0.058427524,-0.5899183,-0.17426002,0.27658916,0.48458803,-0.10230768,-0.013777991,0.20464306,0.27432212,-0.030616118,0.27709043,-0.5152065,-0.085182585,0.36265263,0.118032195,0.11586085,0.056513846,-0.40263176,0.3240571,-0.64924884,0.06476711,-0.077764116,0.0043327212,-0.06693469,-0.19471185,0.16316493,-0.0743046,0.4694178,-0.32474375,-0.17391682,-0.11379593,0.31011704,0.08067233,0.28367138,0.7437454,-0.11402128,0.1027577,0.07724401,0.49050128,0.8128777,-0.15307312,0.052815955,0.3037769,-0.3616457,-0.5371979,0.333653,-0.3395195,0.020672023,-0.075104594,-0.2976682,-0.09843924,0.34130704,0.17609428,-0.13840686,0.12981422,-0.640806,-0.15294157,0.34804937,-0.23359753,-0.21115895,-0.20570461,0.1669146,0.7192464,-0.24447481,-0.17972429,0.053353388,0.40384388,-0.42381844,-0.6555027,-0.22160548,-0.33838323,0.32023498,-0.026054442,-0.15177841,-0.027160773,0.10807835,-0.3157754,0.121610545,0.060987826,-0.3874353,-0.030210525,-0.25370625,-0.04738735,0.53542846,-0.059130568,0.04007113,-0.5283388,-0.44814038,-1.0192263,-0.08390388,0.44034377,0.12606372,-0.01183226,-0.4436883,-0.19406427,0.01717008,-0.17434096,-0.022893453,-0.42781746,0.46229926,0.08300731,0.48343673,-0.14598581,-0.81426096,-0.0028723974,0.07520025,-0.17998986,-0.5102388,0.52684873,0.10272917,0.7204351,0.08589971,0.09774166,0.25911525,-0.7744377,0.14116906,-0.12478729,-0.23815988,-0.73331946,0.06886034 -552,0.373612,-0.15696748,-0.3170803,-0.0904883,-0.18496956,0.11349816,-0.15783235,0.2843292,0.18354747,-0.5697309,-0.15715663,-0.21571036,0.08382939,0.07455737,-0.21695317,-0.39157706,0.068053834,0.14912601,-0.5601665,0.5342973,-0.41007942,0.2929494,0.17837922,0.27829248,0.2681772,0.13966395,0.13149966,-0.18083988,-0.26543874,-0.19839826,-0.14436814,0.19725612,-0.6725235,0.23682284,-0.2553285,-0.47400883,-0.09367097,-0.2529672,-0.4087213,-0.73272836,0.25560635,-0.98990923,0.45676008,-0.0014438672,-0.16991211,0.30628103,0.022465173,0.18279971,-0.3384262,0.048345156,0.29704785,-0.28658465,-0.123946846,-0.13294782,-0.1909902,-0.43713814,-0.50221103,0.07501849,-0.38782692,-0.14039521,-0.53588057,0.17999408,-0.24728398,-0.11842406,-0.11850227,0.42961496,-0.5490819,0.119214095,-0.13916375,-0.055117916,0.24056947,-0.59320456,-0.25150973,-0.11643864,0.27717948,-0.32340476,-0.18655273,0.2654956,0.2883094,0.43423897,-0.0010341427,-0.106798396,-0.40015134,0.05166081,0.19303103,0.42410618,0.03822956,-0.53006566,-0.23173311,-0.17212038,0.15206112,0.016897324,0.22388425,-0.20701455,-0.1677446,0.10453491,-0.40497616,0.43235794,0.6036582,-0.40282068,-0.15896344,0.44530222,0.38633165,0.14806427,-0.14737962,-0.0019289723,-0.024597036,-0.43279308,-0.14480735,0.21098247,-0.31266123,0.7575265,-0.23003353,0.34812334,0.64174926,-0.25203326,0.023101857,0.21902661,0.12901907,-0.20124647,-0.051880676,-0.26490003,0.2547262,-0.55279607,0.09978207,-0.3163603,0.8082611,0.17434128,-0.5783189,0.3665092,-0.3753849,0.0814751,-0.13532422,0.5229668,0.56152165,0.4984868,0.38249436,0.7288146,-0.5668109,-0.11252538,-0.12961534,-0.37756422,-0.059115477,-0.2377212,0.00432212,-0.36333913,-0.07357514,0.0007525938,0.012515025,-0.058528494,0.4923134,-0.35851958,-0.11399924,0.14570141,0.76644486,-0.28971997,-0.15139662,0.8999683,1.1115106,0.99030447,0.12115395,1.0616821,0.27431244,-0.36019227,-0.015512343,-0.17297284,-0.70989865,0.2625859,0.30943248,0.34488073,-0.017632058,0.24479055,0.019692926,0.21332386,-0.55218786,0.058584716,-0.25217813,0.09128384,0.078138895,-0.0031336653,-0.31299302,-0.2954762,-0.04989153,0.014163665,0.08336009,0.19039711,-0.19226725,0.4839111,0.12252658,1.4513662,-0.002254801,-0.0044464385,-0.062164493,0.6818995,0.12900816,-0.023545295,-0.0018000092,0.25494406,0.3447041,0.0694732,-0.61914885,0.006526883,-0.23029445,-0.61592954,-0.12014258,-0.31995264,-0.16791104,-0.047557943,-0.48624343,-0.1790153,0.062318377,-0.46105045,0.41301367,-2.732553,-0.18511936,-0.050472137,0.46153095,-0.19581853,-0.17984973,-0.094511986,-0.6261372,0.5467256,0.27593315,0.54287964,-0.8007635,0.50744355,0.521713,-0.3989964,-0.2431878,-0.6534068,-0.14410914,-0.089862175,0.3668202,0.07567023,-0.06765306,-0.012747415,-0.07557608,0.546966,-0.074287675,0.22810163,0.2849525,0.372758,0.009346387,0.42228362,0.07436206,0.545982,-0.37809148,-0.043427013,0.25866884,-0.34458998,0.298721,-0.13592957,0.13491002,0.58566093,-0.5200429,-0.8048037,-0.71615946,-0.2285182,1.1509696,-0.17521127,-0.5220645,0.23213765,-0.2523559,-0.1524239,-0.102233686,0.56409866,-0.04817944,0.025723588,-0.7422199,-0.012371684,-0.08513856,0.22418484,-0.0026758898,0.05088187,-0.38657755,0.71169406,-0.103224926,0.49249235,0.28019515,0.23227689,-0.3834471,-0.42450452,0.14839526,0.9863777,0.32150474,0.14569625,-0.3860896,-0.17472482,-0.32789594,-0.07064224,0.07719517,0.48537084,0.43619004,-0.06324481,0.14854643,0.3370152,0.025101883,-0.10527567,-0.23264866,-0.24734856,-0.20490994,0.06015351,0.5464935,0.8085608,-0.0821897,0.4643596,-0.22702594,0.15251252,-0.1744548,-0.4281884,0.6764656,0.87157726,-0.12699974,-0.22458129,0.493431,0.46031985,-0.18938006,0.40708822,-0.49859935,-0.55700266,0.35249615,-0.078177966,-0.3371542,0.1386734,-0.3405724,0.112070814,-0.75954646,0.4281402,-0.0824244,-0.55143857,-0.608069,-0.088622935,-3.1533296,-0.01815113,-0.21871074,-0.1703775,-0.12691233,-0.37119743,0.15880813,-0.49800715,-0.39669088,0.1451718,0.062925115,0.7194649,-0.008815714,0.20957875,-0.24775639,-0.1228144,-0.26063222,0.14780758,0.16774797,0.30679837,-0.057570573,-0.56149954,0.010830079,-0.2151845,-0.2758573,-0.018345568,-0.6247214,-0.4287381,-0.093886696,-0.3975597,-0.40612063,0.5539629,-0.40844655,0.087515526,-0.21651646,-0.0710191,-0.1371996,0.36615035,0.16801631,0.0787768,-0.0890638,-0.111527316,0.012618328,-0.19964603,0.27088255,0.06776782,0.16941762,0.45329693,-0.09234699,0.118248776,0.4709156,0.5300003,-0.16900818,0.98240554,0.39970812,-0.15435591,0.285034,-0.14219852,-0.34460473,-0.7334982,-0.2627497,-0.08464517,-0.5263278,-0.40995908,0.20681964,-0.28147012,-0.93840504,0.50940293,0.08260317,0.23889562,0.09197492,0.20115693,0.48419133,-0.10411431,-0.076743975,-0.04241357,-0.04386402,-0.5428976,-0.49407142,-0.80859333,-0.45593277,-0.0638616,0.7609424,-0.054751523,-0.030915763,0.23768936,-0.22868745,0.020081053,0.1618212,0.044229306,0.050134268,0.4734619,-0.02296452,-0.6268893,0.67229927,-0.04189088,0.021175636,-0.47063917,0.27586663,0.6320664,-0.5884005,0.44388628,0.4163138,-0.041678745,-0.23400353,-0.32847616,-0.338188,-0.32600382,-0.13742912,0.4063305,0.10086276,-0.87155396,0.4198293,0.29382414,-0.15273425,-0.7266796,0.5608124,-0.04840573,-0.18303442,0.0064231455,0.30484205,0.16212232,0.06561445,-0.2938495,0.19098808,-0.48884815,0.2698251,0.19287507,-0.10287432,0.39532492,-0.29936978,-0.19022469,-0.6614691,-0.11380378,-0.42824095,-0.26655918,0.11442985,0.07829748,0.0074838675,0.37652677,0.17950146,0.27017388,-0.23866619,0.046746723,-0.0518211,-0.16691686,0.22865392,0.44116837,0.5867817,-0.50090265,0.5820032,0.016921353,-0.09757684,0.05106926,0.10488166,0.29155353,0.15637712,0.35808793,0.16424093,-0.25648886,0.34106705,0.95097774,0.3434692,0.5605046,0.20386209,-0.23894612,0.35079196,0.23791073,0.38538522,-0.12671399,-0.5814581,0.13668767,-0.31690794,0.13910504,0.21765241,0.104948215,0.3581548,-0.13214214,-0.08819564,-0.0871946,0.119138,-0.00031550654,-1.1694683,0.3605226,0.29591116,0.85066235,0.47645047,-0.21383753,0.08025748,0.82819515,-0.26704788,0.053028133,0.24430075,-0.027178848,-0.44149575,0.5870289,-0.694727,0.37924168,-0.064477906,0.027847806,0.03983238,0.05100585,0.30487496,0.6908798,-0.17197241,0.1098609,-0.008395295,-0.38878128,0.26407185,-0.41789284,0.26409587,-0.44023815,-0.21016707,0.88008416,0.46570295,0.3118975,-0.14711511,0.050013006,-0.09780569,-0.15369332,0.1941798,0.19906215,0.04849455,-0.112680726,-0.706277,-0.13362302,0.64022416,-0.14187463,0.2897747,0.11352159,-0.16985764,0.307919,-0.14296737,-0.1081457,-0.023088412,-0.6660181,-0.11381871,-0.30566654,-0.35911447,0.43008894,-0.010671428,0.33450732,0.25458905,-0.046231534,-0.26477933,0.40045664,0.18934962,0.51358926,0.14193867,-0.10067427,-0.38685116,0.019970225,0.24252415,-0.14694974,-0.04004645,-0.17851043,-0.0022930077,-0.56092393,0.4361327,-0.120782964,-0.18816961,0.08444296,-0.09994141,0.04815065,0.6154005,0.06886897,-0.102518626,0.1939143,-0.056423817,-0.32581654,-0.026864976,-0.18808149,0.33216485,0.26473904,-0.03770004,-0.051964052,-0.08741622,-0.04111328,0.34728995,0.016361307,0.3727109,0.20457721,-0.041103788,-0.37160328,-0.14122348,0.08522662,0.6109025,0.0029628107,-0.11263294,-0.15672477,-0.4096958,-0.37428504,0.07186214,-0.0556033,0.22014438,0.07394062,-0.2293351,0.742106,-0.08507783,1.1020051,0.1926897,-0.41845956,0.08455549,0.4313352,-0.10579884,0.0052770204,-0.302558,0.8921055,0.5574556,-0.04276315,-0.1375799,-0.4194635,-0.07415937,0.22497301,-0.13888262,-0.32226604,0.0101398,-0.7026028,-0.09281666,0.15668309,0.2720235,0.14345495,-0.021554861,0.06778825,0.3514946,0.08728435,0.24896465,-0.70265144,-0.21206822,0.44193038,0.16869542,-0.043848403,0.039153855,-0.3630934,0.41528144,-0.4557565,-0.07537242,-0.2149308,0.118150644,-0.30276838,-0.2584973,0.35282612,0.14220951,0.42762497,-0.2515029,-0.42640772,-0.42535517,0.4702044,0.12668814,0.30557364,0.4257737,-0.17230892,0.00027060084,0.042998914,0.38670912,0.963363,-0.30890867,-0.03005906,0.43301463,-0.38049722,-0.5361683,0.40715072,-0.3843721,0.216393,0.16028638,-0.24099183,-0.60331887,0.25401956,0.12881534,0.07626857,0.25024804,-0.7260095,-0.16615672,0.24430661,-0.23633362,-0.22373827,-0.2166054,0.03792223,0.4515271,-0.3679221,-0.22097911,0.12920745,0.3022154,-0.24204366,-0.48496243,-0.011191877,-0.44542146,0.30614302,0.06295176,-0.38021252,-0.032685626,0.10340949,-0.4093004,-0.0016975339,0.18337071,-0.41651514,0.10102989,-0.36089805,0.073983945,0.91309994,-0.14316988,0.3048326,-0.5719401,-0.4259042,-0.79084617,-0.3376744,0.45391634,0.22692636,-0.094684295,-0.5846842,-0.1344947,-0.060804844,-0.16408746,-0.06660021,-0.6396517,0.61283904,0.11958458,0.3059251,0.035304457,-0.7608523,0.044541616,0.11810743,-0.22898205,-0.50412244,0.49240702,-0.12017404,0.8396665,-0.0045772535,0.14631271,0.3113521,-0.51202095,-0.017707156,-0.20522703,-0.14963292,-0.5341045,0.007077462 -553,0.41994146,0.024352066,-0.5777867,-0.09908808,-0.32584688,0.12520157,-0.2753945,0.036409684,0.4547356,-0.65237653,0.013983635,-0.17664933,0.027649406,0.23208357,-0.09879342,-0.64011943,0.18104467,0.3454998,-0.43602732,0.6939423,-0.53330463,0.23343563,0.23823158,0.39959496,-0.114586025,0.0020532827,0.050365932,-0.29189116,-0.21211842,-0.39323103,-0.05905191,0.056809478,-0.6360694,0.54471403,-0.07085445,-0.1604997,0.111746825,-0.33686405,-0.28760624,-0.74000096,0.1929026,-0.77522653,0.59092325,-0.041264,-0.2849167,0.24432446,0.048141662,0.053354263,-0.17142795,0.14161427,0.14215168,-0.50096923,-0.56030685,-0.29415396,-0.37975752,-0.3617252,-0.5944351,-0.06045999,-0.5498777,-0.08334573,-0.35044828,0.32584256,-0.3583215,-0.058994148,-0.13890722,0.4662207,-0.4169944,0.26113868,0.28435227,-0.33278415,0.20254722,-0.5538135,0.010101834,-0.0038620508,0.24253839,-0.043316398,-0.24376991,0.05717612,0.23007518,0.54026365,0.0852654,-0.3218645,-0.19253911,-0.30271724,0.2928786,0.45155743,-0.252234,-0.20848681,-0.15383208,-0.18366742,0.11732716,0.22123946,-0.13260722,-0.27531707,0.19056419,-0.27993,-0.19306758,0.3930655,0.55482316,-0.30665773,-0.12735678,0.3570841,0.3133856,0.0861187,-0.14302911,0.09522348,0.014473884,-0.66088146,-0.24205254,0.14862145,0.04042884,0.332853,-0.18761054,0.3719783,0.61248255,-0.07038545,-0.090328805,-0.065240934,0.06098727,0.12359877,-0.3701735,-0.101258464,0.39833075,-0.5856338,-0.053647928,-0.40234247,0.8553127,-0.024198243,-0.73234653,0.4435625,-0.43703407,0.08896316,0.06910127,0.7552137,0.7888793,0.609766,0.13087328,0.7363835,-0.42919672,0.071492024,-0.2308956,-0.39829758,0.24289657,0.06150631,0.39061376,-0.34343508,-0.005112772,0.03684043,-0.0046461727,-0.03220971,0.72153795,-0.39802396,-0.25034776,0.098227665,0.8897683,-0.2928785,-0.08390375,0.5943438,0.94492364,0.7547873,0.08202815,1.4800409,0.38274604,-0.13756718,-0.21155721,0.057080336,-0.80029356,0.23810779,0.13716394,0.20580699,0.030354332,0.1647581,-0.14441296,0.39587897,-0.26680386,-0.16739123,-0.2450929,0.30960017,-0.28688484,-0.013228183,-0.47167903,-0.32852608,0.10946373,0.084280185,0.3380349,0.33863136,-0.11821938,0.6662458,-0.06630329,1.4618132,-0.26429388,0.19001998,0.11864409,0.18108438,0.20761491,0.0696117,-0.17508738,0.36142242,0.35949883,-0.0150672775,-0.4908757,0.041480817,-0.013154988,-0.34017313,-0.24448036,-0.2221631,-0.07640093,-0.37040234,-0.28469554,-0.1472803,0.070196494,-0.670893,0.3160801,-2.471926,-0.11169414,0.034656066,0.26713976,-0.05937147,-0.105399854,-0.28980735,-0.40449238,0.7487207,0.16149667,0.51985335,-0.45647234,0.41847837,0.65851593,-0.59449077,-0.23073545,-0.76694715,-0.064490825,-0.2645508,0.35409987,0.043585207,-0.34283978,-0.16115028,-0.014977474,0.63071895,-0.011619341,0.021836529,0.41387507,0.43571347,0.043752853,0.44691548,-0.055726454,0.6692854,-0.28813174,-0.27732277,0.32211766,-0.361293,0.29918376,-0.5071652,0.1027472,0.4623273,-0.3515482,-0.789162,-0.48978245,-0.33447254,1.0220734,-0.3208737,-0.6332153,0.22252482,-0.15046453,-0.41011795,0.27608237,0.6356701,-0.2177736,0.068561666,-0.69016045,-0.052922957,-0.05667385,0.43908623,0.017302517,0.024262419,-0.59296477,0.70500076,-0.045398038,0.52235466,0.4477952,0.27811375,-0.2236502,-0.39053917,0.19849755,1.0388837,0.3089234,0.17932382,-0.41657183,-0.19902417,-0.13535386,-0.13707414,-0.20669991,0.6282873,0.7939208,-0.0114699295,0.042444844,0.4324118,-0.20140402,0.03248123,-0.17762426,-0.47592682,-0.2659225,0.0822603,0.6612764,0.5769063,0.04542493,0.35162947,-0.05164594,0.38395584,-0.15135697,-0.5734259,0.63450724,0.821146,-0.18006366,-0.08654635,0.6931969,0.34545523,-0.3393131,0.5234371,-0.5659105,-0.4505599,0.32355097,-0.0725741,-0.54624575,0.2739178,-0.35202232,0.02033956,-0.8201816,0.29935333,-0.2505493,-0.78110915,-0.58466476,-0.042555068,-2.9357684,0.28779587,-0.18345444,-0.037003253,-0.24845281,-0.01304817,0.23889098,-0.231069,-0.43053085,0.111945495,0.23426816,0.66869324,-0.14150336,-0.016805997,-0.2766242,-0.18267271,-0.1786251,0.066606216,0.172052,0.14469813,-0.15815306,-0.31208098,0.027030377,-0.3371012,-0.18796304,-0.07323046,-0.69385684,-0.20071767,-0.043078043,-0.5800906,-0.27514592,0.72794163,-0.46944538,0.06694614,-0.49999124,0.14806098,-0.009072588,0.20064497,-0.2343224,0.40493238,0.067571595,-0.21240014,-0.29017594,-0.13861142,0.14333017,0.043828547,0.14647871,0.5474054,-0.1385004,0.09364046,0.32009363,0.52506053,-0.021010637,1.1048484,0.25215212,-0.005310994,0.20086047,-0.22337188,-0.22702871,-0.5818739,-0.18563019,-0.07320391,-0.5839568,-0.3375942,0.026505686,-0.39209983,-0.77226776,0.7313582,0.25183994,-0.2715418,0.027842939,0.30444583,0.3153547,-0.19891421,-0.006179557,-0.23135236,-0.20143846,-0.48673466,-0.28992948,-0.72930145,-0.40056723,0.0034487844,0.8838813,-0.34168726,0.07127506,0.2223673,-0.29009265,-0.0028600716,0.36091334,-0.019743273,0.12112396,0.490973,0.21355192,-0.79999554,0.57007116,-0.30291802,-0.09063216,-0.6338303,0.3294495,0.7976252,-0.82330936,0.6732016,0.63835835,0.15641502,-0.062786154,-0.56385005,-0.35576683,-0.021369044,-0.18270744,0.40765297,0.15436994,-0.88495624,0.58513737,0.205011,-0.10352039,-0.8813798,0.26669928,-0.117877685,-0.25441852,0.13396417,0.49653614,-0.07087765,0.18392144,-0.22697257,0.13731185,-0.5023937,0.26053488,0.0043269396,-0.145424,0.42740792,-0.21313259,-0.23531125,-0.77202725,-0.10402247,-0.55759245,-0.28883076,0.25017098,-0.056448378,-0.015975565,0.21301502,0.07032083,0.50203335,-0.39912495,0.046897575,-0.26862043,-0.3350001,0.3881399,0.4591039,0.30589643,-0.48063883,0.71817845,-0.0862866,-0.036787793,-0.21427418,0.17556104,0.5392507,-0.0052859783,0.6125581,-0.27695024,-0.08390085,0.23110884,1.1206373,0.02666571,0.43153828,0.31551552,-0.10058456,0.5918571,0.012090006,0.19750632,-0.24618758,-0.511834,-0.03991193,-0.33948252,0.16931406,0.4418836,0.15060219,0.6870812,-0.03905233,-0.0016742578,0.033895284,0.19748951,0.24110618,-0.77598315,0.40542597,0.30971405,0.6635402,0.50992304,-0.082770586,0.19543971,0.7955348,-0.21183528,0.025265751,0.22737288,-0.14632748,-0.22124997,0.6470789,-0.76961195,0.18284005,-0.14189675,0.14944276,0.30805573,0.0069577717,0.58677495,0.9327771,-0.22004281,0.11351369,-0.19251864,-0.115977846,0.16971289,-0.2286101,0.15462825,-0.41542068,-0.56966627,0.74661577,0.48283917,0.38398796,-0.32445967,-0.07122519,0.41998202,-0.13673452,0.111958556,0.13338211,-0.16083163,0.02024745,-0.5046676,-0.107588805,0.6093691,0.18677856,0.00085257564,0.23321018,0.024358401,0.43866858,-0.29272863,-0.07444246,-0.2417133,-0.7021374,0.07439869,-0.479561,-0.45649618,0.45941353,-0.24937394,0.1710898,0.2202362,-0.0049213823,-0.043942496,0.38210493,0.16003975,0.711169,0.21406563,-0.33672932,-0.119209476,-0.10074917,0.16125692,-0.4308537,-0.21803872,-0.19917819,0.22084881,-0.7407465,0.24893138,-0.43108946,-0.20823182,0.39380378,-0.20035623,-0.024408044,0.57950974,-0.0504243,-0.10364505,0.12858109,-0.19811766,-0.3064389,-0.07516435,-0.28759414,0.10571757,-0.028284954,0.004541892,-0.11811134,0.00039257683,-0.34580362,0.2134133,0.11476852,0.08688773,0.29915774,0.25668934,-0.29711035,-0.05023949,0.2547166,0.6513675,-0.12879927,0.12674262,-0.09895169,-0.23582642,-0.35953647,0.38184264,-0.061105844,0.22855332,0.09097397,-0.33515507,1.0167025,0.07548448,0.65685683,0.06258149,-0.41787353,0.042844698,0.53792256,-0.106423564,0.018184606,-0.40482134,0.9573214,0.47663042,-0.023866292,-0.1377616,-0.698352,0.08346324,0.31650817,-0.3905846,-0.15291478,-0.14436617,-0.7093841,-0.1716562,0.24700055,0.2025858,0.101702414,-0.18581687,0.10512464,0.14895378,0.32871306,0.083429575,-0.8001439,0.20108615,0.42210034,0.24783672,-0.0065322565,0.21072644,-0.15372911,0.3181853,-0.70840573,0.2299541,-0.2783648,-0.07429065,-0.22835913,-0.057338826,0.27400377,-0.08627109,0.22868861,-0.38499472,-0.23110078,-0.23324324,0.28468582,0.4792361,0.1953629,0.99742305,-0.2867426,-0.058476217,0.09027122,0.63816637,1.2296115,-0.33938578,0.054356202,0.45680097,-0.2450777,-0.5645276,0.14189011,-0.44908094,0.086420424,0.14940774,-0.47124413,-0.2529425,-0.058141343,0.1453109,-0.10220885,0.06238895,-0.47100064,0.025004255,0.26593226,-0.087140486,-0.16522701,-0.25439703,0.004202359,0.6904039,-0.15187468,-0.14199401,0.025583807,0.12146783,-0.3680833,-0.634593,0.13428603,-0.43092898,0.2382175,0.08267533,-0.38512185,0.058201525,-0.00968553,-0.62213194,-0.015828123,0.25538987,-0.33852196,-0.024707912,-0.31360298,0.055322472,0.77181065,-0.23916706,0.14973912,-0.43065813,-0.6202703,-0.7094408,-0.2512557,0.16636151,0.045197506,0.043642245,-0.32648513,-0.15768915,-0.38957733,-0.021370951,0.103289,-0.47662494,0.28385922,0.1034761,0.42442322,-0.32515752,-1.0443323,0.34608862,-0.0021123062,-0.4232034,-0.52218974,0.34190306,-0.10843285,0.5426741,0.012303774,0.03383788,0.28756922,-0.61168313,0.11085976,-0.2532771,-0.10768244,-0.8426132,-0.009784561 -554,0.5231232,-0.12859257,-0.64393955,-0.13116202,-0.36419985,0.07118392,-0.23158875,0.291925,0.22980876,-0.25192967,0.02600876,-0.03667025,0.02464954,0.49523336,-0.14858887,-0.66793483,0.13657375,0.18753041,-0.6244656,0.63483995,-0.3700618,0.47672012,0.022559313,0.14657965,0.13887516,0.2081555,0.16525884,0.091315046,0.038594473,-0.02346781,-0.18675537,0.28334576,-0.35622045,0.13524845,0.0076338965,-0.35560176,0.027687455,-0.34613147,-0.37948143,-0.6998665,0.33709848,-0.61959547,0.5746588,0.045071658,-0.43605843,0.22024806,0.2168052,0.31749025,-0.29450846,0.125299,0.0830722,-0.10627078,-0.10572662,-0.14896022,-0.29239064,-0.42289844,-0.50270474,-0.025481287,-0.68230987,-0.1556967,-0.37097472,0.13699916,-0.39446798,-0.007681374,-0.07480159,0.28574145,-0.3176388,-0.10818894,0.27038255,-0.17099148,0.10118716,-0.44504398,-0.0358599,-0.060530424,0.30560604,-0.09501466,-0.1278849,0.3022971,0.18126135,0.56001174,0.07711325,-0.37260762,-0.23726879,-0.09890812,-0.06544405,0.45626932,-0.118359946,-0.3492109,-0.24741589,0.1774843,0.26510993,0.107509516,-0.017494153,-0.13582477,-0.14488885,-0.0539562,-0.21077985,0.47198993,0.5188158,-0.4002781,-0.18112227,0.5493483,0.4518078,0.19077645,-0.13356066,0.19027558,0.0007732401,-0.5353672,-0.1372807,-0.028171273,-0.17781456,0.36492836,-0.09188501,0.30156633,0.58175963,-0.12254991,-0.104952306,0.057370868,-0.019172285,-0.045856792,-0.1274414,-0.12733258,0.028701417,-0.37298357,0.1492856,-0.05417065,0.8361653,0.116759695,-0.62685513,0.3856958,-0.43921047,0.26550233,-0.11190287,0.51168233,0.8375316,0.43844718,0.123561874,0.84323883,-0.3704788,0.10561382,-0.23315448,-0.3737577,0.014138941,-0.14708243,0.13169977,-0.53234124,0.071464285,-0.067645654,-0.1368293,0.15394051,0.58120275,-0.43486422,-0.25230452,0.109146126,0.75182766,-0.3064631,-0.07993293,0.66615766,0.92156464,1.0027006,-0.0018806055,0.76088744,0.30610988,-0.0654056,-0.05043803,-0.4070348,-0.7201308,0.19594769,0.37487411,0.45177123,0.29900745,0.055351317,-0.050269112,0.428436,-0.30663487,-0.16039939,-0.19491081,0.41589954,-0.056784756,-0.062898465,-0.55662125,-0.13553809,0.012970909,0.20381455,0.19684026,0.23087373,-0.19460759,0.29819667,-0.035472084,1.6784686,-0.048207883,0.09536989,0.07233653,0.4912983,0.448484,-0.05810443,-0.25524554,0.24103852,0.33832118,-0.03583692,-0.5157947,0.101495914,-0.26306075,-0.29231185,-0.14639802,-0.28537807,-0.0104904175,-0.14727086,-0.4484768,-0.04432101,0.091654256,-0.46414793,0.41310832,-2.700026,-0.30518296,-0.12763551,0.28246024,-0.15937856,-0.4006553,-0.19250916,-0.36511704,0.4566427,0.32202095,0.42647305,-0.6146914,0.43604413,0.4213787,-0.44435042,0.0005974571,-0.5038999,-0.07082532,-0.10142656,0.4065529,0.064034134,-0.26872227,-0.07717453,0.37826833,0.52797973,-0.07475567,-0.026038243,0.31772283,0.35642356,-0.008034702,0.44354972,-0.034285896,0.47739035,-0.24813436,-0.23092394,0.32861704,-0.29650882,0.15045999,-0.1986882,0.204904,0.43334395,-0.43806374,-1.0249839,-0.5590572,-0.008193628,1.207764,-0.30278575,-0.34219706,0.36457685,-0.38127887,-0.19948098,0.06069537,0.4436424,-0.104773805,-0.11028341,-0.6387839,0.18061538,-0.086252026,0.13367759,0.004606986,-0.047526613,-0.34194073,0.6001358,-0.09769623,0.4688384,0.110392906,0.2750215,-0.16976161,-0.34877726,0.07950388,1.0302824,0.40122074,0.049852673,-0.23210277,-0.17489572,-0.17514539,-0.1279516,0.11885583,0.45742184,0.7030415,-0.035607394,-0.042281713,0.21765958,-0.05331141,0.10799181,-0.13102956,-0.21415631,0.011359187,0.007841102,0.4970463,0.60420895,-0.12031083,0.59022826,-0.060522676,0.07604453,-0.22140035,-0.5618675,0.54354423,0.7229703,-0.24851461,-0.29617283,0.6312847,0.39167327,-0.18705197,0.33790478,-0.6538058,-0.40212414,0.2997832,-0.25698513,-0.23934577,0.30553952,-0.39113188,0.20487493,-0.8801196,0.18790086,-0.050722852,-0.5240816,-0.35056457,-0.06926332,-3.9511385,0.19958846,-0.15363489,-0.09070078,-0.026072232,-0.103528515,0.30025136,-0.55353826,-0.48436996,0.1683362,0.062249493,0.81924033,0.014074045,0.11639272,-0.12184366,-0.36110285,-0.25727195,0.17361537,-0.09892505,0.4417332,0.09203396,-0.36407518,-0.11259945,-0.18921496,-0.44123894,0.033941984,-0.6223396,-0.39951804,-0.19107153,-0.5678105,-0.036442574,0.6027919,-0.08391881,0.13871908,-0.28569892,0.083389044,-0.08389093,0.22517961,0.20392114,0.08022277,0.12972993,-0.17600441,0.077983506,-0.34613413,0.20606461,-0.038910184,0.25612313,0.2951016,-0.015795963,0.16629696,0.65011185,0.5863866,-0.15033658,0.86274517,0.5083535,-0.20507322,0.17866516,-0.20907608,-0.18080963,-0.5002485,-0.296872,-0.11397173,-0.42843544,-0.20817086,-0.15770626,-0.35278186,-0.71966046,0.49299917,0.05962891,0.16921046,-0.0764284,0.20753461,0.5192737,-0.31144476,-0.119667806,0.07908109,-0.30507764,-0.40413687,-0.21547228,-0.5614064,-0.41179127,0.15464257,0.9774601,-0.30963215,0.040988002,-0.04349215,-0.14617775,-0.11217635,-0.1444967,0.29827192,0.2332203,0.25356615,-0.15031618,-0.60667443,0.34298575,-0.3292828,-0.03928556,-0.64903533,0.09214832,0.5168863,-0.3644543,0.37546647,0.30452558,0.17085974,0.01020441,-0.55870885,-0.101462506,0.19736522,-0.21477845,0.3319084,0.2258945,-0.87289244,0.5686916,0.26867348,-0.28070578,-0.65874773,0.39816177,0.045662288,-0.49687767,-0.07613926,0.29834175,0.19930081,0.008240665,-0.28610376,0.1682411,-0.3669163,0.3316868,0.19470552,-0.16165046,0.31625107,-0.21452469,-0.25323817,-0.4455144,-0.2465037,-0.53628254,-0.24469146,0.14104484,0.077091806,0.19287175,-0.11797794,-0.07393029,0.4338583,-0.46999824,0.05398655,-0.17700471,-0.3279416,0.47033855,0.54622597,0.5334091,-0.31750235,0.6576119,0.010115937,-0.066328116,0.01259985,0.07081353,0.50490624,0.03982846,0.36103624,0.0078092893,-0.20620997,0.3271875,0.8363047,0.1154202,0.3460929,0.14121626,-0.23264049,0.12884328,0.16238065,-0.058353074,-0.05774383,-0.3031614,-0.15640083,-0.15953301,0.21336919,0.4385461,0.18769567,0.28254217,-0.075213976,-0.2308344,0.07337927,0.14497979,-0.0150806345,-1.3648635,0.3142329,0.17892711,0.6614063,0.27005088,0.09549462,-0.1568193,0.6783528,-0.07604752,0.12056758,0.15698496,-0.17819971,-0.26773602,0.4319611,-0.6481364,0.48019654,-0.03480258,-0.056412484,0.107211575,0.13697058,0.35806847,0.7800763,-0.17054524,0.040777795,-0.004252843,-0.357707,0.004098622,-0.25241476,-0.012511905,-0.5912846,-0.4015083,0.4846919,0.35754645,0.27780324,-0.15103026,-0.04547311,-0.031933706,-0.076823905,0.01297737,-0.09074841,-0.043191552,-0.16180977,-0.6341726,-0.227665,0.45226675,0.29315484,0.11440294,-0.124010086,-0.04253633,0.3111491,-0.106883936,-0.030997988,-0.06316717,-0.47247913,0.004508386,-0.31421995,-0.47838935,0.5148578,-0.28394014,0.3329549,0.16119899,0.008154458,-0.14966656,0.39553973,0.05672457,0.7704004,-0.003603669,-0.22726487,-0.35172838,0.080219135,0.14093575,-0.24436656,-0.15540941,-0.20497891,0.18140364,-0.69607157,0.43742695,-0.18265633,-0.3976164,0.25013894,-0.22833596,0.12448178,0.42989242,-0.19318034,-0.19489272,-0.14613435,-0.112393826,-0.3067486,-0.26653707,-0.24377877,0.22189131,0.017476344,-0.21648918,-0.09643997,-0.14357014,0.055982057,0.42794818,0.029332126,0.30038968,0.32054773,0.25411466,-0.24848346,-0.014458688,0.32899207,0.5845104,-0.029146316,-0.053717352,-0.34901798,-0.36199564,-0.4286743,0.032853793,-0.16211359,0.150396,0.102615766,-0.23934005,0.717348,0.14807771,1.0445675,0.050293807,-0.18808122,0.18722682,0.4269345,0.07881052,0.053885635,-0.25469792,0.7571197,0.54923654,-0.020255422,-0.106080174,-0.4625599,-0.13846299,0.2841875,-0.2876152,-0.08905725,0.024383456,-0.67777526,-0.2880047,0.27445835,0.17635952,0.25285876,-0.15938003,0.0398279,0.17037576,0.17587443,0.2500834,-0.58359617,-0.043326266,0.31681487,0.19206555,0.024152882,0.15637036,-0.531399,0.30654252,-0.57102245,0.0023103633,-0.2909202,0.22794327,-0.058340088,-0.20042671,0.31559902,0.069112726,0.37509066,-0.32265148,-0.2934243,-0.20351115,0.48437583,0.07730486,-0.04439706,0.47993818,-0.23704052,-0.060928702,0.11765577,0.46775967,0.9501611,-0.25155357,0.15357432,0.4091164,-0.21670562,-0.7289324,0.1999404,-0.26494005,0.1682218,0.016824782,-0.27160046,-0.49641177,0.36357826,0.075799,0.17210573,0.08479066,-0.3816815,-0.10450387,0.21069282,-0.12700732,-0.1835892,-0.24532379,0.18797515,0.5804034,-0.19526537,-0.19284493,0.15437026,0.37483528,-0.09625348,-0.7331923,-0.07370634,-0.24755621,0.22957294,0.17282228,-0.37481314,-0.16486053,0.012523921,-0.5281898,-0.020178216,0.27696648,-0.3518396,0.05009177,-0.22368288,0.005479932,0.9924231,-0.31076622,0.23512448,-0.6588127,-0.55603313,-0.8444702,-0.3508932,0.49004108,0.14745755,0.081712656,-0.6536259,0.0136347795,-0.17839164,-0.015769117,-0.0069754003,-0.43048885,0.4039981,0.10462917,0.25299364,-0.07542806,-0.8570001,0.101442575,-0.043939274,-0.39074278,-0.5736855,0.57694435,-0.056939546,0.7498642,0.0519833,0.08660765,0.20253663,-0.5748933,0.15915559,-0.27349404,-0.16557099,-0.68365747,0.06471855 -555,0.37335458,-0.25785488,-0.40171435,-0.18236682,-0.1296548,-0.10749281,-0.08234057,0.5094057,0.25991556,-0.17192292,-0.17462324,0.17247437,0.07713289,0.5562645,-0.14776528,-0.6469847,-0.17041172,0.13035916,-0.5116725,0.39309788,-0.5096212,0.10220691,-0.015510871,0.42466047,0.06536233,0.37821776,0.21112302,-0.036447387,0.032595508,-0.019926507,-0.05837232,0.09139057,-0.28588507,0.1077331,-0.07537772,-0.2568438,-0.017691515,-0.35383046,-0.17446296,-0.77498525,0.1857415,-0.9386263,0.40553343,0.17898244,-0.24993092,-0.0806644,0.24370344,0.31015873,-0.5632704,-0.10805874,0.18984519,-0.19121288,-0.27598125,-0.30351952,0.067041345,-0.2459558,-0.48638922,-0.048432432,-0.4209451,-0.22851914,-0.16049168,0.1372475,-0.34475356,0.094636485,-0.106845416,0.48111156,-0.35942298,-0.26126397,0.49601045,-0.30630657,0.2906406,-0.66267556,-0.0002161998,-0.043165684,0.38197047,0.083176665,-0.1483149,0.33413702,0.3155553,0.39176422,0.11257185,-0.25797474,-0.45850885,-0.15427479,0.10753334,0.40056977,-0.2614675,-0.33701736,-0.0885837,0.1361936,0.32680082,0.34438345,0.09134762,-0.13913317,-0.08802095,-0.086159594,-0.113877065,0.41415113,0.5245645,-0.18799545,-0.23563522,0.22577633,0.558029,0.16227606,-0.16435632,-0.18923269,0.033961758,-0.54809725,-0.08836794,0.058352496,-0.12473878,0.5414559,-0.020405272,0.016619701,0.7939349,-0.04375806,-0.10094983,-0.16305949,0.08412258,-0.04561978,-0.48237756,-0.34452236,0.35684508,-0.4171449,0.03135806,-0.25475004,0.5831703,0.071089596,-0.6887443,0.3727763,-0.41782835,0.17078546,-0.09031563,0.5610326,0.6286176,0.36128286,0.4680252,0.72009474,-0.4069794,0.05772183,-0.12592174,-0.28584015,0.13934019,-0.17985828,0.19798602,-0.49748462,0.11750825,-0.056619074,-0.022576243,0.26642463,0.29799554,-0.4293377,-0.12081657,0.34824005,0.66231537,-0.2580326,-0.071097024,0.60395443,1.1481131,0.97176635,0.02994147,0.9750305,0.23713371,-0.13723344,0.09745137,-0.35266715,-0.5272161,0.15280144,0.43071523,0.16664189,0.32778734,-0.15704927,-0.10093637,0.5613167,-0.4011069,0.06025573,-0.031884983,0.36501363,0.17404467,-0.04789694,-0.6782289,-0.2095796,-0.06263501,0.07275563,0.07366891,0.2770323,-0.21220566,0.24934067,-0.298909,1.2828797,0.022785438,0.13031684,0.29715565,0.422776,0.17193875,-0.18279043,-0.09171552,0.30952924,0.40500024,-0.080357075,-0.49311912,0.29488486,-0.37345618,-0.46947083,-0.05232149,-0.39092684,0.08555441,0.19417885,-0.42654303,-0.0813775,-0.037777636,-0.24440703,0.41316992,-2.8051646,-0.17471384,-0.20319329,0.2801966,-0.24833316,-0.098575644,-0.06246782,-0.48484457,0.29208505,0.2961579,0.5094205,-0.5483825,0.3793211,0.41489077,-0.672539,-0.11129148,-0.6729834,-0.13121408,-0.117974386,0.28763333,0.13405028,-0.18780947,0.016824622,0.2748519,0.871033,0.054045603,0.102136,0.60568565,0.21907267,-0.05903581,0.45576444,-0.1887309,0.4998819,-0.36250055,-0.22687222,0.27699357,-0.31131136,0.26214308,-0.13315347,0.12923428,0.4566536,-0.36295208,-1.0594491,-0.55382,-0.16349131,1.1760303,-0.28322855,-0.45338815,0.33185294,-0.193057,-0.07379003,0.06326246,0.659901,-0.026990963,0.14066301,-0.6781305,0.103899844,-0.032165878,0.18045703,0.110263355,-0.1885661,-0.41363132,0.66592777,-0.1263146,0.6198007,0.36951047,0.3380453,-0.22627701,-0.22197713,-0.010127797,0.68145525,0.3750698,-0.0810905,-0.140872,-0.26713225,-0.08934538,-0.27145836,0.09623588,0.5649967,0.78974396,-0.08936548,0.069187,0.22075929,-0.08852984,-0.09810325,-0.00417274,-0.1785135,-0.14238456,0.09187277,0.48681992,0.7189417,-0.13425742,0.3233169,-0.14694534,0.44786292,-0.06301547,-0.4741376,0.5814091,0.1729901,-0.12185172,-0.05987503,0.7152164,0.46455243,-0.31158537,0.45665455,-0.5632519,-0.23898031,0.5829266,-0.19027914,-0.43281814,0.09800493,-0.35058638,0.06948612,-0.8053275,0.3189618,-0.36009932,-0.40684494,-0.45766416,-0.11895982,-3.284323,0.2534316,-0.24221398,-0.212428,-0.23409939,0.038140878,0.20877555,-0.8159684,-0.59833485,0.24414451,0.29556355,0.6576952,0.047835357,0.0049802205,-0.25894275,-0.2574749,0.11547672,0.11771519,0.0060605705,0.31826442,-0.040209524,-0.32135358,-0.03376511,0.12283272,-0.5257143,0.21551657,-0.63383186,-0.48121086,-0.16995667,-0.6477639,-0.18142298,0.572137,-0.3577102,0.06621565,-0.103817634,0.17096446,-0.15944344,0.19036195,0.072537616,0.29896286,0.15771817,-0.15271114,0.22396877,-0.29020533,0.38054258,0.04146628,0.5039457,0.015002718,-0.124395244,0.1553286,0.6030878,0.76362574,-0.1423176,0.9413408,0.50610536,-0.09440716,0.11882356,-0.22137581,-0.07885267,-0.38942146,-0.48727527,0.024141889,-0.33783948,-0.46236897,0.08829946,-0.30365926,-0.89936566,0.66114396,-0.15848821,0.22873801,-0.011597608,0.11295075,0.4363661,-0.35423902,0.06963975,-0.05721378,-0.10800575,-0.50279063,-0.20751056,-0.606724,-0.44422233,0.05898881,0.8477218,-0.27864432,0.21335633,-0.04309868,-0.37646964,-0.0017258892,0.04342665,0.13075498,0.20673463,0.30171582,-0.015523384,-0.5059925,0.36144572,-0.058336742,-0.1800646,-0.5534744,0.23723768,0.6280738,-0.61118543,0.7555099,0.39812458,-0.04659816,-0.15447286,-0.68956155,-0.37359804,0.030838288,-0.08747509,0.4057614,0.079445824,-0.76308256,0.45923483,0.42882708,-0.5913696,-0.7006607,0.20267338,-0.23572199,-0.41845497,-0.14689668,0.23051286,0.09768418,-0.06545631,-0.22278768,0.19709963,-0.374844,0.14453211,0.17786336,0.0025279843,0.48764932,-0.12760691,-0.15206271,-0.84208673,-0.01665958,-0.6175181,-0.15364417,0.35342237,-0.02389421,-0.08887683,-0.00086685555,0.05510556,0.31086418,-0.37022558,0.09120031,-0.062840894,-0.49481866,0.2855921,0.48474103,0.40061697,-0.3347604,0.55540717,0.12121879,-0.15209699,-0.14385627,-0.085302286,0.43936846,-0.014758564,0.36422488,-0.4431786,-0.20479526,0.39575812,0.6025748,0.015408502,0.3618801,0.17920142,-0.08348766,0.36995938,-0.018644445,0.0050892415,0.0061043683,-0.3340113,0.22698215,-0.10550996,0.20618032,0.43338963,0.26327422,0.2946706,0.18905734,-0.23038816,0.027336912,0.243128,-0.06529902,-1.0185826,0.5601543,0.12239452,0.8550632,0.3913549,0.33421502,-0.32368073,0.739467,-0.17897977,0.042634506,0.29912823,-0.041350465,-0.5617793,0.6887685,-0.6946789,0.48090377,-0.05915087,-0.19174066,0.06162866,0.17861812,0.37968364,0.58544296,-0.18950592,0.02542765,-0.06810643,-0.15713893,-0.030188212,-0.46831375,0.07557152,-0.4870733,-0.51201445,0.7261219,0.3967527,0.46902445,-0.13774279,-0.107540086,0.14769903,-0.08805128,0.3187409,-0.28105116,-0.091780625,0.23124838,-0.64293534,-0.16165182,0.3502679,0.17389959,0.1876238,-0.3128406,-0.1906397,-0.045968734,-0.15272877,-0.20234965,-0.0131511185,-0.6295065,0.05679586,-0.27684033,-0.445045,0.48731798,-0.39929384,0.19352292,0.10001466,-0.040522512,-0.11293011,0.2649346,0.021638045,0.97127944,0.04619319,-0.17081629,-0.3272987,0.14740235,0.028914332,-0.18334855,0.35483938,-0.5359536,0.04439525,-0.5651542,0.6186437,-0.20927033,-0.47302204,0.18775599,-0.2966727,0.008364448,0.5174328,-0.25991797,-0.251164,-0.15626453,-0.29698306,-0.3433893,-0.17185314,-0.2989272,0.2917321,0.18015964,0.061987165,-0.07682274,-0.2003231,-0.0693216,0.56419307,0.09805096,0.3958448,0.3047602,0.03730444,-0.1612259,0.19061668,0.18757862,0.4679682,0.30632788,-0.17268036,-0.70000744,-0.4134488,-0.26832947,-0.0066953646,-0.15627035,0.25310138,0.023644438,-0.034879588,0.8403218,-0.07857318,1.1378856,0.060649913,-0.3260609,0.015015712,0.49355137,-0.09037268,-0.0022056182,-0.33768955,0.8195325,0.5475279,-0.12896952,0.0030264992,-0.57268006,-0.016490089,0.46635062,-0.3554265,-0.1146014,0.016025256,-0.53941923,-0.41763777,0.22512802,0.1191609,0.29176375,-0.121693455,0.15973455,0.013009314,0.17233385,0.36908117,-0.53621125,-0.009193512,0.16044976,0.22446051,-0.008015449,0.12523529,-0.4032705,0.42830864,-0.6003039,0.23926511,-0.4666375,0.06834285,-0.12661079,-0.38290936,0.15660103,0.07238744,0.41425446,-0.38064396,-0.3886002,0.0941325,0.490996,0.14498053,0.10491265,0.60687834,-0.23323737,-0.027308168,0.19095184,0.65710574,1.1955835,-0.5872773,0.12803735,0.29527518,-0.3386604,-0.6862997,0.40885413,-0.14194433,-0.046527274,-0.17358278,-0.52498066,-0.60704124,0.29836285,0.36802056,-0.080457695,0.0642466,-0.36303315,-0.23139018,0.22342502,-0.34038007,-0.24009642,-0.1474142,0.44852483,0.4939749,-0.1990358,-0.53157085,0.04370992,0.3107174,-0.09152831,-0.3964876,0.014349951,-0.25428867,0.25009134,0.054300666,-0.3914908,-0.17825763,-0.035601947,-0.38316876,0.012778124,0.069494836,-0.30907476,0.15254557,-0.25501373,-0.08522039,0.7998555,-0.196117,0.06497009,-0.606371,-0.35717472,-0.9790888,-0.4985518,0.42848256,-0.04657547,-0.10300244,-0.49985808,0.11262076,-0.045726594,0.04801791,-0.021699332,-0.4336572,0.364569,0.08592481,0.50219405,-0.3103376,-0.59902614,0.123615965,0.084862344,-0.14412409,-0.50378394,0.5001933,-0.021956764,0.8879811,-0.03160062,-0.07365355,0.03542889,-0.38561425,0.11434747,-0.43795604,-0.28431168,-0.589012,-0.031290468 -556,0.3899457,-0.21048424,-0.6091427,-0.15539016,-0.4561545,0.3109129,-0.11440333,0.27694717,0.34508634,-0.39242926,-0.036429934,-0.056504246,-0.068478845,0.6232346,-0.06629886,-0.57970804,-0.19245955,0.1541456,-0.73891383,0.36507508,-0.49247247,0.38687292,-0.07218344,0.3485361,0.079925016,0.36295295,0.123414524,0.11423409,-0.31401703,0.039478276,-0.17960595,0.16323192,-0.47002625,0.2748696,-0.061341736,-0.40637088,-0.12267285,-0.5014663,-0.07986273,-0.6216853,0.4222323,-0.7329559,0.63923156,-0.32900435,-0.18754964,0.18690751,0.08441241,0.19136998,-0.1687617,-0.044308756,0.18078461,-0.24788864,-0.19751784,-0.09479304,-0.46033153,-0.4821389,-0.6965439,0.040168535,-0.6373823,-0.025243798,-0.09248232,0.26428607,-0.27716595,0.11923026,-0.28073674,0.34507555,-0.42680666,0.0037160218,0.13500142,-0.1530726,-0.23112212,-0.423791,-0.15495683,-0.13027795,0.27369982,-0.19978918,-0.16743045,0.2867817,0.3087086,0.45740137,0.089741334,-0.28582612,-0.374999,0.04988103,0.015513254,0.6173108,0.036292683,-0.14020377,-0.22530653,0.03144015,0.3428248,0.22242782,0.03510184,-0.30017248,-0.013350929,-0.036322188,-0.26553184,0.37036484,0.3297666,-0.4270337,-0.4052553,0.4728959,0.461336,0.065031655,-0.13553278,-0.019050121,-0.0061993515,-0.534759,-0.2460278,0.22993481,-0.01721237,0.41863087,-0.18445136,0.35500357,0.7093791,-0.20024021,-0.094766006,-0.06489722,-0.022289816,-0.109717,-0.29501772,-0.038510475,0.09167868,-0.41316468,-0.006586262,-0.24789023,0.5640188,0.16637984,-0.755628,0.41056857,-0.5622849,-0.011875557,-0.137633,0.485991,0.8414103,0.47503424,0.19168445,0.77204144,-0.32602087,0.1546825,-0.042738695,-0.42714366,0.09716009,-0.055412523,0.16258648,-0.5924028,0.085611425,0.096881784,-0.20824751,0.107508436,0.56894505,-0.41005343,-0.06604463,-0.011219705,0.6004372,-0.39396754,-0.30654016,1.0542166,0.89463574,1.0560353,-0.016499931,1.3083967,0.37643304,-0.15372075,0.15859413,-0.44053173,-0.49043226,0.20428024,0.32992807,-0.1978142,0.57192165,0.15474014,0.084487,0.49112058,-0.0013336454,-0.05566007,0.13429976,0.18673138,0.044162326,0.009846619,-0.48618677,-0.434976,0.17304751,0.10468959,0.15044677,0.38079602,-0.400205,0.6084083,0.1734009,1.6599513,0.11888326,0.09920042,-0.028558541,0.4207917,0.19501437,-0.18499042,-0.17194705,0.18857983,0.30335236,-0.09068041,-0.5189944,-0.02535567,-0.34617335,-0.4358199,-0.1416797,-0.4024296,-0.15840384,-0.30557504,-0.431475,-0.16177127,0.095688656,-0.4431503,0.46755362,-2.4606793,-0.33569452,-0.123285115,0.2600244,-0.14132771,-0.58682007,-0.27771848,-0.58047926,0.054277964,0.22843206,0.29708675,-0.67382324,0.61016846,0.31793782,-0.5286078,-0.27479216,-0.7021337,0.0038506442,-0.0056122965,0.20756146,-0.109311596,0.033627205,-0.2652282,0.19708057,0.5196097,-0.12322215,-0.107935704,0.34516788,0.6271052,0.10436276,0.5090982,0.08909263,0.7595862,-0.25891915,-0.27288404,0.29928097,-0.2623379,0.42749125,0.05897687,0.22312368,0.52293104,-0.5185021,-0.92440605,-0.6494362,-0.30561453,1.028013,-0.24039073,-0.17058566,0.26416874,-0.36019257,-0.5012816,-0.0677441,0.45997477,-0.059981447,-0.269237,-0.6543728,0.07276868,-0.049748957,0.24882625,-0.16943322,0.17152117,-0.31233644,0.49586508,-0.0778682,0.49803632,0.20099105,0.25230756,-0.25805867,-0.2802805,0.13484491,0.8211316,0.3185103,0.069810495,-0.1383346,-0.26364857,-0.20584798,-0.096130036,0.12141878,0.39798015,0.56827205,0.1857651,0.04501763,0.27523014,-0.17698915,0.008311257,-0.18235636,-0.14764288,-0.09528359,0.12586556,0.49084568,0.5858365,-0.14478578,0.604325,-0.12469951,0.15976907,-0.16399583,-0.5730435,0.45107916,0.601179,-0.15942909,-0.25386903,0.6266363,0.30977362,-0.28418708,0.43353277,-0.545638,-0.26111576,0.46762004,-0.24232975,-0.28177205,0.06710804,-0.15328245,-0.05039425,-0.8522908,0.1159827,0.12434345,-0.4815263,-0.35903522,-0.1829363,-3.7193024,0.07009753,-0.042958163,-0.13398564,0.088053904,-0.15740518,0.23682077,-0.63425,-0.50896317,0.11925354,0.1048455,0.6996918,-0.13098523,0.117039904,-0.21305908,-0.36039153,-0.2201279,0.24372308,0.10930126,0.3651824,0.04703113,-0.47433758,0.14096673,-0.33230308,-0.5555238,0.031410746,-0.6218503,-0.5210992,-0.110161625,-0.46370748,-0.28929323,0.77973324,-0.32753187,-0.03763191,-0.25460967,0.07069456,-0.1045053,0.37642765,0.12098759,0.10749842,0.16304891,0.07283813,0.010416001,-0.31900746,0.26708952,0.044676416,0.31736845,0.4792737,-0.03964098,0.3490079,0.63720894,0.7552637,0.03576913,0.81300527,0.29437137,-0.18379773,0.3573645,-0.13247588,-0.14559329,-0.7122614,-0.33546272,-0.11009822,-0.4361938,-0.5270733,-0.11400108,-0.34494567,-0.819747,0.52379507,0.103404365,0.09735954,-0.2150347,0.34447902,0.47123975,-0.3510286,0.16702707,-0.17222254,-0.26142564,-0.41117623,-0.57591015,-0.54368013,-0.57887936,0.20973766,1.3643291,-0.071515806,-0.023149295,-0.04975819,-0.41331202,0.045178752,0.117860936,0.24993144,0.3966132,0.2975529,-0.360182,-0.65981716,0.3320196,-0.46508798,-0.0069833016,-0.4959927,0.025807139,0.7032083,-0.55248034,0.44767746,0.18991892,0.2469398,0.009067059,-0.45352718,-0.06484892,0.09462763,-0.20256354,0.44408223,0.36483952,-0.7557355,0.56103843,0.02761673,-0.16772492,-0.6848555,0.4193898,0.053770866,0.06558818,-0.08167456,0.4603355,0.29107,-0.014014636,-0.22996904,0.21593356,-0.41857833,0.16081037,0.3542231,-0.020288583,0.20196274,-0.17091489,-0.11916258,-0.64425975,-0.08073437,-0.15127198,-0.36307842,-0.060448606,0.05824134,0.3691329,0.13677421,0.0077523673,0.29458168,-0.5568016,0.08695958,0.004999116,-0.26999852,0.20787445,0.38159007,0.33675313,-0.43748358,0.44833857,0.08989055,0.045229588,0.11001911,-0.17645113,0.49261624,0.3017277,0.24269965,-0.008355467,-0.3241896,0.20335911,0.7808,0.20184493,0.15993454,0.08127137,-0.35636657,0.069747984,0.10296447,0.21242078,-0.055933475,-0.34912392,-0.0817734,0.093882255,0.16258423,0.48891935,0.03131054,0.32802844,-0.16369252,-0.1578703,0.22089966,-0.010451292,-0.113969244,-1.1414483,0.3046061,0.21949159,0.76691717,0.31157318,0.004827278,-0.054724436,0.51887745,-0.43822113,0.15515396,0.43971446,-0.14967217,-0.38510084,0.48090544,-0.535299,0.6451991,0.00918095,-0.029039199,0.24182574,-0.014206899,0.41733816,1.1800163,-0.13312641,0.056985058,0.0898981,-0.25551745,0.083432205,-0.1557879,0.030423565,-0.7015633,-0.2928037,0.79506075,0.43866137,0.4675409,-0.22418666,-0.026661327,-0.008752798,-0.14808805,-0.010811006,-0.106234364,0.06311847,-0.18652022,-0.59835863,-0.24444234,0.57772094,0.057604153,0.07227319,0.078705944,-0.50847036,0.23471002,-0.18130064,-0.066134766,-0.032847878,-0.7387138,-0.2023426,-0.35873222,-0.6002082,0.25921538,-0.2316382,0.21229376,0.06991879,0.03825396,-0.3304676,0.47358766,0.42895004,0.9920258,0.121357,-0.04336012,-0.20369814,0.22015418,0.38128212,-0.26991978,-0.03294929,-0.34907404,0.24786465,-0.675982,0.49066445,-0.11589056,-0.4913982,-0.18720403,0.07483507,0.20543024,0.38097766,-0.10114233,-0.07218859,-0.16392824,0.112365305,-0.32518297,-0.027244803,-0.34071913,0.217414,0.028891388,-0.27563033,-0.12298673,-0.09837309,-0.005145026,0.3433039,0.11407245,0.18013002,0.28749976,0.041299257,-0.37891483,-0.0057889563,0.0056850677,0.5180022,-0.006097451,-0.2493417,-0.44293642,-0.066161245,-0.22404933,0.6265865,-0.10925843,0.23433574,-0.005215881,-0.3994483,0.68597937,-0.07670129,1.3113554,0.12754205,-0.4024245,0.18209513,0.4817349,0.003715607,0.17348683,-0.41540107,0.96421087,0.46250024,-0.13460787,-0.38073447,-0.45953614,-0.19011565,0.4228417,-0.36206102,-0.17475574,-0.14899336,-0.78898656,-0.2548634,0.17313945,-0.08123296,0.29109162,-0.14496042,0.31006882,0.23143078,0.1620841,0.4461096,-0.5351804,-0.01662551,0.29682955,0.43554443,-0.028438535,0.31768602,-0.43339,0.38677076,-0.8444195,0.24909948,-0.430336,0.17917824,-0.038091753,-0.20283411,0.23783623,0.3609076,0.31705502,-0.13233684,-0.4354003,-0.38723364,0.6797051,0.12022046,0.23569825,0.6946264,-0.2980421,-0.1667316,0.07179396,0.37308455,1.2064302,-0.03986017,0.010042846,0.32656997,-0.21625529,-0.55968183,0.25143677,-0.39944008,0.13348135,0.024180114,-0.15488723,-0.35480142,0.38352552,0.2099812,0.13148391,0.069508016,-0.3153722,-0.046775453,0.40559003,-0.24013494,-0.21685998,-0.28256944,0.10447843,0.8881775,-0.4347441,-0.1680244,0.1513697,0.3828711,-0.22834687,-0.51221436,0.044326037,-0.4401989,0.40452698,0.05844658,-0.30752298,-0.029018758,-0.0051113493,-0.39997822,0.1349528,0.4709237,-0.35987705,0.0013839559,-0.28355387,-0.21105136,1.1193668,0.07634701,0.25597695,-0.6351448,-0.5939182,-0.8952524,-0.36729327,-0.010548336,0.035912078,-0.13245943,-0.5207299,-0.041167676,-0.002976392,-0.31868523,0.18420598,-0.61632985,0.3928037,0.063022636,0.31850132,-0.05002858,-1.1097671,-0.11734159,0.13190739,-0.26040402,-0.44980568,0.5663916,-0.18733434,0.7682672,0.10635574,0.003292799,0.13885918,-0.36602405,0.3725219,-0.5582401,-0.0038173646,-0.6882791,0.051228292 -557,0.3283444,-0.1997674,-0.535592,0.013441605,-0.23627353,0.028263258,-0.27932993,0.23811512,0.4710455,-0.20147939,-0.25040725,0.040686686,0.09394077,0.6258913,-0.08085646,-0.65580624,-0.060902085,0.18576843,-0.75478905,0.5085261,-0.4277452,0.3046485,0.03201775,0.46872064,0.106885396,0.2286972,0.23536752,-0.023439536,0.054349948,-0.23867424,-0.1770157,0.34116805,-0.69083136,0.046171468,-0.3626,-0.17535739,0.013630261,-0.52137786,-0.340587,-0.9572725,0.3859578,-1.0398076,0.70010155,0.051297132,-0.09740728,-0.1012305,0.45263514,0.3191177,-0.35319147,0.008110632,0.27869436,-0.49913692,-0.24209988,-0.47929123,-0.29230884,-0.31520024,-0.5660096,-0.07207564,-0.6904664,-0.142237,-0.22617942,0.2975084,-0.39485013,0.080024056,-0.16326497,0.27190965,-0.3011246,0.17888586,0.33992466,-0.31707782,0.17233388,-0.63804656,-0.03607792,-0.09195235,0.6557396,0.0029180099,-0.33947682,0.5106793,0.43520752,0.44315138,0.18708754,-0.33262628,-0.22052854,-0.11275218,0.15972288,0.5231433,-0.35521755,-0.42571864,-0.1333067,0.12637545,0.53311306,0.5383837,0.07011578,-0.08226351,-0.005223438,-0.28954092,0.05686335,0.7193775,0.6420362,-0.13161252,-0.32237524,0.11288353,0.5923757,0.47489938,-0.1784383,0.0774788,0.008363289,-0.73156506,-0.18947963,0.0023704867,-0.087994814,0.4789064,-0.16436356,0.13699551,0.86883354,-0.018905744,-0.26112846,0.069287695,0.0023549546,0.043714385,-0.22449268,-0.21288395,0.39092502,-0.58960396,0.17635448,-0.4315482,0.44885966,0.15494432,-0.62925094,0.32419065,-0.5714237,0.22291376,0.14775813,0.8059856,0.7662215,0.5249297,0.5979844,0.93170375,-0.38219175,0.10534855,0.022284845,-0.407863,-0.01238133,-0.44536626,0.19253035,-0.42279908,0.2458119,-0.3495182,0.12086662,0.31552503,0.49411437,-0.5139417,-0.26180896,0.1604683,0.96784395,-0.25213727,0.03412422,0.7900386,0.90961283,1.1219511,-0.022579297,1.3122196,0.06933617,-0.25944883,-0.16927075,0.029363662,-0.7379158,0.21643536,0.26522824,-0.4941969,0.32566342,0.023231292,-0.019422397,0.25608462,-0.7303398,-0.29445496,0.11900743,0.15511754,0.1675945,-0.15852378,-0.47979447,-0.078002125,-0.1612376,-0.09764996,0.32934874,0.2327956,-0.32030946,0.6366376,-0.08115517,1.1968007,-0.12107285,0.060631543,0.22675978,0.4528172,0.2698327,0.03194626,-0.07572321,0.42832556,0.51595026,0.0432138,-0.601947,0.013717584,-0.49367237,-0.17033328,-0.146048,-0.3284342,-0.34959212,0.1631044,-0.024572799,-0.27822158,-0.21592952,-0.18923914,0.38197768,-2.5289614,-0.23053582,-0.051476877,0.39940074,-0.28581318,-0.09042302,-0.31059447,-0.63325477,0.3994788,0.04857148,0.510658,-0.57997006,0.25397635,0.5036476,-0.81419396,-0.33176658,-0.67992705,-0.15958251,0.09440502,0.56296843,0.19547935,-0.2830936,-0.24227126,0.16838859,0.83406544,0.2798307,0.01905612,0.7234972,0.67408794,-0.06385136,0.6986027,-0.21643694,0.6955711,-0.480348,-0.2853789,0.42514816,-0.3906615,0.45091832,-0.3849032,-0.03496657,0.64625615,-0.44304633,-1.0608386,-0.48469147,-0.121714264,1.1875656,-0.29627332,-0.57906085,0.07199139,-0.36900255,-0.013929526,0.017999893,0.8974034,-0.140492,0.2031991,-0.57347304,-0.190189,-0.17025669,0.27076244,-0.0064232647,-0.07288759,-0.32011023,0.6781176,0.037600625,0.37210914,0.2059675,0.13878417,-0.3867568,-0.4651865,0.11292177,0.8470547,0.3679534,0.07860843,-0.15229245,-0.1851153,-0.1682768,-0.4284943,-0.25607184,1.024552,0.6257892,-0.25007924,0.08595357,0.363659,0.15002991,0.110775165,-0.30030033,-0.3174725,-0.25391537,0.007897873,0.60062736,0.9876812,-0.19513881,0.35941327,-0.04481469,0.39815772,-0.03521159,-0.37988153,0.6118849,0.73329085,-0.25129023,-0.040647298,0.64565593,0.291384,-0.4638114,0.58155864,-0.5587369,-0.45473847,0.77762026,-0.19555305,-0.6228456,0.26487955,-0.27128705,0.015728846,-0.5603942,0.15728179,-0.32990253,-0.3620532,-0.51786757,-0.16598962,-2.7226927,0.20297796,-0.23990981,0.11472082,-0.6893447,-0.13424966,0.13342308,-0.38643053,-0.77224255,0.25981733,0.27224562,0.6001902,-0.2726157,0.18662679,-0.33725646,-0.29738232,0.047502134,0.2493695,0.27701196,0.31197497,-0.1733432,-0.3600948,-0.15169102,0.15283743,-0.3713993,0.062534906,-0.65231884,-0.35833266,-0.0025964875,-0.5506078,0.06390505,0.6684594,-0.61811084,0.00062170625,-0.32317206,0.19853538,-0.036274094,-0.01664459,-0.042693913,0.38930252,0.20388345,-0.27891305,0.22168086,-0.05790521,0.66103137,-0.05524872,0.4748372,0.06438818,-0.114734136,0.17305005,0.29352877,0.8512284,-0.37091437,1.2723385,0.38114524,-0.10873578,0.20026356,-0.23927684,-0.6196615,-0.56884915,-0.21341066,0.32998756,-0.5312908,-0.36335906,-0.027523851,-0.4142927,-0.99451303,0.70008403,0.025178978,0.34022543,0.0028660123,0.47019652,0.51482946,-0.32989982,0.029262641,-0.033242084,-0.1798452,-0.5356259,-0.2299376,-0.4853634,-0.6017472,-0.1298367,0.82449037,-0.33281365,0.19243197,0.24343066,-0.21461292,-0.013978581,0.23258133,0.09514312,0.11090746,0.6166282,0.2077498,-0.7575166,0.4404459,-0.205597,-0.23803164,-0.7706874,0.25655958,0.5431521,-0.7943215,0.7479436,0.5000279,-0.21625279,-0.12064504,-0.7786021,-0.20417662,-0.02232886,-0.084289394,0.40852165,0.2693182,-0.65850896,0.50446224,0.30522135,-0.685019,-0.7759622,0.26470435,-0.18147148,-0.44894782,0.12692353,0.47443953,0.15752335,-0.030535927,-0.05054285,0.19345272,-0.25008035,0.39320946,-0.046281476,-0.18496968,0.11827737,-0.20103914,-0.43051967,-0.8906636,0.18632226,-0.57990414,-0.32377172,0.4686624,-0.09262306,-0.17628674,0.07730743,0.22051442,0.34603497,-0.22248395,0.2268912,-0.26317698,-0.48245168,0.28338012,0.5244263,0.49710616,-0.46745816,0.6835284,0.17479666,-0.3647621,0.33477113,0.05793472,0.4268924,-0.26139045,0.43513942,-0.053083494,-0.09557516,0.25890544,0.846945,0.022752075,0.289041,0.03561163,0.03417858,0.46125463,0.06539088,0.23987205,-0.005353853,-0.69164306,0.013513644,-0.21226293,0.08945828,0.61512405,0.3797921,0.29356575,0.1205383,-0.26713625,-0.17506148,0.2569894,0.04454769,-1.395414,0.3917091,0.15963186,0.9382117,0.12401354,0.2786182,-0.028461596,0.8133634,-0.075401865,-0.055177424,0.6335699,-0.04800855,-0.3471006,0.67741364,-0.52849203,0.39409545,-0.113779016,0.086351246,0.19701123,0.21962433,0.30459228,0.9244835,-0.28775847,0.010720696,0.0014878213,-0.12974674,-0.12681024,-0.54014,-0.05791388,-0.2718447,-0.5601892,0.62828404,0.433769,0.4943982,-0.26550192,0.06548046,0.044931103,-0.17587315,0.18478799,-0.14991212,-0.06543784,-0.1188299,-0.603429,0.2958283,0.4638143,0.17597312,0.11847859,-0.30552864,0.06889223,0.28680474,-0.33315086,0.0866221,-0.2554085,-0.726978,0.05328167,-0.4620335,-0.7209936,0.41831946,-0.12377664,0.0330141,0.35333097,-0.01012827,-0.09675338,0.4210445,-0.037420865,0.9703854,-0.02172038,-0.42938784,-0.3350273,0.25322986,0.13545716,-0.38753676,0.2747402,-0.2738134,0.23129785,-0.42609894,0.65636164,-0.32198313,-0.41901827,0.051081788,-0.33486673,-0.09408861,0.5905123,-0.2113987,-0.07596437,0.10436552,-0.36245093,-0.43212524,-0.26698518,-0.33272633,0.17838265,0.33828273,-0.038401004,-0.31095576,-0.28314134,-0.43536758,0.37890497,-0.10235635,0.47615758,0.3126122,0.18669687,0.0072814524,0.19948621,0.23542435,0.8420186,0.16137713,-0.120960794,-0.42895046,-0.59558433,-0.49929282,0.37045315,-0.09256035,0.27375478,0.09783309,-0.10447058,0.8909867,0.08382663,0.9788889,0.0910666,-0.3633581,0.032015968,0.642582,-0.16395591,-0.14389168,-0.4242928,1.0221862,0.51501083,-0.11925471,0.10187168,-0.47890857,0.31965446,0.3084102,-0.43405965,-0.052059557,0.02571179,-0.50775576,-0.3279559,0.2860575,0.2312205,0.2812311,-0.2127905,0.06527739,0.06804282,0.09958079,0.27236652,-0.6474877,-0.3085991,0.31975642,0.19375002,-0.21100514,0.013785536,-0.42366147,0.44791898,-0.48905113,0.008495924,-0.7196076,0.11358089,-0.25248846,-0.2978523,0.26894698,-0.12595439,0.32805148,-0.6099462,-0.29246613,-0.109513305,0.17581661,0.27055895,0.16337727,0.5042958,-0.27531305,-0.14613391,0.24853878,0.66052204,1.134259,-0.5809099,0.13004525,0.29417622,-0.45230207,-0.57955617,0.4260185,-0.4811766,-0.122084856,-0.08133865,-0.5045312,-0.42010316,0.14213058,0.004440576,0.29270902,-0.006560882,-0.73172027,-0.1429876,0.25498495,-0.23430963,-0.1798427,-0.30588147,0.27380052,0.73963934,-0.012824375,-0.48116994,0.088651694,0.26084125,-0.29770032,-0.6749921,0.053306405,-0.24200183,0.27917174,0.09333411,-0.21002704,-0.20372574,0.023689678,-0.7161016,0.21568565,0.14770865,-0.4151651,0.011953925,-0.1719452,0.066016674,0.85396075,-0.5510543,0.03216082,-0.49770474,-0.5037508,-0.89770174,-0.29751846,0.14405325,0.17877276,-0.019982198,-0.728435,-0.10621313,-0.21345659,-0.21164994,0.101235695,-0.37564826,0.3813195,0.07915166,0.6172696,-0.612085,-0.9656897,0.13153885,0.13643692,-0.30477878,-0.621023,0.5507378,0.12567489,0.8248391,-0.044571567,-0.12863077,0.18801223,-0.46753287,0.010348052,-0.2515268,-0.11774939,-0.8566281,-0.0684521 -558,0.17344344,-0.19760697,-0.42138943,-0.10569317,-0.01996396,0.13008931,-0.15764727,0.25127956,-0.012694695,-0.51226735,-0.1475238,-0.17357612,-0.041751273,0.1353132,-0.27502292,-0.4490881,-0.07152088,0.11967427,-0.3830016,0.39301667,-0.59589356,0.32301468,0.01403667,0.19102022,-0.05907219,0.16523767,0.2892205,-0.089065194,-0.11374863,-0.24457847,0.08972842,0.05829237,-0.57047725,0.261893,-0.19687687,-0.34649,0.08404939,-0.36269918,-0.50857276,-0.6303238,0.45248988,-0.94699293,0.44703218,-0.0037386587,-0.16302136,0.46107262,0.11044567,0.20461938,-0.15623678,0.032300863,0.1888179,0.011607095,-0.09158266,-0.1305208,-0.2572175,-0.31183457,-0.5668928,0.12814412,-0.41767243,-0.14751029,-0.25924125,0.17060931,-0.25351536,0.14283058,-0.24142446,0.4698824,-0.37347132,-0.061281618,0.025642773,-0.03718082,0.21332963,-0.46905765,-0.12718321,-0.07261862,-0.05327841,-0.28384277,0.007159936,0.18188766,0.08985595,0.54232335,-0.18050179,-0.10308472,-0.19725633,-0.08104137,0.18461363,0.4273621,-0.13557917,-0.3423608,-0.17250855,-0.16081153,0.17278144,0.1039684,-0.026842926,-0.1888672,0.03690062,0.11084221,-0.33678177,0.24489541,0.6277527,-0.1878225,-0.22004874,0.46878266,0.5775713,-0.122640096,-0.044665348,0.02686641,-0.07316114,-0.38815266,-0.1289719,0.046244442,-0.2639849,0.4374273,-0.15057324,0.22108173,0.45719382,-0.22960155,0.16229819,0.047652155,-0.019227022,-0.10938126,-0.23293486,-0.29006144,0.19160615,-0.4497655,0.046655778,-0.17709391,0.81612444,0.019145515,-0.7603372,0.40596178,-0.35413367,0.1656308,-0.09429604,0.6587158,0.4285856,0.347164,0.16134603,0.6221165,-0.6174746,-0.020555288,-0.11618971,-0.31661466,-0.008675703,-0.030297475,-0.14250877,-0.23757681,-0.031684812,0.14732026,-0.11513074,-0.241569,0.33956173,-0.35377282,-0.0122639835,0.12305006,0.7775454,-0.32754725,-0.01129508,0.70586663,1.1926193,0.84487754,0.13315995,1.2186116,0.35765198,-0.2026858,0.13744998,-0.23313716,-0.93799055,0.23638146,0.42316967,0.04523129,0.2323358,0.085560374,-0.097799756,0.25014395,-0.56707865,0.017150497,-0.33903435,0.3875192,0.027902897,0.09076958,-0.2771913,-0.19772394,0.24071409,-0.022993548,0.22790241,0.23524643,-0.32483622,0.12315594,0.20020796,1.1872635,-0.15271322,0.17170504,0.22907652,0.3302655,0.030067584,-0.13757123,-0.017402705,0.23700438,0.4418656,0.05444745,-0.69841653,0.0483618,-0.23406842,-0.49851936,-0.27329072,-0.1807148,0.020062849,-0.1276086,-0.3262176,-0.07839525,-0.20023534,-0.52765316,0.27724513,-2.6456354,-0.06599059,-0.2867887,0.2863617,-0.35096794,-0.34828216,-0.023837613,-0.47424597,0.43426886,0.44503504,0.3482466,-0.59365124,0.34586263,0.38250205,-0.24444829,0.005273938,-0.63503224,0.07793494,-0.16124184,0.35561356,0.13073274,-0.0626562,-0.15169919,-0.029314917,0.33161995,-0.033026736,0.19105193,0.28582993,0.44369152,0.14449188,0.41415793,0.09731735,0.43395567,-0.38392884,-0.047008246,0.4109324,-0.511769,0.15415919,-0.0778692,0.20692734,0.2933054,-0.6620345,-0.57659495,-0.58884686,-0.5762343,1.5265578,-0.25543973,-0.415552,0.2647079,0.06359545,-0.27218065,-0.1267325,0.36264807,-0.40870315,-0.060435183,-0.8685377,0.06805324,-0.17545016,0.36552912,-0.0891758,0.22155316,-0.43919995,0.6501776,-0.24263693,0.5614498,0.3115779,0.16237606,-0.44718108,-0.45105866,0.030653046,1.0814348,0.4317836,0.0923404,-0.14977911,-0.11894512,-0.24996507,-0.13938464,0.13510753,0.36815187,0.7110095,0.031245653,0.041362096,0.31566438,-0.088467896,-0.0025897026,-0.043014806,-0.2855424,-0.17701368,-0.013276594,0.64959896,0.33289573,-0.2091891,0.24093376,-0.22532865,0.28541884,-0.31740203,-0.30376515,0.32186127,0.73699373,-0.1507682,-0.32137898,0.6550766,0.6135589,-0.33604908,0.45507106,-0.60419166,-0.42779037,0.2626098,-0.14813508,-0.43927255,0.18613927,-0.29029512,0.13302854,-0.8242143,0.3736455,-0.27316588,-0.6183094,-0.6266251,-0.28324917,-3.1263385,0.13064668,-0.19486757,-0.14042738,-0.032936968,-0.15528941,0.33605003,-0.36298683,-0.60008496,0.15013336,-0.0155068915,0.46387672,0.1058117,0.15069939,-0.21104534,0.0112922955,-0.45355755,0.1695614,0.2937934,0.13887592,0.025295751,-0.38893393,-0.07085215,-0.3108295,-0.38473415,0.015452032,-0.4388897,-0.3693363,-0.17273355,-0.53279597,-0.439545,0.470056,-0.34649387,0.062007565,-0.18812929,-0.07621651,-0.1599995,0.44862324,0.1444615,0.22702314,-0.07382639,-0.22120658,-0.023934225,-0.3262786,0.4229293,0.059574265,0.18106796,0.34844568,-0.21634997,0.0069930553,0.30480364,0.5737499,0.05685387,0.79104847,0.33424595,-0.1487371,0.27786642,-0.21265338,-0.118443556,-0.5299821,-0.13583864,0.05131456,-0.3612244,-0.43322855,-0.04105797,-0.35228127,-0.73323363,0.4267106,-0.1163887,0.053517196,-0.0074722543,0.25523165,0.36051807,0.11010699,-0.01690487,-0.08349142,-0.06119987,-0.40064034,-0.50684756,-0.78347605,-0.2497374,-0.15423287,1.0627509,0.14971974,-0.10580097,-0.08979223,-0.0718187,0.054201145,-0.035567366,-0.003849866,0.1988816,0.47305605,0.003313339,-0.6274883,0.3566464,-0.14436749,-0.08074739,-0.55018896,0.044470515,0.65066403,-0.56706774,0.450466,0.4564657,0.16386326,-0.20172651,-0.49362212,-0.14547214,0.069711566,-0.20923793,0.42932752,0.26316562,-0.8982668,0.5079803,0.36852342,-0.04029165,-0.7170344,0.43902498,0.13493682,-0.021024061,0.050928533,0.41516066,-0.21912408,0.05352512,-0.15777552,0.14305045,-0.25979862,0.24044757,0.20792279,-0.093554474,0.52573735,-0.41096252,-0.11592398,-0.5260971,-0.062103987,-0.53702545,-0.1412687,0.037973676,-0.16942272,-0.08313221,0.23962818,-0.25080687,0.4488638,-0.081591144,0.078955874,-0.02792646,-0.17912062,0.32870603,0.41745812,0.3217214,-0.40720364,0.6411397,0.027097702,-0.15185194,-0.20762946,0.03710246,0.40318364,0.09105412,0.2546111,0.12917735,-0.043043915,0.45286158,0.7366262,0.3459084,0.6318869,0.20769115,-0.16158125,0.31409654,0.07261579,0.12607418,-0.04314765,-0.42751664,-0.13403992,-0.047362287,0.16828121,0.42253426,0.08456107,0.53604054,-0.32092628,-0.15931721,0.013325567,0.23442851,-0.19141018,-0.954593,0.34710026,-0.05004233,0.6491879,0.5492172,-0.13983954,0.15110159,0.50457865,-0.21532758,0.0768312,0.30425027,0.07902106,-0.4500671,0.49757877,-0.5073355,0.38303375,-0.18899548,0.09960519,-0.00286233,0.009070741,0.40332842,0.78788054,0.003985222,0.06328765,-0.100461416,-0.22000991,0.34412128,-0.32336825,0.25590706,-0.32228255,-0.216411,0.6192244,0.28008965,0.25710836,-0.115435265,-0.07757262,0.016981538,-0.11877769,0.12579145,-0.014634375,0.04049764,-0.105918385,-0.6675681,-0.30767846,0.46858478,0.32094198,0.12937282,0.15663484,-0.34634185,0.23905976,-0.13896142,-0.01389019,0.13141727,-0.53366995,-0.05636478,-0.051220458,-0.3106594,0.15938805,-0.38522774,0.21297611,0.15671103,-0.00833089,-0.5790936,-0.15863612,0.25015625,0.5797006,-0.09365536,-0.1764201,-0.3587227,0.07618822,0.21416013,-0.26734048,0.0144816805,-0.3743243,-0.016508972,-0.80647373,0.52199966,-0.16585183,-0.26898134,0.33454782,-0.23132019,-0.042147834,0.63020813,-0.15945575,-0.11278541,0.107484184,-0.076342806,-0.20224585,-0.20290153,-0.11680982,0.21073504,0.09890324,0.08582814,-0.0372067,-0.007892793,-0.19776423,0.43332997,0.06423935,0.24593136,0.33515522,0.26181576,-0.4042186,-0.021653567,-0.068205245,0.53671837,0.026728021,-0.052422978,-0.11384572,-0.41898867,-0.027890358,0.29200786,-0.100422345,0.2614701,0.10453678,-0.37130833,0.6454201,0.078477606,0.94456005,0.06593143,-0.17902014,-0.17822194,0.5829643,0.069392316,0.0017305559,-0.2656571,0.8785335,0.5322924,-0.116757356,-0.10706054,-0.33003896,0.023267064,0.023270786,-0.1350439,-0.30894044,-0.006188415,-0.62504405,-0.23391686,0.12741737,0.46258798,-0.121998854,0.022038039,0.14502756,0.16595738,-0.0312867,0.5345411,-0.3992203,0.0112066055,0.33428025,0.14600058,-0.05173623,0.1988268,-0.40695837,0.25022712,-0.62032896,0.10580759,-0.15663883,0.0073609757,0.026038935,-0.28453413,0.12738205,0.010757302,0.36921936,-0.3359587,-0.3316252,-0.16801932,0.5381342,0.16140446,0.18311903,0.6646771,-0.14340839,0.18306836,0.093929715,0.59900486,0.9683924,-0.086461894,0.11004906,0.09017193,-0.2637343,-0.7305255,0.3732008,-0.26702622,0.13449718,-0.008604935,-0.22870918,-0.30114514,0.3823306,0.16898875,-0.2373575,0.1674775,-0.5258343,-0.2256808,0.36153576,-0.1449363,-0.15359998,-0.32767397,-0.04313693,0.5943966,-0.25699145,-0.08580159,-0.056012936,0.30984762,-0.3411181,-0.5234427,-0.106412046,-0.46001083,0.3142317,0.017033597,-0.19503327,-0.013912345,0.11573162,-0.34358892,0.25687486,0.09005928,-0.27884534,-0.08938934,-0.14457902,-0.004843014,0.5659707,-0.080845885,0.040088587,-0.6568398,-0.4595922,-0.91803247,-0.28898144,0.5777572,0.083692364,0.08885624,-0.42023107,-0.06021757,-0.0665539,-0.014677508,0.086770594,-0.4083987,0.2721676,0.1280565,0.533788,-0.025793413,-0.57099295,-0.042913157,0.0373323,-0.17415415,-0.3646321,0.65114033,0.086291485,0.6490417,0.01729234,0.16470489,0.24485664,-0.65865767,0.14374658,-0.1780977,-0.24141833,-0.5627687,0.11953248 -559,0.59687823,-0.1423956,-0.5763544,0.01478908,-0.28555477,0.14058676,-0.18093139,0.5031454,0.38927662,-0.4573216,-0.30764884,-0.34465373,0.15015036,0.1212264,-0.18711735,-0.36248106,0.01984831,0.40293473,-0.5237313,0.49378604,-0.22961365,0.23872823,0.22021738,0.50849605,0.16563721,0.16242827,-0.083194114,-0.29472005,-0.334735,-0.52028775,0.14517832,0.19096018,-0.7816723,0.18310584,-0.4857664,-0.36421764,-0.00808825,-0.6386822,-0.5701896,-0.8036611,0.29413462,-1.0410256,0.71436524,0.22685748,-0.25561514,0.2821735,0.24562879,0.27408788,-0.031674694,-0.06565163,0.31654054,-0.30166376,-0.19003981,-0.31463355,-0.28332588,-0.41229114,-0.6622818,-0.009757403,-0.29500648,-0.021331359,-0.4329085,0.26486647,-0.29410133,0.07644855,-0.2908046,0.54410547,-0.37952426,0.42532614,0.08978078,-0.18437591,0.27082703,-0.54447716,-0.311296,-0.25543404,0.25988844,-0.06794423,-0.257218,0.2499632,0.15740927,0.377514,-0.118050985,-0.20959999,-0.3068403,-0.0018924583,0.09283912,0.5836516,-0.46248153,-0.40110156,0.04083648,-0.15055834,0.1083642,0.13845088,0.0953258,-0.23941694,0.037556678,-0.064419575,-0.287501,0.4647788,0.63122934,-0.27725837,-0.12399936,0.18355256,0.28313267,0.16848134,-0.14063682,-0.17741208,0.12144881,-0.57103103,-0.19772048,0.17213167,-0.34661025,0.66015506,-0.13173626,0.19086127,0.6129351,-0.31609195,-0.024056586,0.4279434,0.4050561,0.27954122,-0.37390473,-0.3525391,0.47438872,-0.584999,0.083354965,-0.45095712,0.9336977,0.047165968,-0.49952975,0.33086023,-0.7565325,0.09832616,-0.01542236,0.47897825,0.431231,0.6042824,0.23352566,0.53342795,-0.17353886,0.01669641,-0.0812229,-0.22027983,0.040543076,-0.27965605,0.31208456,-0.25297928,-0.16635956,-0.016459053,-0.18710035,0.12189369,0.4319765,-0.37527427,-0.2858393,0.25675297,1.0189077,-0.24735741,-0.2678424,0.8680195,1.1703657,0.873159,0.0889036,1.4829051,0.19057487,-0.27145633,0.017853223,0.022247167,-0.7646839,0.2875294,0.084030636,-0.73809165,0.053487007,0.2740278,-0.24645938,0.16086638,-0.5646426,-0.16983268,-0.2431429,0.20418645,-0.015262062,0.029670082,-0.5178194,-0.31429684,-0.30211946,-0.12979211,0.25282758,0.19062595,-0.2810454,0.25397962,0.12318111,1.0853778,-0.17703037,0.1063675,0.047661997,0.49961475,0.06296389,0.06236939,-0.015802365,0.2622639,0.30694816,0.38303137,-0.44153145,0.00019363924,-0.23938619,-0.30798313,-0.07385311,-0.1042254,-0.09536707,0.07969912,-0.48573226,-0.39158437,-0.17052966,-0.104033425,0.37264153,-2.4103234,-0.12989284,0.05995244,0.45642567,-0.24315782,-0.4049948,-0.21145396,-0.6370914,0.3507883,0.12966135,0.4857189,-0.6421928,0.28293726,0.43890998,-0.6345439,-0.17960669,-0.7334812,-0.20816995,-0.065311626,0.052206837,-5.1246447e-05,0.075117104,0.0451937,-0.20138092,0.46957967,0.048625264,0.13597962,0.40164745,0.43864545,-0.15460517,0.44977713,0.036093876,0.53322697,-0.5217187,-0.3200665,0.244918,-0.44717267,0.3590722,-0.16083446,0.07842321,0.59557366,-0.53781265,-0.8344234,-0.7927298,-0.06923411,1.1004989,-0.14239886,-0.46595934,0.12983602,-0.37922305,-0.37828684,0.013963011,0.67797786,0.016357226,0.2575072,-0.77596074,-0.20674853,-0.2815888,0.33899945,0.0546532,0.02623272,-0.44332626,0.7208281,-0.034434784,0.29355657,0.3909956,0.20716234,-0.31582978,-0.4566704,0.039698035,1.0948033,0.30572847,0.23219018,-0.320165,-0.2616344,-0.44138068,-0.07651432,-0.05924815,0.81341034,0.6297145,-0.16602302,-0.012674589,0.3566461,-0.009837478,0.25149986,0.014340153,-0.57814366,-0.29938725,-0.10999758,0.5153695,0.8924831,-0.08680063,0.30614007,-0.14316322,0.59548515,-0.13001601,-0.391108,0.3169309,1.1618327,-0.19920197,-0.12064446,0.9829846,0.4932701,-0.42704478,0.5389076,-0.5626393,-0.6060315,0.23297729,-0.10277202,-0.55143636,0.26591825,-0.27990386,0.08747525,-0.7894541,0.5677113,-0.27424708,-0.45293418,-0.4136535,-0.12794195,-2.7000604,0.36094174,-0.35776633,0.007992983,-0.20661329,-0.16090587,0.15324889,-0.4283539,-0.402919,0.26032817,0.18285526,0.65451527,-0.16775817,0.21714784,-0.17931424,-0.41810694,-0.18236518,0.29332954,0.41010398,0.2832717,-0.32424802,-0.4382211,0.04540348,0.065267034,-0.034159627,0.09905167,-0.9252228,-0.5152008,-0.14335151,-0.6658512,-0.43603772,0.6814387,-0.3976,0.036296308,-0.22808193,0.03051619,-0.20340417,0.2838115,0.0023454537,0.3375518,-0.04581274,-0.15184605,0.024525069,-0.23752676,0.57065964,0.10070632,0.4399184,0.27645954,-0.036072526,-0.018457808,0.34417132,0.4920165,-0.2126461,1.058387,0.36238506,-0.16902663,0.22853684,-0.15437669,-0.48023263,-0.6186505,-0.02932002,-0.114867754,-0.49292758,-0.18119453,0.06642695,-0.39723024,-0.80159736,0.71400493,-0.00888708,-0.010259702,0.13046242,0.33713037,0.40425873,-0.25767648,-0.20261914,-0.058590177,0.0036208087,-0.64400005,-0.21402402,-0.630047,-0.42302313,-0.10345899,0.85981935,-0.10189665,0.23309673,0.31398165,-0.20876512,0.04850533,0.21421756,-0.05462738,-0.06765184,0.95730036,-0.041452345,-0.67872024,0.55368036,-0.2697815,-0.06723599,-0.60678804,0.6145912,0.5192875,-0.8005955,0.81129766,0.78489107,0.07268144,-0.3346027,-0.43685502,-0.48334876,-0.12537421,-0.07552448,0.27800784,0.24668965,-0.94387835,0.19532771,0.26384652,-0.4394577,-0.7490788,0.6022534,-0.13816518,-0.46120557,-0.058317743,0.47404596,-0.06779668,0.09410114,0.028147524,0.32158113,-0.3603839,0.39185488,-0.07818102,-0.21802236,0.16656037,-0.21804671,-0.031584717,-0.8104737,0.2802261,-0.42572525,-0.4240795,0.4078867,0.09195732,-0.11110301,0.48293382,0.28671482,0.32796037,-0.35131022,0.10440647,-0.23790435,-0.32068187,0.5364058,0.35539582,0.6618009,-0.6143074,0.6932139,0.007223304,-0.39787188,0.14415275,0.25051624,0.48252365,-0.11439759,0.49635667,0.14390329,-0.121740416,0.09304447,0.8456135,0.219726,0.5598871,0.058501266,0.10599582,0.19752264,0.0806711,0.11651967,0.09847806,-0.81734484,-0.12251561,-0.446451,0.09280643,0.42506,-0.003176578,0.38711298,-0.17300078,-0.34469417,-0.06946675,0.12391796,0.22442746,-1.2838731,0.2172738,0.083724625,0.7868141,0.30505112,-0.047944188,-0.024095839,0.85813135,-0.0054716645,0.05402137,0.22775203,0.057599388,-0.31578892,0.66284335,-0.49439794,0.30422142,-0.21230197,0.100706436,0.06871665,-0.11398259,0.30642363,0.9473259,-0.22853531,0.034254495,0.11131165,-0.33587587,0.16032039,-0.4465342,0.39668074,-0.6423986,-0.27939448,0.7835543,0.50768065,0.4092225,-0.15880431,0.09648035,0.115613915,-0.17728795,0.2681738,0.047732476,0.08602223,0.17483903,-0.81233305,0.13484138,0.64882165,-0.10355339,0.13876317,0.08336855,-0.060960904,0.40423152,-0.314517,-0.0005680675,-0.17324184,-1.0123998,-0.13721825,-0.7627218,-0.5231141,0.27509722,-0.189197,0.09804566,0.09779243,0.103231356,-0.29698288,0.5308098,0.29648665,0.72270393,0.039713167,-0.25639024,-0.41743806,0.28116152,0.12723385,-0.1842369,0.029430855,-0.2548838,0.12249041,-0.5272939,0.3745985,-0.11202776,-0.14402801,-0.22448856,-0.11714708,0.030490112,0.5788698,-0.0149449,0.04742304,0.27952728,-0.06286337,-0.3638202,-0.1698377,0.0044805678,0.10366671,0.50041974,-0.0541775,-0.20985842,-0.35929298,-0.19951554,0.12156933,-0.017250983,0.5863917,0.4794976,0.32198307,-0.01743675,0.011289943,0.11187098,0.6517521,-0.22139154,-0.22475916,-0.3088216,-0.39043283,-0.29459846,0.45027235,0.05946946,0.34658182,0.2934871,-0.043728296,1.0367609,-0.059759423,0.9628618,0.06801062,-0.25153065,-0.0060995873,0.42765445,-0.28405073,-0.22320677,-0.44365403,1.1517434,0.5088775,-0.11068826,-0.10568767,-0.4355903,0.08912515,0.090871185,-0.14474668,-0.20517808,0.03072068,-0.5283347,-0.16091634,0.1645857,0.53502065,0.060330693,-0.18778385,0.29049218,0.3804042,0.048677918,0.31303704,-0.7828494,-0.20724021,0.44684884,0.42647526,-0.05046827,0.38061142,-0.3323269,0.39886856,-0.4779091,0.10482225,-0.3612441,0.0673927,-0.18800591,-0.39788094,0.14125322,0.018883927,0.5233869,-0.6183447,-0.057043508,-0.22198291,0.43743563,0.2522651,0.04960027,0.58553237,-0.21611987,-0.3203897,-0.007580073,0.6931885,0.9601349,-0.43346596,0.008983883,0.47321406,-0.3494477,-0.57602143,0.35572585,-0.3563071,0.11067295,-0.07068923,-0.17322992,-0.52968156,0.25032786,0.11807886,-0.077705495,0.022070317,-0.64549977,0.107564546,0.23809947,-0.20345551,-0.31324568,-0.077840194,0.3389176,0.54540473,-0.09786127,-0.24333325,-0.0010364272,0.25294635,-0.23515506,-0.37980774,-0.03817831,-0.5060671,0.10966962,0.04091444,-0.30478483,-0.26301062,0.02917505,-0.54138875,0.054397885,0.09089086,-0.35569692,0.12387867,-0.2051834,-0.020820921,0.62135774,-0.13503014,0.057159185,-0.4409343,-0.61030257,-0.90590453,-0.3380772,0.02729283,0.2086815,0.107890084,-0.48937356,-0.120736405,-0.047714677,-0.24877526,-0.03439444,-0.35786748,0.51361454,0.24907555,0.41319788,-0.30650976,-0.86025447,-0.07044292,0.08982837,-0.2131981,-0.70063096,0.2668338,-0.071566395,1.0588254,-0.018846376,0.13977498,0.47631833,-0.47768247,-0.15414782,-0.10104471,-0.13712639,-0.8356653,-0.04923031 -560,0.45958945,-0.19606574,-0.5577052,-0.05877566,-0.24110681,0.12363316,-0.3175939,0.53653437,0.10907821,-0.32848728,0.0156101845,0.066459656,-0.0032308102,0.34562454,-0.18205564,-0.5936393,0.018985678,0.17682639,-0.528781,0.80895025,-0.2771897,0.28711665,-0.12466164,0.40976366,0.090167075,0.254827,0.013152564,0.094349906,-0.114746295,-0.20972206,-0.11806537,0.43070236,-0.46498662,0.23546444,-0.24869372,-0.3075401,-0.21297082,-0.31533092,-0.24546142,-0.7219662,0.16495477,-0.61816823,0.7586414,-0.024492817,-0.341825,0.3114971,0.1942608,0.2706769,-0.18460362,-0.12435038,-0.10002234,0.036067255,-0.07719423,-0.36706492,-0.1741036,-0.6039542,-0.48041782,0.12024286,-0.48897424,-0.027353797,-0.14486672,0.18179981,-0.2507781,0.045641523,-0.059882537,0.6282299,-0.4193812,0.22481449,0.10222268,-0.06669179,0.1278224,-0.5914308,-0.23793742,-0.1272239,0.33368716,-0.075672396,-0.2011428,0.2396669,0.28681746,0.43723568,-0.11230316,-0.1907425,-0.3720679,-0.06239485,-0.07516796,0.57828486,-0.21376872,-0.70755947,-0.07835512,-0.00013400316,0.33929715,-0.006162079,0.11576936,-0.21768573,-0.1492703,-0.16739267,-0.31118578,0.4341532,0.44156024,-0.33226737,-0.19842982,0.36013195,0.45798105,0.20478414,-0.3119054,0.045265384,-0.114926144,-0.51098764,-0.044494875,-0.06680488,0.043604884,0.5437257,-0.024336267,0.22065468,0.39512312,-0.026141029,-0.17807111,0.2638131,0.13527387,0.076842695,-0.15135323,-0.45113465,0.13998564,-0.35772145,-0.059300892,-0.15942238,0.5673264,0.18101545,-0.8341564,0.362659,-0.51387304,-0.032857917,0.06320009,0.3090766,0.5989262,0.6391497,0.10017134,0.51591736,-0.1604152,0.11602541,0.010851971,-0.181817,-0.057635617,-0.17106208,-0.06686461,-0.54630417,0.20462781,0.043874893,-0.20198376,0.12273507,0.523347,-0.4573776,-0.15822071,0.21541044,0.8778921,-0.21002407,-0.20819543,0.87978786,1.062631,0.9780338,0.0013433754,0.92726153,0.15379958,-0.010077273,0.07851042,-0.23239683,-0.53057814,0.25551698,0.31027368,-0.01422046,0.49299017,-0.024225838,-0.11329705,0.508004,-0.20631447,-0.14611647,-0.16956648,0.2599679,0.2193628,-0.22807594,-0.42013988,-0.31532848,0.06976802,-0.028351005,0.13443097,0.31567708,-0.28115055,0.4007993,0.14837942,1.5535325,0.06637454,-0.021877158,0.13749853,0.59727025,0.31544885,-0.096915655,-0.042069033,0.29758245,0.3313542,0.19448109,-0.44687924,0.1360945,-0.12931539,-0.67448425,-0.15760438,-0.26957098,-0.28519633,-0.14679922,-0.5355455,-0.23105296,-0.02781954,-0.15338892,0.4200467,-2.8771424,-0.2411206,-0.14178897,0.34357175,-0.2333983,-0.43788326,-0.1950545,-0.3974508,0.3386203,0.3602347,0.39630705,-0.5800818,0.52838016,0.2038741,-0.4227099,-0.25204164,-0.5264961,-0.14200625,0.066215605,0.4882252,-0.094802395,0.022189057,0.24807006,0.27282438,0.5056428,-0.3073964,0.14813955,0.18618308,0.38595912,-0.054169003,0.19566625,-0.10614399,0.5209496,-0.33202046,-0.2515208,0.299593,-0.41714236,0.19998123,0.012354664,0.2736065,0.39237574,-0.47762814,-1.0006566,-0.6631976,0.19543648,1.0805668,-0.13782552,-0.4377604,0.18523748,-0.4598035,-0.31380215,-0.16508356,0.26344392,-0.034567177,0.06522953,-0.74623674,-0.022955071,-0.106921785,0.23915397,0.01552701,-0.05248255,-0.40354404,0.63995206,0.058628395,0.48136446,0.31482455,0.15137571,-0.36868545,-0.3643123,0.03499805,0.80107635,0.44012558,0.10955084,-0.17558643,-0.10890021,-0.34464186,0.06111722,0.13678819,0.6250569,0.38420096,0.004549648,0.066499546,0.13194658,-0.06512021,0.23056565,-0.19603613,-0.2352512,-0.16702603,0.19451226,0.58410925,0.5340755,-0.21842387,0.5476144,-0.19616267,0.3750954,-0.23737653,-0.48728544,0.47953522,1.0045561,-0.2461768,-0.40895334,0.51609474,0.6413906,-0.19869159,0.3528079,-0.60139114,-0.48203737,0.3149727,-0.13712282,-0.2255495,0.43780953,-0.24113229,0.12263738,-0.7759498,0.23360246,-0.3280436,-0.5745705,-0.52794164,-0.17486337,-3.0769136,0.14272575,0.011482364,-0.2986069,-0.16937011,-0.23434238,0.19941305,-0.5619802,-0.55074996,0.18604541,0.14265461,0.6137105,-0.0751094,0.064050056,-0.11042783,-0.44150034,-0.102006435,0.30142874,0.14659233,0.3524548,0.008438964,-0.43846866,-0.2020792,-0.05568659,-0.36800626,0.13146216,-0.69031805,-0.4055056,-0.09805245,-0.49434063,-0.109294765,0.592436,-0.3704017,0.09671524,-0.32176763,-0.009939786,-0.087002255,0.19530989,-0.010386833,0.15620655,0.017081618,-0.086020015,0.36537415,-0.29734153,0.095315315,0.044798527,0.23878089,0.2574827,-0.016071307,0.250168,0.5469818,0.6968432,-0.041365854,0.83272934,0.4521155,-0.098848276,0.5142229,-0.19802389,-0.37162945,-0.46994123,-0.21308164,0.1232722,-0.35658902,-0.26006517,-0.09755953,-0.39675942,-0.76783055,0.5108147,-0.1367925,-0.04871136,-0.07601299,0.50504583,0.48190948,-0.29341877,-0.042743396,-0.103368185,-0.15735689,-0.43122074,-0.3747157,-0.47915748,-0.33843276,-0.16400142,1.1490228,-0.1438245,0.109375335,0.11887971,-0.13534243,0.0105538685,0.10886776,0.22139329,0.21638498,0.3916865,-0.31217453,-0.7538079,0.29848567,-0.47869352,-0.34171745,-0.40491208,0.34673753,0.5132654,-0.53279257,0.51219565,0.39551678,0.18859448,-0.24402888,-0.58494735,0.008847507,0.095198125,-0.10997211,0.32754225,0.38159555,-0.76214325,0.43444118,0.20436755,-0.23419547,-0.6164407,0.5844959,-0.045080144,-0.35419628,-0.14847226,0.3705476,0.11779742,-0.016560066,-0.39933178,0.10985046,-0.3624605,0.2143376,0.21560645,-0.032375872,0.21323465,-0.2803149,-0.05890554,-0.8264164,-0.09939567,-0.43036085,-0.3662584,0.24319439,0.13553505,0.2531024,-0.039365865,-0.19245876,0.31624526,-0.4893368,0.07816424,-0.16837433,-0.30764377,0.3785467,0.42103234,0.49855912,-0.40791193,0.59612626,0.05320258,-0.11101643,0.018232886,0.06375011,0.50389045,-0.0016509652,0.43003038,0.07294654,-0.055589374,0.30368042,0.7626123,0.32235858,0.4696914,0.03199095,-0.19671048,0.15050605,-0.06126475,0.06686627,0.04046996,-0.4025249,-0.08085908,-0.16114902,0.16391598,0.5534805,0.030089557,0.2549048,-0.18088475,-0.30149874,0.017564217,0.2686836,0.20573823,-1.4088341,0.35394853,0.26525262,0.853532,0.28751287,0.17855325,-0.084476165,0.67985976,-0.20341443,0.08834286,0.34707165,0.043085624,-0.34734488,0.5230878,-0.7229337,0.49840593,-0.029065423,0.042157125,0.1128382,-0.120438114,0.41550192,0.8593216,-0.16091475,0.075081386,0.19242607,-0.44341898,-0.066845894,-0.4074874,-0.0065947217,-0.46631202,-0.33495277,0.71370953,0.5003739,0.32797593,-0.31473213,0.09098938,0.23177221,-0.20870405,0.081562504,-0.06146614,0.22422384,-0.23036174,-0.6237098,-0.032790173,0.54484534,-0.100907214,0.11681144,0.15695053,-0.26607138,0.35947335,-0.07480167,-0.1078685,-0.036953326,-0.60368574,0.1221201,-0.3907032,-0.35753575,0.5321472,-0.118205,0.17694591,0.2683539,0.073630445,-0.27894074,0.31887773,0.12096044,0.71554095,0.112051584,-0.1069614,-0.34756497,0.063015535,0.21300672,-0.2413304,-0.14270109,-0.3559559,0.23150559,-0.55923146,0.32127494,0.0061988872,-0.20479284,-0.03410878,0.050650276,0.20486934,0.46603358,-0.11160033,-0.15025039,0.0601253,-0.01974115,-0.2771879,-0.2566584,0.0030336916,0.33862174,0.3582411,-0.027466757,-0.085726574,-0.10048518,-0.07751923,0.48329931,-0.045610707,0.47172812,0.42709932,0.30373916,-0.1401796,0.021024322,0.11393426,0.5586754,-0.097791605,-0.045924846,-0.44432184,-0.4485224,-0.34260324,0.25818646,-0.07805329,0.21815774,0.012243467,-0.23432723,0.92816955,-0.11588133,1.2254771,0.04793947,-0.31998122,0.25264892,0.35689962,-0.02334731,0.023429113,-0.3331745,0.992923,0.5412272,0.044701416,-0.10962621,-0.29183018,-0.034160554,-0.008851469,-0.3025333,-0.199177,-0.0035203537,-0.5255617,-0.24602506,0.1390751,0.12239507,0.21831764,-0.1393986,0.20137429,0.22956604,0.11270256,0.09424799,-0.53712016,0.024073545,0.24582288,0.25323156,-0.14255933,0.016174944,-0.5116388,0.3165125,-0.44852582,0.051979072,-0.43655378,0.0978017,-0.08689462,-0.28322777,0.21118087,-0.018087456,0.21684061,-0.4805237,-0.26891893,-0.253342,0.44780204,0.15107483,-0.10341184,0.42251545,-0.21119471,0.033602238,0.14106274,0.51286715,0.7585771,-0.3718356,-0.083925836,0.19180273,-0.42226657,-0.64643204,0.12042059,-0.31137726,0.30238736,0.028142087,-0.07105914,-0.5592748,0.4052323,0.25467494,0.03777332,-0.13754044,-0.6177708,-0.2128243,0.33300534,-0.3943418,-0.15503149,-0.25854766,0.05527232,0.5715926,-0.1967496,-0.34105858,0.037506722,0.29325977,-0.18617767,-0.6352075,0.070996374,-0.46264973,0.29187316,0.13031644,-0.2801833,-0.29191875,-0.016541522,-0.4925579,0.15315291,0.35616115,-0.32759652,-0.004547191,-0.42189312,-0.16294406,0.9301117,-0.276521,0.20996337,-0.45862094,-0.47397438,-0.7783136,-0.2987391,0.21075013,0.27477086,-0.019663302,-0.7744001,-0.047428664,-0.16955954,-0.38766772,-0.06825711,-0.2689365,0.39595497,0.056644235,0.3795716,-0.10057692,-0.8918037,0.1980513,0.06339217,-0.19782512,-0.49892077,0.4322452,0.079017624,0.8769404,0.05309499,0.16864702,0.3443044,-0.51382583,-0.12349081,-0.1534524,-0.11472774,-0.5959007,0.046753414 -561,0.8203944,0.11829589,-0.6102905,-0.054485537,-0.5523195,0.2301805,-0.2165027,0.3746491,0.31355366,-0.6119582,-0.0065056616,-0.119514726,-0.08118839,0.21005155,-0.06850548,-0.62138194,0.17748316,0.18216535,-0.69707006,0.8896598,-0.15543732,0.49441662,-0.070610024,0.24181616,0.10210804,0.1555773,0.18352403,0.11516516,-0.1234599,-0.2383527,0.036830842,0.19142388,-0.6493351,0.3554571,-0.12639843,-0.36923584,-0.121044196,-0.2539622,-0.16524899,-0.80195534,0.321184,-0.77381384,0.7288903,0.034216825,-0.26193,0.23884296,0.34363514,0.09239683,0.067219615,-0.11486031,0.13584317,-0.15277743,-0.062709495,-0.2826294,-0.33254507,-0.5371652,-0.6298031,-0.068872,-0.40408415,-0.17977752,-0.39208022,0.15971376,-0.27352598,-0.08498577,-0.27828386,0.86941844,-0.2951088,0.28307194,0.20218144,-0.2924181,-0.03095207,-0.7415872,-0.22149928,-0.13029955,0.11386267,0.0742938,-0.14539573,0.3984492,0.32965803,0.41439694,0.11081227,-0.42475826,-0.41316146,-0.13232267,0.1374166,0.39322326,-0.25265566,-0.19844863,-0.15771756,-0.09708559,0.40826866,0.033827342,0.29061702,-0.140685,0.13141045,-0.13986793,-0.13192068,0.5745104,0.40615454,-0.41517368,-0.22990446,0.27563134,0.3670915,0.0080544995,-0.30088308,-0.029704724,-0.19575164,-0.38004056,-0.0550557,0.25904992,-0.12384943,0.2643652,-0.20410681,0.1141141,0.47827402,-0.14656211,-0.1281904,0.22968677,0.12415462,0.27210417,-0.3074972,-0.1535985,0.34616703,-0.4682855,0.17193301,-0.368561,0.6793466,0.19209953,-0.5462469,0.35858864,-0.550294,0.1084122,0.11074203,0.4181299,0.77909714,0.58470917,-0.045259953,0.763352,-0.23365124,0.05097356,-0.0076807165,-0.026494225,-0.02040121,-0.23789285,0.31161538,-0.4403123,0.31523982,-0.031704873,-0.055890232,0.04965961,0.5080668,-0.5638483,-0.36234662,0.23449433,0.976498,-0.23463726,-0.3326351,0.7504112,1.0151182,1.0709629,-0.15558998,0.89942014,0.114400394,-0.18222438,-0.07618021,-0.19708334,-0.45035067,0.304492,0.19936688,0.11134328,0.36171967,-0.017794965,-0.20148294,0.26174092,-0.25659424,-0.2729995,-0.09432344,0.3864843,0.21756625,-0.14162461,-0.37620398,-0.19187763,0.101342306,-0.070835434,0.35214847,0.2889933,-0.30914024,0.4055014,-0.05967229,1.0137693,-0.13571943,0.12551482,0.1361282,0.41833046,0.33533022,-0.03062593,0.17732514,0.26936564,0.08057332,0.18740593,-0.4776337,0.3233001,-0.45538524,-0.44139412,-0.03856789,-0.41630283,-0.20869526,0.04484707,-0.43513718,-0.31854644,-0.11876667,-0.29376927,0.26652926,-2.5732825,-0.0075896042,-0.08810633,0.38512832,-0.2536161,-0.28718516,-0.22362784,-0.58078086,0.3481227,0.16173843,0.38519368,-0.41290832,0.39950517,0.3836749,-0.657462,-0.07410725,-0.5448033,-0.09641157,0.042760722,0.42496863,-0.15891562,-0.17539512,0.035916228,0.22652675,0.63993865,0.15366784,0.26032978,0.38479072,0.3083516,-0.20229067,0.23683389,-0.13235496,0.5575025,-0.51515144,-0.17759685,0.5261664,-0.44382003,0.07058694,-0.17967705,0.084566556,0.6155138,-0.3800862,-0.97689235,-0.62947905,-0.010987161,1.0412674,-0.23853289,-0.7334704,0.06047207,-0.17501831,-0.1430557,-0.008935304,0.57011384,0.11274648,0.18947445,-0.65052706,-0.02698359,-0.027888963,0.3338318,-0.07136831,-0.0061969734,-0.46745425,0.7161837,0.00957703,0.5917228,0.078353606,0.3176901,-0.39363942,-0.4319396,0.039497938,1.0347157,0.45122725,0.11193932,-0.17592993,-0.12920964,-0.34998927,-0.21288694,-0.0052277124,0.79322594,0.540352,-0.05606418,0.08082684,0.2718418,-0.15383656,0.33772025,-0.19108708,-0.4161797,-0.3309436,0.05983522,0.5075344,0.46386406,-0.17530362,0.45763612,-0.012584575,0.4153556,-0.30061096,-0.63789445,0.51477647,0.97555274,-0.33801487,-0.32661104,0.65581334,0.37087247,-0.39317146,0.58997506,-0.6333092,-0.56147987,0.4378038,-0.19529302,-0.51908296,-0.0014714301,-0.32427934,0.12789622,-0.51699317,0.2679433,-0.66832,-0.6325775,-0.28798088,-0.25598505,-2.5572083,0.20617995,-0.09713127,0.0010268603,-0.29631788,-0.04188161,0.15210967,-0.39796835,-0.5592877,0.038431328,0.16436648,0.83113676,-0.13284358,0.06004592,-0.22708078,-0.517228,-0.298597,0.37879673,0.15013969,0.25654832,-0.09363661,-0.34096128,0.14761303,0.0888126,-0.39494064,0.010848994,-0.68955904,-0.41069502,-0.22549231,-0.5621378,-0.2290294,0.650847,-0.4245861,0.08648541,-0.26566097,0.12085427,-0.057398044,0.15207665,-0.022016589,0.2817406,0.072393835,-0.24277341,0.2023968,-0.26748896,0.4976454,0.09024131,0.4810357,0.49467805,-0.16233255,0.095209725,0.46121627,0.5389355,0.37419605,0.99413955,0.05300813,-0.044970307,0.58280694,-0.1090809,-0.3707776,-0.5973617,-0.104975544,0.06656123,-0.42320323,-0.29443192,0.058033496,-0.407921,-0.93680316,0.5460258,-0.14524367,0.3730699,-0.19465192,0.4244087,0.5458914,-0.26082832,0.02832179,0.07916127,-0.12387641,-0.44965786,-0.3526411,-0.638441,-0.44511938,-0.061222613,0.7244662,-0.25922322,-0.0688508,0.054526653,-0.057956073,-0.025852306,0.27666798,0.16485007,-0.051578104,0.5997757,0.02210827,-0.6783026,0.4547895,-0.31155303,-0.019528517,-0.44144017,0.6811658,0.45607045,-0.63760483,0.5582046,0.25377828,0.110239014,-0.52479154,-0.6621906,-0.06881653,0.17116246,-0.19379695,0.32063642,0.33103672,-0.81595147,0.38316822,0.108021274,-0.20762451,-0.71711093,0.5428874,-0.037660833,-0.33501747,-0.2544988,0.5596004,0.28426203,0.002370464,-0.08624538,0.1799313,-0.6264482,0.32706922,0.031764127,-0.1492493,0.37188414,-0.102041535,-0.31199518,-0.76958454,0.14958198,-0.56986743,-0.47846174,0.31838888,0.07196803,-0.08906102,0.4908497,0.2105304,0.5105135,-0.18571822,0.1705115,-0.3021829,-0.30895707,0.616168,0.35120112,0.43174177,-0.42403835,0.6246155,-0.03276066,-0.25626367,0.29860285,0.19912155,0.47620997,0.11954035,0.7084028,0.1399004,-0.05066631,0.11403111,0.4971362,0.1798627,0.31671444,0.04731344,-0.14494547,0.14938603,-0.09890628,0.046086285,-0.08212427,-0.5749174,-0.27707776,-0.14539674,0.028984329,0.6588856,0.03897,0.33129317,-0.0036334523,-0.24712765,0.081411935,0.023774501,-0.2450022,-1.2991276,0.32672366,0.020533284,0.9296202,0.4083698,0.04157304,-0.17714651,0.6976735,-0.028484225,0.09395598,0.36634707,-0.060496844,-0.21712509,0.5989633,-0.5105885,0.3387917,-0.1381465,-0.033099882,0.037210133,0.10815774,0.44411317,0.96060044,-0.1565985,0.0032141295,0.10981203,-0.41166177,0.22630177,-0.24623473,0.2541384,-0.5468862,-0.33043846,0.7240561,0.33198354,0.33085164,-0.36229426,0.08686676,0.1327655,-0.26884535,0.17016712,0.07076673,0.10707242,-0.14668694,-0.3748731,-0.12024362,0.53171194,-0.25637004,0.04849771,0.24787012,-0.16245301,0.2610259,0.040428776,0.030855162,-0.058548003,-0.7813516,-0.039898593,-0.27918494,-0.39134255,0.48971772,-0.1243723,0.084627345,0.15407276,0.07184603,-0.36094195,0.39496782,0.27252457,0.255564,0.08401015,-0.1097958,-0.41045588,0.16074882,-0.19319566,-0.25614005,0.18841903,0.0012469122,0.2522078,-0.56121904,0.49335477,-0.11441517,-0.22812496,-0.12954788,-0.07154512,-0.027504751,0.5344656,-0.054612722,-0.108367525,0.052354276,-0.14112924,-0.41347393,-0.31108457,-0.058170464,0.10186333,-0.039731044,-0.18085288,-0.20315899,-0.14398345,-0.075803146,0.15155761,-0.0241593,0.13853177,0.41035798,0.14771724,-0.47125864,0.19197476,0.29952782,0.50237906,-0.020162685,-0.06370221,-0.26405543,-0.40784165,-0.5007126,0.50479937,-0.061658077,0.19505182,0.10493048,-0.3705897,0.87155694,0.092348464,1.1842258,-0.119528316,-0.37361678,-0.0074634976,0.5723614,-0.111986555,-0.0700498,-0.4933872,1.0411931,0.62541896,-0.014668347,0.05753839,-0.4128421,-0.007673309,0.13548867,-0.3263872,-0.11484684,-0.052714713,-0.6349398,-0.22382419,0.07085311,0.29975718,0.09163944,-0.19771041,0.17245828,0.31925339,0.16614212,0.21272253,-0.60378605,0.009571168,0.20027594,0.41176242,-0.021593736,0.27431226,-0.31798616,0.10370684,-0.87946045,0.13918379,-0.11128586,0.09963686,-0.27126223,-0.46864036,0.2742587,0.10181276,0.3073408,-0.42358488,-0.2810566,-0.23998983,0.43384022,0.20253168,0.14581254,0.81067973,-0.22160146,0.032403443,0.20968713,0.6279977,1.101463,0.09781183,-0.17269464,0.055369206,-0.45050684,-0.94791174,0.11537175,-0.31058645,0.327604,-0.16150713,-0.24432732,-0.5179426,0.3003077,0.08032449,0.014753408,0.14910635,-0.6341607,-0.15227643,0.10536308,-0.44589213,-0.2363936,-0.23294422,0.27124685,0.53291154,-0.086784504,-0.16132364,-0.024795678,0.33335894,-0.21029344,-0.7795057,-0.030859768,-0.3909637,0.22065173,-0.030098166,-0.28458008,-0.20355631,0.00031210162,-0.6056904,0.1642277,0.13209967,-0.28466767,0.034438483,-0.36073884,0.1335333,0.59841615,-0.0048952317,0.12946112,-0.35875374,-0.6749147,-0.8088955,-0.33419272,-0.0010390027,0.068992764,-0.0779951,-0.73602444,-0.27384087,-0.42133263,-0.053002764,-0.06590987,-0.41415957,0.27559572,0.16641939,0.3498819,-0.15303585,-1.0214632,0.105362244,0.15651152,0.057922,-0.44852862,0.21760856,-0.22829954,0.99909985,0.12664412,-0.045551088,0.29028693,-0.5469492,0.17448221,-0.20961976,-0.06353099,-0.49006262,0.1451021 -562,0.33907786,-0.13960437,-0.50341797,-0.09088147,-0.3813889,-0.3022633,-0.31075045,0.21167862,0.3523437,0.045321714,-0.2706943,-0.1250026,0.085516214,0.36675188,-0.17604677,-0.6106035,-0.0061023138,0.1640142,-0.71342945,0.66385674,-0.37931827,0.2850053,0.101528905,0.3687928,0.38740206,0.43783212,0.16004023,0.08818265,0.12912552,-0.28928152,0.05385053,-0.14361288,-0.84262484,0.081439905,-0.47284022,-0.30661544,0.17351037,-0.64146596,-0.44859543,-0.7992017,0.2833176,-0.91051954,0.5083198,0.07371169,-0.09239561,-0.2935044,0.23183976,0.35981503,-0.27695066,-0.07493139,0.23081069,-0.27336952,-0.094978094,-0.29203176,0.0007206599,-0.226104,-0.4718142,-0.087655164,-0.5657513,-0.33039057,-0.22003396,0.16641721,-0.3483715,0.15133074,-0.15879972,0.547412,-0.41441965,0.33552718,0.2521867,-0.2768545,0.11288025,-0.56767124,-0.13785826,-0.14435335,0.44527867,0.13524622,-0.17806011,0.5474926,0.08598993,0.14936478,0.16656618,-0.33037254,-0.21849942,-0.20508039,0.05848797,0.5789198,-0.047677007,-0.12995602,-0.18039541,-0.0075019896,0.28669038,0.26804027,-0.058290195,-0.2244252,-0.09469613,-0.24571566,-0.073459156,0.58270234,0.5815411,-0.08458104,-0.18530793,0.12647112,0.46841088,0.4426491,-0.39800987,-0.10928468,0.13750513,-0.50218177,-0.112350516,-0.027127007,-0.09024074,0.76797056,-0.09591179,0.010619174,0.8514218,-0.01817139,-0.19530219,0.003641059,0.1261,-0.011047636,-0.21176992,-0.29447687,0.33676776,-0.5150543,0.33415487,-0.24051535,0.66940504,0.2246231,-0.6416703,0.40038386,-0.6836559,0.120351344,0.020231927,0.4812583,0.6031427,0.47127494,0.49258086,0.68288,-0.17525572,0.29609504,0.012141245,-0.35954794,0.037370548,-0.24883716,0.22997506,-0.29794,-0.06436803,-0.2630745,0.12725507,0.16227879,0.5245622,-0.27735934,-0.09080416,0.39297402,0.9179592,-0.1900232,0.09544104,0.68809146,1.2060434,1.1521721,-0.056293353,0.7885792,0.05697022,-0.1896918,0.042504895,0.021329245,-0.7549818,0.12869309,0.21218388,0.08794723,0.20964678,-0.047302183,-0.004781475,0.35374367,-0.51455337,0.08589793,0.08190066,0.21874379,0.32074672,-0.051617566,-0.50041,-0.32638824,-0.11961647,0.0059394143,0.046963036,0.21700723,-0.24613583,0.24306388,-0.11803383,1.337565,0.124037325,0.0610057,0.21764058,0.82881355,0.3378272,-0.1961077,-0.054990783,0.36737943,0.33667752,0.16211687,-0.5324437,0.14145882,-0.41335663,-0.25438675,-0.13662986,-0.35206762,-0.23388255,0.10958269,-0.49669245,-0.22187042,0.00044325492,-0.2004056,0.38449728,-2.8465736,-0.19028436,-0.12868047,0.41692242,-0.15876694,-0.04449402,0.03313774,-0.57914346,0.17019232,0.2644821,0.57493967,-0.60757095,0.6089595,0.6537948,-0.5696924,-0.09225395,-0.56801325,-0.07280878,-0.007937183,0.4100864,-0.026017427,0.08427009,-0.16092758,0.23112917,0.8056395,0.2988502,0.16107687,0.55041915,0.43094194,-0.01541433,0.7266883,-0.07930892,0.45843956,-0.3944117,-0.14791489,0.35644138,-0.4304577,0.32398036,-0.31970528,0.05207756,0.6952998,-0.49773178,-0.9620604,-0.4947867,-0.050296903,0.9516154,-0.37695718,-0.46532285,0.3908368,-0.5530221,-0.029506743,-0.007947008,0.790292,-0.19894457,0.2871324,-0.4281009,-0.07880361,-0.18336378,0.23357886,0.106605805,-0.08165527,-0.3537198,0.8473463,0.08320466,0.6493642,0.233113,0.17954798,-0.10708328,-0.30374292,0.22716856,0.49951637,0.2500503,0.005999694,-0.3520095,-0.07033684,-0.12736326,-0.29724255,-0.04844441,0.72303724,0.64253736,-0.35614383,0.23114629,0.28184238,-0.06804828,-0.077345274,-0.115418255,-0.22534132,-0.046859983,0.086159825,0.39848268,1.2165767,-0.054784004,0.29356298,-0.08196547,0.46543726,-0.04787454,-0.44388637,0.44987914,0.58502555,-0.031734172,0.004685285,0.3272259,0.6042977,-0.43596005,0.44822732,-0.5774326,-0.22766693,0.68221635,-0.010158978,-0.41338494,0.18955278,-0.44678262,0.04497221,-0.5722434,0.31398168,-0.32096896,-0.51300615,-0.31376183,-0.29508138,-3.318103,0.12236025,-0.24572277,-0.100267716,-0.42704833,-0.041277364,0.22575748,-0.6296132,-0.5662906,0.13224356,0.29675943,0.7507429,-0.12128935,0.1151062,-0.327638,-0.32857165,-0.23483157,0.3987799,0.19562453,0.33857918,-0.23185503,-0.38760176,-0.23732917,-0.029604375,-0.47440204,0.17200224,-0.51528615,-0.38695803,0.032355737,-0.59362817,-0.4599237,0.4649241,-0.29081413,0.021067664,-0.23451476,-0.04923658,-0.32453954,0.061032128,0.09581836,0.18422861,0.12253627,0.023554875,0.24570997,-0.19500549,0.47809586,-0.071702644,0.50568146,-0.08868497,0.15684943,0.057801466,0.43493152,0.4351697,-0.42032805,1.1539093,0.33363983,-0.10595912,0.22606671,-0.13460194,-0.37436703,-0.69663095,-0.17393194,0.07490861,-0.20167808,-0.48914042,0.058216974,-0.32766506,-0.7144173,0.6063209,-0.028812269,0.20367885,0.16270308,0.025547503,0.34509435,-0.17937408,-0.09163233,0.08388006,-0.06294317,-0.523503,-0.16957861,-0.58577704,-0.5130153,-0.30323124,0.8937583,-0.26416144,-0.103209995,0.2170807,-0.5120825,0.090199776,0.23109193,0.12701832,0.2337486,0.56509805,0.16083057,-0.6586974,0.4175615,-0.26794013,-0.07319976,-0.564315,0.15901445,0.6081908,-0.8097043,0.6677766,0.2606232,0.16558664,-0.16991432,-0.6261017,-0.27451277,-0.05437093,-0.16251238,0.37154877,0.28310847,-0.96481556,0.3641177,0.013907808,-0.6873624,-0.72710514,0.34580836,-0.19871639,-0.502164,-0.15317781,0.30399624,0.07979837,-0.15483218,-0.020339916,0.34065482,-0.25923684,0.2531972,0.04582053,-0.20151539,0.11212909,-0.13121457,-0.20678349,-0.6500653,0.124400295,-0.31165096,-0.24704802,0.46736833,-0.16181229,-0.12720792,0.11214914,0.18822984,0.15969649,-0.10402894,0.105854,-0.110651575,-0.4453852,0.304863,0.53371483,0.60854894,-0.468276,0.616218,0.1156447,-0.14515413,0.26321954,0.11078143,0.12602954,-0.23927712,0.44443026,-0.044512253,-0.083194785,0.062363535,0.79679614,0.24569114,0.5270274,0.073276125,0.048503418,0.49017358,0.0032308921,-0.0131710125,0.06340966,-0.6260062,0.16010553,-0.26602855,0.074187204,0.55279154,0.2869848,0.27226087,0.0055577555,-0.14701438,-0.035406318,0.22578044,-0.16988198,-1.2617316,0.27443263,0.24466081,0.8938373,0.4898634,0.14813006,-0.21985197,0.86081725,-0.1966939,-0.016044216,0.43583456,0.16711627,-0.3193994,0.6992915,-0.45289245,0.6951421,-0.0369975,-0.19366415,0.32709238,0.09495545,0.5726071,0.64910847,-0.30773088,-0.14802179,0.135515,-0.2947273,-0.1144177,-0.35241297,0.01965093,-0.47496715,-0.3761269,0.80511826,0.5229786,0.28342196,-0.24450839,0.011584945,-0.15367655,-0.18793373,0.24863337,-0.13063532,-0.26519355,0.17551287,-0.6269964,0.027518844,0.60406333,-0.281963,0.17440887,-0.07174275,-0.20033985,0.23570351,-0.17313534,-0.022435738,-0.15592308,-0.8030278,0.20737155,-0.20398724,-0.57463264,0.5399112,-0.29303756,0.1697157,0.23751515,0.0061959177,-0.057845473,0.5406398,0.017918786,0.7216342,-0.08818028,-0.15292591,-0.29260194,-0.009380515,0.22887488,-0.20752935,0.12640812,-0.52443457,0.13699582,-0.54947525,0.5837677,-0.21668684,-0.30574137,-0.055957645,-0.14268745,-0.12900244,0.7678809,-0.022592494,-0.12455591,-0.016266057,-0.14461458,-0.40769753,-0.30726352,-0.35996637,0.17672175,0.22830267,-0.12973502,-0.16468075,-0.1883985,0.06979817,0.4616067,-0.1369621,0.7605286,0.0070392787,0.18734376,-0.08353323,-0.08548486,0.059785515,0.5936066,0.09312868,-0.13834488,-0.4803883,-0.38414046,-0.28552186,0.27841172,-0.00641893,0.27762112,0.12496754,0.022009691,0.86446315,-0.04309253,1.1557139,0.09704375,-0.35309473,0.3624433,0.52936417,-0.20396967,-0.0381187,-0.41536173,0.92037314,0.403625,-0.27024812,-0.22995788,-0.46787015,0.108232826,0.0032924477,-0.3368609,-0.048116386,-0.08135605,-0.37218443,-0.073575675,0.06832213,0.29879436,0.18174005,-0.18344645,-0.07094991,0.14738837,0.15847324,0.1788133,-0.5370441,-0.352447,0.45205888,-0.023790916,-0.12727964,0.052062873,-0.5221998,0.4552656,-0.48898697,0.24624439,-0.6562765,0.15656452,-0.40629148,-0.35866597,0.15715216,-0.06973538,0.42051712,-0.60567176,-0.08802236,-0.23512071,0.37530598,0.21717338,0.23647134,0.6272463,-0.1786746,-0.14370279,-0.09055037,0.74617845,0.96429294,-0.730725,-0.05036651,0.24698444,-0.47123718,-0.46658865,0.26105317,-0.4943427,-0.1284036,-0.050056856,-0.22869052,-0.6441713,0.085893236,-0.04506029,0.035196498,-0.050166845,-0.7566903,-0.18471913,0.29352263,-0.2633476,-0.27664393,-0.30452418,0.25661823,0.71664333,-0.046685237,-0.41008452,0.06027016,0.09105617,-0.09776876,-0.46792558,0.033015568,-0.20751189,0.28215632,-0.13723353,-0.34352055,-0.25597072,0.39783868,-0.6050332,0.070447,0.15820849,-0.3595903,0.14498794,-0.21309912,0.10440261,1.1350362,-0.50627786,-0.016584694,-0.4297628,-0.6448472,-0.89460474,-0.43544817,0.19775122,0.25343397,-0.030496141,-0.16654444,-0.10309732,-0.14690515,-0.26105133,-0.060684945,-0.5397424,0.39341238,0.0931414,0.51202893,-0.42638683,-1.0776672,0.07853652,0.11891975,-0.25575197,-0.5020603,0.52896595,-0.061771203,0.80905205,0.03762966,-0.023890072,-0.13672729,-0.28921178,0.16033803,-0.26494256,0.032162357,-0.63903916,0.15405728 -563,0.3350386,-0.15703943,-0.5875541,0.029690811,-0.22655497,-0.03501378,-0.39947483,0.3750526,0.27724317,-0.40948895,0.100460805,-0.2226713,-0.14934409,0.11841844,-0.1999608,-0.4866628,-0.03846294,0.200072,-0.4364524,0.5801692,-0.432101,0.20079327,0.095229305,0.23702273,-0.12218637,0.2589906,-0.0051339758,-0.28436893,0.025795903,0.046937324,0.20401356,0.09122162,-0.61449903,0.27792427,-0.18912613,-0.16146812,0.1431055,-0.56350744,-0.56499773,-0.58212197,0.17602767,-0.6214899,0.53956324,0.03564131,-0.3333278,0.28639403,-0.04277139,0.2851266,-0.08863734,0.07171065,0.28577837,-0.17837487,-0.5011706,-0.2445146,0.039688654,-0.48787403,-0.45230156,-0.050694253,-0.4703881,0.20035364,-0.22324331,0.24529903,-0.15383871,0.10581382,-0.11063645,0.13279246,-0.50567085,0.089127846,0.07504349,-0.087264605,0.37559742,-0.66995806,-0.1204614,-0.0016885698,0.19126084,0.19258912,-0.15782128,0.19092837,0.016009582,0.6697779,-0.09711821,-0.07337325,-0.26186663,0.005683754,0.060097802,0.57208,-0.2430084,-0.09048629,-0.16677022,-0.09047786,0.40532207,0.18941453,-0.061106198,-0.3913763,-0.06942902,-0.03706732,-0.3563071,0.15072306,0.6713883,-0.29246372,0.16049124,0.3624827,0.3330607,0.32403424,-0.06916066,0.075962715,-0.079805136,-0.38532543,-0.12271099,-0.024883678,-0.13323146,0.49493477,-0.020159248,0.2637278,0.4639595,0.049768627,-0.10002591,-0.038880367,0.0048025805,0.06642474,-0.08623072,-0.17831199,0.3123695,-0.5612938,-0.0046566087,-0.13120031,0.52223915,-0.16910431,-0.86137384,0.45762625,-0.47998673,0.06917486,0.06555341,0.596224,0.7032619,0.7404996,0.0870722,0.89453804,-0.5633551,0.15303013,-0.12878715,-0.229624,0.35527244,-0.14669539,0.23021157,-0.45153126,-0.04440651,0.14759819,-0.14062789,-0.15268609,0.6495957,-0.54685235,-0.001882468,0.21186201,0.72556156,-0.29861477,0.14228691,0.6092494,1.1353904,0.8330983,0.2782727,1.1971667,0.27543333,-0.19863252,-0.07824954,-0.059697144,-1.0604625,0.099962555,0.28564772,0.7165567,0.18496545,0.36039916,-0.03295574,0.6722166,-0.25080544,-0.16064216,-0.22130595,0.375392,-0.054795478,-0.21607362,-0.2200378,-0.18823375,0.06370303,0.13181305,-0.046574254,0.33827713,-0.060912065,0.2673764,0.18713239,1.5472937,-0.19366369,0.11431346,0.12620656,0.14618209,0.19032557,0.010505642,-0.12621741,0.36477163,0.35578346,-0.021803724,-0.55449355,0.0069865286,-0.12746613,-0.63336116,-0.1533675,0.056360643,-0.13575543,-0.10508282,-0.28444007,-0.2645571,-0.06347077,-0.3297232,0.57226026,-2.6871376,-0.11243469,-0.17818257,0.43832207,-0.17686081,-0.2664087,-0.11310103,-0.2804342,0.5431568,0.48976332,0.42599398,-0.56392664,0.4554209,0.38955018,-0.5847383,-0.10919584,-0.6451064,-0.029518614,0.029705787,0.27229974,0.07653398,-0.31412056,0.053689737,-0.16342251,0.2974729,-0.20107748,0.15250906,0.43788937,0.51228416,0.014118097,0.39879823,-0.19627477,0.36442152,-0.28763488,-0.11148806,0.26756144,-0.36211976,0.40914991,-0.20540306,0.20062813,0.3672063,-0.5464794,-0.62524205,-0.41516963,-0.055049304,0.9580328,-0.26389137,-0.5304104,0.22443001,-0.35304955,-0.32028052,-0.038923714,0.38694876,-0.15847073,0.027346853,-0.85387695,-0.07859804,-0.07945393,0.26875368,0.022588039,-0.003817918,-0.47207877,0.6964862,-0.035699993,0.5766055,0.6662506,0.2758915,-0.060607374,-0.27807578,0.11153237,0.67090166,0.48554975,0.171804,-0.1936544,-0.041951988,-0.04112702,-0.22544037,0.10298306,0.5103138,0.58756256,-0.16496928,0.10241078,0.2098311,-0.19652727,-0.123066776,-0.07391044,-0.43580213,-0.099805534,0.12034048,0.48272082,0.789688,-0.18535025,0.26288548,-0.014225778,0.15228446,-0.0010543125,-0.45993838,0.4029548,0.53158927,-0.10734483,-0.18071012,0.4724866,0.4878609,-0.09143002,0.46919766,-0.558262,-0.47160238,0.32963482,0.0049885428,-0.61443454,0.37574658,-0.45383072,0.14507529,-0.97361577,0.3777234,-0.349529,-0.5770553,-0.6950432,-0.08403759,-2.4698815,0.22477886,-0.27426764,-0.08655033,-0.1778857,0.011360322,0.2809131,-0.52514315,-0.6647791,0.19398654,0.19098876,0.35279983,-0.0014725582,0.043459687,-0.18836986,-0.1572125,-0.2888184,0.17325592,0.20376119,0.15050414,-0.032551296,-0.4444785,-0.23910478,-0.23080859,-0.097493626,0.082851104,-0.5858265,-0.29083967,-0.16521814,-0.46228853,-0.29188892,0.50009257,-0.38341406,-0.071830325,-0.33286378,0.016328672,-0.13566019,0.32918686,-0.1311252,0.11307402,-0.038784694,-0.12574033,-0.057431627,-0.23497938,0.11787776,0.09122646,0.12791814,0.5672902,-0.113099255,-0.075325884,0.5730285,0.6578768,-0.21031602,0.78992164,0.49433258,-0.29454237,0.3638092,-0.36857313,-0.13545643,-0.62273175,-0.27347443,-0.11414545,-0.39076582,-0.4859529,0.04702249,-0.421732,-0.7218777,0.5102633,-0.0101068,-0.044553824,0.19146106,0.13750665,0.3799183,-0.08483861,-0.122255705,-0.14381981,-0.20558996,-0.51782924,-0.3464281,-0.70256466,-0.49971423,0.16343047,1.1629188,-0.14234357,-0.14772399,0.28221095,-0.22471072,0.04135992,0.20590101,0.07904865,0.16350208,0.2731193,0.15813632,-0.75622314,0.4329849,-0.07403342,-0.19723788,-0.6647498,0.06473958,0.6055294,-0.8005174,0.43719092,0.3950677,0.15208931,0.2916655,-0.6257015,-0.22371697,0.038157318,-0.27842042,0.3571132,0.26710656,-0.81527704,0.5653678,0.49070904,-0.2960649,-0.8827692,0.23571874,-0.045205623,-0.13337587,0.10791675,0.30046603,0.08219319,0.033460796,-0.1076893,0.21197973,-0.51985055,0.44774002,0.07181007,-0.1723331,0.44170538,-0.20526095,-0.08813067,-0.9043861,-0.06764251,-0.4225025,0.019306336,0.39993724,0.050978076,-0.042244375,-0.2616694,0.38635454,0.44177863,-0.43690866,0.16798909,-0.2760244,-0.36581096,0.27999574,0.5496573,0.4286532,-0.31876987,0.48578972,-0.13174228,-0.11528802,-0.20596504,0.068888105,0.36147264,0.14081885,0.08277158,0.007917813,-0.10690167,0.1184669,1.0193561,0.13639888,0.35951108,0.08891287,-0.1242735,0.5164179,0.115405016,0.08755926,-0.14194699,-0.526622,0.035221703,-0.06093904,0.21686505,0.42745617,0.19204679,0.4951376,-0.3164448,-0.12553397,-0.09839075,0.35218468,0.35152128,-0.84145325,0.47656268,0.080317445,0.6029692,0.6756266,0.056652274,0.30968237,0.68599683,-0.17526576,0.06716626,0.32946375,0.042849522,-0.4437645,0.38062754,-0.7575056,0.28656402,-0.20296128,-0.033984922,0.38884845,0.23091057,0.5214688,0.7894373,-0.062880106,0.003508611,-0.09923909,-0.11840367,-0.10839907,-0.20223448,-0.1784621,-0.33975467,-0.41602662,0.6823087,0.41125104,0.45449883,-0.31322604,0.016594272,0.18026762,-0.0069140964,0.60962564,-0.02280079,-0.010445176,-0.1614858,-0.61015993,-0.22764526,0.67719424,0.042658843,0.039977588,0.0031139723,-0.08393727,0.3883269,-0.21225247,-0.20553215,0.014982073,-0.6580173,0.18362649,-0.28723887,-0.48101848,0.6107546,0.22792152,0.19888012,0.06667252,0.090024844,-0.2351376,0.33540282,-0.024529388,0.8421251,0.008993119,-0.27768356,-0.18757196,-0.1413278,0.20230351,-0.18794498,-0.15884164,-0.24564731,-0.029635224,-0.5823422,0.4561964,-0.20881979,-0.07884501,0.31294063,-0.29345924,0.04484563,0.48113397,-0.2846359,-0.30103603,0.20870717,0.11376516,-0.2713335,-0.45604038,-0.46621466,0.06508044,-0.07868481,0.10079881,-0.07457827,-0.1477952,-0.03872108,0.48026976,0.08379451,0.18509217,0.38132167,0.31703338,-0.5027236,-0.18410417,0.20256308,0.4621916,-0.004454215,-0.09604697,-0.2593218,-0.6509635,-0.3433502,-0.0863878,-0.10709442,0.34557396,0.1372829,-0.41822955,0.9127653,0.122466855,0.94358593,0.08356544,-0.17198613,0.08598524,0.54007834,-0.0998684,-0.026380513,-0.4274545,0.8397242,0.8095974,-0.0943539,-0.077638045,-0.5034057,-0.12903298,0.18405755,-0.3217352,-0.022343738,-0.093657054,-0.7188546,-0.23432776,0.10847359,0.23299193,-0.17373657,-0.14251746,-0.08205337,0.018279774,0.101134576,0.12776938,-0.36435556,-0.26156104,0.40617278,0.206568,0.10286361,0.13601786,-0.34693933,0.2828153,-0.456807,-0.043071758,-0.4610605,0.019617332,-0.016326537,-0.24421223,0.05843566,-0.12084507,0.29462144,-0.31234977,-0.31720564,-0.060908,0.4114395,0.22812359,0.33808684,0.64747447,-0.18254794,-0.07585131,-0.13084503,0.49411747,0.998539,-0.5109126,0.08473998,0.41171935,-0.39321473,-0.42705485,0.21834072,-0.37130553,0.009213784,-0.09327037,-0.4198821,-0.5462917,0.17723843,0.12118828,-0.19004896,-0.25503308,-0.62264025,-0.014612113,0.19781268,-0.30932823,-0.14031668,-0.19877349,0.06538944,0.9765376,-0.3626797,-0.30974963,0.17619045,0.10135238,-0.30755138,-0.31685933,0.21118583,-0.4036413,0.24472524,0.36635408,-0.3634962,-0.0058502215,0.21430556,-0.5950743,-0.04921731,0.12867549,-0.29002553,0.03170403,-0.47535753,0.19210377,0.82541263,-0.03605122,0.20425443,-0.45520094,-0.55716133,-0.9977077,-0.30995092,0.169434,0.27171195,-0.044684555,-0.4395297,0.08402264,-0.14861332,-0.088514045,-0.08310044,-0.51255345,0.59262955,0.09192155,0.40576747,-0.39061823,-0.9268905,0.09116932,0.1815963,-0.21159947,-0.29333702,0.4985183,-0.12091913,0.95954216,0.06611966,0.094684176,0.16498467,-0.7390995,0.23263991,-0.31160998,-0.3778378,-0.698125,-0.046795342 -564,0.48200107,0.0021809042,-0.6145715,-0.19136804,-0.2533081,-0.15175608,0.005125334,0.62549156,0.30923533,-0.26852348,-0.15629894,-0.14982976,0.042206317,0.4307609,-0.1433898,-0.5414991,0.10931649,0.30316532,-0.5019536,0.54442215,-0.46095416,0.36717883,0.03344117,0.6099344,0.40217265,0.18581665,-0.03831787,0.15398024,-0.021969488,-0.25427997,-0.3161059,0.31791392,-0.49868402,0.12461803,-0.12863003,-0.39880502,0.040821414,-0.4555236,-0.39430746,-0.9045107,0.09233528,-0.56916183,0.574866,-0.055566058,-0.40351295,-0.19730626,0.4633505,0.46444583,-0.2199583,-0.04639332,-0.04793698,-0.033504836,0.048556965,-0.20399153,-0.4094982,-0.4634556,-0.59689856,-0.100160144,-0.46877614,-0.08147126,-0.33402762,0.2545477,-0.2990859,-0.095784985,0.0058359304,0.58086354,-0.2731268,0.15626891,0.08206991,-0.008675831,0.15019129,-0.5207758,-0.29466477,-0.19367218,0.0993801,-0.14594065,-0.45989326,0.30342177,0.23595482,0.21574517,-0.22438847,-0.14175077,-0.324255,-0.09900617,-0.30734167,0.5398553,-0.3215423,-0.5539347,-0.11601517,0.029040078,0.24944592,0.63299716,0.2880942,-0.132425,0.01900874,-0.011210263,-0.36274466,0.4281052,0.4092845,-0.37314996,-0.25002524,0.29096135,0.32284182,0.14354903,-0.30214763,-0.0014790446,0.040011063,-0.59905773,-0.16211806,-0.076689444,-0.17857683,0.5328539,0.032959815,0.14729317,0.6160593,-0.118628494,-0.24467109,0.18151605,0.21879031,0.016299346,-0.47464517,-0.40615845,0.29815164,-0.54059094,0.11352771,-0.097631745,0.7384772,0.10461276,-0.6950508,0.15655023,-0.6933405,0.037946317,-0.1486371,0.3583386,0.59894884,0.4478276,0.38254952,0.59726745,-0.3070782,0.0246673,-0.055942614,-0.17475943,0.04157042,-0.20228891,0.051711034,-0.50907046,-0.064447485,0.09111299,-0.21479662,0.4335592,0.53036743,-0.5381109,-0.3872359,0.2586099,0.80815053,-0.32964987,-0.29798952,0.66657233,1.0161492,1.0807484,-0.026803285,0.9055354,0.1633774,-0.17998107,0.18347764,-0.12772651,-0.5385268,0.24278027,0.23379236,-0.8269048,0.24208026,-0.052746225,-0.04818831,0.34380618,-0.1695729,-0.054314952,-0.035630148,0.13162737,0.08906302,-0.10765975,-0.43649194,-0.5560643,-0.08390541,-0.09431403,0.137202,0.34063685,-0.29253924,0.3811226,-0.05797283,1.7612771,0.16061157,-0.09415764,0.0909124,0.59106785,0.35843262,-0.18454303,-0.13925521,0.28748503,0.23461463,0.08668453,-0.40136588,0.15945044,-0.26519164,-0.3936267,-0.12015182,-0.41342553,-0.033369552,-0.25117084,-0.43735316,-0.25044617,-0.23237671,-0.27497724,0.57315993,-2.9049509,-0.1112532,0.05484577,0.30615094,-0.15270285,-0.52849865,-0.09477822,-0.5282701,0.39819348,0.1851501,0.4443777,-0.5439989,0.39718208,0.53831476,-0.5383039,-0.29573038,-0.6890333,-0.1317984,-0.035157595,0.13459428,-0.030125067,0.009410034,-0.08277861,0.15437703,0.57223815,-0.0051313937,0.12322555,0.39281297,0.33388296,-0.097897805,0.6785957,-0.036752965,0.58721894,-0.24038933,-0.22130118,0.23521674,-0.62241656,0.11727405,0.04373784,0.016764726,0.71632004,-0.5703691,-1.0386072,-0.5301871,0.04804385,0.8573416,-0.29887748,-0.089472346,0.41598487,-0.5388455,-0.25999215,0.012811247,0.6370689,-0.14693098,0.081889175,-0.5130608,-0.12609708,-0.022015354,0.21755813,-0.14740628,-0.09514421,-0.24162771,0.52852565,-0.032091677,0.51731414,0.054573815,0.1447346,-0.5773058,-0.4021574,-0.037303146,0.9435356,0.30257377,0.20722967,-0.18495543,-0.1939881,-0.63438874,0.05278046,0.17548132,0.6831255,0.7493823,-0.16821878,0.14794563,0.29636696,0.035071474,-0.03455325,-0.12979285,-0.33973292,-0.04861638,0.14116077,0.57401013,0.56505704,-0.0059120804,0.7001906,0.16606738,0.5010597,-0.33714664,-0.46610072,0.30196583,0.9912095,-0.25175813,-0.39177564,0.75853014,0.4960176,-0.25727844,0.47152734,-0.6164005,-0.42846498,0.6055266,-0.0355617,-0.3207299,0.22477005,-0.21376944,-0.008432806,-0.9084851,0.048229646,-0.3206614,-0.5405776,-0.42208302,-0.019003531,-2.9425533,0.32569212,-0.06112957,-0.15818138,-0.10823673,-0.13467272,0.06051207,-0.5966153,-0.52847713,0.0690509,0.19985704,0.8140497,-0.14959143,0.0014139563,-0.14085421,-0.45021543,-0.34176758,0.21919917,0.14053805,0.4135232,-0.04623286,-0.44643426,-0.15235959,-0.21721585,-0.50608665,0.15744783,-0.67575556,-0.5475495,-0.13064349,-0.8493889,-0.34982455,0.73701096,-0.39432588,0.06697188,-0.1540746,-0.022872373,0.06900125,0.15658762,0.21575846,0.06909337,0.03659576,-0.105951935,0.092085816,-0.29567906,0.10683658,0.036864918,0.4924328,0.12817067,-0.0055086613,0.3180293,0.62562615,0.6764388,-0.090368,0.94901323,0.3469068,-0.09630784,0.24784988,-0.2923806,-0.352072,-0.4170959,-0.10915748,-0.1386349,-0.25875196,-0.23677097,-0.1033667,-0.35353222,-0.66354024,0.6183165,0.06275052,0.2688795,-0.08380418,0.44508246,0.52233416,-0.24093223,-0.07673662,-0.12114366,-0.1892556,-0.43769893,-0.28647152,-0.5550992,-0.45923448,0.15750241,1.1510328,-0.412588,0.0061403713,0.069078706,-0.06316203,-0.026260234,0.29308692,-0.03701121,0.17225903,0.45641813,-0.29472694,-0.54083127,0.28471726,-0.3584926,-0.19092236,-0.52830344,0.29578647,0.63787895,-0.5967822,0.66525996,0.15078516,0.116355054,-0.27965513,-0.5614151,-0.07611143,0.23444963,-0.15249237,0.43483365,0.3114614,-0.97302085,0.33450374,0.290657,-0.39172506,-0.5817155,0.63425833,-0.045340087,-0.55655926,-0.41461623,0.4807581,0.324546,0.13251466,-0.11982524,0.15616788,-0.36748648,0.17281197,0.19479208,-0.0655712,0.20122094,-0.3527473,0.10753822,-0.79918003,0.35733774,-0.25376943,-0.52470416,0.35510674,-0.055533063,0.05021015,0.46255198,0.057490498,0.22795789,-0.44072703,-0.017888904,-0.28013182,-0.27081463,0.48985013,0.41708195,0.6443248,-0.32385388,0.569074,0.10703081,-0.16342038,0.06498044,0.08406957,0.35144734,-0.12435167,0.5505595,0.06368809,-0.38374305,0.3573265,0.48668396,0.13511221,0.21779908,0.13032503,0.17264622,-0.11599275,0.034750417,0.09652945,0.22948222,-0.5351729,0.008388202,-0.38681707,0.18090685,0.638051,0.08022218,0.13942946,0.09426406,-0.26353678,0.06781953,0.08903786,-0.13653187,-1.4163299,0.39053723,0.1884631,0.92998654,0.474057,0.22575788,-0.09738094,0.6256889,-0.17000504,0.26044777,0.34957537,0.14084816,-0.27258882,0.63542026,-0.6419928,0.7225879,0.017583018,0.024550488,-0.07873744,-0.07985247,0.6405832,1.0901198,-0.17146747,0.074097455,0.26189002,-0.29786935,0.18296434,-0.3501196,-0.09694827,-0.84156626,-0.2191881,0.6490125,0.48303393,0.33003232,-0.1263393,-0.13877797,0.16406424,-0.16825603,0.180676,-0.026638964,0.08622811,-0.023819834,-0.5296754,-0.057741046,0.59954685,-0.09944183,0.056243036,0.23782611,0.03444837,0.3674917,-0.09018248,0.1384583,-0.06321209,-0.60924643,0.049612958,-0.4161398,-0.45539021,0.42730293,-0.36670676,0.12672801,0.25179422,0.15788375,-0.28617278,0.5709126,0.3106033,0.7178939,-0.20205148,-0.12696746,-0.23596437,0.26257798,0.0070975516,-0.16121171,-0.05630302,-0.4023342,0.07284049,-0.58380866,0.4165757,0.13211201,-0.44731745,-0.22388236,0.06607282,-0.0070238397,0.39337143,0.0023152877,-0.12974797,-0.41026035,-0.20144837,-0.12139695,-0.19301444,-0.06558717,0.28772175,0.030217448,-0.14233278,-0.0049185134,-0.14018008,0.13435,0.34793243,-0.27155957,0.47597364,0.25131264,0.20028774,-0.20706157,-0.03645432,0.1320825,0.55913275,-0.23876412,-0.15927614,-0.318922,-0.004760901,-0.4602991,0.25366583,-0.12314042,0.551961,0.2022307,-0.254424,0.7839505,-0.073416084,1.2594881,-0.13319476,-0.46141148,0.11507376,0.6100981,-0.036120716,-0.05555442,-0.2979919,1.1442786,0.5340051,-0.07381743,-0.2418227,-0.40049025,-0.033574644,0.18773556,-0.32236502,-0.3508006,0.07754313,-0.49231216,-0.1801122,0.17500855,0.17539813,0.46380353,-0.07608023,0.18375826,0.58106834,-0.0028598506,0.17339875,-0.28127038,-0.014197116,0.20354868,0.40048108,-0.096406735,0.19668962,-0.49361503,0.34643683,-0.49977693,0.19952317,-0.37824854,0.3152294,-0.36035874,-0.44240868,0.21890318,0.08959759,0.30647913,-0.24703324,-0.24471207,-0.21012674,0.5458409,0.16741501,0.20985329,0.5305046,-0.27273598,0.0058891675,-0.10851574,0.5103124,1.0854573,-0.3316057,-0.36289212,0.44178668,-0.41425052,-0.6906288,0.2079066,-0.37706372,0.1996723,0.17841767,-0.20397002,-0.5613962,0.23626797,0.21696012,0.24769445,-0.055562317,-0.5501601,-0.048903476,0.17079578,-0.14221393,-0.14304426,-0.4220051,0.32726365,0.52982813,-0.10919046,-0.26749924,0.07607467,0.119747974,-0.09095186,-0.5771251,-0.01201811,-0.39969516,0.4067265,-0.021298388,-0.3993086,-0.17384432,-0.07521689,-0.5089087,0.23097181,0.24741435,-0.14257406,0.27381286,-0.36504436,-0.077638604,1.0501047,-0.2928867,0.07404333,-0.25170973,-0.55063194,-0.5020952,-0.45616433,0.38246512,0.008136444,-0.14821549,-0.7559014,-0.0028388996,-0.119395964,-0.3942745,-0.048469465,-0.2854847,0.31992385,0.09811439,0.39103726,-0.0040053427,-0.9900612,0.25627628,0.044564564,-0.38609254,-0.67373735,0.4877971,-0.18457323,0.92987126,0.15497571,0.087821,0.5584927,-0.32592404,0.028183505,-0.23507385,-0.068234794,-0.58878654,-0.068096064 -565,0.38083997,-0.14701307,-0.49127018,-0.18092112,-0.28758293,0.28221333,-0.0750658,0.41349486,0.27164468,-0.40781,-0.14123438,-0.09111164,0.027750038,0.36985835,-0.20197958,-0.39186412,0.017688446,0.046445593,-0.47010353,0.28682917,-0.45773557,0.3462428,-0.016566098,0.23271915,0.17578353,0.31513128,0.15808469,-0.20200843,-0.23642811,-0.090671375,-0.008980811,0.25754324,-0.3776862,0.22532547,-0.1456364,-0.26655984,0.05581682,-0.34106082,-0.28957263,-0.6825587,0.240331,-0.8821328,0.34166718,-0.102520004,-0.22528307,0.28743854,0.119667076,0.2417572,-0.10894889,0.05435502,0.2461097,-0.17559566,-0.15567002,-0.16032958,-0.21755946,-0.35029206,-0.45557564,-0.0347552,-0.38354796,-0.18662725,-0.18561628,0.29492718,-0.20621893,-0.024476554,-0.07256741,0.30345702,-0.47502214,0.14777231,0.14158696,-0.16492432,0.09961053,-0.5618205,0.03645142,-0.057957307,0.24909951,-0.24789906,-0.24480483,0.362677,0.26184875,0.32892498,-0.0075228307,-0.106154054,-0.44018558,-0.13299583,0.1851976,0.42855284,-0.142032,-0.311205,-0.13125363,-0.06231138,0.14598128,0.26038322,-0.051007524,-0.46425366,-0.099257484,-0.04722254,-0.19540161,0.34629184,0.5592688,-0.3090838,-0.3086341,0.48277408,0.6708342,0.101994455,-0.29922995,-0.0688176,-0.058169663,-0.5850347,-0.1259192,0.2551266,-0.08695202,0.5490763,-0.11505354,0.13471547,0.7353192,-0.4236738,-0.00051481277,0.13517922,0.18270804,-0.028941154,-0.26727647,-0.0835262,0.1322267,-0.5513489,0.06644823,-0.11739834,0.7162698,0.09687105,-0.71492034,0.28124347,-0.3776104,0.01309745,-0.21902874,0.52131975,0.58857054,0.42784256,0.13774353,0.7618528,-0.4433296,0.08670027,-0.20887548,-0.40787426,0.20794162,-0.13732621,-0.13673186,-0.44402257,0.058078013,0.10363793,-0.10347264,0.088661134,0.3143279,-0.59047,-0.13823223,0.18693931,0.59008455,-0.42417276,-0.11252594,0.57168883,0.8637125,0.849306,0.094247356,1.217708,0.2521461,-0.17037699,0.12320533,-0.37881008,-0.55022955,0.26070058,0.22309485,-0.00558953,-0.017127827,0.12471664,0.045555193,0.26187375,-0.4416361,-0.040497214,-0.21549708,0.39182305,0.14134416,0.06957278,-0.22793797,-0.2673188,-0.022742953,0.15862812,0.1643674,0.12539709,-0.38796198,0.19291109,0.102408126,1.699971,-0.05668494,0.08060767,0.03450686,0.31369773,0.16078933,-0.13584381,-0.07675749,0.42518198,0.3224901,0.103522554,-0.49287412,0.036874406,-0.22109818,-0.46796525,-0.13184072,-0.40804625,-0.09143464,-0.08758661,-0.41754878,-0.14236,0.04065818,-0.2428539,0.7108415,-2.7156549,-0.09887997,-0.02405239,0.28111824,-0.1937217,-0.3947448,-0.255688,-0.47592598,0.36376897,0.3236484,0.44663423,-0.64942825,0.20619127,0.34152055,-0.4342695,-0.1675535,-0.6790519,0.033838682,-0.07549137,0.2790833,0.15239799,0.026588462,-0.036784217,-0.012887694,0.48374352,-0.09240992,0.14907908,0.3696419,0.26511958,0.12423024,0.44960722,0.052053265,0.6104571,-0.24533755,-0.2662994,0.36855498,-0.3698551,0.3007195,-0.099745505,0.25472987,0.35895854,-0.27282476,-0.9464022,-0.7555714,-0.2253762,1.2197027,-0.22632894,-0.40480965,0.20615974,-0.19257557,-0.33908913,-0.013428215,0.3742708,-0.04232241,-0.04525057,-0.762587,0.08256009,-0.07813238,0.20838293,-0.13922319,0.017084055,-0.31849152,0.45358646,-0.12541224,0.36462694,0.31005785,0.2085307,-0.27587956,-0.4358378,-0.027684998,0.8325659,0.33008456,0.09797772,-0.09523983,-0.320354,-0.31337726,-0.14384997,0.18995953,0.45304766,0.6389687,0.051077705,0.035365455,0.15593961,-0.078622326,0.0095595885,-0.11790143,-0.29357067,0.004255846,-0.10194945,0.53506035,0.5000595,0.0108247325,0.518083,-0.12517434,0.27113837,-0.09146252,-0.55522585,0.33046386,0.7087182,-0.292354,-0.3240904,0.4341624,0.41032818,-0.25157338,0.392985,-0.63914007,-0.25728703,0.38391134,-0.1521574,-0.45473507,0.0557134,-0.29545307,0.1319246,-0.79272485,0.29075217,-0.10996759,-0.63021857,-0.45342878,-0.1619526,-2.8628776,0.17436832,-0.101447105,-0.13229914,0.07172798,-0.16597262,0.17515042,-0.504664,-0.39880994,0.16158119,0.16752072,0.62530977,0.04593051,0.042384326,-0.29723865,-0.089246914,-0.27751446,0.18322422,-0.050189987,0.36170948,-0.1258882,-0.44806546,0.059949547,-0.024299264,-0.36114603,0.11667194,-0.5007416,-0.41991717,-0.18013036,-0.3617961,-0.37240806,0.75003976,-0.44618294,-0.029717833,-0.027710598,0.07217729,-0.0066823885,0.24219228,0.20071715,0.08214532,0.17683649,0.06850879,-0.10546659,-0.38276798,0.43400037,0.0006510429,0.07165596,0.42417052,-0.033424474,0.17103766,0.45774424,0.45416713,-0.16644944,0.8515452,0.5614844,-0.06504411,0.13354649,-0.20971106,-0.13504404,-0.3455832,-0.38669527,-0.2015851,-0.5435518,-0.2783745,-0.0801782,-0.259179,-0.77251554,0.60302013,0.17407875,0.034132928,-0.07392773,0.21163589,0.5900458,-0.2240275,-0.033730052,-0.09665778,-0.22620311,-0.6368456,-0.49538177,-0.59837353,-0.5285759,0.10766359,1.1162953,-0.29131654,-0.050584562,-0.05260671,-0.14782329,-0.020633817,0.18468887,-0.13064331,0.1613577,0.35469353,-0.28860462,-0.5352528,0.51465374,-0.17910118,-0.12387834,-0.680219,0.2809155,0.57773364,-0.6051731,0.42089754,0.46921152,0.09323598,-0.05386591,-0.55431014,-0.20266494,-0.10609004,-0.26324734,0.34096748,0.13011722,-0.74410605,0.3940669,0.2517486,-0.27774408,-0.72464275,0.50087804,-0.04479066,-0.264949,0.112193905,0.32253888,0.22400604,-0.12156149,-0.31547412,0.1548497,-0.395971,0.35694966,0.31911346,0.115325645,0.32522628,-0.20680322,-0.18127473,-0.70528895,-0.064091906,-0.41988096,-0.2199691,0.21203627,-0.06930726,0.06798549,0.33428988,0.17484699,0.41428596,-0.42309976,0.053027887,-0.20625427,-0.23806038,0.34884423,0.4108212,0.4591444,-0.27643144,0.45991135,0.048949912,-0.10471061,-0.0505334,0.100888446,0.52988946,-0.0034093335,0.36537766,-0.04559031,-0.20054045,0.2699828,0.7305693,0.19696397,0.37584123,-0.15229262,-0.4055187,0.10582675,0.10807303,0.22367035,0.11469068,-0.4746356,-0.036144048,-0.21960339,0.2831795,0.36106598,0.190564,0.47582334,0.0057565663,-0.2436003,0.069872595,0.16509342,0.08358726,-1.0665827,0.37192875,0.17823553,0.83611465,0.47313017,-0.020185478,0.053075712,0.5275387,-0.15869159,0.27028286,0.30287227,-0.11820082,-0.47756624,0.39354357,-0.88314044,0.54852885,-0.07675718,-0.044993322,0.096969485,0.008644283,0.36024737,0.88538635,-0.064900294,0.11370639,0.05709907,-0.3401821,0.14348412,-0.39377487,0.19189711,-0.67390484,-0.33369014,0.6243516,0.44718677,0.44621146,0.029470388,-0.07778694,0.115016825,-0.13696626,0.14824441,-0.09679679,0.24167466,-0.010032775,-0.54331774,-0.250777,0.49079955,-0.10955783,0.23358184,-0.002526082,-0.093690746,0.23113628,-0.17944069,-0.029652368,-0.072598234,-0.47022584,-0.09613967,-0.17114356,-0.3504057,0.4783932,-0.35473448,0.30718374,0.18815534,0.051244847,-0.32844186,0.42089775,0.25405174,0.87487787,-0.06899245,-0.15410739,-0.4416384,0.1803598,0.34108314,-0.2028679,-0.0791741,-0.2576738,0.034672342,-0.70365703,0.2431603,-0.102705464,-0.36225772,0.05140471,-0.20349222,0.05994023,0.5628666,-0.12725382,-0.2051478,0.010985434,-0.15426132,-0.35208306,-0.005683437,-0.22789776,0.15837975,0.24491914,-0.04655651,-0.07700814,-0.22184685,-0.14039317,0.21822105,0.0872401,0.3455211,0.3031611,0.049864784,-0.26573434,-0.11755346,0.17229931,0.4476749,-0.11038241,-0.10193394,-0.22435123,-0.36777258,-0.2898278,0.13691115,-0.07150657,0.35635996,0.162456,-0.15433846,0.70092356,-0.14991137,1.1250427,0.17191902,-0.28351736,0.09441628,0.4431069,0.1763938,0.09278321,-0.32543504,0.8677921,0.6319175,-0.07934384,-0.060552835,-0.23899686,-0.07827871,0.24761431,-0.08185103,0.0042747743,-0.019547839,-0.6567844,-0.32009643,0.30312026,0.18379328,0.17769179,-0.08342156,-0.06843815,0.16599862,-0.021412326,0.43506184,-0.48330826,-0.045116853,0.24142411,0.42701325,0.092695065,0.27268076,-0.37724423,0.43593696,-0.4668095,0.0061896928,-0.11295384,0.21759014,-0.24841453,-0.21763217,0.1834676,0.059749074,0.41862047,-0.15759307,-0.4519609,-0.25033644,0.48772043,0.14073321,0.16808456,0.59325135,-0.24012433,-0.026423458,-0.06715081,0.39498836,0.9882684,-0.43240416,0.059857283,0.5651096,-0.22052181,-0.5010334,0.29002148,-0.36198342,0.24312906,-0.043943122,-0.27163365,-0.2776914,0.4316241,0.23004486,-0.03413716,0.084698424,-0.52242863,0.04118243,0.19017324,-0.21748708,-0.19255058,-0.29827064,0.2957778,0.6261865,-0.4721165,-0.26492253,0.17114061,0.35718948,-0.2604408,-0.4068352,0.020535335,-0.33963507,0.28302935,0.021088196,-0.42050695,-0.14898631,0.011324266,-0.3552463,3.0055642e-05,0.09082551,-0.2479829,0.10175425,-0.21783671,0.170142,0.73540086,-0.05738136,0.06789946,-0.57249296,-0.2877454,-0.88310266,-0.20047945,0.16352484,0.27988297,-0.11713968,-0.44764525,0.011965536,-0.106759384,-0.17577553,-0.085219435,-0.4320894,0.60937554,0.04256682,0.20192254,-0.16539678,-0.90647185,0.040320218,0.07528445,-0.1532763,-0.51752913,0.4774679,-0.22639747,0.7678292,0.15023026,-0.06937169,0.27606025,-0.48296803,0.09497601,-0.37375152,-0.28464562,-0.7787373,-0.024573762 -566,0.35435542,-0.1462607,-0.45163387,-0.24254361,-0.5028902,0.1704154,-0.23484713,0.05119779,0.31342506,-0.34420618,0.13936171,-0.15484504,-0.24674334,0.2515337,-0.23536427,-0.70520216,0.07085291,-0.124779984,-0.5068377,0.4510277,-0.48763162,0.43153873,0.068298,0.25690812,-0.030120404,0.33287093,0.33048448,0.14773805,-0.0647446,-0.062088497,-0.06850605,0.34470317,-0.72574335,0.34789357,-0.0064169886,-0.30244386,-0.09493359,-0.22951081,-0.0688245,-0.7100759,0.31349525,-0.7881526,0.5208934,-0.16395801,-0.49100736,0.0632316,0.15120967,0.123247415,-0.271555,0.13205777,0.22820117,-0.29315045,-0.07179305,-0.11904163,-0.30414996,-0.761979,-0.5985184,0.012200324,-0.82044214,-0.31732187,-0.39114323,0.38246298,-0.2661902,-0.10432815,-0.12505351,0.4280772,-0.4124463,-0.28480536,0.17450692,-0.30905762,0.15333249,-0.6395538,-0.28354925,-0.06489451,-0.0021592935,0.14583606,-0.20785104,0.30370578,0.38363138,0.47833213,0.25191584,-0.32532686,-0.19085118,-0.081466086,0.020116825,0.39058086,-0.14649002,-0.07639435,-0.30768272,-0.14798781,0.4455324,0.2564912,0.3074102,-0.34008962,-0.01830007,0.17294559,-0.29387322,0.39053348,0.43531215,-0.50862145,-0.00021384557,0.5031102,0.3576829,-0.10315771,-0.2873769,0.3510642,-0.1336216,-0.51838356,-0.049006727,0.21390297,0.10577204,0.5110592,-0.2612847,0.14922021,0.9501125,-0.13907222,0.042871952,0.030096408,-0.08819164,0.001647532,-0.22955424,0.03947406,0.04964378,-0.41264036,0.009911886,-0.23248713,0.70570433,-0.124049865,-0.8227518,0.26532713,-0.25151762,0.09224413,-0.11445982,0.7770021,0.8657124,0.48407573,0.14172636,1.0142857,-0.4507136,0.011004941,-0.02147088,-0.27193478,0.18936706,-0.31189153,0.15562251,-0.53637683,0.15915601,0.033807453,-0.08704905,-0.087087184,0.52377164,-0.44807854,-0.06660952,0.09560533,0.69385445,-0.36985224,-0.081272475,0.8869465,1.0467454,0.92434627,0.18070559,0.98814785,0.33985174,-0.081563,-0.029045796,-0.23565468,-0.36061546,0.13024937,0.41872284,0.6799294,0.32299826,0.00398312,0.10682622,0.52270484,-0.15324678,-0.097182594,-0.07527276,0.49267244,0.105380274,-0.19805814,-0.3721572,-0.13526647,0.34896797,0.081834085,-0.011946333,0.20965144,-0.12497715,0.58032995,0.046444193,1.0396222,-0.08563482,0.028965004,-0.029633407,0.41775644,0.22547366,-0.20861006,0.18359917,0.30960616,0.14848259,-0.020685066,-0.31482193,-0.043042026,-0.17384084,-0.57952225,-0.21748003,-0.43135512,-0.14506228,-0.23065631,-0.5145521,-0.30803725,0.06980114,-0.33253917,0.34835613,-2.6163538,-0.14616285,-0.31917545,0.2551576,-0.16023134,-0.30073547,-0.0547181,-0.32324252,0.265212,0.53221005,0.19879174,-0.5358828,0.42254302,0.42249578,-0.3536251,-0.11627956,-0.6249531,0.036737658,-0.19057992,0.5823335,0.020898392,-0.26643416,-0.28505573,0.2545582,0.7784961,0.082823925,0.13836078,0.1999341,0.42158312,-0.17884605,0.43068016,0.3062678,0.5310557,-0.07610122,-0.19932428,0.25990337,-0.54770285,0.2036417,0.15903144,0.23740667,0.5434534,-0.25886124,-0.80597293,-0.6379057,-0.24025042,1.2399695,-0.33397147,-0.60526574,0.41199186,0.0033650736,-0.22597663,0.15489633,0.45520878,-0.0559214,0.26189873,-0.6433791,0.0625219,-0.101327136,0.14884223,-0.16093054,0.03771458,-0.35075542,0.8266652,-0.17189468,0.5283663,0.21552172,0.25524816,-0.3973266,-0.39117908,-0.03570768,0.9960617,0.4923585,-0.038607527,0.010000661,-0.36430404,-0.06742151,-0.377831,0.24092102,0.5311903,0.63210195,0.10349788,0.117117316,0.43094525,-0.34976822,0.053193223,-0.09550622,-0.23179549,-0.06440564,0.24772255,0.49318582,0.46384463,0.0057844897,0.4491561,-0.07744698,0.28561988,-0.13671932,-0.61308473,0.34093413,0.7187309,-0.12554666,-0.33441156,0.5326583,0.42877325,-0.39164612,0.38297474,-0.53544223,-0.2805161,0.59465104,-0.024169782,-0.50326955,-0.05231948,-0.54621035,0.1501054,-0.9065393,0.3576623,0.008505607,-0.7318884,-0.60827154,-0.26447934,-3.6557648,0.0042307614,-0.203335,-0.061694372,-0.20265464,-0.33637774,0.42783433,-0.5717858,-0.53427875,-0.024519157,0.015307239,0.44785497,-0.008672926,0.055893794,-0.29866266,-0.16914211,-0.18138024,0.42065084,-0.09288413,0.28311664,-0.035729457,-0.23835881,0.23443724,-0.39188388,-0.60479325,-0.13298078,-0.7087609,-0.6987389,-0.22645052,-0.4280306,-0.26400116,0.8114517,-0.2810863,-0.06429257,-0.3663797,0.03685314,-0.10443991,0.18794788,0.26635718,0.25617695,0.13888513,-0.04041406,-0.16001266,-0.4111746,0.123888575,-0.11158633,0.33239728,0.46791974,-0.2537554,0.27769554,0.6221929,0.57060444,-0.1114785,0.72368395,0.043246053,-0.24006936,0.31810838,-0.17614494,-0.2549251,-0.9378487,-0.5304355,-0.044132028,-0.4133364,-0.26884282,-0.019708999,-0.3252761,-0.7243467,0.53925127,0.12742145,0.2604564,-0.2836989,0.2984767,0.35437763,-0.08291393,-0.085580096,-0.07549377,-0.2988538,-0.56168216,-0.4125387,-0.7697381,-0.7058314,0.13358083,1.1993835,-0.11297125,-0.2542866,0.14168753,-0.22849773,0.0609811,0.09030754,0.20803656,-0.07055274,0.20222838,-0.020573227,-0.80884856,0.4285675,-0.1869952,0.15112057,-0.5324621,0.10937419,0.5174893,-0.5726724,0.52521724,0.39091483,0.37677708,-0.010665706,-0.6452283,-0.2779685,0.08255081,-0.2542702,0.7046677,0.22154528,-0.6561582,0.548758,0.24628364,-0.15655854,-0.4721011,0.38050044,-0.16699073,0.010790697,0.08768614,0.4488898,0.09893182,-0.16375871,-0.2602853,0.23077658,-0.6874902,0.29297146,0.40607494,0.07155673,0.58824176,-0.04075802,-0.428844,-0.4827741,-0.22451633,-0.4936901,-0.22202441,-0.12755989,-0.21936753,0.011237814,0.26822436,-0.10378289,0.5062012,-0.22861893,0.15184374,-0.14023033,-0.22248815,0.4508561,0.6476728,0.38706318,-0.4536084,0.6171927,0.2045383,0.069433816,-0.33479887,0.05933113,0.47794956,0.3029272,0.3728652,-0.04437103,-0.012385893,0.14469393,0.6993711,0.1718801,0.50607324,0.092135735,-0.30546817,0.280742,0.029445698,0.21709763,-0.075369,-0.40346375,0.04320952,-0.07122061,0.15175001,0.32805336,0.12375314,0.4529499,0.04455786,-0.049058355,0.19897255,0.07923562,-0.08167546,-1.0960622,0.23632114,0.42243257,0.6328765,0.4536108,0.011854249,-0.095229074,0.6458395,-0.3213357,-0.012727507,0.2951911,0.04279786,-0.23525839,0.5671622,-0.67018324,0.3141064,-0.21484843,0.008664075,-0.01882404,0.21404448,0.34488487,0.82464314,-0.1136591,0.025876194,-0.069897525,-0.39960945,0.23627977,-0.22518164,0.15348862,-0.27662787,-0.4106323,0.4071914,0.3115521,0.37684673,-0.23540117,-0.12783183,0.20375344,-0.17926897,0.17841448,-0.1733902,-0.16131729,-0.14685781,-0.3721415,-0.38497165,0.53441197,0.033020787,0.109948955,0.10115156,-0.38432404,0.2936734,0.012923128,-0.17166023,0.025710799,-0.38292426,0.14747518,-0.27133605,-0.61219275,0.37577575,-0.40039566,0.1164531,0.22592543,-0.018486502,-0.29978856,-0.08643694,0.22464786,0.69500506,0.021354247,-0.25798884,-0.25219283,-0.18285333,0.21038131,-0.41062313,0.015493075,-0.218188,0.3033206,-0.5664767,0.39699242,-0.39528382,-0.44800264,-0.0072102766,-0.26108572,-0.029799158,0.24839993,-0.36296698,-0.1253315,0.2451051,0.2245222,-0.18828864,-0.087755635,-0.38087958,0.38935086,-0.21620117,0.011342022,0.074053034,-0.14061484,0.031565916,0.47923133,0.023518134,0.09928955,0.20943291,-0.21128944,-0.50517017,0.0032942852,-0.07888683,0.42998883,0.044564597,-0.01494506,-0.12707566,-0.32154274,-0.4008213,0.22281784,-0.08164136,0.24586128,0.14698394,-0.5783966,0.9462674,0.09828379,1.2838274,-0.017935833,-0.49567014,0.0346806,0.56045943,0.096081115,0.26283208,-0.13359462,0.9379114,0.6808201,-0.27916196,-0.020026127,-0.64912224,-0.17179747,0.34065145,-0.34974608,-0.22306643,-0.1817498,-0.7797735,-0.23464803,0.11458915,0.22234073,0.021148456,-0.056920603,0.0055683134,0.09153171,0.1576931,0.39803684,-0.56940514,0.058823235,0.33088204,0.16635567,-0.038078804,0.11037924,-0.397844,0.40941617,-0.7764844,0.30946797,-0.3024572,0.16291536,-0.08399442,-0.21881549,0.30127624,-0.024011532,0.3378027,-0.22232369,-0.4434493,-0.2130064,0.6582862,0.20058504,0.30660802,0.7161846,-0.3478241,0.014593633,0.058280326,0.5474024,1.504583,0.08388853,0.09936838,0.13709322,-0.36106578,-0.6655074,0.2124055,-0.3733775,0.034640465,-0.098616436,-0.54820645,-0.25920194,0.3337444,0.29842046,-0.045849785,0.13907671,-0.37084305,-0.22060725,0.32392475,-0.37267387,-0.13422565,-0.22944044,0.2886752,0.56608796,-0.39307663,-0.2261684,-0.09877264,0.4890838,-0.3637196,-0.6646551,0.066764735,-0.106784925,0.5630525,0.053142134,-0.49939862,-0.07075324,0.23094505,-0.35744056,0.21609946,0.4291816,-0.28641197,0.1549553,-0.33589298,0.081567176,0.83239996,0.2024588,0.26156673,-0.7969281,-0.55648816,-0.9588612,-0.41025537,0.044505335,0.22099079,-0.13874534,-0.58663946,-0.17743091,-0.29949224,0.14043556,0.25126943,-0.6423988,0.42381725,0.030921,0.5478589,-0.12010103,-0.8214352,0.063290246,0.23797123,0.026705258,-0.363597,0.5920423,-0.19166085,0.7702138,0.1942907,0.10935552,-0.06761069,-0.5962745,0.50509155,-0.26001012,-0.14831024,-0.63575476,0.010188254 -567,0.3641321,-0.3285671,-0.35682657,-0.21263316,-0.5039266,0.05022504,-0.21996902,0.18514076,0.26444852,-0.36629567,-0.13569121,-0.09672479,-0.008604686,0.21889101,-0.12611692,-0.5200489,-0.04627991,0.1461642,-0.7488537,0.7993514,-0.3393734,0.37211215,0.11768467,0.2611485,0.14068036,0.41942436,0.37991142,-0.10097677,-0.16394208,-0.21952356,-0.27672774,0.0012908935,-0.6496217,0.20861267,-0.3169335,-0.2122912,0.07512303,-0.47120172,-0.28861713,-0.8804579,0.21166022,-1.0203367,0.48197386,-0.1934226,-0.13656689,-0.21963324,0.35533407,0.34371504,-0.322828,0.058267854,0.30499068,-0.34520617,-0.122949675,-0.3445749,-0.02572898,-0.42291513,-0.45129016,-0.22761402,-0.626691,-0.3434494,-0.19386178,0.27435032,-0.30410698,-0.042659897,-0.17313436,0.5237314,-0.37489325,0.11976406,0.24313325,-0.34343496,0.12532593,-0.62180007,-0.04355411,-0.15605496,0.40569314,0.1269729,-0.09002589,0.6041773,0.31160393,0.33645666,0.3107978,-0.4197004,-0.22129837,-0.36225006,0.21389112,0.42544323,0.034250334,-0.3982314,-0.15853831,-0.045161773,0.40464917,0.30201992,0.12425981,-0.30565968,0.0062713763,-0.10413166,-0.15885516,0.7144512,0.5122957,-0.107031696,-0.12537524,0.30673105,0.49659303,0.13953774,-0.44811118,-0.064401165,-0.027559854,-0.48751697,-0.15469994,0.1762635,-0.13208738,0.60697234,-0.19877511,-0.009872913,0.8507101,-0.14994155,0.036003835,-0.004506453,0.090918384,-0.07631996,-0.291083,-0.20668949,0.31135547,-0.60938513,-0.03079561,-0.41854763,0.6501118,0.21346189,-0.6494017,0.3872102,-0.47537115,0.18890275,0.013193854,0.577453,0.62254936,0.47652712,0.30449554,0.9363898,-0.24153806,0.18250212,0.1566568,-0.38840657,-0.03957881,-0.4954738,0.26809624,-0.48336825,0.23397227,-0.16260144,0.14380446,-0.13474597,0.22964549,-0.48244056,-0.21609767,0.22295992,0.9772962,-0.1919055,0.0041131377,0.64507604,1.0511853,1.0466714,-0.038626824,1.2999233,0.17570136,-0.3440141,-0.089428745,-0.16935296,-0.7080832,0.13977721,0.32438743,0.25779477,0.22792374,-0.036752183,0.02129347,0.20566836,-0.61507,0.062568694,0.042220403,0.3746187,0.26505348,-0.03684734,-0.36996228,-0.08680533,-0.10754511,-0.035973463,0.23144293,0.18715003,-0.21846946,0.36841002,0.04363124,1.2290133,-0.014793754,0.041388948,0.08726541,0.6471624,0.29543063,0.08855548,0.1532031,0.48011068,0.26714382,-0.031894207,-0.5222762,0.22694871,-0.53883725,-0.30670747,-0.19927764,-0.4251871,-0.12112724,0.2075066,-0.29730108,-0.36888617,-0.002911369,-0.22615772,0.32663617,-2.6676803,-0.14813347,-0.26315132,0.36988193,-0.29601014,-0.04066263,-0.03505075,-0.6621048,0.2418177,0.19527674,0.52976125,-0.7751942,0.3319262,0.66953063,-0.5854046,-0.18231644,-0.64647686,-0.11365585,-0.05224856,0.69378203,0.08941492,-0.048905145,-0.042408943,0.10947279,0.7128298,0.26133016,0.20471615,0.5783303,0.38802597,0.03166808,0.5696246,0.07106163,0.52944064,-0.28222275,-0.04509231,0.36696878,-0.39727613,0.25862065,-0.18762103,-0.025692936,0.7306542,-0.38045043,-0.5335823,-0.6413263,-0.17223097,0.9341436,-0.35637024,-0.7125582,0.19681492,-0.1074732,-0.045744386,0.04648535,0.5575601,-0.11538657,0.21427733,-0.5537389,0.012985389,-0.11662857,0.23415309,0.07248449,-0.11941208,-0.27558726,0.90596163,0.09632568,0.5719964,0.17239004,0.23731305,-0.28984383,-0.36236274,0.091282286,0.80400026,0.532253,0.053832103,-0.1314494,-0.060227867,-0.1603299,-0.6037113,-0.07855738,0.7606438,0.6574279,-0.19284527,0.19938287,0.46425906,-0.11425508,0.10297977,-0.0802101,-0.3493698,-0.13990904,0.078597315,0.44776458,0.7679093,-0.14643103,0.37535134,-0.12077667,0.26754874,-0.0011869312,-0.6499405,0.6591117,0.7614895,-0.24260622,0.052153196,0.41364032,0.47709498,-0.63690734,0.5333834,-0.68900084,-0.30243582,0.75456804,-0.14237432,-0.59990335,-0.0022268295,-0.23628874,0.20958205,-0.58349407,0.341005,-0.2811488,-0.3756922,-0.38416356,-0.3397959,-1.9740218,0.03674039,-0.20477623,-0.04734815,-0.4396884,-0.020685546,0.11182441,-0.52566606,-0.51191825,0.18888174,0.13240515,0.50352967,-0.115604326,0.272895,-0.34336546,-0.09339151,-0.22667769,0.37346885,-0.04863662,0.31177744,-0.2820482,-0.40082836,0.0029091756,0.006413386,-0.52855927,0.17256495,-0.5658705,-0.3824298,-0.19083725,-0.5747724,-0.3083354,0.7040043,-0.26144922,0.02001127,-0.16400975,0.09503756,-0.19429448,0.053570922,0.19160758,0.31777972,0.15601581,-0.0641595,0.19743271,-0.303302,0.6114956,0.0044459878,0.48656806,0.15508038,0.034557827,0.1500268,0.35429573,0.62498194,-0.20000006,1.0000417,0.2172888,-0.14128007,0.38200328,-0.18481693,-0.38311478,-0.6517994,-0.30580223,0.04467637,-0.37471676,-0.4332328,0.21283515,-0.33226985,-0.8099347,0.54243886,0.09684706,0.46002865,0.05551302,0.12002659,0.3742269,-0.25325832,0.04144834,-0.014346933,-0.09018274,-0.70005155,-0.31235087,-0.7861122,-0.44724306,0.07536242,0.65593916,-0.34037545,-0.27736828,0.011013743,-0.39981797,0.025877276,0.20241846,0.09239651,0.0946454,0.5318432,0.1325818,-0.74803466,0.42044842,0.02710503,-0.020003073,-0.44123694,0.30898598,0.5802061,-0.7776014,0.5783506,0.33160874,-0.038559604,-0.38255522,-0.46196187,-0.31160408,-0.18176833,-0.16323169,0.4674209,0.04368053,-0.7625694,0.41098925,0.0017051081,-0.61776066,-0.6806218,0.33433536,-0.13004467,-0.22074638,-0.09519466,0.38357636,0.172194,-0.2009775,-0.17208077,0.13924882,-0.5781222,0.29805005,0.18725868,-0.06119453,0.47908038,0.034669578,-0.43830553,-0.771079,0.1520669,-0.5614123,-0.29389983,0.3786644,-0.12740763,-0.2676845,0.27597985,0.21984059,0.3381454,-0.1243494,0.21209428,0.044690423,-0.37517598,0.46842286,0.37180784,0.35760215,-0.49435076,0.70479834,0.13314925,-0.20314242,0.13508174,0.07974544,0.27709243,0.16146736,0.5181093,0.040147346,0.02894694,0.2653887,0.72946984,0.28287944,0.51233375,0.15317671,-0.13257648,0.500842,-0.102383375,0.24087909,-0.060525376,-0.6623304,-0.028768318,-0.07094992,0.051225565,0.46735352,0.25855598,0.4986534,0.16856454,-0.059423678,-0.0004626145,0.19051288,-0.23637499,-1.3739879,0.2284677,0.32069397,0.9973787,0.33196065,-0.049310006,-0.17287436,0.8621825,-0.22764848,0.16295208,0.6041407,0.004271587,-0.4403295,0.69718134,-0.49203044,0.43093884,-0.15384261,-0.016192315,0.14942776,0.31786874,0.28858602,0.6303491,-0.32771423,-0.019255666,-0.04481964,-0.3412935,0.050742574,-0.27499375,0.09402681,-0.2731863,-0.49049565,0.47584993,0.40274462,0.33976144,-0.27611035,-0.008416953,0.07019319,-0.18236771,0.33157927,-0.06355398,-0.078546844,0.068328135,-0.3706499,-0.1039175,0.56332743,-0.33152974,0.024584595,-0.1677683,-0.11457889,0.039635357,-0.16983004,-0.031425767,-0.029094284,-0.81819916,0.18888727,0.027628891,-0.608297,0.5614644,-0.10793498,0.017259272,0.17907038,-0.07306447,-0.12158,0.27252772,0.17530109,0.6321194,-0.12959339,-0.27945554,-0.4240147,-0.0094324825,0.13065542,-0.23581006,0.47810397,-0.24746062,0.0055268924,-0.52827483,0.74424005,-0.28806433,-0.34656104,0.068133384,-0.3933448,-0.1415426,0.56365114,-0.0218809,-0.15521407,0.10802335,-0.030878386,-0.26023924,-0.087768316,-0.2672923,0.22262529,0.25226477,0.004317244,-0.26674047,-0.21488495,-0.07943072,0.4231449,-0.16733544,0.28155598,0.0683637,-0.14984967,-0.42000538,0.070972696,0.22804554,0.54492706,0.12941407,0.13875593,-0.14168479,-0.302069,-0.414793,0.31620863,-0.12763375,0.21572362,0.12940264,-0.37185585,0.94383174,0.0021973252,1.3164895,0.020028802,-0.46469143,0.10251974,0.6622167,-0.050942913,0.09733684,-0.39706612,0.9020149,0.51260227,-0.030256204,0.028058134,-0.63954365,0.1721451,0.3558018,-0.2669862,-0.050660912,0.041408118,-0.52038336,-0.42948034,0.18728583,0.1556042,0.031761114,-0.09213452,-0.1371996,0.1786526,0.23627666,0.39874384,-0.66385466,-0.24208961,0.2065316,-0.0010568897,-0.01742882,0.2126641,-0.34200695,0.37667438,-0.68686223,0.19005574,-0.3452926,0.090514965,-0.3473204,-0.3167935,0.10449055,-0.038559176,0.41843495,-0.45838922,-0.5493399,-0.17848697,0.49592808,0.020135792,0.23118702,0.61227334,-0.25584498,0.094325766,0.12445645,0.5194317,1.2596889,-0.35903865,-0.0075487616,0.21676204,-0.6154334,-0.73728526,0.43793997,-0.26675007,-0.030551014,-0.034832932,-0.46771476,-0.5590524,0.13472089,0.035796497,0.0061530173,0.08754317,-0.7119642,-0.29482454,0.2331019,-0.40177876,-0.20604853,-0.28260693,0.3319538,0.6489395,-0.14532205,-0.40472013,0.007869756,0.2993811,-0.29238066,-0.59241366,-0.10279522,-0.2282471,0.3379036,0.09504031,-0.17836891,-0.07436594,0.23019193,-0.5920989,0.19385347,0.18102527,-0.5105027,0.059882306,-0.10584095,0.006713335,0.7910615,-0.108235255,-0.08666917,-0.589751,-0.52667385,-0.80214906,-0.42225644,0.14461002,0.10310993,0.05074548,-0.5001203,-0.17029883,-0.24376345,-0.071851835,-0.017451946,-0.70412236,0.35420173,0.12141626,0.4917303,-0.34697464,-1.017238,-0.0041816873,0.12867244,0.06958206,-0.63441736,0.4692049,-0.090555295,0.85463446,0.1541002,-0.23027416,0.0011676193,-0.42285055,0.115395114,-0.32610196,-0.35037878,-0.51081157,0.19651002 -568,0.45782,-0.2929919,-0.49779695,-0.19136761,-0.106423296,-0.075431466,-0.15989417,0.5724963,0.0738707,-0.46446642,-0.18997972,-0.10718528,0.01740393,0.23892786,-0.22894455,-0.52256453,-0.03730619,0.016564313,-0.51423573,0.5816759,-0.29453757,0.14116885,-0.15193139,0.41737068,0.27420032,0.34946206,0.140243,-0.08216127,0.11068858,-0.03734906,-0.16127883,0.37724304,-0.312792,0.24504617,-0.0017414895,-0.2641241,0.06780032,-0.27047107,-0.4243852,-0.71562743,0.4893548,-0.72438514,0.4678774,0.117482185,-0.22039925,0.38022995,0.10045266,0.28239518,-0.44301033,-0.10730035,0.22398189,0.060480356,0.11493505,-0.31222513,0.06602402,-0.4566832,-0.43992835,-0.10506554,-0.3480953,-0.32521838,-0.19547917,0.1051647,-0.31009784,-0.09616581,0.060092703,0.64048606,-0.44624525,0.012156706,0.17096457,-0.16656828,0.37856916,-0.79758555,-0.22658303,-0.10926597,0.32426664,-0.12410471,-0.13202511,0.22133805,0.08801731,0.19669169,-0.07399336,-0.04162178,-0.27454332,-0.14417106,-0.12771633,0.41273886,-0.10433451,-0.48907217,0.064746246,0.05029981,0.012295216,0.15045339,0.17010887,-0.18392251,-0.1972529,0.015890956,-0.19073476,0.34745884,0.39663422,-0.16660835,-0.17828736,0.34771654,0.5067402,0.18162826,-0.09112529,-0.06335293,-0.039144613,-0.41697842,-0.110524856,-0.1511236,-0.13715222,0.43977553,-0.21625572,0.44702926,0.67059255,0.003675626,-0.0096324105,0.02609523,0.12976156,-0.08051152,-0.3042587,-0.40300354,0.21051297,-0.39236242,0.19479102,-0.02715766,0.65790373,0.13200209,-0.6438472,0.33293822,-0.45910162,0.025519352,-0.08424877,0.39166382,0.59955627,0.37835073,0.28886607,0.6195154,-0.4655793,-0.020532373,-0.015019756,-0.2930446,0.08236976,-0.013316031,-0.12547351,-0.547406,-0.07774234,0.08823829,-0.02653839,0.18624075,0.21894473,-0.538535,-0.027979195,0.19605635,0.84913707,-0.33298174,0.052246753,0.5909721,0.98900676,0.88468575,-0.009648387,0.78578514,0.066342995,-0.26224157,0.2621486,-0.22079442,-0.6892162,0.3070541,0.49759272,0.10325206,0.2252558,0.07190744,-0.03518727,0.34548032,-0.23742826,0.047085006,-0.20423006,0.20864756,0.11629189,-0.14001574,-0.45924562,-0.23204406,-0.09616904,-0.0038371498,0.014600368,0.18341532,-0.10951665,0.3590126,-0.05575989,1.4549222,0.003002538,0.13915864,0.19920865,0.52591765,0.262066,-0.094694614,-0.14701833,0.43455443,0.41845146,0.27910855,-0.6002189,0.26311633,-0.23807819,-0.4806235,-0.15336129,-0.39415646,-0.011709535,0.08328581,-0.48455077,-0.17597204,-0.13260683,-0.19633248,0.21316722,-3.1167738,-0.1455732,-0.03414057,0.28586861,-0.21577582,-0.20138825,-0.030087702,-0.37904942,0.385886,0.46613052,0.53624636,-0.50770366,0.26336333,0.42827803,-0.5184808,-0.06618668,-0.44079894,0.038040757,-0.12388113,0.39329153,-0.10489874,-0.035960343,0.028428884,0.10584294,0.4185084,-0.026734918,0.07818397,0.19111522,0.34160465,0.053619362,0.43557665,-0.091448836,0.37708375,-0.3590786,-0.1410452,0.2210424,-0.2854126,0.115550436,-0.2125519,0.20105784,0.5329818,-0.50856537,-0.85428625,-0.552206,0.08963346,1.1928048,-0.1087383,-0.2319479,0.31397808,-0.4483454,-0.24250294,-0.09567031,0.41043955,-0.24540776,-0.13181137,-0.7444974,0.053522225,-0.0949266,0.13802348,0.092379555,-0.26427215,-0.49459055,0.74541056,0.12158573,0.64490676,0.30879703,0.10470582,-0.37337396,-0.41369918,-0.0047310498,0.56488544,0.39567852,0.05654337,-0.024008252,-0.010167471,-0.25915027,0.08432135,0.24330434,0.47586167,0.6336061,0.018179419,0.20429558,0.20932175,-0.058375716,0.10065884,-0.10184678,-0.20373672,-0.16099586,0.058763806,0.4624973,0.47667524,-0.1417009,0.28397906,-0.0029593003,0.39812925,-0.16012008,-0.4115473,0.5564676,1.0716325,-0.1347384,-0.41253915,0.5168611,0.559363,-0.12931594,0.31096599,-0.50718063,-0.20371725,0.5114155,-0.29781386,-0.42650288,0.1338109,-0.30867213,0.087518744,-0.8656254,0.212051,-0.37343854,-0.5411516,-0.65106,-0.21634649,-3.1814969,0.12481928,-0.4254169,-0.2538486,-0.21641201,-0.19739304,0.15932934,-0.8087155,-0.4969786,0.25713018,0.062964104,0.78260696,0.050552666,-0.024961503,-0.14752041,-0.30507848,-0.15273806,0.09439158,0.06874036,0.22247447,0.119930275,-0.43084833,0.027072264,0.080517575,-0.4078667,0.048801783,-0.44583958,-0.34752405,-0.21345708,-0.6285673,-0.2778156,0.6000661,-0.11197583,0.085865244,-0.12473877,-0.06471275,-0.08661735,0.192364,0.022441698,0.20181645,-0.0040609995,0.021181574,0.04740604,-0.39819214,0.11598703,0.089511245,0.2881436,0.16058734,-0.11456616,0.13971594,0.44206637,0.49375856,-0.12497024,0.691727,0.53378963,-0.061223105,0.2757664,-0.2562993,-0.34811813,-0.5318119,-0.36827442,0.08653663,-0.23359783,-0.46642753,-0.03259047,-0.4823951,-0.68776405,0.59524405,-0.12316816,0.11470549,0.10554267,0.33235466,0.58183295,-0.12870818,-0.0021426608,0.16268624,-0.13461484,-0.57431906,-0.009487687,-0.5443207,-0.4457369,0.03167455,0.879701,-0.37259516,0.03155125,0.026233952,-0.20074752,0.10250039,0.066344135,-0.07370697,0.37421668,0.25897333,-0.13544509,-0.591727,0.576177,-0.2695756,-0.20431897,-0.3922593,0.17414504,0.4375567,-0.67644256,0.42447308,0.23952998,-0.11463317,-0.33887297,-0.3826302,-0.16763169,-0.010626362,-0.16235925,0.38273662,0.20811908,-0.6705109,0.38342035,0.33190987,-0.20767792,-0.7313489,0.48671392,-0.07330174,-0.5147499,-0.027956797,0.2592635,0.13334152,0.055180762,-0.21504082,0.20164457,-0.2644971,0.1549854,0.02901125,-0.11964119,0.3885863,-0.19277154,0.09481887,-0.6434737,-0.051186465,-0.46790436,-0.18049416,0.35238478,0.122093216,0.113656126,0.11663799,-0.09267994,0.39766657,-0.2254431,0.17804617,-0.16610146,-0.2678178,0.2714527,0.36784616,0.34344733,-0.43883032,0.5676235,-0.029334761,0.034759674,-0.08023913,0.15386018,0.37651983,0.06509987,0.483455,-0.11920757,-0.24022664,0.3658217,0.7094659,0.21160272,0.4703361,0.06590039,0.01303977,0.11171362,0.03814211,0.141061,0.0972935,-0.4725249,0.06344233,-0.2420514,0.12774307,0.48872724,0.0671506,0.2405792,-0.082096085,-0.33375803,0.02087196,0.2881184,0.13561973,-0.8955604,0.54919696,0.21234849,0.7355264,0.4178545,0.058071163,-0.15742978,0.79353017,0.03832043,0.12451315,0.25144365,0.012803669,-0.5376767,0.55533457,-0.6791322,0.53314126,0.04824491,-0.1933472,-0.10183621,-0.061218612,0.3944925,0.6335282,-0.17390516,0.04390222,0.12444584,-0.34237188,0.3159429,-0.42303556,-0.00021283902,-0.4424299,-0.25932777,0.41872352,0.5546544,0.22735573,-0.044823818,-0.06518758,0.04678219,-0.06264968,0.17784408,0.025384422,0.06131712,-0.03401138,-0.6738656,-0.2526296,0.35783356,0.19326305,0.29545486,-0.07641484,-0.113202766,0.32019046,-0.041985948,-0.0037852,-0.051265035,-0.5748966,0.20333044,-0.14020668,-0.35213518,0.56068814,-0.14457823,0.3630236,0.20320176,0.090348,-0.119502746,0.26709288,-0.08365459,0.7090674,-0.099737115,-0.09163766,-0.4006974,0.19983704,0.08373484,-0.17211781,-0.02340485,-0.47440678,-0.0026073272,-0.5378859,0.44868726,0.0924365,-0.16697748,-0.0041736807,-0.21556006,0.05771682,0.559801,-0.05129274,-0.051662996,-0.23321694,-0.2029267,-0.21442273,-0.34303203,-0.19735578,0.30268925,0.13729778,0.3540482,-0.20732005,-0.063843735,-0.0857227,0.58483195,0.11321778,0.48608214,0.1785936,0.05344379,-0.11795396,-0.23738204,0.1522923,0.42789188,0.019572694,-0.12698159,-0.22163679,-0.58729434,-0.3068397,-0.027745353,-0.062266205,0.4680074,0.15280363,-0.081380166,0.663565,-0.11534107,0.9862051,-0.022198327,-0.35731122,0.07355007,0.5240288,-0.0764677,-0.14894739,-0.06704518,0.9111525,0.5760931,-0.055458207,-0.11645913,-0.2144716,-0.05184821,0.16260375,-0.25479373,-0.11585469,-0.11184227,-0.4435179,-0.3199155,0.14004669,0.23133649,0.19330564,-0.09204575,-0.018824257,0.1091255,-0.053509746,0.17322849,-0.3472956,-0.17497307,0.35166058,0.059127733,-0.02088487,-0.0025962775,-0.50642693,0.54212034,-0.4853953,0.1688275,-0.29963094,0.21483533,-0.2699798,-0.29900593,0.19370945,-0.011488144,0.3306207,-0.3710418,-0.38586813,-0.22657882,0.40857804,0.27997488,0.095605,0.50713736,-0.28058985,0.030795995,0.057707712,0.5558361,0.6499299,-0.21864568,-0.093547136,0.20455208,-0.43526506,-0.6245914,0.2345692,-0.20749713,0.15690793,-0.01665804,-0.07343665,-0.488972,0.2430483,0.32690188,0.044518325,-0.09465778,-0.5991271,-0.2665962,0.23682928,-0.36284435,-0.15381558,-0.36500898,0.120060004,0.51546776,-0.33170465,-0.29499093,-0.019942282,0.1361939,-0.0770558,-0.52071327,-0.10040967,-0.37512133,0.41809064,0.13996531,-0.1770905,-0.20611653,0.042079903,-0.3636133,0.36819443,0.012202758,-0.3647352,0.008608231,-0.35330504,-0.11998881,0.84460247,-0.2418762,0.061283514,-0.45089835,-0.32590806,-0.78619605,-0.29002926,0.7402909,0.02187988,0.17166114,-0.7018022,0.17432836,-0.11967835,0.01116798,-0.22846673,-0.13319804,0.42313734,0.04127141,0.39924514,-0.07767054,-0.8013356,0.20832671,0.03271289,-0.26261842,-0.5498199,0.4126062,-0.016868714,0.6599379,0.03867433,0.12979466,0.27881548,-0.3181504,-0.112140805,-0.261529,-0.25975984,-0.5361119,-0.02751551 -569,0.45672718,-0.04364032,-0.5025879,-0.16011408,-0.32982144,0.32888645,-0.1123761,0.28984,0.12620597,-0.20689033,-0.16687885,-0.14624165,-0.025112377,0.26035628,-0.16510245,-0.76520723,-0.083382174,0.12177559,-0.65987456,0.31447646,-0.51155955,0.35421306,-0.079267785,0.41231936,0.021696739,0.3658381,0.06372871,-0.10523259,-0.1815735,0.096555874,-0.036781423,0.1696392,-0.5883019,0.14828703,-0.09387908,-0.18428043,-0.084717765,-0.430665,-0.3471198,-0.5761569,0.39007336,-0.62667,0.5254008,-0.15504818,-0.38252494,0.14268818,-0.06904666,0.1857928,-0.3073498,0.09012724,0.18705438,-0.09739722,0.009721197,-0.11566606,-0.22061586,-0.39691043,-0.502585,0.06700802,-0.5082178,-0.114132926,-0.18051888,0.1543434,-0.2921369,-0.030495722,-0.22423226,0.39440286,-0.34483832,0.15881035,0.23499978,-0.16708921,-0.0045097694,-0.44660646,0.00889433,-0.08012851,0.27856797,0.022765273,-0.225185,0.098064646,0.21794237,0.52411723,0.012797156,-0.19419402,-0.21415053,0.01347346,0.06661831,0.38973093,-0.10026617,-0.22649693,-0.23885292,-0.017006818,0.11231425,0.16693383,0.017071597,-0.48112884,-0.07910979,0.0682732,-0.20078678,0.20338002,0.41011512,-0.27282634,-0.30058402,0.444427,0.4298218,0.17595886,-0.0020121727,0.036581878,-0.04807176,-0.4433576,-0.3358043,0.10822934,-0.033195537,0.5277779,-0.109321706,0.29410353,0.6755418,-0.052214783,0.10433002,-0.09388834,-0.075447135,0.11458227,-0.20931813,-0.034711093,-0.030273017,-0.42399383,0.0069576157,-0.159374,0.67267525,0.16183269,-0.8497707,0.41877887,-0.54876554,0.098745555,-0.046391718,0.516201,0.84629524,0.39803764,0.028117545,0.67151576,-0.43470728,0.029036833,-0.09924052,-0.45033735,0.1897567,-0.019650593,0.03417453,-0.4877841,0.008190285,0.10675241,-0.08522901,-0.062127754,0.24821246,-0.45121062,-0.0043870807,-0.08102854,0.6466404,-0.4008168,-0.11807402,0.75354224,0.92423064,0.799059,0.11858949,1.4505732,0.39967483,-0.12079908,0.18042357,-0.40188918,-0.58542156,0.20389584,0.26244128,-0.05000116,0.42408037,0.07836704,0.007666204,0.4648401,-0.15391436,0.09984302,-0.052433677,0.23889537,-0.013902202,-0.019348767,-0.2967134,-0.38254964,0.15159944,0.07179157,0.10895759,0.26714385,-0.19159906,0.24719433,0.15055694,1.5851836,0.095961854,0.15351133,0.00095736794,0.31228325,0.20056531,-0.2098841,-0.15437758,0.35951114,0.31473756,-0.09467474,-0.5835365,-0.014592588,-0.238508,-0.44758406,-0.2045149,-0.2927512,-0.185632,-0.1537632,-0.5188752,-0.1947619,-0.0445743,-0.25416896,0.56578267,-2.6217852,-0.1647683,-0.04429737,0.3967031,-0.32026684,-0.44688126,-0.27740508,-0.4260566,0.23006408,0.3557335,0.26034877,-0.62124896,0.46650106,0.25426114,-0.38696328,-0.22802989,-0.57736695,0.06735411,0.15151672,0.29868537,-0.18992296,-0.14379211,-0.23606932,0.1972048,0.43087503,-0.08321451,-0.005584771,0.23885849,0.49601066,0.13383321,0.30310798,0.17319784,0.49438107,-0.07716659,-0.0422713,0.374909,-0.34008506,0.38540402,-0.0131093655,0.13022164,0.20135273,-0.5332228,-0.56955326,-0.598546,-0.40986204,1.1557555,-0.3225443,-0.16951025,0.16233918,-0.20898229,-0.30212566,0.038188346,0.37384507,-0.07930436,-0.15980308,-0.7276956,0.042078808,-0.03834394,0.26026127,-0.11278789,0.21713662,-0.41086483,0.6367868,-0.20210889,0.48272127,0.32498676,0.20016253,0.033909723,-0.452565,0.08396437,0.7721334,0.39947557,0.16712274,-0.09341252,-0.094809026,-0.1740295,-0.079077095,0.06148753,0.56562454,0.66938967,0.13367108,0.06810235,0.24557987,-0.21473853,0.035134062,-0.12789229,-0.26598835,-0.052875817,-0.0020499872,0.5764368,0.5706196,-0.30514863,0.33396032,-0.19564013,0.2199009,-0.24654137,-0.52391064,0.52932787,0.7213555,-0.19631468,-0.101998806,0.42934513,0.37225455,-0.29473716,0.33283758,-0.4425403,-0.16717081,0.6686091,-0.18141907,-0.42860037,0.17016885,-0.22460388,0.017235031,-0.88344806,0.37516925,-0.0038099512,-0.5363281,-0.42586324,-0.1208397,-3.3595364,0.11709617,-0.07470898,-0.116866976,-0.08313277,-0.14573923,0.24398313,-0.5226871,-0.57271457,-0.017611768,-0.059933312,0.46264216,-0.022202257,0.17513406,-0.22101763,-0.19494368,-0.29119056,0.23855007,0.19985689,0.31752223,-0.03965715,-0.24666983,-0.03326606,-0.31991258,-0.37182835,0.12996075,-0.48958617,-0.5574439,-0.07757365,-0.4428553,-0.15438977,0.7094971,-0.36763278,-0.058817834,-0.24566415,-0.035099044,-0.2129445,0.36349717,0.18492585,0.10232033,0.19707859,0.009221256,-0.0731758,-0.38747776,0.29401252,0.13151932,0.27281684,0.50388396,-0.01923503,0.23269622,0.45505884,0.6084975,0.012184069,0.64235497,0.18918438,-0.05287914,0.34824502,-0.291984,-0.17482054,-0.49464872,-0.26386613,-0.17268032,-0.3782936,-0.43954206,-0.24921627,-0.45109016,-0.7683133,0.20838654,0.013125397,0.09191753,-0.04698278,0.23680514,0.47743514,-0.09855213,0.09407033,-0.07235556,-0.18022229,-0.49617037,-0.4721551,-0.5207487,-0.48333073,0.2930755,1.1520513,-0.003285244,-0.054552455,-0.07928035,-0.31012022,0.025036853,-0.004242271,0.1023413,0.1600026,0.3294961,-0.18991905,-0.670434,0.37750483,-0.11020163,-0.26058656,-0.608015,0.07070532,0.65300286,-0.57492477,0.5840586,0.24124244,0.17362686,0.2846805,-0.49031478,-0.1456943,0.105755,-0.23028359,0.497908,0.3007398,-0.5102645,0.42589384,0.18891492,0.0013576783,-0.7118728,0.4936013,0.00031312555,-0.19870779,0.025221135,0.3341896,0.027341716,-0.16415754,-0.05845186,0.19682156,-0.48372754,0.276725,0.35250998,0.056672588,0.42708826,-0.0012441985,-0.16698112,-0.585221,-0.16413507,-0.5029468,-0.34719616,0.111016974,0.09646699,0.2796457,0.058765113,0.13286793,0.49078256,-0.41298702,0.10064784,-0.07335534,-0.16797377,0.24341689,0.4296123,0.26497185,-0.46288747,0.4815396,-0.013697688,0.24957798,-0.007202722,0.13909659,0.42499518,0.1898542,0.26410592,-0.0123760365,-0.14675693,0.08741614,0.61837494,0.1889016,0.3601439,0.110441454,-0.32182124,0.30173138,0.079329535,0.08446252,-0.043902144,-0.21920332,-0.09182887,0.077790335,0.22888471,0.38974068,0.12110992,0.21669886,-0.20576674,-0.213416,0.1995728,0.15118368,-0.11206256,-1.0292234,0.23546809,0.14708176,0.7095043,0.5265782,-0.0316834,0.001514215,0.32973468,-0.36049727,0.2239753,0.39672622,0.005122995,-0.567107,0.4450817,-0.4650726,0.4719776,-0.22889727,-0.13544363,0.1256591,0.07535719,0.2515077,0.9003794,-0.001959037,0.09576678,0.00081380457,-0.22445554,0.00094683375,-0.30009675,0.029911503,-0.6054412,-0.18375055,0.58153653,0.44414166,0.26268914,-0.46973497,-0.07112785,-0.028691888,-0.18290219,0.117164455,-0.00043263845,0.037371743,0.005974807,-0.6121346,-0.5268679,0.5333961,-0.20725018,-0.029107869,0.08258507,-0.3775629,0.21322678,-0.22887543,-0.05932156,0.010266904,-0.6206195,-0.03270732,-0.33685833,-0.47626933,0.32110777,-0.21064848,0.11775773,0.184441,0.11175808,-0.37319157,0.27844584,0.18247545,0.8214995,0.10148608,-0.09145721,-0.39233464,0.2516948,0.35710067,-0.2748912,-0.24205999,-0.22622563,0.2085059,-0.52975583,0.40648648,-0.07284573,-0.16881058,0.029742353,-0.04225286,0.072897896,0.36301324,-0.19805253,-0.13363172,0.1253376,0.0285175,-0.29959524,0.07681881,-0.37056908,0.14169225,0.13253725,-0.0980621,0.1061167,-0.050064117,-0.14343931,0.33502948,0.21433541,0.28523996,0.50718415,-0.08325385,-0.46748596,-0.14043516,0.027675536,0.36228934,0.16101591,-0.023138247,-0.385432,-0.2869436,-0.27470377,0.5158973,-0.1705308,0.10020561,0.09679793,-0.34602717,0.6724419,0.22683012,1.048275,0.06375254,-0.17300658,0.17929034,0.44033188,0.121440485,0.047076866,-0.46919775,0.7967845,0.56421375,-0.10566774,-0.20920461,-0.15674771,-0.2418741,0.18658343,-0.27795056,-0.19141403,-0.17698142,-0.7552952,-0.27270952,0.08736466,0.07763873,0.05173654,0.0342568,-0.054428965,0.045062155,0.11346398,0.42893544,-0.36763465,-0.07157548,0.3139168,0.19482195,0.14603691,0.3257079,-0.37762058,0.46242946,-0.7131714,0.16313522,-0.42055905,0.064166665,-0.017712194,-0.30850774,0.08304863,0.18817735,0.3119029,-0.35423678,-0.3954563,-0.36797705,0.49871972,0.19314663,0.25286645,0.68246037,-0.13827156,-0.043393288,0.12542441,0.5872382,1.1768357,0.1243449,0.0890518,0.5120794,-0.37009364,-0.587641,0.051543932,-0.3433972,0.14300191,-0.15050495,-0.2092708,-0.37982196,0.3259087,0.10585062,-0.049904495,0.033412807,-0.5838927,-0.16395709,0.43308753,-0.2743705,-0.2269324,-0.30486217,0.286423,0.7861786,-0.39415267,-0.17857692,-0.0058079436,0.35041672,-0.26865292,-0.45533246,-0.014708713,-0.33146328,0.32809624,0.11676774,-0.31291655,0.027741294,0.1688604,-0.37080133,0.06002993,0.33380356,-0.3963383,-0.0041552093,-0.2629647,-0.12326129,0.984527,0.08129108,0.042662248,-0.55885375,-0.5120075,-0.94479173,-0.36338723,0.11172578,0.16405565,-0.049024794,-0.61867493,-0.112954035,-0.042548712,0.05004219,0.04383765,-0.4842365,0.41149062,0.20528913,0.32965434,-0.013216078,-0.82642746,-0.14370103,0.19926903,-0.27813452,-0.51948416,0.653718,-0.16040921,0.7336424,0.096752405,-0.01723998,0.0861105,-0.63865733,0.31338745,-0.42235523,0.038124487,-0.6954888,0.21326295 -570,0.5006606,-0.25961414,-0.5240752,-0.056626327,-0.23433152,0.15749949,-0.107389465,0.6796223,0.2761033,-0.32230985,0.077705465,0.024711637,0.09817162,0.31645557,-0.0028074423,-0.44939473,-0.06979203,0.22158486,-0.6071957,0.6022241,-0.40353385,0.18486646,-0.35847643,0.4884574,0.12831527,0.21206091,-0.25012463,0.062248126,-0.27246696,0.03200829,0.006370461,0.44860554,-0.4659213,0.057360865,-0.16926602,-0.22064021,-0.17838502,-0.5247781,-0.4442753,-0.6595623,0.32888243,-0.67794174,0.7379744,0.010212461,-0.28369018,0.34059417,0.024101803,0.37370238,-0.30116877,0.014605761,0.048122283,0.07170975,0.001727581,-0.33934155,-0.37301296,-0.41046843,-0.5867977,0.025302999,-0.48452613,-0.03152045,-0.09183402,0.07221315,-0.25324437,-0.0731518,-0.020882536,0.36442864,-0.3853302,0.275889,0.18899213,0.009985507,0.05062515,-0.41426745,-0.18899727,-0.06760672,0.33191568,-0.14953996,-0.27136087,0.24829264,0.17459822,0.46135673,-0.18061294,-0.08807078,-0.43210283,0.026734918,0.020104464,0.5183916,-0.21904193,-0.57348055,-0.16134477,0.1788752,0.14990336,0.12609433,0.30491808,-0.13267614,-0.15537545,-0.1037017,-0.05747788,0.559192,0.45023003,-0.21258894,-0.40366426,0.34960416,0.5362339,0.21432127,-0.19379999,0.0048309355,-0.02588975,-0.5001625,-0.14212903,0.08007899,-0.045754734,0.3716877,-0.041058324,0.12714086,0.51770806,-0.23018363,-0.11648313,0.09850369,0.016128344,0.082224704,-0.26848486,-0.3185573,0.13317086,-0.32326335,0.11373464,-0.08561468,0.38108188,0.28641257,-0.7807414,0.39748433,-0.605478,0.13223317,-0.07848992,0.2751975,0.71447194,0.54763734,0.08714008,0.47226098,-0.17171358,0.16581678,-0.105687335,-0.2175849,0.11738633,-0.22497813,-0.02960213,-0.5881624,0.13135825,-0.0082943,-0.34094125,0.23864196,0.38407034,-0.47265425,-0.15765801,0.2699614,0.8988931,-0.18254974,-0.18552177,0.83494085,0.9405527,0.7618702,-0.0223927,1.13966,0.11838944,-0.15699619,0.32784075,-0.50359327,-0.759417,0.21817048,0.25201884,-0.36197954,0.43442598,0.08993748,-0.08692812,0.27303174,-0.16524991,0.0029353618,-0.03447945,0.15249167,0.11322458,-0.28985348,-0.30574715,-0.2711893,-0.22658665,-0.031031013,0.21883895,0.3406152,-0.3171756,0.36174324,-0.044257026,1.6852793,0.13892668,0.033017,-0.0025770883,0.5918613,0.26960513,-0.20462093,-0.10021695,0.43492883,0.27669558,0.06229322,-0.47039464,0.16745311,-0.1885887,-0.3535352,-0.18149312,-0.3326316,-0.14778668,-0.045990277,-0.47009456,-0.1369348,-0.19183418,-0.124876045,0.48488668,-2.9932106,-0.21770564,0.11415353,0.4576374,-0.2664091,-0.34840363,-0.29201716,-0.27986696,0.3339721,0.21414056,0.52632403,-0.64827514,0.54784936,0.26283824,-0.6501302,-0.09023798,-0.52433604,-0.20719984,0.048019424,0.29959196,-0.23414065,0.071697995,0.24386056,0.14745475,0.42466772,-0.10601049,0.003981911,0.13409534,0.46044606,-0.026745152,0.32090428,-0.2025437,0.5570109,-0.22982503,-0.25449207,0.23189951,-0.38788784,0.3506969,0.0890974,0.014797565,0.45823115,-0.53358525,-0.9977098,-0.5573134,0.17783774,0.8854498,-0.05269508,-0.19004603,0.15673354,-0.6958836,-0.3959988,-0.13521235,0.39615032,0.04306459,-0.14995058,-0.7254612,-0.10892328,-0.027114134,0.16807798,-0.03330284,0.005041945,-0.40127698,0.5003588,0.06640768,0.53576595,0.17615816,0.20143972,-0.33101988,-0.40625748,0.041447315,0.6758836,0.30348113,0.24097122,-0.17613868,-0.3224393,-0.42562836,0.06644392,0.041639652,0.5472773,0.34725094,-0.12228368,0.121573366,0.23037656,-0.11299963,0.18714698,-0.21469888,-0.13464335,-0.16178958,0.13369684,0.41943353,0.6123227,-0.32495376,0.6197213,0.08275963,0.1879388,-0.106572844,-0.47725347,0.46277714,0.94941366,-0.21262957,-0.36041343,0.46901718,0.3456403,-0.38110998,0.3757365,-0.3953397,-0.12101404,0.3613158,-0.25539103,-0.19125421,0.37225267,-0.26089296,0.12946406,-0.93927777,0.11267917,-0.36253643,-0.40589502,-0.45467994,-0.021824146,-2.881691,0.11747139,-0.13827486,-0.25139967,-0.041377697,-0.17657147,-0.00942719,-0.5855881,-0.6216715,0.20597032,0.1097881,0.63895303,-0.23816517,0.09324622,-0.21373224,-0.47588578,-0.3162769,0.18179348,0.12944838,0.45536867,-0.09721026,-0.40233144,-0.21065302,-0.04917985,-0.32074106,0.11341592,-0.6699475,-0.29016453,-0.00784614,-0.6000897,-0.10036565,0.6691532,-0.105919704,-0.09703148,-0.2743403,0.07802331,0.0013272663,0.36150363,0.034150913,0.083680466,0.17147468,-0.17183848,0.26619974,-0.21967635,0.31599486,0.007199474,0.40324834,0.27102646,-0.115931034,0.2697263,0.5047473,0.6958299,-0.21672513,0.7171003,0.476488,-0.16286659,0.39438412,-0.36606655,-0.18167333,-0.28905922,-0.2225805,-0.04459794,-0.37128833,-0.48038217,-0.16780567,-0.5076272,-0.75458807,0.33025983,-0.09366167,0.023705535,0.027919639,0.3997172,0.56078184,-0.16036221,0.120933644,-0.15975904,-0.096089505,-0.4496151,-0.1973864,-0.3625758,-0.39527225,0.28773022,1.0650331,-0.24241509,0.059833124,0.011020255,-0.24941495,-0.012974804,0.22405796,0.0013275543,0.21671699,0.4558635,-0.22600624,-0.46066505,0.28452492,-0.23359694,-0.27408168,-0.57632995,0.2247288,0.4377044,-0.5344559,0.7446907,0.14432955,-0.01586655,-0.15396217,-0.50087935,-0.07000611,0.10275326,-0.048697527,0.38434836,0.2903757,-0.8325312,0.3441344,0.3700574,-0.3613144,-0.53553325,0.5191575,-0.038724996,-0.29703405,-0.23701124,0.24213105,0.19149654,0.006472103,-0.28358445,0.31035408,-0.44200188,0.20281066,0.14503196,-0.0352662,0.11064932,-0.07934506,-0.0836021,-0.698403,0.11373178,-0.42137825,-0.29710862,0.38723361,0.16011125,0.3905789,0.022041567,0.17584206,0.3335109,-0.3821382,0.09777422,-0.14345774,-0.28504127,0.24308306,0.29839668,0.4841814,-0.41993657,0.45284763,-0.030481331,-0.21672124,0.19312605,0.11402374,0.56348723,0.06502745,0.3065399,0.1933266,-0.21847717,0.19532868,0.74456954,0.11755524,0.2502471,0.04999138,-0.13125639,0.14247578,0.051033672,0.06766767,-0.03178037,-0.40338343,-0.014801939,-0.053909462,0.21975794,0.48925215,0.20586497,0.08564221,-0.11156736,-0.33113077,-0.099793464,0.29460236,0.11602401,-1.2505143,0.15403825,0.27745456,0.9055178,0.28729236,0.2304533,0.028198648,0.60363764,-0.15105598,0.111420855,0.40327775,-0.10117383,-0.5309659,0.42336363,-0.6001348,0.5946718,0.018664801,-0.019376997,0.08499145,-0.06255037,0.5766258,0.78902835,-0.21294431,0.06484076,0.21463113,-0.31612253,-0.034135077,-0.31252104,-0.050138894,-0.61532396,-0.09340311,0.6873812,0.5097269,0.33836433,-0.27588713,0.011802284,0.17632367,-0.05536023,0.044506624,0.028396158,0.22568849,-0.09133125,-0.6307638,-0.0609621,0.48000768,-0.21489027,0.13400745,0.085080214,-0.2015963,0.30259565,-0.13450035,-0.0023644646,-0.09672858,-0.62706757,-0.044764794,-0.27712855,-0.4460399,0.5988179,0.100126125,0.20892903,0.27484226,0.14594612,-0.23770376,0.6165127,-0.08469663,0.88898945,-0.07180524,-0.11570468,-0.3977752,0.33062333,0.116472326,-0.17170094,-0.008474678,-0.1926515,0.07927586,-0.5268002,0.4020127,-0.010655775,-0.33474118,-0.2166804,0.13355793,0.24224092,0.49837196,-0.19657736,-0.08606003,-0.14189714,-0.09766543,-0.4450623,-0.23571996,-0.12645449,0.23915638,0.38606843,-0.08776864,-0.12913801,-0.08735583,0.035305507,0.48553407,0.01000617,0.41024116,0.33162048,0.308051,-0.12800014,-0.18848723,0.2651948,0.48533854,-0.19617991,-0.040594485,-0.39145535,-0.29511163,-0.37435958,0.19790834,-0.14506763,0.20601068,0.08964939,-0.21925129,0.66884106,0.039346743,1.1467788,0.014751214,-0.32731897,0.32768723,0.5085181,0.0054034987,-0.08064154,-0.40227714,0.9443909,0.47154018,0.08359763,-0.08730695,-0.31955096,-0.08188731,0.044021018,-0.3027215,-0.15966898,-0.0016890158,-0.48766613,-0.2368173,0.22589056,0.108159386,0.383557,-0.14610118,0.22707288,0.26102468,0.029199414,-0.03703354,-0.3831485,-0.2384106,0.31446177,0.3457858,0.05467875,0.073525116,-0.5371855,0.23204233,-0.32044092,0.0348113,-0.08135283,0.18131629,-0.074691296,-0.40056127,0.1660385,0.06821055,0.16205388,-0.33554265,-0.31867948,-0.2449232,0.46390757,0.04272323,0.16960287,0.48622614,-0.23362605,0.035530843,0.016385874,0.43245298,0.7750298,-0.072004944,-0.19903533,0.35299334,-0.36198565,-0.71535516,0.37633342,-0.29422575,0.38167953,-0.0073692403,-0.024767602,-0.6930942,0.3670459,0.1249996,0.15696642,-0.14456578,-0.51286757,-0.2172031,0.21933335,-0.3036217,-0.19803722,-0.34388515,0.06950227,0.7523178,-0.1282812,-0.36704937,0.23534168,0.1769794,-0.16810846,-0.41745955,0.013675002,-0.3205599,0.17698327,-0.048205253,-0.25704828,-0.18578409,0.0645942,-0.38622802,0.21242332,0.17765428,-0.3371642,0.18202646,-0.4497424,-0.17664744,0.9224277,-0.41920644,0.25366965,-0.42290586,-0.60232747,-0.77972263,-0.32997528,0.26155016,0.10651714,-0.004260143,-0.8536705,-0.026763098,0.027003828,-0.42732003,-0.065493815,-0.26454836,0.4166674,-0.013134926,0.12547265,-0.27394718,-0.74309707,0.12667139,0.16410327,-0.28424683,-0.70739245,0.45013174,0.029465223,1.0548929,0.124105774,0.20655139,0.4354268,-0.37501425,-0.2899537,-0.20021291,0.012329833,-0.46477515,0.02028904 -571,0.5224451,-0.047031958,-0.44421396,-0.1864995,-0.16978732,0.40513012,-0.25297838,0.26531568,0.028388454,-0.6132866,0.021265788,-0.17909281,0.011620011,0.3868324,-0.23113884,-0.36343488,0.17093176,0.08931694,-0.65100676,0.26999074,-0.5355743,0.32417393,0.15473114,0.3691081,0.0030104062,0.28307056,0.27861586,-0.25274804,-0.309902,-0.1929904,-0.06337869,0.17094643,-0.44290516,0.17167993,-0.08517329,-0.18684532,0.07068012,-0.49767333,-0.4405645,-0.58144164,0.17237854,-0.72366977,0.57776314,0.0011381785,-0.26175755,0.20831044,0.1623822,0.14700694,-0.2599726,0.20010398,0.2922535,-0.2915611,-0.14931077,-0.17291185,-0.25172666,-0.48389062,-0.5866512,-0.009603286,-0.47420415,-0.08415368,-0.30429772,0.21266463,-0.17532791,-0.10599982,0.015752135,0.38904244,-0.34066898,-0.013660725,0.12078652,-0.22658561,0.29765594,-0.40327626,-0.15440693,-0.07937584,0.33685315,-0.21985474,-0.09354218,0.2703946,0.33173898,0.6038457,-0.08439991,-0.15778227,-0.37691438,-0.027528524,0.09325544,0.6284865,-0.19854759,-0.33034265,-0.16150597,-0.18023223,0.25103733,0.1812467,0.043353695,-0.38340035,-0.14805248,-0.07644019,-0.21633889,0.262238,0.53808117,-0.34771279,-0.10380961,0.43853617,0.41887036,0.1029789,-0.034542013,0.054737933,-0.04003373,-0.63325447,-0.07932186,0.15609632,-0.16606222,0.5071785,-0.079555385,0.3083932,0.6646206,0.020251626,0.0641969,0.10865645,-0.038906164,0.060581706,0.050611265,-0.20160584,0.08768323,-0.38266832,0.020544343,-0.19688514,0.7070785,0.20960419,-0.836113,0.4247324,-0.3824136,0.0058583557,0.09118397,0.44062436,0.61594945,0.48082075,0.058703978,0.6740806,-0.62403065,0.047782738,-0.09702415,-0.19157773,0.1856001,-0.07522358,-0.05535758,-0.4339756,-0.06904725,0.12349219,-0.042152245,0.015815457,0.5499211,-0.48589858,-0.05833499,0.14502707,0.785004,-0.3897782,-0.102513045,0.5424384,0.9574438,0.87822837,0.18097457,1.2170523,0.19561863,-0.2469045,-0.0579171,-0.30198467,-0.7117303,0.37289292,0.34289125,-0.071920395,0.2140546,0.08383064,0.15390159,0.31916556,-0.40017202,0.030311614,-0.14804891,0.23391019,0.03296589,-0.10307236,-0.25475287,-0.36587796,0.11168361,-0.11418295,0.2383143,0.17375062,-0.28156045,0.39364627,0.061501287,1.6480045,-0.15638395,0.14553435,0.09268238,0.31750625,0.09758907,-0.061665963,-0.29900995,0.31870854,0.4176019,0.024966013,-0.38163444,0.057814598,-0.05390147,-0.44176954,-0.15007724,-0.28557584,-0.065802984,-0.13835853,-0.35940698,-0.2035223,0.062052887,-0.55754006,0.5370311,-2.7160466,0.003979687,-0.1687679,0.35352185,-0.2366176,-0.3337931,-0.26419055,-0.33217642,0.48763937,0.32474425,0.40330994,-0.52806515,0.24712548,0.5028074,-0.29459903,-0.2074798,-0.6639337,-0.09833144,-0.09973565,0.16436972,0.085565016,-0.22073063,-0.08909533,0.28355885,0.43180412,-0.0923529,0.05092508,0.24839242,0.34672794,0.18785079,0.553189,-0.031971682,0.5758975,-0.35658818,-0.19675128,0.41445905,-0.51204294,0.09471902,-0.0811731,0.18821338,0.30116174,-0.42541257,-0.87991357,-0.6123194,-0.21654627,1.1922917,-0.28781632,-0.3102872,0.26946113,-0.0848192,-0.32745373,0.0856652,0.47516373,-0.20205852,0.035482265,-0.8388599,-0.2289849,0.060812343,0.23787326,-0.05159596,0.14727163,-0.5578096,0.52156025,-0.09943889,0.52909094,0.26105767,0.19477554,-0.29448217,-0.4434986,0.032166917,1.0662419,0.25925806,0.17697135,-0.042115886,-0.20413612,-0.21178809,-0.11900077,0.09465538,0.47165993,0.6867829,0.07044759,0.13137487,0.2051389,-0.09639111,0.1340845,-0.10335101,-0.28746685,-0.07007933,-0.042818505,0.63216007,0.5238801,0.0614851,0.29503757,-0.18528071,0.41366416,-0.2857824,-0.41057727,0.54348207,0.6544597,-0.16819136,-0.22521444,0.55777895,0.40926445,-0.14366011,0.42181173,-0.6580868,-0.52189875,0.44410887,-0.15992025,-0.49776122,0.18964604,-0.3175656,0.22456887,-0.8838994,0.40704647,-0.19227982,-0.49588776,-0.37495145,-0.16125849,-3.2722707,-0.036334895,-0.11598958,-0.25774205,0.03006797,-0.10487337,0.25673607,-0.49146774,-0.53066516,0.010023328,-0.046419796,0.6222628,0.05933215,0.10701488,-0.25900927,-0.22922663,-0.37251198,0.16362496,0.09740921,0.37384102,0.112950474,-0.4253654,0.09406948,-0.37484044,-0.36860752,0.035145402,-0.5853288,-0.3839733,-0.17467766,-0.5087718,-0.38929388,0.67185825,-0.5627609,0.036861587,-0.28453013,-0.0046939086,-0.18148802,0.4743388,0.16107579,0.22101511,0.06394946,-0.1377921,-0.012342525,-0.2993536,0.39625087,0.15634796,0.0742983,0.4735195,-0.12748876,0.034327615,0.46572012,0.65863717,-0.17422631,0.7979795,0.3622036,-0.0005505463,0.2459167,-0.44230923,-0.24474801,-0.33952445,-0.35071835,0.14877467,-0.46182406,-0.33908427,-0.18050562,-0.38796934,-0.7882345,0.41945267,-0.017580334,-0.028620923,-0.094314665,0.06879738,0.25917363,-0.33860463,-0.12391424,-0.07358755,-0.17955235,-0.39328024,-0.23663655,-0.68226403,-0.4910415,0.03727142,1.0441136,-0.027919794,0.07958845,0.14618723,-0.21490759,0.15157877,0.01906387,0.027745305,0.120474555,0.41744772,-0.0040395022,-0.720064,0.44403797,-0.3156032,-0.15939471,-0.5421064,0.11107337,0.6605601,-0.6480845,0.5747563,0.4246529,0.19018348,-0.11767374,-0.57921976,-0.26572883,-0.04276758,-0.16648947,0.42921,0.03138961,-0.75989693,0.45208836,0.38857812,-0.32211092,-0.67728955,0.45445532,0.032440722,-0.18968712,0.19179344,0.42480087,-0.07945347,-0.042904545,-0.12985834,0.1275539,-0.545646,0.5073857,0.38082156,0.14237247,0.5255622,-0.29513696,-0.17724878,-0.6030971,-0.2498091,-0.35199413,-0.30634278,0.21285366,0.04219293,0.086547464,0.05698005,-0.012657539,0.4470596,-0.4281204,0.0846506,-0.06539377,-0.049985472,0.29366982,0.41605076,0.5465117,-0.38607958,0.51361483,0.013523049,0.014592187,-0.19985265,-0.004727801,0.45663765,0.16603893,0.23912263,-0.14974493,-0.23097645,0.35712808,0.76028264,0.19622664,0.27383164,0.13980666,-0.23620072,0.18074672,0.12670039,0.03501611,0.023573522,-0.41986927,-0.04988803,-0.20975567,0.2183244,0.386685,0.063050225,0.35297072,-0.096608,-0.22913978,0.06383018,0.1412859,-0.22556669,-1.2847666,0.38335133,0.097033866,0.73778504,0.35835323,0.115452655,0.0547543,0.68284744,-0.19790499,0.11704424,0.174903,-0.11855011,-0.4618103,0.52170527,-0.591325,0.45808688,-0.05553918,-0.04064334,0.052945904,-0.032376822,0.44124064,0.9416718,0.0045679966,0.19414479,0.030540466,-0.2137554,0.16339915,-0.41942933,0.12587492,-0.49740806,-0.21063732,0.6169039,0.33561373,0.47318015,-0.20665579,-0.013695671,0.043869212,-0.09706295,0.124671966,0.09940703,0.093587995,-0.06882987,-0.7309643,-0.2892603,0.49270904,0.25531587,0.055507954,0.28466704,-0.24917978,0.28637192,-0.30380905,0.02218558,-0.12097571,-0.5557481,-0.119919926,-0.35053444,-0.38292435,0.12589398,-0.16444975,0.20480485,0.23623861,0.0506639,-0.25028193,0.46678856,0.19996771,0.805632,0.09515565,-0.21533434,-0.30722836,0.1504527,0.23761554,-0.31048048,-0.036413774,-0.32528704,0.031163542,-0.5583528,0.32559842,-0.12380998,-0.25098905,0.22555071,-0.15430956,0.07092441,0.5856655,-0.1575366,-0.14127731,0.107841626,-0.048460793,-0.32708842,-0.015072337,-0.25862628,0.14941053,0.17110465,-0.05545714,-0.031271797,-0.030505124,-0.118965864,0.30146188,0.10038648,0.38776174,0.43447775,0.11243789,-0.37985098,-0.026614534,0.025919229,0.5777784,0.10058122,-0.07992576,-0.39853585,-0.44701046,-0.29683545,0.19213282,-0.23115657,0.19118781,0.13479419,-0.24744138,0.6927752,-0.09913506,0.9451109,0.14376312,-0.16706578,0.014996481,0.53268886,0.062238872,0.06580356,-0.4026175,0.92988235,0.48197392,-0.089588165,-0.015826812,-0.31009927,-0.126008,0.16182733,-0.3095075,-0.23278685,-0.1691873,-0.7166492,-0.25973746,0.25475928,0.14822143,0.15180111,-0.07681397,0.009576384,0.23309317,0.21551155,0.3269625,-0.50571305,0.054045167,0.37468037,0.27900952,0.031089,0.15073945,-0.4061847,0.33891147,-0.47134268,-0.10597244,-0.20573916,0.056514557,-0.13360725,-0.37211317,0.23999093,0.1231886,0.2947468,-0.32320487,-0.33022922,-0.09506545,0.51314056,0.24896431,0.31044436,0.6895101,-0.14125128,0.0075441045,0.11222887,0.48535258,0.98572904,-0.31221122,0.15886612,0.47857606,-0.2285202,-0.6043856,0.15767035,-0.40756765,0.17189075,-0.09216664,-0.3531311,-0.320107,0.2745458,0.13678065,0.049650054,0.065334894,-0.49611512,-0.18846492,0.41849905,-0.24836697,-0.35549667,-0.40737343,0.10331139,0.47841305,-0.29646155,-0.17352007,0.044528715,0.40157095,-0.28304335,-0.59928674,-0.054527353,-0.37392583,0.19241224,0.14824514,-0.38100052,-0.124549694,-0.07806506,-0.3777774,0.2377237,0.06993671,-0.39574626,-0.016292643,-0.31519505,-0.018305413,0.7961962,-0.08642362,0.08280401,-0.62380725,-0.4332067,-0.9953911,-0.16473958,0.42617878,0.07268967,-0.18072367,-0.46644458,-0.122220606,-0.06717821,0.06570373,0.04321674,-0.38549504,0.34508565,0.07358564,0.43591484,-0.07079722,-0.6632857,0.01995836,0.052818228,-0.26807708,-0.5253557,0.5958974,0.03175115,0.7309402,0.13431937,0.040322885,0.2548259,-0.6026603,0.13937096,-0.23028262,-0.05817449,-0.7062992,0.22257467 -572,0.3704906,-0.0024966185,-0.6078345,-0.3376276,-0.09878536,0.12660497,-0.15815155,0.10614827,0.12716118,-0.38169414,-0.01965939,-0.2949735,-0.022235371,0.49515992,-0.123758785,-0.88254154,-0.110029906,-0.07786691,-0.6764683,0.5014741,-0.43006772,0.4628828,0.117574304,0.3746721,-0.012941787,0.34378308,0.3536633,-0.13410822,0.10519035,-0.06337169,-0.30515218,0.0777306,-0.73161477,0.18258992,0.22247903,-0.34472463,0.015620346,-0.13988529,-0.21879798,-0.5602292,0.45586997,-0.78606707,0.51165235,-0.03889197,-0.32249227,0.11315564,0.06922117,0.30808085,-0.5150905,0.13904612,0.23102997,-0.13385858,0.17709014,-0.18072279,-0.19761038,-0.53742945,-0.4896811,0.020304931,-0.6591568,-0.33111814,-0.30976275,0.19817623,-0.32435784,0.0943123,-0.2447048,0.37071338,-0.41318643,-0.16770472,0.21867545,-0.34720626,0.30561417,-0.40135098,-0.13930947,-0.06998007,0.20556389,-0.06366516,-0.095218115,0.13326655,0.1153708,0.5587013,0.15844005,-0.13776158,-0.120332725,-0.20079091,0.061294224,0.45058867,-0.008516959,-0.35359034,-0.26317888,-0.15662977,0.06396182,0.23150107,0.04734645,-0.4673372,0.025083922,0.06528172,-0.30972055,0.15549964,0.40163884,-0.53482354,-0.278275,0.44502875,0.35022062,-0.051499195,-0.13557006,0.24511172,0.07774603,-0.37057844,-0.24080302,0.2581614,-0.028914033,0.54088026,-0.09365915,0.34858453,0.8465974,-0.051860604,0.13950744,-0.35795063,-0.29921764,-0.32906854,-0.14490317,0.016485123,-0.032257777,-0.4082926,0.0536352,-0.30904084,0.9665435,0.10964254,-0.69985175,0.29124412,-0.50104445,0.09456228,-0.15842026,0.63847095,0.6566902,0.16543795,0.00039223983,0.947208,-0.78155077,-0.06589315,-0.053634174,-0.46789947,0.051999476,-0.019270118,0.003263125,-0.41766363,-0.053494714,0.26184437,0.15794824,-0.12738179,0.29369804,-0.3139771,0.07167729,-0.04272574,0.61859894,-0.47048706,0.043338712,0.669235,1.0672736,0.8215411,0.12879734,1.3254813,0.36603674,-0.2657211,0.20424904,-0.3618965,-0.60527396,0.18617226,0.47377974,0.5712154,0.29075214,0.05967664,0.1409252,0.401632,-0.20452,0.25863212,-0.034284517,0.13097781,-0.13088554,-0.030317325,-0.36140898,-0.09675277,0.21856774,0.081788644,0.10523792,0.24365467,-0.07466993,0.45681491,0.16877052,1.5409739,-0.09589516,0.2701803,0.06880413,0.44221753,0.22814098,-0.09280384,-0.04497907,0.33261523,0.515924,-0.05629001,-0.72890913,-0.02931672,-0.20883894,-0.4878392,-0.21019793,-0.43449944,-0.12006059,-0.05919582,-0.57266724,-0.0538595,0.102951065,-0.4044246,0.29243523,-2.5042737,-0.1592358,-0.23908004,0.25711364,-0.32585767,-0.2747831,-0.12992099,-0.35366088,0.4501148,0.60351264,0.29025716,-0.626775,0.45889366,0.4085879,-0.022737969,-0.10096605,-0.59827167,0.02307206,-0.13436069,0.38939655,-0.15506744,-0.14792088,-0.29807475,0.33181652,0.49456173,0.0063462993,-0.14716305,0.1022406,0.39782116,0.24029444,0.63522726,0.2632121,0.6745999,-0.0496363,0.03245518,0.3686847,-0.25326177,0.3015849,0.12378986,0.22635542,0.26610997,-0.6037119,-0.6965404,-0.7519516,-0.49166366,1.2428483,-0.54094875,-0.34398368,0.3635046,0.11756534,-0.29182965,0.011949851,0.53165185,-0.1461918,0.0014229462,-0.6825263,0.09546314,-0.08611577,0.366412,0.0088551305,0.028418344,-0.39833933,0.7115653,-0.11990796,0.6001343,0.42601982,0.07431814,-0.046511896,-0.5521421,0.13209987,1.0443099,0.2852264,0.13274124,-0.10720874,-0.20142776,-0.19738986,-0.17913525,0.24348791,0.43225816,0.80574524,0.18231909,0.15394977,0.3871842,-0.2210769,0.032039277,-0.06311304,-0.32540497,0.07437127,0.0438877,0.53180104,0.37878424,-0.15526769,0.39384466,-0.18384682,0.23000516,-0.28434533,-0.42010528,0.6735372,0.781448,-0.12275211,-0.17346868,0.5107866,0.4369064,-0.35651773,0.27670005,-0.5126902,-0.28360432,0.59708273,-0.077135794,-0.4100117,0.15773311,-0.30875885,0.08034511,-1.0700608,0.1208208,-0.10409494,-0.45077446,-0.5620203,-0.2472896,-4.5446544,0.22608344,-0.24572727,-0.20022987,-0.15676244,-0.18803263,0.4945951,-0.62312233,-0.500335,0.026677074,-0.07256996,0.5382846,0.085007444,0.308592,-0.3507331,0.081357755,-0.24333912,0.19732578,0.07620731,0.22085612,0.12042323,-0.3361302,0.12847503,-0.27414656,-0.52316785,0.019529043,-0.3777504,-0.6106163,-0.16314776,-0.51161706,-0.30633932,0.7514979,-0.36180407,-0.0691611,-0.31041685,-0.17417867,-0.30727595,0.4297293,0.17865944,0.14475185,0.021169974,0.056503363,-0.2741966,-0.49852827,0.06843695,0.068593994,0.2904306,0.22134799,-0.26995146,0.025199037,0.4570482,0.42510265,0.07679897,0.40871873,0.33806822,-0.035617195,0.3592388,-0.40951458,-0.14891766,-0.7544132,-0.44508868,-0.2890462,-0.3496856,-0.6235176,-0.3308096,-0.319147,-0.7561843,0.38979685,0.0144517375,0.095774494,-0.026040109,0.25284058,0.2470024,0.06591354,-0.016411178,-0.14693993,-0.19804981,-0.502788,-0.42779768,-0.6396113,-0.55402094,0.27764672,0.9983455,-0.08266051,-0.2918923,-0.033244003,-0.4674911,0.12450567,-0.029615935,0.38131967,0.43151698,0.35628513,-0.11772589,-0.7495959,0.55310804,-0.06309201,-0.017817222,-0.58149236,-0.16416192,0.7012847,-0.7605921,0.38953882,0.2416288,0.19845602,0.18002568,-0.33912256,-0.32298607,0.0816286,-0.29406554,0.51394105,0.14320269,-0.5884494,0.4308343,0.15811405,0.2616398,-0.6484924,0.46063954,-0.089653954,-0.31827608,0.14873847,0.28450277,-0.12773998,-0.04386209,-0.19349942,0.096090786,-0.47902107,0.2875078,0.47855794,0.06531459,0.5546788,-0.101750575,-0.1333084,-0.40126726,-0.047736984,-0.6226486,-0.11740172,-0.027166951,0.14218542,0.060517572,0.15683314,-0.11073436,0.40841818,-0.31252113,0.27491176,0.095369324,-0.12788974,0.3392026,0.43087006,0.15250053,-0.56600374,0.6996615,0.019472765,0.11548297,-0.13262135,0.11808252,0.599398,0.38676625,0.29119322,-0.25129038,-0.17821983,0.24600722,0.5708876,0.2714534,0.43081334,0.29492956,-0.057233855,0.3890949,0.28837216,0.029172858,0.10356716,-0.2058352,-0.0654705,0.106357485,0.23054862,0.35195652,0.13409434,0.43422583,-0.12512472,-0.23224185,0.2670596,0.18784314,-0.4067643,-0.81175804,0.31429064,0.28546137,0.52043885,0.65726715,-0.061120935,-0.008889391,0.40624663,-0.42647776,0.09297173,0.14746477,0.16670784,-0.612316,0.62455875,-0.46424693,0.42813656,-0.22549915,-0.015680313,-0.045665376,0.20980667,0.103288375,1.0160304,-0.029036455,0.087338194,-0.070241995,-0.1527746,0.09081978,-0.42446405,-0.009374142,-0.47231197,-0.25122312,0.55082333,0.29434964,0.27162474,-0.2916415,-0.14760798,-0.03326629,-0.0960103,0.0034406553,-0.13918355,0.043545716,0.08082381,-0.6548503,-0.5313502,0.5712553,-0.047715876,0.07423105,0.10165061,-0.46995604,0.29894632,-0.16736071,-0.02995934,0.026437186,-0.54117036,0.11096562,-0.32373735,-0.5182496,0.16253175,-0.6269196,0.3588803,0.1737208,-0.02457403,-0.19536725,-0.05106122,0.2293356,0.64164674,-0.047707465,-0.19885272,-0.42593908,-0.0791671,0.3283944,-0.33387807,-0.18380943,-0.3265562,0.030456487,-0.55654144,0.31635576,0.015986571,-0.23285338,-0.0062007857,-0.22281606,-0.042744543,0.35009167,-0.29389355,-0.034430675,0.25670296,-0.08242726,-0.17909919,-0.03897386,-0.42855275,0.245049,-0.031615175,0.14913402,0.1898621,0.0027670264,-0.056939326,0.2755435,0.17974922,0.29521048,0.35522473,-0.13969943,-0.2941732,-0.04351427,0.05137945,0.19411789,0.1555362,0.035218734,-0.10409711,-0.4798487,-0.22219552,0.22748202,-0.14327127,0.12856127,0.016208824,-0.5712154,0.6861508,0.2346516,0.9484586,0.14028288,-0.36645332,-0.012950833,0.499754,0.123996146,0.10076763,-0.22648494,0.951306,0.6289707,-0.21529172,-0.3240351,-0.28022182,-0.32028204,0.2932619,-0.26227978,-0.27169755,-0.027865509,-0.6892421,-0.25166124,0.05225011,0.28679878,0.12929606,0.16174713,-0.033634387,0.015412809,0.098608226,0.4570091,-0.5849642,-0.058925383,0.27570614,-0.02444965,0.14953627,0.3000015,-0.38410944,0.5251148,-0.78316075,0.07863617,-0.48914865,0.016378181,0.14858674,-0.22610983,0.13924792,0.04019409,0.39449283,-0.24174117,-0.21843903,-0.28280032,0.7983399,0.18926719,0.3815571,0.8738933,-0.13126579,0.005876825,0.10326339,0.43475068,1.3562093,0.07496767,0.096602716,0.19311197,-0.3180332,-0.5928426,0.11259401,-0.2726093,0.19224486,-0.082831904,-0.4443488,-0.2528242,0.26969293,0.026693119,-0.10974321,0.14111087,-0.49526644,-0.47276127,0.5009546,-0.2431688,-0.33921242,-0.32855308,0.18279296,0.666187,-0.39993063,-0.1720627,0.10615837,0.29312906,-0.2871535,-0.614437,-0.04195822,-0.24253368,0.42021412,0.23707727,-0.24080889,0.10287281,0.36776236,-0.2790095,0.27031457,0.3201463,-0.37987024,0.035015162,-0.25066006,-0.16069461,1.0888652,0.010030921,-0.08398448,-0.77231085,-0.5070087,-0.97626245,-0.52653503,0.5920335,0.014948911,0.031881526,-0.4700065,-0.07874116,-0.09314818,0.33517054,0.20469409,-0.454041,0.45289552,0.14482418,0.648312,0.06568882,-0.89530987,0.047225315,0.07957457,-0.19108392,-0.6428037,0.5904815,-0.20107427,0.46862215,0.013774536,0.083425775,0.22927618,-0.66316354,0.24931091,-0.4611444,-0.21475609,-0.8658473,0.1419757 -573,0.36487186,-0.15735105,-0.40603644,-0.10858952,-0.21422479,0.07587158,-0.036278434,0.5649571,0.22209597,-0.30876815,-0.13093139,-0.17546934,0.08698602,0.34677935,-0.23712808,-0.37429258,0.10209255,0.03606982,-0.2936663,0.3297567,-0.37030178,0.14193675,0.10523136,0.28143886,0.08598394,0.2913902,0.24766713,-0.07830617,0.04246454,-0.17772597,-0.2069162,0.2723641,-0.5221668,0.32562062,-0.21798134,-0.19150877,0.17684709,-0.49475825,-0.40121195,-0.618454,0.23950148,-0.76482624,0.3955431,0.30253854,-0.20717217,0.3800053,0.28354105,0.1400258,-0.21416521,-0.2586512,0.09252768,-0.059241794,0.1125129,-0.23433568,0.09505956,-0.27203226,-0.4695549,-0.027588844,-0.40705585,-0.23775527,-0.30755073,0.12670654,-0.33082217,-0.034398057,-0.049606755,0.41541594,-0.37695476,0.037125748,0.28027636,-0.27944553,0.37555435,-0.5579993,-0.21389577,0.030857814,0.15571894,-0.16625811,-0.21262433,0.3289281,0.1584754,0.30884707,-0.20830187,-0.1114603,-0.06729938,-0.11116348,-0.007844293,0.56387377,-0.38590086,-0.4817026,0.035510343,0.07612739,0.09649165,0.0006910723,0.19436306,-0.18825667,-0.14861844,-0.06062585,-0.12053133,0.28698957,0.46780393,-0.26250643,-0.14935772,0.14022371,0.43516424,0.13880783,-0.14417535,-0.09952119,0.0701884,-0.50339884,-0.19237396,-0.19342747,-0.11571736,0.61346364,-0.1285482,0.30513164,0.60439306,-0.10619171,-0.0004105568,0.20337346,0.10566708,0.09551663,-0.25469238,-0.13550456,0.20589226,-0.58784574,0.044305343,-0.16523114,0.7956984,0.16792253,-0.72742695,0.30219197,-0.4836797,0.1081998,-0.08339043,0.3595732,0.59581906,0.3667326,0.29409367,0.6864671,-0.5591088,0.01968529,-0.06891887,-0.34025905,0.25899127,-0.11950262,0.07350041,-0.42969233,-0.06713787,0.11402215,-0.08936583,0.10727937,0.10910424,-0.52970093,0.034138866,0.31761152,0.80344254,-0.21611995,-0.012334457,0.55283123,0.9761511,0.78989947,0.064429365,0.760446,-0.07329458,-0.21778774,0.26870957,0.08577368,-0.64646965,0.17098615,0.3581287,0.5360583,0.028128084,0.13280785,0.09595335,0.41508833,-0.4944331,-0.01696681,-0.16742608,0.33524317,0.13540341,-0.10611889,-0.39425856,-0.40820327,-0.08038007,0.1379245,-0.14051296,0.32386974,-0.011596262,0.39489874,-0.025119938,1.5391686,0.087512955,0.12434785,0.20656958,0.49825728,0.17958157,-0.17152795,-0.10980876,0.2708407,0.19434598,0.17895089,-0.38010788,0.03329817,-0.06493342,-0.43827564,-0.08397853,-0.35903242,-0.13588804,0.10369018,-0.6106847,-0.21709129,-0.17785452,-0.1053445,0.45567995,-3.1364088,0.017727228,-0.013997509,0.3163004,-0.17809513,-0.16251029,-0.021245709,-0.41896123,0.2638531,0.45045346,0.40471458,-0.7250293,0.10738647,0.3858263,-0.47423846,-0.0712769,-0.5306304,-0.07433407,-0.047359724,0.31114784,0.19727887,-0.03815686,0.004069766,0.300046,0.4259308,-0.010850549,0.021450039,0.051839527,0.21390635,0.021358414,0.35116836,-0.1050971,0.20646851,-0.26389673,-0.18044621,0.25504223,-0.39922297,0.14133269,-0.2713465,0.016770054,0.32540685,-0.2356995,-0.8448976,-0.57746917,-0.06593796,1.1248306,-0.19906637,-0.318263,0.3842452,-0.53339994,-0.18166214,-0.17792627,0.4189815,-0.07544995,0.04829167,-0.69563645,0.039243285,-0.17892888,0.036410194,0.04327134,-0.27369606,-0.41860586,0.8631046,0.044234872,0.5093612,0.3775049,0.042112395,-0.36403576,-0.4050355,-0.0641644,0.6234499,0.37810084,0.23893073,-0.09883881,-0.11282611,-0.19130291,0.06352267,0.17322353,0.6009586,0.68987477,-0.10012674,0.14164528,0.2237534,0.019470004,-0.008741269,0.060782436,-0.3047749,-0.020210322,0.07060344,0.6979951,0.8690271,-0.1300342,0.21024229,-0.17208345,0.36621696,-0.16086648,-0.37075642,0.3308096,0.67002517,-0.048630908,-0.1766703,0.5847574,0.6011928,-0.07629934,0.36038905,-0.5292763,-0.36716363,0.44677794,-0.13447748,-0.39908966,0.13676362,-0.36247152,0.13051604,-0.84555346,0.4224925,-0.2769841,-0.55936176,-0.4890343,-0.11993058,-3.331907,0.14892006,-0.29043004,-0.20199296,-0.031736817,-0.084262796,0.24007085,-0.6458901,-0.32709247,0.22959112,0.07369077,0.679696,0.038907316,0.03408392,-0.21555866,-0.30226326,-0.09821362,0.07489743,0.00034820117,0.17390767,-0.113660924,-0.3699608,-0.065756746,-0.24902947,-0.20581843,0.12234871,-0.35199922,-0.5117419,-0.15856239,-0.36399922,-0.35591,0.5555224,-0.37756795,0.063142456,-0.10938342,-0.08380957,-0.21180026,0.14840639,0.13943698,0.15776433,-0.11915596,0.115483746,-0.038107175,-0.33568624,0.3705156,0.080587216,0.51402265,0.40794915,-0.10334595,0.029449355,0.7133268,0.47209594,-0.16104317,0.8802102,0.44832292,-0.030198066,0.27989018,-0.15777133,-0.34679496,-0.44833463,-0.2788043,0.15107176,-0.24771592,-0.2771022,0.09027354,-0.4184148,-0.53129363,0.41237915,0.02647378,0.06754282,-0.029750952,0.098583385,0.46163642,-0.32695484,-0.113814145,0.00078631134,-0.16998744,-0.78207374,-0.23729931,-0.61048514,-0.3510167,0.10749744,0.9547361,-0.31028542,-0.018411666,0.08861833,0.024442453,0.15771468,0.17782345,-0.19979924,0.06722303,0.43626016,-0.095481105,-0.735105,0.5349543,-0.24664567,-0.18110472,-0.5320863,0.028751502,0.31892532,-0.6028829,0.5912987,0.30100173,0.10383158,-0.04933876,-0.5648189,-0.31361723,-0.09418878,-0.24511887,0.4022285,0.25927007,-0.8276809,0.3563175,0.2331914,-0.47087905,-0.6684607,0.45047528,-0.038743872,-0.4084714,-0.130413,0.14425841,-0.0037812178,0.029688615,0.053717468,0.06655186,-0.38933712,0.2621404,0.24553493,0.021414671,0.20402241,-0.15853368,0.044494517,-0.5733832,-0.006178448,-0.38631403,-0.302607,0.27018154,0.022653012,-0.031134052,0.14989218,0.07937172,0.33086526,-0.2578857,0.15969007,-0.08154494,-0.3109733,0.48956048,0.3755663,0.446209,-0.48295778,0.57090217,-0.020160824,0.03570551,-0.09727131,0.10426628,0.3609069,-0.038691558,0.17323357,-0.2175774,-0.21235381,0.22570907,0.9667329,0.10636003,0.34667775,-0.04310389,0.19468147,0.32573044,-0.0209755,0.13003436,0.27151683,-0.5552086,-0.10563533,-0.3066209,0.09698325,0.32191724,0.07990571,0.25959116,-0.019816756,-0.40381426,0.1277609,0.27234295,0.12099433,-1.1278561,0.29309514,0.087579146,0.7249315,0.5890416,0.078352876,-0.04586204,0.8833365,-0.13150644,0.08633289,0.2753619,-0.033942763,-0.46184632,0.59450114,-0.7508964,0.39216217,-0.050725617,-0.16384825,-0.19671535,-0.13778223,0.30825365,0.6422788,-0.26303464,0.0024278255,0.09699763,-0.33619946,-0.01989204,-0.49500492,0.014317971,-0.71850085,-0.21244925,0.4993407,0.42984736,0.37613523,-0.077636905,0.0024775588,0.08819175,-0.06938907,0.048655234,-0.01563572,0.046906646,0.050342016,-0.64830166,-0.07150157,0.57715565,-0.023251662,0.17771989,-0.11790054,-0.14456694,0.3097256,-0.28609392,-0.18225648,-0.11755837,-0.45587867,0.2587191,-0.28284097,-0.38521937,0.7576005,-0.1501302,0.21267447,0.3062247,0.14151451,-0.04774638,0.3277108,0.07386164,0.74113995,-0.20337826,-0.20833698,-0.36716557,0.18142898,0.07573543,-0.038065538,-0.10126583,-0.3030024,0.19074291,-0.35858396,0.4363665,-0.07249643,0.06454779,-0.07984298,-0.19171391,0.08275691,0.60538113,0.032815713,-0.18457168,-0.09546041,-0.13476315,-0.16024445,-0.17629863,-0.22860739,0.21152815,0.05886388,-0.014866618,-0.023400893,-0.23168813,-0.11729583,0.16257858,0.019105779,0.40533713,0.13475114,-0.05441346,-0.32085493,0.070650086,0.091399945,0.30416968,0.0122523755,-0.11366984,-0.336814,-0.4617168,-0.34474578,0.14029959,-0.04012637,0.24084578,0.04606841,0.010848867,0.9192137,-0.14068483,1.004067,-0.024323292,-0.30235815,0.073883414,0.5064039,-0.09290746,0.06411802,-0.2460843,0.7714477,0.4465623,0.055536173,-0.10101962,-0.30912507,0.2349051,0.15252198,-0.089073986,-0.14692242,-0.007294508,-0.57263845,-0.088549286,0.2365784,0.36042306,0.24740201,-0.109700784,-0.091730826,0.22408067,0.043796062,0.26321125,-0.45895672,-0.25988615,0.3227423,0.28336352,0.03501521,-0.032554492,-0.39873427,0.37442926,-0.36012918,0.010770449,-0.24743748,0.14290193,-0.23538734,-0.32850975,0.100060895,-0.19232838,0.39732757,-0.49120155,-0.20163797,-0.22693275,0.4168165,0.14274296,0.13137843,0.41465357,-0.23760289,-0.11899756,-0.05523672,0.4767103,0.7551727,-0.42371625,-0.14022508,0.5331826,-0.22838178,-0.5789301,0.20693396,-0.28635606,0.121796794,-0.11788073,-0.151007,-0.5204892,0.2288805,0.40021098,0.036449146,-0.049711235,-0.6046771,-0.25556546,0.3168557,-0.41721475,-0.2987592,-0.37950963,0.16966292,0.42859334,-0.12612677,0.014226435,0.15641788,0.20908825,-0.15869261,-0.44512287,-0.0036151523,-0.25409147,0.32614067,0.06511996,-0.3271728,-0.27418646,0.24853578,-0.33358085,0.26590303,0.15494926,-0.20351802,0.03222323,-0.29151586,0.18761417,0.88673306,-0.1573971,0.06851116,-0.46804062,-0.43199474,-0.73295915,-0.29144892,0.61283755,0.04544755,0.14306742,-0.5337109,-0.18104461,0.030023117,-0.011706031,-0.25101992,-0.11255347,0.4799202,0.08295868,0.3429472,-0.05461913,-0.6626924,0.11996538,-0.042791665,0.039422836,-0.45831713,0.3744942,-0.032638706,0.8477905,0.060393132,-0.062040623,0.21936128,-0.31222498,0.10694924,-0.18789695,-0.25829026,-0.5805616,0.112458535 -574,0.25823024,-0.0054817796,-0.31073985,-0.1282332,-0.53063196,0.098712236,-0.13768496,0.19586997,0.35281312,-0.3303991,-0.35753158,-0.2027952,-0.0614866,0.37524995,-0.059425186,-0.33439985,0.01843354,0.24748372,-0.9776656,0.41707468,-0.4511803,0.38925436,0.16358708,0.38680103,0.36891553,0.20716377,0.22657502,-0.06327938,-0.18544757,-0.12337165,-0.4871991,-0.04761679,-0.41724634,0.24545519,-0.35590878,-0.35562134,0.058256403,-0.6241742,-0.17073442,-0.7171857,0.19847433,-0.8835192,0.6049927,-0.13321559,-0.08705968,-0.19224383,0.6554646,0.3232893,-0.115042806,0.008796572,0.23295295,-0.23101492,-0.1635356,-0.28584042,-0.41337362,-0.33938995,-0.447675,-0.13953207,-0.5045246,-0.3512545,-0.24855019,0.24508882,-0.24257475,0.025078556,-0.04114282,0.3685042,-0.27051207,0.26527277,0.16135986,-0.25900757,0.020663058,-0.6120275,-0.08952093,-0.18964142,0.5366236,-0.019113556,-0.2736672,0.51202637,0.3696598,0.28516594,0.044417173,-0.18729381,-0.28534374,-0.2483632,-0.0043518147,0.5280309,-0.17077471,-0.22050191,-0.13002215,-0.049407925,0.48407856,0.5518082,0.14425395,-0.23416723,0.080054775,-0.2766187,-0.18956272,0.4528474,0.32641125,-0.29879698,-0.30342254,0.24311435,0.39687613,0.23265205,-0.32255694,-0.060955364,0.11597607,-0.51807886,-0.07614499,0.16039574,-0.1768011,0.50186205,-0.053271938,0.28908873,0.69612265,-0.17636389,-0.036957502,0.061385006,0.15183687,-0.1547309,-0.20964746,-0.3031436,0.12622581,-0.5347865,-0.07818857,-0.1185872,0.8007999,0.07941147,-0.5434696,0.3490232,-0.6021107,0.082380444,-0.034165602,0.3786324,0.68019223,0.59144366,0.353963,0.7577413,-0.17715369,0.14495932,-0.011536022,-0.14777309,0.0076204143,-0.3746791,0.3109347,-0.57546407,0.0053631566,-0.15438265,0.16140334,0.23710613,0.633457,-0.4011134,-0.26010242,0.23014982,0.8683292,-0.32194284,-0.22905111,0.68303823,0.9149451,1.0769244,-0.023926064,0.9189613,0.25986496,-0.26103437,0.091534674,-0.21474533,-0.6041346,0.15189706,0.24099092,-0.45646593,0.11002412,-0.13529317,0.0075673214,0.1327215,-0.35396242,0.037562262,0.03688248,0.11725026,0.16394554,0.06420192,-0.3415694,-0.5163624,0.017469486,-0.2062536,0.21933424,0.17720212,-0.39670947,0.37583104,-0.090989865,1.5993797,0.11880535,-0.0224234,0.022486366,0.6486918,0.18912964,-0.18481348,-0.30953345,0.27895167,0.20060772,-0.16484247,-0.46721926,0.18637036,-0.3449765,-0.2901685,-0.11037168,-0.4034435,-0.43979332,0.103204496,-0.25628152,-0.3194333,-0.06187545,-0.54581636,0.42891335,-2.7126179,-0.30161834,-0.0981748,0.34157494,-0.2531968,-0.24765997,-0.28986952,-0.6425767,0.30612472,0.006333865,0.48881778,-0.55897355,0.5132975,0.50634736,-0.5863978,-0.41563976,-0.7030992,-0.06475097,0.05423255,0.1434789,-0.13699414,-0.044013437,-0.04895998,0.12220549,0.6681755,0.06836963,0.1684355,0.53121966,0.449329,0.19090569,0.6902167,-0.13401768,0.7291228,-0.49599814,-0.21597487,0.31840268,-0.4123787,0.23775528,-0.20236863,0.07356844,0.83393794,-0.5167351,-0.79294854,-0.6472686,-0.23769474,0.8888264,-0.35085425,-0.349713,0.2178235,-0.4661909,-0.12578608,-0.024906596,0.92135566,-0.11419582,-0.01660107,-0.5062974,-0.023057967,0.03485409,0.28107682,-0.006200619,-0.08618826,-0.17954683,0.49253142,-0.025392896,0.7263984,0.10639852,0.15037341,-0.62482285,-0.22308187,0.1607898,0.844762,0.28436863,0.01671271,-0.06704881,-0.11589736,-0.42964792,-0.30168155,-0.0013750693,0.48225865,0.6750388,-0.05484884,0.16897255,0.43082008,-0.024846142,0.03192834,-0.15109451,-0.19121206,-0.09056631,0.05879778,0.3980206,0.54325,0.08014701,0.6848939,-0.15006067,0.3121196,-0.2936913,-0.52875346,0.5143781,0.32810012,-0.22363384,-0.04304226,0.5605584,0.5250395,-0.33987582,0.44225034,-0.6626106,-0.4356803,0.6832685,-0.117983945,-0.4771184,0.14468943,-0.29648054,0.18400635,-0.54449105,0.114556246,-0.2689784,-0.37618962,-0.2739122,-0.048024714,-2.2961445,0.17957099,0.020422151,-0.15493026,-0.21692352,-0.07380877,0.022508642,-0.46572125,-0.66261876,-0.00030629337,0.2006138,0.83510685,-0.079145044,0.17381698,-0.1552536,-0.343282,-0.21024977,0.26396397,-0.0299372,0.40136102,-0.21357785,-0.4741015,0.059035074,-0.08390174,-0.5543576,0.07392393,-0.7324784,-0.35631537,-0.08626909,-0.5572378,-0.40379074,0.69644946,-0.67790085,0.07189011,-0.37543392,-0.008642807,-0.08801717,0.14755936,0.20094447,0.14607418,0.093616486,-0.02344128,0.07430217,-0.2907093,0.44958344,0.021361709,0.41487584,0.16989489,0.28556547,0.31187382,0.33767867,0.7614173,-0.25764322,1.1703509,0.22137345,-0.16103469,0.18072437,-0.32595375,-0.26395097,-0.3540381,-0.06504988,0.10951666,-0.38876137,-0.46837226,0.12544698,-0.20759213,-0.7383867,0.6720876,0.15925832,0.28260037,-0.037292574,0.29894024,0.29613945,-0.32296786,0.11492121,-0.10109645,-0.120251335,-0.616961,-0.35808972,-0.51215655,-0.42289397,0.08553579,1.0218688,-0.437989,0.11648142,0.08561487,-0.44026437,0.0952655,0.11259979,0.022780886,0.3391533,0.4239421,-0.09070917,-0.70292777,0.24496996,-0.21263118,0.08307799,-0.43196118,0.15678422,0.7213092,-0.70009273,0.4357319,0.26313874,-0.075252414,-0.34425005,-0.45807353,-0.16661613,-0.15130274,-0.17811604,0.18998529,0.23074335,-0.7624492,0.40341768,0.15355451,-0.47634205,-0.7598405,0.2912147,0.049279016,-0.31992802,-0.10944763,0.31436434,0.3659153,-0.05054262,-0.16056736,0.15660281,-0.4011813,0.41154203,0.06318383,0.018528923,0.24967487,-0.3549117,-0.45070162,-0.7126245,0.2540785,-0.26520762,-0.44619927,0.4998012,0.045399535,0.12752524,0.4974135,0.15788046,0.1301911,-0.20900501,0.05109474,-0.06262896,-0.25388736,0.1426229,0.28870827,0.57996786,-0.41428447,0.535438,0.016309762,-0.11775548,0.32689187,-0.07163912,0.19353867,0.07971945,0.34846187,-0.10735322,-0.51255137,0.31924275,0.7831896,0.20412719,0.06895956,0.020685077,0.093402185,0.17159472,-0.07669,0.023453882,0.15561211,-0.59572184,-0.041159812,-0.33722243,0.19738452,0.41223285,0.18309946,0.30276465,0.08416191,-0.09203496,-0.038045865,-0.018836617,-0.18493421,-1.2303038,0.33713803,0.11118994,0.944393,0.406199,0.11228868,-0.24456763,0.8929077,-0.22233815,0.22497405,0.42072463,-0.061330978,-0.2582496,0.7283048,-0.49310076,0.73136187,-0.020287193,-0.043473843,0.14992349,0.09391647,0.37268457,0.95299417,-0.25250748,0.12455634,0.29408833,-0.2983587,-0.0002825459,-0.23410757,0.008699338,-0.68855745,-0.32707325,0.70102805,0.21219146,0.3521547,-0.12598458,0.032972354,-0.09392885,-0.25750068,0.1305412,0.05913195,0.10234391,0.00090964016,-0.57420117,0.14544316,0.52293545,0.0146642,0.1862278,0.011459991,-0.16772394,0.08863729,-0.29848436,0.13580243,-0.12961632,-0.67667454,0.14164111,-0.38782108,-0.5002505,0.31466812,-0.25059018,-0.020694142,0.17973834,-0.022564203,-0.03028071,0.74875516,0.47288653,0.69726664,-0.1476732,-0.07542882,-0.052025538,0.19896054,0.11331401,-0.27478704,0.24991226,-0.31104735,0.07458652,-0.6492066,0.6775937,-0.036158975,-0.4455247,0.11630996,-0.15945777,0.00028865537,0.5589015,0.07378987,0.005622556,-0.13772531,-0.13175459,-0.49607894,0.0103346305,-0.32941708,0.091230966,0.17317204,-0.03642741,-0.30745724,-0.31452474,-0.17896797,0.39253995,-0.24248414,0.5604293,0.19083823,0.21693122,-0.14988579,0.23133814,0.10524869,0.62236166,0.0569258,-0.007971545,-0.47920677,0.04516394,-0.27868384,0.49443832,-0.08905927,0.21384867,0.08776941,-0.4134059,0.8299207,-0.28918073,1.1124634,0.1524886,-0.3249514,0.02017796,0.4582343,-0.22423065,0.0475485,-0.23680288,0.7874656,0.42201528,0.06726069,-0.05548039,-0.33245608,0.014983982,0.34364796,-0.40507698,-0.26788193,0.08618095,-0.3817648,-0.2972714,0.14786811,0.08336113,0.35588503,-0.24299705,0.22773139,0.2863544,0.11021358,0.29314044,-0.42977008,-0.080676846,0.37224922,0.39469588,-0.12084353,0.1622778,-0.4926965,0.40841427,-0.7332695,0.15202507,-0.5074966,0.21112196,-0.40459976,-0.2684187,0.20977467,0.25601137,0.4292941,-0.15263006,-0.291073,-0.09353677,0.44021282,-0.026722157,0.31684825,0.5382977,-0.24534196,-0.08915051,0.008457974,0.5089197,1.0657443,-0.32209975,-0.05979239,0.23759699,-0.43315184,-0.644526,0.56857187,-0.4046204,-0.1247786,0.18212466,-0.28916597,-0.29679096,0.2849544,0.2818375,0.2634518,-0.12206372,-0.5066809,0.08727715,0.27398905,-0.17033845,-0.28714973,-0.35976687,0.24780197,0.5091956,-0.009010454,-0.19589283,0.0257562,0.4352012,-0.3153819,-0.49694106,-0.08846717,-0.20677757,0.30268937,0.059855524,-0.3644335,-0.27508694,0.007480444,-0.521754,0.08933615,0.056710023,-0.50877136,0.05130738,-0.20833533,0.04544274,0.97905344,-0.14644688,-0.1836407,-0.2575644,-0.5809434,-0.7220559,-0.37104496,0.05089773,0.18201791,-0.24972576,-0.37798914,-0.05062908,-0.20553267,-0.3981746,0.07186287,-0.428159,0.323356,0.19253449,0.38934532,-0.22662328,-1.0194508,0.13510185,0.11419168,-0.11598292,-0.5880143,0.4520227,0.016768664,0.980123,0.12828052,-0.2157924,0.2805545,-0.18390381,0.15260296,-0.3501719,0.022743225,-0.68834496,0.15041615 -575,0.6302332,-0.19617958,-0.5123554,-0.0061059156,-0.48593664,0.11925609,-0.3311963,0.14016317,0.41393915,-0.13774204,-0.3955885,-0.15352266,0.141906,0.0312931,0.023398595,-0.48482355,0.036041655,0.46806452,-0.94124585,0.5874742,-0.36700517,0.3459111,0.28290948,0.542,0.07159356,0.15863821,-0.013070651,0.0689997,-0.021671385,-0.28510123,-0.022054765,0.07343398,-0.769955,0.17667219,-0.42178398,-0.37011364,-0.22200546,-0.38874522,-0.32962963,-0.8243333,0.16736066,-1.1916534,0.67565006,-0.041503448,-0.31447873,-0.42363676,0.24065374,0.4294843,-0.22165944,0.12914462,0.2613275,-0.5668173,-0.38421518,-0.5006462,0.077719584,-0.37905183,-0.4867924,-0.059302203,-0.54064995,0.022206638,-0.14701316,0.20853718,-0.32182625,0.11122962,-0.23864402,0.35638472,-0.21294072,0.08550864,0.36894423,-0.2387668,0.101443924,-0.569245,-0.09276519,-0.10520037,0.62942606,0.1120113,-0.52582294,0.3900388,0.1106608,0.57913303,0.33626255,-0.4330146,-0.03414609,0.03006741,-0.027257653,0.4286702,-0.048794843,0.0339896,-0.21711977,0.052020933,0.644657,0.4308609,0.18558182,-0.15635839,-0.024296364,-0.2765829,-0.034110215,0.40720895,0.58546084,-0.09454522,-0.28195983,0.061481178,0.70629793,0.15764035,-0.2288048,0.17647232,0.09054906,-0.5428481,-0.12207586,0.12102199,-0.0014502747,0.59283465,-0.18528116,0.064669326,0.6891037,-0.16323021,-0.17659947,0.22755504,0.17294881,-0.032530546,-0.34080315,-0.22683968,0.39558023,-0.56268054,-0.15286115,-0.44659558,0.70303965,0.17957239,-0.49995035,0.36908704,-0.56943405,0.21850625,0.07975345,0.7233534,1.0558631,0.6930312,0.4296156,0.84204096,-0.030736744,0.19683419,-0.22084174,-0.13049805,0.17153303,-0.40910253,0.3258505,-0.44311038,-0.09858622,-0.38777146,-0.30734608,0.09060914,0.739388,-0.55715674,-0.2740777,0.23348248,0.6747574,-0.26428685,-0.13796885,1.0199538,1.034192,0.83494854,0.16154324,1.1764575,0.38327414,-0.25882396,-0.13417816,-0.026711391,-0.8267989,0.11566651,-0.02122939,0.008161579,0.42405272,0.1344563,-0.2069769,0.43599,-0.79411614,-0.01809791,-0.004697374,0.12324731,-0.11554773,0.046116095,-0.5303668,-0.1874688,-0.110294245,0.04809674,0.29448298,0.3725036,-0.22803746,0.38792354,-0.0754407,1.3429374,-0.11550497,-0.14390542,0.10497837,0.33490488,0.22945349,-0.16615745,-0.2132356,0.41802007,0.28405482,-0.108073235,-0.490761,0.16111578,-0.27258497,-0.20481381,-0.2608845,-0.19649994,-0.018354962,-0.1651841,-0.35319692,-0.53888637,-0.031548582,-0.44106045,0.27896243,-2.215398,-0.31131425,0.14503445,0.59705245,-0.3152699,-0.24944712,-0.2159638,-0.62776023,0.16550553,0.0810313,0.44393083,-0.8032115,0.54258806,0.56509674,-0.63945854,-0.24548616,-0.8970276,-0.001015859,-0.049079083,0.23963833,0.039751768,-0.35754874,-0.39449963,-0.052792966,0.5615017,0.047218714,0.090751946,0.7522765,0.47685644,-0.04073743,0.38599077,0.13266036,0.6297551,-0.305406,-0.37672716,0.42266035,-0.33693948,0.29121703,-0.11412697,-0.014665706,0.7840036,-0.4746697,-0.7032561,-0.5631291,0.033540983,1.0116316,-0.48618922,-0.49081802,-0.016930245,-0.5717006,-0.21264158,0.25159535,0.88211393,-0.18242119,0.10753155,-0.85288435,-0.1928583,0.0044549108,0.3640993,-0.047465634,-0.0049971365,-0.44858482,0.7490918,-0.31498042,0.62790245,0.109323315,0.36739,-0.2658008,-0.4540903,0.31357405,0.95851564,0.35634857,-0.06999504,-0.34606367,-0.25727764,-0.20879732,-0.22450005,-0.16023003,0.80733955,0.69213265,-0.20875272,0.25380754,0.42618206,-0.18127047,0.004544552,-0.09721061,-0.22659321,-0.22823535,-0.013830402,0.6647301,0.9914934,-0.07408701,0.5330208,-0.23125944,0.49262595,-0.12650004,-0.7301118,0.5833677,0.8650955,-0.35253882,-0.04189561,0.5513102,0.30358478,-0.50087553,0.5063053,-0.64113015,-0.44014195,0.3866237,-0.01738509,-0.4814065,0.43085042,-0.28421983,0.43857726,-0.78428304,0.42100453,-0.20438115,-0.44091034,-0.69656456,-0.021021273,-2.0109575,0.23715727,-0.25069922,0.028811475,-0.27104658,-0.37652227,0.21750845,-0.46363205,-0.5323721,-0.017038073,0.24365723,0.7615747,-0.16811109,0.164247,-0.17252903,-0.48277688,-0.09659256,0.21212564,0.3744757,0.31455848,-0.27293485,-0.30194643,0.041013893,-0.12851143,-0.28555948,0.021628967,-0.8634887,-0.6558032,-0.0037412005,-0.61545837,-0.29885104,0.5224572,-0.34539643,-0.03319799,-0.5419311,0.033415213,-0.0031156358,0.09189709,0.16749005,0.27605128,0.19132912,-0.076332584,0.0071913684,-0.27397797,0.36139423,0.000100904275,0.18397999,0.18306255,-0.049207296,0.283233,0.2964079,0.66138256,-0.32841152,1.1274698,0.4086995,-0.16588712,0.053753573,-0.23659304,-0.6032756,-0.59454095,-0.12997517,-0.093875006,-0.6327022,-0.26591352,0.082490705,-0.43030554,-0.9965544,0.61094517,0.02997647,0.05360634,0.098699674,0.6388325,0.6642639,-0.071398,-0.12189678,-0.057012618,-0.318858,-0.50818646,-0.36869547,-0.4648571,-0.48206612,-0.16021928,1.1958811,-0.21916294,0.3064575,0.25112948,-0.26567593,0.08940763,0.20329335,-0.021119306,0.061230797,0.9074774,0.08554066,-0.44825655,0.27807215,-0.22264226,-0.13577226,-0.6856203,0.44829136,0.67964166,-1.0228356,0.6196336,0.49438137,0.03368939,-0.1814986,-0.45979837,-0.13306214,0.041163035,-0.22712652,0.47844872,0.24047518,-0.68324214,0.42537233,0.27385718,-0.33906367,-0.7336553,0.22049253,-0.14279126,-0.5726963,-0.09453331,0.42465773,-0.19334105,0.0520202,-0.30097553,0.127924,-0.28690678,0.21020555,0.06955833,-0.25945073,-0.004513619,-0.30329233,-0.33843368,-0.72456443,0.13943465,-0.61064166,-0.4388237,0.26754937,0.20859022,0.008326663,0.3858885,0.47355717,0.4146501,-0.37217075,0.10784573,-0.28995255,-0.43405965,0.30000597,0.46133786,0.4346006,-0.4731098,0.5015705,0.08421524,-0.31273466,0.01806678,-0.052749276,0.4112277,-0.13931812,0.3507832,-0.12908046,-0.119820826,0.23357524,0.7256742,-0.05509228,0.63612187,0.22512433,0.028080652,0.3286216,-0.03075774,0.2198532,-0.27913806,-0.5577951,0.033797625,-0.16560431,0.18433094,0.35170332,0.41892782,0.32765946,0.031109154,-0.1867698,0.013450068,0.12060467,-0.05699311,-1.5961418,0.28768247,0.27130088,0.8327345,0.31482813,0.10207578,-0.21449633,0.55949116,-0.29350123,0.113080546,0.26759666,0.003124403,-0.0771011,0.6211296,-0.5080936,0.49417147,-0.12228518,-0.045941524,0.13379563,0.063127026,0.34636182,1.0361536,-0.29657266,0.16232422,-0.0845225,-0.069452,-0.10814099,-0.30504316,0.075250566,-0.63409805,-0.5089492,0.9197716,0.25607795,0.6863149,-0.33333847,0.045028258,0.010472126,-0.2345848,0.3891501,-0.024390923,0.009545388,0.23503964,-0.5722586,-0.06770302,0.5386738,-0.24117617,0.005991923,-0.033828855,-0.089366876,0.03751735,-0.09946327,0.02009021,-0.13509564,-0.86348915,-0.079254806,-0.5632283,-0.46207795,0.45997688,-0.11937423,-0.0033447084,0.3385871,0.038127203,-0.08912208,0.5279184,0.066314645,0.93836105,0.2779511,-0.23356156,-0.23241296,0.20844495,0.40535858,-0.33910322,0.23037995,-0.24117573,0.4277954,-0.565578,0.70756453,-0.16148217,-0.58401936,0.103212155,-0.18395136,-0.1364332,0.35973915,-0.19923364,-0.028391035,0.37802026,-0.06618905,-0.37951797,-0.041913442,-0.36105162,0.18720399,0.34845024,-0.24934591,-0.14999898,-0.15743585,-0.071035914,0.57669497,0.08629823,0.5104915,0.5192066,0.072582364,-0.21845365,0.15891878,0.2959191,0.591033,-0.08998033,-0.18770166,-0.6015058,-0.4026758,-0.29115075,0.46419254,-0.026453963,0.12265343,0.25579613,-0.07782209,1.1061304,0.11946707,1.1756661,0.0011588745,-0.37559894,0.075409584,0.56685185,-0.13381423,0.04539563,-0.5079961,1.0492982,0.45149878,-0.24173129,0.062281072,-0.552752,-0.18184015,0.4226193,-0.3174092,-0.010800472,-0.2273815,-0.6214981,-0.36321315,0.1118712,0.3303227,-0.020635894,-0.24591604,0.32797056,0.26488736,-0.1748615,0.025111869,-0.72004455,-0.23079069,0.46950242,0.19509436,-0.24874626,0.20733085,-0.29199696,0.45238122,-0.75751257,0.03593528,-0.5285121,0.04992784,0.18049313,-0.38976866,0.10650065,0.13700843,0.2299563,-0.6919524,-0.18973601,-0.21352126,0.49096152,0.24719824,0.20189479,0.6463066,-0.2623327,-0.11300428,0.1670507,0.6115666,1.3213208,-0.32807776,0.15845172,0.10813502,-0.3606221,-0.5483195,0.47783732,-0.29263014,-0.096243896,-0.14673932,-0.531954,-0.65565735,0.2700786,0.15403649,0.107074074,0.009629054,-0.52976733,0.010834694,0.31303543,-0.27946335,-0.064495996,-0.16685413,0.2092075,0.5566685,0.123198405,-0.3656645,-0.12053765,0.25587016,-0.35795784,-0.33194658,-0.14625154,-0.46330193,0.16412576,0.03834027,-0.35204628,-0.22434223,0.03764067,-0.62960726,0.06435752,0.37107685,-0.24896458,0.18241335,-0.2622714,0.03763449,0.9424411,-0.1741271,-0.013445326,-0.41823485,-0.6895363,-0.8399639,-0.27645212,0.0017958283,0.26358145,0.07123633,-0.55538243,-0.100915216,-0.11913304,-0.2928409,0.11881101,-0.49771532,0.37999606,0.34902257,0.39293304,-0.45183596,-1.0664896,0.21395461,-0.020098979,-0.5409499,-0.5532324,0.46740502,0.07809909,0.83295333,0.07266058,-0.06287686,-0.012847845,-0.5447584,0.21352601,-0.2216821,0.11119362,-0.8233226,-0.19290498 -576,0.5890892,-0.2000686,-0.5983676,-0.23406166,-0.22933213,-0.022515833,-0.17893875,0.42591,0.29938233,-0.61592555,-0.05979056,-0.18933588,-0.041763086,0.40327048,-0.1464606,-0.7415271,-0.0017602555,0.120383315,-0.5089557,0.5872653,-0.44370586,0.30358297,0.1427166,0.38231277,0.13582453,0.2578746,0.15342537,-0.15451159,-0.17847583,-0.07879473,0.10079104,0.18598002,-0.68929255,0.14437705,-0.096847534,-0.3457873,-0.11008037,-0.3264109,-0.444965,-0.78250384,0.2845118,-0.8412618,0.51820654,0.00032930076,-0.38531354,0.101768896,0.22909476,0.40091074,-0.17174315,0.04713645,0.17623895,-0.1411058,-0.15910856,0.049833506,-0.2529881,-0.5672877,-0.63199556,0.10271862,-0.5041493,-0.19434261,-0.28848132,0.20433997,-0.43165982,0.045871265,-0.14874673,0.72502047,-0.34274256,0.033496615,0.49110824,-0.12907033,0.41969064,-0.55814016,-0.08462863,-0.2090658,0.12358201,-0.1462107,-0.3119505,0.18648297,0.3361264,0.6020355,0.11058536,-0.3508628,-0.29997706,0.008718297,0.25445172,0.19589642,-0.24287426,-0.56713766,-0.2506281,0.059905335,0.32100558,0.123915665,0.1644161,-0.34545037,0.0007850006,0.26881725,-0.25334057,0.5901841,0.56923205,-0.19091812,-0.2000671,0.19973889,0.5461218,0.23021315,-0.1303463,0.23248394,0.016724637,-0.53620756,-0.15500867,0.19822602,-0.22137168,0.46574724,-0.26741076,0.20175074,0.7084892,-0.24700382,-0.006748289,0.15907937,-0.076035485,0.09125709,-0.41511992,-0.16589114,0.33798453,-0.61819804,0.114270836,-0.3093584,0.8155747,0.1784086,-0.68202096,0.33957404,-0.5637313,0.26383263,-0.059350938,0.56655276,0.8116893,0.43557423,0.22525641,0.80890644,-0.5382019,0.09723821,-0.22456807,-0.39417472,0.17569914,-0.3280535,-0.05363685,-0.42241442,-0.119872645,-0.046907585,-0.2067653,-0.0039136857,0.32658243,-0.65114343,-0.08767556,0.11156211,0.93392277,-0.23624292,-0.09485197,0.8543627,0.97905797,1.0079237,0.074313454,1.3461707,0.26636016,-0.23825343,0.29041123,-0.2843711,-0.82490396,0.45342338,0.34397447,-0.16692121,0.3582245,-0.02810248,-0.008091226,0.47040302,-0.49116337,0.10000838,-0.21828285,0.33750638,0.08040463,-0.25384748,-0.46626246,-0.056152966,0.0017660931,-0.04146628,0.041022263,0.17717257,-0.046926856,0.37697148,0.010420218,1.3093606,-0.26593253,0.05707058,0.09752256,0.4892866,0.2234613,-0.18540922,-0.043018322,0.13466984,0.29922724,0.23742908,-0.64502496,0.0032593533,-0.3466152,-0.47962078,-0.29525745,-0.3317631,0.044323526,-0.16787393,-0.39146987,-0.24725813,-0.14620654,-0.26998097,0.37858716,-2.5423472,-0.30539253,-0.2290149,0.2577312,-0.45669684,-0.36571205,-0.029040113,-0.5533081,0.46834686,0.36971036,0.49681616,-0.67540634,0.4576983,0.43271512,-0.5383756,-0.03905703,-0.8311937,-0.09666549,-0.1600607,0.38302743,0.07869439,-0.2644422,-0.08750364,0.20896462,0.5058576,-0.016264934,0.12142648,0.17918193,0.31138206,-0.015408374,0.60890687,0.040657423,0.5712348,-0.3404408,-0.21128242,0.42323685,-0.37228882,0.1230305,0.070315555,0.11973115,0.41123304,-0.45078146,-0.9446785,-0.7808574,-0.3592361,1.0338522,-0.14892375,-0.45058608,0.33717775,-0.46437103,-0.24949291,0.02111809,0.4273616,0.051973227,0.10680312,-1.0048702,0.089012995,-0.12569371,0.00851424,-0.0044781864,-0.06769699,-0.38312885,0.75492066,-0.19283047,0.33377331,0.4395935,0.21427989,-0.35937908,-0.5871724,0.047428645,1.2017637,0.41448307,0.21762845,-0.24327904,-0.26511028,-0.4501984,-0.08214882,0.026799962,0.5256526,0.8653494,-0.08666919,-0.0155647695,0.2755936,-0.09780209,0.18933743,-0.13225722,-0.4607998,-0.16641787,-0.09142858,0.6309335,0.51115274,-0.22500032,0.565892,-0.045756377,0.3682698,-0.15908849,-0.50304294,0.60352135,0.93695843,-0.24497813,-0.3862761,0.6526559,0.41659582,-0.3582319,0.5762291,-0.570838,-0.3125907,0.41266304,-0.07666491,-0.57686937,0.2413066,-0.530359,0.23452741,-1.0914382,0.36098862,-0.4691128,-0.47597054,-0.56505805,-0.23603293,-3.2898788,0.29004636,-0.33760783,-0.07523896,-0.18685395,-0.004565574,0.36101604,-0.5580521,-0.7970774,0.14862591,0.08164777,0.7368453,-0.11803989,0.14486408,-0.22562248,-0.19353306,-0.33840826,0.18894821,0.35020727,0.16772883,-0.017429475,-0.57798755,-0.07610783,-0.16211212,-0.41905978,0.08659232,-0.6416763,-0.6048921,-0.24120677,-0.6268021,-0.28790465,0.73985803,-0.29469657,0.023941867,-0.22801337,0.11380878,-0.01522639,0.40914205,0.059823934,0.17521903,0.17255163,-0.06533481,-0.049893126,-0.31659555,0.11335621,0.1582296,0.39985788,0.29550675,-0.25788558,0.3425447,0.6875131,0.88115597,-0.032898225,0.9381517,0.6617218,-0.07203431,0.4291582,-0.28129748,-0.36500937,-0.63740027,-0.17680201,0.036509227,-0.48810464,-0.40941918,0.08416028,-0.4022687,-0.8769498,0.6721581,-0.002475869,0.15228401,-0.13924903,0.20647313,0.43859398,-0.21027765,-0.022537336,-0.09047499,-0.22364017,-0.53432,-0.23732692,-0.62688166,-0.6609175,0.051533617,1.1115708,-0.13410999,0.10423889,-0.040709637,-0.17082775,0.011993311,0.105918154,0.00966578,0.06351787,0.54973084,-0.06235592,-0.6337208,0.350966,-0.03364496,-0.104971305,-0.64642733,0.24730355,0.7785602,-0.57645935,0.62518865,0.3841375,-0.011818297,-0.13601501,-0.5811026,-0.08853845,0.11329629,-0.24983703,0.5766267,0.22155194,-0.77281445,0.3887081,0.4368991,-0.23377497,-0.7423059,0.4794725,0.037748933,-0.078749344,-0.051124513,0.36427638,0.03638337,0.019625809,-0.19595447,0.25375807,-0.442034,0.22470064,0.44380134,-0.17495604,0.41653723,-0.2352149,-0.22240141,-1.0025403,-0.09287229,-0.59452873,-0.25799227,0.28816393,0.12861201,0.09683025,0.22322482,0.123316824,0.46849304,-0.12810358,0.08301127,-0.17788297,-0.42745733,0.45464906,0.54489166,0.33218652,-0.57456255,0.64718395,0.12504494,-0.19433811,-0.078644365,-0.03573798,0.6140777,0.0069253556,0.47211316,0.16226646,-0.14724629,0.31875074,0.9478196,0.041965324,0.52910453,0.22313285,-0.06958874,0.25016505,0.14443168,0.042383876,0.08448546,-0.5862342,-0.09203512,-0.08955613,0.20746179,0.43160358,0.1456972,0.3359539,0.013551738,-0.375629,-0.030375805,-0.06372566,-0.0076695937,-1.6085268,0.43330306,0.30265415,0.73454314,0.5204376,0.16288596,0.0557163,0.642828,-0.17733033,0.17622866,0.41120338,-0.017962836,-0.42343634,0.56972,-0.75690055,0.4725806,-0.080278575,0.05997335,0.014263542,0.031221211,0.5578009,0.8493547,-0.098386586,0.10068859,-0.19198702,-0.29952392,0.32275257,-0.41813117,0.1586625,-0.3912918,-0.25746682,0.7152585,0.50212175,0.34497938,-0.19741456,0.0122259,0.20656517,-0.074951336,0.2112662,-0.15343942,-0.0563186,0.044987287,-0.64390874,-0.28299665,0.4515119,0.26893747,0.14075798,-0.04173261,-0.18639824,0.21957234,-0.06624965,-0.10944612,-0.08136058,-0.66980004,-0.15624733,-0.39711553,-0.53791416,0.38376147,-0.2625579,0.21728048,0.14243953,0.10081985,-0.38258523,0.24300183,-0.04635209,0.62696743,-0.030391261,-0.20589837,-0.29297727,0.13955978,0.21103749,-0.2668839,-0.14406742,-0.3316058,0.102955304,-0.62127227,0.5047579,-0.14692423,-0.45151526,0.2056753,-0.14109123,0.056778662,0.40863878,-0.34895408,-0.17909974,0.25095305,-0.1689451,-0.1067653,-0.26260772,0.054027323,0.35905468,0.16685429,0.032453366,-0.12500603,-0.14194989,-0.07054394,0.4992469,0.07359575,0.30365062,0.4722999,0.12390641,-0.46460652,-0.10421114,0.3540824,0.5912633,0.09389253,-0.09259355,-0.3184386,-0.38268527,-0.3478022,0.19080566,-0.016850226,0.32883286,0.102894954,-0.42301047,0.9610723,0.1974683,1.4115216,0.03904257,-0.43641287,0.076054305,0.3466843,-0.039824348,-0.0859773,-0.47391412,0.93859684,0.5779059,-0.2617734,-0.11046122,-0.6083766,0.017484196,0.10211141,-0.25220504,-0.15804885,-0.051128224,-0.6799681,-0.28407538,0.29442453,0.33045703,0.12881392,-0.13226452,0.16162129,0.110970974,-0.056123033,0.46997973,-0.60461885,-0.028724853,0.16942069,0.4070586,0.044138204,0.056138948,-0.490628,0.35504413,-0.6434029,0.166255,-0.18969475,0.14086734,-0.07447791,-0.39037707,0.29355097,-0.03660798,0.35590088,-0.39666897,-0.36054668,-0.26983836,0.6060203,0.07548933,0.04577828,0.7615965,-0.26332203,0.053036384,0.23708017,0.60715127,1.1523252,-0.14928243,0.06084211,0.27873465,-0.2041567,-0.7201881,0.33580235,-0.35924092,0.29864603,-0.07927826,-0.44191828,-0.5372509,0.2268592,0.19599864,-0.07920509,0.06660408,-0.6164198,-0.33228987,0.35995704,-0.42972198,-0.23156035,-0.1906807,0.07907508,0.5182145,-0.2225506,-0.29823875,0.044360436,0.4477627,-0.22704785,-0.560397,-0.25717345,-0.2470605,0.33717,0.18374014,-0.37437397,0.011713374,0.08625468,-0.50059605,0.06389435,0.2679258,-0.40958703,0.029800087,-0.22096641,-0.20884353,0.7956103,-0.014606798,0.21989831,-0.5597357,-0.42184603,-0.9386667,-0.2545323,0.39169067,0.14907223,0.08248682,-0.60019326,-0.053037874,-0.16477254,0.11124322,0.09144841,-0.5124732,0.43254733,0.17501935,0.5987989,-0.07481361,-0.71755636,-0.08800026,0.27057064,-0.131196,-0.6009686,0.5826792,-0.033022497,0.9554458,0.12674862,0.19840789,0.35277724,-0.61043817,-0.05751456,-0.15722632,-0.26909545,-0.77622503,-0.01165954 -577,0.30875695,-0.23732068,-0.5509156,0.020380475,-0.07775757,0.21573271,-0.16042471,0.2370437,0.33943087,-0.3140556,-0.2869775,-0.24967133,0.03108962,0.14938688,-0.12839308,-0.6080162,-0.039513987,0.3841324,-0.69723874,0.6247476,-0.20017453,0.38167328,0.16987307,0.28259277,-0.19308577,0.10899686,0.17674303,-0.19754337,-0.011069997,-0.1752719,0.033462103,0.16042128,-0.72617173,0.29803532,-0.55062807,-0.41371223,0.02395503,-0.41389358,-0.35791743,-0.8616202,0.31479168,-0.6057746,0.78389,0.2430554,-0.22076088,0.091235444,-0.059791572,0.35040754,-0.14591067,-0.021778408,0.19737607,-0.084534526,-0.19315046,-0.29950133,-0.10122065,-0.24640599,-0.5931551,0.17386627,-0.42783633,0.10735299,0.047664046,0.25248474,-0.09782236,0.15672965,-0.23033835,0.41490257,-0.4346089,0.12325244,0.31824362,-0.089824006,0.1259662,-0.55042994,-0.04118338,-0.07855174,0.341714,-0.2064736,-0.17626145,0.17746201,0.007232261,0.727817,-0.012938603,-0.2820123,-0.0062082605,0.10427625,-0.18095607,0.60239285,-0.16800708,-0.22115935,0.05349541,0.016097583,0.3254129,-0.004092155,0.029667366,-0.3274515,-0.083820485,-0.45719415,0.02122105,0.13025256,0.6856677,-0.37393227,-0.16089816,0.19962679,0.5914565,0.115316786,0.13804054,0.016613288,-0.022812216,-0.5253016,-0.21190023,-0.19139606,-0.3077919,0.6490657,-0.11219948,0.17853087,0.3760678,0.071468815,-0.106693715,0.18272549,0.048611864,0.046948437,-0.093550205,-0.5131338,0.47397944,-0.38039038,0.055988837,-0.29459298,0.48457634,0.11313565,-0.65314454,0.4204368,-0.50095284,0.13493507,0.24736223,0.6549016,0.6768552,0.57801753,0.14272204,0.5982813,-0.5261807,0.11637611,0.04330199,-0.10527272,-0.009147707,-0.09028278,0.015975833,-0.43576905,-0.04664735,-0.18043266,-0.18382664,0.07660591,0.2611586,-0.7334806,-0.18833233,0.044510677,0.73411644,-0.22130762,0.042583276,0.8984998,1.0798584,0.8608481,0.02389109,1.2696856,0.35108408,-0.30779395,-0.09423815,-0.21001281,-0.77169216,0.05849112,0.22792415,-0.15362176,0.50610274,0.13599914,-0.19531833,0.50256336,-0.78869647,-0.07847865,-0.08912552,0.15883023,-0.16515715,-0.059592508,-0.41019338,-0.13379188,-0.05173064,0.007262202,0.22321743,0.2765981,-0.29152817,0.2918953,0.23864177,1.278384,0.006237356,0.07697312,0.19608341,0.08385578,0.2279497,0.02895184,-0.14303507,0.28020057,0.26842928,-0.1354166,-0.37022933,-8.608699e-05,-0.31450573,-0.22217448,-0.3069296,0.099292345,-0.09240966,0.093743704,-0.3874832,-0.3612576,-0.15477608,-0.18208441,0.267108,-2.3976054,-0.27875438,-0.092753544,0.5635427,-0.356765,-0.30749854,-0.10918541,-0.5103745,0.42617834,0.29942995,0.18837102,-0.62550175,0.31059062,0.34749037,-0.6133396,-0.22478034,-0.49930948,-0.05378728,0.118503965,0.19512777,0.05648091,-0.14491293,-0.03789967,0.01841266,0.21220715,-0.18633607,0.0014980823,0.40300083,0.39017183,-0.016731199,-0.019689139,0.11694424,0.49014297,-0.4409235,-0.110989414,0.41778454,-0.36657575,0.30880007,-0.30414227,0.09712258,0.35038173,-0.40890482,-0.48978838,-0.54311466,-0.19212088,1.0349672,0.0325796,-0.4342481,-0.058551725,-0.19449463,-0.27344942,-0.061776917,0.6247255,-0.1961574,0.08984327,-0.8809312,-0.2067225,-0.07276475,0.5115566,0.123275846,0.06224127,-0.69402605,0.5784663,-0.15292431,0.41871956,0.5958113,0.32212335,-0.23970181,-0.5746766,0.15561633,0.96350783,0.53127116,0.12405588,-0.19219358,-0.00824819,-0.19522366,-0.02106743,-0.1908659,0.7129907,0.60977674,-0.17959747,-0.0647892,0.244464,0.21213225,0.120977394,-0.26786283,-0.37305415,-0.14142475,0.03266246,0.61546886,0.84394735,-0.34202766,0.045256678,-0.094921626,0.56654644,-0.14931239,-0.48324922,0.5028548,1.0408088,-0.21037538,-0.042978983,0.6573549,0.23960139,-0.2664522,0.44006214,-0.82553935,-0.5124615,0.4101244,-0.06327049,-0.48992112,0.22749239,-0.2622321,0.22017483,-0.8569752,0.6063887,-0.1553784,-0.1040317,-0.80795187,-0.11754202,-1.7949547,0.18372704,-0.41390812,0.1504069,-0.06970821,-0.06851111,-0.0030867895,-0.48137733,-0.6394722,0.23777552,0.08460213,0.3375456,-0.13112755,0.25302154,-0.09203663,-0.49118474,-0.1403241,0.31054,0.34065354,0.16872296,-0.09279574,-0.3018907,-0.06052347,-0.0913714,-0.13878576,-0.020103374,-0.6487025,-0.37958303,-0.24560426,-0.668917,-0.083635256,0.5057735,-0.35868347,-0.005371928,-0.2941141,-0.02213604,-0.038024902,0.17478947,0.15418641,0.2821516,0.040797565,-0.10983152,0.026413647,-0.29576862,0.29928428,0.14535053,0.069769576,0.3680803,-0.19705552,0.113422886,0.12998027,0.90153337,-0.14946267,0.66935617,0.46311855,-0.10061861,0.2982648,-0.17156452,-0.45906308,-0.51935947,-0.24597107,0.031469658,-0.33074743,-0.3378603,-0.103685535,-0.5065046,-0.74955446,0.4218085,-0.121585384,-0.16824761,0.16536249,0.27098784,0.5265313,-0.36835453,-0.062271748,-0.05080213,-0.027995484,-0.3616832,-0.2864399,-0.41252604,-0.42568982,0.053158727,1.10739,-0.022471985,0.23603389,0.2801949,0.01955978,0.014550511,0.12491504,0.09873848,0.08163194,0.62078315,-0.08539912,-0.64751357,0.35280043,0.011757779,-0.4533725,-0.6553782,0.3733365,0.5216087,-0.6952555,0.5120479,0.5170691,0.0073513826,-0.08218776,-0.4939698,-0.19926356,0.11182262,-0.27727333,0.36368644,0.14704797,-0.28926516,0.2632314,0.2562749,-0.3290424,-0.91848904,0.44327745,-0.0027703205,-0.605399,0.10542736,0.46940354,-0.21654813,0.038193814,-0.09217066,0.08316677,-0.1413496,0.20373707,0.0956423,-0.22902384,0.2545434,-0.4542141,-0.115322046,-0.96887964,0.23813233,-0.6237573,-0.37991816,0.22129545,0.1206876,-0.10253919,0.15845622,0.2943081,0.5194014,-0.36697206,0.14784545,-0.16895501,-0.3008422,0.38052547,0.38049126,0.39451092,-0.29214084,0.58353215,-0.094728105,-0.011761779,-0.38824856,0.08526671,0.4528677,-0.114576206,0.27624387,0.12290964,0.10837509,0.19101359,0.61310446,0.14635988,0.35444894,0.24401043,-0.100552,0.21011576,0.05251195,0.024707533,-0.077834256,-0.4529288,0.06840513,-0.12758408,0.010935041,0.42934623,0.23878829,0.4577758,-0.19628035,-0.48049024,-0.0065149567,0.2901959,0.24794634,-0.9537984,0.12679379,0.07089831,0.70068604,0.5220641,0.27551812,0.036733177,0.4603505,-0.13396484,0.038553525,0.3857851,-0.06865587,-0.21791573,0.4684265,-0.45935196,0.41354102,-0.020807164,-0.01751829,0.056545556,-0.17880109,0.18695037,0.8107521,-0.13789962,-0.056508437,-0.17901729,-0.06897602,-0.03999362,-0.44022855,0.2707835,-0.43183377,-0.46157494,0.7736176,0.36928004,0.33497033,-0.3155926,0.13001898,0.081611685,-0.17881319,0.22933514,-0.023690943,0.20620058,0.08597153,-0.502122,0.036384534,0.50316554,-0.07522722,-0.09394882,-0.049317397,-0.22909828,0.11315915,-0.27450985,0.0014397621,-0.04451101,-0.9394423,0.027865108,-0.40045387,-0.16432495,0.58292603,0.05311271,0.18829659,0.07964978,0.10609916,-0.46332327,0.36529955,-0.1273016,0.8426796,0.40358713,-0.07492551,-0.16536264,0.46132082,0.27768594,-0.2598599,0.30697045,-0.2377331,0.25238138,-0.5684318,0.41875497,0.17453334,-0.10912761,0.073705226,-0.19498275,-0.025232488,0.51378137,-0.17941692,-0.22885376,0.28252602,-0.1233543,-0.21183176,-0.28609765,-0.23318526,0.15376534,0.4254139,0.08984542,-0.077321865,-0.122767575,-0.44337854,0.5232205,0.1873321,0.29044473,0.46696955,-0.026965046,-0.47554347,0.10007569,0.0028649806,0.37434858,-0.10908322,-0.23592915,-0.22526945,-0.66028976,-0.3063315,0.2589693,-0.15772691,-0.008799124,-0.019013064,0.0843839,0.8461443,0.3204705,1.1517533,-0.018695457,-0.16455005,0.0952424,0.51884925,-0.018593272,-0.10142032,-0.5231334,1.2538445,0.5636701,-0.013622617,-0.07398537,-0.06948369,0.047553502,0.07240848,-0.08541016,0.008189702,-0.025112264,-0.58271855,-0.29062957,0.11233744,0.42498967,-0.17274027,-0.08711884,0.11478182,0.10815137,-0.056793258,0.27125868,-0.5304956,-0.14045702,0.40189824,0.12559931,0.013859517,0.21315853,-0.36363462,0.5007908,-0.44936934,-0.10480785,-0.4702214,-0.11083461,-0.17330518,-0.31109968,0.22652458,0.1301097,0.2486796,-0.69730747,-0.31212664,-0.38920414,0.21399908,0.25107196,0.043890648,0.58270395,-0.14461906,-0.09121613,0.053301208,0.5714465,0.9181402,-0.48418587,0.13768409,0.35253653,-0.44745195,-0.49675757,0.22122195,-0.17225622,-0.09647258,-0.22898223,-0.21614389,-0.5533932,0.15586954,-0.04637867,-0.07601942,0.07173834,-0.82869405,-0.03693197,0.3402783,-0.35844052,-0.090085946,-0.27146503,0.23696774,0.7532984,-0.119608484,-0.44930997,0.04372888,0.19328038,-0.3652681,-0.8128728,0.0046399315,-0.44282493,0.21353486,0.19771074,-0.22662917,-0.27527043,0.24351908,-0.5549062,-0.004639558,0.31504872,-0.4154654,-0.062618025,-0.35130814,-0.06409898,0.7001963,-0.09384561,0.13737965,-0.5197547,-0.39380997,-1.2113746,-0.2642487,0.46410522,0.28296965,0.10271514,-0.8266974,-0.087110676,-0.27232197,-0.108240195,0.041815814,-0.0629107,0.37401542,0.35214588,0.64689696,-0.34437168,-0.88213295,0.08856284,0.036660507,-0.38638318,-0.34303126,0.2020476,0.3800115,0.8403492,-0.055757858,-0.023849169,0.40861008,-0.825923,0.13935511,-0.16004257,-0.115079165,-0.663573,0.0068027335 -578,0.5631794,-0.18610334,-0.63841903,-0.15219802,-0.3376785,0.113472715,-0.25132173,0.63303936,0.24251544,-0.5905495,-0.28256452,-0.20788836,-0.06658968,0.53314495,-0.18187504,-0.67204463,0.025385298,0.11375891,-0.5092734,0.47517666,-0.3802408,0.2580156,0.18432382,0.41033933,0.28770405,0.24210289,0.21593422,0.027130716,-0.21907762,-0.2421665,-0.0870444,0.12867185,-0.79801446,0.108062044,-0.18009862,-0.38294014,-0.13466729,-0.3765911,-0.28914303,-0.8353172,0.33030704,-0.89612985,0.5600221,-0.15670958,-0.31563032,0.15840858,0.16469975,0.35730827,-0.23777655,-0.01847624,0.06613573,-0.06762272,-0.11123125,-0.030432027,-0.25641188,-0.3421731,-0.65738267,0.110951945,-0.39654365,-0.1685879,-0.25550747,0.19430935,-0.29101044,0.34054714,-0.1172512,0.48423105,-0.4077343,0.0058721006,0.39687836,-0.20795627,0.14833164,-0.64110297,0.028657341,-0.25075212,0.19973251,-0.03594597,-0.21965155,0.34069148,0.3061444,0.54329526,0.20789571,-0.37806553,-0.3025752,-0.072820365,0.13064641,0.36361545,-0.15300551,-0.3798846,-0.24449699,-0.105242714,0.31134158,0.17357285,0.23844482,-0.32974863,-0.09556766,0.03769624,-0.3739017,0.31385073,0.48023218,-0.33229902,-0.23561338,0.3685441,0.4806109,0.096695796,-0.09599431,0.11495894,0.012187259,-0.6430717,-0.14595607,0.06523456,-0.2213881,0.53944224,-0.12768386,0.22195895,0.69108295,-0.19402535,0.0348474,0.109205544,-0.1419862,-0.239363,-0.42960727,-0.23844343,0.16011359,-0.54571146,0.20305392,-0.17217262,0.8560807,0.2371689,-0.73565096,0.34865448,-0.5398913,0.14487638,-0.13147563,0.46795157,0.7072539,0.5556216,0.16213277,0.7560142,-0.3420601,0.09942372,-0.19973245,-0.36875477,0.08196516,-0.29191083,0.049687684,-0.34767348,0.058553092,-0.15405314,-0.04684944,0.03573684,0.47540322,-0.4710226,-0.14248551,-0.0852994,0.8537127,-0.31987324,-0.16027609,0.80833036,0.82984334,1.0384836,0.06384693,1.1818525,0.33054268,-0.09903662,0.23494142,-0.09764572,-0.695835,0.39686108,0.3549968,-0.20693666,0.2723552,-0.028794909,-0.032667458,0.5408758,-0.25939977,0.051630966,-0.18709019,0.20852305,0.12448664,-0.12629098,-0.29875186,-0.27773538,0.16444959,0.026444886,0.11445971,0.28578418,-0.08965774,0.5012889,0.103452265,1.7584224,-0.077641346,0.04426726,0.17653623,0.50255847,0.1426307,-0.24188942,-0.05114522,-0.070431806,0.3817663,-0.008139089,-0.56427443,0.034169503,-0.21921018,-0.5114731,-0.17445374,-0.3095612,-0.18682848,-0.24321681,-0.57472897,-0.25483578,-0.055635117,-0.20509884,0.42497665,-2.3591573,-0.25272927,-0.20782676,0.27135387,-0.4899035,-0.38342273,-0.13721123,-0.5614024,0.4482622,0.25666526,0.4697277,-0.64012134,0.47510543,0.3942469,-0.4609208,-0.16109052,-0.5790582,-0.06658878,0.06359802,0.18319732,-0.016684007,-0.28243923,-0.078218326,0.07389166,0.5997834,-0.07066393,0.12616006,0.3062261,0.32704678,0.0047870465,0.57534957,-0.18771999,0.5907061,-0.4508853,-0.16513695,0.49004415,-0.36092496,0.17770186,-0.16779289,0.13722686,0.40675998,-0.5171025,-0.8577569,-0.81139624,-0.382092,1.1750727,-0.2622526,-0.43418244,0.23662426,-0.22497281,-0.064425185,0.036942184,0.46103108,-0.06001399,0.17942634,-0.72522014,0.113309465,-0.08966681,0.20288579,-0.024539037,-0.017235406,-0.34897956,0.6708213,-0.10679149,0.40368262,0.43200004,0.25265774,-0.21418089,-0.5569642,0.16144006,0.96673584,0.40777558,0.12105319,-0.3063361,-0.19749966,-0.46391603,-0.1950177,0.04198038,0.5187918,0.7513813,-0.029945323,0.07633875,0.20382291,-0.023915153,0.037296347,-0.18058263,-0.3699744,-0.1977256,0.026477233,0.6034975,0.5793223,-0.096957624,0.4948063,-0.2708126,0.4371876,-0.19053498,-0.526981,0.5854699,0.68017066,-0.35569584,-0.33659637,0.5403422,0.36398193,-0.16073878,0.52884394,-0.7258004,-0.5001755,0.37396792,-0.09747006,-0.4456358,0.09792076,-0.34437522,0.041787,-0.93220013,0.21222487,-0.4690969,-0.20784257,-0.42186123,-0.28152156,-3.1914923,0.20608908,-0.0857282,-0.09526835,-0.16147196,-0.18078074,0.25512758,-0.5772948,-0.73624694,0.055871952,0.041844204,0.70335424,0.04117952,0.20353673,-0.33629966,-0.1595168,-0.2988745,0.18852049,0.21689543,0.3236006,-0.035179406,-0.48738134,-0.09756607,-0.15832542,-0.5845926,0.07727915,-0.6555586,-0.61935914,-0.2706353,-0.44473407,-0.32011446,0.6699634,-0.38257492,0.15349793,-0.13361508,0.06668735,-0.124081634,0.32673472,0.040075924,0.10539723,0.24735202,-0.074546285,0.0626532,-0.35040373,0.20821223,0.15107343,0.36322492,0.29304802,-0.12150283,0.28649262,0.6083141,0.7254995,-0.09207311,0.793019,0.49757606,0.005024396,0.37379575,-0.19541752,-0.3730977,-0.43019593,-0.17056465,0.099417865,-0.39785767,-0.31847274,0.13620052,-0.30949777,-0.7430104,0.55068505,0.14313197,0.025609866,-0.021187332,0.108890705,0.4376266,-0.28505126,-0.05410602,-0.061663445,-0.1742093,-0.67067134,-0.49451008,-0.6506497,-0.64789706,-0.013280243,1.1855291,0.0011203121,-0.03907933,-0.028783284,-0.1691791,0.09718488,0.065241694,-0.051026374,0.0021096058,0.44932976,-0.15393433,-0.73979354,0.41399503,-0.11974183,-0.09513511,-0.57744724,0.2956984,0.61888206,-0.6155733,0.38300896,0.4017218,0.11369741,-0.11124933,-0.5897898,-0.056054175,-0.08715209,-0.23208734,0.3813395,0.22997731,-0.7834917,0.46072724,0.4277109,-0.25383222,-0.7606696,0.48983648,0.032138895,0.030940467,-0.0073815733,0.3798641,0.2177813,-0.035217788,-0.22581004,0.08937333,-0.495937,0.13228494,0.32852405,-0.013469765,0.44040683,-0.23862335,-0.103351295,-0.7142814,-0.10216081,-0.4926256,-0.26211697,0.14529991,0.008593753,0.1480366,0.11662265,0.19194117,0.33590204,-0.21984038,0.06350644,-0.06901513,-0.37885654,0.39701,0.42457443,0.58791727,-0.4326768,0.607956,0.09459415,0.019461669,0.27243268,-0.042759728,0.43703288,0.100040525,0.40962854,0.10233131,-0.15393631,0.059176445,0.8157853,0.13057917,0.38555542,0.10608289,-0.2578679,0.18117094,0.05616466,0.11828403,0.16818842,-0.69589114,-0.1258885,-0.20260273,0.10146442,0.6172918,0.29552013,0.4241581,-0.0056350864,-0.25800288,-0.045389496,-0.04414676,-0.19365463,-1.5591581,0.33676344,0.1917966,0.88829434,0.42489618,1.956895e-05,-0.040512584,0.55891657,-0.17690703,0.21809271,0.48649308,-0.027614981,-0.47995612,0.50991416,-0.693201,0.49685484,0.06541486,-0.0036301771,0.024710093,0.056816842,0.4868039,0.8692323,-0.08853367,0.11883144,-0.0660508,-0.37999296,0.27377406,-0.51560414,-0.02328381,-0.35164428,-0.25105152,0.71307325,0.4375137,0.2984755,-0.18953186,-0.053687513,0.11895389,-0.08626924,0.0964989,-0.09329736,0.05711059,-0.042599697,-0.5529783,-0.31481418,0.52741426,0.010480449,0.29024947,-0.0016052872,-0.29423234,0.24892813,-0.18137202,-0.15519565,-0.120834574,-0.72284234,-0.06557655,-0.54552466,-0.3778561,0.15818964,-0.11611902,0.15971312,0.1292331,0.05569133,-0.35860196,0.4529858,-0.003955722,0.6879262,-0.076611996,-0.22194871,-0.28365457,0.105580576,0.24846351,-0.3554541,-0.022696912,-0.18416806,0.023321431,-0.5084202,0.27871716,-0.16163051,-0.3652103,0.33245313,-0.08608423,0.03602653,0.48561126,-0.14843896,-0.042601444,0.14751631,-0.07581889,-0.24202831,-0.18839753,-0.09319511,0.2794014,0.26202577,0.08132351,-0.059976652,-0.116194345,-0.0005816519,0.50923115,-0.03550728,0.38706607,0.5165174,0.029134825,-0.45018697,-0.12961477,0.30602446,0.6073191,0.081654966,-0.10400681,-0.43401337,-0.35647818,-0.2683884,0.34269586,-0.16949959,0.3423205,0.030174403,-0.40431315,0.80367404,0.06741674,1.2114112,0.13198866,-0.3709944,0.07957843,0.3765229,0.047627658,-0.023194423,-0.45502388,0.9111536,0.4084513,-0.109091535,-0.19310312,-0.35201383,-0.087526545,0.15324156,-0.2883254,-0.19398499,-0.19012555,-0.662942,-0.25602266,0.2413392,0.2959768,0.13537769,-0.14373086,0.124847546,0.21989924,0.05511567,0.41271523,-0.5333202,-0.14317255,0.45205608,0.35814393,-0.094935834,0.1334166,-0.50330657,0.3583563,-0.57614523,0.12326166,-0.2800999,0.142063,-0.046745814,-0.2240711,0.3259279,0.083070256,0.39128608,-0.33986893,-0.43358323,-0.27716047,0.57735807,0.10720307,0.22944303,0.6275444,-0.21146728,-0.038963232,0.06892959,0.6284547,0.96403253,-0.25937292,0.19229619,0.32073593,-0.2528792,-0.6010747,0.39374256,-0.23848389,0.18160255,0.004832506,-0.20201929,-0.5590482,0.34784055,0.16074309,-0.06398767,0.23621319,-0.6802348,-0.24639368,0.31092864,-0.29314926,-0.18359166,-0.3911813,0.13014689,0.6345159,-0.17279163,-0.20697737,0.15538949,0.40602142,-0.14431605,-0.36502314,-0.17648259,-0.2573729,0.07470739,0.09801857,-0.2920606,-0.14856078,0.022170164,-0.53842986,0.11397131,0.18413557,-0.31733593,0.055183973,-0.2639198,0.082199134,0.85452276,-0.022435501,0.21056457,-0.5736803,-0.4750725,-0.7902595,-0.40527377,0.34456202,0.21980336,-0.0669743,-0.53910524,-0.20018724,-0.14957173,-0.006578028,0.012867775,-0.37655395,0.434303,0.030982424,0.47348318,0.057783265,-0.6400362,0.14539367,0.07647619,-0.11268194,-0.4484209,0.5372536,-0.12390475,0.888038,0.008288976,0.044465527,0.16084619,-0.52092844,-0.029768988,-0.20629185,-0.17377836,-0.70528364,0.095994815 -579,0.5335504,-0.47940782,-0.53678036,-0.14916216,0.016672673,-0.13496001,-0.09117677,0.8210806,0.31645492,-0.36511105,-0.26760226,-0.2652327,0.075405605,0.66012675,-0.06949621,-0.66344756,0.0487154,0.26444858,-0.52026314,0.7481466,-0.39180744,0.15226668,-0.04463575,0.48981667,0.26072675,0.39340603,0.14955455,-0.11691294,-0.196379,0.07823979,-0.04234005,0.0956727,-0.46505365,-0.030652784,-0.16366991,-0.4734084,-0.14122863,-0.53023183,-0.52725255,-0.8184048,0.296051,-0.8899068,0.6193447,0.060695324,-0.3413291,0.19494213,0.07334008,0.4080958,-0.4193327,0.026266104,-0.0049125,0.100966446,-0.02639739,-0.1661266,-0.2265036,-0.64497334,-0.66357607,0.07582159,-0.27691406,-0.022220904,-0.07929592,0.012628313,-0.3516036,0.013916644,0.03491296,0.40476924,-0.5063351,0.019106453,0.2685239,-0.106072165,0.21193595,-0.52689844,-0.3560713,-0.27776912,0.32542327,-0.06322213,-0.22934757,0.2610744,0.4368765,0.5800199,-0.049757328,-0.14360671,-0.30437967,0.096973725,0.04305039,0.5991965,-0.23499058,-0.77737653,-0.20666213,-0.047431782,0.34852856,0.14670266,0.33480185,-0.2591445,-0.059357252,-0.01688915,-0.35096473,0.37812427,0.5600035,-0.4051505,-0.25751448,0.32720307,0.48156434,0.2677748,-0.23455343,0.062921874,0.04843397,-0.5090211,-0.16563722,0.024883877,-0.24606484,0.8581448,-0.2533431,0.27235544,0.6715229,-0.15723892,-0.025561506,0.057841714,0.0769046,-0.28141716,-0.24602006,-0.33798045,0.33133787,-0.3177666,0.026245588,-0.2669365,0.64405894,0.35966328,-0.6706895,0.32298043,-0.57482344,0.31220138,-0.1814653,0.40215448,0.7109206,0.40193412,0.29401472,0.5722818,-0.37794217,0.055095494,0.1755569,-0.35888675,0.08047152,-0.26270312,-0.20579177,-0.5937798,0.19863376,0.22204265,-0.17818269,0.19487958,0.73287106,-0.6158228,-0.22356099,0.05191581,0.85054016,-0.25762737,-0.16177124,0.9682464,0.9448686,1.0969008,0.03639323,1.3829207,0.4719114,-0.26612532,0.29013866,-0.3297728,-0.88254637,0.24646765,0.37611207,-0.65689826,0.62839234,0.0007023107,-0.2442884,0.5401259,-0.2925832,0.06748976,-0.23299819,-0.101274915,0.065553434,-0.36107796,-0.5773333,-0.39921352,-0.27394345,0.038713466,0.15901622,0.27027166,-0.142002,0.4593128,-0.00020168045,1.7029877,-0.006571022,-0.011107043,0.019937364,0.71739376,0.16839193,-0.21806854,-0.030263739,0.26695308,0.51737034,0.17198052,-0.67539716,0.014261051,-0.2930958,-0.6428869,-0.16964155,-0.29903692,-0.06599615,0.07802967,-0.5347778,-0.24028358,-0.26471633,-0.062698156,0.36788273,-2.263115,-0.33015433,-0.31524917,0.5397016,-0.32690445,-0.28745213,-0.24742395,-0.3853656,0.25333416,0.41871712,0.58063835,-0.9622627,0.47244385,0.31263384,-0.5968783,0.03552562,-0.61471236,-0.15377563,-0.07458801,0.41865423,-0.14932369,0.003583919,0.4475973,0.16752501,0.4835451,0.103152126,0.20365883,0.3240867,0.4739561,-0.0033985486,0.26322058,-0.09614728,0.5780589,-0.27843294,-0.17379631,0.18748488,-0.42819852,0.1422618,-0.14492902,0.17268233,0.47010812,-0.68684393,-0.9988428,-0.5801354,0.056350384,1.1607347,-0.2601903,-0.46463454,0.18649782,-0.3133798,-0.23221658,-0.15784146,0.53275454,-0.1555923,-0.04910065,-0.95769143,-0.03856539,0.026963824,-0.07444433,0.014716185,-0.097759224,-0.21462923,0.6719954,0.046935562,0.54701436,0.25241697,0.18960375,-0.2304411,-0.6638826,0.08922216,0.8376261,0.3764384,0.2289938,-0.12578359,-0.23221599,-0.60828876,-0.08546542,0.21340461,0.39114368,0.70422083,-0.13656941,0.1095784,0.3990138,0.21012749,0.2454034,-0.13215876,-0.3598552,-0.29841363,0.007140127,0.6013964,0.8566509,-0.5762988,0.49666223,-0.15364324,0.18494043,-0.0027471618,-0.53980374,0.77803457,1.1412811,-0.30922368,-0.29556015,0.6882193,0.49853298,-0.59715027,0.5323547,-0.60993123,-0.27356455,0.3566869,-0.063342065,-0.29738402,0.29566777,-0.35681772,0.32238638,-1.0715063,0.44851044,-0.30532143,-0.16408409,-0.49745095,-0.008640966,-3.6034882,0.43784705,-0.32880434,-0.21938218,-0.31113642,-0.18571825,0.10175278,-0.7815845,-0.72102284,0.2928925,0.054363597,0.7273489,-0.022729905,0.1514623,-0.2758989,-0.3194044,-0.3048565,0.030140894,0.13142352,0.4786018,0.04462892,-0.68254703,-0.22238235,-0.030675411,-0.42944872,0.25351745,-0.84069306,-0.50840145,-0.11014816,-0.65697896,-0.3537777,0.60550404,-0.18531333,0.0811849,-0.23921989,-0.039109465,-0.3366269,0.39468578,-0.17558599,0.05631192,0.022053735,-0.07641663,0.20427479,-0.078729674,0.19953305,-0.050530933,0.45503023,0.08587087,-0.25950655,0.24284229,0.65014225,0.7948342,-0.029194105,0.74858755,0.7663451,-0.07550302,0.34670356,-0.21899462,-0.09690084,-0.5159811,-0.46587422,-0.08808423,-0.45227745,-0.65825444,0.04389495,-0.36519775,-0.9144078,0.5224741,-0.022842916,0.45345366,0.08685675,0.097419545,0.636844,-0.048894044,0.101275064,-0.16328268,-0.35192037,-0.65559494,-0.08323758,-0.77423745,-0.3997513,0.5093049,0.8475531,-0.20263553,0.05260018,0.05838656,-0.40769145,-0.04784386,0.27511004,-0.07511556,-0.016874898,0.30671015,-0.3493674,-0.8001661,0.3970949,-0.0956507,-0.27378055,-0.53308845,0.18489023,0.51328593,-0.71157736,0.7929213,0.41013864,-0.029411769,0.002765287,-0.5363782,-0.44666204,-0.06092213,-0.10294983,0.3324815,0.3505402,-0.8888481,0.34596923,0.44242936,-0.38725746,-0.6210863,0.82975936,-0.12959868,-0.060826167,-0.10381877,0.30998152,0.1529199,-0.12149321,-0.4086548,0.28891665,-0.5252264,0.30489942,0.2702584,-0.15147215,0.36994556,-0.0392836,-0.005308953,-0.9701923,0.063982576,-0.6275556,-0.1194864,0.3938255,0.14530845,0.26823303,-0.27170038,0.19192408,0.2461595,-0.3473693,0.15660642,0.013761184,-0.35961255,0.3913964,0.34743536,0.475039,-0.5008641,0.65461403,0.04510316,-0.17936529,0.16661173,0.18448947,0.44809473,0.4065132,0.41927183,0.25951192,-0.39915457,0.2857534,0.7816,0.3071435,0.4443163,0.32640374,-0.07081887,0.35938975,0.24799977,0.19818354,-0.089015,-0.43312645,-0.26741326,-0.1545496,0.2651122,0.6133397,0.22224626,0.42043492,-0.23066579,-0.38334426,-0.03783158,0.17564797,0.19289559,-1.5214137,0.23997559,0.35668924,0.7502617,0.5248682,-0.22972474,-0.094364114,0.52749354,-0.21370386,0.17361456,0.43719274,-0.024090929,-0.77073824,0.6722616,-0.5459728,0.4252691,-0.11578999,0.070311636,0.048042916,0.25483555,0.3050409,0.65949625,-0.031132845,0.054031182,0.02127256,-0.40902576,0.008867248,-0.47371358,-0.06835442,-0.63398844,-0.10062745,0.6751812,0.5017461,0.38426608,-0.26083025,0.05913677,0.10553408,-0.16155137,0.19590427,0.058504775,0.2452282,-0.10861272,-0.9600842,-0.1550054,0.521906,-0.06645174,0.27693808,0.1337563,-0.44760647,0.37806797,-0.30226794,-0.08796225,0.03987214,-0.8703428,-0.1699719,-0.3280047,-0.45170593,0.55327857,0.14206572,0.2526962,0.2803628,0.10368762,-0.48788893,0.23494096,-0.34304747,0.8409023,-0.22801374,-0.45966598,-0.4629157,0.13653885,0.3541268,-0.1892951,0.17795339,-0.35482457,-0.21778022,-0.43942964,0.6213569,0.3291279,-0.25267732,-0.012968648,-0.08146275,0.062143814,0.5567402,-0.39029816,-0.19127601,0.07339766,-0.09874806,-0.27410164,-0.3582341,-0.11267298,0.40963048,0.39198416,0.08477941,-0.19143124,-0.087590046,0.11355701,0.5333218,0.003947908,0.31308773,0.64464974,0.33503968,-0.2931175,-0.19687085,0.51404244,0.42669305,0.093742706,-0.31785235,-0.48515767,-0.7324774,-0.36785355,-0.19236611,-0.1547772,0.4748963,0.08396513,-0.25104943,0.8181667,0.060273565,1.3487236,0.06463163,-0.5820632,-0.020313136,0.47845563,0.0519145,-0.20252861,-0.21635456,1.0364845,0.6831332,-0.17168091,-0.22671801,-0.5328111,-0.24519318,0.20612575,-0.33549574,-0.2574619,0.13715924,-0.56350446,-0.42486325,0.16140951,0.23400931,0.38420218,-0.13863967,0.43304902,0.26863915,0.041105837,0.2607714,-0.56581765,-0.47156173,0.1968533,0.31857386,0.047101382,0.20698506,-0.46038055,0.2839603,-0.6024319,0.12181113,-0.28326187,0.2653574,-0.09898431,-0.57689685,0.2121916,0.04591838,0.45260173,-0.43470535,-0.46917212,-0.26025277,0.7108484,0.07320866,0.09272463,0.6089163,-0.43118897,-0.10295456,0.1081432,0.58140415,1.1542993,-0.14879297,-0.057619378,0.43373358,-0.44941643,-0.92330325,0.47073528,-0.12846205,0.61951566,-0.08641022,-0.112090655,-0.98493266,0.41158706,0.1866793,-0.15922242,0.06772679,-0.46364644,-0.39242095,0.3072417,-0.33865812,-0.21195477,-0.47791308,0.20000814,0.54531693,-0.4235038,-0.3702281,0.18852915,0.13485633,-0.15085755,-0.5096975,-0.17991771,-0.45846233,0.3413144,0.19718151,-0.36022905,-0.25832966,-0.21116844,-0.42717925,0.40826112,0.15708572,-0.32214394,0.3016048,-0.5819321,-0.35510752,1.1500373,-0.34880286,0.41808262,-0.54834837,-0.40988004,-0.9117395,-0.66805744,0.57230395,0.13420822,0.02893392,-0.81562144,0.18999995,0.1150012,-0.16078101,-0.06347721,-0.24743158,0.56642413,0.11120398,0.36729088,0.060587123,-0.73785025,0.110933356,0.106592625,-0.17110328,-0.719108,0.5110126,0.050271437,1.3043381,0.1559943,0.25105265,0.4561021,-0.51210076,-0.46008274,-0.2301507,-0.2613289,-0.64050746,0.020239623 -580,0.4885347,-0.25289077,-0.46699992,-0.0979048,-0.25911012,0.2324778,-0.34496954,0.44348672,0.20120585,-0.38410687,-0.115621954,-0.25692773,0.01998992,0.36650243,-0.083439544,-0.64463586,0.180621,0.1296069,-0.4644027,0.5277572,-0.52764136,0.45015204,0.030687906,0.36630392,0.1607343,0.3507349,0.40984696,-0.020937115,-0.18022892,-0.16064101,-0.1703848,0.11864877,-0.5339615,0.2413798,-0.21353899,-0.48031035,0.11668692,-0.39363986,-0.39307022,-0.7491622,0.1774084,-0.6509248,0.61043394,-0.015406404,-0.16649884,0.20163025,0.011620972,0.393581,-0.2591617,0.23121461,0.17670864,-0.08120383,0.059682153,-0.13001208,-0.36764637,-0.65304685,-0.5114319,-0.0013227444,-0.47578177,-0.28475928,-0.1841666,0.18222168,-0.124910176,0.21405149,-0.18262051,0.29577315,-0.36741105,-0.16085404,0.2303802,-0.20984088,0.19245306,-0.5903547,-0.15267688,-0.21600345,0.19685468,-0.21223159,-0.14472921,0.23881777,0.2728689,0.41521764,-0.038805332,-0.24777012,-0.32628664,-0.11015554,0.024201604,0.5968694,-0.12358414,-0.53040963,-0.22389644,-0.07519551,0.28504592,0.08348796,0.097559646,-0.2661963,-0.015859347,-0.04538995,-0.42163822,0.3611693,0.47350794,-0.4706716,-0.22175889,0.26012987,0.46430123,-0.056198534,-0.13086917,0.020089723,-0.060784932,-0.48063117,-0.17178062,0.04009156,-0.17037536,0.5020301,-0.16876033,0.07627771,0.7519697,-0.08774932,-0.03997242,-0.16976309,-0.09170333,-0.25801986,-0.08131857,-0.2957715,0.2310445,-0.3796742,0.037909977,-0.3098878,0.6729073,0.23660763,-0.6348886,0.40397912,-0.40512478,0.090555176,-0.0036808513,0.39109933,0.60663855,0.28504908,0.07559856,0.5394586,-0.4660344,0.18977666,-0.19566312,-0.27888808,0.05723526,-0.056135654,-0.034669764,-0.46377254,0.06560878,0.019566052,-0.12499118,0.156158,0.43935156,-0.5143987,-0.078204215,0.16648486,0.7693608,-0.37336168,-0.08457614,0.7586427,1.1065634,0.89821243,-0.019810738,1.2290059,0.5413406,-0.22843528,0.07296737,-0.40438873,-0.47047505,0.25196502,0.3945468,-0.1664984,0.3942574,0.052432492,-0.09778346,0.3607835,-0.2370517,0.08264567,-0.09106867,-0.015125781,-0.043015648,-0.18637043,-0.42719033,-0.17002085,-0.0042071445,0.0050363317,0.36087382,0.20982262,-0.276099,0.46116072,0.0713186,1.4085046,-0.042758487,-0.07348443,-0.046607055,0.4105717,0.3591557,-0.07544478,0.08411601,0.23648643,0.3708953,-0.014358701,-0.43640006,0.095686466,-0.27864444,-0.39424282,-0.26971015,-0.17425977,-0.087529205,0.06951195,-0.40473688,-0.08001769,0.12087452,-0.14707729,0.33298695,-2.6873102,-0.20737809,-0.15351658,0.16278249,-0.13563067,-0.45687068,-0.073667035,-0.4976992,0.4953365,0.39486775,0.32560995,-0.53076446,0.37581658,0.43899286,-0.4395084,-0.037675183,-0.63533926,0.017364211,-0.20146665,0.55200607,0.12848555,-0.0153724905,-0.014172974,0.27628583,0.567128,-0.029559508,0.15543461,0.060698185,0.43830714,0.03919494,0.45012453,0.34612012,0.6946465,-0.24492726,-0.22827098,0.40160146,-0.42009914,0.25972015,-0.186254,0.28079787,0.35101184,-0.3132281,-0.81361926,-0.5793434,-0.31759283,0.91568726,0.088733345,-0.40460813,0.14304797,-0.008141695,-0.3402013,0.16752732,0.34610793,-0.3361598,0.06036949,-0.7796253,-0.03152149,-0.011238445,0.030377818,-0.08205041,-0.005675379,-0.43712717,0.646752,-0.050522488,0.30192727,0.32544702,0.18735558,-0.18856564,-0.52814186,0.14026843,0.89381516,0.42053014,0.19805968,-0.24221265,-0.20425105,-0.27064657,-0.08259067,-0.08050335,0.43922025,0.64390314,-0.05293377,0.087005325,0.2161721,0.07881326,0.05483729,-0.1417833,-0.26775685,0.056069918,0.107494295,0.57989967,0.579911,-0.18054798,0.38864043,-0.16528097,0.67087376,-0.14900169,-0.46681136,0.7161784,0.9216505,-0.22232544,-0.20824288,0.53867084,0.4760875,-0.29629746,0.43767297,-0.812847,-0.43123126,0.35922986,-0.077047005,-0.31507862,0.20322198,-0.28389132,0.11970186,-0.9417772,0.257522,-0.19323865,-0.27192077,-0.661683,-0.28809518,-3.8945293,0.15710995,-0.13880362,-0.10329875,0.05773163,-0.050351404,0.26053482,-0.56904644,-0.38242674,0.18336186,0.050674394,0.53183484,0.0025766282,0.17448668,-0.21374702,-0.2266314,-0.23317727,0.2131293,-0.038642786,0.28965253,-0.01760476,-0.5139637,0.19016352,-0.36560673,-0.51094025,0.04784508,-0.68870914,-0.26282945,-0.2835986,-0.5655077,-0.21109228,0.5588031,-0.39680922,0.102985576,-0.2027556,0.099142924,-0.24566963,0.34133026,0.08034062,-0.022312837,0.08188679,-0.10478833,0.08546044,-0.33367115,0.17783058,0.12214319,0.28049088,0.38633257,0.035660453,0.024022818,0.3599559,0.57897854,-0.104437724,0.64165395,0.34652346,-0.20586613,0.34558374,-0.28945592,-0.26629022,-0.46507472,-0.4722348,-0.14906052,-0.38022333,-0.5563989,-0.14366172,-0.366127,-0.62165093,0.41586292,0.042617902,-0.06855748,-0.056473754,0.16736773,0.36944306,-0.31691557,-0.012718517,-0.025881695,0.004303165,-0.40965515,-0.41569448,-0.6111665,-0.53939253,0.18436927,0.8891099,0.044032026,-0.0410683,-0.008329363,-0.17741863,-0.07314011,0.17695168,0.09944329,0.045338534,0.40238577,-0.20184693,-0.70904946,0.49013466,-0.16967653,-0.23414977,-0.5969437,0.20537496,0.5961097,-0.55739045,0.49451894,0.5088165,0.15095638,0.06387874,-0.3866427,-0.1646804,0.1248261,-0.18306091,0.52169615,0.1488244,-0.6009904,0.53587747,0.2873984,-0.3934172,-0.6357183,0.5215835,0.076607674,-0.3135634,0.1199283,0.33682415,0.0054624826,0.027871564,-0.40397692,0.10010565,-0.48673218,0.12981865,0.3160366,0.11184084,0.43361193,-0.20272577,-0.16408506,-0.862086,-0.13117498,-0.35378212,-0.26146707,0.014458921,-0.008865664,0.044404157,0.23747788,-0.11766346,0.30960488,-0.2721166,0.19158404,-0.10263555,-0.21791479,0.4090132,0.2592218,0.41171548,-0.36165243,0.53926,-0.0238909,-0.078048036,-0.06405921,-0.007547494,0.56549394,0.091553055,0.44963673,0.057041973,-0.08418225,0.35822263,0.6869269,0.2972033,0.38028517,0.23532297,-0.36271107,0.23512326,0.1334787,0.10609405,0.16329093,-0.31875363,-0.14486462,-0.1965827,0.1342093,0.39357495,-0.01767942,0.42392755,-0.09030949,-0.28647906,0.17097217,0.14817187,0.13485286,-1.1102012,0.2533441,0.23719922,0.6973941,0.4316795,0.021266904,0.06369686,0.54698044,-0.3130218,0.0670964,0.23891214,-0.028065193,-0.4254951,0.38440108,-0.5538439,0.38571757,-0.07945645,-0.024879362,-0.009470872,-0.13379306,0.40933385,0.96809727,-0.19938333,0.223427,0.08033608,-0.28810158,0.02288203,-0.34404504,0.21389571,-0.30941296,-0.34897834,0.76226604,0.45899552,0.35113412,-0.14397885,-0.061429776,0.09510672,-0.1398935,-0.10154247,0.057342514,0.18809667,-0.06967252,-0.5763221,-0.30263546,0.51597047,0.08892112,0.15955181,0.0063866638,-0.3242784,0.193236,-0.102406,0.036778323,-0.0051331315,-0.59103596,0.04077891,-0.16838607,-0.41663885,0.60283154,-0.043140296,0.23382172,0.11292798,0.092211656,-0.29025188,0.32548007,-0.008739762,0.75584173,0.097435735,-0.0997209,-0.21181937,0.14627594,0.4599234,-0.29402447,-0.08668418,-0.29826188,0.07120999,-0.644238,0.31358862,-0.007325992,-0.37867394,0.047869086,-0.13271168,0.0766907,0.44033617,-0.14427917,-0.27414823,0.27436924,0.08460435,-0.23367368,-0.1599708,-0.21789391,0.30599323,0.1308653,-0.0031184182,-0.07869819,-0.016837459,-0.1263878,0.4710097,0.033719003,0.2905451,0.33148926,0.06847809,-0.4340052,-0.0020569265,0.08469119,0.4197754,-0.07096994,-0.0713287,-0.07658261,-0.60761404,-0.47562015,0.05085089,-0.100448266,0.11026676,0.12101601,-0.30271992,0.6285364,0.10738591,1.2852006,0.029032465,-0.44045725,0.14772598,0.6012708,0.08878483,0.092987396,-0.42809308,1.0352142,0.59241647,-0.16553597,-0.07971862,-0.30428022,-0.025948448,0.14041476,-0.210224,-0.2222888,-0.13486364,-0.65946925,-0.27494374,0.23159605,0.34351355,0.1602486,-0.023542892,0.22647034,0.17401396,0.083258495,0.43753976,-0.5105617,-0.39434206,0.36210203,0.23155987,-0.09796812,0.13825274,-0.4011866,0.4090507,-0.5015365,-0.0029838458,-0.34600455,0.19798657,-0.22966269,-0.31840366,0.24140657,0.06560914,0.30459505,-0.4596185,-0.40858132,-0.18840307,0.48338988,0.15629463,0.2232779,0.6110905,-0.14705415,-0.052560378,0.016629525,0.5129683,1.0337232,-0.334482,0.044944756,0.5160154,-0.3077851,-0.5526769,0.22005898,-0.2918604,0.15480591,-0.0062187687,-0.4050933,-0.4626602,0.3993166,0.04696154,0.01345697,0.085283175,-0.50418425,-0.06707461,0.34532827,-0.28534675,-0.28947732,-0.3604617,0.389027,0.6703647,-0.31545314,-0.47589043,0.16978559,0.33570656,-0.34086645,-0.5823482,-0.105864584,-0.14727622,0.56008637,0.31792527,-0.089972585,-0.05138509,-0.049013145,-0.42147034,0.08719705,0.2892717,-0.46337986,0.1074304,-0.3556275,-0.118091345,0.72058094,-0.017656155,0.12171538,-0.7705313,-0.42492157,-0.9553791,-0.5121224,0.61049944,0.24837439,-0.1602629,-0.5643201,-0.00040219352,-0.017907236,-0.027889272,0.0045955256,-0.24651161,0.4417049,0.039365742,0.5587565,-0.1128525,-0.7961422,-0.06914139,0.2668512,-0.20307389,-0.5432202,0.36176774,-0.011562943,0.92014533,0.14745593,0.013830133,0.36176163,-0.5427001,0.080230296,-0.31183034,-0.08602801,-0.7205459,0.14482643 -581,0.23074225,-0.16917458,-0.44086844,-0.17449304,-0.4133629,0.097096995,-0.18025057,0.33731174,0.08206504,-0.36256757,-0.38152507,-0.11038833,0.0986633,0.44965115,-0.18175073,-0.35140306,-0.19739777,0.18346332,-0.741018,0.43209362,-0.6612651,0.2680188,0.1564812,0.41351536,0.20365888,0.30821383,0.16692454,-0.1791237,-0.16839796,-0.00040225982,-0.06134678,0.20606674,-0.49287593,0.0499261,-0.15722783,-0.29058412,0.013378477,-0.4469358,-0.1243748,-0.7764898,0.2819663,-1.0093015,0.43317455,-0.16132168,-0.11600022,-0.0048076073,0.31988776,0.30836505,-0.3738095,-0.046674944,0.27374706,-0.20920762,-0.27546167,-0.25182092,0.059088252,-0.33517954,-0.51921886,-0.035729602,-0.42364654,-0.27164757,-0.22263767,0.27935326,-0.39305368,0.10248285,-0.13613774,0.38555345,-0.36838678,-0.064383455,0.22779803,-0.15717982,0.10457348,-0.5756063,-0.018047087,-0.08053408,0.53931767,-0.16027841,-0.1427925,0.36798328,0.29847747,0.36694938,0.15216129,-0.30369392,-0.21102455,-0.06040474,0.15485582,0.51292413,-0.17189728,-0.4233757,-0.04206724,0.1287557,0.26374528,0.33952764,-0.016916787,-0.2025004,-0.028111044,0.0031658174,-0.26461986,0.33659703,0.5052601,-0.20359488,-0.34779993,0.37015226,0.61309177,0.20998819,-0.14062041,-0.10239234,-0.05827687,-0.613658,-0.12802796,0.21346456,-0.19431664,0.44537324,-0.1912067,0.15719248,0.9476353,-0.11372997,0.047382012,-0.12129662,0.039686084,-0.25407004,-0.24680918,-0.31215745,0.17922713,-0.5278517,0.20854566,-0.31067926,0.7496801,0.15406232,-0.6541331,0.44278854,-0.6231754,0.14320016,-0.059974615,0.4765772,0.62804615,0.3789411,0.4207622,0.77742326,-0.31339934,0.09639835,-0.09288405,-0.46454015,0.08056275,-0.27324137,0.16887306,-0.3987565,0.12465104,-0.050496563,0.045582645,-0.07494116,0.49589223,-0.5546652,-0.0145327095,0.1561912,0.6667818,-0.43198618,0.018205702,0.7247301,0.9199523,0.98019487,0.06131159,1.3077227,0.3472561,-0.29684466,0.28628653,-0.34907717,-0.7723357,0.246864,0.41997853,0.0329784,0.16612665,-0.08175947,-0.07517039,0.35421115,-0.5295598,0.1548596,-0.2180904,0.25492442,0.21647103,0.02936128,-0.30525,-0.30754608,-0.033202957,-0.028387718,0.18049479,0.21380149,-0.13602096,0.30888262,-0.058914192,1.5308797,-0.07293069,0.13342156,0.13137907,0.5612568,0.15297715,-0.033297766,-0.0890987,0.4056177,0.4619827,0.00058075984,-0.6312781,0.14584714,-0.3173476,-0.5199144,-0.12549384,-0.3281903,-0.1236489,0.064072944,-0.39716852,-0.15444653,-0.06743403,-0.23234291,0.38144717,-2.4568353,-0.26295874,-0.2440771,0.20297144,-0.37693086,-0.25960347,-0.15724376,-0.60397404,0.3520679,0.2560097,0.48900068,-0.67197865,0.3783924,0.46537766,-0.5325653,-0.17536621,-0.6971541,-0.1663473,-0.034981888,0.36525622,0.049978342,-0.1234238,-0.09052333,-0.024526788,0.55853355,-0.02058833,0.08925946,0.542369,0.37413892,0.32291374,0.64435416,-0.032791223,0.5558621,-0.41978988,-0.1290116,0.34632245,-0.40782923,0.23924835,-0.23229091,0.12302836,0.61835897,-0.49460623,-0.8753127,-0.7329632,-0.5158769,1.170493,-0.39607614,-0.24702635,0.15924215,-0.17102149,-0.093852095,-0.08235944,0.59243333,-0.2967537,-0.010507242,-0.7702005,0.0814054,-0.06334107,0.20190634,0.026151182,0.020984828,-0.3224537,0.7741004,-0.0044942102,0.5270795,0.13370875,0.24206422,-0.31415188,-0.28376085,0.025631579,0.712321,0.33115408,0.032765638,-0.1325201,-0.2523459,-0.13801241,-0.28669646,0.09548267,0.41369545,0.7161519,0.058553528,0.149827,0.32234284,-0.14292243,0.08053441,-0.23508266,-0.18322514,-0.13847715,0.08036724,0.4906502,0.5281603,-0.19392985,0.45808926,-0.2896418,0.31130803,-0.049135853,-0.4762565,0.64018536,0.69126624,-0.114219256,0.0049569765,0.42051303,0.44779846,-0.34435323,0.36586615,-0.61393505,-0.24120691,0.6352136,-0.2273993,-0.52675235,-0.037517525,-0.1842666,0.15013562,-0.72287387,0.33964863,-0.30515766,-0.3063639,-0.5541534,-0.064909466,-2.7569745,0.07189151,-0.12177071,-0.19373897,-0.24321966,-0.1712829,0.21539026,-0.61803764,-0.5896324,0.12686366,0.15107985,0.7190353,0.08673039,0.11243283,-0.18701926,-0.09564762,-0.25424197,0.05043493,0.08148603,0.4333679,-0.114308745,-0.43949,0.061174907,-0.07715417,-0.5082985,0.20427187,-0.595356,-0.44544217,-0.11392412,-0.48404172,-0.313643,0.7001475,-0.40940478,0.051496264,-0.14085127,-0.0019255658,-0.14576587,0.18931536,0.122096285,0.15750843,0.1533487,-0.16367538,0.16926341,-0.37995148,0.49217907,-0.03184072,0.21067733,0.1768759,0.009687743,0.18746682,0.41512483,0.6912514,-0.2486172,1.0563133,0.38854265,-0.06325543,0.19438003,-0.31128272,-0.16515972,-0.5412516,-0.32575914,0.0043308614,-0.3957087,-0.49597982,0.050534718,-0.31285396,-0.78068477,0.59496117,-0.049519148,0.14369647,0.04455708,0.08438774,0.36630192,-0.101868644,-0.003205966,-0.066622436,-0.020004986,-0.5514048,-0.3193739,-0.5872931,-0.49239418,-0.14014368,1.0411092,-0.24935918,-0.07547612,-0.20279479,-0.33738396,0.17168532,-0.04876779,-0.011379191,0.23904733,0.3822837,-0.12691687,-0.71355635,0.46624434,0.025372537,-0.09272274,-0.50006115,0.16251177,0.7067243,-0.685278,0.52382714,0.41033867,0.008672972,-0.09439308,-0.5736253,-0.32413942,-0.023055848,-0.24988429,0.3039934,0.030355828,-0.73698837,0.4689402,0.26852846,-0.40715352,-0.85444605,0.25536418,-0.057300154,-0.1660481,-0.0070773046,0.33038175,0.13136344,-0.059618935,-0.28587675,0.104809366,-0.51498514,0.22161235,0.1478755,0.02935756,0.32501474,-0.19691685,-0.2876248,-0.7196888,-0.036995992,-0.48179528,-0.26411837,0.29421136,0.036112152,-0.07232593,0.22230892,0.13591798,0.3508266,-0.3510626,0.061955556,0.028412338,-0.35970086,0.06550005,0.2978192,0.3671223,-0.47708252,0.57778126,0.1166848,-0.11653956,0.07019434,0.017744351,0.36927617,0.124149404,0.29919985,-0.04831738,-0.21809816,0.49726525,0.8791581,0.13733517,0.420821,0.09920211,-0.23975468,0.39384323,-0.025962751,0.12028502,-0.0133930445,-0.4739935,0.025260432,0.057370193,0.17792101,0.48578098,0.18394853,0.3531839,0.11035563,-0.16216323,-0.0836902,0.29627857,-0.120130755,-1.0174198,0.36151236,0.13971077,0.97461253,0.36649796,-0.14373416,-0.03087471,0.71880215,-0.32758993,0.09753864,0.35301107,-0.022470491,-0.5500666,0.72405684,-0.6547417,0.4579105,-0.13690901,-0.040544935,-0.07080852,0.2483415,0.2302261,0.7177996,-0.28267136,0.06674145,-0.022516282,-0.18738289,0.16829354,-0.2913182,-0.006496815,-0.4641322,-0.31976193,0.63447446,0.32527256,0.42296782,-0.13490602,-0.037860632,0.045904133,-0.19703825,0.1696097,0.021029977,0.10466609,0.12539405,-0.6678532,-0.26959276,0.5899235,0.122213386,0.31255305,-0.124863274,-0.35173956,0.084805496,-0.44128796,-0.01899929,-0.0657998,-0.71914697,0.021417666,-0.10756472,-0.4645366,0.34866327,-0.31567702,0.17478284,0.30021116,-0.028541524,-0.14823008,0.11154868,0.22369242,0.87017477,-0.045958687,-0.352896,-0.39332378,0.070946015,0.21813542,-0.3214244,0.13958563,-0.29250866,-0.07340749,-0.49121848,0.5944146,-0.1226029,-0.47641808,0.27259687,-0.24265797,-0.16481964,0.74163324,-0.064415045,-0.13513966,-0.058992926,-0.22750066,-0.28118554,0.11585344,-0.3225012,0.22630817,0.38072428,0.12037758,-0.14312674,-0.23335908,-0.15623567,0.73978657,0.009956232,0.43908748,0.25436193,0.01532778,-0.23253275,0.002711336,0.18841147,0.56513053,0.13782969,-0.07837649,-0.38696793,-0.2809978,-0.24219412,0.29883066,-0.1463576,0.22673538,0.079209924,-0.44487062,0.7409276,-0.14877698,0.9771273,0.21632756,-0.29176486,0.021691317,0.5014581,-0.020386267,0.041481458,-0.30832818,0.8257956,0.53963566,0.0256594,-0.04554824,-0.466418,0.0033420145,0.4445914,-0.26912117,-0.05354605,-0.06394349,-0.6382196,-0.447209,0.31097764,0.24637146,0.04169651,-0.12990227,-0.10908831,0.027646963,0.20929588,0.6369187,-0.6466772,-0.18001561,0.2589862,0.20562313,-0.0077835363,0.18312168,-0.38744342,0.43107027,-0.59515166,0.14868559,-0.40712088,0.13144945,-0.23946108,-0.2185469,0.12260587,0.07703014,0.37013918,-0.18254386,-0.46977323,-0.058122966,0.57548255,0.1273698,0.19992656,0.64808905,-0.28483146,0.034969825,0.11318039,0.49980485,1.1442245,-0.3457269,0.15857707,0.24815035,-0.44225204,-0.5612089,0.459639,-0.16470619,-0.056288537,-0.0049832244,-0.3733925,-0.4569252,0.28167468,0.29567686,0.03971409,0.011538267,-0.46686167,-0.10425741,0.5176386,-0.24915497,-0.23961495,-0.2303522,0.40804693,0.684702,-0.26534173,-0.18226251,0.063865475,0.37199512,-0.34381956,-0.4809093,-0.1377462,-0.35485947,0.34575972,0.018282449,-0.34655163,0.011670351,0.11397826,-0.4262626,0.061771646,0.08030771,-0.39414728,0.07599974,-0.19944797,-0.0076553533,0.98785746,-0.21635865,-0.026211198,-0.7070024,-0.36576137,-0.95227367,-0.28688166,0.3826334,0.17117338,0.07067547,-0.5079538,-0.027605545,-0.044684105,-0.2827545,0.12473631,-0.47871667,0.29347903,0.20877382,0.42007938,-0.21788594,-0.647153,0.1264178,-0.06334232,-0.052511968,-0.44933903,0.5764424,-0.053854965,0.76393443,0.05722519,-0.043155216,-0.07326435,-0.31069365,0.06519773,-0.2897983,-0.1718185,-0.86862206,0.10234918 -582,0.30219248,0.032740355,-0.57263374,-0.113830246,-0.11907914,0.045354888,-0.35498407,0.42685422,-0.100812264,-0.7324199,-0.040941343,0.15494521,-0.24596278,0.4225045,-0.19803302,-0.21927615,0.11742101,0.14491847,-0.3810638,0.31527343,-0.5702026,0.3038402,-0.024952898,0.18863954,0.104591995,0.2236008,0.052614544,-0.05694942,-0.21632957,-0.40829337,0.073017746,0.006499062,-0.4530114,0.30511555,-0.1026449,-0.41034088,0.022606641,-0.44654906,-0.14235868,-0.6170375,0.23926197,-0.84487516,0.5220199,-0.01964905,-0.19399925,0.22936265,0.18397641,0.4123399,0.19468375,0.045400634,0.39578226,-0.21849303,-0.16685958,-0.032493677,-0.12442968,-0.68828315,-0.54211235,-0.078339,-0.5880217,-0.19897379,-0.21157949,0.21471597,-0.21438967,-0.073673025,-0.20329024,0.25657162,-0.3386298,-0.18928559,-0.053782914,-0.09864169,0.3958584,-0.9161554,-0.16350104,-0.078790374,0.3721765,-0.4509213,-0.14925498,0.26918682,0.4699284,0.43155074,-0.01620713,0.021750152,-0.41089502,0.004451657,0.12542991,0.49717107,-0.45949635,-0.30743745,-0.1172573,0.005266329,0.49177936,0.14262988,0.15379463,-0.46990478,-0.03556059,0.16055064,-0.37877992,0.37594652,0.3330767,-0.23336935,0.013186623,0.5264738,0.5211142,0.11425584,-0.17707695,0.1298602,-0.035741854,-0.45558667,0.03554021,0.31117454,-0.059826914,0.3441632,-0.05505633,0.3331989,0.5214701,-0.12571615,-0.078859486,0.20222266,0.045953017,-0.12512973,-0.048211206,-0.3082071,0.18918492,-0.502309,0.20649488,-0.18129091,0.7330806,-0.060495347,-1.1342822,0.28356692,-0.4511274,-0.052011877,-0.13823624,0.5203658,0.6357318,0.40174174,0.025357304,0.7199967,-0.5200818,0.06721691,-0.039672773,-0.24784416,0.1912853,-0.078132875,-0.1446269,-0.5309412,-0.068427846,0.03690228,-0.10239658,0.075964324,0.44600162,-0.501507,-0.009885441,0.18091191,0.53182554,-0.29778162,-0.09875361,0.6036437,1.1265198,0.7732788,0.2713559,1.1201756,0.043088824,-0.0560393,0.040609706,-0.2180811,-0.6285297,0.19215465,0.51911145,-0.39079273,0.2231725,0.23535101,0.20588326,0.27391094,-0.23792373,-0.20412649,-0.16483603,0.17188536,-0.13261057,-0.49972034,-0.38686523,-0.12973818,-0.012418668,0.07194845,-0.140785,0.056405827,-0.27355352,0.21523081,0.32363817,1.4574574,-0.32257915,0.14360307,0.10221439,0.28885296,0.06739842,-0.2939125,-0.07847848,0.06831955,0.38971683,-0.0815082,-0.38773453,0.015781537,-0.07574562,-0.65360117,-0.2304654,-0.116635,-0.19396593,0.083044894,-0.2519513,-0.107024044,0.05616991,-0.5213116,0.47657117,-2.8450756,-0.104746126,-0.25749773,0.35807535,-0.1731189,-0.5212898,-0.07466748,-0.22620846,0.5381376,0.37752545,0.4024895,-0.5151203,0.30565527,0.42257753,-0.4260827,-0.11133003,-0.6797776,-0.13639349,-0.09618566,0.23672338,0.13720475,-0.24978487,0.056053545,0.09865583,0.44352964,-0.24025255,0.30889595,0.40827528,0.14138196,0.08299465,0.5470144,0.0457962,0.5922776,-0.07783704,-0.3110715,0.34000096,-0.2819828,0.06238367,0.10270702,0.27983195,0.266503,-0.3506744,-0.8143241,-0.7571896,-0.50258887,1.1456159,-0.054500367,-0.43271694,0.40057445,0.04186408,-0.59549904,0.032951456,0.33652034,-0.20274425,0.004902164,-0.9949359,-0.15065674,-0.25376788,0.35955152,-0.08028152,0.088865936,-0.6157756,0.6574417,-0.21829696,0.43263006,0.46536162,0.23652224,-0.46776107,-0.2710885,-0.15703905,1.2499146,0.43738642,0.0048454055,-0.06511658,-0.12613557,-0.37221336,-0.13419199,0.23248135,0.31544128,0.4965012,0.04871805,-0.07520252,0.14306812,-0.18500853,-0.036116228,-0.0718621,-0.4345669,0.0039739385,0.12099355,0.5199103,0.2843349,0.09899839,0.68307227,-0.23972757,0.12622239,-0.2372822,-0.41364312,0.51535565,0.5334041,-0.1139498,-0.33636197,0.6085065,0.38967252,-0.07655604,0.3849618,-0.53380543,-0.26818025,0.34766114,0.14851253,-0.44020918,0.028400898,-0.386044,0.2336936,-0.96683645,0.38487282,-0.46716943,-0.7538455,-0.5239908,-0.19303997,-2.8579285,0.1278917,-0.055018764,-0.48985147,-0.09867165,-0.23130132,0.4457922,-0.6272373,-0.6602682,0.07122559,0.042390022,0.6562627,0.018676097,-0.09678813,-0.14294375,-0.22935732,-0.10345792,0.27955517,-0.016625373,0.12905662,-0.0123056695,-0.28027824,0.043513983,-0.07701044,-0.27086964,-0.041576713,-0.6927681,-0.38201916,-0.16233885,-0.39973387,-0.43049523,0.73857284,-0.71071297,-0.10525676,-0.22812855,0.069233805,-0.018586734,0.4986876,0.06881904,0.12612455,0.17673862,0.0014785329,-0.21984403,-0.25746855,0.15306671,0.07360981,0.35418466,0.484785,-0.3906902,0.26863578,0.6857503,0.7030635,-0.1135857,0.85993284,0.61710846,-0.13458182,0.08670653,-0.38421407,-0.08543498,-0.51128215,-0.27653953,0.018885583,-0.3716009,-0.4284943,-0.05402948,-0.21523339,-0.73603773,0.5581444,0.025550336,-0.13967298,0.042290423,0.29863125,0.16295333,-0.080199,-0.13248341,-0.05325463,-0.092687525,-0.4280475,-0.36929712,-0.70828027,-0.38542464,-0.17766844,1.1508147,-0.053917196,0.3459004,0.27878284,-0.25743428,0.11388747,-0.016451731,-0.039352044,0.054493535,0.27133128,-0.008467565,-0.6579959,0.17229952,-0.19498439,0.00632675,-0.53127545,0.06948486,0.83408546,-0.36245298,0.42350164,0.3689538,0.18042691,-0.17804962,-0.5497578,-0.07118143,0.03358864,-0.47061506,0.44842955,0.092624925,-0.6148403,0.54998475,0.41295633,-0.17806797,-0.592199,0.50427586,0.059063178,0.25995567,0.19625469,0.25358072,-0.046958435,-0.11620317,-0.08547137,0.25785816,-0.3602674,0.4800547,0.35749552,0.16458876,0.295434,-0.23599143,-0.16775715,-0.61076075,0.027787978,-0.22284858,-0.22642088,0.09569331,0.089551784,0.21152397,0.39008448,0.16906874,0.37241518,-0.52522594,0.20880015,-0.14403331,-0.16541065,0.11106884,0.51245826,0.4277824,-0.44437337,0.46757424,0.054595888,-0.16451637,-0.4469541,-0.195594,0.64051,0.1450715,0.08662363,-0.019542307,-0.1837612,0.25042543,0.8783253,0.21703386,0.3395227,-0.06983032,-0.2137001,-0.03527352,0.035341103,0.31229612,0.09697213,-0.6011966,0.102953255,0.084170066,0.12098982,0.4494268,-0.019191876,0.0693987,-0.26343146,-0.27054712,0.115300536,0.14929356,-0.07784876,-1.1396527,0.6253842,0.17368108,0.5377443,0.41624352,-0.025376013,0.22495466,0.7102804,-0.298569,0.13041945,0.050473947,0.05006258,-0.3309609,0.50602984,-0.7733233,0.21843176,0.061535086,0.0073364205,0.001087139,-0.18596244,0.27825856,0.952553,-0.19966526,0.25277588,-0.101893395,-0.22776377,-0.005410557,-0.18120147,0.080682404,-0.31809953,-0.26565534,0.8318951,0.40995106,0.3812758,-0.11596168,0.008968045,0.12113797,-0.063318096,0.17492028,-0.124299444,0.09550082,0.013585784,-0.39305198,-0.14758915,0.53736156,0.16548072,0.067119814,0.18062158,-0.37341914,0.36261442,-0.036380086,0.057944696,-0.13728614,-0.45951948,0.12314335,-0.19217055,-0.113657676,0.059666146,-0.32635266,0.21661772,0.101578765,0.045486737,0.031245759,0.39485064,0.39840722,0.6699627,-0.09311237,-0.016893512,0.011658654,0.07378573,0.012750402,-0.018718971,0.022954633,-0.36632323,-0.118819594,-0.78978604,0.27212057,-0.1731426,-0.2855055,0.24852371,-0.007114686,0.13563913,0.32590175,-0.26137912,-0.08902409,0.08415613,0.16815786,0.114032425,-0.2650918,-0.35761532,0.13387771,0.08237847,0.1248489,-0.24724014,-0.01429078,-0.36594677,0.13550262,0.18675031,0.55878896,0.36313602,0.21260695,-0.460695,-0.038872298,0.021330168,0.38534388,0.039557297,-0.112633966,-0.07331649,-0.2916304,-0.22958393,0.21694808,-0.18484557,0.26548836,0.13853733,-0.31433043,0.6515585,-0.040792663,1.3847398,0.013595429,-0.36757132,-0.024309248,0.37439954,-0.038446516,0.092106104,-0.18618685,0.80466366,0.5709358,0.040412765,0.09863452,-0.3588543,-0.38199767,0.2024188,-0.18846714,-0.118395984,-0.08553908,-0.7760691,-0.43426538,0.24271144,0.098027386,-0.20814924,-0.027577639,0.12349441,0.36697468,0.045598015,0.35474452,-0.4437271,0.05892547,0.2497197,0.3103014,0.024968931,0.028960312,-0.6372349,0.41333666,-0.7446491,0.108447455,-0.31023243,0.22652476,0.09933821,0.0050519607,0.048697796,-0.07204273,0.39331353,-0.115893126,-0.38132623,0.064821355,0.6904111,-0.002153312,0.25172064,0.5963605,-0.28150097,0.37798497,-0.08118294,0.23604345,0.88174987,-0.3134933,0.16205512,0.3744571,-0.12171636,-0.43027434,0.18870996,-0.41599107,0.120686375,-0.035528604,-0.36742368,-0.20040949,0.2846526,0.32676485,-0.012692906,-0.1108276,-0.48044404,-0.07404914,0.35713437,-0.4350067,-0.29667848,-0.19706553,0.1751446,0.54171723,-0.39719534,-0.5581141,-0.058444012,0.46365058,-0.22189458,-0.37519288,0.1398771,-0.19894798,0.37426028,0.14190818,-0.44273862,-0.15677114,0.05841777,-0.33154374,0.0013367584,0.1953785,-0.34482744,0.0340822,-0.20322023,0.04758664,0.6599709,0.06346003,0.05893289,-0.61920005,-0.44310966,-0.6823299,-0.2674261,0.10048727,0.28867948,-0.02207415,-0.6334181,0.018299228,-0.15954432,0.012072225,0.06075111,-0.37894812,0.5181883,0.10986873,0.5665858,-0.4139539,-0.65477103,0.08647397,0.21145372,0.22176386,-0.5570198,0.4619863,0.06256775,0.91646314,0.15630506,0.030639678,-0.03839536,-0.5441462,0.34540096,-0.08666662,-0.18639122,-0.8216209,0.06122795 -583,0.2951019,-0.47747055,-0.3779799,-0.2274859,0.03488745,0.0013182277,-0.072509795,0.5363439,0.22806257,-0.48291272,-0.12893535,-0.20901237,-0.034299973,0.29450253,-0.21028207,-0.37157533,-0.22853246,0.02467591,-0.53312707,0.46513146,-0.5283334,0.13161011,-0.1208648,0.2904093,0.20796555,0.23342909,0.09500004,-0.01965587,0.11234784,-0.19546248,0.0140570905,0.268496,-0.37393174,0.26018646,-0.09928743,-0.30937058,-0.06257622,-0.40234062,-0.4367342,-0.816021,0.34019944,-0.8094437,0.24875514,0.0774849,-0.42129436,0.038872495,-0.13266823,0.24414724,-0.30443928,0.0506447,0.17633702,-0.07690513,0.13622771,-0.13751106,-0.042490996,-0.26972508,-0.5528937,0.09182589,-0.30182916,-0.20826967,-0.05209609,0.13087882,-0.48717138,0.015423389,-0.28316313,0.54558206,-0.4549983,-0.16926406,0.2488474,-0.27218372,0.41588223,-0.7606404,-0.3773542,-0.14614049,0.12740342,-0.08123536,-0.22824925,0.24790621,0.24449264,0.48633415,-0.011118247,-0.03816932,-0.22192828,-0.08152258,0.28319106,0.31362915,-0.10653989,-0.4883482,-0.03458453,-0.11416657,0.14733464,0.28748277,0.19149105,-0.32668245,-0.059260108,0.251594,-0.31999052,0.22715984,0.5001345,-0.31005663,-0.25638515,0.23735796,0.6390134,0.29606798,-0.12502974,0.00734506,0.019128557,-0.53959054,-0.21687375,0.21030211,-0.2472783,0.3607475,-0.101086326,0.27019536,0.68299514,-0.3567846,0.026992382,-0.16219164,0.009225154,-0.3019104,-0.38879293,-0.3530049,0.20813963,-0.26720232,0.11039289,-0.24033754,0.92206985,0.24677232,-0.71007454,0.32801723,-0.3631046,0.22504385,-0.22120056,0.70695454,0.7094723,0.39365372,0.37241906,0.74552464,-0.399048,0.09176107,-0.1507061,-0.14291352,0.10682189,-0.30353305,0.0009828302,-0.48499945,-0.16659003,-0.052217424,-0.13377748,-0.050092187,0.55210185,-0.58208495,-0.02733778,0.1554233,0.6449007,-0.27628046,0.21464667,0.65198165,1.0154315,1.0612098,0.1967316,1.2150362,0.25104567,-0.34449542,0.34259027,-0.32803342,-0.8678865,0.2887476,0.4714788,0.36833826,0.098198146,-0.06440044,0.018577438,0.30879658,-0.5616592,0.2897759,-0.29862642,0.46298033,0.0976009,-0.09837738,-0.41289502,-0.28695264,-0.1324562,0.025301393,-0.16129738,0.13681039,-0.18144979,0.36436015,0.022038195,1.6192061,-0.25436723,0.10890247,0.0779666,0.5733795,0.026662905,-0.3712464,0.06987702,0.30043286,0.47692505,0.03207353,-0.73545486,0.29499772,-0.1399464,-0.41172057,-0.13103594,-0.38317686,0.13317388,-0.020195773,-0.24455017,-0.2546911,-0.009630208,-0.4629497,0.4232354,-2.5864055,-0.231864,-0.21449134,0.3786863,-0.16102263,-0.23264867,-0.043612845,-0.5804104,0.4489187,0.43803793,0.43204758,-0.7341036,0.08008644,0.50635344,-0.43747228,-0.04140746,-0.6396945,-0.123788245,-0.058332562,0.27426794,0.08199261,0.083261214,-0.12967418,0.025130602,0.35335982,0.10192359,0.11945712,0.2447904,0.30251673,0.013553172,0.5233403,-0.013614835,0.4273335,-0.30776295,-0.11153329,0.5000726,-0.45226794,0.13027702,-0.1312794,0.086209774,0.47952938,-0.5916985,-0.695608,-0.69808763,-0.4235616,1.3040494,-0.116312355,-0.53597945,0.4066068,-0.35484698,-0.22301592,-0.36714518,0.54181725,-0.2561061,-0.2246895,-0.86815655,0.01656131,-0.121194325,0.29951507,0.020294258,-0.08783223,-0.32283306,0.5441158,0.0018180883,0.6233861,0.32692495,-0.13243955,-0.15995778,-0.41680485,-0.014898699,0.8911488,0.39452913,0.14724709,-0.18725102,-0.082851924,-0.26613954,-0.039296865,0.1302485,0.4768701,0.7366035,-0.112221725,0.13895467,0.35665828,-0.19566256,0.05692502,-0.10916057,-0.22192731,-0.15239997,0.09764057,0.57896817,0.463893,-0.10586647,0.22753888,0.009175273,0.25079095,-0.038784746,-0.42902285,0.3784248,0.8864245,-0.09431656,-0.22534283,0.51892287,0.5517864,-0.3613807,0.39260957,-0.44968012,-0.20927739,0.5171766,-0.23763426,-0.44631752,0.20541619,-0.43128344,0.2620093,-0.7456089,0.2636603,-0.4094917,-0.38021633,-0.7765802,-0.1363119,-2.5665948,0.1289308,-0.10527576,-0.3138582,-0.024750553,-0.09904964,0.2776565,-0.45547026,-0.56174374,0.14517261,0.18559934,0.54750293,-0.014361979,-0.06266448,-0.29971507,-0.23179197,-0.42526627,0.058940366,0.11405595,0.3181308,-0.009467432,-0.465223,-0.006173863,-0.14314719,-0.42317012,0.05085886,-0.53280705,-0.63135105,-0.24290554,-0.5283538,-0.51656497,0.6213235,-0.07237422,-0.031696014,-0.080421686,0.024048833,-0.0964662,0.30637157,0.11116031,0.12854774,0.030179657,-0.09487753,-0.16819994,-0.34770787,0.1339327,-0.02453839,0.12403871,0.32546085,-0.18743195,0.23653391,0.52186054,0.5952022,-0.028383361,0.6919007,0.6508399,-0.12105938,0.16769339,-0.19151387,-0.2442242,-0.55598694,-0.23612055,0.20982496,-0.44708723,-0.5620359,0.017309437,-0.29050305,-0.7010753,0.4906709,0.0060053514,0.15052748,0.22735284,0.19919914,0.49781865,0.06623501,0.09752607,-0.04425202,-0.06817445,-0.53777707,-0.3056374,-0.823179,-0.47245768,0.28925183,1.0528618,-0.25770023,-0.14663976,0.13586222,-0.37219998,0.046207007,0.04413589,-0.119155005,0.15823682,0.38190192,-0.012047181,-0.46144933,0.33829638,0.15814503,-0.13636523,-0.5145436,0.15357651,0.5920357,-0.699803,0.55511886,0.15322557,-0.022123434,-0.24500741,-0.3312715,-0.25558352,-0.15893991,-0.16876656,0.41280732,0.19413108,-0.692656,0.5567151,0.25151423,-0.044384122,-0.734559,0.36505303,-0.11405521,-0.18615882,-0.027913276,0.3148429,-0.10195708,0.041372154,-0.1877756,0.31383738,-0.4702865,0.28055555,0.26821,-0.22554214,0.39158043,-0.10434242,-0.129588,-0.6999133,0.071140066,-0.58816946,-0.21929908,0.38963154,0.09206548,0.008583454,0.22673383,0.21377905,0.5026277,-0.047744334,0.15561059,0.074788935,-0.15148745,0.34000224,0.3860405,0.45860404,-0.4179524,0.5828567,-0.020427873,-0.04673392,-0.13017358,0.11087261,0.3641674,0.34761792,0.35820845,-0.19009866,-0.3969777,0.4118117,1.0552158,0.1221964,0.4567384,-0.074380346,-0.1267308,0.27871138,0.17142835,0.3226999,-0.16557792,-0.42625517,0.15822864,-0.103482634,0.0659936,0.3583466,0.14660713,0.36892554,-0.14502221,-0.37685812,-0.025943944,0.19257925,-0.075970605,-0.9712134,0.31957,0.029138135,0.85625577,0.6612677,-0.07310274,-0.04399865,0.5226905,-0.13062915,0.12617853,0.21559437,-0.0073792385,-0.6037578,0.4366636,-0.6732968,0.5342337,-0.012825351,0.01805679,0.06910551,-0.16614045,0.50022054,0.5315594,-0.15785061,0.0029222334,-0.06901527,-0.31893033,0.23019767,-0.51189387,-0.045027785,-0.61323863,-0.476353,0.53506786,0.4959768,0.36304876,-0.1632792,0.035102077,0.050737087,-0.16425602,0.26655078,-0.0924687,-0.039701283,-0.005212408,-0.7183448,-0.19505763,0.47264078,0.18692642,0.011945699,-0.024086159,-0.5117899,0.19876102,-0.22279817,0.05100437,-0.10161305,-0.66821533,-0.047525883,-0.37790135,-0.15625122,0.40168196,-0.094825655,0.30662963,0.30072308,0.10722662,-0.2676701,0.030716758,0.09602273,0.8617738,-0.29514116,-0.10120551,-0.5939073,0.147845,0.2579865,-0.2047616,-0.107938655,-0.14843586,-0.11653878,-0.497921,0.6082146,0.059441462,-0.26479873,0.13912779,-0.1846327,-0.10636111,0.66907054,-0.12178914,-0.1531282,-0.1816489,-0.18822543,-0.21180059,-0.16294983,-0.079410434,0.20000838,0.2575495,0.18479435,-0.16237439,-0.12354506,0.03833047,0.45460173,0.14185208,0.22912785,0.34812766,-0.046224717,-0.37543023,-0.03745268,-0.041031383,0.54289937,0.16807358,-0.1075836,-0.11055228,-0.4781883,-0.34305775,0.08351382,-0.15391205,0.44775596,0.00715076,-0.48624527,0.50962365,0.025599498,1.0280795,0.059068523,-0.36519688,-0.063537985,0.52436393,0.025299283,-0.04849464,-0.3504098,0.7196649,0.51658785,-0.13819586,-0.097342364,-0.32651237,-0.17288682,0.33979762,-0.102832064,-0.08176829,0.000555568,-0.7928117,-0.3435163,0.14509414,0.2431515,0.21149482,-0.08247071,0.051180996,0.18341404,0.11398116,0.22810557,-0.38924348,-0.015855514,0.285005,0.05003556,-0.029795518,0.055875696,-0.4666532,0.34216702,-0.51512897,0.18108551,-0.21387137,0.11947824,-0.083382845,-0.27091494,0.24310398,-0.07714541,0.38435757,-0.33697003,-0.48598891,-0.19396144,0.5668347,0.1529811,0.23761562,0.72601545,-0.29934505,0.05992899,0.13119705,0.66379696,1.3415153,-0.14073549,-0.15088783,0.32721984,-0.38695014,-0.64295,0.3637355,-0.16431968,0.06739934,0.010904711,-0.12777312,-0.44880965,0.28669214,0.3046099,-0.12915923,0.07584499,-0.6498161,-0.20248178,0.27373502,-0.42961925,-0.13304971,-0.4959701,-0.013218818,0.57664824,-0.37334788,-0.28010064,0.1368942,0.33744764,-0.38080546,-0.34709167,-0.061325606,-0.40579444,0.29908293,0.059910104,-0.38183948,-0.05928645,0.15884282,-0.3930152,0.10040911,-0.04185478,-0.47171608,-0.060392637,-0.23697075,-0.09935905,1.0937786,-0.2794643,0.2219829,-0.37469,-0.47768638,-0.70829684,-0.12818836,0.72514164,-0.040652506,-0.0682669,-0.5523942,0.026746796,-0.023756614,-0.001427176,-0.102429025,-0.30059144,0.49972886,0.05914143,0.45338637,-0.057715178,-0.55513203,0.37014654,0.16840132,-0.02221211,-0.49303418,0.56976354,-0.018356044,0.61239535,0.033398267,0.06907205,0.18276769,-0.45712006,0.0988108,-0.14147626,-0.3456822,-0.5762665,0.1772557 -584,0.29806644,-0.05422237,-0.51852703,-0.0812731,-0.2624065,-0.08482114,0.07613993,0.5427373,0.38202783,0.016778419,-0.21389477,-0.12825187,-0.112879656,0.27716598,-0.010108518,-0.61563015,-0.21679907,0.35066864,-0.540158,0.55184895,-0.24899113,0.24221991,-0.006512634,0.5286308,0.20569499,0.21960258,-0.00859576,0.043324333,0.019535035,0.02224064,0.0030903418,0.27600458,-0.6705943,0.22099693,-0.22967172,-0.27626732,-0.24540143,-0.5367616,-0.47417966,-0.74744684,0.48459673,-0.6504323,0.6275274,0.09753261,-0.330138,0.1266718,-0.07692316,0.28011164,-0.18745433,-0.11915647,0.07121255,-0.084748805,0.026808077,-0.14396842,-0.21790709,0.06977204,-0.54658335,-0.013618104,-0.16269928,0.046385825,-0.08156943,0.12927142,-0.24272652,0.072144635,-0.17957209,0.5885444,-0.28026038,0.32058167,0.25408384,-0.012131549,0.17320581,-0.49262056,-0.09885349,-0.19075687,0.19435962,-0.08930323,-0.38340044,0.3724608,0.14922686,0.49196708,-0.14402367,-0.14961076,-0.16646299,0.21826208,-0.041872825,0.5057647,-0.3253956,-0.08253864,-0.12012141,0.04996911,0.18940298,0.251894,0.018930972,-0.36872903,-0.027729385,-0.2692935,0.13671587,0.13681905,0.4491253,0.045300346,-0.22393936,0.2112689,0.3021005,0.2379431,0.034304265,0.13394517,0.0047690845,-0.53576916,-0.22081584,-0.048401758,-0.2810233,0.57992536,-0.075710095,0.039055046,0.47316027,0.06807274,-0.12352889,0.018181294,0.27499226,0.1086031,-0.41200718,-0.3024587,0.3547237,-0.32868096,0.2591864,-0.05168357,0.52582985,0.19986022,-0.75203615,0.31944665,-0.6057432,0.21166086,0.006178595,0.479717,0.9805961,0.38611734,0.362703,0.81450623,-0.52512044,0.21575136,0.15566264,-0.24478216,0.12564217,-0.05715451,-0.030418262,-0.5303508,-0.20786428,-0.09764052,-0.44232735,0.2702125,-0.10315976,-0.52812284,-0.09480091,-0.058631677,0.67391664,-0.25677672,-0.038249403,0.8568523,0.9992117,1.0156474,0.06339091,1.1978167,0.17653792,-0.15350725,0.25195205,-0.1705914,-0.8926982,0.124248706,0.2516361,-0.67099494,0.39853796,0.12276716,0.087656535,0.37432864,-0.6366284,-0.019197961,-0.096428186,0.18791471,-0.05818973,-0.112557925,-0.4685382,-0.41651225,-0.07064372,0.14928797,-0.056635488,0.19996405,-0.2142061,0.45523167,0.080881886,1.44815,0.09859986,-0.061825063,0.07792909,0.16864729,0.16524823,-0.26573518,-0.350378,0.23604025,0.36764765,-0.012980133,-0.47261068,0.035850655,-0.13152398,-0.19912477,-0.1705234,-0.14543636,-0.0057988637,-0.087352455,-0.37009454,-0.37622377,-0.09644326,-0.32492122,0.55898094,-2.6123512,-0.09822162,-0.06664255,0.46260837,-0.18743901,-0.33320957,-0.30510294,-0.4191322,0.22938831,0.28239587,0.39238772,-0.5907456,0.08012802,0.15260671,-0.5989047,-0.07404975,-0.5996134,-0.12020755,0.26213336,0.08084076,0.005647067,0.18481505,-0.071577154,0.13165738,0.35295033,0.07477974,-0.01623126,0.28538924,0.39864993,-0.010204986,0.29674792,-0.077037066,0.50588924,-0.27575323,-0.18901469,0.37850308,-0.36447656,0.32000348,0.013025862,0.10372943,0.526388,-0.53551906,-0.6906869,-0.5396233,-0.30126488,1.1229295,-0.235355,-0.30767617,0.28497997,-0.58854336,-0.23593532,0.054624204,0.46941617,-0.15614486,-0.31557098,-0.8245477,-0.24515037,0.038169958,0.2788642,-0.011061902,-0.038628165,-0.32056847,0.61064345,-0.16469763,0.33302185,0.5434443,0.11619679,-0.14120252,-0.5835592,0.036130443,0.56855017,0.49019778,0.07411745,-0.19671667,-0.03765912,-0.21506213,-0.10090474,0.08642518,0.79457134,0.579398,-0.28088567,0.10953734,0.33552352,-0.024038194,0.044376567,-0.017956823,-0.25475565,-0.17060488,0.006739998,0.60307825,0.90027994,-0.18051231,0.2241826,-0.047928736,0.2731903,-0.010203577,-0.59954756,0.42561236,1.086068,-0.08886073,-0.25980422,0.58029586,0.22884925,-0.27062407,0.4268311,-0.48563334,-0.09506913,0.5518792,0.060009908,-0.41925204,0.030421535,-0.1921658,0.068281434,-0.9453135,0.26456597,-0.120551966,-0.6434235,-0.7105666,0.033180088,-2.2533538,0.06619302,-0.34668848,-0.037127543,-0.07827895,-0.08726106,0.12273321,-0.49629736,-0.84274673,0.1657746,0.08373344,0.42179716,-0.1572351,0.12082812,-0.05039801,-0.32876468,-0.23467036,0.13342677,0.43603835,0.28946528,-0.106704146,-0.39400387,-0.21518259,-0.13922401,-0.47247562,-0.049665857,-0.6167359,-0.5441602,-0.14372705,-0.83809525,-0.1356528,0.6011007,-0.3922193,-0.1763543,-0.21116537,-0.06702409,-0.120825656,0.21981756,0.03416792,0.30898866,0.091290854,0.005429335,0.03642528,-0.1356677,0.21969128,0.06999258,0.31253937,0.30404282,-0.20958996,0.3509216,0.44896033,0.81849915,-0.20682824,0.75348026,0.61759555,-0.021638542,0.12640576,-0.39047757,-0.3189117,-0.57446426,-0.26276657,-0.1944499,-0.39154348,-0.2625365,-0.10804441,-0.4286007,-0.9316154,0.42044544,-0.14711475,0.17498583,0.07616825,0.004393319,0.5027335,-0.18139625,0.12300986,-0.14947516,-0.2221998,-0.44570288,-0.32171035,-0.38086963,-0.571668,0.13207805,1.2090935,-0.018035015,0.14402874,0.15332936,-0.39765093,0.027096406,0.029114842,-0.09222958,0.2628158,0.52062017,0.021161282,-0.51583415,0.19791155,0.15340531,-0.14520341,-0.79342014,0.21312527,0.63622826,-0.5560749,0.763606,0.19471103,-0.03659608,-0.083870836,-0.65907013,-0.32763922,-0.008764337,-0.17319286,0.44241726,0.4138124,-0.39207697,0.33175656,0.1731919,-0.15283914,-0.7123863,0.3863947,-0.010410234,-0.19227774,0.040755782,0.34881195,-0.17631555,-0.059425574,0.121014304,0.42570308,-0.04590492,0.26798716,0.22322355,-0.10553219,0.032162715,-0.1616649,0.002099216,-0.79579943,0.24237688,-0.43538156,-0.34579146,0.31889763,0.102246635,0.105800055,-0.0041217827,0.3231163,0.3769972,-0.20409657,0.12760638,-0.17093533,-0.35083798,0.17748974,0.44361028,0.36217847,-0.4934592,0.39947894,0.021538762,0.09195647,-0.037669796,0.12584893,0.43533838,0.027357548,0.1624357,0.07945625,-0.18942113,-0.06058188,0.6006213,0.064601436,0.17561857,-0.081601135,-0.010519718,0.26719028,0.05693336,0.18020882,-0.1707837,-0.3735148,0.14816777,-0.15298383,0.16265507,0.3840104,0.15077265,0.19587462,-0.22331886,-0.4060849,0.11336588,0.15238042,0.18505575,-1.3299209,0.2599952,0.07602356,0.76184154,0.53927046,0.13550664,0.038864527,0.43522492,-0.23190403,0.115549,0.48568523,-0.076403685,-0.4806575,0.3877431,-0.6429285,0.5757816,-0.004272852,-0.03462248,0.14572361,0.1985784,0.37447092,0.7197462,-0.10291376,-0.04002404,0.0034736346,-0.18543018,0.018161252,-0.37501636,0.078541584,-0.60400057,-0.37587407,0.6551562,0.56921035,0.20727538,-0.34353817,0.014299248,0.055088717,-0.10344408,0.19610111,0.070821494,0.08311907,0.073445,-0.5828818,-0.1053962,0.56066513,-0.02101407,0.018818637,0.06676749,-0.080555364,0.3068305,-0.15601218,-0.18371934,-0.21254392,-0.8394777,-0.019496182,-0.3685896,-0.16427459,0.35477233,-0.27279556,0.1706144,0.175851,0.1584226,-0.5017537,0.40034226,0.10342241,1.0023832,-0.082815506,-0.052201647,-0.25908366,0.4400313,0.27869728,-0.12195533,-0.04471718,-0.2658442,-0.054319054,-0.36599728,0.423498,0.08129414,-0.25396767,-0.015571962,-0.037120596,0.07472003,0.42496383,-0.21729384,-0.0886813,-0.054700937,-0.14366364,-0.49792218,-0.20269948,-0.30260158,0.24433424,0.3527801,-0.12096426,-0.031169772,-0.056608107,-0.24746192,0.32938477,0.104414515,0.35014686,0.20434411,-0.018315932,-0.40997323,0.043108415,0.117726356,0.48626745,0.06645712,-0.22959213,-0.26639834,-0.12192931,-0.32678065,0.2528584,-0.17850685,0.3213149,-0.07694878,-0.211403,0.67105323,0.15844405,1.207705,-0.16580386,-0.21170773,0.042615533,0.43294096,-0.010693274,-0.17680752,-0.21026085,0.8354922,0.55469865,-0.07955713,-0.17308033,-0.19803806,-0.06240947,0.15649745,-0.084281705,-0.15462388,-0.006200368,-0.58660215,-0.24829167,0.11570669,0.16663796,0.122689806,-0.058746073,0.0018687894,0.055214416,-0.051796395,0.3095548,-0.13158496,-0.115815364,0.27737325,0.2549591,0.20492905,0.25358614,-0.3997675,0.3238913,-0.51708007,0.14143203,-0.46563855,0.14887573,-0.21175094,-0.28334916,0.06980697,-0.08582022,0.29536387,-0.3787448,-0.102692254,-0.44811532,0.62123424,0.16242243,0.1591992,0.6354302,-0.20030344,-0.048157174,0.1575883,0.375652,0.897281,-0.16976671,0.0038631558,0.15513825,-0.33389363,-0.52484137,0.28368095,-0.11857616,0.10726905,-0.21830247,-0.08837854,-0.5912454,0.06894422,-0.018798612,0.06823558,-0.17951535,-0.5943994,0.010131481,0.24364339,-0.22572558,-0.18950772,-0.43342936,0.08286085,0.55793387,-0.10584036,-0.5479091,0.20997758,-0.022095188,-0.1303455,-0.36183214,-0.0037956338,-0.39972606,0.13692349,-0.027574295,-0.52129215,-0.088775955,0.17087947,-0.3872436,0.08680221,0.052537393,-0.31069198,0.036948193,-0.076515764,-0.10211045,1.1473632,-0.2152931,0.23720586,-0.50837445,-0.5464278,-0.91965103,-0.27522472,0.3510208,0.25460568,-0.1101081,-0.7777162,0.037171762,-0.07008136,-0.1355055,-0.05466738,-0.27904478,0.40345648,0.24926585,0.39419362,-0.17996196,-0.80372477,0.071081705,0.15241322,-0.10762314,-0.44528905,0.40343583,0.1843967,0.7992955,-0.031027654,0.02859272,0.16454358,-0.49213228,0.18306541,-0.107091956,-0.16643889,-0.44850874,-0.060074586 -585,0.32698306,-0.4153019,-0.4568508,-0.07372327,-0.56168926,-0.009706276,-0.121080205,0.23424257,-0.16074672,-0.54159087,-0.07101375,-0.08694384,-0.034488004,0.25641376,-0.20630424,-0.3017104,-0.32893568,0.23304787,-0.6220214,0.67267865,-0.36392975,0.4683203,0.18996796,0.17798738,0.16156694,0.32056358,0.18920697,-0.019475846,-0.09111788,-0.06988372,-0.2267668,0.26298138,-0.646089,0.3174995,-0.2235965,-0.5411739,0.16577122,-0.43345478,-0.09526224,-0.67116517,0.09254299,-0.89253575,0.6525496,-0.12632297,-0.21911772,-0.021798015,0.10305577,0.43556663,-0.19374704,0.20476069,0.29239312,-0.08828802,0.040828686,-0.42838764,-0.059033714,-0.33554655,-0.39929768,-0.034347564,-0.6077028,-0.26684338,-0.037734907,0.17691861,-0.18304026,0.08040893,-0.24124144,0.2868013,-0.5077738,-0.1255971,0.18243293,-0.032000028,0.39594027,-0.6024905,-0.09257846,-0.21739875,0.27506563,-0.181049,-0.011432792,0.43139213,0.016824331,0.5787672,0.09755111,-0.1904435,-0.17454518,-0.18937674,0.10691934,0.4291584,-0.2637929,-0.19714616,-0.1304469,0.05657546,0.4154772,0.26808962,-0.057466585,-0.3263987,0.023306863,-0.19359148,-0.13896014,0.18312278,0.433947,-0.18940838,-0.2917538,0.09218548,0.6357421,0.06890006,-0.16589968,0.008074875,-0.06362851,-0.40758926,-0.19459201,0.17229234,-0.00379166,0.41643196,0.0715249,0.07763733,0.73476833,-0.16514812,0.019646117,-0.21931358,-0.15077804,-0.12598507,-0.0024183989,-0.37026313,0.07526283,-0.4754517,0.08903448,-0.17355537,0.674435,0.09634805,-0.6863542,0.19373408,-0.6082201,0.026715236,0.011164508,0.6273161,0.42167744,0.61579406,0.0625454,0.78840923,-0.41249985,0.14831017,-0.18478642,-0.15415426,-0.14941426,-0.16816266,-0.17780767,-0.48688444,0.18869296,-0.19302268,0.048757453,-0.3300657,0.35066622,-0.60873145,3.9396542e-05,0.16715908,0.65099186,-0.4343205,0.2769437,0.7885967,0.99156296,1.1341646,0.14738202,1.2091467,0.2881306,-0.26619598,0.02591857,-0.21167357,-0.57188445,0.09986083,0.57851803,0.2452599,0.3164213,0.047650952,0.06852226,0.34283024,-0.43890694,0.10828425,-0.32323223,0.44082,-0.05360139,-0.12759756,-0.6339698,-0.19035599,-0.020864965,0.044027664,-0.2578656,0.16621885,-0.33598137,0.44487068,0.14043768,1.504613,-0.3727834,0.07798183,0.17542766,0.23174353,0.17635547,-0.08122238,-0.028373409,0.37469912,0.48843774,-0.045321785,-0.61655027,0.21652505,-0.27806097,-0.59361976,-0.18114176,-0.2418985,0.06203198,-0.09494831,-0.46456614,-0.40127322,0.112062335,-0.33041698,0.3390488,-2.3269272,-0.110495806,-0.24417453,0.26934347,-0.2859045,-0.20551722,0.053738806,-0.3243677,0.2861337,0.35364726,0.28636858,-0.5672003,0.49660197,0.4412096,-0.38266727,-0.12788187,-0.6984617,-0.08641473,0.016505476,0.46063423,0.066086695,-0.1277066,-0.08051986,-0.0038021845,0.62078464,-0.29702595,0.10892685,0.5334314,0.2628002,0.16296665,0.5404463,0.17507349,0.33229938,-0.42442662,-0.1314288,0.47478685,-0.14470677,-0.007731442,0.19156215,0.17490889,0.36737362,-0.6821719,-0.6448666,-0.73603964,-0.46557692,1.0950763,-0.2046447,-0.5273782,0.18243258,-0.025727382,-0.078943595,-0.044622567,0.23513548,-0.14435916,0.21654531,-0.6688613,-0.030394422,-0.0901695,0.35650665,0.0677064,-0.006043054,-0.46491888,0.66072196,-0.06890753,0.6011872,0.45305166,0.37845835,-0.023802383,-0.25537443,-0.03428681,1.0167992,0.5402701,0.0114348335,-0.1693873,-0.261091,0.19495907,-0.083590224,0.095363386,0.2680152,0.8862319,-0.042329736,0.19134007,0.2852586,-0.13635416,0.06613921,-0.08397155,-0.22618045,-0.0506096,0.2117363,0.34776992,0.32501093,0.049199708,0.4713254,-0.3020446,0.4581729,0.005626968,-0.59916246,0.3867968,0.7320389,-0.21565068,-0.0391333,0.5153867,0.6949745,-0.36532313,0.5414806,-0.703049,-0.15465455,0.6053983,-0.24051763,-0.44257042,0.3176864,-0.2674782,0.390821,-0.944682,0.4418831,-0.43104172,-0.49709633,-0.7742619,-0.20333146,-1.9539179,0.23098274,-0.16245958,-0.16706295,-0.056458883,-0.28816155,0.3606712,-0.6808979,-0.5316946,0.06582271,0.12297501,0.4375139,0.0719645,-0.054307584,-0.25042704,-0.3902712,-0.10332155,0.29744396,0.16436948,0.1250064,-0.19698493,-0.4890183,-0.16338311,-0.22069332,-0.63549674,0.18905976,-0.6423624,-0.45299858,-0.19928731,-0.46260595,-0.22687353,0.5501901,-0.082272254,-0.05223803,-0.13944772,-0.009909375,-0.22454132,0.18074356,0.19605933,0.35011038,0.1772275,-0.2717376,-0.021993961,-0.46647277,0.22590348,0.14138612,0.06536294,0.1799585,-0.29475227,0.17679061,0.4863235,0.6477645,-0.08904467,0.8814766,0.4834095,-0.2516677,0.33284917,-0.42267385,-0.37439808,-0.80229014,-0.425533,-0.042783994,-0.37048978,-0.61600405,0.07017249,-0.28467897,-0.7110814,0.7579961,-0.18758737,0.3268737,0.021916376,0.32982704,0.323857,-0.08210548,-0.07576526,-0.22519366,-0.1573924,-0.42906922,-0.39384,-0.8002433,-0.4683192,-0.2499719,1.3093847,-0.118010946,0.019900432,0.05270671,-0.30304033,0.34556842,0.03899041,0.108634576,0.36913842,0.33867306,0.1008269,-0.69678813,0.37674993,0.2719265,-0.1140344,-0.296916,0.06718888,0.72847646,-0.6358074,0.27752897,0.15744771,0.09516067,0.11229302,-0.5094509,-0.039225526,0.010665404,-0.37306204,0.39544603,0.12724781,-0.51659673,0.474195,0.3568124,-0.38748756,-0.6987985,0.13692226,-0.074631795,-0.15405545,0.092539735,0.3241797,-0.078952774,-0.17229891,-0.28001356,0.2548527,-0.41823024,0.26697198,0.3118612,-0.07028923,-0.009980346,-0.23613071,-0.3642258,-0.81585914,0.27389312,-0.38232654,-0.2568379,0.40321735,-0.016037975,-0.25553796,0.36233148,0.16800635,0.48385257,-0.29477423,0.09849744,-0.10503466,-0.30992624,0.3200999,0.45735258,0.21069585,-0.2731332,0.46781558,0.03753844,-0.10891642,-0.31635508,-0.020862805,0.30699447,0.07828973,0.097061686,-0.34566903,-0.21819162,0.5035506,0.74272907,0.24676748,0.5468172,0.0024778268,-0.23091304,0.3381458,0.20237528,0.09774738,0.08906656,-0.23926142,0.20269196,0.18358366,-0.005974103,0.38967124,0.17391801,0.29546627,-0.12051549,-0.10474624,-0.01209751,0.35587564,-0.19360103,-1.0796729,0.22909215,0.13049322,0.6272484,0.6865665,0.21628782,0.10877253,0.53542525,-0.48647544,-0.049574196,0.35453525,0.011457758,-0.39746907,0.6255951,-0.5969803,0.29791164,-0.07190175,-0.000268057,0.092472635,-0.11304832,0.3550994,0.85766345,-0.115440965,-0.03123339,-0.083180256,-0.010560983,0.010699489,-0.40299812,0.021024564,-0.23646823,-0.43283033,0.62752813,0.17846014,0.477276,-0.13673164,-0.05188089,0.1673131,-0.32402918,0.56639194,0.09093604,0.06584123,0.03177155,-0.19245787,-0.19386463,0.5121862,-0.0031160542,0.024449902,-0.06190757,-0.5866456,0.15444212,-0.04304866,-0.012394832,0.14336355,-0.65526295,0.31421384,-0.38487926,-0.301423,0.31192514,-0.047100868,0.035479564,0.06290589,-0.0568124,-0.25684574,0.055843476,0.14633079,0.76576084,0.056901593,-0.33634076,-0.09736871,0.076558776,0.17243645,-0.37859637,0.18792011,-0.11245748,0.122346796,-0.7861766,0.5252659,0.061320074,-0.37482414,0.3824319,-0.28555688,-0.1592025,0.50783724,0.03436764,-0.06747576,0.07985401,0.07155243,-0.24505083,-0.28800553,-0.2870519,0.06642108,0.0615494,0.065800734,0.03301314,-0.1113953,0.013361065,0.7266422,0.13159385,0.508493,0.16573702,-0.077191114,-0.53099835,0.08062967,-0.06118806,0.18702814,0.10135051,0.2857418,-0.15099466,-0.45105448,-0.2517225,0.009053563,-0.24136059,0.30163702,0.10659128,-0.4509265,1.0849847,0.048021138,1.1932623,-0.010859762,-0.30404267,0.065078035,0.55954975,-0.14479709,0.09677531,-0.3472019,0.92195374,0.68005645,-0.10712313,-0.04062166,-0.23759554,-0.27242798,0.23760554,-0.2913173,-0.01597367,-0.114992246,-0.5229719,-0.63766706,0.19880913,0.34229207,0.03183653,-0.0029226243,-0.04501713,0.20322953,-0.034070335,0.37657598,-0.32271904,-0.13954255,0.15328793,-0.035930555,-0.061046857,0.11984187,-0.55553836,0.31314704,-0.65230995,0.2842033,-0.36424154,0.1307652,-0.003149867,-0.29781228,0.010006699,-0.011975833,0.21970798,-0.33241183,-0.3290123,0.0516954,0.5570424,-0.15267135,0.23828271,0.782782,-0.25464806,0.29094929,-0.042539943,0.34986755,1.1285423,-0.36862373,-0.0008775592,0.17302577,-0.5314435,-0.48058322,0.33386388,-0.18447383,-0.19031276,-0.13257952,-0.5628789,-0.4066329,0.2282268,0.30126998,-0.14263509,-0.055771586,-0.48122665,-0.032610517,0.36665395,-0.48684406,-0.16617772,-0.23107457,0.47197446,0.74408966,-0.35391882,-0.4610967,0.059545867,0.26354656,-0.5350713,-0.34707513,-0.11104089,-0.22591887,0.51940984,0.05178914,-0.26792863,-0.050508764,0.17236368,-0.35648522,-0.3369592,0.22342502,-0.3727808,-0.08633475,-0.3322532,-0.016221954,0.8425025,-0.048767872,-0.32085818,-0.43937835,-0.43614265,-1.0036114,-0.5641801,0.5554804,0.29918072,0.112170205,-0.4754565,0.2705829,-0.23237583,-0.19984205,0.09770717,-0.3728227,0.33041117,0.31352663,0.44315848,-0.32829806,-0.72252935,0.31324974,0.1942804,0.11263404,-0.55783856,0.76053727,-0.040186286,0.6177658,0.046606116,-0.101672545,-0.044427585,-0.5716558,0.24893169,-0.23765509,-0.15503731,-0.7579282,-0.11159326 -586,0.8037048,-0.12326792,-0.37064317,-0.19048482,-0.28422126,0.12661678,-0.26183823,0.5641649,0.39199364,-0.54897,-0.38457662,-0.23914677,0.0013268049,0.3917947,-0.2597335,-0.9597449,0.24265684,0.12479103,-0.3877198,0.6516674,-0.5113407,0.22597612,-0.32956278,0.417663,0.21602258,0.39659908,0.24625611,0.1199308,0.11710394,-0.3076452,0.26470086,0.02153324,-0.538229,0.25848845,-0.02160259,-0.41237324,0.0072636767,-0.5397314,-0.44946444,-0.80339885,0.3657665,-0.8212251,0.5635588,0.019013323,-0.1698073,-0.025995314,0.14141497,-0.07809878,0.12382162,-0.14015016,-0.10537613,0.03940915,-0.32698217,-0.21622299,-0.29394054,-0.7017092,-0.69032013,0.027602,-0.29764375,-0.13079049,-0.41540653,0.038579766,-0.48278219,0.0728235,0.075950466,0.52455467,-0.551766,0.11865311,0.12945794,-0.14386757,-0.12542643,-0.6309111,-0.3451586,-0.12189955,0.25871995,-0.082180336,-0.21530789,0.18049818,0.4653304,0.51274467,-0.036101278,-0.03985009,-0.2244137,-0.032849487,0.33153832,0.7508347,-0.11135778,-0.8441565,-0.1877336,-0.05950948,0.43289003,0.12257309,0.49387833,-0.30616382,-0.004122604,-0.011715575,-0.3343804,0.73475766,0.58866096,-0.5938604,-0.109537356,0.22181673,0.44324666,0.25238585,-0.2651203,0.27173844,0.048721693,-0.5589067,-0.26052824,-0.22130364,-0.07859891,0.53408545,-0.11821573,0.31145433,0.46515477,-0.4378522,0.08184126,-0.044500187,-0.22906183,-0.22009769,-0.26629803,-0.10478024,0.24948101,-0.2556348,0.15004815,-0.38124353,0.85388094,0.20545945,-0.6978973,0.36174735,-0.6170984,0.12742735,-0.04685688,0.58067334,0.70224124,0.36573735,0.55049634,0.58623016,-0.2351302,0.013443909,0.019429414,-0.32987946,-0.045644023,-0.13917015,-0.10977225,-0.31783116,0.23964292,0.10603959,-0.15221392,0.15502809,0.8939823,-0.47763625,-0.054774024,-0.003595168,0.89217377,-0.27248937,-0.21683007,0.81085515,1.1174319,0.9597908,0.11149334,1.4141338,0.2546829,0.001918958,0.054059993,0.13367414,-0.86119676,0.28579003,0.54275805,-0.16135551,0.40630814,0.21824323,-0.11206308,0.41649663,-0.48684558,-0.12684907,-0.07892942,0.4695385,0.32688266,-0.37380522,-0.4574617,-0.10160272,0.09902844,-0.041265424,0.30298474,0.21478137,-0.2564,0.26317504,0.022909435,1.5918903,0.06908763,0.004862097,0.060817864,0.68055683,0.30128404,-0.2317002,0.20996466,0.039325345,0.06948215,0.025735343,-0.656801,0.17129844,-0.18832515,-0.430645,-0.25079587,-0.29002833,-0.42510644,0.11609964,-0.120031,-0.27279055,-0.18742982,-0.0941044,0.46663362,-2.437995,-0.24118096,-0.099930406,0.40727612,-0.10767233,-0.41356304,-0.06789864,-0.43832615,0.3240945,0.2777184,0.39389923,-0.75914675,0.51596004,0.66073674,-0.65543294,-0.10008877,-0.6452101,0.16810374,-0.073140286,0.40713835,-0.026278816,-0.01538851,0.21404529,0.14649571,0.5541125,0.07146955,0.20753886,0.27233452,0.63284343,-0.05293161,0.37074935,-0.2636864,0.5718778,-0.0164528,-0.20218706,0.19738154,-0.25422856,0.23511477,-0.37420788,0.15275432,0.40624514,-0.4899516,-0.93698955,-0.68486667,-0.336522,1.0162796,-0.027305214,-0.62775534,0.2469614,-0.52323085,-0.4016692,-0.18891953,0.6199054,-0.4281678,-0.2500067,-0.66213703,0.08738118,-0.07319044,0.15178066,-0.011404883,-0.05413783,-0.5321036,0.69357324,-0.14164595,0.40326014,0.10644245,0.32343316,-0.22403361,-0.55691904,0.09628489,0.9206415,0.4643324,0.25524467,-0.34060392,-0.12404378,-0.44099805,-0.08757403,-0.029896235,0.9686509,0.42814767,0.032368097,0.05394785,0.15810795,0.1240362,0.08826273,-0.18651725,-0.23824745,-0.3287255,-0.11746542,0.6247957,0.8780356,-0.5437805,0.3250411,-0.019551711,0.03742909,-0.32891354,-0.42707622,0.45372698,0.8593652,-0.25602406,-0.27630216,0.5994141,0.38410243,-0.57034665,0.38747045,-0.76471883,-0.08190415,0.3878555,-0.03011738,-0.34052017,0.19380201,-0.28111613,0.09969643,-0.808219,0.4795618,-0.39918268,-0.38345587,-0.38029462,-0.017236942,-3.6225302,0.2920032,-0.05377495,-0.17566513,-0.27804613,-0.20516807,0.26747176,-0.43319356,-0.7487023,0.20266414,-0.07466144,0.8055256,-0.095274545,0.1895008,-0.24763714,-0.30868977,-0.30293006,0.09516833,0.062977724,0.59664404,0.005744392,-0.3093997,0.09393723,0.062441353,-0.3048031,0.16723976,-0.1779277,-0.6714367,-0.07375794,-0.17786044,-0.17016885,0.6887748,-0.5766331,0.06627195,-0.50933987,-0.059548978,-0.4147648,0.3277807,-0.06879273,0.020369953,-0.04703096,0.038949665,-0.11858437,-0.19697623,0.5641783,-0.042932566,0.5201056,0.5841047,-0.20462953,0.05513899,0.39483336,0.6144298,0.1867486,1.0193914,0.17932151,0.08759935,0.2654666,0.042228352,-0.3193835,-0.40448797,-0.35735103,0.23528719,-0.48225203,-0.4037278,-0.22007293,-0.4510331,-0.7094364,0.29576498,-0.014359073,0.3774974,-0.04812349,0.23451494,0.6356468,0.028972896,0.006627749,0.21065535,-0.15492569,-0.81390667,-0.19259797,-0.40762198,-0.4374277,0.37270078,0.8022291,-0.033712316,-0.070792235,0.1060565,-0.32885572,0.13850144,0.01706112,-0.025256569,-0.041584875,0.21744758,-0.12725194,-0.77170396,0.47822103,-0.3721593,-0.27471226,-0.75897807,0.2723808,0.63820404,-0.62197614,0.4338045,0.2692856,0.1701584,-0.046398092,-0.47827145,-0.022290533,0.020173918,-0.32100502,0.2552658,0.43968704,-1.1954789,0.3562333,0.15216045,-0.064678065,-0.71732134,0.6383987,0.08842332,0.01376675,-0.006027406,0.40516186,0.5182505,-0.051013518,-0.5778374,0.37944385,-0.5218381,0.28159896,-0.054619443,-0.004796597,0.12896757,-0.08055753,-0.15566826,-0.88677824,-0.16429041,-0.5149033,-0.27865,0.12944907,0.15628533,0.48764756,-0.030702634,0.32356635,0.43217075,-0.34196827,0.1772895,0.14649019,-0.38584653,0.2833139,0.5021574,0.56252104,-0.31215486,0.6643031,0.034979716,0.07261785,0.3160908,0.16123971,0.32068413,0.09655792,0.36337188,0.32528946,-0.20583218,0.06125861,1.2032148,0.09050346,0.38566485,0.1314088,-0.2759334,0.5336254,0.011492132,0.2995715,-0.011334446,-0.7565064,-0.17849563,-0.12663826,0.15716009,0.6286352,0.24349405,0.27194196,-0.24442948,-0.480886,-0.0032887838,0.27155894,0.094617866,-1.3890923,-0.10433856,-0.0589466,1.0119572,0.604451,-0.29720688,0.031511866,0.4425092,0.088154264,0.13753934,0.4451312,0.21578103,-0.41634056,0.36845815,-0.5073955,0.35309908,-0.20725523,-0.04826744,0.13963968,0.022381626,0.24119629,0.7803264,-0.1347417,0.00062994525,-0.0931052,-0.09817577,0.0027107922,-0.48360854,-0.044049457,-0.6229949,-0.015601724,0.71832174,0.6623592,0.36460713,-0.092301875,0.072289556,0.061285757,0.0018405609,0.044149738,-0.0075389636,0.079879574,-0.36966237,-0.7196066,-0.43191198,0.4031255,0.023555474,0.052491244,0.11285999,-0.36794224,0.17678393,-0.08373439,-0.19774471,0.12611245,-0.6862974,-0.2011446,-0.22909804,-0.57972044,0.32582033,0.1844895,0.10614974,0.4015772,0.06373401,-0.2845021,0.263135,0.2268812,0.76400757,0.06634975,-0.038737215,-0.5885229,0.055795833,0.32036301,-0.3077773,-0.020515388,-0.10678401,0.12008543,-0.6451083,0.41943872,-0.07633409,-0.4526644,0.24705482,0.034260865,0.10517247,0.58059514,-0.29772168,-0.090101115,0.28226247,-0.107665844,-0.13250247,-0.07529754,-0.09946032,0.23228806,0.02746011,-0.28383902,-0.09272612,-0.11247275,0.04701159,0.010040197,-0.00917157,0.33228853,0.624995,0.29544953,-0.2665351,-0.23631527,0.2351644,0.81806636,-0.03847357,-0.17830773,-0.28995305,-0.72781223,-0.51190555,0.034708478,0.018803434,0.1796331,0.10087021,-0.50189054,0.33403805,0.116348416,0.9339173,0.13746849,-0.46363112,0.20191585,0.5258965,0.017519344,-0.12163889,-0.49981976,1.0055301,0.31272793,-0.25905967,-0.081170626,-0.41044274,-0.10856583,0.1687081,-0.28568092,-0.067226365,-0.024165122,-0.72339594,-0.11617258,0.120112054,0.20393454,0.0083237775,-0.09531965,0.36250997,0.3090318,0.061661243,0.4373628,-0.67763406,-0.35788175,0.30773437,0.329399,0.021920783,0.16265234,-0.3065196,0.17044817,-0.6269467,-0.0071770605,-0.52148145,0.13705835,-0.17554499,-0.2819438,0.13917571,0.36053473,0.56876606,-0.28781483,-0.49484682,-0.2547336,0.49119046,0.04209623,0.24849753,0.44373444,-0.18070492,-0.07977276,-0.03338224,0.6429712,1.3378092,0.074245065,0.22199531,0.2825896,-0.57192177,-0.734248,0.47981232,-0.58738446,0.15733884,-0.0023520698,-0.029038608,-0.60769117,0.2366511,0.26266536,0.007912219,0.09831598,-0.5788619,-0.5601638,0.15411355,-0.32414687,-0.22226442,-0.3503145,-0.12130964,0.8033005,-0.42798263,-0.17105184,0.0029756264,0.49353448,-0.12634867,-0.74521023,-0.3091397,-0.32070154,0.38591287,0.03411046,-0.26216695,-0.51422673,-0.33830994,-0.50500363,0.13502774,-0.007838043,-0.3908582,0.2662145,-0.36222094,-0.00516348,0.81190544,-0.2912656,0.32476842,-0.59000164,-0.5932905,-0.7743911,-0.49496737,0.12716569,0.1394222,0.03359847,-0.5711394,6.785718e-05,-0.039955497,-0.007033749,0.009361169,-0.3857937,0.4711428,0.10240132,0.529438,0.03864788,-1.0581523,0.1526652,0.12533604,-0.21035342,-0.7422437,0.6250084,0.0031730263,1.1072516,0.13380441,-0.020992003,-0.029569643,-0.47777253,0.15038869,-0.29405922,-0.19587833,-0.5522395,0.42898738 -587,0.2998212,-0.20368661,-0.4247642,-0.09670154,-0.19633774,-0.01818316,-0.23171844,0.18520153,0.17660537,-0.31722623,-0.018266082,-0.2320554,0.049667038,0.17401312,-0.117644615,-0.72319794,-0.13122256,0.02857081,-0.679072,0.57992846,-0.43206462,0.22068074,0.15305234,0.15476485,0.09549921,0.27416107,0.26118067,-0.23763637,0.07570897,-0.02404301,-0.00087280787,0.08261279,-0.77585447,0.15660183,-0.14856632,-0.032921545,0.12191224,-0.29227313,-0.61483943,-0.71483886,0.31875318,-0.7533511,0.48068503,0.17660162,-0.25204128,0.32515407,-0.0036176953,0.23428059,-0.4243235,0.13317193,0.19362506,-0.005045993,-0.05408412,-0.025676157,-0.15840735,-0.32588914,-0.60810757,0.098721825,-0.4941866,-0.3018089,-0.45931748,0.055276256,-0.35465094,-0.07846235,-0.12329104,0.32737175,-0.4318386,0.017961,0.2539886,-0.04553003,0.34781307,-0.5828739,0.048165653,-0.17815523,0.16313317,-0.14304976,-0.16487162,0.42347285,0.2255419,0.38973188,0.03996805,-0.21360943,-0.08215829,-0.07541631,0.16868581,0.40894505,-0.2342755,-0.31166703,-0.019483803,0.045525305,-0.014377473,0.14085978,-0.082332626,-0.46690673,-0.10736004,0.058648404,-0.046589263,0.26849014,0.6225672,-0.23240569,-0.38379017,0.33000636,0.35964727,0.3137512,0.0767243,-0.014287536,-0.0034500095,-0.59108293,-0.16704348,0.19924144,-0.22141302,0.5346859,-0.12355016,0.052072454,0.6388788,-0.16153696,0.07622909,-0.12057377,-0.03961476,0.12770241,-0.10773473,-0.17079438,0.29575175,-0.54609686,0.18567468,-0.18516822,0.68500817,0.19762142,-0.65649134,0.51279813,-0.5610241,0.23406434,-0.056824088,0.6326771,0.8457801,0.30639657,0.0720763,0.7463202,-0.5264932,0.15094325,-0.090754405,-0.4380808,0.33115783,-0.1898206,-0.057929743,-0.33612007,-0.2396314,-0.029632227,-0.21436603,0.0068975175,0.32436213,-0.53186524,0.033779986,0.0110321,0.7297227,-0.30236173,0.033453584,0.40996864,0.96785504,0.868801,0.1005558,1.2557856,0.36648232,-0.27308407,0.40268874,-0.29412356,-0.9075107,0.19286713,0.40889812,0.11518967,0.19878559,0.09971933,-0.18707402,0.23773184,-0.45248514,0.07279148,-0.29722527,0.3471364,-0.08649992,-0.1533352,-0.34136257,-0.19722867,-0.1074558,0.12791313,-0.09058435,0.29292107,-0.13837649,0.06277863,0.035667527,1.4503534,-0.20446433,0.2541741,0.0883821,0.5015919,0.229103,-0.1788197,-0.10040756,0.31624562,0.466806,0.30962968,-0.65396917,0.13798583,-0.18228228,-0.31584305,-0.16577384,-0.37405285,0.12480914,0.07082375,-0.37219235,-0.079312906,0.11424885,-0.3048634,0.4970787,-2.7174115,-0.11193369,-0.11926542,0.3245124,-0.31677675,-0.17890158,-0.20278727,-0.47237173,0.5033844,0.36203933,0.5382926,-0.5949462,0.13254859,0.46422502,-0.54272985,-0.003291905,-0.5419224,-0.07150592,-0.014335955,0.48034105,-0.0060175485,-0.023194566,-0.019023884,0.31121415,0.4119309,0.15744832,0.027421901,0.15990876,0.35029808,0.0676296,0.4157064,-0.09814894,0.32030553,-0.27413717,-0.18686096,0.43922064,-0.0813825,0.37819886,-0.112800635,0.13338992,0.22015204,-0.51154673,-0.93231666,-0.5932558,-0.45195183,1.1677636,-0.43331283,-0.4585082,0.3610175,-0.11427285,-0.09051515,-0.051394336,0.5912767,0.021738788,0.19072117,-0.7071643,0.051399656,0.026514815,0.3274646,0.16603367,0.032020085,-0.41911998,0.6005686,-0.05861113,0.13592042,0.32227045,0.18668255,0.12634805,-0.58506984,0.13917877,0.849052,0.3794081,0.085034244,-0.22063844,-0.2650352,-0.023096355,-0.1196819,-0.010545512,0.55467147,0.7833571,-0.038956583,0.060273502,0.10759834,-0.016670082,0.123433575,-0.12769522,-0.31925276,0.0042165774,-0.047654334,0.5173764,0.56206596,-0.09758348,0.2776345,0.07369367,0.15367362,0.012974701,-0.42468023,0.5274172,1.0686283,0.06910253,-0.076818295,0.5216071,0.5198514,-0.20252274,0.3933187,-0.54603547,-0.31152788,0.48723164,-0.1860009,-0.46640876,0.33044624,-0.34852022,0.03963875,-0.6802661,0.39682022,-0.31559685,-0.4303593,-0.5214337,-0.018218726,-3.85453,0.20598142,-0.3701151,-0.17159887,-0.15367256,0.03309554,0.46840897,-0.4471984,-0.4117916,0.22519521,0.05374641,0.50751203,-0.121085085,0.041822977,-0.21335186,-0.11850927,-0.32088667,0.19239187,0.30690703,0.17930092,-0.18068603,-0.3764649,-0.24670537,-0.18561946,-0.4291627,0.13439612,-0.47430465,-0.5075539,-0.26393634,-0.5538222,-0.024426047,0.8149997,-0.21641256,-0.025765078,-0.14012754,-0.015245655,-0.1345773,0.19348504,0.36110988,0.28688312,-0.024367508,-0.048136335,-0.28999677,-0.3183884,0.33874622,0.18039492,0.30893952,0.38611788,-0.19254704,0.023049304,0.5257485,0.4549026,-0.28569728,0.7971168,0.43921795,-0.12297162,0.33754608,-0.25544378,-0.24337217,-0.5955773,-0.39425823,-0.18647252,-0.2671154,-0.6037938,-0.09661948,-0.29827586,-0.6581941,0.42434835,-0.17559804,0.27073738,-0.0086430395,-0.05504281,0.37930062,-0.11095597,-0.075407855,-0.06736316,-0.12800929,-0.5362039,-0.22706138,-0.60320884,-0.5346354,0.22050892,0.8633738,-0.2778338,-0.16737649,-0.073357865,-0.19193129,-0.08288447,-0.18625145,0.01301081,0.2549778,0.35500082,0.16628885,-0.74187034,0.6937429,0.06136799,-0.17422691,-0.69127476,0.21619208,0.5577834,-0.6883425,0.5524116,0.26745114,0.057704594,-0.06851681,-0.51314706,-0.34487048,0.040420566,-0.2558279,0.33275932,0.06649439,-0.78716516,0.37217078,0.12507921,-0.4175312,-0.675976,0.5743365,-0.029855559,-0.31478074,0.10985255,0.31023726,-0.1582187,0.13098994,-0.13638154,0.45964575,-0.2774714,0.35326698,0.26122788,-0.06826972,0.3878823,-0.09089075,-0.15597937,-0.5610007,0.1279565,-0.42489752,-0.26152706,0.3376722,0.09540326,-0.041488107,0.037952505,0.08946431,0.46053424,-0.14910842,0.16027157,-0.008889573,-0.4240252,0.41627678,0.50836176,0.48816195,-0.39662382,0.6405934,-0.010048364,-0.24324729,0.06309112,0.2737054,0.35280243,-0.036093056,0.2393804,-0.06795376,-0.024843782,0.26290038,0.9304576,0.08188777,0.46215174,0.039994378,-0.021578338,0.4611413,0.12718216,-0.025153415,0.029243529,-0.5191384,-0.047205605,-0.0035087892,0.21301118,0.3960397,0.06815784,0.21530096,-0.18116894,-0.27247468,0.043701477,0.31516057,0.2103934,-0.9974028,0.2648075,0.15282695,0.5471373,0.62350804,-0.0021696878,0.055906318,0.65575874,-0.07830126,0.022765351,0.25119624,-0.06019656,-0.6711582,0.52173007,-0.593026,0.32566303,-0.014604209,-0.06043643,0.15054108,0.0813771,0.38514787,0.8395794,-0.17318912,-0.07421471,-0.07304357,-0.3064485,0.16848142,-0.3693952,0.14399531,-0.27893475,-0.4832911,0.546531,0.53453207,0.2080742,-0.07821892,-0.025735008,-0.0537112,-0.20364963,0.29172823,-0.0734389,-0.07229742,-0.004231078,-0.6978464,-0.2592208,0.5809065,-0.0904956,0.15855849,-0.11840587,0.023808075,0.26145956,-0.29542065,0.014241091,-0.19057314,-0.78683656,0.06987547,-0.49733225,-0.26881692,0.39354214,-0.3406877,0.33019647,0.14363779,0.014973627,-0.4151915,0.3725907,0.059241615,0.7033066,-0.1294205,-0.24394502,-0.5067528,0.055405475,0.15644339,-0.2185485,-0.1312252,-0.21784271,-0.04214459,-0.72162664,0.49104553,-0.1390749,-0.26048505,0.06136941,-0.19233611,-0.059267487,0.6456631,-0.1002062,-0.1554378,-0.11377026,-0.18903187,-0.24164869,-0.13382296,-0.05598822,0.21340862,0.32646576,0.05508872,-0.0104616415,-0.047763128,-0.09434421,0.35855204,0.19964997,0.33877197,0.1337611,0.113129675,-0.18944502,-0.035389,0.28976682,0.47338486,0.25359362,0.18866968,-0.18392897,-0.43792614,-0.42470056,0.056508534,-0.0990909,0.39723402,0.08137425,-0.40365896,0.60295856,0.10931873,1.0480721,-0.0061672097,-0.19527832,0.12367363,0.5293731,-0.05904596,-0.25236732,-0.3404615,0.8890156,0.725133,0.02727485,-0.19415809,-0.28755215,-0.1821781,0.12728201,-0.24998453,-0.016238566,0.04901456,-0.7044867,-0.09012761,0.1507121,0.41675234,-0.0018669942,-0.07994708,-0.20422052,-0.0063035255,0.032236297,0.23904805,-0.5504119,-0.15984729,0.31417316,0.06649683,0.04751721,0.17375861,-0.36298963,0.47935182,-0.48253712,0.031913865,-0.23682687,0.08351584,-0.13690317,-0.2670421,0.21656837,-0.046011303,0.4866387,-0.30332613,-0.27993006,-0.24458267,0.49480978,0.16131945,0.19343229,0.6999179,-0.19972281,0.074549325,-0.0006375291,0.47470936,0.95497745,-0.2558924,-0.03549253,0.26600742,-0.4679682,-0.5721747,0.30751878,-0.4000934,0.219209,-0.12678854,-0.2718032,-0.4243378,0.12986854,0.0916233,-0.00074732304,0.012863551,-0.78395474,-0.2613597,0.12475274,-0.1301425,-0.2955935,-0.4104847,0.2883063,0.7261152,-0.422813,-0.19417599,0.20268805,0.057792496,-0.27650514,-0.47489664,-0.030260669,-0.2384417,0.1251739,0.06486987,-0.24981976,0.047082085,0.19642842,-0.36382005,0.17890474,-0.024550255,-0.40242824,0.013729299,-0.045912284,0.008366479,1.0181668,-0.20480332,-0.07872092,-0.63926643,-0.5608946,-0.87837684,-0.40165514,0.6706471,0.24955034,0.13525836,-0.36046746,-0.04394281,-0.025553342,0.24006605,-0.06061036,-0.36661196,0.4417873,-0.051629584,0.46382824,-0.17281404,-0.78214055,0.09858084,0.1665614,-0.24090454,-0.5517184,0.46723673,-0.12994434,0.6979098,0.07813902,0.11731561,0.20052369,-0.43387604,-0.048508532,-0.2569992,-0.15106657,-0.67383045,0.15804799 -588,0.47202674,-0.23228772,-0.39951912,-0.16698663,-0.30991045,0.2960037,-0.06965855,0.3517452,0.05222285,-0.5525894,-0.19045869,-0.14385366,-0.025770307,0.15513521,-0.29101974,-0.6253093,0.007368342,0.120987035,-0.6009108,0.4231989,-0.35054073,0.37235555,0.19859122,0.16837367,0.10311723,0.2558642,0.23907879,-0.16933168,-0.14374427,-0.06694104,-0.31272003,0.27883157,-0.30274335,0.026368601,-0.102330774,-0.2774104,0.04857983,-0.27204964,-0.23719718,-0.7972656,0.44164425,-0.937021,0.4780162,-0.029631257,-0.18695101,0.35430977,0.25557762,0.23646943,-0.14257841,-0.0308838,0.20827709,-0.18465304,0.013082111,-0.19983703,-0.2249889,-0.41308796,-0.64697,-0.043306954,-0.49782264,-0.35478768,-0.30058452,0.21509491,-0.4511054,-0.028942198,-0.042324014,0.5887791,-0.49415225,-0.043874763,0.23999475,-0.24802235,0.4300744,-0.57399046,-0.11699225,-0.14173698,0.263813,-0.085456975,-0.13875957,0.18265969,0.6661656,0.32267815,0.16078833,-0.25462273,-0.31058887,-0.20526679,0.17514333,0.46336725,-0.1342768,-0.4465388,-0.0009892096,-0.0011203368,0.022494277,0.12297375,0.18769696,-0.1957539,-0.11843569,0.13721342,-0.32349172,0.44211873,0.34302202,-0.5050382,-0.31827068,0.30349067,0.7197066,0.05088819,-0.24900037,-0.018062355,0.0060859364,-0.5095652,-0.15741847,0.31523433,-0.45084304,0.4866179,-0.2809659,0.35291588,0.8536202,-0.30188343,0.07248685,0.06246282,0.14819407,-0.14577344,-0.02026999,-0.27028242,0.21664156,-0.54915774,0.012616428,-0.15856081,0.87504876,0.101189695,-0.52393264,0.25364527,-0.54540855,0.13092214,-0.17917477,0.49436253,0.5443306,0.39133433,0.25326675,0.59543735,-0.38527432,-0.029301144,0.0011762499,-0.51007915,-0.020644013,-0.15492342,-0.014974267,-0.44777113,0.048774384,0.002891604,-0.11051116,-0.0865757,0.3926911,-0.57764554,-0.016175512,-0.07375984,0.94395983,-0.34765294,-0.19042349,0.6060383,0.7916749,0.9143606,0.02682749,1.0326321,0.21799564,-0.30806714,0.23198624,-0.31802076,-0.6145544,0.3666951,0.54607636,0.04975563,0.3447299,-0.00016637643,0.0343724,0.32765844,-0.27206257,-0.026738537,-0.2324461,0.02253639,0.19499683,-0.108347625,-0.37714154,-0.19593053,-0.12346136,0.016196135,0.24551232,0.16349666,0.03064368,0.5506319,0.16592652,1.5040698,-0.080822594,0.06356669,0.111400574,0.39302158,0.13353696,0.19326021,0.016903529,0.33006427,0.31137162,0.27919742,-0.610572,0.19270635,-0.26139945,-0.48586807,-0.18044402,-0.3560912,-0.03089773,0.04725154,-0.4137074,-0.11957288,-0.13091938,-0.30633277,0.34894297,-2.55455,-0.23292154,-0.18012358,0.3057866,-0.2654637,-0.3211278,0.015379838,-0.60999274,0.24186295,0.37934926,0.4798922,-0.7431002,0.33443508,0.5478598,-0.56719553,-0.060940918,-0.5054442,-0.25125358,-0.005575676,0.37109944,0.075216256,0.10938821,0.061413784,0.20070513,0.38864127,-0.06771668,0.078073256,0.34088045,0.34665692,0.09362257,0.52725136,0.1544993,0.5440573,-0.16773905,-0.22215833,0.24979731,-0.2467358,0.20989195,-0.07966051,0.14470002,0.5728932,-0.37821475,-0.8510227,-0.7113367,-0.34943286,1.2171074,-0.2507926,-0.28513435,0.29335383,-0.12841728,-0.2669926,-0.22592995,0.38330114,-0.15143612,0.036394645,-0.8167892,0.16635129,0.02175126,0.1708204,0.0737084,-0.11916375,-0.25201258,0.65171474,-0.15277758,0.40767345,0.18495132,0.14090061,-0.26312864,-0.49712875,-0.0068490584,0.97253263,0.4197621,0.075529404,-0.18855028,-0.21704215,-0.33253595,-0.05246083,-0.05553661,0.46289164,0.8330261,0.12785572,0.110140465,0.2287285,0.048640266,0.16795747,-0.1842668,-0.38211295,-0.027680075,-0.16038185,0.44968066,0.35460874,-0.26012477,0.49823382,-0.03384932,0.4702205,-0.030926703,-0.33762997,0.4432266,1.2704374,-0.13324806,-0.21692052,0.63298666,0.38199174,-0.44328746,0.35573304,-0.619077,-0.12397669,0.6488792,-0.26575002,-0.4710166,0.22257735,-0.20148008,0.1092114,-0.92721546,0.34587038,-0.27725354,-0.34954602,-0.4350443,-0.085091144,-3.6230948,0.16148822,-0.33493772,-0.19034514,-0.1818091,-0.121968955,0.13465811,-0.6488909,-0.51600546,0.14491065,-0.012898978,0.68812335,-0.1507948,0.071867734,-0.18263075,-0.31997186,-0.093004584,0.18919444,0.1561452,0.24391551,-0.13962255,-0.50613946,0.18612562,-0.19288881,-0.526818,0.15793973,-0.65157306,-0.6466232,-0.15258238,-0.48954043,-0.36377114,0.73028946,-0.2777424,0.17824885,-0.16224675,0.11691415,-0.024187375,0.40968233,0.20697631,0.16651613,-0.039711017,-0.0037981232,0.0582698,-0.26864916,0.40783167,0.042080924,0.27018455,0.4267903,-0.113044314,0.24178746,0.53258055,0.5602745,0.0411706,0.7812627,0.38863292,-0.13805182,0.28012505,-0.26447666,-0.41177404,-0.65990716,-0.26085815,0.13920921,-0.27450278,-0.55476725,-0.09471791,-0.36066246,-0.7985525,0.66041183,-0.14258647,0.31352842,-0.06626071,0.49934095,0.49315903,-0.18453947,0.05994429,-0.07231752,-0.23875459,-0.54380745,-0.15007058,-0.61342007,-0.48462868,0.041442562,0.8893077,-0.30468744,0.025722418,-0.10174997,-0.13393988,-0.0052583655,0.20046954,0.10152226,0.27260956,0.41812247,-0.28023782,-0.75766957,0.71566355,-0.18342964,-0.21493766,-0.46867016,0.08924584,0.55296695,-0.6216265,0.40736184,0.47366273,-0.07934133,-0.15668172,-0.34736538,-0.20345174,0.047140457,-0.27094308,0.37402567,0.17203626,-0.57792795,0.40135828,0.26531485,-0.227747,-0.64723486,0.5325337,-0.016690802,-0.31338996,0.033000655,0.4622461,0.10629297,0.042903543,-0.23010804,0.07358484,-0.48147246,0.10617245,0.16584438,-0.11718659,0.31804118,-0.13626595,-0.18435484,-0.7916469,0.22835726,-0.51724875,-0.164695,0.27353942,0.14948575,0.10014132,0.37551606,0.0066941422,0.4626112,-0.30910435,0.04482736,0.11247684,-0.2814662,0.30698967,0.42642802,0.32249013,-0.36329252,0.56976825,-0.0766885,-0.056348898,-0.077644266,-0.022279564,0.47162673,0.176648,0.39506996,0.17355463,-0.22849351,0.46410483,0.864132,0.25181872,0.5398257,0.07707798,-0.1360099,0.2909228,0.11638379,0.31089357,-0.052122217,-0.55323523,-0.10514763,-0.08979716,-0.0008128246,0.5934808,0.025642468,0.3205442,-0.13693346,-0.2795471,0.021760348,0.20454231,0.06904079,-1.1156152,0.26540026,0.27416155,0.7896225,0.29558083,-0.035129946,-0.011587981,0.69470495,-0.33842617,0.13937016,0.4574596,-0.05930271,-0.57320213,0.578989,-0.5888754,0.3480608,-0.19187155,-0.109561995,-0.17314106,-0.13975565,0.25696552,0.8775881,-0.16861738,-0.13682012,-0.05873863,-0.44322842,0.43145573,-0.5376517,0.17723534,-0.47547004,-0.2503924,0.44592345,0.48230088,0.20945077,-0.19193476,0.07598429,0.14153977,-0.094631225,0.3857117,-0.012120808,0.31061178,-0.22795948,-0.62680143,-0.24751134,0.503455,0.14026332,0.20089598,0.010419607,-0.13235149,0.24557708,0.012475936,-0.024340017,-0.12212079,-0.67014325,0.029438037,-0.19779049,-0.5355248,0.5056563,-0.23731253,0.21813364,0.28372064,-0.07837834,-0.42549154,0.2390705,0.286205,0.553955,0.067603454,-0.13894388,-0.44727528,0.13870248,0.01899803,-0.19310299,0.013305368,-0.16092807,0.24295466,-0.5524036,0.5313538,-0.17218262,-0.30476096,-0.12693852,-0.31112248,-0.19598223,0.44965628,-0.17576481,-0.023504445,-0.22726847,-0.24462959,-0.15379024,-0.16464478,-0.12087048,0.30876577,0.07165483,-0.03982625,-0.28168944,-0.13718969,-0.18180059,0.5266619,0.026662353,0.3903291,0.39649242,-0.17526245,-0.43250746,-0.3128358,0.19477396,0.26255566,-0.03494245,-0.09349657,-0.3004661,-0.4444744,-0.30014834,0.2263159,-0.09582674,0.40748814,0.12180066,-0.33854902,0.9119918,-0.19208571,1.1346234,0.02643961,-0.45613912,0.049306694,0.5568924,0.020387711,-0.03930801,-0.3271314,0.8649788,0.51127666,-0.094897375,-0.1808671,-0.32995227,0.10221443,0.11096909,-0.1862039,-0.07763586,-0.10993551,-0.59162647,-0.36662847,0.18941936,0.28164816,0.16301021,-0.0051347017,0.117969066,0.26904958,-0.04863688,0.47893903,-0.46862203,-0.2602806,0.31572774,0.14415012,-0.0020481804,0.14327663,-0.30760145,0.52099025,-0.5524349,0.07025719,-0.2932255,0.21836407,-0.17948692,-0.24568525,0.23548716,0.06879491,0.38865787,-0.07701254,-0.40555236,-0.30363783,0.4618659,0.18517222,0.09569177,0.502448,-0.32395998,0.08305397,0.10820269,0.5899438,1.0598322,-0.09650794,0.05784304,0.25657812,-0.44385013,-0.5662398,0.402413,-0.2516511,0.23826465,0.015784483,-0.13744931,-0.5271092,0.2381663,0.34193116,-0.0025023976,0.027370019,-0.44487488,-0.3376071,0.275659,-0.51384884,-0.18129928,-0.2519486,0.29859892,0.5119432,-0.49280325,-0.26728252,-0.054519016,0.2598635,-0.20008598,-0.48451698,-0.116539076,-0.32142004,0.38305032,0.14981395,-0.25360447,0.07397763,0.020374505,-0.38952792,0.21735425,0.34758216,-0.4080958,0.040648345,-0.30202147,-0.03055753,0.8041172,-0.10527817,-0.14241266,-0.57714343,-0.42837283,-0.8425741,-0.44212157,0.5168429,-0.014672681,-0.014004037,-0.5589718,-0.02862059,-0.12471655,-0.13022172,0.023819815,-0.335581,0.44071358,0.1571602,0.36496148,0.060386017,-0.72789484,0.08311394,-0.0531931,-0.05489241,-0.66817486,0.41325867,-0.16460484,0.6567106,0.07060887,0.00039658943,0.3739587,-0.3213285,-0.115211025,-0.23639698,-0.2879031,-0.7200161,0.010268376 -589,0.5277773,-0.16448466,-0.5106334,-0.024312168,-0.17133054,-7.169694e-05,-0.057063177,0.5213452,0.32974315,-0.2603935,0.08581039,-0.07795075,-0.010819058,0.2902152,-0.09299208,-0.2729294,0.06518017,0.09710671,-0.41565728,0.519332,-0.41701728,0.21187022,-0.27132052,0.49360895,0.12981115,0.33112356,-0.01721548,0.07907429,-0.10898171,0.008690121,0.19007382,0.59635496,-0.20286247,0.17536421,-0.080353916,-0.14932281,-0.059269503,-0.28944203,-0.43505946,-0.76917934,0.2475656,-0.54016405,0.3885017,0.06307943,-0.42776877,0.037092835,-0.07815232,0.18893805,-0.3205039,-0.13595508,0.014018447,0.014196418,0.08511302,-0.29810846,-0.12847349,-0.25189048,-0.4528194,-0.03263118,-0.4435204,0.020936325,-0.15634309,0.16502742,-0.29702312,-0.13458611,-0.11384551,0.5883504,-0.4798036,0.16757919,0.15211266,-0.120612375,0.31555665,-0.54673624,-0.32019582,-0.095692456,0.13396297,0.15240195,-0.31820256,0.29337794,0.30639872,0.40898135,-0.08954522,-0.06474053,-0.37669292,0.00087610167,-0.029975345,0.3606629,-0.1930047,-0.53220814,-0.15792395,-0.008987382,0.23672491,0.27668375,0.1691237,-0.22270879,-0.15640488,0.091978945,-0.2223497,0.40114665,0.5244871,-0.31981444,-0.077570155,0.26975775,0.4521191,0.34543842,-0.23535782,0.054398045,0.06275024,-0.527839,-0.07904725,-0.044677176,-0.08458456,0.57983315,-0.09341933,0.29511365,0.61385703,-0.18038209,-0.20787472,0.15079795,0.16989928,-0.14246126,-0.30869925,-0.106236815,0.026825171,-0.35268033,0.056626342,0.001046326,0.6332735,0.14724806,-0.51238143,0.3645159,-0.4581589,0.132185,-0.06374285,0.54563564,0.7127638,0.41139597,0.45702657,0.7590789,-0.30043656,0.04574825,-0.12254493,-0.27483118,0.08706255,-0.107413396,-0.18206003,-0.5323438,-0.11194962,0.033386193,-0.28999788,0.19531623,0.36121416,-0.53764296,-0.21406968,0.107184306,0.70675695,-0.24098599,-0.1049448,0.58186084,1.0735378,0.84146607,0.016460579,0.91897464,0.123857796,-0.077563,0.302423,-0.4298994,-0.6531899,0.29824394,0.29277968,-0.005133856,0.1894779,0.035131358,-0.14232375,0.3950582,-0.22841516,0.03339631,-0.05606938,0.44466913,0.144307,-0.17063294,-0.36450434,-0.24272521,-0.14147915,-0.048112053,-0.11205808,0.2919472,-0.24483787,0.29277304,-0.019532047,1.6285964,0.006721434,0.051956687,0.1575981,0.5349188,0.2633994,-0.26359233,-0.10715787,0.41579497,0.19588523,0.16870134,-0.49339178,0.25090855,-0.27299726,-0.5756002,0.013012312,-0.35866177,-0.089241154,-0.047551606,-0.4906684,-0.12382731,-0.10401363,-0.31630248,0.5030979,-3.085985,-0.29599565,-0.03236821,0.42310667,-0.24166909,-0.22483574,-0.0976324,-0.3741389,0.29151088,0.32414398,0.4341947,-0.80144155,0.16494857,0.39266896,-0.41939792,-0.07031774,-0.5324315,-0.03093426,0.016533915,0.35586643,0.038233727,0.077249296,0.10375407,0.16821684,0.4510638,-0.034658723,0.1903791,0.19360483,0.2320664,-0.048382707,0.41667354,-0.099148646,0.3768307,-0.2918126,-0.24202666,0.2995506,-0.3465334,0.19999456,0.07579319,0.123943,0.52053547,-0.33894682,-0.8109459,-0.48167613,0.08077206,1.1072085,-0.19306447,-0.41124138,0.3318794,-0.68214387,-0.230967,-0.23774898,0.38168576,-0.020542456,-0.18205681,-0.7414469,-0.0092238095,-0.14029855,0.058703896,-0.10054423,-0.077905595,-0.19024348,0.4997875,0.009305178,0.46035707,0.42258328,0.045543723,-0.2997703,-0.5834362,-0.060727052,0.51051855,0.42694607,0.16508074,-0.20947129,-0.17547494,-0.18621093,0.100776255,0.18756919,0.55680525,0.5140201,-0.14035833,0.23514389,0.3234158,-0.10506326,-0.134425,-0.22513154,-0.20963144,0.025331635,0.09601973,0.51185256,0.84186417,-0.18755552,0.43826595,0.07059863,0.17628558,-0.15440486,-0.48561165,0.4765814,0.8333106,-0.3027981,-0.31146246,0.5400232,0.37860078,-0.38153654,0.30551258,-0.45387304,-0.22890635,0.5224157,-0.20546255,-0.29371923,0.3218304,-0.2641744,0.21259989,-0.71316844,0.16225937,-0.317164,-0.5050627,-0.44024256,-0.11708413,-3.105273,0.16463478,-0.27678677,-0.26345438,-0.01110021,-0.13624066,0.1379153,-0.6549986,-0.46907753,0.13103549,0.20509557,0.6114433,-0.1260888,-0.09026898,-0.3032932,-0.49132872,-0.19459619,0.13171475,0.15466705,0.49112654,-0.056159604,-0.58386815,-0.07573411,-0.0013813749,-0.36028373,0.09542532,-0.53373766,-0.55027014,-0.13025649,-0.53263235,-0.34326592,0.65755004,-0.00732141,-0.04421695,-0.21206798,0.023957673,0.059917264,0.2453295,0.094498396,-0.0021329643,0.032847125,-0.04679536,0.013541292,-0.3404308,0.0668179,-0.05209865,0.19247009,0.4601849,-0.06595811,0.2515089,0.6009761,0.64469814,-0.13134418,0.85589117,0.5648874,-0.059522524,0.28965572,-0.29405394,-0.26871926,-0.45831275,-0.33288968,0.010922328,-0.40592685,-0.4207684,-0.11189664,-0.38049498,-0.6090007,0.58127666,-0.19212833,0.27301124,0.03335727,0.23935102,0.62288487,-0.15787861,0.011747621,0.051299613,-0.21180996,-0.59063494,-0.29602408,-0.6016624,-0.47640023,0.33255717,0.9300497,-0.38588062,0.003961997,0.0991118,-0.3465315,-0.13317627,-0.0059775915,0.024286821,0.17545415,0.38598806,-0.20994344,-0.34523058,0.2715773,-0.11483741,-0.14244226,-0.47631466,0.21936378,0.63642883,-0.54198027,0.62819195,0.152994,0.039949432,-0.3149407,-0.61244875,-0.10725488,0.082676485,-0.1656416,0.58365315,0.3845362,-0.8579045,0.46708164,0.3848734,-0.25604266,-0.5661024,0.4622202,-0.17265005,-0.40033907,-0.21017861,0.31147832,0.1096469,0.09381728,-0.21300396,0.35478336,-0.45712036,0.20362648,0.32859254,-0.25440368,0.31529793,-0.18046598,0.019938875,-0.73944193,-0.126411,-0.4780837,-0.32297564,0.31618187,0.1001923,0.08857547,0.008757178,0.17008059,0.33289132,-0.3256709,0.09235257,-0.01755568,-0.15701072,0.31467044,0.49171305,0.5234486,-0.31734836,0.507372,-0.01404296,0.021849621,0.05048473,0.02288095,0.28222758,0.09128566,0.42342198,-0.023755025,-0.21489652,0.325372,0.82713675,0.09019834,0.4467922,0.0020666653,-0.17699248,0.040328547,0.032921962,0.32109725,-0.18385945,-0.4259738,0.08609679,-0.26767945,0.21521144,0.43497238,0.19362554,0.17435275,-0.0027515106,-0.4280895,0.018295133,0.20488507,0.117468365,-1.3743944,0.32870072,0.21472347,0.6903527,0.34536362,0.20802496,-0.1475495,0.68760717,-0.18408391,0.08630358,0.4196625,0.021770526,-0.48554254,0.42331415,-0.8159739,0.6235675,-0.09020806,-0.03793644,0.06816512,-0.059746716,0.42973348,0.7015029,-0.052218154,-0.1022193,0.15430203,-0.32020104,0.077426665,-0.30406708,0.022564316,-0.7650436,-0.37033165,0.51847345,0.6129735,0.3256716,-0.17249279,0.016464934,0.22127773,-0.06304403,0.21136552,-0.036462445,0.17563325,-0.22834921,-0.6720043,-0.09937109,0.44221637,0.16984282,0.14518286,-0.08394569,-0.043441765,0.2282883,-0.1779259,-0.03663664,-0.0092167,-0.6619891,-0.13384545,-0.34158736,-0.3967097,0.5341519,-0.16148742,0.35182235,0.17071642,0.074355856,-0.34013933,0.4430663,0.0007849885,0.82359636,-0.17406806,-0.029780556,-0.4863212,0.19747321,0.136074,-0.12653324,-0.21324599,-0.22132428,-0.026353091,-0.35413384,0.41623873,0.07023181,-0.24547227,-0.17888525,-0.07843224,0.08088586,0.5304611,-0.08628557,-0.33998668,-0.34799916,-0.13245723,-0.41474748,-0.19405563,0.05892627,0.2672308,0.28121153,-0.10396883,-0.05803532,-0.12519602,0.13400033,0.31844044,0.117403865,0.15363741,0.41003093,0.0138841495,-0.24531342,-0.1520761,0.22918358,0.51957107,0.06386703,-0.08606957,-0.36062425,-0.47764605,-0.42369828,-0.11187339,-0.11341238,0.4035415,-0.023825807,-0.18801263,0.73281693,-0.11351469,1.1314176,0.020254295,-0.2580668,0.08482939,0.45245415,0.046581555,-0.008784324,-0.3130918,0.78636694,0.5141734,-0.1908136,-0.22478974,-0.2557773,-0.021732505,0.21812028,-0.19746092,-0.093624406,-0.027071293,-0.6380787,-0.039344512,0.20200817,0.18333343,0.24893437,-0.17895606,0.050209254,0.29881215,0.061775405,0.2673967,-0.35237756,-0.010769218,0.25620693,0.35506868,0.06710037,0.056354035,-0.50113463,0.4118897,-0.3573609,0.22716643,-0.22925009,0.24103472,-0.123704314,-0.4365366,0.21173114,-0.069793575,0.31322503,-0.31468487,-0.20658809,-0.32694468,0.40879846,0.1408382,0.013489006,0.54123414,-0.2864099,-0.07963523,0.12273883,0.47519428,1.0099192,-0.28288907,-0.17459781,0.3672909,-0.2711864,-0.7833955,0.28020617,-0.30656847,0.2021285,-0.07889598,-0.15120849,-0.64477646,0.24708375,0.17916986,0.11361152,-0.10645331,-0.5742597,-0.03720072,0.21155296,-0.3697171,-0.1319804,-0.30174217,0.029810723,0.4770581,-0.20724995,-0.51069313,0.024973247,0.2813179,-0.18360674,-0.39292878,0.03111083,-0.32521468,0.3217086,0.06140454,-0.40221316,-0.09600524,0.13227972,-0.45983312,0.022504555,0.10178903,-0.31165045,0.19482657,-0.324248,-0.14870802,0.9946754,-0.3421424,0.3280834,-0.2515268,-0.427153,-0.67206407,-0.16945082,0.34979272,-0.028888356,-0.032575354,-0.7616229,0.103311636,-0.058113623,-0.25317848,-0.20877442,-0.30428296,0.54726815,0.06993552,0.27236813,-0.020427026,-0.69501185,0.14312778,0.13530007,-0.10308997,-0.5461365,0.5936762,-0.24500722,0.7168569,0.12794617,0.08870855,0.29198793,-0.35920793,-0.02013734,-0.203473,-0.23475519,-0.5400156,-0.044311326 -590,0.46921524,-0.35449123,-0.4258545,-0.2185201,-0.23156789,0.08020195,-0.025979647,0.64141786,-0.05056244,-0.38542598,-0.17611903,-0.048907004,0.05648031,0.41835305,-0.29986075,-0.45293957,-0.30277875,0.03995406,-0.43218744,0.60158926,-0.3777593,0.11590132,-0.23936258,0.42742524,0.18887268,0.24180919,0.05882626,-0.074504755,0.019948598,-0.09870986,-0.104826465,0.30514738,-0.59983927,0.11849825,-0.06294548,-0.54492176,-0.1301026,-0.48696247,-0.45500973,-0.64034843,0.35473654,-0.90221083,0.6278037,0.04985475,-0.2740884,0.42774293,0.15819423,0.2244686,-0.2519077,0.0032331645,0.031040628,0.21491326,0.20407869,-0.19304739,-0.089661516,-0.42232835,-0.71113,-0.035221323,-0.42713964,-0.119228855,-0.12725724,0.05354837,-0.26502004,0.050983515,-0.11947601,0.4010926,-0.563481,0.05136433,0.115984395,0.072107606,0.3252168,-0.58576655,-0.25236848,-0.07346051,0.2261878,-0.18388996,-0.10486378,0.28632465,0.21002817,0.33045623,-0.24696405,-0.1221267,-0.3556171,0.11165906,-0.08367748,0.4817616,-0.26691315,-0.59332794,-0.06833866,0.03936454,0.34947914,0.08933227,0.1890129,0.051776633,-0.1572446,-0.06497375,-0.24025951,0.38209394,0.45094898,-0.42209628,-0.40566295,0.44316393,0.40455708,0.22996514,-0.13487272,-0.06378314,0.0105514545,-0.5443542,-0.11098858,0.10272411,-0.3134203,0.5075223,-0.14286403,0.42638204,0.5205457,-0.15043384,0.15180649,0.120758645,-0.009090011,-0.072160445,-0.17599696,-0.4481018,0.2165439,-0.1529635,0.22526616,-0.13818334,0.68712044,0.008868653,-0.74141955,0.25830027,-0.5932135,0.10053063,-0.15185499,0.38998857,0.6093939,0.61541307,0.15071376,0.5942001,-0.21420401,0.05058286,-0.06358278,-0.22326423,0.09494955,-0.10700873,-0.16721153,-0.58024174,0.04079816,0.09949264,-0.12872522,0.044332404,0.555788,-0.5920913,-0.112973064,0.14492393,0.81516194,-0.30083707,-0.058004014,0.74427766,0.9738318,0.9299514,0.066779085,0.86999065,0.17504314,-0.2238241,0.22389087,-0.3687424,-0.7419761,0.28284198,0.41990674,-0.39678067,0.49192408,0.0068007065,-0.115191296,0.33963197,-0.37805513,0.010145183,-0.22950271,0.08022309,0.2585883,-0.17090024,-0.39064613,-0.3746002,-0.19174875,-0.0139981005,0.10163454,0.27620748,-0.32534188,0.3511809,0.06090343,1.6284868,-0.0018338698,0.057758674,0.11589641,0.64104366,0.19922297,0.04242709,0.05754486,0.24278392,0.4217766,0.21805343,-0.70635724,0.35403702,-0.09839373,-0.67928857,-0.08552318,-0.34721273,-0.18638155,-0.105759576,-0.5863279,-0.31610042,-0.07419854,-0.048528884,0.39916867,-2.6654334,-0.13491458,-0.073391944,0.4820789,-0.27234364,-0.30352747,-0.0788744,-0.38219497,0.49100515,0.3915203,0.4147027,-0.6972141,0.47937328,0.3634773,-0.51316637,0.006102226,-0.58873105,-0.097637855,-0.04254777,0.35296896,-0.054072984,0.08698913,0.4018526,0.18069674,0.39688647,-0.06879352,0.14031349,0.22140744,0.42092833,-0.010926628,0.46170458,-0.10641437,0.43180597,-0.2948527,-0.14154142,0.22210595,-0.40309933,0.11848183,-0.10812127,0.1877173,0.33474356,-0.5797754,-0.9742759,-0.61732984,-0.009314216,1.26924,-0.2090138,-0.35632688,0.12148355,-0.34013277,-0.15779313,-0.26667297,0.37837747,-0.30454248,-0.20067914,-0.9192367,0.07198368,-0.17729655,0.20864855,-0.034544602,-0.0034542084,-0.45077616,0.49422166,-0.027503835,0.6145761,0.26495412,0.13680515,-0.29125318,-0.58796567,0.057856616,0.60102165,0.44777536,0.07496638,-0.08966084,-0.14744458,-0.0797028,0.1379765,0.11901955,0.5527817,0.5183099,0.023210464,0.20221922,0.26623195,-0.11799554,0.11018681,-0.20224437,-0.16167897,-0.26418048,0.011218584,0.50082135,0.56386393,-0.314282,0.39898634,-0.22908953,0.30720723,-0.21297233,-0.47043756,0.50591993,1.1339711,-0.155909,-0.28808767,0.6596706,0.7150081,-0.28047878,0.25157502,-0.56317735,-0.3489183,0.42544234,-0.23935698,-0.35161033,0.10499598,-0.22553103,0.197452,-0.9324306,0.2486051,-0.3866913,-0.30288956,-0.5678792,-0.06774397,-3.1997793,0.11842488,-0.3035502,-0.26086468,-0.2315221,-0.41676065,0.19727468,-0.72705215,-0.63986075,0.1374422,0.13204035,0.5946777,-0.03717508,0.10624313,-0.18456429,-0.17494267,-0.29145372,0.1802203,0.19010568,0.35603845,0.10266909,-0.53987795,-0.06610529,-0.039577182,-0.5499747,0.155464,-0.55565864,-0.4390705,-0.049363974,-0.5644115,-0.34202856,0.5170969,-0.12205843,-0.0114296395,-0.11168819,0.04912527,-0.050402276,0.3383742,-0.08978617,0.120819405,0.047232565,-0.14185064,0.23629211,-0.18990186,0.34990552,-0.03452331,0.33388442,0.20524622,-0.25739905,0.19567785,0.6238747,0.48574126,0.014302856,0.6144739,0.695764,-0.111469746,0.266446,-0.3035999,-0.19169651,-0.5438702,-0.31269243,0.07968767,-0.30370614,-0.5526778,-0.009214897,-0.32305643,-0.8898314,0.5394926,-0.24212343,0.23507023,-0.047104232,0.23470281,0.66772896,-0.063007884,0.10939029,0.017090265,-0.13889143,-0.46513999,-0.3015346,-0.61722934,-0.2936326,-0.049494524,1.181314,-0.19233425,0.06821038,-0.06561947,-0.26189047,-0.007154915,0.09050859,0.008341716,0.18305159,0.38002616,-0.16514263,-0.68851334,0.40163663,-0.061880853,-0.22282313,-0.45587698,0.20817839,0.56795657,-0.6262436,0.39912707,0.31825578,0.015896609,-0.25163257,-0.5541338,-0.09288908,-0.04029008,-0.09870417,0.2443691,0.2834721,-0.77787393,0.49590385,0.32320693,-0.31197745,-0.6865879,0.66326624,0.03206688,-0.4422787,-0.10932275,0.22544803,0.24614127,-0.029845513,-0.12881497,0.26422766,-0.37034962,0.34675962,0.024921127,-0.068700075,0.30146715,-0.11177672,0.15306337,-0.7804391,0.13474193,-0.51826704,-0.29445785,0.45333216,0.044314284,0.22660989,0.14561465,-0.041231174,0.34568164,-0.43765017,0.050214887,0.014419957,-0.27542064,0.25580484,0.3252571,0.4414775,-0.4189984,0.5139941,0.026766159,-0.0063515534,0.16012059,0.14926226,0.42678657,0.13135797,0.40056625,0.04080345,-0.18762325,0.2938607,0.6804269,0.19965686,0.38846105,0.04379527,-0.15077803,0.30424723,0.0068404856,0.0695341,-0.14818671,-0.37696213,-0.07587363,-0.22485925,0.08422041,0.39871496,0.19775607,0.21347696,-0.26558435,-0.26598448,-0.04760148,0.3470089,0.027308602,-1.217382,0.36677596,0.111572474,0.7415022,0.479064,0.07161535,-0.051069837,0.62872,-0.2550038,0.14137506,0.4528238,0.2761026,-0.551751,0.5536841,-0.6247097,0.4854355,0.027901951,-0.03800771,-0.055706896,0.084446356,0.31517962,0.6855371,-0.042243913,0.06526584,0.1629645,-0.47504324,0.051182874,-0.31719434,0.081609845,-0.62104446,-0.07769963,0.6542279,0.4757833,0.2848118,-0.09258171,-0.023903133,0.04871716,-0.14976658,0.19281395,0.10728928,0.16957048,-0.110415615,-0.76287997,-0.11782826,0.5025948,-0.06315841,0.20158389,0.015606784,-0.45650652,0.23136392,-0.15722746,-0.1266515,0.049891505,-0.685405,0.10818133,-0.34388065,-0.27077147,0.4481544,-0.20489308,0.17153706,0.20637268,0.10098387,-0.29598328,-0.041765735,-0.021187397,0.7598635,-0.13879625,-0.2638526,-0.45920914,-0.051253933,0.13719454,-0.21158229,-0.0742418,-0.20298275,0.029620638,-0.27986372,0.41108286,0.1412955,-0.22288135,-0.023985047,-0.1342028,0.1296585,0.4780703,-0.07922462,-0.104960114,-0.19121607,-0.15678619,-0.28848386,-0.2875028,-0.22459698,0.29165122,0.29613495,0.09483734,-0.092545,-0.05335187,-0.12278063,0.7362999,-0.007456727,0.59460723,0.471683,0.2757569,-0.33389232,-0.26190224,0.21272947,0.5322125,-0.07464422,-0.0038836736,-0.44793323,-0.5608916,-0.11965822,0.011551518,-0.25253984,0.37356853,0.06307705,-0.19462575,0.7518067,-0.12045814,1.0263717,-0.021607904,-0.39530393,0.049847227,0.46701,0.03500277,-0.12874737,-0.24851523,0.9964293,0.60527265,-0.026292209,-0.16270001,-0.19153072,-0.047874067,0.083500914,-0.20898588,-0.22302479,-0.117472515,-0.61580634,-0.3686978,0.16479945,0.1084933,0.22908704,-0.006963363,0.110727616,0.20679805,0.011725137,0.3606561,-0.4413013,-0.17265345,0.22931567,0.26966122,0.121716775,0.20825328,-0.5928442,0.27345508,-0.42846283,0.07255301,-0.3001865,0.16626239,-0.022357885,-0.33358556,0.14300004,0.048807565,0.30804464,-0.21597527,-0.34998566,-0.21240889,0.46359533,0.02481233,0.059503928,0.5167328,-0.21932054,0.20336077,-0.034224622,0.6115338,1.0027299,-0.13294086,0.010163922,0.27592394,-0.44523412,-0.8655853,0.31713903,-0.20455623,0.2734388,-0.07659927,0.033062294,-0.5700344,0.3433707,0.25040668,0.06608885,-0.014192805,-0.5969633,-0.31255835,0.41698104,-0.31944048,-0.22266494,-0.4605136,0.13110663,0.6264973,-0.25043052,-0.15203013,0.05664197,0.3512489,-0.09030564,-0.38667026,0.05876631,-0.4928152,0.22577731,0.09069601,-0.34907973,-0.2484996,0.098304085,-0.3228054,0.3184919,0.25948116,-0.23981158,0.10901348,-0.40443838,0.024365513,0.99872726,-0.26711753,0.14070974,-0.5719588,-0.43436578,-0.9731053,-0.40125495,0.5211176,0.25251773,0.00038212078,-0.7770957,0.19637579,0.05346536,-0.4112163,-0.22216225,-0.3440245,0.5020025,0.097807065,0.28031886,-0.053414464,-0.61997765,0.2959971,0.09177112,-0.11346306,-0.40594,0.59638876,0.06941451,0.9659768,0.079547316,0.22376229,0.09228124,-0.45722926,-0.2266822,-0.114496075,-0.19428748,-0.70437753,0.11652662 -591,0.5681739,-0.1530087,-0.36485252,-0.19430129,-0.30421966,0.0046898685,-0.24957618,0.39911488,0.28432837,-0.4314766,-0.2648556,-0.25659883,0.13237037,0.08293189,-0.060254604,-0.29890177,0.0039403364,0.27200657,-0.64513355,0.6811705,-0.29624993,0.2602382,0.10464605,0.4366364,0.2155937,0.19268112,0.04356681,0.03079696,-0.1449937,-0.22685042,-0.0016963221,0.19839185,-0.6227999,0.21632929,-0.42298692,-0.41404364,-0.21602081,-0.48269925,-0.3014122,-0.8025819,0.11513133,-0.89819247,0.48358306,-0.09427075,-0.41270345,0.3506137,-0.003119439,0.2536955,-0.18096429,0.056075748,0.11094093,-0.02997128,-0.18737194,-0.20942874,-0.16078456,-0.27373904,-0.45486253,0.13191837,-0.31388324,0.059712257,-0.42666852,0.13614346,-0.26282805,0.10450439,-0.10345486,0.4320255,-0.35744,0.2172994,0.09742993,-0.12814319,0.19753751,-0.46282682,-0.0529058,-0.15539001,0.2904137,-0.09946982,-0.27170926,0.1348725,0.2320865,0.5398661,0.06674691,-0.19554411,-0.22827817,-0.07024041,-0.068354845,0.3947691,-0.012686461,-0.3105818,-0.17656028,-0.2450886,0.34020162,0.22350518,0.16544706,-0.15805039,-0.16542038,-0.18856072,-0.21926752,0.26614437,0.55000156,-0.28440228,-0.18742403,0.39512074,0.62694335,0.06828721,-0.12791136,0.0020815432,-0.031455044,-0.45857844,-0.18070975,0.050738946,-0.26615185,0.4563735,-0.20391074,0.17623189,0.5661567,-0.12697592,-0.16459131,0.2065725,0.060054526,-0.08033395,-0.3254481,-0.25889683,0.28010088,-0.5773592,0.07778561,-0.24480039,0.7126309,0.03455773,-0.7395313,0.2426587,-0.5489974,0.19778906,0.0132112745,0.47473556,0.85700876,0.43134832,0.27882633,0.6622622,-0.31921297,0.027181992,-0.21968073,-0.23397803,-0.077574596,-0.19882144,0.04164903,-0.4997053,0.031676035,-0.011417657,-0.17659956,0.08963868,0.6060209,-0.5106645,-0.19555517,0.10536918,0.69997406,-0.2888217,-0.11551607,1.0926661,0.8075115,1.0179629,0.14322022,1.1258324,0.27682242,-0.09686448,0.116461284,-0.30689338,-0.51317084,0.25872907,0.2706509,0.072996646,0.12889804,0.06277101,0.03595616,0.31057936,-0.49514437,-0.06800375,-0.318383,0.14689052,0.014019966,-0.00077231415,-0.4629991,-0.4360992,-0.05782549,0.21314096,0.18466382,0.28738895,-0.19316368,0.41028363,0.060227428,1.3264551,-0.022792643,-0.049730096,0.17553474,0.37847203,0.23788746,-0.23211052,-0.17911394,0.27150238,0.3233157,-0.09170963,-0.49073493,0.042776987,-0.117928796,-0.3466838,-0.054265253,-0.36094534,-0.12069875,-0.13222922,-0.45314384,-0.26640576,-0.15584505,-0.4847607,0.52151096,-2.5107436,-0.18714169,-0.059049524,0.39495283,-0.12044434,-0.3710876,-0.20322657,-0.5679178,0.44255713,0.27140734,0.4606073,-0.66843235,0.42887807,0.3113923,-0.6557116,-0.047677428,-0.69263756,0.01937823,-0.00455115,0.27935794,-0.0116875395,-0.1073634,-0.12357725,-0.087423496,0.6107895,0.097062,0.2733279,0.5420295,0.3127361,-0.012122162,0.39151156,0.12387106,0.41878992,-0.2896481,-0.30556843,0.36896867,-0.3682248,0.154266,-0.25233242,-0.023611672,0.60451317,-0.60528624,-0.8558035,-0.69179773,-0.1865425,1.2162769,-0.21248925,-0.44937184,0.20601648,-0.3522367,-0.2830935,-0.02432461,0.5918709,-0.18290977,-0.05717261,-0.8224027,-0.06726443,0.048606098,0.12371602,-0.051320873,-0.007596612,-0.39477926,0.6422309,-0.1667492,0.39018482,0.30977252,0.12814452,-0.15864386,-0.3872912,0.18429598,1.0024757,0.36409593,0.1523428,-0.32619783,-0.2981109,-0.39618486,-0.06424968,0.08614839,0.5538402,0.5527815,-0.074390166,0.17650256,0.33741656,0.026658662,0.10334652,-0.19357847,-0.094996154,-0.24637248,0.15302947,0.6757407,0.7416059,-0.013495991,0.33193916,-0.21025369,0.20401601,-0.174263,-0.6410677,0.5821466,0.8475403,-0.17462136,-0.24540085,0.5468116,0.4821951,-0.09016344,0.5396495,-0.5154098,-0.48249727,0.27104667,-0.15467672,-0.33714682,0.26911837,-0.25490007,0.20107764,-0.77594507,0.22925854,-0.12902611,-0.48618412,-0.4696705,-0.1211708,-2.3600366,0.1919561,0.06874699,-0.22242017,-0.110103555,-0.4804582,0.09562057,-0.31757793,-0.60987294,0.13405402,0.041403018,0.71467656,-0.0682133,0.11015242,-0.113053456,-0.4631825,-0.48842964,0.07003009,0.16341019,0.4510911,-0.113373265,-0.35279563,-0.0073620006,-0.17765658,-0.41712612,-0.05650776,-0.6127924,-0.422106,-0.22825265,-0.44944054,-0.30143717,0.46536785,-0.19717857,0.19739708,-0.28952533,-0.041077826,-0.064807266,0.29443967,0.047745906,0.0911367,0.17229034,-0.0837947,0.09059644,-0.20296276,0.32326177,-0.0034853239,0.05661275,0.28644642,-0.22981398,0.2881683,0.4724843,0.6340348,-0.15942805,0.9396832,0.42454243,0.024620948,0.27355754,-0.12539199,-0.3706233,-0.56946635,-0.16768606,-0.13123275,-0.48940963,-0.16631621,0.018026646,-0.29843622,-0.83426666,0.47546342,-0.013501078,0.17698386,0.009884089,0.3082693,0.5841798,-0.25259653,0.018721886,-0.12098273,-0.13552538,-0.4169621,-0.39922187,-0.74495065,-0.4220414,0.08815551,0.98510736,-0.09191776,0.08558169,0.119992785,-0.022033254,0.07662112,0.25996643,-0.03001783,0.07361525,0.5704144,-0.14125955,-0.5116916,0.37289912,0.027112491,-0.20788206,-0.51125187,0.31865954,0.45779294,-0.59822464,0.40556508,0.37597376,0.089541316,-0.18108056,-0.5001706,-0.17085248,-0.23165585,-0.25799555,0.45643836,0.4294241,-0.7709181,0.49974748,0.29462332,-0.042617828,-0.9375118,0.45144027,-0.09423985,-0.29265893,-0.1491974,0.36499473,0.15966894,-0.11034423,-0.24715407,0.096583575,-0.4311277,0.39046997,0.18921217,-0.15242386,0.3351548,-0.34211797,-0.14236036,-0.69986284,-0.10723285,-0.47376797,-0.35479385,0.032188892,0.06649925,-0.015955929,0.14655872,0.16060156,0.38176155,-0.2194048,0.0923138,-0.24398631,-0.24578536,0.35736057,0.32965687,0.5711434,-0.24394861,0.69620895,0.018943213,-0.045363225,-0.17162399,0.056679994,0.40950885,-0.1214879,0.2900306,-0.07875487,-0.30950207,0.19391455,0.5281167,0.18446222,0.35087606,0.07100165,-0.11275355,0.13687128,0.11340815,0.32216778,-0.14386985,-0.4034217,0.0017131567,-0.44718093,0.063787885,0.35081726,0.16924922,0.30292144,-0.072584525,-0.21411142,-0.007363986,0.15440759,-0.13110428,-1.425344,0.2985461,0.20361623,0.7989713,0.5175352,-0.013771843,-0.07135401,0.72307044,-0.24368374,0.12177837,0.18228447,-0.122698516,-0.3435298,0.53961927,-0.8188913,0.4354019,-0.053851344,-0.029616842,0.1790177,-0.03616398,0.37451303,0.7487599,-0.15035243,0.086031035,-0.07187548,-0.30795708,0.1585726,-0.34190708,0.08469496,-0.6379594,-0.3026614,0.8158574,0.30029586,0.45588607,-0.31109363,0.013642031,0.0069097094,-0.16531175,0.09693377,0.19647086,0.100075126,-0.00033029914,-0.54417974,-0.1471946,0.4046203,-0.05236686,0.21193388,0.16833076,-0.23245245,0.123002924,-0.19519278,0.0066589545,-0.092482336,-0.6466294,-0.24800774,-0.36091423,-0.18988027,0.35524336,-0.06866869,0.24899122,0.19411837,0.13291106,-0.22977479,0.18689391,0.15878592,0.6561173,0.08216375,-0.16302341,-0.14068165,0.33072096,0.32808432,-0.20896187,0.045674905,-0.123548985,0.06534815,-0.69836974,0.4301113,-0.07513861,-0.36331555,0.33554816,-0.08816221,0.042922422,0.51458246,0.006332651,0.035426095,0.1111355,-0.049808007,-0.35827422,-0.20518856,-0.12417021,0.24602911,0.24504484,-0.17816904,-0.06568454,-0.019023782,0.023073878,0.635345,0.049226195,0.30516282,0.26335487,0.14076062,-0.3360073,0.09736003,0.16274977,0.4734142,0.070918314,-0.058056623,-0.23475288,-0.30821437,-0.34609264,0.15481056,-0.10870117,0.23392662,0.13170114,-0.05566664,0.7591735,0.094782114,1.0098007,0.11609247,-0.32170093,0.21124008,0.42367464,-0.068926945,-0.05933579,-0.23729378,0.8807067,0.37151504,-0.1630826,0.029082557,-0.28521255,-0.026327338,0.09046739,-0.2893847,-0.11388688,0.01828615,-0.5597646,-0.33056575,0.10533878,0.28815615,0.15565261,-0.20110533,0.09344293,0.31454048,-0.079872295,0.29701856,-0.3816548,-0.21545926,0.40475398,0.20686767,-0.10394019,0.09209,-0.43684435,0.3224846,-0.5401953,-0.04175402,-0.11302263,0.13317366,-0.16970953,-0.34600922,0.2278537,0.062817454,0.37112686,-0.28584403,-0.46158564,-0.31727645,0.43639523,0.09511115,0.116830125,0.36862993,-0.23913452,0.04578576,0.045365695,0.45400158,0.9323564,-0.048389908,0.108746305,0.37317565,-0.22213574,-0.53512895,0.26282048,-0.2557662,0.28982335,0.086331606,-0.17097023,-0.44504887,0.23152283,0.18981507,0.080972046,0.19629388,-0.6017761,-0.04883394,0.2846753,-0.083301686,-0.1021233,-0.26395875,0.07037025,0.41598594,-0.077656195,-0.3972202,0.06956786,0.08544829,-0.30675745,-0.51774114,-0.09143998,-0.43346566,0.1271915,-0.06457898,-0.3370911,-0.10809159,0.17983031,-0.35450786,-0.010501638,0.003008172,-0.20770565,0.07725057,-0.4556325,0.1393207,0.87259036,-0.122360855,0.4038844,-0.33886355,-0.5867585,-0.8349099,-0.25083113,0.37536252,0.083609775,-0.04943662,-0.6583682,-0.043641746,-0.1726307,-0.27768412,0.020967107,-0.33647144,0.47104296,0.2650875,0.35380527,-0.0038628802,-0.7484584,0.22255336,-0.010556601,-0.2820466,-0.43614233,0.42671525,0.1255,0.6648488,0.18605736,0.06346968,0.13872582,-0.58686286,0.015887931,-0.10031892,0.058124192,-0.5286971,0.014504135 -592,0.4759487,-0.35324124,-0.44202548,-0.22663608,-0.34515092,0.10785187,-0.06518855,0.5115873,0.13062452,-0.47690734,-0.18419565,-0.2018464,0.0069303378,0.39289942,-0.4394813,-0.55332255,0.10652501,0.2721366,-0.4629214,0.5071177,-0.2917278,0.33502167,0.16917115,0.34128615,0.2850075,0.18997516,0.17575583,0.20442963,0.032018732,-0.45848224,-0.25587028,0.15246755,-0.18348473,0.2668887,0.056751207,-0.38328856,0.098265894,-0.57825184,-0.15138277,-0.8173182,0.5323625,-0.88569623,0.62547106,0.03064348,-0.30957434,0.15151304,0.68818027,0.37681475,-0.008861953,-0.1641288,0.20057462,-0.120724656,-0.17525153,0.0039304276,-0.13225763,-0.4411642,-0.77380353,-0.07334106,-0.23875855,-0.40755063,-0.45219058,0.29657695,-0.41832924,0.13559951,-0.013664167,0.9119953,-0.4097248,0.010103929,0.1507296,-0.31779245,0.2789568,-0.76140803,-0.16019072,-0.030358948,0.34416425,-0.058548067,0.0018553503,0.2195639,0.4689354,0.3343774,0.007966042,-0.18736538,-0.38783824,-0.22575864,-0.17981216,0.6039598,-0.15809868,-0.5488574,0.043981377,0.050016835,0.27874926,0.3005923,0.35552305,-0.06973537,-0.13111533,0.08280995,-0.2949378,0.46480283,0.2796244,-0.4565263,-0.104798466,0.2594181,0.4253576,0.0012149405,-0.13504979,0.024565643,-0.010213983,-0.63004804,-0.13361156,-0.16363792,-0.31088737,0.34347072,-0.1124681,0.4457061,0.60123175,-0.083813675,-0.15663117,0.073835924,0.10339522,-0.11409462,-0.23039718,-0.429028,0.39083177,-0.4889325,0.21153736,-0.042725086,0.92346746,-0.089256644,-0.54465705,0.3414338,-0.5929739,0.12791844,-0.037579782,0.2920535,0.522728,0.35492316,0.4576772,0.6448798,-0.21360126,-0.08230693,-0.038923204,-0.37309694,-0.115377314,-0.17939077,0.21705656,-0.5731806,0.18264484,0.082225375,-0.03577721,0.111103036,0.6964624,-0.6244001,-0.106405474,0.10599206,0.8870658,-0.22911245,-0.20108858,0.8214722,1.0025357,1.0942205,0.08051053,0.90981805,0.06152541,-0.2710908,0.008058369,0.02506475,-0.37708524,0.39575005,0.6311663,0.02162209,0.14742452,-0.015513972,-0.00062105194,0.5919505,-0.30665562,-0.15421158,-0.11562486,0.21663886,0.15023206,-0.37566864,-0.62746257,-0.436151,0.07472373,0.015994001,0.32909977,0.33415967,-0.066792324,0.3487779,0.007701142,1.4620068,-0.062821575,0.24037045,0.21916388,0.30709317,0.14295182,-0.14978693,0.02652973,0.047593072,0.21333443,0.09189951,-0.5023647,0.20977598,-0.24793659,-0.44655752,-0.13925026,-0.37786058,-0.28172255,0.09046782,-0.39352304,-0.25808522,-0.26065817,-0.37005866,0.36208558,-2.5904465,-0.18242273,-0.24332489,0.12705818,-0.1959429,-0.4605424,0.053128053,-0.46361437,0.5825195,0.33790854,0.5602789,-0.5768348,0.46126062,0.39161003,-0.560426,-0.060106732,-0.57150644,-0.20817819,-0.13370313,0.20635079,0.13317038,-0.3992822,-0.06758496,0.38497946,0.5104451,0.14112352,0.08128983,0.38428828,0.3369737,-0.2188326,0.77853113,-0.15989421,0.5151687,0.0001615611,-0.21171193,0.33694768,-0.39217633,0.008333496,-0.27240753,0.1770681,0.6027536,-0.52286136,-1.0500166,-0.6675269,-0.23829955,1.2353959,-0.1270474,-0.45848006,0.41044232,-0.20414147,-0.28085187,-0.00017559528,0.64102435,-0.33586,-0.023494266,-0.7131911,0.13989006,-0.24012609,0.039533496,0.1062673,-0.32205322,-0.69754815,0.74242723,-0.14582461,0.749617,0.22888814,0.17346603,-0.60935587,-0.30759785,-0.07579132,0.9616701,0.5903515,-0.023747943,-0.18392433,-0.055246178,-0.4787769,-0.22987829,-0.031206625,0.6713378,0.593,0.085410446,0.14244944,0.15666904,-0.098870724,0.12112895,-0.14280905,-0.2832766,-0.06593404,-0.07372089,0.7154995,0.38267812,-0.1368545,0.46872905,-0.057539344,0.37371162,-0.20596133,-0.41299534,0.27083275,0.9385586,-0.12803435,-0.5383124,1.026724,0.4879957,-0.06338584,0.3000541,-0.5375706,-0.3383975,0.4990055,-0.23299627,-0.5820663,0.05503246,-0.37059364,0.05851557,-0.8344815,0.25955644,-0.35220107,-0.5832927,-0.5449465,-0.16992222,-3.5572188,0.3658521,-0.15810765,-0.19987124,-0.14530902,-0.27487758,-0.07198041,-0.69508815,-0.71821326,0.16158746,0.079624586,0.8842281,-0.15818335,0.08403817,-0.03427343,-0.44491255,-0.02674318,0.0793276,-0.20147921,0.35289872,0.04403395,-0.28586158,0.108203284,0.053568367,-0.567538,0.12493543,-0.57896465,-0.66200066,-0.21570277,-0.62660396,-0.40309438,0.6363659,-0.36180943,0.21513523,-0.32015762,-0.016047599,-0.0042516263,0.21892025,0.013686413,0.14069743,-0.014721897,-0.17533241,0.24364161,-0.1529533,0.3380862,-0.020148657,0.45265073,0.2594844,-0.11025043,0.2946764,0.64369947,0.7035043,0.0070350943,0.9863365,0.2802121,-0.032427546,0.080760546,-0.17299162,-0.26255426,-0.38185632,-0.19375534,0.34094456,-0.43401432,-0.32021818,-0.10032272,-0.2429112,-0.65639776,0.67209643,0.07859946,0.16837353,-0.16665222,0.44802257,0.44917583,-0.2897878,-0.043764036,0.099460535,-0.14333601,-0.57642096,-0.10929077,-0.6515602,-0.33546898,-0.17034769,0.98432803,-0.37402132,0.13879332,0.0027954795,-0.13330956,-0.007379001,0.16399293,0.15222909,0.11525152,0.4186273,-0.27787587,-0.7214188,0.5042762,-0.43336695,-0.13069902,-0.48742488,0.25282946,0.45746934,-0.4147273,0.46732095,0.37395105,0.1360954,-0.4698291,-0.5174995,0.026768183,0.22809395,-0.22181915,0.38275242,0.40989968,-0.6289198,0.4856817,0.26611507,-0.018533273,-0.8473044,0.44518754,-0.006683007,-0.42443034,-0.19011298,0.44803047,0.3974682,-0.0063818395,-0.27374724,0.16902305,-0.45520055,0.34517717,-0.08784041,0.015026716,0.33711407,-0.27685663,-0.08721972,-0.90960103,0.029857956,-0.6416371,-0.2470769,0.14327416,0.03863811,0.089263745,0.3245794,-0.12454503,0.41243,-0.5169661,-0.013698559,-0.16642264,-0.2671129,0.36137715,0.44186413,0.4172864,-0.48765782,0.668881,0.061467513,0.09982571,-0.19173717,-0.0585147,0.53124946,0.041573774,0.45505857,-0.24550754,-0.25721022,0.27974027,0.6542381,0.1257184,0.31148565,0.12972112,0.052597214,-0.08913205,-0.06437433,0.12356344,0.17443366,-0.66036725,-0.03145996,-0.40439847,0.017538108,0.6899397,0.07777247,0.21205445,-0.02930485,-0.43285105,0.10871745,0.12894093,-0.15082526,-1.3060282,0.4946303,0.11393666,0.9433235,0.45410138,0.0884057,-0.11773756,0.847423,-0.15928048,0.14421675,0.2675174,0.12687671,-0.2823857,0.6772577,-0.8338948,0.37216747,0.0068205134,-0.13016644,-0.23544441,-0.19715005,0.3100968,0.6634767,-0.19138913,0.048319876,-0.015624019,-0.37395546,0.12245858,-0.3481437,-0.09457931,-0.40753564,-0.32204887,0.5719726,0.41262817,0.3283806,-0.15003724,0.18510303,0.13529362,-0.091776565,0.1407024,-0.0029045343,0.022679122,-0.1283081,-0.5853668,-0.06843435,0.40382326,0.3057923,0.29080808,0.042213082,-0.12614101,0.1926633,-0.034592107,-0.1335926,-0.038382176,-0.61689,0.020423306,-0.36506703,-0.5130358,0.2727998,-0.26532766,0.17125179,0.16325554,0.01585538,-0.0660536,0.28632668,0.33434302,0.682814,-0.00037413294,0.018389551,-0.092854135,0.14583692,-0.120783634,-0.19487485,-0.1185096,-0.29165107,0.24337927,-0.75653684,0.4284788,0.03248867,-0.38199723,0.2454115,-0.19962749,0.024580467,0.35003614,-0.2946478,0.044710148,0.003742229,-0.2338532,0.067600556,-0.427302,-0.071947925,0.24213338,-0.052664116,-0.011754941,-0.10683634,-0.04092324,-0.34108132,0.37884504,0.009836704,0.47259247,0.43344498,0.0061262306,-0.31091428,0.07624269,0.010988111,0.47276324,-0.20915331,-0.30450413,-0.44605464,-0.4197302,-0.36479655,0.30182183,0.014833484,0.35573927,0.014587995,-0.22132589,0.82110304,-0.025032682,1.0409749,-0.07789517,-0.4846344,-0.08994262,0.42755172,-0.2153051,-0.062272374,-0.15700364,0.8595267,0.42066023,0.020055907,-0.023659784,-0.49469966,0.20442237,0.22719054,-0.09734582,-0.146717,0.048273865,-0.499521,-0.4344094,0.26610404,0.25871366,0.22349806,-0.24753796,0.19941324,0.5133623,0.009779936,0.44527432,-0.52494806,-0.13970166,0.21377373,0.34487313,-0.118724935,0.118720464,-0.513076,0.33759725,-0.7965136,0.2839835,-0.4057616,0.21890236,-0.26845476,-0.19809571,0.4310479,0.052823815,0.49525395,-0.2212454,-0.2810899,0.008726456,0.49312842,0.04048586,-0.079277724,0.49473622,-0.34017113,-0.047571205,0.16371478,0.6134972,1.1328651,-0.23082586,0.21008067,0.10065456,-0.3208376,-0.54698586,0.37505054,-0.1126378,-0.00023082712,0.27864572,-0.12990178,-0.42442292,0.2628537,0.44578534,0.13598658,-0.05361775,-0.40297887,-0.42186296,0.43181607,-0.52116054,-0.113378234,-0.29948154,0.06911168,0.21899681,-0.17073716,-0.13867426,-0.13516931,0.45743734,-0.13523795,-0.6016789,-0.113245204,-0.26458487,0.44023973,0.035904795,-0.46637908,-0.4220135,0.022569237,-0.45841074,0.1173786,0.19557005,-0.2602454,0.06980577,-0.3982069,-0.05743703,0.87021214,-0.14402679,0.10434318,-0.5208797,-0.314509,-0.7245147,-0.36404827,0.40801096,-0.15752797,-0.0911892,-0.7974387,-0.21245171,-0.2736789,-0.04641627,-0.09458064,-0.19889078,0.21892175,0.18541679,0.51843876,-0.034609903,-0.59210116,0.13704775,-0.12221971,-0.1306702,-0.39776212,0.52896225,0.16064143,0.7689302,0.05167483,0.016035013,0.18181568,-0.4094609,0.1307974,-0.08232653,-0.25712693,-0.69957894,0.06921481 -593,0.5819588,-0.35381025,-0.58260304,-0.17441562,-0.37265432,0.15305416,-0.28181523,0.5732736,0.24795471,-0.44701704,-0.15212949,0.023882378,-0.20158793,0.29497993,-0.16176668,-0.6918157,-0.20351785,0.20950331,-0.34223363,0.55105466,-0.19786784,0.35724884,0.02213928,0.3373343,0.26328713,0.1410398,0.097925216,0.14604497,-0.0030670166,-0.2389702,-0.063574456,0.24668407,-0.56207526,0.28551483,-0.13021241,-0.42123452,-0.18766664,-0.4677392,-0.2836549,-0.6629578,0.33563504,-0.6442095,0.5557955,0.069054924,-0.29751346,0.078368455,0.099709615,0.14803928,-0.1547222,0.10875796,0.13985477,-0.24677612,-0.10156237,-0.08554586,-0.23372942,-0.41150185,-0.69619006,-0.04048349,-0.47763354,0.19314446,-0.22576073,0.17497005,-0.24090108,-0.17593254,-0.089537635,0.31988242,-0.3450699,-0.028658938,0.17618227,-0.12828286,0.053798072,-0.634722,-0.10530976,-0.07304662,0.32593364,-0.10469899,-0.08566042,0.099793874,0.12644514,0.6475936,0.15409769,-0.29682067,-0.53541696,-0.037194252,0.09788162,0.49037647,-0.16060123,-0.40446457,-0.29064575,0.025348442,0.6323414,0.30681705,0.24846472,-0.15857859,-0.26043257,-0.15794465,-0.044351105,0.4310949,0.52958375,-0.3638396,-0.24910542,0.42665908,0.4785561,0.23206235,-0.15507193,0.13981433,-0.12715119,-0.33601603,-0.14662847,0.03148022,-0.11521641,0.38311455,0.0010329088,0.17480369,0.4498131,-0.05477283,-0.09389117,0.07184769,-9.867946e-05,-0.014588186,-0.23211238,-0.32111126,0.30929556,-0.38674462,0.18029672,-0.15384337,0.60218817,0.12026398,-0.84677035,0.2963958,-0.4324439,0.13074428,0.1486953,0.5712308,0.9357942,0.5201828,0.11863515,0.89824986,-0.2753146,0.05415953,-0.0794868,-0.09528592,0.023272276,-0.18746136,-0.092850715,-0.5903521,0.3274409,-0.091488376,0.06896769,0.34852213,0.77635205,-0.49277174,-0.17680477,0.3418569,0.7856542,-0.21681556,-0.030681849,0.8987375,1.0129852,1.2177459,-0.17101495,1.1045331,0.026188342,-0.2373433,-0.14015077,-0.2907539,-0.5829379,0.2802462,0.5180072,0.42969054,0.42059258,0.14649025,0.023997474,0.50925964,-0.46537897,-0.079680204,-0.018571412,0.2069582,0.05194282,-0.19377075,-0.64704335,-0.062285103,0.19311555,0.16162284,0.13211612,0.3868857,-0.3006074,0.31385675,0.0070169866,1.4337852,-0.16189222,0.14934267,0.19415101,0.40125751,0.18772517,-0.20953242,0.09267058,0.20897703,0.37115964,-0.1463871,-0.48478064,0.032525476,-0.30390644,-0.64343345,-0.2436003,-0.380054,-0.50583285,-0.036891945,-0.49839216,-0.09228386,-0.094358556,-0.52899843,0.39611098,-2.6095622,-0.14483494,-0.18639691,0.22294623,-0.30485725,-0.47377643,-0.07536614,-0.41800305,0.513967,0.30900452,0.5021305,-0.56116027,0.45012555,0.42962533,-0.47099534,-0.0032586337,-0.56949705,-0.07861858,-0.05852269,0.37696254,-0.008935706,-0.2517302,0.16815996,0.2888293,0.6124885,0.12869464,-0.01756538,0.3432713,0.51369846,-0.23835386,0.34110153,-0.09893894,0.5659022,-0.20876889,-0.24845283,0.61695135,-0.38646445,0.3032092,-0.3180793,0.076073475,0.48416653,-0.45565,-0.8507244,-0.5435221,-0.1626166,1.1195073,-0.25356632,-0.5413179,0.14675279,-0.44725487,-0.28917122,-0.11924884,0.54749167,-0.16740614,-0.053510223,-0.81473917,-0.11075671,-0.21845365,0.21856947,-0.07682768,-0.08638108,-0.71503943,0.9379065,-0.16728139,0.75025004,0.41406932,0.28881237,-0.17341365,-0.4995758,0.15640862,1.0444953,0.6411213,0.14635131,-0.25256258,-0.082353,-0.3462502,-0.118789196,0.13962321,0.6739689,0.38270518,-0.013842376,0.14633235,0.17755455,0.056083832,0.07413897,-0.16818462,-0.25078806,-0.3696437,0.11190621,0.684653,0.6189486,-0.25349322,0.49760073,-0.11975662,0.24230203,-0.24847764,-0.43886283,0.43078595,0.86124706,-0.14419535,-0.39776105,0.7608926,0.53634745,-0.076645404,0.505434,-0.79884326,-0.49197164,0.2733059,-0.30234435,-0.302462,0.25676787,-0.41566902,0.044716112,-0.7990728,0.08556015,-0.29187632,-0.49849537,-0.7082194,-0.34662265,-2.1166735,0.09944725,-0.16381855,-0.16072473,-0.199761,-0.2978187,0.18143915,-0.71462,-0.7515438,0.074413665,0.088859506,0.61726266,-0.12131779,0.10245753,-0.20280312,-0.4922292,-0.20547362,0.28184325,0.021076966,0.4019537,-0.0054551642,-0.29953533,-0.118902855,0.01701619,-0.31803194,-0.11370726,-0.56675446,-0.3455185,-0.038213536,-0.31005794,0.02499679,0.47658208,-0.5272639,0.21715263,-0.18165363,-0.010808176,-0.08602517,0.14722954,0.015452814,0.15118681,0.14134607,-0.131059,0.32865006,-0.25848904,0.3819482,0.11461168,0.32701138,0.50619113,-0.43999752,0.1436921,0.39999014,0.7267916,-0.22501704,0.8621981,0.49725264,-0.04728015,0.3157124,-0.13642383,-0.29818228,-0.79933614,-0.25630733,0.16129671,-0.52753365,-0.5662702,-0.09711158,-0.45096052,-1.0055256,0.37578884,-0.044876255,0.4444204,-0.05380209,0.3030457,0.49615872,-0.3398486,-0.019065937,-0.03617018,-0.19079943,-0.22101746,-0.44280666,-0.64049774,-0.3870379,0.010982219,1.0983238,-0.12731622,-0.045316387,0.29688233,-0.24444307,-0.013485988,0.1522567,0.19134818,-0.043541923,0.42731062,0.10839893,-0.58508366,0.45913538,-0.0734582,-0.09018994,-0.62297934,0.029396327,0.39512235,-0.5875878,0.39828664,0.32172108,0.127983,-0.18106899,-0.76859623,0.111923255,0.0386273,-0.25083822,0.5579762,0.46791738,-0.60554004,0.50492305,0.16574755,-0.05637783,-0.7695001,0.5039973,-0.07734014,-0.26093197,-0.17813176,0.34948376,0.24702993,-0.028259583,-0.08445047,0.32038075,-0.3852471,0.55453014,0.19745575,-0.076235294,0.1792007,-0.33333254,-0.1356558,-0.7665676,0.039858986,-0.60438997,-0.35391483,0.19436213,0.14948015,0.15408495,0.070677646,0.1239622,0.4852667,-0.41093433,0.12098909,-0.22253557,-0.3779764,0.3850773,0.45891002,0.54641277,-0.3066178,0.58919024,0.094253816,-0.06007428,0.015766017,0.09098479,0.60283005,-0.07634382,0.3971695,-0.20120987,-0.24763708,0.21077092,0.6082746,0.29192176,0.1710198,0.12269419,-0.2952254,0.16663803,0.031455275,0.23118706,-0.42461586,-0.7088445,-0.040351965,-0.13096832,0.124814786,0.55457497,0.20264298,0.28741214,-0.17329496,-0.10131775,0.22236386,0.10997324,-0.14312346,-1.3898506,0.09754586,0.10804375,1.0849317,0.49671328,0.08990409,0.1238555,0.35770264,-0.2356752,-0.027057577,0.51124513,-0.018164175,-0.3200899,0.57804054,-0.7145961,0.6074193,-0.041054785,-0.0850678,0.13342564,-0.032798897,0.49799955,0.6632455,-0.18532333,0.053739317,-0.014964944,-0.3450978,-0.01428685,-0.19624081,0.22308968,-0.5706581,-0.19123703,0.6735745,0.5004891,0.4294836,-0.31629857,0.033545688,0.0375764,-0.079972185,0.044917576,0.0489722,0.09277475,-0.16417177,-0.42610395,-0.09854712,0.5518702,0.1320433,3.889998e-05,0.06742611,-0.37366548,0.09531019,-0.03768833,-0.09582813,-0.033178553,-0.75838596,-0.08161707,-0.32212478,-0.4252132,0.4962888,0.0626491,0.18699218,0.24083069,0.061696876,-0.046604104,0.2122467,0.17604803,0.7677167,0.16988777,-0.021269469,-0.37198195,0.22106434,0.12874563,-0.13578868,-0.18780628,-0.19192001,0.23579757,-0.5669207,0.30361614,-0.19586897,-0.26789,0.3791995,-0.07688079,-0.033922117,0.4799333,0.02468791,-0.17627482,0.16854505,-0.026364386,-0.29762587,-0.21936424,-0.24926455,0.2452773,-0.012674888,0.041956846,-0.19266169,-0.049857315,-0.09410146,0.24959017,0.20450796,0.16702554,0.5132788,0.039882217,-0.3939075,0.13020958,0.25976974,0.46911559,0.015745541,-0.05263155,-0.2829691,-0.62221986,-0.5362018,0.43594798,-0.2431763,0.17427632,-0.019640334,-0.12558196,0.76224315,0.07715804,1.1025914,0.14202172,-0.4872647,0.18154259,0.5847503,-0.14264776,-0.021353725,-0.33085296,0.9173613,0.57706463,-0.029806597,-0.1939853,-0.24908637,0.07600013,0.17161724,-0.31192556,-0.14732313,-0.02821639,-0.6375679,-0.22532384,0.23434004,0.11384286,0.1356379,-0.1363744,-0.122769736,0.42737192,0.18373619,0.22029302,-0.5710577,-0.2971705,0.31391653,0.23454566,-0.17991005,-0.029284775,-0.5238584,0.31816447,-0.6404119,-0.14557393,-0.3286968,0.11920099,-0.30283123,-0.29713663,0.38612115,-0.031120753,0.3201266,-0.3988385,-0.4190243,-0.14829166,0.37011668,-0.07897116,0.11559645,0.40934435,-0.23437992,0.03360438,0.16224292,0.32200998,1.1149751,-0.3179037,0.02910217,0.35859904,-0.48806313,-0.69234186,0.19455619,-0.5993653,0.2127122,0.067011766,-0.3545149,-0.49228212,0.28939596,0.116532356,0.00855192,0.12116429,-0.6041695,-0.09527213,0.21180902,-0.3631701,-0.1203888,-0.22539635,-0.11255752,0.74478275,-0.28632325,-0.36500016,0.13041104,0.5175491,-0.18523987,-0.71128774,0.22971661,-0.46687278,0.19039494,0.0044667004,-0.44638252,-0.23938422,0.014519558,-0.47901386,-0.024387725,0.46344578,-0.39337045,-0.066163786,-0.45414898,0.048260268,0.8934868,-0.048377797,0.27742,-0.56745946,-0.37658137,-0.92611945,-0.32911777,0.3225023,0.22151566,-0.081448466,-0.8102808,0.04106372,-0.50771344,-0.11467915,-0.13120854,-0.30950433,0.3638491,0.26213613,0.42863977,-0.17059812,-0.79442036,0.2516201,0.010773889,-0.25063282,-0.43324873,0.6101057,0.14750372,0.9271496,0.055072036,0.14559723,0.13883205,-0.81895036,0.15798095,-0.09174582,-0.077040024,-0.7288821,0.13590166 -594,0.49487942,-0.074430555,-0.58837694,-0.027760327,-0.09330961,0.10299892,-0.30858243,0.5837196,0.2772526,-0.3838787,-0.30300546,-0.0344078,-0.13556008,0.42391986,-0.13178477,-0.51168704,-0.076729745,-0.030935256,-0.30676138,0.6497796,-0.27796057,0.19506457,0.024799703,0.5301737,0.08374821,0.072493486,0.057435855,0.11507445,-0.000849733,-0.43438175,0.11152216,0.23601992,-0.81896627,0.12515849,-0.3725037,-0.44926283,-0.16783287,-0.42948145,-0.14781928,-0.9369252,0.22299154,-0.82376456,0.6584476,0.13224052,-0.29238832,0.4878281,-0.024043588,-0.024084412,-0.007788521,-0.11816649,0.041902266,-0.2569169,-0.19366525,-0.27558687,-0.070612736,-0.2686416,-0.564053,0.050939284,-0.50502056,0.0059530577,-0.44518974,0.032802254,-0.32265773,0.057958536,-0.10947446,0.39219564,-0.49503598,-0.010291613,0.096128315,0.017602136,0.24139301,-0.6578853,-0.19617933,-0.08212383,0.16384242,-0.10579245,-0.11504633,0.30090797,0.21664794,0.47814816,-0.098753095,-0.19737779,-0.32833096,0.15296614,0.13198444,0.39268652,-0.25182423,-0.43105337,-0.03367947,-0.055827342,0.42288283,0.22027756,0.28852156,-0.0014898136,-0.094854705,0.042051837,-0.08262445,0.4967945,0.48213106,-0.3069327,-0.16067553,0.24456325,0.62869483,0.3647539,0.030786904,-0.19681567,-0.08221602,-0.5609073,-0.16846943,-0.11398188,-0.3126836,0.43197918,-0.08909308,0.1810415,0.4717913,-0.1465974,0.009344926,0.2673407,-0.057722505,0.09534606,-0.12080973,-0.30161026,0.41514808,-0.35380748,0.2606265,-0.23734643,0.47587988,-0.020248808,-0.66662127,0.23882249,-0.6113361,0.11903,0.058885142,0.5633052,0.8027963,0.66659856,0.41921228,0.7095995,-0.3883901,-0.16734654,-0.069567956,-0.1492478,0.20812902,-0.25223103,-0.04192912,-0.46275133,-0.09992109,0.01621554,-0.20686285,0.27384874,0.4599294,-0.6631781,-0.10564535,0.2230699,0.6904609,-0.17835258,-0.043660123,0.88645434,1.2322382,1.013654,-0.00074246986,0.9899053,0.13494252,-0.17094009,0.0789177,-0.0049437513,-0.7992621,0.32263944,0.43216234,-0.43483475,0.56951463,0.00056659715,-0.026556928,0.32373884,-0.53493124,-0.2742494,0.01831462,0.25328282,0.040694673,-0.3295687,-0.40159443,-0.14928684,-0.052133914,0.22989559,0.062371694,0.42113718,-0.25956497,0.3678654,0.116062604,1.1396419,-0.17215584,-0.031534158,0.098883905,0.32610497,0.26641104,-0.12923615,0.016182771,0.20459501,0.1838037,0.21214335,-0.5283391,0.17033714,-0.20079088,-0.54694086,-0.1022208,-0.24080665,-0.16691484,0.03475624,-0.2602409,-0.32459545,-0.24039735,-0.2841419,0.29158017,-2.4335704,-0.04780666,0.04915458,0.44147512,-0.14216453,-0.39256814,-0.08755,-0.34335473,0.45286995,0.4243936,0.39194414,-0.6119216,0.3000297,0.4631757,-0.6387685,-0.06790978,-0.51641154,-0.12898229,0.10289,0.36310804,0.10528845,-0.24874714,0.14203638,0.22856562,0.62642086,0.22801515,0.15607856,0.4187598,0.4615805,-0.3753548,0.18860015,-0.19295558,0.4547331,-0.2686689,-0.25700915,0.40724218,-0.33411598,0.31584784,-0.40503567,0.14658543,0.3850899,-0.36965272,-0.86062825,-0.60454935,-0.15361005,1.4684203,-0.09294032,-0.63954926,0.15783247,-0.33674246,-0.2387206,-0.081823416,0.61334443,-0.2819359,-0.010891593,-0.77083075,0.018572796,-0.1884815,0.26933038,-0.0060693976,0.043226585,-0.6136258,0.82242733,-0.050777853,0.44604117,0.2815434,0.19611952,-0.2731786,-0.58805996,0.05985037,0.97564596,0.6554658,0.15304552,-0.33456367,-0.1967477,-0.30767086,0.04498746,-0.027385028,0.72050154,0.5475592,-0.07598553,0.06917245,0.14073694,0.10299543,0.08359788,-0.17642106,-0.24823216,-0.078816876,0.05867763,0.6012405,0.86765265,-0.22931668,0.117594585,-0.11651545,0.28785178,-0.11236543,-0.4377494,0.5188168,0.8828733,-0.18399312,-0.15733562,0.7198668,0.51487595,-0.20165464,0.6073279,-0.59068227,-0.49215016,0.4592452,-0.10719834,-0.450839,0.13422006,-0.25954193,0.08913557,-0.752257,0.35477135,-0.52574044,-0.32849854,-0.51700115,0.029337117,-2.7813916,0.23093256,-0.20363854,-0.11170571,-0.40757385,-0.22109023,0.3019622,-0.7782129,-0.84851265,0.015719516,0.056519013,0.6940985,-0.25484896,0.03891647,-0.16286403,-0.6781261,-0.23279212,0.22088228,0.25677803,0.3001127,0.023660155,-0.2871252,-0.18794385,-0.08950085,-0.35621312,-0.13727702,-0.47750774,-0.4756985,-0.27076676,-0.41685915,0.039541975,0.55189157,-0.398732,0.038349446,-0.24233559,0.019184727,-0.06887677,0.09079982,0.01624773,0.19097121,0.11990647,-0.2286339,0.21734715,-0.10510895,0.4085784,0.118609786,0.3716306,0.51035476,-0.3781128,0.27358198,0.49779665,0.7462743,-0.18539554,1.0326756,0.42216367,-0.052611325,0.35552025,-0.20930783,-0.45087022,-0.6817439,-0.25590485,0.14304157,-0.269566,-0.34807685,-0.0044514765,-0.35928625,-0.944865,0.5545193,-0.17911737,0.4156364,-0.0054061688,0.4400981,0.622384,-0.3275396,-0.15809093,-0.06905666,-0.09714617,-0.54913485,-0.25248763,-0.639014,-0.47610807,-0.037656248,0.83917683,-0.10476962,0.071999714,0.27261397,0.14656264,0.234181,-0.057253208,-0.008418596,-0.17297432,0.43580574,0.27549478,-0.62285864,0.44458133,0.08880504,-0.1397555,-0.6064402,0.36573315,0.47939807,-0.5785911,0.4525506,0.44679543,0.0165323,-0.07511625,-0.7344373,-0.027801743,-0.096522085,-0.18413374,0.35430437,0.50099957,-0.8495302,0.4682326,0.3635747,-0.24141566,-0.6500297,0.5218267,-0.07102688,-0.25300157,-0.17752875,0.4463255,0.13383113,0.07834111,0.043784313,0.3050293,-0.3294265,0.2552352,0.10052859,-0.015602774,0.15917894,-0.13675311,0.0021198345,-0.8992414,0.33930084,-0.6075281,-0.48179764,0.23384827,0.020488583,-0.071699694,0.15910792,0.47825387,0.4124909,-0.3719773,0.16966632,-0.16141103,-0.33129615,0.53388965,0.59864616,0.68370247,-0.26025817,0.49197307,0.110360414,-0.112390995,0.11267286,-0.1146866,0.40092516,-0.2062156,0.3615143,0.17040883,-0.17398259,-0.030734267,0.60274446,0.12019364,0.23373975,-0.0047255983,-0.07539363,0.3429612,0.030478518,0.2967435,-0.1845685,-0.70883507,0.10049073,-0.26727903,-0.11213299,0.59746903,0.20077507,0.14178726,-0.09800805,-0.20180799,0.026483396,0.286911,0.042757828,-1.1708323,0.24160904,0.02116053,0.7527424,0.67072225,0.069746576,0.074663326,0.49846077,-0.09715659,-0.055435598,0.5482996,0.18326172,-0.62787604,0.523924,-0.82065994,0.3357982,-0.013295627,0.04602532,-0.024824105,-0.16277379,0.3832373,0.76134205,-0.22997545,-0.033411328,-0.14503077,-0.27218395,0.08555127,-0.4355318,0.08643194,-0.38668382,-0.25491697,0.78550565,0.4016871,0.3306433,-0.3414698,0.042416573,0.07494093,-0.1188393,0.21687,0.027559139,0.10497408,-0.27222067,-0.35259277,0.017488021,0.4221905,-0.073066846,0.07089551,-0.095475905,-0.28687426,0.07368626,-0.22265364,-0.30237362,-0.12368143,-0.7416283,0.03418999,-0.5039562,-0.32088044,0.38947108,-0.014691119,0.07118865,0.22663666,0.14094004,-0.21158789,0.18323551,0.018294005,0.48241255,0.19217542,-0.1334983,-0.21705945,0.48046634,0.106709644,-0.31612936,0.07621897,-0.06071577,0.21888468,-0.4414273,0.3957372,-0.19536622,-0.38313583,0.0188411,-0.012896787,0.007349961,0.5612984,-0.18459526,-0.23401779,-0.25266245,-0.32117504,-0.17209306,-0.48314777,-0.10430953,0.20452735,0.04979098,-0.07184091,-0.17567934,-0.041841034,-0.21208137,0.27755272,0.05030412,0.29202458,0.4171572,-0.016985036,-0.46412504,-0.044744153,0.15426397,0.49083564,0.05661761,-0.1758278,-0.380125,-0.5365769,-0.44160113,0.28619844,-0.098097734,0.26270416,0.20106956,-0.12522358,0.6667788,0.18416585,1.038001,-0.094315335,-0.3686344,-0.0396565,0.54469395,-0.17711337,-0.22978841,-0.32845455,1.0229794,0.46670738,-0.24926382,0.08116806,-0.19242509,-0.0057956944,0.17621389,-0.28503135,0.0724501,-0.14817972,-0.7695092,-0.14115372,0.16263774,0.41422617,-0.007231718,-0.19829684,-0.032459855,0.27714044,0.13796473,0.15385877,-0.3589476,-0.33855793,0.44286,0.12943174,-0.06359708,-0.031495456,-0.42252234,0.19533256,-0.5658718,-0.082568415,-0.38844526,0.07950453,-0.19703981,-0.45021376,0.26288876,0.04483529,0.2982528,-0.3745875,-0.323016,-0.16315816,0.19832355,0.08658365,0.095748864,0.35688993,-0.25104028,0.030754896,0.029689321,0.5919517,0.96613353,-0.05616141,0.21586142,0.10241602,-0.4286734,-0.58505607,0.29367268,-0.34680474,0.22772804,-0.11561759,-0.19720045,-0.5967113,0.18306461,0.0770288,0.01663981,0.12907727,-0.7725276,-0.18062016,-0.005949185,-0.3892079,-0.15652278,-0.26174685,0.014387241,0.64326024,-0.27296466,-0.3768314,0.00966891,0.24963452,-0.13792089,-0.5176059,0.02169958,-0.2797776,0.19030152,0.018335499,-0.5005976,-0.10370238,0.16348784,-0.46088043,0.10867576,0.11227809,-0.30969143,-0.016555123,-0.4874305,0.28559875,0.7522633,-0.19703546,0.21916252,-0.2985802,-0.61373997,-0.88801646,-0.25197822,0.26044178,0.1046454,0.06808043,-0.83811116,0.06727193,-0.27211994,-0.07786747,-0.11381614,-0.25348032,0.32358426,0.20003003,0.5146338,-0.16408788,-0.6770214,0.29126737,0.103408895,0.06503868,-0.48311356,0.42582813,-0.0020942825,0.84120136,0.09499009,0.070680074,0.13924626,-0.76445806,0.059430387,-0.054249447,0.04572739,-0.48223978,0.23529795 -595,0.33262697,-0.23322052,-0.4480124,-0.16287711,-0.2591956,0.009403958,-0.14020199,0.61685973,0.16560158,-0.5134455,-0.3039234,-0.1842192,0.046789344,0.42095962,-0.1938335,-0.55754685,-0.06300206,0.1397411,-0.27565295,0.52394354,-0.39975247,0.3210904,0.13940185,0.5075319,0.34545678,0.08546186,0.1959983,-0.16437052,-0.38934964,-0.3372798,-0.28412804,0.31071922,-0.66127557,0.17444518,-0.117443,-0.48831624,0.028475102,-0.5636418,-0.3203065,-0.77267355,0.35849574,-0.98682934,0.42923287,0.08804323,-0.27743334,0.23917507,0.24017191,0.2791115,-0.30432078,0.004691454,0.10863277,-0.2982624,-0.03985681,-0.17479068,-0.14548603,-0.41155154,-0.7866904,0.08471652,-0.3818344,-0.16140562,-0.45434093,0.22895017,-0.3597598,-0.0974033,0.0019918794,0.5556051,-0.45930877,0.006947719,-0.007819478,-0.05995788,0.190276,-0.63230354,-0.34693658,-0.10960664,0.12771946,-0.2257842,-0.22511841,0.23775457,0.37532946,0.34954393,0.007474349,-0.16812772,-0.40392822,0.01115467,0.09762248,0.482701,-0.18181467,-0.69837844,-0.04740695,0.10953275,0.25435936,0.29247248,0.13992622,-0.18636802,-0.12870978,0.10290454,-0.21237373,0.35193202,0.4451335,-0.3229244,-0.34666923,0.35990196,0.26856157,0.036780633,0.005592649,-0.068965405,-0.004691887,-0.62579715,-0.104387484,0.19624971,-0.24198416,0.66357714,-0.1865694,0.21402393,0.754323,-0.28850505,0.0029458862,0.10244395,0.15375121,-0.103263535,-0.15358967,-0.32030255,0.21833222,-0.34625137,0.2815758,-0.2585046,1.098936,0.092329316,-0.70112824,0.17621326,-0.6310576,0.18821806,-0.16393232,0.54451185,0.6159586,0.41239935,0.5572649,0.5800392,-0.43199703,0.050197784,-0.017590614,-0.33284792,-0.11958038,-0.28863543,-0.057592474,-0.45242313,0.016630998,0.07236265,-0.05642336,0.047382098,0.7073134,-0.5358675,-0.036601357,0.15782325,0.8602382,-0.30111468,-0.13525961,1.0002408,1.0132475,1.1758635,0.099899605,1.192829,0.24745004,-0.22792178,0.078545496,-0.14401418,-0.74303013,0.36265346,0.45059937,-0.32248148,0.05730881,0.16594961,-0.067368284,0.24668112,-0.5494485,-0.076872304,-0.27859613,0.19858493,0.14227933,-0.09273936,-0.42145127,-0.37135997,-0.051064875,-0.020342588,0.088420376,0.29323924,-0.20969057,0.52785677,-0.0715085,1.3601284,-0.04752417,0.027788965,0.059724055,0.54988724,0.19868135,0.03325183,-0.020210322,0.3457891,0.383928,0.08698457,-0.6058364,0.10420863,-0.25298077,-0.5846633,-0.12233698,-0.35818386,-0.16016708,0.08000103,-0.45466396,-0.24657065,-0.19459435,-0.30183154,0.42417198,-2.5421405,-0.08736559,-0.0185045,0.27316195,-0.13169333,-0.4264746,0.06248589,-0.54693985,0.6128439,0.36818328,0.52995485,-0.6767598,0.109078124,0.40291855,-0.48228645,-0.21514294,-0.7613624,-0.11095036,-0.07104003,0.442612,-0.13330762,-0.11473691,0.07465586,-0.122445926,0.6951153,-0.033159155,0.1308355,0.3849224,0.36973497,0.053185787,0.45393917,0.05892494,0.56441396,-0.32364178,-0.19136088,0.32856166,-0.51923543,0.32145882,-0.044717975,0.09753831,0.43263754,-0.5835979,-0.89541465,-0.7547761,-0.26515132,1.1699156,-0.1226228,-0.4598106,0.27246183,-0.13702354,-0.03273756,-0.10826242,0.45822966,-0.26899534,0.012820601,-0.8047724,-0.013880604,-0.024121296,0.20810324,-0.03329781,0.13382198,-0.38093236,0.6328073,-0.101350494,0.21715952,0.30124018,0.19654109,-0.5903405,-0.63084817,0.07669657,0.95786464,0.34397826,0.13684043,-0.25104967,-0.27412155,-0.19855484,-0.22477926,0.1436532,0.48290616,0.78191024,-0.021449236,0.24092816,0.31523916,-0.028769195,0.037929952,-0.21249768,-0.25459164,-0.1627346,0.03076501,0.6519493,0.545958,-0.10273722,0.6368194,-0.13107878,0.32825917,-0.18985477,-0.39727944,0.579525,1.2864254,-0.06963437,-0.28040642,0.6760355,0.5523606,-0.26019296,0.46928823,-0.58601385,-0.3711928,0.5591414,-0.21735011,-0.5281403,0.056204602,-0.34241518,0.007517276,-0.8987461,0.37895143,-0.19810031,-0.54486233,-0.7052904,-0.11772421,-3.033984,0.095952444,-0.37722936,-0.20271817,-0.2040425,-0.414193,0.12487494,-0.57013905,-0.47129104,0.15689747,0.11450793,0.6544813,-0.1680425,0.25719914,-0.2541148,-0.12922278,-0.44959357,0.06611001,0.1096829,0.30837741,0.05140929,-0.35298765,0.21912122,-0.22443606,-0.5540983,0.04146773,-0.57588714,-0.5244167,-0.19693463,-0.5142395,-0.46484625,0.6793995,-0.47591722,0.03365693,-0.11308141,-0.048515815,-0.094705276,0.48155755,0.2181917,0.08578592,0.028869238,-0.108007945,0.02082489,-0.33523062,0.39469478,0.030031947,0.29080278,0.48549607,-0.22463354,0.18242992,0.4009975,0.63615733,-0.030796565,0.8502906,0.54831517,-0.007710333,0.19920439,-0.43407425,-0.3199271,-0.5468835,-0.29813477,-0.07907438,-0.38555908,-0.41669843,0.04400222,-0.2948442,-0.9366683,0.61948836,-0.018799396,0.13252777,-0.13017444,0.38116506,0.46454528,-0.21788734,-0.13782288,-0.0074685034,0.047531717,-0.5931384,-0.33645236,-0.6236594,-0.48397306,-0.097573295,0.9690453,-0.093007766,-0.13319382,0.0134196235,-0.23993587,-0.18818787,0.09272568,-0.17249672,0.12724727,0.29871666,0.038919184,-0.81685096,0.54185385,0.083596826,-0.1456181,-0.5053865,0.28258955,0.56858885,-0.7462572,0.40714964,0.45535403,0.067619786,-0.14777897,-0.5148729,-0.3105788,-0.15570909,-0.067741685,0.3210025,0.25693247,-0.7578099,0.57551664,0.40707582,-0.21725559,-0.9027488,0.3777256,0.043430027,-0.3448728,0.01380173,0.30650502,0.1516052,0.07651803,-0.27353492,0.23497787,-0.50390327,0.37820053,0.13985246,-0.026724754,0.46734196,-0.2420266,-0.21301773,-0.78094304,0.17203258,-0.52402467,-0.2816614,0.1611251,0.18861455,-0.083495826,0.24596313,-0.055546753,0.3816064,-0.29049322,0.08388744,-0.1559119,-0.15574652,0.13559762,0.5149936,0.56035113,-0.43463948,0.6909019,0.10616715,-0.09890866,0.026272627,0.06645781,0.39476216,0.15042703,0.4490143,0.048122272,-0.2590739,0.35943377,0.73103803,0.15545617,0.62352794,0.07558366,-0.11287585,0.33571848,0.09231929,0.28742197,0.10929572,-0.5368084,0.04855719,-0.44278526,0.056373425,0.53961575,0.06652816,0.3045178,-0.12599736,-0.18658462,0.14869973,0.23561698,-0.002984141,-1.0515168,0.43756235,0.20378326,0.83044374,0.60764074,-0.13003553,0.101088524,0.76831466,-0.3591333,0.12732264,0.4050213,0.1842483,-0.47472972,0.6846091,-0.8682802,0.48696682,-0.27968594,0.032578588,-0.15673436,0.03738636,0.39415815,0.7528218,-0.1452602,0.07280651,-0.012390465,-0.32611975,0.23136702,-0.49474275,0.20599435,-0.5792706,-0.22822008,0.74201745,0.39061067,0.19204313,-0.124933414,-0.037597027,0.16609842,-0.16002487,0.1444361,0.109448716,0.09467589,0.081503026,-0.6122732,-0.29639867,0.5974235,0.023021642,0.24748328,0.080554,-0.17599359,0.2666337,-0.25085104,-0.22768423,-0.03748118,-0.7380881,0.07941531,-0.19071652,-0.4764199,0.55407333,-0.33624724,0.23519179,0.2912489,0.1654826,-0.38533223,0.06965582,0.41471612,0.74069095,-0.06687985,-0.22353894,-0.3466169,0.11738194,0.209684,-0.15970431,-0.14107169,-0.098819494,-0.157105,-0.56550854,0.43989187,-0.16356781,-0.2577974,0.021565152,-0.1900932,-0.021038247,0.51294065,-0.0332498,-0.17175692,0.03594437,-0.23895217,-0.22899629,0.07151166,-0.14978155,0.40102613,0.22429506,-0.08150188,-0.149607,-0.08158366,-0.18288766,0.46325767,-0.28179696,0.3110057,0.21299829,0.04174704,-0.3397733,-0.24027713,0.003305472,0.5646013,0.018504573,-0.055059608,-0.16559973,-0.3413768,-0.30936784,-0.021168806,-0.20851539,0.28767708,0.13575235,-0.43758222,0.8021339,0.02203558,1.2008564,0.0018488353,-0.50483096,0.14900237,0.5016674,-0.0074049053,-0.031234466,-0.38936725,1.0908259,0.49909732,-0.16045696,-0.13022241,-0.38137627,0.07941894,0.33676723,-0.17662308,-0.3791985,0.016212579,-0.6384929,-0.25413945,0.28095457,0.3006221,0.123133846,0.03641104,0.012185037,0.33577377,0.08029934,0.5390831,-0.38125128,-0.03140543,0.30369118,0.40748623,0.053950135,0.09947287,-0.39713156,0.33797482,-0.54101616,0.20824787,-0.23604268,0.21769401,-0.29552156,-0.36525944,0.3356982,0.21156484,0.48587418,-0.16125649,-0.31931955,-0.22586401,0.55358577,0.11808087,0.23269558,0.50224584,-0.41980273,0.07559317,-0.1037808,0.4137169,1.1546154,-0.246954,-0.1294255,0.3331896,-0.3589363,-0.6749066,0.6837988,-0.37877035,0.07166546,0.085386366,-0.30182,-0.57061714,0.15972842,0.39963472,0.029572707,0.11964484,-0.53994,-0.2307242,0.3654617,-0.22304885,-0.2650172,-0.34081644,0.28222916,0.6161889,-0.27604452,-0.36608425,0.12052366,0.27801815,-0.12778625,-0.49426234,-0.03976004,-0.488627,0.34631926,-0.01165534,-0.3250191,-0.19014524,0.064146966,-0.40051225,0.08144665,0.13388625,-0.26237124,0.1119684,-0.3108223,0.10269166,0.8548098,-0.15048814,0.27929652,-0.72730976,-0.36926115,-0.8982996,-0.15882543,0.67219573,0.046354536,0.04831791,-0.7184721,-0.00400015,0.042717602,-0.20653722,-0.06826474,-0.62644184,0.4579465,0.12275712,0.27115014,-0.016968371,-0.6343972,0.13575682,0.09811081,-0.18105443,-0.550657,0.46698028,-0.05061554,0.8306973,0.06883594,0.028105924,0.35105798,-0.42642975,0.052986506,-0.19650306,-0.30391884,-0.6386799,0.02801019 -596,0.4182347,-0.33517778,-0.41119745,-0.120538376,-0.07484951,-0.24972771,-0.0031005342,0.410656,0.09491555,-0.22790892,-0.27822447,-0.0764984,0.15480642,0.5284175,-0.13091525,-0.90422016,0.004343102,0.23061197,-0.6923783,0.6479064,-0.5415634,0.17268586,0.047367115,0.27577913,-0.063210875,0.29078123,0.3953619,-0.06652901,0.12017136,0.22426212,-0.16130553,0.16507886,-0.49147078,0.18914084,-0.010705511,-0.31705448,0.019194087,-0.2834047,-0.13981128,-0.7533435,0.23857726,-0.75594735,0.44296494,0.025924757,-0.31457976,-0.15602352,0.16209514,0.29993972,-0.70014066,0.06929793,0.1183,-0.057771128,-0.14258035,-0.31366828,-0.10356471,-0.45060062,-0.6166273,0.027074195,-0.531414,-0.22760384,-0.10186999,0.18290623,-0.42201045,0.0012594858,-0.11465424,0.57278097,-0.39472106,-0.07016846,0.46641648,-0.049250294,0.12392262,-0.48970857,0.0057526506,-0.16447574,0.32745266,-0.07233497,-0.26977405,0.3967955,0.40165773,0.5441633,0.3465879,-0.35190406,-0.22449875,-0.21796887,0.1623285,0.37441158,-0.092377566,-0.7046861,-0.2175976,0.18952928,0.20842917,0.27992344,0.09149101,-0.20180695,-0.031102462,-0.23592044,-0.1386057,0.24830486,0.63954514,-0.22485423,-0.5133357,0.29776746,0.5541901,-0.06695048,0.03352205,0.1821106,-0.07438282,-0.5650882,-0.2524399,0.056470413,-0.19046666,0.61607975,-0.2719012,0.11642206,0.7671108,-0.1093461,0.05314778,-0.102011226,-0.16208234,-0.17908639,-0.48567414,-0.21042092,0.22632463,-0.41608825,0.028455695,-0.39603665,0.84099025,0.356752,-0.74752015,0.49854615,-0.55551046,0.2922946,-0.0982424,0.7665828,0.7253712,0.33971095,0.45362592,0.8540764,-0.40226588,0.26007056,0.19231468,-0.40223274,-0.11693037,-0.21026403,0.071194835,-0.5082159,0.21565336,-0.1635869,0.018786127,0.056850147,0.47484124,-0.67545456,-0.18135458,0.21121688,0.7796169,-0.37553498,-0.09569576,0.72039336,0.98383,1.0756115,0.15752554,1.4358956,0.59476656,-0.28345373,0.3504349,-0.42879733,-0.87461835,0.1285229,0.39512083,0.1933624,0.37527815,-0.14849392,-0.24347351,0.41415653,-0.47493935,0.055491615,-0.25073925,0.54540086,0.09650058,-0.18231861,-0.41735557,-0.12354112,-0.09491414,-0.25655577,0.030066958,0.33838138,-0.21548201,0.46169844,-0.08836795,1.232216,0.014235866,0.04085932,0.17010391,0.44830096,0.27423728,-0.09954607,0.073515765,0.5032828,0.4911472,-0.22343247,-0.7467594,0.079189435,-0.51289946,-0.5058486,-0.23329937,-0.2273407,0.028561525,0.10755501,-0.2117755,-0.27634463,-0.099916816,-0.29110327,0.48923185,-2.4146101,-0.38276088,-0.20348074,0.43819097,-0.44764015,-0.15902947,-0.17693909,-0.51137185,0.40927377,0.26631108,0.48350593,-0.73283654,0.48707592,0.35488343,-0.56188184,-0.054790527,-0.8388377,-0.026371652,-0.12781407,0.25039896,-0.079595104,-0.08543471,-0.0610525,-0.080710374,0.6470149,0.09355716,0.087109715,0.4729685,0.46741715,0.17842717,0.3683962,0.06481748,0.6569557,-0.5330476,-0.073359855,0.3320723,-0.41918626,0.2974978,0.11181697,-0.030173754,0.48550406,-0.7318533,-0.79778385,-0.6343747,-0.42757395,0.85288906,-0.414067,-0.25714728,0.24748415,-0.049753543,0.14036669,-0.12717432,0.52763546,-0.14276081,0.017802492,-0.6782053,0.23244004,0.18418427,0.23483473,0.085238956,-0.035354752,-0.2589504,0.7096073,-0.2630832,0.6163778,0.33359337,0.30745843,-0.24929889,-0.5369961,0.081735134,0.70524216,0.3349481,-0.045919035,0.023508428,-0.28211775,-0.091733396,-0.261557,0.055143017,0.4858096,0.8749323,-0.14213069,0.11137694,0.5116534,-0.10779222,0.054130346,-0.030198798,-0.2740331,-0.2004242,0.09691056,0.42057577,0.7129254,-0.36092344,0.5682219,-0.20834132,0.34719276,-0.09827057,-0.53032404,0.73975354,0.8025925,-0.24388969,-0.099089645,0.47092748,0.28071022,-0.550895,0.468262,-0.68348426,-0.16298555,0.81810784,-0.2012875,-0.32557496,0.051743235,-0.23088671,0.19640893,-0.9210214,0.55255336,-0.37015152,-0.38030156,-0.61964774,-0.08970889,-2.8928852,0.19049476,-0.518976,0.0027077298,-0.27031446,0.028409585,-0.064302005,-0.6975426,-0.71097475,0.36683878,0.2433347,0.34545326,-0.061440557,0.32701707,-0.23025881,-0.11791124,-0.3231825,0.21403472,0.14552014,0.23043899,-0.09668797,-0.5110406,0.055070806,0.19421673,-0.51535505,0.34121394,-0.6791327,-0.42061278,-0.16838862,-0.84202355,-0.3176612,0.58796614,-0.42109382,-0.077962056,-0.23208408,0.099474214,-0.23884244,0.20797914,-0.028961599,0.17411067,0.091584526,-0.14696857,0.106013454,-0.29975075,0.39217034,-0.06962163,0.36956963,0.0068364986,-0.13217336,0.09783254,0.45615816,0.68338555,-0.013214588,0.6086914,0.5880817,-0.051986497,0.32577515,-0.20896439,-0.09593645,-0.61962324,-0.5495538,-0.13633303,-0.42994884,-0.6423021,0.10903274,-0.37821254,-0.8166921,0.4194806,-0.13879877,0.31238294,0.065096974,0.23380114,0.47989956,-0.03756312,0.110490285,-0.14590769,-0.20444334,-0.55234414,-0.28174174,-0.6960712,-0.43570462,0.41135368,1.070784,-0.27852833,-0.061573952,-0.25694862,-0.37567952,-0.05881615,0.18728732,0.05164336,0.35934615,0.32203257,-0.05739287,-0.64979523,0.32851508,0.16013835,-0.2296416,-0.49585167,0.14687575,0.6122832,-0.8225102,0.7910977,0.17396224,-0.056060057,-0.003967704,-0.6829181,-0.37140873,0.18415125,-0.065514125,0.39659277,0.1351719,-0.6428091,0.4864944,0.44197738,-0.48550916,-0.89127,0.13336541,-0.073046096,-0.121247016,-0.07345932,0.4167242,0.007129202,-0.24737602,-0.41522503,0.2543964,-0.39662632,0.33008805,0.15926082,-0.2485578,0.19139016,-0.125165,-0.2860529,-0.802571,-0.012629469,-0.8333741,-0.028888648,0.29529852,0.11931515,-0.15799977,0.016671559,0.14334176,0.47094822,-0.29588887,0.21282487,0.16093178,-0.5095523,0.080268115,0.37749568,0.26513782,-0.41623285,0.57716405,0.13283546,-0.12144149,-0.055228252,0.11005559,0.38833785,0.22124904,0.38476077,0.017337106,-0.010956491,0.44554567,0.8335204,0.06144765,0.44196844,0.28219846,-0.088611804,0.455027,0.06348807,0.07732134,0.07949897,-0.26881698,0.0024283428,0.17814672,0.25377885,0.46503702,0.32295403,0.44500265,-0.012248696,-0.29824564,0.006611629,0.32580566,-0.08623326,-0.94844955,0.369694,0.21514231,0.8669808,0.52882606,0.08322448,-0.17737234,0.5236105,-0.17387027,0.1720016,0.4415383,-0.2178802,-0.42220712,0.76415676,-0.54677814,0.39444026,-0.37694624,0.088754006,0.0472112,0.34052753,0.2404827,0.7661479,-0.18013193,-0.036433514,-0.121464066,0.0031442468,0.09567129,-0.5238195,0.08474662,-0.36130115,-0.39883098,0.6481035,0.22296686,0.2511785,-0.176627,-0.014506561,0.21229601,-0.22866456,0.29498053,-0.058212806,0.029671907,0.16665697,-0.57331043,-0.39723694,0.63478214,0.22244696,0.27313295,-0.092511855,-0.31191334,0.10519647,-0.46240988,-0.20944305,0.0021534462,-0.603798,0.04883339,-0.1763457,-0.34528598,0.52449995,-0.28662685,0.19738014,0.37314427,0.121528886,-0.44298658,0.05522424,-0.069270015,0.80478287,-0.064533465,-0.28980246,-0.32355055,0.07470413,0.2994086,-0.28930864,0.44463563,-0.31149018,-0.15276584,-0.5531617,0.78622776,0.05930844,-0.49704853,0.16056328,-0.311317,-0.22527254,0.6477008,-0.20436697,-0.1342286,-0.009017299,-0.30505326,-0.4619545,-0.27033857,-0.18736519,0.34444132,0.23076607,0.18993992,0.031886905,-0.23198693,-0.064619765,0.5185121,0.14278117,0.28364065,0.17864305,0.16187277,-0.15022187,0.11644357,0.25602078,0.41257575,0.2219221,-0.114317186,-0.22136593,-0.41641378,-0.15313812,-0.34005037,-0.20749503,0.25763008,-0.11010196,-0.3904539,0.7261314,0.13055427,1.401628,0.01365303,-0.30761555,0.0444598,0.5587627,0.084440015,0.009831381,-0.18681693,0.96447915,0.67777824,-0.069586806,-0.06870434,-0.5000542,-0.3156813,0.501839,-0.27412617,-0.22202718,0.19192411,-0.510017,-0.56704706,0.31895807,0.07041689,0.0026107032,-0.058391754,0.023493549,-0.00017905235,0.05407561,0.31913477,-0.6420408,-0.10097653,0.11402133,0.29499704,0.14101256,0.2945698,-0.39837566,0.3352327,-0.7422931,0.36116418,-0.23597519,0.09500299,-0.08561227,-0.37658015,0.13634217,0.005855764,0.36489165,-0.32157204,-0.4618064,-0.05526642,0.63884014,0.19185431,0.27987447,0.71688175,-0.38303304,0.058043096,0.23309815,0.666894,1.4477566,-0.26249325,-0.1832216,0.047775757,-0.43419442,-0.9326164,0.7994334,-0.20312835,-0.1426377,-0.30477557,-0.37452248,-0.643785,0.21159174,0.10486084,-0.07962427,0.22360177,-0.5603848,-0.2471088,0.34003246,-0.3840529,-0.15613213,-0.21962583,0.49517593,0.7918668,-0.24532974,-0.2479006,0.15663281,0.14840348,-0.3271418,-0.60174817,-0.24271242,-0.33970976,0.28251448,0.17010055,-0.2876279,0.010845506,0.20752625,-0.48612586,0.16690178,0.03695935,-0.28398588,0.29304904,-0.09515198,-0.207702,0.8132917,-0.24982162,-0.062507756,-0.79781055,-0.45067516,-1.012076,-0.32198957,0.60723954,0.113620244,0.009703546,-0.6793687,0.10520762,0.1979893,-0.10354612,0.010793735,-0.41501617,0.3722479,0.121105395,0.3945017,-0.30959097,-0.8623398,0.06320662,0.108252585,-0.008140296,-0.6514204,0.40723756,0.0032562416,0.9515564,0.017709464,-0.14508194,0.11334852,-0.4812126,0.010189389,-0.37727872,-0.1802261,-0.5502694,-0.1117604 -597,0.34143355,-0.19380826,-0.36735857,-0.21914768,-0.45558566,-0.0014899597,-0.24832296,0.05893723,0.17182112,-0.25884843,-0.08959293,0.048691902,0.03493788,0.34055907,-0.18874352,-0.75422055,-0.13918397,0.011545315,-0.66396606,0.529325,-0.6426405,0.47803617,0.07805182,0.22376351,-0.014823988,0.4613407,0.33999968,-0.26560086,-0.014667787,-0.053217083,-0.22945176,0.38328934,-0.55579436,0.15545684,-0.029132204,-0.25009742,0.29215646,-0.35311028,-0.15064171,-0.5945092,0.175782,-0.74869514,0.4944235,-0.06876597,-0.06782263,0.049416,0.3660809,0.31236,-0.46951467,0.22002655,0.1661354,-0.26515794,-0.053199574,-0.2546426,-0.04421524,-0.50674933,-0.43870634,-0.13581668,-0.8442553,-0.43510568,-0.21184231,0.19761945,-0.38430402,0.074088916,-0.18062302,0.27865458,-0.5134847,-0.015462071,0.22880417,-0.19645661,0.12052775,-0.5133506,0.009577688,-0.044034146,0.4612611,0.0185709,-0.14176093,0.4267382,0.2302147,0.37194037,0.27055892,-0.34749866,-0.2011906,-0.44841495,0.21247388,0.3435135,-0.17650193,-0.19871865,-0.1782059,0.08450562,0.31079492,0.37100273,-0.09462576,0.010295615,-0.06971718,-0.030994996,-0.25679454,0.3872768,0.55588627,-0.29285628,-0.5117512,0.28052744,0.4722175,0.12607244,-0.1363998,0.095108,0.029572725,-0.45339137,-0.2121044,0.08291323,-0.13296297,0.4464296,-0.17758963,0.13600752,0.9501691,-0.28804263,0.11133559,-0.16374367,-0.17464742,-0.123833954,-0.07250982,0.01018611,0.018412706,-0.69090486,0.026717596,-0.19826506,0.84403217,0.24086079,-0.55515397,0.33383414,-0.5796634,0.114894226,-0.042867973,0.62486446,0.5129621,0.44496998,0.42590648,0.73623496,-0.30174822,0.15098953,-0.081712425,-0.4317444,0.08104611,-0.33106506,0.03344705,-0.4453544,0.142412,-0.09782219,0.1476462,0.0010504983,0.37626532,-0.5815898,0.07988064,0.19475971,0.815536,-0.36682668,0.030641694,0.6007702,0.9509595,1.0587084,0.044258907,1.0669837,0.29357472,-0.2652474,0.05470684,-0.34792846,-0.5174297,0.13885008,0.37127748,-0.049988687,0.3504712,-0.094313204,0.04202623,0.36786193,-0.44486722,-0.10457543,-0.05702403,0.3683486,0.18690273,-0.09004751,-0.3852015,-0.15450971,0.08267584,-0.1550879,0.13481684,0.305467,-0.11885084,0.49578017,-0.013573594,1.2714119,0.0447063,0.14694181,0.12991557,0.5531204,0.2916425,0.13959014,0.05863866,0.54513323,0.34365955,0.08271158,-0.6849554,0.121056065,-0.40936363,-0.4288392,-0.18501222,-0.46285343,-0.17551391,0.027197719,-0.36339352,-0.20743847,-0.08703021,-0.19053859,0.37868896,-2.8037946,-0.24650332,-0.11487284,0.2463018,-0.35144427,-0.07901792,0.02584619,-0.5864517,0.22058177,0.26571774,0.35850242,-0.6644287,0.4837517,0.58519065,-0.5028239,-0.225144,-0.61303043,-0.094521396,-0.10971587,0.640996,-0.06411622,-0.10014814,-0.29466566,0.15874189,0.73564345,-0.06068309,0.2556352,0.39878988,0.40506703,0.2545125,0.5867346,0.07580754,0.57428443,-0.35562444,-0.09511066,0.39498013,-0.33912355,0.2729856,-0.10468793,0.049146477,0.4027736,-0.5163832,-0.90160906,-0.47882247,-0.2702102,1.0310442,-0.42152765,-0.39682508,0.2764155,-0.09908062,0.0002565179,-0.0037666298,0.3905512,-0.1770069,0.22886376,-0.5915968,0.29641902,-0.06052036,0.23555091,0.12550549,0.036455162,-0.235876,0.6410452,-0.052511334,0.53407454,0.15805486,0.27863264,-0.1821723,-0.42352086,0.065667704,0.8018693,0.48012632,0.0050917417,-0.11531832,-0.37886912,0.118086316,-0.25075728,0.010445611,0.5338747,0.77938455,0.022152133,0.16055529,0.29331464,-0.12336629,0.15324628,-0.18447123,-0.048405528,-0.009202857,0.12832133,0.46983975,0.60456264,-0.2079575,0.4729198,-0.13237947,0.48133466,-0.08612663,-0.5416949,0.59202325,0.714164,-0.12796496,-0.043596543,0.58384603,0.6284599,-0.34109688,0.46634245,-0.6369175,-0.3252725,0.77891886,-0.2929908,-0.472596,0.061437752,-0.24201459,0.14866626,-0.85142875,0.35551655,-0.31895638,-0.42660618,-0.5500285,-0.1938034,-3.6720805,-0.025941849,-0.309931,-0.07124642,-0.32716632,-0.068936266,0.17663252,-0.86066395,-0.55789244,0.15945135,0.15505555,0.4393968,-0.07365964,0.14753088,-0.32491678,-0.21896386,-0.12234703,0.293265,0.11724365,0.14799166,-0.13312079,-0.4116816,0.01622248,0.011112969,-0.51582587,0.29141408,-0.3587558,-0.5128715,-0.064497314,-0.46995452,-0.14899144,0.66570216,-0.26270887,-0.013348063,-0.28437203,0.12032207,-0.2137654,0.07912466,0.2952888,0.29710895,0.21914762,-0.1637605,0.043573704,-0.37380403,0.5197245,-0.05895637,0.47583604,0.20230806,0.04223737,-0.0025396235,0.48210174,0.3615501,-0.09162491,0.87220734,0.28644297,-0.15534812,0.37418744,-0.37252486,-0.3283026,-0.68659246,-0.53286535,0.028669585,-0.44639438,-0.5978967,-0.06159064,-0.30319235,-0.74136925,0.6413177,-0.112174004,0.38773614,-0.24529323,0.35155725,0.3941142,-0.029125996,-0.049660016,-0.072506316,-0.16875097,-0.6007756,-0.28024852,-0.7267024,-0.46142307,0.08344741,0.9640552,-0.35102642,-0.09516704,-0.20040306,-0.21473193,-0.046040393,0.09175654,0.21155599,0.36071408,0.4426729,0.058825966,-0.8176305,0.54061234,-0.06473086,-0.04469544,-0.43332952,-0.029256463,0.605687,-0.93540144,0.51057345,0.4215241,0.02586687,0.24047935,-0.53039956,-0.17878266,-0.017233893,-0.1433859,0.3503877,0.09376535,-0.736706,0.54104954,0.16092312,-0.5383687,-0.6524104,0.27972293,-0.085890785,-0.29426277,0.067354456,0.3473312,0.30130076,-0.06987969,-0.024904959,0.21192124,-0.49369353,0.24786234,0.24054146,-0.043285128,0.39493632,-0.09647764,-0.5220762,-0.7432798,-0.12496929,-0.45239466,-0.25066578,0.20961569,-0.04823496,-0.10904777,0.17485759,-0.030463051,0.4649881,-0.23089394,0.1438628,0.1471178,-0.35242513,0.27768564,0.4766572,0.3747468,-0.29540446,0.6605558,0.23026434,-0.07449553,0.06789696,0.018254735,0.31152624,-0.09533371,0.43254226,-0.11251539,-0.23716709,0.5378082,0.818107,0.2013863,0.37800226,0.08260943,-0.09742223,0.4953429,-0.013111645,-0.08329718,0.1559453,-0.34016278,-0.12388283,0.07438178,0.10103603,0.48497128,0.33042628,0.44526902,0.074633114,-0.020370748,0.029841758,0.34199333,-0.0964876,-0.9253617,0.2665338,0.25812173,0.7406843,0.42560485,0.1903458,-0.05890882,0.6300718,-0.4394231,0.026389996,0.4382323,0.10960899,-0.43934685,0.78595567,-0.48404923,0.50216436,-0.13636291,-0.0039666165,0.015237138,0.12335491,0.24370615,0.89318573,-0.0891995,-0.049862623,0.017665511,-0.3546682,0.11444778,-0.33345395,-0.090247005,-0.25455824,-0.24428816,0.6422781,0.30845934,0.30170515,-0.14657554,-0.12399368,0.04549537,-0.2085604,0.33535814,-0.07326631,0.14692271,-0.05201476,-0.25496256,-0.36332834,0.6478002,-0.05580711,0.32537225,-0.24988802,-0.23646569,0.19472085,-0.22554252,-0.10913056,0.08389623,-0.41328385,0.26937944,-0.1195309,-0.67083144,0.43787256,-0.2715465,0.14117233,0.26261994,0.036153983,-0.2603291,0.0820637,0.028093874,0.553632,-0.13874881,-0.34628633,-0.33167553,-0.12812304,0.22969489,-0.30433,0.17540446,-0.26560396,0.14203589,-0.5163005,0.59783745,-0.2465232,-0.4186847,-0.0044517145,-0.4078957,-0.112533905,0.46973056,-0.040210042,-0.14558198,0.08989965,-0.1931771,-0.397047,-0.17573611,-0.28708804,0.21532091,0.22473237,-0.014244035,-0.08089641,-0.32589427,-0.10753348,0.5578367,-0.0420858,0.35684177,0.08986744,-0.043779977,-0.24511665,-0.014062423,0.15237746,0.34954268,0.07755801,0.20167844,-0.30219465,-0.48099935,-0.31193393,0.22427963,-0.22328293,0.22702676,0.081991665,-0.45471048,0.9717611,-0.07914564,1.051659,0.09489341,-0.32867938,0.054946363,0.56900406,-0.08980115,0.072114944,-0.17773996,0.97013444,0.6324372,-0.087855324,-0.17280869,-0.41837344,-0.082887694,0.333068,-0.37533885,-0.19574912,-0.03326933,-0.482408,-0.33535635,0.29811773,0.11986479,0.12651478,0.07748047,-0.22312295,-0.13065472,0.18699884,0.37375796,-0.6688432,-0.34871405,0.29061627,0.12894978,0.037645224,0.1609996,-0.40710348,0.43190292,-0.6050025,0.19672036,-0.40625727,0.14586091,-0.24228628,-0.22350352,0.20208542,-0.016980872,0.28203812,-0.28210223,-0.47077107,-0.07414065,0.38880637,-0.012296997,0.1849455,0.5857076,-0.267782,0.09694423,0.051362876,0.58447003,1.2482195,-0.24766362,-0.122351095,0.21143036,-0.48182464,-0.7125141,0.41110057,-0.4010385,-0.24472243,-0.056345537,-0.54198813,-0.41742676,0.24733573,0.26155263,0.13463813,0.23231673,-0.61491066,-0.24612999,0.23006645,-0.4090952,-0.242528,-0.17935139,0.3831086,0.96604556,-0.37627286,-0.11206209,-0.001053486,0.29975903,-0.38539886,-0.58390653,-0.092870936,-0.01832461,0.51590276,0.20151755,-0.09902659,0.028084364,0.2775982,-0.38957888,0.16915762,0.48805952,-0.3811133,0.06618442,-0.15867653,-0.0044088736,0.8002136,-0.32675505,-0.20472538,-0.73747146,-0.40678242,-0.9100323,-0.3919247,0.40544307,0.15176788,-0.009195216,-0.36648953,-0.0002682656,0.039489344,-0.18525302,0.10015262,-0.6795235,0.37157646,0.15773042,0.46900874,-0.22947781,-0.8261248,-0.08032566,0.10942466,-0.039033636,-0.6659942,0.672927,-0.34637177,0.78454745,0.060097307,-0.25787416,0.042469412,-0.3263782,0.13468607,-0.33044216,-0.14230931,-0.84513634,0.038870238 -598,0.4603727,-0.27867603,-0.47110733,0.033541147,-0.35226664,0.023878297,-0.45335892,0.24898624,0.28144833,-0.11542962,-0.08310749,0.12885348,-0.13476384,0.3478045,-0.13423903,-0.7606854,-0.20701453,0.045928363,-0.59006447,0.8011022,-0.510345,0.33667874,-0.23667134,0.31298813,0.18897322,0.45295367,0.20281304,0.077731185,-0.078535564,-0.07528794,0.07874538,0.17870982,-0.55824834,0.26227385,-0.24626608,-0.32952467,0.1400033,-0.5101317,-0.23193555,-0.6655814,0.17228864,-0.667572,0.52748877,-0.07201522,-0.114595234,0.056774028,0.24408627,0.30753762,-0.30749828,0.09766967,0.076917425,-0.06862021,-0.08031734,-0.30369514,-0.10217776,-0.097847275,-0.42097315,-0.11678415,-0.65966177,-0.27191144,-0.114483476,0.19224766,-0.29130453,0.05776157,-0.02883929,0.21112405,-0.42022133,-0.018570619,0.27690876,-0.15954266,0.058231104,-0.78253233,-0.018276794,-0.0391344,0.45646566,-0.045764897,0.040155716,0.50472915,0.12057937,0.4130609,0.16343811,-0.2908569,-0.2983457,-0.27397656,0.24884152,0.44686022,-0.099399365,-0.20181021,-0.4191539,0.13856433,0.46724993,0.30180115,0.0009640179,-0.17553282,0.0074094906,-0.34700137,-0.095708355,0.56321156,0.55138904,-0.19860777,-0.27153614,0.29140097,0.68023884,0.50332475,-0.18042217,0.049146313,-0.027717004,-0.35070047,-0.13030449,0.14790085,-0.04554121,0.40681773,0.09418005,0.19723049,0.6043191,-0.069673665,0.021765003,-0.15046991,-0.011743145,0.055272453,-0.4235137,-0.18644704,0.14455687,-0.5029746,0.13584457,-0.09785725,0.46786326,0.08957725,-0.69128793,0.35903826,-0.5209779,0.1007057,0.16430406,0.5301053,0.58867943,0.3640471,0.22879314,0.89819527,-0.33557558,0.25909504,-0.08132337,-0.21163093,-0.17143787,-0.12467365,0.21104598,-0.455092,0.35018554,-0.27527577,0.07884394,0.07706342,0.38373843,-0.42894512,-0.10720042,0.068248115,0.8056003,-0.24616088,0.09229857,0.8357329,1.2100716,1.2029076,-0.1658425,1.1951592,0.2363055,-0.13133518,-0.09225311,-0.32639804,-0.62239736,0.17316069,0.38220435,0.03406518,0.6249901,-0.05641104,-0.03133745,0.1806297,-0.3973753,-0.008025916,-0.019549387,0.32959113,0.26557174,-0.06602859,-0.4556751,-0.15739611,-0.014159381,-0.13111384,0.18141447,0.21032618,-0.2527922,0.34180504,-0.05173862,1.3074769,-0.12634929,0.0822564,0.1986619,0.40941933,0.34851235,-0.030869212,-0.101775214,0.46270627,0.32237726,-0.14573132,-0.6669374,0.10222733,-0.44218636,-0.35698,-0.15038402,-0.3126903,-0.080562055,0.021769142,-0.20073195,-0.1133947,-0.13447022,-0.27231723,0.4166669,-2.7550073,-0.3616455,-0.20252737,0.271687,-0.3260696,-0.14557187,-0.12079992,-0.43646076,0.46612406,0.29652467,0.37703475,-0.30596766,0.40637913,0.4597168,-0.6097885,-0.16670159,-0.37414548,-0.006240219,-0.0012977315,0.6561139,-0.09555197,-0.096048005,-0.11056017,0.35890183,0.7300932,0.1822183,0.17011544,0.6449261,0.40687254,0.049051724,0.47168964,-0.07789079,0.4957692,-0.4475889,-0.045197766,0.42354417,-0.375536,0.45637164,-0.26154917,0.07447873,0.48452908,-0.5243043,-0.8176219,-0.4466191,-0.25476697,1.0951302,-0.29460636,-0.5635356,0.08074772,-0.16972251,-0.065364696,0.062206876,0.52967703,-0.14736855,0.024526546,-0.65986204,0.03858636,-0.09450968,0.13269699,0.03348751,0.033924203,-0.3783438,0.6962877,-0.08533143,0.62956965,0.3998221,0.37054825,-0.04333413,-0.3752761,0.14723013,0.6640444,0.465551,0.004857806,-0.10781113,-0.10240489,-0.019030979,-0.31967166,0.07860933,0.662649,0.5769062,-0.092618786,0.1517081,0.26705107,-0.09995749,0.082773924,-0.13999566,-0.15128966,-0.13559496,0.1052867,0.4438924,0.8247245,-0.14386071,0.23610364,-0.09196406,0.21310684,-0.052316926,-0.42240185,0.55784065,0.44439024,-0.30796078,-0.08993476,0.49178928,0.49354118,-0.41467014,0.5826245,-0.6673732,-0.2830547,0.7651476,-0.16000739,-0.32757488,0.16129749,-0.3295782,0.06008238,-0.6898826,0.22479418,-0.35297093,-0.3063772,-0.42734274,-0.20796444,-2.50992,0.23565248,-0.1647584,-0.17385745,-0.47634146,0.0061826366,0.1833419,-0.69975007,-0.75959486,0.22341476,0.16933592,0.4870966,-0.16167334,0.16765523,-0.19465698,-0.28408507,-0.22883114,0.21363382,0.03009052,0.26270908,-0.10207593,-0.25447705,-0.118584044,-0.0011262213,-0.44064537,0.1316231,-0.3676571,-0.2172793,-0.11203061,-0.52916133,0.035322104,0.5832519,-0.38393202,0.04566902,-0.23139095,0.034812693,-0.12508367,0.03310029,-0.018279893,0.35215256,0.30016065,-0.20898592,0.068809606,-0.24479564,0.5358502,0.028880265,0.29990456,0.024072042,-0.12719451,0.1571327,0.35571298,0.6569924,-0.10724444,0.94774663,0.23505796,-0.09939052,0.3475234,-0.32893184,-0.23391183,-0.5770187,-0.30340937,0.042154968,-0.33523864,-0.7293037,-0.07468283,-0.34326407,-0.8474429,0.4588821,-0.0132663315,0.6219581,-0.072323464,0.18889736,0.355658,-0.23424672,0.061552882,-0.043417867,-0.14167662,-0.4021856,-0.29370707,-0.5953437,-0.48003128,0.24662362,0.701048,-0.44178015,-0.09065298,-0.006201259,-0.47210386,0.10747266,0.05730951,0.08087056,0.3047455,0.33999544,0.3605108,-0.61259073,0.21931338,0.059934873,-0.1966337,-0.4178656,-0.009466559,0.6412597,-0.6400701,0.5463955,0.30135164,-0.025883798,0.11005884,-0.6867881,0.024615819,0.119654655,-0.17311423,0.41604766,0.19915023,-0.69113344,0.4986836,0.10792874,-0.5889479,-0.77371997,0.27643877,-0.11229932,-0.19044006,-0.07618793,0.4831889,0.27320716,-0.02049012,-0.16128953,0.24816035,-0.27992254,0.1727145,0.028506193,-0.1588779,0.27158633,-0.121939525,-0.5372341,-0.6769786,-0.006603543,-0.5250157,-0.22282144,0.4683447,-0.02796024,-0.21601607,-0.10275315,0.3174972,0.40794954,-0.36158293,0.26006302,-0.031403195,-0.39226678,0.29631138,0.45596105,0.4278461,-0.34861284,0.42576838,0.09686584,-0.06353985,0.32476297,0.017245378,0.2744765,-0.026432684,0.3356518,-0.03440523,0.046687674,0.1637107,0.5567749,0.13780892,0.27103874,0.16823383,-0.34477273,0.44534725,0.13192663,0.10633381,-0.19810836,-0.33966732,0.037169714,0.05864886,0.0437291,0.49547863,0.39858943,0.30579066,0.0919266,-0.21955141,-0.08132141,0.31752712,-0.20880935,-1.1060623,0.3274041,0.11943253,0.90401566,0.4459332,0.19831507,0.08249646,0.51211107,-0.08719951,-0.029899647,0.47568303,0.070617475,-0.48257694,0.5976558,-0.3934036,0.35570303,-0.13754871,-0.04165428,0.26930514,0.3057564,0.52579486,0.6748869,-0.21094058,-0.10027246,-0.16605604,-0.21771467,-0.10721302,-0.18290424,0.2516928,-0.23909567,-0.44451037,0.59222984,0.44948572,0.34847802,-0.21159902,-0.016643459,0.006730452,-0.2787663,0.24877921,-0.112839304,-0.07543285,0.05020726,-0.510835,-0.1344496,0.4089656,-0.025343375,-0.011216776,-0.32479593,-0.30314073,0.034473907,-0.19331042,0.06631408,0.05935865,-0.8251866,0.13382258,-0.07368356,-0.45859054,0.32051,-0.1259512,0.074247345,0.23875652,-0.025592577,-0.23661123,0.26944163,0.017028153,0.7940398,-0.046332564,-0.3907241,-0.3051969,0.039518613,0.23766232,-0.28141758,0.26874372,-0.26593068,0.2156841,-0.6190688,0.6514703,-0.21091442,-0.25735217,0.12668751,-0.26893663,-0.19634198,0.55688834,-0.17083351,-0.08871573,-0.12091359,-0.3247531,-0.4893119,-0.30375502,-0.3619573,0.109680906,0.26275513,-0.14613733,-0.1378225,-0.23562217,-0.010911486,0.5208566,0.08726072,0.37527177,0.17821786,0.06755014,-0.3859808,0.09802823,0.23553808,0.29687637,0.24323227,0.14417683,-0.34968874,-0.4786108,-0.34023866,0.51416725,-0.25682622,0.12762089,-0.070095435,-0.28702903,0.9264723,0.11562734,1.117239,0.05401206,-0.2787167,0.07410073,0.66646516,-0.31646666,-0.06964994,-0.36874527,0.9491778,0.59012127,-0.17480914,0.048857115,-0.3538343,-0.20216711,0.2849409,-0.4689477,0.063994214,-0.20843394,-0.33779377,-0.43807745,0.1486328,0.13803211,0.0080710305,-0.19840679,-0.11836188,-0.019699434,0.18131278,0.40384457,-0.5443326,-0.23064362,0.29283255,0.0667197,0.036608458,0.117472015,-0.35439137,0.4431908,-0.665307,0.25395173,-0.40323034,0.0672655,-0.2009916,-0.41992873,0.16193247,-0.08230747,0.2834535,-0.3528838,-0.46826395,-0.1472023,0.1891347,0.0065994305,0.13573658,0.50245196,-0.29019848,0.069728844,0.08091177,0.65097016,1.0646399,-0.27017447,0.06566915,0.17244013,-0.5239518,-0.5960828,0.14936662,-0.48719543,-0.055459976,-0.26049536,-0.49204245,-0.7156002,0.18244389,0.107923664,0.16828713,-0.08026072,-0.7776082,-0.20308897,0.22882614,-0.21573313,-0.20310311,-0.17950991,0.2524269,0.92022556,-0.17605105,-0.58145505,0.10130082,0.23215587,-0.20247194,-0.64388555,0.07567289,-0.15039556,0.34586427,0.12925552,-0.13581063,-0.21996114,0.21826528,-0.52505285,-0.06799954,0.21000825,-0.3201756,-0.14173034,-0.24902055,-0.010604705,0.70878464,-0.39206558,0.022681365,-0.6066329,-0.47176236,-1.0286871,-0.49799448,0.11455438,0.24157543,0.10477544,-0.5745989,0.20360616,-0.366102,-0.08957599,0.18302348,-0.45279,0.24995656,0.18398036,0.5166952,-0.4414064,-0.9406749,0.12279823,0.25673386,-0.22555919,-0.56177956,0.54537374,-0.008439318,0.66445047,0.13824211,-0.15447442,-0.13368282,-0.5599637,0.22356082,-0.3885417,-0.15376553,-0.67336446,0.25373003 -599,0.49602368,-0.14981247,-0.48584712,-0.11592956,-0.32700682,-0.020034326,-0.26755854,0.414429,0.39258748,-0.13817,-0.17740943,0.15011896,0.019702924,0.23238517,-0.2401689,-0.7093197,-0.054169733,0.13937472,-0.52610564,0.7200023,-0.43614095,0.31013444,-0.057442244,0.43763727,0.32318354,0.50537956,0.21216756,0.059700448,-0.27935308,-0.22970739,0.00402192,0.017136686,-0.5423044,0.23061356,-0.2825384,-0.24124756,0.12687063,-0.47284544,-0.28353304,-0.7272607,0.17299733,-0.8031983,0.47782332,0.17340377,-0.0741145,-0.16442333,0.23681402,0.12755565,-0.28798676,-0.14498445,0.12847942,-0.068657264,-0.028201649,-0.48483336,-0.31327263,-0.49980018,-0.47398233,-0.03317586,-0.6429819,-0.31900936,-0.2026472,0.3106867,-0.275982,-0.18593457,-0.19550464,0.5016524,-0.43039814,0.024569873,0.19219019,-0.35997316,0.11296236,-0.8203989,-0.1457949,-0.08139201,0.19931151,0.106435366,-0.18062918,0.42773965,0.18389748,0.24058048,0.32961273,-0.43814877,-0.43228623,-0.2289595,0.31608754,0.33487993,-0.34254068,-0.3131173,-0.28451037,-0.058796525,0.5409082,0.32480377,0.2261166,-0.14056772,0.157597,-0.2523525,-0.16527885,0.7200235,0.67188966,-0.24182162,-0.2840154,0.24469258,0.53718257,0.19169067,-0.43031123,-0.18746911,-0.107755,-0.32503536,-0.18736888,0.26931655,-0.112786606,0.6080798,-0.05754716,-0.042373933,0.73235375,-0.28066033,0.053009924,0.06757913,0.15049043,-0.04973928,-0.52014935,-0.24100232,0.08178263,-0.5595595,-0.015243154,-0.35130963,0.67721856,0.090980016,-0.7009595,0.33991,-0.46244866,0.020131204,0.08932679,0.5328684,0.526609,0.5704509,0.29200312,0.6569841,-0.14380987,0.21930371,-0.03580773,-0.32817805,-0.07952494,-0.21586122,0.052583575,-0.37235686,0.19243461,-0.23598807,0.08198224,-0.0301493,0.5933999,-0.40222913,-0.20244329,0.25051638,0.86202437,-0.3072914,-0.15868099,0.6111427,1.3440163,1.0694654,-0.107006274,1.096587,0.20126882,-0.1484668,-0.10389233,-0.2736103,-0.62292266,0.1981364,0.3065013,-0.31091684,0.4151488,-0.13048795,0.004825858,0.2440454,-0.2273431,-0.050084617,0.026817117,0.37639993,0.2086734,0.06648984,-0.44422114,-0.22464599,0.0903293,-0.100868136,0.23273516,0.35650954,-0.5740357,0.16556934,-0.08213925,1.0485191,-0.13117655,0.029310625,0.1116461,0.70898116,0.30553746,-0.078942895,0.22958948,0.6321048,0.17324024,-0.16463582,-0.65756196,0.17307279,-0.5732674,-0.457586,-0.08208799,-0.51522005,-0.17567095,0.23588528,-0.34046194,-0.17609787,-0.014657772,-0.2535567,0.33950475,-2.6561785,-0.2144848,-0.13928819,0.31975916,-0.3257243,-0.2257112,0.05873015,-0.4934631,0.2334455,0.120146185,0.44380137,-0.44078276,0.50858253,0.705616,-0.59856665,-0.10710769,-0.627051,0.07684365,-0.29568288,0.7354791,-0.22437835,-0.017168788,-0.06661697,0.17531937,0.9498068,0.27010423,0.2692293,0.5445271,0.32210353,-0.013925355,0.4269633,-0.0064769615,0.6855253,-0.3332523,-0.22197665,0.35324523,-0.4286031,0.47801253,-0.055400636,0.12390719,0.6444164,-0.4814061,-0.84458286,-0.47840658,-0.2866249,0.9842664,-0.33990633,-0.47725472,0.16294517,-0.10952,-0.15311068,0.006371443,0.572547,-0.04327178,0.27707756,-0.46425295,0.1442257,-0.053121917,0.17945684,-0.014180515,0.20734447,-0.06711976,0.759009,-0.0079641985,0.54766375,0.12985688,0.2652983,-0.3227648,-0.33031052,0.10564584,0.81398106,0.30524057,-0.03614662,-0.10389535,-0.21758768,0.029667556,-0.22371355,0.058821622,0.66169745,0.7228668,-0.10944964,0.11427729,0.34894198,-0.025657954,0.014892981,-0.12063014,-0.35266873,-0.29126012,0.16136727,0.4452359,0.7276719,-0.13694617,0.38502482,-0.15042344,0.29103354,-0.2849589,-0.3695656,0.531423,0.51759213,-0.26650655,-0.15026802,0.6696163,0.63892025,-0.7421586,0.5461551,-0.6786471,-0.11993192,0.6953182,-0.27101266,-0.48010826,0.09152622,-0.26528832,0.046088044,-0.7224117,0.26530468,-0.3837748,-0.39370456,-0.20382045,-0.20421019,-2.8007064,0.22101298,-0.23657733,-0.120479695,-0.34856635,-0.04770147,0.18724035,-0.7085279,-0.4527257,0.1303877,0.21228467,0.5728219,-0.22927721,0.119119644,-0.29618055,-0.3239837,-0.16048685,0.44032103,0.0060154106,0.3574031,-0.41918027,-0.29563814,0.06482151,0.011371186,-0.47005197,0.16797918,-0.5362284,-0.31466866,0.040636208,-0.55940217,-0.14315757,0.55538327,-0.4372311,0.009062813,-0.20849106,0.17141159,-0.13017263,0.23568353,0.025690857,0.37718627,0.2810777,-0.1387174,0.100131854,-0.3805443,0.4934542,0.03173925,0.45823926,0.17802033,-0.02018824,0.023615006,0.4465788,0.5649376,-0.040719252,1.1656339,0.21540612,-0.2389057,0.41466972,-0.28334117,-0.39881423,-0.6570384,-0.23463117,0.041290063,-0.3419955,-0.60521466,0.055497248,-0.29135954,-0.8428564,0.6414114,0.071208626,0.55788225,-0.11173929,0.42592505,0.2939307,-0.21851029,0.030385444,-0.0055425605,-0.24718674,-0.48064226,-0.33011,-0.70456725,-0.44441417,0.20471637,0.5630648,-0.3433398,-0.07428042,-0.006243339,-0.49429247,0.038173717,0.08943197,0.1293465,0.25856054,0.45636266,0.16470711,-0.55258983,0.25704518,0.056051478,-0.069810584,-0.24430649,0.11054848,0.67046773,-0.7245754,0.7779116,0.40389407,0.10020665,-0.28952998,-0.61815125,-0.100335725,0.13855383,-0.08672873,0.6053075,0.357155,-0.9774882,0.59261805,0.17734043,-0.600176,-0.8203742,0.36340302,-0.12420066,-0.19381367,-0.40637764,0.5014944,0.23919685,-0.14301592,-0.08572573,0.2880194,-0.28388068,0.20320271,0.22043195,-0.20561783,0.2528468,-0.067133546,-0.461046,-0.81381893,0.15568802,-0.60872835,-0.3987924,0.45555958,-0.15420093,-0.11830197,0.29358652,0.28295395,0.47007376,-0.27978924,0.213655,0.06343598,-0.33295888,0.49881807,0.47661906,0.6450446,-0.36183086,0.43249512,0.119033694,-0.2708383,0.37625968,0.06442373,0.31671807,-0.048041306,0.41579157,0.004768454,-0.0637486,0.26994407,0.5471256,0.26983806,0.5732392,0.15853783,-0.22218052,0.4239699,0.03707945,0.12135513,-0.006905657,-0.62504643,-0.036732003,0.05251703,0.17111206,0.53451794,0.16532382,0.48312905,0.088496596,-0.07195163,0.040448543,0.22507904,-0.099987745,-1.2385886,0.26227006,0.1819124,0.9309062,0.45750782,0.2441513,-0.35117382,0.63300145,-0.30253294,-0.06235826,0.59499043,0.08908924,-0.45401222,0.69585156,-0.3357668,0.41395995,-0.18253404,0.036846347,0.21479514,0.03573198,0.5742533,0.97454,-0.16857164,-0.13078938,0.007607206,-0.24204066,0.06391505,-0.27543885,0.21323031,-0.24026391,-0.45916632,0.7610532,0.29779556,0.38961175,-0.11862709,-0.0998062,0.073990114,-0.26002368,0.2675337,-0.01295484,-0.115716785,0.047478233,-0.5378375,-0.18614417,0.641646,0.031249633,-0.003037086,-0.19796321,-0.20289442,0.14835241,-0.14647582,-0.052820545,0.099617116,-0.771464,0.05794231,-0.024773864,-0.7646285,0.38502842,-0.33248833,-0.09126023,0.15862545,0.0008439559,-0.355734,0.38256243,0.2670707,0.6652612,-0.01427473,-0.11826341,-0.24535717,0.04158066,0.1224619,-0.21420535,0.27821633,-0.42270067,0.13821347,-0.6901398,0.52787197,-0.3233751,-0.37032458,-0.2166105,-0.2599601,-0.19295979,0.62810814,-0.03009245,-0.16476451,-0.13375896,-0.20744535,-0.43257105,-0.29532406,-0.14848348,0.120520115,0.105650894,-0.24337055,-0.20638339,-0.3439002,0.009344073,0.3747327,-0.043020424,0.5000791,0.2248385,0.036897663,-0.22082236,0.06042334,0.17868105,0.36808622,0.051479775,0.15748368,-0.28854963,-0.29062697,-0.29118636,0.39189434,-0.10436478,0.11173015,0.22044183,-0.33205664,0.96760327,0.007003844,1.3972753,0.043463048,-0.5719069,0.07272632,0.76890814,-0.193645,0.093164556,-0.5009681,1.2037255,0.58542186,-0.1807677,-0.020485777,-0.65538305,-0.13025095,0.19055837,-0.5418583,-0.0983805,-0.086078726,-0.39168912,-0.12228605,0.17029902,0.24690022,0.13038865,0.007169132,0.063834734,0.13861229,0.27114004,0.4036682,-0.7125631,-0.23526922,0.35124603,0.2435925,-0.07541858,0.286326,-0.33483377,0.3845641,-0.89752746,0.31584284,-0.3718371,0.11953403,-0.37088424,-0.5633789,0.15381771,0.012554948,0.44903836,-0.40684754,-0.43123457,-0.10478987,0.379448,-0.0023568845,0.18616344,0.5731112,-0.25433052,-0.0055324617,0.06555089,0.67655176,1.1965454,-0.2634418,-0.1865294,0.23707458,-0.5478686,-0.8534054,0.21003205,-0.6183549,0.056646015,-0.060950108,-0.49329382,-0.5198186,0.23097447,0.19968535,-0.021531196,0.04811058,-0.6754529,-0.20086424,0.2562223,-0.2768187,-0.23480788,0.11201341,0.29795104,0.84547174,-0.2118118,-0.47941065,-0.15428708,0.26003996,-0.3566503,-0.56236804,0.003434007,-0.21227218,0.33403513,0.034564774,-0.29768306,-0.06907069,0.15643509,-0.557124,0.07490555,0.3091574,-0.3076642,-0.009584959,-0.16104811,0.06252319,0.73604405,-0.07523349,-0.052826066,-0.5246261,-0.5922931,-0.9562479,-0.67961746,-0.08788896,0.021518432,-0.049483374,-0.47608328,0.037838485,-0.4195316,-0.15805116,0.12002477,-0.7707439,0.44829077,0.06986611,0.57938915,-0.36052,-1.1579083,0.19505802,0.27336645,-0.014490063,-0.7946826,0.53165305,-0.24795693,0.9084176,0.16845027,-0.17596194,0.11490398,-0.62525237,0.14666373,-0.4780793,-0.109710105,-0.7395535,0.22552459 -600,0.3321963,-0.15222836,-0.39556476,-0.13505332,0.106330514,0.12167844,-0.06733379,0.65330106,0.1263629,-0.33364287,-0.006542951,-0.10255843,0.10209859,0.43208537,-0.24033268,-0.50085706,-0.0010432353,0.11371102,-0.31282553,0.631308,-0.31750005,0.01137608,-0.090946,0.44286665,-0.024022901,0.29352036,0.0350966,0.018070241,-0.3331759,-0.03045786,-0.120087355,0.4470916,-0.48267433,0.17088534,-0.06011073,-0.1095046,0.03546748,-0.3131913,-0.3698415,-0.6909326,0.25952956,-0.751303,0.4060854,0.036004778,-0.30989888,0.4915497,0.21536517,0.15784778,-0.32974297,-0.30187312,0.036262255,-0.2232088,-0.026446382,-0.38065124,-0.09399817,-0.49941912,-0.5557366,0.06597706,-0.38988018,-0.15196186,-0.22638579,0.08995227,-0.22842632,-0.031398278,-0.1251461,0.6367236,-0.41736576,-0.0021279156,0.2039485,-0.20197271,0.25913838,-0.6174198,-0.24233986,-0.016254196,-0.0028478552,-0.011067472,-0.19718541,0.3213925,0.29560697,0.38339487,-0.2005787,-0.13175501,-0.37200418,-0.029610166,0.14255951,0.40555215,-0.37509164,-0.79367024,-0.015648967,-0.03741872,0.0030042443,0.042549808,0.2275375,-0.108944915,0.04027472,0.18233341,-0.35124624,0.4491018,0.5862105,-0.46937302,-0.13651349,0.15798967,0.45478725,-0.004385469,-0.24740988,-0.31751874,-0.014668864,-0.47583485,-0.07249942,0.021701485,-0.48957467,0.5841517,-0.103031754,0.006117945,0.49403277,-0.15244393,-0.16266143,0.08396741,0.23819888,0.11976486,-0.44169894,-0.17220838,0.2292432,-0.23605354,0.0052370825,-0.20307398,0.70467615,0.1520561,-0.5422929,0.3410759,-0.347069,0.099465705,0.009948921,0.36065552,0.48453274,0.55369604,0.29088184,0.69582015,-0.40761152,-0.032644957,-0.05651617,-0.23632114,0.15749411,-0.19068043,0.012203932,-0.4711837,0.18853498,-0.053883642,-0.17046571,0.1493683,0.1414966,-0.4966104,-0.13850252,0.28683898,0.91729707,-0.2777454,-0.14480118,0.580515,1.10927,0.74519706,0.013590548,0.9312405,0.23925626,-0.15029146,0.38062218,-0.2076115,-0.6824236,0.2681494,0.35084596,-0.28933537,0.24471009,0.036915433,-0.08630774,0.49236956,-0.34767297,-0.03789642,-0.12917113,0.36835328,0.306526,-0.008197705,-0.49865803,-0.1824147,-0.13144825,-0.11992681,0.24989724,0.15272033,-0.18979758,0.3836554,-0.009958953,1.3510442,0.08442076,0.006623482,0.044884022,0.47824708,0.29168996,0.041107375,-0.004047712,0.50076365,0.17986786,0.14986181,-0.49214745,0.19741626,-0.20133899,-0.61134917,-0.06609095,-0.35164902,0.08858033,0.051058054,-0.47240117,-0.17715324,0.031175025,-0.11015543,0.33534387,-2.8106925,-0.046686824,-0.13881224,0.45381236,-0.3116981,-0.322679,-0.06113008,-0.40817067,0.34206614,0.32320413,0.5066394,-0.57280535,0.21260597,0.18757443,-0.5026954,-0.04459158,-0.510494,-0.15942316,-0.1747539,0.48346078,0.13596213,0.015986234,0.1885569,0.0783355,0.64018935,-0.13687958,0.17830104,0.2606357,0.27180114,-0.11660548,0.4165345,-0.15221836,0.58938295,-0.33200327,-0.1508033,0.23538353,-0.52450675,0.18454204,0.11187339,0.19208546,0.41973063,-0.2823998,-1.0356089,-0.56058073,0.13069613,1.3006972,-0.27493343,-0.58284515,0.18298252,-0.40099216,-0.25545767,-0.07516926,0.39062735,-0.088791795,0.022634313,-0.8185896,0.143673,-0.09159743,0.19101058,0.03484676,-0.020507539,-0.3162626,0.6618566,-0.12677439,0.44894123,0.33246434,0.075507425,-0.38816556,-0.3775957,-0.16289097,0.93900365,0.2719809,0.10793524,-0.06475892,-0.24248855,-0.18526131,-0.09630827,0.12504208,0.5627497,0.41616902,0.009807713,-0.0017071068,0.19926806,-0.08588349,-0.017487438,-0.097405374,-0.47710562,-0.1576183,0.008306503,0.6162775,0.69095165,-0.32066637,0.3141302,-0.23802312,0.34964725,-0.13444792,-0.46926108,0.49766722,0.9987922,-0.16944052,-0.3724672,0.7264189,0.6131647,-0.4453912,0.34729186,-0.5631097,-0.35342136,0.5181332,-0.20353003,-0.31613985,0.2042616,-0.27876577,0.07695343,-0.72437096,0.25880256,-0.37749398,-0.3527756,-0.554026,-0.11872086,-3.6257517,0.22415347,-0.29705665,-0.25053814,-0.2739013,0.04836579,0.102378815,-0.5862033,-0.37657547,0.24435662,0.13871454,0.4207205,-0.010417104,0.13046475,-0.2400857,-0.20586263,0.045829486,0.22324008,0.14106672,0.23972909,-0.10505318,-0.5421065,-0.15002684,-0.13211466,-0.47304752,0.2607359,-0.7781642,-0.48113123,-0.13977589,-0.63102907,-0.32505855,0.6047817,-0.41331577,-0.063975014,-0.17887026,0.14657886,-0.18336399,0.1686977,-0.07583674,0.27493268,-0.021306926,-0.05583558,0.23651321,-0.31474555,0.2520062,0.11818317,0.46444955,0.32678422,-0.018020004,-0.0058492622,0.5747587,0.63680995,0.08843661,0.8518779,0.59674716,-0.014713119,0.35872182,-0.21860236,-0.20112745,-0.503779,-0.35319805,-0.06238957,-0.37673786,-0.22160245,-0.015859762,-0.34691286,-0.67994094,0.57865316,-0.08354908,0.074425176,0.020655636,0.35586727,0.6357397,-0.31981948,0.049779523,-0.15297301,-0.18180095,-0.56561023,-0.3046724,-0.53072816,-0.35794553,0.10656792,0.7541607,-0.049606916,-0.017730681,-0.15481709,-0.24576366,-0.0061053634,0.09773617,0.023988986,0.18960293,0.4848237,-0.07524604,-0.66280675,0.43875346,-0.1654536,-0.24725436,-0.46236134,0.3071269,0.47439983,-0.58980685,0.8754556,0.4732387,0.008451874,-0.13864714,-0.4147296,-0.2677831,-0.010206307,-0.1383032,0.3513756,0.25729918,-0.92804223,0.34313604,0.28494287,-0.4544498,-0.63070655,0.42068323,-0.15867944,-0.31743166,-0.23515594,0.39038,0.040364124,-0.027632883,-0.14363128,0.104574084,-0.46988487,0.19117634,0.18838654,0.01815784,0.5040943,-0.1327852,0.05809726,-0.8331706,-0.051405746,-0.49618936,-0.26830545,0.4087403,0.13574244,-0.028703703,-0.057556406,-0.07963292,0.35140622,-0.3419023,0.10800075,-0.052544426,-0.31337783,0.40860328,0.40565333,0.5143478,-0.4090352,0.52845377,-0.028285764,-0.029391253,0.02590406,0.053329956,0.43406317,0.24210574,0.37834427,0.11751745,-0.065843865,0.3449514,0.6918356,0.12573804,0.6073352,0.090744376,-0.14319569,0.30647466,-0.027076446,0.053731397,0.06102854,-0.47925934,0.10528169,-0.108664654,0.1574005,0.5284908,0.04947916,0.4534441,-0.11583535,-0.27196681,-0.05579142,0.30005208,0.09898924,-1.2275192,0.26660302,0.07547362,0.8367576,0.30845323,0.08754367,0.00017052889,0.7618194,-0.1427209,0.085965425,0.3833842,-0.07515937,-0.46734643,0.59751874,-0.6455344,0.34884346,-0.19170642,0.005236762,0.03711081,0.1202265,0.2962282,0.81159097,-0.14709978,-0.06441563,0.1480007,-0.42068765,0.186502,-0.362883,0.120808445,-0.3828152,-0.37096593,0.4456884,0.61021054,0.39924765,-0.2392451,-0.027204439,0.19482438,-0.041006263,0.1996109,-0.00074345124,0.15593117,0.07713734,-0.85803956,-0.18668057,0.49890053,0.24896522,0.23304193,0.018955627,-0.21476488,0.41107377,-0.16096579,-0.22812836,0.00022497028,-0.4798118,0.10220083,-0.20832002,-0.54350984,0.48872194,-0.2465329,0.19788007,0.1150741,-0.04478268,-0.44168213,0.25315854,0.07459195,0.76423913,-0.06380577,-0.17078651,-0.56777686,0.042225916,0.074614696,-0.0853555,0.24552667,-0.42287782,-0.10302482,-0.30746374,0.3789934,-0.12684815,-0.21376158,-0.20282978,-0.11586419,0.091614,0.57961905,-0.21350093,-0.2232594,-0.28124988,-0.14634925,-0.22842942,-0.45631066,-0.033233497,0.2755981,0.09323895,0.09243444,-0.041960374,-0.12251884,-0.06313978,0.49726304,0.04746894,0.31530514,0.36780426,0.2606158,-0.19484459,-0.07530984,0.28581515,0.49219394,-0.07599031,-0.23191254,-0.26627383,-0.4777008,-0.3402206,-0.09211493,-0.14637429,0.40312386,0.19112796,-0.26011774,0.7745251,-0.24659838,1.1860107,0.023195246,-0.3857073,0.014779049,0.41108355,0.06937584,0.13926657,-0.32784125,0.7475836,0.50106347,0.012797254,0.0045697764,-0.4527807,0.0040864446,0.109407574,-0.17595439,-0.14468378,-0.041917723,-0.62613004,-0.36025926,0.25226894,0.27597204,0.39561927,-0.06125921,0.19130866,0.12619123,0.07920147,0.26573196,-0.35774747,-0.032887027,0.26934198,0.32328862,-0.039052963,0.02937504,-0.36932346,0.34190583,-0.3771095,0.06479915,-0.40562153,-0.033953357,-0.18076442,-0.29803154,0.16684236,-0.14322942,0.3788067,-0.35702923,-0.2022353,-0.12481183,0.54686207,0.17769547,-0.00028371313,0.48851624,-0.13362761,-0.07001098,0.20287709,0.5803124,0.9354065,-0.47037402,0.046417844,0.16986103,-0.35764527,-0.81552035,0.41523778,0.012325431,0.33459413,-0.0749089,-0.15264775,-0.7113715,0.18183704,0.1843077,-0.032060165,-0.11368982,-0.43056592,-0.20364387,0.30707958,-0.45803335,-0.121748604,-0.08812157,0.18770538,0.4782656,-0.2788209,-0.40301585,0.08735559,0.23571365,-0.116115354,-0.36280265,-0.10490253,-0.54777414,0.30700818,0.13379991,-0.34002265,-0.117727935,0.081162885,-0.44269863,0.18231916,0.06292445,-0.3352919,0.017291792,-0.22680211,-0.055909056,0.8121896,-0.15845172,0.29260793,-0.5983382,-0.53080577,-0.9242275,-0.3579093,0.46789145,-0.102323644,-0.046326384,-0.6502714,-0.006601624,-0.036887947,-0.22984,-0.17078441,-0.4496641,0.40526748,0.098118104,0.36927268,-0.035659045,-0.5024551,0.1809128,0.19212162,0.14508815,-0.58160806,0.3298858,-0.05650264,0.9818254,-0.115924954,0.19913864,0.36045098,-0.35525224,-0.25849602,-0.20792985,-0.2984034,-0.46522948,0.08188709 -601,0.67489713,-0.31701237,-0.670028,-0.1011074,-0.28572497,0.0068246573,-0.18065661,0.42666864,0.3952455,-0.24484769,-0.08567484,-0.14912444,-0.029835861,0.13474181,-0.10850787,-0.31004727,0.0796874,0.11016606,-0.656757,0.5689234,-0.5235207,0.20967916,-0.0430562,0.49211287,0.38541102,0.3253953,0.020939944,0.13628477,-0.120033175,-0.16261572,0.206875,0.28915912,-0.60075116,0.15213828,-0.32260808,-0.2831203,-0.06752011,-0.45657778,-0.5181693,-0.8411739,0.40832585,-0.715244,0.43143463,0.0023809671,-0.25385734,-0.0021976605,0.085805036,0.13523723,-0.30008233,-0.096265525,0.17454812,-0.061415665,0.023260929,-0.22158472,-0.14654183,-0.28852475,-0.54226696,-0.071479656,-0.51078033,-0.06494522,-0.39827916,0.15217102,-0.34097457,-0.11095437,-0.1158705,0.6327008,-0.43913418,0.28856522,0.029973209,-0.13482857,0.13189173,-0.68752885,-0.41812265,-0.17853574,0.10850202,0.09364277,-0.38949656,0.35716403,0.19508216,0.30138662,0.004329808,-0.07568532,-0.327111,-0.15185955,0.15418701,0.31048328,-0.06672592,-0.5841541,-0.12967226,-0.21797936,0.34729555,0.26392075,0.28109816,-0.38493058,0.050606586,0.091993704,-0.14465888,0.5306364,0.6479891,-0.21854764,-0.11843432,0.10002342,0.31560242,0.34968415,-0.23841172,0.032628357,-0.05789084,-0.62373495,-0.18578684,0.040049996,-0.11269902,0.6160033,-0.09357995,0.30736157,0.5919688,-0.28046933,-0.23055807,0.19708002,0.094498426,-0.042682715,-0.41967195,-0.30313662,0.17718157,-0.5338277,0.09138855,-0.16017553,0.66710246,0.2278341,-0.6075138,0.3097173,-0.4355352,0.15352304,0.018568857,0.5637045,0.826911,0.42339453,0.44735062,0.76615375,-0.16828565,0.023218356,-0.1669121,-0.25330424,0.05127924,-0.20085056,0.06961328,-0.3540355,-0.12761527,-0.1000887,-0.037392303,0.21635142,0.66753244,-0.47722885,-0.30362052,0.111170344,0.70563745,-0.2587421,0.10558601,0.77681625,1.0899692,1.0434084,0.1329631,1.1354189,0.07348268,-0.100563355,0.15507603,-0.1515608,-0.7249212,0.32569677,0.16327326,0.111394964,0.09738337,-0.14809285,-0.07711977,0.23829073,-0.49035558,-0.023985133,-0.025938753,0.5383507,0.14823535,-0.018611655,-0.23568249,-0.39844203,-0.036274612,0.08294684,0.039852016,0.28360313,-0.29468873,0.3681615,0.10423911,1.458862,-0.046736337,-0.045389183,0.060049754,0.730526,0.32091692,-0.2194374,-0.04734026,0.4284721,0.2045798,0.039271936,-0.5343894,0.09816407,-0.32832897,-0.4248091,-0.05422502,-0.46188802,-0.21478888,-0.09600389,-0.3769856,-0.2379829,-0.095362194,-0.2932934,0.47780263,-2.7834575,-0.2693731,0.0021699667,0.36233872,-0.15719451,-0.32770005,-0.30816543,-0.5036654,0.4430805,0.09848455,0.49552512,-0.6836107,0.13685277,0.5558264,-0.5548308,-0.11309979,-0.55102277,-0.09558955,0.018843014,0.3370451,-0.09126503,-0.0059390515,-0.08910808,0.14577031,0.48541188,0.092117764,0.2902735,0.37709934,0.31297934,-0.13786456,0.55158514,-0.11037277,0.32708308,-0.3778994,-0.27509767,0.31954914,-0.4482752,0.27155143,-0.28127348,0.09057167,0.6691193,-0.6202365,-0.80457985,-0.4534378,0.13586095,1.0418534,-0.16381629,-0.5662066,0.32638842,-0.7303166,-0.15866135,-0.17047375,0.5816611,-0.13754109,-0.013030833,-0.6976031,-0.04774876,-0.06441443,0.10704045,-0.013958301,0.029756397,-0.2910056,0.57631147,0.017519219,0.5056823,0.2719044,0.067899466,-0.6091609,-0.5086133,0.24073462,0.742317,0.41264945,0.07957034,-0.18889731,-0.1071472,-0.32600686,-0.14182118,0.10717295,0.7619516,0.6742064,-0.19098347,0.22028258,0.32602715,-0.016134135,0.0021002162,-0.19398327,-0.17658049,-0.26513353,0.03657744,0.58587205,0.78569674,-0.13340798,0.36595532,0.14022326,0.2364879,-0.14789161,-0.51881063,0.44968805,1.0505064,-0.21158957,-0.32877845,0.41998267,0.37574935,-0.362585,0.4514489,-0.4973673,-0.46525627,0.4554495,-0.089493155,-0.34091583,0.3250894,-0.395351,0.019671362,-0.57287085,0.33981895,-0.4416749,-0.38829315,-0.44990793,-0.23419537,-2.5288367,0.15590528,-0.19714081,-0.06820285,-0.26834872,-0.37429327,0.07124546,-0.45316684,-0.6761044,0.17194219,0.11310765,0.7958165,-0.19696023,-0.13324043,-0.16982722,-0.4959253,-0.44476905,0.16119394,0.21771815,0.5516115,-0.08423639,-0.4153694,-0.083259135,0.027425736,-0.40021026,0.042668145,-0.45474857,-0.4917277,-0.11165902,-0.5353066,-0.5184027,0.6272743,-0.114709824,0.01813128,-0.13788255,-0.056855477,0.069797635,0.23247465,0.17150977,0.21067701,0.027325869,-0.054341055,0.052846,-0.18135318,0.022781488,-0.073556624,0.2158218,0.34340614,-0.08208561,0.17318973,0.31073666,0.73359513,-0.23817556,1.0083066,0.2182932,-0.080909014,0.35958558,-0.1493205,-0.47682458,-0.5338067,-0.20835969,0.03918712,-0.52116835,-0.29219723,-0.07335084,-0.3623628,-0.6642703,0.5787013,0.078273065,0.19748424,-0.006144684,0.29045156,0.52537614,-0.092163764,0.04062061,-0.083160624,-0.17140344,-0.6120655,-0.28536218,-0.74674773,-0.49093702,0.16935347,0.8378964,-0.3575319,-0.100666985,0.33786228,-0.30188593,0.039232574,0.2330385,-0.088920005,0.07688122,0.5305192,-0.10223319,-0.4390531,0.39447612,-0.1269629,-0.094521925,-0.56825066,0.42014194,0.6034893,-0.62115324,0.7213624,0.2857719,0.07544617,-0.45306614,-0.5741509,-0.13595295,-0.09647888,-0.123264164,0.5494838,0.3075414,-0.8397675,0.43580368,0.30684876,-0.14189288,-0.7328421,0.57252365,-0.115567766,-0.34463358,-0.19777827,0.48584712,0.16050817,0.06760029,-0.23048995,0.34088498,-0.42426834,0.34141237,0.22965397,-0.23828883,0.30422056,-0.24798043,-0.33214796,-0.6907197,-0.06077555,-0.48120037,-0.35173136,0.3509035,0.011192182,0.09684887,0.16650122,0.1710119,0.36501065,-0.22308064,0.06483001,-0.19122875,-0.195256,0.36146963,0.529968,0.6193569,-0.35898674,0.6027763,0.08998333,-0.19208536,0.21159342,0.17925772,0.16695884,0.025022447,0.41486788,0.06803739,-0.2589759,0.1631305,0.8290684,0.21356404,0.36167458,-0.011676408,-0.027704164,0.18455686,0.084702596,0.38369042,-0.036510095,-0.5624577,-0.0068713725,-0.3410745,0.24316815,0.41566992,0.23046553,0.22960497,-0.04988417,-0.23425376,-0.06585343,0.34517854,-0.10248751,-1.4778116,0.31408602,0.16204712,0.88030267,0.5304576,-0.011031121,-0.18489552,0.5923028,-0.01021209,0.054037184,0.31126156,0.18659747,-0.4013772,0.48769346,-0.5570013,0.6059987,-0.00079390034,0.04388742,0.069871806,0.056861386,0.6060602,0.7265108,-0.12954807,-0.076777585,0.12106238,-0.26234984,0.32381773,-0.36993933,-0.024460532,-0.60473496,-0.37307167,0.6900941,0.5295282,0.2881317,-0.19529134,0.016157746,-0.044924285,-0.25678423,0.18073452,0.0054724887,0.071433574,-0.20008753,-0.6643487,-0.05541232,0.42928332,0.0064458884,0.08884332,0.13586354,-0.08510086,0.19020551,-0.053403817,0.15893482,-0.1072474,-0.64039296,-0.08552787,-0.38363403,-0.36463994,0.47067043,-0.11641677,0.2153962,0.31969258,0.061946005,-0.23480122,0.41373056,0.029148698,0.6135228,-0.26239187,-0.05886744,-0.3775874,0.16740689,0.20731896,-0.22124657,-0.034047037,-0.18489975,0.088061504,-0.59846586,0.5206385,0.08584694,-0.14997739,0.021304578,-0.044751152,-0.029887617,0.61138844,-0.17199977,-0.2183314,-0.049556606,-0.1351532,-0.30880302,-0.2041283,-0.015370913,0.21959098,0.24457502,0.036574148,-0.1915709,-0.081064254,0.17590396,0.35761094,0.034022212,0.32353008,0.29791188,0.25317192,-0.3644807,-0.11077489,0.24450576,0.6927277,0.034618475,-0.056339957,-0.35791188,-0.5356666,-0.54268944,0.28358847,-0.11120363,0.3312147,0.15118936,-0.15939663,0.7248873,-0.107658386,1.0539589,0.122167885,-0.32605433,0.17190804,0.6356527,-0.10221362,-0.084693074,-0.16171332,0.7867978,0.42908984,-0.2317452,-0.12667005,-0.29635423,0.20051181,0.15140039,-0.24275742,-0.12163929,-0.119822115,-0.63126814,-0.08415134,0.048812643,0.29146582,0.13302463,-0.3028333,0.006607432,0.35742182,0.029584197,0.22272998,-0.49734372,-0.16226003,0.3244892,0.25470552,-0.05273404,0.13574259,-0.39082038,0.33521113,-0.47927773,0.12687086,-0.29902938,0.28884917,-0.14921927,-0.40429875,0.23483168,0.03386309,0.36359364,-0.4729864,-0.3134588,-0.3360112,0.29410398,0.18258461,0.2008607,0.53563195,-0.22366214,-0.09134484,0.039295517,0.5183425,1.117518,-0.15386304,-0.15806523,0.3472231,-0.43994898,-0.6405642,0.2682175,-0.5115494,0.17769386,0.15996368,-0.10022989,-0.589303,0.2685679,0.14273298,0.11589203,0.025449622,-0.9010446,-0.14348868,0.25226653,-0.26859692,-0.05475332,-0.43817395,-0.066472344,0.59899974,-0.24711184,-0.24203667,0.010677692,0.16554059,-0.19766352,-0.6269739,0.009395867,-0.38833183,0.35316187,-0.006345935,-0.21646714,-0.19290237,0.10063663,-0.59812415,0.1541992,0.015683427,-0.27767575,0.08778831,-0.359953,-0.010875685,0.95561385,-0.38908327,0.26222134,-0.057316467,-0.51840675,-0.72473204,-0.018288381,0.22247446,0.021134699,0.04263778,-0.67195815,-0.11764705,-0.17535087,-0.052023515,-0.09483874,-0.3642155,0.49994045,-0.020542664,0.37935683,-0.15975448,-0.8484945,0.30022764,0.1096984,-0.23597428,-0.40701967,0.5536219,-0.126934,0.5646198,0.14667909,-0.05035177,0.25925136,-0.5495796,-0.019143302,-0.22720851,0.009718187,-0.6248659,0.13769878 -602,0.29488343,-0.0839818,-0.37943363,-0.0503967,-0.31755733,0.13379732,-0.17399146,0.23044126,0.059045833,-0.15114151,-0.24072352,-0.08657117,0.034130774,0.4447789,-0.11829192,-0.64918154,-0.09033705,0.051401954,-0.7904042,0.36422715,-0.6491703,0.43107647,0.2066147,0.25611737,0.1830809,0.43251944,0.35326093,-0.1918229,-0.21735807,-0.13684694,-0.23272687,0.10744957,-0.48201382,0.013324722,-0.16611412,-0.27492344,0.14652859,-0.549133,-0.19038206,-0.5491845,0.21936385,-0.7112754,0.52227855,-0.045102775,-0.04242364,0.08394243,0.28712603,0.38909766,-0.3673788,0.053332545,0.23621836,-0.22940935,-0.19339012,-0.18207884,-0.11546338,-0.27715233,-0.5408062,-0.024474198,-0.65783244,-0.40854582,-0.17915486,0.096352115,-0.3165618,0.09299024,-0.03309761,0.22134545,-0.38061315,-0.09006845,0.30987003,-0.19929151,0.043349646,-0.5375431,0.061516885,-0.04252638,0.5305898,-0.13057083,-0.018116355,0.52533036,0.40545043,0.3809683,0.21462926,-0.2473451,-0.20841618,-0.20175555,0.14800106,0.6331329,-0.07460156,-0.2650581,-0.13885693,0.20969139,0.25970837,0.41939119,0.02158513,-0.10248574,-0.09796073,-0.046183977,-0.26007923,0.48630148,0.48257127,-0.37185898,-0.38505256,0.37111428,0.5359856,0.24788567,-0.12168854,-0.06038696,0.032755386,-0.584709,-0.1543571,0.19250251,-0.07995381,0.41265315,-0.117943965,0.2801634,0.89760745,-0.14843982,0.13847505,-0.17768496,-0.048774634,-0.1770367,-0.15968564,-0.12718067,0.060690038,-0.630038,-0.041457653,-0.2293515,0.8106357,0.13739389,-0.62388635,0.39784306,-0.60339355,0.16499226,-0.13254008,0.547004,0.6506879,0.34734294,0.2850993,0.8314856,-0.33837596,0.21265084,-0.12323252,-0.4766217,0.071552604,-0.25784692,0.1654924,-0.53935945,0.09886362,-0.043950733,0.09372368,0.116472,0.38160005,-0.56869614,0.0059956987,0.15824296,0.8441749,-0.37442163,-0.05339745,0.7378532,1.0545496,1.0295368,-0.032219633,1.129912,0.26944277,-0.29095644,0.119752556,-0.4138867,-0.52306217,0.13722774,0.47751603,0.01948676,0.2583407,-0.091425516,-0.10661518,0.2849137,-0.40579832,0.05636598,0.025644522,0.14910768,0.1681708,0.00643275,-0.41240093,-0.27209988,-0.12688926,-0.12920764,0.14537162,0.29144388,-0.24499099,0.42441592,-0.121830896,1.3247473,0.03550807,0.11426064,-0.042970065,0.5858477,0.23319595,-0.03468395,-0.1648058,0.31657973,0.3934965,-0.051925343,-0.60908395,0.097290434,-0.37843937,-0.3640073,-0.15183122,-0.4710817,-0.123243175,0.24038042,-0.30107602,-0.14872108,-0.05387088,-0.17934538,0.52113944,-2.9893079,-0.25491494,-0.14640836,0.3080548,-0.3017774,-0.1632038,-0.075310625,-0.59895664,0.33756363,0.22563334,0.53153014,-0.57441217,0.4083281,0.3386118,-0.54031295,-0.24478467,-0.61122406,-0.09412306,-0.025918337,0.33935544,-0.04477132,-0.12701221,-0.16015564,0.086890906,0.6437277,0.044480268,0.08797784,0.4631637,0.38845837,0.21292546,0.5634989,0.06498785,0.6271592,-0.34452474,-0.14636989,0.17508216,-0.1920649,0.23579264,-0.2527354,0.089667894,0.42948645,-0.50496423,-0.8071393,-0.53527325,-0.2487132,1.0079005,-0.33955115,-0.2761738,0.2046945,-0.024015069,-0.06757452,-0.0034634033,0.52913225,-0.07797205,-0.12506856,-0.5174111,0.072766274,0.009907433,0.022760129,0.040173132,-0.050010018,-0.3079299,0.66361046,-0.032952357,0.5110683,0.1363618,0.2999819,-0.043632977,-0.25139728,0.095389225,0.80411875,0.34680375,0.008866966,-0.05600367,-0.3001121,-0.19755459,-0.3813019,0.11083407,0.4281386,0.7873367,0.041988928,0.123625085,0.3486801,-0.1529009,0.12041439,-0.030783387,-0.16394752,-0.055803917,-0.12661497,0.45682037,0.566595,-0.07620622,0.55635315,-0.16386493,0.2787081,-0.082560584,-0.5551096,0.62364274,0.5068953,-0.10627951,-0.016264567,0.44743994,0.4352358,-0.3068752,0.389414,-0.5151509,-0.3127981,0.8188913,-0.19413309,-0.35402176,0.16730806,-0.21357228,0.02097311,-0.789428,0.24142446,-0.27129593,-0.4103136,-0.31571046,-0.10387595,-3.6597874,0.1675354,-0.25945616,-0.047650453,-0.1873767,-0.06365936,0.22786897,-0.5972183,-0.41286838,0.11694689,0.20702836,0.7171094,-0.060670424,0.17568977,-0.14676805,-0.18053599,-0.22767141,0.10534657,0.121640645,0.37171414,-0.119597845,-0.367005,0.11558143,-0.13289729,-0.5484579,0.23122635,-0.48442045,-0.49533704,-0.12936531,-0.43521208,-0.30653858,0.7058082,-0.3618434,0.07154314,-0.19713923,0.11378738,-0.17716761,0.14080639,0.22702734,0.13111417,0.15627508,-0.09455838,0.24711587,-0.41259366,0.59322476,0.0211905,0.49041727,0.16305646,0.10837873,0.16473071,0.45688835,0.46186352,-0.053005293,0.86646074,0.37496102,-0.059710924,0.18703605,-0.30585152,-0.15702848,-0.44373456,-0.4635249,-0.0657466,-0.37817448,-0.5463613,-0.04731202,-0.2787107,-0.7244977,0.4958891,0.020454288,0.29336298,-0.12129576,0.29004827,0.3756407,-0.24340127,-0.030127414,-0.07012064,-0.0949661,-0.46557257,-0.086102225,-0.65567327,-0.5384731,0.078770466,0.9138721,-0.33172086,-0.0032513738,-0.19309014,-0.2994355,0.05000124,-0.03701224,0.085212216,0.31574965,0.334125,-0.16464584,-0.7018989,0.5192978,-0.20124926,-0.12759487,-0.59496796,0.13060075,0.6528405,-0.66629183,0.39681756,0.40341467,0.13031253,0.043082602,-0.40458933,-0.10351409,-0.0025041462,-0.24837317,0.23602626,-0.03814588,-0.7794787,0.5479357,0.17808685,-0.5704862,-0.7721046,0.30398598,0.038690805,-0.15897103,0.11392535,0.13095716,0.320468,-0.1498514,-0.25449857,0.14956303,-0.49612704,0.40436876,0.12993297,0.02190001,0.48059738,-0.23017076,-0.46427324,-0.5327782,-0.022112114,-0.44197935,-0.1819335,0.32041207,0.06171785,0.13606542,0.22314903,0.1457787,0.36286172,-0.3038524,0.101931326,0.07105077,-0.3934039,0.21567944,0.35357,0.30734903,-0.4384478,0.573114,0.047362883,-0.100995556,0.15219595,0.04064354,0.3672029,0.12208394,0.27281368,-0.05496413,-0.2773216,0.37894562,0.66697973,0.11555941,0.26972967,0.19936053,-0.17913835,0.4127599,-0.053459708,-0.06093549,0.141968,-0.45653707,-0.07200775,-0.018715095,0.12371567,0.50717384,0.32044983,0.30655092,0.09984978,-0.23521715,-5.133152e-05,0.07652119,-0.13429819,-1.0460893,0.45135975,0.20324954,0.76834756,0.30366942,0.05199762,-0.15781261,0.6728846,-0.30456698,0.111179605,0.28774288,0.100790076,-0.45504013,0.69930434,-0.63265485,0.6004194,-0.09570292,-0.13364857,0.038923644,0.06894483,0.27221066,0.8628132,-0.21874084,0.079518594,0.020293497,-0.31489375,0.1019863,-0.33031178,-0.013712795,-0.570067,-0.23639944,0.6189438,0.20945987,0.3092513,0.00496736,-0.088145,0.068776324,-0.19090529,0.23278162,-0.08962553,0.081715256,0.059216063,-0.611544,-0.27191454,0.53731334,0.02172875,0.25076503,-0.15268023,-0.17567042,0.10223239,-0.28463498,-0.0027381857,-0.026147366,-0.60478663,0.09253664,-0.2129206,-0.539684,0.34291902,-0.25186506,0.31453678,0.16014925,-0.047148585,-0.091930404,0.34486714,0.20913826,0.78066176,-0.11326858,-0.36717728,-0.40575734,0.02605455,0.2837312,-0.28546494,0.20962617,-0.29472378,0.004669098,-0.62817967,0.6816519,-0.2624523,-0.3907875,0.13292967,-0.17420143,-0.022239225,0.48254043,-0.14338307,0.038285635,-0.03562665,-0.21731663,-0.37003607,-0.0015901128,-0.35872588,0.11227064,0.39097685,-0.025205966,-0.17047115,-0.2788156,-0.118072085,0.5308839,-0.058713153,0.38002524,0.1057508,0.12558047,-0.21506211,-0.067940675,0.08727001,0.3444685,0.10956735,-0.060384545,-0.53264886,-0.28401974,-0.2344261,0.25900936,-0.1226817,0.20559852,0.035930283,-0.3011579,0.8461488,-0.17611521,1.175496,0.22924945,-0.30909395,0.12551314,0.51129997,-0.05045111,0.10784253,-0.37675682,0.9117538,0.4994023,-0.014896512,-0.1158464,-0.46603182,-0.010002805,0.43176657,-0.40751088,-0.1767949,-0.04114,-0.4564594,-0.5349247,0.2684514,0.11983533,0.22273558,-0.035254605,0.020687493,0.094931886,0.14586487,0.44816166,-0.5788576,-0.27912152,0.24682035,0.21382026,-0.094268255,0.2783343,-0.45381922,0.5209512,-0.7081283,0.15712725,-0.338193,0.095625795,-0.16022852,-0.30514362,0.21272214,0.11788514,0.38668105,-0.13192275,-0.53895867,-0.055864,0.37945536,0.05180305,0.1964014,0.6619046,-0.3276393,-0.10657134,0.015760962,0.56294566,1.3320968,-0.32798836,0.018721374,0.33007586,-0.33871594,-0.587126,0.39842197,-0.3038393,-0.1516392,-0.09720114,-0.34604466,-0.3669419,0.22389951,0.19184358,-0.00013680458,0.09390853,-0.39261538,-0.26541576,0.2084581,-0.28340694,-0.314979,-0.31630066,0.41590947,0.70587784,-0.25991836,-0.23313943,0.11504397,0.45791194,-0.20595632,-0.4334393,0.035115823,-0.19095668,0.25734892,0.08374974,-0.18413812,-0.06153838,0.21762456,-0.3836598,0.04288676,0.08940036,-0.43690532,0.033496227,-0.19423264,-0.05370059,0.8049417,-0.23070015,0.023223173,-0.6893364,-0.43110326,-0.84725267,-0.5087226,0.26534125,0.13706213,0.015024042,-0.4058573,-0.018918466,-0.022970628,-0.16179578,0.10389112,-0.55480444,0.3460224,0.0978614,0.35145804,-0.25868368,-0.73769295,0.079297796,0.04488025,-0.1828567,-0.6274019,0.5134451,-0.030611511,0.8379816,0.09063903,-0.17283204,0.10065718,-0.25024214,0.22567914,-0.424101,-0.23021092,-0.7852128,0.11188378 -603,0.34195268,-0.2947987,-0.48586664,-0.041148815,-0.14109696,-0.10442039,-0.2562921,0.3771586,0.09083266,-0.4778846,-0.09373093,-0.21867876,0.047056124,0.23503846,-0.32381642,-0.8218512,-0.0033171503,0.24851522,-0.55381316,0.6885018,-0.46266288,0.07040899,-0.10905191,0.4413753,0.26405478,0.063154206,0.35566476,-0.19998561,-0.117264144,-0.42558575,-0.09819874,0.40963352,-0.77863026,0.5137623,-0.038374435,-0.3617605,0.13053142,-0.49292564,-0.21564072,-0.92428917,0.19107994,-0.90899736,0.4880586,0.17856152,-0.31828862,0.2890123,0.29500133,0.3134955,-0.35333064,0.087763764,0.24989223,-0.23106895,-0.18054114,-0.35775587,-0.049332906,-0.37221554,-0.49051186,0.059838735,-0.3786526,-0.2918001,-0.36096126,0.36238965,-0.31962574,-0.09397802,-0.05801077,0.6022993,-0.48229378,0.14284922,0.057857513,-0.21807376,0.34479138,-0.7357815,-0.1693737,-0.23455077,0.27113172,-0.2435738,-0.27627704,0.15670377,0.35619807,0.24627422,0.10758469,-0.122508734,-0.15172498,-0.29533455,0.2705713,0.4477735,-0.31476277,-0.8041288,-0.13540526,-0.0983196,0.101439625,0.18344112,0.17925833,-0.6057446,-0.1396538,-0.06644673,-0.30916336,0.5426086,0.4050371,-0.25075415,-0.19366713,0.20611845,0.4877411,0.2025887,-0.098763116,-0.049620498,0.060543787,-0.7025794,-0.17547102,0.29395697,-0.19679219,0.44897336,-0.20361151,0.22816633,0.7956997,-0.3463752,-0.08011531,0.13973597,0.14530541,-0.06998314,-0.51160073,-0.40008324,0.37753898,-0.49605644,0.20436606,-0.25361225,1.1295815,0.033700358,-0.6947861,0.28038523,-0.6939728,0.022278348,-0.24794032,0.52400583,0.3757157,0.4119104,0.28285244,0.63117814,-0.453522,-0.07535105,0.1277838,-0.46431875,-0.1183868,-0.11863067,-0.23102418,-0.43536803,0.056517676,-0.17471696,0.1740993,-0.035369396,0.44657257,-0.45465127,-0.039781414,-0.06786748,0.7593016,-0.39644718,0.005883271,0.7009788,1.1167158,1.0058125,0.26378065,1.4578875,0.0786847,-0.1714862,-0.09718652,0.13282229,-0.8754248,0.36505082,0.60892946,-0.53910583,0.031227736,0.11266158,0.10620988,0.32087106,-0.4230005,0.063430205,-0.3558788,0.42132872,0.023733051,-0.32474893,-0.28646228,-0.302614,0.11055576,-0.011148212,-0.18340403,0.13266426,-0.09200042,0.33751562,0.21371995,1.2313911,-0.1574966,0.09861324,0.103455976,0.33575833,0.25418276,0.07697799,0.110017516,0.39834413,0.44373825,0.13746077,-0.6555881,0.18126571,-0.0678027,-0.45591927,-0.20455457,-0.20594145,-0.031961527,0.11882263,-0.30445123,-0.20740904,-0.22340254,0.023318319,0.58077925,-2.4865224,-0.05349557,-0.19352742,0.31480083,-0.19858931,-0.28831273,-0.011430424,-0.4361398,0.6056455,0.27981722,0.56504005,-0.63826543,0.34945595,0.4736902,-0.55517364,-0.29564303,-0.68307555,-0.2622578,-0.17817162,0.62330395,0.07612117,-0.072509795,-0.08313918,0.03127697,0.5783446,-0.024180325,0.17101549,0.33862665,0.43080768,0.033900872,0.57691616,0.19628538,0.6049605,-0.27555415,-0.28021702,0.39657623,-0.29746583,0.25265923,0.09533532,0.021803632,0.4898877,-0.44358614,-1.0041037,-0.90308344,-0.36007246,1.0223836,-0.26130056,-0.52008694,0.2597717,0.11825559,-0.17475374,0.08926088,0.22426198,-0.106592156,0.1365202,-0.850079,0.09867857,0.058479037,0.2977707,0.17084417,-0.1835079,-0.57617545,0.74584585,-0.04833901,0.43363798,0.5675342,0.16204196,-0.45929363,-0.5332082,-0.074847415,1.2381275,0.38687354,0.15236478,-0.14223541,-0.1680335,-0.29500458,-0.1680616,0.098797075,0.7498712,0.65467405,-0.06426839,0.1223816,0.3409557,-0.13315088,0.08393279,-0.21919008,-0.493106,-0.23706824,0.104197,0.59151644,0.54509926,-0.112125084,0.45869264,-0.013348273,0.43474483,-0.021593923,-0.3924835,0.5749427,1.5008923,-0.12599124,-0.35499552,0.7384583,0.5795794,-0.26513377,0.3823408,-0.44585907,-0.36597157,0.6805172,-0.18499504,-0.49237338,0.1009989,-0.36145985,0.09761446,-0.94501567,0.4961333,-0.6321145,-0.49736518,-0.7087311,-0.21066743,-3.2768297,0.3292436,-0.5085953,-0.13022093,-0.36581343,-0.11222708,0.2604763,-0.6400026,-0.41983184,0.1547434,0.17950493,0.491205,-0.17476149,0.2886674,-0.22908086,-0.012031403,-0.06215867,0.17366561,0.1563318,0.057117984,-0.035797067,-0.39383557,0.09376658,0.119267724,-0.2581675,0.14369994,-0.69721913,-0.56618756,0.05653913,-0.5830032,-0.4163047,0.68217385,-0.6307073,-0.14936961,-0.06422593,0.09386351,-0.2552829,0.35968247,0.114155345,0.25121364,-0.10488909,0.019253438,-0.11251447,-0.31841823,0.38287175,0.0509889,0.21628651,0.07413226,-0.2570882,0.12259882,0.4284261,0.53370357,0.08851201,0.81051195,0.46987346,-0.0877208,0.22173166,-0.31977057,-0.5055275,-0.70137143,-0.41225395,-0.06182164,-0.4172536,-0.37725127,-0.011257941,-0.2800257,-0.7576287,0.6774215,0.138416,-0.035455108,-0.07766697,0.33144796,0.30653262,-0.006518884,-0.1106792,-0.0746476,-0.14207548,-0.5741304,-0.10362626,-0.6719627,-0.41047096,0.019596238,0.8796144,-0.38810122,-0.021146584,0.11166153,-0.3049715,0.048492488,0.2242267,-0.23652361,0.34138444,0.61981946,0.034359727,-0.70491827,0.5383546,0.015927374,-0.24060498,-0.52291465,0.19944693,0.6601286,-0.6631699,0.6386142,0.4831437,-0.02585308,0.05002339,-0.36257744,-0.13731562,-0.009512869,-0.20595446,0.5082995,0.18307662,-0.6897209,0.6078602,0.44397992,-0.21484135,-0.8354339,0.57339925,-0.023955248,-0.33849746,0.083789565,0.50182885,0.13034703,-0.05997403,-0.15487793,0.4382145,-0.38361323,0.34939867,-0.06854194,-0.17991652,0.12054365,-0.1615846,-0.21580702,-0.8318519,0.09014417,-0.5724581,-0.40371168,0.26982677,0.06676652,-0.21476096,0.2682484,-0.073059134,0.3568648,-0.34452918,0.20282143,-0.091260746,-0.26911655,0.39639112,0.5713441,0.36978543,-0.42082623,0.6030722,0.050357398,-0.0083478745,-0.20230232,0.24946551,0.42056894,0.10571547,0.49341413,-0.15235755,-0.020486714,0.4973357,0.70743024,0.17952631,0.68885875,-0.09047565,0.07245522,0.3229636,0.1816544,0.45943537,0.13173513,-0.6185484,0.04981682,0.0005192431,0.16714849,0.6149929,0.13625924,0.37558565,0.007719633,-0.43306157,0.010978439,0.374827,0.24588604,-1.1359614,0.46229994,0.26815173,0.6546989,0.6602421,-0.1744668,0.26272488,0.82672656,-0.10078283,-0.045477737,0.3628732,0.09406969,-0.38896644,0.5798659,-0.6853718,0.23455815,-0.39882565,0.029377175,-0.0923467,-0.058457576,0.2492906,0.68931216,-0.17210838,0.019963438,-0.07069835,-0.411943,0.1629199,-0.5811968,0.09663237,-0.20428146,-0.31641394,0.64667225,0.7129224,0.29145855,-0.27749676,0.03085971,0.30021355,-0.19737712,0.21841884,0.08011806,-0.040689234,0.11793933,-0.9338219,-0.08195728,0.7334041,0.04335371,0.15766735,-0.13133274,-0.20215009,0.57156426,-0.22004405,0.017968893,-0.16751233,-0.6195007,0.1181706,-0.26592222,-0.37140167,0.3832876,-0.30844924,0.1098038,0.25526515,0.051824108,-0.20173043,0.25861147,0.2264068,0.7828762,0.10445388,-0.13805038,-0.46371374,0.0895307,0.107593305,-0.14848495,-0.10283401,-0.34885094,0.03657283,-0.7725907,0.44865322,-0.14769278,-0.2617816,0.0887289,-0.16780023,-0.16739446,0.5368023,-0.016521601,-0.1032867,0.15698323,-0.16991693,-0.065877944,-0.32547048,-0.15662585,0.2509774,0.3283704,0.2789133,-0.12927018,-0.19007164,-0.5001066,0.32936442,-0.010768817,0.5744615,0.29137346,0.10330898,-0.16040218,-0.21313332,0.11437438,0.586899,-0.17956656,-0.094350554,-0.023774229,-0.5137705,-0.17916268,-0.04505122,-0.23234501,0.18831004,-0.00506064,-0.42670926,0.83834857,-0.07934788,1.2573453,0.06375451,-0.50224626,0.11785464,0.6122128,-0.0713065,-0.089837104,-0.29149464,1.0215095,0.57159,-0.09268682,-0.03813291,-0.55311257,-0.18100652,0.0068538296,-0.18160215,-0.05760256,0.040898442,-0.5047462,-0.41275576,0.21016861,0.32570276,-0.049223613,-0.0697526,-0.13640219,0.3152678,0.029181266,0.44373325,-0.64429307,0.017812403,0.095933706,0.22402762,-0.00808796,0.10064952,-0.5045049,0.53196925,-0.5640428,0.22313985,-0.49943846,0.17808022,-0.29745463,-0.052238606,0.11394871,-0.209828,0.3216293,-0.37825367,-0.21119738,-0.104991384,0.48057356,0.17085093,0.19286384,0.82029307,-0.29860634,0.27801073,0.0802191,0.5008822,0.94610506,-0.42105684,-0.16485348,0.421393,-0.43113545,-0.4207199,0.33063138,-0.3740308,-0.07768735,0.04867855,-0.30871043,-0.6462176,0.11394734,0.22345716,0.2050047,-0.057448328,-0.8565439,-0.07217575,0.49028328,-0.32986638,-0.30990767,-0.29715535,0.29082167,0.63047004,-0.42214498,-0.48786032,-0.018931838,0.04658167,-0.09573905,-0.6093212,-0.17281131,-0.4522158,0.5825676,0.19705757,-0.27731955,-0.18025075,0.15127648,-0.44150445,0.060630307,0.12422239,-0.28967464,0.03861581,-0.067553475,-0.17398807,0.83029026,-0.32272398,0.07817704,-0.6833832,-0.5090774,-0.68053174,-0.26232615,0.68643516,0.08973924,0.22531031,-0.625327,-0.08185838,-0.03704637,-0.20684381,-0.012607228,-0.48964694,0.53136206,0.06696944,0.76583457,-0.04094256,-0.7511125,0.17024198,0.28003526,0.05946429,-0.8183903,0.47376382,-0.059910417,0.6982656,-0.0050583887,-0.0010179338,0.2158606,-0.51203215,-0.0041834223,-0.35695404,-0.37799683,-0.7442951,0.04197322 -604,0.5575402,0.07421418,-0.5964438,-0.3038337,-0.5781856,0.0008765009,-0.07794409,0.18751079,0.46188486,-0.3033107,-0.10312759,-0.043581966,-0.15509994,0.47486782,-0.08867256,-0.98723096,-0.027977003,0.40488103,-0.69442284,0.57954526,-0.44065318,0.69018406,0.14247891,0.4457536,0.16391625,0.2131364,0.44115862,-0.003927231,-0.11086823,-0.030115714,-0.27763727,0.056025513,-0.5769638,0.49771583,-0.033685762,-0.466589,0.035503175,-0.42686448,0.024636159,-0.73183036,0.3208072,-0.7084369,0.5587777,-0.10661848,-0.29864523,-0.10841654,0.18107542,0.24503341,-0.25208065,0.04002317,0.28207707,-0.2706136,-0.107713,-0.18408951,-0.3656961,-0.5159601,-0.51325524,-0.010148635,-0.37547296,-0.19459827,-0.26365048,0.3625085,-0.21532127,-0.09826799,-0.19895886,0.32198986,-0.240403,0.0051649055,0.23448539,-0.38094535,-0.15639935,-0.46173617,-0.17447184,-0.17515975,0.24927267,0.14543119,-0.37198442,0.34559932,0.19784172,0.60747606,0.3013337,-0.33585453,-0.2515558,-0.10550205,-0.09800349,0.50071436,-0.19877735,-0.12149833,-0.23224966,-0.06498292,0.29805022,0.061238583,0.15881398,-0.32052857,0.025317878,-0.1487321,0.027835902,0.16492793,0.43300942,-0.4277655,-0.22786424,0.45790365,0.3092416,-0.038013026,-0.030813495,0.16319095,-0.06928037,-0.47133097,-0.20702289,0.011818308,-0.01222179,0.40229586,-0.09611864,0.05220365,0.65832,-0.045826092,-0.11103118,-0.059101164,0.07155861,-0.0448602,-0.25427628,-0.18489884,0.37918547,-0.3670835,-0.17954598,-0.2740808,0.8972506,0.10179615,-0.6033701,0.33193848,-0.39872706,0.15584494,-0.0014808178,0.47374198,0.85973555,0.5325152,0.11416065,0.9352223,-0.5052239,0.24773012,-0.03171335,-0.08592547,0.24760808,-0.08976122,0.15570508,-0.54431725,0.23049879,0.05008085,-0.114606604,0.22233063,0.4123079,-0.6135533,-0.25551206,-0.088640176,0.6000081,-0.46338862,-0.007396494,0.87330014,0.9892326,1.1286502,0.17289284,1.4952252,0.455418,-0.2582604,-0.052499715,-0.27476758,-0.5198177,0.14168453,0.22251661,-0.16688244,0.23383135,0.091371074,0.20937552,0.4816413,-0.2317414,-0.15829948,-0.102531314,0.4066643,-0.21625724,-0.034082133,-0.56847,-0.4287185,0.10308305,0.086006604,0.13374229,0.3910723,-0.36309144,0.46235985,0.009420801,1.5517663,0.0002879592,0.1019233,-0.20834933,0.06917227,0.2820831,-0.44351408,-0.11134003,0.21075687,0.170012,-0.24451417,-0.41441706,-0.16524349,-0.409118,-0.4060192,-0.18158779,-0.27909437,-0.0099528525,-0.028648075,-0.19857986,-0.49339244,0.108065404,-0.3871462,0.33437082,-1.9389259,-0.23198766,-0.1890162,0.22610536,-0.0615773,-0.3901432,-0.4361614,-0.5457185,0.15228452,0.2469303,0.38524917,-0.45319888,0.21777447,0.14550155,-0.5124174,-0.28154713,-0.62346715,0.26252726,-0.011991198,0.33934003,-0.24012835,-0.20572871,-0.29968077,0.20442805,0.56750214,0.15650608,-0.07914074,0.33898604,0.5448981,0.21681723,0.40435743,0.22862405,0.8034198,-0.44771916,-0.16177975,0.37030074,-0.59014916,0.40495425,0.07993865,0.24626453,0.55048305,-0.703441,-0.7936166,-0.7701438,-0.24894994,0.9925511,-0.225501,-0.35125157,0.36112154,-0.10652547,-0.19708814,0.21598771,0.516207,-0.12978545,-0.06934518,-0.59355235,-0.17592151,0.059132252,0.15267631,-0.092746735,0.015086771,-0.37070316,0.6452898,-0.21157588,0.4182315,0.3193003,0.25321266,-0.18451905,-0.45168936,0.1056602,1.0252458,0.44901732,0.105636835,-0.08942056,-0.17138878,-0.24588141,-0.22419572,0.21268842,0.49011168,0.7090127,-0.11238972,-0.07173993,0.35442197,-0.10834457,0.0515588,-0.026927246,-0.30004933,-0.10891069,0.058251355,0.62518924,0.5381521,-0.067453094,0.1889753,-0.0063928184,0.36882356,-0.16274646,-0.6405308,0.70050085,0.97194284,-0.1698717,-0.35274842,0.7839035,0.21653968,-0.04025185,0.4756026,-0.55585206,-0.34259266,0.42516083,-0.07327929,-0.3130378,-0.14375676,-0.26855466,0.13705012,-0.9496222,0.4485295,0.07850445,-0.7117062,-0.613006,0.016534436,-2.934174,0.24142835,-0.11221388,0.09923501,0.05830211,-0.14551595,0.20026326,-0.60567385,-0.5477886,0.19340363,0.11078671,0.72934383,-0.0017664754,0.21798691,-0.093284026,-0.55079854,-0.16531342,0.23356797,-0.050009582,0.27563387,0.14502485,-0.28416044,0.25061578,-0.31922418,-0.49761683,0.047669567,-0.70869327,-0.5608764,-0.3574455,-0.7926998,-0.14459015,0.7722188,-0.4846821,-0.06302774,-0.34380156,-0.035687454,-0.0689535,0.18724276,0.20854871,0.23091015,0.27788776,-0.112806484,-0.23613892,-0.37402165,0.062782794,0.22884107,0.3053583,0.55481184,-0.24879692,0.20838448,0.47782707,0.775258,-0.12625955,0.76525205,0.20835258,-0.039660033,0.23038544,-0.3275239,-0.37079334,-0.57825416,-0.5158209,-0.38023093,-0.5688309,-0.31865564,-0.08991469,-0.40625307,-0.8932149,0.48697436,0.115731366,0.15494753,-0.12104392,0.23395255,0.2383085,-0.19290349,0.048404317,-0.22664595,-0.17812508,-0.4112258,-0.41388777,-0.47084224,-0.6773882,0.22470453,1.437245,-0.16411787,0.100313336,0.16482535,-0.26584002,0.119271114,0.059704103,0.06662148,0.15549962,0.39953694,-0.005067078,-0.51062834,0.42853943,-0.10701093,0.056089003,-0.4110524,0.32599148,0.644495,-0.5775103,0.5437038,0.369602,0.20125437,0.07324867,-0.53985196,-0.2541617,-0.025453985,-0.21901523,0.45479786,0.33337575,-0.4278507,0.49677783,0.13889672,-0.1961798,-0.81878704,0.049697995,0.01479893,-0.21143888,0.14175771,0.37496156,0.114756055,-0.067956164,-0.24613819,0.17926288,-0.5253259,0.23860179,0.21756554,-0.0016096991,0.41247764,-0.24075177,-0.51523566,-0.8012609,-0.060474195,-0.41991055,-0.4485616,-0.0807722,0.1820835,0.116868705,0.2180322,0.14503326,0.44636625,-0.3206708,0.175186,-0.21306388,-0.24874698,0.44473317,0.4514205,0.34970972,-0.48276404,0.4151819,7.13055e-05,0.09301718,-0.3380894,-0.02219627,0.5379025,0.21651967,0.23550683,-0.018753456,-0.17039435,0.09572768,0.60488904,-0.01731724,0.068236485,0.10002895,-0.42908823,0.20644471,0.21217245,0.10273127,0.016233059,-0.3239872,-0.117659144,-0.059103984,0.03393466,0.40260902,0.09705646,0.43629754,-0.05916065,-0.23173144,0.3435121,-0.02451982,-0.0420298,-1.2310035,0.3604032,0.035033043,0.69582236,0.62733585,-0.07965013,-0.14709854,0.5793691,-0.3053459,-0.006567995,0.2874215,-0.23102681,-0.2883697,0.44884026,-0.57071817,0.34660536,-0.18877012,-0.109042294,0.24203609,0.34548947,0.34501702,0.9047962,-0.09364472,0.07096478,-0.115216956,-0.16734146,0.11291114,-0.047336128,0.07783665,-0.56120586,-0.444936,0.80908877,0.20466627,0.30644006,-0.4127827,-0.07164713,0.09911658,-0.21155429,0.10205837,-0.18092695,-0.028658608,-0.007024889,-0.46169016,-0.14438623,0.5789811,0.078684755,0.045659903,0.13250247,-0.5119268,0.058174036,-0.21229032,-0.037430067,-0.059323218,-0.68971455,0.03591166,-0.42622897,-0.3435945,0.3630698,-0.38079813,0.22163394,0.17474288,0.20209083,-0.2612193,0.3352633,0.37516207,0.9533354,0.09577996,-0.11281061,-0.101223454,0.50747335,0.34507158,-0.41081128,0.15316471,-0.2804007,0.30279344,-0.7473291,0.44748023,0.025237756,-0.23755512,-0.032351397,-0.036523737,0.19781998,0.30309588,-0.40914005,-0.009922642,0.26264605,0.13375643,-0.29264086,-7.528296e-05,-0.40166393,0.18270478,-0.08533927,-0.17557001,-0.077113576,-0.12709834,-0.12841006,0.28779563,0.020476285,0.07055669,0.08990569,-0.18407337,-0.36314598,0.20383205,-0.017399788,0.29214928,0.16150005,-0.15156937,-0.33938548,-0.10912701,-0.46644053,0.3414211,-0.07130484,0.21477908,0.014513144,-0.35126173,0.8180966,0.3049878,1.3609579,0.081675574,-0.328032,0.12000383,0.64126587,0.039028488,0.05987595,-0.3658095,1.1068511,0.7148556,-0.25537667,-0.14317301,-0.3104665,-0.3954655,0.37621844,-0.43106237,-0.28956982,-0.02876329,-0.720925,-0.4674784,0.167281,0.14205192,0.038384635,-0.15286016,0.007276251,0.1288714,0.07155723,0.42545763,-0.499299,-0.07902153,0.1238488,0.2817546,0.24266252,0.3785567,-0.31264818,0.39814204,-0.9855777,0.3182171,-0.36514255,0.11640932,-0.23502873,-0.3346898,0.23411557,0.30575243,0.27220827,-0.40114468,-0.33936515,-0.31958663,0.75109255,0.044849474,0.21829937,0.8450013,-0.40026262,-0.06894263,0.13358828,0.3723163,1.3233432,0.06940881,0.08772295,0.3958947,-0.3797936,-0.5446104,0.1951603,-0.31720513,-0.08500131,-0.31506136,-0.46852005,-0.37727305,0.24900492,0.31825012,0.064826176,-0.028483527,-0.4952291,0.09800732,0.3350573,-0.24714848,-0.20197879,-0.21963295,0.19570233,0.62516606,-0.34557217,-0.71813244,0.079426914,0.18457681,-0.2557373,-0.7372046,-0.118117996,-0.2912486,0.57514745,0.18485291,-0.48089588,-0.1600822,0.10005946,-0.36416516,-0.022179522,0.32619315,-0.47994137,0.10241115,-0.39899084,0.01031601,1.0105474,0.30214673,0.4246485,-0.6326532,-0.4584542,-0.9173839,-0.5219911,0.13393356,0.13839418,-0.13854703,-0.6813042,-0.08440052,-0.15543967,0.042023018,0.14222899,-0.4583402,0.31804198,0.19393328,0.46130773,-0.15478942,-1.1947392,-0.019763457,0.30465555,-0.22381185,-0.42717463,0.44229332,-0.1905447,0.75949275,0.08218471,-0.09538034,0.27730888,-0.8172481,0.58752286,-0.42142776,-0.10415073,-0.5767798,0.08453059 -605,0.48931524,-0.0030343276,-0.5105416,-0.25668636,-0.3532347,0.16054556,-0.22562978,0.17315255,0.4137017,-0.22144954,0.016345961,-0.056916647,0.047544487,0.40893054,-0.051293265,-1.0003006,0.1186416,0.14677295,-0.4356725,0.2767928,-0.6263861,0.51039106,0.011562629,0.28535554,-0.03219322,0.14455439,0.30562493,-0.18718891,-0.073142536,-0.12941511,-0.1261055,0.1628593,-0.53649175,0.14320016,0.028635785,-0.23512258,0.024548037,-0.33442053,-0.25675103,-0.7283478,0.43607023,-0.6697467,0.4792247,-0.051597007,-0.36686936,0.12192867,0.01677989,0.25574782,-0.36039108,0.20701928,0.21597779,-0.45284313,-0.097791575,-0.17790832,-0.3654129,-0.48193577,-0.5849709,-0.07148874,-0.46152738,-0.25487694,-0.5083934,0.23773351,-0.4853217,-0.096023574,-0.07799981,0.35627064,-0.28886387,-0.04010972,0.31474185,-0.175697,0.13673815,-0.34046957,-0.10628726,-0.021813262,0.24357864,-0.026139854,-0.19476917,0.34160915,0.41418478,0.4429548,0.024594668,-0.34624267,-0.17828062,-0.09794106,0.14184545,0.6368971,-0.1691339,-0.35568315,-0.18377678,0.0055089956,0.10095386,0.13551427,-0.20328525,-0.24929312,-0.015811348,0.2743524,-0.17432417,0.5427161,0.43048105,-0.36099955,-0.19432071,0.34707823,0.3280377,-0.025770243,-0.24660742,0.1880623,0.07618087,-0.66913927,-0.22540331,0.3451284,-0.1160546,0.4228107,-0.13112703,0.08206582,0.87227863,-0.33370665,-0.07193103,-0.20952594,0.02715048,0.0786149,-0.14385006,-0.17151698,0.21939929,-0.55021244,0.0066351336,-0.29149523,1.0207511,0.24859487,-0.838264,0.45448294,-0.44286317,0.17501937,-0.22219123,0.63861334,0.7037696,0.34174034,0.35260513,0.88082296,-0.5225754,0.104486026,0.14914568,-0.37659854,-0.029187847,-0.16912143,0.06252739,-0.39517713,0.06347727,0.12387089,0.034051996,0.29690108,0.19373773,-0.38856998,-0.07466839,-0.15424927,0.74113303,-0.44869545,-0.03949819,0.79740375,0.9211138,0.8642995,0.117391944,1.3919256,0.5711409,-0.29466954,0.04880045,-0.39673546,-0.5087438,0.17745206,0.33130106,-0.2163746,0.22425468,0.017764058,0.0837487,0.32430425,-0.4352958,-0.099939264,0.05605414,0.19929683,0.017558059,-0.15439984,-0.47615832,-0.22454068,0.16075297,0.03311009,0.16246544,0.29043952,-0.28496835,0.42755815,0.035210133,1.0991334,0.14696312,-0.045692023,-0.1335193,0.3993104,0.30288652,-0.16853757,-0.15303023,0.27129707,0.47250244,-0.16732264,-0.60218185,0.016028984,-0.29901478,-0.23237479,-0.23622294,-0.36140782,0.05506428,-0.031280786,-0.32331887,-0.16372505,0.1306509,-0.2884929,0.51884395,-2.3177478,-0.2510972,-0.13213694,0.32881027,-0.04674388,-0.3602837,-0.40546593,-0.63293904,0.36423683,0.22576758,0.39431432,-0.64336294,0.24421738,0.21860936,-0.28345558,-0.2070122,-0.81070966,-0.18433619,-0.11110473,0.26030478,0.043536197,0.0043502874,-0.25458115,0.4428311,0.7607693,0.20555966,-0.013866166,0.1274496,0.43902364,0.043378007,0.5256129,0.14725251,0.5939292,-0.11131574,-0.1608945,0.24187718,-0.41987202,0.22843023,0.07800416,0.14624074,0.35745472,-0.42594305,-0.795852,-0.55251133,-0.4084468,1.2605237,-0.3861645,-0.4890089,0.35405248,0.060784467,-0.3015222,0.09907979,0.55351967,-0.17321941,-0.038668137,-0.5997025,0.0064531225,0.12048998,0.15943071,-0.12090373,0.13273224,-0.08539943,0.5253544,-0.4022983,0.2359736,0.21767725,0.2159461,-0.16975768,-0.5466389,-0.02139118,0.99876004,0.28751785,0.12858045,-0.16609046,-0.22364083,-0.18684718,-0.27267337,-0.0081169205,0.63815534,0.94922364,-0.08050628,-0.080828056,0.27624995,-0.3425798,0.040322147,-0.07269298,-0.39713553,0.14177021,-0.14821856,0.72254175,0.43701643,-0.11307924,0.39340934,-0.06865054,0.18194194,-0.117116146,-0.4823157,0.5335612,1.0360745,-0.1987193,-0.202742,0.4226211,0.35932562,-0.3527875,0.37252745,-0.55479735,-0.16361673,0.7519954,-0.09813591,-0.4205552,0.020265648,-0.29876083,0.054802425,-0.91326034,0.42595267,0.08153158,-0.7784863,-0.40422922,-0.07287357,-4.0561066,0.061106503,-0.16089466,-0.059530582,-0.048094507,0.017003434,0.35035267,-0.353278,-0.44410986,0.07190093,0.06546415,0.6006932,-0.05059155,0.085637346,-0.39106873,-0.13487852,-0.29932985,0.17270727,0.19359493,0.2964862,0.06758462,-0.31299445,0.35290354,-0.33970174,-0.4440737,0.053133838,-0.562841,-0.6526966,-0.2262359,-0.5225978,-0.31204247,0.8756564,-0.4974227,-0.022302547,-0.30915666,0.020780984,-0.19642124,0.5076631,0.33283445,0.11967842,0.078979544,-0.022877285,-0.11385776,-0.3594419,0.29355958,0.11979755,0.16951075,0.24627216,-0.00965505,0.06628932,0.64550865,0.6353599,0.25082865,0.85875314,0.22363672,-0.038130768,0.14807762,-0.42864507,-0.25296634,-0.59525883,-0.44274923,-0.26837817,-0.43564853,-0.3212559,-0.31545183,-0.3577381,-0.71063083,0.3810506,0.04347367,0.12572482,-0.20567085,0.34034756,0.31841594,-0.006737415,0.081878625,-0.07379158,-0.19042651,-0.4771792,-0.21390544,-0.59598684,-0.58551836,0.28812817,1.01638,-0.19342966,0.016882688,-0.09167074,-0.41533083,0.04854786,0.054716315,0.23236455,0.26545033,0.28433293,-0.16927317,-0.6911383,0.3462816,-0.25049788,-0.13446036,-0.90560067,-0.0075441683,0.8238843,-0.6056465,0.5379753,0.40230379,0.22680685,-0.014188652,-0.46593735,-0.3170071,0.2041106,-0.19080687,0.4909183,0.020269645,-0.494304,0.52729744,0.2333649,-0.13733289,-0.55490065,0.44433436,0.037581287,-0.22099316,0.1980336,0.36469284,-0.065344475,-0.043889344,-0.16644348,0.2931907,-0.60043544,0.32203105,0.3497242,0.06432273,0.5786672,-0.0431625,-0.22833511,-0.6812931,-0.29530376,-0.51683986,-0.23397636,-0.061149377,0.046292167,0.116593994,0.11565531,-0.11296078,0.39393583,-0.40534538,0.13281003,-0.15473843,-0.2531866,0.40818214,0.5225601,0.22944324,-0.30352148,0.7056762,0.11741141,-0.035864267,-0.13875403,0.015245638,0.5815838,0.16504356,0.35492787,-0.008035102,-0.13567448,0.055047218,0.75975317,0.17131476,0.42685953,0.16825975,-0.2135826,0.3946106,0.19134995,0.0787862,0.1362497,-0.12649964,-0.18399492,-0.12871681,0.1383518,0.41155404,0.1446947,0.38234395,-0.14127575,-0.37368888,0.28814244,-0.01484894,-0.012948526,-1.3572501,0.4560883,0.13286401,0.5418122,0.29110283,-0.044124153,0.037213154,0.48187944,-0.25826576,0.19140157,0.25777876,-0.010828844,-0.40584603,0.5838712,-0.5954749,0.43469477,-0.19704665,0.038191788,0.13688944,0.31086913,0.33406416,0.9344759,-0.12043098,0.12048284,-0.017037954,-0.26073533,0.14285322,-0.26237032,0.15106694,-0.55490965,-0.30033875,0.465357,0.2733593,0.29135367,-0.24959779,0.022561904,0.047368612,-0.09862872,0.044519994,-0.09671069,-0.0797222,-0.039897066,-0.6858183,-0.45689586,0.42874295,0.054748904,-0.015467094,0.051596098,-0.10634976,0.26583484,-0.12941822,-0.026585136,-0.08128505,-0.66592795,-0.18736579,-0.37156636,-0.50900644,0.3895139,-0.5105346,0.38925457,0.19088125,0.031104816,-0.3801348,0.11753825,0.435254,0.7711666,0.08547691,-0.36656937,-0.4614894,-0.08606727,0.3753341,-0.34399027,-0.08026244,-0.28564954,-0.011862738,-0.5637371,0.3432506,-0.36084768,-0.22925816,0.09582,-0.1775254,0.0030470002,0.4261572,-0.40657058,-0.05211621,0.1420736,-0.06940273,-0.2790193,-0.107081614,-0.2851371,0.2752035,0.031362586,-0.192576,0.01523981,-0.26723567,-0.17854622,0.34171796,0.020685783,0.25734103,0.30754462,0.014596439,-0.12761785,-0.15448332,-0.09578457,0.2679081,0.16111694,-0.22513388,-0.42474964,-0.19875138,-0.18868957,0.3729969,-0.18609525,0.10294398,0.00259558,-0.4856473,0.69812626,0.043036394,1.0782876,0.11709959,-0.20763111,0.08388503,0.5813023,0.050513633,0.16795091,-0.2693877,0.84525007,0.6056016,-0.20645256,-0.20561205,-0.4274281,-0.10587711,0.38314506,-0.21544191,-0.24031743,-0.09227877,-0.7563791,-0.31723386,0.19952027,0.12835874,0.19521621,-0.03149219,0.017385231,-0.018834272,0.13926522,0.52265346,-0.43532965,0.20257418,0.26714557,0.28948596,0.19331326,0.20164193,-0.13375244,0.39463094,-0.55828375,0.28777885,-0.5121878,0.07946875,-0.0082376255,-0.21297656,0.24387442,0.13969831,0.25199997,-0.18033215,-0.12949583,-0.18745351,0.6108593,0.28872988,0.19817187,0.70309335,-0.24753931,-0.1418644,0.24448554,0.56244504,1.3993556,0.00090134994,0.11186678,0.40697935,-0.32741997,-0.37270707,0.25450736,-0.18433759,0.06063888,-0.20556392,-0.32087398,-0.43407494,0.25996163,0.1496837,-0.12764597,0.20544434,-0.31462222,-0.41859478,0.36589387,-0.34639478,-0.35126114,-0.34206447,0.39385745,0.5184927,-0.3560755,-0.3699076,-0.0697373,0.32065803,-0.29465884,-0.5154871,0.0083243,-0.24003401,0.43340138,0.044519957,-0.43674436,0.09546129,0.31713843,-0.3884824,0.19187927,0.3900102,-0.41764742,-0.021227049,0.06130785,-0.1253282,0.95616966,-0.10531973,0.0704127,-0.9043718,-0.39055213,-0.9421827,-0.36747584,0.49325997,0.3400731,-0.039466582,-0.5289229,-0.19337375,0.011911469,0.031997453,0.06288905,-0.65335304,0.24624372,0.13895108,0.4757657,-0.05400032,-0.931447,-0.2350456,0.05934017,-0.4503308,-0.55253917,0.4712827,-0.22493498,0.7424229,0.093252234,0.15102614,0.2346032,-0.3425167,0.2694418,-0.25815046,-0.29752174,-0.64655906,0.22247703 -606,0.4205524,-0.1620592,-0.3067453,-0.15714,-0.1960001,0.065638475,0.118737474,0.6348384,0.3053904,-0.10352929,-0.11547171,-0.14175312,-0.10179516,0.057736747,-0.020510465,-0.46838638,-0.15799163,0.18622276,-0.40176985,0.55399525,-0.36355445,0.1368995,-0.24985419,0.46733108,0.1614587,0.30034104,-0.12584808,-0.06342907,-0.047831032,0.09148848,-0.07018915,0.2905485,-0.31091624,0.1781349,-0.11561061,-0.114643976,0.11140403,-0.27923182,-0.3331346,-0.63956654,0.25461432,-0.5766851,0.2650873,0.11892053,-0.1999104,0.07032031,-0.18274072,0.24273586,-0.32964408,-0.1911895,0.06324073,0.1832673,0.086985715,-0.1587517,-0.0697309,-0.2718838,-0.42775914,0.004024134,-0.1774402,0.012137592,-0.052578073,0.0711098,-0.22761336,-0.16065553,-0.0991934,0.4021916,-0.33242908,0.14545363,0.24856432,-0.012081639,-0.005147567,-0.51921594,-0.1600403,-0.1208905,0.15944156,-0.019745521,-0.2181328,0.26109993,0.24450256,0.31011412,-0.12395994,-0.13986836,-0.1275092,0.030714296,-0.043074526,0.42594498,-0.12483255,-0.40358716,-0.07170456,-0.025184264,-0.14424823,0.15053882,0.05548368,-0.26607218,-0.07220479,0.043656863,-0.1819708,0.10906684,0.35917643,-0.32094148,-0.27693236,0.38685006,0.610889,0.18941806,-0.12993574,-0.15718557,0.09168969,-0.43805137,-0.19131528,0.11407976,-0.26348346,0.52948064,-0.14447139,0.078534715,0.58434784,-0.09303735,0.009108697,0.06765757,0.28061005,-0.22451441,-0.36182868,-0.27795506,0.13574144,-0.3463419,0.10129956,-0.08823796,0.62271607,0.22750197,-0.5445502,0.26813605,-0.49671057,0.11261983,-0.117252536,0.3967566,0.76652247,0.29787996,0.25575662,0.5613108,-0.3058344,0.13006449,-0.045174405,-0.32593006,0.2768394,-0.12978947,-0.011920104,-0.49389675,-0.0053344048,0.09762184,-0.178669,0.012444661,-0.027042445,-0.50696087,-0.16744381,0.16609833,0.72772974,-0.21187069,-0.117986985,0.37525627,0.9423017,0.803902,0.05884191,1.0939981,0.17154764,-0.2759201,0.5378295,-0.3375653,-0.8229417,0.22467598,0.20548688,-0.45596346,0.22853844,0.14103734,-0.09107463,0.46212012,-0.40854615,0.14859556,-0.16188148,0.39660513,0.1419627,0.09914125,-0.31317595,-0.40976202,-0.1192934,-0.02496932,0.09104596,0.3370493,-0.21725552,0.06300516,0.05227629,1.8006343,0.16111836,0.039792504,0.122344084,0.5058,0.11133527,-0.18618383,-0.07242835,0.5339759,0.25635237,0.069058426,-0.51379544,0.17825614,-0.25479582,-0.40927458,-0.039998613,-0.23477626,-0.041708358,-0.06695961,-0.47056836,-0.18308581,-0.19365674,-0.11139126,0.53412294,-2.9691637,-0.0699929,-0.04785147,0.30246606,-0.37920687,-0.39509043,-0.16900595,-0.4599328,0.188813,0.3116135,0.4064883,-0.669331,0.19926207,0.19456665,-0.54124194,-0.13478325,-0.55296385,0.02001336,0.08952821,0.18587282,-0.023883043,0.13370939,-0.06747706,-0.04174119,0.21518442,0.104541555,0.08985,0.35125706,0.29829076,0.19228657,0.3023237,0.060789686,0.4360393,-0.2864688,-0.09889071,0.19167599,-0.5017275,0.46776894,-0.05869883,0.06645103,0.47845113,-0.31509298,-0.6138025,-0.4899411,-0.15346973,1.2300284,-0.2297313,-0.09259914,0.09698205,-0.6022858,-0.2820225,-0.16405913,0.42411458,-0.15839991,-0.3302088,-0.6929807,0.06691395,-0.09131886,0.33188802,-0.042180233,-0.032956563,-0.22428483,0.5626392,0.003457858,0.45732254,0.2790852,-0.0069817486,-0.15888357,-0.45680088,-0.03699119,0.4752952,0.26155722,0.13984129,-0.08206182,-0.052074358,-0.33860567,0.08321386,0.17042468,0.50169474,0.50908387,-0.114210874,0.082970634,0.3914438,0.052530866,-0.0663185,-0.09033457,-0.24248415,-0.1798701,-0.017075015,0.43789065,0.7751232,-0.3193113,0.24918792,-0.07382615,0.18974756,-0.26019108,-0.33948585,0.5586544,0.8414841,-0.15662505,-0.08050133,0.39420828,0.5970954,-0.28432205,0.2906511,-0.48757964,-0.09502686,0.39048225,-0.038293365,-0.25766176,0.07542213,-0.24257313,0.10948917,-0.7343717,0.14477122,-0.13232583,-0.27085,-0.7718035,-0.04085835,-2.5161016,0.0858679,-0.25807616,-0.16295911,-0.09045647,0.10881159,0.11073104,-0.6328611,-0.4787936,0.24330337,0.04127025,0.4625811,-0.064853385,0.055737957,-0.27344972,-0.30581492,-0.3450949,0.0035453576,0.20671114,0.31191066,-0.031406615,-0.4048839,-0.12112177,-0.08831707,-0.25669134,0.16881627,-0.6165443,-0.3400437,-0.057946406,-0.6479941,-0.17677997,0.63549745,-0.304725,-0.04037472,-0.12996583,-0.016193284,-0.12124798,0.2781837,0.10842114,-0.002299141,-0.005590416,-0.03441413,-0.15665007,-0.3372869,0.20232137,0.061566792,0.3642914,0.33059457,0.0122660035,0.18870357,0.4199556,0.5510385,-0.04117996,0.6620362,0.5488043,-0.121309,0.28032297,-0.19916616,-0.074305795,-0.24771173,-0.19860345,-0.1323505,-0.33196086,-0.38588732,0.13879351,-0.36259195,-0.641949,0.29576433,-0.07311321,0.036236487,0.21244206,0.047454424,0.6703529,-0.22160824,0.13596615,-0.025546538,-0.08022492,-0.5403259,-0.40941033,-0.4602969,-0.25394934,0.46975854,0.99344724,-0.30968225,0.027281253,0.076445416,-0.37400597,-0.074215375,0.13301545,-0.18553363,0.13516204,0.40546462,-0.117301,-0.5101422,0.35644156,-0.00093877316,-0.10981847,-0.49974662,0.13041429,0.49752668,-0.71091115,0.61119115,0.16814543,0.023573866,-0.1134216,-0.4373161,-0.3422376,-0.07363665,-0.18735678,0.28218552,0.28063327,-0.6417977,0.1917155,0.23612301,-0.14840849,-0.693239,0.45808107,-0.1303935,-0.31540602,-0.24387547,0.39597446,0.14277314,0.049688358,-0.10665745,0.14727966,-0.3419089,-0.087000355,0.30926323,-0.17862104,0.25546154,-0.17740948,0.13473429,-0.66253364,0.17196442,-0.41241074,-0.38527334,0.40147093,0.06825076,0.15606946,0.112411976,0.37989646,0.17280786,-0.17173617,0.023066796,0.16028643,-0.17678395,0.22469077,0.2818322,0.47720036,-0.431555,0.37508473,-0.012646205,0.17235373,0.0074301222,0.06818343,0.29178917,0.098159164,0.34845835,0.059786692,-0.22127606,0.24705337,0.7811137,0.06083731,0.37071684,-0.010012746,-0.027956787,0.23041138,-0.08926422,0.14751028,0.04154056,-0.56123227,0.04599974,-0.0969183,0.22637598,0.2772621,0.10580476,0.1830459,-0.08415369,-0.24967183,0.016736325,0.26333812,0.02797511,-1.0635939,0.29038608,0.24036404,0.77603424,0.3746916,-0.01586748,-0.08649623,0.5804729,-0.05631192,0.22115663,0.37864038,-0.22454967,-0.49350306,0.50672793,-0.60297257,0.44926578,0.0080641275,-0.049217883,-0.049734704,-0.048341148,0.28606427,0.6448523,-0.19296142,-0.15241441,0.010874276,-0.36756495,0.026404368,-0.2647765,0.21096182,-0.70593864,-0.2113053,0.45847505,0.53064084,0.25091666,-0.28638607,0.031573355,0.02656098,-0.10317132,0.18146235,-0.036879677,0.11106137,0.19163392,-0.7027772,-0.23235832,0.4855798,-0.3193454,0.12664312,-0.066045746,-0.110598914,0.23530719,-0.28356785,-0.017713616,-0.09103069,-0.66892445,0.121266,-0.13104233,-0.36357206,0.56757677,0.0026832544,0.2269377,0.20538047,0.10288632,-0.35454977,0.5165323,-0.06724961,0.8445091,-0.2005721,-0.062755436,-0.54581827,0.21826942,0.07795221,0.0007741646,-0.053589646,-0.37189645,0.035190836,-0.34825808,0.44261348,0.18440358,-0.19859324,-0.24210908,-0.21685992,0.05214949,0.54294074,-0.048068915,-0.19996516,-0.39912364,-0.22975883,-0.29954073,-0.099057235,-0.040305886,0.3218754,0.3086309,0.088750206,-0.08396717,-0.15618752,-0.18551543,0.32268107,0.14355117,0.2489906,0.33021578,-0.0886209,-0.12473763,-0.16205311,0.1330377,0.38472784,-0.04859772,-0.19182286,-0.30123645,-0.29058668,-0.34369597,0.28525627,-0.13236232,0.5220868,0.07176378,-0.09330202,0.57277024,-0.036149897,1.0451666,-0.01069494,-0.25823268,-0.056156296,0.54190344,0.06959781,-0.08390646,-0.42686048,0.7601656,0.41009504,-0.13736889,-0.17965704,-0.20820959,-0.14533171,0.27187532,-0.060443383,0.032371916,0.0039364924,-0.5876324,-0.09573931,0.08299582,0.19599177,0.19767635,0.05041937,-0.09248565,0.120356135,0.0019765818,0.21940175,-0.29753652,-0.14846097,0.19878265,0.24344946,0.16098548,0.32478854,-0.32536218,0.35477498,-0.43897453,0.14439148,-0.23943523,0.22027877,-0.30813742,-0.29799256,0.07662745,-0.009027784,0.34754992,-0.42393002,-0.4002387,-0.41150087,0.5293536,0.25514826,0.14456047,0.4789802,-0.18608175,-0.11761438,0.047612447,0.5077276,0.69688886,-0.12752904,-0.09665024,0.324153,-0.3237416,-0.6669374,0.363063,-0.1408423,0.23707643,0.098504,-0.034165468,-0.5677706,0.3262264,0.16332382,0.11879898,0.047093272,-0.6171472,-0.10686212,0.17329264,-0.21448271,-0.10755502,-0.24470097,0.12946948,0.75234276,-0.17826647,-0.30708873,0.019711448,0.20810717,-0.11797381,-0.31583077,0.030913262,-0.6856485,0.19408692,0.050004106,-0.26754493,-0.31813926,0.012815897,-0.35743573,0.26218864,0.06237108,-0.31818473,0.1422488,-0.14129266,-0.047607813,0.9193706,-0.009721314,0.18388823,-0.39997685,-0.42923898,-0.6127296,-0.48764846,0.370787,0.097751185,-0.09080239,-0.50352347,0.02257676,-0.01083854,-0.17623264,-0.15242909,-0.30321392,0.4865827,0.20143825,0.1416829,0.025797576,-0.8586323,0.053531118,0.07960778,-0.19779566,-0.51631933,0.33854356,-0.19244501,0.8423773,-0.039835665,0.06318889,0.18473631,-0.242475,-0.114041254,-0.2100198,-0.13053015,-0.54711574,0.09198086 -607,0.35110936,-0.27358985,-0.39172015,-0.0043940204,-0.3306114,0.1892551,-0.12994823,0.62491083,0.25615284,-0.357511,-0.19169159,-0.3043171,0.015628653,0.43725386,-0.15833613,-0.47000524,0.034773737,0.21013567,-0.56536335,0.4315144,-0.5659162,0.42317754,0.027677609,0.61477154,0.19686195,0.13367346,0.023150312,-0.032389697,-0.23176207,-0.2514985,-0.06533774,0.122692876,-0.4434174,0.13040164,-0.24607079,-0.5225172,0.13596317,-0.5947061,-0.43641517,-0.8189613,0.2875345,-0.72582763,0.59681505,0.12958807,-0.282127,0.19075625,0.1826738,0.5807122,-0.28405818,0.010363592,0.20881936,-0.11468272,-0.058229677,-0.24002683,-0.3566262,-0.34770006,-0.6748992,0.07462202,-0.27600798,-0.07776547,-0.17335467,0.32799584,-0.09068559,0.03659622,-0.13388725,0.3610025,-0.50593954,0.3093009,0.22321542,-0.14802766,-0.00936492,-0.64031947,-0.167407,-0.09225625,0.12538856,-0.19375546,-0.22768612,0.275472,0.26116142,0.50495684,-0.117766485,-0.14013682,-0.33320045,-0.07240271,-0.18446498,0.71497726,-0.16038291,-0.2904876,-0.24345341,-0.19010782,0.39743033,0.17807563,0.12248762,-0.19842382,-0.11584382,-0.2563133,-0.23162211,0.23010302,0.53401065,-0.46360686,-0.21300706,0.3310713,0.59189653,0.1044595,-0.07037894,-0.031608824,0.12523127,-0.67530733,-0.15589973,-0.029092023,-0.23826377,0.51391184,-0.13017522,0.15028773,0.6935892,-0.16182306,-0.04708516,0.18145956,0.14130487,0.037040416,-0.36344844,-0.5796433,0.31758213,-0.38357115,0.07916815,-0.40292284,0.698905,0.10267242,-0.5422372,0.29188246,-0.6107632,0.10407629,0.09936533,0.45693725,0.4573471,0.43795544,0.37572452,0.5160568,-0.35887542,0.08361007,-0.1003061,0.038961444,0.07605722,-0.11369171,0.18358107,-0.3827351,0.14238751,-0.15991478,-0.2396013,0.32767886,0.5804062,-0.6847108,-0.14295872,0.11325475,0.8673479,-0.28177407,-0.040283404,0.943491,1.0168712,1.009584,-0.047531407,1.3054817,0.48707494,-0.28955406,-0.06109119,-0.3525,-0.57824534,0.1734277,0.21854007,-0.43050522,0.18012393,0.13922225,-0.2100549,0.5404858,-0.46202987,-0.059231766,-0.16432485,-0.026123302,0.11469663,-0.07185509,-0.41382188,-0.45997357,-0.061248247,-0.11458012,0.28127116,0.34875134,-0.45543212,0.36747926,-0.0632038,1.4925454,0.028380122,0.11960006,0.07510761,0.39259148,0.19894011,-0.1391992,0.019198049,0.33202195,0.21914445,-0.08368152,-0.5273695,0.1242336,-0.25329462,-0.30173475,-0.16415334,-0.1273867,-0.26197562,0.0068506855,-0.5325428,-0.21580417,-0.14340158,-0.021672288,0.35852146,-2.5144064,-0.12921563,-0.038910095,0.4465757,-0.14404905,-0.4501737,-0.061023593,-0.39862767,0.49723846,0.21558043,0.43969086,-0.6548677,0.36264753,0.39555052,-0.5538365,-0.1726798,-0.677098,-0.17324592,0.05280104,0.110534884,-0.06744062,0.014265814,0.04251924,-0.020432949,0.51500654,-0.09708087,0.25164697,0.23964182,0.44577703,0.05474805,0.45334134,0.11908593,0.6962077,-0.4052167,-0.3349073,0.24779817,-0.7580467,0.282408,-0.015831053,0.0021625236,0.52074313,-0.460889,-0.9102753,-0.5956046,-0.1797613,0.8272204,0.035017006,-0.38716075,0.06734156,-0.32001558,-0.27910537,-0.02937695,0.6697981,-0.20608254,-0.12592658,-0.7277381,-0.20972729,-0.0606498,0.33413818,-0.017378366,0.03963992,-0.38737863,0.5786955,-0.21290575,0.23547423,0.41065583,0.28247136,-0.5059847,-0.46035495,0.058753602,0.7996325,0.36255857,0.21902534,-0.11806719,-0.32008192,-0.25025216,-0.16387908,0.034865525,0.5515646,0.57445943,-0.14510529,0.15435006,0.29274097,0.00426771,0.04560811,-0.18739271,-0.29164606,-0.11496853,0.2539335,0.6343896,0.7018195,-0.0622327,0.30721983,-0.12366473,0.55239284,-0.31074715,-0.5241998,0.50090235,0.89769334,-0.116471455,-0.104969226,0.6753778,0.38020244,-0.25198537,0.46589798,-0.736602,-0.40118334,0.33510855,-0.0781829,-0.41300625,0.16742383,-0.2227259,0.023524417,-0.7673773,0.5214187,-0.17298341,-0.48561567,-0.7221675,-0.1643642,-2.584234,0.21049501,-0.39902884,-0.005150876,-0.051181886,-0.1959043,0.01608766,-0.44422296,-0.5375655,0.22118987,0.19168709,0.5093835,-0.079174094,0.07636877,-0.226825,-0.30410185,-0.4553971,0.11232563,0.23361687,0.42417493,-0.06994506,-0.45836225,0.118134856,-0.11225267,-0.4532084,0.050191324,-0.8699935,-0.2915266,-0.21792126,-0.63757557,-0.20621577,0.7174942,-0.41218397,0.035842624,-0.18070051,0.08906869,-0.13763963,0.3419437,0.20924206,0.16799517,0.098104216,-0.19114545,-0.05725026,-0.32967433,0.20261134,0.20004329,0.089477524,0.3132434,-0.044105224,0.038536545,0.2376999,0.7214858,-0.09714801,0.74050945,0.27280524,-0.143146,0.25686568,-0.27858981,-0.27307636,-0.1967801,-0.18420683,-0.02909172,-0.43769544,-0.44264916,-0.035134435,-0.5048216,-0.7194377,0.4951368,0.014334585,-0.2980652,-0.030930536,0.27783397,0.44851488,-0.2526807,-0.042529456,-0.11443394,-0.004773664,-0.4168939,-0.3497015,-0.59985197,-0.4048484,0.29410982,1.2360313,-0.031260695,0.192502,0.18351424,-0.17598629,-0.15389347,0.3638077,-0.22006415,0.04358233,0.44319433,-0.20731731,-0.53838474,0.302994,-0.06787902,-0.43100432,-0.705109,0.37874144,0.7175736,-0.68125904,0.7503666,0.41695994,0.107400365,-0.12353831,-0.46835008,-0.29600057,0.1923311,-0.18903959,0.3993054,0.13156466,-0.58132255,0.32276517,0.38026407,-0.42209512,-0.833393,0.3761041,-0.12123447,-0.45579043,0.051121056,0.41120222,0.23470356,0.14857237,-0.22322585,0.19544637,-0.4402589,0.22035322,0.1890378,-0.11590988,0.32325378,-0.35194084,-0.15013497,-0.7660988,0.09298066,-0.45132798,-0.28482598,0.1508064,-0.0067987507,-0.059558034,0.28743106,0.19311833,0.36980364,-0.2845091,0.115688264,-0.3292196,-0.24670972,0.18431573,0.36938837,0.5010295,-0.38421577,0.5794715,-0.037293453,-0.13748321,0.02053684,0.054947983,0.45640275,0.033935122,0.46538496,-0.11439441,-0.15254603,0.35810027,0.66668904,0.1063698,0.31606308,0.21914174,-0.07919314,0.20852825,0.09789363,0.06188174,0.10903333,-0.41337967,0.15041247,-0.33022246,0.16505328,0.3783912,0.10084642,0.46755245,-0.028221829,-0.34320736,0.06654932,0.14652826,-0.012309447,-0.98189247,0.1151875,0.054327738,0.7797037,0.42409235,0.07945198,-0.023369422,0.72813493,-0.2000005,-0.102644004,0.32998508,0.07080216,-0.30809477,0.71111995,-0.7085988,0.6214589,-0.1679882,-0.019331766,0.0044352836,-0.046975534,0.61869913,0.7773691,-0.15148987,-0.019638387,0.114938796,-0.24216534,0.044058256,-0.312455,0.30160776,-0.5694545,-0.27352688,0.7344863,0.3960957,0.38025537,-0.19767556,0.024045533,0.23888694,-0.19913773,0.11373438,0.07266154,0.12967353,0.01922064,-0.5916361,-0.109008655,0.49910975,-0.34748265,0.23165117,0.21729548,-0.25918436,0.24976489,-0.23410389,-0.032667268,-0.054272808,-0.87056094,-0.16352613,-0.37978506,-0.39999744,0.4062248,-0.03678606,0.155771,0.27767202,0.084751405,-0.4388724,0.65319014,0.023699496,0.92510426,0.049009893,-0.07306192,-0.11620701,0.39990297,0.15186663,-0.1425275,0.12770014,-0.22949494,0.09911888,-0.64962643,0.44675636,-0.108105436,-0.29354197,0.032822188,-0.05591481,0.07364929,0.56367975,-0.20318289,-0.16725011,0.15883903,-0.09602435,-0.28294313,-0.11189062,-0.11040878,0.30104432,0.16779052,0.09223331,-0.10285593,-0.08888904,-0.19788058,0.6070402,-0.0084705455,0.45675972,0.37057444,0.16322555,-0.29602697,0.014914794,-0.28187472,0.61530626,-0.17506552,-0.14975527,-0.23483577,-0.55844843,-0.3696465,0.33451796,-0.17864315,0.32212892,0.055591322,-0.22643052,1.0195382,0.01032512,1.1847897,-0.12592877,-0.35942367,0.12933205,0.61397505,0.016191585,0.033084128,-0.35816437,1.2007409,0.53237903,-0.15984535,-0.05683147,-0.32492542,0.02043048,0.3482465,-0.21302776,-0.17327796,-0.09162732,-0.5937155,-0.15830378,0.19923295,0.35806832,0.17713353,-0.121551394,0.35702392,0.35287976,-0.02283463,0.32751796,-0.5935215,-0.11458776,0.32003146,0.45940834,-0.025122026,0.19175036,-0.40959057,0.38335714,-0.41064215,0.14842527,-0.27246287,0.07564287,-0.23322521,-0.33173758,0.21048777,0.015810728,0.2224664,-0.5572912,-0.19958238,-0.29622027,0.48026493,0.282667,0.23307446,0.6108521,-0.25881645,-0.116778485,-0.13687564,0.5554573,1.0084907,-0.4322553,-0.019004235,0.4140563,-0.37107652,-0.61138743,0.51595455,-0.36277956,-0.14291318,0.012096567,-0.21354055,-0.5301009,0.333075,0.15162702,-0.00646581,0.014846875,-0.58302486,0.0037430695,0.36036763,-0.30827668,-0.2715237,-0.40254077,0.3720192,0.68059254,-0.009385323,-0.46174878,0.11977888,0.32888705,-0.34607762,-0.42528227,0.09857416,-0.4629926,0.26699743,0.06020059,-0.22519398,-0.2471033,-0.008882322,-0.4274824,0.0011680509,0.04374927,-0.25201732,0.17622194,-0.42504564,-0.017679002,0.67509925,0.0013867787,0.30628088,-0.73419,-0.48184156,-0.9677492,-0.35035938,0.47963157,0.34126464,-0.07797583,-0.7484451,-0.12844002,-0.08208281,-0.40855238,-0.0049676173,-0.24961348,0.41562837,0.0998022,0.3277556,-0.21354571,-0.7888117,0.10305242,0.084262155,-0.5117325,-0.4300428,0.39474106,0.069406696,0.9407555,0.14524136,-0.018614894,0.24168172,-0.41844076,0.20176661,-0.3698404,-0.29930344,-0.63199705,0.035013918 -608,0.3036689,-0.11303002,-0.66448903,-0.01171876,-0.13000956,0.048240136,-0.1914972,0.48459437,0.032081753,-0.42069492,-0.14079098,0.053344715,-0.09739033,0.30830956,-0.19730885,-0.5281081,-0.064076744,0.2570682,-0.21010478,0.19091918,-0.4647769,0.1289458,-0.1728373,0.37474653,-0.14805911,0.2813517,0.2640573,-0.029157361,-0.16155571,-0.26183018,0.26822937,0.3866031,-0.6568025,0.3371593,-0.07480037,-0.31203023,-0.025629165,-0.42959595,-0.39709315,-0.66290605,0.2209069,-0.8334472,0.45515075,0.23421562,-0.24314152,0.098839976,-0.08587255,0.25051722,-0.2659882,-0.02048312,0.33378074,-0.35978267,-0.19216625,-0.384389,-0.031900585,-0.23944682,-0.514626,0.02960966,-0.34934977,0.012501326,-0.22892584,0.20468034,-0.40296283,0.08551758,-0.2926521,0.23200174,-0.43539676,-0.14331299,0.25168338,-0.30966505,0.22195876,-0.42216492,-0.08303671,-0.18074732,-0.029864019,-0.34483957,-0.20694733,0.41213873,0.119433366,0.3919009,-0.1450418,-0.15079767,-0.31472138,0.074640535,0.21727604,0.5473955,-0.41278294,-0.33398938,-0.09689057,-0.1094057,0.13290137,0.056901466,-0.15583305,-0.33339438,-0.063547224,0.038978275,-0.07933027,0.06971354,0.6275626,-0.1549792,-0.054298315,0.37745407,0.4824398,-0.051421743,0.02372128,0.061728965,0.077213466,-0.4805584,-0.21836495,-0.12135456,-0.050887797,0.5299167,-0.06792794,0.14761685,0.67800087,-0.31108224,-0.08722151,0.045697857,0.05173916,-0.076606296,-0.30262873,-0.3707401,0.58959144,-0.4021372,0.056632232,-0.14092483,0.781279,-0.039263293,-0.90755653,0.519517,-0.44093505,0.061153695,-0.21149671,0.73150015,0.5036052,0.5762065,0.22714704,0.7941068,-0.5429742,0.066640384,0.03729922,-0.41869965,0.37293705,-0.19726253,-0.22372526,-0.32751957,-0.16018523,0.19736254,-0.28492236,0.17128699,0.40787208,-0.4364178,-0.07809732,0.18364145,0.6008544,-0.37836263,-0.029157007,0.40639952,1.1868849,0.71801716,0.053253204,1.2070872,0.23375602,-0.18115418,-0.030630022,0.031389453,-1.0226918,0.24485534,0.31521958,-0.2864624,0.15620242,0.4116834,-0.2753725,0.5654895,-0.59940463,-0.07076482,-0.15069069,0.14646356,-0.18980412,-0.13244312,-0.5183651,-0.29386458,0.087009095,0.016194701,-0.13593529,0.37372684,-0.34530053,0.36018738,0.13218564,1.4817868,-0.095203854,0.23134993,0.08928016,0.47612646,0.083411954,-0.13874388,-0.16264999,0.22559136,0.31004825,0.20158117,-0.40907732,0.12264988,-0.010770659,-0.6053414,-0.18760325,-0.2784701,0.12936974,0.041208435,-0.28908092,-0.102041006,-0.014768253,-0.3995416,0.44466472,-2.5347357,-4.2577583e-05,0.08286145,0.3349917,-0.1698159,-0.20200993,-0.2781185,-0.33085737,0.3571497,0.48995474,0.54777163,-0.52857953,0.25519928,0.4139694,-0.42089614,-0.07687909,-0.6300743,0.101674415,-0.21269627,0.09334039,0.11259783,-0.13000558,-0.012091547,0.009324257,0.49673736,-0.18143336,0.049257364,0.32177678,0.22700821,0.13361019,0.13597527,-0.05474713,0.55593306,-0.6569019,-0.48569098,0.32343623,-0.25242034,0.23342575,-0.112021826,0.121937335,0.28851035,-0.34350792,-1.1568708,-0.6338177,-0.32153252,1.2533373,-0.41086254,-0.3961794,0.347468,0.0648287,-0.38315806,-0.020104121,0.47513953,-0.30721924,0.040861253,-0.8877111,0.046058815,-0.19918944,0.41960335,-0.043049995,-0.098155916,-0.6237143,0.486536,-0.20449615,0.51820177,0.54875064,0.098668635,-0.18751855,-0.42523003,0.06544256,1.0343678,0.23365285,0.23933989,-0.1632085,-0.10532007,-0.037482537,0.08132493,0.14295167,0.36988893,0.7821787,-0.04366915,0.04635465,0.28598174,0.03521076,-0.18880707,0.03848954,-0.39939347,-0.020592531,0.06678107,0.6817396,0.7316049,-0.13472645,0.23641217,-0.13944013,0.40675858,-0.14902413,-0.37208104,0.42426348,0.6064858,-0.054852594,-0.20630027,0.80819494,0.48320198,-0.43661848,0.67701,-0.6887873,-0.43624234,0.2263398,-0.04133739,-0.482536,0.16218667,-0.31809822,0.2970954,-0.84422034,0.506622,-0.25971195,-0.73083687,-0.6932865,-0.2205184,-3.9296906,0.24131215,-0.36711147,-0.19507484,0.071399815,0.02879149,0.37759018,-0.63886666,-0.42308545,0.118840516,0.2129283,0.64932555,-0.09236911,-0.034849547,-0.30553472,-0.04588896,-0.12190354,0.12600736,0.5009166,0.10305395,0.021303708,-0.5340281,-0.1747436,-0.21712895,-0.2682571,-0.0054962435,-0.6526143,-0.30868658,-0.090875946,-0.58404344,-0.4079747,0.6516126,-0.5408325,-0.031378895,-0.13703637,0.14708756,-0.19514048,0.4021754,-0.035520446,0.23868722,-0.098972924,-0.14759225,-0.13562371,-0.15138133,0.50049525,-0.017416188,0.39904818,0.48886672,-0.4468511,-0.036503196,0.70332855,0.5635366,-0.0811188,0.90532416,0.6163164,-0.16279274,0.12515377,-0.26182604,-0.16435595,-0.59391284,-0.4310873,-0.046606038,-0.5145514,-0.3600153,0.13708888,-0.40109026,-0.9371397,0.7118078,-0.085001774,-0.08182732,0.04234715,0.07631875,0.29758796,-0.3037646,-0.28934368,-0.19324253,-0.14552194,-0.49430522,-0.3124885,-0.6285479,-0.54585433,-0.22017288,1.2987021,-0.13217573,0.256071,0.19658756,0.045668025,0.06505301,0.14153679,-0.051138017,0.24275486,0.5409879,0.06542295,-0.57933086,0.41791764,-0.31920096,-0.08661284,-0.72664493,0.15771647,0.67710376,-0.885863,0.70385057,0.53764063,0.116743036,-0.05750357,-0.6340267,-0.41680694,-0.0023135692,-0.051157225,0.58732665,0.15817265,-0.9768458,0.4665587,0.46478343,-0.5703288,-0.707321,0.46134838,-0.17550842,-0.11777834,0.099986255,0.36611962,-0.44279352,0.017472705,-0.15379865,0.24397278,-0.31892654,0.3186982,0.23512982,-0.08282957,0.53510857,-0.3090396,0.05810937,-0.6697487,0.07890391,-0.46699095,-0.15613216,0.14844811,-0.15778495,-0.25098947,0.14338602,-0.026719982,0.57136816,-0.3647702,0.0844261,-0.12524125,-0.42086673,0.53975564,0.48773932,0.44942704,-0.47904125,0.65427667,0.0107628675,-0.23798585,-0.46537873,0.039932523,0.6666251,-0.037198458,0.30241182,-0.13002294,-0.019839851,0.3575311,0.7480554,0.2776338,0.5940809,-0.06327947,0.04118209,0.18767913,0.25381655,0.3114753,0.063204065,-0.5330423,0.08358172,-0.19175516,0.23257954,0.42770007,0.09122431,0.5732178,-0.23973982,-0.15439214,0.16482252,0.29095912,0.07062668,-0.937771,0.63688827,0.11152025,0.49710953,0.44136527,0.18770744,0.047754515,0.70359564,-0.22633488,0.15224393,0.113289714,-0.0804537,-0.48506382,0.58730996,-0.7854149,0.31375235,-0.020574043,-0.023204066,0.18082972,-0.23611677,0.52128047,0.7469952,0.011829744,0.22657739,-0.031962074,-0.1076322,0.059316237,-0.28006837,0.35606566,-0.52153385,-0.38736427,0.8000121,0.49710885,0.41513315,-0.13435207,-0.060486186,0.0984207,-0.045798767,0.23990728,-0.14291129,0.11822429,0.05508932,-0.77804095,-0.15147094,0.6832736,0.1222214,0.036237556,0.007943784,-0.12884708,0.44051203,-0.16520023,-0.15319003,-0.026243677,-0.37334085,0.11627377,-0.33135423,-0.24270813,0.4096876,-0.2625691,0.34785843,0.11856992,0.093047075,-0.49876466,0.31703004,0.16882657,0.9245103,0.09538426,-0.28398076,-0.29024366,0.3279246,0.35364595,-0.14879365,-0.055524994,-0.5657109,-0.18264551,-0.5980285,0.31233677,-0.19783486,-0.3930395,0.4277344,-0.044585586,-0.022191694,0.64009255,0.0748055,-0.22886948,0.056019317,-0.013836051,-0.32846367,-0.19439308,-0.3265902,0.26308298,0.08152119,-0.008485138,-0.04300795,0.093167126,-0.08421039,0.28674155,-0.02195979,0.27813008,0.26497835,0.26789725,-0.27297428,0.016411027,-0.101723544,0.633979,-0.08467996,-0.032285508,-0.32929465,-0.37488103,-0.13766187,-0.011405975,-0.1851647,0.3982675,0.1782964,-0.19812839,0.65758944,-0.09891429,1.0464697,0.025783896,-0.34635293,-0.10347509,0.66110545,-0.025857568,-0.10584434,-0.39020815,1.1197363,0.6707596,-0.21828283,-0.12046239,-0.4515724,-0.2612069,0.040637296,-0.22938336,-0.44545078,-0.040753655,-0.6983729,-0.108343065,0.26601592,0.5171447,0.07850857,-0.004317502,0.24483776,0.37836885,0.16126657,0.004014328,-0.32896277,0.07481819,0.43864974,0.29246256,-0.028337091,0.08069406,-0.36271027,0.3716141,-0.66598165,-0.013265002,-0.3413702,-0.012161228,-0.16287501,-0.38713276,0.09850189,0.017903993,0.29648927,-0.20212443,-0.09146715,0.07392872,0.4327514,0.2941221,0.23323731,0.87977904,-0.21553417,0.12372196,-0.010309957,0.31457743,0.8113823,-0.564164,-0.10936916,0.42387462,-0.14155509,-0.7268519,0.33525327,-0.32657564,-0.036151607,-0.26105747,-0.47446474,-0.46909437,0.29824144,0.11983956,-0.310646,0.19177754,-0.52381545,0.20448698,0.1157904,-0.15461934,-0.2833881,-0.38882804,0.30419573,0.77192134,-0.23211281,-0.48902512,0.18377669,0.30052122,-0.24137296,-0.41186666,-0.06977054,-0.27291206,0.118427396,0.13107683,-0.42978606,0.077360384,0.07480412,-0.28337404,0.26741633,0.26257026,-0.21188231,0.24800992,-0.22655983,0.11071267,0.717985,-0.1305718,0.10707068,-0.6767729,-0.53392637,-1.034,-0.21835135,0.53781265,0.24301617,-0.07405002,-0.49552843,-0.05341978,0.017115304,-0.099357665,-0.29207912,-0.31010962,0.38154235,-0.08049816,0.4394932,-0.15479128,-0.7116192,0.066877685,0.08129164,-0.08862278,-0.44449687,0.49891743,-0.048680197,1.0137185,0.051477402,0.24330501,0.2645708,-0.6926816,0.044086933,-0.2588912,-0.273843,-0.57770824,-0.02869281 -609,0.29323345,-0.075592674,-0.35328108,-0.11754967,-0.29475847,0.31878,-0.27381817,0.2858719,0.11421877,-0.6737004,0.051721845,-0.27305463,-0.11430549,0.3818577,-0.16078608,-0.7364989,0.35859933,0.021563265,-0.5305603,0.6035642,-0.27739885,0.54665655,0.19854951,0.18101753,-0.19911568,0.16642548,0.3587695,-0.004475332,0.27037314,-0.37498763,-0.14066447,0.0027524638,-0.54757595,0.5123564,-0.15749443,-0.4593687,0.07100326,-0.27523267,-0.2369192,-0.72848564,0.03586287,-0.7044177,0.5711247,-0.024630772,-0.18938288,-0.09522773,0.25070825,0.15524693,-0.027871218,0.017015252,0.15165506,-0.36058587,-0.15697005,-0.22212657,-0.37445015,-0.7321491,-0.47477117,-0.024318507,-0.7077405,-0.30858704,-0.22334626,0.25781348,-0.31944254,-0.038529474,0.015437058,0.499397,-0.25582507,-0.051262546,0.19912742,-0.54101336,0.18240269,-0.6548859,-0.1046868,-0.024922252,0.20564353,-0.1873428,-0.14151432,0.3271405,0.31459525,0.42784095,0.1383901,-0.24462283,-0.17815426,-0.337255,0.13405465,0.69620705,-0.050591018,-0.33731434,-0.18391348,-0.15209529,0.32490915,0.14127651,0.18037736,-0.34712008,-0.08620862,-0.13938446,-0.28948542,0.50522137,0.4552083,-0.4518769,-0.20462993,0.34386948,0.53833264,-0.13542552,-0.29875562,0.28573084,-0.10909598,-0.40142277,-0.0636499,0.25052273,-0.13506134,0.3802367,-0.091189146,0.16145825,0.69551575,-0.17502995,0.08376325,0.056233916,-0.05851508,-0.0696243,-0.14285626,0.029046748,0.41851753,-0.576331,-0.061064254,-0.48760822,0.8090428,0.09553676,-0.61166924,0.3909295,-0.5135955,0.05014214,0.06682391,0.56780225,0.556496,0.29503748,-0.039337754,0.5673968,-0.28759083,-0.046327095,-0.11323832,-0.14401731,-0.09856982,-0.16915716,0.0012626925,-0.3130544,0.045200475,0.06534518,0.094163775,0.019036243,0.31853646,-0.49301273,-0.17349994,0.2809762,0.9259015,-0.2172122,-0.030076776,0.6397815,1.2583363,0.66755116,-0.09062294,1.1717018,0.11754902,-0.15913178,-0.2564033,0.03863066,-0.22433697,0.105997495,0.4372054,1.1675838,0.17310683,9.7053395e-05,-0.15137485,0.36595392,-0.3790318,-0.15102224,-0.05667513,0.043119054,0.15945448,-0.092774,-0.2996568,0.07156842,0.06382503,-0.053629067,0.3008055,0.1853662,-0.26711324,0.5353376,-0.017913137,0.7736955,-0.06618954,0.21571621,0.20575489,0.45275894,0.2330842,-0.07976723,0.31417146,0.25679895,0.21249671,0.07032666,-0.5459238,0.09260218,-0.3996189,-0.343293,-0.22671941,-0.2035941,-0.37344527,0.071236394,-0.5349044,-0.04513957,0.03357416,-0.2982762,0.33691356,-2.6601584,-0.15727268,-0.40052265,0.26352766,-0.22086976,-0.2060612,-0.10120927,-0.509123,0.5106711,0.4259858,0.35004506,-0.5441176,0.39073643,0.5321537,-0.29845867,-0.19771819,-0.61518943,-0.030092334,-0.024406089,0.5180879,0.14830355,-0.13718967,0.03602438,0.04606237,0.5872861,0.080032565,0.044715863,0.35030064,0.2584496,-0.088431396,0.210381,0.106993295,0.44048405,-0.35282835,-0.15550725,0.34752288,-0.4344881,0.24028465,-0.23502061,0.1008942,0.4259446,-0.16194272,-0.6166794,-0.6636937,-0.66446686,1.1224312,-0.004858094,-0.6605641,0.15685199,0.30375972,-0.1655443,-0.14389853,0.6133079,-0.08029358,0.3968545,-0.43610114,-0.024390304,-0.16126837,0.252602,-0.085699454,-0.16632806,-0.4099646,0.7284298,-0.12035243,0.42629227,0.22879791,0.29655614,-0.33326095,-0.32951576,-0.08165081,0.9874612,0.5004601,0.16979556,-0.10099448,-0.0310816,-0.23528878,-0.43900463,0.007007781,0.824142,0.5349328,0.0066923904,0.09061114,0.35293266,-0.06221499,0.12004174,-0.13104956,-0.40621802,-0.1494944,0.13308622,0.61243963,0.29441842,-0.05330067,0.24518338,-0.08333506,0.33654246,-0.28573492,-0.40318674,0.3339438,0.71393627,-0.24597801,-0.24129058,0.37532958,0.42931437,-0.3898346,0.33714586,-0.74860096,-0.4629481,0.5284705,-0.16999362,-0.62130386,0.09758859,-0.2703623,0.08425285,-0.6718145,0.46459642,-0.44479683,-0.71367484,-0.52155644,-0.34044233,-3.3076947,0.18518531,-0.215418,-0.09271336,-0.20168938,-0.015634475,0.15447353,-0.41872382,-0.17615925,0.08035611,0.084069,0.57596827,-0.030580431,0.098229475,-0.42086548,-0.18153465,-0.10008704,0.42733827,-0.05396573,0.13952453,-0.192099,-0.07444574,0.17685196,-0.09765615,-0.48709726,0.069743276,-0.67409235,-0.31107065,-0.3169145,-0.4348235,0.012522014,0.7087452,-0.65231025,0.2296672,-0.1267985,0.11828115,-0.16521505,0.28914258,0.4014553,0.18258159,-0.0052754795,-0.14521667,-0.023981094,-0.50189036,0.54319173,0.22865714,0.2913022,0.49836206,-0.0011727916,0.06784016,0.35018834,0.3940089,0.055980273,0.8204805,-0.09349216,-0.00504845,0.44689423,-0.07133753,-0.3386469,-0.52706945,-0.14978926,0.07057405,-0.30590105,-0.4049376,0.11467187,-0.23095179,-0.7622345,0.42496857,0.16662346,-0.049184527,-0.12920308,0.4045089,0.2148339,-0.24289964,-0.10451155,-0.018192353,-0.03335152,-0.453145,-0.4191522,-0.6804687,-0.5334342,0.006818754,0.8982607,-0.17287013,-0.12209291,0.14952004,-0.048177335,0.0027156025,0.33320966,0.22771084,-0.18086758,0.33522612,-0.050148547,-0.6793173,0.52088654,-0.19476438,-0.28620276,-0.5281423,0.36036316,0.56121004,-0.6437866,0.37842163,0.36874145,0.056448996,-0.4800508,-0.4164464,-0.09394203,-0.027598348,-0.14420049,0.18490171,-0.0908648,-0.8190245,0.2750173,0.02679182,-0.25247225,-0.6195173,0.4868608,-0.1010406,-0.1348329,0.12763794,0.43642864,0.19921698,-0.06281118,-0.16253214,0.059571493,-0.5729278,0.11711647,0.14403747,0.056207117,0.6605806,-0.1430573,-0.30841723,-0.590121,-0.022378197,-0.61488616,-0.22196908,0.15577616,-0.17959788,-0.12413306,0.42754275,-0.14948475,0.40865812,-0.056616094,0.30434155,-0.09522454,-0.31859413,0.42611647,0.3727893,0.39559028,-0.25979772,0.8290323,0.09336852,0.019202795,-0.09038323,0.29657826,0.5334333,0.19841197,0.5490221,-0.25003046,0.08163113,0.11558982,0.8588645,0.28044525,0.38019603,0.22501609,-0.09421318,0.2447281,-0.11248016,-0.047420856,-0.014293308,-0.56130797,0.0105699105,0.017857943,0.036019754,0.4898655,0.041382875,0.6238104,0.035428405,-0.31673366,0.096321456,0.04793542,0.08127872,-1.1949561,0.22648014,0.13227156,0.8500579,0.15980431,0.09534816,-0.06541104,0.6650504,-0.22770788,0.073661186,0.21846727,-0.08067693,-0.093092225,0.58763504,-0.6526132,0.4451664,-0.057506654,0.002379011,0.119590506,-0.08086438,0.34100217,0.76742035,-0.2581999,0.037913885,-0.028913515,-0.2130945,0.031748567,-0.44219118,0.35966352,-0.075115964,-0.27911592,0.43481565,0.42746907,0.30065614,-0.24225152,0.00026058298,0.23523162,-0.028748006,0.26575556,-0.112463124,0.10917677,-0.28642294,-0.17922391,-0.15958226,0.6252933,-0.22525157,0.22358155,0.15666273,-0.113909885,0.23146793,0.2186339,0.04742134,0.010493478,-0.6475431,0.100179434,-0.23732972,-0.5453006,0.5394917,-0.34364194,0.20984162,0.18483195,-0.05862451,-0.14263198,0.5179878,0.25475377,0.64518696,0.13808744,-0.21077749,-0.41567093,-0.18526863,0.06218264,-0.4463188,0.18356773,-0.21156928,0.1260928,-0.6452613,0.26554915,-0.3396227,-0.19614543,0.27808633,-0.24609147,-0.09978269,0.4127345,0.19389065,-0.041214205,0.60963994,-0.19518448,-0.25403205,-0.016332593,-0.073763095,0.21839952,0.06798741,0.06371888,-0.12145685,-0.20884116,-0.14494093,0.12491239,0.12610286,0.21324308,0.30418062,-0.03279068,-0.42489937,0.15757506,0.20362003,0.24959531,-0.09293713,0.10321683,0.16332023,-0.58423394,-0.4312404,0.09097761,-0.08029231,0.267532,0.16596356,-0.3596894,0.7862321,-0.087496065,0.9830977,0.036437493,-0.43248472,0.15797679,0.54032797,0.12924942,-0.0036453712,-0.27402514,1.008823,0.5234376,0.05026675,-0.059138324,-0.26371577,-0.026141133,0.28847665,-0.23081125,-0.20338161,0.017785424,-0.598695,-0.13267492,0.116412,0.46065181,0.02927853,-0.16969517,-0.19421197,0.20694752,0.1216714,0.22812101,-0.76112777,-0.08338213,0.18723807,0.21602295,-0.22824714,0.1783329,-0.19461922,0.5041322,-0.71311957,0.26065183,-0.32919738,-0.16644038,-0.30285287,-0.19147597,0.23999791,-0.047993183,0.5048063,-0.19981171,-0.2731422,-0.14504376,0.3593752,0.27911967,0.19246228,0.7142113,-0.16205658,-0.06717182,-0.102221735,0.62236226,1.2516986,-0.35131904,-0.06746069,0.18887256,-0.5145733,-0.42425102,0.120689794,-0.5873166,0.22762778,-0.030672224,-0.39337566,-0.17301223,0.16374603,0.25941437,-0.04000615,0.24320044,-0.62475884,-0.1593512,-0.10477437,-0.6043115,-0.2907402,-0.32702342,0.45728728,0.52916014,-0.12551208,-0.25624868,0.029577902,0.36732954,-0.30753618,-0.92701894,-0.004242944,-0.14658572,0.2567586,0.13476194,-0.3570266,-0.0053728437,-0.059773836,-0.45706487,0.08564754,0.26463488,-0.3934939,0.04898255,-0.22366594,-0.013499507,0.529704,0.08724078,0.017532097,-0.74837583,-0.5555936,-0.7031875,-0.6387165,0.34401506,0.36181122,-0.07074655,-0.4449014,-0.29306445,-0.24591593,0.037291218,0.0048737866,-0.37538677,0.21541527,0.29751968,0.52601856,-0.25358576,-0.8943006,0.09671312,0.07230294,0.003184672,-0.48486564,0.12684797,-0.17013611,0.84661305,0.119189285,-0.3059342,0.2861015,-0.56602633,0.28196913,-0.41348648,-0.2653544,-0.7018477,0.12046893 -610,0.41211843,-0.15607926,-0.47161123,-0.15288071,-0.24370454,-0.21236633,-0.15624626,0.38315123,0.24206653,0.018989794,0.2087587,-0.3220966,-0.05677543,0.5484154,0.069185235,-0.9492224,0.07847778,0.24001956,-0.6635856,0.4766679,-0.4974204,0.17537497,-0.24104346,0.494316,-0.037069622,0.26365715,0.2410995,-0.15572414,0.10856001,0.06678739,-0.016542912,0.25667545,-0.73144764,0.10301983,0.13445807,-0.2930175,0.13679016,-0.28551835,-0.42380124,-0.72379786,0.12667519,-0.4472547,0.4630374,0.27016118,-0.3091986,0.11488702,-0.09149185,0.5509625,-0.3815141,0.093845844,0.19127974,-0.06525883,0.15882252,-0.38575935,-0.19142021,-0.42202428,-0.55668604,0.023506897,-0.6404829,-0.35614678,-0.14850444,0.10563822,-0.3567301,-0.21303254,-0.045159645,0.33751705,-0.4129597,0.20267668,0.37700903,-0.12524381,0.19589706,-0.33526665,-0.06328095,-0.0984957,0.10021362,-0.010847948,-0.20985356,0.3405276,0.066612385,0.3786751,-0.09691932,-0.1612292,-0.25158525,-0.021490475,0.020928198,0.7172432,-0.14742164,-0.28069866,-0.14710371,-0.0119152395,-0.28482604,-0.048797227,0.07869377,-0.60781485,0.028699728,0.04376068,-0.21422544,0.41909882,0.43071157,-0.46451676,-0.43060982,0.35385817,0.56304127,0.17136294,-0.1343349,-0.028368868,0.21868826,-0.5665262,-0.20048738,0.14680097,-0.12996624,0.36152768,-0.03185881,0.27476886,0.78188366,-0.253621,-0.02909655,-0.09442463,0.060360238,0.19419529,-0.31316206,-0.18868436,0.26844406,-0.44961292,0.009111093,-0.14775842,0.8497963,0.23808195,-0.6703949,0.5212359,-0.6853018,0.16018362,-0.19928603,0.52495897,0.69155425,0.22863096,0.22076502,0.52480286,-0.3814921,0.21133427,-0.06460252,-0.41357535,0.33737087,-0.12742795,0.22277997,-0.577939,-0.19075552,-0.11038043,-0.13210101,0.050533775,0.2806052,-0.5860692,-0.11541615,0.18988802,0.9948359,-0.31360877,-0.03173336,0.2102177,1.0288895,0.9127651,-0.06325156,0.9786033,0.45663044,-0.21600766,0.49398187,-0.4886777,-0.72239316,0.15822837,0.27819628,-0.26652768,0.46768397,0.04500849,-0.09762621,0.46730116,-0.14525115,0.20696999,-0.21935548,0.37959635,0.1837534,0.061761748,-0.2993228,-0.2985693,-0.09144511,-0.12332382,-0.100009464,0.39779463,-0.34933242,0.051934242,-0.14560457,2.0971909,0.15236232,0.15082711,0.046943925,0.72193414,0.23834354,-0.13153139,-0.19845852,0.4590868,0.17161714,0.19327493,-0.587266,0.30651826,-0.28412697,-0.36619776,-0.11104704,-0.3001026,0.13507734,-0.1245035,-0.46212494,0.046584968,0.080184154,-0.040600196,0.5443663,-2.6405087,-0.23550302,0.09127493,0.4605035,-0.31519318,-0.24927591,-0.19490057,-0.32562244,0.1127112,0.4023176,0.4633784,-0.58948654,0.59367853,0.4181004,-0.34452638,-0.1250363,-0.54527915,-0.04132676,-0.07115263,0.32884547,-0.0807607,-0.0010813231,0.034074727,0.2529055,0.3142359,-0.17703713,0.0021413767,0.25895578,0.3832939,0.18496938,0.40221146,-0.031863216,0.30480188,-0.34730604,-0.22782354,0.26106352,-0.27752677,0.23587795,0.0067736264,0.037343454,0.36196962,-0.1834898,-1.0246395,-0.3975112,-0.0603905,0.9585394,-0.44143477,-0.1594919,0.25273064,-0.11631984,-0.033149734,-0.16064501,0.24897575,0.055787142,-0.10532215,-0.6991318,0.22206949,-0.071456656,0.31414372,0.21190895,-0.055005584,-0.13104989,0.48836955,-0.07909222,0.1548335,0.25516975,0.18099453,-0.1670631,-0.48848403,0.16344275,0.67982966,-0.003916437,0.1521956,-0.22831091,-0.22056888,-0.11235457,-0.009580385,0.053581342,0.31112537,0.7989569,-0.16896936,0.09021434,0.41454637,-0.25883907,-0.091600396,-0.3087216,-0.4752858,0.14925107,0.08934424,0.499802,0.83566207,-0.16658163,0.55161947,-0.022570247,0.027534338,-0.16540915,-0.3852768,0.36533478,0.9388511,-0.18283202,-0.05137551,0.35187635,0.42197388,-0.626545,0.42204884,-0.68464476,-0.16032459,0.60669893,-0.2455031,-0.2670151,0.15226658,-0.21867366,0.02900085,-0.7406652,0.5961458,-0.19269952,-0.13112353,-0.58123356,-0.17629443,-3.832935,0.33018288,-0.30744007,-0.20324421,0.11352716,0.28877485,0.119591855,-0.66453195,-0.21061206,0.04929262,0.050043866,0.5057121,-0.1292146,0.21972452,-0.37161398,-0.26366445,-0.21462299,0.2138537,0.08028477,0.2832984,0.17425181,-0.45390186,0.06586149,-0.13039072,-0.24600679,0.23653013,-0.79509854,-0.41837275,-0.18489288,-0.7832971,-0.27844775,0.72675097,-0.20284532,-0.022972269,-0.2917888,0.0035207977,-0.11781669,0.47262174,0.30567124,0.042665698,0.022331,0.0057637203,-0.24181728,-0.43854332,0.092718795,-0.0018284415,0.44180024,0.21843149,0.13611864,-0.011008512,0.7897995,0.4746946,0.18895578,0.53656393,0.520317,-0.22251816,0.28527912,-0.4125515,0.030981584,-0.373042,-0.47162792,-0.19033824,-0.25913194,-0.49975178,-0.010720941,-0.2814512,-0.5016641,0.65247905,-0.1697414,0.06478394,0.17939347,0.19571644,0.38032663,-0.17719902,-0.109787315,-0.0666719,-0.124187894,-0.49123278,-0.18297166,-0.6313057,-0.5567451,0.7497997,0.8484028,-0.4113003,-0.098524526,-0.03357717,-0.16802905,-0.14677711,0.077584125,0.065753266,0.25432837,0.18358222,-0.12664284,-0.64179647,0.2865811,-0.12492239,-0.050536633,-0.72986245,0.07703497,0.77904683,-0.7267357,0.6361156,0.026550086,0.17419355,0.23838297,-0.41319713,-0.33017722,0.34341872,-0.123157784,0.16272664,-0.14693294,-0.7797477,0.26565886,0.4396958,-0.6180952,-0.6457425,0.4292388,-0.053995956,-0.45055148,-0.09302478,0.23881713,0.17348637,0.03112811,-0.3907008,0.29905903,-0.6585723,0.056105614,0.21634273,-0.10531329,0.4110758,-0.003135226,0.029943444,-0.5432979,0.06584911,-0.35361984,-0.5134382,0.3006178,0.13064776,0.081253305,0.307886,0.12920162,0.24232188,-0.16117775,-0.013253703,0.079384625,-0.18513441,0.47521695,0.437981,0.4149524,-0.5490939,0.53347117,-0.022340585,0.089913905,0.17687148,-0.06742913,0.38491222,0.03494534,0.36975124,0.14322966,-0.20216517,0.22802506,0.84237045,0.25896636,0.6563828,0.098151416,-0.019935422,0.32685068,0.054256137,-0.019305099,0.13950667,-0.27194393,0.014825425,0.15764295,0.3359829,0.59179735,0.16345789,0.30274776,-0.11502547,-0.49135092,0.12023151,0.38244885,0.07989465,-1.0421044,0.18507509,0.36714217,0.5569339,0.5323475,0.20289169,0.08581311,0.6168079,-0.15637921,0.13760221,0.14674239,-0.25243026,-0.668003,0.6629603,-0.62498534,0.499907,-0.18875322,-0.0091259265,0.029699434,0.049490735,0.31514466,0.45077142,-0.159356,-0.13699475,-0.105403535,-0.41631863,-0.19039312,-0.3869875,0.4465388,-0.5632672,-0.3306719,0.39052287,0.623554,0.10960722,-0.19704928,-0.033340253,0.038297597,-0.13675112,0.2502966,-0.09500055,-0.13447298,0.22024494,-0.79075056,-0.27627307,0.67970973,-0.39422658,0.053547528,-0.176119,0.107576415,0.34887332,-0.42837515,-0.20226689,0.03683659,-0.65732986,0.24071763,-0.12822194,-0.36521712,0.6320546,0.10047775,0.19937585,0.097433425,0.072473936,-0.36025518,0.6450077,0.051084276,0.7730898,-0.0204059,-0.10287185,-0.48067915,0.1592684,0.0041057114,-0.1060826,-0.06151452,-0.47379658,-0.032668218,-0.49797535,0.33106402,0.029839927,-0.2909259,-0.2126767,-0.14928247,-0.020458883,0.70302963,-0.09984701,-0.14510436,-0.34077236,-0.38696614,-0.2938727,-0.052649964,-0.05779113,0.2836084,0.13385591,-0.24937734,-0.042572424,-0.23321702,-0.12445646,0.6215126,-0.0067796707,0.37130177,0.3402684,0.45112723,-0.20764971,-0.22200957,0.11484866,0.43361044,-0.015399185,-0.044126164,-0.2777235,-0.118239425,-0.36743668,0.13125,-0.32444084,0.28742248,0.14924483,-0.5998743,0.8931628,0.09041163,1.3917384,0.017509267,-0.18882689,0.27958018,0.34924123,0.2590576,0.19048953,-0.59615195,0.93777794,0.6917996,-0.11668228,-0.3733261,-0.24953395,-0.6062748,0.2485753,-0.37774116,-0.16293867,0.11505723,-0.57266086,-0.16860789,0.2263956,0.27821,0.15025215,-0.14164992,0.112047486,0.13258623,0.14352816,0.14866069,-0.39497498,-0.09819169,0.15375605,0.50816053,0.10616877,0.273347,-0.38258684,0.44028953,-0.39882344,0.3509324,-0.51025325,0.086726636,-0.1193906,-0.21307902,0.19975573,0.21249677,0.38160193,-0.24638166,-0.25453663,-0.122038245,0.4861003,0.3143936,0.2408548,0.7690369,-0.19220167,-0.040521294,-0.0698719,0.53206515,0.8827433,-0.36192867,-0.36577204,0.4891817,-0.20395827,-0.9361385,0.33539692,-0.3229569,-0.07187354,-0.16761364,-0.33302638,-0.55241627,0.20260796,0.027081447,-0.06037918,0.011012581,-0.62275547,-0.1986175,0.1959558,-0.37926236,-0.24510002,-0.4085827,0.22734575,0.9311423,-0.30710307,-0.30027273,0.086574346,0.3218542,-0.11736769,-0.46780795,-0.1377504,-0.57279855,0.17690995,0.2729106,-0.23583741,-0.05965869,0.1129284,-0.41836455,0.09922966,0.28152773,-0.38230804,0.19493446,-0.011921059,-0.008444553,0.973242,-0.18076023,-0.06710827,-0.72239685,-0.5378361,-1.0075186,-0.43589133,0.7345921,0.13220674,-0.09994722,-0.5875983,0.04829488,0.15829249,-0.39644116,-0.11865913,-0.6313482,0.30601263,-0.018823607,0.20542021,-0.018559432,-0.93303895,-0.018370371,0.31290185,-0.30401677,-0.8781653,0.41258004,-0.3451286,1.077148,-0.0991547,0.058368444,0.23174238,-0.15583509,-0.06957403,-0.4940072,-0.4650258,-0.7168165,0.0349686 -611,0.39145285,-0.21813066,-0.47650173,0.0025174986,0.15215217,0.09752135,-0.07173398,0.47080785,0.22729169,-0.4599621,-0.062143855,-0.32216915,0.036671855,0.43057644,-0.19253254,-0.3230336,0.04205855,-0.021973848,-0.39991018,0.40330407,-0.45893717,0.19924678,0.05663868,0.3949569,0.16034736,0.3233463,0.22795394,-0.17462625,-0.14916536,-0.27404034,0.04118413,0.07472832,-0.33691514,0.37762007,-0.09069061,-0.14493324,0.21410912,-0.41069746,-0.52626795,-0.66553026,0.25872582,-0.64522165,0.1772685,0.14674315,-0.11884297,0.056179818,0.04022093,0.17950581,-0.32813746,-0.21319373,0.15144752,0.061412178,0.026504664,-0.19487652,-0.05007251,-0.10889594,-0.3879049,0.07392621,-0.33895397,-0.194807,-0.21030356,0.14418305,-0.29867423,0.03650572,-0.13991138,0.479002,-0.3823476,0.040772017,0.06872116,-0.38217852,0.2293063,-0.5279951,-0.43431303,-0.060389068,0.1372054,0.008799881,-0.11353293,0.20739841,0.15437078,0.32576373,-0.034509327,0.14450066,-0.26397592,-0.31998587,0.36079195,0.4830808,-0.050714713,-0.56430733,-0.053717878,-0.11891627,0.06151486,0.0778225,0.20907417,-0.5067546,-0.15376468,-0.06838889,-0.34331954,0.19224915,0.5678208,-0.2760811,-0.14732678,0.19981398,0.31727824,0.16382948,-0.11260009,-0.14175364,-0.012209437,-0.450789,-0.14385563,0.003076567,-0.10213229,0.47195113,-0.07986982,0.42411754,0.6218213,-0.21738425,-0.0037643635,0.040946312,0.09416739,-0.19490239,-0.33060673,-0.11501341,-0.039851125,-0.22077097,0.0030586927,-0.18918365,0.9250384,0.27589658,-0.5677492,0.49767017,-0.42247164,0.14585426,0.01704027,0.6030757,0.42581046,0.23730366,0.39579093,0.629819,-0.4435785,0.050387915,-0.14602467,-0.36993524,-0.059029076,-0.07322097,0.16609089,-0.2547119,-0.04624451,0.22936326,-0.14740148,0.013887816,0.3482134,-0.3291167,0.0067256186,0.18576226,0.8063328,-0.2170901,0.0957427,0.54816157,0.9388968,0.8670619,0.1100368,1.1527009,0.04204674,-0.37219912,0.13733242,-0.2005015,-0.8955588,0.33946127,0.38275564,0.57917404,-0.053940687,0.13087437,-0.11879889,0.3278626,-0.46899077,0.1931127,-0.09418957,0.53814375,0.19327945,0.053339563,-0.28499582,-0.38052306,-0.1704461,-0.1362481,-0.006441639,0.14860997,-0.15140411,0.26947695,0.038394697,1.8811809,-0.17020294,0.16739652,0.19736488,0.56189144,0.124801144,-0.12491496,-0.06348653,0.4530688,0.18644848,0.03702482,-0.5954818,0.19334868,-0.1517395,-0.5003856,-0.056420386,-0.29294887,-0.14048265,0.08171614,-0.23357725,-0.15594536,-0.13236138,-0.34414726,0.35079002,-2.9158733,-0.2534158,-0.051261894,0.32298422,-0.27880353,-0.18699512,-0.09590356,-0.47358888,0.41199324,0.3687682,0.52431417,-0.72652113,0.08988368,0.459507,-0.27523878,-0.26110822,-0.548634,0.08492216,0.024021883,0.2692517,-0.0011430887,0.039168928,-0.27665088,-0.04637549,0.22328351,0.011746028,0.06629369,0.31205165,0.23928033,0.069614284,0.44961944,0.0347588,0.41196358,-0.35801667,0.044749543,0.31561285,-0.425491,0.29964516,0.004878693,0.118245676,0.36234173,-0.452487,-0.5406474,-0.4942481,-0.35223883,1.2548999,-0.2360265,-0.48895285,0.37962535,-0.36547723,-0.31132507,-0.27009863,0.4795157,-0.10118936,-0.10884265,-0.7766828,0.08712174,-0.16381058,0.35221392,-0.04492239,-0.114050336,-0.3143139,0.67819256,-0.07235889,0.5349141,0.3666979,0.0020649363,-0.32227919,-0.3405918,0.057383418,0.84884495,0.2989798,0.09673422,-0.06893931,-0.14576952,-0.24259117,-0.2736964,0.073568776,0.5445429,0.63524354,-0.0025602807,0.17802572,0.3244434,-0.056140907,-0.02630441,-0.06847758,-0.24413157,-0.17017816,-0.07779138,0.6557447,0.6496302,-0.23289442,0.31806943,-0.15498734,0.30445167,-0.112710424,-0.31734127,0.42738375,0.41795382,-0.114493534,-0.17702524,0.424191,0.38710743,-0.4297528,0.2565389,-0.4324045,-0.30693105,0.48173,-0.099731125,-0.4003021,0.3806814,-0.29889053,0.17687438,-0.87125814,0.28097066,-0.3106095,-0.41247156,-0.47918144,-0.16419147,-3.0796645,-0.016022168,-0.19957222,-0.2710546,-0.0726108,-0.008882882,0.037651993,-0.38989368,-0.47771567,0.090541765,0.09698307,0.4442924,-0.104851194,0.017295433,-0.116403386,-0.25269228,-0.42782655,-0.047024947,-0.060618557,0.42435122,-0.016600784,-0.37993607,-0.010442393,-0.16439143,-0.25653908,0.24634908,-0.44632837,-0.56089115,-0.04477292,-0.37322256,-0.51491636,0.59317845,-0.24723743,-0.04891102,-0.088048235,-0.08177516,-0.30106094,0.30714878,0.14146924,0.085353054,-0.10271395,-0.032843538,-0.21796623,-0.25035793,0.19815603,-0.045828912,0.30574635,0.37876275,-0.053534415,0.15269186,0.2873915,0.5481732,-0.034698837,0.6329311,0.26580015,-0.03492379,0.29677418,-0.3563175,-0.29244852,-0.3028056,-0.101358645,0.2688988,-0.33264357,-0.50569236,-0.10972068,-0.2533918,-0.49846223,0.41893637,0.13490807,-0.11011732,0.12999447,0.071380936,0.50437456,0.18261495,-0.041730028,0.13072923,-0.02659583,-0.77112234,-0.40487385,-0.7927611,-0.37501717,0.3270406,0.76866746,-0.23824467,-0.14457512,0.048562884,-0.43174362,0.019428972,0.062233474,0.015239805,0.14922997,0.42696598,-0.081468835,-0.58474976,0.53117925,-0.12120985,-0.26428267,-0.4550164,0.16932242,0.6889184,-0.73101354,0.5470432,0.13223389,0.20404895,-0.0950695,-0.2804887,-0.27029335,-0.13327655,-0.2032838,0.27685526,0.12883335,-0.5882453,0.39033735,0.35571772,-0.08143974,-0.7489234,0.24081549,-0.047494035,-0.28613696,0.043412667,0.36195886,0.03957941,0.08954319,-0.09985896,0.18685979,-0.38146874,0.26878172,0.33258608,-0.1688887,0.4597705,-0.21566495,-0.14299099,-0.5301559,-0.076232985,-0.4695142,-0.29578573,0.2977572,0.22036386,-0.035335906,0.02696531,0.118363634,0.39696726,-0.18718778,0.057743624,0.023319472,-0.020943156,0.3022545,0.34459612,0.5507299,-0.41643584,0.5928116,-0.039118055,0.008279802,-0.03331832,0.055198446,0.18948695,0.25351685,0.28798166,-0.099615015,-0.28465268,0.28952596,0.84487164,0.20502919,0.48380074,0.08117839,-0.015039123,0.379025,0.113246195,0.16085984,0.07296197,-0.5071213,-0.02280068,-0.17313583,0.25354224,0.32449192,0.23903894,0.38013744,-0.08401803,-0.37660334,0.020621192,0.34607512,-0.07196079,-0.87988937,0.4165818,-0.0013558039,0.6941539,0.61416173,-0.13622645,0.12649514,0.67372763,0.03416627,0.14235121,0.057137366,-0.05318654,-0.59865546,0.5814896,-0.55674326,0.45979106,-0.12779592,-0.011804732,0.050339878,-0.04943445,0.4075356,0.62740827,-0.1510365,-0.07779474,0.12642597,-0.21300608,0.022125725,-0.5259213,-0.03218887,-0.59374964,-0.40674365,0.36204705,0.46863806,0.22520535,-0.1851298,0.10485571,-0.02369055,-0.07967914,0.22472389,-0.12900434,0.11249856,-0.071353994,-0.79598373,-0.24632007,0.5826943,-0.020180285,0.20505309,0.027407307,-0.28889793,0.29556605,-0.094939485,-0.011436572,-0.12128579,-0.48257595,0.06316248,-0.23022017,-0.45131907,0.20177555,-0.039527223,0.4024722,0.25561708,0.020614633,-0.21726483,0.38390842,0.10423791,0.79713947,-0.19836149,-0.2168315,-0.4449329,0.030934265,0.13999914,-0.1769135,-0.05636773,-0.22447623,-0.14572114,-0.51046467,0.5623233,0.1560116,-0.017187906,0.05196563,-0.23017432,-0.09369279,0.60761344,-0.14486924,-0.04845095,-0.17844321,-0.15082887,-0.14500394,-0.081908785,-0.053811606,0.17085226,0.3628472,0.028326131,-0.012220942,-0.15270191,0.0025697579,0.20947662,0.056123503,0.24681844,0.28913382,0.10204098,-0.37252814,-0.15320419,0.056213554,0.43835053,0.23260242,-0.07779924,-0.14595367,-0.5076343,-0.30171213,0.29825544,-0.164924,0.3289429,0.1468939,-0.4058723,0.5964636,0.09089314,0.96690273,0.049024608,-0.08363542,0.15185556,0.4682079,-0.03887135,0.066545114,-0.37848103,0.7765033,0.4544547,-0.19043352,-0.16491748,-0.30615076,-0.030180344,0.13508366,-0.15356845,-0.06524752,-0.06491485,-0.50159985,-0.20759334,0.017737687,0.24688278,0.15310396,-0.11252535,-0.043980792,0.2145551,0.058710776,0.33756006,-0.36092183,-0.25677273,0.25128314,0.13626918,0.050788563,-0.012278814,-0.42745063,0.5467633,-0.56569135,0.19951919,-0.17935053,0.1013434,-0.09069916,-0.25807276,0.14708431,-0.06513761,0.36918932,-0.48442173,-0.38281283,-0.37320423,0.41310963,0.24607341,0.22242682,0.5329387,-0.10412554,-0.091489516,0.16591732,0.63393825,1.123995,-0.14362134,-0.05767582,0.38428178,-0.2795862,-0.5426896,0.2995915,-0.20509744,0.1370485,0.020734727,-0.19851948,-0.66388357,0.25207308,0.30910012,-0.05486061,-0.012524871,-0.5788106,-0.36955553,0.25315574,-0.4743582,-0.23402461,-0.56810385,-0.16051014,0.6256255,-0.3011449,-0.1200566,0.19111457,0.16165155,-0.42122012,-0.53427,-0.12392323,-0.42545822,0.3714334,0.023262732,-0.24464296,-0.36230367,0.16554826,-0.33687797,0.081858024,-0.15448584,-0.34646904,0.047422472,-0.2990915,-0.18468414,0.90812963,-0.18282866,0.16145553,-0.5041593,-0.4225075,-0.68632114,-0.36211586,0.7296412,-0.21053864,0.00691805,-0.40834618,-0.1254107,0.024023,0.034197196,-0.10611624,-0.28206697,0.46917862,0.078009754,0.32036883,-0.028514963,-0.7619054,0.26054317,0.07153439,-0.1176288,-0.52155626,0.5863864,0.0058124615,0.554979,0.091408335,-0.10431673,0.38011187,-0.47447363,0.05330475,-0.1896469,-0.30033937,-0.59022415,0.2705023 -612,0.30581814,-0.18538971,-0.42500803,-0.0972604,-0.25226155,-0.035548266,-0.1152522,0.5328977,0.1983725,-0.18382896,-0.15740538,-0.087992616,0.060353715,0.60599023,-0.13278213,-0.61519706,-0.13240777,0.07793736,-0.59981567,0.54410636,-0.5801276,0.44310918,0.09892787,0.40694776,0.012097806,0.46818593,0.3001122,-0.1847888,-0.023508396,0.089453444,-0.06521887,-0.009701254,-0.31107044,0.104286954,-0.05889811,-0.2770048,0.18715668,-0.4109271,-0.19475083,-0.738978,0.22389671,-0.6373901,0.469933,-0.029120773,-0.3186238,-0.018718788,0.27601936,0.3782689,-0.40737644,0.031282492,0.14820863,0.008835473,0.00917694,-0.20373674,-0.029453704,-0.47855872,-0.44619003,-0.12124306,-0.5067662,-0.32927796,-0.032984756,0.16048063,-0.35512567,-0.0789366,-0.04790599,0.31726074,-0.41473898,-0.22298478,0.37232596,-0.16498102,0.3010283,-0.5049115,-0.030237615,-0.07040219,0.46226385,0.014912188,-0.062078793,0.42675075,0.30735454,0.37117758,0.14892547,-0.27226117,-0.20273015,-0.19768442,0.08304321,0.48382875,-0.1478291,-0.34039775,-0.19730496,0.12581746,0.11751081,0.35456586,0.12820235,-0.050134506,-0.08033004,-0.09462941,-0.16308342,0.43772963,0.37423357,-0.1611832,-0.33966702,0.46909043,0.6753065,0.26190108,-0.21358517,0.02671889,-0.029626893,-0.53943044,-0.17446278,-0.06432671,-0.13507584,0.5104492,-0.16115414,0.1321866,0.78372633,-0.1986986,-0.0019766134,-0.020608097,-0.05976786,-0.12028531,-0.21589196,-0.1755109,0.10532328,-0.5919107,-0.054614026,-0.18003152,0.5679353,0.24951196,-0.5636098,0.38375273,-0.42586184,0.107635595,-0.06257929,0.6053668,0.623314,0.3311684,0.24225743,0.78075665,-0.33356136,0.095338225,0.08207574,-0.402837,0.21128877,-0.28078863,0.12935594,-0.5831963,0.009536402,-0.017615335,0.019918863,0.06165323,0.2950962,-0.54876834,-0.042641263,0.24993332,0.77199537,-0.2688286,-0.014982598,0.7159594,1.1887671,1.1073629,-0.041995235,1.1279433,0.22246194,-0.35434726,0.26876554,-0.43615666,-0.6162602,0.16571765,0.42179957,-0.22123735,0.42916822,-0.14700891,-0.106171645,0.38634685,-0.42063436,0.0858999,0.018217515,0.37313125,0.068503276,-0.14807375,-0.56723493,-0.18610898,-0.12639658,-0.0037368834,0.20510633,0.3122239,-0.30831414,0.4337537,-0.19018146,1.2854033,0.021235595,0.11828656,0.004947213,0.50272113,0.24625584,-0.1167711,-0.15296127,0.3880224,0.40053925,0.09084677,-0.5006354,0.34423795,-0.4374575,-0.47076967,-0.09791814,-0.329547,0.019694196,-0.06776556,-0.40401262,0.031968318,-0.048455946,-0.2991232,0.31506544,-2.9130197,-0.35877392,-0.18465199,0.23329923,-0.27615938,-0.08587229,-0.0491372,-0.47221023,0.3225719,0.2515846,0.5176659,-0.6120243,0.4166028,0.45751032,-0.4953792,-0.16790928,-0.65119886,-0.168627,-0.066173844,0.55262524,0.08272277,0.075519525,-0.0929975,0.35088745,0.6293191,0.07265227,0.14963529,0.20781024,0.28221065,0.13311979,0.48863024,-0.06089843,0.6190596,-0.27987882,-0.08298967,0.28409633,-0.2659727,0.23225696,-0.2278901,0.21309687,0.47012612,-0.3912488,-0.93915445,-0.5053643,-0.38996425,1.018034,-0.22840963,-0.1788753,0.38265684,-0.26903492,-0.04809952,-0.033264957,0.5281085,-0.14899829,0.07663973,-0.6525436,0.026917154,-0.0673031,0.059207793,0.00096307695,-0.11010574,-0.39577174,0.6087466,0.06846297,0.6662399,0.21596766,0.21817912,-0.24248813,-0.50797254,0.036431883,0.74708885,0.5228342,-0.07653475,0.0043195956,-0.1979399,-0.16754213,-0.13238047,0.035885923,0.47370216,0.91969097,-0.07860648,0.11560812,0.19052105,-0.06563455,0.07027991,-0.033535488,-0.18165834,0.10636884,0.116531186,0.42849293,0.67389965,-0.15987937,0.40949392,-0.19629775,0.4804726,-0.14285181,-0.5242905,0.5545789,0.6093797,-0.25725266,-0.038730502,0.51743776,0.47589418,-0.309295,0.46577668,-0.6694077,-0.24997279,0.5994984,-0.17311397,-0.31599495,0.22195232,-0.1812959,0.20643692,-0.92291653,0.39335746,-0.35472903,-0.50852615,-0.46586064,-0.10706364,-3.5678196,0.14248967,-0.18682969,-0.22374837,-0.09329666,0.053940576,0.31485152,-0.8349704,-0.5889563,0.17671241,0.22235036,0.6856866,-0.067624815,0.056025583,-0.25459146,-0.26939207,-0.1672025,0.26194653,-0.034134846,0.22226283,-0.043528106,-0.52725947,-0.05300499,-0.10769081,-0.68519086,0.13109325,-0.5762554,-0.44297844,-0.1735914,-0.6304841,-0.2673536,0.71679896,-0.1514274,0.09048275,-0.17577717,0.10103103,-0.12518847,0.17501004,0.10474666,0.10818331,0.1031184,-0.03623737,0.1771648,-0.36199754,0.36132783,0.10269802,0.4813457,0.14329131,-0.07681726,0.26009017,0.61742055,0.65358603,-0.20235644,0.8782008,0.4088921,-0.12874037,0.23552613,-0.30774668,-0.16126396,-0.4968025,-0.56306136,-0.04887523,-0.35010186,-0.6525281,-0.035438947,-0.34035665,-0.73063266,0.5688266,-0.015011822,0.40161952,-0.1632524,0.07104779,0.3680466,-0.3655718,0.11202147,-0.07220618,-0.18976723,-0.5102882,-0.183285,-0.6964251,-0.56331986,0.032660194,0.851631,-0.42457074,0.1035725,-0.18159845,-0.3083479,0.09536208,0.021340264,-0.04277692,0.21290493,0.24557172,-0.09960544,-0.7322927,0.47994336,-0.16336386,-0.048803955,-0.44863015,-0.006585317,0.6711894,-0.6106744,0.50681055,0.34595484,-0.062904455,-0.10979607,-0.52759886,-0.15545857,0.06263027,-0.03274652,0.41430995,-0.024883565,-0.7347236,0.49428558,0.2897098,-0.61791795,-0.62883204,0.40895844,-0.078682765,-0.27779636,-0.06879854,0.29500952,0.1676584,-0.043391388,-0.445278,0.21363644,-0.38245365,0.24957773,0.21068028,-0.06260144,0.41830084,-0.035976615,-0.16508529,-0.7832181,-0.08441361,-0.5173942,-0.21967754,0.29697165,0.018963741,-0.011662317,0.064399526,0.2250512,0.3057364,-0.28221014,0.1568717,0.10870361,-0.43404007,0.27160415,0.43369833,0.40627363,-0.34321132,0.5128115,0.1580974,-0.21683232,-0.022066662,-0.11718941,0.43835422,0.04682546,0.38464254,-0.20163345,-0.13757747,0.52799684,0.67879784,0.09437994,0.3071862,0.14552006,-0.16281162,0.2487578,-0.07367621,0.18254833,0.14190066,-0.35140195,0.025354518,-0.06895642,0.1559786,0.594862,0.36855382,0.23245016,0.100418635,-0.27692157,0.08118538,0.2057642,-0.016632905,-1.2775002,0.5837813,0.30384827,0.7494659,0.40548056,0.13398553,-0.19052815,0.7120964,-0.19352989,0.046108983,0.48197195,0.022514751,-0.56977654,0.6815319,-0.79030323,0.48240253,0.019266266,-0.123102374,0.13434123,-0.06559489,0.39740863,0.77705497,-0.09316175,0.047217455,-0.045213647,-0.19777603,0.07690753,-0.28376478,-0.011424533,-0.49199912,-0.3520449,0.54369384,0.4369503,0.18814178,-0.017718708,-0.052606147,0.12806614,-0.15319379,0.29873595,-0.11774312,0.015775422,-0.0022309977,-0.56500757,-0.19265762,0.44156286,0.046944443,0.19197628,-0.1969382,-0.20400569,-0.07840268,-0.2788394,-0.008829244,0.043076497,-0.6544255,-0.08766328,-0.18789144,-0.32368135,0.5115391,-0.3967747,0.24423826,0.089648426,0.11052697,-0.19990288,0.21553817,0.092029884,0.6546202,-0.026643869,-0.34232855,-0.25911137,0.14803325,0.16876402,-0.27868396,0.16950719,-0.46219084,0.069944374,-0.57348686,0.6761707,-0.18650202,-0.2679202,0.04114657,-0.37179193,0.019657446,0.4886228,-0.16518746,-0.30675796,-0.1759899,-0.054048445,-0.33818313,-0.039703038,-0.28624058,0.24371949,0.26782766,0.04433332,-0.11356962,-0.07399945,-0.15410297,0.61166143,0.07915448,0.436749,0.25101894,-0.05984317,-0.16605027,0.025810016,0.23605861,0.3640065,0.27835113,-0.025034487,-0.45801014,-0.29654756,-0.23816599,-0.057819076,-0.16690227,0.19496918,0.002471779,-0.059376497,0.8268786,0.08600497,1.3723606,0.05305418,-0.3582758,-0.002629476,0.60415184,-0.14090152,0.026150975,-0.34544137,0.99476826,0.5552246,-0.28037566,-0.15671816,-0.45808968,-0.056453783,0.43949246,-0.39915228,-0.17579043,0.029928327,-0.5652247,-0.39536566,0.29562002,0.17507564,0.20512517,-0.05579704,-0.01846723,0.014119496,0.09060391,0.42705482,-0.5872382,-0.12216608,0.2890144,0.3112121,-0.14692318,0.15024625,-0.3594344,0.5365342,-0.67046016,0.25277358,-0.30888966,0.20575707,-0.30146104,-0.50553197,0.093691126,0.07349761,0.28378624,-0.22133754,-0.5178199,-0.051367547,0.473604,0.055371065,0.015744414,0.6172742,-0.32252893,0.029694377,0.07492854,0.523375,1.1555703,-0.37911898,-0.030229261,0.32805172,-0.43135506,-0.8023549,0.36226004,-0.33413118,-0.01868253,-0.28030637,-0.4502411,-0.59357595,0.29326764,0.107458964,0.048346575,0.051761318,-0.35880637,-0.09316904,0.2535542,-0.34371784,-0.32547835,-0.32306919,0.34768432,0.5601017,-0.2624698,-0.42489275,0.03687838,0.3413481,-0.344031,-0.4920916,-0.14681242,-0.2031525,0.3470963,0.12100719,-0.3502602,-0.07504882,0.083763525,-0.43097854,0.25852564,0.24877954,-0.40007114,0.13550906,-0.17512456,-0.11029369,0.8636491,-0.22368988,0.0069216746,-0.62822163,-0.44040933,-0.87362087,-0.46159643,0.39454433,0.11091038,-0.042376213,-0.4476986,0.044996776,-0.090048335,0.055912357,0.038403135,-0.3418943,0.1810147,0.054118905,0.49534956,-0.29604128,-0.85183483,-0.021049341,0.15090677,-0.13596888,-0.6558925,0.72074795,-0.047621686,0.8181376,0.07717812,0.049616035,0.14875741,-0.25435165,0.080504656,-0.32634187,-0.0755525,-0.61538786,0.03960339 -613,0.62303275,-0.09682106,-0.6748648,-0.18741965,-0.68758255,0.20698069,-0.31987575,0.022289569,0.42176884,-0.52026194,-0.049931634,-0.3248845,-0.083246395,0.2437027,-0.3073003,-0.79609036,-0.012565266,0.32229063,-0.53228134,0.36913717,-0.38672316,0.385596,0.11618051,0.30734298,-0.23960747,0.15819573,0.12924843,-0.09698958,-0.0819965,-0.2519319,-0.0026193857,-0.037550177,-1.0249677,0.55861276,-0.32456812,-0.5301786,0.079664186,-0.53940135,-0.20059347,-0.5898441,0.43684253,-0.95240957,0.806451,-0.15548567,-0.10953713,-0.0906449,0.22540312,0.36526525,-0.13915218,0.2625388,0.21963467,-0.3649657,-0.11198339,-0.22772351,-0.48413637,-0.49036142,-0.6326031,0.046655167,-0.5350293,0.021332627,-0.24583411,0.3602868,-0.14210664,0.2729379,-0.24505797,0.05157907,-0.34878498,0.2720822,0.27982628,-0.125865,0.14799185,-0.42728502,-0.15655659,-0.115011476,0.28147027,-0.24441797,-0.2625059,0.30661762,0.2062313,0.7039758,0.21914119,-0.2718136,-0.32256722,-0.065576814,0.07226375,0.61265665,-0.11848171,-0.038894597,-0.46372202,-0.09983028,0.39705744,0.25673357,0.051421262,-0.3112671,0.23616624,-0.29614124,-0.28524217,0.6053869,0.5413983,-0.3935667,-0.18924569,0.42894182,0.46871567,-0.24337064,0.050056275,0.27825996,0.17288719,-0.5432901,-0.41873637,0.21055526,-0.14857484,0.44559687,-0.21415782,0.21099156,0.6562113,-0.2506084,-0.15549555,0.04442646,-0.09265859,-0.11220364,-0.21036862,-0.10863343,0.22882424,-0.6079493,-0.06835061,-0.25202802,0.88017267,0.08237037,-0.8172052,0.4575427,-0.6936431,0.19794728,0.008691118,0.49616614,0.63966006,0.64916176,0.13142481,0.94688135,-0.5855972,0.25540593,-0.1351828,-0.21376604,-0.013387192,-0.25565568,0.2281671,-0.38107443,0.23778263,-0.058442306,-0.020178087,0.0702312,0.63897246,-0.38007405,-0.19100012,-0.030284416,0.91900593,-0.48574308,-0.057901397,1.0378742,1.0872353,1.087636,0.09018639,1.6263305,0.32147315,-0.10796702,-0.2874466,-0.11163133,-0.84361684,0.20922647,0.2490666,-0.036572933,0.19690499,0.37377998,0.22252807,0.29510224,-0.2809628,-0.22255659,-0.07370193,0.31539658,-0.09694266,-0.08017797,-0.34974068,-0.27099216,0.11305303,0.047293246,0.06522903,0.420333,0.00023800405,0.57825,0.2301042,1.1567222,0.1029411,0.24540626,-0.04133348,0.24791361,0.15648274,0.028120099,-0.0757914,0.034222987,0.07500188,-0.0287448,-0.4758395,-0.091948204,-0.2560717,-0.23032285,-0.2649353,-0.03525936,-0.29097068,-0.28900412,-0.21014076,-0.4140772,-0.15505256,-0.35071155,0.6230802,-1.9379426,-0.40162727,-0.16278824,0.49778593,-0.20151268,-0.3646736,-0.23593432,-0.57017666,0.33402753,0.31192783,0.39959982,-0.4397918,0.66996664,0.41811106,-0.54085755,-0.05225648,-0.7084009,0.14733817,-0.093222335,0.15641531,-0.17390062,-0.36641037,-0.47947928,0.08150583,0.46917355,0.11001558,0.18825011,0.3299223,0.69073206,0.07871991,0.60165465,0.07079661,0.5361654,-0.63626146,-0.06575579,0.33055773,-0.5988613,0.275955,-0.038835015,0.030335952,0.58295745,-0.8858698,-0.87134206,-0.8864623,-0.44582283,0.83543664,-0.20780152,-0.41018727,0.23395209,-0.3344669,-0.39660132,0.021453792,0.32800958,0.039297745,0.11143887,-0.78018373,-0.15961064,-0.10506386,0.37182143,0.015784781,0.02521174,-0.4440641,0.6876663,-0.37124777,0.29200536,0.44687453,0.21484518,-0.21008658,-0.27375954,0.16243944,1.0427713,0.37526482,0.13763165,-0.28605893,-0.17434977,-0.22879194,-0.2190857,0.019041734,0.53618187,0.48700497,-0.17980823,-0.060229477,0.5180297,-0.17668293,0.13160156,-0.028846664,-0.39047515,-0.25560972,0.03521618,0.62400776,0.6899268,-0.056650337,0.24333547,-0.27986884,0.20749468,-0.31701833,-0.56790155,0.4199416,0.9789844,-0.0798915,-0.29417068,0.7722673,0.5395502,-0.33185577,0.5574708,-0.57525307,-0.49251243,0.21152438,0.09108124,-0.5662235,-0.21346043,-0.38026324,0.047088623,-0.94275343,0.23914424,-0.0615447,-0.7258012,-0.39106515,-0.34750798,-2.6579862,0.22816378,-0.14355473,0.0908508,-0.013092919,-0.12019786,0.11439329,-0.35720977,-0.8408914,0.1500595,-0.07191867,0.6021041,-0.124992564,0.4816247,-0.12628268,-0.16504063,-0.38139457,0.30413783,0.41233644,0.16778131,-0.104303904,-0.46465427,0.06260026,-0.28901494,-0.2738694,-0.046590425,-0.8497883,-0.30827478,-0.08921205,-0.53562635,-0.30976012,0.63504255,-0.42739585,-0.09840462,-0.51711965,0.0135711795,-0.31735396,0.31986752,-0.016713731,0.23308396,0.0816212,-0.23449282,-0.32909596,-0.27876306,0.384356,0.035189133,0.24267453,0.4213339,-0.45537966,0.052053176,0.3606967,0.72378784,0.14741379,0.9547877,-0.035507977,-0.16983381,0.31682163,-0.11650515,-0.4336365,-0.8148882,-0.18123052,-0.2774043,-0.5252831,-0.5049131,0.11576632,-0.5186594,-0.77297115,0.50004315,0.23184635,0.007185134,0.10512522,0.3865594,0.31889948,-0.36178267,0.07047914,-0.031358052,-0.2643247,-0.52731836,-0.59929186,-0.43079415,-0.517617,0.24174304,1.5485584,0.080979586,0.1279646,0.3318888,-0.16993882,0.145832,0.3133306,0.16067977,-0.0033080145,0.64977384,-0.02813756,-0.6001748,0.317755,-0.049467,-0.04052935,-0.590523,0.00022051009,0.72085303,-0.7550119,0.6573764,0.42094535,0.25849038,0.17520462,-0.50389713,-0.24072188,-0.24158353,-0.31942585,0.42779347,0.34775993,-0.747487,0.40852186,0.19245921,-0.30666742,-0.980241,0.35180032,-0.047622204,-0.14751373,-0.046436667,0.388515,0.5211142,-0.026583482,-0.12911092,0.21956429,-0.48311746,0.3549182,0.07162029,-0.039092127,0.25849745,-0.27279148,-0.39141515,-0.81100583,-0.25134948,-0.365667,-0.25046554,0.052831646,-0.10636438,-0.19153504,0.2201447,0.3838704,0.42606446,-0.39793682,0.1821084,-0.20561911,-0.3305963,0.18631147,0.39394206,0.55461085,-0.5201947,0.7225784,-0.07195567,-0.013109126,-0.289658,0.11150868,0.46161687,0.02986312,0.24975194,0.29641965,-0.116556734,0.10307003,0.7277775,0.23052764,0.14439608,0.19306192,-0.07804294,0.5967996,0.33093974,0.080866486,-0.14876038,-0.4623799,0.09353601,-0.040782224,0.042976834,0.22833146,0.019989235,0.43521413,-0.24917199,-0.09705966,-0.05269189,0.09795558,-0.25276384,-1.3482779,-0.05322807,0.061856385,0.75667214,0.53042626,-0.0075522335,0.19306701,0.6065066,-0.353984,0.03955946,0.4246443,-0.015384549,-0.08578081,0.522248,-0.51127124,0.40493917,-0.17577939,-0.009316363,0.3061233,0.35054192,0.4191839,0.92538947,-0.02034775,-0.030259132,-0.18758091,-0.17688729,-0.07886882,-0.16178957,0.006121023,-0.5069352,-0.1561126,0.9789406,0.349856,0.516247,-0.3660001,-0.13620356,-0.097044066,-0.11174268,0.20415574,0.12365057,-0.22537456,-0.17153439,-0.60191184,-0.020895194,0.69769067,0.23680286,0.21178623,0.2816941,-0.39324218,0.39159086,-0.13541295,-0.09602061,-0.04745426,-0.86300904,-0.1397184,-0.28609225,-0.2556691,0.24448375,0.04044758,0.123145774,0.1376861,0.12690014,-0.24123357,0.24327469,0.20771743,0.7848502,0.27173948,-0.117107674,-0.17012134,0.15555859,0.2627692,-0.37165645,0.28378043,-0.08685305,0.18037924,-0.6689451,0.5652445,-0.04903784,-0.31122738,0.22847666,0.040396083,0.1958146,0.5309853,-0.08743613,-0.067362554,0.4723725,0.18998146,-0.3365803,-0.15608735,-0.43723947,0.15553078,0.012894403,0.060007952,0.02230085,-0.11387629,0.046300076,0.45268852,0.06544334,0.100053474,0.09287975,0.18855995,-0.48232162,0.10058805,-0.25284252,0.46215114,-0.2157004,-0.13333903,-0.017993147,-0.3717563,-0.19513255,0.5878597,-0.022513991,0.12781821,-0.09722252,-0.4822521,1.0042168,0.1808675,1.1865374,0.031489313,-0.25144494,0.1639268,0.59904855,-0.09376259,-0.03896071,-0.29052445,1.2290932,0.6713597,-0.33665183,-0.22146125,-0.4263209,-0.24896465,-0.01232416,-0.3326188,-0.14101273,-0.12473857,-0.7232513,-0.14581423,0.22265099,0.31231245,0.003378142,-0.15030383,0.35225594,0.22323538,-0.020655058,0.2852043,-0.46171987,-0.19429404,0.39060405,0.422029,0.12650794,0.03932585,-0.25663927,0.27183774,-0.7740585,0.13593245,-0.31327876,0.064556785,-0.13631944,-0.22244835,0.08893159,-0.0086019635,0.26185295,-0.28418952,-0.25232324,-0.2941461,0.5043896,0.29687133,0.34163076,0.94663614,-0.24916857,-0.22995047,-0.046572104,0.48287717,1.0888662,-0.10521715,-0.0019220873,0.26288605,-0.4287196,-0.43853033,0.35694665,-0.5039405,-0.09593911,-0.048942782,-0.37813455,-0.43760478,0.07328102,0.15140277,0.10782747,0.12947468,-0.6553789,0.1259439,0.3965975,-0.20672904,-0.3036988,-0.08741481,0.29911342,0.9039314,-0.045607746,-0.35741994,0.084684275,0.3839402,-0.30474675,-0.6154559,-0.24271232,-0.35283887,0.4307741,0.1281357,-0.32314074,-0.032337207,0.16295949,-0.42995661,-0.09043319,0.22153383,-0.28434554,0.099684484,-0.54196215,-0.08022558,0.8390761,0.040717147,0.35171148,-0.6820074,-0.5956231,-1.076934,-0.09483798,-0.022828378,0.46485993,0.038467597,-0.4219786,-0.27352372,-0.21136309,-0.35348472,0.20908426,-0.7203541,0.33671507,0.19336958,0.47475365,-0.14962812,-1.0267104,0.1258671,0.27574918,-0.25429308,-0.42602423,0.42027786,-0.104270004,0.7833374,0.15888628,-0.09485196,0.13884313,-0.91141695,0.52870125,-0.18622403,-0.05649754,-0.71649224,-0.12065697 -614,0.3250694,-0.21379244,-0.40894437,0.030391486,-0.011176512,0.1001811,-0.16889091,0.6370739,0.17733683,-0.401652,-0.23100643,-0.103298165,0.09112045,0.5059193,-0.17327602,-0.17698753,-0.2070447,0.26528773,-0.49419084,0.513329,-0.3055896,0.059414577,0.036741227,0.5762904,0.0544133,0.1148631,-0.09997525,-0.05654323,-0.47507536,-0.3457234,0.32723925,0.35597205,-0.8946077,0.20755005,-0.42945853,-0.22757751,-0.19582461,-0.56745714,-0.49303997,-0.7481392,0.25968802,-1.0318019,0.6603802,0.10153946,-0.24707912,0.35615048,0.06924871,0.3714626,-0.20743006,-0.0559691,0.30946445,-0.1904159,-0.1895929,-0.21577124,-0.10322672,-0.27457193,-0.6378518,0.041206475,-0.3618678,0.00919046,-0.22272837,0.19242243,-0.1149118,-0.04168892,-0.13550323,0.35079136,-0.44599238,0.22852129,0.06895296,-0.016017133,0.50195557,-0.56810385,-0.21394338,-0.18988092,0.32173502,-0.22695462,-0.17663865,0.1781712,0.100757964,0.29585713,-0.28372416,-0.03208937,-0.36630404,0.2188463,0.13187902,0.41214404,-0.32708824,-0.5242365,0.07019981,0.02462042,0.26255357,0.06945453,0.116439015,-0.20455809,-0.08852974,-0.0723091,-0.09171819,0.38444033,0.53772956,-0.16404887,-0.23615782,0.32532576,0.5667353,0.37442622,-0.06601087,-0.19710195,0.0763449,-0.64834124,-0.04502772,0.15706104,-0.36408553,0.56379515,0.0044063944,0.102217264,0.6333181,-0.21009284,-0.018335901,0.2269277,0.13142164,0.05831762,-0.22352566,-0.3992909,0.31609327,-0.13998584,0.2477388,-0.17860866,0.5728718,0.07605522,-0.7200958,0.3101357,-0.5723246,-0.01839363,0.06256945,0.44935703,0.5956852,0.5551624,0.3370773,0.5850208,-0.28692883,-0.053545535,-0.12726669,-0.20450795,0.21407938,-0.221214,-0.0011754731,-0.4597082,-0.19782092,-0.0019194683,-0.32859024,0.026912464,0.51265746,-0.47844335,-0.066715784,0.25155586,0.7486511,-0.202208,-0.18379362,0.73620206,1.0915114,0.7888109,0.06608788,1.2745658,0.16063248,-0.15566769,0.23207144,-0.18116732,-0.72586536,0.3285959,0.2861397,-0.72020197,0.42219487,0.20743817,-0.050857335,0.19942307,-0.56023246,0.083936155,-0.14128353,0.0784592,0.08546903,-0.1700163,-0.3643323,-0.25390851,-0.14973389,-0.006807497,0.12795389,0.17440183,-0.19163032,0.20030363,0.088493,1.5975493,-0.14376147,0.059473287,0.07253062,0.4604477,0.022014575,-0.069651596,-0.2163284,0.3508129,0.40627208,0.30268273,-0.40704703,0.11573873,-0.09769956,-0.49439272,-0.10880748,-0.20210421,-0.12047999,0.02218456,-0.4531883,-0.20871878,0.009846811,-0.27112445,0.45253742,-2.7200992,-0.08783994,-0.050016865,0.47209612,-0.3410426,-0.38422903,-0.1914155,-0.3068902,0.45241165,0.28328314,0.46719095,-0.6475233,0.36796227,0.31044072,-0.5285993,-0.10138788,-0.56474423,-0.14695828,0.05756147,0.26634452,0.060698736,0.011852871,0.24638526,0.050122242,0.4280844,0.04653551,0.112220585,0.44928455,0.41352138,-0.1120706,0.5106905,-0.23591459,0.4448202,-0.33974776,-0.26975074,0.38905954,-0.44063804,0.32534438,-0.08601179,0.13440974,0.3663905,-0.37653884,-0.93070364,-0.7537244,-0.35134265,1.1597708,-0.116983086,-0.47275606,0.05978323,-0.45059195,-0.4102025,-0.019783432,0.6083507,-0.12568434,0.1948518,-0.9295926,-0.28860638,-0.20024295,0.3515806,0.0014028847,0.08150711,-0.5451351,0.6686284,-0.052057404,0.35089847,0.38945845,0.11229382,-0.2791834,-0.537329,0.06268046,1.0949577,0.18372571,0.15835361,-0.28060263,-0.29023352,-0.3795893,0.13143851,-0.10082505,0.66568106,0.34138325,-0.03667809,0.060009394,0.17367963,-0.100313045,0.03333665,-0.11979862,-0.3542439,-0.17881937,0.09980474,0.6359231,0.8762602,-0.13767642,0.44784704,-0.24857982,0.2534527,-0.029902125,-0.35898295,0.42012367,0.8702356,-0.16487838,-0.1908056,0.8576229,0.58235586,-0.29281533,0.4143571,-0.5559847,-0.52370316,0.25241658,-0.08820417,-0.4053248,0.2723073,-0.31129757,0.070146985,-0.94420576,0.33871317,-0.41085532,-0.36517346,-0.6433039,-0.037777226,-2.7145386,0.0959148,-0.062106162,-0.29097566,-0.17798431,-0.3044176,0.19699167,-0.5583293,-0.6237876,0.17120905,0.043269377,0.5379932,-0.12994267,0.14309382,-0.2650452,-0.27012557,-0.033884358,0.24642555,0.37398648,0.3581141,-0.16609247,-0.5051697,-0.2184066,-0.11378321,-0.16598158,0.05295365,-0.8978543,-0.5744459,-0.06951287,-0.6137796,-0.21347664,0.67324513,-0.6113486,-0.13766968,-0.17294687,0.096608125,-0.12676807,0.34389916,0.041597288,0.2734978,0.17566498,-0.1852531,0.06873905,-0.05872407,0.4788586,0.16201134,0.32856795,0.4170635,-0.3538288,0.3430291,0.394158,0.59552515,-0.31577882,0.9741087,0.62392604,-0.15605895,0.20445359,-0.25387183,-0.27027264,-0.521297,-0.17902374,0.049141586,-0.4647858,-0.45833156,-0.054875087,-0.3461244,-0.89181226,0.70470303,-0.30109718,-0.032512635,0.10586155,0.26348034,0.49773622,-0.31570157,-0.06556586,-0.14348625,-0.034966532,-0.48432183,-0.43570566,-0.46246782,-0.45068958,-0.21172965,1.1152356,-0.024776692,0.1167969,0.24107414,-0.34877586,-0.02016677,0.014054577,-0.07690206,-0.10971853,0.67298216,0.030643543,-0.56844515,0.34988996,-0.09392854,-0.19761632,-0.59351194,0.48381686,0.63136286,-0.6757083,0.725687,0.5239429,-0.07900443,-0.25191045,-0.5608061,-0.3526634,-0.18198164,-0.12460125,0.31563717,0.2413113,-0.7717059,0.26592475,0.30007383,-0.3958505,-0.77092505,0.6223795,-0.08458701,-0.24002711,-0.058838736,0.3837687,-0.16564734,0.06702164,-0.24077795,0.4439578,-0.31913397,0.3758111,0.061627563,-0.11214275,0.16781592,-0.16745567,0.039934438,-0.82925767,0.27133706,-0.2929344,-0.5196047,0.43836212,0.1228744,-0.030791065,0.275646,0.23205964,0.32833064,-0.45842567,0.015156779,-0.14632352,-0.3820534,0.27766314,0.3961446,0.6493406,-0.44617328,0.51846623,0.0029861107,-0.23775856,-0.03449094,0.020843059,0.520578,-0.12559168,0.31480187,0.05607589,-0.10267293,0.25106123,0.7651546,0.22318311,0.52872735,0.038490098,-0.06533141,0.24434227,0.03653233,0.23781927,-0.058218583,-0.80210376,0.16254832,-0.23489064,0.1325947,0.3141204,0.07536157,0.16013636,-0.13498074,-0.30780017,-0.07523409,0.17915718,0.18938439,-1.2945184,0.33838907,0.080198966,0.7571474,0.40231562,0.06070803,0.21327412,0.7867479,-0.1504129,-0.0286675,0.42197385,0.0049941144,-0.5336763,0.61867,-0.72662765,0.4245002,-0.037537806,-0.0057493695,0.010534803,-0.110894166,0.4013319,0.8083291,-0.167974,0.08429992,0.03103376,-0.22052413,-0.024505893,-0.3371012,0.32388374,-0.5926336,-0.33145994,0.7681959,0.6567367,0.5229669,-0.21334465,0.04459242,-0.0021567096,-0.1481212,0.31217602,0.015702704,0.1356635,0.2507665,-0.7719307,0.14740534,0.5097724,0.0375323,0.10962117,0.017668946,-0.20628156,0.26200762,-0.25959402,-0.14295687,-0.17167962,-0.8542262,-0.22203666,-0.60116434,-0.3337345,0.3214965,-0.15086816,0.114481814,0.06695122,0.022820937,-0.21014494,0.4329194,0.14951819,0.8470953,0.14573735,-0.32608068,-0.26432732,0.29216823,0.17165266,-0.1745734,-0.03977793,-0.34055126,-0.047310513,-0.48441318,0.30365643,-0.104353555,-0.37920988,-0.078185566,-0.11793027,0.14391197,0.5799795,0.06215642,-0.14113015,0.06290513,-0.2584739,-0.27238595,-0.14505722,-0.09517604,0.25097093,0.49785492,-0.074702404,-0.121727444,0.01869993,-0.16730995,0.3515077,0.009567283,0.5673482,0.52008885,0.21072544,-0.09450594,-0.05299579,0.123051815,0.7527965,0.022075513,-0.16168274,-0.39000514,-0.2733996,-0.29401466,0.397439,-0.11548481,0.2936756,0.24194606,-0.17102723,0.82104725,-0.011141092,1.061833,0.07164736,-0.19546163,0.09999418,0.48822835,-0.07594808,-0.14944299,-0.6291025,0.93917733,0.46986446,0.038532633,0.007517328,-0.29170495,-0.077521436,-0.0074075647,-0.177975,-0.08587592,-0.12970869,-0.6422186,-0.124047674,0.20697136,0.4151845,0.15579458,-0.10553509,0.25184587,0.18920834,0.04643166,0.26410875,-0.52009004,-0.09199015,0.41640458,0.39245245,0.031692687,0.10211315,-0.37345847,0.34427598,-0.46010947,-0.036957514,-0.40359834,0.009181191,-0.2182756,-0.39668122,0.22606425,-0.039388787,0.4414593,-0.42405042,-0.14970848,-0.15639241,0.42804226,0.089372866,0.11473306,0.5054643,-0.20581222,0.061836768,0.01515155,0.50196034,0.8839851,-0.5846732,0.14433347,0.3374314,-0.22552311,-0.5382332,0.53313684,-0.3571314,0.44067743,-0.05051264,-0.26385197,-0.5479118,0.2427577,-0.017614312,-0.034424704,-0.21192741,-0.6316199,-0.00994201,0.42163387,-0.22049518,-0.17489888,-0.27235892,0.14220779,0.589835,-0.05729488,-0.5057872,0.11172094,0.3572956,-0.2959044,-0.2730526,-0.050221372,-0.4991572,0.10608369,-0.1336426,-0.44920525,-0.2200932,0.028247783,-0.47303033,0.13069569,0.18991761,-0.42547122,0.065913185,-0.38078633,0.028590167,0.99790376,-0.29050523,0.18606722,-0.43028918,-0.4401054,-0.9369159,-0.2867581,0.20763403,0.19122379,-0.06543937,-0.5149308,0.059308052,-0.09673003,-0.26862165,-0.09608388,-0.46124968,0.42674533,0.15285556,0.5786658,-0.27087852,-0.7693167,0.19336939,0.08583936,-0.08167312,-0.609793,0.43080556,0.08779993,0.95551294,-0.08028483,0.2128865,0.22972143,-0.5685025,-0.27873465,0.017759606,-0.04449721,-0.7658759,0.104305685 -615,0.57804865,-0.02166098,-0.4973394,-0.21916151,-0.29274577,0.30948955,-0.25735548,0.031367052,0.06434954,-0.53575003,-0.13006409,-0.2919039,-0.02008268,0.14791118,-0.13886085,-0.7080206,0.043108933,0.038501836,-0.43774968,0.25470307,-0.55787766,0.52994525,0.221002,0.19239591,0.026358124,0.2421194,0.28725135,-0.28828904,-0.31280357,-0.050188277,-0.22194752,-0.11533948,-0.94935644,0.29961938,-0.012839286,-0.3584824,0.23101804,-0.308399,-0.2527083,-0.55803835,0.23681362,-0.7884163,0.4185947,-0.03146886,-0.16813087,0.11874333,-0.15628433,0.31617075,-0.24254018,0.3856516,0.32011715,-0.24921052,-0.00904642,-0.30787408,-0.24097922,-0.75138545,-0.4636274,0.01830545,-0.5721458,-0.27661502,-0.42803782,0.2672454,-0.2339696,-0.008407684,-0.2733403,0.2552422,-0.3030682,-0.07623216,0.13244642,-0.21853183,0.14323834,-0.3459807,-0.10368944,-0.100377284,0.2507866,-0.22827218,-0.0048253993,0.16197155,0.30875334,0.43495867,0.033619154,-0.19454795,-0.09905476,0.033480413,0.038294103,0.5908478,-0.009866129,-0.32184702,-0.14481695,-0.094479054,0.15584111,0.03495758,0.13171507,-0.3918184,0.046304226,0.14204189,-0.28077757,0.40759844,0.5053865,-0.46438295,-0.10479854,0.3912377,0.3010201,-0.16991946,-0.054808017,0.11998542,-0.049508672,-0.3591592,-0.119498864,0.43760717,-0.039244868,0.5774812,-0.1486703,0.24056993,0.6892113,-0.2771415,0.008322496,0.013806779,-0.2024716,0.04585431,-0.07274319,-0.073781475,0.26217845,-0.56828797,-0.06596711,-0.39209315,1.0053344,0.20035678,-0.761181,0.4492398,-0.35252172,0.0601622,-0.03990929,0.5794484,0.4311514,0.565064,0.058481354,0.75454646,-0.84930104,0.06409201,-0.08813123,-0.48276997,0.053758834,-0.11617332,0.13039611,-0.2074735,-0.08004559,-0.11643105,0.024402665,-0.16670784,0.2763682,-0.26662126,0.078953534,0.17096183,0.69615597,-0.51733816,-0.08795697,0.6488966,1.027189,0.8815418,0.23189847,1.1476381,0.42476505,-0.22099446,0.00050521357,-0.2927453,-0.505736,0.24076787,0.40567,0.49651954,0.09721804,0.21888366,0.22641101,0.21905246,-0.23983653,0.16502398,-0.033312853,0.10270095,-0.05270227,0.005220065,-0.4192885,-0.1925415,0.10205936,0.08160358,-0.060738273,0.15263966,-0.15771511,0.35754442,0.18004632,1.3654977,0.07535674,-0.012800892,-0.011927467,0.47970882,0.094413824,-0.0863953,-0.03659419,0.20386678,0.25916794,-0.030080281,-0.5106362,-0.1218336,-0.21646476,-0.5279192,-0.2895222,-0.1979548,-0.017129362,-0.08246132,-0.44735494,-0.22537008,0.35043672,-0.3076697,0.50723386,-2.1675825,-0.18273273,-0.124037184,0.34032837,-0.38762537,-0.42602813,-0.041327894,-0.49009365,0.26675227,0.40388787,0.27455986,-0.67127365,0.47809073,0.20601171,-0.07150194,-0.21870813,-0.7156584,0.17601167,-0.24992622,0.22365674,-0.0077850106,-0.20153578,-0.36288568,0.12570944,0.6462081,-0.120708875,-0.0962776,0.09839822,0.41652364,0.1943286,0.6580439,0.31467533,0.4524647,-0.22338265,0.08659725,0.22723722,-0.36754262,0.13775972,0.20694907,0.22556254,0.206174,-0.65526104,-0.7027589,-0.78777504,-0.49709442,1.2141165,-0.37639925,-0.32997975,0.24719056,0.15970618,-0.22409171,-0.07538562,0.33439907,-0.042123042,0.09047783,-0.5964775,-0.10961814,-0.0147996545,0.26969567,0.008836541,0.018884636,-0.3197438,0.81204796,-0.25123838,0.4069538,0.37782845,0.11847932,0.07057314,-0.41700336,0.14902839,1.1313415,0.23892373,0.12865953,-0.28969973,-0.17835464,-0.25292683,-0.055120684,0.1361272,0.3900077,0.85261333,0.017849358,-0.121504016,0.44896406,-0.15868782,0.044911638,0.020655565,-0.4987164,-0.05568053,-0.11775964,0.66055334,0.51452184,-0.086282805,0.43237787,-0.37302038,0.23566201,-0.13243887,-0.23285645,0.42125127,0.7516925,-0.12816261,-0.1343028,0.41753393,0.470875,-0.34936026,0.33603674,-0.5464475,-0.46583384,0.53736186,-0.105397,-0.40902206,0.16186,-0.41415834,0.11889125,-0.9089706,0.48277557,-0.11690191,-0.575302,-0.29076964,-0.19437984,-3.420521,0.069047645,-0.13183492,-0.010401492,0.10727955,-0.30654418,0.232365,-0.5294677,-0.35649014,0.08762255,-0.020748597,0.5267161,0.16403161,0.25844002,-0.31737247,-0.1435201,-0.34933758,0.3214541,0.21638666,0.072524816,0.1635589,-0.29105234,0.23873076,-0.44693822,-0.31105882,0.07638343,-0.6539399,-0.56885946,-0.16771275,-0.55938333,-0.5451227,0.7660703,-0.540008,0.066565126,-0.14079206,-0.10989033,-0.28712502,0.41493285,0.19452861,0.096869946,-0.041062906,0.007550645,-0.21700999,-0.42562756,0.23445958,0.18511294,0.40429708,0.34087053,-0.07444111,-0.031197878,0.6268475,0.56254184,0.15924677,0.7120236,0.1587987,-0.15564848,0.25118378,-0.33175197,-0.29692668,-0.67612046,-0.39429995,-0.17489935,-0.3506816,-0.32990438,-0.00015089833,-0.3256229,-0.6609968,0.36380944,-0.009926755,-0.017681304,0.041380797,0.32319686,0.28577197,-0.15062013,0.013556146,-0.14241108,-0.0725966,-0.50166184,-0.539154,-0.6011083,-0.5859804,0.18635812,0.9567401,0.12127583,-0.30187747,0.042878468,-0.20444971,0.2004913,-0.042292066,0.16894668,0.12547877,0.548541,-0.1697088,-0.76438725,0.32952517,-0.1581466,0.03765224,-0.42134795,0.07049645,0.7978007,-0.76731455,0.4369918,0.37780204,0.22330707,0.072193064,-0.31745118,-0.3681423,-0.00436759,-0.34052217,0.34943184,-0.06582758,-0.7206749,0.4034142,0.2891145,-0.17279315,-0.51513606,0.5385897,0.078341395,-0.2455931,0.20346189,0.3743006,0.015546464,-0.17229909,-0.33055526,0.03356256,-0.6489563,0.22902766,0.5226293,0.17378251,0.26429722,-0.08058326,-0.2884114,-0.5194321,-0.20111267,-0.38811415,-0.41749424,0.07386105,0.16981576,0.077308446,0.24866651,0.20173147,0.3811779,-0.44521868,0.053038258,-0.20084634,-0.20669556,0.4759124,0.3110587,0.33278942,-0.5188358,0.6301933,0.018647524,0.14931029,-0.25728187,0.068491615,0.3579076,0.34540653,0.08498742,0.10250997,-0.15373431,0.13222615,0.670337,0.36037716,0.59026444,0.3870106,-0.21627103,0.40401953,0.29177397,0.0852084,0.08161455,-0.25872505,0.005511417,0.015608893,0.044673808,0.27752793,0.0019961423,0.23907915,-0.24902967,-0.08698216,0.20077361,0.045211334,-0.1961352,-0.71157813,0.29537457,0.19226232,0.3979689,0.3928801,-0.021627674,0.13194858,0.5040148,-0.36474594,0.03526468,0.061625168,-0.015065134,-0.332212,0.46821243,-0.52149326,0.35945857,-0.19775167,-0.0063615395,0.05135462,0.093404815,0.21559323,0.92001414,-0.13006549,0.113131136,-0.21299158,-0.17211086,-0.06868993,-0.41563207,0.26145986,-0.47429058,-0.2948877,0.7404398,0.25114977,0.26726437,-0.20897388,-0.0069026053,-0.023118895,-0.22804871,0.25524554,0.0050125537,-0.1948344,0.18715975,-0.7425009,-0.36807588,0.55937445,-0.028460823,-0.040972475,0.24862193,-0.30712938,0.432787,-0.21298034,-0.039818663,0.04377228,-0.4770486,0.01691982,-0.43444377,-0.43381703,-0.015514846,-0.13456811,0.33769542,0.08328238,0.041923173,-0.2174406,0.23818438,0.41573393,0.61817265,0.1384235,-0.30513936,-0.49164146,-0.1385244,0.273589,-0.3259186,0.12414006,-0.32939398,0.058346827,-0.6363458,0.38747042,-0.17525527,-0.081914775,0.06811977,-0.090745285,-0.045518342,0.5052184,-0.18840748,0.030326117,0.41444716,0.32229334,-0.06618599,-0.045307443,-0.3520495,0.078618854,0.05382728,-0.17901398,0.08473844,-0.19916914,0.013885129,0.3286545,0.21581925,0.19863194,0.10861368,-0.07553038,-0.30364048,-0.04102542,-0.19081476,0.36106154,0.2442953,-0.10259463,-0.29390994,-0.3192088,-0.061355665,0.2105841,-0.062157713,0.04609,0.07192281,-0.37452894,0.87092555,0.0046781027,1.2209681,0.11275777,-0.2986958,-0.045724623,0.4585044,-0.040600397,0.15495297,-0.5116862,1.084032,0.5495425,-0.111187935,-0.17604023,-0.3563142,-0.4094733,0.109303236,-0.19517139,-0.22359373,-0.077431366,-0.65337586,-0.25954518,0.13560419,0.2524416,0.067650676,0.20143539,0.1772601,0.19655949,0.09841653,0.50312275,-0.4553884,-0.07664284,0.13370822,0.08179597,-0.008535298,0.17749691,-0.2989023,0.45348355,-0.7955589,0.19595687,-0.41603518,-0.13031594,0.14123051,-0.28651237,0.20953366,0.16359687,0.41208172,-0.381136,-0.30024534,-0.24412066,0.6746942,0.14429428,0.4598958,0.6948796,-0.14798602,-0.07657941,0.1288914,0.48299152,1.2475317,-0.010947127,0.087718755,0.38791215,-0.44330108,-0.49867028,0.19310676,-0.1334648,0.07527004,-0.027423063,-0.45445538,-0.36242485,0.2595724,0.10068708,-0.10941814,0.18603677,-0.5039551,-0.22875999,0.5189135,-0.4134685,-0.4180121,-0.16887045,0.50272393,0.6223809,-0.43383443,-0.19757281,-0.03993305,0.34532684,-0.3551529,-0.37913397,-0.02991612,-0.36561716,0.38468316,0.15896177,-0.3559136,-0.12722181,0.27490136,-0.34386352,0.08368877,0.4394166,-0.45161188,-0.08210524,-0.27310437,-0.10040482,0.85662884,0.20700496,-0.04907706,-0.7614137,-0.40413687,-0.95975524,-0.5404118,0.35483316,0.29086515,0.047932107,-0.34103024,-0.119599395,0.01667413,0.03030203,0.09580176,-0.65297675,0.33379662,0.17452732,0.6069648,-0.07347587,-0.9808985,0.0030546372,0.1797426,-0.28623673,-0.58801025,0.48471212,-0.17193666,0.7787026,-0.101738654,0.111427225,0.16233693,-0.613716,0.27371818,-0.3839977,-0.05083189,-0.70675635,0.05524122 -616,0.18314333,0.044883262,-0.55512786,0.039179694,-0.22525376,0.080632806,-0.46231157,0.16205476,0.2140639,-0.25465485,-0.008410319,-0.22902806,-0.04951597,0.15052581,-0.088487975,-0.45072982,0.12540506,0.20959102,-0.37347397,0.545221,-0.38809857,0.17292675,0.044813965,0.1845308,-0.086717494,0.154881,0.1611772,-0.27074367,-0.2675797,-0.2432926,0.06319669,-0.15089336,-0.57997626,0.24417087,-0.2775875,-0.27601892,0.23692968,-0.3434566,-0.2544607,-0.6953933,0.10104186,-0.7586677,0.59586596,-0.031933475,-0.2369798,0.3552906,0.026671505,0.26584926,-0.0066525927,0.042935863,0.26012608,-0.41114527,-0.37439856,-0.31060046,-0.21171857,-0.5973332,-0.3645474,-0.09496091,-0.5518297,0.05745393,-0.3730186,0.19158857,-0.1833355,-0.0010294318,-0.18441056,0.04541006,-0.46349043,-0.040721145,0.01888921,-0.13389052,0.29142687,-0.63258404,-0.00769184,-0.09001377,0.18914787,0.0656063,-0.043704152,0.31367674,0.037977256,0.50950307,0.012232034,-0.19570924,-0.3109969,-0.033155885,0.21503644,0.44730484,-0.16461423,-0.08710025,-0.08869307,0.0053275744,0.38597953,0.28541282,-0.026670128,-0.14507768,0.05460624,-0.06079584,-0.39471462,0.20941935,0.55915457,-0.38089937,0.09321865,0.37306896,0.37182453,0.21974693,-0.15950347,0.010108224,-0.18538705,-0.29653543,-0.16705497,0.06395175,-0.12575896,0.4455324,0.050576616,0.27442545,0.53626764,-0.085131265,0.026234364,-0.03375099,0.037305478,-0.018201383,-0.1231771,-0.3341907,0.42319766,-0.6017072,0.20913054,-0.33227822,0.7014212,-0.1417943,-0.7285113,0.40791157,-0.47004,0.06716944,-0.073472485,0.5698001,0.6131398,0.704387,0.06862321,0.82608986,-0.4465231,0.17398554,-0.24074225,-0.26220593,0.29819554,-0.052219152,0.2019773,-0.36599398,0.09028513,0.06075028,-0.19822682,-0.0032718678,0.49837527,-0.24858944,-0.031288482,0.15066034,0.79913074,-0.34634888,0.00536505,0.56493443,1.2405133,0.8079319,0.08730305,1.0747126,0.3980169,-0.20264393,-0.23357268,-0.025877886,-0.7620503,0.15081856,0.36102283,0.46790612,0.23214208,0.32269815,-0.10948517,0.4310449,-0.31176573,-0.18946761,-0.0953736,0.39290288,-0.04199747,-0.15478344,-0.3645057,-0.18858686,0.047726665,-0.039222315,0.17214839,0.3481627,-0.05592036,0.33874854,0.28478992,1.2123824,-0.055496287,0.05870615,0.120379426,0.40538916,0.26222274,0.088242546,-0.047132514,0.31175616,0.26530325,-0.09686344,-0.47541693,0.010812728,-0.28116313,-0.5005068,-0.15184641,-0.11143732,-0.09275588,0.070783176,-0.16485293,-0.21799609,-0.0012084802,-0.2699788,0.39935434,-2.609571,-0.09227784,-0.072454676,0.28814873,-0.13756727,-0.2136844,0.03989865,-0.41283175,0.56722766,0.3770844,0.44946367,-0.36642903,0.34377426,0.53601104,-0.46131018,-0.17494644,-0.61885846,-0.0339315,-0.10177703,0.42917404,0.0032896379,-0.4051884,-0.0073889634,-0.0013832311,0.43544072,-0.1524639,0.048391636,0.3589164,0.34613362,0.051002536,0.26636967,-0.05108142,0.4073372,-0.21618174,-0.16455938,0.15955833,-0.203306,0.3178674,-0.2946044,0.14214364,0.41727692,-0.3095601,-0.59935975,-0.37010622,-0.11885161,1.1775795,-0.37767002,-0.56998515,0.07998326,0.1131525,-0.21256343,0.017546553,0.27482292,-0.13013007,-0.0049732206,-0.60076237,-0.04981121,-0.12840691,0.30395225,0.029579228,0.29824537,-0.49369362,0.6049197,-0.13263175,0.5571349,0.579181,0.32542938,-0.023259068,-0.3499776,0.0812596,0.725858,0.41966,0.07541403,-0.42506483,-0.093569644,-0.06956761,-0.18149047,0.083455555,0.34567055,0.6879031,-0.13451102,-0.0492183,0.30164737,-0.30917743,-0.03538042,-0.1698008,-0.56698,-0.09971943,0.05482482,0.58741075,0.6571619,0.13448524,0.37784874,0.012846595,0.34961718,-0.18262869,-0.43745938,0.48026696,0.5315902,-0.31063065,-0.0025051276,0.4967814,0.38445812,-0.017039236,0.59704006,-0.68752944,-0.480672,0.38845786,-0.044439428,-0.4597701,0.24943966,-0.3049182,0.105972975,-0.8063487,0.28510398,-0.31686,-0.47633988,-0.6349041,-0.16309601,-2.7991018,0.071608044,-0.26041484,-0.08937048,-0.10730676,-0.21548763,0.2972792,-0.397348,-0.53095126,0.17641796,0.24440017,0.44667244,-0.14195254,0.06898997,-0.3123334,-0.34085995,-0.34831378,0.25557908,0.1435364,0.13829231,-0.07543548,-0.37872142,0.020514298,-0.2657542,-0.18928877,-0.012691419,-0.41440022,-0.10377731,-0.14218877,-0.29935703,-0.33107713,0.54639477,-0.57483464,0.029653357,-0.36873874,0.024598125,0.04044699,0.23632996,0.10668852,0.013193329,0.034226917,-0.06523093,0.010569283,-0.29244003,0.2253437,0.077587076,0.16670339,0.5286381,0.012689368,-0.14926411,0.5397699,0.53365403,-0.071996205,0.69322455,0.3208535,-0.20754458,0.3256096,-0.3464392,-0.2454498,-0.553408,-0.3046131,-0.09376653,-0.36749992,-0.4907456,0.02448951,-0.4049717,-0.6919417,0.4888955,-0.012500461,-0.003110981,0.09815897,0.37700567,0.34186268,-0.13444465,-0.16624774,-0.039548494,-0.102336876,-0.45052615,-0.28007218,-0.77049154,-0.46136227,0.05734026,0.93189144,-0.10430661,-0.15593475,0.20441805,-0.21448347,0.115846895,0.1393903,0.12211858,0.044912383,0.3442106,0.15820974,-0.7374559,0.48145455,-0.08119032,-0.08413775,-0.5362635,0.1117208,0.52475905,-0.75955856,0.17932549,0.65448844,0.14850432,-0.04686343,-0.68949217,-0.13945885,0.1702332,-0.28246728,0.3699665,0.13976401,-0.7303499,0.54787916,0.25684443,-0.23075749,-0.7831018,0.42183283,0.014597821,-0.2761084,0.16222978,0.33228588,0.01318973,0.043854818,-0.19567902,0.031991623,-0.46158618,0.37221786,0.114599325,-0.076819114,0.28320757,-0.06588822,-0.20405331,-0.70044214,-0.0014444907,-0.2983762,-0.22319722,0.28704894,0.05679748,0.1418853,0.105624884,0.31582505,0.48406157,-0.4455174,0.031870827,-0.29128316,-0.21328649,0.5346326,0.4560897,0.2954923,-0.38030484,0.52229595,-0.1876222,-0.25439698,-0.14690831,-0.037458822,0.41070825,0.056364644,0.19158818,0.14904837,-0.15821509,0.009452152,0.7123601,0.24213071,0.3454066,0.13636507,-0.17766532,0.4049874,0.04239284,0.098788835,0.01163974,-0.41054535,-0.08995741,-0.189785,0.12147128,0.48795688,0.19749445,0.4723614,-0.16101037,0.013902182,-0.026582178,0.09468152,0.03395693,-0.8052272,0.45303217,0.2794767,0.5146543,0.54448235,0.027689831,0.15044793,0.682715,-0.2772269,0.050666634,0.15387405,0.20558539,-0.33043873,0.46752718,-0.65452695,0.3080296,-0.11227489,-0.019032348,0.22740622,0.1391463,0.4472128,0.93359596,-0.22112392,0.19815466,-0.06325925,-0.20435208,-0.08701532,-0.03503773,-0.05307359,-0.2331583,-0.33288956,0.6961917,0.122120425,0.38929957,-0.2354133,-0.07008365,0.07308496,-0.14958045,0.4524397,0.12956508,0.06169072,-0.029831704,-0.39951175,-0.38776004,0.6210415,-0.08557557,-0.048361473,0.0070121605,-0.16371344,0.2868062,-0.22812204,-0.13466252,0.10734491,-0.51088333,0.14039607,-0.19023448,-0.3420254,0.44744185,-0.0042121173,0.25707728,0.08939854,0.028807975,-0.025013363,0.21908948,0.19533968,0.5641703,0.16511059,-0.28889674,-0.16993706,-0.13843025,0.19660597,-0.19958784,0.07115836,-0.104073524,0.14310627,-0.7581303,0.38658583,-0.35341066,-0.123943046,0.20411886,-0.24362227,-0.082458116,0.46884033,-0.13982953,-0.11808254,0.25122243,0.056263138,-0.31175864,-0.31364334,-0.43902493,-0.050145563,-0.1401713,-0.06745919,-0.20768498,-0.18765642,-0.040563866,0.4105271,-0.026782295,0.040372077,0.18267384,0.1311776,-0.41054222,-0.14009437,-0.024202159,0.4315168,0.08201752,-0.016815368,-0.33966205,-0.47433826,-0.26470527,0.11649735,-0.14561796,0.09058874,0.12063715,-0.37563345,0.7907696,-0.042789616,0.91931194,0.056733925,-0.3772585,0.061032124,0.53004426,-0.083846785,0.03083526,-0.42060414,0.90943235,0.7340375,-0.10916384,-0.04479919,-0.43347564,-0.15513308,0.24180062,-0.30426946,-0.080620065,-0.06308498,-0.6137665,-0.16260096,0.20725688,0.21616806,-0.17129402,-0.022620846,0.18816859,0.11645555,0.32632193,0.3049914,-0.373155,-0.18388812,0.4288794,0.12878606,-0.0008723736,0.170018,-0.29752177,0.33701834,-0.5583567,-0.029692058,-0.47760868,-0.024255145,0.13938524,-0.2093893,0.19798766,0.045066647,0.23277523,-0.34950963,-0.43788877,0.02728039,0.37244365,0.17840888,0.3294769,0.6110871,-0.10993667,-0.07963608,-0.17534284,0.4771953,1.0776832,-0.33389643,0.037931655,0.40116355,-0.32949543,-0.5440445,0.14007153,-0.40294975,-0.03460294,-0.082727164,-0.32612264,-0.40810287,0.16564229,-0.034593843,-0.26361868,0.003585148,-0.59601325,-0.06278421,0.17117378,-0.23771524,-0.23547353,-0.32052153,0.12326436,0.84195554,-0.25355747,-0.17071627,0.011737387,0.35206622,-0.32806018,-0.48238719,0.15768765,-0.32764307,0.24681202,0.3831281,-0.2979239,0.10586543,0.24243027,-0.6443303,-0.044818286,0.27215198,-0.26607144,0.0035837034,-0.3306468,0.3239562,0.601891,-0.07641398,-0.017992584,-0.52974606,-0.510564,-0.84860027,-0.32191274,0.099426076,0.31664628,0.09023097,-0.43604767,-0.0729212,-0.21660021,-0.028302781,-0.09064115,-0.5463733,0.40812626,0.06345753,0.39916092,-0.24581881,-0.9097115,0.15181132,0.106942646,-0.31601527,-0.41873607,0.323032,-0.26180828,0.94704187,0.085523605,-0.02051572,0.10000362,-0.7003442,0.356855,-0.3186423,-0.2501949,-0.6525107,-0.0091790315 -617,0.67172235,-0.22885726,-0.5560405,-0.09242806,-0.12949409,0.0523061,-0.07591549,0.45044836,0.21295452,-0.3751162,-0.26522282,-0.18008156,0.16536586,0.38672838,-0.23362322,-0.7552016,0.23343845,0.08250344,-0.45345116,0.46405602,-0.5843957,0.39891008,-0.031635087,0.38964447,0.028828481,0.22696362,0.31808352,-0.0041053495,-0.07414625,-0.25601688,-0.15477476,0.016941437,-0.7320221,0.07314614,-0.06456106,-0.49063146,0.11013857,-0.5140823,-0.18683793,-0.64360094,0.24003792,-0.7854025,0.6649409,0.14593998,-0.12602602,0.048553187,0.041448142,0.20756163,-0.3012143,0.17246477,0.048056502,0.001903514,-0.088795505,-0.22298914,-0.026811576,-0.6322878,-0.64515555,-0.024420992,-0.53701776,-0.098831475,-0.15037517,0.00012321521,-0.3322076,-0.01688838,0.1401509,0.18096389,-0.38795677,-0.017977258,0.17284255,-0.06994205,0.26958737,-0.4330525,-0.061273355,-0.09496512,0.31320846,-0.28659552,-0.30832267,0.14577584,0.3797088,0.43339518,0.04053825,-0.15919596,-0.25506592,-0.13308094,0.08477968,0.62914175,-0.028271973,-0.8844485,-0.2929306,-0.0333472,0.15238865,0.38470483,0.2591405,-0.035624355,-0.19011955,0.09594821,-0.23936538,0.43267092,0.47633457,-0.59661967,-0.22432582,0.40114152,0.48601198,0.22062023,0.024720466,0.024111249,0.13334967,-0.6970175,-0.3098917,-0.045582533,-0.1831373,0.7318794,-0.2520183,0.32664278,0.6714651,-0.34879017,0.08329748,0.17308724,0.039199933,-0.2926208,-0.07033964,-0.07929611,0.1730382,-0.53772634,0.071323834,-0.22898805,0.7979601,0.3033614,-0.7540899,0.30377153,-0.69152075,0.04956691,-0.1792583,0.4971533,0.66929525,0.4317049,0.21324718,0.79238343,-0.5000194,0.014610437,-0.175146,-0.52866864,0.14731622,-0.06977976,-0.18979721,-0.50969535,0.071124196,0.24920641,0.03466989,0.19485188,0.65199965,-0.6022082,-0.12279729,0.08591839,0.68615836,-0.3243998,-0.26067302,0.7672451,1.0336331,0.8852079,0.0959824,1.4791689,-0.022102961,-0.16756873,-0.047292184,-0.1373155,-0.73386145,0.2712259,0.30163893,-0.3393935,0.43827963,0.12682448,-0.10380862,0.3086817,-0.21965905,-0.03444871,0.008886397,0.3484279,-0.102558136,-0.37150335,-0.39407757,-0.23734476,-0.102056555,0.11131203,0.24802081,0.4253651,-0.24342914,0.31375182,0.038273703,1.7453581,-0.051309723,0.22142597,-0.06156667,0.4308047,0.4238132,0.011475298,-0.17374551,0.345909,0.3225186,0.4305729,-0.5242653,-0.043787602,-0.23416889,-0.5994319,-0.1744595,-0.3075336,-0.20899618,-0.24454826,-0.39955106,0.037986558,-0.032513734,-0.19055228,0.6955014,-2.6378062,-0.30672696,-0.1382215,0.35503528,-0.26086035,-0.5078963,-0.1855111,-0.391449,0.45156762,0.31077585,0.58853036,-0.84378386,0.39446223,0.34802485,-0.40034425,-0.19429009,-0.5707254,0.014123728,-0.010263736,0.29558456,-0.0047582276,-0.24882591,0.018980125,0.28222355,0.525347,0.028109467,0.060429946,0.11607477,0.4568183,0.08689097,0.57680625,-0.11167119,0.6256017,-0.1521577,-0.12790398,0.20958848,-0.28632104,0.55654746,-0.21565568,0.14755675,0.25743285,-0.3851638,-1.1227471,-0.54262835,-0.10096844,0.9615695,-0.26788697,-0.27257773,0.16060549,-0.3139979,-0.3533227,-0.08977517,0.4458821,-0.26777178,0.1314358,-0.7057468,0.10763705,-0.1275795,0.042502116,-0.019419273,0.05198696,-0.5613633,0.70580786,0.051198255,0.5070489,0.3534247,0.11909751,-0.26919523,-0.5381754,0.056470077,1.1201278,0.4768081,0.17146946,-0.10107537,-0.19329377,-0.5091321,-0.041580122,0.13386743,0.64998436,0.8082246,-0.110035986,0.06631162,0.22741288,0.24854235,0.036464375,0.019118274,-0.20361958,-0.022744209,-0.26368853,0.6503324,0.8104658,-0.46770188,0.57875633,-0.17695087,0.35222185,-0.27928302,-0.47110602,0.65000534,0.8883758,-0.18857877,-0.2519389,0.70996284,0.3566467,-0.38345328,0.4063355,-0.67097,-0.30993158,0.45963502,0.027504772,-0.225771,0.21489994,-0.31907454,0.11187628,-1.1083885,0.37632164,-0.22523624,-0.22370756,-0.40854737,-0.27929726,-3.9959195,0.23629437,-0.22037847,-0.04634908,-0.24173494,-0.15475388,0.17780535,-0.8205652,-0.71913487,0.21773131,-0.05618,0.805749,-0.16544661,0.3350676,-0.09476354,-0.45021668,-0.30923453,0.20618184,-0.07737406,0.29504043,0.06769648,-0.3430402,-0.0705866,-0.14159398,-0.48101854,0.17438757,-0.56875116,-0.56238085,-0.039743915,-0.49819472,-0.33386377,0.84076786,-0.29958165,-0.06576963,-0.07979467,0.0030519068,-0.13247702,0.27696612,-0.013864939,-0.11535398,0.017605713,0.0027565013,0.12760149,-0.24437521,0.16137643,0.06636111,0.41909027,0.27003938,-0.32239607,0.20234263,0.5010024,0.66122085,-0.07923602,0.723497,0.2940649,-0.1204733,0.30291572,-0.36287645,-0.2084152,-0.48547292,-0.5664267,-0.21468614,-0.5380668,-0.5228998,-0.15384862,-0.30586925,-0.8213524,0.6182623,0.12801072,0.17971891,-0.21867807,0.4310949,0.5127099,-0.22984679,-0.08118367,0.07672917,-0.23227112,-0.5511901,-0.21172063,-0.53999925,-0.37719738,0.18682034,0.90509033,-0.43340847,-0.00783094,0.06667915,-0.06925466,0.077376805,0.09216819,0.021837158,0.029316245,0.29318318,-0.054888368,-0.70571345,0.67784405,-0.37941727,-0.30901048,-0.6334341,-0.05612276,0.5844315,-0.68937445,0.37121126,0.52178675,0.07366806,0.24462022,-0.5956073,-0.011473556,0.14698517,-0.1958102,0.27482608,0.34920967,-0.829186,0.512631,0.35446763,-0.25344166,-0.64055634,0.78757143,0.043572735,-0.28253493,-0.18724556,0.31705365,0.37774873,0.038601056,-0.43789795,0.2788683,-0.6704965,0.3047631,0.19500333,-0.031164499,0.5155478,0.1329865,-0.24702804,-0.7766296,-0.043353636,-0.53880334,-0.29432502,0.22275461,-0.013325945,0.14464734,0.1150649,0.28925592,0.29316878,-0.8186715,0.17091496,0.046798382,-0.28949073,0.3398229,0.4608933,0.5874767,-0.4600565,0.5543153,0.051422764,0.115602165,0.13448577,0.08155334,0.5047391,-0.066945694,0.3859836,0.21808648,-0.2708563,0.16184983,0.7415549,0.11558101,0.29807353,0.33078578,-0.041178357,0.0517554,0.17051078,0.2945616,0.21191078,-0.5947477,-0.01303415,-0.046168167,0.16301781,0.57746994,0.30441085,0.20809126,0.040943515,-0.21090424,-0.07472147,0.36867806,0.034466583,-1.4410915,0.38665548,0.25291252,0.68452865,0.4966983,0.054124355,0.09488908,0.25680438,-0.20130654,0.1911994,0.2802948,0.06835101,-0.43143046,0.57949895,-0.6769473,0.43189895,-0.107649244,-0.025709828,-0.026798764,-0.17421383,0.42525664,1.0509876,0.0014473498,0.052252572,0.031194462,-0.24169636,0.10612022,-0.4405822,-0.09139514,-0.64360785,-0.115086,0.78776544,0.47625753,0.28784955,-0.13582191,0.020359334,0.12771,-0.10046884,0.039628003,-0.08571816,0.33530453,0.05792935,-0.67323303,-0.37003025,0.6512391,0.14288993,0.28700185,-0.107976995,-0.271434,0.37597963,-0.09734816,-0.054503605,-0.0014666418,-0.7638385,0.08735153,-0.45049158,-0.4591838,0.54111165,-0.22093783,0.14998828,0.22380714,0.09419621,-0.16280036,0.3921803,0.0884243,0.7168341,0.015210251,-0.2553862,-0.38833964,0.3441004,0.24599873,-0.34097922,-0.14664222,-0.2512058,0.25254604,-0.6398173,0.47289515,0.10996407,-0.37284562,-0.119728476,-0.035408173,0.043384463,0.4386036,-0.11728539,-0.22721075,0.0061246804,-0.22503655,-0.17930023,-0.24757588,-0.2750681,0.18633018,0.2973193,-0.08412737,0.04243527,-0.04006957,-0.16673927,0.28513765,0.10834304,0.3382745,0.41676545,0.11946597,-0.22800219,-0.29374543,0.23565048,0.54719263,-0.3146958,-0.16159044,-0.42321786,-0.60175055,-0.4226029,-0.023335734,-0.1905818,0.3387073,0.22269206,-0.09786165,0.59047896,0.17518282,1.2231674,0.13731124,-0.4313723,0.056838084,0.69439393,0.026491499,-0.20686269,-0.42186865,1.3540615,0.47224018,-0.3394055,-0.24150927,-0.2759434,-0.108002014,0.24263422,-0.3560029,-0.23098314,0.021602595,-0.5387009,-0.3403634,0.27015647,0.24963166,0.21039997,-0.08388597,0.033095848,0.36327472,0.08602912,0.21866238,-0.7087204,-0.28051093,0.31900716,0.41980556,0.036545563,0.09791901,-0.43279442,0.3625137,-0.60236806,-0.03197514,-0.39011252,0.27271992,-0.26617715,-0.43111432,0.22323568,0.18467398,0.40725288,-0.29510733,-0.47807357,-0.18796508,0.24497934,0.23015903,0.17311142,0.651287,-0.23254383,-0.06950254,-0.21517813,0.5204136,1.3059176,-0.14675952,-0.020258233,0.57793665,-0.3510855,-0.6846449,0.32006696,-0.47654918,0.31654796,-0.16647439,-0.31806415,-0.7585921,0.28219035,0.032599706,0.23479342,0.1635449,-0.7067669,-0.27577505,0.18366045,-0.2523875,-0.30807707,-0.31961817,0.18502259,0.98280674,-0.33950242,-0.17923056,0.14413111,0.22042648,-0.17444627,-0.6124285,-0.13670029,-0.22457747,0.35981438,0.05516478,-0.26726818,-0.12936445,0.034812737,-0.39109623,0.27785215,0.2523305,-0.27605164,0.29877377,-0.42877474,0.013940115,1.0104351,-0.30811268,0.1767798,-0.42407992,-0.46834937,-0.7554078,-0.4079754,0.29528302,0.023218244,-0.005066635,-0.5082899,-0.0059464574,-0.064350024,-0.10310823,-0.19554813,-0.23197426,0.50013214,0.105164744,0.37453339,0.13526396,-0.9734192,0.1449272,0.16258776,-0.3318947,-0.74204737,0.54371977,-0.22410615,0.8390785,0.13241193,-0.005726786,0.5049229,-0.6765973,-0.08063764,-0.29132104,0.25366607,-0.89516735,0.17792107 -618,0.2873601,-0.1408609,-0.3069825,-0.14160666,-0.20287031,-0.08528983,-0.08935505,0.72962165,0.29886281,-0.34750262,-0.2659151,-0.2331478,0.0039674803,0.49543822,-0.1902142,-0.25080442,-0.102775835,0.13257805,-0.21411176,0.79050237,-0.21499918,0.20342827,-0.027729945,0.39984962,0.532929,0.42439947,0.18817057,0.10089989,-0.06996056,0.029210264,-0.13769256,0.04450111,-0.34823057,0.16250673,-0.4480301,-0.3304982,0.050363347,-0.55227447,-0.61360973,-0.7828664,0.4685666,-0.89569384,0.4341407,-0.14682129,-0.1371879,-0.30841085,0.22992897,0.24013424,0.01071057,-0.20039867,0.017371917,-0.037797853,0.16134916,-0.10936176,-0.32126057,-0.6509621,-0.48001367,-0.09575625,-0.39459828,-0.22659835,-0.5244626,0.20066422,-0.37570927,-0.028879523,0.05273801,0.1332079,-0.5234785,-0.10015178,0.10444515,-0.3866811,0.2231639,-0.6853688,-0.31554928,-0.2972634,0.20870958,0.010257224,-0.17131065,0.6668814,0.17162585,0.30492422,-0.0018062429,-0.079091914,-0.36499804,-0.071735434,-0.06115581,0.6224501,0.011114321,-0.51863915,-0.14171176,0.10029678,0.70796394,0.44496682,0.20005278,-0.23737274,-0.05894393,-0.11708789,-0.18355408,0.42988777,0.77634674,-0.031259645,-0.27016932,0.22714776,0.34410658,0.5280046,-0.22041568,0.099238135,-0.024991881,-0.39268425,-0.19726147,-0.011529776,-0.13171418,0.814645,-0.042644575,0.27387974,0.8094862,-0.28988418,0.33367717,-0.09640882,0.24366838,-0.43916738,-0.33547533,-0.20614024,0.14201745,-0.3189336,0.2252541,-0.20823497,0.9336437,0.29186586,-0.6008745,0.41152093,-0.43661025,0.13278984,-0.03869475,0.50904745,0.60891765,0.3884842,0.3980795,0.6579024,-0.15486568,0.10054824,0.03682072,-0.36790276,0.09028812,-0.29641482,-0.14108132,-0.4377366,0.24060637,0.15180297,-0.08462424,-0.11906567,0.62887937,-0.55527556,-0.2514616,0.3048845,0.8374529,-0.22586727,0.14895053,0.72220635,1.0093122,0.91310483,0.02803534,1.2751678,0.16297184,-0.13654988,0.3713788,-0.057713076,-0.8471239,0.19897223,0.46136302,-0.45623586,0.45534983,0.1308342,-0.16338865,-0.012032401,-0.57882744,0.0057798843,-0.20745994,0.2994027,0.20684329,-0.14406869,-0.44546968,-0.23092064,-0.12566555,0.023864383,0.024576245,0.18534218,-0.3743424,0.44432983,0.01325441,1.5843303,-0.14198214,-0.02007851,0.1206176,1.2260039,0.27033356,-0.10940959,0.08848821,0.45477664,0.3479385,0.094062634,-0.50923103,0.036354087,-0.39845932,-0.44437382,-0.10524119,-0.43333843,-0.21260992,0.07429495,-0.20465612,-0.26661393,-0.1240371,-0.12828213,0.49841318,-2.856613,-0.06634158,-0.15836544,0.2944601,-0.3258341,-0.18049498,-0.041401125,-0.42967966,0.38928902,0.3598171,0.5977146,-0.73624134,-0.09974041,0.93630624,-0.61392194,-0.0026648857,-0.5312267,0.18867727,-0.09263741,0.5389687,-0.094123594,-0.10573903,0.021656418,-0.10022922,0.5182929,0.46157533,0.08505091,0.4106413,0.46726352,-0.060891215,0.4101305,-0.21300925,0.43141362,-0.36178273,-0.09229217,0.43245447,-0.39889735,0.35687244,-0.24904169,0.09116502,0.73764384,-0.4144216,-0.74812967,-0.4009545,-0.20057373,0.9188126,-0.40579054,-0.6045398,0.43833274,-0.38261816,-0.082407504,-0.17209773,0.45710737,-0.16437365,0.11017966,-0.50756514,-0.15905043,-0.1746568,0.20242314,0.04804291,-0.12175701,-0.16535799,0.64460284,0.043054506,0.5792153,0.16257627,0.14225739,-0.37116477,-0.55181813,0.09806171,0.32004923,0.38478547,0.12047806,-0.2589575,-0.08249801,-0.33504486,-0.28003827,0.22853123,0.61006635,0.8080531,-0.22549668,0.08910651,0.39324558,0.07466921,-0.021718329,-0.03308705,-0.34431022,-0.28605214,0.03605385,0.3996485,0.8426397,-0.4447293,0.2164278,-0.13986069,0.113030955,-0.11418869,-0.45496872,0.6517581,0.6909451,-0.19685966,-0.22608374,0.53308594,0.49135646,-0.5054189,0.41715762,-0.9451153,-0.02799744,0.60334784,-0.07619888,-0.62144667,-0.027419781,-0.39245474,-0.07012706,-0.8213411,0.17701934,-0.23500104,-0.41308367,-0.5535934,-0.042340096,-2.4692075,0.026404338,-0.17636786,-0.4704119,-0.10579521,-0.2558451,0.19813281,-0.5807228,-0.6448774,0.2468471,0.0715775,0.5999607,0.071431704,0.0006832047,-0.38280156,-0.29914075,-0.7262528,0.082897775,-0.009650501,0.5359204,-0.24602388,-0.5375152,-0.20176387,-0.14812969,-0.57690275,0.19706169,-0.35636446,-0.24439912,-0.43139312,-0.53530234,-0.18606974,0.57403797,-0.30596554,-0.0070040524,-0.12647058,-0.057211816,-0.22071005,0.24672645,0.15358807,0.023092605,0.16731882,-0.08722022,0.25865352,-0.23869367,0.54627174,0.051358853,0.44741067,0.18611836,-0.23264508,0.18773875,0.40419438,0.5709701,-0.39860037,1.0929834,0.2682541,-0.13876271,0.31012484,-0.19888921,-0.21510601,-0.64824575,-0.3271054,0.20194039,-0.39225549,-0.47727737,-0.09678292,-0.38905957,-0.7957744,0.6593294,0.14333372,0.66397816,0.23070721,0.0067715268,0.5059564,-0.18372835,0.0024227398,-0.07313165,-0.14513494,-0.7712834,-0.34826222,-0.7437746,-0.56812686,0.29998806,0.9637354,-0.22301164,-0.21241993,0.1419461,-0.55551267,-0.08064801,0.026343627,-0.08992881,0.09235596,0.30443364,-0.08225718,-0.6545953,0.35728145,0.19172114,-0.08500506,-0.43686888,0.16163589,0.33563405,-0.7373158,0.4649353,0.09905126,-0.1313548,-0.3904979,-0.61829126,-0.35944474,-0.46392286,-0.017553512,0.30875468,0.18252279,-0.77976185,0.24675404,0.032509957,-0.45714033,-0.6388307,0.5745957,-0.19849151,0.057035387,-0.35404694,0.30487064,0.19586273,-0.039476003,-0.2719844,0.27813718,-0.39455518,0.14407097,0.19731522,0.13893504,0.7049561,-0.16943434,-0.13491112,-0.7437559,0.34955224,-0.35023916,-0.22162919,0.5452756,-0.019289399,-0.021599818,-0.04896827,0.3126774,0.2986428,-0.27456763,0.2036121,0.0645227,-0.23690276,0.4849022,0.322305,0.7418382,-0.5417688,0.63942426,0.12847763,-0.24401383,0.14388198,0.037467077,0.25953338,0.18565351,0.37542096,0.12745942,-0.4450988,0.22693014,1.0577896,0.2909265,0.40615883,0.12066851,-0.1240372,0.369032,0.20741285,0.45498773,0.06157792,-0.72988987,-0.121454425,-0.4696208,0.14181441,0.58280987,0.17741688,0.31661174,-0.14528371,-0.18335976,0.042594627,0.18929738,0.10716259,-1.2468379,0.026337832,0.36640748,0.94991916,0.34259373,-0.060380016,-0.14423813,0.73089236,0.045231253,0.2675991,0.43627116,0.11425512,-0.55397296,0.5772986,-0.67825115,0.75585705,0.1244277,-0.16531624,0.27573484,0.2724497,0.5447195,0.60583144,-0.22566213,-0.17750506,0.09423217,-0.30854127,0.1700828,-0.47014377,-0.06317654,-0.4758241,-0.39331102,0.53563,0.5751726,0.15333068,-0.05758356,-0.042688467,-0.12777424,-0.08258942,0.36522475,-0.055257224,0.05289055,-0.24332474,-0.49724683,-0.326744,0.5400951,0.058514953,0.17567855,-0.17570291,-0.25348836,0.21414636,-0.2015088,0.081363134,-0.0012386766,-0.85087943,0.060317505,-0.027302714,-0.622282,0.4304389,0.14448684,0.224627,0.20353031,-0.0030911157,-0.109300345,0.45866802,0.010859045,1.0258149,-0.26661614,-0.11652774,-0.7327061,0.054402124,0.32833257,-0.3401601,0.34236178,-0.24050926,-0.30666038,-0.42155764,0.49645138,0.002613161,-0.20237398,-0.0044422257,-0.31797227,0.00048266622,0.6855492,0.21063891,-0.08474182,-0.25055903,-0.060819816,-0.529956,-0.35232735,-0.2969269,0.29131672,0.26404873,-0.10618667,-0.215836,-0.19738291,0.10749783,0.19953698,-0.0681421,0.26215717,0.17827262,0.13418284,-0.20505346,-0.0095768785,0.28653374,0.63747495,0.21797763,0.068834856,-0.010963678,-0.49293214,-0.5042959,-0.16848275,-0.12329087,0.3820565,0.33109638,-0.22214235,0.84999156,-0.07674259,1.1705652,0.14832437,-0.48093545,0.08790508,0.6969022,-0.023006849,-0.23470268,-0.51984364,0.98231786,0.3974804,-0.02005679,-0.1297454,-0.2124014,-0.0031268029,0.31933117,-0.2500241,-0.027561964,-0.022385152,-0.66226745,-0.096850894,0.21251492,0.22355609,0.24710417,-0.14004292,-0.2159103,0.22444247,0.09693576,0.4526138,-0.3413061,-0.51155335,0.37569588,0.3300358,0.103230715,0.16317323,-0.42814496,0.3720565,-0.60394937,0.2497922,-0.51202905,0.26423705,-0.50095487,-0.5322154,0.053603128,-0.11977176,0.72189945,-0.35537928,-0.5273836,-0.26307845,0.46038535,-0.03485359,0.32179493,0.4562648,-0.3099932,0.02610162,-0.21478514,0.47536123,1.0120238,-0.16644149,-0.2812778,0.3156745,-0.50473195,-0.71010023,0.602751,-0.7394842,0.46664,0.055102207,-0.14092268,-0.5938318,0.064694755,0.3368105,-0.05154054,0.041145016,-0.7072317,-0.52240926,0.030093215,-0.12972973,-0.0895422,-0.40218276,0.23851041,0.6239655,-0.30882323,-0.56611764,0.24194717,0.24805403,-0.040776394,-0.51501876,-0.07938399,-0.10336531,0.39203683,0.01706105,-0.45173776,-0.20922305,0.017999513,-0.45902774,0.32370755,-0.07920195,-0.54169476,0.11766627,-0.29471585,-0.00921141,1.2280415,-0.44836056,0.01121921,-0.52664566,-0.51258445,-0.90186113,-0.36965227,0.461603,0.24555133,0.061645508,-0.5797679,0.15405568,-0.3078316,0.17646275,-0.18985558,-0.550074,0.4614671,0.15898222,0.5268967,-0.18517591,-0.8358095,0.21332671,0.050378118,-0.07778083,-0.70789975,0.7051523,-0.23803343,1.1350205,0.13559394,-0.04332076,0.18847162,-0.4776901,0.040217493,-0.2606386,-0.25890788,-0.33944738,0.306193 -619,0.34902316,-0.022599135,-0.4241333,-0.13716398,-0.39867115,0.12409454,-0.15409397,0.20448014,0.1506501,-0.44093302,-0.09225731,0.06851144,-0.022645261,0.14220403,-0.103071585,-0.4447305,0.046179958,0.22274266,-0.6939052,0.6123305,-0.4190833,0.37786978,0.020785755,0.32670218,-0.05645855,0.35960028,0.26780483,-0.08460091,0.012473928,-0.18513617,-0.020152526,-0.07749698,-0.7779923,0.14065541,-0.34285662,-0.20496808,0.06716202,-0.30573413,-0.25682446,-0.7802445,0.26216686,-0.96856546,0.5094579,-0.11311497,-0.22872762,-0.09962665,0.29984504,0.1743292,-0.2769324,-0.09791231,0.38977936,-0.16893302,-0.13113894,-0.36961764,-0.07350128,-0.3858393,-0.40941292,-0.1161061,-0.67242163,-0.20990612,-0.5016536,0.21899422,-0.2867276,-0.27221063,-0.25998917,0.45963868,-0.33298638,0.14923403,0.079074584,-0.2971004,0.31169766,-0.5743204,0.11668728,-0.08295375,0.43649083,0.09301267,-0.10340375,0.6405748,0.3833578,0.31108305,0.24901256,-0.334034,-0.2717217,-0.21982037,0.2051806,0.48487267,-0.10793148,-0.39486167,-0.17542733,-0.008704649,0.25866327,0.20652,-0.005602994,-0.34372482,-0.0106124235,-0.13395678,-0.0522548,0.82621723,0.50549877,-0.15509126,-0.17045482,0.29998818,0.5939254,0.26744428,-0.38479212,-0.054130528,-0.1026762,-0.46466753,-0.13268869,0.2912888,-0.07158346,0.50869405,-0.18119287,0.06852465,0.8870419,-0.08732561,-0.059890706,0.06606709,-0.045129392,0.1261579,-0.32623702,-0.08126558,0.26710245,-0.630064,0.12931477,-0.46837878,0.59539753,0.077640735,-0.83980656,0.51218706,-0.47798675,0.078043334,0.111670844,0.64780694,0.5633548,0.6069816,0.17168991,0.88244426,-0.3233882,0.07559282,0.16094711,-0.36874983,-0.082074165,-0.27275336,0.11315193,-0.3253469,0.10172248,-0.25933546,0.15424006,-0.0531156,0.31322402,-0.4906648,-0.274972,0.28495616,0.92012596,-0.30953258,0.013978963,0.63759696,1.1769035,0.85985154,-0.06347422,1.2486085,0.0031378737,-0.18484364,-0.0277067,0.02307464,-0.67803824,0.1430037,0.27975753,0.5021685,0.08536013,-0.1336064,-0.109471254,0.17917264,-0.4908958,0.011267076,0.02554375,0.39975134,0.12902041,-0.0762061,-0.2922094,0.000242642,0.08256234,0.020863298,0.1948116,0.12072422,-0.22053511,0.3302605,0.050527964,1.1472591,-0.10062538,0.14351808,0.22014798,0.65144175,0.35073504,-0.061459713,0.046141684,0.51799524,0.44011185,0.023816973,-0.56002,0.15425685,-0.6368495,-0.3511061,-0.0045675635,-0.40504923,-0.26606563,0.04726109,-0.3798731,-0.17656586,0.10519509,-0.3252011,0.38555628,-2.6625042,-0.251507,-0.14420377,0.40909126,-0.36178324,-0.14951375,-0.16406608,-0.63470805,0.43439606,0.08335419,0.5697495,-0.56586313,0.43025652,0.6329054,-0.47306994,-0.14587083,-0.59037775,-0.1283362,0.046636492,0.49733534,0.050423365,-0.08386004,-0.20925164,0.20405163,0.83560103,0.28944874,0.15712225,0.5853613,0.30498892,-0.041987717,0.6985927,-0.17368889,0.45327562,-0.25629124,0.0009841621,0.36433885,-0.28588587,0.25916,-0.4545222,0.044576917,0.68901646,-0.4507616,-0.80929863,-0.6161932,-0.32834408,1.0967743,-0.36917302,-0.55455846,0.27411574,-0.24459492,-0.026303759,0.058712043,0.71442354,-0.06833076,0.39885786,-0.49646738,-0.014979626,-0.22424152,0.29135713,0.029835284,-0.05972907,-0.2826237,0.90164,-0.0013781701,0.59997934,0.173389,0.2223557,-0.28876045,-0.37224397,0.17508098,0.6802021,0.38550448,0.07666172,-0.12708674,-0.057156622,-0.28218082,-0.3106894,-0.23927447,0.7724472,0.6625327,-0.15557443,0.08475484,0.36338523,-0.04648594,-0.0033113617,-0.17010488,-0.30358955,-0.20992725,-0.044568557,0.4660428,0.7268918,-0.106717534,0.39054796,-0.20727389,0.1752475,-0.11005672,-0.57623154,0.6903823,0.5095435,-0.22142445,0.08500034,0.41036108,0.40989113,-0.43949074,0.48071697,-0.6058677,-0.33418682,0.839733,-0.223163,-0.48225808,0.14132532,-0.20050658,0.024790108,-0.5581277,0.27162996,-0.53782415,-0.54900116,-0.2560114,-0.17463274,-2.766643,0.14207028,-0.11522688,0.0070796683,-0.53029174,0.015590406,0.23535776,-0.41043583,-0.5395896,0.19371818,0.2328156,0.65147877,-0.11763702,0.13556746,-0.45328307,-0.10437066,-0.10356456,0.4145131,0.11644188,0.13844346,-0.28593716,-0.31898886,-0.18801308,0.03428581,-0.6410818,0.1093873,-0.46317384,-0.28264803,-0.07524808,-0.51893973,-0.21700199,0.6492421,-0.38980934,0.14617905,-0.0729124,0.048931334,-0.13271068,0.07099796,0.0718268,0.2666416,0.034708627,-0.110995635,0.2019258,-0.23165719,0.5892274,0.07803082,0.41803098,0.016080247,-0.07399428,-0.010531195,0.31984526,0.6255773,-0.2385111,1.1904589,0.18434103,-0.08466794,0.4269748,-0.21777785,-0.40953922,-0.83005005,-0.13633393,0.07524895,-0.29502645,-0.3900382,0.217204,-0.4333728,-0.77229166,0.6328421,0.12892202,0.4995429,-0.029748129,0.3060546,0.22620021,-0.38514253,0.046961498,-0.044069435,-0.07985769,-0.58646303,-0.34958816,-0.83495057,-0.53655803,-0.091715954,0.6209513,-0.34651312,-0.14717872,-0.01842017,-0.2465241,0.16189075,0.11652463,0.010378347,0.1646188,0.4475988,0.15208009,-0.6109406,0.46681872,-0.13513996,-0.084044404,-0.40161783,0.3613729,0.65244514,-0.69662666,0.52242553,0.22910298,-0.03929772,-0.48299482,-0.6977466,-0.11367803,-0.038990058,-0.15166807,0.48530906,-0.07138844,-0.96456397,0.42496863,0.10340686,-0.49018764,-0.6876704,0.39100823,-0.043423347,-0.3654557,-0.13083604,0.44531533,0.013512837,-0.13275659,-0.25437075,0.22528015,-0.46369028,0.2718421,0.08209207,-0.11315018,0.3439019,-0.19726619,-0.37657017,-0.72831476,0.0062708473,-0.5982746,-0.3020167,0.38381264,-0.17360285,-0.19529799,0.25006142,0.14225493,0.4959569,-0.06213476,0.21574084,-0.03655563,-0.29600185,0.37969926,0.37815166,0.4367141,-0.46474776,0.6964096,0.16830763,-0.2284113,0.19643392,0.2381324,0.38697323,0.030534668,0.5394148,-0.15871212,0.0541198,0.23961583,0.7597922,0.27290115,0.4599743,0.13050678,-0.13117172,0.4639345,-0.07517473,0.24803685,0.026063208,-0.6844616,0.10600627,-0.13330385,-0.07632352,0.5043038,0.2492388,0.24247201,0.18544659,-0.17807089,-0.11447108,0.1812898,-0.10863434,-1.2977229,0.44881317,0.27676192,0.91569555,0.29333606,0.17811094,-0.18888389,0.83282626,-0.17476293,0.11894708,0.4107844,-0.12679179,-0.4173191,0.745391,-0.6238608,0.25617236,0.008167518,-0.0068946118,0.36129704,0.1270085,0.40960264,0.8737172,-0.2129147,0.0014829508,-0.041265633,-0.10846053,0.10960653,-0.20733836,0.21182789,-0.21882597,-0.50757307,0.55749357,0.3692574,0.35790253,-0.16676225,0.0060818684,-0.047152635,-0.27198243,0.22091122,-0.072728164,-0.13384989,-0.033220235,-0.33627543,-0.07457356,0.5132459,-0.15283558,0.065450475,-0.100626014,-0.044664618,0.13649711,-0.0345709,0.0958238,-0.09637709,-0.83986026,0.16063395,-0.24832502,-0.3989074,0.44525272,-0.33984014,0.06701534,0.15469222,-0.030816738,-0.072376974,0.41672605,0.33022246,0.45838785,0.03149948,-0.22804503,-0.32154366,0.05125355,0.03719804,-0.349358,0.29066402,-0.31253958,-0.039764762,-0.57644403,0.48055476,-0.36427853,-0.23989563,0.24994908,-0.34819144,-0.239782,0.6076556,0.02955779,-0.11615624,0.05678281,-0.19304015,-0.40175554,-0.15650143,-0.15643442,0.19409673,0.20583116,-0.0015531778,-0.18790765,-0.08459394,-0.21627033,0.48519936,0.06762966,0.34285402,0.0537618,-0.0786762,-0.34488255,0.17550655,0.26676628,0.6852545,0.10404883,0.16203931,-0.16342996,-0.24011266,-0.43176046,0.20207584,-0.097698174,0.19029084,0.10187479,-0.24597915,0.97386014,0.03352497,1.0211623,0.033827227,-0.34538117,0.09912328,0.74268764,-0.106044725,0.07136292,-0.49705297,0.9490281,0.3933352,-0.13989273,0.021903863,-0.46197113,0.07479233,0.26933137,-0.3649508,-0.03065109,0.010180371,-0.5005861,-0.278754,0.16740994,0.27078143,0.13927306,-0.097188234,-0.33868617,0.090697,0.13497105,0.36744568,-0.7908373,-0.17889623,0.19457588,0.17575921,-0.14488958,0.09050315,-0.28488228,0.3676642,-0.6230789,0.20508416,-0.38014725,0.056552667,-0.3735728,-0.35065508,0.15432489,-0.028017435,0.33038324,-0.31171006,-0.42416975,-0.097607985,0.24656892,0.13346675,0.2760075,0.63938606,-0.21347506,0.059379138,0.17695189,0.4920918,0.9610202,-0.3280851,-0.01370201,0.23151362,-0.6355576,-0.5984959,0.26761958,-0.44685873,0.13601546,-0.039124127,-0.49995902,-0.26654583,0.14483905,-0.049953137,0.03268688,0.032942753,-0.885102,-0.17019463,0.3542606,-0.24902,-0.19811888,-0.18151458,0.37674946,0.73823583,-0.16246568,-0.3649952,0.094223365,0.13145813,-0.29754332,-0.8023046,-0.012452632,-0.31861523,0.22334686,-0.02541765,-0.2960646,-0.0035493805,0.2770083,-0.6910957,0.09684964,0.18092348,-0.43099493,0.08546876,-0.1389138,0.049378317,0.83528095,-0.20870604,-0.25289187,-0.4471922,-0.5310734,-0.7790391,-0.41583246,0.1417763,0.19741464,0.052603982,-0.41724393,-0.21996678,-0.27757344,-0.00037876196,-0.042952634,-0.43752745,0.28855205,0.14118828,0.50554746,-0.41483876,-1.1574812,0.16396536,0.13832213,-0.02961857,-0.5624665,0.46455598,-0.049970858,0.81322813,0.058851812,-0.1387423,0.041918725,-0.54826915,0.05925453,-0.4071529,0.020696554,-0.6489169,0.22109939 -620,0.47560525,-0.03147015,-0.6973079,-0.017983004,-0.44818884,0.051502824,-0.45488065,0.08987455,0.47042775,-0.30861896,-0.06596547,0.001147186,-0.20657256,0.20375805,-0.12961698,-0.71808743,-0.022514446,0.21531162,-0.5781877,0.73867923,-0.23422511,0.30232453,0.146813,0.17142752,0.09108105,0.16413349,0.19281127,-0.04504826,-0.21434021,-0.20240037,0.06654765,0.07050755,-0.5891724,0.39637172,-0.18470545,-0.2755135,0.014678528,-0.31276995,-0.24520268,-0.78848964,0.027155336,-0.540628,0.5980614,-0.01965922,-0.2621103,0.25064778,0.20786844,0.281924,-0.052408885,0.1372726,0.2114993,-0.5041313,-0.6543898,-0.23646733,-0.3691101,-0.59312063,-0.72485465,-0.062628746,-0.7061676,0.10805885,-0.3183087,0.2669026,-0.26894447,-0.076588504,-0.2798775,0.40057164,-0.40165302,-0.035615236,0.20552363,-0.12186791,0.11900536,-0.60915095,0.008030465,-0.0931811,0.21975307,0.22801831,-0.025206478,0.1665602,0.24594599,0.4659274,0.2640027,-0.42949098,-0.28467384,-0.12384701,0.22054254,0.2960034,-0.19607268,-0.089322984,-0.23052897,-0.08512642,0.60316175,0.257527,0.1644183,-0.21245655,0.018236423,-0.07641495,-0.31916428,0.2701876,0.4907512,-0.31092346,0.23470476,0.58473575,0.5597165,0.19156146,-0.25969827,0.20395383,-0.2137698,-0.4415063,-0.17564456,0.22260042,-0.12868585,0.4476059,-0.115229264,0.1720243,0.523652,-0.07820992,-0.15835914,0.15583318,0.0011633495,0.036470022,-0.10395998,-0.14794391,0.28010055,-0.54782754,0.01009683,-0.35214737,0.6609856,-0.13909848,-0.99735934,0.30047476,-0.36129445,0.15391675,-0.09450042,0.74198496,0.91838163,0.64114904,0.13863342,0.84876966,-0.27129427,0.24019794,-0.08934172,-0.36224002,0.081212536,-0.092714936,0.20002574,-0.53510565,-0.078041494,-0.21198559,-0.2605366,0.023758497,0.73937184,-0.46234578,-0.23190044,-0.072585724,0.54673445,-0.26596645,-0.080869205,0.79970163,1.1274352,0.9085395,0.13614799,1.1956025,0.34950328,-0.18803997,-0.31177986,-0.24295883,-0.57053983,0.18955123,0.29655853,-0.10953627,0.46274453,0.19111758,-0.048322216,0.3771398,-0.15086187,-0.17465644,-0.072004035,0.34995067,-0.15086827,-0.1930189,-0.31271476,-0.16967186,0.20241448,0.10937196,0.15511708,0.45040688,-0.21579516,0.54756534,0.23044121,1.1699305,-0.15168953,-0.1259282,0.05538548,0.2457132,0.30208293,-0.03160796,-0.13085072,0.29283684,0.3293595,0.0012370488,-0.520121,-0.070148505,-0.075726405,-0.5134673,-0.29451245,-0.23261245,-0.10665951,-0.31593862,-0.023094956,-0.13083732,0.025881747,-0.67459583,0.443074,-2.2367783,-0.079904795,-0.21924987,0.22509395,0.048919547,-0.29002023,-0.04973701,-0.41809735,0.6576406,0.35207248,0.45909628,-0.5475915,0.49425843,0.6143792,-0.65290713,-0.049683772,-0.70331526,-0.19414438,-0.062418047,0.50371605,-0.013691971,-0.30018896,-0.08105601,0.10689368,0.49257216,-0.12409945,0.094588235,0.50736964,0.33287922,-0.20512195,0.46547434,0.110778,0.5464901,-0.21924794,-0.23223658,0.44950712,-0.26139984,0.31671715,-0.3613764,0.06479794,0.3260786,-0.35857514,-0.75124645,-0.44619098,-0.06818227,1.3703598,-0.44746542,-0.63919693,0.3015201,-0.06443055,-0.18670107,0.21575224,0.37176442,-0.10504141,0.058972947,-0.782746,0.07491554,0.04644311,0.1362816,-0.0284188,0.116722114,-0.55231464,0.64150506,-0.18678555,0.6605447,0.53376913,0.36423028,-0.11412919,-0.36622834,0.15254574,0.989418,0.39811963,-0.0091367625,-0.24784896,-0.08718666,-0.105443574,-0.2458403,-0.044795606,0.44913247,0.6057685,-0.14172438,0.024198255,0.25921854,-0.320545,0.04561042,-0.29945126,-0.53372383,-0.104645446,0.1320535,0.53282815,0.68894255,0.062321614,0.46412602,0.03178216,0.37425047,-0.06759247,-0.61696273,0.5806178,0.95344555,-0.30628288,-0.19226576,0.69164556,0.30497208,-0.112502165,0.71970713,-0.59268796,-0.37846223,0.4267402,0.08029133,-0.37109876,0.31907046,-0.28799778,0.15879351,-0.9335851,0.22629467,-0.40535384,-0.5231566,-0.4199182,-0.06831798,-2.793774,0.2564342,-0.27186164,-0.053061217,-0.27361083,-0.14359808,0.14352301,-0.49154764,-0.71314013,0.03720078,0.25260478,0.41148207,-0.2101618,-0.0037388206,-0.21728723,-0.2901985,-0.07747385,0.33412188,0.00922208,0.12518084,-0.3123912,-0.4419194,-0.015102534,-0.32673162,-0.25156093,-0.19881174,-0.6231944,-0.100730866,-0.108068526,-0.3785519,-0.26297507,0.5212236,-0.5159531,-0.038118653,-0.4848947,0.06531006,0.12833157,0.2255585,-0.15506482,0.16135442,0.27081937,-0.085473254,-0.17435484,-0.10838208,0.12591419,-0.03741798,0.31646398,0.4554743,-0.06523627,0.13758601,0.5324809,0.6365411,-0.1783604,0.972399,0.36632738,-0.25424266,0.2571074,-0.24444047,-0.27158198,-0.73469573,-0.31895995,-0.11905872,-0.36219057,-0.4384371,0.04121706,-0.23820063,-0.9563928,0.66850287,0.17287035,0.09945898,-0.06955314,0.47904384,0.46618962,-0.093976565,-0.08109139,-0.04124013,-0.4469822,-0.3789411,-0.24196005,-0.8426248,-0.49668452,0.027914003,1.2539164,-0.34338406,0.12064795,0.22043827,-0.24981162,0.14568655,0.21416841,0.11791092,0.20261227,0.22959732,0.26652768,-0.6940734,0.52728397,-0.15241627,0.10909804,-0.5511857,0.120350264,0.5815397,-0.6251058,0.2654412,0.5434356,0.018740233,0.042973604,-0.8193734,0.03854366,0.11102222,-0.16142032,0.64876384,0.2584021,-0.7365681,0.7517222,0.29126996,-0.23198262,-0.8663921,0.3453248,-0.00895767,-0.19909853,0.047616385,0.5035702,-0.0066501675,0.039474856,-0.29685113,0.08525609,-0.42932618,0.36315957,0.19916752,-0.13133824,0.11667152,-0.17256671,-0.24353532,-0.87783194,0.037711106,-0.48952332,-0.21295452,0.14700626,-0.10464911,0.01895148,-0.011245468,0.25467622,0.40578973,-0.4581243,0.20456298,-0.254053,-0.33865297,0.57291406,0.6570282,0.33964348,-0.30835977,0.5811881,-0.054600276,-0.17619905,-0.29357916,-0.04178442,0.45404172,0.01597815,0.46491027,0.29784086,-0.08216103,0.2622955,0.55550176,0.015942974,0.28108978,0.06618947,-0.3766124,0.26692098,-0.011591007,0.30212665,-0.2619247,-0.39689553,0.044653177,-0.052380618,0.23491888,0.45463014,0.19510372,0.51654446,-0.14534628,-0.1381347,-0.032367542,0.12417096,0.119962886,-1.1921638,0.44454905,0.34229487,0.45551798,0.6195428,0.16400482,0.06288576,0.6176848,-0.35976613,-0.010127324,0.36351186,0.0325109,-0.20822251,0.48101667,-0.83848345,0.15976626,-0.21821715,0.10407558,0.1946744,0.038144436,0.47911477,1.140504,-0.13136889,0.1251446,-0.1690301,-0.2178765,0.023605213,-0.19715926,-0.013534826,-0.25172243,-0.4888111,0.7314536,0.19565229,0.47853878,-0.20907891,-0.060155287,0.20923726,-0.18393838,0.53154933,0.100196056,0.038443327,-0.03314524,-0.3499062,-0.3915775,0.4970031,-0.16519794,-0.04029424,-0.08236086,-0.19458786,0.28778642,-0.16763283,-0.09745432,0.063463464,-0.5372299,-0.017687006,-0.30170727,-0.4412641,0.44681063,7.0761234e-05,0.13591138,0.021638975,0.15412505,-0.31139874,0.12011029,0.12147996,0.5214759,0.12499013,-0.2636462,0.15850182,-0.1993791,0.23013745,-0.29392824,-0.0016805495,0.031009983,0.2204865,-0.8613343,0.44966552,-0.44778365,-0.5868792,0.21708645,-0.3259887,-0.09307429,0.3383674,-0.24662542,-0.24848242,0.2011887,-0.031607658,-0.24767601,-0.40776,-0.2964941,0.046404988,-0.20520343,-0.18755344,-0.087365404,0.048215237,0.031075394,0.46342206,0.0054783155,0.114619404,0.3317016,0.060942803,-0.64723194,0.03135042,0.41723338,0.3238686,-0.09452014,0.12075138,-0.3772623,-0.2859614,-0.3113616,0.014444701,-0.26772687,0.21698664,0.023134083,-0.37543827,0.92347753,0.106301166,1.1053416,-0.04120299,-0.39465234,-0.04528474,0.43212593,-0.010110294,-0.030055916,-0.2065746,0.93358266,0.6457952,-0.12205187,-0.11124955,-0.677518,-0.20709473,0.32831907,-0.33456233,-0.12319805,0.0059102913,-0.7255068,-0.33719757,0.18275219,0.19546752,-0.118839644,-0.17957388,0.14187491,0.1823591,0.304635,0.019938175,-0.6507501,0.021578053,0.42506722,0.20259954,-0.19742173,0.089484826,-0.37652048,0.29201108,-0.6548643,0.16149779,-0.2649806,0.011285261,-0.058330283,-0.13071766,0.18529698,0.04436744,0.13177754,-0.21381193,-0.33673173,-0.01825995,0.3778883,0.18470778,0.24168046,0.79745317,-0.32485867,0.08523291,-0.07158032,0.54307544,1.26109,-0.27663323,0.04480583,0.2635982,-0.20911309,-0.5497701,0.10390734,-0.34260917,-0.10267792,0.02940462,-0.5590623,-0.5792249,0.11788026,0.10381246,0.036025852,0.13486485,-0.5053031,-0.11952311,0.24700715,-0.33017543,-0.16219305,-0.2790269,0.15736042,0.7253859,-0.44139746,-0.45727405,-0.036266,0.17274037,-0.31836954,-0.56777805,0.1396898,-0.18902677,0.2376617,0.16033697,-0.32472283,0.0028770426,0.21631493,-0.5841091,0.06674278,0.34357333,-0.2143159,0.09097528,-0.38222313,0.15837088,0.6618731,-0.19602175,0.10345902,-0.29904062,-0.67195404,-0.66181856,-0.3759067,-0.06158429,0.12446004,-0.020088743,-0.54992676,-0.061836347,-0.3041505,-0.1040032,0.1595319,-0.5075689,0.4427402,0.15703762,0.39831105,-0.303422,-0.92690456,0.20237292,0.0638275,-0.17351505,-0.39184213,0.4310794,-0.11993543,0.7721211,0.086476624,0.055803593,0.20394051,-0.80421466,0.31774005,-0.18285389,-0.14521965,-0.6387789,-0.04041505 -621,0.4248058,-0.24971986,-0.7452274,-0.20822312,-0.075928636,-0.10626746,-0.36919376,0.07747961,0.17784047,-0.67987543,-0.039111793,-0.009790669,-0.10865935,0.21171309,-0.2099027,-0.74569225,0.11310021,0.2710066,-0.699728,0.834338,-0.43190345,0.30864528,0.04787922,0.1757614,0.06233242,0.23380609,0.49385062,0.06550242,-0.19676079,-0.37488067,0.26005343,-0.12883885,-0.5955669,0.5766737,-0.026220283,-0.55111456,-0.10598099,-0.3318216,-0.37751555,-0.7106878,0.33441916,-0.8952581,0.5496529,0.058095235,-0.18107896,0.135742,0.066830516,0.32189292,-0.17664905,0.27530155,0.14558856,-0.2683253,-0.3866159,-0.46724284,-0.09339265,-0.38404188,-0.5381782,0.04158056,-0.6789654,-0.048115153,-0.31909063,0.09591428,-0.33813143,0.14697883,-0.31571302,0.68354446,-0.3757132,-0.21995717,0.19785166,0.01978224,0.27713743,-0.76914716,-0.3368381,-0.22797072,-0.0016446585,-0.16021876,-0.29198268,0.25978068,0.01876475,0.5096819,0.19157624,-0.35225716,-0.13904457,-0.30184385,0.425192,0.3449109,-0.1313171,-0.44920504,-0.31395903,-0.16338414,0.12678248,0.20926835,0.24898507,-0.44546726,0.17864233,0.030961959,-0.4301232,0.54677194,0.5916646,-0.19410117,0.012284358,0.2298364,0.5694849,-0.20166455,-0.20344692,0.15597214,-0.19510937,-0.43243954,-0.4028989,0.18835543,-0.03669322,0.5288797,-0.30475143,0.27534035,0.42844924,-0.36599544,-0.2162565,0.2607278,0.08019499,-0.07218329,-0.39819777,-0.47176436,0.48353818,-0.6734648,0.019388974,-0.4830985,0.9780037,-0.09332297,-0.6968725,0.29389626,-0.5238202,0.13675,-0.050803978,0.77300215,0.55683815,0.42409858,0.101711236,0.8141825,-0.59529036,-0.0023262154,-0.16278465,-0.35260153,-0.28508133,-0.086172186,0.096874624,-0.2772527,-0.036446493,0.026734302,0.077420704,-0.121462055,0.64418733,-0.3742998,-0.26392487,0.009523955,0.71516484,-0.44932425,-0.011827539,1.0420516,1.4516373,1.2457502,0.27894834,1.4597164,0.2585052,-0.15650338,-0.50950116,-0.12940273,-0.89689803,0.35763565,0.3468449,-0.056183204,0.37985063,0.040401448,0.04429363,0.36407247,-0.527908,-0.120552875,-0.18144445,0.6346938,-0.23578902,-0.18712904,-0.2816714,-0.06722016,0.21581493,-0.08056169,0.13193937,0.3672432,-0.26229846,0.21800947,0.240104,0.84881526,-0.34129426,0.19716714,0.1379771,0.28540257,0.20487295,-0.11270734,0.1872375,0.061441332,0.40196827,-0.13368303,-0.78467447,-0.10646125,-0.32766214,-0.7282854,-0.3543136,-0.2265919,0.12655158,-0.08044907,-0.15855615,-0.15396462,-0.18164118,-0.44409016,0.17233711,-2.2030962,-0.2282146,-0.2235096,0.1656952,-0.2594414,-0.3043636,-0.0062689832,-0.481596,0.6324153,0.2883953,0.47607747,-0.587064,0.6348531,0.5894516,-0.30408815,0.16310738,-0.6695544,0.024805104,-0.34734926,0.34657755,-0.027992338,-0.25641546,-0.10511205,0.00070670247,0.49970254,-0.03953698,0.16349669,0.41509488,0.3134816,-0.13799907,0.49634728,0.26790866,0.6008069,-0.7023983,-0.14561728,0.32842693,-0.40490702,0.15756379,-0.18441583,0.12355914,0.35614768,-0.7099276,-0.6404351,-0.68633837,-0.31835356,1.3047472,-0.2603766,-0.65843636,0.11115699,0.090509914,-0.39804542,0.054934908,0.08882988,-0.2751133,0.037211712,-0.902186,0.19538514,-0.23492508,0.14879413,-0.13313933,0.076116964,-0.7229077,0.670669,-0.015143623,0.44873324,0.44903073,0.3149152,-0.49401262,-0.33561444,0.13304318,1.3168523,0.4211981,0.13215053,-0.17458482,-0.106416024,-0.15567355,-0.10737812,0.30610147,0.5692351,0.83643866,-0.038216855,0.057771433,0.5436252,-0.100790344,0.11710104,-0.060053665,-0.59225905,-0.26671156,0.026185205,0.75879043,0.39305153,0.0685701,0.38326654,0.039286632,0.32666454,-0.38959405,-0.3678335,0.6238903,0.9429345,-0.140961,-0.51135004,0.7590506,0.48182642,-0.38448736,0.65935344,-0.53099173,-0.54568714,0.27979305,0.04228246,-0.33233628,0.07118765,-0.5309417,0.33304736,-1.0369784,0.39550337,-0.59301305,-0.64029783,-0.60916615,-0.44254223,-2.884741,0.33508387,-0.35770857,0.041634742,-0.26612225,-0.20959277,0.26212314,-0.33895954,-0.641294,0.27699745,0.059439465,0.6532829,-0.007901554,0.12784058,-0.076846175,-0.13583827,-0.16077273,0.13174848,0.10625401,0.13066778,0.1540962,-0.45435905,0.10746759,-0.19490172,-0.32577053,0.039867837,-0.36632153,-0.3664507,-0.074248634,-0.68046856,-0.53966993,0.54169065,-0.27176514,-0.031701867,-0.319837,-0.112079106,-0.06442284,0.3493152,0.008079289,0.3026633,0.17982095,-0.23905693,-0.08018619,-0.313264,-0.07843362,-0.1317144,0.32573935,0.36029303,-0.4892892,0.060341615,0.20711704,0.7377272,0.14562918,0.632718,0.31374204,-0.19531949,0.36140737,-0.19299173,-0.38659716,-0.8175978,-0.39274737,-0.019760603,-0.33544192,-0.50217277,0.0032777488,-0.34803557,-0.918592,0.68852973,0.054204207,0.21635674,-0.059101265,0.42185712,0.12713884,0.14961405,-0.17761034,0.0039883927,-0.22335805,-0.3048395,-0.32419875,-0.92642856,-0.3252417,-0.10823908,1.0123723,-0.039651666,0.021564415,0.25778565,-0.1645413,0.16629006,0.384279,0.039892226,0.16311422,0.42406318,0.053501423,-0.54901934,0.36954522,-0.083991684,-0.12385374,-0.4964606,0.18623936,0.894094,-0.45474243,0.557008,0.6844623,0.23333336,-0.16786051,-0.50335324,0.023423618,0.2178555,-0.171019,0.67540526,0.41956398,-0.8450795,0.654175,0.34728345,-0.16939431,-0.8283413,0.5484217,0.102267705,-0.16922294,-0.051291395,0.50889677,-0.20409568,0.07763081,-0.30049664,0.32088825,-0.14928938,0.27180037,0.10485345,-0.1333359,0.37283015,-0.27200353,-0.41630498,-0.534181,-0.059568927,-0.72975516,-0.035044145,-0.07911015,-0.15849182,-0.041229066,0.25968608,-0.1644382,0.49177256,-0.18627836,0.29203036,-0.09768942,-0.47752407,0.5510275,0.57103544,0.26623538,-0.48892578,0.8006029,0.09336895,-0.15671422,-0.54957277,0.19728108,0.5980789,0.11392269,0.52315336,0.27088845,0.21818127,0.4884573,0.6556506,0.51578754,0.49923444,0.28775844,-0.047775913,0.18349154,0.17370705,0.39850926,0.04486716,-0.26159057,-0.27054855,0.07236525,0.17875625,0.33202335,0.02214007,0.62498873,-0.067956835,-0.28801593,-0.09968376,0.26375046,-0.35340324,-1.3989582,0.6669741,0.11949769,0.6495853,0.7399523,-0.13519742,0.18559074,0.34190592,-0.2781255,0.075253345,0.110391654,-0.040995862,-0.23106313,0.656014,-0.43607077,0.23208596,-0.14816363,0.16215426,-0.1282019,-0.07571436,0.51033324,0.83045554,-0.16852893,0.2962752,-0.24240516,-0.19554873,0.170433,-0.41236198,0.15535556,-0.23468168,-0.36340055,0.9331241,0.1863593,0.46296135,-0.14902616,-0.12370119,0.20836622,-0.094431035,0.110955656,-0.042849492,-0.107878864,-0.02760764,-0.67584276,-0.32104254,0.48278078,0.2879187,0.13776384,0.19227816,-0.1672744,0.29881236,0.1676292,0.1089584,0.070800856,-0.5804541,0.16499394,-0.12470296,-0.30553886,0.25377843,-0.5184865,0.023789681,0.255652,0.1155869,-0.42560366,-0.0873215,0.12211295,0.41257808,0.094846375,-0.29439476,-0.01439774,0.06692437,0.31386334,-0.24601026,0.1356671,-0.36056316,0.15268825,-0.93222016,0.5448724,0.027460193,-0.36952186,0.26118335,-0.19408135,-0.15983301,0.44845596,-0.3601346,-0.19009013,0.30643794,-0.08450786,-0.00351351,-0.4635422,-0.19978446,0.24446811,0.07249769,0.16835158,-0.14016028,-0.024732957,-0.01483797,0.36079502,0.060176726,0.03389254,0.28793937,0.34063217,-0.5731257,0.015033044,0.19878484,0.51443094,0.053456094,-0.05288419,-0.22268927,-0.42391506,-0.13733779,0.2442097,-0.12398728,0.13870569,0.05940335,-0.4667695,0.74501103,0.27246177,1.1146355,0.07854301,-0.3940784,-0.012835045,0.4987626,-0.14159189,-0.21050708,-0.11444952,1.0658242,0.64264864,-0.30418232,-0.19602178,-0.7882896,-0.036214396,0.083661586,-0.18126754,-0.38576767,-0.014699128,-0.5535436,-0.41944695,0.23624915,0.5029234,-0.15897934,-0.031865668,0.20384924,0.4573284,0.19789653,0.27867666,-0.6584634,0.039669245,0.20726629,-0.12120835,0.032581553,0.11723068,-0.50667125,0.22111996,-0.9036135,0.2047668,-0.06983799,0.04463464,0.039075155,-0.31920764,0.371634,0.22861083,0.17951693,-0.50548184,-0.30059674,-0.118773215,0.41592738,0.14700292,0.11349839,0.8037894,-0.19694386,0.22427945,0.13625811,0.3194809,1.1426512,-0.00950664,-0.11003546,0.03429308,-0.45105395,-0.873267,0.27037504,-0.37709394,0.030353954,-0.09775164,-0.51833385,-0.5906639,0.25257912,0.11602336,-0.14286943,0.38845685,-0.6534655,-0.18994527,0.21190323,-0.23209196,-0.3236527,-0.25116,-0.097874306,0.62387925,-0.23094857,-0.16494569,0.0055392087,0.37136436,-0.32522163,-0.63367575,-0.14843757,-0.33903107,0.5030146,0.10613811,-0.071923696,-0.0442667,0.1359802,-0.49766108,0.21066011,0.38848102,-0.18600018,0.096268475,-0.08731779,-0.076774426,0.51941305,-0.21410467,0.21994583,-0.43564788,-0.47007382,-0.8923054,-0.195751,0.313992,-0.01658071,-0.031671464,-0.67158294,-0.08813467,-0.12004992,0.1679194,0.13179228,-0.44151962,0.3947741,0.21358687,0.44744816,0.081754215,-0.8726831,0.18822956,0.20185502,-0.120572366,-0.3328332,0.467386,-0.11033102,0.61875564,0.058416266,0.16980062,0.18349005,-0.9078247,0.20331782,-0.19525748,-0.26927462,-0.6722142,-0.09301666 -622,0.36488238,-0.15929124,-0.6015546,-0.12409363,-0.27994722,-0.21969235,-0.098508015,0.589248,0.1877921,-0.540896,-0.19305097,-0.19879735,-0.105158925,0.35886255,-0.25943163,-0.5465279,0.01827695,0.15548682,-0.52575177,0.57406795,-0.3913812,0.3110326,-0.007294114,0.5269999,0.13458543,0.21993263,0.022674186,-0.15447018,-0.14309299,0.05736515,0.08452741,0.11967019,-0.5489404,0.19368188,-0.25434396,-0.43730474,0.027693095,-0.33456108,-0.5180339,-0.808515,0.28716898,-0.65400714,0.4862314,0.0075950623,-0.26406166,-0.022691326,0.08721622,0.32279631,-0.2689313,-0.06779963,0.058720205,-0.008026479,-0.05986052,-0.21152124,-0.28491408,-0.3027323,-0.537315,0.03291958,-0.50609154,-0.012313038,-0.038449932,0.1837416,-0.3292716,-0.05685511,-0.10180176,0.648876,-0.4080789,0.020299563,0.32852867,-0.123996295,0.26588577,-0.6632099,-0.19050209,-0.14089629,0.20290947,-0.10549074,-0.19506027,0.36653814,0.11968374,0.5783858,0.06290706,-0.2060204,-0.33650753,0.02717488,0.20988122,0.3342689,-0.19666089,-0.5462988,-0.110148944,0.07908225,0.16918537,0.17489202,0.19322443,-0.41715002,0.05596625,0.05003351,-0.22464374,0.393252,0.61851454,-0.14284936,-0.1757103,0.29103082,0.5763189,0.20665108,-0.16618516,0.13186301,0.12829593,-0.5554179,-0.22767952,0.029128075,-0.2286367,0.47090164,-0.13116086,0.2960373,0.62824744,-0.14597185,-0.037332494,0.20234118,0.17251872,0.057678282,-0.40216285,-0.35630158,0.3450468,-0.43522948,0.13284478,-0.1358154,0.7307391,0.24677053,-0.7798551,0.26836613,-0.63333553,0.13658175,-0.10224408,0.46579581,0.7143134,0.51698476,0.27397028,0.6555186,-0.54645574,0.17150085,-0.01906184,-0.37033287,-0.11139687,-0.15059035,-0.078696325,-0.3469065,-0.14074263,-0.19098306,-0.26481122,-0.05177751,0.20291784,-0.6036767,-0.12341218,0.05002929,0.95434344,-0.2225759,-0.06257806,0.8259036,1.0105237,1.0323114,-0.010547643,1.2375766,0.19074686,-0.24440463,0.32076985,-0.20717038,-0.88077736,0.31485325,0.28330126,-0.25294864,0.33472437,0.09486823,-0.054831743,0.5473475,-0.6363023,0.07408919,-0.26932338,0.41345993,0.15991409,-0.12934527,-0.38684177,0.016309598,-0.07049868,-0.17038508,0.015973981,0.27609473,-0.1592671,0.23087206,-0.07659519,1.4870415,-0.13980553,0.20961316,0.19524534,0.59236896,0.25389785,-0.09727502,-0.0827979,0.14541234,0.280566,0.11459685,-0.6662491,-0.013456928,-0.38190705,-0.56494874,-0.19349048,-0.19751906,-0.042231567,-0.24267991,-0.5399935,-0.16464864,-0.13653247,-0.22611438,0.24036665,-2.5080523,-0.3708025,-0.1195489,0.3182589,-0.32941288,-0.2545762,-0.124503076,-0.47849724,0.56795853,0.24578165,0.46342483,-0.64325815,0.50457144,0.5600903,-0.4566442,-0.03553749,-0.6180587,-0.07511575,0.05748364,0.1702155,0.016653309,-0.07232847,0.060539734,-0.09491939,0.32330686,-0.11653335,0.06569932,0.2622601,0.3687683,0.12521924,0.5222828,-0.011280196,0.5357503,-0.6060144,-0.13854496,0.21142676,-0.43790674,0.21961863,-0.073219284,0.14787292,0.4316245,-0.5813123,-0.73579943,-0.68441004,-0.24615555,1.0601056,0.02757883,-0.3344879,0.29665405,-0.4585976,-0.08377637,-0.044621803,0.47632176,-0.111784704,0.082278594,-0.8523306,-0.04908073,-0.20670354,0.22600731,0.039746873,0.03522081,-0.28816137,0.47435775,-0.097687766,0.44837338,0.5439407,0.18805109,-0.41869527,-0.51878625,0.05828595,0.7467804,0.35688767,0.19686839,-0.14208233,-0.089047894,-0.29991135,-0.079555474,0.04296612,0.46953425,0.77084965,-0.11771327,0.018150117,0.32457718,0.007541043,0.10718709,-0.15289918,-0.5394569,-0.15959896,0.09067269,0.46563792,0.7468761,-0.3014516,0.489856,-0.13302575,0.36649105,-0.25040907,-0.39886585,0.56601965,0.7614028,-0.32846946,-0.34204802,0.6155714,0.2907708,-0.4097178,0.4944165,-0.60416704,-0.22341831,0.48225957,-0.06684095,-0.48914906,0.050581105,-0.22138812,0.28155553,-1.0136184,0.4663822,-0.38884354,-0.588273,-0.7246102,-0.26847592,-2.6474833,0.2108988,-0.34398603,0.00083779223,-0.08783335,-0.0058336086,0.12873195,-0.5011439,-0.75351906,0.18211211,0.059952967,0.6223132,-0.13575396,0.18372759,-0.15137868,-0.15694813,-0.2592247,0.16624579,0.32956603,0.20162632,0.19009222,-0.5374283,-0.2301916,-0.08657171,-0.47220844,0.17091708,-0.74690044,-0.41292533,-0.22249036,-0.7044517,-0.36085656,0.74497384,-0.27971914,-0.08163132,-0.17498183,0.06021115,-0.086259104,0.38228443,0.03148649,0.16216119,0.13271542,-0.07870251,-0.021321168,-0.25171775,0.14026643,0.0037651253,0.36440635,0.23841402,-0.11867257,0.17456113,0.54265743,0.9439283,-0.025641084,0.69658333,0.6431646,-0.121292286,0.42036352,-0.35808104,-0.3605455,-0.48403808,-0.26174825,0.089158274,-0.3367394,-0.431736,0.31277642,-0.52391917,-0.8194439,0.63615364,-0.03094778,0.13244422,0.09887978,0.064073555,0.5056535,-0.21405192,-0.17556636,-0.048197825,-0.061719906,-0.5530652,-0.35725188,-0.6786838,-0.54065275,-0.0420377,1.2505283,-0.16244335,-0.0419322,0.12319275,-0.28591552,0.02428111,0.16381843,-0.119061574,0.08821411,0.30909038,-0.073895015,-0.6283336,0.31197992,-0.087166436,-0.17453542,-0.5470285,0.12922223,0.74107116,-0.65374357,0.600315,0.28220224,0.015627043,-0.22162381,-0.54526746,-0.17701812,0.09873665,-0.036181994,0.41906866,0.19709477,-0.8251739,0.39041117,0.5553386,-0.3123517,-0.8307189,0.33799025,-0.0075586224,-0.25574157,-0.050020773,0.5005776,0.030124221,0.033713445,-0.24767038,0.22286871,-0.36966392,0.22276227,0.23499775,-0.2921053,0.51248026,-0.33477184,-0.11470164,-0.7894951,-0.06101673,-0.62163603,-0.14449477,0.38828716,0.026371984,0.0037121943,0.122319065,0.20745263,0.37388995,-0.073063135,0.050418753,-0.16284725,-0.28142348,0.28801557,0.49042913,0.5064523,-0.52542084,0.6102452,-0.0585982,-0.117007315,0.05085402,0.1326308,0.4303979,-0.0050456696,0.46370718,0.09401006,-0.1075598,0.21441177,0.9707013,0.07693088,0.5087545,0.19962248,-0.18634592,0.21790777,0.09260224,0.13118133,-0.010519965,-0.46764842,0.14234509,-0.050824385,0.25764218,0.4815168,0.14138325,0.3308041,0.012373239,-0.4466648,-0.10539476,0.14689983,0.04630083,-1.4480113,0.5483347,0.107375756,0.8012123,0.49891424,0.17966425,0.016833033,0.59051615,0.046289172,0.1722552,0.45166785,-0.1080813,-0.41128138,0.5604876,-0.574876,0.50184643,-0.05008221,0.060512755,-0.07103871,0.16364382,0.45592663,0.7667052,0.001450198,0.036619958,0.08860863,-0.2463924,0.105764456,-0.46191803,0.1065703,-0.38062677,-0.2350898,0.55685383,0.5002685,0.2290833,-0.13528271,-0.03376613,0.19672565,0.004545348,0.30398685,-0.120173745,0.09918068,-0.005295526,-0.5331522,-0.25779957,0.5514801,0.06284976,0.19721428,-0.03917625,-0.08076564,0.32690224,-0.14905807,-0.07722611,-0.0144151915,-0.79133224,0.017923534,-0.29224738,-0.36757967,0.36953193,-0.13574514,0.17727259,0.06565185,0.095143445,-0.5333958,0.49147248,-0.16933313,0.6240535,-0.09432513,-0.14906192,-0.2580872,0.14229935,0.19029179,-0.19575039,0.030547904,-0.35885334,-0.092714734,-0.5642862,0.48001242,0.08460854,-0.23222362,0.03807794,-0.13643564,-0.04486694,0.5594769,-0.15994452,-0.13770048,-0.005089479,-0.22734407,-0.29103827,-0.27553862,-0.11280869,0.2960635,0.116994195,0.12839083,-0.06392535,-0.2576905,-0.056086097,0.59216696,-0.037326694,0.33458704,0.4514232,0.03432297,-0.34771279,-0.21940525,0.21739046,0.52681273,0.11512659,-0.119758405,-0.24198417,-0.32796845,-0.2551901,0.16160491,-0.2213567,0.36525458,0.090923026,-0.42147177,0.79821,0.19511162,1.3208071,0.061946463,-0.21949932,0.066564634,0.28734165,-0.015329497,0.0080706505,-0.42545924,1.0481708,0.68459,-0.15971789,-0.111937694,-0.32534736,0.04508921,0.19745514,-0.20412752,-0.24590267,0.024298022,-0.5685814,-0.20524038,0.19030036,0.2750923,0.08279217,-0.1945766,0.054664962,0.106130466,-0.01766717,0.3398542,-0.556606,-0.07076315,0.26086783,0.3783206,0.1538447,0.15390699,-0.50874674,0.4072542,-0.4996999,0.25116754,-0.32488775,0.2542228,-0.20143335,-0.4155874,0.12917744,0.06123525,0.45355433,-0.34375253,-0.30522552,-0.2966343,0.5404712,0.172725,0.031422723,0.7583441,-0.26572117,0.0005934047,0.07520791,0.60132825,0.82741153,-0.18188456,-0.20831533,0.28289244,-0.17683287,-0.6809951,0.35869762,-0.40051046,0.14573185,-0.15561745,-0.09092302,-0.6951937,0.22675972,0.22914192,-0.17588404,-0.03974334,-0.6619758,-0.23409131,0.24608926,-0.22812377,-0.19860448,-0.30814567,0.020628085,0.57766634,-0.19633047,-0.18534084,0.059077892,0.30426875,-0.21472725,-0.4070843,-0.08008373,-0.36418846,0.196471,0.24020925,-0.35088304,-0.16754921,0.05429026,-0.5145729,0.04940208,0.07476306,-0.35496756,0.09679593,-0.16325125,-0.13344467,0.7770564,-0.07271985,0.2543723,-0.43773618,-0.44315982,-1.0363805,-0.17841223,0.53992045,0.16173492,-0.0077522523,-0.8867565,-0.07003875,0.07413198,-0.079327404,0.04492436,-0.3256034,0.43861362,0.1659715,0.50633574,-0.041096773,-0.6393547,-0.025065929,0.19007294,-0.21358709,-0.55465543,0.46035084,0.0150663685,0.9800102,-0.014533688,0.06539994,0.1908162,-0.4455734,-0.006807289,-0.28987414,-0.34825566,-0.5740058,-0.06127986 -623,0.37536266,-0.1973221,-0.46019194,-0.101468526,-0.1992835,0.07548509,-0.25159281,0.43898794,0.22907019,-0.5314903,-0.18401413,-0.074924804,-0.039862435,0.056838408,-0.065069415,-0.42160904,-0.113642804,0.25519365,-0.67532504,0.5327428,-0.32046467,0.3400945,0.020863349,0.31456396,0.116312064,0.2889209,0.03605129,-0.09982594,-0.11480681,-0.21798143,-0.11265612,0.39930186,-0.47056803,0.27941555,-0.25459307,-0.34343165,-0.12390378,-0.48130384,-0.27015096,-0.72123826,0.29667395,-0.87176174,0.48311242,-0.021076052,-0.39076385,0.360548,-0.1339077,0.2634115,-0.2443268,0.156096,0.11222176,-0.048225477,-0.06482691,-0.23032314,-0.24512862,-0.12098387,-0.53054696,0.05192936,-0.3806534,-0.09841079,-0.17734991,0.14243765,-0.26548818,-0.064402066,-0.12951678,0.49010435,-0.39352837,0.010425838,0.15579513,-0.1136383,0.29475135,-0.473416,-0.08240621,-0.087076694,0.4349178,-0.21127532,-0.16676407,0.09780543,0.18770742,0.63594854,-0.054597154,-0.11392684,-0.251675,-0.07968509,0.070427194,0.5124067,-0.020027854,-0.34980354,-0.17188683,-0.18729587,0.20907034,0.20191129,0.15224794,-0.2443444,-0.1662209,-0.09554425,-0.20952167,0.30461863,0.47760457,-0.24237731,-0.22591752,0.34914356,0.6291068,0.091689676,-0.120691866,0.15331273,-0.016900443,-0.4632298,-0.15057604,0.22684582,-0.12966503,0.3933058,-0.18910335,0.2477861,0.4899002,-0.11202196,0.04958266,0.122027546,-0.037021946,-0.055730265,-0.27349907,-0.23673025,0.26417503,-0.41125074,0.09930981,-0.19830285,0.6476692,0.01743696,-0.7393198,0.36556512,-0.47182855,0.13205172,0.0046433806,0.5535185,0.79342777,0.38219157,0.30150318,0.74728733,-0.37194532,0.011956883,-0.26009688,-0.21673264,-0.12742686,-0.060921546,0.028323699,-0.4965053,-0.012171479,-0.044811495,-0.06504005,0.027427305,0.42822984,-0.54491025,-0.11763633,0.16643515,0.607621,-0.34130058,-0.056795683,0.99245626,0.8405916,0.970793,0.07531802,1.0940167,0.2586159,-0.2292672,0.12572584,-0.38435853,-0.6772637,0.22402716,0.30014598,0.2952071,0.1905122,-0.023899388,0.080115035,0.4547296,-0.32682973,0.016240673,-0.34107396,0.06706677,-0.102732226,0.020107124,-0.47143957,-0.29307207,-0.068432875,0.06488789,0.23233542,0.20461161,-0.24096562,0.38497385,0.12009176,1.5516843,-0.19612621,0.0120963855,0.1594699,0.28583065,0.20672144,-0.16365299,-0.12058925,0.3307378,0.38527644,-0.12425954,-0.6752443,0.02601823,-0.08100876,-0.40029004,-0.114993595,-0.27832133,0.042328477,-0.08274021,-0.46507788,-0.19003741,-0.0990049,-0.550757,0.45512372,-2.6973042,-0.24108331,-0.07147029,0.33554,-0.22222322,-0.3312052,-0.25832394,-0.49551436,0.466162,0.28894073,0.39525393,-0.5654566,0.3843009,0.35396805,-0.49624655,-0.098036304,-0.66830313,0.053473905,-0.06835021,0.21338752,0.040640034,-0.14219491,-0.14843622,-0.070367835,0.4519205,-0.0403401,0.14458431,0.3049382,0.3057913,0.076962106,0.40163344,0.04287853,0.4741566,-0.27542928,-0.24951348,0.4247338,-0.44070756,0.14029689,-0.17986314,0.14708821,0.39731488,-0.6474264,-0.6589283,-0.84141695,-0.33823156,1.234319,-0.16999337,-0.40892062,0.24446699,-0.41605288,-0.31242654,-0.032629583,0.6585056,-0.049397763,-0.21853147,-0.8823784,-0.05682111,-0.09364642,0.24938303,-0.029875942,-0.052006938,-0.43277058,0.57952046,-0.14074616,0.5224628,0.33998507,0.14538316,-0.2587512,-0.32836634,0.11945719,1.0045781,0.36714092,0.112444736,-0.2726105,-0.33029854,-0.3821726,-0.077954665,0.04819746,0.5915304,0.68173766,-0.060772788,0.11300321,0.32374227,-0.06494267,0.17046985,-0.2144041,-0.115789846,-0.2192316,0.15299352,0.6080906,0.44011512,0.08470273,0.34662062,-0.08395929,0.2732558,-0.33100653,-0.41177544,0.43687412,0.6236028,-0.1371067,-0.28709218,0.60041165,0.48353326,-0.21896304,0.45242015,-0.5302019,-0.38195893,0.28308257,-0.21589006,-0.43367508,0.32604012,-0.32754198,0.35679913,-0.81243,0.15945038,-0.23221473,-0.5693188,-0.51240754,-0.081842996,-2.5446181,0.17020513,-0.05178182,-0.22853677,-0.065506674,-0.31519264,0.20496972,-0.4207951,-0.54463536,0.2806085,0.065937005,0.7366932,0.038926557,0.024331857,-0.2790203,-0.36569336,-0.25314456,0.13006988,0.051603515,0.42606163,-0.04408147,-0.43416303,-0.024014238,-0.22502436,-0.24751942,-0.06419475,-0.55904937,-0.3744171,-0.13574147,-0.57949334,-0.25985807,0.580207,-0.19321957,0.16216765,-0.23382814,-0.11990328,-0.08895361,0.341921,0.10648702,0.19381009,0.084994264,-0.064884745,0.008741438,-0.23659854,0.2561562,-0.049335826,0.06459939,0.31113145,-0.21331953,0.3076575,0.26211554,0.5960658,-0.22825132,0.93246335,0.51309246,-0.039276306,0.2824097,-0.2083246,-0.3054231,-0.49363798,-0.1406447,-0.06627622,-0.5072547,-0.40718612,-0.1598161,-0.31518108,-0.8287634,0.5423152,0.0818062,0.104676686,0.090471536,0.27928156,0.48624125,-0.14333434,-0.05955317,-0.10057276,-0.20127775,-0.3347135,-0.29763442,-0.69366723,-0.40287766,0.10883059,0.9033987,-0.078147314,0.08111335,0.13773756,-0.1746727,-0.044300873,0.18868664,0.13801913,0.11418344,0.42555457,-0.017188024,-0.4315552,0.38694632,-0.013590292,-0.23721132,-0.5039378,0.21453829,0.6518614,-0.62757736,0.50512564,0.28727046,0.08480382,-0.26071897,-0.43485162,-0.115336545,-0.0656834,-0.26771316,0.41859168,0.29529998,-0.7272542,0.48204497,0.28204864,0.0765173,-0.8166883,0.40801865,-0.10281323,-0.25674143,-0.082727864,0.34910524,0.03999935,0.089698344,-0.14874265,0.13671471,-0.38966134,0.25951424,0.19459601,-0.08555288,0.30520508,-0.34937745,-0.107768856,-0.6566134,-0.09174911,-0.65718323,-0.27065217,0.19083446,0.014533409,0.090027615,0.2562266,0.03126589,0.41601464,-0.23411258,0.16966924,-0.19270486,-0.14025125,0.20715848,0.4007888,0.40010923,-0.3024601,0.5443955,0.013900566,-0.0049984497,-0.3042521,0.1161058,0.47031122,-0.015225601,0.36220646,-0.23938313,-0.28441018,0.30269846,0.73494756,0.18349454,0.39104107,-0.05288375,-0.09933507,0.13408467,0.11435863,0.21232122,-0.11096382,-0.4000648,-0.076506525,-0.11740685,0.1629614,0.3606612,0.13807923,0.31173995,-0.0660026,-0.24302131,-0.0013064008,0.20373826,-0.073931485,-1.1029805,0.3357286,0.16819604,0.8289646,0.5062657,0.046648867,0.013504203,0.5905031,-0.2664738,0.15617935,0.11010682,-0.24328159,-0.48353058,0.49661523,-0.6388442,0.4862621,0.0018866042,-0.1052374,0.085747465,-0.11743234,0.42347464,0.6412566,0.001815094,0.19969511,-0.01149627,-0.20568632,0.20858835,-0.23376665,0.024876198,-0.57225853,-0.17905858,0.7085101,0.44574395,0.5011183,-0.14017268,0.012435959,0.11335037,-0.06932737,-0.067754336,0.1221522,0.14900045,-0.010422317,-0.57309544,-0.13098152,0.42291203,0.073538564,0.15633461,0.1092931,-0.35763088,0.25930747,-0.010423259,-0.008924794,-0.20420672,-0.6305505,-0.04029832,-0.39622876,-0.25094542,0.34110022,-0.084720835,0.19781929,0.2104848,0.049827315,-0.26135683,0.27485606,0.20561586,0.77084476,0.11638485,-0.09163891,-0.3145247,0.29874986,0.18346772,-0.2960687,-0.20485137,-0.2679482,0.11822103,-0.830982,0.36853272,0.0010757287,-0.37953588,0.301017,-0.10878766,-0.005998097,0.57532316,-0.049701564,-0.079069644,0.116388604,-0.24776857,-0.46025866,-0.22193673,-0.19871496,0.28664348,0.2919943,0.06341725,-0.045498516,-0.018981857,-0.078886524,0.5304911,0.19132586,0.35926044,0.27864066,0.08914766,-0.38465407,0.06820424,0.20623995,0.4567626,-0.009910003,-0.038707145,-0.19868775,-0.36949998,-0.4144725,0.31272516,-0.0044918936,0.3523964,0.084822804,-0.17650019,0.684582,0.12574233,0.930143,0.07065005,-0.21187381,0.12442339,0.4274053,-0.043891024,-0.066200204,-0.2564216,0.886896,0.45612806,-0.09425742,-0.034193534,-0.22099677,-0.12503797,0.090522006,-0.2381882,-0.024017723,-0.035031445,-0.6581466,-0.3407716,0.24747628,0.2552943,0.20056944,-0.119706884,0.13856557,0.12663232,-0.103183046,0.22843644,-0.34539005,-0.077095814,0.3396818,0.18631741,-0.06248762,0.10599964,-0.4081769,0.3609658,-0.55703837,0.041955885,-0.19698669,0.12284196,-0.15287669,-0.2652048,0.26563513,0.020386934,0.2076666,-0.31018433,-0.4222756,-0.30506238,0.45029142,0.049656637,0.1383621,0.45477298,-0.2712597,0.11493647,0.13135,0.54985803,0.97114605,-0.08628836,0.09325884,0.35479742,-0.22984396,-0.6429249,0.20653628,-0.2703523,0.20934287,0.0042999107,-0.21711129,-0.30608165,0.2973272,0.21375299,0.13336226,0.074442126,-0.5881755,-0.10966412,0.22974978,-0.22601365,-0.15409942,-0.24235554,0.05171334,0.50844616,-0.19883344,-0.41233584,0.043806024,0.17056678,-0.36811438,-0.5413893,0.026814302,-0.31635472,0.21370731,0.072509654,-0.40512934,0.039651383,0.07314472,-0.39865354,0.0068496587,0.121455215,-0.33178583,-0.0037174146,-0.46030605,0.01565855,0.9085693,-0.15968555,0.22318605,-0.3611756,-0.5723245,-0.88121927,-0.25481686,0.4436052,0.10762175,0.06314586,-0.6064824,0.12176439,-0.23547548,-0.094518505,0.14430732,-0.29665157,0.529287,0.19736856,0.43145102,-0.093771234,-0.7880681,0.193917,0.07587214,-0.336922,-0.5010169,0.51892483,0.11675592,0.8245411,0.086861916,0.12243393,0.23839357,-0.6256374,0.0039269426,-0.22200139,-0.10294779,-0.7329848,-0.07516609 -624,0.70064723,0.03196172,-0.5600981,-0.1201598,-0.4528486,0.16590343,-0.2846087,0.12375178,0.16846001,-0.4949941,-0.25429964,-0.032322228,-0.14931695,0.30787137,-0.2433725,-1.0043522,0.031971727,0.20179619,-0.56097084,0.9083022,-0.27853557,0.4413712,0.004151835,0.18092075,0.117273346,0.38423562,0.31495214,-0.077153146,-0.19240396,-0.19076797,-0.1771282,0.10412483,-0.62806076,0.39285052,-0.07169502,-0.21404617,-0.025908584,-0.37650633,-0.29166153,-0.8205381,0.33921388,-0.6620307,0.35515285,-0.009576626,-0.14640293,0.12109351,0.24918477,0.37368357,-0.12794551,0.06732195,0.094407335,-0.051769573,-0.2487551,-0.15016577,-0.27517384,-0.4448139,-0.6025376,-0.035360124,-0.5837659,-0.23209837,-0.3851025,0.3144384,-0.32167053,0.09748425,-0.17956926,0.7100479,-0.33480912,-0.004934118,0.22489013,-0.13253522,-0.030272746,-0.6800241,-0.079714425,-0.111037664,0.32566732,0.0061226278,-0.16105196,0.3181685,0.18977064,0.36317798,0.20251113,-0.39616698,-0.403652,-0.26305458,0.46457508,0.41871923,-0.0696267,-0.3101451,-0.33349627,-0.07199317,0.2394049,0.13013418,0.22892132,-0.31353837,-0.059651088,-0.23828869,-0.29493833,0.43771967,0.5326666,-0.31482503,-0.19001076,0.4028742,0.5298397,0.07391669,-0.10642463,0.06721366,-0.0406122,-0.4218461,-0.1226257,0.28902054,-0.07162102,0.443464,-0.12312157,0.084586576,0.5501091,-0.13823582,0.037549082,-0.004742377,-0.0008187925,0.09829908,-0.24175924,-0.14767027,0.23097734,-0.58551854,0.095650546,-0.28093642,0.8237668,0.15211649,-0.7207431,0.17186844,-0.5290132,0.14356975,-0.024262778,0.55640763,0.5802929,0.36671472,0.054074008,0.8154069,-0.27616718,0.16319782,-0.111089624,-0.2724113,-0.30657163,-0.07861019,0.035093315,-0.3675216,0.17458834,-0.092338845,0.008510401,-0.09886515,0.48625362,-0.47767225,-0.21181768,-0.096901774,0.85032225,-0.34346637,-0.12677236,0.9222973,1.0196292,1.1172035,0.012179377,1.1910275,0.20807356,-0.29129848,-0.30412814,-0.3646272,-0.5808327,0.3269567,0.3307874,0.13605164,0.34895745,0.044865478,0.002502508,0.19379127,-0.42375436,-0.06843343,-0.17344065,0.26614022,0.10201584,0.049965143,-0.3563134,-0.21815884,0.115757,-0.0064928234,0.2795913,0.13908976,-0.2957597,0.43800092,0.018384477,1.2915604,-0.0027479162,0.18349777,0.14068834,0.30283654,0.26676255,-0.091671355,0.019256985,0.291122,0.28668958,-0.14165367,-0.66300976,-0.009280878,-0.38711122,-0.42007688,-0.19536443,-0.33830357,-0.06158778,-0.06345229,-0.24555953,-0.16729605,-0.02488099,-0.31365624,0.43563506,-2.3530767,-0.14294323,-0.24441223,0.38790682,-0.32973197,-0.3496248,-0.102558464,-0.66409683,0.4042222,0.3040134,0.38693994,-0.32940584,0.39998627,0.4756005,-0.5688509,-0.025311517,-0.51892287,-0.09503921,0.028470907,0.5207633,-0.19037957,-0.03646469,-0.13568845,0.25920144,0.5313926,0.033186983,0.17208445,0.4697438,0.3131017,0.14703716,0.44433385,0.16493572,0.5128155,-0.357727,-0.08517127,0.40189323,-0.42962262,0.30017394,-0.19577213,0.032871354,0.4409315,-0.5687413,-0.6302592,-0.6244114,-0.40576428,1.0223627,-0.35388547,-0.5357576,0.16915685,0.1586044,-0.13340712,0.04792346,0.33584175,-0.04021444,-0.04141098,-0.6412935,0.07148427,-0.050660685,0.25732478,-0.04025192,0.071731225,-0.47331175,0.6684348,-0.18747595,0.5214801,0.24105161,0.4669199,-0.20845196,-0.58940774,-0.023579404,1.0948557,0.42713785,0.11820971,-0.27668566,-0.18813749,-0.4387394,-0.19093956,0.0305542,0.59776646,0.70253414,-0.024380865,0.0032468894,0.29208106,0.046000432,0.25552958,-0.19348322,-0.385216,-0.2852551,-0.16727054,0.5516993,0.43235773,-0.08829773,0.37869027,0.0033475512,0.3369871,-0.1562021,-0.37643552,0.52648294,0.97505635,-0.17745277,-0.37639645,0.63757277,0.5012335,-0.26156238,0.5928941,-0.6455379,-0.30998954,0.49634048,-0.12270281,-0.2565584,-0.0051917327,-0.40883195,0.13638805,-0.75061965,0.28200853,-0.310888,-0.56623775,-0.51520145,-0.13797906,-2.4329674,0.24527988,-0.22298521,-0.10240684,-0.19105798,-0.08799048,0.0040248563,-0.5696359,-0.6112703,0.18962288,-0.005513233,0.6810867,-0.24231847,0.19887595,-0.09483142,-0.0938186,-0.3563282,0.25416824,0.16500412,0.35134482,-0.096782684,-0.25865498,0.098441,-0.14793079,-0.43859982,0.11985631,-0.43422246,-0.46256495,-0.25170153,-0.5083138,-0.08594728,0.6492644,-0.31209666,0.14529556,-0.14860204,0.093777806,0.0035006755,0.24635208,0.034954954,0.32131818,0.20104353,-0.15457612,-0.14601451,-0.22675377,0.39884448,0.09989155,0.27889174,0.35260054,-0.12675022,0.17109576,0.3727533,0.5416809,0.07324015,0.8326472,0.19906494,-0.12261321,0.33440882,-0.2752795,-0.31826982,-0.57660544,-0.21945058,0.0070564044,-0.4266322,-0.48675033,-0.101201236,-0.36655474,-0.9289068,0.48573804,0.0021558404,0.27974436,0.05278915,0.21799017,0.43909228,-0.0834323,-0.030142546,-0.07036543,-0.06835872,-0.46257,-0.33616465,-0.5933229,-0.41665494,0.07496134,0.985273,-0.2534393,-0.16524296,-0.14434394,-0.27958763,-0.06565708,0.15077075,0.14765936,0.114241205,0.38287702,0.08706937,-0.6451417,0.558653,-0.123581074,-0.008263076,-0.41242126,0.16771685,0.49486586,-0.57244354,0.42119065,0.40489167,0.12698185,-0.09435709,-0.6916906,-0.055460073,0.0609062,-0.20248199,0.35914403,0.31441674,-0.65953773,0.36757022,0.05882942,-0.26708722,-0.9981393,0.54418766,0.07402707,-0.3569586,0.03333549,0.4781292,0.17564039,0.009234428,-0.21606557,0.15602306,-0.31318334,0.19872592,0.25883126,-0.07758802,0.35287803,-0.27722493,-0.4094282,-0.75162196,0.03726432,-0.6082902,-0.18420659,0.18702768,0.017693913,-0.0028209116,0.1914321,0.20666431,0.51176286,-0.25060707,0.071506344,-0.17404824,-0.2376364,0.43741155,0.4385996,0.5849641,-0.45011458,0.6085068,-0.0152252875,-0.07780821,0.027230484,0.086961746,0.35375613,-0.010562504,0.4604364,0.17122082,-0.011726432,0.14357243,0.5558342,0.3195369,0.27328244,0.1653191,-0.41685048,0.39448944,0.050270945,0.2325879,-0.074816875,-0.53112763,-0.04557898,-0.11867672,0.07660314,0.4565028,0.17075932,0.41997153,-0.052094415,-0.21491507,-0.0018918654,0.0033673889,-0.18991928,-1.230463,0.2841208,0.07650088,0.8590729,0.50889826,-0.00092946785,0.07371509,0.47052464,-0.09966427,0.16612093,0.28588596,0.01733213,-0.2858462,0.35234985,-0.5121383,0.3384503,0.013108264,0.06764047,-0.039404258,0.122106984,0.38054284,1.0196729,-0.14941552,-0.012296864,-0.25416398,-0.26546282,0.32373992,-0.30882245,0.10667794,-0.4515355,-0.35494846,0.75687605,0.2820696,0.31234357,-0.0850332,-0.06598,0.15735295,-0.14668956,0.29282895,-0.010511138,0.0007645207,0.058235336,-0.5226741,-0.3707885,0.4709674,-0.32337537,-0.15051192,0.0706971,-0.10947653,0.06879533,0.045999873,0.020130789,0.04182305,-0.787026,-0.07433869,-0.20807609,-0.31965205,0.17603658,-0.2798955,0.16725239,0.15312926,-0.096453615,-0.4468757,0.20381029,0.30460364,0.54912704,0.09837154,-0.1887134,-0.37716293,0.00032605143,0.24351151,-0.37745285,0.2867546,-0.15795434,0.27782238,-0.7823373,0.53951603,-0.09843787,-0.33959344,0.059984587,-0.15460882,-0.21434796,0.4093583,-0.12805142,-0.09701259,0.11678242,-0.073895074,-0.076595485,-0.010496728,-0.20217018,-0.060326904,0.12284444,-0.15296666,-0.011302503,-0.021439258,0.016819883,0.4720428,0.08878775,0.3967311,0.36909485,0.08320762,-0.56522816,0.1309618,0.22126494,0.41819102,0.07305814,0.025723835,-0.088491894,-0.36473528,-0.35047728,0.42204705,-0.16299357,0.19368519,0.12529285,-0.2406955,0.723653,0.12554915,1.1067886,0.00046099283,-0.36331105,0.038400132,0.5413537,-0.0047937315,0.0018189725,-0.3422902,0.9860003,0.4920018,-0.2176651,-0.23358469,-0.41000324,0.053312838,0.073541775,-0.27789378,-0.09056767,-0.050873566,-0.33534417,-0.36046648,0.042232726,0.18654922,0.04044132,-0.052754752,-0.095867366,0.25954366,0.16587563,0.40054557,-0.6519361,-0.09613756,0.31249204,-0.007821987,0.1912199,0.19579525,-0.4726785,0.35862795,-0.70174325,0.11084147,-0.20887227,0.21823463,-0.14389193,-0.26532757,0.32866102,0.17380123,0.39693406,-0.36747238,-0.41799212,-0.3291867,0.41437042,0.13852628,0.097768374,0.63958335,-0.22723952,0.013458835,-0.048049442,0.58154154,1.102517,-0.102011055,0.20749302,0.3009206,-0.45383772,-0.57654274,0.018136933,-0.35476404,0.0028977816,-0.06113136,-0.31265736,-0.6369455,0.19372483,0.18979204,-0.014315816,0.32041484,-0.7466381,-0.3014073,0.24126653,-0.30092654,-0.20852697,-0.124635614,0.27157876,0.73590404,-0.32708377,-0.25577426,0.014378285,0.18517244,-0.26095006,-0.8291365,-0.07650067,-0.22717442,0.28437132,0.052841935,-0.22408763,-0.21296783,0.1456486,-0.4790715,0.13033281,0.26246625,-0.2234947,0.04065594,-0.24339333,-0.03727389,0.6783133,-0.121991,0.11010331,-0.43005612,-0.44060066,-0.9994867,-0.4796278,0.12553045,0.16448647,0.033902735,-0.5728855,-0.24385576,-0.28878722,0.05456224,0.14213358,-0.3267915,0.37178817,0.23893204,0.4772021,-0.13103236,-1.1087326,0.12991664,0.20084225,-0.2796444,-0.51196295,0.31445718,-0.10758049,0.7514538,0.18213423,-0.024890466,0.17057548,-0.6892133,0.08754515,-0.18664214,-0.089857146,-0.72284836,0.29770297 -625,0.51793617,-0.28434104,-0.5135078,-0.080555014,-0.24590334,-0.06622071,-0.13703953,0.55713,0.30296624,-0.29213244,-0.2107996,-0.22317266,0.10787232,0.2925939,-0.27040407,-0.62878907,-0.040389195,0.12695192,-0.46913987,0.5793421,-0.4225272,0.11152739,-0.0047320127,0.42183435,0.45510688,0.19221218,0.08446552,0.14348851,-0.26897207,-0.12450163,-0.13006131,0.33423248,-0.4126975,0.004810003,-0.3249845,-0.45809525,-0.16374573,-0.5911602,-0.32308966,-0.6945441,0.46751425,-0.8233627,0.40914166,0.17358582,-0.18400033,0.30290696,0.19262455,0.049991388,-0.2710013,-0.117230855,0.077681035,-0.10040136,0.1541639,-0.19696802,-0.19566998,-0.2376124,-0.7229918,-0.077045314,-0.53937346,-0.18118477,-0.21515451,0.013623609,-0.23523544,-0.02913203,-0.0076559004,0.75970924,-0.36105886,0.11827225,0.07574379,-0.14749192,0.088413715,-0.58980334,-0.33725753,-0.06882291,0.18758294,-0.093139805,-0.24516559,0.2171974,0.18232116,0.3450249,-0.23514105,-0.075091355,-0.58247733,-0.004817344,0.15273754,0.36830312,-0.09594439,-0.7498567,-0.15995063,-0.103065126,-0.025144044,0.20150656,0.1991382,-0.12862678,0.001425977,-0.01826067,-0.10172618,0.52027667,0.43684122,-0.38013193,-0.1985042,0.23154125,0.31923044,0.29604957,-0.15934607,-0.24128716,0.13677898,-0.632159,-0.096164465,0.013174562,-0.23956755,0.6820211,-0.067211024,0.35782704,0.46038407,-0.17944847,0.011184447,0.121889405,0.029008707,-0.11630356,-0.41244966,-0.28758863,0.2534532,-0.3355748,0.10657963,-0.15048088,0.734217,0.1308571,-0.7156529,0.3536042,-0.60053116,0.15404925,-0.009724534,0.3525998,0.69830555,0.35639292,0.43918937,0.60652155,-0.23136145,0.024027701,-0.17793117,-0.29832068,0.077260055,-0.1693136,0.06165842,-0.5337692,-0.13592972,-0.04551833,-0.0014231297,0.28908288,0.8014397,-0.45156989,-0.19344558,0.17358382,0.80658555,-0.16546543,-0.08970957,0.7904933,1.144275,0.96131635,0.042974796,1.0601156,-0.04808289,-0.19856013,0.3599313,-0.22268721,-0.6444841,0.25517514,0.15818392,0.013356814,0.20998254,-0.047401674,-0.019082628,0.33816844,-0.33823088,0.08898326,0.0024291254,-0.0057319817,0.33251423,-0.05052072,-0.3793511,-0.32316494,-0.2375814,0.10662282,0.21846558,0.3373174,-0.35153726,0.26831594,-0.14128527,1.6770134,-0.06906669,0.010996127,0.08212737,0.5808341,0.31795007,-0.11282202,-0.16507879,0.36316505,0.14889622,0.25641426,-0.59749895,0.20986702,-0.23096387,-0.42371795,-0.0019947565,-0.5024205,-0.3170842,-0.039093316,-0.51325613,-0.14640592,-0.08320747,-0.4472626,0.336201,-2.8634367,-0.11920417,0.092568636,0.42146996,-0.1548659,-0.41111177,-0.2621886,-0.40920463,0.4672422,0.30457112,0.3853933,-0.64185005,0.2525688,0.5445822,-0.5660314,-0.15162174,-0.47087017,-0.010933912,-0.03480675,0.40991357,-0.07595208,-0.029576324,0.20790586,0.36206546,0.58499324,0.14921817,0.2064186,0.26250225,0.43191686,-0.2648005,0.55762374,-0.21428563,0.39905664,-0.418896,-0.18151698,0.1906469,-0.46550295,0.2345449,-0.2598599,0.1656928,0.5688876,-0.4812639,-1.1318395,-0.5354097,0.14360288,0.97119373,-0.12618111,-0.34950966,0.33399242,-0.6656475,-0.31885755,-0.10967203,0.72116214,-0.14991686,0.027191928,-0.7389141,0.011744408,-0.12643151,0.09774384,0.07328352,0.05260207,-0.4117081,0.6943088,0.13268529,0.6262459,0.20009534,0.082480304,-0.49052402,-0.39490616,0.14094089,0.76374584,0.17661184,0.15851879,-0.20024714,-0.10456019,-0.22712047,0.039325934,0.11222898,0.66960686,0.43304765,0.007656236,0.24349743,0.2863559,0.1117464,0.0012751336,-0.14897448,-0.11742701,-0.13375814,-0.02813188,0.5299674,0.8152017,-0.20364478,0.3063958,0.06528633,0.24898288,-0.32346886,-0.35020024,0.5825245,1.2082387,-0.08984179,-0.27038172,0.56777865,0.5840017,-0.2655612,0.35223204,-0.43810984,-0.37038124,0.4319792,-0.19949624,-0.38329557,0.22778219,-0.39221162,-0.044896867,-0.68419003,0.07226806,-0.1457544,-0.25506642,-0.6713892,-0.25713706,-3.2337236,0.116038375,-0.18647856,-0.3334449,-0.2771725,-0.2458269,0.018452616,-0.7521302,-0.6761923,0.10826238,0.11574536,0.7573563,-0.25911948,0.15078494,-0.23974885,-0.49402273,-0.109381914,0.2885485,-0.02613252,0.49027875,0.034896806,-0.3639159,-0.051304635,-0.0482472,-0.46800348,0.028202537,-0.4087626,-0.26893175,0.042157643,-0.5043798,-0.33732015,0.7135464,-0.41050264,0.017553035,-0.15612325,-0.094058916,-0.045377966,0.32598197,0.13640265,0.25917473,0.08675497,-0.04597818,0.07522411,-0.13538584,0.12590282,-0.03297703,0.3783902,0.5567616,-0.03295306,0.24576375,0.47429526,0.6148313,-0.14188446,1.0924718,0.4489764,0.024964813,0.16370355,-0.1849241,-0.23205963,-0.62101406,-0.19488178,-0.021443954,-0.37213284,-0.44219616,-0.043325808,-0.35436615,-0.9246479,0.43994948,-0.06985423,0.2697791,-0.02197604,0.3577662,0.5603725,-0.39011425,0.028098537,0.0041537206,-0.05721837,-0.46460035,-0.2616591,-0.41894245,-0.38318208,0.01057229,0.735712,-0.27758697,-0.09267139,0.23565072,-0.23839961,-0.069531456,0.18394342,0.024198055,0.21481189,0.4031298,0.15956634,-0.5334197,0.5127773,-0.17905258,-0.18400805,-0.5458001,0.10941041,0.39882517,-0.57685035,0.66233134,0.4859748,0.04170941,-0.2589521,-0.42249453,-0.16951774,0.010908384,-0.04898793,0.3456499,0.3778782,-0.8093711,0.38413775,0.22795255,-0.045607585,-0.7763367,0.67203265,-0.06489981,-0.53143173,-0.26042563,0.39315218,0.12898128,0.06747179,-0.07001326,0.25185892,-0.42833048,0.117734,0.16904505,0.033067174,0.2984495,-0.2680791,-0.012575645,-0.71737015,0.17008251,-0.4683366,-0.22167048,0.40811312,0.104982056,0.27030283,0.2839318,-0.016902955,0.17929776,-0.22748852,0.120537795,-0.038654473,-0.11277339,0.35833597,0.38509354,0.62007046,-0.47584432,0.5179397,-0.0386677,-0.125439,0.24843144,-0.019647758,0.24210538,0.0032368808,0.57971096,0.08496761,-0.32863438,0.33111885,0.7741658,0.22269715,0.39481783,0.14287731,-0.1626289,0.2543249,0.11738312,0.21504712,-0.20448345,-0.61262393,0.08268455,-0.36183515,0.16200519,0.29818046,0.014317677,0.12037729,-0.12451768,-0.20082654,0.08165276,0.47154897,0.0007870014,-1.2737846,0.20581707,0.09265056,0.89333504,0.6635138,-0.0013852883,-0.01876369,0.58328533,-0.05425279,0.17283116,0.3384447,0.21522841,-0.43743393,0.5017736,-0.5806313,0.5857977,-0.13802852,-0.010923505,-0.12406659,-0.11651929,0.39396846,0.51293015,-0.09670072,0.014219126,0.16051237,-0.39123747,0.1286017,-0.38794532,0.21530475,-0.64871794,-0.13919619,0.7405847,0.6250336,0.3030668,-0.126276,-0.040138826,0.05767471,-0.15892738,-0.062290248,0.032464527,0.08563654,0.022118393,-0.8914588,0.050073184,0.48167187,-0.09743964,0.15388535,-0.030785771,-0.2885874,0.24497157,-0.15829006,-0.14622752,-0.090532266,-0.72845703,0.012099117,-0.35316926,-0.6300384,0.5984997,-0.13669974,0.2758458,0.32146904,0.09478013,-0.5059916,0.32384557,0.13618813,0.6791271,-0.18132934,0.161352,-0.38938153,0.096426055,0.13106635,-0.19348913,-0.29293224,-0.26865676,0.2513677,-0.38373536,0.43662855,0.049910802,-0.2508096,-0.23686147,0.031062406,0.20000437,0.6390243,-0.10324041,-0.25019956,-0.2496857,-0.13357595,-0.31674427,-0.12192651,-0.1073688,0.28716305,-0.08199025,-0.0050549367,-0.13446854,-0.11231494,-0.056202028,0.33901232,-0.11739959,0.5224935,0.38187715,0.22048555,-0.13282907,-0.18478987,0.21059488,0.695685,0.007014348,-0.1414149,-0.36479408,-0.5351973,-0.47159952,0.19292332,-0.045039617,0.3061664,0.37594035,-0.054959215,0.6539575,-0.066071704,1.0134131,0.12297387,-0.412916,0.19878957,0.4775104,0.003173576,-0.2419269,-0.26678598,0.95054996,0.39756945,-0.20887998,-0.1586496,-0.21963635,0.14731947,0.105462916,-0.18044598,-0.19259813,-0.09686036,-0.61041045,-0.115032434,0.12216161,0.24258131,0.29986674,-0.27120888,0.07782593,0.23993692,0.15749477,0.14897299,-0.45270663,-0.13071206,0.3719242,0.23542382,0.07788915,0.16867296,-0.4988143,0.32336256,-0.39424944,0.006671814,-0.42463714,0.2753167,-0.24579047,-0.20982282,0.27093711,0.14467119,0.45250893,-0.20581293,-0.25155658,-0.49328864,0.38971016,0.100192636,0.092556804,0.46903488,-0.15945819,0.036765695,0.011629015,0.617396,1.1793664,-0.15851042,-0.18711321,0.2727598,-0.39472884,-0.7210561,0.28654578,-0.6235417,0.1237346,0.12591021,-0.08889083,-0.6232789,0.15446854,0.10424228,0.13057604,0.049252417,-0.7108999,-0.30455548,0.2565622,-0.24676158,-0.16581082,-0.2967667,-0.1760884,0.5594873,-0.16022757,-0.20045972,-0.01476557,0.3638497,-0.044662613,-0.47870728,0.1286992,-0.43714207,0.24494894,0.09752289,-0.24946228,-0.23484315,0.043783657,-0.5052147,0.23589696,0.12806004,-0.33141503,0.12256173,-0.4015661,-0.05972602,1.1576998,-0.2110943,0.24956915,-0.23362105,-0.62015617,-0.92020214,-0.2886174,0.20700082,-0.0968273,0.05916629,-0.7142404,0.12241873,-0.108942814,-0.24632628,-0.19733664,-0.41434655,0.4541233,0.06357671,0.37325874,-0.056923654,-0.6762774,0.09854977,0.09882993,-0.34950924,-0.5750643,0.45965546,-0.016427461,0.8569587,-0.05097333,0.0386227,0.40162185,-0.4163561,-0.13085309,-0.12521362,-0.13096762,-0.43547165,0.029370103 -626,0.22700723,-0.40521422,-0.41840506,-0.17476694,-0.20552798,-0.1338104,-0.33679783,0.6917226,0.072363354,-0.47570816,-0.2441176,-0.26704702,0.18620141,0.62175465,-0.26671052,-0.5981808,-0.108287245,0.21212064,-0.5523429,0.7089334,-0.3701867,0.11158935,-0.05789281,0.5282528,0.1621915,0.100178,0.08588316,0.2187459,0.19851828,-0.353081,-0.20421755,0.2917873,-0.6133383,0.02599711,-0.3154452,-0.8317414,3.431365e-05,-0.5272551,-0.2158957,-0.86496973,0.2660404,-0.9994127,0.79448014,0.25041717,-0.34301582,0.06229653,0.24846184,0.43324828,-0.21488793,0.03653483,0.10060584,-0.1368937,-0.009234023,-0.28894696,-0.26023704,-0.6479197,-0.72381574,-0.096830904,-0.5426991,-0.08782304,-0.030260682,0.25411338,-0.27726433,0.14545055,-0.19511212,0.39039746,-0.61084175,-0.077871524,0.2834805,0.0016626865,0.42592168,-0.5272338,-0.13498338,-0.16006017,0.24554245,-0.30754265,-0.28281578,0.34006193,0.1474572,0.36140123,-0.07851574,-0.27243814,-0.28832647,-0.02276376,0.037348267,0.6176348,-0.1641938,-0.67197466,-0.22091286,0.013839061,0.24210651,0.4731153,0.17171258,-0.24384479,-0.13245128,-0.02370636,-0.0535191,0.3851579,0.43156075,-0.31568274,-0.33208546,0.13210075,0.55464333,0.22243804,-0.18547387,0.034209292,0.10340861,-0.71834725,-0.22269003,0.07279334,-0.19378375,0.6678879,-0.19880848,0.23444045,0.5164608,-0.09611259,-0.19016308,-0.16260646,-0.0650445,-0.29244828,-0.16396482,-0.48066208,0.5148695,-0.36228576,0.3359243,-0.49128076,0.50616574,0.11021642,-0.6367262,0.2695516,-0.81725097,0.09729708,0.05270968,0.5856793,0.51490766,0.5085892,0.51790893,0.5877846,-0.23052247,0.10011462,-0.15186122,-0.21736377,-0.090827055,-0.23784094,-0.071822956,-0.45587453,-0.10680499,-0.103092015,-0.17879307,0.10761341,0.69535834,-0.65663785,0.023262061,0.19773082,0.78749704,-0.3036497,0.01578963,0.9919188,1.0530382,0.99403876,-0.022725351,1.3190159,0.07434426,-0.28769943,-0.046080787,-0.08466751,-0.7028486,0.17593913,0.4609845,0.058423895,0.5642858,-0.027852645,0.032878846,0.521653,-0.61541176,0.086271234,0.010179813,-0.024707109,-0.035577923,-0.2694111,-0.5397503,-0.049475376,-0.0094683645,0.028855095,0.19971664,0.2801621,-0.047698025,0.60615283,-0.0039722323,1.5764656,-0.081666,0.14757265,0.22975993,0.37660465,0.2323121,0.027532926,0.016627409,0.23547924,0.38253072,0.20343237,-0.5263842,0.12605038,-0.21593045,-0.57319605,-0.1395766,-0.23723823,-0.17897582,-0.13238126,-0.58496326,-0.22858821,0.0317741,-0.07098044,0.3681079,-2.4503164,-0.2646592,-0.170007,0.3044298,-0.19302337,-0.43299055,0.043785412,-0.42462087,0.65050524,0.5005322,0.4303167,-0.7757296,0.5897501,0.5162061,-0.6100412,0.05296768,-0.70351523,-0.22647546,-0.022518648,0.35689893,0.040933926,-0.06614778,0.2537954,0.3235918,0.5294085,-0.08993256,0.196088,0.22991471,0.4408138,-0.36028183,0.6148633,0.00060338277,0.40196598,-0.37568298,-0.18260121,0.33080286,-0.38846374,0.31980547,-0.06377131,0.12276604,0.538632,-0.4754034,-1.0266495,-0.59604764,-0.31819293,0.6701347,-0.098394305,-0.4599721,0.17754833,-0.4281468,-0.27610025,-0.2928773,0.7444537,-0.26002714,0.2829543,-0.90812284,-0.12007194,-0.2368174,0.31217596,0.02624618,-0.039982256,-0.6713729,0.7872389,-0.009991919,0.5466557,0.65278727,0.024822101,-0.49387202,-0.55006623,0.106933974,0.68672234,0.45062086,0.18223341,-0.27091694,-0.2700756,-0.30312523,0.1034647,0.014348224,0.5955583,0.6317508,-0.23411262,0.24277484,0.23254241,0.1056348,-0.05066152,-0.33125904,-0.2335909,-0.06032446,0.2648692,0.597127,0.832375,-0.2760352,0.38158914,-0.09128144,0.7105775,-0.18343993,-0.481595,0.2914956,1.2038366,-0.049542498,-0.13401417,0.9427553,0.7127308,-0.19477715,0.48783317,-0.81047875,-0.27464464,0.49123326,-0.043066144,-0.58421654,0.3062261,-0.23898678,0.20573293,-0.9841852,0.19562948,-0.3816041,-0.24769567,-0.9858675,-0.2778317,-3.3755782,0.25789222,-0.23607545,-0.23644686,-0.097376384,-0.39830008,0.20101668,-0.71456075,-0.81455356,0.33064386,0.07558389,0.5934368,-0.19352578,0.033995796,-0.29648483,-0.43639517,-0.15066208,0.35118738,0.20272063,0.29080975,-0.24493138,-0.6990368,-0.17064023,-0.18369828,-0.7013604,-0.017766831,-0.7319868,-0.25645858,-0.2127681,-0.6637925,-0.18915583,0.6212378,-0.04895697,0.09318775,-0.19022894,-0.12727924,-0.04156913,0.42937407,0.07574526,0.22465687,0.08291957,0.013755719,0.13546807,-0.13044868,0.11720718,-0.034581777,0.16293709,0.22862375,-0.17071815,0.28547046,0.39560866,0.73054296,-0.08404415,0.9184089,0.5905881,0.026182532,0.35601076,-0.18410398,-0.47057927,-0.75781536,-0.34867692,0.027502531,-0.44076845,-0.6535921,-0.17311786,-0.34521398,-0.8325515,0.8786046,0.024235612,-0.10045242,0.020129085,0.19755845,0.37204924,-0.4121084,-0.21866603,-0.09555674,-0.15232165,-0.41844198,-0.4065479,-0.6156253,-0.56324536,-0.29649875,1.1469411,-0.12174467,0.08553236,0.15048946,-0.080815054,-0.012194465,0.48808506,0.08472657,0.08697929,0.4862442,-0.0066591054,-0.71198463,0.61090654,0.078844644,-0.41077065,-0.6458529,0.22297585,0.52961105,-0.63748133,0.5908196,0.33660355,-0.06315472,-0.4014624,-0.6918478,-0.18298687,0.049583945,-0.27494282,0.62614316,0.38130245,-0.66962934,0.350565,0.3331379,-0.23458104,-0.683966,0.7614153,-0.20337117,-0.56503373,-0.06126076,0.41031405,-0.005704785,0.06735919,-0.28537536,0.33147413,-0.33517492,0.21614182,0.25397816,-0.028676376,0.23877186,-0.22391786,0.101232655,-1.1302906,0.24324365,-0.62087196,-0.31946298,0.25730133,-0.12373052,-0.054600615,0.38840815,0.08651116,0.29310372,-0.31157804,0.20466268,-0.16671412,-0.4366645,0.21840721,0.40544006,0.4161726,-0.40056053,0.6958847,0.07923178,-0.15598287,-0.22031462,0.00021173556,0.45713177,-0.11639566,0.61746365,-0.004015863,-0.29863486,0.2154585,0.9288071,0.28095576,0.44256303,0.38740218,0.11116745,0.12594295,0.0971202,0.21302414,-0.006269157,-0.5406628,0.07979755,-0.26745158,-0.018022278,0.5486381,0.057666954,0.2821881,-0.17082155,-0.4223356,0.00893347,0.30052507,0.21649642,-1.501276,0.065379255,0.27893403,0.82654,0.6559302,0.23322193,0.07887354,0.52833813,-0.46387717,-0.17453778,0.38789153,0.22800769,-0.39072105,0.8015034,-0.76613164,0.47909975,0.039931048,-0.01772844,-0.23277692,-0.26692775,0.44630733,0.77420324,-0.09447015,0.05352923,0.05454852,-0.11562862,0.23184943,-0.44496104,0.013360669,-0.27757147,-0.34496245,0.79795694,0.5817826,0.5642986,-0.24498224,-0.040793527,0.32854506,-0.13287781,0.15054673,0.13779803,0.30954263,-0.11183473,-0.5019869,0.03956449,0.6374294,-0.14857359,0.07219967,-0.028939828,-0.5299892,0.24643528,-0.0856136,-0.12550116,-0.10192749,-1.0096002,0.011526763,-0.5705472,-0.42519712,0.6306322,-0.17640877,0.1920187,0.29721788,0.17661272,-0.2602742,0.352038,-0.0827122,0.9369257,0.33773243,0.16170819,-0.046431053,0.17896855,0.21030276,-0.37325883,0.13245611,-0.16927592,0.18960457,-0.5413107,0.42934665,0.13841675,-0.45726255,0.10607773,-0.03403078,-0.038920134,0.38972214,-0.13934685,-0.33108357,0.07706418,-0.18954124,-0.1062564,-0.482888,-0.09560577,0.38563314,0.071296476,0.43775246,0.021973118,0.17583096,-0.17189692,0.777849,-0.03660338,0.38825044,0.396392,0.14661567,-0.43786803,0.15962805,-0.083990835,0.6013519,-0.3661643,-0.10785475,-0.12019709,-0.5697246,-0.45161292,0.09889128,-0.12002347,0.5030357,-0.054683384,-0.12459891,0.81169087,0.13076161,1.0649915,0.040065344,-0.5895925,0.19510312,0.5189107,-0.014878591,-0.20087437,-0.31940985,1.1052212,0.49331346,-0.18502362,-0.1755534,-0.24041687,0.010092762,0.16240185,-0.21873985,-0.12004506,-0.09131435,-0.55936867,-0.04330593,0.25003204,0.33075365,0.32047266,-0.17076279,0.33442017,0.44559625,0.047388364,0.28698862,-0.5036777,-0.05318168,0.47763765,0.18471074,0.036351413,-0.09247493,-0.44902658,0.38535795,-0.21990485,0.10297164,-0.61868215,0.12124103,-0.38210103,-0.30960134,0.23015095,-0.03462264,0.2159748,-0.3658804,-0.16695707,-0.19097133,0.3561891,0.29021597,0.15523025,0.66451687,-0.2577805,0.0843957,-0.06735712,0.39805925,1.0795156,-0.5915489,-0.15508322,0.3074945,-0.55313975,-0.5632224,0.45545873,-0.44451487,0.08619671,0.15201825,-0.26021066,-0.61067003,0.17130506,-0.021100193,0.08207961,-0.09345645,-0.6722749,-0.06741937,0.45447993,-0.38876596,-0.2458861,-0.5235351,0.23004688,0.77692884,0.002858496,-0.43787464,0.1476308,0.22093801,-0.31584647,-0.53351945,0.021974564,-0.275012,0.3954424,-0.066772275,-0.35935274,0.010014449,-0.111896574,-0.42238453,0.037692916,0.37525642,-0.35871613,0.16923511,-0.5931969,-0.122194886,1.2443713,-0.34454164,0.10881876,-0.5395601,-0.55704993,-1.0222101,-0.28802478,0.50776863,0.29356506,0.008631863,-0.70582026,0.15925698,-0.07746789,-0.27436686,0.06368375,0.05597417,0.3956093,0.20205878,0.7173316,-0.07554353,-0.69959134,0.24843533,0.11084107,-0.056436945,-0.34671172,0.631478,0.1423167,0.8274887,0.032049786,0.13017443,0.2538181,-0.5274179,0.1240476,-0.1316337,-0.15862885,-0.71447223,-0.06608072 -627,0.35702574,-0.20824464,-0.35261044,-0.18529737,0.013686091,0.04642023,-0.1809002,0.6944024,0.29491618,-0.5351984,-0.16944988,-0.21394463,0.042027023,0.2859977,-0.13150316,-0.5939576,0.0053628436,0.087819,-0.108688585,0.31886616,-0.53744453,0.3451576,-0.20149024,0.40794984,0.2502585,0.13944633,0.23327471,-0.19313496,-0.18310441,-0.19667022,-0.21990883,0.43730012,-0.2734445,-0.04444097,-0.15171461,-0.47074592,0.09762735,-0.4279643,-0.3468175,-0.70177656,0.4606001,-0.7715113,0.48198304,0.21904375,-0.23094086,0.24168392,0.033782665,0.17565675,-0.28056905,0.14544481,0.2009896,-0.13793656,0.0933372,-0.08819145,-0.2509464,-0.402625,-0.48405287,-0.00087397546,-0.49746108,-0.28361264,-0.24054389,0.14515057,-0.36459717,-0.17641897,0.08138909,0.29251072,-0.4503621,-0.21749611,0.02751281,-0.22405173,0.48146367,-0.71975094,-0.36832103,-0.11526355,0.2804161,-0.45497808,-0.12988476,0.23798394,0.30554998,0.51416856,-0.2071733,0.033533666,-0.51221865,-0.081795715,0.014107227,0.63032895,-0.29900494,-0.77577186,-0.09725187,-0.110402614,0.25331715,0.37987706,0.09584994,-0.093687005,-0.10878187,0.07320157,-0.38170087,0.32929063,0.5296715,-0.3538566,-0.29720482,0.2603912,0.30184707,0.2650933,-0.11416441,0.038792957,0.11802345,-0.5075928,-0.08677867,0.0376249,-0.20966744,0.6703375,-0.073134445,0.3837553,0.6518099,-0.20732503,0.31745437,-0.14415903,0.09554514,-0.13046342,-0.23099394,-0.34046963,0.14779523,-0.44010743,0.24091266,-0.18977635,0.9445345,0.15149505,-0.63832635,0.36855963,-0.52520084,0.08111666,-0.16651158,0.59469265,0.5321757,0.13115437,0.47381258,0.54207313,-0.43011498,-0.030239344,0.13689047,-0.21127026,-0.01751413,-0.06052335,-0.20262487,-0.40890214,-0.025190813,0.25701743,-0.003605922,0.2915387,0.52981764,-0.48653495,-0.00039801747,0.23993117,0.8316593,-0.3371122,-0.0029900868,0.60096294,1.1218033,0.9637231,-0.09141769,1.2677114,0.29666233,-0.3506713,0.17783314,-0.2427233,-0.72777766,0.23012936,0.3855119,-0.34827125,0.22687863,0.24087524,-0.07161248,0.36745432,-0.49612114,-0.06095388,-0.20944726,-0.044965684,0.09614816,-0.04350035,-0.59028953,-0.28032562,-0.14327495,-0.061606884,0.047994483,0.21628594,-0.2835867,0.258198,-0.06696344,1.4128361,-0.14091362,0.0662691,0.047659587,0.69244474,0.17551036,-0.020158418,0.064369954,0.4426616,0.43559596,-0.0031124402,-0.71469706,0.05102254,-0.29528055,-0.2988288,-0.14795803,-0.36728582,-0.09483675,0.30340227,-0.47828802,-0.17203788,-0.20435043,-0.3328198,0.40944996,-2.7905152,-0.15854219,-0.038893193,0.27890828,-0.18203478,-0.27621314,-0.08658842,-0.41870603,0.49167764,0.4384396,0.51341647,-0.6088808,0.11060515,0.5868849,-0.2696219,-0.20284583,-0.67279726,-0.13642134,-0.14830548,0.26757064,-0.011404197,-0.10022217,0.058295522,0.18251061,0.52487844,0.14921212,0.12140787,0.058754217,0.46224925,0.14727207,0.3797115,-0.025629437,0.5034394,-0.23558907,-0.23102665,0.2962543,-0.4399643,0.22597896,-0.1608737,0.07810507,0.36937034,-0.33643338,-0.92096704,-0.558636,-0.31464255,1.1914979,-0.03861619,-0.37019062,0.39623156,-0.16577792,-0.20129955,-0.23052764,0.61724335,-0.24443014,-0.10450823,-0.768688,-0.028431458,-0.084009975,0.15025042,0.1478783,0.009867151,-0.44792214,0.55427957,-0.023260677,0.31753394,0.41087213,0.13415149,-0.24033761,-0.53944844,-0.08054809,0.8861535,0.34952483,0.29415986,-0.21223794,-0.12739043,-0.19641592,0.07009167,0.14796762,0.36031273,0.86751753,0.04824863,0.21634561,0.31890753,0.07615141,0.12359018,-0.01478056,-0.37151143,-0.08411113,0.08339121,0.55669665,0.33683124,-0.24090451,0.38347042,0.0071865283,0.11303566,-0.43964696,-0.10713836,0.40803015,0.99976563,-0.09083775,-0.12492919,0.63889587,0.6165824,-0.3749063,0.4640135,-0.71125984,-0.25747576,0.6278443,-0.28337833,-0.50697434,0.17356162,-0.36876395,0.07829679,-1.0071908,0.28047016,-0.12845463,-0.38458297,-0.6752982,-0.16948612,-3.4981508,0.0365156,-0.35398865,-0.24909824,-0.13790645,-0.22549634,0.34418628,-0.6477923,-0.5041815,0.14741519,0.030738682,0.5276879,-0.030316673,0.040887218,-0.37579122,-0.22442578,-0.37510228,0.0869239,0.05796657,0.350423,0.15170747,-0.44803628,0.12240338,-0.09188882,-0.3542494,0.05158173,-0.4094771,-0.4527011,-0.05125296,-0.6096901,-0.25690377,0.7142954,-0.47612533,2.51246e-05,-0.20195602,-0.020525718,-0.18453759,0.35651425,0.23675358,0.21830218,-0.11651278,-0.020333083,-0.036567386,-0.2930067,0.38361105,0.07606575,0.125907,0.37644967,-0.1947798,-0.032094236,0.53149277,0.45859072,-0.061716724,0.8877616,0.5911907,-0.050536197,0.17706744,-0.43977585,-0.16647162,-0.5668047,-0.43126068,0.012728284,-0.32929066,-0.6098726,-0.21103711,-0.27432704,-0.8069906,0.54868793,-0.22206032,0.4979856,0.038600087,0.275165,0.3020865,-0.06370517,-0.035001863,-0.009848788,0.03556067,-0.5047098,-0.1558433,-0.67568046,-0.42305627,0.21658957,0.72199744,-0.29070774,0.07343615,0.2738408,-0.21338469,-0.11999903,0.029977,0.1186311,0.14993264,0.35943416,0.024580086,-0.73015255,0.3909646,-0.02127265,-0.20463772,-0.6884889,-0.08046831,0.5974838,-0.81215876,0.4752178,0.6492798,-0.02830709,-0.011092369,-0.5620339,-0.405118,-0.050339982,-0.07938043,0.26794654,0.11692074,-0.6000467,0.4524941,0.3070609,-0.18157715,-0.6859675,0.63662374,0.009221345,-0.40050742,0.09086796,0.34005412,0.16992839,-0.028884975,-0.07560933,0.28780824,-0.3650967,0.39535585,0.1837393,-0.09076027,0.61327285,-0.22236037,0.03357978,-0.7064491,0.17053418,-0.5667872,-0.053866494,0.19268191,0.10308635,0.11971727,0.2322148,-0.028557995,0.34973335,-0.37993848,0.09999826,0.032064795,-0.19353645,0.24486887,0.36193386,0.5482805,-0.31256023,0.5558513,-0.0038074404,-0.17645758,-0.0007357697,0.14012729,0.44783998,0.05175923,0.3385767,-0.10389469,-0.50784665,0.28686485,0.900677,0.3140287,0.462147,0.03179265,-0.04641262,0.3374807,0.31476897,0.119208604,0.14918108,-0.41626784,-0.19292043,-0.30944613,0.17470877,0.41142276,0.10246935,0.3763957,-0.20212056,-0.2906594,0.17963599,0.37828863,-0.019100964,-0.9087749,0.3421854,0.08104011,0.7419613,0.43233928,0.029290995,0.08060822,0.48365283,-0.13547106,0.06619273,0.49181786,0.109065354,-0.60336,0.6362641,-0.41865572,0.4787748,-0.13871773,0.04288676,-0.09214485,-0.16723351,0.4036592,0.6612668,-0.03629154,0.045403346,0.12287151,-0.35867286,0.07250547,-0.47106072,0.2298223,-0.6015584,-0.023498103,0.59792,0.4749105,0.11839867,-0.09404266,-0.009846219,0.12562416,-0.03566954,0.0070687085,0.0261346,0.105140306,-0.12571274,-0.8240824,-0.17606042,0.586807,0.06832328,0.03191073,-0.18878114,-0.22680847,0.32573316,-0.20523174,-0.01270629,0.00060051057,-0.5500702,-0.02125313,-0.38962147,-0.5011396,0.48280212,-0.2634202,0.40581954,0.22881985,0.10524061,-0.18529648,0.31675524,0.22548218,0.6481012,-0.1971017,-0.17992939,-0.53685004,0.021816865,0.36020637,-0.15816441,-0.33501896,-0.31491134,-0.034225307,-0.35148957,0.43341756,-0.09984374,-0.024650967,0.02120634,-0.23929107,-0.015397827,0.56554157,-0.14408301,-0.018960116,0.0076833665,-0.2271773,-0.26310423,0.011381954,-0.13591987,0.22924297,0.156182,-0.052667484,-0.2781245,-0.34171584,-0.20344162,0.32968882,-0.029619955,0.282065,0.37241268,0.15381815,-0.13951358,-0.29932407,0.050320413,0.44733143,-0.012404182,-0.03203976,-0.28809926,-0.5568707,-0.2867031,0.057249635,-0.250705,0.29702744,0.15660617,-0.3200531,0.73935443,0.04253379,0.8824474,0.062051523,-0.53283054,0.022383174,0.5638469,-0.09656357,-0.047952276,-0.2913967,1.0940998,0.5180669,-0.13856821,-0.22344379,-0.25944626,-0.04931668,0.24494426,-0.19496532,-0.17546912,-0.120508276,-0.66857386,-0.27349207,0.39750266,0.34554967,0.19683857,0.029965108,0.17519315,0.18128198,0.1904308,0.39211264,-0.58388305,-0.27017274,0.30874392,0.32332736,0.1743372,0.20455645,-0.30502966,0.41301224,-0.58486634,-0.07950928,-0.5033285,0.1538903,-0.32424197,-0.33486554,0.22901487,0.03546417,0.47188535,-0.17125864,-0.30633232,-0.21785472,0.43470132,-0.008454601,0.17045295,0.36583054,-0.27406546,0.00975686,-0.09363981,0.39816132,1.2066181,-0.16566564,-0.1949349,0.52063423,-0.30939847,-0.6057815,0.25320175,-0.53645176,0.045592308,-0.049293313,-0.18108411,-0.506998,0.23127373,0.19329302,-0.11480544,0.08072581,-0.3469166,-0.21687216,0.19382219,-0.19008677,-0.33774757,-0.32644728,0.08491242,0.6578098,-0.45450532,-0.21969122,0.014648825,0.52877194,-0.23743087,-0.65803987,0.11475384,-0.31790826,0.45988488,0.2787303,-0.3043542,-0.12355707,-0.040031765,-0.35952112,0.267196,0.29962125,-0.3574086,-0.019245172,-0.36017978,0.05020978,1.0139765,-0.09648872,0.00916855,-0.54740393,-0.32682464,-0.8015132,-0.38334,0.6951361,0.24622606,0.08495229,-0.5717922,0.24749513,-0.1853335,0.018866265,-0.12590064,-0.3303466,0.55260605,0.15377547,0.4563527,-0.15446867,-0.72807616,0.09044238,0.00028629228,-0.3771411,-0.5609029,0.5533461,-0.10338467,0.9614604,0.17913873,0.013657247,0.34587982,-0.28519732,-0.006042103,-0.2623601,-0.4084532,-0.80505484,0.025883049 -628,0.2904502,-0.3165589,-0.53093475,-0.0662539,-0.14361387,0.078852415,-0.19175711,0.6095651,0.02630756,-0.5570209,-0.19405699,-0.14220962,-0.15474294,0.48818693,-0.19571276,-0.4171916,-0.029428221,0.13199177,-0.5871408,0.38159263,-0.3764495,0.18607266,0.14786305,0.37539965,0.22776279,0.24186891,0.02505224,-0.13256739,-0.20627238,-0.15358576,-0.005339511,0.010919412,-0.4026509,0.2021622,-0.2922783,-0.4665387,0.027742933,-0.51034456,-0.31853598,-0.6434328,0.29659483,-0.7895091,0.3509817,-0.09845608,-0.2881897,0.09828053,0.038715005,0.52216953,-0.2359912,-0.054881383,0.25073466,0.0013668507,-0.066839695,-0.037674554,-0.12914346,-0.15088981,-0.565383,0.12040582,-0.36845416,-0.0883179,-0.019408436,0.17690843,-0.21284072,0.24919571,-0.15013565,0.34403104,-0.41602358,-0.11797997,0.28644258,-0.17456831,0.2243398,-0.5548193,-0.12333485,-0.11953448,0.13585609,-0.1199862,-0.15080906,0.24836329,0.16153145,0.48813117,0.017642727,-0.10021494,-0.22087125,-0.03835624,0.16288432,0.4581882,-0.12601754,-0.260039,-0.18399122,0.022612007,0.20013857,0.04089727,0.088947564,-0.2529494,-0.07520342,0.050907824,-0.30969143,0.10841491,0.45263752,-0.23268099,-0.11673382,0.26452625,0.65763986,0.2084692,-0.013886535,-0.04859586,0.07178781,-0.50935,-0.19772668,0.11122796,-0.04420028,0.48132858,-0.053692717,0.4172313,0.580097,-0.12042307,0.18342969,0.033779487,0.004070576,-0.1813972,-0.23313233,-0.43687773,0.15048046,-0.43998832,0.11080349,-0.23294432,0.8127509,0.16157468,-0.6723269,0.29387745,-0.52799433,0.15230848,-0.0745358,0.43107638,0.5715104,0.40846846,0.115938805,0.6649238,-0.37541458,0.18404177,-0.25290626,-0.22679947,-0.014677223,-0.120386496,-0.12557557,-0.41981477,0.028967874,-0.035485104,-0.0040624538,-0.049225435,0.22333759,-0.51424825,-0.021694621,-0.051866394,0.94829625,-0.25075978,-0.008168308,0.7871548,0.88625234,1.0365129,0.048887838,1.0488236,0.17187856,-0.2880902,0.21582586,-0.12582594,-0.6559582,0.33616766,0.42757738,0.18267232,0.23204105,-0.00060644647,-0.11148253,0.5899616,-0.41202527,0.16382237,-0.18842728,0.039214745,0.018147258,0.02953566,-0.41575778,-0.21468046,-0.031514574,-0.12576425,-0.10169789,0.2101916,-0.12347669,0.5242504,-0.06652361,1.6952689,-0.12956183,0.11893128,0.104798965,0.39318937,-0.05667072,-0.19137505,-0.1577807,0.02766941,0.39578775,0.033066537,-0.5895589,0.023897585,-0.1967939,-0.5065024,-0.11254191,-0.20728382,-0.12570444,-0.23725262,-0.5754019,-0.15594912,-0.08014397,-0.1708902,0.22245234,-2.6998632,-0.17388473,-0.1349918,0.24339609,-0.4329268,-0.38049158,-0.056383174,-0.4382871,0.4679794,0.301926,0.44261697,-0.47470963,0.41145024,0.24601483,-0.39253718,0.08274464,-0.57030666,-0.13341741,0.12399001,0.20343977,-0.0078206975,0.010615524,-0.09297594,-0.023665512,0.34171835,-0.17980215,0.050843105,0.31740913,0.19301824,0.16090514,0.42148903,0.013756807,0.5182525,-0.5995629,-0.070859484,0.25436527,-0.37391743,0.3394193,0.010181123,0.207886,0.35102004,-0.6206807,-0.6160085,-0.6777142,-0.35182163,1.3564552,-0.14781195,-0.23314008,0.23424673,-0.3212797,-0.14222375,-0.16551773,0.34819156,-0.04951315,-0.09560454,-0.81891507,-0.1290964,-0.10960458,0.22174712,-0.08035286,-0.027858075,-0.3622195,0.44393793,-0.0961753,0.4309519,0.4710181,0.09367504,-0.0136858625,-0.2644405,0.07039289,0.8155136,0.37944025,0.18537627,-0.16430311,-0.14532262,-0.4321007,-0.072766624,0.11497499,0.35835648,0.8217861,0.024714308,0.06643116,0.20612982,0.08239158,0.08459512,-0.037560407,-0.34575072,-0.20470276,0.0145737585,0.5243334,0.49383557,0.011011684,0.28390285,-0.1690485,0.42285264,-0.17018977,-0.4314607,0.3884374,0.551349,-0.19305754,-0.22350378,0.46620873,0.5382251,-0.20973179,0.3600189,-0.5224124,-0.32437167,0.3714328,-0.04878163,-0.4533264,0.14330824,-0.32112834,0.24268907,-1.0032122,0.2581662,-0.353295,-0.5142638,-0.67134017,-0.22560316,-2.7017577,0.17392002,-0.14891906,-0.25520656,-0.037227567,-0.16315596,0.26749247,-0.48258194,-0.63886577,0.07078549,-0.027948497,0.63170177,0.06823274,0.057040673,-0.17308593,-0.15558039,-0.3078114,-0.00983843,0.22764811,0.2543742,-0.04928356,-0.45948464,-0.20493793,-0.30711606,-0.33217338,0.16888686,-0.738483,-0.5175155,-0.19616805,-0.4240431,-0.2863801,0.607102,-0.20829383,-0.022598736,-0.018131668,-0.041173052,-0.12648644,0.35813078,0.17457335,0.14940673,0.080876574,-0.12698464,0.0054169972,-0.3493868,0.09071604,0.25822812,0.37327096,0.34820464,-0.13351995,0.41452745,0.5072764,0.85859716,-0.13742433,0.59151554,0.4815573,-0.09754009,0.34006223,-0.3023846,-0.35861352,-0.38721988,-0.07395278,0.007951061,-0.28767028,-0.45644352,0.19771534,-0.3057393,-0.8468474,0.43264267,0.03617354,-0.12479803,0.11292134,-0.008237457,0.45639974,-0.13296872,-0.11980049,-0.07663584,0.040876262,-0.4894843,-0.42328456,-0.7489327,-0.5223872,-0.04223576,1.3630874,0.011065443,0.046934437,0.09019751,-0.3468529,0.13975643,0.0700297,-0.08339591,0.081896394,0.29246762,-0.21541208,-0.67442113,0.5298322,-0.014408008,-0.19598252,-0.41290137,0.14823659,0.7288467,-0.584539,0.33591557,0.31048012,0.06840896,-0.14821224,-0.29901227,-0.07961833,-0.105933495,-0.21014659,0.2855983,0.12094722,-0.47902745,0.30724603,0.45364726,-0.083613046,-0.78868777,0.28190458,-0.015093449,-0.06228801,0.08638625,0.26478508,0.0036401947,0.03366723,-0.12727384,0.14714356,-0.34017503,0.2498825,0.3669831,-0.011317895,0.2519835,-0.2822887,-0.102309495,-0.514241,0.12123908,-0.6034391,-0.15672669,0.3616641,0.08118736,0.1256086,0.049831867,0.22241111,0.30769023,-0.21546176,0.06016217,-0.077807315,-0.29779068,0.3050131,0.42520416,0.4075717,-0.45802963,0.54815686,0.12548807,0.009961366,-0.11391498,0.030040229,0.4477302,0.08744578,0.3383867,-0.13075437,-0.16929068,0.22459364,0.76004666,0.23973863,0.4519453,-0.031111335,-0.15325664,0.10559617,0.09967926,0.067673445,0.11089823,-0.5673944,0.10783421,-0.030556956,0.15996546,0.41731542,0.11078338,0.36187106,-0.028943997,-0.21515647,-0.013945715,-0.008984173,-0.10432002,-1.2100587,0.5238769,0.17473133,0.75234574,0.4259262,0.021481814,0.010864735,0.5984242,-0.16085257,0.20386294,0.29957166,-0.0767278,-0.56845593,0.58750147,-0.64462346,0.56125104,-0.008600926,0.051209185,0.079345554,-0.11046269,0.59575397,0.65675825,-0.046909347,0.044771235,0.0010009249,-0.25612536,0.035769723,-0.43995243,0.09257517,-0.5408847,-0.22545858,0.62485284,0.44297943,0.2692827,-0.09309553,0.007730353,0.21650933,-0.044934914,0.32907507,-0.14046855,0.14819917,-0.057350747,-0.62728626,-0.25536975,0.47697675,-0.07218053,0.2682265,0.07271004,-0.3226163,0.20527752,-0.025023896,0.120805055,-0.1267413,-0.66097337,0.118719436,-0.4569455,-0.32071027,0.17687778,-0.048639577,0.35168302,0.15274803,0.05668562,-0.37378624,0.48833448,-0.24342528,0.8212997,-0.17795406,-0.2609625,-0.24672018,0.21066742,0.24975446,-0.21892901,0.0026916584,-0.29295272,-0.07162481,-0.54617494,0.40281782,0.004835347,-0.28194442,0.20853141,-0.116383865,0.0075300178,0.40653923,-0.06847247,0.05467209,0.05548208,-0.066977166,-0.28508118,-0.19296335,-0.14925165,0.28030816,0.2462209,0.19924851,-0.054545403,-0.05979585,0.029700283,0.52835685,0.011841858,0.3891446,0.41250318,-0.008477831,-0.44683692,-0.21852306,0.08343257,0.4246684,0.119433776,-0.15192227,-0.3826458,-0.25025457,-0.2369073,0.3165458,-0.22748613,0.45886612,0.14581458,-0.28270525,0.6998319,0.06472142,1.1637421,0.053162042,-0.32838318,0.08991159,0.39641604,0.0069181044,-0.07637381,-0.4927443,0.738817,0.38134795,-0.22488925,-0.14950113,-0.41471666,-0.06043589,0.07433537,-0.12729599,-0.20989677,-0.17748652,-0.6469271,-0.31937382,0.13311547,0.28858554,0.20228948,-0.09750752,0.02060715,0.1462157,-0.08108582,0.3613196,-0.40812337,-0.22024888,0.2811835,0.14133495,-0.10152958,0.09731229,-0.6155832,0.41450033,-0.54484177,0.09223843,-0.07564565,0.036604602,-0.119437374,-0.3480517,0.24145566,-0.04662756,0.32957318,-0.394295,-0.37488744,-0.25653937,0.53202397,0.165883,0.2153608,0.6249525,-0.24065581,-0.09204557,0.084198155,0.40909684,0.8258144,-0.3449782,0.1375468,0.32973498,-0.15027046,-0.43143126,0.2633707,-0.21816893,0.2519742,0.04488183,-0.22536527,-0.59175324,0.33269483,0.25265703,-0.22482738,0.10367792,-0.5418016,-0.12844516,0.25324383,-0.26189274,-0.32674038,-0.45376617,0.059504524,0.4709376,-0.28127763,-0.32279924,0.15127233,0.28014565,-0.16188951,-0.2917057,-0.033872955,-0.3496643,0.10820497,0.07317102,-0.3119885,-0.14862277,0.06464036,-0.35120112,0.07561759,0.04472708,-0.4075232,-0.0891216,-0.27371058,-0.1003414,0.80743504,-0.010554981,0.16724046,-0.523872,-0.33806744,-0.73790437,-0.45569414,0.5408433,0.20443045,0.041670203,-0.56518805,-0.053949654,-0.0695444,-0.09422334,-0.0052305977,-0.30050468,0.46012205,0.15831563,0.31582877,-0.08337115,-0.5544863,0.22657888,0.06474561,-0.1712493,-0.36034578,0.43291584,0.06760752,0.75680864,0.020529483,0.14858921,0.23612452,-0.45980608,-0.006360998,-0.20784335,-0.20840953,-0.5145379,0.0034323453 -629,0.1791002,-0.20047688,-0.613609,-0.03922695,-0.24523023,0.080294155,-0.22682025,0.22865084,0.17611516,-0.20659895,0.045519162,-0.13474084,-0.067344055,0.50365204,0.019319708,-0.85924786,-0.028146502,0.18296348,-0.8642308,0.6823165,-0.37414196,0.39595038,-0.0409682,0.26357597,0.1702019,0.23488948,-0.06602633,-0.10689994,0.02757,0.056273643,-0.24900927,0.1803793,-0.3075426,0.17007704,0.05045103,-0.33789042,0.012262225,-0.17870034,-0.547914,-0.7013771,0.23632254,-0.61834323,0.5940839,-0.11097674,-0.29507008,0.1355292,0.05193425,0.43925884,-0.35633197,0.008274998,0.15168127,-0.039393667,-0.22578979,-0.25052935,-0.31912795,-0.37943244,-0.49707374,0.031459842,-0.7084498,-0.11486399,-0.2893208,0.13990085,-0.35660794,-0.11621928,-0.01233731,0.38073984,-0.35733366,0.16646825,0.15606706,0.035051115,0.1988102,-0.5732246,0.112136535,-0.03601733,0.324473,-0.1639183,-0.28345293,0.27192268,0.2759283,0.5718629,-0.0030650157,-0.2286594,-0.18922517,-0.069435105,0.08480607,0.5138172,-0.1427096,-0.30552536,-0.1778264,0.13287517,0.1396053,0.14263073,-0.039409477,-0.44195557,-0.09020027,-0.13384461,-0.13144682,0.3441725,0.43686786,-0.26026994,-0.33706993,0.45514372,0.6343714,0.2901079,-0.07026421,0.14976345,-0.02845152,-0.45865512,-0.17116307,0.17423503,-0.0053508366,0.34068638,-0.1466798,0.36554328,0.6612204,-0.018506125,-0.034251202,0.04985633,0.029358821,0.016186787,-0.16421969,-0.051094145,0.120143175,-0.58450794,0.15333748,-0.016912907,0.7492263,0.156688,-0.7709779,0.39893475,-0.5727381,0.2605122,-0.039397035,0.5296671,0.8261887,0.41904625,0.062551245,0.62693846,-0.37657642,0.13145718,-0.103068665,-0.31648618,-0.0077959127,-0.06492104,-0.026502311,-0.68159384,-0.018903473,-0.2123817,0.013915266,0.073946,0.44887277,-0.6950942,-0.14800528,0.04504202,0.8173366,-0.33708254,-0.12504627,0.64236534,0.8678454,0.8397797,-0.0066558262,1.2942407,0.3953125,-0.24223249,0.24121287,-0.4522393,-0.7141233,0.12196929,0.30364332,-0.004289525,0.31513563,0.09039648,-0.056583982,0.49940953,-0.24987467,0.04268655,-0.28575835,0.24002592,-0.05614569,0.04266728,-0.33653775,-0.25039452,-0.043795697,0.0887677,0.056003995,0.28848675,-0.2381899,0.4139739,0.027610494,1.692611,-0.05276943,0.102860495,0.07309096,0.29213423,0.30616984,-0.18284675,-0.28862852,0.32834783,0.4624736,-0.11565589,-0.56974787,0.05866924,-0.31968397,-0.24271442,-0.19662166,-0.21507971,0.09368805,-0.077912144,-0.5103031,-0.14022496,-0.010563225,-0.34209213,0.5317632,-2.5916731,-0.2570967,-0.09783006,0.2928014,-0.33413786,-0.2886131,-0.23165277,-0.36457962,0.49809185,0.18685105,0.4228641,-0.49535924,0.44734043,0.31138393,-0.4119718,-0.11144572,-0.5267552,-0.14342006,0.18335441,0.3406659,-0.20069298,-0.06893371,-0.1312907,0.07251499,0.34496865,-0.38327822,-0.0035392854,0.45928,0.24846591,0.18769349,0.32341364,-0.075033,0.54043365,-0.18629935,-0.22529016,0.3472507,-0.15546796,0.41557583,-0.09770719,0.19084011,0.43517855,-0.5825675,-0.85198796,-0.51178396,-0.24802402,1.0939854,-0.2430958,-0.27023777,0.23239431,-0.31323674,-0.12615451,0.012549196,0.32182005,-0.14766976,-0.20122303,-0.7149814,0.15778176,-0.008534504,0.43661287,0.03328201,-0.16997373,-0.2383286,0.39358696,-0.17177881,0.2890253,0.31761575,0.29222915,-0.24269211,-0.45142522,0.12899518,0.8674062,0.4103027,0.15305991,-0.17660674,-0.112302266,-0.3032228,-0.1377382,0.028472977,0.3330586,0.74239075,0.033093095,0.13744374,0.24200605,-0.05552253,0.09150565,-0.24892154,-0.28842744,-0.05170706,0.20632888,0.5247981,0.47104615,0.028052304,0.75352085,0.022652626,0.06888934,-0.05290507,-0.6801242,0.5592367,1.1605098,-0.2597546,-0.28757784,0.49757457,0.09372612,-0.27426928,0.36196443,-0.499225,-0.2842105,0.57260704,-0.286007,-0.46087804,0.29795069,-0.2348478,0.026405903,-0.8108681,0.31850573,-0.21184254,-0.6040487,-0.5075675,0.020749586,-3.1578882,0.23304312,-0.32469898,-0.010505983,-0.019098908,-0.014432856,0.20363316,-0.38870636,-0.46831375,0.12587442,0.12225441,0.6673961,0.029109161,0.14109108,-0.10719346,-0.19340344,-0.3012522,-0.023944587,0.109105244,0.21897003,-0.13955761,-0.44633135,-0.19609304,-0.15075704,-0.4317704,0.08571478,-0.63440406,-0.25113723,-0.244346,-0.6121577,-0.15046607,0.7184248,-0.24793223,0.009295268,-0.3466973,-0.11455507,0.008093774,0.30540386,0.24935555,0.20070674,0.11919776,-0.12075659,-0.16721132,-0.40710402,-0.002973335,0.13513303,0.107693724,0.22301295,0.12108898,0.32623383,0.5110419,0.6943785,-0.076335534,0.6498969,0.5322894,-0.22688971,0.342288,-0.24543762,-0.121277876,-0.39415127,-0.3747391,-0.12598598,-0.39648208,-0.40775782,-0.08600718,-0.32714286,-0.64933735,0.46647877,0.092199154,0.104229994,0.030790716,0.23830462,0.52085584,-0.10934417,-0.030474236,-0.14065693,-0.1669039,-0.52286476,-0.25565374,-0.56739694,-0.54843575,0.34488615,1.1567568,-0.3215775,0.034684896,-0.027037876,-0.29102352,-0.07969151,0.030346258,0.0576624,0.4415036,0.23989332,-0.14714868,-0.60711575,0.30760187,-0.25282064,-0.17388551,-0.5769421,0.14332815,0.672555,-0.5794756,0.47156236,0.12018983,0.116119735,-0.0110110855,-0.47966263,-0.24041738,0.14299467,-0.26948506,0.2506617,0.13326527,-0.63945115,0.45516413,0.33463004,-0.11599089,-0.7364253,0.3138552,0.122634366,-0.38977453,-0.018830333,0.3784918,-0.048202615,-0.0076189763,-0.2994104,0.22913022,-0.27256918,0.28682283,0.20840046,-0.25384074,0.09726937,-0.22175357,-0.3658705,-0.5091081,0.048291367,-0.50571144,-0.24865004,0.14701429,0.14227858,0.08891378,-0.06605383,-0.013581021,0.43458286,-0.23788442,0.07288066,-0.13687766,-0.3480027,0.20622002,0.40391937,0.29520395,-0.31633496,0.5944743,-0.021049142,-0.16669624,-0.07735089,0.24848758,0.5396584,0.15189245,0.39072543,-0.071746394,-0.20501289,0.3205476,0.9643006,0.035047922,0.4335261,0.019308826,-0.13912787,0.05882948,0.053151544,0.060896955,-0.023346474,-0.2823355,0.11103248,0.05537918,0.27504134,0.63752383,0.26189905,0.2398608,-0.13679335,-0.3970749,0.014539943,0.07975068,0.17845193,-1.0393046,0.41986808,0.29414025,0.73415834,0.4004933,0.105121635,-0.10335088,0.5420424,-0.14736247,0.20769323,0.237535,-0.42725685,-0.49498898,0.45341104,-0.76452255,0.46975246,0.09373387,0.023500418,0.2803058,0.12354251,0.26805678,0.8298565,-0.11164697,0.062499404,-0.0016425912,-0.2530343,-0.05854949,-0.28354362,0.008379577,-0.48509407,-0.58027107,0.54037875,0.37307876,0.26145625,-0.24251437,0.0009976412,0.12053412,-0.27375793,0.1476485,-0.02542718,0.10277731,-0.15283951,-0.46723753,-0.3682646,0.42951927,-0.058835287,0.07420806,0.06920198,0.07971334,0.14148255,-0.1840026,0.076370016,-0.037167463,-0.6573688,0.11120764,-0.3199288,-0.25511134,0.44831398,-0.20043983,0.19241746,0.24073294,0.07824789,-0.4329222,0.7416548,-0.10852582,0.8120952,0.028385019,-0.1148966,-0.29604673,0.334971,0.07688656,-0.17162205,-0.0038876194,-0.3396916,-0.04748586,-0.77139527,0.37810558,-0.10560848,-0.2977304,0.2032264,-0.22200134,0.028503027,0.4062474,-0.07547416,-0.12941793,-0.044291012,-0.17381613,-0.2693989,-0.17903076,-0.07052701,0.2113237,0.29613605,0.021177266,-0.12696704,-0.11967217,-0.23069239,0.45885727,-0.0037037362,0.2999081,0.37650654,0.16097902,-0.32624173,-0.053484865,0.29862216,0.46258053,-0.0016004092,0.009485756,-0.17375973,-0.2546922,-0.35056797,0.028268099,-0.20792088,0.3582936,0.04775359,-0.38320425,0.7429906,0.23987411,1.0824726,-0.047519922,-0.16791375,0.20766439,0.37354845,0.08083199,-0.02572287,-0.22419988,0.76855576,0.5843614,0.15342365,-0.065121315,-0.26933023,-0.29376164,0.32516485,-0.221668,-0.021663725,0.13131896,-0.58097935,-0.4073713,0.27693197,0.11590185,0.109062545,-0.094820224,-0.06646522,0.11908027,-0.021902319,0.10142952,-0.551004,0.10770761,0.24140845,0.27956396,-0.03157812,0.35511112,-0.516725,0.38201663,-0.566776,0.08672688,-0.18572302,0.18637955,0.010560042,-0.20750935,0.24926306,0.1931108,0.30377516,-0.3336533,-0.27058235,-0.39179987,0.6205169,0.2443097,0.121888794,0.6939716,-0.3156733,0.24438827,0.08707498,0.34470838,0.8509154,-0.32103267,-0.088782735,0.29526138,-0.3168976,-0.6163977,0.28108093,-0.19686723,0.09675868,-0.059602443,-0.25062555,-0.32841444,0.22536545,0.16582918,0.05165718,0.024198933,-0.53447866,0.032555405,0.13725069,-0.22838809,-0.16040692,-0.36927775,0.12977393,0.6478041,-0.22519456,-0.16883911,0.32538205,0.1765505,-0.24425673,-0.5106639,-0.00597749,-0.43084684,0.15507948,0.16259243,-0.23758566,-0.01753882,-0.019783063,-0.515456,-0.0884454,0.32414818,-0.3979331,0.08304964,-0.1268777,-0.09204726,0.8746047,-0.4062361,0.031409256,-0.7012005,-0.505871,-0.7225937,-0.35682324,0.7322145,0.24653576,0.115319096,-0.79091924,0.021846745,-0.08009361,-0.031660113,0.06582527,-0.35546216,0.347904,0.13289939,0.19794002,-0.3505679,-0.9898635,0.21505271,0.045383472,-0.3532892,-0.552483,0.4301328,-0.16020563,0.7831629,0.0010608776,-0.13442115,0.32219794,-0.42661613,-0.07012755,-0.25332674,-0.21748526,-0.6778416,-0.001482989 -630,0.51579267,-0.21877106,-0.43523836,-0.014622514,-0.35902697,0.091326766,-0.21144979,0.55112064,0.33604386,-0.19488478,-0.1970538,-0.03971949,-0.050501745,0.32483095,-0.2539907,-0.6388609,0.007922815,0.13757111,-0.41083884,0.7661405,-0.36078262,0.3261344,-0.045447104,0.3825658,0.24695788,0.26617765,0.1844894,0.03726899,-0.13795888,-0.41203263,-0.061367694,0.1841975,-0.6595315,0.2662141,-0.12491469,-0.3066868,-0.12876017,-0.65950114,-0.34876636,-0.8303895,0.44341406,-0.80501235,0.48472473,0.100130506,-0.2934983,0.32742214,0.11855279,0.14281034,-0.07637298,-0.10715604,0.15568988,-0.12210337,-0.07725469,-0.062372047,-0.17004745,-0.1538215,-0.65186137,-0.021814499,-0.38846317,-0.13924064,-0.33923373,0.1401952,-0.42146987,-0.01510793,0.014071307,0.6521911,-0.47824878,-0.024306485,0.1033137,-0.1795965,0.10172244,-0.6527639,-0.282749,-0.036203187,0.397079,-0.07085503,-0.11331997,0.26895022,0.23405774,0.43110442,0.0056118285,-0.19916917,-0.43081632,-0.17706135,0.1850812,0.61575305,-0.04221211,-0.62203443,-0.204533,-0.13902487,0.23695382,0.024047945,0.045277443,-0.14183404,-0.18919908,-0.13009933,-0.31285554,0.5699061,0.5065959,-0.20227246,-0.24350154,0.31476593,0.3692805,0.29646072,-0.17084543,0.085601315,0.0038609866,-0.5692657,-0.09726989,-0.043618273,-0.14480057,0.47937825,-0.16629371,0.40362638,0.6346747,-0.10423342,-0.0015846321,0.17040385,0.033434894,-0.099732816,-0.24765715,-0.18915007,0.20446494,-0.40859967,0.34861818,-0.19679458,0.8680402,0.14624505,-0.8191644,0.42565203,-0.42039675,0.17791839,0.118056856,0.53924495,0.7388524,0.32779264,0.4098381,0.7799738,-0.24782105,0.028694203,-0.045475103,-0.30661243,-0.0717118,-0.094902106,0.04470804,-0.46509975,0.0061266,0.13503145,-0.06305421,0.15047958,0.6300128,-0.466502,-0.1412569,0.14776684,0.7944702,-0.15774257,-0.07786669,1.0425617,1.082847,1.2084372,0.021943191,1.034211,0.03870138,-0.13449164,0.016191704,-0.29097128,-0.68565613,0.23411156,0.29566544,0.32898706,0.21126798,0.05445001,-0.15839687,0.35061985,-0.46158847,-0.12567413,0.0077543342,0.13948771,0.2616983,-0.11042326,-0.5373301,-0.3291606,0.0218461,0.16507718,0.21980776,0.26139012,-0.29766777,0.5219646,-0.062538795,1.5702641,-0.09959866,0.08907775,0.10551534,0.62488365,0.21617101,-0.091524415,-0.052611005,0.14625065,0.2955163,0.048043888,-0.7051,0.1819433,-0.28474623,-0.37788624,-0.06587857,-0.43281025,-0.276983,-0.11324979,-0.3789787,-0.12011554,-0.15065476,-0.48829085,0.40641063,-2.8916698,-0.14634131,-0.097187385,0.2052255,-0.16428678,-0.26957986,-0.12583666,-0.59806377,0.4099606,0.32277742,0.56455135,-0.61185104,0.31374803,0.48474047,-0.6468633,-0.06704577,-0.55903846,-0.083483934,0.008185676,0.4602589,0.07281845,-0.09900562,-0.10722575,0.29294857,0.6546735,0.21251829,0.121877536,0.2855606,0.3438192,-0.08421658,0.44205385,-0.11964873,0.44617552,-0.21828082,-0.12704389,0.44899958,-0.49008232,0.25936586,-0.46203277,0.12407003,0.48824677,-0.43358335,-1.0368919,-0.5789219,-0.1614262,1.1589901,-0.16938005,-0.57797134,0.34651804,-0.35525098,-0.27622965,0.054154925,0.620685,-0.21701476,-0.18562208,-0.7394329,0.032898363,-0.1653258,0.09786713,0.014360453,-0.023362169,-0.4754892,0.8293682,-0.017295321,0.58379996,0.16181585,0.17882572,-0.34267202,-0.38052267,0.097252354,0.8336047,0.467524,0.15507317,-0.25386012,-0.07250283,-0.30589634,-0.27148473,-0.057519756,0.7207804,0.5338024,-0.03203926,0.14226045,0.20026548,-0.0007320323,0.17261757,-0.15827693,-0.16589187,-0.25281456,-0.014312736,0.6712748,0.7436107,-0.2301654,0.32106882,-0.021458402,0.2232956,-0.14433193,-0.44430128,0.6299558,0.8658568,-0.16434844,-0.27212983,0.56122154,0.45103636,-0.18328048,0.4569994,-0.5364657,-0.29927087,0.3466654,-0.08852054,-0.46345183,0.1796517,-0.29930338,-0.006064781,-0.6614684,0.16268758,-0.2712905,-0.64972657,-0.46216792,-0.14474572,-3.3565087,0.038947683,-0.17934655,-0.32140356,-0.29154354,-0.21273288,0.110265605,-0.57506514,-0.62797624,0.11386176,0.055754356,0.81621057,-0.23987731,0.05306957,-0.16373488,-0.30964804,-0.39153686,0.11254027,-0.0048549003,0.5235166,0.04756605,-0.30085665,-0.11106551,-0.19888131,-0.5378777,-0.09705033,-0.41636088,-0.40731278,-0.016376853,-0.50409496,-0.21448985,0.62543374,-0.2515754,0.13470736,-0.34952492,-0.06668852,-0.27669638,0.3368353,0.042179108,0.1795956,-0.060578488,-0.122121505,0.17742012,-0.13697116,0.39945444,-0.0684006,0.29140136,0.3835977,-0.2264609,0.20954296,0.48405266,0.58438736,-0.08418627,1.1582114,0.3639123,-0.094314,0.22964333,-0.19915567,-0.22555247,-0.62255627,-0.16667397,0.12635863,-0.48346108,-0.40420622,-0.16067302,-0.42702523,-0.81326526,0.44342777,0.05602539,0.3225052,-0.008839177,0.08730918,0.38324207,-0.27065384,0.006233741,0.010035881,0.04712052,-0.46651378,-0.2070063,-0.5973267,-0.47609258,-0.046093743,0.8295985,-0.18592347,-0.040039275,0.11059659,-0.3363877,-0.0374309,0.08375508,0.12583609,0.05555653,0.372953,0.11877757,-0.75968355,0.6407303,-0.26515034,-0.02027854,-0.54213506,0.16595636,0.42425093,-0.4564678,0.53534347,0.32660177,0.15305391,-0.15752351,-0.51683503,-0.1518791,-0.15634327,-0.11197462,0.33759728,0.33653337,-0.76970917,0.5338026,0.115978874,-0.14706786,-0.75298584,0.44888765,-0.03536042,-0.29423004,-0.046438456,0.3364614,0.25344935,0.0076707006,-0.19690266,0.31997627,-0.4164332,0.30127293,0.06675643,-0.06385617,0.4601972,-0.17450564,-0.2557654,-0.59454286,-0.11038096,-0.48788992,-0.29529902,0.0678841,0.18999325,0.08026312,0.075388536,0.051325586,0.38971406,-0.27008313,0.099658154,-0.14393279,-0.2975764,0.36477265,0.5364459,0.64584273,-0.46609816,0.5999384,0.07336672,-0.0015280119,0.17041986,0.027722657,0.32232887,-0.012467246,0.434114,0.12184042,-0.17962381,0.11022464,0.68616885,0.25247523,0.42218372,-0.009790495,-0.21034595,0.43505025,0.06918866,0.32805187,-0.10450406,-0.6380607,0.0077739186,-0.31594822,0.049501956,0.51464975,0.18165,0.28078443,-0.05074891,-0.3253151,0.02073531,0.20498143,-0.21095255,-1.2786916,0.28137818,0.17513645,0.9617682,0.62003547,-0.09917836,0.18220581,0.7364502,-0.05024864,0.06320285,0.30664077,0.12324945,-0.49340725,0.5554593,-0.7096277,0.54897946,-0.015753891,-0.029799778,0.116385356,0.07148884,0.443881,0.6656111,-0.19270037,-0.08139135,0.01496111,-0.4039449,0.14792871,-0.3600637,0.15315528,-0.5009155,-0.1621345,0.70985323,0.56875676,0.28738016,-0.12228496,0.08956623,-0.043536443,-0.034118086,-0.05167354,-0.007697993,0.0047076982,-0.23174548,-0.8136334,-0.1076739,0.49410763,-0.07482816,0.07101897,-0.01571103,-0.17465846,0.20931792,-0.069072284,-0.14399035,-0.06675086,-0.81364006,0.066505,-0.15639254,-0.47500607,0.4021518,-0.17076333,0.3138308,0.24730809,0.04422762,-0.25277257,0.31126547,0.16617917,0.7230052,0.028715031,-0.088721626,-0.30093715,-0.0013033833,0.19398117,-0.23292434,-0.232223,-0.17596896,0.06123754,-0.45158753,0.44912228,-0.11356171,-0.27245742,0.16646682,-0.0032280642,0.057319973,0.5231845,-0.11939596,-0.088913426,-0.12782423,-0.12258037,-0.24160136,-0.09320913,-0.18971731,0.22951964,0.20525482,-0.24653609,-0.075432576,-0.037629843,-0.054510396,0.3684097,-0.005984482,0.41635948,0.36047697,0.13068895,-0.443928,-0.082556546,0.30142707,0.6635496,-0.060491603,-0.0328418,-0.30470023,-0.46651432,-0.45403773,0.4169955,-0.070505165,0.3476254,0.07821908,-0.2542006,0.6639349,0.19847162,1.0021622,0.042374007,-0.37773958,0.19310418,0.52547026,-0.08368831,-0.02553603,-0.28282115,0.9166209,0.2855888,-0.22640105,-0.14970826,-0.45579505,0.18780515,0.2577891,-0.20255303,-0.089570366,-0.12801448,-0.576938,-0.10133195,0.15321755,0.21119581,0.13797142,-0.19333777,-0.07464003,0.28037483,0.17327443,0.33777028,-0.5209471,-0.13159381,0.43721431,0.11921716,0.011314399,-0.029875968,-0.4904807,0.30597407,-0.54766047,0.053130995,-0.17100647,0.20462263,-0.5041322,-0.18822932,0.37259832,0.03383192,0.41771945,-0.30770868,-0.43516684,-0.3192447,0.3885169,0.1376373,0.10777609,0.44235295,-0.2718007,0.05658238,0.114349954,0.5677702,0.99016994,-0.12729727,0.08713753,0.30236858,-0.40867075,-0.5097052,0.10972985,-0.36217356,0.23121735,0.007453463,-0.12982076,-0.73947746,0.17338702,0.18374528,0.21719639,0.15796642,-0.62187177,-0.30286735,0.35197327,-0.27896586,-0.20482734,-0.36819616,-0.10736055,0.6783145,-0.3043843,-0.30060396,0.05781618,0.2719876,-0.018020421,-0.712038,0.018943634,-0.31898943,0.25569636,0.041155558,-0.3785463,-0.30409858,0.05939373,-0.5292754,0.1875875,0.17597792,-0.36305514,0.093865976,-0.39708918,-0.02739285,1.0126135,-0.3381749,0.45363003,-0.5611655,-0.4808244,-0.896245,-0.37209654,0.4538166,0.056441367,-0.018106086,-0.62647265,-0.13831334,-0.30439934,-0.12573722,-0.06354349,-0.44245428,0.35907942,0.102575906,0.3377141,-0.13935378,-0.8897618,0.1873493,0.08661972,-0.15533279,-0.48716164,0.47606513,0.15531485,0.7157174,0.16718915,0.039565172,0.08624867,-0.53787553,0.031502478,-0.12470387,-0.15085718,-0.5689854,0.32310882 -631,0.4339806,-0.03779029,-0.5084071,-0.0037011164,-0.37571362,0.33963665,-0.18155268,0.45872194,0.22134805,-0.43756145,-0.2484379,-0.07531924,-0.12734069,0.16120389,-0.21396387,-0.510028,-0.043768834,0.1346176,-0.31265423,0.49131605,-0.3117575,0.5307366,-0.09816977,0.28730828,0.21253754,0.12251754,0.13215855,0.0729406,-0.099563636,-0.36266342,-0.19592759,0.22199263,-0.32236645,0.32054186,-0.17342938,-0.3316355,-0.04411639,-0.49081498,-0.37397316,-0.67734295,0.36129496,-0.8420306,0.503576,-0.073811755,-0.23061927,0.15661827,0.1555669,0.11046375,0.21684287,-0.075359024,0.03949637,-0.24865092,-0.032338448,-0.30949515,-0.5818435,-0.653357,-0.60147613,0.08319235,-0.51400894,-0.1616594,-0.20797154,0.15895568,-0.17382005,-0.15444987,-0.043218024,0.3697657,-0.3704907,0.06423257,0.15450726,-0.15057409,0.07729966,-0.59170645,-0.19426142,0.0100514805,0.3601551,-0.14206733,-0.19150686,0.21580306,0.31534454,0.36721587,-0.1114605,-0.23354189,-0.5219919,-0.021904727,0.13865606,0.62183225,-0.19937544,-0.4777207,-0.052215375,-0.014926987,0.62966067,0.33868155,0.14940658,-0.041772034,-0.28690678,-0.026599765,-0.11727577,0.62751514,0.52186704,-0.3037584,-0.20987181,0.52800596,0.47139588,0.27537054,-0.22269584,0.109658726,-0.107439384,-0.54118425,-0.052939843,0.17376132,-0.12543586,0.43355137,-0.036132343,0.3448678,0.595324,-0.17982414,0.080401696,0.12695768,-0.037759412,-0.0994614,0.0011374737,0.07175364,0.09247242,-0.3935849,0.17502286,-0.026638588,0.78482354,0.19169416,-0.7288461,0.3984252,-0.5449695,0.17711642,0.13541286,0.5545253,0.69197816,0.51594675,0.1058545,0.7412469,-0.1344488,0.066893496,-0.036389332,-0.19910036,-0.08905484,-0.25935376,-0.18142638,-0.41933227,-0.03220698,0.1296403,-0.08868875,0.24123703,0.6871181,-0.5353768,-0.2135991,0.2312554,0.81907874,-0.14898963,-0.23395099,0.8115444,0.9725978,0.8357047,-0.039807357,0.94026935,-0.035126347,-0.20889613,0.012645743,-0.19226563,-0.3972656,0.22247693,0.38598707,-0.1184163,0.51587844,0.029351277,-0.11029245,0.23938735,-0.36603108,-0.21660538,-0.12723087,-0.008147942,0.17846425,-0.06954161,-0.37780374,-0.31429833,-0.03241216,0.0634465,0.29794478,0.24450275,-0.37151912,0.34613377,-0.054430205,1.4027814,-0.16246517,0.10340228,0.10817593,0.6005546,0.22012493,-0.15396936,0.16867612,0.31923416,0.18416883,0.13304308,-0.48995632,0.09616183,-0.2678034,-0.5717667,-0.0923818,-0.26445022,-0.45682177,0.14216475,-0.51498306,-0.046273656,-0.0876865,-0.5949361,0.5581199,-2.7381704,-0.07142062,-0.08965266,0.31265646,-0.19618113,-0.47894627,-0.12071464,-0.49447563,0.3387349,0.32892013,0.42459437,-0.65031546,0.16238403,0.4713142,-0.49414888,-0.15594845,-0.6352445,0.07820402,-0.023600638,0.37670568,0.018045707,-0.14258479,0.33374983,0.069050625,0.54355055,0.14231081,-0.036438644,0.33937648,0.5124826,-0.20176676,0.2923627,-0.12031335,0.5451136,-0.11146451,-0.29512691,0.45764568,-0.45839462,0.52882105,-0.244536,0.178867,0.43633047,-0.36709628,-0.91875774,-0.52349365,-0.29927424,1.2163506,-0.081167474,-0.55174845,0.16809872,-0.38588524,-0.24884416,-0.28212413,0.7700209,-0.07157481,-0.07313913,-0.6310767,-0.078051396,-0.25525457,0.13046424,-0.103851244,0.03581751,-0.3878334,0.66820306,-0.17402817,0.4709932,0.17487553,0.33661792,-0.32829353,-0.49133712,-0.032999914,0.8710753,0.604493,0.09174713,-0.3294318,-0.267026,-0.29045147,-0.16500893,0.12156902,0.6575271,0.5582345,0.040206663,-0.010172054,0.36212152,0.10351243,0.09218203,-0.28940052,-0.16976348,-0.19747351,-0.054486204,0.6948293,0.4668695,-0.06831553,0.44865733,0.052984636,0.10508567,-0.41052678,-0.42284754,0.39070457,0.9996314,-0.22206162,-0.31719252,0.4617656,0.46664363,-0.25945893,0.309611,-0.8115285,-0.37618464,0.46278957,-0.21027449,-0.63037586,0.17147954,-0.2826552,0.026504355,-0.6452638,0.5077113,-0.13214128,-0.813168,-0.5412639,0.0001551594,-3.07462,0.1644228,-0.10114227,-0.20598945,-0.13006729,-0.19553566,0.12354156,-0.4705479,-0.4635844,0.03756396,0.06057248,0.7628941,-0.19751446,0.2614124,-0.2435516,-0.3578697,-0.3062134,0.26213074,0.056474056,0.5007362,-0.29144105,-0.11830594,-0.071244076,-0.19451945,-0.40271616,-0.058813162,-0.42669162,-0.4735916,-0.13194959,-0.36590067,0.08857882,0.6322748,-0.58376545,0.12114722,-0.28989148,0.023936927,-0.10644727,0.2437422,0.18788452,0.004149735,0.15091954,-0.19395669,0.26817563,-0.36262026,0.5373756,-0.0042071617,0.37513724,0.5373293,-0.07904589,0.352233,0.5748685,0.6757239,-0.055186328,0.983305,0.21759531,0.012560283,0.23874941,-0.06445713,-0.1368801,-0.49251518,-0.19674085,0.19591506,-0.47899482,-0.41552734,-0.24061538,-0.3552454,-0.9238896,0.34881133,-0.07629574,0.49156052,-0.15273952,0.38447922,0.6947958,-0.37324238,-0.08801158,0.08118105,-0.13198808,-0.4729416,-0.38206527,-0.5064143,-0.5207893,0.1472574,0.9037506,-0.1986219,-0.0029346645,0.15412319,-0.3402303,-0.011078788,0.008990569,0.22345166,-0.13011037,0.3152404,-0.051179375,-0.5922244,0.45926142,-0.27379104,-0.16605835,-0.5762952,0.24037568,0.52456874,-0.39265132,0.25644803,0.4766732,0.06635459,-0.1696279,-0.62432045,0.08500564,-0.05072562,-0.3316237,0.17735325,0.3578809,-0.7006777,0.3760793,0.17195527,-0.08701564,-0.7235127,0.59670794,0.01784491,-0.08372557,-0.022117985,0.4117059,0.30248767,-0.21573012,-0.0959689,0.2976561,-0.49299553,0.31413403,0.13263077,0.047694054,0.20344356,-0.25025088,-0.25632933,-0.7224614,0.10569424,-0.5308127,-0.1930995,0.29526716,0.08274005,0.30228066,0.053385664,0.03879651,0.34737176,-0.4292333,0.12885448,-0.16634312,-0.2351127,0.503069,0.40224808,0.71100396,-0.38525876,0.6376544,-0.004260685,-0.03406895,0.32878447,0.22503975,0.4909437,0.08898743,0.38406894,0.1065733,-0.24438201,0.101520464,0.7511659,0.37307236,0.34927586,0.07621511,-0.28530508,0.20787095,0.09859664,0.19800673,-0.21744187,-0.61333865,-0.1272576,-0.251319,0.1519892,0.43130976,0.0447846,0.2996793,-0.18757375,-0.15111427,0.19640441,0.15589666,-0.09234897,-1.0354626,0.31936178,0.23141786,0.9026707,0.09526704,0.054727603,0.11708438,0.65647465,-0.07730664,0.055959105,0.419169,0.1893741,-0.46295983,0.3945951,-0.76986045,0.6685712,-0.042510025,-0.06332167,0.12092904,-0.14261213,0.3846994,0.7896166,-0.25341195,-0.067868516,-0.03725695,-0.40493613,0.027374784,-0.45857558,0.1833169,-0.572141,-0.20265137,0.6615134,0.5245567,0.3716043,-0.10858928,0.09088548,-0.0048397803,-0.09517306,0.17399934,-0.06015625,0.23737101,-0.293648,-0.53826755,-0.14759734,0.4267361,-0.10549406,0.17229761,0.042524196,-0.15768513,0.17768432,-0.12528573,-0.040881343,-0.037714906,-0.5879017,-0.09230624,-0.22285388,-0.71939754,0.36789012,-0.18621352,0.34944916,0.30144817,-0.040562633,-0.15137498,0.39124113,0.3482731,0.7957625,-0.031427015,-0.052462433,-0.49075645,0.18727216,0.20875494,-0.32767752,-0.18781064,-0.010623008,0.17509262,-0.5636366,0.20064792,-0.32633302,-0.26707986,0.11081201,-0.21997876,0.08684117,0.5739055,-0.051093467,-0.17419569,0.19253577,-0.16228838,-0.32911077,0.01699181,-0.108351305,0.19226635,0.086198784,-0.32900694,-0.10802049,-0.24283741,-0.11534829,-0.075862,-0.06367158,0.3787634,0.4917529,0.038243633,-0.23100066,-0.058661234,0.21730728,0.5812443,0.0989251,0.048260517,-0.19108412,-0.49665314,-0.4535802,0.27757177,-0.01700787,0.29508758,0.2844067,-0.33163843,0.5931426,-0.14805238,1.0092539,0.0076286155,-0.47063664,0.069626145,0.50199527,0.0020487309,-0.09430838,-0.38712135,1.0380834,0.4266176,-0.026201997,-0.032515295,-0.14149354,0.1824223,0.29306588,-0.2647093,-0.19202371,0.11345636,-0.6724326,0.004312098,0.23744187,0.23911107,0.06401263,-0.16864038,-0.06853627,0.3545489,0.07762802,0.19741793,-0.4814958,-0.27436414,0.36189818,0.2856215,-0.13055731,0.13410883,-0.35617644,0.32053822,-0.6421294,0.0020547765,-0.44887942,0.21937771,-0.28754896,-0.36290503,0.3217473,0.06045222,0.49714836,-0.18855517,-0.35669348,-0.34346884,0.29450044,0.15108122,0.13435735,0.17637973,-0.20837612,-0.10733586,-0.05268722,0.47983763,1.2293795,-0.21574366,-0.0040508998,0.39263338,-0.4759747,-0.51927084,0.36783323,-0.6378953,0.2727372,-0.06836301,-0.17843498,-0.34595484,0.29924157,0.2579493,0.13908848,0.04108407,-0.7464605,-0.10583951,-0.16493861,-0.46348116,-0.22550704,-0.3470175,0.03140178,0.5981932,-0.37231627,-0.28639403,0.005317888,0.52848107,-0.09706293,-0.5076405,0.31386334,-0.24958776,0.10868321,-0.06473434,-0.47311395,-0.1891334,-0.1038153,-0.3739765,0.14655243,0.13653708,-0.46916267,-0.009574264,-0.19377889,0.19771184,0.77338374,-0.23633425,0.18471763,-0.6174657,-0.55185807,-0.81396633,-0.5688871,0.10966432,0.20135958,0.042844355,-0.60674375,-0.08318954,-0.27025825,-0.19216745,-0.15572385,-0.39712855,0.3867802,0.29508835,0.40113315,-0.29930946,-0.80919474,0.26357558,0.038674586,-0.1835809,-0.62675846,0.4547002,-0.006576121,0.9041448,0.14425753,0.07011921,0.20181422,-0.616345,0.09843183,-0.035099473,-0.21622682,-0.81564707,0.26672867 -632,0.28476253,-0.29272214,-0.6586961,0.061589062,-0.5043722,0.062206466,-0.24787281,0.4132383,0.27185318,-0.19521976,-0.41791412,-0.15159772,-0.02760896,0.46334013,-0.14076556,-0.3794984,-0.23184772,0.23690014,-0.9113986,0.5049163,-0.4201922,0.25176653,-0.0021484394,0.53816,0.42812908,0.36090735,0.062339235,0.024738828,-0.4586011,0.09806994,-0.16848707,0.053354185,-0.55026394,-0.021900458,-0.34037828,-0.34898987,-0.17804694,-0.5170724,-0.3481697,-0.793026,0.36694634,-0.9694398,0.62918025,-0.26376125,-0.012169182,0.07601908,0.3109103,0.39478552,-0.28929994,-0.09160707,0.26067224,-0.24655704,-0.13369377,-0.19707523,-0.42016315,-0.29514095,-0.5160537,-0.084055774,-0.6310858,-0.16574173,-0.18211849,0.10582624,-0.25691876,-0.01725386,0.04198857,0.3586779,-0.438351,0.33145905,0.0989062,0.0735501,0.095447965,-0.5364916,-0.08389419,-0.26199678,0.5949182,-0.1775964,-0.29185244,0.49114904,0.2595456,0.08807526,-0.015485714,-0.069268025,-0.38830006,0.036057387,0.14529899,0.4407967,0.011716808,-0.40703678,-0.09525087,0.02342748,0.50878906,0.3990679,0.20657833,-0.17411572,-0.017127581,-0.2569197,0.022229375,0.7521954,0.4051461,-0.019748375,-0.29829973,0.3679324,0.71441597,0.4861038,-0.32382616,-0.25003627,-1.2040138e-05,-0.5855985,-0.09250023,0.1657208,-0.18070738,0.5106334,-0.04973412,0.24087413,0.8081818,-0.36023775,0.031448748,0.12823147,0.2529342,-0.1499234,-0.028159684,-0.25581774,0.12628679,-0.46568254,0.009215328,-0.10092989,0.42769256,0.17891152,-0.7132635,0.29182035,-0.65467435,0.120679736,0.009521879,0.47342992,0.7134857,0.70426273,0.5008507,0.628416,-0.04751569,0.29014698,-0.046704102,-0.42769837,0.055679142,-0.39047244,-0.032295775,-0.65018886,-0.17638819,-0.3906757,-0.2661174,0.12867175,0.5418996,-0.4257302,-0.08101777,0.020064453,0.74372154,-0.36233807,-0.20406991,0.87117624,0.99123985,0.88778955,-0.043264657,1.1624016,0.29186743,-0.25868425,0.18334766,-0.369939,-0.7288802,0.33690596,0.2617021,-1.2082311,0.5912028,-0.12604462,-0.06757461,0.04752603,-0.22727172,0.02262493,-0.059059348,0.11224848,0.1930813,-0.05153209,-0.1788336,-0.3633177,-0.18044905,0.018072665,0.1644804,0.2595699,-0.37626877,0.41548038,-0.057324678,1.5967368,0.07729929,-0.104399115,-0.0669707,0.73993427,0.1648281,-0.19627434,-0.37118992,0.49886373,0.3884678,0.14943624,-0.6166964,0.256542,-0.29392415,-0.443637,-0.23812963,-0.4101522,-0.25118622,-0.027874408,-0.32374397,-0.1822594,-0.15645736,-0.33192536,0.44192624,-2.4811332,-0.24180937,-0.030535122,0.39635095,-0.08510395,-0.23958881,-0.22448988,-0.49706045,0.2656676,0.12743534,0.50799274,-0.67322564,0.43632174,0.53762573,-0.6844565,-0.3415946,-0.65537536,-0.14219092,0.084669136,0.40279767,-0.2885125,0.067342885,0.26828638,0.053283036,0.5670894,-0.12197273,0.09032617,0.56898165,0.66264707,0.103774846,0.56893367,-0.056686353,0.58584887,-0.3477982,-0.25941524,0.26245594,-0.35455474,0.31963417,-0.15343797,0.10643216,0.7490618,-0.5379988,-0.97837514,-0.5058474,-0.102883376,1.068446,-0.25921205,-0.36374244,0.101977415,-0.6291116,-0.1243344,-0.08903625,0.70498705,-0.18722175,-0.08327041,-0.6546659,-0.07332379,0.0029080908,0.17039378,0.0892447,0.056511912,-0.16470224,0.5941935,-0.0043562204,0.3321235,0.14063783,0.18974149,-0.5823835,-0.48209575,0.30134353,0.66737264,0.12283859,0.055162553,-0.18621789,-0.30269945,-0.27738512,-0.15166691,0.11812202,0.44391724,0.5052074,0.0003134807,0.3223456,0.3355169,-0.14332075,0.024316542,-0.2745469,-0.23223482,-0.18986024,0.1860828,0.37280533,0.9334788,-0.123853855,0.88994426,-0.16718377,0.14647467,0.009549518,-0.6046323,0.8136711,0.86041874,-0.25326967,-0.16618443,0.47357428,0.52716786,-0.447705,0.44006643,-0.625427,-0.19799733,0.7244914,-0.21064542,-0.44387922,0.27078187,-0.1613644,0.027227625,-0.80614716,0.22641174,-0.29521778,-0.37606874,-0.38236102,0.12819166,-2.2296228,0.15342471,-0.1277199,-0.4536744,-0.32427427,-0.2199444,0.033125903,-0.6229311,-0.6502718,0.17567623,0.12758592,0.79295635,-0.07414394,0.1514238,-0.13407691,-0.37296608,-0.16506483,0.09839041,0.18243825,0.4671147,-0.32850304,-0.5617538,-0.09480634,-0.07366762,-0.5985692,0.065961964,-0.5317822,-0.35120964,-0.115008324,-0.65141886,-0.30992025,0.6861625,-0.5116692,-0.038107295,-0.23253171,0.094845146,0.092129,0.34682953,0.13001202,0.15473814,0.326313,-0.058543365,0.23336297,-0.17653692,0.39340022,0.03559268,0.2666386,0.057455804,0.030876277,0.46604526,0.36914423,0.88788825,-0.21308656,1.063563,0.3276874,-0.19108935,0.22438948,-0.32876042,-0.23216839,-0.58485764,-0.20273228,0.069522716,-0.34207654,-0.5151139,-0.0058802613,-0.35317957,-0.8741162,0.63716304,-0.12800126,0.26918048,-0.018764736,0.3609194,0.47011158,-0.3241354,0.07832948,-0.15016794,-0.15266536,-0.5494656,-0.29816878,-0.49429548,-0.5307787,-0.051331848,1.0243341,-0.33296812,0.039240256,0.005435427,-0.5456241,0.15585192,0.14324269,-0.20300543,0.31331494,0.16611783,-0.13698928,-0.6229895,0.22245729,-0.046265546,0.007687827,-0.55837137,0.1953597,0.6584453,-0.62848824,0.46902952,0.27658978,-0.18070002,-0.2931578,-0.40215275,-0.12748362,-0.08879694,-0.09530154,0.25247872,0.44826904,-0.7926383,0.3886492,0.19020641,-0.5214421,-0.73907495,0.4308138,0.038669754,-0.21726926,-0.08890126,0.31457096,0.19798954,-0.043843728,-0.6207456,0.17148608,-0.1823303,0.25585362,0.03655827,-0.04621007,0.01312833,-0.105101086,-0.36776876,-0.73345083,0.3824961,-0.20226157,-0.30875865,0.55219847,0.010385687,0.2062309,0.16658121,0.3189172,0.15591402,-0.27713677,-0.037391443,-0.12319633,-0.34357965,-0.027340084,0.38984442,0.5360162,-0.51790214,0.5135659,0.018319009,-0.30805346,0.41352287,-0.0049243444,0.35464695,0.13243832,0.32816446,0.3744751,-0.42403278,0.29490057,0.6917985,0.22541766,0.50135523,0.14010602,-0.09440426,0.21199779,0.026243245,0.39193416,-0.07084359,-0.49005303,0.18398185,-0.14451395,0.15326692,0.47707748,0.113793015,0.28107902,-0.032805115,-0.27669948,0.012802042,0.1380319,0.14895125,-1.5015448,0.23216777,0.35153428,1.0116833,0.35824975,-0.016038755,-0.11516293,0.82179576,-0.23482643,-0.008275342,0.62089187,0.13627595,-0.5603094,0.66098696,-0.6630971,0.6448292,-0.045140807,-0.065249644,0.21283613,0.08345276,0.36171404,0.91225106,-0.21890773,-0.03782138,0.22211762,-0.24636094,-0.08981439,-0.30973825,-0.020372232,-0.7315108,-0.30443016,0.78501487,0.2730128,0.34260508,-0.13671081,-0.070643015,0.025666445,-0.23821263,0.2366154,0.0679995,0.15680666,0.04875633,-0.66785336,0.03339532,0.40715012,0.04229437,0.26106223,-0.03231411,-0.22593047,0.08062837,-0.39837363,-0.04872681,-0.10014484,-0.91387254,-0.056164812,-0.21084283,-0.58989924,0.39739132,0.024607101,0.09561474,0.30913258,-0.0035872806,-0.3284691,0.666089,0.23064272,0.9066558,0.032680262,-0.17489706,-0.122312814,0.35468844,0.2917979,-0.2144094,0.18660973,-0.1845656,-0.09706775,-0.45742044,0.71566576,-0.03336237,-0.57765025,0.006532104,-0.20521636,0.08224826,0.5808318,0.02021502,-0.09237933,-0.22284405,-0.2402793,-0.5750117,-0.08582002,-0.29700992,0.118147224,0.45184803,-0.066242196,-0.313583,-0.00961676,-0.042252082,0.6160488,-0.16313118,0.64475274,0.29472655,0.29440188,-0.18730374,-0.16835727,0.17785303,0.68652034,0.10385878,-0.09931862,-0.6099276,-0.1811571,-0.34502256,0.36184415,-0.110001825,0.15590712,0.19763489,-0.34010717,0.81994146,-0.21488094,1.2196888,-7.331371e-05,-0.40054765,0.3380586,0.47319877,-0.023384163,-0.06748185,-0.37949893,0.8102601,0.34145334,-0.026664311,-0.11558596,-0.47413445,-0.09453404,0.30941823,-0.35206208,-0.25292265,-0.022821898,-0.45200154,-0.37692943,0.34171107,0.11813035,0.18014772,-0.18709175,0.24977273,0.29339057,0.08657459,0.16747338,-0.5081455,-0.20374669,0.3496044,0.3139551,-0.13238502,0.24118012,-0.41706967,0.43209028,-0.53715813,0.17603713,-0.3568648,0.24734606,-0.24801446,-0.3891511,0.13673772,0.31313804,0.42959437,-0.21488172,-0.2901122,-0.37478253,0.5418791,0.04234147,0.29059365,0.36628485,-0.3189355,0.11155996,-0.09797149,0.44839588,0.94355756,-0.38748765,0.06218639,0.30012745,-0.5135603,-0.6298744,0.5859906,-0.50128824,0.071079575,0.062218446,-0.12679623,-0.48983338,0.22512646,0.16521649,0.2807152,-0.14354058,-0.5715391,0.014387965,0.24078232,-0.17771254,-0.124737225,-0.2678477,0.1791352,0.675831,-0.17098849,-0.23826575,0.13608114,0.34257686,-0.19727986,-0.12216863,-0.09473645,-0.26339307,0.40376195,-0.15658306,-0.3715086,-0.21154113,0.008795033,-0.4865617,0.1347708,0.036639094,-0.4610741,0.086235255,-0.115235336,0.014735997,0.9328356,-0.47240868,-0.05256805,-0.3408337,-0.52853316,-0.81445307,-0.3042786,0.029448926,0.22778906,-0.15518199,-0.7258745,0.21366608,-0.17016791,-0.4713103,0.105541624,-0.6448939,0.29016647,0.08570961,0.2891827,-0.29978454,-0.9637027,0.24781375,0.20282662,-0.28642288,-0.7796877,0.55904835,-0.14343393,0.8542225,0.027594678,0.039915975,0.13021447,-0.21243131,0.02093924,-0.26907152,-0.0473603,-0.52199596,0.0672883 -633,0.44553918,-0.2590806,-0.5135868,-0.062584065,-0.48091412,0.035316512,0.00899025,0.40238282,0.2347276,-0.29008693,-0.10655098,0.004047936,-0.10395589,0.29267323,-0.196265,-0.7688507,-0.14438777,0.2674494,-0.5992273,0.76594263,-0.16347009,0.26290333,0.0888797,0.42107075,0.22320575,0.21356039,0.026049966,0.01963461,-0.2164329,-0.0725698,-0.196281,0.0119069815,-0.81174606,0.47136948,-0.24035262,-0.37809497,0.01735723,-0.32480124,-0.34966576,-0.80496335,0.3638916,-0.6332653,0.70042634,-0.17889825,-0.4873772,0.073353246,0.10521958,0.31398186,-0.33035257,0.0030587912,0.06953145,-0.31049317,0.0018467036,-0.24079928,-0.29888085,-0.2832773,-0.561422,-0.12627842,-0.47830355,-0.050182126,-0.14037357,0.12847124,-0.4131649,-0.13631961,-0.23621134,0.5865707,-0.53244394,0.26221803,0.37020463,0.059305772,0.3926407,-0.6845852,-0.19949402,-0.20208521,0.01482988,-0.016290653,-0.25734362,0.49795142,0.1480949,0.43851125,0.09221175,-0.27799648,0.077668816,-0.14132999,0.17606604,0.35896707,-0.14061953,-0.16369237,-0.26713303,-0.12471447,0.43940875,0.41008523,0.051594928,-0.38724458,0.1724855,-0.15275677,0.03130499,0.25657132,0.39457753,-0.050071184,-0.20932601,0.18489467,0.39468324,0.21115676,-0.18539563,0.11937897,0.03838311,-0.34686887,-0.35895362,0.17535053,-0.28847378,0.5870693,-0.08877331,0.22753763,0.6752516,-0.27240133,-0.017507136,0.051311776,0.30920464,-0.105904646,-0.42857906,-0.2617946,0.21657468,-0.80345154,0.1977199,-0.36657837,0.61894894,0.20455338,-0.5558121,0.11963554,-0.6730532,0.19523558,-0.07965341,0.62717164,0.78073883,0.5887589,0.16960667,0.93696016,-0.5466244,0.06913432,0.2278728,-0.21872172,-0.04985274,-0.33257142,0.16296427,-0.55456656,-0.13483901,-0.11303821,-0.058674373,-0.21152896,0.054880455,-0.4887114,-0.24348569,-0.036976334,0.705783,-0.3690811,0.15633723,1.1072701,1.0963553,1.296248,-0.021690173,1.4633248,0.29140332,-0.28510788,-0.089304306,0.063390546,-0.66617626,0.1227339,0.43885425,-0.7645328,0.40629146,-0.0045845914,0.10246341,0.30624482,-0.41751766,0.16558744,-0.15348376,0.34147638,-0.1490104,-0.2122313,-0.5947773,-0.2698431,0.13156797,0.1967381,-0.2802473,0.2823716,-0.17892548,0.73207796,0.19561,1.15578,0.02422126,0.005995913,-0.089339264,0.29980582,0.2755346,-0.18158211,-0.04910244,0.1758093,0.45835292,0.17491645,-0.5285878,-0.0562816,-0.32534474,-0.38888758,-0.24761114,-0.2670694,0.15246853,-0.40966615,-0.29662234,-0.36019808,-0.123656705,-0.27608514,0.40349463,-2.3588986,-0.19539313,-0.26718462,0.13587326,-0.14917049,-0.14429758,-0.10300849,-0.43545446,0.35903594,0.33609724,0.34861004,-0.75625426,0.26777253,0.56196856,-0.589617,0.09483803,-0.5354293,-0.29367045,0.09099546,0.33281717,-0.055573657,-0.06618099,-0.0652241,0.07765773,0.67298913,-0.10095064,0.073515795,0.1831151,0.3036391,-0.2470971,0.3144358,0.13175727,0.43967497,-0.40419263,-0.079000235,0.35869426,-0.33252385,0.21141046,-0.050536264,0.13842212,0.6706016,-0.6275292,-0.50558627,-0.63536143,-0.4442644,1.1473597,-0.34870273,-0.52464575,0.22261772,-0.46781436,-0.17687486,-0.040833194,0.34078443,-0.11713336,0.061661743,-0.6587646,-0.05306523,0.0128698535,0.19773509,-0.038231436,-0.002478227,-0.27782068,0.6548384,-0.050248895,0.40894833,0.62807906,0.26082203,-0.265028,-0.48652717,0.030023368,0.8604641,0.6985193,0.07945902,-0.17469898,0.0063209045,-0.24701619,-0.24334575,0.21019417,0.48212606,0.8609899,-0.26301578,0.1514648,0.5153347,-0.18647613,0.14297135,-0.022111893,-0.5500527,-0.16971539,0.14133658,0.45077574,0.6750926,-0.07107659,0.41533107,-0.09790833,0.25685996,-0.04782953,-0.72455806,0.74919724,1.0747199,-0.23161998,-0.2548277,0.74101025,0.5108015,-0.5244922,0.58770347,-0.36832377,-0.20136715,0.71169204,-0.014833117,-0.5372901,0.00013325432,-0.388044,0.05378357,-1.1062613,0.2248786,-0.46315116,-0.63437057,-0.6960233,-0.09861097,-3.2017312,0.20601188,-0.3982177,-0.108596995,-0.30939656,-0.19207263,0.17845482,-0.58294815,-0.7282354,0.18777595,0.2102193,0.5290999,0.033912078,0.13417588,-0.10728474,-0.42435315,-0.31002218,0.17672205,0.16175891,0.021540523,-0.40496838,-0.6281917,-0.07651353,-0.27177188,-0.6306904,-0.08613659,-0.59259206,-0.44344798,-0.23960438,-0.78279495,-0.37924308,0.9114721,-0.07073597,-0.035141543,-0.26582098,-0.095189124,-0.105549574,0.28714085,0.01617887,0.2908182,0.12624635,-0.01131679,-0.043647457,-0.3571272,-0.06639142,0.22079195,0.404424,0.23996949,-0.31910574,0.3187079,0.5222858,0.73838353,-0.09578121,0.9218717,0.17849752,-0.2506595,0.46820256,-0.3205826,-0.42482662,-0.91998863,-0.41712734,-0.16851223,-0.43286783,-0.4282935,0.1388177,-0.30835184,-0.79293215,0.4494004,0.14630121,0.50733817,-0.13227068,0.15207444,0.38630608,-0.15312952,-0.053114176,-0.1968491,-0.32728812,-0.51015943,-0.25757667,-0.882959,-0.5868717,0.10374024,1.3308952,-0.013555416,-0.065722376,0.15915665,-0.539369,0.31971893,0.2678893,-0.11954248,0.1186518,0.3930851,0.031213766,-0.88830924,0.35514924,0.42349803,-0.053331826,-0.53938955,0.10850306,0.93482375,-0.6918271,0.5554768,0.28926837,-0.062438782,-0.2609327,-0.6081199,-0.109306164,-0.16915056,-0.20887698,0.6094001,0.33782756,-0.43219054,0.4077132,0.23300928,-0.108224414,-0.5797352,0.44339415,-0.08892114,0.056524266,-0.017892465,0.42703715,-0.09293067,-0.05069463,-0.10228415,0.42868984,-0.5106008,0.43280622,0.20308542,-0.13114366,0.1750573,0.062506475,-0.39396957,-0.8944107,0.16825281,-0.59098387,-0.31194627,0.30997035,-0.053999685,-0.1457732,0.09992836,0.24629603,0.3246248,-0.16151677,0.14464942,-0.13578334,-0.4941075,0.4767315,0.52842516,0.41910413,-0.48062542,0.7168036,0.19399957,0.0070862393,-0.28152463,0.2531923,0.3491458,0.5385209,0.4377929,0.044379905,-0.20537853,0.15835418,0.49743098,0.1974652,0.45664003,0.18728171,0.005554305,0.26413298,0.19418278,0.32503292,0.045201574,-0.16264772,0.17661588,-0.109542936,0.082904704,0.516523,-0.0062997057,0.3160667,0.02663402,-0.16251186,0.07849803,0.07256177,0.003818821,-1.4278592,0.37525558,0.34270337,0.76995444,0.70826566,0.04906893,-0.0036074668,0.5363087,-0.28249577,0.11166409,0.5027724,0.08749693,-0.32956594,0.75259596,-0.6826265,0.50542575,0.10711444,0.05203543,0.19052882,0.11778762,0.4004092,0.9353249,-0.10409799,-0.05145751,-0.1298344,-0.29676986,0.19923444,-0.4248391,0.012559253,-0.42338488,-0.47821015,0.5227653,0.46102762,0.29221448,-0.36604473,-0.045988306,0.15033631,-0.25300914,0.41354266,0.06946296,-0.043909546,-0.15013354,-0.51590985,-0.22115165,0.43603423,-0.2147766,0.16224109,0.22989774,-0.2190961,0.22878903,-0.05073329,0.0025500385,0.062819235,-0.86261404,0.03573549,-0.14303724,-0.29953337,0.5557589,-0.47628233,0.1625616,0.09256831,-0.023748307,-0.34937608,0.072543584,0.041777525,0.6515596,0.03840544,-0.30011633,0.040403973,0.28245136,0.24932688,-0.30385044,0.2618728,-0.0772455,-0.09242485,-0.5549813,0.51317334,-0.096342824,-0.19914137,0.18327112,-0.12689166,-0.082940504,0.40589234,-0.13406496,-0.07585609,-0.23539214,0.007815816,-0.30226347,-0.33616382,-0.3483059,0.24136502,0.11576185,0.2631628,-0.107777566,0.034721196,-0.069708355,0.359138,0.021964313,0.11593237,0.09327212,-0.24990441,-0.7101333,-0.037753213,0.04059849,0.23276724,0.17145425,-0.13496958,-0.081715174,-0.14401516,-0.28050458,0.20872016,-0.25433624,0.2743702,-0.035917245,-0.38599208,1.1061567,0.2038758,1.4122754,-0.058436085,-0.35391453,-0.10157636,0.54299575,-0.19165438,-0.04157325,-0.12242473,1.1857104,0.65200096,-0.105894685,-0.19641238,-0.5426525,-0.011483323,0.35078645,-0.20157628,-0.37839898,-0.063577205,-0.6573254,-0.36414817,0.23072915,0.26673123,0.05893677,-0.038034853,-0.1444325,0.41130266,0.12635258,0.40918544,-0.37820664,-0.039208435,0.36710748,0.1553703,0.07763935,0.30582038,-0.4105028,0.31552958,-0.7751097,0.39614782,-0.19475217,0.109717734,-0.27432668,-0.2939225,0.16031794,0.011890867,0.38358843,-0.39961395,-0.28090352,-0.35415515,0.6137744,0.15831405,0.22327846,0.94070905,-0.2805969,0.014086019,0.1592285,0.2148108,1.0696687,-0.12489009,-0.17290884,0.16135822,-0.59589285,-0.76765305,0.23653144,-0.24843735,0.11725409,-0.14195642,-0.38209847,-0.4579523,0.08221582,0.05690993,-0.0065075187,-0.017264841,-0.54765266,-0.075091854,0.3254188,-0.3145743,-0.2032054,-0.4021905,0.28434768,0.41709015,-0.228131,-0.33495757,0.10598004,0.12915999,-0.4084563,-0.55447215,-0.1274887,-0.33445692,0.38311443,-0.048980918,-0.4293339,0.13119787,0.23225184,-0.58880824,0.06552164,0.22545844,-0.3696237,0.014636484,-0.09774718,-0.27988026,0.99611247,-0.21164869,0.17081276,-0.50788313,-0.610504,-0.7091741,-0.29809645,0.35131642,0.40176746,0.15445615,-0.78462833,0.041260052,-0.19232507,0.20589618,0.08467873,-0.43636894,0.3156624,0.27344733,0.31016326,0.0483487,-0.7890266,0.28458503,0.25551146,0.06363239,-0.38603246,0.64297485,-0.16455571,0.6484716,0.123124786,0.10390899,0.15652299,-0.66760486,0.26080945,-0.10893993,-0.39873132,-0.3058569,-0.12619954 -634,0.39726117,-0.16520433,-0.47310308,-0.1309802,-0.3053003,0.067909434,-0.07420781,0.67216164,0.31355268,-0.2966989,-0.21808667,0.0011788766,-0.053188723,0.33006632,-0.18066102,-0.5912941,-0.01493779,0.17534848,-0.47195008,0.639658,-0.40834844,0.32219175,-0.11401783,0.5249088,0.23620541,0.19843367,-0.065896295,0.12086687,0.08225297,-0.13464017,-0.03865131,0.41979367,-0.4230652,0.112414084,-0.23714057,-0.5075053,-0.07477486,-0.30441415,-0.46562907,-0.79786164,0.21032105,-0.702286,0.6696624,0.11442685,-0.34859154,0.0034318487,0.08598648,0.3311971,-0.21938697,0.10247866,0.013156891,0.00653464,0.008995243,-0.1657487,-0.3041757,-0.42132,-0.6364392,-0.13909858,-0.45911497,5.3115687e-05,-0.2071211,0.23904501,-0.20496108,-0.08389605,-0.13743526,0.43330383,-0.45260936,0.15776621,0.17132936,-0.12768047,0.17467573,-0.660396,-0.25053322,-0.021919187,0.18323661,-0.15336227,-0.39338362,0.31657556,0.28595093,0.33862844,-0.094522685,-0.16199562,-0.32085755,0.0025031886,-0.13212924,0.5477765,-0.3002498,-0.3936639,-0.22621666,-0.036565542,0.6082316,0.39317593,0.053233847,-0.27488562,-0.14938353,-0.14419055,-0.20120424,0.4561947,0.61475253,-0.2340162,-0.13411781,0.365998,0.4234652,0.3112182,-0.19493242,0.13620707,0.0076241693,-0.55879223,-0.07848236,-0.052568123,-0.1853742,0.4476761,-0.051234167,0.12979253,0.5694436,0.06066062,-0.108911596,0.0854489,0.1510546,-0.09384167,-0.2854931,-0.45652482,0.27972144,-0.42914313,0.24225393,-0.23582767,0.55828947,0.0038625677,-0.59908885,0.27978358,-0.63485724,0.15117577,0.010934212,0.47380894,0.72109073,0.53414243,0.19824249,0.6012452,-0.26177981,-0.014566281,-0.014359653,-0.09890429,0.09449165,-0.105110124,-0.14205363,-0.48988917,0.108824536,0.008333746,-0.14836644,0.4688109,0.47005495,-0.6793636,-0.14388223,0.08997836,0.758949,-0.26639274,-0.025102245,1.0157987,1.071088,0.8214255,0.020634007,1.0913824,0.23438995,-0.13816354,0.00817159,-0.3110687,-0.55293053,0.22917806,0.36042213,-0.5276057,0.38886756,-0.018372476,-0.21734434,0.4406783,-0.34817427,-0.14886348,-0.025949454,0.14121029,0.022779686,-0.21896854,-0.5028854,-0.2405719,-0.0048982026,0.06912418,0.24619684,0.25514513,-0.32764232,0.445387,0.02643436,1.2137372,0.049462628,0.040634807,0.14907509,0.43252957,0.3819373,-0.17128102,0.10052731,0.32384792,0.41846457,0.042268105,-0.431971,0.15611926,-0.29788834,-0.38804358,-0.037531033,-0.23012085,-0.25327283,0.03088777,-0.53021806,-0.13994876,-0.08038766,-0.051711988,0.41791305,-2.682457,-0.14214583,-0.19104776,0.32249445,-0.092055336,-0.32681638,-0.18033455,-0.43689096,0.44370562,0.35851878,0.5429398,-0.6752401,0.30615157,0.5507483,-0.6639446,-0.08421873,-0.6409323,-0.1373652,0.08368524,0.286996,0.020250598,0.031182019,0.2305327,0.28398302,0.5611101,0.019275943,0.16080703,0.32347742,0.42700014,-0.16912119,0.2999045,-0.0067353803,0.4814464,-0.33244964,-0.23277475,0.23699465,-0.40216252,0.19912784,-0.111539155,0.0723867,0.61465085,-0.47556323,-0.946331,-0.5308522,-0.04013828,1.0820119,-0.09192223,-0.47252136,0.14165297,-0.5060995,-0.23945837,-0.025563657,0.70475703,-0.20848042,-0.05005936,-0.7977955,-0.17005304,-0.12566815,0.22454993,-0.059913475,-0.03325016,-0.31495684,0.6104049,0.0064688763,0.5159347,0.32822233,0.22610618,-0.47263825,-0.61914426,0.14278479,0.669953,0.4906783,0.18236575,-0.22690244,-0.15176338,-0.21375038,0.10679865,0.116523035,0.6981525,0.49825478,-0.18423288,0.09790707,0.38079152,0.1573518,-0.02285531,-0.2836137,-0.21924902,-0.12178678,0.13888314,0.47157162,0.7934592,-0.229776,0.23498288,0.039194677,0.49832222,-0.27924067,-0.6126227,0.52028656,0.9550449,-0.31068102,-0.34534746,0.66296834,0.44746882,-0.10368948,0.45630664,-0.6907886,-0.24523668,0.461924,-0.08288921,-0.3847769,0.31940186,-0.3136597,0.20670967,-0.8668682,0.32436725,-0.30625707,-0.4856733,-0.6915904,-0.064758375,-3.066731,0.13299546,-0.2957771,-0.093972854,-0.20579518,-0.2902922,0.13775311,-0.7041094,-0.65050215,0.27211842,0.13546576,0.5110199,-0.16652432,-0.06277123,-0.18192773,-0.45540985,-0.18640545,0.24281836,0.24921481,0.45844734,-0.002728053,-0.5013157,-0.14798322,0.029730698,-0.5546979,0.0046076537,-0.6811066,-0.33065587,-0.1308563,-0.7121946,-0.02007701,0.55348724,-0.29409784,0.06839609,-0.26166067,0.050372664,0.05172531,0.20379446,0.19606747,0.14741199,0.07640572,-0.035142995,0.14767697,-0.21424434,0.31092727,0.067969844,0.054644473,0.2753091,-0.1433701,0.10858714,0.46686193,0.7182707,-0.24328277,0.8674924,0.47617996,-0.023835966,0.3546173,-0.23907448,-0.34353825,-0.657628,-0.26487634,-0.12515888,-0.36976737,-0.34933627,-0.16286182,-0.4483041,-0.8226003,0.5328671,-0.021058798,0.15877174,-0.03961622,0.120696194,0.51663935,-0.20188825,0.00011705359,-0.08861299,-0.16504751,-0.42606142,-0.29575032,-0.6093385,-0.3820228,0.14218503,1.0770032,-0.23208697,0.123142466,0.12320239,-0.14487438,0.019165868,0.20918776,0.0385882,0.09174187,0.37487835,-0.19125026,-0.5314751,0.22685733,-0.13000947,-0.46690625,-0.73651904,0.3211713,0.6555946,-0.6109558,0.610908,0.30363002,-0.026942601,-0.41830853,-0.5500255,-0.099932656,0.1760857,-0.11742959,0.5798927,0.24926968,-0.6856402,0.39775607,0.29440364,-0.32072908,-0.59137255,0.7169183,-0.14422578,-0.4217214,-0.099706315,0.42510286,0.18887584,-0.028778942,-0.10599975,0.1449944,-0.21475694,0.28592205,0.1138362,-0.24251503,0.4076093,-0.24543364,0.03181033,-0.973694,0.07669076,-0.49550676,-0.3169255,0.17909907,-0.14348151,0.05491804,0.04327261,-0.06486222,0.33142328,-0.26405576,0.14498994,-0.18962282,-0.2934722,0.3445774,0.45624098,0.50322723,-0.18971176,0.61046356,0.09347414,-0.06489953,0.07531055,0.24749976,0.42155218,0.029259972,0.47315773,-0.07458775,-0.09609414,0.29659215,0.68099827,0.21340998,0.20505565,0.17005157,-0.08797164,0.041298963,0.10510759,0.18131796,-0.21914127,-0.38406125,-0.02781384,-0.37880757,0.13503557,0.5185644,0.16704628,0.21742053,-0.041883405,-0.43144545,0.1290858,0.25042465,0.22235806,-1.5677516,0.23126908,0.22631389,0.79640985,0.38277638,0.2692026,-0.089314856,0.53049165,-0.2827644,0.04443095,0.4945995,0.19902293,-0.2738652,0.4838075,-0.6815518,0.54385465,0.06570435,0.046291836,-0.00926607,-0.0075271446,0.38601276,0.8453864,-0.067692,0.009899169,0.0355961,-0.2973457,-0.029974291,-0.27114168,0.115935184,-0.4586225,-0.3741179,0.77302235,0.4738535,0.35689735,-0.38129446,0.015718063,0.19035082,-0.07518109,0.0010928154,0.039056357,0.08742965,-0.27621138,-0.448922,-0.09507959,0.50776094,-0.039936464,0.07132555,0.090563945,-0.2953915,0.23028952,-0.12634462,0.14872204,0.036569778,-0.79605335,-0.14473157,-0.42233965,-0.39889345,0.54424226,-0.23751375,0.2321596,0.14688455,-0.0016347875,-0.37489128,0.4235206,-0.005775825,0.84483504,-0.0042652288,-0.055680156,-0.14563586,0.30441916,0.2672684,-0.1436034,-0.068656646,-0.27384678,0.176554,-0.44883394,0.31537044,-0.006238719,-0.3112174,0.025129234,-0.083041996,0.10373106,0.40521508,-0.20486537,-0.31067994,0.060589958,-0.06585918,-0.38183555,-0.3290079,-0.07387926,0.23331733,0.27281436,0.122773886,-0.024277082,-0.103054814,-0.1387664,0.42804858,0.029496344,0.37058428,0.43015358,0.08617425,-0.33701578,-0.005719348,0.1404043,0.47186995,-0.11655851,-0.13040449,-0.2262318,-0.5034668,-0.42130062,-0.0048424243,-0.15582074,0.31922573,0.060652874,-0.18851444,0.7258452,-0.061866794,1.0756735,-0.05432574,-0.50188017,0.16791086,0.49727,-0.023430578,-0.052844565,-0.18090588,1.0853488,0.64845186,-0.16111515,-0.09384956,-0.24672303,0.00056595803,0.2579182,-0.29149714,-0.13161065,-0.033435706,-0.58333904,-0.12396488,0.2012652,0.24713477,0.1337303,-0.11195612,0.03427411,0.24423712,0.063467376,0.23323509,-0.55299383,-0.0947735,0.22307625,0.33104923,0.048489504,0.083781525,-0.53513646,0.38999605,-0.3677948,0.08613469,-0.43506292,0.18762502,-0.2894099,-0.2604848,0.17383493,-0.116949014,0.33792263,-0.4606443,-0.33035436,-0.35380083,0.50559366,0.053079892,0.023138108,0.56881607,-0.27075627,0.089458995,0.09184766,0.54682773,0.98276806,-0.36677748,-0.13473186,0.3924907,-0.56699646,-0.5100653,0.20415539,-0.40926012,0.2322885,0.03266646,-0.14034203,-0.42997158,0.2313268,0.012486505,0.19225614,0.017822884,-0.6596762,-0.11116299,0.29062775,-0.26121363,-0.16964197,-0.45023742,0.23539896,0.5248598,-0.15927607,-0.52190703,-0.0041175503,0.15565933,-0.15242335,-0.60826,0.0939789,-0.23699537,0.3376522,0.06995846,-0.39596665,-0.11012853,0.036698792,-0.44839725,0.08754091,0.14211613,-0.29865283,0.08215151,-0.3389359,-0.08837329,0.938244,-0.31656298,0.19374943,-0.59628326,-0.44516098,-0.8136533,-0.40586898,0.35821375,0.4505817,-0.07940022,-0.9404711,0.080317855,-0.17063905,-0.2446169,-0.047803592,-0.18311357,0.5602112,0.17979033,0.4474598,-0.127402,-0.8037171,0.19407915,0.00025314986,-0.22436129,-0.5669787,0.554042,0.09164186,0.8280819,0.10502681,0.14181353,0.21068859,-0.6427778,0.07224801,-0.25831494,-0.20234558,-0.676339,0.10719843 -635,0.3504816,-0.07303807,-0.40722477,-0.20314376,-0.2006864,0.15821233,-0.11497805,0.3669505,0.13731225,-0.24981457,0.012765076,-0.22190234,0.13488741,0.6721775,-0.012102008,-0.5904887,0.10195456,0.15158473,-0.8352787,0.5546844,-0.38923132,0.36233297,-0.11151869,0.26149094,0.32846877,0.3314904,0.19871648,-0.209513,0.048407905,0.14808871,-0.24031736,-0.04792816,-0.3099719,0.07849414,0.00087274314,-0.14371465,0.030643377,-0.27977654,-0.53557473,-0.5738238,0.39756647,-0.69115144,0.36936647,-0.098290585,-0.22428153,0.19453265,0.07826892,0.3405865,-0.50875103,-0.095887296,0.1951547,-0.017288122,-0.04114093,-0.056419495,-0.26481408,-0.43309647,-0.4532443,0.002185446,-0.58861274,-0.2798215,-0.4194803,-0.025536507,-0.20286302,0.11262372,-0.031235533,0.15671529,-0.5353186,0.101655915,0.23266383,-0.1466821,0.00039422512,-0.43392906,0.06709518,-0.18123564,0.25941885,-0.056847926,-0.22592312,0.4782178,0.2032974,0.42826444,-0.06354942,-0.08925438,-0.18294708,-0.14556,0.087666854,0.46947682,-0.07614349,-0.37937087,-0.21089397,0.030106226,0.058006503,0.06801758,0.13657634,-0.39375365,-0.16939044,0.04134915,-0.19363464,0.3235745,0.35877848,-0.44907156,-0.27020633,0.43000492,0.48718452,0.2639955,-0.21773002,0.017916627,-0.010465604,-0.44315085,-0.18061092,0.034225073,-0.24916273,0.41285288,-0.15565768,0.30170307,0.74336225,-0.16036408,0.04272052,-0.16953005,-0.010932378,-0.19395371,-0.08660641,-0.09845731,0.012858014,-0.51276815,0.13252485,-0.014459219,0.7315299,0.29135817,-0.5946755,0.3929757,-0.49234003,0.29652965,-0.17179486,0.42965105,0.74428374,0.3648972,0.14363939,0.744421,-0.43708992,0.25814825,-0.04622727,-0.34513098,0.19572182,-0.2581462,-0.20471288,-0.56126994,0.056038175,-0.010692918,-0.22969219,0.10061563,0.42670146,-0.481083,-0.03319818,0.016598014,0.86245453,-0.37260374,-0.090678446,0.45282844,0.9073418,0.89823127,-0.03269718,1.0351179,0.39090756,-0.32940954,0.33846596,-0.42082658,-0.78052014,0.19132608,0.39361137,0.088475086,0.4347126,0.09469342,-0.088427976,0.26916316,-0.37343916,0.18850523,-0.096569456,0.10852562,0.008746815,0.033349574,-0.3402232,-0.2905055,-0.18175086,0.008975772,0.03390765,0.3050537,-0.2824625,0.33881563,-0.0126137175,1.9636328,0.10487851,0.046681907,0.023769872,0.68969893,0.21436383,-0.20714998,-0.31539997,0.30924928,0.46878487,0.0103849415,-0.66237885,0.09887376,-0.38021082,-0.5296989,-0.13714634,-0.42475623,-0.14095683,-0.040102843,-0.442245,-0.14838435,0.08701747,-0.28708154,0.4339603,-2.607593,-0.1769917,-0.18499568,0.3090142,-0.31816784,-0.19343136,-0.08610009,-0.35429776,0.2531615,0.34863707,0.44370562,-0.56387514,0.25536963,0.36965322,-0.46500534,-0.08329718,-0.4786927,-0.10819169,0.04845406,0.43404868,-0.1932156,0.019977119,0.04338658,0.2593884,0.4009512,-0.06402106,0.090185665,0.393164,0.26022428,0.19562343,0.37179402,-0.036430456,0.592485,-0.20178613,-0.059427164,0.268713,-0.08805973,0.4151839,-0.12062499,0.14203005,0.4133759,-0.4102301,-0.76311195,-0.42634103,-0.08016873,1.1346785,-0.43878788,-0.3565087,0.44535998,-0.37240615,0.032035075,-0.06288031,0.46546465,0.034548007,-0.21249555,-0.6201969,0.22920778,0.034642596,0.23753554,0.032045767,-0.06450457,-0.1565322,0.5350141,-0.0031896431,0.45606592,0.13597552,0.1823913,-0.09491901,-0.4720768,0.18941155,0.6931214,0.3201433,0.12586714,-0.23588692,-0.24554482,-0.4615366,-0.2743029,0.11844444,0.15071808,0.70241916,0.02056128,0.14767118,0.24384148,-0.18245293,-0.055346973,-0.15495259,-0.19098409,0.0943089,-0.052927677,0.54195696,0.61441004,-0.22254059,0.5662758,-0.060761612,0.16432601,-0.17090276,-0.57499224,0.6062519,1.0240626,-0.21684675,-0.16193867,0.40217772,0.3549988,-0.23373458,0.3508534,-0.65620685,-0.24615857,0.6576944,-0.1577051,-0.20407018,0.18473975,-0.3017363,0.20474097,-0.87634605,0.21113226,0.030168597,-0.34613788,-0.35577255,0.04436193,-3.50692,0.105254956,-0.24113068,-0.23246846,-0.062109884,0.07328663,0.17606662,-0.5155255,-0.46973857,0.008565799,-0.023121532,0.7218099,0.008230422,0.117839895,-0.21954621,-0.1594076,-0.37597984,0.077377446,-0.03839225,0.5073489,-0.12418263,-0.5384016,-0.058955573,-0.28182566,-0.41856855,0.09911003,-0.58539546,-0.36311504,-0.25646397,-0.49574533,-0.14745493,0.6882393,-0.171077,0.021516452,-0.12570596,-0.031562585,-0.14006376,0.20597915,0.40873927,-0.101963416,0.16583748,-0.053347457,-0.058380134,-0.39947847,0.14467905,0.054143712,0.37171063,0.27451965,0.18150528,0.1459261,0.5898483,0.6112299,-0.2594101,0.6616263,0.5672789,-0.19492008,0.26620954,-0.2814003,-0.13342252,-0.45445913,-0.31150976,-0.1709564,-0.32157108,-0.49925557,-0.07681116,-0.3008167,-0.7323334,0.30006245,-0.036001332,0.21283038,0.1410167,0.005063474,0.5089319,-0.17633067,-0.051089365,-0.026081506,-0.1886525,-0.6340471,-0.32173556,-0.6020876,-0.4233838,0.46109614,0.9550887,-0.22878869,-0.18216291,-0.12958662,-0.42172012,-0.05480821,-0.05908515,0.10423645,0.35405913,0.18285497,-0.30613154,-0.6902761,0.5993997,-0.048428137,-0.019556988,-0.5260588,0.18897662,0.44734007,-0.5493679,0.29962903,0.15478247,0.08508914,0.00881677,-0.40446022,-0.19408928,0.020528976,-0.21626496,0.19058858,0.059109014,-0.77270925,0.382726,0.23665349,-0.33505884,-0.59005344,0.58462125,0.02337148,-0.2612418,-0.08945877,0.21712098,0.031017026,-0.013396515,-0.36879832,0.21618465,-0.49948126,0.16360101,0.42022085,-0.025187327,0.19913778,-0.2307251,-0.20522282,-0.5459173,0.0963713,-0.33466357,-0.1516163,0.30205745,0.13191058,0.26837888,-0.013831234,0.10513585,0.2909952,-0.2595399,0.067054294,-0.10769639,-0.26056832,0.40580067,0.3738032,0.43971106,-0.41871223,0.65580404,-0.035897203,-0.04512273,0.22156614,0.09901209,0.3559621,0.2136085,0.29312977,0.15314965,-0.32524616,0.20437975,0.81203765,0.24758036,0.2990547,0.14280897,-0.21731052,0.18984228,0.20581502,-0.012306277,0.13167606,-0.42217973,-0.03303796,-0.08120367,0.24826027,0.49667463,0.27875277,0.3051701,-0.08257052,-0.315118,0.13039808,-0.019488156,-0.0016610732,-1.1898152,0.35653332,0.33411005,0.68939376,0.404441,-0.076431125,-0.086213425,0.6791161,-0.20352246,0.19397837,0.29914796,-0.15630384,-0.67646575,0.46793044,-0.66679865,0.7353858,0.035512112,-0.06184123,0.21002646,0.16980919,0.34191182,0.86585313,-0.08601846,-0.022065278,0.17184807,-0.46320418,0.15064472,-0.32302198,-0.07627754,-0.64272666,-0.3015328,0.48725665,0.34161976,0.15377162,-0.060367584,0.022547007,-0.0749983,-0.12994348,0.19379744,0.053899918,0.086326376,-0.13259038,-0.67332804,-0.40197012,0.36204472,-0.17903699,0.19992112,0.089702256,-0.13206309,0.23408593,-0.34189814,0.07538306,-0.09664823,-0.7279827,-0.076212145,-0.1835832,-0.39518872,0.4324533,-0.1935427,0.34380162,0.2108841,-0.045821052,-0.42483404,0.60053164,-0.05197023,0.76862943,-0.05247918,-0.27252138,-0.34331653,0.05255765,0.19610319,-0.22008501,-0.009803942,-0.24179745,-0.12802707,-0.6093487,0.4587237,-0.06368529,-0.33738598,0.020029861,-0.25954875,0.038791608,0.47651222,0.01320533,-0.18877332,-0.28191125,-0.09493734,-0.34483892,-0.14925458,-0.2373853,0.16427174,0.21637438,-0.08770941,-0.1836884,-0.14359777,0.12037905,0.44426215,-0.1672397,0.31713885,0.29168376,0.023669569,-0.26621592,-0.07041741,0.3382306,0.40861845,0.12680452,0.072989546,-0.21355037,-0.24191615,-0.3770974,0.009767797,-0.30755132,0.4395213,0.20778519,-0.36130095,0.59366226,-0.036306974,0.9789753,0.024435032,-0.3097078,0.22447284,0.45720062,0.21883075,0.029752195,-0.25729647,0.63519096,0.5270795,-0.0008054495,-0.31856394,-0.27534875,-0.17807296,0.34031785,-0.19159652,-0.25817126,0.15830572,-0.5577787,-0.16996805,0.27908656,0.22355537,0.38694528,0.019609679,0.044040862,0.09604392,0.049658872,0.25130945,-0.49872807,-0.25747606,0.36347607,0.098454475,0.11096361,0.21441874,-0.5531344,0.49379966,-0.5707846,0.021291407,-0.1817749,0.19792716,-0.17532913,-0.29976714,0.17549922,0.25775954,0.40336174,-0.212183,-0.25714433,-0.37846687,0.62287134,0.11258901,0.31349373,0.5723888,-0.28990003,0.089805536,0.06928773,0.39977136,0.9001842,-0.18542665,-0.009936238,0.29776153,-0.4302866,-0.6805439,0.39969188,-0.20019652,0.27579114,0.1505616,-0.14566593,-0.53825754,0.29418147,0.06394841,0.01386133,0.13937512,-0.5389932,-0.31924668,0.14185153,-0.224127,-0.29130167,-0.44721496,0.2321701,0.5187827,-0.40744117,-0.1596804,0.28085992,0.20972449,-0.13181558,-0.5848323,0.0067233485,-0.31489882,0.26885027,0.026109286,-0.34323806,-0.0087239025,0.08139253,-0.3845258,0.20349453,0.14470722,-0.49231455,0.10500751,-0.2713147,-0.030396223,0.9508837,-0.21333481,-0.0882893,-0.6592599,-0.4975963,-0.83807766,-0.45841178,0.560607,0.12118738,-0.004578018,-0.6272779,-0.03988618,0.010488713,0.013942933,0.012511814,-0.5065364,0.4568043,0.12275749,0.10562064,0.13739906,-0.8494444,0.11100402,-0.016293326,-0.25500706,-0.638765,0.45339096,-0.20229015,0.94212466,0.097714946,0.035642624,0.30201092,-0.4169827,0.03996394,-0.28642413,-0.20313992,-0.47415054,0.18742326 -636,0.49152008,-0.05316088,-0.5916343,0.15166458,-0.436827,0.2502527,-0.21306112,0.18248582,0.059649307,-0.42396995,-0.08959711,0.004219926,-0.15115318,0.70436424,-0.3048714,-0.6193181,0.13597962,0.21545874,-0.5336252,0.7664744,-0.26163623,0.48923692,0.19516833,0.15554479,0.13181658,0.21927282,0.20402828,0.112153254,-0.05223345,-0.15939309,-0.22357114,-0.015677989,-0.4000108,0.50758266,-0.22241864,-0.43820634,-0.06990715,-0.20618936,-0.2896281,-0.55789983,0.11318885,-0.77318615,0.7162963,-0.0346937,-0.3956243,0.05399675,0.2351825,0.19232376,-0.038297083,-0.06509431,0.01703057,-0.009432673,-0.13971959,-0.22584033,-0.16679965,-0.50569326,-0.47122878,-0.0027476507,-0.84845054,-0.14954884,-0.0745347,0.19095005,-0.25776103,-0.0135518825,0.059998572,0.096069574,-0.3799004,-0.02410446,0.15791677,-0.14158022,0.09571954,-0.64613426,-0.19223131,0.036950555,0.18067949,0.030222561,-0.20353584,0.34425616,0.15722768,0.60225993,-0.029163582,-0.13522653,-0.18927503,-0.025496705,0.14875185,0.61525536,-0.18808672,-0.14449434,-0.29595724,0.28470215,0.6675605,0.09574119,0.30512556,-0.35075527,-0.0064114267,-0.1589087,-0.057779122,0.34059194,0.4746979,-0.27598223,-0.099312834,0.36200905,0.5258179,0.31399664,-0.20858696,0.03435484,-0.09621775,-0.3241212,-0.11216193,-0.09469647,0.019434344,0.52076614,0.04893067,0.4186975,0.43375635,-0.018897815,0.14515983,0.16696544,-0.018036501,-0.2068334,0.12965865,-0.1414857,0.082316495,-0.45827156,-0.13814946,-0.027579715,0.66232884,-0.09998381,-0.7857648,0.3665536,-0.43414608,0.003750107,-0.06831908,0.4446745,0.73514444,0.337462,-0.08564057,0.75617415,-0.41904345,0.10170062,-0.03963355,-0.20358233,0.16710337,-0.14904928,-0.08792533,-0.6581579,0.032901157,0.03540211,-0.06357987,0.13403155,0.56347775,-0.67084134,-0.20993255,0.07481043,0.8423406,-0.3173587,-0.064098194,0.5964688,1.2815306,0.9249546,-0.031540107,1.0276101,0.311913,-0.02456605,-0.15186374,-0.21189985,-0.53052527,0.15843572,0.55414957,0.20559642,0.7984899,0.075243615,-0.02961023,0.4157215,-0.14824544,-0.13609181,-0.039544217,0.32162222,-0.004703688,-0.21050301,-0.6561972,0.0013136396,-0.020766543,0.08633917,-0.020909233,0.3725653,-0.37703213,0.34117386,0.061213613,1.7558147,-0.19471177,0.08370485,-0.037463434,0.25479722,0.3208882,-0.3379889,-0.068760104,0.13274999,0.15405367,-0.018435793,-0.37094983,-0.043266244,-0.26745722,-0.6088859,-0.21558496,-0.21994965,-0.28743982,0.060039308,-0.40960068,-0.1737846,-0.0030534694,-0.26344973,0.45985016,-2.6722534,-0.32069305,-0.17247303,0.35639378,-0.2880551,-0.35523728,-0.121129684,-0.16707622,0.3815966,0.32716125,0.38718066,-0.44214672,0.32820395,0.418964,-0.42133477,-0.20021819,-0.36528233,-0.015185603,0.13143203,0.5859252,-0.053373862,-0.15654819,0.13597092,0.37465382,0.41184726,-0.25248575,-0.021517415,0.40518767,0.38047343,-0.08819082,0.10152114,0.10255892,0.47288534,-0.24790023,-0.1957848,0.37849385,-0.16468407,0.47083944,-0.0070991814,0.28862146,0.33851528,-0.340638,-0.7582836,-0.47653344,-0.10004787,1.0382155,-0.24253069,-0.6097841,0.20268907,-0.17625865,-0.3046318,-0.064076565,0.22116037,0.024631811,-0.0041714055,-0.7733117,0.09044202,-0.060012598,0.25146678,-0.0093245525,-0.11104865,-0.35933867,0.710857,-0.05339088,0.49881586,0.23986149,0.48618603,-0.15726349,-0.34768078,0.13947938,0.9780079,0.69581175,0.01663259,-0.19454412,-0.21875568,-0.26489285,-0.1302013,0.1799593,0.3731822,0.7031662,0.1323794,-0.030239705,0.2675067,-0.055440366,0.059705194,-0.00027265932,-0.37933087,0.096971795,-0.030120304,0.50485116,0.65089595,-0.12686028,0.62537205,-0.115775526,0.2799439,-0.21689253,-0.64549404,0.48384458,0.6676901,-0.15671597,-0.30808768,0.4956429,0.38723263,-0.17420615,0.46149984,-0.8123633,-0.46164614,0.3940862,-0.074402764,-0.3381667,0.20841311,-0.23230508,0.17307055,-1.0056307,0.39766455,-0.183464,-0.44312218,-0.5223726,-0.2108167,-2.313912,0.07143001,-0.16267036,-0.17296581,-0.13841283,-0.1120797,0.23980634,-0.70182717,-0.60015804,-0.040080447,-0.041561045,0.548296,-0.02892364,0.20387636,0.08233355,-0.57176095,-0.061395653,0.3211723,-0.035774656,0.26411542,-0.17434214,-0.3081687,-0.23230569,-0.2436218,-0.2718808,0.11468245,-0.65543544,-0.6351584,-0.35413557,-0.20277032,0.06537883,0.7916457,-0.3342454,-0.07333411,-0.34636825,-0.003778068,0.148237,0.19301485,0.29857752,0.04933093,0.20931053,0.04004165,0.029940614,-0.49352172,0.11507421,0.19755873,0.482977,0.6741194,-0.27716938,0.3883418,0.5929607,0.58026254,-0.15909621,0.66696805,0.36108842,-0.32393143,0.25398368,-0.21001749,-0.24057038,-0.5714798,-0.38675803,-0.0016770618,-0.36248296,-0.4692329,-0.09598557,-0.32060644,-0.7545738,0.45871702,0.009352841,0.361049,-0.087938406,0.34696862,0.4568989,-0.23664483,-0.22836696,-0.13944599,-0.2482271,-0.63728577,-0.37892613,-0.6705012,-0.52668524,0.19726296,1.1398233,-0.2461519,0.06084588,0.08763997,-0.21318147,0.06966635,-0.26399818,0.14956944,-0.05167388,-0.011664137,-0.066394396,-0.7283206,0.49774095,-0.14893031,-0.09484859,-0.53438485,0.1293032,0.54451174,-0.51803786,0.105820276,0.3398896,0.268016,0.009742388,-0.5468167,0.16129562,0.16229095,-0.34665442,0.34742647,0.25321543,-0.51680076,0.42663994,0.40009183,-0.25793257,-0.612527,0.35844693,0.053083427,-0.047654323,-0.18794258,0.27824476,0.1368614,-0.01505463,-0.09998245,0.15991804,-0.5471788,0.29442364,0.30393288,-0.0010760128,0.10663574,-0.24209796,-0.46332604,-0.59699094,0.23819205,-0.25116235,-0.28606203,0.25174573,0.16668214,0.11977255,0.09655757,0.27401,0.5622582,-0.3967556,0.10750254,-0.23918998,-0.26462016,0.5132163,0.66494334,0.661849,-0.29903108,0.47903302,-0.014814609,-0.043765735,-0.13827333,0.004481218,0.5528807,0.3024592,0.15188397,-0.021557245,-0.04384883,0.19127049,0.784886,0.00879513,0.19163999,0.059507173,-0.35406846,0.050788768,0.01787329,0.061903186,-0.09506244,-0.43977657,-0.07715939,-0.0025452205,0.13894044,0.54307884,0.16980603,0.072873436,-0.13483196,-0.31298622,0.17150934,0.17480102,0.027240217,-1.3327925,0.27528313,0.19706747,0.6961165,0.35892263,0.018112525,0.059015654,0.44435105,-0.2716156,0.18000673,0.32863656,-0.07216274,-0.37347776,0.58178186,-0.75205815,0.4574016,-0.054137528,0.015854787,0.07260574,-0.09273255,0.39949346,0.9707635,-0.10242113,0.113546506,-0.026928429,-0.26555464,-0.28306183,-0.24372871,0.121663556,-0.33300254,-0.47831056,0.65469396,0.26394886,0.29748037,-0.2099848,-0.025160346,0.11769529,-0.24923602,0.49439883,-0.047252093,0.27294984,-0.24008325,-0.39086494,-0.2827637,0.66496,-0.11213093,0.16807923,0.004948415,-0.23321564,0.18494119,-0.05342155,0.0145436805,0.09742792,-0.6171902,0.13266315,-0.3476608,-0.4404556,0.4718185,0.057120237,0.035488103,0.044221886,-0.017079541,-0.12038938,0.40045145,-0.002408266,0.7381457,0.2982938,-0.15674055,-0.1736343,0.23506513,0.0754736,-0.21105817,0.16013522,-0.08498049,0.34575775,-0.7596265,0.5302422,-0.120108165,-0.36486334,0.10058435,-0.09542123,0.068039134,0.31703192,-0.16429888,-0.16769016,-0.21109936,0.0801213,-0.3104609,-0.21624877,-0.16315879,0.014047341,0.14988308,-0.06545403,-0.054343067,-0.09734649,0.05292669,0.06908459,0.024195168,0.48520952,0.48308012,0.086356044,-0.584889,0.029343333,0.26484558,0.2899908,0.0610012,0.114596225,-0.22213843,-0.51803935,-0.54196936,0.1744674,-0.23519866,0.10466645,0.16989605,-0.29918522,0.77565783,0.16403557,1.3779503,0.06113266,-0.19026725,0.13201165,0.45675734,-0.043490905,-0.07815234,-0.30700752,1.0745353,0.81518525,0.029354155,-0.024215952,-0.38684025,-0.3263891,0.42331368,-0.3447755,-0.09014351,0.041334,-0.7107849,-0.4449361,0.11105204,0.2083194,-0.0797173,-0.105711274,-0.0039264983,0.21784763,0.094177626,0.099372625,-0.5879959,-0.15883295,0.3635082,0.27892473,-0.029580373,0.07592438,-0.6406604,0.41865745,-0.6451885,0.1312634,-0.5109071,0.02935536,0.15230274,-0.3637397,0.13180563,0.1898381,0.24548905,-0.43677145,-0.36301285,-0.13652204,0.5417697,0.089811556,0.1366496,0.52852803,-0.2782721,0.22546484,-0.04351587,0.3000365,1.1865445,-0.2852826,-0.106294595,0.20471916,-0.4167802,-0.7035799,0.011077725,-0.4858108,0.12776825,-0.29839823,-0.34825644,-0.6803444,0.33471245,0.20847437,-0.08192843,-0.16121064,-0.5255075,-0.15396199,0.06911918,-0.45544162,-0.1966466,-0.2742914,-0.021411743,0.46250102,-0.3119497,-0.35314628,0.053351197,0.33792195,-0.32689255,-0.55728537,0.00056448154,-0.25367406,0.24594514,0.07544528,-0.3828766,-0.09443997,0.0202943,-0.4572311,0.038684748,0.27968475,-0.36682,-0.07816677,-0.3289342,0.051636543,0.78117436,-0.061844796,-0.19947971,-0.7193122,-0.52056813,-0.8210801,-0.6417465,0.18814524,0.31734085,0.07751464,-0.8834397,0.05712113,-0.2202915,0.11935617,0.016614288,-0.42247227,0.26178727,0.1393128,0.24510847,-0.3118629,-0.91264516,0.22409916,0.14142667,-0.033059683,-0.5676955,0.46831983,-0.11359661,0.87103766,0.106252536,-0.11919908,0.26153946,-0.7778427,0.2571786,-0.18330076,-0.07374484,-0.7378065,0.14811526 -637,0.19323502,-0.123686545,-0.2286608,-0.27925926,-0.17837124,0.11646271,-0.22519514,0.32809886,0.06934201,-0.31667683,-0.23566723,-0.17962353,0.051911227,0.40987685,-0.16138795,-0.6859582,-0.12275929,0.009111574,-0.59148186,0.56145513,-0.6120454,0.26530334,0.25316286,0.32101005,-0.12864171,0.26707786,0.4321147,-0.2297242,0.060587514,-0.26888365,-0.14676175,0.31662807,-0.4993485,0.15474162,-0.08616928,-0.17363246,0.21309869,-0.24377067,-0.18556271,-0.7448522,0.17046191,-0.8978334,0.37252426,-0.07969362,-0.09666431,0.15665805,0.20938969,0.28707623,-0.16244774,-0.067890905,0.17482077,-0.1301219,-0.118909545,-0.29664162,0.096591674,-0.3844926,-0.4582529,-0.100652054,-0.51743925,-0.5041432,-0.124519415,0.19868548,-0.32882595,-0.08048173,-0.2360198,0.43258986,-0.4315125,-0.10287327,0.3133605,-0.2766095,0.56825405,-0.5427552,0.056266427,-0.01950129,0.40636688,-0.007984928,-0.07664146,0.3148835,0.4324228,0.34752983,0.14416148,-0.26069647,-0.124994114,-0.34869224,0.24851401,0.42160964,-0.10292781,-0.4221191,-0.08626696,0.03351164,0.021459648,0.3214805,0.041792784,-0.30666956,-0.10063819,0.013871344,-0.25533393,0.46483138,0.3986917,-0.18798815,-0.43354076,0.21060152,0.68437,0.26520684,-0.2582634,-0.028658288,0.018373387,-0.43730518,-0.12558457,0.26101497,-0.14537227,0.5875603,-0.24379878,0.16444787,0.8289819,-0.088160686,0.11359911,-0.11417898,-0.04156701,-0.16696048,-0.18745139,-0.20477043,0.14723895,-0.6473509,0.022376146,-0.41130647,0.7795764,0.02508224,-0.6970725,0.40664193,-0.6499957,0.13091604,-0.109749384,0.62649155,0.39577124,0.18632582,0.25011167,0.6202918,-0.38776484,0.04610048,-0.04583233,-0.46326256,0.11864465,-0.2904859,0.11569209,-0.46752003,0.06648542,-0.08146213,0.23820259,-0.17876224,0.15494551,-0.61986244,0.070191756,0.17039254,0.7139211,-0.3532433,-0.0016290204,0.48837158,1.0768213,0.9763454,0.010496163,1.4275277,0.26819882,-0.23241913,0.15276524,-0.28187063,-0.5569825,0.2116266,0.5455678,0.19924426,0.2074416,-0.24682042,-0.0097854985,0.2859058,-0.5087957,0.10593841,-0.075420536,0.30182055,0.14387985,-0.16997239,-0.5142729,-0.09396988,0.0981282,-0.08153697,0.13956258,0.047069293,-0.051096804,0.35694548,0.05149903,1.0312712,-0.15482831,0.18520682,0.08812834,0.40849087,0.18359163,0.08436204,0.060130317,0.3961385,0.3747015,0.10789547,-0.6778752,0.36278725,-0.28858116,-0.4229181,-0.043401856,-0.39801124,-0.07839769,0.017703585,-0.39433017,-0.08437103,0.05479472,-0.2118314,0.3665546,-2.8427846,-0.2586896,-0.14298713,0.21397908,-0.35852814,-0.09977029,-0.0023243895,-0.5003045,0.40862444,0.2918713,0.41676435,-0.5952973,0.42579293,0.44073194,-0.44269896,-0.058114547,-0.6681269,-0.14496568,-0.10291598,0.56512463,0.2587139,-0.006155058,-0.17917016,0.38375473,0.5706619,0.023696551,0.07246513,0.384492,0.14660151,0.20780306,0.46463236,0.038919635,0.485355,-0.116331026,-0.09785952,0.33691767,-0.15930244,0.1930369,-0.24348548,0.103840426,0.43190095,-0.2741421,-0.78265375,-0.7264348,-0.71368927,1.143664,-0.36740676,-0.3622132,0.30203137,0.11537913,-0.0907377,0.063350014,0.35741955,-0.20848133,0.18819277,-0.60545915,0.123721376,-0.0041533113,0.16446124,0.08697748,0.027738107,-0.4511042,0.6407,-0.0039058242,0.3557548,0.2502654,0.23329099,-0.22385897,-0.3912582,-0.013398296,0.7760215,0.34037322,-0.23085557,-0.20514794,-0.338793,-0.17370966,-0.090986975,0.013837313,0.52751094,0.89803857,-0.00043687224,0.02869695,0.16176932,-0.09799044,0.10100299,-0.19351673,-0.3930284,0.06904126,-0.024223695,0.54295766,0.4127972,-0.05736364,0.30991262,-0.21701162,0.44281083,-0.10589518,-0.46098828,0.5346909,0.8003121,-0.080171004,0.040757325,0.46764913,0.5242225,-0.44788232,0.44658586,-0.57135886,-0.13314734,0.7368898,-0.23280764,-0.5213245,0.17984764,-0.20640646,0.17874397,-0.95417774,0.36207843,-0.44719562,-0.43694106,-0.4780569,-0.0685585,-3.1186435,0.124615274,-0.07034808,-0.086814746,-0.29971555,-0.018416582,0.37766957,-0.56455606,-0.5710694,0.13351102,0.13820602,0.53949034,-0.074221514,0.05602128,-0.2513599,0.011741204,-0.047979772,0.31437916,0.031278424,0.1124451,-0.17329285,-0.41270018,0.0765465,-0.21453944,-0.5904339,0.25560686,-0.49272984,-0.60843945,-0.09215288,-0.3343038,-0.17820229,0.6479349,-0.40332556,0.047457043,-0.16101494,0.17888236,-0.24079697,0.22360468,0.12592039,0.26564115,0.14605148,-0.023714123,-0.049611624,-0.33036533,0.39992926,0.078418985,0.26982194,0.1503695,0.00629332,0.14912975,0.5350377,0.4560282,-0.07246011,0.8772148,0.34058616,0.0262955,0.2500922,-0.36011967,-0.31300002,-0.4965833,-0.31034797,-0.10870682,-0.30729127,-0.49612173,-0.008507048,-0.17975284,-0.50822395,0.5888958,-0.0035520536,0.27461478,-0.06451209,0.19318299,0.27585214,-0.20013376,0.12678528,-0.07615774,-0.19900349,-0.5139386,-0.2199049,-0.6316088,-0.44389492,-0.14224532,0.65069443,-0.31294283,-0.012962474,-0.15469337,-0.2664608,0.061928235,0.04853412,0.010107151,0.2297525,0.35945457,0.08797486,-0.76848495,0.42706066,0.09746518,-0.084255084,-0.43596894,0.06528225,0.72958744,-0.634952,0.42110926,0.27724054,-0.04140995,-0.19898823,-0.43187088,-0.20069835,0.07112371,-0.36254016,0.4784433,-0.041193668,-0.6668864,0.43319866,0.34125826,-0.34679273,-0.66205645,0.3291622,-0.0494711,-0.23734331,0.029079003,0.3335155,0.05830284,0.024893597,-0.19902919,0.23694147,-0.57062167,0.11528448,0.31996465,0.11724416,0.46344075,-0.11147077,-0.18208502,-0.6704735,-0.11512052,-0.50777537,-0.28375822,0.23075171,-0.041273497,-0.21752729,0.24567983,0.1347449,0.38460636,-0.11267344,0.15895341,0.09240457,-0.37245464,0.28629765,0.44192764,0.18803477,-0.25804383,0.51343447,0.1457126,-0.15401642,-0.18178797,0.012695296,0.43736354,0.09745364,0.33655486,-0.1352229,-0.15310839,0.57665044,0.67246014,0.14797807,0.56390476,-0.0028582898,-0.060779102,0.45132536,-0.10051139,0.14463606,0.096893415,-0.38258985,-0.03181231,-0.049543507,0.06512682,0.5382705,0.17191958,0.28969648,0.24873097,-0.24333845,0.0020044872,0.32453638,-0.017227096,-0.93908745,0.42171887,0.3594934,0.8366996,0.5135245,0.050011665,-0.054294936,0.6320144,-0.33419013,0.05375057,0.47928166,0.096731886,-0.5947431,0.7525304,-0.62404525,0.11185288,-0.15266559,-0.1188512,0.021531224,0.05691146,0.32491383,0.8030842,-0.18496957,0.038420927,-0.1865048,-0.15642455,0.18951361,-0.3043287,0.14325044,-0.150822,-0.33855024,0.4119408,0.38837078,0.3057526,-0.14845982,0.0450167,0.27773854,-0.05993373,0.41273448,-0.02960913,-0.08799703,-0.052106876,-0.4637147,-0.2758213,0.48996645,0.087108985,0.2104082,-0.20969306,-0.19218199,0.03606834,-0.21905264,0.012634978,-0.059902925,-0.63090694,0.042705644,-0.06646357,-0.43137375,0.52296925,-0.5181088,0.16262518,0.15028128,0.032477897,-0.11890894,-0.13834369,0.08276487,0.5821281,0.15378337,-0.2589307,-0.21929455,-0.066187166,0.085754864,-0.25728768,-0.045356028,-0.24394308,0.019229207,-0.49614754,0.52806777,-0.14327502,-0.40035865,0.10811478,-0.2983146,-0.16644144,0.4572367,-0.104924485,-0.11165745,-0.12892124,-0.21023051,-0.28051254,0.09069016,-0.2021947,0.18374474,0.29912433,-0.013759621,-0.20862247,-0.15779565,-0.22437762,0.5294855,0.15565953,0.39721218,0.23030742,-0.20927797,-0.2638382,-0.041964274,0.115860835,0.3034845,0.20562282,0.115068875,-0.20362213,-0.26995772,-0.22124465,0.21198736,-0.06505295,0.27587444,-0.06445487,-0.39209822,0.8249401,0.10448714,1.2091011,0.065372184,-0.22594514,0.06373983,0.44736332,-0.13274972,0.08473646,-0.5290612,0.7065856,0.49946374,-0.15788046,-0.10221451,-0.35051605,0.088682346,0.254232,-0.21955578,-0.029081108,-0.13322257,-0.6563758,-0.4064677,0.1859359,0.29180977,0.0052255476,0.09576794,-0.18589494,-0.006052392,0.003229452,0.71484643,-0.542147,-0.067938276,0.17603593,0.07005449,0.014200389,0.07062406,-0.27200338,0.5048995,-0.7317336,0.21393807,-0.41341305,0.0023603847,-0.20963381,-0.24391784,0.10517795,-0.19354393,0.1823188,-0.13400099,-0.55708796,0.077604294,0.38798183,0.104184985,0.1240463,0.62936336,-0.24267569,0.22752817,0.13861932,0.48450875,1.237012,-0.29763767,0.014396901,0.1634909,-0.4810458,-0.58020455,0.3488509,-0.2855997,0.04398546,-0.0484299,-0.45111126,-0.47820207,0.19287561,0.3225045,0.011273972,0.093767345,-0.34074703,-0.24706472,0.39892802,-0.3525608,-0.2738654,-0.22606172,0.27806517,0.5772602,-0.35386533,-0.2467767,-0.11095585,0.2462523,-0.51293296,-0.5368676,-0.10417043,-0.15468816,0.37337723,0.05713331,-0.4437177,0.102103524,0.22944799,-0.44734573,0.1629698,0.24838166,-0.30381265,0.02011085,-0.12932779,0.049514316,0.71768725,-0.2856756,-0.3249211,-0.7182471,-0.42467928,-0.82179374,-0.44164735,0.4610343,0.1080451,-0.015534461,-0.44798446,0.12248761,-0.11969695,-0.022827098,0.18399355,-0.32782164,0.30859396,0.14019188,0.57540816,-0.21446736,-0.75839275,0.20802593,0.08489396,0.082582235,-0.5870675,0.7350821,-0.11399514,0.5464552,-0.03694478,-0.04216543,-0.008051777,-0.34018895,0.21030354,-0.24498521,-0.18679786,-0.73932403,0.18231918 -638,0.4313021,-0.12509766,-0.7152816,-0.32557887,-0.2692287,-0.007843971,-0.26436204,0.21580474,0.3738079,-0.607795,0.09315359,-0.35395476,0.14074752,0.21002755,-0.12983043,-0.6699002,-0.08274149,0.35385624,-0.46830565,0.6009122,-0.38867694,0.21783914,0.38300896,0.17282706,-0.01887835,0.15056394,0.25577927,-0.2621671,-0.12541892,0.0007766256,-0.008862798,-0.024690736,-0.7529221,0.15953325,-0.07552502,-0.3805385,0.12485213,-0.38306558,-0.06562774,-0.7886764,0.3505109,-0.92098516,0.5791863,0.10409783,-0.29151127,0.30685946,0.15619186,0.15277773,-0.18255037,0.058539774,0.100503646,-0.4362141,-0.46141323,-0.043686848,-0.34909594,-0.55106854,-0.7024159,-0.03844293,-0.67046386,-0.16128509,-0.40950897,0.077932715,-0.40476874,0.085182786,-0.22372419,0.5024558,-0.3700678,-0.13299721,0.12659043,-0.18469453,0.36390767,-0.44003758,-0.03947741,-0.12154048,0.11619821,-0.1222513,-0.26660225,0.2145657,0.22720554,0.7203026,0.034569208,-0.36568782,-0.25549972,0.013397061,0.020825468,0.46244815,-0.19978856,-0.36246797,-0.27797726,-0.13405496,0.33503228,0.27174535,-0.07479449,-0.4260146,0.06669639,-0.004176892,-0.386065,0.4240628,0.5099255,-0.40192115,-0.048369877,0.4592627,0.31402192,-0.049834747,-0.19451982,0.11074053,-0.06304164,-0.5884093,-0.24702424,0.32700223,-0.13853289,0.4856413,-0.15065497,0.07883909,0.55197626,-0.1534182,-0.14321329,-0.1589943,-0.05732115,-0.08120648,-0.1774979,-0.1983069,0.42334253,-0.57322395,-0.013445341,-0.5437089,0.83785224,0.037278034,-0.937262,0.40920117,-0.60675687,0.27628434,-0.23759207,0.75906914,0.87753236,0.68546236,0.30480972,0.7653195,-0.57659245,0.12486528,-0.0975783,-0.4459548,0.2129275,-0.016090969,0.39627632,-0.47898534,-0.036757775,0.12373231,-0.09225412,-0.080953486,0.7975765,-0.2660445,-0.22306967,0.1289772,0.67924076,-0.3794604,-0.06521057,0.6163402,1.1059222,0.83511645,0.22587942,1.2955581,0.4208355,-0.23463695,0.22767578,-0.04546942,-1.0078088,0.2503208,0.45439273,0.6648179,0.18454853,0.12428911,-0.035428885,0.33736846,-0.31623378,-0.18476343,-0.11317711,0.3162029,-0.23664662,-0.20826973,-0.2609803,-0.20195685,0.25035593,0.13852337,0.03470792,0.33149847,-0.098924845,0.40754658,0.25418842,1.5846204,-0.093884654,-0.028324114,0.08277381,0.4726662,0.22674522,0.035815142,-0.14509927,0.4537393,0.44530246,0.028036915,-0.62634206,0.1033493,-0.1871898,-0.53108937,-0.20641114,-0.36512756,0.096971676,-0.20201299,-0.305893,-0.21441285,0.045298513,-0.64839333,0.21895379,-2.3924558,-0.1431406,-0.098422095,0.33619103,-0.111195326,-0.26887318,-0.16078107,-0.47182938,0.65844417,0.45278135,0.44103515,-0.623536,0.41885343,0.5192037,-0.4420428,-0.030817417,-0.8906575,-0.06731525,-0.41588715,0.33302644,-0.0030973554,-0.3228567,0.037033174,0.23500326,0.576022,0.09512082,0.15300785,0.48256576,0.5578195,0.10075155,0.6945331,-0.054445975,0.49204466,-0.28343847,-0.18577561,0.23591766,-0.30930886,-0.11123017,-0.20671764,0.20288683,0.32664028,-0.67814773,-0.8849949,-0.5769122,-0.1782838,1.1123288,-0.5659705,-0.6047706,0.32306415,-0.11572051,-0.008618408,0.06840924,0.53938603,-0.2898493,0.08459385,-0.791069,-0.009916053,0.01633195,0.30650598,-0.0039634383,0.17929728,-0.44960758,0.7149743,-0.0817761,0.6685735,0.3861049,0.09776212,-0.25905448,-0.5246324,0.2652327,0.86731637,0.084311195,0.09359221,-0.20350266,-0.05204869,-0.13746372,-0.120463334,0.102600545,0.40112466,0.94492346,-0.15580732,0.026838215,0.39680102,-0.2921072,-0.08876486,-0.10052003,-0.5311468,-0.1737442,-0.11357495,0.46178278,0.5481098,-0.071030706,0.27679804,-0.12980433,0.37072837,-0.169582,-0.48163238,0.637202,0.89002573,-0.2115372,-0.12446086,0.62911254,0.5267168,-0.36775786,0.6326068,-0.6316521,-0.4612307,0.5259823,0.009373195,-0.44193026,0.24652703,-0.48125786,0.14728887,-1.0032088,0.21831734,-0.17006578,-0.39552307,-0.4083683,-0.050164003,-3.637943,0.13417952,-0.17500646,-0.080458276,-0.17077373,-0.052618794,0.34048957,-0.3455692,-0.6520511,0.09348032,0.19646396,0.5041399,0.032285713,0.08258099,-0.42050415,-0.22321104,-0.396668,0.14593242,0.064796455,0.18064506,-0.050342355,-0.5135674,0.01644836,-0.3096929,-0.29915702,-0.007059536,-0.47318867,-0.2460493,-0.18461224,-0.62788934,-0.61521935,0.61474115,-0.35691622,-0.00875747,-0.27002943,-0.07425548,-0.0017841321,0.29818386,-0.19379684,0.16040543,-0.13385546,-0.08740895,-0.07347127,-0.3100707,0.09124953,0.05270074,0.13391788,0.3368836,-0.19679922,0.008956511,0.5764241,0.5676378,-0.0043433583,1.0289147,0.50609183,-0.0034721494,0.2805122,-0.34685865,-0.026982533,-0.75925297,-0.14821133,-0.35413963,-0.5384009,-0.31549752,0.048003417,-0.39878094,-0.8584438,0.64325917,0.19722222,-0.006862292,0.12875077,0.43216074,0.3978997,-0.011089847,-0.019388732,-0.19974071,-0.3089916,-0.5445142,-0.28010654,-0.9231585,-0.4732645,0.041885618,0.9021815,-0.097826175,-0.18679713,-0.008939415,0.0074175275,0.10836604,0.23994154,0.07375324,0.42917892,0.4808313,0.058432616,-0.78319126,0.55250835,-0.014284534,0.10732897,-0.729539,0.16542175,0.58174074,-0.84838575,0.36435983,0.597838,0.15319279,0.039493177,-0.52181816,-0.2384052,0.0429702,-0.2284108,0.36214012,0.07543047,-1.0628862,0.76119554,0.23267832,-0.10163911,-0.93938696,0.43358234,0.046063423,-0.32898954,-0.028194804,0.3758021,-0.011175672,0.05900624,-0.3880009,0.077134095,-0.5688808,0.2427931,0.16309403,-0.033101182,0.5213544,0.057588294,-0.13763905,-0.79400957,-0.08589983,-0.61464363,-0.166291,0.2565983,-0.034702335,0.18369746,0.22746508,-0.10339642,0.5433152,-0.23203328,0.103606865,-0.19500819,-0.33108348,0.5253123,0.50138277,0.2535641,-0.47539315,0.7582604,-0.21253827,-0.11943478,-0.3761407,-0.087909,0.32065165,0.22073537,0.39022696,0.08277939,-0.32442582,0.33844596,0.8969934,0.15450987,0.3514066,0.27106944,-0.10995258,0.67815787,0.19402178,0.06321892,-0.20843203,-0.47715285,-0.18930453,-0.06126391,0.11049709,0.5142477,0.102344275,0.54948574,-0.16624786,0.10877897,0.049082413,0.12734975,0.013988804,-0.762903,0.39345437,0.22641958,0.48884642,0.86800313,-0.08634568,0.19725229,0.51387656,-0.4514052,0.16946298,0.26916996,-0.028805178,-0.3096075,0.5525716,-0.60963607,0.29621264,-0.18239261,0.0369854,0.17112319,0.1209699,0.41600865,1.0673716,-0.0021834213,0.16877426,-0.18972905,-0.13552088,0.37511408,-0.32839602,-0.16892594,-0.47139156,-0.37287888,0.63113964,0.19857931,0.41626537,-0.20709005,-0.100042105,0.18235916,-0.2663535,0.24661809,0.05788426,-0.20819698,0.084241405,-0.6267649,-0.2863231,0.7321408,0.34436518,-0.05192962,0.14584097,-0.37997204,0.3329046,-0.22478381,-0.2943215,-0.17469852,-0.67594534,-0.0059760353,-0.24319139,-0.3224047,0.7921565,-0.17757037,0.30322272,0.093927555,0.097032025,-0.2599173,-0.018495973,0.33352408,0.5569386,0.08968247,-0.3512328,-0.12408042,-0.26727587,0.25756186,-0.380379,-0.25772542,-0.1830225,0.034817137,-0.7324231,0.43904936,-0.27507624,-0.40730497,0.3556492,-0.21393402,-0.012182227,0.5081764,-0.2926567,-0.14060959,0.12437368,0.13462637,-0.14435244,-0.30980727,-0.33402282,0.21322486,-0.22861616,-0.013891106,-0.08096575,0.013690389,0.0573388,0.56450105,-0.051803496,0.1137542,0.2303097,0.41469222,-0.43090802,0.08659278,0.26925585,0.49789158,-0.0537984,-0.07476608,-0.22199184,-0.20169847,-0.26558486,-0.023359913,-0.14543563,0.24894145,0.19103715,-0.5839476,0.92837185,0.061152484,0.9828231,-0.04638385,-0.45318446,-0.031000074,0.54959387,0.06625741,-0.0012095983,-0.26905125,0.88201684,0.6266688,-0.07010338,-0.2600505,-0.5738302,-0.15094472,0.30779478,-0.14127217,-0.21295525,-0.10200735,-0.7762903,-0.39218587,0.3326076,0.3192492,0.18534933,-0.1158086,0.21089035,0.033369854,0.280857,0.35054857,-0.5719902,0.049275894,0.23801419,0.2564053,0.1409747,0.24989107,-0.26711038,0.20963313,-0.65919393,0.12947376,-0.4169674,-0.08252375,0.06891528,-0.26281908,0.19500226,0.10715044,0.32241532,-0.14901242,-0.3513263,-0.107150026,0.62664324,0.26043084,0.37500143,0.92116,-0.25349888,0.17783517,-0.0033287178,0.701758,1.3680637,-0.04583548,-0.03077242,0.32680827,-0.35201553,-0.7019319,0.22545487,-0.23052558,0.13968614,0.18016472,-0.3929025,-0.46422324,0.14044823,0.12819044,-0.34155238,0.17959124,-0.5954848,-0.3089903,0.33658203,-0.13479388,-0.27948615,-0.25012964,0.13738158,0.8747524,-0.3918204,-0.070013955,-0.041492168,0.21613446,-0.18916433,-0.62496245,0.05035249,-0.5492179,0.44465843,0.24339822,-0.4267085,0.21872486,0.17394818,-0.68097425,0.11402105,0.3438164,-0.32170025,-0.029821247,-0.4052744,-0.041913364,0.9408424,0.032967027,0.13776347,-0.4950115,-0.67221165,-0.95208,-0.15718223,0.428051,0.007233629,0.049055286,-0.42888933,-0.06041514,-0.14263679,-0.1765725,0.060984556,-0.5697299,0.34442037,0.048296772,0.5041993,-0.014469917,-0.855713,0.12342826,0.00067864475,-0.24044919,-0.48591056,0.58328605,-0.1229872,0.9369246,0.059322797,-0.001486604,0.3176241,-0.7554686,0.13608116,-0.3453954,-0.10969113,-0.68560517,0.009049745 -639,0.53805304,-0.20323324,-0.6133332,-0.17397325,-0.10878301,-0.45849574,-0.14724192,0.36986178,0.28224406,-0.12305047,-0.24107747,-0.14721394,0.23920894,0.60035855,0.04400195,-1.1360235,-0.07985167,0.25979936,-0.75681,0.497264,-0.5604302,0.3326056,0.026201904,0.5669935,0.024808418,0.28669927,0.41533387,-0.12606274,0.15526068,0.0056484803,0.059471823,0.21414696,-0.92432517,-0.13584062,-0.104160115,-0.50105363,0.047239315,-0.3873085,-0.21869522,-0.81260735,0.33446538,-0.92182595,0.6254952,0.25164336,-0.19447304,-0.2338257,0.02538123,0.45521966,-0.4770422,0.12032668,0.19532134,-0.24361238,-0.10252297,-0.40848646,0.08560846,-0.2553387,-0.53924716,-0.029521532,-0.5532308,-0.43528292,-0.3007411,0.021143332,-0.4398135,-0.082484476,-0.1918971,0.4723405,-0.38737383,-0.36664736,0.5827711,-0.21444917,0.46384266,-0.51776487,0.009006912,-0.21404225,0.50040084,-0.2222949,-0.4056628,0.49792245,0.2317881,0.5083582,0.18901554,-0.4749808,-0.21220088,-0.120007254,-0.037287917,0.57035345,-0.31748188,-0.5695747,-0.09237253,0.1888012,0.32226777,0.3719675,0.097320706,-0.14631598,-0.07049421,-0.08228536,-0.019358808,0.6429401,0.67715263,-0.08153307,-0.5184361,0.14319767,0.4883975,0.19196701,-0.021088133,-0.03971936,-0.0073008793,-0.7284056,-0.32458007,0.10932979,-0.10274989,0.712111,-0.023804458,0.039038256,1.0491284,-0.24419442,-0.045372453,-0.16014074,-0.099704266,-0.0069469404,-0.3799511,-0.3820382,0.49542284,-0.55574995,0.13620363,-0.40113774,0.8488634,0.27418628,-0.80967623,0.41675946,-0.65594876,0.29328415,-0.12400909,0.8770012,0.87903345,0.4432999,0.75463,0.6868446,-0.3347449,0.39601573,0.41038772,-0.57943803,0.09015741,-0.26043227,0.10461699,-0.50269693,-0.02614441,-0.2296372,-0.12670326,0.36836138,0.32681367,-0.6354348,-0.07227366,0.30903298,0.6963834,-0.32149446,-0.0017245357,0.66256434,1.1985174,1.1654624,0.088235945,1.227286,0.4203908,-0.34480417,0.37577343,-0.33247635,-0.9030144,0.19914512,0.43593124,-0.019488357,0.5755271,-0.13614349,-0.16469756,0.43797234,-0.70323735,-0.084035255,-0.0018791611,0.35838264,-0.08973783,-0.32667488,-0.77717173,-0.17537202,-0.2239235,-0.27123883,-0.13638355,0.3236509,-0.19028373,0.41393492,-0.3850668,1.1886641,0.088616565,-0.06531483,-0.13954656,0.7597008,0.24241948,-0.19448987,-0.0461408,0.36151475,0.5750464,-0.029079385,-0.67242354,0.2560332,-0.4909593,-0.30693075,-0.18817239,-0.34980944,0.27793914,0.14036499,-0.3134118,-0.15106812,-0.040784385,0.046372246,0.37540257,-2.4837494,-0.33821613,0.025130343,0.41608608,-0.22796687,-0.034367457,0.040443335,-0.5236463,0.33748025,0.2280218,0.7199106,-0.7590582,0.46351758,0.4289748,-0.6239989,-0.011569809,-1.0329808,-0.114971586,-0.13341479,0.42832664,-0.0879905,-0.1703552,-0.019235404,0.3073204,0.7527244,0.03653669,-0.049273897,0.48146877,0.3735428,0.1671295,0.48498344,0.04835378,0.67134476,-0.39017087,-0.2717653,0.16763838,-0.1931215,0.2755191,-0.13838626,0.012814245,0.5740839,-0.5126345,-1.2214651,-0.41216803,-0.2105957,0.70888346,-0.41424197,-0.5039738,0.44485247,-0.136025,0.14572288,0.044602633,0.6465459,-0.17144454,0.0031048087,-0.72011197,0.0022143775,-0.034225456,0.2222649,0.17667995,-0.102915674,-0.45119628,0.45889524,-0.18118037,0.34781405,0.36182648,0.36421645,-0.31894076,-0.6535625,0.24383388,0.65945584,0.17346276,-0.04602324,-0.26088223,-0.4280206,-0.072209015,-0.21228296,0.063591726,0.6542086,1.265912,-0.30014428,0.061194908,0.46213457,-0.021934452,0.07028832,-0.1344712,-0.33203748,-0.1856768,-0.0026564517,0.5589673,0.9575052,-0.31564435,0.45624036,-0.1503172,0.3485101,0.25226167,-0.52668786,0.7816039,0.9259411,-0.01151264,0.07293777,0.5846763,0.30089763,-0.5986479,0.6462501,-0.6735241,0.087734945,0.74032503,-0.10137153,-0.27372253,0.3350004,-0.2981477,0.22851251,-1.3288633,0.524564,-0.30028132,-0.36747277,-0.7530032,-0.047488634,-3.9845116,0.27992222,-0.47868755,-0.013645958,-0.2734683,-0.015250092,0.310748,-0.9016655,-0.55383795,0.34232682,0.2719877,0.6820433,-0.052078295,0.07468524,-0.25006604,-0.2663223,-0.2027012,0.1748148,0.4421691,0.3686085,0.08472842,-0.32225946,0.09420566,0.09838598,-0.58524287,0.12972783,-0.68063843,-0.43985423,-0.21210599,-0.92019576,-0.4640847,0.68135977,-0.19013812,-0.06980016,-0.24858595,0.12664522,-0.16359144,0.2343782,0.1272498,0.3846945,0.116235845,0.016141826,0.27726945,-0.21290702,0.27050683,-0.042887226,0.47244826,-0.41016868,-0.25152805,0.168439,0.58171034,0.74165,-0.04634433,0.84793097,0.89758116,-0.0888024,0.15587112,-0.5117737,-0.24461669,-0.75660044,-0.6595747,-0.15507892,-0.39852953,-0.6446691,0.17723137,-0.36723897,-0.9084415,0.6715977,-0.27430028,0.4056138,0.17518313,0.39879486,0.49901035,-0.17869297,-0.031346764,-0.034251712,-0.15549289,-0.64531255,0.106597416,-0.73131555,-0.64744514,0.047511686,0.7025923,-0.37755013,0.07119717,-0.11517323,-0.30620745,0.17074287,0.11214077,-0.0054561873,0.41317508,0.44675577,0.021531366,-0.57557297,0.39017603,-0.02136374,-0.20937887,-0.6873075,0.22036114,0.59360504,-0.8400564,0.8727116,0.35920122,-0.06726683,0.06652333,-0.72809047,-0.45067823,0.3079706,0.085143454,0.3782585,0.06270218,-0.78157496,0.5531818,0.49066123,-0.76828235,-0.76387256,0.29847428,-0.10715909,-0.5413489,-0.01565186,0.20713948,-0.09948251,-0.042938806,-0.5591001,0.4050165,-0.39213368,0.11111215,0.15298599,-0.12174973,0.38941514,-0.06462968,-0.35548744,-0.8304556,0.37258938,-0.7048134,-0.10798344,0.44469088,-0.030141538,0.0057018427,-0.0027615374,0.3193543,0.38210887,-0.24773303,0.15052505,-0.021170443,-0.61425024,0.17679156,0.6277338,0.28153467,-0.4895593,0.61695886,0.16335559,-0.3725809,0.043549873,-0.008756334,0.5544706,-0.12048972,0.2353191,-0.10889284,-0.22891851,0.14563318,0.64460224,0.05518968,0.49006099,0.038169514,0.19616333,0.48395622,0.2394792,0.17405848,0.24638548,-0.2864916,0.0868282,0.17108168,0.26302674,0.6165505,0.39025345,0.23587547,-0.029341448,-0.39065713,0.0669033,0.42020446,0.013969848,-1.2374238,0.61391526,0.23924632,0.7795217,0.5855651,0.32966125,-0.27727792,0.7488889,-0.4140216,0.052816845,0.36971396,-0.047822107,-0.5809527,0.8012314,-0.61762345,0.46166083,-0.040621486,-0.105044514,0.07315908,0.18030308,0.3773414,0.69281715,-0.26281345,0.05962685,-0.117242076,-0.014956778,0.08465375,-0.4574304,-0.02107184,-0.3438958,-0.36582425,0.9122741,0.30033287,0.21735352,-0.020839868,-0.07102354,0.23770475,-0.27053565,0.4431081,-0.33068296,-0.07969911,0.34944448,-0.584282,-0.28950107,0.5385128,0.03195149,0.11038949,-0.38652232,-0.12575449,0.15648645,-0.20023917,-0.17071623,-0.004500675,-0.9354494,0.18064927,-0.44534734,-0.28043145,0.76993597,-0.27032974,0.24011822,0.2690601,0.13849694,-0.28717247,0.3849868,-0.08288726,0.8195583,0.043366745,-0.541706,-0.2989219,0.22732878,0.31488505,-0.31175607,0.31701264,-0.47807539,-0.06750048,-0.3786274,0.7518955,0.08701873,-0.43534514,-0.042390253,-0.22470564,-0.049575005,0.5143395,-0.2901804,0.08780221,0.19048695,-0.31989697,-0.39799264,-0.2834571,-0.28730524,0.34732324,0.35700348,0.026412953,-0.0980485,-0.1787309,-0.13027547,0.9816343,-0.072380714,0.53872985,0.24750684,0.20994264,-0.06566741,-0.058085226,0.29683754,0.43361986,0.15553512,-0.048156593,-0.6419134,-0.25221917,-0.19761428,-0.2354423,-0.22236696,0.34384874,-0.21697845,-0.22820307,0.91479546,0.20797895,1.351747,-0.12198344,-0.4418044,0.14778922,0.6875522,-0.22428204,0.0039984365,-0.5239021,1.1916112,0.55038047,-0.2738366,-0.099269725,-0.45771906,-0.19749618,0.27366838,-0.38767716,-0.21911444,-0.07309247,-0.53121996,-0.5263691,0.27105543,0.31669748,0.15719153,-0.09029856,0.18978786,-0.07790158,-0.028380187,0.2791076,-0.6506803,-0.23017521,0.11246116,0.24412332,0.06827115,0.20463477,-0.3333255,0.4388866,-0.6843495,0.33219627,-0.6251524,0.19192852,-0.013264352,-0.6231725,0.1320171,5.244667e-05,0.40255502,-0.33077326,-0.23333396,0.12152765,0.3213907,0.09893957,0.28473303,0.88189924,-0.40199268,0.11317585,0.1162757,0.5947292,1.4811879,-0.44241473,-0.15326972,0.2048381,-0.35668057,-0.5894423,0.45775744,-0.2391241,-0.09199974,-0.47693852,-0.49744728,-0.7922504,-0.050592676,0.028586805,-0.21714269,0.21593662,-0.61664313,-0.40083885,0.16126452,-0.3281059,-0.21663222,-0.30573443,0.6301576,0.8963177,-0.28864348,-0.45508072,0.18822242,0.0623204,-0.056462277,-0.48981592,-0.08818695,-0.26008078,0.3818905,0.11264808,-0.53758377,0.043036927,0.29253048,-0.47933042,0.16351794,0.21624951,-0.27609015,0.15768538,-0.1479171,-0.21709871,1.15357,-0.32632935,-0.13117205,-0.66357446,-0.48571768,-1.2560588,-0.53114915,0.6679727,0.120725326,0.029495122,-0.6509708,0.29411873,0.115146466,-0.12781118,0.014971271,-0.43582156,0.29752865,0.046703015,0.69465315,-0.38782266,-0.986655,0.1024893,0.15987973,-0.16586357,-0.91876674,0.6459201,0.14230949,0.98331606,-0.018204376,-0.046353135,0.11769698,-0.34598964,-0.0182231,-0.39949673,-0.21158189,-0.7068667,-0.17831683 -640,0.46990266,-0.24982783,-0.35446012,-0.124314435,-0.062383134,0.023174038,-0.04447324,0.78697556,0.30877072,-0.33955604,-0.30637276,-0.11766147,0.00092461245,0.29954085,-0.16125932,-0.3630196,-0.07887611,0.061648674,-0.22409551,0.55498195,-0.31416494,0.20769833,-0.11544895,0.3543732,0.35012913,0.2519847,0.054290447,-0.06670216,-0.07040247,-0.12893789,-0.17170206,0.03813958,-0.5204771,0.17421857,-0.22890517,-0.25772905,-0.080154546,-0.59675175,-0.45495135,-0.8172994,0.46408632,-0.9324313,0.47036836,0.0016214618,-0.22535434,0.255715,-0.018510956,0.1501515,-0.2728807,-0.19739595,0.12011675,-0.096029505,0.14369322,-0.06622874,-0.047308363,-0.2677419,-0.6272756,-0.034610607,-0.21135996,-0.1349375,-0.30506337,0.103858985,-0.44658607,-0.08784949,-0.1464872,0.4047198,-0.4673043,-0.04831448,0.18207878,-0.26377377,0.24664034,-0.6976694,-0.1810325,0.007481302,0.16192651,0.06857057,-0.07922169,0.43562728,0.039552134,0.38677123,0.05589542,-0.12969981,-0.34377015,0.08006997,0.05250111,0.5931255,-0.18898095,-0.7048601,-0.05266084,0.024531452,0.42199135,0.25012583,-0.0074907998,-0.12439291,-0.18473704,0.09010839,-0.12720586,0.38513356,0.70321643,-0.14837565,-0.3294801,0.36463034,0.5019162,0.24217921,-0.009484715,-0.043543104,0.041861676,-0.46047598,-0.13475032,0.15843436,-0.31465465,0.53895545,-0.11393755,0.27498895,0.6876881,-0.19742472,0.14849068,-0.06313976,0.052153323,-0.15077783,-0.38515738,-0.27288246,0.3042002,-0.30839396,0.3869565,-0.3032694,0.8777986,0.14335561,-0.7624724,0.4361054,-0.46130517,0.21059725,-0.05288942,0.62178683,0.6745114,0.42642885,0.4383761,0.88726074,-0.370882,0.052834567,-0.07904338,-0.33714822,0.019219521,-0.124893956,0.08227691,-0.33957255,0.07036069,0.2334815,-0.20568769,0.12227498,0.27712065,-0.5770516,-0.0598114,0.18991879,0.75566006,-0.28089792,0.10384205,0.869138,1.1057286,0.8892777,0.04476927,1.147697,0.18897794,-0.25731376,0.30195588,-0.29167712,-0.8383474,0.23916993,0.4223519,0.10885508,0.26418543,0.12781776,-0.15973642,0.31431058,-0.54632163,0.094856896,-0.19742005,0.22412325,0.071455605,-0.07639199,-0.55530864,-0.24416846,-0.12963447,0.025187029,0.074221484,0.22715849,-0.34818745,0.2736618,-0.011944057,1.6256815,-0.13492945,0.0264703,0.18139233,0.6928796,0.21622774,-0.1251125,0.057173967,0.32530868,0.4344095,-0.068555474,-0.5885951,0.11499706,-0.33817068,-0.5879524,-0.036520474,-0.35901797,-0.11043881,0.092864595,-0.2947449,-0.24738576,-0.19788319,-0.38276613,0.47621801,-2.701859,-0.12784961,-0.038388386,0.3686133,-0.3437203,-0.2855256,-0.058121763,-0.56798226,0.42291614,0.39408952,0.5520152,-0.80827993,0.1634722,0.51764876,-0.5901,-0.052314557,-0.6775181,0.074469976,-0.020820994,0.35185277,0.10018199,-0.037236597,0.13050953,0.035575476,0.65709156,0.41058975,0.118763834,0.33588374,0.3517533,-0.05215122,0.2849247,-0.21935037,0.4037429,-0.3087559,-0.024002176,0.34889814,-0.45797998,0.25177863,-0.27681363,0.20863888,0.40844086,-0.49046934,-0.68314993,-0.5735553,-0.25938797,1.2796909,-0.20434335,-0.6630647,0.33564642,-0.27706504,-0.08706416,-0.14697577,0.67409503,-0.25611016,-0.15087858,-0.6055976,-0.08570842,-0.25224814,0.06403558,-0.030685188,0.05531883,-0.3852401,0.87184554,-0.16022293,0.5173034,0.21436515,0.23020218,-0.2642493,-0.4812724,0.06299054,0.6590835,0.52364457,0.1387857,-0.13288394,-0.10559174,-0.18724772,-0.35234216,0.09754224,0.62311393,0.86559325,-0.067387305,-0.045760117,0.40754545,-0.058518514,-0.007769518,-0.021435391,-0.293325,-0.19891456,-0.08064061,0.58734,0.5533049,-0.3691109,0.23944257,-0.17246588,0.10977402,-0.17856114,-0.3289665,0.48684236,0.9630417,-0.23051564,-0.08175126,0.4559544,0.34558532,-0.25892255,0.32557008,-0.78881204,-0.23822452,0.45972124,-0.19247557,-0.5406761,0.11992042,-0.20088778,0.09251407,-0.817597,0.31317025,-0.19113328,-0.56156695,-0.5439096,-0.069225356,-2.780389,0.036075737,-0.28076866,-0.24486233,-0.23861864,-0.1979529,0.057889126,-0.5508424,-0.49166304,0.23690249,0.17387167,0.6071307,0.0057380972,0.12960541,-0.23444095,-0.10913718,-0.6349844,0.054151926,6.5946806e-05,0.49263498,-0.014832878,-0.30598342,-0.07554697,-0.0061346567,-0.6763417,0.08833803,-0.4794349,-0.3294748,-0.25347087,-0.54805154,-0.23389603,0.6242438,-0.27473363,0.022808006,-0.18066183,-0.08744461,-0.19129135,0.28314134,0.14630547,0.029618267,0.04478552,-0.09528187,0.23542903,-0.2952992,0.4298039,-0.0061366283,0.32407698,0.4053361,-0.31490642,0.13223848,0.50816447,0.587141,-0.17643033,0.8335037,0.45877072,-0.112776056,0.28866208,-0.2372124,-0.2019071,-0.48211467,-0.30280116,0.21385258,-0.3140085,-0.4793228,-0.22745368,-0.4499481,-0.8329604,0.30976772,0.007310087,0.6139379,0.07664617,0.057524674,0.6288634,-0.15297332,-0.010582392,0.054327708,-0.051303063,-0.64162314,-0.18124829,-0.65074956,-0.43716308,0.2088431,0.7935626,-0.11681052,-0.18455061,0.016099403,-0.3375674,0.021400185,-0.085983165,-0.11222721,-0.0606356,0.20210396,-0.14536698,-0.62826896,0.5214608,0.18341932,-0.18781835,-0.5476091,0.335487,0.4370545,-0.5343746,0.404514,0.16465694,0.02465587,-0.42490923,-0.58370155,-0.16219456,-0.199082,-0.07886529,0.31080276,0.09122084,-0.6172956,0.4311946,0.33923185,-0.22937004,-0.69491047,0.3344918,-0.10402502,-0.19708943,-0.12399681,0.19923027,0.15796845,-0.14895815,-0.14445823,0.26301187,-0.57408834,0.3859654,0.17591974,0.015870782,0.5477361,-0.1490783,-0.058169052,-0.7395954,0.022508917,-0.6655358,-0.09966187,0.3200836,0.1465958,0.034474973,-0.077726685,0.27405956,0.4053871,-0.37193215,0.11370708,0.019433083,-0.25510293,0.4914425,0.39450127,0.49066418,-0.46601766,0.59203714,0.081772715,-0.19743451,0.13234152,0.20008549,0.35880083,0.1376737,0.26816744,-0.04336464,-0.33810264,0.19253881,0.66313267,0.26694047,0.48503497,0.12500718,-0.15705715,0.35349515,0.068535,0.2928864,-0.056844182,-0.6580089,0.10207398,-0.29985005,0.04167301,0.52527195,0.2521566,0.24228397,-0.08647336,-0.23429474,-0.012340676,0.25494125,-0.19454327,-1.1511638,0.37835422,0.015964018,0.9173389,0.46890333,-0.21377341,0.023510002,0.7383263,0.048702937,0.24230601,0.37239754,0.059210174,-0.69389415,0.570055,-0.67528766,0.4796272,0.046300385,0.011094087,0.10033724,0.1638409,0.39400354,0.5333499,-0.20159322,-0.11392084,-0.084497415,-0.23318471,0.19025777,-0.40978178,0.2132521,-0.5816145,-0.30479443,0.44633335,0.44989422,0.3333903,-0.039525643,-0.039176844,-0.08794662,0.021757506,0.21552144,0.0028728002,0.053807326,-0.076498576,-0.7048158,-0.34145647,0.41485256,-0.058260642,0.15156633,-0.12951276,-0.20567916,0.21092139,-0.35060886,-0.12576768,-0.054271456,-0.7608543,0.14893042,-0.16635635,-0.38309574,0.3880346,-0.058519665,0.4401499,0.16028914,-0.05595753,-0.20565067,-0.08042513,0.2513308,0.86008394,-0.07886178,-0.27761075,-0.66713655,0.06980768,0.25060317,-0.32866722,-7.172273e-05,-0.0496975,-0.30246964,-0.45140296,0.42777875,-0.01662028,-0.20815776,0.2815661,-0.27765796,-0.013405858,0.72716177,-0.2260073,-0.13409042,-0.25987932,-0.20683455,-0.29335895,-0.15694486,-0.19496869,0.29678392,0.31576425,-0.057749506,-0.06389251,-0.20843734,-0.10217888,0.34631315,0.046141937,0.20248362,0.30629227,0.017663062,-0.32057503,-0.16137527,0.18306659,0.4345172,0.24198928,-0.13575846,-0.20326413,-0.5865011,-0.42515305,0.015294213,-0.08376021,0.39944845,0.16120216,-0.2737268,0.583932,0.065445796,1.0674922,0.17299975,-0.29836348,0.10616367,0.58064425,0.085680835,-0.0035015987,-0.29962704,0.8801107,0.60575175,-0.106739126,-0.03458617,-0.24019812,0.12572405,0.40699986,-0.20106696,-0.10738525,0.0501079,-0.6946522,-0.2426853,0.32248795,0.24274868,0.11464869,-0.044620506,-0.15339068,0.2472488,0.028404163,0.49848875,-0.27989742,-0.14273515,0.42567775,0.0032127316,0.20162226,0.059751272,-0.4533598,0.31098783,-0.5886562,0.2165667,-0.2779608,0.14225106,-0.32378754,-0.38341558,0.21586034,0.0117365215,0.5642483,-0.3682384,-0.5847045,-0.08008587,0.42905185,0.1938576,0.10801303,0.41553834,-0.25415552,-0.0099764,-0.0028742964,0.5736005,1.0404886,-0.16236559,0.13568519,0.38181144,-0.47649398,-0.76218975,0.4481489,-0.0860031,0.20042539,-0.017751263,-0.21965459,-0.563402,0.2083135,0.2581189,-0.17606892,0.066442244,-0.70824105,-0.41051027,0.18227635,-0.30368468,-0.1776843,-0.50007284,0.18338634,0.63272774,-0.39099935,-0.39355075,0.20741868,0.16803561,-0.12680301,-0.6165158,-0.00191084,-0.3013962,0.3229289,-0.07744757,-0.5037473,-0.1788844,0.108965725,-0.38337904,0.11605199,-0.104405716,-0.40458438,0.120844536,-0.33527163,0.10644878,0.9708027,-0.1844401,0.07147963,-0.7026506,-0.37524158,-0.9548334,-0.48266065,0.5035441,0.29243737,0.06799863,-0.635481,-0.029148601,-0.10029094,0.11180895,-0.26712105,-0.4373449,0.49629524,0.18115166,0.31987572,-0.13229749,-0.5624291,0.2318043,0.12537922,-0.034309644,-0.47110412,0.48528403,0.028208636,0.9658248,0.1597866,0.09285072,0.082129516,-0.6030016,-0.05462608,-0.14151002,-0.36524785,-0.66018355,0.34294584 -641,0.46734723,-0.24138418,-0.43293738,-0.12080859,-0.3088322,0.22234058,-0.26137644,0.2673916,0.03155188,-0.47594133,-0.04251384,-0.03183416,-0.042883594,0.35219702,-0.022334341,-0.64757645,0.020349273,0.079825394,-0.7375434,0.5383107,-0.64581925,0.42315334,0.120594166,0.29919997,-0.0091812415,0.4149777,0.4052692,0.038662765,0.09053396,-0.077535875,-0.34294847,0.045491226,-0.5569633,-0.056391858,-0.15920047,-0.33663923,-0.06764484,-0.38682318,-0.20085777,-0.7750154,0.29896098,-1.04404,0.6343688,-0.2291629,-0.23614372,0.037079614,0.30936363,0.26695698,-0.33302307,0.07889979,0.25601223,-0.26762,-0.1422859,-0.30312696,-0.14849617,-0.39687064,-0.5009162,-0.14824589,-0.62489146,-0.3804338,-0.19251013,0.16352841,-0.42528144,0.05568872,-0.21930183,0.34173664,-0.4621077,-0.09067772,0.2973188,-0.34998587,0.27243003,-0.7244153,0.038596023,-0.13148507,0.5145601,0.056335133,-0.08153764,0.39000633,0.4906659,0.52977556,0.251876,-0.377573,-0.117673144,-0.34301695,0.23371276,0.51775545,-0.12199427,-0.2554725,-0.25768852,0.03712846,0.35694885,0.41152814,0.061788075,-0.19998327,0.04542515,0.011963027,-0.13954505,0.5444377,0.47492138,-0.2729551,-0.36726937,0.23878029,0.687065,0.21591237,-0.27485442,0.088905685,-0.06752111,-0.5284446,-0.07875721,0.30285424,-0.09138465,0.4974451,-0.17295489,0.17233883,0.7934085,-0.14894535,0.039188642,-0.24142954,-0.170494,-0.07524608,-0.3328386,-0.10711879,0.19500007,-0.6310673,0.13293369,-0.34431463,0.5967464,0.21973245,-0.6736991,0.5610789,-0.46610993,0.17057954,0.08895503,0.65517265,0.6611473,0.36920124,0.07469184,1.019281,-0.26219696,0.060413655,-0.06054135,-0.2952931,-0.20875044,-0.19158903,0.3322716,-0.42109326,0.46935254,-0.10502998,0.28957245,0.03112655,0.59845406,-0.528369,-0.15288952,0.25062045,0.9244694,-0.3546236,0.08957307,0.7083235,1.084064,1.0964044,-0.09620492,1.3565397,0.22161399,-0.293623,-0.018969623,-0.13387896,-0.53396845,0.08659046,0.46438202,0.59211063,0.3569,-0.06396567,-0.2987813,0.39184004,-0.24993917,0.033937026,-0.0002240198,0.19647476,0.2329643,-0.093482755,-0.462258,0.1061122,0.046661068,-0.09097422,0.27407026,0.13578849,-0.25865677,0.5672947,-0.038803034,1.3317286,-0.30707386,0.15785328,0.21998475,0.46517235,0.37076202,-0.09243075,0.1123984,0.4982541,0.5447865,-0.14517738,-0.69186455,0.20379066,-0.54534304,-0.4185366,-0.076648735,-0.4469641,-0.11702796,0.010084472,-0.38267308,-0.20324047,0.05650568,-0.25619113,0.24250785,-2.7591221,-0.4277983,-0.30389833,0.28881773,-0.5001293,-0.26007178,-0.18574132,-0.52576625,0.37909937,0.20946242,0.41486096,-0.5479105,0.55119544,0.50118786,-0.39014027,-0.08155717,-0.5627494,-0.23020463,0.027289135,0.48253712,-0.028350009,-0.22748987,-0.16486575,0.2688844,0.7789795,0.19163655,0.14800204,0.44961184,0.3636065,0.09785199,0.5333465,-0.14478938,0.6654649,-0.4311075,-0.024114426,0.49552944,-0.24343811,0.20229748,-0.27318853,0.11132051,0.626742,-0.40070835,-0.8456956,-0.62570965,-0.38702306,0.9741918,-0.44152483,-0.6015636,0.2761822,-0.112858646,-0.09792141,0.0059390836,0.60285187,0.0018548028,0.26424143,-0.64801353,0.14720461,-0.1790404,0.21700294,-0.011336448,-0.03327087,-0.3915742,0.8291802,0.018565485,0.6988181,0.24039836,0.29232964,-0.08721728,-0.16675234,0.06917654,0.75921106,0.46505094,-0.03324529,-0.18330513,-0.14803472,-0.13073388,-0.35704878,-0.09220738,0.6948768,0.81396574,-0.038756054,0.14937393,0.19845612,-0.030121673,0.08145674,-0.08415176,-0.20339687,-0.14776541,0.023395373,0.39189354,0.29990068,-0.18028069,0.46184954,-0.2380491,0.23987365,-0.13287596,-0.6662531,0.6615613,0.5696279,-0.20743613,-0.016611984,0.40953276,0.47372058,-0.6229231,0.5127863,-0.7862037,-0.24463116,0.9185479,-0.2520638,-0.44076136,0.33460823,-0.25121358,0.08805139,-0.6558419,0.041119814,-0.44179899,-0.48446637,-0.29190332,-0.26823807,-3.4860313,0.2132366,-0.08468645,-0.0861914,-0.44705293,-0.17968445,0.27409506,-0.43933088,-0.6031452,0.21172884,0.20936105,0.65119183,-0.1612934,0.0973795,-0.37535566,-0.19702911,-0.10087196,0.34806055,-0.04080016,0.22203198,-0.25227836,-0.24888079,-0.09298282,0.013019832,-0.68996894,0.089592226,-0.6265863,-0.38425848,-0.1644206,-0.48553285,-0.060503006,0.7339401,-0.23872519,0.12223005,-0.11074602,0.19827507,-0.26713443,0.09759883,0.07267571,0.3664775,0.12914114,-0.16927607,0.18047585,-0.3565511,0.52570647,0.06333594,0.35151675,0.0859003,-0.09923136,-0.024250554,0.28045923,0.60436636,-0.05499151,1.0819517,0.09766475,-0.15051906,0.44492334,-0.30220175,-0.37090316,-0.7658836,-0.3299444,-0.02972145,-0.46748382,-0.6469375,-0.07378515,-0.41040298,-0.7593773,0.5132762,0.016723623,0.6578656,-0.0022321183,0.4735739,0.34499124,-0.32027224,0.03152136,-0.1262322,-0.11550314,-0.516018,-0.31045252,-0.78980935,-0.5983077,-0.030609634,0.68760675,-0.36474138,-0.11746294,-0.20025817,-0.2975883,0.036178835,0.1348404,0.36867183,0.19470975,0.4594443,0.05877288,-0.6481872,0.45330802,-0.17775781,-0.26992926,-0.5564486,0.23747036,0.56246084,-0.64538676,0.64441234,0.2194351,-0.02380441,-0.18677285,-0.6373273,-0.08907808,0.022550728,-0.21716428,0.44473606,0.06705922,-0.75765103,0.54891527,0.33563748,-0.25766414,-0.6611986,0.35373244,-0.12602033,-0.27481332,-0.15958415,0.39563054,0.23437683,-0.05576042,-0.118052736,0.07655376,-0.689262,0.29428092,0.2735375,0.057173524,0.6120717,-0.0625836,-0.46851054,-0.68507296,-0.05386544,-0.5813739,-0.25176352,0.37412828,-0.11010047,0.016003123,0.17816801,0.05917883,0.531223,-0.15169765,0.2711479,-0.10501294,-0.34981623,0.33292332,0.46675625,0.20093314,-0.43708023,0.66633797,0.1320133,-0.2585409,0.23557173,0.17737079,0.3874653,-0.0067498363,0.43048647,-0.3116624,-0.08733791,0.29771468,0.8107618,0.24226859,0.48768076,0.25189742,-0.1310046,0.44688457,-0.09679009,0.103079624,0.08216792,-0.5596402,-0.053771667,0.013269714,0.06578879,0.61791265,0.3509174,0.3081389,0.17854163,-0.03365129,-0.08782095,0.19569221,-0.1707635,-1.1479056,0.3545964,0.24907044,1.0260812,0.29782963,0.13228813,-0.2652834,0.5201759,-0.21564086,0.10309488,0.4175217,-0.18392588,-0.46023288,0.86044616,-0.56738406,0.35602084,-0.051986046,-0.049766142,0.18023981,0.05579142,0.45568022,0.98680633,-0.15839955,-0.045511328,0.0071600378,-0.19985011,0.15110649,-0.30411536,-0.03555807,-0.14992432,-0.44261295,0.6090297,0.35135362,0.346497,-0.26492837,-0.104044594,0.048932415,-0.16772838,0.10170494,-0.13809158,0.11875468,-0.09816783,-0.3491804,-0.27955684,0.4608035,0.033195335,0.24809197,-0.09084751,-0.3625271,0.113853626,0.042591702,0.035725422,-0.027116712,-0.8504738,0.14529245,-0.31126902,-0.6784887,0.38287467,-0.1604416,0.012071644,0.15603025,-0.14652133,-0.081624456,0.2691475,0.022521688,0.7976276,0.0035907966,-0.20739527,-0.5136069,0.057718534,0.16533755,-0.30899987,0.27105722,-0.25018814,0.0472637,-0.5762211,0.6968952,-0.19962113,-0.2700141,0.34306532,-0.21990879,-0.22236596,0.54409146,-0.1071008,0.0056933886,0.07163695,-0.17585562,-0.43245512,-0.08037821,-0.25574398,0.15366258,0.12030453,0.0804882,-0.027843704,-0.09332966,0.028991604,0.6416264,0.20296775,0.2300309,0.14699355,0.0040281075,-0.3453305,0.11876241,0.22826421,0.6110492,0.09454975,0.06318792,-0.17627867,-0.6031249,-0.37290382,0.33888197,-0.12515905,0.26060414,-0.011742524,-0.32458553,1.0018659,0.17386451,1.0501658,0.043572843,-0.3926511,-0.023357885,0.6952434,-0.10662782,0.028878918,-0.45865774,0.8606473,0.57626575,-0.024989188,0.037634157,-0.39928362,0.03183513,0.49921873,-0.47261095,-0.012302564,-0.20765826,-0.5696062,-0.46120957,0.12723179,0.17455758,0.1720004,-0.11601086,-0.009878263,0.19957045,0.097170845,0.40761724,-0.66696537,-0.20252933,0.26578757,0.010474541,-0.18177669,0.12929378,-0.28749248,0.42488876,-0.8352289,0.0929793,-0.3870735,0.0068199933,-0.06058981,-0.30254313,0.19699107,-0.012204289,0.29491186,-0.29939595,-0.3999131,0.06549205,0.31075212,0.13785563,0.15136436,0.6968406,-0.25676772,0.07084027,0.2225554,0.5632711,1.2858344,-0.24034564,0.030904565,0.18089703,-0.6016866,-0.68023425,0.2568768,-0.38800573,0.12133634,-0.15972349,-0.48121217,-0.4052278,0.28176,0.096148014,-0.09521462,0.15703116,-0.63427514,-0.36888868,0.2710261,-0.31843516,-0.2699449,-0.36731002,0.33286616,0.8457548,-0.23339847,-0.3185394,0.053728122,0.3868701,-0.29709515,-0.78065443,0.07132502,-0.22412737,0.30854335,0.061233938,-0.15905078,0.011000254,0.1627421,-0.6879479,0.089676104,0.19662094,-0.45459318,0.004153874,-0.27926943,-0.11575153,0.8689283,-0.25018406,-0.23269527,-0.62959343,-0.5503332,-0.782463,-0.48058462,0.28031278,0.083616376,0.042056836,-0.5012087,0.00731951,-0.23464385,-0.00021128995,0.059678923,-0.4255384,0.27842563,0.030937513,0.5563137,-0.26252487,-0.8056522,0.1281176,0.12756138,-0.10518885,-0.5240167,0.5968665,-0.1342124,0.7627864,0.13253215,-0.16401999,-0.044474702,-0.46391317,0.14521012,-0.4831798,-0.057184704,-0.90658826,0.12563793 -642,0.3906109,-0.14516155,-0.4537445,-0.19291124,-0.3239529,0.09419543,-0.07032126,0.2659919,0.2312609,-0.11888229,-0.035061553,-0.16249157,0.10086058,0.28293353,0.0052324254,-0.54601413,-0.09670504,0.044921264,-0.7079589,0.43733972,-0.51817524,0.29203662,-0.0070943832,0.23474504,0.24559103,0.44110596,0.1782972,-0.19223465,-0.08062733,0.23766091,-0.3498978,0.22447813,-0.3472362,-0.05561069,-0.059311334,-0.13988347,0.033688635,-0.38589364,-0.3406251,-0.7412584,0.2755878,-0.77766126,0.34163615,-0.051056102,-0.08947736,0.052422173,0.3739824,0.26557508,-0.47694993,-0.021958698,0.27947232,-0.19740921,-0.084740475,-0.14868167,-0.12506181,-0.3908914,-0.2112599,-0.07606348,-0.6499541,-0.37186107,-0.26421577,0.12693395,-0.38460076,-0.13300431,-0.035517365,0.47272536,-0.4136656,-0.15768543,0.25513038,-0.19872774,0.14534868,-0.60043794,0.03443492,-0.16653785,0.630878,-0.107794404,-0.106438495,0.45959288,0.41779402,0.25643298,0.13439265,-0.17635062,-0.1479035,-0.24804008,0.136567,0.32914084,-0.14995152,-0.5113122,-0.041736286,0.084532894,0.13764563,0.22618917,-0.0040528416,-0.18061972,-0.10531034,0.004159857,-0.20303033,0.48332888,0.41225275,-0.3115313,-0.19922848,0.33197135,0.5275163,0.30679837,-0.28016558,-0.04444828,-0.032269537,-0.47967827,-0.19823377,0.22354549,-0.17452736,0.4192607,-0.2827449,0.2468818,0.83538216,-0.20094796,-0.0544326,0.016176406,0.05724597,-0.25442773,-0.16836219,0.0186546,-0.045411114,-0.5400482,0.121500924,-0.14317992,0.6561917,0.2778271,-0.52289337,0.25126636,-0.45595193,0.33722654,-0.017395133,0.6287947,0.6566901,0.25507146,0.41329026,0.92358506,-0.2879564,0.1429929,0.06437975,-0.5192506,0.0383302,-0.27561238,0.08801681,-0.53043425,0.08198773,-0.21878995,-0.015805924,0.03378288,0.14196546,-0.45312333,-0.06710486,0.1888925,0.7161803,-0.3607484,-0.060900297,0.55131966,0.9203384,0.8561351,0.033268996,1.0833195,0.14844574,-0.35806805,0.25815365,-0.41538215,-0.7436233,0.25490597,0.300527,0.03305842,0.20890965,-0.04021372,-0.047337897,0.29228055,-0.4355825,0.060337774,-0.17283145,0.107741065,0.1844649,-0.017914912,-0.27680996,-0.29363856,-0.23140772,0.02459999,0.07730833,0.1764944,-0.24526037,0.4227825,-0.01614044,1.4540201,0.08939045,-0.018873945,0.10051702,0.62449056,0.22260569,0.011781748,-0.13352408,0.6009927,0.44160247,0.022649601,-0.6869341,0.22239275,-0.39523578,-0.39528772,-0.12743738,-0.4454483,-0.10026067,0.17001721,-0.4450289,-0.19851503,-0.10477225,-0.3458446,0.51785135,-2.8868287,-0.20404588,-0.121315956,0.258705,-0.25705016,-0.108188525,-0.11226487,-0.52725554,0.09484518,0.35761413,0.47137132,-0.7262373,0.33917776,0.43203917,-0.48089185,-0.16265756,-0.7031038,-0.16610658,-0.034681432,0.5159641,0.030743508,-0.069444805,-0.057096463,0.10641023,0.5980401,0.016550751,0.12516528,0.45543244,0.43400237,0.10245163,0.685237,0.0024600765,0.5368803,-0.2736159,-0.16304304,0.27745697,-0.37073395,0.13844956,-0.020594379,-0.003623936,0.6914436,-0.38307774,-0.8304688,-0.4834045,-0.18545023,1.0478877,-0.4102718,-0.2692078,0.32369733,-0.4444767,0.12346172,-0.11920554,0.6856507,-0.010101233,0.0072223437,-0.6236361,0.27794462,-0.02386477,0.07329645,0.021415146,-0.071491785,-0.1264473,0.7598914,-0.047645863,0.5933403,0.27679402,0.055289656,-0.13838443,-0.4318025,0.04436493,0.70033073,0.29399562,-0.014830011,-0.20186694,-0.18132102,-0.10219158,-0.1253657,0.07054406,0.43863696,0.6298318,-0.025683088,0.19782612,0.36987475,-0.13412383,0.017341735,-0.14497553,-0.19183554,-0.09783477,0.008193717,0.43032736,0.5560977,-0.21850553,0.57043815,-0.15908325,0.12895052,-0.15511864,-0.41369396,0.6985154,0.7074418,-0.2953192,-0.069087885,0.19976646,0.50998944,-0.37992123,0.3860421,-0.62563634,-0.1759611,0.7727437,-0.23818675,-0.23178686,0.3068358,-0.21749702,0.12901627,-0.83644027,0.1773477,-0.26979026,-0.33635724,-0.41983545,0.020362714,-3.3351269,0.09427748,-0.24842139,-0.19782244,-0.39667472,-0.07121237,0.21249089,-0.6207344,-0.43573833,0.09477596,0.17622684,0.5800805,0.00032423175,0.07242995,-0.28311473,-0.110004425,-0.17632091,0.09650431,-0.023304518,0.42572522,-0.19369996,-0.50804013,0.031793438,-0.14112371,-0.42326114,0.10473669,-0.46646303,-0.32211965,-0.16820899,-0.5511496,-0.37267327,0.7145415,-0.19077127,0.03709708,-0.25031394,0.036123082,-0.13229726,0.2620542,0.32360846,0.16639319,0.04053954,0.069838665,0.14832297,-0.29556948,0.27984098,-0.15448299,0.35591322,0.08925891,0.1503936,0.21417803,0.5393597,0.53177005,-0.17785649,1.0999545,0.42848763,-0.13774434,0.36789435,-0.36532986,-0.20318969,-0.5631026,-0.38582438,-0.06356174,-0.3384255,-0.4939818,-0.037239216,-0.33915508,-0.6871184,0.40810898,-0.106944144,0.39071012,0.043405652,0.29182294,0.5515845,-0.15826607,0.082569234,-0.07086471,-0.28537756,-0.61794865,-0.27750292,-0.58853656,-0.41301063,0.0636495,0.73179865,-0.40579247,-0.104159735,-0.16782111,-0.4658626,-0.04347616,0.013971182,0.20339252,0.48843035,0.3586291,-0.23382,-0.57409203,0.39347762,-0.08753919,-0.029787246,-0.48244163,0.0073462585,0.48988914,-0.7075076,0.57879084,0.2619877,0.050334435,-0.06318415,-0.47257632,-0.20300664,0.0017733154,-0.14248607,0.3780957,0.12537773,-0.75895786,0.5236079,0.18197292,-0.29794475,-0.6201532,0.41574094,0.040366516,-0.38951606,-0.0023384795,0.34290794,0.1467568,-0.091478966,-0.22564259,0.0849356,-0.3857536,0.24937204,0.29402518,-0.04929862,0.21959843,-0.07812266,-0.28545737,-0.5320473,0.01778063,-0.47364068,-0.12448476,0.32565373,0.123711124,0.1337002,-0.049433727,-0.0028292537,0.27292347,-0.22740261,0.05489772,0.101497516,-0.23399292,0.28208548,0.35140043,0.18082032,-0.41805774,0.5980926,-0.008784115,-0.23313098,0.21859226,0.077043295,0.27678826,0.16785206,0.2502062,0.012857339,-0.29873002,0.38470644,0.9218738,0.16940588,0.34894097,0.025445843,-0.12735349,0.36393023,0.030998588,0.14329907,0.072200656,-0.38981283,-0.15631863,-0.0049865176,0.20433174,0.4424162,0.29999498,0.31346485,0.066253126,-0.14516413,0.0400822,0.20796563,-0.045441333,-1.2227557,0.5062927,0.34060776,0.79853314,0.251143,0.0046821176,-0.16486944,0.797825,-0.3064993,0.052611426,0.46665052,-0.1000015,-0.53870195,0.5742105,-0.6115904,0.55106753,-0.025654165,-0.111589596,0.09285146,0.20970507,0.20200059,0.8262954,-0.24291594,-0.14053322,0.08309924,-0.37473643,0.13443278,-0.2799362,-0.12682268,-0.44035408,-0.33176968,0.4872725,0.20648219,0.18074152,-0.15011667,-0.030433813,-0.053370677,-0.19343548,0.27549234,-0.007132765,0.07924981,0.0033569757,-0.6414963,-0.2718012,0.46635035,-0.11961164,0.15996301,-0.15827344,-0.22704218,0.18731698,-0.15360962,0.053838078,-0.08988059,-0.42616898,0.008083063,-0.11145018,-0.60639626,0.56972265,-0.3648338,0.33873734,0.30326486,-0.117407724,-0.28472582,0.494127,0.17640682,0.82240164,-0.3127169,-0.22586864,-0.54326355,-0.086777814,0.2768284,-0.16199093,-0.08430718,-0.33683288,-0.05621024,-0.3689878,0.59943086,-0.2026984,-0.30848956,0.10044253,-0.4393114,-0.07876514,0.5199088,-0.14571401,-0.14487521,-0.14986965,0.030448822,-0.3361274,-0.044084616,-0.26561412,0.26699135,0.2575311,-0.007409944,-0.33438393,-0.2560174,-0.07566921,0.4848942,-0.13618279,0.39795527,0.1370984,0.08537478,-0.10801865,0.09445973,0.31638825,0.30684286,0.23021251,-0.007877349,-0.4487206,-0.22312942,-0.31452793,-0.035274904,-0.13367005,0.1286302,0.18241481,-0.32189015,0.92376316,-0.113851115,1.1510378,0.10841026,-0.31303656,-0.0043542525,0.59724003,-0.039076224,0.117486335,-0.13259348,0.70378023,0.57108015,0.0056886743,-0.16943137,-0.39208114,0.053938925,0.37799025,-0.25505704,0.059236914,0.044923887,-0.45011598,-0.3451674,0.35776395,0.06801124,0.30805716,-0.037212394,-0.15149625,0.035845738,0.11545267,0.36442497,-0.513923,-0.21337995,0.1904056,0.027800502,0.06645251,0.15764037,-0.42658156,0.5989273,-0.5931133,0.06980217,-0.2811019,0.3039976,-0.14856787,-0.1899304,0.11832832,-0.18173155,0.39917937,-0.18969904,-0.3616491,-0.15872677,0.49700928,-0.04882774,0.2260758,0.5093829,-0.21182093,0.011270931,0.107864216,0.5734086,1.0200268,-0.29764664,-0.049634457,0.2529154,-0.2821195,-0.61956674,0.48080432,-0.2440808,-0.04524174,-0.029973542,-0.262994,-0.3986587,0.2451748,0.26957193,0.27692494,-0.07406237,-0.5586991,-0.35484868,0.39784205,-0.21687451,-0.15306047,-0.33193076,0.3352711,0.62908834,-0.2899121,-0.38080102,0.12849244,0.2605948,-0.26826167,-0.4660632,0.09178251,-0.2511586,0.46739224,0.14264865,-0.21439967,0.040110692,0.22657347,-0.4257114,0.3665119,0.17840134,-0.4173042,0.12369501,0.044558246,-0.1530332,1.0000083,-0.29782265,-0.04429288,-0.54203206,-0.47434267,-0.8790736,-0.4964278,0.3622509,0.120332435,-0.09041542,-0.48095545,-0.026094718,0.066752784,-0.11066371,0.007551532,-0.49477056,0.44460818,0.08667327,0.41537154,-0.2130024,-0.7815174,0.084086575,-0.07761723,-0.08410892,-0.5498688,0.59082747,-0.16950953,0.9154932,0.052532036,-0.06884143,0.18352702,-0.21111596,-0.07048906,-0.31180838,-0.33239624,-0.63200307,-0.08942941 -643,0.5892473,-0.14437553,-0.40120998,-0.3587014,-0.43316644,0.2564835,-0.18138105,0.25863066,0.337845,-0.46195635,-0.16624568,-0.0718216,0.010178236,0.49488872,-0.20492776,-0.9587104,-0.05916918,0.1837963,-0.66143095,0.35533735,-0.5815341,0.3863148,0.25644985,0.3172104,0.07282475,0.24427682,0.38776433,-0.104454674,-0.07937921,-0.09743464,-0.19037032,0.0119514605,-0.7221339,0.46325767,-0.03387088,-0.10875313,0.01657829,-0.44719803,-0.24967885,-0.6177339,0.23979743,-0.7987741,0.5578069,-0.00495437,-0.27655184,-0.077711634,0.2896442,0.22411264,-0.43032536,0.21138176,0.18831755,-0.33586723,-0.06190491,-0.22267577,-0.3752667,-0.5020112,-0.57637304,0.050786015,-0.6252192,-0.12508526,-0.32835162,0.2954669,-0.33382687,-0.00050524564,-0.07220113,0.46521804,-0.3564638,0.07740163,0.37107986,-0.2935622,0.12930815,-0.32024342,-0.20890948,-0.1822056,0.3579369,0.09021333,-0.32027566,0.39533693,0.3525172,0.4833329,0.15909435,-0.37207025,-0.19092312,-0.24947235,0.30741128,0.4173885,0.0055989143,-0.5170052,-0.3877161,-0.15163308,0.3228555,0.23073807,-0.020368733,-0.5160258,0.19468205,-0.04684923,-0.2700388,0.46905416,0.47024888,-0.38316303,-0.11563386,0.4038963,0.33431715,0.015368664,-0.1574482,0.16610728,-0.016163852,-0.7096628,-0.25796595,0.40838498,-0.01699493,0.52069396,-0.17784823,0.14136754,0.7727101,-0.27239892,-0.12443868,-0.21840884,-0.09541288,-0.10161221,-0.28845707,-0.04686022,-0.01276781,-0.40665022,-0.16370885,-0.2840212,0.9753587,0.10414282,-0.74536264,0.25256538,-0.5320444,0.14829375,-0.14537415,0.68888575,0.7506829,0.49087635,0.17062527,0.9338366,-0.5450217,0.06650514,-0.08050946,-0.4160433,-0.016165394,-0.18341634,0.07209413,-0.42749888,0.05214397,-0.012378912,0.11415969,-0.00443498,0.63641095,-0.2808495,-0.13028045,0.023976304,0.6994123,-0.45636413,-0.1294797,0.919773,0.98028505,0.977135,0.15553209,1.4716505,0.4751884,-0.22388604,0.010217657,-0.28568107,-0.53913176,0.24286151,0.24681476,0.16022484,0.22570314,-0.052837316,0.10553001,0.32257617,-0.46417114,0.041773625,-0.067072935,0.36372584,-0.06975316,-0.00896276,-0.46544248,-0.30037877,0.25521445,-0.011432336,0.2752221,0.29583645,-0.24424174,0.48801655,-0.05625556,1.1792365,0.15360935,0.09750088,-0.026629122,0.3056505,0.3019702,-0.05290006,-0.14985657,0.37782362,0.42904314,-0.18475294,-0.68087393,-0.069486745,-0.26560298,-0.35157618,-0.30300504,-0.5447559,-0.15398818,-0.10904069,-0.2920442,-0.2615374,0.097327724,-0.40499833,0.574925,-2.0891533,-0.3063203,-0.24656527,0.34545857,-0.21157953,-0.22013783,-0.4515047,-0.513271,0.49549943,0.35630623,0.39180246,-0.5431996,0.3767567,0.3770464,-0.24209358,-0.25219032,-0.6638458,0.05714445,-0.178449,0.2817999,-0.026295634,-0.2013371,-0.3450957,0.25775892,0.73829883,0.09304993,0.03546756,0.31807476,0.58902854,-0.021211404,0.6409563,0.02009639,0.62968,-0.35172898,-0.09070773,0.26540276,-0.39288676,0.27091524,-0.021828862,0.114375405,0.36990485,-0.6355023,-0.7814984,-0.7739807,-0.51446635,1.1982785,-0.5750716,-0.46710664,0.2658445,-0.02204639,-0.15195984,0.21401101,0.6675082,-0.15002912,0.14320005,-0.7108997,0.07868603,0.18819532,0.3049721,-0.18234117,0.13405688,-0.32768422,0.8125274,-0.31400818,0.54356724,0.18320674,0.2502264,-0.37001187,-0.49472317,0.14341682,1.0513688,0.277243,0.17320916,-0.15644623,-0.3606583,-0.31124517,-0.30351004,-0.00564345,0.7370629,0.7841196,-0.046367243,0.03619498,0.43115765,-0.28607818,0.0960636,-0.05536055,-0.38192898,-0.03922216,-0.09943059,0.65148234,0.49038136,-0.032721944,0.449101,-0.21291678,0.33953434,-0.3169586,-0.50927424,0.6099569,0.79833895,-0.22696987,-0.2567269,0.63313097,0.4696651,-0.35689008,0.44935232,-0.57498145,-0.54625785,0.7405802,-0.024212072,-0.40287983,0.07258199,-0.46371862,0.05654231,-1.01053,0.3150725,-0.060662653,-0.6060301,-0.40193045,-0.246909,-3.6287408,0.16474636,-0.10295972,-0.021373378,-0.20799376,-0.074585795,0.24312942,-0.4205877,-0.5472532,0.07081135,-0.05705786,0.65341496,-0.031976096,0.2676821,-0.33517697,-0.15412058,-0.2706331,0.14482631,0.022728233,0.35613397,-0.007318266,-0.30641106,0.2592108,-0.4387472,-0.45402798,0.1201028,-0.5611421,-0.55674434,-0.10895911,-0.48508924,-0.39923015,0.83126676,-0.6201409,0.09817702,-0.2671775,0.058827125,-0.1785753,0.36449793,0.11558461,0.30957416,0.21094945,-0.08748768,-0.34510374,-0.34966233,0.36161095,0.02144759,0.23746523,0.25348696,-0.06840027,0.06456096,0.4602486,0.5670887,-0.11145251,0.7872877,0.22249979,0.062464233,0.25528568,-0.33217907,-0.38699296,-0.51840204,-0.38392088,-0.1788086,-0.49694985,-0.47762972,-0.22556566,-0.35544574,-0.88483846,0.3762873,0.17801526,-0.019183429,-0.20993617,0.15223314,0.22175997,-0.097316705,0.029384898,-0.09873095,-0.267607,-0.54365146,-0.5589268,-0.60301656,-0.48571116,0.08392882,1.1230532,-0.071086116,-0.29885912,-0.084189095,-0.39256054,0.10091719,-0.014382646,0.1744782,0.17004949,0.2755391,-0.047381017,-0.80362266,0.47296765,-0.19573878,-0.04004466,-0.7328222,0.06386731,0.8369532,-0.70276797,0.62788194,0.45459396,0.2612445,-0.022168856,-0.4198362,-0.3363542,0.13393515,-0.15158845,0.5475131,0.10461367,-0.5516786,0.5853344,0.109029934,-0.05728505,-0.8369292,0.44575852,-0.0012597534,-0.189835,0.18238877,0.41927433,0.067544766,-0.13350241,-0.31689578,0.13564566,-0.5364619,0.3479296,0.34427595,0.1548225,0.47608778,-0.19898833,-0.19489948,-0.7031966,-0.29410756,-0.5931742,-0.3370272,-0.10002653,0.13357916,0.012881994,0.14843836,-0.06858997,0.3722878,-0.33995336,0.12755206,-0.08915309,-0.124954574,0.36584142,0.3242543,0.49189314,-0.4631451,0.6908884,0.06755185,0.16514008,-0.1855119,0.19193223,0.38294175,0.30029896,0.44090125,-0.10363983,-0.021425694,0.19520047,0.59875053,0.1454811,0.26560423,0.3984126,-0.24753274,0.4662037,0.19547704,0.12742437,0.052611608,-0.2374162,-0.21628979,-0.13604246,0.093273595,0.4210033,0.25997013,0.42593253,0.03814674,-0.10762914,0.28246278,0.056243714,-0.22601502,-1.4338322,0.34204796,0.2273938,0.582595,0.46500382,-0.11368031,0.0755534,0.55143726,-0.29435107,0.057600815,0.23988749,0.041835997,-0.24095863,0.5269029,-0.49270937,0.49931827,-0.32402337,-0.06236986,0.059756838,0.29430902,0.35962582,1.0340303,0.09689543,0.18805741,0.013351541,-0.2533685,0.18792708,-0.4188059,0.17252883,-0.6751525,-0.38747662,0.5769609,0.15802813,0.38285035,-0.27429527,-0.101836,0.08114045,-0.2323579,-0.10327704,-0.101533376,-0.21258637,0.082042344,-0.8555836,-0.28313607,0.4659684,-0.16175412,0.08475265,0.26078966,-0.2954821,0.18134774,-0.20929743,0.065666236,-0.059043817,-0.75248104,-0.31095225,-0.40565678,-0.43709293,0.15683796,-0.6414471,0.27360523,0.19543058,-0.033717398,-0.3163096,0.20226361,0.26703003,0.8392331,0.16787481,-0.29113835,-0.27927476,-0.055323403,0.41829997,-0.41716737,0.00032775218,-0.3433353,0.051959276,-0.6629553,0.5311792,-0.144596,-0.27237952,0.13703667,-0.09885537,-0.063582376,0.44623244,-0.2850424,-0.10236819,0.18732572,-0.04479464,-0.15595077,-0.037417952,-0.40714365,0.29212347,-0.03661755,0.033891458,0.16145119,-0.1437392,-0.09470128,0.29093367,0.056710042,0.28216326,0.38277495,0.07371952,-0.13291685,0.1325596,0.0040146527,0.43883294,0.25394642,-0.031484388,-0.2101418,-0.19249047,-0.25664082,0.419161,-0.21039897,0.021574227,0.13864228,-0.47245917,0.7218122,0.17897789,1.0886409,0.23288439,-0.3482394,0.102633245,0.54571784,0.17357913,0.17634603,-0.3532717,0.8824281,0.542541,-0.19749641,-0.22971341,-0.5263546,-0.11598775,0.33048952,-0.31534842,-0.33046675,-0.15741846,-0.69926304,-0.1864155,0.07592477,0.17127515,0.1378643,0.0437052,-0.11659749,0.042851813,0.24984536,0.5073541,-0.6201565,0.23767461,0.2885338,0.28522223,0.1494263,0.25142092,-0.18820238,0.41841894,-0.73493826,0.25898287,-0.35212305,0.13831021,-0.07092887,-0.20413774,0.2605364,0.12805884,0.3562765,-0.2954677,-0.22329892,-0.22274789,0.87734294,0.22938174,0.33654004,0.828822,-0.25070497,-0.26313952,0.15615003,0.6170045,1.4815037,-0.09679189,0.12567848,0.38059103,-0.30253595,-0.56413895,0.25653404,-0.4560782,-0.0036035501,-0.045325935,-0.5292151,-0.37615106,0.32852003,0.07535923,0.10725023,0.12782668,-0.4710526,-0.25859153,0.52280664,-0.1865721,-0.29783246,-0.2153953,0.31412226,0.47327676,-0.2691977,-0.28619,0.041233633,0.35160062,-0.301552,-0.6442102,-0.0632714,-0.39071047,0.3538918,0.11770857,-0.17651002,-0.2179877,0.07154013,-0.4170491,0.2348732,0.24744861,-0.3561451,0.046931062,-0.070318215,-0.17109202,0.9072574,-0.001857627,0.12693137,-0.6929855,-0.44916314,-0.9091853,-0.29141074,0.38846117,0.0980965,-0.12939762,-0.5004565,-0.2647425,-0.07001969,0.041794892,0.11065228,-0.5612052,0.31833854,0.095541514,0.48454726,-0.0073687905,-0.9241439,0.12312384,0.09871577,-0.35006955,-0.62859017,0.5403852,-0.16910975,0.7780675,0.04680912,0.08610817,0.19399783,-0.66709167,0.25555187,-0.2572676,-0.15703847,-0.685208,0.14712027 -644,0.84500957,-0.3654858,-0.571273,0.047905143,-0.4199753,-0.17204519,-0.18318991,0.41993377,0.36417085,-0.42498854,-0.33623436,-0.07554309,0.07494989,0.08275355,-0.12791675,-0.49634263,-0.0643856,0.22413152,-0.78987634,0.96637875,-0.21303965,0.41252756,0.29702377,0.4464835,0.1277552,0.42733383,0.23524566,0.20829296,-0.0065181744,0.044358566,-0.06041478,-0.01998799,-0.6063971,0.3618983,-0.46006393,-0.3646495,-0.13132814,-0.42527798,-0.18810941,-0.8413769,0.180309,-1.0033501,0.47024518,-0.060952462,-0.29238173,-0.5314783,0.1279789,0.17046782,-0.30160806,-0.19882804,0.04115423,-0.3100907,-0.21241368,-0.7165691,0.09461565,-0.4317447,-0.45187148,-0.05638865,-0.49848482,-0.26271147,-0.0388929,0.30039787,-0.27264094,0.0032437472,-0.17404571,0.80911916,-0.25984162,0.01802308,0.5436582,-0.3032781,0.066332795,-0.7304313,-0.2542052,-0.17522687,0.26232478,0.32708934,-0.47235784,0.35131615,0.083896704,0.364048,0.40633252,-0.46397018,-0.19384147,-0.006525506,-0.00024539774,0.36842233,-0.18961939,-0.2714141,-0.18132788,0.10607683,0.39263117,0.42951047,0.26770848,-0.33540282,0.14697891,-0.40467432,-0.029730106,0.48274633,0.642241,0.044281363,-0.28895146,0.115205854,0.66072935,-0.010233435,-0.30503923,-0.24086428,-0.015649986,-0.41844404,-0.053425692,0.1590212,0.09700361,0.69763887,-0.10457444,0.17611155,0.6882376,-0.011745139,-0.058704898,0.31290317,0.30713475,-0.11014425,-0.5202594,-0.098305374,0.51519734,-0.49509487,-0.18582734,-0.5728762,0.7036529,0.046721973,-0.67652094,0.43264377,-0.6176749,0.061151076,0.1438577,0.49349278,0.7594551,0.57956815,0.40960532,0.8076059,-0.05432893,0.20577985,-0.09389289,-0.1300192,-0.13417679,-0.49922988,0.3264282,-0.36812142,0.2746335,-0.14507937,-0.02730362,0.016622717,0.4514756,-0.5682016,-0.52649504,0.44614756,0.8250984,-0.1282388,-0.099103,0.9103649,1.1736199,0.9193814,0.039318994,1.1103072,0.15473165,-0.16815816,0.21385075,0.015095743,-0.83180976,0.20833617,0.35890236,0.2125743,0.50061053,-0.13556793,-0.2772249,0.4663046,-0.42496002,-0.08015104,-0.025379466,0.33558527,0.15680018,-0.07821358,-0.64582473,-0.2854825,-0.060358897,-0.13765456,0.01888904,0.4156996,-0.1933137,0.39868096,-0.23867498,1.1823075,-0.10828161,0.10596874,0.35703027,0.55818224,0.37935588,-0.25830728,-0.020954989,0.47923848,0.08171511,0.12330305,-0.34420738,0.19978827,-0.48412278,-0.4907525,0.008285555,-0.23658966,-0.13052984,0.17587048,-0.5803093,-0.43728915,-0.11164019,-0.24959378,0.22008727,-2.6228678,-0.13934106,-0.13330348,0.54357505,-0.48826763,-0.21478952,0.08654283,-0.63840455,0.06783287,0.15018311,0.62280303,-0.6084084,0.2801561,0.5523679,-0.7537872,-0.16270116,-0.8040839,0.2277864,-0.1029747,0.40878427,-0.110956475,-0.2526929,0.03565719,-0.006147401,0.62588024,0.15641475,0.15425435,0.6827764,0.37657872,-0.122096606,0.27270177,-0.10506189,0.519486,-0.6305375,-0.2449378,0.33057186,-0.51451296,0.2513523,0.021309821,0.030897664,0.7998598,-0.5940378,-0.7173834,-0.5609123,0.034380946,0.87995046,-0.3814824,-0.59732336,0.045088258,-0.27099565,-0.07101994,-0.04049243,0.80372804,-0.054009024,0.32832053,-0.5829781,0.074504495,-0.059601296,0.24203539,-0.023357494,-0.24691053,-0.4985975,0.9371527,0.02207691,0.7255842,0.22659945,0.32566878,-0.41517648,-0.37346423,0.11538319,0.60254616,0.3317377,-0.0110267075,-0.09743764,-0.041143756,-0.18262973,-0.19873309,0.21218304,0.81140256,0.7100639,-0.16481802,0.16267727,0.39450514,0.00030892817,0.1419902,0.014276526,-0.22494961,-0.41249657,0.17059688,0.43433598,0.91808504,-0.17439665,0.2128158,-0.24911755,0.4960576,-0.17146812,-0.65878063,0.6389169,0.6108704,-0.18962461,-0.063394204,0.5633245,0.54694945,-0.64667106,0.5934271,-0.61730653,-0.4495881,0.556027,-0.10280816,-0.6632057,0.12604079,-0.27495593,0.27753153,-0.96715546,0.35231796,-0.3887456,-0.39248502,-0.6146872,-0.048016127,-2.312313,0.27852413,-0.26752484,-0.0032600977,-0.30450118,-0.14139737,0.007627265,-0.92031837,-0.43941107,0.34177145,0.22178084,0.6309399,-0.10549193,0.20192887,-0.25288212,-0.49809638,-0.12275324,0.34366223,0.16312428,0.31657112,-0.31868476,-0.41358623,-0.14883412,0.1449521,-0.46014175,0.15928279,-0.7808073,-0.61820793,-0.2705795,-0.7092531,-0.38861942,0.51444966,-0.15736637,0.05087329,-0.255519,0.04204066,-0.062276557,0.07073932,-0.022785328,0.45065725,0.24689035,-0.07896933,0.2368303,-0.47388554,0.2751995,0.012144209,0.49215004,0.28975716,-0.3195096,0.33571455,0.42189753,0.73742366,-0.26113585,1.0427307,0.26014608,-0.03056132,0.38535118,-0.1345572,-0.39576942,-0.76213497,-0.19001408,0.19796532,-0.35424736,-0.3750777,0.1937893,-0.4047168,-0.7863745,0.7181954,-0.023133676,0.5445479,0.06339831,0.50801826,0.5757686,-0.3621333,-0.14424615,0.008186362,-0.22380252,-0.60736984,-0.2809295,-0.62637734,-0.6194388,0.082172364,1.0169238,-0.24149624,0.039681986,0.24461742,-0.35498,0.1597657,0.19758119,0.043824382,0.049524155,0.621897,0.14031431,-0.4050476,0.40384626,-0.011182663,-0.18278876,-0.2701731,0.48914945,0.4575818,-0.7778128,0.78616697,0.3046728,0.14020151,-0.43663552,-0.5465486,-0.28465423,0.10236507,-0.029413491,0.50841635,0.5440465,-0.89090425,0.16698599,0.22570439,-0.56874907,-0.96044123,0.24864225,-0.18044244,-0.38728675,-0.29774097,0.4994006,-0.014779741,-0.20875864,-0.17232518,0.15091792,-0.4098691,0.074272685,0.12882224,-0.06370825,0.35031015,-0.075226754,-0.29965317,-0.7295913,0.28152367,-0.73176366,-0.25042105,0.6596849,0.022447325,-0.2397676,0.20847028,0.1741621,0.4437811,-0.13850862,0.19035487,-0.29631945,-0.42054322,0.48292992,0.43569204,0.5072001,-0.5441953,0.6440897,0.18377851,-0.25425026,-0.0073376787,0.22410497,0.38033298,0.079280406,0.43562782,-0.26989824,0.019421317,0.095681906,0.6517229,0.20033722,0.5058879,0.23751326,0.022896918,0.32983768,-0.071132325,0.31164172,-0.20231624,-0.63954806,0.10036006,-0.122881584,0.11831672,0.3956154,0.095642515,0.40618375,0.010914613,-0.20893866,-0.0022674582,0.3711792,-0.05322593,-1.3241225,0.20554477,0.19280772,1.0124409,0.3598454,0.13949904,-0.57342845,0.8069328,-0.110470936,0.25854608,0.32431805,-0.2096528,-0.43145683,0.8537554,-0.5027374,0.5608293,-0.21544673,-0.2141679,0.18525161,0.13471769,0.45743668,0.66731215,-0.20568047,-0.06427239,-0.1143123,-0.14272514,-0.08605793,-0.4014611,0.21836545,-0.3889046,-0.5562118,0.75819594,0.37378657,0.46093577,-0.34959346,-0.0445375,-0.057853356,-0.21415855,0.44099626,-0.1339647,0.027557937,0.26566112,-0.48672736,-0.16027914,0.55930626,-0.047329925,0.173958,-0.06860865,-0.1469362,0.024429088,-0.14961118,-0.017681729,-0.029463649,-0.87795866,0.24254131,-0.3754556,-0.60800546,0.42642835,-0.1857958,-0.055734456,0.2271872,0.05481905,-0.22412986,0.28803432,-0.012939618,0.95578665,-0.0035321603,-0.34474367,-0.3878341,0.28000236,0.08819547,-0.2920637,0.43129233,-0.34317482,0.2314949,-0.551148,0.63757384,0.060933437,-0.54457,0.026384912,-0.13967167,-0.1003336,0.71063703,-0.041092873,-0.20838672,0.025671883,0.012810393,-0.42417195,-0.1532083,-0.29235694,0.28753445,0.3072778,0.15793636,-0.07767706,-0.28719023,0.17180377,0.5522352,0.1670145,0.33129534,0.23141123,0.15229654,-0.24782857,0.42920053,0.2769924,0.53233635,0.21724032,-0.058204092,-0.35808966,-0.37070188,-0.46981,0.11622726,0.035473894,0.25971267,0.25061598,0.02218804,1.110217,-0.030919164,1.2288929,-0.058606353,-0.33506587,0.11867383,0.5936363,-0.22307421,-0.1268778,-0.51050514,1.2754916,0.65463424,-0.11369924,0.0861908,-0.37841588,-0.1270269,0.31783485,-0.44209945,0.04921148,-0.11038561,-0.5190403,-0.3355704,0.06423473,0.20602517,0.13577595,-0.27170783,0.07432533,0.2925038,0.066423014,0.06185918,-0.6599198,-0.1037072,0.1679696,0.23819852,-0.10754774,0.20833264,-0.43245742,0.37279952,-1.0534247,0.43007514,-0.5313381,0.15779948,-0.13154289,-0.5050089,0.081872694,-0.00054984743,0.6117832,-0.6178243,-0.3701783,-0.13952166,0.44571447,0.17809787,0.020528192,0.670717,-0.24994868,-0.04285395,0.15784799,0.6120447,1.1797179,-0.39242116,-0.0040291725,0.029738687,-0.62459284,-0.91028094,0.42408752,-0.20373812,-0.06866726,-0.35693625,-0.29606548,-0.7160364,0.09911487,0.27722555,-0.08781987,-0.10548322,-0.77615285,-0.07388312,0.05247437,-0.5381136,-0.15326281,-0.17553128,0.48351032,0.58893496,0.08782118,-0.42935008,-0.047844365,0.24500869,-0.14862368,-0.5032898,-0.13577296,-0.35511854,0.13351426,-0.06896818,-0.4541815,-0.33567464,0.15393467,-0.6388729,0.10208488,0.058170866,-0.29847664,0.080028266,-0.34915712,-0.1266138,1.1107974,0.0054202457,0.096695535,-0.52834356,-0.6772028,-0.9404638,-0.59547323,0.13335735,-0.03198589,0.2693257,-0.6151402,0.013689572,-0.3922467,-0.111660846,-0.11276283,-0.3389479,0.2652445,0.1435466,0.59556293,-0.53822196,-0.9946938,0.34557924,0.23519407,0.04585564,-0.45258057,0.29330322,-0.049605545,0.83292127,0.006434914,-0.061490472,0.14713436,-0.6819782,0.1380867,-0.2848737,-0.101247124,-0.651357,0.1045438 -645,0.39935187,-0.05841663,-0.4560293,-0.058621544,-0.24413691,0.028915852,-0.19307178,0.66808987,0.28128496,-0.22595464,-0.03232687,-0.041503165,0.048991546,0.377034,-0.15982926,-0.446381,0.011683218,0.21317214,-0.54720414,0.7220032,-0.345375,0.20587379,-0.38742065,0.4159395,0.25060087,0.25154015,-0.1063854,0.07215665,-0.12626359,0.012212137,-0.0062909573,0.55176324,-0.29091316,0.102789044,-0.32270923,-0.24016523,-0.09912828,-0.40762094,-0.46839017,-0.80891514,0.31667477,-0.6388289,0.5153385,-0.15341006,-0.28467155,0.27842385,0.047706075,0.2553034,-0.11395265,-0.16563939,0.09695093,0.01127167,0.016492039,-0.16074716,-0.3438382,-0.4140574,-0.45733875,0.01028088,-0.6222226,-0.048270047,-0.12022475,0.08669516,-0.201193,-0.1080445,0.013600718,0.53719866,-0.42422742,0.19410464,0.08388708,0.02774299,-0.052617766,-0.6642847,-0.0986411,-0.126473,0.37089822,-0.049650297,-0.28751513,0.34321362,0.1668347,0.3455491,-0.2420997,-0.067315206,-0.40203592,0.027509186,0.05105701,0.426027,-0.23595177,-0.6198963,-0.10253981,0.15968591,0.26357144,0.14484707,0.0932317,-0.106968194,-0.12731923,0.008339344,-0.13763146,0.49142247,0.57502013,-0.23121424,-0.17994425,0.4206882,0.43318337,0.3864197,-0.31949347,-0.012755534,-0.02654792,-0.54047257,-0.10174379,-0.049722657,-0.09813169,0.55086094,-0.078350484,0.17029063,0.44430333,-0.1305929,-0.16711819,0.14054361,0.06336534,0.050965406,-0.14857264,-0.19801532,0.117308624,-0.44254994,0.1434006,-0.011748757,0.4703993,0.17914413,-0.6865335,0.31677604,-0.4573494,0.08485724,-0.041444212,0.39092493,0.7549776,0.43029916,0.30360863,0.5447671,-0.11089766,0.16832653,-0.18035895,-0.22252733,-0.039769866,-0.17419757,-0.19141439,-0.56832945,0.1071606,-0.18049811,-0.22310588,0.18270348,0.29772386,-0.44646728,-0.19694918,0.09513673,0.8273202,-0.2579722,-0.18039024,0.7839293,1.0175568,0.8374926,-0.09366059,0.90100527,-0.0047355816,-0.12342939,0.23703974,-0.3312205,-0.6497133,0.29070914,0.13758768,-0.30269074,0.3599884,0.0052804425,0.02687642,0.30477336,-0.3795877,-0.0480128,-0.16457939,0.12839106,0.18794665,-0.033871256,-0.39026606,-0.33922,-0.18303424,-0.10683308,0.25271794,0.2992364,-0.32703966,0.2390979,-0.070503846,1.4773755,0.12712489,-0.05008826,0.11082427,0.6416835,0.2960849,-0.15393059,-0.13607244,0.50964403,0.34669048,0.14917111,-0.46868616,0.17308217,-0.23639524,-0.4731451,-0.10414719,-0.46877897,-0.13144249,0.022839941,-0.4566217,-0.16418281,-0.08588998,-0.2000368,0.4755175,-3.0049696,-0.20097423,0.03812339,0.39644343,-0.108951025,-0.236757,-0.2742119,-0.43886894,0.3906715,0.26029536,0.39621145,-0.53209835,0.4703525,0.288562,-0.63007313,-0.09161443,-0.51685214,-0.054198265,0.040319726,0.46065164,-0.09479338,0.032167174,0.3244685,0.3160543,0.5260993,0.023304045,0.21038483,0.3150826,0.438897,0.055383373,0.32416123,-0.22153345,0.4747697,-0.28897506,-0.18109159,0.25130287,-0.44073072,0.29998982,-0.08436925,0.103312016,0.53073204,-0.46027088,-0.9775684,-0.47260922,0.28164703,1.1723098,-0.1543885,-0.3713472,0.19939306,-0.5792769,-0.24938701,-0.15586159,0.54364705,0.04319219,-0.18912187,-0.6532926,-0.03717301,-0.051355258,0.052355446,-0.0829498,0.033821538,-0.21459606,0.4716038,0.02769436,0.41432807,0.21675928,0.1907524,-0.3117949,-0.4922511,0.008849021,0.5822499,0.32168123,0.056129996,-0.15786272,-0.2828734,-0.43683773,0.022001445,0.09334129,0.72086555,0.35611558,-0.10235184,0.15193133,0.263412,-0.027517892,0.09947255,-0.29046136,-0.15124588,-0.09017808,0.0969774,0.4941467,0.6049977,-0.29250032,0.50562257,0.09176847,0.122193515,-0.19790243,-0.32492143,0.31391916,1.1697023,-0.29417267,-0.33663145,0.40500268,0.49381208,-0.19438605,0.32468942,-0.36977863,-0.20539287,0.43624383,-0.2323274,-0.30382776,0.32960936,-0.11253624,0.121207505,-0.69706464,0.23549116,-0.21303827,-0.5295718,-0.6293667,0.09444137,-2.9276032,0.0934098,-0.12056433,-0.3634957,-0.119786784,-0.31666416,0.043977905,-0.50443107,-0.5703596,0.15570463,0.08714093,0.6537667,-0.25111824,0.034057572,-0.22863936,-0.47502097,-0.29990578,0.18074971,0.14631397,0.50779736,-0.06878508,-0.43101156,-0.13782465,-0.08825155,-0.3507909,0.13531356,-0.5209538,-0.16300118,-0.06453796,-0.5153026,-0.1627256,0.6310625,-0.22361559,-0.0076143313,-0.2303401,0.017054718,0.028397743,0.23026899,0.04292441,0.14805788,0.19542864,-0.15809356,0.21056569,-0.20247462,0.25695363,-0.06781586,0.30340394,0.2705486,0.07422043,0.22723423,0.54922295,0.6232105,-0.1623091,0.9161224,0.5474998,-0.020931104,0.2530607,-0.3499976,-0.23673654,-0.34864172,-0.20752066,-0.06427042,-0.43112004,-0.4240784,-0.13415544,-0.4563591,-0.7625028,0.44964412,-0.12523015,0.17298463,0.06599777,0.34573537,0.6446904,-0.16132432,0.1155256,0.0016554408,-0.2070512,-0.4410314,-0.23518886,-0.43928465,-0.33409098,0.07680954,0.8920224,-0.3267153,0.016901445,0.020745628,-0.29972667,-0.03230288,0.13002433,0.08036748,0.23149997,0.23242253,-0.32282084,-0.50543547,0.30367216,-0.15727593,-0.20110528,-0.46991768,0.26333094,0.4955946,-0.46128577,0.64143634,0.26467708,-0.07056959,-0.23142949,-0.5766942,-0.03354102,0.043771394,-0.15518671,0.44246808,0.2998463,-0.82222706,0.39598513,0.29116952,-0.30258757,-0.6230608,0.65549177,-0.04336589,-0.33809793,-0.10969609,0.33083886,0.19187886,0.012431096,-0.39208058,0.17771892,-0.24461079,0.14092386,0.22345234,-0.14741762,0.238871,-0.27764592,0.044025753,-0.685712,-0.035233866,-0.46853873,-0.2180616,0.39640844,0.09228982,0.29096317,-0.055759683,0.11123489,0.30112934,-0.44443274,0.12944758,-0.09247025,-0.19435182,0.34978914,0.37127483,0.49935856,-0.40821803,0.45077866,-0.044572122,-0.22575074,0.26499188,0.09250911,0.35862,-0.06623618,0.43611935,0.26507244,-0.16391066,0.2086443,0.7565573,0.22832456,0.37350607,0.02483575,-0.28150207,0.088849306,0.06298527,0.13808186,-0.11278869,-0.40321946,-0.019962423,-0.20900786,0.22614443,0.4529459,0.22832265,0.22422296,-0.040261805,-0.33872828,-0.10544641,0.17883326,0.1274444,-1.4059801,0.29153174,0.17895658,0.7977367,0.26699162,0.16084187,-0.004438244,0.54727554,-0.054936074,0.08929653,0.4390083,0.062583946,-0.5358993,0.47161484,-0.6528053,0.45827985,0.011714878,0.010287549,0.16454893,0.012504626,0.42981172,0.7522858,-0.07447608,-0.01204952,0.24609977,-0.3011839,0.13422187,-0.28352138,0.038835846,-0.6136811,-0.22844088,0.5133076,0.5193594,0.22132531,-0.20525017,0.07161785,0.1505493,-0.18717197,0.11437704,0.11568086,0.113257214,-0.108036436,-0.6391413,-0.06166031,0.35490134,-0.19201857,0.101613626,0.03860977,-0.112038724,0.37648383,-0.1801781,-0.04128277,-0.02960803,-0.5922799,-0.117341876,-0.3044924,-0.41940963,0.5792261,-0.17985982,0.25606215,0.2848963,0.08724081,-0.5184055,0.43740687,-0.011217415,0.710451,-0.18427226,-0.007249482,-0.39096093,0.10345142,0.18519157,-0.15490772,-0.2214593,-0.30189058,-0.012399412,-0.4208939,0.31676978,-0.009166166,-0.27577192,-0.26555574,-0.068720415,0.21851525,0.43834606,-0.039170068,-0.101837166,-0.17318586,-0.12410931,-0.52134955,-0.34708774,-0.07083465,0.18485865,0.2441433,-0.11547972,-0.14513765,-0.12040129,0.037307877,0.48443785,-0.123158604,0.45643973,0.40145773,0.30438367,-0.048059613,-0.12703215,0.2704773,0.50374657,-0.002009008,-0.06450994,-0.40087655,-0.32270014,-0.38017368,0.07970524,-0.12114799,0.33040726,0.2095851,-0.12228569,0.5699979,-0.099496335,1.0657474,0.015328035,-0.34244362,0.23842269,0.3978657,0.1435643,-0.12954833,-0.29267785,0.77065694,0.47498065,-0.027308162,-0.004157232,-0.28398576,-0.04774774,0.108284056,-0.18159604,-0.23515023,0.012313079,-0.42803246,-0.16302249,0.23640047,0.19841322,0.35156623,-0.19771883,0.11908026,0.2285446,0.0628715,0.16112462,-0.297883,-0.12147078,0.2785374,0.2316488,0.090994254,0.06181518,-0.51673055,0.3918223,-0.3084978,0.030127317,-0.22357965,0.33271092,-0.12686431,-0.36659262,0.20588581,-0.02156217,0.28074324,-0.16875844,-0.19822866,-0.3424288,0.42235455,0.08669256,-0.0016583949,0.35521343,-0.20499521,0.107607216,0.0012086704,0.53776884,0.7714615,-0.27306524,-0.16865182,0.24500158,-0.31719965,-0.725634,0.29384723,-0.41800356,0.26309356,-0.023862801,0.024500497,-0.685921,0.28755778,0.13828464,0.22827518,-0.16900936,-0.6419125,-0.17890522,0.2535965,-0.19276787,-0.13384598,-0.35792515,0.012930969,0.525992,-0.24529572,-0.41687012,-0.06686804,0.19738954,-0.094565496,-0.585934,0.09890058,-0.35235372,0.24744242,-0.004551159,-0.29570958,-0.21768294,-0.032308556,-0.38124153,0.25601825,0.059756283,-0.301514,0.093865775,-0.2026329,0.062368248,0.91417754,-0.33355087,0.23291063,-0.29042256,-0.5400868,-0.7685996,-0.35876456,0.077453434,0.2601242,-0.08071901,-0.85922134,0.13421364,-0.21688883,-0.44236094,-0.13614361,-0.33922565,0.46625003,0.08022833,0.19617471,-0.07433167,-0.781258,0.13860568,0.104329005,-0.317854,-0.5274371,0.45328242,-0.08789325,0.92992103,0.082908615,0.27255613,0.244231,-0.24491915,-0.10656424,-0.19511317,-0.07945285,-0.43203223,0.0075078104 -646,0.472856,-0.015805772,-0.45740774,-0.18737166,-0.4316344,0.15197262,-0.22256847,0.26555738,0.24293743,-0.35469648,0.09055044,0.029687518,-0.13626356,0.42641714,-0.15987277,-0.7088189,0.18841854,0.05775691,-0.6190247,0.42670637,-0.64359844,0.41433614,0.14824833,0.27958208,0.11525178,0.21640389,0.29755566,-0.10006024,-0.07554736,-0.027511904,-0.16479976,0.17006,-0.6407962,0.29083365,-0.10170611,-0.32938257,-0.044440117,-0.24872674,-0.28152642,-0.7108288,0.26565942,-0.8050774,0.60326344,-0.06286589,-0.28610015,0.051746782,0.11295526,0.15164784,-0.41815677,0.07430893,0.39865586,-0.30476826,-0.14868836,-0.093894966,-0.17508003,-0.4432964,-0.5613489,-0.0060075223,-0.6636791,-0.13220413,-0.28906938,0.25744227,-0.26952937,0.010178308,-0.12309336,0.43081924,-0.3844567,0.15946744,0.1250067,-0.2184777,-0.038635977,-0.45348093,-0.10311779,-0.0812651,0.325806,0.011132598,-0.30550152,0.25030333,0.41600767,0.40807477,0.059775624,-0.30897516,-0.18613945,-0.06444156,0.097614355,0.41146824,-0.060541935,-0.39445302,-0.24079537,-0.048063178,0.23262838,0.11685126,0.0988875,-0.39902568,-0.025704253,0.1305859,-0.2735936,0.488632,0.5061754,-0.41099668,-0.01286229,0.5447291,0.22110094,0.21619298,-0.28242242,0.1381216,-0.17685306,-0.4676648,-0.15475857,0.18879159,-0.011164543,0.5050325,-0.1567252,0.34051818,0.7845273,-0.13114452,-0.06521713,-0.07203336,-0.120118566,-0.019634416,-0.17319952,-0.1726146,0.1447237,-0.49340153,0.09462015,-0.2779033,0.78161913,0.15571104,-0.7564637,0.46855325,-0.32704636,-0.05361649,-0.181121,0.53510207,0.7304861,0.5152626,0.08004941,0.8163828,-0.67674017,-0.088155724,0.018992824,-0.40975854,0.053204972,-0.101150036,0.1354395,-0.36534396,-0.048004847,0.049637042,0.16031893,-0.023025708,0.41013235,-0.18255946,-0.119587265,-0.061715227,0.62993187,-0.46888992,-0.16777848,0.83894926,0.95837563,1.0205001,0.17723426,1.2067859,0.33745766,-0.017284675,-0.16775084,-0.09664208,-0.55301464,0.18711607,0.26002917,0.38703388,0.16057315,0.18146385,0.067156844,0.29267326,-0.20725688,-0.1474919,0.054812405,0.31862673,-0.054452237,-0.14560726,-0.4045725,-0.27827987,0.19737123,0.10999068,-0.0028589752,0.21440685,-0.15951331,0.51368296,0.111393966,1.4672525,0.12631138,0.0809272,-0.015933465,0.3804555,0.2436967,-0.18269055,-0.21938737,0.14756456,0.4776577,-0.09417515,-0.5560526,-0.07495662,-0.219708,-0.5139579,-0.08247953,-0.37907267,-0.19801112,-0.23645318,-0.41314366,-0.11814453,0.27776617,-0.36380512,0.5384296,-2.6090083,-0.24239846,-0.0979997,0.35003144,-0.15218954,-0.3217854,-0.37429938,-0.53404963,0.37060764,0.30515862,0.43810937,-0.7192803,0.67311174,0.25087664,-0.18426228,-0.25514904,-0.7093391,0.015541949,-0.10811348,0.31238985,-0.008192179,-0.13227485,-0.19800845,0.2730264,0.7269839,-0.026136884,0.01665294,0.23983853,0.45928717,-0.035447706,0.6379324,0.0030221045,0.62362766,-0.2536921,0.023706065,0.3875599,-0.3661303,0.34178534,0.04817673,0.23738496,0.50241715,-0.46018484,-0.8432244,-0.64036196,-0.27339172,1.1187755,-0.41834995,-0.18619433,0.3447538,-0.16213313,-0.27600348,0.13715418,0.51574403,-0.056437988,-0.03191697,-0.685646,-0.08800685,-0.043061633,0.23582126,-0.16948445,0.12086443,-0.3218213,0.6321457,-0.11239933,0.63030344,0.308281,0.13438728,-0.121709175,-0.34329605,0.074547745,0.90124637,0.35457632,0.04957511,-0.17744003,-0.2121221,-0.34821174,-0.101250514,0.06905569,0.5583171,0.65270346,0.026093794,0.021777255,0.2662051,-0.24619913,-0.08512624,-0.16133308,-0.25584257,0.002971809,0.14069507,0.53706616,0.72879416,-0.17616859,0.4314455,-0.14140628,0.25789636,-0.27871615,-0.48024365,0.6086802,0.57204866,-0.17234084,-0.15319027,0.4983668,0.31990284,-0.15364991,0.37567988,-0.45911434,-0.49443525,0.5499886,-0.017163744,-0.2874369,0.15764628,-0.36223993,0.085707925,-0.8898614,0.3753849,-0.1682758,-0.6956021,-0.43309262,-0.16964062,-3.7781823,-0.046194077,-0.08655423,-0.07353512,-0.2005398,-0.16955742,0.4666873,-0.5487558,-0.4691032,0.101293385,0.045133717,0.65503126,-0.02681254,0.1445352,-0.26615432,-0.19807205,-0.1518738,0.2704337,0.061687347,0.3303409,0.08708328,-0.33457586,0.13888843,-0.3490723,-0.43443537,-0.012744163,-0.53026944,-0.5286085,0.06959739,-0.2886715,-0.2713749,0.8338459,-0.58887875,0.017882267,-0.12828183,-0.13433959,-0.33300325,0.36098304,0.20371132,0.13758115,-0.045612566,-0.05365587,-0.15093586,-0.3249758,0.13793285,0.0922985,0.28488922,0.31031847,-0.11203977,0.07769264,0.557417,0.515679,-0.037384838,0.77480036,0.11920892,-0.15747336,0.33880076,-0.2711307,-0.4050868,-0.7265129,-0.32917294,-0.21358636,-0.4799436,-0.28455994,0.03511693,-0.29254287,-0.8759433,0.41647443,0.10430772,-0.0438686,-0.17785302,0.17773816,0.25300208,-0.09191574,0.11825796,-0.032220528,-0.18820718,-0.62901074,-0.5167391,-0.6985222,-0.5786352,0.045216016,1.0549587,-0.11401879,-0.1952313,-0.09746113,-0.24907725,0.14670609,-0.020485643,0.11000274,0.1737849,0.29638842,-0.093472995,-0.8931989,0.41987225,-0.47095457,0.06538765,-0.6224041,0.0075044823,0.8211355,-0.60073155,0.4542933,0.39018965,0.24857475,0.010521208,-0.5292774,-0.32139227,-0.06568719,-0.14304869,0.600823,0.12020551,-0.7000106,0.49916226,0.20143414,-0.14556026,-0.5582319,0.50508124,0.11161334,-0.11532075,0.07977191,0.28519222,0.04855976,-0.100666046,-0.14560592,0.23524512,-0.60015017,0.26903448,0.29744586,0.0958985,0.44303244,-0.10926945,-0.31602117,-0.5394118,-0.34808996,-0.32488665,-0.29510707,-0.09417881,0.09461718,0.15225251,-0.0014204468,0.12042476,0.34139276,-0.412539,0.24250662,-0.20512293,-0.12253889,0.35079214,0.5740877,0.3418409,-0.52457076,0.6426563,0.11250415,0.102624126,0.037774056,0.039341133,0.36381692,0.2548853,0.21280786,-0.0861773,-0.11878199,0.18799594,0.84874153,0.24386944,0.25901094,0.15078758,-0.24570557,0.2635381,0.16606747,0.30793706,0.039431103,-0.41618568,-0.12384302,-0.07881498,0.13554017,0.36705872,0.14638948,0.11357598,0.0038407233,-0.06467002,0.16364643,-0.012950876,-0.029840572,-1.1097695,0.46307564,0.20776738,0.6493473,0.42530754,-0.08684873,0.17218255,0.5942073,-0.2625001,0.15791528,0.119473636,-0.018186806,-0.29783297,0.49042675,-0.5056695,0.37207755,-0.13180394,-0.06585157,0.029691288,0.10676242,0.38408685,0.89579993,-0.12245011,0.15548433,0.16208671,-0.36377516,0.11810815,-0.36403757,0.020066325,-0.44926047,-0.2661439,0.68013483,0.4904596,0.35838,-0.41235018,-0.015392729,-0.024907291,-0.1886263,-0.057688117,-0.15237959,-0.21090014,-0.043872166,-0.69086134,-0.27313328,0.5768565,-0.018598199,0.055347003,0.19687568,-0.3199943,0.3837747,-0.11226629,0.04191492,-0.061249573,-0.54182714,-0.17410977,-0.43136308,-0.45889595,0.2681115,-0.3036518,0.33972698,0.16125445,-0.09790567,-0.13281058,0.287587,0.2506996,0.67933387,0.10625712,-0.13071331,-0.40688053,0.0031089294,0.30699342,-0.3119833,-0.17570254,-0.40188125,0.07835726,-0.6230751,0.3885753,-0.24667872,-0.07536324,0.02487613,-0.10288628,0.12564574,0.47192016,-0.23904505,-0.13144723,0.105480924,0.076084636,-0.26743844,-0.015755763,-0.35954693,0.21223474,0.041506264,0.014394947,0.10244507,-0.013489945,-0.029688725,0.1909791,0.23873101,0.3347889,0.27414143,-0.04600231,-0.24180914,0.04072501,0.07884579,0.4522312,0.26578695,-0.13761382,-0.33400935,-0.24539945,-0.19560453,0.5129592,-0.17112187,0.04968386,0.084870555,-0.39846757,0.69212765,0.1065665,1.0561489,0.17647783,-0.39211616,0.10482639,0.50748163,0.09190522,0.12796018,-0.19165395,0.8449305,0.44798157,-0.13268985,-0.13041405,-0.44047144,-0.34714216,0.29213026,-0.33279562,-0.26391363,-0.17505625,-0.5997954,-0.07810298,0.021839838,0.07929081,0.05970315,-0.08737753,-0.1509287,0.15284811,0.2520458,0.4423854,-0.6362793,0.028479671,0.32375112,0.13166115,0.045414805,0.088932075,-0.43020323,0.4735232,-0.6352329,0.20438123,-0.45553303,0.10627215,-0.1303641,-0.21931055,0.27357188,0.16894627,0.32363722,-0.30730477,-0.27200907,-0.27578625,0.54903823,0.20845483,0.30696195,0.67691374,-0.13933884,-0.09132864,0.1623903,0.47476393,1.045543,-0.16905831,0.110678636,0.39536265,-0.32195926,-0.48205826,0.15408921,-0.33936116,0.18727753,0.054909058,-0.2978137,-0.3422258,0.338623,0.15005438,0.16081643,0.11944031,-0.6368212,-0.11722513,0.5365331,-0.19449762,-0.33474213,-0.23981775,0.1374216,0.5999132,-0.54518276,-0.2436308,0.033132058,0.2326683,-0.21221583,-0.57173425,0.008896112,-0.3108787,0.33866766,0.17857155,-0.29923862,-0.06103563,0.18660195,-0.45720953,0.23187287,0.27786437,-0.38209358,-0.035731494,-0.2925516,-0.0544937,0.9935134,0.03383332,0.09099943,-0.6608495,-0.47642687,-0.78961384,-0.3215116,0.22797461,0.24049424,-0.096075706,-0.49144635,-0.20163879,-0.07448775,0.14103213,0.041782744,-0.58998436,0.50850046,0.07540246,0.30511776,0.0010046789,-0.93329734,-0.06603316,0.11927908,-0.30164856,-0.42631823,0.58796734,-0.07313151,0.82593185,-0.039681785,-0.008164765,0.0876782,-0.60228235,0.3349324,-0.4481587,-0.033377435,-0.6184345,0.18456702 -647,0.21710028,-0.5110107,-0.48979387,-0.16708288,-0.19190134,-0.14616512,-0.14355081,0.58925015,0.3304486,-0.008847269,-0.23483635,0.04291961,0.129014,0.5809526,-0.18642563,-0.81344545,-0.27179754,0.08323652,-0.6452563,0.3123191,-0.5242274,0.048086036,-0.15763783,0.3686698,0.043453857,0.31380364,0.10734387,-0.11106448,0.1866077,-0.12528332,-0.25977,0.18331252,-0.30613402,0.1589403,-0.03182219,-0.103403874,0.10964294,-0.44715405,-0.32980594,-0.71015424,0.16059957,-0.97663516,0.4647893,-0.03629376,-0.25276306,-0.21745473,0.15561679,0.36279634,-0.3946365,0.016206928,0.27854168,-0.2615894,-0.17277935,-0.26467383,-0.12301976,-0.5771862,-0.42482805,-0.1806553,-0.40980452,-0.39235446,-0.043604385,0.11952476,-0.54737043,-0.10946712,-0.2726823,0.35352355,-0.38729277,-0.14624362,0.58567965,-0.4891282,0.362389,-0.47181642,-0.063636765,-0.045492474,0.49616775,0.19434732,-0.22133623,0.21501733,0.21851726,0.20351061,0.31359455,-0.21663703,-0.36797354,-0.38159588,0.3661474,0.6510212,0.0013409961,-0.44323558,-0.24771014,0.15181886,0.28596926,0.62609935,-0.009635378,-0.2316631,-0.02107426,-0.07644767,-0.21235873,0.65288186,0.5293195,-0.104773395,-0.25884125,0.33806401,0.44143298,0.322093,-0.2540326,0.12076721,0.05793823,-0.4227506,-0.17483632,-0.025301002,-0.12095225,0.48261416,-0.23135585,0.20161095,0.8975368,-0.14028107,0.079278514,-0.17526346,-0.093627885,-0.38467285,-0.51033884,-0.09752007,0.23538937,-0.51278365,0.2730393,-0.25955963,0.77328014,0.16213134,-0.59964734,0.30324206,-0.5259539,0.4097375,-0.09432446,0.5883898,0.5620734,0.48371106,0.4244732,0.9400911,-0.12927078,0.30749762,0.10336013,-0.5645079,0.095051855,-0.22200494,0.03601949,-0.42506582,0.29565847,0.054160263,0.12014162,0.15558574,0.14446922,-0.60568994,-0.048176624,0.29565275,0.9141954,-0.22635843,0.0923362,0.81765455,0.9565651,0.8975804,-0.029110195,1.1612908,0.26998568,-0.24758531,0.2167756,-0.29400948,-0.80705935,0.18068415,0.4071229,0.1984815,0.37907562,-0.2327611,-0.18267582,0.41828936,-0.46205667,0.06896209,-0.058026813,0.24189726,0.16227153,-0.28619358,-0.6687712,0.030624064,-0.099258296,-0.13671963,0.091190666,0.27448934,-0.1759751,0.55953753,-0.1336988,1.0980967,-0.09242363,0.14887014,0.15204753,0.5713176,0.24620663,-0.094413064,0.28822318,0.54227525,0.47764972,-0.033927776,-0.7802706,0.31712672,-0.37665316,-0.44891825,-0.13780053,-0.38069734,-0.2674065,-0.10450358,-0.3504098,-0.08838435,-0.14959139,0.012126782,0.4074603,-2.8929193,-0.2143168,-0.35474518,0.31284148,-0.3351373,0.060667,0.10301609,-0.52119577,0.1638301,0.32574424,0.69325024,-0.7207924,0.35030147,0.6596877,-0.686502,-0.088221125,-0.7264491,-0.03600903,-0.02890092,0.5485779,0.15756834,0.02182863,0.024453497,0.06999766,0.7528259,0.24204923,0.26312116,0.4126938,0.5327521,-0.08138743,0.42074624,-0.22972146,0.67516357,-0.3169408,-0.053141262,0.18443508,-0.28006652,0.3657737,-0.30089635,0.022642743,0.6129977,-0.26596463,-0.8645515,-0.32543787,-0.30916527,1.1323416,-0.54054874,-0.42354164,0.22400178,-0.15221262,0.035150897,-0.007842671,0.6482265,-0.009437734,0.08118013,-0.6170251,0.21092206,-0.19143902,0.085432045,0.040390253,-0.1778336,-0.2999196,0.7712301,-0.10420012,0.74094564,0.2810289,0.14577205,-0.13352326,-0.3372693,0.015131452,0.43521327,0.43437472,-0.11058144,-0.1534608,-0.26894835,-0.056080926,-0.28938425,-0.02246042,0.8455101,0.6649499,-0.2771711,0.075158365,0.3541773,0.056191422,-0.024360353,-0.07517769,-0.2492194,-0.099242084,0.09893865,0.42831343,0.7595894,-0.32129395,0.31548557,-0.07298761,0.27991194,-0.037361618,-0.6061531,0.65109444,0.4711819,-0.23639907,-0.10969107,0.5472719,0.51276225,-0.437449,0.42786282,-0.6829833,-0.013358398,0.75579107,-0.2472154,-0.6101072,0.2201531,-0.15349713,0.050320193,-1.0061898,0.22285038,-0.3502394,-0.63348407,-0.436947,-0.07060175,-3.5684366,0.06415944,-0.34655523,-0.30660218,-0.47828397,-0.028638504,0.2187966,-0.6540502,-0.76260585,0.2861223,0.25460938,0.47019625,-0.14687121,0.11268663,-0.40987265,0.03495296,0.003645691,0.32072794,-0.098855086,0.28058273,-0.19123554,-0.45461723,-0.10734894,0.27474597,-0.53688717,0.33225295,-0.65140605,-0.30364138,-0.043790754,-0.58547217,-0.051075697,0.54375786,-0.3980342,0.009960627,-0.052626207,0.22235017,-0.34534457,0.10657487,-0.0871218,0.30708548,0.17610413,-0.033505537,0.25437838,-0.15017737,0.5660608,-0.12187831,0.55058384,-0.03115861,-0.11861146,0.13512902,0.60989946,0.58910775,-0.2088068,0.95498365,0.4267537,-0.123604804,0.32397622,-0.22625071,-0.15497422,-0.5880709,-0.51401967,0.018868767,-0.40282252,-0.7181187,-0.002135797,-0.22082125,-0.7483485,0.52900934,0.17765476,0.57287556,0.057660673,0.120949194,0.5272556,-0.17286563,0.018549008,0.17887114,-0.12778665,-0.52631533,-0.07996371,-0.73689884,-0.47940883,0.26605642,0.84012204,-0.2570667,0.0009785945,-0.19082516,-0.5824886,-0.22865658,0.27097407,0.17901708,0.22791333,0.36979917,-0.004882826,-0.5362901,0.3901303,0.027322017,-0.13043952,-0.5345671,0.14349957,0.6938229,-0.7221594,0.7134726,0.23623894,-0.011807405,-0.35052958,-0.42328042,-0.33056936,-0.033754133,0.0017623956,0.49832115,0.17479181,-0.6173746,0.4273015,0.2613631,-0.47042057,-0.63249683,0.23972966,-0.26773158,-0.0246359,0.005399054,0.17742372,0.17977348,-0.26183775,-0.18862009,0.2574042,-0.33780175,0.24397029,0.15864919,-0.09631235,0.42628434,0.13040042,-0.13963826,-0.8961714,-0.09545751,-0.7639055,-0.049433485,0.46344146,-0.16424458,0.037653092,-0.07488132,0.038278334,0.25115147,-0.17795894,0.112491965,0.12406297,-0.41953275,0.4842222,0.5329828,0.22986904,-0.50625557,0.5998625,0.39127037,-0.22288066,0.15897958,0.21194205,0.37358618,0.028229333,0.63130915,-0.2654741,-0.117371514,0.21820536,0.93463236,0.19780521,0.5802216,0.2343564,0.014767867,0.42198867,-0.11194214,0.26228613,-0.096096404,-0.551962,0.05699488,-0.1711815,0.11337033,0.5242484,0.4766016,0.41580045,0.107690595,-0.284908,-0.009837794,0.32723033,0.09830236,-1.3699481,0.4229293,0.3436031,1.0352494,0.2737306,0.26872686,-0.19222897,0.8037104,-0.23157527,0.044676658,0.53295463,0.08099307,-0.56086123,0.79531115,-0.65784466,0.45155373,-0.089598686,-0.15541811,0.27839568,0.35835835,0.37574556,0.60851437,-0.13251473,-0.118763,-0.2058118,-0.2863069,0.04246768,-0.36916077,-0.0603828,-0.41075227,-0.48537177,0.5031943,0.6017144,0.3261854,-0.14627768,-0.091739126,0.11847043,0.07689551,0.2241304,-0.12355943,-0.18519458,0.077102415,-0.565301,-0.24819742,0.6130957,0.022437232,0.3316169,-0.38970262,-0.4384386,0.13265909,-0.26260284,-0.111209035,-0.012989716,-0.57782155,0.05409775,-0.13365628,-0.83270246,0.4654121,-0.20054103,0.22546245,0.123841286,-0.124669425,-0.09056535,0.054993305,-0.22363442,1.0391225,-0.17505664,-0.28364775,-0.521363,-0.0241215,0.16000949,-0.18971421,0.029816281,-0.41016462,-0.06640358,-0.29513356,0.45876637,-0.10943497,-0.5579052,0.19459438,-0.24033284,-0.13670133,0.58141834,-0.109684944,-0.21369225,-0.062051106,-0.37644842,-0.55556655,-0.22778769,-0.3609611,0.25678918,0.24850518,0.18561038,-0.121156864,-0.1028564,0.05393919,0.49305236,0.0034005968,0.36306164,0.24194184,-0.013733284,-0.18065745,-0.06826493,0.21921197,0.48229778,0.22332793,-0.042262845,-0.12739295,-0.5790562,-0.40576723,-0.13512439,-0.10638326,0.5496536,0.056956347,-0.29545763,0.8190495,-0.012235078,1.18982,-0.010923635,-0.5038345,0.16146308,0.6145558,0.05296847,0.085945815,-0.33740222,0.95886785,0.52289397,-0.05287033,0.013974374,-0.7351376,-0.040762316,0.4786793,-0.3226744,-0.034748003,0.038522426,-0.52737933,-0.2896041,0.31745094,0.030110516,0.36062118,-0.14801511,-0.119501464,0.024481183,0.10024469,0.43509814,-0.5697311,-0.39089143,0.17835212,0.19329333,-0.0066070124,-0.09905877,-0.40038022,0.40022346,-0.6115995,0.2259735,-0.51831937,0.16759925,-0.42180434,-0.15305421,0.21446423,-0.3291922,0.45692328,-0.37858915,-0.4525965,0.008126909,0.5012755,0.019110886,0.1192697,0.64375186,-0.30745667,-0.012521828,0.23865533,0.7506153,1.2258954,-0.61816007,0.1789775,0.3898494,-0.5942257,-0.7727881,0.35870486,-0.30690962,0.11885395,-0.023411041,-0.3871877,-0.59718376,0.22668332,0.089424044,0.09559655,0.23540455,-0.42954433,-0.28068125,0.30500498,-0.5079641,-0.26754436,-0.3188422,0.2900264,0.80391794,-0.27949217,-0.5745868,0.1232842,0.2097438,-0.14528783,-0.4476639,-0.0013558011,0.038166977,0.2827226,0.021350466,-0.4168658,0.04410521,0.072998516,-0.47219285,0.17413622,0.05974168,-0.30802718,0.3672458,-0.25564167,-0.23352534,0.96183324,-0.49041188,-0.08726423,-0.88926464,-0.4309902,-0.7878841,-0.54141086,0.33847857,0.097288184,-0.018911958,-0.5396833,0.11405382,-0.05046513,-0.1508378,-0.15931198,-0.51950175,0.46657676,0.0068653314,0.58079875,-0.32852614,-0.8913193,0.2893113,0.26985013,-0.043484602,-0.6832532,0.64440316,-0.14600392,0.9028885,0.0689085,0.12610592,-0.12835278,-0.4416936,-0.041303538,-0.26738933,-0.3178789,-0.8370531,0.3303577 -648,0.6565766,-0.58204496,-0.79244345,0.04423376,-0.0980864,-0.02889831,-0.4810275,0.5529793,0.19451687,-0.2944923,-0.28679264,-0.10757612,0.023162957,0.835745,-0.08603004,-1.0231092,0.042402614,0.1285729,-0.88607883,0.95980245,-0.34721,0.36601952,-0.16835335,0.58768594,0.35529917,0.37234554,0.4188997,0.2290061,-0.16222708,-0.069297515,0.06875036,-0.22102384,-0.54160345,-0.010601473,-0.0147138415,-0.50394565,-0.17986047,-0.39119112,-0.44306487,-0.8955762,0.5286554,-1.0159135,0.49647933,-0.048240006,-0.44526806,-0.02211957,0.092024215,0.5128347,-0.26678032,-0.05126194,0.023669403,-0.1114594,-0.1047539,-0.26094276,-0.2949582,-0.675012,-0.64989644,-0.090033434,-0.8133329,-0.18091753,-0.128299,0.15308604,-0.43983236,0.069224596,-0.030771494,0.042104185,-0.6113881,-0.528725,0.39610296,-0.28754395,0.14239581,-0.5730325,-0.07266308,-0.18110548,0.27099293,0.04709331,-0.09180322,0.21425319,0.1549572,0.4886852,0.1774482,-0.16102487,-0.26467177,-0.13813245,0.15983579,0.5791303,0.11240274,-0.72024643,-0.36557752,-0.0077948645,0.5143735,0.20943153,0.31991854,-0.27850437,0.01266654,-0.0039784787,-0.2035534,0.5477377,0.46324676,-0.5138884,-0.15874417,0.5426463,0.5941254,0.534016,-0.134666,0.22208276,0.049039103,-0.40716544,-0.18796867,0.066482484,-0.22059445,0.6780467,-0.0060156793,0.50482905,0.66628313,-0.22276978,0.25190488,-0.10821241,-0.052270006,-0.37388998,-0.09327233,-0.14677683,0.23492952,-0.41358313,0.12566231,-0.18978675,0.5593882,0.29756218,-0.42721176,0.53637016,-0.58487475,0.27250713,0.038161002,0.621766,0.81401074,0.37064347,0.26963705,0.8201745,-0.15762678,0.052993994,-0.060720444,-0.18120176,0.200524,-0.24704342,0.10291525,-0.51822585,0.27610308,0.18444924,-0.11128887,0.096082136,0.8848467,-0.52317303,-0.19384946,-0.15673816,0.71380836,-0.2786499,0.13978882,0.90333635,1.0607669,1.0029784,-0.013694435,1.4093807,0.5103174,-0.21935213,0.06891111,-0.11440476,-0.89470613,0.17033759,0.5465203,-0.22973366,0.973303,0.105542615,-0.20507622,0.51219726,-0.3076402,0.106045224,-0.0913322,0.14609678,-0.19350488,-0.115955696,-0.66684026,-0.1469241,-0.039649017,0.034273367,0.27384096,0.4362022,-0.40100947,0.32136148,-0.05894959,1.6392901,-0.34498507,0.13043807,0.017975831,0.7050716,0.43518767,-0.17498021,-0.2704814,0.4365631,0.4880247,-0.084360614,-0.81035244,0.13202575,-0.43442154,-0.40624428,-0.20768781,-0.324912,0.0027176081,-0.05883004,-0.22374758,0.013998792,-0.036236312,-0.28778315,0.2727217,-2.1707606,-0.6373487,-0.3180066,0.52088356,-0.3204367,-0.22264926,-0.07683508,-0.37357548,0.4108838,0.34290054,0.55654967,-0.7110585,0.3038655,0.44236094,-0.6310387,-0.016926004,-0.4643084,0.16114089,-0.036899816,0.7649784,-0.31133297,-0.38732567,0.19298653,0.42150822,0.41981784,0.085731976,0.027293187,0.3664179,0.48560467,-0.13535173,0.2113466,-0.17047642,0.609223,-0.44333926,-0.17825334,0.32214722,-0.3330191,0.7051923,-0.33423874,0.22570725,0.3979668,-0.56439525,-0.9247532,-0.35392344,-0.17083816,1.0602463,-0.601081,-0.5507253,0.13552853,-0.19909282,-0.13831453,0.025661957,0.67190176,-0.16197744,-0.11686947,-0.6872901,-0.0047931285,-0.11560981,0.20095265,0.00049526617,0.16066971,-0.2670231,0.83217317,-0.03588519,0.45533282,0.16486208,0.41002837,-0.23390241,-0.5097215,0.2937709,0.80853826,0.6082472,0.103968546,-0.21720889,-0.22624464,-0.46048313,-0.5166691,0.16534843,0.6712092,0.93457156,0.022709353,0.05026292,0.20954962,-0.12096095,0.09733029,-0.23671618,-0.30808946,-0.053742446,0.09319894,0.61360455,0.7428226,-0.19130412,0.58445126,-0.105549954,0.2467784,-0.15101482,-0.49395117,0.8047396,0.99950874,-0.37718242,-0.063067205,0.54370266,0.4550901,-0.6005472,0.76447046,-1.065932,-0.34798956,0.5622861,-0.06545673,-0.45897263,0.41308492,-0.32340875,0.3110014,-1.141448,0.2967055,-0.21110544,-0.20695758,-0.4748518,0.05710253,-3.607196,0.25780258,-0.19782324,-0.2747318,-0.30963588,-0.14637022,0.22178419,-0.75840193,-0.9197737,0.0934924,-0.053575765,0.8116247,-0.1937577,0.21229109,-0.228888,-0.49549204,-0.30403042,0.115159035,-0.046755236,0.5369242,-0.16749991,-0.47046262,0.031228323,-0.0035387338,-0.48486692,-0.044023644,-0.8237152,-0.42155433,-0.4057645,-0.7568618,-0.089938074,0.6406921,-0.098339394,-0.024463495,-0.3068897,0.015932733,-0.23261213,0.44773823,0.11811032,-0.04997263,0.2458344,-0.08444466,0.14592114,-0.26244053,-0.010702714,0.031594787,0.3847344,0.23894349,-0.33800155,0.28958303,0.6396004,0.7191376,-0.04166134,0.7496166,0.47583634,0.00031681656,0.34827214,-0.22761889,-0.31147033,-0.43633097,-0.3364637,-0.23642509,-0.36183578,-0.68449056,-0.5249573,-0.2771049,-0.8198687,0.430593,0.17848423,0.64963824,0.06453069,0.3162504,0.5277239,-0.1517405,0.021053303,0.14163385,-0.3505749,-0.6273568,0.039730404,-0.6814911,-0.66449386,0.6583883,0.5590948,-0.2203147,-0.1951524,0.17381394,-0.4261365,0.07664124,0.03231888,0.14933464,0.0100914715,0.25199035,-0.020019222,-0.65753686,0.57223,-0.27176747,-0.24774604,-0.6199187,0.058201253,0.63659024,-0.66788054,0.29194793,0.31191525,0.14518422,0.0049932124,-0.43228874,0.06365365,0.27386734,-0.018992841,0.25940615,0.2735507,-0.6919626,0.36952272,0.23398407,-0.36010423,-0.6980717,0.69172513,-0.010985164,-0.038023062,-0.38685954,0.52061796,0.06835692,0.09287943,-0.66640383,0.25082007,-0.65454304,0.035832368,0.3859085,-0.03410187,0.54435146,-0.13173504,-0.36953112,-0.6323546,0.21041605,-0.7368024,-0.11232176,0.5302971,0.043546353,0.15157327,-0.2365547,0.31220135,0.30841032,-0.5524722,0.1264913,-0.08032235,-0.34604612,0.58612037,0.630324,0.48584142,-0.4848435,0.7518834,0.059716392,-0.0066513717,0.16561463,-0.09130365,0.48397884,0.19975224,0.49236307,0.32601717,-0.10473589,-0.016329665,0.8455982,0.15521199,0.40734857,0.27075595,-0.21813521,0.15267491,0.31501704,0.30724177,0.21067524,-0.44848472,-0.1129754,0.08561518,0.10659826,0.7433906,0.36815703,0.31052923,-0.012416986,-0.54172385,0.19171907,0.22330853,-0.15792312,-1.441098,0.37244847,0.39318147,0.678744,0.4973089,-0.074868366,-0.060509406,0.5110942,-0.19389287,0.03462626,0.34019467,-0.044091463,-0.8138447,0.7489854,-0.7093024,0.53570616,-0.2624141,-0.03132015,0.14324327,0.26219946,0.45809278,0.8080572,-0.10225359,-0.06810145,-0.1461645,-0.25651568,-0.110333025,-0.25272077,-0.042350274,-0.47729135,-0.47800606,0.5522543,0.4975776,0.21932125,-0.03835942,-0.006962558,0.008741085,-0.12781553,0.39478025,-0.11824,0.2827509,-0.12389429,-0.753548,-0.50528026,0.42238802,0.063984066,0.25906712,-0.09515935,-0.20047359,0.23820396,-0.112629935,-0.04588159,0.049801815,-1.0494926,0.1302959,-0.5210799,-0.5602825,0.34280863,-0.026626289,0.35422397,0.19091702,-0.035881393,-0.3002322,0.37622896,-0.12983318,1.0579865,-0.094373085,-0.5316151,-0.43272948,0.32627854,0.35497582,-0.43045887,-0.034764785,-0.29877397,0.04341898,-0.6628243,0.70169,-0.15828517,-0.36792874,0.14642194,-0.31710857,-0.06315595,0.5201514,-0.39376777,-0.32622877,-0.019474406,-0.2915361,-0.39563176,-0.48709282,-0.27946815,0.057371162,0.09280278,-0.06794038,-0.25433114,0.17626476,0.10638748,0.58746517,0.047578227,0.36423534,0.7312075,0.35281748,-0.3089262,-0.22222643,0.6482026,0.55166984,0.17676817,0.071687035,-0.43096113,-0.70456946,-0.68513936,0.085223064,-0.17844498,0.24375069,0.2586341,-0.286578,0.6958781,0.24898596,1.2013857,0.021672273,-0.52752036,0.41383296,0.76531786,-0.0764191,-0.31760025,-0.45863762,1.1884172,0.5114846,-0.19128087,-0.09392907,-0.31828454,-0.53387356,0.49486572,-0.5190318,0.033585448,-0.023681536,-0.7189308,-0.2556625,0.2006001,0.3982817,-0.000268507,-0.12603126,0.237149,0.18907934,0.030795107,0.3435487,-0.5922932,-0.46582612,0.4841447,0.05660342,-0.16794555,0.014473555,-0.35041803,0.5195585,-0.89886254,0.09736412,-0.6079858,0.20965724,0.11636369,-0.6289607,0.13483196,0.13919832,0.56504166,-0.50807256,-0.47188625,-0.28385732,0.4967479,0.231005,0.11329211,0.6565777,-0.3600405,0.06367211,0.016793514,0.7084833,1.2563002,-0.059405725,0.27943182,0.14911203,-0.45330054,-0.9240862,0.34760886,-0.5204587,0.3591347,-0.30167946,-0.37057462,-0.9744633,0.2530947,0.012862897,-0.19980565,0.059722953,-0.62605846,-0.4628238,0.05712496,-0.23974268,-0.33194065,-0.53356,0.095974706,0.8478011,-0.3773684,-0.49944657,0.2789951,0.26009348,-0.08508731,-0.76002514,-0.12910447,-0.11746971,0.28782386,0.13422163,-0.44703072,0.071336955,0.15381983,-0.5545533,0.2017138,-0.058170922,-0.50374734,0.2517658,-0.41685924,-0.03087405,1.0912116,-0.25905314,0.0073820325,-0.8496884,-0.6556029,-0.9061183,-0.7386579,0.37006155,0.095847294,0.21119651,-0.6963607,0.3192502,-0.15511082,0.48529577,-0.022159642,-0.54407316,0.415759,0.07642922,0.6045034,-0.120514475,-0.865358,0.18924622,0.1891896,-0.1373372,-0.83495903,0.44614345,-0.252433,0.92898905,0.20454177,0.073594764,0.10993016,-0.6861824,-0.10043786,-0.31690758,-0.07758514,-0.6756034,0.38324013 -649,0.23373637,-0.11119105,-0.8064963,-0.1622205,-0.043835465,0.14870103,-0.29180533,0.4692216,0.066827096,-0.49479562,-0.004626743,0.054386433,-0.012531215,0.26963463,-0.18764271,-0.35529262,0.0329816,0.08927201,-0.38271993,0.19039913,-0.55970174,0.21741603,-0.17577103,0.18971786,0.095617756,0.23136188,0.13441375,-0.024236504,-0.0068829614,-0.111761846,0.037562147,0.27255386,-0.24924575,0.09243985,0.0057570967,-0.43033087,-0.036564317,-0.21793881,-0.31540143,-0.60683566,0.2818842,-0.778253,0.56022716,-0.0037289797,-0.32566306,0.3722894,0.16389063,0.26068237,-0.2638863,0.10843173,0.20005217,-0.16657871,-0.2151062,-0.22269824,-0.29097527,-0.38683885,-0.463016,-0.08601133,-0.63611615,-0.07264217,-0.21841356,0.11216947,-0.3777825,0.10812716,-0.23315959,0.30310857,-0.5713909,-0.23531123,0.101028904,-0.07134298,0.379964,-0.6440209,-0.09596327,-0.050697263,0.059636824,-0.22555657,-0.15621774,0.13579631,0.23061895,0.47820014,-0.2267396,0.008559628,-0.39879778,-0.23700094,0.13339303,0.4230107,-0.20062378,-0.14587861,-0.1097929,0.0063485145,0.30741057,0.20060396,-0.021276807,-0.25739264,-0.07701515,0.14224945,-0.3480746,0.36082098,0.4193961,-0.3599493,-0.0060899355,0.47333393,0.7663354,0.122641094,-0.15847518,0.18967065,-0.02247866,-0.41958475,-0.113592975,0.07644009,-0.121337146,0.4437444,-0.08481705,0.21196231,0.44832265,-0.19400644,0.0053655743,0.12676229,-0.016133659,0.008820017,-0.1871448,-0.33022594,0.23209222,-0.44784245,0.12918642,-0.17944679,0.5157948,-0.12152891,-0.6451245,0.382858,-0.38819188,0.006937305,-0.10725749,0.64853233,0.4883227,0.3959419,0.110820755,0.71813774,-0.5062193,-0.021321813,-0.19171034,-0.1770237,-0.012069776,0.05050745,-0.16387717,-0.53817886,0.14287186,0.086075395,-0.01884952,0.12999016,0.4376175,-0.36625734,-0.1309046,0.09474613,0.5805329,-0.38859144,0.0040871543,0.64596593,0.9970697,0.81683695,0.13305062,0.91043574,0.11036628,-0.082079805,-0.1697925,-0.2318769,-0.54203075,0.28128865,0.358109,0.18767296,0.29824975,0.020034425,-0.05407292,0.39118376,-0.25489426,-0.027086275,-0.12208672,0.22731556,0.10211792,-0.08588961,-0.36904728,-0.11302063,0.13591419,0.057074852,0.11446905,0.24330401,-0.3339558,0.27315038,0.16275647,1.3690184,-0.22009148,0.09182276,0.30401915,0.19698833,0.13268219,-0.14346318,-0.08368928,0.34688547,0.3613651,0.022398563,-0.5781333,0.16498083,-0.13792627,-0.5259388,-0.19604133,-0.22446674,-0.10776196,-0.1964936,-0.4093312,0.017850686,-0.008058772,-0.5276507,0.30663636,-2.68038,-0.124001615,-0.18531965,0.26498255,-0.1330474,-0.30344263,-0.2682267,-0.32942057,0.38376236,0.30710942,0.42225856,-0.4420571,0.50259936,0.38626784,-0.38642988,-0.041084584,-0.5860302,-0.09671186,-0.04639249,0.104262285,0.0883861,-0.12278464,0.0574208,0.24635765,0.4111152,-0.36546573,0.10016284,0.33799732,0.29430228,-0.052362658,0.40994212,-0.027783029,0.49977157,-0.3340513,-0.13525422,0.4265019,-0.48209566,0.1289427,0.0038139583,0.21362881,0.22489381,-0.4007072,-0.81527495,-0.5012244,-0.09312646,1.4837703,-0.27687544,-0.51748127,0.30817303,-0.2707587,-0.45873037,-0.12646596,0.24867281,-0.12620181,0.0017100573,-0.98226535,0.07151936,-0.14596996,0.21184571,-0.07818949,0.07391457,-0.32849953,0.5267761,-0.14921556,0.7000261,0.48056683,0.13097115,-0.22342435,-0.21546318,-0.005930436,0.9032206,0.490352,0.07647392,-0.17907412,-0.086527385,-0.24811006,0.058017243,0.21366218,0.42992508,0.6625802,0.15016674,0.12048667,0.184788,0.009490865,-0.12549166,-0.30898762,-0.16857061,0.0011813422,0.2359808,0.5217763,0.2591285,-0.021417115,0.26080456,0.028442772,0.2262914,-0.3647317,-0.44906166,0.2073762,0.54563904,-0.13389438,-0.46110523,0.46169117,0.5844288,-0.29073825,0.3617061,-0.6096029,-0.20100711,0.34713286,-0.21457838,-0.2908308,0.32714972,-0.39456895,0.21582481,-0.814506,0.13223968,-0.30098712,-0.64757603,-0.45008463,-0.27757996,-2.8108678,0.22531776,-0.05802496,-0.32572788,-0.09110592,-0.17580384,0.281147,-0.53604496,-0.6661802,0.04675772,0.18349715,0.60972965,-0.026441518,-0.1430948,-0.18507954,-0.25056532,-0.10805195,0.16559619,-0.030888954,0.2208913,0.036435183,-0.40550226,-0.049344547,-0.19338094,-0.42619643,-0.093071304,-0.31963605,-0.245933,-0.06956749,-0.35023242,-0.28201562,0.43230665,-0.35678664,0.03629562,-0.16981807,0.041172046,0.06718822,0.38629368,0.0913661,0.21554977,0.051435683,-0.10802333,0.112125136,-0.25530705,0.21819182,-0.06457241,0.059032638,0.48002142,-0.15655433,0.060130898,0.51085407,0.57991403,0.0040939967,0.8538983,0.37644798,-0.06598376,0.28304812,-0.27858546,-0.1780592,-0.53304404,-0.33712062,-0.05777284,-0.41265613,-0.34675902,-0.17601487,-0.24656935,-0.82748586,0.45514402,-0.07923798,-0.0052078883,-0.02611285,0.5094367,0.37920707,-0.09616761,0.032846164,-0.075956464,-0.08382143,-0.41213065,-0.4310332,-0.7936339,-0.370688,-0.05002795,1.1225841,-0.25027826,0.1526362,-0.03091797,-0.06990631,0.1475496,0.24089807,0.23887223,0.2983874,0.3061396,-0.17382394,-0.40255538,0.18224907,-0.26197392,-0.3187541,-0.54056853,-0.08802946,0.71022093,-0.50444925,0.3847571,0.37092534,0.13425204,-0.20779295,-0.71502185,-0.08402238,0.06994106,-0.34181297,0.52963006,0.23479046,-0.717638,0.50424606,0.48909563,-0.15979004,-0.5534821,0.54318464,-0.08043229,-0.16915156,0.009755262,0.41493618,-0.12513906,-0.03776231,-0.095839985,0.084015064,-0.27462018,0.32357973,0.31448123,-0.085771315,0.3987686,-0.28885612,-0.100657985,-0.5857813,-0.11933395,-0.5273272,-0.05986322,0.062154245,-0.06034371,0.2278414,0.12855399,-0.1858615,0.5031783,-0.39092138,0.105412215,-0.17764664,-0.28090575,0.3904579,0.39990625,0.23012023,-0.16463266,0.54892665,-0.0020360232,-0.09902855,-0.2582459,0.04492841,0.5722187,-0.10931762,0.3356353,-0.092776366,-0.10184079,0.36103046,0.78199756,0.20679717,0.36824608,0.10041297,-0.12519392,0.004908538,0.092119314,0.095364265,-0.14620413,-0.20851408,-0.031871542,-0.15575717,0.26247156,0.41522676,0.08764361,0.4966563,-0.23218828,-0.16788206,0.116283335,0.27306074,-0.074282095,-1.0254263,0.5180987,0.09773316,0.6291425,0.38395092,0.13383129,0.112568535,0.26813662,-0.28356877,0.15934786,0.2490237,0.07278033,-0.44638956,0.51077676,-0.7496049,0.43317512,-0.05345988,-0.0014849722,0.10003412,-0.09545564,0.51169235,0.738357,-0.02273594,0.089225724,0.09776099,-0.2580013,0.09824032,-0.27402508,0.0069564003,-0.48671228,-0.30918443,0.7624653,0.3708032,0.5209099,-0.18026362,-0.12106535,0.20807232,-0.03597646,0.16119164,0.011425578,0.2259595,-0.26417,-0.45453995,-0.20428361,0.37089244,0.28319937,0.058248147,0.009631491,-0.27921936,0.27205503,0.18771712,0.11274822,-0.027506063,-0.35734957,0.016998636,-0.30881086,-0.46239126,0.20089954,-0.36088118,0.31701508,0.17910023,0.0027333458,-0.36291105,0.16738652,0.15204997,0.673124,-0.060997445,-0.018143304,-0.24850026,0.33362377,0.25143233,-0.09265051,-0.071243055,-0.33257502,0.2331842,-0.814985,0.413849,-0.27557665,-0.20124461,0.32741445,-0.21307752,-0.02860415,0.5166111,-0.29862097,-0.20096417,-0.0036023974,-0.15365845,-0.2920895,-0.36437482,-0.22011565,0.19985205,-0.18495996,0.0139850695,-0.073483974,0.017305119,-0.0010223439,0.34153178,0.14523506,0.22926976,0.41818014,0.12923531,-0.49496096,-0.14713724,-0.033442743,0.5545874,0.05383458,-0.09196828,-0.36353073,-0.5273441,-0.061172,0.2768199,-0.22854978,0.33490688,0.21181759,-0.19112797,0.7473288,0.043490514,0.9404691,0.060806338,-0.2721893,-0.079573125,0.56230736,0.04701121,-0.1280323,-0.029175462,0.73475134,0.62014866,-0.12863325,-0.15372403,-0.27236858,-0.09566649,0.090098515,-0.2270293,-0.23510796,-0.042019766,-0.6756321,-0.25576648,0.24334823,0.2340719,0.087381996,-0.190049,0.15645863,0.22255538,0.051112656,0.23226894,-0.42146912,0.07105193,0.33414605,0.17777973,-0.063773505,-0.02209441,-0.40292627,0.27582887,-0.5965527,-0.0676235,-0.14808026,0.02820613,0.11429872,-0.2269412,0.22525182,0.098878354,0.13604932,-0.2572096,-0.16531162,-0.05545406,0.45729104,0.04662594,0.03998114,0.55912524,-0.23652233,0.23339967,0.06834064,0.42101562,0.95421976,-0.16303584,0.10431926,0.35098323,-0.30928773,-0.6654156,0.2176781,-0.4828481,0.25529632,-0.10505922,-0.3306545,-0.44552097,0.43915552,0.2339612,-0.1485203,0.062256765,-0.46577686,-0.19209363,0.1323963,-0.3610962,-0.20162414,-0.3463531,-0.05663785,0.5114938,-0.2125115,-0.2940258,0.022040566,0.44080874,-0.21260531,-0.5148324,0.15244718,-0.23595163,0.33428532,0.06513297,-0.1877669,0.057041008,0.13404134,-0.32106173,0.11733713,0.22390781,-0.21502675,0.12476646,-0.39973372,0.1347327,0.54438686,-0.17757468,0.007894198,-0.41740167,-0.46417326,-0.7862555,-0.20462802,0.4878958,0.050769772,0.044204537,-0.7163063,0.19243962,-0.11097527,-0.05980582,-0.10742843,-0.303989,0.5355595,0.06771715,0.21467218,-0.17886183,-0.54914564,0.09600291,0.05302957,-0.28855532,-0.2605597,0.5531893,-0.09442686,0.60334474,0.11261557,0.115090095,0.18363602,-0.5273864,0.25060445,-0.20680186,-0.24413384,-0.6372088,-0.13855381 -650,0.6549698,-0.1085608,-0.590624,-0.16729246,-0.42648864,0.09603627,-0.17026027,0.5703339,0.34329394,-0.31654358,-0.08509236,-0.081212096,0.172587,0.3655737,-0.1914421,-0.75465566,0.008946044,0.20675741,-0.42795333,0.51259327,-0.42969054,0.25288978,-0.1062165,0.4564991,0.10078358,0.25060472,0.09725953,0.02414764,0.076930895,-0.109946504,-0.14854217,0.3875874,-0.4718032,0.21290796,-0.12697068,-0.3651835,-0.011295349,-0.43456218,-0.23660207,-0.7382544,0.19353986,-0.5723104,0.43281677,0.019983536,-0.33227485,0.19618516,0.24859919,0.24996722,-0.2309773,-0.11235937,-0.053859506,0.04992572,-0.11976842,-0.13937587,-0.28295553,-0.41966364,-0.53152287,0.048337527,-0.40937948,-0.036489923,-0.23476414,0.17586136,-0.17260459,0.09389133,-0.02222268,0.5174213,-0.29350945,0.07347911,0.26866928,-0.16435774,0.18610239,-0.5399243,-0.18355285,-0.04139911,0.22575296,-0.18633568,-0.32311648,0.20673144,0.28544244,0.4715418,-0.13798836,-0.15044633,-0.40801463,-0.18455614,-0.062640004,0.53610384,-0.30895337,-0.5153416,-0.25995386,0.01127041,0.021747176,0.2914599,-0.026259528,-0.15149863,-0.070441015,-0.12782075,-0.29964092,0.34999564,0.4406104,-0.48585504,-0.22820206,0.32949385,0.5167072,0.15662411,-0.13023429,-0.008186383,0.076234676,-0.66698503,-0.16355456,-0.022251982,-0.08454395,0.39084116,-0.14948682,0.18515842,0.41038868,0.037158195,-0.1832514,0.31552675,0.08202345,-0.05055489,-0.5293066,-0.19633068,0.30121756,-0.4368711,0.20198406,-0.21427754,0.7042738,0.18852635,-0.7479339,0.26162475,-0.5651798,0.08188222,-0.10357795,0.4064861,0.73664564,0.3530996,0.14158699,0.76142234,-0.28413787,0.10510971,-0.18889461,-0.1528564,-0.01883029,-0.028730618,-0.09219502,-0.5539622,0.3511556,0.07786213,0.037533317,0.46393535,0.37129754,-0.60022056,-0.24902776,0.21852134,0.8638602,-0.24299,-0.23018034,0.75217336,0.90865666,0.9400645,0.050563462,1.0633434,0.10500783,-0.1879363,0.25591162,-0.15802003,-0.7288912,0.2920147,0.31408787,0.098797224,0.23753479,-0.058474902,-0.12902011,0.46259406,-0.10164734,-0.13787256,0.042675283,0.20044391,0.21638395,-0.0386344,-0.4070726,-0.3750035,0.031979084,-0.07348917,0.19387853,0.22789943,-0.21419899,0.4483675,0.045951895,1.5352963,0.027224438,0.02581715,0.1398017,0.36630827,0.40679404,-0.1425552,-0.20633395,0.32421497,0.2290974,0.08445321,-0.51378727,0.2760356,-0.18305644,-0.41327408,-0.076617554,-0.39732775,-0.1399421,-0.06481187,-0.41655323,-0.14349496,-0.22861542,-0.10476773,0.5706353,-2.8983014,-0.16561835,-0.04188909,0.22532634,-0.22544979,-0.4068943,-0.2342428,-0.4453586,0.4287946,0.34315115,0.5324615,-0.4939092,0.27717748,0.3790408,-0.6344762,-0.09475497,-0.59558976,-0.08700641,0.035124205,0.24919839,0.009526519,-0.13734545,-0.022173319,0.24156968,0.5302078,0.05095076,0.15545121,0.40222713,0.41774887,0.04088836,0.46446642,-0.14039569,0.52546966,-0.40561125,-0.22103684,0.36490604,-0.5183711,0.2685147,0.026093427,0.09528408,0.52998644,-0.5370227,-1.1836764,-0.64519626,0.0059138113,1.035796,-0.30340368,-0.31875426,0.19995458,-0.41956076,-0.2217545,0.11062043,0.4345247,0.032370765,-0.11198253,-0.7895256,0.027252316,-0.03144545,0.20816708,-0.04173889,-0.1254054,-0.32980317,0.67803705,-0.00076476164,0.5490615,0.1582688,0.13953762,-0.30984265,-0.38477892,-0.023186278,0.7926279,0.33217397,0.24854386,-0.22557208,-0.2007202,-0.53751504,-0.004000289,0.09025718,0.6981469,0.54017353,0.026259363,0.053964842,0.2753635,0.074951135,0.06694626,-0.12509255,-0.18601322,-0.19197093,0.056323882,0.5967531,0.56498986,-0.18990622,0.33865973,0.0048328126,0.35571358,-0.3270321,-0.40768868,0.54760754,0.95482635,-0.2167582,-0.446061,0.6206101,0.4941533,-0.21715716,0.40882966,-0.6241695,-0.3844106,0.37593895,-0.12402092,-0.24753077,0.12861171,-0.3189434,0.08517909,-0.87664133,0.0025732347,-0.33892632,-0.35515815,-0.5271968,-0.12008726,-3.4442043,0.3103173,-0.04135061,-0.15847905,-0.21098064,-0.11161681,0.22349058,-0.45503804,-0.7161985,0.14766045,0.09671249,0.75383866,-0.17703095,0.12025946,-0.25350538,-0.3333924,-0.33379152,0.14265864,0.10081343,0.40993747,0.029272089,-0.3782153,-0.057180297,-0.13114727,-0.45207193,0.115813695,-0.6004902,-0.39259455,-0.1432533,-0.5770731,-0.18160036,0.5921558,-0.44983584,0.037051167,-0.17767169,0.097994246,-0.13304405,0.18803796,0.029680863,0.14831413,0.029870884,-0.18720451,-0.011128085,-0.28012338,0.26226953,0.014874025,0.26771086,0.34277993,-0.1127555,0.20594247,0.5280834,0.7150563,0.122406006,0.86856735,0.3497397,0.09575592,0.39175972,-0.23254915,-0.2319717,-0.3418488,-0.13049291,-0.19794573,-0.3543268,-0.30363634,-0.12527768,-0.4025446,-0.69186676,0.42367977,0.09304158,0.07473355,-0.023224486,0.3492942,0.58068085,-0.32589865,0.09023857,-0.057016283,-0.12863237,-0.50684345,-0.3270742,-0.45307797,-0.3009563,0.09590813,0.9746577,-0.28413066,0.13752472,-0.10407354,-0.098331876,-0.075358644,0.37261847,0.091776714,0.2567194,0.42909497,-0.13987723,-0.5868834,0.34167022,-0.27689168,-0.32801253,-0.4685059,0.2927672,0.40933627,-0.60244006,0.6738507,0.3810751,0.2426426,-0.115638025,-0.5198687,-0.040292,0.10883814,-0.16283187,0.3190563,0.3880385,-0.7857065,0.48491988,0.39605373,-0.14485036,-0.7144353,0.5911048,0.0033457726,-0.51365966,-0.20473549,0.38301465,0.33883244,0.030335495,-0.21766283,0.038011532,-0.43307763,0.07151062,0.102860495,-0.027040944,0.34141642,-0.23731081,-0.05314839,-0.7550942,-0.021754852,-0.5322336,-0.28109145,0.24061522,0.038672473,0.0036287436,0.14607446,-0.019589577,0.37724286,-0.40179655,0.04968811,-0.25926685,-0.23321533,0.33920798,0.42489153,0.48487625,-0.38597134,0.5445753,0.011110567,0.10476917,0.067355506,0.1095688,0.41040212,-0.040168278,0.562384,-0.07268911,-0.18456936,0.12964478,0.5319847,0.14218765,0.13937488,-0.010760188,-0.015931621,0.18289609,0.008609996,0.0768005,-0.058873586,-0.47140202,-0.07688122,-0.33561167,0.019450216,0.58501434,0.15408406,0.21354611,0.07187124,-0.28805155,0.0632819,0.1692097,-0.097802006,-1.2764251,0.43947393,0.12429069,0.89569014,0.5705328,0.0075426227,0.08054258,0.58020073,-0.13337477,0.19932862,0.42465225,-0.03182152,-0.37062073,0.51957923,-0.66521496,0.5212189,-0.083041884,0.004907445,-0.034917608,0.035640627,0.47969297,0.91165245,-0.18425713,0.07052948,0.21392311,-0.32439712,0.15125541,-0.38508877,-0.0727747,-0.6332612,-0.12831418,0.7186858,0.43135568,0.3822146,-0.36445156,-0.056259565,0.13827293,-0.08095013,0.015184096,0.0463191,0.05538685,-0.14337318,-0.5872221,-0.14906296,0.5459036,0.114955045,0.2144558,0.08764672,-0.19032118,0.27951267,-0.114746295,0.0776741,-0.14159623,-0.58344686,-0.003341198,-0.3636155,-0.5169001,0.46319252,-0.18525492,0.16651845,0.20147285,0.08398388,-0.38570327,0.34226605,-0.016990807,0.7896649,0.0042770314,-0.10221944,-0.4016618,0.09975102,0.19163063,-0.15259038,-0.2210007,-0.42889962,0.04794256,-0.5412701,0.4892264,-0.014431302,-0.3345184,0.15249227,0.014002063,0.11007263,0.5083392,-0.15410627,-0.17652042,-0.14065772,-0.06356991,-0.33654174,-0.22823404,-0.11165242,0.27961046,-0.039444756,-0.073081054,-0.12122516,-0.10270152,0.0008870278,0.3937455,-0.08198549,0.31522363,0.36694768,0.22930373,-0.27774826,0.118851386,0.24801132,0.51338565,-0.0919453,-0.15722215,-0.23691645,-0.3576321,-0.3444701,0.26119846,-0.03805286,0.3661827,0.11640493,-0.21892945,0.5685216,-0.139836,0.9315859,-0.050119143,-0.3425191,0.06755275,0.48087737,-0.052264664,-0.15699156,-0.35200754,0.82559747,0.52557427,-0.15285528,-0.09295273,-0.30860168,0.09602753,0.14232484,-0.1795793,-0.042402763,-0.07418863,-0.46695969,-0.291637,0.08263106,0.19811381,0.36214876,-0.14254855,0.017537406,0.14049579,0.06870029,0.21749146,-0.27778304,-0.044109304,0.16097207,0.37179074,0.009379174,0.14909656,-0.5256419,0.31464916,-0.5870525,0.104750395,-0.34237775,0.20260313,-0.3486763,-0.26407096,0.19239743,-0.037850063,0.23590255,-0.17475091,-0.34322193,-0.29208517,0.49445674,0.26157945,0.056031767,0.61178076,-0.24080524,0.106395245,0.21619503,0.59669924,0.82953465,-0.17854418,-0.24112926,0.2568799,-0.29823765,-0.55817777,0.19288458,-0.40866342,0.2125635,0.08678663,-0.08934682,-0.59381145,0.24616395,0.18860148,0.26160175,0.044194646,-0.70301056,-0.17213723,0.33946353,-0.24399574,-0.21145461,-0.30270913,0.09951687,0.6878931,-0.111910924,-0.16379164,0.15026416,0.17933036,-0.034551945,-0.79993385,0.09080834,-0.505251,0.35685396,0.17760266,-0.27271312,-0.25055164,-0.05090648,-0.49240205,0.2503832,0.12060719,-0.2967702,0.06926234,-0.44813594,-0.00886003,0.89248276,-0.11973957,0.3083908,-0.4849585,-0.47514382,-0.71972954,-0.26471075,0.4149031,-0.0035857516,0.02774881,-0.65924865,0.045975465,-0.18595025,-0.4042965,-0.08895184,-0.34566745,0.44315866,0.02496251,0.39547515,0.036732234,-0.8452129,0.19881167,-0.03148876,-0.25002858,-0.4331674,0.36211607,-0.110771105,0.8568738,0.09603989,0.052431963,0.4036133,-0.4654294,0.066632815,-0.26233593,-0.0036318642,-0.53700405,0.07367184 -651,0.32084367,-0.14680034,-0.72764355,-0.17724416,-0.42871663,-0.14537597,-0.021564212,0.7011375,0.3635851,-0.25464404,-0.13899274,-0.03782535,-0.19329569,0.40363836,-0.13528457,-0.7210677,-0.2134505,-0.042988636,-0.5831876,0.5308992,-0.25134534,0.28196853,-0.33117348,0.5567451,0.42970228,0.20466155,0.008725011,0.17788196,-0.020060072,-0.21622922,-0.013656827,0.28615028,-0.51674217,0.20464924,-0.37338865,-0.32137233,-0.11277992,-0.3977721,-0.35372072,-0.7843644,0.38829368,-0.582357,0.36161625,-0.02962889,-0.22751643,0.107204475,0.27198628,0.16801527,-0.08007422,-0.30878437,0.07977844,-0.0983369,0.096391864,-0.29154474,-0.5419926,-0.51682574,-0.56581795,-0.052489143,-0.5723486,-0.12519962,-0.24507426,0.091592275,-0.25041077,-0.17902385,-0.09627343,0.69788957,-0.32840186,0.17857304,0.29959542,-0.10131491,0.037270725,-0.67131335,-0.23968394,-0.11600493,0.06537047,-0.016840044,-0.36472648,0.53296757,0.058710042,0.06005954,-0.036783513,-0.288025,-0.3821511,-0.021692041,0.13631287,0.30385876,-0.36479318,-0.37560394,-0.032628063,-0.005196741,0.4119094,0.45697927,0.20401606,-0.18460883,-0.086996116,-0.08116032,-0.00048374213,0.665902,0.5357688,-0.06039925,-0.075996846,0.33136544,0.4051353,0.3066668,-0.28638893,-0.13986398,-0.12458082,-0.4502229,-0.13163224,0.24895811,-0.13883033,0.38871348,-0.039315738,0.033025358,0.62368816,-0.11793105,-0.01807388,0.11046652,0.08993809,0.17040561,-0.4680263,-0.086496636,0.26060653,-0.43679565,0.39347643,-0.16995965,0.6765694,0.35460678,-0.59470004,0.21607032,-0.68799555,0.14843348,-0.04004858,0.3807055,0.76248556,0.53605616,0.1616235,0.7189502,-0.20352767,0.2047582,-0.12675712,-0.10712572,-0.030121299,-0.33739808,-0.09731482,-0.42086995,-0.035339452,-0.29191753,-0.085585035,0.2201438,0.23683476,-0.464232,-0.35096577,0.28467262,0.88406724,-0.11631783,0.03387596,0.82936466,0.99012715,0.8968856,-0.069156736,0.6697578,-0.2042978,-0.18439604,0.33322796,0.018299699,-0.5937728,0.2956125,0.2968842,-0.25007313,0.13266002,-0.17465112,0.059002306,0.25467512,-0.3588414,-0.11504484,-0.16947725,0.25243276,0.34778294,-0.047715783,-0.23671794,-0.43196455,-0.08571667,0.015385637,-0.075494215,0.4606933,-0.24385327,0.2759951,-0.22113441,1.3698771,0.17435749,0.007176608,0.2867207,0.85336614,0.33546034,-0.2702297,0.040303223,0.34975353,0.108597465,0.23034772,-0.5783217,0.21399353,-0.40981087,-0.4429012,-0.025667645,-0.5009533,-0.27846757,0.062063158,-0.5770923,-0.19651969,-0.11258096,-0.10687273,0.56387866,-2.835691,0.019433241,-0.10761472,0.3657591,-0.2517389,-0.30570826,-0.04265868,-0.54090095,0.5664552,0.15849663,0.5383502,-0.3843678,0.12223606,0.4175823,-0.7186658,-0.020271663,-0.48451534,0.11724644,0.036075354,0.2778896,-0.12786716,0.028547296,0.1692512,0.028388243,0.6141583,0.124378406,0.09626475,0.4208438,0.35999715,-0.38997108,0.6111561,-0.28488642,0.44150975,-0.59751505,-0.22024243,0.3216113,-0.5819615,0.44633374,-0.04085847,0.07199491,0.62672275,-0.5534452,-1.0433676,-0.3842729,-0.05512252,1.1863883,-0.26953566,-0.42668313,0.24250828,-0.6327595,-0.042534914,-0.27847445,0.6842801,0.044285987,0.060828283,-0.47020018,-0.06798353,-0.13451715,0.13161363,-0.06747147,-0.09694116,-0.16242312,0.5619805,-0.05355213,0.4716411,0.23719954,0.20549837,-0.5659142,-0.50897783,0.07204281,0.48689264,0.3244651,0.086213306,-0.18109943,-0.20744991,-0.37310088,-0.12356795,0.22792567,0.8063842,0.5585137,-0.16141534,0.086366974,0.39513248,0.050745305,0.015226011,-0.19987026,-0.25195912,-0.40024722,0.18443817,0.60007286,0.8075727,0.09706958,0.39875224,0.20270084,0.32688972,-0.29934198,-0.4352565,0.275457,1.1415994,-0.20656888,-0.3978667,0.4363597,0.4937367,-0.30094188,0.39334553,-0.38696846,-0.3514533,0.66377157,-0.094188094,-0.63394994,-0.07987221,-0.23292837,-0.13205558,-0.57124114,0.14362505,-0.62159973,-0.48667014,-0.56309134,-0.18354617,-2.4239674,0.09855065,-0.23252806,-0.19552733,-0.27818435,-0.1699217,-0.018338352,-0.5604731,-0.6197338,0.06066286,0.13878366,0.7377764,-0.1834045,0.10826417,-0.42766306,-0.3016895,-0.29304677,0.2378406,0.4742896,0.46834323,-0.1415397,-0.2897518,-0.3081025,-0.0010212109,-0.48560196,0.03683304,-0.40858433,-0.23905611,-0.18262044,-0.6688114,-0.1130094,0.6247095,-0.39219195,-0.069739886,0.0429815,0.10533324,0.23493631,0.017243253,0.2448956,0.2996735,0.20500486,-0.18905331,0.20687246,-0.20876224,0.19444348,0.15540919,0.61655796,0.1279431,0.1412983,0.4042279,0.5383414,0.69592315,-0.17324477,0.87900823,0.35214233,0.12593475,0.40143046,-0.27625242,-0.42394778,-0.5364982,-0.081171274,0.24089548,-0.2640552,-0.320374,-0.0074308882,-0.35358146,-0.8957293,0.59676486,0.07307494,0.2860306,-0.07627914,0.14484684,0.599275,-0.3431244,-0.077789985,0.088553324,-0.024430353,-0.6555259,-0.33844566,-0.5394131,-0.47036436,-0.08909523,1.0665271,-0.2372497,-0.22047281,0.16798204,-0.36825708,0.106091425,0.24298818,0.010285272,0.078698605,0.28085706,0.13259004,-0.46329367,0.40886885,-0.041255593,-0.008931256,-0.5013004,0.49083132,0.54752487,-0.4801294,0.53177124,0.09932833,-0.00059713767,-0.4351167,-0.69390047,-0.0139107425,0.0039899074,-0.07413942,0.27352992,0.28621757,-0.7865137,0.27278182,0.114336364,-0.2312462,-0.7596338,0.548774,-0.13494761,-0.25795165,-0.18702294,0.40675718,0.3820974,-0.17634445,-0.12199478,0.37896478,-0.2693554,0.14212051,0.26181066,-0.055094875,0.028792597,-0.35401472,-0.14086531,-0.6783936,0.33678088,-0.50698227,-0.31413376,0.63841593,-0.12927178,-0.010359787,0.1034118,0.03627885,0.095721155,-0.10019211,0.17974265,-0.2250827,-0.41193148,0.49002874,0.42874545,0.7995485,-0.6019803,0.51062155,0.01859415,-0.05773612,0.5305025,0.29151165,0.3284841,-0.078182206,0.5610155,0.04216705,-0.19932547,0.03119023,0.743533,0.2407585,0.22177857,-0.09231086,-0.07861873,0.1800976,0.10037859,0.08107941,-0.26188377,-0.71663606,-0.00041175575,-0.15457596,0.05262872,0.3394199,0.04233677,0.17741486,0.043458343,-0.22509283,0.15392247,0.12721455,-0.08676626,-1.2393028,0.44755238,0.23833844,1.0444316,0.2719777,0.23715216,-0.19795388,0.71576285,0.033642605,0.0095807295,0.49047893,0.10673721,-0.38693196,0.4833203,-0.6431882,0.7983398,0.094202116,-0.045165163,0.13599929,0.19845684,0.6689745,0.6963545,-0.13574456,-0.06442861,0.14817287,-0.35286728,0.20662935,-0.41092312,-0.004739358,-0.5117079,-0.39365938,0.5394091,0.56511724,0.21196762,-0.2951657,0.036478974,0.019574692,-0.18781108,0.20258123,-0.17004156,0.0058435844,-0.08092625,-0.4728095,-0.10498575,0.41728136,-0.26482728,0.253295,0.045144673,0.060003903,0.32803148,-0.17081608,0.08385928,-0.12682775,-0.61188275,0.19429739,-0.3642686,-0.46446797,0.27037933,-0.27048072,0.33372423,0.32726339,0.013235251,-0.37058684,0.7253182,0.01797689,0.8687989,-0.47725323,-0.16510442,-0.461153,0.13734218,0.093542084,-0.26066482,0.094072215,-0.15823695,0.009490426,-0.36571458,0.3208525,-0.17497547,-0.4261534,-0.24239086,-0.1515204,-0.0023461087,0.5741546,0.06377813,0.010579278,-0.13143247,-0.30184218,-0.43813282,-0.34733883,-0.003636828,0.25307637,-0.15311982,0.08203959,-0.10975431,-0.22262461,0.19802295,0.2512755,-0.2744908,0.42681488,0.22024682,0.2105703,-0.11232356,-0.044760246,0.26253313,0.5576271,0.023977535,-0.006458292,-0.2921208,-0.16276136,-0.4827481,0.23969705,-0.19126743,0.56725514,0.1760463,-0.24269496,0.48884836,-0.23259942,1.1964854,-0.16466692,-0.4229423,0.22147247,0.46903056,-0.013079364,-0.20992804,-0.23440558,0.79397553,0.4077643,-0.024758,-0.045815863,-0.07067757,0.089721315,0.13578986,-0.31015044,-0.19838017,0.014982103,-0.4097818,0.026987057,0.16715391,0.20508698,0.35410994,-0.26648372,-0.2337742,0.19823524,0.14009134,0.08249199,-0.31474692,-0.18504395,0.2743232,0.28574,-0.090264134,0.09308731,-0.5444534,0.3365811,-0.36559412,0.31892917,-0.2876603,0.31452268,-0.27421027,-0.38932183,0.19274066,-0.15552776,0.44384214,-0.23250818,-0.21666566,-0.3964291,0.44398597,0.3088683,0.18729486,0.34722435,-0.24526462,0.07615921,0.017645914,0.60649806,0.7190449,-0.21516465,-0.25088638,0.066745386,-0.38733017,-0.5801325,0.2450769,-0.4653851,0.32320282,-0.03883553,-0.038735397,-0.45674002,0.16059992,0.15243459,0.102820866,-0.052435234,-1.023222,-0.14826928,-0.078895405,-0.2689697,-0.2960687,-0.5731758,-0.009763451,0.56006515,-0.14250793,-0.27013713,0.2180485,0.10403167,0.08195793,-0.3685682,0.22204432,-0.3150137,0.078518264,-0.14323577,-0.518488,-0.17308475,-0.07279788,-0.44866723,0.25367633,-0.19269317,-0.25631735,-0.016371341,0.13549627,0.16633493,0.873783,-0.21737693,0.3451169,-0.30133414,-0.66989577,-0.75033325,-0.35319865,0.20003143,0.19271943,-0.034862533,-0.55679065,-0.076458395,-0.14405102,-0.25177628,-0.21306203,-0.2659955,0.25608522,0.11987542,0.4738777,-0.29028493,-0.72238535,0.46031666,0.13220277,0.03838661,-0.46841767,0.18646039,-0.25425804,0.8717597,-0.0040653357,-0.027839322,0.27069977,-0.30928436,-0.0047939145,-0.13296705,-0.21075517,-0.29142863,0.1956674 -652,0.27583727,-0.018541873,-0.6512068,-0.18783693,-0.20332114,0.13475847,-0.11558591,0.12949194,0.2985069,-0.3483452,-0.22041906,-0.1170029,-0.02568373,0.26563928,-0.14387472,-0.7058479,-0.14024232,0.22024791,-0.70918566,0.4899945,-0.2757284,0.3902829,0.2980166,0.2925868,0.06986884,0.20386757,0.13744986,-0.20652436,-0.13882303,-0.0062569636,-0.06605975,0.14449954,-0.6609669,0.26686102,-0.21270192,-0.13449153,0.014251298,-0.5055812,-0.44740763,-0.738136,0.3917393,-0.65638244,0.62058777,0.084375,-0.19031236,0.025892152,0.012650822,0.20075132,-0.26869327,0.1485102,0.26978847,-0.2039272,-0.11651174,-0.10049606,-0.23179428,-0.23157112,-0.4364513,0.06871243,-0.38605976,-0.056220252,-0.2132472,0.08813921,-0.18937455,0.030894015,-0.19482431,0.5350924,-0.32772908,0.02075039,0.28776747,-0.18141879,0.31796318,-0.4983113,-0.11693,-0.06980273,0.34992412,-0.18376562,-0.14273968,0.2503907,0.24780165,0.55021244,-0.00757885,-0.24727596,-0.15364392,0.073958956,0.14664148,0.43701315,-0.13255528,-0.15467463,-0.14101939,0.11795091,0.10218849,0.101139784,-0.059964936,-0.62794054,-0.0047714883,-0.19142509,-0.029829714,0.17024657,0.560719,-0.21811016,-0.11104905,0.27550843,0.20376213,0.26519075,0.06698592,0.059568055,-0.058992688,-0.45069996,-0.21785606,0.20295255,-0.13489011,0.5771968,0.017082648,0.13948305,0.53385156,0.026602779,-0.11553436,-0.09635542,-0.056303483,0.1472107,-0.019445505,-0.11662495,0.24752322,-0.52992475,0.031776242,-0.08378504,0.5450436,0.11229671,-0.7976274,0.28298372,-0.47969565,0.1121552,-0.075661145,0.5628123,0.77758896,0.3815432,0.11880127,0.8868583,-0.73677593,0.1216925,0.017870622,-0.3688484,0.059857078,-0.01291527,-0.055827398,-0.5077732,-0.15881059,-0.071354456,-0.101556286,0.0143245375,0.0326267,-0.37919113,-0.03346516,-0.03703943,0.7548916,-0.33119154,-0.0224259,0.63107246,1.0674177,0.8922533,0.17807865,1.3072289,0.20428273,-0.2540672,-0.12289099,-0.22499311,-0.6198888,0.14827469,0.2331878,0.080666624,0.32943338,0.20693901,0.13830423,0.28566393,-0.49281555,0.09048542,-0.097074874,0.16628239,-0.01398577,0.009495237,-0.38730758,-0.37119508,0.07851847,0.21906236,-0.097067334,0.118283466,-0.17620817,0.3509908,0.10214969,1.3431915,-0.08172067,0.05189982,0.041770395,0.13144031,0.23826432,-0.05660484,-0.2295902,0.2228241,0.38531443,-0.060457736,-0.4954772,-0.20617367,-0.21832527,-0.24888213,-0.21239854,-0.21252558,0.11713427,0.06395017,-0.3796814,-0.12842871,0.15730698,-0.41982582,0.5710245,-2.4841542,-0.08714284,-0.08987458,0.3362588,-0.30269304,-0.30810165,-0.25954643,-0.36023623,0.37849584,0.3498087,0.3651125,-0.61172324,0.3072762,0.22476958,-0.39065024,-0.2190189,-0.45580763,0.006973062,0.09916311,0.26317343,-0.0011114223,-0.15263923,-0.11312666,0.23004113,0.49835178,-0.015231056,-0.14941587,0.40686014,0.4141123,0.09507593,0.456657,-0.0004444814,0.48289546,-0.17998831,-0.08860832,0.3561981,-0.16968371,0.24300098,-0.015350138,0.20983092,0.35169885,-0.6092187,-0.6560208,-0.6160529,-0.44021705,1.1454674,-0.4053948,-0.26231822,0.25636297,-0.06650491,-0.21121518,0.06945661,0.64746815,-0.012535353,0.13850899,-0.85219246,-0.14103273,0.028525354,0.2864093,-0.027244534,0.03931009,-0.45197654,0.5680539,-0.1414335,0.48355484,0.58021927,0.16287862,0.0011488923,-0.6046062,0.21225584,1.0677264,0.3917026,0.14925747,-0.19478525,0.0032653862,-0.099087216,-0.07350589,0.03126422,0.57184786,0.67175096,0.0059719533,0.034961317,0.24305645,0.033439636,-0.03348699,-0.13537493,-0.35806128,-0.05072818,-0.14549221,0.58321816,0.71920925,-0.098807506,0.31407484,-0.0994033,0.28239796,-0.019971503,-0.47176746,0.5049536,0.8729333,-0.03257557,-0.17169623,0.48408768,0.2796945,-0.13399212,0.35539225,-0.4513338,-0.305314,0.58939826,-0.15389623,-0.5611302,0.25709602,-0.3355022,0.13877872,-0.8629759,0.4042204,-0.002062772,-0.4422658,-0.3766575,-0.0052853203,-3.4787326,0.16539827,-0.2460452,-0.08173459,-0.021384459,-0.07570177,0.23744035,-0.35112205,-0.69226414,0.12609774,-0.00044267625,0.53319377,-0.14306352,0.1278062,-0.12604329,-0.19690026,-0.1333789,0.27309835,0.3335069,0.2317728,0.04250558,-0.32315275,-0.13635695,-0.3525694,-0.3902176,0.03050646,-0.48675394,-0.46731335,-0.16087754,-0.54061764,-0.30392832,0.6410862,-0.37315693,-0.07005631,-0.092121884,0.047405165,-0.063595586,0.26080012,0.08253157,0.31938055,0.030079624,-0.053633634,-0.16107996,-0.15459828,0.31681153,0.2553886,0.14488229,0.3486905,-0.09221826,0.17631729,0.36375216,0.7462529,-0.18821584,0.6672452,0.38741708,-0.07428185,0.16039944,-0.33110598,-0.35262474,-0.6790189,-0.35699993,-0.17461394,-0.4183542,-0.51667964,-0.19192378,-0.33231884,-0.81585276,0.33370546,-0.023481455,-0.0005662569,0.12059392,0.042868357,0.36527735,-0.21219532,0.07353066,-0.11873208,-0.13486432,-0.48496276,-0.521865,-0.54360735,-0.52031225,-0.1096002,1.0225893,0.07514602,-0.015340026,0.03838351,-0.3163231,0.19669497,-0.053090803,0.2697715,0.22332957,0.34793684,-0.0063167317,-0.7276004,0.46876246,0.027788421,-0.09941018,-0.5625977,0.151251,0.7156542,-0.6094543,0.6277273,0.3316254,0.091602184,0.0218047,-0.4719866,-0.4325277,-0.019626928,-0.32687488,0.5350462,0.17380397,-0.45820013,0.2923321,0.17787491,-0.19322683,-0.76729834,0.4280541,-0.051999707,-0.24516144,0.25834513,0.3878046,-0.23376228,-0.1282102,-0.05392772,0.112273,-0.33918694,0.3398072,0.29234812,0.030574176,0.17336333,-0.14161234,-0.2486852,-0.7132822,0.0465883,-0.54644036,-0.29663092,0.13286838,0.22038457,0.036025297,0.02203891,0.15517299,0.5655457,-0.29567322,0.14141056,-0.13116066,-0.24411431,0.3639617,0.5295939,0.31570497,-0.39422816,0.52043885,-0.1340765,-0.04459714,-0.296773,0.116556205,0.4411728,0.19110866,0.08253274,-0.056922294,-0.08867078,0.17598009,0.5457936,0.10231685,0.25450978,0.15641955,-0.25727445,0.3713558,0.1467867,0.11400594,-0.066296734,-0.3660901,-0.09760582,-0.12743078,0.09586827,0.39181498,0.15640846,0.19761123,-0.27664015,-0.26522604,0.12658016,0.28761965,0.11534526,-0.889716,0.40653795,0.05576272,0.66282624,0.6158341,0.033587877,0.047827665,0.4451345,-0.16287851,0.06956264,0.20960662,-0.057136986,-0.4843594,0.38945228,-0.43001652,0.35371348,-0.15396656,-0.08973922,0.2233742,0.124641314,0.1653001,0.87852234,0.003686096,0.037988894,-0.06517916,-0.10285475,-0.05527274,-0.38803345,0.07097311,-0.5269299,-0.61774296,0.63352436,0.36457542,0.278665,-0.3147292,-0.034635793,-0.015148441,-0.23372395,0.20780566,-0.0029469517,-0.010296489,0.059560742,-0.6620001,-0.1772349,0.5720373,-0.17679122,-0.09914843,-0.02430479,-0.05498835,0.10137197,-0.25587076,-0.03847124,-0.06134712,-0.72364604,-0.04292665,-0.491379,-0.32339972,0.23279433,-0.44592375,0.31307343,0.03445971,0.034966733,-0.36382776,0.41324443,0.2864336,0.7385536,0.18774581,-0.077217,-0.22159687,0.15494432,0.24255882,-0.17034754,-0.0008979738,-0.29336056,0.028695974,-0.58316886,0.47324702,-0.07939197,-0.07560687,0.09237893,-0.12141576,-0.027576,0.4375685,-0.17691545,-0.023691896,0.22399066,0.025059137,-0.20636606,-0.0824026,-0.4628725,0.19872591,0.18200032,-0.03995037,0.062297408,-0.027588261,-0.23419364,0.3423201,0.17852595,0.2600251,0.30273795,-0.023751067,-0.3883811,-0.051677637,-0.013146924,0.39286852,0.380363,-0.09006076,-0.23106275,-0.38348016,-0.20413086,0.09017626,-0.1287121,0.16693385,0.036351502,-0.26259342,0.67147446,0.3631852,1.0765153,0.040678483,-0.2336091,-0.0031799844,0.4215068,0.04531037,0.022129895,-0.41176704,0.8813572,0.5797254,-0.074053966,-0.11552645,-0.13746098,-0.062269144,0.045592796,-0.23732044,-0.095208414,-0.10169288,-0.61510277,-0.3270951,0.15739706,0.2871358,-0.026625749,-0.016945004,-0.12129191,0.07595163,0.12698476,0.30253023,-0.42676786,-0.0008382286,0.4012631,0.1491892,0.17990611,0.16360195,-0.33115292,0.53321385,-0.6214071,0.070082664,-0.31958553,-0.0002733171,-0.07139785,-0.23916562,0.14083956,0.096660614,0.36455867,-0.40479273,-0.19923055,-0.36689505,0.54795253,0.008983644,0.24164942,0.68991834,-0.188533,-0.09001349,0.071940295,0.5311134,1.1558759,-0.2298386,0.13485415,0.45216376,-0.34772748,-0.3347216,0.10794751,-0.29181966,0.0042765057,-0.16424139,-0.385287,-0.4120548,0.1908599,-0.06559212,-0.051718432,-0.014206569,-0.62119037,-0.16586311,0.4760212,-0.3434842,-0.2727738,-0.29216343,0.30306035,0.53708214,-0.26736924,-0.49821678,0.11010545,0.15986969,-0.2841104,-0.55234396,0.11329585,-0.36927658,0.24184313,0.14280902,-0.29522547,-0.120743416,0.22697535,-0.41078418,-0.00047422308,0.14177279,-0.4542492,-0.036610804,-0.1190023,-0.08329905,0.96752083,-0.03367124,0.0969099,-0.5879291,-0.46422943,-1.0197324,-0.34155205,0.34364492,0.27168876,-0.031264335,-0.57782954,-0.18417206,-0.0999201,0.051948782,-0.06621496,-0.22598092,0.40895388,0.14858162,0.5415987,-0.22885858,-0.782477,0.0914278,0.16419102,-0.28952432,-0.4008212,0.4459324,0.1664816,0.67767364,-0.08752946,-0.0087491935,0.1994492,-0.6272011,0.19105671,-0.35200113,-0.17442659,-0.5422541,0.046016775 -653,0.4289663,-0.13479218,-0.3926398,-0.27146724,-0.31060982,0.004435416,-0.3364519,0.2612747,0.15561636,-0.3834211,-0.1663123,-0.035442233,0.09034064,0.1360518,-0.2130798,-0.570129,-0.012069599,-0.023907185,-0.58685505,0.41251305,-0.7179983,0.3568812,0.22828321,0.33526185,-0.00014818709,0.4212244,0.33757746,-0.07415819,0.064935096,-0.28716776,-0.09486665,0.20342146,-0.7416406,0.19737439,-0.27264395,-0.39921048,0.24774376,-0.38510925,-0.13877495,-0.73369294,0.028515462,-0.79955137,0.5674021,-0.06385661,-0.16297604,0.027688185,0.24294244,0.20711282,-0.21973896,0.08837017,0.13777588,-0.33657047,-0.1848889,-0.33589315,-0.026558178,-0.43319663,-0.36692467,-0.10983956,-0.69905597,-0.4398724,-0.34309432,0.10952078,-0.3542505,-0.05151182,-0.051785264,0.4139318,-0.4234977,-0.040037934,0.11830079,-0.13855925,0.26838693,-0.64093107,-0.07306793,-0.039399873,0.40397316,-0.09518466,-0.21078244,0.47459957,0.19790195,0.4705246,0.24581064,-0.34648708,-0.12116071,-0.2895838,0.019302214,0.34733686,-0.1709246,-0.19159609,-0.20721382,0.006816423,0.47400424,0.32670355,0.04102846,-0.15910354,0.07110869,0.06290331,-0.24200307,0.41987938,0.5396487,-0.33787993,-0.24534187,0.13898939,0.388068,0.13215126,-0.27442732,0.047899302,-0.051077664,-0.45796445,-0.26702002,0.13572124,0.041425582,0.49099195,-0.12452723,0.20911366,0.72749037,-0.26672888,0.21688057,0.02787068,-0.042297598,0.06682379,-0.24865372,-0.18801574,0.27474517,-0.78178596,0.008587769,-0.37396985,0.805171,-0.06181448,-0.70551044,0.34387198,-0.5005092,-0.07292448,-0.11556519,0.54197377,0.52039915,0.5065881,0.29381102,0.6829675,-0.32883447,0.031685997,-0.1763804,-0.3461486,0.08575225,-0.13238102,0.09476324,-0.40092754,0.08591442,-0.07158612,0.34371865,0.04085656,0.28707033,-0.42582083,-0.10808675,0.3973953,0.7186757,-0.36094543,0.021688167,0.5243688,1.118931,0.9088667,0.16802081,1.1155219,0.23679323,-0.10043247,0.07021884,0.1016465,-0.57035285,0.11658896,0.47830683,0.1772139,0.21251346,-0.08617334,-0.104569025,0.32044992,-0.4015437,-0.08777119,0.067123204,0.469572,0.06239898,-0.07864547,-0.42646414,-0.2402251,0.14249246,-0.01273435,0.013460887,0.18135415,-0.08023181,0.22055937,-0.14345647,1.0569988,-0.05146645,0.026648585,0.1187489,0.7084466,0.30342185,-0.012920211,0.055827238,0.39600766,0.3153049,0.033365346,-0.572691,0.124574885,-0.23683856,-0.4176543,-0.13402185,-0.4699122,-0.052700736,0.1594802,-0.42647296,-0.2523424,-0.059274364,-0.22319777,0.38277492,-2.6928911,-0.22770517,-0.015403358,0.35441652,-0.29540202,-0.21701965,-0.04461074,-0.4819025,0.4262455,0.2969713,0.48559648,-0.5523015,0.5674747,0.5710299,-0.47736838,-0.2518657,-0.70013046,-0.17533283,-0.19500594,0.38372287,0.09893155,-0.2524403,-0.26912072,0.3494758,0.7761096,0.09691576,0.0639765,0.38558477,0.26851097,0.12733354,0.70613104,0.06251016,0.51770693,-0.28344142,-0.1738255,0.36720866,-0.22668491,0.05696117,-0.0779028,0.12910034,0.52916056,-0.52790046,-0.88666415,-0.5952689,-0.2736353,1.169394,-0.30420992,-0.4532118,0.2618808,-0.2074912,-0.0083280485,0.058416333,0.4036237,-0.20989409,0.2461234,-0.49859196,0.09201776,0.007365751,0.1288238,0.1307171,0.019712178,-0.40523052,0.5930134,-0.03454806,0.54785347,0.21190561,0.29041937,-0.15145212,-0.22921272,0.035487518,0.8073101,0.49782485,0.09172874,-0.18853426,-0.21345097,-0.12754373,-0.103697844,0.032445572,0.5331268,0.8058954,-0.030436138,0.21397765,0.30024692,-0.1376898,0.101803206,-0.01121343,-0.23144086,-0.070096746,0.15987997,0.47031304,0.51562554,-0.016751265,0.30949906,-0.14291033,0.47242975,-0.13551779,-0.5361858,0.43182054,0.6295039,-0.1697559,-0.00075741607,0.39724848,0.61178374,-0.24389662,0.5269254,-0.71979296,-0.40916577,0.8079712,-0.14958371,-0.4146146,0.11794346,-0.3370383,0.25179893,-0.791281,0.37782013,-0.4932782,-0.4519375,-0.3283167,-0.22425994,-3.417561,0.25469258,-0.28771874,-0.038037974,-0.40763468,-0.09234814,0.3619873,-0.70075357,-0.30113092,0.11824706,0.09764249,0.6374999,0.032216653,0.008211673,-0.2867877,-0.3961027,-0.18777823,0.27633724,0.053491354,0.21211107,-0.20413758,-0.40712646,-0.00691092,-0.19239695,-0.6217672,0.18653971,-0.28594112,-0.5385217,-0.08601802,-0.36442757,-0.33895254,0.5403557,-0.30012634,0.08579196,-0.2219639,0.064957276,-0.18440874,0.17305152,0.15968561,0.18135194,-0.027372304,-0.08587645,0.123871975,-0.42085811,0.4113084,0.119546175,0.3521909,0.17076536,0.025327237,-0.07741685,0.49922195,0.26085022,-0.2094689,0.96380156,0.15082149,-0.13599163,0.43197373,-0.30929983,-0.3923584,-0.6848981,-0.33168668,-0.10055793,-0.32008424,-0.31811434,0.23945265,-0.2102272,-0.65839523,0.65028274,0.04649379,0.29310316,-0.057595085,0.4208337,0.29659843,-0.12789539,-0.10797582,-0.06174554,-0.1753296,-0.5721083,-0.20133935,-0.8316465,-0.56074345,-0.12755585,0.7104967,-0.36955854,-0.019256568,-0.07397811,0.09711096,0.25977793,-0.018723078,0.21872775,0.29129657,0.5240019,0.05619747,-0.78877753,0.49289,-0.08826074,-0.119111694,-0.32833844,0.09053114,0.72736466,-0.8339827,0.4462206,0.48667076,0.2008381,0.08442586,-0.58655995,-0.1480262,0.024294829,-0.2972924,0.50577486,0.041652348,-1.0127928,0.6036783,0.20132616,-0.5262352,-0.6360338,0.47165537,0.049163282,-0.30515918,-0.04306143,0.46798187,0.2276413,-0.11733349,-0.10392257,0.15435892,-0.45149505,0.27156755,0.08479207,0.0287442,0.31235012,-0.12861007,-0.29275027,-0.6646198,-0.08244907,-0.42946255,-0.33617514,0.26794007,-0.242594,-0.20276718,0.33105502,0.0770723,0.43795586,-0.19452216,0.21689129,0.044453774,-0.31929928,0.47185734,0.5422817,0.4002078,-0.1795499,0.5654492,0.16450728,-0.17049283,-0.060582053,0.13593982,0.3846864,0.015555634,0.1890488,-0.18055184,-0.10385474,0.30901492,0.5963162,0.13591178,0.37455222,-0.03475406,-0.0018832723,0.4800328,0.1074222,-0.061443005,0.17180488,-0.3644756,-0.17965321,-0.037415132,0.097530685,0.41176698,0.3011006,0.3119381,0.09774792,-0.011841488,0.027585652,0.250436,-0.21339846,-0.86428076,0.27919406,0.20684604,0.69074214,0.36640316,0.1490754,-0.18424836,0.53505886,-0.17362562,0.057509635,0.2813225,0.13760458,-0.4156458,0.8879794,-0.45780727,0.39162847,-0.15920912,-0.01119436,0.07823197,-0.031010246,0.42996594,0.8134372,-0.21299307,0.037055712,0.02753403,-0.25167522,0.02313181,-0.32568607,0.026622891,-0.19855998,-0.25484836,0.74887764,0.2715674,0.30125967,-0.1450429,-0.12865254,0.11723863,-0.31171453,0.30957514,-0.12210365,0.05069582,0.013656406,-0.3731275,-0.19712375,0.51063615,0.10773452,0.15042774,-0.1675034,-0.106600456,0.11998519,-0.06327012,0.027945422,0.066452004,-0.52065,0.12703386,-0.34115702,-0.38346207,0.28577596,-0.36185497,0.02351586,0.17856796,-0.009642205,0.101601,0.16683748,0.19100924,0.4202077,-0.04967761,-0.3731964,-0.20810606,-0.07065846,0.18235935,-0.3542497,0.076773964,-0.35056365,0.11857421,-0.7002332,0.52025425,-0.2496477,-0.2862214,0.2561574,-0.2104085,-0.08818695,0.4349783,-0.06288062,-0.023201609,0.045743488,-0.07460741,-0.25038013,-0.22276981,-0.2071679,0.23197956,0.23661228,-0.08604535,-0.052907754,-0.3258684,-0.056464456,0.47150898,0.11393762,0.36869487,0.015187953,-0.0542053,-0.28433815,0.19975635,0.09321377,0.48340425,-0.040679898,0.16019286,-0.35043913,-0.2620869,-0.26853094,0.14972034,-0.049519897,0.10770108,0.042235073,-0.33017674,1.0777923,0.005887747,0.9429344,-0.0339838,-0.40780935,-0.047767714,0.4986534,-0.38272363,-0.014004374,-0.24679573,1.0025291,0.4947492,-0.08472453,-0.11944286,-0.41989794,-0.15068635,0.18279003,-0.35171992,-0.08821173,-0.2779242,-0.49850896,-0.41139355,0.24205051,0.4156323,-0.038639527,-0.0862521,-0.007904598,0.16271864,0.06561486,0.41748697,-0.7410937,-0.19301382,0.04373916,0.1650712,-0.120246775,0.11471084,-0.40614155,0.37081555,-0.7879234,0.15528466,-0.46345004,0.00874091,-0.23203772,-0.3087881,0.17344116,0.022700815,0.3880687,-0.30043668,-0.47784293,0.02833473,0.34128505,-0.08863554,0.28124088,0.5403069,-0.22150952,0.04722876,0.009698454,0.4733843,1.2504011,-0.19827083,0.002442825,0.2592229,-0.5306395,-0.5061664,0.121798225,-0.33850348,-0.10238907,-0.066055246,-0.50058585,-0.34649405,0.1835386,0.21556838,0.06989957,0.09953998,-0.6094152,-0.09960626,0.26899275,-0.29590896,-0.27208164,-0.13223961,0.40702954,0.7258729,-0.27368033,-0.09186549,-0.067293376,0.36649817,-0.27822083,-0.62117755,-0.038758796,-0.11827057,0.37166864,0.14757948,-0.2169986,-0.050358735,0.13842653,-0.47896495,0.024186246,0.37603623,-0.34502938,-0.037454773,-0.3054593,0.16927962,0.78802234,-0.085428044,-0.23393068,-0.5192022,-0.5326592,-0.71586263,-0.46088237,0.3220242,0.22766064,0.17057939,-0.2663447,0.061475817,-0.2480591,-0.255252,0.0214863,-0.39194113,0.1969915,0.20283106,0.46699038,-0.30858517,-0.87315446,0.17734988,0.1513662,-0.0630994,-0.53316224,0.6269455,-0.12224881,0.7361259,0.17315629,-0.1583819,0.010455473,-0.43296522,0.280259,-0.45208263,-0.024039317,-0.65666616,0.024549492 -654,0.45625365,-0.32920998,-0.45994094,-0.15675546,-0.26815042,-0.31285688,-0.3545424,0.15429084,0.2806734,-0.13558632,-0.27496317,-0.03213143,0.08588124,0.37356773,-0.13795625,-0.8434055,0.009786393,0.055828463,-0.92149574,0.67147064,-0.4801261,0.025901584,0.04383983,0.4844719,0.06479615,0.3612378,0.1033051,-0.062442858,0.193006,-0.13102098,0.099758625,0.41526207,-0.70469546,0.2296502,-0.20307584,-0.2042772,-0.033513464,-0.50770307,-0.3252327,-0.843898,0.06640833,-1.0854146,0.43829486,0.045347538,-0.23441076,-0.31157002,0.17509973,0.4585558,-0.28343865,-0.007418076,0.16034244,-0.1421319,-0.24423909,-0.3300266,0.29972643,-0.2940615,-0.4698322,-0.10919241,-0.3573117,-0.33426046,-0.22750182,0.1598229,-0.41864136,0.10623243,-0.2739232,0.50044835,-0.42699316,0.07268863,0.6445709,-0.120387346,0.46265724,-0.46289405,-0.041917145,-0.09222752,0.5981035,0.17390819,-0.38495812,0.36487722,0.31455877,0.3565657,0.28512263,-0.38241145,-0.08853217,-0.23392229,0.4078442,0.44605398,-0.10892051,-0.39203835,-0.29277822,-0.046935234,0.20904104,0.41071796,-0.0647936,-0.46683857,-0.049054265,-0.15536231,-0.088486575,0.6998522,0.5413,-0.094375946,-0.36506605,-0.0058706203,0.5857475,0.30023822,-0.2596489,-0.013266723,0.1657081,-0.6238059,-0.16950172,0.22446112,0.049829364,0.595077,-0.1825703,0.020261817,0.7766609,-0.11666956,-0.24664839,-0.035300944,-0.13723917,-0.236151,-0.4275236,-0.11099565,0.29780635,-0.6758635,0.13095894,-0.37471583,0.79548925,0.17255278,-0.7751007,0.29282355,-0.6663928,0.20684332,-0.044612635,0.73244447,0.74302655,0.3242257,0.5963101,0.6465321,-0.14592646,0.23942266,0.039555233,-0.649146,0.0551044,-0.32721615,0.3020293,-0.40971375,-0.049195874,-0.27716032,0.121774174,-0.09594381,0.18564485,-0.48019126,0.012035112,0.36906192,0.6850824,-0.2725697,0.12273999,0.7918994,1.2019194,1.0618314,0.24971712,1.1864687,0.33449212,-0.28422317,0.21901195,-0.08235536,-0.79013604,0.26586244,0.30139026,0.3178906,0.24295098,-0.13844031,-0.014807056,0.5101173,-0.5838747,0.015933646,-0.06557292,0.50772685,0.18083775,-0.22015704,-0.6190359,-0.109045126,-0.017477043,-0.10577645,0.0014593502,0.19878022,0.00836059,0.43265828,0.0025162846,1.0669008,-0.10989819,0.032150052,-0.0096986145,0.50347507,0.28687984,-0.2505822,0.0007738471,0.31516442,0.4334928,0.002815996,-0.71223277,0.22444868,-0.352141,-0.31903815,-0.105018176,-0.39488077,-0.04740277,0.13679767,-0.4342976,-0.16684927,-0.07157722,0.033232022,0.51354265,-2.7663867,-0.294656,-0.35307348,0.27202103,-0.21636444,-0.05724154,0.023022324,-0.54911214,0.16580969,0.2777289,0.6364469,-0.7572057,0.66341305,0.59262013,-0.6107674,-0.11587957,-0.75504786,-0.09457139,-0.0121411085,0.4578296,0.2854581,-0.17664783,-0.18103123,0.18450497,0.71315306,-0.012747002,0.22580345,0.4751679,0.37079403,-0.0133817,0.68012327,-0.027150631,0.50190955,-0.47100022,-0.120178424,0.31383,-0.18275626,0.30740476,-0.1486492,0.09591711,0.64120436,-0.44323015,-0.8965092,-0.6750861,-0.46952537,1.0198766,-0.39697155,-0.66069967,0.24103181,-0.2922514,-0.09988288,-0.0026542768,0.51810044,-0.0969306,0.39065084,-0.8030143,0.11499653,-0.1300201,0.21649034,0.023538055,-0.2085021,-0.43846917,0.69677114,-0.0825638,0.41917548,0.4190201,0.2138303,-0.07345179,-0.4162761,0.19176395,0.5865385,0.3028601,0.0057848,-0.38938627,-0.30876845,0.023411244,-0.20592152,-0.08531294,0.7316933,0.8379989,-0.26483887,0.14642568,0.32186428,-0.018194696,0.033934806,-0.06546433,-0.17950495,-0.07137119,0.02755031,0.56401354,1.0797523,-0.20286995,0.21607202,-0.23233084,0.40846348,0.19609247,-0.5507443,0.63210607,0.71352696,-0.051362563,-0.13269813,0.54050046,0.5637421,-0.52198696,0.56863767,-0.5378867,-0.0997985,0.5336073,-0.0017723888,-0.45265654,0.2387145,-0.4618021,0.23370098,-0.9556735,0.56849784,-0.5721448,-0.6237049,-0.41489932,-0.024481127,-3.2873032,0.3246633,-0.18223189,-0.17423297,-0.45540252,-0.096977115,0.22313829,-0.59834665,-0.6295524,0.3463273,0.23461486,0.5554838,-0.101902604,0.060373437,-0.18132047,-0.109594636,-0.031231755,0.27512613,0.23822959,0.24998373,-0.29423597,-0.40710473,-0.22032963,0.056155827,-0.41419443,0.36094984,-0.7170207,-0.64183545,0.023466168,-0.4744726,-0.33489302,0.5233812,-0.19249444,-0.020497063,-0.3209969,0.023165694,-0.34983036,0.25136772,-0.020299232,0.47984168,0.17475624,0.048968893,-0.036896437,-0.20910172,0.46274158,-0.09962114,0.42332578,-0.011852873,0.06943516,0.2853612,0.49695373,0.753809,-0.15424643,0.9604024,0.65066206,-0.010334303,0.1986862,-0.2599408,-0.42969143,-0.6877671,-0.3312334,0.022905847,-0.47926903,-0.47511372,0.07770375,-0.1265592,-0.73601216,0.6649101,0.042309504,0.29728207,0.03562926,-0.06861819,0.35704336,-0.16047801,-0.107266806,-0.09642867,-0.11963067,-0.7080068,-0.16863574,-0.8478424,-0.52205247,-0.13132629,0.73315364,-0.2359684,0.10687039,-0.0531085,-0.546479,0.019653171,0.39677417,0.028854774,0.19823861,0.43395385,0.1605514,-0.5513985,0.41635475,0.044706266,-0.35586867,-0.55126125,0.25833336,0.7056679,-0.8240301,0.87248117,0.3164387,-0.0032516893,-0.13213782,-0.59116983,-0.44629303,-0.044674307,-0.18293631,0.5533483,0.22669564,-0.74612856,0.41315725,0.27393737,-0.49903333,-0.7225464,0.36124274,-0.18088238,-0.2129473,0.041119855,0.24584298,-0.12799305,-0.11697638,-0.15313427,0.24895982,-0.39245656,0.27125773,0.12015983,0.0043685636,0.04134533,0.023746723,-0.24401967,-0.7606965,-0.122403264,-0.81247145,-0.17577784,0.4806613,-0.21093442,-0.14151378,0.008673325,0.13540845,0.3059502,-0.14770107,0.29179853,-0.0136823105,-0.4778315,0.20750105,0.5826554,0.2939918,-0.43598983,0.6377024,0.2676449,-0.20278762,-0.028571978,0.19366004,0.30566648,-0.11288479,0.57306945,-0.4112176,-0.025194952,0.23205967,0.9755357,0.07523259,0.64862114,0.0743303,0.10573607,0.5082373,-0.037265923,0.3734026,-0.080168396,-0.45582625,0.08769166,-0.18166037,0.15190062,0.47226742,0.29837754,0.31022552,0.17076522,-0.20557247,-0.086218245,0.4638894,0.065517455,-1.6568412,0.5075914,0.42312762,0.8277089,0.5944486,0.1628113,-0.15020289,0.824508,-0.31365818,0.08961829,0.4611734,-0.038465846,-0.4797431,0.8765733,-0.62146425,0.3230711,-0.16156442,-0.09597338,0.2006762,0.24330802,0.32647163,0.5908118,-0.281078,0.11013287,-0.1427229,-0.16620573,-0.017469535,-0.58641666,0.005738775,-0.13741745,-0.47392297,0.6902995,0.565742,0.5021879,-0.2533749,-0.062593974,0.19503231,-0.1513248,0.27226266,-0.18720447,-0.16041298,0.24831472,-0.5866098,-0.1549778,0.5960332,-0.1343065,0.2046454,-0.33488443,-0.29801634,0.12733987,-0.21305169,-0.3104436,-0.14770861,-0.87587804,0.12632765,-0.3173125,-0.57164127,0.68531376,-0.33801976,-0.010885075,0.3235562,0.015895814,-0.17390966,0.3323333,-0.26278964,0.86453646,0.14490543,-0.3259776,-0.30517456,0.010951226,0.24983232,-0.252581,0.1871782,-0.5591174,0.039499696,-0.447814,0.68648314,-0.03458002,-0.48412037,0.1383142,-0.1257066,-0.064897984,0.66753715,-0.14187397,-0.23612069,0.16418695,-0.1478609,-0.37544945,-0.24652904,-0.25215968,0.25176954,0.4168429,0.15585646,0.0026205182,-0.2502741,-0.022389093,0.6479276,0.03614493,0.582362,0.2606099,0.06444127,-0.27749166,-0.0036790792,0.35648704,0.47439972,0.20311725,-0.14580321,-0.2885063,-0.4438602,-0.33401677,0.049967576,-0.051951896,0.40355048,-0.0027950753,-0.27555943,0.94860095,0.065687336,1.2146926,0.14348756,-0.36570248,0.30708978,0.38578537,-0.047101203,-0.035473887,-0.48584297,0.8654762,0.47305346,-0.08051233,-0.12885582,-0.5373969,-0.016891018,0.14610772,-0.36688888,0.095044695,-0.10631627,-0.43093088,-0.27996475,0.20950168,0.29008883,0.105000675,-0.14603204,-0.06076766,-0.02816379,0.09623446,0.35208273,-0.7278072,-0.22494553,0.23771934,0.17421074,-0.018660078,0.119805634,-0.2919936,0.39437535,-0.52431875,0.27771452,-0.61282974,0.074729584,-0.3279096,-0.3835124,0.058241084,-0.20167983,0.41233262,-0.42178825,-0.23175763,-0.16366385,0.40746954,0.28156254,0.05285723,0.7199054,-0.18769632,-0.026290676,0.19831814,0.6907659,1.0679206,-0.676194,0.027852833,0.11252216,-0.3475363,-0.46649384,0.37585178,-0.31494653,-0.043133914,-0.109416746,-0.5790186,-0.7104614,0.023851091,0.056165367,0.054974888,0.07353276,-0.7540838,-0.28290537,0.4010532,-0.4424839,-0.21064179,-0.35941672,0.4162854,0.6176207,-0.22805063,-0.43828043,0.077766344,0.060598623,-0.28953815,-0.292978,-0.031413876,-0.17895158,0.28221005,-0.018288413,-0.43541226,-0.11324362,0.14724131,-0.46182838,0.016394645,0.17043127,-0.32754436,0.16754012,-0.13670503,-0.08791234,1.0917236,-0.38556948,-0.055853974,-0.630225,-0.5566656,-0.832458,-0.4415702,0.31470904,0.13523065,0.013472006,-0.2324592,-0.004229536,0.14300792,-0.08914584,0.015573773,-0.51059395,0.4008503,0.06252822,0.6211718,-0.17764693,-0.9875856,0.19873638,0.3611629,0.021269875,-0.7026537,0.6220787,-0.113406934,0.7945149,0.008030062,0.09357542,-0.12636046,-0.35193917,0.052926812,-0.2723594,-0.22917998,-0.8697637,0.08378938 -655,0.42528963,-0.2925143,-0.45502657,-0.15691173,-0.17669289,0.008261328,-0.07012611,0.61199135,0.26222283,-0.37959164,-0.17751102,-0.051505167,0.1510936,0.38499084,0.07000915,-0.3813804,0.019828204,0.16804972,-0.5662812,0.4757125,-0.36909962,-0.016275402,-0.2178107,0.47974417,0.24570374,0.2765081,-0.033600003,-0.040203195,-0.029842466,0.03533457,-0.028618272,0.2003961,-0.28603834,0.29119587,-0.074977286,-0.15699027,-0.12939516,-0.6598562,-0.4195225,-0.66238755,0.25542194,-0.6981558,0.5354694,-0.036117528,-0.29222456,0.3019266,0.10406916,0.3692542,-0.39399013,-0.23294596,0.1479615,-0.008828716,-0.06978183,-0.10070709,-0.09909414,-0.29222032,-0.48658532,-0.14889948,-0.26253924,-0.14648189,-0.32488173,0.0119625265,-0.27045125,-0.06719782,0.044071674,0.55136865,-0.37655544,-0.025391826,0.25805047,-0.113796845,0.29266277,-0.5105232,-0.07110538,-0.07218999,0.4144672,-0.016129704,-0.30976674,0.24129,0.22859032,0.30258083,-0.130362,-0.048999615,-0.27360693,0.031893842,0.16065468,0.52309614,-0.033567935,-0.42403913,-0.043907236,0.033030655,0.09807155,0.20428655,0.19359027,-0.14475009,-0.19105898,0.056571655,-0.041128363,0.37443772,0.3772323,-0.18849555,-0.10392971,0.42518774,0.631765,0.33218786,-0.12991174,-0.06880458,0.02049971,-0.49768186,-0.181182,-0.11380581,-0.27427056,0.3679046,-0.1627439,0.33887407,0.6384893,-0.013463506,-0.09802009,0.11734568,0.09872301,-0.12706122,-0.288725,-0.29115722,0.17552423,-0.284468,0.20361638,-0.017762708,0.50792414,0.15520976,-0.496373,0.3836449,-0.479106,0.09662204,-0.13133003,0.44716287,0.73999065,0.34782806,0.38914317,0.60440034,-0.33141488,0.025789062,-0.0056140167,-0.38315514,0.18678321,-0.22106478,0.069312416,-0.5746009,-0.06135719,-0.028977057,-0.21527335,0.26144198,0.20753428,-0.5450817,-0.117369816,0.25177047,0.7688742,-0.2300774,-0.14650664,0.83068854,0.99331486,0.87275845,0.056874733,0.86556923,0.1444957,-0.1667467,0.24088041,-0.25304002,-0.6237599,0.31777543,0.41645485,-0.021813767,0.13949019,0.07323601,0.0071675223,0.4030368,-0.41447848,0.040814288,-0.0060847485,0.21033421,0.05563392,-0.2865025,-0.62038696,-0.2178231,-0.21046372,-0.048086256,0.110606715,0.12636693,-0.28044695,0.3674379,-0.06987689,1.71091,0.06708272,0.046776094,0.01847946,0.44493693,0.21785767,-0.29134044,-0.25051007,0.35132694,0.36113262,0.11305127,-0.5677573,0.3186716,-0.21065554,-0.2587132,-0.1250613,-0.46484193,-0.02797073,-0.02473046,-0.39816275,-0.04634744,-0.10164881,-0.33585766,0.43718618,-3.1575668,-0.29898444,-0.09362792,0.4129553,-0.1887063,-0.23338197,-0.15814424,-0.3875044,0.30986658,0.30350116,0.51909167,-0.5623196,0.4242603,0.2976908,-0.771622,-0.109426,-0.5562419,-0.127773,0.017418798,0.22734936,0.12475835,0.10535775,0.072350964,0.27236018,0.45719105,0.045094796,0.13489987,0.30900112,0.35181782,-0.06180067,0.50113887,-0.16657309,0.5635224,-0.24894513,-0.10380371,0.17358446,-0.16337529,0.18826607,-0.17730097,0.1442754,0.5390021,-0.35513544,-0.9362403,-0.62784034,-0.011817889,1.1317478,-0.13852923,-0.2826934,0.3132854,-0.590303,-0.32350835,0.019242125,0.47858062,-0.048161574,-0.15971322,-0.784853,-0.024730686,-0.025136454,-0.0035033992,-0.08060632,-0.18497396,-0.54572237,0.5521404,0.06672051,0.570329,0.18570282,0.29715794,-0.16595483,-0.19165982,0.023061762,0.526948,0.38441414,0.026520012,-0.11696816,-0.073663965,-0.4449151,0.0018826212,0.0840152,0.5745797,0.48818317,-0.14333136,0.172256,0.20022693,-0.02223494,0.049944956,-0.11867221,-0.14737189,-0.09535446,0.00582189,0.42049083,0.62296456,-0.15398563,0.48006353,0.05557681,0.27164912,-0.0872696,-0.5463711,0.5000731,0.7821614,-0.21473907,-0.27994522,0.5099493,0.38793927,-0.20574774,0.3643237,-0.5218845,-0.121646345,0.5609798,-0.1454701,-0.34063354,0.061026316,-0.20525631,0.26643363,-0.81662637,0.17181511,-0.27532193,-0.709889,-0.45226544,-0.0919615,-2.9967782,0.14195296,-0.18802038,-0.15986986,-0.10845052,-0.14433396,0.12680407,-0.73066896,-0.62549067,0.25730973,0.041226238,0.9068511,-0.12807395,-0.038654458,-0.2689183,-0.39543143,-0.2759726,0.031883847,0.033233706,0.49264425,0.026785221,-0.45499092,-0.082762346,-0.016872805,-0.49496004,0.027882969,-0.62462723,-0.39663655,-0.13854526,-0.5419412,-0.14348947,0.65903604,-0.1171461,-0.0021504888,-0.16191517,0.13114172,-0.03568118,0.25675184,-0.0067149443,0.08798029,0.13085748,-0.09109584,0.13465378,-0.20201448,0.31605586,0.102652505,0.2622951,0.285983,-0.02104908,0.3362806,0.61846304,0.6982388,-0.17138825,0.8397891,0.513683,-0.07326305,0.19934566,-0.34439367,-0.35319546,-0.27541193,-0.32680947,0.096086755,-0.41857114,-0.42222875,-0.11931715,-0.3538168,-0.81398106,0.53456384,0.110423796,0.3382096,0.005637237,-0.010284995,0.5676983,-0.21969104,0.013611191,0.039122734,-0.20042272,-0.6919398,-0.08955275,-0.5362643,-0.5086573,0.17903662,0.9379713,-0.38486975,0.19876862,-0.028959185,-0.39596415,0.08809687,0.1585021,-0.08814698,0.16085987,0.3714189,-0.23828577,-0.47364458,0.4315334,-0.26642713,-0.27339798,-0.64483446,0.2929662,0.5485636,-0.46691403,0.5422977,0.22055745,-0.08572454,-0.46338266,-0.4697666,-0.13453911,-0.050805576,-0.09109355,0.3578095,0.12826076,-0.81247914,0.3878037,0.31258768,-0.23229434,-0.66829556,0.62616384,-0.10195328,-0.2724269,-0.10539211,0.25895903,0.24725974,0.0428943,-0.35352388,0.29821792,-0.38732418,0.29832858,0.14188229,-0.024255756,0.28957233,-0.17088906,0.08065697,-0.74734384,-0.19936964,-0.54038227,-0.23539971,0.33163172,0.13385513,0.27876207,0.12396709,0.09104542,0.30940193,-0.41146532,0.071458496,-0.19000481,-0.3503437,0.23738119,0.4443498,0.4711474,-0.3524418,0.561645,0.065869436,-0.0464671,0.13846616,0.04355395,0.35809782,0.03507681,0.53800637,-0.040149238,-0.18887079,0.16428664,0.7734298,0.0941277,0.2825527,0.0056802887,-0.16795287,0.014678801,0.049715903,0.2538921,-0.05776659,-0.53436476,0.23497625,-0.3560509,0.1266228,0.4385817,0.29568794,0.12784173,0.146462,-0.49825484,0.031850304,0.13930243,0.14013383,-1.2475412,0.52047557,0.28953156,0.8768343,0.26188105,0.07605709,-0.11563561,0.7668788,-0.046235334,0.11020022,0.3117033,0.0053668576,-0.5272767,0.48589674,-0.83606803,0.5619896,0.16577768,-0.16067751,0.032350276,-0.10574385,0.426929,0.6298848,-0.22114468,0.092515714,0.094760194,-0.2721838,0.2880487,-0.40665188,-0.1031634,-0.6717097,-0.22847138,0.50445706,0.5674933,0.34256002,-0.09462111,0.02510479,0.103010364,-0.10309916,0.13896033,0.08877879,0.11298557,-0.032514997,-0.77034503,-0.15416753,0.2871173,0.06424001,0.3430037,-0.0757479,-0.065386094,0.2247959,-0.10187989,0.03678802,-0.08804132,-0.66587025,-0.08619372,-0.28287295,-0.38522956,0.48000288,-0.042506363,0.36733928,0.16194816,0.031132152,0.0075262445,0.5111839,-0.11425916,0.9056206,0.066540316,-0.113973364,-0.4209121,0.28396267,0.17906761,-0.1764325,0.007385922,-0.4370923,0.008437152,-0.4393346,0.52557945,0.09848101,-0.38647717,0.05191183,-0.10949987,0.1559529,0.54837316,-0.2027485,-0.1446973,-0.31810284,-0.2207632,-0.36804858,-0.2549506,-0.085794784,0.3025709,0.24035849,0.035197444,-0.19605742,-0.0086705005,-0.07257567,0.40872413,0.018825721,0.42047277,0.36923712,-0.092652865,-0.18779843,-0.27379593,0.23983686,0.47678953,0.0020902434,-0.2785786,-0.34495077,-0.39962548,-0.44846645,0.09424562,-0.04659901,0.40950456,0.1516361,0.0103949355,0.4541061,-0.1525061,1.1303762,-0.025789948,-0.3261803,0.2537741,0.46903774,-0.048235744,-0.22885618,-0.33237892,0.7294024,0.41381913,-0.018180672,-0.05809469,-0.40757447,-0.06244129,0.39258358,-0.13678834,-0.12499584,-0.00031831648,-0.58965766,-0.20902471,0.2396307,0.10148757,0.4611098,-0.14232251,0.14204104,0.24638925,-0.07510577,0.1914854,-0.4051475,-0.21826304,0.29851642,0.28337985,-0.030568574,0.058262076,-0.53029114,0.44451332,-0.46859834,0.043610435,-0.1903729,0.26079297,-0.29001632,-0.39363173,0.1898558,0.17921817,0.33862597,-0.23772907,-0.37550873,-0.2056396,0.5592967,0.22241728,0.045270853,0.45305583,-0.22732525,-0.049836103,0.17848487,0.39082545,0.6240552,-0.18974714,0.04018994,0.3757508,-0.39524445,-0.61025363,0.3527343,-0.26658753,0.44474533,0.02811815,-0.10808047,-0.687349,0.31189135,0.21426117,-0.010633075,-0.09159975,-0.4833303,-0.15185997,0.1535257,-0.26393998,-0.14748372,-0.40557104,0.055658005,0.31769142,-0.2865944,-0.3310575,0.09567026,0.16300075,-0.07762069,-0.3963944,-0.11698913,-0.3309423,0.27347934,-0.1119458,-0.42503524,-0.23979367,-0.12167787,-0.42692044,0.30349603,-0.08015495,-0.27785742,0.16562448,-0.3083895,-0.10655583,0.9312577,-0.18801425,0.17839491,-0.4992702,-0.40598106,-0.67583656,-0.25554475,0.36053348,-0.004452548,-0.06941943,-0.6462761,0.16683313,-0.03543847,-0.03593736,-0.215001,-0.29562768,0.4123997,0.07628976,0.27643472,-0.056384478,-0.84982055,0.22860524,0.030732444,-0.2453263,-0.61369234,0.5072296,-0.07936197,0.79248667,0.045088474,0.12119235,0.15220629,-0.2141161,-0.17448433,-0.30396134,-0.14882417,-0.4171955,0.024271548 -656,0.35025918,-0.025794657,-0.60905975,-0.118137985,-0.29021356,-0.046083212,-0.09947359,0.7099356,0.23697548,-0.463528,-0.11800668,-0.19347422,-0.017660085,0.47491592,-0.20617162,-0.6460915,0.018881131,0.09503922,-0.5474217,0.48313364,-0.4306121,0.25366265,-0.03587164,0.49962685,0.23152259,0.33090273,0.0030964613,-0.114629425,-0.055729866,-0.05625413,0.055923607,0.2519682,-0.44079632,0.049720388,-0.14421526,-0.44286442,-0.038974244,-0.50611204,-0.49858177,-0.7429616,0.40037587,-0.7583683,0.53151333,-0.021016125,-0.26936358,0.17527257,0.07017351,0.4984766,-0.29567906,-0.1390099,0.17476524,-0.018784208,-0.000976928,-0.1395133,-0.24957542,-0.2594012,-0.5853999,0.10320205,-0.3815774,-0.10000847,-0.12189449,0.100085475,-0.3528481,0.07178419,-0.0015630882,0.4536342,-0.47267035,0.16604476,0.39594507,-0.089016914,0.20271058,-0.48716298,-0.085673206,-0.106947936,0.19492897,-0.21312316,-0.19547114,0.34404355,0.14190511,0.50454557,-0.05389149,-0.18044357,-0.3231278,-0.028801981,0.15577644,0.42446044,-0.08360776,-0.34613687,-0.08692767,0.090196736,0.07268155,0.23932165,0.13704656,-0.25285095,-0.12287234,0.09522298,-0.25375536,0.37233478,0.5183045,-0.15097462,-0.3543924,0.29939932,0.6790793,0.28043452,-0.16097,0.11748373,0.13433436,-0.6205221,-0.24368593,-0.09355715,-0.07162208,0.31318015,-0.14669509,0.2638334,0.79188716,-0.25771937,-0.0073088724,-0.009260092,0.07439019,-0.13163179,-0.41342905,-0.22878957,0.21863751,-0.37528038,0.20107001,-0.07718827,0.78537065,0.23793726,-0.77535135,0.33934078,-0.6355318,0.20203659,-0.20352824,0.49338195,0.6497243,0.28668144,0.29627952,0.6588841,-0.40690506,0.23627116,-0.11396948,-0.4418602,0.015140462,-0.08395405,-0.098301634,-0.42768928,-0.078901894,-0.012830808,-0.12393189,0.13785677,0.19382069,-0.53673714,-0.09943379,0.022740789,1.0598671,-0.26264608,-0.046188306,0.8034826,0.8467137,1.0176213,0.0396937,1.1335909,0.115320675,-0.14642748,0.38227844,-0.28926787,-0.94059193,0.26642233,0.25781724,-0.34450918,0.31688005,0.045531336,0.05065489,0.4740696,-0.37266314,0.23266178,-0.2500209,0.32691038,0.21887064,-0.15450983,-0.3041647,-0.16816331,-0.09019842,-0.07630623,0.091711566,0.28654233,-0.07643082,0.31524608,-0.057828825,1.8704605,0.069881774,0.1603933,0.16889769,0.50061303,0.21625787,-0.16427927,-0.21885148,0.14572264,0.32379553,0.09986956,-0.5827206,0.14965868,-0.19768676,-0.50359994,-0.13192289,-0.34385693,-0.08861857,-0.18392318,-0.5530043,-0.062090017,-0.23522896,-0.13025513,0.34130594,-2.8487062,-0.2767697,-0.051629502,0.28280258,-0.2504028,-0.34779307,-0.16525014,-0.51582515,0.4732519,0.33480853,0.41975778,-0.63154566,0.5791881,0.5163837,-0.49271443,0.0014716308,-0.5691574,-0.18814953,0.099399365,0.23390856,0.0038110039,0.10659243,0.05870251,0.21379992,0.3483923,-0.11292747,0.04424652,0.2339399,0.38289878,0.085303865,0.53437287,-0.10115388,0.47387567,-0.3879593,-0.15670992,0.26670063,-0.37837332,0.24291866,-0.043653116,0.09931047,0.4709978,-0.4304218,-0.9349083,-0.5762192,-0.048590314,0.9187107,-0.121423274,-0.18285833,0.34823462,-0.5552403,-0.17961082,-0.1745138,0.4178637,-0.007509933,-0.072500914,-0.80873114,-0.025743825,-0.1818884,0.08126872,0.0103435125,-0.014213289,-0.28936723,0.5308857,-0.10853446,0.47127402,0.47642478,0.113522895,-0.28323612,-0.43101725,0.12222782,0.74727416,0.2877844,0.17810258,-0.28516117,-0.16865434,-0.4479588,-0.15119903,0.06720612,0.43789265,0.7453877,-0.071974,0.18384501,0.2795015,-0.082543306,-0.039330173,-0.21478513,-0.32764664,-0.04570113,-0.10098771,0.46536568,0.7624629,-0.33063668,0.5126589,-0.017037315,0.34758037,-0.1759614,-0.45054314,0.4815017,0.7458907,-0.12350074,-0.32163525,0.5149053,0.38163516,-0.34137955,0.39740276,-0.4471507,-0.11292241,0.5030389,-0.19762713,-0.40088478,0.21468456,-0.20346285,0.14398007,-0.9009739,0.16195272,-0.22675003,-0.34088272,-0.6585997,-0.24264774,-3.031837,0.18074383,-0.30715173,-0.13258407,-0.18582487,-0.09467028,0.118732736,-0.4964038,-0.77583706,0.14377241,0.17068976,0.79623806,-0.14068381,0.3001595,-0.20407145,-0.15808369,-0.3768606,0.028436057,0.27892116,0.38739356,0.05595935,-0.51431304,-0.2745759,-0.089356475,-0.48488387,0.17637397,-0.6143435,-0.43106654,-0.0778343,-0.5385639,-0.33827505,0.7399138,-0.16523786,-0.045894813,-0.065228276,-0.039963085,-0.05450364,0.4359722,0.22205715,0.012285951,0.06933089,0.011124802,0.08198715,-0.29586428,0.22255754,-0.031095915,0.4605407,0.17202304,0.040554922,0.30573362,0.62124753,0.81984544,0.038014427,0.70116514,0.5224456,-0.04598577,0.24654368,-0.32656848,-0.32072407,-0.43978086,-0.23245601,-0.033100303,-0.35686997,-0.3920099,0.0235901,-0.49461898,-0.80414426,0.565082,0.024426349,-0.014085412,0.016801301,-0.0068074744,0.43958288,-0.16976303,-0.089719005,-0.009512258,-0.12275549,-0.5632297,-0.2835035,-0.6312144,-0.50441235,0.11704487,1.1623079,-0.24163426,-0.041638456,-0.0972468,-0.35434428,-0.0032358367,0.10485215,-0.072084285,0.20953134,0.39241955,-0.15359503,-0.49792495,0.41100731,-0.18078,-0.27325955,-0.73126036,0.0424757,0.5841124,-0.6023499,0.5535322,0.119511805,-0.049767334,-0.10593362,-0.47678703,-0.032824438,-0.02875787,-0.1713168,0.41494453,0.13992931,-0.71840006,0.34516576,0.47359148,-0.3055494,-0.73634434,0.48167622,-0.06927612,-0.28613317,-0.055801343,0.20583569,0.16257364,0.012789364,-0.12792236,0.18155083,-0.3086086,0.10451214,0.18672152,-0.11826967,0.42702055,-0.15891081,-0.0785241,-0.6794137,-0.060323995,-0.49720466,-0.21869682,0.2549919,0.082107894,0.1659175,0.013394797,0.14058058,0.25265232,-0.1834505,0.066784956,-0.17907128,-0.26334462,0.24698694,0.38542357,0.5313728,-0.5171064,0.5635472,-0.09156968,0.027313745,0.35013762,0.08815338,0.49701503,-0.039796926,0.3906979,0.13436459,-0.14986466,0.14334495,0.8092252,0.17281656,0.40364093,0.18543836,-0.17231707,0.22526464,0.06741891,0.08606164,0.009996072,-0.549441,0.15915179,-0.026684029,0.22035795,0.5052564,0.2148387,0.30655447,0.03876512,-0.44954398,-0.026433332,0.22266334,-0.03511103,-1.4182326,0.40837157,0.23667549,0.85847276,0.45456907,0.04248091,0.10164185,0.57094735,0.006484133,0.26705176,0.3597915,-0.17095527,-0.56549865,0.538081,-0.6381544,0.68822366,0.041431,-0.025352666,-0.0068092705,0.07198815,0.48801643,0.62897307,-0.14423303,-0.01017938,0.120144114,-0.28521413,0.14712693,-0.45076686,-0.06212034,-0.5277355,-0.1373673,0.57574844,0.6657075,0.25969994,-0.17563495,0.0343627,0.15101002,0.042489126,0.07741846,-0.123354144,0.067410454,0.01499783,-0.6450881,-0.31348875,0.5021438,-0.016019186,0.27414224,-0.15209651,-0.16466323,0.3004933,-0.19044682,-0.046287537,-0.15096465,-0.7929246,0.013436121,-0.24538682,-0.5039218,0.4012102,-0.06793973,0.28796205,0.2137975,0.041598383,-0.5058105,0.61189234,-0.24268775,0.8191404,-0.17165668,-0.1046458,-0.42920798,0.20867552,0.28592083,-0.25850117,-0.055936765,-0.4077681,0.0145962555,-0.39948168,0.3961352,-0.045284107,-0.3892195,-0.027931651,-0.123726696,0.07666488,0.5285828,-0.1472766,-0.03290461,-0.09173442,-0.24673183,-0.2605656,-0.20673747,-0.1278239,0.3062211,0.22680883,-0.12749878,-0.039325323,-0.15832242,0.005399712,0.5742933,-0.06624419,0.39754933,0.39291415,0.14774117,-0.3312203,-0.27826732,0.29550895,0.549267,-0.072721526,-0.17932507,-0.28069118,-0.27990946,-0.18813422,0.41737098,-0.20321348,0.43392783,0.19638552,-0.4063496,0.7229925,0.15086031,1.2092719,0.1989584,-0.2360136,0.25627056,0.2743213,0.24641551,-0.026429506,-0.44675484,0.7954523,0.4067581,-0.24886338,-0.25819042,-0.34836018,0.030479161,0.13649629,-0.2185188,-0.24840464,-0.05178638,-0.52500176,-0.2001814,0.26307952,0.1538166,0.27851948,-0.2000486,0.015718492,0.16796394,0.02361389,0.29185686,-0.4161321,-0.09258743,0.21122427,0.18751803,0.078215316,0.15335388,-0.57142997,0.47018448,-0.31010872,0.09716976,-0.23624277,0.24605195,-0.17943877,-0.29231656,0.17429967,-0.046982523,0.34129998,-0.30375704,-0.34994984,-0.3249858,0.45617262,0.30557293,0.1454459,0.649338,-0.22849755,0.006126078,-0.09038708,0.52270323,0.9010708,-0.21389268,-0.05706546,0.40596068,-0.17479163,-0.5655801,0.25149223,-0.31544086,0.24822807,-0.056886435,-0.1523903,-0.63875586,0.3200149,0.16533737,-0.08683718,0.0022122422,-0.5635695,-0.21832228,0.24407345,-0.2627616,-0.26607984,-0.4815336,-0.00528841,0.6990979,-0.20281038,-0.26885536,0.18933378,0.22448741,-0.0795538,-0.38507873,-0.048944857,-0.3655578,0.15156792,0.051156737,-0.31838128,-0.11591266,0.12976803,-0.4505852,0.12718958,0.05855481,-0.29299963,0.040726803,-0.14372721,-0.18733703,1.037566,-0.19676854,0.31516054,-0.48605162,-0.45226058,-0.9446981,-0.3036233,0.47155535,0.060820658,-0.025466101,-0.7209531,-0.10955323,0.09200151,-0.20469585,0.045660544,-0.38852566,0.45649922,0.09223577,0.27923024,-0.03818306,-0.7620295,0.0197045,0.057788026,-0.39087293,-0.6834913,0.55568177,-0.023995828,0.8003351,0.096847944,0.10285403,0.27891913,-0.27124774,-0.056807652,-0.26958057,-0.2253346,-0.6146301,0.023188595 -657,0.3415321,-0.111807145,-0.46890816,-0.10305547,0.0077611133,0.22316216,-0.14085248,0.6464804,0.23735468,-0.42937574,-0.18330272,-0.21301259,0.10139958,0.59121776,-0.1405121,-0.51410776,0.08936158,0.10581013,-0.40148166,0.3275254,-0.5215387,0.19534595,-0.036533475,0.38630605,0.2177558,0.21631734,0.2931393,-0.15492113,-0.21624543,-0.10988491,-0.26609662,0.38744196,0.006874293,0.11586502,0.13676389,-0.28055686,0.20427795,-0.40372565,-0.18262501,-0.6552177,0.41611543,-0.73797244,0.49961504,0.09545424,-0.17710318,0.30297574,0.27337483,0.3040469,-0.31042764,-0.14128043,0.08760846,-0.1253624,-0.11238722,-0.19637735,-0.27240542,-0.4680724,-0.45791182,-0.05158062,-0.32318047,-0.39661515,-0.32247567,0.06672363,-0.32740667,0.015997658,0.056455165,0.36137173,-0.44829646,-0.1496834,0.24013294,-0.25484243,0.14256348,-0.66299886,-0.23694064,-0.08153934,0.3604772,-0.12818997,-0.065849,0.26762697,0.45606112,0.4285501,-0.062108416,-0.08625562,-0.42309466,-0.23437162,0.19553764,0.47717705,-0.24520056,-0.6947493,0.019919118,0.04627649,0.19006349,0.23664872,0.29090786,-0.07520551,-0.1264656,0.19563496,-0.27127084,0.3143294,0.32636583,-0.4617145,-0.19661383,0.40069017,0.58150774,0.12902854,-0.17295085,-0.092915006,0.0035482373,-0.55881494,-0.083303474,-0.030935824,-0.28211662,0.5043841,-0.16045444,0.38978314,0.73471946,-0.019331262,0.10995021,-0.024372583,0.006667666,-0.32681242,-0.27012944,-0.22401433,0.019064112,-0.34558395,0.27874067,-0.048781503,0.7966814,0.22038515,-0.5486823,0.5190081,-0.54406273,0.068666965,-0.15613598,0.35999775,0.46310273,0.15931223,0.39060917,0.7003033,-0.44101927,-0.05426385,-0.048678815,-0.41201627,-0.018767966,-0.09977945,0.10765833,-0.5754246,0.2302327,0.09504637,0.0043097422,0.29176247,0.36687028,-0.54678047,-0.023837745,0.26656064,0.88757366,-0.35388634,-0.27806553,0.53796214,0.9796451,0.78112036,-0.055233713,0.9378069,0.22009587,-0.31644025,0.1697611,-0.32961747,-0.57865316,0.28524986,0.5413637,-0.4470851,0.19731796,0.12698065,0.081975386,0.4393003,-0.16499196,0.020050624,-0.16743125,0.068484604,0.27054664,-0.19612499,-0.38858405,-0.25406185,-0.095255874,-0.109859385,0.32137015,0.20750405,-0.15173484,0.29914513,-0.20355459,1.8145008,-0.055939943,0.14191371,0.11248494,0.3886982,0.21609443,0.072494954,-0.07420019,0.469484,0.34278706,-0.010792305,-0.61318964,0.1394738,-0.35088885,-0.5128284,-0.07258113,-0.41322318,-0.02180335,0.20392251,-0.28954256,0.017404003,-0.1826752,-0.23679759,0.51544744,-2.9079335,-0.24545793,-0.21239255,0.18223463,-0.31822345,-0.31749827,-0.1419722,-0.36988023,0.41934958,0.32432213,0.57982177,-0.58414525,0.22208796,0.31635067,-0.48791537,-0.2510282,-0.5675853,-0.120615244,-0.11520497,0.1021219,0.026147196,-0.18884952,-0.06681387,0.21015133,0.44826663,-0.06869385,0.11345438,0.27041644,0.39902496,0.06838112,0.5648523,-0.1292742,0.759804,-0.17399786,-0.20911281,0.33016753,-0.36862078,0.36382747,-0.0586556,0.23027097,0.3763716,-0.148948,-0.9546964,-0.61059666,-0.19134541,1.2338408,-0.20024325,-0.3112108,0.29434523,-0.17035453,-0.24414206,0.013525573,0.4736326,-0.09891456,-0.15974261,-0.75770754,0.24377348,-0.0465837,0.054744404,0.055858877,-0.07887143,-0.36364493,0.7541713,0.008227761,0.4620566,0.21162374,0.1176432,-0.2447133,-0.14829388,-0.091657996,0.6848181,0.36006948,-0.010563791,-0.06525115,-0.22880936,-0.48106536,-0.23938398,0.17246222,0.53267264,0.6018471,0.08724102,0.024822852,0.20515633,0.072722934,-0.016048407,-0.20744658,-0.2807018,0.034806725,0.09432023,0.532962,0.30544743,-0.34180424,0.55539083,-0.0966542,0.26795378,-0.3121167,-0.35318586,0.42572275,0.6755913,-0.30502447,-0.34924486,0.5597586,0.3545121,-0.2512014,0.26486295,-0.6527937,-0.15517206,0.69087726,-0.18767048,-0.48179054,0.0704344,-0.3026153,0.12513699,-1.0691894,0.1618825,-0.2624792,-0.33346924,-0.44575146,-0.08843682,-3.9087,0.17728305,-0.41063443,-0.13630974,-0.18518156,0.020054912,0.027883664,-0.88005614,-0.48853144,0.120284945,0.08103479,0.7478628,-0.12044939,0.054025646,-0.24939364,-0.22592379,-0.09107753,-0.055137057,-0.21131247,0.37852523,-0.003201152,-0.40182403,0.20905961,-0.015134007,-0.42740583,0.17114592,-0.49355724,-0.43247676,-0.2107706,-0.56921715,-0.24365945,0.6696128,-0.59070116,0.06197642,-0.28064054,0.171277,-0.18062355,0.32131597,0.15562767,0.07720943,0.059653062,-0.08048514,0.0671737,-0.38107535,0.3215028,0.010286818,0.32647303,0.4212623,0.08368345,0.07704011,0.54478276,0.6584636,0.031697303,0.73796463,0.37139794,-0.09742695,0.19045888,-0.4395719,-0.12497032,-0.37926242,-0.46969238,0.14620917,-0.37426865,-0.63211393,-0.27048346,-0.24671765,-0.6032872,0.46890852,0.19321801,0.23098046,-0.10026091,0.31809223,0.5292702,-0.23212576,0.03659514,0.13123436,-0.0996804,-0.6128474,-0.16497341,-0.6037779,-0.5064307,0.32471082,0.83529896,-0.39848733,-0.0012621483,-0.058059007,-0.3928577,0.030864215,0.038955327,0.100849174,0.2417329,0.454348,-0.34941474,-0.6492782,0.47074842,-0.22435951,-0.19049847,-0.531533,0.052876562,0.5994017,-0.5344808,0.61862427,0.382671,0.06927209,-0.07966144,-0.5129479,-0.2430771,0.10705515,-0.21891427,0.09152179,0.06252836,-0.6529694,0.38322422,0.4453386,-0.29945716,-0.6522003,0.50048095,-0.046700645,-0.28883848,-0.05484673,0.38292888,0.39389476,-0.02180385,-0.29997423,0.15910117,-0.42414618,0.299896,0.21770792,-0.0070419335,0.4030368,-0.18335803,-0.15023686,-0.79300433,-0.039171755,-0.49429795,-0.1996866,0.18298177,0.14036205,0.17235981,0.012411207,0.052936997,0.32453188,-0.57056713,0.17120595,0.008710275,-0.10011726,0.27846006,0.37714884,0.24253823,-0.4785097,0.6420697,-0.028086903,0.03758982,0.047368187,-0.1202304,0.4831103,0.12676644,0.45435953,-0.076387435,-0.23143542,0.40136218,0.8835351,0.16145098,0.3627286,0.09592947,-0.12800139,0.030788606,0.035329793,-0.03934916,0.1490437,-0.5252938,-0.064120375,-0.2370305,0.2573942,0.58094656,0.21732141,0.29184398,0.13754784,-0.39203343,0.061450306,0.21731813,0.044868577,-0.96018,0.5006299,0.18310823,0.8597931,0.2624159,-0.02222485,0.042615224,0.7006529,-0.2314499,0.23476334,0.17817688,-0.24853367,-0.6721706,0.64535785,-0.6895115,0.35332382,-0.11569882,-0.05261151,-0.024668679,-0.0361329,0.29783192,0.678554,-0.2821193,0.032136623,0.052450243,-0.22684467,0.21870065,-0.4108895,-0.12746446,-0.65157837,-0.26437595,0.40750113,0.61945724,0.28996328,-0.20260578,-0.021080425,0.14774714,-0.057762753,0.037477296,-0.065010615,0.31036755,-0.030944943,-0.754498,-0.30466652,0.384948,0.19162588,0.4187592,-0.096650295,-0.18499851,0.4226068,-0.2685776,0.10167566,-0.14065897,-0.33300284,0.07153263,-0.15118645,-0.60744643,0.30915222,-0.101505496,0.34028223,0.17079966,0.017349528,-0.024021482,0.39431038,0.013093705,0.8392188,-0.18395118,-0.114641696,-0.4689809,0.15398133,0.028318152,-0.13357377,-0.07492871,-0.32642198,-0.015798515,-0.5442218,0.517201,-0.023317276,-0.19455405,-0.02221418,-0.26860586,-0.015435129,0.58199066,-0.20974529,-0.055937555,-0.24230857,-0.37578276,-0.14289717,-0.14932095,-0.1820613,0.3193102,0.06207688,0.16688913,-0.25566387,-0.07130949,-0.17940359,0.26087186,-0.07851363,0.29250312,0.4998195,0.050202284,-0.20776576,-0.1935752,0.13273457,0.35377464,0.0053979107,-0.32147008,-0.36091337,-0.44511485,-0.28924787,0.17153941,-0.14040062,0.366887,0.18697743,-0.30173728,0.61859655,-0.1287374,1.2475631,-0.022099743,-0.40861857,-0.03467598,0.6622427,0.01946832,-0.0725423,-0.16568808,0.8335025,0.42699692,0.03993787,-0.10458827,-0.38497594,-0.022387346,0.38658917,-0.18235075,-0.038591545,0.05831835,-0.51333416,-0.38308167,0.30219975,0.20866509,0.35331622,-0.105181634,0.12162373,0.14993855,0.059471354,0.45785746,-0.37816063,-0.49336338,0.31358,0.34831476,-0.04711941,0.084297635,-0.44615686,0.43757153,-0.63232094,0.124030925,-0.39169088,0.21672058,-0.28245583,-0.16449,0.2426337,0.041669484,0.38875476,-0.22999735,-0.34560272,0.016770998,0.45018432,0.24823432,0.15846677,0.44171107,-0.2524635,-0.0885613,0.14559461,0.48317924,0.8577526,-0.22171576,0.16505592,0.45396277,-0.30729672,-0.6273503,0.44083166,-0.36581305,0.099814884,0.09012153,-0.21009529,-0.5170397,0.38346252,0.38665202,0.040771168,-0.057936776,-0.3627065,-0.21562459,0.3199058,-0.32926098,-0.25668472,-0.3963581,0.14383033,0.50967515,-0.3183156,-0.26894343,0.046230238,0.24932408,-0.16285197,-0.47614977,-0.020742932,-0.26648197,0.525399,0.09741646,-0.2760686,-0.25054362,-0.021211922,-0.4176662,0.30985123,-0.03355582,-0.32659313,0.2645253,-0.29612648,-0.020328304,0.863959,-0.10858309,0.008545312,-0.58414453,-0.28174987,-0.7081879,-0.36248112,0.6293264,-0.14670004,-0.080976814,-0.541902,0.09184683,0.06318136,-0.16032803,-0.10773035,-0.24124543,0.35385144,0.011972924,0.46249208,-0.057123583,-0.6367869,0.16277951,-0.01015084,-0.0902031,-0.5707224,0.43358326,-0.13955973,0.9147301,0.030191332,-0.009724597,0.3644912,-0.2309963,0.018651595,-0.30249783,-0.31903765,-0.6696367,-0.0019327551 -658,0.5613328,-0.33304065,-0.37457448,-0.10840612,-0.121400416,0.22230847,0.004454851,0.37935916,0.14116688,-0.38578722,0.021576183,-0.3034181,0.075742766,0.3056067,-0.06805288,-0.4216244,-0.08594632,0.14263351,-0.44383666,0.42734152,-0.42376092,0.2909431,-0.06759446,0.24013951,0.12284652,0.2916227,0.107410885,-0.27102873,-0.20425455,-0.06625078,-0.1773903,-0.18691304,-0.6796156,0.021190481,-0.04674062,-0.2310162,0.19013461,-0.36961287,-0.38767067,-0.72555435,0.2878778,-0.8193508,0.54518515,0.112227626,-0.19630334,0.26167482,-0.13181303,0.49852818,-0.24626672,0.061775573,0.32546306,-0.21254756,-0.04805528,-0.19195046,-0.13473533,-0.5333505,-0.56684446,0.05277235,-0.28498766,-0.18629251,-0.21999447,0.097569294,-0.25422177,0.071656406,-0.14399698,0.25643045,-0.36988953,0.11597051,0.21133284,-0.11277346,0.34587684,-0.5249685,-0.14786755,-0.18356633,0.114922784,-0.14071098,-0.16789088,0.4047858,0.3136529,0.51863104,-0.06272595,-0.17511971,-0.28864744,0.10045452,0.07573263,0.56289524,-0.18276548,-0.38299602,-0.139365,-0.14503548,0.030678766,0.056600016,0.03935069,-0.24933736,-0.06409171,0.2500619,-0.2784141,0.30932975,0.55751204,-0.26896384,-0.32722726,0.40537426,0.5996626,0.03896608,-0.07249565,-0.19613586,0.052429594,-0.45721292,-0.16551615,0.25831097,-0.28561127,0.5178861,-0.03991839,0.21244684,0.65575284,-0.38470644,0.111793555,0.028894408,0.07352327,-0.046583004,-0.1132383,-0.20664628,0.20157926,-0.47766486,0.15629576,-0.38754764,0.7345892,0.2997345,-0.74772406,0.39731994,-0.4926365,0.1555489,-0.03542786,0.5142048,0.64278346,0.39788812,0.281861,0.80601805,-0.67075485,0.19927858,-0.07092896,-0.32540423,0.29877415,-0.30891314,0.05555996,-0.4040594,-0.08043492,0.07877503,-0.32771054,-0.08157412,0.2624481,-0.69177675,0.0373295,0.07614385,0.89075047,-0.2608053,0.037974082,0.6259672,0.9462095,0.9291368,0.09682626,1.170495,0.3070738,-0.41665435,0.38405278,-0.43236467,-0.8309679,0.24940762,0.28175667,-0.19318984,0.25761536,0.25327346,-0.2132173,0.42677712,-0.48865652,0.15500137,-0.20284377,0.18180038,0.022599434,-0.09881168,-0.3668676,-0.29097137,-0.1428154,-0.010146916,0.05548788,0.25137538,-0.5001562,0.18415321,-0.0712413,1.8251975,-0.043970544,0.12122137,-0.06905381,0.4439578,-0.035157397,-0.19696353,0.0037300203,0.33785862,0.4122974,0.31732577,-0.59248346,0.13093652,-0.28468418,-0.36590227,-0.20409055,-0.19198216,-0.074312106,0.007923088,-0.29143924,-0.24669126,0.042311274,-0.230415,0.45088908,-2.5872028,0.023452004,-0.09906075,0.37935543,-0.27656662,-0.40536776,0.00026340995,-0.50264823,0.20503534,0.43486091,0.3725031,-0.7714301,0.31557545,0.19907744,-0.46440774,-0.05225771,-0.72495,-0.015928729,-0.053625222,0.32038075,0.10463762,-0.09265809,-0.0085513955,0.027841551,0.4654307,0.04882035,-0.0052947784,0.14859891,0.40829396,0.13083057,0.5345739,0.067705266,0.4384373,-0.20433487,-0.08755957,0.25409117,-0.45431313,0.29740024,-0.03420029,0.089276604,0.36675262,-0.39916617,-0.8658153,-0.75909567,-0.19207835,1.0960895,-0.111493416,-0.3803995,0.20606531,-0.3279204,-0.330938,-0.21486093,0.43522543,0.03703634,-0.16647805,-0.75550026,-0.01004149,-0.062196992,0.24151143,0.0039364886,0.10926761,-0.432028,0.7053626,-0.117737465,0.35763,0.28383613,0.18333448,-0.077324465,-0.545303,0.04182646,1.0103321,0.35313517,0.06631441,-0.04796564,-0.28294078,-0.43792337,-0.106349714,0.14369257,0.36506295,0.7817564,-0.12527838,-0.014856117,0.28023192,-0.08937001,0.030475514,-0.14944582,-0.3287561,-0.11966489,-0.12333218,0.47753054,0.5893928,-0.106629476,0.4437286,-0.18346773,0.32244918,-0.08029282,-0.45454463,0.473136,0.9344206,-0.14731918,-0.08233309,0.4095698,0.44491988,-0.32684115,0.4017313,-0.6434101,-0.23136483,0.341819,-0.1266095,-0.31001642,0.22080585,-0.29884276,0.14378,-0.69715816,0.5081175,-0.047296625,-0.49212798,-0.65156645,-0.17580424,-3.053972,0.18117668,-0.26560128,-0.13752133,0.15330808,0.03650073,0.27618915,-0.61096305,-0.2558636,0.13481505,0.03147846,0.65300137,0.04890917,0.14437367,-0.21299993,-0.21539466,-0.5253079,0.13047417,0.1327927,0.21740206,0.003781574,-0.40466362,0.15228501,-0.18623354,-0.3250248,0.016721876,-0.49961048,-0.61072224,-0.32021818,-0.37629,-0.3741631,0.7461539,-0.13845076,0.08732615,-0.20799136,-0.027484229,-0.15083966,0.3407621,0.24908951,-0.08000665,-0.07884929,-0.06745541,-0.016621944,-0.44480827,0.26297688,0.16318266,0.31129318,0.43058816,-0.054112885,0.12153297,0.51532024,0.5758952,-0.07514866,0.8462631,0.5719452,-0.23188795,0.2571111,-0.24209158,-0.10606792,-0.40849617,-0.37569687,-0.032557886,-0.44562197,-0.42943892,0.078675665,-0.3575231,-0.7209093,0.39566818,-0.09502256,0.04892627,0.038920127,0.2596032,0.58753556,-0.31319022,-0.010570658,-0.020604474,-0.1115538,-0.5193254,-0.27167317,-0.59539807,-0.50890714,0.320539,1.1938448,-0.13113396,0.0037178013,0.084227204,-0.3137138,0.18935059,0.015570775,-0.11517017,0.11783596,0.31109348,-0.10044207,-0.759267,0.46753338,-0.058264527,-0.10424515,-0.7106856,0.24956182,0.60449916,-0.6402914,0.34254572,0.28179395,0.06971841,0.005102762,-0.33281294,-0.17519383,-0.08657025,-0.27985692,0.19455828,-0.0142550245,-0.7338349,0.25461483,0.28921515,-0.29745716,-0.6234287,0.36192554,-0.048719186,-0.12719396,0.024649331,0.17560162,0.2262888,0.043243162,-0.23410027,0.1851963,-0.63775426,0.22492805,0.38129887,-0.016590679,0.19213997,0.0049924296,-0.1371307,-0.71658355,0.053841062,-0.36562687,-0.2852953,0.3289141,0.2163214,0.24603546,0.3125219,0.4225878,0.36522368,-0.22687311,-0.04355716,0.032448888,-0.35880047,0.46586734,0.3725109,0.5184818,-0.50727826,0.5507431,-0.02068263,-0.20581047,0.010449095,-0.13787672,0.45353463,0.25966904,0.3274323,0.178423,-0.31858188,0.18913914,0.90403885,0.12586458,0.5571228,0.12212443,-0.24942836,0.22640121,0.13869911,0.034314882,0.37230676,-0.49506208,0.073526144,0.0294622,0.23279439,0.29600286,0.06525805,0.20828377,-0.17154428,-0.18679182,0.008747501,0.09581256,-0.09600366,-1.1918167,0.31741685,0.17984033,0.7576436,0.3533037,-0.070511475,0.005297328,0.5325185,-0.14889966,0.08781575,0.17700422,-0.04923157,-0.49433336,0.37163636,-0.73864764,0.43007475,0.004944035,0.041403558,0.04889754,-0.1512278,0.39114732,0.9924345,-0.28568503,-0.014688313,-0.11185692,-0.28845972,0.15309249,-0.4237387,0.28642327,-0.6818943,-0.33053574,0.6475468,0.40134987,0.4159116,0.016686227,0.0006139832,0.025803497,-0.12312341,0.28272775,0.028015928,0.046161033,0.113391995,-0.7588965,-0.1491296,0.43907097,-0.45589966,0.27195916,0.017538087,-0.2564331,0.16552998,-0.18815064,-0.089320675,-0.064262435,-0.6201172,-0.06290166,-0.29679248,-0.40333602,0.51546323,0.07596474,0.3584833,0.2309192,0.07679031,-0.32825485,0.40541512,0.17525618,0.80503416,-0.010913031,-0.1852339,-0.62556237,0.34846374,0.21701157,-0.22925602,0.08876812,-0.06888364,0.09312679,-0.63709354,0.46497303,-0.1091718,-0.3661835,-0.023402695,-0.16362882,0.12456693,0.7659829,-0.2770407,-0.20769487,-0.034712944,-0.11536675,-0.20668927,-0.11197997,-0.0076297075,0.09682894,0.23966564,-0.06591465,0.015686527,-0.21507713,-0.015660355,0.3378268,0.20301776,0.3622031,0.36549944,-0.036639433,-0.33669522,-0.27239925,-0.016024385,0.44931176,0.0365222,-0.17788641,-0.382179,-0.5347322,-0.45972973,0.15173528,-0.056986745,0.32575712,0.09093503,-0.3552362,0.7092199,-0.01668272,1.3600996,0.0009791617,-0.24864408,-0.020791786,0.7449741,0.035759956,0.06419999,-0.54529524,0.9484703,0.55787617,-0.2251954,-0.10662868,-0.36716542,-0.25727186,0.47070175,-0.10168942,-0.008928299,0.06842387,-0.84142053,-0.27812055,0.17689466,0.3545241,0.14222652,-0.06468826,0.14089443,0.28837827,0.0016390851,0.31705305,-0.3834086,-0.26583058,0.2983933,0.21265152,0.027523799,0.20245706,-0.39489904,0.37574616,-0.3496957,-0.03820967,-0.035708785,0.042707052,-0.010854033,-0.2312068,0.27818114,0.20898892,0.26314348,-0.43012166,-0.37549767,-0.23065484,0.605773,0.24501088,0.30950752,0.6138962,-0.15202506,-0.27651933,-0.04929134,0.46440902,1.176667,-0.2456836,0.1733453,0.42865548,-0.42114544,-0.6011801,0.44950488,-0.09381243,0.056939907,-0.06517885,-0.35206413,-0.5283628,0.330472,0.2058709,-0.12344798,0.13979849,-0.68545204,-0.24751356,0.18075983,-0.38379446,-0.2062943,-0.2994921,0.25215364,0.7289415,-0.34371647,-0.16817467,0.08597007,0.38914827,-0.3158581,-0.3920932,-0.26453522,-0.43676424,0.3108676,-0.0022631288,-0.3748658,-0.2283049,0.08575898,-0.4359488,0.11354285,-0.038855094,-0.5313929,0.089167975,-0.25560182,-0.12133597,0.70724624,-0.03611868,0.041409142,-0.629543,-0.32744217,-0.7799372,-0.47526708,0.3881676,0.2576712,-0.06627732,-0.48254058,-0.037439518,0.043173738,0.004113657,-0.1431626,-0.4981038,0.46737447,0.028489266,0.3069179,-0.008852388,-0.7705884,0.054222137,0.20062146,-0.25096318,-0.6362084,0.5269076,-0.112063035,0.78648996,0.12386073,0.12572026,0.33955485,-0.3952226,-0.016974406,-0.28465262,-0.2629289,-0.7537752,0.07553579 -659,0.427815,-0.20564696,-0.5945682,-0.27511376,-0.46115765,0.12231786,-0.4213518,0.13973227,0.31082076,-0.50464225,0.013068516,0.010788097,-0.24196896,0.14223984,-0.28094223,-0.48982328,-0.022980634,0.05289817,-0.74152786,0.48489222,-0.6861505,0.21022132,-0.15548134,0.4293512,0.117033415,0.08511981,-0.022485128,-0.023164362,0.02770732,-0.13678524,0.038418815,0.26445344,-0.9087229,0.2956951,-0.21814407,-0.48521504,-0.006633832,-0.45874405,-0.399934,-0.72533077,0.46355075,-0.93516356,0.6754875,0.018000804,-0.2792285,-0.04481621,0.2606138,0.22847933,-0.26787955,0.118446,0.37036577,-0.20151336,-0.19008031,-0.18388756,-0.3278123,-0.4866339,-0.5912465,-0.023356767,-0.60877514,0.20280375,-0.087663226,0.375521,-0.112697855,0.084488854,-0.36413366,0.31088847,-0.52446604,0.13422142,0.023231186,0.11831433,0.18898128,-0.7336649,-0.28359458,-0.18612991,0.21814741,-0.17512229,-0.33528855,0.23451787,0.2863889,0.5696362,0.014090745,-0.11616014,-0.3781678,-0.07280504,0.18816233,0.33763152,-0.1580934,-0.1941545,-0.34313428,-0.13620967,0.54704756,0.38814786,0.12444774,-0.4616821,0.23305008,0.06273049,-0.2807979,0.75816405,0.53972584,-0.28140786,-0.24793394,0.34453556,0.55032265,0.23192056,-0.32978263,0.23417762,-0.11046291,-0.5622715,-0.27378404,0.4541926,-0.09920588,0.41604525,-0.12787154,0.122275315,0.66354424,-0.1327473,-0.12918407,0.12348436,-0.21982345,0.013922004,-0.28427613,-0.25026914,0.16994046,-0.5114783,0.17627645,-0.29615438,0.41589943,-0.07002352,-0.925359,0.24386023,-0.6994574,0.14088045,-0.020937327,0.7008454,0.8859323,0.6702381,0.20092426,0.7604219,-0.4114609,0.08751064,-0.14343014,-0.16846861,0.161407,-0.23951426,0.052358784,-0.43223512,-0.04727572,-0.35720384,0.0037175028,-0.08878532,0.6006627,-0.33716,-0.15669955,0.060795166,0.54155153,-0.36323783,-0.10766934,0.9132899,1.1273769,1.1647235,0.2394965,1.5019481,0.1717376,-0.05648497,-0.17019844,-0.14926219,-0.64351314,0.27876955,0.20097473,-0.112656005,0.34666398,0.14699572,0.21181811,0.47168902,-0.40841082,-0.115788616,-0.044920966,0.3180153,0.034347944,-0.13292228,-0.3533758,-0.17493285,0.24409896,0.15008587,-0.020262696,0.20888954,-0.24924158,0.3594875,0.34213513,0.8386968,-0.075428165,0.017470768,0.13710856,0.40759963,0.11952578,-0.14980991,0.14876698,0.19018452,0.39254028,-0.067843795,-0.6617509,0.018070795,-0.19213006,-0.34116715,-0.193834,-0.3299382,-0.31743115,-0.3992023,-0.32945377,-0.29833233,-0.000824534,-0.3357633,0.48038074,-2.3890016,-0.27030736,-0.20624174,0.2673531,-0.07159209,-0.3103434,-0.14257179,-0.3328436,0.4832412,0.24564272,0.40021294,-0.5722567,0.80300975,0.54361343,-0.6546074,-0.039042167,-0.8064378,-0.24420299,0.021659764,0.38179207,0.026498506,-0.108402744,-0.1943794,0.028060313,0.5926394,-0.058543563,0.07444439,0.3161761,0.7304836,-0.097415015,0.7948997,0.103791274,0.53306955,-0.4964651,-0.22628821,0.45078468,-0.54323936,0.43245834,0.11219402,0.10164464,0.5818973,-0.6714665,-0.9658712,-0.7313885,-0.493158,1.2203033,-0.16316198,-0.61415094,0.13662004,-0.45281488,-0.45284763,0.059113197,0.52881026,-0.23122314,0.012765845,-0.8434766,-0.24871093,-0.24264638,0.47966972,-0.117868975,0.09883853,-0.48356578,0.72579616,-0.053836666,0.51455796,0.4471811,0.07665249,-0.43115562,-0.3132089,0.09370139,0.8480085,0.50840634,0.082801454,-0.21159887,-0.31567365,-0.030289484,0.097021475,0.13275076,0.7539016,0.47412813,-0.09681474,0.16944557,0.44272313,-0.1243656,-0.035094704,-0.28465232,-0.2696104,-0.34031427,0.10333891,0.59382033,0.8353371,-0.05160653,0.3487248,-0.21808738,0.22803156,-0.2904781,-0.46007127,0.37643558,0.7359728,-0.024297921,-0.27824503,0.7093137,0.64312583,-0.30642375,0.5628865,-0.6625973,-0.38821074,0.3818043,-0.08135957,-0.45220667,0.0014613753,-0.5096859,-0.039406635,-0.8959503,0.16676322,-0.4738468,-0.5491881,-0.7127475,-0.26967436,-2.8064122,0.11242199,-0.17782725,-0.0703206,-0.23664334,-0.3181734,0.43199906,-0.41392362,-0.92128056,0.079315424,0.071411505,0.512635,-0.12030891,0.07306025,-0.33080384,-0.22003192,-0.30810192,0.27377066,0.34134957,0.26414093,-0.20277837,-0.4945967,-0.006503175,-0.3054303,-0.40254053,-0.21895812,-0.55987084,-0.4624683,0.065088555,-0.47455958,-0.20702913,0.6075938,-0.4520749,-0.22181763,-0.3539433,0.07064823,-0.07273484,0.427001,0.0707471,0.31093234,0.12062685,-0.014560044,-0.28120288,-0.18549515,0.23354258,0.12670885,0.083954506,0.39600325,-0.28149086,0.16218592,0.3401368,0.7884749,-0.124861166,0.9328038,0.24778165,-0.13417968,0.46232033,-0.1332774,-0.5334582,-0.77550685,-0.11876147,0.02304883,-0.45477343,-0.53486216,-0.017127734,-0.31551722,-0.8579514,0.5613908,0.05774866,0.04900032,-0.16700625,0.20351829,0.24777116,-0.10500564,0.110721976,-0.1469128,-0.22633259,-0.40784517,-0.67432076,-0.7786868,-0.52967685,-0.1895753,1.502317,-0.025112469,-0.007942473,0.44366506,-0.31525105,0.1490083,0.40681583,0.060737856,0.22448595,0.6267409,0.0069379164,-0.70030147,0.28761134,-0.13833801,-0.16542564,-0.45210993,0.08163628,1.0788885,-0.72969306,0.5759574,0.49647757,0.14219114,-0.070642576,-0.78375286,-0.19721413,-0.024672247,-0.306394,0.7264353,0.41245672,-0.75905406,0.5504016,0.28268725,-0.122850455,-0.79872715,0.7125247,0.012213373,0.022889834,0.08867902,0.48650756,0.21134414,0.009255494,-0.010274424,0.48782852,-0.26018447,0.46716467,0.2249665,-0.15266767,0.24307479,-0.09822475,-0.20106465,-0.66960394,-0.05063867,-0.2954612,-0.3378599,0.18683802,-0.20285313,0.1841108,0.22334972,0.20887396,0.4485423,-0.28390834,0.14138526,-0.23091467,-0.31231648,0.06231176,0.57896686,0.570307,-0.50313497,0.70458233,0.14525358,-0.1398967,0.0017576722,0.1687745,0.34592643,-0.019402932,0.41997942,-0.12630986,-0.040821772,0.17338838,0.92155737,0.21072194,0.29086587,0.08297034,-0.040824927,0.37138516,0.2078396,0.31953225,-0.25912297,-0.5277685,0.01878048,-0.10601865,0.21770154,0.38790148,0.026614923,0.32114357,-0.24236701,0.046852175,-0.02675377,0.2742543,-0.21979779,-1.549549,0.30299684,0.21501495,0.87070453,0.56639504,0.12685448,0.24416527,0.58119065,-0.47182754,-0.17053391,0.4880567,0.28968516,-0.26456854,0.49318403,-0.51194984,0.51062137,-0.13212873,0.0602118,0.17225884,0.18288812,0.5685362,0.93668747,-0.13711858,0.07767921,0.14444381,-0.230716,0.17128716,-0.3187303,0.03322065,-0.28684065,-0.29902336,0.9063889,0.6657501,0.45648062,-0.35463592,-0.08036905,0.09005802,-0.27006692,0.0640843,-0.104962505,-0.23684993,-0.26349944,-0.5753086,0.03958519,0.6071831,-0.02168886,0.006375244,0.17721096,-0.41596082,0.37478182,0.08589459,0.081646286,-0.04262569,-0.6775292,-0.2524044,-0.4246306,-0.34168404,0.12913676,-0.19812639,0.014649065,0.23229448,0.002986039,-0.18023705,0.26879048,-0.010127803,0.70341784,0.18570517,0.07470176,-0.13197762,0.06021232,0.23334914,-0.24713168,-0.062250532,-0.39900047,0.24177703,-0.56299525,0.4327232,-0.22903235,-0.31360728,0.05854257,-0.07424101,0.009370301,0.46477413,-0.23848952,-0.22957104,0.2257302,-0.009662573,-0.29635656,-0.2690027,-0.38217175,0.18220186,0.12458653,0.20601834,-0.06384586,-0.05035787,-0.1538261,0.5319804,0.19484565,0.31240925,0.43478855,0.08966525,-0.48649603,0.025025455,-0.15445049,0.68400925,-0.079849094,-0.08627052,-0.12825772,-0.2613765,-0.21942414,0.68330914,-0.11763012,0.13362494,-0.034857694,-0.4130929,0.73779106,0.12945716,1.2133468,0.01867806,-0.51825714,0.054118812,0.6320805,-0.36134312,-0.015059014,-0.34164315,0.8299757,0.52493984,-0.21247347,-0.08030547,-0.5451558,-0.11312454,0.008458807,-0.3481113,-0.21150443,-0.18090732,-0.7105148,-0.03076409,0.15698609,0.24912444,-0.010821447,-0.045838144,0.18162078,0.11763482,0.08277969,0.3467868,-0.55332005,-0.17524607,0.32299283,0.33763373,-0.09187888,-0.036405355,-0.31485966,0.33214852,-0.67799276,0.035605874,-0.58635294,0.085054524,-0.22935821,-0.20622729,0.19736934,-0.04030147,0.3013802,-0.32114485,-0.2438689,-0.21501762,0.57186687,0.17736365,0.4936805,0.740343,-0.18493065,-0.0054105553,-0.033662654,0.47618392,1.0230858,-0.3139895,-0.16158618,0.1663711,-0.4189294,-0.50464034,0.19395913,-0.8592497,0.089298695,0.29392368,-0.3616095,-0.17451476,0.2929648,0.04307795,0.37369582,-0.06730479,-0.777146,-0.08450977,0.4902546,-0.065772876,-0.26765043,-0.12608135,0.12561591,0.776652,-0.18680866,-0.23880126,-0.029632144,0.4229606,-0.3732605,-0.5905022,0.16529582,-0.47879165,0.45535183,-0.03067724,-0.18461367,-0.028709885,0.098267876,-0.52359855,0.096646436,0.39710286,-0.3238764,0.0033901287,-0.41987514,-0.07904548,0.95230114,-0.19214003,0.19165558,-0.52697814,-0.66655266,-0.7691535,0.039897844,-0.13564529,0.40271738,-0.13531399,-0.5283377,-0.06089193,-0.18780485,-0.20218319,0.10962193,-0.56987613,0.5807549,0.15425958,0.59995246,-0.2547484,-0.8545525,0.13304007,0.14417332,-0.08857513,-0.33553174,0.676625,0.06068371,0.6380281,0.09307451,0.09516914,-0.15123788,-0.69276595,0.46876633,-0.24867429,0.019367503,-0.92861724,0.053522266 -660,0.5655846,-0.26117,-0.3851496,-0.13652276,-0.2680196,0.30786783,-0.24777184,0.3331769,0.05125095,-0.29230613,-0.06751455,-0.090305775,0.084082715,0.52176386,-0.077541605,-0.5969988,0.05855774,0.06537324,-0.75832975,0.5236344,-0.5645495,0.31261024,0.07673703,0.27006108,0.20064396,0.28377616,0.17466895,-0.07297436,-0.093670204,0.06446085,-0.14329636,0.3199866,-0.5795028,0.11115422,-0.050319247,-0.19707674,0.01393199,-0.40609682,-0.31710318,-0.6026101,0.2794462,-0.75259477,0.47688305,-0.082325414,-0.31374553,0.39701676,-0.055115648,0.17768718,-0.41433823,0.09279113,0.08457507,-0.1068065,-0.04731804,-0.24141073,-0.122279525,-0.31928176,-0.5527141,0.101444855,-0.6726908,-0.32445988,-0.23423672,0.096029975,-0.31709003,0.041403882,0.0019049533,0.22643152,-0.51576865,0.07721695,0.072820045,-0.08174992,-0.09674147,-0.5019203,0.08728026,-0.07618087,0.18085386,-0.12784398,-0.2411015,0.2961695,0.2576673,0.5749463,-0.009213369,-0.18636595,-0.06439988,-0.012903251,0.13569054,0.58547693,-0.17236128,-0.29947016,-0.25692642,0.051277068,0.24500868,0.0054186136,0.016347416,-0.38808465,-0.16653076,-0.01261545,-0.15941675,0.17536767,0.4489082,-0.55399346,-0.34576744,0.4855901,0.47420642,0.19577023,-0.06213809,0.07125532,0.002316678,-0.53720015,-0.07786461,0.07610504,-0.11296777,0.40783742,-0.11257311,0.25106263,0.673778,-0.23988484,0.17658338,-0.051638935,-0.09956929,0.011018608,-0.13881287,-0.0633181,0.011368882,-0.43117815,-0.03551667,-0.15299052,0.76223487,0.24749364,-0.65600836,0.4908696,-0.46786028,0.13670541,-0.09931223,0.5695499,0.7993274,0.38241613,0.020303365,0.6033237,-0.38916636,0.13373592,-0.21606016,-0.33490926,0.2410115,-0.19629872,-0.22106892,-0.47640398,0.07173722,-0.008258028,-0.14472073,-0.0059866905,0.64575565,-0.5320867,-0.07946443,0.031494647,0.69325435,-0.3859548,-0.1524348,0.5898444,0.8586731,0.7854997,0.0056025535,1.2477039,0.39879206,-0.062148705,0.2097818,-0.366757,-0.66283154,0.21339864,0.52941835,0.11167002,0.40092394,0.12659417,-0.16980323,0.37524232,-0.3025748,-0.033621997,-0.18720603,0.3666184,0.0052104704,0.0024847835,-0.34442198,-0.21577522,0.0074933786,0.077846594,-0.035876516,0.3048339,-0.42953822,0.2729972,0.047840223,1.9311594,-0.11480113,0.13433905,0.033975974,0.39387137,0.27027035,-0.20469616,-0.22579569,0.33817112,0.43544367,-0.025399169,-0.5268161,0.10233154,-0.21588813,-0.53029054,-0.13990954,-0.43311483,-0.061615758,-0.10176443,-0.47400412,-0.086519934,0.25874704,-0.20411655,0.46501857,-2.6335413,-0.2335862,-0.11311957,0.42848903,-0.33963424,-0.44372213,-0.30385655,-0.33270016,0.21124971,0.30938047,0.4772411,-0.620045,0.42212957,0.3223117,-0.3137316,-0.15803106,-0.538293,-0.10016222,0.016142651,0.5055918,-0.11231553,-0.10677664,0.019605167,0.1792664,0.55385095,-0.16872302,0.0023384877,0.22129077,0.3049295,0.25594997,0.3243283,0.025029331,0.4992659,-0.20718487,-0.21371067,0.48378092,-0.042667415,0.2619927,-0.059443273,0.218537,0.23747225,-0.4614377,-0.8734366,-0.57752585,-0.11495753,1.1823782,-0.4056614,-0.2950699,0.19634043,-0.020700686,-0.15602371,-0.02495154,0.25887665,-0.15565653,-0.16699547,-0.72861576,0.16975203,0.06458862,0.19567996,-0.055520963,0.121250495,-0.21492118,0.4878854,-0.10317602,0.42293775,0.21762715,0.2937847,0.07959154,-0.40048072,0.13272265,1.0260268,0.34951705,0.12312277,-0.1796042,-0.23991528,-0.1458157,-0.1258243,-0.009062078,0.3107902,0.7994646,0.17948867,0.14095479,0.1615203,-0.12810329,-0.048612587,-0.19877079,-0.2650012,0.080120735,0.041023552,0.58059925,0.4994604,-0.16992354,0.4866684,-0.05826175,0.19559622,-0.047077,-0.554886,0.41549182,0.98895776,-0.18973958,-0.11114323,0.43219888,0.38284403,-0.3609101,0.38843566,-0.67388463,-0.30195683,0.48780027,-0.2283909,-0.27112672,0.3582393,-0.24428795,0.16730824,-0.7721833,0.5042798,-0.013906255,-0.28900418,-0.43979973,-0.123031795,-3.5957716,0.104976274,-0.17301969,-0.16388568,0.05619956,-0.041028585,0.31309807,-0.5750193,-0.36118817,0.010917619,-0.0062252516,0.6049819,-0.057442877,0.10343289,-0.2913342,-0.2699988,-0.2951002,0.084388,0.114716575,0.3508301,-0.03818241,-0.37044016,-0.021518724,-0.2445435,-0.26480255,0.14571728,-0.5336753,-0.5539449,-0.13761748,-0.44030756,-0.067707054,0.69166696,-0.2765957,-0.07136312,-0.20223266,0.045027953,-0.13213563,0.2926657,0.290725,0.045015555,0.13695446,-0.006917091,-0.08930753,-0.46108586,0.28224087,0.10363588,0.20798513,0.5508075,-0.044181824,0.051105008,0.6536597,0.384929,-0.16637728,0.7018362,0.42978942,-0.1684207,0.24397805,-0.24745074,-0.24502523,-0.3951007,-0.40512985,-0.1300206,-0.3764128,-0.35429752,-0.12559605,-0.2602076,-0.73327875,0.49854225,-0.16988015,0.11951816,-0.082157336,0.27423218,0.51884454,-0.13270977,-0.08346843,-0.12150252,-0.13371243,-0.6020924,-0.37913406,-0.6903654,-0.5594046,0.23557003,1.0214765,-0.24599731,-0.10516976,-0.1546298,-0.11695175,-0.120682895,-0.18042421,0.064544916,0.3277579,0.318896,-0.14220956,-0.8049072,0.4636497,-0.19478965,-0.15334731,-0.56026757,0.11437906,0.50685203,-0.67673516,0.37544858,0.28661326,0.21433447,0.19057523,-0.55285096,-0.2304225,0.1203276,-0.19970356,0.31960392,0.07615118,-0.7849579,0.53671753,0.24260353,-0.34282514,-0.7405207,0.48234475,0.13246109,-0.22441679,-0.009698726,0.30039072,0.106953904,-0.07494584,-0.16341795,0.20730385,-0.51181436,0.44843164,0.2879659,-0.005393766,0.38008752,-0.21278122,-0.27539593,-0.5427656,-0.12395261,-0.36462355,-0.32426333,0.12950914,0.07240539,0.26803178,0.0637168,-0.019047126,0.5208993,-0.4403172,0.028767046,0.09009823,-0.24068339,0.388346,0.42224577,0.52572036,-0.2843158,0.53815556,0.040240616,-0.05055987,0.14041619,0.031348746,0.4174662,0.087585464,0.1281799,-0.018412054,-0.14234106,0.27733925,0.92824894,0.21808648,0.36947095,0.05920525,-0.4333167,0.28625426,0.18419568,0.046547815,0.11989668,-0.32596424,-0.02987137,0.07481563,0.2275212,0.493645,0.24933529,0.29294825,-0.14018872,-0.27093774,0.14863272,0.022026025,0.09073351,-1.0519246,0.11077024,0.16492262,0.56063527,0.38136017,-0.05494669,0.02538985,0.507752,-0.24146733,0.072472304,0.29993114,-0.1849524,-0.6784137,0.51651424,-0.59979403,0.5058508,-0.033375934,0.003442768,0.11585231,0.090129405,0.37496728,0.85769343,-0.07385911,0.049772974,0.06089077,-0.29000768,0.06674355,-0.41117555,-0.04374016,-0.47295937,-0.22418097,0.58541924,0.42706844,0.17273742,-0.10171424,-0.032709684,-0.019328594,-0.20497315,0.08376408,-0.004403429,0.13408406,-0.049952284,-0.6043,-0.47122008,0.5204731,-0.022767462,0.108351015,-0.011440977,-0.0851038,0.3099503,-0.2820608,-0.1963711,-0.074869566,-0.55990326,-0.0702572,-0.4875549,-0.54962015,0.30950752,-0.13502195,0.23237401,0.16998634,-0.05695445,-0.41843897,0.4697777,0.11320883,0.8836067,-0.043770466,-0.28612423,-0.40040863,0.20147987,0.26129276,-0.20597541,-0.04940813,-0.2857305,0.044338338,-0.7425026,0.44159403,-0.19169366,-0.3130828,0.16274121,-0.13935104,0.013670639,0.45675054,-0.047251545,-0.21979737,-0.13572726,-0.038973905,-0.40141657,-0.108957306,-0.19114581,0.16983691,0.17506626,-0.17083545,-0.039240066,-0.11574782,0.00020590052,0.4824884,0.11117848,0.35455042,0.38898402,0.15091886,-0.2362338,-0.12233861,0.3206424,0.44396883,0.028627157,0.028216321,-0.38057062,-0.44519445,-0.34098914,0.1647829,-0.24785581,0.32486227,0.19452018,-0.46606773,0.7530458,0.0023663435,1.0652372,0.07968521,-0.2674345,0.20103164,0.54255223,0.15103501,0.03933935,-0.34507582,0.87269926,0.6256355,0.11202844,-0.18390912,-0.3871003,-0.28901353,0.24899876,-0.30691713,-0.13402064,-0.08358979,-0.68584573,-0.31861883,0.20308231,0.18603677,0.20895812,-0.041747063,0.061719507,0.18299718,0.08658582,0.2558832,-0.5569774,-0.16427243,0.2601595,0.31434482,-0.079207994,0.3035619,-0.4576162,0.46623158,-0.5733571,0.01764571,-0.27492803,0.13401115,0.06918843,-0.2907493,0.15676275,0.16819228,0.4116001,-0.33079875,-0.34276637,-0.2686876,0.50761366,0.08422712,0.16709426,0.6414654,-0.25144854,-0.013891585,-0.051173963,0.40079308,1.0000412,-0.14637113,0.118834816,0.35545802,-0.3325995,-0.6751085,0.27318266,-0.17273712,0.26567453,-0.11075303,-0.24450228,-0.52286255,0.30042976,0.10912057,-0.0065353625,-0.019362472,-0.51603526,-0.12551498,0.33467314,-0.16870867,-0.25889412,-0.3950847,0.15981199,0.756058,-0.45871288,-0.16243638,0.15138794,0.3619718,-0.29985458,-0.56195444,-0.109880574,-0.42281467,0.14741425,0.22889555,-0.15942192,-0.028176457,0.06901123,-0.36181822,0.07762897,0.2895221,-0.38113123,-0.0068732314,-0.1210484,0.11976341,1.0047369,-0.08182135,-0.09259092,-0.7970102,-0.53746015,-0.9244461,-0.4289444,0.5454701,0.23353584,0.07546355,-0.5319104,0.043479316,-0.08518088,-0.063403,-0.013834365,-0.508378,0.45195884,0.033324786,0.20880514,-0.030287646,-0.71823287,0.08244003,0.07466333,-0.31375626,-0.5943434,0.5199672,-0.17312726,0.8329414,0.08929476,-0.037600987,0.26177603,-0.5247051,-0.020283602,-0.47308993,-0.096686095,-0.7668102,0.23677675 -661,0.4522025,-0.3225005,-0.48411602,-0.03953133,-0.3534324,-0.07896836,-0.211694,0.579534,0.2984357,-0.24837674,-0.20631203,0.040505987,-0.15504734,0.107352726,-0.118077815,-0.38469014,-0.0822137,0.27135095,-0.6037665,0.63038105,-0.32656148,0.20244156,-0.10620041,0.35297638,0.41858917,0.23124883,-0.25285524,0.20786284,-0.018725498,-0.30565247,0.01560235,0.16508974,-0.5571799,0.18917295,-0.27441874,-0.3846678,-0.2640309,-0.5773322,-0.47063637,-0.8687592,0.46646705,-0.8108011,0.58679855,0.015383222,-0.34129474,0.20073898,0.10397436,0.43087727,-0.12272789,-0.12902968,0.32419902,-0.10884929,-0.19405968,-0.19298604,0.023696383,-0.16431181,-0.53339696,-0.11220609,-0.282866,-0.032327328,-0.3338017,0.20087552,-0.2817308,0.051539056,-0.11613309,0.5100765,-0.41410998,0.27530304,0.18767749,0.03544852,0.21645178,-0.7711506,-0.15140447,-0.12455101,0.3634789,-0.0321241,-0.3902862,0.27395743,0.28503218,0.36177167,-0.14207225,-0.14190896,-0.122113325,0.14863743,0.057577837,0.4361741,-0.30097088,-0.2323188,-0.08725593,0.011676124,0.40376708,0.17262968,0.15842845,-0.16011152,-0.13911511,0.010766958,-0.17072341,0.44151777,0.50096995,-0.20407328,-0.056522667,0.34091827,0.5363818,0.40064922,-0.15329458,-0.030603766,0.014032823,-0.54059505,-0.18844786,-0.0070390278,-0.25157052,0.37042183,-0.11956112,0.18037298,0.51924837,0.002896126,-0.24290507,0.30117318,0.27171543,0.008813143,-0.25107625,-0.60333264,0.26861855,-0.60227126,0.21432681,-0.14275554,0.56505173,0.11392788,-0.7600253,0.33930573,-0.59430367,0.124977835,-0.1009435,0.33987752,0.8943793,0.56195545,0.32630095,0.7583422,-0.30989847,0.043012314,-0.06973253,-0.05702121,0.1464102,-0.25224152,0.0037115514,-0.5272476,-0.09303325,-0.32393909,-0.22438218,0.19243959,0.42497966,-0.53974974,-0.1738035,0.06487463,0.83121544,-0.20161971,0.09182117,0.8876731,1.0492421,1.0362542,0.10042113,1.001942,0.020347267,-0.25252983,0.060878847,-0.14970131,-0.6410231,0.3324737,0.34140554,-0.17470108,0.12124415,0.123639226,-0.018202368,0.4019942,-0.4697455,-0.018773092,-0.18306334,0.18293646,0.19775088,-0.16856588,-0.27761745,-0.35206518,-0.11638194,0.20211805,-0.06960089,0.26689067,-0.26784176,0.3382309,0.16977988,1.5202495,-0.079765,-0.061677456,0.084769234,0.38709736,0.29487744,-0.34946376,-0.1533368,0.21311322,0.43959507,0.07266478,-0.5499507,0.14249717,-0.17800139,-0.17753664,-0.14520323,-0.17820962,-0.19324872,-0.012129791,-0.4259055,-0.30222204,-0.16581628,-0.20522778,0.42742178,-2.6914213,-0.25120932,-0.009863517,0.45789385,-0.06336417,-0.4005701,-0.057192173,-0.4645569,0.50900036,0.22663502,0.46924216,-0.6430748,0.46333104,0.45270994,-0.8190948,-0.014550449,-0.52183837,-0.25581393,0.14331138,0.16788734,0.050466068,-0.026036408,0.006356039,0.115325436,0.4188837,0.039040525,0.17047942,0.51851094,0.37624064,-0.18445231,0.48566103,-0.08779048,0.54469997,-0.25492224,-0.3029608,0.33083695,-0.35616717,0.17568953,-0.17572705,0.06653459,0.6196526,-0.5484597,-0.78673786,-0.739456,0.096792236,1.2682978,-0.09795565,-0.4161189,0.23088802,-0.7745672,-0.41562504,-0.07558741,0.528772,-0.05812806,-0.25369087,-0.8755881,-0.11032367,-0.036098067,0.18820919,0.018569613,-0.3065459,-0.5007287,0.7864168,-0.0044871527,0.58878344,0.37173352,0.059782457,-0.29266003,-0.28328013,0.020563092,0.78347653,0.5665904,0.09306584,-0.2644177,-0.027107498,-0.47718024,-0.020741556,0.060934056,0.59108275,0.38034704,-0.1419753,0.15517153,0.25421283,-0.082504585,0.040974915,-0.2885874,-0.32315448,-0.16182272,0.06756146,0.5419639,0.7023944,-0.044823747,0.35606536,0.09368568,0.19266447,0.030241536,-0.5527215,0.4798462,1.1069268,-0.14910187,-0.41935137,0.47293326,0.3709764,-0.14720918,0.39531666,-0.3580783,-0.16330314,0.33019462,-0.07240959,-0.41270855,0.24844837,-0.34916994,0.16427647,-0.54648507,0.33898386,-0.5598914,-0.69440156,-0.60284805,-0.03179097,-2.2831633,0.30844346,-0.2706519,-0.14572932,-0.2830213,-0.21821825,0.23617855,-0.6024439,-0.7130418,0.15450695,0.1086448,0.86353046,-0.1723034,-0.18743153,-0.05225834,-0.518104,-0.3693664,0.10448204,0.28063613,0.374108,-0.0049719713,-0.30305895,-0.176565,0.01728183,-0.35072595,-0.107707635,-0.6861498,-0.39650536,0.01952525,-0.5283419,-0.3442518,0.60185903,-0.21405326,0.082908,-0.1474723,-0.07840687,0.015345693,0.2536568,0.029075444,0.24151538,0.010028579,-0.20054701,0.065491445,-0.14451127,0.20500152,-0.022765378,0.16706535,0.044238295,-0.060746882,0.4029964,0.50405246,0.82565266,-0.20085771,1.0736909,0.5266953,-0.21272793,0.18607844,-0.30064994,-0.439199,-0.47716603,-0.06029958,0.1677609,-0.37502432,-0.24893704,0.08384893,-0.48862463,-0.857696,0.5237303,-0.020342799,-0.004733469,0.1515105,0.18540847,0.55174977,-0.08841138,-0.010623345,-0.11362792,-0.18760882,-0.49745736,-0.07012864,-0.6351227,-0.39672938,-0.09790389,1.1813815,-0.3594621,0.2967603,0.22030608,-0.30150196,0.19870266,0.18459556,-0.11570297,0.12943909,0.45039526,-0.20518239,-0.55280364,0.14720885,-0.064401664,-0.16271432,-0.72221977,0.43862417,0.5851897,-0.5630556,0.6710325,0.306588,-0.11873169,-0.43927607,-0.5645633,-0.061117392,0.03905081,-0.29256466,0.5220094,0.36514595,-0.7513312,0.36196062,0.50885457,-0.1973755,-0.72692615,0.5352723,-0.12833177,-0.3485205,-0.20845146,0.30013993,0.13126434,0.005303949,0.002920964,0.439949,-0.3666688,0.3237881,-0.03877492,-0.22569628,-0.11512055,-0.3054509,-0.086988054,-0.77062756,0.12297119,-0.5009595,-0.2971322,0.28838545,0.08041472,0.1575798,0.16166021,0.38934496,0.41332754,-0.236747,0.11124214,-0.3026827,-0.41005874,0.29134914,0.47369653,0.521374,-0.3126721,0.4959657,0.028432403,-0.19893003,0.0051850253,0.09243237,0.4092601,-0.09210886,0.50554407,-0.040372092,-0.07548534,0.1599956,0.8040911,0.09954802,0.39166158,-0.087399065,-0.06124721,-0.040847298,0.043650407,0.34489283,-0.1962284,-0.5694624,0.15190645,-0.20090532,0.053871598,0.5639784,0.20423087,0.010310367,-0.13181768,-0.526035,-0.1899999,0.1322963,0.06729599,-1.4963036,0.57301337,0.21562526,0.9001403,0.486309,0.09850273,-0.06766875,0.8103296,0.0091922,0.051943924,0.31978327,0.06837993,-0.38050726,0.35528135,-0.84694576,0.50156826,0.06380362,-0.046649806,0.10390629,-0.1398187,0.45651856,0.624024,-0.17565851,0.012664384,-0.037674945,-0.3910772,0.18463203,-0.36191374,-0.06272227,-0.6429101,-0.35092688,0.81952965,0.5588908,0.40440908,-0.32360095,0.1176335,0.021708706,-0.21593639,0.1824895,0.08480139,-0.00085003034,-0.023680832,-0.59851116,0.093545556,0.36587572,-0.23308858,0.12627468,-0.108406626,-0.08114646,0.29555327,-0.11808242,0.13817887,-0.15988632,-0.84487087,0.048764106,-0.5064357,-0.27578303,0.37568164,0.046057433,0.08872356,0.24567904,0.14478667,-0.0637802,0.55592155,-0.06850543,0.6451683,0.007458295,-0.015445486,-0.2357724,0.2944745,-0.06165075,-0.051253352,0.040883042,-0.3223238,0.14055972,-0.6334561,0.4560984,0.00786206,-0.32422787,0.17613962,0.027093198,0.08890573,0.47698313,-0.26971984,-0.19881253,-0.15690853,-0.116641246,-0.2641494,-0.5099432,-0.053713262,0.15049978,0.2187008,0.23289572,-0.19344752,-0.08899029,-0.21802525,0.58690137,0.034525488,0.6035862,0.40608266,0.14686649,-0.283008,-0.10151529,0.17116608,0.5219559,-0.09795232,-0.25036666,-0.49879727,-0.4074044,-0.3589592,0.35626724,-0.0029476646,0.45592508,0.05344855,-0.028442856,0.7503063,-0.10208394,0.9756785,-0.112131014,-0.313838,0.11234711,0.5879634,-0.18865336,-0.25891918,-0.22426854,0.6439414,0.53849,-0.103552565,0.057905786,-0.3697072,-0.031237999,0.10837494,-0.21615602,0.05259096,0.013925778,-0.6186386,-0.19939265,0.13248947,0.29905367,0.16436405,-0.20124845,0.10029181,0.4225015,-0.08403628,-0.12954418,-0.44743937,-0.22394717,0.30687985,0.2361659,-0.028707614,0.11449047,-0.635828,0.2984679,-0.37563664,0.076886095,-0.18027963,0.15308593,-0.16978523,-0.26993456,0.21387397,0.024141014,0.18315127,-0.34417632,-0.18858679,-0.17212489,0.40008074,0.19749942,0.14354381,0.45370656,-0.32109162,0.054744035,0.0935251,0.49176183,0.6197691,-0.20039351,-0.13810702,0.25184235,-0.4155963,-0.47695985,0.2165068,-0.26028043,0.047566168,0.22355005,0.025720222,-0.55200356,0.26910764,0.20296507,0.1454445,-0.06400337,-0.9247961,-0.18304019,0.22419818,-0.21979967,-0.04810571,-0.3369208,0.008964418,0.49118346,-0.18842462,-0.38978818,0.026679652,0.22286426,-0.06785629,-0.47186875,0.118927,-0.53921235,0.23761807,-0.08797675,-0.28624824,-0.18061733,0.018931776,-0.48092517,0.09893944,-0.042391803,-0.3469331,0.019584553,-0.258529,0.018676251,0.88371605,-0.30700523,0.20349921,-0.23989333,-0.48681346,-0.6116801,-0.20243904,0.3615763,0.23673317,-0.020660264,-0.8881801,0.0020542017,-0.09620913,-0.22437988,-0.09809283,-0.3724555,0.50967515,0.0878468,0.4981268,-0.1549281,-0.75344235,0.31231713,0.08886891,-0.27035603,-0.40217468,0.5050569,0.05662256,0.7964676,0.046975434,0.1631255,-0.028208688,-0.39898673,0.01822411,-0.19086708,-0.20436883,-0.5772887,-0.036481645 -662,0.42169315,-0.33026767,-0.49008515,-0.07091745,-0.1860216,0.16126274,-0.18024898,0.49324378,0.28675112,-0.4326051,-0.08366188,-0.08637757,-0.001992049,0.37116656,-0.08057023,-0.34839326,-0.03363943,-0.0022446609,-0.51066923,0.58789825,-0.37323448,0.1537373,-0.2367973,0.57840717,0.24141778,0.24603339,0.017791795,0.13253325,0.025521645,-0.2975249,0.24151847,0.28683478,-0.46717077,0.47556916,-0.22027552,-0.25718087,-0.076879136,-0.26609212,-0.5101737,-0.7148227,0.30754852,-0.7844537,0.30978337,-0.056691978,-0.27717444,0.19772415,-0.013153626,-0.025426975,-0.20540403,-0.29101378,0.032405183,-0.21375667,-0.06828366,-0.2753288,-0.17480513,-0.400359,-0.49358752,-0.09737295,-0.30541563,-0.07298924,-0.38349548,0.08650792,-0.3556936,-0.00058976666,-0.10300732,0.58489865,-0.35956007,0.24341688,0.25970614,-0.28624636,0.12045425,-0.68499976,-0.36111116,-0.114136815,0.06248545,0.23258291,-0.34291023,0.4525164,0.09683543,0.17952535,-0.011650451,-0.110446975,-0.26500803,-0.17821862,0.3750012,0.36692095,0.032731745,-0.407496,-0.14353131,-0.10444225,0.122972675,0.19248211,0.33137083,-0.31998628,-0.11960877,0.04012365,-0.22844112,0.4325505,0.5705751,-0.09263756,-0.18550876,0.19496202,0.38580889,0.30304447,-0.3037734,-0.09900709,-0.026534306,-0.4469625,-0.09176029,-0.033032715,-0.08305425,0.5009437,-0.1266085,0.33866334,0.5936451,-0.27530536,-0.10522993,0.08849023,0.17887037,-0.23338504,-0.44023886,-0.21196547,0.16635032,-0.41035444,0.17993757,-0.13240603,0.7830237,0.18912645,-0.47208452,0.43101773,-0.38458315,0.070973046,-0.06584635,0.48024133,0.616407,0.34286115,0.37710217,0.6194396,-0.3015589,0.0074984008,-0.19597742,-0.14575608,-0.050908208,-0.3606925,0.18816996,-0.40777335,-0.029164374,-0.06669115,-0.10408229,0.0614711,0.42520306,-0.34344083,-0.14461394,0.1855713,0.7484937,-0.21360111,0.11316652,0.71272427,1.2114525,1.1269833,0.12281137,1.1145271,0.085619695,-0.19165698,-0.020379987,0.12989476,-0.7959897,0.26534376,0.27582327,0.44268042,0.15023175,-0.025899382,-0.001597826,0.33689752,-0.43352133,-0.03131897,-0.058528204,0.61102116,0.23999548,-0.07270614,-0.29294044,-0.3021452,-0.10785474,-0.09899039,-0.07991546,0.2655186,-0.105390206,0.5149452,0.1511172,1.357962,-0.098192744,-0.029083248,0.14446715,0.6076932,0.23437534,-0.28840327,0.11584175,0.2996162,0.14774312,-0.01416786,-0.5628311,0.24178596,-0.273091,-0.4763504,-0.09775664,-0.4019689,-0.1955773,0.0991055,-0.26875028,-0.2946259,-0.0376529,-0.23581786,0.38791534,-2.9284875,-0.1245048,-0.1033488,0.38212132,-0.16684332,-0.16149278,0.006402456,-0.52405757,0.38455233,0.20303905,0.43724027,-0.48214787,0.079871014,0.6139202,-0.6118521,-0.054428406,-0.37333253,0.017978575,-0.034686323,0.47094855,-0.0847566,0.11759595,-0.21544047,-0.0121582495,0.584359,0.13073315,0.23032464,0.38161018,0.15148146,-0.35718516,0.46091977,-0.120497115,0.43879077,-0.451632,-0.022302667,0.31240293,-0.42098427,0.41129318,-0.29272828,0.1596119,0.6441569,-0.31186262,-0.5810669,-0.63682616,-0.06838477,1.2183529,-0.104527555,-0.67102754,0.23701546,-0.66760856,-0.16498078,-0.15387313,0.49553064,-0.09960236,-0.12728898,-0.5770501,0.059451055,-0.03346328,0.15639438,-0.088993974,-0.1275821,-0.25628188,0.6534795,0.09745487,0.48212576,0.21228337,0.10002543,-0.2251699,-0.3292558,0.11361127,0.53099436,0.43407035,0.15169981,-0.43464676,-0.18967636,-0.21442835,-0.19963673,0.112078734,0.68302286,0.39672205,-0.15972002,0.23127578,0.2414732,-0.089890294,-0.003642823,-0.2519375,-0.12306353,-0.19098568,0.096704364,0.60210556,0.8564688,-0.007200505,0.23597011,0.003792682,0.26714966,-0.058443844,-0.48806527,0.5080352,0.84871674,-0.16757798,-0.27689394,0.46527857,0.4765303,-0.38500255,0.3305528,-0.43252835,-0.2922061,0.56460315,-0.14335768,-0.477037,0.016077233,-0.27610168,0.1318035,-0.47538868,0.21806654,-0.55226123,-0.67444813,-0.48977193,-0.15865202,-2.4647086,0.1426123,-0.27420488,-0.19029878,-0.22602119,-0.22015585,0.24298951,-0.34227067,-0.5311671,0.21374328,0.11288302,0.7338163,-0.16716501,-0.08098977,-0.37713936,-0.44717202,-0.32750422,0.109791696,0.14076169,0.3818646,-0.13445564,-0.2795673,0.041076858,-0.010701383,-0.32904407,0.11288402,-0.37863678,-0.5100232,-0.12724943,-0.3732105,-0.39713582,0.5885855,-0.03522052,-0.005488168,-0.15531383,0.009387776,-0.10299023,0.08971398,0.005189717,0.17310724,0.08541752,-0.12229623,-0.04975428,-0.32257834,0.28867558,0.0021347941,0.30777007,0.40673146,-0.059896696,0.08994488,0.39642286,0.54214674,-0.14904077,1.0196854,0.286315,0.08960929,0.3605241,-0.1506319,-0.52684146,-0.5048472,-0.1564995,0.29876462,-0.39722404,-0.33419558,0.093661904,-0.26471657,-0.65176994,0.5825452,0.190395,0.1443385,0.06966103,0.06754751,0.48480123,-0.05632278,-0.06415793,0.17840861,-0.037816636,-0.7476056,-0.41553766,-0.7852414,-0.52271616,0.14364572,0.90296024,-0.23559295,-0.14688277,0.13509431,-0.4352793,0.14657973,0.2861453,-0.108526155,-0.18088634,0.48433542,0.0781622,-0.49059078,0.48361522,-0.017060515,-0.10344065,-0.59935033,0.4946344,0.6264645,-0.7215032,0.6437011,0.18023825,0.09357093,-0.37416396,-0.48994318,-0.12182747,-0.28253016,-0.1675286,0.39370966,0.2755436,-0.95538396,0.31904125,0.17996824,-0.18861924,-0.67043245,0.46872872,-0.1921757,-0.2513258,-0.14465782,0.31301084,0.21365213,0.0057191295,-0.11716584,0.32655033,-0.51825464,0.19249001,0.12361276,-0.08808124,0.218142,-0.19033155,-0.17138597,-0.63955265,-0.012760644,-0.4957885,-0.39388552,0.34081587,-0.063670635,0.04942582,0.2459121,0.31882307,0.28145593,-0.104152165,0.17363313,-0.04550135,-0.35105538,0.45798543,0.42586628,0.62457556,-0.23587319,0.7117465,-0.016911617,0.045094226,0.1574969,0.17763135,0.26107243,0.23630609,0.56543714,0.08091681,-0.2603652,0.05835073,1.161908,0.12954995,0.4108939,-0.021022012,-0.06929435,0.35028264,-0.06859401,0.36184525,-0.12205291,-0.5777024,-0.012851732,-0.44794008,0.09834683,0.3564423,0.20679577,0.25574556,0.03490365,-0.43930206,0.0055323667,0.013335301,-0.01798307,-1.1791672,0.23013684,0.10012187,0.97335833,0.3556984,-0.016293688,-0.1023471,0.73047477,-0.02583612,0.07350625,0.3335347,0.110875435,-0.44321874,0.5097867,-0.6862053,0.56485873,-0.036865063,-0.14304687,0.09764935,0.034220707,0.47387663,0.6424232,-0.2344671,-0.04135465,0.15154208,-0.37052733,0.1510161,-0.49252912,-0.13373451,-0.5446264,-0.39711183,0.5302609,0.64215183,0.44269314,-0.28774428,0.018360982,0.050352726,-0.11394893,0.25357255,-0.06484251,-0.087529846,-0.1468569,-0.5331685,-0.13545622,0.43314114,0.039999362,0.27087355,-0.041806724,-0.18527672,0.18959789,-0.093909405,-0.006784805,-0.06847625,-0.6194808,-0.0068047005,-0.22276889,-0.5426363,0.40006045,-0.14122602,0.25581995,0.37295794,0.0095088435,-0.07157922,0.43284056,-0.018115656,0.84848034,-0.074427366,-0.11998812,-0.49665308,0.016277624,0.11099107,-0.23200762,0.06821607,-0.12578431,-0.13635544,-0.47069263,0.5070845,-0.15777706,-0.2664408,0.028029291,-0.10878669,0.042361405,0.59548265,0.07937725,-0.1609669,-0.054712627,-0.10249963,-0.31757182,-0.2679011,-0.012455523,0.2392041,0.14795105,-0.0021146429,-0.114134856,-0.13582246,0.25418556,0.22182812,0.0009867698,0.20116057,0.3045965,-0.08831365,-0.33143234,-0.1309448,0.23514953,0.61962926,0.08060258,-0.13558482,-0.25303563,-0.5209294,-0.42981437,0.2018001,0.05998842,0.41007975,0.07552157,-0.41527933,0.531799,-0.23908135,0.7881971,0.06294403,-0.24520777,0.2426438,0.53699744,-0.012615676,-0.1095354,-0.31961516,0.5956295,0.2859269,-0.1394117,-0.19702992,-0.34777784,0.11520883,0.20433919,-0.24085243,-0.027448585,-0.0902713,-0.67809343,0.029487815,0.019656433,0.2181329,0.2044151,-0.13340469,0.016332272,0.29428014,0.12935789,0.380647,-0.40027422,-0.170855,0.32621676,0.12566593,-0.022577312,0.15691353,-0.39907643,0.24505033,-0.5448486,0.20183267,-0.15790306,0.09162567,-0.25865665,-0.31534645,0.24662413,0.11534234,0.33052093,-0.40539184,-0.3458705,-0.3642241,0.33113518,0.2564804,0.18087889,0.46607068,-0.15943827,-0.15312947,0.17843221,0.53531104,1.0335253,-0.10411211,-0.009785546,0.20403549,-0.5831521,-0.5995839,0.40143058,-0.24622524,0.22111738,0.1306292,-0.041477878,-0.55605626,0.14601913,0.34144923,-0.025408864,0.20855244,-0.79562604,-0.25970593,0.02025893,-0.49892852,-0.14727004,-0.39663795,-0.17609365,0.33751747,-0.20564573,-0.25934562,0.07725903,0.25946575,-0.18063828,-0.3593056,-0.024768272,-0.37657437,0.34072378,-0.22779639,-0.39064255,-0.15731876,0.05394706,-0.52456105,0.06294747,-0.13953097,-0.40767342,-0.015235119,-0.32665226,0.07894624,0.8136719,-0.3522745,0.19719324,-0.30706483,-0.53670084,-0.6716562,-0.22443482,0.23785134,0.04200548,0.05836239,-0.45677122,-0.17593156,-0.047311597,-0.0074665374,-0.11981189,-0.39465287,0.38208076,0.0065210634,0.30800086,-0.011379762,-0.9077813,0.34119648,0.18230745,-0.02270067,-0.40001342,0.4276002,-0.3369977,0.69803524,0.017342478,-0.10890615,-0.007148516,-0.37962213,0.24509032,-0.19845675,-0.23089422,-0.3180674,0.25068334 -663,0.4290002,0.060879357,-0.6088136,-0.16219707,-0.4040094,0.28322127,-0.36580944,0.015973942,0.12170868,-0.12315795,0.00064495404,-0.15100119,-0.13934453,0.12523134,-0.1539381,-0.6434662,-0.089058526,0.09321513,-0.57860404,0.5173633,-0.28631648,0.5463685,0.026410162,0.31927636,0.14194275,0.2968868,0.08204297,0.049351517,-0.11989972,-0.21459804,-0.14221893,-0.0013642868,-0.8265588,0.27413094,-0.25474605,-0.5038436,0.0058113574,-0.4835238,-0.30340636,-0.804801,0.41723114,-0.820531,0.6747228,-0.1452541,-0.2157465,0.1518576,0.10516901,0.34102446,-0.029143138,0.10423193,0.25270697,-0.34804848,0.19056985,-0.19445881,-0.445385,-0.41791758,-0.5063577,-0.08771232,-0.571962,-0.0985391,-0.31132418,0.25311488,-0.2551619,-0.02865488,-0.30859944,0.28501564,-0.46331802,0.25688753,0.2011879,-0.17692865,0.13577652,-0.41315317,-0.05051275,-0.04901378,0.14091831,0.0042277058,-0.03738087,0.46946633,0.12871727,0.4580983,0.08627799,-0.35964116,-0.21071061,-0.01636635,0.080334894,0.5352919,-0.074902676,-0.0030941823,-0.3097819,-0.090486735,0.3650505,0.40819538,-0.033399787,-0.31547448,0.10167485,-0.10615573,-0.0898622,0.34879074,0.5142769,-0.25761816,-0.17789707,0.39513725,0.37374052,0.21590348,-0.19245939,0.20627116,-0.058112014,-0.20869154,-0.27782768,0.2758628,0.008505523,0.47454646,0.039908525,0.22376157,0.6470034,-0.05400704,0.09799678,-0.17404133,-0.1390042,0.12166706,-0.21033175,-0.19884886,0.29025447,-0.6136577,0.31707063,-0.32307616,0.6660992,0.0635602,-0.7868197,0.46747124,-0.6731068,0.073121324,0.05874029,0.533627,0.7237274,0.34203503,0.124601625,0.8447618,-0.40505555,0.05793066,0.006351109,-0.23395279,-0.0089456,-0.04452495,0.28579348,-0.39422527,0.029208086,0.026175125,0.07087483,0.0099593615,0.15804654,-0.3070197,-0.16175617,-0.068779744,0.9104201,-0.38076273,0.14194942,0.77950203,1.0878596,1.0401891,0.039532725,1.0927178,0.4413841,-0.13955246,-0.23793112,-0.12069317,-0.55105424,0.06665746,0.27378252,-0.24373645,0.4240008,0.080029406,0.0562697,0.2199789,-0.33615786,0.002308023,0.0038962364,0.07894535,-0.028733563,0.019003788,-0.33860746,-0.35385895,0.26453012,0.040252943,0.032444704,0.21411654,-0.119520105,0.5204549,0.23075072,1.3717512,0.14221628,0.07059316,0.14342766,0.40984538,0.30223656,-0.22632709,-0.03051323,0.21114479,0.34757137,-0.16853254,-0.40531227,-0.07198849,-0.37868032,-0.37734511,-0.12579593,-0.24788044,-0.22017367,0.049287975,-0.32243344,-0.13407867,-0.033778332,-0.21192572,0.5102731,-2.5466573,-0.020154722,-0.10432343,0.31910762,-0.3104334,-0.339506,-0.28638417,-0.5147241,0.45810255,0.32618108,0.28363004,-0.4945933,0.25650698,0.31472194,-0.3475284,-0.09440635,-0.51998085,-0.01589806,0.055568818,0.33297953,-0.073391676,-0.10789003,-0.13182531,0.38342422,0.68403804,0.20899253,-0.033291332,0.24987626,0.4894431,0.011034416,0.46585813,0.04850816,0.42242166,-0.23621029,-0.04307606,0.37598294,-0.47426337,0.39190826,0.03574477,0.09014044,0.44022152,-0.49304008,-0.485771,-0.4996323,-0.42750898,1.0849993,-0.40626174,-0.5233732,0.056603335,0.018792009,-0.31716168,0.022082604,0.46650124,-0.071401134,-0.05830338,-0.49274316,-0.2427478,-0.22969007,0.25890133,-0.11870938,0.33483002,-0.34232038,0.68969864,-0.22141911,0.44805133,0.28914785,0.32690084,0.020900298,-0.52402467,0.17615369,0.7311982,0.55130655,0.083963946,-0.29653293,-0.029221041,-0.24083287,-0.25927913,0.17688115,0.6685868,0.7758329,-0.19736196,0.050461452,0.39056,-0.24091305,0.045597322,-0.2342041,-0.3482259,-0.06286865,-0.12327909,0.5147348,0.5520379,0.06298113,0.36102232,-0.12210253,0.24563815,-0.22482434,-0.53275806,0.3528652,0.80467,-0.16897002,-0.06566851,0.35353333,0.26307485,-0.29554385,0.46968782,-0.6304367,-0.21426617,0.7553987,-0.06234089,-0.5774832,0.13847485,-0.34211627,-0.04620951,-0.6791715,0.2947444,-0.10834742,-0.52608716,-0.37958574,-0.17389797,-2.6288233,0.13732879,-0.068715654,-0.11971932,-0.22719833,-0.26852134,0.2583925,-0.33469594,-0.58000016,0.083876595,-0.07780012,0.49194175,-0.113290526,0.21276046,-0.31753796,-0.18412203,-0.46144035,0.39053088,0.23169534,0.36632946,-0.22243427,-0.14183265,0.05475437,-0.2616906,-0.4705339,-0.113973975,-0.5312083,-0.47338298,-0.11498154,-0.3586488,-0.33417657,0.6842222,-0.44406065,0.054125335,-0.2531295,-0.18288173,-0.117755495,0.2320487,0.4174877,0.2697282,0.09440497,-0.04538668,0.0419638,-0.38094643,0.2949784,0.21512231,0.18694726,0.31353277,-0.15329923,0.1538041,0.20900747,0.5818072,0.029314915,0.68049395,0.0037733992,-0.14730236,0.44477683,-0.3958586,-0.33341405,-0.7842567,-0.27355662,-0.20307621,-0.35181898,-0.5034193,-0.38796183,-0.35691944,-0.7692112,0.2896064,0.029436048,0.27674815,-0.061480183,0.26253736,0.30435887,-0.16077703,0.032784637,-0.036472637,-0.120099045,-0.3292038,-0.46237713,-0.56512755,-0.599007,0.26249164,0.8450737,-0.027048282,-0.14441384,0.07184069,-0.23591249,0.3303657,0.06908312,0.21590203,0.13128264,0.43128645,-0.056443017,-0.610566,0.43365923,0.13205631,-0.22027816,-0.59016484,0.14097564,0.77745444,-0.58910525,0.45098087,0.2853926,0.089703746,-0.040763173,-0.6796294,-0.16592999,0.011243319,-0.38446045,0.4917335,0.11225626,-0.5202516,0.37436688,0.122866,-0.14298806,-0.69244564,0.5227799,0.06747859,-0.19062679,0.10315207,0.3915941,-0.050395343,-0.11595405,0.017230893,0.19462793,-0.58295757,0.3119732,0.31276074,0.0005677541,0.25735277,0.016279252,-0.22325398,-0.6217382,0.2194349,-0.44631827,-0.3852529,0.15534046,-0.032238007,0.0075543346,0.16952369,0.11756395,0.43426016,-0.26036376,0.16477603,-0.1229896,-0.1772087,0.44605675,0.38857403,0.37085298,-0.5369865,0.65094167,0.020103944,-0.02334513,0.14370689,0.18800904,0.41154402,0.1672441,0.20711635,-0.028590774,-0.04870313,-0.10032224,0.39062577,0.33070093,0.38256747,0.06735563,-0.13018718,0.25730836,0.1613643,0.08164097,0.050793096,-0.3009096,-0.06023591,-0.1041504,0.09385994,0.44795576,0.044904225,0.2971668,-0.16472428,0.027077658,0.19400224,0.069721855,-0.4081361,-0.97685486,0.2982008,0.22405703,0.7828447,0.3432236,0.0086830575,0.06769172,0.3521474,-0.31844813,0.09062205,0.37779045,0.17178987,-0.29086012,0.5527389,-0.4931259,0.48985526,-0.21379955,0.047954775,0.12070298,0.2759101,0.4976944,0.94742876,-0.22827773,-0.014293408,-0.13952312,-0.1256829,0.036998652,-0.117608555,0.23226343,-0.47893664,-0.42027628,0.6573338,0.2932947,0.30732533,-0.3789506,-0.06395517,-0.13129231,-0.21027909,0.11350867,0.05977336,-0.12024285,-0.047579683,-0.45224053,-0.3070939,0.5737651,-0.44484097,-0.17034331,0.10555269,-0.18270953,0.1961926,-0.13915405,0.1948411,0.08622788,-0.7819621,0.11260581,-0.4161857,-0.28181273,0.28242722,-0.2922118,0.22979209,0.16759533,-0.04737858,-0.1495747,0.12581335,0.271206,0.645356,-0.02703857,-0.23111923,-0.37893218,0.17921387,0.22393031,-0.35449925,0.025495926,-0.11191776,0.1450612,-0.6087852,0.3301902,-0.27077204,-0.113372244,0.0039070905,-0.11524908,-0.106514215,0.5509976,-0.20761754,-0.047478326,0.07158641,-0.0072588366,-0.3580944,-0.11235328,-0.36543268,0.09244076,0.2280129,-0.14660366,0.053746726,-0.1216111,-0.16543035,0.31380108,0.05101729,0.26446888,0.3079552,-0.15432315,-0.5259535,0.012649401,-0.16701724,0.30698434,0.21014592,0.118602104,-0.20602375,-0.24903034,-0.19281963,0.7217707,-0.26569876,0.05675864,0.01889392,-0.36582634,0.72472745,-0.022977997,0.97930336,0.10225118,-0.2784334,0.12187788,0.4927998,-0.02873327,0.014036208,-0.3905827,0.9520337,0.57629937,-0.13268067,-0.21945456,-0.09852167,-0.09224562,0.10424901,-0.3220947,-0.23399848,-0.05740637,-0.6339172,-0.2154462,0.108562425,0.23279817,-0.0016857306,-0.07643879,-0.12591152,0.2054077,0.1351438,0.5185886,-0.3135464,-0.109907664,0.4029392,0.027490314,0.012722512,0.17894958,-0.31387794,0.41243947,-0.6270121,0.20891355,-0.6090053,0.0005726218,0.012483048,-0.24241696,0.18855742,-0.014582853,0.31621817,-0.43357334,-0.29250857,-0.19191244,0.31432533,0.33613074,0.33387583,0.589384,-0.18379623,-0.08637169,0.051101282,0.449746,1.3621446,-0.12977757,-0.013374341,0.36636862,-0.46426705,-0.6063476,0.105282955,-0.32862917,0.043461885,-0.078866325,-0.36627942,-0.1838203,0.15468684,-0.0017737945,-0.09767472,-0.004357771,-0.77387327,-0.21398903,0.42161793,-0.19419597,-0.19779472,-0.40590099,0.28456607,0.814088,-0.08059489,-0.34869757,-0.0083478885,0.2386747,-0.35252276,-0.6644338,0.2659471,-0.2658448,0.34609595,-0.0034364401,-0.43751508,0.106965356,0.5222667,-0.5016956,0.008521343,0.24803871,-0.37028447,-0.14986187,-0.07208641,-0.0070768753,0.9236008,-0.21856557,-0.29271457,-0.5762945,-0.50183254,-0.99040705,-0.38697436,-0.10494309,0.4381099,0.100805424,-0.4701043,-0.15965743,-0.3938015,0.031385515,0.04067666,-0.412036,0.2861132,0.32524493,0.53700405,-0.22971855,-0.858081,0.18347412,0.09023578,-0.36716875,-0.55160224,0.5010252,-0.19919124,0.622965,0.11965987,0.0070933145,0.08110832,-0.643363,0.4121474,-0.3216574,-0.09951219,-0.73909307,0.16878785 -664,0.5988131,-0.2992669,-0.56070495,-0.057546575,-0.43808183,0.23618165,-0.2574406,0.1283126,0.25485644,-0.59828454,-0.09109674,-0.21874371,-0.021794932,0.24958622,-0.1674201,-0.70094573,-0.035496622,0.092134185,-0.52678174,0.41912165,-0.64486367,0.22795378,0.22427513,0.49759293,0.13823408,0.20890705,0.3314242,-0.0034966809,-0.30672306,-0.03434985,0.012784536,0.17967607,-0.81029063,0.18442142,-0.18408842,-0.38010174,0.0072857267,-0.626795,-0.21948588,-0.84611064,0.37382984,-1.0856621,0.64357203,0.029102951,-0.29531866,0.043518323,0.061075654,0.10261796,-0.31505117,-0.025702575,0.22376558,-0.47427607,-0.043239795,-0.23890375,-0.3275376,-0.45336366,-0.80203193,0.15001747,-0.51262057,0.084898196,-0.11531484,0.3258893,-0.2991114,0.15207002,-0.23926817,0.47662276,-0.48156455,-0.07107105,0.32347685,-0.1704307,0.1869253,-0.44173092,-0.28203577,-0.2772314,0.09828056,-0.15444529,-0.34828982,0.29208347,0.3282788,0.60839224,0.090066805,-0.45355868,-0.37016144,0.1607323,0.17451404,0.47092178,-0.13039526,-0.2560144,-0.33299908,-0.03887541,0.3974943,0.33814377,0.17266223,-0.2952425,0.11673228,-0.0107902335,-0.14646976,0.5039902,0.5119204,-0.23761864,-0.38983044,0.26296803,0.52788323,-0.05582583,-0.09870863,0.043379147,-0.036806945,-0.65354973,-0.23745322,0.4432602,-0.12781323,0.60916287,-0.19346099,0.13086616,0.7000862,-0.4340238,-0.10568911,-0.13668728,-0.15570772,-0.13296768,-0.34077862,-0.15451299,0.38311523,-0.50221044,0.024446255,-0.3035194,0.571729,0.18737224,-0.84604317,0.41158113,-0.50330126,0.16305923,-0.09386245,0.7362047,0.78810203,0.5176369,0.5344413,0.87001514,-0.5109908,0.06989272,-0.102971315,-0.38994053,0.14362934,-0.28831133,0.1259533,-0.50451165,-0.040366042,-0.15543452,-0.3150058,-0.0048080003,0.6161604,-0.5578438,-0.025581935,-0.007343139,0.5834585,-0.36085573,-0.11431246,0.9476892,1.0862509,1.1179949,0.12111171,1.4832078,0.41968912,-0.11323153,0.139939,-0.1258805,-0.6270491,0.31724572,0.3598082,-0.17526145,0.58380806,0.21466944,-0.022552622,0.40003112,-0.29941484,-0.12339797,-0.11151307,0.085406184,0.011849693,-0.0010782693,-0.54920363,-0.37853718,0.025837127,0.036395304,0.041232653,0.33304682,-0.21043113,0.61576,0.05910015,1.3920307,-0.013305111,0.02845999,-0.04077504,0.38957888,0.07940291,-0.026036415,-0.07443882,0.28914204,0.29599217,0.08374106,-0.51532805,-0.019560214,-0.18296024,-0.4366496,-0.26278043,-0.38973996,0.14424147,-0.36673886,-0.50974905,-0.15334968,-0.03573072,-0.47602144,0.48437077,-2.0085754,-0.26872516,-0.038981464,0.3269128,-0.1888517,-0.44556722,-0.26973283,-0.49834332,0.2020872,0.3709362,0.37936231,-0.7914543,0.40438578,0.32031912,-0.6783878,-0.18479283,-0.8608769,0.04113629,-0.2229011,0.37509695,-0.01794506,-0.3117983,-0.20601876,0.14811647,0.61611855,0.04994138,-0.041423917,0.23107195,0.72633934,0.026669072,0.5686804,0.16567142,0.5219988,-0.3862297,-0.29166827,0.5672096,-0.3785402,0.399908,0.11663276,0.06885858,0.4672654,-0.5357501,-0.92761135,-0.7514067,-0.45835048,1.2731081,-0.3536165,-0.33053848,-0.0084254155,-0.08971447,-0.40901893,-0.030955514,0.44647735,-0.25406423,0.07315426,-0.77412355,-0.14374737,0.112621896,0.20328401,-0.03895716,0.29966798,-0.4285591,0.70989907,-0.09262661,0.3920839,0.445671,0.156877,-0.13701917,-0.5912296,0.23837164,0.85374165,0.32919523,0.22248244,-0.2622879,-0.36191583,-0.0038389883,0.021788256,0.1288249,0.496654,0.7239598,-0.032521073,0.06532581,0.41934425,-0.15868078,0.031863123,-0.18011095,-0.24222696,-0.17083208,0.14886744,0.6816522,0.8949747,-0.27232608,0.28152698,-0.17734924,0.40216365,0.056850344,-0.5215835,0.4602094,1.1339207,-0.1313602,-0.13364947,0.5984779,0.44625473,-0.5493615,0.55980283,-0.70701563,-0.16052093,0.42082554,-0.046539508,-0.42790842,-0.03676205,-0.47403213,0.19545424,-0.9437027,0.43716374,-0.09673839,-0.28594527,-0.65258545,-0.11782842,-3.5082035,0.2675836,-0.18003201,-0.095133305,0.03322341,-0.25319356,0.44176584,-0.6848383,-0.5924707,0.067535,0.00948828,0.51079386,-0.11393152,0.20608819,-0.40842262,-0.28126478,-0.25083318,0.20021084,0.38845035,0.3388931,-0.030222442,-0.42425227,0.15813671,-0.37169275,-0.36573902,-0.08472148,-0.70252264,-0.6751053,-0.16093525,-0.5930972,-0.39286852,0.8173884,-0.23955354,-0.13613364,-0.25360844,0.07324346,-0.067077525,0.39652923,-0.051047813,0.29030666,0.13046287,0.018404113,-0.16335103,-0.16950552,0.2982126,0.10363169,0.13781914,0.50168735,-0.21541527,0.30534586,0.5936723,0.6742319,-0.08951342,0.8169273,0.37154478,-0.036365855,0.28101784,-0.13559689,-0.35846373,-0.85963756,-0.3653892,-0.050793093,-0.53356034,-0.39256597,-0.082783654,-0.37098306,-0.8563374,0.57508075,-0.12869085,0.18359403,-0.14195226,0.40096322,0.5419787,-0.26931205,0.15479909,-0.19827521,-0.26703304,-0.6044838,-0.5057395,-0.7165464,-0.7869565,0.014067845,1.2880529,0.023192933,-0.19323395,0.15232971,-0.2603787,0.20088355,0.21876076,0.013569792,0.16344868,0.5550017,-0.016899915,-0.7081795,0.40423754,-0.012056952,-0.10514365,-0.46320614,0.14873055,0.8857581,-0.6553026,0.7170962,0.5366433,0.20162642,0.13600911,-0.5261007,-0.43682885,0.063595675,-0.18193607,0.64037454,0.29377037,-0.7532752,0.46038622,0.2314863,-0.41028497,-0.75221246,0.44056445,0.024462814,-0.13853589,0.080295615,0.4550527,0.016367793,-0.033662822,-0.29023328,0.21100518,-0.4832078,0.22271511,0.3577812,-0.009008263,0.269559,-0.055960692,-0.26001585,-0.76533085,-0.002593598,-0.45538503,-0.44130966,0.104011044,-0.04890823,0.0517825,0.12234033,0.13419433,0.5051824,-0.40415078,0.09363579,-0.10914055,-0.36005044,0.28729862,0.58546305,0.34615135,-0.51053625,0.6414819,-0.03662173,-0.043238018,-0.14714006,-0.064642034,0.4244075,0.20397247,0.18222864,0.009768222,-0.100142516,0.025258109,0.6660456,0.13624473,0.40973195,0.2284241,-0.1440043,0.46745235,0.15115581,0.3693976,-0.24628186,-0.4258104,-0.056271076,-0.08006541,0.14219089,0.3841949,0.024924984,0.35437074,-0.13580148,-0.11267758,0.18234646,0.12145605,-0.06886523,-1.3054428,0.20104074,0.130872,0.5944051,0.55593026,-0.12115181,0.12895264,0.56477916,-0.5043106,-0.022827953,0.45229214,0.051280856,-0.49546704,0.51757824,-0.5497286,0.4369236,-0.27842718,0.033635348,-0.044719107,0.1233482,0.41157284,0.8438053,-0.18071364,0.08613256,-0.07342205,-0.018730232,0.0684459,-0.38848957,0.14530857,-0.51692647,-0.40089545,0.9223916,0.42253384,0.5331365,-0.27677932,-0.052613102,0.14858375,-0.1561835,0.2946253,-0.07214157,-0.15934785,-0.0051408494,-0.6872001,-0.0132461535,0.6275857,-0.011541277,0.1437401,0.043518133,-0.38924694,0.12403587,-0.1386194,-0.2171341,-0.09682305,-0.8470192,-0.22950517,-0.4801435,-0.46890044,0.31439903,-0.3391814,0.17826332,0.31923214,0.07703434,-0.30182573,0.059981756,0.29809216,0.977557,0.25777146,-0.15198646,-0.3238011,0.1674715,0.39753357,-0.39174977,0.02145433,-0.19219868,0.31784528,-0.46131393,0.612644,-0.20167804,-0.5246112,-0.06256345,-0.028805273,0.06063899,0.6315711,-0.2653059,-0.23616816,0.053100143,-0.016131047,-0.29017773,-0.18138972,-0.35786813,0.22489081,-0.019614348,-0.287376,0.08761843,-0.07909293,-0.020339416,0.5695321,0.22177856,0.21838297,0.31987953,-0.074802145,-0.39135727,0.0558286,0.051439404,0.55099434,0.20161569,-0.35279918,-0.5337184,-0.2591119,-0.15621647,0.3376748,-0.1256507,0.12800412,-0.012712725,-0.44154927,0.9964147,0.062349822,1.277049,-0.07379394,-0.46856856,-0.058898397,0.5058583,0.020014586,0.073374145,-0.42690653,1.0178002,0.52268565,-0.21745296,-0.1887761,-0.51888716,-0.2563271,0.24888954,-0.37981915,-0.11477239,-0.25663728,-0.7445539,-0.1875952,0.21904,0.2707798,0.028967062,-0.182695,0.2908928,0.13243327,0.062195215,0.4574968,-0.4627053,-0.14340138,0.40583357,0.32119754,0.030372858,0.17960282,-0.2867706,0.39890972,-0.61076736,0.1665007,-0.5809946,0.07998593,0.056717556,-0.38237658,0.23988748,0.002294319,0.46487632,-0.36272416,-0.22463386,-0.32767084,0.6824074,0.30471236,0.2800896,0.8114906,-0.2824694,-0.056182522,0.094266824,0.46588913,1.6494664,-0.13861135,0.15822433,0.2853859,-0.22844395,-0.53481305,0.4482501,-0.47376233,0.03535085,-0.26242894,-0.39780882,-0.5995941,0.11246015,0.20387755,0.049509626,-0.04243208,-0.46955967,-0.09436745,0.6011925,-0.28601772,-0.29757762,-0.31754112,0.24137358,0.6671977,-0.22963639,-0.3950463,0.07493105,0.4244642,-0.2473953,-0.44698283,-0.1876667,-0.33127934,0.33340803,0.08286735,-0.2712268,0.025941715,0.18776895,-0.43008876,0.12791799,0.32027844,-0.39885476,0.121096544,-0.24853471,-0.049091,1.0628345,-0.006144907,0.18390147,-0.57765883,-0.5641935,-1.0173441,-0.34857893,0.08183561,0.20957734,0.075968795,-0.45520192,0.007774132,-0.116081,-0.16734432,0.1311101,-0.6535048,0.41705298,0.0141153615,0.55330044,-0.11367994,-0.769033,0.08699714,0.15469006,-0.10774369,-0.4300232,0.46881184,-0.12067227,0.71230423,0.11181196,0.09214976,-0.03737899,-0.5194603,0.3231037,-0.3492566,-0.1743911,-0.73481905,-0.025434738 -665,0.47269052,-0.22824039,-0.5679608,0.01104153,-0.25473133,0.038296256,-0.06878693,0.43270496,0.26868522,-0.18918008,-0.036463935,-0.034076516,-0.0010792792,0.4073604,-0.0648742,-0.6097501,-0.0036741237,0.28542358,-0.47066918,0.60649335,-0.31712478,0.31456974,-0.1814704,0.3138318,0.11559696,0.3589783,0.01870458,0.05705792,-0.003258451,-0.16858354,-0.13225129,0.13309714,-0.6709279,0.18544081,0.05436492,-0.37599462,-0.020536648,-0.37683198,-0.29389158,-0.6591125,0.12650494,-0.63115853,0.507044,-0.07407863,-0.1870456,0.26647606,0.01361535,0.43629816,-0.33348742,-0.055581234,0.07400623,-0.09066449,-0.1870971,-0.2581993,-0.12220856,-0.35635427,-0.58832645,-0.108487435,-0.34193856,-0.07254211,-0.2818496,0.045381553,-0.31458786,0.092718534,-0.083311245,0.18177894,-0.3874424,0.21802491,0.17871097,-0.060246382,0.06015314,-0.47012964,-0.07092619,-0.18629417,0.17929484,-0.12027338,-0.36920163,0.39243242,0.26906237,0.49927595,0.029805478,-0.2521033,-0.39772588,-0.082244106,-0.0084773265,0.540683,-0.13953158,-0.46963245,-0.12089243,0.053208694,0.1677383,0.15550655,-0.012307016,-0.3087106,-0.15933016,0.012930874,-0.16822211,0.17190455,0.45636144,-0.41267362,-0.36825868,0.45724094,0.57960683,0.0881057,-0.092592806,-0.06548499,0.009154649,-0.49860427,-0.14325161,0.0024545987,-0.16083482,0.4205708,-0.069299415,0.093929626,0.5946573,-0.28780687,-0.23522146,0.09337139,0.09700453,-0.2565714,-0.35472524,-0.16915265,0.25643045,-0.50935024,0.24474011,-0.09094749,0.73190427,0.27509862,-0.70951056,0.31526738,-0.577029,0.15748002,-0.043832365,0.400681,0.83799875,0.47765478,0.27478126,0.74235535,-0.42626646,0.2439157,-0.19838342,-0.36102235,0.1465326,-0.20699936,-0.16091026,-0.5583725,0.15208575,0.032670386,-0.21133855,0.20407389,0.29876888,-0.6120946,-0.1663391,0.09785677,0.6009268,-0.2623895,-0.18993117,0.82130265,0.91363066,0.99249876,0.13843912,1.3011981,0.26972187,-0.17027394,0.27575725,-0.27664128,-0.80197704,0.08012246,0.24835603,-0.15923484,0.25288385,0.19817807,0.038274314,0.40233308,-0.29832298,-0.11055115,-0.12364704,0.46179307,0.13606621,-0.08061008,-0.30251133,-0.3254081,-0.04862457,0.11383863,0.029816087,0.3955895,-0.21465947,0.39492786,0.24324268,1.9157016,0.066184714,0.06888259,0.0404909,0.40271005,0.28497902,-0.17947906,-0.19221902,0.39777952,0.33065385,0.15780273,-0.56272984,0.044309914,-0.2873176,-0.4566854,-0.09254303,-0.20771742,-0.07595405,-0.05287889,-0.2868101,-0.27771506,-0.10857229,-0.12541704,0.68382484,-2.6268773,-0.059192088,-0.103896335,0.26848856,-0.20345125,-0.45597294,-0.1710054,-0.5150437,0.36479396,0.22120282,0.45244732,-0.7450556,0.15159419,0.17200771,-0.636403,-0.075060695,-0.55947345,0.067004286,0.007897596,0.37054473,-0.007835722,-0.07578955,-0.02274508,0.08579907,0.50672716,-0.046288777,-0.010219868,0.4059106,0.24988864,0.053392433,0.46445316,0.023301125,0.61822456,-0.2011807,-0.22320619,0.17549734,-0.26635063,0.34645066,-0.075402394,0.12019822,0.3796153,-0.40819576,-0.9893996,-0.6859252,-0.012459334,1.11318,-0.27928188,-0.27320537,0.16106988,-0.426461,-0.23246793,-0.10238234,0.27496508,-0.1620331,-0.23137777,-0.6460475,0.14393112,-0.011363459,0.16900772,0.021478632,-0.07176404,-0.31701103,0.6237241,-0.10079037,0.5018843,0.38903323,0.1540242,-0.24718456,-0.4093118,-0.0226846,0.9441766,0.36012107,0.113185085,-0.22641774,-0.18618873,-0.34390953,-0.16453688,0.16832104,0.49815932,0.6140714,-0.15984634,0.074234344,0.29007912,-0.038476784,-0.00585227,-0.053653732,-0.18692422,-0.12131341,-0.06553787,0.49123377,0.77430266,-0.20360085,0.5424491,-0.07208611,0.15113202,-0.014199084,-0.5632919,0.48414117,1.0233731,-0.27281886,-0.32503644,0.5366055,0.2666021,-0.13842262,0.39803436,-0.45394155,-0.20004924,0.4083328,-0.13222943,-0.15458076,0.25752622,-0.22600065,0.13165437,-0.7234783,0.28789806,-0.13872832,-0.52312833,-0.4249764,-0.043665536,-3.340913,0.24954563,-0.15767124,-0.1301674,-0.008833925,-0.1600543,0.11786986,-0.7079693,-0.516783,0.22470036,0.16449365,0.7008446,-0.10068997,0.10596313,-0.18218152,-0.38995135,-0.40743876,0.17434934,0.091585845,0.32517204,-0.038475353,-0.4289191,-0.12920696,-0.03935292,-0.4884714,0.08691471,-0.5993641,-0.35550973,-0.14784926,-0.6034388,-0.3479478,0.6760632,-0.36952278,0.04596261,-0.16260107,0.008185331,-0.13612798,0.2114922,0.040100645,-0.060541395,0.037225507,0.011818016,0.16221146,-0.3168258,0.23409702,0.008200661,0.30155268,0.24610633,-0.13893393,0.25163776,0.5542017,0.7661438,-0.06691597,0.8515121,0.59315914,-0.22575952,0.20180772,-0.2131777,-0.18933201,-0.51395154,-0.42883292,-0.27471927,-0.50671893,-0.26234713,-0.048231263,-0.3473095,-0.724903,0.5918144,0.0659373,0.094725356,-0.06116195,0.3170304,0.6563497,-0.28763884,0.057153285,-0.09352746,-0.21452062,-0.47854328,-0.30503985,-0.41981235,-0.37601635,0.29098588,1.1647003,-0.29081127,0.07624544,0.00805815,-0.19930668,0.039756205,0.15262744,-0.050063808,0.28572443,0.40579593,-0.11796183,-0.52940404,0.43840915,-0.21567973,-0.098867856,-0.70191205,0.31333888,0.43791047,-0.6026276,0.39711592,0.123086885,0.058216497,0.035977606,-0.47655323,-0.0701536,-0.031990457,-0.2534217,0.17752567,0.2782227,-0.8113916,0.47457275,0.33006394,-0.3041565,-0.6397961,0.34512085,0.019818107,-0.13695529,-0.16270615,0.30617124,0.25895256,-0.024675969,-0.25144187,0.12744027,-0.5209132,0.14356853,0.15253353,-0.1591306,0.0547245,-0.15199055,-0.09335966,-0.7562763,-0.020872978,-0.37214914,-0.25459972,0.18562569,0.033570867,0.12086606,0.054079466,0.12267784,0.28365618,-0.40929472,-0.009707288,-0.09463553,-0.28123915,0.39440262,0.39774838,0.42459282,-0.327045,0.5434278,0.040969722,-0.03433196,-0.0230212,-0.015791623,0.4343936,0.09392568,0.35870406,0.11010479,-0.32658064,0.103498474,0.60156083,0.115614876,0.2792118,-0.14041536,-0.20346247,0.06395561,0.21934494,0.20302372,0.22640347,-0.49180794,0.18661591,-0.052844547,0.17091316,0.57563585,0.30745375,0.27989423,-0.09938874,-0.3424838,-0.014613295,0.03568204,0.016904572,-1.4462178,0.4296816,0.11752389,0.62923753,0.4835148,0.07076706,-0.03496055,0.50370425,-0.18988873,0.14569794,0.25336698,-0.08589457,-0.28825948,0.40343916,-0.84733546,0.625379,0.048925325,0.107182674,0.18477133,0.059005324,0.34115276,0.96351105,-0.18480119,0.0030530235,-0.118484996,-0.16505343,-0.008981645,-0.21610473,-0.030078253,-0.58116686,-0.28987953,0.76120603,0.3699114,0.5150783,-0.13912776,0.042904284,0.03526454,-0.08027964,0.09504672,0.040179577,0.18094246,0.02392605,-0.48123428,-0.1578446,0.5241911,-0.21933344,0.2189046,-0.010307407,-0.25407878,0.25135177,-0.14622012,-0.09453098,-0.100545436,-0.60353535,0.082262844,-0.18355204,-0.31887168,0.5156355,-0.106493786,0.23996799,0.12187203,0.10836136,-0.23262383,0.53632516,0.13064648,0.8657166,-0.14696135,-0.15643898,-0.33301857,0.32402596,0.18196945,-0.10854898,0.061919946,-0.18328924,0.041625056,-0.7428884,0.29892334,-0.0080504,-0.33759987,0.026864307,-0.032140113,0.13038266,0.47434852,-0.15907107,-0.20728295,-0.07787654,-0.16414236,-0.22113441,-0.3395612,-0.1937071,0.19440009,0.15044785,-0.12223689,0.005583076,-0.16748434,-0.149098,0.2863625,-0.015134039,0.25991142,0.17121716,0.13887967,-0.24282546,-0.15136978,0.14606307,0.4244814,-0.20194696,-0.19084325,-0.35853344,-0.44554564,-0.4608773,-0.07218776,-0.060253564,0.4569277,0.0693895,-0.21742012,0.6486521,-0.14529648,1.2388898,0.06107042,-0.34597892,0.034527924,0.5917868,0.0031830608,-0.02097209,-0.22389501,0.9244394,0.5061362,-0.087017074,-0.16315457,-0.3435776,-0.18447113,0.31221274,-0.20729613,-0.051268164,0.12967077,-0.41510406,-0.35914257,0.23869543,0.16171685,0.26028454,-0.11290305,0.035410874,0.27998176,0.05850909,0.32289535,-0.36429104,-0.07964139,0.21982482,0.34745753,0.045958392,0.23614828,-0.5134162,0.35350686,-0.4552478,0.11985205,-0.187218,0.26261264,-0.15129648,-0.21868873,0.17736252,0.057369538,0.3151921,-0.3577382,-0.42422915,-0.3290058,0.5641951,0.06627091,0.09390498,0.714438,-0.27847973,-0.019069765,-0.04315224,0.36666882,0.8042182,-0.2887341,-0.08277931,0.44969302,-0.28437895,-0.45751816,0.32925892,-0.1455535,0.1842341,-0.014656766,-0.135163,-0.61072236,0.24018942,0.16659169,0.25142977,0.10895918,-0.6542269,-0.06552117,0.14460969,-0.29278955,-0.14229351,-0.29734373,0.31141287,0.8562523,-0.31586686,-0.4552309,0.24213082,0.109365895,-0.044150844,-0.46682194,-0.20373257,-0.36672604,0.28809866,0.14992762,-0.37531674,-0.2565233,0.17610492,-0.4555108,-0.07930057,0.00519768,-0.27747548,0.20956783,-0.33802578,0.07460002,0.8779185,-0.29340187,0.39376706,-0.6102035,-0.42261544,-0.76769865,-0.42770398,0.38884857,0.2317815,0.005668199,-0.6728313,-0.02954746,-0.03360861,-0.2576497,-0.1204459,-0.3387678,0.52024543,0.1344643,0.13586353,-0.044869944,-1.0381173,0.15123558,0.029630836,-0.05436116,-0.5216558,0.45278436,-0.06586985,0.77176934,0.10941192,0.04808288,0.39558786,-0.49197966,0.08033741,-0.2657732,-0.07446591,-0.734165,0.038720965 -666,0.2629005,-0.22013369,-0.5764572,-0.0078095975,-0.3591549,0.017774425,-0.19700465,0.22860903,0.16991363,-0.16292867,-0.34826076,-0.21037824,0.1673688,0.66633797,-0.045814708,-0.48491457,-0.19615108,0.20633742,-0.8168775,0.4612593,-0.5350321,0.18436728,0.17781082,0.37320182,0.19952613,0.35107648,0.14799601,-0.060209136,-0.27320293,0.09569605,-0.32067007,0.1560439,-0.35581633,-0.049576804,-0.13162936,-0.3332818,-0.07865823,-0.47926566,-0.32034442,-0.6553307,0.24555302,-1.016288,0.53502667,-0.04125182,-0.022270491,-0.00387079,0.26286158,0.45469368,-0.3852409,-0.12722835,0.12640946,-0.34662464,-0.17427725,-0.37570316,-0.21166399,-0.1337726,-0.4810756,0.0051009655,-0.50466657,-0.36512983,-0.19132668,0.18315665,-0.2601559,0.11304795,-0.1647949,0.31882662,-0.40128094,0.124906436,0.3676926,-0.29152828,0.21758395,-0.47161502,0.07378204,-0.018930487,0.52608466,-0.1801599,-0.18495134,0.388405,0.32103473,0.33531216,0.09115697,-0.16360706,-0.353303,-0.14325133,0.21157616,0.48486054,-0.10779591,-0.25879398,-0.11983084,0.1722183,0.1911644,0.4791106,0.08659852,-0.19949704,-0.12539221,-0.27331412,0.06103049,0.25005654,0.4735195,-0.2685153,-0.47472033,0.2873469,0.7293715,0.32475904,-0.15329406,-0.20179272,-0.0034976625,-0.65865314,-0.18834434,0.11699825,0.04962725,0.5014519,-0.10286586,0.20588621,0.7943877,0.014173632,0.020846037,0.010801231,-0.051380213,-0.24789491,-0.2240218,-0.008396699,0.061093703,-0.34656063,0.102946386,-0.11337696,0.6017325,0.14752573,-0.704367,0.40238836,-0.7370117,0.20455647,-0.06457787,0.5629445,0.4824632,0.53221107,0.29431024,0.75856876,-0.29582956,0.3208659,-0.15279748,-0.47065833,0.07484532,-0.32934064,0.10057001,-0.57743394,0.02040901,-0.25124705,-0.1116406,0.15691032,0.24330561,-0.43383932,0.085577235,0.16881433,0.8985387,-0.35693997,-0.042587735,0.7994792,0.99679524,1.0620462,-0.033229437,1.2496244,0.21297964,-0.26173285,0.14150406,-0.37615693,-0.785493,0.22020473,0.3658783,0.04477168,0.31179953,-0.10354888,-0.105565615,0.33216128,-0.35291627,0.097639374,0.044503193,0.054500956,0.059571907,0.058151565,-0.53054965,-0.26063767,-0.1540435,-0.13079652,0.1451623,0.2259873,-0.12528878,0.6465578,-0.2048401,1.6933672,-0.035977755,0.19342111,0.1533375,0.50393003,0.14864923,-0.04870985,-0.29405248,0.23273185,0.40145335,-0.0040103015,-0.55405253,0.21814038,-0.27116185,-0.44938147,-0.16764188,-0.475874,-0.12690142,0.1323021,-0.39136806,-0.24611689,-0.0953002,-0.3274919,0.49858445,-2.8358583,-0.14542365,-0.062575765,0.36924106,-0.36229923,-0.2101209,-0.116798565,-0.4374474,0.35258147,0.17465559,0.54250395,-0.58862364,0.5154666,0.35975516,-0.58013827,-0.27279478,-0.6774186,-0.07046465,0.0998911,0.40626892,-0.036854077,0.0107389325,-0.021157457,-0.047716003,0.5942227,-0.18751372,-0.02137136,0.56241345,0.2688009,0.20472646,0.4428444,-0.05367369,0.6140412,-0.5377836,-0.22201443,0.31265008,-0.19503729,0.4479888,-0.11930021,0.14622745,0.5005401,-0.5864707,-0.8813753,-0.6973556,-0.28146845,1.0731617,-0.33057326,-0.46353757,0.35700193,-0.459226,-0.041894633,-0.039741013,0.5394361,0.037082996,0.09419023,-0.6580962,0.15067452,-0.041007422,0.30684128,0.042575654,-0.19328204,-0.38298142,0.6880487,-0.03368,0.5313795,0.39658484,0.3031572,-0.08683909,-0.37159377,0.14890946,0.5408569,0.16580948,-0.074055955,-0.08292045,-0.38262716,-0.055459864,-0.33323604,0.07481989,0.46344164,0.54175246,-0.037383575,0.1547344,0.27537155,-0.026873311,0.088173345,-0.16988891,-0.10652509,-0.027989874,-0.0058140205,0.4516993,0.9041738,-0.01710695,0.5861167,-0.24762592,0.4617367,0.002554866,-0.6218309,0.73180616,0.4724126,-0.10541093,-0.08860164,0.5787615,0.42207256,-0.47749278,0.42960614,-0.5273953,-0.24944547,0.5682984,-0.22903267,-0.48289296,0.2128124,-0.17299901,0.12543295,-0.88823706,0.22288114,-0.3350531,-0.48520038,-0.36357978,0.06552524,-3.159784,0.24194978,-0.33352783,-0.16966096,-0.20920083,-0.099402025,0.061476514,-0.6015471,-0.65609604,0.13789994,0.20885079,0.673912,-0.08613717,0.16271646,-0.23350818,-0.12363224,-0.18865189,0.10799274,0.15416299,0.34779012,-0.30344674,-0.38490093,3.870978e-05,-0.10561847,-0.62677896,0.21278015,-0.65013814,-0.35957998,-0.14103189,-0.45379162,-0.2469776,0.60937154,-0.30139235,0.012317951,-0.26149598,0.05696708,-0.1699784,0.23632163,0.10638566,0.2704975,0.28528732,-0.057268612,0.16192175,-0.2007615,0.41493437,-0.11382769,0.3090332,0.17789914,0.011078005,0.2674454,0.37473628,0.8462404,-0.30410576,0.8845042,0.45942947,-0.0073168734,0.19874305,-0.42055976,-0.25687456,-0.39882606,-0.20440179,0.18866092,-0.35259786,-0.6761144,0.0009299299,-0.23384324,-0.81656045,0.6413322,0.054706845,0.30401567,0.043294862,0.11953187,0.5802393,-0.3317354,-0.14976908,-0.1958186,-0.14024194,-0.6412541,-0.21773386,-0.53297174,-0.6928497,-0.12960184,1.1600568,-0.3216264,0.1913779,-0.024603102,-0.56626284,-0.08784146,0.21885978,-0.0029566241,0.4446783,0.34701774,-0.1634902,-0.7562656,0.46341148,-0.0017829514,-0.18935378,-0.5780195,0.23122893,0.68527114,-0.703859,0.53611684,0.2555701,-0.03323448,-0.16234162,-0.46360695,-0.24794659,-0.17381953,-0.13359858,0.3254802,0.20732531,-0.6154565,0.41943735,0.44056892,-0.35138816,-0.82072246,0.17152342,-0.07312763,-0.350647,0.1284391,0.2167585,-0.030597141,-0.09699071,-0.16450475,0.079787925,-0.34490675,0.31206197,0.24291895,0.10988403,0.036672648,-0.20020787,-0.2745388,-0.6365362,0.17513393,-0.47452185,-0.06446698,0.50191903,0.14632775,0.042282626,0.11284005,0.05364378,0.3790506,-0.3078559,0.095477946,-0.058989994,-0.40676388,0.09654401,0.34092653,0.34520566,-0.6203254,0.58235353,0.066228375,-0.31216648,0.059361037,0.034531076,0.49618956,0.05721935,0.4366739,-0.12341499,-0.280053,0.23539136,0.67496085,0.06022525,0.32486233,0.002056585,-0.010865035,0.3742377,-0.036340214,0.18528023,0.084665045,-0.48163652,0.19560528,-0.20499882,0.2093091,0.41681874,0.32540628,0.3898282,0.094312154,-0.16106609,-0.02270203,0.10550663,0.04510607,-1.072583,0.5221131,0.29333627,0.8597419,0.3727546,0.23851469,-0.20477101,0.8188716,-0.33582157,0.08184223,0.36123085,-0.08289312,-0.62654525,0.68642485,-0.8637342,0.5731959,0.010872965,-0.28081864,0.08854621,0.07189798,0.26059076,0.8179854,-0.24599963,0.011964379,-0.015224587,-0.13838533,-0.09485482,-0.47983173,-0.16141836,-0.5980271,-0.40080434,0.7425586,0.32843745,0.49064234,-0.11313444,-0.16275968,0.15822102,-0.0029351986,0.37992364,0.00037490405,0.23438302,0.11174165,-0.5861163,-0.16459234,0.534479,-0.11468681,0.38413593,-0.23349074,-0.2951734,0.10047965,-0.3454471,-0.12658288,-0.10711752,-0.5275001,0.22126426,-0.29889774,-0.6053296,0.29484084,-0.20672177,0.26109955,0.22187597,-0.021884646,-0.2311643,0.48423025,-0.16564457,1.0651821,0.13270403,-0.15227751,-0.2229175,0.2182853,0.23365505,-0.2542129,0.17347418,-0.21318604,-0.070106365,-0.36676466,0.5962502,-0.015322043,-0.53948617,0.22021466,-0.15867464,-0.040959734,0.5912369,-0.03199384,-0.15226337,-0.08161619,-0.20066026,-0.53056574,-0.11549095,-0.17048961,0.22197247,0.38283777,0.012122189,-0.09955173,-0.12456782,-0.021310082,0.5629461,-0.097673945,0.5971783,0.089868896,-0.0131148975,-0.23281449,0.02971823,0.15815929,0.45951456,0.14282776,-0.10847828,-0.4332557,-0.35225853,-0.26645908,0.19849294,-0.06426447,0.22743592,0.10565739,-0.20419714,0.7752993,-0.03252479,1.1848874,0.074647576,-0.23666614,0.19466083,0.3062704,0.012946314,-0.024681266,-0.4103561,0.85121655,0.53213066,-0.027814064,-0.059900127,-0.41675887,-0.042514067,0.33083308,-0.3150205,0.011724248,-0.010223348,-0.4374253,-0.3480155,0.18704213,0.16703738,0.32093576,-0.09490608,0.17311667,0.01673327,0.13932331,0.22201793,-0.39800078,-0.3251015,0.39873376,0.19608098,-0.08145202,0.13939567,-0.49646458,0.4854892,-0.50987685,0.19527976,-0.38891122,-0.038729813,-0.1656014,-0.36514333,0.18827067,0.058731403,0.29475725,-0.21496345,-0.30382088,-0.13777488,0.512325,0.2112669,0.13600987,0.6575723,-0.23355675,0.049174257,0.09649101,0.44266608,0.9388015,-0.52465785,0.008633483,0.27727434,-0.267127,-0.53995794,0.625515,-0.23620056,-0.20522751,-0.06363869,-0.28002626,-0.55728287,0.23826867,0.2554503,-0.015403528,-0.005164231,-0.50617,-0.10002662,0.18503758,-0.34603706,-0.2826305,-0.44383007,0.3148584,0.61442447,-0.074905984,-0.36548057,0.25772756,0.2161304,-0.21146514,-0.20750782,0.11094312,-0.19051829,0.10874233,-0.07108449,-0.31049544,-0.14984328,0.22717395,-0.34562382,0.04833583,0.021322517,-0.33162168,0.21074845,-0.22678415,-0.022701101,0.9146999,-0.40624985,-0.13435473,-0.531572,-0.51333183,-0.9457257,-0.46264103,0.37223566,0.04821729,-0.025343554,-0.5184399,0.11055161,0.00424132,-0.303247,0.055768803,-0.46028596,0.36260134,0.047960263,0.32461932,-0.3396301,-0.7456993,0.27494937,0.08310093,-0.013612454,-0.49255636,0.5293638,-0.019079057,0.7990402,-0.00024975606,-0.05220103,0.16671811,-0.34334758,0.15546516,-0.27929622,-0.20710865,-0.74039304,-0.05578838 -667,0.4649627,-0.14424019,-0.25574306,-0.19279346,-0.065725416,0.18122222,-0.2668769,0.25321755,-0.036386646,-0.7151142,-0.041864205,-0.13781068,-0.14317635,0.26783144,-0.29609507,-0.59104276,0.10097025,-0.045217913,-0.42627743,0.3854821,-0.5281813,0.30421117,0.017417066,0.2263483,-0.04743313,0.24251582,0.32936102,-0.1825977,-0.09523523,-0.31704083,-0.013117338,-0.064669736,-0.69609743,0.29137945,-0.18529285,-0.095159486,0.15729895,-0.26685682,-0.39791265,-0.75667036,0.1283816,-0.8272438,0.57874554,-0.01122247,-0.24123478,0.27892196,0.18819669,0.22264093,-0.056279443,0.16841434,0.25577423,-0.20012568,-0.08716108,-0.14524387,-0.19208299,-0.569501,-0.4890656,0.043091904,-0.5463828,-0.18906316,-0.2847411,0.1601159,-0.19401836,-0.053481363,-0.15198961,0.23888204,-0.38681647,-0.2852856,0.06712677,-0.053878743,0.5697245,-0.5508265,-0.17230506,-0.035043094,0.23258524,-0.23147479,0.011514981,0.33309624,0.23219971,0.6119149,0.036883626,-0.21552975,-0.105095714,-0.03914128,0.29003412,0.5359907,-0.12960164,-0.41808748,-0.15321355,-0.06656252,0.31924435,0.24797407,0.054389365,-0.2812173,-0.033617888,0.10502488,-0.24764125,0.3095419,0.49642518,-0.33810297,-0.18280992,0.3032878,0.4653753,0.094425045,0.04855164,0.12525222,-0.11892463,-0.39191768,-0.20281631,0.33303195,-0.23685022,0.48693216,-0.16588996,0.08833159,0.6324159,-0.16493997,0.16426642,0.04957718,-0.14481966,-0.017471392,0.0051325005,-0.31373823,0.25553703,-0.6174141,-0.01962661,-0.36528063,0.6595953,0.15630269,-0.86024296,0.33078164,-0.31193706,0.019074548,-0.02306795,0.54726195,0.5141691,0.52475965,0.021868484,0.6418123,-0.628532,0.04759663,-0.039789166,-0.26314667,0.31888375,-0.114737555,-0.09376058,-0.42522082,-0.13117878,0.12749588,-0.053455185,-0.32267913,0.37547177,-0.432599,0.04460164,0.18754801,0.76823515,-0.29871145,0.11318286,0.49159113,1.145695,0.88468176,0.18025216,1.4033867,0.18506432,-0.04185612,-0.0758856,-0.09853532,-0.5343253,0.31922206,0.49182194,0.04052113,0.2665242,0.07815136,-0.016210798,0.29211435,-0.46350718,0.027551524,-0.17800286,0.47437117,-0.18974775,-0.19104144,-0.3538293,-0.1339715,0.066762276,-0.05782569,0.051012915,0.118738666,-0.12434735,0.26217613,0.34386343,1.112286,-0.13839151,0.08727031,0.044197142,0.45861593,0.17342472,0.03896831,-0.023718016,0.11334219,0.32041678,0.14912865,-0.47745374,-0.10578234,-0.13451792,-0.5176428,-0.2571871,-0.22279303,0.10260472,-0.19926304,-0.3752077,-0.19833408,0.097279355,-0.47959492,0.61203617,-2.5302238,-0.07966073,-0.2051842,0.3362706,-0.26703793,-0.3554366,-0.09930303,-0.29909566,0.7443642,0.35165003,0.29991224,-0.60192937,0.31397775,0.5149652,-0.3589669,-0.13483588,-0.62801427,-0.2240295,-0.12850122,0.2751405,0.20417304,-0.24040836,-0.027053293,0.3533239,0.45113793,-0.017818226,0.2372516,0.06301982,0.24994276,0.12959051,0.5375132,0.13211018,0.37882206,-0.12189903,-0.11078999,0.35835633,-0.33238176,0.17581314,-0.15009445,0.2461276,0.23125155,-0.34203035,-0.6914409,-0.7483648,-0.7464342,1.2454839,-0.11111555,-0.48091182,0.24435069,0.3582013,-0.36284712,0.014341005,0.16357447,-0.21818368,0.29234546,-0.83993685,-0.10911266,-0.0792461,0.29679716,0.017807515,0.18829006,-0.6982037,0.8250196,-0.19429229,0.30394623,0.35663348,0.2535269,-0.26331937,-0.49197495,-0.027745781,1.0877397,0.5694672,0.09058328,-0.074562915,-0.20386797,-0.2192783,-0.12367658,0.13435854,0.49600163,0.86319906,0.06817875,-0.009133068,0.15117815,-0.16881807,0.084400795,0.037370212,-0.49253097,-0.020751726,0.043136034,0.7195106,0.38005018,-0.026888061,0.24739692,-0.26918513,0.47175634,-0.34159136,-0.33212483,0.39845422,0.8922218,-0.055456802,-0.1255198,0.5642052,0.50862896,-0.07857503,0.4996667,-0.8211145,-0.47357798,0.46097654,-0.09260397,-0.53516835,0.10901858,-0.4478099,0.19071595,-1.0302285,0.6354714,-0.4693903,-0.48879787,-0.61669475,-0.2578694,-3.5280344,0.041628923,-0.13436057,-0.16258882,-0.1074427,-0.11161261,0.4451018,-0.5513131,-0.55820554,0.07868358,-0.124301985,0.566307,0.08696244,-0.027328348,-0.2690128,-0.24018316,-0.39629346,0.29968372,0.1345347,0.15950125,-0.017757716,-0.30028203,0.05154192,-0.24745026,-0.35810485,0.049952473,-0.47585753,-0.603678,-0.31004646,-0.3474323,-0.36919078,0.6668781,-0.51768744,-0.04662814,-0.2780428,-0.08026687,-0.1756913,0.44909582,0.20349385,0.22573577,0.02894926,-0.098829255,-0.11933194,-0.31248277,0.2809691,0.28165254,0.20850739,0.588355,-0.42345726,-0.011977946,0.52852136,0.56134677,-0.16374734,0.7549379,0.2675356,-0.21814175,0.35378945,-0.39895618,-0.33144596,-0.65848696,-0.44453964,0.000459522,-0.28330448,-0.38531414,-0.2071466,-0.35982195,-0.5592242,0.3878668,-0.077930085,0.1201288,-0.22804348,0.09420769,0.15283845,-0.1199627,-0.14873974,-0.22397813,-0.12625399,-0.40128735,-0.45902947,-0.6821793,-0.49838716,-0.07800952,0.94191974,0.030974708,-0.052430373,0.13344349,-0.054341864,0.27625197,-0.07094897,-0.008442541,-0.03856223,0.33740103,0.117588736,-0.80340856,0.5446081,0.098671265,-0.14436838,-0.6312452,0.072583295,0.7964079,-0.5766506,0.49556363,0.52537656,0.2797666,0.017320672,-0.62136936,-0.19795412,-0.05005571,-0.23115996,0.52178603,-0.0063985665,-0.66348964,0.584026,0.30359226,-0.24473748,-0.61872864,0.52920234,0.16664305,0.008313139,0.17201376,0.42574462,-0.15976349,0.15844259,-0.16456701,0.35421354,-0.55133057,0.30599728,0.5347469,0.17475878,0.48711535,-0.11329909,-0.101583034,-0.65352225,-0.14036521,-0.36003432,-0.2461637,0.033699498,-0.07461694,-0.14447239,0.24455729,0.13017064,0.5124061,-0.37881812,0.2238722,0.040235937,-0.18688576,0.33736488,0.5229272,0.43741494,-0.23840077,0.52071404,0.052155767,0.006414843,-0.40289542,-0.075134024,0.59207404,0.20900351,0.028895969,-0.016705235,-0.029505014,0.25933975,0.7981721,0.225595,0.49709672,0.20276783,-0.23368083,0.2800799,0.10967987,0.2262142,0.14045042,-0.4138924,-0.031249285,0.09529763,0.01910888,0.3559604,0.052962855,0.2517094,-0.15679057,-0.08320268,-0.037942667,0.25042737,-0.17437837,-1.2601397,0.27222475,0.090425104,0.58918995,0.5566126,0.020520309,0.25582737,0.5747213,-0.29946336,0.004523017,0.17158382,0.13928379,-0.47568384,0.5713944,-0.7047082,0.1463442,0.028545309,0.030355254,-0.073878236,-0.05490638,0.3951298,0.92698413,-0.12412433,0.20018095,-0.21966822,-0.13507317,0.2291728,-0.40987903,0.26038292,-0.08503728,-0.32562825,0.69479,0.34709322,0.37605414,-0.18816496,-0.052167878,-0.017555548,-0.24512811,0.4279761,-0.030059163,0.065652154,-0.10891635,-0.49953744,-0.2584443,0.55278534,0.2354215,0.048739847,0.17044087,-0.24426048,0.12459438,-0.07254051,0.04036902,0.0585796,-0.6552284,-0.09894629,-0.36815608,-0.11854222,0.30840072,-0.34163418,0.22474185,0.12156944,0.016431984,-0.048110053,-0.06606674,0.2757206,0.5537519,0.05685216,-0.29244167,-0.31593296,0.027407646,0.136651,-0.3001765,-0.0057157637,-0.11747643,0.07871817,-0.64040637,0.28942338,-0.17641382,-0.25196096,0.29285082,-0.22787406,-0.110826895,0.46496072,-0.25698367,-0.19526409,0.28212148,0.10329983,-0.099079214,-0.22383802,-0.13838777,0.14884433,0.04556621,0.053773895,-0.033058524,-0.097487584,-0.179906,0.28957322,0.3018751,0.32225507,0.43129045,0.017609786,-0.55282694,-0.018661553,-0.12983966,0.40287367,0.095439635,0.13148984,-0.18378903,-0.5651054,-0.22548793,0.08197553,-0.16697706,0.019595511,0.035937462,-0.2969361,0.7012299,-0.04569117,1.1324977,0.10155045,-0.351666,-0.033359934,0.5997686,-0.2097854,0.07564224,-0.43785447,0.9362001,0.5775959,-0.07485842,-0.07830074,-0.3978346,-0.17674579,0.18411891,-0.24648166,-0.12630521,-0.17321748,-0.73063976,-0.45356998,0.28073385,0.35368901,-0.18866633,-0.06551294,-0.13064757,0.29587686,0.18040167,0.57267416,-0.56775975,-0.05651772,0.44953212,0.14270899,0.08211745,0.13459876,-0.38232443,0.34173617,-0.602814,0.012782192,-0.3147791,0.020584222,-0.12694108,-0.37780446,0.270541,-0.013655281,0.36237112,-0.24771783,-0.4226481,0.04229511,0.5937184,0.017652897,0.19843467,0.67116207,-0.10766955,0.1388352,0.082432814,0.36787796,1.2630498,-0.25322905,0.058603603,0.37186086,-0.39033574,-0.54224366,0.15813152,-0.4912628,0.12645142,-0.18525761,-0.55991733,-0.36058342,0.24540864,0.120830104,0.004619167,0.0014853278,-0.5428472,-0.20835829,0.44125786,-0.31944245,-0.2789856,-0.20030124,0.16238222,0.58902514,-0.3873711,-0.2461618,-0.04520176,0.34533313,-0.49017048,-0.6415783,-0.05080839,-0.14923069,0.38297608,0.23923911,-0.29272652,0.07678752,0.1249466,-0.3450819,0.15355307,0.3073212,-0.40386805,-0.06854298,-0.2550248,0.13826014,0.5430645,-0.1145661,-0.1757277,-0.66326725,-0.4528399,-0.908785,-0.21949962,0.3391856,0.24192613,-0.041614167,-0.48899034,-0.0044507016,-0.31086364,0.18139632,0.07150894,-0.33254057,0.2770704,0.14843103,0.5663688,-0.16906661,-0.5924099,0.10957824,0.14186579,0.020769298,-0.5050946,0.5873665,-0.13553332,0.6723849,0.105190806,0.022994395,-0.032006975,-0.74646604,0.27931362,-0.12812008,-0.057583846,-0.7869147,0.17000024 -668,0.32282168,0.108474165,-0.54485226,-0.0934892,-0.33070508,0.2910417,-0.09881132,0.3979107,0.040471133,-0.36293423,-0.14521484,0.0013975183,-0.061587743,0.21683568,-0.29382852,-0.66457206,0.02754519,0.100612305,-0.38289502,0.6234613,-0.22867736,0.37806046,-0.15968649,0.32307,0.050633755,0.26718,0.041903015,-0.08254631,-0.23238163,-0.37896717,-0.030589644,0.4801157,-0.5404757,0.26388136,-0.27416342,-0.29190394,0.06780182,-0.16587988,-0.29538605,-0.6121867,0.14573464,-0.69727963,0.4657318,0.013593872,-0.32124764,0.39322928,0.24899785,0.25823665,-0.114219524,-0.18299443,0.09020432,-0.13552436,-0.1394349,-0.117497,-0.3081597,-0.6544,-0.49148378,0.013289111,-0.6953995,-0.12136351,-0.34546646,0.18660246,-0.2814791,-0.23444726,-0.05123951,0.31688443,-0.42655212,0.099300414,0.10041436,-0.06742149,0.014879113,-0.59435403,-0.25043735,-0.02033062,0.3072629,-0.14274889,0.0023160523,0.39527148,0.21167092,0.26753533,-0.097410046,-0.18394502,-0.3166128,-0.23100267,0.28919566,0.42011076,-0.25358135,-0.5452276,-0.11854239,0.003862071,0.3354009,0.08372211,0.1850281,0.071897425,-0.1069824,-0.12815683,-0.24198292,0.49512473,0.47821978,-0.27084717,-0.13980049,0.41402608,0.41432172,0.32886487,-0.3292559,-0.015215083,-0.12896243,-0.34618908,-0.086941704,0.08512562,-0.18269888,0.42248756,-0.14791963,0.11830533,0.58201027,-0.15413791,0.17388102,0.34059444,0.07113203,0.05935324,-0.10054054,-0.13341513,0.20179921,-0.45441234,0.089804046,-0.1581563,0.67146707,0.040902145,-0.6460806,0.37053508,-0.46280512,0.042348266,0.013196787,0.48530683,0.53890324,0.4201165,0.15921356,0.5167259,-0.1584617,0.07015799,0.07451042,-0.18733619,0.08498099,-0.24628887,-0.12295297,-0.59141374,0.10303561,0.06605264,0.005872764,0.08054771,0.29017815,-0.6017794,-0.18330842,0.33812103,0.87381285,-0.26904842,-0.22691904,0.6885716,1.2127756,0.81244785,-0.09706949,0.9457653,0.034769274,-0.15185013,-0.111396566,-0.24657494,-0.50878537,0.21781786,0.278284,-0.3093437,0.41777536,0.10013746,-0.050287113,0.26721665,-0.36996529,-0.050622594,-0.11474905,0.15838291,0.087468654,-0.13596572,-0.3811804,-0.12137135,0.067316815,-0.18859625,0.27464804,0.37371552,-0.12318801,0.46044046,0.111515015,1.0184022,0.02003903,0.015853997,0.031794123,0.5570357,0.23682234,0.035393763,0.09431769,0.43157122,0.2868419,0.0825973,-0.34878966,0.1991703,-0.32312626,-0.46255314,-0.097253315,-0.43072417,-0.31744924,0.0013684749,-0.28715807,-0.146116,-0.06773005,-0.11681732,0.48047486,-2.9712784,-0.054872133,-0.16177578,0.18117975,-0.17765903,-0.21481194,-0.107134014,-0.39350414,0.4169315,0.19933671,0.43110648,-0.45363697,0.4680945,0.51038384,-0.56474817,-0.12404572,-0.4828092,-0.21707802,0.032510586,0.5940843,0.05382734,0.04431146,0.15963934,0.14752193,0.35674942,0.0014484386,0.22848566,0.20572893,0.39204535,-0.12816413,0.3321663,0.1315084,0.55886775,-0.15340878,-0.12039966,0.196231,-0.4033988,0.571822,-0.27533028,0.14374845,0.43620464,-0.21973476,-0.87284905,-0.46730775,-0.18086027,1.2173538,-0.19500937,-0.47103876,0.012580617,-0.14873947,-0.22787127,-0.17409293,0.28031817,-0.035892416,0.0016931216,-0.71160924,0.057707336,-0.14900179,0.14977413,-0.06462434,0.03463949,-0.37686148,0.5889405,-0.033247408,0.34551278,0.11817579,0.22460026,-0.277564,-0.37689802,-0.098219365,0.82249886,0.52365667,0.055011995,-0.2378436,-0.2766574,-0.23727447,-0.078040965,0.05516185,0.6966893,0.41033,0.003248759,0.013541034,0.27904892,-0.060268793,0.14891905,-0.19698845,-0.30706748,-0.10832148,-0.013803627,0.515725,0.50920224,-0.23807886,0.5618993,-0.045438286,0.30352753,-0.17677085,-0.38037783,0.45985258,0.90552074,-0.12468453,-0.20926319,0.6270889,0.56605786,-0.27024323,0.3703066,-0.6121134,-0.4189094,0.69249207,-0.14916427,-0.36980656,0.2158342,-0.25553194,0.0476325,-0.8876886,0.41188267,-0.42609066,-0.53316426,-0.5799014,-0.0831803,-2.6425896,0.07372572,-0.24036461,0.0052558375,-0.32473907,-0.12191305,0.14585875,-0.5970501,-0.53458875,0.11505285,0.17193203,0.5678722,-0.216763,0.16102369,-0.18191151,-0.47459304,-0.19461554,0.3496873,0.14121976,0.30357963,-0.27661622,-0.40051118,-0.049540076,-0.17950727,-0.24175905,0.024557492,-0.49542814,-0.4538741,-0.0034240887,-0.37279186,0.07111192,0.70997316,-0.44834214,-0.08931887,-0.25866416,0.19161744,-0.0108864205,0.06708256,0.117790684,0.13700776,-0.04110245,-0.057204295,0.22052614,-0.29093304,0.41025174,0.09464538,0.5596024,0.41780165,-0.007268536,0.1589485,0.60758364,0.42368242,0.013794208,0.7891607,0.19932102,-0.21319045,0.44760615,-0.24814537,-0.33578598,-0.6610983,-0.27641466,0.0102031315,-0.30264938,-0.5072228,-0.114443555,-0.3851659,-0.7634642,0.51802707,-0.0013631076,0.12918977,-0.31110284,0.4066135,0.4786038,-0.086531825,-0.020784238,0.029813528,-0.10707534,-0.3771387,-0.28964993,-0.6285306,-0.25392944,-0.058747362,0.8001849,-0.32658926,-0.029616702,0.084519535,-0.21255408,-0.00016220212,0.1440591,0.23426558,-0.04501039,0.40625885,-0.00064970256,-0.64251876,0.545921,-0.25093284,-0.099367514,-0.48104948,0.0901025,0.5808199,-0.6580051,0.4291343,0.5810612,-0.0020472289,-0.07715461,-0.5073511,0.0367255,-0.11253546,-0.07118395,0.28234985,0.15982819,-0.69346035,0.4726492,0.17585628,-0.2919526,-0.5637458,0.6727837,-0.099208914,-0.14409202,-0.021830281,0.33463976,0.1644697,-0.06133263,-0.13182563,0.28103384,-0.3685016,0.2355542,0.20374122,-0.09444893,0.30930945,-0.106676914,-0.19733284,-0.74081063,0.09035245,-0.48942634,-0.4126339,0.28019303,0.044179853,0.022325043,0.18195404,0.08636184,0.3109275,-0.4366017,0.13211766,-0.015930805,-0.25053912,0.42194924,0.417359,0.58785313,-0.43564478,0.5337731,0.1639298,-0.03658596,0.22632653,0.236849,0.45455125,-0.014206942,0.4302135,0.22485924,-0.09839131,0.14501095,0.8294596,0.22833599,0.48111248,0.06974947,-0.17079201,0.21110773,-0.12595479,0.15323453,-0.025564544,-0.49920905,-0.1194218,-0.17449076,0.09598883,0.44060785,0.1229554,0.25917688,-0.015110815,-0.19040324,0.028831655,0.23374073,0.1679745,-1.1947474,0.40815285,0.2686342,0.7735558,0.23448,0.18950893,0.1447783,0.61610454,-0.25198388,-0.01234924,0.4106642,0.14821647,-0.40156573,0.55110127,-0.58957255,0.53200525,0.015962517,0.03989807,0.09081988,-0.16071059,0.33393624,0.953818,-0.306079,-0.015325018,0.092536,-0.39052826,0.06751089,-0.2754864,0.22524881,-0.32830694,-0.11438746,0.61718684,0.46453685,0.26681396,-0.1726266,0.06222099,0.145047,-0.10606457,0.27477992,0.026248941,0.16475934,-0.23620237,-0.4679259,-0.212864,0.58143216,-0.16156048,0.11652961,0.09592186,-0.23183292,0.3161355,-0.05637263,0.08127256,-0.0343043,-0.52433974,0.06929403,-0.23823072,-0.6332291,0.54345477,-0.19970451,0.2954989,0.17790708,0.012924107,-0.21104339,0.2746253,0.081383355,0.43812725,-0.033594802,-0.2270691,-0.3022499,-0.070321865,0.08913716,-0.21860217,-0.13212228,-0.18353195,0.31930718,-0.41734186,0.31464294,-0.35291258,-0.2898692,-0.33779982,-0.23981507,-0.006575678,0.35681438,0.061426003,-0.06642036,-0.05454973,-0.03122689,-0.20250443,-0.085590534,-0.1390503,0.21761574,0.21571915,-0.1669946,-0.24489127,-0.25385374,-0.10356067,0.20773314,-0.17400257,0.30057663,0.43185717,0.057600737,-0.42821473,-0.10966582,0.17144705,0.46225947,-0.14904281,0.057508014,-0.15639304,-0.32986137,-0.36555448,0.43075627,-0.17456418,0.19676328,0.24933057,-0.25645834,0.76569974,-0.16353913,1.07732,-0.038257916,-0.3678365,0.15385096,0.60073245,0.026435941,0.062710285,-0.26513553,1.0179361,0.45402405,-0.044664316,-0.1305106,-0.4866981,0.11203162,0.06855282,-0.21486136,-0.22963889,-0.0121485405,-0.50860643,-0.16559677,0.2625829,0.26111534,0.21627945,-0.11149402,0.013855829,0.076600745,0.18503074,0.31277493,-0.7184637,-0.30206698,0.36835,0.16769746,-0.14463663,0.048657212,-0.49529627,0.38449237,-0.5839213,0.059207097,-0.24614629,-0.023852384,-0.33696058,-0.32092437,0.17810918,-0.09496787,0.32388645,-0.39510432,-0.37320688,-0.18653244,0.24307282,0.15611893,0.13363428,0.44908416,-0.25086373,0.08760038,0.07393177,0.53232163,0.91569626,-0.16540848,-0.23888272,0.22265793,-0.40542543,-0.5405191,0.0030404688,-0.6555421,0.2949485,-0.13380317,-0.28581557,-0.56402355,0.24242176,0.13422857,0.031193098,0.06352346,-0.647523,-0.21201095,0.025108445,-0.373935,-0.24171498,-0.18950352,-0.05035226,0.695172,-0.28837928,-0.25392294,-0.10246798,0.28513038,-0.13405564,-0.6022963,0.097832195,-0.22399664,0.3692028,0.06780192,-0.3758252,-0.10995126,0.09653353,-0.34065017,0.33715293,0.5065319,-0.3018593,-0.02494781,-0.2622008,0.25767183,0.5895464,-0.21119958,0.16583541,-0.3934638,-0.48653373,-0.7953247,-0.42159298,0.1270837,0.2996783,-0.10828666,-0.65385145,0.037963066,-0.11621799,-0.16859147,-0.05659007,-0.479377,0.40293732,0.15049578,0.26183698,-0.1322694,-0.923482,0.14085229,-0.024466125,-0.08652816,-0.4927946,0.5360991,-0.27968127,0.98354214,0.07491244,0.046505746,0.089290716,-0.49266136,0.0753501,-0.19146945,-0.06670467,-0.541611,0.11642969 -669,0.43811274,-0.16113122,-0.4365334,-0.04572851,-0.110261016,0.11718805,-0.14043978,0.3401366,0.04547924,-0.6949714,-0.13212545,-0.117753044,-0.012949253,0.30651993,-0.20122957,-0.34022596,0.091119625,0.22347164,-0.56827086,0.50702244,-0.48359624,0.46263072,0.0896424,0.26366428,-0.01380183,0.37413606,-0.028485242,-0.19784032,-0.37484735,-0.20498766,-0.06330573,0.26175857,-0.5112939,0.20267403,-0.14818886,-0.33743665,0.01921445,-0.26763102,-0.29899248,-0.5225983,0.15808184,-0.825449,0.37952498,-0.123648286,-0.19101663,0.31952304,0.08363102,0.25728637,-0.2114699,0.16580105,0.27268493,0.09693565,-0.2530616,-0.26970676,-0.13535604,-0.37300164,-0.4885848,0.100770585,-0.44677347,-0.2278429,-0.17450903,0.10622798,-0.16238284,-0.044002306,-0.09161774,0.29447922,-0.32892153,0.15169215,0.0017085719,-0.155681,0.068169355,-0.64267254,-0.13523033,-0.069480345,0.4264209,-0.35166582,-0.032708876,0.2470332,0.28263196,0.43961215,-0.031201333,0.023684764,-0.44022992,-0.014121384,0.20650302,0.5887419,-0.24662545,-0.45988414,-0.03250333,-0.06075612,0.267667,-0.055208676,0.25975966,-0.33195278,-0.15191916,-0.16395937,-0.33095285,0.38340586,0.39005336,-0.32990643,-0.2881067,0.3444781,0.4271371,0.051766295,-0.21341906,0.013960838,-0.15373981,-0.40937003,-0.01884059,0.11254166,-0.1479797,0.4695497,-0.124151625,0.20706008,0.5305566,-0.30158237,0.1375936,0.23652568,-0.025168981,0.10313968,-0.064049415,-0.19223566,0.09818958,-0.3633612,-0.12257061,-0.19623621,0.52094436,0.16170251,-0.883561,0.2865174,-0.45730537,-0.03885958,-0.02781112,0.4039999,0.4913061,0.34693727,-0.026881555,0.5401779,-0.49932915,-0.009127055,-0.15865834,-0.29269642,0.13298723,-0.09368557,-0.13731728,-0.5037257,-0.0031749776,-0.025177747,-0.1382447,0.01804884,0.41009974,-0.62797177,-0.024215255,0.11922174,0.62773955,-0.4285891,-0.122945786,0.7240916,1.0159768,0.8100244,0.08274407,1.2837937,0.23203312,-0.20875752,0.12718333,-0.41592985,-0.5263699,0.32395005,0.26292428,-0.26514393,0.25912726,0.06715826,0.18058224,0.16213468,-0.27590948,0.10540637,-0.17839554,0.03165963,-0.055344913,-0.12733635,-0.2906011,-0.17064805,-0.038625214,-0.020944307,0.16899712,0.18383367,-0.2760655,0.09317355,0.09015048,1.5515099,0.019103944,0.10394396,-0.0050101555,0.22281218,0.18538909,-0.17906031,-0.15936604,0.37236354,0.2658696,0.09520952,-0.62092924,-0.01980587,-0.24647447,-0.5611397,-0.23884913,-0.18663403,-0.07493706,0.0104345335,-0.4882126,-0.17231046,0.04033613,-0.35935113,0.4466477,-2.5486794,-0.16377541,-0.03455681,0.50199515,-0.31960037,-0.43753186,-0.33673757,-0.3426377,0.33969504,0.18970105,0.5085138,-0.49459043,0.3898254,0.31929424,-0.4511293,-0.32969594,-0.5416579,-0.041435163,-0.12472325,0.26181152,0.011605539,0.017535422,0.2355304,0.0040515703,0.42460886,-0.18687657,0.036569096,0.3307688,0.36448595,0.31636623,0.55484766,0.13728476,0.59226954,-0.2389208,-0.17480986,0.36361626,-0.3836097,0.16698718,-0.058833275,0.164708,0.25498945,-0.5121821,-0.88817966,-0.75516266,-0.18828829,1.1919012,-0.0060919863,-0.41778415,0.12058829,-0.059788067,-0.45447105,-0.021443024,0.35000867,-0.05452622,-3.2948596e-05,-0.9551905,0.0075591677,-0.029937148,0.27492163,0.04430496,-0.03779778,-0.45487896,0.56507725,-0.04341804,0.4144867,0.2865439,0.19127712,-0.338655,-0.40541863,0.120511584,1.1220311,0.34314305,-0.005800686,-0.08242432,-0.24109383,-0.4215295,-0.02437192,0.09414104,0.40187687,0.54254025,0.05251464,-0.010639997,0.09010649,0.08278016,0.24754463,-0.1418456,-0.26986027,-0.22851232,0.023137586,0.5001944,0.36671185,-0.23529203,0.5906417,-0.19391671,0.19694936,-0.11242554,-0.40278944,0.480007,0.945054,-0.16290376,-0.31585222,0.5299075,0.3144706,-0.17376308,0.40931037,-0.57481825,-0.49182415,0.27145544,-0.33896452,-0.14005055,0.30876568,-0.21725686,0.17233346,-0.90148973,0.3056119,-0.45086488,-0.38618806,-0.3566484,-0.123230815,-2.6968334,0.22529784,-0.1445413,-0.16091633,-0.021832364,-0.2259186,0.16416374,-0.6174386,-0.47100827,0.040180944,-0.008926059,0.6018718,-0.06642676,0.15030468,-0.041338604,-0.30733538,-0.1022009,0.26905772,-0.08107466,0.4843156,0.16764177,-0.56647265,-0.0021925655,-0.23514684,-0.2903108,0.18123771,-0.6061449,-0.4844171,-0.11527423,-0.49595633,-0.3477952,0.69270104,-0.45171332,0.025662413,-0.17814317,-0.0920294,-0.082406305,0.2891033,-0.038759854,0.08809711,0.11235053,0.07616981,0.016957697,-0.18839668,0.26626703,0.19148628,0.2780326,0.50828266,-0.21827236,0.06882167,0.44368276,0.54860544,-0.16687116,0.68008566,0.53683704,-0.18159679,0.30485842,-0.37472656,-0.087400675,-0.5128728,-0.40026593,-0.09312398,-0.47344396,-0.5086085,-0.09390414,-0.3719017,-0.76327294,0.54447407,-0.05587104,-0.11975308,-0.06441065,0.42437455,0.3881008,-0.06838677,0.08640714,-0.24784403,-0.13215268,-0.42549235,-0.41284537,-0.56176895,-0.33147785,-0.06265847,1.0328449,-0.24224956,0.081609435,-0.0010830483,-0.17371762,0.062790774,0.02486276,0.0248186,0.1864943,0.37329802,-0.12466617,-0.5683344,0.425054,-0.20669106,-0.15265583,-0.26323986,0.24024704,0.6833766,-0.62176603,0.48627773,0.41450223,0.047112074,0.074152246,-0.37179136,-0.12195347,0.12283244,-0.35680518,0.29182014,0.13963978,-0.7510077,0.37946072,0.24769425,-0.2792661,-0.76121247,0.509696,0.16145328,-0.2911753,-0.15470569,0.36208317,0.17431918,0.05412933,-0.5404576,0.17960414,-0.4628098,0.33225006,0.24950425,-0.0736608,0.3871998,-0.33440334,-0.2430032,-0.7480609,-0.041528516,-0.22965407,-0.27660555,0.16865878,0.12581824,0.07924756,0.25320354,0.1612541,0.4028341,-0.46245617,0.031729065,-0.048314814,-0.08114467,0.18178459,0.27314675,0.42630932,-0.45885938,0.34788814,-0.009942191,-0.14337622,-0.13453443,0.032921463,0.5903614,0.09097302,0.047624532,0.13625863,-0.19687144,0.37210158,0.6965814,0.21954681,0.37428877,0.024888124,-0.32015395,0.09362449,0.06694683,0.20713006,-0.037206206,-0.45454976,0.025696678,0.06569309,0.2079192,0.4952669,0.14406754,0.26459107,-0.17256072,-0.28115737,0.054994125,0.2697688,0.08992241,-1.0530984,0.5076088,0.015021967,0.6658986,0.566571,-0.008076497,0.10873254,0.43809947,-0.324212,0.11661172,0.25740436,-0.20693152,-0.47725812,0.33281723,-0.499499,0.34720114,0.011435283,0.1342539,0.079911366,-0.14541745,0.4230216,0.9980665,-0.010309928,0.28811556,0.010229371,-0.26693416,0.093326345,-0.2898516,0.12649642,-0.3633726,-0.08494997,0.77150536,0.51228446,0.35396686,-0.07079581,0.024814382,0.18976043,-0.11895956,0.22515342,0.09497885,0.34579185,0.040756874,-0.61933595,0.016764581,0.6209195,-0.0023015738,0.05573221,0.18012328,-0.30372146,0.35635218,-0.16226153,-0.003474125,-0.07705455,-0.6549748,-0.21975414,-0.33126396,-0.10368776,0.22061452,-0.1790355,0.21608326,0.19778883,0.035415392,-0.16099481,0.40828842,0.27354935,0.593502,-0.01452692,-0.15397283,-0.2885146,0.22108372,0.20215736,-0.1920412,0.0659752,-0.14040732,0.015212859,-0.58385605,0.34217376,0.018385742,-0.17270438,0.011067867,-0.00054481626,0.09439675,0.46344608,-0.1341054,-0.13139598,0.16000311,0.035662033,-0.15170582,-0.13784015,-0.2154472,0.14505677,0.44547477,-0.06769505,-0.10879996,-0.030235102,-0.10345018,0.40797153,0.023500783,0.45462894,0.2625365,0.1604787,-0.33124948,0.07729893,0.27103838,0.38387516,0.007828818,0.122187935,-0.23286942,-0.3718112,-0.30544624,0.15263061,-0.11023682,0.12274443,0.106323294,-0.24406183,0.7032212,0.19480035,1.1957588,0.025208162,-0.2524651,0.19045602,0.28933483,0.06063957,0.10212765,-0.359022,1.1462734,0.5636313,0.08445173,-0.089442715,-0.33707884,-0.29351547,0.04303823,-0.29385707,-0.19915204,0.02375744,-0.5554171,-0.543546,0.20252533,0.2307446,-0.07255022,-0.13202791,0.16360155,0.20889182,0.06930296,0.17313473,-0.72392505,-0.3227477,0.20636247,0.36503968,-0.010813385,0.07119517,-0.4355821,0.4843885,-0.65247357,0.07521016,-0.10289525,0.13192482,-0.06393957,-0.20128967,0.1289284,0.18040405,0.29849234,-0.25684634,-0.49624267,-0.33062193,0.51340955,-0.16480921,0.040284373,0.58901256,-0.32463616,0.13904342,-0.0002870134,0.47305706,1.0199975,-0.15705822,0.048199926,0.47318098,-0.27318177,-0.5146314,0.17191733,-0.2403322,0.16276108,-0.10626149,-0.1890424,-0.43973836,0.2972608,0.14085382,0.10912951,-0.053733606,-0.41952282,-0.20720689,0.48335716,-0.31857798,-0.100119345,-0.19478798,0.14963461,0.6721562,-0.42775694,-0.38988656,0.098908305,0.1766685,-0.25196567,-0.50732845,-0.07312774,-0.36343843,0.27760166,0.24112256,-0.2057736,-0.16039911,0.114781454,-0.27394977,0.32245082,0.31819418,-0.18619642,0.084828146,-0.35465524,-0.012719868,0.7688631,-0.15562762,0.22616327,-0.4130213,-0.51226574,-0.87325805,-0.37234452,0.28161627,0.16752839,-0.091420054,-0.6261521,-0.010244949,-0.1878896,-0.25280714,0.0917141,-0.23785326,0.43170205,0.14814864,0.31022403,-0.285994,-0.9547773,0.17659007,0.17100157,-0.14826925,-0.56956685,0.48692444,0.032743085,0.88234043,0.10538031,-0.021024337,0.46041462,-0.60207015,-0.050128702,-0.23139346,0.012577559,-0.7074656,-0.018559847 -670,0.33746797,0.056697436,-0.4285644,-0.23925766,-0.5903249,0.020161513,-0.08512008,0.26389748,0.34460548,-0.14498186,-0.14979674,-0.07885109,-0.1366953,0.46346518,-0.36521548,-0.91455185,0.079293735,0.052329723,-0.42212814,0.52705145,-0.48448086,0.39544085,0.20065813,0.42493322,0.15976128,0.2908485,0.18140586,0.03403812,-0.06810611,-0.3067484,-0.19943188,0.26193336,-0.49535057,0.36879364,-0.064717755,-0.34407642,0.04240545,-0.26014423,-0.2522268,-0.60008484,0.31186405,-0.6867228,0.49739346,0.049478088,-0.3526179,-0.16150382,0.313288,0.1759889,-0.16719398,-0.13251017,0.18407904,-0.32171613,-0.07660735,-0.13473013,-0.39628592,-0.6447005,-0.6435012,0.05461363,-0.55886173,-0.13639781,-0.31381533,0.33168644,-0.19886716,-0.11510007,-0.06754832,0.4524217,-0.33528614,-0.080958076,0.31374192,-0.24688934,0.08993871,-0.57493293,-0.263681,0.0029670724,0.20840864,0.20015487,-0.2788773,0.3692817,0.37168318,0.37449142,0.07049433,-0.40123633,-0.25448963,-0.19667657,0.07909571,0.39090803,-0.27628234,-0.24776639,-0.30716133,0.016262028,0.4857343,0.26448783,0.17996074,-0.18198733,0.0043012714,-0.06485508,-0.14778624,0.3875793,0.43154627,-0.37152356,-0.10626396,0.2413209,0.21196182,0.1303952,-0.2558248,0.14712961,-0.17434669,-0.51358175,-0.19895561,0.05223844,-0.111302204,0.5338147,-0.101662144,0.105387755,0.7221308,0.02272289,-0.011420838,-0.015688866,-0.06460675,0.099897146,-0.30462962,-0.025092473,0.24360202,-0.4481895,-0.033859137,-0.12317287,0.7141573,-0.022085335,-0.8065594,0.243763,-0.44464442,0.16180946,0.015270404,0.61707497,0.7550488,0.46853128,0.19278547,0.88676834,-0.40389872,0.03657312,-0.058848433,-0.16342852,0.16678748,-0.17745006,0.038381346,-0.52020127,0.097175665,0.070194155,0.029381713,0.17158867,0.22259423,-0.45493788,-0.037029635,0.116085395,0.7525846,-0.26976356,-0.06552716,0.8546615,1.2420963,0.9135219,0.03146747,1.1979243,0.21094747,-0.0805304,-0.11801724,-0.13755953,-0.3104479,0.19601037,0.41436702,-0.06893333,0.43520293,0.070776924,-0.03997552,0.44340482,-0.10416593,-0.22504663,-0.025725726,0.37768152,0.011384637,-0.072340526,-0.66422325,-0.2776593,0.13425039,0.0956097,0.04561231,0.28632194,-0.25753906,0.44970068,-0.039821625,1.0281154,0.10783798,0.13268718,0.12887278,0.4125319,0.2227508,-0.13645752,0.12182988,0.2876556,0.031078683,0.10388357,-0.36307818,0.07925933,-0.36373347,-0.47225356,-0.12418043,-0.3920901,-0.1306595,-0.093701705,-0.34330466,-0.15508258,-0.025616646,-0.29804358,0.48566338,-2.5186696,-0.066678576,-0.21497594,0.25564054,-0.12204138,-0.31375942,-0.08721707,-0.28360334,0.42340496,0.36286497,0.37472534,-0.43582377,0.26573882,0.3427274,-0.48875874,-0.20130774,-0.48254848,0.114688024,-0.043556206,0.5037908,-0.03889999,-0.22297536,-0.15630887,0.30085474,0.7532129,0.08764868,0.028389396,0.21371447,0.34227318,-0.27844244,0.42067796,-0.00032961793,0.58492917,-0.17482163,-0.20494021,0.27591679,-0.51611763,0.5534872,0.12768319,0.23465285,0.37446856,-0.42803216,-0.80018455,-0.48807845,-0.36990476,1.2334032,-0.24651249,-0.5492699,0.27647513,-0.06696444,-0.23574074,0.022400836,0.46498778,-0.08686755,0.29768386,-0.5107091,0.07566489,-0.20561025,0.2551084,-0.14917208,0.026996106,-0.34747306,0.75916386,-0.20139481,0.36184898,0.27965266,0.2587859,-0.39251813,-0.46248785,-0.00062117405,0.8820157,0.5897856,0.0011616817,-0.01449268,-0.24686338,-0.07247208,-0.28343892,0.24369271,0.7684722,0.6689487,-0.028470367,0.01776134,0.29669803,-0.1771908,-0.05927995,0.022606883,-0.25295645,-0.028330097,0.1479921,0.7381468,0.6788314,-0.09126059,0.38137606,0.038377967,0.41547376,-0.25646842,-0.5258856,0.36826798,0.86171156,-0.14980848,-0.2617584,0.8748049,0.4735578,-0.18975875,0.28562975,-0.50563365,-0.39386755,0.6048236,0.0069449884,-0.49674922,0.039102547,-0.39021352,-0.03532421,-0.7983923,0.3727159,-0.110652864,-0.7619904,-0.5558642,-0.15601192,-3.2972407,0.1681031,-0.27336723,0.029066894,-0.13068528,-0.1534277,0.36525846,-0.706623,-0.5163268,-0.02005891,0.11188401,0.5331453,-0.18172576,0.14188318,-0.19357589,-0.32742268,-0.05818977,0.43740278,0.05760299,0.23586027,-0.21566309,-0.15058982,0.023377316,-0.3022321,-0.6303316,0.036283366,-0.6506597,-0.729674,-0.21439394,-0.46884826,-0.11143189,0.84903634,-0.58449554,-0.06405207,-0.31696215,-0.026369479,-0.09493601,0.17931613,0.2604839,0.3296097,0.19660306,0.053735085,-0.15075372,-0.38339362,0.16012652,0.119295515,0.5658425,0.46575123,-0.11259598,0.25933078,0.48949122,0.6271392,-0.11027576,0.73129666,0.1185903,-0.0894347,0.28396723,-0.20705141,-0.42629114,-0.6871347,-0.3799279,-0.03394482,-0.38887522,-0.3335246,-0.21169575,-0.38522062,-0.8304677,0.57918125,0.12357118,0.12994401,-0.41480353,0.21263643,0.3944376,-0.32134268,-0.09994054,-0.059112128,-0.18283723,-0.645781,-0.40129778,-0.6409355,-0.66283196,-0.05716935,1.1137425,-0.05721413,-0.11162109,0.09545263,-0.33919355,0.03663728,-0.012447314,0.18139544,-0.057038333,0.1835015,0.025290677,-0.75006866,0.60714626,-0.21669292,0.007195511,-0.4862915,0.14789245,0.71897507,-0.44122034,0.60175765,0.48551604,0.39052418,0.0125601245,-0.6634955,-0.33902413,0.051779747,-0.22241199,0.6066739,0.30665687,-0.625621,0.50584495,0.14262639,-0.1643522,-0.57932806,0.3724994,-0.1464694,-0.16064975,0.09635686,0.38582513,0.11340018,-0.066279694,0.0113713145,0.3307608,-0.48654127,0.20990641,0.41975638,-0.00928121,0.3062036,-0.043603636,-0.27676737,-0.7697458,0.08429607,-0.42456654,-0.2770482,0.0699525,0.030893052,-0.16175544,0.09374856,-0.024266055,0.41968852,-0.3431253,0.30463454,-0.18204758,-0.36214325,0.37401482,0.6475478,0.45126715,-0.5172917,0.5340859,0.18654363,0.06993761,-0.122361064,0.12285026,0.4751399,0.17712593,0.28330112,-0.19497715,-0.012479348,0.0686715,0.6060991,0.08899815,0.3007526,0.1622198,-0.11688489,0.43676415,0.00020870566,0.046800874,0.040898733,-0.49855325,0.017228002,-0.15447637,0.079761796,0.37104908,0.13347627,0.36754078,-0.0009015926,-0.111248076,0.2427757,0.030907746,-0.0071847057,-1.3838586,0.4497432,0.13681887,0.8019248,0.4179022,0.18534152,-0.2116876,0.66874564,-0.23965272,-0.07706713,0.45305473,0.14387532,-0.21364713,0.6114849,-0.67717904,0.38504145,-0.29681012,-0.109009966,0.116804905,0.16454902,0.3924515,0.80779344,-0.2266028,0.112838104,-0.11247236,-0.24855475,0.027744263,-0.36145067,0.26457468,-0.35082617,-0.5305446,0.62616074,0.17812137,0.40988848,-0.34517065,-0.0052751983,0.20987906,-0.20938015,0.18272927,-0.11820065,-0.11269791,-0.14407538,-0.49699932,-0.42932886,0.54040545,-0.24099824,0.05327305,0.07097836,-0.20124064,0.067835145,0.019103298,-0.20566998,0.060754802,-0.6360494,0.00227264,-0.41333655,-0.6708646,0.34645638,-0.6274948,0.19309212,0.13076918,0.059314694,-0.1380311,0.23423402,0.24305058,0.77107,0.09579694,-0.13435028,-0.15620455,-0.06303508,0.121335484,-0.28105745,-0.0935699,-0.33450332,0.29238662,-0.6002428,0.55841786,-0.34915528,-0.24875002,-0.13345765,-0.12584163,0.03678279,0.16898474,-0.30620793,-0.21279188,0.10229671,-0.017366653,-0.1275305,-0.0871004,-0.2837357,0.31183863,-0.12974533,-0.14102098,0.13274753,-0.13283165,-0.109786086,0.15860991,-0.0264729,0.28491458,0.22948885,-0.18633212,-0.2920021,0.09555389,-0.05761424,0.34426388,0.048409052,0.014480948,-0.2977375,-0.32457498,-0.33302802,0.38818425,-0.09326086,0.15840377,0.06623516,-0.39875096,0.8406442,0.046868075,1.2885851,0.013869093,-0.50262314,0.03693186,0.47820452,-0.16091429,0.14195606,-0.25685564,1.0902132,0.5872722,-0.24413228,-0.09223025,-0.4906756,-0.04171447,0.4096827,-0.30299383,-0.29689154,-0.10905414,-0.6638068,-0.20134766,0.07816265,0.22578993,0.0052257,-0.07839232,-0.18113841,0.19626144,0.16984311,0.39130405,-0.42969173,-0.06859492,0.44554538,0.27924007,-0.012489651,0.12765788,-0.25195262,0.38708276,-0.6862221,0.2897728,-0.4735641,0.09038092,-0.1544557,-0.4068283,0.1862262,-0.13676919,0.45139512,-0.27716127,-0.14272052,-0.1308757,0.59649915,0.1818894,0.1682862,0.5990036,-0.29943022,-0.15510663,0.051951595,0.47618356,1.4761783,-0.21341547,0.012148527,0.114128776,-0.38165173,-0.44956014,0.14682534,-0.49676487,-0.22834863,-0.17022362,-0.48734304,-0.3027986,0.30221817,0.24745859,0.06214301,0.12873173,-0.47715718,-0.1839291,0.23062985,-0.3127378,-0.275688,-0.31040817,0.3448081,0.52379805,-0.2217944,-0.42979383,0.009059812,0.26541087,-0.17110302,-0.64659107,0.14548846,-0.22394927,0.29309708,-0.017304914,-0.42153072,-0.043336753,0.16247027,-0.34916377,0.12701957,0.3242567,-0.23617165,0.04440469,-0.10314875,0.05370915,0.823427,0.20567624,0.13880394,-0.74750966,-0.6047792,-0.91289234,-0.4863657,-0.08646619,0.20524012,-0.1166686,-0.414597,-0.13803996,-0.20508061,0.091019034,0.010604024,-0.56413615,0.30667582,0.18745664,0.46422973,-0.22490914,-0.84913987,0.09391794,0.26175347,-0.025208225,-0.4017362,0.5418509,-0.19290331,0.6732927,0.07493629,-0.017488552,0.030149085,-0.59983796,0.45629042,-0.18261221,-0.30249766,-0.67284673,0.18155703 -671,0.56410116,-0.016412174,-0.5153356,-0.23932125,-0.46093136,0.018931214,-0.18543069,0.3739763,0.14326724,-0.42415148,-0.17499821,-0.08181775,0.10084657,0.20518659,-0.26644853,-0.8145761,0.20896451,0.29494604,-0.58781093,0.49940795,-0.4216362,0.37312093,0.10141768,0.24976285,0.122886024,0.16018006,0.039509527,-0.20534904,0.08032009,-0.21435684,-0.13508354,0.21020895,-0.5425693,0.25514036,-0.07495508,-0.39332718,0.08001146,-0.42528403,-0.34482422,-0.8015016,0.3095787,-0.6873095,0.38951188,-0.029156184,-0.31482288,0.06312888,0.13122818,0.3792303,-0.16188233,-0.05294822,0.16999766,0.037041284,-0.23044315,-0.1711133,-0.083564915,-0.383249,-0.5249041,-0.037825115,-0.41902816,-0.050127827,-0.25729454,0.3466062,-0.24484232,0.056017257,-0.08401559,0.5163246,-0.3144475,0.119963154,0.17281793,-0.015896678,0.23499765,-0.5401038,-0.1761947,-0.0909629,0.30619106,-0.13135591,-0.21359923,0.23400876,0.27063826,0.48472354,-0.049905304,-0.19656657,-0.1636525,-0.10634673,-0.07851609,0.5222801,-0.22255553,-0.53776866,-0.12728648,0.0056753317,0.17392007,0.18582286,-0.015208653,-0.37254232,-0.070270866,-0.048048712,-0.31314513,0.4177632,0.48819277,-0.33560726,-0.103859186,0.29111764,0.5257919,0.13959844,-0.16187534,-0.016441973,0.026407318,-0.592899,-0.1807149,0.059154965,-0.083345555,0.44238758,-0.05311706,0.1837851,0.6250114,0.07024705,-0.17321044,0.29268026,0.118365794,0.13517049,-0.33599263,-0.28261486,0.30594027,-0.608409,0.12108081,-0.2874916,0.96267253,0.13241068,-0.8201504,0.34705552,-0.6231373,0.096181616,-0.16103569,0.49751252,0.6947212,0.38567334,0.09873683,0.79736507,-0.3362644,0.091527544,-0.14897887,-0.20279908,-0.143669,0.13301697,0.04711968,-0.37235552,0.040167253,-0.027227696,-0.122186966,0.1431362,0.4696387,-0.5517824,-0.19449612,0.062684804,0.8177306,-0.3913697,-0.029147653,0.7313641,0.9547516,0.91614825,0.21381995,1.2143422,0.11103864,-0.21421334,0.22728196,-0.2525076,-0.6171556,0.31345174,0.15750773,0.32821372,-0.012248425,0.1093853,-0.11333475,0.49149245,-0.3947658,-0.121292375,-0.20021077,0.35732222,0.026689975,-0.058835927,-0.44895637,-0.44699973,-0.026639942,0.053383265,0.18212779,0.32674417,-0.18942569,0.19613811,0.095914036,1.2976533,-0.03880249,-0.071077846,0.08027847,0.35772142,0.23445408,-0.15696165,-0.14731473,0.14780721,0.31253627,-0.10656044,-0.5862668,0.061958887,-0.20239936,-0.42295256,-0.11074962,-0.233589,-0.08651934,-0.11136138,-0.5084617,-0.19221668,-0.16768523,-0.22995214,0.6361771,-2.5185304,-0.23396537,-0.120040774,0.3427065,-0.17245644,-0.3406594,-0.24386209,-0.5265173,0.3513884,0.2246285,0.5214799,-0.5370519,0.5028409,0.48737124,-0.5868114,-0.1218236,-0.7219624,-0.19341014,0.09040915,0.20003922,0.027467234,-0.08672641,-0.19639267,0.027116528,0.4956171,-0.0023272634,0.1689174,0.27414662,0.37521246,0.22893776,0.4798148,0.04893841,0.5298169,-0.19813338,-0.18339655,0.23730367,-0.4354512,0.14402646,-0.14598246,0.10552817,0.4341814,-0.46634188,-0.90230364,-0.7681914,-0.17159966,1.0233966,-0.23995055,-0.27562818,0.24407291,-0.20576945,-0.111599125,0.065154895,0.35838452,-0.064823754,-0.1259342,-0.78873724,-0.030096956,-0.016221832,0.12789598,-0.030816555,-0.0069310027,-0.44405666,0.5837822,-0.22123283,0.47631747,0.2047944,0.2529476,-0.24858353,-0.38270444,-0.06705808,0.87755203,0.31198862,0.13924655,-0.20767239,-0.24291068,-0.38911697,-0.0059574763,0.027617406,0.8183878,0.7823869,0.009733921,0.006619479,0.25445455,-0.11343682,0.22533941,-0.07614126,-0.4259824,-0.17850171,0.03361269,0.6706486,0.5502772,-0.025450388,0.41152197,-0.075054914,0.3734998,-0.209613,-0.3756628,0.30114478,1.1261616,-0.19753736,-0.32282227,0.6249119,0.46106184,-0.14897482,0.329972,-0.6134882,-0.2950111,0.39603454,-0.08027926,-0.39422643,0.11630742,-0.30481803,0.17510948,-0.8732847,0.46461257,-0.36602482,-0.6867831,-0.57128197,-0.033512753,-3.0318124,0.25394005,-0.19819692,0.010588443,-0.03255612,-0.24201465,0.11031411,-0.53785765,-0.5589693,0.17121486,0.11159542,0.71067333,0.03897635,0.18023954,-0.16237967,-0.23337488,-0.2032844,0.14845029,0.17936532,0.2977494,-0.008296593,-0.31973833,-0.0026163498,-0.15344475,-0.19063708,0.08560503,-0.7306349,-0.5152409,-0.054537296,-0.6894877,-0.3211288,0.6359962,-0.38764337,0.06489909,-0.16461112,0.029397372,-0.16658612,0.34291688,0.02809913,0.18104331,0.043623853,-0.03464006,0.008368178,-0.3145246,0.29182035,0.03451266,0.16753261,0.20259206,-0.057202753,0.1778447,0.5296787,0.61573344,0.06971003,0.91362846,0.4085,-0.06803922,0.21128663,-0.21892847,-0.35053188,-0.4248485,-0.251763,-0.17256811,-0.34323725,-0.17854537,-0.01270233,-0.44492656,-0.7545498,0.34566554,0.015831172,-0.095321335,-0.038386837,0.22327934,0.5188382,-0.16470951,-0.008977779,-0.095692106,-0.102706894,-0.50184584,-0.28942147,-0.6158339,-0.30938253,-0.08101165,1.2815837,-0.23136505,0.033046473,0.023111764,0.03372811,0.016842287,0.24723712,0.032965057,0.08578487,0.45921192,-0.23815084,-0.6130112,0.3596711,-0.34525186,-0.3053603,-0.42376506,0.22587523,0.5188638,-0.6994145,0.61889154,0.47762635,0.24466829,0.0046574315,-0.61174375,-0.14328766,0.20813212,-0.21616516,0.4253035,0.29708233,-0.6850331,0.45448926,0.4050141,-0.105863504,-0.79005605,0.67096776,-0.0032978335,-0.53092206,-0.018997543,0.4631835,0.12207584,-0.04664629,-0.16871732,0.15526418,-0.3501628,0.3433257,0.14669108,-0.11885726,0.17707604,-0.2907619,-0.09118579,-0.74201286,-0.12121112,-0.5414687,-0.18794495,0.1680689,0.032736354,0.1406636,0.20239028,0.06829012,0.44359824,-0.42116448,-0.02435375,-0.22512788,-0.34098524,0.2338619,0.40343374,0.3418516,-0.28351066,0.55228275,-0.040471938,-0.0930808,-0.03814327,0.20414644,0.4416647,-0.10855198,0.44018108,-0.18504126,-0.14041434,0.17490414,0.76323444,0.06554221,0.22368366,-0.011822252,-0.08483636,0.16384073,0.048979025,0.19363807,0.07520129,-0.39027175,-0.16574144,-0.010023657,0.16082273,0.4616457,0.081177324,0.19054222,-0.021552997,-0.39670286,-0.0808197,0.0852901,-0.033752322,-1.3386445,0.5013584,0.13761194,0.7429618,0.53584135,0.057410683,0.036014404,0.5358528,-0.13245764,0.23125419,0.25792873,0.030829886,-0.30347994,0.42902026,-0.55167377,0.48442954,-0.11382588,0.052367035,-0.0030180286,-0.06490412,0.39254302,0.8693623,-0.076610334,0.07649764,0.027171874,-0.35128078,0.11241969,-0.36273918,-0.027234187,-0.699032,-0.2392783,0.7328607,0.5230653,0.3081213,-0.23134069,0.011631336,0.2495661,-0.15444054,0.08561221,0.04722782,0.044218883,0.096720494,-0.6140996,-0.27046162,0.56990206,-0.046885926,0.005809466,0.11086297,-0.05856086,0.18666236,-0.055022765,0.0012528162,-0.11203382,-0.5724067,-0.079026245,-0.43845117,-0.25927657,0.28348938,-0.14329238,0.08943518,0.25781357,0.12665756,-0.34559387,0.32230908,0.22758304,0.694418,-0.030280987,-0.13850416,-0.46983972,0.017402602,0.14239782,-0.109178655,-0.2269493,-0.34625447,0.107766315,-0.7940777,0.4893215,-0.024131905,-0.101127245,0.24319759,-0.16122098,-0.012824509,0.4343022,-0.14796314,-0.030519357,0.039092746,0.0068763136,-0.2596602,-0.08508695,-0.17273325,0.18763135,0.12111876,-0.12353799,-0.055394206,-0.22610046,-0.02904675,0.5483477,0.083162345,0.43561748,0.41448778,0.16773619,-0.2678874,-0.05369157,0.1471393,0.47467226,-0.17824177,-0.11528173,-0.35843506,-0.2854032,-0.3256195,0.36343843,-0.1368403,0.32575414,0.039472796,-0.18526818,0.75242406,-0.12058592,1.0757172,-0.033445347,-0.2562485,9.925763e-05,0.47718036,-0.15688248,-0.04602954,-0.30152592,0.9248332,0.53228384,-0.067596205,-0.090683974,-0.3681492,0.124698356,0.12980635,-0.23202161,-0.063737586,-0.021508664,-0.51276916,-0.26633286,0.16093431,0.24592991,0.08970265,-0.13485575,-0.005534202,0.10946532,0.01565644,0.32983488,-0.56166255,0.03737143,0.15458912,0.33184776,0.14023225,0.2761915,-0.4570901,0.33926696,-0.5461713,0.08449745,-0.2738941,0.13893496,-0.120785676,-0.2936798,0.18850638,-0.0020066262,0.30217865,-0.21686636,-0.28505316,-0.29294735,0.4858436,0.20800544,0.054976486,0.6691763,-0.19667858,-0.05492665,0.08806925,0.60807526,1.0143505,-0.23380308,-0.16310625,0.3404798,-0.26821595,-0.5406672,0.07647655,-0.38777244,0.03124804,0.057947516,-0.006091555,-0.69344217,0.3894822,0.22663717,0.11026519,-0.03600351,-0.73745453,-0.11842706,0.36730835,-0.23474477,-0.2399771,-0.25058794,0.26235926,0.6231047,-0.1826715,-0.117852844,-0.03475635,0.30069238,-0.25591213,-0.6667146,0.099913664,-0.61574596,0.3093159,0.1557552,-0.30936927,-0.27289167,0.06756417,-0.3202099,0.04029002,0.22841467,-0.26428512,0.090521365,-0.33497038,0.05803812,0.85752463,-0.04047116,0.18454114,-0.48134628,-0.46110356,-0.73710746,-0.15345153,0.41448978,0.23780641,0.019752575,-0.70875424,-0.16357075,0.04604915,-0.20213757,-0.013545283,-0.27290127,0.4806849,0.13713373,0.38137287,-0.06594478,-0.8588267,-0.035033867,0.06302726,-0.42265072,-0.45236677,0.44750577,-0.0045578717,0.88539,0.12882249,0.032921154,0.2575391,-0.39406613,0.12920569,-0.26873052,-0.10344521,-0.7401232,0.06261982 -672,0.44046044,-0.29110917,-0.4267766,-0.14219251,-0.09561845,-0.16349983,-0.173247,0.64350986,0.28522238,-0.44105414,-0.1159506,-0.049836975,-0.018380847,0.35157928,-0.12730265,-0.43810573,0.03882112,0.121883206,-0.17970899,0.66299,-0.35083652,0.19364922,-0.21824649,0.5679577,0.20846036,0.27953717,0.10849112,0.0011238073,-0.1888876,-0.05986982,0.115017116,0.3493219,-0.3733841,0.19029331,-0.16773467,-0.2532945,0.003996206,-0.46675518,-0.45584106,-0.7485336,0.3894504,-0.77343696,0.4187909,0.119621836,-0.25500104,0.4189015,-0.058617763,0.18718441,-0.29997903,-0.16723733,0.060718063,-0.035353553,0.032508843,-0.1410983,-0.06650787,-0.1532065,-0.5425745,0.076955244,-0.35668355,-0.1180393,-0.2979662,0.14929068,-0.34596065,-0.15894018,0.04892203,0.58600837,-0.5074622,-0.102672115,0.1567227,-0.06725731,0.31424162,-0.60796124,-0.2976081,-0.1803103,0.29397148,-0.17203522,-0.13503793,0.30629784,0.22677603,0.38884306,-0.08976736,-0.084281765,-0.40876314,-0.08799795,0.11059018,0.4857913,-0.12087642,-0.68833,-0.07384696,-0.072248034,0.09352688,0.10106533,0.1227191,-0.20603882,-0.11610738,0.020598957,-0.21326588,0.42278025,0.5485653,-0.090976365,-0.24501522,0.33817878,0.48977032,0.19403593,-0.15873425,-0.060917657,0.11647322,-0.39938784,-0.13370405,-0.07893453,-0.19243695,0.58918995,-0.14488614,0.21939842,0.62934536,-0.14528635,-0.060184173,0.058693383,0.0931709,-0.1278095,-0.3145233,-0.31353116,0.2832991,-0.35117054,0.25508022,-0.1225226,0.7022743,0.17880277,-0.7808699,0.38460547,-0.45656863,0.10645489,-0.21857023,0.55382365,0.7953772,0.345318,0.5043572,0.5974523,-0.47501877,0.036599692,0.13282838,-0.3996706,0.07742022,-0.32042265,-0.10028051,-0.4157277,0.039182477,0.14327672,-0.10691905,0.104383744,0.2043546,-0.45725542,-0.051308963,0.27230182,0.73034096,-0.16908923,-0.01004102,0.83670014,1.082185,1.0637001,0.023662379,1.0444367,0.3106158,-0.20410047,0.33778387,-0.29873398,-0.8461223,0.23302996,0.2995243,-0.029351745,0.15857743,0.10374887,-0.041550547,0.44005245,-0.50425017,-0.010195347,-0.18174182,0.14794554,0.15375338,-0.1330529,-0.61344284,-0.22159824,-0.15748204,0.026407957,0.06290536,0.40156764,-0.20927116,0.4246618,0.006211051,1.4148647,-0.050365068,0.07406262,-0.0049744737,0.7990307,0.17476125,-0.1851686,-0.016164051,0.31275153,0.32313347,0.031181386,-0.66766137,0.08997668,-0.20542575,-0.4668878,-0.20998737,-0.39224812,0.097998865,0.055453487,-0.41458112,-0.14245228,-0.1393074,-0.28262845,0.4114964,-2.9853294,-0.26717192,-0.09219164,0.28019315,-0.23527884,-0.19069448,-0.009552153,-0.4704681,0.37638667,0.4151234,0.5236804,-0.668112,0.19576988,0.54554003,-0.54397035,0.01979919,-0.55054647,-0.13134554,-0.12259146,0.5172587,0.050069936,0.022781143,0.042395327,0.26889616,0.46394497,0.15443175,0.16289236,0.09518584,0.25758162,0.018067818,0.24061532,-0.070720315,0.48698118,-0.29005414,-0.18373731,0.27146798,-0.37027964,0.22059122,-0.3087547,0.17230831,0.49562907,-0.3647552,-0.90913963,-0.53607523,-0.09349738,1.0393301,-0.087547764,-0.48331377,0.33570358,-0.45424822,-0.21899389,-0.09996389,0.5012735,-0.09751449,-0.034587365,-0.81001997,0.09298416,-0.17146952,0.034683563,0.047736544,-0.016112585,-0.43337828,0.693191,0.078390755,0.4163572,0.3784832,0.19781674,-0.30229142,-0.59037006,0.0047860825,0.6967222,0.3985359,0.16453423,-0.32758325,-0.14589965,-0.20294826,-0.11349722,0.08422263,0.42089504,0.6294292,-0.059225615,0.2097858,0.25338113,-0.073529735,0.11342839,-0.096647486,-0.2769913,-0.13745332,0.12951544,0.6268201,0.82547367,-0.2662341,0.34765682,-0.07045849,0.16946961,-0.18190704,-0.39570814,0.728679,0.9425077,-0.10823231,-0.23980798,0.6102275,0.50232387,-0.40061864,0.5246071,-0.6033534,-0.08512851,0.37505075,-0.14357837,-0.38822916,0.1065716,-0.27298325,0.26268178,-0.91793126,0.2413326,-0.20410885,-0.35357028,-0.7215017,-0.046721675,-3.4882202,0.046515077,-0.24630366,-0.26131013,-0.11201155,-0.17112,0.3005549,-0.6689952,-0.6087254,0.30290884,0.095468745,0.7226361,-0.03578031,0.08579975,-0.28798813,-0.24867246,-0.43099287,0.05719349,0.12868747,0.3459744,0.16043076,-0.57587916,-0.089510284,-0.16292529,-0.42889994,0.0035609624,-0.42028818,-0.30726096,-0.23915245,-0.55725867,-0.2558622,0.59947795,-0.11490501,0.021685,-0.2073747,-0.08734834,-0.23519656,0.36537594,0.06266977,0.1045663,0.034117587,-0.06789278,0.08206914,-0.2560534,0.20172028,-0.039419584,0.16341008,0.31118488,-0.24541077,0.15313528,0.5797551,0.690938,-0.22906287,0.9473525,0.6371667,-0.12049203,0.3036316,-0.2905585,-0.31923562,-0.4983771,-0.39149597,-0.033757456,-0.35046116,-0.55174565,-0.04048052,-0.49823958,-0.7387258,0.56357986,-0.110371314,0.36176282,0.09845315,-0.00844901,0.4639509,-0.2074144,-0.02336901,-0.01803408,-0.019889269,-0.56672543,-0.2138416,-0.6106567,-0.5536556,0.17840281,0.7639889,-0.18750553,-0.1373559,0.123823486,-0.27893776,-0.025626944,0.1278191,-0.030453432,0.15471248,0.32782936,-0.0033025166,-0.674182,0.57112485,0.09124271,-0.047669,-0.58795464,0.09311756,0.51674575,-0.60176784,0.5891458,0.32760796,-0.061436873,-0.21481276,-0.53507704,-0.345516,-0.05897895,-0.1425,0.534197,0.42038158,-0.86408854,0.4966832,0.28854156,-0.2682869,-0.7346254,0.56374407,-0.06463964,-0.17932813,-0.077868216,0.20445715,0.04629922,0.05941059,-0.26108187,0.26561755,-0.30624261,0.09780777,0.26930296,-0.08077905,0.38089594,-0.17493077,0.061030917,-0.67148125,-0.030726543,-0.5745052,-0.16412546,0.172094,0.1636748,0.17319655,0.11776621,0.078458205,0.3306385,-0.28641286,0.053853847,-0.035292685,-0.24785818,0.22872424,0.46277615,0.5711383,-0.4101465,0.5881523,0.051250286,-0.085140534,-0.101711325,0.03917731,0.27630132,0.059495043,0.38444248,0.09159387,-0.27343723,0.12947682,0.7621164,0.28982347,0.49038908,-0.011789339,-0.1448188,0.38134032,0.15760885,0.2907224,0.04822255,-0.45825866,0.011724055,-0.34498483,0.17024972,0.44318792,0.10302048,0.40348864,-0.16862242,-0.39126793,0.09873467,0.1457098,0.049398106,-1.2870777,0.34828928,0.23182604,0.8802638,0.6376712,-0.014529049,0.08058976,0.87569195,-0.10669499,0.14918093,0.436088,-0.07256419,-0.6239754,0.56462187,-0.7239656,0.40154886,0.049477678,-0.05154112,0.024315566,-0.085327506,0.4080343,0.47026512,-0.16577248,0.0821629,0.038128596,-0.31976765,0.25797996,-0.36814234,0.112156734,-0.46657938,-0.13040327,0.5450414,0.59435713,0.25887483,-0.118301995,0.0295937,0.07584129,-0.03503143,-0.02833494,0.09787892,0.08624719,-0.098013006,-0.6104743,-0.17072923,0.5221563,-0.0110299075,0.08389993,-0.08417004,-0.18563978,0.2641715,-0.16441986,-0.17466083,0.030690312,-0.7334999,0.057445433,-0.09377678,-0.40743202,0.754838,-0.17310688,0.36574984,0.16592145,0.13668127,-0.26964238,0.2570692,0.06558644,0.67403644,-0.09531547,-0.09677424,-0.38284105,-0.061868336,0.2886537,-0.14294986,-0.22998883,-0.31270787,-0.110597946,-0.46484208,0.42395815,-0.032860663,-0.11003693,-0.034852643,-0.025586942,0.14201073,0.5396722,-0.11781267,-0.17198743,-0.14120932,-0.08119903,-0.34057012,-0.20909892,-0.13847211,0.30691168,0.22360691,-0.08485126,-0.14557867,-0.13678768,-0.14673528,0.5036672,0.038402338,0.3051876,0.3080099,0.011121482,-0.2635265,-0.21190824,0.18303987,0.3924539,-0.021504058,-0.20205809,-0.24445336,-0.42779416,-0.35943276,0.21368542,-0.013032397,0.26787803,0.011829035,-0.23029558,0.5751547,0.057533205,1.0324389,0.06936453,-0.4952505,0.22573936,0.44364187,-0.1027347,0.02588089,-0.33352342,0.82170546,0.4461829,-0.22789939,-0.21817677,-0.4230859,0.054057445,0.15599848,-0.21143813,-0.09946804,0.004939735,-0.6940784,-0.09887479,0.35886434,0.31635112,0.23171219,-0.07491483,0.069525905,0.20394434,0.06440225,0.38163492,-0.42580175,-0.18269384,0.3816285,0.24642947,0.12814926,0.024836907,-0.35554108,0.34638518,-0.49380186,-0.017069787,-0.3024508,0.26497048,-0.36452124,-0.47471428,0.22557984,0.08678688,0.47200802,-0.21317562,-0.3786075,-0.29594716,0.5008522,0.07077675,0.14503457,0.34402508,-0.2715354,0.056743868,-0.007175352,0.38368955,0.8679281,-0.24346079,-0.06873505,0.30139777,-0.23697533,-0.7445899,0.36588818,-0.34848288,0.38836828,-0.06977817,-0.17735036,-0.7283286,0.19618228,0.24949591,0.036449518,0.049538482,-0.5162032,-0.36064744,0.21116886,-0.23108125,-0.18566868,-0.26698175,-0.13227858,0.5783127,-0.32249492,-0.40240023,0.13406265,0.18658295,-0.15360317,-0.5568817,-0.024497923,-0.34089893,0.26213685,0.11761583,-0.40546733,-0.1740381,0.1591263,-0.4333193,0.22953963,0.20248897,-0.352289,0.015017997,-0.42008987,-0.012883469,1.0619782,-0.25311792,0.23144385,-0.48272985,-0.43347555,-0.92424124,-0.47396532,0.638452,0.1205922,0.02353825,-0.677409,0.13991244,-0.15177925,-0.0038473574,-0.048250657,-0.30422014,0.42340016,0.14160475,0.33017507,0.038364027,-0.6558835,0.029153304,0.100159764,-0.12916984,-0.55697006,0.50614977,-0.013013567,0.9733617,0.12134205,0.21194312,0.15088664,-0.3475377,-0.08627897,-0.23677455,-0.31634548,-0.55788386,0.061529603 -673,0.28977123,-0.15914561,-0.7651243,-0.06816841,-0.2092898,0.02311719,-0.2790474,0.6413251,0.37084833,-0.32142615,0.003775527,-0.17657264,-0.04228227,0.2553834,-0.08433438,-0.4806567,-0.15387644,0.18787986,-0.6140933,0.6520725,-0.3773416,0.01677308,-0.029108888,0.4323074,0.008452233,0.1724117,-0.124180295,-0.10081988,-0.014879058,0.062348366,0.045137327,0.27613816,-0.6000619,0.30147406,-0.18285589,-0.14533925,0.072797954,-0.48123214,-0.4019712,-0.7598893,0.14085479,-0.5193772,0.5367916,0.15599827,-0.28332046,0.1882789,0.10952588,0.16207673,-0.33843252,-0.05243786,0.2186629,-0.2058348,-0.3968564,-0.20687862,-0.24384145,-0.4619387,-0.6023529,-0.11486844,-0.50793856,0.08302937,-0.08510906,0.21206065,-0.3383416,-0.14505936,-0.07520335,0.67494553,-0.3459026,0.43791354,0.12408761,-0.13729714,0.32894674,-0.5227618,-0.09448409,-0.029270023,0.17157863,0.1197446,-0.3388145,0.2514368,0.049828943,0.34996605,-0.10656338,-0.056111615,-0.34152356,0.023325669,-0.10305665,0.40279093,-0.07734718,-0.28960246,-0.058577504,0.045711767,0.032076214,0.23878627,0.0013367087,-0.350093,-0.1492803,-0.31114945,-0.1516216,0.2961706,0.49923873,0.058930933,-0.075306475,0.40864834,0.27436697,0.3316082,-0.05331968,0.0116435485,-0.016554631,-0.6025422,-0.16091485,0.030147016,0.10066074,0.46456543,-0.031812895,0.3360807,0.5527955,0.11751322,-0.31018126,-0.024507971,0.055273753,0.12463174,-0.28899565,-0.27501017,0.32302022,-0.44135204,0.03164136,-0.14094414,0.63908756,-0.053903908,-0.9738777,0.34000465,-0.5590772,0.06336016,-0.0794231,0.607238,0.8234206,0.64029706,0.26832798,0.6430072,-0.21915646,0.20255719,-0.07101549,-0.32212862,0.38314882,-0.0068175495,0.22546077,-0.48223522,-0.17134511,0.0032482047,-0.23252426,0.13498305,0.3277188,-0.34179673,-0.18356866,0.3021343,0.8041895,-0.25954077,-0.15126063,0.49122128,1.1080999,0.77566904,0.0830371,1.1780634,0.158499,-0.101366185,0.15808426,-0.14579047,-1.0647446,0.32953244,0.11836878,-0.06648621,0.21309249,0.04680401,-0.23632713,0.3461549,-0.22378552,-0.1705391,-0.051598612,0.3010837,0.005988717,-0.09187893,-0.20637238,-0.3410057,-0.026495816,0.040448118,0.024845349,0.16823082,-0.08447716,0.4397587,0.08253876,1.683474,0.11266144,0.058992207,0.037993886,0.45747313,0.15215574,-0.08771876,-0.28551236,0.6481101,0.29590765,0.1792552,-0.5147884,0.211361,-0.09160561,-0.37589276,-0.099351294,-0.36213636,-0.08338991,-0.24476242,-0.21531607,-0.24921973,-0.15546651,-0.4598376,0.30668202,-3.0926094,-0.011931648,0.09895734,0.35994875,-0.110067844,-0.10414973,-0.16640966,-0.4221176,0.40597376,0.47115096,0.51303595,-0.4260666,0.2466106,0.48518562,-0.6159784,-0.11071992,-0.5465608,-0.05776502,0.007329618,0.3287113,-0.128298,-0.014634371,0.08383896,0.06612689,0.28652766,0.06388533,0.14477585,0.46385014,0.53092843,-0.052524645,0.44513062,-0.23507546,0.35630786,-0.44609225,-0.17479591,0.12010648,-0.308091,0.18879573,-0.15314147,0.05479556,0.551084,-0.5202159,-0.772552,-0.17838085,0.15043227,1.100642,-0.37241924,-0.24441361,0.28218368,-0.39678827,-0.16476025,0.08940678,0.6626727,-0.20370673,-0.10856684,-0.7186757,-0.17025559,-0.03104492,0.4143928,-0.05008186,-0.0069906763,-0.511107,0.5007296,0.06863541,0.6031055,0.4625547,0.085309304,-0.30065352,-0.59611607,0.08386388,0.64096624,0.22170608,0.20321189,-0.17579512,-0.14202413,-0.13965847,0.03880291,0.06130365,0.65788007,0.6255517,-0.18956833,0.26480654,0.39154693,-0.23775072,-0.018479593,-0.17476475,-0.31067976,-0.20850806,0.093027234,0.3998076,0.82695574,-0.12216425,0.40142635,0.107530445,0.4409841,-0.13730903,-0.4772048,0.46028543,0.7640619,-0.1561081,-0.22485363,0.53133494,0.5611024,-0.23745723,0.54918915,-0.40297344,-0.30669674,0.5995427,-0.10314577,-0.5311143,0.28822768,-0.38353527,-0.0046694204,-0.94851154,0.15402052,-0.07679228,-0.62316436,-0.75291705,0.0032309715,-2.6776228,0.09756746,-0.3095558,-0.26787248,-0.0909772,-0.059962858,0.13490246,-0.54357046,-0.56186396,0.25378773,0.23346396,0.44877255,-0.2265772,0.0054369443,-0.18086283,-0.22922231,-0.31064105,0.20771658,0.3005909,0.2748934,-0.015866125,-0.59977037,-0.20774865,-0.07587551,-0.24464254,-0.008966471,-0.46126357,-0.18278311,0.020300046,-0.8104613,-0.296665,0.5651036,-0.30058166,-0.16450824,-0.1632366,0.05269887,0.21969481,0.27915668,-0.11552516,0.17133419,-0.02450507,-0.036221206,-0.12765862,-0.25603506,0.16673534,0.031509973,0.2697174,0.41435492,0.02616998,0.07180963,0.44677433,0.5321031,-0.28196338,0.8295634,0.5224212,-0.051306855,0.28486922,-0.17724991,-0.072439946,-0.4913926,-0.090438455,-0.12131261,-0.4336392,-0.2903613,0.07107798,-0.32673904,-0.7976548,0.6645395,0.096274264,-0.04851967,0.112419434,0.16180266,0.41948307,-0.09747153,0.078757614,-0.23994915,-0.19580323,-0.40023378,-0.21367867,-0.72926164,-0.5118409,0.1978548,1.0613972,-0.30814546,-0.017644184,0.18962468,-0.39401725,0.023131175,0.25298357,-0.010302976,0.50358564,0.4111406,0.19561112,-0.6585663,0.45061672,-0.16045414,-0.014613588,-0.6411547,0.1644173,0.6163118,-0.83250755,0.47118452,0.41523513,-0.036131833,-0.27027857,-0.6352307,-0.2820473,0.016502792,-0.0786846,0.3667412,0.29902947,-0.9435022,0.45936248,0.1722281,-0.37225148,-0.86695796,0.28915533,-0.14728355,-0.3897167,0.13037695,0.22098638,-0.0400524,0.16488901,-0.31024057,0.1663546,-0.17128126,0.202522,-0.049412817,-0.18808556,0.40818688,-0.03470246,0.097131036,-0.7209306,0.06643322,-0.5000518,-0.26337376,0.5781304,0.003434196,0.08178099,-0.00608778,0.056941003,0.34671542,-0.27039155,0.074484624,-0.29878464,-0.28869408,0.3661377,0.5292862,0.42744994,-0.49399152,0.6348979,-0.0309138,-0.21177697,-0.033938903,0.10196266,0.28959063,0.011574735,0.36368325,0.059120204,-0.2055028,0.24107915,0.72950387,0.13877456,0.34827486,0.030016651,0.08275594,0.45131373,0.07803624,0.12925766,-0.18509434,-0.5997409,-0.08103893,-0.46085945,0.22952473,0.4492794,0.118659794,0.435414,-0.14528878,-0.16466463,0.022582196,0.2960147,0.28430235,-0.74324703,0.38419607,0.23816375,0.73186946,0.7124202,0.2310707,0.0014305314,0.75859445,-0.09135505,0.18213363,0.34361258,0.10271413,-0.47942245,0.6079507,-0.5679092,0.42655376,-0.18132348,-0.015122547,0.23650795,0.14841653,0.55411476,0.86369497,-0.12404761,0.020117542,0.114190914,-0.22491734,-0.026064023,-0.34842303,0.1348208,-0.45512548,-0.4159226,0.5051174,0.45577303,0.24054222,-0.25483063,-0.074538946,0.26086164,-0.14706336,0.24651772,-0.026504437,-0.15667647,-0.0409521,-0.7249503,-0.15157247,0.5946161,-0.0037536125,0.10943937,-0.017394274,-0.041703865,0.2953352,-0.19601439,-0.10966433,-0.08417308,-0.5985085,0.026764303,-0.23256122,-0.5538832,0.7313128,-0.2054909,0.20832582,0.2092592,0.09608966,-0.31014463,0.27464652,-0.0074011735,0.73288774,-0.052492183,-0.14206544,-0.14762048,0.016926622,0.28947136,-0.25423878,-0.18575086,-0.31116292,-0.09650131,-0.4983951,0.44566095,-0.14187117,-0.4446908,0.005079309,-0.09475258,0.020577287,0.41518375,0.07491438,-0.07171442,-0.038133953,-0.31617472,-0.4322629,-0.23547904,-0.3742539,0.261188,0.11257621,0.03823528,-0.075589515,-0.063566886,0.085003555,0.39389086,0.10363903,0.22257614,0.17291446,0.28713682,-0.3114658,-0.03227815,0.13385409,0.6614563,0.08549532,-0.06975537,-0.22096409,-0.1891644,-0.3029885,-0.068065666,-0.11722324,0.4008348,0.20698422,-0.45008746,0.6836946,-0.04018172,0.90665644,-0.08156926,-0.37041414,0.2630514,0.48275924,0.046111155,0.032230787,-0.35474598,0.86366576,0.5525909,-0.19226933,-0.18735301,-0.3668886,-0.089013726,0.18827055,-0.27241078,-0.28780866,-0.086719595,-0.54203093,-0.15590346,0.25563154,0.15837544,0.091852486,-0.18705739,0.027198264,0.075133204,0.0372557,0.057127777,-0.37929702,0.10497875,0.15722485,0.14818087,0.19887201,0.11209065,-0.4257431,0.3347338,-0.43062925,0.2530842,-0.41257223,0.09093613,-0.2850786,-0.13083686,0.103651285,0.020404072,0.34653494,-0.27731106,-0.21644203,-0.24276523,0.43193737,0.3036907,0.33051264,0.7391519,-0.25091112,-0.02418288,0.02238504,0.55455095,0.8552844,-0.47453323,-0.17071082,0.43884373,-0.24568017,-0.7461688,0.21733303,-0.3846395,0.10503012,-0.048558008,-0.3166154,-0.4151559,0.102315515,-0.025886545,-0.065280385,-0.028790394,-0.5997864,0.13428839,0.25343195,-0.19897598,-0.18647747,-0.2987193,-0.038023025,0.7748179,-0.24168682,-0.31715906,0.060121104,-0.040705096,-0.10096217,-0.44277707,0.07468174,-0.4311312,0.16520922,0.19292708,-0.49472126,-0.11372761,0.10847622,-0.5158034,0.1467052,0.05076137,-0.20293935,-0.067709126,-0.35003185,-0.099477135,1.0182396,-0.23233174,0.0715521,-0.36424586,-0.5608788,-0.76713794,-0.20656388,0.30585018,0.053822156,-0.025712663,-0.6685455,-0.021109462,-0.14811087,-0.2656707,-0.19146413,-0.36048138,0.5108147,0.075596556,0.30015507,-0.20221819,-1.0107796,0.21421377,0.1767503,-0.38647783,-0.6007256,0.46715608,-0.05833595,0.9318182,0.05824247,0.19467886,0.40039435,-0.60179085,0.15040801,-0.33730182,-0.32265696,-0.43331853,0.027788676 -674,0.6683114,-0.07156528,-0.7558418,0.06634938,-0.2201003,0.090909906,-0.25051656,0.34164783,0.32468817,-0.20051777,-0.2222095,-0.09405451,-0.08955228,0.31886023,-0.10471034,-0.9200392,-0.002502136,0.14615957,-0.46946323,0.9327378,-0.2986895,0.3742653,-0.09069976,0.36660722,0.31413028,0.3751255,0.19944371,0.015380353,-0.12730993,-0.4060992,-0.0025748834,-0.06740898,-0.82633656,0.17527722,-0.1867844,-0.44752988,0.049887795,-0.35403752,-0.46740755,-0.8436753,0.36302066,-0.8744765,0.4287072,-0.035201643,-0.23166446,0.2141803,-0.13344193,0.2978323,-0.122511506,-0.17391278,-0.046839166,0.043234337,-0.026296042,-0.14842613,-0.24203104,-0.51425976,-0.57987,-0.0025137477,-0.45525074,0.008625294,-0.27443475,0.11852012,-0.43807733,0.011820029,-0.19315952,0.2828364,-0.45251283,0.08698843,0.29553816,-0.0011297365,0.064393215,-0.53847796,-0.1792634,-0.25057033,0.20141101,-0.19006075,-0.13315882,0.3434256,0.27836433,0.23734117,0.1381223,-0.22292519,-0.2983782,-0.25145325,0.17155725,0.35920522,-0.18348098,-0.4273276,-0.35944557,-0.2449614,0.30120695,0.32983863,0.28694373,-0.06216384,0.06414787,0.06561177,-0.3422246,0.6142656,0.5654068,-0.4526271,-0.44654322,0.45682466,0.65947455,0.42123756,-0.14081797,-0.0445065,-0.0029799037,-0.35537937,-0.19536154,0.13067307,-0.20284148,0.6662006,-0.17877401,0.12513922,0.58966374,-0.46670637,0.13949446,0.0760453,0.058023077,-0.39060447,-0.3040525,-0.24519949,0.30480865,-0.5632053,0.27557793,-0.2731394,0.70402694,0.19647308,-0.5761108,0.27709925,-0.6840605,0.102676295,-0.15654586,0.6309412,0.7442482,0.3224623,0.18226679,0.85186607,-0.35880807,-0.02263236,-0.10012365,-0.38005427,0.13102698,-0.20480861,-0.07376226,-0.48819622,0.08159765,0.21101458,0.048183758,0.09795076,0.37695512,-0.47445,-0.3427362,0.1273095,0.5944175,-0.23681338,-0.22560668,0.7963112,1.2489924,1.1236285,0.014211294,1.2966213,0.2057498,-0.19594437,-0.019197613,-0.17600335,-0.90165305,0.19996631,0.31732813,-0.6266148,0.5410594,0.24532573,-0.06799016,0.32376012,-0.30768302,-0.060680974,-0.09780831,0.3482909,0.01745812,-0.18983865,-0.278769,-0.11913941,-0.04520217,0.048486978,0.31822082,0.32822308,-0.35532606,0.2927749,0.22031046,1.2540207,-0.10538288,0.02151451,-0.015549782,0.4968382,0.3097457,-0.19997291,0.06628787,0.41527125,0.34025475,0.058037996,-0.59729373,0.023092017,-0.46459362,-0.45215693,-0.10491627,-0.3239734,0.013840385,0.10027959,-0.15627141,-0.19682483,-0.13253443,-0.022834122,0.54361355,-2.5937464,-0.19554536,-0.16295813,0.14513007,-0.3306696,-0.33842936,-0.09087149,-0.60383964,0.36928663,0.22630645,0.51076216,-0.6603091,0.36661908,0.5052946,-0.7661657,-0.0025764804,-0.6850669,0.053994756,0.024920657,0.49638036,-0.14937307,0.03668512,-0.018693805,0.16478857,0.48788777,0.3268422,0.084206134,0.29894775,0.5087833,-0.07204058,0.34724978,0.14960478,0.5574765,-0.21515357,-0.225414,0.38988173,-0.28095365,0.81937313,-0.26796484,0.11155913,0.5449633,-0.29902118,-0.8772952,-0.6109387,-0.28620303,1.1406802,-0.33468008,-0.6227394,0.056198593,-0.06901089,-0.373667,-0.16079153,0.4402151,-0.2625039,-0.111995876,-0.50383806,0.016241074,-0.13585986,0.21425788,-0.057590634,0.1654901,-0.41911158,0.73309296,0.035577375,0.34778324,0.26946792,0.29693946,-0.18391041,-0.42087492,0.07985697,0.9467611,0.40147653,0.038758975,-0.40775165,-0.22448468,-0.400802,-0.15015247,0.2261173,0.59689534,0.723546,-0.2242444,0.024916293,0.36823842,0.24835175,0.074725464,-0.055662483,-0.37756172,-0.2672899,-0.30104178,0.60642684,0.8060681,-0.23447943,0.38226274,0.024493909,0.16856103,-0.26247993,-0.4860499,0.9223674,0.94655895,-0.2567693,-0.22671048,0.6016386,0.4368608,-0.5347002,0.68230027,-0.7098225,-0.18092348,0.42797294,-0.048860114,-0.21286464,0.047152292,-0.30114135,-0.03908831,-0.7970741,0.30877468,-0.19007576,-0.19145012,-0.47696432,-0.17294256,-2.72431,0.25362232,-0.21848385,-0.119742356,-0.27837804,-0.040424973,0.22364146,-0.6504324,-0.6988616,0.3543227,0.19958235,0.6756703,-0.19878392,0.18656768,-0.2019641,-0.43900236,-0.5733744,0.20430522,0.059912045,0.36979508,-0.25525436,-0.33896288,-0.02025075,0.04122224,-0.40750298,0.1129781,-0.32110298,-0.3356218,-0.20385341,-0.39938045,0.02651374,0.68843365,-0.35748902,0.05034579,-0.25898257,0.05164678,-0.11853055,0.17266344,0.008018658,-0.01478076,0.07687732,-0.014470766,-0.0046355426,-0.34588706,0.4252346,0.124234445,0.5216053,0.30387318,-0.23406129,0.10394654,0.43165183,0.62166977,0.07918047,0.91894746,0.36806914,-0.17059302,0.27146852,-0.096028484,-0.14848004,-0.6490338,-0.24144088,-0.17877878,-0.5076353,-0.6080594,-0.16734576,-0.20906945,-0.829853,0.39107326,0.15498978,0.6031682,-0.023504967,0.4415888,0.4920435,-0.28289938,0.11836237,0.009900074,-0.16563259,-0.4017059,-0.32027677,-0.61689544,-0.30718458,0.5045356,0.4966886,-0.47547033,-0.15945493,0.053195637,-0.42595658,0.15322311,0.10537216,0.07249651,-0.11820801,0.48210725,0.15226138,-0.51780176,0.6370881,-0.1585591,0.022544095,-0.72374266,0.11109382,0.5988632,-0.5893531,0.39859807,0.372425,-0.03277889,-0.05442487,-0.5903118,-0.08128264,-0.0128137665,-0.33825096,0.31452328,0.43532833,-0.86167794,0.33099964,0.03454068,-0.23100841,-0.6378711,0.8095031,-0.020529823,-0.092291325,-0.34272408,0.45845175,0.31315055,0.13028693,-0.2104903,0.34209725,-0.3285796,0.055932086,0.22710045,-0.24077184,0.37267807,0.10259069,-0.3745794,-0.75349885,0.28608784,-0.5655188,-0.28244802,0.30211195,0.026563695,0.035411205,0.19260477,0.49659005,0.30871382,-0.3985788,0.1749285,-0.07149408,-0.2750647,0.6344052,0.45545444,0.6901676,-0.41076365,0.6638524,0.10990253,-0.12535411,0.25679985,0.008473863,0.43340942,0.023549093,0.42150506,0.4300762,-0.16651194,-0.10721153,0.5934704,0.25692132,0.2849664,0.12275803,-0.069103085,0.17708234,0.15476437,0.31430116,0.14094333,-0.71273404,-0.07833377,-0.18868794,0.120922424,0.65595984,0.1887176,0.16418046,-0.025713623,-0.17167379,-0.022440305,0.019477911,-0.14823048,-1.226262,0.28228027,0.24281545,0.86101794,0.47259364,-0.21932952,0.12377175,0.2735531,-0.1680817,0.18507354,0.44686362,0.025475403,-0.46056828,0.5367644,-0.6296986,0.40742812,0.04557203,0.12932684,0.18138339,-0.041957896,0.38836208,1.0430838,-0.36869183,0.015291467,-0.25938594,-0.29567865,0.10285657,-0.3412366,0.26153037,-0.5066166,-0.2993497,0.6740341,0.47399864,0.32561728,-0.25789902,0.012099278,-0.06693756,-0.2532843,0.10493225,-0.12499008,0.22419886,-0.082913995,-0.55794215,-0.25601497,0.59608907,-0.25825277,0.11136516,-0.1473583,-0.26153997,0.25189817,-0.13272159,0.14432849,0.09214294,-0.876973,0.10389645,-0.059748325,-0.43984652,0.47122112,-0.048237424,0.19005497,0.1831535,0.02741872,-0.08702152,0.45452574,0.017376324,0.73811597,-0.04948637,-0.18433084,-0.45300928,0.25693452,0.15627056,-0.20480485,0.10432271,-0.103173345,0.22425187,-0.53145885,0.47028008,-0.020114943,-0.42653838,-0.2604625,-0.22219448,-0.081379406,0.51900005,-0.1348821,-0.17262065,-0.12031084,-0.20897871,-0.22357355,-0.15315706,-0.10989977,0.10248408,0.26303768,-0.22281201,-0.1647685,-0.18409066,-0.084061116,-0.018045425,0.08718521,0.19418176,0.45811924,0.13518716,-0.46849266,-0.3716801,0.28250352,0.47131315,-0.13254328,-0.21712454,-0.27509388,-0.59540355,-0.52135056,0.38847756,-0.07388361,0.39411172,0.022113904,-0.15957825,0.5776729,0.19256829,1.1866695,0.1065562,-0.39018336,0.0465837,0.8131586,-0.07130644,-0.1730812,-0.44880256,1.1450882,0.46499392,-0.29490316,-0.17707008,-0.30701947,-0.28900668,0.1397234,-0.2865859,-0.04946941,0.11849115,-0.4908924,-0.12936518,0.042837545,0.3285716,0.03038075,-0.02858468,-0.049383,0.4439179,0.30779305,0.40777364,-0.5824035,-0.530065,0.356542,0.07827604,-0.056146633,0.33542976,-0.3259094,0.25213474,-0.72274023,-0.00084931153,-0.35948256,0.19099362,-0.19884223,-0.47449198,0.14682613,0.16857499,0.5136141,-0.44163418,-0.60283226,-0.30183333,0.3089781,0.4042294,0.25638315,0.6028315,-0.1776492,-0.030681066,-0.1824698,0.5040583,1.0854542,0.020118931,-0.08165995,0.37997308,-0.64078933,-0.69717914,0.18594521,-0.4791299,0.48191848,-0.21606816,-0.30672863,-0.5899268,0.27594984,-0.14466506,0.09834719,0.11678315,-0.8175685,-0.32324496,-0.018029528,-0.08782595,-0.15651833,-0.23470068,0.16872793,0.9997259,-0.32745907,-0.35291162,0.0067026266,0.15534739,-0.15944733,-0.63541853,-0.13791305,-0.2381786,0.3295107,-0.08924762,-0.27139616,-0.07654216,0.16838337,-0.52007955,0.23550153,0.045645762,-0.30005154,0.1005164,-0.25267705,0.19013499,0.76098275,-0.27694324,0.13324761,-0.42514113,-0.5053862,-0.653426,-0.5488391,-0.03845948,0.05124103,0.11261185,-0.5106365,0.111266516,-0.1884923,0.107752085,0.047687728,-0.39870596,0.50127625,0.15900753,0.32865128,0.03247853,-1.1919156,0.043816913,0.06479373,-0.09954214,-0.73170537,0.54614395,-0.3030919,0.73051256,0.20111394,0.03817649,0.23013978,-0.66922355,0.0014541248,-0.259843,-0.016572842,-0.7064455,0.34036306 -675,0.30494738,0.006913295,-0.6487917,-0.09470487,-0.103337795,-0.0056555155,-0.104893684,0.23501661,0.09470206,-0.4423706,-0.06192624,-0.061109625,-0.05609371,0.2742406,-0.18928453,-0.57099986,0.03269508,0.16728012,-0.3622845,0.21713367,-0.50908035,0.39106706,-0.0667417,0.1728421,-0.14980286,0.21720757,0.2516029,-0.1892007,0.046757605,-0.14729084,0.07320767,0.2849971,-0.5437577,0.38771945,0.044703897,-0.283888,0.07205827,-0.37757793,-0.44631073,-0.5747566,0.36122316,-0.7614721,0.4507567,0.24405307,-0.10913421,-0.044124402,0.1315361,0.2897433,-0.3060802,0.17440858,0.27159256,-0.16657053,-0.0896482,-0.22268552,-0.1497578,-0.1653566,-0.46898365,-0.02218419,-0.5685999,-0.06674092,-0.22812112,0.23325548,-0.37133268,-0.056982137,-0.26282027,0.26496178,-0.3904751,0.0053549362,0.23159912,-0.20346902,0.19463524,-0.3866655,-0.10736123,0.00017051055,0.19798444,-0.31047776,-0.18271974,0.24228351,0.13165864,0.4431977,0.041122913,-0.13424726,-0.18321824,-0.15129104,0.19821683,0.57762086,-0.24976079,-0.31578362,-0.15938625,-0.08755307,-0.055900134,0.21832587,-0.16292939,-0.3866202,0.061358433,-0.026049849,-0.1046033,0.27285445,0.61364335,-0.16933301,-0.17503351,0.37788233,0.4277612,-0.06954626,-0.027176132,0.18576966,0.13437127,-0.5393686,-0.36330283,-0.008230984,0.013694293,0.38824132,-0.050574765,0.40277487,0.73044306,-0.25448307,-0.055760648,0.12964112,0.08507312,-0.017334122,-0.30622783,-0.16879636,0.3054484,-0.4338142,0.102252826,-0.03825509,1.0105271,-0.038650237,-0.77626455,0.31362092,-0.49790478,0.06054358,-0.18379626,0.6717543,0.541359,0.40253797,0.05540822,0.84795976,-0.5585563,0.10490727,-0.007094035,-0.5826646,0.056073748,0.08909508,-0.046488386,-0.4066551,-0.18883258,0.27887446,0.06060206,0.040249083,0.2761235,-0.5626818,-0.088109955,0.038324155,0.75369805,-0.33313575,-0.025701366,0.45340538,1.0838838,0.7504171,0.08122574,1.0375348,0.24677035,-0.15931202,0.10590304,-0.24874347,-0.8823735,0.25655052,0.21861127,-0.3690255,0.12942372,0.17492335,-0.16889097,0.29112095,-0.4656873,-0.01744375,-0.21843848,0.29605606,-0.09989696,-0.1392708,-0.39202303,-0.15694387,-0.0013665227,-0.026851106,0.26253217,0.3682986,-0.31081533,0.12794198,0.050664067,1.5377138,-0.098715715,0.4099774,0.13092197,0.39776427,0.27965865,-0.009602987,-0.19183773,0.20885612,0.4094969,0.09387486,-0.5835442,0.16652346,-0.16079132,-0.54532796,-0.13085972,-0.28617096,-0.025733653,-0.23225117,-0.39518827,-0.110567205,-0.073979065,-0.4967947,0.4177522,-2.8215358,0.037011545,0.087816864,0.45911163,-0.1770387,-0.17722987,-0.21931149,-0.36492187,0.36491066,0.38408154,0.44210082,-0.56409645,0.35910195,0.610405,-0.26740542,-0.15525046,-0.5958876,0.18784057,-0.21763809,0.14000167,0.21301924,0.012737072,-0.11433887,-0.08134783,0.2970393,-0.2185854,0.08516429,0.27880928,0.3808382,0.15387648,0.37412736,0.029906806,0.504518,-0.5523959,-0.2508607,0.27612376,-0.4138169,0.1585261,-0.15568678,0.072385326,0.23899852,-0.40291178,-0.8749409,-0.53607345,-0.23195532,1.0955523,-0.25638598,-0.25416097,0.31120232,-0.14404172,-0.29178804,0.045354407,0.48426387,-0.23732,0.07974212,-0.7892276,0.15023616,-0.27592248,0.41036522,-0.04676831,-0.02244139,-0.5130224,0.4486952,-0.16157366,0.547098,0.3928307,0.16093346,-0.34732157,-0.5391842,0.12382461,0.93007416,0.1283913,0.18701823,-0.067392536,-0.043064874,-0.09771101,-0.06723714,0.1403502,0.6215967,0.77034706,0.034924824,0.15147324,0.352245,0.065280296,-0.006283934,-0.053975064,-0.40909517,-0.15632662,-0.032602426,0.58058524,0.6929171,-0.27468726,0.30439478,-0.14602658,0.36973298,-0.46372396,-0.3469319,0.47392827,0.64643604,-0.11574166,-0.2433208,0.6974869,0.5780337,-0.2629948,0.3884199,-0.6851504,-0.48073402,0.3312686,-0.20586263,-0.48633698,0.17695172,-0.35326985,0.13493967,-0.9734945,0.4526442,-0.22960673,-0.6294404,-0.49824575,-0.1948136,-3.6806047,0.20646736,-0.36139843,0.0028726505,-0.0040429556,0.10043047,0.25863403,-0.442474,-0.3349945,0.07701793,0.0709416,0.59248745,-0.006797706,0.09778369,-0.25021175,-0.054720815,-0.15203789,0.15899399,0.18644527,0.1596768,0.16857202,-0.5066641,-0.07888493,-0.19680335,-0.28699887,0.015411358,-0.5282698,-0.29610795,-0.0883716,-0.6703562,-0.536942,0.63007486,-0.44220206,-0.014029219,-0.3006803,0.09701434,-0.12613046,0.5405155,0.034543507,0.13461111,0.024474965,-0.16442434,-0.22457303,-0.22229253,0.46647856,-0.1463472,0.366707,0.4682639,-0.3100868,-0.09140411,0.46292418,0.4695948,-0.030102115,0.7484726,0.46261948,-0.13425292,0.25710064,-0.33699954,-0.18409,-0.47570598,-0.4316511,-0.074231535,-0.4250045,-0.4848058,0.047830287,-0.49488437,-0.77457684,0.6961746,0.013638964,0.05267001,0.018408675,0.11622949,0.32522207,-0.15261668,-0.24513772,-0.039923247,-0.06966947,-0.2799096,-0.29841238,-0.63700145,-0.44308996,0.0031330402,1.0650246,-0.19270478,0.04981212,0.07179784,0.00042588895,-0.14553915,0.13390891,0.1369789,0.38295788,0.4521254,-0.18505083,-0.5266065,0.53445584,-0.42203522,-0.17587644,-0.60457885,-0.048701745,0.66003215,-0.83414364,0.5841515,0.5061254,0.21775158,0.034757156,-0.5602173,-0.24177605,-0.041098516,-0.12005973,0.42669475,0.15603742,-0.8537761,0.48212045,0.32443824,-0.19762094,-0.70261836,0.44250357,-0.04003004,-0.28517452,0.024226364,0.34337145,-0.31601304,-0.03304825,-0.12494314,0.20681293,-0.3347883,0.3613091,0.05813769,-0.1977846,0.55259705,-0.2841088,-0.025755694,-0.4752308,-0.009655742,-0.6431592,-0.18217021,0.13820037,-0.055349715,-0.032682993,0.31026104,-0.22347978,0.45039588,-0.39320385,-0.022813309,0.061563935,-0.2958021,0.3123824,0.41319656,0.31740424,-0.42008317,0.6549714,0.0008504918,-0.05994767,-0.2500745,0.33661896,0.51265806,-0.046144146,0.617113,-0.20907107,0.0065133204,0.46051556,0.8112516,0.18681921,0.4554765,0.10984021,-0.010784548,0.16407968,0.20877872,0.22420979,0.08664779,-0.41430628,-0.024213117,-0.19187862,0.30337474,0.37656352,0.24551283,0.5922007,-0.19431199,-0.27065042,0.08794626,0.38735887,-0.082567364,-1.0477952,0.5955178,0.18348724,0.5477501,0.46207073,0.16214778,-0.018230494,0.43578073,-0.089237794,0.20969182,0.13260804,-0.100321665,-0.42095703,0.5764767,-0.60521996,0.4689874,-0.18616462,0.014331176,0.14359416,-0.12888804,0.43187407,0.7268032,0.15955965,0.12587208,0.06065299,-0.36641327,0.062249936,-0.31025416,0.36974204,-0.63336533,-0.24566159,0.6441174,0.57994866,0.26134002,-0.041325312,-0.10573928,-0.01565703,-0.012239981,-0.027503747,-0.089716405,0.16680548,0.0881067,-0.73382366,-0.24316296,0.56643164,0.1397821,0.06043958,0.0541091,-0.18697943,0.37774694,-0.338695,0.09267081,-0.10288207,-0.45228788,0.2212345,-0.25981468,-0.32466424,0.29198855,-0.42661873,0.42004043,0.17030114,0.0012475207,-0.4056219,0.3025079,0.18125564,0.6778008,-0.04883788,-0.23877107,-0.39312938,0.14693417,0.26307854,-0.2620344,-0.3235904,-0.3867845,0.004015136,-0.50905484,0.30066374,0.09313191,-0.21263434,0.24686076,-0.22237055,-0.0841593,0.58535933,0.0015725952,-0.15380031,0.09692742,-0.2884116,-0.23989886,-0.044177644,-0.2552993,0.25112686,0.24626073,0.060927026,0.04564545,-0.02691799,-0.24486431,0.13610281,0.088457696,0.3043714,0.35884666,0.2331747,-0.21410751,-0.06157277,0.09064979,0.6334423,-0.07362418,0.050590534,-0.27799237,-0.3895015,-0.142884,0.04741867,-0.19251591,0.27141786,0.17132053,-0.25090328,0.7332496,0.14693877,0.96435004,0.14610612,-0.14597903,0.047002032,0.47853068,0.10481803,0.019481558,-0.50343025,1.0738251,0.6595955,-0.24112016,-0.29340103,-0.1993944,-0.12639284,0.08300638,-0.20003244,-0.46443802,0.047041498,-0.68099785,-0.21796241,0.22090112,0.27461845,-0.020872382,0.041018017,-0.0528362,0.15137316,0.052898664,0.044301264,-0.6065358,0.01617366,0.28388196,0.41853082,0.09002623,0.14399722,-0.46304944,0.42806637,-0.55880386,0.06632879,-0.26950538,0.13692938,-0.22342494,-0.25525343,0.11557046,-0.097532116,0.4475922,-0.21577364,-0.011710034,-0.11585139,0.37364197,0.2741769,0.23330215,0.8342489,-0.24953564,0.06926091,0.08091591,0.57592905,0.9504833,-0.40985647,-0.1815842,0.5241158,-0.22134253,-0.7764518,0.18724276,-0.35623005,0.014171949,-0.17224771,-0.4496743,-0.25328365,0.34143984,0.07729583,0.10547613,0.076419786,-0.56927425,-0.048150145,0.2227609,-0.14540012,-0.1956577,-0.25037143,0.22971974,0.7757918,-0.2107095,-0.19711438,0.1450264,0.34029076,-0.1879079,-0.52170044,0.07456251,-0.3280821,0.24907741,0.14645094,-0.14745128,-0.15487115,0.0062988903,-0.32404533,0.2979506,0.27722505,-0.23134258,0.11096488,-0.21810254,-0.10113049,0.6941775,-0.2580546,-0.05972666,-0.65584236,-0.46781904,-0.9363404,-0.248415,0.4778942,0.09530052,-0.08035718,-0.41693813,-0.07780607,0.08369655,-0.20959836,-0.26805252,-0.21852449,0.45336708,0.005892671,0.3546354,-0.06923768,-0.9248848,0.091616884,0.19561052,-0.40655443,-0.61798567,0.603263,-0.16061017,0.77536213,0.026070787,0.038957044,0.43785605,-0.5767994,0.1057492,-0.24809025,-0.12012766,-0.9123026,-0.052107614 -676,0.20346159,0.043069012,-0.48208904,-0.052563842,-0.22653133,0.35637543,-0.33322674,0.06504212,0.22145955,-0.42950863,0.20222962,-0.059917845,-0.19776814,-0.06561917,-0.10160583,-0.48477185,0.088746265,0.06531774,-0.3016007,0.48758963,-0.44243246,0.33827126,-0.017340511,0.11853083,-0.27804878,0.2521718,0.24566114,-0.24427938,-0.16359115,-0.20855355,-0.02769722,0.18581231,-0.36312175,0.4101242,-0.060616586,-0.19452482,0.20740518,-0.23697051,-0.20603508,-0.44943735,0.034124617,-0.6339958,0.33015913,0.020815361,-0.2765043,0.38577425,0.15595043,0.027631382,0.040224753,-0.01768757,0.14541733,-0.4708798,-0.24734536,-0.39278972,-0.48199952,-0.5440333,-0.37622434,-0.10241479,-0.5900286,-0.31322426,-0.29211038,0.23571919,-0.32991308,-0.2923174,-0.08883393,0.27062437,-0.40677333,-0.04412815,0.09243725,-0.33076382,0.19632849,-0.7505573,-0.12856664,0.010970684,0.007284304,0.1311074,-0.012340706,0.32016176,0.10452208,0.49164963,-0.018075872,-0.21822041,-0.50293165,-0.3083392,0.2736554,0.39938825,-0.23287353,0.12043981,-0.20503001,-0.07267678,0.2817236,0.32401255,0.12673305,-0.14078118,0.010554073,-0.09166114,-0.3290636,0.21088655,0.42958653,-0.46950623,-0.02103012,0.4007595,0.37497655,-0.025097057,-0.31356812,-0.00794635,-0.16159946,-0.20467764,-0.17220981,0.126777,-0.03734836,0.32059813,-0.10688779,0.24308217,0.54408187,-0.10396954,0.058880776,0.026598662,0.053071566,0.24470878,-0.28177205,0.06912401,0.25259757,-0.5748671,0.01661909,-0.25792524,0.456558,-0.17926617,-0.63737273,0.28171873,-0.29410195,-0.045551974,-0.017917272,0.53410155,0.5258569,0.55747956,-0.13769445,0.74787945,-0.4464631,0.021157324,-0.21199396,-0.018144138,0.1786832,0.06300393,0.13664894,-0.48206708,0.1454192,0.1531747,0.05913563,0.033508763,0.3748241,-0.34728172,-0.1285908,0.41891253,0.8031242,-0.26942632,-0.026728861,0.3958882,1.2511177,0.7885973,0.027264904,0.88426036,0.20985249,-0.17918696,-0.14555204,-0.1913197,-0.55964303,0.0570346,0.29204595,0.538184,0.2743225,0.0028282963,-0.09206672,0.2645228,-0.16197842,-0.23589441,-0.13968009,0.41863286,0.18088391,-0.013204031,-0.299223,0.05427642,0.22157636,-0.04592854,0.17706427,0.26636246,-0.10234112,0.42362225,0.009493202,1.0112957,-0.076740116,0.14915211,0.17401057,0.27743542,0.22050786,0.19895901,0.09844285,0.5972004,-0.03437377,-0.053419802,-0.45727456,0.061832882,-0.20481771,-0.59361935,-0.09768124,-0.30783135,-0.18076563,-0.07954032,-0.14258817,-0.19797,-0.04556703,-0.48098737,0.29558164,-3.025577,-0.025128514,-0.07397397,0.18337575,-0.1818842,-0.19153866,-0.066401824,-0.24605708,0.75757146,0.31951383,0.33879095,-0.28953847,0.23511389,0.5387864,-0.38622296,-0.15712552,-0.49350518,-0.03929569,-0.1726613,0.59614706,-0.023025893,-0.30937794,-0.102935374,0.048235364,0.387283,0.095176965,0.16292405,0.31224754,0.29471976,-0.087188244,0.14178893,-0.08171085,0.48498374,-0.3157231,-0.16099232,0.2651257,-0.34875965,0.33712274,-0.3130768,0.17923848,0.30854973,-0.09984064,-0.3679533,-0.28892183,-0.10181306,1.3254973,-0.30167747,-0.603129,0.22274832,-0.063371435,-0.17789178,-0.016224688,0.3460366,0.009070776,0.1494681,-0.515647,0.16803701,-0.12642303,0.18834482,-0.09831607,0.16162124,-0.48206654,0.52358115,-0.073128775,0.53220063,0.5434134,0.29653513,-0.24129927,-0.25521606,-0.0013942011,0.60293025,0.3987798,0.05889923,-0.12540118,-0.18089288,-0.010468738,-0.30864665,0.2183196,0.4228442,0.5975698,0.0038755313,0.09878507,0.2866686,-0.22889343,0.079104446,-0.06066725,-0.32373816,-0.08053222,0.18544501,0.36328503,0.41418824,0.0042748414,0.2960511,0.13535263,0.42211068,-0.16752386,-0.37818378,0.29087582,0.4652602,-0.25073248,-0.21237126,0.556552,0.5630536,-0.19096714,0.52243024,-0.63598317,-0.4416843,0.47081572,-0.23049095,-0.46657217,0.024275722,-0.4091333,0.083410606,-0.7228326,0.23245206,-0.351872,-0.50925684,-0.6561074,-0.13387944,-2.7164624,0.08329633,-0.38410327,-0.060329918,-0.0985623,-0.02804397,0.27762556,-0.50821376,-0.42160282,0.15949118,0.12843543,0.4085608,-0.073726535,0.04743453,-0.40458485,-0.25589478,-0.06439574,0.400484,-0.09967508,-0.061161265,-0.2408325,-0.39427692,-0.0076264106,-0.15660846,-0.14315712,0.016656598,-0.32298613,-0.14381975,-0.1273867,-0.2593894,-0.06586513,0.52105266,-0.49353272,-0.13610236,-0.280106,0.12491135,0.09689696,0.08311102,0.101534955,0.19971758,0.22821885,-0.035364307,-0.009327058,-0.3654198,0.20777915,0.11410044,0.17592219,0.5792609,-0.07061359,-0.028165098,0.45745692,0.3115149,0.07282844,0.731707,0.1752784,-0.13477163,0.33299482,-0.30725688,-0.13760602,-0.5439982,-0.25910494,-0.0043527465,-0.3622873,-0.6200979,-0.06486114,-0.3030844,-0.68643135,0.51819503,0.13736218,0.20775734,-0.17666599,0.40495935,0.38292456,-0.2164889,-0.036125265,-0.07376619,-0.124203846,-0.19363883,-0.3154999,-0.8561436,-0.42838377,0.21066082,0.7807957,-0.18043023,-0.14175254,0.23048997,-0.07255341,-0.14170514,0.3174201,0.30202192,0.13779664,0.25736278,0.23394962,-0.5570861,0.5008504,-0.09413287,0.005632825,-0.44369197,0.054499187,0.5142447,-0.5858158,0.30884686,0.54546005,-0.0127091175,-0.12987351,-0.6853327,-0.10402218,0.18644068,-0.3290637,0.48377597,0.056601204,-0.8035424,0.53099203,0.15653376,-0.24205437,-0.6680399,0.26570725,-0.041605376,-0.11849532,0.08919494,0.39494172,0.17599933,0.029037014,-0.027550027,0.22433512,-0.3577982,0.35024822,0.05779355,-0.14063613,0.55891556,-0.13947317,-0.11501406,-0.6872059,-0.0068405606,-0.40386432,-0.19742674,0.348785,-0.013621323,-0.0030572684,0.25664294,0.010294041,0.48407042,-0.31751347,0.16679743,-0.1593565,-0.32476962,0.35328975,0.444946,0.4417795,-0.31213123,0.5887263,-0.13147861,-0.07932189,-0.041533664,0.0041816263,0.503952,0.092070304,0.35142732,-0.02143772,-0.121091396,0.20124,0.7716148,0.22724058,0.25761038,0.101456136,-0.17937809,0.47128436,-0.035573386,0.020761399,-0.12547764,-0.42414856,-0.14505233,-0.11423315,0.24010831,0.32830143,0.20734368,0.7167977,-0.11754075,0.037057456,0.07411211,0.17390627,0.12890099,-0.33380708,0.25111282,0.21515237,0.58247185,0.48421097,0.30147082,0.18020424,0.5699954,-0.26872844,-0.022003613,0.38356176,-0.10076984,-0.3214583,0.52637976,-0.5445144,0.36967528,-0.19444564,-0.025126029,0.17975211,0.023003966,0.49459207,0.85079,-0.16313177,0.08412254,0.07079804,-0.3678566,0.18570213,-0.12586778,0.0944083,-0.06739667,-0.2933085,0.47389334,0.22047243,0.3380614,-0.11949715,-0.08713882,0.34224182,-0.09288584,0.43658316,-0.024958227,0.06393113,-0.18365757,-0.30189383,-0.38006142,0.47978914,0.050068058,0.18914124,0.10798957,-0.10503256,0.26816344,-0.09980441,-0.17280585,0.16625303,-0.34800422,0.2021932,-0.060179688,-0.5911813,0.54582715,-0.0047996193,0.17956385,0.057572864,-0.024748445,-0.13891259,0.14852703,0.0902397,0.4355805,0.028677478,-0.24974447,-0.16134614,-0.31774867,0.052979667,-0.1785845,-0.062065963,-0.0968163,0.26946804,-0.6803736,0.31208742,-0.49387267,-0.0865885,0.15658917,-0.4008518,-0.0362384,0.31313112,0.015542293,-0.15303671,0.18163908,-0.09721348,-0.49219665,-0.35268387,-0.36886817,0.09046849,-0.31631574,-0.032657005,-0.2995785,-0.24824613,-0.14515033,0.22919147,0.043923184,-0.095587865,0.28962418,0.036212876,-0.46768615,-0.05880662,0.14409402,0.28281948,-0.17292026,0.2699666,-0.0051728636,-0.45708564,-0.39319092,0.17608795,-0.113111064,0.29766616,0.10423183,-0.46379825,0.7892918,-0.21083863,0.7832257,-0.05102635,-0.3973176,-0.06996818,0.44569722,-0.1588532,0.005373027,-0.2604872,0.8932131,0.7292038,0.031110862,-0.13751431,-0.49901015,-0.043487437,0.38214874,-0.23686174,-0.10919866,-0.12371953,-0.58347225,-0.26235667,0.20235597,0.1803043,0.09667853,-0.08810265,0.030656569,-0.08440078,0.37121636,0.11572716,-0.47891644,-0.14799239,0.4660976,0.12940873,-0.069480285,0.20495173,-0.24337229,0.3130495,-0.65969986,0.23920652,-0.3838815,-0.094065435,-0.14326364,-0.15240312,0.10414946,-0.12375434,0.16131714,-0.09608534,-0.3736477,0.051424053,0.087436125,0.13684136,0.3505506,0.56447864,-0.17748988,0.0478027,-0.1214838,0.4538948,1.0501447,-0.17878443,-0.14872153,0.2038573,-0.38358426,-0.7419558,0.15566641,-0.5418744,0.1048485,-0.073789544,-0.3764608,-0.24871387,0.08406195,0.039525643,-0.07020205,-0.04942538,-0.37300617,-0.14193776,-0.13314588,-0.3313177,-0.12220247,-0.022647634,0.06896675,0.7868507,-0.25806218,-0.08060556,-0.078663155,0.406209,-0.38151598,-0.61988497,0.2599022,-0.24708986,0.3126127,0.30149892,-0.21119127,0.12639016,0.1463127,-0.49980068,0.0878272,0.42743087,-0.28470936,-0.09064569,-0.41285247,0.29564333,0.5098629,0.032199915,0.01704146,-0.40726417,-0.55506825,-0.6341671,-0.30475536,-0.043854143,0.11762758,0.059159577,-0.3605886,0.15985402,-0.2899274,-0.094235614,-0.045414183,-0.46089244,0.3654409,0.21462926,0.39273617,-0.3998772,-0.6130321,0.04231862,0.08087593,0.018357275,-0.43560702,0.37346503,-0.24886008,0.7494708,0.055317663,-0.17112225,0.2092053,-0.5674744,0.3334339,-0.34998786,-0.25757757,-0.489693,-0.07785864 -677,0.19442262,-0.04108442,-0.46688086,-0.23837854,-0.37609437,0.16089624,-0.40442947,0.17799619,0.31556076,-0.3273568,-0.0031775713,0.02117629,-0.13898396,0.41605887,-0.15197569,-0.72523504,0.01266247,0.063675635,-0.7174006,0.48305163,-0.6087035,0.25644264,0.06431642,0.3814479,-0.017456468,0.3111042,0.15002395,-0.039230395,-0.035772227,-0.14404014,0.03718304,0.286758,-0.6715116,0.39396682,-0.067792386,-0.17471406,-0.14250818,-0.41229534,-0.141736,-0.7204637,0.13045149,-0.49822107,0.4389864,-0.23357473,-0.388328,-0.061971966,0.07350621,0.26949698,-0.11672942,0.049958125,0.26369023,-0.20180123,-0.14906403,-0.10979537,-0.1945533,-0.5052434,-0.42205185,0.011472656,-0.57151115,-0.24244808,-0.15228271,0.26963457,-0.29383805,-0.009032655,-0.17499058,0.50990546,-0.31037953,0.035658,0.19595848,-0.21424897,0.06961419,-0.732293,-0.16809177,-0.0068101725,0.42918387,-0.035749946,-0.15254502,0.18927594,0.32184246,0.55464846,0.1511905,-0.26810265,-0.2549478,-0.15480609,0.24330981,0.38437885,0.040464036,-0.1743372,-0.2795873,-0.17685445,0.15917717,0.08596417,0.041361444,-0.41515055,0.022349544,-0.019746363,-0.21007039,0.34117106,0.39446145,-0.3292002,-0.10961743,0.39962843,0.44503802,0.2816692,-0.27424133,0.26372054,-0.08895067,-0.43130475,-0.28992364,0.13836965,0.057386145,0.33942622,-0.17478006,0.35789356,0.63233936,0.022993365,0.06911289,-0.09788821,-0.09531277,0.013741557,-0.30221787,-0.08928373,0.09599959,-0.40582693,0.00707377,-0.21957538,0.66149414,0.0061332346,-0.84119886,0.32859632,-0.53170496,0.0973049,-0.09427958,0.6137621,0.9921881,0.35570204,0.06464706,0.73567706,-0.39288533,0.09500327,-0.099144086,-0.31010216,0.08085516,-0.1206235,0.20779486,-0.549707,0.014584827,0.047683287,0.06694857,-0.045823462,0.23250893,-0.44829655,-0.11120386,0.10911974,0.6605381,-0.2821742,-0.051517718,0.84141815,1.0094937,0.9915642,0.18558213,1.3864677,0.3125214,-0.0471244,-0.032625604,-0.28822625,-0.49521083,0.249082,0.3408526,0.5955475,0.3270481,0.031800892,0.071644105,0.52150625,-0.21417984,-0.07169638,-0.11850597,0.30415666,0.04251059,-0.22608414,-0.33380127,-0.21283303,0.3032909,0.1119344,-0.041405465,0.16047126,-0.1391231,0.5018103,0.042931836,1.0262861,-0.031686652,0.036279995,0.010637876,0.21274894,0.19264367,-0.3499821,0.05231651,0.1816616,0.28931668,-0.1319879,-0.5668871,0.06539105,-0.170925,-0.39892083,-0.32415077,-0.32515088,-0.11681285,-0.08643951,-0.38664392,-0.10958092,-0.053466566,-0.37980887,0.3900744,-2.611053,-0.15725301,-0.2888025,0.35079804,-0.14570373,-0.25680637,-0.27314433,-0.40926898,0.43296465,0.43106073,0.39607456,-0.48352817,0.6320403,0.36687547,-0.40439615,-0.14221129,-0.49774224,0.109319046,-0.07198923,0.3584219,-0.016313655,-0.26133853,-0.2820649,0.18876152,0.64765006,-0.01861255,0.0012461026,0.31945255,0.41078243,-0.16414663,0.5004825,0.06023687,0.48393407,-0.16386844,-0.21334635,0.35991484,-0.49477306,0.28871024,-0.041593466,0.2146654,0.49505073,-0.46205485,-0.7742795,-0.71328014,-0.49680343,1.3742346,-0.20762579,-0.48558363,0.2470382,-0.05582513,-0.39942616,0.17792214,0.49156567,-0.13093014,-0.03171677,-0.74994403,-0.0028931135,-0.090720676,0.20652269,-0.1313661,0.070430376,-0.38629517,0.63497216,-0.14993377,0.5220463,0.35194096,0.24040382,-0.12911484,-0.3136192,-0.016670467,0.86058146,0.4678463,0.036806922,-0.15640475,-0.2545166,-0.23456077,-0.17038608,0.13085623,0.6584943,0.47387266,0.037975363,0.14162509,0.31466478,-0.31283653,0.08217872,-0.15506588,-0.23308976,-0.0971152,0.29649225,0.56111085,0.54623234,-0.029046146,0.40992215,-0.08797281,0.14784479,-0.18995453,-0.58226615,0.4394491,0.59094363,-0.21091717,-0.23117529,0.51061386,0.41341978,-0.30087027,0.38823164,-0.37558654,-0.34220937,0.43443707,-0.027927602,-0.4388604,0.04160107,-0.41917315,0.0469815,-0.88773763,0.253216,-0.30069986,-0.7328301,-0.5687991,-0.2492471,-3.16758,0.23605631,-0.09401487,-0.09046699,-0.22362843,-0.1542478,0.46120924,-0.47440994,-0.59947956,-0.012358767,0.017636554,0.6029295,-0.09654482,0.030882759,-0.3189765,-0.2724565,-0.1342335,0.19919129,0.083863385,0.28681836,0.06221634,-0.2573621,0.08786621,-0.26704133,-0.4382814,-0.07286242,-0.568847,-0.51335025,-0.26642838,-0.3935269,-0.13448647,0.68801945,-0.56553245,-0.035751645,-0.35510254,-0.028466217,-0.13998713,0.39644006,0.20097525,0.16182755,0.31228462,-0.0020753741,-0.28813094,-0.3105579,0.03096244,0.06434766,0.22906014,0.42025426,-0.06913407,0.25276995,0.56724,0.52137107,-0.0013805032,0.7990628,0.21234964,-0.05416997,0.4366802,-0.23330587,-0.22675459,-0.576998,-0.351773,-0.08494072,-0.45285702,-0.48599836,-0.08792755,-0.29353043,-0.73234266,0.31685665,0.16162226,-0.009617758,-0.13298628,0.25195992,0.36719003,0.06283293,0.011187434,-0.026111007,-0.2052522,-0.4563385,-0.48655817,-0.65707296,-0.6192235,0.029140584,1.2001472,-0.078450225,0.0036605755,0.08934315,-0.24557829,0.053967126,0.17210627,0.14509048,0.0292278,0.3058822,-0.0713124,-0.7427406,0.22769256,-0.25715265,-0.09017709,-0.6061766,0.009011551,0.827273,-0.50288117,0.5539125,0.3866023,0.33794945,0.049562264,-0.5914386,-0.14438556,0.15601633,-0.33643574,0.6389395,0.296944,-0.6958189,0.5617388,0.15262583,0.017302616,-0.7346879,0.49272823,-0.015981544,0.041712444,0.13883041,0.38978052,0.054367255,-0.06507353,-0.14030828,0.25958598,-0.37714908,0.28767577,0.27604085,0.023189982,0.4644044,-0.06340795,-0.2813821,-0.47371617,-0.26492897,-0.5418877,-0.18434265,-0.11588202,-0.08223956,0.018552292,0.12513493,0.0047667227,0.43752283,-0.15186734,0.19144711,-0.14249577,-0.22412007,0.28419378,0.5694676,0.33713046,-0.4031983,0.5580762,0.17195159,0.11732607,-0.32314828,0.1356692,0.4818168,0.29418704,0.46560037,-0.19105896,-0.08875907,0.09466247,0.81731975,0.19135128,0.46114406,0.02555612,-0.37134907,0.2973963,0.08039499,0.23946899,-0.19731806,-0.18336102,-0.021631204,-0.10820801,0.23771225,0.3796275,0.056005057,0.32358217,-0.050604302,-0.11955008,0.25708923,0.08658333,-0.07621109,-1.1144536,0.4426839,0.3221997,0.68302655,0.4378473,-0.052247558,0.13798815,0.4930486,-0.26268402,-0.027758574,0.19742277,0.091364734,-0.41057938,0.5529197,-0.6429599,0.36658195,-0.15230264,-0.0007906437,0.110255785,0.199303,0.41594297,0.808839,-0.18590838,0.1976046,-0.06279168,-0.26651365,0.030358862,-0.17890498,0.15091263,-0.4383014,-0.3107565,0.6124117,0.42863286,0.39733407,-0.42860517,-0.08423347,0.14245544,-0.17345542,0.11560392,-0.26568672,-0.15591334,-0.113550946,-0.5692046,-0.29407248,0.5320395,0.007960105,0.11756849,0.14364907,-0.4164602,0.2709719,0.13345914,-0.015503184,0.074542016,-0.46190757,-0.08042376,-0.24321601,-0.46756908,0.28069907,-0.45826727,0.2393898,0.16415204,0.016316913,-0.3166307,0.19994284,0.076759726,0.7273503,0.05713958,0.004163885,-0.036620412,0.0120734535,0.3186752,-0.32537684,-0.14316653,-0.44345924,0.13026337,-0.6334931,0.32913667,-0.27349862,-0.26181394,0.2614888,-0.0054546595,0.042525537,0.33259323,-0.16742381,-0.08104412,0.15613694,-0.03073702,-0.23167762,-0.12821609,-0.33179057,0.28700906,-0.064358376,0.12201746,0.03604184,-0.05514543,-0.14368679,0.32199094,0.11679853,0.24783559,0.35357887,-0.01773431,-0.4142803,0.028045952,0.039403837,0.34355494,0.2128494,-0.16769084,-0.20052037,-0.3973894,-0.3576558,0.44095916,-0.15737012,0.054346662,0.08949935,-0.47249776,0.6248224,0.17737307,1.1252111,-0.071658984,-0.37822726,0.15896502,0.33878967,0.05203151,0.077747256,-0.25416118,0.76878524,0.5884337,-0.17548493,-0.0008442163,-0.53130734,-0.25183693,0.16059461,-0.29272625,-0.15131272,-0.25935227,-0.7475013,-0.19123432,0.04937656,0.11367906,-0.1185296,-0.12922363,-0.067746304,0.033433247,0.10106587,0.35019347,-0.5405258,0.055154514,0.3540899,0.22617769,-0.05400304,0.12745555,-0.398445,0.40821832,-0.8804813,0.20272343,-0.4070526,0.056278214,-0.09114747,-0.1998852,0.14103311,-0.055174172,0.32085836,-0.13935891,-0.3545383,-0.36158523,0.61758435,0.2619985,0.17102163,0.72611755,-0.21974698,0.0042099315,0.13958699,0.5896371,1.2449639,-0.13772836,0.11562524,0.21212082,-0.3027694,-0.392778,-0.049891602,-0.4863469,0.014358664,-0.052164417,-0.32446238,-0.28859094,0.2649052,0.16088027,0.020578442,0.02365206,-0.44977185,-0.0907604,0.25284594,-0.26461053,-0.24837925,-0.27302852,0.14383973,0.58716506,-0.2743594,-0.30367073,-0.11893005,0.42620337,-0.3433244,-0.52124906,0.12009639,-0.19358549,0.4131743,-0.025068734,-0.39570016,-0.034438275,0.22539443,-0.47786272,0.07481345,0.27866998,-0.3331632,0.035683047,-0.32799193,-0.10119326,0.90014845,0.03859301,0.34603196,-0.5457269,-0.56206286,-0.7484022,-0.19828402,0.112092905,0.32940662,-0.13130035,-0.48189482,-0.11308085,-0.16187133,-0.047717396,0.17278813,-0.4959952,0.31433246,0.15279737,0.54991895,-0.17829841,-0.92563915,0.032157354,0.18977748,-0.06777822,-0.43384734,0.43816593,-0.07482397,0.70249003,0.13848025,0.04325699,-0.09858798,-0.5652513,0.35922113,-0.20509571,-0.1591414,-0.60563856,0.07815067 -678,0.52715176,0.17145503,-0.4281926,-0.071191356,-0.3952689,0.2119792,-0.17940746,0.0068081687,0.091441095,-0.4423807,-0.060672157,-0.03921153,-0.086352,0.11428442,-0.13702825,-0.41724086,0.20798641,0.26010457,-0.5035739,0.6118721,-0.3202312,0.39206618,0.22011395,0.19083996,-0.048311543,0.1396941,0.30964807,-0.20571952,-0.17714489,-0.23903005,-0.37182572,0.09063603,-0.7476804,0.34096432,-0.2557424,-0.41258204,-0.033483528,-0.16740215,-0.19780564,-0.6882024,0.24200293,-0.70848846,0.56622773,-0.027479768,-0.21190284,0.10782435,0.21950598,0.2616607,-0.13996144,0.068157256,0.167599,-0.10919482,-0.3126422,-0.23163123,-0.119015105,-0.39986324,-0.3635552,0.011436291,-0.43514147,0.06292243,-0.29346135,0.26369673,-0.18558352,-0.023469277,-0.11553007,0.17741136,-0.23157199,0.45396334,0.15909109,-0.0015372984,-0.013552441,-0.536688,0.0696804,-0.20516764,0.37971184,-0.087689854,-0.1946366,0.21283473,0.35221872,0.5817013,0.11271199,-0.21780348,-0.17474128,-0.14539607,0.08621386,0.39976403,-0.20511997,-0.31706727,-0.1932297,-0.09067767,0.26505202,0.2571254,0.14254516,-0.3939522,-0.03636769,-0.105219945,-0.20830183,0.25410026,0.5206522,-0.41535234,-0.13598716,0.40305042,0.5530995,-0.0069462694,-0.038828276,-0.007351181,-0.06465808,-0.42739183,-0.17987569,0.12181441,-0.06729386,0.4409542,-0.11505675,0.16520707,0.5503034,-0.14394379,-0.062160127,0.102977276,-0.014755589,-0.0989441,-0.12145529,-0.10671203,0.21035239,-0.6450254,-0.09275267,-0.1783227,0.84566265,0.12893379,-0.5410399,0.30548877,-0.3796519,0.16857341,-0.022769267,0.48500746,0.66169053,0.37144002,-0.03143016,0.88745236,-0.53624356,0.053598545,-0.027334185,-0.32108957,0.082467794,-0.17516372,-0.00494938,-0.47923502,0.08829302,0.023197511,0.15338917,-0.02661562,0.26169175,-0.6984916,-0.2986358,0.024171717,0.7038869,-0.3825268,-0.011400531,0.6678092,0.8989577,0.93853426,0.039305307,1.3416356,0.33550498,-0.14592443,-0.15332295,-0.21260054,-0.68750185,0.106320806,0.26172733,-0.20974013,0.15001214,0.17761554,-0.07414212,0.38244852,-0.36600986,-0.14779274,-0.2634381,0.44558653,0.01359644,0.011706643,-0.40094477,-0.20063722,0.19059488,0.03130261,0.29765087,0.33131823,-0.19652936,0.21483842,0.18677178,1.7578393,-0.24245615,0.0683293,0.093702875,0.23914859,0.29549462,-0.0829677,-0.07736106,0.24122533,0.35419878,-0.070602596,-0.27900392,-0.24330863,-0.2673015,-0.49861264,-0.1565639,-0.18154939,-0.24306929,-0.12974718,-0.16538413,-0.33801037,-0.031676967,-0.15086485,0.65423214,-2.5490675,-0.09718341,-0.19805086,0.3203771,-0.39346582,-0.3452531,-0.19501725,-0.44882834,0.5227437,0.19941318,0.50653315,-0.63408446,0.31948677,0.2964101,-0.32295328,-0.2685801,-0.7025162,0.12746306,-0.02809178,0.43589726,0.0073608863,-0.22697802,-0.03191692,-0.0055956175,0.33338732,0.0150914015,0.1626162,0.2827251,0.43254825,0.1826013,0.39046612,0.3043715,0.6842272,-0.37076086,-0.10745162,0.48247203,-0.2780551,0.43032378,-0.2432428,0.090379864,0.42265773,-0.40007097,-0.60551035,-0.7612595,-0.06566828,0.96904004,-0.19842926,-0.4751073,-0.0234358,-0.20262785,-0.14332314,0.0026700217,0.17802192,0.050234985,-0.055118315,-0.66336656,0.21566537,0.038064163,0.25229922,-0.07035182,0.05437886,-0.38588116,0.6673311,-0.24472907,0.39967433,0.47746602,0.29587662,-0.08086419,-0.3797707,0.14665517,1.0050775,0.41303682,0.08700186,-0.21864878,-0.37527612,-0.3005863,-0.22946745,0.040195093,0.4269723,0.5965828,-0.06471499,-0.05097439,0.31901526,0.1377706,-0.03938872,-0.04688338,-0.36441544,-0.1784545,-0.19707242,0.48925233,0.6686562,-0.1371139,0.42228875,-0.13405932,0.16823435,-0.13954984,-0.5847789,0.6657938,0.90095174,-0.32731166,-0.19455248,0.41434687,0.31693926,-0.2242665,0.4259895,-0.6610102,-0.4582822,0.32923028,0.041244,-0.21975075,-0.035283905,-0.2974134,0.116756275,-0.6772328,0.44632226,-0.21008208,-0.28661767,-0.51821166,-0.19761837,-2.159113,0.22319135,-0.24625683,0.104484595,-0.1528589,-0.091967925,-0.003105472,-0.45228162,-0.41270745,0.19648933,0.010425217,0.45292968,0.15824796,0.33039,-0.18150151,-0.20488298,-0.29022747,0.18954314,0.12732394,0.288839,-0.1212192,-0.3872326,0.013326722,-0.05903049,-0.20490223,0.030222801,-0.6635973,-0.4668689,-0.2233045,-0.26733506,-0.1404307,0.76764244,-0.47055316,0.0811038,-0.37429163,-0.0391865,-0.19198763,0.22947678,0.20124161,-0.00784307,0.04052807,-0.0012165132,-0.0688262,-0.38035086,0.14838418,0.11337298,0.22754705,0.46764576,-0.25982666,0.14575675,0.17750667,0.5504453,-0.027410079,0.76030385,0.29916975,-0.27746853,0.35759157,-0.15858798,-0.23154055,-0.63083076,-0.49147964,-0.12387711,-0.46964237,-0.29752672,0.06246989,-0.37580255,-0.7153516,0.47217578,0.04350213,0.117063425,0.018864794,0.39321995,0.50704473,-0.26467934,-0.027302016,-0.08278572,-0.18254086,-0.60811996,-0.42387536,-0.55050004,-0.34944236,0.3080483,1.1215017,-0.34544846,-0.077978835,0.13942298,-0.20813236,-0.030736316,0.024367914,-0.048602134,0.056097887,0.48066044,-0.04837064,-0.64626926,0.41333896,-0.10051209,-0.099030845,-0.55990934,0.27888894,0.5459148,-0.64140654,0.2239179,0.46787474,0.22194992,0.14831264,-0.5727336,-0.24025275,-0.07231295,-0.31218654,0.30648956,0.19728717,-0.48226178,0.42516539,0.23615158,-0.03149165,-0.67412806,0.47198436,0.12044738,-0.27124634,0.08725737,0.3329933,0.14947769,-0.053838644,-0.12647447,0.06530348,-0.49392438,0.31175038,0.21930446,-0.176438,0.28488678,-0.24587917,-0.49900824,-0.597824,-0.067600176,-0.4814852,-0.4511713,0.11839781,0.016266398,0.023892147,0.10755296,0.30348745,0.34003562,-0.46784627,0.06036682,-0.01215802,-0.06979637,0.40038916,0.27553636,0.40016088,-0.4072823,0.5467751,-0.0057852725,-0.18147063,-0.18652633,0.19846201,0.3996626,0.08738414,0.27936107,0.049766675,-0.089983776,0.27659836,0.70327413,0.19981197,0.14374065,-0.024872405,-0.25726786,0.1315109,0.060532387,0.11521318,0.118030675,-0.48053715,-0.016049694,0.009147815,0.21953723,0.37686592,0.24766639,0.32490933,-0.07010886,-0.18789649,0.020228041,-0.060744874,-0.016315874,-1.1320401,0.07825593,0.21778052,0.69649184,0.4788732,-0.13134201,0.050063167,0.4561003,-0.2622645,0.17933668,0.31269205,-0.23764788,-0.2379524,0.46210894,-0.6411214,0.38479662,-0.022266464,0.12191838,-0.015545408,-0.025122182,0.13227542,0.9435318,-0.10363061,0.0802641,-0.27879283,-0.2559772,-0.08368646,-0.16398653,0.1402566,-0.26263142,-0.34148803,0.77634966,0.36471677,0.4516977,-0.29326892,-0.020433849,0.093414165,-0.19010103,0.14259882,-0.0048184358,0.19889918,0.0937648,-0.47204888,-0.14388113,0.5703191,-0.23798239,0.06192142,0.11779129,-0.20861673,0.21346878,-0.22986206,0.024378546,-0.07118576,-0.61417097,-0.04494703,-0.34460217,-0.024711227,0.3445863,0.005515505,0.15448812,0.08392215,-0.018849531,-0.15568635,0.3386889,-0.014251421,0.5969566,0.070623875,-0.07800984,-0.3847904,0.2077692,0.24383366,-0.30728877,0.11765748,-0.11112804,0.17613223,-0.7217226,0.31017804,0.056896135,-0.18205439,0.07447236,-0.24541178,-0.058377188,0.52554715,-0.02079545,-0.07900915,0.086048335,-0.023299877,-0.1466842,0.033462625,-0.059050377,0.09410349,0.33024535,0.04265669,-0.017882152,-0.18338992,-0.41752687,0.15595917,0.23751368,0.29988256,0.23935632,0.042385396,-0.47359332,-0.043748006,0.026676238,0.43719012,-0.15334378,-0.14805673,-0.17168696,-0.47200558,-0.4921563,0.39398357,-0.15811457,0.10556752,0.01650124,-0.20359042,0.68731105,0.11685688,1.1807845,0.15607615,-0.26766706,-0.051069085,0.6686733,0.004008307,0.10086775,-0.3157976,0.872066,0.461745,0.02842921,-0.10593085,-0.18374467,-0.1951922,0.23479453,-0.14379896,-0.056836996,-0.04134098,-0.46990538,-0.28647935,0.16872187,0.115403004,-0.007835348,-0.050556697,-0.090262085,0.23610808,0.0125969015,0.38901645,-0.61663663,-0.23763813,0.381066,0.24887836,0.01570795,0.11626877,-0.4929978,0.42108327,-0.4668323,-0.026600862,-0.29549712,0.08492001,-0.1767515,-0.13831075,0.2058082,-0.07227319,0.34242517,-0.5632426,-0.4392212,-0.24936014,0.38803327,0.34181932,0.3186614,0.6154647,-0.22842906,-0.03353652,0.0066560297,0.46465328,1.0597286,-0.18662576,0.039292533,0.47757372,-0.3763814,-0.49127883,0.23881842,-0.32340717,0.09858849,-0.00706583,-0.34849066,-0.3887369,0.36960375,0.12963974,0.10619842,0.07728645,-0.91877544,-0.022196932,0.2930054,-0.18019979,-0.17271227,-0.22474563,0.21034975,0.80764526,-0.1379169,-0.31712794,0.1554699,0.23628013,-0.2504988,-0.6490612,-0.1707233,-0.3908583,0.336042,0.24466464,-0.28650805,-0.16907164,0.045732252,-0.4637242,0.030397745,0.20418972,-0.33834234,0.044294957,-0.23098981,-0.043460775,0.72348523,-0.025609747,0.06127778,-0.4638207,-0.25296324,-0.759093,-0.40221095,0.2567481,0.27680406,0.057710625,-0.44013664,-0.18734758,-0.110811375,-0.09915547,-0.03714658,-0.5092559,0.48468623,0.20743774,0.20741639,-0.08612427,-0.9149169,0.06343686,0.034660805,-0.12081595,-0.4217467,0.3795195,-0.027336018,0.78077203,0.13580571,-0.13733292,0.36181426,-0.7079911,0.21166916,-0.24604355,-0.010183573,-0.8774465,0.08937016 -679,0.3390344,-0.24102785,-0.54592836,-0.12514636,-0.17472938,0.1385032,-0.28932714,0.17836931,-0.19284895,-0.6097832,-0.04203561,-0.21592392,-0.14606963,0.2462906,-0.24863802,-0.2097988,0.033318046,0.111535296,-0.40375808,0.44832346,-0.5702093,0.279468,0.22776058,0.1631328,0.016763167,0.023716053,0.41188234,0.10185744,-0.19946285,-0.41703388,0.058632065,0.1091254,-0.5978436,0.2885422,-0.21248344,-0.5235602,-0.005592242,-0.28238598,-0.2494764,-0.6895765,0.2910041,-0.9504343,0.53278047,-0.0075900084,-0.32046506,0.33074087,0.3118092,0.22219793,-0.015381313,0.007379417,0.12963027,-0.31997964,-0.13301043,-0.17844924,-0.005451594,-0.30043608,-0.5925702,0.06033815,-0.5701045,-0.2022398,-0.22711262,0.32158566,-0.3649513,0.11762786,-0.20784755,0.4385347,-0.43034413,-0.20152135,0.025773976,-0.122306995,0.39190295,-0.6500236,-0.11232434,-0.1107275,0.031269126,-0.36713788,-0.088031895,0.20484729,0.19189999,0.5444228,-0.07547128,-0.20868409,-0.13640407,-0.20279564,0.06671076,0.45292684,-0.08640312,-0.29606327,-0.17122982,-0.11048518,0.32115704,0.15657486,0.05202267,-0.24696873,-0.03614485,-0.05383346,-0.2895895,0.266637,0.45789608,-0.35293797,-0.14309561,0.29998925,0.6254905,-0.07962345,-0.10794793,0.088842936,-0.02750676,-0.45360637,-0.12648189,0.20300779,-0.07789622,0.5072061,-0.17040071,0.4474006,0.4544395,-0.27854124,0.0787856,0.18777673,0.06253521,-0.12618445,-0.22956453,-0.26661715,0.33452657,-0.5932906,-0.06144802,-0.32841745,0.8185256,-0.14491911,-0.6778409,0.31182724,-0.3916134,0.072442316,-0.07287841,0.69920844,0.47333077,0.47922176,0.21814802,0.64052093,-0.5083878,-0.088054895,-0.12880234,-0.2848674,0.07045633,-0.14628589,-0.15394977,-0.46500507,0.0685461,0.16352174,0.1453209,-0.22463252,0.51645666,-0.44533896,-0.055706408,0.104894,0.60845625,-0.33979708,0.04197678,0.74559987,1.2315131,0.9914818,0.19346774,1.045365,0.20928948,-0.12159594,-0.11113645,0.14500631,-0.61118287,0.24965961,0.40452555,0.30987826,0.2723969,0.020111501,-0.08316916,0.34434208,-0.44820514,-0.05544836,-0.16691026,0.36163187,-0.027950678,-0.028815577,-0.4624373,-0.17016576,0.17180757,0.08129644,0.08416467,0.217317,-0.15827115,0.46248397,0.12065121,1.2880744,-0.3327033,0.14750938,0.17549837,0.3485581,0.14128684,-0.041411962,-0.021224814,0.016159454,0.33522585,0.19867352,-0.4800469,0.08179369,-0.03199875,-0.67394215,-0.18441097,-0.25114185,0.0065033096,-0.36505386,-0.45257622,-0.08942884,0.034442294,-0.53870004,0.33534092,-2.7994182,-0.12156941,-0.20541203,0.22742666,-0.16934986,-0.28494978,0.083897606,-0.3516379,0.6877166,0.5568472,0.3531359,-0.64460546,0.42273286,0.37474087,-0.2116436,-0.12903306,-0.76450884,-0.11827135,-0.16551761,0.46244884,0.19863895,-0.31076628,-0.011645743,0.23131481,0.48373896,-0.25699973,0.1041054,0.22938149,0.22170578,-0.0020070374,0.47057357,0.20291713,0.36894968,-0.42443445,-0.13880686,0.50816804,-0.40990463,0.07230585,-0.02211796,0.23303308,0.33859238,-0.4951413,-0.7241093,-0.66373765,-0.33031029,1.3293947,-0.19520216,-0.6075367,0.17813227,-0.0039805346,-0.26648983,-0.014556655,0.26961723,-0.18929055,0.17106903,-0.8291535,-0.017286394,-0.1104623,0.38574633,-0.12531279,0.053717796,-0.59072465,0.5572632,-0.19908687,0.56214654,0.62583965,0.21266893,-0.5622319,-0.52205837,0.050978024,1.1036714,0.50188875,0.038643416,-0.21754079,-0.15509783,-0.17329288,-0.077998504,0.25491932,0.4039177,0.8788271,0.11240273,0.2273136,0.28250092,-0.09034339,0.044798028,-0.053513058,-0.37212446,-0.093648806,0.2184746,0.62776214,0.33395058,0.060609728,0.38336286,-0.15573081,0.32936552,-0.29583725,-0.42320102,0.37795863,0.662741,-0.13913727,-0.32792854,0.5519692,0.67438316,-0.21630304,0.53122175,-0.6249666,-0.45258564,0.31798056,-0.111272044,-0.41521832,0.23671147,-0.4019268,0.26145738,-0.92800206,0.40417957,-0.46734577,-0.57080495,-0.6911196,-0.27043298,-3.4815395,0.17468958,-0.12658569,-0.19795653,-0.017390981,-0.2815284,0.50624734,-0.4904919,-0.5576585,-0.046080004,0.006587959,0.62812144,0.10745361,-0.057329442,-0.3384554,-0.051557235,-0.13388862,0.21600506,0.09348477,0.06190483,-0.17515208,-0.4580848,-0.016131299,-0.47261265,-0.43681675,-0.11413805,-0.52269703,-0.52390873,-0.2021015,-0.3606171,-0.48496947,0.63121307,-0.24524128,0.043634158,-0.2579175,-0.07007528,-0.12717324,0.422977,0.12930802,0.091212735,-0.051864453,-0.056907002,0.04105442,-0.3206785,0.119852066,0.05225564,0.1216708,0.4775618,-0.30630332,0.19200294,0.47091508,0.43621212,0.06848702,0.86719483,0.34849378,-0.10973918,0.28959203,-0.21783063,-0.30280238,-0.5696693,-0.23409653,0.058385886,-0.42714757,-0.34233838,0.05659819,-0.20733924,-0.7668613,0.70418113,-0.07401681,0.042520374,-0.10294461,0.39519888,0.23255464,-0.08399362,-0.14135072,-0.1674186,-0.11900461,-0.46384373,-0.42903295,-0.9195805,-0.55692023,-0.29826054,1.0510174,-0.0061639654,-0.0492598,0.1099842,0.06764733,0.12411262,0.13928273,0.06077535,0.24753849,0.29775813,-0.07240527,-0.7111886,0.5014776,-0.17806281,-0.011198993,-0.3487626,0.06396266,0.66725606,-0.5078306,0.17490618,0.56486756,0.24279203,-0.24023339,-0.5732101,-0.01359206,0.014752422,-0.24895878,0.5996313,0.28524905,-0.84042674,0.68018305,0.40507025,-0.15213516,-0.7298795,0.51691103,0.086349234,-0.1103956,0.060057033,0.41024742,-0.24468152,0.066192694,-0.2716781,0.19722077,-0.43933567,0.22045276,0.23372473,0.019133972,0.5323232,-0.2898977,-0.17460783,-0.4360575,-0.013564774,-0.53214914,-0.147135,0.051977877,-0.13281499,-0.04904294,0.4500153,-0.22209825,0.4841487,-0.3015113,0.057230413,-0.04208895,-0.3785081,0.4404948,0.6011147,0.304736,-0.30338874,0.6981603,0.015347115,-0.09030168,-0.49499062,-0.03510183,0.4804981,0.15920778,0.34451532,-0.155,0.050962713,0.46866664,0.76840764,0.39467812,0.515158,0.060674954,-0.12510657,0.12302731,0.12696627,0.33081517,0.007960984,-0.33295974,-0.08464755,-0.11488806,0.19889078,0.39873955,-0.015680363,0.4835408,-0.16048078,-0.17625438,0.08129897,0.0675829,-0.2911807,-1.2071457,0.49182197,0.17585638,0.6020903,0.54922426,0.029777065,0.24658073,0.58341473,-0.3708165,0.06858394,0.22461009,0.14381497,-0.39687297,0.70447963,-0.7427526,0.407609,-0.021335747,0.07790675,-0.07232134,-0.18692072,0.4755647,0.6808923,-0.0045940303,0.21865283,-0.08890456,-0.31102046,0.25553337,-0.34981316,0.2499955,-0.19257845,-0.20826702,0.78689873,0.34296325,0.39719433,-0.16405642,-0.094003536,0.26689187,-0.056921426,0.31316572,0.050758403,0.14679101,-0.24865028,-0.5086914,-0.18271463,0.5597533,0.2595223,0.100034036,0.042195383,-0.3111139,0.24934582,-0.049544085,-0.024555316,0.013015238,-0.48954153,0.16843523,-0.35839915,-0.3462934,0.33279434,-0.6022228,0.18557023,0.1198662,0.0016377823,-0.36506864,-0.08480025,0.279975,0.49323335,-0.008431579,-0.16764878,-0.037596192,-0.09858203,0.19204892,-0.2798231,-0.21242373,-0.29229906,0.113968134,-0.6506907,0.36349502,-0.18125196,-0.23757567,0.38629183,-0.15014586,-0.10596197,0.3985853,-0.049426463,-0.07892721,0.23290493,-0.0026524153,-0.14689311,-0.25277668,-0.19275333,0.22520241,0.010192611,0.04593013,-0.006958208,0.07958969,-0.15056525,0.48196343,0.07289599,0.3118345,0.36580148,0.09296378,-0.50791794,-0.029063037,-0.20174117,0.54623574,-0.015181167,0.012585214,-0.23658751,-0.37846184,-0.15842523,0.16594175,-0.1596109,0.23237409,-0.042417794,-0.39268917,0.9879132,0.01490587,1.0276192,0.03536987,-0.51409966,-0.12010793,0.49520272,-0.104753666,-0.12553671,-0.30130553,0.97690386,0.4662209,-0.08579748,-0.15168977,-0.3503829,-0.020226171,0.18306856,-0.16344038,-0.281394,-0.14243726,-0.6873649,-0.30217698,0.27882147,0.427144,-0.14586833,-0.10870349,0.12589455,0.34011966,-0.018387983,0.27526644,-0.46080175,0.19295467,0.48246124,0.18502744,-0.089261055,-0.07234083,-0.40024614,0.30592546,-0.7347153,0.08306636,-0.2810769,0.074603595,0.07949293,-0.22784428,0.22427575,-0.029582402,0.2342015,-0.19475934,-0.20996201,0.033792265,0.40971595,0.19530031,0.13970916,0.688919,-0.20643954,0.2750595,0.06655661,0.36823827,1.1724857,-0.30232844,-0.03485509,0.116282165,-0.35518023,-0.6042105,0.2199754,-0.34008855,0.20237373,-0.02772659,-0.42014378,-0.4005127,0.282836,0.32681245,0.007682649,-0.0311355,-0.5117463,-0.17711642,0.24646099,-0.27152577,-0.24800839,-0.44212732,-0.04076916,0.5171885,-0.18814087,-0.22558863,-0.011972998,0.48258516,-0.40168473,-0.60118836,0.047672216,-0.40348843,0.3000929,0.030863816,-0.27496555,0.037601504,0.10024423,-0.41725573,0.2111344,0.32437465,-0.29744557,-0.009232319,-0.24572252,0.08573707,0.7615596,-0.1137555,-0.13685903,-0.6450318,-0.54886776,-0.8035897,-0.25742683,0.44336668,0.17104737,0.14087838,-0.5119814,-0.01794121,-0.18511932,-0.057722133,0.02243833,-0.33495235,0.3567869,0.15176506,0.4323379,-0.0055313194,-0.58752215,0.086714186,0.06796684,0.032538958,-0.30125254,0.64087516,0.06760678,0.5132208,0.112641,0.092077896,0.3226212,-0.5714008,0.31910402,-0.049597017,-0.2780855,-0.69560915,-0.016072124 -680,0.3079712,-0.23691642,-0.5710659,0.07373459,-0.21657462,-0.34365174,-0.27458438,0.26375517,0.34275457,0.06033237,-0.43842745,0.1020081,-0.008988257,0.3932089,-0.067904234,-0.6339481,-0.05652453,0.22852032,-0.76777035,0.81061965,-0.18478571,0.19018118,0.12570857,0.5740747,0.13633649,0.2848605,0.20559151,0.01452748,-0.15107208,0.0036684896,0.20959984,-0.061947834,-0.7142684,0.0990537,-0.38462377,-0.18511419,-0.19492976,-0.4906639,-0.4426453,-0.9748098,0.23891322,-0.79125476,0.5603856,0.0070171854,-0.22173204,-0.26434982,0.10043753,0.27140346,-0.20365083,-0.17293465,0.099155664,-0.20153904,-0.1898938,-0.4386257,0.008422613,-0.26947454,-0.4497831,0.006245438,-0.52981216,-0.11357489,-0.043879468,0.07855462,-0.36296865,-0.08013985,-0.072385624,0.6818723,-0.35133842,-0.017561981,0.3541874,-0.116811335,0.26652417,-0.7642341,-0.055146676,-0.19315499,0.34378004,0.0045876005,-0.32930046,0.3835108,0.30321062,0.28163603,0.10659733,-0.19545,-0.27372777,0.09718121,0.18255568,0.433413,-0.3435568,-0.40112612,-0.14580591,0.10355855,0.36636138,0.12264252,0.21754839,-0.24211852,0.029241482,-0.18291508,0.13933848,0.6205767,0.5627298,0.07193891,-0.1745003,0.16046856,0.5049701,0.5741686,-0.21037346,-0.074244685,0.058086436,-0.5922183,-0.11100486,-0.031263463,-0.1707627,0.73566586,-0.075921185,0.046831354,0.7044389,-0.024762342,-0.22395869,0.19102687,0.08457064,-0.030721804,-0.1023766,-0.35381153,0.3227937,-0.39103475,0.11973936,-0.14966293,0.36537492,0.20123434,-0.7634682,0.30327544,-0.5557567,0.20623653,0.14458269,0.6247718,0.899836,0.50065106,0.49683166,0.7372531,-0.16684096,0.27889556,0.41008464,-0.30581012,0.12349376,-0.27888525,-0.19587445,-0.44852102,-0.25929642,-0.25242212,-0.29388914,0.18910642,0.31208667,-0.5368398,-0.07668472,-0.024591267,0.7108557,-0.10479,-0.0054473877,0.7254629,1.1975207,1.0060097,-0.010775715,1.2320306,0.230196,-0.14843677,0.02017951,0.0014603585,-0.8760465,0.20879388,0.28136128,-0.5584556,0.6176439,-0.10111604,-0.09919486,0.3631206,-0.71171826,-0.0070172944,0.09860277,0.20918871,0.08926326,-0.24454121,-0.52936,-0.17230944,-0.24826305,0.15855096,0.051856205,0.27878532,-0.2699886,0.3285916,0.034070533,0.94686085,-0.07040679,-0.1073694,0.083088316,0.56101495,0.28851005,-0.21016157,-0.20915274,0.31993833,0.46355006,0.050837915,-0.5274716,0.16971858,-0.3865373,-0.26481727,-0.23437546,-0.1720197,-0.038788002,0.18533139,-0.20345502,-0.38203397,-0.041428853,-0.2800406,0.27560937,-2.4368448,-0.14526975,-0.03404838,0.39054453,-0.20290871,-0.014455986,-0.23237543,-0.42947546,0.13837235,0.19510432,0.5384955,-0.6723383,0.26019013,0.52124685,-0.7637746,-0.10861423,-0.6404576,0.051688153,0.11128504,0.468087,0.16022952,0.0023595442,0.1637318,0.23325841,0.52881795,0.16633655,0.07660445,0.5777058,0.391246,-0.047214627,0.11154351,-0.10579602,0.4846946,-0.37942454,-0.23987235,0.40142512,-0.2855743,0.24215017,-0.25278842,0.12126715,0.60495496,-0.37126374,-0.74611574,-0.291465,-0.13575982,1.1465101,-0.1112169,-0.5337605,0.2226548,-0.31173217,-0.08373997,0.0013054336,0.80990267,-0.22704268,0.22243868,-0.75058883,-0.24987312,0.03355894,0.20675619,0.034598187,-0.0699232,-0.33610097,0.6341127,0.026926422,0.42607537,0.39717078,0.12880413,-0.3026086,-0.6902759,0.25775337,0.7677829,0.4557179,0.107027024,-0.17682724,-0.050451968,-0.24758805,-0.103068,-0.06653826,0.7043027,0.7669215,-0.23079783,0.08795997,0.26147458,0.057042193,0.08236774,-0.11635319,-0.29331282,-0.09691579,-0.099075675,0.5348041,1.1991048,-0.22850193,0.30299973,-0.13497123,0.287549,0.03479413,-0.38867736,0.83210915,0.93677694,-0.32682377,-0.11967269,0.4934219,0.23378456,-0.7225182,0.51222634,-0.60137916,-0.10964236,0.6820257,-0.012615765,-0.46096948,0.33745465,-0.32655177,0.30798802,-0.7713184,0.67084676,-0.30137542,-0.37068713,-0.6142138,0.011620413,-2.1373792,0.14751004,-0.3096178,-0.13854422,-0.5702194,-0.07828577,0.19575466,-0.46629778,-0.6961923,0.18540637,0.22372043,0.53161746,-0.25094542,0.031202724,-0.12973535,-0.42521492,-0.10847312,0.31346256,0.48963058,0.36462542,-0.30582586,-0.31429702,-0.22752158,0.070983194,-0.49242768,0.033305842,-0.6672421,-0.55370027,-0.26834366,-0.75052756,-0.08216255,0.61124796,-0.57170224,-0.021198258,-0.3331852,0.05265683,-0.046955496,0.1882916,-0.024121253,0.20560314,0.14704913,-0.05009612,0.26149622,-0.032397706,0.395638,-0.085437536,0.245753,0.11399341,-0.05695644,0.37657306,0.510148,0.9562566,-0.26683447,1.04065,0.5886218,-0.18397264,0.109568596,-0.25432393,-0.4572276,-0.58763385,-0.31048352,0.19521438,-0.24723993,-0.5271228,0.16721447,-0.385141,-0.83351874,0.538647,-0.21344364,0.3349916,0.30373785,0.21585906,0.45414308,-0.23346816,0.09105456,-0.07880733,-0.2096961,-0.4642091,-0.09547806,-0.55702275,-0.6124705,-0.15495043,0.8738666,-0.20879126,0.094637334,0.20592825,-0.5660066,0.11657276,0.09302553,-0.04268944,0.17243202,0.31704232,0.22241752,-0.63492006,0.21175589,-0.018333495,-0.17663856,-0.47978675,0.24602325,0.6935823,-0.71541405,0.56664294,0.4435844,-0.14963052,-0.3694919,-0.5478612,-0.17660911,0.033300567,-0.12963559,0.3356186,0.32452938,-0.57266045,0.43615913,0.24678989,-0.6884268,-0.7008818,0.44234565,-0.118659995,-0.18888475,0.03529566,0.38664302,-0.43696716,-0.042888407,-0.32320178,0.2744448,-0.12693007,0.2878932,-0.00498119,-0.1957315,0.068665236,-0.003753374,-0.31107846,-0.76462275,0.38129988,-0.6453671,-0.33071554,0.55693674,0.021331178,0.008404679,-0.18745513,0.4661213,0.4024547,-0.22062047,0.10880994,-0.18500233,-0.4044039,0.2853677,0.58252364,0.46326146,-0.35318145,0.613426,0.043169063,-0.12670112,0.16610682,0.06468872,0.26423082,-0.138363,0.3229812,0.21731372,0.011752934,0.089060895,0.73004454,0.0326943,0.44837582,0.15053849,-0.0973404,0.41670153,0.011901297,0.36647764,-0.15174542,-0.3968819,0.063646354,-0.27244684,0.08485661,0.55902535,0.27106056,0.03828987,-0.10897074,-0.43421462,-0.07889822,0.3571204,0.24559946,-1.3830014,0.4558488,0.2635167,0.7128482,0.3423591,0.15391697,-0.18603848,0.77509815,-0.08334494,0.020957813,0.5726249,0.12128808,-0.64941955,0.55785704,-0.54488724,0.44249853,0.03299204,0.019882971,0.19489168,0.04502147,0.27502307,0.8981981,-0.1361411,-0.03889508,-0.18183334,-0.09138638,-0.15228839,-0.504727,0.16336058,-0.30218527,-0.57980746,0.77619505,0.44490495,0.33270296,-0.23578806,0.10738338,-0.020032933,-0.19417758,0.50809646,-0.077328645,-0.1148965,-0.007478282,-0.69190973,-0.027314449,0.41128278,-0.051616084,0.017924383,-0.20742643,-0.073324025,0.09989828,-0.26482555,-0.1275999,-0.23526447,-0.9158275,0.06306519,-0.42386058,-0.46391067,0.60726786,-0.4127603,0.060135525,0.20036365,-0.0051520937,-0.46909806,0.4333836,0.056280836,0.75704044,0.04914513,-0.19519858,-0.055369437,0.35896957,0.2792007,-0.27521357,0.19199,-0.3468344,0.15906455,-0.38893995,0.6845563,-0.07312265,-0.47942498,-0.019432304,-0.14233144,-0.21476638,0.7059353,-0.26561978,-0.35577157,-0.078738995,-0.2884818,-0.29560807,-0.28563955,-0.35840976,0.24203533,0.4609631,-0.054979224,-0.19259508,-0.14041533,-0.15640955,0.4613938,-0.03954482,0.66192263,0.4997485,0.18752582,-0.37742543,0.011274661,0.27278715,0.5919357,0.4011445,-0.06369224,-0.6340535,-0.3878317,-0.41681635,0.08586237,-0.17086606,0.21015376,0.11026588,-0.20506263,0.7468805,0.019644542,1.2537816,-0.042997,-0.28889772,0.10094639,0.5156054,-0.26420996,-0.117667556,-0.4536657,0.95695734,0.5216252,-0.30206567,0.05686583,-0.361374,-0.010389794,0.2507545,-0.33815053,-0.018594662,-0.041853312,-0.5239425,-0.2760851,0.11763612,0.2697181,-0.031112121,-0.16600992,0.08670821,0.039162714,0.08176503,0.15498096,-0.53751594,-0.1525112,0.5084885,0.14387834,-0.13053288,0.0087234825,-0.43929222,0.3193257,-0.5536627,0.14507864,-0.5479171,0.23278217,-0.11415132,-0.62185806,0.1172778,0.065882534,0.5551637,-0.6069888,-0.2932308,-0.27836558,0.39487258,0.13150714,0.110568196,0.5768972,-0.40117383,-0.062336076,0.15618102,0.7686186,1.0339357,-0.48282918,0.05861138,0.0832806,-0.4929138,-0.57376504,0.43539336,-0.39542696,0.124080986,-0.44931817,-0.276561,-0.76152325,0.034100566,0.03209253,0.044423003,-0.1907522,-0.7398663,-0.31880644,0.18175565,-0.22343461,-0.1455233,-0.31674466,0.14225243,0.6062276,-0.23343867,-0.6306806,-0.032027673,0.13068704,-0.11568331,-0.29079485,0.06486232,-0.17355841,0.28630394,0.099252194,-0.33617732,-0.19415678,0.13808745,-0.6218905,0.2299832,0.16976668,-0.45628658,-0.046337306,-0.10614431,-0.07153214,0.78742456,-0.5032213,-0.030365458,-0.35477963,-0.56870645,-1.0408701,-0.4510052,0.07900857,0.3127741,0.021282094,-0.7235647,0.07994158,-0.12033335,0.028779471,-0.026049366,-0.48566136,0.39365482,0.043316856,0.63293993,-0.47147706,-0.9212747,0.11684221,0.1165185,-0.14778401,-0.6349831,0.48042527,0.30480844,0.8999724,0.082320474,-0.051283125,0.013999413,-0.47252902,-0.028727608,-0.17852159,-0.0660559,-0.58485466,0.192073 -681,0.44901937,-0.23810083,-0.33243436,-0.19963719,-0.36332014,0.05897934,-0.18632911,0.33903363,0.38993308,-0.2879418,-0.011399354,0.06114536,-0.039793357,0.43999636,-0.02119731,-0.65291184,0.056341674,0.1504446,-0.7684119,0.64479285,-0.4443464,0.40337974,0.036068875,0.41815993,-0.13090526,0.28476018,0.3417665,0.06981881,-0.064756386,-0.2315577,-0.13672002,0.019258562,-0.7445257,0.17940532,-0.32302904,-0.25518852,-0.08463042,-0.46113396,-0.20388772,-0.9050483,0.20929495,-0.83536077,0.5519424,-0.09903072,-0.26095998,-0.17335327,0.30983654,0.18254513,-0.24698997,-0.18401861,0.16765359,-0.40919602,-0.11066227,-0.5285364,-0.059872244,-0.44764578,-0.58746445,0.011373117,-0.6749539,-0.33389077,-0.09935728,0.33455694,-0.34996858,-0.13598497,-0.16315642,0.8044503,-0.2354987,0.10878961,0.32502052,-0.503276,0.15819599,-0.71496785,-0.09357435,-0.06228073,0.43832266,0.21791522,-0.36018065,0.53803474,0.4623472,0.40364715,0.26042336,-0.5178474,-0.33210725,-0.24779606,0.13655463,0.4843702,-0.33115658,-0.45063508,-0.21352535,-0.012017236,0.40144396,0.27583668,0.13077481,-0.19992846,0.18682423,-0.08169036,-0.11119881,0.9710181,0.60496306,-0.22027126,-0.23839119,0.20852445,0.5967104,0.10905301,-0.4066835,-0.05515059,-0.08443594,-0.60602534,-0.047654096,0.26147696,-0.06017013,0.5895825,-0.26376745,0.046311323,0.8914117,-0.17199905,-0.15883438,0.17045864,-0.030737072,0.21755864,-0.37947467,-0.055353515,0.41423115,-0.53041995,-0.2296854,-0.56866753,0.6082914,0.10825186,-0.76517284,0.50080895,-0.54689753,0.30638024,0.21048829,0.6624502,0.7516059,0.69355804,0.41986355,0.85937566,-0.13203913,0.009033226,0.32504022,-0.1666066,0.061108768,-0.528342,0.24162725,-0.41226673,0.17678617,-0.103420205,0.10179542,0.14725403,0.44196412,-0.8170299,-0.32897723,0.15366462,1.0397283,-0.14487137,-0.03336183,0.87582546,1.1115596,0.91021895,-0.15042317,1.3036608,0.20918605,-0.22769372,0.011946967,-0.05523886,-0.5843791,0.15636018,0.24264039,0.27284685,0.44843864,-0.19511782,-0.21283855,0.3463125,-0.4909598,-0.18665746,0.17986414,0.21485129,0.23447631,-0.06086835,-0.47169986,-0.13427219,-0.09346685,-0.14246295,0.35180786,0.2433754,-0.52740693,0.5923813,-0.079970725,0.7725314,-0.15091167,0.04873058,0.15335467,0.5460605,0.37465617,0.06929547,0.21775743,0.5657651,0.2740557,0.22137854,-0.4653281,0.25062996,-0.6684469,-0.31631932,-0.17869782,-0.42196152,-0.24332982,-0.06637753,-0.21081744,-0.3488804,-0.04973829,-0.3023984,0.27662435,-2.5679712,-0.36193916,-0.21975657,0.44769335,-0.21132669,-0.115326405,-0.15052103,-0.6299581,0.28683618,0.2641911,0.6124276,-0.7809849,0.24502724,0.49460727,-0.640496,-0.292112,-0.7913749,-0.10201267,0.046504892,0.6405005,0.20749182,-0.1931484,-0.1195536,0.079245456,0.89562094,0.27212504,0.106167465,0.6087952,0.4283309,-0.30841604,0.40425715,-0.1704031,0.5522205,-0.40939254,-0.22124287,0.3422415,-0.62183577,0.11261444,-0.21944307,-0.03469471,0.82720935,-0.3375759,-0.85930383,-0.52238166,-0.1587154,1.0527204,-0.0918512,-0.65637743,0.0799233,-0.15398291,-0.08940753,0.01773887,0.9788288,0.06237919,0.36331865,-0.5269681,0.014815282,-0.25152212,0.21935207,-0.07602528,0.0140881995,-0.31561667,0.8652159,-0.04562885,0.5044894,0.07528757,0.26038164,-0.57318234,-0.42025012,0.006650301,0.7700333,0.48316178,0.083318606,-0.006231606,-0.07428685,-0.234279,-0.44432595,-0.18783753,1.0153117,0.74650663,-0.20713204,0.012502566,0.5586078,-0.15268502,0.0791378,-0.065698594,-0.42369094,-0.2571539,-0.026900282,0.58282703,0.8577825,-0.2170469,0.45734113,-0.12752436,0.42012438,-0.09400421,-0.5614603,0.6989993,0.707153,-0.30015084,-0.009724099,0.43527296,0.35501152,-0.79281497,0.5943235,-0.65666854,-0.41278118,0.818572,-0.20466456,-0.56768835,0.084679775,-0.286944,0.120845675,-0.48076078,0.4676237,-0.3885019,-0.5283908,-0.44158223,-0.23542558,-2.6207163,0.2130243,-0.21256731,0.1428191,-0.64396775,-0.011093158,0.054825205,-0.5081127,-0.49077636,0.12729272,0.30842072,0.6375516,-0.30376408,0.15719287,-0.4419886,-0.30436856,0.07064058,0.5313041,0.11669159,0.24266985,-0.23764457,-0.18924151,0.04407001,0.012093468,-0.68521297,0.13739403,-0.7627639,-0.5171279,-0.17030281,-0.7487724,-0.151434,0.80670494,-0.5385527,0.071379334,-0.30885997,0.24744394,-0.0036139304,0.11577936,-0.01769675,0.23585191,0.2356673,-0.17160246,0.3315864,-0.2518593,0.51962835,-0.050322406,0.5726934,0.1601771,0.12703143,0.24590707,0.4494242,0.7518054,0.011936559,1.1658648,0.19478954,-0.091062896,0.41944772,-0.31009263,-0.4602595,-0.675223,-0.23896863,0.32263756,-0.4009984,-0.32508245,0.15429594,-0.3977381,-0.7869607,0.6763,0.0024171884,0.46893904,-0.056389883,0.67399156,0.42718613,-0.3734167,0.11730576,-0.0051991115,-0.18006429,-0.5587889,-0.116079,-0.7775241,-0.58347756,0.09132111,0.6081916,-0.24805576,-0.034186836,0.044865973,-0.29067698,-0.050223745,0.22022022,0.17869064,0.049984034,0.4931522,0.14938116,-0.651795,0.3040203,-0.21295439,-0.17531453,-0.4557627,0.50154525,0.71931785,-0.6632833,0.5240277,0.50069404,-0.060005344,-0.36391655,-0.5888233,-0.0697485,0.0656467,0.024634533,0.34234315,0.12865978,-0.8677902,0.5348871,0.13772438,-0.481561,-0.7398837,0.18756951,-0.26680237,-0.18586683,-0.19654809,0.5154506,0.16382357,-0.20179437,-0.17423008,0.17869417,-0.6005325,0.16219704,0.06780735,-0.016791293,0.58944213,0.06347292,-0.5044844,-0.8594852,0.05767318,-0.73970705,-0.31225368,0.5207672,-0.15902813,-0.044441663,0.24100828,0.103948,0.42834833,-0.046879265,0.20270589,-0.15503177,-0.41428667,0.46023512,0.48389465,0.41782254,-0.58073294,0.72294134,0.26999217,-0.11929954,0.18662493,0.07502752,0.4006812,-0.008178419,0.65545017,-0.041148383,0.02621498,0.14807789,0.5875776,0.18670091,0.50396794,0.28178403,-0.12693572,0.3255266,-0.13944052,0.33386964,-0.085252576,-0.60415936,0.12685966,-0.12878734,0.03638955,0.5285952,0.24711767,0.35155895,0.25591472,-0.31922057,-0.046866015,0.2218446,-0.104338065,-1.712699,0.3643084,0.26050824,0.9807062,0.192106,0.21769914,-0.3405964,1.043899,-0.1486331,-0.04035894,0.6973749,-0.06504094,-0.30937356,0.7927449,-0.81656617,0.5253838,-0.2021557,0.06471149,0.10295042,0.18856488,0.3739757,0.824719,-0.29644805,0.025249664,-0.04657875,-0.20557532,0.1776383,-0.42407635,0.3747417,-0.084108815,-0.49700734,0.5755888,0.13929592,0.3702857,-0.3197656,0.11842072,0.13288182,-0.17936246,0.38320777,-0.18390203,-0.23528692,-0.13912372,-0.53035885,0.0073905955,0.4580202,-0.11975391,0.2903809,-0.039433025,0.06852694,0.017680217,-0.1167558,-0.15917952,-0.09428457,-0.78785074,0.04005962,-0.24756797,-0.81776375,0.69007564,-0.30709168,-0.03182274,0.2485513,-0.02021392,-0.2774061,0.30570778,0.24074993,0.6687626,0.0075663878,-0.40480182,-0.26660627,0.04934444,0.014165897,-0.52270985,0.28561053,-0.2730086,0.12516603,-0.3895755,0.6559581,-0.33350345,-0.48916295,0.10416817,-0.30249432,-0.14295992,0.5571943,-0.22644672,-0.16160525,-0.010684004,-0.26197553,-0.18142912,-0.047116462,-0.17422684,0.31474236,0.25965798,-0.115949646,-0.22426248,-0.32680023,-0.24819605,0.48662582,-0.050463118,0.33398274,0.30244857,0.090839915,-0.24569415,0.20149678,0.38028258,0.55348754,0.21761928,-0.016287126,-0.30458674,-0.41821894,-0.49263456,0.27803883,0.014625361,0.23994645,0.2059734,-0.3632178,0.97236645,-0.13659123,1.308525,-0.01652928,-0.48437926,0.051236197,0.73948723,-0.093312114,0.16832733,-0.6026841,1.1010929,0.49147856,-0.23293811,0.1285515,-0.6426169,0.19395979,0.5969549,-0.4471296,-0.18791144,-0.043575965,-0.55834615,-0.40121943,0.20901799,0.14713465,0.20265485,-0.20734079,-0.01974403,0.1262995,0.14436477,0.32358584,-0.6574298,-0.00045230755,0.3129349,0.24561647,-0.2396705,0.11619762,-0.26711348,0.39758873,-0.8392613,0.32018882,-0.49081072,0.06297684,-0.19055833,-0.33672488,0.33813146,-0.12590274,0.3979969,-0.36147356,-0.48108244,0.074495114,0.31120598,0.18786089,0.075011276,0.6152301,-0.37523067,-0.121854596,0.3501386,0.73994255,1.4066983,-0.3262428,0.2039445,0.004454597,-0.6485767,-0.74593186,0.41220525,-0.43451265,0.06289603,-0.22540005,-0.48253325,-0.45855233,0.13019228,0.17239493,0.16662186,0.058215372,-0.7375987,-0.40946,0.11993523,-0.46441942,-0.15454076,-0.3593273,0.43873882,0.7105747,-0.17247738,-0.342673,-0.029788824,0.3050275,-0.22136417,-0.85260326,-0.014813295,-0.39521158,0.20042473,0.09992209,-0.30300066,0.0317228,0.09215872,-0.8311379,0.293031,0.3077612,-0.43878227,0.06257008,-0.096843235,-0.027911855,0.7138542,-0.16876386,0.010033681,-0.4956753,-0.6223132,-0.8750518,-0.5458101,-0.00032959535,0.16062102,-0.096035756,-0.5914115,-0.22574663,-0.22576159,-0.23675233,-0.020268746,-0.7007561,0.30932215,0.14412704,0.6816121,-0.4188226,-1.1609712,0.043471493,0.19303177,0.052670047,-0.7370189,0.30439037,-0.12705733,0.8121015,0.13344313,-0.10583475,0.088453166,-0.5194281,0.009264304,-0.40041763,-0.21458231,-0.7365889,0.18120511 -682,0.4224083,-0.3473208,-0.34345976,-0.11824502,-0.1809943,0.05566901,-0.05471024,0.7405377,0.23766991,-0.25902516,-0.021817148,-0.011143779,-0.034596574,0.44553286,-0.12135152,-0.50050455,-0.056239676,0.2607985,-0.2850822,0.6374723,-0.31602177,0.14614998,-0.26303652,0.4879341,0.14426555,0.28995284,0.024602788,-0.0010106222,-0.37028337,-0.12347162,0.014832752,0.36397633,-0.4042028,0.27127036,-0.2251399,-0.25051966,0.02587596,-0.5279699,-0.41482073,-0.5669761,-0.0042380816,-0.6436431,0.41935435,0.059871696,-0.31786343,0.36445373,-0.030015392,0.2231152,-0.31419662,-0.15751448,0.057018,-0.019843826,-0.0054655224,-0.300196,-0.19802025,-0.38224822,-0.531318,0.08607707,-0.32883453,0.046302114,-0.0754552,0.082391106,-0.26652533,-0.1789907,0.005838028,0.52432317,-0.36273065,0.119303055,0.12977849,-0.11360519,-0.0366542,-0.41841292,-0.21523859,-0.14915779,0.18125667,-0.067415774,-0.22947574,0.3155716,0.18313047,0.3580348,-0.22290036,-0.14599366,-0.39456126,-0.041422196,0.070388414,0.5338239,-0.19432804,-0.63569343,-0.059266213,0.053806126,0.15178216,-0.010151361,0.16314067,-0.045587473,-0.09374343,-0.08320023,-0.26027575,0.28371137,0.4509625,-0.406772,-0.32134992,0.41049632,0.45745018,0.124203436,-0.23257677,-0.21680912,0.081951804,-0.5025572,-0.15429778,0.034842875,-0.13008772,0.46994844,-0.12512615,0.15960236,0.5312218,-0.17352836,-0.08501339,0.04843408,0.21375594,-0.023236854,-0.35567686,-0.42298597,0.23225321,-0.3044948,-0.052553337,-0.12374053,0.7151669,0.22244827,-0.6659196,0.43720964,-0.42325482,0.079730034,-0.05584648,0.31935447,0.5304419,0.5443101,0.38118964,0.44947582,-0.20738521,0.1415823,-0.017288607,-0.28900653,0.042886507,-0.29502863,-0.09104991,-0.5098561,0.2289336,0.0031480703,-0.14114669,0.27525604,0.21366973,-0.5037733,-0.2607614,0.27209476,0.8639714,-0.21531154,-0.19588658,0.6635305,0.9465021,0.9001082,-0.036566567,0.8924336,0.2954128,-0.24191757,0.22549927,-0.34318373,-0.7184406,0.15524223,0.31951395,-0.36216754,0.3874465,0.00622837,-0.093231134,0.30410337,-0.18655284,0.019538447,-0.15852557,0.17514353,0.13979614,-0.025857458,-0.54428405,-0.45303792,-0.22217189,-0.12998118,0.13032874,0.3702578,-0.19066116,0.37679943,0.0019469319,1.6496751,0.16875036,0.045763463,-0.016207043,0.687399,0.26507214,-0.2335714,-0.13339022,0.45058462,0.24986891,0.08269738,-0.43869632,0.18819873,-0.23699127,-0.4504202,-0.10046547,-0.34823066,-0.01423872,0.030809466,-0.34273598,-0.16667642,-0.0021016342,0.012526789,0.50236005,-2.924049,-0.12564091,-0.041778836,0.42070058,-0.2815099,-0.31075224,-0.19699681,-0.36453447,0.24634399,0.29266495,0.5154336,-0.5576435,0.27244663,0.29445982,-0.60709274,-0.058668826,-0.46642372,-0.17266835,-0.065904476,0.3636143,-0.04826471,0.19152975,0.18182328,0.12672076,0.46224442,-0.09140404,0.13949075,0.18922374,0.30271262,0.088286206,0.3028119,-0.03493379,0.5236792,-0.3830698,-0.16551228,0.145772,-0.54978716,0.39602533,0.12619261,0.10740823,0.49306598,-0.38665432,-0.896833,-0.4716106,0.12280041,1.1293143,-0.18299487,-0.2578094,0.09211177,-0.3524742,-0.30568457,-0.12103437,0.3007013,-0.08831519,-0.12644081,-0.6764097,0.035160728,-0.017643008,0.15003729,-0.027845593,-0.041491773,-0.24180725,0.47000816,0.00627222,0.5300006,0.24013035,0.09680806,-0.30179474,-0.3710398,-0.051210616,0.75813514,0.25690326,0.22021832,-0.27675068,-0.2701056,-0.24744976,0.11703943,0.06299867,0.40347257,0.43646914,-0.15424904,0.14406133,0.31342712,0.0073154187,0.19975974,-0.102185264,-0.21691416,-0.21836455,0.14470069,0.49783424,0.68744653,-0.2950477,0.4431978,-0.03940795,0.27741444,-0.117770955,-0.369268,0.41879353,0.9011742,-0.1865768,-0.22670926,0.5523334,0.5405075,-0.32025614,0.40473494,-0.42507145,-0.11814989,0.36127087,-0.23788516,-0.24517687,0.22426395,-0.27020484,0.12751919,-0.80985403,0.34108847,-0.20508525,-0.364685,-0.6184521,-0.061267886,-3.148106,0.2117954,-0.072888635,-0.24123037,-0.012234085,-0.10802021,0.07316866,-0.5971519,-0.4485251,0.3290372,0.17458978,0.6023164,-0.048082747,0.10797346,-0.30038986,-0.45523438,-0.3326287,0.16470985,0.14907035,0.4054904,-0.026048448,-0.5006622,-0.15285079,-0.19021717,-0.27196202,0.13474464,-0.73214406,-0.29113325,-0.09709669,-0.6326365,-0.2389259,0.6646031,-0.15344565,0.025734525,-0.15756117,0.06479754,-0.1644279,0.159415,-0.039538555,0.091502175,0.00843209,-0.14462663,0.09953786,-0.27102724,0.25187454,0.0019795708,0.40018886,0.24342504,-0.065422386,0.07131083,0.662961,0.67648983,-0.12347057,0.8431403,0.48570427,-0.18308675,0.28379837,-0.24146366,-0.18875085,-0.40005776,-0.31813008,-0.027807755,-0.32698494,-0.44786587,0.006835282,-0.37789854,-0.74733406,0.63420373,-0.0746287,0.009731097,-0.041328184,0.26241365,0.4983122,-0.32179627,0.09503438,-0.019727316,-0.13294698,-0.47624508,-0.21141447,-0.4888017,-0.24460109,0.36109218,0.9012541,-0.32511336,0.029960405,-0.017238105,-0.31627247,-0.0844519,0.12664564,-0.048196964,0.18601656,0.40298653,-0.12974007,-0.4862154,0.38536754,-0.17972885,-0.15988481,-0.32954794,0.17721783,0.6281068,-0.5900008,0.75340146,0.3178466,-0.12621008,-0.20291089,-0.44129524,-0.33736476,-0.0013639672,0.013340418,0.30649194,0.2143015,-0.90819496,0.34152296,0.26846126,-0.48616585,-0.61982155,0.43574858,-0.16388942,-0.25174528,-0.22566521,0.30593967,0.16152641,-0.007547613,-0.20653388,0.2646887,-0.36940292,0.027489444,0.12242271,-0.06376515,0.08298719,-0.1779697,0.079221055,-0.74058515,-0.0603821,-0.35591474,-0.33904645,0.41833085,0.08166294,0.121432304,-0.03005745,0.09221564,0.2590806,-0.3724964,0.0047230464,0.009145098,-0.23967096,0.4332938,0.23944394,0.55935335,-0.40069586,0.46204942,0.017726023,-0.008978054,0.015078924,0.015319139,0.35079017,0.15656434,0.40752777,0.09506457,-0.19122693,0.21628454,0.7337141,0.1982642,0.4800509,0.06412788,-0.19888973,0.16362096,0.039750345,0.14600822,0.11231347,-0.3330095,0.030241897,-0.13153712,0.15498935,0.36739329,0.07226796,0.2976884,-0.14444801,-0.23303969,0.021000495,0.18640791,0.23045988,-1.0535192,0.30334112,0.17394662,0.7556812,0.32175085,0.1951113,-0.065159604,0.7726962,-0.1592335,0.16611502,0.32759076,-0.026224282,-0.5822968,0.50154287,-0.55967814,0.5573911,-0.04056373,0.0040322244,0.05073253,-0.06560454,0.52825147,0.6755065,-0.10155033,0.09546856,0.10434522,-0.37394664,0.09273029,-0.30974367,0.16060343,-0.5336464,-0.19165017,0.59444445,0.48833555,0.31946585,-0.107668675,0.039742786,0.11220066,-0.035956208,0.07087762,0.08185279,0.08612866,0.15649815,-0.72203857,0.0076960283,0.52962935,-0.08727664,0.09576756,0.0067932946,-0.25111714,0.33006737,-0.21322373,-0.053786617,-0.0033206749,-0.6495823,0.03556096,-0.21894458,-0.49053308,0.637403,-0.04396971,0.24317744,0.13333447,0.09332402,-0.2946182,0.48293978,0.08238179,0.80213964,-0.08471949,-0.15198123,-0.36795935,0.1736687,0.099391,-0.15316074,0.0988021,-0.4199777,-0.04179377,-0.4101719,0.2935634,0.105253525,-0.24549398,-0.19745634,-0.06595464,0.18983316,0.43325266,-0.032215457,-0.12245357,-0.31055036,-0.090344556,-0.42191833,-0.26354653,-0.06709329,0.3058689,0.30973807,-0.09925985,-0.0416982,-0.08868982,0.03612565,0.50229484,0.00451641,0.28866142,0.2776654,0.26344046,-0.14508447,-0.08180909,0.048599448,0.47173196,-0.06487109,-0.15952322,-0.37453836,-0.23549321,-0.39816383,0.16147205,-0.15371455,0.26038527,0.02988699,-0.23085944,0.68909854,-0.24254963,1.0753891,-0.07715338,-0.40185738,0.15682936,0.45385987,0.10368932,0.07513123,-0.38883114,1.0016758,0.362554,0.005317611,-0.11750939,-0.43813267,-0.12335718,0.08270727,-0.26884058,-0.26866242,0.030934887,-0.4590376,-0.14454173,0.21056744,0.081626125,0.42114845,-0.15395534,0.29778,0.2885807,0.16597304,0.18162373,-0.3881567,-0.05894753,0.25668478,0.38595408,0.052893158,0.12296469,-0.4100836,0.27897447,-0.43111134,0.21844646,-0.24652262,0.14694302,-0.26151133,-0.42712912,0.1602275,0.14176987,0.3333725,-0.43748775,-0.34178394,-0.24560454,0.49606612,0.1591051,0.1356545,0.42452773,-0.2928577,0.05009515,0.13609356,0.45539576,0.7799012,-0.32375926,-0.14515385,0.4420603,-0.3209191,-0.763619,0.23439506,-0.2185628,0.3463526,-0.13583866,-0.14974914,-0.7460472,0.30515096,0.2793009,0.11208774,-0.101099975,-0.4270948,-0.09748854,0.2713031,-0.30855042,-0.18952367,-0.30235714,0.072520986,0.65845346,-0.24438177,-0.52382326,0.06579628,0.1441089,-0.12910579,-0.37638783,-0.14361162,-0.44068724,0.15945399,0.06630932,-0.27614155,-0.26856858,-0.0902474,-0.42536062,0.20214789,0.12645903,-0.31209254,0.059147324,-0.341649,-0.036679216,0.87336713,-0.22592464,0.351496,-0.48499224,-0.51767653,-0.878836,-0.49810532,0.49731636,-0.02914372,-0.066725396,-0.65496695,0.12732004,-0.03533599,-0.3793673,-0.13281666,-0.2982759,0.3698612,0.13556676,0.060367107,-0.022995021,-0.80648756,0.27038,0.13042748,-0.14305137,-0.6314005,0.33917695,-0.17262115,1.136617,0.016604422,0.18498783,0.2846929,-0.32949764,-0.23553881,-0.2928496,-0.11464614,-0.44499797,0.13779424 -683,0.4189479,-0.17406456,-0.5874571,-0.072081976,-0.19051436,0.060063574,-0.20418637,0.36551812,0.12328507,-0.3227058,-0.061023474,-0.06411736,0.009743305,0.42147478,-0.058586847,-0.67446053,0.080586396,0.22126004,-0.4480695,0.6594771,-0.44925213,0.28869584,-0.13255036,0.25022042,0.13369772,0.32721785,0.14283146,-0.1325755,-0.0142264115,-0.11724896,-0.29119805,0.2545977,-0.52131325,0.18215452,-0.0030010703,-0.33530158,0.18973167,-0.28881487,-0.24398462,-0.6273765,0.15717714,-0.7634179,0.5292707,-0.099935286,-0.20436592,0.17873648,0.049781833,0.37504515,-0.28494126,-0.10304708,0.035237152,-0.19371898,-0.22188437,-0.2151213,-0.09292455,-0.45027104,-0.47036186,0.0100869285,-0.5056119,-0.1133757,-0.2942741,0.09750427,-0.4502413,-0.079090215,-0.1274766,0.28918362,-0.37670073,0.011089174,0.16736674,-0.03895948,0.15889095,-0.5494166,-0.06783914,-0.10271646,0.2981797,-0.14952569,-0.32689455,0.2494578,0.40533546,0.4227729,0.10636365,-0.2591541,-0.26604196,-0.277214,0.15598392,0.6062693,-0.03657111,-0.52368873,-0.20052303,0.05781577,0.07938057,0.220306,-0.043821048,-0.31521899,-0.14630851,0.115747325,-0.19430317,0.141413,0.34734035,-0.5071489,-0.37110066,0.35510764,0.50956655,0.12891196,-0.1655902,0.031922076,0.0048682955,-0.4935816,-0.12605673,0.15403502,-0.100049295,0.49974588,-0.2112463,0.19828913,0.6393072,-0.24695103,-0.08978095,0.05035184,0.04905071,-0.26427665,-0.3390753,-0.07462291,0.1802477,-0.59988725,0.24349652,-0.118431725,0.7483409,0.25227067,-0.5520123,0.3425152,-0.5983033,0.14499304,-0.16130237,0.59106207,0.74594927,0.3685524,0.3157081,0.7384758,-0.4576087,0.11260059,-0.123351865,-0.5502923,0.116938904,-0.24118936,-0.011490158,-0.50589144,0.21497117,0.1610501,-0.013421067,0.01489161,0.2237355,-0.51278317,-0.0040358477,0.07622374,0.6568135,-0.30587217,-0.20422567,0.79383755,0.8896646,0.99382263,0.08627258,1.1892563,0.27648202,-0.22760679,0.11529305,-0.2587255,-0.6640593,0.2117286,0.43041295,0.01345875,0.13386251,0.23121561,0.010524758,0.5144788,-0.39331225,-0.013846474,-0.19059958,0.4065641,0.113395706,-0.10891355,-0.39516374,-0.20173381,-0.049354758,0.0013720308,0.1718856,0.3457536,-0.17117505,0.40250605,0.10688803,1.6131951,-0.02643886,0.17132604,-0.009141544,0.4401984,0.21846008,-0.12535588,-0.099272765,0.27054673,0.4114748,0.14762874,-0.5405214,-0.092999496,-0.2779316,-0.4775083,-0.15361738,-0.32644495,0.002039228,-0.07089043,-0.30989307,-0.14310895,-0.006980351,-0.27175182,0.5977378,-2.8608935,-0.21142158,-0.21782854,0.2387683,-0.2660119,-0.49426177,-0.17696269,-0.5118958,0.40881515,0.24238165,0.5093812,-0.6602415,0.37994602,0.19750457,-0.39780697,-0.16478913,-0.6809388,0.028602531,-0.09916411,0.35663572,0.0061763152,-0.10928462,-0.12660606,-0.03614155,0.5588955,-0.115502186,0.022519732,0.22533305,0.115260564,0.22701167,0.48483902,0.1305614,0.70080817,-0.037410762,-0.15388606,0.21524744,-0.124214135,0.49244967,-0.12814657,0.19946171,0.4398117,-0.38858393,-0.874115,-0.76382667,-0.23681219,1.1206739,-0.28816268,-0.32266757,0.1910863,-0.3466969,-0.34411913,-0.077753104,0.34565902,-0.19320366,-0.1290193,-0.61061543,0.1771284,-0.011723055,0.2258358,-0.01993623,-0.011568261,-0.40298337,0.5001735,-0.08867531,0.40517312,0.35547575,0.15252149,-0.08841042,-0.38273042,-0.0018271847,0.9650364,0.33059356,0.0992971,-0.15900543,-0.32414797,-0.34562874,-0.090754226,0.089451805,0.46810326,0.6910834,-0.090883926,0.12763068,0.18571083,-0.02564885,-0.011696356,-0.064077996,-0.24901724,0.0010042542,-0.05370144,0.6107225,0.43677345,-0.07066061,0.66609275,-0.07162369,0.20380974,-0.07059574,-0.4925182,0.53714496,0.9361718,-0.33782095,-0.20219886,0.62491375,0.44196177,-0.27849856,0.4197376,-0.52637714,-0.22451583,0.3329521,-0.11654425,-0.16900064,0.10821637,-0.31400234,0.14351659,-0.8902254,0.22699703,-0.113484755,-0.58947265,-0.4720456,-0.07524387,-3.9181707,0.16644774,-0.15372756,-0.06413252,-0.008821053,-0.15236881,0.27648005,-0.56569713,-0.51841056,0.28506526,0.12547745,0.7103238,-0.054043382,0.059889346,-0.16880843,-0.33773443,-0.36206523,0.12933931,0.021354625,0.24345013,-0.0801839,-0.38614044,0.0686705,-0.15536924,-0.37633747,0.15597442,-0.5888448,-0.45532152,-0.21430624,-0.44904563,-0.39346093,0.7329603,-0.4014996,0.04723915,-0.26118892,-0.038926028,-0.1890306,0.34909597,0.10621513,-0.03679485,0.032758925,0.1118774,0.060209077,-0.368392,0.21608843,0.01571443,0.18479411,0.29126188,-0.012142117,0.22035466,0.5504195,0.5736304,0.04307688,0.8392991,0.5188345,-0.1765431,0.23612778,-0.3340074,-0.25887734,-0.4926901,-0.37917104,-0.14306447,-0.48573706,-0.4327028,-0.07874883,-0.2579005,-0.7353671,0.6138745,0.05660415,0.113221996,-0.049241215,0.4373874,0.55133957,-0.17971216,0.003171182,0.036189783,-0.074351445,-0.47272363,-0.33354965,-0.5308325,-0.5088735,0.17801414,0.9593262,-0.3461301,-0.044493917,-0.065453306,-0.33600163,-0.05028089,0.2219157,0.046633955,0.25149795,0.5321101,-0.060231436,-0.7277619,0.47518,-0.28728127,-0.18994904,-0.55586594,0.23773435,0.5229468,-0.8459925,0.31653354,0.31128374,0.10743016,-0.057951633,-0.4517619,-0.30626902,0.014618456,-0.3889398,0.33686945,0.2683516,-0.8600316,0.53574383,0.32030436,-0.1329088,-0.6811319,0.40537548,0.024341363,-0.108950146,-0.049339466,0.33231336,0.1390723,0.16024637,-0.2744395,0.087173864,-0.49702516,0.20201077,0.3207565,-0.10393504,0.2903255,-0.18123998,-0.13501278,-0.6928991,-0.27145293,-0.419206,-0.16570528,0.14540097,0.1639343,0.08816109,0.13021149,0.07157777,0.3184463,-0.50281864,0.12739658,-0.09420104,-0.25215694,0.2051686,0.4241342,0.2996312,-0.36671,0.6297313,0.060345557,-0.10876433,-0.18325676,-0.018678367,0.49556103,0.12044687,0.46502426,0.01690091,-0.28930357,0.1981847,0.84449595,0.1516161,0.41732758,0.0023868254,-0.0851575,0.087527595,0.12802349,0.22043996,0.35892066,-0.46577883,-0.027710319,-0.14928658,0.22676952,0.5654229,0.22670543,0.28898188,-0.0030695754,-0.27066454,0.036994237,0.00090608216,0.08482661,-1.2372515,0.6005854,0.21397011,0.67427194,0.41511366,-0.018596947,0.037620146,0.45215067,-0.24614742,0.234569,0.1866702,-0.19680712,-0.3715674,0.54385173,-0.78638375,0.56205523,0.023450227,0.071826264,0.07142279,-0.080723695,0.4631558,1.1030705,-0.25801748,0.111948796,0.0010474005,-0.21560363,0.05280934,-0.21535464,-0.07094174,-0.6870696,-0.29983887,0.6213111,0.44213182,0.46478075,-0.16777252,-0.0077447193,0.08126027,-0.067656666,0.044058986,-0.15138803,0.2675787,-0.003688046,-0.52919424,-0.35386345,0.6017828,-0.015591277,0.20153907,0.01877168,-0.24788465,0.2940645,-0.03460351,-0.031029178,-0.112100445,-0.5216003,0.0922723,-0.2035736,-0.5652463,0.53065264,-0.25900236,0.31278804,0.21770604,0.07395579,-0.21038471,0.5591684,0.21118318,0.6708167,-0.08680557,-0.21010716,-0.3316016,0.24631096,0.21229431,-0.18971266,-0.16721596,-0.32543787,0.1061991,-0.66219807,0.35957256,-0.1065285,-0.41102076,-0.09154761,-0.14519511,-0.024949819,0.48956323,-0.07825845,-0.1984022,-0.013489996,-0.14948092,-0.22283319,-0.27586186,-0.18849875,0.24288876,0.204016,-0.012723961,-0.14538713,-0.16693279,-0.18908544,0.21108203,0.010293305,0.21506515,0.27162978,-0.01884731,-0.23376809,-0.18996754,0.17394058,0.36293697,-0.18096754,-0.28875324,-0.25850895,-0.4003376,-0.39794382,0.03304438,-0.012435096,0.41619262,0.0025903583,-0.1942767,0.68334675,0.019102901,1.1858355,0.13423887,-0.34689885,0.04473307,0.49302456,-0.04239599,-0.012159079,-0.28815898,1.0250566,0.39092216,-0.13883637,-0.14509046,-0.45956424,-0.15874687,0.4331942,-0.14786744,-0.12065486,-0.03080191,-0.4674086,-0.34312987,0.22513604,0.19057308,0.23605596,-0.021326909,0.023271516,0.28842112,0.035200816,0.30940872,-0.3648384,0.007472481,0.35420376,0.36969495,-0.081481814,0.2643068,-0.2869878,0.393279,-0.54981494,0.035298288,-0.16111782,0.246695,-0.0694063,-0.31862158,0.29351988,0.114002176,0.3787587,-0.22348125,-0.37977982,-0.32075945,0.5912928,0.18932489,0.06610412,0.6513721,-0.19270681,-0.0095526045,-0.006435573,0.41129255,0.9550392,-0.22073223,-0.047141373,0.39543414,-0.31703955,-0.49381444,0.3649752,-0.20765369,0.20548879,0.054041833,-0.3343937,-0.5321675,0.26166502,0.20679143,0.14210482,0.046659593,-0.45021108,-0.09365039,0.1667925,-0.1857417,-0.25313503,-0.26285225,0.1654755,0.76423275,-0.30798012,-0.32394648,0.11670982,0.12142716,-0.18897113,-0.52646846,-0.09439083,-0.3140122,0.32152194,0.104182206,-0.33695108,-0.08083111,0.17491055,-0.53436476,0.09302688,0.23642053,-0.32249457,0.2999644,-0.22607303,0.07133107,0.9960095,-0.15487032,0.23254834,-0.61599606,-0.48209977,-0.6472944,-0.318221,0.5363395,0.24515043,0.094267294,-0.50945663,0.04969583,0.041366905,-0.05631582,-0.038084257,-0.40199658,0.47713968,0.06976684,0.2445538,0.113469966,-1.0102942,0.019308077,-0.09177655,-0.109271094,-0.4657406,0.44624096,-0.1555217,0.8537887,0.16222729,0.097112775,0.33393624,-0.28965363,0.070520684,-0.18801959,-0.109765045,-0.8442613,0.005603935 -684,0.3384386,-0.081652395,-0.4640349,-0.23429942,-0.33142692,0.21530035,-0.10089266,0.47444633,0.1732802,-0.2712194,-0.02408531,-0.057337638,-0.126525,0.40043306,-0.16112867,-0.8084827,0.01625246,0.06044638,-0.66584545,0.39736387,-0.4965369,0.24002619,-0.14813614,0.47532108,0.05356322,0.23683262,0.12842342,0.033674613,0.11697454,-0.09907325,-0.0546766,0.09594619,-0.6091077,0.2699152,-0.0422417,-0.14708103,-0.13199027,-0.26254684,-0.27672148,-0.5616477,0.33936375,-0.6483458,0.37618023,0.018466953,-0.39292195,0.09277541,0.09702081,0.1596845,-0.3983501,-0.047262523,0.20769031,0.01234514,0.11681298,-0.05832045,-0.24602246,-0.5193782,-0.61685383,0.0041403347,-0.56693053,-0.15350212,-0.43741316,0.1668428,-0.23356389,-0.061642256,-0.2786299,0.553991,-0.35874286,0.1714455,0.24199669,-0.17543085,0.105418526,-0.47042277,-0.11943303,-0.101449415,0.15790482,0.054924216,-0.29052562,0.3249927,0.37165162,0.4342673,0.027863918,-0.19385658,-0.23931742,-0.059672765,0.15721616,0.282693,-0.12549782,-0.3397881,-0.22178774,-0.106914185,0.061150942,0.14850421,0.07538293,-0.4589045,0.034864556,0.09327059,-0.23787396,0.27464223,0.43316677,-0.4618034,-0.32709572,0.37283334,0.25446653,0.11672099,-0.24231015,0.069621496,0.009755762,-0.5548396,-0.28333354,0.17048046,-0.13438,0.40560934,-0.10392224,0.14313483,0.8243899,0.032991312,0.023677155,-0.075087085,-0.13201003,-0.049567103,-0.46712357,-0.10183437,-0.043443985,-0.49338087,0.08214987,-0.21852185,0.76731926,0.11096965,-0.88767,0.34770617,-0.5426478,0.06396278,-0.21479486,0.4625627,0.8261004,0.34793624,0.07583632,0.7880998,-0.58527035,-0.0045995777,-0.053932685,-0.397718,0.1883746,-0.06568483,0.06416865,-0.43976405,-0.072055,0.09990377,0.06633661,-0.03476456,0.18995579,-0.38862392,-0.04478278,-0.011484014,0.69362676,-0.34984642,-0.19420335,0.63809675,1.0698463,0.9202571,0.09965233,1.3148905,0.23313694,-0.11959901,0.3282703,-0.31827933,-0.54029334,0.20657204,0.31595382,0.44531456,0.2150602,0.041289564,0.16061607,0.50418466,-0.17679732,0.19482757,-0.046887193,0.22062995,0.07997523,-0.06360204,-0.2242888,-0.4125164,0.20618321,0.034863282,-0.051119983,0.32470968,-0.13379253,0.110211626,0.104597196,1.4124411,0.16383247,0.14753357,0.088649526,0.5055777,0.25057617,-0.1589267,-0.104747295,0.28475302,0.35071468,-0.017758662,-0.59099686,0.08887507,-0.29681468,-0.40788943,-0.09741243,-0.41350383,-0.22506772,-0.02801108,-0.6008572,-0.18148279,0.012909323,-0.29686356,0.5343102,-2.7859285,-0.16297258,-0.2322546,0.20956554,-0.25777587,-0.20659934,-0.098345585,-0.3915554,0.3367955,0.4431288,0.3027888,-0.53784597,0.41893277,0.37472177,-0.3505196,-0.0032978228,-0.65126795,-0.17796513,0.0023806777,0.33623937,-0.026099432,0.11214379,-0.18316546,0.37708554,0.58488643,0.050684504,0.05478045,0.1953996,0.37160984,-0.14005825,0.635058,0.07259416,0.55819494,-0.24543677,-0.117112935,0.24354233,-0.41464403,0.45673364,0.15968633,0.15137787,0.42894793,-0.44299808,-0.89753735,-0.5893203,-0.42765924,1.1116251,-0.45786783,-0.20994374,0.35655278,-0.29332632,-0.12121802,-0.10308434,0.5994151,0.06688065,0.07296673,-0.6858743,0.13239376,-0.16063888,0.14163272,-0.08212594,-0.0025699225,-0.26439792,0.7015198,-0.09336839,0.6779601,0.2711802,0.038902692,-0.20591514,-0.37730142,0.09536266,0.7570825,0.30366442,0.091967545,-0.11521525,-0.14714539,-0.33687735,-0.1682184,0.23570514,0.5702768,0.47904077,0.048884597,0.15294503,0.2914121,-0.24769484,-0.037670884,-0.08711543,-0.24425241,0.039404724,0.0932046,0.5888758,0.6101344,-0.13233995,0.35869503,-0.11870384,0.09083571,-0.34113067,-0.4269362,0.4995656,0.6112111,-0.07962178,-0.22647741,0.52433664,0.46227422,-0.16974212,0.33105752,-0.54575574,-0.23038694,0.7747593,-0.09444838,-0.3735481,-0.027871132,-0.27043647,-0.07799633,-0.79850227,0.20971605,-0.3125995,-0.5086373,-0.37620863,-0.25184807,-3.9951274,0.20726551,-0.18102838,-0.10449542,-0.16750643,-0.10837978,0.4811583,-0.59070224,-0.50751746,0.015513271,0.05006985,0.52647895,-0.056083374,0.11287474,-0.3211449,-0.1382272,-0.33310843,0.26661834,0.09678423,0.29013082,-0.04664622,-0.39151025,0.07652598,-0.27927655,-0.5132529,0.057381094,-0.4309258,-0.46813604,-0.0049275183,-0.44458064,-0.22002389,0.8172861,-0.36866397,-0.024191065,-0.13273966,-0.1008827,-0.3288627,0.42984077,0.14179137,0.13312605,0.011396102,0.029125402,-0.28029293,-0.41514388,0.28869197,-0.026262565,0.3825075,0.33247048,0.0017974632,0.10971496,0.68941814,0.61023885,-0.029941622,0.77745473,0.27879846,-0.081074916,0.44555706,-0.23734677,-0.19566521,-0.5831036,-0.23209593,-0.2432524,-0.28824002,-0.48882547,-0.13708247,-0.34399018,-0.8046888,0.26763687,0.093304835,0.089159295,-0.16643496,-0.0005911248,0.19397174,-0.10099338,-0.021979187,-0.052579265,-0.24035694,-0.58530873,-0.52481943,-0.58769745,-0.47428778,0.27420858,1.040559,-0.16398704,-0.26419955,-0.076743655,-0.42526117,-0.031969845,0.03832484,0.18780783,0.2279741,0.2676783,-0.12399558,-0.67937905,0.5037643,-0.08957194,-0.09074129,-0.563009,0.11624338,0.72809464,-0.5564971,0.6545929,0.20781745,0.22096644,0.16004078,-0.5248519,-0.25899318,0.16491024,-0.2574116,0.6024679,0.24419269,-0.7373907,0.42492566,0.16760638,0.0799982,-0.6281005,0.6227595,0.008549579,-0.025956346,-0.05056595,0.30105233,0.17115827,-0.095245324,0.0708364,0.30872947,-0.61580145,0.24322589,0.27606636,0.035497487,0.44687793,-0.093777545,-0.016912635,-0.5073815,-0.04581387,-0.5095286,-0.2518711,0.10788976,0.051013503,0.18648863,0.21108758,-0.026718616,0.3097939,-0.16158149,0.1865174,0.061669767,-0.18236354,0.38147527,0.3879142,0.4116456,-0.4941998,0.5343998,0.088314995,0.2432683,0.26426664,0.09319891,0.42571098,0.3170486,0.47549888,-0.19783604,-0.10633634,0.25786242,0.7100902,0.20580986,0.24603999,0.07196001,-0.19774409,0.23615941,0.14352523,0.057137225,0.008590319,-0.4384353,-0.011163796,0.012392973,0.28227657,0.36306587,0.06465269,0.16680299,-0.010251633,-0.17127934,0.23623155,0.15563548,-0.21925004,-1.2710842,0.43868548,0.24639866,0.68438685,0.6158724,-0.006611117,-0.032185614,0.599352,-0.27665496,0.08866312,0.47761917,0.06421752,-0.4479817,0.55756265,-0.53628784,0.6457406,-0.1954067,0.0034196633,0.070402995,0.20125268,0.36797646,0.8808948,-0.03870413,0.08536102,0.078099124,-0.35545966,0.13629659,-0.32619375,0.11411478,-0.48600706,-0.23362027,0.5758449,0.49417907,0.25467196,-0.3805615,-0.0925917,0.06481854,-0.16702999,-0.022142818,-0.05115952,-0.113891944,0.020635584,-0.73295957,-0.32821217,0.47397617,-0.39233974,0.0524616,0.1423376,-0.43037567,0.3529415,-0.18454881,-0.0049179965,-0.07123332,-0.6435521,-0.10053355,-0.24804406,-0.38845477,0.28502208,-0.5187486,0.22101161,0.19563548,-0.051167797,-0.31704155,0.36432737,0.08378464,0.78225327,-0.08328193,-0.017437091,-0.31392553,-0.06382076,0.24611054,-0.17812058,-0.20191751,-0.51726997,0.031767704,-0.5098605,0.28784814,-0.113584325,-0.20222914,-0.09538321,-0.04108881,0.0748871,0.45033154,-0.26573175,-0.14002384,-0.18991902,-0.038795616,-0.22827516,0.014410274,-0.2978756,0.2998194,-0.05319873,0.11802703,0.042579733,-0.052597873,-0.012922636,0.19660972,0.10930235,0.2747191,0.2722266,-0.060067296,-0.245486,-0.026205828,-0.08631711,0.32568893,0.13659832,-0.021107929,-0.16760072,-0.13796426,-0.31817892,0.43182674,-0.14956467,0.23194215,0.0015465809,-0.53757584,0.5995678,-0.010518032,1.1205407,0.043705266,-0.33455512,0.08765658,0.48033613,0.056397,0.20275709,-0.30857834,0.63948077,0.5623326,-0.10752536,-0.29672593,-0.26680383,-0.13765217,0.14499648,-0.29974574,-0.20023204,-0.07658102,-0.7499371,0.044540532,0.12710695,0.16448225,0.20171003,-0.014900582,-0.21981914,0.09827278,0.11982707,0.4959915,-0.56685513,0.014733191,0.27912456,0.35347444,0.122640446,0.16255412,-0.42717797,0.46563393,-0.76871043,0.20245361,-0.3396363,0.12029947,-0.22446612,-0.20248155,0.19279858,0.07060522,0.37264487,-0.18843307,-0.25840828,-0.23485744,0.71516436,0.13028659,0.37389275,0.81235236,-0.20356762,-0.0617845,0.1493026,0.520015,1.0380207,-0.034805343,-0.19688734,0.20948227,-0.38730767,-0.64521223,-0.02072263,-0.48988825,0.18695612,0.04242933,-0.21057831,-0.12613358,0.34258032,0.13092998,0.078966245,0.12670927,-0.69653004,-0.33689576,0.4356167,-0.20548382,-0.360306,-0.26582104,0.15526219,0.67675674,-0.44509873,-0.18314804,0.05289787,0.35246995,-0.16136919,-0.6093423,0.10835014,-0.40247056,0.29589075,0.076730244,-0.3667357,0.0645953,0.22039221,-0.3844939,0.10185696,0.21894908,-0.30476078,0.031493764,-0.22905186,-0.14996552,1.0582687,0.1162694,0.0054604327,-0.50541204,-0.5325755,-0.83098954,-0.31056476,0.2051002,0.096581206,-0.154544,-0.38501555,-0.17947301,0.045234866,0.05961122,0.05201348,-0.52681774,0.4863124,0.09721797,0.39927268,0.17084599,-0.86267614,-0.023595078,0.14904383,-0.088343516,-0.5814334,0.6066083,-0.24001901,0.7922646,0.06237201,0.03371032,0.11026887,-0.5676445,0.33615127,-0.4832757,-0.03042339,-0.64023083,0.18276061 -685,0.59824497,-0.18310545,-0.60231173,-0.0074821594,-0.25282642,0.024038063,-0.21043032,0.53671587,-0.04871463,-0.11201232,0.020334573,0.14090721,-0.10393175,0.36355782,-0.21655926,-0.73469895,-0.16400574,0.13203086,-0.6508666,0.7052272,-0.31442526,0.4344107,-0.3237354,0.49074796,0.1149844,0.31879103,0.08613868,0.09366305,-0.074599825,-0.058637656,0.020104285,0.17579198,-0.745088,0.13026455,-0.07105403,-0.26173145,-0.047563415,-0.20995428,-0.40753004,-0.73615557,0.2973044,-0.71868265,0.5588853,0.038464125,-0.34580204,0.3131685,-0.0545003,0.3090769,-0.41045076,-0.05300526,0.1257099,-0.037842736,0.028058758,-0.43315893,-0.17992304,-0.47899166,-0.53438807,0.004920244,-0.77833885,-0.31782502,-0.117818244,0.17034279,-0.29161966,-0.10713755,-0.21551174,0.11272354,-0.5273914,0.10816261,0.06587082,-0.13782293,-0.029586038,-0.5332583,-0.038893122,-0.0392832,0.29316235,-0.11070991,-0.12900928,0.3108101,-0.1163116,0.3665074,-0.024767151,-0.20309356,-0.40124482,0.01341364,-0.045187917,0.5552464,-0.21918303,-0.5391149,-0.14047036,0.12010668,0.25690883,-0.034501746,0.141967,-0.30245426,-0.07440008,-0.039874017,-0.028231863,0.41907504,0.5619649,-0.21136339,-0.12983403,0.59791064,0.52407455,0.28847495,-0.06976864,-0.13041556,-0.21599643,-0.31792864,-0.07084466,0.062977,0.042090673,0.37090218,0.15394846,0.33788556,0.52633506,-0.07535829,0.011120489,-0.2225522,-0.09998822,0.18025431,-0.07986942,-0.107468165,0.004977249,-0.24837765,0.30960518,-0.07033242,0.74689156,0.16725312,-0.60245997,0.573913,-0.5350738,0.13367638,0.102548376,0.54552597,0.6982963,0.491005,0.041088495,0.6626266,-0.36656916,0.17773598,-0.042899165,-0.36178684,-0.048313398,0.08658496,-0.120414205,-0.42202413,0.12132769,-0.03286267,-0.2043646,-0.030246612,0.4799198,-0.5812714,-0.105313934,-0.08989286,0.748714,-0.35802343,0.019711623,0.64714944,0.99850243,0.801027,0.002703678,1.0528768,0.51776326,-0.119791396,0.1694832,-0.4156475,-0.73986983,0.2575147,0.37550113,-0.23764548,0.6083883,0.07259273,-0.1453304,0.26802137,-0.13758458,-0.11504238,-0.2265026,0.53221554,-0.0009868696,-0.042038504,-0.3796695,-0.12533364,-0.014390467,-0.02690384,0.10091673,0.34440115,-0.36216456,0.1739677,-0.11540298,1.8918217,-0.08552602,0.13284071,0.12526163,0.7182648,0.35886672,-0.08683271,-0.07329734,0.55428,0.3739554,-0.08332998,-0.6561486,0.04451795,-0.42322153,-0.5551371,-0.10851726,-0.34923464,-0.16684167,0.063988574,-0.32301527,-0.17684102,0.23239206,-0.13852423,0.33233643,-2.5328472,-0.04653695,-0.08507085,0.40167353,-0.38688278,-0.47746685,0.011984282,-0.49779254,0.37464026,0.37435648,0.5122578,-0.4965885,0.28363568,0.33507332,-0.29119575,-0.08946814,-0.41093525,0.13544378,0.13920832,0.53825545,-0.3099059,-0.061043687,0.1877795,0.28148702,0.42713693,0.07612859,-0.06436098,0.4893215,0.40498596,0.008664956,0.16832073,0.03720218,0.49873224,-0.19248034,-0.13405147,0.47332242,-0.14727898,0.46415204,-0.120747924,0.11051775,0.15737692,-0.47218725,-0.9023378,-0.24295092,0.09500034,1.26044,-0.4543957,-0.3609675,0.14890002,-0.13013764,-0.10443999,-0.01706491,0.20116259,-0.21684358,-0.19421902,-0.4921335,0.14847219,-0.12987088,0.3868251,0.025350828,0.1506564,-0.32057574,0.54516226,-0.26925305,0.3772859,0.20275876,0.34324753,0.0005638416,-0.5520378,0.22392862,0.7245951,0.35191762,0.062322177,-0.16039921,-0.3041156,0.06476392,-0.1524702,0.10972379,0.56003594,0.6299857,-0.05134324,-0.017101366,0.3112313,-0.05819507,0.034432158,-0.20675929,-0.2647686,-0.2126033,0.0019180133,0.47909594,0.6984755,-0.2220804,0.6874425,0.007081981,0.30132288,-0.041662075,-0.4243849,0.4703522,0.79618967,-0.28331208,-0.12700197,0.31162423,0.34044176,-0.37943462,0.42952994,-0.65449643,-0.2476252,0.5947707,-0.2677696,-0.37598926,0.41004795,-0.23031399,0.052301362,-0.8796981,0.4136843,-0.05655207,-0.4029291,-0.5054575,-0.18722545,-3.185659,0.023317525,-0.29034755,-0.24985224,-0.064976215,-0.14535235,0.0018701416,-0.88383347,-0.59730893,0.07912434,-0.03285844,0.4252358,0.0018689942,0.17919165,-0.21825501,-0.32036334,-0.300225,0.2726591,0.002455598,0.42894605,0.060811136,-0.3394253,-0.24260037,-0.095055416,-0.25423378,0.11516468,-0.46534392,-0.37653548,-0.17989594,-0.72927946,-0.0316178,0.60265124,-0.33824268,-0.019710986,-0.30658627,-0.011073724,-0.13993126,0.32392886,0.35115412,0.13543466,0.31940287,-0.120647185,0.050078828,-0.44816664,0.22072403,0.15627186,0.36128983,0.38245267,-0.045757916,0.10366185,0.52643895,0.57796735,-0.09455856,0.57382387,0.3868357,-0.16777651,0.5194131,-0.4291884,-0.2864047,-0.75739014,-0.47141224,-0.07503324,-0.21835367,-0.5315265,-0.267386,-0.34637254,-0.80764806,0.368076,-0.28416058,0.42971742,0.051313877,0.27238518,0.5913543,-0.09355144,-0.008321663,-0.11681204,-0.067492135,-0.43302903,-0.20682122,-0.5582275,-0.5978092,0.43624693,0.74000466,-0.23932442,-0.23410557,0.03439551,-0.30336738,0.18350847,-0.25444412,0.11418967,0.24565493,0.32174575,0.09919764,-0.5261558,0.43160185,-0.13385203,-0.02202638,-0.547358,0.20325893,0.58115286,-0.69257694,0.16986902,0.14823489,0.2516404,0.1751975,-0.51878893,-0.11877926,0.33755347,-0.10122419,0.2627087,0.104948446,-0.698248,0.3284348,0.3738683,-0.30267784,-0.77761906,0.31160715,0.075314224,-0.36962926,-0.13400441,0.41030186,0.003938487,-0.037650876,-0.25711533,0.21696122,-0.4338913,0.06638299,0.22464107,-0.0632414,0.19983752,-0.0571514,-0.29204178,-0.58496594,0.2883792,-0.37008002,-0.4949552,0.16232255,0.105840996,-0.05123895,-0.10214304,0.12006138,0.47653908,-0.5580184,0.13868286,-0.02412323,-0.28226644,0.60443217,0.4458354,0.646137,-0.44285935,0.72992283,-0.0035067934,0.13356456,0.23802918,0.017653584,0.50263274,0.10036527,0.24064586,0.31551477,0.05764068,0.2289939,0.7627088,0.23481354,0.62279063,0.075203255,-0.34249827,0.07575809,0.24819565,0.16321042,-0.07669537,-0.30707467,0.071235746,0.26133838,0.08324869,0.525697,0.29810622,0.21663475,-0.14891526,-0.35266432,0.19394661,0.21684383,-0.18248028,-0.9036659,0.2869081,0.14600448,0.75222886,0.3659218,0.115623154,0.087570414,0.41363117,-0.1675525,-0.0038699966,0.26843297,-0.055262864,-0.59836495,0.4594315,-0.50380874,0.4946429,-0.16234687,-0.008685272,0.33574098,0.081536405,0.27004653,0.71842897,-0.05378679,-0.012294127,-0.032314174,-0.20601252,-0.2248431,-0.3710361,0.26394564,-0.40280026,-0.37978357,0.5914625,0.34723246,0.23663872,-0.23256472,-0.018764192,-0.08534903,-0.19953766,0.25405753,-0.12502028,0.017515274,0.11554404,-0.55460006,-0.5568158,0.5067558,-0.088270634,-0.031104323,-0.2912956,-0.09879092,0.30322236,-0.24378592,-0.048546113,0.19940509,-0.7873183,0.4207063,-0.32250008,-0.37213892,0.31505027,0.01431611,0.2331094,0.21152243,-0.08328669,-0.41882956,0.22038998,0.068388656,0.9343606,-0.0703677,-0.25829703,-0.3885826,0.23890811,0.31020164,-0.19940338,0.14777216,-0.27148345,0.103445254,-0.5617744,0.2555725,-0.07028539,-0.40950754,-0.09061387,-0.19912034,-0.09755402,0.4316963,-0.029718308,-0.16092007,-0.19789775,-0.20766786,-0.24715717,-0.17007579,-0.27593037,0.11026219,0.23606865,-0.3621474,0.03206642,-0.043462414,-0.08811922,0.4416393,0.07536183,0.34421736,0.56740195,0.21678546,-0.33320442,-0.13998392,0.31330222,0.54601735,0.12379299,0.17314145,-0.38757044,-0.56856126,-0.3587486,0.15306461,-0.4141574,0.12908897,0.3243609,-0.49124944,0.53880244,0.1507313,1.1543788,-0.1427197,-0.29078653,0.15770823,0.6205514,0.16424781,-0.026492098,-0.53454095,1.1491965,0.6101675,-0.13982137,-0.13285932,-0.15563907,-0.56599015,0.32463342,-0.3737291,-0.12114857,0.027946899,-0.43783617,-0.29102665,0.17188774,0.22130607,-0.060235582,0.055970397,-0.040848073,0.16091776,0.09491979,0.32042295,-0.5820478,-0.22737852,0.3643234,-0.09115733,-0.0064449403,0.111111626,-0.4683998,0.3990048,-0.44823366,0.121573284,-0.4511101,0.099221244,0.06294825,-0.38359576,0.15731335,0.20632234,0.4536152,-0.4336062,-0.52042997,-0.21914898,0.3710397,0.14457634,0.055438325,0.58904433,-0.31592545,0.17833894,0.080429316,0.46191755,0.8716977,-0.007093237,0.05393884,0.2745931,-0.4020926,-0.7029674,0.07517678,-0.1071715,0.2814508,-0.22052816,-0.2877278,-0.62662035,0.18657057,-0.010253622,-0.19433525,-0.06908531,-0.6289539,-0.17705539,0.18775868,-0.28884485,-0.268777,-0.37837443,0.14957505,0.9997349,-0.40550944,-0.3207051,0.15056267,0.11314922,-0.14245255,-0.5857995,-0.07569681,-0.28515622,0.19057035,0.110660106,-0.27738792,-0.29125342,0.23793307,-0.35877785,0.102818005,0.29820842,-0.4123445,-0.024530245,-0.065557554,0.008200508,0.9975608,-0.15596518,-0.21948603,-0.65737236,-0.43258366,-0.9625642,-0.71197563,0.5634298,0.15785052,-0.040957205,-0.8293055,-0.0026876559,-0.18707675,-0.05313278,-0.12924562,-0.45903903,0.31429747,0.16129223,0.5189832,-0.10644657,-1.0533615,0.24832295,0.21438977,-0.18395677,-0.808858,0.50445175,-0.21166888,0.7153232,-0.0028630358,0.0060543874,0.29557514,-0.6164525,0.10823516,-0.42184302,-0.09914088,-0.65737116,0.32275012 -686,0.2510369,-0.22313732,-0.31103665,-0.17537846,-0.32289645,-0.024375012,-0.06106052,0.35956624,0.17184423,-0.34956872,-0.2476699,-0.14419262,0.16363771,0.41944584,-0.20385808,-0.68419963,-0.08817943,0.078439064,-0.4914469,0.40285775,-0.69770473,0.20853609,0.17511009,0.22614299,0.16470279,0.40925238,0.47031957,-0.28475034,-0.16588746,0.004274116,-0.21156138,0.074152976,-0.5102896,0.28305012,-0.112873286,-0.23688577,0.09819117,-0.44988304,-0.291475,-0.6296899,0.12505007,-0.9119899,0.22573519,0.024320481,-0.06444891,0.050575994,0.13841747,0.24948868,-0.5454004,-0.0905741,0.24079601,-0.02688296,-0.038782872,-0.23258577,-0.05869082,-0.33896157,-0.45275453,0.006048816,-0.40028682,-0.37598732,-0.27164447,0.14600386,-0.36878207,0.018082261,-0.14958206,0.4246073,-0.47805008,-0.20710094,0.3563482,-0.19013691,0.16793357,-0.4037111,-0.042450488,-0.07270548,0.3261956,0.08961657,-0.10521887,0.48659346,0.37251705,0.2015791,0.29029402,-0.23433556,-0.23717014,-0.12767626,0.41281506,0.40160358,-0.13137427,-0.4810221,-0.22020276,0.12504874,0.0016878981,0.26468843,0.047116254,-0.23316073,0.00017455909,0.048222486,-0.36142096,0.37886047,0.52825236,-0.37129912,-0.3317792,0.28036717,0.56800956,0.054872613,-0.21785475,-0.0914689,-0.004852217,-0.57695526,-0.11566954,0.22459,-0.10841454,0.55014026,-0.21320406,0.071745,0.9148709,-0.18863963,0.034547023,0.003446533,-0.06288436,-0.30911475,-0.461976,-0.09549495,0.08827404,-0.5249318,0.040126223,-0.31270373,0.97353894,0.2896016,-0.7873256,0.5017392,-0.46804097,0.16509606,-0.21728815,0.5808875,0.4232497,0.4721343,0.36975902,0.8582437,-0.43149778,0.16496779,0.0012246737,-0.5775959,0.15906551,-0.34508082,0.11205109,-0.3623557,0.14503339,-0.07861857,0.08185896,-0.049066838,0.31851646,-0.5083302,-0.012542433,0.26618668,0.7886706,-0.3778022,-0.07775163,0.532148,1.0330062,1.0105306,0.15451244,1.1991436,0.4069384,-0.24043362,0.29273435,-0.32839563,-0.78356814,0.18086725,0.40201095,0.3252463,0.06280866,0.035506107,-0.053860262,0.23952597,-0.40169936,0.15539837,-0.22839414,0.3654241,0.19985856,-0.022596914,-0.42768383,-0.32881892,-0.03647482,-0.07104388,-0.034118626,0.15625691,-0.1327302,0.3477462,-0.041537993,1.4170464,0.06467033,0.03748128,0.0145231765,0.69958484,0.25139305,-0.03903406,0.06842624,0.4428839,0.3397389,-0.033395138,-0.59004325,0.25225288,-0.26204622,-0.53425395,-0.051263835,-0.418145,-0.082435295,0.15560836,-0.33761677,-0.15537849,0.074327,-0.20569175,0.5698214,-2.8207548,-0.22123863,-0.062719755,0.18397485,-0.32449487,-0.12422509,-0.09968155,-0.6039315,0.3047921,0.3336789,0.6055542,-0.6992019,0.46370733,0.49555254,-0.5369691,-0.14835057,-0.7422221,-0.08076379,-0.17509812,0.42916423,0.15602794,-0.012550657,-0.20026325,-0.029300997,0.6816613,0.107231684,0.17343578,0.35638177,0.25858897,0.24457805,0.5724823,0.14167672,0.59592533,-0.37683153,-0.043137785,0.2940102,-0.3714927,0.39908537,-0.03127322,0.04539597,0.5240556,-0.45444158,-0.96388507,-0.71359646,-0.44425297,1.0903034,-0.46259958,-0.30595288,0.26039955,-0.15722074,0.08839953,-0.033934638,0.33825928,0.023010671,0.1676462,-0.61865133,0.18886067,0.16665618,0.1082578,0.035417974,-0.08373928,-0.15320979,0.8523953,-0.08782098,0.5229237,0.1419832,0.1317084,-0.072460026,-0.3679775,-0.024428193,0.7309002,0.18209489,0.02738192,-0.19192956,-0.38219687,-0.030686663,-0.24700762,-0.014380822,0.4235218,0.74905026,-0.040459815,0.016516084,0.3995867,-0.07311824,-0.018268468,-0.09647106,-0.31048343,-0.080405354,-0.035969123,0.41691685,0.6933116,-0.21949449,0.45822436,-0.3571759,0.33306402,0.03657778,-0.5324044,0.62159723,0.5625053,-0.11507617,0.00802505,0.36004442,0.58661026,-0.518052,0.36003047,-0.5315001,-0.19492663,0.61449707,-0.19308259,-0.39450935,-0.0035714323,-0.20844497,0.05478074,-0.78542775,0.4808682,-0.31792015,-0.43180087,-0.37940824,-0.092988834,-3.94725,0.119628906,-0.21185635,-0.12569652,-0.10376016,0.014242048,0.21313128,-0.528676,-0.4016837,0.11407341,0.12976244,0.4984647,0.044155315,0.17119232,-0.31665727,0.08036743,-0.2934591,0.14233083,0.008136355,0.35685092,-0.14930329,-0.3220251,0.042558093,-0.24991193,-0.48295578,0.30441773,-0.63840383,-0.5048994,-0.0954337,-0.46615124,-0.42130387,0.6599567,-0.35192907,-0.021195428,-0.07543694,0.14440526,-0.40117806,0.2892184,0.14828008,0.085898146,0.053134326,-0.067946464,-0.07540159,-0.42491797,0.5207187,-0.0743666,0.5102721,0.25134894,0.07328511,0.028890189,0.5482069,0.4891434,-0.048430204,0.94792616,0.26464507,-0.12126275,0.23982921,-0.26121414,-0.14714393,-0.6212318,-0.29859817,-0.12702207,-0.3816039,-0.52634656,0.11659228,-0.3023143,-0.7023213,0.5431769,0.10963775,0.240603,0.028435498,0.054447766,0.4799399,-0.025412206,0.0909171,0.007772872,-0.08389688,-0.7732569,-0.28518474,-0.67607266,-0.4490385,0.10464554,0.8574859,-0.3060333,-0.14675313,-0.2933305,-0.51925075,-0.017525068,0.14767037,-0.06780898,0.31575233,0.42984965,-0.05738383,-0.6860695,0.53832823,0.0818274,-0.09074717,-0.33359084,0.13184136,0.6686586,-0.82062614,0.6673799,0.49266493,0.08233221,0.15723726,-0.35627657,-0.43148422,-0.21010774,-0.12904155,0.4097803,0.035218086,-0.791998,0.45735428,0.43074542,-0.6287572,-0.69201446,0.24524556,-0.16076598,0.003070891,-0.04005066,0.21855952,0.22287557,-0.16530807,-0.1638062,0.19280459,-0.5449406,0.25062984,0.17730424,0.0380604,0.4271372,-0.017735971,-0.31576142,-0.6606499,-0.16839713,-0.59122,-0.13866273,0.34971994,0.07311626,-0.17933288,0.11498021,0.14789186,0.4231974,-0.19248813,0.050189577,0.17703475,-0.3162845,0.40411574,0.3613626,0.2667588,-0.34888485,0.55329776,0.09847557,-0.0052241087,-0.0064591262,0.069252424,0.21959867,0.19797285,0.36961624,-0.07436219,-0.17191283,0.37820917,0.76184344,0.15912808,0.5744364,0.005048715,-0.15075636,0.6124629,-0.06222894,0.14957657,0.14089474,-0.44698197,0.081247576,-0.13990341,0.20217334,0.36471874,0.17656732,0.28715748,0.19018713,-0.13362023,-0.059603937,0.2797173,-0.011714311,-0.9079892,0.46158013,0.34020942,0.6966321,0.55692667,-0.14378354,-0.116065614,0.7996959,-0.20582223,0.2108523,0.3721741,-0.055578597,-0.6964757,0.69719625,-0.6895677,0.38822943,-0.28906217,-0.035024557,0.059014224,0.29043826,0.26059946,0.7366378,-0.28593075,0.023392636,-0.06769982,-0.2833544,0.08693066,-0.44093072,0.1481608,-0.41667464,-0.3764103,0.6021911,0.34239155,0.36210024,-0.06231551,-0.07697676,0.0016518029,-0.13272023,0.39909008,0.007089672,-0.09549089,0.1361997,-0.7154052,-0.37001392,0.5904361,-0.12105043,0.34228006,-0.17962581,-0.2956641,0.19273461,-0.342366,-0.08856834,-0.011757305,-0.49418706,0.073597535,0.06378427,-0.5877178,0.36560568,-0.24492407,0.24100263,0.24106935,-0.009467964,-0.14886756,0.1633083,0.08303402,0.77730435,-0.15089947,-0.3041246,-0.41926274,-0.076363645,0.24759156,-0.23429903,0.11214557,-0.3802246,-0.12229523,-0.45780066,0.69875264,-0.21486942,-0.43781278,0.13494486,-0.26874554,-0.1322585,0.6130941,-0.04183237,-0.16581805,-0.21410185,-0.046816103,-0.29807654,0.033978727,-0.21230626,0.24574082,0.28776148,-0.15713851,-0.07048033,-0.5256859,0.030391904,0.48504174,-0.14773412,0.32562175,0.050623056,0.040909,-0.2235476,-0.03334736,0.1694793,0.46336797,0.28061488,-0.019696208,-0.2541807,-0.17927274,-0.2266778,-0.008716143,-0.17257601,0.21734953,0.07967361,-0.3952615,0.7991749,-0.16099024,1.2787725,0.146464,-0.29383558,0.04717072,0.610239,0.12165295,0.1727106,-0.31304213,0.7483645,0.6535689,-0.12775666,-0.07271695,-0.72589004,-0.19207954,0.32641584,-0.16094662,-0.091737874,0.052568056,-0.59016645,-0.23313507,0.23861559,0.15687789,0.30113247,0.0064097047,-0.088657364,0.0050235963,0.11722754,0.48795697,-0.5262077,-0.17928013,0.15674305,0.26422244,0.049250938,0.13237908,-0.44507593,0.45592248,-0.6503244,0.28936276,-0.30943492,0.038429283,-0.41798654,-0.35151848,0.07800667,0.039645392,0.41584998,-0.092106685,-0.5503575,-0.015469919,0.592994,0.20696218,0.27001226,0.74632555,-0.16912058,-0.00047892332,0.13909224,0.533515,1.168188,-0.36303762,-0.13686131,0.3990248,-0.33724025,-0.8003433,0.5044835,-0.30369452,0.010274882,-0.09493208,-0.3870734,-0.5616874,0.26297152,0.26310351,-0.052119136,0.15412776,-0.53591126,-0.102565646,0.35086393,-0.34740588,-0.29832065,-0.30015218,0.41862628,0.6043407,-0.43790007,-0.1949719,0.09373184,0.17931375,-0.31106526,-0.41511518,-0.21127208,-0.26325694,0.31774393,0.095223255,-0.27693966,0.0061647436,0.18283336,-0.2861434,0.12758945,-0.018781938,-0.42672938,0.2224617,-0.06525279,-0.016489236,0.8465588,-0.14991361,-0.02463502,-0.77385074,-0.46626565,-0.8565655,-0.49643543,0.61976516,-0.0016370874,-0.0009049727,-0.43073815,-0.037706118,0.20938642,-0.24803814,-0.0244173,-0.7204386,0.41923636,0.03539389,0.37951863,-0.09848681,-0.82933193,0.09639464,0.11850027,0.08814179,-0.599107,0.5440003,-0.26680115,0.86716074,0.06896819,-0.101527005,-0.05701675,-0.24198611,0.003040213,-0.45267355,-0.3251428,-0.576284,0.14749998 -687,0.36379716,-0.08677257,-0.44468206,-0.1932685,-0.21619706,0.1792096,-0.163879,0.29938576,0.0234431,-0.5987073,0.042967662,-0.17656788,-0.04687306,0.1895514,-0.16827662,-0.48167303,-0.01584303,0.08347375,-0.48323828,0.34448138,-0.5019508,0.311119,-0.041318145,0.2012542,0.019096248,0.28482527,0.13284601,-0.29576385,-0.10273626,-0.13619089,-0.064959675,0.11975453,-0.62391776,0.25033197,-0.14734016,-0.25530356,0.037663594,-0.5443243,-0.437045,-0.5593245,0.25076273,-0.8581537,0.48740134,0.06760715,-0.21008965,0.17058346,0.07803971,0.3151024,-0.15023075,0.16282736,0.37865013,-0.17097521,-0.0127453925,-0.057267014,-0.36965007,-0.42075044,-0.63678104,0.03857906,-0.46067274,-0.085587114,-0.23862472,0.13852234,-0.3216978,-0.0651094,-0.21312346,0.27389222,-0.34808117,-0.108066015,0.14608914,-0.07749307,0.44130078,-0.50553954,-0.16775852,-0.029825322,0.30922645,-0.33167478,-0.24397795,0.2732057,0.32835457,0.51092106,-0.07373224,-0.21824677,-0.22891754,0.04272921,0.13002197,0.59609497,-0.28504086,-0.18671922,-0.12146731,-0.09783768,0.19005616,0.26083645,-0.062617704,-0.40798855,-0.09747289,0.080458924,-0.22196104,0.25293323,0.5188579,-0.34843382,-0.20837663,0.49810168,0.41466597,0.023723206,-0.037650634,0.13526802,0.021698171,-0.50787425,-0.2621744,0.34503826,-0.20439835,0.2827078,-0.12355326,0.24878803,0.7059648,-0.18518223,0.12100177,0.044572964,-0.07415969,-0.08102625,-0.114004575,-0.2214579,0.15752879,-0.48145884,0.19900028,-0.17497867,0.784686,0.11461801,-0.83273786,0.31426674,-0.5767483,0.06972302,-0.05304202,0.5247141,0.6698429,0.49726212,0.066009074,0.6697733,-0.46515042,0.068737596,-0.10827256,-0.35482496,0.16356643,-0.056351732,0.06687792,-0.57020074,-0.20051469,0.16503842,-0.10473232,-0.18431233,0.24076572,-0.3704602,-0.019614339,0.22856191,0.664091,-0.29621062,0.021368371,0.5539357,0.98881537,0.83703834,0.22295976,1.2450886,0.20784816,-0.17686749,0.332219,-0.34465224,-0.7634431,0.30527732,0.4336374,-0.21947663,0.25312442,0.16181806,0.06323322,0.34106782,-0.36514485,0.141363,-0.2606544,0.18466221,-0.01312278,-0.19899304,-0.23058268,-0.2955233,-0.11700983,-0.10815497,0.07577446,0.12912722,-0.15937993,0.23353876,0.30878386,1.5756571,-0.10981611,0.16358271,0.09925144,0.44417796,0.07176827,-0.12542923,-0.063504286,0.19055225,0.35001788,0.00620472,-0.5144522,0.1852013,-0.0033797543,-0.5224363,-0.197082,-0.25017524,-0.08197026,-0.19127628,-0.51779544,-0.10886397,-0.03276558,-0.49350408,0.5391434,-2.8049664,-0.006987846,-0.13717522,0.32738367,-0.24710955,-0.44209772,-0.14355555,-0.5493632,0.5583861,0.3294684,0.28376108,-0.6501872,0.44846794,0.5203244,-0.41875654,-0.094095364,-0.7475975,-0.06537708,-0.093807705,0.19780311,0.078885116,-0.07917835,0.08269648,0.10214357,0.29308042,-0.1638382,0.08596646,0.119688444,0.3505888,0.15317969,0.5663673,0.026086338,0.49663603,-0.20337066,-0.17386736,0.3052268,-0.5086877,0.1035148,0.002579838,0.0984176,0.3295897,-0.42834365,-0.6629895,-0.69727224,-0.5948406,1.0534476,-0.17171167,-0.2140357,0.28551057,-0.1464355,-0.39163372,-0.14388663,0.44578227,-0.18448156,-0.028929355,-0.86258537,-0.10764567,-0.21724139,0.2012021,-0.094060056,0.17588663,-0.46288702,0.602545,-0.15002246,0.5562857,0.39853412,0.092583574,-0.25851974,-0.50542533,0.0053931098,0.91477406,0.2801097,0.1871613,-0.1624692,-0.17478633,-0.14412013,-0.16342786,0.1894452,0.44994193,0.70237225,0.009285119,0.06617616,0.32778522,-0.19774373,-0.01711626,-0.119116224,-0.27140188,-0.087532945,-0.02931402,0.6111702,0.45757088,-0.11750074,0.35662296,-0.20812711,0.2938913,-0.3514985,-0.28421706,0.45930764,0.97377515,-0.05224434,-0.11029984,0.56599975,0.52794313,-0.18653342,0.38490677,-0.62671,-0.25188953,0.36512548,-0.17011023,-0.39707133,0.18250021,-0.33413234,0.13998877,-0.9212078,0.40682715,-0.25066468,-0.4550907,-0.62246436,-0.19358705,-3.138829,0.09236178,-0.18358769,-0.27326533,0.047521677,-0.06301801,0.42901286,-0.49937612,-0.40262336,0.17431848,-0.026920859,0.6289332,0.01978137,0.08844026,-0.3793191,-0.119875096,-0.39763218,0.19627914,0.14677675,0.31642544,-0.0060502966,-0.34836575,0.053022638,-0.18739359,-0.33189481,0.0354444,-0.54756373,-0.40522465,-0.2597045,-0.45233494,-0.3979605,0.655511,-0.3710726,-0.023569465,-0.21460634,-0.10576909,-0.24687529,0.5416578,0.16889296,0.13939057,0.052391138,-0.03761929,-0.13705096,-0.3379146,0.3728971,0.12914316,0.30772784,0.48565325,-0.19036205,0.07935726,0.477033,0.57612735,-0.10162655,0.7874576,0.42950493,-0.090642974,0.26241723,-0.38470206,-0.14503488,-0.45340344,-0.266606,-0.1279359,-0.3444924,-0.486453,-0.06768341,-0.39075762,-0.7285911,0.4207179,0.014543188,0.009302386,0.03222414,0.043188144,0.26117384,-0.18869866,-0.03657901,-0.07105247,-0.087755404,-0.33698738,-0.3830392,-0.621505,-0.47589388,0.10417637,1.080403,0.07858775,-0.095689654,0.14330932,-0.20696217,-0.05558931,0.036573693,0.026627218,0.20467375,0.36338857,-0.038385995,-0.6593843,0.45769775,-0.062166754,-0.1689298,-0.5657376,0.08821117,0.7441336,-0.6107677,0.52110916,0.36791623,0.17294382,-0.13791402,-0.51824075,-0.25861254,-0.11808947,-0.2564963,0.3846539,0.07499354,-0.8191348,0.5519619,0.38553748,-0.2126246,-0.682738,0.5436394,-0.012861667,-0.11416065,0.1563387,0.29675615,-0.07825098,-0.09250566,0.0032073536,0.4324826,-0.39391148,0.34355015,0.36121878,0.04021803,0.37383214,-0.15181245,-0.035290543,-0.56512356,-0.00101704,-0.44122654,-0.28190118,0.19717066,-0.005267165,0.1559268,0.3515729,0.009176167,0.4440015,-0.31141138,0.100665174,0.025580715,-0.15135378,0.09642057,0.3185682,0.418769,-0.44922912,0.5413328,-0.019221537,0.030568767,-0.15937297,0.15067016,0.5196825,0.21131532,0.2757893,-0.1421772,-0.2731334,0.25323325,0.98404604,0.24782439,0.42983285,0.100574374,-0.098366,0.2599072,0.14367095,0.1445642,0.08851083,-0.5251012,0.051613934,0.030405056,0.20250513,0.28465432,-0.067016974,0.32121527,-0.2753066,-0.09355038,0.06791535,0.22779463,-0.09204414,-1.2502121,0.40374583,0.18460792,0.6915974,0.41763702,-0.009154518,0.15792504,0.57430196,-0.3618773,0.13245513,0.18119606,-0.10317755,-0.46413192,0.4168631,-0.65103745,0.34331423,-0.010377248,0.010611536,-0.11250503,-0.0066385665,0.2898248,0.8311755,-0.20965903,0.16325384,0.005817009,-0.3037696,0.24563058,-0.2617757,0.21116786,-0.39431342,-0.26620725,0.66890115,0.39793822,0.41072622,-0.095991634,0.0019662397,0.049308382,-0.07140774,0.08538568,0.06362916,0.0097376425,0.09438797,-0.5613684,-0.30775818,0.5358997,-0.04501478,0.123977356,0.1357504,-0.41402408,0.25401145,-0.13574213,0.010477757,-0.1519392,-0.7038922,0.048449364,-0.29434714,-0.33500946,0.24984637,-0.22564699,0.33416378,0.24195382,0.031568244,-0.19370916,0.3166484,0.38689837,0.72692627,-0.09100459,-0.22385262,-0.33166486,-0.035833556,0.19562912,-0.282235,-0.2307757,-0.27944195,0.04166285,-0.54895794,0.21997903,-0.0116781015,-0.3292586,0.26041698,-0.23804665,0.021857878,0.56834525,-0.12353991,-0.06610341,0.102719694,-0.009943156,-0.26237568,-0.047863647,-0.14171664,0.22749257,0.20308262,0.0386761,-0.00031790734,-0.13485213,-0.2239819,0.36278465,0.20859082,0.35440648,0.41592875,0.13329509,-0.38220575,-0.0924547,0.0445146,0.4147892,-0.011603173,-0.05232781,-0.12418681,-0.31172302,-0.20851429,0.21499196,-0.2062289,0.24283329,-0.01924533,-0.42785034,0.65465486,-0.11486411,0.99697596,0.030032456,-0.24120347,0.014690403,0.39175436,0.05183385,0.04524374,-0.43568465,0.8269752,0.55197835,0.0034285465,-0.12720145,-0.25553468,-0.124385625,0.15383963,-0.14397192,-0.18941052,0.05330663,-0.66446215,-0.23688975,0.23086458,0.08509455,0.11897564,-0.008672174,-0.06695504,0.18876056,0.13932103,0.32887426,-0.4926279,-0.04034505,0.28351694,0.20647584,0.079658754,0.19678405,-0.4126458,0.35709858,-0.47172755,0.05188322,-0.269123,0.08649233,-0.15432271,-0.13356952,0.14606395,-0.12385771,0.47188765,-0.025389822,-0.2854331,-0.043872286,0.49580896,0.06059846,0.3098311,0.680477,-0.13988549,0.17859802,-0.049369644,0.46769932,0.9937176,-0.18045285,0.07547428,0.47613737,-0.28474954,-0.5273321,0.24922398,-0.33410484,0.14149366,-0.044698503,-0.30585682,-0.13979241,0.25042707,0.21950005,0.18005037,0.014976239,-0.57823277,-0.2066247,0.4120606,-0.33421603,-0.30195916,-0.2502539,0.21680054,0.7906888,-0.35206407,-0.14646062,0.12645319,0.28668505,-0.2656458,-0.4642484,0.0752235,-0.339274,0.25213513,0.07914478,-0.31271705,0.09297844,0.04465274,-0.18305571,0.1580029,0.20032553,-0.44095916,-0.0064718085,-0.29869595,-0.03321769,0.7866212,-0.0303171,0.052625697,-0.6041908,-0.5203206,-0.89062524,-0.3459959,0.3447434,0.1550527,-0.09106341,-0.39968178,-0.09019574,0.04379654,-0.08762045,-0.056436736,-0.4346933,0.46649864,0.14876175,0.37671012,-0.103754476,-0.67183226,0.0576449,0.17831701,-0.025835713,-0.5816563,0.5791055,-0.08371501,0.8598302,0.105491675,0.045026883,0.067421846,-0.43704683,0.14362165,-0.20993277,-0.18215594,-0.86583763,0.09000324 -688,0.45416996,-0.23679943,-0.2921313,-0.093043886,0.017355422,-0.15442318,-0.07822821,0.71212214,0.18799187,-0.48145917,-0.26142946,-0.14329146,-0.05461489,0.45728815,-0.120218694,-0.61446875,-0.13306028,-0.00251243,-0.16060881,0.5569617,-0.4006864,0.1762891,-0.052598074,0.51649904,0.17047071,0.2711515,0.29542172,-0.03801075,-0.16897686,-0.086900294,0.015773525,0.14521919,-0.50759894,0.3016861,-0.17310512,-0.3893635,-0.1216965,-0.45577297,-0.37877634,-0.63622576,0.23399131,-0.75570035,0.5012258,0.1502827,-0.20785828,0.3011075,-0.10433352,0.21861942,-0.31457654,-0.03137897,-0.05464897,0.12712644,0.08499533,-0.12459422,-0.11658618,-0.24099112,-0.47421655,0.15114452,-0.40834138,-0.17041631,-0.31031713,0.13682273,-0.25462756,-0.08960169,0.07659054,0.3418881,-0.429376,-0.20750089,0.1034992,-0.07746191,0.42184797,-0.47753695,-0.2720562,-0.15424214,0.14213789,-0.23489265,-0.15471652,0.27489218,0.2184732,0.45004606,-0.07251532,0.0238365,-0.29125777,0.01345743,0.22179072,0.5869076,-0.26406708,-0.7186408,-0.10729004,0.017414903,0.23387925,0.20797211,0.0692525,-0.27824074,-0.07758715,-0.009304722,-0.18151397,0.24557014,0.542998,-0.16097452,-0.37601507,0.3843721,0.4558924,0.13627122,0.016903758,0.07283217,0.137146,-0.44300053,-0.16483088,-0.090114236,-0.109214395,0.58752435,-0.04125261,0.38261077,0.60490483,-0.22168921,0.19906068,-0.078180544,-0.12595816,-0.17863534,-0.21442151,-0.2245843,0.13548459,-0.31055003,0.19128661,-0.19126661,0.75918657,0.16684626,-0.9104281,0.3512541,-0.4579551,0.07860959,-0.13762857,0.62159246,0.7576243,0.28424275,0.36476162,0.6650955,-0.46697426,-0.016268969,0.011446784,-0.38721824,0.0036720831,-0.13440494,-0.1980757,-0.48263052,-0.17662977,0.34674618,-0.19843256,0.27169743,0.28192976,-0.5930414,0.05474162,0.22562586,0.7390631,-0.28092292,-0.045665313,0.8306586,1.1308521,0.85557824,0.04669981,1.060427,0.3511169,-0.09347179,0.45576182,-0.36023116,-0.6735401,0.30429924,0.52299434,-0.3407105,0.32213676,0.046993356,-0.16829205,0.30548605,-0.57396156,0.117538214,-0.23337905,0.19155681,0.007459531,-0.24468982,-0.6037008,-0.21163239,-0.19919045,-0.015084569,-0.06724244,0.2239132,-0.27119198,0.30921736,-0.054304793,1.5499377,-0.055675417,0.1285988,-0.09114323,0.6884387,0.09731716,-0.3295277,-0.08743945,0.21307822,0.45463085,-0.008400763,-0.5714834,0.075244986,-0.13708563,-0.503236,-0.15710196,-0.34492052,0.07148811,0.12251978,-0.3526694,-0.13703774,-0.13526213,-0.3872958,0.5568835,-2.9892552,-0.3034707,-0.0666077,0.28993687,-0.2565155,-0.27527022,-0.108201005,-0.34700596,0.48597512,0.5466344,0.47227383,-0.63283235,0.07345375,0.38028887,-0.379709,-0.17446129,-0.6168348,0.2060468,-0.14794122,0.35539523,0.016976263,-0.03234108,0.14198531,0.2014993,0.509787,0.13230623,0.10816881,0.17151761,0.19390883,0.06973923,0.18005617,-0.12595315,0.43690053,-0.22179371,-0.25803337,0.2699958,-0.23568521,0.1685958,-0.14740129,0.1958024,0.2264385,-0.5235155,-0.91642475,-0.6595981,-0.51416636,1.1581329,-0.12275254,-0.41455686,0.42339364,0.023860896,-0.24383332,-0.11828879,0.5550363,-0.236826,-0.007829693,-0.7077894,-0.05061717,-0.046585947,0.14374529,-0.03547384,-0.06914327,-0.5420009,0.54479593,-0.11072875,0.34256855,0.39490178,0.31755424,-0.1728863,-0.62737685,0.14444375,1.0292096,0.39225283,0.18305282,-0.11403155,-0.18479861,-0.34885013,-0.06293628,0.22140104,0.3748212,0.9252959,-0.020533549,0.10242441,0.27835116,0.034321483,0.105884254,0.067998685,-0.21444435,-0.09653977,0.044311713,0.6421403,0.6006271,-0.27802444,0.482645,-0.29097542,0.17372407,-0.18703891,-0.30087662,0.70091754,0.66586787,-0.11465903,-0.19168407,0.63647836,0.45086932,-0.26496923,0.43209574,-0.69621056,-0.21263556,0.42486203,-0.13160282,-0.36853215,0.2010709,-0.32664534,0.2140059,-1.1670054,0.37014225,-0.20625897,-0.49933228,-0.63420415,-0.06693479,-3.5944073,0.07407413,-0.16814776,-0.41915646,0.0140873,-0.2839087,0.31565675,-0.63724834,-0.4890895,0.30697182,0.07104314,0.5827922,0.015263538,0.12252739,-0.16797708,-0.10411928,-0.44006678,0.040702436,0.17960383,0.38867483,0.117259,-0.32457975,-0.1262167,-0.088008665,-0.51712537,0.16290568,-0.4161192,-0.46120307,-0.30377492,-0.5491536,-0.22496851,0.6771875,-0.4145701,0.013167094,-0.2209053,-0.046872944,-0.215926,0.49150452,0.18752564,0.04563272,0.09163991,0.038066935,0.10217472,-0.2903245,0.37900475,0.11373479,0.32313475,0.44230327,-0.4173999,0.28590086,0.59070486,0.62223756,-0.24952446,0.6423742,0.6230234,-0.033031743,0.23256375,-0.38346276,-0.1317874,-0.41113937,-0.48525396,-0.06172496,-0.31447372,-0.58725506,-0.18246724,-0.33565405,-0.7788792,0.45164096,-0.1476921,0.45074686,0.01708438,0.08595737,0.38478696,-0.111745715,-0.059026863,-0.094507,-0.016064594,-0.59400636,-0.18840043,-0.63436043,-0.62621695,0.24873418,0.82982653,-0.07880008,-0.044020284,0.039896607,-0.1937893,-0.007193701,-0.12472143,-0.11591596,0.05864669,0.19264613,-0.06608241,-0.72229284,0.45122075,0.066514306,-0.27584445,-0.66274434,0.21694238,0.5494948,-0.5457732,0.38005129,0.225235,0.08046389,-0.04816701,-0.49045828,-0.32204178,-0.20092641,-0.11408768,0.32712522,0.13688004,-0.851621,0.47867465,0.33907762,-0.26100174,-0.7775619,0.4695263,0.010643569,-0.041569013,0.0063999393,0.105391055,0.0719648,-0.022586504,-0.2848478,0.31076238,-0.323651,0.30763283,0.20455603,-0.024538547,0.61820763,-0.10552928,0.04647531,-0.6388164,0.045683723,-0.53967303,-0.23282202,0.1633137,0.26820752,0.09994251,0.025795877,0.023684964,0.3461537,-0.29583332,0.13829228,0.07864564,-0.26700446,0.15847017,0.46820474,0.46609783,-0.3596244,0.60290116,0.07248253,-0.07719241,-0.2103257,0.045270666,0.439818,0.08960902,0.12025074,-0.10368616,-0.25772777,0.18657301,0.5503918,0.22667187,0.35965237,0.03800082,-0.04619983,0.34974506,0.11284534,0.22688657,0.15461674,-0.49077162,-0.019265393,-0.21682191,0.17121331,0.47808346,0.26711202,0.2841026,-0.14456353,-0.28718254,0.1051865,0.27454403,-0.0025555592,-1.263003,0.4839008,0.14650185,0.667037,0.6128904,-0.0127538815,0.020238748,0.6705642,-0.12976734,0.21268316,0.3261845,0.14710563,-0.6408735,0.5780076,-0.7763476,0.47776452,0.0759225,-0.056209892,-0.006611953,-0.06386714,0.32507423,0.674567,0.002596135,0.1944055,-0.05771807,-0.09651959,-0.025052508,-0.3466781,0.24763656,-0.6081616,-0.14986388,0.60824275,0.44873154,0.16665184,0.03550448,-0.025310388,0.08236355,-0.0706447,0.15880185,-0.18720293,0.17576082,0.043214973,-0.67703646,-0.29696992,0.47609878,0.054470986,0.17658336,0.004253956,-0.15739608,0.089172564,-0.22851257,-0.19572477,0.052586887,-0.57900256,0.047440697,-0.28145608,-0.21191414,0.48900655,-0.29001042,0.35841116,0.13409103,0.04725586,-0.10798967,0.074323624,0.17801784,0.76760143,0.008905132,-0.33823323,-0.39296946,0.16181007,0.26666167,-0.2175159,-0.11192278,-0.23477717,-0.32217464,-0.6833346,0.49079692,0.06429791,-0.25998148,0.22402757,-0.08337492,0.11793282,0.53544885,-0.08580128,-0.02234429,-0.034287345,-0.24983911,-0.26674768,-0.069582395,-0.19100793,0.38277158,0.36059913,0.037986804,0.06543437,-0.10923868,-0.12518898,0.3375373,0.11264149,0.41704628,0.24210377,0.16425957,-0.2878484,-0.24319692,0.06857876,0.32902882,0.24352382,-0.06373054,-0.23306926,-0.41347718,-0.34736133,-0.12698328,-0.18202694,0.274605,-0.01428225,-0.24767981,0.47360453,0.1668389,1.200595,0.039969888,-0.369879,0.22596379,0.42494464,-0.046065122,-0.06918383,-0.3787098,1.0486826,0.5476609,-0.12840764,-0.12736244,-0.35566702,-0.2221279,0.34390107,-0.24965824,-0.26322204,0.01354229,-0.64721704,-0.46293154,0.19646455,0.19575524,0.14538969,0.022165308,0.07644464,0.16285796,-0.04569511,0.45203748,-0.33237478,-0.06415274,0.38263357,0.3730308,0.09503761,0.150322,-0.46382043,0.38073957,-0.5479363,-0.030109545,-0.28398678,0.16380672,-0.14465462,-0.52695316,0.11909511,0.20054887,0.5528243,-0.10898143,-0.4993268,-0.17258215,0.63278747,0.04148854,0.12294803,0.5155211,-0.23763354,0.04234922,-0.13704261,0.32218137,1.1807303,-0.2366879,0.022026204,0.35339835,-0.2255549,-0.7013893,0.5055105,-0.28962788,0.43592438,-0.2301169,-0.26887774,-0.5347274,0.18818565,0.1411644,-0.13397856,-0.076331176,-0.4326842,-0.37969077,0.19736807,-0.23099963,-0.21162038,-0.44784808,0.019986475,0.6654431,-0.375093,-0.39368796,0.2253743,0.22666426,-0.23781745,-0.52855325,-0.0715513,-0.13483785,0.270537,0.09112122,-0.4322982,-0.25632453,0.08893857,-0.25242943,0.21231045,-0.078819275,-0.37446174,0.18644702,-0.2956287,-0.030796973,0.9959302,-0.23528288,0.15136968,-0.69556457,-0.46967682,-0.87588614,-0.56771964,0.6452262,0.24402791,-0.032244846,-0.5593614,0.21134804,-0.072422475,0.16681182,-0.14250661,-0.2540984,0.35355783,0.059720654,0.4924587,-0.08433369,-0.6651879,0.13623327,0.1819619,0.06266097,-0.6409465,0.47520122,0.118347995,1.0172673,0.0896483,0.074815,0.22356975,-0.6052768,-0.18388611,-0.18003708,-0.30762473,-0.63216835,0.30325523 -689,0.45903504,-0.07321759,-0.5413797,-0.29147804,-0.4354489,0.22130416,-0.2882725,0.30725977,0.20185456,-0.30065206,-0.10138456,-0.20324661,0.011190907,0.39231825,-0.26653826,-0.65538406,0.01938535,0.14405483,-0.5935719,0.43965924,-0.4862114,0.48661485,0.14692,0.3541403,0.09947974,0.17945746,0.2975553,-0.15450808,-0.025438095,-0.14583369,-0.20563167,0.19821472,-0.6395379,0.13149421,-0.17899609,-0.3708054,0.07636836,-0.31097433,-0.18983306,-0.78633875,0.3173785,-0.7595593,0.46509236,-0.09595048,-0.5801948,0.15012875,0.053961825,0.18899533,-0.42927104,0.06907357,0.14904372,-0.25700042,-0.07559462,-0.015270321,-0.2865815,-0.4830492,-0.57034796,-0.038850505,-0.6268869,-0.029660035,-0.34965965,0.1755949,-0.42511985,0.030136157,-0.11019125,0.22744168,-0.49872485,0.025085043,0.24518204,-0.10320676,0.1821122,-0.51777565,-0.10253262,-0.21331562,0.15227175,-0.008990095,-0.16624232,0.26939926,0.5526448,0.5733965,0.092395775,-0.21980919,-0.25586015,-0.09494076,-0.0004492442,0.39985934,-0.031314813,-0.24326243,-0.3069185,-0.14964248,0.4505158,0.33237487,0.112722255,-0.32799625,-0.11876193,-0.012381045,-0.22846527,0.24799408,0.44138354,-0.29972267,-0.11487899,0.32773525,0.43997887,0.14765514,-0.22484137,0.22233672,-0.10145433,-0.49910164,-0.30768794,0.18902546,-0.2719448,0.7261208,-0.24204716,0.10873718,0.85982144,-0.23593864,0.14484027,-0.025967928,-0.051777266,-0.18953197,-0.1574052,-0.19760732,0.19791451,-0.6692129,-0.007917182,-0.30191502,0.75018984,0.1238004,-0.7614021,0.24018876,-0.5644797,0.09010113,-0.120776534,0.63704836,0.66262275,0.4232909,0.34314442,0.79169154,-0.62258667,0.15141258,0.15360199,-0.4716903,0.17198895,-0.13726848,-0.12180453,-0.5284995,0.02133684,0.047898,0.02614353,-0.005154763,0.37286028,-0.37221634,-0.09149014,0.038713954,0.503461,-0.44869938,-0.056588944,0.8879143,0.9649327,1.0584427,0.1021489,1.3911033,0.41443205,-0.1083289,-0.058397315,-0.08710874,-0.6169671,0.13118842,0.38645014,0.027819792,0.39066166,0.08356602,0.13776293,0.33808503,-0.310307,0.017668447,-0.09205595,0.14749984,-0.111117005,-0.1299382,-0.5001107,-0.32392406,0.17179175,0.13217928,-0.13867426,0.33674908,-0.09064792,0.51504785,0.3058017,1.3706973,0.11018344,-0.04708289,0.023300027,0.39085108,0.2846817,-0.106484495,0.02039125,0.35926086,0.43129224,0.0024987618,-0.5640886,-0.03585357,-0.26261586,-0.49412715,-0.18091637,-0.40071237,-0.055259883,-0.17855327,-0.54699975,-0.055108167,0.028405737,-0.28789657,0.539689,-2.2409987,-0.082034096,-0.19704247,0.25652403,-0.15574749,-0.35168654,-0.07529009,-0.469973,0.33967066,0.4825528,0.33318704,-0.7941459,0.3969997,0.41604185,-0.36187753,0.024730781,-0.7083142,-0.28955117,-0.111850806,0.2536301,0.014910042,-0.19231687,-0.14816995,0.30200374,0.7307096,0.04974601,0.19928388,0.19856922,0.5176837,-0.19768976,0.53259635,0.3062481,0.4275487,-0.054887403,-0.09018393,0.49296045,-0.36814365,0.4077135,0.091680735,0.15524639,0.5467609,-0.5211451,-0.9017869,-0.71333325,-0.3771001,1.3083638,-0.46222645,-0.4260578,0.28937632,-0.028537147,-0.19462165,0.032940842,0.3336156,-0.06626412,0.004939771,-0.7447528,-0.03507758,-0.02748785,0.15294646,-0.05029377,0.14927863,-0.16065194,0.8238289,-0.15726264,0.42863712,0.44912502,0.2333393,-0.121082105,-0.55958694,0.053530708,0.86909384,0.568655,0.104122505,-0.32679966,-0.29028141,-0.3959816,-0.18739273,0.22586374,0.3991831,0.94912827,-0.11054172,0.2574463,0.36321577,-0.11921706,0.1042218,-0.19715622,-0.30083725,-0.020831335,0.033523116,0.44172376,0.6293421,-0.16599153,0.23858775,-0.11000356,0.21016976,-0.15526453,-0.62104344,0.58004683,0.94247454,-0.1535479,-0.21390034,0.47424403,0.43664438,-0.4104642,0.52297616,-0.6267761,-0.28367186,0.68614906,0.015388664,-0.41002935,0.15041856,-0.33096218,0.0936759,-1.0226521,0.29923692,-0.11268649,-0.36628452,-0.5171822,-0.17947651,-3.5538132,0.33167872,-0.23742689,-0.13680975,-0.24379158,-0.24817139,0.39734998,-0.6617831,-0.7190739,-0.018228084,0.11952789,0.470173,0.049873408,0.13260947,-0.3697325,-0.3351136,-0.30876014,0.061670642,0.1609492,0.16895586,-0.09454884,-0.49792907,-0.0009655078,-0.31230816,-0.53874505,-0.06804308,-0.42850742,-0.6332761,-0.27517623,-0.40009576,-0.22643998,0.66033,-0.2702982,-0.051301833,-0.17955288,-0.09383463,-0.30878857,0.24518636,0.2426313,0.0224847,-0.06361755,-0.08651878,-0.11721958,-0.36542508,0.21554384,0.081472844,0.18654849,0.3246488,-0.12905641,0.22863945,0.5750698,0.50791776,-0.22533447,0.72458947,0.25241342,-0.07818968,0.37719938,-0.2730582,-0.3496994,-0.8153913,-0.32562578,-0.2603716,-0.5038311,-0.34092304,-0.089682505,-0.30741614,-0.87972337,0.48672846,0.020974496,0.16726504,-0.17301752,0.24443568,0.3873225,-0.07134744,-0.04029846,-0.10576951,-0.31149325,-0.54311866,-0.39843643,-0.8791846,-0.5430262,0.21048333,1.1565824,-0.13139184,-0.1768033,0.045338314,-0.2553809,0.15928847,0.049934186,0.06580409,0.15702511,0.42241958,-0.17208408,-0.66481876,0.47656077,0.049764793,-0.242464,-0.6157444,-0.04720751,0.71102244,-0.62596875,0.46793193,0.48164693,0.21349491,0.2738898,-0.81484044,-0.2215232,0.04511008,-0.22526713,0.65623766,0.23532668,-0.64305234,0.493914,0.2416568,-0.11056862,-0.5832389,0.69185174,-0.056177225,-0.20635587,0.032402374,0.4106742,0.04961502,-0.0690199,-0.21286829,0.32120934,-0.54937536,0.296948,0.47795582,0.056261174,0.3148555,-0.025142085,-0.3048269,-0.75474775,-0.072686315,-0.49077323,-0.2680847,0.01384837,-0.12827216,-0.017070325,0.049850725,0.16575518,0.39564058,-0.42979103,0.2824054,-0.052151687,-0.18139216,0.49561068,0.48639104,0.37829372,-0.4840733,0.63943,0.16534287,-0.014273754,-0.1259294,0.16130391,0.5173777,0.26998535,0.30480283,-0.018128244,-0.12750103,0.25605196,0.57481945,0.22247478,0.38076714,0.12928417,-0.21470329,0.38883048,0.34320393,0.26169693,-0.07842166,-0.18807663,-0.017185736,-0.028954856,0.09347865,0.5517062,-0.0595502,0.33238086,-0.02285273,-0.07202547,0.25500515,-0.0057169916,-0.175936,-1.1278836,0.24796599,0.3327912,0.6604801,0.6447883,-0.07025306,0.122817606,0.39868063,-0.48352325,0.060333412,0.40699875,0.22478488,-0.5170001,0.67137593,-0.5727038,0.3997775,-0.19272873,-0.03150161,0.053777967,0.21586771,0.39982283,0.9574255,-0.027419781,0.10001683,0.025591435,-0.2744055,0.16469233,-0.41897476,-0.15966901,-0.4604877,-0.27654928,0.61151236,0.28201216,0.3019132,-0.35173032,-0.08326099,0.03776678,-0.2430647,0.121468656,-0.016905423,0.10457529,-0.16598746,-0.54030436,-0.4071285,0.5032996,0.002828765,0.21360709,0.053932294,-0.44379997,0.26904064,-0.15926792,0.0064333896,0.0132215945,-0.79953766,-0.27135488,-0.4141025,-0.43890578,0.4106566,-0.32504115,0.24730924,0.28188497,0.009372877,-0.3661984,-0.0043658414,0.13519904,0.6801895,-0.0017460823,-0.17119433,-0.32074744,0.13474652,0.37981033,-0.35883966,-0.13703914,-0.23176867,0.02255704,-0.46317366,0.37731287,-0.16534548,-0.15678683,0.042943876,-0.24934019,-0.06917875,0.41220525,-0.28390515,-0.23394288,0.04115226,0.10339138,-0.23067309,-0.15798695,-0.37178838,0.3195823,0.020907573,0.00657293,0.035265755,0.03582615,0.103834175,0.3903311,0.020252688,0.22674058,0.32428944,-0.25023922,-0.5454512,0.036599226,0.007694368,0.31210974,0.11357821,-0.15473737,-0.41645876,-0.37842384,-0.1432381,0.265895,-0.3065057,0.13884388,0.12322705,-0.3277003,1.0235279,0.17276707,1.182949,0.0011324048,-0.3852417,-0.022406483,0.6471523,0.1254868,0.01219778,-0.14419289,0.90711683,0.5730558,-0.25530943,-0.2915616,-0.38040334,-0.15767814,0.27838644,-0.3237153,-0.24980998,-0.1209177,-0.7018777,-0.20690428,0.1970353,0.29979178,0.07970301,-0.1021009,-0.01120676,0.1294671,0.08821329,0.5978629,-0.5856126,-0.16347331,0.1850073,0.068627246,-0.041296482,0.23479111,-0.36490837,0.45484325,-0.72770566,0.14242609,-0.4055386,0.1411849,-0.030208332,-0.37802884,0.26244205,-0.042402513,0.28956828,-0.26353326,-0.26540443,-0.25540286,0.6927195,0.29845408,0.37262148,0.67126304,-0.41287762,0.17114843,0.112087995,0.44253096,1.21502,0.00441657,-0.100571364,0.27993375,-0.4534968,-0.5284496,0.20974766,-0.45286602,0.22269095,-0.08408711,-0.44266698,-0.44932845,0.36412156,0.09671789,0.03514901,0.20514728,-0.5672176,-0.124966875,0.45214733,-0.32420164,-0.36032167,-0.3674873,0.3317633,0.5785081,-0.45190346,-0.34515715,-0.02627761,0.16838983,-0.23720306,-0.63123375,0.02594902,-0.33160317,0.5129252,0.12698215,-0.36873716,0.20123596,0.2188141,-0.3798568,0.13160114,0.43438688,-0.20658146,0.056714978,-0.30640805,0.017502926,1.1105212,0.016823407,-0.086732835,-0.62917495,-0.5040964,-0.9061526,-0.22762822,0.48207816,0.24226722,0.11074786,-0.71087265,0.027521402,-0.09024658,0.10176777,0.09574803,-0.35921022,0.4783165,0.2275467,0.42274627,0.08717049,-0.8141019,-0.00022959709,-0.01996191,-0.19651197,-0.5096669,0.6271301,-0.2024044,0.6592794,0.21898556,0.16574523,0.119566426,-0.61262447,0.4367736,-0.3319343,-0.21202205,-0.551399,0.07137896 -690,0.3683582,-0.15125537,-0.6030726,-0.039545428,-0.4090534,0.029752906,-0.322273,0.21769534,0.47943634,-0.12579638,0.015425416,0.1674322,-0.068993196,0.15895149,-0.17352831,-0.7073928,-0.1404939,0.08017903,-0.65225214,0.43566912,-0.5372989,0.47505832,-0.19675358,0.29751325,0.06497327,0.4840776,-0.01454834,0.058992095,0.052120365,0.034937125,-0.10325272,0.098834045,-0.35251305,0.018597765,0.009402573,-0.3424894,0.0635666,-0.2919264,-0.27566317,-0.7113914,0.26344028,-0.61959213,0.6254262,-0.052643392,-0.1293427,0.1085879,0.22525859,0.33754274,-0.32614797,0.12909058,0.14098191,-0.23783161,-0.10541532,-0.46306852,-0.39101434,-0.34814686,-0.49486026,0.021361154,-0.63609546,-0.20830579,-0.2990974,0.22993119,-0.35861474,0.025154259,-0.23653455,0.38039157,-0.38600573,0.0823425,0.2946886,-0.18134715,0.2513306,-0.61550313,-0.048475318,0.07120093,0.26473406,0.08988683,-0.03414143,0.37356132,0.2023112,0.37098736,0.26012984,-0.30772835,-0.38924146,-0.19420926,0.029429495,0.44281688,-0.32302713,-0.029544728,-0.25641906,0.094443694,0.37414217,0.41077963,-0.050207548,-0.15283345,0.013942411,-0.039807048,-0.28920445,0.75260633,0.5504741,-0.33639956,-0.2729039,0.30058417,0.54758006,0.17963183,-0.30369207,0.02731204,-0.07658213,-0.3451271,-0.16948612,0.1377018,-0.07848792,0.3706167,0.009642073,0.18106093,0.75194216,-0.17657228,-0.10074228,0.05581693,-0.012001021,0.14827575,-0.37984732,-0.11440265,-0.054832865,-0.55858105,0.21613696,-0.20166896,0.57191706,-0.1348053,-0.6498627,0.43241793,-0.5623928,0.16303493,0.014184124,0.54844064,0.6734198,0.5410873,0.20263436,0.8398279,-0.28687114,0.17591532,-0.18387151,-0.28627163,-0.07195755,-0.10716107,0.21787961,-0.5106698,0.27599254,-0.18663958,-0.031907223,0.25787187,0.32943746,-0.5224083,-0.07088781,0.11102816,0.91741836,-0.26321712,0.0072287363,0.71476907,1.1865845,1.1465265,-0.035104793,0.7737964,0.26414016,-0.25782052,-0.026467612,-0.5590664,-0.37979817,0.17628191,0.28145805,-0.009282529,0.40730804,-0.10540592,0.00953392,0.3019274,-0.27956393,-0.12720916,-0.083769545,0.4475431,0.19773833,-0.0019812733,-0.4459005,-0.061182227,0.049427815,-0.04410592,0.24791972,0.27573225,-0.30403545,0.1621265,-0.005317194,1.1056775,-0.02132484,-0.0569109,0.19339392,0.5284364,0.3065967,-0.048680954,-0.01716483,0.40685704,0.21597394,-0.13606824,-0.5575406,0.32401562,-0.28232923,-0.34061366,-0.111622944,-0.2529089,-0.14593959,0.15696338,-0.25692183,-0.21771784,-0.18456747,-0.3477431,0.38823554,-2.6445756,-0.27517837,-0.12512565,0.33948606,-0.17549232,-0.25316235,0.08223836,-0.47328177,0.38721964,0.17821942,0.40804258,-0.57707006,0.61670065,0.5686881,-0.5970151,-0.15997764,-0.5884271,-0.04359031,0.0028782573,0.496542,0.013135399,-0.10088324,-0.24412622,0.25343743,0.76410663,0.00044834826,0.12726496,0.5130311,0.36641344,-0.07532177,0.3442357,0.014209496,0.59817344,-0.20721905,-0.19532302,0.20961772,-0.3223595,0.08666094,-0.17722258,0.0009666852,0.34779912,-0.45519257,-0.8688317,-0.45041493,-0.015308431,1.1901804,-0.18860361,-0.57349676,0.2010976,-0.27407476,-0.16910349,-0.050061468,0.5430327,-0.011656622,-0.061048158,-0.5958784,0.16682673,-0.06342419,0.20735182,0.090708576,-0.08180381,-0.21499467,0.6473426,-0.1275099,0.49195093,0.19866636,0.3857452,-0.21930242,-0.1809555,0.08344597,0.73144436,0.38220212,0.022284018,-0.037881397,-0.2771864,0.08777022,-0.26378915,0.054572992,0.6589042,0.66678536,0.025361612,-0.033079445,0.29378608,-0.25393924,-0.043323554,-0.26971707,-0.19516727,-0.052546196,0.045628108,0.42188564,0.6484906,-0.057622105,0.4688607,-0.20359768,0.27206486,-0.20079443,-0.40699926,0.41088793,0.41386408,-0.26399764,-0.23463562,0.5320245,0.42282805,-0.4348007,0.3634703,-0.63362885,-0.19852737,0.55954677,-0.25847554,-0.34352466,0.17205976,-0.26111996,0.08735423,-0.5333087,0.25230294,-0.36219332,-0.6690854,-0.24918173,-0.114935264,-3.2285845,0.22827943,-0.25309128,-0.11240782,-0.2805057,-0.08449278,0.21261665,-0.5504128,-0.5498497,0.19221197,0.27563605,0.5256865,-0.091282144,0.049265575,-0.16196585,-0.3163268,-0.114362955,0.25547332,0.061843045,0.31962687,-0.10536759,-0.3684478,-0.03062941,0.05233687,-0.65043515,0.1977627,-0.6161728,-0.34719986,-0.035207793,-0.57759523,-0.18868157,0.550667,-0.38255766,0.11114633,-0.47822624,0.0993482,-0.13306093,0.20517656,0.1366627,0.17268172,0.32735848,-0.17455198,0.28658578,-0.31305155,0.480084,-0.11141515,0.39523205,0.09426097,0.075992875,0.031400535,0.40234452,0.76833826,-0.0014026889,0.917649,0.3012744,-0.21697153,0.34120873,-0.33006898,-0.19765961,-0.5754878,-0.4741753,0.1271443,-0.2638667,-0.481278,-0.031581577,-0.41271496,-0.7706795,0.4405225,-0.019495828,0.39097193,-0.10047108,0.43859336,0.5003024,-0.13872184,0.024693994,-0.030511392,-0.20742676,-0.36906025,-0.19504498,-0.5954946,-0.49954224,0.14734583,0.857862,-0.37887594,0.16376765,-0.00900312,-0.26604992,-0.027057827,0.19640337,0.2225003,0.24541244,0.33806816,-0.07237292,-0.4738136,0.14211293,-0.09776676,-0.1877815,-0.6060459,0.21037851,0.61249256,-0.5373519,0.6073504,0.30503842,0.07278671,-0.051418282,-0.5572626,-0.007889619,0.14846513,-0.22085992,0.44477326,0.1894426,-0.78664,0.589753,0.37220818,-0.46866587,-0.7506085,0.13222659,-0.17959611,-0.34670287,-0.14859438,0.35220364,0.30095223,-0.14438085,-0.16704287,0.08953134,-0.37779373,0.2847127,0.082783334,-0.14147614,0.14524078,-0.13737682,-0.27111298,-0.7729009,-0.020744279,-0.52246654,-0.22673228,0.21100008,-0.0020023903,0.00078142964,0.06446666,-0.015123137,0.43470535,-0.21445975,0.05386663,-0.10393935,-0.47757074,0.21450658,0.45456102,0.36106887,-0.30812314,0.45931694,-0.015327895,-0.22476223,0.072849534,0.07529877,0.41324258,-0.072664045,0.39255005,0.00959528,-0.17908213,0.33842775,0.6334647,0.10700907,0.40837553,0.09208502,-0.20187299,0.43722126,-0.028962377,-0.071228474,0.09301727,-0.27531815,0.075067095,-0.015578517,0.12737569,0.45132822,0.30689353,0.30741867,-0.01189601,-0.12983128,-0.0571993,0.23966043,-0.17126963,-1.3761948,0.37447637,0.24547179,0.8263505,0.40785798,0.3086483,-0.33001158,0.70261633,-0.094452776,0.012531906,0.46206146,0.10628251,-0.37323853,0.5611633,-0.6067354,0.4164124,-0.16816787,-0.064430155,0.2013795,0.2909281,0.32366198,0.950796,-0.19621852,-0.12682663,-0.05386773,-0.18923189,-0.20002988,-0.252531,0.057891935,-0.362214,-0.4998992,0.5179526,0.26350743,0.45394638,-0.18930426,-0.065928824,0.06280681,-0.17878425,0.2505878,-0.0071389847,-0.010908251,0.031070685,-0.50447375,-0.20646158,0.36450815,0.09651314,0.2218384,-0.25463778,-0.17770945,0.06668909,-0.08214855,-0.1292667,0.15081392,-0.44468403,0.063221686,-0.18935095,-0.525008,0.4113523,-0.10682344,0.1533914,0.112726346,0.08974784,-0.19049096,0.3202993,0.194964,0.6438597,0.10170286,-0.194292,-0.37481064,0.077494144,0.078803696,-0.1751351,0.18309762,-0.21296497,0.22714007,-0.712378,0.7152071,-0.2655315,-0.44083765,0.25372857,-0.3201978,0.01648879,0.48150334,-0.2872429,-0.1841975,-0.007871176,-0.2289037,-0.38653368,-0.35700393,-0.14158365,0.16712812,0.0723018,-0.16056217,-0.0840454,-0.3269222,-0.22645691,0.6077333,0.06918719,0.46373028,0.24819103,0.2064059,-0.2841731,0.0027897134,0.117790096,0.3654092,0.10105432,0.135287,-0.50181925,-0.47611997,-0.22393334,0.14205906,-0.06994133,0.045882523,-0.08776853,-0.2583069,0.9425456,-0.11811031,1.1378318,-0.02743873,-0.15004416,0.124501765,0.47148475,-0.13427088,0.07897786,-0.33580446,0.86074597,0.67999953,-0.23863925,0.027099058,-0.43619728,-0.18948092,0.31841332,-0.4158875,-0.031462606,-0.018530052,-0.6884171,-0.43883634,0.2462914,0.06525103,0.1616578,-0.012930901,0.13353412,0.029238222,0.18452954,0.36160687,-0.4863115,-0.06390505,0.2502436,0.22586192,-0.095013596,0.16247606,-0.45518667,0.2706354,-0.49925885,0.18120578,-0.29989856,-0.0036799717,-0.031127986,-0.29155466,0.27467465,-0.052506734,0.23446997,-0.26006418,-0.38350663,-0.038178004,0.36616492,0.016277626,0.099122204,0.47656724,-0.29880556,0.043664183,0.13495743,0.6799768,1.1824204,-0.17553768,-0.033317387,0.18592827,-0.41106206,-0.6236328,0.29944843,-0.17590281,-0.2591709,-0.059240878,-0.27501562,-0.39187616,0.29524246,0.12224662,0.060691413,0.068305455,-0.4473732,-0.2621858,0.20986806,-0.39775568,-0.06913002,-0.024156386,0.43552193,0.721031,-0.21425939,-0.4388246,-0.010982522,0.4782717,-0.13964725,-0.43225202,0.07151383,-0.07901057,0.4156902,0.21768798,-0.37825677,-0.090457544,0.17753114,-0.440517,-0.18728028,0.25229135,-0.32785234,0.03673593,-0.22692974,-0.064097166,0.586727,-0.2636936,0.022228787,-0.5783172,-0.5382295,-0.82465523,-0.4047747,-0.0760972,0.22393033,-0.08771761,-0.5002734,-0.025003782,-0.18078874,-0.26344457,0.07971263,-0.6283282,0.4417336,0.07791724,0.34810638,-0.49974233,-0.888412,0.024647057,0.21109538,-0.19918464,-0.6642416,0.6834273,-0.15649627,0.71401644,0.05756238,-0.11681169,0.038453586,-0.3305311,0.22303598,-0.39498833,-0.25655463,-0.77676713,0.08078815 -691,0.4522083,-0.15604001,-0.543619,-0.099018574,-0.26392826,-0.09199866,-0.3097502,0.020494195,0.21568339,-0.3026121,-0.35270378,-0.24185616,0.345012,0.6466122,-0.013991494,-0.82286966,0.014606201,0.2694108,-0.84936684,0.5893921,-0.5441915,0.3181504,0.3427201,0.30964786,0.092950456,0.29762286,0.38236004,-0.13603419,-0.2649911,0.036381245,-0.22295378,0.1315725,-0.7061234,-0.0019696308,-0.13105121,-0.5560407,0.0578506,-0.40037602,-0.2277719,-0.6918102,0.22825202,-0.9857972,0.4623229,-0.047849163,-0.064009026,-0.12449184,0.15658368,0.6058584,-0.29213154,-0.046360336,0.16515599,-0.38680202,-0.15064551,-0.2795405,-0.09620795,-0.15850845,-0.48536202,-0.07134437,-0.5274057,-0.47431153,-0.23115641,0.091669045,-0.32086486,0.23207417,-0.11401591,0.3785136,-0.4668143,-0.1459716,0.51359755,-0.1481407,0.45041546,-0.41062844,-0.06129221,-0.07970353,0.6153252,-0.1667343,-0.18192299,0.41737917,0.4102792,0.40543082,0.18767217,-0.37254637,-0.3020898,-0.19309846,0.33969948,0.62433875,-0.2007162,-0.3133807,-0.16529502,0.15027615,0.27769822,0.4270117,-0.0031304727,-0.2707315,-0.1124468,-0.0316068,-0.10391336,0.31225824,0.46184584,-0.25308397,-0.447855,0.095575556,0.6445265,0.20431505,-0.23571664,-0.13772787,0.0819198,-0.5633366,-0.13185142,0.37199005,-0.1668109,0.7118988,-0.057333272,0.19859566,0.9370463,-0.2774812,0.108065926,-0.37115738,-0.097601876,-0.25126305,-0.2816845,-0.16748835,0.24203569,-0.6752523,0.08371329,-0.30718005,0.87017095,0.19734503,-0.7688741,0.39225656,-0.58331925,0.21898519,-0.16702285,0.66314733,0.6017098,0.18025559,0.4728517,0.7393104,-0.33298433,0.34132883,-0.09908453,-0.66638035,-0.10829846,-0.24117653,0.29636532,-0.46810773,-0.00045825884,-0.091582626,0.06677031,0.3082004,0.3321977,-0.46397012,0.06683926,0.16988556,0.85260004,-0.36569154,0.049762394,0.65389496,1.0946206,1.0038618,0.099237055,1.2106525,0.48113486,-0.43909436,0.08327626,-0.23462985,-0.61266845,0.11230854,0.43654618,0.02944949,0.3308001,-0.08046986,-0.102699295,0.36700997,-0.42764887,0.09455217,-0.011455095,0.08487118,-0.028953386,0.042353056,-0.6972295,-0.24807684,-0.23228313,-0.16385573,-0.016048463,0.17927378,-0.048985485,0.62220377,-0.12699787,1.426139,-0.05746997,0.047678426,-0.027962932,0.51729083,0.21128827,-0.04309277,-0.16003157,0.22449853,0.38165304,0.016335877,-0.49351814,0.2101148,-0.33528173,-0.29034263,-0.13927718,-0.27395165,0.23932984,0.2770951,-0.44187486,-0.061008155,0.082649484,-0.19480896,0.45016208,-2.4453628,-0.32740653,-0.20901902,0.13119017,-0.33479822,-0.19033572,-0.13788281,-0.6702363,0.38310778,0.1268315,0.55152166,-0.7419824,0.4352377,0.36471242,-0.47995615,-0.16770639,-0.8504147,-0.266905,-0.03729982,0.31737205,-0.033290353,-0.19151746,0.01687291,0.22342819,0.6663964,-0.061583184,-0.0239986,0.58374023,0.27640226,0.24874394,0.6066285,0.0650577,0.6492535,-0.37901068,-0.18678896,0.34426662,-0.04497641,0.29234582,-0.22405267,0.24025449,0.54160917,-0.45869556,-0.9995088,-0.67022526,-0.5107069,0.9515408,-0.42431912,-0.5589165,0.18813016,0.13457638,0.04127387,-0.0020087613,0.49484628,-0.046112172,0.19480135,-0.7011028,0.16389726,0.03154244,0.20856203,0.16172951,-0.120108835,-0.29024768,0.6310981,-0.10028613,0.30103424,0.36126673,0.40303162,-0.0038670255,-0.3927563,0.18139139,0.93365926,0.2754104,-0.015247409,-0.3090759,-0.32778352,-0.18455115,-0.29113388,-0.031644203,0.26592633,0.98897654,-0.070361264,0.098022304,0.22833559,0.023600621,0.016869418,-0.17120937,-0.3307253,0.04493064,-0.05607674,0.5054475,0.68608,-0.053163297,0.6873716,-0.19427237,0.33221528,0.111991696,-0.519165,0.68321675,0.6913695,-0.038731173,0.01671532,0.38757846,0.302945,-0.5178597,0.51284844,-0.61986643,-0.19174026,0.75782216,-0.1999512,-0.38742495,0.30090594,-0.29310137,0.14435765,-0.90050465,0.36902937,-0.34933963,-0.23256661,-0.30473486,-0.0051723537,-3.8830378,0.31622404,-0.22689319,-0.13571855,-0.14968708,-0.11330835,0.16209921,-0.63597673,-0.5260588,0.29294658,0.13994443,0.7421065,-0.09301123,0.10199596,-0.13848248,-0.18035771,-0.118467286,0.049350634,0.2448985,0.21020284,-0.1558881,-0.46997052,0.10682274,-0.17867678,-0.6361892,0.26761484,-0.5976791,-0.5324191,-0.20222512,-0.5112392,-0.53402907,0.6569328,-0.33149564,0.11204866,-0.27717665,-0.0007957621,-0.2527188,0.41931993,0.16754302,0.29882175,0.06569424,0.07817434,0.08356113,-0.29505587,0.34419298,0.062462803,0.19357374,0.05036809,0.018432947,0.21846448,0.39736968,0.73857236,-0.047480013,0.8055286,0.4399903,-0.13286997,0.113675304,-0.3247688,-0.16533595,-0.67426056,-0.47715455,-0.094093986,-0.38191503,-0.6788982,-0.12632337,-0.3910058,-0.76885414,0.6691312,-0.07569882,0.3406556,0.061815783,0.27772474,0.41316003,-0.22780164,-0.015313128,-0.11796188,-0.08175206,-0.7176499,-0.20110525,-0.7325671,-0.6222286,0.01653227,0.67093235,-0.3694042,0.004378475,-0.03631266,-0.41708344,0.20126922,0.24607696,0.08949462,0.27404606,0.4303575,-0.09620982,-0.73384184,0.5144921,-0.0814563,-0.24012025,-0.62764513,0.16189578,0.7175677,-0.7762778,0.64157224,0.4116281,0.028962173,0.05075833,-0.40968177,-0.38127893,0.011830758,-0.292902,0.3302605,-0.03371908,-0.57090384,0.45188582,0.30820853,-0.44898683,-0.7231456,0.3278162,0.121157035,-0.34968954,0.070822395,0.2745292,-0.026259633,-0.05761876,-0.4017154,-0.056734398,-0.5248304,0.18236098,0.42172685,-0.023885999,0.12714006,-0.049311105,-0.24329185,-0.76291597,0.13179451,-0.38036716,-0.0126934415,0.3601464,0.026328294,-0.048394486,0.11862811,0.13126057,0.32156006,-0.34239992,0.13333625,-0.055246335,-0.519674,0.25043315,0.43277514,0.1420335,-0.44885033,0.6512695,-0.025336912,-0.4404373,-0.14903565,-0.033878747,0.39334673,0.13238534,0.30882627,-0.20017274,-0.37095478,0.27473953,0.6245779,0.083627634,0.48074192,0.20728189,-0.040052645,0.4465474,0.07842273,-0.0073617194,0.1684288,-0.298854,0.0072028306,-0.16070564,0.10233033,0.60168,0.3815074,0.3890667,0.10436999,-0.15635654,-0.008205514,0.1447679,-0.04982698,-1.0059127,0.4432329,0.2588836,0.7445259,0.48098695,0.037390035,-0.19521634,0.54568136,-0.41428745,0.14179662,0.28156084,-0.030945344,-0.48487192,0.91276956,-0.72060555,0.40778574,-0.09690463,-0.11718369,0.17838351,0.15057445,0.28791815,0.89027435,-0.2761712,0.084522605,-0.11832617,-0.09615359,0.031087808,-0.42625266,-0.10576415,-0.49422258,-0.48417285,0.7869699,0.2932569,0.4783063,-0.17496371,-0.044640753,0.05650923,-0.14935265,0.34208506,-0.10054293,0.16494118,0.21529219,-0.6314653,-0.25022107,0.5686455,-0.18054777,0.21451807,-0.20240869,-0.1835948,0.06541233,-0.18555458,-0.052183848,0.0012445783,-0.8964454,0.073812544,-0.40433455,-0.48243392,0.40727362,-0.22250588,0.27030468,0.21989833,-0.021870183,-0.056026094,0.44379514,0.101396866,0.86016697,0.098334655,-0.27847043,-0.24667703,0.18954812,0.38629687,-0.1396304,0.33448812,-0.25996843,-0.10441416,-0.50319254,0.7517309,-0.08719389,-0.25874287,0.17565559,-0.23760432,-0.021512091,0.5878405,-0.30434057,-0.010461644,0.11870836,-0.050212387,-0.41564772,-0.1163236,-0.35224056,0.074635416,0.33796936,0.06450571,-0.040647782,-0.017470658,-0.03833741,0.65335166,0.0011077684,0.5168669,0.13132542,0.07596653,-0.23335549,-0.040765043,0.06054636,0.3683883,0.16602415,-0.123466216,-0.56377554,-0.45208195,-0.2760856,0.058629908,0.013155064,0.25376314,-0.04639336,-0.19776312,0.9523077,0.020249905,1.1460662,0.09433726,-0.41379637,0.06272681,0.3793095,-0.19102216,-0.03994486,-0.47898337,0.8628038,0.4843846,-0.00910187,-0.07670344,-0.39584777,-0.10843475,0.3170798,-0.2208409,-0.008357167,0.085921094,-0.44508508,-0.59479797,0.2269863,0.2536768,0.13297097,-0.11466896,0.2582512,0.103578776,0.106410965,0.42081025,-0.658752,-0.26467627,0.31152564,0.23777682,-0.059549175,0.22855388,-0.26501262,0.46429628,-0.69869983,0.19129062,-0.607396,0.035922237,0.016770106,-0.42308462,0.24699156,0.15857014,0.34791374,-0.35265014,-0.22720355,-0.08128925,0.5637236,0.077821165,0.1468341,0.78823155,-0.31105614,-0.004298522,0.11665935,0.50050884,1.4605429,-0.58739775,0.08778189,0.37091562,-0.28099066,-0.49380955,0.47348186,-0.15173502,-0.022024632,-0.22081973,-0.4623428,-0.6706477,0.1611279,0.16659205,-0.09809403,0.1730739,-0.36206892,-0.16874918,0.35720444,-0.45597664,-0.342529,-0.42767996,0.41058257,0.5621314,-0.3010238,-0.26424626,0.13661204,0.20910168,-0.25329432,-0.31010595,-0.044733223,-0.0892448,0.33155856,0.12774967,-0.29637602,-0.09180526,0.22326067,-0.4651963,-0.118152946,0.09081356,-0.38546926,0.13625282,-0.15466252,-0.24369127,1.051504,-0.38595515,-0.26234648,-0.7190978,-0.5480488,-0.86533237,-0.6203642,0.5882699,0.08627936,0.1571038,-0.33653492,0.097339764,0.008450174,-0.0028417981,0.0840904,-0.36997354,0.2824166,0.15835483,0.47458982,-0.38867602,-0.78124213,0.17435619,0.11257135,-0.13557124,-0.6105085,0.48666206,-0.04482667,0.7778203,-0.015219594,-0.12713464,0.1649234,-0.25733224,0.05580489,-0.35292295,-0.16618465,-0.9119861,-0.060966037 -692,0.4566279,-0.55835706,-0.18446064,-0.040800467,-0.102245964,0.09463768,-0.15945905,0.520599,0.3593894,-0.64645237,-0.03564771,-0.16134946,0.015578032,0.5025933,-0.15469384,-0.3779875,-0.3616322,0.2822193,-0.4713303,0.83315235,-0.26939723,0.17527336,0.00324191,0.7204508,0.26880917,0.17463702,0.120798096,0.0853257,0.0032465095,-0.5981981,-0.03368906,-0.2936206,-0.7277941,0.31623223,-0.1433546,-0.50237405,-0.0791056,-0.75712186,-0.35770735,-1.0227033,0.49089208,-0.9365213,0.5089783,-0.020615008,-0.15152389,0.2618873,0.23288584,0.28584284,-0.0036805389,-0.20458935,0.2598657,-0.42557144,-0.016515533,-0.35624114,0.06569797,-0.12019686,-0.6230172,-0.12014357,0.016433494,-0.44159082,-0.2879503,0.27692753,-0.42456317,0.12441422,-0.19985561,0.9548382,-0.30491796,0.18236534,0.019694302,-0.45318425,0.17321037,-0.7767597,-0.35715258,0.02146751,0.028353916,0.12883581,-0.17899862,0.40975296,-0.06830795,0.3834964,-0.009967844,-0.22854008,-0.37394637,-0.12945564,-0.12356954,0.66991127,-0.13365681,-0.4655304,-0.1422754,-0.09497944,0.04247764,0.2565291,0.33852595,-0.30161542,0.06526173,-0.1895026,-0.16382922,0.6435401,0.6565869,-0.03680475,-0.1145902,0.16173762,0.51677144,0.11467365,-0.17502207,-0.19085154,-0.034416582,-0.4912724,-0.18994941,0.032247227,-0.33045584,0.41836742,-0.23480412,0.24079466,0.6010882,-0.19845314,-0.010255079,0.16519573,0.36245394,0.22816621,-0.73825496,-0.61179614,0.68432975,-0.3415481,0.32465923,-0.61110044,0.8710379,0.1135593,-0.5600594,0.45551622,-0.6220777,0.18013473,0.03440833,0.54768986,0.41540235,0.5760131,0.43010274,0.8975349,-0.41032186,-0.0020347568,-0.09343571,0.06762804,-0.30098367,-0.4369647,0.43594873,-0.3799032,0.14760491,-0.121190496,-0.0021887189,0.113210596,0.23797809,-0.6015803,-0.24997228,0.32293415,1.1666609,-0.14898327,0.46409157,1.097086,1.1725619,1.5351348,-0.057319395,1.0083599,-0.05147416,-0.37399173,-0.15866,0.019488348,-0.8941386,0.18461384,0.3414989,0.50702935,0.061358504,0.12181011,-0.12288153,0.49589026,-0.63306314,-0.046092127,0.09969494,0.43547255,0.38687074,-0.14165887,-0.6467463,-0.23629862,0.003645271,-0.09745783,-0.03374188,0.31510177,-0.28075328,0.32837766,0.008379976,1.4407542,-0.28074175,0.2365275,0.283551,0.62291104,0.049013667,-0.3906446,0.21042189,0.18460427,0.27662933,0.049694404,-0.5854486,0.29370582,-0.1813346,-0.53568095,-0.13878924,-0.20096394,-0.25208807,-0.027411334,-0.24160814,-0.5584017,-0.27524972,-0.041786484,0.061594352,-2.551532,-0.028044403,-0.118137754,0.44223008,-0.39696917,-0.2669696,0.41353348,-0.5673773,0.47901317,0.2676621,0.45761648,-0.6890952,0.051190786,0.68081886,-0.730335,0.032769892,-0.67392117,-0.25585195,0.015402164,0.48313108,0.03851355,-0.20349342,-0.17012279,0.03001409,0.39619976,0.45695633,0.18907298,0.47098577,0.2866336,-0.19448449,0.4222199,-0.21357399,0.4206135,-0.5513735,0.032210346,0.29306644,-0.69287765,0.07157213,-0.48206636,-0.04435647,0.71158475,-0.44662607,-0.49615023,-0.64509857,-0.042077795,1.1721117,-0.1610541,-0.9261968,0.14190432,-0.21077377,-0.17281397,-0.31277126,0.586794,-0.058958847,-0.1576451,-0.6828282,-0.017376145,-0.34521797,0.30107063,-0.115627766,0.041603506,-0.6912211,0.9394974,-0.0140549205,0.48389244,0.43764693,0.16394936,-0.5513806,-0.29866335,0.072533995,0.81043464,0.44909567,0.20936614,-0.30491188,-0.04647447,-0.38660735,-0.39941227,0.0042085615,0.7085074,0.66600853,-0.23877543,0.1912255,0.26790157,-0.15315929,0.17119677,-0.17494184,-0.32307082,-0.32261053,0.054079965,0.59057575,0.6266915,-0.14759067,0.17647542,0.04473333,0.059932914,-0.28944507,-0.45454413,0.3365847,0.85529685,-0.2319321,-0.32186508,0.57807374,0.4499842,-0.53599507,0.5548413,-0.49078152,-0.32064837,0.57948315,-0.08084924,-0.7279079,-0.0762711,-0.22949508,0.047155116,-0.6260215,0.091968745,-0.3460263,-0.44147077,-0.6887974,-0.24179323,-2.042669,0.28096485,-0.21916026,-0.23165613,-0.33370474,-0.23632066,-0.09361908,-0.49893406,-0.70972425,0.42938995,0.17291826,0.65043473,-0.15752202,0.25484362,-0.20657697,-0.21222074,-0.6037227,0.28260377,-0.06674942,0.19108115,0.15129675,-0.29183972,-0.051627878,0.1851577,-0.5748929,0.036946114,-0.6474429,-0.39861885,-0.19771011,-0.64457047,-0.4801374,0.64961934,-0.11566308,0.19597608,-0.2716589,-0.1826325,-0.15203923,0.1818667,0.17793164,0.24543776,0.20445378,-0.23331414,0.058728524,-0.15714383,0.15750866,0.05645374,0.19314569,0.3576044,-0.27462536,0.22060587,0.16619486,0.91156936,0.16170359,0.9815968,0.21557349,-0.1643176,0.32883033,-0.401967,-0.27574402,-0.57682276,-0.0554725,0.40821564,-0.2928648,-0.45049566,0.04255673,-0.3345812,-0.53007674,0.5928845,0.20869552,0.43103865,0.16199411,0.2877721,0.42564,-0.19683093,-0.12336123,0.046445712,-0.019465737,-0.5179209,-0.23102845,-0.7784077,-0.33548352,0.1472159,0.6441421,-0.16575494,-0.079612255,0.4065432,-0.3783897,0.045522265,0.2496858,-0.1430316,-0.2120491,0.5328684,0.40361962,-0.7472883,0.43692714,0.35279614,0.03725232,-0.51126194,0.5689213,0.58429134,-0.5682347,0.6899792,0.10515193,0.012935261,-0.72543,-0.53164124,-0.16996193,0.0059785377,-0.25426257,0.16601548,0.21539295,-0.6597573,0.33551073,0.29441118,-0.19217771,-0.825526,0.063872784,-0.064904705,-0.64429075,-0.1979891,0.4133813,0.22333759,0.1097246,0.16086584,0.15952837,-0.64071727,0.37709725,-0.047213264,-0.036131416,0.3632102,-0.16963707,-0.1656026,-0.69610745,0.2753768,-0.56997156,-0.26698023,0.41366148,0.062085517,-0.16251683,0.5968699,0.31757092,0.43636778,0.098232776,0.15471049,-0.3713662,-0.36008802,0.5374271,0.426239,0.46475717,-0.5919297,0.77129024,0.12441483,-0.26081848,0.09147534,-0.13618733,0.42487356,0.12827052,0.4914187,-0.12649606,-0.20700438,-0.06882686,0.5996252,0.36691308,0.5395158,0.021211458,-0.027429167,0.46463293,0.074523956,0.16869247,-0.1449499,-0.7485195,0.29799998,-0.27669686,-0.088855535,0.43029657,0.058843188,0.41170698,0.00815307,-0.3494091,-0.11740952,0.08206527,-0.38497096,-1.521399,0.32830298,0.15862915,1.1528072,0.75545985,-0.11922574,0.086793594,0.93307686,-0.109904654,0.09487849,0.40953597,0.05090573,-0.47202766,0.6747922,-0.724662,0.43178704,-0.090274505,0.0008666565,-0.024961762,0.08825743,0.50778955,0.45470428,-0.19072433,-0.1950669,-0.281201,-0.25222903,0.1199739,-0.45040172,0.23279484,-0.3994413,-0.3153431,0.5392532,0.58119303,0.41321877,-0.26202694,0.14724873,0.113294125,-0.07998827,0.1610718,0.17771572,-0.31983054,0.16146487,-0.51849437,0.04914351,0.5741434,-0.26003087,0.016993228,-0.0031644627,-0.24722306,0.19559394,-0.16739129,-0.26200652,0.028838567,-0.8740046,0.25276,-0.27942634,-0.36202943,0.20159732,0.069266096,0.12692527,0.21433,0.14871836,-0.19878918,-0.06268216,0.379864,0.72351044,-0.09187209,-0.20394844,-0.26480278,0.1314308,-0.048330244,-0.1783581,0.38627255,0.033892922,0.07700205,-0.37796077,0.5589628,-0.08585528,-0.21848606,0.15682213,-0.18227236,0.01663433,0.86136574,-0.06356128,0.06345899,-0.11488005,-0.3121446,0.016023874,-0.245272,-0.13883652,0.32145008,0.036896855,0.13886225,-0.1269585,-0.17762859,-0.28602988,0.5875762,0.064074956,0.32201126,0.2810329,-0.028760247,-0.5924236,0.18130694,-0.16514453,0.62715596,-0.10096068,-0.06479853,0.08372215,-0.47139487,-0.5506389,0.74507934,-0.034560494,0.3812628,-0.035253268,-0.29436022,1.0155559,0.250604,1.0216798,-0.09302902,-0.3392321,0.13349849,0.53460014,-0.1849079,-0.064906925,-0.54454815,1.0027013,0.5924583,-0.15132357,-0.0011059443,-0.27940124,0.19153446,0.53466964,-0.26356396,-0.00017104547,-0.050013144,-0.72258514,-0.35892412,0.18686682,0.21254188,0.028563049,-0.27348366,-0.058772452,0.60540515,0.039965015,0.38952336,-0.41758028,-0.08477888,0.37356827,0.0782776,0.0980517,0.11640644,-0.43257815,0.1851031,-0.62591934,0.38931963,-0.30152142,0.063810885,-0.28820792,-0.1646547,0.21436323,0.08848658,0.40989944,-0.47273588,-0.5537004,-0.108618155,0.22829808,0.13508022,0.050304852,0.5587424,-0.12897176,0.07356965,0.19887531,0.5419359,0.8534373,-0.08136216,0.2512056,0.09841264,-0.67526937,-0.89091957,0.40950915,-0.0009644429,-0.106440715,0.05809611,0.044704754,-0.7549785,-0.036987565,0.3129849,-0.20917805,0.10849786,-0.70780087,-0.59064484,0.36919415,-0.40167105,-0.22353435,-0.32887453,-0.12557322,0.62787133,0.008519013,-0.25377983,-0.0094052125,0.19668502,-0.29909003,-0.7701437,-0.06611661,-0.5650772,0.3762615,-0.18191385,-0.5814298,-0.39284778,0.19409074,-0.6184759,-0.07563844,-0.096953,-0.29226846,-0.14883396,-0.43913108,0.052720957,0.9123218,-0.09312202,0.3433769,-0.71297646,-0.588465,-0.74147725,-0.28980446,0.41301557,-0.08358701,0.14333756,-0.6681442,-0.23524468,-0.42241123,-0.0831957,0.0045972597,-0.4879715,0.31282696,0.17316392,0.4760029,-0.25884762,-0.6415539,0.38692534,0.16009745,0.007957141,-0.26564556,0.5300977,0.1281153,0.67882836,0.013434751,0.007443872,-0.07156403,-0.7162187,0.25497445,-0.036664836,-0.3417791,-0.61681694,0.30336377 -693,0.5935329,-0.1593402,-0.50380087,-0.1701976,-0.3551464,0.057287462,-0.34315726,0.07924772,0.062301874,-0.36575696,0.016651228,-0.13021326,0.029189643,0.36551583,-0.060866315,-0.90671873,0.10363612,0.0707032,-0.71373594,0.5944215,-0.55946326,0.5032185,0.060238805,0.13425454,0.010302027,0.32361078,0.28991035,-0.08702167,-0.12311342,0.042902164,-0.13426612,0.08526918,-0.56385505,0.1044281,-0.01173434,-0.22883521,0.07470417,-0.29418245,-0.3948435,-0.7029398,0.3795172,-0.6651068,0.31746486,0.06544712,-0.2950858,0.19220419,0.022064477,0.14854573,-0.2981552,0.3123381,0.1800239,-0.1579738,-0.063930035,-0.18826607,-0.18306841,-0.6036209,-0.54120594,0.13213447,-0.55979234,-0.31719133,-0.26205567,0.1614591,-0.40973815,-0.034005288,-0.09980712,0.34837016,-0.4701317,-0.14090139,0.19896036,-0.08291323,0.2632514,-0.4445668,0.010911427,-0.14573383,0.15753262,-0.17550305,-0.16731045,0.32298833,0.17254028,0.49275595,0.098249674,-0.28206182,-0.15866505,-0.098855436,0.2852541,0.36784896,-0.16322124,-0.45511556,-0.19396855,0.031209175,0.02861985,0.0099097965,-0.06433774,-0.45062542,-0.06580763,-0.0375818,-0.19992824,0.3682332,0.5014874,-0.364577,-0.27273494,0.38827857,0.45175254,0.15754473,-0.15779853,0.08622771,-0.07938727,-0.4695809,-0.17865106,0.2089764,-0.042617932,0.38568223,-0.35196534,0.25028467,0.7105616,-0.17683226,0.01915805,-0.075752445,-0.06395598,-0.09971136,-0.030173488,-0.08136112,0.12042262,-0.62910247,0.09560512,-0.16570978,0.7380899,0.32718658,-0.71695846,0.40686792,-0.5092498,0.318458,-0.24967623,0.5285215,0.82309055,0.25118777,0.11067996,0.6353056,-0.5741114,0.15575665,-0.121877655,-0.47806516,0.14253819,-0.10910432,-0.084656656,-0.55862606,-0.039358456,-0.15314639,-0.1322799,-0.19028495,0.55665153,-0.37818986,-0.04015164,0.038272016,0.6671481,-0.35114053,0.01660068,0.61370146,0.8303823,1.1846464,0.06335826,1.0967054,0.38624442,-0.20612492,0.0993732,-0.3536335,-0.73860264,0.28712144,0.409558,0.31842163,0.3183822,-0.14780003,0.025042642,0.43799922,-0.30365607,0.037391387,-0.2878568,0.2586724,-0.13018501,-0.042140357,-0.4244721,-0.10459834,-0.007710853,0.20793423,-0.04243339,0.29254273,-0.13036111,0.2651448,-0.027837697,1.5889809,-0.0986337,0.086191006,0.07533151,0.41546562,0.41449922,-0.21725266,-0.031801213,0.21282922,0.40297598,0.1537087,-0.6445473,-0.03903736,-0.37765178,-0.44974267,-0.16685417,-0.2761994,0.11854835,-0.07444066,-0.44731504,-0.20872152,0.040622823,-0.30683193,0.3493668,-2.3917758,-0.21556899,-0.17267357,0.21175283,-0.25598592,-0.3636904,-0.09352548,-0.43979675,0.42242557,0.36380702,0.5149835,-0.5773986,0.31519777,0.35847387,-0.52559674,0.020959966,-0.67687,-0.12013844,-0.15459464,0.4869639,0.04398889,-0.057016034,-0.102136515,0.30098012,0.5227933,-0.2119267,0.08908854,0.20213965,0.35839453,0.11910785,0.42823175,0.027852416,0.47242647,-0.28935942,-0.21747497,0.40035206,-0.19269598,0.115766,-0.17005311,0.10014709,0.3184302,-0.56026924,-0.9211383,-0.5481966,-0.30218956,1.2425903,-0.16253382,-0.4070392,0.3020816,-0.030771386,-0.10180495,0.14594644,0.28742862,-0.19806705,-0.10137476,-0.7037902,0.2615399,0.031355906,0.1821784,0.12294134,-0.046892915,-0.22848022,0.55665725,-0.054920305,0.33504462,0.27397117,0.21307382,-0.034513444,-0.5217716,0.114566155,0.983307,0.37658224,0.16102791,-0.25243127,-0.20879176,-0.19021483,-0.109202646,0.0867768,0.2923784,0.7923862,-0.057607513,0.09248655,0.20048764,-0.083439,0.11806649,-0.14066213,-0.31456783,0.0806262,-0.11814931,0.5517326,0.4872313,-0.09758681,0.37971565,-0.038773496,0.28502515,-0.11440182,-0.56024057,0.66018856,1.2853556,-0.09817785,-0.1591366,0.45868707,0.3331799,-0.26346454,0.58132124,-0.623557,-0.32754105,0.37179658,-0.2582984,-0.25939763,0.25356746,-0.37421024,0.0626667,-0.7237708,0.33284917,-0.23557511,-0.3800255,-0.5552951,-0.19188593,-3.7149308,0.24111891,-0.30737945,-0.10585349,-0.07599845,0.05338478,0.33387226,-0.5019479,-0.534802,0.11587441,-0.067543395,0.60132045,-0.056163978,0.1653379,-0.21265513,-0.20369923,-0.42989087,0.12244576,0.09365843,0.31910592,0.0014318859,-0.39826664,0.0405531,-0.28654265,-0.44819847,0.04993418,-0.5031243,-0.43354455,-0.18813454,-0.450272,-0.1591188,0.5973015,-0.013192831,0.043304246,-0.20707893,-0.11523719,-0.11809843,0.2802508,0.18901134,0.17622392,0.07107886,0.04652855,-0.14350763,-0.27488503,0.14279033,0.10145507,0.12576263,0.34709448,-0.1181329,0.11547953,0.48271433,0.57083166,-0.1681495,0.762972,0.5156379,-0.120892875,0.3918412,-0.23538488,-0.239145,-0.5166644,-0.37410003,-0.18090431,-0.33829236,-0.5377976,-0.04901056,-0.24904026,-0.65777844,0.40301815,-0.013441521,0.09465505,-0.049044166,0.1609172,0.32021433,-0.11772817,-0.095421664,-0.082564436,-0.15367149,-0.4724345,-0.27120814,-0.64300436,-0.44584063,0.111403786,0.9143345,-0.11469629,-0.1700826,-0.20256126,-0.136258,-0.096571,-0.09684779,-0.012633091,0.29519486,0.098732285,0.0021330854,-0.84001744,0.49327737,-0.05925037,-0.03740832,-0.47133794,0.088428795,0.58630526,-0.58350855,0.42583603,0.32491517,0.19060656,0.07389777,-0.6118405,-0.13390179,0.20433897,-0.24804564,0.51120114,0.118197724,-0.74175334,0.5710643,0.3933639,-0.27468082,-0.70757294,0.49628314,0.19169699,-0.36728376,-0.016472816,0.3325454,-0.03347658,0.027746862,-0.23828232,0.40709382,-0.39722532,0.27122957,0.2918275,0.013763392,0.2606591,-0.08857736,-0.25851208,-0.5608139,-0.10118277,-0.39914694,-0.28954554,0.074655436,0.08588141,-0.04235377,0.046990156,-0.12769735,0.5283885,-0.15963443,0.10829512,-0.07902193,-0.21839303,0.2812542,0.40467137,0.4197526,-0.38625482,0.66594374,0.022570308,-0.17430933,-0.036995444,0.17454955,0.45891064,0.21513642,0.3816706,0.057863824,-0.094770476,0.2855751,0.8376974,0.071901985,0.49678147,0.15338996,-0.34123588,0.33074778,0.1783576,0.09562581,-0.077619724,-0.24483976,-0.075940125,0.059850138,0.22727638,0.46886158,0.10415863,0.24884212,-0.1565292,-0.25032887,0.08529674,0.18714336,0.03229936,-1.1390392,0.34222063,0.25492626,0.67588854,0.68540597,-0.03750747,-0.0013348355,0.5745431,-0.25046065,0.040123552,0.36366367,-0.110658735,-0.54702413,0.4450543,-0.62356746,0.29577607,-0.06970846,-0.008742916,0.01698461,0.09887684,0.34664392,0.7701023,-0.07397929,0.07983729,-0.13076608,-0.33451125,0.118798,-0.33503544,0.039854743,-0.29637405,-0.33017278,0.6114638,0.28053084,0.12656029,-0.20005536,-0.042443093,0.006332054,-0.103653334,0.13582782,-0.0021066542,0.054105673,-0.04285144,-0.6638003,-0.3439613,0.48215967,0.103779964,0.042820122,-0.048255853,-0.1541865,0.23386702,-0.23016939,-0.0025220478,-0.008827069,-0.71272504,-0.06737232,-0.31700963,-0.25213668,0.4496511,-0.17629535,0.28973386,0.19857658,0.109729454,-0.35759112,0.21960723,-0.0053779096,0.6391642,0.059784062,-0.20576079,-0.3644241,0.047747638,0.20282549,-0.23016949,-0.12492278,-0.28825283,0.0064119557,-0.67637575,0.51273817,-0.11565137,-0.32929406,0.19012602,-0.11392188,-0.028415378,0.5654059,-0.20541826,-0.3322157,-0.031778794,-0.028960591,-0.27926415,-0.23402978,-0.082564056,0.245583,0.14740016,-0.17430922,-0.21005535,-0.025858963,0.005594001,0.5809408,0.05427495,0.3243489,0.33340344,0.14838384,-0.47145614,-0.06258732,0.296726,0.38076976,0.16971782,0.018448373,-0.21475825,-0.33102486,-0.34649104,0.10369247,-0.18871489,0.2583901,0.12658612,-0.39959666,0.59407836,0.20116901,1.1596011,-0.01968523,-0.23133713,0.1678616,0.4194313,0.051226467,0.052253474,-0.35101974,0.7446436,0.6525064,-0.03830011,-0.23953906,-0.37822902,-0.20302646,0.110281445,-0.2286957,-0.05991598,-0.010709846,-0.7509949,-0.32888693,0.2607473,0.21697578,0.08631466,0.03717375,-0.053194467,0.09638444,0.225448,0.38462812,-0.50831944,-0.09298155,0.26238912,0.24929126,-0.0038275192,0.16753668,-0.39811176,0.37293085,-0.5190625,0.17011411,-0.15714589,0.21473113,-0.0010249369,-0.26582143,0.2637455,0.041568648,0.3994112,-0.25374442,-0.50973743,-0.16064623,0.5568935,0.07914807,0.22444999,0.61085963,-0.33756196,0.22390889,0.08204347,0.5201336,1.0599632,-0.14378312,-0.054134272,0.3015468,-0.3375638,-0.7456464,0.25769475,-0.08827017,0.14110306,-0.0887996,-0.29383874,-0.4459311,0.15877277,0.18861438,0.052453466,0.120606564,-0.51512223,-0.24050176,0.31186965,-0.09359919,-0.21749252,-0.30862308,0.2032998,0.73606884,-0.40573716,-0.13967809,0.15492989,0.20937386,-0.26239538,-0.58416486,-0.0831166,-0.38579372,0.39489022,0.2862714,-0.077070504,0.16364074,0.09802853,-0.48445714,0.15653625,0.28145814,-0.40418696,-0.02819827,-0.1756019,-0.13187689,0.86755776,-0.22352658,0.042871904,-0.62293774,-0.5449572,-0.9231796,-0.39413685,0.6653422,0.15271932,0.19111617,-0.6692201,-0.028521637,0.024830742,0.06437492,0.057108056,-0.51986027,0.33190063,0.08815329,0.37063703,-0.09040291,-0.7300664,0.053839315,0.14002708,-0.33063278,-0.50787514,0.50848794,-0.10334451,0.73128366,0.030259771,0.04864393,0.2503237,-0.5152708,0.031261653,-0.24536152,-0.19905363,-0.5786462,0.20482324 -694,0.3993946,-0.03318861,-0.533976,-0.20810248,-0.044109892,0.18967621,-0.15915647,0.33633006,0.26797837,-0.34516805,0.17286414,-0.1434252,0.07688522,0.37243402,-0.052752327,-0.58965796,0.081708945,0.06402601,-0.58514583,0.41653526,-0.44129738,0.3255106,-0.07769367,0.3277493,0.10740528,0.39979565,0.062471587,-0.21670158,-0.17024548,-0.11709908,-0.036716573,0.31591874,-0.41953954,0.0497001,-0.10010301,-0.121836856,-0.025358839,-0.57262534,-0.4790742,-0.5661042,0.18042414,-0.6542842,0.5646738,0.03587774,-0.25301644,0.18314435,0.08045449,0.40460542,-0.21414098,0.018588196,0.21299015,-0.17816016,-0.16153736,-0.14164202,-0.42487925,-0.3932678,-0.6165173,-0.0846199,-0.45818582,-0.12442859,-0.16696571,0.037540156,-0.24845298,-0.118681066,-0.03641749,0.39634424,-0.38516682,0.08472295,0.25457713,-0.13777107,0.33742863,-0.35182074,-0.08957007,0.025551649,0.39070866,-0.348143,-0.30335286,0.34632212,0.4055549,0.49560156,-0.14754811,-0.13682295,-0.38508123,-0.047380414,0.18487379,0.572743,-0.1326677,-0.15542528,-0.11025537,-0.11877053,-0.07938997,0.241706,0.11624861,-0.4468092,-0.10782344,0.03182251,-0.14368787,0.31266335,0.46942958,-0.27865583,-0.27096847,0.4358198,0.5091787,0.15514913,-0.10340352,0.21699612,0.11423961,-0.538625,-0.24202694,0.18230668,-0.116507836,0.40682298,-0.115013674,0.1451809,0.6874083,-0.13041846,-0.12758611,0.0030481378,0.059250075,-0.035870228,-0.12685972,-0.22138597,0.14493865,-0.5074144,0.091253586,-0.15972696,0.6053865,0.27805075,-0.9060594,0.3758448,-0.57873064,0.05248473,-0.09539841,0.4644519,0.7618605,0.37236327,0.12860768,0.62767816,-0.5172555,0.1018269,0.06297764,-0.4011525,0.25302377,-0.19129744,0.053350445,-0.622408,-0.16441432,0.11820336,-0.21343921,0.18720134,0.26122984,-0.438338,-0.013565993,0.21639806,0.8108107,-0.30977085,-0.108802006,0.50242466,0.96564865,0.8496811,0.1007587,1.254437,0.25572616,-0.2323214,0.19931863,-0.48212644,-0.8131382,0.22484025,0.27278197,-0.49467376,0.39168024,0.07839811,0.20382245,0.39250737,-0.32081807,0.1875066,0.009037296,0.18593508,0.0105217,-0.24262816,-0.28162846,-0.32324547,-0.115673795,-0.18480207,0.16845852,0.18539098,-0.20092613,0.5171387,0.14081489,1.7400563,-0.004502646,0.08824187,-0.071276374,0.40084973,0.19448663,-0.2628525,-0.3141109,0.31064272,0.33194414,0.036736585,-0.45902115,0.121543,-0.07605421,-0.26246908,-0.16092473,-0.38066,-0.088929795,-0.09680059,-0.26277882,-0.1374869,-0.10793088,-0.39854226,0.5849276,-3.023872,-0.006978452,-0.030218316,0.33042985,-0.22117122,-0.29121217,-0.25682172,-0.46919647,0.3559032,0.24569453,0.32916167,-0.6350521,0.3124152,0.5334757,-0.43263033,-0.08110286,-0.5852574,-0.09100862,-0.07443695,0.10137863,-0.02993645,-0.025883686,0.045319963,0.3293757,0.30316618,-0.061916992,0.09416893,0.31058234,0.26746368,0.20607668,0.4323092,-0.08375134,0.55815595,-0.15312785,-0.22236364,0.2595252,-0.49124062,0.123958796,-0.07557213,0.048732467,0.45388234,-0.4003009,-0.7998811,-0.551223,-0.18290223,0.89479977,-0.2688839,-0.21483079,0.3062152,-0.33570883,-0.46404248,-0.08815421,0.41807774,-0.07095734,-0.05965056,-0.7623812,-0.106129244,0.0009154995,0.08238127,-0.064046234,0.09441519,-0.39060935,0.4379631,-0.04258154,0.5010896,0.31470367,0.122349225,-0.3323581,-0.4851081,0.027477067,0.8979608,0.21083583,0.18481013,-0.12909523,-0.20634982,-0.4234513,-0.2125544,0.1476368,0.43342957,0.6623061,-0.17856854,0.02136922,0.28024682,-0.12545052,0.11066095,-0.10283136,-0.28016427,0.011726006,0.016459115,0.42455038,0.49745157,-0.13923359,0.40589073,0.05683499,0.2732226,-0.2611255,-0.42059582,0.58670706,0.95282614,-0.06127627,-0.28040484,0.5977634,0.21338533,-0.32971337,0.39881402,-0.502509,-0.14514068,0.5270907,-0.23007044,-0.3247282,0.19190614,-0.29170498,0.19120911,-0.9078883,0.25546032,-0.10020499,-0.3755435,-0.45224217,-0.05374845,-3.3339279,-0.0013299624,-0.10068269,-0.26451647,0.05896906,0.08139958,0.26108307,-0.47768295,-0.59303534,0.19908904,0.007331117,0.7134334,-0.075847976,0.09727082,-0.22590555,-0.21288712,-0.40717506,0.260227,0.07179386,0.42738184,0.17062669,-0.42024192,-0.019673208,-0.17306627,-0.45603126,0.08802513,-0.48085544,-0.3765548,-0.1653111,-0.62197196,-0.37477607,0.74914175,-0.385505,-0.048922,-0.21530847,-0.0438473,-0.13147406,0.37846768,0.23878917,0.114293166,0.054247744,0.042997662,-0.118030414,-0.2623059,0.30930007,-0.017038472,0.30874956,0.35276496,0.045417126,0.15220632,0.47646147,0.70727473,-0.17276074,0.6895621,0.44483927,-0.055579003,0.2020699,-0.41334876,-0.065884136,-0.32517517,-0.3394933,-0.13246174,-0.3930697,-0.5506523,-0.22046204,-0.38671222,-0.6280758,0.3469204,0.03843008,0.09407358,-0.025799783,-0.05351062,0.33518293,-0.2208538,-0.002702681,-0.15294968,-0.16936915,-0.3619283,-0.18161072,-0.5459722,-0.5203162,0.41178754,0.95940053,-0.12096803,-0.009852576,0.18648693,-0.3201889,-0.07832704,0.1722472,0.03628923,0.30004132,0.36657375,-0.023477597,-0.55335784,0.37702703,-0.15873791,-0.09002021,-0.7268587,0.052327063,0.5407042,-0.5614455,0.8232787,0.1723752,0.07777373,-0.19492677,-0.4707025,-0.29160255,-0.023970384,-0.29768503,0.44257587,0.044634257,-0.7654068,0.33453095,0.39858082,-0.37138847,-0.5828015,0.5246372,-0.04768382,-0.074044734,0.028374728,0.36954013,0.0069699567,0.025831353,-0.054695543,0.33535567,-0.45722765,0.21390647,0.367114,0.081180006,0.43509606,-0.13772328,-0.09224569,-0.6773581,-0.11770348,-0.4115395,-0.26444346,0.20214391,0.013257573,0.2330562,0.15353912,0.12247309,0.30886668,-0.3104658,0.1439998,0.023624193,-0.22030991,0.24783126,0.34915766,0.5029081,-0.4142169,0.52972835,-0.039483063,-0.05339881,-0.16730331,0.039804544,0.47677955,0.23605004,0.31229508,0.12856098,-0.34633932,0.28573984,0.7778417,0.1592118,0.30099156,0.13926452,-0.16765109,0.110071614,0.06771063,0.02910668,0.10508717,-0.45881322,-0.10165655,-0.12803654,0.2806474,0.4070517,0.12249258,0.27653906,-0.15394224,-0.36485195,0.023435032,0.15839761,-0.06116547,-1.2047131,0.3052639,0.28444403,0.75752425,0.4003561,0.07318668,0.04821803,0.5743168,-0.21040897,0.18803905,0.30085087,-0.24221395,-0.5275904,0.52650946,-0.6521458,0.4897377,0.069866106,-0.0064320187,0.027818711,-0.048975814,0.3930705,0.8446218,-0.13220383,0.15443121,0.043951835,-0.25588292,0.20766178,-0.27439344,0.103530526,-0.48674712,-0.23942937,0.57823455,0.42370033,0.3874911,-0.14736871,0.013114605,0.15658386,-0.07392707,0.0910164,0.07503746,0.06998316,-0.08607888,-0.5981753,-0.32992265,0.47103107,-0.06656582,0.122084364,0.06973945,-0.16796511,0.2691482,-0.20053701,0.054556273,-0.13492146,-0.6953781,-0.08184074,-0.22322181,-0.4016234,0.5360554,-0.16706926,0.25158215,0.20746475,0.091986455,-0.31946546,0.65039134,0.19362968,0.77528894,-0.1243924,-0.14602517,-0.23796962,0.105769664,0.17630866,-0.19820169,-0.03665879,-0.29927412,0.010590827,-0.48464426,0.31227186,-0.050893273,-0.42309695,-0.06703425,-0.054554693,0.18067531,0.56753695,-0.21905161,-0.11156731,-0.060233597,-0.07730916,-0.3134833,-0.1517778,-0.15328452,0.23470852,0.19297092,-0.13115993,-0.12474189,-0.09785014,-0.15838553,0.20047957,0.043325625,0.39062682,0.4407296,0.10948763,-0.29221758,-0.109918036,0.1726498,0.42024264,0.02858281,-0.10092076,-0.28997624,-0.2666251,-0.3300813,0.30254993,-0.20748827,0.35719168,0.07729098,-0.37651044,0.6293052,-0.12356785,1.0877804,0.072882086,-0.22696489,0.10509089,0.34836337,0.09673349,-0.051178813,-0.37852955,0.82756305,0.5440096,-0.06763455,-0.115982704,-0.33760256,-0.14421944,0.20210825,-0.19302951,-0.19422702,0.03308755,-0.633185,-0.20855123,0.26887065,0.018208535,0.34733137,-0.033673447,0.045645952,0.24547288,0.06774931,0.2253418,-0.36665872,-0.030294705,0.3802773,0.2840189,0.18698683,0.24691455,-0.39240265,0.31293485,-0.41972554,0.07401595,-0.15675476,0.17108808,-0.19189288,-0.21113703,0.19760005,0.091822185,0.2554076,-0.112900004,-0.36108658,-0.20731045,0.61249536,0.07409106,0.18491766,0.80698115,-0.21804956,0.06826731,0.02222335,0.44202882,0.87475723,-0.20367436,0.019346794,0.51311344,-0.22537944,-0.6684999,0.3347762,-0.37386325,0.3063887,-0.05940973,-0.27934092,-0.41629994,0.16310717,0.14234123,0.14197668,0.13383324,-0.4078967,-0.17163534,0.28974143,-0.29203695,-0.25320566,-0.35219595,0.01982019,0.64670813,-0.31818232,-0.20883518,0.14754209,0.16594301,-0.27756786,-0.4939731,-0.0023320755,-0.20612577,0.2018236,0.09501384,-0.3687292,0.015029786,0.023379147,-0.30171347,0.31394774,0.29068297,-0.3664584,0.012197244,-0.29173055,-0.15033753,0.79990107,-0.26101208,0.11934159,-0.5753926,-0.5397526,-0.91998076,-0.2478912,0.31758296,0.030058486,-0.09255908,-0.54680413,-0.072670735,-0.00028102397,-0.008607197,0.05152111,-0.40403566,0.40545782,0.08284431,0.27260703,-0.02859406,-0.7358944,-0.0875542,0.14318146,-0.21452291,-0.69958526,0.6102236,-0.10504959,0.9258606,0.113832556,0.09261852,0.31592697,-0.37717193,0.08415702,-0.20994253,-0.15727344,-0.5909452,0.024294369 -695,0.36285278,-0.09693371,-0.51073456,-0.012629977,-0.386963,0.15105395,-0.16725782,0.6341955,0.28306878,-0.44039422,-0.08796734,-0.11507416,-0.06461161,0.33969548,-0.15946627,-0.64457715,0.1765104,0.09292653,-0.44351566,0.40185288,-0.37822953,0.19559015,0.059310652,0.31227922,0.24804972,0.27225092,0.06227974,-0.024764262,-0.14998557,-0.15165819,-0.068344384,0.29268262,-0.52017635,0.31124985,-0.17911027,-0.2864915,-0.047823828,-0.51531255,-0.18866806,-0.7485177,0.23642035,-0.60837644,0.41936907,-0.17221442,-0.22540624,0.120306626,0.38533905,0.31270593,-0.103076465,-0.2086902,0.031135518,-0.13796285,-0.15748583,0.0013158282,-0.2405556,-0.34743482,-0.54219836,0.18822162,-0.4417339,-0.11607153,-0.24702902,0.17477793,-0.3606868,0.055717263,-0.05288779,0.63253856,-0.35987937,0.025443252,0.38752514,-0.2558152,0.07900389,-0.62655574,0.007028538,-0.05156312,0.23258725,-0.106177896,-0.15841755,0.41473484,0.22240692,0.5449965,0.15191263,-0.22213466,-0.32589403,-0.08629232,0.05564968,0.4457231,-0.08355428,-0.22585687,-0.20385166,0.1614439,0.06358026,0.14268093,0.13409382,-0.20324959,-0.11374807,-0.002049919,-0.27822155,0.43131942,0.36470416,-0.38334864,-0.14701429,0.28139463,0.45035106,0.23801918,-0.052503824,0.012425963,0.10858056,-0.62198216,-0.22017066,-0.023443008,-0.12387622,0.34510577,-0.22907877,0.282,0.64210165,-0.14478339,-0.073390566,0.17823417,0.084029004,-0.04127337,-0.46172917,-0.17798789,0.17709698,-0.58995277,0.1063502,-0.11078929,0.8340016,0.1798537,-0.5301712,0.26511267,-0.522282,0.15309791,-0.051421765,0.46116096,0.71552557,0.50933874,0.27914152,0.8721307,-0.25338775,0.09914156,-0.2868504,-0.3708869,0.08446756,-0.27395254,0.107600465,-0.42762837,0.115220994,-0.08049516,0.119817905,0.18770319,0.25163284,-0.51102805,-0.07727801,0.03460384,0.8454095,-0.16601987,-0.26326582,0.7230732,0.7885348,0.9389232,-0.06654535,0.86606795,-0.015882012,-0.10491791,0.36148167,-0.053186905,-0.59440285,0.38170677,0.3084305,-0.088833176,0.13857335,0.014873552,-0.113137595,0.59366757,-0.25976914,-0.020413645,-0.16253829,0.21600777,0.23008998,-0.16346982,-0.31625497,-0.34264386,-0.0019270977,-0.09375438,0.25060236,0.28925303,0.015445092,0.40528235,-0.1404438,1.6350137,-0.0971214,0.11433489,0.17308213,0.56940407,0.23020093,-0.122740634,-0.10884139,0.120204836,0.18565139,0.16169286,-0.49338874,0.033699997,-0.23669483,-0.44595304,-0.08744513,-0.40074462,-0.2613768,-0.07559357,-0.46567857,-0.18671761,-0.13266358,-0.282288,0.37352264,-2.7920609,-0.24032523,-0.03879835,0.28300825,-0.38933504,-0.3746033,-0.19909383,-0.5395692,0.44031212,0.25611824,0.539416,-0.49856472,0.46826518,0.4021199,-0.5735001,-0.2952679,-0.56105465,-0.021475013,0.027908945,0.17888047,0.05481583,-0.27538958,-0.12876718,0.030104568,0.60442126,-0.19789392,0.04272805,0.21105677,0.30778947,-0.11497231,0.53041756,-0.14053904,0.67638123,-0.44621378,-0.17777282,0.3669802,-0.40339667,0.18536706,-0.17738108,0.0765588,0.5411809,-0.3688636,-0.93866533,-0.62070805,-0.10314365,1.2746369,-0.14570867,-0.2604576,0.2480871,-0.56554514,-0.21133308,0.056361835,0.50258577,-0.037009936,-0.027983883,-0.6010436,0.13971713,-0.07104299,0.11690092,-0.045802604,-0.07981045,-0.40118155,0.63442534,-0.046857443,0.47937432,0.25225142,0.09684492,-0.3108714,-0.3927413,0.008530843,0.8178273,0.36454332,0.12093418,-0.26979285,-0.13194914,-0.45927575,-0.081654556,0.065139465,0.63727486,0.59011334,0.03608695,0.09074233,0.32969135,0.02246209,0.0068795364,-0.093880795,-0.35307276,-0.15663436,0.1525441,0.6491131,0.57128984,-0.0042828103,0.38671616,-0.0062349993,0.25642353,-0.23685338,-0.5488604,0.5665236,0.77495855,-0.30704385,-0.33066645,0.5345,0.40115213,-0.07985683,0.4005424,-0.48286203,-0.54462504,0.41171065,-0.20332602,-0.41480806,0.06976178,-0.29081243,-0.012730245,-0.7766145,0.06833863,-0.38986915,-0.40494806,-0.41257355,-0.21290684,-3.3967414,0.118541084,-0.14182444,-0.033519913,-0.23600677,0.017685851,0.11008124,-0.49689618,-0.5539667,0.06234397,0.14051183,0.7881373,-0.106544204,0.12628888,-0.2596167,-0.31369457,-0.23962641,0.1078412,0.07377904,0.28204188,-0.0061670938,-0.42600614,-0.034112968,-0.2531638,-0.41353598,0.12365316,-0.7009758,-0.47486475,-0.2274499,-0.5063851,-0.3011029,0.71812844,-0.45370737,0.14785744,-0.12869594,0.020943923,0.028103836,0.26579648,-0.01948353,0.071217105,0.2202793,-0.21061316,0.072853185,-0.29744747,0.23811173,0.08662355,0.47471988,0.52507824,0.05273328,0.24598725,0.6692665,0.74531853,-0.11243617,0.956249,0.39252454,0.040341582,0.41242692,-0.1792777,-0.37308806,-0.39451975,-0.16222008,0.074309595,-0.42705896,-0.27432138,0.11858987,-0.3734541,-0.8320558,0.48741198,0.10947944,-0.011718655,0.0060715834,0.21631822,0.56600827,-0.32716158,-0.044789508,0.05349068,-0.027064772,-0.48341015,-0.33018735,-0.52679276,-0.6076283,0.0047070426,1.0489258,-0.23901659,0.114018604,-0.037064426,-0.07935374,-0.0032004078,0.016882312,0.08711205,0.14699936,0.38578776,-0.10904904,-0.6705491,0.37981662,-0.31515837,-0.11638527,-0.3179622,0.349691,0.6187985,-0.6134156,0.4346693,0.360267,0.10712172,-0.16374843,-0.41593367,-0.001464661,-0.12335965,-0.23434427,0.45313555,0.24758561,-0.837051,0.5002178,0.2372415,-0.31399447,-0.82017845,0.46215135,-0.10054906,-0.15142919,-0.14015462,0.2901244,0.26223895,0.032106917,-0.13564178,0.049431562,-0.48833808,0.10174502,0.124121666,-0.0317657,0.47790068,-0.33196127,-0.15742391,-0.67937905,-0.05669709,-0.5633209,-0.36572066,0.22355196,0.05663738,0.03368377,0.15063757,0.032953892,0.3091072,-0.1496048,0.07668516,-0.1302851,-0.1729639,0.36377886,0.43001726,0.43584165,-0.49568197,0.54484725,0.0045363386,0.075040855,0.17709474,0.021676807,0.4234298,0.0433904,0.4879267,-0.08128379,-0.037814897,0.18590587,0.91524607,0.061411362,0.32109383,-0.09298995,-0.112296455,0.046582546,-0.009208189,0.085435964,0.065333344,-0.6378221,-0.06625404,-0.2969275,0.095591314,0.6059704,0.2209877,0.34476137,0.10103511,-0.25747645,0.057492983,0.04011744,-0.19070311,-1.2648023,0.4553194,0.16237777,0.9282224,0.2916757,0.10725509,0.057898674,0.751963,-0.12567817,0.27501455,0.32353362,-0.09998963,-0.47894922,0.5697869,-0.7772318,0.6260464,-0.04603602,0.014503989,0.019370833,0.047789834,0.5367873,0.7152533,-0.20437908,0.0040591042,0.008510208,-0.34156358,0.139859,-0.36454195,-0.010706242,-0.5403087,-0.24915822,0.6089311,0.5039541,0.30874988,-0.23474984,-0.03620955,0.118760996,-0.008886886,0.01416018,-0.13732377,0.067226164,0.0035517374,-0.4963831,-0.15247229,0.55262923,0.11608431,0.41096073,0.07397099,-0.15545997,0.36871016,-0.09953592,0.0049091023,-0.27701095,-0.53568584,0.02222445,-0.41079333,-0.5360292,0.2980124,-0.14552283,0.20746756,0.20038871,0.068911046,-0.37980992,0.6389214,0.00057648815,0.679706,-0.2269496,-0.059975546,-0.27697214,0.2428606,0.12944874,-0.2556558,-0.14030688,-0.32616657,0.11900215,-0.4547357,0.28322202,-0.20257396,-0.3732729,0.07753337,-0.062797666,0.028974835,0.44071054,-0.07766732,0.11424231,-0.007754715,-0.28539544,-0.238737,-0.2040916,-0.10075007,0.26839694,0.1161977,-0.0207798,-0.14950211,-0.30536795,-0.044381544,0.34484118,-0.043964703,0.19801578,0.17174283,0.080691546,-0.3538356,-0.1090108,0.26029947,0.67127836,0.05361325,-0.17283545,-0.3104145,-0.14762364,-0.3515774,0.30809408,-0.057801537,0.31547537,0.08177049,-0.35942253,0.78445053,0.01678389,1.1199546,-0.004060324,-0.35265654,0.09242683,0.35016638,-0.021913346,-0.03933498,-0.3894561,0.8074233,0.31354657,-0.14314343,-0.13474582,-0.53755414,-0.052067775,0.117594905,-0.21817939,-0.18108366,-0.13846582,-0.50943524,-0.24094565,0.30520517,0.17355792,0.24835548,-0.27264178,-0.053664435,0.1639623,0.03589372,0.24452958,-0.40680832,-0.16748479,0.28791627,0.36907348,0.016865684,0.049001858,-0.6363304,0.36878023,-0.6283915,0.14477918,-0.14079767,0.19086663,-0.3368471,-0.13063966,0.31063554,-0.005456078,0.40391308,-0.28026277,-0.36188754,-0.25763908,0.4208957,0.19074361,0.18743989,0.6926294,-0.2400845,-0.080240086,0.121232525,0.57618076,0.8464034,-0.24885936,0.07130409,0.337921,-0.21512851,-0.6110773,0.24829584,-0.34636515,0.0763518,0.058925357,-0.20907284,-0.43057373,0.2920663,0.21887162,0.15671635,-0.046287518,-0.6676773,-0.13832338,0.24049743,-0.24123976,-0.30464205,-0.36759427,0.044198193,0.5979615,-0.0760517,-0.27342397,0.23769291,0.41235003,0.05543498,-0.53797317,-0.050470013,-0.19978271,0.19590214,0.07143852,-0.32435894,-0.14789881,-0.02624592,-0.58458865,0.16804013,0.11512882,-0.27056873,0.05466731,-0.14627819,-0.01756064,0.85017854,-0.082657345,0.25970775,-0.40748733,-0.40607157,-0.7956303,-0.2402199,0.31236416,0.040507186,-0.08743234,-0.64700425,-0.14953406,-0.20949885,-0.31302178,-0.07503862,-0.51381546,0.39105874,0.034198873,0.3195112,-0.08444551,-0.7182895,0.26600358,0.19686483,-0.122604705,-0.4804805,0.2587287,-0.11277563,0.80025375,0.158818,-9.9460285e-06,0.3249451,-0.35167176,0.032634266,-0.20304102,-0.1410965,-0.6457087,0.032176804 -696,0.3967573,-0.24948764,-0.32817185,-0.12868842,-0.14943627,0.11660636,-0.12029131,0.42600402,0.10276326,-0.59104,-0.23615113,-0.28160724,0.05814995,0.25055614,-0.22522208,-0.3866977,-0.1417504,0.11663183,-0.41991663,0.49485356,-0.4280363,0.2921622,0.13704477,0.32006633,0.12616755,0.22301522,0.17632142,-0.16844644,-0.20565067,-0.08586691,-0.0376954,0.3493151,-0.56616527,0.18898301,-0.09523416,-0.22268134,0.018675907,-0.5012041,-0.23175591,-0.6726695,0.30672783,-0.8965753,0.4303015,-0.0078685405,-0.27748024,0.3806982,0.14853859,0.3744508,-0.1976203,0.034693424,0.20141207,-0.020227907,0.013482632,-0.08062972,-0.1629695,-0.20199344,-0.45274842,-0.008820363,-0.29556262,-0.32236132,-0.24000715,0.15137263,-0.23576126,-0.09864752,-0.037374936,0.50832677,-0.5181424,0.03769857,0.17543554,-0.14853121,0.56771064,-0.48817793,-0.17209128,-0.1360877,0.31985578,-0.4006811,-0.12687099,0.2422239,0.33933517,0.36243457,-0.1243677,-0.025559548,-0.28672716,-0.113502346,0.25199208,0.46240738,-0.16648369,-0.33821017,-0.029193325,0.017873466,0.0935342,0.27998063,0.13133065,-0.45302302,-0.18100923,0.040786315,-0.22979791,0.24429254,0.34053108,-0.26394328,-0.20901148,0.34645227,0.57124,0.1529524,-0.109064676,-0.041210644,0.029434893,-0.46087918,-0.113480724,0.23082593,-0.2572711,0.45205238,-0.07367256,0.32086667,0.65832895,-0.20356542,0.11885821,-0.062052026,0.047215454,-0.17429088,-0.25251713,-0.2925221,0.17109999,-0.28625268,0.12941171,-0.09748415,0.801848,0.10104133,-0.8038744,0.2930836,-0.5165025,0.013277769,-0.26483208,0.44950676,0.51698124,0.33334592,0.25641873,0.6144482,-0.5357105,0.06746542,-0.12528023,-0.42169583,-0.06384375,-0.14503448,-0.19560155,-0.48293063,-0.02453399,0.046398737,-0.17324758,-0.017476348,0.34817538,-0.5678232,0.08061897,0.054975275,0.787881,-0.37132177,-0.024971664,0.64290833,0.8456126,0.76037765,0.15928072,1.1212736,0.24226311,-0.24244124,0.22058997,-0.3451561,-0.6880674,0.3595582,0.5051221,-0.21304312,0.23924749,0.13890605,0.051113572,0.27074528,-0.3534511,0.06810966,-0.28854913,0.08315535,0.0815029,-0.10390661,-0.36691532,-0.21623237,0.04146533,0.11999877,-0.033403777,0.03504371,-0.11658607,0.26372442,0.05509995,1.923001,-0.11605821,0.17945187,0.08158198,0.31231335,0.1660159,-0.082705036,-0.15532635,0.5363867,0.39160267,0.15612802,-0.59634274,0.13757,0.0138266,-0.52066857,-0.04967784,-0.3639138,-0.006521976,0.099558935,-0.4086853,-0.015143188,-0.0743889,-0.31354257,0.45335075,-2.8279433,-0.16442999,-0.20590499,0.33894637,-0.39120114,-0.35602838,-0.14788038,-0.33664542,0.47146118,0.43172055,0.49901152,-0.6227388,0.25681823,0.36409935,-0.39490938,-0.18236068,-0.56913936,-0.13096647,-0.044221256,0.23842672,-0.01422052,-0.004610913,0.11569198,0.12191688,0.30455983,-0.09705923,0.08065614,0.23983759,0.44104663,0.19322665,0.56739247,-0.050860923,0.39985052,-0.11221086,-0.23921145,0.32340842,-0.18397301,0.08014568,0.08776913,0.10535767,0.35201824,-0.5693432,-0.7621257,-0.8012151,-0.5938843,1.1982198,-0.31142017,-0.3863777,0.23448084,-0.06389972,-0.3273961,-0.12215878,0.34728405,-0.05205008,-0.035426904,-1.0129465,0.063257046,-0.06271106,0.2641844,0.006932826,-0.100227885,-0.46939275,0.5592426,-0.16560772,0.4997681,0.44489905,0.16857077,-0.27472255,-0.4116124,-3.1801064e-05,0.9963951,0.27835843,0.10730407,-0.113488086,-0.1946606,-0.31830925,0.032049824,0.15754332,0.45758376,0.62833124,0.09506085,0.051846437,0.31414208,-0.122523084,0.064901926,-0.17513646,-0.339591,-0.024145855,-0.07506548,0.5649487,0.33414173,-0.09784659,0.60956883,-0.10262474,0.28215653,-0.080860056,-0.33816224,0.33327857,0.93156785,-0.06635965,-0.30359662,0.5683735,0.5343305,-0.28713742,0.31995338,-0.58438784,-0.13380781,0.511436,-0.28802642,-0.50016195,0.22510916,-0.30266324,0.20068334,-0.90954906,0.30829096,-0.26183417,-0.36797392,-0.4898451,-0.10495052,-3.2128754,0.21751185,-0.15594779,-0.4016485,0.041695215,-0.19956261,0.14714582,-0.67270625,-0.5487938,0.2006525,-0.036219705,0.545977,-0.007907082,0.12929301,-0.21309032,-0.12451419,-0.12326231,0.0863046,0.13918318,0.29191488,-0.016045209,-0.4971692,-0.02357179,-0.1056897,-0.38069913,0.117982104,-0.5613221,-0.5723589,-0.104956545,-0.53107035,-0.32593015,0.52085155,-0.4136424,-0.039831296,-0.1001816,0.05273723,-0.13577032,0.42503375,0.17194845,0.24011554,0.07462954,0.04564909,-0.046981886,-0.34789905,0.40093726,0.10495916,0.022271864,0.2792505,-0.21224254,0.26395687,0.42269787,0.5611067,-0.027339268,0.6570816,0.5027103,-0.10412904,0.16100861,-0.39799517,-0.17401081,-0.56481296,-0.31943846,-0.01676262,-0.37328276,-0.54766923,-0.12602493,-0.36238515,-0.72908986,0.6224774,-0.07633391,0.09740227,0.042052887,0.27387002,0.43022645,-0.14414819,-0.04235702,-0.033641532,-0.15572974,-0.587847,-0.23349476,-0.60115373,-0.41232577,0.0650691,0.9867775,-0.12622514,0.06098427,-0.020689623,-0.16655995,0.007578186,-0.010016266,-0.04505893,0.25514597,0.35720667,-0.15344897,-0.63140875,0.4005795,0.036787868,-0.2375381,-0.5680575,0.23368892,0.6354734,-0.49299,0.55066764,0.2831666,0.024060579,-0.17047733,-0.4321771,-0.18347086,0.0027647733,-0.3473416,0.43390572,0.09705796,-0.58000076,0.38674164,0.45860627,-0.18392196,-0.7909352,0.67312837,-0.043219294,-0.35021153,0.10324125,0.25859845,-0.038712755,-0.036126796,-0.19015703,0.2561522,-0.40617433,0.25758216,0.26385072,-0.04816739,0.3830887,-0.20140807,-0.020890625,-0.7194626,0.10755878,-0.42126682,-0.2550672,0.26634178,0.088563785,0.0342846,0.28293812,-0.06020533,0.5451669,-0.3050253,0.045416195,-0.014040482,-0.10269907,0.19083683,0.40287802,0.3014396,-0.4402565,0.4745162,-0.03674323,-0.04816235,-0.20854715,0.15042645,0.45299104,0.1894486,0.23027721,-0.17415714,-0.27700698,0.454801,0.6297062,0.28898507,0.5297166,-0.063362375,-0.1460841,0.21764088,0.17036308,0.23003188,-0.07812152,-0.48681286,0.039326303,-0.06258187,0.08410979,0.3784459,0.11252644,0.28799313,-0.16505273,-0.40051848,0.087540515,0.23861167,0.078160286,-0.88664407,0.3211712,0.12631553,0.7250073,0.45181364,-0.060955223,0.13550459,0.57754093,-0.3117959,0.095957085,0.18783443,-0.04202226,-0.5884016,0.46203688,-0.6400986,0.3664159,-0.110973574,-0.053418454,-0.021696357,-0.06647357,0.31986412,0.72046703,-0.0968224,0.13690199,-0.023522858,-0.30881685,0.17565466,-0.4555783,0.03243999,-0.53738433,-0.29335573,0.44871882,0.47911826,0.35217416,-0.14908075,0.019089127,0.0532231,-0.088720456,0.24468714,0.20350641,0.26175067,0.107309625,-0.767679,-0.27265355,0.55234927,0.06727597,0.16091134,-0.04797023,-0.2225645,0.34304124,-0.12715572,-0.058838297,-0.024752226,-0.60793597,-0.07137024,-0.24860138,-0.28599957,0.25083384,-0.09120684,0.19529477,0.13789259,-0.037230253,-0.33551896,0.34416077,0.34322146,0.85689074,-0.0043634274,-0.17962632,-0.43710807,0.06799411,0.19168898,-0.074046746,-0.07699124,-0.25334823,-0.03237115,-0.6682479,0.44924575,0.13636576,-0.33922693,0.2094231,-0.12189693,-0.062304392,0.6201639,-0.041752305,-0.06232914,-0.11748377,-0.21929915,-0.23637746,-0.12880678,-0.15320864,0.21699168,0.19309138,0.087044835,-0.09569867,0.025792273,-0.17969933,0.52553266,0.029001491,0.48904946,0.3847538,0.12321555,-0.4071611,-0.10523241,0.022200465,0.36648285,-0.057970013,-0.10248712,-0.23329654,-0.46305677,-0.19998479,0.08655287,-0.15447603,0.339145,0.12251267,-0.36846307,0.7445261,-0.16733749,1.0509304,0.01702307,-0.33867794,0.015641121,0.39706105,-0.017719602,-0.038401406,-0.27741373,0.74226516,0.6651323,0.042394377,-0.0684005,-0.21716264,-0.15820861,-0.003473107,-0.1310681,-0.062273216,0.008860846,-0.5207698,-0.4233538,0.18005086,0.20735316,0.14174007,0.020590307,0.09989584,0.1594147,0.008517893,0.31124586,-0.35804263,-0.058449157,0.25380918,0.2922146,0.13109413,0.03372767,-0.5041564,0.46261552,-0.43882734,0.11929051,-0.3361852,0.12333949,-0.121588595,-0.20398359,0.1495296,-0.07303406,0.32762542,-0.19953838,-0.3104316,-0.15716007,0.5631305,0.075875886,0.11876752,0.54666257,-0.25302097,0.28508773,0.00429256,0.5182138,1.0398362,-0.22101326,-0.03479847,0.3660288,-0.3230391,-0.5021446,0.33092833,-0.2018892,0.19785486,-0.020762937,-0.10645464,-0.45091644,0.24143271,0.20454977,-0.052856095,-0.15064386,-0.48785704,-0.18596411,0.46873653,-0.31614298,-0.23118271,-0.35812977,0.2391352,0.55275595,-0.3056551,-0.24110843,0.0342657,0.17553638,-0.31251702,-0.35738784,-0.15910527,-0.32429683,0.26523945,0.119101234,-0.34824544,-0.09301956,0.11057476,-0.20112786,0.06742794,0.12818351,-0.3488596,0.023300687,-0.22478531,-0.16676967,0.94042754,-0.14296725,-0.110198975,-0.53458613,-0.32518873,-0.88653743,-0.2550169,0.6113777,0.01781019,0.0714374,-0.44673258,0.06095345,0.0086921295,-0.17235593,-0.12661436,-0.2906078,0.41934347,0.15887684,0.5113621,-0.14096175,-0.5626905,0.11919455,0.078513525,-0.07900419,-0.6534836,0.5175762,0.050625358,0.7367973,0.027466945,0.08045812,0.3413433,-0.48278138,-0.15884325,-0.17936927,-0.3259133,-0.7544917,0.003610313 -697,0.78115743,-0.20043102,-0.6339289,-0.055416755,-0.26226947,-0.07364375,-0.22086899,0.3570228,0.28860697,-0.38117573,0.009401793,-0.065911695,-0.15246353,0.5517284,-0.04681799,-1.0164798,0.12106632,0.2094647,-0.68849695,0.7486137,-0.22913122,0.6219919,0.028327653,0.526312,0.07328572,0.37208128,0.38225195,0.25114167,-0.1466476,-0.25152183,0.0515182,-0.5301539,-0.6011678,0.15611541,0.16288741,-0.35991055,-0.07222895,-0.33272266,-0.6289295,-0.76412404,0.49840102,-0.77029717,0.87682974,-0.0053079724,-0.3656199,-0.13863136,-0.12481992,0.26221943,-0.086144865,0.029472673,0.32880554,-0.023565745,0.009752998,-0.49955583,-0.206629,-0.6852113,-0.49809867,-0.10384758,-0.5762937,-0.24307708,-0.5545513,0.24556327,-0.49481806,-0.19670203,0.07599507,0.34314507,-0.43004218,-0.08510054,0.00016577244,-0.33936542,0.13074617,-0.71710014,-0.067755364,-0.22362056,-0.020760138,0.12672059,-0.10253763,0.35981488,-0.062122248,0.64175487,0.19104071,-0.34238964,-0.3308459,-0.039630864,0.09312962,0.73992825,-0.14066446,-0.43696165,-0.31804842,-0.02330687,0.45400444,-0.038773835,0.28920716,-0.33032545,0.10814208,-0.016292829,-0.13331635,0.8183408,0.5650742,-0.32732323,0.15112586,0.40799913,0.38377994,0.22068027,-0.08809104,-0.024491012,-0.17873123,-0.445728,-0.16114664,-0.19635575,-0.38585043,0.5808638,-0.10765457,0.21510096,0.79358405,-0.25171936,0.074920565,0.30452618,0.1716394,0.10499026,0.009950864,-0.3322063,0.38370258,-0.321592,-0.07343286,-0.2681935,0.61447275,0.26151207,-0.5257455,0.51158655,-0.51296985,0.1107067,6.54012e-05,0.5551611,0.6840917,0.3810072,0.18877093,0.9985315,-0.45031995,0.13204707,0.16250756,-0.14899297,0.10448219,-0.116736725,0.23220436,-0.4781806,0.03284215,-0.08755283,-0.35209996,0.1587357,0.7317213,-0.5898521,-0.2084847,0.05555613,1.0495193,-0.32547456,0.18326262,0.61669165,1.1993216,1.0137455,-0.16538152,1.3270836,0.304388,-0.4127698,-0.12589574,-0.16120836,-0.7136812,0.15520795,0.37390703,0.16732042,0.52811944,0.14717987,-0.1094684,0.31110775,-0.47827855,-0.08188398,0.07917288,0.4894343,0.0015597388,-0.23814256,-0.82909966,0.0048945965,-0.10688664,-0.0384385,0.25047058,0.56363934,-0.58273476,0.0737822,-0.18940327,1.5113503,-0.2690233,-0.034925673,-0.027373109,0.63418514,0.30153924,-0.24895081,-0.007919133,0.42885008,0.28339106,-0.10267562,-0.5944604,-0.06472434,-0.44683218,-0.18300557,-0.34759337,-0.24351475,-0.013726878,0.14335926,-0.17791487,-0.29530618,0.03130321,-0.23000221,0.051978987,-1.9757643,-0.44845334,-0.16178277,0.5907736,-0.30138078,-0.21729557,-0.158622,-0.55474627,0.3231918,0.30440956,0.6716674,-0.5909823,0.3593158,0.5295542,-0.54035956,0.014352804,-0.48218575,0.09238531,-0.024723217,0.606896,-0.15468149,-0.31758818,0.12614538,0.30198732,0.4645475,0.21163306,0.041556858,0.3819438,0.49072313,-0.2263438,0.26110277,-0.088531815,0.72457343,-0.2640049,-0.13949177,0.41102868,-0.35878348,0.123218834,-0.624036,0.06221785,0.50172883,-0.5506469,-0.7952662,-0.47669354,0.080971956,1.0812702,-0.43525138,-0.8019947,0.3003064,0.10956691,-0.23681775,-0.010677931,0.384331,-0.019969791,-0.008636939,-0.6879724,0.09109594,-0.10649707,0.1632587,0.0754964,0.077060185,-0.34252754,0.99893063,-0.13742557,0.4161539,0.14969595,0.524237,-0.14444944,-0.38412362,0.4228918,1.1481879,0.5705767,0.11509086,-0.16045281,0.15785728,-0.3342202,-0.4785776,0.012391353,0.53481436,0.8367367,-0.119377635,0.04134498,0.24094006,-0.08019143,0.07718661,-0.13279736,-0.5166664,-0.1334599,0.09611919,0.69959444,0.8306775,-0.27913028,0.52739894,-0.11342646,-0.015851904,0.008798408,-0.546822,0.6861953,0.89078283,-0.2062861,-0.1561228,0.5286189,0.20648351,-0.7516013,0.7267839,-0.88037646,-0.34484252,0.4818471,0.05347594,-0.3674732,0.3256966,-0.32253736,0.27001926,-0.77876157,0.448577,-0.09001326,-0.43190432,-0.31210238,-0.34825325,-2.562194,0.22953112,-0.37381893,-0.1200736,-0.048570476,-0.096971504,0.049750943,-0.6565302,-0.63316566,0.073935814,-0.037242465,0.683474,-0.091042,0.2463288,0.012375474,-0.48159045,-0.25502467,0.2648211,-0.016839897,0.4675437,0.05735294,-0.44447166,-0.05479165,0.06313293,-0.5382868,0.009239611,-0.8209747,-0.4350349,-0.36593658,-0.76019496,0.0085962,0.9131012,-0.105467856,0.11367903,-0.30865547,0.0428815,-0.18253878,0.22093192,0.048301898,0.12123792,0.0736219,-0.12479951,0.19886573,-0.27154738,0.26547664,0.21014616,0.58664286,0.23456016,-0.08482208,0.055268943,0.6049394,0.77820015,0.16520646,0.8878342,0.386172,-0.09598365,0.2233297,-0.20262766,-0.45050803,-0.49944896,-0.48490506,0.022080189,-0.39730343,-0.56459105,-0.08592274,-0.42896694,-0.8670106,0.49418682,0.08013295,0.4596335,0.2113982,0.27044982,0.44835362,-0.13371557,-0.12926374,0.05043,-0.31013852,-0.59781873,0.031770967,-0.69372547,-0.38644665,0.45218483,0.70189726,-0.11347951,-0.15234834,0.17607594,-0.23665643,0.078645304,0.046552442,0.15111649,-0.23771927,0.30060074,0.22997531,-0.6621833,0.2845672,-0.2492772,0.14074458,-0.66232467,0.15650293,0.56896347,-0.72637975,0.35447,0.028290045,0.2369527,-0.24545722,-0.44546652,-0.16439594,0.34231284,-0.04399474,0.24960876,0.12416847,-0.61152184,0.2952371,0.14796756,-0.47974926,-0.6017398,0.46204752,-0.0026020347,-0.3863626,-0.3714728,0.32087487,-0.016965527,0.08388277,-0.53470576,0.30287126,-0.5583109,0.36603326,0.2306798,-0.09702835,0.6135457,-0.07217358,-0.49869585,-0.73602605,0.22981901,-0.6928512,-0.50485694,0.25388354,0.25530484,0.18461673,0.07215016,0.48062158,0.49029654,-0.37272924,0.062676564,-0.16442809,-0.50884664,0.69957465,0.37441093,0.4946739,-0.53031313,0.60930896,0.0861402,-0.12514775,0.08861153,-0.2321188,0.55471194,0.09285999,0.42849436,0.3479294,0.080085345,-0.020861909,0.82379895,0.24171023,0.31322607,0.39321855,-0.23674026,0.2646564,0.08503161,0.07546345,0.07705531,-0.5739447,0.055102576,0.13742384,0.059508014,0.61599725,0.33012873,0.31300515,-0.12995133,-0.5877377,0.15213762,0.047237627,-0.17550506,-1.7867393,0.26827058,0.18800555,0.6402643,0.37639716,-0.1156281,-0.25808793,0.7307721,-0.010668511,-0.034094352,0.35934213,-0.20567942,-0.5625663,0.4748643,-0.55003995,0.41352957,-0.13944814,0.106690094,0.15215087,0.22110465,0.30788398,0.81535137,-0.17731567,-0.054775525,-0.14963916,-0.24302487,-0.11471076,-0.3642526,0.25517267,-0.5062668,-0.4212466,0.6797031,0.25573286,0.09149868,-0.15463927,0.10169085,0.06735932,-0.120243,0.4101724,0.042906646,-0.09711872,-0.14725943,-0.68418384,-0.30634156,0.39260513,0.031626593,-0.028369427,-0.10318524,0.20726462,0.16571641,0.0042395713,-0.16575493,0.08936142,-0.89922106,-0.15118803,-0.43570232,-0.3646128,0.3769016,0.18144423,0.15056708,0.04927223,-0.06477384,-0.31596702,0.5160028,0.3208155,0.72140884,0.0890521,-0.24643102,-0.47632447,0.18454754,0.049814295,-0.26228216,0.34478748,-0.21469542,0.15351124,-0.6484558,0.6274413,-0.29743513,-0.24954076,0.13211887,-0.33798784,-0.027564052,0.5434868,-0.27431625,-0.15036628,0.047116213,-0.5204224,-0.2843479,-0.29844916,-0.10605142,0.009933186,0.006298566,-0.22510424,-0.100626506,-0.1844095,-0.00047867297,0.39711696,0.09402515,0.2830507,0.4717462,0.30901632,-0.4417285,-0.05803039,0.34413114,0.6004498,-0.038352005,0.1752548,-0.31519264,-0.5867076,-0.64597225,0.27782002,-0.16178744,0.23804164,0.120019734,-0.40007696,0.9098915,0.43891373,1.4022238,-0.13482128,-0.31808084,0.1780153,0.769708,-0.08607992,-0.116342604,-0.63796735,1.2942388,0.6663915,-0.042534813,-0.20080867,-0.51924646,-0.33340007,0.41497716,-0.6130269,-0.06428482,0.010047132,-0.69353855,-0.29626268,0.16715859,0.32127845,-0.033514995,-0.047153346,0.29014665,0.3411214,0.24390376,0.258691,-0.72564185,-0.3315304,0.4441409,0.14086941,-0.03812868,0.19480637,-0.32734632,0.35014683,-0.6607021,0.14492154,-0.1514248,0.04660842,0.17804559,-0.6100739,0.17888162,0.3095886,0.4414746,-0.5737956,-0.50363815,-0.22564802,0.52211106,0.04402799,0.024862424,0.62224215,-0.2523715,0.06763433,-0.024921149,0.61432475,1.4007638,0.110005304,0.28320867,0.15328433,-0.5473751,-0.9938137,0.32728523,-0.32398504,0.109420225,-0.35646957,-0.34134617,-0.87978554,0.22950777,-0.23161773,-0.26519734,0.20155752,-0.4982788,-0.57957965,0.20667505,-0.35665822,-0.21074605,-0.29154688,-0.006714529,0.7916523,-0.30088794,-0.3718218,0.11792791,0.5125657,-0.17938375,-0.8808212,-0.15230386,-0.29924774,0.38054878,0.05021636,-0.4611215,-0.079433635,0.06504047,-0.55387574,0.10545541,0.096196175,-0.47697893,0.10187368,-0.26361066,-0.069201216,0.7040287,0.0072543025,0.19600508,-0.75600684,-0.6616162,-0.9768798,-0.630703,0.10874224,0.27451423,-0.06310924,-0.86214525,-0.10719933,-0.450082,0.37950948,-0.0010462075,-0.54580015,0.21810067,-0.054662384,0.5912283,-0.17564511,-1.2302393,0.11892428,0.186307,-0.24173729,-0.7707982,0.42975673,-0.08761506,0.95279276,0.23235865,-0.1214036,0.045576576,-0.63297516,0.042792358,-0.16005948,-0.31810832,-0.60470784,0.39093566 -698,0.4672947,-0.12318829,-0.46576083,-0.0483901,-0.18329276,0.029541558,-0.030080687,0.6123914,0.3599162,-0.4739339,-0.327946,-0.4443475,-0.08634953,0.43622884,-0.16597709,-0.6503704,0.02801714,0.19190668,-0.6648846,0.64090323,-0.48307094,0.40244314,0.10902285,0.4661927,0.21729317,0.12024198,0.19468151,-0.110366754,-0.019483805,-0.1354646,-0.16794367,0.038458604,-0.47572067,0.27528402,-0.08837865,-0.42973423,-0.015704209,-0.59244233,-0.14093718,-0.8072439,0.39281493,-0.7398361,0.3928649,0.0913545,-0.2979762,0.25814387,0.14355235,0.3426154,-0.17839266,-0.027255088,-0.024308555,0.0047839093,-0.03842622,-0.25077343,-0.210261,-0.28686187,-0.7323923,0.1891892,-0.21360807,-0.24773206,-0.22322851,0.046401743,-0.3532709,0.18035239,0.10416703,0.31664887,-0.3009551,0.1147671,0.13018918,-0.21502899,0.008801059,-0.5344619,-0.3950306,-0.080485314,0.2646506,-0.23749675,-0.13742475,0.25975513,0.33341715,0.59360605,-0.11896899,-0.108093046,-0.25481468,-0.18544973,0.068368964,0.60360044,-0.17751569,-0.6331316,-0.06218797,-0.07488993,0.2347611,0.22413841,0.23681699,-0.23821133,-0.15199417,-0.34584737,-0.3517815,0.16642445,0.51581424,-0.35947183,-0.3373752,0.3009365,0.513238,0.099405356,0.14058429,0.13635124,0.09392467,-0.5651064,-0.1016844,-0.07112877,-0.40438625,0.5449981,-0.22730647,0.20256825,0.557704,-0.037058827,0.10259209,0.07658278,0.054348446,-0.22429754,-0.2963828,-0.23947121,0.24497706,-0.43807265,0.13968597,-0.2933234,0.9032724,0.33229694,-0.73671705,0.3630241,-0.64364547,0.22147027,0.04023662,0.4909383,0.7101707,0.1758725,0.4246749,0.6816655,-0.3973973,0.058141556,0.038690213,-0.20877385,-0.042053424,-0.258463,0.061140537,-0.4558718,0.16772081,0.13154739,-0.10040164,0.24984303,0.49773273,-0.48833266,-0.10023474,0.20480512,0.8274107,-0.2694607,0.005053997,0.8581892,0.9071333,1.1674514,0.050019935,1.4031314,0.31937936,-0.29901636,0.18985675,-0.23546691,-0.96663326,0.25249216,0.366558,-0.21965967,0.29745752,0.067798495,0.021286774,0.31226087,-0.6319037,0.07454226,-0.13635863,0.104957074,0.1266533,-0.11790137,-0.3429477,-0.47000942,-0.09162101,0.0046509113,0.18693356,0.3397196,-0.10350945,0.40393162,-0.017313974,1.6629704,-0.032847203,0.19333524,0.23363261,0.3727866,0.20154685,-0.25380117,-0.06863033,0.2520505,0.29204312,-0.089059524,-0.6904967,0.018334992,-0.2569702,-0.55581,-0.21115784,-0.22206426,-0.1612532,0.115881614,-0.21094021,-0.3528862,-0.27584296,-0.4247708,0.36538124,-2.4157114,-0.15341236,-0.2274444,0.33452064,-0.24984117,-0.3893979,-0.3035866,-0.5060909,0.37841618,0.4051571,0.39270118,-0.7838125,0.0973342,0.45148146,-0.5510875,-0.14178436,-0.6202924,-0.048744414,-0.018814765,0.031941555,-0.11188728,-0.063767485,-0.01926472,0.09092684,0.41944426,0.1356743,0.09516024,0.42822826,0.4330459,0.12736104,0.4146081,-0.064684,0.49590433,-0.34671852,-0.14077939,0.34659767,-0.5939961,0.21756333,-0.22941022,0.13020495,0.502912,-0.6401947,-0.7390846,-0.6598696,-0.3221537,1.2757142,-0.16226615,-0.46811536,0.28100854,-0.22950147,-0.13808651,-0.20280714,0.627521,-0.4087426,-0.30285013,-0.80999374,-0.038567487,0.02237249,0.22633377,0.02142712,-0.1287567,-0.3799503,0.81837046,-0.02070985,0.3803913,0.19916114,0.050388943,-0.39793712,-0.555385,0.16453736,0.964279,0.44356823,0.22565302,-0.26319215,-0.11433518,-0.6211806,-0.3518751,0.08751394,0.3215297,0.74945015,-0.13155438,0.04555227,0.3691281,0.14992493,0.24826384,-0.019602424,-0.2027288,-0.26085582,-0.13304262,0.6756674,0.7399374,-0.35086474,0.19286132,-0.1013763,0.23279019,-0.24917574,-0.3318865,0.7247293,0.92243844,0.008818134,-0.36083564,0.64473933,0.52860403,-0.32087466,0.41869137,-0.57756835,-0.434877,0.46481478,-0.04850801,-0.40129748,0.029990934,-0.32715526,0.108850546,-0.8222306,0.22095901,-0.13362113,-0.11851895,-0.6832715,0.028299851,-2.7091932,0.22613792,-0.258572,-0.13474375,-0.35609278,-0.023278935,-0.13783379,-0.4469161,-0.7767181,0.21903668,0.08739689,0.68683654,-0.0904656,0.22730042,-0.010731014,-0.3014409,-0.59469754,-0.030883472,-0.17149931,0.43039963,0.30527154,-0.35200477,-0.010032887,-0.1408684,-0.22904162,0.15116729,-0.50605386,-0.47890872,-0.22157167,-0.6085237,-0.3745085,0.5482382,-0.5705426,0.04133183,-0.23348904,-0.2190312,-0.2657424,0.3006467,0.13008705,-0.11819511,0.017315181,-0.15483277,-0.13020205,-0.26444957,0.32362553,0.015639933,0.29954612,0.39830047,-0.18643856,0.19544636,0.23148017,0.7226732,-0.10920021,0.65601027,0.35371402,0.017753506,0.25820762,-0.3350361,-0.03922884,-0.34688488,-0.12615922,0.0116301235,-0.35806444,-0.48129222,-0.0005911643,-0.2525165,-0.7249212,0.23268825,0.05107124,0.1350174,0.089041695,0.19290408,0.48069936,-0.008380628,0.022737037,-0.13560511,-0.046361074,-0.5791625,-0.37316027,-0.67409855,-0.22177698,0.4730096,0.9686601,-0.05897728,-0.033921883,0.09083626,-0.19778791,-0.045318767,0.12738995,0.0077403486,0.10515134,0.47670576,0.034668293,-0.70249075,0.47882202,0.04144279,-0.31551027,-0.59416157,0.1410779,0.48211735,-0.60974646,0.56786937,0.24143614,0.05833461,0.13979049,-0.4515002,-0.2666776,-0.15502724,-0.2392408,0.098361276,0.29352307,-0.557868,0.4038869,0.25913757,-0.0727598,-0.9502809,0.22161227,0.08359666,-0.25852555,-0.039172877,0.4589217,0.16546923,0.10674503,-0.21078648,0.12679364,-0.4999054,0.3161708,0.17418288,-0.010611513,0.30070797,-0.33008978,-0.18922311,-0.7526869,0.123722404,-0.48049676,-0.19729353,0.19996572,0.24693199,0.06760235,0.14209868,0.20440935,0.25637177,-0.3194183,0.16039819,-0.008235639,-0.038489655,0.10573241,0.34033874,0.53596395,-0.5113173,0.65720534,0.0829699,0.04656236,-0.024674892,0.047940113,0.28089485,0.22842659,0.24064918,0.20658241,-0.33268067,0.31104687,0.6255751,0.19292088,0.19341844,0.2533214,-0.07518646,0.43010694,0.16455115,0.10185929,-0.054846045,-0.56965494,-0.060532752,-0.25456843,0.14550729,0.52702457,0.12359419,0.3674844,-0.061794635,-0.2764967,-0.015676081,0.3169526,-0.24577393,-1.1087645,0.1720847,0.031513777,0.8097999,0.6747484,-0.17752632,0.27198705,0.5918934,-0.137291,0.20067258,0.3568106,-0.07698568,-0.47543058,0.67768663,-0.574876,0.42746115,-0.20972382,0.06545872,-0.052311126,0.15258351,0.29754725,0.5998752,-0.13329992,-0.03481593,-0.12182342,-0.30331525,0.072050765,-0.5035644,0.04362345,-0.5772079,-0.14389418,0.60961777,0.3197818,0.19013304,-0.1693268,0.10242807,0.008120585,-0.14455591,0.027965205,0.066752724,0.11544385,0.04630084,-0.7401112,-0.096896,0.5877591,0.0829357,0.289089,0.23090205,-0.29806045,0.1803482,-0.33894274,-0.0903233,-0.123121314,-0.80333996,-0.021391576,-0.17141925,-0.40801084,0.27054426,-0.06113225,0.20616116,0.35527658,0.16110164,-0.34993017,0.3143971,0.03807055,0.7477224,0.010874339,-0.2927907,-0.24283351,0.3620821,0.091452144,-0.276441,-0.0016197237,-0.18356639,-0.07135144,-0.4441021,0.7388985,0.20109606,-0.22221297,0.079002835,-0.20567422,-0.0009360869,0.6802266,-0.2802427,-0.09314141,0.0106139025,-0.20700131,-0.10275795,-0.17959881,-0.23967895,0.38418233,0.33037812,-0.011970899,-0.1412601,-0.096137,-0.133816,0.30418372,-0.06970212,0.31452253,0.26910657,0.096922375,-0.45779255,-0.012169946,0.13120092,0.49082705,0.05011293,-0.28924796,-0.13613339,-0.41846707,-0.31706464,0.43369853,-0.13371554,0.33844423,0.18230699,-0.36985752,0.56628805,0.32498989,1.0790483,0.06177855,-0.32058823,0.014981573,0.3955711,-0.0073279333,-0.16124167,-0.29563186,0.9188049,0.45288727,-0.18159066,-0.16989475,-0.28691027,0.04079484,0.23381463,-0.17360741,-0.076202005,0.1925541,-0.5612406,-0.5004149,0.12246392,0.22920108,0.14747977,-0.19713612,0.11213057,0.21577772,0.018026583,0.38647747,-0.33835763,-0.29746476,0.27170277,0.22024423,0.21081497,0.17240432,-0.39297864,0.31648102,-0.72587466,-0.0053877127,-0.29536223,0.10773511,-0.15807508,-0.33996168,0.22438727,0.23529743,0.43862975,-0.41344795,-0.39262086,-0.37823057,0.60636514,0.18709908,0.27661824,0.47935173,-0.28071395,-0.0008798299,0.16791497,0.59085625,1.1267432,-0.027464002,0.05279164,0.060704652,-0.29653767,-0.5940359,0.5026915,-0.26846787,0.1091702,0.080456585,-0.20496391,-0.77457964,0.24482927,0.2362136,0.15670905,0.18363996,-0.6011169,-0.48624334,0.38168576,-0.30366287,-0.17818585,-0.40227425,-0.063604526,0.5950344,-0.11401956,-0.25528786,0.10954884,0.17193861,-0.26970896,-0.69618183,-0.05386295,-0.4465514,0.34318605,0.19425073,-0.2153828,-0.29159418,0.18947569,-0.46819755,0.21165419,-0.009281695,-0.36316743,0.044957206,-0.4725646,-0.025888653,1.0209762,-0.19706783,0.34876245,-0.63149905,-0.47460678,-0.8884726,-0.42718726,0.73867875,0.022246247,0.13274217,-0.6316564,-0.18292412,-0.061374318,-0.115725584,0.13195789,-0.18172885,0.32084343,0.20424443,0.41346,-0.053527854,-0.67670375,0.06395798,-0.013281868,-0.19568811,-0.56274575,0.35471514,0.19606161,1.0231054,-0.0077547594,-0.0823839,0.3745383,-0.6678814,0.016506704,-0.18352284,-0.10164463,-0.5915633,0.13584167 -699,0.571297,-0.2107805,-0.3775537,0.14432095,-0.5390257,0.09316714,-0.14908719,0.43283114,0.31028304,-0.5819834,-0.33879516,0.115438886,-0.21352768,-0.07095634,-0.16115132,-0.52494174,-0.10332669,0.32130572,-0.46780595,0.68403333,-0.12478654,0.34409264,-0.039650764,0.39923498,0.32279727,0.14927147,-0.14147872,0.11591698,-0.19999014,-0.36420414,0.17274721,0.21653466,-0.8001477,0.4828836,-0.37240908,-0.41241845,-0.20620802,-0.4709434,-0.5260125,-0.8302341,0.37725332,-0.85668343,0.634332,-0.007042442,-0.26479423,0.13434917,0.05038676,0.11107548,0.078359224,-0.12661284,0.32522187,-0.20636013,-0.1363709,-0.059200015,-0.20105276,-0.22145645,-0.68367547,-0.014710999,-0.28656602,0.12962662,-0.3679776,0.30800128,-0.24613433,-0.14945824,-0.20066145,0.6049603,-0.3484877,0.43974808,0.048781734,0.0044068885,0.18919502,-0.7761227,-0.23997985,-0.14542806,-0.046092603,0.016964886,-0.15806295,0.48918173,0.15872863,0.311864,0.08181411,-0.2892728,-0.3991832,0.04140506,0.31758505,0.462663,-0.27212662,-0.15268625,-0.25866598,-0.068067156,0.41629553,0.106599346,0.24672078,-0.35960335,-0.0337163,-0.117043,-0.0015138473,0.51192385,0.56346315,-0.026720067,-0.11477898,0.3410655,0.3858063,0.23122641,-0.11444362,0.008907846,0.038802225,-0.33738834,-0.15703079,0.076549,-0.22470157,0.51085013,-0.09447888,0.056995142,0.49457937,-0.08576352,-0.08547973,0.36992878,0.21947977,0.17363827,-0.34044498,-0.27779773,0.372124,-0.5486682,0.35132748,-0.18088745,0.7131097,0.024521155,-0.8455309,0.28769988,-0.47204018,0.004451013,0.061981585,0.45766827,0.7317993,0.5036506,0.1920878,0.8747383,-0.34898165,-0.024964819,-0.034388166,-0.29525524,-0.23952106,-0.24359365,-0.039785456,-0.4060838,-0.092305735,-0.1617953,-0.084371686,0.03560149,0.55483466,-0.40533304,-0.3530462,0.10581796,0.8452796,-0.24123068,-0.04294769,0.91168815,1.0774823,1.1115873,0.057817526,1.203113,0.013948889,-0.096537784,-0.17169468,-0.22915368,-0.74210346,0.22454207,0.201082,-0.29734704,0.18448056,0.23685193,-0.04057953,0.20015442,-0.5067822,-0.06063858,-0.32391518,0.32386306,0.041447222,-0.11600435,-0.40203527,-0.24327438,-0.10195296,0.06531099,0.0013268569,0.2985607,-0.32805124,0.22140412,0.122064166,1.1962754,-0.20380385,0.12035443,0.026965097,0.2834261,0.24753408,-0.2456602,-0.034120433,0.11225128,0.23467116,0.008551515,-0.51112586,-0.0040724617,-0.3564975,-0.42718676,-0.19908322,-0.22812487,-0.3750542,0.18041112,-0.33159104,-0.42796263,-0.09730987,-0.49013022,0.4658104,-2.5512357,-0.013260313,0.045982473,0.40530413,-0.3436975,-0.3317741,-0.11981861,-0.59074444,0.43046686,0.1411006,0.42460844,-0.5975941,0.26684862,0.5284906,-0.6881782,-0.039695125,-0.55136245,-0.022601707,0.18715039,0.27917558,0.042253193,0.10852957,0.080098346,-0.0298012,0.6483466,0.13932444,0.15099347,0.5077995,0.34412694,-0.24497621,0.16443887,-0.048323963,0.43755504,-0.2579828,-0.19553386,0.5505102,-0.3681376,0.35568696,-0.29030734,0.06478309,0.6527805,-0.44410482,-0.5657221,-0.6642333,-0.27168283,1.0593498,-0.21444489,-0.6115206,0.19658527,-0.44571277,-0.12768833,0.011672148,0.564562,0.076313004,0.106562935,-0.65950435,-0.18231371,-0.094663024,0.13402723,-0.053647123,-0.0076317107,-0.5235449,0.88791925,-0.014824203,0.5157815,0.36417824,0.3508411,-0.20293473,-0.37098128,0.16970693,0.8942223,0.59402835,0.25312024,-0.48078728,0.020496229,-0.35746357,-0.3145353,0.055813942,0.73341817,0.4493194,-0.17788696,0.11224275,0.31034356,0.13699332,0.17626815,-0.16950642,-0.24157624,-0.3035173,-0.00011627163,0.45892715,0.70120746,-0.089649916,0.45175332,-0.15832199,0.044277888,-0.18147598,-0.4973586,0.46176797,0.90002483,-0.18813644,-0.23265454,0.73054105,0.4844158,-0.29450804,0.50044847,-0.5280452,-0.35602516,0.44864437,-0.17958255,-0.60771805,-0.012340437,-0.4818766,0.14867036,-0.5609511,0.45118693,-0.33984894,-0.7537261,-0.47082356,-0.05688554,-1.3742855,0.22017045,-0.32536444,-0.104886845,-0.16482453,-0.41619202,0.087516725,-0.48771772,-0.5984355,0.20594038,0.11561408,0.65866584,-0.16312286,0.13005948,-0.14947169,-0.269629,-0.25224456,0.1874676,0.29357764,0.32136518,-0.079193674,-0.26059967,-0.109393165,-0.0034496891,-0.33696005,0.0018397783,-0.548411,-0.46377352,-0.097025044,-0.5135535,-0.32728437,0.55531925,-0.34267667,0.06731103,-0.20666364,-0.034873206,-0.008515997,0.2595612,-0.096481785,0.31189534,0.24690959,-0.258025,0.03645524,-0.18265285,0.6782897,0.12206235,0.30239794,0.60379314,-0.4133331,0.29697463,0.37959698,0.68820864,-0.18618026,1.0353577,0.32476267,-0.16068707,0.3461515,-0.14766261,-0.370982,-0.74976665,-0.085379615,0.08937525,-0.40987176,-0.5588462,0.13429423,-0.42018208,-1.01733,0.5070674,0.105149746,0.5037471,-0.0020818498,-0.0377548,0.5328346,-0.24969313,-0.123033024,-0.09939611,-0.16219759,-0.40676552,-0.5274521,-0.7569812,-0.57587963,-0.116730385,1.190837,-0.17099929,0.051303744,0.32312196,-0.31549388,0.09797,0.048073836,-0.06369653,-0.2593021,0.3368781,0.27196118,-0.62689656,0.3963063,0.19696961,-0.029698014,-0.5272685,0.5668585,0.6763391,-0.48930594,0.5418831,0.16955839,-0.051897682,-0.30069324,-0.6306542,-0.122138,-0.11119853,-0.24430561,0.6320788,0.449176,-0.7811242,0.25354204,0.3684148,-0.32302117,-0.8259867,0.54256195,-0.09612977,-0.14400493,-0.18610986,0.45061567,0.14735691,-0.07191523,0.08331168,0.34502798,-0.48349157,0.47637224,-0.005914954,-0.08686972,0.13951056,-0.18218586,-0.29815823,-0.92674714,0.34918424,-0.6434825,-0.4169149,0.24346277,-0.015293066,-0.1578925,0.37181884,0.47835797,0.44971466,-0.17525287,0.15434574,-0.20126316,-0.41521496,0.39863846,0.43986773,0.7569846,-0.32808954,0.49251655,0.041608382,-0.079973154,0.10559181,0.21924333,0.41770846,0.017737377,0.43545052,0.14284354,-0.049922466,-0.03991234,0.74486345,0.08431506,0.46893692,0.058923513,-0.27184322,0.2925306,0.032789808,0.45523283,-0.280663,-0.82417303,-0.028401464,-0.2995239,0.057255726,0.47290656,0.19679289,0.16826487,-0.13098742,-0.28327098,-0.08177822,0.0026655367,0.027391102,-1.2759131,0.23408844,0.087412596,0.9922345,0.5379773,-0.02093743,0.025039298,0.6681381,-0.04407651,0.15144856,0.43739754,-0.06794749,-0.36631462,0.36219284,-0.6817313,0.33787656,-0.10585866,-0.041810717,0.18131661,0.011896483,0.34806427,0.69947785,-0.15886831,0.043459155,-0.101799965,-0.3766989,0.018524865,-0.30562574,0.374371,-0.673951,-0.3344273,0.8351024,0.6499353,0.31148714,-0.27183324,0.05712576,0.11663665,-0.14039487,0.2787092,0.101272054,0.022979084,0.010922573,-0.34586534,0.04134559,0.5284128,-0.31457713,0.061012153,-0.018910887,0.048237823,0.25738078,-0.14411858,-0.100897625,0.08728039,-1.0223566,0.056386173,-0.27653107,-0.44554397,0.3506771,-0.03656798,-0.025321579,0.1109068,0.10943537,-0.18350665,0.3054378,0.25587615,0.5828204,0.11751185,-0.08301496,-0.2776439,0.31011686,0.087637015,-0.10980302,0.09557549,0.13185698,0.0054946244,-0.55937773,0.43814468,-0.18508805,-0.30667767,0.11349874,-0.00957562,-0.03824131,0.5213221,0.075215235,-0.1655257,0.040437575,-0.15701509,-0.42392534,-0.17258798,-0.09380073,0.20513256,0.17772433,-0.19286492,-0.16070226,-0.23889765,-0.10736041,0.18988916,0.077339545,0.3878858,0.2250701,-0.03326444,-0.59462243,-0.036572672,0.36089087,0.58268845,0.011221571,-0.009299108,-0.16861789,-0.18064904,-0.36707407,0.37220138,-0.056459367,0.2685148,0.04353833,-0.15626495,0.75074166,0.059422262,0.9890467,0.080241896,-0.28458542,0.15496223,0.4102296,-0.16843435,-0.25979093,-0.43891856,0.8700202,0.5574516,-0.06953894,-0.024160037,-0.42384687,0.040779628,0.20042598,-0.2432599,-0.09498435,0.052997977,-0.63923585,-0.058940653,0.11367402,0.27530336,-0.07992971,-0.1639949,-0.20820975,0.42119446,0.09655522,0.2335098,-0.5447662,-0.2635932,0.35722446,0.24006759,0.13033149,0.23082092,-0.43767506,0.19808123,-0.53553826,0.21873371,0.10943936,0.081981175,-0.44449267,-0.29118702,0.22788183,0.12120391,0.37867182,-0.3161493,-0.4144593,-0.3737146,0.3042578,-0.016168794,0.11473619,0.52428854,-0.31445488,0.10089306,0.00953647,0.35320574,0.84137946,-0.09435071,-0.023840997,0.32747707,-0.4100568,-0.61768085,0.40885434,-0.3892115,0.19355848,-0.088222064,-0.21255136,-0.53333956,0.116388574,0.16544703,0.04865965,0.05061468,-0.78135777,-0.10142914,0.18211928,-0.26568824,-0.109865144,-0.2527025,0.011914372,0.5877322,-0.12282985,-0.4290305,-0.101425156,0.12104424,-0.1487267,-0.4346529,0.045568552,-0.35018602,0.1825545,-0.29442883,-0.39644024,-0.2537186,0.11124651,-0.44160175,-0.09272896,0.04734775,-0.33086243,0.04327192,-0.2423393,0.256213,0.81171626,-0.18912175,0.22881119,-0.28986248,-0.57988554,-0.86020416,-0.43320528,-0.0486874,0.29703265,-0.06795307,-0.6863394,-0.10927836,-0.32643345,-0.17089723,-0.080144,-0.5044145,0.5452873,0.18870182,0.33913857,-0.13264325,-0.8240994,0.2685534,0.35633895,-0.03106778,-0.4416178,0.3686926,-0.083912954,0.96024275,0.06619579,0.09945665,-0.075628206,-0.6454206,0.07925824,-0.15272827,-0.11943602,-0.5930434,0.14224811 -700,0.38297397,-0.11901475,-0.5297335,-0.1567281,-0.38304713,0.32699713,-0.22520173,0.17315365,0.13475904,-0.3008408,-0.019711224,-0.1263782,-0.11456508,0.4257029,-0.058072954,-0.6193755,-0.06773762,0.1215723,-0.66679466,0.20639388,-0.537642,0.391468,0.12587892,0.33869052,-0.0037873217,0.35075498,0.09849286,-0.104378715,-0.044085275,-0.12678146,-0.17022023,0.18169157,-0.69609004,0.33398262,-0.027712574,-0.20803162,-0.016429828,-0.33228683,-0.2193209,-0.5370995,0.07462843,-0.6275426,0.50772,-0.1869433,-0.37749228,0.09696839,0.07314359,0.30392852,-0.36087862,0.1539468,0.29495552,-0.32518512,-0.11928852,-0.17626844,-0.1320344,-0.41350156,-0.5208639,0.12743394,-0.5855815,-0.10267218,-0.2748406,0.34315544,-0.27844375,0.07395661,-0.21021672,0.27846745,-0.3744333,0.17662399,0.091196455,-0.3609179,0.059640963,-0.36372358,-0.012271634,-0.074755564,0.47086403,-0.09603398,-0.103448644,0.21523316,0.23318996,0.53211844,0.080070175,-0.1370228,-0.3111925,0.021155205,0.023330102,0.56765085,0.03590994,0.056312732,-0.20717396,-0.10108487,0.08030736,0.024841318,-0.1029846,-0.44900855,-0.12626676,-0.13613394,-0.14199796,0.21957932,0.38796434,-0.4300637,-0.2641577,0.47821346,0.5512377,0.038490508,-0.094471574,0.22923239,-0.035278775,-0.44923708,-0.18647923,0.028787728,0.17294589,0.37889522,-0.12727323,0.23976037,0.7185206,-0.053014882,-0.18683107,-0.07397575,-0.19700532,0.18443336,-0.052661873,0.075544156,0.13256608,-0.3552144,0.0031853977,-0.15070592,0.599866,0.045533687,-0.8921815,0.3819073,-0.48100743,0.061087966,-0.054289598,0.6617042,0.57007724,0.6339625,0.04670947,0.8167887,-0.57908183,0.13406242,-0.120657526,-0.33500168,0.28629443,-0.1367005,0.04300036,-0.4412848,0.13993622,0.036276765,-0.11741359,0.07144814,0.32838535,-0.4977059,0.07188548,-0.014738483,0.6644951,-0.4564323,-0.13444258,0.8393653,0.87736833,0.8887309,0.04883575,1.1472569,0.3384726,-0.11288314,-0.012119992,-0.31664804,-0.5707449,0.18907067,0.25398323,0.49469092,0.24698652,0.24466899,0.095696546,0.45048422,-0.1574811,0.09052635,-0.04522168,0.14457214,-0.03409266,-0.07673855,-0.4018836,-0.25138956,0.24893482,0.03735229,-0.0034512195,0.2151996,-0.17780153,0.51471585,0.09943409,1.6238955,0.014085135,0.137359,0.024944434,0.29954317,0.09120782,-0.25810736,-0.3089059,0.31606868,0.25850698,0.016799824,-0.48115936,0.06580081,-0.03277686,-0.39432064,-0.19701378,-0.38496855,-0.16082719,-0.27933395,-0.32020584,-0.32345673,0.14978136,-0.36801574,0.45136887,-2.6371498,-0.15797165,-0.04255027,0.3699285,-0.20440365,-0.3148841,-0.24668743,-0.42622867,0.22236614,0.3698623,0.35815287,-0.5046899,0.5338826,0.27910724,-0.34256145,-0.40567657,-0.5200411,0.0728312,-0.012589016,0.29019952,-0.07125096,-0.15497448,-0.2839335,0.13281408,0.5920618,-0.23302807,0.042261712,0.41340154,0.5065325,0.08523987,0.568587,0.18578447,0.6289822,-0.36651132,-0.10979407,0.48441124,-0.47972283,0.26504645,0.07052762,0.12968704,0.18273766,-0.5672368,-0.95712996,-0.71439457,-0.20832768,1.2880555,-0.34786105,-0.3859054,0.25586095,-0.1262731,-0.21900983,0.10969533,0.4248305,-0.041910846,0.09883637,-0.6626533,-0.03363187,0.038616158,0.42779636,-0.033478655,0.04098583,-0.4480944,0.6117624,-0.23568828,0.5128082,0.38709313,0.1400417,-0.08123089,-0.4050754,0.1596284,0.9366684,0.23551694,0.07436273,-0.10721363,-0.28194267,-0.07711063,-0.23770653,0.026557472,0.50083894,0.65167254,0.10654224,0.18475106,0.36324903,-0.27130514,0.02611007,-0.10658639,-0.26073653,-0.048785765,0.105018124,0.5291275,0.5987703,0.015221357,0.4326236,-0.20190622,0.3225005,-0.022928638,-0.5828071,0.3323412,0.62142956,-0.124691926,-0.16621317,0.415422,0.5134583,-0.22120926,0.35951048,-0.47521725,-0.5200768,0.52145034,-0.23544884,-0.33327442,0.15546764,-0.34035397,0.03122063,-0.8189871,0.2516629,-0.043636374,-0.69434124,-0.31543404,-0.15151851,-3.508855,0.10694488,-0.08504406,-0.08008065,0.0073780078,-0.12728393,0.2634825,-0.43603626,-0.46620846,-0.052777447,0.10577851,0.50629693,-0.03908677,0.12544979,-0.35218722,-0.18156753,-0.25355303,0.3001949,0.21238446,0.2801884,0.09682826,-0.4099312,-0.04654273,-0.3546176,-0.3242199,-0.1202452,-0.6066733,-0.4682948,-0.03350963,-0.46406966,-0.24085984,0.67833096,-0.56131727,0.023546586,-0.23132896,-0.019837903,-0.14538506,0.28624323,0.18480523,0.13110778,0.1991878,-0.10168549,-0.18740891,-0.35247073,0.32226387,0.14657159,0.28350323,0.4493156,-0.0962344,0.039205737,0.5327242,0.580027,-0.11328664,0.6857751,0.15001634,-0.0018548529,0.3069785,-0.3067026,-0.26537305,-0.5377168,-0.23212759,-0.09693825,-0.49810356,-0.4566122,-0.016288374,-0.3812115,-0.80443394,0.45006052,0.10302329,-0.13443194,-0.07045622,0.23038585,0.321616,-0.18850766,0.012842702,-0.23898374,-0.15567705,-0.43861216,-0.42879924,-0.51377267,-0.7191621,0.10184047,1.2236655,-0.21790127,0.00956479,0.048721373,-0.2751506,0.13514556,0.07879793,0.23891743,0.26947358,0.39808777,-0.11340104,-0.74907064,0.4230885,-0.36176863,-0.0638848,-0.52070093,0.15663056,0.6182815,-0.7107844,0.4007422,0.24447937,0.21971162,0.28020072,-0.36727622,-0.26333886,-0.12692456,-0.3010276,0.529511,0.10800027,-0.74880743,0.49803376,0.18016972,-0.32479078,-0.63451284,0.2521735,-0.12449447,-0.25210133,0.26405993,0.26202464,0.07275995,-0.13329802,-0.15633285,0.08385544,-0.47923395,0.31052002,0.30339304,0.03361649,0.40759373,-0.12512158,-0.28291008,-0.5525125,-0.23192786,-0.38275394,-0.31491297,0.008613068,0.056950778,0.109107025,0.1134276,-0.041524563,0.41039133,-0.31517252,0.017058058,-0.21500841,-0.18516943,0.24389145,0.4176124,0.40818328,-0.5806371,0.51234156,0.07679941,0.08283561,-0.08106971,0.015200428,0.49498335,0.1918814,0.28328195,-0.05018315,-0.029357124,0.19883636,0.632189,0.2543373,0.42098117,0.021215558,-0.33616713,0.34288126,0.2096294,0.07913227,-0.09876068,-0.2842749,0.18489094,-0.09924542,0.13354704,0.44903368,0.22316559,0.40095204,-0.14601925,-0.051059216,0.2410629,0.060777444,-0.15004107,-0.8889614,0.32129762,0.2580728,0.63335484,0.43889615,0.10742052,0.21553986,0.7156983,-0.37782153,-0.034541097,0.21848114,-0.07201641,-0.50566715,0.46445322,-0.7392397,0.575061,-0.05039572,-0.043700185,0.33063227,0.14286636,0.40248156,0.94722545,-0.0024119976,0.080570586,-0.0005885256,-0.16890094,-0.11549092,-0.34920135,0.13171946,-0.5543571,-0.20561549,0.68214375,0.40290862,0.36404794,-0.2932475,-0.041663017,0.00040182046,-0.14523736,0.15075143,-0.0674444,-0.0006547655,-0.12033878,-0.58076346,-0.24504802,0.6091772,-0.031398807,0.048635487,0.2078582,-0.41469285,0.3361058,-0.21502063,-0.11400648,-0.16217883,-0.5863017,0.0025981325,-0.2885634,-0.40986356,0.20196459,-0.21361949,0.2968047,0.20313014,0.026213666,-0.38409504,0.3678184,0.14874911,0.9223938,0.1484622,-0.18875666,-0.27422538,0.11937511,0.36103132,-0.31879276,-0.20026936,-0.40992785,0.057933692,-0.55262846,0.26395696,-0.2840419,-0.37777156,0.20800689,-0.058715668,0.09428905,0.50391585,-0.15338795,-0.08066527,0.2338941,-0.048412126,-0.22885658,0.046766542,-0.44452652,0.20392597,0.17552109,-0.16381566,0.05899508,-0.12156701,-0.09098259,0.3512551,0.030184206,0.2316697,0.15192555,-0.056148164,-0.3363683,0.13483237,-0.098829746,0.50158346,0.12377984,0.021098567,-0.19872722,-0.2593875,-0.25375432,0.4567859,-0.22551608,0.119161405,0.045850437,-0.45917517,0.68877804,0.15703215,1.0656127,-0.0029842514,-0.255765,0.293572,0.44818118,0.16392598,0.121349946,-0.39244762,0.9146751,0.5972648,-0.23251761,-0.13748981,-0.36512086,-0.4382944,0.18141492,-0.3005713,-0.26266766,-0.24579771,-0.73150545,-0.21828482,0.21720779,0.10734335,0.1439438,0.017581854,0.012401862,0.10654373,0.09283214,0.2317673,-0.4478099,-0.044180874,0.40715113,0.22352754,-0.06408657,0.055585522,-0.40374157,0.50746137,-0.64777917,0.13461766,-0.37471384,0.032652266,-0.11548454,-0.21087585,0.19240756,0.09614546,0.2761604,-0.22548996,-0.36187217,-0.23426792,0.5809843,0.22589776,0.3737099,0.8392066,-0.24126934,-0.07200172,0.0863939,0.3691493,0.9508634,-0.16069625,-0.040952466,0.49557087,-0.19648139,-0.40464973,0.163416,-0.38206956,-0.045162234,-0.047224384,-0.3487649,-0.23138714,0.35475636,0.15605631,0.039685786,-0.012910669,-0.55474913,0.042999856,0.37484017,-0.2613835,-0.36735612,-0.364997,0.30089924,0.7647233,-0.33955044,-0.3421808,0.11443139,0.27224973,-0.29627922,-0.45324564,0.06670568,-0.3134862,0.26612732,0.14032096,-0.3481784,-0.099337526,0.20993027,-0.35855347,0.04797786,0.35901147,-0.32034907,0.07287647,-0.3434484,0.031077249,0.83700037,0.09096726,0.19087812,-0.56072664,-0.4630402,-1.0064573,-0.25221342,0.2876094,0.19877096,-0.12718007,-0.4389861,-0.12966384,-0.21812014,-0.2308971,0.13107468,-0.6649315,0.40048426,0.08241449,0.3732863,-0.15123466,-1.0595045,0.00828141,0.24711125,-0.32308728,-0.54655844,0.4904151,-0.15482304,0.66699743,0.13591751,0.12114533,0.24472828,-0.6332813,0.35193974,-0.3607678,-0.04715148,-0.6446249,0.013071219 -701,0.35902724,0.014307332,-0.552769,-0.24525578,-0.21466878,0.14539021,-0.00038337708,0.13369599,0.3418349,-0.23526439,0.012772886,-0.19282836,-0.06007326,0.320908,-0.027927483,-0.7999412,0.012331597,0.13751419,-0.6240381,0.29588583,-0.46371275,0.37628117,0.08048273,0.34064025,-0.07168169,0.3528362,0.1460479,-0.040972244,-0.015015451,0.24377565,-0.15523832,0.4008418,-0.47036102,-0.010036623,0.077701725,-0.19046974,-0.062313534,-0.1398816,-0.3943275,-0.6067628,0.40762872,-0.7329472,0.57605493,0.056518793,-0.34449294,0.093806,-0.031154899,0.1707962,-0.3614921,0.18160218,0.19835024,-0.42321938,0.0017944734,-0.20176545,-0.34174487,-0.48181972,-0.61719716,0.010291195,-0.5890778,-0.1291729,-0.3867577,0.21933489,-0.37821472,-0.05418959,-0.2481265,0.4718302,-0.41558537,-0.037796482,0.30390173,-0.27290183,0.08397531,-0.33380842,-0.12421873,-0.117820665,0.1655407,0.09288066,-0.15695445,0.18119174,0.22890984,0.6673114,0.1309148,-0.29627874,-0.31077754,0.06545638,0.17977487,0.4931348,-0.1727998,-0.023113318,-0.1634566,0.0199404,0.05409594,0.18647008,0.02867585,-0.44453558,-0.013075964,0.16083114,-0.16293383,0.30254802,0.50114197,-0.38886273,-0.35709414,0.39101753,0.60647935,-0.053862974,-0.22789812,0.20021804,-0.09532539,-0.51519394,-0.22579572,0.22555457,-0.13841525,0.4416855,-0.13750812,0.043369096,0.81956077,-0.04982497,-0.09078487,-0.15741786,-0.031230653,0.053106047,-0.24769284,0.1976817,0.051727258,-0.36909968,0.03055751,-0.15664954,0.6293369,0.120020896,-0.7665573,0.36463764,-0.43922198,0.2722643,-0.19971503,0.6743679,0.81138176,0.27765444,0.25959834,1.008182,-0.6722642,0.012895632,0.038557578,-0.5297272,0.16154371,-0.07586579,0.015783977,-0.5436708,0.0021486084,-0.05752654,-0.0950188,0.026295569,0.2820771,-0.48424876,-0.077359535,0.10526252,0.7898903,-0.39581493,-0.046590727,0.59603435,0.9345469,0.7928911,0.028106613,1.2203257,0.36410674,-0.2501927,0.266545,-0.6353189,-0.5979413,0.072955005,0.30088148,0.34113923,0.36951447,0.16585486,0.20752423,0.53940517,-0.19210714,0.1634584,-0.14872281,0.16252628,0.15720414,-0.11339356,-0.3610202,-0.056153603,0.08816745,0.052188482,-0.010654183,0.29926366,-0.20333236,0.3752176,0.03744111,1.4376653,0.071369745,0.013177981,-0.00932701,0.44278902,0.21402553,-0.09098606,-0.10801354,0.4613468,0.3270859,-0.12014947,-0.4840632,-0.022271313,-0.32880458,-0.39123005,-0.2506538,-0.35852292,0.09541778,-0.07635892,-0.45430824,-0.04874928,0.13809238,-0.4713786,0.4311766,-2.511801,-0.24115425,-0.06829734,0.32279506,-0.08073168,-0.285792,-0.27830508,-0.3540324,0.12614484,0.4435391,0.31036323,-0.6468786,0.4375316,0.29385525,-0.26568404,-0.057401035,-0.6239767,0.033818703,-0.14465924,0.3639335,0.030776305,-0.022768853,-0.20184407,0.214221,0.61673576,0.0109882,-0.18486357,0.23755908,0.49438593,-0.014738449,0.5527382,0.18204361,0.61730045,-0.10666873,-0.27001044,0.38587007,-0.35152644,0.19735463,0.08353929,0.1301743,0.26159313,-0.32764402,-0.9451285,-0.547572,-0.24802813,1.2516583,-0.43040007,-0.29706797,0.44404775,-0.18775311,-0.2505732,-0.0718569,0.42676684,-0.1821511,-0.01320647,-0.71866363,0.08632912,-0.014693125,0.114401355,-0.11806648,0.022904182,-0.2386408,0.669186,-0.24666776,0.42158425,0.2922067,0.20466174,-0.077569865,-0.3839059,0.119936,0.82282853,0.2377208,0.10630536,-0.015900172,-0.20927788,-0.028608743,-0.19288747,0.14820448,0.50135285,0.6870105,-0.023867518,0.11216261,0.43268624,-0.09469588,-0.09473293,-0.14875866,-0.3810136,0.064849086,0.031268213,0.420332,0.5388031,-0.21790634,0.3457785,-0.06950581,0.11194351,0.032491494,-0.540523,0.44553173,0.93421006,-0.20170236,-0.26136258,0.50598884,0.3360958,-0.519448,0.33150494,-0.5533965,-0.13353075,0.625949,-0.11934029,-0.32908306,0.17239238,-0.3221955,0.06525445,-0.80158585,0.17136,0.12945895,-0.5142671,-0.4007146,-0.20267805,-4.2683196,0.20555793,-0.30396944,-0.0058311066,-0.002412041,-0.06405371,0.22609052,-0.45134556,-0.40048265,0.054762147,0.087743774,0.35464317,-0.10472742,0.09078921,-0.3171922,-0.0473451,-0.22356786,0.29014072,0.04448817,0.33847058,0.107252926,-0.46422967,0.120752454,-0.3489877,-0.4937598,-0.05722107,-0.53030986,-0.47535673,-0.13182408,-0.54920477,-0.28399912,0.6736505,-0.25108063,-0.099740855,-0.4497381,0.094642,-0.1793848,0.35604864,0.16552998,0.20507075,0.029366931,-0.00012088418,-0.24435237,-0.37705368,0.29279456,0.0012047251,0.28060308,0.42982626,0.013498697,0.054872945,0.6217517,0.5908772,-0.08517089,0.6765999,0.41297576,-0.120860204,0.3149773,-0.33277386,-0.16087681,-0.8420849,-0.48492968,-0.16225226,-0.52184486,-0.54428077,-0.22484387,-0.43264997,-0.8160587,0.40974715,0.10167252,0.1684324,-0.07745215,0.33672157,0.4797637,-0.06132086,-0.07422844,-0.16691509,-0.3565094,-0.55231816,-0.4009387,-0.56911343,-0.5879336,0.24289536,1.0685622,-0.19366333,-0.15281974,-0.15438445,-0.2894195,-0.0014724369,0.19799653,0.24687523,0.32207137,0.43557295,-0.17171535,-0.59761745,0.33565372,-0.25620577,0.016211966,-0.8124621,-0.047544148,0.4145568,-0.66355693,0.7677518,0.062302094,0.22459303,0.32339293,-0.49996266,-0.40386364,0.045393027,-0.20024149,0.64997727,0.15254335,-0.63487947,0.49537715,0.18098399,-0.19256891,-0.53807425,0.27335554,-0.17092994,-0.13121904,0.17585403,0.3174175,-0.009460875,-0.079493016,-0.03767085,0.15320657,-0.4088075,0.381964,0.46132654,0.019681076,0.35425404,-0.021056572,-0.26944837,-0.66344845,-0.14673088,-0.44442147,-0.18167622,-0.029156374,0.12427548,0.1628591,0.032815654,-0.048088755,0.44278663,-0.22461002,0.13081613,-0.00051786104,-0.25898907,0.34012693,0.4573973,0.19909407,-0.5137421,0.56178206,0.03464389,-0.09535083,-0.0061616194,0.058349054,0.5371798,0.19692917,0.29165056,-0.07008072,-0.10297224,0.28295764,0.70284176,0.14769289,0.33671921,0.10001555,-0.22585087,0.4226575,0.21979414,0.008937913,-0.1646206,-0.27028647,-0.034260314,0.060884405,0.2803178,0.3581794,0.21728602,0.34976667,-0.08578385,-0.2087269,0.21835227,0.26598924,-0.048827816,-1.0786278,0.16784103,0.23905869,0.6658233,0.48011738,0.0036180813,-0.103075944,0.46361706,-0.38954356,0.034757845,0.4002471,-0.25924888,-0.5271394,0.45696086,-0.561035,0.47048348,-0.13726307,-0.022955526,0.23414157,0.32446787,0.313996,0.9417175,-0.113401085,-0.027597459,-0.07704127,-0.18181057,0.06350816,-0.23083301,0.07907859,-0.5268534,-0.33975327,0.535258,0.4778647,0.39803272,-0.32744515,-0.13872576,0.008555128,-0.16276246,0.028811578,-0.09569033,0.003681012,-0.10033953,-0.6216346,-0.3425464,0.4860054,-0.124693826,0.017083477,0.062763184,-0.29871172,0.27491018,-0.18902801,-0.20710939,-0.10414658,-0.5489651,-0.033984024,-0.12334275,-0.5773442,0.3802751,-0.34458977,0.36029133,0.12264525,0.020446133,-0.4704316,0.35428485,0.012188069,0.8342515,0.018395582,-0.092446946,-0.46306458,0.12556845,0.26408863,-0.25218993,-0.07959594,-0.47850525,0.007462009,-0.52530855,0.51959985,-0.19044434,-0.3263582,-0.068009146,-0.21885449,-0.040335704,0.49758187,-0.31006497,-0.2950839,0.10838976,-0.011494366,-0.28180033,-0.023418497,-0.3455293,0.3614724,-0.07285497,-0.12475454,0.0662915,-0.13140143,-0.06461633,0.46418506,0.13893366,0.18025117,0.16402096,-0.07489826,-0.36272565,0.0010309478,0.042908352,0.3433232,0.07079336,-0.026959987,-0.1848465,-0.3741836,-0.36946163,0.12280004,-0.16108519,0.2547422,0.14216511,-0.5472843,0.6920875,0.18809503,1.2737421,0.13326111,-0.24176201,0.059660707,0.58528596,0.1608078,0.22671695,-0.31578958,0.69387585,0.6820286,-0.068688475,-0.25024942,-0.37153327,-0.10659849,0.22667168,-0.24500042,-0.082037784,-0.15050046,-0.79854697,-0.28646132,0.11141828,0.19365409,0.3349435,0.047706485,-0.04040695,0.040169008,0.14289255,0.4012209,-0.3274669,-0.19834706,0.3052005,0.19464381,-0.04278985,0.17284101,-0.28644297,0.4823455,-0.48426196,0.1075151,-0.26371464,0.11173437,-0.13072453,-0.2105512,0.1918114,-0.08225208,0.36537263,-0.23669395,-0.17666548,-0.3078789,0.6994003,0.14293966,0.28785232,0.7847399,-0.22993803,-0.03752679,0.18687353,0.4693585,1.3794725,-0.072283044,0.09694384,0.34540835,-0.16840668,-0.5954414,0.18655245,-0.2761761,0.011306226,-0.19850641,-0.41592312,-0.31956986,0.29731655,0.000527668,-0.03169466,0.20121983,-0.427043,-0.26020196,0.31962076,-0.32372558,-0.15044855,-0.31905353,0.2585107,0.7125938,-0.46525273,-0.42450315,0.21909936,0.20108952,-0.2583909,-0.48965752,0.0076257386,-0.28709194,0.41362697,0.25335267,-0.3870969,0.07371522,0.3128942,-0.42190498,0.105052784,0.45105615,-0.3040544,0.15336211,-0.040922213,-0.29060745,1.0718662,0.031056453,0.17654042,-0.68960166,-0.48392355,-1.0584022,-0.29830724,0.47599214,0.11901689,-0.072902955,-0.46734902,-0.16319104,-0.06876647,-0.12364184,0.03290637,-0.55282795,0.3921805,0.011452913,0.4691199,-0.07008458,-0.88581604,-0.13287146,0.14090344,-0.20135571,-0.61511785,0.61718243,-0.13172048,0.7053767,0.09578631,0.078156255,0.26780567,-0.47189465,0.22092867,-0.38716882,-0.12999015,-0.71668017,-0.040503982 -702,0.5468522,-0.3404453,-0.46790263,-0.18424898,-0.39009723,-0.07683622,-0.16318685,0.3335892,0.34566903,-0.2946072,-0.09867124,-0.18774134,0.0915016,0.50241065,-0.08491126,-0.86816716,0.091292694,0.23280536,-0.7915769,0.67255366,-0.47226638,0.3830262,0.08436782,0.26214507,0.10812988,0.3463412,0.294227,-0.09580738,0.053481065,-0.20554422,-0.08546469,-0.039940182,-0.8036667,0.37602702,-0.098921604,-0.35175863,0.12615098,-0.29239818,-0.393276,-0.67253894,0.25636628,-0.8482374,0.48971507,0.13789749,-0.37160376,0.1958831,-0.049233068,0.31027833,-0.37157786,0.16262402,0.19763058,0.03296477,0.051636767,-0.44022855,-0.14723442,-0.546315,-0.51354223,-0.118189484,-0.63129586,-0.3175631,-0.43670428,0.03667633,-0.30348217,-0.051560715,-0.11016779,0.32307538,-0.39748192,0.25193423,0.17942959,-0.24652252,0.27941436,-0.3344789,-0.08032431,-0.13908285,0.0453411,0.027763821,-0.17000347,0.43815717,0.07709576,0.493197,0.087858826,-0.16912067,-0.27879784,0.12327281,0.12839217,0.4564333,-0.069648355,-0.3988376,-0.22376728,-0.17981774,0.113500945,0.060630973,0.26970407,-0.5212137,0.01926784,-0.055273566,-0.27532974,0.44980496,0.39741182,-0.4570041,-0.24563313,0.28933594,0.35348102,0.08863568,-0.1425866,0.0095477905,0.049742464,-0.5215938,-0.3671529,0.019402536,-0.2673202,0.5119328,-0.21688014,0.23402292,0.8286949,-0.22972998,-0.026855767,0.12590875,0.1026931,-0.16785674,-0.20185882,-0.20529057,0.27070034,-0.63472706,-0.18170674,-0.34960458,0.82649916,0.06712377,-0.67394876,0.392892,-0.6226904,0.17001514,-0.28612158,0.49346477,0.7498607,0.554652,0.006216908,0.6332271,-0.6055403,0.06253118,-0.087421596,-0.4291855,0.5262875,-0.21405517,0.104354024,-0.45753428,-0.22277437,-0.013197682,-0.20861058,-0.004887226,0.5490169,-0.53189963,-0.14137276,-0.001809933,0.9011723,-0.34137747,0.08122611,0.505827,1.1447405,0.89412403,0.023336025,1.3060204,0.2593558,-0.24193062,0.2615633,-0.15243925,-0.9599131,0.23224331,0.35241207,-0.07284528,0.40049192,0.023162263,0.028672451,0.32668477,-0.27011922,0.012270689,-0.18053056,0.37144965,-0.22967547,-0.23229083,-0.3319577,-0.29781362,-0.03673656,0.19050537,-0.15196703,0.45491228,-0.26260552,0.19142757,0.04751637,1.7843632,0.09860241,0.064280495,-0.1577454,0.6522491,0.29371047,-0.17230736,-0.06863568,0.384071,0.21378246,0.23762174,-0.6211511,0.120316096,-0.1088083,-0.52965295,-0.15010233,-0.43903625,-0.05336565,-0.23609807,-0.5226044,-0.117214724,-0.0009450479,-0.14219846,0.31403938,-2.2659786,-0.09225405,-0.08044202,0.49030885,-0.25952563,-0.15708742,0.032211013,-0.3885555,0.10246772,0.3790617,0.5666142,-0.70460075,0.4983962,0.6596981,-0.50431436,0.038148057,-0.4414894,-0.0778476,-0.15193094,0.60552126,0.043232158,-0.008134999,-0.08281528,0.272584,0.4518038,0.031356044,0.2951778,0.27467412,0.5076597,-0.11542355,0.50006795,0.096161865,0.33137643,-0.2973251,-0.13304886,0.27237892,-0.2061769,0.12796998,-0.03626618,0.07696832,0.43600017,-0.43997338,-1.0250995,-0.55185837,0.07104385,1.0339489,-0.5034766,-0.51538694,0.3084256,-0.20548764,-0.19832349,-0.05560758,0.30926067,-0.06360504,0.117075205,-0.8355556,0.14671625,-0.10656543,0.1937478,0.12601177,-0.14157091,-0.37009183,0.8479958,0.10068963,0.40394124,0.03937798,0.17239565,-0.27810583,-0.39859352,0.35808343,1.0089904,0.32660386,0.18697701,-0.15979202,-0.1975133,-0.3509146,0.009010348,0.06506782,0.531612,0.7081421,-0.19459534,0.1749886,0.37661475,-0.19845547,0.02867692,-0.23054188,-0.42748335,-0.03683275,0.09627983,0.48457,0.9862204,-0.12754713,0.26197794,-0.052435935,0.43647158,-0.16402902,-0.62426513,0.56713676,0.8479271,0.009087812,-0.09974215,0.58218616,0.666069,-0.47297785,0.6147049,-0.63387513,-0.47883874,0.3491234,-0.057196315,-0.40405244,0.15798745,-0.30191657,0.21352538,-0.88046265,0.5514046,-0.2775136,-0.269549,-0.35390452,-0.21438928,-3.9211152,0.28785247,-0.1445368,-0.19032282,-0.06145023,0.12921259,0.38916752,-0.7142326,-0.3491949,0.085927926,-0.004585017,0.69410753,0.05168527,0.24783531,-0.23907462,-0.3351018,-0.24053578,0.29122546,-0.032631215,0.1874478,0.0041994127,-0.68686455,-0.30954525,-0.08197499,-0.347069,0.14576131,-0.68489033,-0.5069397,-0.17021026,-0.6535771,-0.2736023,0.6770723,0.10957604,-0.015838908,-0.18444228,-0.08056545,-0.22266744,0.30540723,0.07783867,-0.05568038,0.07148382,0.03260829,-0.15223579,-0.33555168,0.24291252,-0.023858856,0.6832843,0.2641811,-0.26147687,-0.049627826,0.76281965,0.40022343,-0.097362764,0.7790151,0.32381475,-0.14919223,0.38295308,-0.060819816,-0.32425764,-0.6769936,-0.39855766,-0.30746675,-0.3144855,-0.1600892,0.15275317,-0.3822958,-0.6773241,0.6660311,0.14758143,0.21917659,0.0062885988,0.055871964,0.37240413,-0.14111117,-0.26112828,-0.12730494,-0.31487578,-0.5688769,-0.19816126,-0.83313376,-0.39621344,0.45773107,0.87224525,-0.20066155,0.029645367,0.28513983,-0.0647482,0.17573263,0.10626392,0.028622156,0.021878053,0.4238003,-0.0055593033,-0.83420295,0.691424,0.0019034093,0.13732082,-0.48616496,0.10999658,0.6575382,-0.7216448,0.45445433,0.26378,0.19841506,0.24171497,-0.3474801,-0.20330618,0.053435076,-0.19525315,0.34725928,0.28092104,-1.0026468,0.26942945,0.31477463,-0.53559166,-0.5560623,0.61914647,-0.15397516,-0.25079846,-0.31034473,0.24580437,0.050418075,0.06303661,-0.2591804,0.3481131,-0.60752386,0.28298107,0.3282711,0.05733305,0.40164375,0.021694062,-0.10919173,-0.69449943,0.13322346,-0.42724296,-0.44049948,0.24562693,-0.045972034,-0.14173931,0.29986,0.27619007,0.31183904,-0.16727117,0.08663201,0.09893299,-0.38321438,0.76135135,0.477203,0.61719424,-0.50829893,0.59338003,0.12570082,-0.06904536,0.024879206,0.004058491,0.38996938,0.114028044,0.4788407,0.26703697,-0.14614363,0.47924498,0.8329206,0.19525805,0.5222499,0.16572694,-0.055555876,0.24287258,0.09709425,0.1334447,-0.001939508,-0.6104305,-0.039121117,0.10514916,0.27807713,0.5184977,0.08568854,0.27756146,-0.070136674,-0.48662385,0.090167,0.23905605,-0.0487751,-1.4909465,0.080281466,0.28449365,0.59502256,0.68820083,0.010223248,0.0034945228,0.681015,-0.04901966,0.12457094,0.17335017,-0.00051345606,-0.5685694,0.74028456,-0.57842565,0.3673109,-0.13587402,-0.07271352,0.09177944,-0.051169146,0.27594188,0.8253839,-0.021617074,-0.024144493,-0.043235257,-0.5264858,-0.06816621,-0.5155361,0.19935851,-0.5613401,-0.37457266,0.53977585,0.5427174,0.2587384,-0.17274685,0.021505482,-0.06363645,-0.20767374,0.25192624,0.020045714,-0.10669598,-0.03803068,-0.7974163,-0.18170029,0.64238125,-0.029238343,0.14885053,-0.13362509,-0.12597126,0.29992768,-0.35601556,-0.090500645,0.03622747,-0.752474,0.24269108,-0.34599927,-0.29211047,0.5844665,0.12034777,0.12817463,0.18004194,-0.008317045,-0.37542474,0.23482396,0.22629207,0.55986685,0.04046885,-0.16814397,-0.30984476,0.076178715,0.014943928,-0.30624238,0.07965458,-0.21264935,-0.024217801,-0.68036747,0.3463229,-0.00572809,-0.37042668,-0.03431542,-0.07454886,0.15440637,0.5456018,-0.060645558,-0.30386412,-0.10805502,0.059653815,-0.22829407,-0.27259144,-0.1662731,0.34475958,0.114433855,-0.028781867,-0.13894178,-0.1483262,0.21564125,0.42936373,-0.060198583,0.33804566,0.42022246,0.114937015,-0.37403682,0.03947483,0.39823312,0.532374,-0.02552046,0.16860558,-0.28076324,-0.38054693,-0.43110484,0.068578005,-0.19157149,0.42201415,0.08025733,-0.47659448,0.8853597,0.09256587,1.2401805,-0.058562193,-0.27240503,0.33831665,0.5440865,0.090035446,-0.038083427,-0.458792,1.0522208,0.68790036,-0.37851936,-0.2699084,-0.5666934,-0.30368316,0.081181146,-0.43449372,-0.224169,0.16899224,-0.8937407,-0.14423154,0.13464566,0.43587285,0.0425846,-0.09405398,0.23194315,0.30411407,0.07766961,0.17051898,-0.66523796,-0.35125276,0.17456983,0.31169805,0.11913662,0.15965901,-0.54680634,0.38395083,-0.5531477,0.23221731,-0.22512718,0.093736194,-0.31407493,-0.4480446,0.114351295,0.03857726,0.3187328,-0.5034022,-0.49037132,-0.25885606,0.5838339,0.09751093,0.25525537,0.857827,-0.30037445,-0.009062187,-0.04294739,0.45526755,1.0653802,-0.10847103,-0.21021494,0.44880217,-0.53386486,-0.95419544,0.21367854,-0.22089201,0.26373273,-0.018708505,-0.46865904,-0.6049946,0.37904575,-0.07472196,-0.02360021,0.1968609,-0.6913677,-0.13108467,0.19390275,-0.29341707,-0.37330854,-0.23931436,0.17438616,0.5978313,-0.4044402,-0.22055167,0.12130969,0.20348185,-0.19859575,-0.4960863,-0.40977895,-0.39323863,0.29791394,0.09163916,-0.3903832,-0.05057416,-0.0045723156,-0.33861458,0.15292396,0.22243828,-0.31850997,0.19820362,-0.37494043,-0.027012007,0.9662413,-0.08267262,-0.1130626,-0.5988845,-0.6282594,-0.9818661,-0.41737863,0.41304275,0.14980368,-0.058559027,-0.6136546,-0.03921774,-0.012267495,0.016212143,-0.081865005,-0.45272705,0.45080414,0.064564764,0.43288994,0.123920895,-1.0721836,0.1564422,0.42492083,-0.16434726,-0.8517735,0.62946326,-0.4031699,0.89514154,0.07719541,0.06703095,0.24029565,-0.58110607,-0.048368953,-0.25279716,-0.2295198,-0.50308055,0.20695871 -703,0.6278226,-0.24652337,-0.86753464,-0.16351481,-0.39615697,-0.16061448,-0.26639155,0.70694196,0.2426006,-0.5105067,-0.07532633,-0.22102544,0.009484951,0.37416792,-0.33002558,-0.5868072,0.057788048,0.2293202,-0.46719787,0.3779314,-0.4458798,0.32719177,-0.06327882,0.6093114,0.41806778,0.17352083,-0.02633396,0.017196119,-0.1844629,-0.3723371,-0.01933996,0.31259987,-0.61147016,-0.12946682,-0.38512823,-0.691233,0.016145673,-0.56255835,-0.35204294,-0.9807671,0.32504076,-0.94761616,0.6788781,-0.07798934,-0.4298099,-0.049721126,0.27442676,0.5502451,-0.114354596,0.04841016,0.22490497,-0.059908714,-0.009300232,-0.056209367,-0.39361715,-0.5607234,-0.71362495,0.031798363,-0.5896815,-0.18188722,-0.17641978,0.20194547,-0.3990629,0.08640273,-0.036562394,0.35513535,-0.43331823,-0.04277116,0.40030575,0.0032783172,0.46369413,-0.56559527,-0.21253633,-0.20798193,0.16808428,-0.29109883,-0.32495475,0.36942926,0.17668393,0.42789656,0.025931215,-0.331595,-0.45822445,0.051641982,-0.0041577048,0.45748192,-0.20127062,-0.53472847,-0.23829405,0.08539053,0.4955011,0.547713,0.33129758,-0.011329161,-0.15378283,0.060275044,-0.2037797,0.54830927,0.5418027,-0.22341397,-0.072958514,0.16878518,0.53372425,0.30213472,-0.19051245,0.20180406,0.016818164,-0.801416,-0.24578984,0.01014878,-0.07893867,0.6510005,-0.21851332,0.20905232,0.7767262,-0.27620903,0.051853653,0.13540904,-0.0009817694,-0.15262449,-0.38437414,-0.4521893,0.25879398,-0.6522258,0.21571068,-0.3528239,0.6911659,0.17783153,-0.72794634,0.22606936,-0.7183007,0.110883966,-0.1357352,0.50096846,0.5369052,0.59843266,0.43097037,0.7207696,-0.3831637,0.15928528,-0.06696876,-0.2829727,0.173595,-0.3243023,-0.052568663,-0.36995572,-0.057991523,-0.25706413,-0.14610447,0.17612478,0.5246495,-0.62386376,-0.19823907,0.19656841,0.89411986,-0.25597328,-0.038046304,1.0421827,0.88444954,1.179562,-0.04505774,1.223368,0.16157253,-0.25182888,0.13742414,0.029688554,-0.8682565,0.4320566,0.21069768,-0.39815232,0.39109573,-0.07889917,-0.06844345,0.506948,-0.39634603,0.07015018,-0.089714155,0.15039687,0.07821203,-0.35484666,-0.50640196,-0.18157098,-0.14948659,-0.04660556,-0.040958803,0.3016023,-0.10592417,0.54113376,-0.120141365,1.6479479,-0.04812514,-0.020904666,0.054002617,0.63265723,0.30107266,-0.11710056,-0.060931463,0.16264068,0.33865452,0.26255256,-0.50310236,-0.0049475604,-0.30504984,-0.3452364,-0.18786505,-0.34308103,-0.1821123,-0.3347849,-0.6420333,-0.187492,-0.27912787,0.0018952148,0.23359391,-2.3271995,-0.22187842,0.041333113,0.36427027,-0.18047084,-0.50113314,-0.05211743,-0.47989413,0.6282317,0.20778668,0.6236997,-0.65693825,0.5425931,0.57466894,-0.5304423,0.09761735,-0.85191405,-0.2583063,0.0054039573,0.17771915,-0.062051963,-0.04218459,0.09235704,0.14402911,0.58141416,0.037098072,0.16328406,0.16282283,0.5176167,-0.14596388,0.7561377,-0.07065606,0.51873094,-0.46219674,-0.16761167,0.3885646,-0.56040925,0.20963347,0.053683188,0.067637816,0.5900759,-0.6171592,-1.2192641,-0.6306998,-0.00974851,1.018185,0.0012331988,-0.5091565,0.35341066,-0.6284129,-0.26133445,-0.15625106,0.4377902,0.015401376,0.14080533,-0.7734911,-0.30772144,-0.20317258,0.064663246,-0.039642725,0.00076285854,-0.3846639,0.5229911,-0.036957927,0.36072955,0.46162063,0.066170566,-0.38997468,-0.63630706,0.066658296,0.8921527,0.43301484,0.25443015,-0.5134615,-0.23248313,-0.6433464,0.08681924,0.070898876,0.5136085,0.9874217,-0.2896773,0.29099828,0.24510185,0.03582507,0.040153746,-0.19647631,-0.32241008,-0.23214464,0.030761344,0.5969831,0.7862124,-0.1283782,0.52848774,0.0720789,0.4496112,-0.25079653,-0.51922977,0.41086945,0.97382396,-0.26420715,-0.36138105,0.7412219,0.40932092,-0.2949215,0.5379152,-0.56277937,-0.33050388,0.4758155,0.018602878,-0.46912646,0.3401695,-0.35943264,0.22672309,-1.1265358,0.17052677,-0.41452974,-0.35476547,-0.63514054,-0.23857856,-2.639904,0.26452222,-0.16759416,-0.08649974,-0.1304127,-0.3354225,0.24969332,-0.6528853,-1.0303261,0.08647919,0.064157225,0.9429775,-0.24040283,0.10834419,-0.23810254,-0.47316146,-0.6114353,0.1843325,0.4228408,0.40519434,0.005442696,-0.5853448,-0.20612742,-0.25814864,-0.65755403,0.010644155,-0.68959624,-0.57225883,-0.20184088,-0.6053124,-0.22595611,0.7813512,-0.038725268,-0.07963203,-0.021706391,0.01339273,0.062144835,0.35839507,0.14144358,0.10767073,0.061413713,-0.086071506,0.18504652,-0.1242251,0.120625235,0.08675812,0.39900407,0.18587269,-0.15967034,0.28385708,0.61537653,0.97469467,-0.22518624,1.017146,0.41025022,-0.12263213,0.37353134,-0.32116,-0.54144126,-0.5711117,-0.12115234,0.021783292,-0.52799803,-0.3898625,0.07355434,-0.48483422,-0.8287676,0.7836782,-0.046568792,0.16839148,-0.117319405,0.3272848,0.42411628,-0.22306763,-0.24406824,-0.071584694,-0.10008587,-0.59219253,-0.24784775,-0.6300208,-0.59282696,-0.11704322,1.3640788,-0.29884857,0.16658814,0.28780732,-0.13274732,0.06424581,0.29826227,-0.109413676,-0.032865316,0.5025387,0.05041682,-0.6606107,0.4231768,-0.13649954,-0.18862788,-0.5698744,0.19930159,0.67965287,-0.6720155,0.48920602,0.534896,-0.040714234,-0.19653542,-0.7770515,-0.055976212,0.052945577,-0.12753119,0.6216459,0.24713561,-0.74048054,0.43388197,0.5517799,-0.3643777,-0.64781106,0.6389803,-0.032027364,-0.35289845,-0.11028025,0.38457245,0.34035248,0.037915833,-0.22711244,0.3046628,-0.47859457,0.17203319,0.41375658,-0.11969086,0.29586488,-0.15457387,-0.22165717,-0.8344824,0.10834515,-0.5152166,-0.30188012,0.33587974,-0.2078661,-0.09813171,0.33787945,0.22536385,0.29779157,-0.30636787,0.09277164,-0.37004235,-0.35886368,0.5262945,0.5499841,0.6460834,-0.63796335,0.6830135,0.042969696,-0.20198855,0.20458661,0.043614004,0.50908965,-0.20384142,0.50270075,0.14627568,-0.17522301,0.018714858,0.8582633,0.15307185,0.5380506,0.17321207,-0.050507102,0.025460958,0.26175597,0.111870944,0.08598133,-0.5970551,0.06770869,-0.39516068,0.1222134,0.6073069,0.0061144745,0.27248865,-0.032863114,-0.2629014,-0.011306301,0.078397475,-0.1657406,-1.6637238,0.49627763,0.33014035,0.9567889,0.34999517,0.21470879,0.06754649,0.60755444,-0.26304454,0.08481396,0.5085921,0.24488424,-0.5246872,0.70998544,-0.708807,0.65296507,0.06278794,0.11647241,0.035338186,0.013430566,0.83599436,0.79549915,-0.11027842,0.09807398,0.12145493,-0.28771183,0.29074362,-0.48451433,-0.26015002,-0.42306975,-0.07942691,0.8982352,0.5020424,0.25745586,-0.23357202,0.014347191,0.22234845,-0.18095085,0.21728542,-0.062017787,0.055678222,-0.26472965,-0.42814097,-0.1649627,0.5304231,-0.050582033,0.23329644,-0.14997776,-0.23411928,0.262401,0.004119047,0.11572487,-0.14117841,-0.8791267,-0.10824449,-0.6661004,-0.4538017,0.46041086,-0.026347408,0.13813497,0.3379186,0.16887853,-0.33641553,0.52011645,-0.24548396,0.6644283,-0.29385018,-0.123025335,-0.27097228,0.4014332,0.34320143,-0.35872445,-0.113947354,-0.24610989,0.23598692,-0.40987292,0.40290564,-0.03146183,-0.41280404,-0.037639894,-0.01243404,-0.002216816,0.42524937,-0.23687923,-0.07194721,0.18551473,-0.049840193,-0.24663426,-0.49870148,-0.06082651,0.30485147,0.25494316,-0.13949683,-0.16185634,-0.052369673,0.13572028,0.61429274,-0.22399876,0.4007067,0.3901072,0.06413198,-0.42942983,-0.16730905,0.13594548,0.762149,-0.22021064,-0.19251844,-0.5512441,-0.41412717,-0.37121874,0.40816876,-0.15323506,0.42141533,0.18727414,-0.17927934,1.0042266,0.24587381,1.4071983,-0.10839568,-0.53458863,0.20091034,0.5677935,-0.14266372,-0.18532038,-0.43183336,1.1224434,0.5033338,-0.4228613,-0.1244903,-0.4048849,0.08045776,0.14259394,-0.29655328,-0.22196515,-0.14686587,-0.45190805,-0.08339083,0.3639405,0.39435324,0.24810359,-0.3700152,0.23405369,0.3754959,0.055102173,0.24130094,-0.4775956,-0.26378882,0.2086779,0.39140075,-0.09405351,0.04377688,-0.51252854,0.23865774,-0.4369877,0.05497024,-0.32601306,0.25600153,-0.15502606,-0.5548641,0.14713793,-0.09806323,0.22192442,-0.3667622,-0.30416885,-0.21267177,0.39070374,0.29753837,0.20389234,0.58086926,-0.36682177,0.029359937,-0.061875217,0.51893187,1.171872,-0.15630773,-0.21946847,0.42325273,-0.24568006,-0.6824713,0.3983294,-0.5647283,0.34555158,-0.014943208,-0.2777249,-0.816004,0.2821877,0.25286692,0.013817276,0.020086978,-0.77717,-0.14739256,0.22012194,-0.19173169,-0.2913217,-0.5665299,0.053452943,0.60228014,-0.047240566,-0.4128324,0.2130883,0.24873301,-0.13860382,-0.42165127,0.066544555,-0.2380882,0.36673215,-0.058589887,-0.3688793,0.013153733,0.05323196,-0.5327821,0.19321713,0.2573951,-0.27495745,0.15924132,-0.48350582,0.12071277,1.0859663,-0.24850687,0.22631809,-0.3640654,-0.58375806,-0.9163408,-0.27433485,0.3259774,0.21726668,0.064359196,-0.7792966,-0.034560256,-0.10817834,-0.32925272,-0.17571926,-0.20765814,0.532078,0.14671192,0.37508184,-0.22332086,-0.8735605,0.09970993,0.14813451,-0.39789486,-0.50312865,0.7100724,-0.074474946,0.8459068,0.24472892,0.23634887,0.36786053,-0.42243895,0.12913361,-0.13770679,-0.11728968,-0.6429003,-0.14517891 -704,0.6111341,-0.12712997,-0.7436754,-0.1328441,-0.33919927,-0.25638342,-0.26745686,0.48693427,0.22442318,-0.49375165,-0.19566935,-0.13794874,-0.08605233,0.65092427,-0.24417849,-0.906159,0.13251673,0.32090205,-0.46718094,0.58078796,-0.5564901,0.2624887,-0.02104267,0.6300372,0.39071593,0.23830134,0.37116694,0.1020185,-0.27770594,-0.42733732,-0.077647805,0.05619095,-0.7437315,0.19180723,-0.20973015,-0.75740075,0.048741948,-0.5328416,-0.4121662,-0.93800306,0.37754452,-0.8261843,0.59264493,-0.112039566,-0.32280394,0.09241452,0.27712512,0.4812467,-0.22100161,-0.08505266,0.11615547,-0.09449023,-0.03510712,-0.15638046,-0.30832005,-0.39556536,-0.65143794,0.095651805,-0.44061562,-0.105946384,-0.27381852,0.19403286,-0.34940717,0.14874835,-0.07593424,0.6245833,-0.4012505,-0.080935664,0.39275208,-0.12758927,0.1677322,-0.53932,-0.17954282,-0.22692186,0.117419064,-0.031139208,-0.24303472,0.38464522,0.09470274,0.34517944,0.2099743,-0.38598558,-0.42936578,-0.13978261,0.111419775,0.45934007,-0.21302028,-0.5040214,-0.25303617,-0.045131575,0.20993136,0.22440465,0.26195684,-0.25696245,0.1407338,0.07906264,-0.38919938,0.61084,0.44400778,-0.36931658,-0.20626432,0.09057235,0.52281564,0.19777797,-0.2645814,0.054951686,0.18535282,-0.6802265,-0.30922374,0.03061904,-0.02638237,0.68280643,-0.16799362,0.25602314,0.8412532,-0.39295772,-0.112236165,0.04405415,0.0707478,-0.119981706,-0.55990046,-0.44002065,0.4328208,-0.55509424,0.14458714,-0.31616503,1.0106817,0.23599888,-0.62495327,0.27244714,-0.68410516,0.12412401,-0.24401122,0.49951085,0.5262856,0.3206863,0.41755596,0.74459577,-0.3147024,0.24234462,-0.0050762594,-0.43533078,-0.15115635,-0.18401597,0.17692764,-0.3415273,-0.010881166,-0.28120235,-0.023979226,-0.010086447,0.5168592,-0.50803703,-0.19715138,0.16460837,1.0206809,-0.31200418,-0.18115652,0.9356961,1.0679065,1.3441502,-0.001654475,1.2611371,0.42924973,-0.12759541,0.01942725,0.0059604845,-0.7281839,0.31207296,0.28581896,-0.46280766,0.24834915,0.07450851,-0.04290278,0.5564253,-0.43360198,0.08971617,-0.22940926,0.50934213,0.19474308,-0.15059738,-0.49628153,-0.31256756,0.020859934,-0.25526306,0.14678174,0.3282654,-0.106699504,0.4026629,-0.12791562,1.697372,-0.054530393,0.034140557,-0.0048710457,0.7270684,0.29910967,-0.064653344,0.0706861,-0.05047895,0.31067246,-0.005767832,-0.64941746,-0.105223894,-0.35262606,-0.3384502,-0.2912997,-0.38852763,-0.05489215,-0.08407816,-0.4380953,-0.32844165,-0.1378319,0.015589942,0.31563568,-2.2962914,-0.35405812,-0.059076626,0.20817618,-0.4133422,-0.33656478,-0.021020522,-0.7238273,0.66352874,0.2249365,0.55661273,-0.5839098,0.575689,0.5647715,-0.4732792,-0.0975058,-0.768534,-0.13354155,-0.095251866,0.3555374,-0.124790214,-0.20948057,-0.069922954,0.036981836,0.565784,0.016543671,0.07418808,0.21827824,0.48552808,-0.060224682,0.65715265,0.15671481,0.71138304,-0.61200076,-0.24887729,0.32789892,-0.47658026,0.2460016,-0.18262397,0.13767505,0.6394719,-0.49920675,-1.0078369,-0.7176654,-0.06364915,0.9689948,-0.12213173,-0.5262788,0.19960512,-0.11174067,0.02278932,0.0077333055,0.19366096,-0.09308135,0.073222,-0.59039146,0.05443782,-0.06735412,0.010386169,0.059510518,-0.010166541,-0.35838926,0.59400445,-0.1182476,0.11701912,0.4213461,0.3135161,-0.43557557,-0.5803329,0.087827615,0.96655464,0.29823765,0.22026896,-0.5570324,-0.24202244,-0.41437733,-0.24775128,-0.06659074,0.46114942,0.92229795,-0.24182884,0.14831787,0.4020617,-0.041988987,-0.03239323,-0.081805006,-0.6829603,-0.19452874,0.06902417,0.6509984,0.7420342,-0.10990431,0.71649593,-0.1037729,0.43500146,-0.2816677,-0.3517239,0.6608007,1.1380656,-0.24716824,-0.3717207,0.62653273,0.31251845,-0.43374622,0.6615899,-0.49139246,-0.2756141,0.48931846,-0.085003786,-0.32181552,-0.026599646,-0.2871221,-0.012925822,-0.86772794,0.30620733,-0.4532659,-0.22660752,-0.76108885,-0.49437344,-3.4335167,0.3387464,-0.31179094,0.10537494,-0.14312796,-0.16153409,0.20784009,-0.591151,-0.6735213,0.24095659,0.044176895,0.80499625,-0.034203425,0.29499185,-0.24151659,-0.2735705,-0.43885553,0.14890952,0.26739737,0.36001512,0.09064139,-0.5130958,0.021201387,-0.29634014,-0.5846929,0.062217563,-0.6141781,-0.45323205,-0.1966273,-0.7728538,-0.36111537,0.93456715,-0.37448576,0.10061034,-0.2922878,0.074318014,-0.20147265,0.3912411,0.089103304,0.19149482,0.16265939,-0.18062067,0.10040444,-0.3244066,0.022835886,0.08516902,0.4777002,0.1230197,0.061750352,0.28162163,0.6499152,0.8525584,0.1550274,0.8860838,0.5048518,-0.1392474,0.2782931,-0.33283815,-0.55300283,-0.49235976,-0.3315502,-0.05032895,-0.40252653,-0.4822637,0.06434085,-0.39494655,-0.8116233,0.8684624,0.07074591,0.100752346,-0.0033917725,0.2358525,0.4093895,-0.1626407,-0.15166254,0.014178206,-0.023143245,-0.6323717,-0.3956597,-0.5998346,-0.5630649,0.07364082,1.0457662,-0.14977987,-0.10022076,0.12281885,-0.40148067,0.09205407,0.26665327,-0.14521815,0.023630986,0.389523,-0.052503522,-0.79606384,0.29249966,-0.14906788,0.03878411,-0.7006069,0.23668265,0.8424177,-0.7299812,0.62173015,0.36955008,0.09364748,-0.11169866,-0.50999373,-0.20327848,0.13964379,-0.06730901,0.5688583,0.17788,-0.79497623,0.5504594,0.38846174,-0.44061586,-0.85946304,0.38007483,0.03406299,-0.36826715,-0.05322269,0.33855477,0.29446945,-0.00079652417,-0.3778509,0.16306317,-0.48927853,-0.06326851,0.2707896,-0.19246931,0.4074668,-0.32113698,-0.23247957,-0.7886146,0.04036222,-0.539785,-0.2861235,0.10746926,-0.03664094,-0.04134376,0.2983878,0.23006292,0.08473947,-0.23021646,0.07429643,-0.1599209,-0.288824,0.49176347,0.38232312,0.53161114,-0.62721294,0.6358545,0.09309531,-0.11038783,0.24760132,0.0037364562,0.43731928,-0.007537415,0.43523288,0.20396942,-0.096366614,-0.0062728724,0.7488449,0.14795323,0.6180948,0.18706803,-0.1322477,0.14099996,0.18386428,0.14787884,0.36421934,-0.5681713,-0.08710333,-0.15667649,0.20578186,0.6327222,0.13827819,0.4646155,0.18734397,-0.31913802,0.062329486,0.06209445,-0.34921417,-1.5562059,0.4252913,0.22777776,0.9055829,0.48316917,0.0024945997,-0.0117896395,0.7316949,-0.14788778,0.18384969,0.4502212,0.048578814,-0.38201013,0.69019777,-0.4991598,0.5811865,-0.07079464,0.14925109,-0.11381867,0.12775032,0.60780424,0.7891081,-0.19398205,0.041774526,0.051018637,-0.3211685,0.15373456,-0.5644638,0.09939083,-0.36164045,-0.17979617,0.882895,0.48560986,0.2871787,-0.17541252,-0.056022268,0.19148986,-0.09594969,0.07906606,-0.1940756,-0.11036587,0.036888264,-0.5290534,-0.25611982,0.5879821,0.11991047,0.25408164,-0.051162597,-0.14325921,0.3376683,-0.12015703,-0.01845251,-0.073428325,-0.8378524,0.019602507,-0.31697598,-0.53744566,0.4342977,0.008670797,0.24755894,0.16155319,0.0842346,-0.4298322,0.5355413,-0.063191675,0.61603814,-0.17790276,-0.15573364,-0.31866434,0.16605513,0.31178483,-0.3357412,0.06640544,-0.33042035,0.15916912,-0.5068404,0.3896061,-0.15857063,-0.33869871,-0.124748915,-0.09417194,-0.0216329,0.6241136,-0.19087245,0.09621356,0.11836654,-0.26185104,-0.220025,-0.23404156,-0.053808082,0.23137073,0.14126705,-0.11773274,-0.16112705,-0.26753286,-0.024199734,0.5092327,-0.23115265,0.24262714,0.40065014,0.2620686,-0.3018376,-0.3553972,0.030875312,0.5718785,-0.08887016,-0.18241636,-0.35334063,-0.35115132,-0.33497226,0.6087906,-0.059085656,0.25649944,0.08849114,-0.40066218,0.8694999,0.26878503,1.3524853,0.059711114,-0.5138503,0.15919401,0.51135427,0.014459029,0.08515335,-0.55311793,1.0046922,0.4767731,-0.31152725,-0.28473064,-0.61209756,0.024367189,0.2929221,-0.3066754,-0.36385798,-0.1117394,-0.44447994,-0.20836908,0.29511467,0.37124947,0.123031385,-0.17025109,0.21394837,0.44111407,0.1254111,0.52412933,-0.55621284,-0.12901188,0.45190024,0.39687085,-0.12212723,0.16097148,-0.5703648,0.2817752,-0.5010396,0.2293296,-0.5192509,0.2267127,-0.05271144,-0.41730785,0.30674294,0.16346776,0.33153018,-0.5299174,-0.18002208,-0.17013372,0.51507336,0.32563892,0.1956116,0.6878192,-0.325232,-0.114408456,-0.06822147,0.5200653,1.0733575,-0.2594132,-0.109890126,0.33946982,-0.16070189,-0.72797775,0.44713864,-0.33984908,0.11498201,-0.02454494,-0.32754156,-0.8075054,0.23933981,0.13566591,-0.15769565,0.21986194,-0.6400203,-0.17364107,0.19089197,-0.12895982,-0.2566273,-0.42357764,0.0981187,0.7154488,-0.18934657,-0.30504945,0.19241385,0.37009445,-0.0504618,-0.49081793,-0.16654082,-0.29388365,0.42451826,0.13509233,-0.20335211,-0.12555325,-0.032485414,-0.6194977,0.1452398,0.2661225,-0.3207173,0.068318106,-0.124409296,-0.079293914,0.8716872,-0.102575354,0.42690024,-0.44028965,-0.47960803,-0.9009482,-0.37072203,0.55929387,0.17427985,-0.006464675,-0.72238874,-0.06655408,-0.08912376,-0.11907998,0.26630303,-0.45546627,0.3440999,0.08886159,0.41143808,0.013532211,-0.84904236,-0.016926685,0.14656375,-0.32006207,-0.6284802,0.56025565,-0.29413822,0.926378,0.06055224,0.07593114,0.20333914,-0.32094678,0.056391966,-0.37570944,-0.3963503,-0.6218868,0.02366428 -705,0.4954055,-0.0792452,-0.7114861,-0.0674158,-0.42634732,-0.24695206,-0.23791726,0.40889433,0.33897036,-0.36198527,-0.24969317,-0.20297633,-0.1043776,0.37728623,-0.23249578,-0.7396333,-0.03237539,-0.004191408,-0.5295024,0.79788405,-0.22582397,0.20472288,0.21475975,0.34844515,0.5633853,0.3423144,0.17674886,-0.0019399065,-0.03149736,-0.47199586,0.014776725,-0.04634943,-0.89115167,0.21353635,-0.32271528,-0.39408544,0.050742205,-0.6224422,-0.4647411,-0.9147283,0.4624735,-0.7827706,0.392887,0.14228581,-0.14800175,0.20907998,0.21364608,0.34510434,-0.052835252,-0.22262684,0.2530497,-0.01697124,0.0481876,0.021729091,-0.26537833,-0.2918376,-0.6833773,-0.055979446,-0.44898084,-0.039947066,-0.39373052,0.096315,-0.49242762,0.16688761,-0.26260534,0.62222695,-0.39029855,0.065636635,0.19106218,-0.20994343,0.17414138,-0.57027715,-0.3830748,-0.14065799,0.15542957,-0.058901805,-0.08557011,0.5625262,-0.038243648,0.19890997,0.09587805,-0.18141848,-0.24146846,-0.12297459,0.27377656,0.28369233,-0.08870348,-0.28051296,-0.1386021,-0.08546638,0.27868012,0.27000016,0.25268194,-0.19570781,0.0036425819,-0.006901727,-0.2310399,0.5590293,0.5264686,-0.15600416,-0.14433724,0.23989765,0.43146083,0.44883597,-0.15263842,-0.095163144,0.034679484,-0.56332666,-0.17821194,0.10599888,-0.27754,0.5488536,-0.13060161,0.16245125,0.6058315,-0.15906045,0.030607644,0.12281774,0.07765399,-0.045283712,-0.38294417,-0.24672614,0.36682022,-0.5101395,0.45481205,-0.23702887,0.9125896,0.21626729,-0.62144184,0.245523,-0.65797365,0.13194619,-0.053053737,0.45956007,0.66780657,0.4049938,0.30842063,0.73863536,-0.3742061,0.15341748,-0.15433834,-0.34519994,0.051786773,-0.1880242,0.16530696,-0.27563584,-0.18032655,-0.20223159,0.08153538,0.08262194,0.34969866,-0.3271802,-0.13838527,0.04689897,0.91827285,-0.10960185,0.0063620987,0.82783294,1.0639707,1.2700896,0.06008494,0.77348304,-0.07735132,-0.2028214,0.13526349,0.12064845,-0.7864452,0.29612067,0.29047757,-0.054819997,0.049453314,0.06837153,-0.075962864,0.323089,-0.4813137,-0.011694202,-0.15261434,0.2718098,0.05371652,-0.00463176,-0.23549491,-0.3600515,-0.113808855,-0.022958977,-0.034607545,0.36520007,-0.15092537,0.38699847,-0.038295623,1.3243407,0.050239943,0.07783406,0.19393921,0.69764113,0.1481552,-0.12027744,-0.008103992,0.14111057,0.288745,0.12442816,-0.61244094,0.03326998,-0.40504393,-0.3103304,0.07539622,-0.45245063,-0.27274844,0.043440793,-0.45822254,-0.17213471,-0.12869927,-0.2694716,0.3470389,-2.6293273,-0.005606312,-0.0906886,0.2827729,-0.3574535,-0.3292771,0.01171587,-0.7426414,0.5546271,0.19202463,0.54816747,-0.49431455,0.42203572,0.62926394,-0.70765567,0.07525864,-0.5318878,-0.17519763,0.11564414,0.32379824,-0.14042355,0.13649756,-0.028510282,0.029684216,0.46290842,0.40124738,0.09931393,0.29969925,0.41723728,-0.20929544,0.65171856,-0.14356183,0.40373766,-0.54911166,-0.033179693,0.4644182,-0.52752614,0.49230924,-0.4521381,0.09567134,0.60507625,-0.62537354,-0.92372143,-0.47965643,-0.2753498,1.2580857,-0.18252386,-0.60793686,0.31568548,-0.30420527,-0.0817959,-0.08467925,0.62135845,-0.07189219,0.02344302,-0.62438446,-0.0971491,-0.29565042,0.2367548,0.026743345,0.031793304,-0.34094477,0.7845169,0.14430457,0.55624956,0.25835037,0.20961833,-0.26327518,-0.44566947,0.30275702,0.7754066,0.40515798,0.023253085,-0.42974886,-0.2200021,-0.35909188,-0.23990437,0.036284093,0.7158703,0.55877936,-0.20150867,0.1493703,0.40147543,0.112692505,0.031376004,-0.11897564,-0.40743068,-0.28783473,-0.1473458,0.5259399,0.973717,-0.03443551,0.13159211,0.03219851,0.3431659,-0.21307103,-0.38885647,0.44443908,0.8190684,-0.09739142,-0.25998867,0.49656913,0.5828923,-0.19483764,0.5684903,-0.3013057,-0.43121094,0.44128326,-0.051661234,-0.55823696,0.067248955,-0.35760573,-0.07223888,-0.5484054,0.096288934,-0.46489233,-0.30586916,-0.5190696,-0.096055396,-2.755793,0.06714216,-0.22832698,-0.110336155,-0.3464896,-0.15365355,0.096142635,-0.5593755,-0.7999557,0.08079883,0.13937834,0.83438116,-0.20107335,0.14094943,-0.23750356,-0.2436316,-0.40578893,0.21940228,0.34472054,0.345133,-0.13868102,-0.3442333,-0.3154243,-0.13418122,-0.4433006,0.040479586,-0.37348044,-0.4301753,-0.16883191,-0.6014374,-0.29989317,0.68263334,-0.28820604,0.017352257,-0.022519413,-0.044447057,-0.14869809,0.07886301,0.23893353,0.37317866,-0.034260925,-0.14389701,0.07033311,-0.22406259,0.43016237,0.17250673,0.6128622,0.35398117,-0.070428595,0.19467065,0.4021424,0.6487669,-0.12787083,1.0531414,0.18640892,-0.09055603,0.24357483,-0.1801437,-0.5694225,-0.6533666,0.056881927,0.10660085,-0.2782275,-0.35220224,0.13309458,-0.29513237,-0.8346387,0.5552737,0.082884915,0.27204168,-0.07348686,-0.15443149,0.44793952,-0.21767847,-0.06467909,0.15956734,0.10575665,-0.58543915,-0.2714721,-0.6694594,-0.4063972,-0.16857934,0.779312,-0.21423556,-0.2114301,0.2562849,-0.28799498,0.21300404,0.0557897,0.03914673,-0.0839469,0.45688975,0.26742026,-0.648185,0.7444957,-0.112890676,0.063004576,-0.5083747,0.30659702,0.44346935,-0.6083141,0.5299846,0.31837332,0.032163225,-0.24675353,-0.59397423,-0.117952734,-0.24974574,-0.13850512,0.27348083,0.38050783,-0.6658587,0.25961024,0.02325977,-0.30647057,-0.7766553,0.5284297,-0.09224778,-0.37305295,-0.09559198,0.37723938,0.21521713,0.03621509,0.08063608,0.3160525,-0.20103934,0.2904844,0.24565312,-0.20858237,0.19191352,-0.29940322,-0.23353855,-0.6214155,0.24638997,-0.35646364,-0.3482877,0.43956062,-0.08004729,-0.08263774,0.16546954,0.28096583,0.20855647,-0.034484144,0.19123295,-0.16820823,-0.21832865,0.51971483,0.43608892,0.83870375,-0.53127277,0.6945315,0.14024006,-0.048958797,0.55621517,0.12001769,0.19638044,-0.15980762,0.39401075,0.189572,-0.2474683,-0.05917943,0.7841659,0.22874038,0.32781395,0.048410796,-0.06479071,0.36810017,0.09911985,0.0802464,-0.033836134,-0.92169225,-0.017951187,-0.16962689,-0.04841572,0.5972001,0.1119684,0.17224266,-0.0067069107,-0.16423652,-0.10795423,0.06071142,-0.19440402,-1.4402484,0.38444388,0.0739379,1.0153028,0.6766708,0.0066234926,0.08428182,0.6702118,-0.02929593,0.15775989,0.4089875,0.11277958,-0.44829333,0.5778171,-0.3749978,0.54191047,0.10411208,0.077549234,0.19047938,0.03474268,0.51802015,0.603886,-0.25448135,-0.13125776,0.030356,-0.4883508,0.1854461,-0.46677706,-0.064391054,-0.37521267,-0.27589795,0.62087315,0.68488634,0.1905114,-0.26316276,0.02239738,-0.14004754,-0.12032855,0.090206094,-0.012250613,-0.038629096,-0.042599976,-0.54277235,-0.16778564,0.5062039,-0.37466812,0.16555259,-0.07891921,-0.12479388,0.2738171,0.0011079747,0.061642904,-0.21070132,-0.82629144,0.13529152,-0.40437537,-0.3716442,0.032158013,-0.010247552,0.32348126,0.29835993,-0.006980918,-0.24937123,0.5892112,-0.022042971,0.6424066,-0.37318918,-0.2071185,-0.43108618,0.08421092,0.26464105,-0.15658364,0.035111573,-0.18203662,0.11891374,-0.39812675,0.44937122,-0.17608544,-0.22779237,-0.18890819,-0.10462865,-0.1390802,0.6200748,0.04156761,-0.07841114,-0.16148408,-0.14917836,-0.34630916,-0.29504997,-0.017101338,0.061421793,0.13986124,-0.060766555,-0.1569862,-0.17734377,0.2009968,0.23812744,-0.139671,0.40483186,0.19715595,0.089008,-0.46311834,-0.1818797,0.15593085,0.6017391,-0.009793263,-0.17167734,-0.34897715,-0.32462412,-0.5007546,0.5199579,-0.13514045,0.3763218,0.08331777,-0.1421907,0.53209525,0.13963428,1.140597,0.0065866527,-0.34403294,0.12555641,0.55858356,-0.18496396,-0.18099214,-0.3277656,0.863588,0.36007226,-0.24207608,-0.15582329,-0.4906541,0.12455331,0.0023403948,-0.25472608,-0.2033217,0.05525579,-0.36028415,0.09634007,-0.03706278,0.4222999,0.17931366,-0.28833205,-0.3175519,0.33777544,0.3005006,0.36742544,-0.49488991,-0.53105956,0.32510102,-0.029921345,-0.08408426,0.17570972,-0.5044038,0.39284435,-0.3785765,0.20198342,-0.34439272,0.19656716,-0.41131252,-0.32149073,0.22728205,-0.061242197,0.5461298,-0.49358022,-0.28590196,-0.42576507,0.3881524,0.31209114,0.28714162,0.680434,-0.16811135,-0.045774672,-0.07390321,0.7877956,0.78341186,-0.12293181,-0.04914609,0.23369192,-0.42349574,-0.5117196,0.060124394,-0.28667596,0.20659718,0.006097578,-0.20156723,-0.6156559,0.15274476,0.032269396,0.028245002,0.030322867,-0.9750105,-0.21095313,0.1868929,-0.2055754,-0.3943545,-0.4767175,-0.094697885,0.55681986,-0.11842512,-0.2691311,0.15420201,-0.038354572,-0.005463967,-0.54921556,-0.10028948,-0.2388959,0.17462085,-0.15214251,-0.3726053,-0.29617026,0.20609394,-0.48269886,0.24492034,-0.17238909,-0.29550645,-0.056620058,-0.13310859,0.109630466,0.9655925,-0.46051174,0.289054,-0.29881006,-0.57681954,-0.68189883,-0.42303464,0.3110572,0.028498769,0.03862866,-0.5410607,-0.28916165,-0.13879156,0.0952814,-0.13933402,-0.27449358,0.45246145,0.120770045,0.45999888,-0.14236249,-0.7906117,0.2654572,0.10336746,-0.10501607,-0.45057184,0.40317425,-0.069790795,0.71647,0.0803979,-0.051735166,0.15051536,-0.3912258,-0.06848745,-0.114471555,-0.0027184119,-0.3927328,0.2696573 -706,0.37982118,-0.07709753,-0.33854297,-0.1715903,-0.34810138,0.071222395,-0.13136789,0.123055995,0.1950868,-0.2468229,-0.12120074,-0.06302686,-0.02662203,0.3004724,-0.037354954,-0.6757457,-0.14564522,0.16839218,-0.7333292,0.38527542,-0.55171067,0.40550297,0.0763938,0.15564951,-0.04555542,0.42425895,0.22058563,-0.25214612,0.020046424,-0.05262924,-0.2026058,0.33089548,-0.4895789,0.09275991,-0.21762916,-0.14044535,0.045823347,-0.36623532,-0.33504874,-0.5464639,0.113079324,-0.7622893,0.45162177,-0.013152067,-0.11066879,-0.10762702,0.22760776,0.35635433,-0.28693354,0.09767128,0.29403707,-0.15230995,-0.13004944,-0.24381346,0.032662425,-0.31079155,-0.36263695,-0.079965875,-0.5785965,-0.3242937,-0.13587347,0.14073968,-0.33123878,0.041852854,-0.09731744,0.31453013,-0.32509357,0.06379337,0.33666968,-0.27673092,0.14979379,-0.36630884,0.18595636,-0.039266724,0.53909904,-0.020092651,-0.12147367,0.39299268,0.35135278,0.4766144,0.21279827,-0.27273896,-0.118159726,-0.22385827,0.17131004,0.43106925,-0.18261747,-0.27191615,-0.17474735,0.14873177,0.08476204,0.32157445,-0.16650961,-0.3074196,-0.05566118,-0.04645703,-0.2854431,0.45515996,0.50663847,-0.2898266,-0.40340778,0.31013978,0.5546513,0.32142586,-0.14623335,0.024747163,0.06275528,-0.507809,-0.23999469,0.2100685,-0.042967327,0.40977526,-0.07861063,0.17135927,0.81640553,-0.12141087,0.037651822,-0.00070381444,-0.18630253,-0.11777712,-0.15229851,-0.019212129,-0.039227497,-0.6323531,0.026760101,-0.15713134,0.76392007,0.16398193,-0.7629423,0.5151174,-0.5927511,0.17678815,-0.0986567,0.6404751,0.73843336,0.35494143,0.20001878,0.78493893,-0.3680464,0.16555038,-0.20794925,-0.48674357,0.07015425,-0.09406519,0.12425734,-0.4801022,0.06635829,-0.16916503,0.14356431,0.002922684,0.10548652,-0.5415374,-0.060807742,0.20130707,0.8999816,-0.3739133,-0.0011596903,0.5004649,0.9661416,0.8242001,-0.042513836,1.0496411,0.22835736,-0.22325553,0.26064804,-0.46693882,-0.63045204,0.137135,0.34177652,0.24922985,0.22226912,-0.053460345,-0.007919442,0.24222434,-0.3480296,0.07006271,-0.122677445,0.33911756,0.12271696,-0.019533778,-0.28888822,-0.11104825,-0.01335609,-0.08824544,0.10452741,0.22579046,-0.18395244,0.25355154,-0.026774146,1.3232933,-0.007380694,0.11957373,-0.019518185,0.4523924,0.22745459,-0.075201,-0.077617235,0.43008167,0.43969846,-0.035295483,-0.5637457,0.25361592,-0.3346171,-0.3416956,-0.09351346,-0.42602354,-0.063232765,0.19598156,-0.34680602,-0.067702174,-0.08375108,-0.25496647,0.55505365,-3.0498176,-0.27279803,-0.10485472,0.3125857,-0.3322919,-0.15789765,-0.08135407,-0.49179986,0.17989752,0.24679914,0.4094379,-0.59121674,0.60339785,0.45265394,-0.44393855,-0.20687473,-0.5980971,-0.093967944,0.0061132153,0.44491073,0.031052731,-0.0365403,-0.21772829,0.19806226,0.5472902,-0.020302016,0.031517178,0.37768185,0.41205883,0.2409233,0.6329349,-0.06709157,0.53106254,-0.29577103,-0.14749286,0.34724188,-0.20549892,0.28197873,-0.12207692,-0.027126247,0.39602047,-0.38899854,-0.83156836,-0.62327933,-0.4207649,1.0864427,-0.39142042,-0.2537859,0.19023395,-0.18928792,-0.08878748,0.073302805,0.5021534,0.04582747,0.06810961,-0.58497506,0.16236746,-0.041810248,0.18051445,0.07836921,-0.124567226,-0.2500604,0.5898016,0.016080115,0.5931258,0.22553146,0.20787993,-0.07351036,-0.33274916,0.06327239,0.7386367,0.26251695,0.024458915,-0.10269265,-0.35818693,-0.10257081,-0.07764049,-0.00031412765,0.50580895,0.66149724,-0.037472963,0.10784461,0.35800937,-0.12440752,0.07799218,-0.1533094,-0.15405065,0.0403639,-0.018981017,0.33952945,0.59241736,-0.12871212,0.43486476,-0.06703306,0.13576323,-0.11307578,-0.42977327,0.6338638,0.52698046,-0.20373997,0.02217282,0.385205,0.42743832,-0.3047408,0.45952874,-0.6154651,-0.20052132,0.58987904,-0.22800693,-0.37589538,0.21402222,-0.26904362,0.10456468,-0.76992226,0.32457083,-0.3088532,-0.39568612,-0.4221987,-0.062135592,-3.6835623,0.1479002,-0.12796268,-0.09355305,-0.19458096,0.066695675,0.33984652,-0.50780547,-0.37570623,0.10598159,0.23002447,0.5043669,-0.026901131,0.11844691,-0.32569933,-0.11346914,-0.15772645,0.19229439,0.041214507,0.28608558,-0.13930658,-0.3933583,-0.01442419,-0.09600888,-0.37686545,0.2735293,-0.4512845,-0.34390652,-0.08245246,-0.39758217,-0.17140497,0.5787957,-0.39060616,0.020608712,-0.30359843,0.0932492,-0.30024883,0.24462,0.24727547,0.13300449,0.10773358,-0.050993256,-0.07698069,-0.39710176,0.57074213,-0.030200616,0.40198445,0.13134365,0.16660437,0.09418983,0.49976027,0.43243906,-0.116039775,0.8926234,0.34436923,-0.063583694,0.31252068,-0.30840522,-0.21910548,-0.4134336,-0.41984627,-0.07878409,-0.3725609,-0.5127443,-0.050223377,-0.2804713,-0.75492114,0.5034357,-0.0076208897,0.24760503,-0.08888321,0.18605985,0.34303904,-0.23720598,0.048591822,0.023621585,-0.22117437,-0.52190965,-0.29298288,-0.582621,-0.44114494,0.13792714,0.7409322,-0.32765836,0.054480016,-0.18692684,-0.15269494,-0.11012219,0.00040967762,0.18246856,0.44804075,0.38014245,-0.20746604,-0.57689506,0.43329534,-0.14428683,-0.106687956,-0.5271739,0.0008007996,0.5774872,-0.74398565,0.5847413,0.21847057,0.02654368,0.04146245,-0.43328428,-0.28413448,-0.014634261,-0.22409712,0.33770585,0.03533254,-0.787796,0.4335264,0.23027392,-0.3663908,-0.64719045,0.34079885,-0.034317546,-0.27142704,0.004240051,0.2185297,0.2328592,-0.09537899,-0.1180029,0.19076124,-0.41464475,0.25381663,0.13802807,-0.09953254,0.25398713,-0.14701095,-0.3496906,-0.5943498,-0.07461906,-0.43376786,-0.25359342,0.26917177,0.030085558,0.102157995,0.07188378,0.07092872,0.40224224,-0.18954602,0.08794294,0.10567128,-0.3137324,0.25526094,0.42756766,0.35971445,-0.36157632,0.48747203,0.15487596,-0.11400078,0.11588254,0.11304568,0.41993806,0.027668945,0.278585,-0.08219105,-0.1458214,0.4175868,0.7981426,0.17604661,0.27100313,-0.036306348,-0.0747734,0.50141937,0.012459982,-0.011769969,0.13534462,-0.43167013,-0.113398075,-0.016063713,0.22060227,0.41885093,0.28144786,0.28669256,0.08801675,-0.2252883,-0.04063096,0.19712126,-0.12176185,-0.98279387,0.3664787,0.3179094,0.7740471,0.3705613,0.11485772,-0.11089615,0.6835807,-0.25794232,0.13864276,0.34004217,-0.17601006,-0.49512324,0.6368632,-0.60417885,0.4483178,-0.10110029,-0.114725895,0.14095686,0.030996453,0.32812458,0.7805109,-0.1615634,0.06224469,0.010046776,-0.23872936,-0.051924214,-0.2863209,0.012656301,-0.43648976,-0.35354346,0.57767224,0.3440897,0.2837961,-0.20544252,-0.012130609,0.08567283,-0.086755954,0.13104628,-0.09537832,0.011430226,0.106660455,-0.4867038,-0.16846664,0.57798594,-0.10586101,0.116484515,-0.17878169,-0.1989371,0.19077215,-0.20655492,0.026476935,-0.108669475,-0.47626638,0.11149041,-0.18667941,-0.40255117,0.4330927,-0.26191026,0.2310602,0.2012082,0.053231154,-0.19587429,0.49470505,0.11235217,0.71465945,0.016847193,-0.1799069,-0.45572025,-0.028881334,0.17332172,-0.2524835,-0.08368933,-0.47150502,-0.08363269,-0.570464,0.48775828,-0.20359482,-0.37805974,0.1809429,-0.2720329,0.068914495,0.5730658,0.00734747,-0.1248095,0.04369589,-0.18669567,-0.46287423,0.01164645,-0.20672551,0.29359984,0.32291284,-0.028190542,-0.12593597,-0.33489743,-0.16663623,0.4571848,0.122026145,0.33081365,0.15034777,0.023966186,-0.027132204,0.021390911,0.22473454,0.38079432,0.19843888,0.14024974,-0.38584206,-0.2835345,-0.2626908,0.12201133,-0.13189265,0.23748955,-0.03711687,-0.37170354,0.72402465,-0.03904944,1.1083126,0.22126,-0.15561578,0.09895687,0.47561917,0.011032652,0.15572786,-0.41809338,0.71047974,0.50649995,0.064054586,-0.10727063,-0.44988033,-0.0631767,0.17303689,-0.31246987,-0.016984664,-0.061909158,-0.5982604,-0.3419608,0.21102941,0.17840518,0.1482251,0.04100154,-0.23592475,0.02212803,0.08808455,0.4076923,-0.52249414,-0.20583321,0.24577416,0.21591213,0.0007219147,0.12686235,-0.34946936,0.49857864,-0.6073402,0.08234299,-0.38991195,0.10418305,-0.2649904,-0.30023178,0.13750781,-0.044027086,0.31472754,-0.18953675,-0.40881458,-0.09037019,0.39382976,0.055299547,0.14867483,0.66908157,-0.18550414,-0.03239607,0.053733528,0.52483857,0.99663967,-0.34837127,-0.0371373,0.29276824,-0.3768697,-0.5236383,0.31903124,-0.3823134,-0.062140547,-0.029954728,-0.4405868,-0.24399212,0.3499598,0.11241639,0.18767007,0.05067726,-0.5155689,-0.109979965,0.23761122,-0.2300967,-0.30448717,-0.17259733,0.3666478,0.8534839,-0.30868757,-0.23664156,0.09252699,0.295493,-0.29285818,-0.5143206,-0.0892115,-0.1538049,0.27252364,0.18544875,-0.20636511,-0.052762818,0.19522563,-0.39628017,0.10349934,0.27997524,-0.35594857,0.10977813,-0.078280136,-0.092392266,0.87771404,-0.22551097,-0.13842815,-0.6233359,-0.42514664,-0.8309176,-0.40923363,0.24513812,0.3219286,-0.04168664,-0.2780077,-0.027458757,-0.015936313,-0.16645882,-0.012097535,-0.57509255,0.39570284,0.059609015,0.44936103,-0.27821916,-0.84177774,-0.022452708,0.09659156,-0.14491996,-0.6594196,0.55608183,-0.26541305,0.8917122,-0.015741525,-0.14540862,0.061454527,-0.3607785,0.09316553,-0.45939124,-0.19708711,-0.8584098,0.12651783 -707,0.4108006,0.027153837,-0.5347929,-0.18015395,-0.3467307,0.10155785,-0.29969096,0.3008148,0.25541663,-0.27437225,-0.05759445,0.030211091,-0.063098684,0.24495426,-0.2118129,-0.83324236,0.10577374,0.11594464,-0.50893056,0.4230369,-0.683665,0.46830907,-0.038777772,0.4417726,0.113940954,0.21609107,0.27348712,-0.028102126,0.08343924,-0.1440644,-0.061309893,0.2525173,-0.38699993,0.24408214,-0.05925421,-0.3731559,0.21730316,-0.3170457,-0.3069894,-0.64688265,0.34335294,-0.5545742,0.6150047,-0.035084885,-0.3467072,-0.0004380558,0.08811588,0.14331491,-0.30321822,0.13635686,0.22855392,-0.13238941,0.12025001,-0.10437585,-0.32131448,-0.34991163,-0.48453528,0.044704325,-0.65294474,-0.0044031567,-0.23048863,0.12827256,-0.2526553,-0.09341186,-0.05235613,0.42689368,-0.46333537,-0.08581044,0.17364177,-0.24336432,0.14398293,-0.6139931,-0.1322216,-0.19227205,0.24595734,0.024205236,-0.22612739,0.09702989,0.27929676,0.5621139,-0.050898526,-0.23091711,-0.315412,-0.041022796,-0.052798003,0.45233843,-0.20767592,-0.3108469,-0.25218397,0.05193576,0.36342305,0.23464309,-0.0050176894,-0.30583996,0.12724149,0.13360246,-0.26175162,0.39486176,0.5842284,-0.366743,0.017962886,0.27513537,0.31176573,0.19562873,-0.29284948,0.25484675,-0.18142311,-0.42540613,-0.36382192,0.05169945,-0.041110676,0.5010747,-0.12034625,0.25911474,0.77225524,-0.06255149,0.06562095,0.08808319,-0.029649356,0.027157813,-0.17231897,-0.25937226,0.13424702,-0.60293823,-0.046116013,-0.28465378,0.78579223,0.04364762,-0.91084397,0.30081624,-0.33340773,-0.006493281,-0.23405746,0.5904342,0.8004114,0.34491596,0.23597778,0.7541114,-0.62058926,-0.025913358,-0.06761493,-0.33275992,0.067870215,0.11687374,-0.0692652,-0.5556889,0.023914834,0.08158622,0.039746672,0.09110195,0.40336698,-0.2739564,-0.08625329,0.13699178,0.6269737,-0.40907717,0.036249433,0.7257877,1.1962173,1.0221546,0.03267808,1.3894018,0.24941099,-0.0829939,-0.04530292,-0.20947851,-0.37705517,0.26783013,0.29653004,0.06569848,0.38070577,0.18688916,0.039526742,0.40255076,-0.34275085,-0.07866552,-0.070038274,0.25511387,-0.07228667,-0.027498705,-0.51389444,-0.3106845,0.29310945,0.03837155,-0.07390659,0.3308863,-0.32647544,0.16916521,0.021498604,1.1307248,0.12648647,-0.021468094,-0.056115963,0.4833839,0.22782214,-0.14857273,-0.10947798,0.24171354,0.38703975,-0.17848007,-0.5561836,-0.13026746,-0.32530436,-0.2582974,-0.2339579,-0.3412061,0.13295032,-0.0085265385,-0.4008575,0.02222239,0.061630584,-0.4061435,0.3298545,-2.5520685,-0.20001051,-0.05442855,0.3102182,-0.061339088,-0.29820728,-0.31126875,-0.38823435,0.49347094,0.3730248,0.38260278,-0.5571769,0.6475776,0.41161856,-0.3863864,-0.10806847,-0.6813756,0.07906977,-0.11526235,0.3069137,-0.019034231,-0.12262833,-0.30491453,0.3511044,0.72628677,0.13283229,-0.07165742,0.16569135,0.51361233,-0.018841846,0.5686204,0.17061646,0.6032235,-0.14284791,-0.12424411,0.3307361,-0.33567217,0.19630419,-0.020605573,0.1802281,0.28132802,-0.58707553,-0.90053356,-0.5978937,-0.19144294,1.2396344,-0.3280047,-0.29016876,0.20743595,-0.10666716,-0.43387747,0.11714006,0.46397096,-0.25785384,-0.1576959,-0.71055734,-0.0018179034,-0.08113616,0.094314896,-0.03877463,0.16089404,-0.43104026,0.6299769,-0.14435744,0.5603681,0.36693308,0.22050102,0.04063999,-0.39828533,-0.0107818935,0.88783836,0.4043387,0.06429952,-0.16542833,-0.061476905,-0.28150377,0.069242366,0.04924398,0.687127,0.74621665,0.007421749,0.08837597,0.3885366,-0.11378402,-0.054837294,-0.13565575,-0.38137412,-0.017588003,0.17137241,0.6812646,0.5517407,-0.08365317,0.25396287,-0.086885944,0.22379544,-0.3049685,-0.5054984,0.47219205,0.6917697,-0.1803744,-0.30083826,0.60434806,0.4851906,-0.24241455,0.36863106,-0.46485695,-0.39100996,0.43899217,-0.08087588,-0.44139555,0.190051,-0.33680567,0.10548993,-0.8589496,0.2536872,-0.19502687,-0.6656535,-0.3934055,-0.16433266,-3.7431684,0.28844228,-0.17663145,-0.07082425,0.003159787,-0.1851007,0.43106732,-0.5288677,-0.4588937,0.007888266,0.078411974,0.49949613,-0.016007176,0.10166131,-0.2068727,-0.34869787,-0.30325958,0.13769475,0.17930166,0.17604157,0.07755579,-0.40501267,0.10198484,-0.36130455,-0.46053734,0.050078224,-0.41659886,-0.26577646,-0.057580434,-0.5016873,-0.30231968,0.7566935,-0.30809903,-0.08652667,-0.34324503,-0.01097118,-0.16648912,0.4598197,0.051553458,0.115766205,-0.008824672,0.007685326,-0.099122,-0.44470173,0.1856016,0.068858474,0.10536437,0.29382586,-0.047169633,0.075169936,0.6733281,0.5475166,0.00070750713,0.7863999,0.33595893,-0.07547349,0.25236887,-0.3252661,-0.42719245,-0.66205376,-0.37408462,-0.2801947,-0.49917945,-0.29618326,-0.08598212,-0.5193294,-0.8234764,0.45379406,0.020308955,0.10316348,-0.05404853,0.35013628,0.36786896,-0.051854126,0.07834131,0.11393224,-0.2532081,-0.4737161,-0.35264874,-0.6375543,-0.5365197,0.056631114,1.1778917,-0.23073888,-0.07786492,0.051710155,-0.23143546,0.20452131,0.019464804,0.23348467,0.30199528,0.34514594,-0.10714321,-0.79760796,0.15101947,-0.2587894,-0.14741835,-0.55018765,-0.080020264,0.8175689,-0.78448457,0.49012408,0.37924522,0.29255465,0.20641528,-0.61322606,-0.2971991,0.14415632,-0.21064404,0.7849043,0.21211283,-0.6850596,0.5649372,0.22458984,0.03365078,-0.56070405,0.49872175,-0.03987586,-0.25628063,0.0493154,0.3871265,0.0023994383,-0.14370047,-0.058460433,0.09392415,-0.39282137,0.2849162,0.32714358,-0.012620457,0.5373109,-0.23012808,-0.21094629,-0.595115,-0.2906849,-0.53811926,-0.23979361,-0.019980129,0.084396854,0.07940032,0.094345234,-0.10044738,0.5280526,-0.40134484,0.20983465,-0.19016387,-0.14743856,0.4162967,0.562293,0.25026378,-0.40641013,0.5547997,-0.03302518,0.014754193,-0.20665562,0.041873846,0.46830326,-0.017895665,0.36414242,-0.27552012,-0.08864653,0.23035584,0.6308711,0.109556556,0.2690883,0.23295514,-0.17443343,0.2704195,0.20957708,0.08711954,-0.025242975,-0.19750585,-0.115946785,-0.06752755,0.22369723,0.42987913,0.21026714,0.19457535,-0.14073119,-0.18099764,0.19342181,0.05542127,-0.132961,-1.1008551,0.46746174,0.04539763,0.5210269,0.5085668,0.07499652,-0.069720425,0.40288034,-0.23901953,-0.01165746,0.26299968,0.1306177,-0.34249535,0.4955218,-0.48955205,0.47342825,-0.18864958,0.01833855,0.13684419,0.09971703,0.43645737,0.9225138,-0.110543236,0.14336212,0.029608488,-0.21340421,0.011660546,-0.37036437,0.037637915,-0.55115044,-0.3387564,0.6917795,0.44971734,0.36026773,-0.26623592,-0.12943259,0.074465096,-0.27008963,0.02094104,-0.1912835,-0.21395716,-0.08680211,-0.61330366,-0.2509682,0.4542572,0.22600552,-0.074492626,0.07100151,-0.26471975,0.37354925,-0.028839128,0.07749466,0.022784602,-0.5501529,-0.113961525,-0.38500944,-0.35900062,0.27435437,-0.4006982,0.18583557,0.13544616,-0.0044741714,-0.14635244,0.18703993,0.24792446,0.64227784,0.049864184,0.0063256538,-0.26676273,0.066635825,0.28825697,-0.21134436,-0.29634887,-0.53722537,0.23768513,-0.61220604,0.34917387,-0.2230154,-0.08920104,-0.073011056,-0.10776632,0.08691665,0.42659453,-0.30786297,-0.03852092,0.070662804,0.05845248,-0.34152454,-0.15875128,-0.39532542,0.13736561,-0.0072896904,-0.11115072,0.07821464,-0.1390359,-0.056287177,0.46196643,0.20538117,0.265367,0.25003722,0.019506028,-0.263324,-0.034600895,-0.1283542,0.37179115,0.06584926,-0.13070993,-0.33322778,-0.3340138,-0.2219241,0.3477982,-0.10832284,0.053895824,0.030023456,-0.2213249,0.75751895,0.27356872,1.1671171,0.0121666575,-0.3295532,-0.018078277,0.60782117,-0.046189975,0.039640512,-0.23544142,0.86176836,0.6460865,-0.28613573,-0.12487374,-0.39147946,-0.24454126,0.12918815,-0.32992026,-0.35040167,-0.16527882,-0.5265399,-0.21030642,0.13317141,0.205985,0.056963716,0.008912499,0.0198817,0.05554056,0.13087982,0.35929778,-0.4826558,0.06572947,0.284943,0.19584033,0.055996396,0.22354157,-0.40785939,0.4360562,-0.7168269,0.11829821,-0.39903656,0.109807685,-0.017781338,-0.40443665,0.21813937,0.043142147,0.34368724,-0.31319502,-0.24237445,-0.23347668,0.5599159,0.14067402,0.2631994,0.5468596,-0.19715439,-0.037367456,0.04702552,0.51013935,1.3143559,0.030802522,-0.14595166,0.3672455,-0.27754903,-0.5840538,-0.020214552,-0.5582407,-0.068909,-0.041686464,-0.37034512,-0.34511757,0.35508293,0.14772223,0.013100207,0.0075994944,-0.46249747,-0.20816827,0.3442616,-0.13190742,-0.26300666,-0.2658689,0.19967565,0.53227425,-0.3982481,-0.36887938,-0.107613854,0.36710343,-0.18025623,-0.6802047,0.08460663,-0.31519952,0.43064648,0.28021044,-0.21340616,-0.053091083,0.26260728,-0.3993998,0.042007107,0.33934426,-0.3693988,0.027364489,-0.27724108,-0.0476172,0.8777547,0.07613747,0.12547459,-0.59745973,-0.4620605,-0.89636964,-0.36547503,0.24010031,0.20185892,-0.04771971,-0.60068935,-0.006566054,-0.19654155,0.094827734,0.07439291,-0.31501958,0.43056494,0.05732092,0.6217616,-0.0941463,-0.91472924,-0.019456562,0.16692637,-0.40081486,-0.50864476,0.56439704,-0.0131161045,0.7193707,0.08872662,0.05700623,0.029319618,-0.52148014,0.30017185,-0.40823784,-0.112309635,-0.69407356,0.103124306 -708,0.46161285,-0.41840595,-0.4894437,-0.12007296,-0.29079464,-0.0141175045,-0.33405703,0.35594085,0.20341153,-0.1473827,0.037102196,-0.19495685,0.0922425,0.5646807,-0.053659447,-0.6941519,-0.10015347,0.175842,-0.66294384,0.5423805,-0.48820665,0.20749314,-0.048033457,0.48424548,0.12232899,0.22442698,0.18942425,-0.07802006,-0.0432294,0.00548986,-0.14738424,0.27978107,-0.63681537,0.057782035,-0.2062959,-0.3202858,-0.025270155,-0.33480287,-0.53424746,-0.8251193,0.28515294,-0.8824306,0.6223682,0.0056108236,-0.42386574,0.2738609,0.069628194,0.31734422,-0.33013725,0.08959716,0.23221026,-0.12347996,0.03693477,-0.2751641,-0.25067285,-0.43027854,-0.53145754,0.032530095,-0.60503626,-0.10056448,-0.3487389,0.050873913,-0.36090404,-0.080679454,-0.017367464,0.29539722,-0.5389765,0.1421401,0.19785728,-0.03692318,0.48864192,-0.37777573,0.011022717,-0.17403993,0.22891347,-0.19107379,-0.31692198,0.47059423,0.21615234,0.5162412,-0.10396368,-0.22027089,-0.21397422,-0.04208089,0.2387033,0.4837833,-0.120928206,-0.5846182,-0.17310564,0.05696008,0.229754,0.20888928,-0.09376978,-0.3772752,-0.056571133,-0.033978518,-0.08173429,0.5127884,0.54139745,-0.18081915,-0.34148484,0.33742967,0.5239422,0.300783,-0.025402326,0.06977353,0.05900308,-0.606568,-0.17350508,0.16218415,-0.14711395,0.4161614,-0.18215634,0.25262132,0.69895643,-0.3010647,-0.07579982,-0.03495301,0.1475273,-0.07442439,-0.13027848,-0.22735497,0.18978672,-0.5030332,0.10082054,-0.114484586,0.727411,0.28286755,-0.77268493,0.36947337,-0.5801878,0.18310387,-0.17844772,0.46240166,0.8152942,0.45564574,0.2407439,0.7290869,-0.43381125,0.17207967,-0.06839687,-0.4703753,0.17163834,-0.303978,-0.11655388,-0.6083103,-0.13082455,-0.123257585,-0.13780366,0.10276421,0.43941647,-0.4761622,-0.027178418,0.07772561,0.87501097,-0.3619783,0.091616236,0.6772607,0.82387966,1.0686637,0.060745563,1.1978923,0.48915443,-0.19862936,0.26299438,-0.3379565,-0.89207774,0.3499619,0.40518734,-0.11345839,0.37175855,-0.0769582,-0.0432435,0.36024687,-0.45134035,-0.011901029,-0.28753275,0.35373512,0.021101091,-0.12356254,-0.43931597,-0.23554243,-0.14569093,0.14850077,-0.047462743,0.29700318,-0.27474317,0.39181206,-0.10180984,1.7158874,-0.0432378,0.020456646,0.0067613125,0.6655016,0.34737262,-0.1199217,-0.21963826,0.40928128,0.5024318,0.17772116,-0.63928664,0.070808284,-0.2777648,-0.33765936,-0.25159267,-0.4010138,0.1514179,-0.025140366,-0.35472903,-0.11024121,0.0330402,-0.2043535,0.5258099,-2.4295154,-0.24205944,-0.090073586,0.30875593,-0.2852983,-0.22895236,-0.18446973,-0.542966,0.4732538,0.36219385,0.5845851,-0.61226565,0.24882309,0.43939263,-0.5811078,-0.005498026,-0.57125413,-0.25513536,-0.013518184,0.45535606,0.037027467,-0.002774294,0.06040094,0.34079763,0.5041296,-0.060110617,0.04515981,0.23914792,0.47123787,0.008474375,0.31983152,-0.14202921,0.4213381,-0.35889846,-0.21497048,0.37746826,-0.11793144,0.17623207,-0.13094391,0.09295504,0.5030091,-0.561556,-1.074982,-0.6772918,-0.1708653,1.1631584,-0.33648762,-0.5517942,0.2769031,-0.24801074,-0.1516495,-0.025583152,0.38585955,-0.17368329,0.016610775,-0.83570117,0.11098728,0.08924588,0.2960799,0.08499158,0.0012742153,-0.2496738,0.6029459,-0.094870165,0.1522832,0.30824643,0.1909175,-0.24004495,-0.5620938,0.12479354,0.85426795,0.34434208,0.20797603,-0.33188847,-0.32818142,-0.22616246,-0.112352096,-0.01220469,0.4615079,0.7999788,-0.19337884,0.1587462,0.22426479,-0.08410752,0.02865326,-0.14630063,-0.38687468,-0.046375293,0.11773548,0.59365445,0.6402255,-0.15215883,0.6016942,-0.17323466,0.24251021,-0.010883545,-0.5758134,0.5744323,1.2786477,-0.10016961,-0.22393467,0.54775757,0.3521294,-0.40706617,0.538315,-0.6266752,-0.35820267,0.55062443,-0.27709147,-0.46925783,0.29407176,-0.28849274,0.028036179,-0.8146642,0.45798138,-0.2115452,-0.4723803,-0.53627056,-0.045351595,-3.501631,0.25911304,-0.22358835,-0.21029194,-0.03727936,-0.07640338,0.25417545,-0.4409925,-0.52546483,0.20474449,0.05337284,0.6604063,-0.07618807,0.19363543,-0.24701364,-0.15447028,-0.508601,0.125353,0.21354617,0.3861966,-0.015790116,-0.6411455,-0.120215654,-0.11523248,-0.5188498,0.14395416,-0.6596521,-0.41421345,-0.3086808,-0.6332095,-0.13290167,0.6397359,-0.16280961,0.0363431,-0.31560868,-0.03040185,-0.04306829,0.37693027,0.25736114,0.11194629,0.117511205,0.01105197,-0.11323416,-0.2900651,0.251104,0.14181344,0.157716,0.16395462,-0.021728098,0.11094781,0.7035659,0.6528144,-0.12682042,0.7891764,0.6239683,-0.14600189,0.37697092,-0.2869875,-0.2601459,-0.5125917,-0.36389396,-0.13883318,-0.47282907,-0.3966655,-0.12960298,-0.35586086,-0.6440229,0.5761862,-0.06310286,0.14369254,0.013492976,0.17195709,0.42217064,-0.19711031,-0.0154896015,-0.2127244,-0.20208241,-0.5724903,-0.21136226,-0.6296056,-0.5635732,0.12342842,1.0082654,-0.18870807,-0.07973907,-0.15066762,-0.26604575,0.041240036,0.005407359,-0.13834989,0.27113074,0.23036265,0.03807888,-0.8096402,0.4694269,0.08522372,-0.032299094,-0.71951973,0.11408358,0.7160791,-0.60145086,0.505421,0.16859949,0.04320274,-0.07778738,-0.5812343,-0.38649172,0.066710204,-0.1308059,0.41768265,0.07905864,-0.6333977,0.5354429,0.3491962,-0.5225717,-0.763223,0.43166715,0.040761773,-0.3435289,0.045081913,0.2592748,-0.09553615,0.05942407,-0.4179104,0.38770074,-0.31891474,0.30074006,0.21693714,-0.03434623,0.35218254,-0.15833327,-0.20396705,-0.79082876,-0.068194784,-0.46308276,-0.3825895,0.23559335,0.057255767,-0.05073201,0.047059946,0.023776975,0.3931487,-0.24018203,0.05736431,-0.10045176,-0.26466006,0.3751791,0.4330009,0.55551875,-0.4545093,0.63027763,0.08396589,-0.26365852,0.03779975,0.055090625,0.47507355,0.0984652,0.3640768,0.0740696,-0.17539401,0.3193419,0.83463776,0.13476558,0.5225782,0.060030792,-0.14478649,0.27589843,0.25269863,0.21681902,-0.018029992,-0.3234627,0.036020167,-0.1936358,0.1366588,0.5810967,0.18885486,0.24692185,-0.07392376,-0.37691522,0.03810214,0.16077788,0.18207906,-1.3722323,0.29089254,0.30607954,0.7949009,0.44127974,-0.025913808,0.07609755,0.7304602,-0.16651008,0.037062902,0.25769135,-0.077721,-0.6352727,0.6044653,-0.79892385,0.47737673,-0.024099167,0.012480597,0.07193696,0.16960375,0.47815323,0.8166558,-0.23662938,0.0712223,-0.027515959,-0.36818868,0.22994454,-0.5045572,0.15424141,-0.5126244,-0.42435628,0.49062046,0.46809775,0.25363684,-0.22952025,0.0043605417,0.018672032,-0.15267174,0.165858,0.040225618,-0.02461561,-0.14251499,-0.77670085,-0.13093397,0.6011614,0.14044169,0.16051278,-0.070081875,-0.014411466,0.23342092,-0.30180377,-0.04849429,-0.090473376,-0.7844663,-0.07109165,-0.27364483,-0.27069643,0.49972102,-0.15362433,0.24335337,0.17553934,0.012621357,-0.3805792,0.41050932,0.05668214,0.9524084,0.1332604,-0.22356729,-0.30631548,0.17909871,0.21237242,-0.19074419,0.018889215,-0.20499508,-0.3133431,-0.56170976,0.44468608,-0.10154472,-0.4232244,0.2429439,-0.22218733,0.057604473,0.5920988,-0.07570319,-0.26359913,-0.2137377,-0.20013078,-0.34664997,-0.2556751,-0.05779425,0.27157974,0.35343948,-0.18638436,-0.094674654,-0.011419172,-0.09637103,0.6786413,-0.07175435,0.3613048,0.27065635,0.32640243,-0.27018952,-0.0646201,0.23711093,0.5462877,0.18718617,0.0057768673,-0.20011589,-0.38907346,-0.35296777,-0.0730448,-0.23227946,0.25337973,-0.0007772882,-0.38981023,0.7763956,0.12799354,1.2130226,0.03569058,-0.24497195,0.28013822,0.5367604,0.11683072,-0.032165226,-0.49263558,0.83518684,0.54161054,-0.059745338,-0.15445063,-0.42660978,-0.15732439,0.1853225,-0.23276125,-0.14776826,-0.1314244,-0.6306942,-0.300392,0.27245092,0.2716557,0.15025766,-0.13145842,0.017262971,0.22382013,0.040037982,0.25930876,-0.442138,-0.003141864,0.3535107,0.29934385,0.08321047,0.11323593,-0.44467854,0.3116863,-0.33374962,0.14246558,-0.22546844,0.20123161,-0.13747475,-0.34527802,0.21642314,0.124267206,0.30214483,-0.37768942,-0.3393278,-0.24125531,0.63633996,0.18801497,0.13899796,0.5254116,-0.2868939,0.1416844,0.110217944,0.34041256,0.9683837,-0.45663786,-0.04074892,0.41539627,-0.4395046,-0.6741353,0.5196458,-0.22943969,0.19009747,-0.089817286,-0.36368936,-0.5663159,0.29186234,0.02160651,0.09352805,-0.08455818,-0.49506202,-0.09002358,0.35614875,-0.11861372,-0.24739696,-0.42975146,0.20766076,0.6320933,-0.28192255,-0.36029416,0.3047609,0.10653323,-0.2826604,-0.42543703,-0.1251319,-0.30707815,0.18920746,0.08800442,-0.31077486,-0.03554504,0.0921829,-0.53608096,0.14345,0.10003103,-0.42867765,0.08024323,-0.14275561,-0.115780585,1.0135565,-0.4687979,0.0376481,-0.69961154,-0.46912012,-0.9564952,-0.22289558,0.823096,0.23288305,0.084456705,-0.68759906,0.004117689,-0.045776922,-0.060406577,0.02546393,-0.4638198,0.30600116,0.03610245,0.35819393,-0.101659,-0.7915268,0.24072659,0.10968806,-0.38535732,-0.744883,0.54514366,-0.11031564,0.77332276,-0.0039008579,0.17751084,0.36461115,-0.4289162,-0.03228271,-0.20681787,-0.3120521,-0.58847004,0.09216038 -709,0.5338311,-0.12789077,-0.42834195,-0.10513975,-0.3129265,0.068509415,-0.093813166,0.4929866,0.14777862,-0.29456767,-0.17980894,-0.091091946,-0.0025065723,0.25435743,-0.12133292,-0.5370038,-0.007936306,0.13608818,-0.46827084,0.681625,-0.40286532,0.32325676,-0.09331531,0.20567471,0.06591655,0.2959761,0.1186592,-0.20903614,-0.12083696,0.0024147015,-0.21603954,0.21856654,-0.5690762,0.23792616,-0.11452717,-0.2736864,0.13607247,-0.28657272,-0.33695912,-0.6480641,0.22058119,-0.5411328,0.4584716,0.056957603,-0.20081109,0.13361886,-0.0631275,0.34233138,-0.31349486,0.11702332,0.23446816,0.057474058,-0.04955449,-0.11124918,-0.17093532,-0.45126092,-0.53314203,0.023305327,-0.33009952,-0.11635086,-0.18421385,0.10234238,-0.30475104,-0.12598862,-0.18138762,0.36853886,-0.5106847,-0.023444148,0.21271153,0.0028255172,0.2741217,-0.567102,0.034656305,-0.16475663,0.25370955,-0.19823101,-0.2496726,0.3232701,0.3199147,0.56306297,-0.012404431,-0.2301149,-0.20516849,-0.117783606,0.24371812,0.46145502,-0.12576644,-0.6136813,-0.08885108,0.024294876,0.19976385,0.123813435,0.0070327288,-0.45722598,-0.06585335,0.13490665,-0.15130673,0.26848274,0.45597082,-0.310337,-0.28970075,0.39019352,0.7102686,0.19255795,-0.024395507,-0.045379907,-0.06782378,-0.49475,-0.2541993,0.17229697,-0.2839024,0.48558939,-0.11353946,0.13302413,0.58163977,-0.16365324,-0.060063116,0.2043288,0.01843375,-0.07197831,-0.1456249,-0.32323325,0.0709868,-0.5835634,0.04106815,-0.062176343,0.66531,0.27688715,-0.78630376,0.32830432,-0.46449175,0.17443861,-0.18903594,0.5441974,0.73507416,0.3945425,0.246601,0.8044486,-0.52887267,0.18236019,-0.028265618,-0.39207286,0.15629983,-0.21786109,-0.20704052,-0.6054013,-0.03706599,0.028705683,-0.13459022,-0.036116708,0.11456406,-0.65964586,-0.0025629066,0.026861005,0.76846135,-0.3282353,-0.019689284,0.5463315,0.88317215,0.973319,0.09144756,1.2851807,0.11699591,-0.29506811,0.2802503,-0.47910726,-0.69703823,0.21123901,0.40820125,-0.30116463,0.30703583,0.060837872,0.02499117,0.41069242,-0.44280884,0.09567462,-0.18965127,0.39348248,-0.004428182,-0.18866915,-0.34602025,-0.27442825,-0.056360178,0.12693283,-0.114995,0.3844476,-0.23340556,0.12077355,0.100050285,1.6938524,0.0017431863,-0.0119689265,0.05217155,0.40053236,0.17037517,-0.1533505,-0.12002069,0.32271355,0.36050987,0.16415668,-0.5157261,0.087714255,-0.27971518,-0.5399605,-0.12832364,-0.26964143,0.060983192,-0.077087656,-0.34896883,-0.0715854,-0.07125488,-0.17623194,0.6847477,-2.6617632,-0.101670936,-0.12406626,0.16270041,-0.31769508,-0.36954004,-0.13209246,-0.59922993,0.32004738,0.3226368,0.54285836,-0.789596,0.3076424,0.25867522,-0.5095018,-0.014753934,-0.660982,-0.12294578,0.03639877,0.34495145,0.0943556,-0.06053768,0.0023720562,0.11297977,0.39576373,-0.05007297,0.06758695,0.16796014,0.35594946,0.19633721,0.4276132,0.02474337,0.5270604,-0.12879032,-0.073758006,0.34354958,-0.22156194,0.32761195,-0.15652613,0.046560436,0.329766,-0.39955738,-0.8847754,-0.7521204,-0.21128732,1.0952585,-0.14086075,-0.35333228,0.2347568,-0.2743016,-0.13844034,-0.16449147,0.25402707,-0.16685158,-0.17603451,-0.80583894,0.20064606,0.032924697,0.16429038,0.013335751,0.0034360262,-0.33961084,0.5731243,-0.021353358,0.4774146,0.43792656,0.10193079,-0.008547984,-0.4105692,-0.059081424,0.9092526,0.4724045,0.07422369,-0.122973494,-0.13282758,-0.44117904,-0.038602646,0.08751778,0.4363521,0.75356346,-0.096320644,0.035893116,0.29416257,0.05837003,-0.015750099,-0.1598733,-0.40510637,-0.020810515,-0.060821578,0.48487648,0.6031858,-0.29294837,0.46444184,-0.09007314,0.09531483,-0.0051758923,-0.5730043,0.60595995,0.99929404,-0.20387754,-0.13987736,0.46156722,0.43535417,-0.25190908,0.4568776,-0.57961154,-0.18314077,0.43322,-0.1015097,-0.2713416,0.1505304,-0.32392538,0.17937031,-0.8082393,0.47138906,-0.28624582,-0.4596148,-0.46110773,-0.07974216,-3.000403,0.22888671,-0.25360882,-0.12899132,-0.0057604834,0.046802957,0.15173082,-0.59490025,-0.60047925,0.24739194,0.136198,0.54714155,-0.056323852,0.031486776,-0.16596062,-0.26141846,-0.3640299,0.08906753,0.06991436,0.34729517,0.0034742206,-0.53087366,-0.14083478,-0.20038882,-0.3938445,0.1651445,-0.6350508,-0.41685617,-0.17239232,-0.5695923,-0.36565512,0.70285434,-0.25087568,0.002836932,-0.17226101,-0.012580998,-0.13035476,0.3315093,0.08065632,0.017024072,0.00090919994,0.010050016,-0.020733885,-0.30616948,0.198801,0.113368526,0.29381078,0.30858925,-0.021642417,0.24662031,0.58388346,0.64754534,-0.051303342,0.7676703,0.63456076,-0.2895732,0.3141148,-0.40117878,-0.17663848,-0.46492222,-0.48862478,-0.18652518,-0.4828965,-0.3974653,0.074695736,-0.41270825,-0.69591963,0.33638352,-0.047259774,0.16680506,0.0030645225,0.17517796,0.54421204,-0.24696742,0.060453385,-0.09123316,-0.17399389,-0.60552317,-0.27963892,-0.6792518,-0.42521006,0.26443505,1.2126573,-0.27848583,-0.12511511,-0.02846893,-0.17604496,0.060506925,0.11801249,-0.16981494,0.1572389,0.34433192,-0.14042181,-0.6872914,0.42476177,0.009692945,0.0038916487,-0.49288154,0.1369467,0.52736866,-0.65700537,0.39293194,0.29267114,0.071658894,0.10765894,-0.46908778,-0.19043155,-0.040574387,-0.19718625,0.4338428,0.07435425,-0.61251175,0.3974621,0.3666648,-0.29710126,-0.6242873,0.51116365,0.0031591123,-0.21697521,0.029114857,0.35378337,0.10454248,-0.035113666,-0.2564329,0.23020162,-0.47204322,0.25890994,0.43833423,-0.110517785,0.13061199,-0.094242774,-0.28630942,-0.7862731,-0.11669645,-0.4742674,-0.26732764,0.23236986,0.12298706,0.08201061,-0.037166804,0.25956503,0.41144678,-0.29498586,0.10151767,-0.0016935989,-0.23688333,0.35230303,0.4114504,0.38489568,-0.393211,0.44156513,0.023766503,-0.093196504,-0.19543765,0.049252175,0.39078075,0.15827143,0.33936986,0.025883384,-0.19772232,0.31636405,0.7420827,0.21263725,0.25514615,-0.107004,-0.25556254,0.1927207,0.107798636,0.2738872,0.15021667,-0.43588364,0.05205785,0.07027576,0.19802493,0.41669214,0.22362064,0.19851668,-0.04761107,-0.29988593,0.031575676,0.116176315,-0.037094094,-1.277654,0.48400298,0.26211327,0.6894467,0.6356657,0.0033141896,-0.009561133,0.46711105,-0.17282525,0.22920276,0.41131797,-0.12866677,-0.4982588,0.45659068,-0.6340278,0.50240064,0.00054584444,0.045759633,0.080510594,-0.07785387,0.28765845,0.85398424,-0.24754754,0.04447779,-0.20064494,-0.24242783,0.15995052,-0.27496243,0.03537947,-0.6379193,-0.37481388,0.67205656,0.44974893,0.3302781,-0.088963404,-0.024429651,0.16537058,-0.15766996,0.25629124,-0.024264324,0.19972417,0.11343292,-0.6364416,-0.17124662,0.5189347,-0.24478585,0.03777919,-0.039933167,-0.16866487,0.1680516,-0.3413539,-0.017714158,0.005634738,-0.5727585,-0.047602728,-0.16670889,-0.1310648,0.60719275,-0.037628904,0.21798433,0.11155168,0.07520627,-0.27248478,0.4197775,0.06006964,0.66541123,-0.1261548,-0.16500105,-0.40060866,0.15485163,0.18933032,-0.14977759,0.048791442,-0.12447107,0.00908722,-0.60682416,0.4309718,0.10820372,-0.23480234,0.041047722,-0.24156734,0.025390686,0.5137106,-0.13802525,-0.2659763,-0.13685137,-0.12295436,-0.16655454,-0.18075933,-0.15576825,0.21916418,0.27191716,0.054710053,-0.08592764,-0.12991637,-0.1685456,0.3992925,0.059943527,0.19325608,0.19348699,0.071188994,-0.45061716,-0.21802315,0.093329914,0.3061721,-0.06080942,-0.11886223,-0.25866958,-0.35010263,-0.38133943,-0.10218012,-0.19678244,0.37834376,0.07389634,-0.2433385,0.68438065,0.08642289,1.416324,0.08768973,-0.24286957,-0.025149794,0.64342195,0.095390886,-0.032975204,-0.30082136,0.851165,0.5399097,-0.034458067,-0.2057074,-0.36783817,-0.11001865,0.11884646,-0.14604388,-0.02339517,0.018989675,-0.47845444,-0.39471805,0.31498113,0.16565982,0.16100197,0.0028891228,-0.11388924,0.1725555,0.049733117,0.2693784,-0.332812,-0.14261183,0.25904447,0.22866577,0.16632155,0.13956492,-0.5346517,0.37616703,-0.4943024,0.12761056,-0.08093878,0.18573661,-0.24108958,-0.22068076,0.19753768,0.0910486,0.27523565,-0.29251492,-0.5565233,-0.26812878,0.58790064,0.14666101,0.2214549,0.7293645,-0.26531196,-0.06811139,0.0018925071,0.4519425,0.9923396,-0.26997417,-0.09224387,0.47941494,-0.20478073,-0.5609967,0.2922341,-0.25925773,0.13901696,0.03750571,-0.27929094,-0.5865785,0.24492744,0.12444312,0.11238284,-0.00260311,-0.6582551,-0.18056445,0.11488658,-0.2565805,-0.25805375,-0.33920377,0.38419586,0.8345099,-0.49445093,-0.33854586,0.17551552,0.17265564,-0.20915763,-0.42185187,-0.1139905,-0.38543677,0.28031465,0.20975296,-0.36333388,-0.100766644,0.21526377,-0.37582582,0.095094316,0.17998648,-0.4319276,0.19295576,-0.24938154,-0.08772221,0.90262914,-0.18651468,0.13873887,-0.38177016,-0.3157933,-0.8011882,-0.31241888,0.44313532,0.19945167,-0.0377519,-0.62653553,0.0051639993,0.059038144,-0.01955675,-0.121219814,-0.30600208,0.53418106,0.08818586,0.27310246,-0.09472078,-0.83522576,0.039754186,0.093709126,-0.10277929,-0.4642893,0.4671207,-0.047380608,0.8166529,0.07659845,0.12025292,0.26293027,-0.4646215,-0.0688921,-0.2728821,-0.14038223,-0.65191567,0.10299489 -710,0.23793477,-0.2978302,-0.3655396,-0.2060988,-0.30797598,-0.11384609,-0.14689589,0.47778973,0.18826987,-0.08994768,-0.15265249,-0.028209042,0.05026316,0.39591807,-0.19251312,-0.48020718,-0.17902015,0.04042634,-0.55150634,0.46197766,-0.54085666,0.22362041,0.07137367,0.40224773,0.05923197,0.45574766,0.21733013,-0.07931493,-0.04330205,-0.13583122,-0.15449204,0.14546442,-0.36655,0.16550438,-0.2573838,-0.26044595,0.12255852,-0.49820906,-0.22656193,-0.6437905,0.025909,-0.77393156,0.38823843,-0.09485766,-0.19589844,-0.0798724,0.15296635,0.26506796,-0.32682475,-0.02462686,0.22963199,-0.014898593,0.03749827,-0.230538,0.06044113,-0.37597707,-0.37270373,-0.050333582,-0.5073904,-0.33749813,0.07030428,0.16155224,-0.29427117,-0.013776746,-0.07248811,0.2988866,-0.5180055,-0.20075302,0.2963378,-0.31875262,0.413076,-0.44289705,0.039573677,-0.093494035,0.41192514,-0.044136986,-0.15689631,0.34498787,0.22913498,0.24422485,0.13373451,-0.16066235,-0.19939454,-0.16876332,0.009563979,0.5186345,-0.1425458,-0.34042376,-0.20822407,0.08281089,0.23547283,0.29914215,-0.003358364,-0.15973479,-0.07081521,-0.22081415,-0.25377294,0.24855289,0.40831712,-0.19416425,-0.1708271,0.28830895,0.44508445,0.24543849,-0.23913865,0.006968995,0.029299699,-0.43676335,-0.19783612,-0.06843474,4.3241183e-05,0.5727365,-0.0745803,0.23718157,0.82445335,0.004358999,0.07088869,-0.03829509,0.037777748,-0.2737251,-0.2290174,-0.18314981,0.12717214,-0.4280952,-0.0023462295,-0.15326767,0.620599,0.1385965,-0.7497031,0.38785404,-0.47466433,0.0570656,-0.14641415,0.48108524,0.41219845,0.45386398,0.28918427,0.6973169,-0.22353704,0.22193232,0.03642823,-0.4013344,0.16188702,-0.26692703,-0.07146694,-0.5231914,0.09770228,0.01828771,-0.0029339015,0.048993647,0.07476115,-0.5693115,0.017014734,0.26385203,0.69891185,-0.2523588,0.0006720185,0.6856804,1.1661084,0.932326,-0.08137739,0.9448731,0.21361008,-0.14205144,0.14459713,-0.2366205,-0.61723554,0.14574696,0.48551998,0.08388639,0.31219858,-0.10625922,-0.08163151,0.3331056,-0.37238416,0.15197872,-0.031427823,0.21464255,0.061274584,-0.08507123,-0.6256055,-0.2534028,-0.01568189,-0.03024354,-0.025231838,0.22124979,-0.14252421,0.4575841,-0.07721744,1.3683665,0.04441126,0.101260886,0.12429353,0.6678206,0.24239798,-0.11069355,-0.0911409,0.45749295,0.32669163,0.07356727,-0.46088448,0.27137095,-0.21519896,-0.48457572,-0.091399916,-0.35517344,-0.05215629,0.016221225,-0.5080875,-0.07620093,-0.019836264,-0.1694295,0.36255616,-3.1404216,-0.16976443,-0.14876355,0.2480655,-0.31256148,-0.067394845,0.07233342,-0.38766614,0.15537475,0.40634745,0.49935195,-0.6248957,0.43963477,0.47745928,-0.45413637,-0.15656003,-0.6483045,-0.11239942,0.0055248877,0.49055487,0.21145551,-0.012914258,-0.09545849,0.2292674,0.5500408,-0.0052716257,0.23104955,0.26023203,0.2771389,0.17437474,0.4129291,-0.025852561,0.5266641,-0.25795856,-0.059994545,0.25460684,-0.31984475,0.18534428,-0.042962693,0.13084717,0.42079926,-0.41611168,-0.81953883,-0.5231504,-0.23858973,1.1005569,-0.2621988,-0.3476296,0.26053545,-0.08221087,-0.1324737,0.045682847,0.42808226,-0.08663012,0.26943004,-0.6003067,0.047074936,-0.046940327,0.09727899,0.02936886,-0.088833876,-0.3680359,0.58382404,0.037558675,0.627534,0.3782392,0.22894846,-0.13704659,-0.44378802,0.0096980175,0.6068022,0.3679971,-0.016245993,-0.09139827,-0.08087607,-0.13353808,-0.1445988,0.074172825,0.44063243,0.7886329,-0.030330746,0.20931609,0.22805396,-0.06619803,-0.03766795,0.011963457,-0.15538791,0.0780693,0.15321033,0.41583106,0.7366775,-0.13966434,0.37156144,-0.25191107,0.5384905,-0.13412446,-0.5272364,0.49267787,0.34339148,-0.18698606,0.022707429,0.49307984,0.533502,-0.37529135,0.45357043,-0.5985474,-0.25046477,0.5658896,-0.08227156,-0.50131375,0.24069694,-0.1777183,0.2647502,-0.94067025,0.42860425,-0.19081637,-0.503857,-0.4207656,-0.16856335,-3.331393,0.10820345,-0.113601066,-0.31773463,-0.16630952,-0.100077525,0.2740826,-0.753852,-0.57544935,0.14415391,0.21359688,0.45276424,-0.0782467,0.09662101,-0.30996737,-0.037352163,-0.103683926,0.2567443,0.016061282,0.24799684,-0.20222244,-0.48289046,-0.22873798,-0.12943381,-0.56985855,0.23128933,-0.5684865,-0.4416134,-0.08335241,-0.5426847,-0.30311388,0.52663475,-0.21783844,-0.0015186071,-0.15436457,0.06720631,-0.23042059,0.18158156,0.15134212,0.16167404,0.050728373,0.0539516,0.19290093,-0.3321659,0.43067196,0.09925048,0.4520925,0.12702154,-0.013174681,0.17516966,0.6694689,0.5058075,-0.22132029,0.83425105,0.38901773,-0.16199675,0.31603327,-0.32883006,-0.24939059,-0.4707529,-0.4525741,0.020199755,-0.3129429,-0.5722443,0.030697938,-0.31637323,-0.70741767,0.5671177,0.010318637,0.24586469,0.011114661,-0.02115932,0.34373203,-0.25068215,0.03841049,-0.007576847,-0.06057871,-0.53085285,-0.22522071,-0.6644772,-0.5185447,-0.024846554,0.9288973,-0.24787532,0.07780741,-0.067658044,-0.318294,0.026176574,-0.06142307,0.116121426,0.3117648,0.20226319,-0.12194004,-0.6765203,0.449142,0.007867475,-0.07783943,-0.2761911,0.029753255,0.65250504,-0.7083649,0.40205663,0.4320304,0.0590822,-0.08447259,-0.4648837,-0.24620768,-0.14250214,-0.087862454,0.5644321,0.06565532,-0.68623126,0.51176465,0.20664324,-0.50633705,-0.588569,0.37934774,-0.17664273,-0.13549943,-0.06093847,0.2179109,-0.041865848,-0.15078357,-0.21571757,0.1751043,-0.4118578,0.2886864,0.25522268,0.06442637,0.47152632,-0.053666994,-0.12487765,-0.6503207,-0.1261934,-0.48534736,-0.18569228,0.33277708,-0.034555867,-0.043387644,0.07520156,-0.013738632,0.29717445,-0.3163851,0.041378837,0.17832834,-0.31900558,0.32582673,0.43426034,0.38999864,-0.39136145,0.49117577,0.13654606,-0.08674031,0.040579736,-0.110405,0.361389,0.029076863,0.31978887,-0.1922055,-0.0860887,0.39277795,0.6566204,0.2292323,0.3630254,0.02029155,-0.16834483,0.37442666,-0.020819085,0.19625483,0.12344352,-0.39213684,0.0794984,-0.17401733,0.17860132,0.38609028,0.2741877,0.29057586,0.06295325,-0.25077638,0.09326114,0.26750273,-0.11814501,-1.0923055,0.4195502,0.32042268,0.6943073,0.37281996,0.2361022,-0.17277762,0.8330742,-0.27462435,0.08642847,0.46259883,0.10863238,-0.58462864,0.72872823,-0.6352965,0.5123861,-0.09813051,-0.14706819,0.15127906,0.03826561,0.4234742,0.6414758,-0.085553214,0.036432333,-0.0770853,-0.23786946,-0.094312504,-0.3579262,-0.017106665,-0.40930966,-0.28096533,0.66216093,0.38831243,0.29163787,-0.07591912,-0.01208152,0.13675158,-0.032130435,0.32412472,-0.031890605,0.031100333,0.0250765,-0.51680225,-0.27219746,0.5775246,0.013039694,0.13724677,-0.21826704,-0.33014542,0.02258555,-0.22387631,-0.083906285,0.026589947,-0.5543786,0.17492512,-0.12503447,-0.34882373,0.47227702,-0.31718883,0.17314757,0.0116795935,-0.06887092,-0.11279834,0.08124984,0.010263809,0.75573903,-0.06869482,-0.24642546,-0.29535723,0.06545138,0.20409432,-0.21490236,-0.037215054,-0.4916774,0.0045722644,-0.44905415,0.5251303,-0.017236432,-0.42057997,0.16840288,-0.16168836,-0.01127015,0.46881562,0.023359282,-0.19230385,-0.12178023,0.058254745,-0.40425694,0.041349567,-0.36995474,0.2800477,0.4123902,-0.07899479,-0.005551553,-0.12679024,-0.0020229022,0.56006646,0.0021698454,0.52424365,0.1728956,-0.14442594,-0.30340013,0.03318247,0.03847972,0.37996933,0.15159398,0.12345989,-0.3858249,-0.32973588,-0.222013,0.033625007,-0.1663861,0.23832722,0.083905704,-0.082177326,0.8240543,-0.047305703,1.2667607,0.015614617,-0.37679163,0.11386483,0.46610492,0.033441897,0.09888799,-0.4289061,1.0029887,0.5996069,-0.18938036,-0.1276219,-0.42768273,-0.15648855,0.28921586,-0.27156743,-0.16222209,-0.033521056,-0.61114806,-0.28009272,0.2829885,0.10125878,0.18345697,0.037101578,0.0052063465,0.034986593,0.14752078,0.2801746,-0.52255493,-0.18604419,0.29562065,0.25956902,-0.06535555,-0.0076437513,-0.5528849,0.41892183,-0.5341741,0.21278086,-0.42340043,0.13978793,-0.28508556,-0.3976794,0.030481128,-0.11410994,0.40016273,-0.30937874,-0.47795781,-0.013568107,0.47627822,-0.024730342,0.118995205,0.53349584,-0.23821998,0.096938476,0.023488993,0.47053063,1.0410255,-0.48056936,0.008765173,0.4117119,-0.35334054,-0.6610399,0.27158397,-0.23329268,0.030910682,-0.17315902,-0.40057033,-0.57400876,0.3279995,0.25278002,-0.0046439585,-0.0034665545,-0.42578843,-0.08338138,0.2926783,-0.3531212,-0.3192983,-0.38823375,0.3084935,0.57581717,-0.32146925,-0.4956177,0.04737904,0.24951905,-0.24862902,-0.43365568,-0.038491275,-0.10829022,0.30432796,0.13745359,-0.34474528,-0.1017722,0.12897785,-0.32530835,0.17332926,0.24634714,-0.3188991,0.15173998,-0.26792696,-0.03710859,0.93661475,-0.17714325,-0.1886551,-0.6360249,-0.48023865,-0.87326556,-0.5804106,0.2893248,0.2572122,-0.07889876,-0.3687776,0.056411073,-0.09053046,-0.16284439,-0.12413833,-0.40312836,0.41151544,0.095059805,0.49370018,-0.27872363,-0.7398558,0.17724332,0.20026551,-0.058807336,-0.54892653,0.57225317,-0.056961436,0.7678428,0.0770229,-0.0099396445,0.08047212,-0.25765976,0.06181907,-0.33295745,-0.14376752,-0.6214222,0.086626105 -711,0.5911949,-0.35413978,-0.67656314,-0.011729882,-0.45889723,0.12720288,-0.5233584,0.24229428,0.27479738,-0.3435592,-0.14552918,0.1486965,-0.09380333,0.19721791,-0.05029334,-0.53761095,-0.16854127,0.20969811,-0.7805211,0.45377868,-0.4319987,0.3937958,0.042605978,0.41450164,0.16062142,0.24775778,-0.17440858,0.085569315,0.055416528,-0.3045471,0.13376491,0.20608854,-0.6869369,0.0828272,-0.34655377,-0.5715733,-0.106085315,-0.50932926,-0.27028844,-0.7650346,0.21284397,-0.83372855,0.78172404,0.019455548,-0.28708577,-0.10973577,0.13871376,0.3520824,-0.12070424,0.19387676,0.39505112,-0.25972268,-0.13478811,-0.37185276,-0.04983404,-0.28614438,-0.37812364,-0.11638471,-0.52945703,-0.060093597,0.057478283,0.2186025,-0.21695386,0.012603063,-0.34902653,0.22854097,-0.42529482,0.12000414,0.2663067,-0.052610524,0.31045416,-0.8681543,-0.037996586,0.021800641,0.4771166,-0.0020865821,-0.2979843,0.18302028,0.22467814,0.460159,0.09794827,-0.20468841,-0.21759978,-0.06269194,0.07527898,0.51554066,-0.29842076,-0.0016073355,-0.2224931,0.027021408,0.67174935,0.27717298,0.07861277,-0.30788553,0.12359493,-0.2360593,-0.0071211685,0.54651016,0.511098,-0.2002903,-0.1316432,0.08471613,0.6647333,0.6041666,-0.13046572,0.058304384,-0.02264741,-0.48774546,-0.1951814,0.17986885,-0.08411242,0.29786447,0.035387937,0.27811623,0.5233199,-0.033638284,-0.036348574,0.25099784,0.0020263286,0.047540035,-0.21729437,-0.32866624,0.2550593,-0.70674634,0.11534555,-0.37137258,0.46517196,-0.07349547,-0.72128487,0.33467716,-0.8155848,0.0071715494,-0.03470812,0.5664497,0.8792854,0.62901837,0.124738656,0.8299418,-0.23157032,0.11145957,-0.1313937,-0.0586425,0.053196806,-0.17310025,0.05187971,-0.48226908,0.096336566,-0.42385265,0.12943381,0.09251705,0.5054853,-0.60934806,-0.22422288,0.1706991,0.7039067,-0.2523929,0.23382658,0.86406446,1.0869697,1.0366391,0.14526585,1.1690427,0.23933126,-0.37129623,-0.21858515,-0.101040855,-0.7218028,0.28291973,0.39922053,-0.27528745,0.4707224,-0.13190451,-0.07813485,0.45705524,-0.41687855,-0.10414762,0.02232268,0.2213947,0.05926256,-0.19612744,-0.38184926,-0.071701005,-0.005117655,-0.025868008,0.05861892,0.27055416,-0.4556349,0.38399032,0.056113675,1.0895412,-0.3421966,0.02271042,0.0978607,0.19033456,0.3302043,-0.25546622,-0.035483398,0.24704236,0.62063086,-0.12856454,-0.68786114,0.23483308,-0.3764953,-0.25351068,-0.21141602,-0.12721263,-0.4269849,0.05009144,-0.5007888,-0.4321815,-0.0776405,-0.18559355,0.2963016,-2.4370775,-0.3183516,-0.060347285,0.43001807,-0.1874999,-0.32507798,-0.25132176,-0.4185785,0.29923576,0.08908992,0.42420498,-0.5104719,0.66134304,0.591308,-0.71891505,-0.19877894,-0.5728904,-0.13289176,0.21072839,0.3096577,-0.042092945,-0.21484232,-0.13920356,0.09025641,0.6845078,-0.123890765,0.082642235,0.50932324,0.60648125,-0.17129168,0.4527827,-0.094123654,0.5210105,-0.5559014,-0.29469994,0.45428964,-0.32141754,0.26989722,-0.15133919,0.10342272,0.6397858,-0.3987159,-0.85449374,-0.5416345,-0.10725303,1.1765239,-0.16669606,-0.6647823,0.0139869405,-0.58405936,-0.30094534,0.09939992,0.7028498,-0.09615544,-0.0269134,-0.8422935,-0.12367685,-0.27261335,0.25931776,-0.040041428,-0.08517302,-0.40252203,0.76189834,0.093179375,0.68410844,0.29288423,0.3094084,-0.020346714,-0.32487154,0.09752585,0.7783237,0.51020324,0.12774526,-0.30892685,0.036772277,-0.09547519,0.08513296,-0.059507515,0.7609705,0.6000676,-0.14309503,0.18445134,0.22906163,-0.033075936,0.14074597,-0.2896629,-0.29498267,-0.21225788,0.11960257,0.3651017,0.7782641,0.06891317,0.4755179,-0.13250653,0.2217675,-0.25551358,-0.6046419,0.6594407,0.55100656,-0.2735727,-0.1510809,0.5622213,0.5040399,-0.36605915,0.5989308,-0.73299986,-0.2867956,0.48295778,-0.20044996,-0.36703154,0.4358013,-0.41964495,0.3169235,-0.8788404,0.3273165,-0.6024911,-0.41260195,-0.58204854,-0.12031199,-1.9854035,0.38920182,-0.13656977,-0.01117445,-0.5555917,-0.34633937,0.44036838,-0.55116594,-0.7981419,0.08722332,0.27458385,0.66368353,-0.13641798,0.054829735,-0.09484902,-0.50701725,0.0068349103,0.3229631,0.27349246,0.2167528,-0.17593433,-0.20628269,-0.13304873,0.027023673,-0.33272326,-0.037606824,-0.632526,-0.47462657,-0.028761042,-0.25230834,-0.04867391,0.5236451,-0.35909384,0.037977118,-0.23092367,0.06567307,-0.06537801,0.24241808,0.055704415,0.28411868,0.16250221,-0.23414591,0.11549937,-0.2661413,0.4072378,0.0013995629,0.1558147,0.24799468,-0.16105278,0.24879558,0.38860592,0.77376115,-0.1965631,1.12998,0.383421,-0.14950444,0.40001196,-0.3644662,-0.48922032,-0.6282419,-0.07712039,0.15336493,-0.42806333,-0.5449783,0.15564601,-0.33923626,-0.81389356,0.523062,0.04723215,0.22287863,0.110333495,0.5325031,0.47564924,-0.2612868,-0.1505323,0.0067946683,-0.20451857,-0.32415283,-0.30307814,-0.6804393,-0.44592777,-0.22281338,1.152241,-0.31087434,0.2574647,0.2731241,-0.2254776,0.3132617,0.21084929,0.079347305,0.057862025,0.53041947,0.23247483,-0.586157,0.15411904,-0.05009701,-0.21467106,-0.50586617,0.190174,0.8113946,-0.69103825,0.45704255,0.39867088,-0.01396715,-0.26377204,-0.6147556,0.0807703,0.19260715,-0.2536078,0.5580982,0.38145286,-0.5953767,0.4462587,0.55456096,-0.3441653,-0.78629017,0.33687618,0.0013327805,-0.3306726,-0.30384344,0.38800937,0.09917349,-0.081347294,0.04577744,0.36241052,-0.36570853,0.30214658,-0.0145853115,-0.22311746,-0.0631729,-0.17608616,-0.34752655,-0.81972474,0.23972276,-0.5729573,-0.33894762,0.44403744,-0.17311737,0.15882652,0.25319755,0.434571,0.5404866,-0.34132355,0.14523098,-0.26722175,-0.32123607,0.31462896,0.5141619,0.37138286,-0.32554504,0.45936483,0.22545862,-0.20199493,0.2262472,0.23347941,0.4163648,-0.09370173,0.4853986,-0.23895751,-0.09384468,0.22622274,0.8657125,0.10151983,0.31751567,-0.0919387,-0.08132999,0.17829807,0.018157529,0.25480425,-0.16356991,-0.38432354,-0.059001062,0.034234848,0.11769143,0.552426,0.2738221,0.08233272,-0.115304515,-0.26893875,0.014026402,0.34450838,0.06836863,-1.40904,0.55677646,0.13590196,0.9518706,0.37696567,0.14164215,0.08128222,0.50282836,-0.12726344,-0.013200856,0.41127807,0.07937591,-0.3259083,0.5549772,-0.6414208,0.20653501,-0.20292066,0.10394998,0.112847365,-0.17845678,0.47068384,0.8837125,-0.20338629,0.04450921,0.060924727,-0.19076237,-0.17319737,-0.20768763,-0.08468197,-0.44034922,-0.4887717,0.9852159,0.37746164,0.53247255,-0.37798983,0.0007077925,0.118840806,-0.17159043,0.2604969,0.05891156,0.06678819,-0.0076713655,-0.42153835,0.081813246,0.5308394,0.041797932,0.02449164,-0.28502968,-0.4046964,0.14102203,-0.13402681,0.22613311,-0.03224412,-0.822493,0.10989387,-0.7452383,-0.6699235,0.2698145,0.13386303,-0.19108142,0.22444136,0.033703543,-0.080048166,0.47303337,-0.039490435,0.8156471,0.034011327,-0.1575459,-0.25292134,0.34399727,0.23104899,-0.28548077,-0.02038516,-0.19682533,0.3632212,-0.4072792,0.59619737,-0.13721357,-0.39901072,0.21476921,-0.04669273,-0.033338785,0.5687256,-0.25167757,-0.1971665,0.15343532,-0.14848374,-0.48488215,-0.37830713,-0.26929218,0.02957553,0.3652383,0.072992794,-0.26429054,-0.29167515,-0.22365211,0.49061635,0.16412526,0.5799059,0.52512544,0.07691279,-0.5032696,0.15410826,0.30699533,0.44597292,0.06250174,-0.13582171,-0.56960225,-0.55745876,-0.33813426,0.62495035,-0.13139313,0.22858664,-0.07835548,-0.29487276,1.1102958,0.10991435,0.965527,-0.018188788,-0.21350399,0.01291328,0.6346403,-0.40772963,-0.2253641,-0.5038686,0.85094684,0.61045015,-0.17712171,0.15951316,-0.30004138,-0.22507724,0.2167434,-0.49184275,0.1464095,-0.116584845,-0.6578475,-0.3692098,0.067323916,0.31769398,-0.106212266,-0.28255442,0.055388194,0.20524985,0.055053588,0.001191555,-0.7297313,-0.3589945,0.19077402,0.21842195,-0.24874566,0.14979483,-0.49800017,0.24947889,-0.7788089,0.08937478,-0.5409695,-0.005507366,0.055248603,-0.38448346,0.104499824,-0.06053555,0.11006764,-0.5462103,-0.26193103,-0.12219601,0.14716092,0.04806258,0.19440868,0.5528008,-0.26730582,0.105580375,0.15745163,0.62550133,1.0808463,-0.3541815,-0.071128726,0.3122315,-0.48148564,-0.55169785,0.19726685,-0.44932362,-0.030998083,-0.09400715,-0.33941796,-0.53677976,0.313822,0.15979594,0.21939278,-0.24875267,-0.8671147,-0.059749465,0.34758097,-0.2793847,-0.18452096,-0.2247383,0.14096166,0.73478186,-0.08326597,-0.35391235,0.016676486,0.44700396,-0.42545888,-0.4423683,0.2322935,-0.43259022,0.27850297,0.12763324,-0.29883254,-0.058774017,0.069993585,-0.7012682,0.048278477,0.27430418,-0.31298,-0.07495915,-0.3350518,0.13410926,0.8094936,-0.3471256,-0.24850717,-0.2425502,-0.55627626,-0.7906307,-0.2996759,-0.20844258,0.41538927,0.06942735,-0.74389374,0.2131571,-0.25408235,-0.27318484,-0.0009296353,-0.35506848,0.46215338,0.20807558,0.71800697,-0.48219875,-0.9671965,0.28310972,0.26175883,-0.26568592,-0.3907916,0.5105629,0.15062946,0.8866081,0.041925,-0.11369933,-0.1754292,-0.4727831,0.32052577,-0.21227987,-0.05604069,-0.95248544,-0.038519505 -712,0.60457456,-0.2569849,-0.55922097,-0.026534498,-0.2632171,0.099666074,-0.12123456,0.48357487,0.2614137,-0.38663173,0.047841273,-0.21609747,0.0786138,0.30915064,-0.12958422,-0.27548814,-0.042477407,0.120163836,-0.34016737,0.54256546,-0.49858037,0.23487377,-0.07947982,0.43573487,0.20654392,0.19376105,0.027759783,-0.09586414,-0.36292732,-0.18317473,-0.019526454,0.3581199,-0.3878224,0.2656045,-0.1438044,-0.2605402,0.09627888,-0.3348006,-0.46806794,-0.6383254,0.19407234,-0.70862013,0.48987904,-0.02825359,-0.2649992,0.043567497,0.014724668,0.25663915,-0.2393782,-0.0071988245,0.08059646,-0.108009696,0.0892077,-0.361694,-0.08683447,-0.30869764,-0.4182538,0.023594337,-0.35999292,-0.020393506,-0.3178959,0.14239863,-0.33244428,-0.061715126,-0.15822604,0.48196304,-0.47569823,0.2934976,0.031893946,-0.2139706,0.3339592,-0.5279446,-0.38245296,-0.15452453,0.09069473,-0.06446936,-0.29805186,0.3803357,0.3280095,0.32568124,-0.029302696,-0.051888857,-0.38167563,-0.071033545,0.19206765,0.5448199,-0.1786331,-0.5961563,-0.14043388,0.0152049735,0.11448808,0.25467968,0.13534662,-0.443143,-0.05296685,0.1621383,-0.28079456,0.39885965,0.49947897,-0.30698776,-0.04335323,0.2665314,0.4434956,0.30112118,-0.08524947,-0.17367503,0.025291367,-0.48277035,-0.14912285,0.07032203,-0.03232172,0.56398153,-0.15059815,0.22191393,0.5631998,-0.26228222,-0.1869493,0.1143238,0.12080992,-0.15430956,-0.2321524,-0.21119183,0.054037068,-0.39083037,0.12961021,-0.099688865,0.8251985,0.17201151,-0.5800328,0.41066262,-0.49513996,0.10987835,-0.15782443,0.39172435,0.52057916,0.4769085,0.41381317,0.68267006,-0.48607394,0.036440983,-0.18042126,-0.4355404,0.03133584,-0.20837165,-0.011469056,-0.4756735,-0.019912258,0.014175706,-0.13453506,0.04194237,0.56868416,-0.43384498,-0.1820127,0.034443315,0.759354,-0.31581184,-0.06746104,0.6169713,1.00512,1.0330719,0.14149754,1.092106,0.14841346,-0.1764996,0.20499732,-0.21469018,-0.6665523,0.35325387,0.36408293,0.05357852,0.087550685,0.052048415,-0.004981672,0.41233435,-0.22731951,-0.041714396,-0.15144837,0.4876349,0.21889785,-0.08854909,-0.25172293,-0.45362556,-0.092325926,0.014950919,-0.17068446,0.30567864,-0.21443598,0.4148693,0.07647992,1.8939313,-0.01574883,0.047459267,0.06955893,0.5598523,0.20508498,-0.17887037,-0.01340148,0.36617884,0.11185767,0.14300953,-0.40324405,0.15796089,-0.2820021,-0.66112334,0.02105959,-0.30536962,-0.17405331,0.006798029,-0.43712634,-0.25616884,-0.079593934,-0.19005121,0.5915308,-2.8251073,-0.2550037,-0.057229955,0.34420845,-0.29684424,-0.34639236,-0.041798204,-0.41693664,0.3218963,0.18689632,0.5863388,-0.80013037,0.1762159,0.3568969,-0.42728683,-0.22700924,-0.50505435,-0.01688559,-0.020336628,0.37478855,0.003550852,0.012817772,-0.020466426,0.012971198,0.44587266,-0.15093727,0.26221466,0.21874066,0.25829872,-0.055129543,0.5014718,-0.0518979,0.47727394,-0.29163623,-0.16162847,0.3454274,-0.31081977,0.33422866,-0.04138639,0.03721282,0.47101605,-0.44571954,-0.77475095,-0.59238684,-0.09335979,1.0124351,-0.15106097,-0.4820502,0.23114382,-0.434441,-0.22404091,-0.15478297,0.17008503,0.010542111,-0.10235329,-0.8098397,0.13832678,-0.060786612,0.12979968,8.45825e-05,0.019632297,-0.21787941,0.6034776,0.038537983,0.48404706,0.4414203,0.08733226,-0.290985,-0.37796745,0.028435914,0.6899028,0.39403725,0.25354844,-0.2784233,-0.22427927,-0.10638346,-0.12985128,0.2208531,0.4501887,0.47643393,-0.16052328,0.1526445,0.35629562,-0.04680012,-0.07540622,-0.12799941,-0.19393493,-0.07789874,0.077409,0.59759593,0.84225553,-0.10132119,0.4468212,-0.034278456,0.3094244,-0.12765773,-0.49735624,0.42220092,0.9627257,-0.16300637,-0.27877134,0.4166104,0.45510697,-0.2166405,0.30249962,-0.5080306,-0.24962509,0.40936375,-0.17755337,-0.36103794,0.20600589,-0.3249829,0.1138613,-0.7988613,0.37720296,-0.37965223,-0.41886926,-0.40644166,-0.22409202,-2.7298515,0.14371705,-0.25290698,-0.22332512,0.048338573,-0.19371097,0.06102898,-0.58481884,-0.47615147,0.0739532,0.06512467,0.5607553,-0.026490482,0.011553729,-0.1888088,-0.38637775,-0.3038489,0.051560584,0.07639942,0.45939398,-0.07530454,-0.52552557,0.0073139807,-0.113777235,-0.42987743,0.16977863,-0.52959913,-0.5973108,-0.14045997,-0.3989091,-0.5670831,0.5701345,-0.09060106,-0.049336083,-0.08314831,-0.040979743,-0.090904094,0.20711124,0.14058287,0.10695527,0.037130754,-0.018111601,-0.030707408,-0.31455117,0.1648928,0.019789554,0.27903655,0.44820496,-0.09237332,0.11657524,0.52964926,0.5596741,-0.1496931,0.7630367,0.4202949,-0.13810475,0.24711691,-0.29983717,-0.31924087,-0.47835344,-0.38173366,0.056489542,-0.42928934,-0.47800535,-0.020506522,-0.31384602,-0.5282636,0.6073808,0.07361457,0.05312886,-0.01641553,0.1028847,0.52063674,-0.24559078,-0.11477193,0.07005339,-0.15455589,-0.7833445,-0.36063343,-0.68376374,-0.5166393,0.22376992,1.0564057,-0.22362351,-0.1540047,0.1414111,-0.3200276,0.013711171,-0.021364963,-0.015043042,0.061782986,0.3395773,-0.19444525,-0.56585956,0.36997834,-0.07758239,-0.1145704,-0.4726512,0.2919429,0.65373176,-0.47100055,0.6174645,0.25037226,0.27660853,-0.11024089,-0.48308113,-0.24852332,-0.020767776,-0.25312793,0.46936435,0.23128891,-0.7636037,0.38999933,0.44371328,-0.36112866,-0.68714905,0.48697338,-0.048256915,-0.29369673,-0.103976786,0.3033289,0.197529,-0.019370118,-0.044530813,0.31942874,-0.55079263,0.32569513,0.2980069,-0.12606129,0.13996083,-0.14030948,-0.21361756,-0.7169039,-0.031191755,-0.29102948,-0.37306938,0.22341366,0.049973805,0.043585766,0.011953536,0.19634283,0.31135833,-0.29667267,0.02556473,-0.084973805,-0.12292458,0.38285172,0.39472997,0.62047726,-0.25174946,0.5242551,-0.021650363,0.021041587,-0.08495782,0.039683063,0.27713794,0.20412877,0.26373017,0.026772654,-0.26073286,0.26938006,0.9370922,0.15405762,0.34503597,-0.06659728,-0.21087085,0.17784211,0.109186344,0.40680197,0.025077732,-0.46039242,0.07335985,-0.27229053,0.18750092,0.39190847,0.18785623,0.16094881,-0.11669407,-0.43982378,-0.020410016,0.15203288,0.02227847,-1.274206,0.30018687,0.203547,0.79282033,0.40418363,0.030677183,0.029997122,0.6834822,-0.22013938,0.056641906,0.31136277,-0.11421897,-0.47973856,0.35310978,-0.8334171,0.48990273,-0.021419033,-0.0077121495,-0.016652234,-0.03070717,0.4841078,0.7471474,-0.13355206,-0.065164566,0.13754486,-0.38089752,0.027593596,-0.4257196,-0.062092394,-0.6948191,-0.32775936,0.629581,0.45716664,0.36427274,-0.18982531,-0.017442338,0.11704105,-0.1499137,0.25758797,0.08008203,0.19075476,-0.08221617,-0.68194795,-0.17329523,0.5577378,-0.027246486,0.19279666,-0.06144336,-0.14552186,0.28403676,-0.1736807,-0.055169724,-0.02562939,-0.57411265,-0.06099848,-0.32881707,-0.34743086,0.4845406,-0.019407105,0.30421904,0.17620698,0.061525345,-0.16416521,0.5277269,0.115380555,0.76024145,-0.06172,-0.18709534,-0.4513002,0.072662205,0.19158694,-0.047236674,-0.08842031,-0.100104526,-0.13564211,-0.51799154,0.5048921,0.060543958,-0.17178264,0.073667064,-0.042148978,0.08278168,0.55482394,-0.078834385,-0.31332448,-0.20834559,-0.09648549,-0.39520785,-0.097364195,0.05731901,0.20157206,0.35420984,-0.01219638,-0.018587593,-0.18381795,0.037172437,0.3406175,0.026460953,0.2910663,0.2707987,0.20115043,-0.3656721,-0.18842298,0.17227656,0.5569874,-0.015650261,-0.002495706,-0.31609133,-0.4683047,-0.44085574,-0.0019509512,-0.18339598,0.33718756,0.10744818,-0.35084897,0.6736462,-0.19365534,1.1615878,0.13864493,-0.17913735,0.031763386,0.47076702,-0.018158495,0.06902944,-0.19912276,0.7717292,0.4733563,-0.11810721,-0.26430488,-0.33025575,0.015162528,0.10529524,-0.22363287,-0.062094957,0.03647546,-0.6038675,-0.14379437,0.16426751,0.1969821,0.14189787,-0.10611615,0.024958229,0.30747825,0.10983616,0.2868438,-0.27079865,-0.24221471,0.31660533,0.4017391,0.04730228,0.03078874,-0.47540855,0.3509842,-0.38243422,0.25405815,-0.16857454,0.18875785,-0.2236998,-0.22790034,0.2400378,-0.091703966,0.29307982,-0.31536406,-0.2954119,-0.19192132,0.4399336,0.07123932,0.14155675,0.65633214,-0.18245015,-0.109520875,0.15652996,0.33434695,1.0591154,-0.31240618,-0.17171386,0.54612845,-0.35948378,-0.5470019,0.3628879,-0.18194146,0.12838975,0.046447486,-0.12204027,-0.6617314,0.2201521,0.21800268,0.05626372,-0.07994256,-0.68849576,0.032380566,0.3495661,-0.4537615,-0.16871484,-0.30603135,0.03582902,0.5088722,-0.20201616,-0.36889198,0.19626418,0.18479216,-0.28381371,-0.33802,-0.05287595,-0.3699458,0.29386026,0.043909226,-0.26314917,-0.11175687,0.22441557,-0.41740862,-0.052016962,0.06481371,-0.35161814,0.12800202,-0.43970618,-0.040009744,0.92202353,-0.28148532,0.366524,-0.3942206,-0.36424458,-0.6862892,-0.22920653,0.48666024,-0.06785393,-0.011206156,-0.6525728,-0.15447581,0.07805464,-0.40198243,-0.28866932,-0.45090657,0.56068486,0.06702018,0.14690375,-0.028157908,-0.6688617,0.22825934,0.13329144,-0.08684117,-0.5026479,0.5571373,-0.16474326,0.71520334,0.07523103,0.030354276,0.3790227,-0.4172191,0.1098209,-0.21779922,-0.18690886,-0.58428144,0.032317422 -713,0.2897386,-0.0653636,-0.54967886,-0.25778183,-0.40396816,0.013098713,-0.19694011,0.34753057,0.22445768,-0.23619352,-0.11045224,0.07190839,0.06276489,0.38980496,-0.20935099,-0.8052607,0.082830645,0.072436616,-0.5653654,0.46320355,-0.47947294,0.3131791,-0.008450489,0.4304869,0.22326075,0.21500164,0.20691933,0.15393299,-0.08001904,-0.043919053,-0.15558296,0.48023728,-0.50485367,0.083000325,-0.007978062,-0.39869696,-0.1757149,-0.31929424,-0.34383425,-0.7046009,0.43602467,-0.81158423,0.52750033,-0.12079469,-0.3205334,-0.08883139,0.18447603,0.15800427,-0.32733217,0.07998301,0.13808122,-0.30682638,-0.09550492,-0.1220111,-0.21896298,-0.42686376,-0.63600945,-0.08343957,-0.5665807,-0.14742592,-0.2800012,0.21307555,-0.4037848,0.036817018,-0.17116645,0.63217056,-0.43435898,0.09824646,0.16066526,-0.27168533,-0.10228803,-0.59647995,-0.23696381,-0.12083681,0.16462107,0.089339875,-0.24038784,0.3121069,0.43826592,0.46203312,-0.025575329,-0.26638553,-0.42416576,-0.06918519,0.13892923,0.42538872,-0.08825013,-0.45577902,-0.15933374,-0.049228933,0.22969583,0.1861779,0.036584813,-0.3306406,-0.033592995,0.051463228,-0.17807145,0.4174821,0.50431746,-0.3584257,-0.06592277,0.31454846,0.14448422,0.22263649,-0.37763363,0.22139683,-0.07047705,-0.5846532,-0.21525456,-0.09027299,-0.12730871,0.65013015,-0.20268965,0.249736,0.691708,0.07996753,0.024007542,-0.18757467,-0.09022756,0.056446988,-0.28185967,-0.20377465,0.1374052,-0.2926493,0.26173845,-0.062294208,0.65568894,0.14628497,-0.7620009,0.46203777,-0.47636002,0.099197164,-0.14817214,0.513959,0.87386996,0.27470347,0.34516498,0.9056622,-0.38140506,-0.019765079,0.17898388,-0.44700432,0.09100677,-0.09119916,0.08360731,-0.4612787,0.10865496,0.014956625,0.015959,0.22417802,0.5867621,-0.30274722,-0.09844808,0.05208103,0.7666557,-0.33265242,-0.13233691,0.94314575,1.0323488,1.0641057,0.1283441,1.1751659,0.26391765,-0.07788725,-0.027911352,-0.16959292,-0.5882334,0.1416653,0.3490856,0.19202614,0.24881032,0.16420145,0.04554647,0.55806834,-0.2540409,-0.11623521,-0.096415475,0.20434093,0.16105442,-0.15012044,-0.47623655,-0.29578528,0.16019152,0.17852671,-0.04354047,0.21654695,-0.08296106,0.5669591,0.0012631745,1.2130847,0.13561843,-0.0112983985,0.11819215,0.35193202,0.31519106,-0.15598541,-0.087375514,0.16564165,0.4085204,-0.011057655,-0.58537745,0.059946127,-0.3552496,-0.5267847,-0.12523317,-0.380866,-0.17300081,-0.012506338,-0.6042769,-0.2129086,0.1700396,-0.28637755,0.51581854,-2.5979736,-0.1568395,-0.26460177,0.26630288,-0.048077844,-0.31186196,-0.26208606,-0.44967762,0.2903394,0.4210593,0.3709134,-0.6344248,0.3579745,0.30227214,-0.3269016,0.023463488,-0.64112014,-0.019081729,-0.086558685,0.38384208,0.014193598,-0.11224453,0.056811936,0.31255102,0.8066134,0.04194794,0.053609755,0.17666534,0.4011664,-0.25497988,0.60283214,-0.044156563,0.59208876,-0.16146396,-0.24397373,0.32599458,-0.44299355,0.1924931,-0.075417005,0.22502504,0.539895,-0.4460763,-1.0084684,-0.5068258,-0.25752822,1.1448784,-0.32481652,-0.4892594,0.3864303,-0.26110238,-0.35697454,-0.017581582,0.7015046,-0.24510354,-0.028250601,-0.71292096,0.02671923,-0.17733675,0.081181064,-0.13518336,0.06639557,-0.36410508,0.81564623,-0.11607455,0.46907482,0.32554963,0.1798907,-0.21002518,-0.40624803,0.11390838,0.61553943,0.48798034,0.035001025,-0.24947108,-0.10593479,-0.04106764,-0.27092502,0.118644826,0.78436667,0.5560085,-0.013544449,0.11142946,0.23234764,-0.059159495,-0.01689709,-0.17838846,-0.2609621,-0.055803392,0.12302125,0.5708927,0.6921869,-0.20234394,0.35288522,-0.06614355,0.37269047,-0.088185444,-0.62985843,0.39877102,1.0163645,-0.11232189,-0.35009727,0.534923,0.35659775,-0.37296686,0.30553743,-0.4941832,-0.2354365,0.5226953,-0.11762035,-0.45812744,0.15289481,-0.43925196,0.05066753,-0.82313824,0.33534202,-0.012561751,-0.59512407,-0.6007176,-0.4399862,-3.8608592,0.10150755,-0.2770025,-0.08555014,-0.19545715,-0.3569852,0.3399099,-0.6634296,-0.70006317,0.108250536,0.10642416,0.43550044,-0.15564696,0.07856002,-0.25322327,-0.22319008,-0.104737476,0.27357042,0.19240499,0.43784288,0.058784895,-0.30929363,0.047362726,-0.19387381,-0.6689642,-0.13223259,-0.47063676,-0.5672404,-0.080484085,-0.45575818,-0.29707673,0.7663378,-0.47164762,-0.009278384,-0.2740495,-0.028165009,-0.27667373,0.3328536,0.23026298,0.24238399,0.02250442,0.059647758,0.003700161,-0.29089886,0.16971566,-0.079089165,0.28754237,0.32209155,-0.05220167,0.18698241,0.58112276,0.6351767,-0.06458604,0.88619137,0.34586778,-0.08623656,0.23779544,-0.2718651,-0.33837318,-0.75666237,-0.39887196,-0.07036889,-0.50213104,-0.40570387,-0.21432592,-0.42715454,-0.78811365,0.42917755,-0.04480408,0.1280192,-0.099438936,0.22913337,0.34633687,-0.05643362,-0.020577295,0.06700679,-0.21402387,-0.534886,-0.43186495,-0.5836246,-0.6535275,-0.07725009,1.1526109,-0.10071612,-0.20244838,0.024514139,-0.4900299,0.054013718,0.12584296,0.24600464,0.20607004,0.32689103,-0.097403474,-0.7318233,0.4089815,-0.40415016,-0.052964304,-0.6754719,-0.0543164,0.5455472,-0.51145387,0.6864483,0.38275704,0.28357792,-0.020530695,-0.7548855,-0.35062358,0.17489369,-0.15922333,0.6003925,0.41082364,-0.6801397,0.58536667,0.11453178,-0.060508028,-0.5241709,0.48597828,-0.099839404,-0.10491757,0.11206242,0.36726868,0.019207733,-0.12756878,0.0032202562,0.25142297,-0.40561897,0.2724244,0.29983565,0.05426283,0.40812632,-0.05645915,-0.099351026,-0.61003524,-0.23857364,-0.5240139,-0.16435668,0.0066658426,-0.0135211265,0.307634,-0.050336376,-0.122304216,0.3587382,-0.29003558,0.16536382,-0.2782959,-0.2666486,0.22752933,0.59629184,0.35367012,-0.5303993,0.64873576,0.114875644,0.12978026,0.05244534,0.073032506,0.43398476,0.19070151,0.42345592,-0.10761595,-0.044424765,0.035144422,1.0112257,0.21876322,0.39576072,0.11008462,-0.24432391,0.25628197,0.11505675,0.16909051,-0.09480178,-0.30794188,-0.03763008,-0.19047277,0.25405172,0.44010168,0.13013035,0.31127134,-0.19847043,-0.15131623,0.24393772,0.24985774,0.059436195,-1.3092924,0.4715,0.17980017,0.8844213,0.45486307,0.11710019,-0.093825296,0.56711835,-0.23293659,0.04333271,0.34391662,0.11361725,-0.29195195,0.49779433,-0.59928954,0.49238098,-0.16617543,-0.018137034,-0.049502358,0.27252692,0.30234355,0.7299057,-0.10645377,0.06222037,0.17465569,-0.29629317,0.151496,-0.31181708,0.05407759,-0.45064184,-0.3032568,0.660389,0.63281983,0.2918604,-0.322198,-0.096317194,0.0066708815,-0.14124115,-0.02471133,-0.11619703,-0.0244807,-0.19970234,-0.71188384,-0.32800108,0.5323339,-0.14427319,0.116230965,0.14325333,-0.34794855,0.27845272,0.017912006,-0.13042563,-0.04690129,-0.5890653,-4.4938923e-05,-0.3416727,-0.6797621,0.3947479,-0.38258466,0.28582546,0.22073095,-0.022224482,-0.374548,0.13859306,0.06224273,0.8547576,-0.06941126,0.019635221,-0.27330506,-0.014842844,0.30653107,-0.27982613,-0.19099051,-0.3476316,0.2177495,-0.42447293,0.47001404,-0.33361468,-0.19050281,0.018603818,-0.089549445,0.07671353,0.4010768,-0.31596234,-0.16134503,0.14492317,0.093743995,-0.20832644,-0.1414601,-0.30994895,0.39077312,-0.084594496,0.021882867,0.042260442,-0.11567351,-0.18810008,0.37244514,-0.07658618,0.34171587,0.45711097,0.013676023,-0.2462823,-0.11136018,0.0392578,0.6664131,0.093442775,-0.15260759,-0.39004454,-0.50171626,-0.3596603,0.33508268,-0.094378114,0.17120765,0.15333547,-0.4834397,0.54512703,0.08171678,1.1194483,0.0027727922,-0.41128302,0.11880549,0.50860703,0.056456804,0.12893194,-0.092045434,0.80014557,0.48043364,-0.23996204,-0.18650159,-0.36710814,0.03431317,0.19002037,-0.21740466,-0.2346818,-0.08773976,-0.70606554,-0.015758378,0.010289001,0.14585224,0.1185557,-0.03778388,-0.017237466,0.036660895,0.15097809,0.38700932,-0.45378983,0.036296036,0.36365932,0.19310719,-0.026949601,0.18217334,-0.37111273,0.34081313,-0.48592153,0.09456203,-0.6380366,0.27865633,-0.023902185,-0.25263652,0.23001696,-0.052615087,0.36726734,-0.25848493,-0.18079129,-0.31238016,0.65302366,0.10752421,0.16578348,0.60923386,-0.19349292,-0.022797693,0.21218435,0.61533844,1.3386607,-0.13072087,0.13043483,0.2218323,-0.3374993,-0.40412286,0.17916107,-0.4327674,-0.016726399,-0.046843525,-0.2196986,-0.520138,0.21629225,0.1361194,0.019627212,0.14756654,-0.44306576,-0.34478325,0.3528391,-0.3665268,-0.21891592,-0.41249722,0.18332635,0.55845565,-0.406498,-0.25688335,0.020432424,0.34458444,-0.16223142,-0.54658926,0.23551607,-0.29999307,0.42014542,0.048590794,-0.4677696,-0.13935548,0.3177562,-0.49230105,0.19327576,0.32324824,-0.28428096,0.16281945,-0.19743136,-0.11188594,1.1492939,-0.09541233,0.2377834,-0.6511364,-0.57300854,-1.0542147,-0.145693,0.1471956,0.19217834,-0.023208933,-0.69174206,-0.09571821,-0.04189396,0.047092248,0.07195749,-0.4892763,0.4661784,0.08043828,0.49777123,-0.02969786,-0.81627476,-0.068846986,0.015154132,-0.16080777,-0.3169295,0.58343035,0.03823326,0.7192385,0.13802646,0.08868788,-0.0017478188,-0.47654328,0.33346215,-0.281307,-0.23741843,-0.6799423,0.08802663 -714,0.298523,-0.015044625,-0.68726826,-0.12885049,-0.45439437,0.3378185,-0.35466462,0.07907583,0.19703916,-0.30588496,-0.016012678,-0.22798148,0.049942568,0.54633707,-0.043110803,-0.69617337,0.050349258,0.25692943,-0.6392212,0.22600533,-0.5500726,0.44505876,0.024323087,0.35613754,-0.065207556,0.30950844,0.31906444,-0.11658765,-0.14981195,0.0035855724,-0.22166927,0.22997902,-0.72457474,0.31953275,0.015134087,-0.46488577,0.0325768,-0.08517481,-0.18715283,-0.57708585,0.24038097,-0.83916676,0.48371536,-0.31958947,-0.36783308,0.07094849,0.057795487,0.4474792,-0.29787266,0.16794994,0.29520613,-0.3906502,-0.14591277,-0.2304847,-0.39135748,-0.63090867,-0.3905173,0.022713877,-0.62623954,-0.20539856,-0.30392793,0.39648262,-0.21089746,0.053970985,-0.16730994,0.19140953,-0.48951113,-0.021030609,0.258196,-0.33830076,0.11406161,-0.3485777,-0.17493857,-0.12545532,0.5600909,-0.12133508,-0.009451807,0.058547676,0.4079568,0.60483515,0.18958157,-0.21580066,-0.37448695,-0.20111537,0.28102753,0.5159186,-0.017677097,0.06251678,-0.31989956,-0.37362635,0.08870048,0.2411671,0.0029182457,-0.4699586,0.022929413,0.0049961554,-0.26447934,0.18996246,0.33914363,-0.5617397,-0.36645636,0.5015779,0.58275706,0.010608098,-0.2651645,0.2270012,-0.0025125844,-0.4900313,-0.21121743,0.28386736,0.062581494,0.6099109,-0.20951237,0.3715145,0.86001337,-0.15988249,0.08466517,-0.26774326,-0.09121297,-0.24988192,-0.15191747,0.10717824,0.129395,-0.4950924,-0.069060095,-0.14390345,0.6158732,-0.03727356,-0.6602843,0.44099873,-0.45740038,0.02633114,-0.2683403,0.6313807,0.67819273,0.31581062,-0.18081194,0.8752384,-0.50648504,0.07563936,-0.17078495,-0.4386249,0.16535076,-0.09437991,0.08378024,-0.41607168,0.13936259,0.10467354,0.157189,-0.041709542,0.44781813,-0.40895158,-0.08774051,0.026421657,0.5827998,-0.52257895,-0.078302585,0.79453593,0.9504081,0.88771087,0.07220857,1.6003045,0.5766937,-0.25490874,-0.1717546,-0.31782287,-0.43579647,0.11641259,0.22249728,0.25714976,0.24407178,0.18871957,0.17222008,0.60186505,0.012378106,0.12772626,-0.18966539,0.11290101,-0.10845295,-0.014559026,-0.37224212,-0.22938856,0.27908057,0.08939708,0.05552194,0.22069263,-0.088229015,0.5477471,0.115269646,1.4234399,-0.13573779,0.0970628,-0.17694455,0.24042922,0.14388624,-0.15740237,-0.08021738,0.17964461,0.25615126,-0.090902716,-0.50838506,-0.0022046475,-0.20980445,-0.5391787,-0.34185177,-0.34989807,-0.16247787,-0.10785984,-0.44278768,-0.08928064,0.28155252,-0.23813178,0.41168073,-2.3861327,-0.29142216,-0.22552808,0.14789067,-0.27755955,-0.23860429,-0.32764608,-0.46239343,0.3083129,0.42238793,0.35652888,-0.47487158,0.5726002,0.3651486,-0.22541107,-0.35019,-0.66839135,0.06323714,-0.11535348,0.32132256,-0.10205929,-0.2595307,-0.2570307,0.2027834,0.59541416,-0.266938,0.11183348,0.1581032,0.5496532,0.11678018,0.45099062,0.26928836,0.77642316,-0.30293658,-0.20785786,0.56547827,-0.397207,0.33558133,0.0065576984,0.27686208,0.31831694,-0.3798057,-0.9066888,-0.79327273,-0.36754328,1.1623496,-0.40005076,-0.5173487,0.22506557,0.102283254,-0.2825728,0.18315913,0.3544883,0.16718608,0.17771551,-0.74776256,0.15964761,-0.11667307,0.20461208,-0.12862657,0.07343589,-0.35085657,0.61486155,-0.23652537,0.26553714,0.5301155,0.32683533,-0.072178036,-0.24675696,0.113100655,0.95918024,0.24710988,0.09706863,-0.22478032,-0.40566042,-0.23220704,-0.2928524,0.06806532,0.4160047,0.6304601,0.09410202,0.21992296,0.26393378,-0.16859494,0.02176797,-0.15302218,-0.28699166,0.031146957,0.20272842,0.46781957,0.5482012,0.055267133,0.4741754,-0.14866517,0.14360963,-0.28852293,-0.64271647,0.5656216,0.5554071,-0.2293335,-0.226041,0.62800694,0.51450944,-0.45996714,0.40312296,-0.6041588,-0.42765233,0.52607936,-0.1503056,-0.42137715,0.08774029,-0.31362292,0.022472657,-0.8719861,0.16115086,-0.05677758,-0.53175926,-0.34571975,-0.2780046,-4.3604174,0.29547817,-0.058624275,-0.038097497,0.07341893,-0.21635844,0.46142828,-0.51520455,-0.5103156,0.059571024,-0.03990431,0.6055251,0.044815,0.14078826,-0.42678973,-0.058560636,-0.08842178,0.23933777,-0.0009480898,0.098344214,-0.04747983,-0.49658746,0.22070244,-0.46679607,-0.40619147,-0.08798301,-0.62297016,-0.4425643,-0.08379997,-0.36380294,-0.2890464,0.76002985,-0.6450017,0.017647224,-0.36751553,0.015992261,-0.32476467,0.44742516,0.20024434,0.13739693,0.3351827,0.014227627,-0.39892393,-0.39506274,0.1185238,0.044313055,0.076350264,0.49517256,-0.2339653,0.14165334,0.49074584,0.6611918,-0.04751279,0.6037557,0.11784606,-0.0843219,0.376004,-0.26512066,-0.15389758,-0.7065085,-0.48003387,-0.42303583,-0.54319066,-0.6392568,-0.22361849,-0.23120502,-0.7699965,0.58163214,0.22750789,0.10387499,-0.09285503,0.17982222,0.25902712,-0.18879986,-0.08759781,-0.22954069,-0.19825333,-0.47600478,-0.59543765,-0.68367606,-0.7503879,0.20961012,1.2074544,-0.14217228,-0.005929191,0.1805391,-0.4490684,0.060032226,0.29786456,0.27383092,0.051723022,0.42757097,-0.26334158,-0.76263195,0.4461028,-0.20606631,-0.018637188,-0.56651855,-0.055444207,0.7870875,-0.6684673,0.50718874,0.44779587,0.26375705,0.38409093,-0.40785143,-0.42029014,-0.024978079,-0.29675725,0.59864324,0.14354163,-0.69578445,0.46057191,0.151097,0.005530229,-0.64915174,0.48451474,0.06138357,-0.08380214,0.09380674,0.4393736,0.06880225,-0.063898765,-0.2623239,-0.012839689,-0.6044893,0.26213554,0.5170187,0.01099763,0.55253196,-0.12578422,-0.23566316,-0.57254,-0.25178513,-0.33177698,-0.14304067,-0.11351959,0.01334762,0.038496234,0.26197624,0.056148157,0.43049514,-0.6000795,0.124493666,-0.073844664,-0.26219016,0.20705792,0.44965237,0.3018215,-0.5721643,0.58396584,0.04378541,-0.054688863,-0.29347134,0.06127365,0.6002709,0.31464836,0.45875782,-0.11030522,-0.11854855,0.18476966,0.79051137,0.21096209,0.54119307,0.14876634,-0.33619136,0.29908818,0.2817121,0.1374858,-0.028908156,-0.20512104,0.047978923,-0.12125116,0.22932881,0.41536033,0.15372433,0.54500103,-0.048150975,-0.03633318,0.29967517,0.037591457,-0.07744224,-0.6939509,0.25775987,0.3921418,0.62030125,0.50601244,-0.072794504,0.044675827,0.35146728,-0.43639457,0.06455204,0.1393256,-0.08509271,-0.46331376,0.5616045,-0.6230558,0.3087211,-0.29313546,-0.1197282,0.30237538,0.19201387,0.28456295,0.88267094,0.007372549,0.19592318,0.060738586,-0.25003874,-0.015969148,-0.18282329,0.071203366,-0.5732507,-0.25164872,0.75234693,0.40531653,0.32673392,-0.3558386,-0.14326546,0.008485303,-0.05565869,0.08728123,-0.09065834,0.11941433,-0.08662963,-0.60348195,-0.3734778,0.5504313,0.04659631,0.14751925,0.17996153,-0.6225657,0.4084962,-0.2667189,0.005431815,0.020675374,-0.5369942,-0.07788041,-0.37416786,-0.50548214,0.34614402,-0.27772164,0.33537567,0.08592741,0.012819304,-0.26338255,0.29252222,0.011714311,0.8850618,0.21572474,-0.08549392,-0.2250634,0.039213043,0.45424703,-0.30644324,-0.15275644,-0.37845358,0.02363133,-0.47896722,0.30992332,-0.095791064,-0.14306706,0.2053036,-0.13264002,0.06307514,0.43392736,-0.044832144,-0.11172183,0.29783672,0.19672689,-0.32757586,0.118070126,-0.5263592,0.27775925,-0.124657355,0.07697832,-0.0024562431,-0.03841252,-0.12308775,0.21889885,0.08683545,0.054103997,0.3472238,-0.088137165,-0.29542968,0.009238165,-0.14883359,0.33185285,0.07207607,-0.050322197,-0.17327085,-0.46400008,-0.24523076,0.5118552,-0.0756267,0.033356167,0.11506227,-0.3730664,0.79491013,0.1910634,1.1480018,0.15006179,-0.4322427,0.26871198,0.41530785,0.09720179,0.2138645,-0.5265046,0.87857586,0.5481132,-0.24717866,-0.22857237,-0.40791062,-0.3822303,0.2844628,-0.30711606,-0.22338828,-0.062329214,-0.812497,-0.17420325,0.16524237,0.22282355,0.048147816,0.018817393,0.10511022,0.10266696,0.17484531,0.45540607,-0.62922984,-0.1760211,0.44430426,0.35619706,-0.21723829,0.16179863,-0.17314236,0.50997835,-0.8505974,0.073930904,-0.614617,0.016174283,-0.16032256,-0.25041157,0.30485076,0.19156075,0.33890015,-0.13032341,-0.30710417,-0.3065303,0.76979977,0.19669023,0.3594832,0.8513215,-0.2535991,-0.109984726,-0.06858463,0.3604963,1.1363304,-0.31994873,-0.017898945,0.5778333,-0.19896077,-0.5138885,0.20360468,-0.51517326,0.14213878,-0.004920075,-0.50011903,-0.2864785,0.42645153,0.123614974,-0.117235556,0.10837964,-0.39557445,0.095053345,0.3556627,-0.21197352,-0.35499433,-0.18858956,0.3897676,0.7065278,-0.41029838,-0.2621501,0.0339236,0.45159948,-0.41990164,-0.46051386,0.090808555,-0.2567385,0.5002744,0.2803524,-0.40137714,-0.030791782,0.27593768,-0.3507238,0.10611116,0.4690843,-0.23373798,0.21369937,-0.38171312,0.077348664,0.97507244,0.107096404,0.16904163,-0.7263899,-0.4943517,-0.96855426,-0.34398952,0.2910121,0.23972966,-0.061283,-0.3062968,-0.034084383,-0.17084503,0.07766008,0.25200745,-0.5134669,0.39423525,0.0758854,0.5905165,-0.06784003,-1.036497,-0.06257424,0.22678518,-0.30330056,-0.43905213,0.55091554,-0.5411428,0.7461165,0.114228025,0.11355449,0.21484734,-0.54394823,0.3954942,-0.37335655,-0.043772057,-0.91135436,-0.10351935 -715,0.40683353,-0.21876904,-0.46031412,0.01887957,-0.24530634,-0.0802124,-0.06437411,0.56107616,0.18276642,-0.52993554,-0.16747269,-0.22498778,-0.067110315,-0.052514687,-0.11298546,-0.12918091,-0.2501574,0.1921174,-0.58499223,0.5322774,-0.18578896,0.20597742,-0.12201762,0.4689408,0.25934747,0.3134685,-0.2732447,0.023822824,-0.06937267,-0.07692011,0.0076141558,0.2772489,-0.4005303,0.08261912,-0.30106992,-0.19404976,-0.012867729,-0.43475306,-0.52217805,-0.7779156,0.48982716,-0.9399992,0.501103,-0.0852774,-0.2978703,0.23893915,0.030280761,0.4566965,-0.08830762,-0.2098556,0.3061191,0.12588435,0.046819642,-0.28240842,-0.14503789,-0.15694325,-0.32535738,-0.030460278,-0.25520137,-0.13477196,-0.30926892,0.17384627,-0.25687084,0.0067334813,-0.2232149,0.47435218,-0.45812595,0.21675797,0.13698117,0.09656208,0.32172123,-0.7122032,0.0005766471,-0.12523407,0.29524553,-0.12797515,-0.18633057,0.38534412,0.130551,0.33707312,-0.072525196,-0.14410262,-0.27077523,-0.094950266,0.04735701,0.3711836,-0.061435726,-0.3540952,-0.036131073,0.1939644,0.20888847,0.22954768,0.23946737,-0.28499234,-0.1325146,-0.035295416,-0.0909976,0.33166772,0.4917617,-0.04266643,-0.2646032,0.394056,0.75549775,0.24716376,-0.1218503,0.01858058,-0.045084,-0.33564594,-0.11950113,0.11964499,-0.29430234,0.41209108,-0.0950201,0.22493608,0.6378671,-0.06704928,-0.10470011,-0.030508567,0.20107795,-0.051263634,-0.43365324,-0.33883685,0.26073587,-0.39088967,0.27612683,-0.15262581,0.52903193,-0.13414222,-0.6407103,0.32276532,-0.48925045,0.11233031,-0.016447019,0.48929033,0.6509815,0.51059747,0.38782233,0.74646896,-0.41190988,0.077119984,-0.093359515,-0.28444746,0.0050126235,-0.15898865,0.06828157,-0.5170136,0.044992615,-0.12466971,-0.24465153,-0.022247698,0.2522844,-0.551203,-0.03845117,0.0994898,0.7855672,-0.2622159,0.01757377,0.8226786,0.95105845,0.8238395,0.015022679,1.0311301,0.19429211,-0.2634835,0.36156285,-0.3180127,-0.8241623,0.28334656,0.32341364,-0.0018006325,0.078924544,0.18974194,0.06843278,0.3385908,-0.47415236,0.07560286,-0.368323,0.24407788,0.16149427,-0.13492846,-0.33954278,-0.16359068,-0.13830867,0.01231703,0.100927226,0.04300935,-0.11791515,0.26288977,0.09606108,1.7806938,0.029613772,-0.009064915,0.18367685,0.51706845,0.16366476,-0.14135237,-0.014642565,0.48076043,0.2666644,0.11576626,-0.46992207,0.16330501,-0.30456728,-0.46376994,-0.018129226,-0.3032838,-0.09825562,-0.08940366,-0.3531723,-0.28682888,-0.28134224,-0.23806559,0.38756993,-2.8093731,-0.14170137,-0.10717404,0.4080951,-0.25977522,-0.41432795,0.05078224,-0.4082963,0.45838925,0.2843303,0.47594425,-0.6454944,0.36549366,0.39977896,-0.67230314,-0.013915825,-0.49519315,-0.009391392,0.04295245,0.2438546,-0.035673864,-0.035285246,0.030678485,-0.099320166,0.2776372,-0.012365224,0.060356133,0.54434496,0.44187894,-0.1425612,0.47916096,-0.008703496,0.30293626,-0.1822302,-0.14705056,0.2670932,-0.38056928,0.20703994,-0.0031997522,0.10522234,0.64765644,-0.5112648,-0.5890762,-0.6329062,-0.035573922,1.035497,-0.14976192,-0.4898313,0.17318605,-0.7444255,-0.34085232,-0.19600677,0.38864392,-0.05764105,-0.19818987,-0.82197994,-0.093277946,-0.2348515,0.1964044,0.0100915,-0.11706074,-0.31116915,0.8821962,-0.030349966,0.44189873,0.31458697,0.042496584,-0.4179959,-0.46694252,0.08792843,0.4839281,0.40772742,0.09364059,-0.12526232,-0.12867992,-0.32186285,-0.13279326,0.13447906,0.5799904,0.52201134,-0.019466126,0.10880509,0.26781884,-0.06491937,-0.19739696,-0.29102296,-0.15626948,-0.26997548,-0.018540334,0.47610456,0.6215461,-0.22799015,0.54095775,-0.08192643,0.18723239,-0.1244623,-0.45066687,0.2996535,1.1086327,-0.1447875,-0.37645453,0.51686776,0.40326974,-0.20619266,0.17848586,-0.46021718,-0.12904763,0.3353211,-0.1898992,-0.58405095,0.18574366,-0.25376466,0.14492589,-0.7850087,0.1403547,-0.23342124,-0.5395828,-0.7350386,-0.16957888,-1.482545,0.16873704,-0.28581184,-0.2869356,-0.1915265,-0.31284454,-0.06903374,-0.4427472,-0.6189736,0.254053,0.05596728,0.61836964,-0.025695043,0.010517282,-0.09495649,-0.29369724,-0.32472864,0.022174882,0.17812586,0.37524593,-0.13418564,-0.45228285,-0.25384453,0.051662307,-0.4377241,-0.007926324,-0.59087765,-0.35656685,-0.25105408,-0.65117735,-0.24776907,0.58735025,-0.15454385,0.15336958,-0.30888444,-0.11563141,-0.027640974,0.3299738,0.2202246,0.13118556,0.02183506,-0.13170034,0.1111418,-0.31356984,0.31772676,0.08842351,0.23669662,0.26875427,-0.18976903,0.21177301,0.25529268,0.76731414,-0.122732684,0.7551697,0.39710706,-0.27117908,0.28371415,-0.1936628,-0.23543753,-0.63907814,-0.24621993,0.059340835,-0.34159496,-0.44031155,-0.041691344,-0.68536955,-0.6475407,0.38887766,0.0448092,0.27558622,0.18121609,0.32260698,0.7661442,-0.10283776,-0.0037210325,-0.0035274108,-0.13887677,-0.57976663,-0.35036284,-0.42922026,-0.45806614,0.11636121,1.0361266,-0.11527252,0.06619308,0.12864618,-0.31130245,0.10903134,0.22518735,-0.21204045,0.13830519,0.57910836,-0.2737543,-0.42164835,0.36524904,0.09238558,-0.2847047,-0.5335481,0.39654955,0.5545319,-0.6071187,0.61509895,0.07201643,0.019730715,-0.4370171,-0.41365287,-0.14787927,-0.09817489,-0.31722233,0.43413195,0.25913632,-0.5773224,0.30480438,0.45541638,-0.014856775,-0.7853854,0.48856,-0.08115433,-0.4988923,-0.13691886,0.31370524,0.028409036,-0.008195448,-0.23529972,0.16607441,-0.23562703,0.16768536,0.13701601,-0.21146026,0.17669459,-0.27028614,-0.089727364,-0.7226635,0.18192074,-0.44031468,-0.34266013,0.42484748,0.079213865,0.08370866,0.18382019,0.23815903,0.45622545,-0.20285602,0.09950977,-0.11896763,-0.1608248,0.1450477,0.28417274,0.3463178,-0.53499234,0.5400413,0.0128301345,-0.060576905,-0.056651544,0.17261654,0.38844368,0.013330706,0.36601976,0.18898787,-0.13464877,0.19217806,0.7286929,0.18331404,0.48528078,0.0213338,-0.033080317,0.15704575,0.016829658,0.28365996,-0.114454225,-0.5498379,0.23342839,-0.17014737,0.10522232,0.24626549,0.08161866,0.16085725,-0.07673914,-0.32852963,-0.084079675,0.31290898,0.04586621,-1.1694521,0.30207545,0.272972,0.95390284,0.3133845,-0.0863565,-0.08040685,0.7079653,-0.077993155,0.12397087,0.32124513,-0.032838725,-0.45402193,0.45644963,-0.7020659,0.35254017,0.08986898,-0.06497223,-0.034937665,0.07794914,0.34849727,0.5052044,-0.27386627,-0.087921314,-0.12166026,-0.2904734,0.23807222,-0.19928344,0.11851339,-0.51205224,-0.34162328,0.55027884,0.5155775,0.41066387,-0.123663925,0.12974426,0.03896885,-0.21623173,0.15154773,0.21627182,0.18307592,0.012768948,-0.58242303,-0.25196514,0.37848446,-0.06900661,0.14515252,0.07806565,-0.104203366,0.24335076,0.035743974,0.0029687562,-0.03911257,-0.7134933,0.1528528,-0.17288622,-0.3356558,0.3416522,0.035694797,0.18828735,0.24312311,0.06477292,-0.22644693,0.3904695,-0.0065439385,0.88151234,-0.099970154,-0.06613713,-0.36540762,0.26605278,0.061707206,-0.1858794,0.043668643,-0.12502654,0.06657026,-0.4959955,0.49108014,0.17193763,-0.43175468,0.09922438,-0.17095374,0.019492196,0.45701212,-0.16489138,-0.16792485,-0.24433514,-0.2096455,-0.30503413,-0.34213087,-0.006874108,0.33013093,0.29659727,0.14185467,-0.13163915,-0.01268009,-0.2308435,0.69845015,0.10152168,0.34207198,0.26997578,0.02641371,-0.450906,-0.10335418,0.22653048,0.57985485,-0.12167219,-0.08976105,-0.20200808,-0.39385504,-0.38861874,0.39286044,0.0384381,0.47977033,0.0883057,-0.16172868,0.87619036,-0.0015497326,1.090993,0.036919508,-0.26208875,0.25629777,0.51664937,0.01478939,-0.094886295,-0.28938296,0.7804963,0.5946128,-0.01979425,-0.056077283,-0.23582178,0.04029831,0.20884076,-0.12210285,0.06577063,-0.032986302,-0.58260626,-0.28142515,0.18981145,0.24327537,0.11973829,-0.103546776,0.009929753,0.2665648,-0.2714939,0.27332237,-0.26122397,-0.3088738,0.22663115,0.010591591,0.04342859,-0.0010998845,-0.51449007,0.36850756,-0.43922055,0.1633452,-0.23892762,0.0954425,-0.25475705,-0.30946547,0.15883642,-0.15853062,0.31463572,-0.38142967,-0.2866424,-0.341719,0.4084627,0.18834448,0.16160752,0.43530267,-0.22380687,0.117025055,0.0952914,0.37846997,0.7320855,-0.046621453,0.033835538,0.13974711,-0.40725696,-0.526634,0.421279,-0.1680611,0.20632549,0.106253624,0.0101107955,-0.39705458,0.23051174,0.19490932,0.0081886845,-0.11677338,-0.68018913,-0.11881779,0.4548711,-0.2494809,-0.008802546,-0.24598742,0.08391085,0.54192287,-0.043554712,-0.38765594,0.06193952,0.005915753,-0.18578751,-0.4185039,-0.10177796,-0.5398484,0.26664704,-0.13291188,-0.3035027,-0.12994649,0.07450678,-0.3933553,0.15530099,0.037620448,-0.32248676,0.065469585,-0.3058589,-0.103162654,0.8778469,-0.16803287,0.05661963,-0.39926183,-0.3344803,-0.7426358,-0.14747307,0.19009273,0.12021902,0.0740575,-0.80021435,-0.043235183,-0.20409489,-0.18037136,-0.11815181,-0.32873815,0.42656654,0.2073954,0.4065243,-0.16332476,-0.8908859,0.16456856,0.11133846,-0.095191754,-0.561661,0.56057805,0.042485736,0.6056234,0.072599836,0.2535928,0.12327259,-0.53648263,-0.12828715,-0.19300492,-0.19289757,-0.6111241,-0.065272555 -716,0.7134196,-0.094970345,-0.3498417,-0.30214372,-0.1308375,-0.07667435,-0.121168174,0.63910973,0.31542078,-0.7093286,-0.34297904,-0.23705511,0.08278901,0.16366011,-0.31439194,-0.65205926,0.043155,0.13391693,-0.21326996,0.45643964,-0.4676638,0.31337985,0.09085845,0.23226035,0.03712176,0.113758765,0.23380804,-0.15562259,0.20964527,-0.18708783,-0.28805074,0.30304667,-0.6167931,-0.023246646,-0.16891752,-0.34838822,0.026401162,-0.43296131,-0.38384056,-0.7460218,0.37087378,-1.0109305,0.61354613,0.2688154,-0.27117822,0.43420568,-0.13678329,-0.012244607,-0.14967893,0.25555816,0.0041811294,-0.27770552,0.10322589,-0.18225895,-0.15445502,-0.49896088,-0.6552021,-0.025815144,-0.36097458,-0.28352025,-0.34677193,0.07651787,-0.45171127,0.0695482,-0.17466246,0.53715605,-0.44970012,-0.03793657,0.1526284,-0.25740266,0.30530724,-0.69622904,-0.24622934,-0.11345608,0.26068857,-0.16411693,-0.17233318,0.17231877,0.31510988,0.6971192,0.030606464,-0.21666522,-0.22534873,-0.009215574,-0.03150186,0.46798098,-0.20037375,-0.6144933,-0.073774524,0.09338361,0.25694495,0.18961328,0.13989042,-0.104583524,-0.17065538,-0.047323674,-0.3065556,0.48288462,0.56989676,-0.41946682,-0.29538554,0.22080553,0.40894046,0.17730705,0.09048197,0.1673692,-0.04162876,-0.6209166,-0.12088088,-0.0018252432,-0.4496174,0.7538298,-0.24968785,0.31639656,0.58844227,-0.10815843,0.13540502,0.06672355,-0.012396517,0.112052836,-0.3148594,-0.32176688,0.4271718,-0.48574045,0.24616957,-0.24580951,0.88475513,0.14358386,-0.6319874,0.3302857,-0.5066929,0.14732164,-0.25568914,0.59705824,0.61291593,0.4796939,0.35374272,0.8446889,-0.7458339,-0.03311365,-0.09076873,-0.36676303,-0.018092513,-0.016915655,0.06563969,-0.3061286,0.05053972,-0.019321034,-0.017706731,0.12332312,0.33544457,-0.479195,-0.07910461,0.26176623,0.7594977,-0.25760546,0.00987224,0.7554485,1.1132518,0.99741936,0.11450302,0.97223663,0.1288789,-0.23406601,0.15300627,-0.08682209,-0.83783466,0.37634477,0.5475231,0.31405658,0.2627593,0.11793247,-0.05152082,0.30581823,-0.44962016,-0.1756772,-0.27273974,0.25360703,0.13094954,-0.13672905,-0.66326827,-0.08887205,-0.09984747,0.09209605,0.06082425,0.21480574,-0.1928793,0.17897277,0.015247042,0.99520445,-0.06932517,0.15028821,0.17511916,0.4072535,0.2193706,-0.044132486,0.1569646,0.32436934,0.42360103,0.16122483,-0.6447188,0.051658552,-0.2752317,-0.5210141,-0.16931267,-0.34319106,0.12325514,0.15604135,-0.5238454,-0.1977403,-0.17092569,-0.24418713,0.3428948,-2.482436,-0.26443294,-0.059309017,0.47973135,-0.21521473,-0.2662987,-0.14167495,-0.5176258,0.4700153,0.3921651,0.5894994,-0.7607091,0.2527435,0.6603419,-0.45047083,-0.07560048,-0.6021212,0.0004666249,-0.1559239,0.30732992,0.16823155,-0.22380853,-0.057222035,0.12918837,0.6861574,0.2655729,0.0912532,0.11197242,0.45081738,-0.12965208,0.38095784,-0.24385238,0.49965134,-0.24609435,-0.17304349,0.31712085,-0.16380163,0.07554161,-0.44021618,0.18476748,0.42631027,-0.4321846,-0.87644285,-0.6122594,-0.22783859,1.4151073,-0.16380186,-0.57167894,0.46393514,-0.08370074,-0.16167875,-0.16847368,0.5349609,-0.20928484,-0.18105012,-0.7773202,0.045816537,-0.10305771,0.1504634,0.10773092,-0.061807375,-0.46935543,0.85018533,-0.074308775,0.46470413,0.40737787,0.2448501,-0.07583052,-0.43611896,-0.047267187,0.83980966,0.40161753,0.18813448,-0.2828725,-0.093874834,-0.19427447,0.160281,-0.018564133,0.6333234,0.8042688,-0.2101245,-0.049586464,0.19988646,0.25383273,0.10859584,-0.119815804,-0.3002158,-0.14820768,-0.15995422,0.44685718,0.644043,-0.33198473,0.15330982,-0.12665294,0.26281908,-0.19921486,-0.29784116,0.43788636,1.0797734,-0.15996432,-0.18264551,0.8220916,0.36446056,-0.2537982,0.43171728,-0.77498364,-0.31902775,0.4428468,-0.16738474,-0.42252156,0.19394927,-0.44298708,0.20009887,-0.8369836,0.3411698,-0.29832026,-0.32172433,-0.6298274,-0.1759535,-3.5811176,0.26379725,-0.41174832,-0.05936988,-0.18812935,-0.22026336,0.21010627,-0.77568895,-0.59602636,0.29142722,0.19644593,0.63980675,-0.054249182,0.13782226,-0.19520672,-0.39029536,-0.20308311,0.08512931,0.012933172,0.26674575,0.27549207,-0.36683908,0.12667133,0.02557831,-0.3216108,0.025421858,-0.48233366,-0.46449903,-0.113833934,-0.5662532,-0.4147861,0.5175386,-0.2764089,0.047899198,-0.20218545,0.046579573,-0.14212568,0.14220269,0.052301507,0.2526754,-0.02308703,0.08855047,-0.009551674,-0.17235535,0.39232278,0.053162914,0.20709562,0.37663198,-0.34852764,-0.23084687,0.53011286,0.56285137,-0.15402131,0.99682736,0.49667946,-0.064654626,0.2582712,-0.1320911,-0.33619544,-0.7027719,-0.41532293,0.00565284,-0.4293296,-0.4430976,0.016808312,-0.37061706,-0.7989114,0.5766445,-0.14388336,0.4433411,0.13539548,0.43081847,0.6273392,-0.23971854,0.011315753,0.07269502,-0.19316347,-0.51767635,-0.16450326,-0.71137804,-0.29982,-0.06923464,0.8182834,-0.19747108,-0.008583841,0.03720836,-0.05238195,0.026971733,-0.06408245,0.061868567,0.0046687922,0.46989274,0.08722815,-0.63504064,0.4709107,0.010195591,-0.15576981,-0.5874036,0.00058194995,0.45011887,-0.7328294,0.4643263,0.48014423,-0.07399284,-0.17529671,-0.68455744,-0.46769002,-0.07385258,-0.20462006,0.35813895,0.34901595,-0.74639314,0.431177,0.388566,-0.18853319,-0.78045607,0.4631964,-0.122723974,-0.58802515,0.047448352,0.32928973,0.17061615,0.14062656,0.11219791,0.20883483,-0.403711,0.30028287,0.24498528,-0.050298825,0.3919978,-0.13702887,-0.0024517726,-0.9321038,-0.05388704,-0.59666353,-0.20260827,0.29183385,0.08947656,-0.033657815,0.25141048,0.043261487,0.47336093,-0.32373407,0.19226341,-0.083223075,-0.20805895,0.5121365,0.3938208,0.48824143,-0.25013316,0.6567232,0.07080377,-0.1450385,-0.18395098,0.1712271,0.42591003,0.010099408,0.32289335,-0.046574175,-0.2740263,0.17187835,0.8264323,0.19318663,0.30198082,0.21805839,-0.028828016,0.51927704,0.24417424,0.1738125,-0.12389424,-0.56199795,-0.15383284,-0.33777305,0.0061027952,0.43096685,0.19775356,0.22862731,-0.2029739,-0.20359945,-0.0149834575,0.24751054,0.1319936,-1.0999237,0.13294953,-0.062298592,0.76002854,0.557702,0.13328831,-0.09531713,0.50768465,-0.0007530202,0.09255233,0.2943335,0.008213796,-0.4215848,0.4371985,-0.45643425,0.16447687,-0.20635776,0.019685768,-0.03760445,0.011028573,0.3031771,0.5969711,-0.092632495,-0.06631074,-0.1040358,-0.22139247,0.13528258,-0.4551796,0.13577749,-0.5467618,-0.18741255,0.60675937,0.47299156,0.3873525,-0.31729907,-0.009541289,-0.002941534,-0.091380574,0.071612425,-0.040661942,-0.012456882,-0.06356565,-0.59490603,0.0028935373,0.49592316,0.35306978,0.056153137,-0.264884,-0.30884355,0.15743864,-0.14603241,-0.2614779,-0.052841887,-0.67213565,-0.053913284,-0.4343704,-0.4258695,0.2778151,0.025815884,0.3078462,0.15480109,0.012930338,-0.2500327,-0.035255928,0.18423986,0.62489,-0.05617844,-0.12759866,-0.52965504,0.12599273,0.11071516,-0.20230223,0.014189755,-0.17778556,0.07872435,-0.47335362,0.5168539,-0.06252536,-0.13318123,0.11770492,-0.281626,0.008840029,0.59611994,-0.13202877,-0.12062857,0.013647123,-0.33777502,-0.3768524,-0.21630573,-0.17488734,0.29138687,0.026085878,-0.22686751,-0.1285137,-0.12117249,-0.22401853,0.397266,0.1784345,0.23894817,0.20554638,0.05910504,-0.22923471,-0.14126118,0.07642726,0.54612875,-0.053805068,-0.25307587,-0.23873131,-0.70500225,-0.26375997,-0.15051408,0.00034404793,0.3103153,0.05915889,-0.09418922,0.7269841,0.30125,1.0144633,0.014288922,-0.35918364,-0.18725355,0.53392,-0.22288603,-0.19121015,-0.1894002,0.9496781,0.5715063,-0.06644789,-0.058643907,-0.20840818,0.14819495,0.09599814,-0.15056863,-0.041454896,-0.0584607,-0.62045985,-0.26103997,0.36351228,0.36565414,0.20682152,-0.07205539,0.07281912,0.22801477,0.05895667,0.49241993,-0.4537057,-0.23539376,0.14874946,0.12932378,0.13724265,0.09458136,-0.27113768,0.34976792,-0.5682263,-0.011401738,-0.543847,0.07603095,-0.24670096,-0.20994604,0.3374641,-0.017626682,0.5153652,-0.37565005,-0.48550776,-0.22458987,0.30115518,-0.10026139,0.11472523,0.48707977,-0.17014419,0.0071027675,0.09142986,0.69248945,1.2866664,-0.103715695,0.23057474,0.32291344,-0.41244444,-0.6846157,0.34738874,-0.26394224,0.0765979,-0.13236813,-0.11485235,-0.50053924,0.2645814,0.26534942,0.045398954,0.21418203,-0.5355456,-0.42387095,0.26805863,-0.3103995,-0.16390467,-0.121408165,0.11729864,0.64667696,-0.324792,-0.24593578,-0.072157584,0.33617386,-0.1765163,-0.7078757,-0.027261471,-0.35792652,0.31296575,0.23560794,-0.32329226,-0.019527009,0.09395503,-0.52871233,0.026646933,0.117591105,-0.31380892,0.09864373,-0.4675788,0.07575285,0.89144254,-0.15570103,0.17785864,-0.47728088,-0.499409,-0.9523671,-0.18683524,0.7136598,0.18313916,0.19573082,-0.5064257,0.14479668,-0.15366818,0.03069959,-0.30209085,-0.17760502,0.5795447,0.16301683,0.51815516,-0.097267576,-0.7524602,0.011997809,0.03224488,-0.19928086,-0.43782791,0.54052943,0.22071512,0.90300757,-0.019888673,0.14305867,0.1274408,-0.5017563,0.09061825,-0.21854186,-0.14448224,-0.65297025,0.04426579 -717,0.53986394,-0.08075051,-0.4590187,-0.15899879,-0.15310761,0.1505641,-0.06861146,0.24434295,0.14985977,-0.40129787,-0.085126445,-0.105104305,-0.0046487264,0.1912403,-0.12397395,-0.71633446,0.055533618,0.073972434,-0.64935476,0.62835056,-0.4757581,0.38485712,0.118415624,0.11320983,-0.101889804,0.39239419,0.2172544,-0.2746275,-0.033295587,-0.07370074,-0.11037718,0.1199428,-0.7403848,0.2604224,-0.025576323,-0.18228672,-0.03398156,-0.3174897,-0.30679688,-0.6658803,0.27399707,-0.6660167,0.38374245,0.081681415,-0.23912391,0.23261802,0.03797195,0.29577732,-0.3653935,0.1769008,0.23939231,-0.033719227,-0.2039703,-0.12976086,-0.005405806,-0.4727711,-0.53940016,0.04853073,-0.520408,-0.19568506,-0.21372889,0.16375314,-0.38073546,-0.017341927,-0.09316558,0.32994804,-0.37680006,-0.018173505,0.30313605,-0.1443297,0.23196626,-0.41884387,0.08783822,-0.0986494,0.26627216,-0.19703747,-0.20312482,0.20844857,0.32480317,0.5705769,0.13601913,-0.25496492,-0.22490294,-0.011026779,0.19133982,0.46113214,-0.108075775,-0.45480284,-0.19363837,0.113284044,0.028275114,0.20982122,0.026966792,-0.3690586,-0.27227315,0.074661784,-0.2237764,0.34042698,0.569846,-0.3866827,-0.34292838,0.5281471,0.5858989,-0.02448722,-0.007877411,0.1267129,0.037502483,-0.5416759,-0.1807951,0.24679206,-0.15903056,0.40988842,-0.2051729,0.1463302,0.66298306,-0.29423088,-0.071386695,-0.004394075,-0.10344204,-0.03926252,-0.11151357,-0.029525258,0.13275379,-0.55657715,-0.0033697896,-0.32445562,0.73830265,0.23230442,-0.7844802,0.32917732,-0.4738292,0.20457497,-0.12359142,0.64901257,0.8797878,0.3739372,0.18324357,0.8710557,-0.48483592,0.12240267,-0.13838771,-0.48924106,0.2714439,-0.21913621,-0.053073633,-0.49177277,-0.013844173,0.02857349,-0.081247464,-0.08528899,0.3559619,-0.6062194,-0.09916248,0.11246572,0.6305165,-0.34277457,0.025575839,0.6596194,0.8350643,0.9137567,0.17852063,1.3712972,0.26799786,-0.22595225,0.1872786,-0.4184692,-0.77476895,0.21668802,0.3795603,0.15228848,0.12137068,0.08214455,0.008814881,0.29866016,-0.39648324,0.12719178,-0.2868887,0.40706322,-0.0548964,-0.13244069,-0.13412082,-0.08668201,-0.118522786,0.20864972,0.15053603,0.20068803,-0.20536658,0.29277074,0.085318364,1.5546718,-0.14288083,0.13643321,0.023082668,0.25436544,0.24847853,-0.19362688,-0.14347272,0.3050738,0.48438495,0.18386468,-0.60884786,-0.05449602,-0.15744683,-0.41769323,-0.19895887,-0.33108038,0.026594106,-0.12149524,-0.28444526,-0.1320566,0.01635795,-0.32278198,0.58548796,-2.6498747,-0.047681794,-0.13014689,0.32289314,-0.25916222,-0.30534047,-0.21658947,-0.6009117,0.48723897,0.33466756,0.40688318,-0.77305174,0.31481135,0.2968691,-0.37139535,-0.02337366,-0.7264365,-0.0015640333,-0.08802411,0.31851864,0.02305185,-0.13253261,-0.12709114,0.105354555,0.44440812,0.019295715,0.06735077,0.26761866,0.34376055,0.18334036,0.5563463,0.11591405,0.54800034,0.000301769,-0.2248597,0.31373852,-0.3453628,0.28982165,-0.1613453,0.07424147,0.24756932,-0.51028305,-0.8653896,-0.7537225,-0.278826,1.1742209,-0.24395582,-0.26981318,0.21167651,-0.16764414,-0.2357389,-0.13081834,0.37350976,-0.09541698,-0.1381944,-0.7492807,0.14551502,-0.06845948,0.17111604,-0.03944906,-0.09804955,-0.4500432,0.75459206,-0.1286069,0.5805093,0.30310762,0.11877775,-0.07382533,-0.506079,0.055754878,1.214689,0.40099126,0.040130958,-0.08961796,-0.22257023,-0.33784413,-0.11302267,0.066968665,0.46903533,0.821223,-0.08109354,0.015188515,0.31951302,-0.075840175,0.04657131,-0.09748609,-0.24802193,-0.091184326,-0.21606322,0.58692926,0.49899185,-0.120626,0.44033965,-0.10625799,0.20707805,-0.065803215,-0.4736676,0.65038025,0.8609594,-0.06613138,-0.28922802,0.47146422,0.3111546,-0.15298209,0.43514538,-0.5119833,-0.24860297,0.30989596,-0.23740305,-0.19834432,0.1855022,-0.41640502,0.14833307,-0.8546462,0.3459983,-0.18602723,-0.41059598,-0.47145754,-0.1978606,-3.4391747,0.14515856,-0.18411753,-0.124066755,-0.034324884,0.052283436,0.29771453,-0.46361843,-0.47568238,0.23882324,0.096353866,0.655553,-0.01281083,0.12418779,-0.17433286,-0.11678934,-0.34080583,0.16540556,0.10018884,0.16606143,0.029757142,-0.31804872,0.05033055,-0.06030231,-0.2908421,0.11169663,-0.4867285,-0.4775713,-0.2565686,-0.45261627,-0.26808897,0.71625644,-0.23743169,0.05057455,-0.16390687,-0.021207524,-0.017105948,0.3462926,0.092893735,0.062876426,-0.00064065866,0.0011431985,-0.024921328,-0.34310433,0.23241092,0.0076732934,0.2828199,0.27650952,-0.19297689,0.12715891,0.39658728,0.4467402,-0.19838923,0.73107624,0.45368266,-0.07093805,0.15720834,-0.23660202,-0.16606295,-0.5485059,-0.37148798,-0.20072219,-0.5162886,-0.3745453,-0.089474045,-0.37625083,-0.78658015,0.4041819,0.022992045,0.004579097,-0.01593583,0.3408394,0.48061478,-0.008137219,0.090124145,-0.068856135,-0.15740557,-0.45050094,-0.22723588,-0.538694,-0.36245117,0.25757384,1.1082839,-0.33398277,-0.03518771,-0.04679887,-0.027530748,-0.010686215,0.07929118,-0.035645794,0.24192552,0.4712975,-0.039513722,-0.56500846,0.4932981,-0.23324981,-0.14047512,-0.72530323,0.16238065,0.50408226,-0.77303296,0.43306926,0.31975198,0.10304004,0.035107434,-0.52830756,-0.12945941,-0.057202682,-0.30091977,0.41753954,0.12404308,-0.8293566,0.5255695,0.25318238,-0.14921631,-0.72462285,0.35145968,-0.06676974,-0.30628255,0.06472479,0.25959224,0.12249889,-0.027277725,-0.3224957,0.23270456,-0.4793985,0.22612372,0.25274432,-0.0643765,0.3675244,-0.05896329,-0.30441695,-0.67335826,-0.15515599,-0.51033646,-0.21197739,0.1516038,0.06606398,0.12558809,0.17090392,0.006378904,0.53569067,-0.34881085,0.20301235,-0.03362474,-0.26844186,0.35935026,0.40364504,0.35065025,-0.43376952,0.54710805,0.06959334,-0.12457212,-0.19347505,0.12712224,0.60166717,0.12300329,0.29450065,0.013318183,-0.24201453,0.4185407,0.8706676,0.13456333,0.36574355,0.019945353,-0.25079486,0.2726605,0.13998978,0.09472589,0.10812169,-0.48817408,-0.0015833043,0.09015946,0.19405702,0.35635415,0.19835287,0.37328476,-0.050516136,-0.13546059,-0.09231987,0.18198664,0.019076277,-1.0586247,0.34785846,0.24336055,0.6959286,0.52457774,-0.039276972,-0.0042891316,0.46636087,-0.28730446,0.19290727,0.16230226,-0.19138414,-0.43900692,0.45040166,-0.8260202,0.42051613,0.02293418,-0.017121192,0.054146837,-0.019117052,0.2950855,0.98933923,-0.12491928,0.10682752,-0.16206142,-0.18159652,0.15596586,-0.32568362,0.008357849,-0.538483,-0.36694592,0.6783721,0.31191927,0.3495615,-0.09953919,0.034147825,0.04142029,-0.09091492,0.05570353,-0.04561977,0.11666518,0.072992,-0.5504892,-0.34437835,0.5055841,-0.06532898,0.12692206,0.07888764,-0.22539817,0.18870759,-0.22027653,-0.04210995,-0.18290392,-0.5318973,0.03132478,-0.18552159,-0.28295127,0.5262497,-0.17749622,0.3233898,0.20310813,0.06563277,-0.21978936,0.2230421,0.19041029,0.62619084,-0.032588415,-0.21408914,-0.472867,0.22954747,0.15391493,-0.27511707,-0.1315711,-0.31596246,0.19009389,-0.6848924,0.38245392,-0.08716407,-0.5213568,0.17517497,-0.22815812,-0.06770836,0.49026257,-0.25126272,-0.17583165,0.15216987,-0.30480233,-0.2291747,-0.10940147,-0.18034406,0.2493597,0.30998966,-0.03902881,0.005382385,-0.15190953,-0.14951646,0.33777392,0.24498925,0.31278482,0.22421804,0.1249685,-0.30859458,-0.09545286,0.2173795,0.40697664,-0.08183442,-0.1378187,-0.2580164,-0.6005149,-0.4086557,0.029701918,-0.12319707,0.3222139,0.104820296,-0.21874686,0.5731611,0.06774193,1.1194172,0.1991225,-0.3106449,-0.0021796227,0.56648034,0.07487551,-0.0068543926,-0.31647748,0.876312,0.60313743,-0.11676285,-0.10136025,-0.35224503,-0.21316135,0.17744221,-0.17429319,-0.019701302,0.0560328,-0.67438906,-0.4551433,0.23650779,0.13820365,0.15538698,0.021647688,-0.175314,0.15757264,0.03908001,0.13163304,-0.5745468,-0.107079566,0.27357668,0.16785114,0.087782204,0.17553346,-0.45778647,0.3570693,-0.42591417,-0.05598475,-0.050950065,0.13740586,0.0050539076,-0.16531193,0.2956715,0.05158279,0.41755253,-0.25826234,-0.57784635,-0.2878832,0.49145854,0.24025312,0.17600426,0.68497956,-0.28883967,0.121263504,0.04018811,0.57380563,1.2557987,-0.24885684,0.13773894,0.35749903,-0.28798476,-0.56150365,0.21174696,-0.16828889,0.082912475,-0.040160723,-0.3675414,-0.41365165,0.3119479,0.10826072,0.15100402,0.28019357,-0.67075515,-0.16347873,0.1611533,-0.32644102,-0.27197966,-0.31860778,0.2821845,0.8473047,-0.35527116,-0.20340696,0.18638559,0.22324865,-0.26996785,-0.63194555,-0.23896784,-0.27527896,0.22321978,0.14401925,-0.2472029,-0.01059968,0.17002967,-0.40277794,0.15742789,0.2497685,-0.3195174,0.08013634,-0.23404887,-0.12074922,0.8845496,-0.18116567,0.13289395,-0.5545087,-0.35928184,-0.83714926,-0.34024268,0.46864653,0.17166789,0.050673142,-0.52751905,-0.15651488,-0.078134276,0.10903581,-0.0034482717,-0.49015874,0.5418851,0.1170869,0.25669444,-0.040205576,-0.939049,0.07984248,0.009126237,-0.25298375,-0.5541346,0.5216428,-0.04483859,0.7436258,0.16108404,-0.04921398,0.32915756,-0.62196046,-0.053072296,-0.27049354,-0.13001694,-0.8422364,0.062261 -718,0.35732365,-0.026139062,-0.5672534,-0.040549207,-0.113085486,0.1552766,-0.09098762,0.41550335,0.31140137,-0.28606555,0.032018863,-0.08431023,0.11978653,0.3684144,-0.086631715,-0.49353835,0.010307603,0.083365306,-0.35554615,0.40184793,-0.50839084,0.24231723,-0.23529083,0.5019176,0.023756005,0.35034946,0.12995468,-0.08724341,-0.074530885,-0.07437833,0.008518428,0.567621,-0.30502224,0.1674026,0.054884814,-0.24390717,0.05243627,-0.28399152,-0.4359712,-0.6454474,0.2679549,-0.50045204,0.38104156,0.0707526,-0.30899256,0.17370239,-0.016948007,0.1754021,-0.21033615,-0.16506487,0.11232843,-0.16066635,-0.009710517,-0.30726874,-0.11740592,-0.3126475,-0.47364634,-0.0031144312,-0.43920648,-0.18623897,-0.25601906,0.10787457,-0.36432523,-0.09044704,-0.09617851,0.42524624,-0.4310317,0.14175113,0.13349116,-0.32453078,0.26983315,-0.60722864,-0.32674405,-0.012666517,0.15941107,-0.13290226,-0.2832082,0.30631912,0.32362524,0.47330663,-0.07641104,-0.044030942,-0.45774522,-0.16814783,0.114042975,0.44269326,-0.35405025,-0.5344311,-0.0375173,0.09751861,0.002522163,0.22114071,0.03753656,-0.22813134,-0.09624768,0.27838606,-0.21993536,0.41370997,0.48195988,-0.40673587,-0.28715998,0.32164523,0.4358676,0.22924009,-0.08412527,-0.009253945,-0.004267833,-0.46035498,-0.13529783,-0.117601044,-0.08027292,0.3823821,-0.10049106,0.29134938,0.6997025,-0.1826354,-0.08280133,0.045164455,0.059396237,-0.053289875,-0.1967386,-0.034793984,0.10315873,-0.26615676,0.21018589,-0.0794503,0.77811795,0.15738982,-0.62820625,0.42753455,-0.44297156,0.14977041,-0.11162058,0.51159394,0.6601743,0.2515529,0.34765995,0.7276654,-0.3629009,0.064773425,-0.093589,-0.43192416,0.13908191,-0.10540087,-0.08304352,-0.51157737,0.058634274,0.14735308,-0.08248537,0.21486032,0.38855976,-0.6264567,-0.14815672,0.1411949,0.79009265,-0.26597938,-0.14868197,0.43863878,1.001052,0.8480092,0.0016402714,0.9817393,0.10747879,-0.16935399,0.2544425,-0.4156564,-0.6432104,0.22232366,0.2690667,0.015910953,0.12909573,-0.018915124,-0.04307963,0.37969685,-0.17540479,-0.0053457525,-0.11686472,0.4595891,0.12558573,-0.065417066,-0.24046475,-0.28074118,-0.073601864,-0.13155292,0.077342525,0.3063256,-0.16208296,0.4266502,-0.028181992,1.7471281,-0.020990934,0.18199056,0.1310648,0.4687665,0.24604489,-0.13296072,0.004491331,0.37894818,0.1125447,0.11766871,-0.42934242,0.14677191,-0.2224131,-0.6159033,-0.020246062,-0.3637335,-0.080239415,0.21491337,-0.31117243,-0.14322181,-0.120640725,-0.26949987,0.50085104,-3.0222983,-0.14250016,-0.013662152,0.30532363,-0.24212146,-0.3056979,-0.153416,-0.4061711,0.2891896,0.31024924,0.47850686,-0.66884506,0.10927113,0.42521745,-0.4769271,-0.085353225,-0.43090293,-0.011983775,0.0018112808,0.3374477,0.027388796,-0.11294045,-0.11270696,0.19006646,0.48008043,-0.085030004,0.091578454,0.23316991,0.23176706,0.04923246,0.35087413,-0.08264198,0.47441697,-0.13939814,-0.2339096,0.47077733,-0.37775078,0.24855882,-0.089026764,0.019578673,0.3424895,-0.3019684,-0.8885838,-0.5087702,-0.06370035,1.1655545,-0.1387771,-0.37202287,0.33243707,-0.4380191,-0.22822267,-0.13210343,0.30145264,-0.044582695,-0.17070004,-0.73905665,0.17083013,-0.18146327,0.08767094,0.10538204,-0.046438277,-0.3337939,0.5279978,0.04297389,0.4370023,0.3407762,0.037029132,-0.25826484,-0.35955203,-0.026213208,0.66048366,0.35976595,0.242365,-0.22877583,-0.24336317,-0.21486801,-0.12829241,0.19971727,0.5864911,0.50254035,-0.044666387,0.13455148,0.3829325,-0.16076604,-0.045398694,-0.19500403,-0.22645943,0.082141615,0.008775903,0.61025786,0.6773898,-0.30457282,0.3925907,0.13276774,0.30749032,-0.10459327,-0.47511378,0.51505613,0.8775671,-0.17634383,-0.28030166,0.5384722,0.25129876,-0.34223714,0.2985403,-0.5323743,-0.22478227,0.5648818,-0.26180008,-0.37482524,0.15637535,-0.33627325,0.118947804,-0.79560757,0.2021968,-0.24338259,-0.40643343,-0.48882768,-0.14804007,-3.4264956,0.14564586,-0.3571902,-0.14792426,-0.06876867,0.0039301217,0.08312045,-0.6077744,-0.46977478,0.07754092,0.16131409,0.58479965,-0.13299981,0.09887751,-0.31980705,-0.3246501,-0.24697882,0.18231167,0.06566587,0.44429204,0.029313803,-0.4046164,0.11886388,-0.07768986,-0.36331546,0.11928174,-0.39240432,-0.59300053,-0.17329332,-0.5209592,-0.35792345,0.6209528,-0.22299623,-0.05506532,-0.14892396,-0.010169007,-0.1139375,0.24503732,0.19963324,0.024998877,0.12953368,0.012325537,-0.019145388,-0.3437646,0.1877369,-0.11759659,0.3339719,0.47656137,-0.011839494,0.0944033,0.5375449,0.58977216,-0.07929379,0.81763834,0.4279945,-0.04443063,0.2884303,-0.36632344,-0.13948685,-0.44817442,-0.31533596,-0.0040002055,-0.37647328,-0.48656204,-0.11058898,-0.3575734,-0.540346,0.51432914,-0.07868226,0.06669875,0.032465305,0.21791425,0.5578537,-0.16666336,-0.057455093,0.00891209,-0.09337655,-0.63499105,-0.2263872,-0.60359645,-0.5048915,0.31105265,0.78304183,-0.3288998,-0.05976732,-0.01738192,-0.18913133,-0.098046936,0.09788421,0.19981146,0.19645825,0.46902537,-0.11849493,-0.5324043,0.31368423,-0.11168607,-0.16483267,-0.664403,0.24734725,0.4644022,-0.5940852,0.67858136,0.21697244,0.17782936,-0.10031931,-0.5581757,-0.19788484,0.019047415,-0.25400907,0.43278983,0.1935682,-0.82895035,0.46303725,0.46278703,-0.2660372,-0.6382585,0.4636858,-0.111879095,-0.37954348,-0.15663831,0.27142403,0.1420581,-0.03209612,0.009922586,0.26614693,-0.47727314,0.24794026,0.16460836,-0.10951118,0.4675753,-0.14445965,-0.21203388,-0.68074054,-0.010281669,-0.50247246,-0.29588726,0.23859641,0.11340593,0.043989573,0.033785027,0.010602355,0.47433078,-0.32465038,0.044285163,-0.05199077,-0.10514218,0.31723687,0.38233268,0.48357517,-0.3809166,0.52607685,-0.06385268,0.006671207,0.034923043,0.080860555,0.36635756,0.090714544,0.32855347,0.05128371,-0.2865447,0.15838961,0.864527,0.057299428,0.4518198,-0.13840286,-0.18879548,0.17039709,-0.020513128,0.15848838,0.0016168281,-0.5105861,-0.063868694,-0.22263888,0.17102385,0.49766386,0.17802934,0.3088972,-0.08799396,-0.46568745,0.036912546,0.21028751,0.05166158,-1.0795594,0.24794206,0.19733453,0.77487093,0.41115302,0.07627713,0.02070231,0.575885,-0.21875621,0.12670802,0.32501912,-0.016076542,-0.58622503,0.47229794,-0.85330343,0.5241847,-0.039573908,-0.08951948,0.022879824,-0.08229889,0.30978212,0.7414005,-0.16377562,-0.043005995,0.13302107,-0.30006492,0.11759814,-0.30854413,0.025997698,-0.6098192,-0.26605222,0.5116436,0.6201022,0.26088357,-0.2575112,-0.0766379,0.09851636,0.0043527335,0.10398434,-0.034693725,0.17944996,-0.043247677,-0.5810064,-0.32547426,0.52225614,0.23657736,0.19916266,-0.04709123,-0.10648926,0.39870396,-0.10214038,-0.013162948,-0.08623233,-0.3537125,0.07013654,-0.17402616,-0.48235375,0.66471463,-0.10538012,0.35012147,0.16163696,0.108391136,-0.2657999,0.44250038,-0.039814703,0.7265091,-0.05656147,-0.053298168,-0.5125309,0.13409176,0.16025102,-0.12143731,-0.28974622,-0.2520854,-0.06793952,-0.42931363,0.4315548,-0.027452506,-0.16870195,-0.045486305,-0.15987487,0.03569731,0.43293554,0.004947275,-0.23205717,-0.14765038,-0.14714286,-0.37279084,-0.122994065,-0.039721474,0.1587058,0.14580801,-0.12520902,-0.11939211,-0.2331021,-0.09917767,0.24211745,0.015406871,0.13596842,0.33550793,0.075777724,-0.31878906,-0.13557878,0.2534835,0.44921488,0.014206018,-0.058186524,-0.18291461,-0.46509922,-0.38591918,0.10361661,-0.11711612,0.33265066,0.18445197,-0.42195585,0.5308758,-0.10786329,1.0003331,0.08316881,-0.11744978,0.033148885,0.43814716,0.019176364,0.004620157,-0.31001604,0.77368605,0.55814743,-0.11162899,-0.27212077,-0.35145822,0.015192484,0.16150527,-0.21569845,-0.10224634,-0.038979776,-0.6646232,-0.11994191,0.22480294,0.25629526,0.22325844,-0.111326426,-0.05747713,0.1203163,0.1981605,0.30604306,-0.2427635,-0.26494348,0.21908653,0.30534947,0.086219095,0.15159898,-0.40836993,0.34493637,-0.4706799,0.16856831,-0.21817867,0.14615327,-0.2386366,-0.30357617,0.17510164,-0.02895322,0.35289767,-0.23761863,-0.2944337,-0.16615045,0.26763162,0.18492849,0.06734273,0.6892475,-0.23730704,-0.06228092,0.17781958,0.4038899,1.1629257,-0.20282036,-0.14440918,0.40330285,-0.20982115,-0.6096068,0.3209344,-0.29431874,0.13035946,-0.095066175,-0.11786996,-0.5590638,0.17732057,0.19559628,-0.008251039,-0.08185841,-0.5696739,-0.14261547,0.10192462,-0.46183878,-0.09622325,-0.31697536,0.043103583,0.7243905,-0.22932842,-0.197938,0.112475246,0.33375573,-0.15645836,-0.578295,0.09040095,-0.23812039,0.35776913,0.0014884621,-0.25940478,-0.031367064,0.2147274,-0.43957824,0.12128091,0.2490935,-0.45352754,0.12329248,-0.30732682,0.0139381215,0.8680115,-0.25394425,0.33434713,-0.35092938,-0.34957558,-0.6969127,-0.20265135,0.47027212,-0.110474534,-0.017051425,-0.6589132,-0.11690049,-0.055848762,-0.29362085,-0.16113025,-0.39301637,0.4879225,-0.029805379,0.23545802,-0.11331456,-0.5854847,0.12722957,0.1353397,-0.055875298,-0.55106974,0.566871,-0.21800052,0.80774486,0.11312467,-0.006722551,0.38703018,-0.40034854,0.04407945,-0.2225119,-0.24549799,-0.58723444,-0.019007836 -719,0.49599865,-0.28401464,-0.5493661,-0.09293245,-0.23418908,0.08104569,-0.22401795,0.49563822,0.11789333,-0.5368808,-0.3395535,-0.2583143,0.12421328,0.21722712,-0.18860087,-0.42755517,0.06194877,0.22902796,-0.47999135,0.6341411,-0.35182795,0.32771197,0.03301959,0.4486846,0.2952098,0.1886243,0.084864475,-0.024741216,-0.34131286,-0.1943591,-0.1852586,0.23806296,-0.57301,0.16410467,-0.24534562,-0.42854643,0.057411782,-0.5406572,-0.25755796,-0.76476765,0.21382955,-0.8085736,0.5523363,0.016475545,-0.33327815,0.1951919,0.27428457,0.37399325,-0.17301862,0.014790705,0.22886746,-0.11796998,-0.03174383,-0.07307006,-0.32249215,-0.4359703,-0.61703235,-0.11228273,-0.43787104,-0.21494317,-0.32470298,0.14321347,-0.23224095,-0.05389231,0.019032892,0.41580313,-0.52266806,0.07895827,0.2409333,-0.02729613,0.5546514,-0.50271696,-0.2606857,-0.2030197,0.32188436,-0.34515426,-0.24560067,0.17871962,0.47916743,0.3652086,-0.12589525,-0.12108909,-0.21194538,-0.1428139,0.20634355,0.47229344,-0.18109046,-0.52595675,-0.14682147,-0.1354919,0.31942278,0.41781157,0.33863297,-0.31052658,-0.2119641,-0.030874508,-0.19546749,0.31659195,0.35914162,-0.23787673,-0.18021801,0.35540748,0.6171912,0.31220976,-0.11781999,0.020930737,0.04706886,-0.5509415,-0.22747442,0.10317044,-0.3087087,0.62606,-0.121475875,0.29343262,0.7319107,-0.19084893,-0.02284014,0.060910467,0.09153912,-0.26123238,-0.22321008,-0.33904546,0.21636115,-0.44798034,0.1524746,-0.07822024,0.63378507,0.20351611,-0.698775,0.19203831,-0.61564666,0.06591744,-0.1213634,0.4725831,0.5694474,0.4768667,0.40907148,0.5898308,-0.5050627,0.072050095,0.0820241,-0.38807052,0.003832651,-0.2882046,-0.24154703,-0.59723413,-0.03689266,0.02300571,-0.07576252,0.14870794,0.59390706,-0.50725055,-0.08470784,0.04004892,0.82991785,-0.29118577,-0.15750279,0.85699207,0.93349123,1.0114993,0.11177522,1.2564409,0.23164606,-0.2199074,-0.01571305,-0.0695731,-0.6663733,0.31618348,0.5385083,-0.6272098,0.3566401,0.10060073,0.06742108,0.33362547,-0.21947588,0.050650503,-0.18522099,-0.09450513,-0.112324834,-0.37231448,-0.42687985,-0.24709736,-0.19495884,0.05700412,-0.12622179,0.24321876,-0.10564727,0.5341463,0.16056326,1.7303507,-0.008031709,0.0330966,0.03502771,0.30896732,0.2524271,-0.09348364,-0.24678142,0.46593097,0.3176608,0.302336,-0.47106075,0.029215125,-0.09803238,-0.51304066,-0.16156748,-0.3309939,-0.10105933,-0.18329461,-0.4547878,-0.016183572,-0.20014226,-0.1962022,0.45401478,-2.566408,-0.19416167,-0.18353525,0.2862205,-0.12716451,-0.38592246,0.03473693,-0.4060637,0.52609354,0.32832307,0.5443453,-0.6351814,0.25009373,0.36839265,-0.44656482,-0.13696441,-0.6432771,-0.3061504,0.04443642,0.34421787,-0.115678705,-0.022257438,0.18164136,0.3352509,0.42217702,-0.14131741,0.2572653,0.27657053,0.52317685,-0.07872309,0.6314874,-6.9210575e-05,0.4955024,-0.06559657,-0.18635209,0.34594154,-0.23987405,0.37494573,0.04697759,0.15124881,0.4553135,-0.41451332,-0.9255361,-0.73015565,-0.39147496,1.0186881,-0.22622505,-0.43317208,0.16132498,-0.24358581,-0.3578314,-0.0799791,0.3892363,-0.10837387,0.19447507,-0.8665784,-0.03502271,0.031804383,0.08981283,-0.03191228,-0.012699955,-0.47077134,0.67067283,-0.07068209,0.4943145,0.52776253,0.15433316,-0.34511408,-0.48810458,-0.030601034,1.0588735,0.50134236,0.16747044,-0.21240175,-0.23296528,-0.60475737,-0.10452999,0.14104472,0.4538377,0.8081218,-0.06737717,0.3410187,0.22111401,0.07337988,0.047320914,-0.34548423,-0.27033347,-0.019823765,-0.028435988,0.46444947,0.49229988,-0.21750818,0.6073853,-0.1680646,0.3199315,-0.051181395,-0.6019927,0.48751047,1.084964,-0.22089885,-0.26297566,0.6333136,0.47975713,-0.23451957,0.47271737,-0.5713959,-0.20305718,0.600057,-0.1346786,-0.48466867,0.39824414,-0.30878776,0.16336186,-1.0772723,0.3154487,-0.31250063,-0.3930588,-0.4313113,-0.07935242,-3.335787,0.29024336,-0.19379644,-0.24409625,-0.15631105,-0.2192129,0.20763591,-0.6753928,-0.768247,0.16702403,-0.040521245,0.8172326,-0.12741055,0.14308141,-0.1448232,-0.35199824,-0.23906915,0.10815982,0.06648238,0.32331187,-0.11990982,-0.58173674,-0.11356833,-0.15970738,-0.5221409,-0.05411085,-0.6113846,-0.56259733,-0.13603947,-0.49839282,-0.37298733,0.62281895,-0.32029432,0.011101552,-0.18283477,-0.101189256,-0.03076773,0.2686239,0.15744445,0.1028802,-0.036478523,-0.040192153,0.0443112,-0.24046536,0.22199099,0.16366991,0.08337648,0.29978782,-0.17925501,0.44119564,0.42943606,0.6183917,-0.15653683,0.77504194,0.44256353,-0.17250942,0.22403495,-0.29754353,-0.30278826,-0.62792534,-0.33016735,-0.10712586,-0.46842402,-0.59982425,-0.14045012,-0.33643037,-0.774031,0.6199969,0.031776633,0.20076513,-0.14867337,0.37757453,0.4074903,-0.3411576,-0.23060772,-0.11191702,-0.14323135,-0.62274677,-0.23383144,-0.7379053,-0.55926967,0.14143465,0.949212,-0.26689953,0.047821227,0.017248144,-0.25328654,0.088749655,0.26540598,-0.14218965,0.1912349,0.41390345,-0.08609251,-0.79521674,0.56931543,-0.035615858,-0.31004477,-0.4816077,0.14924327,0.74409306,-0.6012735,0.45344004,0.453616,-0.09496229,-0.10035067,-0.56473416,0.02439034,-0.09017385,-0.25188574,0.48912543,0.13632932,-0.701261,0.4336774,0.40084288,-0.32397437,-0.6755437,0.8156294,0.02150515,-0.19914544,0.06577579,0.37005195,0.10627967,0.011299408,-0.4444839,0.318597,-0.42047969,0.21938123,0.35540298,-0.11551453,0.24161077,-0.10797359,-0.19554065,-0.8705861,0.20033012,-0.4649462,-0.34072414,0.29211977,0.009431356,-0.023634102,0.18768182,0.2368112,0.328963,-0.40754414,0.12080508,-0.1266318,-0.25284633,0.30850416,0.47535083,0.52961504,-0.39110607,0.59618366,0.007263056,-0.12699953,-0.13707522,0.106641054,0.4760827,0.17232253,0.41624776,0.054571528,-0.220296,0.3977371,0.6192247,0.19497742,0.53412914,0.18510172,-0.108929045,0.044818323,0.19407465,0.30987972,0.0013571637,-0.47222233,0.107310824,-0.2663559,0.035713017,0.6737533,0.15896933,0.14718816,-0.07863616,-0.3824597,0.0472983,0.25954786,0.1211039,-1.1654383,0.46099105,0.2353113,0.7761173,0.5204198,0.027541274,0.112308346,0.50022525,-0.29531756,0.074591376,0.36842662,0.13221075,-0.56876665,0.59962493,-0.7981977,0.46499962,-0.116461776,-0.071337454,0.10225354,-0.20697454,0.52823377,0.9574255,-0.12937911,0.119713865,0.04754021,-0.25993168,0.25289255,-0.49513426,-0.15017411,-0.4887344,-0.31900564,0.75674754,0.4888385,0.33546087,-0.15878011,0.07125119,0.16204987,-0.22801626,0.2053045,0.13563606,0.38198736,-0.117140494,-0.67563117,-0.16018017,0.5557974,-0.10166112,0.199546,0.016054723,-0.30603582,0.28048334,-0.13400635,0.1836066,0.009986199,-0.8969626,-0.0922221,-0.41067204,-0.35167673,0.48493305,-0.08702464,0.24657877,0.21898971,0.08224206,-0.22565378,0.41861466,0.042275198,0.7213928,0.13133483,-0.23449601,-0.17959872,0.29641703,0.28577217,-0.21882905,-0.009733751,-0.21017613,0.03329822,-0.6903623,0.51395184,0.098186135,-0.26613936,0.12949656,-0.109679095,0.07488187,0.5218879,-0.040830277,-0.23224136,-0.1012911,-0.08778589,-0.15471642,-0.19132008,-0.15729699,0.27188274,0.24384192,0.02008405,-0.1508769,0.14123353,-0.11414986,0.34453663,-0.19087513,0.5555478,0.47087142,-0.028383812,-0.43248683,-0.20439386,0.18478394,0.38494888,-0.095752396,-0.09302684,-0.26984826,-0.50585043,-0.30703142,0.04758542,-0.24123861,0.4033548,0.16543972,-0.16289137,0.85000277,-0.10604906,1.1976229,-0.014743464,-0.53433836,0.096047476,0.53951275,-0.11804887,-0.2502993,-0.36372772,1.0774907,0.41506705,-0.10840028,-0.027402142,-0.32712728,-0.054790054,0.16487744,-0.24950038,-0.24392878,-0.028468935,-0.5011379,-0.33480915,0.18531029,0.31707683,0.24367319,-0.08871853,0.09669745,0.42250603,-0.06466043,0.17371239,-0.4639047,-0.20555626,0.23817512,0.29508683,-0.15837573,-0.042232297,-0.43351296,0.5112027,-0.524762,0.13616803,-0.24935065,0.23390748,-0.3165733,-0.46948925,0.17585982,0.06345487,0.30337963,-0.29685074,-0.3300068,-0.26661333,0.44049096,0.17265697,0.12216295,0.5643031,-0.38227373,0.21727876,-0.005163624,0.35010582,0.9781167,-0.2406872,-0.11325772,0.4713904,-0.4590394,-0.5365029,0.40887478,-0.41436115,0.3221054,-0.0055781007,-0.27370983,-0.5833519,0.19215098,0.19050038,0.14326811,-0.11540025,-0.5924517,-0.09388084,0.33289906,-0.3242322,-0.26681495,-0.38718864,0.28832078,0.539302,-0.32741514,-0.36783424,0.14035007,0.08466702,-0.0896563,-0.40592545,0.013024275,-0.24356273,0.49527645,0.037351962,-0.36506334,-0.12298727,-0.04052004,-0.3943286,0.18010874,0.16489598,-0.3248356,0.1077215,-0.46669704,-0.18309353,0.9125694,-0.28417447,-0.057936706,-0.3469151,-0.4827482,-0.6652355,-0.33799484,0.52802926,0.07296662,0.12000973,-0.54151195,0.116818376,-0.18114181,-0.0317122,-0.09189852,-0.21948694,0.47526845,0.18644162,0.37067577,-0.11672736,-0.7917614,0.3141573,0.03184136,-0.19225402,-0.70735186,0.5515915,-0.11406733,0.6541123,0.15983033,0.15016833,0.5468053,-0.5905445,-0.046872754,-0.13133706,-0.07539145,-0.5695641,-0.034183167 -720,0.30197522,-0.25191367,-0.7716528,-0.3399669,-0.49627656,-0.09998874,-0.17538978,0.38496152,0.637958,-0.32353842,0.04899876,0.00033923172,-0.08889404,0.30828235,-0.18496841,-0.81936496,-0.016067602,0.36296657,-0.56062126,0.49058333,-0.5430976,0.20751481,-0.13563491,0.50369364,-0.0030854074,0.1479495,-0.10616093,0.09456381,0.050189123,-0.08156771,0.15696537,0.22663817,-0.8370556,0.5008474,-0.1322789,-0.5273724,-0.031943943,-0.5906094,-0.19990772,-0.7979439,0.39242813,-0.7218807,0.6934426,0.17957076,-0.3530508,-0.05051395,0.30760106,0.31629837,-0.22040273,0.004296067,0.37661374,-0.32214448,-0.26551902,-0.21816443,-0.45219672,-0.49340937,-0.69130015,0.06129838,-0.72422355,-0.1174785,-0.06076907,0.35845363,-0.20829411,-0.17111653,-0.561325,0.63904816,-0.5370276,-0.026087213,0.1645361,-0.15434179,0.18958558,-0.60978264,-0.20242724,-0.22110444,0.11421481,-0.1637035,-0.57371706,0.29405618,0.4552582,0.52370745,0.16914049,-0.45129558,-0.42619792,-0.0011168827,0.009772995,0.35174504,-0.37682617,-0.37222525,-0.4210557,-0.018528372,0.4188131,0.32755154,0.18812178,-0.45177123,0.3670076,0.033660192,-0.2754308,0.95519584,0.5543827,-0.36901167,-0.409589,0.22428054,0.44162562,0.00013228437,-0.2293842,0.18115875,-0.027804457,-0.52906036,-0.36997145,0.3100166,-0.14410214,0.4533784,-0.23077251,-0.099333614,0.7533785,-0.29550695,-0.47257873,0.23746052,0.02126713,-0.07644995,-0.65299433,-0.34642488,0.39368123,-0.60661405,0.04037098,-0.31038463,0.69410634,0.037608758,-0.94195956,0.2512588,-0.8322472,0.14169346,-0.11109144,0.63390833,1.0802325,0.6223523,0.4312549,0.8181683,-0.34983495,0.15864195,-0.03916129,-0.2191236,0.31785765,-0.318101,0.15695773,-0.5339083,0.11989199,-0.31037328,-0.21468724,-0.04013833,0.5412081,-0.5256274,-0.2138543,0.21806067,0.66562265,-0.2719785,-0.29507133,0.96852785,1.3397053,1.2944183,0.23321773,1.5830636,0.27525538,-0.26717472,-0.087591596,-0.14510295,-0.7953241,0.31712687,0.26908728,-0.36239493,0.33721325,0.1307014,0.3382517,0.5727605,-0.4751566,-0.16093554,-0.08902209,0.47741076,-0.1467206,-0.15494694,-0.39526084,-0.32567614,0.25693065,0.16102491,-0.028161937,0.5142217,-0.31127957,0.2861761,0.16940276,0.7676414,0.027903723,0.063246846,-0.15446296,0.3791963,0.2323452,-0.20799126,0.08685504,0.20879102,0.10054686,-0.09426104,-0.6006253,-0.018428065,-0.46850708,-0.31899107,-0.28959042,-0.30463284,0.01526128,-0.46972978,-0.45314923,-0.45446855,-0.08793039,-0.308196,0.47643825,-2.124961,-0.38394,-0.04960873,0.2072003,0.05778149,-0.31713417,-0.102039605,-0.54958856,0.46997395,0.24076647,0.39787465,-0.633481,0.8320539,0.46694595,-0.83475894,-0.0045297146,-0.8380843,0.08425809,-0.2570578,0.40832475,0.047371443,-0.20133571,-0.3183162,0.033647414,0.6887014,-0.11467839,0.13612574,0.3271854,0.5829963,-0.253298,0.5198311,0.16771673,0.6897935,-0.344948,-0.44439992,0.24328652,-0.38931835,0.24445452,0.0072320374,-0.0020240925,0.6289095,-0.6236082,-1.0978184,-0.8259339,-0.37124664,0.9388365,-0.10220335,-0.32168543,0.10237749,-0.36946508,-0.43254957,-0.025815869,0.5738053,-0.009306387,0.026355483,-0.8064015,0.01643953,-0.06190494,0.30141824,-0.106946774,0.16611521,-0.5109392,0.82202506,-0.18585992,0.31426084,0.38521835,0.14234227,-0.66359,-0.27349588,0.14987503,1.1095276,0.45409644,0.02780475,-0.31720018,-0.2371645,-0.08061159,-0.11114779,0.120260864,0.67715406,0.5355644,-0.19751334,-0.0018139671,0.57752377,-0.2764211,0.10393767,-0.23531918,-0.39548674,-0.2635521,0.2283975,0.6512528,0.7247686,-0.24019493,0.2891529,-0.12412994,0.25874084,-0.09693031,-0.5334833,0.5238005,0.8840193,0.011831885,-0.35407466,1.0078386,0.54003614,-0.565766,0.64986396,-0.535719,-0.15986982,0.3710313,-0.11195285,-0.4593706,-0.29940608,-0.42809907,0.042248346,-0.9455294,0.39053753,-0.3996393,-0.68024766,-0.46596515,-0.27195895,-3.3893557,0.37499788,-0.1785111,0.25203708,-0.051719356,-0.27223408,0.2962099,-0.7664004,-0.88693994,0.14985922,0.24007192,0.5874414,-0.36143097,0.084137194,-0.1383975,-0.39381444,-0.25795567,0.32825726,0.22606836,0.25885934,-0.023238426,-0.45273498,0.22965866,-0.25661275,-0.55705905,-0.10474814,-0.84083426,-0.36600924,-0.112591386,-0.9677667,-0.43911093,0.7346187,-0.44322455,-0.271224,-0.39773157,0.122051425,0.007468454,0.491885,-0.15672724,0.4207854,0.28186715,-0.078392975,-0.29520938,-0.08540756,0.11488616,-0.20700814,0.34016943,0.39511976,-0.27619234,0.36309063,0.6555312,1.0214267,-0.009008977,1.0121582,0.449038,-0.069011666,0.38192835,-0.15999986,-0.31426647,-0.88782173,-0.44128543,-0.2693875,-0.6158133,-0.4063713,0.15475056,-0.29427373,-0.9718163,0.66049266,0.12030011,0.051688597,-0.04279665,0.40961125,0.23204142,-0.26245916,0.06382532,-0.3650343,-0.28651774,-0.4989727,-0.4790043,-0.7485114,-0.4973686,0.009229356,1.6198857,-0.1592413,0.08980239,0.33713248,-0.20744504,0.24293917,0.49064925,0.08573467,0.17687832,0.65233666,-0.0658056,-0.52209383,0.07969964,-0.09604757,-0.0055862884,-0.38371798,0.2721699,0.9398644,-0.68579733,0.8844421,0.45637482,0.25234395,-0.14346606,-0.7695068,-0.31271145,0.20880246,-0.22537754,0.85825175,0.43162063,-0.9437571,0.63308996,0.2879186,-0.30288482,-0.9639208,0.41772616,-0.12905839,0.09556231,-0.23016228,0.58634716,0.3308131,-0.0052972515,-0.15470733,0.61185646,-0.41201618,0.26613194,0.10684312,-0.10772998,0.13952875,-0.31285238,-0.34529456,-0.89682925,-0.13518466,-0.70793873,-0.3985054,-0.035193454,-0.19120635,0.07592037,0.47497046,0.20418476,0.46637785,-0.26896912,0.13405755,-0.2143826,-0.53713375,0.15885569,0.54981655,0.2891244,-0.49597692,0.6490817,0.20167242,0.03998554,-0.4739621,-0.029852184,0.505188,0.10227792,0.6250979,0.091595575,-0.17430222,0.20589656,0.7830115,0.10704086,0.43328476,0.090606146,-0.12486562,0.14677121,0.151338,0.46458083,-0.2660272,-0.41733292,0.2421784,-0.106936164,0.065694384,0.53375417,0.06956487,0.33936298,-0.13666874,-0.19746245,0.09701955,0.16615783,-0.10276642,-1.8558681,0.34049454,0.2871945,0.78788966,0.79426044,0.21719462,-0.013721363,0.6775961,-0.40556479,-0.14754535,0.52345204,0.13165893,-0.22808002,0.49211285,-0.709275,0.5134864,-0.28550565,0.08212829,0.0857887,0.15491003,0.4114416,1.0225555,-0.19265546,0.08393316,-0.11410386,-0.04722241,0.23565604,-0.30999726,0.103008695,-0.47628143,-0.4160516,1.098974,0.45945656,0.43488207,-0.39629936,-0.04398844,0.2565622,-0.17895374,0.14430048,-0.040181268,-0.32426608,-0.1713924,-0.6926279,0.028346745,0.818968,0.20331368,0.06659455,0.16155222,-0.35145906,0.36101276,-0.08701617,-0.027909702,0.06404252,-0.67612547,-0.20243311,-0.21966648,-0.33302557,0.5364672,-0.34202918,0.0798412,0.15234175,0.2391889,-0.2098925,0.2887949,0.255646,0.5727886,0.25603372,0.055284176,0.10268133,0.24676158,0.1074996,-0.32484514,0.14431392,-0.2846491,0.27153385,-0.6808453,0.6282723,-0.062245682,-0.5166963,-0.029255455,0.09211432,0.13899994,0.41076204,-0.2524355,-0.15294272,0.12418259,-0.06535515,-0.067647435,-0.32718402,-0.3319123,0.28537992,-0.19383463,-0.007279916,-0.22874023,-0.18946376,-0.144456,0.57674795,-0.06711598,0.021295788,0.35839912,0.16677016,-0.3448315,0.15281147,-0.10681477,0.58143574,-0.13879007,-0.19490248,-0.049464893,0.043298393,-0.2642637,0.29766658,-0.013816237,0.18207116,0.07208278,-0.3754654,0.85029644,0.17411469,1.6549412,0.10388,-0.6747177,0.10230322,0.5916188,-0.22820124,0.083650306,-0.28922126,1.000779,0.6622839,-0.26682016,-0.22239019,-0.82565445,-0.16289221,0.10582668,-0.25697327,-0.22095923,0.030553339,-0.936849,-0.17766242,0.31113583,0.23129264,0.09816575,0.0008853728,0.22136673,0.22520815,0.14060643,0.3336871,-0.67931914,0.0989221,0.37073898,0.55739784,0.077400275,0.11773383,-0.26423025,0.19458117,-0.8281395,0.3852855,-0.41606915,0.116290815,-0.31451437,-0.2720585,0.19284977,0.06496784,0.36878303,-0.067701034,-0.20050946,-0.1752368,0.693734,0.0009975217,0.2207792,0.88173676,-0.40104148,0.033788037,0.11356082,0.45159882,1.1848258,-0.21055375,-0.30991313,0.23618712,-0.32270855,-0.7032978,0.26253656,-0.7460573,-0.08416701,0.083109766,-0.3024933,-0.38586682,0.21889119,0.049701452,0.095478415,0.10152843,-0.60664177,0.16318236,0.40872926,-0.13832547,-0.12915792,-0.07507467,0.31531918,0.8697628,-0.38938782,-0.5900856,0.15725118,0.451552,-0.23296018,-0.687976,0.07887826,-0.55365527,0.53615457,-0.04416826,-0.53031784,0.15596214,0.14312787,-0.48594266,-0.0651455,0.6703616,-0.29696342,0.19648375,-0.46970704,-0.11498794,1.0947489,0.07794204,0.7424145,-0.42968836,-0.6627282,-0.91755575,0.057283618,-0.2158019,0.21745925,-0.17036682,-0.63278157,-0.16216572,-0.051729206,-0.3744114,0.35534838,-0.7052354,0.42633712,0.10199428,0.60911447,-0.11939969,-1.0388317,0.045461286,0.40056297,0.088466756,-0.41094944,0.53769433,-0.17443958,1.0677345,-0.019036181,0.046170615,-0.15791777,-0.6980589,0.53791046,-0.4705902,-0.06136867,-0.62691283,-0.19363976 -721,0.5649487,0.019036116,-0.38470602,-0.18134469,-0.48623654,0.20612307,-0.27557743,0.055221446,0.14107129,-0.14602587,0.0025923513,0.0027708411,-0.1858235,0.22363268,-0.25312153,-0.6961601,-0.06692585,-0.0004905015,-0.6473788,0.55288476,-0.4764463,0.3705744,0.073650464,0.23663683,0.17396387,0.32255566,0.25911456,-0.05278857,-0.025952738,-0.1844051,-0.22221142,0.1087196,-0.8071845,0.38233095,-0.18724072,-0.3152445,-0.06097091,-0.34969097,-0.37591296,-0.6886885,0.27991927,-0.7555648,0.4676901,-0.22147655,-0.32454237,0.14913204,0.12493876,0.33568388,-0.27432883,0.0707466,0.30135238,-0.23599169,0.01425045,-0.07672488,-0.26046118,-0.4054786,-0.55880886,-0.073784634,-0.76522225,-0.012945805,-0.37102968,0.31374112,-0.27662095,0.06164114,-0.32789204,0.27168578,-0.37817442,0.15113005,0.16124362,-0.09376159,0.03671881,-0.42021978,0.034185603,-0.08989783,0.2657021,0.22671866,-0.07529274,0.29411036,0.24787322,0.35409003,0.2706821,-0.47816914,-0.2320638,-0.08739271,0.12187172,0.2908064,0.04350543,-0.07638344,-0.31325364,-0.046236165,0.51812696,0.41493675,-0.0024202839,-0.27432758,0.0898817,-0.11081876,-0.19770545,0.5041966,0.56568205,-0.36760983,-0.16796085,0.46346533,0.44966692,0.16500223,-0.29033542,0.17912652,-0.14899994,-0.3526364,-0.16867402,0.3337195,-0.07275012,0.38312334,-0.13771357,0.05834872,0.6745288,-0.15548795,0.030545242,-0.017933778,-0.21466163,-0.0037584752,-0.17448488,-0.0646658,0.10249594,-0.63106215,-0.039941482,-0.20792279,0.6596775,0.0727808,-0.87271696,0.2868302,-0.5036537,0.11904208,-0.094275385,0.6159462,0.78350616,0.66180235,0.011059681,0.80874056,-0.37804842,0.058567017,-0.300793,-0.34791708,0.15007117,-0.07823895,0.16527161,-0.48528558,0.020231895,-0.21754384,0.0037925597,-0.19178979,0.34016463,-0.2804259,-0.2502331,-0.105600014,0.6056276,-0.32977524,-0.0058151186,0.88556576,1.1224592,0.9901012,0.087418735,1.1138554,0.33720183,-0.009588569,-0.15609938,-0.27906597,-0.40143588,0.10194808,0.37063408,0.19582766,0.3420681,0.13336565,0.018135538,0.28612807,-0.15862526,-0.15286525,0.047394447,0.24860016,-0.050463296,-0.0007526167,-0.30734286,-0.32728374,0.329332,0.16757399,0.04496239,0.28136933,-0.1721361,0.42141834,0.24723026,1.1059468,0.10490363,0.10529882,0.024776518,0.4889136,0.26508513,-0.22790334,0.059869483,0.26351753,0.29303148,-0.11676639,-0.46740007,-0.020435093,-0.4041184,-0.27578962,-0.1495934,-0.45803025,-0.1400349,-0.040250108,-0.3536563,-0.11534679,0.04903427,-0.37806672,0.45236358,-2.6269588,-0.09358284,-0.1710214,0.2880965,-0.28910136,-0.21037419,-0.18864502,-0.54272383,0.37351882,0.27143645,0.34910262,-0.5660136,0.5642585,0.3745032,-0.54484135,-0.04475764,-0.6429056,0.04725551,-0.115097456,0.4786716,-0.10737981,-0.19409572,-0.20301697,0.23405103,0.7580404,0.28860897,0.1571751,0.33778912,0.45537436,-0.10416329,0.679407,0.057699114,0.43755478,-0.35714042,-0.033178028,0.53011966,-0.41662621,0.48310795,-0.027648225,0.13773525,0.3799464,-0.5499527,-0.76826775,-0.55786467,-0.40195808,1.3249686,-0.50944924,-0.5841,0.22562271,5.884096e-05,-0.14078824,0.23546386,0.38415217,0.008713022,0.14664288,-0.5168488,0.03673184,-0.15530956,0.11847115,-0.11143498,0.16959879,-0.41443682,0.7634179,-0.19985092,0.5030861,0.17564856,0.27753782,-0.11473106,-0.4135583,0.13861702,0.72558093,0.51517385,-0.08133374,-0.107028544,-0.23980872,-0.13833866,-0.24826494,0.15601546,0.7833089,0.4860356,-0.07826288,0.082698986,0.3884799,-0.20175497,-0.03703734,-0.20920101,-0.29463458,-0.09120535,0.0808208,0.45785448,0.64810896,0.0352773,0.2827438,-0.10242468,0.20536649,-0.10039875,-0.6849966,0.55095375,0.71838665,-0.085189216,-0.14615689,0.5022656,0.49707294,-0.1338493,0.49862912,-0.55167955,-0.41389334,0.5871562,0.025242712,-0.43648905,0.13139847,-0.28814963,-0.18992218,-0.6679511,0.19128154,-0.32294032,-0.6360723,-0.43287814,-0.09195216,-3.3591466,0.047268927,-0.07027433,-0.034428876,-0.14702839,-0.2860685,0.42898935,-0.45409447,-0.56085354,0.067824274,0.07749151,0.41540003,-0.14333452,0.20387274,-0.28782287,-0.25036013,-0.38646573,0.3472432,0.109660186,0.2435275,-0.1982795,-0.25350514,0.04474681,-0.18075615,-0.49459523,-0.116960876,-0.52324045,-0.35761806,-0.03283281,-0.35253903,-0.1765246,0.5820303,-0.3046022,0.00043409318,-0.21712103,-0.09788272,-0.07555015,0.2757977,0.13179646,0.20842865,0.15941922,-0.1509464,-0.13742076,-0.39135706,0.3820475,0.16893233,0.3443096,0.39937627,-0.0548569,0.090215385,0.3982172,0.5100508,-0.0743562,0.85372376,-0.01772771,-0.073293164,0.44692886,-0.16032179,-0.43560672,-0.7270353,-0.18944094,-0.34369603,-0.42651612,-0.39629945,-0.12685063,-0.3367982,-0.8993534,0.30128568,0.20390026,0.33968747,-0.3077824,0.20477405,0.42211553,-0.14374813,0.071116805,0.036794454,-0.33742374,-0.53091943,-0.52203614,-0.6717305,-0.55537355,0.14871758,0.9362077,-0.14805672,-0.039637834,-0.15056482,-0.19911642,0.16490935,0.06451235,0.16016577,0.0824047,0.3388176,-0.016017266,-0.5655748,0.47608608,-0.18176663,0.0072971135,-0.5001222,0.16898774,0.67253876,-0.5179667,0.51238734,0.30940598,0.1937407,-0.028509997,-0.7139653,-0.058785915,-0.0040514246,-0.17817196,0.6991632,0.34511963,-0.75829023,0.51939076,0.0595806,-0.1647985,-0.6816808,0.5487423,0.054073934,-0.13825338,-0.0008268878,0.35752785,0.205877,-0.07474749,0.023555234,0.22595982,-0.5216218,0.3067177,0.3452894,-0.0003500022,0.3579856,-0.05705962,-0.34398663,-0.5951282,-0.144532,-0.5388764,-0.28073558,0.13388264,0.0084069185,-0.009130582,0.1446821,0.01556731,0.4725564,-0.12128717,0.2912005,-0.121525556,-0.23308152,0.5815265,0.5476152,0.46349797,-0.45782676,0.54985774,0.19815229,-0.15089047,0.08241671,0.16076237,0.34079129,0.12568723,0.34491572,-0.06744801,0.007544631,0.109431714,0.46172404,0.2904148,0.29065827,0.06212599,-0.3343032,0.362377,0.07259102,0.19976115,-0.1840076,-0.5164693,-0.038204014,-0.034403298,0.15237355,0.4332032,0.03485913,0.3700495,-0.008302327,0.037828095,0.15679847,0.08025073,-0.2785405,-1.2192662,0.29149607,0.27863503,0.7889534,0.50850844,0.0862301,-0.06324131,0.5647098,-0.2626764,0.037905894,0.44705695,0.15564717,-0.24766468,0.44608447,-0.64290506,0.37531257,-0.046219334,0.013310136,0.2394107,0.22423878,0.4197309,1.0134276,-0.107671015,0.050423786,-0.07458858,-0.27660358,0.12161651,-0.1369253,0.18481393,-0.36134952,-0.44460875,0.6251592,0.26938915,0.3948393,-0.3981858,-0.15489201,-0.074822545,-0.17396078,-0.0126421,-0.096494086,-0.14876556,-0.15529302,-0.4115801,-0.35596913,0.5055376,-0.22826703,0.101956084,0.07586027,-0.20476875,0.21667227,0.016880883,0.017212667,0.047105078,-0.74165785,-0.031509332,-0.19102079,-0.26910773,0.25845155,-0.3808239,0.31794477,0.113025665,-0.088948384,-0.2618115,0.17311266,0.16907126,0.57438356,0.02653598,-0.061045248,-0.2846474,0.013776988,0.23854873,-0.29974484,0.030687876,-0.26964477,0.06513865,-0.65541905,0.27908117,-0.35642093,-0.304254,-0.002442291,-0.17816657,-0.06805365,0.4515891,-0.09284943,-0.12340194,0.23336534,0.11269209,-0.37021694,-0.19793466,-0.22618479,0.16558805,0.09301095,-0.1372897,0.12828079,-0.042018313,0.07147235,0.38046014,0.17745075,0.2395685,0.11957072,-0.11618352,-0.4785425,0.04561366,0.041985393,0.34589258,0.13942614,0.07749033,-0.2263556,-0.3873198,-0.37980497,0.48856223,-0.20979631,0.06843881,0.03707326,-0.23670247,0.73628336,0.04947714,1.0915347,0.049983438,-0.32090843,0.13180505,0.60288334,0.052124258,-0.020554608,-0.292628,0.9210286,0.6286846,-0.08430448,-0.048727088,-0.48217967,-0.26518768,0.0898331,-0.33212724,-0.3123806,-0.020512734,-0.5853983,-0.051569715,-0.048368856,0.25545514,0.019352026,-0.082146145,-0.2308653,0.26914245,0.2036978,0.60626006,-0.43530408,-0.27737427,0.37154225,0.028521124,-0.11858416,0.10403617,-0.33475527,0.42074543,-0.7218345,0.103881076,-0.3329321,0.045475796,-0.21841313,-0.2847513,0.18750836,-0.05003531,0.30789846,-0.25050324,-0.46552452,-0.17306826,0.47600362,0.29285818,0.28063577,0.6863394,-0.16552152,-0.03561819,0.05313839,0.54182744,1.0972434,-0.12580833,-0.04055597,0.27757472,-0.35200208,-0.6018586,0.06400202,-0.40168685,0.062362682,0.013763359,-0.4708184,-0.1507689,0.30226085,-0.0011880286,0.06820931,0.12385947,-0.76123375,-0.07222003,0.17008667,-0.17761284,-0.25025585,-0.20661594,0.29195276,0.81614137,-0.3302969,-0.4015357,-0.0076912753,0.28765556,-0.19171861,-0.6365529,-0.018587057,-0.22267896,0.22496155,-0.06931076,-0.27536082,0.06412883,0.3907432,-0.44332775,-0.018005982,0.12542617,-0.31971008,0.10268772,-0.12637183,-0.03134636,0.758015,-0.0009882152,0.026986867,-0.5090433,-0.53573054,-0.74280775,-0.40784308,-0.14881247,0.2827766,-0.026786998,-0.39231277,-0.11685343,-0.2747449,0.035791762,0.031420317,-0.6089236,0.3946244,0.17141825,0.4786522,-0.12067965,-0.90588844,0.078218274,0.14931384,-0.14845762,-0.4539277,0.66179496,-0.3387617,0.5978068,0.14126222,-0.06361267,-0.11631495,-0.7047264,0.22521463,-0.36159685,-0.14893138,-0.6807573,0.20608449 -722,0.4849853,-0.25346002,-0.35963935,-0.19191371,-0.17371015,-0.11548181,-0.17653094,0.46490845,0.2428511,-0.5564327,-0.058887053,-0.17447251,0.032535903,0.20658894,-0.09040096,-0.47768152,-0.13413645,0.05064199,-0.25611442,0.5077241,-0.52524394,0.2574869,0.118051164,0.3414893,0.108565524,0.20547454,0.01078138,-0.1882691,-0.17592843,-0.4309799,0.016727606,0.3317868,-0.74236876,0.11500933,-0.23325856,-0.411688,0.00698572,-0.6731871,-0.44401264,-0.6778781,0.1255236,-0.8793353,0.6222032,0.24536748,-0.273685,0.3518791,-0.08331337,0.23242909,-0.098077744,0.26056778,0.30151463,-0.24287432,-0.026667984,-0.22611602,-0.17437264,-0.25735146,-0.68781847,0.021633275,-0.40403742,-0.14137405,-0.21615823,0.17274718,-0.2758458,-0.12384868,-0.13191563,0.5110462,-0.5157913,-0.05294307,0.067368336,-0.104596384,0.54649895,-0.47691256,-0.20870362,-0.18844722,0.07458762,-0.3443524,-0.2890815,0.20642015,0.34157532,0.55571216,-0.103846215,-0.21817899,-0.2666392,0.010601035,0.063702315,0.5924067,-0.33177227,-0.5198823,-0.04860949,0.0066105765,0.13822389,0.30532712,-0.0022833527,-0.3615256,-0.109367274,0.047148418,-0.2762827,0.45086688,0.61504614,-0.297622,-0.2542683,0.33084953,0.3746573,0.1925575,-0.065042995,0.087656066,0.045384504,-0.53058815,-0.09094412,0.13037233,-0.23778364,0.4470135,-0.14307265,0.14352491,0.66955745,-0.2516831,0.123892024,0.048548352,0.04469355,0.11516073,-0.32352048,-0.42192233,0.38934305,-0.449999,0.29415414,-0.3368905,0.795374,0.05319444,-0.79235953,0.3596737,-0.6028265,0.13929805,-0.111042164,0.5232414,0.649778,0.44680455,0.40266857,0.52683836,-0.45893222,0.013663213,-0.09266402,-0.2990292,0.031455103,-0.124111705,0.021283384,-0.4369174,-0.22083572,-0.03268981,-0.19195679,0.056109484,0.44321314,-0.5553175,0.03557188,0.20953862,0.7386186,-0.28217372,-0.059659854,0.74532104,1.0804552,1.1899608,0.12674268,1.1169887,0.29224974,-0.22982709,0.087778546,-0.26538146,-0.60577506,0.27368692,0.43148127,-0.40033564,0.24817796,0.12792368,-0.0932077,0.34017155,-0.46770313,-0.02589001,-0.18749589,0.119388424,0.013102754,-0.17019258,-0.56238216,-0.23435529,-0.17990912,0.14811435,-0.13681498,0.18421237,-0.34682757,0.2214256,0.07827628,1.3942839,-0.14890122,0.03773178,0.11292145,0.35608858,0.14390446,-0.15880993,0.03829132,0.26543295,0.4143063,0.15004882,-0.58288383,-0.00092918077,-0.09212642,-0.47893858,-0.14288963,-0.21366678,0.06570628,-0.015562396,-0.47992638,-0.14068098,-0.073467456,-0.38763008,0.42559782,-2.5936656,-0.04933991,0.02521509,0.2953212,-0.24185963,-0.44525445,-0.058541544,-0.4465391,0.45211563,0.32089552,0.44609526,-0.78451836,0.3159369,0.5889285,-0.50310475,-0.046709932,-0.6861763,-0.17822622,-0.20149708,0.16919567,0.08801613,-0.082780026,0.025906188,0.036596093,0.60107076,-0.022225944,0.092975564,0.09671483,0.32895386,0.024577921,0.5125691,-0.069424786,0.33071375,-0.09587756,-0.21321939,0.44853547,-0.3276903,0.026568595,-0.21622747,0.08860925,0.36702028,-0.46013445,-0.8818991,-0.8347397,-0.4527399,1.0294667,-0.072769925,-0.46364465,0.24483916,-0.17214528,-0.40021783,-0.06375999,0.48856765,-0.2112031,0.0027968765,-0.8533704,-0.03719648,-0.13005562,0.1451176,0.04202688,0.15275975,-0.5096819,0.66662675,-0.066502,0.25384453,0.4416728,0.17440042,-0.18588361,-0.52444595,-0.01042498,1.1887963,0.3825979,0.2458383,-0.29980353,-0.1392011,-0.15225098,0.010360623,0.043211274,0.5279869,0.8289893,-0.16812934,0.08064338,0.26386064,0.0030529697,-0.029102925,-0.21008743,-0.27887732,-0.01921969,-0.007801843,0.6561508,0.5491206,-0.12715818,0.49627194,-0.08551042,0.32996368,-0.06766896,-0.37704608,0.3680071,1.244323,0.028068017,-0.17431921,0.74184906,0.43019715,-0.21118206,0.45530292,-0.5641889,-0.2798738,0.37958017,-0.22556283,-0.5057795,0.2874142,-0.36482173,0.1764501,-0.792709,0.39874125,-0.2198793,-0.49571148,-0.6074434,-0.17583132,-2.9688542,0.16262229,-0.24858409,-0.13684921,-0.024122901,-0.11645509,0.38964698,-0.537911,-0.4965595,0.1861368,0.10403991,0.6050933,-0.1257815,0.11637105,-0.21487838,-0.32674015,-0.34341347,0.28381565,0.25905767,0.25645056,0.07509109,-0.3557654,0.002196479,-0.087278135,-0.45881227,0.035749402,-0.5381641,-0.55172545,-0.11574774,-0.5858495,-0.39659366,0.6432941,-0.30632892,0.037777904,-0.06903954,-0.055000346,-0.09765038,0.31775042,0.18263982,0.23950952,-0.14333548,0.063051835,0.025933178,-0.19926138,0.406356,0.14167179,0.12517871,0.2660912,-0.20557146,0.15023294,0.40164343,0.5534563,-0.13251804,0.9279039,0.63442266,-0.20393406,0.22562477,-0.36293834,-0.20708741,-0.71538085,-0.39311722,-0.07506867,-0.44824114,-0.43766505,-0.046652492,-0.31686336,-0.7728332,0.5640703,-0.20098588,0.09382634,0.037209574,0.26578134,0.4610942,-0.17782217,-0.12532547,-0.06732093,-0.023897976,-0.47524735,-0.30348274,-0.59377706,-0.3866997,-0.09119206,1.0325276,0.027126933,-0.015732052,0.09727053,-0.038595088,-0.13448673,0.032132458,-0.051637404,0.053409252,0.527248,0.12259051,-0.7764614,0.33719265,0.12381611,-0.26601467,-0.62834513,0.20610823,0.76594865,-0.7436642,0.58440465,0.3499342,0.12804689,-0.098493546,-0.6073831,-0.26764926,0.0044595064,-0.3046164,0.47803238,0.1771427,-0.73670715,0.48675606,0.40664583,-0.30573368,-0.64710784,0.46287218,0.013390208,-0.287032,0.048477344,0.3270846,0.008334466,0.045513462,0.02102882,0.43805584,-0.398358,0.38097614,0.17372346,-0.07075863,0.19564451,-0.20644751,-0.0495915,-0.80580163,0.13083147,-0.4129747,-0.4614604,0.1928115,0.082942866,0.043528054,0.37697217,0.04258313,0.4686907,-0.16859435,0.18313853,-0.18402365,-0.25128296,0.35661107,0.44882903,0.35799858,-0.23523615,0.6388442,0.03196133,-0.21178512,-0.27342588,0.012144718,0.43562952,-0.07987773,0.24039663,-0.093157485,-0.35190046,0.30335313,0.7368052,0.20774263,0.51269084,0.028938023,0.016622094,0.32889426,0.124024816,0.1257977,-0.033257585,-0.55391693,-0.058056895,-0.21855173,0.08888449,0.43926907,0.03514215,0.25482285,-0.23293622,-0.24207889,0.06516462,0.31658542,0.08019268,-1.0949038,0.2513415,0.075330265,0.7562923,0.69606835,0.03717316,0.08836532,0.54743034,-0.21539411,0.0014911215,0.39109808,0.04908436,-0.48043993,0.54414976,-0.62039924,0.33762792,-0.123397924,0.057675235,-0.062501624,-0.18408702,0.49163282,0.7348454,-0.20484467,0.0834875,-0.10614346,-0.20140058,0.09721597,-0.38616282,0.16412023,-0.49781975,-0.29932186,0.86181986,0.47755915,0.4071525,-0.099485666,0.038981874,0.18902826,-0.17119846,0.12752678,0.13171582,-0.08861747,0.020820547,-0.6133592,-0.07063546,0.575605,-0.06206713,-0.03195803,0.022088906,-0.12597632,0.22544187,-0.16087487,-0.16217397,-0.051866803,-0.68501776,-0.15663789,-0.53313977,-0.30301097,0.41909426,-0.18814255,0.22106315,0.12319995,0.10982883,-0.13059987,0.2730662,0.45010024,0.73727816,0.09303641,-0.14564759,-0.2758445,0.29609698,0.16229476,-0.18826002,-0.29821724,-0.20307897,0.007256613,-0.77590746,0.4847642,-0.15954538,-0.34394008,0.07892931,-0.1262765,0.016296651,0.5546798,-0.11208933,-0.18867384,0.12076936,-0.19988003,-0.26473486,-0.1933664,-0.029476548,0.32138374,0.17371985,-0.14721805,-0.041245777,-0.16786472,-0.22122549,0.44248533,0.08379684,0.40661937,0.3734935,0.14050558,-0.29957336,-0.14437151,0.059516303,0.5440398,0.00781037,-0.11484166,-0.26441747,-0.45705798,-0.32079417,0.040691536,-0.09038119,0.43520927,0.043925628,-0.26442292,0.9326965,0.094724625,1.1821717,-0.009455553,-0.37608355,0.07118059,0.41594505,-0.038685106,-0.04403697,-0.4118695,1.0371146,0.4920475,-0.022829017,-0.17296009,-0.2966689,0.050497618,0.12814052,-0.12359267,-0.1689062,0.0037234703,-0.8195999,-0.24453881,0.26757306,0.35004833,0.06407262,-0.045060236,0.08097174,0.32491115,0.064303525,0.4274564,-0.30833352,-0.021797132,0.27927488,0.35688803,0.050212324,0.08235184,-0.33345643,0.30089724,-0.31563056,0.04890763,-0.29664353,0.031152206,-0.1847523,-0.20725875,0.28500387,0.04581774,0.3533706,-0.36047336,-0.31315696,-0.15136568,0.4782766,-0.13899316,0.15461239,0.53616995,-0.23039623,0.0982032,-0.07037655,0.48630422,1.3282875,-0.24656792,0.0757104,0.3922456,-0.4239226,-0.52288276,0.40679118,-0.19642277,0.060444474,0.12854654,-0.34785128,-0.37069127,0.12976772,0.066284545,-0.094712585,0.1686687,-0.5291265,-0.11428849,0.281634,-0.2866455,-0.17570609,-0.27174148,0.20668025,0.6561184,-0.31696087,-0.3900739,0.012735488,0.21419808,-0.31573963,-0.4476081,-0.0042028488,-0.348807,0.27796325,0.16342601,-0.31362662,0.03506795,0.054101583,-0.4428929,-0.013601263,0.2338596,-0.38124266,0.046898343,-0.3177529,-0.062069252,0.91130435,-0.1607268,0.090651825,-0.5363056,-0.531824,-0.95610875,-0.23604757,0.5039329,0.24688932,0.08788254,-0.4801311,0.018778384,-0.036356173,-0.09325927,-0.083189294,-0.3488086,0.44567534,0.265356,0.46472532,-0.21522021,-0.6534106,0.10712186,0.19426909,-0.1925966,-0.561259,0.5076681,0.1507526,0.83050215,0.09327011,0.077773355,0.25880387,-0.5080689,-0.012297982,-0.1289908,-0.25060144,-0.7761153,-0.024527617 -723,0.41164654,-0.338689,-0.4000464,-0.18695916,-0.32854578,-0.06448952,-0.14552538,0.49138707,0.2920759,-0.4686167,-0.263801,-0.09343112,0.0076190555,0.31134102,-0.14147112,-0.6219544,0.011178464,0.27276656,-0.32483453,0.6185382,-0.42608607,0.27176905,-0.043672517,0.253901,0.39017093,0.29367453,0.044222374,-0.19616316,-0.045816198,-0.22883661,-0.16861609,0.22307365,-0.39846677,0.29574162,-0.081784755,-0.35130256,0.086960986,-0.551674,-0.3592239,-0.72914684,0.21794574,-0.79928464,0.37338597,0.06749392,-0.34199253,0.21617934,0.016063113,0.44256654,-0.25716922,0.05338282,0.2871954,-0.12542148,-0.07617774,-0.12407406,-0.08284512,-0.3723648,-0.49429578,-0.17169744,-0.23270504,-0.17299274,-0.3291221,0.08512296,-0.44194272,-0.08494795,-0.07481183,0.45662796,-0.49624032,0.21747662,0.2625077,-0.19807276,0.35923612,-0.5293901,-0.18120286,-0.14314483,0.310473,-0.16109355,-0.20147637,0.41187385,0.22919211,0.2671654,0.10190043,-0.09369819,-0.25538105,-0.026597427,0.31798363,0.5708159,-0.09363857,-0.30795747,-0.004659648,0.046239514,0.17146489,0.18630807,0.024430394,-0.25090724,-0.20321557,0.19291183,-0.31162056,0.19269003,0.4501813,-0.25859812,-0.15486918,0.40232342,0.5387444,0.21296875,-0.12801999,-0.030756226,0.08939075,-0.52773374,-0.22961389,0.07487227,-0.28423882,0.49321893,-0.24232769,0.22822364,0.77959216,-0.22187884,0.0037355055,0.033366963,0.20773187,-0.21701075,-0.18002129,-0.4657873,0.28376672,-0.39780936,0.19807467,-0.111425444,1.0112232,0.29990992,-0.5799641,0.26062223,-0.5806376,0.2082042,-0.31616938,0.42099798,0.55988735,0.4015921,0.45442405,0.7272829,-0.39257467,0.16190177,-0.013475794,-0.50113356,0.12629946,-0.306029,-0.05806468,-0.48595384,-0.12006144,-0.052610833,-0.20978436,0.1446496,0.3790366,-0.5625428,-0.011155658,0.123066776,0.8775767,-0.29898173,0.05217616,0.6415246,0.94203985,1.0392199,0.108689435,0.98935115,0.26413187,-0.3351631,0.07203062,-0.3040201,-0.711966,0.3179066,0.46970308,-0.29602093,0.21316406,0.23007645,0.10839757,0.39536682,-0.43304363,0.06430478,-0.32122374,0.16954948,0.1408096,-0.16930352,-0.5833062,-0.3227272,-0.25267172,0.175724,-0.18292353,0.21340337,-0.07903063,0.3316096,0.091229,1.7070554,-0.034613702,0.041064337,0.027201368,0.40555793,0.1911065,-0.27943593,0.008588617,0.36330193,0.4396858,0.07998378,-0.7217157,0.1788632,-0.22605754,-0.33791834,-0.16935928,-0.32227248,0.047559936,0.13616286,-0.4120514,-0.10189514,-0.026837949,-0.17086202,0.54269886,-2.57059,-0.15632772,-0.15608785,0.44367743,-0.24600363,-0.2551906,0.05020196,-0.46805224,0.2949374,0.2941267,0.62074864,-0.70284945,0.33648017,0.45566538,-0.69438815,0.025197286,-0.61338615,-0.2670119,-0.12859571,0.30413073,0.11340494,0.14894046,0.048091218,0.18422708,0.38512754,0.07274905,0.13592497,0.2725889,0.36596122,0.11858877,0.6607551,0.030775942,0.4985067,-0.19241293,-0.16930272,0.21263331,-0.28350517,0.27411053,-0.050257172,0.08701897,0.5523013,-0.38445583,-0.89620006,-0.7902686,-0.23116446,1.1422635,-0.17920925,-0.41755897,0.34216708,-0.21334478,-0.362907,-0.14143017,0.2323381,-0.066046596,-0.18436494,-0.8975205,0.0125915725,-0.054102127,0.14518535,0.14762375,-0.28813112,-0.43749925,0.79017645,-0.03170615,0.49153244,0.31927234,0.20556599,-0.030194364,-0.29954556,-0.060365062,0.81200016,0.40692848,0.12728752,-0.35075167,-0.20565653,-0.26075062,0.023723276,0.13736771,0.40436855,0.58351934,-0.21459392,0.01524451,0.31899917,-0.059639357,0.07462445,-0.14137483,-0.34794638,-0.03899197,0.0011426669,0.5169815,0.6188735,-0.1820592,0.42346847,0.023936365,0.33934104,-0.014877374,-0.47156778,0.2789702,1.0897498,-0.052297994,-0.32056645,0.52575564,0.5646236,-0.114338756,0.34808937,-0.5256982,-0.11794511,0.40310076,-0.17786333,-0.3518888,0.09983262,-0.3642065,0.23513684,-0.7966528,0.46004412,-0.261109,-0.6495521,-0.59387743,-0.072927445,-3.2785203,0.23589842,-0.36882803,-0.20640685,0.04924985,-0.0096510835,0.23984286,-0.76755977,-0.5089665,0.3112257,0.11417794,0.77100825,-0.06831197,0.07975586,-0.1868066,-0.17755435,-0.31187347,0.008888061,0.063301,0.33402088,0.13460296,-0.4922627,0.054453135,-0.03339082,-0.37226245,0.1841999,-0.6044844,-0.5632943,-0.20105842,-0.5745983,-0.42028677,0.59153503,-0.21580039,-0.04110786,-0.10452592,0.15582512,-0.22576927,0.2329727,0.1711693,0.0940844,-0.03391991,-0.01769085,0.0058131632,-0.28059876,0.33365932,0.057195526,0.410799,0.04445442,-0.061944988,0.049077366,0.6764123,0.5192347,-0.114996925,0.8744875,0.5931858,-0.24544922,0.071328886,-0.26744276,-0.3383039,-0.5396033,-0.35812944,0.050019566,-0.41005802,-0.47434556,0.02551838,-0.3375093,-0.81661975,0.62778723,0.07515225,0.11862298,-0.0030642003,-0.0039960006,0.5179371,-0.0663866,-0.08584098,0.12040591,-0.13804916,-0.6938001,-0.14351532,-0.61975247,-0.33083314,0.20451117,1.0425547,-0.3950176,0.118794866,-0.030482007,-0.41603667,0.05567705,0.10876933,-0.10521192,0.121379785,0.49593624,-0.12708345,-0.64198214,0.44571608,0.032490976,-0.08256463,-0.6904296,0.31115752,0.6376836,-0.5713982,0.50267917,0.35029703,-0.092298135,-0.04660034,-0.44637552,-0.3939444,-0.08815901,-0.16955186,0.39723,0.06528507,-0.5733122,0.3318895,0.30171984,-0.32994047,-0.62537533,0.53845906,-0.123076476,-0.24843517,0.0026323611,0.1886069,0.08445445,-0.059348993,-0.08765101,0.3703807,-0.35836184,0.33586815,0.25967395,-0.1506441,0.05696666,-0.14577816,0.041077234,-0.9232743,0.030505607,-0.31824344,-0.2028241,0.26412696,0.13183072,0.06788309,0.08744963,0.2823124,0.3862886,-0.22564481,0.076374836,-0.039906718,-0.38260448,0.4800272,0.4384346,0.42280373,-0.38806647,0.57175726,0.07997059,-0.07919517,-0.06888996,0.026592327,0.3764326,0.13529441,0.4455939,-0.034230947,-0.24561524,0.29420418,0.8411313,0.2349715,0.5982208,0.015203114,-0.06840916,0.11809957,0.10540957,0.25901443,0.019279866,-0.61017424,0.1335161,-0.1343967,0.13294142,0.42129976,0.20009759,0.27453858,-0.0700413,-0.4803568,-0.0124200685,0.11051758,0.08846232,-1.3016855,0.5000544,0.21608767,0.7727115,0.39951992,-0.023770185,0.014521516,0.78967434,-0.11705041,0.11527522,0.1982024,0.005357307,-0.53536075,0.410337,-0.746162,0.35471073,0.043165963,-0.07244898,-0.00154299,-0.07064615,0.43851164,0.6219674,-0.2264484,0.0010117659,-0.13462292,-0.4560258,0.16961296,-0.50571406,0.014454512,-0.68579537,-0.3789188,0.5349702,0.5679384,0.3773376,-0.075046636,0.012928502,0.05389232,-0.08706722,0.27272648,0.15706924,-0.036419954,0.15266067,-0.73627114,-0.12652276,0.4846728,-0.33848852,0.18298131,-0.17019469,-0.12756117,0.28827584,-0.11218886,0.03395325,-0.0813434,-0.70596,0.0020709587,-0.2062274,-0.41142184,0.48703486,0.11939342,0.37136218,0.17952545,0.024740381,-0.051729076,0.43020487,0.12771943,0.8460975,-0.017098345,-0.16022703,-0.4506892,0.09235703,0.13451461,-0.041662034,0.0775673,-0.3704922,-0.039431207,-0.6015437,0.43692163,0.0739771,-0.2782436,0.10305352,-0.20134561,0.017426085,0.5523196,-0.13468038,-0.17996462,-0.17651774,-0.15259248,-0.24935032,-0.24863885,-0.12076791,0.25935152,0.31446695,0.008094948,-0.17569536,-0.116973154,-0.10184263,0.46803153,-0.058816556,0.42869264,0.29960543,0.011336341,-0.23539479,-0.37035716,0.0742104,0.4016484,-0.060248367,-0.269309,-0.35223195,-0.5481491,-0.41491944,0.08507901,-0.108810216,0.47121158,0.022250572,-0.23185198,0.67863333,-0.1690797,1.1424421,-0.058737718,-0.4161344,0.090418406,0.5639852,0.13293241,-0.004260056,-0.23828664,0.7965809,0.57721734,-0.11661757,-0.04857699,-0.5956166,-0.10937624,0.14191686,-0.13963357,-0.045057885,0.15868849,-0.6033206,-0.19390163,0.2528741,0.14351906,0.20407845,-0.050027728,0.09441163,0.38438067,0.119066015,0.17984898,-0.3732568,-0.31299114,0.22275235,0.19843143,0.16266908,0.096294455,-0.5818671,0.377196,-0.34410477,0.13002159,-0.29311913,0.20342383,-0.29601,-0.2762562,0.24711147,0.075862974,0.34920913,-0.31581065,-0.32184616,-0.24739368,0.6278521,0.10244706,0.056590743,0.55458474,-0.2661967,-0.012899781,0.13220897,0.39142334,0.90100384,-0.34038737,-0.020226588,0.631332,-0.44817513,-0.53093886,0.29479754,-0.2118869,0.04087948,0.15281177,-0.3527985,-0.69365215,0.2564093,0.19578633,-0.033781327,0.18490306,-0.4957003,-0.17951499,0.29379922,-0.44313353,-0.181952,-0.36922115,0.16625386,0.4759771,-0.37957987,-0.50312006,0.056650206,0.12059694,-0.18775104,-0.32313398,-0.18206239,-0.3294017,0.30173284,-0.06341,-0.36085322,-0.28662187,0.038591843,-0.2584829,0.07366569,0.0465642,-0.3989234,0.14900658,-0.27033454,-0.054786112,0.90624434,-0.30525193,0.08074334,-0.7190341,-0.2820701,-0.73535275,-0.32960862,0.69052094,0.090989225,-0.08275625,-0.5941342,0.06363611,0.15788515,-0.07899232,-0.21819264,-0.4133901,0.48998457,0.1411298,0.31864357,-0.014890997,-0.8247441,0.21551822,0.06845699,-0.22990173,-0.67838204,0.58220774,-0.22435817,0.85970825,-0.039811037,0.19421402,-0.024538787,-0.22044145,-0.018526921,-0.2768466,-0.4772165,-0.72763675,-0.13929603 -724,0.53554374,-0.07275382,-0.55666065,-0.13828397,-0.38622624,-0.030850977,-0.13727228,0.38698405,0.1807832,-0.31815943,0.030212529,-0.049591064,-0.100306466,0.41675508,-0.14175679,-0.7048691,0.0951727,0.09350742,-0.5273644,0.6811823,-0.41134852,0.34732747,0.0032308754,0.24751404,0.18201642,0.15528733,0.14133264,-0.034391858,0.06366676,-0.08139378,-0.11190364,0.25987756,-0.46130782,0.083926596,0.09032766,-0.17778793,0.042133294,-0.37059152,-0.3091329,-0.66063464,0.227333,-0.66553247,0.49240726,0.0049619526,-0.3590607,0.14705843,0.14429998,0.30431196,-0.26062268,0.02269034,0.21999387,0.02343461,-0.1048823,-0.0033878312,-0.08999918,-0.51271874,-0.515785,-0.0884356,-0.5475311,-0.3199761,-0.371983,0.11441767,-0.39591247,-0.06345566,-0.14742035,0.5585909,-0.43004763,-0.14159521,0.15119153,-0.14272183,0.19466186,-0.6591457,-0.007422358,-0.082040526,0.07123922,-0.035333917,-0.15677723,0.32035744,0.21126497,0.5543075,0.018244991,-0.2126956,-0.2174329,-0.18384323,0.12728715,0.41616637,-0.27236184,-0.35634455,-0.11484262,0.08414819,0.21443307,0.012520131,0.054314725,-0.3943672,-0.04866772,0.1042956,-0.21821846,0.27437174,0.4938884,-0.37708727,-0.098123536,0.41560802,0.41108146,0.22031598,-0.027312614,0.11531988,-0.08944097,-0.510638,-0.114121795,0.0073911343,-0.25498962,0.29862136,-0.12180383,0.16228715,0.6292677,-0.14183648,0.04893534,0.0061546825,0.098317884,0.14333871,-0.25290743,-0.2721408,0.15883228,-0.6724042,0.1550487,-0.07346339,0.74957645,0.16863188,-0.56432486,0.28015593,-0.46612862,0.1372977,-0.13014334,0.43910515,0.7959042,0.3495526,0.1427845,0.71802676,-0.40736535,0.1210147,-0.15673004,-0.22284426,0.16545804,-0.039092593,0.08988405,-0.47408795,0.08632084,-0.06571817,-0.15763386,0.0027776216,0.36684924,-0.61303353,-0.21286163,0.21703334,0.68696356,-0.313472,0.06813881,0.53234273,0.9476842,0.91109866,0.088580295,0.96786314,0.2572341,-0.10810031,0.213391,-0.23174122,-0.5451733,0.23344886,0.40839,-0.06995082,0.19281666,0.027001828,-0.06811693,0.48315006,-0.24177164,-0.112777874,-0.33021793,0.54245126,0.09422707,-0.1996117,-0.3634094,-0.22738022,-0.011397094,0.12775902,-0.09451627,0.34878266,-0.30404565,0.07779468,-0.1289377,1.4286278,-0.12969662,0.16863474,0.18021193,0.3792048,0.36604232,-0.18615957,0.030948825,0.32857448,0.37080473,0.096246496,-0.5815942,0.08153157,-0.38783687,-0.42635012,-0.119378656,-0.3514502,-0.021098852,0.077415615,-0.4918041,-0.06761656,0.052033905,-0.17573729,0.48949775,-2.5236933,-0.24052642,-0.10889343,0.2506198,-0.2873619,-0.3146315,-0.21012223,-0.27396578,0.4015724,0.3074762,0.5388967,-0.5489554,0.4021589,0.37451023,-0.54709387,0.0397881,-0.5233518,-0.07409908,-0.05868603,0.36726424,-0.11769895,-0.19116029,-0.021484613,0.28463042,0.5933952,0.018256359,0.15183266,0.3864107,0.26317635,0.05119914,0.38731274,-0.058276072,0.3980174,-0.22021244,-0.16038886,0.33077076,-0.22835755,0.18664204,-0.03253159,0.1843484,0.40256688,-0.40252396,-1.008834,-0.4594567,-0.17692685,1.1841372,-0.3340547,-0.39847553,0.40264708,-0.1653719,-0.20094624,0.06272628,0.3949149,-0.028336948,-0.008821823,-0.77012795,0.26581898,-0.042327356,0.18358856,0.051894233,-0.066999204,-0.29162842,0.5648129,-0.1693247,0.48445553,0.33138835,0.30971295,-0.18022662,-0.42627326,-0.076422766,0.9816953,0.5776096,0.07351285,-0.19402634,-0.10569162,-0.23808394,-0.102347,0.14935246,0.37282318,0.70004404,-0.0037698261,0.058124892,0.18487833,-0.04472921,0.02330849,-0.17933379,-0.37642717,0.026985275,0.10609,0.43071947,0.44109544,-0.14220242,0.4713997,0.011319375,0.041400522,-0.10914014,-0.6018377,0.3985059,0.9182261,-0.2238093,-0.22348899,0.5931636,0.33131346,-0.15046616,0.4172666,-0.57385963,-0.25817394,0.47014648,-0.2524555,-0.37847987,0.27907532,-0.34519494,0.21813688,-0.7475356,0.37628478,-0.346376,-0.48473346,-0.5450465,-0.16744974,-3.437225,0.24606499,-0.3209773,-0.12897123,-0.13632108,-0.11805886,0.30099696,-0.5945749,-0.46988446,0.19574001,0.038117446,0.7554457,-0.031908058,0.04194369,-0.22781458,-0.392224,-0.2258251,0.12345359,0.035775125,0.26432887,0.049116187,-0.3737008,-0.09980889,-0.0317723,-0.49202263,0.13106015,-0.6187986,-0.48872152,-0.21957707,-0.5178107,-0.117019296,0.68307483,-0.18598765,0.07206261,-0.09081198,0.037656844,0.00309241,0.19912183,0.20158228,0.18317239,0.1306823,-0.07418702,-0.1260795,-0.29320508,0.12625706,0.09869453,0.28832912,0.35854936,-0.0305957,0.03693051,0.6425071,0.6147453,-0.10247957,0.82734025,0.42170525,-0.1664383,0.29342347,-0.2969393,-0.18653388,-0.5134444,-0.40402272,-0.19249323,-0.3748784,-0.44078696,-0.014335319,-0.3321572,-0.7022705,0.48563224,-0.16469295,0.20741451,-0.13226563,0.25326073,0.4462673,-0.13746658,-0.10176789,-0.09279431,-0.17592065,-0.4234971,-0.24832311,-0.5725821,-0.385633,0.18573484,1.1255168,-0.395644,-0.07045852,-0.14520276,-0.031638402,-0.030276759,-0.17523104,0.14605825,0.21314208,0.19268951,-0.051885277,-0.52664846,0.32652625,-0.13843223,-0.04730863,-0.45254987,0.1427331,0.5788943,-0.5040629,0.5091491,0.21060255,0.10495393,-0.04745479,-0.6718769,-0.11623296,0.27935368,-0.2920202,0.4396009,0.1817947,-0.73394895,0.4951496,0.4331918,-0.38216677,-0.74908185,0.41223913,0.009771908,-0.25550848,-0.048944395,0.39068854,0.23759133,0.026274804,-0.17775042,0.35057902,-0.4808018,0.2866646,0.28293386,-0.16555543,0.29541355,-0.25639084,-0.29851854,-0.6704431,-0.036957256,-0.4724017,-0.3019934,0.07938366,-6.485917e-05,0.023763765,0.098788545,0.035809778,0.5129018,-0.37019536,0.1376484,-0.11618997,-0.2868867,0.5963491,0.5310807,0.38390625,-0.21410048,0.47997707,-0.06587763,-0.09907397,-0.02330548,0.073543034,0.4288761,0.04868956,0.2952093,-0.09202597,-0.0956163,0.22931524,0.8181969,0.005960215,0.3207163,0.070847675,-0.14622962,0.17105497,0.025391757,0.039370887,-0.01628143,-0.32678854,-0.052893147,0.10334412,0.2958085,0.48646632,0.23398802,0.22613637,-0.07072738,-0.21597728,0.07027246,0.19617021,0.11339549,-1.1939778,0.40621796,0.021553911,0.6490176,0.4437114,0.08514972,-0.086440116,0.55506015,-0.108211964,0.06927363,0.26827106,-0.19938056,-0.42879915,0.5616485,-0.6110075,0.30682823,-0.08881154,0.07820057,0.047995318,0.17685942,0.3757587,0.70498306,-0.044153377,-0.06866823,-0.0153586175,-0.30175406,0.086568676,-0.21480362,0.07583347,-0.41586515,-0.44670445,0.5499776,0.33502617,0.16152492,-0.28848755,-0.07713996,0.058481183,-0.20605332,0.17479984,-0.021486402,0.055691645,-0.10508536,-0.44630516,-0.38106614,0.42104694,-0.06902467,0.15990008,-0.13994041,0.0074386187,0.141977,-0.070888825,-0.022257874,0.048347134,-0.6206559,-0.059481606,-0.39898336,-0.2884015,0.35470933,-0.23713839,0.19972277,0.07418709,-0.032120906,-0.30248135,0.4091218,0.11883522,0.65156317,-0.15489066,-0.17502102,-0.21791032,0.09990129,-0.040183026,-0.12126963,0.020253565,-0.21745597,0.0903361,-0.7684438,0.36020574,-0.09962626,-0.2113396,0.18973151,-0.21811934,0.020978881,0.4285401,-0.1898059,-0.19942336,-0.2154394,-0.25954717,-0.18704972,-0.3726924,-0.10202039,0.16472045,0.028053194,-0.031098284,-0.07527667,-0.20740946,-0.09602077,0.52518505,0.060268894,0.2496633,0.3031549,0.20508766,-0.36265075,-0.010513738,0.2561341,0.42336556,0.011538196,0.06998344,-0.30304986,-0.30810067,-0.34203482,-0.025700394,-0.23002176,0.31459847,0.057500675,-0.3862499,0.8770118,0.11365881,1.1111484,-0.15126815,-0.3508254,-0.0715933,0.43811628,-0.0808751,-0.057296507,-0.07980702,0.71323556,0.67683554,0.033700075,-0.08130878,-0.39894488,-0.22847115,0.2097139,-0.3265003,-0.040485516,-0.0022651441,-0.49167597,-0.29450932,0.20244056,0.25430226,0.06823109,-0.22582012,-0.08757959,0.17189273,0.14884093,0.274161,-0.5985311,0.011766374,0.17867623,0.25272927,0.13774638,0.2515302,-0.45450297,0.40884075,-0.6696589,0.23559783,-0.18225509,0.14431441,-0.06882042,-0.14322817,0.124893434,0.09550248,0.35679898,-0.2576897,-0.35976768,-0.1457054,0.5377156,0.0014199875,0.032425873,0.68573016,-0.22758558,0.10664062,0.062372353,0.50552166,1.0543505,-0.17509815,-0.026014829,0.2703645,-0.26749033,-0.7718133,0.23556718,-0.2905469,0.10952597,-0.0449137,-0.30438977,-0.43451488,0.2387731,0.28364125,0.15207992,-0.09119892,-0.5239353,-0.23680776,0.30045104,-0.23791538,-0.15071838,-0.22747003,0.20685232,0.7226739,-0.29273883,-0.26481467,0.007769555,0.35271406,-0.12311257,-0.63112557,-0.013234675,-0.34213462,0.36887044,0.2589171,-0.26072526,0.045819543,0.065127544,-0.49859446,-0.06607242,0.13558257,-0.26920864,0.120043926,-0.27556914,0.115200184,0.7851385,-0.050316587,0.10780145,-0.578799,-0.50861573,-0.84638953,-0.335238,0.47549772,0.11934604,0.12559715,-0.7061857,0.07500547,-0.17126974,0.057961937,-0.07909626,-0.3468098,0.38314372,0.13784856,0.28703567,-0.19610164,-0.7606748,0.054009512,0.041013803,-0.08862783,-0.4953694,0.44542533,-0.019770965,0.8398397,0.0221354,-0.026098456,0.070501156,-0.4038512,0.060120646,-0.34575668,-0.21504204,-0.61775947,0.08344785 -725,0.22060208,-0.12573859,-0.35307154,-0.15060346,-0.05137354,-0.35931024,-0.050344527,0.7688403,0.22205296,-0.57425344,-0.2291017,-0.24889188,-0.019584268,0.56558645,-0.27558112,-0.42603606,-0.041819602,-0.080651686,-0.37689006,0.3146006,-0.38890827,0.036858432,0.14287686,0.4058608,0.36293295,0.1321998,0.25187606,-0.11486761,-0.07548366,-0.22608516,-0.10981192,0.042050708,-0.5917306,0.00880346,-0.27588457,-0.49919662,0.0059797703,-0.71669465,-0.3988509,-0.7537209,0.4985919,-1.1925905,0.38217986,0.078951456,-0.09097118,0.19640201,0.4272511,0.2717242,-0.111148,-0.30485576,0.15345618,0.041852556,-0.03934027,0.1801272,-0.36416325,-0.3572636,-0.5882732,0.006329575,-0.22630195,-0.27524564,-0.43772477,0.0236152,-0.4246394,0.15378758,-0.08352039,0.454331,-0.37483364,0.08536027,0.18239322,-0.15232717,0.3438844,-0.5527824,-0.19138813,-0.19942422,0.18964025,-0.3387829,-0.15893641,0.4487649,0.35988146,0.32994264,-0.19159098,-0.08067681,-0.32097608,0.1272905,0.019247213,0.45505962,-0.45031905,-0.5920683,-0.07785054,0.11425638,0.16250908,0.35602504,0.21387509,-0.22494368,0.03192375,0.2824862,-0.43546963,0.5907038,0.52134216,-0.12674138,-0.07283355,0.09057904,0.2680117,0.34546998,-0.19751343,-0.13688523,0.074873134,-0.53851295,-0.07923804,-0.07459344,-0.15007582,0.6643202,-0.031027371,0.29295072,0.8037184,-0.31190228,0.28634992,-0.07219984,-0.199828,-0.1285533,-0.49207455,-0.10822551,0.29917368,-0.55424625,0.44702396,-0.10890255,0.69633967,0.16325828,-0.6310425,0.46890265,-0.5853471,0.21743575,-0.30465052,0.35500315,0.6396195,0.26838195,0.41950154,0.6929513,-0.5281038,-0.032472186,-0.152379,-0.35834756,0.15151858,-0.22873595,0.2723822,-0.18600228,-0.21950865,0.05519148,0.0021959245,0.14596643,0.33444467,-0.47798795,-0.053875368,0.11495225,1.0145395,-0.21038058,-0.14175329,0.7488383,1.0924528,0.8416904,0.08738786,1.0259142,-0.019893682,-0.20344344,0.51813346,0.20285098,-0.87672204,0.23943599,0.55981225,0.10358224,-0.17174797,0.20683303,-0.0487056,0.366482,-0.45574045,0.04076271,-0.2647807,0.088377856,0.39416325,-0.112336814,-0.28050128,-0.2186718,-0.20414312,0.0030762136,-0.14603208,0.19687891,-0.07926263,0.16586186,-0.1407575,1.576942,0.11198576,0.15177214,0.16459776,0.7492923,-0.079615675,-0.095589325,0.057594836,-0.18454008,0.4008643,0.25189924,-0.49579805,-0.004579914,-0.2706379,-0.3637539,0.040708683,-0.3315343,-0.19664612,0.097191796,-0.48070487,-0.09912579,-0.13608086,-0.23463258,0.44064337,-2.8226352,-0.100281045,-0.24690302,0.2984348,-0.23940459,-0.3349348,-0.12632683,-0.5807996,0.73305017,0.37057728,0.6101177,-0.67042667,0.3889834,0.40995893,-0.4936851,-0.018939376,-0.69940454,-0.033029355,0.05972544,0.21565068,0.018686756,-0.06923961,0.2552028,-0.06680141,0.50534546,0.38742837,0.060968697,0.2517674,0.5248464,-0.1316168,0.763862,-0.4341402,0.3576278,-0.38593888,-0.1388325,0.2220592,-0.4703966,0.10038866,-0.25163937,0.17849483,0.40449792,-0.5740305,-1.0049322,-0.75977147,-0.566857,1.2216476,-0.047817007,-0.48184568,0.6022562,-0.28315,-0.074166015,-0.327047,0.9024557,0.037486337,0.14858934,-0.66133773,0.064067684,-0.342848,0.10811891,0.003795764,-0.08882628,-0.28118926,0.69170445,-0.07282354,0.35085234,0.34523332,0.030143758,-0.3999842,-0.32897455,0.09631573,0.6811964,0.34524524,0.13693663,-0.16541627,-0.045894682,-0.48471817,-0.33282253,0.091781326,0.5394944,0.683305,-0.042082172,0.1355075,0.20724344,0.08130252,-0.053074576,-0.09057545,-0.4682599,-0.24566627,-0.0823553,0.65823716,0.5982557,-0.13565907,0.28734773,-0.12243812,0.27115744,-0.12993607,-0.26868832,0.24785654,0.8064626,-0.08080609,-0.1722779,0.5104991,0.39894924,-0.27370143,0.34993568,-0.448586,-0.29379028,0.38151875,0.0048431023,-0.746699,0.0010667115,-0.3201491,-0.048154406,-0.5853887,0.24276736,-0.5045394,-0.39020973,-0.35214898,-0.24735133,-3.8398461,0.23776731,-0.19911873,-0.2604839,-0.23353784,-0.26432928,0.23491387,-0.4428834,-0.73728245,0.105590045,-0.00048244596,0.74100673,-0.01494046,0.0028538047,-0.34626722,-0.07597935,-0.31356025,0.025885344,0.28712416,0.3713475,0.0091766985,-0.39812127,-0.35961038,-0.098345384,-0.60201275,0.14164962,-0.61965287,-0.49640292,-0.22955814,-0.60323614,-0.40246263,0.76851976,-0.30438986,-0.032929577,-0.025782043,-0.09242176,-0.3231887,0.50882703,0.1747677,0.21005301,-0.16049816,-0.06006656,0.014120078,-0.112735905,0.49908876,0.12742801,0.5084066,0.25219324,0.014732805,0.23990974,0.52117354,0.68948096,-0.076647684,1.0112087,0.33673275,0.0053814957,0.2827316,-0.3714034,-0.2775576,-0.5698695,-0.073376425,0.06714767,-0.34727937,-0.294831,0.10563801,-0.3869169,-0.610036,0.6793131,-0.035474263,0.13628468,0.16837645,-0.081817,0.31889346,-0.030712882,-0.05275485,0.16702846,0.13772032,-0.8153943,-0.2672829,-0.61949044,-0.5597812,-0.17705046,0.6892985,-0.0559557,-0.13107133,0.08434047,-0.21407875,0.14317085,-0.008317774,-0.03501776,0.023734152,0.37175393,-0.18693036,-0.68472517,0.5518936,-0.2344136,-0.08264478,-0.65276015,0.21068959,0.51069856,-0.6603226,0.6913421,0.31123787,0.014036867,-0.36137035,-0.51845944,-0.34711468,-0.4101463,-0.111969136,0.11152949,0.08003713,-1.1172273,0.3165765,0.49448997,-0.13408862,-0.57833934,0.4575862,-0.08019038,0.0077203275,-0.03842283,0.26625526,0.2176688,-0.05976262,0.111419514,0.18708982,-0.42136973,0.29486445,0.17697127,0.03053056,0.6146437,-0.18453816,0.042805333,-0.5737324,0.14488605,-0.38679177,-0.1464361,0.30925292,-0.105209604,0.05047109,0.1894165,0.105943605,0.16521466,-0.11615318,0.14444116,-0.22655106,-0.30849153,0.2566334,0.44888544,0.6402377,-0.57832664,0.68368065,0.040081825,-0.084362395,0.40256986,0.20556085,0.31887618,-0.007369739,0.2401156,-0.012211353,-0.37457237,0.075539075,1.1517938,0.17510174,0.4471684,0.014706677,0.0134547595,0.26290476,0.13304928,0.017733954,0.2165906,-0.81303024,0.019580936,-0.26537672,0.11543344,0.5995576,0.14659165,0.10445336,-0.124270424,-0.259636,-0.14356296,0.09512825,0.06895398,-1.3534544,0.49072176,0.07831002,0.95255387,0.29499903,-0.20351371,-0.017703589,0.69009674,0.1255571,0.25760296,0.3864246,-0.020657426,-0.5717069,0.66413486,-0.5486973,0.6136174,0.108108684,-0.06356378,0.011281507,0.21013756,0.42811975,0.6145499,-0.16045181,0.018243505,0.16611312,-0.20458412,0.27189565,-0.5387614,-0.11112465,-0.26741964,-0.12901035,0.54098594,0.66078454,0.14466111,-0.20002434,0.034776047,-0.123436175,-0.098471604,0.07441055,-0.24246371,0.014472658,-0.17017707,-0.77294,-0.22244315,0.5647564,-0.08314981,0.4219255,-0.05693091,-0.077933714,0.37045282,0.0006972298,-0.06063523,-0.15361953,-0.73674566,0.0044062375,-0.46488112,-0.46459883,0.18662731,-0.083834544,0.37806374,0.19996934,-0.007154256,-0.29193443,0.51346314,-0.06795245,0.61504716,-0.6049569,-0.1374294,-0.6834308,0.029388363,0.18462136,-0.23863769,-0.08765267,-0.2452178,-0.19669059,-0.43213338,0.462188,-0.050680846,-0.4148814,0.098586224,-0.13075192,0.024143647,0.6061034,-0.063275866,0.065308094,0.24591938,-0.061799884,-0.18098831,-0.22379903,-0.069480404,0.26988414,0.14395824,0.2466939,-0.11124866,-0.31023055,-0.11763805,0.39293176,-0.08938937,0.41086954,0.30612648,0.37592155,-0.2759717,-0.1969035,0.13563639,0.7646119,-0.022154415,-0.2682938,-0.27422807,-0.37748262,-0.2393935,0.28421903,-0.0035557388,0.5294918,0.2734836,-0.37523133,0.35097477,0.036355842,1.0274106,0.19258727,-0.28077757,0.012738395,0.37145475,-0.08383848,-0.18774076,-0.25364214,0.5446495,0.4325531,-0.14147095,-0.09349753,-0.2740803,0.12140305,0.22616379,-0.12277098,-0.28608814,-0.02869466,-0.67148626,-0.05949226,0.16823226,0.41113433,0.14357689,-0.089854784,0.08521517,0.1954231,-0.0015737221,0.3260006,-0.49436107,-0.25935444,0.2934844,0.2894969,-0.1196778,0.20917797,-0.45942435,0.3363035,-0.43650618,0.124328695,-0.55378425,0.21906838,-0.2659739,-0.30292717,0.05548668,-0.28979102,0.6950653,-0.05275766,-0.2496992,-0.14949164,0.34472805,0.17551914,0.31175613,0.45462292,-0.13730209,-0.0917424,-0.12507506,0.76702243,0.9766146,-0.17452306,0.11382101,0.2307066,-0.1907771,-0.41684994,0.31183103,-0.2500322,0.2818254,0.12305083,0.17965467,-0.43798476,0.13987978,0.21135128,-0.2808478,0.1156592,-0.6849699,-0.42765903,-0.014846265,-0.08182867,-0.38840872,-0.578213,0.11808519,0.5531545,-0.3440252,-0.034015097,0.19681847,0.290977,0.035262674,-0.29226714,-0.02877282,-0.1860398,0.26704222,-0.03221205,-0.5174061,-0.09992021,-0.11306238,-0.38185257,0.3421023,-0.29684648,-0.35313454,0.12827733,-0.02373889,-0.0707051,0.9401659,-0.112019,0.21331699,-0.49667326,-0.5867871,-0.77057475,-0.3459477,0.39795038,0.3534742,0.10935569,-0.32942954,-0.11272726,0.158689,-0.016311098,-0.06913014,-0.15301049,0.46520013,0.015001433,0.6619722,-0.22324657,-0.5256586,0.09226699,0.027308166,0.015942525,-0.48784018,0.50256515,-0.020557094,0.8863591,0.051345564,0.011479723,0.079472445,-0.11886094,-0.3026142,-0.1491451,-0.35523728,-0.5162457,0.22382498 -726,0.3924449,-0.30882046,-0.43866438,-0.15347126,-0.23754069,0.0054624905,-0.16849032,0.668446,0.2826023,-0.36657155,-0.20527227,-0.0935448,0.114337154,0.4576643,-0.09402466,-0.40395182,0.011270487,0.22966638,-0.4981481,0.57113737,-0.38270837,0.111828655,0.003730673,0.5429002,0.45873362,0.22201635,0.0065861484,0.06562582,-0.2991622,-0.119269535,-0.29251024,0.36355206,-0.30294758,0.13957575,0.017039107,-0.2485582,-0.09892673,-0.59346294,-0.26635712,-0.8619624,0.24697877,-0.9134003,0.5665297,-0.041290645,-0.26200578,0.23091239,0.22077635,0.3209788,-0.32443592,-0.33377382,0.09007646,-0.19962837,-0.112774,-0.22203475,-0.086460195,-0.3326662,-0.60532117,0.102712266,-0.4318714,-0.1818611,-0.3299125,0.20489295,-0.26427835,-0.14482667,0.02826824,0.67098457,-0.40375417,0.15883453,0.19044818,-0.26657784,0.21521753,-0.58043545,-0.13590537,-0.12544706,0.19071428,-0.077296294,-0.4419965,0.24231412,0.38714522,0.27009693,-0.021570288,-0.21725509,-0.39531535,-0.038949627,0.09045665,0.40757275,-0.052787594,-0.5536964,-0.11693505,0.059546053,0.22923486,0.24064526,0.35592863,-0.23075536,-0.15648048,0.12262973,-0.10449273,0.45390546,0.37477547,-0.34650084,-0.13975866,0.40388396,0.566128,0.31663033,-0.19528624,-0.17651984,0.022938637,-0.56862664,-0.04976294,-0.01620825,-0.24656321,0.5845303,-0.22024173,0.26626313,0.59117424,-0.13246544,-0.06985887,0.28948718,0.19329055,-0.24146524,-0.2842427,-0.22341985,0.20085964,-0.4242533,0.14825799,-0.15248361,0.69139254,0.18616512,-0.59187126,0.3894127,-0.53484565,0.20817533,-0.20397274,0.37998727,0.69087565,0.452267,0.57207143,0.6026405,-0.2337521,0.025476446,-0.082013674,-0.43288648,0.17686266,-0.3222142,-0.046578843,-0.6460815,-0.026729865,-0.13579684,-0.13317282,0.21458834,0.46457216,-0.6631706,-0.14038761,0.21341172,0.8001534,-0.23436958,-0.3823543,0.85419095,0.926635,0.88213897,0.002069063,1.0891939,0.13286279,-0.17882875,0.29286197,-0.23558313,-0.6279576,0.37603414,0.3919803,-0.8182429,0.32930714,0.07099359,-0.006034888,0.46494314,-0.18896216,0.021734567,-0.15019625,0.0016189172,0.11269767,-0.174558,-0.41641495,-0.36103153,-0.1774804,0.0033110608,0.19670382,0.26454642,-0.3255402,0.51481456,-0.16778876,1.8965918,0.020025088,0.03403984,-0.043324906,0.3945997,0.25930667,-0.24090457,-0.17810756,0.58933663,0.29573774,0.2428302,-0.4733717,0.22559175,-0.28352645,-0.43837172,-0.0974911,-0.4490082,-0.024186896,0.011023799,-0.37160668,-0.16457671,-0.22756995,-0.29069376,0.43800205,-2.7710142,-0.2986473,-0.072666034,0.33371434,-0.27077755,-0.41577005,-0.056861963,-0.43524712,0.24360143,0.24689573,0.602176,-0.7237082,0.26700643,0.27471736,-0.7018155,-0.3031009,-0.7531348,-0.0846433,-0.03968238,0.31510928,-0.03538635,-0.067003936,0.14830953,0.021005373,0.5472616,-0.04418296,0.10253845,0.35081723,0.45663878,0.00071891915,0.49411738,-0.15114899,0.67981243,-0.19848092,-0.30099708,0.3151932,-0.31417722,0.49055746,0.12885568,0.1105659,0.59625906,-0.3294565,-1.0178759,-0.6939602,0.032870457,1.2203013,-0.28187177,-0.40656802,0.111014456,-0.52037543,-0.32251924,0.068882875,0.54438585,-0.008087268,-0.11764046,-0.77110195,0.022803482,-0.00527607,0.11802456,0.0028335957,-0.03554345,-0.34957945,0.6082016,0.04584792,0.4824254,0.22105438,0.23872375,-0.52001977,-0.39013666,0.04917385,0.82509845,0.35337785,-0.016126093,-0.17715184,-0.30256176,-0.5104095,-0.13236628,0.13212314,0.55960363,0.45664075,-0.060018834,0.16030826,0.3663206,-0.0021961606,-0.00039695547,-0.22037032,-0.18664494,-0.051216364,0.10682636,0.50941515,0.73694766,-0.17078103,0.70394254,-0.058727168,0.30177587,-0.030488748,-0.5384687,0.56240433,1.278077,-0.3095681,-0.3894842,0.63696665,0.28192604,-0.39008147,0.45411283,-0.4560619,-0.1904042,0.52443415,-0.124042764,-0.40384638,0.20737535,-0.25170138,0.23339517,-1.0065122,0.22653642,-0.22795361,-0.48415598,-0.5864203,0.10586096,-3.3218014,0.28034467,-0.3336164,-0.21946733,-0.21579869,-0.32104146,0.012507326,-0.85076594,-0.44425255,0.13115595,0.16700281,0.91009414,-0.2304992,0.06297381,-0.23820104,-0.39508688,-0.22173885,0.067841575,0.015921617,0.47312137,-0.20876664,-0.41794255,0.09922429,-0.016733047,-0.47974688,0.054533012,-0.7144977,-0.5392548,-0.09925882,-0.629027,-0.2465996,0.7032618,-0.38250253,0.007845698,-0.18613365,0.17222473,0.07307224,0.32908237,0.027383447,0.069302864,0.17399491,-0.035608467,0.08976586,-0.3302503,0.31045145,-0.024679817,0.27648222,0.33904582,-0.019785363,0.51521283,0.6569507,0.7431201,-0.17662174,0.9025227,0.55397505,-0.10484374,0.15238336,-0.3501438,-0.33327514,-0.42202875,-0.25335994,0.062461264,-0.45750076,-0.37360796,0.04440767,-0.2667259,-0.819479,0.6605107,0.04101018,0.25539476,-0.05540285,0.4168144,0.7734978,-0.24942559,0.028882321,-0.020516805,-0.23624788,-0.7746938,-0.16501954,-0.5254931,-0.59769577,0.23923062,0.82773185,-0.42503422,0.051194567,-0.018014984,-0.26588857,-0.019843366,0.11846136,-0.16104351,0.2959355,0.40416315,-0.20403549,-0.5794769,0.37398985,-0.094606824,-0.15538932,-0.47967118,0.41415337,0.6003126,-0.6218604,0.6252982,0.30126482,-0.0838023,-0.29509115,-0.4581421,-0.15310809,0.010141716,-0.04710751,0.4514374,0.26499644,-0.8282193,0.37193888,0.410763,-0.3240285,-0.76930416,0.53028595,-0.083546415,-0.116146326,-0.24571902,0.42153007,0.1707327,0.06555119,-0.3942688,0.07928936,-0.4354629,0.08103086,0.2702921,-0.074108616,0.30143097,-0.15175249,-0.118254036,-0.82868856,0.1256064,-0.49158967,-0.352385,0.43804085,0.22168818,0.21637987,0.17516367,0.19354722,0.26491335,-0.40145385,0.009566381,-0.10828984,-0.18630661,0.31373912,0.5016428,0.49172014,-0.5409486,0.51777464,0.040497426,-0.09470676,0.05276138,-0.14827706,0.42962074,0.1563646,0.39923745,0.1002972,-0.28518993,0.19812652,0.58168,0.042443983,0.45802996,0.1285451,-0.034200385,-0.028429164,-0.013443506,0.3521462,0.004609664,-0.6611882,0.15038563,-0.45519182,0.21851137,0.5930943,0.21627122,0.20965503,0.05849065,-0.47945088,0.011299271,0.070609875,0.19685808,-1.2332573,0.45398396,0.28145903,0.89982694,0.24740131,0.050962504,-0.094558306,0.86273515,-0.2223507,0.23022142,0.37020046,-0.084592536,-0.5230446,0.48211163,-1.0343877,0.48605186,0.023358844,-0.00899877,-0.03366353,-0.12061751,0.4384785,0.79104775,-0.25801438,0.028848972,0.06976055,-0.2940851,0.20936115,-0.5142189,0.03539519,-0.7443769,-0.30238774,0.57523686,0.50690913,0.4464161,-0.23547179,0.025174966,0.29006654,-0.1543797,0.23623969,0.07914873,0.26865312,0.011237149,-0.6766013,-0.08366371,0.44523138,-0.03717858,0.39891374,-0.10515261,-0.052027483,0.2902989,-0.2734117,-0.094878286,-0.17227474,-0.63464075,-0.15390915,-0.16867901,-0.66557825,0.60176754,-0.04597884,0.18550912,0.25264108,0.06773935,-0.19290906,0.60712725,0.052113973,0.9730577,0.05955368,-0.06326984,-0.44065952,0.44861585,0.082061134,-0.09338824,-0.092216454,-0.29144794,0.09237642,-0.56443983,0.5430186,-0.03790285,-0.46235943,-0.18280002,-0.0106787225,0.137213,0.5363211,-0.24590921,-0.20482522,-0.2516747,-0.33536178,-0.3252309,-0.18810548,0.034789775,0.37219444,0.26362696,-0.06072084,-0.27028397,-0.13725387,-0.16901657,0.26577216,-0.15066808,0.40377238,0.34664232,-0.0681891,-0.16977742,-0.19235156,0.3179234,0.5163392,0.007804476,-0.2582182,-0.38348833,-0.24491054,-0.43901184,0.07824542,0.02741276,0.48824495,0.1955054,-0.14352438,0.7039761,-0.18943161,1.3555597,-0.08196083,-0.5457997,0.11451031,0.5478121,0.054150123,-0.14021227,-0.28362253,0.86574876,0.39418375,0.008871,-0.051741187,-0.585658,-0.15131079,0.39624822,-0.20884529,-0.07792357,0.052116632,-0.5398318,-0.1860721,0.19323699,0.19084117,0.36992472,-0.12364861,0.16699086,0.33404428,-0.13171643,0.2211714,-0.3445706,-0.19375695,0.2430202,0.47130808,0.00069856644,0.10830384,-0.46345124,0.41985133,-0.53553486,0.1550699,-0.24954516,0.29950935,-0.25135234,-0.31065148,0.29974896,0.076085284,0.36595276,-0.3064409,-0.37675434,-0.2822379,0.5004891,0.21800658,0.062494643,0.5662338,-0.31546277,0.028079836,0.05701329,0.3743677,0.94627416,-0.197947,0.025096592,0.38675007,-0.2979386,-0.78990424,0.59448206,-0.47699437,0.2589911,0.10702278,-0.09451881,-0.6321869,0.21326503,0.31310794,0.1221424,-0.10702765,-0.5968915,-0.098547235,0.18973619,-0.28667566,-0.12872872,-0.36306316,0.023442008,0.36982995,-0.26586375,-0.45773584,0.011231496,0.09338037,0.10331844,-0.33396074,-0.20351022,-0.38982895,0.32093444,-0.020896861,-0.450408,-0.10519767,-0.005725104,-0.48389736,0.21434039,-0.03187631,-0.28202608,0.2806569,-0.24343385,-0.025460334,0.938452,-0.27096134,0.18855341,-0.39992282,-0.5213064,-0.58854395,-0.31227568,0.25280657,-0.16725995,0.036968842,-0.7261584,0.11548499,-0.10614496,-0.3493552,-0.14264432,-0.5156187,0.41816616,0.08834163,0.28276226,-0.036364354,-0.7374881,0.19282912,0.068934076,-0.07535153,-0.74347466,0.43008444,-0.18951249,0.90188587,0.033167742,0.15970494,0.38867763,-0.3212229,-0.13751489,-0.3029955,-0.23048316,-0.42596003,-0.15793292 -727,0.27004704,0.09878052,-0.601244,-0.0718801,-0.00892718,0.1617756,-0.20407669,0.4040646,0.2343448,-0.32302052,-0.058262087,0.02027535,-0.04352806,0.23933336,-0.11662308,-0.36825252,0.04355868,0.2342645,-0.45239702,0.30508417,-0.46457857,0.3217008,-0.26087973,0.39003235,0.016135285,0.34781554,-0.028995337,0.1721853,-0.24776728,-0.2303617,0.29226503,0.19022115,-0.49569172,0.34465408,-0.14087379,0.0005495591,-0.2372166,-0.40955004,-0.4678057,-0.757802,0.231645,-0.7716847,0.5586074,-0.14965387,-0.32637954,0.31347817,0.17743611,0.33894387,-0.22956474,-0.11022939,0.27181092,-0.20701721,-0.3425056,-0.13189928,-0.2863775,-0.21155095,-0.5492713,0.05109427,-0.3741918,0.023335287,-0.29080504,0.1866063,-0.22207682,0.14994048,-0.19966806,0.35798475,-0.38105503,0.010950767,0.21018317,-0.18190591,0.20684913,-0.5284766,-0.049191363,-0.042226363,0.12670784,-0.16281475,-0.049037017,0.20341362,0.044161517,0.40114588,-0.18863118,-0.025428291,-0.37370515,-0.1464984,0.16231427,0.40876678,-0.11858315,-0.20828071,-0.14725111,-0.13852336,0.21296217,0.1312856,0.037103694,-0.28271618,0.0622133,-0.011946797,-0.13811967,0.35041276,0.5421484,-0.079120524,-0.1849312,0.35107422,0.72598636,0.09558939,-0.1314685,0.18230596,-0.02114229,-0.36323637,-0.2204987,-0.09839845,-0.04738077,0.20488583,0.035267893,0.110463016,0.5988751,-0.25571522,-0.069022976,0.12516132,0.075199,0.12572353,-0.40152827,-0.2932361,0.29815155,-0.39291957,0.011788045,-0.16230643,0.50883377,-0.0127939535,-0.68307686,0.3505436,-0.4559466,0.034295704,0.113797136,0.5851664,0.546112,0.46593806,0.1560519,0.7816434,-0.4023235,0.06710956,-0.03668068,-0.13524981,0.05922384,-0.13215454,0.1058134,-0.40574387,-0.03240345,0.20689198,-0.3087649,0.10535463,0.30738616,-0.39379242,-0.17523924,0.008204094,0.68824136,-0.33505553,-0.07227891,0.70796585,1.212018,0.8588092,0.08276122,1.2385689,0.19035877,-0.15203758,-0.1721909,-0.15068136,-0.8217211,0.25842017,0.13846467,-0.42867568,0.259856,0.19231628,-0.04746661,0.2980654,-0.63079417,-0.082568385,0.008956045,0.39613748,-0.0717019,0.013425546,-0.4262929,-0.19499062,0.17704932,0.016108423,0.30403122,0.31622198,-0.31456038,0.2663394,0.12070242,1.3223046,-0.09801627,0.024238441,0.16348681,0.32111782,0.038111,-0.26039377,-0.22749636,0.21534093,0.41038546,-0.06904952,-0.47903356,0.09240341,-0.095456414,-0.48644704,-0.16634752,-0.26541284,0.0284866,-0.31145653,-0.09423405,-0.13244788,-0.21395846,-0.62275887,0.3957521,-2.5661278,0.025663922,-0.12949945,0.3152309,-0.07338006,-0.26398033,-0.30844137,-0.34381437,0.41561985,0.27712527,0.39980632,-0.33819535,0.3124116,0.43277508,-0.52630794,-0.10494088,-0.50600797,0.017110033,-0.05245769,0.16917567,0.091250315,-0.10031925,-0.11741773,0.17511158,0.41707343,0.028286096,0.15087683,0.63846123,0.312316,0.015502938,0.37039217,0.025534581,0.56818664,-0.42062452,-0.2882146,0.4162586,-0.5309343,0.21200506,-0.17479374,0.0930658,0.22800136,-0.24556479,-0.711563,-0.5718099,-0.2168525,1.4281044,-0.2891013,-0.49193925,0.21997619,-0.36824903,-0.46577832,0.07026488,0.41387647,-0.27698418,0.01892412,-0.80902684,-0.11849492,-0.168376,0.39852777,-0.08967515,0.14808466,-0.50757533,0.62936074,-0.27867365,0.49752426,0.39335653,0.12985203,-0.36455092,-0.3542467,0.08939146,1.199665,0.393977,0.11742069,-0.123386726,-0.07845016,-0.32550997,-0.28806353,0.12724304,0.563485,0.627328,0.08923793,0.12800519,0.22648756,-0.18002573,-0.0092865275,-0.05965944,-0.38146538,-0.15434943,0.08953164,0.71353483,0.46095052,-0.14743721,0.45153528,-0.16764371,0.26233673,-0.2120907,-0.33624056,0.33446807,0.50554574,-0.18235694,-0.35090902,0.694656,0.45370245,-0.36275482,0.51780844,-0.5676698,-0.518803,0.29928207,-0.15680972,-0.39958566,0.31322676,-0.16662966,0.11716948,-0.7490769,0.22490653,-0.17454675,-0.8668472,-0.5289424,-0.28472856,-2.3324883,0.1586487,-0.033039086,-0.2800283,-0.12210434,-0.07348677,0.25959924,-0.24319705,-0.7038273,0.037524752,0.049685035,0.6049933,-0.059274454,-0.092546664,-0.1144119,-0.21768986,-0.09973772,0.19780879,0.2718014,0.3600314,0.016744647,-0.3981643,-0.17500795,-0.07934762,-0.37549755,-0.12971206,-0.63315105,-0.38300166,-0.14090368,-0.5880289,-0.16948655,0.58025587,-0.58536917,0.0077169323,-0.29960877,0.016550258,0.072956696,0.43708473,0.09642462,0.26726943,0.25526795,-0.3396209,0.08203886,-0.13245435,0.37191078,0.06463255,0.34162435,0.49382755,-0.29953665,0.1427788,0.4562079,0.66949016,-0.060186148,0.91738015,0.23007931,-0.11767929,0.29351264,-0.22827768,-0.2255899,-0.32628626,-0.17879952,0.083171286,-0.38894752,-0.2924057,-0.1499091,-0.33143708,-0.87906593,0.4384386,0.0005701291,-0.058376115,-0.075048395,0.3184677,0.28541797,-0.020179978,-0.03571168,-0.18919924,-0.13046142,-0.37479332,-0.46244907,-0.60373586,-0.49291056,0.07099219,0.9993278,-0.13132156,0.16336273,0.091611706,-0.20232831,0.19629605,0.15188074,0.13508418,0.10600096,0.46140385,0.055686686,-0.49967977,0.26161703,-0.33231807,-0.15146014,-0.6540008,0.23416379,0.8054016,-0.47811207,0.53214365,0.3464326,0.12802884,-0.21819602,-0.572064,-0.07068856,-0.03420416,-0.21817502,0.52297443,0.22353365,-0.8542139,0.53905374,0.2582927,-0.26264945,-0.78287876,0.39037028,-0.12677182,0.09743556,0.07690936,0.47752824,-0.1667874,0.04067222,-0.3029904,0.25225088,-0.2686111,0.11965004,0.20985948,-0.12971735,0.6008034,-0.33453205,-0.12753803,-0.5376567,0.057525635,-0.45563594,-0.2717691,0.03849863,-0.0776459,-0.11916505,0.25879946,-0.07036575,0.380348,-0.39949685,0.04118528,-0.18341374,-0.44114804,0.4206121,0.42460775,0.54983675,-0.4206201,0.6126564,-0.06526558,-0.06752534,-0.114008866,-0.12237085,0.55224425,-0.0760942,0.3061503,0.16411419,0.06446726,0.2772645,0.6501179,0.21861546,0.44075033,0.012337974,-0.22092223,0.07903799,0.100224875,0.22597443,-0.09299667,-0.5152655,0.08127177,-0.05045041,0.14709094,0.35149246,0.19251074,0.5360745,-0.12874983,-0.281998,0.116493836,0.1314119,-0.29251575,-1.2345656,0.6028605,0.034819003,0.71002823,0.31548914,0.03464586,0.245972,0.582194,-0.041458346,0.061116654,0.18509722,-0.05350835,-0.436457,0.43676552,-0.8169188,0.48560783,-0.10926468,0.0707135,0.22795178,0.039263885,0.65401167,0.8600965,-0.020644372,0.061567597,0.017458204,-0.15017429,0.13115819,-0.3205193,0.36395815,-0.42787567,-0.38032433,0.7695845,0.38221043,0.5292389,-0.22047426,0.046715815,0.1042803,-0.2310088,0.1555181,-0.022503955,0.029922951,-0.050044518,-0.66346043,-0.25304297,0.27286336,0.22287358,-0.043789823,0.092597164,0.012921325,0.2618461,-0.050774135,0.062156446,0.051509734,-0.54856825,-0.029951004,-0.28034416,-0.3822215,0.05430711,-0.2670907,0.19702604,0.13708876,0.009939717,-0.4583919,0.327609,0.20383403,0.7754661,0.08365675,-0.26182565,-0.25174242,0.25775135,0.20040925,-0.25481853,0.024902727,-0.39236715,0.07478318,-0.73040044,0.40900442,-0.44760802,-0.5873379,0.3877483,-0.20051566,-0.0063421256,0.60336226,-0.22760434,-0.03720987,0.007861682,-0.34717157,-0.11891414,-0.27072874,-0.18363805,0.1726892,0.060918104,-0.2800421,-0.10967897,0.031186821,-0.16759978,0.2675695,0.019522434,0.26070425,0.6134402,0.23994239,-0.36023912,0.074129805,-0.013377096,0.6025429,0.0882058,-0.020757878,-0.3702976,-0.30690745,-0.19688371,0.5093894,-0.20018485,0.22550611,0.20704865,-0.28786275,0.60296017,0.04637054,0.9287816,-0.0019627213,-0.27739227,0.14356944,0.60663193,0.095222555,-0.054579634,-0.4085338,0.9431488,0.5172039,-0.18906318,-0.12498784,-0.5030435,-0.08800923,0.15968503,-0.28836137,-0.32093158,-0.13908121,-0.7853546,-0.29617745,0.23678258,0.3687823,-0.055863384,-0.09468836,0.22297947,0.29272765,0.067256495,0.3314211,-0.45789668,0.17902705,0.47764477,0.1294008,-0.10782622,0.09863453,-0.39574283,0.28197452,-0.59891826,0.023622807,-0.13194145,-0.025496768,-0.093144335,-0.37791902,0.15386827,0.05809613,0.32235974,-0.33313426,-0.22475788,-0.124258876,0.47615114,0.1682509,0.041547008,0.49277976,-0.21404047,0.059384603,0.08159765,0.45485803,0.9368853,-0.16996267,0.049470525,0.23501706,-0.2605271,-0.5962428,0.22603247,-0.3234082,0.14835466,-0.13297965,-0.46172574,-0.40864322,0.31793332,0.17296766,-0.087510146,0.058197703,-0.34685454,-0.07268451,0.082968235,-0.12630817,-0.10466494,-0.30576086,-0.052656036,0.5693554,-0.10370413,-0.4077707,0.113527164,0.2923186,-0.22696202,-0.5486534,-0.03255575,-0.36966324,0.28400734,-0.16439082,-0.22803184,-0.13434775,-0.17080598,-0.3658516,0.21213377,0.11591627,-0.29761153,-0.031855095,-0.16360356,0.044573486,0.50222296,-0.12143018,0.05465946,-0.5208655,-0.4975681,-0.96958894,-0.21793284,0.1352805,0.09286658,-0.17352052,-0.6299882,-0.08066107,-0.26002076,-0.035848297,0.07129356,-0.46588808,0.3541545,0.24291532,0.30839258,-0.33132508,-0.7989359,0.078432225,0.09497424,-0.3499848,-0.48346472,0.51830494,-0.005296477,0.544206,0.025689304,0.1366544,0.20095615,-0.6276536,0.22770795,-0.04745164,-0.17568524,-0.53603554,0.17441688 -728,0.437486,-0.06554955,-0.525002,-0.21136087,-0.37615758,0.13459033,-0.26470146,0.1004678,0.23928079,-0.33598807,-0.00737632,-0.00683843,-0.0017551675,0.3315562,-0.17124413,-0.791881,0.052146107,0.07709426,-0.55439407,0.44832683,-0.5603806,0.52945226,0.026616657,0.3105353,0.08506849,0.3687121,0.19063991,-0.06358487,-0.02087011,0.12647839,-0.18987453,0.35642976,-0.6674094,0.038574796,0.08386518,-0.2676148,-0.07817009,-0.33323833,-0.29314166,-0.70732254,0.39525226,-0.7311746,0.47403285,-0.19644912,-0.3821316,0.15721525,0.06580765,0.3402103,-0.4356423,0.15866527,0.1913122,-0.3406035,-0.0204306,-0.01941359,-0.261822,-0.50394243,-0.5556615,-0.08669097,-0.6398397,-0.14493501,-0.3281431,0.21343805,-0.3832719,-0.009681936,-0.20878181,0.3991799,-0.37089735,-0.06809938,0.31212357,-0.11632826,0.10220292,-0.4160605,-0.074744776,-0.1872028,0.2347867,0.03807667,-0.26234618,0.28765038,0.36445943,0.5246974,0.11830206,-0.2801571,-0.12438674,-0.10398558,0.13928476,0.5079156,-0.07082749,-0.38209778,-0.3181192,-0.018591361,0.17137621,0.26399583,0.06050058,-0.41113967,-0.071825914,0.14823347,-0.23890296,0.30233568,0.44563618,-0.38937017,-0.20501451,0.45455045,0.41716817,0.10626616,-0.21970513,0.3229278,-0.04597963,-0.59053856,-0.23698501,0.2608329,-0.10660327,0.5372645,-0.24521172,0.15621544,0.7702843,-0.22664833,-0.0544297,-0.23720299,-0.17823115,-0.06930769,-0.26714125,-0.046498455,0.10058127,-0.43314767,0.12151192,-0.1969261,0.8534245,0.26632103,-0.8375912,0.34797436,-0.43614078,0.17603204,-0.24592416,0.63886935,0.9419847,0.26307687,0.3576489,0.89707285,-0.6160379,0.09269134,-0.03725396,-0.5168598,0.043175142,-0.04593725,-0.056844663,-0.48895574,0.09663185,-0.03319556,0.011145625,-0.09534149,0.36074203,-0.42816025,-0.04535041,-0.09231794,0.60148203,-0.48455733,-0.13148859,0.74930006,0.8502601,0.82787555,0.14349797,1.1966873,0.41155338,-0.13783203,0.14426851,-0.32797945,-0.4872219,0.16718695,0.29893813,0.10337799,0.327183,0.08459519,0.054858882,0.4076532,-0.15340054,-0.10695354,-0.005989047,0.25835246,0.0022301655,-0.10238197,-0.40471,-0.12752138,0.14030924,0.057951346,0.049160715,0.22084606,-0.2515522,0.40745616,0.22147691,1.5109211,0.03512295,0.07142318,-0.037440464,0.3819585,0.32516626,-0.21062486,-0.11064266,0.44861934,0.42909896,-0.116220094,-0.6648238,-0.020884044,-0.2311299,-0.40897667,-0.18704247,-0.45827407,-0.03444612,-0.093900725,-0.4959294,-0.09068297,0.1547159,-0.29525754,0.570584,-2.500299,-0.25487524,-0.104584835,0.25994405,-0.24681069,-0.36350632,-0.29608828,-0.4941344,0.27749148,0.36703795,0.22152276,-0.72443897,0.42498708,0.39099687,-0.2064997,-0.15668307,-0.64957607,-0.11163284,-0.08652311,0.38725966,-0.1204614,-0.017227087,-0.13665988,0.33363882,0.6233313,0.0042571602,0.014583155,0.047397867,0.4703083,0.062334687,0.6782556,0.14846437,0.63715166,-0.1259677,-0.08256183,0.32426548,-0.29660755,0.28751978,0.12594151,0.15927126,0.39141357,-0.43268642,-0.8108106,-0.57102776,-0.34653315,1.1096146,-0.53112334,-0.30955377,0.26841483,-0.016422398,-0.18640652,0.09098174,0.4220438,-0.08030116,-0.00982368,-0.721672,0.1887607,-0.083162956,0.0978411,-0.10360134,0.1456842,-0.14628705,0.6058523,-0.23231374,0.5630343,0.31790453,0.16760348,-0.08285657,-0.5433514,0.051248495,0.90451145,0.3672463,0.07203106,-0.17116669,-0.30373964,-0.19130515,-0.16807081,0.14881812,0.5039563,0.725225,0.0115223145,0.14867157,0.36110306,-0.23531513,0.011316724,-0.12431013,-0.25212383,0.027756313,-0.02501614,0.52596414,0.48676845,-0.2548688,0.42151222,-0.13995366,0.08047958,-0.1033669,-0.52866226,0.59298044,1.0062003,-0.26210925,-0.23777021,0.56379735,0.24902995,-0.30741194,0.3049391,-0.58388907,-0.14963844,0.72780216,-0.12256683,-0.30717334,0.14373146,-0.3165802,0.07389309,-0.878714,0.25419438,-0.017556218,-0.4745465,-0.45756972,-0.11541181,-4.1366796,0.11049293,-0.10573079,-0.12265382,-0.04266971,-0.17978281,0.3510989,-0.5300852,-0.56502676,0.09794235,-0.062435992,0.5154852,-0.05404718,0.1788332,-0.37969443,-0.02926234,-0.22541603,0.22909415,0.08665546,0.38596502,-0.022893513,-0.3740492,0.08545563,-0.3180668,-0.6274385,0.065541394,-0.35308766,-0.5670566,-0.16302375,-0.46520698,-0.28650078,0.76579195,-0.27623495,-0.04071837,-0.28543484,-0.09219214,-0.23285176,0.35511547,0.18508959,0.2223532,0.05896566,0.09891976,-0.17076413,-0.3805529,0.09473333,0.014498059,0.13700292,0.33378297,-0.015976418,0.11638819,0.5224332,0.58121705,-0.09104259,0.691734,0.31298485,-0.08968354,0.30950361,-0.38420698,-0.23043515,-0.70305526,-0.51205117,-0.43864524,-0.48868796,-0.46908897,-0.26080915,-0.4192746,-0.8264426,0.43322927,0.006730597,0.22948515,-0.14713404,0.30159026,0.37523606,-0.1794516,0.006756481,-0.08031253,-0.29343867,-0.5596142,-0.46931434,-0.5804404,-0.612463,0.22989193,0.9520367,-0.18619598,-0.17932616,-0.17441377,-0.2664299,-0.07107593,-0.050395854,0.2359689,0.31233197,0.29202098,-0.17682421,-0.57973975,0.49971175,-0.17002283,-0.082131736,-0.59742343,0.022486806,0.660993,-0.57036716,0.6052555,0.30102324,0.187338,0.12947091,-0.66456604,-0.26779506,0.08973311,-0.2659721,0.61488163,0.15108566,-0.7592061,0.58141357,0.14835761,-0.033298906,-0.664503,0.5052876,0.0383996,-0.23177128,0.12053271,0.34108028,0.026239378,-0.03486237,-0.23114681,0.17726183,-0.5739995,0.2896029,0.42173597,0.04356352,0.41985202,0.04870649,-0.2343771,-0.5814467,-0.16720763,-0.62274045,-0.26223013,-0.038078982,-0.049622364,0.18189526,0.043985307,-0.0991743,0.50427383,-0.32652625,0.20699005,-0.003472514,-0.07146356,0.31624532,0.56687844,0.22361031,-0.47754365,0.543986,0.15844539,0.026771938,-0.06748459,0.09302057,0.5525704,0.33044124,0.2936835,-0.11483086,-0.13353014,0.1138398,0.6361264,0.2755848,0.47163078,0.24450712,-0.3193153,0.35101616,0.2612901,0.21976864,0.077057645,-0.17360535,-0.1439401,0.052068148,0.23436606,0.48356858,0.21320204,0.34459653,-0.054664336,-0.17393945,0.23513547,0.087833494,-0.112158485,-1.1817249,0.3416664,0.27167436,0.614549,0.5645313,-0.019460559,0.073410176,0.30179438,-0.42309177,0.18165527,0.31512037,-0.0076651643,-0.46574125,0.50267404,-0.5932386,0.4629231,-0.21621263,0.02629158,0.08923645,0.24056995,0.36550957,1.0120231,-0.11854957,0.15237783,0.044191036,-0.17393026,0.23967586,-0.31598338,-0.08968847,-0.42857277,-0.2810737,0.5157399,0.34162655,0.25284553,-0.3364657,-0.06969714,0.051009297,-0.11450033,-0.16776422,-0.07223281,0.020433167,-0.03773385,-0.48781967,-0.49012515,0.5821827,-0.19537699,0.021458372,0.074762166,-0.37600645,0.2790161,-0.1344383,-0.06918836,-0.036947202,-0.6618242,-0.17356683,-0.2433419,-0.5315629,0.34118578,-0.48967996,0.2644757,0.14796741,0.043739572,-0.3234222,0.1227246,0.2859286,0.7520688,-0.026061324,-0.09245923,-0.41034657,-0.050724037,0.47817454,-0.34647292,-0.1692443,-0.33155304,0.082178086,-0.54367346,0.3868305,-0.0805975,-0.25769424,-0.011508661,-0.10427397,-0.023943152,0.41051093,-0.29207966,-0.19136,0.13387652,-0.035009407,-0.34856582,-0.08541345,-0.31469616,0.28032526,0.046373077,-0.12240059,0.18004563,-0.058679402,-0.06009306,0.3598962,0.12682295,0.2839005,0.25727355,-0.06283331,-0.29354453,-0.060732037,0.15999524,0.31917158,0.07899537,-0.0928271,-0.20606428,-0.32596704,-0.24795252,0.27894127,-0.1585162,0.24638306,0.09960998,-0.45932478,0.74113876,0.12434847,1.1062934,0.12543745,-0.36788458,0.06397034,0.43888894,0.14023611,0.1918568,-0.23843129,0.8474832,0.5195051,-0.06259648,-0.1924373,-0.34046587,-0.2876095,0.27074796,-0.23862603,-0.24778903,-0.114807785,-0.57489663,-0.2406524,0.16156662,0.22021045,0.12814718,0.0020837819,-0.15853475,0.10478087,0.17311978,0.4963908,-0.49996555,0.010643679,0.35281456,0.2016229,0.09102033,0.24598882,-0.26968607,0.4910028,-0.61649716,0.18613742,-0.4934174,0.23259942,-0.016291814,-0.13413225,0.23905417,-0.06901283,0.33746853,-0.18111496,-0.29808566,-0.28571382,0.6830077,0.09490385,0.25203213,0.782973,-0.2594113,0.044718813,0.055327095,0.46394882,1.2791263,-0.05290295,0.02295264,0.3329731,-0.29962546,-0.63739985,0.23157454,-0.30214226,0.10734373,-0.098121375,-0.35321683,-0.34360892,0.28712216,0.09350378,0.07354541,0.10401974,-0.5621476,-0.29270902,0.53155535,-0.15543579,-0.16913007,-0.19332407,0.34486413,0.7458248,-0.4412682,-0.30365986,0.040283974,0.25553298,-0.19478627,-0.5395081,-0.009738543,-0.24429439,0.42109203,0.09834821,-0.2772621,0.08142506,0.32581013,-0.38102013,0.1905964,0.40043914,-0.28988886,0.17235291,-0.16731584,-0.16801623,1.160568,0.0039779088,0.08411249,-0.7104216,-0.5036038,-0.9693305,-0.36857563,0.20682983,0.17880735,0.013226502,-0.58297795,-0.050741892,-0.02873514,-0.01954775,0.08660106,-0.5666985,0.45365566,0.114581905,0.39889738,-0.042488314,-0.86444,-0.10763704,0.09289677,-0.22504032,-0.5894011,0.7063538,-0.22445065,0.75591326,0.12008967,0.10566825,0.06893646,-0.5915007,0.2921707,-0.41736877,-0.08764407,-0.7748484,0.086009815 -729,0.47906846,-0.17183383,-0.5691011,-0.12135541,-0.11975272,0.01692046,-0.08911881,0.34949854,0.3905303,-0.44127303,-0.08934736,-0.10523048,0.08739614,0.20868012,-0.2243889,-0.7850685,-0.08701476,0.3212155,-0.37761894,0.5085127,-0.52538234,0.17575444,-0.09282914,0.32801777,-0.12706994,0.22191194,0.31225067,-0.14271435,-0.17057785,-0.037310783,0.24111515,0.4331965,-0.80976105,0.14745738,-0.008312244,-0.27362254,-0.06606109,-0.35238045,-0.4969064,-0.92188394,0.5186108,-1.0307306,0.56342304,0.27114922,-0.17558323,0.26003677,-0.028719027,0.046249636,-0.33177325,-0.011308441,0.13450712,-0.3609038,-0.31341842,-0.28380492,-0.11339169,-0.20021406,-0.7790202,0.086320676,-0.51722157,-0.028253106,-0.29871908,0.14231035,-0.43483317,-0.030778326,-0.30331177,0.71907604,-0.43009165,0.0045894017,0.3961414,-0.21796513,0.24344507,-0.45234916,-0.16111296,-0.099614754,-0.011396353,-0.21724297,-0.3993605,0.19948873,0.3818016,0.3771341,-0.057667393,-0.38616583,-0.39139387,0.04782872,0.43485582,0.40553468,-0.29170462,-0.51995647,-0.073253736,-0.033110086,-0.057097122,0.127158,0.23991816,-0.4196623,0.001383433,0.20122752,-0.12603918,0.6255433,0.72514975,-0.1511485,-0.18547036,0.23955266,0.59066606,-0.012196938,0.03525052,0.039090954,0.06518499,-0.609123,-0.250747,0.1910908,-0.23604144,0.65116704,-0.265729,0.085079126,0.5904928,-0.45005795,-0.2008492,0.23451039,0.15369707,0.09821912,-0.438998,-0.29064095,0.6625272,-0.42855772,0.027488094,-0.2666611,0.80602163,0.13051769,-0.82478154,0.4377054,-0.55546325,0.3219752,-0.23450515,0.77865654,0.54369676,0.4291216,0.53752905,0.8351319,-0.52432126,0.037560485,0.08748459,-0.6073913,0.18917741,-0.24487719,0.034533225,-0.3564706,-0.13700326,-0.02647474,-0.2702351,0.07606056,0.47559148,-0.52310604,-0.10462333,0.02071122,0.621344,-0.29696527,-0.19747098,0.60584337,1.2430117,1.1281899,0.19481824,1.4690036,0.39018977,-0.16433305,0.0838089,-0.15615183,-1.150655,0.29940408,0.29868814,-0.4710081,0.44407794,0.12624271,-0.3021843,0.4417501,-0.5389407,-0.1904316,-0.1475336,0.3314745,0.0061193933,-0.23578899,-0.407276,-0.15778875,-0.007694861,-0.021803392,0.127556,0.27512124,-0.2665499,0.26339218,0.14349592,1.225487,-0.11364163,0.106249206,0.09297393,0.3565602,0.18835957,-0.042584416,-0.037500344,0.3189875,0.31607744,0.26814634,-0.65546286,0.07831783,-0.2352776,-0.56009203,-0.25360116,-0.30658552,0.1783372,-0.07080661,-0.43189886,-0.12508097,-0.16585207,-0.3958491,0.3875225,-2.393478,-0.11967142,0.069743454,0.4231946,-0.20035058,-0.27875984,-0.10736062,-0.50757086,0.27268866,0.31523862,0.44618896,-0.8042533,0.29944932,0.45473772,-0.59856546,-0.01155889,-0.82082516,-0.066974156,-0.23989871,0.28852856,0.13164848,-0.10128124,0.11305576,0.14554398,0.48954943,-0.003750549,0.03282983,0.37088427,0.47734106,0.017989708,0.34431207,0.020080786,0.4639362,-0.41665855,-0.4154584,0.35322732,-0.40742442,0.17345916,0.03819017,0.032536708,0.32742172,-0.43194205,-1.0557622,-0.5715039,-0.21094242,1.1984037,-0.35342214,-0.51611495,0.30729836,-0.17708352,-0.3549864,-0.011618426,0.4301174,-0.31215218,-0.085799545,-1.0124551,0.12388717,-0.16567755,0.24235685,0.011632121,0.065681554,-0.45202345,0.67658657,-0.20114239,0.37712172,0.42229426,0.20656437,-0.473718,-0.5959143,0.09766246,0.9924711,0.16517466,0.29369086,-0.2816756,-0.23346029,-0.08755748,0.009408212,0.043171883,0.56571794,0.8615255,-0.11680996,0.04837972,0.37615988,0.07690383,0.084083304,-0.21360016,-0.43930534,-0.084693834,-0.13296407,0.65556717,0.85824203,-0.41792992,0.23739092,-0.03639937,0.34218675,-0.003834399,-0.35866258,0.5384594,1.4146162,-0.07738287,-0.38608947,0.7754832,0.4417617,-0.65256363,0.5954963,-0.6232621,-0.21141694,0.36334884,-0.19281866,-0.45979038,0.2729377,-0.43969932,0.2453102,-1.0379124,0.548276,-0.26589277,-0.32283136,-0.53738314,-0.2306134,-3.977215,0.24715552,-0.37240034,-0.025231214,-0.19646849,0.022188503,0.23728868,-0.5597985,-0.62248987,0.19550191,0.09178957,0.52357185,-0.24389938,0.13862266,-0.0715371,-0.07634702,-0.19330499,0.22461827,0.30701756,0.28572398,0.13385506,-0.48745394,-0.0002741424,-0.113082916,-0.39620754,0.056691136,-0.5657983,-0.49972644,-0.09506819,-0.70105463,-0.5690619,0.64678895,-0.2834646,-0.16460833,-0.33664453,0.1983107,-0.050394855,0.45782802,-0.082019016,0.32578886,-0.0016525433,-0.032069642,-0.11092806,-0.031388637,0.3949989,-0.075723894,0.39165512,0.49634224,-0.42848015,0.0886126,0.55822456,0.7977017,-0.04181264,0.9240853,0.63384885,-0.026885109,0.2872308,-0.21306525,-0.24805562,-0.80371284,-0.3239377,-0.06513085,-0.53392184,-0.32101023,0.066555105,-0.40855402,-0.8366799,0.66532326,-0.16080731,0.23682864,0.093813896,0.44379684,0.5554887,-0.13617112,0.010866027,-0.1338065,-0.3109282,-0.5356333,-0.0964136,-0.64746994,-0.53487074,-0.070756055,0.9361751,-0.12709433,0.060420923,0.14067116,-0.014448909,-0.013494799,0.27816075,-0.025509605,0.25946912,0.48688242,0.096253745,-0.6207928,0.4070188,-0.17215618,-0.12505199,-0.7584107,0.1678002,0.5035902,-0.725579,0.8402598,0.4748205,0.114533,-0.051910464,-0.59647316,-0.43961242,0.15260619,-0.08484424,0.69391906,0.41748106,-0.9063917,0.49226087,0.4990369,-0.44268253,-0.68664736,0.5235066,-0.059165876,-0.18527696,-0.077553,0.5077719,-0.28405178,0.08603001,-0.15998714,0.25580692,-0.3990736,0.13050932,0.26582253,-0.068949334,0.45783025,-0.06174262,-0.14564168,-0.75445247,0.07644855,-0.62680346,-0.19855997,0.16243806,-0.030818395,-0.025910629,0.13452746,0.045231834,0.6172869,-0.2305117,0.06360424,-0.035505097,-0.4915393,0.545413,0.6190529,0.33768228,-0.4705512,0.65151066,-0.0033474439,-0.1795846,-0.34496564,0.014230563,0.5538137,-0.0074043367,0.41854525,0.33266163,-0.00067671906,0.35205618,0.78189343,0.13054189,0.7063289,0.24774401,0.060658075,0.34327918,0.123158365,0.33907765,-0.13104399,-0.58315456,0.03693005,-0.20249715,0.20430878,0.6315434,0.059933607,0.48895544,-0.259529,-0.33709526,-0.105423085,0.3484728,0.06595845,-1.2355542,0.44657245,0.146746,0.6583507,0.57478297,-0.04580261,0.09679083,0.46016905,-0.1916202,0.12526643,0.36533177,-0.080267824,-0.56109715,0.5757213,-0.6942804,0.19818467,-0.25340238,0.045179646,0.0422627,0.007663493,0.40894097,0.7489671,-0.042539403,0.023284338,-0.1289705,-0.18350346,0.2913659,-0.48278517,0.33145362,-0.40073982,-0.28012103,0.7813937,0.46871516,0.55017674,-0.25400972,-0.00041448898,0.23688713,-0.18251981,0.37053907,-0.08308925,-0.10858306,-0.069187,-0.723295,-0.24061608,0.6522834,0.3221938,0.03573338,-0.2043648,-0.20116708,0.30012333,-0.17979993,-0.2972596,-0.14521345,-0.70322156,-0.07142596,-0.17879952,-0.5196283,0.4833986,-0.27418897,0.1776217,0.2695588,0.10891633,-0.6602798,0.061945114,0.24250099,0.74066365,0.013842482,-0.21315248,-0.36024985,0.3309942,0.3026968,-0.1523067,-0.0306285,-0.34778574,0.069622755,-0.47340134,0.5607689,-0.16672571,-0.4494039,0.002115479,-0.029734502,-0.03704519,0.6942016,-0.39998564,-0.2780406,0.032787886,-0.10404767,-0.22021185,-0.31173876,-0.14186536,0.36881354,0.13316472,-0.24048768,-0.23463424,-0.070394546,-0.21785356,0.3873079,-0.020192526,0.17159532,0.40890285,0.246963,-0.4245439,-0.13127716,0.28802025,0.7403265,0.053187378,-0.26264623,-0.5629135,-0.50027454,-0.18657064,0.03411546,-0.06102154,0.300368,0.10535077,-0.3730645,0.9235484,0.14111695,1.2208622,-0.086797245,-0.3004184,-0.09640524,0.64635783,0.07404472,-0.27742055,-0.35256723,0.99760604,0.6064594,-0.35019472,-0.10781936,-0.5428494,0.09421056,-0.008889214,-0.17360163,-0.22859436,0.007572824,-0.753768,-0.08428614,0.19731413,0.4587868,-0.027654286,-0.016373284,0.2574432,0.19053353,-0.00020706654,0.31988138,-0.47224745,0.024929103,0.21977755,0.22071648,0.1202609,0.08467212,-0.32741782,0.27461684,-0.51889384,0.06652844,-0.3085601,0.11322523,0.0653194,-0.2913658,0.28845206,0.036214694,0.37766728,-0.33502176,-0.24680686,-0.2032424,0.37140802,0.1436281,0.04216925,0.90206397,-0.26617754,0.11020629,0.25858894,0.72329223,1.1706188,-0.15315117,0.04310211,0.24465689,-0.27709082,-0.9284878,0.42799821,-0.25514317,0.17433211,-0.22486566,-0.3331508,-0.84714156,0.068460725,0.16556822,-0.11636516,0.24179162,-0.58428013,-0.34484527,0.27426305,-0.37227204,-0.21256858,-0.28758055,-0.0028055792,0.7001925,-0.31862524,-0.27605444,0.0113764,0.14318044,-0.09624397,-0.5376309,-0.21389191,-0.38331544,0.26890916,0.14944795,-0.35885742,0.065610066,0.20568849,-0.49509305,0.25090224,0.3532179,-0.24260154,0.19830187,-0.22226693,-0.104614936,0.7498454,-0.2738046,0.17577061,-0.5392997,-0.7049628,-1.220041,-0.17189568,0.4637404,-0.08221992,0.031412248,-0.7804043,-0.034433313,0.1311205,-0.16466048,-0.11310451,-0.47399676,0.5037102,0.085769415,0.49014232,0.05407828,-0.7128755,-0.0677931,0.14494795,-0.22318557,-0.48838937,0.50419647,-0.0049083414,0.76143676,0.04115852,0.253316,0.26062986,-0.6501184,-0.031514622,-0.14867866,-0.24972357,-0.5857481,-0.10641929 -730,0.43240514,-0.30906746,-0.640646,-0.09567275,-0.30226168,-0.04289004,-0.25014547,0.53046507,0.18247941,-0.5226704,-0.14843203,-0.04297157,-0.20240913,0.32582194,-0.2114329,-0.80913854,0.06113704,0.2805866,-0.4213561,0.56178385,-0.30657375,0.4602032,0.14545886,0.3685705,0.19484869,0.29775086,0.16899967,-0.1185104,-0.25151005,-0.29512045,-0.091397114,0.17146799,-0.56713164,0.35001144,-0.20434865,-0.67551446,0.088483006,-0.47902718,-0.20501865,-0.7270306,0.23175809,-0.76167685,0.5502422,0.015472579,-0.2554016,0.008141572,0.054271538,0.43196157,-0.20067386,0.16642587,0.2267463,-0.14629586,-0.1880408,-0.2063407,-0.12044831,-0.2925385,-0.5993649,0.1594479,-0.37827128,-0.006695096,-0.143429,0.29618138,-0.29035485,0.14973873,-0.059663884,0.43667957,-0.43342015,-0.031089561,0.26557696,-0.22255264,0.09687687,-0.5720852,-0.111620925,-0.23002593,0.1701536,-0.18842815,-0.22925605,0.23265417,0.14033045,0.6692188,0.23107834,-0.24187095,-0.36281157,-0.102281846,-0.014983284,0.4430613,-0.31229898,-0.40720966,-0.36357805,0.094364956,0.45839584,-0.11045871,0.013307985,-0.3180169,0.048173357,-0.107596345,-0.117587596,0.30621433,0.56346947,-0.35464063,0.021467963,0.21625881,0.41326818,0.10888568,-0.032052927,0.065104336,0.02106705,-0.4192052,-0.18122582,-0.09278157,-0.23373348,0.5323953,-0.11224493,0.21940373,0.6530417,-0.118995205,-0.09014654,0.22332273,0.17670931,-0.050903298,-0.19146124,-0.3654796,0.37003025,-0.48447838,0.089520924,-0.21961696,0.8731879,0.29049042,-0.7721397,0.28924856,-0.5097311,0.12721433,-0.17465922,0.4803793,0.6140285,0.5928081,0.07109566,0.8545209,-0.42246768,0.15610486,-0.11645999,-0.2628226,-0.034865092,-0.10638247,-0.23927562,-0.4017363,0.16161035,-0.17834719,-0.07864542,0.1601771,0.4293467,-0.67700166,-0.04915809,0.10897023,0.87284845,-0.3360424,0.07258325,0.89238304,0.92049384,1.0001644,-0.07257504,1.2049007,0.26795736,-0.2555035,-0.031637833,-0.1979266,-0.70475197,0.36202246,0.46078774,-0.40501258,0.22666149,0.15884003,0.06647251,0.4821707,-0.61763877,-0.06053426,-0.35736427,0.16078186,-0.042476363,-0.14535874,-0.4923779,-0.12889244,0.13026185,0.027907355,0.07657048,0.29990783,-0.20087688,0.5366239,0.0054246862,1.4732891,-0.1532375,0.04898896,0.13510609,0.2599751,0.23866244,-0.012450549,-0.05394078,-0.058658697,0.23975572,-0.03966352,-0.50240535,-0.08762984,-0.34168097,-0.51779306,-0.30325028,-0.015439403,-0.06569704,-0.046971507,-0.48215103,-0.46447563,-0.053254806,-0.16496821,0.42487285,-2.1716635,-0.3833119,-0.18600222,0.38113114,-0.36083698,-0.31989688,-0.27206472,-0.4626512,0.5066278,0.27511245,0.60714656,-0.59976614,0.29409292,0.26736724,-0.5261499,-0.09007533,-0.4727397,0.008297976,-0.035819635,0.23723647,0.047599528,-0.4250916,-0.13719943,-0.15854543,0.57094324,-0.23254162,0.017651059,0.30206993,0.28915754,-0.023607709,0.3018783,-0.0023105005,0.6462804,-0.56568813,-0.2650635,0.4597591,-0.35593513,0.15842031,-0.036816288,0.14598781,0.42920294,-0.68286884,-0.8504115,-0.74556375,-0.14817868,1.0640937,0.051832195,-0.45632982,0.120224856,-0.049718626,-0.23772793,0.19383578,0.3308335,-0.22516109,-0.061272956,-0.9170476,0.024250774,-0.030192323,0.24411485,0.0042082765,0.012183747,-0.44976565,0.6960889,-0.110881135,0.38594133,0.5005758,0.30520794,-0.13696414,-0.5561991,0.13418517,1.1885295,0.6181078,0.2290143,-0.25860295,-0.11372416,-0.2993571,-0.18299729,0.060714837,0.45871624,0.8293603,-0.123396,0.030412946,0.40229332,0.064492434,0.0060444474,-0.069848746,-0.39021003,-0.16442534,0.17748347,0.620658,0.6298167,-0.024500433,0.29798788,-0.13320766,0.5331442,-0.0077081365,-0.540871,0.65999377,1.0270302,-0.20637982,-0.41921955,0.627856,0.34032622,-0.23023602,0.5175837,-0.6619064,-0.5372369,0.3661628,-0.12799221,-0.39761102,0.14398018,-0.29542777,0.34327903,-1.0843118,0.44180056,-0.34667656,-0.37790042,-0.71961623,-0.2951872,-2.5422018,0.09494304,-0.29456344,0.10534782,-0.09248285,-0.08700214,0.18392138,-0.6271826,-0.65834737,0.05449309,0.104517914,0.7102602,-0.008852345,0.3077011,0.019289367,-0.34298486,-0.2830825,0.3057238,0.36863706,0.12932499,0.028036261,-0.5287935,-0.20185119,-0.2969213,-0.44017366,0.033931408,-0.77679086,-0.42191285,-0.1631249,-0.7797129,-0.26249757,0.6976202,-0.45015696,0.10313532,-0.14415649,-2.1278859e-06,-0.19269317,0.22153114,-0.0036388675,0.042257715,0.24862213,-0.19811319,0.13850234,-0.30811718,0.2581615,0.14004634,0.31797284,0.35912514,-0.26550415,0.343297,0.5580307,0.7612855,-0.10150218,0.81971157,0.7315578,-0.12320913,0.31327853,-0.37310055,-0.4720265,-0.60254353,-0.34769502,-0.016866613,-0.53635603,-0.32886708,0.22534631,-0.47262347,-1.053355,0.68724304,0.027895192,-0.11412796,-0.070418954,0.32076958,0.56073016,-0.27068362,-0.14873353,-0.0012240649,-0.14924732,-0.2830132,-0.28988126,-0.64319736,-0.545189,-0.045225818,1.3592814,-0.061921302,0.23778318,0.21475458,-0.06107717,0.17842343,0.047875836,-0.060545206,0.094277844,0.55673134,0.042271353,-0.7347954,0.28316483,-0.14535864,-0.14081812,-0.44631153,0.19409579,0.57139,-0.7509356,0.2774839,0.40790874,0.11015748,0.15128212,-0.42476752,0.09389147,-0.06171054,-0.20681377,0.45277247,0.2200275,-0.4199456,0.57358795,0.41549957,-0.26215547,-0.9100397,0.20047401,0.06669596,-0.23973995,-0.005625717,0.33866748,0.11116378,-0.17144985,-0.22332166,0.22972725,-0.39159602,0.3263652,0.14253363,-0.23810202,0.38246924,-0.4358398,-0.3466902,-0.90852875,0.08170926,-0.6318611,-0.41951227,0.14499661,0.12686032,-0.025693337,0.11015132,0.18613917,0.5701862,-0.4379701,0.062241707,-0.29342413,-0.31716698,0.30331284,0.44072926,0.28149623,-0.4596052,0.5558339,0.052639615,-0.01874618,-0.19126673,-0.014419456,0.5421639,-0.0737971,0.31737646,0.21262246,-0.038883287,0.14456859,0.69452,0.05089799,0.30137077,0.07686964,-0.23128945,0.08901063,0.15517603,0.04767711,0.04550423,-0.4841331,0.063039206,-0.088769324,0.0089671295,0.56383055,0.34411776,0.50186926,-0.14373611,-0.44237605,0.11585913,0.015702484,-0.045123745,-1.4730792,0.37077042,0.056180183,0.7649351,0.4979789,0.16796707,0.11980198,0.54350644,-0.19254738,0.17011985,0.2922828,-0.2301163,-0.26355407,0.3372265,-0.5371088,0.37477753,0.009226129,0.1327921,0.10815053,-0.03990734,0.5495706,0.6839319,0.008670315,0.16431211,-0.047651015,-0.30595157,0.15312307,-0.31613302,0.13364492,-0.47598383,-0.23451896,0.78668994,0.3278775,0.24650103,-0.21004918,0.083107516,0.24446082,-0.05409598,0.2508708,-0.03883846,0.16668017,-0.08042336,-0.32719746,-0.23496395,0.59124094,0.19697447,0.1446865,0.0138786,-0.26396307,0.29853874,-0.021620654,-0.007932635,-0.17228287,-0.6059622,0.09218765,-0.604032,-0.22065058,0.32301658,0.026163416,0.17178164,0.13901626,0.14045355,-0.4521444,0.45698628,0.0916996,0.7647262,0.022334564,-0.32439592,-0.12409815,0.3563775,0.26926038,-0.32380468,-0.06558448,-0.25011146,0.16098426,-0.62724966,0.44107106,-0.1603408,-0.2390736,0.26488307,-0.05033427,-0.027468324,0.4200293,-0.24451528,-0.008128361,0.37561074,-0.013064167,-0.25823757,-0.3368313,-0.2879307,0.12430179,0.23632117,0.11161419,-0.23961653,-0.2575668,-0.24305132,0.59555364,-0.035816543,0.2576007,0.33304596,0.14321288,-0.53675723,-0.06968382,0.16684559,0.4736399,-0.05145121,-0.10889673,-0.3109554,-0.38604906,-0.38542423,0.119132906,-0.3128821,0.25485066,0.12081604,-0.30070046,0.9240407,0.25204745,1.4225043,-0.004262316,-0.3797614,0.04735491,0.545349,-0.16378213,0.004929924,-0.38636363,1.1427872,0.62915486,-0.23383333,-0.11720694,-0.4658706,-0.10404582,0.095931076,-0.30975035,-0.25921682,-0.14729008,-0.58225816,-0.5830485,0.29369444,0.36625624,0.009665994,-0.19802316,0.08360412,0.09898653,0.026541227,0.28314546,-0.5123508,-0.16388859,0.2903024,0.27761135,-0.008400933,0.20352969,-0.5469317,0.36794186,-0.60331786,-0.028362194,-0.26705396,0.21469969,-0.06484872,-0.37871805,0.22690175,-0.08292742,0.24143276,-0.50408137,-0.3710983,-0.23572485,0.49456814,0.105781935,0.18787293,0.8214043,-0.310295,0.030347431,-0.05235533,0.5129967,1.0071504,-0.2491017,0.13123904,0.39979133,-0.07041033,-0.5008868,0.323799,-0.40157306,-0.01774749,-0.083556384,-0.38516983,-0.69582856,0.2971452,0.14159232,-0.03660493,0.02806615,-0.71936214,-0.10607012,0.3635,-0.27021936,-0.21513265,-0.3122694,0.11269951,0.6415914,-0.24134466,-0.45920393,0.28137615,0.37384185,-0.1582367,-0.60931385,-0.2186545,-0.3428369,0.29513073,0.3687978,-0.34662044,-0.11699668,0.12807709,-0.4596537,-0.1216233,0.2915062,-0.28983152,-0.024711788,-0.29213095,0.032803316,0.8684495,-0.08887779,0.49729842,-0.5044582,-0.29472515,-0.9767895,-0.26473114,0.5730753,0.26867503,0.02398682,-0.8695137,-0.032590874,-0.20488782,-0.3330075,0.07171164,-0.41240826,0.4703542,0.1574224,0.6771546,-0.23989652,-0.7541341,0.23738617,0.06918396,-0.26065853,-0.35538933,0.4060025,0.16950485,0.9918764,0.10488712,-0.0915499,0.4655447,-0.7045081,-0.04958969,-0.2585672,-0.16627067,-0.5610052,0.03939351 -731,0.5197055,-0.048222788,-0.63859737,-0.2116534,-0.5356265,0.060522366,-0.4249972,0.0035241067,0.29352772,-0.05508206,-0.10322312,0.12535314,-0.036590338,0.29799047,-0.0029994666,-0.77107376,-0.19722739,0.028964804,-0.6886181,0.64439934,-0.5188924,0.4307975,0.099467635,0.34448674,0.2792594,0.6311134,0.3515856,-0.12154889,-0.11192934,-0.22271098,-0.019872995,0.072836444,-0.62244874,0.16043372,-0.1556,-0.29335383,0.09200131,-0.31231025,-0.2711323,-0.68904406,0.20814976,-0.84178984,0.4647564,-0.12046102,-0.0953054,-0.07381402,0.41901362,0.47592297,-0.22305125,0.20319465,0.39394343,-0.36625835,-0.06070818,-0.333526,-0.22030328,-0.5240821,-0.47527298,-0.18401319,-0.722265,-0.35442123,-0.18502258,0.36200097,-0.37447378,-0.15353672,-0.3818381,0.41530555,-0.53836197,0.086667866,0.31201527,-0.3555356,0.14420687,-0.5513845,0.04116733,-0.08484998,0.3555204,0.12209473,-0.048262615,0.40698496,0.23933354,0.23422639,0.44745746,-0.3033169,-0.31355584,-0.34911457,0.27073675,0.24076131,-0.1150069,-0.015620943,-0.3827351,-0.0020471097,0.44812715,0.505585,-0.028774943,-0.226128,0.18085681,-0.16670564,-0.13288471,0.6920818,0.4535113,-0.21787609,-0.34611192,0.28594026,0.6558274,0.39222622,-0.401353,0.120008774,-0.12921953,-0.3998575,-0.12943348,0.3255995,0.00032556852,0.31257057,-0.10993149,-0.13403533,0.92471445,-0.27617756,-0.08749445,-0.034985766,-0.061603125,-0.115937226,-0.3000864,-0.03351093,0.07307192,-0.5905624,0.01635615,-0.24342051,0.6383533,0.06263598,-0.61101073,0.22411436,-0.6016478,0.11731974,0.008813282,0.82084453,0.54256463,0.49586505,0.18831617,0.92308044,-0.16852917,0.30957517,-0.12289667,-0.49431515,0.042045757,-0.16865057,0.072232835,-0.42548788,0.052646384,-0.2475374,0.08033702,-0.033175975,0.44899923,-0.49296027,-0.06175488,0.21572909,0.79174006,-0.31639203,0.023092814,0.6286525,1.1471533,1.1542505,-0.04422262,1.1139598,0.25849405,-0.20119585,-0.18524928,-0.33457372,-0.36979848,0.2076176,0.28334746,-0.2807309,0.33726588,-0.09846368,0.059973013,0.13651837,-0.4072937,-0.1562309,0.0039052328,0.3029223,0.17066303,-0.09852286,-0.40955493,-0.037708394,0.13773571,-0.013770322,0.43566388,0.16858108,-0.35092562,0.4506751,0.1131849,1.1253276,-0.20049238,-0.06738283,0.12725013,0.638746,0.31575802,-0.019294595,0.18288618,0.5062369,0.3892214,-0.06656513,-0.63256866,0.14155029,-0.44184178,-0.5073049,-0.23014809,-0.41363898,-0.10621413,0.078542836,-0.19635348,-0.19811915,-0.026005093,-0.46377614,0.2643336,-2.6189835,-0.08657534,-0.14957665,0.20703273,-0.33580482,-0.10477509,-0.05175761,-0.5158518,0.17195651,0.2120734,0.45671967,-0.48505822,0.552983,0.64531773,-0.7521147,-0.09692513,-0.61402506,-0.011821127,-0.17465903,0.7217159,0.03862993,-0.12872326,-0.27397695,0.24005146,0.8639377,0.18065457,0.20666961,0.46303883,0.36479998,0.10334562,0.594504,0.21288897,0.5522962,-0.22677016,-0.27177918,0.61904925,-0.23403747,0.31689367,-0.328413,-0.017735517,0.56711954,-0.3027692,-0.9960547,-0.5957302,-0.41013852,1.055281,-0.3538875,-0.70056474,0.2410823,0.09044675,-0.11331234,0.2473228,0.48375815,-0.27900073,0.3276989,-0.62463874,0.061312053,-0.10019366,0.21459773,0.03513289,0.14923614,-0.41585165,0.76288474,0.012496587,0.52478707,0.045940813,0.36738962,-0.2308226,-0.4155835,0.24286468,0.84412855,0.33178502,-0.119637236,-0.18390583,-0.2866805,0.025005238,-0.2683616,0.020945247,0.60183376,0.7580307,-0.11307535,0.09704831,0.45333585,-0.21384366,-0.033028543,-0.2108221,-0.2591806,-0.052663542,0.15561226,0.4061436,0.6278728,0.04260601,0.3863144,-0.11916296,0.41991705,0.0021852255,-0.6515452,0.66279185,0.61580575,-0.14014481,-0.19042677,0.6123389,0.6065562,-0.5089439,0.6553604,-0.733357,-0.2832208,0.7267762,-0.14602557,-0.4602166,0.10172649,-0.33300024,0.12209036,-0.6143702,0.30004254,-0.37893286,-0.4974558,-0.27177793,-0.32289034,-2.8897283,0.08559479,-0.1980347,-0.09123495,-0.30045393,-0.052557696,0.2667955,-0.6313133,-0.616001,0.017272206,0.2993213,0.51719034,-0.10434196,0.16466689,-0.28038108,-0.26149917,-0.11076201,0.3235718,-0.007999166,0.32572752,-0.36578533,-0.4060982,-0.016889345,0.09813359,-0.53280085,-0.11901739,-0.5045383,-0.31293714,-0.080149375,-0.57956433,-0.11900857,0.59912956,-0.45999274,0.05219273,-0.19406714,0.19233288,-0.044648413,0.19326086,0.08472489,0.29889545,0.30041477,-0.05937099,0.14297791,-0.23633352,0.6019604,-0.067158416,0.4246186,0.100769825,0.0386495,0.13396902,0.32433647,0.4816204,-0.1441624,1.0647696,0.33826604,-0.13120484,0.16668911,-0.1885714,-0.29628438,-0.8514069,-0.3931887,-0.05473652,-0.455417,-0.59671366,-0.07550495,-0.25324312,-1.0296537,0.6841198,0.10288534,0.5551352,-0.19744284,0.18149446,0.39573872,-0.13496393,-0.05097469,-0.08144402,-0.29718688,-0.50324196,-0.34113282,-0.6856166,-0.45164663,-0.036997985,0.7504997,-0.41328368,-0.035341825,-0.050521135,-0.3625767,0.067474864,0.27914402,0.08371015,0.22739553,0.5088728,0.024158502,-0.57597286,0.3485479,-0.013299036,0.07349236,-0.4376512,0.14662844,0.76860434,-0.67029923,0.49968275,0.36939478,0.14859524,-0.057475507,-0.5692562,-0.07219445,-0.016915027,-0.110360734,0.64132816,0.12661682,-0.60294366,0.58114696,0.104695335,-0.46703592,-0.69914716,0.35046533,-0.15575078,-0.25788423,-0.023531241,0.458634,0.037863698,-0.19460097,-0.25566527,0.24082139,-0.3250247,0.2556957,0.21431394,-0.20513557,0.37407824,-0.058140516,-0.5968545,-0.7870682,0.10817765,-0.6127608,-0.44854486,0.3405476,-0.056578122,-0.1627572,0.26976788,0.036008656,0.49194005,-0.02551386,0.17014946,-0.10231642,-0.31985697,0.5353028,0.46733588,0.42216906,-0.41348046,0.63162196,0.24338083,-0.32613665,0.23979422,0.081663765,0.44640264,-0.16174367,0.46990782,-0.07431626,-0.025014384,0.31333226,0.53755,0.30534393,0.32600278,0.015377204,-0.30459067,0.40499738,-0.056404848,0.2267324,-0.2181152,-0.5605721,-0.06358621,-0.11061117,0.11172,0.5409747,0.32776088,0.46933395,0.18240485,-0.119780056,0.19432203,0.076758854,-0.22195244,-1.2252191,0.41312867,0.3389496,0.850548,0.45126137,0.15892978,-0.11323962,0.6875135,-0.3809442,0.0080279205,0.42432135,0.18924035,-0.37805635,0.61707395,-0.5491756,0.43363056,-0.1173257,-0.08059406,0.1982219,0.19193612,0.3805843,0.97124046,-0.18583088,0.036702927,-0.15544605,-0.17820935,0.054742895,-0.19281435,0.17655714,-0.31120437,-0.6224786,0.8425508,0.35023788,0.44437045,-0.17201549,-0.12987122,0.019160667,-0.19061197,0.33180568,-0.08578567,-0.039380398,0.014813975,-0.4504955,-0.23595819,0.44978312,-0.0040340167,0.1576562,-0.15477525,-0.16104126,0.057929516,-0.108437076,0.1759881,-0.049894776,-0.639093,-0.07322515,-0.020703603,-0.66265315,0.3874169,-0.2883395,0.15481445,0.19822434,-0.020919975,-0.27206448,0.26569402,0.14999726,0.71687794,0.07964425,-0.16760786,-0.29633716,-0.03444797,0.37680656,-0.26046714,0.04225093,-0.18878566,0.15739061,-0.6772057,0.5858518,-0.42315733,-0.5697022,0.14423576,-0.3757639,-0.23119283,0.58130336,-0.01934777,-0.3092818,0.2631625,-0.22051707,-0.49437344,-0.06696662,-0.30177394,0.14420289,0.15196122,-0.30720437,-0.2737567,-0.19491486,-0.022717113,0.41899535,-0.08552253,0.38504377,0.1945354,0.056569636,-0.37363803,0.07053157,0.25892818,0.4957239,0.09861391,0.21161006,-0.12210885,-0.44861645,-0.35474518,0.33217105,-0.22207883,0.17934665,0.1322987,-0.31945798,0.91126984,0.12069264,1.2695149,0.11994768,-0.40944576,0.12470393,0.55749923,-0.16798595,0.03229607,-0.4061068,0.93764764,0.73631924,-0.24372362,-0.06135348,-0.5938247,-0.1128675,0.25707242,-0.44878143,-0.06188701,-0.11605896,-0.58172023,-0.42527926,0.26253477,0.22162701,0.116364524,-0.10081741,-0.08307899,0.07734437,0.22893684,0.5770891,-0.5852082,-0.20202678,0.22038203,0.064828716,-0.18932088,0.20755579,-0.4149543,0.45800218,-0.6932067,0.12777556,-0.37414762,0.13301152,-0.3925998,-0.3522483,0.15930255,-0.13347429,0.26279113,-0.37507918,-0.401706,-0.14193088,0.3938444,0.19436897,0.12215748,0.7617327,-0.30413997,0.18853383,-0.022668425,0.48571664,1.3044194,-0.36687124,0.061382,0.26599315,-0.47973067,-0.64657044,0.23202787,-0.49442163,-0.10554349,-0.08413899,-0.72410756,-0.2765604,0.35715276,-0.03807675,-0.03616861,0.18628651,-0.5540792,-0.057827696,0.2992473,-0.14150284,-0.30469337,-0.13664788,0.5144417,0.7010062,-0.29619807,-0.5549993,0.048323113,0.36438486,-0.30775577,-0.58455485,-0.00719349,-0.06547228,0.5170483,0.019026216,-0.28069016,-0.013242599,0.22395156,-0.51209414,0.04706765,0.434241,-0.37195817,-0.019252324,-0.14857486,0.06624504,0.5884003,-0.24484149,-0.22383918,-0.6015269,-0.3794025,-0.97472584,-0.41156197,-0.13212581,0.15008458,-0.052467134,-0.43494567,-0.03561036,-0.39423046,0.01223585,0.10499375,-0.73431647,0.40437204,0.17195155,0.6323232,-0.4074563,-1.092459,0.1556792,0.19398665,-0.013494615,-0.8012236,0.71823174,-0.16452803,0.6244165,0.093893856,-0.141359,-0.018281957,-0.5477262,0.20390616,-0.34888917,-0.23117876,-0.9714276,0.12698461 -732,0.30035493,-0.11809184,-0.4159987,-0.2716634,-0.2866388,0.036165744,-0.2941963,0.28098148,0.22664814,-0.19695385,-0.17678106,-0.2638447,-0.0068976944,0.38785848,-0.1375585,-0.37689313,-0.2788577,0.040159274,-0.76322895,0.5109687,-0.52005666,0.17671338,0.108864605,0.41573787,0.22843218,0.4258769,0.33145848,-0.167362,0.013371468,-0.06860163,0.0019816202,0.07687448,-0.47538495,0.036906064,-0.2212648,-0.267834,0.055944927,-0.5609022,-0.20398687,-0.64184105,0.29850507,-0.8148857,0.5098056,0.039753202,-0.040643,-0.04374134,0.4542927,0.39010724,-0.28978205,-0.054000217,0.2751611,-0.12925424,-0.013558149,-0.112046,-0.017957082,-0.34394678,-0.48251247,-0.0731346,-0.5219303,-0.36699295,-0.10890126,0.20650294,-0.29912797,0.0844893,-0.00046232768,0.40118632,-0.4154224,-0.09692324,0.29553205,-0.24822533,0.37475234,-0.48097256,-0.09123441,-0.09398973,0.5366587,-0.050499994,-0.06870703,0.24030216,0.15866616,0.37646046,0.083027504,-0.1592305,-0.20157732,-0.22083218,0.009084514,0.49368498,-0.059649944,-0.25197086,-0.11026347,0.008033807,0.24886346,0.29340845,-0.0019150674,-0.17410564,-0.0032013555,-0.11758012,-0.24688436,0.51506394,0.46329013,-0.24215399,-0.2539529,0.2900359,0.5512545,0.28312683,-0.24839534,0.0889694,0.10117962,-0.47156376,-0.059389837,0.10065425,-0.10316352,0.38883844,-0.101916626,0.26137236,0.7571012,0.019537073,0.05114078,-0.069721095,-0.11158508,-0.16206013,-0.14176278,-0.13515925,0.11146825,-0.46526742,-0.0109079955,-0.21022268,0.6228982,0.08188575,-0.66413736,0.3029285,-0.64868414,0.14514394,-0.064502284,0.6135562,0.6523814,0.33743852,0.41062632,0.7674794,-0.22005498,0.16378066,-0.023804171,-0.3219393,0.13361248,-0.3135626,0.102789745,-0.5180277,0.0866129,-0.019629518,0.09217308,0.036513235,0.2633585,-0.4241461,-0.05099656,0.30324563,0.7297907,-0.22757967,0.013145238,0.7598061,1.0977889,0.9030322,0.06296901,1.0127466,0.22083203,-0.3122937,0.18650964,-0.28302076,-0.75564355,0.26264656,0.38130498,-0.0772313,0.37156412,-0.08179905,-0.014512547,0.24765821,-0.4902318,0.24259874,0.083420254,0.17017958,0.27552918,-0.05633735,-0.34549642,-0.1717345,0.038145144,-0.041510113,0.22290793,0.07837285,-0.17920081,0.3147153,-0.094435014,1.2412459,-0.00011648451,0.07561225,0.22194818,0.64922506,0.15174921,-0.13056591,-0.14781228,0.36881274,0.301719,0.10443817,-0.6058055,0.37104735,-0.24127285,-0.37949032,-0.20262848,-0.37598085,-0.22800303,0.062409665,-0.3741303,-0.13797939,-0.05112241,-0.33885834,0.2892334,-3.0762293,-0.24678007,-0.25832847,0.28266177,-0.25429773,-0.003177977,-0.1274955,-0.46964145,0.25320187,0.44755417,0.41070274,-0.6139097,0.587402,0.50418395,-0.5767931,-0.13817404,-0.60814935,-0.08107465,-0.052153733,0.5125739,0.099559076,-0.07425316,-0.119727716,0.41023207,0.5775781,0.15512596,0.074668966,0.38916424,0.4509937,0.12508523,0.61792195,-0.052046973,0.35896853,-0.34230417,-0.046081662,0.36765814,-0.36146116,0.08979827,-0.11700572,0.08563824,0.48460874,-0.48614216,-0.904556,-0.63242376,-0.30030444,1.048061,-0.18704227,-0.3171801,0.22292389,-0.324439,-0.08165907,0.0040441835,0.75911057,-0.12263918,0.20617819,-0.7812239,0.04311642,-0.13890597,0.17808388,0.03536875,-0.039864004,-0.41893452,0.63484573,-0.025429975,0.5913387,0.20953175,0.14676669,-0.30334845,-0.39122176,0.22941709,0.6134585,0.17332764,0.040356047,-0.16467948,-0.11520749,-0.12308011,-0.16707988,-0.040481146,0.43180853,0.6389373,-0.023530956,0.31142697,0.32982343,-0.17904009,-0.101697505,-0.03759045,-0.10942041,-0.008194432,-0.014277114,0.42802358,0.7341689,-0.16441451,0.39478213,-0.13065019,0.388941,-0.15400144,-0.4174841,0.5898906,0.35428327,-0.1267165,-0.075574055,0.4540605,0.5701845,-0.40184242,0.43576762,-0.6187225,-0.31640244,0.56947386,-0.12065788,-0.48731643,0.28711846,-0.24639232,0.121609025,-0.8539758,0.27871007,-0.25516874,-0.26075524,-0.3867576,-0.16748299,-3.2563517,0.07256072,-0.14432155,-0.2942681,-0.24092317,-0.040356636,0.32604295,-0.5600007,-0.64025027,0.08614312,0.23320298,0.6459103,-0.067703456,0.13582957,-0.32423338,-0.06231751,-0.2552323,0.24431899,0.022579445,0.3169115,-0.1482484,-0.39176723,-0.044443876,-0.14192979,-0.49913263,0.11399046,-0.30941173,-0.45250437,-0.04673692,-0.45247778,-0.3439569,0.54285765,-0.23797964,-0.002862513,-0.2978448,-0.00830519,-0.10404665,0.30202565,0.12948874,0.08258343,0.076685704,-0.0050577563,0.038937535,-0.22462974,0.44428518,0.0023848393,0.31208983,0.16058062,0.0657065,0.2194821,0.43131495,0.4643702,-0.07372112,0.93479574,0.38760582,-0.0020076616,0.18716672,-0.26463956,-0.13499367,-0.3911372,-0.16041319,0.004687982,-0.34320793,-0.53552234,-0.001618066,-0.2719969,-0.73559386,0.58011657,-0.08900004,0.2136384,-0.016376961,0.14896436,0.26836446,-0.18813215,0.019973282,0.081477486,-0.060104396,-0.43326664,-0.14434643,-0.57490253,-0.40574282,-0.13042022,0.79146826,-0.27147684,-0.026863307,-0.05855522,-0.35247713,0.0638807,0.07525168,0.16355903,0.42977116,0.44006896,0.017842485,-0.68960285,0.3094,-0.32065398,-0.10285287,-0.47812325,-0.03375758,0.5696556,-0.6385269,0.3506339,0.33149862,0.08885784,-0.1954498,-0.3596724,-0.09103044,-0.18044142,-0.21156655,0.40049392,0.04063714,-0.77511895,0.52810025,0.12685354,-0.38223958,-0.6724521,0.35518903,-0.06658421,-0.33386487,0.0045628375,0.21732858,0.08781905,-0.041442513,-0.2885789,0.1859365,-0.2836246,0.2578235,0.03546514,-0.0347211,0.50436497,-0.022385415,-0.24671762,-0.51225406,-0.026210103,-0.5056398,-0.2629431,0.33181778,0.039257474,0.026473012,0.1927524,-0.014747858,0.29286128,-0.106870994,0.019748459,-0.0068831933,-0.2117299,0.14859591,0.41526684,0.39163184,-0.4725655,0.56108713,0.042566907,-0.13391875,0.14511831,-0.10303114,0.2962874,-0.028428605,0.3392758,-0.10070914,-0.17852703,0.42354387,0.6350779,0.21397354,0.30824375,0.17052762,-0.065975145,0.54707664,-0.037120786,0.08172311,-0.11377245,-0.44786796,-0.018675115,-0.28116292,0.16641161,0.4020707,0.20261881,0.33174726,-0.0068461723,-0.20035665,0.031221423,0.1739624,-0.24922241,-1.1434567,0.31451705,0.25188205,0.82704216,0.44070843,-0.09045101,0.010040445,0.8675801,-0.19420457,-0.071912654,0.38491017,0.07758568,-0.48133823,0.7017098,-0.49683157,0.5425177,-0.11407174,-0.19385602,0.07691084,0.08154558,0.26780534,0.68180245,-0.15206374,0.0016232098,0.028575126,-0.23004715,0.05156677,-0.21716364,0.03996629,-0.48169142,-0.25037763,0.6514778,0.29930612,0.29123253,-0.15150645,0.02070455,-0.029745694,-0.09163005,0.23404738,-0.13509646,-0.14369114,0.04830129,-0.6710782,-0.19923863,0.50624543,0.097935975,0.23445769,-0.07721543,-0.36671862,-0.034409355,-0.18722892,0.009571399,-0.13709648,-0.6511747,-0.021343691,-0.054386787,-0.47640854,0.5012201,-0.37588575,0.19365717,0.18577358,-0.063934416,-0.20022199,0.25714648,0.085054316,0.67920345,-0.027766194,-0.19372347,-0.24184707,-0.098254494,0.20078447,-0.284712,-0.08061123,-0.44829965,0.17195596,-0.5618874,0.7209055,-0.08799849,-0.4348009,0.16634737,-0.2567515,0.052156202,0.57170135,-0.06877563,-0.078750424,-3.5179513e-05,-0.16465662,-0.25051898,-0.013671279,-0.43299022,0.2742056,0.29034895,-0.11555624,-0.117162034,-0.09758551,-0.11260842,0.5808383,-0.11028483,0.5108792,0.23196211,0.1225604,-0.21484415,0.09527261,0.11360991,0.48097536,0.25778374,-0.092638746,-0.31248263,-0.36055464,-0.18813434,0.328013,-0.09486502,0.16149613,0.077983454,-0.29567248,0.74263734,-0.044189777,1.0363333,0.11429068,-0.29470873,0.10550898,0.42475447,0.05924114,0.030388903,-0.41430897,0.7138745,0.52976376,-0.17036955,-0.099648125,-0.38988128,-0.048659377,0.2719659,-0.22290508,-0.077410996,-0.10989065,-0.5311307,-0.37125203,0.2052765,0.08363713,0.1568375,-0.08643885,0.046683274,-0.08504285,0.11503854,0.350956,-0.5273433,-0.13305147,0.24545656,0.14231674,-0.11502323,0.023083525,-0.4386677,0.48573372,-0.66628927,0.1329116,-0.38855615,0.11485551,-0.30963635,-0.29778114,0.09158746,0.07830316,0.39079434,-0.18092252,-0.39641777,-0.05850133,0.4276093,0.11687499,0.19624509,0.56421137,-0.20281148,0.06661625,0.036636464,0.56543267,1.0682606,-0.40374067,0.11926048,0.15936805,-0.35452673,-0.521648,0.34105107,-0.37693837,0.016426532,0.027188053,-0.24784592,-0.36254972,0.18471472,0.19567527,0.15124068,-0.07698887,-0.494817,-0.38197723,0.2752221,-0.23367535,-0.29326358,-0.33892503,0.116687186,0.5592479,-0.14026347,-0.21671322,0.111064374,0.41695222,-0.264294,-0.45632404,0.015142009,-0.24678068,0.40810776,0.01753513,-0.24781497,-0.18392079,0.17427394,-0.48746672,0.24828966,0.22571622,-0.41119552,0.0037418348,-0.2527857,-0.118797354,0.9093477,-0.21322788,-0.09941498,-0.5025113,-0.48674282,-0.9461485,-0.35476658,0.30011436,0.06363552,-0.094983555,-0.26981995,0.038678613,-0.034593817,-0.2068573,0.116142415,-0.58232445,0.27035433,0.06387805,0.53585565,-0.21967106,-0.84587634,0.057159323,0.023328325,-0.1387414,-0.57608825,0.59982616,0.08328576,0.7054062,0.019992009,0.057012964,0.028481502,-0.3221775,0.13741562,-0.29932407,-0.1327024,-0.71500957,0.14986242 -733,0.30398136,-0.39187902,-0.4141622,-0.14616463,-0.22436616,0.024803162,-0.10991318,0.36059633,0.12539342,-0.3614828,0.033037465,-0.15297236,-0.067473896,0.46375614,-0.14449224,-0.46438196,-0.096097626,0.16920808,-0.5294794,0.5737235,-0.39998585,0.27712014,0.14126904,0.29913405,0.10500741,0.18332376,0.06081019,0.024213556,0.1436549,-0.097526856,-0.097716495,0.31461474,-0.64239985,0.27339894,-0.080694005,-0.35422748,0.14381473,-0.2705072,-0.44896084,-0.7296851,0.34153542,-0.9603845,0.5629898,-0.03621701,-0.3778006,0.21650805,0.06799147,0.2530714,-0.30634397,-0.10632143,0.22073725,0.03396899,-0.005794708,-0.2172562,-0.113422684,-0.4124134,-0.53691113,-0.07865093,-0.658779,-0.30531257,-0.16274606,0.16806783,-0.30509892,0.14183882,-0.18740024,0.22323386,-0.52033937,-0.05175588,0.108520344,-0.18929315,0.30680758,-0.5944517,0.024763187,-0.12870125,-0.10157995,-0.022573212,-0.15053786,0.44515923,0.13805206,0.6073046,-0.05407806,-0.24471018,-0.19339943,-0.0018293688,0.09936958,0.4995527,-0.21808,-0.36325017,-0.30917436,0.099682204,0.45947388,0.17686756,0.12538323,-0.3988156,0.02830729,0.08451432,-0.23414294,0.42131826,0.47625142,-0.37119243,-0.34214836,0.27109915,0.59903055,0.04103134,-0.14504297,0.10645928,-0.04900426,-0.34439462,-0.127687,0.053500373,-0.42170244,0.32713684,-0.073198594,-0.006018315,0.6446174,-0.24434277,0.03852922,0.010044603,0.006062182,-0.13187091,-0.32170385,-0.31448594,0.2830481,-0.60246575,0.011523698,-0.17615642,0.7407188,0.0298644,-0.7400526,0.28871012,-0.48458603,0.0808833,-0.2282878,0.5905718,0.7029271,0.5790296,0.20691052,0.8276189,-0.5958942,0.089389905,-0.1464471,-0.22758915,0.21386531,-0.27880603,-0.15164076,-0.5352573,0.025750687,-0.11289751,-0.13226718,-0.12760869,0.4492479,-0.61047494,-0.032692082,0.19366752,0.7525711,-0.41293257,0.095918484,0.5592993,1.1624308,0.8852683,0.020155653,1.0638154,0.29589134,-0.17795017,0.33893722,-0.18689765,-0.7918325,0.2676414,0.54821545,0.1454743,0.28284648,-0.027232736,0.042063158,0.2937119,-0.39667234,0.0331512,-0.21762967,0.37078694,-0.014139013,-0.029090133,-0.6318773,-0.0882302,0.12933423,0.034928963,-0.08558738,0.2762145,-0.302177,0.34526494,0.15161373,1.6311041,-0.075279124,0.120005146,0.13515289,0.50287265,0.2536648,-0.094654515,0.031490557,0.37474364,0.376475,0.093071565,-0.6912777,0.18932894,-0.22975442,-0.60656625,-0.24176535,-0.39717293,0.10625402,-0.19057943,-0.394754,-0.31431314,0.0780226,-0.274814,0.36542824,-2.5025342,-0.13698164,-0.17503607,0.29664963,-0.33995518,-0.3280129,0.108333744,-0.3885754,0.2856745,0.40332645,0.43955508,-0.53491455,0.43698066,0.5211498,-0.48045564,0.031645842,-0.52030575,-0.19402596,-0.11983595,0.50026083,0.10687325,-0.18117058,-0.14553383,0.27721542,0.5411418,0.02653956,0.19262914,0.35884312,0.29290587,0.02679901,0.4959263,0.014900216,0.42524981,-0.26715058,-0.15598263,0.4795052,-0.18435076,0.17875662,-0.018929511,0.19037852,0.45456654,-0.41763765,-0.9194093,-0.65546024,-0.08263328,1.2739352,-0.42940703,-0.6671161,0.40608162,-0.2800075,-0.15021415,-0.15698382,0.21050152,-0.108272396,0.058232088,-0.8703822,0.09132037,-0.062499147,0.3395443,-0.049513023,-0.01761954,-0.3551933,0.68161243,-0.04106434,0.5172587,0.17469113,0.09755586,-0.31928143,-0.54208463,0.12281486,0.9405202,0.45661083,0.08057766,-0.06897448,-0.26913434,-0.08317541,-0.03596117,0.09538519,0.2437253,0.88270104,-0.034524184,0.1015242,0.25766987,-0.18981512,-0.023127168,-0.14267752,-0.39517313,0.04727759,0.15137449,0.51948774,0.4606625,-0.19670825,0.41938347,-0.11887344,0.3936376,0.046146896,-0.5776009,0.25230375,0.97220504,-0.1434714,-0.308513,0.7579953,0.62991947,-0.39340454,0.5548095,-0.74931496,-0.3126615,0.40744242,-0.18022953,-0.39127034,0.14085095,-0.2906975,0.25078645,-0.90162385,0.23556556,-0.2393091,-0.4633961,-0.4441836,-0.24635236,-3.214169,0.22062278,-0.19955884,-0.22409438,0.022875939,-0.07559364,0.46089426,-0.57870656,-0.5179337,0.093205385,0.11522401,0.47934884,0.038380615,0.05594664,-0.2114075,-0.109094076,-0.27824932,0.26827225,0.1879042,0.17190209,-0.04504723,-0.57745224,-0.15760405,-0.12326111,-0.4317127,0.0709692,-0.6369344,-0.57432216,-0.18598196,-0.6478422,-0.18275289,0.5658981,-0.06329959,-0.037523866,-0.18166222,-0.035004433,-0.0366858,0.25422886,0.044280816,0.10935148,0.13736673,-0.039653055,0.014110991,-0.35914087,0.24963264,0.029427385,0.34753013,0.22657335,-0.26123783,0.06942556,0.6657101,0.49562922,-0.010192684,0.76792175,0.6284853,-0.23623072,0.30302042,-0.12095298,-0.40355515,-0.68557864,-0.2466863,-0.1309832,-0.35563794,-0.39393324,0.039459825,-0.41645876,-0.72515386,0.7209064,-0.014865349,0.30410808,0.017679999,0.21753839,0.41611233,-0.14115033,-0.034383755,-0.25082585,-0.26743388,-0.45248237,-0.3604205,-0.79353875,-0.43627542,0.1269375,1.2184027,-0.13777499,0.016329246,0.06968241,-0.06407306,0.020883843,0.04414944,0.027732978,0.39881834,0.43617654,0.007321711,-0.6516774,0.5097988,0.096949145,0.057306536,-0.471523,0.16436994,0.5127238,-0.62471324,0.33742455,0.21763992,0.15101722,-0.046347566,-0.5848638,-0.1338644,0.0068591195,-0.3428848,0.6288505,0.17990127,-0.84114426,0.4835594,0.40003386,-0.4696943,-0.6378605,0.3184184,-0.13269837,-0.1570047,-0.24152268,0.28140858,-0.030141788,0.12590858,-0.15477546,0.19180869,-0.5065113,0.28113556,0.3056927,-0.0941351,0.3832364,-0.27217188,-0.109807804,-0.83450073,0.06130949,-0.5177175,-0.34540123,0.31610677,-0.043673236,-0.16593535,0.3044179,0.05001569,0.5818167,-0.19001436,0.09517195,-0.0044808793,-0.45139295,0.4639193,0.551144,0.47150224,-0.36971134,0.47897926,0.095158376,-0.21909621,-0.26489657,-0.07941586,0.47016767,0.08633657,0.20226865,-0.043896683,-0.11411048,0.47271726,0.9313165,0.19288075,0.39121374,0.0005117144,-0.100534484,0.21627215,0.07304063,0.029993173,-0.06279337,-0.5126246,0.023050938,0.038640756,0.21330471,0.50563204,0.25806108,0.26545545,-0.08803271,-0.19145967,0.03487717,0.15729341,-0.06852476,-1.1752167,0.13676636,0.15508027,0.6092439,0.6004362,0.16284037,0.08726055,0.6457228,-0.20398907,-0.07589793,0.35717955,0.020242682,-0.5620604,0.7205129,-0.6572956,0.43070486,-0.00941386,0.041846786,0.046877097,0.16016081,0.4915984,0.9207117,-0.06025846,-0.02791351,-0.039139103,-0.25573066,0.19819142,-0.384008,0.12687899,-0.28410882,-0.2788771,0.69310534,0.39806882,0.40009174,-0.060392287,-0.067285396,0.12660411,-0.11505818,0.25427446,-0.034925703,-0.034910306,-0.12201496,-0.5698153,-0.16302998,0.57089204,0.27263436,0.06486051,-0.06186978,-0.27247512,0.22462997,-0.2988203,-0.25674292,0.06889009,-0.7123634,-0.024268776,-0.18128864,-0.40804768,0.46537876,-0.091709256,-0.00091576576,0.027827855,-0.0858335,-0.3793705,-0.0020805767,0.12585457,0.73178643,0.0717488,-0.16643612,-0.28614658,-0.118635125,0.007931428,-0.2224152,0.039781775,-0.24600251,-0.025660643,-0.7274281,0.49796405,-0.15993643,-0.47801596,0.23879825,-0.21874261,0.014554603,0.37084123,-0.075848706,-0.19947015,-0.2294148,-0.04420412,-0.2787174,-0.46425796,-0.1590828,0.17336679,0.02095944,0.0027837413,-0.093058065,-0.12104328,-0.02876785,0.6528768,-0.023217235,0.29284927,0.2881208,0.04850216,-0.46922997,0.07801406,0.24595082,0.4351559,-0.20779857,0.15519007,-0.10588573,-0.45193294,-0.28885725,0.038101584,-0.22915986,0.45804468,0.015485878,-0.4600518,0.8990274,0.09771818,1.2638247,-0.11917382,-0.3374758,0.041012228,0.5119369,-0.034687944,0.04545138,-0.37698618,0.8434811,0.68175375,0.008175994,-0.29696327,-0.5922747,-0.24273674,0.23725832,-0.3184998,-0.06543378,-0.11368215,-0.7526347,-0.37564558,0.2786868,0.3764145,0.14596693,-0.02483766,0.15320528,0.114698164,0.0030622035,0.28964105,-0.4336806,-0.088979624,0.29779953,0.25024098,0.06890782,0.0227562,-0.5082938,0.31037423,-0.48901156,0.20582916,-0.33130544,0.0153542,-0.14526126,-0.22653447,0.11478865,-0.009807638,0.28125712,-0.22582886,-0.36657557,-0.20078361,0.6926349,0.15124755,0.10283758,0.6876206,-0.3579484,0.2316049,0.034176204,0.344835,1.0850906,-0.21872935,-0.08362981,0.07470165,-0.4031219,-0.7799187,0.43517545,-0.16465016,0.14892922,0.21673281,-0.37252718,-0.4327623,0.27390847,0.13223375,-0.02954203,0.02317286,-0.49663517,-0.18709655,0.33175293,-0.31496128,-0.16420701,-0.244761,0.1634287,0.62734383,-0.3716298,-0.24472602,0.20621313,0.3652512,-0.29122618,-0.5927849,-0.09632916,-0.38922408,0.2892088,-0.029919872,-0.4069069,0.05339351,0.107309416,-0.34139973,-0.0146005405,0.32861972,-0.32843325,0.10517313,-0.33589795,0.109901465,0.84634686,-0.1131345,-0.26802057,-0.7536851,-0.5180624,-1.0036561,-0.29106537,0.48746333,0.27386567,0.05956914,-0.59035885,0.05575775,-0.24214026,0.014015598,0.029248282,-0.48125196,0.47092873,0.12299421,0.59264964,-0.094622254,-0.69739014,0.30000407,0.18457016,0.12570728,-0.47742394,0.6518,-0.12072502,0.8594946,0.027435286,0.05629784,0.18520942,-0.54539186,0.09461425,-0.2825027,-0.33011743,-0.6793348,-0.021760583 -734,0.37550026,0.13050608,-0.57758987,-0.19074376,-0.3422997,-0.058935132,-0.31070575,0.14788334,0.2388876,-0.5302784,0.14000109,-0.14946128,0.07979722,0.14768584,-0.1572769,-0.709128,0.09350567,0.1972173,-0.3991876,0.61325586,-0.53582525,0.2815165,0.24056087,0.0964259,-0.3110822,0.2733162,0.28259805,-0.4491167,0.042669415,-0.2191105,-0.04186294,0.19628148,-0.7365516,0.3859612,-0.039603133,-0.15793978,0.23958024,-0.2950818,-0.32713333,-0.7069325,0.08171161,-0.7686529,0.51965725,0.16830198,-0.2784191,0.18738699,0.077133544,0.09163933,-0.19545837,0.25843272,0.283134,-0.2779657,-0.42726642,-0.30738664,-0.21923673,-0.5412345,-0.5878374,-0.16293809,-0.6877162,-0.03962096,-0.41891482,0.20613186,-0.37466004,-0.10347841,-0.14265725,0.3765731,-0.4983735,0.133005,0.081068076,-0.19729145,0.40714815,-0.4881684,0.10457044,-0.06697204,0.2211705,0.07324046,-0.30573112,0.2274275,0.30834022,0.51628476,0.06078533,-0.27475867,-0.32444948,-0.15423095,0.2320685,0.600526,-0.19409312,-0.1948007,-0.114228085,-0.059360165,0.20747907,0.35789227,-0.25056562,-0.4792936,-0.06747974,-0.09144335,-0.40367183,0.4541466,0.57116455,-0.38882834,-0.076716356,0.38491482,0.30995458,0.023212533,-0.0995245,0.16828553,-0.10550893,-0.5924838,-0.21552685,0.25479656,-0.018937664,0.44908497,-0.12295558,0.23025937,0.7400142,-0.1137022,-0.16956724,-0.07140674,-0.115951575,0.17701554,-0.09374665,-0.1336677,0.31464761,-0.7067751,-0.10574288,-0.38446403,0.83809346,-0.12298006,-0.9629582,0.3770449,-0.5490091,-0.0146725625,-0.1756715,0.8034822,0.66070193,0.7539925,0.10705968,0.78173786,-0.5595303,0.10229965,-0.020958718,-0.57084024,0.42733055,0.06730737,0.17582059,-0.39772436,-0.22982986,0.15007123,-0.0007744602,-0.014511211,0.67416847,-0.3545405,-0.1300563,0.012965219,0.75300074,-0.41174415,-0.18112163,0.55125815,0.9998559,0.66535395,0.2010795,1.2474476,0.2109669,-0.04787717,-0.08912829,-0.18529913,-0.8668213,0.23040536,0.3035876,0.2805939,0.04823052,0.06517693,-0.1565436,0.22041167,-0.23485228,-0.24055764,-0.24397482,0.38902646,-0.17106366,-0.21584927,-0.262942,-0.25120115,0.10475214,0.16911149,0.14413004,0.20709081,-0.048720572,0.3829125,0.15165843,1.4002264,-0.03377149,0.24809039,0.11254054,0.27239457,0.36043134,0.11370375,-0.093987085,0.46227175,0.3699674,0.12815489,-0.5120321,0.10525668,-0.05635907,-0.46457842,-0.09972894,-0.30788913,-0.0037157536,-0.14188167,-0.27684543,-0.1285543,0.07182603,-0.5473256,0.5624991,-2.5868344,-0.072338186,-0.043557126,0.43356118,-0.06560515,-0.1939708,-0.16645849,-0.51913327,0.6198823,0.39005885,0.5672037,-0.5826984,0.39764804,0.52736384,-0.39896083,-0.12933473,-0.7506856,0.044339053,-0.15361652,0.28214732,0.010190955,-0.2538328,0.035076447,-0.006609891,0.556222,-0.08378029,0.20117526,0.36264116,0.38427544,0.09026037,0.47374263,-0.08080799,0.4357326,-0.19018541,-0.14776981,0.20809829,-0.072293,0.23835015,-0.34944016,0.08699341,0.3459806,-0.43531317,-0.85825604,-0.4765595,-0.18836223,0.97267675,-0.4897878,-0.5422405,0.39344302,0.035501175,-0.21214029,0.027663205,0.55663073,-0.1255823,0.1378437,-0.70133644,0.09717094,0.026750786,0.31972095,0.05359838,0.05016301,-0.44965023,0.6102802,-0.07411142,0.6231581,0.49823475,0.09720073,-0.18318368,-0.46486282,0.2010694,0.97752094,0.17309238,0.16449758,-0.24764875,-0.17148617,-0.06270883,-0.14687519,-0.012797533,0.50253886,0.80688536,-0.10881354,0.17190816,0.38610056,-0.14822957,-0.028980078,-0.15630898,-0.46013847,-0.097175285,-0.104776226,0.46766907,0.65126103,-0.16453576,0.4316862,0.00856962,0.3896778,0.024601262,-0.52849615,0.5230273,0.82381105,-0.18368675,-0.16063257,0.584262,0.51293844,-0.09194446,0.51422554,-0.480284,-0.46268123,0.42494917,-0.12186122,-0.6368743,0.30572286,-0.4203309,0.1408196,-0.80316514,0.43308786,-0.3175921,-0.6315122,-0.45292172,-0.035043176,-3.8793585,0.17675476,-0.31849045,-0.04511931,-0.14654692,0.031129241,0.27288222,-0.36459154,-0.4289174,0.15127082,0.2844999,0.46930665,-0.21020176,0.05912543,-0.3595519,-0.13217202,-0.12819684,0.31434542,0.15403771,0.11235467,-0.15440682,-0.46131063,-0.049699843,-0.07720219,-0.3644938,0.01758546,-0.3866941,-0.45112425,-0.096990034,-0.5984779,-0.37869674,0.70785844,-0.4996945,-0.0895108,-0.16665839,0.057785954,-0.043898456,0.4008619,-0.046112087,0.19218019,-0.2058742,-0.071125045,-0.23782137,-0.29946533,0.38621736,-0.055975623,0.17058276,0.43457815,-0.09855539,-0.095218815,0.5673008,0.37791044,0.016764283,0.8696353,0.3248686,-0.13584569,0.24095085,-0.25855327,-0.23257561,-0.7949902,-0.27745634,-0.25193974,-0.5026487,-0.39991826,-0.009522378,-0.42343387,-0.7883729,0.6114926,0.06445449,-0.09257363,0.02713838,0.33781937,0.29457685,-0.049239747,-0.045655813,-0.23550291,-0.21374992,-0.52193594,-0.20396395,-0.7680574,-0.47680452,0.19029872,1.025182,-0.29538855,-0.17452356,0.05001995,-0.021474898,-0.054884885,0.19896431,0.18127373,0.34128046,0.36093563,0.14214446,-0.79836404,0.610396,-0.22395317,-0.14973293,-0.7236825,0.051886,0.60682195,-0.9527706,0.42286706,0.53618556,0.078112654,0.1263733,-0.699016,-0.43549588,0.09421045,-0.20106183,0.45115235,0.026216583,-1.0275723,0.6020228,0.29453036,-0.25197148,-0.79665893,0.41283098,-0.083688125,-0.32901415,0.23252858,0.40262666,0.0657393,0.028264197,-0.27545944,0.10537141,-0.46726042,0.4752639,0.095594026,-0.21420968,0.5673538,-0.09691407,-0.15967938,-0.8364026,-0.13791236,-0.53807575,-0.19551054,0.3135109,-0.098287806,0.042210132,0.061122265,0.03380031,0.49527946,-0.32645845,0.1457505,-0.1262308,-0.24278821,0.36793417,0.5022333,0.39432696,-0.38081318,0.6774745,-0.0894094,-0.13658196,-0.23559621,0.2717138,0.40372562,0.10149781,0.39050344,-0.028368099,-0.100911856,0.2512624,0.99161667,0.2230915,0.42686233,0.21340366,-0.07286104,0.48736525,0.053156164,0.14267096,-0.03097831,-0.50250584,-0.17185213,-0.21652988,0.13460572,0.4962077,0.2092401,0.5266767,-0.18314,-0.023200909,-0.031814665,0.40077838,0.29938737,-0.77611166,0.4344928,0.2596435,0.42562833,0.6562604,0.12890956,0.045979787,0.64455646,-0.15213561,0.15916643,0.16351695,-0.0044847387,-0.36211905,0.5063288,-0.703196,0.24024503,-0.22924863,0.004344446,0.24309042,0.0052459156,0.3864821,0.9781385,0.024459822,0.13728786,0.013347268,-0.105961956,0.16936408,-0.33451346,-0.046377447,-0.27721828,-0.34738728,0.7690085,0.33773503,0.4495794,-0.12694325,-0.13524365,0.25302544,-0.08398722,0.20383617,0.029658457,-0.043955386,-0.042964008,-0.5115796,-0.27218357,0.7054745,0.045334693,-0.012335107,0.15659395,0.025677357,0.39807558,-0.28989774,-0.14462002,-0.17000338,-0.5538364,-0.025754366,-0.31802553,-0.49347502,0.6461728,-0.24274376,0.25522605,0.105521634,0.065413795,-0.26951647,0.16148548,0.25431797,0.6045495,0.1050284,-0.30536863,-0.24218409,-0.2014672,0.2455304,-0.3590405,-0.16997544,-0.12604041,0.025416894,-0.6911489,0.21900995,-0.35938305,-0.27910253,0.13646185,-0.15858018,-0.14172576,0.44103688,-0.03488105,-0.2435907,0.27306086,-0.13540967,-0.25969076,-0.31307966,-0.27803543,0.04734207,0.039471388,-0.00671927,-0.03639404,-0.120201,-0.04291898,0.19314174,0.1165992,0.1226986,0.15548189,0.34249267,-0.27001756,-0.0712264,0.25990677,0.6073659,-0.040709145,0.09343258,-0.23959449,-0.3881561,-0.2682733,-0.12395095,-0.050825804,0.2576833,0.15305717,-0.3865436,0.8910573,-0.030785827,0.7903204,0.044493884,-0.31533185,0.17544952,0.460942,0.053678624,0.022604981,-0.26028386,1.0486639,0.7563478,-0.06651847,-0.27243045,-0.5095444,-0.06369687,0.21597722,-0.28262895,-0.22339939,-0.047089197,-0.6344925,-0.17475107,0.2305137,0.18983881,0.014446608,-0.09507402,-0.079198144,0.118394814,0.22024561,0.12687458,-0.5868793,0.08941119,0.30041185,0.21938515,0.2069101,0.19304557,-0.27078256,0.30870646,-0.378884,0.1644052,-0.4158101,-0.02983981,-0.078082,-0.109062396,0.13887306,-0.05070514,0.32090095,-0.015265865,-0.34411377,-0.14871241,0.47470012,0.28713784,0.3622932,0.8270651,-0.20837307,-0.047252655,-0.057420544,0.60836226,1.2209538,-0.3315229,-0.10239307,0.53768414,-0.43971372,-0.5322159,0.24081172,-0.40719095,-0.029645085,-0.050009795,-0.4656332,-0.23178568,0.042150114,0.04583433,-0.12293144,0.09742134,-0.6299658,0.006297418,0.12059207,-0.27378738,-0.28154796,-0.17349513,0.3276579,1.0463187,-0.42172307,-0.07378113,0.05528319,0.060808543,-0.22084093,-0.6113078,0.075939134,-0.24518014,0.17388308,0.34618065,-0.37185472,0.15432458,0.21664,-0.5150827,0.20598193,0.3393933,-0.31879082,0.06734461,-0.31386748,0.035005722,0.82378167,-0.27903458,-0.09260955,-0.37578765,-0.6131777,-0.82803017,-0.28617826,0.23489414,0.14743379,0.027699172,-0.4127654,-0.054860454,-0.06565019,-0.06799531,-0.1476641,-0.5011567,0.52572095,0.048816614,0.44422278,-0.14743663,-1.0293969,0.21012762,0.21845701,-0.26884976,-0.61344427,0.50767887,-0.35103053,0.83130324,0.10643281,0.09977052,0.29877493,-0.7195676,0.034565996,-0.45936337,-0.25155646,-0.7303423,0.009525542 -735,0.44933936,-0.1213932,-0.51631916,-0.15280971,-0.1518325,0.34448192,-0.2524888,0.4061635,0.12925729,-0.43443102,-0.035514787,-0.1370768,0.0135157155,0.23677276,-0.2843766,-0.48419985,-0.07198601,0.10122892,-0.4484722,0.32104298,-0.43888515,0.29843786,0.024273345,0.3800557,0.053315327,0.15313372,0.11863733,0.06539685,-0.107799895,-0.10820491,-0.082067445,0.24695495,-0.5813102,0.019932903,-0.2852723,-0.4015484,-0.1284949,-0.54322547,-0.3712996,-0.6258638,0.3823076,-0.94297594,0.64175737,-0.040052537,-0.2822234,0.3522201,0.08787795,0.13173844,0.035333373,0.049886253,0.0590385,-0.19549005,-0.061979063,-0.13692953,-0.52495193,-0.4082467,-0.7572488,0.10840244,-0.6276187,0.03634589,-0.15076171,0.14616439,-0.19321063,-0.0059205294,-0.015509372,0.31454468,-0.27055156,-0.11860904,0.1264562,-0.12331863,0.38788146,-0.5420242,-0.24443604,-0.0066419244,0.36206532,-0.32500905,-0.22521318,0.16017693,0.4327847,0.62195873,-0.21710227,-0.18539645,-0.3693375,0.13601011,-0.18479775,0.5339682,-0.23137267,-0.35379073,-0.2556923,-0.25587228,0.37569863,0.35526276,0.16057798,-0.193548,-0.010038225,-0.075988494,-0.28818214,0.40005922,0.5721905,-0.44754422,-0.2784796,0.4391481,0.54857105,0.1838596,-0.061657432,0.09261311,0.1035368,-0.70040756,-0.11658929,0.12850961,-0.1420815,0.5577855,-0.14689492,0.2781822,0.4291199,-0.13622588,0.0961,0.04009864,-0.05867217,-0.20137024,-0.15514095,-0.23103903,0.20161718,-0.4540459,0.031219423,-0.14798607,0.524562,0.17962208,-0.9225368,0.3752479,-0.56346995,0.107432514,0.15531056,0.46975115,0.7786902,0.5537581,0.13291048,0.59767544,-0.42756224,-0.06817228,0.03734819,-0.16008027,0.18553308,-0.13932648,0.008045946,-0.4796014,-0.1368049,0.09958636,-0.032617815,0.15477133,0.6209309,-0.5220466,-0.2360235,0.15747227,0.6831624,-0.21838805,-0.07873666,0.7463865,0.97130084,0.8660775,0.08168976,1.3275307,0.21365589,-0.11286272,0.11336943,-0.1139439,-0.82153296,0.27461752,0.35411447,-0.5969448,0.66558415,0.06764058,0.019464662,0.32644224,-0.21180257,-0.13259646,-0.062209137,-0.029625688,0.011066945,-0.06341072,-0.21886942,-0.3237724,0.10580016,-0.049241763,0.38426018,0.25356552,-0.2649451,0.477979,0.41478774,1.4959806,-0.13697447,0.19306047,0.07837416,0.31367403,0.2803241,-0.17885502,-0.22630908,0.26753965,0.35743588,0.12630375,-0.37643284,0.04040084,-0.115394905,-0.36863598,-0.18648076,-0.2614288,-0.29227158,-0.11798305,-0.39462245,-0.19292992,-0.08814668,-0.5118578,0.42881244,-2.8703005,-0.14926134,-0.20680024,0.47879732,-0.22391169,-0.4777334,-0.22632465,-0.4067623,0.49236524,0.44315487,0.20169616,-0.57901,0.25056416,0.49486607,-0.3657737,-0.1956954,-0.63547474,-0.076189734,-0.01634009,0.110753015,-0.010233751,-0.2185821,0.1699992,0.26682404,0.33781675,-0.00017361458,0.04914018,0.22816549,0.4884003,0.11052447,0.4765287,-0.25559717,0.48993662,-0.29597992,-0.24729599,0.49117565,-0.5205077,0.15875323,-0.103553966,0.21336724,0.46962595,-0.47431737,-0.70008117,-0.6068864,-0.22950217,1.264874,-0.14891909,-0.47532982,0.1594964,-0.2610578,-0.5206433,-0.19638015,0.6062881,-0.23755573,-0.04014028,-0.79680383,-0.2966485,-0.106532365,0.31988162,-0.13972794,0.13231577,-0.5603679,0.5034634,0.023185097,0.49732298,0.31650403,0.18055606,-0.44759163,-0.5318422,0.09021287,0.97235113,0.295557,0.19657761,-0.23374023,-0.08848484,-0.3034545,0.030855784,0.08858439,0.46834007,0.60977566,0.003574713,0.1652465,0.31010568,0.08782019,0.1686899,-0.15411459,-0.2771718,-0.19528128,-0.17227843,0.57154584,0.5648673,-0.072013505,0.17508571,-0.08490732,0.22751999,-0.29282433,-0.3471843,0.5507677,0.8991289,-0.18655406,-0.27869055,0.63006645,0.37889287,-0.47273874,0.43491876,-0.6728032,-0.34342235,0.41665882,-0.087606266,-0.4627566,0.3417738,-0.34254202,0.088499375,-0.7289381,0.19301063,-0.17469652,-0.23415834,-0.57798666,-0.12282663,-3.6414354,0.19521666,-0.054631624,-0.16912024,-0.18039936,-0.24753585,0.4582467,-0.49050206,-0.6613254,0.14376034,0.013324825,0.7076703,-0.18915507,0.092622384,-0.36032555,-0.41167024,-0.39212915,0.16828753,0.21623625,0.3333372,-0.003354256,-0.250371,-0.021468226,-0.28546014,-0.4370079,-0.023697555,-0.61532533,-0.42709064,-0.17701149,-0.50270027,-0.29415455,0.75872856,-0.41323566,-0.03971023,-0.29033765,-0.027010623,-0.16584004,0.34488958,-0.1088225,0.13061571,0.04998552,-0.17049193,0.024693178,-0.32827955,0.40486434,0.0008113338,0.098016396,0.4350415,-0.27203533,0.17858896,0.31806892,0.8037189,-0.02562411,1.0276685,0.2743659,0.050576467,0.38334516,-0.2942553,-0.21821691,-0.43570474,-0.059656337,0.06679426,-0.49157605,-0.35262102,-0.22705807,-0.32782957,-0.7212773,0.5322525,-0.10389756,0.24930438,0.059080288,0.4158862,0.45896658,-0.30291623,-0.003305238,0.015677286,-0.25549677,-0.24490239,-0.25164992,-0.6002029,-0.53923124,0.14772466,0.837524,0.022720357,0.10813015,0.26038244,-0.122706376,0.039354496,0.07294495,0.2264444,0.14086393,0.37398592,-0.04454014,-0.61507505,0.29230344,-0.20863436,-0.26427776,-0.6577835,0.005850205,0.70040596,-0.5867693,0.44843477,0.52973527,0.035726056,-0.22485317,-0.6415405,-0.14369589,-0.0023168141,-0.3016191,0.4463031,0.34296563,-0.8171504,0.48358077,0.39748493,-0.23647586,-0.67557424,0.5824541,-0.014133905,0.0120946355,-0.06322828,0.5415153,0.057249226,0.122527234,0.2704221,0.11631362,-0.47130257,0.25762564,0.26291186,0.07146774,0.50982714,-0.14119607,0.020542549,-0.5634473,0.04500136,-0.4699356,-0.32108387,0.3835928,-0.034541942,0.28494617,0.18307057,-0.016167382,0.46369252,-0.36298272,0.046443395,0.075578734,-0.15325525,0.21404745,0.4441802,0.6090879,-0.3172536,0.56905484,-0.12224201,0.07093934,0.120157115,0.11197579,0.48305112,0.14963438,0.35141584,-0.024849929,-0.28487045,0.2631898,0.77212816,0.1645615,0.27516386,0.15558568,-0.09100754,0.15872295,0.09150086,0.15194546,-0.12805496,-0.6024347,-0.11448525,-0.26947773,0.17416003,0.5093513,-0.07466399,0.22754025,-0.3047806,-0.21648645,0.011396467,0.23965192,-0.101443596,-1.3437394,0.15070488,0.17023574,0.7682674,0.30289346,0.09974255,0.038398508,0.46571207,-0.17576262,0.1939098,0.30995852,0.15911786,-0.46435884,0.5314112,-0.64829695,0.48696774,-0.003086943,-0.044157293,-0.008907495,-0.06986968,0.43133256,0.8734136,-0.0628353,0.1295849,0.14975837,-0.1639645,0.25258338,-0.3708482,0.12005176,-0.36320302,-0.084481426,0.6724522,0.42472264,0.388826,-0.3134041,-0.07458433,0.03159517,-0.15077618,0.08196619,0.0031936993,0.012454601,-0.30396894,-0.58646846,-0.1563796,0.45289296,0.3816168,0.18792304,0.20862137,-0.38585055,0.22708203,-0.23054144,0.048506048,-0.12128986,-0.806249,-0.14660636,-0.36324078,-0.585888,0.36178458,-0.09728737,0.07725178,0.33220723,0.082423285,-0.27322063,0.23181441,0.18022643,0.82470036,-0.018943707,-0.045053158,-0.36801016,0.17520775,0.21075934,-0.28682014,-0.16479439,-0.38372666,0.10964222,-0.31426007,0.23500459,-0.077089734,-0.3610676,0.062578194,0.060135666,0.115152635,0.6151592,-0.16913691,-0.12631357,-0.033523664,0.09670651,-0.31185755,-0.10567865,-0.22409445,0.22483529,0.16276829,-0.048445765,-0.058482632,-0.17170914,-0.23030998,0.23603803,0.16028646,0.4524179,0.6594423,0.26610062,-0.3077274,-0.043379527,0.051656045,0.65210545,0.014001828,-0.27982897,-0.44686276,-0.5640565,-0.22480297,0.574263,-0.118516296,0.1199447,0.11966204,-0.3416422,0.71239156,-0.10978149,0.8836819,0.009485816,-0.2800646,-0.08585686,0.45383865,0.031784695,-0.2103081,-0.5010536,0.963954,0.40302646,-0.19794035,-0.15485388,-0.119197525,-0.059146795,0.027216563,-0.32505104,-0.117654726,-0.1613829,-0.7338603,-0.14053243,0.09074129,0.1995302,0.24249734,-0.11396535,0.24865834,0.36984128,0.12915367,0.31300223,-0.36816818,-0.023092875,0.4113363,0.328502,-0.09149659,0.21780993,-0.30921596,0.2742088,-0.44011995,-0.16098095,-0.5542564,0.063568644,-0.07387139,-0.39400098,0.24023141,-0.026605729,0.41081494,-0.10420417,-0.33195975,-0.103806004,0.36350018,0.18882678,0.31619433,0.51044124,-0.11954016,0.041540705,0.008466787,0.5013338,1.1664555,-0.12372801,0.06832394,0.33056906,-0.34157988,-0.6568539,0.2208063,-0.55738664,0.4602909,0.03473278,-0.08580126,-0.12792243,0.2131922,0.14474298,0.16779962,0.026772967,-0.5917795,-0.36378655,0.2789748,-0.29413813,-0.14429912,-0.30704734,-0.008663159,0.615529,-0.24009076,-0.1552569,-0.06909824,0.55000645,-0.20106019,-0.6396774,0.06888123,-0.39323637,0.2507343,0.18373297,-0.39670566,0.05782377,-0.056577995,-0.47990844,0.32239833,0.14736484,-0.3648609,-0.09616889,-0.2722423,0.061684854,0.8439523,-0.22256662,0.009427234,-0.46031043,-0.67310303,-1.0789006,-0.272784,0.014234992,0.17822465,0.026590623,-0.53851795,0.061567064,-0.22580363,-0.101934835,0.026837055,-0.24090004,0.448206,0.15996327,0.69008553,-0.095300674,-0.76550007,0.01945877,0.028504696,-0.24696541,-0.6123233,0.65758073,-0.029838314,0.79209805,0.11774345,0.08754054,0.14997645,-0.5287683,0.12200984,-0.26859453,-0.1292313,-0.77820575,0.14440733 -736,0.34918535,-0.25905916,-0.22553015,-0.1241322,-0.029021958,0.1305069,-0.007671662,0.47864878,0.16959375,-0.39835778,-0.036878694,-0.2716249,-0.06547102,0.26619333,-0.10870656,-0.3732659,-0.093544774,-0.023055386,-0.27200592,0.4647779,-0.37728244,0.27983665,-0.03995471,0.27365834,0.10366591,0.4272,0.17381558,-0.23454939,-0.15216973,-0.036530435,-0.18337406,0.028710842,-0.3298289,0.10324836,-0.055189822,-0.19463135,0.083942555,-0.38803083,-0.40248102,-0.6237198,0.3649584,-0.69929326,0.35121924,0.07687224,-0.11619018,0.38988227,0.15601072,0.20909338,-0.2618394,-0.025912741,0.20292208,-0.06661714,0.09255467,-0.10732662,-0.14483163,-0.3473087,-0.4382165,0.058623545,-0.34464198,-0.3739974,-0.17122047,0.08081238,-0.30709508,-0.05912656,-0.09444852,0.35660633,-0.4318981,-0.08473091,0.20654045,-0.18923526,0.2832519,-0.6005973,-0.21975492,-0.06205826,0.093741655,-0.079877816,0.031901788,0.2903683,0.13616012,0.55528843,-0.048767544,-0.08933,-0.35128358,-0.06561109,0.07900991,0.6174442,-0.19923367,-0.41583902,-0.010727893,-0.0091331545,-0.04845206,0.057260934,0.12411644,-0.2567778,-0.11099278,0.13439804,-0.3600828,0.25257623,0.502923,-0.32730916,-0.33699045,0.40160617,0.49164486,0.027187813,-0.057690136,-0.014505418,-0.0059698313,-0.31257722,-0.13641433,0.08243248,-0.2024226,0.46943796,-0.047656476,0.3486728,0.63565063,-0.11626152,0.19550024,-0.11955893,-0.055736914,-0.13499467,-0.23919158,-0.014725964,0.03556144,-0.34717792,0.14958015,-0.12888704,0.7586463,0.20716476,-0.6871988,0.40951696,-0.42728043,0.20244838,-0.031364985,0.53526217,0.6035501,0.2527404,0.44593716,0.72337353,-0.5744555,0.060578074,-0.11724987,-0.28041336,0.033211127,-0.14377625,0.123433,-0.52742785,0.059429787,0.28619274,-0.06574095,0.031694904,0.08493171,-0.44689506,0.038420938,0.18150823,0.9145345,-0.2511015,-0.013086494,0.56719947,1.0090109,0.8050468,-0.013760265,0.97943693,0.25915584,-0.31088,0.42917383,-0.5696251,-0.66448057,0.20865795,0.394847,0.28932565,0.21765977,0.1588358,-0.15304136,0.35816422,-0.31852058,0.1756561,-0.1694532,0.124942236,0.24673837,-0.07321129,-0.2716875,-0.21873516,-0.047427047,-0.07697896,0.12109441,0.076123744,-0.23097517,0.26609546,-0.071631305,1.823526,-0.032912232,0.11010553,0.108825095,0.597058,-0.017615676,-0.10992236,0.061932847,0.32442302,0.27524787,0.026650174,-0.56163913,0.15087697,-0.20640889,-0.6498244,0.0023158053,-0.28787506,-0.100401506,0.11685885,-0.35097754,-0.15955935,-0.11141023,-0.41052696,0.38964385,-3.0776362,-0.051559664,-0.14681396,0.25389114,-0.3497931,-0.24235025,0.048193377,-0.41840145,0.34342733,0.49487457,0.3532938,-0.6936053,0.30434987,0.34455904,-0.3606715,-0.13502264,-0.45870337,0.036115628,-0.04807867,0.3720393,0.07302208,-0.0010829886,0.050924517,0.1021965,0.47001383,0.08218517,0.06675752,0.23596579,0.34217975,-0.014515189,0.3403396,0.08748882,0.28570583,-0.22255547,-0.043210194,0.26623046,-0.48679954,0.20045458,-0.039284103,0.13433671,0.29995015,-0.3463685,-0.6768641,-0.6192961,-0.35403225,1.209684,-0.11222375,-0.3880294,0.362473,-0.24015704,-0.124068655,-0.20934094,0.53350025,-0.01845214,-0.09378008,-0.68035597,0.080728054,-0.19104192,0.12176467,0.018217294,-0.005656928,-0.30483666,0.7924898,-0.07754677,0.48889586,0.29131165,0.12382409,-0.23280239,-0.34212115,0.043916572,0.7580868,0.31293526,0.2049941,-0.117862575,-0.17066444,-0.21285,-0.36035067,0.19221371,0.41333738,0.6965912,0.062453374,0.022378743,0.29221362,-0.08928955,-0.06633155,-0.10588424,-0.17408413,-0.052761916,-0.020849245,0.5578578,0.4439977,-0.25701243,0.3635083,-0.15831761,0.18315004,-0.25724176,-0.27559415,0.48463795,0.5875752,-0.14705025,-0.14939585,0.44876188,0.5374863,-0.23626514,0.33317837,-0.70269024,-0.27735192,0.5292445,-0.23447494,-0.47311267,0.19009332,-0.27584416,0.028688025,-0.8596485,0.25507966,-0.14515291,-0.3547931,-0.49032933,-0.17026153,-3.6517186,0.059476018,-0.25407147,-0.355502,0.033765092,-0.010874846,0.085947014,-0.5701305,-0.32381096,0.11765852,0.08244047,0.4198282,0.06511524,0.21389176,-0.2902559,-0.020579377,-0.40083373,0.09209351,-0.16138652,0.34956676,0.016470302,-0.34928444,-0.027227584,-0.12542689,-0.43633264,0.08073106,-0.45080593,-0.4567754,-0.23891553,-0.494839,-0.2901138,0.48081133,-0.31575468,0.05487918,-0.30715656,-0.12903902,-0.3106969,0.5065776,0.27835146,0.034711536,-0.035889722,-0.03437408,-0.009578451,-0.27727768,0.31474912,0.09945595,0.34521917,0.50326914,-0.15452169,0.12125133,0.3932558,0.5025936,-0.07260398,0.6264198,0.49554533,-0.12302092,0.37507787,-0.3682255,-0.054034676,-0.43765274,-0.41770178,0.02168837,-0.24879055,-0.5417028,-0.13172589,-0.36762625,-0.6208511,0.26128837,-0.016517822,0.27083302,0.05544615,0.11169203,0.50866866,-0.17480157,0.009065,-0.06137659,-0.036147308,-0.53797495,-0.32072407,-0.6142972,-0.494492,0.37656707,0.699639,-0.023127705,-0.15584327,0.07727446,-0.20750594,-0.09763273,-0.028220566,0.065810435,0.11861483,0.25418863,-0.159985,-0.7060681,0.5632892,-0.021430492,-0.14020434,-0.5202548,0.11673265,0.3880361,-0.46636885,0.47382832,0.18280019,0.14265035,0.022930412,-0.37730238,-0.20852135,-0.22915027,-0.24693726,0.24948241,0.070159145,-0.734388,0.349243,0.4195878,-0.21642962,-0.6533716,0.29885438,-0.076430164,-0.23883708,0.03675265,0.18934996,0.2208271,-0.06189562,-0.09313171,0.13823217,-0.5795525,0.29031822,0.2206843,0.014950673,0.6201607,-0.13698368,-0.054666005,-0.523713,0.046509687,-0.43133876,-0.18809167,0.10778861,0.24324687,0.16468897,0.15413103,-0.029869238,0.27651492,-0.23203358,0.049288753,0.13585995,-0.13286562,0.26263994,0.3712179,0.3971399,-0.46679133,0.5552487,-0.053005952,0.021152882,0.016172664,0.027120909,0.3822998,0.30809107,0.16341534,-0.025165845,-0.2846541,0.25479838,0.7444217,0.256861,0.4463161,0.149628,-0.2105367,0.43464246,0.12031043,0.059464026,0.17921953,-0.4351827,-0.028465481,-0.024406286,0.18670817,0.31545818,0.14641532,0.39659408,-0.11334955,-0.1750656,0.080066115,0.27055794,-0.21019493,-1.0039773,0.3408137,0.19078375,0.8443958,0.39188558,-0.10898658,0.087367386,0.75719506,-0.1806189,0.13189413,0.2626799,-0.03817146,-0.68744725,0.56214154,-0.5691334,0.42789137,-0.08249162,0.010747842,-0.0040780944,0.027882295,0.25274172,0.64641196,-0.15170044,-0.032354712,-0.074231006,-0.30992526,0.034462113,-0.3656858,0.19937988,-0.43157336,-0.19292071,0.4101492,0.4492094,0.30328825,-0.063941166,0.048944093,-0.03405114,0.010760697,0.096222445,-0.0713493,0.09152575,-0.053014774,-0.6996004,-0.39374268,0.54913026,-0.16256335,0.18178539,0.0028837363,-0.2976382,0.1509433,-0.20767546,-0.23788227,0.016671048,-0.5158084,0.14431757,-0.06984733,-0.51295125,0.39471185,-0.04421852,0.323877,0.12896603,-0.031119687,-0.32890242,0.21156982,0.24146602,0.6472938,-0.094292216,-0.15254396,-0.5619518,-0.024361206,0.23931172,-0.18664898,-0.15082596,-0.14844766,-0.17697152,-0.46925774,0.49781972,-0.013008428,-0.2415021,0.20475006,-0.34324723,0.07149525,0.5845782,-0.14085157,-0.17706467,-0.0394907,-0.17576678,-0.24459155,-0.14671612,-0.112806894,0.34548673,0.019929329,-0.031928357,-0.023768846,-0.1530485,-0.060976434,0.37175843,0.035826366,0.21906981,0.27068186,0.027854117,-0.3421604,-0.10957773,0.054986462,0.32331327,0.1528631,-0.031156382,-0.12829177,-0.47811407,-0.37451172,0.04862581,-0.14310855,0.31988317,0.13713522,-0.44895688,0.58730114,-0.004160869,1.104069,0.10535052,-0.23558156,0.06913895,0.39610085,0.03493266,0.16098176,-0.40826562,0.74818,0.6076444,0.032134578,-0.111571975,-0.20392844,-0.060989298,0.30853614,-0.15286002,-0.053101156,-0.033987515,-0.735162,-0.30934498,0.26548505,0.18752974,0.115293466,0.02576712,-0.0049145618,0.09377555,0.015777986,0.5194736,-0.33879864,-0.23138633,0.32738164,0.08408761,0.040901612,-0.001977853,-0.41048592,0.42479667,-0.58152705,0.024028294,-0.19446,0.07206576,-0.2102044,-0.15039444,0.1839568,-0.021697856,0.5141984,-0.20441963,-0.4306011,-0.18403496,0.45902634,0.04318799,0.20959447,0.41809922,-0.12336413,0.0031945885,0.05853315,0.50510544,1.0475157,-0.25968674,0.099914946,0.3280683,-0.30829257,-0.6519499,0.37095305,-0.07305385,0.15266676,-0.045345705,-0.17247842,-0.38709623,0.25993544,0.26410773,0.013809673,0.03132235,-0.5310397,-0.4329758,0.18368691,-0.38243008,-0.24215785,-0.3218076,0.14195725,0.70969504,-0.3754296,-0.1582616,0.15233189,0.30008832,-0.23205057,-0.5207138,-0.023924852,-0.23008223,0.37117666,0.13912408,-0.28987184,-0.24649283,0.05959637,-0.24845701,0.1642169,0.0720313,-0.48325503,0.049739305,-0.29210493,-0.026551057,0.81238914,-0.020432035,0.13573691,-0.72777903,-0.38344756,-0.8767997,-0.5431651,0.44955906,0.09782311,-0.12493273,-0.33612877,-0.042740162,0.06597749,0.05080672,-0.14551285,-0.45853743,0.4697127,0.16682409,0.3198585,-0.07189352,-0.5393313,-0.014484787,0.19319959,0.007437865,-0.54939705,0.48049697,0.034008447,0.87146676,0.01885294,0.07699192,0.31536216,-0.42361882,0.007621312,-0.25769886,-0.3540627,-0.6059086,0.18219967 -737,0.4485857,-0.10412366,-0.4908848,-0.11705957,-0.26259238,0.06249067,-0.29377455,0.28444514,0.09637828,-0.62204,-0.049555182,-0.108923085,0.0074155754,0.3801313,-0.32351473,-0.47713572,0.040209763,0.011374936,-0.42779994,0.31602785,-0.42760465,0.16379154,0.032767646,0.38039583,-0.008697263,0.2808845,0.22148278,-0.16190083,-0.16711958,-0.20942722,-0.07902447,0.21966831,-0.6754469,0.10457819,-0.22707011,-0.25341645,0.028708601,-0.56579894,-0.5202719,-0.56078833,0.20015314,-0.90725625,0.5335686,0.18249376,-0.16552459,0.18459645,0.20351206,0.1546861,-0.03316852,0.0507099,0.2632685,-0.27133134,-0.08022179,-0.12874703,-0.2064745,-0.54473096,-0.75543565,0.023036793,-0.5753907,-0.009731387,-0.25097612,0.24694708,-0.3415676,-0.09861935,-0.10710745,0.425615,-0.39433065,-0.1026475,0.15812434,-0.14526863,0.469451,-0.6007511,-0.30435115,0.03251428,0.33537468,-0.27831635,-0.22190745,0.28313065,0.3421152,0.42355567,0.023872469,-0.23123252,-0.49848154,0.06922418,0.31551966,0.5147727,-0.2939961,-0.35061994,-0.21216498,-0.067552574,0.12263073,0.2758382,-0.029045327,-0.46076196,-0.05199083,0.048036482,-0.14136145,0.40162554,0.6228856,-0.26529548,-0.15684342,0.32779858,0.36496708,0.10982234,-0.14779976,0.11867804,0.07130082,-0.6246067,-0.072755024,0.13980094,-0.10159594,0.6370826,-0.16965826,0.34437534,0.65893644,-0.007363181,0.019307137,0.14636365,-0.11248807,-0.09826305,-0.25518522,-0.093921915,0.15709126,-0.514408,0.15615232,-0.16611843,0.66978157,0.14663757,-0.9979124,0.35104033,-0.60662216,0.104190946,-0.02767743,0.43674946,0.6860109,0.39549989,0.12662327,0.78073895,-0.5046638,0.11385262,0.09607947,-0.47082472,0.33142194,-0.14771344,0.008755922,-0.6012869,-0.25864142,0.09555077,0.07704457,-0.013663961,0.47837347,-0.3408413,0.00021218402,0.32903457,0.79823107,-0.17993273,-0.074914895,0.6840113,1.1601951,0.93729055,0.17622541,1.1939678,0.06109878,-0.0702304,0.23943138,-0.17014585,-0.7723771,0.26619977,0.34170517,0.063950434,0.20031218,0.100471295,0.011480169,0.4295712,-0.43093687,0.06624185,-0.15663064,0.12297196,0.1776428,-0.25631166,-0.37525874,-0.16344616,-0.014617905,-0.10441758,0.0094223535,0.19939494,-0.033513162,0.41858175,0.13952745,1.4692413,-0.19415852,0.24353945,0.15024708,0.47984606,0.1983867,-0.2033526,-0.02905855,0.0137890065,0.39489052,0.24178205,-0.31660047,0.09809307,-0.19009344,-0.5646517,-0.1933153,-0.33442858,-0.04263711,-0.14142302,-0.52411366,-0.08800112,0.008322588,-0.46607462,0.61161995,-2.975678,-0.030416803,-0.16880515,0.36457032,-0.17884247,-0.36112806,-0.10807509,-0.46811667,0.71725065,0.3403851,0.39230588,-0.57689285,0.36429214,0.6463997,-0.4204898,-0.08694478,-0.7081103,-0.07743109,-0.12026291,0.30945653,0.16135752,-0.26538357,0.13290246,0.11992348,0.47581273,-0.054750327,0.095850825,0.0850056,0.24054323,-0.033505503,0.48494622,-0.16682439,0.45188785,-0.22531398,-0.2598905,0.3644173,-0.38325697,0.16510959,-0.059972543,0.21573736,0.4602027,-0.37232536,-0.9515792,-0.65160286,-0.32453227,0.95054024,-0.20221451,-0.4951814,0.3591482,-0.2046205,-0.3530342,0.057510965,0.46077046,-0.1416826,0.33815473,-0.9124133,0.02263311,-0.19533266,0.18049511,-0.052591335,0.014342909,-0.5833155,0.68567,-0.057294656,0.4798992,0.5359988,0.29340482,-0.34214887,-0.4886703,0.05283323,0.8943948,0.275291,0.12226289,-0.19987977,-0.21798538,-0.06442635,-0.28960624,0.15266152,0.64863294,0.5958662,-0.10851632,0.16752194,0.25302172,0.07453884,0.07210467,-0.053041067,-0.28828153,-0.0804783,-0.040329628,0.5958606,0.8845364,-0.19575956,0.27814388,-0.15776825,0.27314314,-0.20372343,-0.31134564,0.57656115,0.9051164,-0.08494756,-0.27589425,0.6111011,0.3604123,-0.1971337,0.36980864,-0.55093247,-0.33859926,0.32083684,-0.13407384,-0.5452862,0.15541564,-0.4270597,0.029925605,-0.83938664,0.4410295,-0.3908682,-0.52844715,-0.5763776,-0.2875001,-3.9749198,0.13731517,-0.35792038,-0.22867057,-0.07475817,-0.13843295,0.39175197,-0.6911297,-0.46594995,0.117872015,-0.0067742085,0.7045447,-0.17012961,0.05440631,-0.3142457,-0.1121846,-0.42335302,0.2928225,0.20512876,0.26337507,-0.050832085,-0.27442726,-0.051222,-0.23094833,-0.49932733,0.088527866,-0.5961593,-0.42601973,-0.2138106,-0.39624828,-0.4553991,0.74858344,-0.47156373,-0.062308736,-0.31398964,-0.0050389594,-0.35599682,0.5054493,0.20161702,0.3198184,0.022550037,-0.009197444,-0.1347919,-0.28185812,0.39877644,-0.04011496,0.34933028,0.5909746,-0.25553897,0.10239558,0.49918538,0.65294826,-0.17978661,0.8279263,0.50451756,-0.039668713,0.24821134,-0.37337092,-0.24152721,-0.58774173,-0.3228363,0.038003683,-0.38625067,-0.49531788,-0.085249305,-0.3882873,-0.70954525,0.52812296,0.010203185,0.124810636,-0.10276787,0.01868105,0.2985716,-0.30653027,-0.24665414,-0.0163097,-0.04295184,-0.49898437,-0.31904188,-0.58926266,-0.6626457,-0.10651498,0.8968547,-0.025412934,-0.07516789,0.17251098,-0.20073499,-0.031296007,0.18888858,-0.005117046,0.14581212,0.3593978,0.06411741,-0.7800496,0.5607491,-0.28894186,-0.12096574,-0.75084835,0.15261258,0.583356,-0.5376714,0.7745079,0.5170145,0.22354756,-0.20463498,-0.75838524,-0.3578144,-0.12562647,-0.11605833,0.4985536,0.19078694,-0.99457943,0.3744543,0.37123647,-0.3702009,-0.5915767,0.60022485,0.10763967,-0.074432954,0.15165246,0.362573,0.04601052,-0.14497073,0.08286909,0.30533358,-0.3881721,0.4583929,0.34783903,0.080383524,0.53685606,-0.17396124,-0.10774946,-0.5001543,-0.034267895,-0.4441876,-0.1608522,0.14242421,-0.006983522,0.035797596,0.1381696,-0.10761736,0.35974434,-0.37142807,0.17161027,-0.03438675,-0.26009992,0.12843125,0.4317968,0.48868012,-0.48364025,0.5814147,0.06839099,-0.1184208,-0.08940232,0.1798806,0.4497028,0.20162079,0.29755497,-0.15535793,-0.10032229,0.059251547,0.87435573,0.16120932,0.49067622,0.19491012,-0.042106632,0.3070352,0.020457225,0.2521563,-0.024115056,-0.684856,0.04458431,-0.31045863,0.3181205,0.42149085,0.0089424765,0.31292623,-0.17566156,-0.09859189,0.037212696,0.2839317,-0.01322573,-1.5653133,0.4280467,0.3009493,0.7567873,0.40087417,0.049570676,-0.0006943281,0.7995473,-0.15215454,0.068445146,0.21017289,0.05330428,-0.40567043,0.5223462,-0.8274213,0.29496813,0.015022963,-0.087835975,-0.119549595,0.0023771909,0.29993656,0.7000141,-0.15819807,0.15959395,0.00329963,-0.28048828,0.24196365,-0.32930943,0.34612116,-0.28932747,-0.17102364,0.7856305,0.5579991,0.36313218,-0.12933896,-0.051909056,0.06695484,-0.06949984,0.10245017,-0.051692642,0.104004934,-0.057155613,-0.65906173,-0.21267965,0.45067123,-0.051195946,0.2021123,0.13878725,-0.23366623,0.19868745,-0.1622894,-0.061023492,-0.03130621,-0.6708494,0.023700412,-0.29258016,-0.44657472,0.43726677,-0.40558204,0.25627214,0.20856963,0.13827653,-0.20199488,0.36875978,0.09329934,0.7952407,-0.023985641,-0.12776054,-0.36069992,-0.15105672,0.14602628,-0.15940341,-0.1992345,-0.3805942,0.11507652,-0.25757593,0.37900093,-0.06511869,-0.18561558,0.23678091,-0.034415223,0.10413718,0.6381702,-0.17748846,-0.3471894,0.1813239,0.110328026,-0.28205636,-0.092675805,-0.1629841,0.31280345,0.1996756,-0.019961566,0.06445006,-0.123437405,-0.23572645,0.1787473,0.11779891,0.4940725,0.42918605,0.15139692,-0.3909015,-0.18286328,0.32412347,0.567694,0.075040355,-0.10632469,-0.20828412,-0.5214619,-0.36306232,0.06037434,-0.111253776,0.2410811,0.14047696,-0.19368108,0.5689021,-0.088102266,1.1016523,0.17701028,-0.29649204,0.018601788,0.38928455,-0.014855231,0.065486565,-0.4232929,0.94360393,0.65937227,-0.03697745,-0.11771921,-0.37391686,0.021261709,0.10539011,-0.19550155,-0.1257114,0.0021486708,-0.7444235,-0.014979516,0.11396032,0.15724802,0.14063461,-0.11195798,-0.14603244,0.2922205,0.14880987,0.33136413,-0.5415145,-0.027297795,0.3412951,0.40630284,-0.040338125,0.28279185,-0.42412773,0.35379335,-0.35598725,-0.00412703,-0.3559908,0.17110793,-0.09618778,-0.28566176,0.22447379,-0.17032085,0.5045386,-0.02038564,-0.17117348,-0.05576152,0.5841194,0.23865454,0.22129774,0.7207573,-0.16476572,0.17879297,-0.0710117,0.45640522,1.1151644,-0.5372375,0.0963709,0.36233765,-0.21437536,-0.5855014,0.177332,-0.53307384,0.27105847,-0.02001431,-0.34333462,-0.36506173,0.12308792,0.026576787,0.12519482,0.1480538,-0.533601,-0.2594483,0.29281607,-0.296975,-0.24583976,-0.3825442,0.117797874,0.6483296,-0.18716809,-0.11751456,0.065961994,0.2973096,-0.10172569,-0.47000113,0.17556894,-0.1800158,0.094738595,0.14093831,-0.40894455,-0.12000551,0.07287506,-0.36777952,0.33617252,0.09442102,-0.2610299,0.14472297,-0.13187607,-0.13690129,0.9658476,-0.29438457,0.25457412,-0.74014044,-0.58764744,-0.93158233,-0.30903676,0.19057949,0.0835615,0.037479363,-0.59172904,-0.0973418,0.06139963,-0.048811283,-0.095058,-0.5249921,0.41988334,0.06585949,0.5035687,-0.08723919,-0.5985915,0.039816923,0.08066999,-0.04592679,-0.5187513,0.5755114,-0.12461964,0.84893507,0.094657,0.1862442,0.112139635,-0.5002841,0.13339634,-0.16575325,-0.19399107,-0.8849588,0.0076810205 -738,0.46386537,-0.106356785,-0.5068397,0.004803761,-0.012009351,0.26231292,-0.14977193,0.4226318,0.26940158,-0.40211043,-0.17986536,-0.15749332,-0.097576566,0.2632046,-0.20184933,-0.61830765,-0.029373322,0.22619556,-0.46711302,0.64280516,-0.36033633,0.43365887,0.024476724,0.3544443,0.10494542,0.14047101,0.10730232,0.015888503,-0.19819264,-0.14573966,-0.04197043,0.14586942,-0.69261074,0.19292797,-0.15363748,-0.5456658,-0.1284713,-0.42821404,-0.052332554,-0.8181485,0.3985796,-0.7999736,0.6320475,0.028102694,-0.354647,0.3410296,-0.07885405,0.17571004,-0.14121838,0.06139816,0.11102073,-0.06924037,-0.03127063,-0.05160117,-0.12563565,-0.36733624,-0.6329647,0.1132638,-0.42316356,-0.023460235,-0.2213349,0.16003679,-0.27097958,-0.020849599,-0.09917857,0.30015114,-0.4032038,-0.087930076,0.17967914,-0.10497677,0.30945525,-0.6033289,-0.13723746,-0.13574104,0.18609323,-0.28933048,-0.18834242,0.13327606,0.4652954,0.62913996,-0.09902387,-0.20734902,-0.28188452,0.13748436,0.10919028,0.448839,-0.19244684,-0.4607236,-0.19818923,-0.0478136,0.4633956,0.015823457,0.3084507,-0.25523046,-0.17989348,-0.026889013,-0.26751742,0.1984441,0.5194546,-0.42700145,-0.24333039,0.4414084,0.4736143,0.08915918,0.04186735,0.09130474,-0.07348948,-0.34932116,-0.0542835,0.1092898,-0.34491047,0.54646164,-0.118137084,0.14473857,0.44778726,-0.0757988,-0.0033489722,0.031215107,0.020079762,-0.15992062,-0.12500343,-0.2549536,0.25423938,-0.37768087,0.1806288,-0.30490667,0.6849413,0.17230494,-0.746599,0.30048484,-0.41690132,0.13106647,0.061033685,0.48728243,0.8078591,0.42607716,0.2252957,0.7534737,-0.5473269,-0.04453378,-0.059368532,-0.19082944,0.07086573,-0.14319532,-0.15886843,-0.45031652,0.093445994,-0.0950345,-0.2677576,0.13586058,0.47839555,-0.5657428,0.024640629,0.097604975,0.68099254,-0.32063934,-0.03151237,0.85688907,1.1186901,0.9715846,0.117488466,1.1737864,0.35573465,-0.27240402,-0.018974777,-0.3580164,-0.7220069,0.31403524,0.41524294,-0.27269837,0.47928947,0.06895668,0.09530755,0.22561242,-0.43081242,-0.06564977,-0.18718109,0.07457566,-0.031442743,-0.13584946,-0.3090112,-0.17006601,0.07056388,0.14904049,0.036583155,0.16984753,-0.2696688,0.28421625,0.2614199,1.5263594,-0.21991786,-0.02611601,-0.052473713,0.24980924,0.29881525,-0.1741098,-0.09987287,0.25490382,0.31204742,-0.10116156,-0.54003596,0.117093444,-0.14974558,-0.5887731,-0.18920751,-0.009159684,0.014910186,0.21954012,-0.18993957,-0.22768784,-0.028041827,-0.39794996,0.45549917,-2.2924635,-0.15842351,0.028531095,0.3221256,-0.18235326,-0.5460944,-0.0137087405,-0.47645086,0.44246477,0.3772328,0.22936904,-0.68740994,0.1453775,0.33480248,-0.37919664,-0.2307326,-0.54342395,-0.085632145,-0.0063927835,0.25793964,0.04833891,-0.23183669,-0.008213797,0.28603625,0.53746945,0.10627424,0.06701657,0.41091076,0.38474226,0.10647615,0.20326434,0.0782078,0.5253776,-0.101356804,-0.15965769,0.49455753,-0.43532714,0.22562727,-0.053369917,0.18712576,0.25798383,-0.47475505,-0.79086477,-0.85001695,-0.293725,1.4339119,-0.12533185,-0.52825916,0.13918415,-0.019617805,-0.29848343,0.0070629716,0.48451275,-0.20585553,-0.22580983,-0.92377174,-0.15430613,-0.038121413,0.2938225,0.033707432,0.07311487,-0.53198296,0.72453386,-0.15588148,0.49145263,0.3683486,0.29875582,-0.085588045,-0.61517054,0.069491066,1.3218155,0.5660377,0.09521597,-0.34201303,-0.19417025,-0.4904805,-0.01755582,0.091902904,0.35018015,0.7954582,-0.023973716,0.033141263,0.2614376,0.08724441,0.118670695,-0.18705533,-0.36106452,-0.13292547,-0.030915337,0.59369546,0.462756,-0.22967325,0.426686,-0.10397092,0.2208742,-0.19608054,-0.5040141,0.59368104,1.2349756,-0.24558945,-0.34277865,0.638656,0.17312633,-0.24672829,0.50308466,-0.6947064,-0.32276395,0.3738999,-0.14781462,-0.33769718,0.22181019,-0.38142744,0.17571913,-1.0022444,0.34226307,-0.18919255,-0.2762528,-0.54691356,-0.04338056,-2.8583217,0.2236575,-0.08340029,-0.13646877,-0.27199093,-0.14727421,0.35510442,-0.6308536,-0.82558393,0.030797688,0.033083025,0.6386956,-0.026610037,0.12924302,-0.09021365,-0.41543463,-0.3234749,0.25952014,0.18697986,0.36356544,0.075303994,-0.37310925,-0.109509654,-0.25505903,-0.40340897,-0.04565144,-0.49860382,-0.50328463,-0.15900049,-0.43026084,-0.1845884,0.47233397,-0.56542176,0.096928336,-0.19867302,-0.14599773,-0.08475626,0.2946908,0.16800065,0.056916177,0.18493806,-0.15624611,0.07919354,-0.22392191,0.27546957,0.0948758,0.087409906,0.39171442,-0.26484737,0.27223274,0.36217088,0.78232145,-0.1603279,0.8191772,0.5420348,-0.08928137,0.23016839,-0.3892035,-0.18894036,-0.6709015,-0.31558397,-0.07762021,-0.43887377,-0.5180557,-0.075674914,-0.34354705,-1.0157918,0.39985853,-0.1833632,0.1621863,0.15293951,0.43925986,0.50489986,-0.103083454,0.054701965,-0.2592708,-0.11805908,-0.41147834,-0.36949518,-0.63935214,-0.37757057,0.11009222,1.0092394,-0.06824187,0.11542966,0.13917191,-0.046049,0.11706043,-0.12762721,0.14112528,-0.018127237,0.41816214,0.069547735,-0.71595186,0.25795597,0.13875401,-0.15597953,-0.54155284,0.31972668,0.5078375,-0.7097649,0.416137,0.314854,0.07747115,0.11731832,-0.561936,-0.042588763,0.025708845,-0.34021857,0.40450177,0.2753145,-0.546906,0.46410194,0.43451405,-0.1784824,-0.7488808,0.34120777,0.05520922,-0.17243147,-0.12967202,0.44460586,0.010560751,0.016710665,-0.19625044,0.16150424,-0.42026496,0.26557523,0.24299788,-0.056642942,0.19263615,-0.26163265,-0.20875344,-0.78395736,0.227362,-0.5948333,-0.34609318,0.14083654,0.18745498,0.040582836,0.17087947,0.22678582,0.54260814,-0.44665998,0.2593563,0.00096194446,-0.10772773,0.3466329,0.53296506,0.4380196,-0.26755327,0.4342404,-0.12516055,-0.12673594,-0.19647376,-0.061206877,0.47819278,0.19954035,0.14256068,0.2702754,-0.09450538,0.31559905,0.5070458,0.29916397,0.40016112,-0.025151813,-0.33064842,0.17940895,0.18659775,0.29901907,-0.17738439,-0.39623803,-0.11481037,-0.099036776,-0.0034489024,0.6119734,0.2103678,0.19988298,-0.2020928,-0.27567968,0.0044613183,0.13794759,-0.12570252,-1.0840265,0.3765273,0.05514214,0.82229805,0.6198161,-0.11056311,0.27249286,0.33363804,-0.3311371,0.22443525,0.3846578,0.012592102,-0.5158258,0.39280766,-0.7206461,0.15745206,-0.1416248,0.11319681,0.06191844,-0.1330715,0.37341446,0.9058984,-0.12720086,0.11969481,-0.19708054,-0.15999095,0.027811578,-0.37011772,0.0413802,-0.50236934,-0.34470877,0.7833358,0.3409727,0.3677984,-0.37811428,0.035924494,0.016250813,-0.19509575,0.15915896,0.021208037,0.13166429,-0.10687322,-0.49391147,-0.22421305,0.54948723,0.10678331,-0.05810079,-0.06940977,-0.42626977,0.10516679,-0.21379113,-0.03974455,0.01887695,-0.81293565,-0.082653925,-0.39910603,-0.2490076,0.40318647,0.0063305837,0.1351452,0.15069734,0.11440515,-0.25870135,0.1258901,0.25998408,0.53807276,0.18038666,-0.061648153,-0.3856282,0.3460235,0.18490086,-0.27008483,-0.013271808,-0.13133495,0.03428496,-0.4754797,0.5006684,0.03115591,-0.3348685,0.13650008,-0.0716271,-0.07721745,0.5294022,-0.3372074,-0.19120352,0.16824733,-0.062993705,-0.20023128,-0.2253436,-0.26743284,0.17490289,0.15220036,-0.107520595,-0.13680574,0.035406284,-0.23788026,0.33978757,0.07311209,0.32412794,0.5144094,0.005113457,-0.6214202,-0.11695985,0.14894737,0.35026938,0.07767941,-0.15111814,-0.30893305,-0.52051735,-0.28681827,0.01845353,-0.19110915,0.21455908,0.08343331,-0.32976696,0.6515075,0.32300034,1.2249572,-0.114552654,-0.38571215,-0.07000663,0.54671115,-0.11670911,-0.14857742,-0.5464025,0.9142617,0.5482883,-0.14856325,0.029736618,-0.1335342,-0.094888724,0.22916456,-0.24784349,-0.03622837,-0.01746436,-0.8263764,-0.43892995,0.19314173,0.35545492,-0.13504468,-0.025752084,0.13840231,0.19267325,0.07317751,0.25116062,-0.37309602,-0.09623893,0.3143609,0.1653501,0.09445498,0.011567695,-0.4250658,0.27046898,-0.5315632,-0.16769281,-0.3221833,-0.0019907781,-0.02538831,-0.42236295,0.25633168,0.16942333,0.24002378,-0.32029048,-0.46927038,-0.21679465,0.47195265,0.016109483,0.14583567,0.4475983,-0.29277232,0.1414923,0.10148614,0.48914173,1.2133502,-0.10684562,0.11915929,0.3004122,-0.33841014,-0.61069554,0.30928007,-0.2509393,0.21276286,-0.076455526,-0.3159884,-0.69703895,0.3352206,0.16819127,0.06658479,0.17312409,-0.62810296,-0.22304884,0.3091506,-0.3738188,-0.13773748,-0.24749553,0.09734986,0.6906039,-0.4216372,-0.48479208,0.1407883,0.2993372,-0.3415175,-0.6602643,-0.14446919,-0.38841996,0.42543277,0.23077656,-0.29299736,-0.071597636,0.18936542,-0.40613583,0.04132373,0.18608081,-0.45746368,-0.079178795,-0.45715252,0.16990522,0.7791843,-0.14025733,0.040427346,-0.4591277,-0.43663874,-0.95492446,-0.3758594,0.541451,0.15216853,0.053051166,-0.7528781,0.0066859364,-0.31661293,0.0068692053,0.044150166,-0.31546593,0.3973331,0.2729465,0.5140395,-0.14677846,-0.64918965,0.15000394,0.16294205,-0.04059487,-0.5848259,0.46133608,0.14253734,0.890513,0.033493847,0.0094536375,0.26250497,-0.7869105,0.0506437,-0.17847715,-0.027196517,-0.6563454,0.17536046 -739,0.30094963,-0.26222074,-0.67121017,-0.22815846,-0.37706617,0.03356555,-0.33428904,0.35495436,0.06553112,-0.19558647,-0.34543756,-0.013276665,0.08773908,0.20471907,-0.21087824,-0.56726307,-0.18973678,0.1746712,-0.66281533,0.39990705,-0.6696069,0.22381398,-0.020379672,0.37126988,0.17490402,0.3832445,0.22945626,-0.08336316,0.119793765,-0.0626438,0.038958304,0.3633867,-0.5441964,0.018129697,-0.1632089,-0.5410219,-0.003556944,-0.51033235,-0.1846305,-0.80184275,0.25377887,-1.1563743,0.4914149,-0.07479478,-0.24784888,0.05307353,0.28854674,0.27410316,-0.31051746,0.09305088,0.33494428,-0.03266286,-0.23108599,-0.16709386,-0.010277712,-0.32757264,-0.5161497,-0.007768053,-0.52782065,-0.28893253,-0.28982404,0.2395258,-0.3715824,0.05155135,-0.22933014,0.14786871,-0.530784,-0.14224914,0.19632575,-0.10811308,0.3095048,-0.6628942,0.008844774,-0.1169701,0.49640143,-0.1386903,-0.2702532,0.2299214,0.40181985,0.3381096,0.13092202,-0.24413037,-0.20671035,-0.06524694,0.11605585,0.45669466,-0.24280919,-0.3304647,-0.2283806,-0.017533816,0.54210544,0.45813942,-0.032393955,-0.25523916,-0.035993896,-0.076696426,-0.21848756,0.5144534,0.5443194,-0.27664876,-0.32203102,0.40310404,0.48627567,0.3140101,-0.30130398,0.104141675,-0.048633274,-0.5788653,-0.12475676,0.046121,-0.02091775,0.55342454,-0.21684954,0.25886893,0.8777789,-0.08441499,0.19924746,0.032458305,-0.07595377,-0.29808414,-0.24893387,-0.18401195,0.15578064,-0.5919392,0.18610862,-0.1808466,0.5379127,0.06567263,-0.8154266,0.51243055,-0.5762711,0.08354013,-0.20355552,0.6004623,0.6554395,0.3603296,0.3338328,0.78684866,-0.23591012,0.11715747,-0.14737006,-0.45186013,0.08280725,-0.11630139,0.019133367,-0.5591507,0.13419388,-0.12042645,0.2065758,-0.06810656,0.55727255,-0.51103616,-0.072646074,0.23028043,0.41816857,-0.46310169,0.0053650737,0.7263936,1.0357602,0.991979,0.16534828,1.2292037,0.24249932,-0.06565248,0.15581325,-0.19124563,-0.7250914,0.11681255,0.4011863,-0.20310314,0.32353115,-0.02802467,-0.024417518,0.41327065,-0.32509705,-0.024418388,-0.19065541,0.30682883,0.16990614,-0.092948325,-0.39155334,-0.16695823,0.11607682,0.084053084,0.1539424,0.22884831,-0.18712555,0.09364339,0.06664442,1.2752503,-0.1460632,0.06794368,0.15493491,0.60177433,0.32271412,-0.16781534,0.05183991,0.3675637,0.4585294,-0.08416783,-0.70767,0.24613902,-0.17863056,-0.4711804,-0.057248946,-0.3822788,-0.25993288,0.092513785,-0.5372127,-0.17873038,-0.03271853,-0.337908,0.47860637,-2.6715074,-0.2690001,-0.1347097,0.35030115,-0.19133155,-0.30989167,-0.17479095,-0.5878539,0.40931982,0.30431396,0.37961584,-0.60716635,0.59373367,0.5719382,-0.64336216,-0.14126766,-0.8100818,-0.047230165,-0.04796923,0.35715148,0.068963416,-0.17873207,-0.10730649,0.20933107,0.6737357,-0.017212097,0.16432141,0.43483543,0.42095187,0.20710792,0.6503671,0.032695897,0.5517641,-0.23651713,-0.20488605,0.36372072,-0.26834723,0.345957,-0.2723362,0.06633879,0.48182693,-0.53662133,-1.0550691,-0.6327868,-0.4438348,1.1858264,-0.2882586,-0.44416997,0.18468116,-0.22655402,-0.097588226,0.038372852,0.59597063,-0.16217476,0.013435919,-0.7914809,0.04401448,-0.18164809,0.09817325,0.1076456,0.0541203,-0.44351065,0.64381284,-0.009637292,0.7103045,0.20065475,0.1064848,-0.14381617,-0.3495383,0.08114966,0.6721283,0.3670239,-0.06112459,-0.16521941,-0.20253843,-0.1586658,-0.109685495,0.06166423,0.49966466,0.7360598,0.0014304771,0.2104889,0.23881868,-0.0063750446,0.08890955,-0.31236318,-0.15155122,-0.09726724,0.09650283,0.4437424,0.67598855,-0.1006207,0.32783434,-0.26860362,0.24271114,-0.0959967,-0.5949372,0.62634075,0.51138246,-0.094390765,-0.037326165,0.49058825,0.6544951,-0.32010645,0.5424954,-0.67467946,-0.18969157,0.67525494,-0.15156493,-0.4499586,0.103300944,-0.31040332,0.12863488,-0.67432874,0.3205956,-0.4152528,-0.33529583,-0.31556848,-0.19544496,-3.1648114,0.27587444,-0.15580353,-0.11475761,-0.34247133,-0.25752208,0.542873,-0.6335406,-0.71628386,0.13905522,0.12863128,0.62701476,-0.079178296,0.10398579,-0.32859707,-0.14956376,-0.07446658,0.24177739,0.08547911,0.2867064,-0.12414701,-0.36283273,-0.084864154,-0.0773183,-0.5348371,0.09542114,-0.5206226,-0.4239518,0.024620024,-0.44564915,-0.119230695,0.47786653,-0.33177856,0.03902779,-0.20918854,0.07608645,-0.2572109,0.30017975,0.0642207,0.16752397,0.15331222,-0.029584328,0.088577546,-0.23696652,0.54142773,-0.078095146,0.22407283,0.019580098,-0.08617938,0.12835443,0.46272293,0.66412663,-0.2712734,1.2965463,0.36871448,-0.07602861,0.2378101,-0.26201078,-0.2682673,-0.6567142,-0.2779826,-0.16816638,-0.48408478,-0.5139641,0.07665749,-0.2722533,-0.8648358,0.76699287,0.021232843,0.24562131,-0.015486887,0.24966685,0.37050793,-0.16575827,0.10969984,-0.16977333,-0.113508,-0.5605578,-0.27979535,-0.713215,-0.44960243,-0.13952221,0.9025117,-0.29631165,0.023253312,-0.12365723,-0.2404616,-0.058980126,0.0779066,0.041776456,0.36729538,0.43266127,-0.006212913,-0.70457894,0.3002501,0.036949936,-0.16847602,-0.41628516,0.0070198956,0.7200105,-0.69282585,0.5294763,0.46010238,0.051868882,0.05460717,-0.74168885,-0.25369903,-0.0686528,-0.26645935,0.6027644,0.30281448,-0.9308492,0.6249619,0.4227284,-0.34295863,-0.83165646,0.60545564,-0.055005986,-0.11608613,-0.19594209,0.21843235,0.07933792,-0.06965113,-0.23102914,0.24753079,-0.3499312,0.3452164,0.14729425,-0.10164636,0.44322395,-0.17950381,-0.23148154,-0.79019505,0.027405115,-0.5342535,-0.24544086,0.2456322,-0.14469692,-0.14594488,0.27605942,0.076187685,0.41157183,-0.40569815,0.10386087,-0.007824288,-0.30438974,0.050529625,0.47701105,0.3912382,-0.32327688,0.5460875,0.08769998,-0.15781333,-0.008615416,0.007266141,0.36936614,0.0016693748,0.4143781,-0.20559162,-0.20928845,0.3870742,0.8519959,0.188958,0.5036841,-0.07420687,-0.12712501,0.31805867,0.03066745,0.26054975,-0.029597832,-0.44336334,0.02067075,-0.09405967,0.20356049,0.5064194,0.18325934,0.29356375,-0.073847756,-0.13332216,0.0015274241,0.27413386,0.0019419744,-1.0488135,0.5066343,0.32405132,0.78575337,0.60732627,0.039812163,-0.047290437,0.5832541,-0.3942249,0.14863874,0.54361016,0.0777563,-0.54172987,0.5974921,-0.55342716,0.28587836,-0.21255453,-0.039820984,0.1544264,0.17083277,0.26233575,0.8160535,-0.100649476,0.1545736,0.02684048,-0.1340731,0.108542964,-0.2902395,-0.17658183,-0.33988577,-0.2935122,0.84666437,0.49312624,0.44846958,-0.14209302,-0.088122286,0.004167098,-0.24210742,0.11757425,-0.0008822359,0.050170634,0.05752148,-0.47538307,-0.16717781,0.53874075,0.37078905,0.1148036,-0.2980568,-0.522201,0.2413778,-0.30891842,0.08440844,-0.04314186,-0.67152625,-0.039305013,-0.3001743,-0.50888026,0.43167737,-0.07802833,0.07228691,0.26054174,-0.063505605,-0.0018641949,0.10339904,0.02367994,0.71559787,-0.016281256,-0.10419553,-0.2761586,0.024831388,0.30511886,-0.28646758,-0.06515071,-0.38686758,0.13550319,-0.5770975,0.62291324,-0.104544625,-0.38766354,0.24551743,-0.19983785,-0.16867265,0.5908501,-0.083826974,-0.17223555,0.07384082,-0.15529846,-0.40518263,-0.049596198,-0.37647322,0.08033809,0.16498111,0.05695299,-0.21188134,-0.16402355,-0.11037542,0.6073403,0.13111484,0.46098855,0.32486355,0.028065791,-0.35000247,0.052783497,0.14150514,0.5943156,-0.029736198,0.0035006541,-0.32432097,-0.42261785,-0.12991042,0.27938712,-0.0081658345,0.17284076,0.058825575,-0.15631191,0.84805816,0.11826011,1.0830327,0.048022285,-0.36805943,0.088261716,0.549633,-0.084708095,-0.07239871,-0.39099157,0.82672024,0.512085,-0.14342448,-0.04403868,-0.36547136,-0.23429057,0.34552768,-0.3295236,-0.014669051,-0.07497525,-0.71148807,-0.44793823,0.22855714,0.21487276,0.046194825,-0.042485774,0.0690934,-0.02159172,0.1878627,0.40393013,-0.6841662,-0.34620827,0.15669645,0.26133215,-0.20775042,0.14793459,-0.47163773,0.4580382,-0.62118185,0.04950241,-0.58682525,0.13106802,-0.22843385,-0.36392447,0.032192286,0.03127049,0.36606342,-0.11864647,-0.45453766,0.020884844,0.26899672,-0.040022884,0.3200838,0.4897838,-0.27554145,0.13164315,-0.00026830344,0.64006627,1.1267953,-0.25112584,-0.021812009,0.4690881,-0.44319832,-0.60371804,0.20536079,-0.4770057,-0.1155536,-0.013547132,-0.38289532,-0.28750736,0.24453983,0.24608418,0.072234675,0.028994871,-0.6587715,-0.18277623,0.36846274,-0.19452792,-0.18925801,-0.22837189,0.36114758,0.8601595,-0.4726322,-0.3065793,-0.0147989895,0.35591096,-0.23841998,-0.548582,0.09460208,-0.2241661,0.50975734,0.13597257,-0.35380203,0.026550008,0.088489786,-0.45760366,0.07012628,0.33298463,-0.26518834,0.08154419,-0.45397267,0.1639644,0.9635316,-0.22812122,-0.08597231,-0.4861748,-0.47771516,-0.9043651,-0.30939755,0.09415216,0.19904248,0.11614697,-0.46773052,0.21448098,-0.17428207,-0.23531479,0.05642896,-0.34422314,0.5018415,0.13279022,0.64199245,-0.30216473,-0.80083615,0.12673004,0.19296111,-0.12239114,-0.5107024,0.8029282,-0.14956507,0.90703094,0.12497949,-0.1839834,-0.19697335,-0.41904914,0.20718424,-0.4194973,0.03067149,-0.9212483,0.09336236 -740,0.56504184,-0.26428002,-0.33035088,-0.17986129,0.09818319,-0.16084628,-0.3438336,0.383062,0.026598861,-0.47307372,-0.37311184,-0.21348034,0.05902947,0.36659554,-0.14781825,-0.8263526,-0.05362912,0.11251136,-0.34322166,0.8264467,-0.35919094,0.2122746,0.0156822,0.4060632,0.2362638,0.19875474,0.42811725,0.036199734,-0.43914554,-0.31726933,0.043551743,-0.36569175,-0.9286998,0.06434122,-0.270176,-0.46369347,-0.056173414,-0.40254298,-0.32532743,-0.9267311,0.46008325,-0.9717479,0.4329706,0.079405926,-0.27793762,0.5336828,0.002757122,0.35238537,-0.19033486,0.1405916,0.019327164,-0.10674933,0.07438059,-0.30664322,-0.03259043,-0.31728122,-0.6982978,0.06208529,-0.39419702,-0.15442495,-0.4226927,0.08009264,-0.39793697,-0.029557435,-0.30101886,0.37957212,-0.54323614,-0.43538523,0.19090278,-0.11374658,0.42322755,-0.7785745,-0.292018,-0.22212307,0.022891536,0.02214151,0.14453939,0.34096003,0.163924,0.45272747,0.098555945,-0.24793518,-0.31054184,0.095359646,0.14148864,0.38398695,-0.1591636,-0.47430804,-0.07078263,-0.13116597,0.40658584,0.22805047,0.178883,0.015877953,0.0029901613,0.039241564,-0.1841466,0.36568108,0.55076045,-0.38551295,-0.34100923,0.18669803,0.56224346,0.11695119,-0.032511696,-0.18703322,-0.095666885,-0.3714681,-0.18257587,0.45094696,-0.58814055,0.7875677,-0.08165566,0.010104214,0.60033065,-0.44063547,0.2203841,-0.09223312,0.056803137,0.0077575245,-0.23089974,-0.38149354,0.5269302,-0.45487592,0.044557467,-0.6713517,0.8412599,0.16057627,-0.7355432,0.2817829,-0.5702171,0.21133971,0.00094397366,0.6815875,0.560647,0.41340056,0.43736053,0.66797143,-0.44184992,0.059548646,-0.074331164,-0.27532387,0.12783875,-0.1677326,0.09511488,-0.2937849,-0.11795161,-0.098537914,-0.23700915,-0.12677318,0.5693186,-0.50591654,0.10159576,0.15919805,0.7255458,-0.23967123,0.0700554,0.7279517,1.354463,1.1961075,0.026573138,1.1588436,0.44298387,-0.2599297,0.12553683,-0.3876592,-0.56101334,0.25511009,0.5227282,0.1611226,0.48625818,0.0566055,-0.19416092,0.34435606,-0.5471676,0.13496782,-0.23699357,0.044721663,-7.417798e-05,0.003238852,-0.38458169,-0.4115477,-0.11350588,0.15791596,-0.03619622,0.36701074,-0.2925505,0.16405766,-0.0023363333,1.3224467,-0.055656105,0.03305657,0.13441895,0.60713047,0.25152704,-0.19269563,0.1531143,0.30658245,0.32128724,0.083238386,-0.66716963,0.09653256,-0.4748703,-0.46459588,-0.21493524,-0.2625894,0.26768902,0.19188808,-0.42168203,-0.1488969,0.033598777,-0.38385758,0.2958391,-2.1420965,-0.11046209,-0.059011634,0.38721666,-0.39082107,-0.38358355,0.0045645884,-0.5720503,0.5557677,0.4379519,0.4888353,-0.6459242,0.23508723,0.51440257,-0.43738997,0.059720974,-0.64955205,-0.16140719,-0.2645702,0.51142436,0.06322292,-0.18723446,0.10558405,0.18287188,0.7899143,0.27439496,0.0767727,0.2029993,0.32784513,-0.14011295,0.38754895,0.23245317,0.31626293,-0.19252236,-0.16924286,0.35755852,-0.45378232,0.3844154,-0.1636752,0.12651418,0.3566339,-0.520022,-0.97331095,-0.8006792,-0.54342216,1.24163,-0.07363575,-0.8302081,0.16134505,0.4535456,-0.17428648,-0.058520067,0.47380635,-0.21867244,-0.0024738212,-0.6811171,-0.06933702,-0.08937988,0.25864294,0.24176764,0.16844732,-0.6764629,0.96384686,-0.12921387,0.15480204,0.23617476,0.37340513,-0.23757581,-0.60586697,0.110683024,1.2114908,0.48078704,0.08696913,-0.3612133,-0.31761068,-0.31069276,-0.1341078,0.1604713,0.4498522,0.9517124,-0.028574288,-0.031716373,0.28514722,-0.062217385,0.03092291,-0.08479437,-0.5556763,-0.2246599,-0.032034222,0.75540656,0.6439996,-0.009921859,0.3474227,-0.19761552,0.31922337,-0.19264789,-0.24208474,0.64094543,1.2366084,0.075389616,-0.030250588,0.6628055,0.54060966,-0.3624512,0.6923816,-0.8596589,-0.3934631,0.5215099,-0.22129957,-0.37591025,0.24748272,-0.3087544,0.004445096,-0.7293605,0.439618,-0.5431461,-0.10299494,-0.8005727,-0.108941436,-3.4126647,0.19606912,-0.2812507,-0.29422453,-0.14652714,-0.15709133,0.2649171,-0.79924923,-0.57443565,0.18145858,0.15441728,0.66826075,-0.037267517,0.21503718,-0.32133707,-0.34151673,-0.607757,0.19361623,0.3115678,0.2907112,-0.11638814,-0.21588002,0.28413662,-0.27736565,-0.37616763,-0.18669839,-0.42846715,-0.53772885,-0.5426485,-0.677428,-0.37628317,0.626443,-0.31051666,0.039706334,-0.20566641,-0.022745693,-0.10441499,0.49400592,0.27695438,0.21569659,0.15673392,-0.17576475,0.060313474,-0.4123137,0.22361173,0.26545212,0.20950979,0.6239434,-0.29565015,-0.029226651,0.43301487,0.4714336,-0.06228007,0.7803505,0.50563765,-0.13382648,0.18159239,-0.31748962,-0.28627622,-0.70923525,-0.37571797,-0.1575586,-0.25035027,-0.58196455,-0.119125225,-0.4232796,-0.8351443,0.45042852,-0.33390525,0.35962403,-0.010479701,0.45822254,0.42026138,-0.1856672,0.015589903,-0.105175644,-0.038527038,-0.48197377,-0.20523536,-0.7407808,-0.4405631,0.15197964,0.70517033,-0.041898977,-0.22159295,0.13103186,-0.13402648,0.16400032,-0.16002405,-0.23121409,-0.16087632,0.45783997,0.22655845,-0.66829205,0.39392146,0.33736858,-0.22485574,-0.57000226,0.3599185,0.6232765,-0.58863515,0.470842,0.4452504,0.12234994,-0.04572307,-0.6202163,-0.095838256,0.0855653,-0.08497783,0.26188335,0.32474864,-0.6864643,0.41755715,0.15719956,-0.24704552,-0.8378346,0.549173,0.02476926,-0.43900228,-0.10486793,0.355656,-0.1619228,0.11557921,-0.3854101,0.34946087,-0.6188963,0.11032017,0.4008913,-0.022427635,0.28049144,0.019905902,-0.17916864,-0.81496066,0.37317792,-0.5905035,-0.376806,0.37413788,0.21316051,-0.14535433,0.36299053,0.37898898,0.48089924,-0.22411136,0.213328,0.006523823,-0.21256156,0.58633536,0.46290585,0.45819834,-0.5380481,0.5287282,0.031700004,-0.31445524,-0.02969049,-0.15759511,0.3464055,0.060287118,0.20478071,0.16466142,-0.14939268,0.21435429,0.3409526,0.22129504,0.65876323,0.3090411,-0.007519815,0.44584584,0.052241772,0.34226513,-0.005633225,-0.522986,-0.0008491675,0.12685578,-0.10321781,0.42593512,0.007005289,0.3608947,-0.16134834,-0.24239586,0.12746552,0.36423588,-0.367522,-1.0339206,0.17934541,-0.02576862,0.8029652,0.93457884,-0.088846505,0.04506499,0.68971604,-0.27335957,-0.052971806,0.3772788,0.3619561,-0.6472454,0.70477957,-0.64466053,0.32092705,-0.08359919,0.00041747093,-0.22023441,-0.0035705466,0.38026595,0.7662339,-0.33572626,-0.057000175,-0.3829045,-0.0703784,0.16194208,-0.3592259,0.5189352,-0.39004615,-0.4094515,0.7315828,0.26972398,0.40953216,-0.026718894,-0.104763575,-0.010792524,-0.22829445,0.4347589,-0.0047748634,-0.0076975427,0.20561196,-0.67819715,-0.26607993,0.42945084,-0.28159383,0.10543198,0.025690848,-0.18268526,-0.01727879,-0.16382399,-0.22549069,-0.01341629,-0.9055242,0.060041886,-0.35998404,-0.2003829,0.401973,-0.24965046,0.29746985,0.13689287,0.007785145,-0.37098244,-0.11696967,0.4507127,0.6344531,-0.042951774,-0.2544999,-0.4852829,0.2920697,0.19732577,-0.3324119,0.20872398,0.0015649647,0.06293199,-0.71664613,0.65129876,-0.26215807,-0.253674,-0.1268486,-0.10600742,-0.28651896,0.8183832,-0.27441227,-0.16547604,0.041240077,-0.23454052,-0.23282565,-0.18533067,-0.039029032,0.09204415,-0.007098069,-0.1987368,-0.15555006,0.05239128,0.011186059,0.6258337,0.1164462,0.22911374,0.39110544,-0.009369795,-0.50694966,-0.14689963,-0.058909774,0.4439467,0.17443077,-0.10447845,-0.52127326,-0.5913936,-0.35064164,0.1795767,-0.016006196,0.20210437,0.07066723,-0.2435873,0.8510001,0.2065686,1.3412309,0.10401791,-0.39804545,-8.930763e-05,0.70803213,-0.17832167,-0.16873227,-0.50365907,1.1297301,0.5701405,-0.18518169,-0.12677571,-0.24794616,-0.07791919,0.17485283,-0.24950643,0.023771381,-0.034646336,-0.7493718,-0.28960487,0.19708174,0.49349153,-0.048921734,-0.1295266,0.13744795,0.35816178,0.20995569,0.54466337,-0.2581304,-0.3325186,0.49559283,0.037676882,0.024353495,0.19806974,-0.1826319,0.31940868,-0.71988577,0.18003927,-0.5057496,0.086438745,0.12419043,-0.5160077,0.34428975,0.084813856,0.4738834,-0.4150394,-0.43965206,-0.20219272,0.606765,0.1770962,0.30317342,0.51590586,-0.2848709,0.05411033,-0.0882681,0.7291882,1.5078692,-0.13846181,0.08398994,0.11762782,-0.36138716,-0.761116,0.5673453,-0.31755853,0.07356299,-0.2669526,-0.4626557,-0.60745937,0.2749655,0.13460824,-0.23625262,0.18428516,-0.6825159,-0.47196338,0.1001387,-0.28336892,-0.21360414,-0.33066207,0.2634165,0.8105922,-0.32825693,-0.4228027,-0.026037624,0.18836217,-0.23817484,-0.5169126,-0.15930773,-0.42418993,0.37449726,0.056616705,-0.32411483,0.060425565,0.2327938,-0.4755601,0.0512993,0.014675613,-0.41790447,-0.0727798,-0.23772933,0.16294658,0.76821685,-0.079105414,-0.09158959,-0.47570232,-0.50604177,-0.9427845,-0.44739744,0.57947445,0.0181901,0.036535166,-0.55757517,0.14877276,-0.38494006,0.27456886,-0.11947634,-0.66467285,0.3267212,0.20667733,0.60457724,-0.10881519,-0.54100627,0.16737337,0.21433872,-0.051129717,-0.5620811,0.36668417,-0.11499705,0.84924334,-0.020329192,-0.0034056653,0.18106775,-0.7063839,0.06534322,-0.23898083,-0.31023604,-0.6123926,0.19635399 -741,0.5696865,-0.2069855,-0.55112034,-0.21149144,-0.42337063,-0.0766197,-0.11709587,0.42077082,0.36073413,-0.20158297,-0.3076707,0.063227914,0.08119873,0.37435108,-0.039471373,-0.8875367,-0.026566116,0.25420317,-0.66976106,0.54190606,-0.44487906,0.5175234,0.03739901,0.18870145,0.03931683,0.2911579,0.17475322,-0.093918435,0.08689998,0.029996442,-0.14111637,0.28773987,-0.7661893,0.33253935,-0.20723218,-0.4217052,-0.030813249,-0.35311365,-0.11960673,-0.6116453,-0.14722334,-0.7684024,0.6757855,-0.05885722,-0.28875127,-0.30698398,0.101723716,0.26679733,-0.3519734,0.22564353,0.27042574,-0.1549642,-0.22855559,-0.25679594,0.041621998,-0.73656046,-0.40762642,-0.16416304,-0.69199884,-0.1672534,-0.07384474,0.13414827,-0.34204024,-0.024352971,-0.061534368,0.16674429,-0.42193344,0.0048640827,0.41030917,-0.16118607,0.13845456,-0.4166158,0.02539107,-0.14429735,0.48136535,-0.06878508,-0.40896142,0.33739567,0.3998397,0.4773657,0.35378858,-0.38494205,-0.13702407,-0.12595896,0.06108158,0.42865035,-0.22290626,-0.3410786,-0.2855968,0.1283687,0.48965344,0.33587787,0.09630777,-0.14140782,-0.13650289,-0.08994064,0.11280731,0.2545616,0.45895293,-0.24519898,-0.3378414,0.3025813,0.574478,0.33195448,-0.097841136,0.20811036,0.03764604,-0.5270094,-0.21140875,-0.112792894,-0.0946381,0.5480535,-0.08990962,0.046632767,0.9473474,-0.16547777,-0.06158736,0.17275293,-0.066024594,-0.21556714,-0.2228805,-0.12526648,0.28596938,-0.73038864,0.018251158,-0.33324736,0.59536594,0.26073998,-0.70082504,0.37570164,-0.62288064,0.1267733,-0.07238803,0.6864556,0.82618654,0.62319064,0.23358239,0.71671385,-0.23886193,0.2370994,0.020376233,-0.38888747,0.24838671,-0.24381964,-0.14490724,-0.5771654,0.14704631,-0.05444583,-0.10410835,0.11320967,0.5171516,-0.6318459,-0.230325,0.27515206,0.6055785,-0.3365822,-0.19899948,0.7587575,0.9955378,0.9382815,0.05930466,1.3968283,0.38598138,-0.2548799,0.12949872,-0.12460453,-0.6670964,0.068662375,0.3202117,-0.52072495,0.65176404,0.00316464,-0.08025449,0.3241696,-0.37186685,-0.027990596,0.14941359,0.42063951,-0.2277747,-0.31440324,-0.5496945,-0.11951769,-0.14539686,0.0086598145,0.0020457138,0.48479408,-0.18557183,0.3737066,0.11750353,1.3189352,-0.07295471,-0.057089206,-0.034481056,0.29652295,0.3292796,-0.2531877,-0.116567865,0.44953978,0.36935857,-0.051607825,-0.5662798,0.17614831,-0.35098097,-0.46945497,-0.2185657,-0.3131698,-0.13826455,-0.025859952,-0.28647953,-0.20402035,-0.11150625,-0.23749977,0.5003147,-2.3552108,-0.27622825,-0.058724973,0.44639567,-0.29232603,-0.18744287,-0.16669147,-0.5455167,0.0630837,0.1892223,0.45951027,-0.7761845,0.52159774,0.54669875,-0.6387304,-0.2077918,-0.77340627,0.12582439,-0.052804615,0.46430352,-0.057171524,-0.18254958,-0.02435344,0.15416387,0.5687399,-0.002515559,0.1960226,0.4410175,0.42685083,0.12603125,0.41497824,-0.060773734,0.71325266,-0.26488388,-0.15987752,0.30751193,-0.19871685,0.4171661,-0.058327682,0.041435283,0.49513948,-0.5493091,-0.9891001,-0.63759434,-0.23932296,0.93037677,-0.41031855,-0.25926536,0.1827214,-0.19468322,-0.12595548,0.0651463,0.4540406,-0.06007294,0.23750831,-0.6705056,-0.08377552,0.015648732,0.07395603,-0.025243584,0.023690151,-0.32796907,0.79791063,-0.1359256,0.6373122,0.2895908,0.2784716,-0.08080302,-0.43783486,0.07260113,0.7849979,0.46004808,0.059988625,-0.1433816,-0.22720931,-0.28235295,-0.04586238,0.03793512,0.6741593,0.8607558,-0.15151985,0.0071141412,0.30192173,0.102622345,0.1838151,-0.14886051,-0.1189013,-0.06699031,0.21004327,0.3239085,0.93481433,-0.34674644,0.45269495,-0.1843393,0.40328577,-0.005990817,-0.6803304,0.61418366,0.7714287,-0.19880359,-0.019476043,0.5699427,0.35223535,-0.24895668,0.5343177,-0.67895544,-0.20240852,0.66746765,-0.13276969,-0.40041643,0.32702425,-0.26297525,0.30585247,-1.0424526,0.47210822,-0.33890778,-0.60067135,-0.47816765,-0.056400232,-3.005035,0.33106655,-0.20543535,0.035596773,-0.2526008,-0.07069396,0.43221045,-0.99273044,-0.74858326,0.16580415,0.18800828,0.6393782,-0.15098101,0.14262359,-0.23630427,-0.59952956,-0.11766322,0.24733016,0.013193598,0.25823057,-0.21906275,-0.4733634,-0.15751587,0.0611002,-0.44837093,0.153024,-0.5994845,-0.48281166,-0.08544976,-0.64989114,-0.102628,0.60873157,-0.4142515,-0.025007706,-0.13935901,0.041399583,-0.33944905,0.0770328,0.010801543,0.09591883,0.14756086,0.006713434,0.047903106,-0.25700516,0.38747132,-0.016461818,0.5423377,0.097104035,-0.31512716,0.12422998,0.63827175,0.5812508,-0.239417,0.9967797,0.3435264,-0.14392778,0.29802144,-0.18703185,-0.34981456,-0.743959,-0.4731299,-0.22723722,-0.56093514,-0.54763836,0.11853207,-0.34048393,-1.0088083,0.6202707,-0.034574773,0.4056622,-0.12748513,0.2745969,0.55932796,-0.2294726,-0.012308089,-0.18763274,-0.2379121,-0.5367943,-0.26625365,-0.6345238,-0.6509501,0.26109326,1.2493789,-0.41449302,0.18196991,-0.028626623,-0.0996027,0.11080097,0.039368566,0.07335938,0.13533613,0.45542637,-0.06965435,-0.58302057,0.34650186,-0.18301457,-0.15846553,-0.42133707,0.13709368,0.59506786,-0.9240811,0.565463,0.35655925,-0.02569695,0.26075587,-0.78374606,-0.08261152,-0.041393492,-0.1964173,0.43336704,0.29181,-0.71084285,0.41333124,0.37298945,-0.5914092,-0.6648118,0.35947788,-0.09229922,-0.18059331,-0.091778666,0.36550236,0.15398349,-0.14202751,-0.256374,0.35332835,-0.4489198,0.2037347,0.20697007,-0.19912902,0.20197098,-0.010375812,-0.35596198,-0.9267285,0.17635132,-0.4394258,-0.28562242,0.27513212,-0.011845978,-0.03724942,0.14526588,0.29480812,0.44571275,-0.58401,0.11701668,0.060914986,-0.5902739,0.4010321,0.5287065,0.4312452,-0.26565042,0.46929044,0.20200482,-0.14280623,-0.04108572,0.03608911,0.40947965,0.046027504,0.43231556,0.0035887407,-0.1716891,0.37882137,0.89927673,0.061729554,0.35348478,0.0696087,-0.07499977,0.26284623,0.12418553,0.30251104,0.0931867,-0.41980523,0.018927088,0.0518687,0.24555095,0.5770853,0.47582918,0.31634977,0.012741639,-0.12111077,0.17417838,0.20920914,0.11463681,-1.3470674,0.38140014,0.26695168,0.78282887,0.41821682,0.2829787,-0.18449894,0.39377677,-0.29188687,0.17217548,0.4146876,-0.077400714,-0.435538,0.7495619,-0.60587543,0.37705415,-0.17695038,-0.06791038,0.28890646,-0.008420481,0.39454016,0.9774599,-0.10044468,0.027042232,-0.09897652,-0.07328617,-0.029397221,-0.36134398,-0.03441841,-0.5320394,-0.24499318,0.95712674,0.39529765,0.35615075,-0.26174054,-0.070853546,0.085785426,-0.27017382,0.33489954,-0.13427149,0.120643534,0.045732655,-0.41408622,-0.20360534,0.53416324,-0.07108804,0.06924125,-0.31628388,-0.3624676,0.048380595,-0.20208976,0.14287224,0.027772363,-0.8439437,0.09001201,-0.5434481,-0.5727268,0.6012445,-0.096377425,0.036458276,0.2219772,-0.017086228,-0.14319307,0.2868857,0.060214676,0.8085006,0.054971304,-0.28046092,-0.35089114,0.35094145,0.34178102,-0.4072933,0.12175115,-0.42678452,0.27579132,-0.5974236,0.61445415,-0.0002784087,-0.35058883,0.1019021,-0.19323975,-0.07990478,0.4822892,-0.19141378,-0.25147384,0.11548673,-0.13366023,-0.49833775,-0.12422236,-0.34121898,0.21116343,0.17809698,-0.13352199,-0.08375224,-0.16524711,0.010528592,0.29687926,0.056246288,0.3699562,0.36985812,-0.1532179,-0.1391605,0.16533202,0.2950594,0.3492063,0.06981658,0.047053773,-0.569878,-0.33999908,-0.4098509,-0.032248404,-0.2293145,0.2844292,0.00028409177,-0.13360353,1.0334008,0.10795701,1.2734203,-0.021404313,-0.48072174,0.09986369,0.64003175,-0.13003637,-0.17872073,-0.47079355,1.2357908,0.6938699,-0.17246646,0.0033046375,-0.40862572,-0.29379278,0.37480405,-0.43039668,-0.20047572,0.109541826,-0.6100308,-0.3191732,0.26055625,0.13007256,0.008782299,-0.010083766,-0.0064697172,0.072338,0.04282707,0.21775325,-0.70085657,-0.24290179,0.092027776,0.37266123,-0.073547624,0.21093303,-0.3663407,0.39475724,-0.8011787,0.15414777,-0.49023598,0.18295905,-0.28768164,-0.57190394,0.14270924,0.12957807,0.212553,-0.3153507,-0.37649786,-0.08284791,0.4564699,-0.16642052,0.14491084,0.6960631,-0.35794383,-0.09702645,0.082698226,0.54724085,1.2935905,-0.27629995,-0.112767644,0.3318861,-0.5494927,-0.6097449,0.38182232,-0.46192935,-0.04463828,-0.2447696,-0.5293926,-0.62685925,0.2666834,0.18161097,0.22385424,0.19923164,-0.6932794,0.13439561,0.16703026,-0.41113853,-0.19738935,-0.1794454,0.3893811,0.9133216,-0.43232712,-0.44032237,0.061265595,0.174644,-0.20946282,-0.63274866,-0.13762559,-0.13371307,0.35688788,0.09857046,-0.26359898,-0.012577082,0.06654636,-0.3185476,0.10731798,0.39386448,-0.28067842,0.2405766,-0.3910178,0.006509439,0.9091116,-0.062278632,-0.11796535,-0.6034985,-0.5535945,-0.8629065,-0.59470993,0.032922648,0.34054375,0.08240864,-0.4851671,0.22610842,-0.09145541,-0.12845768,0.0930669,-0.36163378,0.48492196,0.237983,0.47544834,-0.31201342,-1.1181757,0.24164644,0.27759016,-0.13793764,-0.7699799,0.6318824,-0.2608561,1.0039614,0.12090878,-0.15175436,0.101112515,-0.59612215,0.22521186,-0.32053953,0.19889832,-0.69937956,-0.11086547 -742,0.4234263,-0.17035034,-0.663369,-0.107421964,-0.3407318,-0.035459004,-0.19977093,0.6911924,0.1427249,-0.49053803,-0.13083972,0.0018070459,-0.06692688,0.534785,-0.17514093,-0.70430756,0.015568308,0.09684982,-0.41707852,0.52326167,-0.36941054,0.32082814,0.030259622,0.3533986,0.16596791,0.33719692,0.09958399,-0.10241208,-0.120687164,-0.10042238,-0.06024409,0.3164621,-0.533779,0.28549525,-0.22783054,-0.4453513,-0.020442689,-0.39604598,-0.3102477,-0.63246995,0.2965415,-0.6871193,0.44698793,-0.20219073,-0.3424958,0.20083642,0.04265289,0.38852087,-0.28082457,-0.040422622,0.09519367,0.04878277,-0.12673847,-0.11385587,-0.13352858,-0.34854352,-0.49194005,0.19990383,-0.5050107,-0.030598955,-0.14412716,0.15807836,-0.44087467,0.1139905,-0.08627207,0.42404416,-0.46709055,-0.05851133,0.35006294,-0.20478716,0.08505047,-0.6380855,-0.02559789,-0.08325432,0.25974697,-0.09899386,-0.06701653,0.33338413,0.20790777,0.54826474,0.164258,-0.26526582,-0.3087096,0.002800552,0.078184225,0.53607994,-0.2187797,-0.43939593,-0.2350792,-0.034960277,0.3061398,0.15861756,0.0853,-0.17796895,-0.0664667,0.0910897,-0.2576461,0.28038776,0.4282896,-0.28480235,-0.14728622,0.21676491,0.6191661,0.24035987,-0.084480904,-0.0052210093,0.12830615,-0.5023797,-0.24510165,0.019489478,-0.17904289,0.39261714,-0.12607294,0.3183685,0.76887375,-0.21482484,0.15128572,0.11852051,0.016414348,-0.18423165,-0.38622743,-0.24785297,0.25610095,-0.53712064,0.06502739,-0.113258585,1.0069392,0.14059442,-0.6559252,0.28129327,-0.52232134,0.1737948,-0.21085861,0.56998825,0.7498774,0.40469846,0.13825302,0.82546157,-0.42841163,0.15998799,-0.08179452,-0.504258,-0.0129185,-0.10838081,-0.07913576,-0.47952995,-0.028693784,0.09026216,0.031341977,0.09800044,0.33743945,-0.6258103,-0.072036244,0.01651992,0.89683354,-0.30044428,-0.112501845,0.8149427,0.9180353,0.99766105,-0.12087878,1.1410258,0.29234868,-0.19406764,0.2385216,-0.29357386,-0.64170563,0.2921986,0.5314007,-0.18968649,0.2923941,0.03264092,-0.016321806,0.65271103,-0.3585885,0.15279561,-0.27427247,0.24194805,0.047408298,-0.25947773,-0.554568,-0.17061119,0.018274406,-0.053164966,0.006989805,0.335911,-0.11497311,0.5177106,0.032675937,1.6375324,-0.063642934,0.16494404,0.13007966,0.4957789,0.2071758,-0.21343452,-0.053146135,0.015371005,0.42172125,-0.061476786,-0.5628136,-0.0025064112,-0.30276024,-0.61700946,-0.2892926,-0.3250187,-0.05583527,-0.07520788,-0.5142643,-0.18080519,-0.11594292,-0.11257914,0.44810677,-2.5658312,-0.23953795,-0.20452248,0.13646139,-0.43764782,-0.4264518,-0.17456697,-0.559756,0.44969225,0.31825295,0.5921487,-0.4670638,0.53437483,0.4077746,-0.4900331,-0.09203994,-0.60425895,-0.099130236,0.018423678,0.30668512,0.090060234,-0.20932245,-0.11756988,0.038055968,0.54024255,-0.24110514,0.08980124,0.17645182,0.24152806,-0.028859966,0.47984487,0.094693884,0.5549554,-0.47423235,-0.3673447,0.4318616,-0.1766644,0.26690808,-0.19489251,0.15396528,0.35516948,-0.392726,-1.038999,-0.74350095,-0.22389202,1.1453184,-0.122718245,-0.39300582,0.34985936,-0.073802955,-0.1026352,0.029189177,0.2686426,-0.10110974,-0.09627311,-0.7484389,0.1324519,-0.12528819,0.057372916,0.051402688,-0.16337095,-0.39548352,0.558615,-0.11915506,0.35013387,0.4737023,0.22038746,-0.06496113,-0.35716012,0.03159689,1.0872122,0.48848936,0.1745992,-0.28169888,-0.21313958,-0.28110474,-0.13141476,0.06612139,0.44856745,0.7710387,0.057810165,0.19780447,0.1881276,0.076639935,0.0544273,-0.017446153,-0.45954037,-0.190933,0.08750465,0.59268445,0.52541536,-0.10340886,0.41806015,-0.1281853,0.33265713,-0.08792669,-0.5142323,0.6081918,0.64589715,-0.27536508,-0.32543322,0.69024074,0.44198498,-0.17232952,0.4476798,-0.5706117,-0.41734436,0.4711873,-0.1828513,-0.40745768,0.07447515,-0.18915187,0.08688988,-1.0329695,0.10686171,-0.40830666,-0.4204153,-0.53218406,-0.35870874,-3.3480568,0.16930181,-0.24468149,-0.0726459,-0.11384197,-0.078771256,0.2587144,-0.7029527,-0.6158249,0.19226743,0.11170414,0.6919539,0.037060335,0.21429211,-0.18832545,-0.22295591,-0.18665093,0.07299469,0.24248883,0.20783332,-0.011709136,-0.61979043,-0.1448434,-0.112907395,-0.43611935,0.12938806,-0.761845,-0.48235533,-0.32356185,-0.554968,-0.18005668,0.80095655,-0.36458716,-0.0019076546,-0.1771843,0.119077,-0.1208855,0.29542622,0.035976384,0.045402132,0.12273395,-0.14874893,0.16248983,-0.4386086,0.238606,0.19252697,0.5539265,0.34756377,-0.18987218,0.31180942,0.7659063,0.7999087,-0.15740258,0.7874139,0.54379845,-0.117825605,0.3511367,-0.16411562,-0.3167149,-0.61448187,-0.46343967,-0.09861887,-0.4227466,-0.41380423,0.09988515,-0.4233637,-0.9551865,0.6240692,0.043205883,0.2075008,0.008698591,0.27131045,0.44750702,-0.2657004,-0.15044312,-0.090193614,-0.04577681,-0.54785955,-0.36898836,-0.6417329,-0.5681948,0.01798133,1.3400985,-0.19301318,-0.012065713,0.047118597,-0.26560572,-0.031934105,-0.007227234,0.0066515086,0.124822125,0.43082136,-0.115449294,-0.6940385,0.46495238,-0.1707428,-0.21060807,-0.51793426,0.025195312,0.5496685,-0.62224096,0.3085047,0.33084354,0.108282804,0.16108796,-0.505427,-0.12051882,-0.07235732,-0.087881476,0.43896765,0.28785127,-0.7569851,0.5999808,0.40430126,-0.3087551,-0.8004978,0.30782902,0.0016516368,-0.09409786,-0.07214544,0.22512527,0.28524467,-0.079753764,-0.1667101,0.10502598,-0.3884678,0.32955977,0.2789348,-0.13560422,0.44356412,-0.2972077,-0.1973636,-0.79589516,-0.10900601,-0.53763264,-0.2432975,0.18630156,-0.030735135,0.030643739,0.014279672,0.15956756,0.32745117,-0.30082408,0.09433807,-0.06527322,-0.32419714,0.37383315,0.3988921,0.49418122,-0.48255265,0.5213651,0.117058985,0.020977871,0.0057053566,0.07872149,0.58112216,0.006271867,0.35099104,-0.1298334,-0.19028965,0.30244294,0.86420316,0.07018098,0.39861426,-0.00039885045,-0.21320601,0.06270576,0.091326475,0.025449192,0.11700957,-0.5336325,0.092848584,-0.009123294,0.1977196,0.67422545,0.16959913,0.41397256,-0.012879023,-0.24353638,0.15116136,0.055420827,0.036942873,-1.2780203,0.45667452,0.18607269,0.8451899,0.30291212,0.108505875,-0.11091081,0.657753,-0.22072172,0.16975716,0.42412922,-0.047024094,-0.5277655,0.58341104,-0.6938857,0.66874295,-0.023573844,0.03490139,0.09238207,-0.054745514,0.50856787,0.8155622,-0.1418101,0.01055046,-0.008153359,-0.38461182,0.032879394,-0.33733633,-0.023870716,-0.48840863,-0.19383913,0.73803616,0.5306311,0.2887253,-0.12317339,-0.10528404,0.16683461,0.018949818,0.21636425,-0.23693973,0.19467165,-0.09832606,-0.5401794,-0.20273873,0.5947745,0.27859566,0.27927315,0.006303795,-0.25780478,0.30690292,-0.15718648,-0.0073812,-0.114904605,-0.63909245,-0.0055360156,-0.41752586,-0.38834932,0.36778578,-0.061089277,0.23181792,0.07920984,0.1330416,-0.47333214,0.4712195,-0.2051195,0.84120595,-0.22529773,-0.2365654,-0.33206236,0.2696814,0.3750494,-0.28387988,-0.10491598,-0.41618,-0.03165548,-0.5905991,0.29891452,-0.18739475,-0.3643151,0.15213431,-0.1650805,0.020465728,0.4519834,-0.089149885,0.006423326,0.025825357,-0.046535805,-0.23409595,-0.26889998,-0.15967952,0.19316538,0.24597533,0.09658452,-0.12147759,-0.31632563,-0.08381152,0.37743747,0.010422114,0.18909976,0.32728177,0.06023473,-0.3954552,-0.20839219,0.2493649,0.5052676,-0.06155291,-0.13366638,-0.4838721,-0.36472327,-0.26132557,0.1783209,-0.16130209,0.3217798,0.101391144,-0.24446417,0.85627365,0.10872808,1.3196816,0.21582727,-0.36538965,0.10601142,0.45306188,0.022111956,0.044929262,-0.35845244,0.9552183,0.5226977,-0.11323481,-0.20537631,-0.5119877,-0.072502896,0.16892567,-0.27251822,-0.2291381,-0.14312126,-0.635805,-0.3925647,0.36459142,0.2034683,0.15187697,-0.13373956,-0.07788149,0.14757185,0.08689329,0.41125223,-0.51510227,-0.16222158,0.27476135,0.29373324,-0.1598679,0.24881724,-0.67880875,0.46447846,-0.61637217,0.11547522,-0.31512466,0.20288907,-0.19534184,-0.29357353,0.24372266,-0.09867811,0.41680384,-0.31394902,-0.39106825,-0.19390675,0.6052549,0.23824094,0.17718396,0.69336736,-0.36385617,-0.07368309,-0.04974809,0.5521037,1.0016117,-0.43430457,0.025314363,0.40963826,-0.13698411,-0.47639456,0.2123409,-0.25763187,0.1785842,-0.11367126,-0.31312707,-0.5393379,0.3144352,0.18253666,-0.036093004,0.050038613,-0.533499,-0.09309939,0.24442455,-0.24453542,-0.28037682,-0.33066407,0.17838229,0.64944166,-0.32850266,-0.41025606,0.25271636,0.3725173,-0.0315949,-0.3963063,-0.04493339,-0.20979027,0.2172695,0.20177814,-0.38057813,-0.09650838,0.046635844,-0.48796046,0.1401449,0.32591572,-0.3868977,-0.03764119,-0.16361447,-0.061501577,0.90969294,0.0032951555,0.38422468,-0.5725404,-0.3696372,-0.88570637,-0.45684427,0.5809008,0.2809827,-0.03070793,-0.6086978,-0.04705327,-0.18136701,-0.054311045,-0.07215386,-0.47810376,0.3905442,0.06649408,0.51368153,-0.11475237,-0.6798437,0.07643737,0.021467602,-0.17409934,-0.5339107,0.49118462,-0.1410899,0.9075671,0.08165436,0.0871028,0.35460302,-0.51034963,-0.06023197,-0.32478848,-0.266018,-0.75280035,0.042087328 -743,0.34502682,-0.18893312,-0.43987247,-0.14202176,-0.29719287,-0.11495774,-0.108938105,0.29419956,0.3513989,-0.27198493,-0.33299538,-0.23775594,0.038002256,0.44007668,0.03004075,-0.83969116,0.056065354,0.29896978,-0.88524145,0.4972363,-0.5849229,0.3492544,0.32955104,0.25930893,0.06651393,0.40279356,0.25427365,-0.19964185,0.073150046,-0.061250273,-0.14061886,0.09547751,-0.65105444,0.12643637,-0.25662342,-0.30297232,0.06994205,-0.44809297,-0.22750837,-0.84395635,0.12435722,-1.017946,0.45601347,0.15693149,-0.18623263,-0.23949443,0.3492057,0.42454073,-0.4967724,-0.026285747,0.30260855,-0.40889332,-0.33351782,-0.42184147,0.08853997,-0.30418342,-0.6135091,0.06478633,-0.42643154,-0.2257031,-0.28833395,0.24113451,-0.41733298,0.02870191,-0.17960007,0.31850946,-0.35801652,0.1196546,0.41740197,-0.28289688,0.021372356,-0.49490628,-0.08488078,-0.14656748,0.56587136,-0.03930799,-0.33611032,0.4976107,0.37534556,0.61225045,0.37819785,-0.53047186,-0.11100424,-0.15680638,0.20669033,0.53117824,-0.2003734,-0.25628906,-0.07841523,0.07123555,0.36482093,0.47913587,0.045940023,-0.21672262,-0.16253108,-0.12838349,-0.081226975,0.26645538,0.54714346,-0.37181532,-0.47468802,0.26469252,0.55817044,0.11275812,-0.11156233,-0.14485613,-0.0040101456,-0.6577447,-0.17749563,0.05649685,-0.18691875,0.522755,-0.19295454,-0.044972144,0.9917538,-0.18694633,-0.10716271,0.055177514,-0.0078083645,-0.15918277,-0.3796193,-0.17217591,0.37684214,-0.5720271,0.025375733,-0.40492913,0.84709126,0.22005889,-0.72250134,0.34552786,-0.6587025,0.2984099,-0.04243072,0.7187005,0.7534354,0.42554376,0.57311183,0.8717886,-0.38305393,0.22329624,-0.02385696,-0.39194828,0.14048925,-0.33660376,0.32637292,-0.51423746,0.06468446,-0.2454662,0.059506793,0.09349025,0.45990497,-0.6685832,-0.10276531,0.21206562,0.67834365,-0.28838906,-0.10761947,0.6700605,0.9346203,0.97314477,0.014139111,1.3722014,0.4118427,-0.29415178,0.27488083,-0.29296127,-0.8192009,0.10244885,0.36773872,0.061814368,0.095337085,0.037159126,-0.02963178,0.45650366,-0.5306283,0.09227362,-0.06967513,0.26146248,0.020657154,-0.14870372,-0.2873909,-0.33592713,-0.11183376,-0.2500606,0.22428502,0.33847257,-0.26843506,0.22606048,-0.19688764,1.4580079,0.05770052,0.076002665,0.16912204,0.44964832,0.20215978,-0.17108813,-0.17880152,0.29751128,0.37480247,-0.08195953,-0.5044645,0.14895439,-0.47156766,-0.48143375,-0.2129433,-0.36290386,-0.07496999,0.14005814,-0.4268564,-0.28498414,-0.14381202,-0.3614807,0.5796376,-2.4261947,-0.3274215,-0.15914701,0.37270817,-0.32899746,-0.2029701,-0.25510642,-0.59937865,0.34001943,0.12861617,0.4847671,-0.70026267,0.45684382,0.46616328,-0.67682683,-0.3406517,-0.8239906,0.019958781,-0.10829335,0.37152004,0.09602455,-0.22460556,-0.20624688,-0.109693676,0.77163476,0.03134169,0.088397376,0.7186823,0.38759264,0.12301838,0.5727328,0.056110024,0.72741735,-0.47092703,-0.2792958,0.47402197,-0.39893314,0.54925287,-0.1250152,-0.048535507,0.6032443,-0.5046893,-0.98394686,-0.6673371,-0.4521166,0.9515384,-0.39864486,-0.3699005,0.19913235,-0.2210934,0.032300647,0.071283236,0.7783674,-0.037546735,0.2056698,-0.6240555,0.12988052,-0.007797457,0.23019892,0.043242656,-0.06342356,-0.33743298,0.7764348,-0.0806083,0.56093985,0.27900997,0.2087298,-0.23697218,-0.2685966,0.17651083,0.7512485,0.23949903,-0.14610602,-0.06551433,-0.40862542,-0.18203704,-0.55146414,0.0018751415,0.6772096,0.76897776,-0.24823347,0.07856279,0.37949392,-0.069355264,0.008575748,-0.07760095,-0.25790736,-0.07212848,0.16066901,0.5174466,0.95054847,-0.11826154,0.5308537,-0.18686983,0.5123302,0.10895967,-0.57606035,0.5670884,0.7384215,-0.06260658,0.079566665,0.53874356,0.43322638,-0.33780527,0.5885151,-0.59546065,-0.3822387,0.57397646,-0.13528243,-0.37010348,0.029371358,-0.31233647,0.1475129,-0.7092962,0.44660342,-0.37017542,-0.41211158,-0.40767926,-0.09860221,-2.9080114,0.32411474,-0.2937112,0.14506803,-0.20232901,0.13716401,0.17681453,-0.67077416,-0.44490072,0.104341336,0.3503407,0.7613094,-0.049828596,0.22274327,-0.2582886,-0.31755635,-0.14970496,0.2432033,0.04971791,0.34296507,-0.26648137,-0.32548845,0.03311462,0.0864751,-0.35441625,0.18743178,-0.79520416,-0.5572505,-0.18776105,-0.6007617,-0.35694832,0.70578945,-0.52749336,0.040798876,-0.24591842,0.035498213,-0.13178712,0.14387184,0.14240701,0.2130096,0.14734112,-0.075004086,0.03681507,-0.3437124,0.5899854,-0.043087184,0.5798986,0.22659001,0.06993261,0.20304023,0.43315843,0.6712039,-0.31380478,1.0246279,0.49240458,-0.038755205,0.12379173,-0.21164244,-0.29360443,-0.6031652,-0.3508566,-0.069687374,-0.48410255,-0.3853957,0.18246597,-0.20863335,-0.9488674,0.65874195,0.04276605,0.15002123,0.024210969,0.19860102,0.45773727,-0.17716518,-0.07540106,-0.19293918,-0.1495696,-0.6123401,-0.33275458,-0.6172259,-0.53992563,0.16108924,0.98323303,-0.39933544,-0.024287483,-0.06904822,-0.3656677,-0.091981344,0.18587978,-0.002328373,0.2572514,0.6809531,0.054081935,-0.68077314,0.46200722,-0.07049591,-0.020964704,-0.59472805,0.253174,0.5682235,-0.8914271,0.749841,0.3158852,0.026847899,0.12670125,-0.5816713,-0.33412403,-0.013226724,-0.17677172,0.23096976,0.15889443,-0.7531564,0.4319221,0.27689335,-0.60707766,-0.7993721,0.19000679,-0.11482675,-0.28468984,-0.016553957,0.33960116,0.08351116,-0.026702337,-0.20676853,0.23453243,-0.45085254,0.3153579,0.17520006,-0.056234602,0.024122348,-0.23336986,-0.36668223,-0.7822526,0.061880056,-0.5074161,-0.2938877,0.2796766,0.08525871,-0.14452045,0.30948612,0.33337766,0.261924,-0.41507313,0.2058374,-0.13977933,-0.5096782,0.17345475,0.38516405,0.37967485,-0.52811766,0.50022054,0.12010033,-0.18518694,0.10147843,-0.016373795,0.5023847,0.025106367,0.33121315,-0.2879063,-0.16562994,0.3209624,0.85510445,0.015410338,0.3441559,0.11502246,-0.021019045,0.3939486,-0.011909585,0.050369345,-0.07126354,-0.63586164,0.103427045,-0.046613462,0.17079602,0.52670836,0.40160003,0.3608169,0.18060622,-0.2529469,-0.03274123,0.21093258,0.030720124,-1.0080702,0.41452205,0.2441462,0.89849186,0.4172041,0.039464228,-0.27070343,0.8282082,-0.2521335,0.0915575,0.36893767,-0.33075765,-0.465706,0.78313476,-0.7329125,0.49103644,-0.11921176,-0.05542066,0.18386817,0.24604566,0.26878718,0.79187334,-0.39404202,0.060599055,0.0033027898,-0.17647995,-0.128788,-0.3649839,-0.015820393,-0.50376534,-0.5345699,0.94122404,0.36720392,0.5043429,-0.050190527,0.06276858,0.11134667,-0.25932166,0.2955201,-0.1033197,0.02446452,0.23607199,-0.45313752,0.038262963,0.6148117,-0.097873725,0.30814904,-0.08728131,-0.18235534,0.050446637,-0.47484714,-0.1674494,-0.17935467,-0.71717113,0.12379413,-0.2834954,-0.49520558,0.5478501,-0.19357857,0.25270143,0.37376964,0.036712352,-0.10700572,0.642418,0.067061536,0.92232597,-0.08381055,-0.3214916,-0.22014236,0.23677275,0.13377255,-0.29059118,0.2761122,-0.4081909,0.1499286,-0.63525707,0.6893832,-0.14919887,-0.519708,0.13253309,-0.33755413,-0.117796496,0.58310324,-0.20060469,-0.15993111,0.086894035,-0.33484146,-0.31205398,0.018122613,-0.249095,0.27607992,0.2352929,-0.006418393,-0.24702527,-0.40871614,-0.09035762,0.37707484,-0.039402664,0.2896554,0.056573026,0.034992807,-0.002602967,0.24786586,0.3268633,0.45566174,0.20862262,-0.0854366,-0.41792676,-0.21781562,-0.3982547,0.16156618,-0.060623493,0.32707694,0.041619148,-0.16157153,0.94337493,0.027984528,1.1889958,0.10169497,-0.314722,0.0055006226,0.5802977,-0.05236061,-0.02530251,-0.2745438,0.8841113,0.62019,0.01861764,0.010462981,-0.50991064,-0.116924286,0.45906898,-0.34975317,-0.06228725,0.05940517,-0.5795667,-0.46352684,0.18598613,0.18184862,0.1655584,-0.16770475,0.038470037,-0.028508846,0.13494653,0.3116744,-0.70880824,-0.33914587,0.19605376,0.34760535,-0.23858291,0.17600456,-0.40636823,0.5108512,-0.8046967,0.360627,-0.44096437,0.058631614,-0.26509726,-0.3037961,0.22874378,0.039829846,0.47662428,-0.4090994,-0.33463958,-0.050092217,0.44091007,0.1734778,0.19504346,0.78692156,-0.3592434,-0.13520017,0.08846637,0.60418594,1.2460867,-0.5191488,-0.007274554,0.2715517,-0.4472005,-0.66285217,0.6246096,-0.2995051,-0.18863136,-0.18701212,-0.56793565,-0.39715713,0.17781767,0.19391401,0.04206826,0.11024552,-0.64333415,-0.045691315,0.23859732,-0.31009886,-0.31834024,-0.32375064,0.46866274,0.8994503,-0.16091593,-0.39740583,0.27567628,0.1541764,-0.31893027,-0.38828436,-0.0014069447,-0.35361913,0.29937518,0.076840945,-0.27470595,-0.08405173,0.15611991,-0.5297341,0.10190062,0.27267486,-0.33650395,0.18461162,-0.15824138,0.048662305,0.9834684,-0.17201318,0.122651175,-0.5104058,-0.4394298,-0.82772636,-0.44945642,0.45060506,0.11850032,-0.1304519,-0.33064657,-0.04525433,-0.005346048,-0.26185122,0.11012379,-0.5740005,0.33473852,0.09496359,0.3645536,-0.34332693,-1.0590961,0.033078123,0.08963383,-0.18035883,-0.617974,0.3944303,-0.23636927,1.0449895,0.103899516,-0.2581244,0.031707194,-0.3849281,0.21126571,-0.32942963,-0.11773689,-0.6955938,-0.071450785 -744,0.41925433,-0.17755175,-0.4628852,-0.17147346,-0.35985819,0.21066506,-0.097134545,0.41063818,0.26927996,-0.375613,-0.045973863,-0.12750728,-0.12869723,0.2727527,-0.22831924,-0.5496311,0.1179223,0.057723675,-0.45212635,0.6688189,-0.3753303,0.32485765,0.019773781,0.24529555,0.08781387,0.2630346,0.08578803,-0.103963204,0.062979005,-0.389469,-0.1233296,-0.11004793,-0.6386294,0.19686273,-0.09697795,-0.407118,0.027796235,-0.47317764,-0.45148703,-0.98713785,0.29683784,-0.9486597,0.45202726,-0.054792922,-0.29563406,0.10416164,0.15738115,0.3360067,0.07067957,-0.110368095,0.2704543,-0.2748427,-0.11258774,-0.17090447,-0.06478492,-0.65766394,-0.69688416,-0.11087336,-0.39261994,-0.20027265,-0.16862907,0.18133132,-0.39287177,-0.02336881,-0.08605877,0.5819704,-0.34413147,0.03973162,0.21726267,-0.2188902,0.39502898,-0.8132941,0.01545336,-0.13649893,0.16819398,-0.03764173,-0.19102845,0.52025414,0.40379578,0.33856487,0.055408638,-0.3344256,-0.3202364,-0.11549233,0.080728404,0.59763396,-0.1744175,-0.37502334,-0.117229894,-0.038387496,0.2424423,0.28080598,0.02801779,-0.22659208,-0.03268472,0.13652223,-0.2535519,0.50073767,0.70421606,-0.21421432,-0.1583998,0.5062663,0.5690522,-0.017137857,-0.25211102,-0.077103436,-0.016873032,-0.44029528,-0.10930046,0.17775822,-0.26998678,0.5938387,-0.24547684,0.15026203,0.6823863,-0.31457266,-0.008889266,0.22763774,0.18339935,0.036696553,-0.18876557,-0.25832263,0.3294186,-0.69558203,0.18764575,-0.4219806,0.65982133,0.2033275,-0.71379983,0.23755653,-0.51538926,0.2094859,-0.17852078,0.5245865,0.7360654,0.39847735,0.24082012,0.9184764,-0.5024553,0.023488197,-0.0861476,-0.34778613,0.16634753,-0.31387085,0.053381328,-0.34386465,0.029968968,-0.09760911,-0.22826634,-0.026459651,0.10258365,-0.63840157,-0.18903859,0.23140772,0.81892836,-0.19668014,0.035603702,0.70613384,1.159539,1.1358451,0.032875944,1.1113952,0.18535332,-0.25369233,0.19703151,-0.08353482,-0.7609991,0.23808418,0.3141848,0.2500313,0.1980913,0.04096222,-0.23355448,0.32358375,-0.6738254,-0.10751655,-0.27087268,0.40929732,0.28631073,-0.1326003,-0.30229726,-0.19451287,-0.11131605,0.12590292,0.03996683,0.27761227,-0.26373333,0.17748526,-0.03150223,1.2603275,-0.09451009,0.07967706,0.17091487,0.70666856,0.16180025,-0.15058602,0.32039306,0.31268358,0.26059964,0.32548627,-0.6169386,0.115930595,-0.43366167,-0.37627575,-0.2262257,-0.34020907,-0.032696567,0.13175258,-0.45575905,-0.3560823,-0.13009128,-0.14610727,0.47064513,-2.7219052,-0.09986396,-0.22524342,0.23809166,-0.31036234,-0.27361125,0.115864806,-0.7226613,0.39405817,0.34506395,0.47450128,-0.7409274,0.30019578,0.49884674,-0.6744164,0.0032489684,-0.70349354,-0.1385525,-0.07918048,0.4387555,0.19710687,-0.07334745,0.08474159,0.043207414,0.6462795,0.24778418,0.21516125,0.36226162,0.21733937,-0.021683233,0.43950966,0.080141075,0.54101384,-0.19964716,-0.098258495,0.3224493,-0.49550232,0.1911693,-0.20824523,0.021044161,0.6394386,-0.38338217,-0.8100821,-0.8231574,-0.21248262,1.2024978,-0.13149072,-0.75034624,0.22787333,-0.18003449,-0.21539648,-0.10590608,0.42972606,-0.14199881,-0.09531108,-0.67157835,-0.015322826,-0.15907994,0.2770674,0.0022700813,-0.069101326,-0.4167725,0.7165039,-0.010480846,0.4694009,0.19811781,0.12560508,-0.3038966,-0.48322323,-0.10353251,0.8001207,0.6785401,0.056526277,-0.15979667,-0.071864165,-0.31185737,-0.33397558,0.14015505,0.6966359,0.638917,-0.27486643,0.057258423,0.42380047,-0.10246633,0.13471682,-0.02007336,-0.43383503,-0.1703687,-0.09209562,0.5479885,0.70428246,-0.10413207,0.23699045,0.004999003,0.25813174,-0.07999616,-0.58231354,0.5204882,1.1138546,-0.15339196,-0.18345822,0.51857823,0.39042404,-0.35051033,0.46883553,-0.6070061,-0.3474943,0.47176996,-0.06323863,-0.62842256,-0.090801485,-0.24688418,0.012046448,-0.42587358,0.43072796,-0.49002004,-0.74704665,-0.4556988,-0.18647757,-2.60655,0.19958584,-0.32772556,-0.039955787,-0.20785229,-0.070989236,0.31538704,-0.53539217,-0.51255596,0.20454307,0.10706263,0.7173608,-0.052489955,0.11230246,-0.33315676,-0.13982871,-0.61116856,0.20245041,0.0025341255,0.23557928,0.0012499605,-0.27562812,0.07165527,-0.029650703,-0.49684414,0.108702615,-0.54088825,-0.45727897,-0.3792221,-0.39827448,-0.36937946,0.78673923,-0.20649423,0.17719923,-0.10220457,0.008756881,-0.121146,0.08143473,0.11829444,0.107353844,-0.008209859,-0.08682494,0.041009124,-0.29699713,0.46301413,0.030218486,0.44302544,0.32125214,-0.012437428,0.0946142,0.4937082,0.5411954,-0.07623405,1.0159998,0.39440757,-0.070424266,0.2763081,-0.08533363,-0.18331979,-0.4880325,-0.15433078,0.03268438,-0.39472225,-0.3309448,0.16691272,-0.34103456,-0.82480365,0.4308065,0.15439574,0.32959342,-0.07696674,0.15709926,0.48001033,-0.26179013,0.035298444,0.0031748584,-0.08215637,-0.58857816,-0.22972205,-0.754229,-0.3456897,0.16129918,1.0248307,-0.29644853,-0.14751315,0.00281527,-0.21957114,0.105794884,0.15445697,-0.15611577,-0.020311896,0.41701874,-0.056459475,-0.7665306,0.5359507,-0.10870923,0.024690611,-0.62571317,0.6290805,0.5830427,-0.61359054,0.44567338,0.36382532,0.08406894,-0.47345456,-0.59915787,-0.19117092,-0.11768965,-0.34205124,0.40515146,0.17736043,-0.88725525,0.2963355,0.2014308,-0.34506866,-0.63666683,0.5616739,-0.051284842,-0.21528043,-0.075846925,0.38253307,0.39956552,-0.021253848,-0.093928024,0.23282667,-0.5938178,0.22290967,0.21407147,0.014385036,0.46358997,-0.022178706,-0.22403355,-0.71533257,0.103076644,-0.6105425,-0.32824197,0.33170888,-0.073287435,-0.054063987,0.41999823,0.21005641,0.42912373,-0.085842796,0.16396329,-0.08221028,-0.33172327,0.58524364,0.4109152,0.4683784,-0.5628415,0.66571075,0.06149099,-0.30435735,0.08620102,0.11194887,0.4734907,0.2545761,0.61143297,0.07804494,-0.09715073,0.028375948,0.7085005,0.24751203,0.48659268,0.04168464,-0.10015108,0.32467255,-0.04956745,0.15971613,-0.006882598,-0.81488,0.017777046,-0.18548341,0.099670954,0.43147618,0.031987786,0.3326843,-0.0037352336,-0.30376312,-0.13960175,-0.031524803,-0.22570147,-1.4314069,0.42507157,0.23062862,0.9776359,0.4461556,-0.031035472,-0.13281235,0.82668227,-0.021402683,0.13167025,0.42931867,0.012206359,-0.32216594,0.5747606,-0.87387794,0.37634778,0.16287902,0.014882884,-0.10548435,0.1390632,0.37564978,0.7692982,-0.2614662,-0.09437917,-0.20108128,-0.452727,0.46687388,-0.34396544,0.22184685,-0.5657503,-0.4211562,0.44834152,0.38300535,0.31209424,-0.057110224,-0.055960555,0.08331577,-0.027123433,0.2994072,-0.028520823,0.032988396,-0.10678674,-0.37936303,-0.14756271,0.5480509,-0.4546934,0.25929755,0.03188656,-0.0031423143,0.22944328,0.009736998,-0.052823048,-0.014791866,-0.77911,0.063739225,-0.078099884,-0.36299077,0.5899491,-0.24094799,0.19391356,0.14101887,0.04346339,-0.27258042,0.20395887,0.11787356,0.56468016,-0.1896365,-0.12239049,-0.46377587,0.031051066,-0.049811687,-0.26944628,0.20321384,-0.14427236,-0.03889222,-0.49175802,0.4903905,-0.14906202,-0.22145568,0.15560706,-0.11875875,-0.013707042,0.5558223,-0.30582693,-0.10728876,0.04846268,-0.26577657,-0.28110987,-0.21970667,-0.074045666,0.21056506,0.2774898,0.062343415,-0.14933579,-0.23998073,-0.019195255,0.28182358,-0.029626932,0.1954701,0.30891687,-0.02199657,-0.42129096,-0.11412655,0.20897602,0.5420458,-0.034752674,0.0055518574,-0.12075459,-0.53037184,-0.491131,0.18388584,-0.05190342,0.53887796,-0.020831427,-0.15409322,0.69535816,0.04640444,1.24707,-0.16872086,-0.3345558,-0.08479243,0.5554186,0.050796263,0.03612783,-0.40221962,0.86952454,0.56203824,-0.13862689,-0.020934317,-0.45739618,0.124059506,0.29870108,-0.112795435,-0.058523785,0.046314728,-0.7554137,-0.3426561,0.21741061,0.30493015,0.099155374,-0.094641365,-0.040417757,0.3915549,0.16888593,0.47156957,-0.43678936,-0.20228137,0.28800315,0.25008538,0.06696045,0.23747815,-0.37996587,0.22399214,-0.57590395,0.07119044,-0.004490665,0.093728706,-0.14623177,-0.24639235,0.18369174,-0.049166877,0.40345567,-0.16049828,-0.46104553,-0.105663456,0.61915344,0.28113562,0.13456686,0.6801434,-0.238292,-0.06483477,-0.10105324,0.5289453,1.222907,-0.17043681,0.07746162,0.23570494,-0.5467405,-0.70178795,0.30526972,-0.19502458,0.093610324,0.104858704,-0.25937763,-0.5139784,0.2333946,0.21333148,-0.05260843,0.27122563,-0.7747246,-0.3118686,0.07028661,-0.4984377,-0.2651303,-0.47022843,0.35883245,0.66456276,-0.22028027,-0.25040194,0.06438006,0.33693415,-0.2652356,-0.691331,-0.055658765,-0.45811626,0.25619718,-0.10354262,-0.48871398,-0.13855454,0.12721522,-0.5941835,0.13441308,-0.052537594,-0.32226244,0.11925131,-0.20648089,-0.0036682147,0.76766425,-0.1977633,0.11485047,-0.5649931,-0.44081315,-0.6239425,-0.39525396,0.21012558,0.30442712,0.025440196,-0.6532765,-0.2606576,-0.13841733,0.017211756,-0.13499755,-0.4139141,0.42529026,0.08336922,0.26543826,-0.022384832,-0.9269102,0.15639783,0.08231868,0.052241895,-0.4712991,0.41104192,-0.072762586,0.7671775,0.24236219,0.05835441,0.1425134,-0.3359546,0.32869172,-0.284664,-0.36368293,-0.61161894,0.078839585 -745,0.55931705,-0.30450174,-0.5254979,-0.1684933,-0.2869275,0.028874738,-0.29562452,0.5469386,0.039826054,-0.61051863,-0.111250825,-0.24194779,-0.13236941,0.31964406,-0.43443495,-0.72285706,-0.069733486,0.011312016,-0.3456884,0.54176825,-0.3759156,0.36768082,0.11400997,0.25766394,0.3314256,0.20097311,0.24616316,-0.10744327,-0.35172287,-0.20635082,0.06326102,-0.05795254,-0.6097767,0.0069442648,-0.33600157,-0.67909306,0.100427195,-0.4392405,-0.16242787,-0.8315369,0.37497002,-0.9347164,0.5035234,0.023449047,-0.26255003,0.17558804,0.2453839,0.4274997,-0.028509576,0.0947678,0.1439644,-0.023873528,-0.022417296,0.031925652,-0.34562057,-0.5890655,-0.6741504,0.12060299,-0.45491508,-0.2545914,-0.14015886,0.13432702,-0.49852586,0.109363146,-0.051598784,0.4670973,-0.41262457,-0.29756168,0.4197742,0.053158343,0.48183495,-0.81351054,-0.32979217,-0.14721069,0.05918626,-0.18926708,0.10014587,0.31860188,0.23395988,0.63637775,-0.003045129,-0.33518526,-0.32410923,0.07549553,-0.065941006,0.33516592,-0.22943519,-0.25194043,-0.15348783,-0.084914856,0.451089,0.22741866,0.20677161,-0.041336734,0.010582221,0.19699319,-0.41678852,0.40354756,0.42220336,-0.30503052,-0.19880791,0.16695045,0.5532926,0.15358056,-0.069289386,-0.14305282,-0.029390395,-0.47994545,-0.22149387,0.2020484,-0.31807828,0.5335966,-0.12988423,0.39034432,0.5780803,-0.44006866,0.25209436,0.13019152,0.03625966,-0.20800945,-0.20389049,-0.38337088,0.26808035,-0.59709734,0.13637105,-0.39325047,0.84126884,0.079360746,-0.7312251,0.23629716,-0.5763588,0.1672821,-0.068797916,0.46113724,0.6177315,0.39821365,0.24308811,0.70008534,-0.39450794,-0.1618742,-0.17910933,-0.13715327,0.19097999,-0.17269413,0.26206714,-0.46413168,-0.19719002,-0.03310189,-0.07415245,-0.027107954,0.4555549,-0.6198743,0.0057106144,0.017918995,0.9156262,-0.21291362,0.06512474,0.7794423,1.0551264,1.1599907,-0.013885736,1.1375324,0.20060351,-0.22256804,0.31617454,-0.24200587,-0.5595014,0.47750598,0.47055107,-0.4204878,0.47076315,-0.1075026,-0.11267112,0.41565806,-0.29966646,0.13273342,-0.2789825,0.06671403,0.069020234,-0.1505084,-0.33976656,-0.2761688,-0.008022904,0.07051029,0.0089379335,0.25097534,-0.13977127,0.2984581,0.01247452,1.3768332,-0.07337036,0.0666958,0.06181831,0.44752303,-0.0015812601,-0.03203854,0.053332604,-0.11860263,0.12500791,0.21015768,-0.60818,0.08428074,-0.2447519,-0.42231274,-0.24326111,-0.2319133,-0.12592563,-0.2014999,-0.60544163,-0.069102906,-0.25456905,-0.30596438,0.19432275,-2.3874958,-0.30817375,-0.17166711,0.25125024,-0.27511954,-0.39953724,0.016175393,-0.524012,0.56724715,0.40781757,0.49178055,-0.5594823,0.4179279,0.4673381,-0.43736196,-0.085883476,-0.65503585,-0.17750318,-0.08263485,0.26038405,0.06549975,-0.26569614,0.098217316,0.21925893,0.43098286,0.025747087,0.06295659,0.038612265,0.5319511,-0.23281483,0.474968,0.08584046,0.43988582,-0.35767072,-0.19973005,0.4059951,-0.50338954,0.1502832,-0.102272496,0.095595084,0.37313414,-0.5659727,-0.9254158,-0.71087307,-0.42975518,1.2639524,0.17867582,-0.4153934,0.12725893,-0.11668687,-0.2511154,-0.13203295,0.31193557,-0.051107105,0.012836622,-0.7980814,0.013137813,-0.3150623,0.005357772,0.07108745,0.017999966,-0.49752888,0.65419775,-0.043260694,0.27081957,0.38217905,0.31541997,-0.35191363,-0.58274686,0.005594905,1.059994,0.5891999,0.118717484,-0.20929857,-0.10336815,-0.46934396,-0.069235615,0.236917,0.43966636,0.9463396,0.026670879,0.07806092,0.14639238,-0.15069155,0.14798345,-0.13194595,-0.5031306,-0.2249286,0.15182073,0.57602257,0.5166283,0.04810271,0.41982532,-0.1831057,0.4104318,-0.24400605,-0.35389227,0.5621838,0.81588423,-0.18858722,-0.16877358,0.5902318,0.57479703,-0.33033666,0.63572794,-0.63785404,-0.51463896,0.31444862,-0.17387478,-0.48715737,0.09194537,-0.40440384,-0.025597688,-1.026735,0.3262536,-0.65712124,-0.2242484,-0.6357179,-0.22497539,-2.9525568,0.32150888,-0.31034812,-0.1710601,-0.046949424,-0.16003837,0.3655809,-0.8070455,-0.7369936,0.08383192,-0.006095324,0.88582027,0.11345238,0.20569508,-0.17324157,-0.39558002,-0.396977,0.066741824,0.22364198,0.23147392,0.07233609,-0.5166101,-0.0035943133,-0.40707546,-0.41014546,0.0072970646,-0.4873829,-0.66441685,-0.44042653,-0.5086335,-0.41182134,0.75319946,-0.04843097,0.020673126,-0.16759059,-0.03374634,-0.09200442,0.49650985,0.16090843,0.0032024,0.15381275,-0.113821544,0.20337234,-0.46143582,0.10141439,0.28528184,0.4235391,0.60616887,-0.20406999,0.4484404,0.62311417,0.61183375,0.017950227,0.7922055,0.3897295,-0.15162452,0.3503995,-0.25061375,-0.24526331,-0.6041674,-0.23490374,0.054595254,-0.24869132,-0.3157796,0.062265176,-0.42057642,-0.7355188,0.597161,-0.18764238,0.18000515,-0.10388475,0.23989403,0.4567751,-0.20931278,-0.09835611,-0.052957747,-0.0278393,-0.38134083,-0.26272053,-0.7555608,-0.6397336,-0.04435423,1.140191,0.04909793,-0.0059233787,0.2538694,-0.008312515,0.2004335,-0.055446915,-0.11259072,-0.13223486,0.31612465,0.045296315,-0.72684664,0.3585091,0.023240805,-0.03097679,-0.47628233,-0.034153845,0.70677525,-0.47253102,0.14855453,0.59559,0.06262938,-6.414311e-05,-0.41291592,0.14716248,0.05140412,-0.25197992,0.2883061,0.16672972,-0.6285512,0.49138483,0.26213998,-0.25561756,-0.7351259,0.57075065,0.16308069,-0.22828463,-0.18361393,0.3215795,0.23815887,0.024492456,-0.17250301,0.30447653,-0.4575376,0.17928831,0.249608,-0.0057149893,0.38354152,-0.027598837,-0.22355287,-0.6719586,0.10009779,-0.41983983,-0.2910044,0.2732541,0.017734597,-0.023966487,0.36166057,0.26405993,0.34955707,-0.24071221,0.057706382,-0.07393841,-0.33937764,0.4255732,0.47939306,0.6205762,-0.50343895,0.560332,-0.0030977002,-0.11954761,0.025162118,-0.13563393,0.5255203,0.13415292,0.29231447,0.11934825,-0.26169762,0.23530735,0.6491643,0.060830045,0.4602726,0.1926632,-0.19508408,0.13503556,0.102351315,0.087544665,0.16317871,-0.3584519,-0.0850607,0.10844802,-0.013396542,0.48022535,-0.08039601,0.33721775,-0.12141008,-0.27135354,0.029216154,0.09927768,-0.2781872,-1.1737865,0.4169769,0.08058078,0.73969406,0.6116533,-0.058260527,0.06133757,0.53949845,-0.12599222,0.052325744,0.4653069,0.22444761,-0.50545275,0.6466565,-0.5115409,0.55033255,-0.063473366,0.094702385,-0.2914278,-0.070386305,0.5788306,0.7874951,-0.23731028,0.044683393,-0.075186506,-0.44612807,0.1248219,-0.29157883,0.1568313,-0.4763484,-0.101053216,0.5637144,0.40849844,0.25345296,-0.099152796,-0.078421935,0.082424976,-0.10679597,0.42785916,-0.06803129,0.076964654,-0.10329483,-0.5569028,-0.24107496,0.3684656,0.15052854,0.21408059,-0.021530407,-0.3217627,-0.0117602,-0.028709691,-0.03659383,-0.024891526,-0.65677196,0.08037454,-0.5204269,-0.38202825,0.33147365,-0.20947573,0.3045629,0.26945752,0.17568938,-0.2808835,0.13073197,0.13361523,0.50207305,-0.2612844,-0.2241794,-0.24237616,0.17798431,0.25841573,-0.38538998,-0.13181876,0.013586036,0.23067653,-0.61671257,0.5078457,-0.16441791,-0.198421,0.0914167,-0.17048335,-0.031597566,0.55837667,-0.3059279,-0.03336892,0.055642705,-0.029513193,-0.13567589,-0.18471101,-0.10400096,0.17311434,0.081411846,-0.014960243,-0.27603847,-0.12599656,0.028310051,0.58550835,-0.031980988,0.32617655,0.5225445,0.14784063,-0.6218677,-0.25582996,0.04912271,0.5387709,0.13764276,-0.12898237,-0.6165977,-0.40938526,-0.21166296,0.31385013,-0.058814406,0.16570507,0.111123815,-0.45846382,0.9683326,0.13928208,1.3128332,0.045507856,-0.30535588,-0.016445545,0.513329,-0.18927518,-0.047902685,-0.43813324,0.99898994,0.44000822,-0.39454904,-0.17493796,-0.4392083,0.003903074,0.20867808,-0.24445534,-0.17847143,-0.18393381,-0.62468094,-0.45722967,0.29169443,0.4134198,-0.030478774,-0.24700387,0.15354152,0.27593207,-0.0075090304,0.5575509,-0.4616877,-0.13695988,0.43075374,0.24132565,-0.07078911,0.24112971,-0.45142084,0.32335398,-0.7463521,0.13018088,-0.2643651,0.17372558,-0.12210221,-0.42022592,0.3655165,0.04655804,0.2752207,-0.23344545,-0.49904484,-0.20601323,0.5018429,0.14539754,0.18364623,0.59444016,-0.298202,-0.09853065,-0.15015873,0.67971987,1.308685,-0.07943576,0.085079685,0.23344946,-0.3318403,-0.6206909,0.3400728,-0.40987086,0.107339166,-0.24269494,-0.24512248,-0.5695386,0.34997398,0.3671113,0.017160382,-0.030722512,-0.48437425,-0.30509153,0.28170386,-0.5011625,-0.33549166,-0.30292934,0.10402385,0.57847774,-0.23602891,-0.029298361,0.011562037,0.6264852,-0.11836107,-0.35252517,-0.11986116,-0.15552156,0.41201475,0.18858922,-0.3533759,0.04065182,0.047574244,-0.4627877,0.12676576,0.2037959,-0.51134527,-0.16598603,-0.2587919,0.005073177,0.7821774,-0.031750746,0.22207871,-0.3778955,-0.3625176,-0.7592128,-0.35591295,0.46602663,0.22732936,-0.03265128,-0.45710716,0.02821875,-0.22730473,0.0024226308,-0.033170424,-0.3030279,0.22591326,0.20121916,0.5778489,-0.16047001,-0.5096361,0.035975356,0.21993251,-0.14066096,-0.40136036,0.52335006,-0.14015211,0.75510204,0.2550008,0.045527864,0.29591888,-0.47857854,0.022100864,-0.15945792,-0.3019937,-0.6782037,0.11614048 -746,0.41101953,-0.1600624,-0.52038914,-0.24874665,-0.53520983,0.15085188,-0.33944836,0.16710173,0.38253075,-0.064133905,0.11281354,0.008674415,-0.14675786,0.31837988,-0.061118226,-0.9282154,0.04745873,0.14633137,-0.9151649,0.67787725,-0.551618,0.2925495,-0.032022804,0.3812074,0.071490906,0.23558542,0.14192085,0.10161045,0.119742244,-0.071674675,-0.12492997,0.3366876,-0.76622844,0.31519762,-0.07088871,-0.40395823,-0.18848558,-0.3155245,-0.22516437,-0.8635896,0.18034598,-0.6625396,0.55319977,-0.120951414,-0.41451892,0.052054867,0.21608277,0.18671365,-0.45417222,-0.01852026,0.24682803,-0.29051575,-0.05152947,-0.14067787,-0.27256432,-0.64539146,-0.70616204,-0.14685632,-0.6093203,-0.04555595,-0.271691,0.32186463,-0.32499272,-0.011690727,-0.2950891,0.53090364,-0.39859396,0.30623558,0.21566036,-0.09795844,-0.14179304,-0.50194126,-0.112579264,-0.22335774,0.17803794,0.20305915,-0.49394143,0.3910457,0.2895772,0.5225077,0.16574624,-0.3842095,-0.2403782,-0.18390802,0.031542048,0.2570149,-0.021300245,-0.2645914,-0.3035482,-0.12532578,0.2814385,0.18603471,-0.0007865747,-0.43387935,0.12997137,0.053923607,-0.21084017,0.5572487,0.4974816,-0.48225313,-0.24656908,0.34781793,0.33361584,0.19447078,-0.33206698,0.15888736,-0.20025365,-0.576541,-0.277196,0.17678826,-0.1584399,0.46459717,-0.26585487,0.18368196,0.65659803,-0.16489886,-0.25917035,-0.15533139,-0.15828043,-0.042747602,-0.3815622,-0.2431244,0.18995121,-0.45952746,0.07540203,-0.23551254,0.6791864,0.15418638,-0.7704011,0.37106678,-0.50023514,0.21613033,0.01868397,0.72629446,1.0252882,0.578161,0.2783313,0.8309527,-0.33637348,0.17708614,-0.07383587,-0.2390172,0.16822317,-0.18379103,0.21654588,-0.5104975,0.08884754,-0.19622914,-0.007446353,0.028486164,0.33563682,-0.4407721,-0.17848545,0.012581221,0.6702425,-0.3514058,-0.121673346,1.0038493,0.9637493,1.194854,0.12099807,1.3248672,0.4969622,-0.053262763,-0.0011924505,-0.24177901,-0.5720852,0.16192633,0.1817685,-0.05119562,0.40071395,-0.0028883626,0.097620435,0.52790314,-0.15272434,-0.1498437,-0.06735681,0.42176017,0.060366828,-0.075622946,-0.36522022,-0.18183464,0.32206494,0.010140959,0.047489356,0.292116,-0.1678745,0.56918997,0.24179849,0.9495757,0.15004085,-0.03642059,-0.03002658,0.33610705,0.3001011,-0.06524597,-0.06531138,0.42899427,0.29043186,-0.047097787,-0.66720515,0.15288535,-0.2902578,-0.269504,-0.095916554,-0.41622055,-0.14848252,-0.24673657,-0.41228184,-0.28917658,0.074980065,-0.15623339,0.37309378,-2.5021758,-0.28768378,-0.1571452,0.2356417,-0.054662053,-0.1866615,-0.28308985,-0.64338213,0.31652603,0.25981814,0.3354432,-0.63374454,0.4910724,0.38353235,-0.4659364,-0.041093167,-0.75693494,-0.07673734,0.020081019,0.5390323,-0.12845351,-0.113978736,-0.09824496,0.34682605,0.64915216,0.06337539,0.14832738,0.3150835,0.6018151,-0.23016077,0.5455264,-0.022543767,0.54069763,-0.40932685,-0.18496017,0.35404426,-0.4893824,0.29735145,0.08321726,0.053005304,0.630936,-0.4383363,-0.8226116,-0.40017426,-0.20450966,1.2281964,-0.43733814,-0.5085427,0.21128117,-0.3723017,-0.13870303,0.02593375,0.5080715,-0.073688515,0.07058823,-0.6398612,0.09607602,-0.07362064,0.25369284,-0.07078457,0.1882702,-0.313165,0.7822534,-0.1716869,0.45510018,0.23748595,0.13118847,-0.45920584,-0.42479017,0.19355272,0.6588505,0.4215709,0.06345127,-0.13956538,-0.18588321,-0.11441925,-0.1391634,0.11732049,0.8488996,0.5355142,-0.16748998,0.13070379,0.39418977,-0.24668601,0.012366221,-0.32441965,-0.18621513,-0.14171849,0.20987006,0.50451607,0.66708344,-0.09971626,0.38538778,0.0093891965,0.13441299,-0.09251644,-0.7278113,0.58666164,1.0378376,-0.2403418,-0.29429653,0.5205983,0.31070462,-0.2685658,0.5514303,-0.46674526,-0.33852905,0.6336221,-0.06000773,-0.32992417,0.021115335,-0.41774347,-0.035132047,-0.73574865,0.21713702,-0.1505082,-0.55832225,-0.62413234,-0.19243078,-3.7843668,0.0871264,-0.22165878,-0.029133867,-0.28607425,-0.215157,0.31137362,-0.45779344,-0.5760156,0.1533194,0.15060404,0.57431096,-0.18118931,0.022711407,-0.2406343,-0.3730702,-0.31117618,0.28446472,0.20913549,0.3900576,-0.10026292,-0.4291989,0.13298467,-0.08378224,-0.63959616,-0.13606426,-0.47770283,-0.37788755,-0.021241792,-0.557226,-0.1756952,0.7680714,-0.4155582,0.05186391,-0.4379173,-0.07924068,-0.08022236,0.37791625,0.22450556,0.3392902,0.11636581,-0.062021114,-0.10916842,-0.25116614,0.0688973,-0.028077023,0.24092415,0.40079027,-0.058181874,0.2371829,0.47654393,0.76817435,0.015635999,0.8442289,0.25932634,-0.07327114,0.4637872,-0.20600122,-0.45576763,-0.7554549,-0.305724,-0.2605097,-0.5807075,-0.2834254,-0.123539604,-0.33055213,-0.80316335,0.44733185,0.077096716,0.20195137,-0.18188111,0.37019876,0.32015628,-0.16203651,0.17946558,-0.10210812,-0.3585541,-0.49336052,-0.49064484,-0.7049658,-0.6072089,0.10918031,1.0808845,-0.21020131,-0.12330005,0.015798545,-0.29375997,-0.00049668155,0.2612233,0.1272235,0.36711347,0.34078106,-0.050782394,-0.603414,0.37550554,-0.29280987,-0.008240922,-0.56533104,0.20335105,0.7329501,-0.64573187,0.6906699,0.24361828,0.22400567,-0.068421155,-0.81924087,-0.23518986,0.055447046,-0.15772796,0.6932031,0.19562604,-0.7415455,0.5513524,0.13786507,-0.10127514,-0.6533171,0.5174986,-0.03622836,-0.20087123,0.03824865,0.4338641,0.055443525,0.06311831,-0.17613119,0.26514885,-0.41544047,0.18318966,0.24776244,-0.060688734,0.24520597,0.011023879,-0.33429262,-0.6345288,-0.18521163,-0.6137919,-0.3658719,0.011206158,0.019518418,0.08279295,0.03134494,-0.027750429,0.45410213,-0.06417717,0.20918976,-0.20636891,-0.23628892,0.37881562,0.5835609,0.26703233,-0.5026515,0.70187545,0.19044465,0.04140166,0.037045836,0.21104911,0.4270959,0.20582996,0.529382,-0.12049435,-0.040588345,0.10034522,0.72832936,0.30266038,0.4175846,0.070981026,-0.18847509,0.30896014,0.20112629,0.22488405,-0.13375439,-0.18323082,-0.06664188,0.01519897,0.24965988,0.5788767,0.1148108,0.23333387,0.029321011,-0.042779963,0.14834,0.20352182,-0.13199857,-1.3786318,0.40069145,0.3032769,0.875366,0.5535528,0.15440606,-0.10050483,0.54805726,-0.40175265,0.10006788,0.46821457,0.13186787,-0.19955117,0.5721111,-0.6000258,0.5144504,-0.225874,0.03689225,0.17979002,0.39956537,0.32182086,0.94184905,-0.22725701,0.04962299,0.088747114,-0.36028117,0.21796933,-0.2755635,0.14740744,-0.30330095,-0.4934454,0.5950347,0.32790998,0.2812336,-0.5074988,0.013189351,-0.04200251,-0.3194064,-0.09046472,-0.20521545,-0.11076014,-0.32341403,-0.53257555,-0.22414847,0.5552895,-0.23643999,0.031680856,0.13974412,-0.24954864,0.22535153,0.057477474,-0.030653726,-0.04571012,-0.7258929,0.003541108,-0.2705099,-0.4088237,0.52449685,-0.41950467,0.20018277,0.27123362,0.00528965,-0.42060566,0.0955685,-0.07581861,0.5939805,-0.05096764,0.117308885,-0.22772208,0.16692428,0.32526273,-0.30733642,-0.009174154,-0.30113658,0.1543171,-0.50811344,0.3911005,-0.17897707,-0.31954852,-0.13857724,-0.037218366,0.07563302,0.500001,-0.26328447,-0.12297556,0.06381521,-0.07612122,-0.28474203,-0.07761175,-0.2918516,0.37191495,-0.00808141,0.029146457,0.073299386,-0.0672212,-0.096332416,0.4354753,0.05814867,0.2766298,0.28658614,0.023254784,-0.37511957,0.09453573,-0.04653143,0.4900264,0.13546467,-0.18031497,-0.19958043,-0.27073908,-0.3706059,0.5651741,-0.187498,0.20767511,-0.008323681,-0.5923355,0.8148718,0.15322113,1.1979343,0.04403867,-0.478659,0.23094486,0.5942208,0.03860347,0.14091192,-0.19717155,0.74537987,0.45756322,-0.11247776,-0.037211016,-0.41461736,-0.19282022,0.22167896,-0.3306553,-0.30102208,-0.20561023,-0.59202015,-0.05459,0.11171333,0.117706805,0.038077705,-0.11598794,-0.22227465,0.06647255,0.17352262,0.45085132,-0.51076365,0.0039563975,0.2970594,0.20136267,0.008161215,0.23279457,-0.22879079,0.44330472,-0.7886063,0.2033345,-0.45237106,0.2295755,-0.22615026,-0.1904563,0.2668617,-0.020772243,0.18283671,-0.31998792,-0.37144792,-0.38828275,0.57571095,0.25787103,0.29088286,0.7695911,-0.22766834,-0.09405139,0.27834156,0.56721705,1.229881,-0.13878243,-0.19475037,0.12231682,-0.3571314,-0.69772506,0.18216091,-0.45482874,0.022618787,-0.05757971,-0.28964567,-0.2383323,0.27127263,0.13586593,0.20130914,0.16996115,-0.7911538,-0.1283543,0.37500146,-0.16198769,-0.1914155,-0.3323769,0.35772666,0.8574479,-0.4265309,-0.25491938,0.027545908,0.31005684,-0.23272142,-0.7195003,0.019171638,-0.4351615,0.46821868,0.2090881,-0.34617248,0.07180526,0.16313511,-0.53828174,0.13573973,0.37560308,-0.2383412,0.06185895,-0.22762628,-0.23491907,0.95790267,-0.016546436,0.2676696,-0.50424415,-0.69160306,-0.88751453,-0.26677272,0.113429755,0.28324345,-0.04946455,-0.6410191,-0.19470379,-0.12489117,-0.07949984,0.16213019,-0.5880282,0.3850541,0.15059431,0.33161318,-0.09516238,-1.0463408,0.008972434,0.2728203,-0.11294333,-0.4712965,0.5625127,-0.25121763,0.55842245,0.1782363,0.09407863,0.010870756,-0.6443769,0.2689031,-0.33338967,-0.18383965,-0.5742181,0.065526225 -747,0.50942934,0.019318359,-0.60782164,-0.13861862,-0.39507753,0.20063451,-0.15017928,0.28047293,0.3774451,-0.29606673,-0.011223269,-0.18480334,-0.061925102,0.38046682,-0.06193827,-0.74301684,0.023032099,0.20147607,-0.53884953,0.5022748,-0.4156852,0.4610948,0.096184686,0.29819742,0.13624234,0.2703656,0.11331388,-0.02824432,-0.2047539,-0.02856555,-0.15779667,0.108628005,-0.5525368,0.17129186,-0.076057695,-0.37587485,-0.13127846,-0.36209768,-0.37529576,-0.6886646,0.3259905,-0.74152005,0.5664107,-0.14068015,-0.41589567,0.12751041,0.00886499,0.43701044,-0.3369418,0.17715038,0.15189452,-0.2471495,0.022128884,-0.173563,-0.43847057,-0.57426834,-0.5409663,-0.011317642,-0.45319405,-0.16757292,-0.34620297,0.12561303,-0.26191157,0.04461926,-0.22873639,0.35586208,-0.29770973,0.065634295,0.31337327,-0.18392485,0.16144505,-0.34552872,-0.10319487,-0.23508541,0.13755654,0.101584956,-0.24510197,0.29349,0.27451736,0.63909507,0.053875733,-0.3339379,-0.2490503,-0.03666405,0.115020104,0.41758296,-0.111025356,-0.18111448,-0.28693485,-0.02702374,0.167095,0.1994658,0.02709759,-0.36964428,0.13992205,0.17827083,-0.29573923,0.32478532,0.48561656,-0.46791986,-0.1886848,0.40895417,0.5192498,-0.084919356,-0.1225826,0.3443618,-0.04176166,-0.37061974,-0.26968125,0.19168667,-0.14962712,0.4886829,-0.19498882,0.060623836,0.73306304,-0.0758628,-0.23935951,-0.17257224,0.059815347,-0.22024496,-0.3439429,-0.13902995,0.12950438,-0.502618,0.0321122,-0.25418496,0.7437756,0.24648456,-0.67114794,0.37458456,-0.51724344,0.26355907,-0.025572412,0.52229565,0.9026495,0.4627097,0.1776857,0.90527725,-0.64296776,0.1398048,-0.05485792,-0.42090517,0.1410344,-0.1797563,0.14689957,-0.5038253,0.13497636,0.016341472,-0.3088098,0.04425727,0.30842793,-0.42644033,-0.07609275,0.0019986948,0.789277,-0.370542,-0.122118436,0.8728853,0.9244639,1.0396502,0.05178315,1.248894,0.54638135,-0.21830413,0.1701656,-0.4270534,-0.56685674,0.10227684,0.30577025,-0.08458988,0.44572893,0.06799653,0.19682151,0.39403647,-0.3835163,0.10333236,-0.083610535,0.19985695,0.033996064,-0.09742338,-0.41187188,-0.25318676,0.042377345,0.115815714,0.09660866,0.39205292,-0.20739564,0.53605485,0.1271966,1.5749379,0.068869196,0.01969883,0.016012844,0.39435512,0.27743056,-0.24825653,-0.10733568,0.20932594,0.3166166,-0.013646251,-0.4725344,-0.054696035,-0.29870144,-0.34379753,-0.07186334,-0.288731,-0.06653572,-0.10882006,-0.37774274,-0.28705186,0.019620111,-0.24807829,0.50533384,-2.3210871,-0.17250396,-0.07742832,0.27644908,-0.21744142,-0.40466934,-0.18179628,-0.5790473,0.15419897,0.37384102,0.29547605,-0.70778155,0.47624967,0.34447682,-0.38507134,-0.049430236,-0.67665786,-0.026031367,-0.10012261,0.33867964,-0.028979294,-0.07178678,-0.19480225,0.26235357,0.61625606,0.112135366,-0.031229505,0.37132752,0.4275286,-0.06937406,0.5489283,0.21576554,0.62173617,-0.2809167,-0.10513889,0.45402202,-0.40391147,0.25838894,0.11973767,0.031284284,0.4114718,-0.52809936,-0.6748769,-0.7049819,-0.27792987,1.2268369,-0.3402192,-0.33228275,0.254288,-0.2908184,-0.29204115,-0.024129288,0.43506086,0.0409269,-0.11760219,-0.6912263,-0.07722089,0.058061805,0.12957893,-0.11867604,0.08036855,-0.20247647,0.6854688,-0.22742373,0.45242193,0.29764605,0.09780086,-0.028735256,-0.42684773,0.08125946,0.9698861,0.42206678,0.18659626,-0.23561566,-0.21751787,-0.31184295,-0.23546258,0.2089334,0.41297093,0.6651178,-0.12697114,0.01589846,0.44190896,-0.22522265,-0.015675366,-0.10370956,-0.2731993,0.010596251,0.023544231,0.5736525,0.63511026,-0.14671794,0.40305603,-0.19878162,0.16095063,-0.24452491,-0.57230383,0.5604127,0.94557154,-0.25769493,-0.2745009,0.448176,0.20477314,-0.36512554,0.4192295,-0.56875175,-0.21398497,0.5299843,0.01612429,-0.36978108,0.1956489,-0.32772896,0.03398065,-0.8941747,0.2787821,0.061586317,-0.6114111,-0.5001264,-0.15900135,-3.6136487,0.18815206,-0.042724952,-0.0019622266,0.010434775,-0.12321673,0.2355283,-0.38855103,-0.68300074,-0.018610211,0.007324028,0.56198335,-0.039849766,0.15568408,-0.2742,-0.24066572,-0.3993421,0.21394838,0.17230281,0.3288993,0.0070054135,-0.429383,0.00075695117,-0.38544872,-0.589776,-0.00032924017,-0.7077743,-0.5458822,-0.220865,-0.45132935,-0.3156839,0.7323963,-0.38404387,0.14805055,-0.27587265,-0.09963843,-0.2396272,0.22490744,0.16670308,0.064475276,0.14777066,-0.007311756,-0.17550482,-0.34356126,0.16593818,0.022775432,0.4875724,0.2777451,-0.13780193,0.19190677,0.59759617,0.75134903,0.058319356,0.69672054,0.35226756,-0.11296875,0.31207123,-0.28410447,-0.24588074,-0.62346214,-0.36052254,-0.31193054,-0.4903358,-0.4022296,-0.070881516,-0.39488515,-0.8189895,0.28107616,0.056202404,0.17999537,0.030915765,0.22921322,0.46015242,-0.2004056,0.0017198682,-0.102697365,-0.37194046,-0.5746613,-0.40928304,-0.49437886,-0.5408037,0.42540413,1.0863273,0.03085851,-0.038447015,-0.00048220655,-0.4785117,0.08851256,0.13639013,0.22725388,0.13675962,0.48397082,-0.27058476,-0.68674386,0.24013215,-0.14352593,0.019412171,-0.61528766,0.14208494,0.71316916,-0.58285546,0.6315175,0.19577383,0.17056863,-0.041946776,-0.42504272,-0.34861448,0.031896606,-0.25399834,0.522164,0.1721099,-0.6314701,0.39939174,0.23820281,-0.095834136,-0.55167335,0.36878997,-0.051155075,0.019691626,0.10123428,0.3060112,0.030402204,-0.113299295,-0.07291579,0.24316998,-0.57715726,0.20147318,0.4196719,0.044138543,0.16714954,-0.01655526,-0.25221345,-0.6481376,-0.14165415,-0.5163103,-0.27977544,0.015268834,0.15284637,0.0076061566,0.03848261,0.1341868,0.37414584,-0.09224656,0.11889498,-0.10748145,-0.2509351,0.5489315,0.44559005,0.3660694,-0.53718513,0.601342,0.059776854,0.066703714,-0.15017205,-0.021982232,0.45091045,0.26920682,0.32741058,0.18417826,-0.1910144,0.15428044,0.6201337,0.29927343,0.38193512,0.23560819,-0.21152133,0.34019825,0.23981364,0.1434451,-0.01965495,-0.328271,-0.059782267,-0.109286174,0.14380004,0.3726254,0.12178716,0.31821892,-0.1226263,-0.23958911,0.14950228,-0.041222513,-0.25025284,-1.4397664,0.24388427,0.3203129,0.65832484,0.46013227,-0.10494322,0.03492171,0.56000316,-0.3284746,0.08424017,0.4090571,-0.06477172,-0.4306895,0.49790102,-0.663015,0.44233054,-0.0661448,-0.007817407,0.07646527,0.3094922,0.32962385,0.8685526,-0.21755193,0.07792469,-0.1850263,-0.25875747,0.10039644,-0.30895722,0.056342993,-0.57621354,-0.38645205,0.58991724,0.3079418,0.33632526,-0.35554722,-0.0820992,0.036786664,-0.11285928,0.10147167,-0.021080494,-0.08945248,-0.14221528,-0.6164599,-0.44014516,0.5134559,-0.16760688,0.03246956,0.11616753,-0.372068,0.2898114,-0.20173383,-0.097599074,-0.0020671934,-0.70177674,-0.19659296,-0.27370042,-0.4044675,0.3818448,-0.25388873,0.27597693,0.13158785,0.035623133,-0.3935364,0.16386694,0.057413872,0.7221932,-0.021085612,-0.25058585,-0.31045097,0.15806088,0.20713122,-0.4052028,0.05624255,-0.15693349,0.07440771,-0.65775406,0.3539608,-0.0432816,-0.3120285,0.027002892,-0.052173078,0.045130346,0.45269424,-0.2960517,-0.15276274,0.09516153,0.042511966,-0.19397528,-0.13364868,-0.34077957,0.31370443,-0.09657957,-0.065964006,0.069692366,-0.10682387,0.010927987,0.34232166,-0.004165383,0.09913446,0.2945394,-0.010307642,-0.39206448,-0.024056189,0.061174612,0.2916036,0.2351958,-0.13241196,-0.1047801,-0.1949726,-0.3165359,0.24206585,-0.1628597,0.31224483,0.09535091,-0.45613036,0.8100924,0.11585858,1.3086625,0.017763274,-0.32138336,0.03231069,0.47643098,0.08389228,0.1331608,-0.19690171,0.7826628,0.657568,-0.23577406,-0.20209758,-0.39158276,-0.22184435,0.23239133,-0.16681805,-0.246995,0.0154219065,-0.8264958,-0.16199212,0.15846008,0.16290864,0.33297673,-0.012096719,0.061653692,0.09926822,0.02601579,0.46038514,-0.22027531,-0.19957542,0.40827465,0.20280984,0.0995818,0.15665501,-0.40859988,0.34877446,-0.6931865,0.1826952,-0.3159423,0.18348558,-0.054644544,-0.30835086,0.23087174,0.08693171,0.2753971,-0.36002007,-0.41200265,-0.259889,0.75666326,0.19292322,0.24955407,0.8088554,-0.269251,-0.23434213,0.18936986,0.38415784,1.1002922,0.08694601,0.06395148,0.44569412,-0.30660743,-0.6219019,0.3311072,-0.24078368,0.1747321,0.048283003,-0.35432383,-0.39144248,0.27303237,0.04968775,-0.061619498,0.20457621,-0.45026055,-0.1708781,0.34943163,-0.3323607,-0.17559499,-0.36454925,0.27425385,0.66368616,-0.35808957,-0.39594182,0.12319983,0.28155136,-0.36569986,-0.43607277,-0.03197382,-0.24558067,0.32511434,0.18722096,-0.36554986,0.054690283,0.27389267,-0.42333615,0.07387734,0.2245428,-0.46666875,0.14529726,-0.29721984,-0.18691012,1.0790098,0.051973905,0.23490156,-0.66126955,-0.5067619,-0.9616811,-0.41123953,0.2722245,0.08573437,-0.06979283,-0.55330443,-0.15576045,0.050463866,-0.081641294,0.11707776,-0.52131116,0.450232,0.22464861,0.30777687,-0.040752485,-0.96167904,-0.015019466,0.16692415,-0.100310616,-0.61635596,0.60632384,-0.10780772,0.8232952,0.09163979,0.15241699,0.17956857,-0.53750414,0.3005017,-0.24301721,-0.1432392,-0.6151408,-0.006869042 -748,0.4712224,-0.11027461,-0.7904708,-0.3885621,-0.6198593,0.17914236,-0.3270732,0.47385246,0.15292756,-0.7315499,-0.14839938,-0.3366181,0.045405347,0.6036334,-0.32326582,-0.42172417,0.09292362,-0.16738226,-0.9550249,0.37069568,-0.7330084,0.53629625,0.4488655,0.32648054,0.47265977,0.05569647,0.057495452,-0.18517998,-0.0890311,-0.038737297,-0.23656118,-0.0016095638,-0.6999468,-0.29565865,-0.17729993,-0.6280259,0.14986135,-0.63689625,-0.1557996,-0.7726556,0.23387913,-1.1546333,0.8530513,-0.097815186,-0.19395149,-0.05886078,-0.0020861328,0.19794771,-0.041940082,0.47205728,0.18766208,-0.1318395,0.056333385,0.028366983,-0.010890472,-0.7066138,-0.8028485,0.012922463,-0.85375345,-0.31034622,-0.10667713,0.14923479,-0.46124023,0.3477581,0.1538352,0.25021917,-0.63175976,0.05840359,-0.20030804,0.18233614,0.5894296,-0.31539762,-0.09194182,-0.026216973,0.27462646,-0.4377615,-0.23000231,0.1696795,0.51566344,0.4875391,-0.23943253,-0.3407641,-0.11829649,0.033662558,-0.28626147,0.94329774,-0.072937176,-0.49573216,-0.2020565,-0.18334278,0.6997946,0.6274014,-0.0997325,-0.5681164,-0.14842686,-0.061698835,-0.6070614,0.67366993,0.44541407,-0.67183876,-0.43729657,0.49671012,0.25097427,0.56347066,0.036792327,0.28655574,0.12391454,-0.72615176,-0.2870001,0.22232619,-0.06043,0.5596601,0.057324905,0.5659261,0.77160585,-0.45204037,0.036246173,0.11662801,-0.2500059,-0.12317332,0.3551527,0.013371998,0.2702447,-0.6929184,-0.07161608,-0.40423498,0.65321857,0.2418025,-0.74142706,0.41865548,-0.81038696,-0.053462632,-0.23037854,0.4685958,0.6971148,0.65393376,0.31197983,0.806742,-0.39755905,0.067869574,-0.26845342,-0.35274798,0.1495868,-0.32364637,-0.0064751627,-0.58465594,0.023095936,-0.037222885,0.03418058,-0.11275333,0.69287455,-0.5200341,-0.13788864,0.23590612,0.77282536,-0.43614346,-0.012362877,0.9505116,1.0386314,0.6013953,-0.0049579083,1.1457794,-0.03997419,-0.07774758,0.13831548,0.0021992684,-0.4390881,0.19712105,0.44771177,-0.5106347,0.72552574,0.10862295,0.109737374,-0.053273596,-0.16853385,0.16514584,0.16271837,0.028214514,0.1489789,-0.20392644,-0.4106678,-0.28439814,-0.06820197,-0.089142,0.038559757,0.30228266,-0.55162656,0.1526516,-0.020706242,1.6756277,0.10018752,0.09075172,-0.22680703,0.5848807,0.13032505,0.016094709,-0.21982236,0.09617726,0.23368172,0.084331915,-0.5045763,0.19491401,-0.091616794,-0.5758158,-0.19001517,-0.49161234,-0.3114614,-0.23893961,-0.51696074,0.13805468,0.05799464,-0.34210345,0.5104195,-2.5459757,-0.68167573,-0.14192715,0.23926874,-0.26244622,-0.27379245,-0.1751079,-0.46010533,0.18776424,0.46462393,0.58812416,-0.9278018,0.53817165,0.5716909,-0.47711197,-0.2925095,-0.7119557,-0.25305068,0.1618237,0.083945215,-0.22879732,-0.41050196,0.012864763,0.37878233,0.6639403,0.010569465,0.28129157,0.19915465,0.7108335,0.26158005,0.8334938,-0.26600808,0.66571987,-0.34094635,-0.12593672,0.32806587,-0.11946623,0.37179774,0.041507952,0.22554156,0.400779,-0.34435457,-1.1391203,-0.8260206,0.07307178,0.7028768,-0.37432528,-0.28624445,0.26096722,0.2924744,-0.050678354,-0.07203759,0.6058908,0.10327947,0.06792673,-0.5494435,0.05582587,0.02665084,0.12641029,0.08479671,0.11873591,-0.18527845,0.48943663,-0.092016295,0.30913574,0.32354522,0.26761407,-0.3670027,-0.32802114,0.47933593,1.2758777,0.4745296,-0.019310366,-0.32195586,-0.23231478,-0.4133029,-0.22441618,0.1447591,0.23077467,0.98045236,0.044199433,0.39314494,0.07788037,0.023238683,0.038922008,-0.3330845,-0.27905065,0.1781054,-0.0014556065,0.45403165,0.6084053,-0.53382605,0.85244197,-0.2809727,0.039536048,-0.20266512,-0.38737363,0.62270653,0.31455165,-0.033360306,-0.04613515,0.6516248,0.20871392,-0.4330439,0.42647964,-0.67188454,-0.38956577,0.845544,-0.009006327,-0.19567263,0.35847273,-0.23432119,0.30316693,-0.9940957,0.29358527,-0.2132067,0.055618048,-0.30311906,0.06971873,-3.7856135,0.24151006,-0.21066031,-0.09779893,-0.24833247,-0.18514359,0.46991935,-0.6609828,-0.9464735,0.008004582,-0.031126317,1.0311137,-0.36361226,0.27134237,-0.124674655,-0.3817366,-0.4386035,0.41980964,-0.15041319,0.30635318,0.24152307,-0.60034525,-0.10695543,-0.24236934,-0.70207256,0.21931931,-0.45077142,-0.74509746,-0.024942387,-0.44177717,-0.3205746,0.83519423,-0.08714412,-0.113099955,-0.00593026,-0.018784206,-0.10226709,0.35578275,0.2754053,-0.26329565,0.06162833,0.0032064677,-0.1261609,-0.30520254,0.60404295,0.0857007,0.3766914,0.28264138,0.12742876,0.17819135,0.5146406,0.60357296,-0.16555437,0.67512643,-0.017289871,0.097082034,0.35417607,-0.48401013,-0.14410657,-0.46072617,-0.27269146,-0.27814406,-0.5739216,-0.72111195,-0.004610306,0.018862117,-0.8323882,0.63657236,0.09577081,0.28853744,-0.22265223,0.6082564,0.4392867,-0.19966087,-0.16439193,-0.21341462,-0.17525145,-0.5947538,-0.28481704,-1.099028,-0.4104572,0.1564423,1.17682,-0.48065013,-0.03844966,-0.4037055,0.09766545,0.22226992,-0.06811832,0.3097055,0.21059434,0.30817342,-0.32430047,-0.8379432,0.3425556,-0.21174781,-0.12943776,-0.4147281,-0.28923255,0.92197114,-0.8486573,0.34805518,0.33861703,0.18445459,-0.028873015,-0.4854649,0.025969302,0.2088633,-0.4739983,0.27391076,-0.065865055,-1.113745,0.49937478,0.37487516,-0.23813455,-0.71291196,0.83018434,0.2719556,-0.27936092,-0.13285881,0.37124914,0.5117923,-0.05484892,-0.5544221,0.34072602,-0.71509135,0.45410147,0.15089762,-0.015006614,0.4583497,-0.040049054,-0.3377332,-0.7723128,0.10463603,-0.46119684,-0.40565085,0.13388002,-0.03807041,0.16771367,0.3053381,0.03387344,0.2724188,-0.75359726,0.14920303,0.22017784,-0.023129862,0.17270373,0.55629295,0.29340407,-0.4307421,0.52347726,-0.1549658,-0.36375389,0.13900939,0.086599015,0.42286772,0.11528318,0.0742103,0.13997468,-0.5317973,0.21679457,0.8494829,0.3031059,0.27547145,0.49137205,0.07153599,0.3056087,0.10676261,-0.04826335,0.14551672,-0.5799188,0.013806403,0.24411516,0.06235032,0.7685657,0.20568562,-0.025242735,-0.06711409,-0.2803267,0.14067152,0.3308196,-0.20060797,-1.079256,0.24998799,0.31675395,0.5948931,0.72106487,0.15430681,-0.17587098,0.2142258,-0.21872051,0.009856677,0.5124004,0.20255375,-0.5923538,0.73841107,-0.64102215,0.50002587,-0.32889324,-0.061842203,0.04926427,-0.18128112,0.32157314,1.0185616,-0.10840689,0.06517645,0.2593624,-0.3177117,-0.14312138,-0.2262835,-0.1949264,-0.4325657,-0.110009864,0.91794217,0.29641438,0.06395538,0.0051311255,0.11457069,0.11871517,-0.13233376,0.18568298,0.27745694,0.29541162,-0.121475436,-0.37065798,-0.047879785,0.83121985,-0.13537632,0.16181548,-0.20598729,-0.3495005,0.09443073,-0.013434654,-0.058409624,0.049782388,-1.0406427,-0.11743889,-0.59345585,-0.62245905,0.43443346,-0.059926283,0.21248296,0.25188702,0.09028232,-0.064632155,0.7260276,0.5535147,0.5307356,-0.07917668,-0.1401291,-0.42192602,0.30756372,0.18215704,-0.4066636,-0.26077506,-0.2573156,0.042098682,-0.6350134,0.79582304,0.0988276,-0.5076126,-0.0071526347,-0.050817955,0.080212764,0.7833603,-0.0460796,-0.030772299,-0.19050616,-0.27158642,-0.13898529,-0.53084147,-0.10956492,0.14621389,0.36392647,-0.24545333,-0.09508073,0.031283118,-0.2584986,0.2850124,0.0505144,0.57187235,0.47425288,0.16498896,-0.1956099,-0.17280145,0.1132376,0.73261344,0.23438148,-0.19602177,-0.44399127,-0.11088711,-0.020854484,0.31721425,-0.1344218,0.24572758,0.23964241,-0.34606072,0.931105,0.10979843,1.3290739,-0.06807333,-0.39391702,0.11065384,0.5837135,-0.20622483,-0.25969392,-0.47892523,1.3812814,0.53430974,-0.15867987,-0.24048123,-0.16803698,-0.53237617,0.3043394,-0.4966627,-0.12681785,0.0721979,-0.6505621,-0.20777707,0.32528955,0.13944843,0.103572205,-0.33335933,0.25582287,0.5198077,0.1516,0.28472644,-0.81503475,-0.48634267,0.39415216,0.51117164,0.10110972,0.38440388,-0.48846188,0.44077927,-0.8116372,0.15512906,-0.83628625,0.16997793,0.1475929,-0.3773801,0.118150964,0.2817519,0.24487555,0.09806403,-0.31361642,-0.019140387,0.49110308,-0.21371889,0.3100264,0.71586865,-0.1885498,0.10759705,-0.47674266,0.5312211,1.6504962,0.14894141,-0.17514057,0.58938754,-0.53629404,-0.61165935,0.5176369,-0.6804935,0.08878063,-0.1021343,-0.34722963,-0.4756276,0.28095496,-0.03216814,-0.05821365,-0.08077922,-0.7563585,-0.34643397,0.5060481,-0.0692983,-0.30722466,-0.2957922,0.30932492,1.1683853,-0.29137334,0.04487429,-0.004379569,0.50460017,-0.28762895,-0.37360346,0.03016882,-0.25300807,0.5378992,-0.0059755505,-0.38624683,-0.037449125,0.2463646,-0.41973576,0.37922502,0.024568558,-0.2841321,0.10320182,-0.12736782,0.18071337,1.3916733,-0.08912399,-0.2806275,-0.41483337,-0.861348,-0.760141,-0.5698905,0.21487837,0.20605603,0.07164795,-0.4644429,-0.055276126,-0.0028006197,-0.49775305,0.029592201,-0.27854294,0.42065293,-0.0166833,0.39872962,-0.02106688,-1.1125646,0.042865492,0.22214799,-0.36567903,-0.7842063,0.76512074,-0.33375055,0.9131552,0.08378379,-0.15611055,-0.08841364,-0.33682665,0.2689403,-0.45650452,-0.0006445527,-0.78331596,0.13911249 -749,0.38324413,-0.0943246,-0.38022134,-0.16777648,-0.11180622,0.08294232,-0.12204112,0.46985492,0.28372028,-0.30265227,-0.18573293,-0.1464964,0.11570813,0.22238724,-0.17703874,-0.63666165,-0.0064048725,0.13470879,-0.42150375,0.71423286,-0.39208323,0.09679023,-0.13756543,0.47258753,0.09281434,0.33969682,0.070653364,-0.1394705,-0.14102092,0.009946482,-0.1264701,0.42549473,-0.4680152,0.08580331,-0.27093968,-0.2830648,0.015991772,-0.35090485,-0.46732074,-0.731928,0.19532466,-0.8469602,0.4093744,0.116765656,-0.24860026,0.36309618,0.0023363573,0.23922193,-0.30872068,-0.14265117,0.012310596,0.08349746,0.069507346,-0.30620417,-0.098281875,-0.34065166,-0.433096,-0.017356357,-0.43082982,-0.020510077,-0.30320072,-0.046385378,-0.3363366,-0.13399853,-0.058890235,0.34913492,-0.50196373,0.12504862,0.2684484,-0.027728887,0.28528157,-0.37948045,-0.20628694,-0.14719117,0.30216494,-0.1296334,-0.23000087,0.27698565,0.31646866,0.38437554,-0.22108567,-0.12188552,-0.23870318,0.0836532,0.11095088,0.40195385,-0.32577166,-0.6678222,-0.074473776,0.10278608,0.19650435,0.15388726,0.08109607,-0.17594115,-0.06475761,0.15993023,-0.23179784,0.3327436,0.49882582,-0.37505946,-0.20375155,0.24417135,0.36665207,0.26918128,-0.25518292,-0.15728939,0.031232689,-0.54693544,-0.13571307,0.106425695,-0.18142127,0.6289028,-0.10648923,0.07231318,0.6065159,-0.07993562,0.03344254,0.21567766,0.112060525,0.0059371763,-0.17491116,-0.28078154,0.22516353,-0.33742803,0.082845196,-0.11791568,0.64971876,0.19681692,-0.6525462,0.36027068,-0.5454547,0.17696178,-0.18887901,0.43508795,0.64633316,0.38760677,0.29389927,0.5554736,-0.29876098,0.011905253,-0.018842507,-0.34874466,0.18078601,-0.22835974,-0.06297599,-0.5573608,-0.014513378,0.14073937,-0.08429081,0.07524507,0.14473377,-0.46168593,-0.18620576,0.21510307,0.74953,-0.23306204,-0.030071935,0.5861378,0.95831627,0.6612366,0.055156495,1.0113878,0.22574738,-0.12513898,0.4453818,-0.16173236,-0.84336287,0.32332304,0.31962267,-0.35541153,0.33774656,0.074651495,-0.135847,0.3882812,-0.36716238,0.06338934,-0.21252666,0.1236502,0.10517567,-0.12824783,-0.33387783,-0.39676404,-0.19547985,-0.01357007,0.069566675,0.32124642,-0.1291997,0.1986281,0.04155239,1.5038763,0.20075312,-0.116916016,0.03329561,0.7276713,0.20747092,-0.06445009,-0.103130564,0.397789,0.30240804,0.1311032,-0.56820387,0.13544203,-0.09609377,-0.42972365,-0.07880945,-0.31334525,-0.04178375,0.13135344,-0.55285406,-0.14175434,-0.1936041,-0.16446312,0.5140229,-2.9016109,-0.12689508,-0.095267974,0.51125324,-0.2657719,-0.22960305,-0.2615631,-0.38332343,0.40651682,0.3178257,0.51504105,-0.73824894,0.35931498,0.3132264,-0.6159735,-0.16902113,-0.4968198,-0.06088858,-0.05809503,0.4422961,-0.012794725,0.11699939,0.30311993,0.16022508,0.4369906,0.024077326,0.11025565,0.08660289,0.44566658,-0.028472241,0.37648782,-0.1063851,0.45551497,-0.32532498,-0.20092109,0.21532936,-0.2772989,0.33083415,-0.043379243,0.05687428,0.40924662,-0.3864772,-0.97150314,-0.6715466,-0.0366409,1.2069212,-0.2757574,-0.41043144,0.10835318,-0.53972155,-0.18683992,-0.15974236,0.39881223,-0.08721425,-0.15233329,-0.80858546,0.012767996,-0.04323405,0.16588116,0.06294727,-0.01827988,-0.26392794,0.6376238,0.018765334,0.45155448,0.31332085,0.119301744,-0.18220647,-0.47563595,0.122430705,0.57819337,0.22082135,0.11923774,-0.1961232,-0.28597707,-0.24821332,0.106076725,0.09613881,0.66196686,0.48451588,-0.17535456,0.15145285,0.30388966,-0.05056899,0.07297941,-0.20378579,-0.3299913,-0.15269697,0.11713784,0.575134,0.7985107,-0.35217997,0.23819688,-0.032011602,0.16398263,-0.1275861,-0.39046767,0.48688433,1.1055847,-0.13614896,-0.16521253,0.44973484,0.706514,-0.33277896,0.35676083,-0.506979,-0.28748065,0.38927287,-0.08123892,-0.30063826,0.24456826,-0.30023345,0.11035264,-0.9286172,0.2566534,-0.4135008,-0.22297923,-0.5184759,0.14381048,-3.40028,0.21729448,-0.332264,-0.21423014,-0.2601984,-0.010261719,0.11479586,-0.6391449,-0.50804466,0.1968552,0.09137279,0.67018765,-0.011208117,0.1568166,-0.3206095,-0.22020207,-0.10994985,-0.022373876,0.21053442,0.39102167,-0.089999035,-0.515616,-0.20104453,-0.11882317,-0.30250493,0.19424589,-0.6083717,-0.39420465,-0.06549034,-0.5503778,-0.23467836,0.4981318,-0.24429032,-0.021887703,-0.14916632,0.03923804,-0.18790789,0.32920733,0.09897793,0.17047834,-0.051770296,0.037122183,0.04455478,-0.24989639,0.37517634,0.051498793,0.39138058,0.25982857,0.032492805,0.1359853,0.5709206,0.41781256,0.089756794,0.83152854,0.5967719,-0.01685905,0.3368079,-0.3339803,-0.13203222,-0.4663996,-0.26943496,-0.20197265,-0.33766446,-0.36489424,0.015287851,-0.42969272,-0.77040154,0.40467215,-0.06962085,0.14265996,0.029073264,0.15700105,0.66565645,-0.24223049,0.053580318,-0.022399444,-0.19624631,-0.6800979,-0.12774898,-0.61073226,-0.2841896,0.16610953,0.7549005,-0.30520853,0.0149076665,-0.065884344,-0.24523316,-0.018622683,0.10211282,-0.023413688,0.17680225,0.5905232,-0.112001166,-0.5804381,0.36375788,-0.051099386,-0.19881427,-0.54430676,0.23440354,0.5482835,-0.70098656,0.76608354,0.4890675,-0.0135002965,-0.097926125,-0.4805849,-0.3093821,-0.15713778,-0.13294291,0.3502867,0.26346043,-0.80667526,0.36004442,0.34049368,-0.2715186,-0.60877216,0.7616635,-0.03260524,-0.4795007,-0.093791425,0.2507907,0.055266697,0.02664795,0.017006008,0.21508013,-0.33960295,0.18181603,0.19389495,-0.076912574,0.27781084,-0.021373646,0.092760764,-0.8071099,0.08347118,-0.4777717,-0.28389475,0.45221096,0.12042736,0.09542362,-0.07229157,0.02460936,0.26258212,-0.28991184,0.04271118,-0.031143904,-0.2668832,0.38242993,0.34402636,0.4750833,-0.37657538,0.5244414,-0.01874793,-0.076644115,0.12312975,0.18437378,0.34173366,0.104539216,0.4232288,0.0006057471,-0.20320094,0.20887746,0.7664514,0.115142636,0.40667614,0.019435454,0.062669344,0.3337655,0.101860575,0.17299557,-0.09391135,-0.40609947,-0.06530256,-0.16319326,0.21286562,0.37426838,0.05756081,0.15115473,-0.08192521,-0.27946553,-0.038947694,0.28266427,0.22846569,-1.2325367,0.3969503,0.2274799,0.6771618,0.39530224,-0.075611725,0.048986137,0.6129819,-0.18778384,0.15421996,0.42190665,-0.1601692,-0.5918229,0.51476043,-0.59964895,0.39872763,0.03180935,-0.028288689,0.008702932,0.012568734,0.28359488,0.71462935,-0.1557361,0.0403024,0.106337406,-0.45070156,0.0626793,-0.3835687,0.074221864,-0.66972923,-0.13048634,0.56407875,0.6849672,0.34369516,-0.24587725,0.025988156,0.10186861,-0.14540815,0.12723807,0.0075363154,0.23182233,-0.0826909,-0.81862915,-0.060187902,0.5333468,-0.17194761,0.10886038,-0.068648525,-0.18550423,0.36401892,-0.1477685,-0.057651114,-0.13353266,-0.6058606,0.014954158,-0.35769922,-0.3527352,0.66816014,-0.13386364,0.25476763,0.27943322,0.028242275,-0.36112732,0.43751827,-0.08982235,0.71517265,-0.18510911,-0.32369247,-0.53960794,-0.02614676,0.19245203,-0.062675945,-0.10331801,-0.37383518,0.016449597,-0.21156894,0.3952333,0.037886858,-0.065974064,-0.19813558,-0.09996276,0.11773981,0.55694187,-0.08746772,-0.25599834,-0.2699336,-0.08601054,-0.46818438,-0.27761155,-0.00034270328,0.29772502,0.34576887,0.031359497,-0.11051936,-0.21109006,-0.10404547,0.48268005,-0.07260086,0.36521783,0.40619022,0.2029283,-0.09643824,-0.1706022,0.33138424,0.41892368,-0.04797175,-0.14917152,-0.4149079,-0.2581536,-0.3621807,-0.0078088813,-0.17263034,0.36001632,0.01201669,-0.095546566,0.77768975,-0.13373733,1.0476319,0.031910677,-0.20505068,0.05133006,0.4778196,-0.041222207,-0.10800914,-0.21618268,0.73418766,0.5663015,0.040086117,-0.097233675,-0.31887498,-0.017425308,0.0099411355,-0.18504943,-0.12976663,0.03351571,-0.55445707,-0.15820554,0.10740765,0.29468915,0.30063328,-0.03553968,0.04446423,0.061435737,0.12203825,0.18126824,-0.37938985,-0.25237036,0.20848174,0.28541765,0.16730501,0.13926183,-0.4273189,0.31091353,-0.34746698,-0.002073305,-0.34879336,0.18112619,-0.13284642,-0.37523815,0.16147368,-0.11804063,0.3174606,-0.30882376,-0.20889053,-0.30778217,0.47281522,0.20068884,-0.005432408,0.4303806,-0.15427919,0.030813744,0.12006494,0.56124574,0.8628555,-0.19786592,-0.17663133,0.32862473,-0.42781836,-0.7320494,0.2774229,-0.2338014,0.37421623,-0.04999963,-0.011424167,-0.7420422,0.28471848,0.16097176,0.13890685,-0.20419434,-0.71618885,-0.278655,0.1575084,-0.31375057,-0.23030852,-0.4132249,0.09796398,0.5589443,-0.22574744,-0.19912873,0.039391104,0.11601054,-0.10419222,-0.34019282,0.055293806,-0.45435047,0.12723014,0.109588556,-0.43034118,-0.08018936,0.14529303,-0.33013555,0.3310335,0.26294306,-0.31433874,0.07919031,-0.29438546,0.016167233,0.9808303,-0.28121263,0.277452,-0.4209464,-0.47333905,-0.6837734,-0.39654583,0.4838328,0.041296285,0.030509302,-0.5992278,0.108740725,0.21723308,-0.3453819,-0.24020414,-0.28774303,0.44393602,0.0037327004,0.25593302,-0.02928871,-0.67373675,0.14536807,0.0058752126,-0.13837445,-0.5960617,0.44296533,-0.085319094,1.0678629,0.053519327,0.14718615,0.35837302,-0.33300373,-0.3143862,-0.12408153,-0.20345464,-0.52354205,0.0047166687 -750,0.36258447,-0.11464862,-0.5024982,-0.04190451,-0.099017024,0.22180404,-0.21615565,0.22785242,0.21422726,-0.3614136,0.047709353,-0.1280095,0.063796274,0.3340906,-0.14689216,-0.49082664,-0.10332355,0.20956515,-0.5028967,0.29337567,-0.53293765,0.3466461,-0.19309883,0.19673999,-0.118144765,0.22287774,0.2212692,-0.17353337,-0.19661468,-0.141526,0.053495824,0.27075237,-0.35501856,0.13846585,0.007794981,-0.21830168,0.044457477,-0.36708027,-0.40418985,-0.58642733,0.3662802,-0.6858058,0.4783616,0.02478015,-0.21396323,0.32787812,0.1742586,0.25408468,-0.25596148,0.04205592,0.12692747,-0.2650125,-0.13807562,-0.27458537,-0.15305176,-0.25683942,-0.49126416,0.031693824,-0.4573927,-0.18707737,-0.28452685,0.13283554,-0.34718612,0.12371183,-0.21940742,0.42909533,-0.3499167,-0.04489816,0.23271868,-0.18455438,0.2064264,-0.43729308,-0.04412358,0.0146089755,0.16785097,-0.15188342,-0.058462456,0.2733236,0.043856025,0.4155084,-0.10485272,-0.16808303,-0.36019188,-0.18836293,0.21102688,0.5389224,-0.17711516,-0.46795455,-0.16009167,-0.030930206,-0.0034930836,0.09848653,-0.11007081,-0.22270155,-0.034714166,0.13301848,-0.25612986,0.28445846,0.5677743,-0.23381825,-0.13085568,0.42136562,0.54479384,-0.027430639,-0.030593675,0.020622998,0.06983255,-0.49276596,-0.1792372,0.044207282,-0.12164806,0.47086048,-0.13365895,0.26617694,0.56682426,-0.25184825,-0.07481022,-0.047209986,0.07754127,-0.07210282,-0.23349264,-0.155909,0.19522056,-0.48438144,0.039744873,-0.0956745,0.80815613,0.097847104,-0.6527358,0.42271203,-0.5017703,0.11647101,-0.025706835,0.5865934,0.5403841,0.4284451,0.24402204,0.7797773,-0.5569497,0.022491898,-0.2279123,-0.5188371,0.13185392,-0.06997572,-0.014731139,-0.38314107,0.0695779,0.20727761,-0.08070971,0.047780953,0.3799745,-0.39223632,0.013160117,0.0815521,0.708735,-0.37358713,-0.020405848,0.56566775,1.1060317,0.8747457,0.051434133,1.1727968,0.19155174,-0.27808398,-0.017633624,-0.25563836,-0.79099643,0.2418029,0.27982482,-0.24899387,0.2667447,0.1339825,-0.06296151,0.4304887,-0.46734333,-0.064362384,-0.0663043,0.3310695,0.025993086,-0.010983184,-0.42809322,-0.2270722,0.14955205,-0.08064841,0.3078837,0.30296624,-0.3044169,0.32554388,0.014998062,1.4628258,-0.04092304,0.26450202,0.16849187,0.29045054,0.07398987,-0.048705865,-0.14945026,0.28662133,0.3416103,0.23793685,-0.52362025,0.07027573,-0.15962943,-0.5215588,-0.11609167,-0.23485407,0.07310052,-0.1292015,-0.3989291,-0.06771161,-0.09160374,-0.41939163,0.42820692,-2.8553782,-0.07929464,-0.09380491,0.18158591,-0.2975747,-0.2694133,-0.081645265,-0.45272368,0.3001485,0.35792768,0.3606742,-0.59222656,0.35123682,0.3242905,-0.4047491,-0.11643581,-0.5421474,-0.04021212,-0.14700145,0.33835799,0.087818086,-0.18525478,-0.09501085,0.1796569,0.38299733,-0.25265062,0.07627121,0.29006165,0.30853012,0.10333177,0.3797135,-0.028556813,0.49033934,-0.41595256,-0.21944527,0.35983393,-0.45602274,0.13638338,-0.059043128,0.118081585,0.2699354,-0.3299283,-0.80601007,-0.4729015,-0.18427166,1.3443655,-0.36933312,-0.32305932,0.23040336,-0.21521927,-0.3628033,0.018261783,0.3125431,-0.21838364,-0.04465523,-0.80649525,0.20608896,-0.13169886,0.33834592,-0.0008546561,0.105451286,-0.42037684,0.55775857,-0.08822672,0.5972513,0.35374624,0.1613212,-0.37984744,-0.37180638,0.032675594,1.0296865,0.29963908,0.21843986,-0.1437583,-0.19352493,-0.19420089,-0.15235054,0.13923626,0.52361125,0.6923109,0.005411636,0.11092953,0.2898079,-0.06660865,0.013341678,-0.0475368,-0.18994881,0.0105933435,-0.06982234,0.58226186,0.4589858,-0.17624871,0.33696055,-0.016531656,0.3163629,-0.33918488,-0.36205608,0.4065383,0.81051385,-0.12418695,-0.28126442,0.6062896,0.62071824,-0.21554443,0.40727857,-0.5839012,-0.41968584,0.38008392,-0.3289147,-0.3526399,0.31706944,-0.23855552,0.095210895,-0.8620663,0.21435626,-0.21705341,-0.59351116,-0.60219926,-0.2343935,-3.8691654,0.10483592,-0.20768997,-0.225285,0.009221531,-0.023289923,0.23331046,-0.51332253,-0.49721274,0.05293488,0.1326924,0.56977904,0.0021073706,0.069747895,-0.23197383,-0.11185953,-0.20763099,0.09686608,0.17711547,0.20892903,0.06923705,-0.4665324,-0.048924588,-0.18584852,-0.41320294,0.06606531,-0.49822804,-0.34927064,-0.17268701,-0.4686708,-0.35045892,0.60119355,-0.39643395,0.08847548,-0.27131286,-0.018447544,-0.04792878,0.37114513,0.023842797,0.1478831,0.09701282,-0.16012739,0.027429044,-0.30087322,0.43986163,0.017794348,0.31552836,0.47964332,-0.22443484,-0.024379358,0.48843104,0.611042,-0.029234253,0.81626326,0.40761322,-0.15702857,0.33696055,-0.29885384,-0.13085939,-0.46687016,-0.3736835,0.05831581,-0.43127528,-0.3660932,-0.23326427,-0.30401248,-0.7069802,0.5652013,-0.0025435463,0.061172105,-0.09150137,0.29494956,0.33347416,-0.16502932,-0.10480157,-0.07718566,-0.1421934,-0.3193241,-0.25728816,-0.64537394,-0.3477597,-0.023686051,0.9672823,-0.077635005,0.03546987,0.040192135,-0.123904936,-0.059912227,0.044606,0.24411961,0.34350184,0.33299297,-0.018676933,-0.5744221,0.40609065,-0.30824065,-0.15777296,-0.5637599,0.05122842,0.6196518,-0.6014483,0.5198861,0.4900849,0.20099224,-0.09274689,-0.52552384,-0.17519939,0.1343238,-0.20786974,0.5096478,0.3056058,-0.82443833,0.5290935,0.41811597,-0.3628178,-0.67683965,0.44012323,0.012534592,-0.20665386,-0.019014973,0.42262256,0.0035012513,0.052898034,-0.21208993,0.14570649,-0.4200118,0.30107972,0.17681508,-0.02694943,0.4935886,-0.28519952,-0.032625377,-0.59309363,-0.11187727,-0.42338684,-0.20549852,0.000291273,-0.022846285,-0.016720504,0.20670925,-0.19872895,0.39642805,-0.36217052,0.020236155,0.029042557,-0.22446704,0.41593122,0.4013825,0.344132,-0.34028125,0.6370628,0.010100308,0.014067357,-0.25256005,-0.06622734,0.50775695,-0.009291876,0.4340055,-0.028400542,-0.095131874,0.46535003,0.7618692,0.17980444,0.41162902,0.18082954,-0.20402247,0.116810784,0.076679125,0.0639397,0.17469001,-0.41545752,-0.08516353,-0.20670253,0.22722022,0.43602908,0.17011482,0.58919203,-0.12057815,-0.30530113,0.07735092,0.1826347,-0.22410615,-1.1768008,0.4412809,0.14113836,0.6629701,0.40485808,0.10702508,0.1901334,0.5402955,-0.3004852,0.1338978,0.28543395,-0.06915792,-0.45558053,0.5493067,-0.729393,0.41179994,-0.060923945,0.017221928,0.06509212,-0.029651731,0.45323598,0.6970856,-0.00834734,0.15511869,0.005682148,-0.28418976,0.18708733,-0.24202615,0.17923605,-0.5295847,-0.17357105,0.5828157,0.35602304,0.42303643,-0.16317205,-0.1085751,0.16879725,-0.07432316,0.14869824,-0.00061010197,0.12596376,-0.074330755,-0.67222226,-0.37268102,0.5256017,0.25730956,0.13448738,-0.0594409,-0.13865748,0.2614243,-0.19149972,-0.13361621,-0.032381274,-0.39641583,0.015848873,-0.20209625,-0.45142692,0.2920051,-0.27070612,0.31792772,0.16805974,0.086452454,-0.5026787,0.20993112,0.17978086,0.77198446,-0.00441825,-0.21231861,-0.25725833,0.12633786,0.28157502,-0.09649895,-0.1418293,-0.4004107,0.07621914,-0.57267433,0.3912992,-0.22646247,-0.37473792,0.20885259,-0.2175886,0.029156143,0.57152694,-0.19898568,-0.21821116,0.039117184,-0.119739205,-0.24922685,-0.28755245,-0.26712173,0.16816474,0.100970075,-0.027746372,-0.025345653,-0.057205975,-0.15796094,0.3591733,0.0058539524,0.16069664,0.3965206,0.19477034,-0.30379865,-0.08881931,0.011846807,0.49560228,-0.008992932,-0.11929109,-0.4000967,-0.4463379,-0.28615656,0.1352242,-0.12916432,0.22387023,0.13500759,-0.308556,0.64851177,-0.035641607,0.9601319,0.09695819,-0.30827975,0.017587304,0.5002872,0.09514587,0.036577065,-0.33164927,0.94079244,0.5603367,-0.110426426,-0.21244165,-0.4166749,0.049838997,0.07857554,-0.22435978,-0.32423365,-0.0430489,-0.6323348,-0.2221707,0.29803374,0.34715793,0.10634862,-0.04811766,-0.017063107,0.18799147,0.11513614,0.29834804,-0.4333071,0.044426084,0.46240565,0.27539825,0.043920875,0.16205692,-0.41493073,0.36830646,-0.5933588,0.09233597,-0.1671164,0.10779722,-0.13934487,-0.24820429,0.27766627,0.069769494,0.27830023,-0.31877095,-0.28112912,-0.0038851053,0.39625537,0.08550016,0.08625763,0.7159241,-0.13361719,0.02121607,0.08727352,0.52823615,0.97911745,-0.30343264,0.08495772,0.3563731,-0.23835905,-0.7148569,0.17614749,-0.22471175,0.11104971,-0.11463264,-0.30798274,-0.4900782,0.34892803,0.16334742,0.016428363,0.07233192,-0.35438958,-0.16616152,0.35618132,-0.2801862,-0.30178294,-0.26134187,0.11241,0.5159351,-0.24214119,-0.320136,0.1005635,0.3911119,-0.28464645,-0.49645764,-0.1091029,-0.32335222,0.26157802,0.13169391,-0.1837214,-0.054146014,0.042131055,-0.4206738,0.24262258,0.22809726,-0.31470945,0.03151896,-0.21258692,-0.048515268,0.6733775,-0.23423654,0.1742864,-0.6486812,-0.47907424,-0.9681382,-0.2571109,0.46752685,0.027610932,-0.002342131,-0.5229809,-0.037014425,0.007796295,-0.19434972,-0.09171801,-0.51243246,0.34238502,0.118766464,0.32294077,-0.12267835,-0.6166117,-0.043100722,0.108436495,-0.28221962,-0.42943197,0.6335532,-0.11220798,0.68141687,0.018276436,0.19204685,0.45822123,-0.5227153,0.1216844,-0.19554973,-0.15238982,-0.6959627,0.07442662 -751,0.60195154,-0.098461814,-0.6120564,-0.15019117,-0.19651511,0.0903313,-0.08543165,0.6298993,0.39579803,-0.40574753,-0.14859405,-0.14194955,0.08136304,0.053311888,-0.1627207,-0.59347045,0.07315384,0.26426938,-0.6082197,0.69891983,-0.29613978,0.34810355,-0.06607047,0.41855258,0.339666,0.2433316,-0.24677137,0.09360222,-0.3132186,-0.071511015,0.054936226,0.36138168,-0.51888084,0.06482893,-0.28406513,-0.19663492,-0.23667988,-0.43281043,-0.50438267,-0.82712704,0.16339518,-0.9763572,0.73093855,0.07165704,-0.33006254,0.03935896,0.30192003,0.18642198,-0.16392651,-0.03947017,0.15476848,-0.014446231,-0.102723725,-0.1583258,-0.31956023,-0.42833444,-0.52796555,0.07209025,-0.45644778,0.10627156,-0.19767848,0.23878813,-0.3662682,-0.13654655,-0.09477878,0.6905422,-0.2907116,0.314935,0.15252236,-0.04176466,0.29555702,-0.7032708,-0.3097647,-0.18223074,0.2140091,-0.17651765,-0.39288315,0.17254393,0.3885948,0.40302035,-0.012725282,-0.22338639,-0.2801738,0.10239796,0.051753584,0.33158973,-0.06936496,-0.44957477,-0.09838092,0.05395109,0.23134072,0.22635719,0.38860956,-0.31267947,-0.14592817,-0.17821842,-0.18253991,0.5215189,0.40477335,-0.18781868,-0.12831722,0.24848604,0.48520666,0.26047367,-0.16543058,0.16199687,0.002607318,-0.5881754,-0.03689353,0.19347245,-0.121538654,0.6217848,-0.23659192,0.019707501,0.6118623,-0.2718628,-0.2916971,0.416323,0.32168242,0.06891374,-0.35779402,-0.1802327,0.15581575,-0.45533335,0.043632645,-0.25424707,0.6595411,0.09130415,-0.6656174,0.059585653,-0.57828516,0.060309168,-0.07676225,0.47298628,0.77081954,0.42346463,0.17090115,0.63803416,-0.18025371,0.004045583,0.062909655,-0.25430068,-0.010574921,-0.25017542,0.10190383,-0.54688334,-0.07572006,-0.13097864,-0.27707317,0.1731108,0.56222194,-0.54558504,-0.33594972,0.13406779,0.76529634,-0.25748238,-0.29643345,0.89996433,0.95919514,0.839757,0.084355906,1.3466626,0.13804437,-0.20381814,0.15169755,-0.25036228,-0.77509433,0.39478207,0.03199172,-0.7635014,0.32152322,0.031336095,-0.124029726,0.19079755,-0.41164085,0.062508255,-0.23566273,0.33300176,-0.013221392,-0.16187403,-0.3803476,-0.38390192,-0.22159488,0.025871754,0.38570172,0.10355561,-0.2612348,0.4134895,0.04881082,1.3705714,-0.19019166,-0.14852327,-0.01867084,0.27543986,0.23292817,-0.25975662,-0.23004714,0.50520444,0.33278996,0.12589954,-0.52689993,0.13068733,-0.15718721,-0.26776853,-0.30115426,-0.3762849,0.00344027,-0.027502056,-0.4916008,-0.1895139,-0.27722237,-0.47716856,0.41954154,-2.5570345,-0.30701086,-0.09662156,0.43958429,-0.13905248,-0.38593322,-0.34917626,-0.4889723,0.25502986,0.1337387,0.48571098,-0.66141987,0.41549212,0.32268244,-0.60193324,-0.17308429,-0.7065982,-0.25835449,0.046141505,0.1360365,0.0026004757,0.09671196,0.055140093,0.10757889,0.39330605,-0.06333757,0.15012778,0.4566031,0.4529267,0.005873277,0.4322826,0.02313948,0.6915605,-0.17093737,-0.34034476,0.38946578,-0.40731966,0.26314318,0.093082935,-0.02314694,0.59257674,-0.42579067,-0.90804327,-0.63964945,0.01648442,1.1174928,-0.16262731,-0.33537653,0.17826721,-0.528892,-0.25981066,0.0962938,0.5537112,-0.1739267,-0.031009654,-0.933169,-0.16687177,0.008267084,0.27651635,-0.13669246,-0.0265405,-0.39672068,0.63463676,-0.07974381,0.44042698,0.30358908,0.2550099,-0.4312991,-0.59891355,0.052849844,1.1306858,0.34044626,0.12858365,-0.3911049,-0.17506878,-0.5855316,0.09888926,0.08696756,0.6887582,0.4536889,-0.11443727,0.26461273,0.27145115,-0.05363483,0.21552055,-0.07398576,-0.39225972,-0.29241878,0.15851921,0.50145185,0.64986163,-0.2942611,0.71923214,-0.20980476,0.33244604,-0.15273608,-0.5444186,0.5857505,1.2749915,-0.16150711,-0.42106077,0.73687863,0.39076313,-0.36485973,0.50684,-0.38439548,-0.36375916,0.35758626,-0.1190373,-0.26219872,0.39747843,-0.3591081,0.11049245,-1.1020317,0.25021788,-0.32135823,-0.52852,-0.51473355,0.030571938,-1.7343243,0.2051643,-0.1607283,-0.21724626,-0.19507502,-0.32594264,0.00036257965,-0.50781673,-0.6508923,0.12712668,0.13777983,0.60856664,-0.16828209,0.076445036,-0.051973086,-0.32613203,-0.17464899,0.13609932,0.26922953,0.42679685,-0.17564188,-0.39226356,-0.09404201,-0.12219989,-0.31679285,0.074031696,-0.7965785,-0.6127182,0.010644367,-0.7801391,-0.25090396,0.70344883,-0.2784128,-0.13387826,-0.21040395,0.078202836,0.24337228,0.31979626,-0.038764134,0.17780413,0.10498241,-0.1290938,0.034288432,-0.14077021,0.23075484,0.08435951,0.2751301,0.36083725,-0.073454194,0.4042174,0.45725563,0.67318225,-0.25413164,0.8577209,0.52708477,-0.053153,0.25277174,-0.14799634,-0.30492243,-0.45219502,-0.15286674,-0.1360101,-0.5785637,-0.31793576,-0.033366363,-0.37383208,-0.9351953,0.56508785,-0.10229667,0.05349825,-0.039242327,0.3360265,0.5501854,-0.0075288233,0.06996377,-0.17523599,-0.30234596,-0.50955427,-0.37636593,-0.48441586,-0.3878341,0.019414742,1.2161472,-0.35604388,0.18372495,0.07725851,-0.3581769,-0.0033535718,0.27556258,-0.100309245,0.09143608,0.7212241,-0.20669511,-0.4525646,0.19662215,-0.23251057,-0.14932677,-0.5300864,0.2631163,0.61905926,-0.59137905,0.76767695,0.25238025,0.0077673243,-0.33461383,-0.55716145,-0.17040612,0.070924565,-0.1509318,0.49095,0.34053606,-0.5589936,0.37155765,0.12619576,-0.21585158,-0.651529,0.5280503,-0.0947167,-0.29922712,-0.14348921,0.44990233,0.004338063,0.058582857,-0.27179083,0.22790667,-0.24250695,0.20840296,0.18345875,-0.21424752,0.08916409,-0.1959615,-0.08246316,-0.7819437,0.12990215,-0.44021225,-0.382427,0.20220569,0.17754142,0.09983303,0.23714049,0.21941134,0.280625,-0.42116892,0.015786223,-0.16265392,-0.24792764,0.21792112,0.29029095,0.5323837,-0.54665244,0.4867788,0.0062101106,-0.1996466,0.07471523,0.2855151,0.5377282,0.0135349315,0.29220825,0.25180715,-0.03764566,0.2577647,0.681141,0.023765666,0.3687093,0.064881906,0.013279887,0.04591888,-0.005243274,0.37596056,-0.14342152,-0.5159204,-0.05396619,-0.19478266,0.28531,0.45055503,0.17241003,0.3204912,0.0024522864,-0.6192697,-0.032319333,0.20381874,0.11225692,-1.5698981,0.24375758,0.2582724,0.9317666,0.34497026,-0.041859034,0.014604227,0.57498175,-0.14907722,0.096828304,0.29737514,-0.066340774,-0.4238493,0.47965607,-0.6974958,0.46184736,-0.07399085,0.0012265283,0.010212839,-0.0014234093,0.49167788,1.0066106,-0.20002726,0.04717431,0.12872921,-0.2729465,0.03319116,-0.46991268,0.15590352,-0.6298057,-0.18209933,0.71218777,0.57349575,0.24509643,-0.34476364,0.09177932,0.1609582,-0.19396909,0.16651258,0.081979044,0.094129674,-0.06662666,-0.7168135,-0.031102937,0.54724914,0.004195938,0.10178215,0.14747886,-0.024487926,0.21851614,-0.1091061,0.096721224,-0.17649935,-0.8202268,-0.25487202,-0.3962348,-0.39113334,0.36793363,-0.30142796,0.12185477,0.31042397,0.07216886,-0.26002762,0.6070314,0.28298458,0.8738794,-0.03301946,-0.058884904,-0.43903255,0.3632256,0.20583905,-0.12801994,-0.076677255,-0.2511458,0.16178626,-0.5720791,0.47320816,-0.08421198,-0.41779214,-0.15157345,-0.021522505,0.046021644,0.50902927,-0.19160435,-0.03521978,0.049771056,-0.22144222,-0.39910752,0.025603918,0.011064843,0.24829382,0.5059617,-0.3175948,-0.23388639,-0.07796569,-0.09675571,0.18418129,0.087662354,0.6071731,0.48750627,0.26227632,-0.20641604,-0.0037916256,0.4877912,0.685586,-0.090702586,-0.11115429,-0.3073034,-0.13792303,-0.35689545,0.3371042,-0.079186454,0.27453315,0.13119338,-0.16070963,0.8950028,0.20997474,1.3452672,-0.013127131,-0.46344388,0.11652761,0.46536165,-0.025196223,-0.07911352,-0.342656,1.0395982,0.42363212,-0.014196066,-0.14074956,-0.496908,0.01811292,0.041813593,-0.14509545,-0.1325474,-0.1453716,-0.55120504,-0.36178115,0.29809493,0.19728324,0.2101374,-0.09727531,0.22730407,0.3238614,-0.17242779,0.04573281,-0.57160944,-0.015081846,0.093569465,0.36138767,0.000113762915,0.19187358,-0.5063555,0.33988386,-0.59068376,0.051860396,0.015804114,0.28614205,-0.08774796,-0.3548067,0.13988294,-0.051555183,0.39661804,-0.60629904,-0.18979289,-0.40181106,0.59504455,0.09380247,-0.005304741,0.6484953,-0.27773076,0.1297411,0.1594476,0.46466225,1.0580466,-0.20602615,-0.06058791,0.3517259,-0.38982385,-0.7094437,0.33006734,-0.3405062,0.37156683,-0.2148285,-0.21857022,-0.63339496,0.3629483,0.11570842,0.15622209,-0.08723069,-0.43384907,-0.0891887,0.33712107,-0.24611782,-0.049575154,-0.24232425,0.011136679,0.47963715,-0.03415913,-0.45251825,0.14025718,0.1620622,-0.2359129,-0.5437346,-0.16526964,-0.36262947,0.25972006,-0.060221646,-0.27631438,-0.26246276,-0.0950589,-0.4515088,0.21335632,0.29566675,-0.23995283,0.13852312,-0.19608134,-0.26344818,0.9318896,-0.3347172,0.23722576,-0.36167362,-0.6206985,-0.6417911,-0.31115073,0.19352438,0.07292722,-0.16309491,-0.8134943,-0.07103538,-0.24655518,-0.32027933,0.09760376,-0.30739695,0.55228275,0.16984089,0.2209818,-0.2681978,-1.0334947,0.21873464,0.13703153,-0.23748685,-0.7748502,0.42961833,0.11626422,0.7432237,0.14386143,0.21209247,0.44622272,-0.44221908,-0.05656445,-0.14472707,-0.02732243,-0.6315888,-0.08151717 -752,0.37147364,-0.12697075,-0.5270509,-0.09708414,-0.19153626,0.19360961,-0.13789861,0.49348998,-0.0015473505,-0.3204163,-0.07109138,-0.032003004,-0.022480536,0.21081047,-0.18200064,-0.541893,-0.027072597,-0.014795633,-0.37379056,0.24311225,-0.47300115,0.25669602,-0.055872735,0.27383152,0.14843722,0.2598354,0.17533582,0.043275837,-0.02707433,-0.16940413,-0.22906467,0.318506,-0.48407447,0.08031867,-0.1443855,-0.23646952,-0.021770477,-0.36944988,-0.43319437,-0.5295912,0.2512956,-0.66694635,0.38644612,0.048851285,-0.20087202,0.36278227,0.21023098,0.20109607,-0.1198801,-0.00077188894,0.24766347,0.027112173,0.11556178,-0.16990902,-0.22019294,-0.44196022,-0.44255772,0.07400766,-0.5542769,-0.14133482,-0.01297286,0.15706958,-0.15232484,-0.030534608,-0.2613048,0.45183313,-0.3442678,-0.14700687,0.2094528,-0.10712773,0.29414332,-0.5246923,-0.07512136,0.05953312,0.08593281,-0.12610744,-0.14278825,0.11426231,0.1418568,0.39665976,-0.12761192,-0.13583408,-0.3411915,0.026313046,0.06238354,0.41652724,-0.31238306,-0.3524661,-0.23855445,0.038533956,0.21969432,0.19458131,0.035081644,-0.23610508,-0.10786317,0.007530293,-0.26725727,0.43807808,0.52888304,-0.33192194,-0.13815537,0.3839083,0.5259271,0.11845395,-0.19961813,0.1279756,-0.008228371,-0.44651812,-0.07297665,0.053988412,-0.1390653,0.43285155,-0.15968281,0.2602199,0.50152636,-0.06389462,0.07345414,-0.0056348145,-0.04625562,0.021511141,-0.23468985,-0.0742038,0.080190636,-0.3602284,-0.02736195,-0.12165336,0.6227437,0.052926525,-0.75641507,0.28255457,-0.46364868,0.16340072,-0.10926136,0.42092744,0.7035767,0.27071723,0.05826582,0.713097,-0.33844984,0.11531059,-0.122034915,-0.3391677,0.11541627,0.11625897,-0.010359399,-0.58347476,-0.10954317,0.15202059,0.0068546883,-0.018355517,0.40213048,-0.5652805,-0.088386916,0.20949739,0.82723707,-0.23001334,-0.11741292,0.63995564,1.0558062,0.88673437,0.0664344,0.7812372,0.15510449,-0.10863945,0.054411784,-0.32779193,-0.5176145,0.1319885,0.3650325,0.23436292,0.21958502,0.030916736,-0.034134716,0.47040698,-0.30573916,0.020436,-0.14747441,0.24615978,0.076359,-0.02244118,-0.25228763,-0.11103928,0.05779411,0.16490354,0.05819188,0.2791803,-0.2831072,0.25623408,0.09857304,1.5795164,-0.16373496,0.16210228,0.15498905,0.39971414,0.25214264,-0.33193412,0.061211657,0.19521025,0.49880117,0.111348405,-0.3986105,0.013133644,-0.22536242,-0.47534448,-0.09107463,-0.22169282,-0.08787092,-0.15082493,-0.5533541,-0.0113296565,-0.0054979674,-0.2878821,0.3824323,-3.1695764,0.057921212,-0.10720994,0.18383189,-0.19697237,-0.4473197,-0.17233019,-0.47906858,0.46149507,0.40238604,0.3545934,-0.5552568,0.35714912,0.2895724,-0.2853167,0.070781216,-0.6767703,-0.07184988,-0.03307565,0.3376936,0.073448114,0.02757233,0.1000682,0.27860686,0.34626928,-0.098655954,0.14251997,0.09051126,0.32757354,0.07517242,0.41020977,-0.0076608886,0.35897088,-0.17734471,-0.22415252,0.3668687,-0.3386557,0.09749088,-0.057999417,0.1855814,0.28759697,-0.37089178,-0.86311495,-0.43042713,-0.22724374,1.1420128,-0.18261898,-0.43225813,0.23070881,-0.14011319,-0.26720467,0.010888135,0.39342067,-0.08725019,-0.035514202,-0.7590131,0.14900632,-0.31640705,0.1050217,-0.11200261,-0.06001746,-0.41991588,0.62832904,-0.13642468,0.49718353,0.3956945,0.2204997,-0.31849965,-0.42663532,-0.014318652,0.88738734,0.41360924,0.016852371,-0.056640442,-0.1515258,-0.26355952,0.08124098,0.20039785,0.58417994,0.6681581,-0.0091177225,0.1617281,0.29361483,-0.024617096,-0.12212478,-0.05635634,-0.2811526,-0.019619416,-0.04057482,0.6261113,0.5455148,-0.020270336,0.5390237,-0.15647298,0.34474775,-0.30732465,-0.5038699,0.31285164,0.55145305,-0.12071231,-0.356607,0.4566028,0.41886857,-0.059922513,0.34313226,-0.6192777,-0.40842777,0.3873527,-0.22254458,-0.298083,0.33454362,-0.3173132,-0.049393445,-0.64809215,0.28253213,-0.22619146,-0.68275344,-0.60088336,-0.37527892,-3.4929585,0.14171816,-0.17907941,-0.1384724,0.0056916126,-0.17077816,0.27595335,-0.4221538,-0.36091793,0.1448828,0.101481825,0.5477582,0.0057164114,0.05178631,-0.22568825,-0.13107562,-0.20201744,0.1997949,0.18006185,0.23723955,-0.029450472,-0.3797614,-0.058692463,-0.17188925,-0.41474876,0.045782447,-0.45906764,-0.46872672,-0.12895858,-0.38332045,-0.14200711,0.59600145,-0.41174272,0.048601657,-0.21502833,-0.023928348,-0.029718915,0.3350322,0.17584616,0.08803992,-0.08474201,0.037529968,0.038323797,-0.39504603,0.14581324,0.10939828,0.26193902,0.32224438,-0.0527136,0.15617815,0.51517725,0.5547269,-0.050286025,0.67406845,0.47678488,-0.14588453,0.28546518,-0.11549929,-0.009066053,-0.49328828,-0.30156165,-0.05997955,-0.40326667,-0.38690063,-0.18378955,-0.3567042,-0.62904376,0.37671977,0.011566969,0.16536601,-0.066783644,0.34094357,0.44640377,-0.12320498,-0.040892206,-0.03400051,-0.11670184,-0.43813735,-0.3706091,-0.6124391,-0.36621732,0.092638195,1.0726323,-0.23145333,-0.045684822,-0.08424105,-0.1510898,-0.037280187,0.07673319,-0.047701567,0.20179033,0.25901937,-0.27227458,-0.5358195,0.3625671,-0.3523543,-0.16997674,-0.5420571,0.040889557,0.49793345,-0.42472962,0.4137828,0.2256994,0.2748007,-0.18829079,-0.59127253,-0.012975426,0.09307324,-0.29219103,0.5011946,0.20939061,-0.7557494,0.5545846,0.20294616,-0.12764855,-0.6603601,0.5089441,0.11112423,-0.24114037,-0.03145241,0.21558185,0.016086593,-0.045871362,-0.14130898,0.19317189,-0.32386118,0.22095947,0.2779312,-0.05131646,0.26427698,-0.22780919,0.028466856,-0.46081004,-0.10348002,-0.46439826,-0.26271975,0.055026524,-0.06703635,0.19114253,0.12885344,-0.25382158,0.37890723,-0.20837104,0.19591606,-0.11174011,-0.16902255,0.2997755,0.3714387,0.27775416,-0.40406328,0.51171046,0.14268972,-0.14594094,0.021760566,0.14493379,0.40012684,0.00086951256,0.25731844,-0.17114013,-0.11552386,0.33577245,0.72353834,0.1924048,0.44059518,-0.036073167,-0.19006401,0.047869835,-0.039408855,0.04332524,-0.06032722,-0.4914221,-0.072118506,-0.08321794,0.30792478,0.36319324,0.16782032,0.41298822,-0.06528628,-0.16031854,0.17315117,0.21669593,-0.033688348,-1.1428722,0.29929417,0.17870606,0.8154153,0.47017026,0.06120505,-0.038423005,0.49643072,-0.2981236,0.07724571,0.3513869,0.03922152,-0.26931673,0.3778727,-0.7749223,0.44373405,-0.047922272,-0.049193796,-0.11610644,-0.14027312,0.40110564,0.8671108,-0.13621703,0.1033521,0.0061016786,-0.1963965,0.15131384,-0.18681926,0.14206173,-0.48917803,-0.3973453,0.67353994,0.43902758,0.35187295,-0.117090106,-0.12351467,0.042055964,-0.083272934,-0.04112593,-0.004661526,0.08095688,-0.17012589,-0.59990704,-0.39693063,0.38262606,-0.08540602,0.100879684,0.13705742,-0.23753048,0.12571089,-0.053613152,0.004328426,0.035365324,-0.53280777,-0.0958716,-0.17266323,-0.31168607,0.5583047,-0.42010164,0.32367328,0.0626606,0.022888167,-0.16135441,0.1349383,0.068992004,0.7078094,-0.0731623,-0.028206902,-0.4240096,0.14745174,0.13008082,-0.18066628,-0.30472717,-0.36054316,0.16653521,-0.70899534,0.3027782,-0.08886625,-0.22269166,0.16337705,-0.13680498,0.08716731,0.48300406,-0.031248486,-0.2107182,0.045088742,-0.107018426,-0.20513041,0.009240603,-0.0951144,0.2570094,0.024019297,-0.09814579,-0.023907255,-0.020274095,-0.17437533,0.24660733,0.131961,0.3308978,0.28547487,0.19484651,-0.3737194,-0.067807995,0.07041697,0.45654416,0.02509796,-0.1392135,-0.14953026,-0.42593932,-0.2942706,0.1826488,-0.12937643,0.2869109,0.10426966,-0.05251387,0.6131255,-0.0896285,1.0844171,0.038601805,-0.32386684,-0.021414876,0.41989902,0.08281401,0.16343196,-0.36203703,0.8232929,0.5699048,0.0642779,-0.09185127,-0.19572824,0.10766827,0.23162082,-0.056578975,-0.1058802,-0.0666588,-0.63433284,-0.13298562,0.16300105,0.173077,0.20130882,-0.05223178,-0.091249764,0.26577255,-0.003552493,0.3080985,-0.53504616,-0.037839927,0.25513032,0.29687372,-0.08606969,0.09689545,-0.48700073,0.35191748,-0.3657911,0.0426727,-0.23738687,0.16370414,-0.07296645,-0.2862794,0.217683,-0.1795633,0.41256598,-0.30261043,-0.31203488,-0.09619379,0.5490847,0.1731058,0.1949124,0.46971372,-0.20106351,0.10115848,-0.05120155,0.5435272,1.0178696,-0.33844513,-0.031612746,0.43656898,-0.18563405,-0.6520358,0.15177582,-0.3402713,0.16239904,-0.056040436,-0.3327086,-0.18423696,0.47037905,0.17660113,0.017220095,0.07587082,-0.42971072,-0.05983165,0.34368473,-0.118346274,-0.23748364,-0.30577722,0.15570638,0.57791364,-0.24959984,-0.27597708,0.010794548,0.4042333,-0.11308561,-0.36992964,0.11013882,-0.25227946,0.27717337,0.13737392,-0.212515,-0.048678517,0.020391261,-0.37616548,0.17056538,0.2533439,-0.2585887,0.025906209,-0.15275581,-0.09135939,0.76305425,-0.19810355,0.079165176,-0.5705845,-0.3875307,-0.6701436,-0.44098222,0.22083461,0.005798494,0.099185735,-0.64808506,-0.030001087,-0.14812711,-0.107763894,-0.11760489,-0.30204797,0.51670176,0.105771855,0.30059567,-0.116455786,-0.58163023,0.13492517,-0.00035720714,-0.15259157,-0.4615484,0.5593212,-0.0895318,0.6156728,0.038231634,0.123535536,0.28840405,-0.5016369,0.109319754,-0.32979557,-0.1683677,-0.8297702,0.14221323 -753,0.3394726,-0.33307946,-0.38147762,-0.08203058,-0.11145649,0.083773874,-0.047972515,0.5471657,0.15304343,-0.5414025,-0.111060806,-0.14384441,0.027146053,0.21344016,-0.10705078,-0.24559736,-0.069989584,0.13652687,-0.33971253,0.5498269,-0.4417412,0.26726896,-0.042068172,0.37128595,0.30610272,0.2597369,0.07988434,-0.13169254,-0.12070988,-0.079531595,-0.17974363,0.3431227,-0.25702533,0.087076694,-0.15107499,-0.40695077,-0.1541419,-0.39121738,-0.37380567,-0.71712935,0.3333665,-0.8049386,0.4178985,0.025029715,-0.3473303,0.2049195,0.04264263,0.31498164,-0.19294204,-0.035554662,0.15870187,-0.0743955,0.068254925,-0.09304324,-0.032651007,-0.21817707,-0.51894206,-0.036147125,-0.33563626,-0.17549601,-0.25635183,0.093257904,-0.34137833,-0.17020066,-0.15257385,0.5221917,-0.4871145,-0.08217371,0.10455183,-0.10766014,0.4588713,-0.60089,-0.1756224,-0.21794683,0.22303048,-0.23721406,-0.24130405,0.18697494,0.22135574,0.53603214,-0.1266053,-0.03433369,-0.3854176,-0.049857076,0.15528835,0.44402975,-0.13283294,-0.6373336,-0.15383212,-0.072384626,0.120750055,0.18765903,0.10309938,-0.28886953,-0.15326498,0.13048308,-0.115081795,0.2823264,0.46813205,-0.2485062,-0.26857364,0.31209728,0.60234207,0.23413001,-0.1461632,-0.034942403,0.030535694,-0.45641536,-0.1625824,0.14844751,-0.2092883,0.61753297,-0.16811605,0.359565,0.5936043,-0.12384684,0.05924565,-0.03087441,0.09985154,-0.18287936,-0.18324305,-0.3559784,0.23423032,-0.4266552,0.21946517,-0.15309629,0.71633893,0.097341895,-0.689224,0.37443718,-0.44975337,0.15848252,-0.08443864,0.5715918,0.66307676,0.411692,0.32152328,0.6562418,-0.4191486,-0.028891644,-0.08975817,-0.3185135,-0.014095124,-0.21235783,-0.19627689,-0.53429955,-0.041209746,0.11665843,-0.11141316,-0.034731664,0.3741286,-0.48005214,-0.088200614,0.12842427,0.7020966,-0.31219482,0.015333863,0.73772264,0.9230911,0.9483661,0.028339257,0.9996204,0.15171455,-0.3162753,0.26584086,-0.25700644,-0.6515293,0.28862238,0.26202792,0.09654724,0.19992584,0.035906974,-0.031364586,0.51945806,-0.5153311,0.09104689,-0.20756157,0.008475749,0.08919103,0.010874561,-0.56047094,-0.3591957,-0.14178881,0.098502226,0.0061705154,0.23734312,-0.11146875,0.44482782,0.1025257,1.6674988,-0.17339776,0.037320413,0.10531519,0.5865695,0.11536848,-0.21372023,-0.106488965,0.26523307,0.42374668,0.119414225,-0.70048946,0.1503684,-0.08841349,-0.5787955,-0.03871565,-0.3571231,-0.104640014,-0.072834715,-0.55935645,-0.21901992,-0.18363973,-0.4011248,0.4684566,-2.7920532,-0.13977829,-0.035030298,0.28130645,-0.3252413,-0.3531944,-0.019005807,-0.4526227,0.3685798,0.3510868,0.46423307,-0.7581943,0.2600868,0.44668216,-0.45753497,-0.03383534,-0.6905472,-0.2505179,-0.032237314,0.37210143,0.07676303,-0.017152196,0.12739679,0.1616605,0.42580023,-0.08461715,0.15553118,0.17352238,0.27352402,0.06213341,0.43225864,0.031029869,0.481738,-0.34155792,-0.090109915,0.2917143,-0.29051894,0.27146962,-0.15413903,0.15545546,0.4555626,-0.47248438,-0.72320205,-0.6451272,-0.18460827,1.2229415,-0.16219787,-0.37634954,0.3252388,-0.5814182,-0.17978756,-0.21319538,0.49403378,-0.09074841,-0.1161007,-0.8810362,0.07465679,-0.046062436,0.19523789,0.02289433,-0.033514563,-0.4675142,0.5906988,0.03037755,0.58433706,0.39736286,0.16953732,-0.2379872,-0.43154857,-0.016366394,0.654894,0.3939486,0.19504446,-0.27752528,-0.14448912,-0.35005042,0.033976696,0.14084749,0.40164745,0.7481436,0.006648602,0.136084,0.3226118,-0.07615272,0.103331454,-0.13857602,-0.15559836,-0.12028196,0.10490321,0.5754287,0.4694711,-0.23073071,0.32396305,-0.09251117,0.08567743,-0.28456753,-0.38207582,0.47411355,1.0209334,-0.18106376,-0.19405746,0.5338783,0.622765,-0.21537997,0.38893336,-0.5655326,-0.23379454,0.4916706,-0.24145953,-0.48962206,0.1661715,-0.37886295,0.29151928,-0.9897953,0.11276639,-0.28652334,-0.49407384,-0.6502755,-0.01863947,-3.2652674,0.20446101,-0.21678586,-0.2550267,-0.10927185,-0.28132448,0.2544212,-0.57605404,-0.5697993,0.12370038,0.029502546,0.6313114,-0.0073859273,-0.0022999009,-0.25311747,-0.18362573,-0.25658575,0.12681325,0.011701573,0.380951,0.036924418,-0.5868582,-0.13062741,-0.1952687,-0.42214572,-0.012001623,-0.48170388,-0.42792574,-0.12997109,-0.47371438,-0.41777375,0.5896011,-0.20075181,0.121764265,-0.090614125,-0.088594146,-0.11168289,0.39375284,0.15774086,0.14565918,0.021658007,-0.08388689,0.010474082,-0.24848393,0.041017834,-0.0243675,0.13656618,0.35185432,-0.17886305,0.29134876,0.51918554,0.7241021,-0.18493955,0.87264186,0.63555616,-0.09253856,0.23504499,-0.26689497,-0.30994275,-0.590516,-0.27872112,-0.006981925,-0.39557347,-0.5717294,-0.037364826,-0.39214936,-0.83846486,0.48101088,0.04246425,0.25230408,0.040439587,0.121569365,0.52218276,-0.18059789,-0.007693978,-0.096683346,-0.11823122,-0.5896717,-0.29599926,-0.6686297,-0.453508,0.04980995,0.8664793,-0.14712913,0.030127525,0.08239596,-0.3606737,-0.04637979,0.17647572,0.060650762,0.1721565,0.26894516,-0.11210782,-0.57083064,0.5464391,0.19673397,-0.22340626,-0.44987094,0.20804842,0.6616288,-0.54593253,0.4894807,0.3569709,-0.043389093,-0.2664037,-0.5379448,-0.20371482,-0.076178946,-0.22177893,0.4616272,0.23774627,-0.60209113,0.37892908,0.38275275,0.019341938,-0.67763615,0.6480556,0.028306147,-0.27521533,-0.070499815,0.27538246,0.012296307,0.082381934,-0.19474147,0.23744363,-0.3922622,0.2306918,0.33701515,-0.044169817,0.31033248,-0.31262714,-0.005733947,-0.7733099,0.043749016,-0.61590505,-0.1088193,0.379315,0.11130129,0.18492483,0.13217518,-0.0053516603,0.3869845,-0.2712392,0.035140414,-0.011464177,-0.14926535,0.29214996,0.42990592,0.3496302,-0.35722435,0.5760914,0.08504953,-0.058943342,-0.22098345,0.17642733,0.39798504,0.19678293,0.47562045,-0.13139787,-0.3465024,0.29609478,0.7716927,0.32310575,0.4633208,-0.03509398,-0.08193713,0.18667544,0.15349767,0.28712568,-0.05568594,-0.4182059,0.04053526,-0.3187441,0.16794059,0.31284526,0.08213509,0.36964634,-0.11953879,-0.27151924,0.042626698,0.17492667,-0.06265618,-1.2309611,0.40659493,0.29171926,0.7922062,0.5912371,-0.0027169187,0.01929822,0.62460935,-0.31394258,0.23368448,0.3631438,0.096952505,-0.66010755,0.5654493,-0.70940155,0.4737913,0.0028323769,-0.011297343,-0.0170479,-0.15172829,0.39365262,0.5798363,-0.0760104,0.09659798,0.053485863,-0.3692392,0.19760492,-0.42371947,0.06010169,-0.60050905,-0.1740625,0.6909743,0.5025584,0.3189956,-0.108962454,-0.018281309,0.15365666,-0.04218942,0.13813943,0.14334269,0.25453535,-0.058357835,-0.6991648,-0.15856224,0.4593455,-0.14984252,0.11299092,-0.036582135,-0.35997763,0.1799706,-0.122879915,-0.087056905,0.010665317,-0.6207623,0.021195613,-0.36713403,-0.38653183,0.5560711,-0.18237415,0.38392118,0.18732451,0.07753684,-0.3088678,0.23266493,-0.03827254,0.7158343,0.045687616,-0.06985251,-0.3553747,0.06637398,0.28731441,-0.17349741,-0.24509244,-0.11676475,-0.03557644,-0.5129576,0.40389672,0.029648328,-0.19426791,0.14930053,-0.098203324,0.048290756,0.5792331,-0.12406028,-0.17829686,-0.1488792,-0.18247484,-0.26953995,-0.18337949,-0.09034846,0.3874565,0.16585916,0.16449963,-0.10128926,-0.030251812,-0.10897134,0.5064463,0.094107196,0.3161439,0.32749227,-0.0361305,-0.46448657,-0.15770514,0.11797992,0.41262665,0.016146215,-0.007951629,-0.26073295,-0.40797815,-0.39259896,0.027539037,-0.15555467,0.40613517,0.07979093,-0.18717547,0.76681083,0.03374,0.9943297,0.008467048,-0.51053333,0.09338024,0.39402038,0.021808961,-0.05357649,-0.22618197,0.8250708,0.4534645,-0.110442035,-0.15755913,-0.23603398,-0.008795198,0.21404587,-0.1716835,-0.1334984,0.03507607,-0.6593864,-0.16876109,0.334416,0.27237567,0.23733552,-0.08589229,0.036483373,0.26411054,-0.044778977,0.3149394,-0.37367153,-0.20440832,0.32679737,0.14918596,0.12832403,-0.009846922,-0.5028024,0.4518358,-0.459393,0.0615925,-0.3150024,0.21355338,-0.28900656,-0.3575765,0.23384236,0.07866649,0.24938585,-0.23427686,-0.36988685,-0.3311127,0.48509884,-0.0055318694,0.08665946,0.54302,-0.23032999,0.121531315,0.06166937,0.37602472,0.9065207,-0.20875266,-0.07419669,0.3973417,-0.3115118,-0.60799193,0.25364348,-0.2569277,0.31683448,0.043904506,-0.12093045,-0.55610615,0.27266896,0.31488124,0.048419658,0.0285403,-0.585943,-0.24596079,0.31299144,-0.2745004,-0.11806672,-0.34865734,0.03467786,0.48693556,-0.39492697,-0.3426226,0.011096318,0.26281136,-0.2242464,-0.48065987,0.11818876,-0.33598724,0.21691774,0.07660378,-0.44260547,-0.0628622,0.033557646,-0.38478014,0.050785862,0.19723047,-0.37368146,0.09834702,-0.47754675,-0.0462188,1.0585377,-0.17468613,0.15254433,-0.39915898,-0.36920798,-0.8317781,-0.3389865,0.5993336,0.10244039,0.046596054,-0.6763344,0.15576597,-0.02557292,-0.012320701,-0.112161286,-0.32703957,0.5619535,0.19026977,0.1830429,0.049125247,-0.49798658,0.20611082,0.07206223,-0.096905835,-0.36903864,0.57675827,0.084097706,0.8509246,0.1119433,0.22006546,0.2061351,-0.5504721,-0.043293573,-0.11098814,-0.26764545,-0.68844193,-0.11544419 -754,0.36605385,-0.07047821,-0.4231753,-0.19114336,-0.34312704,0.31856316,-0.057599224,0.38753617,0.22529687,-0.47508067,-0.049141467,-0.16488677,-0.089361064,0.5145337,-0.22269095,-0.6534068,-0.1360067,0.071780205,-0.49916425,0.23202252,-0.6276538,0.3713338,0.122346945,0.38441557,-0.0070559797,0.22908054,0.21333951,-0.060046904,-0.019683229,-0.1403085,-0.26919606,0.13531162,-0.4422619,0.24745391,0.025167437,-0.3153729,-0.032587163,-0.43849242,-0.24122278,-0.6079085,0.5104258,-0.9316616,0.59404284,-0.13874239,-0.24240272,0.19476518,0.16111323,0.21932665,-0.33079892,-0.013438137,0.2661851,-0.09681901,-0.024009604,-0.16602021,-0.33890408,-0.4574084,-0.61927944,-0.030662814,-0.4371491,-0.10643533,-0.26809606,0.31332362,-0.21062733,0.22008477,-0.22941314,0.26991293,-0.3434753,-0.046343345,0.28037444,-0.2133974,0.12869605,-0.36187422,-0.17320994,-0.04176696,0.3025703,-0.019752942,-0.08994674,0.2869716,0.10052249,0.5719809,-0.07545031,-0.2238577,-0.24812691,-0.10115598,0.04388764,0.586808,0.016856786,-0.24964087,-0.2685182,-0.055742934,0.2646103,0.2997359,-0.008164967,-0.19196385,0.01603709,0.053476494,-0.3151632,0.30474615,0.35668835,-0.30943334,-0.36455742,0.4929332,0.43423626,-0.19575453,-0.12849054,0.096871786,0.07788114,-0.5666697,-0.3012047,0.1876227,-0.16873303,0.43654302,-0.13639343,0.25323245,0.80351883,-0.07382588,0.046652958,-0.2473694,-0.0109955985,-0.3278645,-0.28119028,-0.17750086,0.04870104,-0.32138887,0.069191806,-0.2928804,0.92022806,0.10244686,-0.737075,0.37512943,-0.5461436,0.044104233,-0.1155787,0.61853635,0.65702945,0.40172246,0.22122297,1.0062957,-0.6124111,0.08334002,-0.031320818,-0.35496384,0.0747926,-0.111474365,0.23826984,-0.4061592,0.022660967,0.25402895,-0.026727187,0.042151596,0.4898868,-0.40853596,-0.038419846,0.052120227,0.7214324,-0.39702708,-0.10015937,0.8179481,1.0209911,0.865133,0.04521248,1.2839679,0.27665016,-0.23783058,0.12787867,-0.3629468,-0.715043,0.20445892,0.34926274,-0.04687081,0.31967995,0.08099499,0.16385219,0.40742606,-0.36838472,0.081430785,-0.007932236,0.22747435,0.036217604,0.050245855,-0.39730486,-0.3370368,0.17927733,-0.055478495,0.39187363,0.29687068,-0.15823208,0.45419028,0.11685287,1.8981729,0.1400834,0.18197943,0.14876702,0.47275323,0.11017716,-0.051379602,-0.1884698,0.3248957,0.40585124,-0.16263543,-0.6198315,0.05889072,-0.20913242,-0.36312106,-0.119963065,-0.34508795,-0.20318127,-0.24357565,-0.32296214,-0.2359504,-0.10066162,-0.37748283,0.42740038,-2.5509667,-0.3298981,-0.20222344,0.27591583,-0.3855012,-0.36919257,-0.30784944,-0.605437,0.38222313,0.4002721,0.3723446,-0.61012673,0.47135147,0.41507524,-0.24766713,-0.18226074,-0.6458734,0.028737225,-0.03147816,0.19832039,0.0139535805,-0.10339337,-0.48415726,0.24693829,0.4048905,0.16551526,0.04139448,0.37956592,0.6281398,0.14195195,0.7261781,0.124527544,0.6137529,-0.38213328,-0.0019949009,0.4233508,-0.45984825,0.40881458,-0.02338735,0.08814885,0.46752408,-0.5004064,-0.73878413,-0.6637748,-0.45728686,1.1773326,-0.47154748,-0.23225667,0.16281027,-0.21846443,-0.405,0.0036605406,0.58710825,-0.1896045,-0.12352307,-0.69928145,-0.0094457315,-0.09690101,0.4309591,-0.0831968,0.022818675,-0.36245984,0.59340644,-0.17404556,0.7980935,0.28863576,0.06391635,-0.32589597,-0.28564578,0.054979388,0.8777463,0.28813055,0.08003838,-0.14309645,-0.25598,-0.3306029,-0.22487132,0.049372032,0.48108485,0.61109906,0.07585899,0.09463305,0.46727532,-0.2316555,-0.13087063,-0.10847828,-0.20264505,-0.1181964,0.036379024,0.53372556,0.6736982,-0.21919666,0.3144784,-0.23773359,0.33179575,-0.26514998,-0.38933513,0.4808197,0.3715809,-0.068069085,-0.15604495,0.6217641,0.5593935,-0.20826119,0.35460868,-0.63546604,-0.36952385,0.53050226,-0.05377183,-0.4386205,0.0009188973,-0.1695265,-0.07782427,-0.9782703,2.6482801e-05,0.0119927665,-0.4603149,-0.6367037,-0.27815273,-3.605469,0.006012268,-0.08776348,-0.09678585,-0.10370581,-0.043311037,0.28714126,-0.545844,-0.6947425,0.11877882,-0.020670317,0.627129,0.15943414,0.33122408,-0.35524845,-0.028854169,-0.2925164,0.078683525,0.1135091,0.33577463,0.057515923,-0.45919874,0.02593389,-0.23762217,-0.5101005,0.038978834,-0.511975,-0.520419,-0.00775398,-0.50786316,-0.3003978,0.7387637,-0.38785583,0.028924074,-0.23756133,-0.10984922,-0.20378791,0.2349507,0.14105476,0.043275457,0.05164195,-0.071611114,-0.0931882,-0.35433128,0.31364712,0.012866324,0.355515,0.2442631,-0.14885925,0.13632862,0.5104391,0.5731853,-0.068255074,0.6969131,0.19698946,-0.09937249,0.28401333,-0.118890196,-0.1868872,-0.57740754,-0.29843992,0.010642423,-0.39073202,-0.43886802,-0.22658388,-0.372063,-0.8371251,0.39625472,0.15767334,0.056376066,-0.16582035,0.10564722,0.33567566,-0.13618161,0.16886733,0.030025413,-0.20140512,-0.5666236,-0.5495218,-0.6618359,-0.40456507,0.3020993,1.3244598,-0.096216016,-0.19237378,0.04311524,-0.5669358,-0.045542147,0.08205014,0.16787992,0.31395906,0.52398944,-0.16806504,-0.63202405,0.45448068,-0.22599809,0.036878746,-0.53904366,-0.014489834,0.81307346,-0.6676649,0.38834286,0.2379285,0.21070814,0.07644307,-0.45922697,-0.25667542,-0.100854985,-0.16889763,0.49724466,0.26995108,-0.5434924,0.4707399,0.06785554,0.0027306539,-0.6823617,0.2979286,-0.042814773,-0.16528368,0.009975717,0.31435952,0.27187765,0.020003174,-0.18078102,0.18474929,-0.46499288,0.25099495,0.32271507,-0.00761873,0.40229324,-0.21278523,-0.024109308,-0.60791963,-0.18656246,-0.4257706,-0.2539934,-0.10123701,-0.024707962,0.057663396,0.14868066,-0.03785817,0.20392054,-0.27071258,0.09318915,0.119267784,-0.0854803,0.31402192,0.27514905,0.39777392,-0.46388334,0.5984472,0.03508522,0.16557345,-0.057274,-0.02701399,0.37761953,0.24920848,0.21777895,-0.09714218,-0.23606792,0.3299336,0.6945324,0.2543258,0.13724004,0.21753667,-0.20109327,0.44557592,0.08445898,0.015406697,0.037165537,-0.5152897,-0.035211407,-0.007720617,0.12085394,0.36202094,0.1942343,0.44922364,-0.031328093,-0.2110748,0.17677633,0.11847278,-0.41770875,-1.1495064,0.2656519,0.20608574,0.791386,0.4063504,-0.026813112,0.10667887,0.6362158,-0.4408776,0.14276792,0.33252555,0.027535759,-0.40796563,0.5210526,-0.39787403,0.5753909,-0.12168347,-0.0008404335,0.021908103,0.18103796,0.30602002,0.8925548,-0.116646916,0.034695975,0.11782791,-0.24026343,0.14023744,-0.25358567,-0.09738246,-0.6495743,-0.20922439,0.5419292,0.40762308,0.4401457,-0.23414057,-0.0747497,-0.039423373,0.00640078,-0.058764692,-0.09472474,-0.059438765,0.032790847,-0.77303463,-0.3462795,0.52285755,0.12147798,0.17781888,0.14010064,-0.478439,0.2658921,-0.22395918,-0.0625646,-0.044548534,-0.7219114,-0.25472677,-0.25564435,-0.40802115,0.12298153,-0.4053084,0.30516255,0.1608689,-0.02850749,-0.26610774,0.1037253,0.22415963,0.84171253,0.067683324,-0.21614522,-0.36360726,-0.059980944,0.2833071,-0.3881464,-0.075397074,-0.43102735,0.10860748,-0.5436212,0.43053213,-0.00664799,-0.30582666,0.109801054,-0.2595084,0.15055376,0.493824,-0.1245919,-0.0061079813,-0.082077876,-0.08601691,-0.3329373,-0.06268479,-0.4677401,0.21401188,0.030990321,0.11261564,0.105352946,-0.13230252,-0.08047449,0.35982385,0.18561623,0.17641361,0.29780504,0.023579927,-0.19593623,0.029676339,-0.12302362,0.49866098,0.035030738,-0.24065052,-0.28119776,-0.19835415,-0.1886772,0.6406161,-0.18150964,0.2068385,-0.001077182,-0.40493476,0.6739983,0.049312226,0.9032414,0.10994999,-0.3709636,-0.042952575,0.5521162,0.2021886,0.19580053,-0.24287888,0.7982582,0.49507082,-0.17792994,-0.30248916,-0.44551834,-0.13255112,0.3240748,-0.30630305,-0.111525774,-0.18930684,-0.80439,-0.19225915,0.20411688,0.07495504,0.2789191,-0.07018984,0.03894661,-0.06297943,0.12665173,0.5738041,-0.5312181,-0.10895427,0.41982406,0.2115802,0.13119973,0.19253223,-0.46978536,0.45536363,-0.58219707,0.22875959,-0.380421,0.08234524,-0.137801,-0.14380337,0.16850637,0.047319002,0.40547994,-0.31339708,-0.43335754,-0.22353154,0.77905715,0.34389925,0.28128475,0.845422,-0.19302727,-0.22957844,0.054954454,0.5821371,1.2047882,-0.1086978,0.14682394,0.27616537,-0.2994621,-0.50794095,0.1522203,-0.3203014,0.13012546,0.1248968,-0.32659367,-0.31666186,0.41669002,0.03781231,0.12986962,0.103978835,-0.40987617,-0.2853641,0.57165724,-0.2034454,-0.29100606,-0.26624075,0.08224659,0.62013113,-0.19441183,-0.21850039,0.103376776,0.4300265,-0.2853829,-0.56288934,-0.1125902,-0.49751288,0.38895878,0.067045525,-0.22623044,-0.086264774,0.04880097,-0.38533798,0.2570656,0.23154989,-0.40960482,0.043057892,-0.40065807,-0.17251427,1.0983001,0.032107286,0.0610855,-0.7475573,-0.35159257,-0.89728737,-0.4342652,0.29519737,0.026698956,-0.18104118,-0.33705884,-0.1815719,-0.07516419,-0.0611074,0.09725404,-0.53695965,0.38993156,0.22837827,0.42875582,0.01792762,-0.8748976,0.026695265,0.013150331,-0.24817906,-0.46531758,0.6551618,-0.07987897,0.71317714,0.044232465,0.13015498,0.17344464,-0.52757794,0.34988675,-0.35828775,-0.102516346,-0.7744828,0.12345934 -755,0.29086992,-0.2820068,-0.579842,0.05523086,-0.11208293,0.20043898,-0.35097986,0.24106055,0.022170441,-0.46445176,-0.030790605,-0.05601134,-0.102513276,0.1950252,-0.16374794,-0.39785025,-0.07611609,0.1237274,-0.5257372,0.3457299,-0.61159873,0.2689063,-0.08889227,0.15304643,-0.06032522,0.14899446,0.3032552,-0.10036607,-0.15787055,-0.20459749,0.09661825,0.097696945,-0.3351199,0.1947364,-0.14475273,-0.43454736,0.04282427,-0.33721372,-0.36371797,-0.6443856,0.3074048,-0.82028735,0.5412502,0.0661088,-0.25923762,0.21994697,0.0711165,0.17185679,-0.12222613,0.0022512882,0.1336625,-0.29633838,-0.25165358,-0.4217863,-0.12726215,-0.41304713,-0.48741156,0.119351834,-0.48870155,-0.10667579,-0.12038095,0.24253654,-0.45348632,0.098545365,-0.16164932,0.37068665,-0.2703739,-0.00993802,0.29626262,-0.1858793,0.14035575,-0.62062,-0.1334401,-0.06016591,0.18887243,-0.09120233,-0.1359879,0.15293829,0.07393611,0.5207082,-0.15551835,-0.14254989,-0.28097984,-0.173107,0.2697274,0.5387312,-0.1308152,-0.4372438,-0.17432974,-0.1411192,0.20836662,0.13876796,0.04650023,-0.22485389,-0.052499227,0.13003537,-0.34887922,0.26167628,0.5629803,-0.29431278,-0.0031218736,0.4438805,0.6174469,0.01162543,-0.088689014,0.03531023,0.09637497,-0.45090836,-0.1705251,0.116973765,0.003721957,0.49769485,-0.24435171,0.4984953,0.45628354,-0.2525338,0.0725331,0.1448302,0.049706414,-0.10123045,-0.20110594,-0.104186006,0.18667258,-0.48466775,-0.02408676,-0.21720567,0.8057967,-0.037988313,-0.6276702,0.39410654,-0.55221504,0.16835514,0.07957011,0.7340828,0.6226855,0.35197595,0.1414472,0.7793534,-0.35566542,-0.08232425,-0.110617034,-0.31244594,0.06778752,-0.06982673,-0.028831912,-0.4148771,0.070098385,0.21002391,0.14805031,-0.06605626,0.31621096,-0.48231572,-0.0745128,0.04045351,0.68907154,-0.21713217,0.065992326,0.6923891,0.97214985,0.7806584,0.081070535,1.2776023,0.31787217,-0.21496916,-0.03113885,-0.11113529,-0.86022437,0.23372006,0.28834167,-0.17391816,0.4094489,0.07260125,-0.22983877,0.46191522,-0.31053093,-0.12698027,-0.19671702,0.21275654,0.1270347,-0.17135397,-0.31299195,-0.1507071,0.03414649,-0.12607367,0.35963064,0.25440687,-0.26589394,0.3370245,0.104403384,1.2131584,-0.26669562,0.20342067,0.16660613,0.10602414,0.18985613,-0.17160764,0.07082739,0.39291912,0.2756332,0.11984563,-0.6463708,0.14756715,-0.17607191,-0.5666191,-0.2200679,-0.07731215,-0.14049977,-0.068966374,-0.37765902,-0.15864776,-0.23835382,-0.35005423,0.37279174,-2.7695718,-0.2246595,-0.16004084,0.29304856,-0.31103918,-0.37139577,-0.20782775,-0.40286037,0.2960747,0.33273533,0.40823144,-0.5946278,0.35945547,0.3510451,-0.47384706,-0.2531192,-0.6746339,0.06304121,-0.0515611,0.31364006,0.05863754,-0.2792528,0.06552848,-0.06079926,0.38046074,-0.26443025,0.12778378,0.2879922,0.4878895,-0.0077174744,0.21079087,0.039838728,0.5189066,-0.4826337,-0.27015617,0.37270498,-0.58020437,0.41141722,-0.02683668,0.17727968,0.33877817,-0.40245664,-0.70769894,-0.55954957,-0.19444071,1.3555989,-0.15195657,-0.5298776,0.06388342,-0.21881771,-0.41950777,-0.089520924,0.40586016,-0.19448641,-0.115358844,-0.8559411,0.09809191,-0.17127459,0.42874888,-0.050042905,-0.015608726,-0.35036236,0.61485547,-0.06400107,0.5384578,0.40054643,0.16303548,-0.42025968,-0.2837745,-0.017698558,0.93133026,0.50552773,0.18323709,-0.16415235,-0.20584433,-0.22868219,-0.22995487,0.15314163,0.5183432,0.6464664,0.03917753,0.14463824,0.3514752,0.050097935,0.031209083,-0.11690974,-0.21635386,-0.15084504,0.12737025,0.5938295,0.42344445,-0.25392035,0.26735237,0.032523267,0.2169214,-0.42753047,-0.41165775,0.51993906,0.76556313,-0.10287978,-0.32115147,0.5746586,0.5603867,-0.51133525,0.37368515,-0.61846644,-0.5009742,0.4354202,-0.13252157,-0.44990256,0.25626847,-0.3976142,0.25794995,-0.85816413,0.33887088,-0.40710232,-0.38450453,-0.7226737,-0.20583762,-3.230955,0.2823808,-0.2585015,-0.0961835,-0.2413645,-0.0014996299,0.3026684,-0.48587206,-0.46513778,0.104406625,0.11913793,0.59473026,-0.054866746,0.1001648,-0.20042016,-0.17597982,-0.1729469,0.18256393,0.07591828,0.15564339,-0.05953876,-0.3732181,-0.14388147,-0.1726397,-0.3066633,0.13004914,-0.42703688,-0.40443617,-0.14220732,-0.3824825,-0.28960493,0.594283,-0.45028284,0.010427268,-0.30356488,0.14025949,-0.20164499,0.4567421,0.10200293,0.16242589,-0.04808499,-0.14598078,-0.028709127,-0.2478937,0.25505173,-0.027447293,0.28772599,0.6012515,-0.24424379,0.13720591,0.35031393,0.61169565,0.025321044,0.8004768,0.24525213,0.049350936,0.3888084,-0.15836345,-0.1786477,-0.43119255,-0.2447055,0.17791282,-0.43245336,-0.38203046,-0.04692219,-0.22603995,-0.7291524,0.53433233,0.0030515583,0.014984972,-0.079762205,0.50929075,0.4875654,-0.07620022,-0.017589368,0.04468842,-0.1432363,-0.291527,-0.33539775,-0.6980042,-0.41053867,0.11766224,0.9171375,-0.19957839,0.18198313,0.18235137,-0.15615426,-0.12438543,0.19553192,0.13333026,0.16460146,0.45267376,-0.024916181,-0.6314217,0.42674476,-0.2930152,-0.30290273,-0.5590585,0.053962257,0.6442115,-0.58480746,0.45998514,0.5409019,0.26028168,-0.090482146,-0.52672714,-0.095131174,0.15072472,-0.2853467,0.3698068,0.31330284,-0.72123027,0.49942154,0.46201426,-0.15217318,-0.6525971,0.38631326,0.1542115,-0.017181598,-0.023570271,0.4816671,-0.1706381,0.02396204,-0.08858653,0.1313751,-0.37857673,0.27670753,0.15389219,-0.11178417,0.5094213,-0.19678956,-0.30434683,-0.50806195,-0.0034105342,-0.5692634,-0.14094414,0.2037878,0.0063222246,0.13696599,0.109555416,-0.028461121,0.45508906,-0.28486726,0.07690933,-0.045011528,-0.2189484,0.38872835,0.43139327,0.34025002,-0.43014085,0.726231,0.08894002,-0.07909342,-0.30308083,0.09607815,0.46345142,0.13182499,0.47564352,0.07765612,-0.04727867,0.283138,0.8921281,0.21186407,0.53217304,0.23728254,-0.05108372,0.15139759,0.021596802,0.08374635,-0.03284726,-0.42215064,-0.17768677,-0.14794974,0.32922286,0.41607806,0.07091452,0.5810241,-0.18861239,-0.21167602,0.0033071167,0.32993475,-0.15758643,-1.2052691,0.4186722,0.18048567,0.6958756,0.2872433,0.010210725,0.14836751,0.5567407,-0.10678674,0.18999097,0.2379962,-0.030246885,-0.5143244,0.6445055,-0.70618784,0.2631637,-0.110078916,0.057337943,-0.022246454,-0.08384848,0.37136972,0.689861,-0.054909404,0.07347952,-0.08055001,-0.2438681,0.17919964,-0.26322836,0.238641,-0.3592755,-0.23960432,0.66553587,0.40817386,0.37154514,-0.27472037,-0.0034893544,0.20273262,-6.41793e-05,0.24126591,-0.08987929,0.31522375,-0.16766927,-0.59175,-0.1969325,0.5261683,0.24913906,0.11086022,0.06500466,-0.2839817,0.30615166,-0.078392655,0.07424986,-0.098297045,-0.43231234,0.19326374,-0.32646105,-0.6288769,0.29282025,-0.29036018,0.22166292,0.3202434,0.02307183,-0.37061632,0.19080567,0.091874436,0.81272155,-0.14979908,-0.08242308,-0.30260053,0.20368245,0.31771672,-0.25969446,-0.200662,-0.2928622,0.16838568,-0.67637956,0.52786833,-0.19061224,-0.15139422,0.20617928,-0.10302593,-0.061594386,0.5509531,-0.30538177,-0.13189504,0.19698772,-0.16522624,-0.3074209,-0.20962617,-0.15859622,0.25983894,0.14016077,0.15990752,-0.1218876,-0.045429323,-0.28324866,0.15078467,0.041898813,0.1608963,0.5587943,0.26223826,-0.45327598,-0.142172,0.036315568,0.62378824,0.15902461,-0.13331409,-0.3307256,-0.6839794,-0.20252497,0.3110763,-0.037514143,0.30040687,0.103197865,-0.35736656,0.71618944,0.0034643784,0.9539373,0.013139362,-0.3622267,0.0071442174,0.5236277,0.041514937,-0.13323806,-0.29727697,0.8840171,0.45843422,-0.19899915,-0.06494487,-0.3256775,-0.012504564,0.1385472,-0.25410777,-0.13626331,-0.041276414,-0.7001557,-0.32652405,0.16274807,0.2789109,-0.0368574,-0.22315982,0.1247197,0.23823322,0.045075674,0.2692291,-0.4903671,-0.17917521,0.28116286,0.27377912,-0.018580444,0.110989004,-0.43621427,0.35361257,-0.7688672,-0.0075132963,-0.35806003,0.12982999,0.036703255,-0.2750759,0.15893973,0.1157505,0.29345348,-0.39331296,-0.27644542,-0.13576616,0.33276778,0.30356267,0.14448784,0.6722685,-0.18264714,0.008245707,0.10327916,0.55246377,1.0432845,-0.16119649,0.07938711,0.31059372,-0.38353345,-0.7460256,0.3395084,-0.50193524,0.15724947,-0.112399705,-0.32538164,-0.54536587,0.3281686,0.32907778,0.04688358,0.008259762,-0.6042604,-0.18853499,0.15327609,-0.42547792,-0.27071777,-0.32711586,-0.0320581,0.7152544,-0.13870206,-0.13151528,-0.05208725,0.48038325,-0.30266783,-0.5005193,0.06000551,-0.42512953,0.2811364,0.18030468,-0.124083474,-0.047554262,0.09574692,-0.46755087,0.27351427,0.12205373,-0.24722743,0.020136751,-0.3209902,-0.058675446,0.6658218,-0.22233714,0.14937727,-0.5588877,-0.51841646,-0.83921283,-0.3058546,0.30100894,0.07494717,0.15333432,-0.5905414,0.037375912,-0.01864318,-0.07451951,-0.04699012,-0.35922104,0.42920297,0.12197335,0.3106458,-0.114691205,-0.6614456,0.122071266,0.06335044,-0.13496555,-0.41541255,0.42381394,-0.113408394,0.7015982,0.07694304,0.061992984,0.34056756,-0.5706356,0.18693894,-0.1897975,-0.2994459,-0.8296303,-0.02479786 -756,0.28626725,-0.22461474,-0.5470066,-0.22422199,-0.26713648,-0.11605403,-0.17150748,0.36445013,0.3904377,-0.17925721,-0.24140716,-0.11393613,0.10741057,0.3323984,-0.14592123,-0.7336232,-0.21371414,0.17188102,-0.8794443,0.598437,-0.57147336,0.26833454,0.22461861,0.286931,0.18827713,0.25559554,0.2298371,0.02666459,0.07482877,-0.15367268,-0.20606148,0.1691798,-0.41223666,0.20238025,-0.15278201,-0.3868597,-0.07646803,-0.5152163,-0.0024214287,-0.75147533,0.18608016,-0.872839,0.6652637,0.10374537,-0.22416759,-0.21879353,0.4151217,0.37546873,-0.29296747,0.06035344,0.24445534,-0.10153171,-0.16272669,-0.28122258,-0.1400512,-0.51023746,-0.5445024,0.12187835,-0.61814004,-0.2078983,-0.08206839,0.30469352,-0.22285569,0.051473964,-0.13086225,0.5304157,-0.28547335,-0.08559408,0.37401548,-0.17730564,0.27414903,-0.53663737,-0.07549441,-0.11336822,0.4181057,-0.0892337,-0.45393696,0.19543554,0.45295414,0.34090915,0.265252,-0.3537167,-0.3191791,-0.17857993,-0.15319894,0.32168412,-0.23438257,-0.3981932,-0.2737003,0.14632754,0.47035536,0.45886925,0.16689377,-0.29174,0.029937776,-0.1284511,-0.27077496,0.7328556,0.43195322,-0.39714137,-0.33268675,0.39911148,0.48265037,0.19226728,-0.2446344,-0.10905742,-0.044852298,-0.61969846,-0.1590506,0.1512612,-0.08772791,0.4443283,-0.15218888,0.07384223,0.71665686,-0.016603261,-0.1914394,0.27244782,-0.07469475,-0.29693273,-0.2419985,-0.15586801,0.24355693,-0.6586724,-0.10535566,-0.41900942,0.67171055,-0.11025679,-0.73101145,0.3522776,-0.6724417,0.14350685,-0.06953564,0.5880361,0.9211661,0.58088595,0.4247382,0.69506735,-0.18433523,0.070879705,-0.29091802,-0.25849357,0.15296541,-0.23125906,0.07256619,-0.68205285,0.042693418,-0.10741177,0.081355095,0.1723463,0.5974019,-0.4872901,-0.26709065,0.3332156,0.5559782,-0.25029948,-0.2908531,0.690497,1.0727915,1.1705495,0.05060512,1.2975472,0.18197274,-0.2219853,0.010926132,-0.3886744,-0.5974138,0.35597125,0.33118537,-0.57819206,0.49659395,-0.20898731,0.17095149,0.23893411,-0.26272935,-0.0019261712,-0.0122710345,0.3414472,0.028914591,-0.06512045,-0.42260984,-0.2955518,0.11664587,0.050489377,0.29468426,0.2250117,-0.2978964,0.3388233,-0.048940416,1.2832001,-0.0770991,0.03697085,0.10852874,0.4665996,0.3266475,-0.21166384,-0.0702159,0.3299367,0.26971483,-0.020486703,-0.4793038,0.25043035,-0.2761419,-0.4240781,-0.11940997,-0.3857778,-0.12258646,0.064433,-0.29129267,-0.23363326,-0.2339238,-0.48156628,0.4066973,-2.756627,-0.41153672,-0.21645463,0.23594709,-0.21792042,-0.3016454,-0.20238467,-0.5209007,0.33777335,0.2606557,0.50506204,-0.6626356,0.6688366,0.49925494,-0.6442426,-0.26953307,-0.76432234,-0.0034909844,-0.11530619,0.358645,-0.031351645,-0.22853385,-0.11615246,0.20549762,0.6754508,-0.024974281,0.11460793,0.52483445,0.38528237,0.029553572,0.6466508,-0.016938098,0.6484738,-0.2712516,-0.249328,0.35107318,-0.27573174,0.15188591,-0.03364561,0.029939817,0.65483683,-0.72687453,-1.0114379,-0.5995262,-0.11088309,0.9804244,-0.28870097,-0.32754502,0.113652684,-0.2585659,-0.2523706,0.19296838,0.6285442,-0.08875897,0.008136828,-0.7400623,0.066253625,0.011073257,0.24851108,0.04628865,-0.14490864,-0.4700582,0.70145065,0.012508909,0.66905946,0.22529407,0.2203349,-0.5780869,-0.3303477,0.17496608,1.052095,0.27012706,-0.04863499,-0.20583211,-0.3028694,-0.34692177,-0.10707011,0.13642268,0.5948007,0.5836175,-0.010819959,0.09483892,0.4863234,-0.14089122,0.018126288,-0.13411987,-0.20955978,-0.11482283,0.123998456,0.56111854,0.73125845,-0.06684541,0.66166306,-0.16683777,0.40835568,-0.19871962,-0.57778686,0.8006633,0.6453964,-0.0925425,-0.18189412,0.76270574,0.5245538,-0.22899051,0.5649677,-0.5333834,-0.39118254,0.4482832,-0.18536873,-0.43228474,0.15601832,-0.3434122,0.15381889,-0.9193614,0.081317745,-0.259219,-0.35476983,-0.47876844,-0.061253484,-3.036619,0.25257963,-0.099681765,-0.07228686,-0.26670554,-0.032286514,0.2603815,-0.76134807,-0.752285,0.061591163,0.25348982,0.6792963,-0.076518536,0.18381466,-0.15619387,-0.4305973,-0.066083394,0.2776476,0.024460107,0.24723762,-0.18466274,-0.37531015,0.02037821,0.01448375,-0.5363889,0.13257845,-0.68991786,-0.3238138,-0.012886806,-0.7517731,-0.28228238,0.56491816,-0.40330732,-0.058061976,-0.24736619,0.12819347,0.11326292,0.23977022,-0.040876526,0.09467425,0.28540966,-0.10537579,0.19302602,-0.18983275,0.36998698,-0.14251523,0.34616372,0.095689304,-0.040370304,0.328143,0.4839982,0.7251763,-0.19242652,0.98945695,0.43661252,0.05562726,0.12105236,-0.18740213,-0.17794402,-0.55160123,-0.24527395,-0.101899885,-0.44812003,-0.3599306,0.027866116,-0.12756662,-0.9692762,0.795312,0.091722585,0.25921702,-0.037383646,0.38851652,0.3917822,-0.17802112,0.18140012,-0.17064448,-0.26379302,-0.43520355,-0.24727201,-0.63389575,-0.42020023,0.091010034,1.0525223,-0.34123778,0.2030632,0.01748767,-0.1506329,-0.013805757,0.1642975,0.14925025,0.38478884,0.44718096,-0.17499894,-0.5598045,0.2154517,-0.13351704,-0.12439539,-0.3079219,0.26945296,0.777592,-0.6340507,0.516072,0.28849658,0.11172384,-0.3089993,-0.5820255,-0.12997933,0.07919123,-0.18595223,0.6356794,0.3180461,-0.8041435,0.57633215,0.4160844,-0.38309416,-0.8075352,0.4005972,-0.050462227,-0.25221696,-0.27879158,0.3688686,0.24794771,0.0016830564,-0.35034236,0.22275357,-0.29832536,0.115276694,0.0313394,-0.0978312,0.36337408,-0.13108845,-0.3913901,-0.80636233,0.15164892,-0.5633223,-0.4327229,0.3486253,0.15780784,0.017146775,0.32420692,-0.11185363,0.3787144,-0.34459016,0.15982582,-0.06657814,-0.22334568,0.1582425,0.39038816,0.33397555,-0.35461625,0.5000083,0.022546893,-0.0808822,-0.18795983,-0.2143534,0.44609237,-0.07255675,0.41991225,-0.1658359,-0.20794769,0.5892396,0.5890398,0.064337924,0.20632716,0.16627328,0.037620377,0.22774605,-0.022145666,0.20154274,-0.051285014,-0.44544443,-0.084843695,-0.12971698,0.13746367,0.5241099,0.2658749,0.24518925,0.054444045,-0.17110352,0.00017491977,0.13747878,-0.06004979,-1.313765,0.35460797,0.3331443,0.81070846,0.5652326,0.05378181,-0.21401651,0.7941654,-0.4642035,0.08835722,0.42725834,-0.031971898,-0.33837327,0.7146303,-0.65067804,0.40588555,-0.24399197,-0.05645114,-0.045936927,0.02071797,0.3031225,0.9711523,-0.28110236,0.10054064,0.02115637,-0.14359307,-0.007383103,-0.32891047,-0.035620224,-0.516251,-0.44617012,0.9472745,0.1877377,0.5337096,-0.23207796,-0.032592118,0.12257173,-0.12400498,0.2186592,-0.115101196,-0.089282274,0.12364966,-0.5381149,0.03827845,0.6152165,0.32908627,0.20219499,-0.10971209,-0.1820047,0.09758822,-0.10099089,-0.100613594,-0.17853542,-0.4935901,-0.06792634,-0.26136526,-0.46773982,0.5287139,-0.40143856,0.015916621,0.21887927,0.067968905,-0.05238773,0.3921851,0.19805978,0.5541838,0.16265689,-0.029042011,-0.15273996,0.20952566,0.008396084,-0.22063331,0.017670443,-0.48528895,0.193693,-0.71046036,0.6466715,0.005924868,-0.69892025,0.18863104,-0.13875116,0.080702074,0.5288122,-0.18715835,-0.13879174,0.118055224,-0.35652605,-0.2212921,-0.20494698,-0.24273236,0.3632504,0.18554713,-0.038102806,-0.23759957,-0.16428958,-0.08293802,0.46603176,0.032934297,0.46106446,0.27809685,0.10107871,-0.058568407,0.29939964,0.2013523,0.5063952,0.20174193,-0.06088124,-0.523125,-0.11358833,-0.2576889,0.11955916,0.0073857545,0.09019514,0.02118853,-0.22228843,0.8608311,0.026675263,1.4052097,0.008853704,-0.50898045,0.112610675,0.5403356,-0.11467584,-0.08805127,-0.37825742,0.90297264,0.51395977,-0.08311248,0.007491941,-0.6804982,-0.18131667,0.27924594,-0.41924438,-0.18672486,0.023592815,-0.6356864,-0.4883474,0.31701538,0.11792465,0.082585834,-0.1097393,0.13139035,0.030924683,0.105770715,0.32377622,-0.59028107,-0.019969612,0.13563396,0.27784967,-0.02679086,0.08795226,-0.5583822,0.33455077,-0.7939144,0.28823745,-0.32837328,0.15697126,-0.32861584,-0.41609013,0.19885711,-0.06569619,0.31907773,-0.21350186,-0.40109006,-0.055028643,0.5611033,0.016317388,0.1932504,0.6214792,-0.30209735,0.010136639,0.1477295,0.5729317,1.3450961,-0.34409395,-0.110148616,0.2031132,-0.40521368,-0.72723436,0.33991277,-0.36180368,-0.06201734,0.1314063,-0.46030894,-0.32110232,0.28120425,-0.016006986,0.24887522,0.091205396,-0.5505912,-0.10499573,0.18889605,-0.28577188,-0.15793826,-0.088435434,0.3533243,0.6279168,-0.1206763,-0.35713503,0.005576094,0.47734943,-0.18036611,-0.63400865,-0.12431123,-0.22090714,0.4317441,0.123575665,-0.17459811,-0.02858416,0.022312349,-0.52979535,0.02172789,0.3099781,-0.37620568,0.1947732,-0.3543667,-0.13760258,0.9622159,-0.15922584,0.10739233,-0.4742367,-0.57494795,-0.7765375,-0.29766232,0.03275695,-0.049952578,-0.0879941,-0.48970258,0.033732604,-0.14014693,-0.30059096,0.23921819,-0.50253487,0.47740662,0.08704301,0.48901424,-0.31237385,-0.9574817,0.15697728,0.15185426,-0.032248348,-0.7371171,0.6260594,-0.029718032,0.99303716,0.049343973,-0.07604881,0.13412437,-0.6392962,0.13644935,-0.29971367,-0.08074298,-0.7528227,-0.05530856 -757,0.6793936,-0.2915211,-0.6372118,-0.15873557,-0.489976,0.07594736,-0.19162042,0.5110923,0.14286372,-0.48000348,-0.07176316,-0.10243988,-0.122075565,0.07049103,-0.09615502,-0.44966614,0.005231466,0.26359913,-0.607435,0.56067765,-0.25505143,0.28678113,0.06988132,0.33717775,0.37369123,0.11823568,-0.01022014,0.19278295,-0.021678675,-0.4093748,-0.26898348,0.36151215,-0.54249746,0.19826598,-0.09823547,-0.42056084,-0.14298339,-0.5779503,-0.32801566,-0.8098856,0.17976156,-0.87797505,0.5640793,0.026221722,-0.30854917,0.047746167,0.4255566,0.32025206,-0.017093163,0.07462819,0.22654994,-0.29778928,-0.066709384,-0.24413154,-0.13904968,-0.4797725,-0.6828843,-0.15466505,-0.44803447,-0.11592217,-0.26652488,0.27999043,-0.23818026,0.057526164,-0.21854584,0.7641783,-0.26190418,0.05275892,0.30089822,-0.09849569,0.17695157,-0.7306114,-0.11919056,-0.19232324,0.25420055,-0.06972416,-0.24915719,0.19897789,0.20829926,0.36344388,0.099571116,-0.37066805,-0.3667102,-0.094996616,-0.01221271,0.5387517,-0.14928263,-0.26771602,-0.07883831,0.025693778,0.37085912,0.34538352,0.30161577,-0.23626053,-0.12845814,-0.09093637,-0.19087717,0.44155857,0.44876352,-0.37558094,0.028558772,0.417631,0.55581784,0.1522309,-0.3561923,0.00027468055,-0.17757154,-0.50991446,-0.044765573,0.20788065,-0.25097173,0.4110956,-0.11768535,0.14471245,0.5841483,-0.09827996,-0.10666104,0.18492201,0.16392282,0.057301544,-0.37855673,-0.3418315,0.35263962,-0.36375856,0.23351929,-0.15738434,0.7874182,0.017049106,-0.6058553,0.3211119,-0.58112144,0.12287693,-0.028594691,0.39304242,0.7632587,0.48754752,0.2216738,0.71962255,-0.12512705,0.07441926,-0.053378224,-0.3003174,-0.21970244,-0.072069764,0.26140964,-0.5617151,-0.0037358124,-0.30696207,-0.086065575,0.086441144,0.86117786,-0.5471016,-0.3151215,0.32826445,0.86867136,-0.26918477,-0.08239026,0.89105725,0.9878063,1.1579432,0.106522135,0.7903512,0.108654164,-0.16259813,-0.08952261,-0.085500404,-0.43389964,0.29121655,0.40613124,0.12618287,0.20409176,0.16389298,-0.038439594,0.52423626,-0.32281628,-0.062901914,-0.08032586,0.14429158,0.047560543,-0.091348946,-0.401493,-0.2969423,0.032068603,0.14339097,0.07595331,0.2102955,-0.32832125,0.34374863,0.0014541708,1.4704139,-0.100394204,0.038874686,0.18876362,0.30752146,0.27085,-0.2176342,0.076254964,0.317543,0.32278246,0.11529057,-0.48095825,0.12052687,-0.33111244,-0.46130666,-0.2223314,-0.32620424,-0.26708117,0.06938532,-0.6178184,-0.23831233,-0.10983856,-0.3487591,0.26845896,-2.5544455,-0.15245944,-0.21527773,0.3619679,-0.235872,-0.47512603,-0.006162282,-0.46598256,0.32241404,0.29625392,0.43915218,-0.63101304,0.4773959,0.37022373,-0.5775416,0.07036298,-0.70630586,-0.1349186,-0.08691688,0.21947804,-0.06723827,-0.15378965,0.03577882,0.34652033,0.6200297,-0.04158635,0.01452038,0.3316608,0.37045503,-0.21379176,0.6710971,0.025511514,0.5372327,-0.24016613,-0.19272709,0.47862297,-0.47615635,0.06268568,0.040163923,0.12246229,0.68302166,-0.36303186,-0.84109026,-0.6903547,0.05191129,1.0539441,-0.31049916,-0.42942894,0.20753276,-0.41302884,-0.25067052,0.055176526,0.5691142,-0.011110984,0.032723695,-0.8153493,0.029483087,-0.21785273,0.12898459,-0.1650059,-0.15094823,-0.59289885,0.8553574,-0.04204417,0.7395558,0.1734389,0.25923488,-0.45083392,-0.43491423,0.03315556,0.9509406,0.49658513,0.0160971,-0.2140666,-0.08207676,-0.3685437,-0.08521231,0.27977026,0.6732668,0.4544338,-0.12020461,0.09024192,0.308541,-0.106860965,0.01083892,-0.23915778,-0.275052,-0.1636655,-0.067910545,0.5931457,0.49279726,0.09598877,0.67396,-0.081960015,0.38263083,-0.15535896,-0.47100377,0.2267618,1.180225,-0.24592757,-0.5475084,0.6047137,0.42622462,-0.235862,0.29806784,-0.65833044,-0.35058498,0.3530302,-0.13241212,-0.4609117,0.17467712,-0.3945691,0.3048194,-0.7502621,0.1372088,-0.46858537,-0.6167969,-0.7023709,-0.31790355,-2.8005865,0.32301006,-0.3619188,-0.13110827,-0.043688245,-0.3456608,0.18533996,-0.6810268,-0.47481403,0.04075419,0.10692154,0.65320677,-0.12900817,0.08421527,-0.26868108,-0.4689853,-0.19507444,0.28277224,0.16486445,0.4536185,-0.08919434,-0.2777586,0.13967231,-0.013513958,-0.334795,-0.13627118,-0.6406816,-0.56180143,-0.13880643,-0.6271131,-0.37442118,0.54384184,-0.33035654,0.23195307,-0.16680601,0.04482498,0.04749609,0.12259811,0.14721583,0.14977908,0.07464416,-0.12107941,0.11244887,-0.35936034,0.11631912,-0.04681178,0.29436445,0.11470928,-0.038898863,0.259008,0.43255597,0.59874105,-0.0794966,0.985569,0.41687465,-0.09405615,0.25971663,-0.13309954,-0.25458178,-0.71109015,-0.36895692,0.15699029,-0.46893716,-0.4017837,-0.014769092,-0.3738748,-0.8635628,0.6030845,-0.028334996,0.14262746,0.09167545,0.52960277,0.6180429,-0.31213957,-0.09110013,0.084258035,-0.2506743,-0.38557935,-0.3032935,-0.6454908,-0.504507,-0.02589921,1.1756094,-0.33569396,0.010464085,0.09135066,-0.19677222,0.038354587,0.22603033,0.06637062,0.04664711,0.56355363,-0.15096147,-0.443648,0.3735198,-0.28143585,-0.022331733,-0.65272224,0.40551966,0.5809747,-0.656301,0.5779964,0.3163767,0.21025269,-0.33271396,-0.6972709,0.15215433,0.18323863,-0.28231624,0.49295354,0.44209564,-0.72154546,0.43942153,0.23531356,-0.07073684,-0.8973468,0.6565963,-0.100374915,-0.5316868,-0.20397627,0.43255022,0.2484473,-0.018806677,-0.23416947,0.23229653,-0.46115267,0.3241109,0.17445898,-0.070111714,0.00022079796,-0.2713159,0.0002438277,-0.69590235,0.095139444,-0.5706951,-0.41781288,0.26895678,-0.016754005,0.14984703,0.419594,-0.035924196,0.39679968,-0.33984017,0.053174693,-0.26546976,-0.30631688,0.4732174,0.4483785,0.48112726,-0.4077025,0.6536698,0.10103172,-0.16417554,-0.16697663,0.15415303,0.4133696,0.07736508,0.5431078,0.036722437,-0.061255388,0.26396322,0.6894238,0.10850836,0.5106497,0.063390456,-0.117877185,-0.02095437,0.054393113,0.28831872,-0.10046477,-0.6732869,-0.055235438,-0.30223942,0.3168164,0.5102142,0.08754847,0.2753125,-0.07114662,-0.30076796,0.07130084,0.12647253,-0.15463209,-1.240557,0.31028995,0.25831863,0.914112,0.41384172,0.109416425,-0.11001046,0.6869211,-0.27438387,0.051078625,0.27964786,-0.036593407,-0.10752516,0.47803935,-0.85816646,0.43521738,-0.11041506,-0.047713477,-0.07947936,-0.1023299,0.5341565,0.710538,-0.16341574,0.032306112,-0.0037961788,-0.35427907,0.10669607,-0.40392506,0.051218748,-0.5560395,-0.34546375,0.69809544,0.4699961,0.46562126,-0.28400758,0.024103243,0.04645554,-0.21643719,0.083888456,0.05523538,-0.022171015,-0.031679712,-0.5894773,-0.15215373,0.45904198,-0.06829827,0.08382876,0.08617781,-0.109985664,0.27348536,0.15772332,0.110823415,-0.048943654,-0.59505355,-0.040811077,-0.30500162,-0.42475444,0.34025276,-0.13322607,0.17714024,0.3112275,0.024838455,-0.05178809,0.337321,0.19512649,0.8890895,0.049638137,-0.067369245,-0.42098022,0.22173662,-0.026982263,-0.16740564,-0.16565323,-0.28877896,0.39070404,-0.71879876,0.39822984,-0.10460586,-0.51098555,0.16752075,-0.12011276,-0.07537475,0.48907074,-0.15953024,-0.19013558,0.024236768,-0.02802093,-0.19053894,-0.200832,-0.09511168,0.1849938,-0.066034004,-0.06885788,-0.16844197,-0.053535365,-0.1299709,0.4371274,0.03976133,0.41821337,0.46939963,-0.014108898,-0.38076162,0.03464622,0.24473938,0.49988902,-0.28352672,-0.13866217,-0.30334073,-0.4136569,-0.3715238,0.40671095,-0.026132096,0.27235276,0.05171214,-0.0767961,0.93898463,-0.20834374,1.1613626,-0.08586429,-0.41460308,-0.029766805,0.45410538,-0.04734283,-0.03797891,-0.34123108,0.9120605,0.60381746,0.002991356,-0.08176769,-0.30935848,-0.011494286,0.26598457,-0.17722166,-0.06500327,-0.012615588,-0.5335614,-0.18704885,0.119025216,0.18931195,0.209174,-0.14216705,0.12918904,0.5266802,-0.06751922,0.18802129,-0.48991916,-0.08930521,0.16551112,0.33929873,-0.20610933,0.05311167,-0.4874565,0.39404353,-0.57894987,0.07487373,-0.34063503,0.22675614,-0.171872,-0.23837087,0.36017188,-0.007966122,0.32789353,-0.4926937,-0.26152426,-0.05183044,0.47553802,0.11712387,0.07570258,0.58319503,-0.24826086,0.0052741095,0.15278691,0.56234264,1.1257885,-0.1738621,0.003384512,0.13968919,-0.46380723,-0.6269052,0.30626452,-0.28585804,-0.0008498803,0.24408208,-0.26767057,-0.38216716,0.40776274,0.32770723,0.12846205,0.061811663,-0.6490872,0.0026106834,0.31298622,-0.4216439,-0.061625823,-0.24805225,0.18957436,0.5609739,-0.17987125,-0.35473126,-0.029292837,0.37585643,-0.0027475134,-0.55377716,-0.012320252,-0.48760262,0.25250596,-0.052163713,-0.37927812,-0.20263892,-0.025423147,-0.490289,0.061056904,0.24320437,-0.20118272,0.071608976,-0.22721237,0.050559282,0.80895686,-0.16196485,-0.117627,-0.4658339,-0.5312624,-0.71108574,-0.3123958,0.23489872,0.079982705,0.024281848,-0.6609429,-0.17609185,-0.37313238,-0.2240793,-0.1126634,-0.3908462,0.3569767,0.19062719,0.5478113,-0.082727976,-0.87045276,0.29538253,-0.02256567,-0.13086455,-0.47295237,0.49011642,-0.047046266,0.8396146,0.017453056,0.16921388,0.22919084,-0.41824642,0.100889005,-0.26540864,-0.09455019,-0.73015237,-0.13864863 -758,0.3778707,-0.15871754,-0.6709458,-0.07328148,-0.3772824,0.0460575,-0.33163396,0.053203724,0.17960325,-0.4664475,-0.14927734,0.027161406,-0.09564758,0.35277632,-0.113068946,-0.5379216,-0.07375953,0.2512415,-0.7635174,0.50361043,-0.5214734,0.5491418,0.2494294,0.02863052,0.033117108,0.3511492,0.21257785,-0.16254981,-0.14526705,-0.20587537,-0.030865274,0.03441251,-0.6577789,0.37140134,-0.14991131,-0.30903143,0.012998064,-0.37557632,-0.11299683,-0.61274993,0.07102485,-0.77796,0.64798605,-0.12384483,-0.17386886,-0.11217962,0.23691478,0.59259945,-0.15560126,0.13494733,0.30727294,-0.2905901,-0.36220092,-0.32105687,0.04121417,-0.4791095,-0.31675583,0.0075172065,-0.6095658,-0.30522987,-0.22452192,0.18504912,-0.27188128,0.16966392,-0.25129727,0.26923832,-0.35838038,-0.031329967,0.2159432,-0.18211715,0.17285423,-0.58525246,-0.028215801,-0.12634979,0.48014754,-0.21306644,-0.13941796,0.41002673,0.154849,0.4437806,0.29022038,-0.19618791,-0.100643605,-0.17911546,0.3562221,0.47584453,-0.06554054,-0.11736291,-0.29156455,0.16439782,0.3655189,0.219543,-0.02257237,-0.4232883,-0.00070827606,-0.1620031,-0.20168537,0.4398848,0.4458352,-0.2207703,-0.13685127,0.3272189,0.63239807,0.22678232,-0.16732128,-0.039250787,-0.08037493,-0.45582497,-0.13809477,0.14117017,0.006621011,0.4127958,-0.025705464,-0.082789116,0.7243303,-0.17377321,-0.24024442,-0.10864168,-0.12178983,-0.06333911,-0.07518915,-0.15322636,0.1709749,-0.5865659,0.0288349,-0.24465677,0.7030743,0.029155228,-0.8237584,0.45808133,-0.5654511,0.0763549,-0.014684669,0.59314823,0.6367477,0.6021425,0.097559914,0.8428872,-0.40318954,0.24502282,-0.14487743,-0.33590543,-0.03701845,-0.2587753,-0.057105422,-0.5038045,0.21932122,-0.29178315,-0.16331866,0.0020887058,0.34879047,-0.5987494,0.021437468,0.07494165,0.57019585,-0.39787596,-0.0019899209,0.8128604,1.1221429,1.1167086,0.12941304,1.218682,0.34326324,-0.23002486,-0.1029143,-0.24988894,-0.4943913,0.11582323,0.4229112,0.088410236,0.3141389,0.09019567,0.043743413,0.2732567,-0.3777325,-0.09621708,-0.06291676,0.51182663,-0.03590107,-0.16389206,-0.46807015,-0.12367686,0.06951387,-0.010538488,0.1022953,0.1883381,-0.24031843,0.4840067,0.18336535,1.1455623,-0.149741,0.041131187,0.04773272,0.29486626,0.25524244,-0.2190927,-0.09038889,0.33107388,0.34891096,-0.07123182,-0.5871437,0.0012761832,-0.21994954,-0.41679534,-0.19204634,-0.23102006,-0.06802171,0.08918942,-0.2206328,-0.2571444,0.1218092,-0.27824748,0.53659564,-2.5888393,-0.32984465,-0.13363175,0.29831356,-0.24741918,-0.346973,0.060061503,-0.49172133,0.303085,0.18324377,0.4380096,-0.41847217,0.51193625,0.339677,-0.5742117,-0.26138458,-0.6247008,-0.09575968,-0.041343953,0.5417947,0.014927904,-0.0793416,-0.18902527,0.048419356,0.5485944,-0.2341511,0.12849563,0.5177464,0.24729083,0.15743867,0.52726024,0.1819569,0.7135185,-0.32553482,-0.19430608,0.430368,-0.09068162,0.26220924,-0.11116816,0.08142976,0.34854168,-0.5053643,-0.7679344,-0.6875047,-0.39138755,1.2114996,-0.3090203,-0.4705576,0.09103588,0.025471417,-0.27555114,0.15540072,0.24709289,-0.015901994,0.19787937,-0.7515806,0.071457826,0.051259425,0.2849488,0.029328605,-0.0509042,-0.40838465,0.63406295,-0.12096879,0.4689506,0.37712708,0.36574465,-0.072622634,-0.28957456,0.05113099,1.1452998,0.3833354,-0.06810843,-0.17538263,-0.25851548,-0.08254308,-0.23690735,0.14406538,0.40232432,0.651435,0.029114582,-0.0369444,0.29039338,-0.19128896,0.14623706,-0.12092553,-0.2503695,-0.021604897,-0.034315016,0.4957568,0.56273013,0.027278988,0.5088924,-0.31749147,0.17858587,0.08906571,-0.5863811,0.64953345,0.7367642,-0.1589149,-0.17257811,0.4625166,0.5154815,-0.19426432,0.4928559,-0.5656761,-0.25530612,0.64930266,-0.14674991,-0.28916585,0.17044209,-0.35501158,0.31540635,-0.8870379,0.37912592,-0.42979506,-0.5151804,-0.43741027,-0.12546542,-3.1614876,0.23460366,-0.041683067,-0.075330764,-0.08398498,-0.02545995,0.2960098,-0.62800366,-0.58316994,0.16265137,0.1505797,0.5829724,-0.075007565,0.087440886,-0.11744837,-0.32869157,-0.031443875,0.29324505,0.103357986,0.22154911,-0.23198605,-0.29784578,-0.042152897,-0.20666467,-0.45648518,0.16662283,-0.55704653,-0.42187154,-0.11767108,-0.4455606,-0.22870782,0.6111071,-0.4735694,-0.003672413,-0.1973584,0.16511315,-0.072377086,0.045704387,0.033976782,0.30742946,0.32840785,-0.0908779,0.06916897,-0.32643622,0.3576061,0.0754871,0.24578173,0.15182234,-0.13021971,0.106836714,0.5127237,0.74758285,-0.13373022,0.944069,0.35654208,-0.18253602,0.10515575,-0.31910995,-0.34129232,-0.72752607,-0.37602216,-0.15000932,-0.4219941,-0.5902882,0.027722955,-0.24687259,-0.80977607,0.697837,0.0062143086,0.1735805,-0.06693546,0.40608898,0.2668232,-0.18538332,-0.12386646,-0.16204514,-0.18864837,-0.47289863,-0.38651377,-0.69085157,-0.46391764,-0.09114919,1.0686257,-0.25666317,0.23526828,-0.005038901,-0.3473963,0.17603867,-0.008398276,0.10427725,0.21058917,0.32263032,-0.09281765,-0.6869999,0.29721406,-0.084585115,-0.11477669,-0.49204782,0.36013952,0.7498857,-0.5328576,0.39585048,0.3966706,0.032628346,0.15824004,-0.442891,0.02424738,0.13873404,-0.31138358,0.45243445,0.122192636,-0.5625728,0.58837724,0.2920281,-0.50104487,-0.74641776,0.25447965,0.020993296,-0.06478606,0.109233595,0.2207763,0.08286096,-0.08917427,-0.29298943,0.21242078,-0.46683055,0.24531892,0.21190275,-0.014201411,0.071776256,-0.19161406,-0.40592727,-0.73467904,-0.03535746,-0.43355435,-0.17500047,0.15623775,0.032703713,0.0005681713,0.12609723,0.19126634,0.46743882,-0.26945516,0.05432333,-0.12254812,-0.35257822,0.2745088,0.46558437,0.36539367,-0.31127888,0.5407177,0.106185146,-0.11840451,-0.11023797,-0.031638715,0.4887744,0.13179626,0.20502742,-0.03343458,-0.07362366,0.25892088,0.6206649,0.22266702,0.39911932,0.06283593,-0.29475754,0.29536614,0.13468795,0.2222036,0.05535693,-0.29077065,0.07542704,0.0847189,0.07086169,0.47211885,0.30664024,0.38064176,-0.05692112,-0.20853806,-0.04714934,0.233558,-0.029165229,-1.1682382,0.5215,0.24359019,0.5995296,0.47743642,0.14824621,0.037221666,0.6773145,-0.56830055,0.06237403,0.2226598,-0.05558948,-0.41508818,0.48650685,-0.67997754,0.33881897,-0.11412017,-0.08284521,0.21571206,-0.004030359,0.29344738,1.0313565,-0.238848,0.04646069,-0.093775585,-0.17212638,-0.10524482,-0.2970802,-0.102411866,-0.37154076,-0.49883813,0.86219317,0.13916032,0.44440323,-0.20727839,-0.011621227,0.059331045,-0.26510468,0.30986273,-0.0689297,0.16537851,0.18115582,-0.37675148,-0.19257998,0.5321877,0.0061843633,0.21062975,-0.070519,-0.21498355,0.15073654,-0.18863538,-0.03993829,-0.0012145141,-0.5755898,0.033694983,-0.1845368,-0.34256735,0.25084648,-0.17987975,0.07993296,0.08914623,0.025521036,-0.13517304,0.2524441,0.13685423,0.7472418,0.20197228,-0.319168,-0.1811356,0.15721117,0.2936922,-0.2110171,0.31561154,-0.20533891,0.08963464,-0.7552317,0.46479315,-0.174593,-0.3651152,0.33132017,-0.14878224,-0.0128388945,0.49900946,-0.21694441,-0.1397231,0.21335761,0.015766962,-0.35198778,-0.2571109,-0.29919186,0.122163296,0.26380014,0.015822165,-0.10726168,-0.22102816,-0.13731517,0.48877925,0.055758562,0.460024,0.08632342,0.014429339,-0.3958421,0.030974556,0.10284608,0.2848104,0.11994408,0.023767225,-0.32284343,-0.39710867,-0.34605682,0.2034468,-0.10849745,0.12140497,0.034360904,-0.38840848,0.85601646,-0.10709658,1.2286073,0.024809768,-0.33382314,0.13417415,0.50496143,-0.10259797,0.15014566,-0.3965709,0.8664322,0.6331841,-0.02045794,0.056354802,-0.58886594,-0.20535745,0.20437972,-0.43269715,-0.11218414,-0.035262402,-0.47773615,-0.49504787,0.2137194,0.2298573,0.005849107,-0.0409482,0.11970353,0.12837979,0.18504384,0.2758903,-0.457395,-0.13563803,0.27390924,0.2940129,-0.07984293,0.057793543,-0.54721606,0.45844582,-0.7824752,0.25000668,-0.34594434,-0.019522572,-0.12492952,-0.24984951,0.16922374,0.06738681,0.1679164,-0.35971037,-0.47058123,-0.06619035,0.3930763,-0.09853938,0.0044672964,0.71172804,-0.30373028,0.12805924,0.14861518,0.36794376,1.0083503,-0.3518574,0.008714271,0.22758254,-0.35440403,-0.407639,0.33937094,-0.22145097,-0.08129082,-0.15173848,-0.35709578,-0.5474048,0.21146813,0.083381735,0.029210232,0.071988784,-0.70162374,-0.047928073,0.33652028,-0.3789705,-0.2305391,-0.074954264,0.3595181,0.681554,-0.38251907,-0.44138342,0.068505205,0.24463351,-0.35781604,-0.44541714,-0.17210414,-0.14137472,0.4096431,0.23090558,-0.21153723,-0.11461356,0.3926653,-0.45947707,-0.13247146,0.23463967,-0.39754587,-0.01496769,-0.2312901,0.053901818,0.66701716,-0.14233573,0.038475685,-0.62981665,-0.4690344,-0.9302027,-0.33938232,0.24945575,0.342378,0.033544675,-0.55887926,-0.0013309459,-0.13966538,-0.11217154,0.11740756,-0.6345919,0.37453502,0.18594739,0.35498267,-0.32594016,-0.95076144,0.13420364,0.16554716,-0.047349215,-0.5892812,0.49938953,0.0012121598,0.9450086,0.11392002,-0.15764411,0.03273218,-0.62107223,0.29267254,-0.21150139,-0.095760144,-0.78403175,0.04664435 -759,0.52531713,-0.17515919,-0.6469589,-0.2210141,-0.26120448,0.0003912151,-0.3231687,0.3768015,0.5122939,-0.36815682,0.027784018,0.013926054,-0.12069631,-0.017673539,-0.083990835,-0.7581051,-0.0125206215,0.21885324,-0.61280453,0.6476732,-0.45715946,0.13790537,0.022461075,0.35066536,0.059957385,0.104416676,0.013514949,-0.15980062,0.12279992,-0.2930403,0.015128399,0.15277684,-0.48642108,0.32612976,-0.14541733,-0.22229011,0.088869534,-0.29953456,-0.5059884,-0.8540233,0.05422443,-0.8234304,0.65189564,0.09245743,-0.43382555,-0.002457572,0.04596597,0.24778914,-0.11138178,0.05585455,0.24818444,-0.38360995,-0.50917965,-0.24546573,-0.35157415,-0.5709568,-0.6636749,-0.22966173,-0.56139386,0.16214077,-0.151144,0.2832101,-0.35849127,-0.11144471,-0.34111246,0.66126317,-0.40854883,0.14303897,0.16433391,0.029388055,0.35748553,-0.6190068,-0.059742756,-0.13668485,0.14747348,0.23664048,-0.32270375,0.15922679,0.21255529,0.469519,0.13247956,-0.2697089,-0.25400037,0.038169686,0.046001475,0.3697019,-0.09518321,-0.1690756,-0.2644109,-0.19345447,0.5462553,0.34008312,0.0362002,-0.40249705,0.108621165,-0.12767185,-0.28063002,0.62760645,0.66057414,-0.23743054,0.04843151,0.23072542,0.25945774,0.2719953,-0.2926652,0.20749967,-0.066629015,-0.5061201,-0.20063362,0.24126874,-0.18083905,0.3859572,-0.10165943,0.19086409,0.6162918,-0.058092296,-0.20658146,0.13980266,0.111900315,0.18939413,-0.4392426,-0.43820268,0.46367344,-0.74101204,0.022347728,-0.48001432,0.7113767,-0.20619933,-0.7506091,0.28108674,-0.53449416,0.084177054,-0.06599489,0.7671854,0.9262118,0.6513557,0.13659573,0.72106177,-0.34747937,0.07189412,-0.081780076,-0.21483429,0.3568252,-0.05499926,0.37327036,-0.42995504,-0.21517077,-0.1924213,-0.28803977,-0.085357785,0.57074296,-0.47711053,-0.23963667,0.14477207,0.75990784,-0.32373014,-0.042812675,0.82310927,1.3637346,0.8699365,0.23682615,1.2250334,0.40500483,-0.23935978,-0.12386962,-0.17409046,-0.9042307,0.24683629,0.23632422,-0.12809584,0.28467354,0.116790935,-0.13208185,0.4888993,-0.47666517,-0.22014873,-0.056326292,0.31593147,-0.23479016,-0.10309061,-0.3904242,-0.20846303,0.053603917,0.11036192,0.19580565,0.32007486,-0.18994062,0.38196182,0.2355882,0.9528218,-0.117469124,-0.072788276,0.11949468,0.32343474,0.21493694,-0.17902695,0.023664394,0.44192895,0.34966263,0.07148872,-0.5770513,0.21424529,-0.16596194,-0.2293638,-0.27123982,-0.24295683,0.053699333,-0.20140913,-0.21855943,-0.21880637,-0.10424899,-0.41291994,0.34926394,-2.4593568,-0.09124513,-0.15604624,0.35302058,-0.011317296,-0.14459945,-0.0653644,-0.5128691,0.5242732,0.2274919,0.49226528,-0.5613119,0.4771266,0.62932444,-0.48304835,-0.012247314,-0.8496792,-0.23945339,-0.11698861,0.48115614,0.019714603,-0.15525258,-0.020907564,0.11604088,0.48995593,0.22216997,0.10609212,0.29823607,0.48954535,-0.08820952,0.50100595,-0.038840745,0.5745212,-0.24058926,-0.22385432,0.1497232,-0.18963806,0.21120712,-0.32827815,0.07402766,0.5777246,-0.41238585,-0.6160923,-0.31895232,-0.11717369,1.24252,-0.3918148,-0.5655774,0.24773203,-0.38008907,-0.25440404,0.05699523,0.54777277,-0.23361276,-0.11165207,-0.8245443,-0.15011232,-0.031461723,0.24817957,-0.0082380045,0.09181701,-0.527525,0.6568008,-0.10099446,0.5510095,0.33021253,0.32065365,-0.2584453,-0.5757204,0.12878852,0.86351,0.28668314,-0.02270682,-0.35301474,-0.11618851,-0.082092986,-0.0015205826,-0.04078934,0.6491297,0.87338483,-0.24143516,0.0037010056,0.39920804,-0.40660906,0.023160543,-0.16440625,-0.5069159,-0.40203816,0.05558492,0.47333902,0.7413891,-0.046165314,0.4090875,0.06275453,0.3449094,-0.24469054,-0.5277026,0.41063437,0.8847129,-0.28795028,-0.2285597,0.7519067,0.5292333,-0.19316234,0.5828509,-0.57722914,-0.26681468,0.3981492,0.0740909,-0.6149999,0.28244337,-0.48519483,0.17485859,-1.0605838,0.44902164,-0.4258237,-0.8511235,-0.7837161,-0.013839909,-2.6186187,0.2604269,-0.43143812,0.0020993862,-0.17383139,-0.07621503,0.46000975,-0.45929983,-0.52239305,0.3013021,0.2003999,0.5081526,-0.16967784,-0.045248576,-0.23129323,-0.29682687,-0.2631933,0.25284836,0.29673237,0.2519719,-0.0729801,-0.5598263,0.008199534,-0.042168807,-0.24277203,-0.0513927,-0.7603697,-0.2773538,0.06431651,-0.6420347,-0.26253563,0.62903255,-0.26132938,0.10127539,-0.38197857,0.07998652,0.056791384,0.2792805,-0.17764577,0.28215182,-0.015909553,-0.05230892,-0.13106075,-0.19716616,0.13892865,0.038767762,0.31070656,0.19619259,-0.08406403,0.05933885,0.57843935,0.62383664,-0.12230204,1.0162497,0.4932116,-0.27259457,0.27167708,-0.14500538,-0.26376066,-0.72852343,-0.20566152,-0.030492691,-0.52877367,-0.35198003,0.0012919946,-0.3806426,-0.85215825,0.6332646,0.09244328,0.12063459,0.060803443,0.28769273,0.52956355,0.10734183,0.0016406818,-0.19691254,-0.25652584,-0.3560814,-0.15734465,-0.90744054,-0.3682587,0.118558116,1.3068283,-0.24115042,0.13375944,0.25968572,-0.34694782,0.10396135,0.24702728,-0.029978363,0.24287507,0.46512,0.18527563,-0.5324863,0.33839235,-0.19845282,0.043995492,-0.72007406,0.20224126,0.9201116,-0.9372725,0.60462517,0.5212502,-0.0049380683,-0.33570904,-0.6983816,-0.26464346,0.29079667,-0.22317271,0.60710764,0.28254586,-0.7551211,0.5909112,0.2266542,-0.08843557,-0.77262646,0.43871838,-0.18289542,-0.29677853,0.14533086,0.4611024,-0.10616098,0.14823608,-0.18860304,0.41190305,-0.19433287,0.36272684,0.043462012,-0.28303427,0.18445821,-0.16724665,0.08823327,-0.873363,-0.09354174,-0.7008892,-0.23515561,0.4013904,-0.11816234,0.21136972,0.20797506,0.14599678,0.3674828,-0.19100367,0.16702147,-0.24332158,-0.47346112,0.5976678,0.5993245,0.35292837,-0.36718896,0.55908126,0.038278613,-0.31698492,-0.12217176,0.24888827,0.33569404,0.020169256,0.50747997,-0.17526378,-0.07104133,0.22645903,0.903828,0.14348306,0.43588358,0.11248068,0.04744998,0.4093477,0.15770411,0.2545836,-0.23493567,-0.5990643,-0.089011736,-0.2126532,0.3427449,0.40323576,0.12423571,0.55923027,-0.10323727,-0.08926963,-0.052458603,0.14077938,0.2916862,-1.1850398,0.5084863,0.27364108,0.4809954,0.46121326,0.21274678,-0.10893539,0.6777269,-0.1441697,0.10718993,0.47125834,0.24360509,-0.19342913,0.42417198,-0.65789413,0.22449769,-0.21789598,0.14584692,0.22027647,0.08577003,0.55334336,0.92853725,-0.12674823,0.029526684,-0.18992968,-0.26087663,0.10124784,-0.18913688,0.20575915,-0.35647616,-0.471328,0.6916122,0.41716385,0.4468159,-0.18900597,-0.039180126,0.42360264,-0.09642142,0.26426727,-0.03404917,-0.252664,-0.06043098,-0.49350253,-0.1368995,0.4531837,-0.109349966,-0.09703088,-0.029115072,-0.015423076,0.10594857,-0.057043128,-0.017789325,0.041618146,-0.6396599,-0.21367045,-0.36938193,-0.5530295,0.575484,-0.16389258,-0.0021931466,0.14704065,-0.025028238,-0.2009506,0.097895846,0.13580428,0.63471526,0.0099876,-0.1922773,-0.11041465,-0.07672684,0.055321965,-0.31358457,-0.026926283,-0.22285691,0.2790013,-0.71162164,0.2899127,-0.2788592,-0.4339021,0.089990355,-0.20235583,-0.053058334,0.44192985,-0.3212681,-0.21907224,0.24120416,-0.20115313,-0.21395014,-0.29061666,-0.19639339,0.090639725,2.9844898e-05,-0.04336341,-0.16498871,-0.20195928,-0.14258195,0.43012565,0.19517274,0.19230628,0.4233028,0.22429037,-0.23052822,-0.21368589,0.27167585,0.5671083,-0.2122757,-0.101556495,-0.4108925,-0.35774526,-0.35564032,0.18316568,-0.067805454,0.3420803,0.06541751,-0.36513263,0.95761395,0.1307837,0.8659717,-0.12475114,-0.48609227,-0.04632101,0.54484844,-0.03491349,-0.0051606507,-0.29981893,0.94413674,0.62916654,-0.22646035,-0.092861615,-0.64435023,-0.009863453,0.25811523,-0.3017959,-0.17206797,-0.071879864,-0.7618331,-0.099266715,0.3382581,0.21462747,-0.12102425,-0.112898044,0.19226895,0.18775202,0.10963371,0.21017016,-0.68985856,0.114522934,0.20875299,0.22965251,0.0023417303,0.31373015,-0.3982851,0.1918851,-0.5561171,0.13075295,-0.48091656,-0.03436738,-0.035046082,-0.20823874,0.21180758,-0.0840277,0.34462523,-0.41016454,-0.2710692,-0.12976111,0.43277535,0.17319702,0.22417259,0.724742,-0.23892704,-0.11733062,0.14617218,0.6412591,1.3117694,-0.27831605,-0.0013032982,0.18242417,-0.2924262,-0.6291262,0.07982678,-0.46747702,0.043902915,0.056738406,-0.4635501,-0.48275873,0.24737188,0.08181327,-0.09805413,0.21271653,-0.49083933,-0.15326838,0.057641786,-0.25410992,-0.15759407,-0.13411471,0.076180235,0.6716693,-0.29498148,-0.40022925,-0.13811375,0.1458681,-0.3014589,-0.5534023,0.13251886,-0.3843415,0.06203546,0.21894611,-0.463183,0.067774855,-0.043972287,-0.5544773,0.12377783,0.2529134,-0.27060685,-0.018325286,-0.19271103,0.013609039,0.8388706,-0.08524428,-0.04463252,-0.40047094,-0.6570203,-0.62501854,-0.3693479,0.09470248,0.29833665,-0.028701672,-0.48383242,0.00091339863,-0.22612862,0.11511778,0.08945029,-0.5026506,0.54074425,0.18312037,0.48174372,-0.1969074,-1.075415,0.24976476,0.17804207,-0.45835394,-0.61597025,0.6935671,-0.21332805,0.90699905,0.026809296,0.16896689,0.012461066,-0.6483935,0.20546563,-0.3759859,-0.34972438,-0.8264958,0.044948876 -760,0.60273284,0.18321273,-0.692482,-0.033581592,-0.351266,0.1137317,-0.14481017,0.47486025,0.16952308,-0.38711974,-0.06540304,0.028181195,-0.078122355,0.28810087,-0.24286428,-0.6102429,0.0689801,0.24789187,-0.5284053,0.73553604,-0.1892815,0.49053282,-0.025853207,0.39890677,0.17040631,0.2372912,0.10457714,-0.012955883,-0.21931174,-0.4640219,-0.075174496,0.44884697,-0.52195877,0.06533199,-0.2036907,-0.43797252,-0.04477747,-0.37546316,-0.36820316,-0.7349897,0.16950396,-0.8258858,0.76600075,0.07607864,-0.32953978,0.13646756,0.32282537,0.17844321,0.09648251,0.028922414,0.14173461,-0.15373127,-0.022537827,-0.18871298,-0.22859879,-0.5563599,-0.4624586,-0.019806614,-0.6191749,-0.090098344,-0.2517719,0.23468132,-0.27558893,-0.13466546,-0.2826397,0.50754195,-0.34283796,0.14167024,0.08696646,-0.1844569,0.080239944,-0.70937437,-0.17410633,-0.041938264,0.2772403,-0.22873135,-0.14274421,0.28844258,0.24774651,0.30020002,0.0015361543,-0.18483093,-0.44296566,-0.15548547,-0.014025705,0.53405863,-0.32450074,-0.4446392,-0.094820194,0.050493706,0.66647756,0.113775186,0.22061408,0.035961654,-0.09634888,-0.22939894,-0.20304544,0.5897828,0.5984332,-0.27775866,-0.08655964,0.4507154,0.30852774,0.26267654,-0.21678543,-0.020950701,-0.27556872,-0.37334722,0.05660264,0.079106264,-0.12885426,0.46272883,0.028209055,0.25021663,0.49707112,-0.1997885,0.07937627,0.22338721,0.13378148,0.27365485,-0.12787142,-0.2727399,0.24956982,-0.59556955,0.1541872,-0.2472109,0.60029453,0.018276986,-0.63780624,0.28393295,-0.5347188,0.02570073,0.021238118,0.4540597,0.49088064,0.5639695,0.045861457,0.6660581,-0.12011457,0.087684646,0.10210729,-0.1333251,-0.10506761,-0.08954285,0.12910204,-0.4696174,0.11804866,-0.039499264,-0.12726471,0.12358253,0.59741485,-0.49328583,-0.33892322,0.24110794,0.7798995,-0.24286999,-0.24292178,0.9552428,1.1058995,0.9477908,-0.15638423,0.73884135,-0.052146655,-0.17015061,-0.3005258,-0.19079855,-0.39715904,0.25480372,0.39910105,-0.48318276,0.39613038,0.0188639,-0.12509625,0.18846288,-0.25028113,-0.42262793,-0.23232043,0.08098919,0.12200507,-0.11156927,-0.38906193,-0.33439475,-0.017701147,0.027097123,0.2989222,0.34512058,-0.3629332,0.18392885,-0.23280825,1.2236986,-0.017542204,0.028788725,0.059426863,0.55270344,0.2894844,-0.1383414,0.051711466,0.3320835,0.3410039,0.061267436,-0.41567472,0.09631638,-0.39217943,-0.52936393,-0.10686071,-0.38162428,-0.30669516,0.13124625,-0.5054379,-0.15958224,-0.09005622,-0.30498537,0.28807083,-2.6400032,-0.15045536,-0.14604224,0.32099083,-0.19290243,-0.363348,-0.20256984,-0.4103885,0.48114246,0.18358324,0.5310143,-0.40660384,0.46392873,0.32608703,-0.60184234,-0.109453216,-0.57345194,0.11069894,0.05399262,0.3146833,-0.23293726,-0.110725105,0.32653567,0.1658564,0.57486826,-0.03591289,0.1238103,0.3052249,0.36594075,-0.16508977,0.37596795,-0.035295825,0.57342863,-0.17381974,-0.20659082,0.3747025,-0.41529742,0.2973694,-0.3225862,0.08719136,0.58258957,-0.47507375,-1.049758,-0.44901162,0.054811623,1.1402882,-0.2296011,-0.5504845,0.10238581,-0.039868988,-0.2635962,0.05755582,0.585843,-0.063013196,-0.087779894,-0.5285128,0.009669832,-0.08686091,0.113281064,-0.10267018,0.11494552,-0.46815512,0.42492557,-0.058565255,0.54391164,0.1002086,0.4237536,-0.3005859,-0.4029983,0.0883276,0.8992917,0.44900465,-0.054193165,-0.20301715,-0.18077826,-0.30643257,-0.0510274,0.16194294,0.76013404,0.5973091,-0.042145878,0.11787286,0.23128465,0.102890775,0.20812032,-0.18398869,-0.34246254,-0.34638268,-0.039449397,0.5492574,0.33367085,0.105915315,0.7464519,0.037703227,0.26255137,-0.3556874,-0.48457035,0.42283216,0.9603787,-0.3173236,-0.35436416,0.6775886,0.45513695,-0.14263678,0.43539616,-0.68548054,-0.47844532,0.33509496,-0.242833,-0.4507112,0.27790597,-0.18721092,0.10025829,-0.8376965,0.36939648,-0.4180483,-0.6936528,-0.34503585,-0.10189269,-2.6520736,0.19505681,-0.27905455,-0.16172454,-0.27814284,-0.3960679,0.040890634,-0.5455675,-0.54228663,0.1407098,0.17246369,0.7870785,-0.21101178,0.14918835,-0.06864098,-0.55534536,-0.355233,0.25216454,0.14325717,0.41594675,-0.082196705,-0.29455012,-0.006313571,0.07407049,-0.38118908,0.08874277,-0.5593351,-0.37579933,-0.0839872,-0.49077588,-0.12352012,0.62545174,-0.28090718,0.18983842,-0.18169795,0.106929556,0.13350922,0.123204045,-0.0063994527,0.2801006,0.08118052,-0.15012093,0.30172735,-0.18287492,0.36510232,0.1312468,0.5339425,0.21367715,-0.0558048,0.21564077,0.5116572,0.504795,0.068874575,0.8465651,0.31698114,-0.09113779,0.31219342,-0.21221931,-0.22174914,-0.6351641,-0.3757153,0.21455356,-0.41137418,-0.41986665,-0.12336468,-0.3692661,-0.9082759,0.6082092,-0.025582476,0.3467658,-0.27326113,0.67809445,0.5262524,-0.28799373,0.028756078,0.009528892,-0.075933315,-0.3140661,-0.13022421,-0.6823793,-0.25996834,-0.16551474,0.9182234,-0.43369532,-0.06406967,0.057853974,-0.09964512,0.18235508,0.08583057,0.23887913,-0.034920674,0.3240268,-0.077952385,-0.638594,0.3961936,-0.5081499,-0.031431433,-0.45765236,0.29619068,0.5856589,-0.65915716,0.3774075,0.52602756,0.18169188,-0.31426272,-0.62508905,0.016997179,0.19605033,-0.2347532,0.3001799,0.3072426,-0.7280683,0.40726742,0.15563841,-0.31848145,-0.6267575,0.70943993,0.09416257,-0.3858517,-0.03902142,0.3873363,0.2509281,-0.09468857,-0.23322003,0.22765085,-0.36541915,0.39272884,0.17140995,-0.12313415,0.46467546,-0.27083185,-0.30585045,-0.73266983,0.16789587,-0.5641378,-0.38869214,0.25485852,0.05202904,0.12596291,0.29620865,0.0074030287,0.36896834,-0.53012747,0.11662091,-0.24162522,-0.30201316,0.5819101,0.3567355,0.7193085,-0.42890915,0.54101986,0.15148392,-0.21240522,0.2442018,0.11305376,0.61315817,-0.065074995,0.5048353,0.08051934,-0.050937414,0.27837622,0.5233677,0.22225937,0.3206204,-0.07232232,-0.21751747,-0.12784939,0.028391557,0.19193853,-0.09067214,-0.5534827,-0.24096571,-0.19861735,0.08918981,0.54624647,0.22152384,0.22638786,-0.044311166,-0.2932289,0.09460395,0.11175287,-0.056002192,-1.0903703,0.59461015,0.18008061,0.8826742,0.11618185,0.19254565,-0.21807541,0.57125175,-0.19505088,-0.0010556707,0.15626796,0.09877032,-0.15130265,0.53451556,-0.514846,0.50784117,0.15399821,-0.06901675,0.17253089,-0.15493515,0.4168473,0.9251916,-0.21342646,0.035471577,0.036329098,-0.3451198,-0.035204735,-0.23394087,0.119132146,-0.5982097,-0.2656507,0.7566777,0.21249032,0.25829992,-0.16114013,0.038766082,0.1160439,-0.2685624,0.18810235,0.056576185,0.3013598,-0.20752664,-0.45243573,-0.13219044,0.4413071,-0.2307351,-0.0062960046,-0.008290927,-0.13410152,0.22593035,-0.029674215,0.092076056,0.0495133,-0.58659357,0.12024034,-0.36204544,-0.2923345,0.28273997,-0.26659027,0.2572132,0.12598968,-0.048562054,-0.056372948,0.3624912,0.22895013,0.45070574,-0.13208626,-0.312221,-0.3806165,0.20520122,0.049463034,-0.22567026,-0.076867625,-0.16503723,0.28960675,-0.57400066,0.271403,-0.1839877,-0.25314122,-0.17967136,-0.11592744,-0.038145933,0.38956603,-0.06432177,0.046785288,0.15849091,-0.17309739,-0.3329484,-0.14652573,-0.19687974,0.0833786,0.20489763,-0.3080003,-0.19521272,-0.122603215,-0.022869619,0.31154513,-0.08183764,0.3897492,0.43700927,0.3255331,-0.3189624,-0.007809398,0.15265442,0.6082457,-0.12029954,0.124748535,-0.37873837,-0.26262322,-0.33035088,0.41958264,-0.15109931,0.2356685,0.1788297,-0.016708586,0.89253646,0.0034395542,1.1728052,-0.08914503,-0.4709994,-0.048937954,0.54937875,-0.13085653,-0.17438047,-0.22651991,1.2401222,0.39132997,0.07341174,-0.02577789,-0.3352227,-0.013659068,0.16378441,-0.3049042,-0.29713157,-0.030332455,-0.43831697,-0.37199873,0.17546037,0.22721864,0.105331175,-0.10756834,0.17801845,0.4122486,0.08731126,0.14756106,-0.7923242,-0.36222053,0.28904787,0.17790262,-0.148201,0.21892674,-0.49664977,0.31480843,-0.6374941,0.11518073,-0.08861769,0.16913657,-0.07296135,-0.38900995,0.31333756,0.12382049,0.39424023,-0.28060058,-0.4019229,-0.19647741,0.27182713,0.09815756,0.031381074,0.4360078,-0.1967958,0.070176624,-0.060743578,0.63023823,1.1370574,0.029231912,-0.07113866,0.27343222,-0.38544947,-0.7499911,-0.022635112,-0.48045936,0.15861808,-0.11822062,-0.3147032,-0.43924597,0.32769233,0.05143232,-0.081792794,-0.002538979,-0.69906014,-0.16482462,0.10407596,-0.24074435,-0.1427081,-0.34239036,0.20570742,0.6972942,-0.15027632,-0.30140972,-0.024059108,0.33932883,-0.11935879,-0.7164033,0.19257914,-0.34870043,0.18899472,-0.10168773,-0.3935841,-0.26744252,0.030029774,-0.46966466,0.3466649,0.20752189,-0.25509062,0.07396189,-0.22400379,0.1399763,0.65843,-0.19994535,0.18251882,-0.34776226,-0.5306813,-0.68372244,-0.45895603,-0.10082113,0.19719286,-0.10172402,-0.83458847,-0.034243193,-0.39938334,-0.21318428,-0.20935677,-0.25375792,0.2960956,0.14691088,0.41669664,-0.21371283,-1.0678729,0.26812157,-0.003091595,-0.21228191,-0.42835873,0.41469732,-0.055452522,0.883008,0.15557514,0.11935855,0.14262246,-0.44792178,0.109877326,-0.1716543,-0.06316952,-0.6383275,0.04139232 -761,0.47987297,-0.19524996,-0.60297495,-0.03620205,-0.28220594,0.17882295,-0.15346892,0.33189815,0.2425011,-0.5094523,-0.018471133,-0.047603536,-0.022975245,0.2135574,-0.23638763,-0.42293072,0.008873892,0.26709816,-0.43628967,0.75463337,-0.32098567,0.30688444,0.076997206,0.33974394,0.21244475,0.13867597,-0.042477574,0.0011730035,-0.25825325,-0.2638766,-0.12207576,0.52761424,-0.511964,0.14755462,-0.1479324,-0.38920775,-0.21260346,-0.4109662,-0.36010388,-0.7431561,0.10147527,-0.81098926,0.76523125,-0.011424061,-0.2876291,0.113703914,0.31408152,0.2108943,0.019014176,0.027074507,0.15835322,-0.119163975,-0.22129335,-0.12603225,-0.28900927,-0.6861664,-0.58153176,0.09811003,-0.5213006,0.030321991,-0.1401572,0.23383507,-0.30067554,-0.12607284,-0.14296237,0.48847237,-0.34563172,0.06950908,0.15178952,-0.0100582875,0.32795423,-0.64283943,-0.33278638,-0.23737437,0.2343347,-0.26450914,-0.34128192,0.08547594,0.384895,0.5864278,-0.011988549,-0.21761456,-0.3675909,0.032506984,0.012441155,0.46774432,-0.3363896,-0.5835427,-0.29060143,0.07640763,0.38413492,0.1895488,0.17633496,-0.27904707,-0.046521854,0.07911162,-0.38518256,0.6012688,0.3812806,-0.3603045,-0.169513,0.3449808,0.4664891,0.25170457,-0.26162174,0.021779176,-0.027180629,-0.5673207,-0.06440846,0.1943361,-0.07119739,0.52168685,-0.11329453,0.1860487,0.551733,-0.18113764,-0.11033848,0.2468438,0.14995568,-0.072068825,-0.16431384,-0.3051611,0.21165337,-0.3468629,0.05873063,-0.13750297,0.5885667,0.03126143,-0.8621157,0.22341973,-0.59529024,0.038087867,0.001953121,0.44926172,0.857658,0.5235482,0.13868055,0.6296136,-0.05748148,0.0037983814,-0.13377878,-0.27987832,0.04890887,-0.1813983,-0.07517919,-0.64083636,0.027084565,-0.04529883,-0.098217405,0.007862822,0.6317833,-0.5876252,-0.27799118,0.14977652,0.78270465,-0.27521974,-0.2785507,0.8813344,1.0257397,0.9280604,0.063053206,1.1737069,0.11283802,-0.12455138,0.07735084,-0.21057227,-0.57586926,0.35843557,0.2677967,-0.6205236,0.49169573,0.12469843,-0.09414151,0.3267485,-0.2652729,-0.12907115,-0.27825218,0.06308099,0.067838974,-0.23302498,-0.4580178,-0.3177644,-0.051694617,0.07259272,0.27441457,0.21976,-0.315882,0.35184595,0.20818032,1.5683591,-0.17878573,0.031891096,0.032393683,0.30304602,0.26376548,-0.102820076,-0.016257819,0.26078907,0.42614236,0.21296878,-0.4490219,0.06320394,-0.039240297,-0.47497457,-0.14319451,-0.31055024,-0.21247672,-0.11700806,-0.51983064,-0.15974264,-0.143606,-0.433348,0.3995566,-2.6049116,-0.18616103,-0.12559639,0.24190561,-0.21281853,-0.49769384,-0.16524902,-0.42323634,0.3165636,0.22341092,0.41378647,-0.6448855,0.58659446,0.3569269,-0.50077474,-0.2542457,-0.73908406,-0.1652386,-0.09507763,0.37347898,-0.07154628,0.00090606016,0.25390288,0.118834905,0.5268779,-0.27570564,0.113647535,0.24025649,0.5070005,-0.02095533,0.5444527,-0.093081,0.62333554,-0.21326551,-0.29347888,0.33713996,-0.39016807,0.16230133,0.12389339,0.13040237,0.41884565,-0.44528115,-0.9849668,-0.6510957,-0.23979534,1.1643369,-0.23513412,-0.4234277,0.08777244,-0.40078926,-0.3211235,-0.022446474,0.36146036,-0.10650061,-0.054448724,-0.89646524,0.0035167236,-0.12781836,0.20729843,-0.06877585,0.05881296,-0.546507,0.61261976,-0.07685992,0.5042448,0.35723847,0.26975816,-0.4299009,-0.53060424,-0.016976114,1.1345893,0.25197086,0.07053579,-0.26593864,-0.1392683,-0.32768357,0.12918511,0.1184258,0.6657753,0.48306096,0.05540268,0.107932284,0.26517937,-0.069061086,0.2593754,-0.20435932,-0.30500183,-0.31365436,0.11040215,0.6330138,0.45250568,-0.19831726,0.7169195,-0.27551147,0.3490719,-0.14429024,-0.54138446,0.5047322,1.3432348,-0.23730066,-0.36926895,0.73106754,0.60054785,-0.15715382,0.40034863,-0.5576411,-0.39659417,0.34722343,-0.110467404,-0.29238886,0.36956283,-0.34974307,0.13342057,-1.0586199,0.19794068,-0.2673465,-0.4607426,-0.51068485,-0.013366175,-2.7346983,0.24454863,-0.22485806,-0.20837337,-0.15886627,-0.31381035,0.32485324,-0.5834599,-0.5023268,-0.05356931,0.10991665,0.5967855,-0.020694971,0.076783724,-0.18061088,-0.30413634,-0.054497175,0.29807746,0.21927474,0.3435932,-0.1666995,-0.5325587,-0.11146196,-0.15728466,-0.35632372,0.0764905,-0.92701846,-0.46299455,0.0424963,-0.6049392,-0.3154358,0.6714146,-0.4317412,0.016504461,-0.21825273,0.08238124,0.023646919,0.28049004,-0.17366035,0.1588147,0.0657286,-0.08657244,0.11977736,-0.17853278,0.15027437,0.045102764,0.1855815,0.37569815,-0.14025357,0.3817143,0.52142966,0.66954315,-0.06828354,1.0066656,0.69307,-0.1227932,0.30805442,-0.25152212,-0.29630694,-0.6765776,-0.2154028,0.008743343,-0.49862468,-0.40912566,-0.08312189,-0.3171508,-0.79589003,0.7277146,-0.13277107,0.08404722,-0.10666296,0.5029052,0.6062929,-0.2388685,0.08607981,-0.09326111,-0.31527895,-0.3508399,-0.41012943,-0.52347225,-0.40868804,-0.23566565,1.2153277,-0.14731644,0.30803537,0.06216348,-0.10879292,-0.020053057,0.18210858,0.15233196,0.18561544,0.5578755,-0.16571093,-0.56627023,0.31961504,-0.46865818,-0.1838617,-0.44295946,0.2889667,0.7067015,-0.66143495,0.5218373,0.51520145,0.11653531,-0.2618177,-0.5290044,-0.018263848,0.11341213,-0.18836921,0.5866948,0.42750224,-0.6949941,0.49088722,0.38958022,-0.18054308,-0.64191014,0.6913508,0.014593359,-0.2522023,-0.15274435,0.37870455,0.12528743,0.10444999,-0.1538927,0.16334298,-0.37276286,0.19409296,0.107211165,-0.11553028,0.25271386,-0.22038509,-0.09110903,-0.8525042,0.086391576,-0.48600838,-0.3830745,0.2574436,0.0943122,0.15425867,0.25170815,-0.11297996,0.3395622,-0.5265145,0.038021706,-0.21250175,-0.2486083,0.24080181,0.47559488,0.48415774,-0.44390953,0.53453594,0.018796988,-0.17171784,-0.11154649,0.16618699,0.5737249,0.0055325585,0.41027144,-0.003907001,-0.2376083,0.36823446,0.6749944,0.15071917,0.40302497,-0.045310702,-0.108493365,0.106292404,-0.0052607963,0.2734661,-0.08055006,-0.54738873,-0.21819392,-0.08500104,0.20849879,0.5911065,0.049079496,0.27355957,-0.17653571,-0.31660467,-0.01728758,0.23622866,0.19299284,-1.4379852,0.2754263,0.1815779,0.8198911,0.28848785,0.041419905,0.05314517,0.5719211,-0.40085548,0.08827103,0.34358922,0.014381547,-0.32012406,0.5016746,-0.7394964,0.45957863,-0.11332882,0.13681485,0.014937762,-0.105842926,0.45847988,1.0031916,-0.16193987,0.12138762,0.08664814,-0.32399607,-0.00055322226,-0.40292662,0.115269616,-0.5754814,-0.29947045,0.7367827,0.52213246,0.51293933,-0.3093107,0.047174808,0.16783933,-0.15139027,0.14516804,0.14417848,0.1674431,-0.26778615,-0.75529695,-0.10698898,0.6758029,0.22108306,0.14383604,0.15402037,-0.28847918,0.36058277,-0.04441903,-0.032515153,-0.07306182,-0.58600366,-0.1286314,-0.52201235,-0.41205204,0.44774595,-0.27789986,0.07994052,0.23783775,0.05255331,-0.24765202,0.32560647,0.23445095,0.6733462,0.10307732,-0.04554956,-0.3824956,0.10826389,0.15790328,-0.20760213,-0.3487224,-0.18401247,0.24698299,-0.59382474,0.25868335,-0.12919734,-0.28644818,0.051073942,0.0015762687,0.13808337,0.4939422,-0.038424633,-0.033892337,0.07788617,-0.12477328,-0.29930007,-0.10807807,0.03987032,0.2689786,0.26466724,-0.17090143,-0.10441758,-0.1879666,-0.21208252,0.34901682,0.056816358,0.48771033,0.61887383,0.309487,-0.2781607,-0.036902048,0.3353618,0.6075217,-0.19399418,-0.0542952,-0.31237447,-0.32393357,-0.22861685,0.17644635,-0.11325122,0.23991632,0.08458308,-0.38545695,0.9568274,-0.067372575,1.2773402,-0.023804452,-0.42951155,0.027930435,0.37183216,-0.12244091,0.014511967,-0.33105117,0.98434705,0.5063817,0.042331148,-0.10472382,-0.39883745,-0.04506452,0.03572259,-0.29114512,-0.16661929,-0.0750432,-0.513033,-0.23811641,0.1393902,0.17258306,0.08787656,-0.06664595,0.18151648,0.24960075,0.025400344,0.17618497,-0.54718024,0.007841524,0.13418885,0.49632505,-0.067813314,0.11318391,-0.49982542,0.40694767,-0.48856595,-0.0033245205,-0.2786744,0.2440645,-0.11778244,-0.1752638,0.2656808,-0.16863617,0.3138806,-0.4159251,-0.19746472,-0.26557893,0.4832675,-0.07942849,-0.15535119,0.5170497,-0.24541087,0.11900927,0.07926772,0.48967022,1.0704771,-0.32441208,0.00668298,0.22108212,-0.3406685,-0.6534247,0.24099733,-0.4218236,0.22603635,-0.002916641,-0.15713698,-0.4332369,0.39571106,0.17098404,0.23846075,-0.030878842,-0.50561434,-0.04633189,0.29431263,-0.32682896,-0.16032107,-0.19794963,0.2392995,0.4923296,-0.29426283,-0.39124677,-0.049452607,0.41742185,-0.10751017,-0.54185766,-0.018852798,-0.42865822,0.27710325,0.14145678,-0.36472923,-0.08299112,-0.10293861,-0.4552888,0.03154315,0.40306422,-0.27876323,0.03409876,-0.3221835,-0.32064036,0.9550243,-0.21897475,0.28012067,-0.48391145,-0.538034,-0.7825328,-0.33292875,0.1327269,0.24256249,-0.050371516,-0.5951418,-0.042940576,-0.09753812,-0.510817,-0.0024527828,-0.37629744,0.52118737,0.113751456,0.36723274,-0.18841067,-0.77401733,0.2393838,0.06625556,-0.11916794,-0.59431994,0.5048526,0.06647858,0.9353604,0.22311006,0.26231685,0.3027766,-0.51800394,-0.21000725,-0.0025713763,-0.07461105,-0.95414704,-0.176524 -762,0.42374402,-0.33724806,-0.24028756,-0.09289405,-0.41463968,0.10973984,-0.29759604,0.1534936,0.22734848,-0.37090698,-0.09624693,-0.09664257,0.0005299803,0.32942313,-0.19704278,-0.5337596,-0.094299376,0.08093535,-0.66120493,0.5674571,-0.53193855,0.3930897,0.1576555,0.18024242,0.17796157,0.39349097,0.3403284,0.04048255,-0.2937675,-0.095124826,-0.13305397,0.21684587,-0.51654446,0.18200383,-0.22326303,-0.4571577,0.04674176,-0.42048508,-0.1394408,-0.64583516,0.15822057,-1.0091436,0.47316957,-0.19373831,-0.052087437,0.14913712,0.32927543,0.40483394,-0.27216995,0.1102418,0.1875475,-0.118539676,-0.1980435,-0.29370332,-0.07689838,-0.39463073,-0.40362743,0.0011087973,-0.5765499,-0.37397864,-0.21709028,0.17733867,-0.24005702,0.118093275,-0.032783233,0.34718904,-0.29235798,-0.036531102,0.27966046,-0.11941153,0.27561188,-0.63390535,-0.12686327,-0.10352731,0.39563733,-0.11558264,-0.1295849,0.47371203,0.30282086,0.42611948,0.22700895,-0.3304297,-0.25598323,-0.1641425,0.11975559,0.33861452,-0.26043212,-0.3022997,-0.26199576,0.08179395,0.34687102,0.33907276,0.16684501,-0.17378142,0.11346856,0.017923016,-0.17614552,0.48748165,0.43883893,-0.27420235,-0.30049896,0.2869016,0.48342866,-0.052700613,-0.24068363,-0.13233076,-0.05028647,-0.4760866,-0.19629338,0.24741004,0.018534916,0.43917704,-0.092117146,0.10491943,0.6906216,-0.20419076,0.00587406,-0.18132384,0.036053345,-0.20501226,-0.20100647,-0.18747431,0.24516328,-0.5970209,-0.044897582,-0.35440257,0.6142515,0.115596786,-0.8106011,0.3528819,-0.48546553,0.11165319,-0.067961566,0.3673016,0.646703,0.41947982,0.19862698,0.6719162,-0.2539404,0.11514275,-0.21244314,-0.29410803,-0.12052308,-0.338182,0.16572772,-0.51394856,0.18961884,-0.048608672,0.045389183,0.07296538,0.31328914,-0.44730702,-0.19078963,0.24065067,0.72209686,-0.32293332,-0.045750126,0.7599362,1.0713757,1.0376842,0.021065919,1.1160469,0.47245333,-0.115832634,0.071026474,-0.21237186,-0.44386834,0.1267513,0.47860932,-0.05097551,0.22371255,-0.10076207,-0.054385718,0.18120094,-0.33930728,-0.017933026,-0.052358042,0.33781487,0.2219925,-0.025153747,-0.4104002,-0.13566221,-0.06235785,-0.06742299,0.13110106,0.17444763,-0.12169234,0.40310246,0.06240488,1.3351392,-0.10090707,0.09110129,0.032690097,0.42565632,0.27918437,-0.21467894,0.025768656,0.18243098,0.19232346,-0.080239154,-0.4918107,0.056015793,-0.32529068,-0.4108293,-0.123048745,-0.335899,-0.1187326,0.1238881,-0.327924,-0.16262683,-0.04761466,-0.24794376,0.41671035,-2.8563137,-0.28796363,-0.109047554,0.25218153,-0.38056067,-0.26435435,-0.060359843,-0.61452204,0.425224,0.27430022,0.425098,-0.5551115,0.4201274,0.436422,-0.5927364,-0.11549136,-0.66132027,-0.03143712,-0.113527566,0.45710197,-0.083151676,-0.17921811,-0.058046773,0.21592125,0.58268553,0.09833524,0.10122498,0.5035273,0.3291,0.15750267,0.5762065,0.061172392,0.51444423,-0.44549033,-0.23558041,0.43915832,-0.24600495,0.11787951,-0.028025016,0.11992933,0.5529824,-0.45753494,-0.7844405,-0.6816264,-0.37233254,1.0898095,-0.24999237,-0.4681107,0.04725443,-0.020390056,-0.106075205,0.052577093,0.3603952,-0.0709258,0.22329083,-0.6461626,0.18651898,-0.021816142,0.0321387,-0.032127935,0.007541241,-0.46543086,0.49380827,-0.06169644,0.44929767,0.2763321,0.31631988,-0.27655652,-0.32348478,0.049657457,1.0042722,0.402073,-0.009449717,-0.076395795,-0.32589805,-0.18358429,-0.21664721,0.17565167,0.27502435,0.6276857,-0.0061983354,0.11876917,0.35596332,-0.16491969,0.11155309,-0.0121173505,-0.19617036,-0.111066364,0.19091594,0.4709991,0.53212345,0.007492763,0.511117,-0.2563667,0.27546215,0.024909452,-0.4874944,0.63960266,0.6135269,-0.13428223,-0.094821885,0.50309235,0.58188915,-0.33025107,0.48244053,-0.6050942,-0.31601676,0.608774,-0.27694425,-0.41836968,0.08321513,-0.2782333,0.1809418,-0.8072115,0.27476665,-0.29179865,-0.25055397,-0.5557133,-0.10836944,-3.2652805,0.1651677,-0.031056218,-0.17156783,-0.08438415,-0.21401499,0.26464775,-0.6575124,-0.5110687,0.23989335,0.04525316,0.6226266,-0.03044631,0.15735567,-0.2111516,-0.10402419,-0.1340001,0.30874014,-0.017538056,0.19052395,-0.20516175,-0.4260016,0.061704524,-0.1338616,-0.57249045,0.16845363,-0.47199357,-0.40568423,-0.116286226,-0.5161707,-0.3427304,0.50212693,-0.31783617,0.031466573,-0.23359591,0.056530833,-0.15776254,0.11820026,0.11068213,0.2306764,0.2733058,-0.11416215,0.047111712,-0.37378052,0.39880317,0.08511551,0.26367617,0.26976413,-0.08654095,0.16118383,0.38518435,0.54898024,-0.11718655,0.8461824,0.2832049,-0.056310564,0.24601814,-0.28514054,-0.19776925,-0.68340987,-0.34446636,-0.146895,-0.33517757,-0.4910104,0.049437806,-0.25829425,-0.713604,0.7160468,-0.026712835,0.40881482,-0.11655891,0.24206743,0.36223292,-0.23252124,0.002390515,-0.08569841,-0.082271434,-0.482938,-0.36237407,-0.7025631,-0.52593946,0.042122114,0.7919017,-0.18108311,0.058585607,-0.048139464,-0.17069137,0.1258632,0.087148614,0.0001342725,0.2602934,0.3940134,0.09778757,-0.6774614,0.34273988,0.023374423,-0.043434687,-0.3961077,0.20299588,0.66479564,-0.49617767,0.431762,0.37848625,-0.0032242257,-0.09858569,-0.53475475,-0.17085794,-0.0131099,-0.27913898,0.42442796,0.15612583,-0.8072314,0.5886347,0.21988826,-0.49113497,-0.735403,0.33899707,0.16785796,-0.17287245,0.03669767,0.23452096,0.3008383,-0.10130944,-0.17253229,0.18707526,-0.4777997,0.26876742,0.08180911,0.08103188,0.3817511,-0.07729533,-0.44301778,-0.6837723,-0.048415985,-0.38672993,-0.22689506,0.29034567,-0.076851904,-0.07044285,0.28117234,-0.058349706,0.4179901,-0.23862174,0.14800197,0.0710326,-0.34430906,0.23409186,0.39918208,0.40827942,-0.38524073,0.53221256,0.035597414,-0.13429624,-0.01577083,-0.10849781,0.3926818,0.15737838,0.122160874,0.0059954785,-0.26011288,0.35389066,0.4407273,0.1949311,0.35379684,0.19496365,-0.20277315,0.50312024,0.029349314,0.074749984,0.0100018345,-0.36796725,-0.061409995,-0.06565364,0.011894245,0.36832547,0.24155812,0.40859544,0.055850707,-0.14651126,-0.061255924,0.039025024,-0.14708437,-0.9991597,0.21435344,0.12648654,0.8197746,0.5580829,-0.008662611,-0.065035395,0.6736506,-0.36416432,0.07701499,0.42739317,-0.08535384,-0.42537352,0.7319307,-0.5164988,0.37238735,-0.121891215,-0.04661129,-0.024353694,0.15472296,0.31719327,0.79968476,-0.17513856,0.14037271,0.015376842,-0.19139026,0.04929713,-0.2323321,0.07672152,-0.3027618,-0.3220005,0.63705325,0.18687803,0.37868682,-0.11871248,-0.07276867,0.0751602,-0.2237936,0.21437278,0.03549964,-0.014946334,0.02593942,-0.4079786,-0.32243955,0.49200606,0.14965217,0.3391117,-0.13470548,-0.25599042,-0.014218569,-0.046328887,-0.097885445,0.056804657,-0.6013063,0.07846662,-0.15624188,-0.3848335,0.4558913,-0.2281291,0.03402859,0.12156916,0.043717057,-0.090206906,0.031231739,0.2803988,0.6918062,0.006901134,-0.32801217,-0.13654424,-0.017919669,0.25848264,-0.19832101,0.19379014,-0.17820598,0.04083294,-0.7490116,0.6435014,-0.14959015,-0.33730033,0.31097934,-0.17189795,-0.036106072,0.5069144,-0.07915853,-0.0021528602,0.1615148,-0.029571164,-0.4098786,-0.1657367,-0.23098992,0.1802575,0.23530744,0.020286262,-0.07566948,-0.17497623,-0.014036983,0.5859479,0.033851966,0.31577605,0.14085525,0.099355295,-0.3267467,0.17137754,0.18170226,0.31552416,0.07376561,0.052053057,-0.3849415,-0.32733864,-0.3000908,0.17127241,-0.00884771,0.12003994,-0.019470394,-0.50141644,0.8277486,-0.21531434,1.0706545,0.030562578,-0.3900048,-0.03119966,0.43896025,-0.23230758,-0.015474964,-0.30716935,0.84623444,0.6098928,0.029081374,0.008359853,-0.52641886,-0.16591746,0.3307246,-0.3559427,-0.118170455,-0.07820937,-0.40831023,-0.58717334,0.16349413,0.17967632,0.06962771,-0.10987899,0.0037461668,0.117739454,0.14252606,0.4130914,-0.54521465,-0.2857371,0.2901808,0.29715815,-0.12720284,0.21850227,-0.413601,0.35311872,-0.6946279,0.17480311,-0.2805779,0.07717449,-0.16996628,-0.21877387,0.08577429,-0.003580939,0.3341937,-0.23026316,-0.5704889,-0.043076515,0.46159655,-0.054434493,0.062634826,0.5862301,-0.22939274,0.078559786,0.015019428,0.46136683,1.1987906,-0.2747512,0.047236778,0.320604,-0.37371248,-0.52814984,0.42682582,-0.21369983,0.052919406,-0.07772009,-0.31969735,-0.38164425,0.19500704,0.30452377,0.111973464,0.015610501,-0.43285096,-0.11263037,0.29945797,-0.32369882,-0.26086697,-0.20176776,0.27226624,0.62465787,-0.31169108,-0.13016227,0.019081771,0.40632045,-0.26083878,-0.39642787,-0.14089292,-0.10862355,0.37993655,0.22204143,-0.14215225,-0.15010172,0.15332863,-0.45683208,-0.12528908,0.15132296,-0.40419042,-0.058639813,-0.28266728,-0.014021274,0.81299824,-0.064900145,0.077445745,-0.56736124,-0.4350809,-0.84394896,-0.4863636,0.19715719,0.13607636,0.077600084,-0.36849558,0.0600182,-0.13039558,-0.20256555,0.14422141,-0.45623106,0.3173564,0.17703766,0.41510788,-0.30116707,-0.6931578,0.08027474,0.17970784,-0.007320989,-0.41388413,0.6375737,-0.066583484,0.8325795,0.095526814,-0.105980456,0.09779638,-0.4253137,0.12163213,-0.29866248,-0.16244392,-0.6376736,0.09525204 -763,0.29015228,-0.098057285,-0.55431783,0.0002502203,-0.12413079,0.04092424,-0.13742177,0.39552116,0.32730952,-0.23131265,0.028428646,-0.09097253,-0.036870304,0.17633584,-0.06375677,-0.4267107,0.099412076,-0.008301882,-0.46355093,0.5675625,-0.38046157,0.23592854,-0.17916924,0.46064356,0.117386274,0.19998361,0.048100058,0.13607444,0.030026145,-0.30000624,0.03629938,0.40716758,-0.5884124,0.31807432,-0.10036784,-0.16832985,-0.034030672,-0.41061264,-0.45513546,-0.78501713,0.18792123,-0.5403168,0.48151907,0.0006123225,-0.29714185,0.09895758,0.11796986,0.108710974,-0.11606029,-0.14185813,0.08188723,-0.18060312,-0.04690492,-0.3113571,-0.1688229,-0.33468053,-0.5257917,-0.03678316,-0.45950565,-0.033188716,-0.41398796,0.20501947,-0.41032627,-0.1416108,-0.19149698,0.5523471,-0.3770823,0.27504072,0.1379746,-0.15964495,0.15408853,-0.6965708,-0.243433,-0.09439442,0.13381548,-0.094474874,-0.38653752,0.35959733,0.31659207,0.30383044,-0.0035506983,-0.07977023,-0.32517463,-0.057658445,0.02017091,0.4207157,-0.18305896,-0.54875827,-0.14272645,-0.0014905533,0.11378999,0.29259196,0.019810796,-0.30796215,-0.100312196,0.10467809,-0.23009835,0.59036624,0.6050937,-0.21848351,-0.2715685,0.22867604,0.342972,0.38844126,-0.13013862,0.019282715,-0.01375914,-0.6155969,-0.2144884,0.048386525,-0.040108766,0.43118432,-0.042492915,0.28724143,0.69613254,-0.15824512,-0.31295034,0.20371078,0.0847472,0.097190656,-0.33739492,-0.07672512,0.13265502,-0.3686313,0.18683742,-0.045778133,0.7123635,0.14721319,-0.62126607,0.3553115,-0.48913682,0.10251915,0.018281123,0.58906764,0.8225356,0.4888167,0.40626782,0.73921984,-0.25065547,0.08560468,-0.13236217,-0.33128172,0.013016661,-0.15073362,-0.010790308,-0.41939458,-0.11094194,-0.07249306,-0.01241682,0.17552692,0.5518401,-0.56962144,-0.21473286,0.074920624,0.81910974,-0.13436626,-0.08037555,0.6723823,0.9949828,0.975515,0.025343288,1.0449262,0.013613205,-0.06885772,0.13713087,-0.13336986,-0.6973599,0.3410037,0.20461203,0.07355166,0.05828185,0.008720288,-0.18379946,0.386375,-0.23420066,-0.22873642,-0.08477557,0.5054743,0.20067517,-0.17749906,-0.14937371,-0.27485868,-0.0442195,0.108570956,-0.0076775867,0.24028839,-0.21999566,0.39180842,0.06339627,1.5273678,-0.013536179,0.10428653,0.09557042,0.62215006,0.35015932,-0.1974249,0.09158022,0.27611256,0.13787904,0.20840819,-0.4814939,0.14324889,-0.21251869,-0.43615964,-0.08063305,-0.34494808,-0.1985775,0.03545412,-0.36482006,-0.13478817,-0.1728933,-0.22965214,0.5170704,-2.8786025,-0.1657407,-0.0072148284,0.40528324,-0.11470444,-0.31646326,-0.13240817,-0.48916575,0.47276175,0.19789194,0.5696768,-0.624305,0.16969019,0.48987758,-0.50557655,-0.17660253,-0.4468184,0.03353445,0.11073799,0.36398092,-0.03742973,-0.06883524,-0.062057503,0.01329213,0.4933922,0.037810914,0.17748626,0.33144102,0.33399716,-0.18567546,0.38935286,-0.07555493,0.44932187,-0.1920241,-0.26123294,0.4001365,-0.3893989,0.3581058,-0.16941123,0.024454674,0.539288,-0.39740834,-0.9571127,-0.39893335,-0.12366519,1.188652,-0.06079391,-0.6242247,0.27395782,-0.5987143,-0.24065046,-0.21312192,0.52354884,-0.14750977,-0.13667418,-0.52861285,0.08535733,-0.104075685,0.24433313,-0.048656963,-0.13143508,-0.3592269,0.64008975,-0.051652785,0.3219995,0.30638275,0.09479694,-0.5580473,-0.5350145,0.05199313,0.70243365,0.5247703,0.09893857,-0.18601684,-0.1544453,-0.18658523,-0.13618492,0.095954165,0.9154707,0.44729412,-0.07927014,0.2268412,0.32571873,-0.008060757,-0.015347784,-0.33856937,-0.17660001,-0.27858916,0.1462185,0.690922,0.6555888,-0.06397737,0.52540296,0.1116313,0.04840299,-0.14347933,-0.6016535,0.44698474,1.1973112,-0.20992248,-0.2939249,0.4075309,0.22760276,-0.24541989,0.24723658,-0.3682963,-0.3452961,0.5051296,-0.18270487,-0.47915572,0.26928127,-0.26825047,-0.10129724,-0.4390727,0.25317734,-0.4377135,-0.75631684,-0.5435316,-0.14594698,-3.3582451,0.18400006,-0.35007972,-0.14471093,-0.2930661,-0.13055709,0.07821624,-0.4156738,-0.45813674,0.116638586,0.21604054,0.6564297,-0.24858488,-0.0347023,-0.28340298,-0.3777613,-0.32905433,0.2013902,0.30725285,0.39825335,-0.087318495,-0.31086853,-0.05426156,0.092282996,-0.51160145,0.04370486,-0.36974335,-0.530616,-0.15500452,-0.5378733,-0.35838884,0.7742111,-0.24548493,0.032609668,-0.253263,0.03378775,0.01767181,0.24088942,0.11358503,0.1839829,0.013427396,-0.15177883,0.026688462,-0.24219881,0.1561415,-0.07993818,0.41695264,0.3500748,-0.016895274,0.1891525,0.39980558,0.5858869,-0.022167752,0.95543313,0.3388464,0.0040438,0.36600035,-0.19735989,-0.3599538,-0.47680703,-0.2402456,0.14196303,-0.41381836,-0.33162132,-0.0579507,-0.27541772,-0.66340166,0.48706284,-0.0126345875,0.08329092,-0.016972471,0.32966477,0.6073074,-0.17689155,-0.07743318,-0.11248942,-0.08784902,-0.44976488,-0.32556495,-0.62948394,-0.6035737,0.09037523,0.75597095,-0.3860441,0.026623344,0.043591198,-0.247601,-0.085073106,0.12435754,0.03407344,0.09660545,0.3467944,-0.08564312,-0.5427338,0.40619868,-0.22345985,-0.16345866,-0.64557356,0.44910938,0.6870011,-0.6104729,0.68123394,0.24595243,0.114257984,-0.28594366,-0.62689346,-0.04162926,-0.09626205,-0.2690071,0.45168132,0.2244311,-0.96039677,0.48508367,0.30939806,-0.24940707,-0.62362653,0.49937162,-0.16671322,-0.33604228,-0.09997185,0.37505844,0.25413835,-0.04104079,-0.09201605,0.4553612,-0.29774055,0.31994683,0.080834195,-0.20137654,0.3347597,-0.1429046,-0.2314539,-0.65659744,0.005930543,-0.4553042,-0.4934026,0.20643844,0.12230252,-0.0580951,0.10671366,0.05138322,0.47001114,-0.21154627,0.18586062,-0.1227953,-0.29293868,0.27588025,0.54661757,0.6594443,-0.238525,0.61100316,0.026888167,0.008368538,0.2177942,0.24593481,0.35583168,0.012131312,0.5158058,-0.019552104,-0.114663266,0.15123263,0.9222438,0.09967308,0.4953776,-0.2662774,0.024198364,0.1819658,0.018366843,0.28370634,-0.12408399,-0.48662332,-0.006913664,-0.24681582,0.18109293,0.53093415,0.19465177,0.19249602,-0.1292359,-0.26820955,0.019929789,0.38347426,0.020680774,-1.1284859,0.33594677,0.22508997,0.9779171,0.32609117,0.17079467,-0.035302155,0.59229416,-0.040258374,0.019343829,0.2394791,0.20270975,-0.44267273,0.44571155,-0.81133705,0.5369737,0.015727313,-0.07445569,0.10835513,-0.0818081,0.40813664,0.83377445,-0.23996454,-0.18651262,-0.017766993,-0.3183069,0.18548292,-0.4600479,0.113496535,-0.47317684,-0.47238427,0.60999554,0.73338324,0.19443804,-0.32995,-0.04717796,0.016248971,-0.24557748,0.1008022,-0.15994032,0.10531134,-0.27099138,-0.5784684,-0.1479873,0.5077072,-0.02533744,0.21237157,0.044504162,0.07224546,0.28890312,-0.051637784,0.09996616,-0.14457822,-0.5903103,0.18384483,-0.3696615,-0.4158421,0.48227355,-0.32556075,0.21811524,0.27129757,0.12557247,-0.26367277,0.55115664,0.016074507,0.64394075,-0.22988968,0.016817868,-0.5093262,0.09440296,0.107599325,-0.2167075,-0.10314191,-0.15707825,-0.08195244,-0.58732694,0.28422752,-0.14768693,-0.18631461,-0.015675513,-0.06225698,-0.026597623,0.51004946,0.02160577,-0.15167433,0.04714985,-0.30150303,-0.27141014,-0.08408436,0.09603048,0.2567685,0.18125218,-0.111306354,-0.029027754,-0.21227033,-0.12946399,0.15670888,0.009334342,0.21920513,0.3384201,0.31405583,-0.27461687,-0.07326223,0.2162775,0.7629421,0.048932675,0.006470688,-0.24315509,-0.48007146,-0.39787763,0.08154648,-0.12185051,0.34451038,-0.06408707,-0.40118954,0.59963745,-0.11602078,0.97930205,-0.010652618,-0.25410885,0.09195529,0.4938093,-0.10577822,-0.048091736,-0.32481003,0.8433141,0.38592193,-0.11067135,-0.104930624,-0.17253295,0.057529174,0.29212043,-0.22546549,-0.17717332,-0.1038547,-0.6375032,-0.027831614,0.15155132,0.25258896,-0.04216801,-0.17207582,-0.17916109,0.3790593,0.06468817,0.19014685,-0.49933988,-0.08318333,0.23768291,0.23249243,-0.045972038,0.14758058,-0.3851091,0.31888255,-0.48117974,0.14978644,-0.13224837,0.26344237,-0.31892815,-0.24158093,0.3001939,-0.00538282,0.34603444,-0.2219155,-0.23566471,-0.28925756,0.19985715,0.2580609,0.13584958,0.5335985,-0.28656903,-0.06570644,0.15984544,0.4800962,1.0255929,-0.236378,-0.29232755,0.25131798,-0.44933563,-0.58143604,0.29824695,-0.42549384,-0.018772315,-0.021267109,0.026360543,-0.37387636,0.26485935,0.17181106,0.14258105,0.025824431,-0.8194277,-0.07337894,0.039404657,-0.2958154,-0.20366076,-0.36758476,0.11995812,0.7774258,-0.22506665,-0.2787698,0.14848597,0.31935802,-0.09961296,-0.5340411,0.10922933,-0.4294313,0.21049172,-0.13568671,-0.40832633,-0.11177407,-0.025100088,-0.54362935,0.09215507,0.053133387,-0.39278793,0.04498995,-0.020897234,-0.107347526,0.778061,-0.4114533,0.4584116,-0.29020363,-0.5314594,-0.554508,-0.17829838,0.36854538,0.07782138,-0.022330364,-0.6076481,-0.16579638,-0.10064163,-0.28790295,-0.1556744,-0.40802008,0.35298872,0.0025118133,0.20095305,-0.21146645,-0.84148777,0.28174174,0.12876157,-0.005317418,-0.557069,0.53678215,-0.17519374,0.58803004,0.14237906,-0.03815764,0.23536192,-0.39876634,0.047657855,-0.15829028,-0.19490398,-0.54403526,0.06711792 -764,0.5501302,-0.29499832,-0.7997012,-0.059677105,-0.3441426,-0.08621061,-0.23474129,0.76438886,0.36146072,-0.55728656,-0.27155027,-0.05562955,-0.193349,0.49650452,-0.30901578,-0.36763892,-0.026831975,0.23733337,-0.60443956,0.5240407,-0.2830086,0.23704989,0.108830534,0.6543435,0.4554721,0.047202136,0.016866246,0.22875535,-0.14519626,-0.44345236,0.040270906,0.28527248,-0.76660275,0.28470194,-0.39467096,-0.702044,-0.14337264,-0.7215176,-0.29291028,-1.0028026,0.3218408,-1.00397,0.7814545,-0.07026499,-0.48209378,0.023490084,0.18376203,0.3293096,0.012532148,-0.120108806,0.16778977,-0.10391333,-0.15220888,-0.14432655,-0.33282706,-0.19175208,-0.60244215,0.074847676,-0.33545038,0.17077316,-0.1761452,0.25431776,-0.14044806,0.27900222,-0.07578056,0.48809013,-0.36074793,0.05211374,0.087637894,-0.13394862,0.35053065,-0.67313856,-0.29330215,-0.30511823,0.2859947,-0.34741998,-0.5442261,0.4513453,0.1697069,0.5377274,-0.074371405,-0.21181774,-0.33824828,0.17247152,-0.14692664,0.36030185,-0.5385136,-0.43018675,-0.1677471,-0.01657268,0.7930533,0.21427192,0.1458927,-0.33437046,0.027183488,-0.18666661,-0.24805407,0.5268937,0.43584898,-0.24164647,0.00045109168,0.118403636,0.46727744,0.41015795,-0.14999889,0.11898834,0.024090732,-0.69065,-0.17448853,-0.06806572,-0.10199205,0.47956872,-0.035829287,0.22207116,0.5215857,-0.2674044,-0.22809722,0.36076674,0.18859641,-0.1518478,-0.24502082,-0.605619,0.5044497,-0.5570338,0.19367708,-0.20310418,0.65767485,0.17553307,-0.8836977,0.16823761,-0.61758405,-0.03250854,-0.0039984137,0.38076723,0.82967305,0.78426033,0.25632954,0.71347004,-0.28634295,0.058513153,-0.16238277,-0.06685401,0.11183307,-0.3625894,-0.29963717,-0.3996934,-0.1239659,-0.2931452,-0.27420542,0.30925536,0.54442215,-0.55554754,-0.19499142,0.10620418,0.5623714,-0.21954036,-0.018079937,0.98936033,0.93984884,1.0404358,0.1354965,1.2343636,0.042290032,-0.15807004,0.10750049,0.33805636,-1.0199047,0.46801034,0.454398,-0.79332256,0.41488075,0.009837349,0.07796341,0.2652907,-0.65821373,-0.16771561,-0.10507857,0.037196305,-0.04569983,-0.09948397,-0.44891474,-0.42848125,0.079283014,0.19795358,-0.09709387,0.3776478,-0.2979356,0.6623276,0.11023531,1.425663,-0.08868394,-0.07491142,0.0750185,0.5307967,0.15487625,-0.19767638,-0.31771705,-0.01146848,0.28247342,0.2264343,-0.48413542,-0.059508875,-0.16095008,-0.3381894,-0.18758738,-0.22968848,-0.2585764,-0.28357628,-0.3914174,-0.49873948,-0.06663352,-0.3543161,0.24364243,-2.19289,-0.20663603,-0.06847447,0.2982538,-0.24248946,-0.4910793,-0.37835148,-0.5066617,0.6158144,0.26399973,0.55910623,-0.5331251,0.28928486,0.4460517,-0.7139657,-0.09762754,-0.64990854,-0.031704288,0.09774315,0.18951863,0.003728124,-0.20979977,0.0010097921,0.07859378,0.5377485,0.015725533,0.0072744675,0.43847993,0.40700102,-0.058556315,0.471048,-0.23404486,0.5417124,-0.75463194,-0.38769293,0.47291613,-0.39667702,0.028440028,-0.13778898,0.13886596,0.6655836,-0.8188768,-1.0703505,-0.7428951,0.055443767,1.3278145,-0.10307864,-0.5439237,0.26292804,-0.59991604,-0.2204758,0.07606877,0.5340732,-0.27610898,0.078830354,-0.8359776,-0.2621806,-0.014264159,0.2220825,-0.04687147,-0.073681325,-0.42995152,0.48318422,-0.038374294,0.46932364,0.40189353,0.00047809383,-0.4686954,-0.65051717,0.21252258,1.0741137,0.50137895,0.290375,-0.30409357,0.069569536,-0.4831659,0.026136832,0.04229098,0.5506889,0.75451237,-0.12170557,0.054617748,0.23207204,0.11294036,0.02732479,-0.1865433,-0.32225862,-0.3537087,0.17885494,0.82436544,0.7252714,0.15402777,0.41404667,-0.080177106,0.5159748,-0.051180985,-0.48064947,0.5566165,1.0420967,-0.2171281,-0.44913885,0.88444257,0.43827263,-0.3112111,0.6489646,-0.50147194,-0.5756731,0.31403553,0.018921463,-0.553538,0.20156641,-0.40266943,0.24810743,-0.7269397,0.2673119,-0.40530238,-0.50447357,-0.63865125,-0.058372963,-2.2149317,0.27496895,-0.18959297,-0.12355975,-0.19565707,-0.44069925,0.3834313,-0.42703643,-0.91699165,0.052734118,0.023209816,0.9571964,-0.12999979,-0.03218317,0.0048758336,-0.44066295,-0.37691298,0.03259878,0.49347094,0.39691043,-0.009317249,-0.51942635,-0.23677981,-0.21622209,-0.4493638,-0.19584936,-0.7831809,-0.5500354,-0.10643947,-0.70911145,-0.2218471,0.6961019,-0.41962805,-0.00066748384,-0.121365346,0.082564995,0.05250467,0.28278244,-0.1898594,0.17541791,0.15793955,-0.18862696,0.22352688,-0.0560627,0.21765478,0.12271273,0.22895563,0.13641413,-0.28153107,0.5155503,0.7052476,1.1105012,-0.32448444,1.2354244,0.58713627,-0.031479508,0.14746954,-0.24690701,-0.6353645,-0.5939238,0.105001956,0.12913884,-0.5019325,-0.05249126,0.25616026,-0.3781731,-1.0146612,0.98494226,-0.05623087,-0.047128458,0.10031799,0.21457963,0.4095678,-0.35095406,-0.08765599,-0.13413464,-0.06308449,-0.46221042,-0.37079707,-0.57467633,-0.5487415,-0.3944908,1.4543427,-0.071038686,0.26298723,0.4046283,-0.07583956,0.27031744,0.1563914,-0.12299657,0.13460985,0.64877135,0.0030022338,-0.7382223,0.19878198,-0.20279115,-0.09488953,-0.54260063,0.34161142,0.6844644,-0.7381808,0.35292864,0.39303717,-0.03865764,-0.34671748,-0.5197199,-0.026640834,-0.10469089,-0.16457398,0.5292551,0.40365848,-0.7330305,0.50956225,0.46656606,-0.26896468,-0.9163387,0.4223604,-0.007909159,-0.16072784,-0.0984625,0.51638514,0.073502555,-0.08429965,-0.16076614,0.23490544,-0.22248407,0.29402456,-0.047412544,-0.12598813,0.19109048,-0.3724636,-0.0567798,-0.9034144,0.27182028,-0.5322852,-0.38469735,0.35427317,-0.06774848,-0.016148796,0.24668671,0.17592971,0.330558,-0.31047782,0.037920844,-0.32915968,-0.46397948,0.5183525,0.53389233,0.679246,-0.42914763,0.6305919,0.061750934,-0.1127507,-0.026523957,-0.090503804,0.45347032,-0.2025553,0.32201096,0.01211441,-0.30961785,0.16017492,0.7575248,0.22453974,0.32845,-0.053771228,0.038631424,0.068710424,0.23171826,0.37773368,-0.040608395,-0.7514115,0.07326419,-0.34038082,-0.083862185,0.67048067,0.14855777,0.19934554,-0.17519695,-0.3763349,-0.07281908,-0.06432644,-0.03410892,-1.7433435,0.48407117,0.006243333,0.8072777,0.45965865,0.17155845,-0.061151113,0.8323403,-0.12362108,-0.025299996,0.4583355,0.07758749,-0.30205438,0.48201323,-0.626913,0.7070916,0.06506781,0.12621738,0.09585565,0.016728014,0.6243648,0.937376,-0.09539792,0.20294033,0.15951385,-0.35591945,0.09067183,-0.4560574,-0.09265137,-0.45412692,-0.29478624,0.9733178,0.42908776,0.4371269,-0.25253972,0.065261565,0.16098273,-0.23526911,0.18946779,-0.030186912,-0.02047042,-0.34855554,-0.544904,0.20815443,0.62272435,0.3470631,0.14014721,0.044618946,-0.1298242,0.3474461,0.014298022,0.017561093,-0.2860414,-0.83758765,-0.15520756,-0.7747695,-0.3152081,0.241229,-0.10872086,0.07439137,0.26734856,0.12945977,-0.31167036,0.6505943,0.17550169,0.7525108,-0.047542322,-0.22700869,-0.011938115,0.4049666,0.13392,-0.35285416,-0.1658533,-0.25987688,0.03396882,-0.42613852,0.31844124,-0.093079954,-0.420518,0.23281759,0.108994566,0.07172995,0.35023093,-0.17863327,-0.0015782863,0.075730756,0.09921395,-0.31273764,-0.53578013,-0.30335346,0.08565495,0.184936,-0.016817212,-0.19672269,-0.19234316,-0.09646685,0.59759414,-0.12209157,0.4827172,0.4846377,0.2246776,-0.43707874,0.042888712,0.11528752,0.81191325,-0.12825252,-0.2434137,-0.52821064,-0.22170217,-0.3445219,0.39215228,-0.06328387,0.30932793,0.15491062,-0.33357084,0.7244746,-0.0064231507,1.0817081,-0.13743386,-0.43744788,0.007959385,0.4012312,-0.13957553,-0.2209161,-0.3498484,0.95508987,0.40866053,-0.29847673,-0.16149853,-0.5188003,0.11251547,6.273389e-05,-0.3068424,-0.19593722,-0.20221746,-0.5595776,-0.21119677,0.26924,0.3915247,0.3299216,-0.24964742,0.31476125,0.41916394,0.005621677,0.09022536,-0.31506225,-0.16528983,0.4345202,0.34584093,-0.208824,-0.008790622,-0.5461722,0.27298692,-0.54221606,-0.054442823,-0.3552666,0.14899999,-0.2557125,-0.35282823,0.23959333,-0.023542449,0.2924941,-0.34842148,-0.18410747,-0.22242396,0.56072074,0.02131041,0.17744763,0.5526813,-0.24001892,0.0011756172,-0.11826936,0.48063818,0.8205004,-0.16002552,0.080815725,0.24335258,-0.14880936,-0.339612,0.3052958,-0.3976287,0.30737984,0.14086038,-0.13523532,-0.423422,0.22300048,0.19014077,0.05451094,-0.07816166,-0.93251467,-0.0075847507,0.37908304,-0.12866054,-0.11712649,-0.51841503,-0.014357935,0.29414544,-0.054249804,-0.53564364,0.23343949,0.34232214,-0.046937782,-0.44723102,-0.08546666,-0.31770194,0.16364808,0.21480648,-0.5655479,-0.12104043,-0.05743842,-0.6434229,0.042667832,0.120687984,-0.40468845,0.019746976,-0.3587862,0.11704421,0.98842573,-0.19905104,0.40443566,-0.1307165,-0.6245394,-1.0176816,-0.05978049,0.30053118,0.3902811,-0.01917255,-0.88141614,-0.056628466,-0.3169249,-0.578819,0.074375205,-0.14151973,0.5289805,0.19490309,0.81411797,-0.2778664,-0.7270453,0.5257749,-0.015662244,-0.095504306,-0.32587793,0.4188868,0.23180483,0.85839844,0.02266545,0.04572451,0.38057676,-0.6645851,-0.094209455,-0.07276412,-0.11756014,-0.54394865,0.023466945 -765,0.28957883,0.05981207,-0.5790091,-0.113596566,-0.24404097,0.123570636,-0.2640513,0.23773803,0.15051568,-0.498203,0.05764932,-0.034993373,-0.07723654,0.1271986,-0.15427719,-0.47560057,0.005765668,0.15974395,-0.43612283,0.4671324,-0.42523912,0.41231158,-0.01294423,0.25429738,-0.00060931063,0.20659213,0.31242937,-0.15707621,-0.12503806,-0.21049789,0.14295188,0.21103294,-0.6501011,0.33145285,-0.14080061,-0.32228646,0.102165036,-0.14465082,-0.3760798,-0.6074291,0.2607171,-0.7261052,0.5841786,0.017127922,-0.24852099,0.22675173,0.2164251,0.08776807,-0.09044429,-0.036203444,0.24035704,-0.33412173,-0.09859138,-0.3059792,-0.30526018,-0.42687613,-0.43976405,-0.025822898,-0.7027015,-0.19471233,-0.5108767,0.2550711,-0.3277552,-0.12090077,-0.19664529,0.48385242,-0.4191168,0.07878015,0.03967286,-0.2084042,0.45235157,-0.64660776,-0.22926058,-0.037730377,-0.08473718,-0.21429779,-0.09515225,0.30652508,0.028541273,0.35813013,0.014836992,-0.14593218,-0.21953018,-0.33718872,0.3321382,0.45324948,-0.10901884,-0.10840135,-0.17978384,-0.23743656,0.1540307,0.06860077,0.13233529,-0.3028153,0.039875925,0.021212956,-0.29273596,0.5448289,0.58736753,-0.11417959,-0.10488159,0.32792935,0.51347965,-0.01630843,-0.21958049,0.058142085,-0.0042574024,-0.37692928,-0.1746194,0.037623398,-0.08320226,0.4858809,-0.18620792,0.19807148,0.613107,-0.43789086,0.018292377,0.17219584,0.2161589,0.07207709,-0.2793588,-0.12518588,0.2912663,-0.6429443,-0.035425734,-0.19322695,0.7680026,-0.11443281,-0.539368,0.20572488,-0.47188392,-0.08394088,-0.041799907,0.6907166,0.37089235,0.50134814,0.15688904,0.7827396,-0.5038137,0.02653256,-0.10513284,-0.370182,0.068501905,-0.14357366,-0.022930013,-0.39071926,-0.16858992,0.07390288,0.18421543,-0.061549522,0.27605483,-0.3805341,-0.16520514,0.285181,0.79568326,-0.3335697,-0.005924042,0.6686513,1.2489841,0.87131226,0.049095254,1.0975822,0.08733182,-0.26151586,-0.23632516,0.0508789,-0.838851,0.30976942,0.17716534,-0.1177634,0.16064732,0.0388632,-0.09940515,0.22843991,-0.49265817,-0.10960116,-0.27170628,0.40548274,-0.038938206,-0.18822041,-0.44558212,-0.048390646,0.1850693,-0.10498647,0.15806249,0.14075713,-0.35502127,0.3463718,0.16511859,0.9973647,-0.16076498,0.08915418,0.21502747,0.3193471,0.22613342,-0.022966405,-0.006685457,0.42986912,0.2149835,0.24190167,-0.48571643,0.13900623,-0.13450824,-0.6348105,-0.24676065,-0.3831573,0.036540918,-0.18842788,-0.35798135,-0.21303985,-0.055323135,-0.5111994,0.29666618,-2.738459,-0.088490546,-0.040861428,0.30999246,-0.1894754,0.004365124,-0.010872304,-0.28732207,0.46528298,0.31246015,0.45352203,-0.40572062,0.29516056,0.6066489,-0.45148557,-0.1390798,-0.43684402,-0.088208795,-0.16789077,0.39707774,0.14242461,-0.04727894,-0.2593143,0.094089165,0.50097334,-0.19463225,0.2851756,0.3067859,0.33506647,-0.17188713,0.25934333,0.14150982,0.4952144,-0.5706709,-0.22688515,0.4477385,-0.4731726,0.04637495,-0.049483113,0.1643804,0.40785548,-0.30209565,-0.75101775,-0.52129596,-0.24699979,1.1807181,-0.29283118,-0.68970776,0.36262527,-0.07650242,-0.32212654,-0.055036757,0.38154358,-0.13620141,0.23164436,-0.71272177,0.18339227,-0.1671819,0.3816712,-0.04325332,0.10594208,-0.34185702,0.69288546,-0.05595193,0.49598965,0.41816753,0.27089572,-0.531521,-0.35394022,0.123418294,1.0812721,0.3580157,0.18020678,-0.21616559,-0.09910423,-0.113333166,-0.07063371,0.10534526,0.5810814,0.7704939,-0.028242495,0.19794372,0.35369855,0.025268389,0.022464741,0.021481803,-0.3159504,-0.13090204,0.054361846,0.53917897,0.47414938,-0.10614594,0.29704762,-0.11407779,0.43298492,-0.26525456,-0.484307,0.37548938,0.9148212,-0.17071986,-0.3744274,0.7213842,0.60552543,-0.42026687,0.5717769,-0.60693854,-0.570339,0.5355986,-0.18715155,-0.49090078,0.21492587,-0.35673103,0.13946632,-0.7728287,0.36941665,-0.30656567,-0.67491835,-0.37508562,-0.40814847,-2.8627198,0.09077897,-0.2314943,-0.19320123,-0.21338665,-0.061547227,0.22401263,-0.46891972,-0.46956512,-0.0049017943,0.12794067,0.6859264,-0.04125401,0.039712913,-0.27625346,-0.19091669,-0.15259454,0.31247792,0.14277928,0.033457994,-0.09979594,-0.49048594,-0.07795005,-0.17582604,-0.47856474,-0.008809609,-0.5426594,-0.37292483,-0.16652921,-0.44547027,-0.35342237,0.6547049,-0.37312824,0.02237398,-0.23844549,0.14214791,0.16164787,0.22053781,0.20700482,0.1640204,0.039377086,-0.09986774,-0.13451122,-0.22437344,0.4650354,0.13281788,0.3877167,0.6484451,-0.25232306,-0.03154386,0.47147474,0.440171,-0.044320207,0.9501026,0.21303497,-0.087482505,0.43277162,-0.19491675,-0.4186221,-0.743618,-0.2151492,0.09231232,-0.516278,-0.38741305,0.027249455,-0.2804629,-0.749059,0.65034294,-0.039165676,0.29569247,-0.17679584,0.41386834,0.22787596,-0.12040174,-0.26924115,-0.10675417,-0.12182383,-0.41178796,-0.38607693,-0.74704057,-0.38432047,-0.2750929,0.9460658,-0.14059302,0.07405735,0.12657045,-0.07723408,0.12354945,0.22424488,0.07418331,0.2664589,0.5857754,0.19390331,-0.6954053,0.49284163,-0.19242421,-0.11786711,-0.40944543,0.14042327,0.6554903,-0.58066887,0.38253814,0.45020023,0.18188848,-0.24494174,-0.4861457,-0.18725045,0.03616898,-0.1956981,0.5624954,0.18213168,-0.8946248,0.61956304,0.2064575,-0.3611715,-0.632501,0.54679614,-0.070821844,-0.16445124,-0.04799619,0.5421503,-0.14407791,-0.02276823,-0.09361776,0.1789757,-0.34419543,0.37193704,0.1919613,-0.138473,0.5471068,-0.21008204,-0.29666495,-0.6438212,-0.026650177,-0.44108123,-0.28440347,0.13977794,-0.18837608,-0.29825494,0.51231706,-0.16370709,0.5085191,-0.2233877,0.10215788,-0.117452964,-0.32355124,0.5044603,0.5376088,0.52898115,-0.4064083,0.6941589,0.0014759536,-0.20139244,-0.20226802,0.1399417,0.52817905,-0.041067105,0.5195976,-0.035210796,0.10667666,0.34624544,0.81258744,0.23477618,0.49214908,0.15818723,-0.18187109,0.2637274,0.026695682,0.2142977,0.069914065,-0.4768342,-0.08639296,-0.24472299,0.1824178,0.41648003,0.049910385,0.5852993,-0.1831082,-0.15047951,0.12666808,0.2374048,-0.12125761,-1.2978963,0.3506764,0.24095896,0.6971982,0.40292767,0.0967237,0.17087312,0.48493284,-0.19754384,0.100150846,0.24008171,0.078875616,-0.31253764,0.6804716,-0.5624681,0.3750925,-0.0978383,0.040322423,0.12889393,0.06356299,0.5533665,0.902962,-0.041962054,0.11569702,0.013322686,-0.3698681,0.33891994,-0.37149265,0.27985448,-0.29527187,-0.2572517,0.68672144,0.34248236,0.2275485,-0.20973961,-0.122136235,0.20315118,-0.16468287,0.31615874,0.034948062,0.01690999,-0.15149565,-0.47085357,-0.18216933,0.5138355,0.20568816,0.17004035,0.19628802,-0.08515713,0.29758623,-0.029467324,0.008977311,0.027958263,-0.4748363,-0.007946969,-0.14464161,-0.41165072,0.2785582,-0.49236104,0.18096831,0.18764126,-0.009896538,-0.5228016,0.17022562,0.3409625,0.47702697,0.059378553,-0.19634761,-0.21429966,0.055830445,0.17420173,-0.2142053,0.013718124,-0.38865042,0.11456603,-0.7188534,0.5083039,-0.29116604,-0.21403515,0.12639803,-0.3527048,-0.054489158,0.5292613,0.021150738,-0.11828498,-0.005551338,-0.14351353,-0.23115526,-0.2259588,-0.14378187,0.1813792,0.009933838,-0.10160392,-0.15030305,-0.050859135,-0.16482699,0.043084502,-0.007274968,0.2542829,0.27164403,0.07280149,-0.49244356,-0.03744697,-0.037497185,0.57085794,0.080645025,0.13165388,0.034591667,-0.413768,-0.20677778,0.24889874,-0.087761745,0.14002056,0.11697645,-0.318202,0.8639749,0.077307425,1.0752553,-0.00882457,-0.31949425,-0.0026822856,0.61383927,-0.12700711,-0.13782959,-0.34796,1.0528845,0.47673288,-0.15389778,-0.17528608,-0.35569075,0.063775904,0.010100858,-0.25402293,-0.35176754,-0.1918168,-0.67724526,-0.21076237,0.1860212,0.35082373,-0.077329636,-0.06492092,-0.08088459,0.22926116,0.080261454,0.26588756,-0.57056105,0.103638954,0.32256603,0.16847466,-0.03698533,0.10884552,-0.3845952,0.3653023,-0.6996768,0.123715796,-0.041665625,0.11482771,-0.26745313,-0.23299201,0.18380706,-0.047680803,0.341554,-0.3512682,-0.20671512,-0.13304107,0.26486826,0.29069212,0.2036859,0.7454567,-0.0735607,0.23822555,0.038756736,0.42990515,0.98943996,-0.23755883,-0.16399696,0.28456894,-0.47159597,-0.799189,0.19121397,-0.4809381,0.19153343,-0.24930143,-0.4700442,-0.36853722,0.24088839,0.1201733,-0.051658902,0.13698389,-0.58201486,-0.08119819,0.15882412,-0.21952902,-0.22454531,-0.18403254,0.036101084,0.47671577,-0.083882585,-0.18301865,0.027226975,0.2691234,-0.4423745,-0.57228243,-0.033374377,-0.2893757,0.44560188,-0.006355313,-0.25026396,0.027503831,0.11575342,-0.46976423,0.30348137,0.33064845,-0.22817083,-0.09485594,-0.1874844,-0.0055047446,0.4243431,-0.17375982,-0.053323906,-0.5279951,-0.55756027,-0.95270604,-0.21060319,0.31442744,0.15726714,0.006957843,-0.49181035,-0.17642686,-0.26379672,0.024138149,-0.0795602,-0.48514992,0.3737037,0.1055514,0.45108196,-0.2316741,-0.95245504,0.18819629,0.22961752,-0.06618065,-0.48860627,0.49334627,-0.1894252,0.51054096,0.121228956,0.041162353,0.385995,-0.60787535,0.24207528,-0.108960204,-0.18445519,-0.5105969,-0.027867118 -766,0.46861845,-0.19180854,-0.63707364,-0.03736381,-0.4164275,0.21097773,-0.13354634,0.46692294,0.113481075,-0.5575023,-0.04788346,-0.1990131,-0.07880941,0.15944293,-0.15582167,-0.3218234,0.083845094,0.12753367,-0.45931855,0.50203705,-0.24768807,0.31507066,-0.07868001,0.32923162,0.13070604,0.19436601,0.046708267,0.09755404,0.011048715,-0.23250628,-0.3034231,0.2596021,-0.54389805,0.14276543,-0.17008492,-0.5228211,-0.06215555,-0.4199389,-0.39101407,-0.74432945,0.28975445,-0.87895674,0.5517558,0.059345298,-0.27673975,0.2372664,0.13559645,0.21462847,0.01733312,-0.015425629,0.18050656,-0.26158872,0.05205166,-0.27750537,-0.41405448,-0.52949315,-0.5835634,-0.14057738,-0.48769042,-0.38271746,-0.31719297,0.14677662,-0.3898316,0.010637855,-0.13293213,0.58231133,-0.3609695,0.049800713,0.11299267,-0.17954822,0.28905302,-0.71633923,-0.15171903,-0.11227087,0.21537799,-0.078417696,-0.16653152,0.2091989,0.35046715,0.4133393,-0.003240635,-0.17783003,-0.38332298,-0.21082239,0.14998509,0.5277661,-0.09794435,-0.37558678,-0.034052767,0.00921069,0.2258576,0.32790643,0.23288448,-0.2796417,-0.117007844,-0.034730066,-0.14964004,0.42959344,0.49819964,-0.35050818,-0.12300678,0.43149886,0.5631753,0.03440344,-0.24344839,0.017276963,0.04156093,-0.45813066,-0.17488691,0.1351328,-0.17565294,0.5143932,-0.13696042,0.29703477,0.6237153,-0.2163666,-0.118765034,0.035352517,0.03841918,-0.07914595,-0.21999225,-0.26274785,0.21893519,-0.41019338,0.25673226,-0.02460771,0.6214646,0.14217676,-0.6462023,0.3290505,-0.62323004,0.06736448,-0.06364905,0.40861714,0.4375568,0.5169326,0.13869973,0.7237184,-0.3750655,0.07918346,-0.21802144,-0.29892227,-0.19623835,-0.12765984,0.021988312,-0.48225516,0.24266356,-0.18809134,-0.039750617,0.06161543,0.5479576,-0.42856747,-0.23455532,0.26517335,1.0253799,-0.25728714,-0.07313718,0.7672961,1.0169045,1.0916212,-0.056446575,0.7814246,0.07799112,-0.15872212,-0.042701196,-0.024117386,-0.5919931,0.217081,0.41801584,0.33795187,0.24865736,0.035960678,-0.1398025,0.30172077,-0.24863504,-0.14015247,-0.07272539,0.034031846,0.288783,-0.19444303,-0.30764666,-0.06593748,-0.04283578,-0.020626338,0.0485651,0.16037205,-0.21406698,0.55667454,-0.03239932,1.7420503,-0.016822604,0.135503,0.25210688,0.554945,0.30152595,-0.07628185,0.18361908,0.45409462,0.17722073,0.26262105,-0.5424783,0.18687543,-0.31788638,-0.56028974,-0.113465264,-0.303898,-0.19871397,0.007849199,-0.5719099,-0.25198087,-0.23850533,-0.16803381,0.31231746,-2.786616,-0.16722725,-0.11595054,0.3102202,-0.30310932,-0.37566993,0.02505066,-0.45734218,0.39495414,0.31253177,0.42295626,-0.56021667,0.42551246,0.43551093,-0.4655103,-0.010745446,-0.47350138,-0.083953,-0.028029747,0.348112,-0.10398863,-0.09222839,0.14606844,0.25266168,0.5730832,-0.08333293,0.18233222,0.3607857,0.43068796,-0.11282524,0.53008866,-0.06929941,0.51813436,-0.35775205,-0.11933031,0.40820995,-0.2589595,0.09933772,0.0073841144,0.16541249,0.56669563,-0.33653557,-0.80719185,-0.6157946,-0.0888934,1.091173,-0.25726,-0.44008356,0.33889255,-0.37777779,-0.22788127,-0.16800313,0.33062682,-0.025064703,0.15778749,-0.6722248,0.07138335,-0.09956684,0.123478964,-0.044647653,-0.26133102,-0.4644409,0.7921456,-0.027898168,0.6925758,0.31748617,0.20973495,-0.25805092,-0.33666474,-0.056245126,0.70728076,0.51769376,0.075180374,-0.23901877,-0.13079363,-0.20299007,-0.15471052,0.16377679,0.5938442,0.56190205,-0.09500228,0.15468654,0.2787002,0.052658938,0.016712755,-0.26555902,-0.22179018,-0.12336399,-0.06587251,0.42036822,0.393223,-0.16680317,0.5230215,-0.04199226,0.36558902,-0.20998494,-0.5341057,0.28495285,1.094508,-0.23187794,-0.3540401,0.4429461,0.5198011,-0.39181805,0.36111802,-0.6512241,-0.22361074,0.59474057,-0.21501984,-0.6057425,0.18470879,-0.24902716,0.060056217,-0.71961325,0.07827785,-0.3496128,-0.6694774,-0.45307475,-0.26960984,-3.2397637,0.25599253,-0.30934048,-0.18561307,-0.22359781,-0.29315096,0.14238523,-0.59873605,-0.51072794,0.13972454,0.1533211,0.684774,-0.15120412,0.23408805,-0.31529143,-0.2743276,-0.32306105,0.25001866,-0.04112451,0.24449869,-0.005833022,-0.38086995,-0.074393384,0.04071772,-0.55506885,0.037146732,-0.60726625,-0.30306986,-0.18657385,-0.4077778,-0.2155671,0.588624,-0.17138188,0.11552106,-0.12178189,0.05535788,-0.081995696,0.13485543,0.13675101,0.19900729,-0.031355616,-0.13359302,0.14300162,-0.323889,0.31445324,0.01033895,0.31103155,0.28733668,-0.15230675,0.14663056,0.3371881,0.64259803,0.009278092,0.7805868,0.19644833,-0.04541147,0.39036652,-0.21409354,-0.3858867,-0.61351585,-0.24355394,0.0051344396,-0.2694039,-0.5599479,0.022771506,-0.38758227,-0.7983635,0.49050218,0.050057523,0.31254292,0.03871282,0.44531742,0.54541713,-0.37244764,-0.082495384,0.015718456,-0.17462976,-0.49923953,-0.27669188,-0.62343144,-0.51876384,-0.055122428,0.9974148,-0.2975415,-0.06681143,-0.019107573,-0.21123566,0.057778914,0.27788576,0.071060084,0.15789041,0.364539,-0.22631818,-0.6470411,0.5132467,-0.25729933,-0.21529914,-0.6026525,0.35742864,0.5973085,-0.50435644,0.4981397,0.15470725,-0.007920707,-0.30229074,-0.6068179,0.08165518,0.10929743,-0.27181414,0.38323316,0.20445964,-0.8433303,0.3678285,0.37070128,-0.30791336,-0.63341117,0.59793645,-0.014855694,-0.45785204,-0.04192482,0.29210672,0.25704247,-0.02238152,-0.26257154,0.16979179,-0.45515636,0.24924845,0.14948861,-0.06241912,0.22861543,-0.16406988,-0.18161471,-0.7278834,0.097614355,-0.5099951,-0.26590663,0.27436608,0.028469233,0.09846255,0.304537,-0.08797975,0.42743185,-0.2534888,0.13908549,-0.16518332,-0.31912476,0.45281202,0.32940808,0.46153527,-0.44661584,0.61339056,-0.06514561,-0.17465273,0.22257423,0.2237784,0.41514257,0.08263974,0.5974506,0.1197368,-0.080841355,0.235378,0.748535,0.29105324,0.503437,0.1699958,-0.14582056,0.21402483,0.08090976,0.1435431,-0.16300204,-0.72606605,0.07843062,-0.2022379,0.12521264,0.51620644,0.09878356,0.29600772,-0.08104446,-0.24599648,-0.037641518,0.22714137,-0.005429999,-1.1153615,0.20641838,0.2104184,0.97297287,0.33165416,0.08925786,-0.058133624,0.6463783,-0.1960717,0.10870702,0.3331138,0.061032064,-0.29377303,0.48837578,-0.7293488,0.3320478,0.031780478,-0.080572,0.03186832,0.024108248,0.4566706,0.7791637,-0.2035419,-0.06631483,-0.03568724,-0.39749628,0.21133408,-0.401153,-0.040903527,-0.4742429,-0.2990491,0.64099485,0.56073564,0.2782498,-0.12911488,-0.05312518,0.14762904,-0.11062886,0.15270193,0.1301695,0.1698603,-0.2213621,-0.45741087,-0.16118182,0.5844326,-0.019786898,0.20070337,-0.011326099,-0.2481969,0.35169747,0.12444289,-0.06033257,0.11511395,-0.7131873,0.2882227,-0.114662476,-0.5244457,0.5018109,0.0026793887,0.19467661,0.19276515,-0.03827102,-0.21281198,0.32514656,0.032621942,0.7693672,-0.0026893716,0.011149391,-0.44168904,0.16961169,0.061769024,-0.11340996,0.1319964,-0.13026284,0.059838276,-0.55317986,0.38178608,-0.03865772,-0.2642524,0.16868307,-0.11739189,-0.07513359,0.6046088,-0.03563996,-0.081191145,-0.07934804,-0.059900362,-0.4101315,-0.2807876,-0.08821608,0.35545728,-0.1834289,-0.01962932,-0.07456658,-0.023456259,-0.01917628,0.5025995,-0.011442971,0.39629236,0.2979768,0.029197915,-0.37207937,-0.23957682,0.14809056,0.49540344,-0.13719563,-0.1091235,-0.1027986,-0.6069459,-0.27895197,0.06910562,-0.09460758,0.3390093,0.13062952,-0.18175223,0.848136,-0.05769264,1.1936958,-0.087496504,-0.42530048,0.18094164,0.48991156,0.0940583,-0.044597846,-0.3203284,0.8897397,0.6161854,0.006345566,-0.04121948,-0.22634608,-0.0836952,0.15960123,-0.24293223,-0.15984099,-0.045868676,-0.49134806,-0.16330013,0.14385074,0.19392492,0.275133,-0.18261027,0.1347681,0.45881966,-0.02746576,0.33649895,-0.3900212,-0.2842045,0.15702678,0.22285496,-0.18684754,-0.033810508,-0.54147977,0.39960766,-0.5155343,0.10827838,-0.26199833,0.19568676,-0.20601176,-0.21935578,0.19685599,0.053675912,0.28909656,-0.30556843,-0.34702298,-0.15539663,0.33217546,0.17989995,0.16553767,0.48690754,-0.25673774,0.13115865,0.010531169,0.55267155,0.84568685,-0.11843551,-0.18774933,0.36749622,-0.5451107,-0.6642862,0.44292104,-0.29920986,0.20651226,0.0055518625,-0.12235713,-0.411605,0.38870457,0.19806989,-0.11790619,0.03924316,-0.66362244,-0.099750124,0.23039508,-0.41180867,-0.20496152,-0.30770734,0.24898574,0.644317,-0.17201729,-0.35947746,-0.052295547,0.28865847,-0.027104793,-0.62697303,0.027200263,-0.27861983,0.32797563,-0.0017457604,-0.27382317,-0.106195346,0.0780588,-0.50888574,0.103363246,0.08220858,-0.2712001,0.09550716,-0.3703285,-0.05966057,0.7887388,-0.15364479,-0.036015693,-0.46837023,-0.52841485,-0.6703525,-0.41313305,0.3129216,0.15618062,0.019780643,-0.63227683,-0.03526933,-0.18018545,-0.26176232,-0.17273669,-0.27821854,0.4664244,0.07917248,0.370635,-0.06085762,-0.6932274,0.32045904,0.055684883,-0.13857989,-0.56078744,0.50907916,-0.07290916,0.75130236,0.122888036,0.023398865,0.25924256,-0.4605503,0.12770692,-0.3190492,-0.2243743,-0.48481274,-0.14145519 -767,0.4003681,-0.13969341,-0.5014311,-0.1870829,-0.27211338,0.16205679,-0.24317805,0.2329672,0.39670962,-0.017128736,-0.13948298,-0.033176973,0.18136083,0.39158055,0.059266303,-0.7058964,0.014368763,0.07159667,-0.6894578,0.42536157,-0.62031734,0.44134697,-0.09799779,0.34196982,0.09491667,0.48310313,0.23522337,-0.035496704,-0.09230758,0.032659493,-0.043823455,0.107124165,-0.41233987,-0.10348969,-0.057481084,-0.28459418,0.05507744,-0.29350534,-0.22784056,-0.6934785,0.33621013,-0.75152916,0.57982457,0.1323893,-0.26014006,0.016652051,0.16712452,0.36507878,-0.36047804,0.108419076,0.095787086,-0.111316204,0.0022717048,-0.37611932,-0.15060478,-0.37811425,-0.41964337,-0.06667674,-0.67090476,-0.427834,-0.10687806,0.14800161,-0.32764462,-0.087463126,-0.02536411,0.37741646,-0.33225992,-0.011926802,0.46664193,-0.28196245,0.38062543,-0.5890197,-0.020853642,0.033253323,0.51178354,-0.07715051,-0.14998564,0.2126907,0.37771592,0.36208698,0.23988232,-0.23076177,-0.4349648,-0.12508729,0.05968552,0.42805606,-0.2538086,-0.25571156,-0.19332926,-0.005579467,0.16215508,0.38319743,0.20866467,-0.05519316,0.056609247,-0.020199914,-0.11524986,0.59899867,0.5264604,-0.37082398,-0.4130201,0.25332844,0.61462796,0.094693236,-0.3580674,-0.048629284,0.037848286,-0.4940452,-0.15116991,0.04302237,-0.049305037,0.57276845,-0.11478794,0.17833464,0.7865204,-0.29593408,0.029515324,0.17829415,-0.044984896,-0.13426277,-0.2818056,-0.09408365,0.06844909,-0.63835114,-0.08655291,-0.22068664,0.541873,0.19935966,-0.6131094,0.41852415,-0.65310514,0.09607764,-0.12448827,0.45698336,0.69094497,0.30316606,0.21253373,0.7228304,-0.21189786,0.12831861,-0.013769774,-0.43594202,0.2477967,-0.25461382,0.1874841,-0.5711076,-0.06788537,0.0023670883,-0.06447853,0.24683064,0.40214634,-0.5245491,0.02065542,0.1412536,0.8706969,-0.32040244,-0.11638964,0.56266534,1.2421505,0.88607967,-0.14822802,1.0231436,0.35979912,-0.282026,0.17463778,-0.7030771,-0.48214605,0.1867658,0.27229545,-0.3723412,0.5382934,-0.18095364,-0.116928324,0.39433435,-0.24438024,0.09675987,0.16536818,0.2520406,0.21520904,-0.13017449,-0.40112475,-0.11672163,-0.03725674,0.01234852,0.29884684,0.21281464,-0.32764322,0.2641234,-0.20335685,1.1833456,-0.07165431,0.0790972,-0.09887225,0.65176433,0.30001104,-0.13343903,-0.11614393,0.4199575,0.14627434,-0.05065644,-0.6400147,0.35923272,-0.37609106,-0.27241546,-0.23928279,-0.46574217,-0.07258627,0.13405012,-0.32421127,-0.11393854,-0.15162092,-0.31032774,0.30904037,-2.9092689,-0.42193896,-0.0042612506,0.40741003,-0.304515,-0.18616779,-0.073395535,-0.5162779,0.19772807,0.27043182,0.4073071,-0.604948,0.48718983,0.5046096,-0.47738823,-0.31324413,-0.6276483,2.4213241e-05,-0.16961639,0.36146486,-0.006496292,-0.21048066,-0.12669645,0.22883771,0.6357613,0.10099126,0.12384359,0.33952028,0.33771393,0.01558517,0.3989014,-0.050877534,0.70521355,-0.21901542,-0.2529773,0.30373496,-0.26613733,0.08814255,-0.19337481,0.059518356,0.3714484,-0.28702286,-0.9402192,-0.617769,-0.05230933,0.928584,-0.17857169,-0.3383054,0.2083787,-0.40097153,-0.16212288,0.03626054,0.5684286,-2.5625412e-05,0.043840133,-0.65100586,0.122309476,-0.039606478,-0.0042266203,0.0632188,0.0026195066,-0.3354967,0.506647,0.0559331,0.4065506,0.21774861,0.32207888,-0.1136673,-0.355034,0.1455432,0.7122611,0.20155452,-0.02650845,-0.09724358,-0.26953572,-0.1061348,-0.120974645,0.03366315,0.43994105,0.7417154,-0.03759839,0.098043084,0.28308028,-0.22788852,0.121542014,-0.054123506,-0.33264843,0.08611603,0.10286982,0.43025684,0.78977174,-0.20990203,0.58077955,-0.12921487,0.27024263,-0.25074822,-0.5064136,0.7903178,0.49969026,-0.19724587,-0.15306756,0.49367744,0.35418174,-0.64291424,0.50052035,-0.71254313,-0.18488921,0.6525863,-0.3182651,-0.29071584,0.1685506,-0.17545612,0.1225221,-0.89362246,0.21976456,-0.2842622,-0.3560312,-0.148835,-0.028639318,-3.7002308,0.16468838,-0.27871272,-0.042140327,-0.13144824,0.0878056,0.29940075,-0.6857752,-0.48089164,0.1000943,0.24232799,0.63965046,-0.14218886,0.032164868,-0.17091648,-0.24069566,-0.083052,0.24850243,-0.05312086,0.29401153,-0.13523111,-0.5027531,0.2632129,-0.026627775,-0.6489709,0.1385621,-0.4810613,-0.401634,-0.112536624,-0.58686227,-0.24847333,0.6498177,-0.16611037,-0.03485734,-0.34487134,0.21322288,-0.12535825,0.4272709,0.005260073,-0.033603355,0.4065058,-0.017901301,0.18202418,-0.36470553,0.5144066,-0.09928966,0.45777035,0.20206223,0.034681145,0.19420657,0.49107453,0.5510046,-0.02204859,0.8263838,0.4612109,-0.008497799,0.19555987,-0.44532102,-0.16550027,-0.22118293,-0.507834,-0.057897784,-0.25926208,-0.60401845,-0.03617784,-0.37405506,-0.7444905,0.47715852,-0.068459265,0.42062983,-0.070278816,0.36162347,0.44205207,-0.27494317,0.028086148,-0.046763007,-0.2217099,-0.45692176,-0.00045650738,-0.58426386,-0.51701444,0.22373396,0.7849534,-0.51050985,0.2019781,-0.046528228,-0.20795646,-0.0738119,0.17810573,0.15922907,0.2383522,0.34640715,-0.16321784,-0.6163882,0.16130815,-0.18796983,-0.15268768,-0.5927963,0.029067244,0.654853,-0.65165937,0.5829206,0.34277692,0.13018528,-0.07144988,-0.40930155,-0.032611772,0.19241858,-0.14455566,0.47812197,0.097247764,-0.7984505,0.36769646,0.29798302,-0.5099293,-0.6419452,0.41826203,-0.063152775,-0.38952193,-0.24406478,0.27987438,0.17587624,-0.10036223,-0.17873493,0.17883693,-0.45332512,0.1872062,0.1933706,-0.0056173983,0.5836905,-0.109440565,-0.2921494,-0.6762308,0.099907234,-0.5442636,-0.13951267,0.2525602,0.1415238,0.20644648,0.21020643,0.27002886,0.36819202,-0.29269475,0.046109222,0.058136184,-0.44732875,0.21328002,0.3419724,0.27709788,-0.40528238,0.370734,0.0037399898,-0.2921328,0.16723222,-0.1512355,0.48961228,-0.0075053205,0.49330652,-0.008487628,-0.26546216,0.4373174,0.5694295,0.046241336,0.3318384,0.17516048,-0.13926338,0.21423295,-0.04496399,-0.054234207,0.018420931,-0.3780134,-0.06720137,-0.121966965,0.2564016,0.5274242,0.3912976,0.18055955,0.14550231,-0.33588812,0.07933056,0.24214515,-0.14748971,-1.2375247,0.36916828,0.36569405,0.7652709,0.37509727,0.22857212,-0.29510555,0.64775527,-0.2078945,0.07491093,0.5678256,-0.039618257,-0.504324,0.7708594,-0.6071068,0.5758041,-0.038442507,-0.1705319,-0.05798352,0.034967106,0.34432822,0.97115433,-0.1800588,0.07103329,0.07363646,-0.21853805,-0.14320597,-0.28176138,0.016845617,-0.660632,-0.18550238,0.6347371,0.29760492,0.2461386,-0.0801113,-0.13164224,0.14078683,0.024325717,0.31765726,-0.11893214,0.12284675,0.0018871289,-0.7008194,-0.18921944,0.34814718,0.23405388,0.1976815,-0.30487892,-0.13935614,-0.023547549,-0.3765298,-0.065381095,0.020421263,-0.53703105,-0.025763612,-0.14572857,-0.5301529,0.686307,-0.22495237,0.16366106,0.13719909,0.14343828,-0.16827816,0.5043179,0.080704555,0.6807107,-0.026900109,-0.19573775,-0.29900488,-0.007030865,0.24187341,-0.151618,0.06585164,-0.30831102,0.16728687,-0.51039505,0.67409545,-0.1458201,-0.35745034,-0.026817588,-0.20589945,0.037089486,0.6494272,-0.22969985,-0.21710865,0.013264014,-0.27641565,-0.4050914,-0.07111023,-0.1786051,0.21443534,0.20202239,-0.1409746,-0.29193753,-0.2993508,0.01187828,0.55854934,-0.070313774,0.44070345,0.27293846,0.044254567,-0.070680745,-0.054381233,0.3605793,0.32414415,0.12990178,0.04892119,-0.577342,-0.3880558,-0.21212286,0.18814936,-0.026004754,0.010278518,0.119288534,-0.18674634,0.84269524,0.0321584,1.4252173,0.16160403,-0.23444945,0.15749575,0.5302922,-0.069181606,0.04592885,-0.53132695,1.0005891,0.5345735,-0.23338619,-0.07680484,-0.5066736,-0.16009961,0.28516752,-0.38116595,0.016088393,-0.08295167,-0.75590146,-0.363836,0.31356496,0.13740799,0.14725071,0.06329625,0.29578453,-0.036108483,0.09307131,0.26295608,-0.59855276,-0.2898889,0.4100773,0.35005188,-0.0051358114,0.28197563,-0.42976373,0.47683045,-0.7146404,0.20849206,-0.31439108,0.052536998,-0.17057961,-0.5827275,0.18700539,0.1676938,0.23364718,-0.06688155,-0.44593653,-0.034268253,0.43847927,-0.030388126,0.10655481,0.5765295,-0.3846839,-0.12740421,-0.058913745,0.62519497,1.237419,-0.21501142,-0.0040693423,0.3274361,-0.3269448,-0.8715762,0.40869692,-0.33289212,0.013151187,-0.089037456,-0.3247767,-0.5863014,0.2813246,0.07350864,-0.015024075,0.042703986,-0.32006434,-0.362518,0.1388199,-0.3075377,-0.21380281,-0.15833817,0.3398027,0.73549783,-0.21743844,-0.13647538,-0.045802847,0.49412134,-0.25495642,-0.27189094,0.06298054,-0.103929296,0.39727238,0.14279653,-0.32312787,-0.03456879,0.22638631,-0.37821388,0.20626658,0.32877642,-0.3967516,0.106180735,-0.25351614,-0.18406758,0.80986434,-0.14953686,-0.001194931,-0.5035636,-0.47386667,-0.9328756,-0.41997895,-0.021545192,0.045039233,-0.16870001,-0.41619986,0.15569247,-0.019644896,-0.139264,0.15796588,-0.5800653,0.35191455,0.041829698,0.4401179,-0.317942,-0.8156615,-0.10284324,0.20258856,-0.2656929,-0.821529,0.636295,-0.17916764,0.9402328,0.15144995,-0.10097365,0.12421406,-0.20245443,0.14904618,-0.28599042,-0.23873049,-0.85409766,-0.087408274 -768,0.14720567,-0.092932664,-0.6423836,-0.15350057,-0.453963,0.22388649,-0.21564654,0.17231639,0.19821216,-0.038057923,-0.02371003,-0.10234237,0.18672755,0.5114265,0.0681672,-0.57347345,-0.0410462,0.26349992,-0.72486925,0.31915233,-0.5133189,0.43002063,0.09021396,0.43773532,-0.062272284,0.6161433,0.38724175,-0.20821421,-0.1448269,0.12276321,-0.092021696,-0.007892408,-0.46010438,0.089875996,-0.12706293,-0.377022,0.19934459,-0.23900871,-0.20102933,-0.5452563,0.1881245,-0.75392973,0.49224696,-0.094729185,-0.08114516,0.044695668,0.2654502,0.34045336,-0.3914331,0.06631419,0.303964,-0.30594948,-0.10473748,-0.41702434,-0.08489498,-0.5240105,-0.2236056,-0.058490224,-0.68364054,-0.49400812,-0.22316611,0.24649271,-0.21216439,-0.004168003,-0.047864728,0.3095235,-0.39280486,0.027404606,0.20169327,-0.5066661,0.25246373,-0.353977,0.04442411,-0.035835106,0.55641764,-0.0034659419,-0.03734443,0.36687237,0.30146354,0.43101767,0.3216959,-0.26611343,-0.33638683,-0.2876141,0.06967342,0.43982786,-0.102122106,-0.20939088,-0.20067644,-0.12506016,-0.08012084,0.20836541,0.05858139,-0.14535487,-0.042310566,-0.02042366,-0.21316276,0.44896552,0.33352846,-0.45145804,-0.2768348,0.34615925,0.6801279,0.016648531,-0.41738722,0.04277416,0.022731602,-0.45626116,-0.19238992,-0.0113434,-0.0022856507,0.379365,-0.21762268,0.19812359,0.9687641,-0.16755302,-0.16340722,-0.015607201,0.026464475,-0.26147375,-0.20451856,0.038738128,0.09066163,-0.55459064,-0.15101817,-0.13024049,0.5981616,0.19916452,-0.5114671,0.36984387,-0.54756314,0.10182994,-0.13228253,0.54926026,0.56614876,0.43056253,0.12338642,0.8683116,-0.3024486,0.18566608,-0.06858587,-0.51740885,0.17695875,-0.28270122,0.10408459,-0.4842796,0.114417374,-0.02457727,0.15040676,0.078339644,0.25700685,-0.481428,-0.04614853,0.29390517,0.9571434,-0.41882867,-0.17950727,0.47336745,1.0769993,0.7923897,-0.033167474,1.0447383,0.3553227,-0.3549146,0.10284461,-0.48352098,-0.50965774,0.17377813,0.3843829,0.31184655,0.13427821,-0.08739417,0.13297153,0.39613384,-0.3020019,0.1047013,0.022731023,0.14812665,0.16549602,-0.0034548214,-0.43011874,-0.07016509,-0.017595474,-0.12382023,0.31914154,0.10397983,-0.21322714,0.42550236,-0.093732595,1.4696068,0.005249381,0.035131183,0.012807361,0.67261213,0.298451,0.05466911,-0.1569237,0.46073368,0.26007354,0.07040671,-0.49458417,0.3495796,-0.26129368,-0.7342304,-0.18155916,-0.4604647,-0.027129123,0.016088516,-0.43729907,-0.11093297,0.02053449,-0.33533102,0.33857864,-2.7444632,-0.18173125,-0.08464738,0.3038672,-0.30255613,-0.017211648,-0.22050153,-0.44901544,0.21372212,0.3132021,0.5171074,-0.5597287,0.5255532,0.4540742,-0.37392548,-0.23304966,-0.53551584,0.0028493744,-0.15879704,0.41039175,0.07872663,-0.15373771,-0.40147322,0.19061403,0.6915876,-0.1410611,0.1790879,0.44156927,0.2378868,0.0736941,0.5250189,0.13827781,0.55882835,-0.43109915,-0.27406827,0.3636226,-0.21629117,0.08396931,-0.17500994,0.11926115,0.42839915,-0.29330727,-1.0708754,-0.6822408,-0.12901859,0.93207467,-0.3662186,-0.34583464,0.28420332,-0.067869365,-0.031066801,0.14346358,0.5051064,-0.022337658,0.29004458,-0.5612774,0.26436827,-0.02065906,0.21479239,0.061165072,-0.044977613,-0.28163812,0.6998145,-0.080413856,0.53147274,0.17894295,0.29878998,-0.14375077,-0.28575692,0.12385299,0.8119391,0.10683046,0.024249146,-0.07068194,-0.30464363,-0.072888136,-0.24360757,-0.019037668,0.31788284,0.6837206,-0.033896346,0.16294305,0.28711352,-0.24598888,-0.07448832,-0.037759654,-0.2738127,0.12476802,0.043052975,0.30078745,0.6054081,-0.068163596,0.5230833,-0.25038853,0.51108634,-0.10589977,-0.62493336,0.795849,0.47570798,-0.26666424,-0.09148347,0.55750823,0.32232788,-0.5664638,0.45475906,-0.73053414,-0.3903872,0.60863864,-0.20597564,-0.34064475,0.001879309,-0.079694204,0.10849888,-0.8312003,0.16733377,-0.12672251,-0.42081818,-0.18497634,-0.3460318,-4.088878,0.11039983,-0.114826165,-0.06417885,-0.1641487,0.043549806,0.30355948,-0.59011066,-0.41620106,0.05396984,0.23957245,0.6914395,0.13550226,0.21975958,-0.3134201,-0.14325263,0.02715628,0.37802532,0.02146537,0.16309991,-0.08560773,-0.65547335,0.028615031,-0.13410099,-0.66442406,0.149737,-0.58028185,-0.33906212,-0.23202239,-0.6292049,-0.3455549,0.5809468,-0.28814015,0.11663334,-0.32496077,0.16571046,-0.21235564,0.28322905,0.19841366,0.0007843929,0.24655466,-0.017144037,0.24916841,-0.36018068,0.3658612,-0.09578992,0.41194257,0.034636106,0.15305461,0.08717066,0.4961538,0.5770264,-0.12178933,0.8463479,0.40384555,-0.04983523,0.2838017,-0.36918068,-0.09995747,-0.5928031,-0.5203941,-0.22845629,-0.33789936,-0.474649,0.14386685,-0.330734,-0.81080925,0.6781769,0.07272316,0.13574593,0.004560343,0.3486781,0.392236,-0.28388444,-0.16906753,-0.057238974,-0.22417852,-0.6083831,-0.16527204,-0.5612049,-0.5779848,0.040935636,0.7351646,-0.3597733,0.016070297,-0.07965169,-0.20576794,0.006933951,0.2863312,0.06809342,0.35038492,0.48563078,-0.121786036,-0.71985215,0.45181677,-0.188518,-0.078767896,-0.47877893,0.05603079,0.40838793,-0.7278283,0.50165373,0.4152706,0.13270846,0.035754036,-0.29363444,-0.2714084,-0.11506433,-0.14279296,0.43765113,0.013346821,-0.9017605,0.6093649,0.28315675,-0.45013353,-0.6300687,0.20051591,-0.17523234,-0.38543886,-0.041418266,0.27740055,0.08581568,-0.16388701,-0.35409504,-0.019517852,-0.45559326,0.2074043,0.20437546,-0.10323332,0.67260456,-0.18620469,-0.35747814,-0.7331957,-0.17421964,-0.45501783,-0.13826036,0.14750879,0.0053939903,-0.15544249,0.30351567,-0.0055534435,0.3034544,-0.16910155,0.026153669,-0.032779153,-0.3189525,0.20269313,0.29050678,0.23265359,-0.47180048,0.54101783,-0.01332287,-0.21394332,0.067397825,-0.114297256,0.45148495,0.10785984,0.4884693,-0.079587415,-0.208304,0.41605857,0.6391219,0.13796121,0.47209397,-0.016960412,-0.24535301,0.36245865,-0.06519223,0.041843805,-0.06502887,-0.33664137,0.04992244,-0.15008727,0.13418205,0.46342513,0.34301203,0.43575975,0.20206806,-0.1466086,0.18666516,0.14028427,-0.024792416,-0.9837039,0.40656,0.4387923,0.74387854,0.3644341,0.06907789,-0.18721326,0.80561155,-0.21048796,0.0526675,0.27311465,-0.00419145,-0.42533138,0.68080425,-0.69586104,0.4130578,-0.20032465,-0.18815205,0.19036846,0.12633589,0.14355734,0.9184372,-0.09008849,0.18318303,0.08122157,-0.23965004,0.0041568195,-0.14241442,0.0647058,-0.5280739,-0.33052936,0.6729679,0.2777977,0.32392415,-0.16113918,-0.11750121,-0.0011088209,-0.07227426,0.25489625,-0.097326174,-0.028683646,0.14913872,-0.5900787,-0.3053279,0.5589761,0.33530173,0.33226195,-0.106201075,-0.3470266,0.11050178,-0.36577097,-0.0946311,0.021864176,-0.3594212,0.036223795,-0.010197257,-0.5442528,0.6845775,-0.2990148,0.31339854,0.038746588,-0.015608066,-0.2044381,0.42220122,0.15717976,0.65698063,0.16130532,-0.2117417,-0.31706142,-0.05576243,0.27529088,-0.28315142,0.027244627,-0.48564515,-0.13679391,-0.51806426,0.56610453,-0.22575858,-0.46102962,0.24037673,-0.3983504,-0.049509697,0.51007533,0.051834933,-0.23002763,0.14349271,0.00842292,-0.3756718,-0.06916731,-0.3820651,0.24917348,-0.06899334,-0.08169193,-0.25285015,-0.22366674,-0.025163906,0.60318094,-0.15028055,0.30196613,0.1321473,-0.019168632,-0.13621502,0.16761704,0.22996311,0.35085005,0.08611226,0.08655081,-0.17208529,-0.36294928,-0.26484346,-0.010369318,-0.06837731,-0.0023129785,0.1399381,-0.18556166,0.90934086,-0.019444274,1.260316,0.22081664,-0.32204312,0.18832803,0.42783207,0.054175112,0.21486361,-0.3930698,0.8268569,0.5631533,-0.1820116,-0.22594383,-0.40525967,-0.15830623,0.3781948,-0.3571791,-0.1751574,-0.074889146,-0.7670277,-0.556686,0.29816824,0.1823055,0.2953338,-0.010801821,0.06854932,-0.078676276,0.084028974,0.3997155,-0.6389675,-0.14592096,0.3079415,0.33511823,-0.15211518,0.17592908,-0.3590841,0.5611034,-0.6278286,0.2155033,-0.38766083,0.16640784,-0.36018535,-0.40098256,0.1071525,0.021400342,0.42604747,-0.09702102,-0.4001062,-0.17062509,0.5485851,0.16225693,0.17578696,0.71379936,-0.23957147,0.054396622,0.017333247,0.42344907,1.0301586,-0.48319617,-0.03353565,0.4354531,-0.32519633,-0.58858454,0.37501404,-0.34804937,-0.020662311,0.020172583,-0.47447878,-0.36859077,0.36021343,0.04904782,-0.030561646,0.08556423,-0.39295265,0.050417636,0.24349274,-0.18019189,-0.2094481,-0.093790986,0.48073405,0.57278347,-0.28583542,-0.19489749,0.26670697,0.511783,-0.30317083,-0.36121044,-0.03757712,-0.277555,0.457177,0.1457953,-0.39572787,0.03487851,0.10907513,-0.41173217,0.1877394,0.34926432,-0.36083767,0.17502776,-0.17186686,0.0900089,0.7814833,-0.0005268582,-0.012886559,-0.59404725,-0.3796082,-1.1158197,-0.39385822,0.38337642,0.04503262,-0.1498982,-0.33962494,0.038703766,-0.09584818,-0.23483123,0.16215014,-0.7162203,0.2710132,0.11316854,0.5193518,-0.16569707,-0.84002846,0.048454233,0.16646184,-0.114321366,-0.7037393,0.6243182,-0.31243542,0.9318699,0.02652714,-0.13358665,0.20395432,-0.3174725,0.12508062,-0.40198824,-0.20229997,-0.68220365,-0.038691036 -769,0.5672341,-0.2983851,-0.5373297,-0.10221484,-0.3632428,0.0955929,-0.3089487,0.31318432,0.10205476,-0.33767658,-0.12055896,-0.1909724,-0.02827271,0.5312784,-0.15709135,-0.4363236,0.066887304,0.11235017,-0.73035413,0.67692316,-0.42963594,0.41648006,0.061761126,0.33278877,0.24083722,0.28788853,0.17739186,0.028677832,-0.03806028,0.034069657,-0.08491469,0.38379216,-0.5964687,0.026758507,-0.106498845,-0.26234782,-0.096683905,-0.22745377,-0.30155155,-0.80498874,0.23276019,-0.9557712,0.52578855,-0.08839202,-0.56492734,0.18829878,0.21250002,0.26055714,-0.27918565,-0.024648272,0.14093071,-0.09373397,-0.030431954,-0.13056475,-0.16552676,-0.64532876,-0.5989192,0.0017947983,-0.791034,-0.28770536,-0.35218143,0.2661686,-0.32546782,-0.1065692,-0.15267915,0.26691306,-0.56258607,0.06359686,0.07637148,-0.0733656,0.24776888,-0.5377679,-0.08790204,-0.12160365,0.11497302,-0.18751833,-0.29008055,0.23738207,0.35974896,0.5137715,0.04317598,-0.20551358,-0.31888703,0.06504077,-0.002199214,0.37383646,-0.1493954,-0.39528352,-0.27524525,0.048555862,0.3748786,0.18603519,0.23325223,-0.3594094,-0.14071429,0.07570773,-0.0799029,0.3783698,0.47043446,-0.43668866,-0.34737533,0.42685568,0.5989054,0.14766121,-0.16016735,0.1071801,-0.04472728,-0.5980593,-0.05543507,0.08155966,-0.07736162,0.66498846,-0.17789377,0.21293396,0.64326864,-0.24415319,0.014926992,0.017638654,0.008047618,-0.07063685,-0.078425854,-0.104342304,0.16747971,-0.5494344,-0.05905138,-0.20362122,0.53523237,0.09329167,-0.6139404,0.23079935,-0.49502832,0.18503508,-0.1498367,0.500883,0.79763734,0.55919194,0.12861042,0.7125327,-0.35981405,0.082543865,-0.09502675,-0.25671557,0.28742242,-0.32355657,-0.07462494,-0.5188989,-0.06900343,-0.053140096,-0.16758674,-0.022531785,0.84844655,-0.72017473,-0.096706316,0.04750365,0.68717647,-0.3604005,-0.078027464,0.6725317,0.83374053,1.0229756,0.08021049,1.1355236,0.36638558,-0.06893543,0.16069855,-0.25651428,-0.68983227,0.25378874,0.40163195,-0.082019545,0.42560363,-0.07147277,-0.1551831,0.48627973,-0.2819481,-0.11717304,-0.26635298,0.27117312,-0.029016692,-0.08809101,-0.49259996,-0.22665259,-0.062469188,0.28139573,-0.030366154,0.30403513,-0.33795863,0.26126933,0.03920235,1.8974643,-0.14348906,0.046532765,0.02128957,0.44827107,0.27282387,-0.19880515,-0.05493648,0.4345014,0.32441455,0.15161516,-0.5920365,0.0036564283,-0.22785252,-0.46729678,-0.19437064,-0.39981532,-0.0717876,-0.24883533,-0.6372913,-0.12514135,0.0529558,-0.23461595,0.4115255,-2.405588,-0.17512222,-0.077025615,0.44257617,-0.2909447,-0.3862583,-0.14139149,-0.3531331,0.36351836,0.43891498,0.40774447,-0.62967694,0.35271382,0.4157189,-0.48666844,-0.09827785,-0.5872085,-0.14249143,-0.07594578,0.5918436,-0.11482782,-0.14216152,0.17192197,0.2921936,0.52279663,-0.20952016,0.17544812,0.32758394,0.503523,-0.028754875,0.47600952,0.1110743,0.47162658,-0.08870375,-0.29368675,0.4642135,-0.22495683,0.27312106,-0.008348137,0.22617465,0.44020292,-0.46383968,-1.062527,-0.49642092,0.029139606,1.1370127,-0.47109497,-0.40469337,0.25544482,-0.27525607,-0.15643656,-0.012922386,0.38834348,-0.06843341,0.1589363,-0.8615206,0.13856085,-0.0043039694,0.17250642,-0.00921811,0.050721124,-0.3214344,0.60999703,-0.10286245,0.35486448,0.24902542,0.33136126,-0.34094268,-0.7356411,0.111382544,1.0462443,0.52908397,0.03757681,-0.28132743,-0.3490129,-0.30260554,-0.024630088,0.16416235,0.34287742,0.7756629,0.014107933,0.29947647,0.24743551,-0.13966176,0.02911003,-0.28434345,-0.2534846,0.05156803,0.17287926,0.42522785,0.74696463,-0.13877925,0.5772687,-0.051617842,0.37287706,-0.082594186,-0.6212899,0.44385362,1.214914,-0.2604971,-0.19554815,0.5652048,0.49385643,-0.2926596,0.4786839,-0.6466344,-0.42477804,0.5053442,-0.26332515,-0.38458723,0.42889056,-0.38053352,0.2030987,-0.95284057,0.4444723,-0.052327584,-0.23687603,-0.54893786,-0.058080643,-3.5952175,0.15404767,-0.25822982,-0.23572893,-0.0370066,-0.2940068,0.38492125,-0.79285514,-0.5186486,0.00907957,-0.0063909963,0.68947315,-0.11327971,0.08119336,-0.20915341,-0.36255288,-0.12788546,0.30289182,0.059511527,0.356638,-0.07827854,-0.58725935,-0.05035018,-0.121708214,-0.46343553,0.049562763,-0.6162491,-0.6165472,-0.23517522,-0.5939767,-0.099346325,0.68694067,-0.030558635,-0.014068885,-0.22972842,0.022511113,0.13375589,0.22894731,0.2938635,0.07757928,0.21836436,0.02167321,0.0176855,-0.35178393,0.059045304,0.0048690652,0.19647123,0.4810602,-0.1548624,0.29811496,0.63865536,0.46444547,-0.3307411,0.82007533,0.5784859,-0.07574016,0.26598406,-0.16486034,-0.34159994,-0.659781,-0.3842535,-0.3153619,-0.47085032,-0.30262744,-0.03337648,-0.31046832,-0.7291055,0.65531546,-0.09819521,0.37357455,-0.16415119,0.37869152,0.6187285,-0.18453833,-0.16114864,-0.16115908,-0.31128258,-0.54992455,-0.33277637,-0.7614078,-0.7069408,0.11820638,1.0851392,-0.21101496,-0.058149084,0.0921603,-0.02386517,0.016729483,0.04039877,0.030426037,0.23234618,0.35020256,-0.028348029,-0.7809055,0.5205004,-0.049963593,-0.007864825,-0.4458042,0.14853132,0.5741799,-0.60311157,0.36998296,0.37853405,0.16157866,-0.014134532,-0.6810777,-0.08577773,0.19516838,-0.26601452,0.60448444,0.30249247,-0.9104161,0.4655379,0.29518026,-0.4965421,-0.7044697,0.60582155,-0.009678859,-0.29841024,-0.14806741,0.3727138,0.11227569,0.037135277,-0.30112913,0.30531627,-0.5136925,0.2846499,0.37411544,-0.10817293,0.37430525,-0.22473912,-0.17912029,-0.7084408,0.13049126,-0.43661514,-0.4214532,0.20147389,-0.02293012,0.053867374,0.1219862,-0.002656147,0.5121752,-0.31134212,0.07295361,-0.0010742247,-0.313438,0.5364028,0.6128694,0.6159803,-0.3352607,0.53009397,0.031668484,-0.15919363,-0.0038049147,-0.03227581,0.5366999,-0.02084335,0.31938154,0.089033425,-0.101098314,0.41153675,0.74252397,0.15734011,0.5017951,0.15057711,-0.2971973,0.09199845,0.16939552,0.12610751,-0.11431656,-0.458889,-0.06810707,-0.076665916,0.30139506,0.6152822,0.14752817,0.20557891,-0.12709975,-0.21423283,0.19707158,0.1114425,0.11036289,-1.2784387,0.12965865,0.3534576,0.66791916,0.48894614,0.053580113,-0.0319932,0.43772805,-0.2713525,0.0506171,0.36693746,0.00964573,-0.6326121,0.6003662,-0.7812854,0.45019227,-0.13838202,0.027175415,0.05442271,0.056307852,0.41609862,0.8884418,-0.11399542,0.031964466,-0.015467927,-0.3282755,0.12301763,-0.4265024,0.10637997,-0.52131116,-0.36178985,0.67753696,0.39566764,0.293421,-0.18136886,-0.010816246,0.1571789,-0.3151494,0.26389572,-0.00631465,0.15821072,-0.23051555,-0.55795217,-0.25372884,0.49087623,0.026416011,0.11328722,-0.0012004524,-0.17624879,0.15522398,-0.27760255,-0.0033641271,0.023777252,-0.68818814,-0.093715236,-0.47823632,-0.4068223,0.5888066,-0.21072693,0.12710263,0.21723866,0.020799352,-0.43161833,0.20191005,0.097706154,0.77056515,-0.06588146,-0.20151004,-0.22704822,0.17160484,0.17032288,-0.17541865,-0.10045455,-0.20560762,0.15050747,-0.66436005,0.45200175,-0.1503089,-0.40059808,0.03757986,-0.1015286,0.014911963,0.4593842,0.002392225,-0.27319157,-0.08523971,-0.051579837,-0.33654368,-0.26095948,-0.0440225,0.27566618,0.206571,-0.17607588,-0.13430876,-0.03712678,0.16579095,0.57025796,-0.027970638,0.3624065,0.4911334,0.053468935,-0.40338588,0.05881487,0.46139592,0.53086656,0.027787,0.058627956,-0.40001732,-0.48930866,-0.40934378,0.111210786,-0.26841283,0.3643373,0.15863827,-0.37926868,1.0222127,0.082447335,1.2704743,-0.06418168,-0.47033548,0.20795622,0.5849072,0.021937799,-0.10833749,-0.37889254,1.0474901,0.6918787,-0.10767538,-0.16867487,-0.39107096,-0.29530275,0.25503567,-0.40226108,-0.17861971,-0.10445538,-0.6977282,-0.27191952,0.13999644,0.30020618,0.030272849,-0.14493278,0.1250311,0.3736089,0.03381569,0.2697361,-0.562538,-0.22852814,0.2596018,0.26137847,-0.1256023,0.14469063,-0.54907274,0.46249846,-0.45843834,0.11988342,-0.28347448,0.22335215,0.032305297,-0.3541008,0.29861522,0.018951813,0.27664942,-0.35273272,-0.36424926,-0.2677486,0.63333136,0.022915695,0.069831006,0.62546754,-0.45250478,0.17028593,-0.10737236,0.38994572,1.1956587,-0.2568825,-0.07380667,0.3691269,-0.34561282,-0.87994695,0.38657004,-0.40920287,0.33003995,-0.02850142,-0.4354785,-0.4920322,0.33136857,0.15993074,0.06438683,-0.031472526,-0.5335946,-0.04612232,0.23211357,-0.23625264,-0.17378458,-0.24459916,0.07078704,0.55158997,-0.40545934,-0.22493853,0.03776423,0.35206822,-0.18126145,-0.5595815,-0.076557875,-0.29923114,0.28543994,0.1402492,-0.40177503,0.030036628,0.09457649,-0.41781422,0.06381884,0.37793514,-0.32158262,0.081187785,-0.3476982,0.08171351,1.1164181,-0.13669834,-0.11519736,-0.57640314,-0.54580927,-0.9646907,-0.3540288,0.38044667,0.16686018,0.12826353,-0.81618917,0.10766579,-0.22710547,-0.081123255,-0.023462016,-0.47692233,0.5671501,0.15238316,0.33340302,-0.05511871,-0.7820326,0.12799446,0.12873542,-0.21026951,-0.6265911,0.64752185,-0.27057588,0.7624937,0.19557935,0.15743843,0.23658265,-0.6185665,0.013023124,-0.22539173,-0.08243113,-0.74311167,-0.0054957196 -770,0.29001752,-0.08994159,-0.42257127,-0.0938155,-0.37609947,0.07443057,-0.21875161,0.21691914,0.37138784,-0.09694553,-0.225887,-0.11826951,0.108559705,0.35150555,0.03203111,-0.44129562,-0.20495878,0.2170224,-0.75279117,0.4911323,-0.34545746,0.17690822,0.14539592,0.38578436,0.14514843,0.45667693,0.15668078,-0.10276644,-0.2207381,-0.08808974,-0.1368583,0.2705111,-0.6221586,0.115608215,-0.31982237,-0.09654401,-0.004598508,-0.44866836,-0.30800486,-0.6894008,0.13339837,-0.9610344,0.5370365,-0.03845843,-0.06508641,-0.09711706,0.28806007,0.43899664,-0.34414577,-0.05841336,0.30183837,-0.32437718,-0.16776404,-0.26500964,-0.14143859,-0.27942482,-0.45517164,-0.024003554,-0.48996463,-0.2254143,-0.23885472,0.20404616,-0.22934793,0.05008568,-0.26992464,0.35934025,-0.4949586,0.26346907,0.32555643,-0.38213494,0.19670011,-0.54837626,0.04270537,-0.11367879,0.5028627,-0.03924279,-0.13426976,0.44927642,0.34175923,0.32242128,0.21369047,-0.28945082,-0.33099225,-0.15152234,0.17291863,0.4478576,-0.17612414,-0.08720985,-0.087378025,0.050518822,0.22864528,0.3725681,-0.037736516,-0.24414572,-0.0832134,-0.18138841,-0.041681994,0.3409591,0.51940334,-0.13837478,-0.28556103,0.22034883,0.56197894,0.35565978,-0.19495958,-0.13637947,0.16926551,-0.58947027,-0.18051845,0.1861421,-0.16384524,0.47584587,-0.081747875,0.07597459,0.85185,-0.10951522,-0.023769386,-0.004708717,0.07573899,-0.100864194,-0.28130564,-0.11447572,0.20383462,-0.48899958,0.095378995,-0.15377448,0.4815627,0.096617885,-0.57865494,0.36780408,-0.5173378,0.15581258,-0.021099854,0.5748959,0.6878617,0.45366144,0.41277283,0.7779373,-0.23556513,0.25048807,-0.047440443,-0.43634212,0.107178055,-0.26127577,0.14048417,-0.4533922,0.013440629,-0.2580084,-0.011722887,0.2114803,0.35155818,-0.5001203,0.03558793,0.2302576,0.8411077,-0.2938067,-0.13122633,0.59834564,0.8997795,0.95731443,-0.06710192,1.2259542,0.27612954,-0.19623643,0.08085724,-0.36486652,-0.61949503,0.16517247,0.27091795,-0.38116294,0.2381166,0.032388844,-0.10606343,0.33790737,-0.46380398,0.046329517,-0.044583656,0.2012457,0.16257457,0.050663617,-0.42283386,-0.22598137,-0.13327795,-0.05118101,0.18779792,0.15313229,-0.27457902,0.37742278,-0.013663655,1.5514927,-0.14159815,0.088182315,0.15184627,0.4748241,0.21524532,-0.06602881,-0.117270015,0.53455526,0.36854127,0.13273805,-0.5010834,0.26444504,-0.33564535,-0.2708324,-0.098195754,-0.3542773,-0.13241376,0.10386065,-0.41093495,-0.20514666,-0.08938649,-0.29904696,0.4558747,-2.7112174,-0.0520417,-0.089844055,0.30874762,-0.3024928,-0.19711949,-0.13976988,-0.5756864,0.15982622,0.14149778,0.42402542,-0.59535813,0.33290112,0.6073132,-0.5748433,-0.22341429,-0.600289,-0.14489365,0.0048195124,0.40296504,-0.020014977,-0.100539684,-0.17356713,0.07742079,0.64734966,-0.013251388,0.102466606,0.6249578,0.3747823,0.122702904,0.55847764,-0.1053695,0.53895813,-0.28650168,-0.3051171,0.43928593,-0.17612536,0.34208646,-0.24796233,-0.022083174,0.6136237,-0.31988323,-0.9258196,-0.55950755,-0.3907334,1.0927448,-0.45090058,-0.45653552,0.29739067,-0.22759806,-0.12831935,0.06496118,0.6580325,-0.053555593,0.21604805,-0.68331504,0.06643772,-0.09235663,0.33147132,0.07586838,-0.0055279294,-0.41412708,0.6627223,-0.016788708,0.49804202,0.29753235,0.2661821,-0.17428215,-0.3874449,0.0900929,0.84285873,0.25643617,0.019378673,-0.23774534,-0.24979332,-0.04757476,-0.27894595,-0.094774775,0.5688276,0.6360776,-0.14366356,0.26874766,0.36618167,-0.062267315,0.0037539005,-0.16312627,-0.24077216,0.02029117,0.0813467,0.40285823,0.84835523,-0.084187664,0.42446697,-0.15674025,0.42561978,0.0053239744,-0.6292671,0.55863005,0.5209612,-0.18939768,-0.03559204,0.59023225,0.4415864,-0.37914625,0.46462536,-0.6289591,-0.28719193,0.56774867,-0.13135788,-0.5376971,0.20926234,-0.275077,0.10720158,-0.6357259,0.20851423,-0.15302019,-0.43127203,-0.42981917,-0.13050194,-3.118583,0.06291041,-0.15454316,-0.14918827,-0.22757357,-0.049547207,0.13434511,-0.5463131,-0.5408183,0.11475933,0.20680033,0.5327357,-0.22172932,0.13823907,-0.21824023,-0.21615525,-0.006078772,0.27977672,0.2856459,0.266522,-0.29011753,-0.5306185,-0.04484507,0.04027501,-0.48317435,0.09788196,-0.7274255,-0.36230844,-0.135657,-0.47674066,-0.11260858,0.6074644,-0.5113294,0.010148968,-0.2768889,0.14487915,-0.15184338,0.10982046,0.20068304,0.20918804,0.11646875,-0.12072428,0.04382774,-0.25344408,0.6539992,-0.0011067609,0.3530858,0.19131048,0.09664181,0.22652826,0.32014382,0.62533087,-0.27386525,1.1235547,0.4707037,-0.14793505,0.18415976,-0.30281287,-0.26521453,-0.5495169,-0.3526608,0.0465068,-0.49410772,-0.5045076,-0.018367283,-0.34887248,-0.8546095,0.66780186,-0.047387674,0.29060432,0.013813529,0.12264036,0.49768314,-0.3517937,-0.071562834,-0.06358489,-0.16079743,-0.55512446,-0.4116343,-0.46880907,-0.53562087,0.037232287,0.8864166,-0.24179773,0.13334762,0.07463025,-0.4082181,-0.075848095,0.09988402,0.08141567,0.2767466,0.57351303,0.008868626,-0.68293244,0.42958656,-0.08515566,-0.07447275,-0.55901605,0.18118167,0.54032975,-0.7832579,0.6398079,0.34400374,-0.009969121,-0.09849312,-0.49778736,-0.37720948,-0.1937841,-0.2290694,0.4228931,0.18303326,-0.7325552,0.42057282,0.17994373,-0.56202066,-0.7010194,0.300289,-0.18146499,-0.2497115,0.028222298,0.33056095,0.02327261,0.025109768,-0.12698385,0.09062955,-0.31529644,0.25465956,0.18866095,-0.10125761,0.22153817,-0.13542205,-0.29211745,-0.7449449,0.0822338,-0.34123388,-0.35270587,0.4191725,-0.00088158844,-0.103025004,0.16672802,0.20061558,0.34100896,-0.20561793,0.019254185,-0.024804652,-0.41274256,0.26932594,0.422877,0.49737692,-0.42174694,0.5244064,0.12989505,-0.2916418,0.20564,-0.066141024,0.41724935,-0.07301838,0.3365802,-0.1467136,-0.21411456,0.32256317,0.6826353,0.0660112,0.4126559,-0.021407219,-0.04383322,0.41303098,-0.05589126,0.08564196,-0.045063607,-0.5798218,0.08867402,-0.24354738,0.20332263,0.42204106,0.33860663,0.32118237,0.048725504,-0.19904393,-0.0011965175,0.21574052,0.082656816,-1.103346,0.28722343,0.23238793,0.9089296,0.30813774,0.16547337,-0.16613144,0.79750454,-0.3164932,0.06413128,0.4828195,-0.018910503,-0.44670093,0.69650155,-0.70493436,0.4867597,-0.04315492,-0.13334854,0.19464025,0.106828734,0.28287336,0.85713905,-0.24022745,-0.057100292,-0.0068328218,-0.22007778,-0.040430486,-0.33739153,0.047818545,-0.487867,-0.53678834,0.71169215,0.48927307,0.4653186,-0.1954288,-0.028679034,0.012270133,-0.14742361,0.26886636,-0.01892987,0.023291077,0.120407104,-0.6008734,-0.057066273,0.53694737,-0.09019037,0.21763651,-0.17158595,-0.18646558,0.07424924,-0.32901686,-0.050975885,-0.12921818,-0.7477351,-0.016737998,-0.24597628,-0.579392,0.43353865,-0.21489881,0.12419625,0.09065009,-0.019158464,-0.3682594,0.54669166,0.11729352,1.0132476,0.11705206,-0.11987344,-0.2734458,0.26167494,0.31296137,-0.16477394,0.089715004,-0.3407516,0.063812114,-0.5010401,0.487312,-0.22957903,-0.5438206,0.15395437,-0.29448065,0.01580152,0.58541614,0.0382888,-0.22707005,0.096490115,-0.21470541,-0.48443472,-0.035679482,-0.35840708,0.17210193,0.35637924,-0.10330942,-0.19913386,-0.26616654,-0.22303744,0.42302927,-0.0062950533,0.5069277,0.18433596,-0.024471045,-0.12055306,0.07241281,0.19599985,0.5998106,0.12555367,0.029711533,-0.36182252,-0.34063625,-0.31742898,0.29489657,-0.046069875,0.33494335,0.10587387,-0.23579751,0.95374614,-0.07260491,1.1378331,0.20820478,-0.32905084,0.10403445,0.49622294,-0.110935815,0.044039138,-0.49124017,0.8359036,0.53425574,-0.088352345,-0.03271071,-0.39775068,0.021572892,0.30313075,-0.25884894,-0.05169229,-0.07359989,-0.6246642,-0.2927625,0.23483324,0.17531551,0.21116771,-0.067097254,-0.022511395,0.02718827,0.10308177,0.27397996,-0.5224161,-0.23557867,0.34848064,0.2264499,-0.1396902,0.216793,-0.404613,0.5080441,-0.46744785,0.05372499,-0.43282166,0.14401156,-0.27233198,-0.2411582,0.15559775,-0.13279998,0.42629325,-0.41572914,-0.31921807,-0.16347288,0.3939351,0.11781071,0.16427006,0.65311825,-0.29531226,-0.0136852665,0.050650127,0.52569556,1.0132042,-0.67069143,0.14459139,0.29957736,-0.33470136,-0.57158375,0.5036437,-0.3925132,-0.13311414,-0.03888039,-0.43888515,-0.3625334,0.21604629,0.014797342,0.023162642,0.04485617,-0.5303133,0.08861614,0.24607341,-0.19812424,-0.23200265,-0.22506168,0.34621087,0.65632427,-0.19634666,-0.45049986,0.14543562,0.28319514,-0.23667262,-0.3401717,-0.065766424,-0.20132956,0.22081253,0.05707341,-0.35574672,-0.15635015,0.2100081,-0.44879645,0.021849366,0.18882614,-0.33358517,0.07951818,-0.14041929,0.0022131046,0.87794036,-0.3162483,-0.07776901,-0.6325977,-0.47101584,-0.9347286,-0.26697075,0.10090902,0.13218251,-0.084954314,-0.3817827,-0.02939125,-0.22455493,-0.104382135,0.009120408,-0.65365815,0.3923741,0.1355349,0.48828635,-0.35965207,-0.8799227,0.19009878,0.1213162,-0.12517168,-0.63758785,0.49524397,-0.10713894,0.84237665,0.034718223,-0.07300186,0.14217782,-0.38715044,0.010438337,-0.22171663,-0.18455805,-0.80560917,0.00069941086 -771,0.45263153,-0.20102233,-0.4351648,-0.11092388,-0.18231954,0.11590826,-0.2287694,0.4212764,0.13977706,-0.53675056,-0.14741005,-0.16596618,0.06070657,0.44290966,-0.19966777,-0.6054223,0.109076254,0.12496923,-0.40373972,0.5339193,-0.57047784,0.3288861,0.046725824,0.39857256,0.32198936,0.080406465,0.16959201,-0.07336627,-0.20602277,-0.36216864,-0.15759477,0.2143967,-0.35942486,0.012772787,-0.08102099,-0.37746227,0.02813368,-0.58034766,-0.3107192,-0.8884658,0.30422866,-0.8238967,0.72811836,0.07476579,-0.19390416,0.24118795,0.25445893,0.3805924,-0.12126342,-0.08524739,0.18405789,-0.2867966,-0.08095369,-0.361922,-0.19386347,-0.51255536,-0.7218678,0.015004135,-0.5443773,-0.40712303,-0.21205306,0.20266128,-0.37846893,-0.17992672,0.0383518,0.6200923,-0.4026977,0.028946092,0.22803122,-0.14316711,0.4389294,-0.6272204,-0.053439103,-0.07962573,0.2488901,-0.1640154,-0.25225526,0.20329963,0.4552601,0.35318327,-0.04510699,-0.28830355,-0.24905413,-0.059473917,0.078785054,0.49184275,-0.2505287,-0.57206243,-0.0027806438,0.031896956,0.35250574,0.29203156,0.33807886,-0.060681906,-0.09748812,0.24878223,-0.29521993,0.6468672,0.35883585,-0.39710066,-0.07019173,0.36819422,0.50071377,0.22132741,-0.16248454,-0.12463801,-0.0367462,-0.65722233,-0.20072205,-0.047329817,-0.4463759,0.5893805,-0.2672792,0.3855352,0.7042075,-0.24310128,0.0526401,0.1759732,0.088587165,0.019508123,-0.23286176,-0.29244903,0.27375054,-0.52930933,0.057755854,-0.18545829,0.7024927,0.19506563,-0.47021902,0.32435882,-0.63134265,0.18119973,-0.08218264,0.43207604,0.61604667,0.47824198,0.39715025,0.6246586,-0.3719517,-0.08269404,0.10031504,-0.3474747,0.1667681,-0.14707233,0.0048028138,-0.53070545,-0.114703625,-0.04829871,-0.0885822,0.15659197,0.44174212,-0.705794,-0.10629852,0.028217133,0.8742416,-0.2649034,-0.1295411,0.76622605,1.1000034,1.0536621,-0.040192273,1.1387929,0.20805219,-0.28678992,0.040969368,-0.13379556,-0.49262488,0.43934923,0.40442607,-0.7166924,0.44493058,-0.059883066,-0.08698273,0.37675703,-0.35365188,-0.13968235,-0.08083392,0.091315344,0.074462846,-0.30902088,-0.5156924,-0.22423516,-0.21753886,0.045040276,0.24645281,0.33075684,-0.2381696,0.36275938,-0.05011762,1.4019004,-0.064411685,0.12959118,0.12391495,0.35396278,0.28041404,-0.048893414,-0.009313767,0.41682035,0.37243238,0.28640202,-0.6202444,0.17784993,-0.2135897,-0.38369095,-0.07976658,-0.37114716,-0.0511918,-0.09436442,-0.42403543,0.022438267,-0.23161823,-0.29071453,0.3530596,-2.6734748,-0.36452764,-0.05837468,0.47552806,-0.15740559,-0.36738867,0.025419427,-0.36843687,0.42747858,0.17083064,0.52896035,-0.7129058,0.38664308,0.42555317,-0.62738186,-0.26423618,-0.7230275,-0.23930386,-0.11094703,0.33690736,0.066089734,0.01654977,0.20744249,0.2804879,0.53279406,0.04590911,0.24686135,0.2251747,0.45928714,-0.1925436,0.6625951,-0.08880852,0.59422755,-0.028895058,-0.27211228,0.32818228,-0.3610527,0.19192675,-0.08425306,0.13541177,0.45248523,-0.32596815,-0.9196631,-0.6939633,-0.20631504,1.1627972,-0.12816212,-0.394033,0.2206178,-0.33154643,-0.3466677,0.003778852,0.57749903,-0.18302345,-0.01936189,-0.79496104,0.028737834,-0.055093892,-0.011850252,0.08541444,0.07825799,-0.5010709,0.5550198,-0.06981147,0.3188036,0.29039592,0.28100938,-0.4762773,-0.4987456,0.0002401666,0.92881805,0.5199973,0.0149911875,-0.12802078,-0.13869783,-0.46638313,0.052700024,0.029910129,0.72154367,0.8223555,-0.11709128,0.09069629,0.27638647,-0.005174334,0.13115495,-0.15665469,-0.31011677,0.01200286,-0.088723555,0.5982951,0.6415225,-0.18568622,0.5694875,-0.051988088,0.34102827,-0.24284783,-0.5161418,0.509894,1.1784567,-0.29843995,-0.27189705,0.6984939,0.3654409,-0.24488407,0.3788547,-0.60485613,-0.2782481,0.5901385,-0.18086042,-0.49904367,0.23311175,-0.21242546,0.12061606,-0.9313031,0.42511994,-0.35240772,-0.5616277,-0.36116415,-0.0001480671,-3.5967467,0.25341934,-0.40355352,-0.17081887,-0.23260559,-0.064311676,0.33141544,-0.7710498,-0.52917457,0.0047202087,0.02720295,0.907389,-0.17868277,0.07409604,-0.20580758,-0.40883362,-0.13244149,0.24283248,0.099542566,0.35732958,-0.0892295,-0.40429047,0.08891311,-0.06188535,-0.5833006,0.12456726,-0.7008399,-0.64889425,-0.12730342,-0.51899993,-0.33563122,0.73410195,-0.22503391,0.10204477,-0.18344235,0.14395441,0.031000448,0.30515045,0.14185797,0.19637336,0.036364883,0.027228173,0.1665269,-0.2664634,0.2725127,0.07606055,0.32025418,0.28167346,-0.073479205,0.3268922,0.49830335,0.6225946,0.04094155,0.90903634,0.41443694,-0.04380554,0.21182369,-0.30737656,-0.40915248,-0.39289606,-0.34904703,0.0022315246,-0.3874318,-0.3918661,-0.15091795,-0.37711635,-0.8126391,0.64845854,-0.045255847,0.30321744,-0.16539706,0.53302354,0.6335652,-0.21524447,-0.05797774,0.11644831,-0.26489064,-0.5895684,0.11638828,-0.68618673,-0.5557508,0.04632507,0.6884688,-0.3329107,0.21249507,-0.037080165,-0.06430289,0.0073648323,0.1721004,-0.14200662,-0.024101194,0.47109714,-0.12726575,-0.7566122,0.40688735,-0.23579921,-0.17970583,-0.57730716,0.25235087,0.81271625,-0.5043425,0.5559802,0.5248401,-0.10750559,-0.3275641,-0.5561274,0.025358833,0.21901971,-0.28398746,0.38778785,0.19228615,-0.79292995,0.4047077,0.40034983,-0.42943498,-0.60434985,0.7823657,0.043714054,-0.3100667,-0.09146408,0.46789533,0.23022754,0.11745115,-0.2383483,0.33809802,-0.47528756,0.18616493,0.14551184,-0.06834253,0.22115758,-0.004730775,-0.13766733,-0.9668996,0.015415916,-0.5178133,-0.37313017,0.3095517,0.08698607,0.24410635,0.2943739,0.25850323,0.41289786,-0.40328422,0.14795256,-0.13144591,-0.27484444,0.42701337,0.63120675,0.48113558,-0.41954538,0.59302765,0.06587715,-0.082323514,-0.031115811,-0.009339016,0.46838024,0.045618113,0.58367574,0.061863247,-0.20768477,0.2855704,0.5157457,0.10827006,0.4578716,0.22953683,-0.062335394,0.0030799943,-0.0093999375,0.28986135,0.045602478,-0.66862065,-0.123250686,-0.18247572,0.13042504,0.6398036,0.1494548,0.22030783,0.023278087,-0.5228023,0.0062539736,0.17891058,0.039297756,-1.3680375,0.5501555,0.27305433,0.7524362,0.2676491,0.07295504,-0.052555885,0.55790275,-0.08521588,0.03878089,0.45847556,0.11528648,-0.5253758,0.6218375,-0.9492557,0.3678487,-0.07828753,-0.027631728,-0.22884025,-0.1821336,0.470774,0.90968,-0.20674965,0.005180272,0.0148479575,-0.31370276,0.2975543,-0.51798135,-0.016863765,-0.5285396,-0.32485154,0.5127149,0.59530103,0.35547546,-0.20577739,0.09694561,0.2995188,-0.1649181,0.3060589,0.0973254,0.19690663,-0.09080955,-0.68616474,-0.16350414,0.41335085,0.015643977,0.2216951,-0.099417806,0.052146867,0.19896783,-0.17992224,-0.12575755,-0.079191774,-0.6000968,-0.08885987,-0.4367565,-0.49060932,0.548903,-0.27105772,0.19209555,0.10665214,0.008247777,-0.10900486,0.26824415,0.14587082,0.61761975,0.104016796,-0.29263493,-0.2745147,0.3083574,-0.051750958,-0.2209274,-0.039114155,-0.16571523,0.20748681,-0.60277075,0.4832344,-0.122898415,-0.2910886,-0.1035999,-0.13127996,-0.015216387,0.46391872,-0.2545266,-0.13955861,-0.2548466,-0.33799535,-0.15911545,-0.35428238,0.09636234,0.2309177,0.28530714,-0.114336774,-0.20857292,-0.1020073,-0.2562569,0.35770628,-0.088711515,0.5856608,0.53823316,-0.016053949,-0.23758382,-0.31758526,0.37704223,0.4030438,0.018434336,-0.16386057,-0.44432443,-0.5068805,-0.32345822,0.1444545,-0.068257205,0.553684,0.044851966,-0.07010269,0.8784015,-0.0584554,1.316145,-0.1514169,-0.52989966,0.049101166,0.64094794,-0.09570433,-0.21791857,-0.3531469,1.083871,0.32077128,-0.12497687,0.0006725135,-0.43622506,0.008106791,0.2665995,-0.25174823,-0.18395105,-0.05475507,-0.4927294,-0.31402892,0.26841304,0.28209874,0.16116363,-0.11256183,0.09892754,0.4169851,-0.14318922,0.37217093,-0.5435075,-0.21645302,0.27771753,0.42295578,-0.046487316,0.07109738,-0.4124688,0.46970627,-0.48930895,0.09799134,-0.3201933,0.21053259,-0.10844182,-0.46905792,0.3506975,0.07039123,0.2368144,-0.27805603,-0.36578724,-0.11562621,0.29535836,0.17179778,-0.033519235,0.502596,-0.31091267,-0.038626965,-0.0073946486,0.6601552,1.2823315,-0.099601455,0.047611393,0.3896692,-0.50529873,-0.75607914,0.4082259,-0.40929487,0.17912666,-0.03811968,-0.261662,-0.6177043,0.20424856,0.21915817,0.16865672,-0.003345884,-0.5475568,-0.2536931,0.26002532,-0.4066771,-0.22168095,-0.24668995,0.16669711,0.48088965,-0.3268842,-0.37875304,-0.1743223,0.2648734,-0.19554274,-0.41322595,-0.0755429,-0.31710607,0.32591838,0.010061998,-0.41459355,0.04006233,-0.089759,-0.49173304,0.27581197,0.033920743,-0.2820625,0.21289611,-0.18833359,-0.09301415,0.73569286,-0.2937257,-0.040233,-0.40841553,-0.51524127,-0.600106,-0.4049028,0.22808519,0.009893353,0.038803358,-0.5816451,0.023827236,-0.09979118,-0.061464503,-0.048749328,-0.31772187,0.35611743,0.12624003,0.35702425,-0.12794924,-0.76112545,0.2125655,0.16858277,-0.19461474,-0.7316077,0.5225427,-0.17442928,0.85603404,0.08124955,0.14383392,0.27397615,-0.30434337,-0.09356272,-0.19633618,-0.27037567,-0.79719454,-0.019303368 -772,0.3226612,-0.33320132,-0.6281918,0.08433208,-0.21837534,0.2526346,-0.3293374,0.45423663,0.11870519,-0.44908005,-0.022094063,-0.29250893,-0.050463457,0.23448361,-0.11898056,-0.48694694,-0.121304475,0.37601304,-0.31271946,0.4687368,-0.1812971,0.11729138,0.19682151,0.45398247,-0.29420772,0.04358083,0.09423205,-0.17956607,-0.021439185,-0.0683057,0.28087014,-0.14401756,-0.9141283,0.3423541,-0.20836757,-0.38553986,0.2685621,-0.5991843,-0.32329294,-0.5956052,0.13055795,-0.9128933,0.72434384,0.14458744,-0.20918663,0.06421003,-0.26453835,0.031570673,-0.16226637,0.011749221,0.40059954,-0.40712237,-0.3487305,-0.316244,-0.14041367,-0.50604075,-0.6901955,-0.04057473,-0.43201077,0.3120706,-0.22581376,0.14182526,-0.26646173,0.029548274,-0.05997537,0.20085788,-0.5756163,0.099806175,-0.035418604,-0.11956635,0.3071832,-0.5253198,-0.08118117,-0.20192379,0.246072,-0.14043519,-0.1347205,0.07861963,-0.042247634,0.70884776,-0.05822002,-0.045146305,-0.3186271,0.24402434,-0.069570236,0.57951695,-0.03246567,-0.2581869,-0.025295397,-0.120833516,0.12246421,-0.16238648,-0.21694078,-0.18175411,-0.08450263,-0.41780457,-0.23711589,0.2700769,0.58817744,-0.31171957,0.018271737,0.41664574,0.77037454,0.31592792,0.11120061,0.013982634,0.06724116,-0.4811344,-0.16656452,-0.00028157898,-0.27379376,0.7483205,-0.11074887,0.43899918,0.5758408,0.07077234,-0.15785381,-0.122507915,0.021364296,0.12642524,0.075986,-0.38348734,0.61118186,-0.17329155,-0.122593336,-0.17297658,0.5527771,0.08564341,-0.8352454,0.45854208,-0.41861638,-0.027452005,0.0750186,0.72178125,0.47125328,0.86031806,0.053595092,0.8302852,-0.58568835,0.16579127,-0.06491195,-0.3045871,0.34635827,-0.013924162,0.27715644,-0.36881793,-0.098021716,0.008432726,-0.4210564,-0.05294492,0.7626969,-0.4988551,-0.111803085,0.08780941,0.6234958,-0.2952267,-0.1812922,0.4161781,1.0027354,0.76927143,0.14274976,1.2277111,0.18145424,-0.21167381,-0.25004354,-0.034449194,-1.1729898,0.10183292,0.22074825,0.2332161,0.46181938,0.3991738,-0.15151079,0.49809435,-0.53007483,-0.1857157,-0.028076045,0.4896946,-0.13572685,-0.028816786,-0.4652654,-0.12089177,-0.064219065,0.07322792,0.02469237,0.44600594,-0.06686573,0.32502788,0.19405428,1.872861,-0.0050164857,0.1434223,0.091394804,0.30029076,0.15976498,0.09779021,-0.4086226,0.281728,0.17586488,0.21608472,-0.46899876,0.14377788,0.061656296,-0.63322735,-0.23011763,0.0330886,-0.16114296,-0.46354872,-0.1996319,-0.26316562,0.13717067,-0.45814997,0.297946,-2.275334,-0.14376463,-0.049502227,0.67741704,-0.33950055,-0.3022312,-0.2191857,-0.21516806,0.41952062,0.51650023,0.533788,-0.60360724,0.38534826,0.5379132,-0.5631802,-0.08349382,-0.5696032,-0.116508216,0.17771682,0.16989666,0.037737064,-0.4340609,0.19921078,0.03739341,0.01380037,-0.20076445,-0.058381062,0.3588035,0.7372527,0.16323453,0.43768248,-0.33992657,0.3436167,-0.53800803,-0.082790114,0.27327338,-0.36770344,0.5262363,-0.46400186,0.13454999,0.28338343,-0.38281336,-0.8411802,-0.30642658,-0.14749902,1.0326376,-0.38792086,-0.3364454,0.08573161,0.15563826,-0.4360103,-0.023223711,0.4965006,-0.30891985,-0.113324195,-0.90587944,-0.15983932,-0.17960428,0.5793898,0.13458759,0.2670649,-0.7433455,0.60280925,-0.048499532,0.5067764,0.8337125,0.162996,0.11631187,-0.4697387,0.20000319,0.8627584,0.27398145,0.35174683,-0.51137555,0.09787598,-0.05010805,0.16929682,-0.23035349,0.48879877,0.602884,-0.20157287,0.045297995,0.33479077,-0.046354696,-0.10524216,-0.28108066,-0.50978667,-0.18257779,0.00088437396,0.66277236,1.1584302,-0.2821519,0.19625899,-0.13631386,0.17634168,-0.3293799,-0.36370718,0.5633228,0.37498027,-0.21727209,0.013736127,0.4706566,0.37780347,-0.40961626,0.47250473,-0.6673417,-0.5828658,0.28089836,0.025731346,-0.43733898,0.2734144,-0.270622,0.051171802,-1.0402353,0.4118309,0.009385109,-0.5085562,-1.0284595,-0.13907641,-2.0949345,0.15958926,-0.17008938,-0.21276076,-0.011630075,-0.09134085,0.13549049,-0.58362496,-0.7102816,0.41147774,0.08421115,0.32622918,-0.09759304,0.2516388,-0.30945736,-0.31291616,-0.20259957,0.24148387,0.4670244,0.1013043,0.12023927,-0.6025806,-0.13610303,-0.16580333,-0.06696962,0.031504378,-0.60416806,-0.1465715,-0.10531816,-0.52209044,-0.1973184,0.65899163,-0.54703456,-0.14027636,-0.34408164,0.007965167,0.0042148135,0.21922694,-0.18141145,0.041014835,-0.005933649,-0.20178334,-0.22821504,-0.08333084,0.23338816,0.12122533,0.13481587,0.5895684,-0.32167578,-0.024115954,0.68498254,0.7226591,-0.03913208,0.9328571,0.37417197,-0.11470628,0.26843345,-0.28702033,-0.099887066,-0.6397798,-0.17175385,-0.18044007,-0.5753291,-0.44118255,0.1439271,-0.33023086,-0.8512999,0.5820359,-0.067262225,-0.22187525,0.23978692,0.37861216,0.25628287,-0.28096637,0.04450681,-0.1693969,-0.2085967,-0.44177186,-0.5619926,-0.5237182,-0.38566768,0.010221415,1.2117401,-0.07119339,-0.0511004,0.34412357,-0.18395121,0.10562739,0.013204336,-0.034997582,0.13410215,0.4271875,0.36669022,-0.6792243,0.46367392,-0.10159377,-0.08223554,-0.70962423,0.020430548,0.73666817,-0.8610575,0.20815526,0.4383086,-0.042602252,0.13550024,-0.67697644,-0.40115812,0.09067146,-0.1400764,0.11101612,0.20589703,-0.56671834,0.3711416,0.18932655,-0.35521835,-0.89615005,0.41928795,0.015045926,-0.38849008,0.14775313,0.3509858,-0.116484456,0.09031342,-0.53895396,0.19517542,-0.31528315,0.37176564,-0.010068668,-0.41983736,0.51413983,-0.22586271,0.02865845,-1.0124985,-0.053035457,-0.27698243,-0.2950544,0.4869566,0.073279195,0.023377905,-0.054035127,0.5729525,0.43711576,-0.73107475,-0.1640046,-0.20541614,-0.39747536,0.3433827,0.4456717,0.47581154,-0.5822007,0.5693978,-0.12196954,0.06454395,-0.18318318,-0.1330502,0.4570587,-0.13977607,0.055106293,0.15205969,-0.122927986,0.089958996,0.9233391,0.26578882,0.41725838,0.2922993,-0.15228456,0.6060531,0.15175274,0.24302308,-0.30456358,-0.6025722,0.38096538,-0.05583396,0.12201635,0.26035255,0.08951998,0.46978426,-0.4170258,-0.07611328,0.11532964,0.47408634,0.2832235,-0.7340594,0.3238678,0.07506417,0.55708176,0.6730229,0.15741122,0.38541186,0.60996765,-0.18343891,0.18971348,0.32751778,-0.022228308,-0.3246597,0.44033676,-0.5192883,0.1751638,-0.30389488,-0.008494311,0.39464748,-0.10611844,0.5521308,0.8068841,-0.03938369,-0.01131604,-0.18616633,-0.047494605,-0.24378936,-0.27633068,0.15096712,-0.54897285,-0.31996316,0.7331679,0.45238835,0.33181566,-0.2650951,0.014355198,0.11165318,-0.20462853,0.4421899,0.17824203,-0.056118548,0.16998357,-0.61424965,0.026625939,0.85787386,0.17676836,-0.120578796,-0.073913515,-0.27234292,0.4323982,-0.20914038,-0.28799665,-0.10574892,-0.9407489,0.1026288,-0.53910685,-0.24498834,0.5447925,0.3455568,0.32436025,0.10474434,0.01828205,-0.35553142,0.43538225,0.18565835,0.98328644,0.39170447,-0.34475198,-0.3158774,0.048915427,0.2897395,-0.19197315,0.10923711,-0.114747554,0.16268188,-0.38630855,0.34604204,-0.15406315,-0.2911569,0.20971009,-0.3075933,0.09307768,0.5957155,0.121783465,-0.051202025,0.05659106,-0.13395223,-0.19670238,-0.15867776,-0.5628531,0.19537663,0.014534818,-0.01679311,-0.073162675,0.13090245,-0.28101742,0.62211007,0.4765021,0.08697737,0.49725035,0.15699261,-0.5351664,-0.04113554,-0.21034677,0.6784907,-0.05799393,-0.21585536,-0.41884702,-0.631821,-0.26518077,0.32386923,-0.23597015,0.06882989,0.09434489,-0.4642175,0.8854268,0.31092113,0.9339797,0.049247093,-0.18810754,0.21131986,0.64538586,0.045411136,0.11249909,-0.6065657,1.2373308,0.5897362,-0.18665454,-0.17940326,-0.15325147,-0.37331048,0.04850923,-0.2971334,-0.3001998,-0.16886245,-0.8270995,-0.09811637,0.2476782,0.1359275,-0.20311396,-0.1877487,0.16028698,0.25297597,0.13735007,0.087705486,-0.66800815,-0.19253899,0.3723769,0.11738525,0.1505474,0.059411842,-0.22142966,0.35528675,-0.38759652,-0.009677897,-0.6435529,0.07896121,-0.08060201,-0.26052383,0.10279766,0.13119218,0.37135515,-0.43230146,-0.32909986,-0.026287006,0.36417645,0.39058936,0.27278644,0.66777825,-0.18961406,-0.07988049,-0.038530774,0.5379996,0.9642737,-0.6116317,0.301409,0.6634376,-0.34067357,-0.5229993,0.32474187,-0.28599274,0.14018056,-0.39088956,-0.20075828,-0.54224694,0.19557951,-0.0072273016,-0.26894516,-0.27603748,-0.7056881,0.014270451,0.60001975,-0.32539216,-0.14067888,-0.11589345,-0.16536058,1.0437486,-0.11817908,-0.4466926,0.14191523,0.25854892,-0.33991635,-0.55908376,-0.09518549,-0.58716434,0.15902723,0.27292597,-0.35171926,-0.0792543,0.24471444,-0.6028831,-0.05204112,0.23641337,-0.30885404,-0.08466535,-0.5265943,0.30802998,1.0559608,-0.010661019,0.089905106,-0.4168213,-0.42766723,-1.0458881,-0.073878855,0.44530213,0.23065287,-0.15259027,-0.47096756,-0.06443106,-0.3568368,-0.33425125,-0.17246562,-0.582164,0.44301644,0.12792856,0.43804845,-0.23573624,-0.9585264,0.19402266,0.067445,-0.4267887,-0.383718,0.44275248,-0.025491156,0.9112481,-0.11947355,0.10427252,0.25785744,-0.8933502,0.12710959,-0.21632229,-0.14140116,-0.63007045,0.097754344 -773,0.5211235,-0.3992587,-0.46883443,-0.1558355,-0.35569632,0.12476073,-0.15536168,0.44289902,0.27220634,-0.31184122,-0.25648507,-0.12540689,0.039891783,0.14594318,-0.16190863,-0.36712602,-0.0915808,0.27028745,-0.48557422,0.5411143,-0.28050512,0.16520956,-0.042607155,0.54968303,0.50593907,0.2555206,-0.13264748,0.10593479,-0.37352848,-0.15977964,-0.10785434,0.47509155,-0.37477174,0.13070388,-0.32337344,-0.41995582,-0.10443342,-0.54058945,-0.3803218,-0.7715092,0.33536503,-1.017032,0.41684443,-0.1556236,-0.20436683,0.31727347,0.1312205,0.2590178,-0.15069482,-0.2675012,0.1434614,-0.06432067,0.0018341024,-0.22603868,-0.15130834,-0.33221248,-0.5046569,-0.04096215,-0.2771133,-0.15080658,-0.24023348,0.14129864,-0.3694442,0.111916415,-0.06111935,0.5768804,-0.34542125,0.27394643,0.118719086,-0.013919203,-0.0602513,-0.5598418,-0.2502767,-0.1421064,0.30129382,-0.11543568,-0.30289152,0.18116048,0.3511568,0.3033161,-0.075455524,-0.1436601,-0.2634159,-0.15711895,0.12115458,0.43753687,-0.0755351,-0.58000404,-0.111993484,-0.09702743,0.29511005,0.17684828,0.2092985,-0.18206114,-0.049908575,0.02531937,-0.15849042,0.4297619,0.33420599,-0.26485518,-0.14376669,0.34154806,0.63620096,0.18806419,-0.25382012,-0.12516889,0.11692132,-0.47933456,-0.08086433,0.060818672,-0.23535194,0.5555065,-0.20925765,0.31923977,0.6201069,-0.14992423,-0.059947174,0.15225035,0.25672966,-0.23969157,-0.36854273,-0.37222627,0.23109867,-0.40941355,0.17111367,-0.077187695,0.73482376,0.07566918,-0.61219734,0.29364434,-0.5801333,0.08585392,-0.13407081,0.3411008,0.6525354,0.38107646,0.38429406,0.4562441,-0.097414814,0.006289963,-0.11150702,-0.34250444,-0.07423084,-0.30114093,0.1557079,-0.52267677,0.19469897,-0.042954393,-0.08672234,0.04551616,0.56738335,-0.45061773,-0.24872415,0.09414453,0.8519555,-0.23589896,-0.20776151,0.90930927,0.8453512,0.9105578,0.014028264,1.0782878,0.24719481,-0.182648,0.19060197,-0.10515717,-0.7063933,0.3026083,0.28695902,-0.5761464,0.14566582,0.15637615,-0.022317994,0.36561298,-0.34879366,-0.011913562,-0.22411428,0.03480329,0.25850427,0.09295643,-0.49228904,-0.34732533,-0.08820998,0.07466542,0.24882135,0.33699974,-0.18151014,0.59005654,0.17370214,1.8506645,-0.032207627,-0.056475934,0.073018864,0.39375973,0.20835926,-0.09080072,-0.08875202,0.31293935,0.21437334,0.11322559,-0.519342,0.1540014,-0.20726813,-0.34473982,-0.10792492,-0.32392284,-0.26629916,-0.05438498,-0.4903077,-0.20576066,-0.22299442,-0.20859668,0.4416796,-2.6436338,-0.28696615,-0.072411746,0.35666853,-0.2158468,-0.50247794,-0.10479465,-0.5355648,0.21675079,0.13822083,0.4770535,-0.6358856,0.32459763,0.37080058,-0.55675864,-0.11234759,-0.6282555,-0.11377866,0.105772525,0.31474158,-0.103676654,0.10052738,0.06065723,0.06040412,0.4131499,0.040836263,0.1701388,0.42198727,0.5266508,0.02472388,0.5407112,0.017894976,0.5879718,-0.28133357,-0.25487456,0.23654053,-0.357851,0.37340096,0.04125317,0.16963056,0.73529613,-0.4198348,-0.81194305,-0.64651436,-0.038755417,1.0525668,-0.17305598,-0.2646176,0.18125153,-0.69028777,-0.42906228,-0.11644738,0.41246262,-0.16465025,-0.17057627,-0.73255855,-0.03904232,-0.07297086,0.07319272,-0.08284851,-0.15248771,-0.28005153,0.6393987,-0.05870308,0.39747897,0.2021735,0.09827236,-0.41466695,-0.38099813,0.072911896,0.7888494,0.37143502,0.16509822,-0.33662862,-0.20040491,-0.38104898,0.046066225,-0.0028926888,0.5151518,0.41122797,-0.018989762,0.23769657,0.25689855,0.015401523,0.049757708,-0.20997801,-0.21058968,-0.23857574,0.034274396,0.48800448,0.6881931,-0.27488473,0.51733553,-0.014990461,0.30401453,-0.18167748,-0.4448517,0.40270194,1.2742392,-0.21816775,-0.35564366,0.59805036,0.4163974,-0.37376294,0.32089013,-0.39231542,-0.123434804,0.44189784,-0.16868176,-0.3610094,0.19471769,-0.19918491,0.10987641,-0.7282004,0.14546537,-0.13102381,-0.509419,-0.6155034,-0.016066253,-2.1894083,0.16956359,-0.14170519,-0.2706462,-0.17954494,-0.3911713,0.044619583,-0.6033792,-0.6045255,0.25624302,0.018037356,0.7691175,-0.12261644,0.15920338,-0.14202219,-0.39822164,-0.14505209,0.0124605335,0.22598937,0.41488346,-0.1763743,-0.49143648,-0.05579621,-0.059343044,-0.293474,0.07354415,-0.7276757,-0.42451584,0.004914863,-0.48156986,-0.34231958,0.5779035,-0.24748753,0.06736117,-0.23894729,0.047205463,-0.18933088,0.28228536,0.121375,0.06979839,0.0144041935,-0.045863427,0.10116578,-0.2449259,0.28385288,-0.050665442,0.24998528,0.29735947,-0.091428325,0.34363365,0.3507835,0.63668144,0.098211765,0.9939721,0.365516,-0.09786458,0.22581233,-0.1678679,-0.4600811,-0.4875058,-0.13419059,0.010627154,-0.3899598,-0.36240134,0.0031357158,-0.40496433,-0.7148114,0.5984195,0.123966284,0.24778178,-0.073307626,0.29798093,0.7073828,-0.2375265,0.0130647635,0.034092322,-0.13603435,-0.60478467,-0.32807985,-0.4615811,-0.39678097,0.13259219,0.9387747,-0.19874886,0.15842442,0.14858514,-0.3448649,0.025403349,0.32043648,-0.16272901,0.24658802,0.6310979,-0.17716329,-0.5674495,0.45273933,-0.1663899,-0.16057298,-0.48916203,0.19789413,0.5838458,-0.59792686,0.59088033,0.33925048,-0.072550416,-0.35842165,-0.38530737,-0.19008937,-0.05100312,-0.20105238,0.46237728,0.5326576,-0.7317476,0.35585508,0.34525502,-0.04430666,-0.7231271,0.59684,0.036701627,-0.31003532,-0.20180504,0.39442495,0.11907441,0.04158145,-0.19382903,0.10461531,-0.3099025,0.13799092,0.19193181,-0.1701094,0.05177733,-0.25571552,-0.043026783,-0.8358863,0.08613288,-0.38426057,-0.34788603,0.30063665,0.076820396,0.22142741,0.20588979,0.030517336,0.26851442,-0.4763703,-0.058097973,-0.07492956,-0.30507824,0.17432019,0.32922184,0.55602574,-0.43071505,0.505201,0.039634928,-0.15025991,0.12008731,-0.011897703,0.31996688,0.034385834,0.38067594,0.16187567,-0.26821855,0.2633809,0.82980853,0.19241887,0.45824584,0.042729493,-0.08079119,0.1133802,0.068499975,0.31097344,-0.1323767,-0.6441886,0.010416778,-0.32779834,0.15458846,0.4346127,0.06095556,0.2689491,-0.18879344,-0.39527225,0.049952812,0.03537709,0.14342956,-1.3213449,0.15477377,0.22068745,0.8963934,0.26986802,-0.095872514,0.0027820945,0.7332633,-0.15672064,0.1630216,0.41402212,-0.047167525,-0.37209684,0.5422917,-0.59764206,0.3994699,-0.010001675,0.02486351,0.047907013,-0.10522416,0.36164063,0.6524361,-0.20519193,-0.09867979,0.0034217695,-0.43726358,0.24289683,-0.29912683,0.1033355,-0.6628955,-0.22180715,0.63883466,0.6775972,0.3859084,-0.20265332,0.09643699,0.08888157,-0.12768093,0.11383525,0.22171289,0.1914681,-0.054275937,-0.66998315,-0.10253094,0.5181892,-0.013125523,0.12146703,-0.08429206,-0.23432942,0.2743486,-0.14123438,-0.0381934,-0.13581507,-0.7954763,-0.0023510912,-0.35745135,-0.6203133,0.5487059,0.03355721,0.10390985,0.28029197,0.053366605,-0.31395656,0.44068107,0.15726124,0.8780201,-0.07893206,-0.039002478,-0.3264024,0.18422012,0.16333933,-0.08630572,-0.0939196,-0.29899204,0.16556734,-0.58671314,0.48329532,0.032707963,-0.30328065,-0.10953982,-0.020725794,0.15265585,0.5017868,-0.103073746,-0.07909818,-0.26366892,-0.0032355348,-0.3874816,-0.24042305,0.00037253698,0.2786312,0.31712404,-0.055157457,-0.23418209,-0.11530966,-0.23534513,0.39819214,-0.06475287,0.44204682,0.40939057,0.037514795,-0.12141455,-0.24372046,0.1736351,0.52277434,-0.13615409,-0.2773898,-0.45077404,-0.41646424,-0.28736782,0.40206012,-0.03257174,0.42851016,0.09648605,-0.1129458,0.7171053,-0.22107531,1.0185763,0.189599,-0.45694426,0.17429806,0.50417054,-0.016366469,-0.092771366,-0.27413982,0.7810157,0.27351773,-0.041930206,-0.07091103,-0.4624957,0.04957626,0.149298,-0.13120922,0.009743405,0.010084798,-0.39858976,-0.14986318,0.1017114,0.19461162,0.25206113,-0.168742,0.2597609,0.43248796,-0.09986495,0.28876102,-0.40495166,-0.30661213,0.22445086,0.16025297,-0.0758466,0.16787106,-0.4788813,0.3416621,-0.40922567,0.12205728,-0.46575245,0.39300337,-0.22136976,-0.23993383,0.17171934,0.06774591,0.3280266,-0.37333757,-0.29320037,-0.3745344,0.46467036,0.1549135,0.032402582,0.3436788,-0.2866744,0.060336407,0.042888608,0.48095754,0.78335726,-0.07346727,0.025293421,0.3768271,-0.31239697,-0.5076281,0.48556137,-0.3592077,0.26820654,0.16850781,-0.0043112594,-0.5795981,0.3178909,0.37067768,0.22805516,-0.12669925,-0.5793207,-0.056946468,0.36040682,-0.24102254,-0.026068926,-0.29285464,-0.064119786,0.37212533,-0.20579453,-0.43780568,-0.08407758,0.14194518,-0.010314123,-0.36534277,-0.0529413,-0.5874231,0.19220097,-0.022231314,-0.31040466,-0.23651405,-0.01430438,-0.37026516,0.15105219,0.11926952,-0.2924915,0.07598337,-0.3088891,-0.028618196,1.0875385,-0.13807186,0.2699415,-0.4290032,-0.4024666,-0.6422506,-0.39192924,0.13902508,0.0030201117,0.08251297,-0.5945688,0.002705423,-0.04083799,-0.33867547,-0.03508098,-0.42448512,0.50949216,0.2053046,0.4138027,-0.019158633,-0.81290424,0.07519207,-0.10608336,-0.27100855,-0.531898,0.4957291,-0.07109428,0.7201626,0.026393913,0.09197923,0.23146078,-0.32370135,-0.2293055,-0.21189149,-0.11276941,-0.6359995,-0.07482154 -774,0.4166667,-0.21341227,-0.49210948,-0.108643405,-0.33039123,-0.09298774,-0.23772544,0.42585388,0.3732385,-0.3789009,-0.23189773,0.2420133,-0.09365216,0.2095299,-0.12720321,-0.33404365,0.283689,0.38706052,-0.7299291,0.8297461,-0.21638702,-0.047348756,-0.23320033,0.46811116,0.3345962,0.17447266,-0.2003168,0.19419822,-0.01912746,-0.2009185,0.03966175,0.4741716,-0.44671577,0.3798326,-0.24903758,-0.121746905,-0.2950737,-0.5169116,-0.5415593,-0.93209904,0.2259082,-0.8005707,0.42743486,0.027468719,-0.47448492,0.05264749,0.32427204,0.24269173,-0.18966007,-0.4056872,0.118596405,-0.10924983,-0.4938232,-0.16870941,-0.05183166,-0.30237105,-0.5955631,-0.14579305,-0.3679561,0.037000895,-0.43371934,0.25019893,-0.3085453,-0.024602206,-0.18194984,0.7833365,-0.27509233,0.33061808,0.22887534,-0.015542209,0.110089906,-0.81710845,-0.06402106,-0.19807495,0.47143665,0.24570507,-0.50710016,0.3752031,0.35857683,0.3486678,-0.12448966,-0.1151285,-0.24465291,-0.00067100616,0.23781766,0.25891563,-0.21676518,-0.4551972,-0.12205933,0.08580263,0.38609564,0.11330882,0.38086998,-0.22699004,-0.20676686,0.09328072,-0.10828082,0.5600207,0.4812372,-0.22528884,-0.016669104,0.2546187,0.6082485,0.448717,-0.2882689,0.04880267,0.040377297,-0.6403607,-0.083663374,-0.09136944,-0.19043885,0.5574744,-0.16775051,0.12404989,0.49777,0.018304734,-0.34687868,0.36910805,0.18992546,-0.01387111,-0.4307973,-0.5204793,0.35778698,-0.5646997,0.18590187,-0.10395535,0.45252806,-0.022201806,-0.7078511,0.23828891,-0.5456955,0.2224064,-0.043439023,0.47231263,0.8953086,0.54642236,0.5169367,0.62553203,-0.10501073,-0.08301413,0.026195662,-0.11492082,0.22783074,-0.33548313,0.14960054,-0.5576302,0.038590375,-0.16392758,-0.24215116,0.12826595,0.54967874,-0.46916947,-0.24589628,0.116290346,0.70561695,-0.098382965,-0.18578643,1.018719,0.9611011,1.0504239,0.2858249,1.0017331,-0.011605112,-0.10895148,0.11281316,0.18110797,-0.66306245,0.26610544,0.27006716,0.16855666,0.17162901,0.20469874,-0.018059459,0.54837984,-0.58556134,-0.061238024,-0.004868058,0.17567796,0.121535495,-0.2624222,-0.4185229,-0.37002823,-0.24177982,0.18277843,0.015288958,0.23275219,-0.08920389,0.36831492,0.121876955,1.2684581,-0.005420749,-0.06580392,0.0053253802,0.35142046,0.2308669,-0.30667976,-0.14812154,0.24705842,0.27322257,0.15863238,-0.5560728,-0.013163681,-0.22908854,-0.22874539,-0.24772644,-0.40608346,-0.33511165,-0.008516761,-0.2917441,-0.35380942,-0.17518769,-0.289898,0.4090919,-2.580816,-0.31436965,-0.15179212,0.46172854,-0.015513017,-0.24386838,-0.13799459,-0.53553134,0.46816248,0.20910144,0.6213079,-0.5785108,0.41305065,0.46743804,-0.81533337,-0.1744445,-0.74267286,-0.15174079,0.19966866,0.18489537,0.06762555,-0.15554348,0.20931289,0.24195257,0.4585134,0.25500253,0.21583048,0.6387586,0.37731272,-0.39546695,0.5146266,-0.21316518,0.50162536,-0.17743447,-0.2985778,0.22781536,-0.30986908,0.5845127,-0.12670173,0.03687013,0.77745605,-0.47285417,-0.9671596,-0.63725823,0.092528835,1.2806276,-0.12050606,-0.5197929,0.23905352,-1.0317041,-0.38665038,-0.083834425,0.7031602,-0.073960625,-0.17133024,-0.773994,0.022231111,-0.052077793,0.08814064,-0.14642125,-0.3543805,-0.45516807,0.8411185,0.050974146,0.58585876,0.29842195,0.070804216,-0.59220034,-0.36292413,0.12005436,0.7736881,0.500629,0.04988978,-0.30413705,-0.1703106,-0.41248003,-0.09412883,0.09497933,0.72150874,0.2080178,-0.26704338,0.2616893,0.37462157,0.06772752,0.00052688096,-0.23541568,-0.21209356,-0.30018833,0.042851128,0.6346099,0.9485191,-0.21402012,0.35046974,0.040408786,0.15736583,0.05403332,-0.48672664,0.49304646,1.0737952,-0.31543714,-0.409061,0.61209244,0.40516883,-0.25822103,0.4461921,-0.27168998,-0.14697333,0.40406826,-0.040771183,-0.33975083,0.063107,-0.5021414,0.1251529,-0.42984873,0.42554924,-0.5159875,-0.65596426,-0.4119863,0.0971232,-2.3392997,0.34563586,-0.3535143,-0.025042213,-0.38541207,-0.4554431,0.056758717,-0.50450075,-0.7443788,0.15635054,0.106527254,0.7681522,-0.29224873,-0.18478857,-0.105726905,-0.6283436,-0.057106677,0.031832002,0.111649275,0.42322123,-0.15080675,-0.3309711,-0.067532696,0.016479721,-0.26085973,-0.14860046,-0.5092408,-0.37203056,-0.11809681,-0.43797606,-0.09017499,0.62559617,-0.3544039,0.1059556,-0.35236135,-0.04587222,-0.11728602,0.18965398,-0.08143146,0.27199772,0.117382735,-0.10739805,-0.08570051,-0.020326082,0.08990502,-0.1074887,0.21709332,0.19030388,0.07852789,0.45129457,0.47975427,0.8055114,-0.33825848,1.2292231,0.66005635,-0.1806795,0.20661347,-0.0535117,-0.51490855,-0.50226575,-0.13949901,0.46439546,-0.5197987,-0.26068714,0.12426508,-0.38654104,-0.7287705,0.464109,0.05950026,0.10280306,0.14592166,0.10317259,0.56224686,-0.19002989,-0.04397098,-0.11462386,-0.25122735,-0.7408607,-0.12887064,-0.56656617,-0.27965504,0.11978822,1.0487225,-0.46222642,0.21896839,0.29272225,-0.28474757,0.04378217,0.3930022,-0.070188895,0.10551505,0.4488929,-0.13436419,-0.31409475,0.18520929,-0.21223377,-0.1889119,-0.43749344,0.50802904,0.6949651,-0.5848104,0.7831015,0.35370377,-0.103580914,-0.53283405,-0.73625636,-0.14073783,-0.09777531,-0.25636074,0.525236,0.5093479,-0.84392667,0.31872287,0.28642476,-0.27109396,-0.8856706,0.65712154,-0.18561839,-0.16774374,-0.13948129,0.45788032,0.18689746,0.03174803,-0.12496717,0.2947803,-0.37168223,0.1562174,0.15888306,-0.2483125,-0.27610016,-0.32335785,-0.081577174,-0.8251613,-0.05702389,-0.66866535,-0.27983713,0.40453413,-0.027012454,0.2022729,0.039343275,0.4423947,0.27437988,-0.3575281,0.18152753,-0.3272652,-0.31164426,0.38763663,0.53011936,0.6260215,-0.4756531,0.66274065,0.22275837,-0.14988641,-0.14583251,0.12836777,0.24017285,-0.05087552,0.5831007,-0.11946038,-0.064128466,-0.055138595,1.0364227,-0.055761997,0.28204423,0.06746138,0.09393017,-0.07448897,-0.06581951,0.42159155,-0.3493066,-0.65673894,0.25367916,-0.50753057,0.08768753,0.5405812,0.37960723,0.024556555,0.05050935,-0.4824338,-0.20087719,0.1639882,0.18291375,-1.7137258,0.5837295,0.3096452,0.8674438,0.54236794,0.13377362,-0.30956796,0.8785324,0.09223657,0.0011860842,0.46399534,-0.060091678,-0.36180803,0.5606852,-0.86636424,0.430432,-0.031119384,0.049854543,0.060647257,-0.009449595,0.36805648,0.6224333,-0.23398319,-0.0328006,0.043465193,-0.3590596,0.27610752,-0.4591264,0.0860204,-0.28499436,-0.5001987,0.64820695,0.54131424,0.6068947,-0.34589893,0.1307728,0.20004342,-0.2914366,0.28918007,0.098169595,0.02464861,-0.2933534,-0.6884997,0.15666309,0.37107357,-0.28505945,0.21894972,0.056728832,-0.022254871,0.22927316,-0.22488433,0.08625321,-0.16667846,-0.8053604,-0.14205942,-0.39425147,-0.5499711,0.52585894,-0.018051147,-0.024306847,0.30566955,0.042567432,-0.11229421,0.755129,-0.26268163,0.6605851,0.0544847,-0.019355224,-0.120934054,0.19968197,0.0199638,-0.2193912,0.08833434,-0.32866377,0.30287835,-0.5358342,0.51379585,-0.0130546,-0.44108465,-0.08160667,-0.07208957,0.042547263,0.3490456,-0.32579342,-0.268012,-0.17947604,-0.21650192,-0.2122925,-0.44911596,0.05054641,0.30234972,0.15852946,0.083294585,-0.22877842,-0.15861718,-0.20215313,0.17880811,-0.06616615,0.43296787,0.4664118,0.08850391,-0.2058112,0.09180804,0.37298915,0.6411461,0.13264647,-0.14188746,-0.44924197,-0.4231811,-0.61037314,0.20235215,0.17504996,0.46090952,0.19431949,0.04677569,0.5108491,-0.2612268,0.92883503,0.014812027,-0.36301777,0.10746108,0.37858197,-0.16286519,-0.17372939,-0.075875625,0.57618594,0.40894067,-0.009330566,0.07068761,-0.52890354,0.093687735,0.16622002,-0.17439087,0.033744548,0.043124575,-0.5107206,0.096876636,0.16519257,0.1751943,0.34612215,-0.23185371,0.14754957,0.3768454,-0.14759336,-0.021535872,-0.5024086,-0.17644599,0.39675638,0.19896,0.014675569,-0.02837406,-0.4228854,0.3821182,-0.4612217,0.028722553,-0.31342664,0.23516022,-0.19090237,-0.1985511,0.25901875,0.13901557,0.3346288,-0.27756542,-0.12423349,-0.23419942,0.5494284,0.25234547,0.07809103,0.5716895,-0.26328215,-0.076915115,0.23150103,0.5760173,0.7687785,-0.2615898,0.027571091,0.12556669,-0.4475411,-0.43963188,0.3883692,-0.53592545,-0.010458978,0.3342581,-0.19541885,-0.46930537,0.11761899,0.23938233,0.29902458,-0.07633572,-0.9668618,-0.2926769,0.082526095,-0.29975274,0.11477237,-0.2855449,0.036404572,0.42925212,-0.15151191,-0.41401657,0.017486297,0.085226245,-0.023432583,-0.5474808,0.11566133,-0.510614,0.20324318,-0.14007415,-0.5490434,-0.2853702,-0.14363356,-0.6136404,0.12084523,-0.0062574744,-0.2634451,0.13321002,-0.35806185,-0.072421126,0.99504,-0.35676274,0.33861452,-0.1753727,-0.5793865,-0.61078924,-0.109132245,-0.10040956,0.06081049,-0.0343489,-0.85448253,-0.20064007,-0.09862622,-0.009619374,-0.11976552,-0.36604473,0.5240641,0.11731256,0.37602827,-0.121648304,-0.9016816,0.3287209,-0.015782408,0.013577016,-0.46918586,0.4281967,-0.056484625,0.79597574,0.06461997,0.2354958,-0.06634005,-0.44542834,-0.13570534,-0.17624334,-0.22275941,-0.47803226,-0.08794982 -775,0.45625195,-0.07115267,-0.35207596,-0.14023682,-0.10871456,0.09073532,-0.04681259,0.45364964,0.1055172,-0.60529864,-0.21454903,-0.3070744,0.01878377,0.33214733,-0.18908949,-0.5587503,0.0007857402,0.1291339,-0.5606633,0.52204883,-0.477363,0.4836534,0.25496122,0.21520051,0.093116775,0.12822086,0.3259414,-0.19170755,-0.23090328,-0.13669746,-0.19611254,0.1746119,-0.5775306,0.1507387,-0.15320517,-0.3310247,-0.016710559,-0.50448954,-0.27831295,-0.62773377,0.4198588,-0.76675594,0.47133118,0.029875906,-0.13452111,0.31282407,-0.01334339,0.20906585,-0.17366244,0.1127587,0.14911215,-0.0018757939,-0.0415584,-0.15088797,-0.2175943,-0.124595515,-0.578477,0.20377229,-0.32192034,-0.25438944,-0.26820964,0.13122241,-0.22413507,-0.0005539417,-0.11538197,0.39152774,-0.35827473,-0.058660425,0.07116727,-0.037506785,0.23422362,-0.43354633,-0.13582492,-0.013678058,0.34074992,-0.28611508,-0.11600716,0.19096234,0.2944607,0.52755195,0.006291314,-0.08501108,-0.18912026,-0.032985672,0.09050557,0.5871134,-0.11255162,-0.5451603,-0.033521745,0.032924976,0.10571272,0.16823012,0.17559035,-0.32280126,-0.1979787,-0.092434295,-0.23984157,0.26604247,0.48080203,-0.3977696,-0.28293693,0.369749,0.4553617,0.0927078,0.054511998,0.040344622,-0.07025649,-0.5921061,-0.1229562,0.05715014,-0.19123074,0.47548616,-0.107101046,0.32486668,0.50450915,-0.03949189,0.14451808,0.04712362,-0.09419438,-0.08772727,-0.1029668,-0.08798058,0.13614912,-0.37830475,0.04907583,-0.19000956,0.90637803,0.14163631,-0.81607693,0.38772804,-0.4961546,0.15613686,-0.14330529,0.45849898,0.55707496,0.28209648,0.16724087,0.72687596,-0.6292358,0.02810906,-0.12732689,-0.4023527,-0.11570158,-0.0060500302,-0.09190054,-0.40032443,-0.00349315,0.07811343,-0.1343803,0.06917094,0.38238347,-0.5070533,0.021594027,-0.00784467,0.7935098,-0.32215622,-0.1014587,0.8409469,0.9423465,1.0074657,0.067712046,1.2290086,0.2159684,-0.2637045,0.2125683,-0.38351637,-0.7365749,0.29852238,0.41232982,-0.010225971,0.124994844,0.08120096,0.0396556,0.24262129,-0.383333,0.062557474,-0.29865837,0.12841359,-0.0006413956,-0.053538468,-0.36787495,-0.389234,-0.007345168,0.13657,0.1856331,0.19455911,-0.14691299,0.35178912,-0.031179862,1.8385483,-0.11024887,0.10382655,0.076908395,0.36155406,0.106901914,-0.07195619,-0.17659405,0.095172875,0.39809936,-0.11913007,-0.6112039,-0.010654918,-0.15571886,-0.6013847,-0.12583733,-0.29785728,-0.016329484,-0.016153626,-0.39900824,-0.07840306,-0.12675633,-0.4142238,0.4970508,-2.7145376,-0.19165614,-0.015496365,0.3280764,-0.3132911,-0.4213111,-0.1798482,-0.4398418,0.5178842,0.3290201,0.44644248,-0.6653314,0.250516,0.31357715,-0.35927403,-0.21661074,-0.60809976,-0.005378341,0.010394326,0.24738453,-0.008661223,-0.029099278,-0.0197975,-0.0047328393,0.39046904,0.040863108,-0.05816124,0.21207471,0.3685633,0.2792502,0.41699657,-0.0012953976,0.5194567,-0.25461558,-0.0821118,0.32405895,-0.24509309,0.22985093,-0.17332552,0.18057474,0.25787267,-0.6962551,-0.66670525,-0.69444853,-0.42304382,1.1835265,-0.18987224,-0.29834118,0.33701193,-0.040504385,-0.12117648,-0.04789959,0.41245,-0.098211184,-0.21227296,-0.83212495,0.014731844,0.02419637,0.15852426,-0.052662056,-0.0031386793,-0.49328703,0.5884655,-0.15786597,0.46894237,0.417353,0.27651247,-0.21724835,-0.49325994,0.08851981,0.9850407,0.26243493,0.11474289,-0.14397702,-0.21461897,-0.4573679,-0.16248547,0.08554187,0.4234124,0.73386663,0.09880168,-0.023991307,0.27549312,0.09806584,0.1229338,-0.104669526,-0.23735377,-0.053309064,-0.24602705,0.6170415,0.4972526,-0.14606644,0.5271423,-0.15469606,0.22793786,-0.20196384,-0.34138379,0.6083829,0.94738305,-0.19215895,-0.18829724,0.48506913,0.3183853,-0.12984154,0.3321513,-0.5436571,-0.37072417,0.4283881,-0.21042281,-0.41178113,0.27653366,-0.22243191,0.16789177,-0.95202523,0.28580895,-0.17942308,-0.39593947,-0.52138513,-0.052195843,-3.4749231,0.20366052,-0.24922152,-0.14369376,-0.01439412,-0.19496292,0.07019744,-0.43082723,-0.5500726,0.15441471,-0.022639839,0.5887221,0.025404314,0.20868441,-0.11037493,-0.117139176,-0.379603,0.001929613,0.021060936,0.42981502,0.091564365,-0.29345807,0.047664404,-0.28661683,-0.30296284,0.11670721,-0.50058156,-0.4425092,-0.10444219,-0.45868096,-0.49905688,0.59972674,-0.3696962,0.08786701,-0.17527609,-0.08681636,-0.13688096,0.36981854,0.12092655,0.088954546,-0.0011808673,-0.07277172,-0.022203803,-0.26120707,0.31392393,0.086916454,0.24357633,0.38204834,-0.22055885,0.175732,0.32018635,0.63985926,-0.1137811,0.6253565,0.47599584,-0.0037767887,0.1673021,-0.38243428,-0.19044556,-0.4213145,-0.21104999,-0.039521456,-0.31132895,-0.5132561,-0.24026492,-0.36146247,-0.6864909,0.35905167,0.07501138,0.0822978,0.038041577,0.17720659,0.47336516,-0.060852703,-0.064285114,-0.06565661,-0.04298084,-0.5375189,-0.3219783,-0.6943808,-0.46462366,0.14369589,0.9552839,-0.06344042,-0.14843087,-0.047521845,-0.103088126,0.02909871,-0.09878878,0.05383567,0.19979014,0.23248751,-0.23688565,-0.68975234,0.58998966,-0.03207166,-0.18362284,-0.47867987,0.10754881,0.5610419,-0.50046194,0.39025486,0.2745552,0.06713845,-0.0028476894,-0.4099603,-0.15427037,-0.07511355,-0.30756214,0.2885308,0.1533903,-0.5937237,0.51367486,0.38551039,-0.1200345,-0.7932114,0.39266524,0.09139497,-0.3115968,0.09471523,0.24218938,0.098242775,0.016423864,-0.18900019,0.1499673,-0.5060796,0.3044404,0.283713,0.07182338,0.36256012,-0.3217258,-0.17310807,-0.6022036,-0.019577423,-0.4358548,-0.19405028,0.078581415,0.25980094,0.15575643,0.19106491,0.05305376,0.42757732,-0.37099272,0.11950788,0.007050693,-0.03450508,0.111523785,0.35783002,0.4272046,-0.44857633,0.5117683,-0.076949544,0.021523757,-0.035201702,0.091208555,0.41609016,0.22102898,0.15895501,-0.06325867,-0.2660147,0.3912159,0.63471997,0.25678065,0.2502769,0.045841683,-0.19573647,0.31171784,0.14085731,0.1960444,0.12291457,-0.46850863,-0.15028295,-0.05432995,0.14351149,0.42691076,0.15820552,0.2741407,-0.14587924,-0.34104583,-0.024857473,0.18083248,-0.18146402,-0.93064886,0.40639502,0.04036609,0.7720379,0.5524191,-0.08796813,0.15908527,0.51483655,-0.17764536,0.18390125,0.103604525,-0.1830844,-0.5787614,0.50699335,-0.50617343,0.38452902,-0.16011645,-0.031041794,-0.047181595,-0.031730648,0.22226861,0.7108489,-0.022432996,0.13368253,-0.07559015,-0.21273094,0.09656899,-0.3446863,0.049777787,-0.583662,-0.13770333,0.676514,0.3350142,0.23378153,-0.06909054,-0.009579371,0.06999323,-0.08442095,0.0112498365,0.09335824,0.15164062,0.032865968,-0.68919474,-0.21250455,0.54884243,-0.061176028,0.1740882,0.073198445,-0.26200452,0.17151445,-0.19516018,-0.08072346,-0.11484348,-0.6140906,0.046455503,-0.25210547,-0.17194834,0.14145261,-0.12322937,0.32054272,0.18791069,0.061231732,-0.3139709,0.20855837,0.22573985,0.6229843,0.05340781,-0.24145755,-0.4015973,0.21691671,0.16219424,-0.2709138,-0.15991111,-0.120181195,-0.12752707,-0.6232773,0.49864644,0.10666637,-0.17774205,0.27864772,-0.08415913,-0.034114633,0.57956976,-0.12704621,-0.0026294058,0.05893828,-0.18571101,-0.20527242,-0.057854272,-0.0920076,0.25149632,0.35950485,-0.1092674,0.0114335455,-0.0034982404,-0.18793505,0.42198625,0.005100472,0.4134164,0.22224979,0.058639433,-0.3147867,-0.15098874,0.15504369,0.38814867,0.060898382,-0.053253807,-0.25670663,-0.3510731,-0.30361897,0.13002147,-0.108431615,0.25986463,0.07378821,-0.36479542,0.52517194,0.16062321,1.0257016,0.08793918,-0.18072931,0.03257775,0.40258196,0.09853248,-0.06628684,-0.30301204,0.92703253,0.5165417,-0.03109204,-0.12364403,-0.20288877,0.013173556,0.12916881,-0.14953902,-0.12079342,0.032266337,-0.5935004,-0.3841047,0.17562827,0.22787756,0.117244035,0.022666087,-0.018839415,0.18458839,-0.018686257,0.3952731,-0.3847817,-0.22611329,0.30222955,0.2538996,0.0852963,0.12012248,-0.46449855,0.4484878,-0.5387325,0.044322725,-0.21618973,0.17213963,-0.109569594,-0.18788522,0.21577409,0.06130693,0.35219234,-0.25871602,-0.42051882,-0.3655242,0.46561915,-0.016412096,0.24600853,0.55572534,-0.2443028,0.06132504,0.069094785,0.4793838,1.1691836,-0.050616242,0.0729415,0.4511488,-0.2350824,-0.4922672,0.33431014,-0.07887065,0.095548496,-0.051752858,-0.21471985,-0.4425338,0.25692263,0.22279228,0.12364856,0.1236366,-0.5539558,-0.35436586,0.3868268,-0.2917345,-0.27837053,-0.36576784,0.110908076,0.65665525,-0.24719205,-0.25429478,0.12090502,0.17563917,-0.2654583,-0.68356925,-0.021326678,-0.34774104,0.26443812,0.13924605,-0.24023199,-0.16320759,0.11097854,-0.33261403,0.10256028,0.03548588,-0.36794898,0.0930892,-0.35244998,-0.08037112,0.9590791,-0.16824888,0.08531718,-0.53112835,-0.4847974,-0.94279397,-0.34511662,0.6699345,0.046276197,0.061666396,-0.55461484,-0.01221648,-0.006239272,-0.13464828,-0.005224368,-0.26058236,0.39591354,0.2394482,0.289107,-0.07658042,-0.6387269,0.059828598,0.033797882,-0.31471857,-0.497725,0.50791824,0.19172047,0.73469734,0.015702864,-0.027812727,0.33264098,-0.533815,-0.041611113,-0.21672058,-0.13758765,-0.62754923,0.084756546 -776,0.19143824,0.0029545177,-0.5143583,-0.06805229,-0.080997206,0.0086718155,-0.15491705,0.25907633,0.020569637,-0.7418112,0.0058336356,-0.21903183,0.1040032,0.31768847,-0.14141634,-0.58709025,0.16714485,0.30548254,-0.3977389,0.2609787,-0.5293005,0.3150814,0.113782585,0.029461175,-0.2979574,0.16643526,0.32347748,-0.28329012,-0.04693122,-0.20309125,0.036840502,0.2124294,-0.67932075,0.37037602,0.17786543,-0.30705956,0.05141763,-0.21429758,-0.24921815,-0.6509704,0.2697966,-0.7830995,0.44238248,0.103567146,-0.1514284,0.08935714,0.1308154,0.3839352,-0.22924255,0.18221502,0.2700034,-0.35189512,-0.23020448,-0.28992748,-0.2107876,-0.31886947,-0.37848237,-0.05889967,-0.5756491,-0.292684,-0.35765028,0.18007441,-0.41394544,-0.014680435,-0.28764173,0.40159285,-0.3918383,0.04106976,0.17181103,-0.22551633,0.3721036,-0.36946595,0.011288461,0.014785434,0.21377401,-0.45109043,-0.17878012,0.234251,0.23679297,0.55837387,0.027077079,-0.08675174,-0.17047392,-0.25507963,0.40094578,0.6795134,-0.1945933,-0.43155566,-0.17586882,-0.055649925,-0.11646289,0.21767528,-0.13764691,-0.5524603,-0.042115528,0.11422759,-0.28574666,0.29699066,0.5282393,-0.22814357,-0.07353946,0.36208192,0.43887916,-0.21965729,-0.05893768,0.22891219,0.093420334,-0.56338054,-0.29778662,0.21461874,0.075677864,0.32551035,-0.13265051,0.3217842,0.6890053,-0.33582163,-0.046845973,-0.04643831,0.024927119,0.039195523,-0.3496431,-0.10015416,0.35389265,-0.63377696,0.014304896,-0.25262973,1.0857753,-0.062272448,-0.8243818,0.4124863,-0.48031798,0.042066116,-0.21614565,0.7566708,0.37229395,0.42967644,0.07177076,0.71797395,-0.65032464,0.12779218,-0.2274216,-0.6697591,-0.0054218546,0.02977853,-0.120280206,-0.28784153,-0.019656038,0.22624974,0.15823103,-0.091795,0.36473283,-0.45869836,-0.12837733,0.004128317,0.80914587,-0.43706107,-0.024625102,0.42091796,0.99561286,0.6932876,0.18458839,1.4066544,0.078203835,-0.21619384,-0.044172063,-0.11997294,-0.77924496,0.22947466,0.26657128,0.11744233,-0.0074152946,0.27621344,-0.16926236,0.30574408,-0.3213742,-0.061501905,-0.26723838,0.30778775,-0.15927398,-0.15036477,-0.32787,-0.058517616,0.12941886,-0.023540422,0.055977214,0.17783348,-0.21306555,0.23609824,0.10036739,1.5200691,-0.22905819,0.3575444,0.16279717,0.30311203,0.1535291,-0.008802131,-0.05817799,0.357407,0.36510363,0.14673601,-0.59300476,-0.024708895,-0.07088473,-0.6103044,-0.12600724,-0.3262881,0.06694936,-0.19904493,-0.38926768,0.013087829,0.025023868,-0.4911755,0.43845698,-2.6704338,-0.07629693,-0.019862244,0.39859393,-0.24601345,-0.17724384,-0.26043728,-0.31468105,0.45793197,0.3758371,0.5958782,-0.6242196,0.44910014,0.4343339,-0.20032065,-0.102276206,-0.6572806,0.13434143,-0.20717794,0.28441775,0.034492772,-0.15598498,-0.134636,-0.04214816,0.4274707,-0.39285776,0.06614327,0.30407324,0.28238508,0.30816546,0.41697276,0.017820854,0.44257668,-0.49078622,-0.20807384,0.22193259,-0.31232843,-0.020485321,0.07674664,0.12200009,0.093480416,-0.4202588,-0.90681314,-0.62831837,-0.44812799,1.0004317,-0.44966188,-0.40487745,0.42778516,0.115935385,-0.36285767,-0.08143964,0.3797338,-0.09360846,0.14357202,-0.88324815,0.2032912,-0.15858714,0.5072132,0.08269237,-0.075823426,-0.45410714,0.49947104,-0.24369824,0.47578764,0.5515119,0.02085792,-0.450078,-0.4575816,0.0061329044,1.2176296,0.006334821,0.29088488,-0.1456964,-0.1326512,-0.1271748,-0.055688057,0.12450298,0.5733015,0.8469288,0.096188165,0.05631649,0.416942,0.0364528,-0.10085019,-0.14280836,-0.42906198,-0.10975174,-0.13077898,0.61514705,0.3408421,-0.11436934,0.4070013,-0.07847228,0.22941963,-0.25104418,-0.38856295,0.39071092,0.8147252,-0.073831,-0.20075552,0.6061862,0.5618402,-0.35365084,0.39432845,-0.52923,-0.429044,0.46439597,-0.21426864,-0.43462637,0.28389212,-0.3977014,0.22698481,-0.9014346,0.46260083,-0.3596512,-0.75764155,-0.38391313,-0.19857223,-4.3413033,0.27167818,-0.28808877,-0.2163002,-0.061933775,0.07914213,0.1965944,-0.31713295,-0.32462582,0.058968198,0.13958687,0.52576,-0.060491737,0.1128849,-0.3898282,0.09063134,-0.035591442,0.21388905,0.15096192,0.034264684,0.021411398,-0.43515038,-0.17472823,-0.13496034,-0.33400583,0.12313304,-0.6055329,-0.3718674,-0.13264047,-0.6362019,-0.62825984,0.65140975,-0.5580724,-0.06703458,-0.24928375,0.079357065,-0.08889092,0.52244717,0.12564924,0.123129666,-0.15935744,-0.05772753,-0.27284274,-0.26056775,0.33193088,-0.038760874,0.2930901,0.43231884,-0.29432604,-0.13327712,0.49543676,0.43008718,0.2039731,0.7989359,0.29423153,-0.15262496,0.24839342,-0.33394256,-0.12839155,-0.6863673,-0.41030502,-0.14057551,-0.5025528,-0.31388822,-0.009621009,-0.27973086,-0.74705344,0.7229158,0.0055327513,-0.03838274,0.008590606,0.45315397,0.19571666,-0.02753477,-0.26378933,-0.15330069,-0.12387558,-0.4555724,-0.36190784,-0.7757695,-0.455184,0.020035654,0.9348199,-0.18311255,0.16651848,-0.0076007843,0.071739174,-0.056754667,0.26635233,0.15208636,0.42433223,0.4633337,-0.10809764,-0.568796,0.51941395,-0.29813752,-0.18615071,-0.6066691,0.05497474,0.65928626,-0.81677514,0.58424217,0.4253026,0.17807426,0.0017379125,-0.42552006,-0.29684404,0.05204296,-0.24382158,0.42405748,0.0836012,-0.8399091,0.49965528,0.50060546,-0.1057286,-0.6658017,0.41590512,-0.080998234,-0.21818143,0.10734876,0.4663082,-0.2503201,-0.03877911,-0.15647227,0.057319973,-0.45418414,0.28458834,0.1763721,-0.12899356,0.680219,-0.23952298,-0.2249114,-0.4773887,-0.11713666,-0.52713376,-0.073294856,0.09083938,-0.07608755,-0.061436307,0.38195372,-0.25786754,0.5467706,-0.24994235,0.02671752,0.007930954,-0.22791643,0.36683226,0.52557147,0.14542009,-0.44881842,0.6869824,-0.047672063,-0.036828395,-0.5977459,0.27632543,0.5825517,0.11859099,0.552198,-0.085423164,-0.13251828,0.44064614,0.8974659,0.3566668,0.6832795,0.09543613,0.047585864,0.2554278,0.28251973,0.15843146,0.22510625,-0.36049667,-0.009756575,-0.08797634,0.1889301,0.43669197,0.14626698,0.6517418,-0.1833124,-0.3330975,0.023553243,0.4414438,-0.11762414,-0.95502424,0.53606457,0.21584642,0.44631502,0.47271132,0.09154748,0.16889149,0.43765202,-0.16667344,0.29977897,-0.08931557,-0.17175715,-0.41190553,0.6442606,-0.7867945,0.2591862,-0.15298693,0.05332819,0.20938899,-0.1541375,0.32033053,0.7574547,0.11846942,0.11957175,-0.04934889,-0.19967718,0.21500237,-0.40472603,0.1963197,-0.31860444,-0.2979665,0.6058542,0.4624056,0.28302446,-0.23936372,-0.08194072,0.07624806,-0.05526333,0.07769571,0.032043505,0.1483682,0.12272983,-0.7055146,-0.33361295,0.6875017,0.20130949,0.030007198,0.16272113,-0.14528634,0.5239514,-0.11344224,-0.14925404,-0.00919101,-0.43253174,0.2988649,-0.23723674,-0.33840194,0.15025316,-0.32772896,0.41344497,0.12683332,-0.010333012,-0.5070012,0.38119063,0.39464244,0.6609995,0.11727503,-0.25206268,-0.31039163,0.06710323,0.2151862,-0.18030298,-0.12962146,-0.34048736,-0.08345375,-0.81607324,0.32250333,-0.016297817,-0.22628884,0.47122276,-0.059299156,-0.11018399,0.5218548,0.08666637,-0.09030261,0.2240632,-0.09607952,-0.18381767,-0.14740431,-0.18140991,0.16610955,0.11464167,0.10436594,0.005990992,0.08923956,-0.13254307,0.2308361,-0.030166546,0.17366214,0.1398496,0.37928542,-0.29087546,-0.0012432175,0.05573107,0.5629918,-0.083108224,0.047354598,-0.03271738,-0.4092275,-0.15363501,-0.16424003,-0.13368641,0.34705472,0.151464,-0.4396373,0.93059444,0.0641926,0.95754147,0.07673879,-0.27326158,-0.07024009,0.49882755,0.1105293,0.053139057,-0.3513722,1.0505409,0.6661196,-0.20637535,-0.28436896,-0.27270612,-0.17686518,-0.045914922,-0.2186396,-0.34298792,0.09273527,-0.516851,-0.2774721,0.3026936,0.46111655,0.062078595,0.008698548,0.07743395,0.27523708,0.034882776,0.034941483,-0.58895576,0.1876362,0.13474174,0.38678396,0.19330412,0.07299795,-0.36289778,0.44602096,-0.67624944,0.13277774,-0.23016052,0.00022388746,-0.03967753,-0.14813061,0.21358334,-0.037313763,0.30851173,-0.232081,-0.02619583,-0.11894729,0.3519853,0.2648435,0.23823838,1.0251057,-0.056644518,0.22346406,0.1505828,0.46919253,1.0412378,-0.33982718,-0.22405659,0.4916174,-0.33372033,-0.63241154,0.1705085,-0.2861052,0.024550894,-0.07515108,-0.51175445,-0.25229096,0.16320378,0.06316953,-0.1399271,0.18913032,-0.57463247,-0.006347418,0.27769798,-0.3206797,-0.373559,-0.30899158,0.37169656,0.64318943,-0.17542411,-0.23137371,0.07812903,0.29448035,-0.33533633,-0.6130858,-0.095003776,-0.3280778,0.26396587,0.10764023,-0.23111422,0.066763006,0.14203778,-0.32197967,0.12113094,0.2920202,-0.29970846,0.16631475,-0.1600581,-0.17779209,0.6322186,-0.17070915,-0.09527681,-0.714557,-0.42863747,-0.96279246,-0.21940385,0.69326764,0.10712912,0.09800493,-0.33923936,-0.20828016,0.061163913,-0.19105603,-0.12129412,-0.35692653,0.45369616,-0.015550184,0.44048992,-0.038515054,-0.8712497,0.1291679,0.26725063,-0.28658178,-0.55673033,0.46492323,-0.07809676,0.67738706,-0.008882775,0.1236221,0.49252808,-0.6240459,0.038361847,-0.288656,-0.24095248,-0.773875,-0.13620336 -777,0.36099964,-0.24384236,-0.22005133,-0.17755781,-0.2799569,-0.021519968,-0.15049721,0.29994383,0.04291817,-0.3779931,-0.1629249,-0.12853052,0.106103376,0.46293825,-0.12208925,-0.5801678,-0.22726046,0.05028418,-0.6015787,0.51450133,-0.6272922,0.3502226,0.18516111,0.17874089,-0.034330722,0.39712116,0.43782392,-0.16728899,-0.11008586,-0.054273214,-0.19899864,0.10597735,-0.53115135,0.09041127,-0.12168678,-0.39674425,0.12631544,-0.49843287,0.009817834,-0.6128789,0.11770369,-0.83184,0.5432083,-0.06353798,-0.10379262,0.058459315,0.22709234,0.38312075,-0.35834435,0.053737767,0.19094399,0.0547854,-0.016435722,-0.19393988,-0.036938604,-0.30116415,-0.43445325,-0.05587274,-0.62601465,-0.43034777,-0.18449685,0.10595087,-0.34989285,0.11563059,-0.10232865,0.074510224,-0.43655276,-0.19185922,0.36418933,-0.19427076,0.297525,-0.3715214,0.045622893,-0.020966832,0.51015794,-0.24931808,-0.05756964,0.52877814,0.33174542,0.46627268,0.17968328,-0.23740624,-0.13703987,-0.18064228,0.17350121,0.5587536,-0.13740505,-0.46106005,-0.16011314,0.07020581,0.12600291,0.431276,0.04464201,-0.13235307,-0.061694648,-0.025272174,-0.21743488,0.3468366,0.36650398,-0.35371155,-0.42732382,0.3413168,0.56288075,0.1373886,-0.095500536,-0.12968695,-0.004292575,-0.48255768,-0.22438014,0.066582695,-0.016497353,0.47945303,-0.025071535,0.22591531,0.8210557,-0.20658585,0.24609466,-0.2086972,-0.23440695,-0.29938743,-0.19775769,-0.12326543,-0.0251829,-0.5040792,-0.013972708,-0.22894947,0.7038768,0.16080725,-0.83530575,0.48975062,-0.5809079,0.06691174,-0.10191409,0.538114,0.4876426,0.36549586,0.32529804,0.7426077,-0.31659645,0.13358797,-0.05559642,-0.45266625,0.11220054,-0.18434198,0.02707432,-0.5753861,0.13451669,0.12558363,0.12528585,0.0152421575,0.3926411,-0.54821676,0.10944353,0.17496464,0.720513,-0.38013202,0.020683441,0.6893955,1.0899457,0.87407476,-0.03950286,1.2321523,0.26287135,-0.23559688,0.20414925,-0.36827797,-0.6372663,0.14345714,0.60904896,0.07351359,0.469416,-0.017382026,0.00018359082,0.25401708,-0.26159826,0.09694881,-0.0080818515,0.36257687,0.02750026,-0.19432926,-0.5583719,-0.18726741,0.011880292,-0.11634379,0.02819632,0.21570525,-0.18722638,0.2865557,-0.017418146,1.8120569,-0.012560947,0.20873523,-0.010734217,0.5681168,0.23142603,-0.07789608,-0.18016036,0.38477924,0.28693604,-0.03079789,-0.545917,0.21978554,-0.25371122,-0.52882904,-0.0073688827,-0.4205628,-0.043045286,-0.073209204,-0.33354458,0.049475014,-0.026021156,-0.31348935,0.43985102,-2.9071584,-0.33349404,-0.12494003,0.19629739,-0.44147214,-0.28613392,-0.028118098,-0.41130242,0.3253665,0.41773865,0.4541097,-0.66968143,0.5785519,0.39428076,-0.32404074,-0.17855631,-0.63955003,-0.088285975,-0.012066158,0.34462923,0.018638572,-0.14511608,-0.1588342,0.40225378,0.5472578,-0.075925395,0.11077763,0.37212536,0.35100487,0.23958495,0.573813,-0.16531096,0.5140065,-0.12859264,-0.08266206,0.29004803,-0.115515776,0.23037651,-0.06393994,0.15405071,0.31124672,-0.5072085,-0.91689265,-0.6505881,-0.6200107,1.0152432,-0.35427788,-0.21732923,0.2805077,0.06017242,-0.08707048,-0.02536567,0.408696,-0.06992515,0.16746299,-0.6692658,0.15867607,-0.06780364,0.19368662,0.05536144,0.049428463,-0.41723195,0.52481234,-0.06925865,0.637175,0.23100111,0.19433498,-0.13272835,-0.19730665,0.115684286,0.87404865,0.3339825,-0.10101453,-0.072468296,-0.24780059,-0.1672055,-0.17740385,0.03974861,0.28762063,0.8477307,-0.0085501205,0.0901087,0.21017106,-0.030609379,-0.02234848,-0.06765251,-0.14500296,0.055364132,0.010768073,0.44350386,0.38333416,-0.25898072,0.5541485,-0.31075376,0.39325327,-0.06527388,-0.5114528,0.52478683,0.2819761,-0.14348364,0.10239046,0.4660409,0.5556737,-0.32382512,0.47856277,-0.5703115,-0.19452773,0.7094437,-0.1905397,-0.3478947,0.22081849,-0.20244537,0.07330563,-1.0062631,0.2719773,-0.27076766,-0.23472199,-0.28588915,-0.21531573,-3.6653829,0.08762906,0.04087468,-0.25790855,-0.0636143,0.041788157,0.28488368,-0.72986317,-0.63523334,0.111322165,0.08640598,0.5560817,0.017962975,0.11371971,-0.24222347,-0.08532746,-0.19317098,0.17167391,-0.06298538,0.27829465,-0.1508127,-0.3905025,-0.107026406,-0.17354727,-0.7401646,0.32883045,-0.4660421,-0.50706613,-0.1117763,-0.5428844,-0.29203752,0.6972953,-0.2557531,-0.00989984,-0.20276655,0.0014255515,-0.25301233,0.292931,0.21176815,0.19380954,0.069736965,-0.06962637,0.027187875,-0.36082643,0.49767193,0.12454051,0.38544616,0.12273967,-0.13204023,0.19624887,0.4944574,0.59586746,0.016076919,0.7577467,0.2719913,-0.1646148,0.35925645,-0.4118916,-0.038674526,-0.59841913,-0.50361884,-0.085377134,-0.30946663,-0.7047544,-0.09459543,-0.24679923,-0.6869813,0.5797401,0.03830233,0.3394545,-0.13097064,0.19116138,0.2731112,-0.22595103,0.03254823,-0.06033183,-0.091992564,-0.5302433,-0.2868399,-0.6525922,-0.5024682,0.1004949,0.8648187,-0.22025855,-0.0343198,-0.18607865,-0.22533043,0.13244426,-0.17075522,0.16571292,0.38115647,0.1961352,-0.0707462,-0.6953401,0.48255116,0.07129687,-0.13302167,-0.36045632,-0.024444861,0.61663276,-0.6821426,0.4110456,0.22666267,0.19042501,0.18537791,-0.45080972,-0.13932063,0.030676743,-0.21703972,0.26906872,0.005664536,-0.7840906,0.49878582,0.26815534,-0.44594464,-0.6521139,0.3077396,0.04032605,-0.23473246,-0.09054815,0.21876894,0.1478423,-0.057632506,-0.3448418,0.19674782,-0.5964657,0.30441174,0.25569743,0.13988861,0.43337783,0.061377738,-0.37347808,-0.61341655,0.015525265,-0.35122776,-0.26200056,0.2025489,0.054166406,-0.057801057,0.16091558,0.12610558,0.38744137,-0.43289107,0.09481834,0.2721108,-0.34631726,0.16369872,0.46111494,0.3095172,-0.3383536,0.48492622,0.07995776,-0.08923637,-0.14814863,-0.1287041,0.47220844,0.102962844,0.10346268,-0.18342365,-0.26468632,0.47600868,0.66967577,0.112258114,0.15791914,0.13620508,-0.2184072,0.40429562,0.06638466,0.0589724,0.24134341,-0.3404188,0.092527404,0.22063401,0.050076615,0.5706142,0.29933208,0.20520236,0.13009308,-0.20340021,0.00212329,0.34230232,-0.28429276,-0.88962066,0.33030125,0.27865267,0.7548812,0.5030756,0.033880442,0.0051880223,0.44772616,-0.4027763,0.18007828,0.38746786,-0.08970712,-0.60416543,0.7765649,-0.4724656,0.3413403,-0.052656766,-0.10509058,0.041493732,-0.03149963,0.30177563,0.8752341,-0.14676252,0.073807724,-0.05695045,-0.023620684,-0.07050966,-0.32195744,-0.14496198,-0.37401387,-0.23809102,0.5942072,0.2894848,0.31375203,-0.047243502,-0.07234822,0.080371834,-0.2510104,0.23362394,-0.116869695,0.13389729,0.11254089,-0.507256,-0.34681684,0.64161605,0.036787305,0.16056748,-0.14767571,-0.4270292,-0.018418347,-0.18940207,-0.12708831,0.050086517,-0.7541276,0.18419974,-0.20073144,-0.28243914,0.44160992,-0.28168827,0.20795546,0.15780912,-0.015093224,-0.016717182,0.100355335,0.2701537,0.65664136,0.07651418,-0.31631878,-0.21047187,0.06615563,0.1543561,-0.2580628,0.11414871,-0.29270792,-0.0354735,-0.6111611,0.6440649,-0.021470802,-0.38811046,0.22450742,-0.1871277,-0.050898273,0.42282325,-0.018174198,-0.048530363,-0.29442233,-0.029128743,-0.28528556,0.03892495,-0.35274383,0.24727343,0.24578442,-0.02061477,0.03628723,-0.090455905,-0.07166142,0.638599,0.065609835,0.46311638,0.16834934,-0.03115936,-0.31417775,0.030317083,0.06845393,0.28676718,0.09640711,0.14169164,-0.37894312,-0.22352536,-0.17611465,0.16694379,-0.24193124,0.14896478,-0.04155136,-0.40196982,0.75812966,0.06256542,1.196438,0.115179434,-0.34375784,0.08354163,0.5631107,-0.11379927,0.0820166,-0.46527764,1.0493218,0.5635771,-0.065999135,-0.1370004,-0.37908274,-0.24217546,0.39497662,-0.37512806,-0.2175721,-0.06391342,-0.593265,-0.5349378,0.2459418,0.07962396,0.15597446,0.06811894,-0.13252164,-0.022276325,0.17497393,0.37022242,-0.5705183,-0.2798394,0.2781178,0.24141277,0.008839594,0.11861612,-0.5031305,0.41517472,-0.63326925,0.24294342,-0.3715158,0.0769826,-0.12197196,-0.2960154,0.16643532,0.07671835,0.33283225,-0.10564972,-0.5541459,0.04542658,0.37812454,-0.073083416,0.18210877,0.64229316,-0.27122346,0.19179752,0.017972754,0.46351954,1.210627,-0.25739723,0.021320531,0.3376172,-0.4455747,-0.53112364,0.38212034,-0.10472388,-0.031190524,-0.19745348,-0.408758,-0.4348205,0.27462703,0.14294441,-0.0024546299,0.0016522536,-0.40752825,-0.22374399,0.29618582,-0.36380002,-0.32585278,-0.2829936,0.34287134,0.8979483,-0.38423178,-0.17881842,0.14196561,0.20881346,-0.30023044,-0.476862,-0.17154057,-0.14302717,0.40318182,0.049847424,-0.31307146,-0.041132636,0.15447657,-0.22314712,0.06603698,0.33256215,-0.39550278,0.12758282,-0.22580047,-0.16502312,0.97388256,-0.12039304,-0.25878245,-0.7059876,-0.518014,-0.8883516,-0.49038133,0.42350963,0.11445742,-0.06364549,-0.23850682,0.09982596,-0.05624688,-0.19554864,0.09051139,-0.4136315,0.24183273,0.10452783,0.45679075,-0.21809924,-0.7450229,0.12652889,0.18806064,-0.01796727,-0.6426013,0.6841334,-0.12360025,0.79284525,0.06615651,-0.19968645,0.11418807,-0.47057787,0.01957475,-0.3707259,0.019886145,-0.7577302,0.20720124 -778,0.46654415,-0.3897917,-0.5540022,-0.11958653,-0.10412725,-0.05734822,-0.3221345,0.27127096,0.18209922,-0.65916973,-0.27687928,-0.20611751,0.1287729,0.33311933,-0.2094592,-0.563933,0.122911416,0.16611,-0.3775154,0.54020166,-0.55368924,0.08952978,0.12079849,0.37177682,-0.06049937,0.12567171,0.30048507,0.051441163,-0.034221902,-0.3110649,-0.12677461,0.043451507,-0.86257833,0.19509673,-0.14080948,-0.570847,-0.07115794,-0.43650305,-0.3237689,-0.6879358,0.28649333,-1.1387855,0.41242492,0.086547375,-0.30229768,0.2018547,0.13954397,0.35422763,-0.19538136,0.060920894,0.07705895,-0.32949075,-0.041354354,-0.35319754,-0.014758766,-0.35213915,-0.5007421,0.039520506,-0.4385967,-0.1788642,-0.19967651,0.06868634,-0.2653309,0.23336722,-0.2037311,0.31259403,-0.4558114,-0.16580124,0.4507098,-0.17137198,0.4734583,-0.3664453,-0.12902209,-0.10797871,0.13503255,-0.21430774,-0.265478,0.14446513,0.1615358,0.52276605,-0.042783093,-0.1699996,-0.1050873,-0.05432613,0.2792434,0.43779135,-0.23222047,-0.4617912,-0.41055655,-0.15989752,0.12183344,0.16983151,0.10952676,-0.31136012,0.015033628,-0.10338076,-0.39100328,0.4161675,0.6124615,-0.37933314,-0.07137648,0.25334316,0.55886453,0.06931973,-0.23018913,0.062174525,0.15778026,-0.6222722,-0.26624882,0.16350175,-0.19261521,0.7135386,-0.251189,0.27902028,0.5688763,-0.21118538,0.033934508,0.14318709,-0.011808514,-0.20006554,-0.19854195,-0.29768655,0.48487115,-0.5496768,0.18530814,-0.3022946,0.8036377,0.2583537,-0.6125195,0.38701543,-0.5281574,0.20103581,-0.21637274,0.64859974,0.60986143,0.35481846,0.29153445,0.8033908,-0.59095633,0.11790743,-0.24435918,-0.23267679,0.08406714,-0.20687628,0.10485951,-0.33307245,0.011265566,0.002859195,-0.03799814,0.04787535,0.343999,-0.5350009,-0.10124791,0.18136357,0.67689687,-0.23314433,0.032629896,0.78463084,1.1753228,1.1231177,0.18905301,1.0980448,0.31776318,-0.1599257,-0.12247112,0.24180312,-0.69090587,0.24912907,0.39340675,0.45610538,0.1817834,0.253278,0.02173706,0.49376848,-0.511446,0.07140238,-0.18068661,0.3155059,-0.13342969,-0.028416684,-0.32250705,-0.1727676,-0.028870722,0.08285363,-0.09453299,0.3065066,0.058688883,0.617512,0.18892424,1.208528,-0.17183834,0.086090125,0.03956464,0.3648477,0.20069902,-0.17492366,0.041885603,0.05267115,0.48165667,0.0840937,-0.5526518,-0.033944104,-0.048748504,-0.4359374,-0.15875313,-0.24173777,0.016508058,-0.16571648,-0.5463235,-0.10063741,-0.027809232,-0.07918104,0.47996604,-2.73021,-0.10375633,-0.23749131,0.23831117,-0.27083084,-0.24344611,-0.13030107,-0.5240313,0.50933677,0.40031013,0.48937592,-0.7095895,0.47932792,0.4074587,-0.42459098,0.004985945,-0.8296421,-0.12406606,-0.2456706,0.31690723,0.1629365,-0.08916112,0.035708454,0.1401978,0.5275509,-0.02873838,0.30208337,0.12753855,0.30512926,0.013119389,0.51073664,0.13825563,0.48701477,-0.5236246,-0.16934283,0.4479724,-0.3715203,0.19416232,-0.24768656,0.16813238,0.41766596,-0.40767384,-0.9105882,-0.8206873,-0.34136668,1.1501561,-0.33285248,-0.62654734,0.18434303,-0.15412365,-0.28114685,0.01829953,0.34525323,-0.050648104,0.047898944,-0.86086226,0.023936652,-0.10772106,0.3077658,0.06359703,-0.22179882,-0.47557807,0.79785424,-0.19693823,0.34579912,0.5911606,0.1640573,-0.1675428,-0.29387715,-0.012059969,0.96331054,0.3710628,0.2015775,-0.30103174,-0.12550735,-0.23827223,0.034535225,0.116157055,0.6399741,0.8086501,-0.15020911,0.15483792,0.2988453,0.031450994,-0.07989337,-0.12119485,-0.43245658,-0.023335448,-0.0015698522,0.7802898,0.8596375,0.05770284,0.31414056,-0.14763391,0.29796574,-0.22210163,-0.6191141,0.44910178,0.638542,-0.057907913,-0.28345793,0.6845471,0.59927696,-0.2123713,0.5010279,-0.68641925,-0.5798463,0.318863,0.06926325,-0.41642264,0.236956,-0.4177643,0.33980313,-0.8157575,0.36157367,-0.49540067,-0.50752276,-0.5146435,-0.17919354,-3.8421762,0.39934182,-0.23372842,-0.15566127,-0.0658225,-0.2385674,0.38593683,-0.6184223,-0.45558825,0.34895155,-0.04107591,0.6326301,-0.033351768,0.08522451,-0.33778057,-0.07980517,-0.17112629,0.100987464,0.22363722,0.05859537,0.008474181,-0.4322369,0.04060178,-0.15930745,-0.23369056,-0.027942007,-0.656699,-0.49673605,-0.14030962,-0.4838822,-0.5380695,0.5151393,-0.32003602,-0.053756554,-0.2395368,0.016413152,-0.31968215,0.36141348,0.057499517,0.2540839,-0.19267286,0.0042999783,-0.13320921,-0.2673207,0.1068331,0.112667106,0.020299604,0.2905132,-0.27843517,-0.007713089,0.45909333,0.598443,0.035008248,0.8747291,0.5392906,-0.048475802,0.2955431,-0.018946597,-0.21664132,-0.5995284,-0.34219518,-0.2288912,-0.45347306,-0.5317596,-0.0041389987,-0.24119599,-0.687689,0.7550567,0.23757036,0.07548595,0.009575578,0.29949823,0.41674995,-0.23299085,-0.12448899,-0.035326164,-0.13192748,-0.6371438,-0.32555962,-0.7805175,-0.29028234,-0.0100781815,0.89624923,-0.21857099,0.10087329,0.1695898,-0.17962931,0.06999134,0.37904644,-0.08541716,0.06092554,0.6062929,-0.02259325,-0.7513563,0.47229037,-0.11134511,-0.30229077,-0.7438057,0.1588345,0.7609338,-0.7921342,0.68701744,0.6231293,0.065522805,-0.053135216,-0.57750607,-0.326665,-0.11424901,-0.4088105,0.40134814,0.26554647,-0.8669648,0.42267525,0.35708353,-0.30333626,-0.71580285,0.6294416,-0.054787476,-0.27441764,-0.033847917,0.23802245,-0.081760146,0.13141073,-0.122390814,0.066632874,-0.52834225,0.15473892,0.27054703,-0.041637905,0.10987239,-0.1441947,-0.052636266,-0.641122,-0.0828202,-0.60805017,-0.08907768,0.12698738,-0.1240441,-0.08371212,0.22084779,0.056166593,0.3857111,-0.28792262,0.16348644,-0.124975346,-0.3713118,0.42259455,0.5407247,0.357541,-0.42906496,0.7887593,0.08562238,-0.03339589,-0.28852132,0.02816579,0.52388424,0.06292734,0.42258272,-0.10630676,-0.10654276,0.11494348,0.87439984,0.16036464,0.6597062,0.040467534,0.22954708,0.3039215,0.27534345,0.23888607,0.10068462,-0.4629484,0.0014285768,-0.18867107,0.11032484,0.351029,0.14377208,0.5729723,0.011757473,-0.23761773,-0.0075822356,0.1675986,-0.05573422,-1.3202952,0.41960612,0.0687075,0.5985579,0.62053305,0.020302305,0.0047971536,0.5545574,-0.35450873,0.089096904,0.08640006,-0.0032644917,-0.36255932,0.4780011,-0.7689903,0.29138976,-0.17017566,0.03203006,-0.043990787,0.05324006,0.467852,0.7896159,-0.22483869,0.16532362,-0.08320389,-0.26224357,0.10987842,-0.47700652,-0.1503926,-0.5707664,-0.35628486,0.80725807,0.5983148,0.5719722,-0.1359703,-0.10619348,-0.01771341,0.0017832468,0.036929592,-0.024820372,0.08063519,0.023144953,-0.7448876,-0.22297359,0.6627141,-0.094287165,0.23227108,0.034413982,-0.31766835,0.40486047,-0.17603059,-0.1768192,-0.09398142,-0.72890323,0.0676812,-0.4745455,-0.30546367,0.5197951,-0.4125389,0.2914684,0.21343641,0.05722277,-0.12740426,0.19939487,-0.006108556,0.6720197,-0.035250206,-0.27256048,-0.39545774,0.20251215,0.33733058,-0.20909844,-0.04088208,-0.32589617,0.05704856,-0.64716226,0.3877089,-0.1661158,-0.18554282,0.3090242,-0.096941374,0.06444779,0.6811126,-0.114088304,-0.19384956,0.28251186,-0.21170896,-0.3337692,-0.31116915,-0.2127086,0.31957823,0.052654058,0.13256471,0.1251105,-0.0028093357,-0.08908057,0.33289194,0.12563562,0.34344852,0.42846978,0.09986061,-0.39709893,0.015366892,0.11921369,0.5418162,-0.12863529,-0.24020308,-0.23603112,-0.74265355,-0.31259227,0.10964503,-0.009481987,0.3836412,-0.07873813,-0.020492157,0.9754656,0.023239413,0.92367953,0.00043750057,-0.49174497,0.015453092,0.44967508,-0.07336373,-0.0633248,-0.3498471,0.8072221,0.3694115,-0.15013342,-0.044520218,-0.4457806,-0.021176739,0.07446516,-0.1178976,-0.19564192,0.0143891275,-0.67106587,-0.16670747,0.21468802,0.4545661,0.2794928,-0.07662523,0.3323653,0.2892693,0.0767636,0.27523196,-0.6200038,-0.20073126,0.35088396,0.33236423,-0.01277813,-0.0011443123,-0.21320315,0.33596,-0.43783927,-0.054694194,-0.46064317,-0.047443405,-0.10139706,-0.36202168,0.14179604,-0.12829867,0.34998927,-0.4886968,-0.109294415,-0.18422532,0.5281758,0.31112453,0.19924806,0.6258289,-0.17608659,0.07690821,-0.020922115,0.5703704,0.9850154,-0.48697436,0.0066505834,0.49167442,-0.24061692,-0.6549406,0.32585728,-0.1702435,0.16608584,-0.011897068,-0.34702668,-0.6098867,0.16454892,0.17132328,-0.065928504,0.39243925,-0.72935724,-0.09235307,0.31491908,-0.22782587,-0.30314866,-0.3811383,0.29460385,0.5847037,-0.24753869,-0.14648835,0.043290447,0.29067314,-0.20274007,-0.42553273,-0.10475283,-0.303216,0.37614393,0.19735324,-0.20239775,0.051462468,0.12977637,-0.45134652,-0.06463367,0.0944708,-0.17495285,0.11223415,-0.23611955,0.051504303,0.8708717,-0.30086067,0.12443427,-0.5783582,-0.59564465,-0.73136455,-0.16697109,0.60261637,0.07044404,0.08423098,-0.3104089,-0.013384561,0.014680182,0.117375456,-0.06997379,-0.3484254,0.5959591,0.067314625,0.39752102,0.14109944,-0.6167252,0.13779983,0.033534847,-0.056993827,-0.41428557,0.48949274,-0.12668163,0.8050181,0.10537866,0.062161714,0.19299483,-0.5267455,0.13604994,-0.22982483,-0.18510883,-0.8093717,0.024505323 -779,0.43499812,-0.14332442,-0.7215435,0.09860978,-0.3560361,0.12558384,-0.6023719,0.4177065,0.16628028,-0.47764692,0.16992813,0.13839728,-0.1951971,0.062040668,-0.2043242,-0.7543163,-0.18789189,0.243342,-0.3767283,0.57445806,-0.25606927,0.23397511,0.11808065,0.26185504,-0.04835798,-0.07238408,-0.10303881,0.05128653,-0.15357767,-0.48488927,0.041232485,0.08839741,-0.5271881,0.4203775,0.06037712,-0.44615448,0.258116,-0.4037551,-0.34589264,-0.6643347,0.27977374,-0.70354414,0.83171946,0.2139873,-0.39481923,0.076410174,0.04134571,0.28525934,0.12004668,0.28126755,0.44021937,-0.7514338,-0.29837525,-0.5207347,-0.48817575,-0.71062464,-0.5737791,-0.18277681,-0.42658815,0.31942952,-0.13581292,0.5070918,-0.15484531,-0.10471081,-0.43910626,0.16275255,-0.57059807,0.03503446,0.1328764,-0.040597234,0.37280944,-0.8210612,-0.12178058,-0.0056049204,0.14466803,0.14600585,-0.21876742,0.17612159,0.011946831,0.533999,0.105960436,-0.28980148,-0.42952147,-0.18770921,0.054789662,0.6483183,-0.43556198,-0.109900095,-0.44355837,-0.016144743,0.793338,0.4949772,-0.06045264,-0.14200783,0.023219263,-0.3730514,-0.11169223,0.49486244,0.60675234,-0.20624013,0.20902102,0.26660934,0.10698432,0.21255033,-0.31904274,0.16094534,-0.32716405,-0.3762915,-0.10375204,0.30407494,0.020142242,0.26052287,0.0802658,0.23123394,0.37130365,-0.05961016,-0.20936139,-0.078370504,0.074562915,0.27202165,-0.32999063,-0.2459138,0.5654458,-0.60809326,0.18575537,-0.53882074,0.6323069,-0.1526847,-0.6808428,0.34506738,-0.49397305,0.04896654,0.10976841,0.77413684,0.71938324,0.8452818,-0.10717329,1.0901034,-0.45412007,0.35284173,-0.23661725,0.009869501,0.14487927,0.15554005,0.11385476,-0.39482966,0.06593413,-0.20044248,-0.10215481,0.044178445,0.75313234,-0.5244774,-0.20364602,0.26469997,0.86798257,-0.27090663,0.101262905,0.76229554,1.1528648,1.078075,-0.12230181,1.0770515,0.21757834,-0.24315919,-0.5821702,-0.08260695,-0.6932089,0.19896756,0.49952182,0.20447688,0.37631962,0.21928883,-0.09188024,0.49458703,-0.2786158,-0.47329903,0.013925363,0.3990945,-0.2693543,-0.28778723,-0.6476155,0.14164622,0.08478058,-0.10269773,0.2155642,0.513101,-0.3236517,0.5820425,0.13653135,1.1258324,-0.4491063,0.21418233,0.33229482,0.0945017,0.32310688,-0.10217602,0.22492428,0.3262622,0.30407426,-0.21234338,-0.53747255,0.03159839,-0.22665977,-0.53102976,-0.15128,-0.002060175,-0.2835209,-0.09305465,-0.23191185,-0.2906771,0.07715874,-0.35074317,0.24734867,-2.3336341,-0.114099324,0.059921294,0.3148286,-0.13584928,-0.55888724,-0.13177387,-0.3778458,0.74501115,0.17373429,0.64054877,-0.2856035,0.37705323,0.39019394,-0.3791529,-0.030075839,-0.8359501,-0.13890459,-0.08291736,0.45506397,-0.058561996,-0.5680563,0.14008687,-0.17184235,0.67117673,-0.030917307,0.099928595,0.25139186,0.5366869,-0.2903202,0.3452886,-0.18176335,0.6887428,-0.33012366,-0.31459475,0.34562397,-0.29752138,0.45853505,-0.31897554,0.1628063,0.6476188,-0.4616929,-0.5687092,-0.2784454,0.0139198555,0.9002921,-0.22938068,-0.6559207,-0.07855556,0.04989801,-0.26756337,0.17416996,0.50302094,-0.1778562,-0.032375842,-0.5032796,-0.3547474,-0.19662143,0.37022963,-0.14512888,0.2654924,-0.63003224,0.5555959,-0.11599707,0.5382469,0.8486624,0.33696768,-0.056906313,-0.31741038,0.04248665,0.8658852,0.55520004,0.17773996,-0.48895776,-0.15773386,0.02503711,-0.015581111,-0.15932459,0.7037967,0.64062697,-0.21601813,-0.040882144,0.30885202,-0.35230467,0.03492638,-0.15461755,-0.60631853,-0.23196684,0.27022478,0.62034154,0.534831,0.14222346,0.60717005,0.17977206,0.33206967,-0.4746929,-0.36564374,0.35858855,0.6202638,-0.35695648,-0.24263479,0.83037,0.44448295,-0.04574275,0.7107894,-0.77823496,-0.39605975,0.3280455,-0.024163222,-0.54244745,0.4153814,-0.34290895,0.06384816,-0.9454158,0.19145536,-0.62624305,-0.8775945,-0.8978742,-0.23615062,-1.1471392,0.14341624,-0.40020004,-0.026444891,-0.27351713,-0.19309384,0.33706012,-0.50320715,-0.6932716,0.15406406,0.29052004,0.4126042,-0.1773846,-0.07070469,-0.27864984,-0.5276106,-0.0613725,0.5788508,0.27481565,0.033496562,-0.23480046,-0.36816755,0.035218358,-0.0013625572,-0.11721989,-0.123125784,-0.6619643,-0.05429397,-0.0029044233,-0.40788135,-0.04722644,0.70208865,-0.6520641,-0.06398239,-0.3046513,0.22001141,0.119359106,0.085971914,-0.19545932,0.367627,-0.0084634675,-0.3506013,0.033091854,-0.22567098,0.02173546,0.19358116,0.26247156,0.3142845,-0.2462743,-0.042493504,0.4582294,0.6513981,0.14652003,0.8688228,0.33499923,-0.14897068,0.23003745,-0.3345225,-0.19278257,-0.75951105,-0.27639267,-0.027305752,-0.5052138,-0.8343254,-0.16723372,-0.48118103,-0.8368201,0.61201304,0.106997855,0.11034589,0.019129897,0.81688166,0.25218603,-0.28406823,-0.13991208,-0.07604303,-0.12010071,-0.2539117,-0.36208442,-0.84911615,-0.43006957,-0.025648465,1.2886738,-0.2718281,0.038399275,0.4391718,-0.3642212,0.019154524,0.37924495,-0.0044077933,-0.099931896,0.2968883,0.4386654,-0.52593917,0.30942386,-0.06663906,0.006211281,-0.6295509,0.22446986,0.7576487,-0.7499778,0.3030844,0.5894762,0.19309019,-0.27876538,-1.0851709,0.010098909,0.54989344,-0.2546197,0.6098594,0.373418,-0.42448792,0.5028366,0.40517232,-0.107397854,-0.76092935,0.28501675,0.0022041302,-0.40707472,0.2572318,0.4684359,0.026685873,-0.062632106,-0.23248307,0.49565086,-0.41607532,0.584897,0.043850347,-0.28785846,0.087295555,-0.29736343,-0.3787091,-0.9612896,0.21368696,-0.8050256,-0.46819317,0.56853706,0.00719736,0.19582842,0.20346336,0.3989921,0.65102524,-0.5399836,0.17856891,-0.5759476,-0.41136727,0.5832219,0.572002,0.39146772,-0.42132545,0.5847413,0.06632698,-0.30514142,-0.05809587,0.2478662,0.58833325,-0.14091522,0.54031205,-0.32335332,-0.10076081,0.10671132,0.9727704,0.3459215,0.33399916,0.20675588,-0.04736189,0.101358734,0.07694313,0.16444708,-0.28087503,-0.41722372,-0.21230717,-0.11822173,0.04018551,0.6491393,0.1648846,0.47360513,-0.25481907,-0.0333934,0.09031307,0.08841094,0.11894896,-1.1019126,0.523043,0.21626176,0.6345816,0.410805,0.3946524,0.23131399,0.40551063,-0.32382587,-0.17247178,0.379737,0.15080358,-0.054279655,0.46038854,-0.61288583,0.09852648,-0.3163801,0.100337245,0.3346078,-0.11414373,0.7861753,0.9944927,-0.24061507,0.16029048,0.039170865,-0.27233362,-0.0894309,-0.041343022,0.08890965,-0.33668968,-0.50427413,0.8176343,0.14234641,0.4583486,-0.16339995,-0.0591121,0.44606113,-0.060629856,0.4464318,0.058492374,0.057367522,-0.06546765,-0.15903874,-0.20381379,0.61349773,-0.1247175,-0.253019,-0.04834312,-0.120252885,0.40037918,-0.051920384,-0.060643617,-0.021583056,-0.5746533,0.26333913,-0.68140966,-0.51149195,0.33718958,0.12954585,0.054883797,0.09693927,0.23289101,0.11676166,0.34273314,0.06192313,0.7667896,0.10379762,-0.31407833,-0.16790362,0.090415396,0.34722304,-0.32026878,-0.14704826,0.07722622,0.37768808,-0.8209069,0.32243606,-0.47439286,-0.3080327,0.20088993,-0.14747807,-0.29072842,0.32892188,-0.07167526,-0.24337976,0.38057378,-0.3261884,-0.34839478,-0.5186768,-0.36181858,-0.04324424,-0.23087166,0.07520909,-0.36721793,-0.029961308,-0.15378453,0.40182695,0.2978821,-0.068845965,0.38148192,0.2553773,-0.5044445,-0.0074358187,0.27252185,0.53000075,-0.13714324,0.03948206,-0.23270452,-0.5122896,-0.3923578,0.50935155,-0.1955565,0.43882504,-0.031115947,-0.39087668,1.153822,0.13182025,0.9379818,0.02896604,-0.5455323,-0.12732112,0.7334819,-0.20238554,-0.015110941,-0.4711641,1.2238063,0.8077703,-0.07271289,0.0012919307,-0.38574103,-0.106588244,0.28890648,-0.41014984,-0.023318762,0.0057941177,-0.61750555,-0.060186297,0.27119586,0.082759924,0.009570415,-0.2096101,0.07952767,0.31667686,0.27736965,0.006734515,-0.53440875,-0.18316476,0.37961808,0.21061854,-0.017776066,0.23828049,-0.35918975,0.015242974,-0.6013798,0.092633076,-0.5676955,0.045549154,0.06520765,-0.2336865,0.37522134,-0.16459204,0.0536261,-0.48795405,-0.26880363,0.12388862,0.23447634,0.2620521,0.29871407,0.6126589,-0.29295585,-1.7868975e-05,-0.1205599,0.42888108,1.1883745,-0.4398577,-0.09032037,0.29232585,-0.43179503,-0.7632136,0.001122276,-0.5882111,-0.05434111,-0.053235233,-0.65709907,-0.49077988,0.25591028,-0.117361516,-0.2594215,-0.17436528,-0.5913463,0.09948442,0.1628906,-0.28104207,-0.25965816,-0.08170354,0.12970418,1.0571774,-0.202991,-0.53998166,0.032449313,0.45689377,-0.45570922,-0.6544576,0.40835524,-0.433287,0.196491,0.17106509,-0.43613717,0.10668659,0.10289059,-0.6021419,-0.13092633,0.41239586,-0.20765595,-0.20694053,-0.29327154,0.28291973,0.7050257,-0.08561895,-0.11804819,-0.4817632,-0.45460543,-0.69030863,-0.49367616,0.017107695,0.31754258,0.22861338,-0.796542,0.040959943,-0.5487825,-0.13953814,-0.031680185,-0.3417749,0.47407582,0.11648762,0.4722092,-0.6286345,-1.0540086,0.3852073,0.13874745,-0.46217093,-0.43632475,0.33454588,-0.23781924,1.0441232,0.115999006,0.07131072,0.14704727,-0.82486343,0.3874997,-0.32976446,-0.16544776,-1.0820915,-0.016746148 -780,0.5639065,-0.16277117,-0.30357248,-0.1713871,-0.18104869,0.12521723,-0.26577193,0.31054914,0.17806864,-0.69121623,-0.11860378,-0.3784804,0.012841351,0.4339648,-0.13642932,-0.6566811,0.0033351108,0.12010488,-0.48809728,0.61430615,-0.45568246,0.3950454,0.25239098,0.33280718,0.15597409,0.2202919,0.46233684,-0.21895811,-0.059931345,-0.26931745,-0.04553462,0.052705973,-0.70268816,0.13146211,-0.10714644,-0.44511837,-0.025948592,-0.332677,-0.22994475,-0.75040114,0.32292098,-0.7138007,0.45590258,0.19527733,-0.21329702,0.38995832,0.10937457,0.23017383,-0.1897916,0.13008407,0.1679615,-0.11069776,0.06281829,-0.11568502,0.014567107,-0.4744409,-0.5617441,0.16010165,-0.37502053,-0.29451054,-0.41039371,0.15508424,-0.3229169,-0.03882597,-0.11054444,0.46124464,-0.28873545,0.012580663,0.18857023,-0.2208059,0.4815085,-0.467756,-0.17134376,-0.18071076,0.1847144,-0.2375655,-0.14834404,0.1971391,0.18127377,0.6911264,0.053484626,-0.18099624,-0.3517025,-0.07642929,0.019317182,0.52883,-0.1617683,-0.6021344,-0.12778223,0.03719812,0.1497156,-0.0049977656,0.10585131,-0.28694034,-0.22227667,-0.016675599,-0.22731945,0.39863402,0.42329216,-0.33234707,-0.33759248,0.37550405,0.34860408,-0.0053078905,-0.062396683,-0.069582015,-0.030455327,-0.542317,-0.10357724,0.117551215,-0.24420431,0.55427563,-0.16482985,0.34247208,0.6524725,-0.112798475,-0.043055233,0.024271015,-0.119619764,-0.050869387,-0.086530864,-0.21481189,0.25208616,-0.49754223,0.029927962,-0.30875772,0.82650346,0.1054789,-0.9048643,0.38204762,-0.42781365,0.1451987,-0.025139267,0.5466462,0.6808795,0.33524513,0.31223038,0.6491381,-0.5336967,0.0234458,-0.17904635,-0.34995508,0.07183185,-0.09096012,-0.10648583,-0.52033603,-0.08043797,0.049373858,-0.010347933,-0.015947372,0.43819773,-0.59815043,0.010573328,0.19925842,0.7935079,-0.3222955,-0.04565213,0.65992004,0.9886138,1.0250962,-0.017473638,1.1604671,0.17408207,-0.29492682,0.22139408,-0.35305077,-0.6178812,0.34869564,0.3925236,0.21031079,0.21819207,0.024050951,-0.01398664,0.31140348,-0.3366635,-0.008861326,-0.2292694,0.15035553,-0.012747418,-0.036737643,-0.34934282,-0.23424608,-0.043420695,0.043007545,0.1053752,0.105987236,-0.15302366,0.29056603,0.025130246,1.661054,-0.13727468,0.12415118,0.047481954,0.4000657,0.17890558,-0.25021,-0.10703621,0.16386873,0.29860967,0.09116827,-0.5367596,0.0821362,-0.14104739,-0.5411555,-0.15862238,-0.22822401,0.014865013,-0.04814908,-0.45943838,-0.035643272,-0.1623159,-0.45511293,0.39267048,-2.6834183,-0.1963575,-0.07044255,0.35051882,-0.31443584,-0.29558235,-0.123016246,-0.4953437,0.4574728,0.43640774,0.4249623,-0.7392415,0.24530242,0.34707072,-0.4581605,-0.16732442,-0.6725942,-0.02189996,-0.10740794,0.45551747,0.068646856,-0.10444197,-0.09328596,0.34677693,0.59342885,-0.10126327,0.08114745,0.10246873,0.39734733,0.17344895,0.50178444,0.034639657,0.4837267,-0.21642902,-0.16697045,0.41400218,-0.35668653,0.086212225,-0.17109874,0.14789696,0.24311087,-0.41848785,-0.8100852,-0.72450364,-0.35019252,1.1579574,-0.14050214,-0.3830479,0.21554108,0.06760037,-0.20092633,-0.035494704,0.35962865,-0.104987025,0.021975826,-0.8926431,0.116748385,-0.020620666,0.09376999,0.09217121,0.007982742,-0.48466134,0.6938097,-0.0020744745,0.3727784,0.4384768,0.31157216,-0.2976604,-0.5181745,0.17444387,1.1068693,0.32213894,0.09772473,-0.200923,-0.174686,-0.41449982,0.049151167,0.06042748,0.3594753,0.7585662,0.030712485,0.10647471,0.28326878,0.037692983,0.11721198,-0.11789046,-0.28377378,-0.059292234,-0.053235695,0.6897053,0.5544634,-0.081811786,0.34705478,-0.13977066,0.2913978,-0.18788394,-0.39188948,0.6484789,1.1158838,-0.11565591,-0.1255154,0.52742374,0.45722502,-0.107138544,0.3919731,-0.6276972,-0.4138588,0.408014,-0.16618973,-0.36437687,0.25744766,-0.3316553,0.15151897,-0.97309375,0.34239724,-0.28210646,-0.3489762,-0.6149497,-0.12390934,-3.676321,0.22933605,-0.23470932,-0.24077487,-0.069790885,-0.043746967,0.30416572,-0.5533111,-0.37677616,0.08807389,0.063494995,0.75270975,0.035535913,0.22544521,-0.20798534,-0.16929457,-0.29704806,0.19352019,0.014695063,0.19603461,0.100325614,-0.43592665,0.02734984,-0.20568906,-0.34555537,0.10448639,-0.44048488,-0.54747,-0.25448212,-0.47815502,-0.41866738,0.51115155,-0.32500705,0.10539162,-0.23020253,-0.11058511,-0.022915218,0.40983486,0.12221353,0.053807758,0.043943834,-0.09083596,-0.017576102,-0.31748316,0.18302146,0.1709872,0.24102522,0.48490703,-0.33456478,0.19534498,0.43319353,0.53187764,-0.1282,0.7503979,0.5039236,0.03929939,0.24219987,-0.27684233,-0.19392332,-0.5634294,-0.3419401,-0.09966287,-0.38489252,-0.41018832,0.010120355,-0.27844876,-0.7250558,0.4895132,-0.031274613,0.0839768,-0.18940297,0.26595956,0.46087387,-0.2507149,-0.010602064,-0.12544805,-0.16955394,-0.5391164,-0.30324072,-0.6303243,-0.51393163,-0.022802442,0.84690225,-0.07018535,0.030868486,-0.013133828,0.0059779957,0.036268577,-0.013518421,-0.05804248,0.15251218,0.32420653,-0.018177275,-0.77761626,0.60117126,0.012643725,-0.10662519,-0.53092736,0.23450229,0.49292317,-0.40536675,0.35780537,0.430639,0.10665712,0.03366179,-0.53906655,-0.059483528,-0.029245242,-0.28282577,0.39798582,0.13901532,-0.62000686,0.49565876,0.3283788,-0.21115336,-0.7865615,0.49495625,0.14561602,-0.3876236,-0.004920967,0.2337093,0.06687239,0.09382036,-0.27792466,0.29538053,-0.5327153,0.22871761,0.15448532,0.052271783,0.41627756,-0.23533158,-0.1679624,-0.7766925,-0.10457523,-0.4675374,-0.2882975,0.088103324,0.18522866,0.039527886,0.3589189,-0.03743399,0.4538297,-0.1550507,0.076467276,-0.087752976,-0.16776589,0.28800258,0.49814442,0.3839691,-0.3737467,0.5810747,0.033365637,-0.0477798,-0.19872032,0.04345603,0.50692046,0.07962615,0.31267935,-0.040204722,-0.26545027,0.40910214,0.6014856,0.15992919,0.36204797,0.067088716,-0.19052505,0.42487007,0.107700996,0.14542553,0.026158981,-0.44697458,-0.10966289,-0.19284934,0.13037828,0.46447715,0.088690236,0.3205779,-0.075301394,-0.32910278,0.04690075,0.08212554,-0.12191852,-1.1359521,0.35860947,0.21104035,0.7612622,0.63557756,-0.055345993,0.16355598,0.72705895,-0.22879265,0.14657193,0.25936428,0.011234917,-0.5628128,0.5343915,-0.6938225,0.30096853,-0.089573234,-0.08336606,0.032338616,-0.014796771,0.35072148,0.6937812,-0.13568212,0.18404122,-0.11984548,-0.2852254,0.13028368,-0.36652794,0.33584088,-0.49658686,-0.20870468,0.7512667,0.43733323,0.2168184,-0.10226948,0.0029070936,0.092984974,-0.10074219,0.15210426,0.118469104,0.046828896,0.029685419,-0.64399314,-0.115726575,0.554014,0.13476819,0.22220695,-0.041178025,-0.31584835,0.11467008,-0.19129725,-0.16566873,-0.101133704,-0.5503845,-0.020034444,-0.2825716,-0.1928046,0.52912486,-0.34121913,0.37832475,0.13380328,0.15395069,-0.1983254,-0.02041322,0.25690195,0.5580636,0.20647213,-0.12146708,-0.3617986,0.09612323,0.15307,-0.22725548,-0.21792074,-0.2571268,0.0047280416,-0.72613555,0.41636822,0.025299236,-0.24864784,0.26545405,-0.14247411,0.06550917,0.6110195,-0.061884575,-0.13430263,0.18444723,-0.21696287,-0.24394834,-0.06026436,-0.03049763,0.37107167,0.12723285,-0.09944482,0.03615384,-0.034595408,-0.14071849,0.39555016,0.1861934,0.36218852,0.20083839,0.05133648,-0.39621666,-0.03350451,0.14711404,0.39576918,0.11411585,-0.09101341,-0.2164115,-0.41345716,-0.3781464,-0.008720182,-0.07918607,0.20710646,0.059976146,-0.28333554,0.7564849,0.10507107,1.095574,0.008077577,-0.35685027,0.060599744,0.4270835,-0.052529614,-0.025779147,-0.38051862,0.91706324,0.6018763,-0.07077293,-0.12945563,-0.20142333,0.021013735,0.061920643,-0.25113055,-0.11158034,-0.049608216,-0.666098,-0.40053686,0.227235,0.30223057,-0.0011251196,-0.13469036,-0.050433025,0.18591814,-0.1277073,0.46312335,-0.46228328,-0.1771791,0.22702831,0.36641157,0.055476576,0.026138395,-0.43993965,0.47817376,-0.6311592,-0.019001067,-0.24117406,0.15021731,-0.20001513,-0.23457041,0.3244289,0.017961502,0.32141426,-0.25993937,-0.4887845,-0.2744575,0.36665967,0.09338969,0.19620019,0.62552357,-0.22912405,0.09789668,0.057970278,0.46050212,1.2442317,-0.33602566,0.033500835,0.40155107,-0.33197954,-0.59061015,0.2480294,-0.26266652,0.09894309,-0.05428273,-0.23484406,-0.40043497,0.30591366,0.14987952,0.07454504,0.058691658,-0.64727867,-0.25333697,0.35155618,-0.2909923,-0.25857285,-0.2768163,0.11093261,0.5003526,-0.32008696,-0.30477995,-0.013228414,0.3720277,-0.3100692,-0.6598462,-0.14684066,-0.34269315,0.38978043,0.26728326,-0.2541932,-0.09414004,0.069962025,-0.38372493,0.008635564,0.17784262,-0.4244889,-0.038370825,-0.44576946,-0.020322932,0.8044224,-0.10096002,0.12310401,-0.5688598,-0.31068325,-1.0124481,-0.36328316,0.6052097,0.1329654,0.079579696,-0.44753382,-0.043484956,-0.17570685,-0.10952635,0.006428484,-0.4068455,0.32661515,0.16534087,0.495942,-0.038988836,-0.66349363,-0.0071122795,0.24892105,-0.19589303,-0.52015203,0.48548666,0.07035484,0.8294222,0.074558005,0.070803076,0.39451486,-0.6298714,-0.012802672,-0.07543717,-0.19086269,-0.7124172,0.117714055 -781,0.39367083,-0.2627942,-0.5039148,-0.12063801,-0.3112515,0.068848856,-0.065996364,0.5937279,0.24914639,-0.34097734,-0.20775078,-0.33657858,0.049950738,0.19234204,-0.054299276,-0.43939394,0.03242338,0.27195093,-0.53795093,0.46811453,-0.35080436,0.11200096,-0.13133651,0.4210547,0.3928327,0.30646974,-0.28083998,-0.22631137,-0.14836049,-0.20387074,-0.07628262,0.40976062,-0.56603205,0.3376967,-0.22720493,-0.17245951,0.026405215,-0.6169085,-0.49641246,-0.7623211,0.19637051,-0.993338,0.43675986,-0.04301094,-0.22864223,0.025281599,0.082204424,0.5204102,-0.24943271,-0.15705016,0.30227908,-0.19252054,-0.07950657,-0.16208278,-0.066624075,-0.29665226,-0.4331307,-0.14682563,-0.24355388,-0.20403774,-0.42620835,0.16387479,-0.30242124,-0.10318915,-0.07646505,0.43254873,-0.5372786,0.3857148,0.1679114,-0.11939112,0.25080815,-0.5034598,-0.2141768,-0.13983274,0.38904566,-0.11513392,-0.35539725,0.39981502,0.29432845,0.17207563,-0.10872375,-0.058732595,-0.099272236,-0.050072428,0.24793628,0.49847177,-0.106664956,-0.35781032,-0.034879334,0.06211335,0.13495383,0.2612749,0.078824736,-0.43049216,-0.2771569,0.123550706,-0.08840655,0.2921462,0.4403117,-0.08229027,-0.1203029,0.34651175,0.43764883,0.3655029,-0.14547476,0.021707824,0.08204854,-0.497371,-0.1759355,0.0020154428,-0.18326838,0.4281941,-0.12857199,0.14985754,0.9295188,-0.15584697,-0.08704614,0.07825785,0.26384166,-0.15085395,-0.31256416,-0.29164964,0.26735663,-0.3583596,0.3008948,-0.032450862,0.74079895,0.11643978,-0.5360112,0.19629917,-0.7170369,0.05468614,-0.22965448,0.49545032,0.6079421,0.437372,0.4762961,0.63842505,-0.29403383,0.11063101,-0.05036863,-0.5088798,0.114810176,-0.2957236,0.025777817,-0.52918553,-0.095913604,-0.01497175,-0.19476427,0.06292832,0.26952392,-0.53249204,-0.03448606,0.12832066,0.84833777,-0.32053804,-0.027712196,0.76791847,0.8579873,0.70367706,0.16185047,1.0663494,0.18557003,-0.27830783,0.27889627,-0.05021264,-0.8130296,0.3819571,0.35675478,-0.34628412,0.034667112,0.30705371,0.053963643,0.2891113,-0.48918098,0.09663143,-0.12942497,0.14584278,0.15890491,-0.16627574,-0.34402117,-0.3184188,-0.22854045,-0.015989957,0.031078398,0.075248234,-0.20738515,0.39405397,0.05399063,1.8054153,0.09202403,-0.015530409,0.03617662,0.48163065,0.13758299,-0.1332384,-0.17616211,0.5523853,0.30459484,0.24133964,-0.55523145,0.25445592,-0.18565233,-0.34290054,-0.05992071,-0.4303847,-0.15938272,-0.04017382,-0.42570928,-0.19605218,-0.16873077,-0.1724331,0.48441392,-2.756604,-0.12223951,-0.006083578,0.4709839,-0.2127564,-0.25296208,-0.14482962,-0.40330616,0.2649179,0.23061118,0.55268174,-0.699903,0.33627817,0.4876249,-0.6191543,-0.23503676,-0.5674016,-0.07092553,0.027808907,0.21872644,0.03341842,0.1647613,0.042002793,-0.04236122,0.36953953,-0.02853941,0.15202801,0.49592772,0.4867905,0.025207248,0.6137403,0.004328919,0.4578462,-0.17658278,-0.20346448,0.1754758,-0.32526255,0.3531302,0.05394598,-0.009150444,0.6300785,-0.38119432,-0.7369317,-0.7267073,-0.20135947,1.1579813,-0.30738586,-0.30514285,0.24880563,-0.5474312,-0.229392,-0.05865366,0.5275446,0.0030038187,-0.022870796,-0.7886561,-0.13711607,-0.124740504,0.17230424,-0.025631862,-0.10101932,-0.34376335,0.7570333,-0.0048887604,0.47264904,0.18594898,0.014172659,-0.24902341,-0.40451017,0.12156453,0.725745,0.25875443,0.17476226,-0.22718641,-0.21317147,-0.3672225,-0.109007575,0.119995795,0.6664018,0.5225948,-0.16203092,0.18701775,0.24525952,-0.065437265,-0.0878951,-0.3046499,-0.27109095,-0.035811577,0.0077692824,0.5010781,0.68436253,-0.11768136,0.56650317,-0.0062224055,0.3440402,-0.053926166,-0.421125,0.24424104,1.2122452,-0.13905852,-0.29296252,0.537929,0.5393845,-0.27065977,0.2862294,-0.4680298,-0.12407739,0.54615074,-0.14097446,-0.488421,0.27214026,-0.2629108,0.1742383,-0.86802435,0.30842382,-0.12396073,-0.6577143,-0.531658,-0.018041363,-2.584828,0.1645719,-0.23533668,-0.24635693,-0.11983454,-0.12072243,0.17630132,-0.5457439,-0.4763752,0.11033688,0.030551655,0.8002611,-0.14695115,0.04555423,-0.2539535,-0.1525587,-0.19670856,0.07275587,0.094217144,0.43029276,-0.105110526,-0.38905498,-0.088664725,-0.050520472,-0.32126242,0.04560361,-0.63676506,-0.5555478,-0.107697,-0.57082117,-0.3228597,0.64141023,-0.43457368,-0.057483267,-0.115100995,-0.01383368,-0.16794758,0.21753795,0.20805503,0.110021695,0.028969212,-0.022433562,-0.04598689,-0.25167945,0.3843949,-0.03858454,0.31787553,0.20974562,0.028966699,0.24937232,0.45736942,0.4637184,-0.14248557,0.8864599,0.49943194,-0.19225541,0.1813325,-0.31438705,-0.30733976,-0.4960421,-0.16781361,-0.0033729929,-0.42883584,-0.40944552,-0.01269865,-0.36579165,-0.7727911,0.51104116,0.1148259,0.12287092,0.07955127,-0.008608818,0.61543363,-0.09923543,-0.16101496,0.0004134306,-0.15611704,-0.63408214,-0.2728749,-0.46891266,-0.4693679,0.18206586,1.0096812,-0.29890618,0.049315516,0.11709076,-0.47216734,0.06096438,0.22204396,-0.10729045,0.13142942,0.6130438,-0.19500305,-0.6440366,0.3897622,-0.10942481,-0.26890084,-0.6795539,0.32801947,0.6473304,-0.70817804,0.5785983,0.23717903,0.014798337,-0.2547302,-0.31142005,-0.21358415,-0.22081694,-0.20179045,0.36070195,0.11526052,-0.6496954,0.22435328,0.39426666,-0.24293676,-0.74885213,0.58257043,-0.2337289,-0.38810465,0.049927585,0.31836957,0.017101053,0.080901034,-0.17469056,0.2887094,-0.31196827,0.23247422,0.24996679,-0.18912964,0.085080735,-0.15590623,0.14906123,-0.7435712,0.113831125,-0.3519134,-0.39083496,0.41287515,0.099920645,0.03464278,0.2090356,0.22553842,0.3052692,-0.2780345,-0.00901403,-0.19919035,-0.24442504,0.23234835,0.438831,0.47333127,-0.46858254,0.5893218,0.08370445,-0.11657076,0.1331338,0.16493177,0.316608,0.0757973,0.5087449,0.060814034,-0.24150242,0.23182373,0.9335031,0.22561088,0.63705796,0.015676614,-0.054187458,0.14614718,0.09071273,0.37778592,-0.027021987,-0.68265533,0.16202055,-0.33384123,0.13403311,0.4129472,0.22855447,0.17436838,0.025841963,-0.41210097,-0.010862291,0.23984501,0.24414203,-1.3332065,0.41153988,0.2920753,0.836379,0.3081503,-0.060210664,0.12887086,0.7062435,-0.06559169,0.10946059,0.21670668,-0.120381534,-0.4813213,0.4218273,-0.89884657,0.39389876,-0.026135726,-0.08841164,0.09324764,-0.05176974,0.4011667,0.668856,-0.25730273,-0.049432002,0.055240072,-0.43203115,0.12181427,-0.4500291,0.114364564,-0.7192593,-0.35611627,0.5338534,0.72701114,0.37355956,-0.1889517,0.14826562,0.03583295,-0.18485208,0.18932489,0.18339637,0.03562851,0.0638774,-0.72092617,-0.13206854,0.58318055,-0.35847855,0.23583211,-0.03250699,-0.13993844,0.33525723,-0.16516586,0.043325346,-0.18573765,-0.7825722,0.035445623,-0.27295396,-0.5755854,0.4393901,0.1069073,0.33505502,0.28356913,0.04953627,-0.1615981,0.6267701,0.11239799,1.0679597,-0.07397298,-0.27003103,-0.3588049,0.23452802,0.22740746,-0.14308803,-0.15537429,-0.36815187,0.017870879,-0.43128395,0.36188513,0.004311553,-0.36795834,-0.092438236,-0.17243262,-0.011772712,0.54606646,-0.052262597,-0.13377725,-0.23353931,-0.22781931,-0.36295706,-0.04316661,-0.12826683,0.2943577,0.2868976,-0.03494798,-0.27425072,-0.0857908,-0.20340827,0.32655436,-0.17873526,0.51408494,0.3763034,0.03889281,-0.11063274,-0.29691166,0.27140802,0.530481,-0.05546119,-0.11420768,-0.18738,-0.28415594,-0.3911688,0.28445467,-0.0548458,0.47992232,0.2505236,-0.28684667,0.69929564,-0.14461221,1.0291735,0.050375853,-0.32733512,0.35333544,0.4524615,0.05171332,-0.059868038,-0.36010668,0.7827706,0.5204545,-0.074454024,-0.10541386,-0.37237218,-0.060187947,0.20138565,-0.1042368,-0.10107864,0.039992485,-0.6174857,-0.1871132,0.17059053,0.21855323,0.28133217,-0.07175126,-0.008980566,0.26966378,-0.08636392,0.112907425,-0.30128402,-0.2664695,0.19314507,0.17122337,0.057056732,0.035179604,-0.51189816,0.5015417,-0.34307626,0.08270579,-0.27150464,0.22000538,-0.38735792,-0.17006691,0.120723955,-0.031664234,0.38464442,-0.39655834,-0.1720202,-0.33742195,0.5269834,0.22020955,0.111101985,0.51100767,-0.26590103,0.05597174,0.059094477,0.43144247,0.6854854,-0.2568238,-0.0024790508,0.5829167,-0.44982672,-0.40825313,0.44252676,-0.32743984,0.11492113,0.14955895,-0.25138608,-0.4549048,0.27598995,0.22471932,0.0737733,-0.14363219,-0.6215703,0.007885669,0.38600594,-0.20404649,-0.19795369,-0.38614655,0.09314563,0.5339633,-0.2259685,-0.36853758,0.14723173,-0.04321679,-0.1745708,-0.3323138,-0.1417435,-0.44852442,0.3533206,-0.24791276,-0.38714027,-0.20997927,0.032271385,-0.3866527,0.12809291,0.018403335,-0.35354543,0.13598336,-0.22515061,-0.0075628334,0.97543657,-0.268447,0.022003742,-0.54700124,-0.43563208,-0.6666298,-0.23062304,0.3990127,0.13978864,-0.015818182,-0.44929695,0.049890913,0.09789681,-0.2443895,-0.22943854,-0.50416434,0.42804417,0.097006306,0.35187802,-0.031307276,-0.9875393,0.3217621,0.017521143,-0.22877155,-0.7095793,0.5290485,-0.2697638,0.7088068,-0.015736908,0.15830204,0.20694053,-0.29419532,-0.07582271,-0.27722526,-0.17129306,-0.69344383,-0.018869335 -782,0.22733828,-0.51588887,-0.41557676,-0.12807004,-0.22183956,-0.03780651,-0.10790194,0.31455782,0.1562974,-0.27304882,-0.23235631,-0.07703384,-0.039214823,0.556048,-0.14415155,-0.67585236,-0.22847703,0.1166672,-0.76742953,0.58340317,-0.47025594,0.24385123,0.041167367,0.34169984,0.2165955,0.34746003,0.40590668,-0.13498215,-0.05853198,0.116157465,-0.19299807,0.07284794,-0.5429991,0.25836208,-0.06475758,-0.21992753,0.12596263,-0.36470065,-0.21914017,-0.6786895,0.34501785,-0.83026916,0.38020346,-0.07256397,-0.11976051,0.072694756,0.13872425,0.27415392,-0.62870777,-0.07731034,0.22824506,-0.08359671,-0.14429283,-0.16193493,0.12713835,-0.24637826,-0.41831067,-0.0028802624,-0.48320433,-0.24866807,-0.12838261,0.111120276,-0.42993435,0.16595438,-0.24573278,0.2657895,-0.42991138,-0.17104198,0.29711086,-0.17831643,0.08438461,-0.6363093,-0.0633713,-0.104362525,0.4300578,0.089180954,0.0026932124,0.57637125,0.13346197,0.373916,0.20672809,-0.22624257,-0.2939606,-0.18377045,0.12334136,0.5031351,-0.03423581,-0.35830775,-0.079257786,0.13165638,0.23086476,0.1532465,0.119323716,-0.27177435,-0.18428114,-0.13468279,-0.126249,0.34655,0.5369584,-0.026842084,-0.3363769,0.2557411,0.49418354,0.2992068,-0.09421124,-0.14778435,0.0451366,-0.5317307,-0.21521465,0.14304039,-0.014888967,0.4549043,-0.011692772,0.2646815,0.88108385,-0.1129201,-0.0043029105,-0.25985658,-0.020863002,-0.31032196,-0.29360422,-0.2135891,0.13282892,-0.46270132,0.03433487,-0.19994788,0.74090534,0.07461201,-0.77134734,0.35133186,-0.40046787,0.21091561,-0.09026541,0.5701679,0.5274553,0.37028125,0.30434912,0.8271747,-0.42048213,0.23706673,0.044057477,-0.49814537,0.018194573,-0.2776487,-0.031391017,-0.49940482,0.16666107,-0.18656382,0.13566124,0.01641448,0.31529242,-0.42643538,0.06615036,-0.008223648,0.7940639,-0.36249736,0.019632995,0.67448914,1.0245522,1.1536119,-0.023602068,1.0721549,0.31621838,-0.29257527,0.15351163,-0.39069524,-0.81549877,0.17984128,0.39090794,0.2386146,0.3046892,-0.074751504,-0.1199429,0.38002247,-0.34494588,0.21422234,-0.13478418,0.30276546,0.1672443,-0.1342198,-0.40686128,-0.22715619,-0.046255548,-0.12363793,0.009070686,0.1387319,-0.21266747,0.46107334,-0.091296844,1.5417448,0.025380688,0.1439151,0.0789836,0.63306534,0.13475668,-0.18560962,-0.018698514,0.3601628,0.6091566,-0.21539068,-0.72691345,0.16639759,-0.46381408,-0.5325278,-0.13954698,-0.46142414,-0.10920782,0.1702124,-0.3625423,-0.24430753,0.0644238,-0.13574803,0.37485796,-2.7478256,-0.0020947712,-0.21927688,0.1659664,-0.29525417,-0.015995055,-0.020388031,-0.5540218,0.23789361,0.30636984,0.46063447,-0.50039554,0.36926594,0.44380093,-0.3922399,-0.137239,-0.52265155,-0.08497478,-0.046048455,0.53515226,0.015358827,0.02120271,-0.118792124,0.07217654,0.6745013,0.03356712,0.052977808,0.49437025,0.45513654,0.22675455,0.5243924,0.123854876,0.5237289,-0.46410993,0.008520271,0.25586042,-0.26782933,0.3747823,-0.14932348,0.09625198,0.49638605,-0.33191353,-0.8147173,-0.55954796,-0.22117174,1.120051,-0.36520848,-0.43080944,0.27664828,-0.06834758,0.06111825,-0.1089291,0.4108799,-0.19879425,-0.024612894,-0.54119676,-0.029790554,0.029981265,0.16150062,0.07251926,-0.22866781,-0.34713033,0.8374595,0.04718705,0.55794084,0.25242904,0.21571429,-0.1167761,-0.3149422,0.13342023,0.644949,0.3086584,0.00042573042,-0.056664467,-0.26021636,-0.014866139,-0.3226927,0.01779354,0.5042094,0.7848772,-0.0008695317,0.1764417,0.31168064,-0.115488715,0.026116926,-0.06662672,-0.21898225,-0.16101313,-0.0016137192,0.37200624,0.5914224,-0.07829898,0.3590831,-0.21499448,0.40168673,0.031519704,-0.48065308,0.66441196,0.48335868,-0.10657482,-0.020421525,0.37035123,0.52742684,-0.36664635,0.45044366,-0.5592405,-0.22185062,0.78911585,-0.25508013,-0.34846374,0.07525538,-0.20988779,-0.008975893,-0.8748679,0.32400328,-0.29559666,-0.31934005,-0.5608548,-0.19370532,-2.9268432,0.14791854,-0.27736762,-0.28356436,-0.26540396,0.04918207,0.24596827,-0.6977142,-0.43531147,0.14661372,0.20051436,0.53243023,0.056562778,0.16767003,-0.19863394,-0.08059518,-0.18715377,0.14169803,-0.10966783,0.24478748,0.03840689,-0.4835053,-0.07622155,-0.10460248,-0.46509483,0.2388192,-0.43371707,-0.37932992,-0.17576131,-0.47338057,-0.20791177,0.5494309,-0.13504067,-0.078419104,-0.15781014,0.076997496,-0.3333351,0.13296254,0.09909684,0.13025856,0.0916791,-0.22676301,0.14968427,-0.40381032,0.45164922,-0.023557918,0.502063,0.19846003,0.018048795,-0.027296407,0.4171631,0.58933884,-0.18884508,0.7000634,0.36310843,-0.1114807,0.27635622,-0.23043594,-0.17886463,-0.50393134,-0.46832463,0.08321706,-0.31905106,-0.60245323,0.025894072,-0.3426996,-0.80675507,0.458332,-0.054836012,0.2716739,-0.053552125,0.043087672,0.3162117,-0.054099288,0.031056331,-0.14519426,1.673294e-05,-0.45299548,-0.3514828,-0.72625,-0.50366104,0.017567528,0.9000638,-0.23142245,-0.24661115,-0.120025635,-0.52747613,0.16320345,0.028562482,-0.023408918,0.3956023,0.23634101,-0.059358228,-0.83229536,0.6326032,-0.037176125,-0.0036530814,-0.47199112,-0.05158576,0.4543331,-0.6046268,0.42344126,0.21668676,-0.07110716,0.053431112,-0.49959216,-0.2429019,-0.023357451,-0.05302855,0.35597134,0.11085337,-0.642574,0.52445424,0.18980435,-0.65509593,-0.72981936,0.01834336,-0.009940088,-0.15509626,0.031087061,0.2379228,0.011336118,-0.049900908,-0.35120177,0.22468947,-0.40285987,0.31244844,0.18558793,-0.048012502,0.16824579,-0.07948717,-0.27158326,-0.6068755,0.14481388,-0.32893124,-0.08801484,0.38798285,0.10137405,0.014612721,-0.045613054,0.120967984,0.3738814,-0.29074317,0.07887083,0.08320541,-0.32459053,0.27543232,0.39729112,0.34024128,-0.46666166,0.48112875,0.10920621,-0.1529858,0.26548287,-1.7327922e-05,0.30228087,0.26173395,0.26750946,-0.21598446,-0.12844504,0.4873866,0.8013421,0.1182156,0.44176954,0.01642601,-0.24671271,0.4956427,0.061435733,0.15094955,0.09584254,-0.36400038,0.01455835,0.14648299,0.08525523,0.50884515,0.2433039,0.4189012,0.16096891,-0.12212513,0.060233466,0.24626768,-0.046865735,-0.90351456,0.3852791,0.2631967,1.0086001,0.45947555,-0.0054527437,-0.08299659,0.7309547,-0.22848736,0.10997225,0.29037422,0.046416175,-0.64275306,0.7363599,-0.41340858,0.5115319,-0.22991626,-0.14497897,0.22584817,0.0422132,0.27204555,0.61541337,-0.21856959,0.040717084,0.045364317,-0.2911617,-0.0794716,-0.45175728,0.12912855,-0.37880176,-0.4228428,0.49238747,0.44590157,0.30559614,-0.06255399,-0.045815382,0.073008336,-0.19509937,0.21244301,-0.03997951,0.01156391,0.14684065,-0.5622011,-0.11568773,0.5203573,-0.20530227,0.23050955,-0.18351777,-0.43482283,0.025673198,-0.33726048,0.0054796166,-0.025645414,-0.73152786,0.27335736,-0.05536325,-0.4032228,0.30590492,-0.12858866,0.2210987,0.2673361,-0.04108003,-0.2316417,0.15079619,-0.03682853,0.9800099,-0.10682945,-0.1785651,-0.39756337,0.008556326,0.28588328,-0.25835642,0.25921172,-0.352515,-0.19809367,-0.46631208,0.6255454,-0.120714806,-0.28514585,0.15778217,-0.35382462,-0.1255095,0.6131607,-0.14164506,-0.06838103,-0.15179434,0.028747106,-0.29935667,-0.040259693,-0.46505097,0.21241881,0.25439796,0.11890073,-0.10455453,-0.22791182,-0.06397077,0.61502373,0.052262187,0.45832896,0.16580431,0.017018646,-0.39709908,-0.03530798,0.09114029,0.45160505,0.40203327,-0.031024547,-0.50619274,-0.40608764,-0.25214577,0.17436896,-0.17142531,0.17255302,-0.012099503,-0.5343799,0.67419726,0.12471894,1.1796815,0.07435506,-0.2682785,0.13707116,0.7039991,0.02919341,0.17847136,-0.4764177,0.80347425,0.48157534,-0.1231919,-0.052456833,-0.3915331,-0.12563004,0.48276207,-0.3260544,-0.0894307,-0.027770098,-0.49882063,-0.40144306,0.13177307,0.16600016,0.11797074,-0.027132476,-0.20312516,0.029493853,0.16728476,0.45520404,-0.59421176,-0.22881718,0.10966711,-0.0067919726,0.010660452,0.2423736,-0.5255612,0.3935822,-0.6716536,0.25465393,-0.35416332,0.16782019,-0.114274554,-0.24437895,0.14683327,0.11112511,0.39895454,-0.48940882,-0.40890646,-0.030775683,0.5334707,0.093581446,0.4120002,0.6454372,-0.31355783,0.053425353,0.19000602,0.5157475,1.0695826,-0.47424215,0.010222725,0.29795986,-0.45315364,-0.5920973,0.46462682,-0.19562927,-0.16950472,-0.25291905,-0.46115202,-0.4446876,0.33614537,0.17167845,0.06288476,0.065435946,-0.55565536,-0.21645486,0.40666658,-0.29069665,-0.29666367,-0.37891316,0.22001283,0.6279747,-0.344738,-0.3119209,0.20040672,0.20271356,-0.23457642,-0.40698725,-0.12061463,-0.30901903,0.44463915,0.071328856,-0.13071159,-0.34207192,0.12757112,-0.38557485,0.17803478,0.11315055,-0.37086058,-0.07083393,-0.09137906,-0.019794613,0.77709913,-0.2501981,-0.07115529,-0.68612474,-0.310322,-0.96656644,-0.5082361,0.591718,0.16706443,-0.10716641,-0.568371,-0.02151914,0.009475359,-0.06875884,-0.09509381,-0.53605247,0.35035962,0.10875831,0.3725967,-0.20772323,-0.7282391,0.21359552,0.089257576,-0.20928761,-0.49784002,0.6382292,-0.12386227,0.81938475,-0.02413169,-0.12698577,0.024474518,-0.36080912,0.18430792,-0.43623856,-0.29220745,-0.5388913,0.12611896 -783,0.51957804,-0.12651952,-0.54782885,-0.13867673,-0.56650037,0.037111353,-0.23133415,0.29172477,0.27611056,-0.2125982,-0.08107572,-0.16482663,-0.07740155,0.41419208,-0.2218137,-0.85458285,0.06056057,0.34858665,-0.7381165,0.6411404,-0.47543836,0.3037334,-0.056728113,0.4158412,0.2605859,0.10874022,-0.03018871,-0.00053628784,-0.22064306,-0.1289492,-0.19605123,0.09467119,-0.8729841,0.52121073,-0.1784019,-0.47882006,-0.1626289,-0.42366162,-0.35075128,-0.80107385,0.22812258,-0.6630674,0.57964677,-0.19286664,-0.3405178,-0.06043766,0.3372555,0.5280615,-0.294991,-0.042926718,0.24900031,-0.35532984,-0.14245628,-0.32946387,-0.32772306,-0.61693835,-0.58768106,0.041899104,-0.535193,0.117351495,-0.2214601,0.25884527,-0.23954491,0.037724804,-0.20612796,0.41319513,-0.41783717,0.52874464,0.22400503,0.07434336,0.120316885,-0.4080759,-0.1902061,-0.2938138,0.2673792,-0.08593694,-0.47621107,0.42671624,0.452099,0.18561427,0.024894752,-0.28733838,-0.23886906,-0.08846422,0.1284611,0.41346863,-0.046348054,-0.33184198,-0.39996383,-0.03738113,0.44585657,0.28721467,0.085959874,-0.52995175,0.044262875,-0.107623935,-0.22213514,0.62657094,0.42678523,-0.19315185,-0.0996673,0.42545965,0.3340814,0.27754587,-0.2932857,0.030967807,0.0403966,-0.6343358,-0.15183903,0.40252456,-0.10543588,0.60704046,-0.29918203,0.07776622,0.70875984,-0.39051744,-0.32991698,0.115541406,0.056083318,-0.07768079,-0.32287955,-0.21926676,0.2020845,-0.57011324,-0.012103538,-0.13726138,0.8344977,0.22123128,-0.84411734,0.25379825,-0.70534045,0.19403236,-0.026287334,0.4278088,0.8477499,0.6547144,0.40425503,0.8240881,-0.454833,0.15052825,-0.001998509,-0.43287054,-0.022650898,-0.2338153,-0.10890257,-0.5040677,-0.009545823,-0.27552626,-0.09668088,0.057564646,0.46010518,-0.41484436,-0.21843183,-0.15517236,0.6297016,-0.4365655,-0.2936112,1.1517953,0.9790776,1.2762548,0.22453295,1.4314791,0.4829391,-0.013225938,-0.074088775,-0.10156438,-0.5988198,0.2818661,0.1367064,-0.8702902,0.31628105,0.0062146806,0.2023331,0.24980597,-0.15444146,-0.12689704,-0.003722747,0.43598607,0.0077773333,-0.20739977,-0.41184866,-0.4894644,-0.010930136,0.019455632,-0.14926404,0.32637945,-0.009041001,0.6303857,0.2274131,1.057156,0.16710423,-0.052615926,-0.14040513,0.36671543,0.25382367,-0.14177231,-0.20380406,0.23969398,0.24377947,0.110850476,-0.6542685,-0.058426123,-0.34630096,-0.34794426,-0.28093103,-0.27740493,-0.14533664,-0.18165548,-0.37500703,-0.3868105,0.006294551,-0.08575838,0.6726246,-2.2462988,-0.20445561,-0.0037568037,0.29467544,-0.18957354,-0.3693289,-0.22743328,-0.6221029,0.33960006,0.16654198,0.51217014,-0.7470123,0.3870455,0.33743146,-0.5100595,-0.25399226,-0.8359568,0.019573933,0.025191853,0.34078774,-0.19168384,0.0345728,0.11619403,-0.10277054,0.66059804,-0.13273461,0.10414786,0.24935983,0.45767602,-0.031360615,0.4657545,0.13758333,0.7558959,-0.4448603,-0.06992066,0.121183395,-0.40172663,0.4154552,0.17503452,-0.0008269188,0.746932,-0.63298696,-0.79857427,-0.62658685,-0.23620254,1.027527,-0.35430884,-0.28388467,0.11612291,-0.2536521,-0.21737589,0.027390605,0.32910606,0.033383377,0.044641357,-0.56985766,-0.09230751,0.061492175,0.15780704,-0.16152906,0.026213871,-0.16925484,0.7201001,-0.086040616,0.306757,0.4230206,0.1354726,-0.5276535,-0.5542212,0.10560119,0.8300577,0.27183655,0.1363075,-0.28301728,-0.32092264,-0.46914113,-0.14545391,0.21688895,0.5622404,0.5297064,-0.1861874,0.035993505,0.39432874,-0.25222942,0.14346343,-0.026354894,-0.3605262,-0.24297334,0.18314381,0.6104356,0.84706324,-0.12647386,0.70281506,-0.1799028,0.23417485,-0.25403914,-0.71045184,0.7483816,1.2509109,-0.24629474,-0.4542818,0.5630908,0.367462,-0.2894586,0.46226677,-0.25098136,-0.33990416,0.7254239,-0.004030938,-0.38543442,0.05071926,-0.35124567,0.08251054,-0.94495064,0.4506863,-0.39007774,-0.6615009,-0.4601687,0.032990467,-3.1150331,0.23760404,-0.19297184,-0.070742324,-0.14044437,-0.23555179,0.09997336,-0.6064876,-0.6859961,0.16432627,0.1442501,0.6563227,-0.062019795,0.13751227,-0.15418066,-0.3229847,-0.23345275,0.28622833,0.35990706,0.39731815,-0.11231923,-0.5308772,0.153599,-0.38385418,-0.54273707,0.007856786,-0.718025,-0.4206207,-0.14035411,-0.63450193,-0.39650837,0.728868,-0.6222706,-0.08966631,-0.22355293,0.009995447,-0.13032268,0.38176522,-0.051504727,0.22999686,0.13583595,0.048259627,-0.1587139,-0.24423742,0.12808013,0.11003371,0.3631258,0.4236832,-0.04937038,0.28857774,0.5970212,0.82012624,-0.048222993,1.025539,0.24931537,-0.14701594,0.24038452,-0.2023458,-0.41610873,-0.6009919,-0.29376617,-0.4552734,-0.45275006,-0.43527365,-0.062982894,-0.32932037,-0.8868421,0.5156042,0.19635405,0.11031497,-0.11139426,0.32168588,0.2752456,-0.2609816,0.18482053,-0.23036027,-0.32374164,-0.5043259,-0.50622106,-0.5588891,-0.6258026,0.15719324,1.3305222,-0.10520319,-0.11409161,0.08619821,-0.50316066,0.19202684,0.2443911,-0.17530495,0.18652661,0.22085817,-0.13364255,-0.71649814,0.31328672,-0.16058476,0.008579016,-0.47877824,0.35594654,0.9634642,-0.5124696,0.62644655,0.3496599,0.092824765,-0.072883986,-0.5314215,-0.22062106,-0.03925772,-0.2453547,0.6063735,0.28646824,-0.81659347,0.41613296,0.24237694,-0.3005921,-0.6801893,0.60763645,0.12609129,-0.121801436,0.039837252,0.40079466,0.15932085,-0.13815601,-0.23274231,0.32685736,-0.6057745,-0.006891094,0.11619934,0.03580058,-0.05657633,-0.06580842,-0.29586056,-0.7671843,0.04701711,-0.36708865,-0.35239795,0.16569567,0.12996952,0.040866368,0.13321717,0.32250154,0.21766867,-0.38665512,0.15581065,-0.34734908,-0.28990802,0.3562484,0.535131,0.44966635,-0.55383533,0.65360373,0.13166802,0.10031018,-0.038507402,0.17900282,0.44271052,0.22020657,0.42365384,0.14021038,-0.10341495,0.054653764,0.59373564,0.29852965,0.5590434,0.12296334,-0.11738361,0.10697633,0.2081132,0.4876448,0.07665894,-0.16908719,0.030578814,-0.2617626,0.12135446,0.41235685,-0.08374065,0.3161076,-0.06881902,-0.16507734,0.044646725,0.017940441,-0.048066903,-1.5945778,0.55591965,0.34794626,0.56823653,0.5757098,0.0053385496,0.073189326,0.6819089,-0.44026145,0.043822285,0.5255287,0.16105826,-0.24891551,0.5430382,-0.76710266,0.6263007,-0.25583777,0.060079932,0.15360515,0.28214052,0.3867239,1.1113483,-0.16087964,0.09180835,0.1117877,-0.3443699,0.20271112,-0.40455294,0.116579056,-0.55346924,-0.3124152,0.9953874,0.2944634,0.3013654,-0.32302904,-0.009191916,0.14220183,-0.100204855,0.16640663,-0.015568812,-0.061624855,-0.09163741,-0.6965785,-0.13164632,0.6461778,-0.26983282,0.08140138,0.22699505,-0.08778263,0.47925878,-0.2746198,0.06595179,-0.07017299,-0.83249444,-0.10934972,-0.42996156,-0.3949039,0.35459623,-0.47323355,0.16770208,0.122665055,0.09148944,-0.37029037,0.39405492,0.13943143,0.69078964,0.014691249,-0.13378255,-0.12653595,0.2628729,0.4671979,-0.22981149,0.15545554,-0.15233575,-0.12630835,-0.7212556,0.50892144,-0.18941705,-0.29983446,-0.051574882,0.13502279,0.068223216,0.5565761,-0.11785915,-0.2203213,0.04353242,-0.092554174,-0.27128825,-0.14019586,-0.24293447,0.28641596,0.37056676,-0.09148231,-0.026233234,-0.10222257,-0.038528696,0.27560404,-0.1546228,0.43109488,0.14682485,0.04607546,-0.30687007,-0.025953142,-0.057311933,0.5520629,0.22056507,-0.17401518,-0.21494788,-0.03423171,-0.29142395,0.3071588,-0.09759783,0.19289209,0.11097846,-0.37321708,0.8400023,-0.11718687,1.4088593,0.13972269,-0.48136154,0.2641552,0.3734543,0.037176292,-0.08513538,-0.25324723,0.95571727,0.50299615,-0.16291513,-0.069651015,-0.560853,-0.22265698,0.22536252,-0.27041924,-0.34967855,0.103072755,-0.45872986,-0.15191886,0.18465029,0.056381125,0.08453763,-0.15691312,-0.042832028,0.38231996,0.08783541,0.2937508,-0.45982075,0.13413383,0.2729607,0.39314374,0.22519629,0.17473543,-0.37440908,0.27127078,-0.74358207,0.40712366,-0.40679863,0.2517229,-0.28754094,-0.27786553,0.21558636,0.093441665,0.21647187,-0.18648623,-0.3075519,-0.36992523,0.6931146,0.18476033,0.22820465,0.90477926,-0.2941949,-0.18436311,0.13624796,0.42235136,1.002902,-0.32445452,-0.32197955,0.36559716,-0.38121763,-0.71431917,0.44195876,-0.45893374,0.058526617,-0.033946503,-0.29375055,-0.5862344,0.17779191,0.06797382,0.2951989,-0.0055936277,-0.73372006,0.15059383,0.32782796,-0.19803262,-0.38296947,-0.32107732,0.49399328,0.70958894,-0.35528827,-0.537154,0.12999496,0.0673122,-0.18042637,-0.3868319,-0.016482571,-0.25152242,0.3558174,0.10367224,-0.4001796,-0.056600522,0.2364012,-0.44424322,0.048760563,0.17444496,-0.24188411,0.17198472,-0.19771178,-0.11876606,0.96737367,-0.34137467,0.41200206,-0.54733956,-0.6471538,-0.8145282,-0.28859103,0.05850032,0.34757006,0.03419783,-0.6709712,-0.17511575,0.09851912,-0.36600915,0.1367641,-0.64826196,0.6122801,0.15229149,0.10427495,-0.02110284,-0.9738869,0.10607412,0.2363805,-0.039702654,-0.67587775,0.4559004,-0.3635707,0.8548365,0.19782715,0.12981409,0.14675455,-0.5932711,0.36109626,-0.29134375,-0.11483395,-0.53452,-0.0038784842 -784,0.39091012,-0.11636824,-0.4014001,-0.18871556,-0.37841293,-0.0983501,-0.09823801,0.3748882,0.36555624,-0.15340805,-0.20513098,0.0064895046,0.13619402,0.14026658,-0.06652969,-0.65629137,-0.1297238,0.30005744,-0.7170468,0.38750553,-0.53293127,0.19669044,-0.122376986,0.50115174,0.044844992,0.38726002,0.122304134,-0.1126393,0.039866336,-0.0032789537,-0.15323064,0.22739877,-0.6111785,0.16086873,-0.21747361,-0.15016745,0.059372634,-0.4279247,-0.3295227,-0.7850169,0.2357144,-0.87167454,0.56255525,-0.08222695,-0.10819919,0.08663761,0.118691094,0.17828345,-0.33769038,-0.12542666,0.22538784,-0.12756601,-0.20780577,-0.32545117,0.011466933,-0.23344971,-0.3496928,-0.006539366,-0.31389815,-0.24503134,-0.23801433,0.11603914,-0.26564398,-0.008321605,-0.20897582,0.5755096,-0.3602357,0.22906156,0.24083368,-0.2944077,0.09843209,-0.4956612,0.18460009,-0.071153365,0.42433408,0.03516319,-0.26340145,0.30959585,0.20310314,0.42490512,0.18726662,-0.26090777,-0.18265955,-0.08950509,0.028325865,0.3516685,-0.11016774,-0.45862502,-0.077195026,0.055735346,0.034369834,0.24572375,0.008103341,-0.26903012,-0.029807866,-0.20336078,-0.013564242,0.69211245,0.4713904,-0.096950255,-0.36307183,0.2507981,0.6353168,0.2281679,-0.09431505,0.003212307,0.0021689555,-0.4599943,-0.2761945,0.041461054,-0.09751882,0.385264,-0.22627297,0.14247595,0.7520181,-0.08529244,-0.13716047,0.21834376,0.08435876,-0.012726264,-0.39125243,-0.13654287,0.22014956,-0.55709743,0.058674414,-0.18603276,0.6946557,0.19197345,-0.66155523,0.5444789,-0.5264598,0.17531672,-0.028070837,0.6164571,0.62196666,0.5574204,0.31546813,0.70183355,-0.4684915,0.23499237,0.02198167,-0.52080846,0.046561897,-0.1661789,0.2517046,-0.39612085,0.13695128,-0.2965561,-0.0916394,0.074084945,0.056450482,-0.48894247,-0.17214313,0.18079117,0.8183479,-0.26685384,-0.19250892,0.7237801,0.96545845,1.0078434,-0.0129823135,1.25056,0.23564489,-0.16801073,0.16935842,-0.1920497,-0.93715316,0.18309481,0.22619393,0.10086234,0.12065267,-0.006559274,-0.008478497,0.24732466,-0.39972326,-0.054760538,-0.13622051,0.53274673,0.17830369,-0.02785595,-0.39310932,-0.20422485,-0.09885653,0.010499767,0.168874,0.2696217,-0.19190499,0.27300447,0.08497377,1.3485546,-0.010901486,0.069159836,0.124313034,0.52370137,0.28745237,-0.059927948,-0.07867141,0.44424003,0.33936858,-0.040524933,-0.63201916,0.2407223,-0.23888513,-0.3516914,-0.11409458,-0.3423427,0.008070179,0.05596742,-0.3446445,-0.38219234,-0.2011056,-0.26180965,0.44946855,-2.7689137,-0.19432923,0.03864032,0.37542576,-0.27957937,-0.14628972,-0.064880915,-0.57270193,0.13324286,0.12604408,0.51382124,-0.66155094,0.4839247,0.48668405,-0.71620464,-0.15657131,-0.6851978,-0.13566135,0.092550695,0.38959855,0.11229811,0.051092084,-0.3196249,-0.0020505276,0.5208183,0.11017933,0.15949087,0.54560244,0.4205069,0.1254634,0.47954997,-0.047364943,0.63010126,-0.38049555,-0.09105118,0.30346897,-0.2689715,0.22140865,-0.21266249,-0.032284103,0.5949212,-0.38670993,-0.80328995,-0.58034766,-0.20285846,1.0450137,-0.15127014,-0.4282394,0.2663315,-0.43529096,-0.069857016,0.06171512,0.48492032,-0.14365622,-0.09296974,-0.6675696,0.06930464,0.0034797415,0.22738746,0.02733864,-0.07334037,-0.33292645,0.6719106,-0.08630691,0.5064663,0.20893179,0.15340456,-0.18240286,-0.3013511,0.10538171,0.51733357,0.30456248,0.06879421,-0.13930298,-0.18723895,-0.06581014,-0.07081501,-0.21692549,0.7165204,0.7205235,-0.22379184,0.1480231,0.3999037,-0.06733451,0.054500896,-0.19640985,-0.27948868,-0.11078866,-0.06948798,0.34790722,0.81342274,-0.2887588,0.33911362,-0.2072411,0.3788218,-0.009018281,-0.54362303,0.66160816,0.5116828,-0.21875954,-0.059763882,0.34380987,0.44386554,-0.49178806,0.45573848,-0.4876307,-0.11411565,0.50827926,-0.18858293,-0.4761048,0.11478709,-0.14158837,0.070463784,-0.63276356,0.33220598,-0.37643552,-0.59465253,-0.40664718,-0.07876209,-2.6334844,0.19804703,-0.23518206,0.023263456,-0.43392205,-0.09788726,0.12025566,-0.4008376,-0.6594776,0.16334297,0.18365975,0.5104449,-0.077307224,0.23589066,-0.16648963,-0.15509751,-0.3403502,0.1802278,0.10900202,0.2096323,-0.11255833,-0.3974362,-0.11590973,-0.03605057,-0.41559342,0.22639953,-0.6423386,-0.29169002,0.039963,-0.55965906,-0.18939056,0.5643341,-0.2859102,-0.04916122,-0.37627771,0.053429116,-0.23327824,0.16058563,-0.0153052015,0.14779197,0.059650753,-0.09733778,0.053564243,-0.18740462,0.4147286,-0.141958,0.3110464,0.066874266,0.10091322,0.10783938,0.27604643,0.8330482,-0.13170591,1.0320705,0.3427399,-0.043144464,0.38510847,-0.210336,-0.47851682,-0.40306714,-0.18648939,0.0731711,-0.36250004,-0.29310223,0.17916822,-0.45197186,-0.7540516,0.4607792,0.071957774,0.25887305,0.083673,0.08908266,0.5236212,-0.18453439,0.14855807,-0.059806645,-0.10579351,-0.5994099,-0.17283419,-0.4376964,-0.42071542,-0.088114016,0.9026499,-0.29102865,0.09132665,-0.028341817,-0.27782372,-0.022404347,0.17659414,-0.09738462,0.38724682,0.5351183,-0.11216299,-0.61250913,0.35039705,-0.04230846,-0.16186813,-0.4684171,0.25722128,0.54453516,-0.74431485,0.70387065,0.25767884,-0.026449624,-0.23950389,-0.55411434,-0.36413437,-0.06178931,-0.12141435,0.40599802,0.23915865,-0.9283477,0.4664312,0.40480846,-0.36305556,-0.7227998,0.1629401,-0.041930046,-0.3244464,-0.15529148,0.2984101,0.021741867,-0.07272528,-0.22301184,0.14937215,-0.2954608,0.2033527,0.02541407,-0.09230258,0.092365764,-0.08687762,-0.2992733,-0.7964445,-0.16582206,-0.44914407,-0.27000934,0.17644612,0.03437569,-0.029093772,0.05507353,0.13655089,0.4532109,-0.24003531,0.08242129,-0.055830438,-0.3997293,0.22541033,0.34344217,0.44411802,-0.45752105,0.44778094,0.035842996,-0.18157962,0.16332221,0.105903015,0.3308349,-0.045347717,0.3402601,-0.03568968,-0.009964307,0.29008156,0.8986437,-0.014888125,0.43032926,-0.12081764,0.039144795,0.60222596,-0.03355672,0.29857635,-0.033046193,-0.49019456,0.1501175,-0.15566477,0.21925819,0.49425572,0.3453572,0.34750667,0.07516842,-0.300404,-0.15432985,0.19664751,-0.023396948,-1.1915476,0.44445714,0.21034661,0.9641946,0.42345312,0.09325911,-0.14182474,0.80405796,-0.1035161,0.24090706,0.41178486,-0.05294209,-0.33197862,0.5981234,-0.5949971,0.35743645,-0.13223705,-0.1842546,0.20436427,0.14883144,0.25972328,0.7781266,-0.28134456,-0.03189934,-0.086530015,-0.12034964,0.1144229,-0.36569905,-0.037753556,-0.39469284,-0.4233469,0.58315516,0.4601424,0.26146647,-0.2529783,-0.03632949,0.061007712,-0.047190282,0.16287933,-0.047971506,-0.11918598,0.17544906,-0.47927102,-0.10118238,0.5488483,0.1461169,0.120000705,-0.27129027,-0.18421146,0.108633205,-0.23554964,-0.12765215,-0.15733527,-0.662103,0.1447048,-0.054795083,-0.3588218,0.48420253,-0.027524425,0.0372688,0.20139514,0.0143170785,-0.17882249,0.33897406,0.07237581,0.7088279,0.08880717,0.015970655,-0.4740286,0.20215723,0.19529973,-0.20840658,0.062173247,-0.37623698,-0.044597704,-0.43110222,0.5311798,-0.065502845,-0.4089397,0.20979951,-0.21010126,0.08131782,0.5803768,-0.08496751,-0.15162863,-0.090322375,-0.15539987,-0.41596976,-0.103174224,-0.2293708,0.3128681,0.3190914,-0.18291856,-0.1974239,-0.39009863,-0.27476507,0.5583073,0.07076285,0.36007348,0.18731894,0.036574095,-0.09819467,-0.014580724,0.1627717,0.54534096,0.14509235,-0.08657237,-0.25343525,-0.21807925,-0.19004975,0.24105383,0.010645202,0.17935666,0.03895681,-0.25348905,0.6483798,0.17281607,1.105098,0.03940838,-0.16832717,0.13673699,0.52881104,-0.06802253,0.012288502,-0.54835755,0.79341686,0.37967572,-0.08076812,0.030227793,-0.4284099,0.04587111,0.25360963,-0.27794415,-0.05660928,-0.06671286,-0.4990215,-0.23123562,0.23172317,0.1276996,0.14439295,0.018713921,-0.06196808,0.026657883,0.08481329,0.4376076,-0.5257694,-0.15655603,0.1302147,0.16726455,0.026532887,0.17557652,-0.29973707,0.34343424,-0.59542036,0.136521,-0.38579777,0.08576916,-0.3172307,-0.3148666,-0.037142508,-0.050640214,0.3089722,-0.29446468,-0.47679403,-0.19799384,0.28410244,0.17848226,0.23031954,0.5558484,-0.24169865,-0.0052518314,0.22428575,0.65997505,0.7814253,-0.15814862,-0.043140743,0.273686,-0.3875707,-0.5938869,0.48148173,-0.18861456,-0.09360405,-0.08603001,-0.1969907,-0.4509131,0.17279008,0.24698544,0.01777884,-0.01990907,-0.66983944,-0.118577935,0.32898453,-0.20711124,-0.1599898,-0.18281339,0.24738148,0.74767536,-0.17298838,-0.30180734,0.0906424,0.13899772,-0.2413613,-0.4785377,-0.10570471,-0.37640795,0.32531217,0.09793835,-0.2632206,-0.14979677,0.084455915,-0.50118864,0.10823153,0.1143809,-0.27284724,0.1857682,-0.16918333,-0.009707336,0.8165325,-0.28508538,0.068076506,-0.49264178,-0.51958364,-0.83888286,-0.24748246,0.16612825,0.18815207,0.0021782687,-0.62768346,-0.13230935,-0.09403313,-0.1691806,0.18368004,-0.4558063,0.3996131,0.04886531,0.4084747,-0.22996648,-0.9599782,0.1240016,0.22151402,-0.24396612,-0.55461806,0.55161893,-0.044117175,0.7499735,-0.031315763,-0.0716359,-0.07379014,-0.29011515,0.018044386,-0.3831062,-0.15001388,-0.5376583,0.10346864 -785,0.27539346,-0.4561863,-0.45330182,-0.14884257,-0.16706015,-0.06973816,-0.18449688,0.5960006,0.2587521,-0.23967405,-0.13144924,-0.30254447,0.07230399,0.40466443,-0.15762,-0.44509488,-0.19961096,0.1404946,-0.53303105,0.61442304,-0.27023786,-0.07678681,-0.3114488,0.44554988,0.32000914,0.3706536,-0.11867917,0.042778492,-0.11680731,-0.23229598,-0.20337147,0.1954491,-0.5436878,0.21498471,-0.09256583,-0.08478533,-0.08534882,-0.7025758,-0.6386589,-0.620017,0.2585139,-1.0049114,0.49889585,0.17246924,-0.1688518,0.1983541,0.2756035,0.24000931,-0.3167061,-0.13022117,0.29370585,-0.15220459,0.03606827,-0.3108283,-0.29304454,-0.40981427,-0.47691917,-0.21664204,-0.29484302,-0.42297745,-0.4217335,0.07782397,-0.30632532,-0.035000943,0.0050993618,0.6652882,-0.45333716,0.44541338,0.17275019,-0.17004639,0.21918206,-0.5618889,-0.18054676,-0.12785432,0.23818554,-0.14370638,-0.2980032,0.298431,0.1702013,0.09684773,-0.17916211,-0.0012919361,-0.29230368,-0.1979025,0.27100435,0.5528959,-0.15438543,-0.56203884,0.012419838,0.052586067,-0.22763854,0.27241853,0.14806989,-0.47922114,-0.11971796,0.07591825,-0.07891798,0.56762457,0.37848932,-0.023734044,-0.11097245,0.28679675,0.44605646,0.30482206,-0.26784006,-0.13984413,0.098575786,-0.53360516,-0.12430113,-0.01817726,-0.15530866,0.6080637,-0.10201896,0.18498144,0.6048305,-0.111393645,-0.21011992,0.097849004,0.05002167,-0.0570676,-0.3640916,-0.15943259,0.28607094,-0.2089122,0.27434787,0.004050396,0.6083143,0.25664586,-0.6517554,0.40366924,-0.61590636,0.23172288,-0.09693611,0.4479089,0.6940426,0.47774127,0.5184714,0.60114247,-0.31855345,0.24780248,0.109050184,-0.4107459,0.13471794,-0.28268525,0.010197,-0.6009707,-0.102706045,-0.15276664,-0.13401876,0.22167712,0.42961243,-0.43099403,-0.011708135,0.3378381,1.1541255,-0.19835873,0.044434786,0.73390573,1.0994763,0.79610306,-0.046625808,1.0208023,-0.011043307,-0.25238886,0.36063942,-0.046201706,-0.83789724,0.26443842,0.38909826,-0.14914638,0.13559856,0.20209788,0.06256037,0.35754213,-0.5427878,0.14469413,-0.08881989,0.04079517,0.35941574,-0.2817918,-0.42176282,-0.08878922,-0.24208283,-0.029247366,-0.017796336,0.09503224,-0.18681464,0.6549199,-0.009627765,1.9695302,0.15044892,0.041362904,0.040604834,0.6843958,0.120905355,-0.18288635,-0.0062907417,0.5056042,0.17141019,0.25468433,-0.44409475,0.28084376,-0.16522992,-0.41307995,-0.12547038,-0.44713247,-0.24269797,-0.06407429,-0.33442315,-0.25952175,-0.16023764,-0.1062422,0.4407756,-3.063423,-0.028852792,-0.11573476,0.42032477,-0.07198718,-0.26567715,0.05297455,-0.41042945,0.40950754,0.340488,0.5823907,-0.665752,0.25447312,0.43920222,-0.57268137,-0.22298121,-0.4942753,-0.06482217,0.06688089,0.5433514,-0.048417687,0.0101536065,0.18672985,0.2690228,0.41973498,0.17284259,0.2129322,0.41929254,0.50970566,-0.15997157,0.65957046,-0.17360134,0.389793,-0.18120338,-0.22845294,0.18733606,-0.31212586,0.3148156,-0.03990483,0.089077204,0.5978818,-0.44592163,-0.8517443,-0.60451883,-0.053669084,0.93580383,-0.1866724,-0.54906887,0.29214838,-0.6202811,-0.24664563,-0.18205261,0.6895518,0.022568054,0.07126364,-0.80147165,0.0032578816,-0.13693063,0.18866946,0.053074136,-0.25600785,-0.48657724,0.7933977,0.0025168548,0.56653255,0.3393028,-0.06236081,-0.4679063,-0.47718734,0.06614467,0.60266477,0.25627425,0.17218289,-0.19526888,-0.17352258,-0.28891438,-0.23117161,0.009692144,0.7107005,0.35600033,-0.17524387,0.20429382,0.33221424,-0.13005643,-0.14051731,-0.21543576,-0.22860573,-0.10775514,0.04648241,0.43687162,0.82989955,-0.1258186,0.49602917,0.013753536,0.3744066,0.06687112,-0.30861482,0.28233653,1.2694682,-0.09300206,-0.44546083,0.43043077,0.63443464,-0.38168794,0.35752735,-0.3624287,-0.06372475,0.5329241,-0.065432124,-0.7016559,0.36233762,-0.18108319,0.018782942,-0.6138289,0.1627111,-0.13436888,-0.7049518,-0.68373555,-0.2360621,-3.5365913,0.15597205,-0.2773968,-0.45555055,-0.09314311,-0.17840418,0.029363692,-0.62278616,-0.6114754,0.20306325,0.03299304,0.54596,-0.20712085,0.08304939,-0.23046924,-0.049787,-0.15545344,0.2641212,0.22948171,0.35867584,-0.19732514,-0.4974414,-0.36567804,0.009164878,-0.48661795,0.030568289,-0.70317554,-0.28526774,-0.05981586,-0.69406503,-0.17400867,0.6815899,-0.30259514,-0.106979206,-0.35057318,0.029364131,-0.13405873,0.16768862,0.24722219,0.17944895,-0.127266,-0.06297309,0.05763185,-0.23931265,0.22035833,-0.008035633,0.47367314,0.17680925,0.040987406,0.31352732,0.2720769,0.59644,-0.077600844,0.83643204,0.4513589,-0.10105768,0.23812047,-0.25459364,-0.2335098,-0.4613868,-0.27016836,0.16680239,-0.45700186,-0.530588,-0.07836618,-0.41240683,-0.6887203,0.45916808,0.09966564,0.048569392,0.17086549,0.076945215,0.5864032,-0.13601631,-0.08420097,0.022393221,-0.136272,-0.69889396,-0.18501228,-0.44625387,-0.5138129,0.16764016,0.7518324,-0.2126974,0.07251482,0.21798147,-0.4923108,-0.1008009,0.42306277,-0.17788845,0.2775102,0.411506,-0.08076023,-0.61125046,0.39414436,-0.18454951,-0.23709507,-0.7111814,0.40140608,0.49824288,-0.5902545,0.8971649,0.20663266,0.033265408,-0.39848632,-0.31664917,-0.3357079,-0.40764225,-0.068596594,0.32953623,0.2447992,-0.7333699,0.22977538,0.26212072,-0.15112498,-0.5841522,0.56169087,-0.2333632,-0.37744448,0.085479945,0.19802247,-0.0034441839,-0.013200497,-0.15129782,0.39934948,-0.24235953,0.20496124,0.15509552,-0.0036890453,0.11607237,-0.08312083,-0.12592334,-0.72106194,0.112968184,-0.3639574,-0.40038937,0.44509342,0.058667313,0.13701287,0.108794734,0.043710556,0.15717982,-0.09339286,0.08701248,-0.13127194,-0.34682667,0.23379742,0.4501814,0.62313014,-0.62987506,0.6211132,0.06048986,-0.10137477,0.3091758,0.13295569,0.24266766,0.0908366,0.48943225,0.22574963,-0.14628054,0.12628435,0.86554545,0.23953395,0.58346266,0.1000717,0.13797973,0.2571866,-0.03474922,0.16020466,-0.035147797,-0.7326124,0.2914252,-0.4743837,0.19636863,0.34501755,0.20008378,0.25560215,-0.11963945,-0.4463441,-0.024398988,0.39720333,0.2910663,-1.4095963,0.35166097,0.30058756,0.9113355,0.3244828,0.10212958,-0.06367483,0.9135658,0.062147032,0.0034297137,0.42489377,0.099648066,-0.49613392,0.5041617,-0.70688087,0.44430408,0.092141025,-0.07845351,0.058130346,0.025150197,0.36118534,0.6463223,-0.23417763,-0.16825952,0.10491243,-0.2505925,0.14419764,-0.55159396,0.12131465,-0.38262376,-0.32513416,0.52913,0.72163016,0.32290822,-0.1643727,0.083262414,0.0101001095,-0.20163964,0.080137156,0.1302236,-0.14632693,-0.057452705,-1.0263054,-0.010628533,0.5027845,-0.3106232,0.2284564,-0.0834457,-0.056489263,0.4242486,-0.18872947,-0.18788747,-0.11893411,-0.68711096,0.1676309,-0.25305614,-0.6423064,0.5614813,-0.008776524,0.26192567,0.18727528,0.039694645,-0.19194533,0.68549234,-0.04389054,1.1231312,-0.0037276202,-0.076859504,-0.4473531,-0.024023306,0.18193808,-0.11698601,-0.001011946,-0.47824895,-0.0034883455,-0.549489,0.44035938,0.07438037,-0.5299524,-0.011226719,-0.07543453,0.08959249,0.61071736,-0.04375063,-0.26506707,-0.07478496,-0.17864864,-0.35847858,-0.17328966,0.00093961303,0.38513353,0.23404837,0.14760302,-0.11038776,-0.029597439,-0.20834993,0.4665598,-0.11465094,0.5928771,0.30867922,0.18191256,-0.097861536,-0.2551416,0.06201562,0.67118114,-0.03757452,-0.096421555,-0.07273483,-0.54442924,-0.42405102,0.1565432,-0.036555465,0.6130865,0.25235584,-0.20011388,0.42860925,-0.2315559,1.182856,0.018618481,-0.43783024,0.29971,0.51068336,0.12702155,-0.12403024,-0.23098755,0.76794434,0.5785676,0.04746087,-0.028736364,-0.36835384,0.01547589,0.1544875,-0.08808224,-0.16224724,0.014115805,-0.6461018,0.03322042,0.22197485,0.22573766,0.49294835,-0.18390408,0.114759095,0.2218109,-0.16097409,0.0074173375,-0.31660262,-0.19221759,0.30402577,0.028362973,-0.0013841038,-0.049452838,-0.5788597,0.42562434,-0.17527896,0.060170542,-0.47282392,0.19403262,-0.34348595,-0.099574976,0.1672489,-0.21083091,0.3905614,-0.28976718,-0.10520198,-0.36602834,0.54459405,0.23330455,0.10516913,0.5396087,-0.17229287,0.16141377,0.0069805044,0.49969718,0.76748884,-0.38951454,-0.087120675,0.33215868,-0.51601136,-0.4823968,0.323827,-0.3039281,0.16558112,0.25630826,0.04914184,-0.61310804,0.1885088,0.019531988,0.031717952,-0.009695023,-0.7183806,-0.17128742,0.20058307,-0.24520636,-0.14841263,-0.39473674,0.023967884,0.56052107,-0.1972095,-0.19020882,0.11452599,0.06512852,-0.09602538,-0.3371266,0.04035296,-0.27972502,0.28694776,-0.1580513,-0.38731134,-0.26478308,-0.12773667,-0.32515806,0.31556016,-0.03319572,-0.35185674,0.19279355,-0.10670545,-0.42373314,1.0442277,-0.3731515,0.1091116,-0.5375626,-0.5086355,-0.6704444,-0.26018998,0.28618166,-0.07218574,-0.021686923,-0.5685879,-0.11461652,-0.044769134,-0.2175578,-0.18772869,-0.42934468,0.46461618,-0.020700349,0.59486747,-0.2352729,-0.8785983,0.30396658,0.16325511,-0.072520226,-0.84971434,0.66678584,-0.16120078,0.7024582,-0.030334987,0.2671475,0.3215336,-0.33198872,-0.303134,-0.21805133,-0.30523193,-0.56994116,0.15815337 -786,0.14054893,0.06729384,-0.44531268,-0.10247876,-0.077098556,0.20363688,-0.112527,0.40741414,0.17723076,-0.31647044,0.018470641,-0.09752679,0.0015962124,0.34368795,-0.07541207,-0.39237425,-0.046570618,0.12940148,-0.53009623,0.5123261,-0.3551456,0.12356619,-0.17355211,0.39376453,-0.028398527,0.26763448,-0.006383794,-0.11887999,-0.16327105,-0.15372394,0.10952229,0.37825987,-0.51486886,0.056291055,-0.28000388,-0.26320085,-0.06420195,-0.31928822,-0.4916577,-0.56371725,0.21722928,-0.7135194,0.43488815,0.23677275,-0.19700535,0.3686321,0.17295538,0.2297581,-0.033728667,-0.1357137,0.16435285,-0.11985638,-0.001506056,-0.18598168,-0.29925418,-0.5920457,-0.61600965,0.03722865,-0.54139024,-0.18657161,-0.20128444,0.09859376,-0.19743206,-0.1289028,-0.1723155,0.35068575,-0.4638734,0.070158206,0.16134325,-0.16265205,0.19443342,-0.43474856,-0.19783469,-0.06511496,0.24189267,-0.20324533,-0.060157843,0.22084484,0.15942876,0.404524,-0.24159907,-0.08205072,-0.37978426,-0.077625476,0.25947446,0.43545744,-0.34079245,-0.36701843,-0.048578538,-0.059444714,-0.059043758,0.054607768,0.026472261,-0.15604898,-0.055158466,0.061843853,-0.16932002,0.5229116,0.39116526,-0.4037954,-0.369352,0.38173643,0.525001,0.2086353,-0.34815937,-0.18498819,0.047739368,-0.44196683,-0.13408576,0.09714009,-0.18602021,0.41120392,-0.055401307,0.16001524,0.549779,-0.17711513,-0.061423074,-0.027592035,-0.094244465,0.124082096,-0.1131152,-0.11113421,0.25014114,-0.2611951,0.15332112,-0.16737078,0.5272584,0.019466281,-0.6731402,0.36104897,-0.69727314,0.036049444,-0.015777767,0.41568178,0.5529831,0.38556352,0.1310228,0.47589016,-0.15361245,0.061889905,-0.0020813984,-0.15262246,0.09147058,-0.299815,-0.078754164,-0.49591208,-0.029717615,0.026550794,-0.14215954,0.06946214,0.39334986,-0.5020805,-0.13910505,0.3938497,0.92940533,-0.19505776,-0.17540535,0.5000731,1.0483782,0.77894646,-0.048247986,0.92559046,0.1046627,-0.27763873,0.3330891,-0.3707964,-0.72750765,0.18815246,0.20079765,-0.11739842,0.30162773,0.09352321,0.15275313,0.3252015,-0.3626019,0.19374405,-0.15389837,-0.11287493,0.20253031,-0.0058556623,-0.26973468,-0.1344588,-0.115929775,-0.1460173,0.24958505,0.22180966,-0.2477181,0.26973853,0.061466448,1.3904747,0.014306584,0.1147782,0.15561175,0.5598945,0.09124548,-0.10856698,-0.14756487,0.4522446,0.21329705,0.2224655,-0.40775055,0.26610562,-0.20004381,-0.5305934,-0.20379564,-0.3820073,-0.15350987,0.0655205,-0.48536536,-0.0471823,-0.021766694,-0.31331402,0.38993493,-2.9025338,-0.08466838,-0.09764361,0.38467497,-0.16014542,-0.19915397,-0.28455606,-0.31612545,0.23919964,0.30011296,0.3606971,-0.52882814,0.4835196,0.45950052,-0.4701437,-0.15673581,-0.4656934,-0.14070383,-0.061713453,0.38651133,0.06882522,0.13256733,0.26184392,0.2690424,0.2668322,-0.097442694,0.12244094,0.17098565,0.37485832,-0.013459883,0.41386846,-0.06992168,0.48181802,-0.32399982,-0.24891853,0.3285753,-0.41199192,0.33235198,-0.11154699,0.16657685,0.25583452,-0.33548334,-0.90069515,-0.48001117,-0.19436793,1.3120085,-0.19057207,-0.3418476,0.122580394,-0.44863877,-0.42496854,-0.16148522,0.53243536,-0.10086838,0.10304059,-0.76151854,0.0936206,-0.2518119,0.2759182,-0.0020577523,0.13843797,-0.44665474,0.53432995,-0.025589813,0.41912094,0.28912994,0.17938717,-0.3463851,-0.4637246,-0.12816696,0.7383142,0.15265466,0.0836317,-0.12322174,-0.3281162,-0.27163607,0.074395895,0.122750305,0.5813762,0.38249794,-0.020765692,0.015283831,0.23216584,-0.04929849,0.059941106,-0.19905035,-0.28624955,-0.017210888,0.001431414,0.439344,0.5425634,-0.30480686,0.37677225,-0.017134795,0.29353556,-0.2683759,-0.31121683,0.33562046,1.059364,-0.12048088,-0.1929324,0.5813746,0.61134803,-0.3278931,0.32365972,-0.60670394,-0.32502905,0.40541735,-0.22465384,-0.4042599,0.18652143,-0.35029227,0.1516079,-0.94780576,0.24515319,-0.32434773,-0.38439152,-0.6018016,-0.062128115,-3.7412703,0.16096167,-0.1465058,-0.18353598,-0.11070112,-0.017957244,0.21445915,-0.4631179,-0.48401532,0.06727901,0.088188164,0.49122503,-0.1566278,0.09673776,-0.362822,-0.32059446,-0.06426927,0.3629698,0.25795585,0.34633043,-0.18423054,-0.54120237,-0.012542435,-0.14898147,-0.3077425,-0.032931503,-0.52889293,-0.3567093,-0.030993741,-0.51063865,-0.1262795,0.6448507,-0.5011864,0.006722857,-0.2723187,0.014602693,-0.0045137745,0.24060278,0.15203443,0.15519246,0.12885895,-0.031967137,0.046748523,-0.26021123,0.29947996,0.040413387,0.38305804,0.38561532,0.117646806,0.12346904,0.65201885,0.48438302,-0.004975387,0.8376098,0.50208694,-0.07377105,0.26003915,-0.3255956,-0.14545654,-0.5134381,-0.26826215,0.03601824,-0.3375335,-0.5973993,-0.06420663,-0.22402573,-0.7425667,0.5339941,-0.17224848,0.01682915,-0.06283651,0.29689178,0.47108263,-0.18438026,0.0041717803,-0.0706618,-0.10981028,-0.43599877,-0.2754051,-0.49207592,-0.33964792,0.091703735,0.93973583,-0.13869019,0.116516896,0.047538675,-0.2596024,0.0055908635,0.20587336,0.2053013,0.24462591,0.5002378,-0.06462653,-0.55337113,0.34243724,-0.1922358,-0.07514548,-0.5957287,0.24962112,0.5327752,-0.64962643,0.6080263,0.4570798,0.023321854,-0.1972045,-0.45097628,-0.18987314,-0.046311993,-0.12997441,0.22560486,0.11294281,-0.769055,0.2897276,0.17722093,-0.35443154,-0.6937642,0.7282134,-0.07709152,-0.24448732,-0.022297055,0.31682613,0.027093993,-0.073973216,-0.1407622,0.37874287,-0.22620907,0.13981542,0.14572635,0.01351807,0.24857377,-0.23248653,0.054989737,-0.7413479,0.13635308,-0.46825442,-0.31193453,0.52184,0.03189988,0.106576264,0.3246673,-0.14074369,0.22903578,-0.1629405,0.037575193,0.006051355,-0.32925743,0.35530323,0.24543817,0.54418254,-0.46826833,0.43590754,-0.024903717,-0.10444355,0.16185568,0.066784635,0.50721467,-0.08995664,0.45983595,0.14171025,-0.160776,0.16455613,0.8905238,0.3278854,0.46034935,0.025069613,-0.1344597,0.2807189,-0.041429736,-0.030281832,-0.16858919,-0.55750865,0.0022278854,-0.056793004,0.18261804,0.2947071,0.024369821,0.18985412,-0.22236228,-0.26199088,0.029369112,0.3151138,0.21533254,-1.0887288,0.28681812,0.18514027,0.7486462,0.38384858,0.16977657,0.18235806,0.5901845,-0.2456195,0.095882945,0.44883198,-0.053902593,-0.48126823,0.5169016,-0.6674437,0.5220147,0.046913896,-0.028589372,0.051771265,-0.18326221,0.35102513,0.7416902,-0.19293877,0.005958438,0.18078753,-0.35024714,0.14202984,-0.28207344,0.24520978,-0.48364624,-0.08972001,0.61203945,0.6289044,0.33000892,-0.108369485,0.057829168,0.026218917,-0.0916914,0.088637464,-0.018601907,0.24252574,0.030703578,-0.7514934,0.009331162,0.5629464,-0.11406176,0.12354891,0.16412571,-0.28244555,0.38334805,-0.19854693,-0.08123257,-0.0678124,-0.48530453,0.052369278,-0.21943879,-0.45618486,0.5985847,-0.28406158,0.3759536,0.14249328,0.04649598,-0.37428984,0.41219944,-0.118728705,0.62229604,-0.052467935,-0.117574885,-0.3438707,0.041974925,0.10879891,-0.17254968,-0.12886484,-0.3626011,0.17534313,-0.35799697,0.2287781,-0.17179203,-0.3112889,-0.21421883,-0.07874485,0.12871854,0.59611255,0.10444258,-0.116151996,-0.028396131,-0.008228777,-0.29393202,-0.011717958,-0.06763624,0.1664643,0.16962095,-0.097334936,-0.25197592,-0.28001127,-0.26098016,0.35005513,-0.038169783,0.47875276,0.5026366,0.24617803,-0.16086248,-0.10955219,0.20845763,0.389074,-0.14592631,-0.051105466,-0.111844696,-0.27753407,-0.2849917,0.37267682,-0.1981574,0.23382524,0.27990144,-0.26298815,0.6045324,-0.27116507,1.0075462,0.09565858,-0.31848162,0.15167175,0.36569008,0.055778634,0.015652562,-0.41363505,0.8451014,0.59271187,0.05880622,-0.20047382,-0.2316887,-0.023977509,-0.038436074,-0.16701046,-0.23356196,-0.014108394,-0.5863841,-0.035167508,0.19102894,0.24874744,0.31271315,-0.10308717,0.09602264,0.036372874,0.047949515,0.17816375,-0.4900601,-0.29300728,0.41170666,0.38577127,0.0018210517,0.09877091,-0.3978892,0.3238897,-0.29868957,-0.102836765,-0.2933512,0.11797859,-0.28633884,-0.19450796,0.17305449,-0.07316458,0.37958795,-0.17924477,-0.23699652,-0.23401482,0.28880993,0.18420635,0.04471177,0.49867114,-0.107540466,0.06493995,0.07225578,0.5189489,0.86839265,-0.3024762,-0.1043907,0.2955346,-0.25129032,-0.53790474,0.20935582,-0.48174447,0.28013235,0.0056809997,-0.07179896,-0.44442144,0.26497683,0.10060169,-0.06474868,-0.061005395,-0.59183055,-0.16297889,0.11149107,-0.3358646,-0.22364855,-0.27536863,0.1192384,0.65493786,-0.2517101,-0.17531474,-0.0139255095,0.31790495,-0.1856329,-0.46450573,0.1317642,-0.36838955,0.21031342,0.110157356,-0.433323,-0.09509474,0.054534942,-0.41561562,0.3340092,0.39371258,-0.39940163,-0.04465699,-0.18582214,-0.0067902845,0.8390088,-0.16234848,0.07389535,-0.27424976,-0.434144,-0.8221669,-0.33086637,0.28359616,0.19445112,-0.06616745,-0.41931763,0.110925145,-0.03792606,-0.41185623,-0.0375325,-0.43803033,0.36773926,0.110534675,0.3831284,-0.14307973,-0.7446144,0.09233659,0.0999946,-0.07318391,-0.6137989,0.4435595,-0.18001522,1.0091631,0.023143748,0.14304934,0.28582385,-0.38808537,-0.16705789,-0.11162858,-0.083282426,-0.61992466,0.014626116 -787,0.50975907,-0.11692552,-0.5293357,-0.17047611,-0.13866809,0.0058848346,-0.05214997,0.5050312,0.1627084,-0.7788993,-0.22090481,-0.24324703,-0.15015097,0.24681295,-0.23697637,-0.7149329,0.08653508,0.07652952,-0.4898999,0.58813226,-0.43927532,0.3472007,0.1757638,0.3600881,0.09100238,0.33939984,0.17108425,-0.20554471,-0.2918643,-0.21860361,0.029397888,-0.14613667,-0.5765298,0.27113858,-0.20436239,-0.33881196,0.015349252,-0.47063756,-0.38295445,-0.719923,0.3724086,-0.7803485,0.43324462,0.06654156,-0.1879901,0.048024688,0.16820347,0.29635566,-0.2859479,0.07556778,0.2274784,0.16210197,-0.04213079,-0.11062957,-0.1942523,-0.24570899,-0.55681723,0.12971509,-0.35621628,-0.20468815,-0.10191379,0.16313319,-0.2395427,0.12512287,-0.16177991,0.6184974,-0.3514754,-0.11575671,0.39539322,-0.22514793,0.191143,-0.62032986,-0.12122256,-0.15930046,0.12183813,-0.17312945,-0.062395446,0.34104648,0.24419503,0.61507356,0.14364266,-0.22027132,-0.16753975,-0.06862573,0.16392398,0.39264324,-0.15983225,-0.42952397,-0.1317767,-0.06663242,0.15063168,0.121352114,0.24649787,-0.37278193,0.056069504,-0.028581722,-0.3511046,0.24348368,0.5818175,-0.3046384,-0.19694008,0.19707419,0.45105055,-0.0025199908,0.036022417,0.066247895,0.053798348,-0.5029993,-0.28124088,0.16261615,-0.24570341,0.49797276,-0.10252575,0.25209993,0.6329799,-0.19737785,0.18117897,0.19763541,-0.03215782,0.014545091,-0.44137335,-0.37363392,0.08796946,-0.55424196,-0.002359731,-0.29480645,0.9064707,0.2165382,-0.63490635,0.3490711,-0.52222073,0.12430234,0.0029456785,0.44034502,0.5724572,0.36464167,0.15877834,0.7944568,-0.501622,0.018598905,-0.24113014,-0.26444647,-0.013965478,-0.028504154,0.14156958,-0.27694163,0.054887448,0.022221863,-0.035272088,-0.11055093,0.3872191,-0.50450236,-0.012096643,0.04455384,1.0218127,-0.27235976,-0.066111736,0.7806941,0.9990174,0.94467133,0.06300067,1.4010847,0.15225856,-0.24767883,0.31435612,-0.28428397,-0.7833422,0.3382893,0.33142963,0.15035029,0.12374934,0.11939788,-0.0018544154,0.41287643,-0.43324167,0.2306854,-0.23765548,0.36610684,0.019273186,0.0023380262,-0.33882815,-0.212636,0.0065853777,-0.08378242,0.0911962,0.17177026,-0.20106734,0.10793515,-0.056152273,1.6938541,-0.16353948,0.22109506,0.1525204,0.41056162,0.16718194,-0.0025980857,-0.05669439,0.11839853,0.18960033,-0.04807082,-0.57428056,-0.02213235,-0.31440187,-0.588418,-0.16115357,-0.2503554,-0.066824265,-0.14586213,-0.54613364,-0.1841418,-0.1192465,-0.33715126,0.26971164,-2.4717238,-0.2727642,-0.2078805,0.40051433,-0.48050764,-0.38019404,-0.12236003,-0.47349593,0.63583034,0.36965227,0.45249534,-0.6074747,0.5165248,0.4580066,-0.33056858,-0.1285825,-0.58023626,0.014299742,-0.010678725,0.1197407,0.0046854233,-0.28449315,-0.23324992,0.01982024,0.45819637,0.0065326607,0.07877922,0.3195011,0.30991656,0.20918195,0.5352067,-0.040831707,0.59871584,-0.4857834,-0.05773457,0.17955919,-0.4900671,0.15230717,-0.036566652,0.15796518,0.30897936,-0.7226906,-0.64045817,-0.7911715,-0.50961155,1.1468792,-0.05686425,-0.2584893,0.3674585,-0.34952587,-0.1923753,-0.11215441,0.4999182,-0.034931753,0.032576554,-0.7699366,-0.05876842,-0.18783246,0.24832503,0.05008898,0.10118626,-0.41034573,0.7709738,-0.098529264,0.4257742,0.43170017,0.061180804,-0.26472247,-0.39848927,0.093203254,1.1962986,0.42809242,0.21040048,-0.057553887,-0.16253488,-0.46864393,-0.19900724,0.023996463,0.40342483,0.8011611,-0.0070158592,-0.06307125,0.33940682,0.06310104,0.041152116,0.057900656,-0.4889855,-0.2929084,-0.07204299,0.6025847,0.45124266,-0.20512426,0.3391406,-0.24258687,0.42052084,-0.34130576,-0.31387076,0.5017776,0.7207632,-0.20567785,-0.22551247,0.5951156,0.43352604,-0.341163,0.4883997,-0.52476823,-0.41670594,0.34509033,-0.08221625,-0.50277174,0.14427672,-0.3097871,0.12974916,-0.95282567,0.36712056,-0.43125767,-0.36968654,-0.45773724,-0.4390128,-3.2004466,0.17827842,-0.2455268,-0.10012285,-0.15294848,-0.0532338,0.1352872,-0.39946073,-0.71435964,0.13779533,-0.016241524,0.5869871,0.06389095,0.22310843,-0.11026677,-0.13780704,-0.34743047,0.12809269,0.11938788,0.24087487,0.09783204,-0.35081053,-0.13037094,-0.15268545,-0.4021748,0.22375838,-0.6906144,-0.5837864,-0.22909093,-0.6939722,-0.33100125,0.7890101,-0.34480256,0.039908856,-0.16183722,-0.0368902,-0.20821384,0.4660031,0.06895518,0.17617784,0.0018673709,-0.14992833,-0.24059217,-0.3544895,0.13415283,0.18364432,0.44835705,0.37326166,-0.1683127,0.23226707,0.39544398,0.70797664,0.062000982,0.6433247,0.3331574,-0.150852,0.43300954,-0.36463112,-0.27159458,-0.38588265,-0.19001244,0.06598985,-0.3153791,-0.42185697,0.12719129,-0.45869273,-0.7572569,0.3657972,0.08548762,-0.16575935,0.09409727,0.08366007,0.29043484,-0.08796732,-0.007345659,-0.0637845,-0.038180728,-0.6079572,-0.3673349,-0.5790556,-0.38364896,0.16725568,1.1182457,-0.07619517,-0.061260086,0.08007058,-0.15917332,0.09852187,-0.0977759,-0.005753317,0.052575674,0.4967479,-0.028392782,-0.63077307,0.42720464,-0.052699387,-0.2861076,-0.4191554,0.20528446,0.74542713,-0.7520198,0.65699065,0.3746808,0.20134732,-0.1273722,-0.37774298,-0.13255082,-0.043827005,-0.22593285,0.25984085,0.096793994,-0.6708251,0.378865,0.3926542,-0.079636745,-0.940729,0.34173578,-0.034583855,-0.2220563,-0.0753241,0.42753455,0.06323827,0.029598773,-0.09817753,0.11844719,-0.4869248,0.18199025,0.3329978,-0.06976154,0.5298743,-0.32488665,-0.33890727,-0.6536909,-0.06761438,-0.5973421,-0.20523693,0.28671572,0.07977707,-0.04355496,0.21826942,0.28393903,0.36822838,-0.19648282,0.17254011,-0.0222787,-0.1780598,0.2901238,0.3938538,0.4982357,-0.49273023,0.5716659,-0.08369116,0.080426775,-0.058613654,0.107012615,0.35215896,0.0906923,0.2915232,0.010428599,-0.06840728,0.3200108,0.86412245,0.089109294,0.37586194,0.3161645,-0.10581218,0.31463462,0.048336793,-0.064872004,0.10143936,-0.63956517,-0.032650203,0.08352069,0.1680951,0.3580207,0.26107392,0.29063362,0.026566116,-0.2544865,-0.1609181,0.20972826,-0.22621533,-1.1392004,0.38090086,-0.044877227,0.68666905,0.6614981,-0.016774535,0.091391094,0.49589437,0.028232131,0.18459912,0.3038988,-0.14929655,-0.46238786,0.585506,-0.48189014,0.3808879,-0.056324255,0.09328209,-0.10679169,0.0267588,0.45934194,0.77829045,-0.009104869,0.014472229,-0.18677013,-0.14239372,0.117667265,-0.501143,0.16112624,-0.40613085,-0.30095625,0.6702355,0.29083037,0.29728583,-0.122221895,-0.024126291,0.06938639,-0.13344558,0.17153871,-0.05153767,0.048482187,0.10107458,-0.70079315,-0.35489306,0.5626208,0.07917883,0.2313665,0.05388731,-0.23588657,0.20240544,-0.079664886,0.03033254,-0.060892317,-0.7789992,0.12750828,-0.49807468,-0.31005648,0.0136986505,-0.11390873,0.14630137,0.11214953,0.0572361,-0.46931097,0.43437353,0.08513581,0.6086605,-0.18782915,-0.22703484,-0.34068537,0.13475677,0.103597865,-0.32307985,0.0649853,-0.24838401,0.0803601,-0.7557623,0.5143868,0.046902206,-0.23307474,0.20828438,-0.21108885,-0.11511774,0.4721624,-0.27548048,0.09882649,0.13922183,-0.22635235,-0.13981219,-0.105667405,-0.0512671,0.2875856,0.1693293,0.13484795,-0.027764788,-0.24111596,-0.047463376,0.43310338,0.065500334,0.29321882,0.34799448,0.15999267,-0.3891957,-0.13958414,0.21779525,0.4850335,0.13365045,0.01406005,-0.20724252,-0.30213246,-0.2007635,0.3155844,-0.111553386,0.2546219,0.09862816,-0.41612196,0.8517538,0.2628387,1.2134138,0.16743697,-0.21768458,-0.062497284,0.40492648,-0.036229964,0.0066154557,-0.4428399,1.0277885,0.59634143,-0.2090967,-0.14283219,-0.3999191,0.008240665,0.08201234,-0.18183987,-0.111558795,-0.1167239,-0.60163635,-0.38221362,0.15749903,0.32223433,-0.009000452,-0.056275282,0.13648184,0.1080644,-0.100375734,0.27231595,-0.5944757,-0.05033367,0.30953708,0.24079034,0.19687316,0.16040985,-0.5196161,0.37215176,-0.75199604,0.20326032,-0.107131235,0.04609446,-0.024614343,-0.29638427,0.19645707,-0.003962491,0.48129153,-0.47472268,-0.4043432,-0.24203208,0.52850676,0.12630782,0.23524117,0.754838,-0.19461264,0.010319607,0.16795754,0.69322693,1.0756661,0.0062741637,0.1821537,0.22224352,-0.2838355,-0.58809745,0.27320462,-0.22935155,0.03419286,-0.015199618,-0.30063632,-0.5055738,0.29790777,0.29276854,-0.12312678,0.21919183,-0.64496714,-0.3613276,0.28600278,-0.1806409,-0.3139722,-0.2948219,0.06315061,0.7917655,-0.17807555,-0.08843793,0.16076374,0.22320403,-0.33350942,-0.60234034,-0.19353214,-0.40120402,0.24068461,0.19255951,-0.23951538,-0.18474199,0.041235857,-0.39400902,0.046806436,0.06673279,-0.35286644,-0.04158586,-0.25860688,-0.1740394,0.73826694,0.25111204,0.1742947,-0.5633016,-0.45641655,-0.9353289,-0.38237882,0.4833216,0.07375564,-0.039125305,-0.525955,-0.19123156,-0.0846642,0.07237071,0.12679806,-0.38118872,0.42690706,0.1336336,0.5075613,-0.058636438,-0.720388,0.0492728,0.21634623,-0.18644105,-0.60602,0.3099307,0.044051927,0.81791884,0.05424143,-0.07374648,0.22388557,-0.6552787,-0.03650189,-0.29435852,-0.21617153,-0.6566308,0.12140579 -788,0.43594095,-0.074578166,-0.7128564,-0.11267841,-0.18953282,0.17307447,-0.099803455,0.47777957,0.12142553,-0.347134,-0.11997768,-0.10344785,-0.063890256,0.33706596,-0.19168001,-0.46167114,-0.0059306384,0.30920023,-0.6353115,0.43426946,-0.41555828,0.33404523,-0.10302393,0.3542601,0.14864054,0.22227234,0.09215511,0.068813354,-0.10081734,-0.203252,0.17613411,0.20458402,-0.6019873,0.14594378,-0.1311945,-0.49099085,-0.25403038,-0.1364142,-0.43644756,-0.76566666,0.37611353,-0.89572084,0.59088284,-0.15073042,-0.3304493,0.120796315,0.21183695,0.32492855,-0.26385608,0.02523377,0.19698851,-0.18502222,-0.26096952,-0.32862297,-0.16945969,-0.3619509,-0.6754773,-0.09751863,-0.56103766,0.03587069,-0.27927452,0.09486173,-0.2310812,0.13720801,-0.2855352,0.42086282,-0.5457325,0.1846556,0.0983894,-0.019163664,0.29116994,-0.49237147,-0.067951314,-0.11189985,0.017747637,-0.22866812,-0.22716722,0.42470178,0.15298922,0.35338166,-0.08643843,-0.12359618,-0.29456007,-0.15553513,0.16015312,0.37129697,-0.023037655,-0.2774287,-0.16336128,-0.21143016,0.17196526,0.17658624,0.22128788,-0.29800704,-0.12177055,-0.001590391,-0.19726308,0.3494607,0.49409908,-0.20856148,-0.08076952,0.3885208,0.6250471,0.00026405652,-0.19257717,0.13559012,-0.06282165,-0.5011442,-0.26153407,-0.042589054,-0.22741048,0.47637615,-0.19220941,0.11969712,0.6589951,-0.30801666,-0.14455816,0.14104462,0.21251544,-0.09488301,-0.24851425,-0.43106976,0.272631,-0.5138568,0.041967522,-0.14986442,0.6227085,-0.041241836,-0.693566,0.36326668,-0.5426596,0.101571396,-0.12909606,0.53122693,0.54898494,0.62754697,0.20228651,0.75121564,-0.51835865,0.059080455,-0.036107443,-0.43040282,0.24716881,-0.18982,-0.22017698,-0.49707413,-0.055648718,0.03359851,-0.23971625,0.13312414,0.73960495,-0.4458181,-0.08573521,-0.067196295,0.6485382,-0.43586478,-0.06126925,0.75663084,1.1394743,1.1000972,0.14973396,1.3459498,0.31177536,-0.24661776,-0.09115704,-0.1283672,-0.9367937,0.30186722,0.2932259,-0.6864525,0.48567474,0.04354002,0.041244738,0.41622135,-0.52035356,0.012421361,-0.008793608,0.3525585,-0.059564956,-0.23071283,-0.32368526,-0.3660569,0.17049707,0.13882037,0.080142856,0.4192878,-0.31466204,0.3896586,0.3007515,1.7580162,-0.023907132,0.072508864,0.15757324,0.37058437,0.21739964,-0.33146223,-0.12557703,0.19900027,0.32481986,0.10854072,-0.61724687,0.11376707,-0.19092107,-0.6535026,-0.25338426,-0.31501636,-0.054091293,-0.32486618,-0.46814635,-0.20796388,-0.11412002,-0.30779418,0.38325202,-2.339621,-0.06306133,0.025308365,0.42388502,-0.11431328,-0.349384,-0.14427452,-0.41512343,0.3971449,0.3073396,0.36962226,-0.61252284,0.49597386,0.51007885,-0.3932921,-0.0051562586,-0.58262044,-0.085613325,-0.073896594,0.17310353,-0.041006718,-0.04345804,0.0685809,0.20753193,0.39637476,-0.26437792,0.22317433,0.4264719,0.27965623,-0.06521077,0.37918118,0.07082077,0.54197097,-0.3411983,-0.22591229,0.39216024,-0.48831144,0.16336985,-0.07362223,0.08630168,0.43908426,-0.5989937,-0.90174395,-0.5750822,-0.080952935,1.1612602,-0.3503946,-0.49152204,0.2731569,-0.2701774,-0.43425778,-0.047949534,0.40609586,-0.32836914,-0.08096862,-0.92183304,0.073598176,-0.14583506,0.36590278,-0.13985437,0.0679672,-0.3927068,0.64001375,-0.14803703,0.7937568,0.35052955,0.07263541,-0.5140174,-0.4992812,0.28445628,1.0588565,0.46046555,0.16195379,-0.296063,-0.15184124,-0.35727978,-0.16825882,0.15677668,0.43711016,0.7590359,-0.049005207,0.27366388,0.2970886,-0.15335727,-0.05974476,-0.21760778,-0.23317903,-0.010079929,0.10516075,0.52440727,0.71272343,-0.10497648,0.31836447,-0.16467953,0.42335737,-0.28852528,-0.54611564,0.39503953,1.0176246,-0.18178461,-0.4570116,0.7237432,0.50634444,-0.3466818,0.5731744,-0.5729989,-0.42836073,0.37987816,-0.20589565,-0.23761334,0.23933381,-0.38109222,0.1966143,-0.895689,0.30233967,-0.21502842,-0.61853224,-0.54627585,-0.31116602,-2.7773485,0.15084067,-0.11519899,-0.08814984,-0.051920794,-0.15024342,0.26879942,-0.5697394,-0.7808083,-0.03642149,0.07289169,0.74117523,-0.052477922,0.061519198,-0.016938629,-0.28884166,-0.26476923,0.22107908,0.19831158,0.3033441,0.005187885,-0.56242555,-0.24309969,-0.2580513,-0.4923751,-0.08512191,-0.58590615,-0.41968098,-0.10391167,-0.542969,-0.42367133,0.6456216,-0.2986177,0.030367848,-0.14151461,-0.17227383,0.07839101,0.28446242,0.12155012,0.073559664,0.1739089,-0.050942548,0.046899386,-0.2590236,0.20189857,-0.07414281,0.4243864,0.4055415,-0.34035996,0.11408375,0.514363,0.6573252,-0.11973241,0.88312924,0.39818656,-0.19250272,0.23015572,-0.1394496,-0.19596688,-0.7233234,-0.26950833,-0.088758424,-0.49514496,-0.39001182,-0.053033907,-0.41327906,-0.86477745,0.5207984,0.018873373,0.1445884,-0.040476702,0.3012594,0.32854193,0.010894307,-0.16760752,-0.16703197,-0.26919758,-0.40729147,-0.38618863,-0.8055843,-0.3976298,0.0743232,1.4350226,-0.09892178,-0.069298886,0.12687829,-0.11898362,0.09363358,0.24530151,-0.02686197,0.18396382,0.38126945,-0.09242539,-0.5365462,0.3478674,-0.1764595,-0.18137462,-0.5439775,0.123711236,0.585186,-0.59767646,0.4886357,0.3354882,0.14997765,-0.12211398,-0.6096489,-0.024885314,-0.022132972,-0.23722474,0.6768739,0.47312418,-0.82691216,0.46438402,0.28292397,-0.2735913,-0.6894463,0.56901157,-0.10572492,-0.06589977,-0.1488629,0.4345049,-0.17357369,0.037677016,-0.29154772,0.2941485,-0.50170654,0.20486178,0.35391796,-0.06536631,0.21897008,-0.2291834,-0.080350645,-0.64291763,0.15147434,-0.45789063,-0.21778421,0.016470402,-0.16618,0.0032726128,0.3320783,-0.008397595,0.45611864,-0.2628503,0.08968136,-0.1623136,-0.35396358,0.45144087,0.47456428,0.50392824,-0.3754691,0.60469764,0.0013684878,-0.13092493,-0.30037746,0.0859964,0.607981,0.023740428,0.48377952,0.18832748,-0.022254093,0.36803788,0.68566793,0.3187384,0.37792367,0.19382875,-0.17150177,0.032866932,0.077372104,0.3392512,-0.009429199,-0.36616024,0.10261463,-0.2880429,0.23476245,0.5673755,0.12601152,0.5278094,-0.20594975,-0.24100742,0.07798068,0.20308056,-0.30321294,-1.4180112,0.5486593,0.23051117,0.71926945,0.61028,0.042129453,0.04721477,0.36106065,-0.37458864,0.13334753,0.3629621,0.09742072,-0.4675497,0.55994445,-0.80661494,0.49163166,-0.030978967,-0.0664779,0.020193629,-0.010644643,0.5122122,0.869019,0.11908867,0.1923984,0.058509894,-0.31466225,0.32205138,-0.28028068,-0.057986222,-0.57578045,-0.26959726,0.83338755,0.32529646,0.43321133,-0.21663101,-0.027319558,0.14287992,-0.13857628,0.24675478,0.088580765,0.17514524,-0.19197765,-0.44227117,-0.38342765,0.4705222,-0.04491019,0.08035377,0.1954309,-0.31608912,0.10788863,-0.06365387,0.049857866,-0.005248038,-0.687815,-0.032508858,-0.25428388,-0.26989564,0.38048384,-0.2869075,0.09188767,0.25963703,0.13152845,-0.64591175,0.12622313,0.08946004,0.59572697,0.031630352,-0.1554768,-0.03696317,0.39719403,0.24094184,-0.19052666,0.028903008,-0.30216026,0.08797498,-0.6932685,0.4455243,-0.096047334,-0.51946896,0.25195843,-0.08271268,-0.0042136996,0.46794993,-0.20483162,-0.31523076,-0.027232965,-0.056964457,-0.04772608,-0.43302536,-0.33044896,0.27715877,0.0023620685,-0.0068445546,-0.12661369,0.14356874,0.13378868,0.41328195,-0.10255461,0.29420367,0.39655975,0.039596718,-0.485982,-0.060717873,0.069186315,0.6235218,-0.09672778,0.03141965,-0.4456902,-0.4670331,-0.21373813,0.34848803,-0.2405356,0.37439355,0.26454094,-0.30190125,0.8661709,0.10654531,1.0860463,0.111969374,-0.37082538,0.10075889,0.61669225,0.12784229,-0.1246712,-0.24855633,1.0417217,0.6250092,-0.3342611,-0.24594508,-0.37072363,-0.049997743,0.12552539,-0.23844749,-0.4608106,-0.089765936,-0.8885592,-0.12570247,0.1663489,0.29286125,0.10184539,-0.09052838,0.16029769,0.3963505,0.028019989,0.10349843,-0.43998623,0.10448097,0.40487668,0.16632725,0.03151412,0.12206626,-0.5100687,0.3008094,-0.59943396,0.015594957,-0.08781183,0.17606702,-0.046698775,-0.4972703,0.22944765,0.12901682,0.16216472,-0.1719257,-0.211227,-0.13708034,0.54197574,0.037120376,0.21974562,0.81789243,-0.3394371,0.252486,0.039619677,0.40648735,1.0436316,-0.12185017,0.014193607,0.28255442,-0.45717412,-0.81528026,0.37398928,-0.30319685,0.27293307,-0.08111915,-0.39794558,-0.57972604,0.31151035,-0.023476323,-0.10083364,0.20746382,-0.5767359,-0.07926161,0.25879416,-0.28729963,-0.21509758,-0.4507588,-0.04837947,0.5270723,-0.25805557,-0.2456543,0.2346353,0.29956654,-0.3017252,-0.47655186,-0.023235938,-0.36028466,0.39875028,-0.06826743,-0.39846408,0.021640055,0.06953153,-0.35502657,0.35379097,0.3536874,-0.24910556,0.10894863,-0.5048784,0.067971565,0.73616815,-0.24180561,0.03230935,-0.44146723,-0.56335205,-1.0462126,-0.13986248,0.37601745,0.066791825,-0.0081153475,-0.742572,-0.029933952,-0.21365868,-0.059792962,-0.090205915,-0.32868367,0.5234348,0.13942601,0.18000084,0.024372686,-0.9511988,0.07156529,0.19289519,-0.27158442,-0.422886,0.69195247,-0.24775502,0.74988765,0.1829106,0.15945436,0.30240658,-0.75410634,0.2951031,-0.105513334,-0.028376158,-0.5418987,0.027230136 -789,0.44202513,-0.04855464,-0.3188884,-0.076084696,-0.29362062,-0.0040655453,-0.06195363,0.64058125,0.30707866,-0.42682016,-0.14270087,-0.28232372,0.0012177308,0.26553425,-0.18567017,-0.49279985,-0.064370975,0.20318063,-0.42669767,0.6211332,-0.38760787,0.21828797,-0.20875931,0.5798873,0.20273337,0.15310618,-0.22207779,-0.016814897,-0.0889786,-0.22095877,0.121303655,0.45597392,-0.6285252,0.3085928,-0.34992725,-0.31232056,-0.08631379,-0.5127965,-0.38887635,-0.73903406,0.13734558,-0.6326126,0.5052004,0.028237538,-0.2753135,0.28648463,0.12697484,0.22785707,-0.07459848,-0.09939145,0.08903249,-0.15521964,-0.0661299,-0.07173804,-0.24535331,-0.43538395,-0.6288598,0.09835617,-0.35027364,-0.16522358,-0.39047325,0.19046834,-0.25022224,-0.16574197,-0.017889122,0.74760175,-0.35567003,0.41170794,0.03503104,-0.06372378,0.16306202,-0.5551161,-0.30792338,-0.11141108,0.13416943,-0.11543688,-0.2307628,0.29181522,0.24793117,0.46333253,-0.10741079,-0.12599894,-0.287842,-0.08727605,0.028834868,0.4466662,-0.17808905,-0.49434885,-0.13638887,-0.19039334,-0.0074569704,0.21567902,0.10248581,-0.34462187,-0.12742826,-0.06963326,-0.15898919,0.4479171,0.46828747,-0.21507452,-0.33882475,0.2922019,0.4258124,0.26955092,-0.15820523,-0.06451262,0.05480361,-0.54265714,-0.18984991,-0.08646755,-0.1692477,0.39572996,-0.1777926,0.20795898,0.5414987,-0.119992934,-0.105506554,0.15125567,0.19669971,0.07486102,-0.5091255,-0.25549296,0.31077382,-0.45352542,0.189255,-0.1822594,0.7915831,-0.044046696,-0.6870392,0.26022184,-0.7276939,0.020778123,-0.02046468,0.4370804,0.8707737,0.3600358,0.35763592,0.5027586,-0.26689968,-0.041530084,-0.06646042,-0.18012191,0.0041115363,-0.24197994,0.039427646,-0.494425,-0.08368492,-0.017374119,-0.018062932,0.1669323,0.48455667,-0.57384276,-0.26350984,0.19107418,0.8784823,-0.1589529,-0.17840013,0.8340595,1.0492456,0.9183852,0.117132775,1.1566758,0.10037205,-0.06490619,0.32271093,-0.21348897,-0.70975524,0.3049963,0.19036739,-0.28425485,0.06647522,0.08788295,-0.07035182,0.44642723,-0.41818857,-0.0598252,-0.080588564,0.2822197,0.19552739,-0.12174176,-0.41950843,-0.39908263,-0.05918156,-0.0071133096,0.07470495,0.3276623,-0.24454096,0.22413112,0.05334955,1.390941,0.010754275,0.1745256,0.13460378,0.4128796,0.20029224,-0.34372386,-0.057063762,0.3791944,0.20373078,0.16095664,-0.5222776,0.22220586,-0.23400894,-0.49367848,-0.20032111,-0.34129837,-0.24378566,0.0116207795,-0.5491379,-0.10956588,-0.31031293,-0.32094547,0.49615824,-2.7640243,-0.0723349,-0.012728228,0.36972407,-0.17719091,-0.3804092,-0.14151724,-0.40206692,0.4806169,0.23356189,0.41196933,-0.4806235,0.36583862,0.5639379,-0.5593909,-0.17017554,-0.5360328,-0.10415799,0.06906317,0.20296524,-0.09083545,0.025033744,-0.1103394,0.05830074,0.51986146,0.007520139,0.1849473,0.30646417,0.31710783,-0.14697677,0.3378491,-0.14017242,0.3926836,-0.2704939,-0.324726,0.31905377,-0.47858995,0.22132091,-0.16946648,0.09490518,0.6162653,-0.35790983,-0.86375314,-0.59238106,-0.3299574,0.99721587,-0.12695384,-0.37097284,0.36376476,-0.54890645,-0.30015743,-0.036822062,0.64359653,-0.109108694,0.0018944263,-0.7965952,0.07782738,-0.13730718,0.10565543,-0.047973342,0.05823928,-0.3500014,0.64723945,-0.023763895,0.41798356,0.25907594,0.21281596,-0.4367906,-0.4804069,0.03735526,0.81127155,0.3623048,0.2633341,-0.3118156,-0.19930544,-0.43704027,0.036290266,0.092355296,0.5728695,0.45451102,-0.055544075,0.25178775,0.27522564,-0.08344574,0.025861528,-0.16159607,-0.17863843,-0.13586332,0.086525455,0.53782594,0.64647985,-0.198805,0.45480198,-0.03172593,0.17083389,-0.38932067,-0.3308873,0.35210186,1.0531908,-0.14690323,-0.23129031,0.74474263,0.54984754,-0.23221493,0.3850786,-0.43326944,-0.2829693,0.49200153,-0.1355318,-0.57955617,0.07327265,-0.245645,0.014243478,-0.7426954,0.25120357,-0.26579708,-0.6010431,-0.67847186,-0.11791901,-2.507951,0.22608614,-0.13831486,-0.15338445,-0.28593028,-0.16857529,0.21625979,-0.49262416,-0.5191727,0.09248825,0.07234683,0.77570236,-0.21046476,0.09980129,-0.196719,-0.46539605,-0.31751397,0.14861624,0.20097406,0.39734623,-0.07194018,-0.41010943,-0.08734528,-0.04468045,-0.3512033,0.09535766,-0.5767469,-0.35057056,-0.12331252,-0.55195045,-0.24823374,0.60651463,-0.5342262,0.04496838,-0.27365237,-0.08208837,-0.024312908,0.29286358,0.18646035,0.22969188,0.16885649,-0.08563845,-0.2251324,-0.3010228,0.226723,0.016419789,0.24466142,0.49249744,-0.13549991,0.1916489,0.42935085,0.6061841,-0.18281461,1.1346437,0.40628958,0.0136231305,0.33471653,-0.20546691,-0.24960412,-0.5547141,-0.16793089,-0.11745334,-0.35201302,-0.44772428,-0.009719708,-0.29667717,-0.72086066,0.48209172,0.021804065,0.17372312,-0.02971226,0.25098416,0.431434,-0.28732547,-0.18595098,-0.15195054,-0.08518279,-0.45034128,-0.42510337,-0.47865057,-0.44252452,0.05661068,1.0157057,-0.11951179,0.047344446,0.14958698,-0.12742257,-0.0782208,0.17707552,-0.08027231,0.048350323,0.47553954,0.091289885,-0.5527201,0.4629764,-0.06236232,-0.24445026,-0.6040491,0.21651255,0.60805017,-0.5646951,0.7289561,0.27233347,0.1129978,-0.32115203,-0.5817389,-0.18092728,-0.05313667,-0.25597948,0.41741735,0.38047135,-1.0154152,0.36500874,0.26234895,-0.120830975,-0.8346637,0.6495173,-0.12988333,-0.2661899,-0.14527646,0.39472592,0.30834863,0.1601916,0.025871418,0.3791787,-0.40290606,0.27119547,0.07836318,-0.0985395,0.2606913,-0.31305254,-0.020798227,-0.7403567,0.07859927,-0.39837134,-0.4631254,0.21973915,0.07886904,-0.0516322,0.4717851,0.047298886,0.2102311,-0.13416074,0.1540986,-0.15404136,-0.18656348,0.10624614,0.44026324,0.6682035,-0.3206426,0.5631675,0.011285246,0.05387789,0.08372586,0.23800702,0.3927532,-0.118320815,0.49328622,-0.089637116,-0.25359744,0.12314231,0.8269623,0.073264666,0.45732123,0.0117743965,-0.11239548,0.33826342,-0.027809108,0.2473204,-0.15046462,-0.58118397,-0.033007145,-0.3870828,0.17487277,0.4791558,0.019946678,0.2520611,-0.057956997,-0.27562922,0.121194586,0.32703057,0.042397335,-1.2816863,0.25916117,0.21248539,0.982376,0.6111743,0.028433912,0.029259134,0.65303224,-0.05357295,0.11367965,0.49345696,0.10969602,-0.34371248,0.6712398,-0.78082585,0.42424586,-0.18067789,-0.056263827,0.06342063,-0.07669677,0.5454621,0.6202213,-0.26219082,-0.042121604,0.09352977,-0.3578942,0.18250345,-0.30612653,0.36466232,-0.57812333,-0.1690068,0.64557064,0.63001406,0.20201987,-0.4280468,0.021214155,0.18468666,-0.19296926,-0.113873266,0.117005914,-0.040403042,0.031612374,-0.6152233,-0.070503905,0.55538994,-0.14704068,0.1642521,0.23306085,-0.16781443,0.22908308,-0.1851912,-0.012551299,0.016730586,-0.7425746,-0.004389854,-0.33675548,-0.477716,0.5915299,-0.27037928,0.16060719,0.17273808,0.16040583,-0.41154984,0.45073614,0.15661551,0.72173274,0.003735594,0.017075209,-0.18409231,0.2331036,0.15189774,-0.10873033,-0.32459018,-0.25714904,0.06186111,-0.5682285,0.3123327,-0.08596174,-0.23514186,0.06797441,0.0508846,0.15659949,0.5539894,0.14187111,-0.084933564,-0.097811304,-0.26375973,-0.2342911,-0.04969977,0.043090962,0.43098822,0.10322212,-0.08440176,-0.14869766,-0.16131619,-0.16703944,0.18665595,-0.03926945,0.35989225,0.32113543,0.098816715,-0.12984295,-0.11721573,0.2097697,0.45591784,-0.067537,-0.10765056,-0.035720687,-0.15994868,-0.38351542,0.24753386,-0.10314587,0.3359417,0.12987134,-0.31715336,0.78853834,0.02497797,0.9986258,0.02572167,-0.37265903,0.19356567,0.34429875,-0.070883065,-0.13432191,-0.40520397,0.8320811,0.4068363,-0.07567827,-0.11496242,-0.26663363,0.097649194,0.2374527,-0.19697888,-0.22012344,-0.100017056,-0.65839446,-0.050209817,0.15121086,0.3039047,0.1362811,-0.13748519,-0.15898173,0.3818336,0.02849091,0.33770636,-0.46149758,-0.008887663,0.23117638,0.46235448,0.012570222,0.2642706,-0.3427439,0.357389,-0.618552,0.12199791,-0.23944433,0.17404312,-0.4545439,-0.19530617,0.17911582,0.016926428,0.4512584,-0.16829965,-0.21601738,-0.45156962,0.41340753,0.13532218,0.050922584,0.4757473,-0.2724104,0.042090006,0.029497236,0.47273904,0.96219116,-0.27379686,-0.16376556,0.22471686,-0.28787142,-0.5804961,0.30706823,-0.528221,0.23916276,0.031075776,-0.12861536,-0.31175995,0.135348,0.13889398,0.11813274,-0.05020185,-0.6259645,-0.0123847285,0.3364102,-0.16156001,-0.13630834,-0.07451092,-0.027087089,0.60357857,-0.12699823,-0.26338303,-0.00015590191,0.2966427,-0.13752957,-0.5137193,0.059258748,-0.50425035,0.22817916,-0.102282636,-0.3950676,-0.22221106,0.03852091,-0.5306456,0.065993644,0.0891478,-0.28684238,-0.045765232,-0.25143582,0.03695599,0.982202,-0.1479768,0.28458825,-0.3144433,-0.5772661,-0.7320319,-0.2746011,0.24349502,0.22003323,0.022901217,-0.47343877,0.05988311,-0.17529611,-0.26902017,-0.050484877,-0.38059673,0.29572734,0.2987547,0.3597088,-0.04811332,-0.87763304,0.025413342,0.09974122,-0.19089967,-0.63144284,0.38341042,-0.050495766,0.85589474,-0.014622187,0.13575338,0.1153817,-0.45384198,0.021131793,-0.10122724,-0.10032703,-0.5697118,0.08109105 -790,0.38792604,-0.13649614,-0.4770403,-0.028327383,-0.084887356,0.11644705,-0.35148907,0.32620904,0.07816532,-0.4866656,-0.2105535,-0.26213768,0.15325305,0.35647422,-0.21188122,-0.84297913,0.15185128,0.19702013,-0.6634371,0.6446739,-0.36452594,0.40859604,0.058809854,0.36916402,-0.066744134,0.2255388,0.3733988,-0.04921121,-0.11558624,-0.0121481875,-0.068256296,0.35231215,-0.7560005,0.17706957,-0.07435487,-0.38264757,0.09360879,-0.18119046,-0.24039102,-0.8243612,0.15072298,-0.82549596,0.54158723,0.21909745,-0.29613927,-0.059403174,0.13454047,0.5170073,-0.23036566,0.07741351,0.27694055,-0.18426092,-0.15876564,-0.2752498,-0.11971006,-0.64219224,-0.52190757,-0.008006224,-0.72158784,-0.29485765,-0.3783436,0.23654914,-0.13133158,-0.048898302,-0.14950877,0.42135164,-0.5132604,-0.1468073,0.37986997,-0.20845501,0.45224908,-0.5318587,-0.06483777,-0.13250022,0.36563522,-0.30978304,-0.3054845,0.102008015,0.35748672,0.47892797,0.13753925,-0.20004717,-0.201199,0.02726918,0.27786034,0.5432863,-0.28934604,-0.53464895,-0.17896964,-0.12804161,0.13663404,0.05583861,0.22934243,-0.50861555,-0.13511564,0.015855175,-0.11217442,0.31975794,0.5018572,-0.4934799,-0.2546959,0.1856539,0.60438854,0.03916616,-0.08592257,0.218565,0.08237279,-0.551242,-0.15885213,0.26354784,-0.08597272,0.6085913,-0.11935728,0.15861998,0.796958,-0.054545574,0.042860646,0.048784617,-0.079972014,-0.008190889,-0.083692536,-0.24184409,0.42488977,-0.40759033,0.05053214,-0.3832156,0.6429367,0.23010287,-0.6832667,0.32319063,-0.6039219,0.17215596,-0.038258925,0.6441082,0.6350199,0.30561095,0.25890848,0.7597654,-0.4606339,0.019892186,0.04652777,-0.35166022,0.12085148,-0.24172625,0.039652806,-0.39396983,-0.1297105,-0.058940686,-0.054410163,0.08975886,0.24436133,-0.63171965,-0.0016428187,0.07601927,0.78509754,-0.37629554,0.009814895,0.58750564,1.1803359,0.57529604,0.0925142,1.3521212,0.44856632,-0.2783907,0.11693848,-0.30595016,-0.56267047,0.25126192,0.39399055,0.21475366,0.3238754,-0.020836312,0.021928493,0.6225765,-0.5933975,0.17905809,-0.12311827,-0.016758094,-0.13163233,-0.29724059,-0.40551573,0.04705806,0.012464125,-0.12478447,0.10753456,0.23936184,-0.1551629,0.42744547,0.10483233,1.3456197,-0.08260712,-0.0064697266,-0.018838117,0.4613363,0.28038245,-0.06142533,0.13925788,0.27347845,0.46099043,0.038325146,-0.58752847,0.27759075,-0.13819262,-0.44722387,-0.22782412,-0.14551753,-0.026303722,0.20492734,-0.53609174,-0.06319152,0.20298195,-0.09532566,0.30288333,-2.333588,-0.15682217,-0.12866879,0.32608238,-0.16383958,-0.35306323,-0.09527074,-0.4466578,0.5176822,0.38099143,0.37157866,-0.6741863,0.5142908,0.49869892,-0.49577826,-0.14293689,-0.69905895,-0.04381407,-0.11949288,0.3464591,0.08755485,-0.13473518,0.12800096,0.26373228,0.48757207,-0.20759875,0.08843812,0.11721166,0.35135695,0.05088286,0.35533318,0.3386843,0.55077004,-0.18686628,-0.2611567,0.37176043,-0.27344698,0.23381312,-0.0027705522,0.059536677,0.26711825,-0.24800624,-1.004512,-0.7560889,-0.5200566,0.8440752,-0.10794893,-0.4780881,0.13924083,0.028764175,-0.18021232,0.14128643,0.6609436,-0.05109546,0.24164003,-0.88594276,-0.07348839,-0.065432325,0.28973582,0.1416501,-0.11331536,-0.61741406,0.62373966,-0.25288326,0.23608762,0.60510653,0.20097388,-0.22105673,-0.63834834,0.1544834,1.049238,0.2865061,0.21048209,-0.24874511,-0.2375817,-0.28558952,-0.014050731,-0.08174737,0.69805837,0.68426204,-0.068116665,0.14916322,0.12613776,0.051064905,-0.010472298,-0.3382351,-0.49091727,-0.073627904,0.15859428,0.6617091,0.60965693,-0.19409092,0.3748081,-0.1853732,0.3817405,-0.30150136,-0.49973807,0.79786915,1.23299,-0.19057798,-0.058174856,0.8258124,0.30757293,-0.22536561,0.47696385,-0.88062567,-0.40380085,0.46444637,-0.111540094,-0.480272,0.30603626,-0.30043453,0.24481544,-1.0087636,0.5435819,-0.43110734,-0.3433372,-0.62030286,-0.07419555,-4.0495114,0.20250306,-0.26056334,-0.034200326,-0.024225043,-0.110217795,0.33043388,-0.6334604,-0.4439947,0.23819517,0.07072219,0.3744083,-0.04235104,0.102217,-0.34011617,-0.11148822,0.045015913,0.37762773,0.24766111,0.17438364,-0.0622816,-0.5466823,0.21018958,-0.19461957,-0.36918515,-0.024530364,-0.6794399,-0.47171587,-0.36907145,-0.6672199,-0.3033908,0.5839705,-0.5997325,0.00491971,-0.23978956,0.07096992,-0.17979845,0.482139,0.27190545,0.25095528,0.022163097,0.05791643,-0.23399888,-0.2510553,0.035364166,0.17759767,0.06584306,0.46570486,0.011250645,0.20550981,0.41955858,0.5900395,-0.0038647263,0.7509651,0.5966594,-0.051310215,0.30677754,-0.30488977,-0.2737901,-0.6939697,-0.42588538,-0.4507233,-0.4337422,-0.62191427,-0.06942158,-0.45762742,-0.73791176,0.5796515,-0.0684666,-0.19528316,0.14504537,0.18377605,0.34047204,-0.3360132,-0.13329071,-0.19335689,-0.07632732,-0.5960503,-0.30727887,-0.5730291,-0.75067294,0.04793906,0.79190165,-0.12657882,0.04631629,0.1251185,-0.08925702,-0.089277744,0.3875406,0.094567485,0.11130619,0.6119039,-0.05609946,-0.69652593,0.5682805,0.015920121,-0.4771498,-0.8105478,0.3477814,0.53384614,-0.8148683,0.76297724,0.43428674,0.09413709,0.05985604,-0.3667398,-0.3701809,0.16738299,-0.29883906,0.5588312,0.055533193,-0.7059873,0.3620047,0.37854972,-0.29457933,-0.7417931,0.75037205,-0.086003885,-0.4550218,0.2572926,0.27728385,-0.09619837,0.117264874,-0.45468476,0.1888124,-0.49283546,0.09235747,0.40223992,-0.059804305,0.5612648,-0.2033458,-0.18385158,-0.8744878,0.07884503,-0.71652293,-0.25727728,0.08870388,-0.026286233,-0.17848054,0.35559937,0.13665034,0.4180238,-0.33340344,0.19546501,-0.18936239,-0.27386376,0.35352293,0.48030627,0.17039658,-0.3408149,0.65576875,-0.11371163,-0.115991905,-0.3970604,0.067012616,0.58560777,0.16865046,0.55083424,-0.03393038,0.027981978,0.25698796,0.7777428,0.11742333,0.6130702,0.23742819,-0.07271915,0.22000489,0.14520855,0.24688159,0.1698993,-0.39282057,0.04730904,-0.05355737,0.1561564,0.39765263,-0.02559772,0.39038152,-0.1464984,-0.52061415,0.13717665,0.2706653,0.23388813,-1.1405011,0.37137696,0.2569609,0.585962,0.5654004,0.0816871,-0.003181525,0.50415957,-0.40105394,0.074222006,0.17617938,-0.13827604,-0.5179564,0.546349,-0.777299,0.24901772,-0.24350008,-0.01204011,0.00087149325,-0.090362325,0.26400286,0.9721676,-0.19997527,0.15669106,-0.07014736,-0.01634976,0.05474753,-0.3960312,0.12214338,-0.36398757,-0.4633003,0.7910343,0.5307477,0.43845809,-0.33654678,-0.03082226,0.12674361,-0.18185839,0.10472481,-0.041743305,0.24301559,0.07091182,-0.5579305,-0.33659953,0.6832637,-0.23653635,-0.018841136,0.0030160958,-0.47185713,0.26724178,-0.109798275,-0.02663512,-0.13111493,-0.859883,-0.01326163,-0.47816318,-0.3966088,0.7130248,-0.27511713,0.20625949,0.26204967,0.06530894,-0.3152216,0.667366,-0.080708966,0.71532464,0.2819969,-0.11265496,-0.29426703,0.24772581,0.3755496,-0.2014603,0.01710945,-0.3261926,0.25393268,-0.50953,0.40124246,-0.026640378,-0.3362334,0.06280038,-0.13936277,-0.12627237,0.48059353,-0.2270158,-0.3504251,0.50330514,-0.17860797,-0.18098405,-0.32142428,-0.16373755,0.21284556,0.047752228,0.114593945,-0.01655184,0.0085555455,-0.22982384,0.41245493,0.25463113,0.3787587,0.56768906,-0.041379903,-0.4114941,0.09975172,0.16151828,0.4941333,-0.14130987,-0.15315317,-0.17702444,-0.73612106,-0.34790054,-0.14982629,-0.17997397,0.25217426,-0.00053287926,-0.19749075,0.84487873,0.162837,1.2695115,0.04376805,-0.46825832,0.3116479,0.49684447,-0.08244639,0.0041535357,-0.5294404,1.0150468,0.59339774,-0.03961146,-0.014612966,-0.115700096,-0.19862762,0.21523446,-0.2187302,-0.11810802,-0.060929917,-0.7550965,-0.17896062,0.32210636,0.4418718,-0.031138454,0.035736404,0.25872436,0.0835104,0.02303849,0.13629562,-0.76181644,-0.12286575,0.21691893,0.25617316,-0.081651144,-0.017924497,-0.26694843,0.6397402,-0.5042689,-0.102277055,-0.5532423,-0.08811756,-0.27613294,-0.3035516,0.12530547,0.08388303,0.3264217,-0.33340877,-0.10075081,-0.31397966,0.43380898,0.32373288,0.11810009,0.71622646,-0.17635141,0.12733132,0.021343268,0.5960812,1.1556259,-0.55798596,-0.045941755,0.5112553,-0.4370845,-0.5301978,0.2941913,-0.34184396,0.11762946,-0.1557444,-0.45631468,-0.6193319,0.15205954,0.13223074,-0.12686414,0.11563598,-0.7269984,-0.095354564,0.3523374,-0.47642216,-0.3287508,-0.24176165,0.51313895,0.8012431,-0.38746983,-0.3226183,0.08005658,0.2794506,-0.25674385,-0.51397157,0.0075075924,-0.2374784,0.440647,0.2787131,-0.44515926,-0.034325983,0.20122027,-0.49801093,0.0006676041,0.42112985,-0.36483353,0.19044341,-0.3001823,-0.070026904,0.9289788,-0.051146183,-0.085743055,-0.7314511,-0.54071695,-1.0322996,-0.4356592,0.5482147,0.29269826,-0.03681924,-0.56355035,0.07477133,-0.09667203,0.10158633,0.07879866,-0.24648863,0.47291434,0.09473459,0.67061305,-0.073305495,-1.0231297,0.04725268,0.196139,-0.06829657,-0.5095727,0.40164274,0.025735388,0.9961086,-0.026758125,-0.030067077,0.2519803,-0.63120645,0.13613775,-0.38473147,-0.110711895,-0.9026489,-0.009096969 -791,0.2081976,-0.42045578,-0.30018157,-0.17713822,-0.46210903,0.002199549,-0.38284317,0.28664732,0.21866876,-0.15680067,-0.15689825,0.054647252,0.030533511,0.38915285,-0.24310587,-0.5456796,-0.3538881,0.088920355,-0.5964991,0.6588602,-0.49061102,0.22333051,-0.19382562,0.4473921,0.15108368,0.36215967,0.3550711,0.10969253,0.062687986,-0.09368928,-0.027415363,0.23119985,-0.47528994,0.2588787,-0.24765627,-0.36224002,0.111393966,-0.475564,0.0002371027,-0.71355826,0.39776427,-0.7328701,0.5022999,-0.09464081,-0.21680114,0.18222205,0.54769886,0.21788876,-0.30651978,-0.119339705,0.19254072,-0.13738035,-0.10734149,-0.48632935,0.0033860619,-0.35400918,-0.46302316,-0.14823362,-0.68149334,-0.33796236,-0.14256893,0.26147947,-0.29252577,-0.050294086,-0.036236003,0.37205127,-0.3626249,-0.012825398,0.2308148,-0.21350019,0.14672567,-0.7600814,-0.10445944,-0.0077237007,0.43827057,-0.0062463353,-0.10833592,0.55641073,0.04431849,0.20124608,0.1866669,-0.3600769,-0.37680274,-0.36156267,-0.015281274,0.3535009,-0.18963616,-0.30833036,-0.2925665,0.0246516,0.25635412,0.41772044,0.08492256,-0.013100037,0.10785698,-0.2392669,-0.0478673,0.76233184,0.38702863,-0.016806204,-0.3727501,0.17174624,0.6074553,0.3056055,-0.41182092,-0.18723682,-0.068886094,-0.41383737,-0.24462198,-0.03198928,0.08048487,0.3001394,-0.1514723,0.26836106,0.750931,-0.1439707,-0.062498808,0.021363087,0.07801747,0.0012111389,-0.4283026,-0.27214253,0.24443682,-0.54816353,0.07241443,-0.31114835,0.52761346,0.109682076,-0.6214669,0.3071041,-0.6556692,0.09902726,0.050353903,0.5189433,0.5410431,0.53774023,0.3347742,0.80715466,-0.038489874,0.06304535,-0.10502274,-0.11379225,0.051743165,-0.32660535,0.16701882,-0.5401032,0.2682327,-0.21285473,0.26822758,0.06404407,0.30469948,-0.52547544,-0.18985489,0.2806379,0.6748089,-0.27350837,0.09971019,0.80247724,1.2139661,1.1753951,-0.101101875,1.0595921,-0.02596945,-0.23843028,-0.056329217,-0.1175106,-0.6377704,0.21929234,0.41367406,0.0070533934,0.45536885,-0.15663888,0.09708564,0.30221793,-0.44277096,-0.15427397,0.13712955,0.46341005,0.4013851,-0.014752372,-0.5045894,-0.16071358,0.068758,-0.00011596313,0.33097723,0.20711218,-0.1948003,0.32666257,0.020524066,1.2606237,-0.08845771,-0.01946301,0.21920456,0.65136534,0.29751417,0.045621064,0.123756394,0.41403368,0.22739506,0.16279373,-0.5179882,0.3023089,-0.32014135,-0.55463815,-0.08107611,-0.40736425,-0.27595437,-0.09073536,-0.19075195,-0.24717654,-0.21165857,-0.26028925,0.15800397,-2.8633063,-0.27694273,-0.108901456,0.31057915,-0.20920143,-0.07068643,0.07118782,-0.3810599,0.42544812,0.2915045,0.40143284,-0.48088625,0.4271213,0.75974333,-0.7140216,-0.067093,-0.5370405,-0.18567361,-0.099309355,0.74559987,0.1275128,-0.15970248,-0.24339986,0.41971922,0.6391725,0.20463617,0.20177604,0.45564836,0.41420272,-0.2765078,0.59967047,-0.0270629,0.432199,-0.49110076,-0.12816538,0.3478526,-0.5015717,0.14635263,-0.33844006,0.048833303,0.59064186,-0.42369205,-0.8866228,-0.5214427,-0.073801175,1.0199257,-0.14501128,-0.55402166,0.20262879,-0.46725085,-0.02933064,-0.07407181,0.4989528,-0.16176802,0.144589,-0.6418941,0.13975438,-0.15740536,0.15723583,-0.05467935,-0.0018208554,-0.652682,0.79858124,0.09499281,0.61284614,0.21729788,0.20395741,-0.4852072,-0.22707517,0.08494207,0.52703243,0.42603067,-0.029339217,-0.0023489497,-0.22067173,-0.05635103,-0.20623578,0.058487747,0.7371876,0.5313649,-0.0568754,0.27997473,0.33864278,-0.18104628,-0.011285846,-0.15569629,-0.12131907,-0.14091411,0.13368294,0.51291716,0.8314661,-0.088045835,0.32480064,0.040881082,0.465065,-0.11280557,-0.4495445,0.52952015,0.56615824,-0.14397758,-0.10724381,0.69508374,0.5180429,-0.36854208,0.48590198,-0.65136725,-0.30820206,0.78046423,-0.27111146,-0.47437197,-0.0024352623,-0.18588541,0.02047807,-0.60238343,0.21516524,-0.36989287,-0.3057935,-0.57191986,-0.25153637,-2.7350833,0.054569747,-0.1792126,-0.13671528,-0.50139356,-0.22589773,0.11519276,-0.7410875,-0.70682865,0.2541385,0.17639908,0.635099,-0.15887783,0.08792749,-0.2627671,-0.41813585,-0.038522117,0.38607088,-0.07371239,0.2063845,-0.1528412,-0.43582967,-0.118913166,0.0072936187,-0.73142076,0.09955177,-0.44561768,-0.350214,0.11046687,-0.6435007,-0.14195287,0.65390885,-0.24503905,-0.04025948,-0.31487894,-0.0016022279,0.019020753,0.056736164,0.082217336,0.16009004,0.3647356,-0.05432952,0.24176,-0.26163894,0.48326427,-0.008161857,0.43898004,0.04156065,-0.012629846,0.18440507,0.40133908,0.6105892,-0.27887142,1.1473327,0.34633714,-0.11486065,0.36862782,-0.29011628,-0.32010058,-0.53535414,-0.24143511,0.30374667,-0.21942538,-0.3753634,-0.06574158,-0.3012388,-0.7548647,0.7477871,0.04196763,0.4016163,-0.22080477,0.23154236,0.28207806,-0.2583628,-0.034435127,0.05722565,-0.15049936,-0.474616,-0.20600605,-0.6034601,-0.43602106,-0.1251955,0.68905187,-0.3364403,0.013724951,0.25286725,-0.32463706,0.20122266,0.16437332,0.13661565,0.30255383,0.36879247,0.29583234,-0.6254705,0.45779264,0.031770352,-0.11685658,-0.32744887,0.12058462,0.6100044,-0.6351712,0.44841224,0.3968374,-0.08002312,-0.34042037,-0.52874625,-0.04036264,0.052738097,-0.17439644,0.45246363,0.27319536,-0.9310669,0.58141166,0.11575275,-0.41528237,-0.6765343,0.3302386,-0.19436227,-0.33546856,-0.12630984,0.36466244,0.31684577,-0.050128307,-0.0930996,0.31761262,-0.26805618,0.21012737,-0.12410001,-0.0039457586,0.35492358,-0.040334012,-0.31400996,-0.77005386,0.10726759,-0.4956957,-0.36883977,0.41666666,-0.15703772,-0.25216302,0.20014328,0.11910199,0.33837286,-0.2784321,0.116934225,-0.01721693,-0.43415928,0.19006634,0.48411682,0.4123631,-0.40337107,0.4597521,0.10907933,-0.16824624,0.20253974,-0.20471555,0.36221042,-0.11915334,0.5628688,-0.10276706,-0.029050099,0.4532844,0.6693345,0.22361138,0.27330664,0.033124622,-0.106172755,0.4423863,-0.08251424,0.1989207,0.0016990167,-0.4423024,0.14403765,0.03138543,0.0070753004,0.4673465,0.290155,0.3867428,0.24501465,-0.2769979,0.027191909,0.19850866,-0.22987865,-1.4392571,0.31150377,0.23930913,1.0161121,0.5009097,0.13142921,0.002227201,0.7972052,-0.13894318,-0.12191558,0.57760817,0.1841581,-0.33307374,0.8431905,-0.4269991,0.5458669,-0.17253658,-0.12244408,0.049033985,0.0700715,0.39323714,0.6760321,-0.24202336,-0.0015834707,0.097518004,-0.18987519,0.106937185,-0.29547378,0.03892811,-0.1899928,-0.36279795,0.57280767,0.35006955,0.39116016,-0.22757635,0.10942503,0.11730768,-0.20935968,0.29811674,-0.13779055,-0.31370395,-0.04286544,-0.4957199,-0.050267898,0.47932693,-0.02395651,0.28531548,-0.2510513,-0.27762702,-0.0005395642,0.014961213,-0.0034318613,0.05011844,-0.63687265,0.15235922,-0.077693336,-0.53499514,0.6510525,-0.34371036,0.015598964,0.36387575,0.054110453,-0.1799944,0.1398936,0.14334607,0.5430375,0.054665584,-0.20833573,-0.18503366,-0.091024384,0.08174462,-0.3191722,0.23418361,-0.39493254,0.300033,-0.45919836,0.62317175,-0.17198688,-0.47607586,0.006237099,-0.3028845,-0.06740807,0.5430419,0.023042591,-0.08210557,-0.10829876,-0.17968628,-0.25528938,-0.27582008,-0.44701767,0.32402208,0.12060295,0.045690186,-0.26252848,-0.3064113,-0.27121168,0.64930177,-0.08503657,0.40600315,0.19569103,0.026695298,-0.20799288,0.2885422,0.16079427,0.5240014,0.0128811095,0.06576702,-0.29798275,-0.39377445,-0.3481149,0.5166846,-0.15121277,0.10533821,0.06243915,-0.30644247,0.90469486,-0.054229006,1.0902743,-0.06663558,-0.45121038,0.124623075,0.5404555,-0.2323235,-0.013159534,-0.3778119,0.848199,0.4828967,-0.2720943,-0.0528208,-0.5046319,0.066064864,0.40334246,-0.41259772,-0.086861186,-0.21451084,-0.4731666,-0.5314421,0.27453044,0.116383545,0.1074088,-0.18562023,-0.13477263,0.07137389,0.1923998,0.42509905,-0.568836,-0.09395656,0.2947509,0.009935713,-0.17018682,0.13602759,-0.48859823,0.39148316,-0.5912112,0.31707942,-0.5526137,0.14756249,-0.4590132,-0.2842675,0.051875595,-0.13629432,0.31450436,-0.32055137,-0.5352901,-0.123606905,0.15636796,0.06202839,0.17218593,0.38694194,-0.24461174,0.15292105,0.03545005,0.56094337,0.94438523,-0.33394873,-0.09254517,0.101470396,-0.5896359,-0.70791525,0.2530429,-0.441625,-0.12882987,0.064643286,-0.32481816,-0.5245593,0.19854857,0.19812125,0.22950587,-0.051369444,-0.5347649,-0.18993303,0.29828686,-0.29871148,-0.23051964,-0.15596806,0.11940844,0.7635297,-0.15837458,-0.25440544,-0.02250465,0.3950308,-0.25962797,-0.6311992,-0.034919932,-0.34344688,0.54285204,0.0049168766,-0.20208052,-0.24881032,0.103382036,-0.5787366,0.10283525,0.40367156,-0.2788332,-0.048675485,-0.12079351,0.106503434,0.842419,-0.23220521,0.09576954,-0.4406484,-0.50189006,-0.9590875,-0.34215906,-0.04929084,0.17398132,-0.019087724,-0.4481207,0.019348796,-0.27766064,-0.318608,0.14375296,-0.48341906,0.2396992,0.17291337,0.4874352,-0.40945,-0.9210033,0.20483392,0.1512905,-0.00041558192,-0.48134306,0.69828606,-0.12077885,0.6566442,0.104087405,-0.14689215,-0.11637434,-0.28317845,0.18173078,-0.20316178,-0.12665112,-0.57848513,0.12461587 -792,0.5505423,-0.124898486,-0.8009405,-0.116383836,-0.30202913,-0.05959567,-0.29485917,0.3360742,0.28757665,-0.6028103,-0.2778553,-0.07249951,0.016135503,0.15756293,-0.15376909,-0.55652356,0.12888853,0.15755741,-0.54633415,0.5590571,-0.2500852,0.22512701,0.048255794,0.3125611,0.35669592,0.16009557,0.1357729,0.1350005,-0.13366456,-0.11129924,-0.257343,0.42345232,-0.48119298,0.19128473,-0.37037554,-0.40819055,-0.10008204,-0.46247503,-0.44816345,-0.7881313,0.2881793,-0.9472621,0.52041996,0.203717,-0.27635422,0.097096086,0.26298466,0.20202538,-0.08755718,-0.0024880213,0.14483581,-0.22494146,-0.02691139,-0.23083429,-0.25494638,-0.50733024,-0.5427062,-0.12052274,-0.6178163,0.03825003,-0.18524384,0.10529502,-0.27181557,0.089568496,-0.08481775,0.38624382,-0.38966912,0.002652147,0.30472156,-0.12047969,0.31907728,-0.6064361,-0.334251,-0.08213407,0.26303202,-0.07928161,-0.4353954,0.37233403,0.13898374,0.40871602,-0.11365002,-0.23925366,-0.20983885,0.021834794,0.033749633,0.44046047,-0.16633256,-0.3997245,-0.20043118,0.021899303,0.36974865,0.12132641,0.14958902,-0.0891907,-0.09888693,-0.08461495,-0.04943615,0.40334558,0.65849143,-0.23147483,-0.075973935,0.36536422,0.5627995,0.25492984,-0.27255574,0.05811911,0.067467675,-0.5538241,-0.18471768,0.040115323,-0.1955792,0.653262,-0.09986903,0.25869092,0.5108944,-0.14512525,-0.09967911,0.13306883,0.15640792,-0.032113057,-0.19551982,-0.33298627,0.3599516,-0.44196722,0.052458517,-0.25890788,0.5668087,0.17145464,-0.5396272,0.24675386,-0.40617222,0.016608147,0.020275533,0.56139034,0.8509698,0.46959662,0.36454085,0.88895035,-0.339684,0.09110247,-0.121306166,-0.19801275,0.049361076,-0.2160981,0.13461486,-0.48508045,-0.03262448,-0.08765269,-0.09487634,0.29945654,0.6787066,-0.4579475,-0.23425578,0.23209509,0.7745565,-0.23707184,-0.11205702,0.7697091,1.023109,0.9949961,0.107232675,0.69806594,0.1363878,-0.2529811,-0.10171716,0.045298755,-0.79160315,0.2549163,0.23774716,0.33901212,0.4637956,0.20121503,0.17284457,0.33148694,-0.6000818,-0.00024483885,-0.024098685,0.26899308,0.09619497,-0.05131683,-0.41627645,-0.10951496,-0.13831888,0.09128022,0.036650773,0.24364528,-0.14327969,0.58540046,0.052138563,1.4668483,-0.10436293,-0.07385606,0.055008896,0.4882248,0.32025665,-0.35281345,-0.07345254,0.27792192,0.37140366,0.006023556,-0.48467588,0.014729607,-0.2464594,-0.32529026,-0.23585626,-0.300452,-0.13671055,-0.087522484,-0.49022,-0.23297386,0.0148100015,-0.31332216,0.4069015,-2.7521365,-0.002567699,-0.15083702,0.3979961,-0.17197552,-0.28888455,-0.41580242,-0.5314675,0.32607192,0.2792941,0.3430355,-0.6541597,0.34830442,0.2821507,-0.4823432,0.028931051,-0.62418145,-0.07509009,-0.06920239,0.31480488,0.18853569,-0.048020296,0.10583472,0.49615654,0.47275084,-0.072544016,0.14074832,0.3146856,0.44442698,-0.17860472,0.3936933,-0.073626205,0.47669607,-0.40022984,-0.1908251,0.3479684,-0.43078694,0.23998941,-0.17315893,0.11520662,0.63626105,-0.39971337,-0.9267043,-0.53153867,0.1675481,0.9733075,-0.27390596,-0.52301604,0.12694225,-0.51193666,-0.34869453,-0.108641505,0.5501896,0.01573191,0.045207877,-0.7382002,-0.21550891,-0.10693837,0.20439278,0.015444815,-0.19945505,-0.48105577,0.75087154,-0.027007908,0.5545498,0.23136576,0.20013665,-0.30121157,-0.45700377,0.15925609,0.83653694,0.34093553,0.16616358,-0.32815623,-0.13205853,-0.41526383,0.09305449,0.22361673,0.70691663,0.6478257,-0.11620132,0.16544667,0.2973102,0.11846528,0.0010264824,-0.20652226,-0.32626957,-0.14005052,0.014004214,0.6291556,0.88557446,0.046982672,0.2863598,-0.003912053,0.41291884,-0.25431773,-0.54376894,0.42559725,1.0846791,-0.08791105,-0.40112755,0.6073035,0.48652723,-0.108585,0.45188555,-0.6777466,-0.5798555,0.32261685,-0.0840772,-0.3653985,0.2157522,-0.4668927,0.27888635,-0.77815735,0.32570806,-0.093408026,-0.56983215,-0.6687962,-0.26699293,-2.2663817,0.18768324,-0.12050552,-0.14482518,-0.025433153,-0.32648388,0.3543007,-0.63355505,-0.55966467,0.27785563,0.07850697,0.8246865,-0.10637235,0.05233897,-0.21784727,-0.4421723,-0.2203801,0.23146972,0.14739601,0.33479545,-0.03929001,-0.5139808,-0.002706298,-0.17367622,-0.30526406,-0.03860597,-0.3815897,-0.54977936,-0.21753515,-0.364021,-0.13325833,0.46128336,-0.39601496,0.052407224,-0.26058328,0.049581368,0.1124798,0.13390045,0.13898708,0.2524783,-0.12246609,0.030951725,0.14737631,-0.19837978,0.22863005,0.10980115,0.21052179,0.31075272,0.009311383,0.09193263,0.63057137,0.56549907,-0.22841112,0.997582,0.57285863,-0.009173967,0.23471521,-0.01894064,-0.47778484,-0.6717868,-0.1889348,0.16634174,-0.56748515,-0.29678705,0.022188922,-0.4412772,-0.9501315,0.4553256,0.08118425,0.30399483,-0.028662745,0.35030976,0.46362478,-0.2716883,-0.050389443,-0.028301239,-0.22825047,-0.576924,-0.49433678,-0.58351326,-0.32872328,-0.021546151,1.2135618,-0.3218378,-0.032165658,0.20647337,-0.20852146,0.21985236,0.3056313,0.015361643,0.044182647,0.66487354,-0.07330416,-0.60487205,0.39935666,-0.3276126,-0.13862972,-0.7897552,0.10114295,0.42674428,-0.6343924,0.48576736,0.32958004,0.04840518,-0.36763552,-0.6451555,-0.20423968,-0.07725768,-0.30135137,0.5260153,0.3660922,-0.75078285,0.39577428,0.075339116,-0.32837865,-0.6657893,0.5972509,-0.109191224,-0.25152826,-0.19647422,0.26056555,-0.078827925,0.07989155,-0.19987117,0.05128425,-0.35468554,0.22550821,0.30826902,-0.033199977,0.03045559,-0.3728716,-0.14140446,-0.7638608,0.019575652,-0.59994125,-0.2698753,0.30393368,-0.024741128,0.16590276,0.1639559,0.10212271,0.26747563,-0.43328005,0.18625522,-0.24744044,-0.31938633,0.4367061,0.458504,0.5645001,-0.47956318,0.6346877,0.008058356,-0.26129338,0.0143590765,0.0463232,0.2712567,0.034832884,0.45309454,0.06317418,-0.14476745,0.1345708,1.0409094,0.15866731,0.34121528,0.119976535,0.006075927,0.17606314,0.12677003,0.24290672,-0.04881421,-0.59269506,-0.21223143,-0.4559458,0.12268913,0.38031432,0.06226184,0.33315513,-0.072313026,-0.25236988,0.021119084,0.17627229,0.15636584,-1.4211547,0.20232372,0.22679749,0.81630605,0.38515133,0.08469465,-0.03601771,0.6032415,-0.11948967,0.10814888,0.21984462,0.015006934,-0.26647797,0.390312,-0.57933635,0.47756758,-0.117964424,-0.024159823,-0.15864809,-0.0047187083,0.58924276,0.9120975,-0.25481105,0.12274854,0.12766007,-0.3114317,0.22703089,-0.35257646,-0.020340877,-0.7426793,-0.37563255,0.8373093,0.5454674,0.6064722,-0.10905258,-0.060073785,0.07434196,-0.12799251,-0.021392746,-0.02642573,0.10801261,-0.19328375,-0.7494639,0.02303026,0.5778282,-0.06894032,-0.018647121,0.11123909,-0.21817435,0.28414157,-0.038458895,0.16117807,-0.05265857,-0.793811,-0.088562295,-0.41662994,-0.6326632,0.65713584,-0.12333636,0.24847999,0.39804262,0.05281685,-0.1670139,0.32565275,0.008584755,0.76360375,0.0803218,-0.110812984,-0.542134,0.2243575,0.1828941,-0.2596219,0.045107525,-0.2343812,0.42353323,-0.54276377,0.5926898,-0.13041915,-0.17283355,0.06165961,-0.14669248,0.012011269,0.6455277,-0.10271154,-0.09737504,0.11199536,-0.077888764,-0.33183223,-0.21216698,-0.2551886,0.25233504,-0.09568528,-0.11658184,-0.12279367,-0.020331552,0.022330487,0.22560653,0.14087658,0.3734569,0.45190972,0.08781497,-0.30010244,0.024385989,0.1106276,0.70056915,0.034240626,-0.30391103,-0.34092695,-0.674941,-0.454803,0.30098337,0.030979216,0.2423902,0.1176952,0.1785331,0.7342389,-0.04056246,1.0434793,0.021844791,-0.43357378,0.115465835,0.590172,-0.05277794,-0.04408403,-0.3344478,0.7653319,0.4192131,-0.055984788,-0.056683917,-0.34219098,0.19489741,0.1743498,-0.14743601,-0.16509959,-0.08603437,-0.7228275,-0.07351637,0.12595785,0.2878618,0.25358006,-0.12850952,0.2731838,0.32259855,0.09189411,0.12584446,-0.6806523,-0.1700323,0.35514817,0.19297767,-0.043225866,0.07181378,-0.42940018,0.35983396,-0.36604792,-0.2801755,-0.37688494,0.11910469,-0.033464063,-0.43087196,0.2520953,-0.006000783,0.35038525,-0.67801696,-0.092950486,-0.35461935,0.4825314,0.12266326,0.17178318,0.41941684,-0.14862238,0.005916191,0.16466045,0.49950585,0.9870418,-0.39173713,0.05773283,0.5100974,-0.35737464,-0.5153699,0.2623026,-0.54074186,0.19665082,-0.085756786,-0.36569384,-0.6263858,0.25335968,0.17064519,0.13413924,0.14571527,-0.75650203,-0.16079462,0.0906593,-0.3001657,-0.22551052,-0.32257876,-0.012332133,0.38490424,-0.15190561,-0.19877471,0.010298086,0.30724528,-0.08807467,-0.4747377,0.10423194,-0.32455763,0.3906193,-0.008294902,-0.25446677,-0.24357714,0.0011466166,-0.4932533,0.20007889,0.12455739,-0.26923832,0.027190868,-0.3823557,0.15509346,0.90156156,-0.27162316,0.121603474,-0.38076243,-0.493311,-0.9142311,-0.32257292,0.19692217,0.10415138,0.0045895004,-0.63514423,0.08526581,-0.15424375,-0.11080396,-0.1832948,-0.33147508,0.5780945,0.13102129,0.4164071,0.034385916,-0.86107236,0.19688967,0.012190791,-0.22860429,-0.34714645,0.54937017,-0.054626398,0.9125004,-0.019756619,0.10262574,0.21942234,-0.54125345,0.3900322,-0.26468077,-0.0016852234,-0.6591162,-0.053744316 -793,0.2612925,-0.3004743,-0.3780605,-0.104483925,-0.029050576,-0.040195886,-0.04161811,0.428784,0.12308241,-0.33488163,-0.17059883,-0.33696622,0.08463601,0.2000241,-0.12082373,-0.47130612,-0.24494277,-0.033995155,-0.44429412,0.5980798,-0.3489613,0.07920973,-0.029523104,0.3418534,0.19974183,0.3304189,0.0053112092,-0.14168976,-0.029541254,-0.21180776,-0.12434174,0.18808174,-0.66908497,0.0718403,-0.022264259,-0.11823415,0.00659883,-0.57059985,-0.55588275,-0.5932993,0.3828315,-0.9051039,0.4631845,0.13660023,-0.03952124,0.4634969,0.025139295,0.2908734,-0.345013,-0.06550128,0.18423972,-0.07250709,0.1177429,-0.19928718,-0.103329025,-0.15336484,-0.49370462,-0.041195825,-0.26413736,-0.4743119,-0.3246413,0.06416187,-0.40012103,-0.0945673,-0.13715698,0.5194807,-0.41676757,0.17182356,0.21488388,-0.14320746,0.39551023,-0.5916017,-0.21623626,-0.08769398,0.22478434,-0.21409567,-0.13992788,0.21564916,0.23581603,0.16225466,-0.080703735,-0.051800225,-0.2192011,-0.14607516,0.2890119,0.43945152,-0.18665045,-0.4231933,0.071293384,0.18032596,-0.23795591,0.22329752,0.10293133,-0.35766172,-0.24691504,0.032443002,-0.18700527,0.30282027,0.40684965,-0.15991277,-0.25855872,0.38420922,0.41034713,0.28953466,-0.061169066,-0.17473856,0.044377122,-0.5365407,-0.10514261,0.037261274,-0.28442395,0.5118586,-0.080178335,0.21804234,0.6818483,-0.14201106,0.06768811,-0.03231559,0.03796267,0.023442177,-0.39771622,-0.196819,0.19196709,-0.25063026,0.27106392,-0.016550424,0.6832174,0.17210634,-0.6027968,0.34062195,-0.5855776,0.19347073,-0.11151978,0.48821023,0.51387507,0.37860093,0.49002832,0.58610255,-0.46892774,0.105029896,0.0060780644,-0.42450854,0.06028563,-0.07426173,-0.12476078,-0.4581414,-0.12001885,-0.010145233,-0.13128726,0.11743914,0.16273928,-0.42887035,0.06851025,0.24466673,0.9747601,-0.21207438,0.018812578,0.5815088,0.9368147,0.867843,0.074288085,0.94054157,0.09516309,-0.26804832,0.3098496,-0.27675942,-0.81889397,0.24754895,0.40920323,-0.11309944,0.11939899,0.16311537,-0.005752059,0.22118014,-0.37133318,0.11460066,-0.2545163,0.14200065,0.29079315,-0.19659552,-0.37577146,-0.15712231,-0.22353598,-0.01857585,-0.14068134,0.012049451,-0.10911242,0.30392203,0.013312464,1.7547338,0.021167208,0.16928083,0.102274254,0.38762915,0.14558369,-0.057524838,-0.08458662,0.5245521,0.45049766,0.31160703,-0.6412927,0.26892757,-0.14965881,-0.31418616,-0.080222055,-0.40146822,0.044863723,0.03810531,-0.3224193,-0.09162081,-0.13218667,-0.19761041,0.40840164,-3.1604452,-0.04997174,-0.13967687,0.34598795,-0.2516114,-0.21755911,-0.00899313,-0.37422392,0.44556063,0.36513966,0.5222215,-0.5940961,0.19186133,0.40247154,-0.45622107,-0.16454765,-0.5320715,-0.16058579,0.07972579,0.42436355,0.025424829,0.16452636,0.059927013,0.094705835,0.36795026,0.004296156,0.049511578,0.22140357,0.4720341,0.04634089,0.6622001,-0.08129129,0.4225101,-0.10730395,-0.11738073,0.1914575,-0.17187275,0.30308962,-0.03284258,0.113376126,0.38633382,-0.359734,-0.7625393,-0.54881,-0.37099215,1.1849355,-0.32997125,-0.3126256,0.3473655,-0.28062293,-0.25259152,-0.16631392,0.38541287,-0.110478885,-0.0852762,-0.7875419,0.017860197,-0.10432946,0.27126202,0.0130402185,-0.16740161,-0.46359092,0.63703704,0.021743318,0.46736023,0.46805507,0.048285425,-0.20433642,-0.44973865,-0.07199193,0.7736474,0.29877248,0.11854447,-0.20960191,-0.1751175,-0.16451451,-0.027617987,0.09107339,0.51734173,0.5507794,-0.05507634,0.1729206,0.2694592,-0.0023668546,0.015988262,-0.15484905,-0.20113407,-0.097884424,-0.18857478,0.43442598,0.586844,-0.14602445,0.38728574,0.008243795,0.28159603,0.09485049,-0.32825544,0.3684311,1.0495436,0.003768499,-0.2277299,0.43345514,0.48380595,-0.2797193,0.26781872,-0.32202017,0.007298758,0.6912431,-0.26377475,-0.5579906,0.39770615,-0.24157262,0.00486704,-0.83566993,0.2955085,-0.19006616,-0.52145076,-0.6442748,-0.13476992,-3.6586206,0.119415,-0.36617753,-0.3582896,-0.12513843,-0.13335837,0.117525905,-0.58817136,-0.5328439,0.19978389,0.1041952,0.5169933,-0.1481747,0.13731557,-0.25534174,-0.017099926,-0.19215035,0.16798598,0.19295636,0.2227148,-0.041009232,-0.3799427,-0.22079875,-0.026954876,-0.46359614,0.13045731,-0.5005751,-0.32901156,-0.07995362,-0.56962556,-0.28705272,0.63451993,-0.21545385,-0.07280523,-0.11109035,0.056046642,-0.15985925,0.20794685,0.21647933,0.29766214,-0.09742455,0.008063988,0.042896233,-0.32815382,0.41644093,0.13220051,0.29245698,0.19739944,-0.07102074,0.18671156,0.27314714,0.51227033,-0.053954855,0.6629482,0.4891106,-0.1565412,0.17580599,-0.40413892,-0.3230829,-0.5479446,-0.30563626,0.096681915,-0.29821345,-0.5380614,-0.09229236,-0.32864243,-0.6578871,0.48057446,-0.015006075,0.012092984,0.012517883,0.237804,0.5656701,-0.10903972,0.008202901,0.07757068,-0.0778106,-0.61278325,-0.10754328,-0.4997401,-0.40279862,0.1576828,0.65474063,-0.21858412,0.0122640915,-0.07925717,-0.3840437,-0.033109125,0.050218936,-0.17500421,0.3706781,0.44183797,0.08965463,-0.5714644,0.5940432,-0.102587104,-0.29748142,-0.67118794,0.20106865,0.53327554,-0.6255239,0.67360216,0.23109637,-0.08116167,-0.1527256,-0.40336528,-0.3191343,-0.17691554,-0.1399782,0.19618633,0.061798472,-0.599268,0.33546337,0.3809052,-0.24636687,-0.665797,0.52195936,-0.058946483,-0.45724905,0.1842699,0.23285219,-0.036493316,0.029500447,-0.011633782,0.33434945,-0.26856154,0.14901859,0.20780791,-0.059667394,0.16044536,-0.009839837,-0.065733396,-0.7449655,0.22359775,-0.3403913,-0.26568353,0.41914865,0.1519709,0.13696197,0.09001584,0.055763815,0.36168385,-0.14419152,0.16142409,0.004054292,-0.20464896,0.26354328,0.3470278,0.35022166,-0.5110299,0.5162172,-0.02259039,-0.06896522,0.107026294,0.17957598,0.3563766,-0.029391233,0.27417448,-0.009171688,-0.1300188,0.23809136,0.69346356,0.16795278,0.5739776,0.036755506,0.06084367,0.42933792,0.053684626,0.18289599,0.0526941,-0.6118777,0.18837279,-0.15405777,0.10933757,0.36416215,0.16917625,0.20233907,-0.16311875,-0.3796961,-0.006657853,0.4781712,0.29406914,-0.85002553,0.35164642,0.17339411,0.7675564,0.4588577,0.061798133,0.079960495,0.67158043,-0.095829114,0.0528094,0.29494917,-0.010432798,-0.6389439,0.44208738,-0.6540124,0.41709563,0.07315372,-0.08779511,0.0067724036,-0.058832135,0.3447054,0.64349186,-0.23576975,-0.06730027,0.07517986,-0.23136953,0.16954415,-0.48581484,0.15837945,-0.36769882,-0.34497517,0.44782373,0.6282224,0.20369527,-0.073387936,0.0061790487,0.03765682,-0.16427715,0.14236364,0.10350147,0.014916379,0.06827012,-0.8275318,-0.16773823,0.45530114,-0.18116735,0.19073106,-0.13752328,-0.120237656,0.34277508,-0.20455424,-0.17468296,-0.056465857,-0.69077295,0.26286498,-0.2643128,-0.49651334,0.2618343,-0.084637366,0.38333,0.14023295,-0.041730396,-0.133948,0.38278472,0.04164412,0.9120649,-0.12930363,-0.13152288,-0.54534185,0.104348145,0.0853566,-0.10862308,-0.009381115,-0.35706207,-0.0034765233,-0.4683615,0.47344765,0.09618558,-0.2841313,-0.10402071,-0.22748241,-0.015276512,0.58634675,-0.07758518,-0.061836455,-0.1736169,-0.3043799,-0.23142369,-0.069429144,-0.05284054,0.2889733,0.28468663,0.09079779,-0.039053857,0.017976325,-0.25739977,0.475798,0.049840245,0.5900069,0.17265862,0.06018017,-0.14684899,-0.39176434,0.08126342,0.45707446,0.0061378023,-0.11946269,-0.09286886,-0.4475556,-0.28063905,0.17512967,-0.11140398,0.5313688,0.023643076,-0.17955428,0.58133096,-0.1410423,1.0117817,-0.024782836,-0.32386,0.13798054,0.5799787,0.042577166,-0.14192985,-0.28405386,0.83485794,0.59178674,0.026926251,-0.09700576,-0.23545696,-0.042219102,0.0755416,-0.14856964,-0.13037676,0.013722376,-0.43547207,-0.16486028,0.08635083,0.19521922,0.33952382,-0.08278788,-0.026918415,0.13115685,-0.06724044,0.20963243,-0.31064174,-0.19119644,0.22531915,-0.012597712,0.03718153,0.0058748964,-0.49396974,0.48126903,-0.2426599,0.10223205,-0.3027508,0.18530765,-0.17145556,-0.16431767,0.16829467,-0.13896227,0.45111534,-0.4085844,-0.24016167,-0.2423582,0.3952827,0.193065,0.1714329,0.60623467,-0.19516698,0.18675733,0.020044757,0.5813874,0.7590392,-0.2711453,-0.0405983,0.37503004,-0.4351473,-0.4815219,0.33906958,-0.20944333,0.22802247,0.007259587,-0.06301709,-0.48600012,0.20294847,0.10950764,-0.0022161007,-0.03825494,-0.5792344,-0.3310327,0.21178213,-0.3443808,-0.18214332,-0.39857382,0.16553608,0.731439,-0.30580643,-0.23362753,0.0708887,-0.02864614,-0.13952118,-0.30935323,-0.0663803,-0.29452732,0.25918356,0.021384465,-0.28896523,-0.14413717,0.021914758,-0.27968615,0.23653929,-0.10116168,-0.3465369,0.0206543,-0.05342799,-0.2116083,0.96798503,-0.32031456,0.01964135,-0.60490423,-0.4543576,-0.6699246,-0.33164537,0.7392005,-0.13573964,0.07205625,-0.51714957,0.022595946,0.012261345,-0.14490546,-0.27329424,-0.29061657,0.46115282,-0.006180259,0.44030303,-0.21191362,-0.666061,0.28414363,0.07521879,-0.15549403,-0.74759126,0.5535939,-0.024330208,0.50329727,-0.0049123904,0.14653526,0.28863943,-0.32628188,-0.31032243,-0.25919583,-0.32582605,-0.6322652,0.1214982 -794,0.3943848,-0.075661555,-0.31394693,-0.11549943,-0.2104052,0.029265484,-0.040196445,0.47963363,0.2718353,-0.34441897,-0.018977718,-0.22953394,-0.0129863005,0.34718508,-0.1727217,-0.40141827,0.08673942,0.09827705,-0.37685043,0.45595106,-0.46622306,0.27376273,0.060022585,0.41663414,0.050473668,0.16822791,0.2620592,-0.14109941,-0.07230126,-0.20161486,-0.18752098,0.11142201,-0.29434922,0.09620006,-0.086420886,-0.35306817,0.05339257,-0.46183172,-0.23404782,-0.70269126,0.3649211,-0.61599505,0.4115315,0.14966525,-0.27101314,0.35064584,0.20601474,0.25451308,-0.14296076,-0.11519536,0.14393617,-0.03447777,0.028618727,-0.1561593,-0.18943235,-0.2686675,-0.46937233,0.0536365,-0.3559524,-0.21682642,-0.27042666,0.15158708,-0.26216573,-0.12766072,-0.006483163,0.5481164,-0.35580257,0.037408773,0.14565839,-0.20792672,0.3170618,-0.4240625,-0.19579104,-0.03084812,0.18520157,0.0058594174,-0.1570957,0.22265598,0.30123493,0.48946592,-0.17307116,-0.092338376,-0.39984432,-0.08543644,-0.060608957,0.6140519,-0.19563568,-0.53746617,-0.05322531,-0.084372945,-0.035240848,0.15813576,0.14813401,-0.21122113,-0.1604419,-0.065673895,-0.3035639,0.35588712,0.36968246,-0.41148618,-0.24472547,0.2936325,0.44297233,0.0604732,-0.13335893,-0.06475308,0.078460954,-0.5715175,-0.0892192,-0.05396344,-0.25004286,0.43300152,-0.17544007,0.44706184,0.63609254,-0.044235785,-0.07075335,0.16347568,0.0846426,-0.0625069,-0.20576112,-0.1862749,0.23234548,-0.41663882,0.028266728,-0.18130676,0.85660183,0.07162015,-0.72389126,0.40255246,-0.46397564,0.10885346,-0.13651182,0.41357726,0.61202174,0.2596251,0.33590665,0.676061,-0.4531974,-0.042863376,-0.04261067,-0.28965324,0.029511413,-0.044698834,0.089715295,-0.49731636,0.0003234148,0.14995345,0.014063435,0.19725738,0.18127096,-0.48099712,-0.0715787,0.3268898,0.8698268,-0.185095,-0.08207505,0.6200748,0.97688115,0.84389085,-0.03732517,0.7560269,0.11694968,-0.1643958,0.3191655,-0.3324133,-0.5277799,0.26397377,0.32722092,0.2719726,0.034952324,-0.04950159,0.0014024632,0.36771232,-0.2800017,0.023143062,-0.13802065,0.06413395,0.3245562,-0.13299909,-0.38315317,-0.42137548,-0.03989774,-0.004112584,0.105988406,0.23814045,-0.2866478,0.26360133,-0.14434111,1.6088047,0.037491255,0.13218017,0.13665105,0.62191284,0.18832915,-0.018371332,-0.09063117,0.25227922,0.2241977,0.07693737,-0.5136828,0.132886,-0.20407331,-0.5651793,0.00706657,-0.31022057,-0.1649972,0.055541765,-0.4816101,-0.110173285,-0.095078364,-0.40172395,0.551752,-3.098613,-0.21615745,-0.0055507272,0.22011276,-0.24663387,-0.18789856,-0.17122276,-0.4300792,0.34758124,0.44583383,0.4813641,-0.67431027,0.27617565,0.44431728,-0.4710957,-0.13187973,-0.556254,-0.10532357,-0.09429581,0.18386401,0.17198303,-0.002838056,-0.082188435,0.23053493,0.58941686,0.09813773,0.08965169,0.23253112,0.2537065,-0.023660276,0.38241106,-0.047306087,0.39382505,-0.35230985,-0.15424602,0.21170232,-0.4592987,0.07842906,-0.1669322,0.12478089,0.42099732,-0.39266843,-0.9385342,-0.60456276,-0.10033246,1.1681968,-0.056958675,-0.34101042,0.36195427,-0.24914496,-0.14069273,-0.06829593,0.5664844,-0.04917379,-0.05315555,-0.65448374,0.13413377,-0.0987523,0.16759412,-0.0042617777,-0.16175464,-0.3419726,0.70015174,-0.04957372,0.4672921,0.31317848,0.12169839,-0.42257574,-0.3351957,-4.1921223e-05,0.6408539,0.2758973,0.18375464,-0.1325859,-0.060818274,-0.40076664,-0.011429416,0.053754605,0.43025154,0.61013573,0.0033132222,0.118063495,0.26616284,-0.015524566,0.0018703894,-0.0972694,-0.20790277,-0.026857296,0.0111859385,0.5381519,0.63170254,-0.17080142,0.30080628,-0.056922354,0.28097725,-0.34949926,-0.3844954,0.5577551,0.61947125,-0.12683132,-0.22718604,0.59006685,0.40010232,-0.21775453,0.29279107,-0.55727863,-0.32492894,0.43095022,-0.16408578,-0.4362421,0.04817995,-0.29584584,0.10168517,-0.7021025,0.2594247,-0.16936652,-0.36590648,-0.43335444,-0.0991691,-3.642319,0.24521582,-0.20765492,-0.19918837,-0.033410754,-0.04324208,0.053476878,-0.51765645,-0.4362065,0.041316193,0.14861374,0.6953045,0.009230288,0.114709,-0.20259826,-0.25533316,-0.28173342,0.104266,-0.11485378,0.35505685,0.1462696,-0.35664257,-0.029259602,-0.1629843,-0.4683923,0.095234476,-0.52579784,-0.38872358,-0.112360306,-0.4380024,-0.3663734,0.5932728,-0.38267472,0.1356927,-0.27107129,-0.050546475,-0.09455078,0.44165295,0.20711836,-0.027057394,-0.086253405,-0.054496985,3.786385e-05,-0.16159037,0.25968677,0.009868233,0.21699236,0.42252937,0.028215805,0.15506402,0.54031575,0.58881253,-0.086928196,0.82130563,0.3038366,-0.07511777,0.25855628,-0.25682458,-0.15664218,-0.32548282,-0.20204616,0.053822864,-0.28614178,-0.41260883,-0.038722724,-0.31715065,-0.6784882,0.44895414,0.006765952,0.122316994,-0.0570043,0.22792159,0.45636687,-0.30599812,0.034406953,-0.005416649,-0.03899457,-0.5096431,-0.3102667,-0.5748147,-0.34128568,0.13360159,0.8217602,-0.19453064,0.077601574,0.027097987,-0.08208938,-0.1099785,0.052883502,0.0660665,0.16303699,0.248752,-0.24576737,-0.59480506,0.4723261,-0.20555861,-0.16638903,-0.42952982,0.13400266,0.5167946,-0.50526893,0.4638125,0.2818085,0.14286351,-0.19785678,-0.4861989,-0.23909487,-0.00070455245,-0.22289072,0.29686812,0.14983037,-0.7519681,0.39046416,0.32649544,-0.140677,-0.66437244,0.33127072,-0.02928311,-0.5369881,-0.17559573,0.25963244,0.27476358,0.07439295,-0.075333044,0.1521004,-0.49589697,0.12084186,0.07315935,0.015583977,0.45284867,-0.2546487,-0.14441206,-0.5986094,-0.12919591,-0.40817195,-0.27552307,0.12420569,0.19859235,0.13892889,0.32066685,-0.10561466,0.24492535,-0.2730877,0.09445041,-0.056721736,0.02681051,0.3440707,0.38029233,0.5068343,-0.41470376,0.636984,-0.050854106,-0.07884868,-0.04582824,-0.0725851,0.33986703,0.07281488,0.4263428,-0.22211833,-0.28687,0.35328746,0.66129386,0.17321506,0.32071003,0.00043603778,-0.078588195,0.27736303,0.014898293,0.10024665,-0.043218702,-0.42875388,-0.04237338,-0.34866244,0.1583979,0.43334523,0.07095319,0.24759957,0.051391516,-0.29940215,0.10190316,0.16502444,-0.11901432,-1.1072206,0.41561314,0.1669759,0.8038503,0.5157138,-0.053165358,0.024255501,0.8479185,-0.12463276,0.21003577,0.2072152,-0.02059418,-0.53743196,0.6787041,-0.6272119,0.46560726,-0.094859995,-0.069583386,-0.051720712,-0.06325381,0.34532136,0.47617748,-0.07845022,0.04537922,0.06030794,-0.36937648,0.11052386,-0.32170707,0.20739324,-0.6345092,-0.20121157,0.5438443,0.4890303,0.2011524,-0.22612718,0.023618756,0.02285355,0.037181694,-0.031248672,-0.11975794,0.093279906,-0.1532962,-0.67620575,-0.04257426,0.552826,0.03716026,0.17322595,-0.015642107,-0.15719365,0.18207777,-0.16451423,-0.11145481,-0.10515077,-0.5375486,0.02983648,-0.20655538,-0.4266723,0.47684377,-0.21981654,0.36832073,0.123856656,0.041626785,-0.2371142,0.30366114,0.13940266,0.46586213,0.01587786,0.07486869,-0.24100105,0.11440692,-0.017424421,-0.21103773,-0.23514833,-0.27663484,-0.033989597,-0.4519351,0.34251496,0.03601765,-0.2091786,0.027403219,-0.12286501,0.098309316,0.5809794,-0.012578837,-0.108033605,-0.1859916,-0.23913105,-0.24545571,-0.04864051,-0.09350791,0.37114885,0.04028431,-0.13916834,-0.055116635,-0.15456775,-0.18040256,0.3928414,-0.084133364,0.3313742,0.23720257,0.10520983,-0.30729872,-0.018323822,-0.021868851,0.42522594,0.007477671,-0.116127275,-0.2734193,-0.32360655,-0.2828782,0.14462626,-0.09251416,0.27145562,0.13790396,-0.1780219,0.78123146,0.045471344,1.0071462,0.029358605,-0.2264845,0.05365092,0.3139383,0.041621305,-0.016709464,-0.29560876,0.7380596,0.4538097,-0.10963211,-0.15139784,-0.20351478,0.12310589,0.23545375,-0.17644887,-0.17467014,0.056430068,-0.6178303,-0.221025,0.20016594,0.19591291,0.25553873,-0.14287536,-0.06486074,0.2470536,-0.014778295,0.39095837,-0.41514298,-0.10144241,0.2869031,0.41603425,0.0818795,0.091846004,-0.38965273,0.40356913,-0.54228556,0.057733234,-0.346279,0.20859767,-0.34777233,-0.22733645,0.16228984,0.170045,0.36679772,-0.13399622,-0.3529909,-0.18720962,0.44178706,0.23852985,0.09546037,0.40574726,-0.15971112,-0.1193004,0.0566527,0.5092173,1.0019741,-0.29315105,-0.13329752,0.35667023,-0.20741044,-0.6448316,0.28941864,-0.26812765,0.13205849,0.063675635,-0.09900997,-0.4487365,0.31367776,0.28456205,0.16105373,-0.032795098,-0.45888704,-0.32220456,0.36564854,-0.2502659,-0.22562933,-0.33935574,0.10854819,0.49532455,-0.11022605,-0.19740532,-0.0025135023,0.373931,-0.23549278,-0.5683722,0.18811755,-0.34864935,0.35481718,0.18297611,-0.29337624,-0.23413499,0.06862808,-0.530345,0.15096545,0.106174305,-0.28439608,0.13354768,-0.35874945,0.031990346,0.8663401,-0.101877026,0.24846375,-0.45463568,-0.39696822,-0.8414776,-0.3093259,0.59162056,0.024583116,-0.036267273,-0.57198876,-0.09989377,0.0011571987,-0.21274118,-0.12120167,-0.25587264,0.38118312,0.071168706,0.29852238,0.040630687,-0.5762995,0.0665984,-0.029085595,-0.1968204,-0.48148608,0.35623506,0.08509113,0.8791257,0.062267993,0.015551686,0.37983724,-0.31139827,0.034248747,-0.19207093,-0.24041693,-0.5660847,0.15625156 -795,0.25804704,0.18375205,-0.61238045,-0.048184726,-0.22579108,0.09379627,-0.25830474,0.37647682,0.31153706,-0.36594114,0.20861535,-0.16284975,-0.08170707,0.2048539,-0.14794643,-0.38361424,0.11772569,0.19699161,-0.34009764,0.5388423,-0.37194154,0.24481368,0.19944046,0.32592422,-0.16109465,0.089221835,0.080787025,-0.21702139,-0.17086084,-0.40153164,0.011862227,0.09634183,-0.6315025,0.08654975,-0.33636945,-0.13666034,0.20014443,-0.5059008,-0.29831147,-0.7087711,0.14011966,-0.64662164,0.67659885,0.043622762,-0.32234785,0.40222624,0.23022914,0.16175935,0.060785897,0.07282738,0.3566952,-0.46780038,-0.3498452,-0.2749517,-0.18618187,-0.36040905,-0.49462208,-0.1725215,-0.49775288,-0.122046575,-0.3847703,0.21156332,-0.3712396,-0.099641,-0.20368405,0.35736153,-0.30590242,0.2781971,-0.09549354,-0.29792503,0.29208705,-0.6023854,-0.08089999,0.11579657,0.17156795,0.040685125,-0.19636394,0.25617164,0.13150509,0.3740601,-0.16948555,-0.18462166,-0.22227128,-0.028070148,-0.039671797,0.6471879,-0.31248918,-0.13182941,-0.10224606,0.007008461,0.28251323,0.28949302,-0.20684126,-0.16333118,-0.016397651,0.010297273,-0.33161178,0.44428185,0.5010682,-0.15033697,0.106587596,0.3713221,0.12310854,0.36057588,-0.06848506,-0.014486213,-0.16116036,-0.48201078,-0.06787061,0.03889374,-0.030077858,0.40252998,0.054116454,0.34985605,0.6529316,-0.11200071,-0.1065368,-0.012491842,0.21841688,0.32227793,-0.12480136,-0.14483438,0.3759794,-0.59986305,0.16558209,-0.21674332,0.5898584,-0.22277525,-0.68157446,0.26597264,-0.42787367,0.021628339,-0.053932764,0.55391955,0.637737,0.8187346,0.081800155,0.87478626,-0.48581335,0.13412525,-0.14545593,-0.32211375,0.30720732,0.043189492,0.38933375,-0.39739186,-0.028922996,0.08917611,-0.16883005,-0.014785303,0.40743,-0.4448596,-0.15128973,0.1524491,0.82019347,-0.2547466,0.078983195,0.60345894,1.0296732,0.6823243,0.10125642,0.850484,0.13900958,-0.048466653,-0.13720696,0.084714904,-0.7878814,0.2280319,0.27178988,0.21278028,0.057544358,0.21475472,-0.17161763,0.27643606,-0.27020907,-0.448925,-0.094552435,0.4143137,0.0023947316,-0.055020917,-0.40855008,-0.3489025,0.0982586,0.15081933,0.29311207,0.15998194,-0.23338784,0.2893987,-0.024370287,1.3357402,0.012854372,0.13544852,0.15861486,0.30334815,0.22512658,0.14899799,-0.10989874,0.38815212,0.20880279,0.136143,-0.40275973,0.031797577,-0.100334525,-0.4994118,-0.016108867,-0.26731828,-0.14253572,-0.19518168,-0.3306151,-0.1540428,-0.11506103,-0.4045436,0.36328813,-2.879739,-0.08378373,0.04797232,0.43358773,-0.06064767,-0.25625253,-0.11565709,-0.29508573,0.61536986,0.2712778,0.5368199,-0.42048174,0.2684246,0.4297245,-0.53263795,-0.29706553,-0.56377584,-0.043940306,-0.013829662,0.3441573,0.009780535,-0.34408256,-0.14023645,0.051485043,0.5163508,-0.042665046,0.10857566,0.3428812,0.4646091,-0.10900546,0.42338377,-0.2594529,0.46685305,-0.21407714,-0.085914716,0.18042995,-0.22413948,0.2138222,-0.46864662,0.12614672,0.4817929,-0.22682588,-0.7290756,-0.17587028,0.12704906,1.2709887,-0.27620187,-0.5899369,0.21521063,-0.22937812,-0.25855544,0.16932432,0.61444175,-0.083118275,0.06404734,-0.5513846,0.03283661,-0.084475674,0.275123,-0.025890654,0.12529527,-0.5245933,0.50566775,-0.016498659,0.5994794,0.3997003,0.23164037,-0.18747197,-0.24054167,0.10519772,0.69764197,0.3205907,0.093936324,-0.15717152,0.05986579,-0.09090512,-0.20592722,0.022833297,0.6150188,0.6094078,-0.048832476,0.058940947,0.23109804,-0.21788792,-0.025437113,-0.180635,-0.39439657,-0.14301287,-0.107945316,0.45157126,0.65592223,0.11711564,0.42606488,0.06628927,0.20767032,-0.1703849,-0.42353302,0.35112217,0.5428077,-0.23540927,-0.058377713,0.60445726,0.37101963,-0.05821493,0.38829723,-0.55180424,-0.51213175,0.48864564,-0.110505514,-0.6038051,0.29415473,-0.27472374,-0.022912553,-0.6873378,0.18744092,-0.28342932,-0.68779784,-0.5014987,-0.09616019,-3.0052855,0.1055754,-0.28864264,-0.19703965,-0.20240262,-0.12861319,0.18183951,-0.28104106,-0.4560365,0.12838934,0.23680057,0.59539706,-0.16330864,0.05594639,-0.31068322,-0.32799625,-0.11459057,0.2006912,0.045687653,0.110329404,-0.030264948,-0.26008478,-0.143338,-0.12568362,-0.29749945,0.059162933,-0.43742758,-0.2001278,-0.0004217827,-0.41109702,-0.25244087,0.64619356,-0.41844335,-0.025744174,-0.23656188,0.15838686,0.22526683,0.2298418,-0.023234142,0.1537354,0.042850792,-0.07091941,0.074526675,-0.17500547,0.30401808,0.105784826,0.3275518,0.3881107,-0.063273,-0.03077461,0.5049867,0.44475526,-0.07309,0.92735547,0.15646707,-0.019939993,0.2675294,-0.25937322,-0.10886313,-0.47935343,-0.20370086,-0.04799989,-0.33726594,-0.23978105,0.014028736,-0.29181,-0.84024566,0.6289135,0.15736273,-0.07607595,-0.06378708,0.427928,0.4265651,-0.26117155,-0.07356799,-0.053359788,-0.15110552,-0.34494677,-0.16694771,-0.7946177,-0.37852287,-0.18038759,0.83784896,-0.24941316,0.012099688,0.16481106,-0.14700767,0.008484493,0.066634946,0.15108185,0.08555757,0.22736827,0.20432003,-0.752299,0.47379735,-0.35065144,0.019435091,-0.7005523,0.1837662,0.5928556,-0.6923837,0.3122962,0.6095872,0.11085602,-0.23505309,-0.6641827,-0.13421433,0.12710425,-0.23169778,0.2976211,0.077858284,-0.85671407,0.5733576,0.22028854,-0.3038072,-0.7190699,0.3556711,0.008241273,-0.37833923,0.00820443,0.3480087,0.21817777,0.04115658,-0.16498844,0.1907023,-0.3926371,0.53220385,-0.010511756,-0.13546577,0.5498101,-0.11943947,-0.11473997,-0.73070914,-0.025048127,-0.42510763,-0.33296958,0.3186648,0.013096692,0.058673028,0.18634664,0.13962415,0.33717328,-0.4545279,0.05353229,-0.38857314,-0.31521183,0.4852452,0.63215256,0.44437405,-0.32344607,0.59638083,-0.078975014,-0.13270536,0.07636043,0.0656923,0.4157808,0.036169592,0.32273182,-0.11027513,-0.2646722,0.0965459,0.7624522,0.1023407,0.28848404,0.06595634,-0.059107143,0.38294956,-0.011175781,0.1072575,-0.09255916,-0.5770299,-0.10420636,-0.31886545,0.055941846,0.43953663,0.29840443,0.36598715,-0.010642439,-0.12692142,-0.012243445,0.12067743,0.123463646,-0.76106316,0.57528347,0.2409025,0.63972515,0.4452502,0.06751635,0.07537572,0.7276038,-0.039698355,0.033999283,0.18385716,0.04189114,-0.19972023,0.5046132,-0.6684181,0.25492102,-0.07872987,-0.046950005,0.32043788,0.038412947,0.4654273,0.8427057,-0.17556801,0.0743499,-0.072195105,-0.2774065,-0.063783534,-0.17665324,-0.016923467,-0.34026745,-0.42997402,0.70175236,0.33315626,0.24786462,-0.2752393,-0.047785062,0.24885897,-0.10259073,0.2236164,0.11192957,-0.08210679,-0.03374247,-0.5467205,-0.15959,0.47194427,0.15525678,0.08114047,-0.016725043,0.09665977,0.39011267,-0.2087187,-0.14117137,-0.043245245,-0.4664268,0.15499756,-0.40410858,-0.4450477,0.36510995,-0.12751558,0.32357913,-0.0057795444,0.043565784,-0.031567056,0.31998846,0.23673066,0.6755365,0.018026872,-0.33171263,-0.15285002,-0.14237776,0.06355189,-0.22905938,-0.12279214,-0.109590285,0.034293916,-0.6122127,0.27108118,-0.54828554,-0.13848259,0.19209497,-0.19613968,-0.012569906,0.33881754,0.010498515,0.010850315,-0.04384309,-0.3047952,-0.24835308,-0.36354217,-0.38395062,-0.0009525589,-0.1023646,-0.1967783,-0.1601734,-0.02833524,-0.20963581,0.35789734,0.023475531,0.122201525,0.23585963,0.32660434,-0.2310033,-0.030319622,0.080072634,0.6495784,-0.03779947,0.050232615,-0.3219847,-0.2508811,-0.35907888,0.049299307,-0.12734896,0.20455739,0.14485586,-0.19999687,0.8920859,-0.07330114,0.7097691,-0.08471084,-0.33810112,0.0989302,0.5127123,-0.06594594,-0.049475845,-0.3220031,0.88819027,0.5164123,-0.04794664,0.050715547,-0.37076044,-0.022787081,0.3390492,-0.3239523,-0.2002467,-0.10369728,-0.5315135,-0.3145556,0.20174982,0.16660585,0.017332157,-0.19771716,-0.072385974,0.31026343,0.28447118,0.16370371,-0.5128115,-0.031181008,0.40188858,0.22240429,-0.012504228,0.12927999,-0.35186937,0.36509532,-0.47132906,0.13075118,-0.393866,-0.028765019,-0.12204211,-0.065560445,0.16896427,0.08943052,0.2827699,-0.2494118,-0.34453267,-0.07876439,0.16536011,0.24984208,0.21563654,0.46828693,-0.2566144,-0.29405928,-0.13838102,0.5881354,0.90504324,-0.34335133,0.11453043,0.5364448,-0.37613842,-0.5321066,0.07685827,-0.36333615,-0.020544622,0.022135973,-0.30479088,-0.23254299,0.16198006,0.06336071,-0.13840453,-0.18451118,-0.4931539,0.002680523,0.21462862,-0.14488801,-0.2514426,-0.23413923,0.12767425,0.80365,-0.24846628,-0.13548836,-0.043305654,0.31673828,-0.19100149,-0.53589994,0.2055156,-0.50409317,0.21691366,0.019604325,-0.30866736,-0.091843195,0.01596232,-0.63739204,0.068208985,0.058725126,-0.27715755,-0.09571355,-0.30756623,0.19873294,0.6712891,-0.1819711,0.16512842,-0.3609118,-0.5028153,-0.65679073,-0.18063787,0.074448004,0.18634382,-0.023575336,-0.44175383,-0.03679871,-0.22062485,-0.20355244,-0.264928,-0.47812027,0.34410483,0.10856589,0.3575016,-0.34165603,-0.9382868,0.21056321,0.033484083,-0.32803035,-0.34803215,0.3399763,-0.085042015,0.67661905,0.016123964,0.04892545,0.21967462,-0.59130573,0.24879,-0.37324095,-0.18573438,-0.64938277,0.12411226 -796,0.24468338,-0.15643705,-0.5126499,-0.14078392,-0.32228133,0.15812752,-0.16043136,0.2982214,0.1641237,-0.30314705,-0.19443662,-0.17430958,0.066703886,0.5130237,-0.13886823,-0.57073736,-0.12269125,0.09603318,-0.7556391,0.39031982,-0.5843498,0.28363183,0.12536731,0.29818648,0.1863581,0.4223796,0.36461163,-0.323728,-0.29660267,0.05471142,-0.23427786,0.028461793,-0.42056045,0.1376186,-0.11920613,-0.22948392,0.13964246,-0.47246197,-0.14057375,-0.6069217,0.13195479,-0.8123375,0.28685868,-0.08291559,-0.06928355,-0.019445566,0.16064887,0.34920686,-0.39678442,-0.0075515755,0.2418039,-0.11654326,-0.094901994,-0.16616826,-0.1351895,-0.39032826,-0.36508578,-0.03152839,-0.51093256,-0.44673607,-0.16379885,0.17695948,-0.3025327,0.17845547,-0.14101788,0.18641631,-0.420157,0.004051741,0.24324757,-0.1808635,0.026891403,-0.4808358,0.052693017,-0.08511874,0.43792623,-0.09160257,-0.027510252,0.42401764,0.23796679,0.4028138,0.20581996,-0.27773044,-0.2451297,-0.15918745,0.26235798,0.4329361,-0.10078273,-0.28907344,-0.16767423,0.047638107,0.25121325,0.26662338,0.050792236,-0.2907505,-0.12467014,-0.09549138,-0.17271906,0.27931744,0.5750471,-0.22216313,-0.197161,0.38251835,0.62139565,0.18081088,-0.1745733,-0.16521028,-0.03868723,-0.47818723,-0.1757961,0.15635468,-0.024930667,0.50076026,-0.090497464,0.20617226,0.8704868,-0.19370638,0.10547412,-0.18203686,-0.09026043,-0.21009612,-0.16371864,-0.08608235,0.024251254,-0.4823417,0.02341594,-0.19890979,0.77332264,0.20339732,-0.8138925,0.33967662,-0.39332753,0.15930068,-0.08809531,0.6131432,0.4900039,0.310348,0.24436176,0.74179846,-0.4380157,0.28871033,-0.14831379,-0.47947457,-0.038950615,-0.16017824,0.05556484,-0.48093924,0.12710583,-0.17318496,0.07638251,-0.0005896372,0.2311467,-0.40632686,-0.029401982,0.15687926,0.70295465,-0.43946803,-0.06220697,0.6048723,1.0032203,0.8821705,0.011747573,1.1589625,0.3870976,-0.3141978,0.16177088,-0.49081966,-0.6413666,0.15521212,0.3299013,0.21756351,0.2191677,-0.07177313,-0.042808477,0.25210527,-0.41329747,0.15941955,-0.1302715,0.17735049,0.040604115,0.13148654,-0.36252815,-0.20301425,-0.037306253,-0.078006804,0.08726194,0.19315542,-0.27920878,0.35167632,-0.05885693,1.630984,-0.014623765,0.064030774,0.022199428,0.5462192,0.09404823,-0.073631,-0.11784619,0.4159646,0.42583236,-0.16011661,-0.6643846,0.17793933,-0.33147126,-0.53502333,-0.1588579,-0.4229607,-0.15328497,0.07563648,-0.4474672,-0.10005997,0.026582733,-0.28511745,0.43395433,-2.7754173,-0.1729519,-0.21217687,0.18668601,-0.30630943,-0.18277562,-0.028756602,-0.48144633,0.17356162,0.32414535,0.432493,-0.5616768,0.49337596,0.3810407,-0.3900757,-0.15527873,-0.63031286,-0.009656843,-0.020446567,0.40403897,-0.10207806,0.015891496,-0.10984531,0.053147607,0.5747927,-0.10918707,0.17766908,0.48247933,0.32694775,0.30419376,0.5152894,0.16830833,0.63453424,-0.30154034,-0.10326477,0.28477934,-0.26107597,0.31704578,-0.012852006,0.14793742,0.4474693,-0.4081532,-0.67429435,-0.6104084,-0.3645409,1.0623691,-0.44049475,-0.32803357,0.26916134,0.049015436,0.03514238,0.0153627815,0.43452352,-0.056748718,0.012553118,-0.6413925,0.20576537,-0.07022015,0.17976248,0.018965427,-0.012026815,-0.18779269,0.742851,-0.07755142,0.5890711,0.28086662,0.20595141,-0.03827039,-0.26760477,0.12758459,0.8145688,0.1498785,-0.051799245,-0.13059203,-0.37748623,-0.20157053,-0.2711973,0.07975675,0.29294404,0.8094818,0.07061252,0.06581401,0.21455832,-0.087696396,0.030066343,-0.037406832,-0.18868749,-0.052904412,0.008367163,0.33916372,0.5793138,-0.1259814,0.4718291,-0.28687888,0.36980173,0.032158468,-0.45226076,0.59516674,0.36910602,-0.14490339,0.015261084,0.31696385,0.597322,-0.39488715,0.40674454,-0.62878174,-0.16561732,0.75349164,-0.1417744,-0.32021,0.11550551,-0.22317299,0.09845843,-0.81358284,0.2825026,-0.19990088,-0.33905864,-0.39735517,-0.112936795,-2.7748075,0.18356197,-0.23846963,-0.28607142,-0.1196959,-0.038665034,0.17306569,-0.71416473,-0.4050948,0.019831285,0.17301697,0.5664397,0.13069156,0.09851717,-0.22251414,-0.016947066,-0.13857798,0.09095273,-0.0753332,0.27267942,-0.07818076,-0.37784478,-0.06116209,-0.14196008,-0.43839532,0.2206965,-0.4978112,-0.41147253,-0.17940189,-0.38805005,-0.24195138,0.50902057,-0.30464828,-0.049421817,-0.18421175,0.040367775,-0.23762837,0.16413648,0.25388327,0.065878324,0.22562908,-0.08046079,-0.006554407,-0.4176361,0.35301313,-0.016266627,0.35951334,0.25557426,0.16002925,0.12561737,0.31540897,0.5560247,-0.16144341,0.77051747,0.21956955,-0.10201494,0.25084203,-0.24074554,-0.11340604,-0.57226515,-0.37140256,-0.18030459,-0.33014977,-0.55045617,-0.034255538,-0.2852001,-0.7628727,0.4787786,-0.037214037,0.21499434,-0.042796545,0.15620591,0.48954177,-0.1447263,0.025058543,-0.13597839,-0.030696757,-0.4973811,-0.4284792,-0.7028236,-0.496229,0.13856646,0.92288744,-0.16392651,-0.11208579,-0.19352634,-0.33678278,-0.019687517,-0.012054235,0.04646738,0.40318888,0.2894726,-0.24124381,-0.59328663,0.5399664,-0.04740816,-0.05719935,-0.40771186,-0.05424931,0.5293808,-0.5978167,0.47854283,0.3981605,0.08378482,0.26308414,-0.40066195,-0.29518396,-0.07038204,-0.17358764,0.28725255,0.037471827,-0.7231698,0.45780396,0.22410582,-0.37389547,-0.77655476,0.22977765,0.056584157,-0.28839877,0.05180304,0.28007048,0.11514853,-0.12757054,-0.29781634,0.13185406,-0.38129878,0.30632228,0.3268769,-0.023149276,0.06520655,-0.11085052,-0.3525116,-0.5568841,0.00018971808,-0.4066738,-0.15037675,0.2594107,0.016278457,0.11381685,0.11720868,0.10008524,0.38922092,-0.335237,0.043684218,0.118086785,-0.26599425,0.08382141,0.30701205,0.3881887,-0.43701485,0.5364876,0.076894425,-0.1848422,0.0956989,0.023904208,0.4129152,0.2020105,0.23563696,-0.10343294,-0.2661916,0.49891213,0.6710447,0.18120833,0.33992073,0.055546828,-0.2516143,0.43495747,0.09091763,0.11301852,0.12608722,-0.3170016,0.09502018,0.099645294,0.25386468,0.35607585,0.30507842,0.51610076,0.059199024,-0.13563809,0.101925336,0.1394254,-0.1463957,-0.7843897,0.28003925,0.27314305,0.8429385,0.4251594,-0.08836047,-0.18516275,0.6823058,-0.28747678,0.16413607,0.3364756,-0.020400448,-0.513537,0.6878516,-0.5811303,0.40628636,-0.23612095,-0.12238247,0.113824286,0.13531365,0.20660266,0.7380867,-0.19780493,0.009288795,0.07994844,-0.2727017,-0.025884852,-0.30302036,0.103326544,-0.49986088,-0.33053225,0.5706094,0.23064223,0.24438155,-0.049537938,-0.081589125,0.012114449,-0.17247045,0.15952988,-0.004245978,0.122308426,0.229586,-0.52355886,-0.37248117,0.4887668,-0.14359117,0.23489329,-0.13839178,-0.3748043,0.035861693,-0.3703091,-0.045598075,-0.00091444043,-0.56675,0.07346827,-0.11874123,-0.43981197,0.20916797,-0.19408691,0.21802644,0.20696351,-0.027849674,-0.1927051,0.3393723,0.12991928,0.8219714,0.010242939,-0.2932632,-0.33373556,0.027944867,0.35281962,-0.19992624,0.19388399,-0.36677405,-0.09761812,-0.57219696,0.5888545,-0.11338297,-0.31677288,0.20799932,-0.33189118,-0.05904767,0.61189026,-0.067905106,-0.15470445,-0.094013534,-0.046980623,-0.38678688,0.12497013,-0.39843535,0.19294278,0.24977903,-0.055336975,-0.11793023,-0.12996855,-0.11828103,0.46086803,0.12383175,0.47835922,0.10787292,-0.06572754,-0.20640033,-0.030981489,0.16119182,0.34240386,0.26386172,-0.031695012,-0.3368463,-0.33909482,-0.20578133,0.1667031,-0.16996263,0.15146403,0.13108452,-0.3039549,0.731454,-0.021590699,1.1736596,0.18889731,-0.29056415,0.053591013,0.4723393,0.014967712,0.18252671,-0.42109367,0.7698328,0.49140784,-0.05003009,-0.10816344,-0.37581435,-0.22029726,0.4271085,-0.26747546,-0.067556076,-0.021001043,-0.4863884,-0.46892846,0.28050783,0.1060898,0.10994968,0.03233831,-0.06250701,-0.011321467,0.077500485,0.5958897,-0.62868905,-0.21076997,0.12721048,0.075545505,-0.05492303,0.28056127,-0.45319426,0.5602893,-0.658704,0.13271178,-0.30004,0.10520243,-0.19868934,-0.27077284,0.1286956,0.056767732,0.42393738,-0.2800649,-0.47506708,-0.13331892,0.5991577,0.0937984,0.40442464,0.57708955,-0.30491915,0.09299618,0.14605758,0.48418134,1.0845773,-0.4402051,0.064411476,0.42664036,-0.33816314,-0.5479629,0.42659375,-0.24577843,-0.1114437,-0.09399324,-0.38197353,-0.39595288,0.44695333,0.23690614,-0.04741946,0.16538016,-0.4706951,-0.00264625,0.47955972,-0.29007855,-0.33137122,-0.18664543,0.42754996,0.72695166,-0.3842187,-0.20041978,0.102597386,0.2869287,-0.33034053,-0.40418315,-0.11451412,-0.20227051,0.33510858,0.017941061,-0.19864172,-0.06626775,0.08996073,-0.2797018,0.15660018,0.18973239,-0.38545614,0.024719672,-0.09984699,-0.039202668,0.8217314,-0.13394938,-0.09774869,-0.75184494,-0.40723357,-0.8708803,-0.5699341,0.31287503,0.11778342,-0.049471978,-0.24783202,-0.022822887,-0.064051524,-0.173235,0.08042767,-0.48064333,0.3987594,0.16881311,0.42286465,-0.23507595,-0.9090293,0.031456154,0.05025058,-0.22094569,-0.5270972,0.56362206,-0.11666289,0.8252504,0.020420333,-0.10476029,0.0812704,-0.33668038,0.19894342,-0.47677264,-0.17245881,-0.707754,0.12188827 -797,0.35128206,-0.35259262,-0.30392164,-0.10132961,-0.21642487,0.028410358,-0.2935532,0.3140229,0.19212379,-0.4004237,-0.21420279,-0.24627332,-0.087442845,0.37384588,-0.19479132,-0.42819685,0.019444285,0.04539102,-0.59049004,0.7161303,-0.32949582,0.1800862,0.12182975,0.37550774,0.42336676,0.12854871,0.20845374,-0.07409059,-0.09774239,-0.2490818,-0.085743636,0.05543193,-0.4766248,0.14934745,-0.20882562,-0.35649788,-0.07960692,-0.4519491,-0.31113622,-0.90354645,0.37220833,-0.82502234,0.4156518,-0.07782791,-0.29786718,0.3642606,0.15767305,0.41413757,-0.10047618,-0.06892372,0.16744089,-0.1357006,-0.017992616,0.075297005,0.04079963,-0.25228608,-0.59407395,0.0765799,-0.4076509,-0.18002471,-0.25975654,0.17142442,-0.40047595,-0.00085221924,0.018406475,0.5833256,-0.39093438,-0.07948282,0.097434774,-0.028200952,0.434418,-0.6366449,-0.2726925,-0.098459825,0.28205392,-0.121297516,-0.16874322,0.18118066,0.34915817,0.3969073,-0.027606212,-0.12190895,-0.2557842,-0.09825303,0.25295454,0.49379054,0.032691393,-0.5165228,-0.08507983,-0.18257971,0.31467286,0.058409214,0.2017324,-0.33136162,-0.119621545,0.070589624,-0.2555342,0.3335477,0.46667525,-0.22450629,-0.18614179,0.37050077,0.52537155,0.33201954,-0.16390572,0.11326961,-0.010836997,-0.44143716,-0.055402327,0.20548905,-0.2552804,0.6180912,-0.27205437,0.31533167,0.5466881,-0.06188034,0.15720142,0.012663971,-0.05443012,-0.22553632,-0.16040818,-0.25189006,0.15081838,-0.4655084,0.17993411,-0.3029531,0.7765693,0.12502596,-0.6874561,0.30841503,-0.5034186,0.2107077,-0.055004086,0.5558016,0.73434806,0.24848244,0.36785635,0.66479623,-0.2810306,0.07285475,-0.07454537,-0.29604387,-0.028014509,-0.24026486,-0.019140037,-0.48947042,-0.04316378,0.06358167,-0.031551257,-0.060567677,0.37864476,-0.41282168,-0.03882749,0.15563494,0.7278492,-0.17264089,-0.0056637325,0.93424803,1.0142769,1.0324944,0.2327535,1.0870864,0.13920663,-0.17658718,0.15932664,-0.22136301,-0.70673794,0.32236564,0.28707185,0.3617015,0.15761106,0.06815561,-0.119864464,0.4674025,-0.5219481,0.1562252,-0.20016654,0.032362446,0.18059094,-0.08400955,-0.32746518,-0.20978314,0.021200204,-0.031064553,0.08886998,0.17937501,-0.19960798,0.41705927,0.09177467,1.3873342,-0.1080053,-0.08608093,0.07278811,0.489733,0.06892673,-0.25728923,0.015453053,0.16737908,0.48847646,-0.0077149393,-0.6225891,0.26609126,-0.106094345,-0.5140203,-0.14098135,-0.23129721,-0.057360515,-0.0042974055,-0.44047913,-0.08994781,-0.1603114,-0.40306523,0.38536522,-2.761569,-0.19944303,-0.19794306,0.2158875,-0.23293108,-0.14195783,-0.06374032,-0.44118387,0.46828553,0.37865883,0.4343668,-0.7678472,0.3182958,0.47966784,-0.55644125,-0.03868488,-0.7334551,-0.22608744,0.07136362,0.5107374,0.057550065,-0.027873604,0.06350438,0.28056005,0.50710183,0.061008446,0.14337297,0.28239077,0.26801127,-0.008684399,0.4109722,0.06749236,0.3970796,-0.1405294,-0.09478856,0.41490793,-0.34887388,0.29537338,-0.09859465,0.23671053,0.46405533,-0.38232243,-0.81440765,-0.70201045,-0.34602642,1.2641796,-0.17696385,-0.5808385,0.2843745,-0.24607745,-0.1548165,-0.09970277,0.55057085,-0.2152778,-0.041876968,-0.9137201,-0.08649881,-0.12562597,0.21585886,-0.030691423,-0.088435106,-0.3681379,0.7433549,-0.03933387,0.4628237,0.34382707,0.31642583,-0.34168562,-0.5365696,0.12072647,0.88951796,0.4583822,0.098592825,-0.33239153,-0.21179147,-0.3916996,-0.21097402,0.092817314,0.42619947,0.73531526,-0.008150447,0.24071772,0.25670427,-0.0053935605,-0.043720208,-0.121517144,-0.19312544,-0.15642487,0.0144699095,0.5867189,0.5949821,-0.117933035,0.40772387,-0.15677975,0.1687424,-0.13536571,-0.40472183,0.65373385,1.1065958,-0.210874,-0.2197049,0.5244526,0.36942944,-0.2641142,0.44210097,-0.5768743,-0.1911168,0.41170552,-0.073138684,-0.5253514,0.28838545,-0.36076683,0.25020573,-0.899771,0.31020433,-0.3386069,-0.34596673,-0.6371351,-0.043428563,-3.171425,0.0892776,-0.19664618,-0.4399777,-0.3019576,-0.29729068,0.28309524,-0.46559468,-0.57574636,0.14539878,0.13315052,0.6503266,-0.035504103,0.08090326,-0.2855385,-0.07750866,-0.34493002,0.08680454,-0.027320711,0.41217864,-0.15897699,-0.41322958,-0.076072134,-0.23985846,-0.43542254,-0.043204315,-0.38817674,-0.5087848,-0.14461944,-0.32647964,-0.3546363,0.5163266,-0.22092745,0.033790335,-0.34149742,-0.11697957,-0.1538923,0.55829865,0.22144733,0.07868929,-0.03305561,-0.0760012,-0.012364873,-0.23656088,0.08094723,0.06809939,0.08813857,0.42397258,-0.13641429,0.40114415,0.4085409,0.5625301,-0.20848827,0.8294089,0.5666079,-0.027724396,0.20263754,-0.21473083,-0.2644809,-0.46563762,-0.24950129,-0.0112530785,-0.35631177,-0.5268618,-0.034294147,-0.26394367,-0.7879563,0.41794366,-0.015944896,0.20724894,0.050195765,0.1029524,0.37958708,-0.075424574,0.0055395365,-0.0001818498,-0.057465434,-0.6318239,-0.3359967,-0.7406558,-0.55259055,0.0095628975,0.7577921,-0.16883428,-0.09382392,0.14355221,-0.32447782,0.07941284,0.17853202,0.01813991,0.042080607,0.30047673,0.015540898,-0.7661136,0.5561911,-0.015622632,-0.16579133,-0.4512763,0.1278711,0.4959067,-0.42663854,0.40984944,0.33966428,0.015089726,-0.28532636,-0.5051588,-0.19031283,-0.109950304,-0.22971973,0.42998123,0.20924084,-0.6311773,0.46944943,0.27825895,-0.10750394,-0.7476912,0.47000244,0.040809676,-0.16050074,0.0022384485,0.34324515,0.07506725,0.05776692,-0.2005673,0.25575623,-0.41259113,0.20854998,0.24517685,-0.019500662,0.24803303,-0.24193183,-0.19237547,-0.536093,0.055423684,-0.5192446,-0.19196859,0.13146576,0.08074595,0.13700292,0.16074055,0.06018373,0.36213627,-0.20316286,0.18442051,-0.009238513,-0.14100622,0.16692461,0.5418661,0.40591103,-0.38630307,0.62150264,0.061456773,-0.2264576,-0.009105782,-0.007910581,0.37410805,0.21971372,0.27385706,-0.016667146,-0.1668197,0.19908278,0.6879269,0.2537778,0.5053148,0.06419368,-0.16467346,0.4551619,0.106042765,0.415193,-0.16141647,-0.52091604,-0.103398435,-0.26653954,0.09190996,0.54302955,0.07005574,0.29630885,-0.027356565,-0.24614884,0.0054249484,0.022282563,-0.1275918,-1.3769149,0.3851004,0.28881648,0.8369662,0.6369241,-0.22408663,0.22792435,0.6401506,-0.21280275,0.12023282,0.2838785,0.15188381,-0.6282731,0.49327004,-0.8074048,0.32810986,-0.0448848,0.029753506,-0.005288494,0.03627532,0.36807507,0.5631169,-0.22610556,0.051134888,-0.06198067,-0.30780157,0.19225867,-0.39890158,0.08042465,-0.4645527,-0.26974156,0.5836881,0.5102366,0.26051968,-0.23877957,0.021702262,0.09859329,-0.07388503,0.13783345,-0.003694431,0.07476855,-0.14883514,-0.63664263,-0.19093516,0.49812835,-0.23909579,0.13460293,-0.021606838,-0.27483132,0.041608762,-0.13416515,-0.12767698,-0.05660402,-0.79504627,-0.059666764,-0.2361051,-0.3898938,0.3680607,-0.30848485,0.27107805,0.28305155,0.0031597754,-0.27343616,0.10905086,0.08517061,0.6090144,0.010251713,-0.08538588,-0.35167205,-0.0025664528,0.29683372,-0.15215617,-0.1886438,-0.13803454,-0.046325993,-0.5279494,0.5207021,-0.07965045,-0.2406324,0.24373375,-0.13983777,-0.030257886,0.57931775,-0.20135394,-0.15936807,0.022550609,-0.15196756,-0.1305552,-0.18000862,-0.12716044,0.36367854,0.2436327,-0.043211997,-0.08833534,-0.005210964,-0.0017219861,0.45925054,0.010643598,0.45706692,0.44056505,-0.04826211,-0.5562385,-0.065856665,0.21105734,0.37626177,0.10557257,-0.20870902,-0.25529203,-0.4565726,-0.3278932,0.25554457,-0.13739343,0.29652387,0.013082592,-0.28370982,0.6875423,0.16785179,1.011442,0.0371497,-0.49026278,0.16169351,0.4378437,-0.07681978,-0.06757429,-0.34154448,0.6627875,0.39910182,-0.08444183,-0.039325114,-0.33644047,0.010055805,0.2709888,-0.10847092,0.024650939,-0.037387643,-0.6482965,-0.24310054,0.15639868,0.23102781,-0.029921258,-0.17643413,0.0016691685,0.21410204,0.0077655236,0.42573765,-0.5248938,-0.0060706614,0.3514859,0.05979762,-0.03502233,0.050416075,-0.4231061,0.3448824,-0.5660192,-0.013447412,-0.18014218,0.1748691,-0.02306794,-0.20003088,0.2320834,0.0535167,0.39391166,-0.3578924,-0.35639107,-0.33293456,0.5298932,0.2001802,0.17154616,0.49737498,-0.25764066,0.27270824,0.039148543,0.5234944,1.08163,-0.29551503,0.02484407,0.16174269,-0.3708455,-0.5287719,0.36585337,-0.3042882,0.2955218,-0.026240153,-0.26848742,-0.67918515,0.24911973,0.3294263,0.16416268,0.009919643,-0.6003535,-0.39446634,0.31997263,-0.3376523,-0.268462,-0.39382136,-0.08568074,0.46830457,-0.22804162,-0.2998828,0.0034891048,0.2591986,-0.1636495,-0.4374656,-0.0013043284,-0.30769876,0.28955948,0.06471618,-0.32423046,-0.18708111,0.106349364,-0.48882666,0.112614915,0.06562255,-0.26869604,0.017894184,-0.27287674,-0.004286136,0.92685664,-0.28324836,0.122630954,-0.55230165,-0.5160314,-0.677756,-0.42629465,0.5037497,0.17276584,0.045712035,-0.595635,0.019309647,-0.16338307,0.08162999,0.022955727,-0.43911526,0.5007801,0.18952905,0.31946337,-0.048279054,-0.5880509,0.08577394,0.033776946,0.013879089,-0.4442365,0.47944835,0.18141378,0.7150395,0.1229305,0.16960558,0.064360335,-0.3820441,0.054882843,-0.106791504,-0.28236225,-0.61605376,0.17659582 -798,0.42433453,0.10965278,-0.7235157,-0.13569754,-0.56342894,-0.048483957,-0.21842927,0.2150045,0.31662688,-0.0608235,-0.057522893,0.15303272,-0.19403009,0.4073415,-0.04882281,-0.95475894,-0.027754536,0.19546266,-0.71673733,0.5327232,-0.30899838,0.34420633,-0.12204301,0.43148944,0.10454998,0.18092062,-0.110569604,0.09334161,0.11693648,-0.26967877,0.110785805,0.007094905,-0.73249584,0.18683068,-0.039246596,-0.38702098,-0.057903226,-0.5207536,-0.45425132,-0.7111148,0.4807819,-0.69092345,0.6399881,0.13536352,-0.27688092,0.015265651,0.18821146,0.29276368,-0.14171563,0.03631995,0.383823,-0.5070086,-0.00028047213,-0.20055795,-0.14852391,-0.2553223,-0.5926359,-0.267283,-0.49626365,-0.04431893,-0.2516762,0.18861604,-0.34581867,-0.1214126,-0.46339846,0.47179428,-0.47273052,0.17385046,0.26123002,-0.18492137,0.1319672,-0.5706102,-0.1090297,-0.09977911,0.37727436,-0.0050263205,-0.34373644,0.5863487,0.07426072,0.30810907,0.025805548,-0.28554454,-0.2869281,-0.073124245,0.060266167,0.5774496,-0.31327745,0.027082175,-0.18202941,-0.042172182,0.35098734,0.27771086,-0.08039432,-0.25835085,-0.05826639,-0.13445915,0.07912778,0.6500711,0.44668886,-0.2544959,0.018454045,0.46764407,0.48520306,0.3924013,-0.24523754,0.026448593,-0.06825119,-0.54033655,-0.1553167,0.20807175,-0.16379595,0.26805535,-0.005445426,0.049756687,0.69170004,-0.1644552,-0.22594528,-0.07212073,0.08511124,0.4609857,-0.21283095,-0.23241675,0.41402233,-0.55561477,0.44756973,-0.18750751,0.67771274,0.11899959,-0.6364217,0.24307865,-0.65208936,0.16597255,-0.045498487,0.6930318,0.8416354,0.5320988,0.27947173,0.906157,-0.4340026,0.23237224,0.28347537,-0.27416846,-0.075541764,0.08538422,0.26927748,-0.46516395,-0.17524791,-0.36096182,-0.09983399,0.15780288,0.27310646,-0.36560178,-0.2313804,0.03923544,0.77189225,-0.27253902,-0.051210444,0.9004914,1.0347548,1.1261247,-0.08943117,0.7893478,0.04655799,-0.12630068,-0.34116688,-0.11003923,-0.49010873,0.15397996,0.340484,0.03069961,0.31760234,0.06677862,0.06751991,0.45566878,-0.4062489,-0.19006474,0.02263394,0.47593084,-0.03472903,-0.120548725,-0.52615917,-0.18449454,-0.045632333,0.09088122,-0.076611295,0.40846667,-0.30522713,0.2566245,-0.09789608,1.0432863,0.1850553,0.16473104,0.08059728,0.50663453,0.24692632,-0.24025579,-0.12900175,0.14406864,0.3173301,-0.037958246,-0.54981273,0.03845414,-0.42653492,-0.3072925,-0.17432934,-0.40052494,-0.31881937,0.027407631,-0.5019236,-0.16232474,-0.0056638047,-0.20705557,0.45402148,-2.4129775,-0.12151884,-0.08350312,0.3372022,-0.057242308,-0.34180072,-0.19710441,-0.48237872,0.41247365,0.1758892,0.53142256,-0.52941054,0.5619084,0.44959888,-0.5362641,0.10361707,-0.65113497,-0.18230493,0.21715778,0.21658134,-0.1413755,0.025598833,0.102318235,0.27236566,0.62903005,0.25195262,-0.057086542,0.2864764,0.4798603,-0.29191682,0.4833137,-0.036110535,0.57591623,-0.2453397,-0.19548558,0.37627697,-0.38730553,0.4075471,-0.27940926,0.0140402615,0.5565193,-0.5250692,-1.012072,-0.30312696,-0.15861318,1.0518755,-0.25498453,-0.5832333,0.24016963,-0.34358823,-0.2056212,0.031735834,0.6797002,-0.22903407,-0.04496269,-0.570884,-0.103653215,-0.25352982,0.19811134,-0.11260264,0.2598097,-0.41408315,0.7098337,-0.19533215,0.4518319,0.2843438,0.17586106,-0.23957486,-0.4398683,0.10471498,0.6330295,0.57267696,0.09281484,-0.2763081,-0.10412648,-0.1402571,-0.23891038,-0.0042180815,0.9525013,0.5559066,-0.18684769,0.06341525,0.3691676,-0.1404532,-0.06341955,-0.19343458,-0.3862207,-0.23263647,-0.023460725,0.5726356,0.8638628,-0.029332718,0.48995087,0.052164216,0.03314814,-0.17126572,-0.5446974,0.3765444,0.6354088,-0.13404681,-0.23032515,0.5796019,0.31526235,-0.15655772,0.4604118,-0.54460126,-0.21837085,0.604241,-0.12614435,-0.55810785,-0.07255033,-0.3391018,-0.039186504,-0.6547932,0.32151073,-0.4221485,-0.98835355,-0.45973304,-0.17756309,-2.639459,0.21064235,-0.37461242,-0.01939421,-0.22293031,-0.18146145,0.06102402,-0.6306405,-0.55201954,0.114787124,0.0447658,0.66858584,-0.20417476,0.14948872,-0.21432789,-0.33415365,-0.21074396,0.34691855,0.34373626,0.30040953,-0.06253631,-0.21369398,0.14194258,0.007517206,-0.54910034,-0.0843778,-0.41589022,-0.36063942,-0.06731149,-0.48980674,-0.21083193,0.69514847,-0.4253451,0.066220656,-0.26770386,-0.065101534,-0.047746792,0.22169833,0.29056162,0.4827493,0.12966427,-0.07431248,-0.07281439,-0.059191078,0.32481998,0.14094934,0.63300794,0.23645115,-0.011815551,0.18986666,0.5995387,0.76790816,0.058008805,0.9078062,0.323634,-0.11448487,0.16639079,-0.30413,-0.32224658,-0.80034,-0.44024745,0.0009292364,-0.47761226,-0.51272184,-0.060191315,-0.41254607,-0.91146445,0.44815812,0.05662517,0.25932434,-0.10355864,0.2710265,0.390306,-0.30580807,-0.048705976,-0.07827976,-0.09324866,-0.40126002,-0.27181458,-0.6629805,-0.4536147,-0.059264272,0.9833711,-0.31134465,0.01629667,0.26354071,-0.5045603,0.1598788,0.13900942,0.06753553,0.033227343,0.22757526,0.025679221,-0.50863075,0.37766328,-0.32278237,0.09318277,-0.7927522,0.17257945,0.72596806,-0.46988907,0.74024504,0.33278129,0.044770446,-0.23959029,-0.8161395,-0.28278232,0.22930269,-0.25755084,0.3946202,0.21647567,-0.63438153,0.2982748,0.007944738,-0.27415708,-0.68996054,0.58492845,0.06463943,-0.429111,0.20137249,0.4433777,-0.028225103,-0.28870004,0.1023274,0.6063719,-0.35980847,0.3990136,0.18099366,-0.05121829,0.085368596,-0.12391112,-0.30347246,-0.7229163,0.0667099,-0.6474621,-0.43973994,0.11561531,-0.045307714,0.12212968,0.11837059,0.36789623,0.3548348,-0.27299735,0.31322998,-0.36367488,-0.46560922,0.432193,0.47734046,0.5674434,-0.5086778,0.6944997,0.16898155,0.02799075,0.3495226,0.239074,0.6131219,-0.20552312,0.4724846,-0.082605645,-0.0042034686,-0.120452724,0.6845681,0.18603571,0.3228447,-0.022205314,-0.16732891,0.07239085,0.12669231,0.33078325,-0.13786852,-0.46880493,0.104649104,-0.017242143,0.054211836,0.5149392,0.24784012,0.20448191,-0.116078295,-0.10572495,0.1528276,0.13542032,-0.018508783,-1.4224125,0.7059245,0.38732255,0.95610315,0.39875722,0.16849567,-0.04201061,0.6282601,-0.2587013,-0.0034483671,0.4590249,0.014325812,-0.33456206,0.5515521,-0.6134785,0.5569007,-0.02553401,-0.003187808,0.27866018,0.17316818,0.40500402,0.6996515,-0.29199994,-0.042188123,8.8969864e-05,-0.42601535,0.01693368,-0.30037466,0.11154106,-0.52014023,-0.41543067,0.6709776,0.5792058,0.2275964,-0.24150597,0.029266,-0.08472249,-0.2097177,0.13555868,-0.12495921,-0.12513776,-0.1892276,-0.46294728,-0.19319099,0.35136208,-0.46003798,-0.12647519,-0.08835611,-0.021607267,0.31158698,-0.060076177,-0.005049641,-0.078065746,-0.841958,0.12644733,-0.37700343,-0.26544607,0.211255,-0.45895016,0.34425846,0.2804083,0.039282795,-0.14919849,0.44648838,0.04517135,0.696145,-0.053115945,-0.13437873,-0.31274983,0.17052643,0.18205673,-0.18434002,0.20439827,-0.31423596,0.18579455,-0.6754446,0.36896965,-0.4148152,-0.38302907,-0.26191172,-0.19623165,-0.041414946,0.38105503,-0.20438915,-0.20398365,0.073141545,-0.3414574,-0.3205918,-0.13196565,-0.26733494,0.09187838,0.09805594,-0.120253526,-0.17682248,-0.10579511,-0.14508893,0.2924988,0.08159446,0.28405926,0.2732299,0.1419657,-0.35721433,0.021789348,0.0379487,0.5151982,0.04331726,0.028682942,-0.3135986,-0.21915503,-0.33956477,0.59422916,-0.23480421,0.30871347,-0.0038528803,-0.20541598,0.77724665,0.19349028,1.184665,-0.014844258,-0.40475345,0.016473135,0.5824769,-0.11639886,0.04671229,-0.2947694,0.8546276,0.4581796,-0.086953096,-0.07375519,-0.32210946,0.010834704,0.28676996,-0.24905758,-0.23546362,0.013913701,-0.5166263,0.013037209,0.23748542,0.14608575,0.13308531,-0.19140156,-0.2717543,0.29924402,0.21594481,0.21096165,-0.6216545,-0.11868923,0.31308368,0.094866045,0.108617604,0.3084489,-0.31338182,0.3194762,-0.6965472,0.2952132,-0.52941275,0.16344447,-0.19300288,-0.276361,0.18587996,0.12597376,0.3936871,-0.26506698,-0.092790574,-0.11150143,0.3607346,0.37707326,0.23669495,0.6972448,-0.22011192,-0.11501164,-0.057452098,0.44765913,0.9635625,-0.17854668,0.01147072,0.28458259,-0.31253994,-0.7011666,0.08892878,-0.53738403,0.0036193703,-0.17957018,-0.3693535,-0.42873427,0.060973864,-0.0699608,-0.06669008,0.08636909,-0.77382857,-0.12429774,0.25575253,-0.29955882,-0.3037839,-0.36555967,0.33571196,0.8628374,-0.1409582,-0.33524227,0.07605163,0.25069305,-0.13826756,-0.45878422,0.48122966,-0.3106555,0.23091064,-0.1223573,-0.5496709,-0.06571107,0.29319584,-0.4438881,0.218004,0.29859295,-0.28787887,0.037147325,0.05059768,0.119425245,0.8143401,-0.23342896,0.2957855,-0.44996342,-0.53121114,-0.7805963,-0.34301946,0.050044622,0.25235754,-0.16712166,-0.77699167,-0.16023116,-0.23061377,-0.049244303,-0.09678966,-0.5223856,0.4248208,0.1897645,0.47406626,-0.19685501,-1.0773406,0.10699117,0.1447461,-0.30172917,-0.37913302,0.47359347,-0.051670957,0.77103657,0.099478476,0.00052812445,-0.07349389,-0.3809007,0.46032643,-0.29096052,-0.09054222,-0.5647079,0.061427653 -799,0.44777218,-0.24677786,-0.48636416,-0.21677725,-0.35503483,0.32909012,-0.40264782,0.41743466,-0.012197399,-0.58576506,-0.14054416,0.10223996,-0.09800225,0.39509794,-0.24348983,-0.5704552,0.015281489,0.24918866,-0.5132228,0.42424172,-0.5707546,0.33554208,0.052481472,0.33268964,0.10119511,0.21967497,0.06920053,0.032250576,-0.14606136,-0.061408166,-0.021512967,0.30183986,-0.5927454,0.449832,-0.083741814,-0.26958635,-0.06073112,-0.44218272,-0.20574856,-0.6434384,0.14288789,-0.73494315,0.45835158,-0.16197146,-0.48748296,-0.01106436,0.07738555,0.26672262,-0.3880083,0.089217156,0.21859895,-0.16168642,-0.2846064,-0.26046944,-0.09921581,-0.4871837,-0.5351584,0.02721968,-0.6091064,0.010758505,-0.18552718,0.28347316,-0.17924558,0.08294474,-0.21030268,0.1485336,-0.48130453,0.042476714,0.28936768,-0.16940166,0.06331502,-0.5759668,-0.1583634,-0.21578282,0.2740118,-0.0038059307,-0.20418574,0.08754224,0.3832555,0.7213549,0.069205396,-0.1931584,-0.10986351,-0.14481798,0.34721744,0.44468406,-0.054571785,-0.2379769,-0.41180304,-0.16427001,0.38371155,0.13441831,-0.018629588,-0.48196852,0.043288454,-0.020164521,-0.23544417,0.27844328,0.38279852,-0.38142425,-0.063019,0.34409478,0.5689417,0.11732464,-0.14524387,0.27772215,0.027890772,-0.4412322,-0.27818087,0.2738548,0.108067796,0.58734167,-0.15827993,0.24780497,0.59046054,-0.033605747,0.05034956,0.0018955126,-0.07379342,0.00059080124,-0.2901367,-0.19855794,0.1346428,-0.4622904,-0.022960229,-0.24940978,0.65982056,0.113389306,-0.6001547,0.37065446,-0.48122296,0.10587224,-0.07039492,0.6003407,0.7990563,0.4183187,-0.070037395,0.8688506,-0.57036805,0.051644977,-0.182925,-0.16345622,0.022264678,-0.111618645,0.10339183,-0.4689429,0.23641366,-0.050550167,-0.016812338,-0.18583068,0.4591537,-0.37254927,-0.18921067,-0.111175284,0.43522936,-0.48238987,-0.020505257,0.9527007,1.0091369,1.0339314,0.21669485,1.5541458,0.37080145,0.08500917,-0.18908978,-0.12628743,-0.53913254,0.14978361,0.2682266,0.5646888,0.19920236,0.13411132,0.06997584,0.52237767,-0.2755763,0.17311741,-0.15479864,0.32549903,-0.091048986,-0.017388344,-0.36169177,-0.24920405,0.18044971,0.054718282,-0.044029865,0.291913,-0.22086252,0.49948066,0.14294943,1.2461369,-0.17874326,-0.041299462,-0.04412963,0.091828786,0.18655385,-0.20343623,-0.10913908,0.17491928,0.45803463,-0.20671052,-0.61209065,-0.09340877,-0.17737392,-0.49944025,-0.22255479,-0.34421355,-0.053040225,-0.32021222,-0.44467437,-0.048179187,0.12635551,-0.32582253,0.5554441,-2.1974084,-0.44229332,-0.3504379,0.32775396,-0.24371368,-0.4024232,-0.31686875,-0.31305748,0.47305724,0.28105992,0.35233575,-0.51878697,0.6078156,0.30307415,-0.31618148,-0.15089561,-0.73846555,0.033059247,-0.07602521,0.20772862,-0.0042257104,-0.3032977,-0.24180096,0.13425504,0.70818424,-0.14596978,0.09228587,0.3665729,0.5526917,-0.1063821,0.54715264,0.14567767,0.5521298,-0.393451,-0.1108631,0.43068296,-0.512715,0.5414823,0.064102545,0.26719853,0.29380408,-0.58615166,-0.721878,-0.86002,-0.5006301,1.2318431,-0.39516094,-0.38229164,0.098250695,-0.21565373,-0.31474292,0.15600434,0.4167282,-0.0031929244,-0.012444625,-0.88157046,-0.139815,-0.040800277,0.1561981,-0.10553773,0.15462501,-0.45472234,0.69489646,-0.24827531,0.59915245,0.61755186,0.21533273,0.12649593,-0.2138853,-0.024487834,0.9662444,0.5328148,0.020514717,-0.27049673,-0.29367658,-0.27214867,-0.20411721,0.03950949,0.6646709,0.61655796,0.057580207,0.10980192,0.29069218,-0.15223056,0.014425294,-0.22168079,-0.3655419,-0.1283308,0.20762242,0.6528261,0.5842781,-0.012609463,0.33218992,-0.2045131,0.20252919,-0.2149745,-0.5657415,0.35986108,0.70373714,-0.12245737,-0.13622269,0.6079508,0.46757036,-0.34214735,0.37878683,-0.5547596,-0.3929332,0.5234188,-0.016902072,-0.26821983,0.07075586,-0.38666075,0.020459335,-1.0456446,0.3818293,-0.31454185,-0.6330379,-0.5331197,-0.33307302,-2.5843318,0.2979849,-0.073055655,-0.05883191,-0.17279403,-0.3476933,0.43366453,-0.434325,-0.65974617,0.18677361,-0.027631879,0.5033958,-0.072029516,0.011567602,-0.31945705,-0.17988198,-0.06622151,0.14127979,0.024427176,0.31701902,-0.026099874,-0.32255414,0.0894932,-0.397504,-0.33762577,-0.03551013,-0.79855084,-0.49883586,-0.060580492,-0.4010873,-0.173615,0.7166951,-0.5055057,-0.078199945,-0.25535262,0.010829659,-0.26072377,0.42785138,0.107402414,0.2376175,0.23918988,-0.03923422,-0.3356066,-0.36486593,0.07305356,0.18231504,0.092162535,0.35227495,-0.24896976,0.26624987,0.5521252,0.67738366,-0.13606158,0.84513164,0.23806928,-0.019861933,0.3426266,-0.2439846,-0.29329115,-0.43500835,-0.40444213,-0.29392654,-0.5452975,-0.48706034,-0.118634544,-0.22766227,-0.87745374,0.38107792,0.12746558,-0.07916951,-0.11077844,0.2316672,0.23014523,-0.13352884,0.03201679,-0.1682145,-0.16717614,-0.5316918,-0.6130314,-0.6343517,-0.5943735,0.09318801,1.3498574,-0.13600455,-0.043152615,0.08199019,-0.4219753,0.11880991,0.2182439,0.1678219,0.020687938,0.38577646,-0.09273918,-0.63697445,0.20661439,-0.099442914,-0.23113619,-0.49052972,-0.012846053,0.9454494,-0.6085183,0.62600136,0.55257076,0.17734753,0.19019549,-0.6035604,-0.29460528,0.120189354,-0.26192778,0.6272658,0.19061872,-0.67448705,0.46988553,0.35743824,0.014203429,-0.77299446,0.5573377,-0.0997062,0.12545927,0.14592847,0.43138072,0.04539915,-0.020298103,-0.23671879,0.24384898,-0.47221628,0.32799795,0.47457367,0.041512344,0.30715436,-0.24814898,-0.32670137,-0.66136384,-0.32047743,-0.5985938,-0.24672024,-0.017102746,-0.056412704,0.018256346,-0.02261273,0.3358445,0.31652334,-0.5759372,0.17678162,-0.18652418,-0.4101558,0.24340893,0.53902984,0.40304178,-0.39512655,0.558217,0.09144003,0.19262491,-0.34713304,0.0121933725,0.39754993,0.2785063,0.37362406,-0.28826106,0.116968796,0.07398586,0.83587384,0.17147948,0.39322215,0.23839289,-0.3769961,0.24291007,0.2489633,0.3855572,-0.22758542,6.533586e-06,0.16976312,0.035193913,0.21021408,0.33217955,0.16052581,0.4202673,0.000120833516,-0.06274707,0.15051256,0.096132085,-0.080018476,-1.182618,0.4450793,0.14117338,0.6557516,0.48709407,-0.030852538,0.23377217,0.3591221,-0.2835758,0.027517276,0.22789611,-0.04343835,-0.38727424,0.57007015,-0.6484818,0.39633295,-0.31655267,0.07038765,0.20644814,0.15572777,0.5486998,0.78045595,0.05691071,0.087429896,-0.015088324,-0.17003304,0.0021923094,-0.41378826,0.051695272,-0.4567194,-0.34533486,0.7570865,0.5227022,0.44338036,-0.3282455,-0.047684684,0.20654596,-0.17175242,0.18721996,-0.1843244,-0.07528941,0.0058409134,-0.7005654,-0.17760047,0.5416585,0.01024889,0.08383051,0.15962985,-0.57095087,0.3378434,-0.19566797,0.12542973,-0.032156408,-0.8131682,-0.12901093,-0.56037104,-0.44295093,0.09150473,-0.3450632,0.16589154,0.22068824,-0.05986949,-0.19526751,0.2691271,-0.034683466,0.9607064,0.1264935,-0.29561588,-0.20014682,0.05706402,0.41963407,-0.34958777,0.044361897,-0.405302,0.2336161,-0.74121124,0.3855023,-0.1953461,-0.14915001,0.41152418,-0.16779166,-0.040167835,0.43327788,-0.2957551,-0.07165844,0.22981215,-0.08148416,-0.20545787,-0.072489224,-0.3843687,0.2574135,-0.032001194,0.09870443,0.030075233,-0.10494753,-0.037745878,0.36798456,0.31191042,0.09760956,0.3970817,0.008424094,-0.2830816,0.06998605,0.05589565,0.44866636,0.24413869,-0.15506957,-0.1432913,-0.41337878,-0.2721281,0.5966286,-0.25313517,0.13090411,0.019834403,-0.26778513,0.7714571,0.20336929,1.1758106,0.16700941,-0.3464409,0.147307,0.512851,-0.009063661,0.077321015,-0.23076011,0.7643105,0.40723854,-0.21770789,-0.03770972,-0.49448887,-0.36483228,0.22468734,-0.29676548,-0.14324456,-0.23566605,-0.79832333,-0.25564334,0.13796549,0.1912462,-0.14220378,-0.06836692,-0.025507988,0.09607407,0.13394627,0.4353857,-0.7010714,0.07388078,0.41704544,0.29565716,-0.03440826,0.08306158,-0.29499963,0.46774995,-0.8299333,0.19764203,-0.60000724,0.010819742,0.013369535,-0.24488783,0.15676333,0.094837666,0.334779,-0.35552672,-0.3843794,-0.3457939,0.60806364,0.3152296,0.1856826,0.7131535,-0.33679694,-0.08578864,0.16902381,0.48902336,1.028891,-0.25932133,0.1534634,0.35135671,-0.2950056,-0.43349984,0.14630824,-0.5174622,0.08249307,0.0012839391,-0.4082134,-0.51368034,0.33855137,0.24163121,-0.02479478,-0.0064027216,-0.60073656,0.054833375,0.37425238,-0.18908869,-0.27509165,-0.23945493,0.25952613,0.6252193,-0.35181937,-0.4412482,-0.017023334,0.39121792,-0.34626552,-0.55297184,0.14457665,-0.43691298,0.3921003,0.073070064,-0.253008,-0.049511734,0.10052848,-0.42139813,0.0040720794,0.2319799,-0.3030569,0.072828986,-0.21121255,-0.0021311687,0.94132555,0.054355953,0.28413978,-0.56756204,-0.5462646,-0.80564594,-0.3202004,0.20762847,0.27418366,-0.07675699,-0.5012069,-0.019274367,-0.1980057,0.017715545,0.24211465,-0.42842886,0.44487378,0.23896892,0.41114527,-0.13117944,-0.8227599,0.042630848,0.11744593,-0.2490008,-0.3363952,0.4468706,-0.20315269,0.69402534,0.022425005,0.055922296,-0.14239891,-0.6601035,0.41487628,-0.3367074,-0.08846006,-0.7227141,-0.056887884 -800,0.3724642,-0.11015139,-0.44059277,-0.23479451,-0.2799292,0.15087487,-0.1376146,0.30031124,0.45784783,-0.16695099,-0.0848433,0.04249211,-0.17016725,0.31943586,-0.17530848,-0.9129631,-0.02520591,0.021316377,-0.5210736,0.7059527,-0.3434868,0.32462662,-0.06835159,0.38789615,0.11529204,0.3304672,0.20770092,0.22432967,-0.15592058,-0.0010871986,0.10119173,0.34937108,-0.47151837,0.50917625,0.013154987,-0.10066003,-0.19850259,-0.3409361,-0.29408464,-0.78852767,0.46098614,-0.48338065,0.43729672,-0.055237073,-0.3843708,-0.21872109,0.26139596,0.14810438,-0.22587128,-0.09844214,0.21598284,-0.28357962,-0.23675601,-0.097674645,-0.27074143,-0.552953,-0.5606907,-0.09300365,-0.5658905,-0.15862639,-0.13552362,0.2911429,-0.29257438,-0.14146574,-0.1279248,0.7662353,-0.4338325,-0.058127165,0.5445878,-0.41209388,-0.031925406,-0.78440434,-0.25307158,0.0038537309,0.23378076,0.35134038,-0.20551199,0.62315065,0.27990267,0.3269234,0.105753124,-0.41355082,-0.42599723,-0.26408914,0.20548834,0.363969,-0.26463184,-0.39444184,-0.2607587,0.015421887,0.317935,0.17493875,0.20094419,-0.44078335,0.014864791,-0.14330782,0.056514632,0.47309434,0.4929256,-0.15930441,-0.17580128,0.3077426,0.35790595,0.22468393,-0.22930826,-0.0036545794,-0.1758296,-0.451659,-0.22080685,0.06308233,-0.023192724,0.30966046,0.02740509,0.16086584,0.7469761,0.03315659,-0.106536984,-0.020982185,0.18341602,0.12175671,-0.42380872,-0.053064402,0.28784811,-0.30251753,0.032008763,-0.18400855,0.55418724,0.095620155,-0.82990503,0.33113453,-0.47297665,0.022950329,0.067141645,0.596339,0.90722233,0.486825,0.2546215,0.9934302,-0.37068152,-0.012994249,0.14430638,-0.17900605,-0.014454071,-0.24368973,0.2860819,-0.6365023,0.07693175,0.10968229,0.037133586,0.14701961,0.3925633,-0.36014414,-0.3078436,0.093239434,0.85314417,-0.2562044,-0.14419001,0.6892875,1.0981473,1.0672113,-0.008968696,1.018118,0.10104049,-0.13458003,-0.10995144,-0.29684147,-0.38835728,0.27699727,0.2878884,0.031081775,0.41494516,-0.022439694,0.10373709,0.5790364,-0.28559348,-0.07148635,0.11960652,0.25352454,0.2215327,-0.0954816,-0.53055644,-0.3239617,0.28911647,0.11695609,0.038571443,0.33618554,-0.28298545,0.43688726,-0.24042888,1.1847005,-0.032614894,0.18482216,0.19401856,0.41468802,0.1164186,-0.33292744,0.009321973,0.1926231,0.22460853,0.01289132,-0.3699201,-0.022802128,-0.45719573,-0.43281758,-0.14074366,-0.38716745,-0.30074584,0.03549567,-0.28983283,-0.30318055,0.027621636,-0.32079396,0.44122925,-2.5310009,-0.03412191,-0.2195378,0.2976891,-0.23601907,-0.1890503,-0.19851409,-0.46911332,0.36903214,0.35788274,0.4670011,-0.5178916,0.20220192,0.44073534,-0.57313013,-0.17157996,-0.5112671,0.079443276,0.023775408,0.46152246,-0.026639849,-0.18862008,0.047391605,0.32902285,0.579448,0.34904358,-0.03542496,0.28619576,0.41112974,-0.25565428,0.3677889,-0.124298155,0.590051,-0.415643,-0.18253638,0.424965,-0.5892647,0.5434522,-0.27658376,-0.025580397,0.4973004,-0.30583775,-0.7770373,-0.44073287,-0.32888058,1.2501374,-0.39711997,-0.6378301,0.13825674,-0.14054786,-0.26103124,0.063056864,0.68939954,-0.110889144,0.18763715,-0.5416451,0.12934603,-0.121827245,0.13705117,-0.20630486,0.07175499,-0.6002832,0.7371494,-0.027332634,0.7250164,0.45163584,0.118063055,-0.47287917,-0.44489977,0.047699273,0.80581856,0.51401067,0.12034619,-0.037794214,-0.07930008,-0.024519311,-0.45509732,0.1546015,0.99788815,0.57176274,-0.05838744,0.13356222,0.28690758,-0.1549857,0.07992175,-0.09514159,-0.37321138,-0.26528862,0.25151265,0.71115357,0.77160686,-0.1973306,0.2769676,-0.07837549,0.1943805,-0.17117494,-0.47752246,0.39385414,0.49317834,-0.2647724,-0.29390973,0.67595553,0.41649345,-0.370984,0.44157135,-0.47453097,-0.43812957,0.6936653,-0.15816294,-0.60519737,-0.1531553,-0.3733867,-0.11251757,-0.70390743,0.2094623,-0.23748219,-0.7158148,-0.6115031,-0.22781198,-3.021499,0.1526819,-0.19963281,-0.04717678,-0.21731465,0.016558101,0.06123169,-0.74582386,-0.56011397,0.10913825,0.009038714,0.47867203,-0.07354214,-0.012242665,-0.2861773,-0.35597435,0.026114231,0.36287844,-0.033818502,0.27249154,-0.10130447,-0.29019746,0.038174357,-0.108234465,-0.5370996,-0.14778173,-0.6146969,-0.65551376,-0.0654609,-0.5714361,-0.08122959,0.7638498,-0.5972384,-0.08495512,-0.22339137,0.016195148,-0.028025324,0.23637356,0.11200101,0.4886311,0.27984768,-0.12834686,0.016527908,-0.25419605,0.36042586,0.14306633,0.6028711,0.51987207,-0.10283031,0.35246304,0.5948321,0.65560526,0.009470612,0.7935651,0.2009693,-0.16859369,0.26991197,-0.22565956,-0.21793257,-0.6243046,-0.37448815,0.26239574,-0.39920637,-0.38707554,-0.13583778,-0.28035718,-0.8505762,0.3715845,0.07032048,0.47095415,-0.26917884,0.03647155,0.3284458,-0.27444044,0.055686682,0.009381688,-0.0945032,-0.47548744,-0.41433716,-0.5194843,-0.7105157,0.31638166,1.09706,-0.2686728,-0.1326586,0.19142376,-0.42714718,-0.064941466,0.021842234,0.22424908,-0.20602004,0.14352871,0.08131592,-0.80723876,0.45157555,-0.15625098,0.11932522,-0.56072986,0.18889253,0.68215084,-0.30930066,0.85237366,0.43654218,0.20632608,-0.25275484,-0.7394096,-0.3298962,0.19959152,-0.13060534,0.6028907,0.43263766,-0.49750885,0.3408883,0.007590629,-0.43175793,-0.5841827,0.31049842,-0.13935284,-0.18555987,0.1684152,0.59808844,0.15070756,-0.31798267,0.071159415,0.45041433,-0.4029713,0.34152594,0.14950554,0.020015307,0.4969869,0.004899651,-0.24277788,-0.66508716,-0.036841493,-0.5448572,-0.25049153,0.18929864,-0.07399386,-0.04187287,0.12428907,0.18291223,0.36233744,-0.34510708,0.22024648,-0.039016563,-0.4801898,0.4522977,0.51790875,0.6324353,-0.4799229,0.5564038,0.12563725,0.098871835,0.043151367,0.17852479,0.6081845,0.3112732,0.38890287,-0.28139573,0.047930717,-0.026243383,0.5845464,0.20386581,0.20881586,0.014695813,-0.32824543,0.25391653,0.033546362,0.1709286,-0.14149828,-0.42918172,-0.10523111,-0.13254988,0.17275934,0.4829122,0.16725564,0.39407,0.010764927,-0.1760859,0.27121827,0.12022676,-0.052322205,-1.3726257,0.5825529,0.12364795,0.9477329,0.3194231,0.16433425,-0.21283542,0.6640886,-0.103441395,0.14025983,0.50073373,-0.13432278,-0.50144196,0.5640616,-0.47708428,0.6048948,-0.1348201,-0.026772305,0.21712475,0.2835184,0.39764795,0.665956,-0.1801923,-0.021169422,-0.052449387,-0.34733987,-0.017771035,-0.45800352,0.32337868,-0.47451666,-0.54076654,0.44550967,0.5410479,0.29468516,-0.3018837,0.039697584,0.08244082,-0.18106647,0.06932944,-0.26315695,-0.13501324,-0.08535049,-0.6883676,-0.20651035,0.39072895,-0.21186268,-0.07731557,0.06773987,0.054109853,0.18308187,-0.19061291,-0.12193682,-0.032471187,-0.6458845,0.08784202,-0.35867247,-0.72267026,0.42167512,-0.5617762,0.1310633,0.1540613,0.11008229,-0.28435078,0.40267882,0.10081089,0.9900481,-0.16456458,-0.16205217,-0.26785526,-0.11848461,0.16003634,-0.25603446,0.16051982,-0.31142744,0.21232867,-0.41081214,0.50435764,-0.28495336,-0.31622675,-0.060369197,-0.23858654,-0.021183357,0.47793365,-0.1730737,-0.17991751,0.042858228,-0.23968256,-0.32080022,-0.16663031,-0.47663736,0.3473704,-0.07474247,0.051204022,-0.11893668,-0.30698526,-0.10376456,0.1284317,-0.025266623,0.12003255,0.47180283,-0.07699987,-0.26737246,0.23953198,0.10873547,0.5141467,0.2959142,0.0053162673,-0.42698756,-0.27083167,-0.41585281,0.43167067,-0.18722439,0.17545967,0.13671641,-0.2709722,0.74895364,-0.051631987,1.1973726,-0.041496236,-0.45023355,-0.06904158,0.5093496,-0.059197236,-2.6357671e-05,-0.25351042,0.99993426,0.6469098,-0.025616655,0.012728766,-0.52843493,0.032733403,0.38635513,-0.37904787,-0.21678329,-0.12633795,-0.7445362,-0.1894098,0.23411442,0.12039632,0.08660423,-0.17792933,-0.3331846,0.06461694,0.40658128,0.16193382,-0.54396087,-0.014176737,0.2622292,0.33510184,-0.0019185245,0.106835164,-0.42149398,0.38375282,-0.8706186,0.37535524,-0.4498237,0.14335833,-0.4232006,-0.39376244,0.14984863,-0.110469855,0.48022866,-0.2846162,-0.270081,-0.2503136,0.5724029,0.289512,0.1978784,0.6907306,-0.20625119,-0.19337375,0.073751934,0.5991464,1.254609,-0.2299118,0.024480745,0.24918015,-0.44692507,-0.8312556,0.07018789,-0.47612265,-0.12209249,-0.17804147,-0.42759454,-0.45811093,0.1322956,-0.0102491975,-0.054906204,-0.08590606,-0.47225142,-0.20792882,0.21149512,-0.2899816,-0.2645003,-0.34893215,0.17111988,0.62799686,-0.14422582,-0.3926467,0.051302265,0.41895998,-0.24362199,-0.60237217,0.25497904,-0.20043059,0.40928492,0.031067938,-0.4189254,-0.20099688,0.18265946,-0.47601888,0.3428775,0.2225967,-0.3702742,0.047229648,0.024482826,0.051165204,1.0205176,0.089435376,0.31851855,-0.6080115,-0.5248552,-0.83573526,-0.49324524,-0.026153306,0.08012241,-0.32835296,-0.6159475,-0.13545339,-0.2947629,0.14095713,-0.026536876,-0.46547535,0.206738,0.1181973,0.5700167,-0.28586343,-0.7720472,0.0028159935,0.3016025,-0.040957402,-0.40232858,0.35516056,-0.12874503,0.8711748,0.09082528,-0.017022401,0.037951294,-0.7016503,0.35314706,-0.24656248,-0.27761635,-0.49138948,0.24442486 -801,0.57593626,-0.2969056,-0.3204511,-0.1750253,0.036240768,0.12829447,-0.111823596,0.59001493,0.4278498,-0.49875712,-0.16213931,-0.16444731,0.09974986,0.254851,-0.17967589,-0.6653155,0.0430893,0.08389237,-0.2873309,0.43124557,-0.63752085,0.12635282,-0.08112318,0.51725805,-0.018527979,0.09890362,0.18288745,-0.04424146,-0.13064332,-0.2166065,-0.21267943,0.33263716,-0.47456005,-0.0059300563,-0.24908046,-0.48844847,0.049086113,-0.5586955,-0.47763905,-0.7869015,0.4061626,-1.1188005,0.58808744,0.1705393,-0.22997569,0.4913105,-0.14137626,0.053529512,-0.15345049,0.02129054,-0.044583272,-0.22667117,0.10759872,-0.35557452,-0.20056134,-0.2910103,-0.55516833,0.09633401,-0.41609946,-0.15973376,-0.30615553,0.020961607,-0.39817682,-0.04630923,0.008782119,0.4814655,-0.40813276,-0.13189441,0.18242109,-0.15590718,0.37364855,-0.4700502,-0.24907015,-0.059707303,0.20798707,-0.28814772,-0.32061625,0.19687754,0.37037277,0.58789825,-0.04392918,-0.23912255,-0.37570342,0.1569126,0.040622007,0.52166355,-0.26198325,-1.0626062,-0.2798012,0.061655283,0.29645982,0.31827208,0.09630852,-0.047050875,-0.06709996,0.098129295,-0.24637093,0.74002343,0.6634473,-0.5249875,-0.26582086,0.263639,0.49295947,0.053151965,-0.084617965,0.01672242,0.052217644,-0.600429,-0.11146673,0.09481368,-0.21637072,0.672348,-0.25310186,0.36286703,0.6822779,-0.33215442,0.03084293,0.13534386,-0.008821438,-0.23973267,-0.31186515,-0.16216822,0.3786489,-0.46867666,0.034423616,-0.34618893,0.8582842,0.08699135,-0.75988144,0.33956516,-0.5251337,0.10158511,-0.15858927,0.67355114,0.5309176,0.41619897,0.54251367,0.7158677,-0.5937765,-0.04264954,-0.09979832,-0.39592287,-0.0742216,-0.19738571,0.05882393,-0.48644248,0.028829262,0.15689087,0.003546983,0.22062235,0.33083373,-0.57181126,-0.054911975,0.18073519,0.8922948,-0.2633866,-0.064397275,0.9344329,1.1705785,0.93392366,-0.02264676,1.2459292,0.3526419,-0.3210237,0.18695207,-0.14175424,-0.8333282,0.35843745,0.3081266,0.077189304,0.4206784,0.09616989,-0.045047294,0.23457499,-0.49401188,-0.14543451,-0.19111003,0.21857081,0.1325946,-0.13238318,-0.4596534,-0.05937411,-0.16501614,-0.10516816,0.24024145,0.19302581,-0.13685405,0.570887,-0.037961114,1.2038409,-0.01760836,-0.01458669,-0.12632465,0.53508013,0.1737023,0.21908599,-0.053151857,0.34385416,0.27246,0.2437361,-0.5807889,-0.021817923,-0.2327231,-0.45476758,-0.10154724,-0.2803401,-0.01996093,-0.048776284,-0.34471324,-0.17157145,-0.22893052,-0.23192392,0.39131466,-2.8378506,-0.3147157,0.06257829,0.36773324,-0.2487061,-0.29344016,-0.104196705,-0.4740089,0.50408256,0.43091226,0.53265464,-0.9379708,0.2919123,0.3915038,-0.49317536,-0.16218053,-0.6718653,-0.11339596,-0.050546512,0.46576074,0.11259543,-0.1612543,0.17358053,0.116547726,0.663374,0.20002262,0.06296388,0.19180696,0.7257119,-0.022307292,0.30582678,-0.0887543,0.5787435,-0.34577504,-0.21761286,0.30703956,-0.4512352,0.23561831,-0.16371143,0.16526617,0.49713764,-0.40968242,-0.9357999,-0.7013092,-0.10988519,1.1640472,0.036363255,-0.6394181,0.07562941,-0.3138046,-0.25811836,-0.18656528,0.46263206,-0.21529932,-0.0747298,-0.74274725,-0.0076992265,-0.11884428,0.018772563,-0.005220353,0.06052963,-0.37343374,0.7634737,-0.080996014,0.19140284,0.33420202,0.18237592,-0.40176025,-0.71337813,-0.020473251,0.89627147,0.28377166,0.3186761,-0.3234698,-0.11645617,-0.31767264,0.029777413,0.078954816,0.60078114,0.75925404,-0.07993743,-0.02572532,0.34388304,0.07852396,-0.06666348,-0.17131615,-0.3185161,-0.24346597,-0.12838715,0.7357702,0.76348567,-0.39102748,0.4229585,0.04436953,0.15951502,-0.26321718,-0.2507622,0.68454266,0.79845524,-0.091896065,-0.2687878,0.5645241,0.48483744,-0.38923967,0.38686025,-0.6341712,-0.44813862,0.3751196,-0.2100659,-0.4738861,0.22400886,-0.2984002,0.15678784,-0.92588335,0.34348503,-0.17985038,-0.42585054,-0.73804545,-0.034436733,-3.5352447,0.30981994,-0.29071054,-0.17661335,-0.24147336,-0.09186206,0.12126201,-0.4946929,-0.5297413,0.1946197,0.06115945,0.6610511,-0.08504236,0.23487616,-0.24291837,-0.1656696,-0.3151911,0.03834791,0.16722609,0.28554347,0.10441092,-0.34379187,0.038303643,-0.058766708,-0.460573,0.1966846,-0.485711,-0.4575574,-0.027454684,-0.46778992,-0.30622587,0.67574805,-0.25930613,0.062284257,-0.3356615,0.086164914,-0.11570228,0.4728533,0.0033702422,0.007085947,-0.04187877,-0.072899126,0.14536922,-0.21827863,0.38150212,-0.012431562,0.27370852,0.47597012,-0.3349564,0.060551625,0.5053961,0.7253688,0.060516506,0.84396607,0.3246822,-0.046258938,0.33996007,-0.18023454,-0.27592856,-0.5833195,-0.40705994,0.0923078,-0.49665514,-0.4459519,-0.08711285,-0.47371888,-0.7577717,0.57224756,0.0031454563,0.3138375,0.10823276,0.6942508,0.7367391,-0.18336427,0.11211777,0.056146245,-0.13578154,-0.48101103,-0.1764955,-0.56019014,-0.5032356,0.017450958,0.5992921,-0.18563877,-0.032414358,0.15208732,-0.13011418,-0.075566255,0.012120527,-0.0529583,0.077197336,0.27786037,-0.12829995,-0.75246555,0.45361337,-0.08612842,-0.28786492,-0.66348016,0.08155557,0.64341575,-0.69825345,0.55672187,0.5932841,0.01576575,-0.08378675,-0.46187124,-0.1702249,-0.09626184,-0.1855235,0.39398465,0.23764636,-0.7685378,0.57027054,0.47470567,-0.186563,-0.6572191,0.46447897,0.11471543,-0.41483817,-0.07363975,0.32103375,0.35238984,0.064893775,-0.17024,0.19421513,-0.586065,0.2504926,0.06380627,0.0346656,0.40539023,-0.029999927,-0.32166156,-0.8207447,-0.1554765,-0.69746524,-0.18796746,0.23209089,0.16899312,0.1410046,0.134552,0.009887199,0.4227679,-0.4150088,0.06843009,-0.06384576,-0.35646746,0.33076867,0.39400157,0.41651675,-0.36180314,0.6436156,0.09771872,-0.09714768,-0.010579243,0.025375372,0.54712933,0.078309,0.39322248,0.26550013,-0.27156717,0.26203874,0.80835444,0.20864911,0.48829687,0.18112266,-0.029346826,0.47173905,0.24593405,0.34243092,-0.023928126,-0.5658731,0.018269897,-0.3088652,0.12635423,0.40477014,0.082554825,0.28395626,-0.045263927,-0.32655582,-0.08097593,0.21281189,0.10915946,-1.3118175,0.18066593,0.16364262,0.83532286,0.22048242,-0.18507688,0.18994431,0.5568249,-0.055499244,0.10278676,0.40206948,0.008588341,-0.5420099,0.6165192,-0.6868682,0.29618442,-0.27042606,0.057898726,-0.05425213,0.06393171,0.39764047,0.63436306,-0.11654634,-0.011845805,-0.16034792,-0.2998447,0.14401054,-0.5316579,0.19288413,-0.53431964,-0.010911405,0.66025585,0.5406407,0.26749313,-0.15785976,0.027975475,0.09634856,-0.0034956213,0.09481908,0.024202505,0.08285003,-0.28565094,-0.8262375,-0.06787903,0.46925518,0.48321256,0.26172987,-0.19253194,-0.11624948,0.3279873,-0.18467446,-0.29966745,-0.13096996,-0.62757576,0.07110909,-0.29853252,-0.5978182,0.55320925,-0.053229555,0.30468455,0.3565495,0.16825087,-0.22143488,-0.007896532,0.1781439,0.7269849,0.05565405,-0.25402775,-0.5371445,0.14249486,0.32617137,-0.2560691,-0.15339303,-0.071147665,0.0012441576,-0.38193655,0.48472747,-0.15667473,-0.3307887,0.11822743,-0.12767293,0.10948617,0.6057376,-0.27740303,-0.09872263,0.0322765,-0.2816003,-0.38234493,-0.12854385,-0.08905417,0.3660663,0.31739444,-0.20361187,-0.14341773,-0.18521278,-0.36720476,0.42582312,0.09126226,0.23848243,0.2982182,0.14906757,-0.2138592,-0.12643468,0.16469854,0.6522509,-0.065429024,-0.24689175,-0.34503475,-0.49497175,-0.33507606,0.044973552,0.057451755,0.24010773,0.0861117,-0.3064337,0.7619299,0.02619666,1.0142117,0.14213644,-0.442976,0.011425242,0.6015365,0.028321764,-0.022802254,-0.49260926,0.971499,0.5678701,-0.25991264,-0.06670258,-0.3689684,0.1426623,0.27479395,-0.17410721,-0.16234228,-0.006575376,-0.6221055,-0.24711154,0.49465832,0.269913,0.26301304,-0.07371167,0.16370836,0.22589503,-0.01579362,0.3648746,-0.56599134,-0.24525507,0.25731203,0.26062647,0.048981164,0.06610412,-0.22996104,0.28919446,-0.53311974,0.064720765,-0.52981776,0.06822625,-0.22704048,-0.29520288,0.31547055,0.008536349,0.33689448,-0.32993153,-0.5434771,-0.0800432,0.28542435,0.1867897,0.09990717,0.42762855,-0.12619077,-0.084819905,0.023601705,0.49774852,1.3026434,-0.08342367,0.06716866,0.46632633,-0.14983444,-0.720753,0.5403672,-0.32485297,0.3505435,-0.06547972,-0.077087685,-0.5369289,0.34098402,0.3980606,0.16368474,0.0057533034,-0.57798076,-0.24703753,0.33274266,-0.32407483,-0.268797,-0.3412163,0.0152412355,0.6687022,-0.19098704,-0.26720446,0.08369067,0.40474162,-0.27075967,-0.68099564,-0.037891056,-0.43527094,0.31224778,0.11196548,-0.2110284,0.09775122,-0.07942372,-0.51414776,0.16567378,0.12859702,-0.40999642,0.031017438,-0.39076805,-0.0013130397,1.0062352,-0.3211134,0.3080763,-0.68505836,-0.3552872,-0.857842,-0.33950153,0.45149365,0.075344086,0.075579636,-0.62584776,-0.01905101,0.01931238,-0.26743212,-0.058232903,-0.3860518,0.5447168,0.15020812,0.54324275,-0.015988236,-0.64810574,0.15397593,0.11507997,-0.360325,-0.6107417,0.55740887,0.061558414,0.73441917,0.047404993,0.13935657,0.4835697,-0.5566581,-0.099327415,-0.2720812,-0.28424776,-0.73965335,0.10860226 -802,0.22927949,-0.052323453,-0.5379839,-0.031738855,-0.3023486,0.20630829,-0.16224848,0.527103,0.26516363,-0.39215487,-0.123413436,0.07847997,-0.001525708,0.30901212,-0.24846938,-0.5157761,0.00912948,0.107450314,-0.5006758,0.6201536,-0.19189243,0.35195458,-0.22503762,0.39061075,0.09676406,0.28410393,-0.20009808,-0.07340859,-0.108619206,-0.1450744,0.04739584,0.46850535,-0.3389391,0.2400344,-0.1980631,-0.23376203,-0.014565659,-0.26016223,-0.2676781,-0.6125861,0.17166437,-0.62560546,0.5777622,-0.11298561,-0.2139813,0.32846263,0.1623474,0.17304207,-0.005444638,-0.05267114,0.015725097,-0.07968,-0.16385593,-0.17965667,-0.33872762,-0.48209584,-0.39982942,0.0950785,-0.6633625,-0.101542465,-0.28168455,0.114409335,-0.2905541,-0.2690677,-0.15212436,0.5884939,-0.39628956,0.10300016,0.101527475,-0.09989519,0.17820075,-0.7112503,-0.15608858,0.1185696,0.20202011,-0.14602715,-0.14059561,0.15315655,0.18310843,0.26166305,-0.054515895,-0.085351184,-0.33291814,-0.15724207,0.23125719,0.45229504,-0.23992032,-0.40161234,-0.01518953,0.12260889,0.30115092,0.118350476,0.035129085,-0.17748071,-0.1252856,-0.090308025,-0.18556222,0.4193929,0.41745198,-0.15047589,-0.09635404,0.3870042,0.35230085,0.4108281,-0.30561626,-0.025622992,-0.066662855,-0.4136904,-0.09987744,-0.05981741,-0.065741554,0.3142105,-0.027492631,0.3777998,0.42422274,-0.09597489,0.09025577,0.18615296,0.16726826,0.13047498,-0.2865674,-0.17135672,0.049259353,-0.4186687,0.12078169,-0.12859713,0.57640064,-0.018074011,-0.61299706,0.2645726,-0.5017818,-0.06656027,-0.038846023,0.40791026,0.61593527,0.40317425,0.002231117,0.4537673,-0.18921824,0.0767448,-0.2506217,-0.31452313,-0.06040545,-0.07377962,-0.07410468,-0.5699598,-0.022357965,0.011805908,0.0072053513,0.028620731,0.25731713,-0.5305187,-0.24583955,0.12549436,0.8222555,-0.25753337,-0.20094888,0.69443774,1.0060023,0.82503223,0.02123388,0.9822429,-0.010055762,-0.09003895,0.026021147,-0.2179109,-0.3597652,0.28471968,0.3086913,-0.19952746,0.22967005,-0.032031965,-0.024486113,0.384987,-0.2024593,-0.18738371,-0.24919577,0.21947743,0.17028005,-0.12826699,-0.4234934,-0.35970452,-0.041471347,-0.06592396,0.17762761,0.2400514,-0.22267532,0.19978768,0.1357211,1.3447192,-0.056110643,0.08711682,0.13479927,0.35790065,0.20737974,-0.145926,0.015365283,0.2629683,0.33128807,0.11996942,-0.4988821,0.21273561,-0.26430067,-0.5608977,-0.14133151,-0.2951934,-0.20470734,0.11448323,-0.54955375,-0.14473106,-0.09519026,-0.31423888,0.4249641,-2.8555207,-0.07654881,-0.12418158,0.3284405,-0.16403745,-0.39206874,-0.15031537,-0.2385537,0.43152067,0.26668847,0.39173687,-0.3379118,0.37846002,0.40582624,-0.47656775,-0.12947045,-0.4756772,-0.018991232,0.06668411,0.33633736,0.048896957,0.026746767,0.1377947,0.124537125,0.49368522,-0.23473327,0.18338524,0.38180745,0.29643244,-0.14337239,0.29679972,-0.09214748,0.51090366,-0.23697615,-0.20535952,0.25219718,-0.35335127,0.33223617,-0.107075535,0.19656667,0.4163255,-0.2778336,-0.8830785,-0.5973783,-0.22089437,1.3480428,-0.12601295,-0.44553432,0.23905331,-0.47326833,-0.3675563,-0.061642207,0.58587074,-0.018047057,-0.0760986,-0.7136114,0.08072099,-0.22491659,0.13184713,-0.04269589,-0.032524426,-0.32372415,0.49820346,0.001889962,0.5269926,0.32560202,0.29239362,-0.14943932,-0.16809551,-0.03995894,0.81624836,0.4850693,0.14689782,-0.17261226,-0.18295673,-0.30058897,0.14542082,0.16550423,0.7443984,0.45533973,0.09528872,0.08982927,0.12676768,-0.016999686,0.1900945,-0.2257042,-0.21692394,-0.15186124,0.19653276,0.48540884,0.30525526,-0.052232992,0.49209425,-0.055867385,0.12166293,-0.29981574,-0.34902993,0.31631014,0.7406553,-0.3109857,-0.2717924,0.6772242,0.5756894,-0.0917765,0.27827558,-0.47742635,-0.3445668,0.47150522,-0.26302537,-0.42948905,0.2448483,-0.20734362,0.103558294,-0.8056787,0.2349111,-0.45366043,-0.75399595,-0.3107516,0.055416804,-2.7426538,0.26412192,-0.06247314,-0.22905125,-0.39244118,-0.3778251,0.26463792,-0.442982,-0.49950492,0.1729679,0.17254938,0.6541882,-0.0966649,0.037349768,-0.070859164,-0.5257246,0.008694676,0.18546207,0.0033007383,0.3026841,-0.14548606,-0.36436287,-0.16405007,-0.08175039,-0.28591824,0.24316864,-0.60306007,-0.3579391,-0.13380541,-0.3395014,-0.107943505,0.5393271,-0.40713108,0.074441925,-0.2394877,0.12349025,0.028486552,0.2335535,0.009502458,0.23358856,0.18045072,-0.12357764,0.10519341,-0.2691959,0.33880875,0.111918606,0.3380608,0.4177123,0.005668628,0.28553885,0.5682495,0.53875047,-0.14632295,0.89409834,0.44860688,-0.13134469,0.4526724,-0.27657527,-0.32100013,-0.51007015,-0.30282986,0.089292854,-0.30883026,-0.40407333,-0.15604872,-0.25408775,-0.80245715,0.38109627,0.025068697,0.16758803,-0.14345863,0.42891833,0.5179885,-0.2845786,-0.028850278,0.025321294,-0.11046573,-0.45262465,-0.4412205,-0.46921286,-0.29084927,-0.10617367,0.9856186,-0.3526378,0.18989068,0.029569022,-0.1676636,0.1079367,0.11177159,0.15757395,0.00883534,0.3429498,-0.21440312,-0.5390742,0.3642008,-0.25474364,-0.35097557,-0.36590227,0.28705558,0.60560775,-0.5284042,0.5594019,0.40107816,0.031542625,-0.35257304,-0.5441827,-0.0032302777,0.030879887,-0.20311946,0.34124753,0.33938265,-0.79993504,0.4298418,0.33390376,-0.15489912,-0.6596266,0.5564188,-0.036385886,-0.23033114,-0.06866026,0.37233618,0.22033496,-0.05609112,-0.15489677,0.112256326,-0.3285888,0.2936309,0.048675075,-0.05409197,0.107288845,-0.25404042,-0.076408125,-0.79638666,0.12062152,-0.5224857,-0.32501468,0.20063375,0.055723634,0.08386178,0.1753313,-0.06300618,0.4274325,-0.3948726,0.1252988,-0.20351811,-0.36201152,0.31970844,0.40638047,0.45408556,-0.25396368,0.45969293,0.024477687,0.010373417,0.14917387,0.32903484,0.5547861,-0.057169817,0.42130736,-0.11714174,-0.12371103,0.1685045,0.9027814,0.120730214,0.34026057,-0.1760833,-0.11685285,0.10520943,-0.03872281,0.19892082,-0.13240616,-0.4635562,-0.17764126,-0.15731691,0.10884153,0.5341556,0.11546697,0.2968511,0.037405197,-0.2523271,0.083399914,0.24148948,0.2212464,-1.0870527,0.4960483,0.1617903,0.92456234,0.26317608,0.17915885,-0.016661981,0.5242236,-0.09134241,0.15286914,0.32380515,0.13164547,-0.37066713,0.48058853,-0.73064435,0.37748975,-0.04870228,-0.0836118,0.20598593,-0.07569904,0.38891214,0.9732009,-0.11071637,-0.0065820417,0.17172761,-0.326056,-0.027627159,-0.280505,0.03333467,-0.5589743,-0.40566507,0.4934687,0.50063264,0.35416138,-0.29668367,0.03373726,0.22994992,-0.16778244,0.18020032,-0.020210888,0.16907889,-0.18691431,-0.5247773,-0.023920683,0.4402486,-0.07716034,0.16788305,0.019298172,-0.20832013,0.27946967,-0.028464073,0.08677264,0.098391995,-0.4425111,0.060825665,-0.32965988,-0.535846,0.3098286,-0.36784008,0.14950933,0.12694672,0.06375593,-0.23960342,0.48647115,0.08112018,0.6724204,-0.05995616,-0.08161715,-0.35059607,0.2359926,0.13119346,-0.17877959,-0.372649,-0.23517092,0.13409376,-0.60090005,0.20557325,-0.11953964,-0.20787768,0.004799811,-0.16024822,0.10996438,0.44870389,0.03479351,-0.07456608,-0.0899317,-0.18397634,-0.26250207,-0.28950235,-0.053294133,0.24460869,0.13331051,-0.11781699,-0.15578942,-0.20316489,-0.12171273,0.12416184,-0.07367863,0.40048558,0.37654468,0.11598428,-0.22922039,-0.13187684,0.23723711,0.3816222,0.09435888,0.040569685,-0.23876895,-0.29128966,-0.31880692,0.1678869,-0.059686456,0.26035723,0.1880217,-0.13972887,0.81317306,-0.03416736,0.8980115,0.023309557,-0.29062545,0.14479654,0.32379,-0.048826497,-0.11459513,-0.32059276,0.8810184,0.5097789,0.10207121,0.037436638,-0.26774997,-0.059866983,0.106449686,-0.30018738,-0.03856527,-0.083768226,-0.5564068,-0.24453305,0.14815153,0.2553409,0.08724635,-0.09380832,-0.08050476,0.19679056,0.105021186,0.27304247,-0.57912046,0.026092486,0.19534732,0.182665,-0.049472213,0.2077886,-0.53833604,0.29348904,-0.66280097,0.04933371,-0.14176394,0.13639113,-0.2207845,-0.21221043,0.22859049,-0.13284974,0.30469552,-0.19684741,-0.33448157,-0.27150005,0.27108255,0.0055060824,-0.012107027,0.43050736,-0.2537474,0.12520337,0.08406616,0.5659405,0.8550219,-0.31218046,-0.11051404,0.39212522,-0.3124245,-0.64674276,-0.029246824,-0.36563578,0.26309493,-0.07751229,-0.14190388,-0.30420738,0.2917247,0.21471491,0.08810704,-0.26593328,-0.544401,-0.076041065,0.18000863,-0.27355868,-0.15956697,-0.24770029,0.09138762,0.47993502,-0.26188576,-0.349315,-0.03728238,0.39044392,-0.11870227,-0.45844352,0.17335974,-0.3079351,0.22764692,0.0015388657,-0.3990378,-0.2516769,-0.06494177,-0.44427153,0.14157814,0.20285603,-0.25545517,-0.04641006,-0.19700988,0.1138157,0.7797075,-0.17439884,0.1386889,-0.33831054,-0.51852214,-0.6320784,-0.45010293,-0.020721562,0.22038002,-0.026829457,-0.6582146,0.18843985,-0.09936193,-0.23909266,-0.13345261,-0.31165215,0.39849824,0.11860555,0.327102,-0.27371678,-1.0297939,0.25049463,0.063447185,-0.12975246,-0.4718079,0.41375786,-0.06940265,0.747016,0.07147392,0.05031174,0.13323665,-0.41847852,0.0025104205,-0.11759078,-0.18563214,-0.60802346,0.11481762 -803,0.34318736,-0.27103525,-0.39401805,-0.2307658,-0.4946808,0.07314162,-0.26071227,0.27596658,0.20994486,-0.20808646,-0.08673687,-0.18276523,0.17012902,0.42854393,-0.1192443,-0.42957038,-0.18096027,0.15491554,-0.685414,0.41645834,-0.5722118,0.22465,0.011965976,0.41277176,0.32759184,0.312582,0.22933817,-0.14023446,-0.120562695,-0.074425586,-0.10555253,0.14388627,-0.48896644,-0.06737145,-0.33582053,-0.42921266,0.011368092,-0.51191586,-0.35743332,-0.7048228,0.22156271,-1.0211717,0.5309301,-0.023235826,-0.16788091,0.023037024,0.3524852,0.49945858,-0.25627363,-0.002573953,0.22460191,-0.26475787,0.0011193037,-0.30939192,-0.17713787,-0.4621812,-0.4957305,-0.11743757,-0.5494555,-0.32500032,-0.18944782,0.15631385,-0.34600773,0.097371705,-0.03778855,0.34516972,-0.4896355,-0.052696418,0.3289536,-0.103294276,0.39162007,-0.56111634,-0.045206666,-0.076324716,0.4402743,-0.14741446,-0.1735203,0.42919382,0.29023057,0.3239603,0.12278979,-0.27122116,-0.2434204,-0.24424836,0.03197024,0.45328683,-0.22540665,-0.30028275,-0.28244892,0.08493328,0.38388702,0.42016315,-0.054565366,-0.12067456,0.051236566,-0.026795868,-0.17385925,0.68977666,0.52139765,-0.25322008,-0.30727196,0.22067179,0.6368576,0.16882038,-0.36596283,-0.052398905,0.08465631,-0.5655596,-0.13269371,0.34361544,-0.13063379,0.4487791,-0.13948096,0.18289126,0.8200339,-0.2805241,0.0042171003,-0.033254094,0.060644064,-0.18830611,-0.29059485,-0.23413175,0.15887421,-0.6591099,0.078303955,-0.25930297,0.81645256,0.21283096,-0.5864466,0.31687418,-0.5944561,0.14515877,-0.12937601,0.6081366,0.6395451,0.44785872,0.41546974,0.7613698,-0.13254124,0.20908624,-0.07132299,-0.37253258,0.101577,-0.34171695,0.08015212,-0.5280749,0.029918721,-0.15241675,0.055948567,0.110452555,0.39993802,-0.47199187,-0.061868787,0.38656935,0.77916247,-0.35955924,0.06190403,0.6600164,1.042177,1.1129733,-0.054352257,0.95670354,0.31117585,-0.31930724,0.26725823,-0.3547087,-0.5350534,0.28751782,0.330326,-0.2857395,0.35117444,-0.17438796,0.035730798,0.23380123,-0.5034028,0.10738705,-0.010799583,0.12793891,0.2760661,0.050186913,-0.5531477,-0.27640477,-0.08677461,-0.011612987,0.12054016,0.22041841,-0.19583829,0.40757665,-0.07127164,1.3098485,-0.018725451,-0.062023066,0.08402087,0.79860604,0.10464776,-0.15277249,-0.047931314,0.2084232,0.35851136,0.13023497,-0.59611255,0.2626688,-0.29598764,-0.46976092,-0.15676075,-0.39326122,-0.104210965,0.053342912,-0.48759058,-0.17646986,-0.08318793,-0.301859,0.47161618,-2.8238194,-0.36309084,-0.16739413,0.287333,-0.29082564,-0.17543603,-0.0710727,-0.56422925,0.26705208,0.25644866,0.42784217,-0.74703103,0.46663585,0.5599249,-0.64668167,-0.07733314,-0.83792305,-0.18852457,-0.07503058,0.48182064,0.05491712,-0.100724116,-0.0027069966,0.3068138,0.6784205,-0.015807109,0.10115003,0.31681803,0.3157002,0.112864524,0.6840303,0.017557537,0.44581586,-0.45419624,-0.1590635,0.3572869,-0.25135818,0.11421759,-0.14305201,0.10671625,0.6933796,-0.50531375,-0.90763825,-0.6680334,-0.19914058,0.94338876,-0.21083497,-0.42924303,0.1241158,-0.4015566,-0.053094156,-0.09574518,0.5632964,-0.052634694,0.06582423,-0.72460943,0.08388826,0.051367037,0.09236577,0.030230427,0.08526314,-0.31169832,0.6608219,-0.06329804,0.4394795,0.20802674,0.20029452,-0.31362307,-0.43305486,0.08076707,0.6911747,0.30344453,0.075536124,-0.25922424,-0.2506208,-0.18876831,-0.12595436,0.012859727,0.3501379,0.83437866,-0.13173869,0.14983188,0.36485884,-0.23910908,-0.029197773,-0.07620626,-0.14476135,-0.070174426,0.110864334,0.52956694,0.64322084,-0.017577933,0.57578623,-0.25339535,0.26817667,-0.09250318,-0.48142242,0.5785803,0.73123056,-0.1581125,-0.087118484,0.40221688,0.61117804,-0.41125157,0.47705778,-0.73667806,-0.27117628,0.6389529,-0.2545469,-0.4231983,0.10904615,-0.27526447,0.25019333,-0.74934113,0.21160068,-0.31535068,-0.41309536,-0.5161328,-0.11463437,-3.0852325,0.23129629,-0.19618085,-0.13321787,-0.18464263,-0.13159606,0.22201808,-0.5548271,-0.49391803,0.10986953,0.20993513,0.76575905,0.0028727034,0.105013646,-0.33101216,-0.205367,-0.2533865,0.179792,0.2600765,0.36741763,-0.22698593,-0.55248034,0.12481771,-0.2024044,-0.58517176,0.11204211,-0.6155007,-0.46360067,-0.10941831,-0.46627495,-0.42051035,0.60530627,-0.21820995,0.13228218,-0.23577677,0.06511662,-0.052067433,0.2913807,0.20949061,0.036907706,0.18408576,0.024608443,0.20969859,-0.3806867,0.48344374,-0.050463226,0.35065565,0.13221806,0.13505861,0.19386335,0.59428346,0.5560535,-0.11762689,1.0683535,0.47205594,-0.07964557,0.115357645,-0.24022684,-0.2342946,-0.5492505,-0.25801596,-0.11148872,-0.38243192,-0.4423343,0.06955169,-0.2909716,-0.78112036,0.7489905,-0.093729086,0.37362102,-0.024086865,0.3093017,0.4668942,-0.22405557,-0.018314803,-0.082849815,-0.14282036,-0.560216,-0.3314196,-0.76904964,-0.5677839,-0.05114871,0.91126096,-0.21772483,-0.026279194,-0.088662274,-0.3882487,0.09764036,0.15745075,0.013716682,0.3352952,0.43691844,-0.13257284,-0.67357296,0.34040722,0.013981384,-0.047737937,-0.46191397,0.087530166,0.7557266,-0.71076113,0.38859692,0.4194013,0.027123729,-0.2550518,-0.39940056,-0.19313517,-0.086877,-0.27179196,0.4291473,0.037365373,-0.8201024,0.57647926,0.21984035,-0.3969421,-0.6251123,0.54108846,0.036106307,-0.36873704,-0.016451376,0.2527251,0.20233384,-0.10377059,-0.3188076,0.27203855,-0.38001233,0.12431939,0.15396854,0.04698939,0.41875026,-0.10589967,-0.32883018,-0.81428707,-0.06696986,-0.51089793,-0.27412257,0.4642512,-0.016323008,0.08638279,0.28530967,0.08955768,0.26534402,-0.14284854,-0.0019576787,-0.091958396,-0.3396958,0.22894292,0.39090812,0.38925993,-0.42345238,0.6321736,0.031951945,-0.156085,0.16670975,-0.12538883,0.32154432,-0.010870639,0.42164344,-0.048841946,-0.34904262,0.38806096,0.7040717,0.32720798,0.37596464,0.09168053,-0.05931994,0.4110457,0.034287624,0.055549916,-0.08346065,-0.3119632,0.0016815146,-0.18436308,0.08850875,0.38795602,0.16395648,0.38535246,0.026124204,-0.23181503,0.016959775,0.049849495,-0.20647888,-1.3445653,0.31365153,0.29424208,0.80757946,0.4680276,-0.04457366,-0.089758,0.79432106,-0.38537148,0.02065614,0.5325512,0.13326642,-0.38505515,0.7509677,-0.6787972,0.6209474,-0.07601248,-0.07660923,-0.02856534,0.2084888,0.43271643,0.72721726,-0.269311,0.08219035,0.043570068,-0.28993362,0.20449467,-0.35827368,0.05326031,-0.5342576,-0.19353785,0.7746521,0.31504318,0.4009673,-0.024672087,-0.084838025,0.035406776,-0.13217108,0.36373004,-0.030498499,-0.062114216,0.084848605,-0.67847,-0.09420528,0.3944723,0.053406548,0.18540137,-0.10269764,-0.24786541,0.04645878,-0.1874155,-0.019129975,-0.034296367,-0.6651861,-0.024879638,-0.2508955,-0.56881267,0.64225525,-0.35946184,0.25258464,0.20948371,-0.011100087,-0.12647639,0.28615758,0.18558206,0.72245824,0.008194466,-0.30692673,-0.21624465,-0.08671189,0.26430452,-0.24227375,0.04519825,-0.29944327,0.09367654,-0.59554344,0.7041931,-0.2033222,-0.47868174,0.22467525,-0.23173405,-0.009685371,0.64524424,0.023036735,-0.14787968,-0.00973742,-0.05398054,-0.39048386,-0.06924704,-0.2601974,0.22780535,0.30082405,-0.16063659,-0.18226375,-0.30475992,0.021102227,0.7713181,-0.1069187,0.5567034,0.24644595,0.06166797,-0.27397224,0.041085593,0.17212589,0.53868765,0.06425382,-0.14116327,-0.45554596,-0.22163065,-0.16292956,0.17998429,-0.008960876,0.22121437,0.073448926,-0.29529735,1.009282,-0.30674335,1.1513332,0.19747019,-0.43245456,0.105131425,0.45397434,-0.009177323,0.032973718,-0.34007156,0.70402324,0.5317229,-0.1648451,-0.20611885,-0.47117516,0.03457533,0.30040407,-0.26823112,-0.16336296,-0.11577416,-0.45656377,-0.47817463,0.34405422,0.17946145,0.3477294,-0.15089433,0.117993005,0.10830916,-0.002126319,0.49080485,-0.50844437,-0.10299315,0.22183532,0.24988016,-0.17000195,0.18471608,-0.44491875,0.40674585,-0.60084045,0.13426861,-0.47163385,0.17740634,-0.3189747,-0.39295524,0.17790715,0.07009606,0.32788607,-0.12700614,-0.3635081,-0.12636675,0.5018266,0.14325537,0.23892972,0.5996723,-0.23920444,0.03223199,0.009182858,0.42606455,1.3176156,-0.39528254,-0.07253957,0.27651054,-0.39514574,-0.5771896,0.4440071,-0.40109977,0.011153865,0.17597976,-0.29077855,-0.4125798,0.2370916,0.17880899,0.050822895,0.007537667,-0.4732666,-0.19853334,0.3175965,-0.2666511,-0.25174955,-0.27674678,0.36835966,0.5013701,-0.22101846,-0.2143773,-0.013102007,0.4691606,-0.22963336,-0.31690484,0.039902084,-0.2287757,0.34004173,0.036338918,-0.37334722,0.038492545,0.089647815,-0.48944128,0.029442945,0.25686526,-0.5360761,-0.00028773546,-0.18948016,-0.002678911,0.96529377,-0.20986165,-0.063639075,-0.45466486,-0.3613471,-0.9628987,-0.33238068,0.27638522,0.22392067,0.08147766,-0.33788723,0.060348526,0.00083349546,-0.39256898,0.102373786,-0.57839656,0.39869386,0.17574787,0.41138455,-0.15846096,-0.8020822,0.023206003,0.11254452,-0.19219635,-0.5292599,0.7318963,-0.07773391,0.87654465,0.10302995,0.02353651,0.055030167,-0.216553,0.18226989,-0.35794646,-0.23559086,-0.881901,0.00025084714 -804,0.41489154,-0.28921166,-0.3833222,-0.09523822,-0.325296,0.13222052,-0.28805178,0.52091867,0.101646684,-0.33987692,-0.1169752,-0.2657524,0.10633237,0.4625784,-0.21417737,-0.6063879,0.109062694,0.20453149,-0.51446176,0.43986145,-0.44687036,0.4309812,0.16375631,0.23687826,0.11597324,0.18698505,0.26484153,-0.12519632,-0.10158102,-0.22580458,-0.22043523,0.24396521,-0.4486579,0.16367984,-0.26023307,-0.43917146,0.15014143,-0.4816699,-0.37401867,-0.68842155,0.094283506,-0.6767873,0.5972425,-0.029527545,-0.3152001,0.14206873,0.05776772,0.4447217,-0.18097715,0.11068806,-0.005860187,-0.13415994,-0.08888066,-0.18194894,-0.24924111,-0.48017645,-0.48227048,0.08731894,-0.5308914,-0.30450705,-0.08566253,0.15427223,-0.18409652,0.11059341,-0.11729019,0.45510936,-0.4789196,-0.038880944,0.2607348,-0.18073334,0.19324027,-0.53156203,-0.022959277,-0.07608764,0.28088647,-0.22236541,-0.30534348,0.089762315,0.33431834,0.45439392,0.018002553,-0.2249097,-0.20577969,-0.21789563,0.027405094,0.65835524,-0.10912271,-0.6156086,-0.28995723,0.015417685,0.3359147,0.1686042,0.069732025,-0.41469774,-0.14930585,-0.052475847,-0.38613302,0.2963287,0.45560837,-0.5585467,-0.23742092,0.30500597,0.5618114,0.11601229,-0.13166477,0.2503369,0.020546732,-0.4873861,-0.041599162,0.16639005,-0.1259679,0.5816256,-0.13575439,0.22348407,0.600853,-0.0840428,-0.027473103,0.039595753,-0.041202668,-0.09338707,-0.19551343,-0.19113666,0.30698153,-0.4551875,-0.0011128336,-0.33925903,0.8131945,0.19281492,-0.6383775,0.37228587,-0.5812083,0.15170157,-0.024946153,0.5940583,0.6400423,0.34305197,0.16963425,0.61675733,-0.41970566,0.13075286,-0.27072713,-0.34462982,-0.006481895,-0.08997071,0.05179608,-0.49552274,0.12128067,0.027551785,-0.03193891,0.19488236,0.34841385,-0.63454294,-0.11429771,0.04034745,0.71876013,-0.3095686,-0.09663148,0.79197747,0.9404379,0.8052958,0.0056522917,1.2814988,0.31062657,-0.1260804,-0.057523627,-0.29277316,-0.33381507,0.21809071,0.3573642,0.13257264,0.2858572,0.09454629,-0.030770496,0.46909028,-0.29443088,-0.006198406,-0.17434637,0.046375237,0.047425695,-0.011917364,-0.52057135,-0.17648514,0.111344025,0.038434684,0.25399953,0.32859123,-0.22181909,0.48890227,0.12917931,1.3198001,-0.04055175,0.09803897,0.09511553,0.32329258,0.2957834,-0.015401404,-0.031003498,0.31053036,0.3677889,0.03349956,-0.46593097,0.123708665,-0.21382043,-0.41035408,-0.09145737,-0.26346272,-0.16608828,-0.010018872,-0.5324988,0.014653716,0.08834213,-0.20350468,0.5252407,-2.804213,-0.34510583,-0.14677018,0.3138674,-0.24558815,-0.40557408,-0.09584764,-0.47598213,0.4085952,0.37687874,0.48493567,-0.685772,0.46759275,0.38752785,-0.35925382,-0.21347697,-0.64407665,-0.10358382,-0.023103558,0.43817532,0.05941665,-0.10368827,0.042624444,0.16080269,0.5737518,-0.08712177,0.09470466,0.07726047,0.28692034,0.14720517,0.4376366,0.15528002,0.5835788,-0.21515155,-0.21466058,0.3623916,-0.26379323,0.2932186,0.022386566,0.18384609,0.34238705,-0.2988563,-0.84640765,-0.68714863,-0.31783348,0.88392305,-0.19502267,-0.46358642,0.107317336,-0.09070654,-0.283165,-0.03588619,0.4092096,-0.08809514,0.08376394,-0.7442136,0.018160032,0.04749155,0.24923177,-0.061966285,-0.060900513,-0.38434476,0.5352226,-0.19701134,0.355392,0.38647395,0.2515996,-0.18884411,-0.47156072,-0.020525236,0.97932696,0.3826713,0.18390842,-0.14186658,-0.21144474,-0.30290785,0.010221951,-0.01654067,0.64622575,0.73271257,-0.026006669,0.096178174,0.23965992,0.04947351,0.06195891,-0.21340679,-0.31295073,0.023008365,0.055064823,0.5886235,0.491234,-0.06711812,0.58164454,-0.091468714,0.39457506,-0.20636833,-0.5302958,0.5137793,0.8086971,-0.34118375,-0.24471134,0.6084025,0.45558387,-0.21827789,0.35838613,-0.76590496,-0.33761004,0.40055615,-0.1902294,-0.4865457,0.36953336,-0.20270942,0.17018962,-0.87024295,0.30468592,-0.14724639,-0.48985088,-0.52073234,-0.09179017,-3.638503,0.19794184,-0.07245327,-0.14388311,0.032657534,-0.27356035,0.13650912,-0.4433405,-0.38306803,0.1729928,0.1211117,0.5459125,-0.05648867,0.050172426,-0.36080942,-0.34773493,-0.10048803,0.27740788,0.025457941,0.27981973,-0.18821482,-0.39826894,0.1385577,-0.23790154,-0.4781058,0.14269693,-0.69029725,-0.4175826,-0.15605228,-0.48284113,-0.28724918,0.6497687,-0.53717035,0.16374905,-0.27504873,0.10902497,-0.14847404,0.32155985,0.1581781,0.08428637,0.049568437,0.025858521,0.0460895,-0.38498583,0.24532044,0.13187715,0.10149163,0.30212712,-0.036211118,0.19042721,0.48983198,0.5852039,0.042507365,0.7293284,0.33304152,-0.0022993265,0.28826505,-0.19425225,-0.3841195,-0.48316494,-0.3714931,-0.14986677,-0.45490253,-0.42635965,-0.20704821,-0.25965655,-0.6835227,0.661279,0.079161346,-0.081359945,-0.1840648,0.4246099,0.48578128,-0.38065043,0.019062918,-0.0016075,-0.06951469,-0.48260337,-0.3852647,-0.7031079,-0.48230854,0.06496173,0.8452559,-0.188196,0.039505154,-0.025890611,-0.032966226,-0.05732097,0.2010085,0.21910019,0.22280192,0.45013055,-0.35984153,-0.67273986,0.4897518,-0.3117975,-0.44840676,-0.58914244,0.23075733,0.6649603,-0.6308621,0.4245214,0.42433563,0.08607298,-0.14606823,-0.42304644,-0.19416116,0.13247955,-0.26602143,0.49530783,0.08985448,-0.74072254,0.5069396,0.28607333,-0.20663482,-0.68632805,0.5872117,0.01696056,-0.321985,0.1241216,0.36947817,0.19302337,0.044178784,-0.16242056,0.044544186,-0.4177068,0.23162118,0.34596947,-0.044836156,0.47103667,-0.277239,-0.10135223,-0.7883715,-0.21490327,-0.5308448,-0.2054712,0.06754934,0.077761166,0.12465774,0.12117117,-0.091376245,0.39476043,-0.38202688,0.13406436,-0.12280846,-0.23842412,0.3796098,0.48212963,0.26830548,-0.23401123,0.59987473,-0.013942296,-0.074379005,-0.19335642,0.03145225,0.5331439,0.14105684,0.43172607,-0.14612705,-0.2034831,0.3532593,0.6938019,0.26132676,0.31818447,0.18601999,-0.09373574,0.22260854,0.15732893,0.14719273,0.08337092,-0.36952066,-0.113251075,-0.21520472,0.123507485,0.4877729,0.09532962,0.40859455,-0.04416489,-0.38187066,0.09517685,-0.061082195,0.09002426,-1.2163013,0.19579147,0.17415136,0.6644647,0.36219496,0.1912309,0.020787347,0.5189883,-0.2637261,0.0116333775,0.25878733,0.055091716,-0.3550352,0.5858137,-0.7555504,0.5287497,-0.21347293,0.012680472,0.098050565,-0.09675534,0.39153203,0.9344466,-0.14915633,0.07345813,0.0055169035,-0.19811156,0.08435064,-0.38835302,0.09201314,-0.48642737,-0.30003083,0.7133609,0.44019514,0.40561998,-0.20730346,0.0075403955,0.22385918,-0.12948951,-0.00013307482,-0.01582532,0.22697936,-0.14283016,-0.5016991,-0.24724552,0.6003587,-0.09061898,0.06964953,-0.008391801,-0.23827049,0.22660941,-0.0794934,-0.042451985,-0.076026574,-0.6459723,-0.06544575,-0.3177713,-0.47464973,0.47070518,-0.2662516,0.20924145,0.10052812,0.06608186,-0.33165154,0.5132811,0.20756263,0.86072624,0.1056356,-0.10471879,-0.20270357,0.08619109,0.30688664,-0.18368086,-0.17257635,-0.27104115,0.13143606,-0.6573467,0.3353851,-0.13173115,-0.29561055,0.07541364,-0.045628995,0.029462788,0.39774013,-0.091845736,-0.2909457,0.29140517,-0.10051116,-0.17218713,-0.12981926,-0.1908727,0.25300655,0.24603364,0.02116875,0.004510559,-0.124423675,-0.22195956,0.35435525,0.06459697,0.40944973,0.31257075,0.13929829,-0.36405012,0.08178699,0.0116150305,0.3733068,-0.12128095,-0.10624411,-0.19427155,-0.5441491,-0.35448056,0.006317094,-0.047837675,0.2995219,0.04409621,-0.2739235,0.9010659,0.011928827,1.201954,0.015967399,-0.46261835,0.16636795,0.5133096,0.045359403,0.06398073,-0.2664657,1.0001338,0.4454161,0.026377779,-0.11010928,-0.29186016,-0.035354055,0.15892659,-0.16354552,-0.2069763,-0.019205863,-0.46268928,-0.2343073,0.3255293,0.28272766,0.23382388,-0.011810057,0.15783714,0.23996285,-0.015472699,0.35910913,-0.5639085,-0.005985856,0.31702965,0.37710842,-0.13654989,0.07362668,-0.32776836,0.5007202,-0.58546287,0.06932199,-0.5148592,0.08963892,-0.13569969,-0.25232804,0.1359631,-0.009434,0.31311178,-0.4183327,-0.36478102,-0.30590975,0.5168811,0.15037334,0.072905436,0.6856164,-0.14182597,-0.035481352,-0.036642298,0.5160688,1.0947224,-0.52011096,-0.06886022,0.44745174,-0.28690773,-0.50426304,0.23306942,-0.44874564,0.20113553,-0.04486981,-0.16177511,-0.41997212,0.32429016,0.20688239,0.027892802,0.035041645,-0.51036906,-0.042355932,0.46804035,-0.33647072,-0.27512032,-0.3609946,0.37535825,0.5781735,-0.25162965,-0.49557054,-0.028485958,0.3214203,-0.30034703,-0.6470588,-0.020175144,-0.25176698,0.3275437,0.19929886,-0.21347591,-0.073170915,0.04401159,-0.44723475,-0.04791934,0.24606374,-0.30326337,0.21072364,-0.24860041,0.0023859143,0.8301906,-0.11329587,0.21204558,-0.7871852,-0.55752325,-0.88777906,-0.42339337,0.5591908,0.28199142,0.023966433,-0.5786773,0.0070029683,-0.16542114,-0.14376229,-0.022198267,-0.21770072,0.46008196,0.16349204,0.507769,-0.11963627,-0.8483323,0.03123407,-0.038103916,-0.2066577,-0.50425935,0.43277818,0.10234642,0.84089005,0.1063672,0.10128541,0.37798598,-0.5043859,0.044355728,-0.4265206,-0.15375946,-0.8455329,0.13134426 -805,0.39348415,-0.27130333,-0.5668465,0.01961893,-0.22860694,0.08443393,-0.31967053,0.27371386,0.22986843,-0.40932888,-0.12406812,0.056832902,-0.06394507,0.2028928,-0.14981234,-0.5732874,-0.10850907,0.2302024,-0.5367752,0.8402818,-0.14518876,0.18704288,-0.21520294,0.4216493,0.34342545,0.445997,0.06438689,0.095259905,-0.18320605,-0.21838729,0.043986168,0.094892845,-0.7252234,0.41364792,-0.2538253,-0.25629327,-0.02288787,-0.40223822,-0.24155697,-0.83462745,0.4553399,-0.7665078,0.46603087,0.023470402,-0.2138246,0.22470212,0.38761917,0.3666728,-0.18324968,-0.17213818,0.204928,-0.15104331,-0.026269099,-0.36483866,0.12318497,-0.26884976,-0.39406583,-0.124738775,-0.39919725,-0.073300876,-0.41050345,0.27689132,-0.30096006,-0.08646136,-0.2006748,0.4077043,-0.46095565,0.046187755,0.13784729,-0.16156332,0.2319489,-0.7966652,-0.28891483,-0.032859378,0.41713616,-0.025806788,-0.11020112,0.56635875,0.03319826,0.1687497,0.11105324,-0.23393607,-0.37691,-0.12440549,0.28882146,0.43980902,-0.17906234,-0.35910437,-0.20934704,0.0055582267,0.39096302,0.18698673,0.11724293,-0.17491327,-0.009402876,-0.047513165,0.0015419892,0.5303841,0.45478868,-0.1754005,-0.13022254,0.24908319,0.59865564,0.43221325,-0.28026,-0.23278356,-0.09821465,-0.35943922,-0.15145303,0.14317311,-0.13296564,0.4435207,-0.07742249,0.25419375,0.6483204,-0.026961628,0.0061176782,0.12694588,0.29513508,-0.06408744,-0.30884123,-0.3490282,0.3594598,-0.5053857,0.27509445,-0.29964837,0.47795683,-0.02517615,-0.5814866,0.112595275,-0.60397375,0.12442994,0.047321703,0.4629128,0.6466656,0.4182219,0.27726534,0.87262356,-0.32996613,-0.057801735,-0.14106186,-0.25688753,0.0867952,-0.26582232,0.0034412998,-0.4810443,0.09475867,-0.018125935,0.05251606,-0.009727584,0.42691216,-0.5560958,-0.22229682,0.026321685,0.78449523,-0.20884548,0.18137184,0.83322036,1.1044768,1.0701591,-0.030850526,1.0590059,0.032888148,-0.34470955,-0.057716973,-0.22151089,-0.646357,0.21765442,0.44519717,0.1366249,0.4098625,0.15132415,0.0055718245,0.2833953,-0.42864564,-0.11217586,-0.092749834,0.30778044,0.12432616,-0.11339208,-0.37635878,-0.15672038,0.07163368,0.020389998,0.1530536,0.16491382,-0.38549516,0.32821232,0.080586925,1.4721183,-0.14476578,0.009379183,0.17574228,0.48148677,0.2986079,-0.18758371,-0.07390438,0.46456257,0.30428538,0.039958738,-0.5991296,0.14884497,-0.40179372,-0.49137565,-0.07273282,-0.40335554,-0.15483867,0.06367159,-0.20834391,-0.24181819,-0.09282543,-0.18887496,0.33241838,-2.7809956,-0.18225336,-0.15624775,0.32141107,-0.32043776,-0.2111499,-0.10643164,-0.32926384,0.5372152,0.25706676,0.5855909,-0.42063552,0.19061525,0.37114722,-0.83468086,-0.051840927,-0.3833097,-0.0893204,0.0028282541,0.6003627,0.064812854,-0.1980474,0.027195266,0.20284274,0.45586997,0.10832369,0.1399972,0.47477618,0.4047692,-0.2606699,0.51262236,0.078710616,0.44133326,-0.3781999,-0.19486725,0.37394795,-0.37229607,0.3450521,-0.19649765,0.02687803,0.58432907,-0.42882422,-0.79655343,-0.59426117,-0.014266695,1.1209924,-0.25125748,-0.71268874,0.059491422,-0.2361582,-0.15090786,0.030795977,0.42746213,-0.10959422,0.025370207,-0.6970268,0.034845937,-0.21596049,0.13691361,0.113042995,-0.09688587,-0.5997693,0.8704871,0.029193958,0.60592747,0.29346114,0.2562175,-0.41136098,-0.34605047,0.16178067,0.6531252,0.53784186,-0.0134187555,-0.19310151,-0.19021747,-0.07882272,-0.27530897,0.26227733,0.7990832,0.44242457,-0.085451804,0.12668134,0.40134805,-0.042411596,0.034416255,-0.21491513,-0.41887373,-0.25030407,-0.13599642,0.4983041,0.72868127,0.0290397,0.21287759,0.111356,0.18412945,-0.015137881,-0.4184492,0.5806044,1.1392704,-0.090121046,-0.22216518,0.56589824,0.48043776,-0.17835662,0.4962785,-0.7278271,-0.36411503,0.63361996,-0.15869592,-0.39792603,0.0053992653,-0.33981198,0.059498783,-0.6428408,0.23885755,-0.5181219,-0.3883666,-0.76346695,-0.15086487,-2.0505996,0.17852715,-0.34542766,-0.12323655,-0.43207356,-0.2936068,0.09237622,-0.7202934,-0.6960974,0.309324,0.10788181,0.7607215,-0.29685435,0.072498396,-0.24967833,-0.3694578,-0.27038878,0.214414,0.11886484,0.36561778,-0.14356054,-0.2671582,-0.10192519,0.09870599,-0.39330631,-0.096470825,-0.45928264,-0.37812948,-0.16300784,-0.61252457,-0.08530816,0.62111557,-0.3832195,-0.024689777,-0.119974,0.011128415,0.03185243,0.17336631,0.10111647,0.3479602,0.31634745,-0.10943961,0.11543639,-0.23591565,0.4321776,0.13703372,0.29868585,0.27574822,-0.35645154,0.20780718,0.346308,0.6183414,-0.11620114,0.8431998,0.47593468,-0.20247175,0.31156138,-0.4186441,-0.4614124,-0.6777715,-0.2671489,0.16255483,-0.24944428,-0.51205254,-0.24994662,-0.3645129,-0.8089455,0.5775108,0.1732261,0.53681767,-0.11360709,0.21093215,0.3840123,-0.23884585,-0.21273302,-0.060631566,-0.1475906,-0.50483376,-0.17015386,-0.59052986,-0.40760782,0.04791326,0.49229544,-0.40973538,-0.036910675,0.3035764,-0.39188072,0.20712027,0.2004914,-0.077485785,0.0015439646,0.46951512,0.26193622,-0.6232848,0.5100827,0.081319585,-0.13478018,-0.47796535,0.47607926,0.44467172,-0.41552004,0.5290896,0.35022637,-0.04818135,-0.25803936,-0.48708275,-0.04292195,0.032343097,-0.21696089,0.5249379,0.2666077,-0.5752826,0.34232888,0.24766813,-0.3619353,-0.7832532,0.6207776,-0.124157675,-0.28319782,-0.18805334,0.43471867,0.24135992,-0.053304322,-0.05114015,0.38759786,-0.40851212,0.38431475,0.084826596,-0.093203016,0.28644153,-0.17676297,-0.30005425,-0.7943683,0.3432372,-0.69513386,-0.27028742,0.5011576,-0.022906156,-0.18444861,0.18283102,0.2686541,0.38699493,-0.33950448,0.12154931,-0.23551676,-0.29117277,0.34759265,0.47654724,0.54665196,-0.65132433,0.4713157,0.06697367,-0.12504837,0.19545467,0.060253162,0.31581968,0.089168236,0.5828396,0.0087052155,0.010766864,0.032534804,0.46339703,0.18949592,0.42110777,-0.052563723,-0.27166942,0.17110421,0.12070286,0.38531297,-0.07737757,-0.6760821,0.1615072,-0.064642966,-0.033350565,0.5588951,0.36085182,0.14280275,0.077432685,-0.36993426,0.04110023,0.25570458,-0.16285999,-1.3401653,0.6198984,0.29799595,0.91393673,0.57185894,0.041873574,0.20724188,0.7351104,-0.0579249,-0.08069668,0.27873328,0.053033113,-0.5386122,0.4507135,-0.7888484,0.42047754,0.078475185,-0.02834776,0.03270767,0.005957663,0.3867333,0.5341678,-0.22633614,0.0062738187,-0.11647506,-0.31739506,0.18373276,-0.18835472,0.32881862,-0.40091035,-0.37266847,0.63096374,0.44461086,0.363732,-0.16562136,0.13907193,-0.0053445995,-0.22207336,0.33295155,0.06534443,0.131554,0.048204012,-0.6085043,-0.16023609,0.489676,-0.2612213,0.16890994,-0.058220256,-0.1781164,0.2657763,-0.069224045,0.15676615,-0.066371895,-0.7789475,0.34382135,-0.23839809,-0.23917235,0.43919644,-0.028234899,0.13518919,0.19123124,0.100954965,-0.16218928,0.34115934,0.037225835,0.71983045,0.032280393,-0.25274906,-0.4679618,0.16281463,0.1321575,-0.14771912,0.22237675,-0.31367365,0.112221844,-0.5880427,0.4603947,0.0015689901,-0.18387452,0.030806443,-0.18134205,-0.14098585,0.58303803,-0.102453135,-0.17605726,-0.111808844,-0.10546923,-0.25979602,-0.5187319,-0.23807667,0.10060327,0.07921302,0.16386499,-0.3915191,-0.07295629,-0.37908474,0.4847354,-0.014309675,0.29551965,0.24805844,-0.12109702,-0.4614289,0.0054426617,0.310359,0.3399554,0.014014683,0.0702616,-0.27308932,-0.68664616,-0.5809546,0.39685026,-0.028836947,0.3171191,0.121216536,0.012139772,0.78177345,-0.19965264,1.0805161,-0.064140156,-0.3757661,0.10719078,0.67761886,-0.25921923,-0.25667912,-0.28912663,0.9069162,0.63854635,-0.06472283,0.118397966,-0.27042395,-0.055857096,0.15116954,-0.3248603,0.13083705,-0.10532563,-0.46474156,-0.38003585,0.0614497,0.33313295,0.15687962,-0.18835568,-0.15993503,0.31854525,0.15111923,0.2330013,-0.3715994,-0.39777914,0.40471596,0.05367992,-0.05525147,0.08184918,-0.52854735,0.55921,-0.54250413,0.20089915,-0.36496434,0.13069153,-0.31849056,-0.3239007,0.20985487,-0.18679115,0.32350373,-0.38917086,-0.40396315,-0.19181646,0.24933794,0.29842672,0.18052152,0.6204335,-0.38581958,0.17668565,0.030221105,0.43468353,0.6175347,-0.26372716,-0.09980122,0.2305845,-0.56080234,-0.56835467,0.2127271,-0.32393605,0.1404268,0.06671063,-0.2039841,-0.5665404,0.16095306,0.017150087,0.06401921,-0.20471154,-0.9953041,-0.29797754,0.13561673,-0.2293768,-0.13261534,-0.2687857,0.08071203,0.7737755,-0.22203423,-0.4755251,0.1271192,0.05241807,-0.090058066,-0.64485866,0.014127762,-0.49706075,0.44780755,-0.091352426,-0.2894509,-0.29294485,0.17354831,-0.464315,0.22827792,-0.014731811,-0.36002126,-0.057379935,-0.15828678,0.1113488,0.84595996,-0.25865814,0.21769463,-0.42967153,-0.36784825,-0.8928372,-0.33490518,0.050464682,0.15742144,0.08010967,-0.66871583,0.0799111,-0.34320596,-0.024242457,-0.12289583,-0.48352596,0.31655887,0.17019285,0.58334583,-0.31797382,-0.90124166,0.4006088,0.25358304,-0.07330676,-0.4410574,0.41474804,-0.15709583,0.7620386,0.11393036,-0.03373254,0.0184568,-0.59345394,-0.034283213,-0.19991226,-0.18110992,-0.678833,0.10134763 -806,0.49451134,-0.19605313,-0.48737922,-0.25508007,-0.4077108,-0.040863402,-0.30086714,-0.023765078,0.19138627,-0.4930157,0.0058543948,-0.2412511,-0.042626757,0.3736775,-0.20715867,-0.60945606,-0.08282937,0.104712166,-0.55456877,0.4802242,-0.49602064,0.26251134,0.23793149,0.39239576,-0.036250357,0.25461242,0.2560229,-0.07201205,-0.16910121,-0.20880239,-0.182111,0.19041674,-0.9950635,0.29728508,-0.2519439,-0.48259902,0.10872696,-0.472786,-0.34268066,-0.7606902,0.18314967,-1.0353569,0.5883222,0.050559305,-0.3287305,0.05104416,0.23652472,0.210578,-0.28795883,0.0617177,0.23540933,-0.4729933,-0.06464111,-0.18236093,-0.1644551,-0.6692957,-0.77987987,0.008707472,-0.67045134,0.0047818804,-0.26259893,0.28270692,-0.37854484,0.02250123,-0.33739778,0.3493854,-0.5937313,-0.07234449,0.07303805,-0.034689743,0.38316494,-0.31164956,-0.16832304,-0.26270372,0.24544416,-0.28035757,-0.26176763,0.3290209,0.26462254,0.6212825,0.05378536,-0.42873,-0.19845462,-0.024726238,0.12943389,0.25619113,-0.047356147,-0.33750528,-0.27770492,-0.058924537,0.2283489,0.39266777,0.086485736,-0.28361896,0.14576264,0.042591352,-0.21781328,0.36925408,0.5183317,-0.4004108,-0.48108783,0.27193254,0.5252821,0.03949815,-0.26490006,0.108898975,0.14213434,-0.49887103,-0.34803414,0.32229665,-0.213963,0.7185956,-0.20340061,0.1266282,0.8124484,-0.32672295,-0.092594504,-0.116923295,-0.24320938,-0.21808288,-0.18269217,-0.17521052,0.37358326,-0.6771153,0.12956937,-0.29512516,0.6536254,0.2197962,-0.83492607,0.32402635,-0.6892933,0.15798895,-0.13767199,0.6797925,0.775438,0.5118937,0.48663542,0.69390213,-0.45019937,0.12416322,0.046594854,-0.52026683,0.20069754,-0.41443625,0.06313624,-0.3406605,-0.097384624,-0.19893172,-0.09159528,-0.25455993,0.44126827,-0.39551464,0.0051790006,0.21749468,0.6537684,-0.35226193,-0.078795485,0.9329285,1.1227233,1.2017481,0.22153656,1.4449538,0.37501785,-0.073714726,0.09063171,-0.020758301,-0.5751718,0.122010335,0.34618074,-0.12022638,0.3489577,0.16321458,0.19247174,0.55754757,-0.45577675,0.037747066,-0.061773684,0.32433048,-0.12776373,-0.0015067969,-0.5864228,-0.27487758,0.095486246,0.012552255,-0.051308326,0.38913473,0.024908384,0.4578968,0.2999112,1.2227075,0.039329905,0.1208112,0.029076593,0.43055853,0.13892333,0.020503355,-0.0055181044,0.20100106,0.30532357,0.12290977,-0.493999,-0.038319003,-0.25511095,-0.4049863,-0.26533937,-0.4238909,0.11463113,-0.3953567,-0.4963522,-0.23967168,-0.0026417163,-0.29061085,0.5490309,-2.181092,-0.23675542,-0.07119768,0.18868221,-0.17610586,-0.31453052,-0.0058364444,-0.6240483,0.33092064,0.293165,0.42299166,-0.7864481,0.50970507,0.5734665,-0.56036764,-0.08823805,-0.8630094,-0.2116981,-0.2051679,0.37783775,0.10836359,-0.30084208,-0.28477877,0.10412566,0.6272548,0.03428682,0.056264903,0.10723199,0.45686626,-0.08788097,0.7904338,0.17223777,0.43737426,-0.311065,-0.16021104,0.5197732,-0.26301995,0.4149776,0.11426942,0.15695974,0.4961273,-0.5719618,-0.97470653,-0.7858301,-0.7483758,1.0745343,-0.42311677,-0.42067614,0.096887484,-0.008452644,-0.2675326,-0.10993768,0.38273492,-0.16462271,0.36185384,-0.775339,0.0049680793,-0.11790674,0.3252326,-0.03133851,0.23768269,-0.5650321,0.69295603,-0.14281203,0.35539323,0.48703414,0.18825948,-0.2459477,-0.5702232,0.1424395,0.9596755,0.39649528,0.072272405,-0.44399843,-0.3841591,-0.009189376,0.00043735333,-0.022167612,0.49063563,0.77883464,-0.18300374,0.026695386,0.45444632,-0.17683746,0.010966857,-0.07191493,-0.26393852,-0.004875958,0.16421212,0.6145769,0.81927407,-0.18421161,0.372977,-0.2354757,0.42906126,-0.030836055,-0.55511814,0.40725332,1.0634869,0.023998683,-0.026310418,0.7544292,0.5219592,-0.45939317,0.6456054,-0.75908834,-0.31746176,0.5209938,0.02593267,-0.50732404,0.03855232,-0.36899862,0.147058,-1.0633787,0.50881886,-0.24790105,-0.40617913,-0.66582495,-0.15868083,-4.060106,0.21430853,-0.12123076,0.01397158,-0.0067865765,-0.29453605,0.5617009,-0.6913494,-0.70828164,0.17319576,0.05303847,0.5132786,-0.17525165,0.1565247,-0.4288797,-0.29260412,-0.34446114,0.4252849,0.36543903,0.14270791,-0.2195269,-0.54189795,0.0048273164,-0.4433303,-0.4923961,-0.088744655,-0.5552999,-0.52055687,-0.039230615,-0.5567337,-0.53585863,0.7467252,-0.23496474,-0.03873185,-0.3326996,-0.030994415,-0.21800444,0.3539067,0.18141238,0.3405049,-0.024491029,0.092766896,-0.28440592,-0.22569095,0.3549203,0.0926255,0.26949948,0.30430835,-0.121156916,0.22989427,0.5531016,0.6248517,-0.08744276,0.9277597,0.26251948,-0.0933386,0.36362246,-0.25141627,-0.45667818,-1.0023059,-0.37619832,-0.17750253,-0.5504947,-0.47753182,0.017297175,-0.34221363,-0.74315816,0.7521557,-0.020508746,0.15065424,-0.29904428,0.23278138,0.3032875,-0.3957913,-0.1046225,-0.17428493,-0.19069825,-0.6079704,-0.5535206,-0.9240891,-0.7003173,-0.1592314,1.179394,0.069536366,-0.13431495,0.17669961,-0.14066984,0.1587064,0.21613714,0.09647149,0.25403523,0.65566903,0.063627586,-0.8032837,0.5386289,-0.03464761,0.014560883,-0.41315344,0.07275777,0.85356766,-0.87909067,0.6705146,0.4339985,0.10004815,0.11006008,-0.7438545,-0.334509,-0.060152233,-0.20500521,0.6986207,0.23144041,-0.85898775,0.45971125,0.1065016,-0.33039004,-0.69246775,0.6490146,-0.008313128,-0.082393646,0.090205334,0.46418414,-0.030063868,0.0547885,-0.08325183,0.37007195,-0.5173628,0.3148759,0.42248252,0.026078152,0.22218171,-0.061835248,-0.19280405,-0.846735,-0.057382457,-0.3738642,-0.41786495,0.08258676,-0.17178832,-0.1311473,0.35894376,0.13661288,0.33494225,-0.27063757,0.13016687,0.0032384333,-0.42527273,0.20290574,0.54194874,0.42267013,-0.5401892,0.80775726,0.18980098,-0.14431214,-0.2497541,-0.043443996,0.36611134,0.09791907,0.22947861,-0.06438511,-0.117293015,0.23899306,0.8672263,0.24925014,0.5456298,0.2407787,0.04620364,0.44127035,0.28003576,0.24330762,-0.043693807,-0.44105104,0.15541434,-0.12427962,0.1251166,0.46783522,-0.02998993,0.2648641,-0.115113206,0.0026048038,0.12917398,0.33858085,-0.17425619,-1.3622313,0.24310783,0.29573536,0.68883187,0.77681315,0.17254843,0.10420469,0.6269968,-0.59754795,-0.10640449,0.43106908,0.18274276,-0.3914345,0.7976695,-0.53733736,0.44862488,-0.06210361,0.04106071,-0.07378994,-0.039603543,0.36186597,0.98628616,-0.17808558,0.2024295,-0.15854406,-0.035487425,0.20514682,-0.4111287,0.12170672,-0.29837343,-0.28234935,0.85398924,0.44906983,0.4200377,-0.20476969,-0.038204405,-0.020705419,-0.21143128,0.29802448,-0.084376685,-0.15342245,0.052283976,-0.5213189,-0.10916003,0.741002,-0.22272049,0.04897984,0.03065088,-0.46615025,0.24660702,-0.019893484,-0.10494258,0.045302022,-0.8020631,-0.24401668,-0.4429479,-0.34122708,0.46197328,-0.45389804,0.16570725,0.16127536,0.054967854,-0.20036756,-0.007325449,0.3161649,0.5371812,0.36507058,-0.0916203,-0.17098412,0.09429116,0.2524027,-0.35533717,-0.06137847,-0.38194758,0.25269178,-0.6218111,0.51741093,-0.23978357,-0.31157112,-0.018900722,-0.15166941,0.043216042,0.53921694,-0.124146104,-0.21968766,0.17951407,0.10304106,-0.19593023,-0.21407464,-0.24817134,0.31837097,-0.008476241,-0.08409234,0.10073231,-0.019870996,-0.054211583,0.5857768,0.03334057,0.25770214,0.20987198,-0.1738259,-0.41849425,0.06446986,-0.15759218,0.4203518,-0.024749067,-0.041889273,-0.20908417,-0.16318725,-0.14948244,0.30545625,-0.13539375,0.13078573,0.008636983,-0.37430674,0.9105922,0.20827158,1.3286928,0.08906432,-0.500834,-0.020377977,0.44810227,-0.14953147,0.020819223,-0.44426277,1.1834519,0.4469311,-0.1947094,-0.26055247,-0.515935,-0.19372073,0.10032622,-0.29994172,-0.13520953,-0.06437347,-0.76047134,-0.105194435,0.17745793,0.39492956,0.11718844,-0.009576751,0.09036837,0.2100625,0.27042642,0.65430444,-0.6082726,-0.1768217,0.41069227,0.34026113,-0.080504365,0.18933299,-0.18696146,0.48931143,-0.5484888,0.15209188,-0.75014603,0.03813827,-0.14290164,-0.37152243,0.19774161,0.025947938,0.31363347,-0.26781017,-0.23238547,-0.2580644,0.6622942,0.13670605,0.21782677,0.9002528,-0.19531927,0.060582362,0.11122312,0.3737883,1.3522993,-0.3762563,-0.071936846,0.22208592,-0.22978494,-0.5110554,0.38591057,-0.58823866,0.011761223,-0.06867421,-0.5018729,-0.45252863,0.17527536,0.11284864,-0.025425196,0.09748508,-0.68584603,0.027167397,0.46835947,-0.26956373,-0.2467809,-0.2964509,0.35856828,0.7625009,-0.38169512,-0.27576798,0.09305849,0.274625,-0.35755488,-0.53590703,-0.05757552,-0.31576762,0.42992398,0.05274757,-0.41797376,0.19451107,0.3408747,-0.36594576,0.04710373,0.60077655,-0.27780244,0.08148144,-0.31355676,-0.012709881,1.2430694,-0.1158795,0.059803773,-0.56721014,-0.6070387,-0.96737516,-0.3383879,0.30195454,0.3002455,0.089284524,-0.26284146,-0.026134044,0.013480678,-0.061063536,0.11976773,-0.56237686,0.36260965,0.12237571,0.64210045,-0.020997813,-0.91759557,-0.03508948,0.07147215,-0.004482963,-0.43321857,0.63919336,-0.2042431,0.7567148,0.1236633,0.1301788,-0.01788996,-0.5413119,0.35646436,-0.2656397,-0.09844448,-0.79289097,-0.12274819 -807,0.6397513,-0.1925478,-0.6394624,-0.13253285,-0.18386579,-0.0506765,-0.07943866,0.5500529,0.29349405,-0.64426625,-0.24893217,-0.16929288,0.038024154,0.24330422,-0.21172324,-0.90777653,0.019678343,0.101854675,-0.41400516,0.48858172,-0.5238981,0.15914546,0.14918557,0.31621554,0.1145769,0.15679796,0.17339937,-0.15515523,-0.220431,0.15904906,-0.052893516,0.34435257,-0.4449689,0.008110234,-0.19610396,-0.39612186,-0.039683245,-0.41634274,-0.3377496,-0.8119191,0.39009055,-0.89988583,0.46319786,0.100383736,-0.259008,0.15577087,0.07559391,0.18482473,-0.28248534,-0.03201451,0.0048166136,-0.027990716,-0.13718908,-0.067832515,-0.2632564,-0.2833899,-0.6739281,0.23138694,-0.49296823,-0.01125524,-0.14440875,0.19310676,-0.5582263,0.0846487,-0.21059607,0.5744089,-0.41198462,-0.09565539,0.4815438,-0.11527365,0.28593984,-0.48169705,-0.13338086,-0.09826419,0.1269318,-0.11802564,-0.29981753,0.25474963,0.3637487,0.7158663,0.121351495,-0.3990277,-0.25296482,0.123257294,0.19369298,0.31089637,-0.24398878,-0.57979196,-0.24966772,0.06828785,0.23844305,0.18973643,0.17974791,-0.34477317,-0.017804436,0.2307203,-0.32932988,0.4011488,0.6056649,-0.26591682,-0.20503712,0.20439093,0.60028493,0.09597756,-0.08728657,0.1267934,0.09307252,-0.5882061,-0.14994603,0.1730149,-0.14148831,0.5289558,-0.29527685,0.28912786,0.7713898,-0.28147545,0.19416723,0.27224734,0.022414036,-0.13856617,-0.516409,-0.058504377,0.15601824,-0.58923477,0.1214632,-0.29268953,0.9933127,0.23579322,-0.6846933,0.40143055,-0.51925504,0.30357736,-0.2296832,0.6708489,0.77749044,0.15696052,0.31003705,0.7925084,-0.5228052,0.11451757,-0.024189869,-0.6304676,0.15596591,-0.14385504,0.11053729,-0.43802866,-0.11387808,-0.0036423604,-0.07765339,-0.038858574,0.5204655,-0.7086157,-0.14517456,-0.12600651,0.917509,-0.28804323,-0.18263814,0.8792539,0.9098247,0.93393415,0.10366658,1.4395896,0.30139002,-0.100318335,0.46489823,-0.27384982,-0.936887,0.43677795,0.25359443,-0.15933505,0.38675892,0.121554345,-0.16103724,0.484581,-0.4271548,0.17528556,-0.32440808,0.2570719,0.07150297,-0.17085983,-0.3049732,-0.19987416,-0.14103238,-0.047378436,0.15558584,0.21685733,-0.10526297,0.40142113,-0.08813461,1.5840077,-0.061498124,-0.015490618,-0.060403887,0.40456626,0.15377471,0.03431309,-0.14960118,0.12999828,0.38632402,0.094753094,-0.62642395,-0.017520476,-0.28814313,-0.33719632,-0.20006806,-0.4243396,0.07695239,-0.23176907,-0.4773407,-0.06288588,-0.2090154,-0.36418667,0.31130967,-2.4638865,-0.32267982,-0.09823253,0.34075263,-0.2528311,-0.35637662,-0.2644889,-0.49698406,0.494909,0.37192237,0.5985902,-0.81811714,0.43098736,0.38834682,-0.521788,-0.04562516,-0.79510754,-0.029057272,-0.06189454,0.27343848,0.11328895,-0.07059178,-0.027640764,-0.028317602,0.55942893,0.019881908,-0.031177778,0.15033999,0.5807911,-0.05696676,0.48754498,0.020345919,0.5919374,-0.35022208,-0.27034932,0.46065938,-0.39173585,0.08367144,0.031698152,0.1287324,0.30363178,-0.44280225,-0.94066966,-0.6853496,-0.2993785,1.0633646,-0.14643306,-0.3478923,0.24259405,-0.35823834,-0.13004483,0.010282384,0.4399947,0.035357706,-0.15026382,-0.8806847,0.10058071,-0.11423857,-0.07360129,-0.013190571,0.122769825,-0.23254591,0.73846996,-0.21047087,0.34056395,0.34251913,0.24864605,-0.05757366,-0.5568693,0.13490151,1.0150714,0.31480154,0.107924014,-0.2513894,-0.15905015,-0.3208281,-0.07309377,-0.0045375586,0.50085956,0.9286406,-0.0857354,0.07449481,0.3906927,0.030739052,0.057819378,-0.09518662,-0.536932,-0.27152735,-0.15208952,0.6272304,0.7582799,-0.3599399,0.4822094,-0.27075258,0.33416176,-0.1703277,-0.4967559,0.6743587,0.76315296,-0.27805585,-0.27326688,0.52967775,0.27682522,-0.5513007,0.5702163,-0.6090388,-0.33123386,0.42592993,-0.029092463,-0.4467614,0.17364772,-0.37335286,0.113068596,-1.1343311,0.4006581,-0.27444884,-0.33291104,-0.49632037,-0.23045512,-3.349815,0.32057962,-0.48977575,0.020680465,-0.29369366,-0.03214224,0.18798068,-0.52446634,-0.5166492,0.060426496,0.08259972,0.60627943,-0.0019184321,0.22096743,-0.19179052,-0.106140785,-0.32829028,-0.016548323,0.34486768,0.30977216,-0.04477602,-0.52533984,-0.007337948,-0.2660035,-0.44005165,0.20895083,-0.69137573,-0.6254644,-0.17602222,-0.56812626,-0.453843,0.7022629,-0.12018517,-0.052733652,-0.19754514,0.085725196,-0.06630463,0.56127906,0.013983178,-0.00669926,-0.024201171,-0.04139286,-0.018934738,-0.27688625,0.2890974,0.109054536,0.4156171,0.5585315,-0.12060104,0.34508833,0.73273695,0.7510788,0.13414793,0.8147239,0.526348,-0.048509363,0.43895632,-0.28509077,-0.27448854,-0.565396,-0.34593752,-0.0008872489,-0.48673046,-0.4475898,0.1605875,-0.41590834,-0.8649542,0.5746048,0.052362032,0.09547488,-0.0011463523,0.29377216,0.6486333,-0.082456045,0.015384648,0.014647541,-0.24081174,-0.55253595,-0.26596943,-0.76286274,-0.607517,0.13769862,1.1330692,-0.23252156,-0.03315097,-0.20681871,-0.10589786,-0.05629078,0.05583452,-0.057219096,0.18360089,0.47043553,-0.22938874,-0.5666882,0.36147353,-0.109890655,-0.29921043,-0.6560166,0.07605632,0.6959087,-0.8448416,0.5927278,0.25628364,0.1016675,0.10238459,-0.44516143,-0.071938604,-0.07053541,-0.20846625,0.5384961,0.18187632,-0.68548065,0.5575021,0.5784842,-0.18805647,-0.7757974,0.34536093,0.052801,-0.06023817,-0.03774259,0.31192583,0.07264931,0.0017555038,-0.11792168,0.12038253,-0.5793394,0.27073118,0.29819858,-0.13735496,0.5318641,-0.056926467,-0.31571776,-0.6936871,-0.09739974,-0.6685852,-0.19948034,0.19840255,0.03254175,0.15065698,0.0493747,0.13807242,0.3934364,-0.25993145,-0.028656261,0.07869927,-0.2598799,0.36986405,0.44203153,0.40852016,-0.49950662,0.5079211,0.114813454,-0.044834554,0.047690716,0.06835289,0.50530916,0.11727516,0.43726984,0.17306449,-0.10074709,0.26188505,0.9105829,-0.057937942,0.53163874,0.13397165,-0.24619694,0.26889133,0.12614565,0.110894434,-0.026159262,-0.48172256,0.008957374,0.04953738,0.18481493,0.4964128,0.15289809,0.35113162,-0.015017399,-0.27520078,-0.052794285,0.16484143,0.04179589,-1.4779187,0.35467437,0.14109588,0.7475351,0.32288456,-0.06398301,-0.031575195,0.5649534,-0.11534551,0.23173735,0.39583302,-0.2937729,-0.5746986,0.5963897,-0.5972912,0.43869412,-0.24510358,0.16632967,0.010623964,0.0374644,0.3867602,0.80259234,-0.11072319,-0.0028145392,-0.11369067,-0.3326398,0.22047745,-0.4514445,0.018145593,-0.49152353,-0.18849872,0.61133057,0.55026066,0.3070736,-0.1891649,-0.00446827,0.16466124,-0.09610653,0.13972296,-0.111629374,0.11324549,-0.04158203,-0.8082568,-0.37568125,0.60473543,0.20022544,0.23701732,-0.14974737,-0.15936747,0.36165798,-0.16516814,-0.09011082,-0.19917564,-0.6171734,-0.06839926,-0.36484486,-0.51114583,0.33092958,-0.014044237,0.26523983,0.31979865,0.044064768,-0.5840637,0.27373865,-0.14223453,0.7002626,-0.2510999,-0.2691686,-0.6158011,0.1576596,0.32316488,-0.39205724,-0.21265174,-0.30879444,0.023764484,-0.45665994,0.48269603,-0.046868358,-0.43881556,0.07662679,-0.17711164,-0.09794291,0.5952534,-0.3391884,-0.09408285,-0.08561024,-0.1719293,-0.26639375,-0.115010105,0.05595523,0.315924,0.25686178,-0.05332945,-0.066174015,-0.27987784,-0.099344686,0.580375,0.0936281,0.24509509,0.5340782,0.16626433,-0.56767565,-0.18361516,0.40963253,0.5813293,0.10588814,-0.30591506,-0.4535297,-0.2972992,-0.29517308,0.12904559,-0.17189646,0.30423912,0.14015375,-0.4126114,0.9451467,0.16491319,1.528936,0.21435098,-0.24743174,-0.019819466,0.40641928,0.10468447,0.005112308,-0.46086198,0.90905285,0.40274733,-0.2458127,-0.18287908,-0.6245627,-0.06347557,0.13991961,-0.25824684,-0.19234586,-0.13003808,-0.6558567,-0.32657653,0.30125004,0.28011405,0.2228303,-0.043428533,0.16977195,0.046033226,-0.06182216,0.38475215,-0.5683544,-0.20997098,0.18001667,0.2461054,-0.017213367,0.19495983,-0.4943091,0.44089845,-0.5072632,0.08827075,-0.1657103,0.23770276,-0.029887253,-0.27417392,0.31278354,-0.10246951,0.5594153,-0.26728705,-0.39027792,-0.2272015,0.5317591,0.23391443,0.1582461,0.76327044,-0.28226084,-0.103438534,0.22655442,0.7623436,1.3336688,-0.02353441,0.08453046,0.3845313,-0.19700813,-0.6873885,0.34377617,-0.32107118,0.21210091,-0.15156819,-0.23913367,-0.68476766,0.3950051,0.249047,-0.0016200702,0.15496652,-0.52716625,-0.41706187,0.25226775,-0.42629263,-0.15845607,-0.4169842,0.11572145,0.6304461,-0.2811957,-0.2096162,0.083842345,0.28317204,-0.054133423,-0.50211895,-0.16594864,-0.39851865,0.27456468,0.16570005,-0.2505087,0.1622308,0.113084316,-0.512803,0.18353319,0.29305613,-0.30743983,0.13271478,-0.06606481,-0.23987289,0.9164809,-0.038474116,0.29386955,-0.6250492,-0.39793062,-0.85572,-0.23907508,0.4964259,0.08628324,0.036531903,-0.62040406,-0.20340595,0.04022583,-0.17205901,0.022138739,-0.45441642,0.38798997,-0.014677079,0.4609417,-0.02379988,-0.78712183,0.017280681,0.1241933,-0.20484327,-0.6808331,0.54986674,-0.008210365,0.8296909,0.2093325,0.06927101,0.40228686,-0.48424643,-0.21644363,-0.27581698,-0.3451153,-0.70869076,-0.08003251 -808,0.5468374,-0.009602492,-0.5603284,-0.28547338,-0.23318177,0.06904054,-0.31917825,0.31087846,0.20772217,-0.5760129,-0.17598918,0.001589257,-0.100754976,0.16193959,-0.31151026,-0.76078707,0.17861854,0.09914715,-0.44147184,0.63612854,-0.4525105,0.43421495,0.1567723,0.2522874,0.25539136,0.15632841,0.27588543,-0.07931893,-0.22860476,-0.37975115,0.03387238,-0.046159565,-0.6711273,0.2711499,-0.25983796,-0.13769688,-0.020324528,-0.55373347,-0.32889602,-0.7819554,0.3552825,-0.7959652,0.6400093,0.015979894,-0.23928334,0.2958126,0.337596,0.23606199,0.04965795,0.0619046,0.17008305,-0.09596865,-0.28488043,-0.104285,-0.42155376,-0.39298975,-0.82076675,0.038339507,-0.6529364,0.029003529,-0.31059313,0.29717126,-0.34611064,-0.15706207,-0.14801694,0.5286761,-0.35688967,0.046868004,0.055491544,0.028063565,0.30102444,-0.6378475,-0.32834467,-0.06195951,0.3305561,-0.32204077,-0.10360934,0.30821976,0.2637888,0.480828,0.060169164,-0.30927187,-0.25104278,-0.1819372,0.25209856,0.5128279,0.022810737,-0.30177543,-0.15942205,-0.21467653,0.36202976,0.2904931,0.21242197,-0.18778324,-0.12973088,-0.12715806,-0.27965823,0.5209634,0.41975886,-0.3224066,-0.16625813,0.54404104,0.41022772,0.281146,-0.13070749,0.2075185,-0.13238406,-0.6491565,-0.1254723,0.3441974,-0.22124921,0.4506814,-0.25113964,0.24731986,0.6405105,-0.121917926,-0.08314382,0.14358285,0.040990133,-0.032047752,-0.14278007,-0.15432344,0.22249818,-0.5257585,0.20567688,-0.3020535,0.67876613,0.03835785,-0.80987275,0.16616377,-0.639842,0.056526586,0.12207591,0.5096048,0.65899175,0.3984227,0.23446769,0.691059,-0.34986085,-0.03590596,-0.027524458,-0.33154508,-0.049717344,-0.15970686,0.21382998,-0.45804945,-0.16314651,0.05930887,-0.1186722,-0.07359721,0.72973907,-0.3534649,-0.12510316,0.11564353,0.5106331,-0.2599447,-0.06789002,0.9104215,0.97340715,1.2651119,0.17141898,1.4737496,0.15634884,-0.1343891,-0.09074648,-0.08150565,-0.839219,0.34588817,0.39019173,-0.4304379,0.46871454,0.07791049,0.06827601,0.16930221,-0.45341396,-0.19312146,-0.10228468,0.4471462,-0.070041604,-0.19231789,-0.32672867,-0.38152137,0.060825944,0.0067782197,0.36652476,0.17945752,-0.18460923,0.37539703,0.13855997,1.1902137,-0.17369932,0.13655718,0.20179875,0.37325397,0.23199654,-0.08667207,-0.1962252,0.29002544,0.3580411,-0.06666444,-0.6052148,-0.28536737,-0.28295028,-0.27821207,-0.24919608,-0.42384827,-0.187828,-0.13734798,-0.23786177,-0.19273041,-0.22721638,-0.7052285,0.40217164,-2.5685222,-0.24148726,-0.23565385,0.30857372,-0.21164735,-0.3558211,-0.23635341,-0.5779251,0.67226326,0.233662,0.45613664,-0.47621992,0.33930463,0.6096357,-0.5225752,-0.141291,-0.6602595,-0.12009927,-0.1387639,0.26501992,-0.11371271,-0.11553779,-0.041397996,0.21046308,0.43668634,0.17062455,0.10743619,0.4770544,0.51851094,-0.03860718,0.5529897,-0.01946774,0.5374009,-0.26024482,-0.121434376,0.3890837,-0.5189876,0.3377112,-0.32237768,0.04705419,0.59455776,-0.6615355,-0.70112133,-0.6169408,-0.5063129,1.2667868,-0.15294585,-0.37636426,0.08987819,-0.13670784,-0.30354664,0.053219117,0.5598821,-0.3422814,-0.030962292,-0.69440293,-0.1357677,-0.15335754,0.19808072,-0.16631398,0.28979436,-0.5856124,0.68263465,-0.061590478,0.49581653,0.10867742,0.21196507,-0.49206433,-0.5671971,0.16891135,0.9326879,0.4163616,0.1226129,-0.25693002,-0.082841344,-0.38345754,-0.26205808,0.034172907,0.57473874,0.6079232,-0.1444328,0.23108509,0.33465847,0.018801836,0.20131384,-0.110816605,-0.29195744,-0.30816513,-0.12350552,0.6812782,0.5558256,-0.027434628,0.31464925,-0.17219445,0.13450152,-0.2968221,-0.34754273,0.5491922,1.0310773,-0.14280818,-0.27055264,0.616029,0.46434948,-0.18671523,0.5524993,-0.46139616,-0.4604708,0.5664727,-0.11417078,-0.42681196,0.17987856,-0.3908238,0.025851231,-0.79357105,0.35161048,-0.3606195,-0.42409563,-0.2920246,-0.16570385,-2.5876389,0.10798114,-0.20900276,-0.09876024,-0.2751605,-0.19893345,0.12417109,-0.4524787,-0.8117365,0.16424164,-0.09579863,0.75548905,-0.18686152,0.09852226,-0.17812903,-0.35002697,-0.6044925,0.21304633,-5.731674e-05,0.5252702,-0.019660234,-0.15335491,0.1183646,-0.32687446,-0.40760815,-0.05155138,-0.45780718,-0.35186762,-0.12823358,-0.54778665,-0.40768117,0.63823044,-0.4633896,0.037299022,-0.26537684,-0.18539903,0.04855698,0.36910692,0.05907366,0.41359553,0.12015621,-0.04378197,-0.12899777,-0.26315227,0.5371071,0.05935975,0.21476497,0.48089406,-0.2375691,0.24650961,0.3211694,0.6609358,-0.1493604,1.0534972,0.18252674,0.0630509,0.27556208,-0.24634108,-0.2420618,-0.5977431,-0.13490838,0.12660542,-0.4259093,-0.46674177,-0.17301725,-0.3615538,-0.77117914,0.46100727,0.12857863,0.28213722,-0.1817756,0.14401773,0.24041088,-0.09756427,-0.06589209,0.06804585,-0.15809257,-0.30288374,-0.29473895,-0.7396322,-0.35271627,-0.078126416,0.9460309,-0.13853785,-0.092623636,0.16472703,-0.19808862,0.24860865,0.05652012,-0.0011152854,0.032707114,0.4470372,0.28778923,-0.71893764,0.49939442,-0.070784874,0.057102546,-0.46712893,0.121210165,0.7033347,-0.40828946,0.5633729,0.48080796,0.1467241,-0.3628691,-0.7181117,-0.057916768,-0.056224685,-0.25325114,0.4032941,0.30602384,-0.789327,0.6197806,-0.032501336,-0.21904233,-0.9072628,0.5956801,0.01609726,-0.05555636,-0.037146203,0.5676685,0.09152721,0.043720648,-0.14882363,0.3032664,-0.23163718,0.45299184,0.22109228,-0.034507222,0.47858122,-0.20993064,-0.25235194,-0.6709188,-0.077894285,-0.5177238,-0.40548304,0.04434612,-0.08677444,-0.07904072,0.2856654,-9.191953e-05,0.37855515,-0.37157074,0.19155894,-0.0066478206,-0.13744004,0.31441814,0.4036761,0.6410023,-0.4239254,0.7249264,0.097607665,0.03173039,-0.11580332,0.066024676,0.41320372,0.018671026,0.37935877,0.12227701,-0.10853347,0.12732898,0.6789378,0.19145547,0.34015495,0.30534142,-0.25147673,0.25995126,0.09618243,0.355597,-0.16459192,-0.6224515,-0.0682856,-0.2599016,-0.0018762648,0.5221256,0.023050813,0.23424342,-0.16014808,-0.2517222,0.010519066,0.0058508837,-0.29306737,-1.5452322,0.33693093,0.18065692,0.7920855,0.5999865,-0.07010264,0.1867356,0.58528113,-0.19015358,-0.041149028,0.3073289,0.041449137,-0.30667922,0.5714093,-0.5266527,0.42288134,-0.08948509,-0.060201235,-0.041411776,-0.010347921,0.426005,0.97242767,-0.20071587,0.03506648,-0.0799992,-0.32740995,0.32330927,-0.3540862,0.16422462,-0.37154734,-0.29494306,0.60219574,0.3268898,0.3342767,-0.186217,0.06385289,0.036324546,-0.25757113,0.053856656,0.09166216,-0.11807284,-0.17296004,-0.5124446,-0.22989902,0.5138311,0.1973492,0.13748412,0.2608717,-0.172503,0.1333521,-0.1457103,0.18338571,-0.16419671,-0.9790277,-0.24508408,-0.3656245,-0.33213583,0.037049726,-0.33592921,0.28580636,0.31683162,-0.014946909,-0.15793177,0.24899714,0.39263132,0.569749,-0.06933487,-0.23126651,-0.16001175,0.05991474,0.20311746,-0.30567738,0.13234507,-0.1482186,0.24214743,-0.5667597,0.36011967,-0.19169745,-0.27763045,-0.0103153335,-0.15420453,-0.12005333,0.48457688,-0.2535599,-0.016464842,-0.102449775,-0.18864146,-0.01289696,-0.08985134,-0.026663532,0.12331417,0.28174752,-0.23141244,-0.18764785,-0.008762479,0.006800789,0.1565517,0.016945275,0.2931414,0.40303707,0.20450959,-0.4852355,0.13517173,0.18663652,0.5844912,0.07705314,-0.081351355,-0.17564593,-0.2746744,-0.2536711,0.6084255,-0.1133049,0.07493161,0.08331618,-0.2530111,0.6679714,0.29415208,1.0142059,0.12286265,-0.34867853,0.0061867097,0.6127897,-0.13607608,-0.0621192,-0.28968093,0.9814163,0.3319759,-0.20202413,-0.05619856,-0.4558008,0.029740501,0.030301442,-0.32600576,-0.18539436,-0.034425803,-0.44002655,-0.21011546,0.1259297,0.15228656,-0.06023618,-0.1401466,-0.15516385,0.37083608,0.2642568,0.5477336,-0.6700853,-0.1131055,0.38035664,0.15580234,0.09675254,0.19768961,-0.22898594,0.27301285,-0.6516977,0.22039482,-0.026966158,0.2895339,-0.26512992,-0.3709744,0.28424397,0.13011304,0.5450997,-0.26500207,-0.5146142,-0.15420192,0.40983617,0.15394685,0.19551224,0.7212768,-0.23130395,0.02478645,-0.06750716,0.6099864,1.1440654,0.012029366,0.24081524,0.30861202,-0.3770925,-0.66030055,0.18631443,-0.51895106,0.25045228,-0.09515742,-0.45820287,-0.31955698,0.08094036,0.16328067,0.24682131,0.10423827,-0.6766423,-0.4027594,0.43581718,-0.099049,-0.21861185,-0.3166138,-0.20127524,0.52476937,-0.16832961,-0.3979384,0.12707151,0.069712915,-0.29340693,-0.63202477,-0.005327555,-0.2640506,0.34343246,0.0759044,-0.25253984,-0.03906373,0.019956836,-0.5022976,0.18605992,0.21986508,-0.2612511,-0.120027505,-0.38248903,-0.07139384,0.7478593,-0.28411385,0.2054726,-0.3598321,-0.5027088,-0.8191426,-0.24972725,0.1577416,-0.059337754,-0.045775954,-0.52583563,-0.18089245,-0.16501552,0.06631832,0.1591528,-0.41020072,0.32936206,0.23821022,0.39125046,-0.1574457,-0.9264883,0.21710362,0.10176308,-0.27589983,-0.46010515,0.5238792,0.0017571037,0.5342032,0.18977188,-0.07529907,0.039480966,-0.59359306,0.37608343,0.008866709,0.060562313,-0.5854555,0.25043243 -809,0.20315836,-0.398681,-0.5301761,-0.09140255,-0.23366226,-0.036314227,-0.3196697,0.14123617,0.26102844,-0.29815128,-0.0016279022,0.14969198,0.24205256,0.4796815,-0.11951847,-0.8276277,-0.018932616,0.20132421,-0.69522077,0.4347638,-0.7100416,0.13606109,0.009028311,0.39765486,-0.018413603,0.5178933,0.34049365,-0.08443371,-0.06997439,-0.0026374657,0.0681973,0.40267408,-0.4035039,0.15125151,-0.020285957,-0.36159548,0.07943177,-0.23960514,-0.2220877,-0.74006486,0.16663992,-1.076283,0.42671785,-0.02390792,-0.18276317,-0.14268193,0.3323195,0.5130963,-0.46667066,-0.005221758,0.21935081,-0.28841084,-0.24970531,-0.48215207,0.14918312,-0.39684054,-0.33165285,-0.037861835,-0.66969186,-0.47210646,-0.27840766,0.24903102,-0.3765645,-0.15183498,-0.1919933,0.37884912,-0.52889663,-0.15997152,0.55731463,-0.30077162,0.4621466,-0.5606205,0.022820583,0.017447745,0.54027486,0.08371484,-0.29311332,0.36606476,0.4775939,0.43070593,0.38040614,-0.38425767,-0.3236164,-0.2382325,0.4326752,0.40311155,-0.25207275,-0.38981226,-0.19333057,-0.058258638,0.102482624,0.31991553,0.027065398,-0.29202214,0.059933003,0.042574733,-0.16826923,0.567475,0.5665164,-0.23201776,-0.3815913,0.19248776,0.6606683,0.12717433,-0.30381846,-0.015261625,0.09470892,-0.43198323,-0.15818469,0.15195034,0.01599953,0.5456817,-0.23786771,0.18660723,0.9420817,-0.18986695,-0.046142265,-0.03399225,0.07206565,-0.36020687,-0.5119303,-0.090705246,0.16318972,-0.6941317,-0.026596397,-0.36692455,0.73377794,0.13053481,-0.60965276,0.4648458,-0.34288883,0.107297145,-0.11565406,0.73736,0.6945782,0.37931374,0.29395092,0.90500426,-0.30856088,0.14669245,-0.17146957,-0.597277,0.14061613,-0.29372132,0.33999,-0.44833913,0.19717652,-0.12990582,0.32656872,-0.04193263,0.36886528,-0.5032528,-0.070827916,0.20104897,0.8139262,-0.4130039,-0.001740242,0.6794502,1.1820148,0.91733664,0.13934243,1.2687746,0.30045047,-0.21968587,0.12278745,-0.33190903,-0.600029,0.19420594,0.4396441,0.54452896,0.14550425,-0.115929544,0.05344983,0.6218832,-0.41148424,0.081490606,-0.20817892,0.46787667,0.0968667,-0.19059102,-0.4926827,-0.017678177,0.060976934,-0.16482185,0.15371597,0.17042024,-0.17691767,0.43169105,-0.24015158,1.190308,-0.26380154,0.15925848,-0.111086346,0.6013584,0.18501697,-0.11101138,0.18481661,0.29167736,0.43230036,-0.09708885,-0.6591167,0.22349347,-0.36678544,-0.54870087,-0.08843836,-0.514641,-0.030134851,-0.025460431,-0.4496819,-0.11529239,0.046062738,-0.24893336,0.3243598,-2.8362865,-0.35983905,-0.17338724,0.30587384,-0.38229597,-0.06922925,-0.008417095,-0.5326678,0.38219285,0.27436182,0.56550556,-0.58779573,0.55630374,0.4866222,-0.53518385,-0.12734507,-0.6785679,0.027995596,-0.23542994,0.55540204,0.16317584,-0.2005045,-0.12953018,0.11198417,0.82917136,-0.057633057,0.2911974,0.46016216,0.23718084,-0.08504035,0.60105735,-0.061285272,0.6329361,-0.503399,-0.3008469,0.26163408,-0.35066092,0.29551002,-0.3875004,0.07170565,0.66536194,-0.3617232,-1.0031418,-0.7502293,-0.40687284,0.94126815,-0.47601476,-0.57705855,0.24081217,-0.18024778,-0.090307094,0.13531601,0.6208657,0.036025107,0.33911586,-0.70633674,0.22985594,-0.20893836,0.04919159,0.07336923,-0.08992052,-0.40524063,0.7896593,-0.075155415,0.48581526,0.20271046,0.26403314,-0.28576496,-0.20098083,0.044015024,0.74722046,0.16752023,-0.10249246,-0.05547018,-0.35181355,0.064915545,-0.24942751,-0.008292645,0.60712767,0.71224165,-0.028302943,0.16320463,0.21152325,-0.17665333,-0.07833032,-0.18748403,-0.39706847,-0.10716329,0.2885064,0.48628584,0.65487677,-0.07291215,0.38828743,-0.2712288,0.31900674,-0.08052058,-0.6718569,0.7177003,0.4619471,-0.120622136,-0.098733045,0.6323982,0.62648696,-0.5528219,0.59744173,-0.61997706,-0.21176362,0.62155944,-0.2885784,-0.36740223,-0.08611927,-0.23595679,0.089756735,-0.82993555,0.21879362,-0.5040991,-0.6511765,-0.34188363,-0.26689103,-4.155355,0.26235476,-0.1907677,-0.10614985,-0.29443967,-0.03851105,0.3659539,-0.58160573,-0.40442142,0.1697501,0.1516583,0.6537854,-0.05170709,-0.037297275,-0.3175913,-0.053850252,0.15413809,0.30292138,0.052884746,0.17497091,-0.2398657,-0.49480155,0.00037903586,-0.0023902704,-0.54222566,0.20897134,-0.64961046,-0.43567705,-0.13214491,-0.5838784,-0.38829994,0.5639634,-0.36095762,0.045951914,-0.25149885,0.18580116,-0.32669604,0.42883858,0.040610116,0.32702318,0.28847432,-0.1383485,0.072166316,-0.36981878,0.38961634,-0.05540819,0.3376267,0.14901145,-0.15110192,0.027001759,0.56248695,0.6529014,-0.08237891,1.190756,0.42014727,-0.13935958,0.2492067,-0.31108776,-0.24602608,-0.70485544,-0.52608293,-0.15008882,-0.456043,-0.56640893,0.09573565,-0.32222435,-0.7759835,0.79357356,0.24615467,0.46276072,-0.014201477,0.23169231,0.31438702,-0.13094269,-0.13383617,-0.09492394,-0.16358382,-0.62571055,-0.2908944,-0.6951609,-0.6111803,-0.015926406,0.49249077,-0.4256045,0.045119897,-0.15122287,-0.2662144,-0.11291233,0.34829715,0.03827257,0.22801025,0.530533,-0.026660493,-0.6453097,0.41689047,0.05064779,-0.049886625,-0.6379506,0.14106111,0.65484357,-0.7739157,0.84616584,0.35794342,0.16166174,-0.010275844,-0.37825218,-0.375518,-0.026554614,-0.18969285,0.58151954,0.22748804,-0.9668376,0.6285708,0.36776614,-0.47939453,-0.78203917,0.24816014,-0.17940052,-0.068688236,-0.074819244,0.29724893,0.08321511,0.025264012,-0.2284125,0.09638986,-0.6582787,0.22443353,0.18388559,-0.03667137,0.62808716,-0.16406485,-0.42522678,-0.8163678,-0.28995094,-0.6816941,-0.077679195,0.27276847,-0.180079,-0.15287001,0.34637538,0.11241489,0.33482578,-0.2526149,0.075476855,0.07743479,-0.47114527,0.20327835,0.57485455,0.22089426,-0.47720632,0.5557437,0.28290638,-0.16296245,-0.12345015,0.012533595,0.42014083,0.2017969,0.62886,-0.32299426,-0.06985397,0.3090251,1.0376836,0.036745906,0.6837,0.08034045,-0.15863785,0.37878156,0.004240366,0.20897491,0.050895225,-0.45145562,0.17907685,-0.17957635,0.15652697,0.49263167,0.44850114,0.48392987,0.31986874,-0.34110323,-0.05345364,0.31396446,0.053090822,-1.2491679,0.6218174,0.40368858,0.885341,0.46701476,0.10924896,-0.2901127,0.79048157,-0.3057743,0.049754616,0.36654723,-0.2682493,-0.41643927,1.006143,-0.8018016,0.291104,-0.14535254,-0.032314364,0.059876386,0.16383563,0.31968668,0.8089046,-0.07101382,0.13229513,-0.060089517,-0.21341504,0.07792335,-0.29771364,0.015033356,-0.2563642,-0.38977012,0.6294399,0.54186267,0.5551064,-0.15845238,-0.12331884,0.13104245,-0.11440629,0.23419957,-0.14266038,-0.05742379,0.12549762,-0.6103332,-0.2606363,0.5916235,0.30160403,0.33417952,-0.20355952,-0.2887747,0.24512112,-0.2089303,-0.2095453,-0.09919257,-0.57907873,0.1230581,-0.19994374,-0.6496894,0.6599213,-0.39737022,0.19684005,0.20207779,0.028582647,-0.07174151,0.2565836,-0.10571548,0.8367335,0.069746934,-0.30234483,-0.38820267,-0.14168875,0.25141206,-0.33725533,0.090754956,-0.474766,0.003981938,-0.40791455,0.6659271,-0.22371526,-0.4948078,0.3493257,-0.24413598,-0.11566875,0.5723845,-0.12518506,-0.16039571,0.2005074,-0.17447424,-0.4564325,-0.19263804,-0.32070494,0.29457274,0.077373445,0.22914921,-0.17188942,-0.24936716,-0.077992,0.7160632,0.08823005,0.36873415,0.18826587,0.0014489765,-0.1441347,0.09097745,0.32616603,0.5343907,0.095234714,0.11952692,-0.22575004,-0.39871153,-0.41170612,0.074742444,0.08293876,0.2663897,-0.02233319,-0.3260124,0.9825539,-0.07107352,1.1978463,0.2791504,-0.3495506,0.21633601,0.4853771,-0.08560433,0.14803804,-0.47966513,0.82617307,0.55403763,-0.09210541,0.053953737,-0.70741004,-0.16395468,0.39512137,-0.38264236,0.003184398,-0.15693222,-0.64115435,-0.5149099,0.39365926,0.2723096,0.25104034,-0.035921413,-0.02777937,-0.04537045,0.08689768,0.41742304,-0.84938574,-0.17085373,0.2288302,0.3761889,-0.10350595,0.064053856,-0.2398748,0.49107805,-0.71368957,0.24919951,-0.48751345,0.030889535,-0.3300512,-0.4127942,0.25113463,-0.12422084,0.4013995,-0.12381473,-0.41567993,-0.03791343,0.49158195,0.10163281,0.09862524,0.75800514,-0.17806798,-0.018908344,0.16464198,0.56142086,1.1103282,-0.6132426,0.029228164,0.31149253,-0.37407282,-0.65253323,0.4451449,-0.32858166,0.06333967,-0.031403054,-0.5574104,-0.48122028,0.1921824,0.21857113,0.047222476,0.07356667,-0.54163283,-0.20640314,0.34463063,-0.41054574,-0.22609647,-0.01539733,0.4663101,0.6276763,-0.31573954,-0.41982016,0.15834121,0.47922894,-0.32571757,-0.34692252,-0.07253563,-0.24021728,0.4497051,0.10377899,-0.47006047,0.01780559,0.1787606,-0.52398187,0.054957945,0.2479736,-0.29135093,0.16669111,-0.18166776,-0.010331161,0.8864155,-0.26363745,0.029392725,-0.80170727,-0.3632283,-0.9119808,-0.34675264,0.2374767,0.11275786,-0.022952214,-0.341491,0.12521599,-0.11912761,-0.1373143,0.12117505,-0.65822417,0.35503307,-0.043891832,0.63390666,-0.12514995,-0.8871894,0.23577763,0.33406296,0.08498194,-0.6797383,0.62109685,-0.42378986,0.9090951,0.006538227,0.0036351085,0.029653495,-0.3344225,0.11802218,-0.3903147,-0.27291283,-1.0219368,0.021097263 -810,0.6410558,0.01479511,-0.38276285,-0.29914925,-0.25740653,0.11903036,-0.17073373,0.22601658,0.14499772,-0.6220098,-0.12812112,-0.2522732,0.021564547,0.21688008,-0.21437104,-0.7557901,0.06766296,-0.022648904,-0.6440797,0.42873374,-0.494946,0.21610555,0.17615561,0.29346812,0.069421664,0.22234455,0.3575115,-0.3035791,-0.095320046,-0.2617588,-0.0075181536,-0.059492454,-0.842407,0.095373414,-0.106109805,-0.19979583,0.07122405,-0.47844034,-0.5175148,-0.68287873,0.28432596,-0.90598637,0.5615456,0.15775417,-0.17025301,0.2664749,-0.008156322,0.20524655,-0.17996131,0.23607162,0.16973814,-0.23397559,-0.07308179,-0.063230395,-0.2070785,-0.5539893,-0.6907726,-0.05260491,-0.45738596,-0.21911533,-0.29433933,0.003184985,-0.35568088,-0.10392513,-0.192787,0.567395,-0.34241122,0.03635758,0.08435478,-0.02724195,0.3575095,-0.552431,-0.18497667,-0.053232975,0.21122648,-0.13298866,-0.13920662,0.27747607,0.38906616,0.5693339,0.10269447,-0.29040033,-0.1415402,-0.088529184,0.2910303,0.42348778,-0.12484918,-0.44730735,-0.10609022,-0.02471285,0.1789619,0.27485722,0.028809808,-0.46084318,-0.0703851,0.075608544,-0.2663939,0.47712687,0.7137265,-0.36060354,-0.2544296,0.3412937,0.31275457,0.091515526,-0.022806,0.15040456,0.0013671331,-0.6189822,-0.20936286,0.34022993,-0.26250264,0.6341669,-0.21765897,0.1663519,0.64532346,-0.20599452,0.06106712,-0.021039572,-0.06349635,-0.0032036705,-0.14516604,-0.19838719,0.26208127,-0.59454274,0.102212586,-0.44860622,0.77785903,0.27370316,-0.8475226,0.24658656,-0.6006532,0.069219396,0.051801585,0.58886075,0.69789904,0.3276429,0.08548593,0.6201507,-0.5637162,0.07106763,0.030711703,-0.46945179,0.13116552,-0.095865905,0.10732864,-0.46026865,-0.20571646,-0.012877867,0.061044186,-0.098879166,0.32850134,-0.31322694,-0.09796343,0.11160734,0.8106191,-0.23496994,0.15296587,0.6262953,1.1300862,1.028536,0.24415483,1.402042,0.2878477,-0.12646426,0.11024065,-0.0950704,-0.8425051,0.29607195,0.39012444,-0.032459036,0.26005167,-0.027018355,-0.0678636,0.1536358,-0.4946093,0.10223453,-0.2120376,0.41913155,0.042642776,-0.19811586,-0.3077212,-0.17433031,0.031632893,-0.08994235,0.14557493,0.18508068,-0.12349369,0.33016294,0.28518045,1.0767388,-0.0883241,0.18938811,0.16460416,0.4344457,0.20450178,0.009776223,0.054040015,0.19426273,0.5451424,0.06642699,-0.5479399,-0.032135777,-0.29688382,-0.4097649,-0.28468424,-0.26953703,0.06555042,-0.042455915,-0.3601846,-0.18062854,-0.07469775,-0.34612566,0.50911987,-2.7216096,-0.15690061,-0.29776192,0.2729302,-0.31298214,-0.29441547,-0.073822245,-0.6275199,0.63365626,0.34631333,0.3394125,-0.67290735,0.3934813,0.50693256,-0.33376712,-0.055937473,-0.7463411,-0.1425304,-0.06498279,0.38667965,-0.012666468,-0.1515818,-0.10658551,0.3468275,0.46906918,0.035869114,0.10653153,0.16511384,0.35682032,0.17777239,0.4731648,-0.0016056821,0.54806125,-0.1831255,-0.09050986,0.35022038,-0.17341101,0.058769587,-0.15792131,0.16892672,0.4151767,-0.38447195,-0.58630073,-0.5821482,-0.45616025,1.1365172,-0.28527397,-0.40420568,0.28394833,0.13807082,-0.1610889,-0.08949312,0.32221115,-0.080776416,0.18550354,-0.7199113,-0.03964422,-0.030788004,0.21294099,-0.05665438,0.12916222,-0.45115593,0.6912575,-0.11089812,0.29370385,0.40358153,0.31161493,-0.2078757,-0.5868252,0.10422224,0.98208773,0.3757825,0.18846118,-0.26078582,-0.16774945,-0.192924,-0.19255649,0.051479403,0.44918865,0.9313377,-0.16215095,0.09427115,0.27284172,-0.01571193,0.12920739,-0.107289106,-0.3063416,-0.10974108,-0.1432035,0.49842995,0.4917228,-0.20384504,0.40140128,-0.22956605,0.27574492,-0.22532049,-0.34255123,0.67479575,1.0011718,-0.16674504,-0.278892,0.56451523,0.3540523,-0.24980888,0.5016815,-0.5190961,-0.3186953,0.6180194,-0.07480971,-0.49318618,0.19722134,-0.40693724,0.1867978,-0.8534267,0.5009079,-0.3421197,-0.28868487,-0.54250354,-0.20776433,-3.751399,0.12910926,-0.38060987,-0.14816396,-0.14466666,-0.07847275,0.3883054,-0.54662025,-0.4961534,0.17887045,-0.04509683,0.7379495,-0.04268143,0.23656294,-0.2572221,-0.051192723,-0.52330434,0.16666178,0.190108,0.14959513,0.041318275,-0.2590994,0.08310814,-0.1725124,-0.4310078,0.13138676,-0.46390313,-0.4994537,-0.14408547,-0.32842752,-0.49435994,0.65099496,-0.23051167,-0.06829095,-0.2931747,-0.062816896,-0.2588527,0.3979922,0.15853721,0.22562066,-0.07811335,-0.007891214,-0.10852073,-0.32546717,0.33692595,0.08443734,0.26679483,0.34428513,-0.21701872,0.07675529,0.33172208,0.5546627,-0.0038057119,0.73159444,0.25843626,-0.03519654,0.31215277,-0.27556244,-0.29418653,-0.58400536,-0.40066886,-0.13199255,-0.33038574,-0.5085949,-0.142378,-0.32691675,-0.65189403,0.31490153,-0.058936022,0.2197124,-0.118655294,0.07933089,0.33030576,-0.12954523,-0.06100022,0.013114202,-0.1848064,-0.3870284,-0.32719386,-0.760196,-0.4036995,0.01170741,0.74527174,0.059411865,-0.17657855,0.020547211,-0.24713428,0.15695068,0.028159713,0.023053342,0.1569039,0.43315235,0.054487795,-0.79757476,0.59184337,-0.07594992,-0.1400566,-0.73750806,-0.026971415,0.7477247,-0.6178227,0.6073685,0.31749383,0.09855239,-0.19888002,-0.57051766,-0.35812807,0.09126088,-0.2784846,0.47746345,0.046431907,-0.76887214,0.53897774,0.27037197,-0.2320674,-0.6971418,0.5994455,0.11975581,-0.20920636,0.15654112,0.39000225,-0.107189596,0.012410323,0.029899552,0.3834811,-0.42171633,0.38114795,0.38963693,-0.00016929954,0.37837696,-0.10342793,-0.14588821,-0.6345109,-0.17800348,-0.4339612,-0.25118262,0.08470996,0.05319208,0.059502542,0.12741193,-0.05493031,0.39756402,-0.20244396,0.29180002,0.12810919,-0.26224965,0.32406262,0.44367176,0.37775773,-0.26101044,0.63559365,0.039874643,-0.043662503,-0.14394896,0.15676115,0.39894828,0.22930263,0.24809039,0.058521196,-0.14964479,0.3340271,0.7139487,0.18784937,0.4592327,0.41406864,-0.01677576,0.5226687,0.06160474,0.13142598,0.073492445,-0.5794014,-0.211368,-0.08753937,0.15024634,0.3641406,0.082064524,0.33722496,-0.1474477,-0.069290236,-0.038716674,0.16215958,-0.008777708,-1.550822,0.13990408,0.18151224,0.69833934,0.5817855,-0.08555159,-0.0053480044,0.46104863,-0.16751328,0.06934833,0.35526907,0.1337007,-0.43106806,0.5864666,-0.62068903,0.3024727,-0.143943,-0.075644314,-0.14316107,0.12666154,0.2192365,0.8533484,-0.15384376,0.11140515,-0.14394183,-0.20148173,0.34729773,-0.37535864,0.2065166,-0.2998526,-0.2700349,0.62858295,0.43001992,0.2210716,-0.25426638,-0.0128824,0.059154287,-0.16369484,0.15966426,0.09145677,-0.100612365,-0.0789162,-0.6492003,-0.32794252,0.45350093,0.089067355,0.08958479,0.10661931,-0.12960193,0.061365437,-0.19547234,-0.016176939,-0.061870046,-0.8603263,-0.22180477,-0.21952473,-0.38514596,0.33254904,-0.3574554,0.23856184,0.22390978,0.062327057,-0.25409353,0.011823349,0.27665576,0.57659197,-0.04926666,-0.185037,-0.4007435,-0.08899169,0.17313373,-0.21528442,0.08506336,-0.2629319,0.0012491755,-0.53059065,0.36473313,-0.1628165,-0.14914401,0.18915975,-0.24232918,-0.009580206,0.5565323,-0.24166366,-0.09817971,0.14456718,-0.0069017187,-0.18909982,-0.08532357,-0.06460081,0.2669169,0.19181651,-0.03442438,-0.006596897,-0.05848021,-0.149815,0.26024055,0.22672662,0.4358065,0.44356632,0.08397298,-0.40329713,-0.28692377,0.07094163,0.5065097,0.15471181,-0.17938061,-0.2647096,-0.5235907,-0.114507906,0.20499587,-0.12916014,0.15258178,-0.06499996,-0.38264245,0.6968237,0.07256731,0.98322153,0.17180385,-0.3690208,-0.10688148,0.4294814,-0.020978846,-0.12795392,-0.41870177,0.9666958,0.552662,-0.096064836,-0.14339511,-0.36872327,-0.021140397,0.1510193,-0.20630375,-0.21202499,-0.012595445,-0.57740635,-0.17192027,0.18210112,0.22459027,0.03958516,-0.03779934,-0.0918823,0.3141253,0.1290726,0.60072845,-0.55821705,0.014330182,0.24145733,0.09393957,0.17191005,0.32721192,-0.27955258,0.26648998,-0.45099932,0.067316584,-0.16925064,0.071953855,0.04631702,-0.20015725,0.17379245,0.012083158,0.48424184,-0.31380102,-0.43347508,-0.05310159,0.4436187,0.12748384,0.3058097,0.72715974,-0.13933498,0.20272574,-0.0359564,0.5249131,1.2789971,-0.100094385,0.15133277,0.32034656,-0.40634868,-0.6463748,0.37425488,-0.41354114,0.2745818,-0.13921902,-0.34461394,-0.30899647,0.23933353,0.009532239,0.06272744,0.21711664,-0.55024344,-0.47506708,0.5587206,-0.3004153,-0.31710067,-0.30498517,0.15641728,0.6379595,-0.32518318,-0.04937117,-0.07489544,0.24753165,-0.2548018,-0.5789886,-0.072523035,-0.26987746,0.27310127,0.12449508,-0.18934402,0.10765512,0.10343076,-0.43382117,0.1987718,0.1081465,-0.3645276,-0.06848828,-0.20278142,-0.12248264,0.7665962,-0.19363004,0.019618027,-0.65606946,-0.5484861,-0.8935076,-0.4364741,0.36300042,0.07577236,0.035772342,-0.41718867,-0.10210203,0.019426934,0.2711384,0.07938208,-0.48704326,0.42909247,0.09696446,0.5237675,0.05240188,-0.67259073,-0.004967615,0.069482595,-0.14135322,-0.5498646,0.7081603,-0.033722185,0.64547426,0.078998595,0.07901579,-0.023895219,-0.5591863,0.1676472,-0.2696729,-0.21373081,-0.72674197,0.1968888 -811,0.40474924,-0.3958546,-0.42288283,-0.18337648,-0.0515334,0.02660623,0.030511063,0.69505507,0.21536987,-0.5475938,-0.2512843,-0.22499345,0.033657655,0.44400626,-0.13510524,-0.5918036,-0.094062194,0.22634807,-0.4118027,0.46734828,-0.36523658,0.17039007,0.0036289578,0.49306935,0.25657368,0.20671812,0.122399405,-0.08670917,0.043548163,-0.06499512,-0.13941884,0.16084577,-0.4634666,0.1632467,-0.08315876,-0.2710071,-0.0069397045,-0.46470267,-0.45779037,-0.74749416,0.41255176,-1.0943034,0.5577992,0.056298368,-0.30361617,0.28424093,0.097373575,0.38459045,-0.45248604,-0.07464469,0.23562472,0.045077622,-0.015101469,-0.16110253,0.011742995,-0.47617948,-0.58521324,-0.06747721,-0.18471195,-0.17572564,-0.19010808,0.07256147,-0.37531838,0.08083714,-0.0739456,0.5051103,-0.5123885,0.0956365,0.360988,-0.25481227,0.4117152,-0.57320017,-0.24377885,-0.1121318,0.23876174,0.014124405,-0.20343259,0.32970503,0.20003693,0.4525476,0.0044182814,-0.21007587,-0.11845554,0.006977402,0.10830165,0.36942562,-0.1079183,-0.51329154,-0.036664084,0.022392621,0.219653,0.256216,0.1452639,-0.25406477,-0.09493332,0.056380685,-0.16796695,0.21631405,0.5429301,-0.17729671,-0.26620194,0.4271112,0.74042237,0.070384115,-0.07446548,0.04140332,0.043050863,-0.513735,-0.15346292,-0.1012436,-0.4095969,0.56918365,-0.18982564,0.2999365,0.7844106,-0.19119486,0.07500253,-0.1426133,0.043245777,-0.38344806,-0.45366746,-0.37076208,0.35712975,-0.3377535,0.23193488,-0.20620301,0.77942395,0.2962926,-0.60105836,0.38424838,-0.48001114,0.23099194,-0.23285216,0.57851696,0.64236546,0.41482022,0.42652327,0.8577441,-0.6688928,0.07435266,-0.001847501,-0.3900933,0.12783621,-0.16228148,0.05093141,-0.5386419,0.001113534,0.054196317,-0.11966408,-0.032209203,0.32763296,-0.6368821,-0.081842974,0.07505241,0.9448734,-0.31064886,0.05140509,0.70078945,1.0326568,0.92573607,0.0027839197,1.2011693,0.45399162,-0.3544594,0.36563018,-0.3492273,-0.7854963,0.2827485,0.513173,-0.12592512,0.3304126,0.07221901,-0.08427076,0.51168805,-0.5007112,0.15229356,-0.25602332,0.25349215,0.026707767,-0.19686565,-0.5399064,-0.12462597,-0.12620504,-0.05909055,0.1187472,0.2326768,-0.20867392,0.4332255,-0.04082988,1.934891,-0.10210621,0.16753854,0.11951665,0.44698033,0.07860184,-0.18271743,-0.09753154,0.42360777,0.6402372,0.16916166,-0.64685845,0.2019038,-0.30351874,-0.54518455,-0.15785143,-0.38664988,0.13296773,-0.20337678,-0.24559747,-0.10270949,-0.15161355,-0.316816,0.3378333,-2.7450328,-0.26639974,-0.30947334,0.45804593,-0.4318497,-0.18492797,-0.0027712355,-0.42907414,0.4634557,0.4023318,0.54015416,-0.7214791,0.34746742,0.4088855,-0.6133379,-0.12829942,-0.6286872,-0.019608919,-0.028074585,0.36865345,0.0640309,-0.0021374042,-0.037786093,0.10098116,0.3779184,0.07076992,0.12479127,0.26295528,0.44574553,-0.047977254,0.54596555,-0.12359504,0.566838,-0.34518418,-0.074455515,0.3350485,-0.34583682,0.2597292,-0.16355468,0.050992027,0.47287938,-0.37821823,-0.7144743,-0.72389036,-0.27249372,1.1377046,-0.37514284,-0.39632687,0.1551889,-0.32386845,-0.101936154,-0.118977994,0.42554012,-0.17080171,-0.07122581,-0.8607714,0.049503967,-0.112216674,0.17594407,-0.02916765,-0.119931735,-0.4493507,0.7404632,-0.09963496,0.6306373,0.3071946,0.1313112,-0.17966476,-0.34844002,0.054594297,0.82480013,0.35938895,0.017507078,-0.04188512,-0.15104681,-0.38829106,-0.078966185,0.13360557,0.5121164,0.7042029,-0.095459096,0.056884393,0.31596088,-0.10002769,-0.05015129,-0.16582456,-0.28160527,-0.15154468,0.022553355,0.519846,0.70664936,-0.32539448,0.3639263,-0.2517385,0.32370642,0.02764688,-0.50503963,0.5537887,1.0042832,-0.20429724,-0.24969569,0.64324963,0.40909582,-0.37425563,0.37086198,-0.65299916,-0.15048221,0.58321625,-0.17350191,-0.44842437,0.08318831,-0.1756152,0.19502321,-0.9636785,0.25207216,-0.17984797,-0.4835222,-0.6611738,-0.16458867,-3.119574,0.1543307,-0.41402858,-0.18489577,-0.11793689,-0.145821,0.22028612,-0.7443994,-0.5630322,0.22990233,0.08740734,0.6031686,0.034114398,0.1908097,-0.27284425,-0.078804806,-0.2617572,0.07299784,0.09278529,0.29157722,0.11923076,-0.569118,0.010970657,0.16304687,-0.51526093,0.11064082,-0.6840887,-0.44709137,-0.21195021,-0.61111635,-0.2686516,0.6025905,-0.120243736,-0.042145923,-0.12178362,0.07224259,-0.20795427,0.20344298,0.012632793,0.20256445,0.004178542,-0.084273465,0.061516207,-0.30640623,0.31281155,0.06834254,0.36132213,0.10130199,-0.20225081,0.15506122,0.5531749,0.6130248,-0.07960308,0.6334239,0.5477032,-0.09502257,0.23692761,-0.22933343,-0.2596493,-0.5927694,-0.39649498,0.046721533,-0.4181161,-0.5207452,-0.0037590677,-0.45204633,-0.8190595,0.51882863,0.11072337,0.26993242,-0.0012855896,0.15726727,0.6812292,-0.19879624,-0.030422641,0.035037298,-0.20383777,-0.6767789,-0.26368916,-0.6985217,-0.4068163,0.3317613,1.0796294,-0.23125678,0.0968666,-0.036404986,-0.38761073,0.093446806,0.11129283,-0.22960685,0.03402158,0.35919926,-0.13889949,-0.6575908,0.50297034,-0.013408652,-0.14891686,-0.70246655,0.2837293,0.57295555,-0.62870324,0.7361035,0.15750544,-0.07824635,-0.24585113,-0.48422092,-0.29862335,-0.17664917,-0.20525402,0.41414374,0.12931064,-0.54442424,0.31316298,0.49443606,-0.19217756,-0.6880801,0.4761057,-0.20454161,-0.32553148,-0.09186555,0.20473348,0.06456899,-0.032620165,-0.22442804,0.21999392,-0.45119736,0.32712018,0.18397504,-0.13625157,0.40230793,-0.084194556,0.087513246,-0.8834479,-0.026409227,-0.6190008,-0.22390677,0.3214924,0.14918564,0.07595149,0.11028618,0.10881799,0.36368588,-0.1567912,0.05153151,-0.0038483785,-0.3334843,0.37594885,0.42893556,0.31517428,-0.5521616,0.5981376,0.037844874,-0.020041283,-0.025610153,0.027362052,0.4557344,0.21415713,0.5013033,-0.1405681,-0.27126655,0.40202242,0.726454,0.09349736,0.534644,0.14213122,-0.09531144,0.25569546,0.10705478,0.16898078,-0.03898029,-0.6281896,0.20742115,-0.17896914,0.16464084,0.44851524,0.317248,0.3169304,-0.021459414,-0.44908693,-0.04915174,0.15548143,0.013964415,-1.252076,0.43430254,0.15107603,0.89694023,0.4070897,-0.06913927,-0.095868096,0.7686039,-0.10667809,0.072809376,0.34574032,-0.16870168,-0.5373513,0.5960632,-0.7551044,0.37150776,0.029777873,0.049811747,0.012292147,0.1317985,0.3335371,0.61267096,-0.18410851,0.013390309,-0.107324906,-0.34165472,0.2993789,-0.5056656,-0.0012997779,-0.65787435,-0.3634155,0.43850997,0.62578666,0.43037355,-0.18652748,0.025735948,0.08977527,-0.057007156,0.23008886,0.11149576,0.0030850081,0.14772387,-0.79598373,-0.2784806,0.44090572,0.034502897,0.28856087,-0.07704818,-0.34298193,0.33517164,-0.29498422,-0.05703429,0.015891047,-0.72744244,-0.038743414,-0.22205855,-0.37267402,0.51095974,0.01948392,0.24597715,0.1755525,0.0395699,-0.14428808,0.18211463,-0.14494917,1.0902848,0.08135792,-0.26601574,-0.5490174,0.1673,0.12670615,-0.186542,0.11714848,-0.424947,-0.10521289,-0.4786641,0.6187741,0.12713298,-0.3925524,0.15040144,-0.2941093,-0.04017299,0.7339107,-0.2091808,-0.12256912,-0.18541394,-0.34194645,-0.27010676,-0.27036723,-0.13738748,0.31423473,0.15991813,0.26694348,-0.06943853,-0.03152733,-0.22244498,0.6644527,0.12611046,0.35293347,0.41756102,-0.11778879,-0.19900206,-0.31660637,0.22639753,0.38871306,0.10319422,-0.3025475,-0.22738549,-0.66781557,-0.40835094,0.060439523,-0.11079518,0.55790794,-0.0026282186,-0.16402476,0.73156065,-0.0065238248,1.2692928,0.01701753,-0.28257135,-0.036049053,0.6870368,0.19913766,-0.018641792,-0.28657353,0.8972835,0.64991343,-0.025176821,-0.052760545,-0.44814748,-0.11140775,0.3436306,-0.23474891,-0.18041764,-0.043284018,-0.74456364,-0.37574452,0.14801186,0.29950303,0.38666108,-0.011065213,0.052938085,0.21713123,-0.117122665,0.46021363,-0.3675755,-0.25572497,0.28944653,0.21735671,-0.07207355,0.034444265,-0.48610482,0.3975727,-0.50171,0.18248683,-0.26510498,0.13387631,-0.14282657,-0.33685714,0.1908043,-0.044667576,0.34636414,-0.41983706,-0.45665535,-0.06789226,0.66337514,0.30953223,0.024261286,0.6328884,-0.31009957,-0.02248956,0.1998482,0.5892288,1.029004,-0.28640038,0.15548757,0.41122335,-0.5529193,-0.75302655,0.4535133,-0.05829924,0.29250443,0.03169928,-0.23961376,-0.56502044,0.37721047,0.13232976,-0.2824825,0.05119485,-0.5578964,-0.17440979,0.42442137,-0.30986023,-0.12782334,-0.3962817,0.12912777,0.39560035,-0.24580605,-0.3730881,0.18071839,0.22207697,-0.14158237,-0.515514,-0.3040008,-0.4868198,0.33162647,-0.014638303,-0.44542202,-0.08715105,-0.056242876,-0.44435006,0.23386247,-0.1096241,-0.35014072,0.11523015,-0.33389062,-0.1645191,0.904144,-0.06725271,0.03353373,-0.74396646,-0.12879127,-0.87870795,-0.24513958,0.5926438,-0.010797159,0.026120892,-0.5964635,-0.018973626,-0.032662123,0.032052256,-0.28721306,-0.35401806,0.37122884,0.15685152,0.51903194,-0.037626456,-0.8234815,0.25977653,0.09892889,-0.20981234,-0.66486037,0.6354484,-0.048161425,0.86338055,-0.08763549,0.19897042,0.2481659,-0.45352015,-0.14896037,-0.2731301,-0.37758186,-0.6213121,0.0462063 -812,0.42050833,-0.08218336,-0.2608908,-0.25956956,-0.2956681,0.029832061,-0.11125869,0.5314258,0.21220145,-0.5383373,-0.33688635,-0.22359426,0.0407436,0.14937027,-0.39398083,-0.6312419,0.033531923,0.16732608,-0.29052296,0.44294366,-0.5346294,0.49715713,0.14665064,0.21737297,0.287515,0.12386495,0.09429528,-0.3083909,-0.16365516,-0.36466178,-0.22004439,0.4079227,-0.5194305,0.15793864,-0.23159729,-0.32052824,0.13144012,-0.33739465,-0.30058736,-0.9717498,0.29699418,-0.94270986,0.37118578,0.07890531,-0.30946392,0.3739621,0.12504825,0.1488484,-0.123324774,0.10256574,0.2220985,-0.30210897,-0.22577076,-0.22573201,-0.1726438,-0.43070188,-0.6925759,0.009078418,-0.4100482,-0.25339264,-0.46361965,0.27999112,-0.47466597,-0.1717218,-0.13434847,0.30896726,-0.54497755,0.020798802,-0.014745355,-0.005409769,0.3588543,-0.6605914,-0.28130028,-0.09244319,0.23008248,-0.28416246,-0.2516279,0.33698097,0.2953983,0.44272822,0.00020721981,-0.22812183,-0.25994572,-0.14109744,0.25522977,0.4502104,-0.25396472,-0.6636762,-0.0042424416,-0.13041708,0.3369721,0.44074726,0.014623433,-0.31507048,-0.21198109,-0.034842048,-0.22347954,0.4554317,0.6340575,-0.24385795,-0.19468315,0.16535652,0.35967833,0.20581605,-0.18008557,-0.023721512,-0.07173192,-0.6350827,-0.20123564,0.16470875,-0.33565006,0.59872526,-0.24165647,0.16688883,0.7908305,-0.39544514,0.18365006,0.123024516,0.20027956,0.016995618,-0.18111287,-0.4744487,0.30052212,-0.6788555,0.23854315,-0.4060882,1.0806134,0.025287578,-0.76310027,0.16677253,-0.64704853,0.15250064,-0.2334498,0.69570863,0.48578358,0.49997622,0.42580143,0.62675714,-0.44917804,-0.0654906,0.09963102,-0.38798776,0.0379635,-0.22090967,-0.015589653,-0.27109584,-0.15837915,-0.13942973,0.015543627,-0.00014751723,0.75027704,-0.5098171,0.054635506,0.037357263,0.68473977,-0.4087188,0.030238358,0.79930955,0.91585535,1.1833916,0.2194309,1.3293122,0.27315015,-0.3086321,0.06833265,-0.08571809,-0.7120668,0.3033701,0.429782,-0.2966406,-0.13832085,0.049535923,0.075403675,0.31892326,-0.7096028,-0.032060027,-0.3652484,0.19055404,-0.02179557,-0.1287189,-0.46335098,-0.4314358,-0.03555776,0.2947368,0.0021521535,0.32624862,-0.19221959,0.25516447,0.055626273,1.0530552,-0.014089684,-0.040279184,0.12308073,0.4458401,0.057778418,-0.06847624,-0.002573422,0.29592332,0.46969005,0.09156574,-0.66867626,-0.10531862,-0.18079288,-0.47713494,-0.15952389,-0.37762234,-0.059034962,0.10246999,-0.53399956,-0.35067347,-0.0733555,-0.32451206,0.48809758,-2.08501,-0.027476115,-0.028905233,0.33151865,-0.036382638,-0.2890137,-0.083779536,-0.62058675,0.62082946,0.24427749,0.45470652,-0.7239305,0.3228844,0.5717435,-0.47715527,-0.14306974,-0.7970573,-0.27736664,-0.10119314,0.17764743,0.21046117,-0.013451642,0.04259298,-0.16929136,0.6871219,-0.01110243,0.16046469,0.16895413,0.41176477,-0.12076149,0.49635926,0.18793906,0.38273123,-0.08364694,-0.20232241,0.40956068,-0.3807134,0.23119791,-0.27981496,0.04898012,0.53367895,-0.5039616,-0.7608458,-0.82802093,-0.4965212,1.2340118,-0.07055326,-0.57862175,0.41571298,-0.15838099,-0.18978025,-0.16830285,0.54843885,-0.28503492,-0.089425445,-0.7192562,-0.02996856,-0.14916237,0.1543922,0.00405666,0.12060501,-0.43103355,0.7912682,-0.047104854,0.25881073,0.21181072,0.14716533,-0.46609893,-0.54714096,0.024407983,0.95952594,0.49383828,0.15772988,-0.26303965,-0.25341558,-0.23188627,-0.099062935,0.14912634,0.6420247,0.94097704,-0.15579584,0.16476393,0.22889963,-0.09092723,0.07935823,-0.22698726,-0.3504424,-0.073461175,-0.05437955,0.6815583,0.5132311,-0.07294876,0.3906397,-0.10038073,0.33873296,-0.10291825,-0.43050048,0.36983624,1.1891992,-0.03001095,-0.12914398,0.715145,0.7018105,-0.21822338,0.44199482,-0.711809,-0.4429063,0.57674164,-0.20093843,-0.50730175,0.10308804,-0.47656566,0.13858518,-0.8315461,0.6091322,-0.32910872,-0.62942153,-0.6211851,-0.07990045,-2.397257,0.1032037,-0.3588962,-0.055489093,-0.19189942,-0.3708857,0.28935865,-0.46604154,-0.50579846,0.12238251,0.1651766,0.60103816,0.013215916,0.038055442,-0.14061715,-0.29565483,-0.33022898,0.0039018574,-0.00904615,0.3674546,-0.1332126,-0.3962307,0.112361126,-0.14680202,-0.3309922,0.012534316,-0.55900544,-0.7232107,-0.16705675,-0.41463524,-0.47477302,0.70291656,-0.43552646,0.040082462,-0.061921697,-0.10619169,-0.13674025,0.3036824,0.21259321,0.216457,-0.06964967,0.0194895,-0.041450936,-0.2928552,0.46866602,-0.00912588,0.19611277,0.41907355,-0.20512843,0.09534604,0.53629243,0.5367006,-0.12324299,1.0453799,0.3800755,-0.08017022,0.26561657,-0.2702225,-0.4247087,-0.8060201,-0.3234361,-0.018610647,-0.49649653,-0.26185593,-0.018537449,-0.39590004,-0.81476957,0.46716404,0.026634464,0.16839217,-0.06330327,0.2744028,0.38784847,0.1410688,-0.24359152,-0.13070183,-0.07887517,-0.53052634,-0.21707448,-0.8686861,-0.41432998,-0.18161774,1.0864081,-0.22428603,-0.21212797,0.19326977,-0.016204592,0.15216054,0.06872247,-0.13914032,-0.017964432,0.41766593,0.00040048786,-0.8143794,0.66893566,0.105919085,-0.16616543,-0.5180293,0.13964774,0.605166,-0.8382148,0.44797394,0.60106057,-0.025418866,-0.031153305,-0.6924308,-0.3048059,-0.19671929,-0.19459954,0.48162922,0.13706413,-0.69226474,0.49649414,0.43542323,-0.1926717,-0.8009442,0.5364114,-0.1433884,-0.38546988,0.18589428,0.3871834,0.03899968,0.024537172,-0.021830866,0.35555878,-0.540829,0.55642176,0.2891831,0.048047874,0.23100019,-0.20527509,-0.06765552,-0.8351244,0.16401099,-0.5327284,-0.2777226,0.0039743357,-0.057182483,-0.16466223,0.47486624,0.10588603,0.47760043,-0.22249891,0.11330096,-0.22076328,-0.28250283,0.2750739,0.4247438,0.522821,-0.33173466,0.6812001,0.08849184,-0.1981136,-0.20187701,0.27710304,0.46426943,0.09551501,0.38701698,-0.12836286,-0.2610524,0.3726909,0.8952611,0.23584308,0.5735456,-0.0008491789,-0.084217496,0.2643525,0.19540545,0.31322807,-0.020457685,-0.4565021,-0.048052363,-0.24063845,0.018443655,0.50052404,-0.04777207,0.40120855,-0.093376346,-0.16494365,-0.010702835,0.27013037,0.023303943,-1.2566675,0.42995134,0.12493877,0.7671034,0.6444344,-0.112272926,0.12684184,0.6068967,-0.2818479,0.07458977,0.2761645,0.23324059,-0.4948607,0.6388364,-0.70405513,0.37997022,-0.18801641,0.05903376,-0.13769148,-0.051036067,0.4144301,0.72567505,-0.13341211,0.05422626,0.058223944,-0.39139017,0.32838035,-0.5536446,0.13820174,-0.4960885,-0.23531005,0.7000881,0.4767565,0.27232456,-0.04822688,0.048779555,0.1925758,-0.25910988,0.3216751,0.032685585,0.10293835,-0.09959336,-0.51558477,-0.11011558,0.521281,-0.12761952,0.06450087,0.051124595,-0.23571272,0.20715249,-0.26909304,0.05483669,-0.11287206,-0.6328307,-0.09567178,-0.35187596,-0.34689918,0.45153087,-0.068292506,0.18537317,0.3484018,0.099229276,-0.24584706,0.04896099,0.46980497,0.49091986,-0.11686063,-0.25710624,-0.2430165,0.20325638,0.2589564,-0.17996843,-0.12685359,0.04812279,0.016345093,-0.6521351,0.40655994,-0.24163745,-0.15639074,0.043916505,-0.15355526,-0.16290748,0.60851985,-0.15295148,-0.1779587,0.09164434,-0.10931085,-0.046783306,0.01685414,-0.12993227,0.22412147,0.19420181,-0.091154985,-0.20054205,-0.34397602,-0.16065742,0.26961464,-0.19523634,0.38252208,0.26111987,-0.07387493,-0.36839905,-0.14077921,0.07011866,0.5142418,-0.04726408,-0.1317579,-0.3140154,-0.41314554,-0.32447666,0.18216884,-0.17946298,0.35249045,0.18236819,-0.40573904,0.8826191,0.033123933,1.1314862,0.15579267,-0.31796512,0.14037278,0.66666114,-0.10780804,-0.031774674,-0.19666608,1.0868806,0.56267965,-0.22285748,-0.08794933,-0.46314472,0.21061721,0.33777285,-0.11233454,-0.13062528,0.052028272,-0.6795464,-0.15840957,0.23819754,0.36922556,-0.09896336,-0.012816893,-0.15431604,0.19959676,0.16925876,0.58558255,-0.5886459,-0.06666185,0.22143863,0.19956805,0.19424269,0.17306177,-0.33662057,0.37803522,-0.4046741,0.118280075,-0.3339955,0.11717101,-0.40232056,-0.28184083,0.2848066,0.07862212,0.29915574,-0.17227313,-0.43362802,-0.2238416,0.41529068,-0.03246069,0.3253751,0.48714802,-0.37628323,0.095610656,-0.076630436,0.500435,1.3400649,-0.20431496,-0.0995902,0.42074674,-0.5173737,-0.491409,0.38110223,-0.4309846,-0.065165676,0.049846593,-0.3616769,-0.515833,0.054806598,0.29998326,-0.031000933,0.049928863,-0.5810185,-0.13803017,0.31366202,-0.27543864,-0.34755543,-0.24488734,0.28836825,0.559812,-0.48137838,-0.21043715,-0.0024711874,0.22737996,-0.37397474,-0.42911884,0.15485919,-0.29859525,0.5126563,-0.031843014,-0.44513497,0.052893553,0.060557608,-0.2852165,0.12923476,0.3083528,-0.36534992,0.039601844,-0.2682398,0.2684568,0.86891407,-0.21150734,0.012370825,-0.3626699,-0.5557604,-0.8257516,-0.24669382,0.6319369,0.4550324,0.032960452,-0.5168058,-0.033268485,-0.005198347,0.012562668,-0.06023154,-0.3431671,0.5481267,0.23402074,0.36627382,-0.08729773,-0.83146125,-0.03179873,0.039627396,-0.32601,-0.40315062,0.627221,-0.14219743,0.7534296,0.16588335,0.081449084,0.10189499,-0.43318322,0.21834283,-0.053161062,-0.2777609,-0.7291222,-0.026172085 -813,0.5633462,-0.14589658,-0.42627433,-0.002549519,-0.26109558,0.12422337,-0.18385348,0.42414558,0.06277744,-0.3405882,0.024133377,-0.13242272,-0.11022984,0.4497238,-0.007756229,-0.36516127,-0.11832078,0.13431367,-0.62252253,0.62801385,-0.22320814,0.5527212,-0.09505429,0.10226734,0.21080977,0.3361672,0.18105647,0.0398662,0.08559671,0.025905354,-0.21910019,0.018095005,-0.53644025,0.13929802,-0.19654353,-0.3962593,0.057503182,-0.3725812,-0.3054624,-0.58428806,0.2619527,-0.7207353,0.44477373,-0.04024585,-0.3026179,0.331756,0.045047108,0.3672207,-0.15262525,-0.018303405,0.24972647,0.13143066,0.060798857,-0.16692732,-0.34203804,-0.44020087,-0.3602288,-0.045151073,-0.6317881,-0.30194187,-0.23419315,0.016647374,-0.21322824,0.037933238,-0.098661214,-0.010535425,-0.44612914,-0.01689121,0.19500382,-0.09665392,0.021884056,-0.53167146,0.054374825,-0.17113318,0.15379576,-0.15026417,-0.014238707,0.3700074,-2.4843215e-05,0.610766,-0.07446145,-0.14260782,-0.36940065,-0.00445415,0.027334848,0.58271354,-0.12274216,-0.23299383,-0.19954203,0.09243254,0.48139527,0.11490917,0.19405642,-0.33003613,-0.05613989,-0.20176245,-0.08143511,0.11416594,0.47559804,-0.36508274,-0.20586419,0.45210603,0.6726601,0.23741809,-0.0949132,0.12275803,-0.1333721,-0.13468044,-0.09925256,0.09458574,-0.035462856,0.36482114,0.14048983,0.112586364,0.46251628,-0.06502768,0.15682653,-0.24143444,-0.045238264,-0.03721235,-0.08777078,-0.15216285,0.21355715,-0.4463417,0.1161537,0.04165747,0.62777036,0.21483597,-0.6743536,0.4544352,-0.50235724,0.08512618,0.07430129,0.4822153,0.7088653,0.3166633,-0.015718961,0.7843859,-0.43787417,0.19336839,-0.29070634,-0.07042704,0.044260915,-0.063714266,-0.19208069,-0.55432665,0.21313591,0.011840105,-0.21497415,0.000500532,0.24628608,-0.5025499,-0.12207047,0.1434546,0.62230796,-0.3352539,0.08563873,0.60469204,0.9657204,0.85072136,0.009587924,0.9214344,0.42843023,-0.20731017,0.25325188,-0.38982236,-0.66597134,0.0713813,0.4811244,0.09510841,0.5349491,0.21014205,-0.035088904,0.10911956,-0.21372837,-0.037799757,-0.20243026,0.18219014,-0.11246114,-0.09442627,-0.41048807,-0.2856335,-0.012102409,-0.042514425,-0.15326966,0.26765868,-0.34404278,0.059417047,0.028325973,2.0978744,-0.15261811,0.058393158,0.22705463,0.4037688,0.264242,-0.26656076,-0.25804052,0.5009562,0.22960772,-0.09494962,-0.51979035,-0.056840427,-0.46850032,-0.5425117,-0.10228176,-0.22870809,0.034167346,0.08153725,-0.23031005,-0.027449878,0.004836319,-0.32710248,0.5757577,-2.5461571,-0.010459868,-0.250411,0.40208182,-0.46920258,-0.35037506,-0.13306051,-0.3719641,0.21881159,0.36684886,0.37584588,-0.38073736,0.13017918,0.26899526,-0.5119746,-0.05330508,-0.40158367,0.0468496,0.03895336,0.43750313,-0.18610492,-0.12586845,-0.025285117,0.3150816,0.3098463,0.073948935,0.013701713,0.46561924,0.37968695,0.20371994,0.37702954,-0.033946447,0.45286375,-0.34157932,-0.12537389,0.48062235,-0.15352558,0.41428968,0.11730103,0.16566296,0.24260214,-0.5371911,-0.7031719,-0.46084586,-0.27813417,1.2779251,-0.3423364,-0.5209143,0.23781976,-0.028955908,0.013596831,-0.109592184,0.2880534,0.007887337,-0.17118043,-0.6308596,0.13450594,-0.08923409,0.25203875,-0.019094871,0.07383514,-0.31386244,0.6002112,-0.18102942,0.4476324,0.22469288,0.2642895,0.13340588,-0.2753743,0.08102226,0.83438694,0.62385863,0.018978298,-0.13956009,-0.18533345,-0.30748716,-0.19962683,0.20896666,0.24778964,0.7769602,-0.10887918,0.06572777,0.15508555,0.10604184,0.009162426,-0.25976145,-0.1995891,-0.07600171,0.0040748836,0.39124793,0.27095285,-0.08876587,0.4011493,-0.06845948,0.14468066,-0.021493157,-0.46677113,0.20553504,0.80239564,-0.17736216,-0.116104,0.2831708,0.31866366,-0.23421909,0.4457621,-0.7372654,-0.17693287,0.5206473,-0.17590226,-0.3376102,0.29773048,-0.26547584,0.14436308,-0.7685871,0.15666695,-0.13218562,-0.30603415,-0.39955157,0.01299055,-2.3265254,0.23176734,-0.15120035,-0.24415062,0.061837126,-0.058069088,0.15777685,-0.60430527,-0.6005895,0.08061751,-0.05287246,0.48591107,-0.0023847828,0.12379262,-0.15702374,-0.42997634,-0.46295515,0.11910029,-0.08812305,0.45855123,-0.10854114,-0.42402825,-0.28590745,-0.14353116,-0.35884228,0.039202143,-0.5280311,-0.3226558,-0.36015052,-0.6115492,-0.001067102,0.35973808,-0.276804,0.04065285,-0.26824126,-0.17588392,-0.09502956,0.14665408,0.39015093,-0.02501487,0.19308288,-0.11293201,-0.1557478,-0.39712727,0.3056392,0.2624037,0.17243855,0.5384386,-0.2227319,0.10467092,0.4438153,0.57556236,-0.15589193,0.5789314,0.39773586,-0.20310688,0.4937563,-0.4001327,-0.07803763,-0.55677056,-0.36495504,-0.27993983,-0.34059513,-0.6154212,-0.23734947,-0.24918127,-0.81642026,0.36471558,-0.09728792,0.5221072,0.0023466826,0.21672662,0.48408064,-0.09040482,0.04376587,-0.14315987,-0.11128878,-0.35569322,-0.34669238,-0.5510166,-0.45770296,0.5465105,1.0023614,-0.30315405,-0.033519436,0.024616074,-0.11417176,0.13747658,-0.22962767,0.10117631,0.25858742,0.34189528,-0.028729033,-0.42698643,0.43080413,0.092419006,-0.18115555,-0.37791806,0.17924744,0.50391287,-0.55399865,0.19877638,-0.04421986,0.17582816,0.20181277,-0.5928562,0.019883724,0.15716317,-0.35416353,0.21440196,0.093701206,-0.66486585,0.31833714,0.32899973,-0.38786522,-0.71730983,0.337595,0.073222876,-0.18534455,-0.06684613,0.27786142,0.15831362,-0.0721424,-0.2951498,0.19977123,-0.48292738,0.24097236,0.42654052,-0.051840533,0.10091804,-0.22171383,-0.3909891,-0.6257366,0.31191313,-0.24576457,-0.33790687,0.27028608,0.06456994,-0.07872903,0.08035085,0.28085503,0.45101658,-0.42889813,0.06357897,0.0056440514,-0.07891973,0.564113,0.36149392,0.47693843,-0.34837008,0.4349887,-0.00582629,-0.1671162,-0.0029156366,-0.044010002,0.37872064,0.009300923,-0.08072063,0.12507953,-0.24228184,0.25456527,0.607921,0.14800873,0.16274653,-0.057977922,-0.38611406,0.23027177,0.18643743,0.013035988,-0.007958579,-0.44845423,0.19077483,0.22795588,0.20680887,0.45620158,0.2102453,0.35768726,-0.08542792,-0.14783145,0.14367437,0.0826562,-0.3478746,-0.81916314,0.06426132,-0.008910267,0.64165527,0.5773989,0.10366074,0.122049294,0.3088463,-0.2667418,0.06811237,0.2432685,-0.33791062,-0.55721766,0.37478644,-0.49812478,0.3827819,0.0051702023,0.021138089,0.28594476,0.23999147,0.46154097,0.7680584,-0.16878447,-0.035248462,-0.1303026,-0.1835605,-0.09560517,-0.19905433,0.10670516,-0.4651216,-0.4467777,0.5714181,0.21329184,0.3353902,-0.089464165,-0.045548096,-0.14283021,-0.27132574,0.3185377,-0.033439707,0.14311066,0.012153341,-0.47085768,-0.24237712,0.5324324,-0.06090192,-0.05277362,-0.10400133,-0.32448336,0.10885704,-0.041803457,0.1784033,0.11587652,-0.814804,0.12047363,-0.43824863,-0.07259158,0.15517794,0.13543472,0.30571386,0.1990164,-0.20028464,-0.32528448,0.45232913,0.12023911,0.85083324,-0.16515033,-0.24309541,-0.31509006,0.425731,0.22294578,-0.21144085,0.1860446,-0.08860292,0.007286574,-0.7748441,0.3607728,0.05190418,-0.22345492,0.2785966,-0.27357593,-0.016785054,0.50650644,-0.08378541,-0.11967273,-0.17760356,-0.07083536,-0.36409742,-0.4185905,-0.2651241,0.0005649368,0.106798925,-0.31554598,-0.015855122,0.045533966,0.14700799,0.39588374,0.16238832,0.2722542,0.27386725,-0.025191855,-0.6141999,0.11880736,0.22525415,0.22528572,0.09287388,0.21329024,-0.25709704,-0.34146404,-0.531113,0.0016071082,-0.36058474,0.27715254,0.21109296,-0.26728976,0.6967018,0.16810772,1.1861786,-0.082727164,-0.26008713,0.14878497,0.59172827,0.033860404,-0.19011976,-0.419504,0.9173077,0.74251187,0.2015556,-0.10501415,-0.13012038,-0.47469413,0.15833603,-0.34565124,-0.040295348,0.1533076,-0.52746207,-0.47335052,0.16808052,0.15106262,0.064759836,-0.092880204,-0.00833331,0.08284863,0.015842235,0.30418447,-0.33165583,-0.42185098,0.20001557,0.027801633,-0.03820645,0.14297956,-0.54685044,0.49194357,-0.71080005,0.11047885,-0.27966172,0.087064415,-0.0103368405,-0.23022029,0.061910346,0.14073977,0.39294577,-0.39198163,-0.48151478,-0.15570812,0.5614318,-0.067068815,0.29873726,0.50098723,-0.38770846,0.19281489,-0.108585685,0.37968063,0.88848555,-0.09513199,0.092485696,0.43325692,-0.33569416,-0.56923693,0.28318787,-0.116929606,0.27303445,-0.12299915,-0.16819222,-0.3734614,0.31910628,0.18841888,0.015502961,-0.045271013,-0.5601876,-0.17899421,0.22590624,-0.30800623,-0.1896254,-0.340176,0.124021605,0.8365309,-0.41788405,-0.5613615,0.29181793,0.1423967,-0.2298849,-0.7181727,-0.16052207,-0.11698761,0.27923992,0.16552702,-0.25407845,-0.096472934,0.22384262,-0.23860675,-0.11896665,0.12990186,-0.35805655,-0.094109535,-0.30200195,0.08081366,1.0025796,-0.103890814,-0.2536638,-0.5892376,-0.50322205,-0.84514034,-0.5550851,0.5107924,0.1874675,0.12755762,-0.48803368,0.110517025,-0.33361614,0.009396525,0.0047168075,-0.27369687,0.35364008,0.21134852,0.34742388,-0.33188882,-0.90055287,0.34375298,0.17966303,-0.11645247,-0.57107145,0.40908188,-0.037929248,0.75484157,0.13229598,-0.19879293,0.32624415,-0.6720568,0.108974196,-0.31141388,0.023859631,-0.5644963,0.11454337 -814,0.4176611,-0.11601851,-0.86659795,-0.08379372,-0.14044361,0.16941978,-0.46953967,0.4054284,0.08056119,-0.5522943,-0.101920284,0.0985413,-0.071143605,0.21212576,-0.2627498,-0.44644955,0.15305223,0.3619802,-0.6134261,0.17709523,-0.5190786,0.28362918,0.017699208,0.24498445,0.05671573,-0.032281734,-0.076487154,-0.05159657,0.15253396,-0.5315526,0.19344819,0.17388208,-0.720341,0.2738464,-0.11073353,-0.5095288,-0.08973211,-0.34010267,-0.3646371,-0.86489064,0.37844792,-0.7662131,0.77709705,0.044104308,-0.22656071,0.12662086,0.066397004,0.27413455,-0.08459439,0.15419307,0.36070418,-0.25648254,-0.43197545,-0.28153765,-0.1172806,-0.1967386,-0.5507888,0.018312952,-0.45678055,0.11993313,-0.11182352,0.211752,-0.2707714,0.21474414,-0.3204365,0.44500646,-0.36829606,0.18486875,0.2327166,-0.007062619,0.14909406,-0.68840194,-0.10942737,-0.13342033,0.25475484,-0.20287102,-0.30360457,0.051118374,0.17445797,0.53495425,-0.14605607,-0.07541122,-0.15288064,-0.11155933,0.1987323,0.64735043,-0.16604756,-0.15623389,-0.10313934,-0.18823665,0.23086439,0.096260935,0.11085891,-0.32338008,-0.09495614,0.09077871,-0.4058497,0.5219795,0.513459,-0.34644032,0.09715251,0.29153106,0.5721533,0.28114298,-0.14831793,0.2614371,0.018279066,-0.6307846,-0.34231946,0.055076938,-0.09527934,0.26782408,-0.17401297,0.363933,0.49497762,-0.21403067,-0.33981562,0.30742803,0.1046646,0.063847154,-0.20617501,-0.54087824,0.41449073,-0.5184947,0.13792606,-0.2459362,0.8069703,0.06185103,-0.6763842,0.35562888,-0.75112957,-0.036517184,-0.13117087,0.741867,0.5404441,0.600504,0.100199394,0.7446187,-0.39991996,-0.023199616,-0.099507056,-0.22582002,0.019135406,-0.114586495,-0.042413633,-0.1648972,-0.06820733,-0.10890675,0.013886929,0.015447098,0.69462126,-0.41409096,-0.14656909,-0.07034797,0.575044,-0.42176542,0.11613915,0.71557707,1.170251,1.2103513,0.22553183,1.3273429,0.1316871,-0.2263201,-0.3200818,0.1575088,-0.9902516,0.3357519,0.26887885,0.028570652,0.24138536,0.15637377,-0.23590523,0.5030332,-0.40071368,-0.12597318,0.047178995,0.32490477,-0.11743891,-0.24133213,-0.3011395,-0.17104006,0.14355803,0.032523353,0.13607447,0.19752447,-0.3595904,0.17755969,0.36844477,1.0896981,-0.3475,0.12793113,0.08311231,0.14119922,0.18041961,-0.16100122,-0.084381185,0.17950858,0.46158782,0.00026952228,-0.57731277,-0.07967938,0.005667433,-0.31137124,-0.27503526,-0.09857616,-0.28884026,-0.16368553,-0.36229467,-0.30929807,-0.06332978,-0.2957174,0.2242089,-2.3503723,-0.17532055,0.062972486,0.3645376,0.019941092,-0.44473687,-0.2313058,-0.47390655,0.34382996,0.17512941,0.38715148,-0.518133,0.72559696,0.4826455,-0.44001222,-0.14056563,-0.6695824,-0.21558382,-0.03312303,0.019094542,-0.026027521,-0.062412303,-0.19195934,0.021325817,0.43702447,-0.27763337,0.1628471,0.40147164,0.37679625,-0.017255185,0.45617804,0.01846615,0.595668,-0.52358717,-0.12761217,0.34748587,-0.39842018,0.14838378,-0.20091052,0.19742781,0.37312928,-0.4900104,-0.7891035,-0.6598025,-0.048482448,1.3622926,-0.39032555,-0.3673326,0.2521126,-0.46945056,-0.45135078,-0.06562934,0.3475615,-0.26676047,0.00056215125,-0.8113062,-0.11450075,-0.18677904,0.3714613,-0.058032636,-0.020988027,-0.5232033,0.5860262,-0.07130287,0.65649164,0.4052268,-0.022261783,-0.19999842,-0.26613498,0.09515003,1.106887,0.36900035,0.21582492,-0.36725703,-0.13162605,-0.3709589,0.085834794,-0.1753952,0.6109628,0.7170112,-0.0367634,0.22378814,0.12857227,0.08947461,0.15215704,-0.28047654,-0.4124737,-0.0136935,-0.12152618,0.65151054,0.44663358,-0.08965016,0.14364825,0.0045608506,0.33920792,-0.376793,-0.4209236,0.2388587,0.8923049,-0.10238271,-0.4720846,0.7500662,0.47539267,-0.22729301,0.53170687,-0.5119522,-0.45695338,0.3211541,-0.12188842,-0.33105913,0.32324818,-0.4742116,0.20640416,-0.72919697,0.41332516,-0.4752206,-0.6339528,-0.26764312,-0.26655236,-2.7806098,0.290763,-0.23776639,-0.050140534,-0.280122,-0.1252628,0.38968587,-0.2451915,-0.7822284,0.009754022,0.1715798,0.62895846,-0.1802148,0.06269646,-0.06598579,-0.29882595,-0.37319672,0.24585575,0.114448644,0.21887429,0.010988511,-0.32011268,-0.059680343,-0.26434326,-0.039324965,-0.13505913,-0.5791647,-0.26809424,0.1962375,-0.4327258,-0.43513632,0.66163945,-0.43999946,-0.01761131,-0.21095026,-0.051789314,-0.024838038,0.43837762,-0.15805823,0.23671083,-0.20454818,-0.14907348,-0.13035835,-0.18642151,0.19953157,-0.1198245,0.0026307367,0.28842542,-0.2031805,-0.03558928,0.2023594,0.84922314,-0.060653552,1.1404322,0.24315785,-0.1923157,0.30657396,-0.039045047,-0.41510525,-0.51975965,-0.040858265,0.10831186,-0.49893388,-0.19370358,0.021012524,-0.37832198,-0.8457608,0.5394103,0.04451376,-0.25167593,0.09264651,0.46526185,0.25268272,0.0042961114,-0.08803564,-0.16481255,-0.115839384,-0.33829442,-0.25416884,-0.7287863,-0.23371439,-0.3304986,1.2960407,-0.21922183,0.15284465,0.25682738,-0.05386855,0.113467835,0.37100697,0.09027463,0.13460754,0.60347974,-0.028566306,-0.60784096,0.26872122,-0.4399955,-0.21744715,-0.65743655,0.08749927,0.7885856,-0.76538676,0.502739,0.54213935,0.16455323,-0.20984338,-0.67270637,-0.13565718,0.04649651,-0.28006077,0.6102432,0.37086344,-0.8323202,0.48272905,0.45116803,-0.2253934,-0.726458,0.48812413,-0.10513351,-0.13800395,-0.10424315,0.45866132,-0.18944304,0.10443747,-0.091593884,0.09952682,-0.28391677,0.42194185,0.013382892,-0.16879152,0.0019682248,-0.31194946,-0.034477353,-0.68157864,-0.014522503,-0.5594066,-0.1408147,0.093950905,-0.15975048,0.21690618,0.3285812,0.051474255,0.5494199,-0.29978657,0.09975786,-0.21380584,-0.39515278,0.42548907,0.49867535,0.3080038,-0.26429626,0.75822353,0.03687766,-0.19975595,-0.2855924,0.24730246,0.4780996,-0.15883298,0.5136049,0.077501304,0.028688716,0.32307693,1.0186427,0.18085784,0.49040103,0.12602784,0.036941003,-0.045310926,0.13584574,0.21089184,0.18961982,-0.5746048,-0.13127555,-0.108911216,0.20925017,0.7395849,0.07415542,0.48847497,-0.19351403,-0.22719587,-0.07016575,0.22176236,-0.019867728,-1.3296167,0.5248306,-0.008561085,0.76182747,0.49787697,0.023735056,0.22533052,0.3178225,-0.07140994,0.100981474,0.16719663,0.24435174,-0.3825809,0.527618,-0.63312405,0.33452368,-0.2706112,0.042977143,0.22227617,-0.22080566,0.6147005,0.7760883,0.044590484,0.07948463,0.09169605,-0.1533831,0.12030085,-0.45626092,-0.014584561,-0.44000635,-0.16131864,0.83922356,0.5688552,0.49486542,-0.36926198,0.06543977,0.17584914,-0.045043975,-0.0010396689,0.009431083,-0.02925242,-0.18404348,-0.62035125,-0.029955199,0.69577974,0.15681438,-0.09146631,0.07770106,-0.3705252,0.392306,-0.04218642,0.21098553,-0.2314992,-0.6184508,-0.14881812,-0.5480272,-0.5952555,-0.01909755,0.024016859,0.017774245,0.3591708,0.080658555,-0.3179354,0.3263069,0.12023904,0.61524934,0.11698715,0.04643308,-0.22771437,0.37918004,0.2648023,-0.108785875,-0.14540042,-0.417014,0.2920141,-0.6605045,0.3816023,-0.1341532,-0.27243996,0.2998759,0.113548756,-0.059726607,0.60820323,-0.28121912,-0.1187117,0.2501412,-0.1544876,-0.1371973,-0.43997216,-0.3372338,0.0135407895,0.23918867,0.0065027275,-0.19288476,-0.046119273,-0.15296704,0.16143519,0.089502834,0.31633338,0.5102058,0.25644508,-0.3672866,-0.1654022,-0.075153165,0.80716157,-0.16230239,-0.23151976,-0.4246051,-0.54851454,-0.16702987,0.68468875,-0.022433504,0.2262456,0.17240848,-0.22760844,0.7630305,0.25207946,0.8126629,0.129128,-0.24505003,0.06370693,0.60935545,-0.048120916,-0.22670561,-0.44898546,0.8615317,0.38507238,-0.281359,-0.104669325,-0.2935364,-0.19127351,-0.13449307,-0.28515586,-0.21166505,-0.10337681,-0.61811477,0.08326202,0.15608712,0.3606442,-0.06466159,-0.15193485,0.2861797,0.47822723,0.013918181,0.0010763481,-0.6079818,0.05681543,0.29778305,0.1466174,-0.121129744,0.047716975,-0.32622615,0.24443607,-0.63452864,-0.14592545,-0.2401669,0.02650351,-0.039687645,-0.3194324,0.16651799,0.14999884,0.139214,-0.49440527,-0.06555744,-0.08881005,0.24501748,0.14284788,0.29787496,0.74994606,-0.2726299,0.037409544,0.0441308,0.5801568,0.7983732,-0.16750203,0.061992835,0.3880075,-0.46805525,-0.5553525,0.14035578,-0.46446314,-0.05247717,0.0661555,-0.20961118,-0.47149742,0.3482838,0.21335496,-0.08239124,0.1822521,-0.8691883,-0.1445339,0.31108722,-0.15624534,-0.17395101,-0.15583353,-0.002948622,0.6573185,-0.21992816,-0.32715768,-0.060872566,0.34709117,-0.2807694,-0.53162533,0.0891185,-0.42712608,0.3013533,0.20429713,-0.07879121,-0.103817016,0.03672063,-0.5496916,0.07422495,0.20443374,-0.14715616,-0.03303009,-0.4873352,0.076935746,0.63058186,-0.307669,-0.036016703,-0.29226172,-0.7014635,-0.8317768,-0.025666356,0.20589466,0.16868065,0.06174152,-0.62630874,-0.1313018,-0.21749713,-0.14509635,-0.032458894,-0.27743602,0.58403826,0.07660024,0.49018195,-0.05184227,-0.8539416,0.20372403,0.121097304,-0.44031087,-0.32077882,0.50878435,-0.0068698623,0.7176013,0.13956448,0.13533203,0.128584,-0.6923926,0.28541324,-0.19646478,0.009620622,-0.889846,-0.061795946 -815,0.6182696,-0.3665927,-0.51652884,-0.122461036,-0.1968417,-0.05918902,-0.22244428,0.37156308,0.21103582,-0.26605386,-0.008100685,-0.13129126,0.12888947,0.26021755,0.014581194,-0.61311686,-0.1476811,0.076131634,-0.54655325,0.59912866,-0.4756178,0.2791456,0.009427372,0.32196656,0.1209741,0.3382235,0.1617026,-0.08899673,-0.21518707,0.058040045,0.017756168,0.36540464,-0.5921699,-0.06307198,-0.09008492,-0.15835658,0.008842823,-0.47018,-0.47749582,-0.6957385,0.30734158,-0.7917946,0.5220757,0.28753313,-0.3229145,0.34376106,-0.2931285,0.17405245,-0.48821336,0.056890227,0.18910465,0.1244346,0.05366284,-0.33812132,-0.24156179,-0.22297321,-0.5847846,0.08080121,-0.42983967,-0.14365965,-0.17522237,0.012637633,-0.39800444,-0.1475619,-0.19942841,0.42627466,-0.5569382,-0.059159823,0.22348258,-0.14683256,0.3103051,-0.4771045,-0.031230021,-0.20282075,0.10602673,-0.23003927,-0.31136042,0.3075562,0.2456693,0.5232769,-0.21657595,-0.24803765,-0.30686906,0.06928657,0.20882161,0.47808117,-0.21859162,-0.5539045,-0.090090655,-0.026399272,0.064666845,0.14125602,0.057846826,-0.35953322,-0.12681843,0.13858633,-0.10970118,0.3070853,0.6095656,-0.24031995,-0.31563875,0.2558712,0.5024452,0.27962843,0.014544756,-0.08178024,-0.05236369,-0.5961821,-0.2323697,0.22557351,-0.20774092,0.4917132,-0.10534296,0.12763582,0.7093615,-0.23526964,0.06489478,0.0012088879,0.014082662,0.050885815,-0.19111177,-0.28107184,0.28035346,-0.3920329,0.1880512,-0.17302874,0.6218299,0.33401114,-0.7417675,0.5032749,-0.5004713,0.24292201,-0.18005046,0.6497783,0.77163047,0.29393518,0.31554076,0.63978976,-0.4997632,0.1733015,0.022000305,-0.5088385,0.31078023,-0.25371745,0.0035447676,-0.47985357,-0.018277781,-0.035219207,-0.43570465,0.07531762,0.4234374,-0.6204662,-0.04388747,-0.022957655,0.6782123,-0.2901841,0.07487547,0.5142761,0.8151281,0.8684773,0.048260197,1.2836492,0.47880584,-0.30855605,0.4001103,-0.41340664,-0.88800937,0.27066162,0.46217102,-0.19540414,0.44262382,0.032653376,-0.06414137,0.2914743,-0.2598919,0.042997725,-0.25790885,0.19830507,-0.081645645,-0.17704153,-0.52942914,-0.29427752,-0.22580265,0.13248098,-0.10717068,0.3707808,-0.270639,0.24080355,-0.042068187,1.9142456,-0.069246165,0.07163542,0.02396973,0.45292738,0.37239596,-0.1919884,-0.117595576,0.47786775,0.41015306,0.20622028,-0.6096684,0.18385741,-0.25218225,-0.3738808,-0.1446375,-0.40647727,0.22923613,-0.009966125,-0.52624995,-0.019178264,0.09515169,-0.188663,0.40277413,-2.5630667,-0.1681255,-0.008055154,0.37531292,-0.34592864,-0.33905286,-0.20656642,-0.41047776,0.19987266,0.33147162,0.62857014,-0.8096808,0.1565989,0.31122848,-0.6172663,-0.005484295,-0.58889735,-0.21082617,-0.021908836,0.356624,0.037425954,-0.06826664,0.09003866,0.1173432,0.43104953,-0.038081456,-0.019634854,0.17890781,0.515123,-0.023703353,0.3764456,-0.023118136,0.4036557,-0.23936857,-0.25054818,0.4775371,-0.10629713,0.35029012,-0.044386968,0.08078587,0.35589775,-0.4660935,-1.0291765,-0.5511385,-0.31726977,1.0815136,-0.33543694,-0.4278583,0.2949094,-0.23235713,-0.24744138,-0.068827,0.40692914,-0.05845158,-0.04002923,-0.8680824,0.11977695,-0.09196858,0.24093764,0.13121195,0.07630251,-0.26913851,0.6599743,0.09815747,0.27516013,0.32049987,0.19400167,-0.020090075,-0.49380207,0.09890898,0.9379556,0.34415987,0.14463827,-0.23821948,-0.3434759,-0.14325117,-0.011860083,0.09924831,0.27567044,0.7566321,-0.11354802,0.17900614,0.3301591,-0.023107609,0.025224857,-0.18900448,-0.27773055,-0.022249846,0.12771796,0.60029995,0.7498853,-0.42353833,0.34378645,-0.025909903,0.18615426,0.06598408,-0.6239764,0.59235096,1.1139375,-0.06647535,-0.13071783,0.5256255,0.39200392,-0.55904084,0.50973254,-0.6993692,-0.20575878,0.45727602,-0.18477379,-0.33922353,0.37428632,-0.3397182,0.16571735,-0.84252363,0.47016934,-0.09734807,-0.0436098,-0.49342746,-0.08470132,-3.415916,0.18169333,-0.2605622,-0.11814178,0.030699369,-0.062164124,0.16846469,-0.66249686,-0.4762154,0.13459225,0.04004591,0.5926038,-0.12821661,0.060666375,-0.29999223,-0.2682761,-0.2484712,0.11113735,0.22544739,0.37458244,-0.081565164,-0.493552,-0.17984551,-0.17194717,-0.38194147,0.11282509,-0.5662706,-0.6116743,-0.25967824,-0.62613136,-0.10075163,0.64522016,0.00084811647,-0.0032565554,-0.082778245,0.012421368,-0.10417046,0.33878803,0.21432044,0.25863475,-0.006662623,0.029161096,-0.06835617,-0.30693686,0.16989683,0.106365606,0.21768065,0.3775341,-0.13249251,0.19113204,0.61880416,0.6994196,-0.25922528,0.6559574,0.617427,-0.17879295,0.31052732,-0.2568084,-0.23136066,-0.58570164,-0.49974886,-0.17642848,-0.45045456,-0.48058337,-0.0565533,-0.29665676,-0.7530136,0.5901673,-0.22086261,0.22975138,0.01726391,0.26093674,0.5534846,-0.17674188,-0.07267884,-0.12425916,-0.198136,-0.6342143,-0.18087047,-0.60405296,-0.4552925,0.3825489,0.9237559,-0.22277316,-0.08097113,-0.0020157655,-0.15432048,0.0006338179,-0.021271592,-0.010315853,0.25696197,0.35869077,0.08361296,-0.57957613,0.5275472,0.12704082,-0.28664225,-0.50093645,0.16932504,0.6559494,-0.6647561,0.6013275,0.18978061,0.0787981,0.06487443,-0.5972594,-0.3544525,0.23486169,-0.10740692,0.50117546,0.15701011,-0.6698214,0.37787607,0.42505318,-0.43589827,-0.58567977,0.5144814,0.028261418,-0.31362945,-0.10850315,0.28948396,-0.13370527,0.031789258,-0.27383602,0.37118015,-0.47972453,0.2257993,0.36893782,-0.1309989,0.27410474,-0.084037654,-0.085841425,-0.7401562,0.19939607,-0.44083515,-0.2999762,0.39122242,-0.007866998,0.11918186,-0.036659077,0.24233504,0.4643866,-0.37070057,0.041438125,0.050919738,-0.22572449,0.45973963,0.44820926,0.4630464,-0.49920267,0.5423051,0.07846675,-0.14025046,0.05947881,0.054161116,0.46267796,0.062475268,0.20886709,0.03252902,-0.123907246,0.23420592,0.7642067,0.13550569,0.45669946,0.11221372,-0.07115548,0.23506108,0.14582524,0.07937594,0.029821761,-0.33326846,0.10915132,0.12678514,0.16174024,0.48723957,0.12116725,0.15849158,-0.24237403,-0.2632467,0.09741091,0.35917372,0.26720414,-1.023034,0.26076782,0.16651265,0.55344826,0.4930377,0.00802224,-0.06698311,0.57050824,-0.20458624,0.058306124,0.31456107,-0.13605182,-0.7257395,0.48859727,-0.56945217,0.48844716,0.06123861,0.08374748,0.026962487,-0.11356958,0.403273,0.6540291,-0.18538637,0.015770188,-0.111828126,-0.25351763,0.12066535,-0.4116515,0.02213616,-0.5146402,-0.37671185,0.691156,0.43709114,0.23290281,-0.11653732,-0.012667591,0.09426191,-0.15835194,0.29184347,0.015825959,0.1581573,0.09914656,-0.6691311,-0.18867974,0.54736865,0.010459972,0.051396217,-0.17523116,-0.04731573,0.29827785,-0.21262655,-0.15767299,-0.093034856,-0.7106663,-0.034386445,-0.5248817,-0.35945946,0.47137263,0.02902795,0.29579732,0.14847764,0.059707996,-0.5150827,0.49176985,0.13167778,1.0325434,-0.071298085,-0.25150073,-0.47680053,0.37401864,0.2799569,-0.19896123,-0.04691654,-0.26166168,0.0022196213,-0.62687385,0.4903005,0.003820457,-0.41935265,-0.1339107,-0.15203695,0.035507433,0.5654054,-0.2150634,-0.40788022,-0.34289277,-0.22522335,-0.32941258,-0.2713588,-0.07483921,0.25464326,0.35528252,-0.09213281,-0.17819983,0.018644663,-0.024942096,0.5977033,0.064962685,0.29356816,0.34020513,0.19225238,-0.2988421,-0.07578136,0.3345712,0.4454418,0.059461955,-0.08224867,-0.37149525,-0.3783578,-0.5129729,-0.04309629,-0.18706419,0.36381283,0.113992974,-0.2314787,0.74084765,0.020748658,1.2127961,-0.03977151,-0.21657285,0.16123687,0.48629662,0.041149992,-0.13801403,-0.34709856,0.94745576,0.5987722,0.00036536256,-0.25569797,-0.42450187,-0.26896307,-0.028745301,-0.30275142,0.024334261,0.043458503,-0.65193754,-0.18356775,0.18779056,0.3130926,0.21570404,-0.17836304,0.16909479,0.09355699,0.10356105,0.15776096,-0.42830753,-0.24341209,0.31552032,0.11227616,-0.024501598,0.14256404,-0.42620012,0.39591077,-0.3426574,0.12478412,-0.29401895,0.2289883,-0.0930581,-0.41789868,0.18415497,-0.002651294,0.3925687,-0.491211,-0.30497476,-0.29601175,0.6005169,0.14551128,0.11552981,0.59788346,-0.32055697,0.26242492,0.08906155,0.4737247,0.98941207,-0.25414377,-0.005699766,0.38250732,-0.2672804,-0.78358275,0.31827253,-0.27799985,0.2855608,-0.23255688,-0.24873313,-0.6807691,0.1387324,0.07344159,-0.04198079,-0.10115154,-0.5761784,-0.2811404,0.20798859,-0.28566828,-0.1840816,-0.4258831,0.15346092,0.7229857,-0.30706918,-0.37235624,0.25991732,0.030915074,-0.26889107,-0.30795446,-0.11872114,-0.3362252,0.16000834,0.13624318,-0.35589445,0.068924576,0.20625658,-0.37583452,0.16535456,0.23487465,-0.3953179,0.11481981,-0.25400674,-0.061337344,1.1792663,-0.21808335,0.09321249,-0.5572049,-0.508693,-0.97105974,-0.3564073,0.707063,0.010192194,0.14251073,-0.74138725,0.10491263,0.0024689515,0.07496799,-0.18635021,-0.40799478,0.37057683,-0.011377936,0.27797276,-0.21931177,-0.71197295,0.14052992,0.20573893,-0.17647181,-0.64511275,0.5342875,-0.055129852,0.8281072,0.07481011,0.18725796,0.39446747,-0.5398314,-0.23782967,-0.3078615,-0.24135186,-0.6832775,0.048120696 -816,0.6679153,-0.2729104,-0.6395512,-0.122288205,-0.27174193,0.061874952,-0.36962846,0.3629147,0.07874583,-0.6170496,-0.24367745,-0.082087375,-0.11280428,0.23814133,-0.23937938,-0.69767725,-0.11459851,0.040313713,-0.3631091,0.85765415,-0.27100736,0.32065085,-0.051129382,0.5424594,0.3949654,0.29835156,0.25345922,0.124003515,-0.26317063,-0.39938852,0.14772797,0.24004507,-0.72009844,0.33064982,-0.19675805,-0.42825285,-0.117058404,-0.38596892,-0.19663318,-0.82637453,0.32665047,-0.89449686,0.49496037,-0.00074763596,-0.26269037,0.36461544,-0.00056439213,0.12709515,0.030921862,-0.047295023,-0.03394297,-0.23607655,-0.054143883,-0.30821303,-0.16833235,-0.3319494,-0.62746894,0.03794289,-0.61158276,-0.11083076,-0.32195303,0.27905235,-0.40179712,-0.10256653,-0.23550631,0.7366044,-0.53755283,0.056167714,0.13023876,-0.0021569133,0.2601986,-0.73853594,-0.3461351,-0.19183242,0.10864205,-0.12516026,-0.17707194,0.1950606,0.16872905,0.28003067,0.076058604,-0.22180739,-0.41538572,-0.34202948,0.40579763,0.2515943,0.16603963,-0.46141148,-0.2477708,-0.3243751,0.29606536,0.17764723,0.42242247,-0.20114014,0.015339158,-0.05735078,-0.17138918,0.6163879,0.5669969,-0.23335133,-0.33507085,0.32275048,0.54702693,0.2760104,-0.26087323,-0.0029402461,-0.054180108,-0.3508744,-0.07288848,0.34120113,-0.19907077,0.5556786,-0.115868144,0.27796248,0.6165188,-0.44333825,0.17177622,0.016397974,0.05431852,-0.21930507,-0.27792028,-0.27854985,0.282201,-0.4530041,0.20964213,-0.27198192,0.8270749,-0.005904534,-0.5833155,0.23045202,-0.65649885,-0.018677818,0.05632483,0.7077304,0.60144603,0.4550306,0.22543205,0.62073535,-0.19774191,-0.061644677,-0.12776433,-0.18524303,-0.20537853,-0.2780771,0.009847283,-0.40671822,-0.07680238,-0.07421446,0.011131027,-0.23665987,0.7693068,-0.37864804,-0.10522224,0.08238379,0.6860322,-0.3091685,-0.14507134,1.1172159,1.1300553,1.1764807,0.11386837,1.2404901,0.16689633,-0.18136759,-0.23443784,-0.09795683,-0.61010516,0.36699015,0.33360586,0.03169709,0.39933133,0.05510119,0.050597582,0.3203435,-0.43043226,-0.1019308,-0.16127907,0.15920956,0.12054575,-0.028803213,-0.5247279,-0.16459201,0.06301718,0.08897299,0.15550362,0.27753553,-0.35667482,0.48953682,0.16543257,1.1460218,-0.17432837,0.083760925,0.02999418,0.47223276,0.13842031,-0.14112876,0.13383994,0.3250802,0.30764028,-0.006170869,-0.763575,0.20374736,-0.23143306,-0.6707746,-0.21613857,-0.44326115,-0.08035452,-0.07879095,-0.4906822,-0.19931854,-0.070905186,-0.38135916,0.16483186,-2.4930348,-0.17397325,-0.052885957,0.2833175,-0.2544284,-0.33961156,0.010239921,-0.60165733,0.27253562,0.2958626,0.2939625,-0.51295376,0.46521872,0.5772232,-0.5175723,-0.052062143,-0.6839362,-0.02149094,-0.20498703,0.61631185,-0.2199203,0.039182298,0.053748142,0.1769069,0.68095785,0.0953834,0.16304643,0.2699982,0.36816326,-0.20769472,0.35047373,0.10636903,0.3920729,-0.39502695,-0.18660362,0.4902131,-0.38216516,0.35402304,-0.30085284,0.23678865,0.5727878,-0.39719325,-0.81374997,-0.7337385,-0.35949078,1.1348673,-0.13661583,-0.6789927,0.098287754,-0.23092572,-0.2515204,-0.07398732,0.55559725,-0.17746381,-0.010466195,-0.6838918,-0.025339385,-0.14588483,0.22204028,0.023457138,0.22567356,-0.5815894,0.7693907,0.062181003,0.47135833,0.17677855,0.46678203,-0.27830434,-0.4943101,0.21056832,0.970756,0.53825897,0.06718024,-0.5004065,-0.22015299,-0.096792154,0.010377867,0.112855256,0.552057,0.6380133,0.031353317,0.2756166,0.24058585,-0.0507726,0.102957256,-0.22284286,-0.21320342,-0.28288615,0.064179905,0.56631666,0.5515746,-0.12792987,0.41171953,-0.108878136,0.25979814,-0.26461312,-0.47030264,0.7032896,1.154559,-0.17079352,-0.24631755,0.71728325,0.66118526,-0.57070315,0.62486464,-0.6260233,-0.086174265,0.5247372,-0.28570908,-0.380572,0.15490349,-0.32314232,0.13993372,-0.92952955,0.21693297,-0.34249517,-0.51436394,-0.6182203,-0.2635628,-2.8483732,0.10706418,-0.16186841,-0.2519119,-0.32323667,-0.42739263,0.2859816,-0.67747647,-0.62039804,0.11338417,0.02426156,0.7209657,-0.18944669,0.059814088,-0.2396214,-0.40836802,-0.39046615,0.2214198,0.16136329,0.42392656,-0.20883669,-0.24907355,0.14187835,-0.15676118,-0.40746123,-0.14026557,-0.25695905,-0.42486158,-0.1499935,-0.37954715,-0.10293547,0.5403807,-0.18990803,0.06543108,-0.20942512,0.032438766,-0.0045444793,0.5228857,0.11195161,0.3198585,0.18472455,-0.06254046,0.058683455,-0.45031476,0.2924632,0.00323147,0.08746808,0.51620716,-0.32329115,0.30830622,0.39797518,0.5011799,-0.03294557,1.0644188,0.3580847,-0.100144565,0.38129872,-0.22082952,-0.43622762,-0.81144875,-0.24227533,-0.026259992,-0.37010822,-0.63622314,-0.08611198,-0.22872533,-0.98040235,0.5504918,0.020512242,0.51591194,-0.06407707,0.37963215,0.40592733,-0.16769196,-0.13522837,0.064376645,-0.038814638,-0.4979968,-0.45572552,-0.7307235,-0.54762834,-0.075798385,0.8079271,-0.23798278,-0.2892677,0.13258037,-0.29118988,0.098203234,0.18971218,0.044607453,-0.018050399,0.3732989,0.3353805,-0.5425512,0.605877,0.118617155,-0.09788234,-0.4722109,0.16349265,0.6726852,-0.59683305,0.34866944,0.4016495,0.08119447,-0.2216035,-0.59414774,-0.023135195,0.04155906,-0.12567268,0.50184596,0.3648519,-0.8732613,0.47624153,0.019813549,-0.14251079,-0.81313,0.604482,-0.017784264,-0.1798774,-0.17828174,0.516539,0.12090898,0.048577692,-0.23016813,0.29414147,-0.3268097,0.09774882,0.29855993,-0.10598427,0.36333188,-0.2587685,-0.31505495,-0.6474796,0.15383217,-0.6386067,-0.32081112,0.27525443,-0.004939173,0.11394269,0.3877263,0.31974235,0.443363,-0.25064418,0.1483206,-0.09117283,-0.27100936,0.42848644,0.52452844,0.7225109,-0.40922275,0.6774096,0.10773344,-0.11594315,0.12660031,0.09161832,0.47957966,0.017734868,0.540954,0.111797385,-0.17530249,-0.020781595,0.7559572,0.3004231,0.64444476,0.1508489,-0.31438214,0.35454106,0.12848547,0.43835267,-0.27382225,-0.56281155,-0.063938215,-0.26262,0.04784487,0.5547108,0.08701093,0.37351304,0.015998717,-0.090910174,0.19413725,0.13247035,-0.15444496,-1.2196258,0.21772143,0.1820599,0.8456444,0.67590076,-0.110853575,0.17709146,0.4805433,-0.23619768,0.08724672,0.42102823,0.22730221,-0.4660005,0.6408953,-0.69203365,0.39342728,-0.11734842,-0.11443595,0.027839566,0.002983387,0.47148636,0.7582811,-0.3010628,0.05190253,0.014512808,-0.32296896,0.26802447,-0.45031816,0.15662387,-0.37142536,-0.20813076,0.9201507,0.5014668,0.36417356,-0.17028785,-0.0445916,0.12936844,0.043134905,0.27521655,0.101680644,0.054873176,-0.12049904,-0.49362782,-0.2412325,0.5649103,-0.18079476,0.05702293,0.020383982,-0.4389153,0.09855165,0.06582548,-0.12742482,0.13020252,-0.87438077,-0.047310617,-0.23425232,-0.68130726,0.4531266,-0.1760207,0.25234398,0.2782342,-0.017579814,-0.20961976,0.13281366,0.35891077,0.5907182,0.12153391,-0.020217594,-0.47137377,0.07830839,0.39194775,-0.3299164,-0.053037506,0.017739505,0.20679362,-0.5879423,0.30182245,-0.36852536,-0.32137445,-0.0627934,-0.09525531,-0.11482296,0.6923725,0.09604997,-0.11268175,0.016295735,-0.22834024,-0.21485876,-0.13878329,-0.08854691,0.26665133,0.016015125,-0.2935173,-0.25603858,-0.028507074,0.17601857,0.26485783,0.0071625155,0.33714762,0.39242107,-0.17437561,-0.49538442,-0.17748462,0.27127257,0.45128074,-0.052797437,0.025899157,-0.18899696,-0.48850435,-0.4226165,0.43738517,-0.088620625,0.055569492,0.16977195,-0.33808252,0.9520299,0.13268293,1.0171717,0.11871383,-0.58747756,0.31141475,0.5561752,-0.09000857,-0.16220124,-0.45449805,1.0470074,0.30854124,-0.27603707,-0.20015427,-0.38700628,-0.09555827,0.14343396,-0.3841308,-0.05717367,-0.1659437,-0.5899026,-0.073089376,0.0906151,0.29090446,0.015339361,-0.15587126,-0.030831363,0.41651326,0.19149913,0.5017365,-0.641003,-0.19642815,0.428696,0.003093924,-0.030614274,0.09702342,-0.3035972,0.3523619,-0.6759573,0.09017102,-0.26894352,0.25893444,-0.23147814,-0.42463478,0.23911892,0.19387795,0.39685646,-0.2860691,-0.56055963,-0.45857906,0.42645016,0.12182327,0.14378056,0.49373648,-0.27267736,0.19925354,-0.16425565,0.54465306,1.143983,-0.11411619,0.12962253,0.28195217,-0.5055332,-0.74866676,0.18213797,-0.46590868,0.34108475,-0.1069985,-0.346664,-0.6100383,0.093952075,0.2809449,-0.012951681,0.14724731,-0.62772876,-0.3075099,0.13712844,-0.282851,-0.19105768,-0.122477554,-0.03774854,0.71274656,-0.35189542,-0.30573195,-0.11072456,0.25113496,-0.16901584,-0.47356263,-0.05719385,-0.3290905,0.36230844,-0.1779447,-0.30599946,-0.064616166,0.18962753,-0.45981583,0.10610308,0.1542945,-0.21888505,-0.07208705,-0.31986883,0.3025969,0.8227166,-0.09546517,0.078040496,-0.46332926,-0.68513244,-0.89311653,-0.53737617,0.17821547,0.096690044,0.1542389,-0.6078831,0.19711044,-0.3296266,0.20763037,-0.0003726142,-0.5106437,0.4086645,0.24822876,0.47624096,-0.027229045,-0.86050373,0.2182738,0.15723963,-0.15924849,-0.559671,0.47788858,-0.18642572,0.7803613,0.061671343,0.04190882,0.009729013,-0.66486347,0.082243785,-0.1750217,-0.15493776,-0.6244021,0.1920882 -817,0.36434823,-0.16398302,-0.46132094,-0.13911453,-0.15372021,0.19180427,-0.07533467,0.43671295,0.1764369,-0.48549047,-0.1591085,-0.22991551,0.04308737,0.21052313,-0.2509331,-0.3924047,-0.04574645,0.0311179,-0.38525206,0.30071136,-0.5027843,0.23607473,0.118291594,0.18725552,0.17380846,0.24856308,0.22904317,-0.15542524,-0.10039531,-0.06575463,-0.1900332,0.18729173,-0.43148035,-0.041143943,-0.095852785,-0.24865286,0.06351628,-0.40153155,-0.37488577,-0.6368288,0.4954186,-0.8803118,0.45737177,0.12181677,-0.14182208,0.32267994,0.11275571,0.12907812,-0.21250486,-0.039176166,0.19399239,0.048599303,0.03208512,0.012362793,-0.23217484,-0.37505388,-0.5580537,-0.016774971,-0.3855541,-0.2667808,-0.21681832,0.21466303,-0.3291215,0.011959097,-0.16953638,0.54556334,-0.4301951,-0.0670288,0.27363405,-0.20570683,0.32826605,-0.6646313,-0.110151924,-0.059942067,0.07217803,-0.23652008,-0.1518163,0.08897086,0.33092174,0.5874155,-0.012126053,-0.1873357,-0.36438122,-0.062206417,0.07635168,0.44138765,-0.3248102,-0.5687821,-0.14343877,0.038173642,0.10327593,0.117484786,0.15547858,-0.26299468,-0.058901507,0.0034700462,-0.33140466,0.4511814,0.55289936,-0.50805056,-0.22566581,0.31599575,0.58328766,0.015346893,-0.07797481,0.09325867,0.07310099,-0.45906928,-0.11772651,0.13970318,-0.30881506,0.5377811,-0.25877076,0.34638953,0.6038664,-0.20114791,0.21136539,-0.0071842778,0.02002648,-0.073437445,-0.30741864,-0.13628791,0.12112224,-0.49526143,0.13933952,-0.17261139,0.8821445,0.14054474,-0.62129575,0.34172556,-0.42930827,0.18722312,-0.15522203,0.5237842,0.5689869,0.292447,0.24159333,0.75306267,-0.5620683,0.07994526,-0.17641708,-0.2922948,0.043601904,-0.020220874,0.06346341,-0.36945936,0.005043941,0.06336843,-0.07994672,-0.16335866,0.40003198,-0.6072362,0.06847538,0.21461211,0.83996403,-0.26899084,-0.19403477,0.67425126,0.9561382,0.8848172,0.023969352,1.1047722,0.25136253,-0.24023019,0.23934971,-0.33475304,-0.74017113,0.2206159,0.37260792,0.22515048,0.21576054,0.20636155,-0.08955496,0.3727145,-0.38734898,0.0049016858,-0.40360478,0.2201902,0.29236427,0.037320126,-0.303579,-0.15187705,-0.011515932,0.05963769,0.11813712,0.23968752,-0.050635964,0.2078233,0.064088054,1.6647367,-0.19359832,0.22475128,0.16230631,0.42682,0.20438015,-0.06315984,0.014207742,0.2641332,0.45337015,0.15729192,-0.70556915,-0.0023627835,-0.1935984,-0.53353035,-0.059864167,-0.2318206,-0.039494358,-0.09107154,-0.54355174,-0.15529834,-0.15768088,-0.29654762,0.45974186,-2.9586868,-0.011939551,-0.18529637,0.26101455,-0.36774996,-0.3262958,0.0008560504,-0.49776652,0.40385076,0.44979912,0.41452485,-0.7754646,0.33536404,0.4073753,-0.34014153,0.043330114,-0.70099264,-0.08015402,-0.18240397,0.30512276,0.1256694,-0.15516546,-0.019188046,0.11835077,0.41644788,0.111314654,0.19014195,0.17611502,0.40699068,0.1275556,0.4696278,0.040635712,0.45893675,-0.105786756,-0.1787714,0.29315677,-0.33761138,0.21893804,-0.21329126,0.11301936,0.33010635,-0.39384386,-0.7509613,-0.6738667,-0.38607496,1.1983407,-0.1094606,-0.4123681,0.28557134,-0.25042856,-0.13430107,-0.16009666,0.40396425,-0.11972041,-0.1617262,-0.83347183,0.16950552,-0.17208636,0.16611423,0.046303146,-0.03854376,-0.40744907,0.74345744,-0.29958704,0.35960546,0.44238833,0.22159491,-0.28756446,-0.47232994,-0.09446884,0.8895401,0.3542562,0.15534846,-0.20217922,-0.3008162,-0.21826331,-0.029592644,0.098845504,0.49865073,0.7902889,0.08315913,0.13054301,0.3381529,0.034160294,0.01729382,-0.14283423,-0.38126203,-0.091567114,-0.012444102,0.56669635,0.503626,-0.19977497,0.4376085,-0.1796139,0.11214797,-0.2520643,-0.4227269,0.36076817,0.8026084,-0.13186583,-0.25854138,0.64060766,0.31086677,-0.25044963,0.33926216,-0.6480733,-0.22842874,0.43032858,-0.20086794,-0.42895916,0.13993685,-0.33582672,-0.013649749,-0.7827817,0.35606602,-0.31115156,-0.47664803,-0.503877,-0.27967837,-3.9369106,0.22094207,-0.36934564,-0.115290694,-0.031667553,-0.20836034,0.23397067,-0.5501181,-0.5149481,0.21996713,0.072037615,0.48571613,0.07474063,0.09849085,-0.24519803,0.031013284,-0.29431203,0.112277724,0.13741603,0.23930493,-0.011767621,-0.42896786,0.13155523,-0.17005484,-0.3771008,0.14145456,-0.48771313,-0.46818924,-0.1633688,-0.58615094,-0.29030615,0.7228821,-0.30902553,0.028977066,-0.29920292,0.027117262,-0.21882844,0.43112925,-0.010089828,0.15228815,-0.061141882,0.027831199,-0.12930037,-0.25190017,0.32561502,-0.020322787,0.2230419,0.33794895,-0.22106315,-0.006774715,0.4006536,0.5697436,-0.048708577,0.8090205,0.53988457,-0.19274059,0.33568054,-0.13770433,-0.09110068,-0.59611523,-0.32841277,0.078306854,-0.4772412,-0.497362,-0.055858288,-0.35360786,-0.63091034,0.4640567,-0.061360233,0.32339138,0.00200576,0.2892106,0.54813266,-0.104156174,-0.005538251,-0.068585955,-0.10300296,-0.6369773,-0.2984198,-0.56312484,-0.3028865,0.1599296,0.949922,-0.17598693,-0.070245005,-0.053132337,-0.26872292,-0.060564023,0.07268148,-0.0068662423,0.24354938,0.34214005,-0.21582906,-0.58508176,0.39032882,-0.021637013,-0.18012358,-0.5210701,-0.05946252,0.5634667,-0.5803688,0.6703723,0.34318215,0.09732264,-0.22087029,-0.61433345,-0.3469414,0.028214548,-0.36902612,0.4570355,0.2191093,-0.76596534,0.4737992,0.34964302,-0.22338565,-0.72863394,0.46154815,-0.012392306,-0.15677881,-0.034356557,0.2808184,0.081093654,0.052313443,-0.06984181,0.1802375,-0.38508433,0.2834588,0.13311322,-0.10853965,0.3859232,-0.1627164,-0.13387558,-0.68326473,-0.12134333,-0.53390604,-0.09736199,0.1596677,-0.032586534,0.07013223,0.1635284,0.042786803,0.48121205,-0.2079902,0.10983287,0.07913266,-0.1270582,0.22825202,0.34256104,0.37178904,-0.4901533,0.59566027,0.0103724515,-0.09569306,-0.07645947,0.036027934,0.47668952,0.11540246,0.23926458,-0.089691095,-0.19758001,0.46972737,1.0109537,0.15989682,0.5236271,0.08955463,-0.06589527,0.28372008,0.08089961,0.10723666,0.014664956,-0.48074526,-0.18708445,-0.113879785,0.19311602,0.36866018,0.14243641,0.4087196,-0.15181056,-0.3307381,-0.030728446,0.16436312,-0.038661834,-0.9160448,0.14019586,0.112815365,0.84806156,0.49954095,-0.06250642,0.0835668,0.45079714,-0.1948887,0.11223768,0.31831232,0.12763707,-0.4801313,0.49095944,-0.62069863,0.28632903,-0.13405201,0.018891603,-0.1824888,0.032164186,0.35654622,0.75949246,-0.17687485,-0.044523973,-0.0540453,-0.1617014,0.22154379,-0.33345312,0.122042164,-0.6045493,-0.23451154,0.5666478,0.44409624,0.39872912,-0.02867629,-0.13895094,0.042922873,-0.044463295,0.035690453,-0.04944902,0.08203165,-0.010266887,-0.6461219,-0.36839363,0.5079393,0.21192625,0.14960912,-0.047549594,-0.3237531,0.21528485,-0.2241451,-0.18284698,0.013717265,-0.6297726,-0.058298707,-0.13591285,-0.5053233,0.43721038,-0.2447428,0.16231559,0.20582299,-0.01888524,-0.33976936,-0.029094024,0.13323934,0.63545406,-0.098598056,-0.032847825,-0.5352017,0.07877779,0.14378402,-0.13419728,-0.10112793,-0.1639781,0.041334547,-0.5913578,0.45939818,-0.0083783865,-0.19217137,0.21034493,-0.28261536,-0.04840604,0.6594568,-0.07415166,-0.061904874,0.07179209,-0.35584387,-0.20982702,-0.045316074,-0.09817656,0.24219133,-0.026502516,0.040903635,-0.0930096,-0.15016142,-0.2335381,0.3154866,0.14910717,0.16511126,0.39191693,0.19108985,-0.42303464,-0.15049647,0.053372685,0.47822112,-0.018041808,-0.17819186,-0.2781668,-0.5521417,-0.19292776,0.135379,-0.040933967,0.31932148,-0.0075145895,-0.3678864,0.8721426,0.04612327,1.0508667,0.07079778,-0.43044668,-0.21467818,0.5474568,-0.025211278,0.068192795,-0.266752,0.7907737,0.514057,0.05056665,-0.1448228,-0.29258886,0.14424555,0.26523268,-0.068328254,-0.059996996,-0.091997586,-0.5847254,-0.20576203,0.42954412,0.25161415,0.0865201,0.004873297,0.12153077,0.18473682,-0.0656745,0.59415656,-0.54987997,-0.09056567,0.1829443,0.2652489,0.24961312,0.14938721,-0.31001344,0.37196103,-0.4650316,0.10389241,-0.23153794,0.17446105,-0.19305405,-0.2352219,0.19559129,-0.11711428,0.54259473,-0.19073507,-0.35944924,-0.19217329,0.5413578,0.10295638,0.242263,0.5676774,-0.255891,0.029366449,0.018215507,0.6374377,1.0158049,-0.21189348,0.03687628,0.46033266,-0.17673433,-0.74440926,0.41470474,-0.32260242,0.14537962,-0.045474496,-0.17195018,-0.3049306,0.25429562,0.35384494,-0.01159287,0.12362403,-0.5285454,-0.33306667,0.32992262,-0.24372683,-0.20220105,-0.1600708,0.2747072,0.66948044,-0.3074729,-0.10122112,0.04317807,0.46333972,-0.24537158,-0.5195393,0.033230446,-0.27470812,0.40440717,0.12998886,-0.21193327,-0.03968277,0.03999922,-0.31678966,0.0453864,0.16045949,-0.3022447,0.12776013,-0.21642773,-0.029692592,0.7655938,-0.008391465,0.11016005,-0.64145344,-0.35258636,-0.87514156,-0.26594105,0.509133,0.026286563,0.06822333,-0.66019535,-0.030784557,-0.089233585,-0.051847376,-0.06649788,-0.38611156,0.63790894,0.2006323,0.34339,-0.048742626,-0.50625205,-0.017570416,0.04660483,-0.059335846,-0.41436443,0.5427342,0.065065436,0.7562095,0.11201792,0.0629469,0.14398275,-0.41933075,0.17583807,-0.22439004,-0.39264253,-0.8122188,0.033781618 -818,0.42539883,-0.11868656,-0.33777207,-0.13093115,-0.33237296,0.2133002,-0.22732715,0.28106812,0.20873587,-0.25322336,-0.15703505,-0.06075434,0.04580999,0.36378193,-0.037437405,-0.6428803,-0.073393166,0.05523497,-0.8261413,0.3464579,-0.64921385,0.37679517,0.11698264,0.32460123,0.059560984,0.51744634,0.34125966,-0.19661152,-0.12645163,0.0015392564,-0.11349207,0.14161713,-0.5729518,0.10169597,-0.17086402,-0.26134723,0.13187891,-0.44475746,-0.16370364,-0.60443485,0.08546472,-0.81705534,0.4168187,-0.10160632,-0.05581535,0.054275025,0.011228561,0.31640065,-0.44592392,0.21917054,0.1470488,-0.19422975,-0.06662584,-0.3215388,-0.0847156,-0.34182662,-0.36370856,0.060730595,-0.5449153,-0.39625132,-0.13847108,0.16297999,-0.34554833,0.07628311,-0.10554904,0.09938111,-0.42546132,0.027371211,0.2734536,-0.29894155,-0.0022700205,-0.42253125,0.17174992,-0.076741606,0.5422605,-0.12846455,-0.16584304,0.33852524,0.31356114,0.49399814,0.24902219,-0.22469741,-0.036998373,-0.22342071,0.17460617,0.50929934,-0.17772454,-0.18736608,-0.26884663,-0.022085499,0.19021899,0.26692396,-0.0023478698,-0.25920594,-0.08263756,-0.109940775,-0.1553813,0.25435245,0.46630186,-0.40338433,-0.3479849,0.376166,0.58231354,0.12902199,-0.12043083,0.06599213,0.032041647,-0.50522804,-0.144974,0.12872165,0.025649415,0.42354065,-0.1388539,0.17331053,0.85417444,-0.21261248,0.07810931,-0.2006955,-0.117432974,-0.10120295,-0.25062978,-0.08400174,0.13698983,-0.4055211,-0.0567931,-0.18630075,0.699516,0.3185149,-0.67575574,0.46222192,-0.48668814,0.11806388,-0.106298886,0.69566923,0.6584005,0.3144536,0.20363209,0.8253819,-0.35982636,0.3483674,-0.19601087,-0.39504445,0.034778535,-0.20061536,0.012609009,-0.44107175,0.28542444,-0.106152885,0.10751754,0.15371594,0.22856861,-0.5624112,-0.04466591,0.20692481,0.68710667,-0.3608317,-0.093755394,0.69149435,0.95540094,0.7260324,-0.076661915,1.2027583,0.51577604,-0.27075154,0.1047689,-0.3157501,-0.63729215,0.1679855,0.38124102,0.23264563,0.27081826,0.030991279,-0.10915092,0.19422741,-0.30653808,0.0013903305,-0.094571516,0.2510988,0.03273807,0.0852866,-0.38842303,-0.11945513,0.004222829,-0.1747113,0.13926849,0.25230187,-0.16393338,0.36980987,0.016499497,1.5565495,-0.07825282,0.049693078,0.12274867,0.5087435,0.30415362,-0.15925707,-0.14688721,0.47586152,0.36368316,-0.16258352,-0.6131965,0.19429442,-0.29113302,-0.59617627,-0.042983714,-0.36081785,-0.07671534,0.013556272,-0.33086216,-0.1616683,0.037213914,-0.23704648,0.5088314,-2.8507075,-0.26914302,-0.050838556,0.3158658,-0.4181286,-0.23031348,-0.26781872,-0.4268815,0.16802588,0.27865964,0.4303275,-0.5849792,0.4250155,0.3379152,-0.37672725,-0.22037151,-0.6132187,0.025591984,-0.014675738,0.44690633,-0.04579316,-0.14560492,-0.24095832,0.026846558,0.63118064,-0.027055766,0.13858804,0.3789987,0.3811931,0.3159352,0.4723735,0.053315908,0.6244072,-0.36894834,-0.27843446,0.45615438,-0.22618645,0.321602,-0.11211361,0.18467247,0.38455293,-0.41852242,-0.82325953,-0.60963273,-0.38513887,1.0602635,-0.4266636,-0.37210965,0.15225756,0.116534635,-0.042403296,0.14229594,0.4073022,-0.16315949,-0.0053817155,-0.6511532,0.17660698,0.061119784,0.2561745,0.06851205,0.019947097,-0.23331589,0.561604,-0.21255246,0.6103228,0.18168384,0.1526204,0.065768585,-0.2631477,0.11338255,0.9453566,0.24512182,-0.039871093,-0.096363544,-0.3142675,-0.09026012,-0.2562681,-0.016898744,0.4162519,0.793456,0.09368798,0.04923463,0.26324445,-0.06027136,-0.013162419,-0.11345107,-0.17126358,0.005925037,0.029282998,0.4941638,0.51359797,-0.1030321,0.4241857,-0.18265226,0.36685586,-0.0803185,-0.45780933,0.5823362,0.42728642,-0.2162975,-0.041170754,0.37063336,0.36757857,-0.45875224,0.45134538,-0.6737037,-0.27707046,0.64773875,-0.15992686,-0.3452431,0.24760923,-0.112250455,0.15744835,-0.81955564,0.2683919,-0.18079741,-0.23447302,-0.36094087,-0.1840653,-3.305131,0.087217584,-0.076384075,-0.12680964,-0.16272025,0.0049770083,0.23571923,-0.5861998,-0.41096628,0.12661257,0.122571915,0.5017207,0.025306301,0.1495772,-0.34889308,-0.19770879,-0.12115578,0.13218065,0.053001486,0.27256218,-0.11749895,-0.36737338,-0.053602625,-0.1384836,-0.47768563,0.1745366,-0.65049076,-0.4219525,-0.0989358,-0.45153475,-0.16739517,0.6373312,-0.44380984,0.010480832,-0.2222836,0.07550449,-0.4036387,0.116503365,0.22857271,0.20128761,0.18405622,-0.04769756,-0.008077584,-0.41377458,0.4948206,0.05838971,0.38157165,0.20624113,-0.011882234,-0.033763345,0.3705169,0.47423756,-0.13710877,0.8551024,0.20991698,-0.102311805,0.23967102,-0.3004473,-0.16899616,-0.536245,-0.43780503,-0.14130099,-0.36868855,-0.5811453,0.028654855,-0.3581097,-0.8108634,0.5317662,0.061882198,0.26140553,-0.0637408,0.36924154,0.47159258,-0.21901149,0.03192593,-0.04657487,-0.09073763,-0.5075275,-0.34222808,-0.6166827,-0.52727246,0.20929277,0.90039384,-0.30053276,-0.06322916,-0.19586743,-0.19602758,-0.07216987,-0.05582376,0.11516777,0.35419115,0.53516865,-0.07620561,-0.5639105,0.4597179,-0.13455114,-0.20740694,-0.4970423,0.017412243,0.5724218,-0.7686093,0.52060217,0.2731513,0.14633928,0.27716333,-0.43566227,-0.19293033,-0.016040307,-0.18470494,0.3804263,0.035445746,-0.7515699,0.5861634,0.23215306,-0.35621116,-0.6570254,0.2591286,0.10677542,-0.29236937,0.110938266,0.29605526,0.08380024,-0.2316238,-0.25077647,0.16126831,-0.510278,0.23990755,0.22826841,-0.029925363,0.3581638,-0.11425988,-0.49370754,-0.6125909,-0.073806055,-0.4740929,-0.2715494,0.30124632,-0.05739933,0.07023006,0.092785135,0.07596971,0.4396779,-0.37146658,0.08754934,0.03870228,-0.24280897,0.16135159,0.3141566,0.25171974,-0.3878485,0.4296425,0.08823821,-0.090515524,0.22976921,-0.07881284,0.47500902,0.052458636,0.2049959,-0.20008942,-0.20353158,0.3492087,0.77932966,0.21686059,0.3290612,0.0011768341,-0.2047055,0.5516677,0.065363966,0.093292385,0.08047208,-0.34558576,-0.030224964,0.18005179,0.12327503,0.4322285,0.43301424,0.41353935,0.047177896,-0.1714503,0.07265602,0.10184809,-0.059203625,-0.70043933,0.16245154,0.13641824,0.6988267,0.34008655,0.067824036,-0.11449071,0.516457,-0.3006673,0.17810163,0.28183177,-0.19811659,-0.50158983,0.607585,-0.44869223,0.3799998,-0.14078648,-0.09785128,0.2613753,0.13034101,0.3318767,0.80649143,-0.15319628,0.02270146,-0.01967405,-0.1026438,-0.008366564,-0.22895245,-0.027230866,-0.3267364,-0.2728842,0.6742587,0.33957246,0.2554667,-0.21696962,-0.038154293,0.0268125,-0.12220001,0.116820365,-0.035435814,0.12706527,0.22300671,-0.4105134,-0.37321466,0.6192251,0.055006247,0.06691663,-0.090215564,-0.35589808,0.15749323,-0.24238636,-0.04273086,-0.10084943,-0.5088185,0.0911667,-0.21697968,-0.5043533,0.20976372,-0.009010479,0.14485373,0.15983579,-0.013311885,-0.19458197,0.3096893,0.10365349,0.95593256,0.040368445,-0.4035102,-0.3952001,0.08296221,0.33388558,-0.2962911,0.043693896,-0.412669,0.032431744,-0.61670494,0.55375874,-0.17243989,-0.3237045,0.26800942,-0.20963609,-0.11296271,0.4971839,-0.058722727,-0.04569775,0.059452347,-0.11215425,-0.46228257,0.10950923,-0.40112358,0.14309707,0.2598241,-0.06798719,-0.10262041,-0.18266343,-0.13568321,0.48821387,0.13762504,0.36319232,0.21369042,-0.04971265,-0.14349222,0.08797096,0.20595704,0.36123163,0.0558733,0.0064061657,-0.19433185,-0.45730013,-0.24046767,0.28144646,-0.15530476,0.2527451,0.10391773,-0.31765378,0.76664627,0.030692901,1.0230694,0.06949716,-0.276769,0.07344928,0.51396084,-0.025314342,0.06804544,-0.43577874,0.85516685,0.5774386,-0.018704973,-0.04366698,-0.29398522,-0.2307772,0.2814028,-0.36907881,-0.04972417,-0.07472975,-0.5808923,-0.5348854,0.31217763,0.041677624,0.2094175,0.057813335,0.010371489,-0.008650815,0.13001417,0.33682483,-0.6238061,-0.3833077,0.22164342,0.23164237,-0.044845093,0.18907398,-0.38087258,0.48300183,-0.71333784,0.10452164,-0.45823675,0.07757168,-0.072883576,-0.2399593,0.10095192,-0.030181006,0.37948394,-0.35173273,-0.5246853,-0.04232402,0.32992804,0.07987078,0.26360795,0.6210622,-0.27419752,0.05534777,0.11649259,0.53466254,1.090034,-0.32189092,0.15071966,0.39940625,-0.25356615,-0.5112688,0.26792413,-0.33317578,-0.0007567033,-0.1979152,-0.36616763,-0.35544083,0.3950214,0.17838016,-0.021225099,0.08351693,-0.5594808,0.010440424,0.33276552,-0.2279147,-0.30610126,-0.25244212,0.38590258,0.9563575,-0.3160799,-0.2706975,0.15507933,0.26886106,-0.43650997,-0.55316687,-0.072950795,-0.24687853,0.30496785,0.13983937,-0.17962569,0.03109717,0.1136675,-0.3822685,0.1027253,0.2636761,-0.35590565,0.06136597,-0.12582096,0.0786904,0.82030857,-0.10096664,0.0025468543,-0.6919892,-0.42543307,-0.9102224,-0.62110764,0.39591384,0.14355947,0.06427489,-0.24987683,0.08243938,-0.12572153,-0.2984651,0.14933282,-0.5631642,0.3710916,0.119253404,0.45116282,-0.29029253,-0.8719558,0.11797008,0.11193742,-0.24991074,-0.61173546,0.46947414,-0.12822779,0.90437174,0.045978814,-0.2010035,0.09139241,-0.4996184,0.10508945,-0.49704075,-0.0033506379,-0.809886,0.1820975 -819,0.40925896,-0.3596358,-0.36296168,-0.21710919,-0.07743738,-0.05560792,0.047086123,0.78767085,0.14591989,-0.47957724,-0.18927383,-0.21026196,0.085715815,0.39282465,-0.03487983,-0.34573454,-0.059230093,0.19670753,-0.46529454,0.48807847,-0.3668049,0.069022425,-0.1253952,0.3330743,0.42768183,0.32523778,-0.09189129,-0.11557546,-0.10957673,0.025926612,-0.058650993,0.024676431,-0.45253074,0.23906294,-0.08454831,-0.26018724,-0.14279205,-0.65682733,-0.4308799,-0.6654197,0.37667224,-0.6567074,0.3641796,0.09082666,-0.2713687,0.07950766,0.08807168,0.5812504,-0.4989937,-0.11908495,0.25057176,0.17172508,0.025914095,-0.002506806,0.03686439,-0.34007034,-0.51643807,-0.106553465,-0.23188914,-0.4076112,-0.21277636,0.09272299,-0.28050113,-0.082376696,-0.0768931,0.67950594,-0.49122617,-0.048755523,0.11559809,-0.039178815,0.22520648,-0.69322217,-0.2609198,-0.124637194,0.34027353,-0.13274048,-0.27158353,0.32169774,0.28204226,0.24197458,-0.046763264,0.00027799743,-0.16271913,0.043854233,0.17718744,0.40576676,-0.19254154,-0.47431234,-0.09651532,0.10653882,-0.084825106,0.19641589,0.31264699,-0.38985088,-0.09466913,0.17132764,-0.2932855,0.34282914,0.4384712,-0.2798095,-0.12737566,0.42486933,0.6570268,0.24532509,-0.14899588,-0.046304047,0.07908693,-0.45686215,-0.1685664,0.16050215,-0.28127706,0.6116645,-0.055862818,0.2162219,0.64174503,-0.109453656,-0.05746044,0.00648427,0.15983368,-0.049747575,-0.441618,-0.4887214,0.27714568,-0.41440964,0.13266255,-0.18949576,0.72510266,0.26740715,-0.6749704,0.3911184,-0.54539585,0.17337786,-0.25578788,0.35531387,0.84508014,0.28260583,0.30687335,0.7292711,-0.39671442,0.08200597,0.0758815,-0.27751157,0.19981839,-0.30521673,0.034464303,-0.515653,-0.08429513,0.028564246,-0.14637579,0.026199596,0.32414246,-0.6480296,-0.12299815,0.2429563,0.84789586,-0.24145178,0.017287552,0.6517551,1.1075892,1.0702069,0.15418006,1.0342726,0.09757538,-0.3855589,0.54321146,-0.2777507,-0.73359627,0.27426785,0.47390655,0.14064218,-0.066668205,0.14551352,-0.033741083,0.6194589,-0.5006831,0.35244912,-0.2022019,0.037515864,0.11876462,-0.1961647,-0.51722276,-0.23909189,-0.1977017,0.03817685,-0.29960775,0.18038821,-0.23546213,0.1422822,-0.0641084,1.8044881,-0.0032360987,-0.001200527,0.08680217,0.5413776,0.0300819,-0.38643247,-0.11729198,0.41020137,0.5646387,0.19405127,-0.670862,0.15983619,-0.23944965,-0.3564383,-0.004651254,-0.4366783,-0.12671314,0.054448996,-0.4991159,-0.19743074,-0.15824498,-0.18499255,0.40937254,-2.8720057,-0.18349561,-0.11934963,0.495182,-0.24919368,-0.2911829,0.060419485,-0.45070457,0.3859414,0.4268286,0.5667247,-0.6145398,0.37027967,0.353799,-0.6825088,0.08149632,-0.7026978,-0.16848403,-0.0388022,0.27097782,-0.053137876,0.011530388,0.18077427,0.08293697,0.46654025,0.1504006,0.21275555,0.34491614,0.3145283,0.022847308,0.7199884,-0.14634784,0.5364732,-0.36110318,-0.11540571,0.054245222,-0.42609873,0.15224172,-0.020215876,0.098221585,0.50658506,-0.5970651,-0.97514397,-0.6919048,-0.2550616,1.1391095,-0.28834975,-0.26516208,0.46137226,-0.6162527,-0.21363464,-0.30860713,0.5986069,0.11343015,-0.149626,-0.8043953,0.024659062,-0.04405553,-0.009316165,-0.021818053,-0.2512253,-0.45403764,0.751824,-0.107616805,0.625782,0.41688225,0.06450128,-0.15064892,-0.31185713,-0.044823233,0.7825657,0.32439283,0.12508993,-0.07366849,-0.09643814,-0.6391319,-0.06956963,0.18640018,0.5089295,0.7040322,-0.10016637,0.16738392,0.36708143,-0.03816454,0.034536038,-0.051822368,-0.40644142,-0.21488333,-0.07125151,0.46331128,0.59315264,-0.126216,0.47774938,-0.060429875,0.16710071,-0.101109646,-0.3421655,0.43118417,1.0376555,-0.14296308,-0.31974533,0.41896954,0.5021795,-0.22176765,0.35688207,-0.37018108,-0.0787437,0.49164695,-0.1636454,-0.44964877,0.10447263,-0.31128195,0.099317595,-0.8363174,0.37080333,-0.48326775,-0.558662,-0.5977034,-0.11153872,-3.3031816,0.2667628,-0.30071643,-0.29008958,-0.046239268,-0.15330333,0.0048431675,-0.7215426,-0.5700004,0.24806218,0.010635897,0.81180954,-0.07929086,-0.049133096,-0.22478175,-0.32216975,-0.3254224,0.039759938,-0.007433179,0.36009708,0.04397699,-0.4908951,-0.03862941,-0.022274602,-0.423166,0.082566544,-0.6553138,-0.3995102,-0.16695581,-0.65773726,-0.40372676,0.8122063,-0.23666936,0.07529188,0.015644394,-0.028637296,-0.10623955,0.18311238,0.08105301,0.25551656,0.000741899,-0.16341805,-0.048687577,-0.23324715,0.08284599,0.1631558,0.53531134,0.044806864,-0.06256798,0.23034811,0.60101527,0.6084567,-0.11326828,0.8189522,0.70569575,-0.23812899,0.19136597,-0.3345261,-0.14952964,-0.49156895,-0.2861643,0.029321779,-0.39700687,-0.60664624,0.0663275,-0.35246745,-0.6165749,0.33026057,0.035109617,0.2872815,0.2161059,0.1140987,0.5286394,-0.024924356,-0.05905455,-0.103410155,-0.032239433,-0.70262206,-0.0298626,-0.65634686,-0.42925748,0.41072732,0.97977865,-0.26262596,0.037114117,0.11181747,-0.40126038,0.14628512,0.19505788,-0.23684727,0.22482486,0.26059264,-0.21228161,-0.6170001,0.32831457,0.052003503,-0.17521253,-0.5339539,0.35665724,0.47168735,-0.6739754,0.83194715,0.20723276,-0.17493473,-0.3832712,-0.4508481,-0.32581395,-0.03867539,-0.19508506,0.3101707,0.04936862,-0.7725325,0.21154809,0.41752216,-0.21585317,-0.768791,0.71050644,-0.24170847,-0.17497127,-0.07781992,0.2528078,0.21548519,0.004796185,-0.18201596,0.3759529,-0.5468185,0.18144941,0.19004427,-0.06658161,0.20086451,-0.11180303,0.04289896,-0.7809196,0.085608125,-0.60255694,-0.10812009,0.5014189,0.12720369,0.29003766,0.13233326,0.36991775,0.29203948,-0.10039141,0.13828681,0.03393332,-0.35719907,0.36886653,0.40419218,0.38625678,-0.54382885,0.46764895,0.07682684,0.0064988793,-0.05284109,0.12726732,0.22815484,0.22556166,0.45621052,-0.13893138,-0.36477518,0.20753254,0.7738289,0.2570694,0.51727194,0.119116284,0.016360663,0.046456132,0.077026434,0.18017873,0.046385504,-0.6761072,0.20299004,-0.08389024,0.2035879,0.36892632,0.1226258,0.15835428,-0.16096155,-0.3722103,-0.04812801,0.41456458,-0.04039849,-1.2185284,0.5890812,0.18134119,0.91110283,0.62456137,-0.025309004,-0.20748848,0.62716407,-0.09577816,0.1906517,0.33573493,-0.13753293,-0.64828247,0.6244643,-0.8036129,0.54392403,0.036687966,-0.02502525,-0.06334919,-0.08999106,0.47901887,0.5195272,-0.16906375,-0.04204187,-0.039383825,-0.30875632,0.24461631,-0.49398568,0.17534159,-0.74840087,-0.2268897,0.56695,0.52338237,0.2175991,-0.120588474,0.06905582,0.054167926,-0.28884643,0.25157693,0.08588195,-0.056024157,0.17524906,-0.9323422,-0.19896998,0.3808854,-0.38394013,0.2611368,0.037375845,-0.17568572,0.29566202,-0.118747585,0.027150141,0.013623354,-0.6874484,0.11958747,-0.3094811,-0.2891967,0.45912826,0.070617676,0.3552662,0.23387045,0.11849663,-0.1743984,0.49570704,-0.1161895,0.8348528,-0.22665697,-0.22666143,-0.5007894,0.087247066,0.12308073,-0.10358491,0.085219555,-0.4614604,-0.07448129,-0.5886082,0.58081776,0.27849498,-0.2764303,0.024110902,-0.08527703,0.05035808,0.6107819,-0.16303845,-0.023805825,-0.2221633,-0.19433628,-0.19494504,-0.27850455,0.03539867,0.21655677,0.17683712,0.3295442,-0.09527891,-0.11647168,-0.102813356,0.4704235,-0.034666196,0.4697933,0.27563816,0.09877778,-0.22234,-0.2538084,0.23794986,0.3414149,0.12632619,-0.22512193,-0.26190996,-0.43087605,-0.46929252,0.03447238,-0.13850969,0.65927494,0.014375668,-0.15947038,0.57351816,-0.20610029,1.253564,-0.011652226,-0.38898277,0.07594523,0.5966389,0.011354823,-0.17226419,-0.19693547,0.8209879,0.6201184,-0.037348274,-0.052934643,-0.39835688,-0.18064035,0.28169423,-0.11903457,-0.20811372,0.11603583,-0.63021857,-0.14105925,0.1646158,0.27645424,0.4771206,-0.0804833,0.14964396,0.39242518,-0.12386691,0.08665859,-0.36300376,-0.3624047,0.18407798,0.18314494,0.07210091,0.085808426,-0.52933127,0.4002013,-0.5248708,0.24600625,-0.117035195,0.14778525,-0.18935484,-0.35347077,0.1736895,0.06755197,0.45935294,-0.1636114,-0.31417906,-0.23458925,0.5830484,0.15968798,0.18870729,0.6545878,-0.19674753,-0.027701521,0.08228392,0.4229863,0.8567908,-0.13381633,-0.2523534,0.25413302,-0.41594782,-0.7773264,0.36798888,-0.3421118,0.28228265,0.1895882,-0.07261357,-0.65363127,0.17237239,0.2568242,-0.1972966,0.05970477,-0.71657795,-0.3782326,0.24602894,-0.25125104,-0.15664607,-0.47079408,0.17641874,0.6269289,-0.4121953,-0.24356928,-0.041027952,0.17115332,-0.085371345,-0.43280593,-0.03835496,-0.5812512,0.21977884,-0.08650672,-0.4447983,-0.21718301,-0.036342572,-0.30669242,0.3250233,-0.15916078,-0.37932244,0.15907548,-0.24038024,-0.29868576,0.9631619,-0.102042526,0.22974926,-0.28322393,-0.4022962,-0.6851408,-0.42453936,0.47385588,-0.02528675,-0.07463903,-0.682379,0.09284496,0.037420217,-0.039247002,-0.20825343,-0.412335,0.5421753,0.111682154,0.35451138,0.033607688,-0.72868866,0.2724475,0.13907632,0.009553715,-0.6969734,0.49182975,-0.15068026,0.92123795,0.06124818,0.19554447,-0.009832145,-0.34948504,-0.19172621,-0.25043735,-0.32892677,-0.45158932,-0.016711874 -820,0.49729776,-0.062331736,-0.4469263,-0.049727537,-0.15550034,0.13513874,4.7616162e-05,0.30432948,0.23390989,-0.2458979,0.023195982,-0.28873578,0.093032375,0.33851725,-0.02907511,-0.3702184,0.14633733,0.07356426,-0.37060174,0.40365437,-0.5015128,0.39816162,-0.05378359,0.3662895,0.1355889,0.40390143,0.08635921,-0.14783755,-0.17023437,-0.22604637,-0.009514181,0.26079348,-0.2818209,0.12009207,-0.025793497,-0.24043995,0.226021,-0.27526054,-0.56456274,-0.6812651,0.20406437,-0.5384537,0.38604227,0.0780144,-0.29472393,0.07089089,0.11043025,0.34305993,-0.1902873,0.062396713,0.0908053,-0.08911111,0.10143582,-0.15049793,-0.19432598,-0.3496347,-0.5102071,-0.025025487,-0.4970205,-0.2820196,-0.29943708,0.13048722,-0.39728543,0.0211977,-0.1858356,0.30499604,-0.35137045,-0.0125659825,0.25546625,-0.32416984,0.3772462,-0.52123386,-0.36892018,-0.09203253,0.1245981,0.008137858,-0.15193571,0.30817503,0.342236,0.52489257,-0.079365715,-0.116662286,-0.40740266,-0.20650199,0.12173423,0.57165617,-0.19950962,-0.36284527,-0.08647739,-0.013906781,0.07503237,0.26782566,0.18308207,-0.15587501,-0.17433244,0.18013713,-0.35248998,0.3539659,0.4480158,-0.4314069,-0.2573753,0.25208434,0.5169552,0.17676727,-0.20020714,0.009518128,0.044064537,-0.42684162,-0.15860456,-0.020605547,-0.24798152,0.5254497,-0.022159314,0.3358293,0.642963,-0.3331198,-0.012120629,0.079626,7.4676675e-05,-0.0996735,-0.21162967,-0.055378743,0.022711,-0.47256836,0.1248851,-0.12538394,0.82816195,0.21396147,-0.49943054,0.40488073,-0.51682794,0.18462859,-0.09251823,0.6202043,0.52337635,0.20249541,0.4043141,0.7295098,-0.4605245,0.1464243,-0.10416565,-0.34572715,0.1435948,-0.18076818,0.030126158,-0.49077258,-0.13127501,0.16732751,-0.22527952,0.07729368,0.49917832,-0.58402723,0.0045604506,0.1535764,1.0197202,-0.25161952,-0.14842337,0.46093458,1.0843273,1.099361,-0.048695423,0.9174406,0.06997242,-0.2970667,0.06262656,-0.49883613,-0.47399327,0.26623642,0.3008302,-0.097047284,0.13086724,0.097563885,-0.12311847,0.30000076,-0.32072958,0.17758808,0.0013180136,0.4135022,0.14976718,-0.15227264,-0.35380515,-0.4073508,-0.14951095,-0.13357286,-0.07272052,0.24396664,-0.15765099,0.36870047,0.040690962,1.8699199,-0.0041229087,0.1618298,0.041449606,0.62958986,0.1231307,-0.079716764,-0.02324481,0.3030413,0.15291835,0.12992916,-0.5124975,0.12064644,-0.3396428,-0.45809796,-0.03889582,-0.30774593,0.035721183,-0.012601606,-0.2797998,-0.10335231,-0.13972153,-0.2682687,0.54926705,-2.9100504,-0.23081066,-0.0047534425,0.30590108,-0.31031978,-0.2681603,0.13648054,-0.5304814,0.28295767,0.33065018,0.4325376,-0.7674768,0.20945159,0.37581095,-0.40489545,-0.12561359,-0.5572347,-0.1058543,-0.01965017,0.281184,0.06460729,-0.077340394,-0.20584883,0.21281004,0.362683,-0.05400416,0.13590318,0.17042981,0.19862337,-0.041568454,0.61733216,0.13791241,0.38990483,-0.087654024,-0.17206019,0.37565988,-0.36915323,0.31197658,-0.09726106,0.07084966,0.32949066,-0.29363874,-0.7618713,-0.4760231,-0.22111975,1.0833782,-0.11424669,-0.45986685,0.37452558,-0.31388837,-0.23359604,-0.27768025,0.23272099,-0.06092314,-0.15390567,-0.703885,0.099617146,-0.21011998,0.11226021,-0.0023190817,-0.038101386,-0.25517792,0.50524825,-0.027526425,0.34714633,0.3345261,0.074533686,-0.16282399,-0.39076793,-0.072785005,0.93832153,0.36623535,0.062854014,-0.24168499,-0.1917849,-0.38175946,-0.119640574,0.16747037,0.31787452,0.884608,-0.105508804,0.08112347,0.31524482,-0.15108132,-0.048987497,-0.1632947,-0.3503744,0.055264726,-0.09683546,0.5829834,0.70520395,-0.17290716,0.52972776,0.063427955,0.27335045,-0.123424836,-0.5070113,0.4043066,0.7504462,-0.19998884,-0.15490489,0.4951648,0.305306,-0.29684785,0.40838468,-0.58930016,-0.26869395,0.64887446,-0.1581394,-0.36168307,0.19502865,-0.3468598,0.122080974,-0.8964247,0.2952771,-0.30644342,-0.37439504,-0.38044664,-0.15084396,-3.4585688,0.17809342,-0.2725296,-0.10315571,0.09628783,0.086485155,0.030459361,-0.6145376,-0.5597276,-0.0016762415,0.122608736,0.585884,-0.09842127,-0.03385737,-0.21142456,-0.39753762,-0.4353104,0.062119085,0.07237347,0.32804123,-0.066859536,-0.5839053,0.11745637,-0.2248083,-0.38111588,0.16917218,-0.42111814,-0.65168345,-0.23039979,-0.53831744,-0.55114645,0.6866493,0.02353251,0.0050646705,-0.23239109,0.032114454,-0.0051734843,0.24519138,0.35945338,-0.02808094,0.027601827,-0.07630305,0.0046156724,-0.2971279,0.1872992,0.10305121,0.41662022,0.48794279,0.049383536,0.110964365,0.55850166,0.5093715,-0.077572875,0.6505984,0.36161533,-0.21556942,0.24037817,-0.3118461,-0.21208654,-0.45476887,-0.4027458,0.15119581,-0.38484204,-0.5945447,-0.1834475,-0.33819208,-0.5407461,0.49144372,-0.1010485,0.22106323,-0.10171754,0.22891913,0.53355545,-0.1986243,-0.05755852,0.044373773,-0.12588924,-0.6000528,-0.29739565,-0.73382354,-0.44006878,0.38563955,0.95519274,-0.32896167,-0.029727273,0.09918716,-0.2332082,-0.096319236,0.12641697,0.10080168,0.1785031,0.42597437,-0.2089426,-0.6274002,0.3724791,-0.027321182,-0.0027121543,-0.5101422,0.16068362,0.6742347,-0.6636091,0.43813002,0.28320202,0.15984255,0.004028956,-0.5200781,-0.1332062,0.01539061,-0.24562794,0.2919757,0.056037184,-0.7200176,0.37523678,0.39589152,-0.29944047,-0.5432897,0.40036935,-0.09992402,-0.37081638,-0.103713766,0.33039078,0.19205222,0.039633904,-0.18016784,0.30408484,-0.6510794,0.22465783,0.36460575,-0.18293849,0.41151252,-0.16275209,-0.37798885,-0.7158646,0.11138416,-0.36124462,-0.3524621,0.18777452,0.18908615,-0.015401987,0.30140597,0.23404527,0.43003848,-0.2660973,0.027460726,0.035881504,-0.17710678,0.47314498,0.41423938,0.58547425,-0.41452187,0.5315801,0.01274844,-0.055970266,-0.13286464,-0.14033763,0.3809285,0.1636377,0.3148695,0.07940651,-0.3055082,0.3561456,0.8262055,0.11962257,0.33786294,-0.039868046,-0.09436902,0.18341926,0.0654247,0.03389454,0.09435343,-0.47365287,0.0009849886,-0.20496769,0.15391892,0.44624147,0.24757512,0.32974762,-0.023371927,-0.37427363,0.06492296,0.18830647,-0.2007095,-1.1155579,0.36360824,0.30249366,0.72390664,0.521015,0.09060478,-0.012019594,0.6117371,-0.27117833,0.0576276,0.3284856,-0.0062872567,-0.51303273,0.51780045,-0.7802691,0.6263257,-0.0051573594,0.030147342,-0.012876483,-0.17334563,0.44119796,0.87926847,-0.19578454,-0.12247222,0.023540573,-0.2702134,0.17693993,-0.36857447,0.009312018,-0.7820812,-0.35121137,0.5628423,0.43114832,0.27596018,-0.060471795,0.0047979974,0.051504184,-0.08997461,0.377934,-0.15135124,0.19335519,-0.1136542,-0.5891765,-0.23111755,0.46918467,0.021678584,0.09158481,0.005411709,-0.013004073,0.18359923,-0.15073833,0.082308546,-0.078213215,-0.46353644,0.045781307,-0.27126318,-0.31698084,0.4935597,-0.17022231,0.43121225,0.082586095,0.11252297,-0.19856735,0.42859346,0.098715656,0.58125657,-0.18827966,-0.18383828,-0.37703022,0.121020995,0.107334964,-0.15030135,-0.024156412,-0.08353995,-0.029348552,-0.53535527,0.6080047,-0.05913277,-0.18525237,-0.12521711,-0.31660333,-0.053895872,0.5329851,-0.12607735,-0.16276747,-0.23877287,-0.19127195,-0.2553035,0.0020876725,0.06912535,0.21285707,0.219039,-0.19916703,-0.07596661,-0.15217583,0.06477603,0.29518536,-0.09303102,0.1430301,0.3450404,0.023043258,-0.41629794,-0.18706504,0.023334129,0.37663373,0.054323316,0.031712424,-0.24548699,-0.47824746,-0.3750765,0.096485026,-0.20167086,0.41503504,0.10306986,-0.29105744,0.86830485,-0.006879298,1.2909596,0.06392775,-0.20575319,0.005447905,0.5988424,-0.065675825,0.05349519,-0.33150303,0.9551467,0.46229443,-0.22276191,-0.30790278,-0.28901175,-0.037972696,0.21760647,-0.19842958,-0.16702004,-0.014060676,-0.5738575,-0.25248167,0.30095768,0.3212854,0.27039638,-0.102362,0.036739636,0.26927528,0.14231864,0.4549978,-0.34917042,-0.39334965,0.27415878,0.25939935,0.050541975,0.19987275,-0.3736257,0.46163628,-0.53454876,0.18371709,-0.12867583,0.1284315,-0.11804444,-0.4013939,0.33701533,0.13350746,0.3406102,-0.26949614,-0.3603519,-0.254846,0.31963402,0.15865047,0.106979094,0.65057105,-0.23468596,-0.16011709,0.048282783,0.41235542,1.2456328,-0.17743969,-0.22116588,0.4326846,-0.26805693,-0.6976601,0.32499427,-0.31062278,0.045438394,-0.041849803,-0.28078476,-0.6157093,0.25815803,0.16545795,-0.11533426,0.100778796,-0.4727933,-0.15889594,0.09921374,-0.51681733,-0.21801755,-0.39300343,0.15357941,0.6524267,-0.2881561,-0.2288557,0.109932944,0.40489468,-0.37118423,-0.5013113,0.018024525,-0.21917433,0.3891234,0.019578703,-0.34066904,-0.03799689,0.1376839,-0.39738396,0.09636998,0.24561928,-0.40420622,0.17651701,-0.3771162,-0.13904543,0.7992793,-0.22667487,0.18950026,-0.40073395,-0.31658688,-0.6797436,-0.23482749,0.5457746,-0.085012645,-0.16499586,-0.42327386,-0.10046838,-0.005862373,-0.13260579,-0.09712776,-0.3667898,0.45524564,0.058709975,0.20587845,-0.073121436,-0.6189887,0.09134217,0.097942576,-0.032804377,-0.60098916,0.5773645,-0.2587648,0.67031723,0.19931473,-0.045019668,0.4189574,-0.3899818,0.17602184,-0.18763585,-0.2797573,-0.6572166,-0.067034416 -821,0.28852966,-0.025320401,-0.5346387,-0.06744438,-0.24270524,0.02363504,-0.04836887,0.40631065,0.23066579,-0.1585501,-0.15047261,-0.13048886,-0.053708434,0.3418319,-0.23618062,-0.38912752,0.023502631,0.09743844,-0.39673024,0.5806429,-0.22669339,0.14304605,-0.04252511,0.356827,0.3883453,0.080679126,0.052613873,0.059079748,-0.09781226,-0.3339796,-0.45157686,0.2830793,-0.26727548,0.121294856,-0.13201986,-0.34894255,-0.004156351,-0.45242685,-0.46636328,-0.6776232,0.30156127,-0.7739929,0.5191679,0.036311664,-0.19773984,0.39342755,0.14121933,0.23310235,-0.05781212,-0.3337481,0.1615453,-0.29109362,-0.050102796,-0.28003794,-0.30241647,-0.21560428,-0.48489946,-0.13174732,-0.33340025,-0.20580506,-0.43036106,0.14835753,-0.3597985,0.0412033,-0.056957442,0.5389943,-0.2810064,0.32140025,0.02312748,-0.16786334,-0.061844807,-0.7372373,-0.24036093,-0.016733648,0.28709108,-0.041430406,-0.19716237,0.3788062,0.12895976,0.30807564,-0.2395439,-0.08244374,-0.3041079,-0.17922592,0.055514693,0.54479444,-0.2250694,-0.4822723,0.03501812,0.24300422,0.1950312,0.38476396,0.2528768,-0.06560729,-0.10185688,0.008501508,-0.07851807,0.47483212,0.44882637,-0.20092228,-0.018059786,0.34258863,0.30911937,0.31617337,-0.11201397,-0.20627336,-0.16863418,-0.4999635,-0.10435108,-0.14467034,-0.1928792,0.4413337,-0.0053012753,0.28597575,0.51122284,-0.028098542,-0.09667366,0.11057954,0.082851216,0.055842567,-0.2754952,-0.2845375,0.20787157,-0.43769673,0.40278217,0.060304195,0.6598775,0.12309526,-0.450702,0.43515143,-0.4432682,0.07345381,-0.052802783,0.3535854,0.46930417,0.3352187,0.39209676,0.57595533,-0.4679088,-0.015527002,-0.0150096165,-0.31451792,-0.087989226,-0.05111729,0.21110736,-0.5621098,-0.036174424,-0.2243477,-0.030159047,0.31608558,0.17515422,-0.42479944,-0.11325074,0.17920281,0.9754621,-0.22150977,-0.037724946,0.83611965,1.1412975,0.8735952,-0.12416691,0.5503768,-0.018543,-0.16116154,0.04222199,0.0033556393,-0.49178705,0.2128332,0.4334534,-0.13169508,0.06368182,0.18746956,0.015805457,0.35901117,-0.24053338,-0.22421266,-0.08134793,0.07106442,0.3609617,-0.0113989115,-0.45946836,-0.24286151,-0.2101499,0.022002552,0.1332196,0.21800293,-0.24606106,0.44515833,-0.16201796,1.607065,0.16450712,0.0021163735,0.17320053,0.5196582,0.20909394,-0.06831711,-0.15890001,0.3105049,0.21296549,0.17479466,-0.40263692,0.17923607,-0.33400625,-0.27320692,-0.007937753,-0.40041608,-0.20936055,0.13312744,-0.288539,-0.18791129,-0.17002384,-0.18083842,0.49852684,-3.163019,-0.17612994,-0.08135683,0.32893896,-0.15497299,-0.39726263,0.011128038,-0.38677695,0.44243917,0.15774421,0.5221614,-0.4410253,0.25185204,0.17428766,-0.49386856,-0.26304868,-0.44290453,-0.049086478,0.14343643,0.37744984,-0.09116193,-0.050320007,0.08153142,0.10649485,0.44901043,0.031071007,0.08284737,0.39164576,0.42964816,-0.14741625,0.48176172,-0.2787121,0.58367187,-0.2456328,-0.09806066,0.21841112,-0.15410723,0.44501352,-0.15191577,0.26312286,0.56423765,-0.2638634,-0.7637391,-0.41632867,0.043440633,1.2307246,-0.04792922,-0.49504265,0.22753017,-0.44630194,-0.27753982,-0.25389066,0.36232248,-0.058329847,-0.1651775,-0.5640613,0.10169155,-0.115768276,0.11581842,-0.03724239,-0.22767036,-0.2937364,0.600666,0.014453471,0.5359887,0.26510343,0.22232185,-0.31390196,-0.22925845,-0.0582921,0.6263117,0.50930685,-0.057698626,-0.12470865,-0.06369598,-0.29296595,-0.18988521,0.23937976,0.6073566,0.43649203,-0.027641516,0.10315739,0.30617163,0.045476317,0.012462999,-0.15142012,-0.19599295,-0.19214188,-0.0078123785,0.50697297,0.63444585,0.03455476,0.5949826,0.0996274,0.24154255,-0.1634315,-0.45276675,0.1538166,0.85894245,-0.26528782,-0.44233432,0.5106646,0.34675115,-0.09324418,0.31276372,-0.38653812,-0.31395525,0.5562405,-0.10274457,-0.5340452,0.1531532,-0.24503049,-0.045738522,-0.50556827,0.22259822,-0.34490156,-0.68794453,-0.5233928,-0.08505029,-2.323304,0.21306705,-0.40773576,-0.18454345,-0.1602882,-0.30240732,-0.063291706,-0.61616975,-0.46894485,0.23108278,0.19904627,0.7250279,-0.13390933,0.144708,-0.15679052,-0.3044302,-0.09586803,0.08154366,0.12965421,0.3157629,-0.057186108,-0.24619535,-0.11679026,0.078062415,-0.38588053,0.090007804,-0.55929404,-0.26350078,-0.07585287,-0.38027558,-0.18609795,0.6455969,-0.34228423,0.06246529,-0.24830581,0.023247276,0.030976739,0.0076116943,0.19197492,0.16902344,-0.05567074,-0.104369,0.13898031,-0.34455857,0.25285545,0.093536906,0.40919194,0.21359818,0.17497529,0.21100911,0.3320083,0.62010515,0.007227308,0.80793625,0.2484632,-0.072733656,0.22058018,-0.22619344,-0.41454437,-0.4421681,-0.2153245,0.34415802,-0.33006236,-0.42170215,-0.048677053,-0.28409857,-0.6868722,0.5737542,0.06236417,0.10264888,-0.16221319,0.3349442,0.6486286,-0.3354029,-0.0611409,0.15501599,-0.04010878,-0.620073,-0.18146026,-0.555898,-0.44014865,-0.07607249,0.7629738,-0.27173594,0.087620735,0.1068591,-0.3404321,0.105555005,0.013745346,0.036076274,0.15332447,0.27542967,-0.2429261,-0.5826697,0.48904803,-0.32106885,-0.08615933,-0.57687426,0.29373258,0.5539605,-0.4592051,0.3648621,0.2746539,-0.047662165,-0.36098453,-0.453737,-0.15616463,-0.068889126,-0.15457752,0.19694795,0.082989804,-0.6825308,0.35286528,0.33771834,-0.11190046,-0.6253467,0.45785233,-0.03515939,-0.4048861,0.089449115,0.29871345,0.17400824,0.030654622,-0.16628666,0.08068228,-0.21948576,0.3249827,0.218465,-0.034697883,0.0034537783,-0.27423555,-0.14734551,-0.65226173,0.10367889,-0.3394234,-0.30227694,0.2810981,0.041130714,0.16575949,0.14111407,0.07484716,0.2329425,-0.3434887,0.17353758,-0.1813628,-0.32981938,0.378862,0.39397508,0.58070385,-0.48897192,0.5673544,0.007310315,-0.1755388,0.22738205,0.036029138,0.3185954,-0.02837029,0.46159378,0.04395163,-0.20352837,0.14269902,0.66248274,0.12185045,0.25013703,0.028137472,0.011358574,-0.025491262,-0.06341475,0.1406591,-0.0025789824,-0.5820231,0.17132436,-0.43334523,0.1049085,0.43340722,0.16330115,0.15017723,-0.0076850015,-0.4315142,-0.06632101,0.05622768,0.11862792,-0.9957131,0.4222179,0.1186903,0.92103195,0.052496094,0.1460929,-0.10395813,0.6892325,-0.007763756,0.025883565,0.28038982,0.05736773,-0.3134758,0.456292,-0.68485975,0.56923836,0.16105904,-0.023267908,0.051942308,-0.116661325,0.25290003,0.56577367,-0.32852045,0.027700534,0.06855375,-0.40084615,0.12722838,-0.4201416,-0.042102177,-0.4652857,-0.34866285,0.41680333,0.52359164,0.35633096,-0.07288391,0.011479893,0.053226866,-0.1892082,0.075724974,0.097191654,0.2153114,-0.2305557,-0.5426539,-0.05200145,0.29446444,-0.1580422,0.21798798,-0.12582274,0.07459438,0.30171624,-0.060960025,-0.04523582,0.009283887,-0.518369,0.16667639,-0.18619654,-0.40936133,0.35656956,-0.0843073,0.35579365,0.19397804,0.067475736,0.053678352,0.58561546,0.029737115,0.8219327,-0.06069901,-0.049986545,-0.427716,0.08161909,-0.11123786,-0.06726039,0.23308311,-0.25300643,0.12026889,-0.5616469,0.4221282,-0.06957514,-0.19818486,-0.14226694,-0.12099848,0.14712356,0.4319412,-0.040071905,-0.06810803,-0.23210952,-0.206163,-0.18375523,-0.25166222,0.019147431,0.15272264,0.19675899,0.115800686,-0.13820907,-0.06108292,-0.27714717,0.35257164,-0.060979422,0.47006804,0.081587635,0.1817614,-0.10947462,-0.17073505,-0.016708493,0.59870815,-0.11468581,-0.2283268,-0.2618611,-0.40075105,-0.35354736,0.29518208,-0.047451057,0.34172267,0.0668539,0.008937557,0.5151447,-0.15310036,1.0840604,-0.07565313,-0.29406098,0.029070644,0.4604546,-0.06522631,-0.15838997,0.019124392,0.811253,0.34064406,0.19210799,0.037070397,-0.30171564,0.06184729,0.26895478,-0.16808549,-0.034745317,0.07181429,-0.1614918,-0.17204884,0.098574,0.11779208,0.358737,-0.28667542,0.13600095,0.34767675,0.06010906,0.1206889,-0.3068439,-0.26387036,0.30862468,0.15841286,-0.18471411,0.107009016,-0.53684133,0.39634147,-0.3108849,0.1200436,-0.41220763,0.09914875,-0.13604584,-0.098687395,0.25803185,0.09295737,0.4474524,-0.429032,-0.17042896,-0.14583203,0.2912428,0.33354476,0.030104574,0.28940934,-0.20861574,-0.16596122,0.11759562,0.41485554,0.55817735,-0.2177764,-0.0123050045,0.28153494,-0.3839217,-0.5041991,0.25552338,-0.28161424,-0.07529963,0.093939,-0.0154383695,-0.3518973,0.27762476,0.2921585,0.05373383,-0.10904987,-0.6430268,-0.08226522,-0.008749654,-0.36270496,-0.17032759,-0.41776642,-0.04815364,0.4055365,-0.08646022,-0.29337668,0.06465123,0.14940523,-0.032963365,-0.46564206,0.0892521,-0.36246628,0.21035783,-0.076606154,-0.26360244,-0.29891652,-0.16932777,-0.4744266,0.19066536,-0.047867436,-0.278223,-0.0064278245,-0.083561726,0.00516599,0.71589386,-0.3566658,0.16518593,-0.4409237,-0.3915002,-0.4607636,-0.45996708,0.30051392,0.053807903,0.09364339,-0.62113106,-0.0052742916,-0.18657516,-0.21182594,-0.32351446,-0.11948694,0.34604958,0.0493891,0.2534502,-0.3202307,-0.80853933,0.33353445,-0.013359006,-0.17705403,-0.460629,0.2786037,0.012240018,0.5721486,-0.061160248,0.1093054,0.30702418,-0.20118235,-0.11294092,-0.29611772,-0.26758203,-0.46237412,-0.09117738 -822,0.44611496,-0.16997008,-0.47673795,-0.034736704,-0.17596994,0.16275361,-0.07015697,0.6377077,0.10218089,-0.45640618,-0.13824709,-0.08404989,-0.08197824,0.17829077,-0.27613145,-0.27434677,-0.114683576,-0.001806189,-0.5017489,0.7313027,-0.29741636,0.1785717,-0.04292282,0.28911754,0.31562465,0.17986794,0.18729141,-0.074657604,-0.11042856,-0.26544315,0.0062806094,0.26020807,-0.72519124,0.21988355,-0.4495793,-0.42065164,-0.1364329,-0.45970502,-0.40974683,-0.77055347,0.3311852,-1.0502964,0.61320114,0.022305846,-0.17237839,0.5505695,0.21146525,0.06912746,-0.03577835,-0.13151148,0.2214556,0.00041897915,0.040293925,-0.08686817,-0.26926795,-0.6628715,-0.69891244,-0.055105984,-0.5923541,-0.06842585,-0.3433499,0.106771,-0.3619261,-0.044485338,-0.29664797,0.3267028,-0.46749496,0.142379,0.08732937,0.018232087,0.17519024,-0.7892129,-0.23439123,-0.14595447,0.117879406,-0.066746354,0.0059557897,0.38727474,0.08991532,0.3413716,-0.028033605,-0.19314273,-0.38495964,0.0071065896,0.057727892,0.39846984,-0.14845678,-0.4934435,-0.12878348,0.03838855,0.41245762,0.12554029,0.16689254,0.015758244,-0.0614986,0.021756576,-0.27118865,0.53745466,0.5668576,-0.39244843,-0.44125986,0.39646253,0.49565536,0.29231194,-0.3306026,-0.030464003,-0.09956087,-0.3503921,-0.0996673,0.29543847,-0.24324301,0.52235955,-0.04856012,0.20684044,0.44267532,-0.24354137,0.22246686,0.12813735,-0.04707052,0.0023366127,-0.11463188,-0.36129594,0.19419172,-0.52273226,0.3520684,-0.3227227,0.69020087,-0.026181493,-0.63495654,0.3847704,-0.47811392,0.06902576,0.018239766,0.48881564,0.64870065,0.4199981,0.19489887,0.61941594,-0.14896615,-0.040369965,-0.16647212,-0.16358553,0.0897321,-0.14825583,0.22088994,-0.45764428,0.07852067,-0.0077401143,0.038417608,-0.16318202,0.56710064,-0.48519763,-0.2650789,0.18303128,0.79821384,-0.22912054,-0.114347115,0.8338374,1.2318037,0.99106216,-0.025140971,0.91941607,0.13907251,-0.17813429,0.18312073,-0.21302816,-0.6161994,0.23742194,0.35158992,0.07376252,0.39321524,0.19547746,-0.07192069,0.20766963,-0.36057782,-0.015472332,-0.25956467,0.09430406,0.3192679,-0.0024790275,-0.27809432,-0.29222992,0.022718042,-0.086860254,0.20135579,0.15950021,-0.43146476,0.25765115,0.13707401,1.4519026,-0.12210107,-0.001337261,0.063940145,0.7136326,0.18940651,-0.02763425,0.16987893,0.28492847,0.33211908,-0.020482507,-0.4855273,0.18969999,-0.39755267,-0.6287161,0.026556594,-0.46903476,-0.21690552,0.123989984,-0.50032705,-0.15169494,-0.10853334,-0.2459458,0.33042914,-2.9848142,-0.08701607,-0.09629272,0.36936194,-0.23877147,-0.32237536,-0.21882604,-0.5732067,0.5009377,0.28246152,0.38365275,-0.5730297,0.55285186,0.3708594,-0.56308293,0.02802541,-0.57064414,-0.07617708,-0.025395572,0.4771982,-0.060294162,0.09682933,0.27998903,0.111435905,0.61517256,0.13046762,0.17236507,0.31283447,0.50272065,-0.050356124,0.45432988,-0.044652104,0.40922076,-0.48836705,-0.06417852,0.3213031,-0.44920102,0.46767515,-0.15563901,0.2586148,0.5356425,-0.5274728,-0.8259983,-0.6407584,-0.23930547,1.1938299,-0.274107,-0.48623458,0.08697243,-0.30814663,-0.24344698,-0.21049525,0.5699163,-0.10195173,-0.035888154,-0.5816617,-0.04406854,-0.20793399,0.09453404,-0.14410503,0.2077103,-0.33886656,0.849227,-0.05208808,0.6723277,0.035459265,0.29445872,-0.33027285,-0.47864628,0.05566034,0.7629407,0.42653728,-0.045109715,-0.15472963,-0.28304473,-0.29242843,-0.16395037,0.17419767,0.79589784,0.49723142,0.024759704,-0.015560607,0.32045698,-0.050208684,0.049975015,-0.2836974,-0.2867982,-0.27559337,0.018150087,0.35884792,0.42862743,-0.15974583,0.36881235,-0.14465307,0.3068892,-0.19890103,-0.4128997,0.24481286,1.0994794,-0.19813931,-0.12810424,0.46369264,0.59947765,-0.24746922,0.41282997,-0.7646799,-0.351924,0.45589212,-0.17327544,-0.44523573,0.20585372,-0.28952822,-0.02109499,-0.75803554,0.29095808,-0.4667609,-0.52301306,-0.5141014,-0.19958523,-3.0359654,0.05024809,-0.1848717,-0.1396675,-0.33013448,-0.31949458,0.12367129,-0.57482153,-0.5278558,0.15999794,0.13877462,0.6474853,-0.15544239,0.07305356,-0.29150528,-0.21399944,-0.43776354,0.32321796,0.10655097,0.30936566,-0.36390516,-0.34982273,-0.009021987,-0.0066979784,-0.33515453,0.03686211,-0.58724433,-0.3803566,-0.07457895,-0.29166606,-0.16924436,0.5575114,-0.29771543,0.06520177,-0.16610684,0.059730645,-0.07451731,0.25976926,0.14830442,0.0797276,0.05598988,-0.13542208,0.080633916,-0.40852696,0.49782732,0.115153335,0.48393673,0.5619036,-0.18399644,0.12578385,0.50704414,0.4767668,-0.009462823,0.8923654,0.20431638,-0.21323779,0.386401,-0.097373724,-0.23387294,-0.6669566,-0.07399019,0.027225744,-0.32423717,-0.47789246,-0.024648717,-0.297185,-0.9061402,0.43640348,-0.09785394,0.33475885,-0.13909028,0.33365005,0.5003755,-0.08944672,0.14455506,-0.01475226,-0.04475898,-0.49604422,-0.403296,-0.65861845,-0.46245536,0.026779149,0.77314055,-0.19858143,-0.10561003,0.04447105,-0.23544554,0.1550611,0.13066678,0.07467724,0.114655234,0.5240432,-0.16639897,-0.631855,0.6397614,-0.076083906,-0.15021743,-0.42095798,0.39454117,0.5123274,-0.66489613,0.40878004,0.30439782,0.0033318442,-0.38228464,-0.5100842,-0.06210894,-0.19731103,-0.17018557,0.26922005,0.08146756,-0.81237257,0.3566851,0.16741362,-0.27444813,-0.6851123,0.62537354,-0.011988491,-0.10509021,-0.121617794,0.31373525,0.2429014,-0.005763023,-0.065467656,0.24176154,-0.50529927,0.26946378,0.082244344,-0.07831731,0.3425403,-0.20578572,-0.17592356,-0.6086988,0.18257542,-0.49175256,-0.30719003,0.5188224,0.017717209,0.018773124,0.2372743,0.14004049,0.3943687,-0.23543918,0.14063397,0.0022917986,-0.23458956,0.58877134,0.3807295,0.5245875,-0.4738235,0.57039744,0.03852007,-0.20861986,0.33323976,0.14330904,0.27006298,0.10032561,0.44321045,0.1509423,-0.13493145,0.28481406,0.8720717,0.42104277,0.44866046,0.02714083,-0.15057674,0.30554435,-0.076266006,0.08543879,-0.07856392,-0.6970779,-0.050942782,-0.19993792,0.09683479,0.4148841,0.06808053,0.20930664,-0.08701206,-0.058555163,-0.06772346,0.14200012,-0.17701556,-1.1191674,0.24408093,0.13407563,0.89343864,0.39937693,-0.12146617,0.084017254,0.6715742,-0.13050516,0.13329807,0.43836465,0.22192028,-0.5362977,0.5632206,-0.50217324,0.51394075,-0.10714577,0.073163874,0.020647287,0.012540753,0.38303837,0.8412331,-0.29652825,-0.10512773,0.049842022,-0.39249662,0.26984537,-0.26458642,0.32171986,-0.52424335,-0.2314559,0.65312546,0.48276788,0.36853462,-0.011176931,0.008951694,-0.14871141,-0.1701182,0.2700098,0.068713106,0.17471448,-0.11632664,-0.62852526,-0.22148369,0.55051,-0.2491839,0.21347019,0.101938166,-0.39470047,0.39373997,-0.02415652,0.017296502,0.017026981,-0.7546302,0.0869345,-0.114671506,-0.3156271,0.4318317,-0.18429378,0.23996851,0.26189378,-0.16484316,-0.29514226,-0.00054352626,0.18134478,0.42963094,-0.10663442,-0.15671088,-0.56373614,0.013003196,0.08748983,-0.2994643,0.06074409,-0.14612553,0.10350002,-0.5925166,0.32712942,-0.15743576,-0.2478495,-0.08884312,-0.19410324,0.054549806,0.71643764,0.025874326,-0.011603764,-0.1775913,-0.02761164,-0.40367675,-0.23116252,-0.06137072,0.13387804,0.11475178,-0.08082662,-0.08184377,-0.19620825,-0.0074479794,0.42672327,0.09959222,0.47603735,0.31546116,0.16181645,-0.3943686,-0.19015686,0.20169054,0.45084122,-0.0026871094,-0.04538945,-0.20225756,-0.46314472,-0.31753293,0.25871867,-0.09884454,0.31541306,0.19495173,-0.28544405,0.6889077,-0.19228734,1.1768081,0.089280486,-0.25490195,0.14388788,0.6294474,0.099016264,-0.14057228,-0.28174204,0.9319789,0.6105346,0.08635555,-0.017513957,-0.19574726,0.017552275,0.1461825,-0.17744121,-0.22282514,0.0062017953,-0.5753921,-0.11039039,0.051802706,0.32673436,0.12168062,-0.096468054,0.045609135,0.25253192,0.04120228,0.38377625,-0.52988696,-0.302523,0.31377554,0.1359817,-0.09564837,0.17470185,-0.45335168,0.34637564,-0.55653423,0.09893642,-0.32300505,0.10941452,-0.1396014,-0.28906563,0.27832446,0.037257917,0.4186744,-0.24240495,-0.50334084,-0.13510503,0.34958526,0.18607333,0.19892646,0.46982303,-0.13603005,0.116845585,-0.001009111,0.6258268,0.9616837,-0.13596314,-0.096776776,0.19676316,-0.49677888,-0.7342953,0.31612954,-0.38426524,0.30842796,0.06734256,-0.076977395,-0.35719672,0.27384147,0.24797519,-0.0602773,0.09030839,-0.7660645,-0.2370896,0.033665664,-0.39540154,-0.20551209,-0.41756684,0.14548601,0.67672646,-0.35215086,-0.23573422,-0.103202105,0.28113577,-0.19842477,-0.52354544,-0.008343786,-0.3712944,0.23296925,0.006053605,-0.3624662,-0.123714484,0.22655395,-0.53503877,0.24303928,0.076823294,-0.39475733,-0.0012700036,-0.2707395,0.11365471,0.77048683,-0.14698593,-0.010873309,-0.38026708,-0.5185603,-0.78657055,-0.45913962,0.030701134,0.4087961,0.06577206,-0.5276181,0.073982,-0.09904639,-0.17398122,-0.18651022,-0.44804463,0.43122143,0.091448106,0.3621684,-0.1104887,-0.8475433,0.25955543,0.05283708,0.03623461,-0.5265426,0.4606433,-0.122972436,0.96531475,0.12564272,0.18881397,0.11073259,-0.48090166,-0.08426554,-0.17777416,0.0047735744,-0.67783004,0.14795555 -823,0.51466024,-0.078416824,-0.40440667,-0.13466908,-0.27709866,0.046154834,-0.18316779,0.66535884,0.25702536,-0.45838314,-0.07236874,0.09400467,0.07748172,0.48180962,-0.27216738,-0.6357743,0.28193188,0.1687348,-0.4881835,0.75222516,-0.42305756,0.2625197,-0.036332212,0.3062923,0.20291585,0.26149884,0.18860322,-0.04429467,-0.22501372,-0.14217892,0.12552714,0.2386488,-0.4205254,0.24794716,-0.07305523,-0.3134368,-0.12625097,-0.34268925,-0.38474685,-0.9033077,0.24300912,-0.78683937,0.4737717,0.0152843455,-0.38511163,0.2625888,0.30865067,0.25218642,-0.08897778,-0.18005382,0.15873638,-0.058514796,-0.23311652,-0.25455025,-0.07429615,-0.7289795,-0.5583225,-0.006276719,-0.55672514,-0.1529453,-0.28400844,0.15199511,-0.28842342,-0.15261282,-0.015141396,0.45825502,-0.45004955,-0.074961975,0.31607512,0.025554959,0.29222474,-0.76466346,-0.15950267,-0.119389646,0.38062257,-0.029603729,-0.28013104,0.38746879,0.38589635,0.4335915,-0.07780576,-0.18139234,-0.29464504,-0.059569113,0.09510735,0.349115,-0.307807,-0.6349977,-0.09305627,0.014014253,0.32130036,0.028806873,0.32673818,0.03558991,-0.13736436,0.08906564,-0.30774465,0.5367069,0.49990955,-0.26585263,-0.17276178,0.33811378,0.44406635,0.21794449,-0.35256666,-0.006663249,-0.03373614,-0.6251119,-0.12023988,-0.035016343,-0.021550534,0.5166277,-0.2892589,0.20694147,0.67575,-0.16023342,0.018431537,0.2785071,0.111356564,-0.07336455,-0.10818216,-0.14425696,0.22422518,-0.48810944,0.014702723,-0.27032602,0.7070558,0.11135765,-0.62974507,0.29668847,-0.5129122,0.08480306,-0.15139082,0.48686793,0.8019229,0.3776579,0.24500586,0.66069764,-0.12525544,0.030524515,0.0021578441,-0.33712453,0.25840074,-0.3370372,0.13685432,-0.5635812,-0.015673308,0.13033298,-0.1407698,-0.0066369474,0.42935893,-0.6008918,-0.36035717,0.20917346,0.7522692,-0.23911865,-0.26596186,0.8991943,1.0440695,0.8989824,0.074063726,1.0821992,0.09504734,-0.12545766,0.16980012,-0.15569021,-0.5041292,0.37393263,0.23914154,-0.23161481,0.36622497,0.02722146,-0.12062572,0.3708873,-0.2782981,-0.11777597,-0.23955372,0.3043595,-0.02018079,-0.43341506,-0.48398036,-0.3246744,-0.19084947,0.025740776,0.22796851,0.27713442,-0.06660095,0.34370103,-0.16298914,1.3304163,-0.10053937,-0.15373044,0.02878317,0.55688643,0.21062818,-0.14608857,0.15958157,0.2366084,0.2696743,0.17521164,-0.5227562,0.17872092,-0.24516813,-0.64207804,-0.07460597,-0.44500133,-0.1387044,-0.07177176,-0.49135897,-0.0285287,-0.14325118,-0.20657147,0.411112,-2.8259523,-0.22776367,-0.07937692,0.30414522,-0.16740799,-0.30205962,-0.1702459,-0.4347896,0.4590223,0.35959175,0.5070312,-0.66299087,0.4097594,0.3627421,-0.6418549,0.017859317,-0.6598846,-0.049507353,-0.12524891,0.4610222,0.10475501,0.046299413,0.39925134,0.3690149,0.5004281,0.046168227,0.15494624,0.19706884,0.33276036,-0.2547739,0.41781557,-0.086986065,0.5027737,-0.19558781,-0.22518362,0.26186645,-0.46377712,0.24343626,-0.14719234,0.0663367,0.46629518,-0.35214582,-1.01656,-0.5302993,-0.017621366,1.0998199,0.0012146464,-0.5141642,0.12117383,-0.48819005,-0.20945089,0.06228159,0.51148504,-0.031810503,0.06048423,-0.81690156,0.013074527,-0.17980789,-0.16343683,-0.07189092,-0.0025823105,-0.46285284,0.79426235,0.03559187,0.4207594,0.027321156,0.1306276,-0.5169996,-0.5996959,-0.079110466,0.6467103,0.47121128,0.083055034,-0.13958886,-0.19917724,-0.48549572,-0.036837693,0.16556086,0.84080017,0.56601864,-0.06821267,0.08096317,0.2310071,-0.11717299,0.09635333,-0.057671245,-0.35022444,-0.076255545,0.08184653,0.56481564,0.64440733,-0.2157533,0.5433451,-0.08181871,0.31184483,-0.25586608,-0.52579725,0.54303277,0.87505186,-0.2407723,-0.23992044,0.6259463,0.514673,-0.20697674,0.42731556,-0.5482617,-0.4175747,0.4772715,-0.026928421,-0.27092144,0.16195749,-0.3985306,0.073936954,-1.0772175,0.47399804,-0.50029165,-0.5437378,-0.57417285,0.012710929,-3.1116817,0.24766509,-0.28783134,-0.1692617,-0.3146715,-0.13438214,0.11394609,-0.7221469,-0.6125078,0.15650478,-0.01176638,0.804476,-0.18027584,0.04291431,-0.18219599,-0.3609842,-0.16742516,0.19962265,-0.0154963,0.54437315,-0.22367954,-0.39265424,0.016795125,-0.1629842,-0.40652338,0.11418009,-0.73626935,-0.6254684,-0.17465554,-0.4812614,-0.24834329,0.7129351,-0.29422855,0.062925674,-0.31193,0.024665007,-0.19661924,0.3808839,-0.0013542542,0.060933057,0.16829687,-0.035505656,0.10032464,-0.18912974,0.21779957,0.048696317,0.57597816,0.54476684,-0.15557688,0.41659415,0.7085421,0.6433814,-0.066519484,0.9290484,0.41643712,-0.08252597,0.2957651,-0.25130183,-0.13755837,-0.39552578,-0.34361458,0.01899391,-0.26698673,-0.33808038,-0.18413533,-0.46814096,-0.8245713,0.5266998,-0.052953463,0.14864646,-0.18066798,0.30746734,0.51788914,-0.13310535,0.038691465,-0.04661177,-0.19964449,-0.70061743,-0.18059376,-0.55130905,-0.35752964,0.042673144,0.87165654,-0.34275812,0.023668515,0.01511477,-0.16203536,-0.020118194,0.17998937,-0.072494775,-0.07118848,0.29898697,-0.20063135,-0.7322741,0.5386072,-0.3324827,-0.105005585,-0.34542635,0.3459547,0.52225083,-0.49612588,0.5659195,0.57040226,0.10485871,-0.18480578,-0.54954267,-0.15911902,0.04061175,-0.14197122,0.4544643,0.17108862,-0.9118381,0.54526705,0.35748965,-0.4086576,-0.63726515,0.72663075,0.05551823,-0.19322494,0.04293772,0.346146,0.26436916,0.04436717,-0.42340183,0.29308134,-0.5557863,0.18853474,0.12355567,0.07311051,0.33995593,-0.050337676,-0.214248,-0.7370128,-0.0054897116,-0.58314365,-0.30867583,0.06926289,0.042530205,0.1884341,0.10578334,0.16105604,0.30907297,-0.42697626,0.13585946,-0.12905413,-0.40285146,0.4302093,0.48423004,0.5473737,-0.540276,0.6184909,0.11475451,-0.053705037,0.0054783775,0.08411391,0.41360855,0.23252124,0.5870384,0.29206228,-0.03923904,0.09807498,0.8899137,0.19357315,0.42025533,0.07859883,-0.17224362,0.0051055597,-0.035548724,0.36185038,0.052433014,-0.4839687,-0.08808151,-0.3461726,0.19879802,0.44962013,0.10948761,0.18664867,0.10501059,-0.3872123,-0.0601343,0.13369799,0.0629934,-1.6178266,0.60774237,0.3990895,0.77891403,0.47452626,-0.122757144,-0.0060174465,0.78411335,-0.070099436,0.18381485,0.42143238,-0.013833074,-0.43531588,0.59554577,-0.87519634,0.4593695,-0.12380014,-0.061937526,-0.17770965,-0.012891307,0.29706377,0.8576424,-0.1744447,0.13625439,0.10242793,-0.48837978,0.21151437,-0.44816542,0.08887687,-0.45725292,-0.20669569,0.63495857,0.5641731,0.20366932,-0.19813612,0.12172763,0.17626065,-0.09269883,0.22381423,0.015234278,0.1990668,-0.21888238,-0.6601215,-0.14135653,0.44604918,-0.19388571,0.2515094,0.069863796,-0.077167615,0.28592667,-0.06274075,0.023048254,-0.08418059,-0.7634261,-0.02049123,-0.28859186,-0.3477292,0.6336654,-0.39865002,0.28791714,0.27466768,0.06252523,-0.2504784,0.28380674,-0.11046931,0.5173976,-0.20441426,-0.24619693,-0.2602639,0.09459896,0.22559644,-0.28204176,-0.05837468,-0.14019749,0.16702172,-0.4110351,0.44581664,-0.09965715,-0.24262816,-0.15782793,-0.034543082,0.107395165,0.3491968,-0.1606929,-0.123623185,-0.08654422,-0.059597544,-0.19660565,-0.13341388,0.033048175,0.32488808,0.34053266,-0.2428923,-0.20559001,-0.06527107,0.044607952,0.27870294,-0.14322357,0.39421278,0.4806271,0.26127613,-0.30434462,-0.037939865,0.46438405,0.49645784,0.049821276,-0.092495404,-0.44593626,-0.2846406,-0.41548255,0.12320049,-0.08073389,0.2925104,0.1761458,-0.12710355,0.6924591,0.014439211,1.2734733,0.069850974,-0.4088596,0.14943269,0.39509347,0.05811924,-0.14408289,-0.29432318,0.9559272,0.477068,-0.2050508,0.045065816,-0.48463124,0.09336869,0.36342797,-0.18863432,-0.20677081,0.023641655,-0.5785806,-0.31369656,0.3488448,0.28275087,0.079691775,-0.16302559,0.06448802,0.27833298,0.047883905,0.26430315,-0.5847243,-0.24276191,0.2390823,0.3508101,0.06299447,0.08248803,-0.46179405,0.36166456,-0.76349056,0.11490048,-0.26520842,0.2102111,-0.17987204,-0.45877331,0.17891158,-0.008794624,0.43698585,-0.23143044,-0.35925227,-0.14307944,0.3843388,0.20958713,0.08612331,0.42731446,-0.28388247,0.0055752993,0.16535307,0.5222185,0.98988986,-0.25994173,-0.09232697,0.23306936,-0.30793503,-0.9008946,0.3945759,-0.33219236,0.45572382,-0.11447334,-0.23771389,-0.7637098,0.33674657,0.39082366,0.18148944,-0.13107215,-0.5341224,-0.19949618,0.22234756,-0.3878493,-0.3059879,-0.38721767,0.13058554,0.5266043,-0.32297686,-0.25909603,0.0195181,0.3007968,-0.19645551,-0.5555858,0.022817511,-0.32754532,0.26622194,-0.004022667,-0.36981136,-0.21424708,-0.14254418,-0.4179851,0.544749,0.25127017,-0.28673953,0.19341399,-0.38871428,-0.021454912,0.7685115,-0.31633803,0.1496102,-0.48181117,-0.44006366,-0.69287765,-0.45614734,0.12389566,0.17154214,-0.06839407,-0.6343003,-0.08567299,0.07484689,-0.20266122,-0.10681101,-0.28804466,0.4690006,0.10958385,0.09685474,-0.048473835,-0.822469,0.20570675,0.21541896,-0.050323863,-0.5504245,0.3444945,-0.1631102,0.9319192,0.16266258,0.120506965,0.20413703,-0.2720075,-0.023984717,-0.058154687,-0.17650715,-0.61008286,0.013557563 -824,0.5287789,-0.16657697,-0.25173578,-0.20929106,-0.1101653,0.1373631,-0.13737078,0.49794167,0.023322208,-0.43438822,-0.095761724,-0.20767201,-0.08029039,0.33834976,-0.1319618,-0.54421955,-0.14260818,-0.015102268,-0.3619578,0.55532193,-0.5093003,0.30658573,-0.009914905,0.38171464,0.085808,0.29247078,0.23255864,-0.032289933,0.056158423,-0.32284406,0.047896963,-0.20496853,-0.86193687,0.22616395,-0.23765492,-0.3178534,-0.002813667,-0.49543503,-0.34583536,-0.7729315,0.28124228,-0.6039077,0.4564647,-0.0012124191,-0.21711297,0.47437558,0.19929574,0.33842653,-0.1382222,0.040975206,0.12967132,-0.11401976,0.07768134,-0.15502211,-0.12321339,-0.43545678,-0.6390039,-0.00990797,-0.43030173,-0.3165328,-0.27600363,0.13351072,-0.3138092,-0.06718931,-0.08403526,0.41314825,-0.39869756,-0.10588891,0.18865217,-0.18816993,0.29516646,-0.54428595,-0.108293734,-0.11187499,0.09973144,0.04482924,0.057441056,0.3655937,0.11044331,0.50340277,0.04360989,-0.24106137,-0.2982162,-0.13083653,-0.015978027,0.5041059,-0.10423659,-0.3002839,-0.14642331,-0.18480304,0.20078322,0.264435,0.059673376,-0.07904984,-0.031957664,0.012941445,-0.26123548,0.3508219,0.56491053,-0.44113547,-0.40079078,0.25049156,0.58763474,0.16283478,-0.082854204,-0.061491214,-0.021715935,-0.401797,-0.17746462,0.19842383,-0.3193912,0.39307323,-0.062867664,0.17733446,0.5388537,-0.22359405,0.13558309,-0.10942992,-0.13335346,0.10677215,-0.35724017,-0.31385133,0.24931867,-0.4054087,0.14903976,-0.40836605,0.82818466,-0.0036192238,-0.7039607,0.36596534,-0.6355702,0.13269314,0.04501411,0.5972728,0.6472665,0.41489056,0.33125418,0.7248907,-0.33343583,-0.07325857,-0.26775953,-0.019603537,0.112413295,-0.11992083,0.21009997,-0.36782694,0.10242308,0.068491414,0.06530579,-0.059355717,0.43674755,-0.49210766,-0.042512923,0.1643243,0.97296727,-0.21437414,0.017793706,0.6737337,1.2605741,1.1066041,-0.025721332,1.0056398,0.24993852,-0.24505278,0.19676645,-0.374672,-0.45859733,0.24910401,0.33314008,0.1453104,0.28700665,0.05176754,-0.09964586,0.38919148,-0.48181105,0.047443133,-0.031805415,0.20012967,0.12456637,0.03131,-0.40478185,-0.23630509,0.07914222,-0.06771314,0.23247518,0.243643,-0.44069746,0.12614688,-0.07149102,1.5089748,-0.05332458,0.25135586,0.21425197,0.49740982,0.15792452,-0.11526727,0.11445236,0.24739315,0.2497668,0.019894293,-0.65409726,0.3128247,-0.28179303,-0.5317055,-0.10074662,-0.4011875,-0.04747491,-0.052682716,-0.4670941,-0.057901748,-0.119471245,-0.4349229,0.4067532,-2.7644212,-0.18221693,-0.06426754,0.3137662,-0.43630695,-0.3214459,-0.0733373,-0.44714615,0.65619856,0.3433467,0.3600379,-0.54723865,0.5369893,0.49438223,-0.3973766,-0.104197025,-0.59391934,-0.02659606,-0.08129014,0.36224332,0.05305583,-0.101798765,-0.11225844,0.21701555,0.5936442,0.1952002,0.020788822,0.2162683,0.31919962,-0.107925765,0.5126105,-0.00801989,0.33264646,-0.3306202,-0.09379434,0.39626998,-0.52267486,0.13219802,-0.23985203,0.20457585,0.26108757,-0.37671927,-0.7890892,-0.6636872,-0.5447921,1.1534451,-0.2336448,-0.5449258,0.29613787,-0.24897572,-0.05738266,-0.06345341,0.6167112,-0.23001559,-0.006485094,-0.5795426,0.07523566,-0.13906096,0.25380614,0.00674639,0.12483933,-0.6026866,0.8279527,-0.14927766,0.47333163,0.15688594,0.34444094,-0.264048,-0.44750947,0.045915384,0.8630332,0.4089126,0.01584807,-0.12229895,-0.20915692,-0.21783376,-0.15772732,0.09861476,0.6149858,0.69451135,0.043165985,-0.052426457,0.18748198,-0.25059527,0.011577517,-0.11322279,-0.3151982,-0.13531944,0.0031650749,0.65175766,0.4320492,-0.058981128,0.34341478,-0.13711473,0.31076506,-0.30979612,-0.29206172,0.44040886,0.9552517,-0.1105671,-0.046521302,0.5027312,0.53454906,-0.17846404,0.5008406,-0.86295265,-0.4278254,0.5493045,-0.20792641,-0.5084384,0.043298673,-0.2718716,-0.05655126,-0.76536083,0.120604835,-0.37528205,-0.36364666,-0.5535611,-0.31933898,-3.1460173,0.03585138,-0.010204613,-0.10425753,-0.15311913,-0.07368277,0.24538873,-0.5390294,-0.47237256,0.08134277,0.06210078,0.6281463,-0.048420075,0.117630735,-0.3462822,-0.23345123,-0.55381936,0.1956861,0.02948308,0.33034652,0.08224111,-0.16552015,0.06851341,-0.12283255,-0.5236339,0.056991525,-0.38496098,-0.3137961,-0.31997004,-0.43529242,-0.34212667,0.6131384,-0.39039913,0.1520727,-0.18248954,0.00015371187,-0.024958534,0.4348674,0.25082272,0.22971812,0.09559829,-0.14186876,-0.065896176,-0.36618468,0.29235896,0.18641792,0.25543234,0.48013043,-0.27467233,0.09603809,0.38869953,0.5051719,-0.022287203,0.77128804,0.42850828,-0.03176104,0.3884489,-0.3470262,-0.06610765,-0.43730304,-0.28920034,-0.021448387,-0.25710946,-0.54141027,-0.20326164,-0.32522014,-0.793593,0.3046722,-0.058294814,0.28839442,-0.037445754,0.2681434,0.42995057,-0.1841055,0.018258061,0.021401823,-0.073659666,-0.44986483,-0.39920622,-0.60953856,-0.40529993,0.08581734,0.7649547,-0.060261033,-0.085943855,0.060023207,-0.0325028,0.013063704,0.008824289,0.034620576,-0.06440044,0.25470325,0.10292793,-0.6157552,0.4951271,-0.05009975,-0.23830129,-0.56275356,0.33385855,0.6498361,-0.47555137,0.40374058,0.22857706,0.20915772,-0.12577346,-0.56048757,-0.0008510138,0.033009887,-0.19666718,0.25765175,0.029478695,-0.86160195,0.44377038,0.06609037,-0.17966314,-0.77194035,0.43628365,-0.06268096,-0.37835774,-0.21748471,0.33080104,0.38063097,0.055631578,-0.020439481,0.32367736,-0.6565421,0.17405517,0.23907427,0.1133784,0.6027876,-0.18327613,0.054933242,-0.5946713,-0.006368088,-0.5550381,-0.36221024,0.23640142,0.23381226,-0.0031541544,0.4410181,0.09381736,0.3959364,-0.08263988,0.19678195,-0.032181323,-0.1852,0.4688231,0.44460955,0.46282938,-0.3142744,0.5993231,0.09618716,-0.10139419,0.05625685,-0.024029756,0.39747092,-0.036301877,0.2994923,-0.17839627,-0.19541346,0.15376507,0.46102425,0.22117534,0.39569142,0.07225498,-0.2058293,0.3512547,-0.052904535,0.05451432,-0.040691618,-0.56915003,0.04981432,-0.06201584,0.08223132,0.50481427,0.22169876,0.34761134,0.0033802178,-0.1231414,0.10459799,0.26449636,-0.51794994,-1.1143551,0.33757597,0.107294045,0.8265968,0.6645889,-0.07959913,0.10336452,0.6225367,-0.08252986,0.04646272,0.36423373,0.2700519,-0.42320198,0.650482,-0.76855075,0.4668184,-0.051301636,-0.04771923,-0.03604263,0.096924625,0.5594991,0.70238256,-0.1982385,-0.052902214,-0.09463991,-0.21356817,0.13801643,-0.28483424,0.40021706,-0.5115154,-0.2602962,0.6022313,0.40725932,0.35897273,-0.23278165,-0.12735145,-0.031022957,-0.13479601,0.226016,-0.09760158,-0.10475788,0.024641952,-0.630529,-0.3131368,0.40291864,-0.24180944,0.14281715,0.17384055,-0.2693103,-0.0060248547,-0.09270104,-0.023340633,0.08677713,-0.71350086,0.04558054,-0.24453112,-0.21114948,0.4308731,-0.2693479,0.2552769,0.070462815,-0.04126864,-0.15420547,0.04787624,0.25814208,0.56545895,0.082734585,-0.19869627,-0.5155981,0.057661373,0.057638466,-0.34682485,-0.07736908,-0.1498114,-0.055535458,-0.6712112,0.41197863,-0.19519906,-0.1739727,0.2350279,-0.1844169,-0.072285905,0.66463363,-0.06538535,-0.0010014857,-0.09401572,-0.41362947,-0.14856799,-0.15690954,-0.049444217,0.31397328,-0.08388392,-0.14438947,-0.07677955,-0.08748882,-0.04823179,0.38836527,0.1794192,0.31041738,0.307621,-0.0054497058,-0.31979808,-0.14290668,0.06486877,0.31457585,0.08146671,-0.031751573,-0.21301654,-0.4499971,-0.36018294,0.2581156,-0.100383684,0.2089273,0.057837762,-0.23077056,0.71089983,0.13710243,1.1198577,0.16916206,-0.21837445,0.15572044,0.6000962,-0.010725358,0.05273364,-0.49660444,0.88665265,0.50282276,-0.06190196,-0.13580512,-0.1976516,-0.053020425,0.33234707,-0.20324108,-0.14124067,-0.13257119,-0.7986373,-0.284598,0.14456522,0.3211131,0.059472736,-0.13475093,-0.1253473,0.2808612,0.0033556712,0.62223285,-0.32068923,-0.08290958,0.4548461,0.13143684,-0.015358133,0.098740526,-0.333345,0.33663124,-0.72194356,0.19098404,-0.38829938,0.012693865,-0.15759002,-0.2672847,0.30287144,0.16204406,0.28088334,-0.20076537,-0.40430036,-0.04390112,0.40645376,0.15165949,0.26267463,0.5129258,-0.16205965,0.11798679,-0.06764429,0.54121786,1.228195,-0.256084,0.031318326,0.23321077,-0.49198171,-0.79579526,0.3027068,-0.35354295,0.12270276,-0.10622261,-0.31424454,-0.31695297,0.22792356,0.18258801,-0.10261462,0.22273481,-0.597614,-0.38063034,0.11536801,-0.25782272,-0.16281784,-0.18744911,0.21039477,0.8681057,-0.2554565,-0.14638874,0.030417873,0.3752676,-0.22411285,-0.6756765,0.0772888,-0.40358347,0.21565826,-0.053693354,-0.31525177,-0.08103604,0.17507073,-0.49818626,0.026468536,-0.004288316,-0.35394424,-0.027629588,-0.34935522,0.13575046,0.72998303,0.04121271,0.02839623,-0.61329985,-0.40663132,-0.82942486,-0.42414162,0.3595695,0.12899326,-0.10921504,-0.31428257,0.035399266,-0.2660658,-0.08401736,-0.08902439,-0.51081944,0.23684978,0.21985807,0.4507721,-0.06693638,-0.6080616,0.09376123,0.14427564,-0.23216088,-0.5435735,0.4302731,-0.15659308,0.8090552,0.018689612,-0.0102652935,0.034263548,-0.5239087,0.11737045,-0.22312973,-0.14046887,-0.6890567,0.21208885 -825,0.26456288,-0.094048806,-0.38489822,-0.201336,-0.39499998,-0.03941519,-0.19102111,0.27843046,0.24737045,0.036578704,-0.09830223,0.0077526057,0.026140882,0.28814578,-0.118386544,-0.62671864,-0.055408407,0.012003235,-0.5314812,0.39520583,-0.6298795,0.36649868,-0.18885568,0.28952566,0.07774838,0.43289924,0.1710699,-0.0035251293,-0.090516046,-0.22765276,-0.3288684,0.077605374,-0.3029758,0.00971601,-0.17153242,-0.22105391,0.18188299,-0.39599594,-0.3174066,-0.65197533,0.28921604,-0.8309213,0.5144924,-0.11362548,-0.19998474,-0.11969836,0.33398032,0.30180326,-0.19400035,-0.027863381,0.13459797,-0.23029126,0.06199571,-0.3425356,-0.18852435,-0.4046637,-0.35136512,-0.07234454,-0.6242625,-0.45432466,-0.23001206,0.2247164,-0.4104066,-0.07238867,-0.025824903,0.378273,-0.39563847,-0.019162608,0.22398376,-0.260297,0.23322645,-0.64101225,-0.033658523,-0.041648217,0.42205566,0.039417513,-0.13313842,0.47325864,0.3723235,0.19646807,0.1796395,-0.23773329,-0.32751727,-0.24427693,-0.12921154,0.5062693,-0.282522,-0.41553682,-0.15428136,0.10113963,0.33158806,0.4763625,-0.040909786,-0.11091236,0.059710737,-0.053773813,-0.27276573,0.62937325,0.5944859,-0.23849304,-0.2702203,0.27683204,0.3374338,0.16550119,-0.30194065,-0.075836696,-0.040309094,-0.4150097,-0.13471007,-0.06285691,-0.06670529,0.49522644,-0.10923082,0.19569795,0.8137515,-0.08274207,0.0781021,-0.019569648,-0.0009947792,-0.13220502,-0.28728753,-0.16548982,0.027872456,-0.5483677,0.10598166,-0.1371018,0.68845123,0.14764546,-0.69762474,0.41199487,-0.4868402,0.09575875,-0.036876738,0.5224041,0.6135484,0.45424774,0.46280384,0.7896581,-0.15082149,0.17279007,0.05985952,-0.48054454,0.16642587,-0.21714756,0.21542752,-0.4818819,0.16503029,0.03911984,0.035584483,0.24986945,0.30931598,-0.52294755,0.025201125,0.31812388,0.84990215,-0.2444567,0.112383604,0.666961,1.2202551,0.8291892,-0.077445254,0.76002485,0.3051514,-0.28430817,0.2264423,-0.33363962,-0.54842097,0.14006473,0.33075544,-0.09992554,0.3453335,-0.09504733,-0.15291645,0.34705082,-0.3688523,-0.10042628,-0.08989755,0.29399422,0.1823362,-0.05886325,-0.46280465,-0.2266821,-0.04416791,-0.02295076,0.15616813,0.23877013,-0.3312036,0.3564434,-0.20584168,1.1169808,0.048140366,0.05619738,0.03165566,0.84391266,0.2897474,0.044657458,0.026997354,0.5119489,0.24284413,0.017782638,-0.6183071,0.25458303,-0.3616722,-0.31329867,-0.16044119,-0.34227034,-0.09273209,0.26278624,-0.362557,-0.09161595,-0.042341504,-0.06899479,0.44668308,-3.0743282,-0.3073294,-0.16609736,0.31020853,-0.19476901,-0.16567813,0.11417641,-0.4314158,0.3204395,0.36253732,0.47528034,-0.6124722,0.3733992,0.5426073,-0.4147523,-0.23607667,-0.6345847,-0.05656327,-0.070023045,0.5909671,0.08975084,-0.18234228,-0.06344142,0.11016374,0.774778,0.1617383,0.20204762,0.27640566,0.39188352,-0.03300155,0.46016413,-0.021281974,0.5459746,-0.15632269,-0.12434263,0.14734808,-0.29901728,0.057501633,-0.19079255,0.042598326,0.6171649,-0.38562045,-0.851322,-0.50393283,-0.15002914,0.9817931,-0.21301726,-0.49780387,0.2824314,-0.3134567,-0.15221307,-0.02419793,0.6857749,-0.03370797,0.054163866,-0.5365738,0.1889899,-0.11531271,0.055646658,0.055629082,-0.045642648,-0.3136707,0.6099316,-0.08530811,0.5426045,0.21657619,0.2136413,-0.24973401,-0.24158593,0.011280711,0.48850876,0.3709154,-0.060148437,-0.1357822,-0.18493883,0.10126425,-0.4200799,0.06922091,0.617136,0.7532953,-0.06877019,0.104790054,0.24051692,-0.21150514,0.08455961,-0.06893768,-0.16115102,-0.034464534,0.12641051,0.42620426,0.667564,-0.16799705,0.5556753,-0.09347349,0.22679469,-0.11844873,-0.4831397,0.6571523,0.42953926,-0.17813058,-0.073746376,0.43802664,0.48314857,-0.4346807,0.39837477,-0.73752266,-0.05076364,0.6517969,-0.17793755,-0.5068606,0.161151,-0.18206705,0.04613066,-0.79256666,0.31164727,-0.2705287,-0.6153761,-0.45581612,-0.19854961,-3.82605,0.14995384,-0.29726171,-0.1207494,-0.2425575,-0.079962626,0.39384627,-0.5899102,-0.39347878,0.12849036,0.29000258,0.5619908,-0.04732986,0.025301496,-0.24285449,-0.07975495,-0.16638036,0.16157648,-0.034466077,0.32637683,-0.21413799,-0.2877386,0.005121265,0.016827762,-0.6554485,0.09674632,-0.52645814,-0.33879218,-0.08566247,-0.6322978,-0.21982767,0.681982,-0.17729579,-0.007049898,-0.29627112,0.11314229,-0.24904697,0.20352308,0.040744107,0.16992326,0.0807256,-0.023508446,0.33681816,-0.3838609,0.47498825,-0.17685576,0.38793725,-0.027306322,0.0502452,0.11588515,0.49553066,0.58588165,-0.05660961,0.9684516,0.35535696,-0.23958251,0.29306173,-0.39883962,-0.24976222,-0.514996,-0.47087127,-0.0654278,-0.28577426,-0.43727764,-0.02929874,-0.4032713,-0.7504143,0.5692101,-0.027700245,0.3685351,0.036793254,0.19929631,0.45767015,-0.07227407,-0.017166773,0.055106454,-0.20554855,-0.58861834,-0.07065795,-0.56043094,-0.43475476,0.02660687,0.6458513,-0.2671962,-0.07983007,-0.049296822,-0.32744098,-0.15979664,0.043273013,0.24801548,0.26725587,0.3023328,-0.16483834,-0.61645615,0.22878888,-0.07298692,-0.09802328,-0.6286809,0.114646144,0.69552505,-0.661347,0.5660992,0.36018762,0.18341373,-0.16692717,-0.50343984,-0.19180216,0.08207046,-0.06680905,0.5238694,0.11338683,-0.90625,0.46395922,0.27122006,-0.40573612,-0.52856475,0.35291794,-0.07178839,-0.28612018,-0.09786794,0.2385938,0.312079,-0.14235333,-0.16092917,0.18757315,-0.37291104,0.2765669,0.10854457,-0.0017905576,0.4046872,-0.08348232,-0.2691626,-0.67818785,-0.07367643,-0.5452683,-0.2327341,0.256251,-0.012265633,0.17408514,0.118726805,-0.041668184,0.2760746,-0.22915266,0.1049241,0.075410075,-0.35953856,0.14804046,0.3824857,0.26242667,-0.46654558,0.55230874,0.010040483,-0.11459862,0.090483405,0.014077987,0.35171887,0.016290631,0.48384094,-0.1882064,-0.20028113,0.28161082,0.8730081,0.23893237,0.49670783,0.16137931,-0.050450247,0.40308222,-0.07970213,0.04566001,0.16246569,-0.43972754,-0.069178045,-0.10338549,0.19191687,0.38876635,0.3203636,0.2368754,0.07542569,-0.17431866,0.06627693,0.2099859,-0.18033941,-1.1845338,0.5384029,0.36670092,0.82389647,0.16490558,0.25083202,-0.4181325,0.9036845,-0.18510517,0.011964236,0.50522465,0.15641816,-0.37125254,0.5990478,-0.5680363,0.5814268,-0.0129281515,-0.17475359,0.1162865,0.21214499,0.35144708,0.73956805,-0.28260657,-0.0014620764,0.07592567,-0.2934936,-0.09535759,-0.21578583,-0.06872082,-0.3652064,-0.24764648,0.562212,0.32995376,0.13899052,-0.06561604,-0.09148437,0.10532235,-0.078968406,0.11628647,-0.083828755,-0.050976098,-0.01913869,-0.5811726,-0.24883799,0.4794846,0.08395266,0.19978453,-0.24638627,-0.16084024,0.11746757,-0.24345589,-0.085454784,0.062157035,-0.42260653,0.17440888,-0.052508175,-0.5813318,0.7286145,-0.3110283,0.20814545,0.15140009,0.046982165,0.057369355,0.41208765,0.11564968,0.77383167,-0.2553658,-0.18727013,-0.4508266,-0.0911202,0.20122324,-0.22746423,-0.014743024,-0.36317247,-0.044760913,-0.5084452,0.5562153,-0.26972327,-0.28169027,0.11956209,-0.20817472,0.0546983,0.48071003,-0.17744586,-0.22000872,-0.037355542,-0.048946075,-0.33186302,-0.13917424,-0.25499535,0.2621234,0.23381482,0.04739174,-0.12300069,-0.29659918,-0.12555881,0.57074773,-0.060719777,0.47456858,0.09634558,0.03909105,0.12675762,-0.16046503,0.14572461,0.51505435,0.04974968,0.07197941,-0.33588475,-0.340199,-0.31967798,-0.014970609,0.0018597314,0.15688954,0.09135695,-0.2195176,0.8108932,-0.09605602,1.1666006,-0.041830268,-0.4022339,0.10017002,0.609209,-0.038567003,0.1590474,-0.34203365,1.0148252,0.51303345,-0.108114004,-0.1060635,-0.59412086,0.026018424,0.4208786,-0.3623279,-0.008210952,-0.03701232,-0.5492988,-0.2801798,0.30148688,0.12986767,0.19639824,0.045670662,0.025691016,0.017087204,0.18580341,0.36647764,-0.5172958,-0.109937154,0.31695843,0.2531415,0.0067223865,0.099583305,-0.45451075,0.35442224,-0.53019845,0.121796384,-0.4977748,0.16033934,-0.28549498,-0.38446555,0.12777945,-0.25301355,0.3154955,-0.104818724,-0.30573294,-0.044376995,0.39866427,-0.078510486,0.1455846,0.52401894,-0.23272948,-0.06597846,0.014557698,0.66857624,1.1915867,-0.33035257,-0.008076931,0.21193543,-0.45972368,-0.629168,0.35323578,-0.2218399,-0.09772805,-0.01969458,-0.23495401,-0.46533418,0.25196072,0.118720844,0.06330527,-0.023272863,-0.40835205,-0.42076287,0.22660756,-0.3624566,-0.18566588,-0.19198617,0.45450285,0.6951958,-0.26356,-0.32986578,-0.023024108,0.45254332,-0.092851765,-0.46981582,0.16368881,0.0141090285,0.45125332,0.18629102,-0.3419653,-0.07317476,0.16873913,-0.4375101,0.14117248,0.21221802,-0.42186883,0.25343376,-0.16180232,-0.069054075,0.8784785,-0.25178128,0.026920367,-0.7623077,-0.61785,-0.83503217,-0.5728192,0.07177029,0.27825305,-0.038083673,-0.39865038,0.06967565,0.029135272,-0.11538742,0.013615553,-0.48796892,0.34190598,0.019824479,0.5613101,-0.42261174,-0.7952069,0.08396018,0.17805025,-0.12573576,-0.7130924,0.6763216,-0.15652145,0.82412225,0.14519127,-0.044097725,-0.024872204,-0.20167623,0.09746138,-0.4145465,-0.41046086,-0.8119087,0.070621885 -826,0.5566217,-0.2635126,-0.49485427,-0.15586366,-0.2256692,0.20638353,-0.24861643,0.47290632,0.1915056,-0.7781067,-0.3348341,-0.04185438,0.03676864,0.38677114,-0.23859875,-0.6555465,0.13861391,0.18379545,-0.46438164,0.40058264,-0.42657068,0.28724453,-0.04238665,0.3755245,-0.13462625,0.30360994,0.087647356,-0.07077542,-0.05090477,-0.18253945,-0.12828006,0.29729903,-0.62250775,0.2567587,-0.10532386,-0.30567604,0.14748342,-0.4588506,-0.28838885,-0.66037804,0.094546326,-0.9398051,0.5676394,-0.08477211,-0.32334745,0.08059858,-0.041791186,0.19636822,-0.28878802,0.13233986,-0.1938474,-0.18695985,-0.3117154,-0.2697921,-0.082704395,-0.41170385,-0.45078033,0.08851673,-0.49871746,-0.10656889,-0.23813684,0.144131,-0.28455865,0.080976,-0.101612695,0.51683414,-0.38387993,0.13163617,0.2651506,-0.25763017,0.069827534,-0.66826683,-0.1876387,-0.039004,0.34013432,-0.20435563,-0.3499511,0.0008634512,0.3592563,0.58905977,0.027178498,-0.115534425,-0.18579625,-0.12413417,0.13446528,0.54004025,-0.06518668,-0.53896356,-0.21296388,-0.028860606,0.27417699,0.15603465,0.22156113,-0.16224514,-0.13404891,0.013460983,-0.29069567,0.23537701,0.53699374,-0.40738875,-0.094770364,0.32471296,0.58119637,0.11450943,-0.025270987,0.17925797,0.0458401,-0.4736918,-0.19989358,0.021451276,-0.19858152,0.6127463,-0.12893388,0.3769057,0.48159486,-0.22313097,-0.01130702,0.17519471,0.058376793,-0.074554354,-0.35170886,-0.053347234,0.31621423,-0.39029413,0.011903529,-0.22361559,0.83082145,0.2606444,-0.6312121,0.248696,-0.4338497,-0.05718387,-0.13989276,0.6078871,0.5071786,0.48386523,0.196304,0.746365,-0.50113606,0.09953092,-0.2520619,-0.22933657,-0.17220767,-0.019740788,-0.089479536,-0.35452044,0.18625799,0.13036281,-0.04011834,0.037953623,0.3441297,-0.6165062,-0.030755801,0.11270972,0.65886045,-0.37490353,-0.22734293,0.949606,0.96527493,0.69829464,0.092756584,1.3088088,0.21447508,-0.10024753,0.029823853,-0.023312889,-0.65909153,0.33530352,0.43527353,0.2230251,0.3221424,0.24597289,-0.18730822,0.44539645,-0.2817102,-0.16240853,-0.19575068,0.23971483,0.07090005,-0.014214034,-0.6614648,-0.09673001,-0.08399598,-0.07859777,0.1100377,0.211944,-0.248814,0.4818155,0.08588651,1.3927001,-0.1355649,0.14162916,0.026881557,0.31448576,0.26744145,0.001733365,-0.108212985,0.43392244,0.3171673,0.05654835,-0.6582643,-0.00874544,-0.097327724,-0.57653755,-0.19168207,-0.29790804,-0.1193022,-0.17812599,-0.45675534,-0.09940266,-0.099786155,-0.31625035,0.52023757,-2.5453389,-0.32053906,-0.15766588,0.5993134,-0.32968113,-0.36611798,-0.16578865,-0.341816,0.3199643,0.3322123,0.4618696,-0.4791807,0.45399383,0.43954733,-0.4565266,-0.2681309,-0.65378314,0.10665818,-0.018443704,0.35131356,-0.0009329273,-0.3057509,-0.082824245,-0.13365014,0.59217834,-0.035958137,0.13884218,0.2999875,0.4037731,0.069400735,0.26721394,-0.00405252,0.6595964,-0.37263218,-0.23054272,0.3210888,-0.36092263,0.41003186,-0.06486655,0.19107498,0.44077793,-0.44456312,-0.78720284,-0.77765596,-0.2518087,1.2660611,-0.2502696,-0.4924586,0.13181043,-0.38702202,-0.33783847,-0.007872939,0.48645094,0.039555207,-0.050459918,-0.8090226,0.10252893,-0.113286614,0.23775145,-0.0034585595,-0.0045725843,-0.47008926,0.6637528,-0.18820015,0.5286001,0.2640722,0.3083477,0.046228684,-0.2430164,-0.08519965,1.1093314,0.40005928,0.29472664,-0.24490558,-0.2651959,-0.29951087,0.13891517,0.0538866,0.6480514,0.6655983,0.10307983,0.045903765,0.23336992,0.14387321,0.11369908,-0.2599798,-0.22459468,-0.17868087,0.12133147,0.6352286,0.43209442,-0.25489992,0.4022683,-0.14492081,0.294329,-0.24196829,-0.40151274,0.3973578,0.6893154,-0.3244998,-0.3368277,0.71557134,0.55417645,-0.44812503,0.37385994,-0.78169924,-0.41604668,0.45415694,-0.15346019,-0.3415601,0.23907876,-0.23605765,0.3641046,-0.97899556,0.3286462,-0.3551536,-0.60160327,-0.3824334,-0.119671665,-3.53809,0.34752178,-0.10341929,-0.14945401,-0.09498359,-0.3309023,0.21876425,-0.50435835,-0.49048138,0.24250712,0.007718011,0.70026237,-0.10328613,0.21099776,-0.21485966,-0.29881155,-0.051809423,0.11999829,0.10415467,0.21226004,-0.0937639,-0.41636986,0.08388043,-0.16322081,-0.27350342,0.10570867,-0.639266,-0.5342536,-0.11751747,-0.5128035,-0.16210732,0.56350017,-0.3654224,0.05984309,-0.330421,0.24235518,-0.18245292,0.31341532,-0.17523998,0.17369464,0.06401744,-0.08199635,-0.09700486,-0.32689983,0.24295601,0.085725784,0.12362926,0.4065997,-0.28045517,0.12110877,0.5904662,0.56784225,-0.01893696,0.8566757,0.35764027,-0.06825461,0.3900619,-0.13765998,-0.4325679,-0.4974263,-0.36713517,-0.01924345,-0.505942,-0.36696517,0.07820663,-0.35808834,-0.871468,0.6653645,0.034279548,0.08803756,0.068802394,0.60952175,0.6929022,-0.17413422,-0.11828954,-0.005665944,-0.22311541,-0.5256735,-0.34896007,-0.525701,-0.29534847,-0.0062620686,0.9535623,-0.36247987,0.060272194,0.018967362,-0.1258496,-0.064388424,0.24757624,0.13733095,-0.035086777,0.5000092,-0.08307788,-0.58625674,0.3291283,-0.17991854,-0.48601988,-0.4107048,0.19122536,0.72787505,-0.8916226,0.5400613,0.4879704,0.10477002,0.055080276,-0.46355835,-0.18516651,-0.0033884416,-0.20165235,0.44231078,0.30495232,-0.9720357,0.44441906,0.35916793,-0.08273174,-0.74897677,0.55431795,-0.07509542,-0.26742664,0.026555676,0.3960346,0.098282665,-0.063464135,-0.31923902,-0.053021945,-0.41746515,0.30063975,0.22757936,-0.054169975,0.44451317,-0.29614213,-0.16562718,-0.84982264,-0.22172864,-0.5885201,-0.14875793,0.29677776,0.031657454,0.09618175,0.16782239,0.20223786,0.5148031,-0.6222417,0.028798819,-0.10847517,-0.37670738,0.42522982,0.49693573,0.39972416,-0.31540903,0.63881904,0.01720671,0.004517327,-0.16954398,0.14365241,0.57944864,0.027609257,0.4527615,-0.06430632,-0.18455864,0.1111639,0.9645432,0.07136534,0.57993644,0.21162829,-0.020591088,0.2606933,0.116611116,0.2556023,-0.009907539,-0.47373435,0.06832287,-0.17257176,0.048800036,0.45117134,0.34166887,0.37365377,-0.013236174,-0.2502588,-0.029064242,0.14843625,0.09701676,-1.0285573,0.24830996,0.074348934,0.72468746,0.2332446,0.06669909,-0.03173273,0.50159657,-0.08858511,0.1695539,0.25110814,-0.083897844,-0.40075704,0.35465476,-0.629572,0.484801,-0.20712826,-0.052958146,0.13258402,-0.10066835,0.43977657,1.0659038,-0.14147006,0.04442088,0.07199863,-0.20337814,0.11795141,-0.52179563,-0.1099943,-0.66062826,-0.23905292,0.7117274,0.5280973,0.5703056,-0.26297882,-0.044570748,0.21530178,-0.03504815,0.18393418,0.062381074,0.13100998,0.015465514,-0.566713,-0.27443212,0.56549656,0.21490741,0.103904724,-0.003845169,-0.26234186,0.39728865,-0.10460997,-0.10404229,-0.013143379,-0.49584293,-0.06759943,-0.5162563,-0.6691956,0.24969314,0.03602815,0.10206222,0.2872221,0.024023114,-0.28695622,0.27136308,0.08292714,0.9013248,0.1147031,-0.27582258,-0.5978016,0.20385668,0.42831025,-0.2802014,-0.017113594,-0.31304285,0.16045786,-0.7148336,0.37020683,-0.09041062,-0.22534297,0.21864669,-0.090319544,0.009787897,0.504678,-0.15231544,-0.20005406,0.1239237,-0.23317719,-0.32327503,-0.21077463,-0.2563866,0.2018501,0.1548083,-0.13080344,-0.054969303,-0.1744278,-0.0040334463,0.24442601,0.23059545,0.18880223,0.2920372,0.032879554,-0.2903625,-0.03472646,0.21029614,0.62513196,-0.23164949,-0.1598161,-0.25656417,-0.6305864,-0.37305596,0.119787216,0.06428142,0.22941747,0.17424004,-0.14599861,0.79676396,-0.026863547,0.9510661,0.055061523,-0.40079692,-0.002133718,0.51001793,0.048723478,-0.07417788,-0.37186053,1.0673243,0.48182684,-0.017273473,-0.056263823,-0.4708064,-0.08939798,0.1449911,-0.28907716,-0.19585985,-0.15602805,-0.5981401,-0.32192534,0.1521762,0.23989399,0.1928704,-0.0067956275,0.25485784,0.31230348,0.016759321,0.14634529,-0.75674,-0.06624903,0.31575534,0.25138742,-0.057135556,0.021004558,-0.35556495,0.3594621,-0.78842914,0.055153828,-0.34092653,0.09235497,-0.16199623,-0.3598135,0.19995275,0.07563658,0.37149376,-0.41616657,-0.42679405,-0.24345915,0.44939998,0.08817257,0.0030686306,0.5278361,-0.14934161,-0.017980708,0.03004253,0.64366966,0.9709205,-0.21107318,0.2851897,0.49486822,-0.22589129,-0.5967289,0.15786941,-0.43593147,0.2422185,-0.07349871,-0.119590335,-0.537146,0.309093,0.3642168,-0.01773093,0.029872198,-0.6345402,-0.101254314,0.27366713,-0.33850157,-0.12760177,-0.07089487,0.13247989,0.6816922,-0.19238597,-0.19366394,0.076222904,0.4031328,-0.17016372,-0.5516449,-0.17253274,-0.38661894,0.26127273,0.06940938,-0.29537863,-0.1835405,-0.08974542,-0.37399134,-0.01343673,0.28732762,-0.24570164,0.05403187,-0.3923559,0.092416376,0.7557612,-0.1186376,0.3076762,-0.52809036,-0.4478078,-0.84990335,-0.16572572,0.36598316,0.13828422,0.12849398,-0.49939245,0.10255924,-0.08492219,-0.14179176,-0.082247734,-0.42317083,0.5803899,0.16549928,0.5272172,-0.08875212,-1.0101737,0.21354127,0.13765925,-0.42701003,-0.47680086,0.40193456,-0.13112146,0.9316264,0.053507593,0.07981859,0.211033,-0.7239663,0.01184412,-0.23452313,-0.043126877,-0.7739723,0.0059659663 -827,0.47876438,-0.18223588,-0.491929,-0.17565392,-0.31188107,-0.07411852,-0.09620139,0.62497747,0.27674004,-0.26010495,-0.22490153,-0.14693382,0.096032724,0.3839648,-0.23117307,-0.33327672,-0.13307662,0.1859641,-0.46939284,0.44386667,-0.32632515,0.061695613,-0.06598174,0.5686352,0.23664959,0.31094414,-0.07842199,0.008408317,-0.023050686,-0.1997194,0.02020981,0.33172593,-0.49259514,0.044216894,-0.2493833,-0.4146694,-0.053531434,-0.6547244,-0.5098577,-0.7063784,0.35582367,-0.8073339,0.43324152,0.17828688,-0.2549458,0.32110196,0.21652876,0.41037148,-0.2180298,-0.2592308,0.12920769,0.06680573,-0.01844655,-0.0976882,-0.098843575,-0.2692472,-0.6172676,-0.04399666,-0.24836224,-0.09583827,-0.20803906,0.11337865,-0.18883762,0.14247975,-0.061565913,0.49886197,-0.3784189,0.116191186,0.1649833,-0.16646224,0.22454913,-0.4587372,-0.19757873,-0.07305381,0.33578414,-0.18169403,-0.24830748,0.21005608,0.115357205,0.27580473,-0.2366301,-0.052348394,-0.44079462,-0.07018424,-0.109876975,0.5592538,-0.11341942,-0.46911204,-0.047242753,0.049075928,-0.055736475,0.21160811,0.09271462,-0.15600154,-0.10766317,-0.09332474,-0.12925868,0.47793722,0.45563275,-0.1618212,-0.16186619,0.25912002,0.49091795,0.2310902,-0.22576849,-0.1522115,0.07920348,-0.6082749,-0.077577226,-0.16749851,-0.20539245,0.43838686,-0.015922956,0.35577968,0.5521871,0.029828187,-0.08155257,0.08086646,0.064862475,-0.03919422,-0.38496664,-0.30343848,0.37455592,-0.24511649,0.31092688,0.047535457,0.5729333,0.04785545,-0.8385842,0.31373447,-0.641849,0.09457019,-0.16808377,0.36440057,0.52020437,0.24306844,0.46102226,0.6213861,-0.13845634,0.15097381,-0.020029591,-0.21851943,-0.04880541,-0.08794944,0.06545748,-0.52664024,-0.048575755,0.077852234,-0.2096338,0.29848355,0.2972174,-0.48875505,-0.11776691,0.43085402,0.8957323,-0.21190381,-0.05432489,0.74446553,1.0284207,0.826707,0.07048896,0.89500165,-0.047458664,-0.2154839,0.3293533,-0.25675717,-0.7598864,0.27685335,0.33325437,-0.057656087,0.25131983,0.06927525,0.076144174,0.37566808,-0.3867088,0.05654293,0.018864898,0.041065756,0.34403706,-0.02596752,-0.5570917,-0.28250453,-0.19976027,0.056670092,0.17843863,0.13961568,-0.19531171,0.24453679,-0.044854973,1.8465677,0.08574895,0.035220407,0.2210785,0.58496326,0.21039207,-0.27864102,-0.27500322,0.2666067,0.19554816,0.18972643,-0.41274807,0.30753165,-0.13219415,-0.44825464,-0.08015405,-0.36666277,-0.20871744,-0.07420189,-0.4603459,-0.09610136,-0.14686787,-0.3292876,0.40881914,-3.0735147,-0.06615431,-0.14164196,0.31041035,-0.12305359,-0.31626764,-0.09948989,-0.378604,0.30657285,0.45672962,0.47661364,-0.5917838,0.4334324,0.48881027,-0.6471173,0.014138148,-0.53016704,-0.19370529,0.12606512,0.28668317,0.055808607,0.049660917,-0.06378949,0.29505408,0.27609503,0.119269595,0.069453545,0.25585032,0.3546509,-0.0071099857,0.6079691,-0.1808336,0.34331134,-0.27398205,-0.21098372,0.24290334,-0.4316106,0.18520547,-0.1533967,0.14967933,0.51926076,-0.47602007,-1.054519,-0.5162376,0.018957766,1.0291007,-0.1627682,-0.24422564,0.33676305,-0.73041546,-0.34954083,-0.0014505937,0.5437694,-0.09399006,-0.07314278,-0.8318595,-0.17377223,-0.28167436,0.18584163,0.028332118,-0.16030478,-0.48140338,0.6533927,0.025969861,0.55381405,0.22681616,0.06663253,-0.3808257,-0.35531425,0.0005386082,0.6309481,0.18525685,0.15427707,-0.23665474,-0.24069048,-0.38621548,0.021966819,0.13162185,0.6331422,0.4666188,-0.051106386,0.13591234,0.19369599,-0.0069013974,-0.059366904,-0.11303636,-0.14201397,-0.096324354,-0.024527458,0.5340694,0.7748582,-0.19883603,0.44936305,-0.07602856,0.3584293,-0.17995748,-0.24641539,0.31091243,1.0018367,-0.015118608,-0.4051169,0.7419191,0.6614494,-0.34461233,0.33363116,-0.59960425,-0.13011494,0.22724144,-0.066231444,-0.3809066,0.1782659,-0.2856587,0.12830777,-0.84720516,0.082059115,-0.09559569,-0.39158243,-0.61987686,-0.1731128,-3.0388455,0.13189395,-0.111439556,-0.31272697,-0.050540812,-0.23531672,0.061700225,-0.6340214,-0.76942927,0.21411875,0.05958367,0.71808565,-0.11844084,0.18357159,-0.18238999,-0.18627483,-0.22249049,0.2766967,0.15439613,0.40221235,-0.04487046,-0.50884575,-0.32817265,-0.05272991,-0.38413733,0.10465522,-0.6552613,-0.35733965,-0.0660143,-0.6028208,-0.08872637,0.5645295,-0.27790004,0.02044493,-0.16578147,0.011798041,-0.16620973,0.2136953,0.040405147,0.06845965,0.08381482,0.02266955,0.09218777,-0.22703703,0.41151127,-0.051527016,0.3971554,0.21350288,0.009499247,0.2817387,0.50739765,0.653397,-0.14653759,0.88372624,0.5197557,-0.0221547,0.13283649,-0.21835779,-0.22910342,-0.3791497,-0.12598255,0.020799749,-0.32934254,-0.32027707,-0.013380032,-0.43557295,-0.7030445,0.58808047,-0.06301687,-0.093462355,0.16897112,0.16792573,0.6049789,-0.2897222,-0.016397094,0.044695977,-0.06378116,-0.60798717,-0.2989526,-0.4263386,-0.33084407,-0.062303882,1.1195387,-0.22642271,0.032790657,0.11099616,-0.33602735,0.0013773653,0.275956,0.007985206,0.15771297,0.47220188,-0.06278188,-0.5131545,0.4680635,-0.32632974,-0.2619951,-0.51515836,0.19489346,0.31965834,-0.5514758,0.60409504,0.28049538,0.15339053,-0.28171894,-0.4699302,-0.29117352,-0.059645988,-0.13832761,0.43049464,0.3671091,-0.7836095,0.23360273,0.2559651,-0.08701824,-0.8059698,0.60377604,-0.08973764,-0.45278805,-0.1556743,0.23423216,0.051698063,-0.014012878,-0.101757124,0.1545905,-0.11392975,0.13954058,0.15448783,-0.052898057,0.23890553,-0.316201,0.16309763,-0.7119496,0.11485672,-0.29680106,-0.18818389,0.41275105,0.02410349,0.18740486,0.19337603,0.013275468,0.20065716,-0.24096921,0.010147319,-0.198867,-0.34182853,0.28142133,0.30139375,0.6041974,-0.51957977,0.4976298,-0.00030809926,-0.081302375,0.13328211,-0.065122776,0.34470505,-0.22411187,0.35228962,0.017690722,-0.23934871,0.19855088,0.7002483,0.19371264,0.2778179,0.06614602,0.037633557,0.2670342,-0.09544984,0.14575578,-0.04530897,-0.6455249,0.23647778,-0.37660253,0.09872143,0.3069258,0.08542255,0.14705913,-0.06168317,-0.43979228,0.033002708,0.22710595,0.111570634,-1.2422484,0.37060654,0.14551575,0.9952421,0.4633687,-0.008057954,0.014380505,0.7763711,-0.064583026,0.17506728,0.36360568,0.12645465,-0.32069695,0.49276623,-0.5634917,0.64945644,0.040210146,-0.11421357,-0.06939541,-0.18562292,0.45933965,0.66381556,-0.2268904,-0.0372376,0.17568523,-0.2857184,0.07670697,-0.29385784,0.032795534,-0.7564709,-0.09757973,0.6492675,0.63942236,0.33821347,-0.077596396,0.05244273,0.08128117,-0.01519658,0.11444022,-0.009044765,-0.03206988,0.10223206,-0.7673328,-0.025076417,0.43247062,-0.03166836,0.15634724,-0.028101103,-0.17377523,0.25495908,-0.12185744,-0.20541793,-0.1386383,-0.71380526,0.026822526,-0.31726158,-0.52414954,0.44008255,-0.06434424,0.24061956,0.22981074,0.037033454,-0.26950514,0.4295548,-0.035190728,1.0079161,-0.016313076,-0.013023446,-0.34453124,0.065743476,0.12129091,-0.16000889,-0.22612332,-0.5298492,0.15687165,-0.550837,0.475705,0.05858612,-0.48231924,-0.09739749,-0.011781381,0.22844015,0.5009454,-0.07009672,-0.22950552,-0.23523507,-0.042319354,-0.14455026,-0.061037343,-0.24638136,0.2935096,0.14786153,-0.17290941,-0.06892363,-0.050573286,-0.03475899,0.54105365,-0.088791244,0.61657935,0.3346091,0.21126707,-0.19781302,-0.13402954,0.15419945,0.6939106,-0.20801093,-0.28130755,-0.23661575,-0.32610735,-0.2729326,0.38533723,-0.08362488,0.47402138,0.25771236,-0.05595314,0.58434397,-0.10217608,1.0312098,0.06776124,-0.30372623,0.18508574,0.345393,0.0457912,-0.07562527,-0.36038172,0.7617055,0.42827865,-0.09894499,-0.15995291,-0.27972284,0.23843414,0.048342083,-0.09362193,-0.09519709,-0.08222687,-0.58113265,-0.060315408,0.1779775,0.2140313,0.3683707,-0.19318956,0.18241572,0.17295446,-0.041210715,0.18272458,-0.32947475,-0.15273851,0.2835243,0.2262415,0.057756085,0.07074991,-0.5901943,0.34146485,-0.32645944,-0.058555122,-0.4819256,0.23331884,-0.30728137,-0.311794,0.14524965,-0.059117243,0.4378575,-0.34750956,-0.21413377,-0.40202147,0.4718788,0.28593987,-0.0056440784,0.3659918,-0.21830764,0.10376457,-0.0026941162,0.5555793,0.77226424,-0.339014,0.056042906,0.22151041,-0.19951428,-0.38095936,0.18884636,-0.44931924,0.2745108,0.16103145,0.0012170741,-0.6715198,0.2500827,0.17304413,0.006044351,-0.03409829,-0.55303764,-0.18490021,0.25706407,-0.26975664,-0.10749348,-0.4267408,-0.005950556,0.5530242,-0.023663769,-0.18711948,0.1431129,0.14401878,-0.05936202,-0.39576536,0.14051345,-0.517438,0.20014538,-0.13127142,-0.43527257,-0.48813227,-0.026156357,-0.45441312,0.35909632,0.21401633,-0.29626498,0.08078825,-0.36540586,-0.07950383,1.1977997,-0.21439615,0.28266734,-0.3707627,-0.49876234,-0.8560915,-0.26353934,0.35807088,0.03923401,0.008154344,-0.56163466,0.086278275,-0.108215794,-0.39595082,-0.10818862,-0.31450287,0.36723253,0.089552574,0.53103006,-0.080031715,-0.9414148,0.1121714,-0.024894714,-0.39987448,-0.50311506,0.49135917,0.12314187,0.8066031,0.0126914885,0.23559068,0.2255076,-0.352696,-0.11131036,-0.084907584,-0.058914755,-0.6214774,0.15772592 -828,0.54643697,-0.12385285,-0.35530657,-0.1288866,-0.33544445,0.017316934,-0.13600722,0.4826475,0.26161188,-0.43300685,-0.23066317,-0.15849946,0.11002822,0.22149642,-0.18623258,-0.6901322,0.0063298387,0.25784424,-0.44898424,0.5388582,-0.4575489,0.38014907,0.04147782,0.4634411,0.26013845,0.133245,0.107679494,-0.15684667,-0.21645807,-0.3010183,-0.18693513,0.18832289,-0.5833115,-0.008415767,-0.24287233,-0.45570797,0.087360695,-0.37777594,-0.30696473,-0.88660836,0.314464,-0.81589997,0.4742804,0.014894839,-0.39247978,0.43708408,0.1503858,0.27252212,-0.16787641,-0.01666095,0.19438605,-0.29655233,-0.04582261,-0.1662618,-0.18344478,-0.32390505,-0.7453708,-0.05278258,-0.40323392,-0.14416462,-0.33649793,0.19395377,-0.35873756,0.040475406,0.036684927,0.43558976,-0.5192747,0.04385972,0.0838625,-0.056044366,0.4074292,-0.5326877,-0.23536743,-0.15095685,0.1332442,-0.22754717,-0.14354388,0.35263225,0.22119817,0.50261146,0.014685563,-0.17764759,-0.33998218,-0.06175112,0.028248783,0.47660726,-0.14316492,-0.36507553,-0.083679065,-0.26422456,0.22830983,0.27295342,0.14658332,-0.07045869,-0.14182884,0.08726244,-0.28909627,0.3227767,0.4219314,-0.32835135,-0.22772694,0.20609638,0.45293438,0.18082447,-0.17840746,0.007856132,-0.02342559,-0.41538367,-0.14892946,0.13554935,-0.41494668,0.61356264,-0.1742613,0.16811222,0.75254875,-0.2635943,0.06295149,-0.0068427236,0.2362354,-0.0824398,-0.18725412,-0.47588545,0.38042703,-0.6015923,0.2345448,-0.37689173,0.81216615,0.1299464,-0.5323142,0.27983126,-0.5749552,0.101952426,-0.06390608,0.6242888,0.6569721,0.44474158,0.6059986,0.5647041,-0.42343494,0.05765708,0.04888134,-0.25115603,0.06900694,-0.2595201,0.015646007,-0.4128546,-0.029373277,-0.0035128572,-0.12647733,0.13356143,0.49227557,-0.43582186,0.0009606083,0.17871422,0.83791643,-0.33694986,-0.029331561,0.74071467,1.0756986,1.2317961,0.0530216,1.0502932,0.3685158,-0.34654742,0.09789798,-0.1546064,-0.73689336,0.26138178,0.41465905,-0.17754309,0.28719658,0.1126026,-0.01762367,0.3467135,-0.54559124,-0.040252965,-0.091672756,0.19766179,0.034374185,-0.008478564,-0.4621622,-0.4051153,-0.08567135,0.06773742,0.02645183,0.4138902,-0.26522636,0.3998991,0.11394746,1.3880925,0.049002655,-0.05425523,0.11063144,0.5360288,0.1099926,-0.04760021,-0.08213285,0.30042705,0.2889106,0.13059977,-0.61287653,0.0563726,-0.2304153,-0.5215404,-0.15194324,-0.2780417,0.014156242,-0.018743277,-0.44964248,-0.20987205,-0.21583463,-0.24208142,0.29902261,-2.330948,-0.13704364,-0.014176186,0.29469487,-0.051597398,-0.3545804,-0.061174892,-0.6412676,0.45193297,0.3257754,0.41893488,-0.72718126,0.3297796,0.57015765,-0.4576546,-0.033894274,-0.71085995,-0.36991304,-0.08601999,0.23401734,0.01979233,0.0059294244,0.02188657,0.20586398,0.6024098,-0.03814483,0.20763893,0.2792811,0.38851917,-0.06596211,0.5012694,0.12442468,0.37219065,-0.083883986,-0.17733,0.3512908,-0.4351811,0.09632499,-0.07473009,0.08309816,0.5917647,-0.4003237,-0.9147071,-0.69132143,-0.2667497,1.1689402,-0.19969171,-0.4349531,0.30474675,-0.13049427,-0.17285083,-0.10162761,0.4941934,-0.2074772,-0.16749707,-0.76571107,0.08689152,-0.1427281,0.23980048,0.099418335,0.15492493,-0.31689772,0.71631265,-0.12615922,0.38659295,0.2166024,0.13966218,-0.27491787,-0.4630446,0.053604856,0.9059971,0.47320068,0.2121062,-0.41156763,-0.23590912,-0.34396917,-0.13270006,-0.030558832,0.37638855,0.82949865,-0.19245963,0.3109695,0.18571226,-0.0759399,0.0056619355,-0.27897456,-0.3399913,0.003373448,-0.00973327,0.45865005,0.6446257,-0.23929809,0.34985772,-0.07313039,0.35608444,-0.17855237,-0.45436636,0.5050513,0.9985936,-0.105777994,-0.14401963,0.71995354,0.55059236,-0.30510318,0.57466125,-0.71813774,-0.3897936,0.5216614,-0.21642421,-0.4066822,0.22046648,-0.39321646,0.19515231,-0.8054721,0.3088293,-0.30998728,-0.37712204,-0.5955666,-0.121357664,-2.921958,0.20756988,-0.2810849,-0.24440406,-0.18490794,-0.12712494,0.26835242,-0.57458556,-0.62845296,0.087089226,0.19590665,0.75035733,-0.019060267,0.055623434,-0.19284262,-0.4349359,-0.4131469,0.08460066,0.10934689,0.37655538,0.018247226,-0.50743204,0.040399607,-0.10405459,-0.5398143,-0.08249357,-0.5358026,-0.5531975,-0.14982322,-0.503138,-0.47489765,0.64518505,-0.23744322,0.18218456,-0.23088929,-0.19859606,-0.09827092,0.39578125,0.26849362,0.118635535,-0.17072107,0.050194826,0.08271285,-0.26263452,0.30224195,0.06696304,0.057862453,0.3567873,-0.09784564,0.13985313,0.42755535,0.64540505,-0.08029253,0.99675196,0.4279529,-0.07849083,0.37450036,-0.3039023,-0.3155471,-0.728469,-0.33375546,-0.12896572,-0.38479128,-0.31561956,-0.059614666,-0.4470759,-0.8817463,0.5686668,-0.10122129,0.2630104,0.005112167,0.24419406,0.40220705,-0.13014063,-0.14225462,-0.017154884,-0.109467775,-0.4796997,-0.19555204,-0.9120692,-0.46990332,0.10513899,0.912417,-0.1934479,-0.057614293,0.14168148,-0.1434391,0.0503698,0.18508309,-0.026108623,0.045324184,0.6233948,-0.04340531,-0.75642926,0.54691035,0.0959654,-0.1970082,-0.61916465,0.12954491,0.5569342,-0.8080969,0.52447164,0.45320836,0.033417635,0.006611681,-0.50581974,-0.19449173,-0.19069567,-0.23357563,0.41706246,0.23525228,-0.78645504,0.4140212,0.32099465,-0.2628539,-0.69479805,0.47283044,-0.032532953,-0.48419222,0.03503012,0.4017849,0.06105341,0.13560778,-0.16967468,0.21158499,-0.5649877,0.2716575,0.36469883,-0.10974614,0.27996936,-0.1172711,-0.07700697,-0.91420335,0.11978502,-0.4512511,-0.33439973,0.030416556,0.05525303,-0.06652919,0.44378337,0.21462873,0.42378566,-0.18286228,0.027394557,-0.15836348,-0.27208838,0.3302479,0.49469158,0.50597537,-0.2968167,0.7034286,0.04443674,-0.2965848,-0.23048131,0.015364041,0.47590813,0.033136822,0.44334075,0.094507985,-0.38210008,0.26787055,0.6428425,0.27168044,0.56438583,0.03486294,-0.052402664,0.31765303,0.18691197,0.25309426,-0.021681882,-0.4041581,0.07265676,-0.28173837,-0.00082768203,0.67209816,0.07096968,0.3327482,-0.099895,-0.1784837,0.06337019,0.106242865,-0.18175848,-1.3369062,0.25689137,0.191768,0.8470448,0.6484141,-0.036681794,0.053013172,0.6046168,-0.394496,0.00516787,0.3595732,0.13448158,-0.5036003,0.7141711,-0.7263513,0.3766915,-0.19825855,-0.029439835,-0.022877185,-0.09859301,0.4694551,0.81857,-0.15338324,-0.09558703,-0.021651864,-0.38423213,0.28445432,-0.4570244,0.032742493,-0.5592807,-0.21191566,0.71835047,0.46098194,0.27577457,-0.25142318,0.1258704,0.017538596,-0.19716834,0.2515882,0.079067275,0.08421299,-0.071054235,-0.5377699,-0.21989599,0.6280154,-0.18762307,0.105168454,0.0053507825,-0.17723867,0.11781541,-0.073994994,-0.060678102,0.019995935,-0.77913207,-0.16698869,-0.33279338,-0.31950104,0.56305146,-0.0027269283,0.2608537,0.26328692,0.087887056,-0.41040233,0.21122466,0.38604638,0.45317274,0.0499161,-0.15433301,-0.26145503,0.26930633,0.20842189,-0.1619168,-0.10331441,-0.089526795,-0.0049479483,-0.43913758,0.48498344,-0.14411242,-0.1352727,0.02329553,-0.18973422,0.013031805,0.521592,-0.18450099,-0.13225554,-0.14324659,-0.13971648,-0.18614931,-0.16610645,-0.14506121,0.20440865,0.052441232,-0.15596841,-0.14247985,-0.033063583,-0.07970905,0.4484616,-0.11925158,0.34367856,0.4292352,-0.07914814,-0.4423764,-0.12927128,0.083912134,0.51196784,-0.090727255,-0.108296596,-0.33147132,-0.5004543,-0.29468247,0.2619986,-0.20017196,0.35959095,0.07721696,-0.26227537,0.9623578,0.068032645,0.9587101,0.022869598,-0.44419545,0.12695572,0.5087237,-0.18515907,-0.031664014,-0.357099,0.96079624,0.35975924,-0.23448196,-0.17191921,-0.32917148,0.043494917,0.26517177,-0.1446279,-0.23084001,-0.043659315,-0.6831817,-0.30481973,0.25922173,0.3300148,0.047806263,-0.0958859,0.10638562,0.28266746,0.15925832,0.4426533,-0.5434632,-0.12134402,0.38372105,0.15114494,0.06904211,0.26116008,-0.30779496,0.40851307,-0.43131134,0.012225393,-0.31654125,0.12627035,-0.2479151,-0.45579034,0.30268288,0.27058172,0.33101243,-0.30160853,-0.39284325,-0.29818347,0.3906848,-0.0007582823,0.1542124,0.49851927,-0.3409072,0.12238469,0.006254093,0.484574,1.196656,-0.18469034,0.0014105876,0.3138142,-0.52092725,-0.6177797,0.42843083,-0.27936834,-0.023260422,0.044930812,-0.24967271,-0.67126286,0.14646748,0.17532654,-0.023639647,0.25600353,-0.47601998,-0.2446659,0.3335368,-0.33775792,-0.27532005,-0.23796898,0.16363375,0.54361904,-0.3308564,-0.23332097,0.05382123,0.20354429,-0.24301116,-0.50610834,-0.09423717,-0.43015465,0.53165656,0.15299001,-0.3676397,0.1101227,0.16852376,-0.4243511,-0.037679173,0.2740712,-0.35560125,0.095990315,-0.47276866,0.105706915,0.94231623,-0.10451182,0.05437055,-0.5260674,-0.47331774,-0.8530933,-0.41452536,0.6342898,0.226122,0.061384298,-0.55373794,-0.032924294,-0.12951052,-0.03688928,0.021673901,-0.46551672,0.446879,0.2966143,0.2501926,0.0015987594,-0.8089186,0.014331385,0.043485533,-0.28121156,-0.5012971,0.51960737,-0.1151674,0.7964476,0.15078205,0.068708055,0.21482521,-0.37386268,0.08624579,-0.15276909,-0.16822895,-0.60752404,0.0069794934 -829,0.39844248,-0.044501368,-0.6767394,0.010239516,-0.39041153,0.17572825,-0.16945031,0.5264071,0.37180108,-0.37153906,-0.2360692,0.10268749,-0.1962977,0.43095148,-0.16732086,-0.59865063,-0.08127805,0.18793216,-0.54066217,0.9016613,-0.13826221,0.32983583,-0.070759244,0.46611232,0.2988366,0.36163995,0.09974864,0.055326305,-0.18420322,-0.41145724,-0.10212536,0.07729633,-0.53437424,0.40170133,-0.2793048,-0.2553028,-0.13553473,-0.44958988,-0.25473675,-0.7356559,0.3221684,-0.78765553,0.43561175,-0.10281999,-0.22397074,0.3061867,0.22392645,0.14038685,0.058176424,-0.20484422,0.051680293,-0.14255872,-0.106473595,-0.19768143,-0.3018325,-0.47221482,-0.50074756,-0.053753413,-0.48637426,-0.18052687,-0.22309044,0.16826107,-0.3962682,0.03290239,-0.17467324,0.6662753,-0.3405329,0.2163558,0.016235083,-0.2514141,-0.21975301,-0.57241493,-0.30378422,-0.045041826,0.3060603,0.16891249,-0.08778301,0.27343765,-0.010343694,0.10980951,-0.002269323,-0.12816119,-0.2778358,-0.24251641,0.2800727,0.5566791,-0.024162237,-0.37604067,-0.09044234,-0.13006797,0.2814641,-0.12206617,0.3011812,-0.14606652,-0.08551152,-0.27141428,-0.26002482,0.25513172,0.2942756,-0.19536504,-0.19421792,0.3059737,0.369737,0.4035791,-0.43709686,-0.15980117,-0.037317596,-0.33675623,0.009446831,0.096449256,-0.039760325,0.4794312,-0.13591178,0.32363558,0.49055684,0.010983426,0.06657459,0.012229496,0.24549039,0.0036637187,-0.13455209,-0.31189764,0.23631085,-0.430511,0.15787274,-0.19110616,0.78656375,0.12011099,-0.5806596,0.41029522,-0.49851194,-0.0078065787,0.09956878,0.3127902,0.679625,0.5149024,0.011539461,0.552118,-0.12723419,0.080100074,-0.006876338,-0.18322721,-0.12771338,-0.2887565,0.14237484,-0.44323653,0.08656265,0.031540476,0.04512123,0.05530353,0.45322222,-0.3334937,-0.35316703,0.075331256,0.84774196,-0.14038153,-0.10020283,0.81394666,1.0391076,1.0832072,-0.05241287,0.93309176,0.07324822,-0.3136357,-0.12636371,0.039615337,-0.59000516,0.26381075,0.24199373,-0.010209946,0.37229186,-0.10777176,-0.12480486,0.24750453,-0.3356614,-0.014265448,0.0007312802,-0.0073669506,0.23816174,-0.043369338,-0.38839632,-0.3909356,0.03521145,-0.009188693,0.38997272,0.29214257,-0.21680014,0.573568,0.17964366,1.5291717,-0.0769339,0.012218604,0.20307367,0.60862505,0.23808584,-0.26069668,0.10022683,0.2024532,0.36611468,-0.017318249,-0.5538862,0.15452152,-0.36918333,-0.51829374,-0.10462098,-0.45550358,-0.428572,0.11229296,-0.41125482,-0.27662712,-0.041580696,-0.112752214,0.33297765,-2.7336159,-0.020828614,-0.24306515,0.21070546,-0.2144946,-0.28279158,-0.17965876,-0.5451736,0.27906525,0.14940585,0.47527263,-0.41920802,0.4001369,0.5108904,-0.5920306,-0.14930405,-0.38554433,-0.111239396,0.12849638,0.45048273,-0.15722704,0.20224708,-0.07674213,0.19982876,0.40838096,0.05878786,0.09154639,0.47621825,0.3237718,0.035011776,0.4061514,-0.012062637,0.57229286,-0.42825648,-0.017721057,0.40969557,-0.54238117,0.5680101,-0.26780823,0.15212509,0.542084,-0.40529266,-0.8386058,-0.4889816,0.006854979,1.369123,-0.2816092,-0.58607864,0.15330629,-0.33590826,-0.32843164,-0.104855485,0.5365702,-0.12230158,-0.19742829,-0.5354535,-0.00827181,-0.116903335,0.35431096,-0.09197047,-0.14869255,-0.37129515,0.67570275,0.12234545,0.74084854,0.026705356,0.15032856,-0.15894626,-0.32332665,0.09335272,0.60065144,0.3434868,0.17926455,-0.19533181,-0.08657711,-0.45499432,-0.1711738,0.01927963,0.7341219,0.36478317,-0.007273085,0.097348414,0.15058431,0.048740342,0.26464537,-0.16813216,-0.32575417,-0.369407,-0.008840561,0.4594559,0.61287826,-0.11336957,0.4030338,-0.010564135,0.2957039,-0.21283568,-0.32185903,0.49560282,0.8596887,-0.21132821,-0.29471117,0.41115144,0.5941973,-0.28857425,0.33195716,-0.5320337,-0.36728626,0.41224,-0.07801244,-0.36326593,0.14743276,-0.26425108,0.09570419,-0.617411,0.20588925,-0.43000075,-0.521541,-0.4197105,-0.06285111,-2.535553,0.19653003,0.005965948,-0.2560562,-0.47892725,-0.16177177,0.10709739,-0.5664268,-0.59420353,0.14617997,0.14386812,0.67098546,-0.11926671,0.1022533,-0.24737868,-0.48476788,-0.3020086,0.30585235,-0.014072271,0.4286661,-0.29789448,-0.21806087,-0.17248419,-0.17069787,-0.2181183,0.062598616,-0.5747187,-0.4165429,0.009165702,-0.32402822,-0.12311491,0.5468903,-0.3972584,0.11200324,-0.20667213,-0.015184125,-0.2782933,0.049846716,0.01979319,0.14439766,0.07488047,-0.11971469,0.22964859,-0.2551433,0.37569302,0.14506578,0.4928137,0.3851507,-0.032130416,0.18977903,0.3918404,0.56232494,-0.08404667,1.0046769,0.06629085,-0.0804429,0.45309347,-0.15467325,-0.45382273,-0.46689504,0.02153248,0.28315517,-0.25741002,-0.40157744,-0.04742784,-0.30700466,-0.7557574,0.38578466,0.16656177,0.20240006,-0.035629056,0.28742185,0.44639,-0.12510888,-0.030362936,0.07774896,0.030018728,-0.497227,-0.45312193,-0.6410313,-0.4044105,-0.11423133,0.77200866,-0.26155803,-0.038166575,0.12565368,-0.5171009,0.0499165,0.39016092,0.16320269,-0.0071535204,0.5153757,-0.015493354,-0.6908313,0.6251514,-0.32728034,-0.00825713,-0.29657567,0.27392828,0.41209015,-0.6253676,0.4403934,0.30355263,0.038338516,-0.2969926,-0.42036444,-0.11689789,-0.17716892,-0.13289684,0.16706046,0.3893269,-0.7034617,0.2642073,0.0059769154,-0.17311965,-0.66869724,0.42694885,-0.047407206,-0.19423126,-0.14414114,0.44453353,0.15391174,0.03356381,-0.10854716,0.16039771,-0.36158064,0.23157723,0.09382708,-0.06770084,0.040007703,-0.1830068,-0.27149928,-0.60096157,0.2973851,-0.38865444,-0.45534527,0.32287252,0.05594526,0.13515422,0.17959116,0.109245285,0.25699097,-0.30280316,0.11195656,-0.19788915,-0.19106759,0.5107127,0.31939882,0.64646566,-0.49042395,0.6012663,0.088073455,-0.054326456,0.40406844,0.25638768,0.30466038,0.10161199,0.54099834,0.15144484,-0.21078348,0.008026586,0.8580458,0.31162307,0.29888743,-0.015299926,-0.16874823,0.3216313,-0.08240093,0.107384995,-0.026816074,-0.68033856,-0.2869774,-0.2538991,-0.011437899,0.55872655,0.0658545,0.25412723,0.014037178,-0.1844031,0.05929504,0.07317562,-0.17475222,-1.1589068,0.29232457,0.13451275,0.9931687,0.32428965,-0.054453947,-0.021960616,0.7487699,-0.09169547,0.17434429,0.24367967,0.17679071,-0.52187544,0.57495797,-0.4202112,0.45697477,-0.049654834,-0.026212169,0.22251011,-0.0636964,0.4727646,0.8117394,-0.1820855,0.043430652,0.026816647,-0.44325912,-0.04664839,-0.37412417,0.017878298,-0.5459311,-0.2679269,0.57961106,0.5375942,0.3781047,-0.2477754,0.12139774,-0.049350165,-0.15108074,0.11882607,0.10259853,0.148762,-0.05292364,-0.5346502,-0.05343596,0.5923865,-0.30028293,0.09322553,0.1852418,-0.33879125,0.3148206,0.058775105,0.082200564,-0.11755859,-0.682541,0.21156867,-0.29896787,-0.5670823,0.24984677,-0.14742365,0.13889678,0.3302655,-0.016393818,-0.13096306,0.43614405,0.20572457,0.65084594,-0.124898784,-0.0781583,-0.32873347,0.110116884,-0.017366659,-0.27498013,-0.12081526,-0.25441185,0.15506288,-0.3942345,0.3821523,-0.049294554,-0.15675654,-0.20256864,-0.1152141,-0.009063656,0.55965394,0.023808774,-0.06222169,-0.09650911,-0.020038446,-0.23970912,-0.2172224,-0.053020112,0.21489999,0.24160844,-0.2553457,-0.17550263,-0.0915207,0.060836628,0.12875599,-0.24398209,0.515019,0.4166716,-0.012348865,-0.4403318,0.031142367,0.3219247,0.38802788,0.058115356,-0.027329365,-0.33115885,-0.4217706,-0.47656572,0.6715939,-0.04335136,0.34414798,0.15034246,-0.17802133,0.59813344,0.025712462,0.7531092,-0.013495367,-0.31931055,0.30449608,0.5027025,-0.015519211,-0.13758421,-0.3212967,0.89608073,0.28785992,-0.025512954,-0.045256574,-0.46502084,0.038118463,-0.009271363,-0.3293721,-0.100801595,-0.04531,-0.4517298,-0.121630535,-0.014376705,0.16827218,0.26645842,-0.18646568,-0.019220127,0.28379074,0.2311946,0.21362112,-0.6213583,-0.34402257,0.2830488,0.01970447,-0.13241622,0.07586905,-0.56994635,0.31306747,-0.7107906,0.12996951,-0.2705946,0.20490606,-0.40674564,-0.3564588,0.27709422,0.21077181,0.3399372,-0.57785773,-0.2734505,-0.4572398,0.3874367,0.2295163,0.26224363,0.46521303,-0.16215454,0.036647778,0.1630067,0.61276144,0.76291496,-0.07479633,-0.003048594,0.30909592,-0.5039149,-0.50069255,-0.1124484,-0.31308362,0.45091197,0.05744603,-0.035895236,-0.68757606,0.25213152,0.25368664,0.1163413,-0.08894067,-0.6260927,-0.27952927,0.19396551,-0.3170794,-0.2372447,-0.37484887,-0.15478131,0.4255633,-0.146808,-0.32563514,0.014422426,0.18285824,-0.18143408,-0.54547083,-0.085660204,-0.2876201,0.24616553,-0.05626993,-0.30184883,-0.4130346,0.11279547,-0.49957788,0.29192817,0.092984915,-0.3695188,-0.057249006,-0.34326145,0.087418206,0.82666427,-0.21271823,0.14037797,-0.47564065,-0.5680524,-0.6502014,-0.6175759,0.09574875,0.18898283,0.059440143,-0.48017251,-0.075991794,-0.27366108,-0.18573287,-0.044357188,-0.33440134,0.3159743,0.17007293,0.31288937,-0.11104668,-1.0980902,0.27978075,0.009793951,-0.08342747,-0.36487994,0.25594273,-0.15026794,0.9179717,0.10311249,0.0530982,0.17486045,-0.44777682,-0.015381116,-0.12522456,0.0650299,-0.6028293,0.42495447 -830,0.32811433,0.022411274,-0.69021904,0.0064756344,-0.25107765,0.15160863,-0.43367812,0.15901388,-0.07588506,-0.36752993,-0.02768539,0.17649105,-0.15493096,0.113235965,-0.2627414,-0.67686087,-0.0142487865,0.112897076,-0.41283953,0.5506057,-0.45829502,0.41117862,-0.012059794,0.058280595,0.276794,0.17898844,0.28097612,-0.0029743267,-0.31181636,-0.63028777,0.12493161,-0.02469011,-0.5993796,0.2790279,-0.05981602,-0.39694273,0.13911715,-0.37616083,-0.35063827,-0.63993204,0.4121133,-0.7045117,0.537892,0.036853235,-0.24304055,0.19558181,0.050096802,0.18931451,0.009501595,0.05587008,0.2754559,-0.35720998,-0.14287642,-0.27683914,-0.31005824,-0.36185426,-0.5295269,-0.018324612,-0.7147035,-0.016248453,-0.34334093,0.28842768,-0.45231247,0.038936835,-0.41859382,0.45908812,-0.38921112,-0.1063031,-0.055979803,-0.04883277,-0.0026015318,-0.72658783,-0.27885807,-0.06017006,0.0085872505,-0.17438914,-0.034124877,0.22761263,-0.026492719,0.22476739,-0.022747748,-0.10944852,-0.26677138,-0.31668854,0.35186943,0.52147907,0.062703356,-0.1457271,-0.19711874,-0.19821963,0.38530165,0.17708246,0.081641674,-0.12031727,0.054096203,0.04779557,-0.32286474,0.53868496,0.6046126,-0.21686462,0.08594705,0.28563794,0.5061315,0.2753909,-0.15469788,-0.06082896,-0.12245842,-0.34872916,-0.08729148,0.2555809,-0.12285332,0.50241786,-0.12378303,0.32909286,0.5365966,-0.3959831,0.1148076,0.09759935,0.103948005,0.0812804,-0.17416109,-0.2932365,0.32619703,-0.5434649,0.21322414,-0.31759965,0.93489033,-0.015055264,-0.4800362,0.29557288,-0.59255725,0.09049814,0.056076985,0.750365,0.35220733,0.43623975,0.09580803,0.62945426,-0.32071516,-0.039007943,-0.15014371,-0.29976112,-0.1015205,0.10726009,-0.12038299,-0.22583607,-0.14377004,0.011462251,0.097302906,-0.14836198,0.5449045,-0.3230469,-0.08948373,-0.016010748,0.7271897,-0.34821394,0.015023291,0.76735777,1.3045655,1.0510657,0.00057468965,1.0408276,0.014558544,-0.14558595,-0.47059727,0.11965818,-0.66468626,0.34450802,0.4519613,-0.21880534,0.35445037,0.114060566,-0.29987636,0.3646595,-0.35828206,-0.26824814,-0.10195058,0.23830758,-0.06162123,-0.017360257,-0.3502073,-0.17723332,0.28460523,-0.104915746,0.23703124,0.28372172,-0.57453686,0.21228684,0.17063253,0.9156853,-0.22156644,0.09206119,0.16288656,0.37632635,0.15546998,-0.07248923,0.14766341,0.2779125,0.34055567,0.0034048648,-0.7446675,0.108264975,-0.32515827,-0.5083123,-0.16718125,-0.26328433,-0.19442067,-0.018586231,-0.38481325,-0.11424271,-0.05188472,-0.36311814,0.20598346,-2.5039973,-0.06407921,-0.19505684,0.32837218,-0.16492952,-0.33414635,0.09909951,-0.45341322,0.49827576,0.1749367,0.4900435,-0.35203838,0.45885512,0.5692847,-0.29786947,-0.08253812,-0.649685,-0.08979429,-0.059185617,0.57527673,-0.16065457,-0.09391041,-0.063509665,0.08551406,0.5383113,-0.08893208,0.17765735,0.3047167,0.33158097,-0.037491914,0.32724416,0.22474366,0.5079216,-0.4866716,-0.14107858,0.4814673,-0.44717944,0.3416825,-0.17835118,0.14408451,0.39797843,-0.27597392,-0.7245454,-0.38118413,-0.28220642,1.5342841,-0.372749,-0.635957,0.102946356,0.1193521,-0.32188085,-0.08280727,0.35907826,-0.2360635,-0.14114788,-0.54144067,0.023864944,-0.26638657,0.39002985,-0.14169337,0.28416097,-0.41552523,0.57532877,-0.06216679,0.49554852,0.277475,0.4972394,-0.22838186,-0.3138886,0.084449545,0.9866857,0.49777216,0.07491862,-0.31348088,-0.16489506,0.033436343,0.03788303,0.116864175,0.62314737,0.71813744,0.10132299,0.1738015,0.31395486,-0.10114734,0.16072893,-0.097029395,-0.47242415,-0.2958352,0.019261297,0.6941,0.36482456,0.17351954,0.39056313,0.12654337,0.16650352,-0.46250412,-0.34544685,0.4070666,1.013269,-0.22290963,-0.30970466,0.69525963,0.64883393,-0.39819404,0.58105886,-0.6477708,-0.26883304,0.49799743,-0.09072092,-0.36793804,0.15125714,-0.36196205,0.07962105,-0.60248905,0.409603,-0.47216728,-0.77238214,-0.608256,-0.39806777,-2.9192674,0.105792716,-0.31883866,-0.17879272,-0.30136782,-0.33029065,0.24747565,-0.58792853,-0.40538543,-0.010245717,0.12643734,0.599935,-0.1919727,-0.016135685,-0.23733613,-0.29468197,-0.23227297,0.29397297,0.29315704,0.108562574,-0.23993836,-0.22024263,0.052671667,-0.15752527,-0.29544827,-0.081805415,-0.3165291,-0.22068428,-0.06737931,-0.33130136,-0.20446979,0.6295191,-0.4061558,-0.037215866,-0.18608035,0.05356974,-0.030578313,0.31245503,0.10238473,0.29679868,-0.022878526,-0.26739973,0.0064464393,-0.43443733,0.32158646,0.16185108,0.4029802,0.4258059,-0.21844317,-0.060550198,0.41417748,0.37875068,0.15773249,1.0363917,0.1091677,-0.09810213,0.33063808,-0.18854761,-0.43052304,-0.6882733,-0.1865486,0.13277437,-0.3540789,-0.40740484,-0.21522151,-0.1536651,-0.9267942,0.5573762,-0.03464308,0.28571394,-0.16519707,0.5349032,0.21179631,-0.043062337,-0.2101226,0.037863377,-0.022723423,-0.21238978,-0.32309788,-0.8747648,-0.3284151,-0.23646094,0.82173896,-0.14369659,-0.09857396,0.16224886,-0.2794604,0.21298553,0.03680911,0.22141767,0.13966522,0.4018336,0.22138348,-0.5571562,0.42403904,-0.2980023,-0.08215989,-0.46422327,0.0186758,0.79181534,-0.55876565,0.26792508,0.5738019,0.15503103,-0.1872608,-0.51893115,-0.016478041,0.18038934,-0.15205655,0.50791,0.4264156,-0.8251038,0.532298,0.07337119,-0.14358988,-0.5681794,0.5556541,-0.004958704,-0.15818729,-0.1414172,0.4632112,-0.12368771,0.021863183,0.029836755,0.36371332,-0.15861705,0.22486192,0.21584016,-0.19521914,0.14307752,-0.2937399,-0.35830528,-0.47877863,0.21087016,-0.49958712,-0.27075562,0.14302118,-0.18097998,0.056356784,0.40015042,0.010388704,0.4992428,-0.30542833,0.11255769,-0.034570135,-0.2611307,0.56934744,0.5385799,0.54343593,-0.44788817,0.6646865,0.09272982,-0.1579949,0.17561711,0.16108689,0.49572027,-0.0562515,0.4519007,0.09928762,0.101640426,0.25879624,0.7639526,0.41958082,0.5966381,0.10704965,-0.19690259,0.20849451,0.101061985,0.23235932,0.010222962,-0.50683665,-0.1582342,0.077884965,0.11623221,0.6145483,-0.013153624,0.4115044,-0.1975925,-0.03939092,0.16778596,0.08600195,-0.31090453,-1.18518,0.49554384,0.11107529,0.5932221,0.39308378,-0.014223296,0.1859804,0.39615992,-0.24435568,-0.08468112,0.14858483,0.48741797,-0.34934658,0.48421156,-0.48088774,0.42620865,-0.11047962,0.12358609,0.012984147,-0.22876756,0.56069064,0.8793303,-0.18951191,0.11952638,-0.044654887,-0.25243473,0.064994015,-0.25564277,0.33057445,-0.38608503,-0.18718995,0.7865884,0.31661892,0.42585927,-0.1621885,-0.030284861,0.20212851,-0.070721544,0.19630463,0.00077600207,0.1695897,-0.16271386,-0.47167698,-0.32827997,0.49524057,-0.110969864,-0.053476755,-0.028727086,-0.23059723,0.25647485,0.14230686,0.120985046,0.039665367,-0.6836545,0.2593456,-0.3230788,-0.6213375,-0.037494563,-0.34869197,0.18651792,0.2632387,0.074202195,-0.4166549,0.12762398,0.40027523,0.5344781,-0.17744574,-0.08129243,-0.41335818,-0.01861101,0.31899655,-0.2053655,-0.04233229,-0.2835225,0.23628336,-0.71538293,0.3208722,-0.4617223,-0.31793836,0.00473878,-0.1724828,-0.2781424,0.6342923,-0.05415597,-0.13457361,0.26836383,-0.2646976,-0.16421154,-0.27584237,-0.065619916,-0.042360082,0.075068384,-0.27745983,-0.21031523,-0.03627769,0.056572206,0.13033843,0.08559927,0.26029235,0.42085934,0.1903664,-0.5406399,-0.2743359,-0.07254785,0.57741606,-0.113540426,0.080165915,-0.39253992,-0.6026422,-0.20991924,0.57171875,-0.26919177,0.18120703,0.11991927,-0.41342017,0.7106674,0.07038919,0.9742798,-0.0005987516,-0.47569367,-0.09029953,0.79357326,-0.05414261,-0.17664768,-0.32360724,1.1670128,0.30408844,-0.22958826,-0.21033962,-0.4867005,-0.18180619,0.013958349,-0.2706098,-0.25446945,-0.11827762,-0.38009724,-0.07947779,0.108759515,0.3422391,-0.17877664,-0.053726196,0.03174706,0.60780436,0.17641903,0.40150362,-0.6871902,-0.047784116,0.38130012,-0.02383974,-0.19846691,0.21017522,-0.51659036,0.27832678,-0.75792885,0.05218106,-0.2131934,0.17988569,0.012083017,-0.3320925,0.366055,0.043167397,0.3048038,-0.45703968,-0.20342547,-0.11905242,0.24161886,0.2779086,0.25061876,0.68511677,-0.1602917,0.22287409,-0.09210526,0.49894235,0.98054016,-0.057788577,-0.08357441,0.16255021,-0.57832146,-0.7435001,-0.050145112,-0.48485246,0.13456522,-0.15092935,-0.48724762,-0.5843049,0.3391643,0.07557749,-0.050038822,0.020449363,-0.6772678,-0.20156458,0.067755505,-0.21480574,-0.36462653,-0.2225133,0.001063168,0.8045544,-0.24722022,-0.28461093,-0.14573823,0.45382687,-0.22456673,-0.53372467,0.027282171,-0.39496863,0.32774585,-0.09918638,-0.07942497,-0.03215345,0.14709982,-0.40232027,0.16970904,0.24175246,-0.14153963,-0.23726486,0.026005318,0.18098886,0.4279362,-0.21988586,-0.050089248,-0.39853507,-0.60687375,-0.7159604,-0.5440756,0.0054406477,0.07545814,0.12782183,-0.5345547,0.03862667,-0.20776406,-0.03810899,-0.112152845,-0.48983112,0.3796268,0.2222248,0.48138043,-0.119546644,-0.9044307,0.1998792,0.013233721,-0.31362838,-0.48959744,0.48396096,-0.23239261,0.525952,0.12027787,0.0646363,-0.021921545,-0.5693077,0.3358497,-0.21652725,-0.1765615,-0.7163441,0.24966857 -831,0.5750419,-0.29822773,-0.60871166,-0.19025686,-0.26031294,0.36867192,-0.21635354,0.166295,0.04942525,-0.64775664,-0.19790909,-0.30010775,0.068375506,0.42379984,-0.17670664,-0.6106411,-0.10300609,0.062769614,-0.59182113,0.3691419,-0.54216987,0.45895866,0.26644292,0.3342118,0.070514895,0.27470186,0.29738092,-0.12975176,-0.28917694,-0.058200717,-0.19319975,0.08344994,-0.79319376,0.10945574,-0.12211677,-0.41954878,-0.077479824,-0.3783412,-0.1318773,-0.70681137,0.24693976,-0.9270402,0.5016981,-0.028948503,-0.3244287,0.15738957,-0.12938948,0.36997846,-0.32766768,0.19711907,0.21912707,-0.2784643,-0.041242864,-0.28731292,-0.26955536,-0.60798347,-0.6142572,0.19194032,-0.60434824,-0.15803719,-0.15168118,0.117321946,-0.36024502,0.014708562,-0.19308138,0.21643983,-0.43030596,-0.14412607,0.28521737,-0.24249192,0.17494099,-0.39903593,-0.17568919,-0.16951323,0.26360753,-0.20136857,-0.30060938,0.07279261,0.37714416,0.5895626,0.053055055,-0.25215793,-0.28550124,0.025829608,0.21314432,0.57251275,0.061438207,-0.33399242,-0.3217413,-0.0635338,0.29299545,0.18671604,0.15506196,-0.44746128,0.016563343,0.071074,-0.29957813,0.28904286,0.49121195,-0.41320106,-0.2610692,0.45910594,0.5627354,0.08574451,-0.1223654,0.21244867,0.004616114,-0.47672424,-0.19216989,0.4078152,0.07718444,0.75298256,-0.21560873,0.22504722,0.6995286,-0.28120908,0.12651984,-0.21845408,-0.16621804,-0.18736658,-0.07787321,-0.20493713,0.29714224,-0.5196123,0.039922256,-0.42441615,0.80469745,0.22284043,-0.8161483,0.51267207,-0.50826526,0.16736913,-0.02789934,0.69668776,0.72388464,0.38254592,0.15540393,0.7340927,-0.6055278,0.12556502,-0.08844789,-0.4585702,0.037481673,-0.206898,0.008945365,-0.34547406,0.08562113,0.011754138,-0.053854108,-0.10802819,0.50256664,-0.4177301,0.026107516,-0.038463928,0.52895766,-0.45707455,-0.119887926,0.94860893,0.8155147,1.0224702,0.16729793,1.3994291,0.55574435,-0.13640778,0.046856754,-0.26806554,-0.56364524,0.1790197,0.30241475,0.32816252,0.5500647,0.08600492,0.0832487,0.5079642,-0.15489967,0.16583788,-0.11196073,0.036935575,-0.04345313,-0.048139714,-0.4766454,-0.15513454,0.082960464,0.026824066,0.0034573716,0.2965527,-0.1869032,0.61862266,0.21825825,1.5465573,-0.07196156,0.09894601,-0.110824145,0.23182826,0.17921911,-0.26903418,0.014741672,0.28054744,0.4501064,0.013294952,-0.5588869,-0.053883668,-0.15979458,-0.48368463,-0.22239871,-0.311989,-0.03589711,-0.3021448,-0.49435928,0.0017086182,0.1787934,-0.31943315,0.47551933,-2.247286,-0.32949552,-0.19864771,0.37891313,-0.27501518,-0.47289854,-0.24709003,-0.49214977,0.20124719,0.46993423,0.29009777,-0.7310275,0.4008473,0.3059903,-0.26436195,-0.17676386,-0.7471256,0.025962962,-0.194497,0.35909352,-0.09973999,-0.097348996,-0.1168886,0.14662826,0.6371011,-0.19754817,-0.09507696,0.07979105,0.56883895,0.19774994,0.6118221,0.25566167,0.56226504,-0.23441179,-0.059362598,0.47514644,-0.38297114,0.48782128,0.16381046,0.18400894,0.33982256,-0.5726407,-0.7850277,-0.70619136,-0.6045595,1.1791676,-0.38315335,-0.34160572,0.0077290833,0.06653648,-0.43760258,-0.15379985,0.42927,-0.08927912,0.01795071,-0.7795878,-0.121327765,0.09669944,0.13255328,-0.09693503,0.2500553,-0.21850537,0.6366763,-0.15431388,0.49768332,0.44431594,0.22077908,0.019515038,-0.3978929,0.10660461,1.0945708,0.33987042,0.1407236,-0.30852884,-0.29277235,-0.26618472,-0.13333875,0.19508564,0.42417237,0.87636167,0.1313335,0.09929048,0.38784027,-0.044758167,0.08048049,-0.124767914,-0.23518653,-0.07844807,0.0054361564,0.6056629,0.54358375,-0.14103104,0.5022197,-0.33694023,0.16083154,-0.16922936,-0.49830148,0.56746036,0.9087129,-0.073370114,-0.252029,0.4279916,0.4099397,-0.6219015,0.32641038,-0.6671253,-0.17217363,0.6572947,-0.16435345,-0.39181545,0.36145976,-0.34153876,0.2124678,-1.0441844,0.28582805,-0.018559124,-0.4241707,-0.58459777,-0.2922028,-3.6115935,0.2455362,-0.052555975,-0.24628446,-0.081953086,-0.34586987,0.36706644,-0.5080338,-0.5601137,0.017428463,-0.05240423,0.59512967,-0.0035633552,0.23295236,-0.43927917,-0.21570103,-0.32845113,0.21558587,0.15714686,0.22445562,-0.14278044,-0.3456378,0.074457996,-0.44784102,-0.3899184,0.04729157,-0.7030431,-0.713968,-0.18537886,-0.29784232,-0.28998443,0.7273303,-0.31767997,-0.094020225,-0.12559913,-0.120225064,-0.24421656,0.3577045,0.1544548,0.18865551,0.06770874,0.04739225,-0.14416255,-0.459436,0.19625223,0.16170917,0.14740571,0.459503,-0.26855007,0.28941676,0.5785453,0.6546427,-0.003290866,0.6837403,0.23914245,-0.0167091,0.3220878,-0.2893147,-0.25442615,-0.8404929,-0.36414686,-0.31296635,-0.4554586,-0.586996,-0.08912403,-0.29077703,-0.84467465,0.50802934,0.05479685,0.1347781,-0.12778881,0.46530262,0.4134958,-0.17582467,0.024528628,-0.12068597,-0.17417637,-0.5128843,-0.5382319,-0.6888893,-0.7547099,0.17957364,0.97627145,0.018965257,-0.30189732,-0.11338271,-0.30114082,0.18047953,0.16113259,0.18930832,0.22250427,0.3912678,-0.12255786,-0.68923366,0.45858398,-0.11274673,-0.27269465,-0.5175508,0.0023183057,0.8609253,-0.6546687,0.4561483,0.41255498,0.13818641,0.11178122,-0.43014708,-0.3127604,0.10840057,-0.2927794,0.484613,0.09099481,-0.635677,0.45213398,0.30427322,-0.12454205,-0.6442503,0.5356382,0.013133368,-0.023914158,0.14025046,0.31782976,-0.022389691,-0.03385038,-0.27188325,0.15035649,-0.5955192,0.123063885,0.5675937,0.10094959,0.3187508,-0.04496795,-0.24085209,-0.6512531,-0.09435543,-0.5658378,-0.21097258,0.0891575,0.043895762,0.24054368,-0.011246145,0.10646547,0.45656252,-0.37680846,0.0929907,-0.03694988,-0.15482426,0.29082686,0.42241123,0.24737807,-0.5486565,0.721846,0.016060421,0.1611789,-0.12772289,0.04729644,0.45149687,0.44433194,0.26733842,0.03156359,-0.1804239,0.15887675,0.658924,0.31625122,0.6318847,0.4085628,-0.26143977,0.32824248,0.3545613,0.34381086,-0.025245955,-0.16323288,-0.0049602687,0.048489183,0.19471373,0.38321605,-0.036238294,0.40892595,-0.19471721,-0.078117184,0.21547171,0.045341026,-0.11580556,-1.0010196,0.24978288,0.3030555,0.52040124,0.36725992,-0.07110847,0.17310672,0.34320834,-0.46998248,0.05727758,0.281,-0.029704938,-0.56831425,0.51907206,-0.6471229,0.43247604,-0.31040397,0.029831333,-0.016029255,0.12303317,0.5205908,0.97706306,-0.120241724,0.08223407,-0.12490296,-0.13931137,0.15274045,-0.5019459,0.047664557,-0.5140146,-0.3009119,0.7747431,0.3498159,0.41572037,-0.18248422,-0.11146567,0.07976328,-0.1044897,0.18042825,-0.018176079,0.13031492,0.03351854,-0.6448327,-0.37756613,0.5702029,-0.009329625,0.14909445,0.16955592,-0.5656331,0.3535706,-0.107425995,-0.004268161,0.0037521187,-0.7052166,-0.0735193,-0.45061466,-0.69381917,0.27214888,-0.32485124,0.2895305,0.2563192,-0.05358002,-0.3462815,0.17820574,0.21516253,0.8964841,0.0457013,-0.27607316,-0.41631746,0.16842867,0.5211951,-0.39826038,-0.023596676,-0.18075489,0.17373517,-0.54660165,0.4794646,-0.16720673,-0.3401176,0.033406306,-0.02745172,-0.062008176,0.5301739,-0.3090163,-0.11235608,0.19975519,-0.013328178,-0.18016113,-0.07923615,-0.31525534,0.28511852,-0.015897984,-0.09841783,0.18358564,0.013595939,0.049069416,0.3923953,0.22897355,0.29310983,0.37634993,-0.08301812,-0.420234,-0.05207434,0.016928937,0.41970465,0.22329584,-0.31756374,-0.26988187,-0.37958026,-0.22793119,0.26078835,-0.1242715,0.23778686,0.15137215,-0.5406395,0.811053,0.045074265,1.2549216,0.10990076,-0.42810312,0.07134843,0.49776655,0.06526653,-0.054962687,-0.36181682,0.8512272,0.49937662,-0.14838502,-0.20603666,-0.3930964,-0.38084576,0.18182942,-0.37807587,-0.1238125,-0.08644957,-0.64679146,-0.21798816,0.061920803,0.17988454,0.095685445,-0.057172365,0.22861668,0.18064702,-0.009143336,0.4593387,-0.50244755,-0.14964354,0.30401167,0.17313763,-0.13493581,0.08698956,-0.27510732,0.5387572,-0.69411033,0.13092084,-0.43460554,0.088726334,0.16561034,-0.26192316,0.22755113,0.144102,0.28993586,-0.3491261,-0.44247907,-0.36021355,0.6909076,0.23987664,0.39541906,0.6664166,-0.31263193,-0.1429117,0.21224162,0.41716224,1.4865507,-0.11937915,0.14872561,0.45363766,-0.41159248,-0.6198722,0.3467397,-0.3899261,0.36550993,-0.15109906,-0.3978315,-0.44335794,0.28225964,0.14089432,-0.030801306,0.15753531,-0.41304228,-0.28323954,0.5217764,-0.37037155,-0.35224232,-0.33504167,0.3547239,0.65590245,-0.44083112,-0.29412958,-0.09861655,0.23525958,-0.46698967,-0.39847192,-0.0027113557,-0.26225665,0.42535204,0.14301082,-0.24541105,0.13585906,0.2587239,-0.50430006,0.096812606,0.3229062,-0.43885168,0.07300043,-0.28280026,-0.13459526,1.0875059,-0.028201384,0.052350406,-0.7238115,-0.588733,-1.099419,-0.42643887,0.33115053,0.083303936,0.11377888,-0.4502035,0.019546509,-0.025473831,0.01598519,0.10904855,-0.52438056,0.41481823,0.23412177,0.5145727,0.013677342,-0.9033485,-0.029706508,0.08428347,-0.35164514,-0.5364547,0.52962077,-0.14427693,0.6359124,0.14856361,0.2318542,0.12780915,-0.57247955,0.3336206,-0.30532032,-0.06377115,-0.80293983,0.051284622 -832,0.3877919,-0.32045493,-0.29427102,-0.20586132,-0.18842432,-0.22387369,-0.07681875,0.583027,0.21970147,-0.4072994,-0.25000837,-0.1550462,-0.02387731,0.3003195,-0.13069198,-0.67263573,-0.15425783,0.20880279,-0.34655565,0.5220633,-0.4039793,0.18989556,-0.08174436,0.36424467,0.2347566,0.067390814,0.057877056,-0.23661104,0.064086735,-0.106361,-0.24109745,0.4805054,-0.43589833,0.14982884,-0.094905265,-0.26505768,-0.045554504,-0.5408328,-0.2719781,-0.9515326,0.38372695,-0.75192326,0.24435654,0.1989073,-0.2980986,0.39406717,-0.120738275,0.23023906,-0.3254137,0.07134776,0.13841325,-0.106443815,0.022519086,-0.12659547,0.0092558265,-0.23347682,-0.6084939,0.059167888,-0.10563184,-0.18699437,-0.16141853,0.20323928,-0.3532289,-0.10225247,-0.15483437,0.5454091,-0.40678474,0.04658934,0.17384055,-0.15922745,0.3204171,-0.5803684,-0.18741576,-0.16804299,0.23898707,-0.027987134,-0.15457891,0.30445555,0.26086164,0.3637076,-0.09145562,-0.18446292,-0.28520918,0.016594827,0.05204916,0.3577763,-0.14330214,-0.648133,0.039223187,0.009519264,0.029109292,0.13325521,0.047283046,-0.4473322,-0.27221224,0.06883974,-0.26478583,0.3877122,0.4466621,-0.22255124,-0.3194824,0.2771509,0.46922594,0.22174208,-0.050869428,-0.14298707,-0.01190686,-0.70367277,-0.080258235,0.12815447,-0.2603075,0.55061716,-0.21746686,0.23856552,0.6273645,-0.11196931,-0.13306652,-0.023790376,0.11885887,-0.066078536,-0.36772603,-0.32201883,0.3304976,-0.29235026,0.25476316,-0.20364405,0.98864925,0.109301895,-0.859915,0.37040645,-0.52318436,0.31477773,-0.21287936,0.59072846,0.56404376,0.38758177,0.46932486,0.71702635,-0.43679616,0.0014476455,-0.014841855,-0.34134468,0.010722239,-0.07017861,-0.18445747,-0.453728,-0.0103616025,-0.06407161,-0.09969035,0.083523855,0.20137654,-0.59637326,-0.0650971,0.041869245,0.70488137,-0.26869652,-0.033583824,0.7022493,0.8382644,1.1448355,0.103862,0.9972191,0.12247058,-0.14655222,0.33458328,-0.34674776,-0.8206049,0.29070094,0.304105,-0.12664968,0.032169893,-0.044401765,0.031040214,0.3649189,-0.4095408,0.046760302,-0.22528219,0.30903113,0.2024611,-0.115570635,-0.428659,-0.42632324,-0.12855607,0.112307586,-0.053800765,0.18842593,-0.21223491,0.23282051,-0.03691102,1.4525125,0.093768984,0.0114062335,0.108276576,0.4654404,0.13783291,-0.07436127,0.02430726,0.3179183,0.4566313,0.09017478,-0.6767738,0.21297154,-0.24000494,-0.5064069,0.026563283,-0.2790896,0.09075915,0.03346997,-0.35754716,-0.17555393,-0.2021313,-0.33217737,0.5309721,-2.634213,-0.20303807,-0.09382509,0.27157497,-0.17326976,-0.27005288,-0.093266875,-0.43664205,0.36944944,0.31590542,0.4891515,-0.75568545,0.24481773,0.40870592,-0.68319,-0.18118447,-0.7147751,-0.05988799,-0.03409081,0.3523104,0.12009366,0.21170448,0.030488024,-0.049986977,0.42576855,0.094277516,0.08690116,0.23286605,0.3409548,0.09657172,0.39669946,-0.08272065,0.4050267,-0.24959572,-0.12339478,0.17567253,-0.60245144,0.21202022,-0.05587388,0.09483528,0.5587461,-0.4899379,-0.77932733,-0.58252394,-0.28728634,1.2750543,-0.18747059,-0.37674582,0.41715115,-0.23643266,-0.071452506,-0.17658646,0.37690157,-0.23681197,-0.3213272,-0.77579916,-0.03577516,-0.044931073,0.30638254,-0.07078727,-0.20109114,-0.27366072,0.5583829,0.010980846,0.3156306,0.44936973,0.0348364,-0.40106323,-0.5695916,-0.111023106,0.7046241,0.27884498,0.06882183,-0.11395672,-0.1411898,-0.16619888,-0.0752598,0.13305861,0.52818066,0.7811126,-0.15169959,0.09189933,0.37150806,-0.011076518,-0.030632414,-0.13521266,-0.2142875,-0.041488048,-0.047163304,0.5372897,0.7660418,-0.252585,0.26473063,-0.095452115,0.2664463,-0.08212679,-0.29641372,0.534979,1.2896265,-0.14782672,-0.1556902,0.5344932,0.5007315,-0.3798521,0.4237789,-0.5221235,-0.059666608,0.46178925,-0.28477126,-0.46774483,0.03758641,-0.24118243,0.12688096,-0.75195843,0.3154506,-0.11644281,-0.40474895,-0.71427816,-0.009074972,-2.604659,0.15162691,-0.4049152,-0.22659768,-0.21896003,-0.10229635,0.042642806,-0.5294098,-0.54077643,0.10340181,0.23471148,0.585441,-0.05090322,0.12319643,-0.2749086,-0.10963358,-0.43851933,0.022844043,0.013358217,0.36196396,0.20760426,-0.4952747,0.06903873,-0.2126333,-0.37114292,0.14246272,-0.44272906,-0.3372273,-0.022301555,-0.6061583,-0.43042865,0.5686632,-0.17894319,-0.04249799,-0.15724304,0.038098074,-0.11562185,0.3186622,0.16577186,0.12739168,-0.11207254,0.019345481,-0.0130343605,-0.20429172,0.30419353,-0.036731787,0.17680332,0.3881828,-0.18353984,0.13754773,0.45866188,0.723979,-0.11895983,0.8524505,0.6188828,-0.06634804,0.22795552,-0.16834839,-0.2373812,-0.49832395,-0.32552704,0.07775232,-0.34381694,-0.42219397,0.0503788,-0.2541971,-0.74899393,0.41785035,-0.047360238,0.18419345,0.043466724,0.01756881,0.5721051,-0.10374848,0.1099674,-0.012562184,-0.1436731,-0.43072906,-0.19885129,-0.6726793,-0.2830456,0.16210835,0.9300712,-0.22058535,-0.039134577,-0.0387913,-0.29998425,-0.08144501,0.15900476,-0.19930363,0.25968352,0.22963484,-0.039065305,-0.6583506,0.48810384,0.13904826,-0.17460766,-0.3963461,0.24280247,0.5240689,-0.5352627,0.52240235,0.20537567,-0.10052934,-0.15501738,-0.6065273,-0.25879717,-0.07519733,-0.13002601,0.3494926,0.14517236,-0.54090464,0.45307624,0.42405832,-0.21982694,-0.7577396,0.34731495,-0.044838566,-0.43309656,-0.025198221,0.34832424,0.04888773,0.015585134,-0.10293896,0.22002088,-0.48400152,0.20008373,0.18637142,0.08255168,0.18432127,-0.074271925,-0.014607227,-0.88228375,0.017026471,-0.4309723,-0.2212785,0.33478248,0.17440912,0.028424181,0.07091619,-0.037759203,0.3886011,-0.14116001,0.10204939,-0.023830703,-0.049188,0.30696765,0.47552204,0.45538086,-0.40321591,0.5781298,0.17678696,-0.055313803,-0.04293196,0.0028843696,0.2916959,0.12167417,0.38193324,-0.11022311,-0.2572644,0.3026451,0.64112926,0.0956964,0.4438489,-0.047890887,-0.081405014,0.38973987,0.091232546,0.33454946,-0.06883431,-0.43169573,0.021524154,-0.15183128,0.105741754,0.46674237,0.0875503,0.3405525,0.011218016,-0.3918942,-0.043560922,0.30512545,0.02086693,-1.2110641,0.40024248,0.17763239,0.86221707,0.7060613,-0.07524841,0.021228759,0.67576444,-0.17291988,0.13660978,0.34592298,-0.0004650125,-0.5687598,0.6256422,-0.6706266,0.41169465,-0.060765944,0.0033234518,-0.09865671,0.03819014,0.31376442,0.47372642,-0.14191559,-0.06315193,-0.14518501,-0.36092874,0.28364405,-0.43030852,0.16566148,-0.44311193,-0.33460477,0.43014616,0.564972,0.25474387,-0.1707148,-0.019754572,0.21178454,-0.046024825,0.14507595,-0.03438247,0.0012428428,0.024414461,-0.7342638,-0.02325808,0.53109735,-0.05577223,0.037372127,-0.036029212,-0.24755533,0.22810483,-0.35370848,-0.18003327,-0.16303349,-0.67385805,0.06887409,-0.053810026,-0.28920522,0.48975378,-0.20984118,0.24093665,0.24282888,0.052484374,-0.3241434,0.07524335,0.09972135,0.7603142,-0.012926376,-0.16558418,-0.42115325,0.20871228,0.12297751,-0.1256941,-0.10865675,-0.119072035,-0.18600799,-0.34396803,0.52625304,0.103600346,-0.14484096,0.063678354,-0.128139,-0.047750887,0.5759272,-0.12510325,-0.1172559,-0.23421365,-0.17687154,-0.21083,-0.20470794,-0.17503849,0.42133623,0.2705872,-0.0017673866,-0.16086413,-0.14806274,-0.1927117,0.67717624,-0.021231445,0.3311732,0.17807955,0.028755363,-0.38660696,-0.21232532,0.050105877,0.42242038,0.119098574,-0.20569351,-0.22216953,-0.16232274,-0.34572,-0.01186624,-0.1487973,0.5430668,-0.076539405,-0.41076672,0.62903476,0.14047125,1.2522329,0.047410205,-0.27647394,0.10839018,0.5010819,0.033879887,0.022160295,-0.30130866,0.86741954,0.5327057,-0.22569558,-0.13891026,-0.29400972,0.022177907,0.18904355,-0.09481079,-0.095463045,0.02416911,-0.61046004,-0.28621924,0.21345884,0.21898334,0.1433461,-0.060142774,-0.1260177,0.25171122,0.07607806,0.5877789,-0.16779503,-0.07577492,0.10960584,0.21116763,0.18929537,0.05686438,-0.37684566,0.35914627,-0.45533594,0.33465284,-0.2416463,0.26505265,-0.35775694,-0.24228951,0.27244025,0.093368955,0.27918243,-0.3363234,-0.5162978,-0.23081245,0.539347,0.1229573,0.15706638,0.46450302,-0.34574872,0.15386778,0.0068045547,0.50469035,0.8986562,-0.15436147,-0.104979426,0.35923642,-0.37468782,-0.703184,0.42888567,-0.13240403,0.0053237355,-0.1651251,-0.14069541,-0.5246201,0.27642867,0.3275371,0.08917726,0.059615944,-0.67857254,-0.23733735,0.3646065,-0.37687805,-0.18936707,-0.34872216,0.24730743,0.6059711,-0.29116303,-0.5224132,0.04576474,0.043764196,-0.22657865,-0.51577914,-0.06685337,-0.5702472,0.32768345,0.14982282,-0.45656055,-0.1333203,0.07730871,-0.4706032,0.017445385,0.06343749,-0.26989385,0.08083599,-0.10365331,-0.16142677,1.0089059,-0.26013023,0.3648911,-0.5589041,-0.4136832,-0.884872,-0.14738987,0.75938004,0.18372943,-0.00036678405,-0.7141677,0.036621295,0.06486973,-0.41332272,-0.12222535,-0.36564952,0.45727172,0.13374224,0.27363995,-0.02830531,-0.66383463,0.014791085,0.19280455,-0.14586666,-0.47147936,0.42406756,0.07848411,0.8105673,0.0033681656,0.12182109,0.14368488,-0.25872046,0.10224025,-0.15621513,-0.28957605,-0.5445171,-0.010545345 -833,0.20133765,-0.07545114,-0.68413126,-0.12928554,-0.26805356,-0.17584808,-0.17553261,0.6802436,0.31869683,-0.29912886,-0.06696049,-0.10577522,-0.043785375,0.6668185,-0.28592333,-0.6392886,0.09612711,0.030656416,-0.46544883,0.5894194,-0.32279256,0.13545515,-0.15671268,0.5433145,0.25579327,0.27992412,0.046151392,0.050476816,-0.07432424,-0.15929939,0.085323945,0.30412254,-0.4013552,0.021207985,-0.17258857,-0.29587874,0.04309499,-0.43272966,-0.46855247,-0.8438418,0.32156193,-0.7558705,0.48512986,0.0382214,-0.3237962,0.13476077,0.27527362,0.4537479,-0.15367529,-0.27989888,0.15292045,-0.066599526,-0.005737642,-0.15676777,-0.40655696,-0.41623497,-0.5736384,0.048571434,-0.58238244,-0.19295035,-0.23606373,0.12240929,-0.33811718,0.00036409727,0.052012477,0.5110237,-0.47091615,-0.019215263,0.3202329,-0.12431781,0.31235796,-0.50296295,-0.18324447,-0.060406044,0.23982272,-0.13557789,-0.13885386,0.41418517,0.03467403,0.32361713,-0.08461087,-0.2246433,-0.45032597,0.009714897,0.09725181,0.40285873,-0.26199093,-0.4782157,-0.05742096,0.01692105,0.18344545,0.33122027,0.1581514,-0.13619897,-0.1355346,0.2269254,-0.14678866,0.4512695,0.59123,-0.094691426,-0.061364718,0.17674328,0.53692174,0.34045565,-0.24954574,0.024433833,0.0048892405,-0.6496217,-0.23421995,-0.22574475,-0.010645051,0.6550401,-0.05616526,0.30646625,0.62979627,-0.07843837,-0.072242886,0.10654155,0.022969475,0.059724662,-0.30613482,-0.058163088,0.25388893,-0.35718775,0.27524957,-0.10484875,0.5520719,0.13422069,-0.615235,0.32002264,-0.5804483,0.08385856,-0.053872652,0.49184692,0.58199537,0.48633355,0.38502708,0.7179025,-0.3813345,0.15513302,-0.07390526,-0.2733097,0.10236542,-0.3071861,-0.025528807,-0.4268433,-0.16882266,-0.09010252,-0.17281145,0.2786368,0.1487669,-0.5440487,-0.13088956,0.22670385,1.004969,-0.1739304,0.008345576,0.8695927,0.97347504,0.9707165,-0.098319165,0.9342883,-0.07914802,-0.12896222,0.27520198,-0.058563992,-0.8052796,0.2959666,0.30081302,-0.26135412,0.2988362,-0.09081283,0.079974815,0.5334032,-0.49378598,0.023018856,-0.13227405,0.24834622,0.10926676,-0.2533869,-0.40947574,-0.207937,-0.108073205,-0.017747484,0.055885587,0.3302182,-0.09113398,0.43849358,-0.17760111,1.5659605,0.020893238,0.06257881,0.20276079,0.64631975,0.2362984,-0.07547236,-0.18210846,0.19176611,0.10351796,0.24592239,-0.45748284,0.12755479,-0.32321894,-0.4712376,-0.080817476,-0.4081933,-0.1541532,-0.26346275,-0.59494984,-0.13971259,-0.16419882,-0.19293717,0.35325968,-2.8409843,-0.2139814,-0.081418276,0.28846362,-0.19823092,-0.24687687,-0.018342724,-0.36616328,0.5468402,0.28636456,0.5319609,-0.47041985,0.42690784,0.53096527,-0.5652778,-0.12356091,-0.53145874,-0.12831351,0.07816185,0.33067873,0.066947594,-0.011647976,0.09406637,0.27844578,0.41940588,0.03097303,0.040173035,0.20290129,0.42072275,-0.1797997,0.45319998,-0.11466527,0.43818635,-0.3985537,-0.21132992,0.27453855,-0.54141283,0.34814236,-0.10838974,0.16276413,0.33908132,-0.42765373,-1.0116035,-0.5450233,-0.11494211,1.0919865,0.04696665,-0.5179709,0.42029032,-0.6250778,-0.26530674,-0.10189472,0.51606375,-0.11614619,0.21473354,-0.77684623,-0.06313643,-0.30584532,0.08738459,0.020694604,-0.12097038,-0.34920514,0.56643736,0.010466477,0.32640678,0.4698016,0.10832525,-0.38566527,-0.44307584,0.0055387067,0.6628453,0.36893323,0.08990486,-0.19138272,-0.255702,-0.35506132,-0.19819608,0.059032567,0.59053886,0.70497555,-0.15402953,0.09034146,0.29228473,0.033730682,-0.07338765,-0.16348408,-0.36471403,-0.07306548,0.06708645,0.60486233,0.91865563,-0.2538964,0.34907436,0.10217316,0.4398773,-0.19367297,-0.36778927,0.43098375,0.7816902,-0.14916863,-0.38612545,0.6829026,0.529423,-0.30950844,0.42992666,-0.48886746,-0.3098144,0.4845255,-0.050096534,-0.5053369,0.17045179,-0.25812843,0.110364,-0.8548431,0.20202263,-0.34479234,-0.48104954,-0.61011606,-0.1786165,-3.2103734,0.05213125,-0.24712753,-0.24269725,-0.2003581,-0.056662466,0.052331284,-0.66657215,-0.8993943,0.06894557,0.024934752,0.786127,-0.19262174,0.035258822,-0.2321806,-0.33403683,-0.19327655,0.13712193,0.26131922,0.33166412,-0.04507367,-0.51212233,-0.36970183,-0.21287118,-0.6363554,0.108177505,-0.5814295,-0.41667587,-0.23607485,-0.66359526,-0.0007960063,0.72509044,-0.1878478,-0.04934201,-0.18707074,0.10344648,0.036193933,0.26762038,0.20779783,0.14887019,0.10824699,-0.038891308,0.27405494,-0.18594855,0.19323371,0.038228072,0.5724639,0.29056948,0.023481937,0.39236715,0.75164074,0.8143407,-0.18757719,0.8832457,0.4086238,0.009552569,0.25478727,-0.3164086,-0.3818104,-0.4120198,-0.37278828,0.24150005,-0.2892419,-0.32474962,0.0006290399,-0.37691244,-0.8218742,0.7407187,-0.055312976,0.098325215,-0.08029853,-0.04967285,0.37147897,-0.33729416,-0.12944281,0.034130383,0.022137014,-0.6647443,-0.2361975,-0.6141897,-0.5656352,-0.086880445,1.006886,-0.21275035,0.033393886,0.18141314,-0.36739784,0.035516184,0.09459035,0.06352966,0.055396087,0.24040483,0.053031437,-0.67283225,0.38845202,-0.3085212,-0.16036233,-0.5148484,0.2033565,0.6496829,-0.45569083,0.47712782,0.3682466,0.021535583,-0.20520848,-0.6727845,-0.12524782,-0.020952752,-0.042040862,0.39009413,0.19456142,-0.7466617,0.43263686,0.36877236,-0.33027557,-0.64895684,0.5185055,-0.21563156,-0.21686603,-0.11203994,0.38552797,0.13767602,-0.01802649,-0.2838895,0.2980259,-0.23514669,0.09119736,0.37816054,-0.088388436,0.3333804,-0.21591124,-0.035958007,-0.78588253,0.05424019,-0.5062795,-0.26815352,0.32844183,0.012338779,0.05122326,0.029755987,0.1528726,0.21350506,-0.34498942,0.09021522,-0.18244043,-0.36606297,0.3957663,0.44749025,0.71902937,-0.64259267,0.6500397,0.060164258,0.016715812,0.31032503,-0.034395657,0.49692884,-0.24671881,0.4307226,0.114092104,-0.021861415,0.10803909,0.8592418,0.14085798,0.35123953,0.1252055,-0.10526187,0.18748485,0.05078388,0.007450498,0.11694939,-0.6206007,0.21006542,-0.31044686,0.07321387,0.5685449,0.17384264,0.25641885,0.08003771,-0.48625457,0.07476009,0.1883612,0.036090955,-1.5771161,0.5217543,0.24022537,0.82494205,0.32684496,0.27724966,0.033484124,0.79348314,-0.0010996369,0.11193525,0.47447437,0.019073816,-0.53812766,0.54320073,-0.7376661,0.6263447,0.18814391,0.057908203,0.053329542,0.04863701,0.5667873,0.6857157,-0.06497066,0.01950667,0.16980228,-0.32572338,0.17155784,-0.51303154,-0.164586,-0.43233,-0.19734842,0.48854145,0.64552104,0.2419098,-0.18710984,0.052800205,0.25758883,0.009270404,0.26203525,-0.1950964,0.06648706,-0.13176678,-0.5161032,-0.15268539,0.43945444,0.021495122,0.25668043,-0.1325051,-0.008775537,0.30953965,-0.086040944,-0.18025912,-0.16572134,-0.66766137,0.17016652,-0.45287022,-0.5255728,0.34521836,-0.20757715,0.33092815,0.18612178,0.09359182,-0.44002965,0.73036605,-0.31747925,0.77794063,-0.18219215,-0.16723992,-0.14426062,0.1676378,0.25917152,-0.295916,-0.008653902,-0.35135847,0.1668213,-0.29719466,0.38850313,-0.16428629,-0.4340557,-0.08569161,-0.12522855,0.16515893,0.43968436,-0.26700166,-0.15247038,-0.11971578,-0.17047907,-0.1621301,-0.33645555,-0.04840718,0.32339412,0.16232806,-0.09884001,-0.15719087,-0.12878476,0.021178147,0.47583893,-0.25181657,0.36428878,0.38944003,0.06699208,-0.22844124,-0.15960601,0.1671275,0.601397,-0.04078519,-0.13108772,-0.44893157,-0.36650044,-0.45658728,0.34512997,-0.1329528,0.44744503,0.34004435,-0.18117179,0.61323065,0.123504326,1.2701861,0.035224494,-0.381128,0.26600224,0.44294488,0.12123638,-0.087368116,-0.3422751,0.83689606,0.41507736,-0.3888866,-0.14523473,-0.39052165,0.14917485,0.16780373,-0.20353658,-0.17082515,-0.08672344,-0.59458554,-0.08255206,0.33610263,0.29606026,0.2966618,-0.32022592,0.03418384,0.12202915,0.105138615,0.1835399,-0.39436594,-0.119417876,0.45840263,0.21872894,-0.05971888,-0.012133727,-0.6025604,0.37110043,-0.29080725,0.04005277,-0.2841141,0.27921125,-0.34506762,-0.38324922,0.13873205,-0.18569638,0.403987,-0.3271268,-0.22035037,-0.30551094,0.44497073,0.3526816,0.05102318,0.47737363,-0.27394506,-0.039826307,-0.07898405,0.604362,0.79336315,-0.30199987,0.011831359,0.27629504,-0.1884993,-0.6634209,0.12658095,-0.40679118,0.26815513,-0.1437442,-0.14211652,-0.7788564,0.16490534,0.1953345,-0.11469392,-0.04222492,-0.60125434,-0.20806943,0.09348537,-0.22460869,-0.25863177,-0.5286052,-0.0801639,0.51384014,-0.1160863,-0.3366285,0.24796306,0.20566805,-0.008962833,-0.39806682,0.08745839,-0.12676479,0.2603386,-0.021358628,-0.46658704,-0.18483712,0.0020300562,-0.4359516,0.30464488,0.17093134,-0.29178613,0.03020132,-0.1638212,-0.014731657,1.0390477,-0.23903844,0.4080293,-0.3488178,-0.5169306,-0.89704955,-0.38165548,0.3735983,0.120305896,-0.069769,-0.6814322,0.006478053,-0.07340254,-0.15015498,-0.098053165,-0.2507996,0.36605003,0.042240016,0.48290223,-0.31340873,-0.69288623,0.10797635,0.1358533,-0.23146598,-0.5191138,0.60779005,-0.077688105,0.76718134,0.007923986,0.12192956,0.2680031,-0.30198175,-0.06380589,-0.104591794,-0.19656643,-0.38057724,0.12616035 -834,0.5451335,-0.019092241,-0.5739606,-0.104259044,-0.2778795,-0.11617115,-0.30906492,0.41745886,0.3745169,-0.2614949,-0.1260756,-0.06071178,0.041664008,0.34833378,-0.033323288,-0.60925364,-0.09536266,0.2109665,-0.6638203,0.50676864,-0.54931235,0.30178395,0.011482,0.5366774,-0.11467229,0.2892378,0.1727991,-0.00050128193,-0.034523293,-0.029942347,0.02348423,0.28742677,-0.7423115,0.11954935,-0.18250953,-0.34838647,0.033958122,-0.45446613,-0.11906926,-0.68061376,-0.012417739,-0.77302676,0.63040674,0.17095917,-0.3036015,-0.16645986,0.22009657,0.29808787,-0.4063821,0.1971333,0.19642499,-0.05206869,-0.20848113,-0.3462258,-0.21703061,-0.58424944,-0.36631757,-0.06456319,-0.6142036,-0.2809691,-0.19627056,0.2817295,-0.18149346,-0.05603762,-0.23991984,0.29143855,-0.40974823,-0.043840863,0.29193652,-0.18175633,0.18965873,-0.5040356,0.0029680592,-0.121408775,0.32130414,0.100603156,-0.2955404,0.25275558,0.47430816,0.5829269,0.27516693,-0.27658617,-0.28623885,-0.1533858,0.20124143,0.29367408,-0.38883036,-0.29381981,-0.3081513,-0.107630566,0.30348647,0.41882282,0.21897835,-0.36400142,0.23869632,-0.014448483,-0.17566697,0.41645083,0.52764183,-0.448727,-0.28628266,0.16376558,0.6393025,0.27187568,-0.19500384,0.15245925,-0.022296969,-0.47367257,-0.25291634,0.09983286,-0.02161004,0.29594326,-0.086591706,0.07135581,0.7441173,-0.09588457,-0.10620124,0.073887505,-0.036996678,-0.08960902,-0.44019637,-0.24627678,0.22828096,-0.59144914,-0.008349135,-0.23427846,0.52494174,0.08305781,-0.7703692,0.3095703,-0.7415457,0.08736944,-0.07802708,0.5825415,0.84068084,0.5691256,0.3020991,0.8381179,-0.3674453,0.0921692,-0.06322658,-0.2785517,0.19269548,-0.30403855,0.117271826,-0.5280521,0.2308946,-0.13638732,0.020083042,0.10380495,0.4593163,-0.59322864,-0.23754331,0.39524025,0.89430076,-0.30775914,-0.13072342,0.6304919,1.232924,0.9871838,0.101517946,1.3339653,0.4092064,-0.26892582,0.16487029,-0.27241528,-0.6859808,0.17794225,0.45104745,-0.26201037,0.29585755,-0.18138899,0.062227312,0.31993037,-0.3299511,0.034143925,-0.02259879,0.3890527,0.16842291,-0.25325435,-0.3046653,0.019047793,0.09766313,-0.14112388,0.13070184,0.3163681,-0.2967038,0.21163781,-0.123458356,1.1553613,-0.11832519,0.12968454,0.045971274,0.5116189,0.39052424,-0.09835194,0.05069393,0.48350975,0.27811986,-0.06420366,-0.46531698,0.34605104,-0.3310099,-0.5355566,-0.057725843,-0.22578144,-0.1822229,0.15048908,-0.42289373,-0.17886159,-0.054738976,-0.14318174,0.40258992,-2.5577126,-0.28515232,-0.079010576,0.3159544,-0.23570201,-0.25840247,-0.21563624,-0.31220788,0.27709904,0.18470806,0.43542153,-0.46749213,0.60784185,0.587921,-0.51776505,-0.26398632,-0.5697357,0.05573301,-0.11118264,0.46578187,-0.1316885,-0.2925865,-0.12913933,0.21088345,0.72861016,0.07161368,0.2678315,0.5378564,0.4242702,-0.059698444,0.47586572,0.01253692,0.60701597,-0.3740124,-0.33670786,0.26032802,-0.3901518,0.25409424,0.023863481,0.057705007,0.57085645,-0.47561726,-1.1129243,-0.6629869,-0.22887428,0.93514943,-0.31718123,-0.4526266,0.2085626,-0.29426453,-0.1332772,0.22829737,0.58164096,0.12126536,0.20567106,-0.7758831,0.28770596,-0.08366036,0.2364199,0.050006848,0.059159867,-0.26969436,0.7777779,-0.095701665,0.6512369,0.3064697,0.21200365,-0.22941163,-0.34373173,0.053789534,0.9290664,0.34144,-0.014295559,-0.11362083,-0.26609397,-0.16814572,-0.21843185,0.12195657,0.5972709,0.7471729,-0.12119862,0.11063381,0.25421765,0.016521422,0.04557604,-0.18194617,-0.40550983,-0.116291836,0.2695469,0.27335244,0.66371024,-0.27239597,0.46489716,-0.1655748,0.28729013,-0.21600692,-0.56051004,0.71191853,0.5414616,-0.27860495,-0.044518955,0.6712647,0.46503448,-0.56436306,0.583936,-0.7899764,-0.2567619,0.4461044,-0.13358106,-0.42463508,0.22527887,-0.3160544,0.18177618,-0.8924092,0.34770107,-0.4305566,-0.3323038,-0.31761116,-0.23713945,-3.1869986,0.2991509,-0.117500424,0.042717263,-0.3216948,-0.0643966,0.41428667,-0.5878915,-0.7731866,0.10819379,0.1894529,0.47597063,-0.14958104,0.16441019,-0.26619998,-0.30198857,-0.13637166,0.33764368,0.104032986,0.2510531,-0.012556415,-0.382459,-0.13287094,0.07129065,-0.5258145,0.105760254,-0.63579494,-0.35140216,-0.20467259,-0.5212119,-0.09374441,0.5665321,-0.54519475,0.08112062,-0.31944275,0.15051065,-0.22589478,0.30305248,0.09520976,0.28073162,0.21322256,-0.06630896,-0.059683297,-0.23738518,0.23130694,-0.012235623,0.23761702,0.1402562,-0.095838346,0.10305248,0.4500968,0.8890623,-0.19324547,0.95383584,0.28069392,-0.23245849,0.40161273,-0.37707454,-0.20559205,-0.696421,-0.4133999,-0.29109973,-0.38758653,-0.48573992,0.2180168,-0.3093057,-0.8384342,0.5817142,0.02066196,0.310678,0.09560101,0.36892474,0.4224301,-0.30012205,-0.12739672,-0.16208237,-0.20948625,-0.6124991,-0.2500174,-0.6207049,-0.49749047,0.3084892,0.9189005,-0.33939725,0.07931647,0.064875096,-0.13396788,0.06729203,0.26569113,0.11658122,0.14218205,0.5704086,0.10228666,-0.6063846,0.1292657,0.06275673,-0.18040434,-0.565962,0.25082144,0.71765953,-0.95163167,0.8487904,0.2659876,0.187341,-0.01050509,-0.60861784,-0.2701245,0.10304849,-0.11211049,0.6094475,0.23688897,-1.0068517,0.4013027,0.6368085,-0.55006826,-0.73329663,0.28902647,-0.093069665,-0.09883021,-0.2584233,0.38766834,0.22108942,-0.15239576,-0.15399978,0.3207526,-0.4442899,0.23399507,0.12992924,-0.17083177,0.34518427,-0.16005525,-0.3366501,-0.8223039,0.05097935,-0.6482217,-0.35455805,0.35228527,-0.16303381,-0.22388,0.22766858,0.2354123,0.37460917,-0.26145434,0.20902522,0.016596574,-0.3984135,0.3640237,0.452582,0.3699187,-0.24895416,0.50904655,0.15431732,-0.31806052,-0.008008071,0.022542467,0.30776703,-0.10509924,0.3967877,-0.069439396,-0.16279767,0.35923192,0.6499478,0.09044867,0.38622475,0.055321082,-0.0345463,0.45621064,0.007621075,0.087151654,-0.07248225,-0.38496172,-0.045762602,-0.015805671,0.2170337,0.4673904,0.3778218,0.12729628,0.1600652,-0.108078994,0.012499461,0.2852967,-0.0047336724,-1.078753,0.39069876,0.16031271,0.83392656,0.5768107,0.06347652,-0.23093511,0.61115205,-0.14265361,0.021203332,0.4657653,-0.037591264,-0.4691815,0.7324734,-0.6301457,0.256957,-0.27138665,0.04431421,0.17693521,0.12040249,0.49783012,0.8571258,-0.16640083,0.02205825,-0.010965826,-0.084448166,-0.039684337,-0.18131968,0.07219201,-0.32367605,-0.46859604,0.8489063,0.33608928,0.4290508,-0.4108786,-0.14688186,0.16260011,-0.26421735,0.19989306,-0.15299727,0.0015232873,0.12157146,-0.37197164,-0.22982852,0.6462276,0.1955893,0.10247338,-0.087737136,-0.35125384,0.16394028,-0.28280523,-0.010273833,0.07548773,-0.5783071,-0.042103786,-0.3027491,-0.5497428,0.46659505,-0.014473705,-0.13468814,0.12370319,0.11618592,-0.06465228,0.56962115,-0.0625236,0.7124697,0.03870722,-0.2237965,-0.15641512,0.22835793,0.1056255,-0.24847497,0.049345758,-0.31162325,-0.025343575,-0.6096498,0.6118292,-0.101276174,-0.43350792,0.23777883,-0.08370919,-0.075608,0.4879419,-0.16109739,-0.31022966,0.052058097,-0.2951321,-0.38251993,-0.21077521,-0.1949543,0.27873573,-0.024198946,0.002835448,-0.13171102,-0.3217819,-0.16423506,0.46830213,-0.020746896,0.2192631,0.39389345,0.19030823,-0.2663134,0.15023495,0.27376702,0.41879824,0.09205316,-0.007355603,-0.14300968,-0.4976763,-0.43423033,0.046456516,-0.13004194,0.22267923,0.0938867,-0.3925143,0.97900784,0.13498427,1.3303267,-0.026663749,-0.3741047,-0.00245117,0.5280666,-0.18607427,0.0065873633,-0.3890036,0.87057006,0.76256996,-0.21485662,0.02013683,-0.517003,-0.29119813,0.22051191,-0.5430756,-0.06725682,-0.08672742,-0.72590375,-0.32557267,0.14134362,0.24320476,0.07164424,-0.060250357,0.13987456,0.08490651,0.06210752,0.3013075,-0.6497188,-0.2621252,0.21603711,0.512534,-0.100866064,0.05044718,-0.33804387,0.265223,-0.8213624,0.18448837,-0.48010466,0.07115932,-0.32321882,-0.5348491,0.036277153,-0.020609388,0.26900223,-0.21877326,-0.42677256,-0.01427055,0.42671487,0.046806075,0.11511051,0.7381394,-0.28976512,-0.022785535,0.13695966,0.54207015,1.1612915,-0.33591813,-0.19542393,0.34025797,-0.30920893,-0.7386315,0.37821978,-0.5968656,-0.057251792,-0.1077935,-0.48043635,-0.49101478,0.18726753,0.12462835,-0.032348495,-0.08613001,-0.6383561,0.020557614,0.25856632,-0.1376378,-0.1328783,-0.055169936,0.33651003,0.9623157,-0.2737016,-0.27344707,0.09065027,0.34039146,-0.35574138,-0.5883519,-0.09939223,-0.3863284,0.32940677,0.3064818,-0.3762713,0.09865616,0.061365385,-0.58732915,-0.013855373,0.26282027,-0.31458202,0.243656,-0.35764897,0.0045569954,0.7771409,-0.034656584,-0.039658573,-0.3869591,-0.5747249,-0.9612839,-0.2533912,0.2677744,0.11768882,-0.048594154,-0.557439,0.14354406,-0.1637999,-0.32832277,0.16612819,-0.4698652,0.25831458,0.078257285,0.66033256,-0.30597916,-0.97343373,0.11610855,0.2730501,0.12123306,-0.6783141,0.5607135,-0.18396422,1.0860903,0.03613825,-0.23065832,0.007914396,-0.5968185,0.18170181,-0.42821252,-0.028941255,-0.6048088,-0.01984295 -835,0.48022735,-0.31263334,-0.54866743,-0.11054576,-0.29562524,-0.08888834,-0.2365637,0.85166794,0.14825796,-0.5868873,-0.28402153,-0.1671702,-0.084020965,0.5250971,-0.52083135,-0.58488506,-0.0019068365,0.041767165,-0.35446164,0.5185465,-0.40790513,0.2287054,0.007033412,0.45605373,0.30158323,0.22079648,0.11791213,0.03397033,-0.18278939,-0.32247025,0.2396,0.07719488,-0.8301693,0.17008245,-0.31182313,-0.50811094,-0.04557453,-0.6743846,-0.42728645,-0.9101433,0.3459568,-0.8984023,0.5571575,-0.1115288,-0.32201177,0.008850721,0.20679626,0.45329267,0.061110735,-0.116664045,0.22494811,0.02683202,-0.0823451,0.08202822,-0.048964415,-0.45288622,-0.79237866,0.051602397,-0.43276092,-0.14072388,-0.21658078,0.2554072,-0.44173527,0.19918485,0.055725466,0.45940265,-0.4936529,-0.17213295,0.16656847,-0.013367349,0.27312472,-0.6580462,-0.17362756,-0.14528352,0.16154648,-0.21105026,-0.11531108,0.39992416,0.24671982,0.4767167,0.022434901,-0.21237785,-0.29318377,0.014647088,0.1465273,0.55731314,-0.2074173,-0.6133932,-0.11721497,-0.012988105,0.38915253,0.07113735,0.10884946,-0.107007675,-0.08633122,0.21225996,-0.3819374,0.5171906,0.53633577,-0.20440817,-0.10306161,0.23516545,0.6330968,0.40943357,-0.117097385,0.04824965,0.07835605,-0.6048666,-0.24593778,-0.12767865,-0.2550484,0.6912592,-0.20234539,0.3708272,0.67937756,-0.348675,0.09928929,0.27349266,-0.021502353,-0.24964935,-0.13196383,-0.29763815,0.21017376,-0.47333553,0.17661957,-0.2898696,0.7778569,0.18949333,-0.74207854,0.32722485,-0.61478704,0.05290284,-0.06711821,0.45297033,0.68607295,0.48247325,0.49259022,0.6575905,-0.20145911,0.007070704,0.0028873777,-0.3794769,0.30411524,-0.3113361,0.06633207,-0.38235903,-0.13405748,0.021500498,-0.14835088,-0.16854435,0.4912342,-0.5985567,-0.052130222,0.0063228826,0.8378229,-0.2660379,-0.057373825,0.8324044,1.044904,1.0724494,0.20300585,1.1149158,0.006578673,-0.17613684,0.2971159,-0.01256823,-0.8428005,0.44709107,0.4639083,-0.36365232,0.4113696,0.08667548,-0.0017905235,0.54180604,-0.54399276,0.042730335,-0.034364667,0.36827695,0.19267386,-0.3266016,-0.41067058,-0.19478382,0.06900692,0.12256992,-0.06496065,0.3408439,-0.04349978,0.4219685,0.15853293,1.4262925,0.007191409,0.05651979,0.05369158,0.51618284,0.021056293,-0.090486504,-0.09966745,-0.08824479,0.17768297,0.27775645,-0.51701415,0.115429334,-0.19535437,-0.56711227,-0.1287808,-0.29466966,-0.32138354,-0.29956883,-0.48844728,-0.111759044,-0.22667494,-0.12649404,0.25535372,-2.4716506,-0.23668355,-0.17603232,0.34268335,-0.27238283,-0.52767235,0.04247974,-0.61673784,0.51105314,0.3770155,0.5422442,-0.72832054,0.5519268,0.5040461,-0.5751546,0.04797152,-0.5724337,-0.22122802,0.046027098,0.39905217,0.17262843,-0.09799621,0.09371207,0.30901954,0.37678546,0.0009663213,0.14715762,0.08737033,0.48921144,-0.1811118,0.6037001,-0.22195616,0.4235213,-0.36119336,-0.12817231,0.46601486,-0.5814922,0.2622596,-0.17759424,0.15037583,0.3890855,-0.53027743,-1.0137502,-0.741752,-0.4176223,1.2415274,-0.043339897,-0.32667196,0.26840627,-0.3869935,-0.28248042,-0.17888665,0.38284466,-0.172847,0.101838425,-0.9531605,-0.0829235,-0.2925324,0.036489256,0.07570886,0.015774649,-0.4892873,0.7612177,-0.10621676,0.291467,0.3046735,0.05853523,-0.3771289,-0.50794584,0.072990365,0.8992803,0.5474668,0.24700724,-0.33374724,-0.13310987,-0.5755705,-0.05203197,-0.06395134,0.62465733,0.79507464,-0.095546246,0.038022865,0.09492696,-0.056974605,0.08072502,-0.18302688,-0.44014457,-0.094434716,-0.021805264,0.733477,0.857671,-0.34961888,0.33046433,-0.16412543,0.3652655,-0.12408176,-0.36262766,0.45752338,0.69934386,-0.047541857,-0.20331854,0.6914456,0.6412485,-0.33790362,0.5215748,-0.52656764,-0.5105402,0.3948512,0.027210461,-0.54062533,0.11058534,-0.38213474,0.21985413,-1.0521455,0.45868674,-0.537208,-0.31670582,-0.68818456,-0.18258025,-3.4017432,0.14869978,0.025322147,-0.35838196,-0.15391995,-0.15106788,0.27874932,-0.7795066,-1.0677778,0.14909893,-0.112946436,0.72524,-0.090146,0.12066839,-0.16086307,-0.37211597,-0.30578187,0.21951832,0.32636267,0.35807124,0.15829307,-0.48789856,-0.24345103,-0.33772948,-0.38141146,0.14737685,-0.7137277,-0.887122,-0.1755169,-0.5056981,-0.19174132,0.77580625,-0.16723245,-0.11350536,-0.09829421,-0.07240353,-0.22006096,0.48802623,0.18146177,-0.011251523,0.023252875,-0.11342957,0.28571314,-0.28439558,0.3583029,0.1483087,0.6341538,0.5090411,-0.14842747,0.4914139,0.7994527,0.8402611,0.037992314,1.0349143,0.28584257,-0.0026184672,0.16928965,-0.2547715,-0.39376107,-0.46966216,-0.14167285,0.035745677,-0.36281037,-0.2315581,0.06254331,-0.38546208,-0.83097875,0.62452227,-0.10242358,0.020326294,-0.016509715,-0.10122204,0.26807415,-0.13931064,-0.09565589,0.04623777,-0.022715092,-0.6682154,-0.34577033,-0.6892689,-0.59070885,-0.16222343,1.011674,-0.023020048,-0.026465328,0.043796904,-0.16389467,0.097348996,-0.0015505444,-0.086073324,-0.13689603,0.36760533,0.04399494,-0.8336277,0.47247553,-0.14409173,-0.07197959,-0.6087823,0.07127935,0.6337502,-0.63190055,0.33022618,0.48702306,0.14573711,0.06021334,-0.49790394,-0.024623942,-0.082417935,-0.1591095,0.34926635,0.25248754,-0.6498484,0.37933147,0.3269943,-0.35613474,-0.7063455,0.6548754,0.016794968,0.01075995,-0.20749567,0.32768533,0.22187072,0.10348234,-0.23106419,0.38201046,-0.40654027,0.22602268,0.24085855,0.02607047,0.44711658,-0.05166957,-0.09697118,-0.8691547,0.0077374172,-0.49219358,-0.34460914,0.26915744,-0.054821517,0.028648783,0.12100666,0.48591903,0.22537242,-0.3813763,0.0054172617,-0.0327767,-0.36099693,0.4607667,0.6161956,0.73080534,-0.494175,0.5622587,0.17305389,0.17506018,0.16728811,-0.11648657,0.47696722,0.031647217,0.32290268,0.3740781,-0.15305905,-0.016114695,1.0106711,0.22286168,0.591922,0.1139739,-0.12648441,0.16549875,0.071158975,0.21423556,0.059116866,-0.8341865,0.073166534,-0.050286043,0.009235361,0.6273202,-0.022502786,0.2264134,-0.046579596,-0.34131253,0.008908767,0.34678182,-0.092026025,-1.8642613,0.49274436,0.18192159,0.71207947,0.5888495,-0.078343265,0.3478452,0.7064827,-0.054468013,0.08366073,0.5440503,0.2013853,-0.64766926,0.5916876,-0.67667025,0.5338116,-0.018120164,0.013983196,-0.13100189,-0.04246809,0.47919732,0.70721763,-0.11960518,0.13078426,0.025824076,-0.34760717,0.07398335,-0.6040151,0.01661882,-0.37443352,-0.05458168,0.78215957,0.70105726,0.22862796,-0.116813205,0.08174289,0.041952875,-0.056646656,0.3075455,-0.1120928,0.011197939,-0.12398834,-0.73584646,-0.23254232,0.6803563,0.05009762,0.27767083,-0.13455433,-0.23079419,0.20363578,-0.042445336,-0.2253261,-0.054768242,-0.86598724,0.103212506,-0.51482236,-0.54726166,0.34425414,0.05962579,0.25039834,0.23290285,0.14586806,-0.4068093,0.3068841,-0.013762658,0.59357375,-0.10457024,-0.26356313,-0.17002493,0.17049727,0.2652886,-0.37274057,-0.15948184,-0.2669432,0.13461713,-0.16914037,0.48438227,-0.1362866,-0.43467614,0.039806113,-0.08946225,0.027106266,0.42916143,-0.22483067,-0.101642445,0.047128532,-0.016962625,0.012791357,-0.27023175,-0.12691565,0.25080332,0.23731782,-0.19300622,-0.112468,-0.18140258,-0.10599586,0.61749315,0.008424564,0.4347349,0.73850024,0.14243874,-0.65587586,-0.27230543,0.072126344,0.76283973,-0.05413536,-0.22328566,-0.58474904,-0.38722897,-0.28898457,0.40454915,-0.23275295,0.36798537,0.24494332,-0.5143575,0.5839758,0.19771658,1.3366737,0.1285738,-0.40393475,0.18425259,0.40639532,0.052796874,-0.16111471,-0.52794915,1.0010754,0.40464133,-0.42485774,-0.17177881,-0.5873381,-0.009551704,0.04070451,-0.20151792,-0.26555943,-0.03261992,-0.7433653,-0.20574483,0.35521373,0.3800526,0.032690037,-0.22082004,0.043210283,0.29645598,-0.022763748,0.5179821,-0.49355382,-0.23954368,0.4267494,0.26749623,-0.035122532,-0.04332865,-0.52076703,0.31548175,-0.5196984,0.043781463,-0.47977683,0.17494689,-0.2821431,-0.51899874,0.23736173,0.022929348,0.50024104,-0.15822841,-0.461998,-0.23656473,0.46814057,0.17597394,0.12468717,0.52015877,-0.14808689,0.028881943,-0.044310387,0.61538815,1.0702409,-0.20333542,0.21532327,0.2165688,-0.34187528,-0.49305093,0.2142847,-0.40008155,0.37326643,-0.09758219,-0.20997071,-0.8864237,0.17761415,0.2138218,-0.032722153,-0.07429708,-0.5295425,-0.40808746,0.34903497,-0.4150754,-0.32832766,-0.42954415,-0.032175876,0.68297505,-0.39097396,-0.18319511,0.015031121,0.32261264,-0.0990096,-0.405999,-0.2638037,-0.18166198,0.31101063,-0.042240344,-0.42500117,-0.102152914,-0.0042722225,-0.4253437,0.20991054,0.21654326,-0.47112954,0.06951893,-0.21732527,0.05396495,1.0339127,-0.116028816,0.24171066,-0.49602348,-0.41697234,-0.9055389,-0.28790405,0.383315,0.21038762,-0.07130699,-0.57606626,-0.13851187,-0.063190244,-0.17310056,-0.1081877,-0.46190417,0.4397127,0.113995545,0.66537774,0.03142288,-0.65333617,0.05438998,0.22687839,0.021630807,-0.63079983,0.6380597,-0.09510097,0.88366216,0.08668525,0.17733736,0.022073628,-0.47531813,0.0045303325,-0.09973383,-0.08703295,-0.7388035,0.3436048 -836,0.42923623,-0.27426142,-0.4594677,-0.13930877,-0.09435058,0.08589523,-0.15908219,0.6050778,0.06937013,-0.25259382,-0.090601206,-0.058118675,-0.114530705,0.31149858,-0.082405165,-0.47502878,0.055510897,0.16002303,-0.5206989,0.69853187,-0.2612626,0.19147748,-0.19806251,0.40678012,0.03710349,0.35510913,-0.03211439,-0.097579926,-0.1870621,-0.029262984,0.029547326,0.10894832,-0.4056432,0.19305064,-0.29212534,-0.23253495,-0.027285617,-0.3516695,-0.48321623,-0.67128366,0.10691937,-0.7048761,0.5366459,0.037419114,-0.33492962,0.1685461,0.09269322,0.29316086,-0.3416026,0.026475005,0.02773666,0.09981179,0.006310725,-0.18158713,-0.1428237,-0.5610924,-0.4402869,0.07115669,-0.4962915,-0.007066866,-0.10029469,0.115644895,-0.25491858,-0.16349323,-0.09494761,0.42024007,-0.3525453,0.07559864,0.23713274,-0.03669137,0.16463844,-0.5649618,-0.194851,-0.16585799,0.31496096,0.033824015,-0.12547724,0.35851792,0.20945151,0.50003487,-0.15227339,-0.082206555,-0.27922657,-0.09412669,0.036556292,0.429986,-0.18452603,-0.5949304,-0.09851883,-0.0473298,0.21036711,-0.033493917,0.11894799,-0.1173089,-0.081864096,-0.07637002,-0.26657346,0.29067937,0.6015867,-0.31304333,-0.24958465,0.42934614,0.5833741,0.23720144,-0.28560933,0.005618453,0.053510185,-0.352174,-0.118667714,-0.0025845964,-0.12169734,0.53477836,-0.046009973,0.2697758,0.59686565,-0.074827924,0.0856346,0.101893775,-0.018838238,-0.12947337,-0.10117933,-0.27954668,0.045836236,-0.27965963,0.05007933,-0.21061204,0.4477113,0.15109086,-0.71768,0.35165918,-0.49524632,0.14849177,0.052205857,0.4677077,0.75264496,0.3960546,0.2322771,0.5226307,-0.19059747,0.12211009,0.039208665,-0.21512906,0.13357712,-0.21229763,-0.06605049,-0.5742931,0.07770593,0.16812979,-0.23916319,-0.015807223,0.2092247,-0.48149928,-0.12071821,0.28716904,0.89507073,-0.2130194,-0.103509516,0.63322383,1.0339812,0.9603551,0.06305425,1.0327448,0.30350295,-0.24701948,0.3578419,-0.38897222,-0.6490101,0.23258752,0.35249048,-0.111623146,0.51569855,0.034035444,-0.19246082,0.4573761,-0.4016923,0.06447964,-0.2626316,0.057214793,0.086246885,-0.12053121,-0.42304662,-0.27215344,-0.20338467,-0.055705156,0.17039165,0.3215536,-0.22192033,0.35917524,0.0017093023,1.7401701,0.059506185,-0.0061769485,0.06628115,0.65205,0.1417258,-0.17816792,-0.016107686,0.33631885,0.3627461,0.07214319,-0.523603,0.24186355,-0.2551038,-0.5465459,-0.15520388,-0.3053061,-0.07377145,-0.13940836,-0.48690504,-0.1388395,-0.022357576,-0.19961093,0.330242,-2.928391,-0.15528962,-0.18624324,0.34272906,-0.22671418,-0.2123436,-0.18694565,-0.3515905,0.28660247,0.4292799,0.43135312,-0.6225943,0.49526584,0.32458866,-0.52938724,-0.064443514,-0.5599538,-0.06251896,-0.090789795,0.4567551,0.0283004,0.048696622,0.25882852,0.26061717,0.41358414,-0.1056631,0.034157835,0.19483967,0.35260475,-0.01747034,0.30799478,-0.093405694,0.37332132,-0.24959993,-0.16580422,0.23619206,-0.43517786,0.26678935,-0.06302509,0.1406314,0.44941092,-0.47499287,-0.8922129,-0.6620258,-0.04866406,1.108721,-0.20884241,-0.35993546,0.117077984,-0.51545364,-0.20755298,-0.16505295,0.5924748,-0.1277503,-0.035177425,-0.7638493,-0.01364156,-0.21488781,0.1687429,-0.019874116,-0.0009692709,-0.3853096,0.6625644,-0.048886735,0.6129805,0.18282524,0.15323094,-0.17267182,-0.44453132,0.15230341,0.67217326,0.37556687,0.05665303,-0.18351912,-0.24989888,-0.3418701,0.11106823,0.15634972,0.5003624,0.4974778,-0.0643085,0.16538332,0.16609268,-0.11191262,0.047845285,-0.1621104,-0.2156784,-0.11912294,0.11029541,0.6059218,0.73083574,-0.35425663,0.52207434,-0.1658071,0.21459743,-0.25031477,-0.45057878,0.63452953,0.75577337,-0.27883017,-0.19042355,0.55558646,0.6089027,-0.3230737,0.39887658,-0.7086872,-0.2983019,0.39602214,-0.16359352,-0.21660924,0.30545643,-0.29397318,0.24585596,-0.9889027,0.37200114,-0.25440624,-0.3679415,-0.65812624,-0.04403523,-2.9730365,0.13560958,-0.09752546,-0.3124963,-0.06527646,-0.13265795,0.3660444,-0.6180059,-0.4052847,0.14283219,0.1169048,0.5855643,0.032514673,0.01090413,-0.2680151,-0.321064,-0.287416,0.13763301,0.17066093,0.37087262,-0.08188281,-0.47820526,-0.20310524,-0.105482735,-0.25877383,0.094128385,-0.6165931,-0.3289419,-0.23719199,-0.4935962,-0.14908774,0.6079952,-0.12948106,0.06559126,-0.27151647,-0.018717997,-0.24811038,0.355597,0.11319787,0.014152909,-0.047509782,-0.09024815,0.15504226,-0.25565705,0.27674758,0.112130016,0.36730927,0.29724884,-0.12618665,0.205559,0.63340354,0.5878958,-0.1469581,0.6378111,0.579438,-0.12837899,0.46309173,-0.27056494,-0.10962944,-0.39270625,-0.3062604,0.06271212,-0.29878932,-0.5186597,-0.08793643,-0.49550867,-0.7769403,0.40323672,-0.17338131,0.063529395,-0.009188638,0.2018815,0.61211264,-0.15785065,0.056519426,0.051696405,-0.13849674,-0.4255656,-0.3407493,-0.5162793,-0.35549542,0.11817146,1.0718484,-0.202622,0.0041472437,0.031811003,-0.2983782,0.018030886,0.049045697,0.06520005,0.11487662,0.32913885,-0.2508647,-0.6267044,0.39726242,-0.2515617,-0.22136383,-0.43831107,0.17872575,0.5784513,-0.60157776,0.5299016,0.3177687,0.05047638,-0.17995715,-0.5009394,-0.11334933,-0.010540309,-0.105722,0.25006017,0.14321586,-0.75688666,0.3233453,0.22082734,-0.2507436,-0.52612555,0.4661377,-0.007296749,-0.27342588,-0.013919136,0.27128708,-0.048891257,-0.03437174,-0.43572202,0.20875518,-0.30810255,0.1605435,0.24730653,-0.083521485,0.33233395,-0.112663776,0.03792775,-0.6930524,0.020963876,-0.4347064,-0.32263774,0.346683,0.18245094,0.29618508,-0.060399756,0.009329834,0.30161896,-0.31820887,0.08886186,-0.030545648,-0.26560524,0.35021025,0.4108743,0.4554231,-0.5022188,0.663011,0.07832204,-0.15009648,0.0010846456,0.11575878,0.40422815,0.10755715,0.37418506,0.04206003,-0.22929856,0.25206554,0.7549129,0.2544612,0.55075055,0.11199136,-0.216394,0.25220543,0.0029627234,0.09337525,-0.062005077,-0.3668854,-0.063084885,-0.13313611,0.2563291,0.3780424,0.08566983,0.27529636,-0.11484971,-0.22761948,0.10791291,0.22197492,0.099624306,-1.398056,0.39771894,0.36519712,0.86322796,0.30044603,0.026915153,-0.03415346,0.7190328,-0.13427046,0.084579594,0.33599758,-0.07114235,-0.5425006,0.57252187,-0.6499938,0.4951795,0.06887771,-0.06487568,-0.049853735,-0.040225983,0.3920171,0.7756139,-0.09578156,0.051809654,0.013258268,-0.39862388,0.0016704401,-0.192199,0.2032335,-0.5269853,-0.2476894,0.5447694,0.51451075,0.33963272,-0.17262818,0.051913165,0.06673282,-0.14388786,0.20248026,-0.053880833,0.05547433,-0.15647787,-0.7868622,-0.15975729,0.5071334,-0.3247246,0.10541272,0.11612868,-0.32318908,0.21289498,-0.06622876,0.0855314,-0.006562466,-0.51084554,0.07568259,-0.2144502,-0.3066499,0.6567116,-0.22188698,0.29586658,0.15436253,0.05211418,-0.24070397,0.33837086,-0.01742936,0.6656847,-0.07940354,-0.22537549,-0.47152394,0.09138673,0.16197734,-0.2914094,-0.1516687,-0.38282776,0.038534716,-0.37224418,0.3881748,0.038381875,-0.20993294,-0.03918559,-0.16070274,0.08559019,0.45141086,-0.12262215,-0.22268753,-0.13192298,-0.096114956,-0.39973357,-0.098251946,-0.053082235,0.40332317,0.31185248,0.0022021015,-0.07050255,0.038818408,0.007901589,0.46654433,0.06821724,0.33038273,0.53080595,0.20017181,-0.27784312,-0.087209396,0.18584386,0.47936672,0.14324825,-0.021338169,-0.4264074,-0.42026728,-0.35151199,0.10361527,-0.1933007,0.28136608,0.17592779,-0.21289629,0.6744888,-0.0075253886,1.219989,0.07327895,-0.3570534,0.22702004,0.4196025,0.04271159,0.10875646,-0.43048677,0.9017306,0.5274294,-0.04818901,-0.13523698,-0.30451828,-0.1675542,0.11364821,-0.2305473,-0.23338103,0.013900518,-0.67015964,-0.2548037,0.16976981,0.19132315,0.25528303,-0.054805472,0.06419982,0.11337788,0.05858608,0.23168853,-0.4628889,-0.20561878,0.23914689,0.18727295,-0.01529309,0.10934622,-0.4420389,0.40031892,-0.5396146,-0.03790439,-0.33562025,0.14593953,-0.07835782,-0.36131805,0.17800769,-0.065692864,0.3862235,-0.34977537,-0.31192285,-0.23144825,0.5680167,0.07548874,0.1386172,0.45441914,-0.21585956,-0.04420321,0.094195195,0.53069264,1.0003542,-0.36737728,0.04103655,0.45968926,-0.3311935,-0.70723534,0.22915097,-0.30366543,0.34701443,-0.04541498,-0.22481495,-0.5432361,0.3818217,0.17513323,0.078611486,-0.14314954,-0.5162886,-0.26056042,0.22789502,-0.32356614,-0.22193053,-0.36935493,-0.005982741,0.54824907,-0.21588193,-0.32878482,0.059134007,0.20217942,-0.19282463,-0.51930964,0.010950676,-0.39974988,0.2450171,0.11161731,-0.31219962,-0.16388282,-0.04278775,-0.42511025,0.33434853,0.11138891,-0.38078254,0.07926916,-0.4319994,-0.15688889,0.9854403,-0.23011294,0.10094659,-0.5257037,-0.4806474,-0.71870863,-0.5430361,0.35282496,0.19997902,-0.061972,-0.582812,0.09172379,0.061414722,-0.026845535,-0.15934692,-0.28936476,0.38854158,0.14731869,0.35025206,-0.10549291,-0.79020816,0.2030252,0.025552472,-0.15332174,-0.5620048,0.47563255,-0.0015444278,1.0056552,0.124306366,0.2266745,0.24743108,-0.43937486,-0.17378168,-0.18623243,-0.15736605,-0.6476566,0.045214638 -837,0.669592,-0.34641063,-0.7271357,-0.1275101,-0.26873365,0.025583168,-0.3524104,0.50998753,0.14044212,-0.65467244,-0.034407355,-0.119208016,-0.06731855,0.3430974,-0.21991827,-0.5795744,-0.16084446,0.03592288,-0.45662433,0.5407147,-0.3647407,0.44008607,0.16869444,0.23454955,0.3082456,0.19083765,0.11063661,0.09227052,-0.38770422,-0.038855445,0.10622738,0.34657466,-0.70853096,0.19300124,-0.22902104,-0.4799595,-0.12884897,-0.38539633,-0.21624742,-0.7735082,0.3287337,-0.8678305,0.6047758,-0.2100868,-0.4257701,0.09556146,0.06565127,0.4766958,-0.029803833,0.026392126,0.16270116,0.16508299,-0.1193153,-0.012209777,-0.36958936,-0.47571805,-0.69836354,0.15083465,-0.55792046,-0.20021087,-0.114914276,0.17788313,-0.29565457,0.15030266,-0.13891767,0.6443157,-0.3333193,-0.17991835,0.3303395,-0.03439878,0.44094238,-0.7352382,-0.115374394,-0.24697559,0.19322583,-0.33853278,-0.23332705,0.23244376,0.42980728,0.5834984,-0.010813673,-0.2158057,-0.5141912,0.049022183,0.12712562,0.29802322,-0.2132385,-0.49260846,-0.16081175,0.086265296,0.38352653,0.15196864,0.28856608,-0.2549095,0.0668036,0.29299483,-0.27659282,0.6670541,0.42766494,-0.381868,-0.14760898,0.25668967,0.85484916,0.31587225,-0.1271005,0.14759092,0.00616077,-0.6082571,-0.087756775,0.35156882,-0.03522028,0.53088343,-0.026088757,0.17758504,0.63518196,-0.2794715,0.018564982,0.10003617,-0.08508174,-0.04097583,-0.3100782,-0.33609766,0.26162413,-0.4880425,0.04970503,-0.2970923,0.71919096,0.07069834,-0.852019,0.39321703,-0.5194089,0.017892996,-0.05040942,0.4930268,0.73897195,0.5951816,0.11495917,0.7094233,-0.48510304,0.008742278,-0.17418247,-0.3526969,0.06274212,-0.3264844,0.07503714,-0.50752515,-0.15834387,-0.10119298,-0.15254799,-0.014230998,0.6097632,-0.5421148,-0.08075058,-0.10782124,0.8391276,-0.3160702,-0.3089114,0.82518643,0.88644004,1.0112196,0.011938763,1.1152512,0.2493221,-0.19990733,0.30987814,-0.31043437,-0.61354727,0.47587445,0.45324865,-0.24497007,0.52166647,-0.027882012,0.118833385,0.5021731,-0.18817554,0.189543,-0.114351384,0.10200084,0.12562804,-0.22657862,-0.50101537,-0.12041424,0.059747245,0.020585267,0.058763556,0.1491923,-0.053923734,0.5755784,0.1963098,1.8063494,-0.2918981,0.139125,0.20074296,0.30794588,0.06339044,-0.21513796,0.022003952,-0.13057879,0.35912275,0.18049018,-0.52291846,0.12863263,-0.1747348,-0.49696288,-0.23463097,-0.33070418,0.021238025,-0.25282514,-0.5451707,-0.007329782,-0.008539303,-0.35232344,0.38654354,-2.3151398,-0.29908782,-0.18882759,0.24108757,-0.42026168,-0.7298743,-0.115505666,-0.55417407,0.44144967,0.30462503,0.44707,-0.6344278,0.4362782,0.36778107,-0.4307493,-0.05451586,-0.70693517,-0.1543866,0.010975056,0.19179782,0.003932174,-0.35584685,0.12147843,0.30013874,0.52150935,-0.29432485,0.018241467,0.26650095,0.40910423,-0.018718235,0.8527225,-0.0077308617,0.45757625,-0.29418212,-0.24036105,0.59726703,-0.2616936,-0.008013376,0.17409338,0.16811457,0.30625808,-0.5191476,-1.024796,-0.82669437,-0.45165253,0.97115046,-0.14749558,-0.5122689,0.10481666,-0.25670582,-0.41116586,-0.18032952,0.33177403,-0.008516264,0.07192176,-0.9240663,-0.04641246,-0.23528567,0.17908607,-0.09109688,0.060143176,-0.5051476,0.65200603,-0.034384917,0.34532794,0.49592736,0.19342607,-0.3564834,-0.64025664,0.07802798,1.3295354,0.3663022,0.1548211,-0.41490397,-0.18594806,-0.5295524,0.20301326,0.085292846,0.390532,0.7867129,0.09918801,0.027545197,0.16106148,-0.06514553,0.07945175,-0.11985739,-0.39009696,-0.2880622,-0.001344798,0.6621448,0.5444676,-0.096150555,0.69151247,-0.2481537,0.21532099,-0.15317683,-0.52636814,0.60317135,0.8960082,-0.19401798,-0.44987634,0.5525122,0.3420237,-0.24665152,0.48609826,-0.5671257,-0.2820954,0.35032266,-0.13714142,-0.43125382,0.3570505,-0.3829931,0.13116117,-1.1665803,0.19773522,-0.48130867,-0.2709055,-0.60041153,-0.2966643,-2.588324,0.27371246,0.01144858,-0.18702799,-0.05839807,-0.3022623,0.31731427,-0.6937626,-0.7600307,0.05671514,0.134833,0.7270659,0.084884755,0.002418955,-0.2312936,-0.24042276,-0.11382365,0.22756772,0.38580576,0.23033364,0.14013423,-0.52806306,-0.18209018,-0.32058683,-0.4468881,0.06396424,-0.6938204,-0.8001957,-0.20669954,-0.5323594,-0.43883452,0.72854704,-0.47594208,0.042777415,-0.07536702,0.0063642543,0.14371566,0.42357937,-0.053053323,0.20345488,0.13419929,-0.14161198,-0.016288936,-0.26227686,0.09928382,0.22374524,0.3674759,0.35437545,-0.44863757,0.50242454,0.68916,0.9826847,0.107456304,0.7370672,0.6632916,-0.040777273,0.37439433,-0.23703726,-0.19812982,-0.6940721,-0.12551534,-0.07886618,-0.48414987,-0.39075103,6.447633e-05,-0.43750185,-0.8517071,0.79612947,-0.1668388,0.05658018,-0.06549735,0.38959986,0.460186,-0.2444838,-0.049680028,-0.13776724,-0.18308856,-0.49067897,-0.5288582,-0.5888729,-0.8197971,-0.06745457,1.3007965,0.0253738,0.03939011,0.06348678,-0.11347934,0.08198336,0.18148318,0.016197715,0.170379,0.48167303,-0.11375085,-0.63029975,0.32828522,-0.12802269,-0.18335861,-0.57909447,0.12179411,0.7524199,-0.54568875,0.24225283,0.28996927,0.06345891,-0.20581953,-0.57158965,-0.016090421,0.12921208,-0.3470702,0.52725416,0.19986653,-0.6365868,0.40720552,0.39546436,-0.23003021,-0.69372165,0.65297717,0.20257537,-0.10291322,-0.06507945,0.39068764,0.12189637,0.0442759,-0.29246932,0.22713037,-0.454907,0.09231586,0.37926522,-0.068095095,0.36253324,-0.23207916,-0.17261927,-0.72902656,0.1544447,-0.45994267,-0.41285577,0.24479093,0.08673759,0.23170736,0.2824778,0.10168428,0.46078864,-0.34664047,0.045814347,-0.12268143,-0.26397568,0.35719696,0.46088588,0.38549456,-0.4881587,0.40259698,0.011026112,0.030751593,-0.12421752,-0.021059068,0.53569347,0.039210018,0.2310904,0.110144466,-0.14561293,0.2580286,0.7930927,0.19414835,0.49938947,0.053561892,-0.2625757,0.05828586,0.050099365,0.22541708,0.020208208,-0.5700009,-0.005057462,0.08971299,0.11968325,0.57428837,-0.05527153,0.23022327,-0.3066101,-0.40531,0.048903372,0.17424367,-0.13576443,-1.4576592,0.39103082,0.20339395,0.79143035,0.38683465,0.017863575,0.16129923,0.49431324,-0.27488622,0.2174251,0.38250795,-0.053321667,-0.46070063,0.5686958,-0.70883334,0.4319376,0.031880658,0.13989298,-0.07984562,-0.102348454,0.540471,0.80861783,-0.11415787,0.14666146,-0.13069418,-0.11547623,0.0660304,-0.3916314,0.12424843,-0.4290657,-0.12744644,0.85381,0.4126487,0.4103885,-0.035884786,0.015131899,0.17733027,-0.24015665,0.18048249,-0.25097033,0.07333896,-0.035429064,-0.53326833,-0.23327151,0.5550378,0.37809297,0.042051084,-0.033948023,-0.27552015,0.17433567,0.078076705,0.017786857,-0.13533898,-0.7037134,-0.1072572,-0.6499317,-0.3488169,0.43184298,-0.10009925,0.116359755,0.19244266,0.07512197,-0.38164252,0.46523038,0.1464325,0.7106848,0.004074947,-0.19309276,-0.3687589,0.11026597,0.25589272,-0.3342956,-0.16678019,-0.24552996,0.2856811,-0.7058881,0.28344026,-0.00060403347,-0.4776924,0.037260536,0.05627064,0.034136925,0.44848588,-0.35390118,-0.039139587,0.104571424,-0.03147314,-0.025413794,-0.33050504,0.055394463,0.27664375,0.12411176,-0.039793238,-0.08309914,-0.11515465,0.010572505,0.39458168,0.14690647,0.31695664,0.59632176,0.2465442,-0.5121371,-0.008160353,0.37251064,0.60029846,-0.006435162,-0.16787173,-0.5094922,-0.317508,-0.32815933,0.43449694,-0.12084527,0.27645028,0.057936404,-0.481464,0.8960108,0.098167725,1.4258448,0.019264508,-0.5024432,0.17416124,0.42134923,-0.039173607,-0.07630291,-0.5442328,0.918186,0.49275112,-0.05945375,-0.12796474,-0.4286548,-0.05364519,-0.046803202,-0.24056624,-0.15453915,-0.24849387,-0.6606293,-0.30251357,0.2955344,0.30752736,0.08606086,-0.1789705,0.23656793,0.17479089,-0.12082607,0.38582236,-0.44083956,0.014677814,0.13062814,0.37327814,-0.1447301,-0.054141838,-0.49574706,0.32972315,-0.66976535,0.10292261,-0.41881835,0.21229228,0.048871074,-0.36523777,0.27990285,-0.095658936,0.30677974,-0.32998678,-0.45420888,-0.2996859,0.59668165,0.0337153,0.14633827,0.7053918,-0.19797726,0.22686593,0.013201336,0.4516633,1.2480983,-0.16438745,-0.035469815,0.27833888,-0.23474291,-0.4956574,0.2891599,-0.3788193,0.52452177,-0.16156875,-0.22091551,-0.47870985,0.19227448,0.18849452,-0.037074026,-0.04318484,-0.44151497,-0.20591617,0.2900856,-0.41523784,-0.24670427,-0.3088114,0.052089628,0.5350366,-0.37224838,-0.33035153,0.019142976,0.44616222,-0.14405702,-0.28988448,-0.11991276,-0.2791932,0.26091647,0.2156746,-0.318797,-0.07344155,0.06863586,-0.48927882,0.09289854,0.49227524,-0.40093157,0.025467504,-0.22734505,-0.13450575,0.9346519,0.07109773,0.118304715,-0.46210563,-0.46410143,-0.9811869,-0.27497196,0.27026546,0.14328569,-0.029633526,-0.7943733,-0.014514113,-0.29195347,-0.0053412276,0.062841214,-0.33873805,0.4229645,0.1355825,0.6225846,-0.24926907,-0.71403843,0.07293034,0.16893181,-0.10634224,-0.5485572,0.5626784,0.016595948,0.82827026,0.049568407,0.26085898,0.33470994,-0.6881837,-0.09980893,-0.23767088,-0.11094477,-0.7657524,0.004652397 -838,0.3109862,-0.002392888,-0.471386,-0.18875723,-0.1317261,-0.109850265,0.13750905,0.47171685,0.3425533,0.15049928,-0.16923542,-0.017914439,-0.051596776,0.57346183,-0.13906388,-0.8530466,-0.09407631,0.1403677,-0.65225315,0.5610188,-0.39651987,0.325464,-0.10289347,0.51068074,0.29056624,0.27086797,0.19667298,-0.042618286,0.05545118,0.12621559,-0.27917907,0.37516046,-0.580705,0.2054054,0.013713419,-0.22563134,-0.060457766,-0.36515045,-0.3521496,-0.74293804,0.50518686,-0.64855236,0.6507111,-0.11166135,-0.3583062,0.10334525,0.06881696,0.3304097,-0.55048686,-0.14267443,0.0052767894,-0.021715418,0.053105336,0.092742324,-0.2064529,-0.28169215,-0.6171176,-0.07151427,-0.48850223,-0.10084804,-0.2911233,0.15167524,-0.35912633,-0.12036812,-0.09677843,0.47382703,-0.4249598,0.20415513,0.2944593,-0.146907,0.1083023,-0.4183012,-0.11632424,-0.07914283,0.2643863,0.10317635,-0.31036064,0.44058552,0.41902518,0.35755086,0.06311491,-0.13406645,-0.10661196,0.045580838,-0.050151944,0.49815974,-0.11801069,-0.41048327,-0.20876312,0.09552428,0.23434855,0.29956487,0.07873074,-0.40557063,-0.003501296,0.103958555,0.0073256493,0.24059756,0.48351085,-0.15063684,-0.33194438,0.5275199,0.2059058,0.28439102,-0.19885635,0.22238106,0.019768728,-0.5063519,-0.22659881,0.019638628,-0.13153061,0.6067217,-0.077098586,0.23012221,0.82029176,-0.11650894,0.09696471,-0.1413492,0.069919825,-0.25279352,-0.2640535,-0.12723123,0.16768897,-0.48249903,0.123465024,-0.10545371,0.82732147,0.21980505,-0.8229131,0.31116557,-0.50121266,0.22747149,-0.27003738,0.5773112,0.9385031,0.31042668,0.41799188,0.81041336,-0.5518299,0.032830656,0.27089262,-0.557862,0.24846365,-0.10500831,-0.112266995,-0.5375967,-0.19310898,0.18950486,-0.07923216,0.18396373,-0.02726014,-0.49340343,-0.15092817,-0.09999768,0.66371995,-0.39585093,-0.12925938,0.8420863,0.97346467,0.8550275,0.011979676,1.2952644,0.3013661,-0.1850167,0.36062106,-0.26977122,-0.70813876,0.079204366,0.27228236,-0.9060171,0.4465491,0.03181426,0.06855099,0.3579425,-0.2476749,-0.026553592,-0.014462195,0.17990701,-0.149779,-0.22106701,-0.3866664,-0.29568443,0.0648052,0.14062403,-0.046804547,0.35485777,-0.22553217,0.51110655,0.09231665,1.4686288,0.2683331,-0.029895253,-0.08200941,0.40107846,0.23172313,-0.2455128,-0.22958072,0.32170108,0.58985114,-0.05433101,-0.5837062,0.029132793,-0.37131763,-0.32491186,-0.13339297,-0.42057905,-0.049483176,0.022352358,-0.3290353,-0.17680086,-0.011606827,-0.2227938,0.4846309,-2.8741245,-0.16889167,-0.09255516,0.28110075,-0.20491998,-0.20570499,-0.28638896,-0.43353948,0.1665984,0.4023367,0.3561089,-0.7643514,0.1899214,0.27998394,-0.41563657,-0.1803929,-0.5750454,0.006850645,0.11922037,0.3291777,-0.19901021,0.007791785,-0.02097609,0.26932225,0.5157184,0.26531947,-0.0072530224,0.12963478,0.46570876,0.07278478,0.36750433,-0.028344588,0.58135617,-0.020314068,-0.071710296,0.25033987,-0.18417446,0.4698956,-0.10730215,0.122706205,0.44184133,-0.48259208,-0.88064,-0.42615283,-0.24963085,1.188696,-0.5811642,-0.14803964,0.32925215,-0.22926508,-0.13649218,0.11476474,0.4329587,-0.16460429,-0.1809768,-0.6531506,-0.02452592,0.007557126,0.05802756,-0.049180627,-0.0067721927,-0.1571985,0.43717417,-0.07686031,0.528386,0.39953986,0.1691646,-0.2268774,-0.6652941,0.11626771,0.6371313,0.36982217,0.06778487,-0.12850635,-0.111109994,-0.36751625,-0.26462308,0.16029912,0.53286284,0.7708962,-0.06443229,0.14475922,0.33147463,-0.03705305,0.06698519,-0.03394197,-0.28497532,-0.06401706,0.03556775,0.43848157,0.7343991,-0.28460997,0.41022256,-0.033999752,0.19510044,-0.018044418,-0.65526,0.7883777,0.90134186,-0.21109958,-0.22627664,0.54374677,0.27700457,-0.25727496,0.39632115,-0.4294065,-0.012637173,0.7851469,-0.1276929,-0.32053128,0.13605158,-0.17242962,-0.052745953,-0.9725185,0.09309146,-0.11006808,-0.5077431,-0.42013064,0.11708262,-4.0668316,0.08957038,-0.31203738,-0.16815472,-0.25098813,-0.07278641,0.38735798,-0.7041006,-0.6756625,0.22280449,0.11298915,0.55481464,-0.07595777,0.1669961,-0.28988487,-0.23240674,-0.20818675,0.02501095,0.15451148,0.22422071,-0.023138842,-0.4865911,-0.1073666,-0.11031017,-0.6400202,0.09731451,-0.4498109,-0.5603089,-0.10985244,-0.7796114,-0.22586016,0.7653413,-0.33873656,-0.1732723,-0.16098541,-0.034491528,-0.23079018,0.2700609,0.06349535,0.129357,0.04860499,0.078770384,0.04063469,-0.25546533,0.26129162,0.025234714,0.5244918,0.20715255,-0.12657996,0.26691294,0.6290052,0.50393796,-0.16152997,0.67300075,0.4419463,-0.0491569,0.16273877,-0.37067834,-0.22920202,-0.6125748,-0.46197307,-0.35405204,-0.41786125,-0.3471928,-0.17969008,-0.4107205,-0.87845975,0.37471664,0.014851253,0.4740641,-0.16862442,0.07470403,0.40645924,-0.07690064,0.17313342,-0.13404758,-0.2728291,-0.6383858,-0.14987364,-0.6549384,-0.6825997,0.4357529,1.0635337,-0.29314333,-0.15523513,-0.1357449,-0.43290326,0.07031492,-0.029494345,0.013567097,0.3222396,0.24024518,-0.25176504,-0.7362237,0.3388665,-0.17149253,-0.057367127,-0.8079402,0.035897765,0.5299956,-0.52607566,0.5362215,0.13527042,0.055625755,0.0846867,-0.54390866,-0.35319242,-0.0076208613,-0.06626522,0.6028221,0.31795985,-0.6035735,0.43220064,0.2636497,-0.13098453,-0.5822621,0.49455383,-0.045145016,-0.03509532,0.11705986,0.26932126,0.019641012,-0.13753806,-0.0019770067,0.2983467,-0.4573263,0.30762485,0.28969762,-0.041519444,0.43807468,0.14215018,-0.13579613,-0.62664974,0.025748715,-0.5347087,-0.18830983,0.16644412,0.12430576,0.2823265,-0.03714228,0.11008855,0.32478884,-0.2612891,0.18997681,0.04737072,-0.22900121,0.28361598,0.5650435,0.37103423,-0.45063317,0.42801285,0.1619875,0.026790181,0.08481515,0.2257836,0.49964786,0.35961667,0.2463913,-0.024553647,-0.3292712,0.11218367,0.64245915,0.08511445,0.25298622,0.038299005,-0.056026686,0.23445283,0.15349732,0.27303082,0.28549862,-0.30644572,-0.100535594,-0.12093755,0.2583206,0.6199625,0.22542076,0.2206515,-0.031505823,-0.36479712,0.19800492,0.047930166,0.07214516,-1.231545,0.41437447,0.33419085,0.62759894,0.5116065,0.11128259,-0.14071685,0.44877517,-0.16188265,0.18791078,0.49873057,0.023344418,-0.60453445,0.6144555,-0.58717513,0.5500352,-0.0022258672,-0.055489153,0.20671809,0.29909113,0.25094908,0.9356931,-0.025240803,0.056250155,0.07816506,-0.28212443,0.088871785,-0.43726742,-0.051466767,-0.6231801,-0.18657623,0.58480567,0.5177557,0.098753504,-0.3218304,-0.113792084,0.010624598,-0.16760647,-0.117854275,-0.13134187,0.06460748,-0.1003611,-0.6068538,-0.395494,0.5364585,-0.008712356,0.14986058,-0.042875696,-0.17481367,0.32967445,-0.28637162,-0.12303165,-0.10252603,-0.7275955,0.008734484,-0.21253811,-0.3362707,0.54735774,-0.44160688,0.26778415,0.16063696,0.025533607,-0.32811105,0.25929776,0.01347511,0.82126474,-0.23359966,-0.12870233,-0.45667347,0.15051773,0.36944523,-0.19882274,-0.18400073,-0.39527178,-0.14546305,-0.39048874,0.30603558,0.05765788,-0.15304156,-0.19475758,-0.029269822,0.06017378,0.3511466,-0.26635155,-0.0522888,-0.20504348,-0.20522106,-0.4283793,-0.19924755,-0.3905253,0.20271973,0.256052,0.144158,0.047959175,-0.11033749,-0.21011531,0.118311204,0.101867534,0.2660211,0.20565607,-0.12773313,-0.15397857,-0.14792176,0.13892348,0.38722992,0.17838015,-0.17604987,-0.42818186,-0.19689447,-0.31744155,0.077360794,-0.17072707,0.2796741,0.020190204,-0.39316943,0.63862896,0.13715132,1.2288315,-0.037865967,-0.39347872,0.08575977,0.5525839,0.1779033,-0.04337409,-0.09368461,0.834811,0.6579674,-0.0738669,-0.25961718,-0.3625876,-0.30777326,0.40108514,-0.23976249,-0.21110551,0.0028687615,-0.5609363,-0.24515307,0.22071333,0.13430673,0.24664211,0.08437461,-0.2135822,-0.003949826,0.0899147,0.48544607,-0.41369355,-0.14035876,0.26493117,0.36287245,0.2755216,0.33024374,-0.41937232,0.45741442,-0.5909599,0.22618245,-0.418126,0.18213052,-0.27639458,-0.27663973,0.15553926,-0.026166603,0.33853865,-0.17540164,-0.26528478,-0.34485075,0.7517889,0.124235906,0.23535989,0.8022515,-0.34280407,-0.18622084,0.10740516,0.5061711,1.1113139,-0.117727615,-0.07567053,0.34987828,-0.29506662,-0.6973412,0.08477674,-0.30760577,0.30807766,-0.09733381,-0.21542017,-0.44133458,0.20257665,-0.106804155,0.08723655,0.023683736,-0.555978,-0.29286653,0.26782617,-0.24935682,-0.27857116,-0.43900928,0.033732194,0.63803715,-0.44012782,-0.47711754,0.10328188,0.09951925,0.03181666,-0.6077655,-0.052845586,-0.25544378,0.3422803,0.0799186,-0.4261223,-0.061170097,0.22036767,-0.3155187,0.30469963,0.2637227,-0.32059374,0.18094991,-0.08079747,-0.17577441,1.1309966,-0.18905164,0.043827515,-0.5963803,-0.49892545,-0.75536346,-0.40076122,0.30277374,0.20780641,-0.06333169,-0.82268256,0.08675235,0.05928004,0.14304526,0.019050142,-0.37038186,0.4053898,0.079336904,0.3741541,0.07912137,-0.84747714,0.016954193,0.17534308,-0.1029782,-0.6667064,0.61242014,-0.21958067,0.71839243,0.05865358,0.14373598,0.11006188,-0.47069648,0.0049848384,-0.44429398,-0.19101243,-0.5399528,0.19869559 -839,0.3024558,-0.14345345,-0.36237445,0.054663062,-0.17828281,0.079571635,-0.31098145,0.39965072,0.30615476,-0.4620025,-0.14300631,-0.3233953,0.03256344,0.30245438,-0.14598252,-0.59937716,0.052761417,0.17697228,-0.62744725,0.524141,-0.3739321,0.29880422,0.16720422,0.310629,-0.0726579,0.057195153,0.23012242,-0.14801146,0.19264163,-0.09221762,-0.00013955739,0.16865963,-0.78582764,0.24567135,-0.33651355,-0.43461707,0.16017789,-0.6089016,-0.53262794,-0.855662,0.32198027,-0.7978828,0.65620714,0.3929865,-0.10082364,0.10400099,0.09021847,0.36772186,-0.21762389,0.03524414,0.25544998,-0.2376252,-0.0011806213,-0.40718985,-0.22594555,-0.27579162,-0.63068956,0.09748824,-0.45436093,0.008025197,-0.29108948,0.24963456,-0.16166407,0.03898605,-0.17166358,0.42234242,-0.39168966,0.053515073,0.24706186,-0.2071111,0.46570382,-0.64113396,-0.021845102,-0.16507703,0.31056574,-0.43499535,-0.28422683,0.22505966,0.26562503,0.55629885,-0.041243132,-0.28459147,-0.23158683,0.09744824,0.14251265,0.4982701,-0.20239513,-0.5282973,0.026299072,-0.011136676,0.116184585,0.07588924,0.08889042,-0.44611084,-0.1254366,-0.23058695,-0.084919624,0.47298166,0.6836004,-0.36505702,-0.28910714,0.2313419,0.6796254,0.16294795,0.10532678,0.11151516,0.06942455,-0.7016183,-0.21648768,0.07582581,-0.2825229,0.4777717,-0.15878445,0.20413853,0.62932956,-0.09691548,-0.18308392,0.21722382,-0.12280235,0.052980974,-0.2241984,-0.27479425,0.32894677,-0.36736026,0.11742993,-0.25824726,0.6916293,0.2541596,-0.6977843,0.22721726,-0.69721985,0.20321208,0.1066755,0.5543554,0.5788876,0.59531265,0.27948156,0.871829,-0.5366559,0.12931904,-0.058207273,-0.24181388,0.13998124,-0.24949224,0.055275753,-0.3887238,-0.18595362,-0.28944433,-0.14417475,0.247042,0.24841824,-0.56031704,-0.059077825,0.16485223,0.79997975,-0.21745157,0.031346437,0.74292445,1.0038264,0.94965357,0.05407754,1.3639382,0.23409103,-0.24308611,0.093234666,-0.1073122,-0.8619057,0.2765381,0.34876654,0.07436861,0.17201479,0.114560716,0.00979275,0.40929848,-0.6956264,-0.012773241,-0.22430478,0.10546044,-0.005821118,-0.36626816,-0.24400638,-0.13565412,-0.10621865,-0.049060818,0.21695104,0.21680689,-0.22068399,0.30856034,0.15929678,1.2270983,-0.0014407497,0.09453594,0.09579469,0.35994127,0.30966124,0.07924971,-0.049973626,0.16975302,0.27530092,0.13092205,-0.57667124,0.12578826,-0.017099533,-0.38562787,-0.22173034,-0.14846052,-0.047303922,-0.029570542,-0.412848,-0.21243161,-0.0656682,-0.1795246,0.4286638,-2.5010228,-0.13876547,0.11824182,0.3991894,-0.19303305,-0.28900844,-0.16040275,-0.54127085,0.64231724,0.30092126,0.40294918,-0.7400497,0.3843392,0.52506185,-0.7615254,-0.10604771,-0.66697764,-0.13134922,0.042745676,0.24376018,0.29786363,-0.031831805,0.09038765,0.114689216,0.49264145,-0.13846298,0.038858574,0.2689282,0.49050567,-0.0668796,0.36951828,-0.029910726,0.5625816,-0.4771104,-0.28912002,0.5083076,-0.34930676,0.11818942,-0.15761405,0.013458353,0.4461227,-0.47356975,-0.969068,-0.77360344,-0.3094376,0.85463834,0.032392584,-0.42258245,0.12712294,-0.18567327,-0.21868967,-0.06016433,0.7865347,-0.11228049,0.11474597,-0.872209,-0.15352899,-0.1052172,0.42441082,0.05495315,-0.12739,-0.62908465,0.65848225,-0.032923676,0.30495846,0.62651974,0.14863183,-0.31583259,-0.5595473,0.10206643,0.83877784,0.27885097,0.18211314,-0.2944338,-0.14766718,-0.16512808,-0.008036444,-0.16630442,0.79103416,0.55792457,-0.22426976,0.028616726,0.23408347,0.21052696,0.1298087,-0.2810782,-0.37076995,-0.18738535,0.05614312,0.6387606,0.87698716,-0.25032094,0.056396767,-0.1294851,0.49016154,-0.20543051,-0.43472508,0.72778934,1.2134647,-0.07431719,-0.05332005,0.7326529,0.3007841,-0.19630536,0.5022495,-0.6175162,-0.5467578,0.40311053,-0.15678619,-0.50841963,0.29506114,-0.27862695,-0.0078832265,-0.76181537,0.3513196,-0.45227286,-0.32571566,-0.6545519,0.014897608,-3.3965793,0.24293217,-0.34068334,0.112984166,-0.16366665,0.048602104,0.1151782,-0.35411647,-0.5573504,0.2835198,0.23595619,0.5580434,-0.22495858,0.25269163,-0.28375444,-0.21798769,-0.38777953,0.28029102,0.28285983,0.14347826,0.049768236,-0.44504753,-0.08250684,-0.17114235,-0.31967145,0.0978458,-0.64108306,-0.21926561,-0.27464744,-0.5632817,-0.38091767,0.6731837,-0.45824617,-0.058621205,-0.21551703,-0.01214705,-0.053988934,0.34768316,0.04199995,0.19660242,-0.111272685,-0.07337026,-0.07003099,-0.067349195,0.36428392,0.12444652,0.10888402,0.36482954,-0.09110569,0.03660256,0.38516933,0.8021211,-0.17062873,0.9429074,0.39452422,0.037846167,0.34889892,-0.10557736,-0.46569267,-0.5314878,-0.14544985,-0.112553686,-0.3882782,-0.46027103,0.10690035,-0.46519873,-0.71718967,0.51774716,-0.025688943,-0.16654569,0.22264364,0.23636581,0.4164381,-0.4293865,0.024436556,-0.07578754,-0.21340516,-0.51507384,-0.21375522,-0.5588281,-0.56320727,-0.05728442,1.0920489,-0.059261765,0.09616877,0.20044602,-0.037871484,-0.048889976,0.2948267,-0.09454783,0.24382159,0.6527299,-0.003637222,-0.80926555,0.5979138,-0.028653502,-0.41343468,-0.68550366,0.41921595,0.6652405,-0.77762955,0.6824594,0.37728485,0.0068014264,-0.043371778,-0.5611069,-0.30708158,0.0020554662,-0.2009057,0.43001983,0.17438892,-0.6932929,0.36220407,0.28297532,-0.45032963,-0.7982078,0.5609405,0.06572976,-0.50515246,0.11799681,0.41067788,0.0056760726,0.07516423,-0.2154143,0.21596439,-0.30278483,0.37636536,0.15327889,-0.07754281,0.17728941,-0.22470053,-0.090528265,-0.85248876,-0.013408803,-0.57809347,-0.36486334,0.23107004,0.14320903,-0.1233426,0.15627858,0.10777332,0.46587133,-0.18225679,0.15863106,-0.17183271,-0.27944794,0.32762903,0.30594906,0.36530966,-0.4194746,0.6310413,-0.15254542,-0.2133952,-0.17995879,0.2526251,0.46670386,-0.09097731,0.4605028,-0.023999132,-0.009418139,0.32365793,0.7747571,0.11010531,0.19639191,0.05020792,-0.024640927,0.3721512,0.17384604,0.11386897,0.035159286,-0.6852669,0.22625223,-0.27980846,0.06116601,0.50825596,0.07391395,0.335254,-0.1946822,-0.4736728,-0.011350164,0.40981498,0.23314212,-1.0539215,0.22264692,0.10589591,0.80303,0.5358258,0.10993035,0.15093143,0.62101835,-0.15711334,-0.04849094,0.2672107,-0.03712827,-0.31289053,0.5200051,-0.6751138,0.369319,-0.04987675,-0.029986624,0.08520154,-0.078871235,0.31029564,0.9263972,-0.22320469,0.06338432,0.025354909,-0.120851465,0.042908356,-0.44083244,0.10742851,-0.39519817,-0.3816571,0.7704048,0.55867386,0.369875,-0.20670532,0.05313375,0.148004,-0.20062438,0.15038145,0.048086863,0.03464598,-0.044120345,-0.6288933,0.09953013,0.6812774,-0.021875607,0.12651423,-0.054371737,-0.2547572,0.30790144,-0.2853768,-0.17384185,-0.24553753,-0.8862705,-0.14230584,-0.47150058,-0.15229066,0.5310715,-0.102369785,0.29162204,0.30448556,0.16232938,-0.30940574,0.5406224,-0.030781802,0.7941317,0.21569674,5.371754e-05,-0.41645366,0.30948493,0.119363435,-0.23498178,0.06574322,-0.17471798,0.10833946,-0.40937102,0.425623,-0.024142586,-0.2678866,0.11987838,-0.08616496,-0.050826706,0.638381,-0.26372454,-0.22314739,0.2901119,-0.13148405,-0.17220828,-0.21265274,-0.15059341,0.2064724,0.29131156,-0.005600214,-0.06806799,-0.09181289,-0.22957699,0.4627668,0.07499523,0.45544484,0.29918316,0.1199814,-0.38080418,0.07757099,-0.00831919,0.64541245,-0.109021194,-0.23122412,-0.048613556,-0.6017916,-0.4000065,-0.07307872,-0.09913705,0.11748329,-0.041757636,-0.099858314,0.7788102,0.24052726,1.1505262,-0.073685415,-0.34774286,0.19652775,0.4478833,0.02532378,-0.1323893,-0.630961,1.053399,0.49337274,-0.12016089,-0.041163903,-0.19133282,0.113924116,-0.035886623,-0.21038836,-0.06716626,0.008143317,-0.6511474,-0.23534265,0.31336433,0.3413513,0.18535465,-0.11720505,0.14242037,0.27793986,-0.050364103,0.07982468,-0.6174142,-0.29116338,0.2886512,0.32958964,-0.052317917,-0.039535,-0.47720873,0.3994443,-0.39478174,-0.09771672,-0.3312268,-0.033258878,-0.39674044,-0.23982143,0.2383932,-0.116625294,0.3821861,-0.4610294,-0.31320626,-0.14113697,0.2884188,0.26579395,0.25797677,0.6632335,-0.12330063,0.075765185,-0.06834293,0.6750529,0.9775806,-0.5842037,-0.1515287,0.531264,-0.43558884,-0.43955657,0.35416597,-0.36421162,-0.031388145,-0.12140925,-0.17863461,-0.440029,0.17331325,-0.05779022,0.17491642,-0.11887724,-0.86359704,-0.1411334,0.45270523,-0.48328003,-0.33981782,-0.4141545,0.32769597,0.73341656,-0.14182237,-0.37482306,0.24587242,0.2284005,-0.32168505,-0.63858867,-0.025380492,-0.31268156,0.2069497,0.22731112,-0.3155988,-0.15384386,0.19387498,-0.65789413,0.085651144,0.069252774,-0.34965894,0.05219764,-0.33979255,-0.11486717,0.93720776,-0.3559341,0.14418499,-0.57757765,-0.5634212,-0.99469936,-0.26298752,0.6559439,0.29431075,-0.017169205,-0.62150866,-0.17205088,0.0056369076,-0.27154657,0.061464887,-0.18119612,0.47983837,0.087930426,0.6037077,-0.24882795,-0.9804698,0.13579991,0.11780889,-0.2076923,-0.52990156,0.39844593,0.32185686,0.9322554,-0.032407165,-0.055473067,0.44136745,-0.6203864,0.076118864,-0.32527834,-0.13927136,-0.7053563,0.06610025 -840,0.2984393,-0.1756135,-0.39622456,-0.07861288,-0.33287245,0.048629384,-0.11746575,0.53910244,0.133103,-0.12167524,-0.26533037,0.008931518,-0.044684935,0.18941699,-0.15003228,-0.5459176,-0.13029878,0.08461936,-0.5374476,0.48658818,-0.4042274,0.3604657,0.067552775,0.32060233,0.011016356,0.28135937,0.1052347,-0.1286132,0.011391683,-0.083868615,-0.07935774,0.3221884,-0.6501726,0.30697188,-0.2862216,-0.25912994,0.072102346,-0.30972433,-0.18410508,-0.6792825,-0.021933433,-0.74328524,0.52645713,-0.13260016,-0.27060756,-0.1663324,0.06853547,0.2828166,-0.32905802,0.05226994,0.32503992,-0.116891675,-0.11184544,-0.20199236,0.19296823,-0.57065266,-0.46020684,-0.11834236,-0.500894,-0.1950382,-0.11281172,0.22191034,-0.30964836,-0.10377534,-0.21851282,0.276589,-0.4664313,0.084181,0.16143677,-0.28274742,0.2161581,-0.5936541,0.08349131,-0.13996415,0.39775792,-0.21282569,-0.16220129,0.3454278,0.33094186,0.22642152,0.1761717,-0.21815915,-0.07559283,-0.13360196,-0.04548881,0.46157694,-0.27238908,-0.3871488,-0.14583956,0.069270544,0.3455647,0.260586,-0.00018777166,-0.07381212,-0.10469792,-0.10838453,-0.016211884,0.28605705,0.3939375,-0.19675295,-0.29981628,0.30562305,0.47313255,0.3241697,-0.120195605,0.026928868,0.026927412,-0.5021344,-0.1819537,0.060339026,-0.084887795,0.506518,-0.07773751,0.18366806,0.83763885,-0.03428969,-0.03829791,0.15974712,0.09820449,-0.13201019,-0.22754773,-0.07284596,0.17911656,-0.6014813,0.099508025,-0.18022501,0.7510673,0.11275605,-0.73657596,0.29569364,-0.4708257,0.012205013,-0.03671,0.58488506,0.63400507,0.5738235,0.14286439,0.64546216,-0.2916073,0.1717193,0.021854391,-0.41536543,0.22154272,-0.19748116,-0.17064145,-0.48731306,0.029063387,-0.13758825,0.08840186,-0.006442004,0.25873625,-0.6454681,-0.117480434,0.24719082,0.61812145,-0.33963603,-0.14491014,0.65265083,0.96574974,0.74956214,-0.022070233,1.1184936,0.26925737,-0.11736141,0.13203792,-0.15144245,-0.61816174,0.19353321,0.3914698,-0.4214597,0.3211389,-0.039738897,-0.15431438,0.23383379,-0.34599993,-0.038383156,-0.006031326,0.3071708,-0.08808967,-0.089826986,-0.5056471,-0.24382648,0.054036915,-0.03449545,0.015460538,0.27274886,-0.16283607,0.36610943,0.20860727,1.2294226,-0.084055245,0.07622779,0.14545669,0.453662,0.26296636,-0.1743813,-0.13865077,0.47641498,0.34609693,0.07230313,-0.44730085,0.27905807,-0.33331585,-0.47012252,-0.13297233,-0.23680855,-0.19663107,0.13522372,-0.49127647,-0.2418369,-0.013748293,-0.18008618,0.48535705,-2.7627237,-0.08523713,0.011136317,0.38107055,-0.39698347,-0.32690287,-0.04496755,-0.4796885,0.17066832,0.30710894,0.47695494,-0.66046387,0.34003243,0.5068416,-0.3484622,-0.20376517,-0.6096626,-0.08824941,0.116579376,0.3862402,0.057195127,-0.17654392,-0.1831689,0.07383585,0.54393303,-0.09573369,0.23021217,0.4546018,0.30257133,0.036762152,0.37212324,-0.13467373,0.58647096,-0.22133109,-0.12913844,0.33893082,-0.24689195,0.29669207,-0.07609987,0.021712754,0.42553425,-0.44849652,-0.83760566,-0.5672471,-0.32047004,1.1284636,-0.35113314,-0.2798245,0.20155859,-0.0096754,-0.09887284,0.080936074,0.4997771,-0.0941427,0.25294963,-0.61630577,-0.029798716,-0.054712545,0.23988621,-0.018341666,-0.121903196,-0.4167533,0.7015132,-0.109607115,0.672613,0.3271748,0.18361568,-0.10466128,-0.4683917,0.018181765,0.8393641,0.42768663,0.093662865,-0.07176137,-0.13163461,-0.18188645,-0.037237473,-0.09168022,0.6593324,0.8191093,-0.04577086,0.16429015,0.26159334,0.0597074,0.10899566,-0.14879659,-0.2503505,-0.021860838,0.20968713,0.44647232,0.656877,-0.14142497,0.4511077,-0.14685127,0.42029205,0.008936469,-0.5512969,0.48726076,0.59679097,-0.23944166,-0.009047462,0.5611342,0.42691606,-0.2988418,0.41558522,-0.5648777,-0.33366504,0.6294737,-0.20610237,-0.58832854,0.2660706,-0.19533077,0.21916382,-0.87255573,0.5500552,-0.3372552,-0.63363427,-0.4071153,-0.041884538,-2.9195197,0.17876564,-0.107301846,-0.034365408,-0.33175778,-0.121999875,0.33302847,-0.7243312,-0.47941837,0.109277174,0.23678944,0.4743903,-0.18974717,-0.02279061,-0.26765132,-0.32749707,0.016046375,0.3112836,0.2381197,0.12069036,-0.23247899,-0.3961144,-0.185201,-0.02846747,-0.45613012,0.17598902,-0.57602805,-0.54823035,-0.06848539,-0.6412843,-0.19776185,0.66781765,-0.4946101,-0.032666445,-0.0912345,0.09122448,-0.15714097,0.11915161,0.07380003,0.11029505,0.02743716,-0.02866805,0.06631557,-0.4320335,0.47957006,0.061781246,0.46783704,0.16027446,-0.14149041,0.17937624,0.5858812,0.5112672,-0.2632638,1.0089821,0.39654773,-0.09273858,0.27952698,-0.15213516,-0.46634492,-0.5778103,-0.27379727,-0.034341935,-0.41342273,-0.30027634,0.16721661,-0.22700465,-0.90640974,0.6505814,-0.12922032,0.25990036,-0.071853355,0.22520892,0.46846482,-0.3028913,-0.06402694,-0.15912782,-0.15376744,-0.47026137,-0.3619466,-0.6256184,-0.58340365,-0.058581613,1.053294,-0.32087472,0.14183986,-0.0660971,-0.15431046,0.012410253,-0.08089811,0.09847156,0.25217757,0.4095734,-0.1340411,-0.70274895,0.4365878,0.008344201,-0.10882559,-0.3017097,0.13322425,0.59265804,-0.85854006,0.4485146,0.32827392,-0.08229338,-0.114718415,-0.62131876,-0.17139156,-0.0783325,-0.14837718,0.43975157,0.09393733,-0.7188751,0.4044488,0.26838723,-0.42913535,-0.6283817,0.32553855,-0.08738736,-0.27857444,-0.07680964,0.4064233,-0.16748571,-0.10118955,-0.07509143,0.19705479,-0.40263897,0.3023563,0.14061679,-0.17141683,0.27706033,-0.08433979,-0.24469385,-0.7012953,0.12114116,-0.47794715,-0.44641274,0.40092188,-0.040479742,-0.1715655,0.22924419,0.1611434,0.52730614,-0.36765447,0.06791368,0.08732353,-0.4710199,0.3478752,0.48153347,0.4719832,-0.24934898,0.351667,0.18215044,-0.11607201,-0.023720989,0.11546769,0.4274795,-0.033493076,0.35249203,-0.16431081,-0.09751887,0.40702176,0.8392144,0.19001415,0.4667254,-0.11062514,-0.038627766,0.14897676,-0.027014365,0.15507312,0.06378282,-0.49971324,0.08462096,-0.13426657,0.12028693,0.559785,0.271215,0.20270285,-0.07824813,-0.15293278,0.08196725,0.22933935,0.06287301,-0.9935518,0.38137978,0.28650835,0.80198765,0.2956275,0.24794431,-0.15633012,0.6511759,-0.21778557,0.19377466,0.36229524,0.011041471,-0.4649726,0.7183806,-0.60373497,0.38006797,-0.14069149,-0.11448865,0.20936486,-0.11531949,0.31415886,0.888783,-0.094839744,0.028928211,-0.0686778,-0.14616798,-0.081510715,-0.28995845,0.13791287,-0.45120367,-0.29129067,0.72616756,0.47554326,0.25625786,-0.23019075,0.02874845,0.0339874,-0.2473966,0.3364711,-0.062225766,0.08920359,0.12333019,-0.3589441,-0.15944871,0.6397571,-0.10463122,0.0035712847,-0.18614554,-0.24941985,0.082504265,-0.19635801,0.107569054,-0.02053387,-0.6591961,0.21525875,-0.43144158,-0.4420709,0.466661,-0.2800513,0.030355345,0.15626194,-0.014541997,-0.19964597,0.18308271,0.20695274,0.8083456,0.027857069,-0.24816515,-0.37602434,0.18528663,0.20023964,-0.27470708,-0.08135854,-0.4241535,0.05376992,-0.54876405,0.4041479,-0.106157884,-0.38410503,0.12484169,-0.16336654,-0.106132865,0.4308943,0.1121488,-0.18665901,0.029439876,0.062404666,-0.34369007,0.060185272,-0.37448454,0.14197826,0.42955306,-0.11318479,-0.1355016,-0.2634357,-0.22049227,0.332488,0.10611105,0.40539193,0.2828645,-0.10617982,-0.22905599,0.15098463,0.1946788,0.41214702,0.14763077,0.23053622,-0.40913597,-0.30713496,-0.25889307,0.024124375,-0.19394,0.30290365,0.057147987,-0.18863587,0.9330917,0.0075520277,1.1433051,-0.014966512,-0.3186362,-0.04419258,0.5816644,-0.058297336,-0.01625731,-0.5087758,1.1612726,0.5959393,-0.12592037,0.020032773,-0.15105732,-0.14993593,0.33218724,-0.26001135,-0.16753265,-0.051313873,-0.62496674,-0.37772247,0.28026634,0.3098761,0.088306464,0.042635374,-0.24693444,0.10048877,0.055273313,0.28539824,-0.64088964,-0.08541255,0.1485032,0.26144785,-0.14743997,0.29537752,-0.36140898,0.4213079,-0.6760003,0.20895168,-0.49984667,0.1626592,-0.20581278,-0.4272489,0.082968675,-0.06417889,0.3536859,-0.28756624,-0.43653783,-0.09159192,0.37363175,-0.036536675,0.17989305,0.60662776,-0.30741644,0.0319865,0.022574708,0.44027105,1.0386782,-0.3789893,-0.1069916,0.39910057,-0.41620302,-0.55117524,0.32767722,-0.31897974,0.044312894,-0.21965787,-0.53168267,-0.31977564,0.31227964,0.23463829,0.11376375,-0.03590141,-0.6033576,0.17550536,0.22439536,-0.34766415,-0.2467568,-0.19230977,0.4569504,0.7819963,-0.40429837,-0.32898983,0.05481894,0.20135471,-0.25985244,-0.4641052,-0.0003061848,-0.24845923,0.2032466,0.0651868,-0.36518398,-0.118029065,0.17844346,-0.3327836,0.1164257,0.36034793,-0.32231712,0.0698769,-0.16888188,0.057060055,0.9123985,-0.121851265,-0.22384726,-0.5400362,-0.47341946,-0.8212133,-0.6066457,0.19192635,0.4595193,0.027298715,-0.53698236,0.036380704,-0.21626337,-0.14962511,-0.06882871,-0.3848035,0.4334186,0.21938632,0.5822622,-0.2960098,-0.9505054,0.3410419,0.23570368,-0.026738405,-0.6519822,0.54930526,-0.18388632,0.86008114,0.07139041,-0.107967176,0.12987275,-0.5211711,0.047170784,-0.35946897,0.047328282,-0.75691706,0.083333746 -841,0.36219198,-0.21507937,-0.5592786,-0.2156264,-0.5001799,0.018489378,-0.33104813,0.3096626,0.1758578,-0.077002525,-0.17149182,0.0015302419,0.01935914,0.28297985,-0.16377096,-0.5166024,-0.26105198,0.09016748,-0.83997226,0.52258664,-0.5649702,0.38612023,0.1446734,0.38983983,0.16394173,0.3365627,0.2593523,-0.031505845,-0.040009014,-0.1244607,-0.30662537,0.48060516,-0.61198616,-0.06886565,-0.2160287,-0.47322312,0.078396685,-0.4725704,-0.12219,-0.7446917,0.2850557,-0.87509596,0.50488466,-0.1328724,-0.15164988,0.12893274,0.41781524,0.30058974,-0.25423557,0.040283673,0.2357281,-0.16234377,-0.19057284,-0.20383173,-0.007731144,-0.31963834,-0.49198106,0.024913156,-0.72422194,-0.29824826,-0.20355007,0.21503447,-0.3194018,-0.02733643,-0.2881316,0.41787246,-0.4370273,-0.13526684,0.18385293,-0.18377584,0.31267786,-0.53820825,0.02101024,-0.057088867,0.5522793,-0.11580256,-0.075736314,0.29589936,0.4367291,0.33554846,0.14875898,-0.37113714,-0.297036,-0.16142327,-0.072990194,0.41431364,-0.21179001,-0.433589,-0.14642794,0.03512024,0.4606213,0.4948543,0.026738051,-0.112396464,0.12740551,-0.005602678,-0.2531633,0.64361674,0.5322478,-0.37190965,-0.33051598,0.35261616,0.54212576,0.33802396,-0.27473876,-0.04262611,-0.121479064,-0.58940184,-0.06974074,0.15940121,-0.10479137,0.41979548,-0.088134885,0.16806443,0.8081053,-0.04401796,0.038709242,-0.062292982,-0.16174826,-0.20451434,-0.23930927,-0.23075622,0.18571374,-0.5731669,0.06851129,-0.2016876,0.6294171,-0.038858533,-0.8064407,0.36621732,-0.6151112,0.16660471,-0.05642585,0.6499867,0.7264702,0.46609437,0.44233656,0.7307452,-0.105146475,0.13889058,0.055547215,-0.5342349,-0.015209361,-0.25793532,0.18728907,-0.51373726,0.14006968,-0.1193423,0.10360878,0.072042175,0.49434727,-0.6371983,-0.22321157,0.18559885,0.6648079,-0.3512731,-0.036326077,0.8415693,1.0457247,1.0531617,0.051692333,1.0420139,0.32448578,-0.27595624,0.14427117,-0.3343474,-0.49080876,0.17669319,0.58745027,-0.31646302,0.41699016,-0.20733309,0.01663487,0.44555002,-0.32552192,-0.10343884,-0.11191751,0.113703564,0.12559332,-0.031616993,-0.45810884,-0.21836124,0.1204573,0.024300823,0.19319911,0.17711093,-0.19076777,0.36497495,0.017777124,1.2511953,-0.20637137,-0.00076272886,0.067437455,0.67216957,0.37845972,-0.11496773,-0.14349853,0.3546688,0.5339462,0.0013146003,-0.6295035,0.24385111,-0.34534168,-0.37946936,-0.13545926,-0.38689443,-0.10477028,0.089219816,-0.43279764,-0.1781778,-0.049107805,-0.26110354,0.31224298,-2.8273213,-0.18107647,-0.26905283,0.17123856,-0.25186422,-0.23035164,-0.007639444,-0.5985067,0.2882042,0.2898437,0.4469051,-0.58966315,0.4341393,0.53126824,-0.58735424,-0.23236948,-0.8094401,-0.15586121,-0.07082202,0.47370064,0.07339612,-0.2322425,-0.11128799,0.26044723,0.74352276,0.08010943,0.32919157,0.4219474,0.45362574,0.026325772,0.6689464,0.11360483,0.615145,-0.3051866,-0.2591677,0.41567802,-0.22813769,0.017547766,-0.14492597,0.14242499,0.57562536,-0.47156844,-1.0799564,-0.5755571,-0.14767198,1.1005807,-0.44288498,-0.51069415,0.20374899,-0.13193497,-0.018856283,0.11316417,0.62956655,-0.18701203,0.12187091,-0.7773225,0.2545291,-0.13638276,0.09129489,0.018464351,0.010989074,-0.44655022,0.6053103,0.033927638,0.5352924,0.21808773,0.29724458,-0.34280145,-0.35938877,0.13826412,0.77322096,0.33007115,-0.1709018,-0.17611767,-0.2146742,0.016448831,-0.10898379,0.013442864,0.4894944,0.72874695,0.028622894,0.16330053,0.28499117,-0.028648678,0.08544803,-0.1792085,-0.10595504,-0.08804102,-0.0020408442,0.5018595,0.5819508,-0.090443,0.5867579,-0.23954555,0.31699732,-0.05521712,-0.645181,0.7223526,0.6296858,-0.14520551,-0.049586426,0.6574374,0.54937446,-0.36872548,0.5294387,-0.6864159,-0.29651314,0.71572274,-0.1771606,-0.5179456,0.21023335,-0.2599797,0.09766881,-0.8246969,0.18049598,-0.3385395,-0.27565053,-0.33246562,-0.12278892,-3.5222838,0.15890451,-0.099631555,-0.016067911,-0.44566235,-0.31591886,0.3124953,-0.64415276,-0.6133997,0.18974614,0.30978405,0.48815188,-0.09793904,0.08953234,-0.21865977,-0.35314068,-0.11387246,0.27419516,0.17238222,0.30149782,-0.16870521,-0.42957047,-0.06684429,-0.048233192,-0.61859024,0.03164677,-0.55521363,-0.43349034,-0.09612013,-0.66675746,-0.2605857,0.6281651,-0.2623521,0.046780664,-0.30633262,0.060977172,-0.11401327,0.23209412,-0.008259235,0.3202428,0.12884519,-0.08532294,0.31422234,-0.35638434,0.5006484,-0.18370722,0.2976504,0.054667473,0.11302934,0.18231492,0.48423067,0.66562265,-0.26587403,1.0924901,0.48624033,-0.074350476,0.26639432,-0.27234942,-0.25829864,-0.7732032,-0.35460085,-0.07545492,-0.44560087,-0.40463334,0.073207565,-0.26179802,-0.76246643,0.7736103,-0.067321524,0.4618916,-0.1676876,0.4582052,0.476704,-0.20061421,-0.0452893,-0.06784412,-0.18372707,-0.5293362,-0.1542655,-0.7728236,-0.53919095,-0.1254756,0.80629563,-0.3095212,0.041707266,-0.004900551,-0.23091513,0.17065087,-0.04515934,0.26364282,0.36724204,0.55663097,-0.030512368,-0.72503054,0.3527984,-0.1429534,-0.09575259,-0.42155704,0.1366238,0.5692308,-0.74385446,0.53142154,0.43538272,0.0754873,-0.03960784,-0.6288923,-0.16255197,0.13175891,-0.06528727,0.62205833,0.2722061,-0.95084727,0.6437185,0.349123,-0.3382447,-0.7317918,0.42084143,-0.0878941,-0.26300237,-0.18206714,0.40075362,0.16442433,-0.03266265,-0.20641455,0.08753227,-0.45270061,0.33468243,0.12151361,-0.07110984,0.44765165,-0.20629518,-0.36228102,-0.7440566,-0.044885796,-0.52009785,-0.24984995,0.3516194,-0.11845536,0.04311035,0.08876876,-0.14314625,0.4061308,-0.26865852,0.104021624,0.035017796,-0.2217848,0.19458859,0.46956977,0.2672343,-0.47814587,0.53800815,0.18846127,-0.33415908,-0.011527745,-0.12465904,0.38232562,-0.052189376,0.33977816,-0.113742925,-0.23252697,0.5359992,0.7426568,0.07193645,0.31228212,0.0075208903,-0.06586416,0.22115707,-0.093715474,0.121485546,-0.0061853607,-0.52546585,-0.043102752,0.0032016437,0.08998382,0.5996972,0.19988911,0.23714705,0.03206235,-0.072559595,0.0071748258,0.22297798,-0.11456927,-1.1979042,0.4588241,0.26560208,0.87872046,0.40986255,0.14782906,-0.32734522,0.77514845,-0.3629772,0.02410254,0.42437682,0.083222546,-0.3256134,0.8373975,-0.5579818,0.46234623,-0.15932241,0.020364229,0.12056814,0.05739056,0.31853637,0.8493522,-0.2241558,0.13726804,-0.042425822,-0.15617847,0.06106062,-0.22155084,-0.010647939,-0.32079795,-0.3071868,0.72096264,0.31220993,0.37394655,-0.11131713,-0.12521982,0.08109037,-0.26162997,0.04411243,-0.03477392,0.056352485,0.04990814,-0.42198527,-0.17043658,0.52816755,0.2486425,0.13231887,-0.23432612,-0.44539034,0.1245007,-0.23156387,-0.052340522,0.018005379,-0.56670535,0.02363205,-0.18077567,-0.54595274,0.37348804,-0.19562048,0.049408857,0.16660999,-0.045160074,-0.14479247,0.04858832,0.12025118,0.712781,-0.14822595,-0.1520752,-0.36761722,0.053739604,0.22480913,-0.30417636,-0.07198153,-0.37116376,0.09186005,-0.43275923,0.4859641,-0.13081771,-0.55781865,0.120150395,-0.18350625,-0.052320264,0.56856346,-0.112509094,-0.16750367,0.0490304,-0.0834112,-0.29288083,-0.15516827,-0.22861342,0.22479148,0.2951029,0.009931811,-0.19008127,-0.23679426,-0.13525635,0.75847083,-0.082680896,0.42469272,0.23331842,0.08224315,-0.296835,0.10084224,0.22340806,0.49892253,0.024722386,-0.038695358,-0.46661967,-0.33165532,-0.31122863,0.25777185,-0.071198426,0.28373224,0.035482798,-0.23711914,0.93413097,-0.13117506,1.1433924,0.014755046,-0.33297342,0.04510756,0.5218541,-0.13377501,6.2354404e-05,-0.3100481,0.9654337,0.5720554,-0.06360341,-0.039993167,-0.44779682,-0.103216454,0.29535076,-0.40900624,-0.047667366,-0.1338113,-0.5132626,-0.4197335,0.23664598,0.16968209,0.10806577,-0.10553227,0.033901647,0.08388804,0.10000069,0.5899496,-0.63293076,-0.1643741,0.20068502,0.2396498,-0.23031302,0.092123136,-0.45224997,0.2684105,-0.5949923,0.046138227,-0.587043,0.16511232,-0.15696245,-0.34938082,0.12671433,-0.26182196,0.33486012,-0.21985118,-0.52076584,-0.018784622,0.36567682,0.051559765,0.08071248,0.593919,-0.34003633,0.1475482,0.1044047,0.64373267,1.1651782,-0.31628102,-0.060156632,0.2515486,-0.32105523,-0.49299297,0.29386625,-0.3020275,-0.01444507,0.044000383,-0.35403425,-0.27972305,0.31845385,0.2958081,0.045525137,0.023307411,-0.53628963,-0.09876774,0.3256316,-0.20201497,-0.14408681,-0.25214043,0.38160807,0.7982036,-0.32179922,-0.36857548,-0.020817813,0.39562008,-0.2150417,-0.5307579,0.088474736,-0.20849799,0.39313018,0.1394435,-0.353693,-0.063462704,0.21502116,-0.53664756,0.098283425,0.34758648,-0.25247306,0.11369118,-0.20944066,-0.042094756,1.0306194,-0.2459507,-0.046123397,-0.47375435,-0.49408016,-0.91627043,-0.29856485,0.15070018,0.14714128,-0.007167842,-0.48767197,0.13483343,-0.108606584,-0.21054827,0.14297272,-0.4235716,0.23221229,0.036467187,0.7746445,-0.29380527,-0.84334356,0.043414656,0.10016771,-0.027245605,-0.52056676,0.7436656,0.03719501,0.8438852,0.123765804,-0.002014033,-0.07362147,-0.35674435,0.0011690517,-0.38504776,-0.08432615,-1.0025814,0.12852944 -842,0.44597057,-0.3487859,-0.38750377,-0.10546681,-0.17697874,0.062443897,-0.31760454,0.568277,0.32759148,-0.56448275,-0.10819196,-0.10570064,-0.0614992,0.15663274,-0.09466295,-0.6441329,0.1265483,0.018252978,-0.491471,0.71965086,-0.50083345,0.2810052,-0.14599913,0.28577408,0.18442766,0.26611632,0.16025008,0.112871334,0.13725914,-0.05451015,0.065372124,-0.03184321,-0.42620105,0.31091675,-0.27558425,-0.5123148,0.13117594,-0.35801828,-0.4662466,-0.8541867,0.26569638,-0.6463105,0.5862992,0.021638999,-0.24793845,0.10802789,0.11364249,0.4109302,-0.2612345,0.08185817,0.14300863,-0.095755264,-0.023788564,-0.15432812,-0.27941975,-0.5910569,-0.46860653,-0.123032674,-0.45563066,-0.2801169,-0.14094886,0.24222524,-0.29270518,-0.10489294,-0.16109112,0.5539917,-0.48546675,-0.1327216,0.2742835,-0.09973567,0.20313047,-0.9185852,-0.33014405,-0.08766179,0.10113322,-0.04332942,-0.2584735,0.34038082,0.0969541,0.38803875,0.15428437,-0.17370635,-0.099843994,-0.13431484,0.055331785,0.5946508,-0.09809725,-0.23980355,-0.19218826,-0.14487658,0.3661037,0.168007,0.15117522,-0.35430205,0.09309047,-0.0017622411,-0.28834373,0.41245052,0.55191654,-0.33102766,-0.18677293,0.09936735,0.5824739,0.17076096,-0.24594954,0.102064446,-0.069931485,-0.3840756,-0.21031827,0.15767087,-0.052798536,0.4148855,-0.17179702,0.37655511,0.45243028,-0.1573026,0.18537919,-0.028676685,0.035888486,-0.03622272,-0.3659221,-0.4911266,0.35062996,-0.54266655,0.24723238,-0.4315082,0.5365931,0.22372842,-0.28837055,0.26175755,-0.5256577,0.076349154,0.032921672,0.52791506,0.77690315,0.25908226,0.19983871,0.76101977,-0.35911143,0.005384431,-0.08039828,0.11913383,-0.091355324,-0.1195724,0.29505017,-0.44707435,-0.056676902,-0.030259756,0.02283549,0.13931558,0.31488273,-0.56886715,-0.15925233,0.123403735,0.8446328,-0.2400411,0.24345255,0.8155075,1.3416593,0.8781891,0.007421395,1.2074319,0.4321278,-0.29850295,-0.023869194,-0.18449834,-0.48137525,0.1979402,0.37602574,0.3001619,0.28824055,0.09844327,-0.31572625,0.5804382,-0.49050763,-0.05335302,-0.15584995,0.043616597,0.05128829,-0.14437227,-0.47455317,-0.09648777,0.029519321,-0.13300836,0.17797206,0.20944087,-0.3311901,0.33254766,-0.083549194,0.8112881,-0.24021663,-0.073882416,0.1277444,0.57361025,0.28855446,-0.11767837,0.21350068,0.20724848,0.45755735,-0.058089834,-0.6549037,0.28961536,-0.34535614,-0.3991672,-0.1578959,-0.30648977,-0.17794646,0.07324968,-0.5011812,-0.25375974,-0.103015386,-0.12471425,0.15459314,-2.6999242,-0.34586424,-0.20429918,0.37517786,-0.13344964,-0.2558195,-0.08053573,-0.36758316,0.55303335,0.28988913,0.4594504,-0.5104437,0.4741698,0.5649616,-0.58398545,0.041314423,-0.57381016,-0.098443344,-0.08319202,0.45245644,0.06321129,-0.11192021,0.088666745,0.26522562,0.5781265,0.015867455,0.13051628,0.1611335,0.43388388,-0.32648566,0.33508873,0.05610188,0.49347907,-0.5347064,-0.16137563,0.31007275,-0.44629952,0.17706992,-0.3018071,0.15873139,0.566117,-0.28349793,-0.6939316,-0.5769767,-0.21046403,1.0290467,0.091868564,-0.5731263,0.07268231,-0.47557443,-0.2157366,-0.1468474,0.76256853,-0.06482499,-0.047150455,-0.72237265,-0.05770318,-0.12341015,0.11351877,0.08999845,0.05816755,-0.5812553,0.8482701,-0.056753658,0.4728405,0.37379107,0.29543197,-0.2177671,-0.36926624,0.10917965,0.4878756,0.5458556,0.21717459,-0.15734029,-0.035606265,-0.13895157,0.028028946,0.14108677,0.747131,0.6568269,-0.2214177,0.12391293,0.25463817,0.020947745,0.12702082,-0.27032205,-0.43150952,-0.26876563,0.24355537,0.50041527,0.2707592,-0.018278036,0.10060526,-0.02439588,0.21076657,-0.3822374,-0.4601157,0.4903239,1.0000865,-0.247969,-0.16134249,0.49638116,0.47100565,-0.12075615,0.46328095,-0.8155476,-0.38105598,0.39489397,-0.08813242,-0.37441522,0.07849479,-0.4081652,0.14110552,-0.83658224,0.33743307,-0.52835214,-0.4933958,-0.6876049,-0.25824264,-3.2594032,0.22476038,-0.37377247,-0.01984798,-0.2236904,-0.24244978,0.2935079,-0.5444568,-0.41713163,0.2988644,0.01950118,0.5818952,-0.0259776,-0.114586964,-0.32850665,-0.3108115,-0.35788426,0.18781258,-0.10357906,0.31592605,-0.023552785,-0.37243235,0.16171323,-0.017266925,-0.5398166,-0.047359534,-0.5253497,-0.19851485,-0.31889185,-0.60875475,-0.1815376,0.5946442,-0.19148317,0.1322311,-0.21694987,0.01027585,-0.13136207,0.37546495,0.18558781,0.2746912,-0.017527647,-0.044172738,0.023036055,-0.25333256,0.0772814,0.27367938,0.1082668,0.34732917,-0.115273386,-0.030968845,0.31197488,0.5661255,0.013241479,0.88469416,0.2724671,-0.10171269,0.5129839,-0.17175037,-0.33989444,-0.5152577,-0.45266804,-0.027880916,-0.23894164,-0.52307117,-0.056303903,-0.39808756,-0.6580144,0.4098538,0.052886106,0.2132187,0.18513654,0.3110595,0.379209,-0.19371851,-0.02295059,0.072476074,-0.026976297,-0.34873983,-0.33020562,-0.6533324,-0.5391668,0.093735024,0.77609104,-0.20836179,0.09378362,0.27255422,-0.24784502,0.09515459,0.35162777,0.10094671,-0.08005706,0.399766,-0.0392176,-0.617532,0.37735075,0.13571933,-0.3051095,-0.6135947,0.3683789,0.67352873,-0.6545282,0.6128958,0.30683783,0.069665484,-0.4153978,-0.49004358,-0.22090855,0.06369646,-0.2849215,0.4329931,0.039240763,-0.7114898,0.33316085,0.22308527,-0.1900915,-0.6907702,0.7256603,-0.090236075,-0.28710184,0.034682926,0.36457917,0.18981896,0.08310329,-0.1215617,0.3277783,-0.29062954,0.26909333,0.120705254,-0.06699438,0.51920897,-0.083010904,-0.084408484,-0.7052006,0.01153178,-0.6316774,-0.1895648,0.29477382,-0.13166912,0.08955535,0.25362805,0.011920198,0.34184724,-0.09275654,0.19681717,-0.18134683,-0.4583254,0.39392406,0.41991886,0.25276443,-0.22546552,0.70352143,0.037024107,-0.11537511,-0.069068044,0.29590195,0.33520702,0.22057009,0.6434809,-0.19492033,-0.091310054,0.11403137,0.9025891,0.2960127,0.38868448,0.1315545,-0.053215064,0.23728015,0.123602696,0.04941137,0.10698053,-0.24967244,-0.087599464,-0.22144292,0.25200891,0.3934158,0.0065938463,0.27567786,-0.07107298,-0.32378456,0.0077345646,0.27681637,0.04411114,-1.3349149,0.35766786,0.12992083,0.79779977,0.43184692,0.12698731,-0.26013067,0.47062048,0.08705267,0.005898751,0.24512036,0.08863216,-0.31382316,0.626324,-0.45161492,0.3900823,-0.08795253,0.062169526,-0.023928128,-0.07672808,0.529353,0.80424094,-0.2374693,-0.03931034,0.029849874,-0.2724768,0.077288866,-0.46337092,0.17173988,-0.33357114,-0.4029569,0.53604025,0.5077675,0.32125786,-0.30882385,0.02403593,0.0053895293,-0.14474581,0.1302378,-0.054593746,0.09018278,-0.18462484,-0.5956943,-0.18233758,0.40925968,-0.29913116,0.06709986,0.14041448,-0.3185733,0.14059983,0.1132176,0.1355761,0.117107004,-0.82376087,0.099867396,-0.32660568,-0.35352406,0.56546545,-0.17054719,0.20124935,0.32766873,-0.031135999,-0.18444887,0.37552974,-0.08012491,0.67072105,-0.034824204,-0.1661562,-0.399668,-0.0060166763,0.3442413,-0.31723896,0.13593996,-0.24573898,0.19492318,-0.5192921,0.5190221,0.066151254,-0.09759111,0.2906806,-0.13548523,-0.05761939,0.55204874,-0.18300197,-0.206899,0.18604572,-0.24546412,-0.30567595,-0.39524728,-0.049596127,0.26624358,0.056024905,0.3606925,-0.18766268,-0.2721317,0.048117336,0.3368191,0.19482501,0.18832889,0.4101658,0.06231784,-0.44188616,0.11640909,0.056962278,0.42912865,-0.11207753,-0.06931421,-0.06969898,-0.6420915,-0.4537974,0.10540729,-0.0866949,0.37977993,-0.017981797,-0.23840731,0.79294,0.15050325,1.0263944,-0.14495239,-0.4323917,0.09493317,0.65700257,-0.19669801,-0.030176204,-0.24621226,0.9338289,0.56657577,-0.051800694,0.010727768,-0.27690825,-0.018965263,0.29141444,-0.25205716,-0.14729832,-0.17059389,-0.7076301,-0.22992887,0.33285162,0.41341957,-0.075502,-0.04300103,0.13562606,0.2719317,0.04080069,0.34138563,-0.7520683,-0.18419005,0.3094128,0.13600752,-0.07070535,0.17277354,-0.34228188,0.3678524,-0.66958946,0.17776379,-0.34065452,0.041208666,-0.2426481,-0.3283803,0.26980448,0.002639789,0.41200414,-0.4898669,-0.38837022,-0.2819901,0.31096298,0.12301154,0.19268438,0.5614169,-0.13371992,-0.01274671,0.040211957,0.56718105,1.0444006,-0.21521385,-0.11787248,0.31480926,-0.6795384,-0.6019668,0.12052222,-0.33741543,0.04307052,-0.003044642,-0.2921593,-0.47253132,0.17221618,0.20281652,0.10336682,0.054432027,-0.66450024,-0.2702548,0.13507722,-0.41865274,-0.22342697,-0.39958674,0.26280215,0.58534914,-0.30059066,-0.1969423,-0.055002388,0.39212766,-0.2947927,-0.6552042,0.12940177,-0.29397088,0.47812277,-0.0008767247,-0.16853593,-0.19374742,-0.050651625,-0.4471522,0.041464202,0.0886091,-0.32595205,0.0030195438,-0.288957,-0.1672708,0.7040118,-0.08219899,0.10079013,-0.5476248,-0.52986676,-0.78981024,-0.47135532,0.28969103,0.46093014,-0.04719699,-0.5680948,0.08070871,-0.1338228,0.15015809,-0.027145097,-0.1386393,0.38894588,0.16185577,0.5441018,-0.10933207,-0.8647524,0.19591087,0.1578472,-0.10593875,-0.25090706,0.38072416,-0.009754405,0.898667,0.1244775,-0.027420044,0.08186034,-0.34856832,0.26857427,-0.27144337,-0.29884955,-0.7437048,-0.03164486 -843,0.38696644,0.0537536,-0.36227766,0.06936265,-0.09627478,-0.016592402,-0.18792571,0.13681544,0.25132173,-0.50558037,-0.36685625,-0.3766006,0.047983453,0.11099394,-0.16930349,-0.6632842,0.0005340668,0.18723664,-0.40491676,0.89932644,-0.23687807,0.556551,0.16687049,0.22598106,0.26136658,0.3964275,0.52176166,-0.071550384,-0.21799609,-0.052142043,-0.004582671,-0.17091945,-0.75639164,0.20735529,-0.3534417,-0.44035152,0.0015912607,-0.61346954,-0.5523326,-0.86583316,0.35894442,-0.87656814,0.4582392,0.1093264,0.03235432,0.21730152,0.16554919,0.3862065,-0.13202102,-0.044811763,0.12783402,-0.012173552,0.058790587,-0.15517512,-0.6056949,-0.24746796,-0.68575424,0.014290154,-0.36683705,-0.15464112,-0.34585956,0.062477347,-0.25397488,0.0135317035,-0.10968356,0.073593885,-0.6316467,-0.25365368,0.2949192,-0.22234155,0.11089395,-0.6388805,-0.29565448,-0.27628613,0.19560693,-0.38739568,0.032130573,0.5322829,0.20089601,0.4251304,0.1604101,-0.238914,-0.13439831,0.024023045,0.20757815,0.65013665,-0.14912659,-0.13560079,-0.0900166,-0.09688605,0.5877237,0.30378902,0.23168142,-0.22547904,-0.019855198,-0.32994902,-0.14677607,0.32650062,0.5814267,-0.23201217,-0.3984407,0.24707463,0.67886615,0.25626186,-0.10666117,0.032576486,-0.1260783,-0.27996537,-0.24379492,0.40418416,-0.25473085,0.5476188,-0.038905896,-0.055890404,0.7163131,-0.37508965,0.19166991,2.0384789e-05,-0.09944428,-0.12062876,-0.117442384,-0.2138199,0.49383467,-0.41766402,0.24707428,-0.42495522,0.5047913,0.35978776,-0.54886836,0.44671646,-0.6120596,0.17667617,0.14175305,0.7942845,0.57531273,0.27280584,0.4608862,0.83580106,-0.46980813,0.17102954,-0.11919455,-0.21756795,-0.046628837,-0.13365628,0.053657345,-0.27939427,-0.04875604,-0.034876864,-0.3444188,0.02826383,0.31847346,-0.64422727,-0.015251017,-0.1346848,0.68993,-0.3069189,-0.08340512,0.8252086,1.0813878,0.9588137,0.06633036,1.4645146,0.3873409,-0.2778734,-0.030518936,-0.3267631,-0.56015134,0.11510616,0.47725213,-0.39074707,0.6434005,0.2392501,-0.08842056,0.035654083,-0.54321605,0.06985566,-0.24875942,0.053658787,-0.178943,0.018563004,-0.35375646,-0.3414592,-0.1091951,0.03101359,0.3068396,0.24858025,-0.23755826,0.21669373,0.18718857,1.5507983,-0.013431733,-0.014202421,0.21941432,0.55805784,0.22356778,-0.08969641,-0.029629707,0.34808117,0.32578817,-0.07884441,-0.53154916,-0.033440147,-0.41071928,-0.3402353,-0.1365696,-0.33730757,0.13327853,0.15957157,-0.11327985,-0.018657446,-0.04619835,-0.45106778,0.5037051,-2.1848128,-0.18585123,-0.25129473,0.34515798,-0.28351778,-0.29609215,-0.37971914,-0.51480055,0.5229927,0.26171115,0.3592051,-0.6835644,0.13509999,0.66479516,-0.7528585,-0.104443185,-0.62774277,0.18179692,-0.114117034,0.3973789,-0.06774262,0.08040611,0.16438825,0.15775071,0.40388414,0.19415575,-0.017145528,0.35090148,0.5218719,0.10049497,0.4712394,0.2842015,0.44342157,-0.37934765,-0.1954812,0.586817,-0.401806,0.55778426,-0.24596158,0.01602565,0.4163281,-0.52628225,-0.72310245,-0.5426998,-0.7889957,0.9983393,-0.1424252,-0.5059783,-0.012738306,0.17984955,-0.069916695,-0.2216827,0.6398088,-0.29573697,-0.021695204,-0.580508,-0.21048339,0.051003125,0.2149284,-0.00073632825,0.2643274,-0.5479875,0.7235994,-0.22883788,0.20262307,0.29199558,0.35847062,-0.18178004,-0.59547055,0.2657854,0.8319452,0.4503446,0.087573916,-0.2408035,-0.23316382,-0.17443839,-0.29605624,0.011148792,0.43031633,0.7592469,-0.28712532,0.0020750384,0.56516165,0.16433099,-0.011805227,-0.16672502,-0.4092855,-0.23587006,-0.2044234,0.61650026,0.58810043,-0.28864706,0.2506271,-0.20240799,0.26602787,-0.079170465,-0.40381643,0.4559895,1.0600979,-0.15486155,0.03027346,0.51941836,0.34465247,-0.35233223,0.5749424,-1.0119622,-0.30004656,0.4903974,-0.055623464,-0.4924534,0.2276516,-0.18663393,0.004003346,-0.73143506,0.5212414,-0.21110779,-0.06870547,-0.49551594,0.041625556,-1.9616557,0.070006825,-0.3404735,-0.10134165,-0.17803563,-0.14743748,-0.18469238,-0.52343404,-0.6628894,0.34458795,0.0657821,0.42533132,-0.062717065,0.17634234,-0.27263921,-0.34077108,-0.4557092,0.23908314,0.30951816,0.49343997,-0.4634919,-0.31423488,0.056547496,-0.18476525,-0.56613576,-0.051595263,-0.5217416,-0.3297483,-0.4544767,-0.7300698,-0.25819933,0.6580562,-0.47291204,-0.050762,-0.25429422,-0.09724752,-0.061068222,0.3727114,0.37433258,0.28745073,0.16757672,-0.04786941,-0.074085556,-0.29051566,0.4903871,0.33372322,0.044068363,0.43079665,-0.25008252,0.1592255,0.11656074,0.61356163,-0.103126206,0.7539998,0.36342618,-0.27724102,0.36106735,-0.27450377,-0.30832735,-0.8113404,-0.41284806,-0.16678514,-0.23176321,-0.8738226,-0.20007579,-0.4282997,-0.7795674,0.534243,0.000686132,0.38036442,-0.053791825,0.1513439,0.45087308,-0.29195124,0.1299002,-0.019849231,-0.08479928,-0.51947886,-0.37347132,-0.7185182,-0.48363048,0.39347804,0.57107204,-0.128885,-0.24746059,0.2174205,-0.1964953,0.14219771,0.12774669,-0.007621592,-0.007228026,0.5538191,0.03667123,-0.5015361,0.56248194,0.31360328,-0.32698077,-0.6459141,0.35049403,0.7527634,-0.641614,0.64312416,0.37671998,-0.079643086,-0.11069936,-0.47216034,-0.28328118,-0.12343714,-0.24760197,0.24093515,0.078205556,-0.43376416,0.24537157,0.13373213,-0.38750556,-0.72489583,0.7713921,-0.05612909,-0.20576707,0.05719516,0.46912336,-0.06150073,0.07114954,-0.43860105,0.2111457,-0.3401955,0.14266488,0.3800489,-0.09295236,0.4723375,-0.08827007,-0.3444293,-0.8490327,0.5121292,-0.48653844,-0.33483604,0.243087,0.046953864,-0.2839864,0.30279994,0.31488153,0.36378703,-0.2260753,0.20252657,-0.041085456,-0.13356115,0.2326764,0.2947625,0.44769844,-0.4280521,0.6714449,-0.048345704,-0.16051602,0.12585285,0.11217614,0.28599647,0.027708054,0.03115047,0.25699103,-0.061058503,0.120325215,0.51101124,0.24366505,0.2247946,0.3337397,-0.10682117,0.41269785,0.18454851,0.29249835,-0.054904107,-0.4265073,0.13984941,-0.03734318,-0.15761775,0.38360772,0.17706409,0.28064793,-0.14545295,-0.3935808,-0.059507944,0.28090912,-0.2291557,-1.0011567,0.1456097,-0.04202728,0.6206325,0.64689547,0.015974667,0.21445201,0.4068116,-0.3698578,-0.07982181,0.34450373,-0.042790037,-0.45092183,0.49992326,-0.38094616,0.5172293,0.0030600291,0.08803265,0.1166044,0.12510231,0.27412075,1.0302584,-0.3800038,-0.050766844,-0.43420073,0.17888458,0.1762139,-0.37450406,0.49880654,-0.3044724,-0.5851494,0.726864,0.2117245,0.6055785,-0.05575057,0.0040098736,-0.0917445,-0.42770487,0.4044037,0.11649143,0.056528524,0.059250932,-0.595766,-0.24114695,0.567175,-0.5037385,-0.063115634,0.11533569,-0.0679565,0.05074845,-0.19490506,0.07513575,0.010346399,-1.1115137,-0.081246726,-0.34697026,-0.18655708,0.16080359,0.017804893,0.40665838,0.12526152,-0.1697065,-0.360435,0.46051592,0.25925538,0.8355955,-0.11397086,-0.35311514,-0.2733613,0.23838252,0.38720295,-0.25528744,0.37856337,0.054116823,0.17605278,-0.71440274,0.5490057,-0.07245053,-0.41363227,-0.12379926,-0.2790231,-0.38696787,0.5823464,-0.1176688,-0.24537688,0.07561461,-0.30531025,-0.15412265,-0.18428119,-0.16950217,0.08046989,0.32326862,-0.20266977,-0.02509855,-0.077701956,-0.07331051,0.45494393,0.16925438,0.22177836,0.1789082,0.19046673,-0.5221936,0.18719643,0.016607134,0.27350968,-0.06155932,-0.033068545,-0.06691037,-0.49699894,-0.47919142,0.3105091,-0.18596114,0.2925345,0.075927354,-0.11253416,0.6791003,0.18764463,1.258725,0.011723823,-0.41391817,0.08494775,0.69773716,-0.06059784,-0.22600073,-0.29926583,1.1944965,0.5513228,0.036645457,-0.15747693,-0.15060575,-0.19935352,0.15848035,-0.23804514,-0.07886701,0.11400532,-0.52353925,-0.34094244,0.16449052,0.4419514,-0.012620779,-0.07582043,0.072388425,0.226744,0.13262755,0.53046167,-0.43576968,-0.50512433,0.43790007,0.010813126,-0.14974247,0.18140496,-0.22164561,0.45907813,-0.45338833,0.31126043,-0.38825804,0.11028187,-0.13081071,-0.3733247,0.20328529,0.025239496,0.6733617,-0.5577705,-0.44729105,-0.3983312,0.3342087,0.14494576,0.2558298,0.69939435,-0.23060223,0.042309966,-0.26236385,0.7194014,1.2946061,-0.12852696,0.09446537,0.2180891,-0.6614857,-0.48189703,0.35011134,-0.37479213,0.022165481,-0.2623895,-0.40532568,-0.34735802,0.022917591,-0.009131642,-0.08387604,0.08028454,-0.79039186,-0.39392674,0.0785474,-0.14943613,-0.274888,-0.52101195,0.37172845,0.92193854,-0.1546424,-0.54534584,0.1874075,-0.089874856,-0.36867383,-0.6702559,-0.03922069,-0.07917063,0.38217402,-0.019281946,-0.13503914,-0.17484148,0.18009077,-0.3938278,-0.045883305,0.00036166265,-0.396786,0.011075556,-0.17448327,0.05836993,0.8085622,-0.22577229,-0.020294936,-0.47900063,-0.45034915,-1.0499456,-0.44405282,0.3683589,0.23830494,-0.08369747,-0.48310453,0.16091497,-0.24879386,0.20163749,0.14007378,-0.31426623,0.3270938,0.16981994,0.51549023,-0.411007,-0.9700568,0.1435779,0.010922615,-0.042221308,-0.6245383,0.37854245,0.14329672,0.5994605,0.1975083,-0.20962904,0.23469867,-0.583994,0.050993882,-0.331109,0.028805617,-0.72586036,0.21610586 -844,0.34229302,-0.33783957,-0.441785,-0.17192166,-0.2530645,-0.16279149,-0.15380774,0.33761922,0.51786596,-0.1361664,-0.2246143,0.09874486,0.13562258,0.31581149,-0.0749793,-0.63942295,-0.12467036,0.20154858,-0.7931638,0.6276062,-0.53280145,0.17844461,-0.030557461,0.33548784,0.24852069,0.28078058,0.07814728,-0.013851385,0.11227215,-0.059822876,-0.0904303,0.16888939,-0.55660826,0.27097252,-0.2595823,-0.24450736,-0.047115564,-0.47912994,-0.46626398,-0.70022696,0.16795617,-0.78172755,0.5276264,-0.0027385305,-0.2500423,-0.26019564,0.10905337,0.30342343,-0.4400308,-0.09316387,0.24329878,-0.10012544,-0.25784722,-0.23492563,0.030949712,-0.2404,-0.44667006,-0.026625114,-0.5461005,0.00044577816,-0.1741879,0.18926042,-0.3392807,-0.11570915,-0.2964508,0.59837914,-0.3652126,0.05003829,0.3081575,-0.08355489,0.17948098,-0.53830975,0.07792113,-0.11255946,0.42234,0.16173352,-0.48353252,0.3675735,0.22902273,0.4062264,0.377617,-0.30261835,-0.15223835,0.008551925,0.16391958,0.35163108,-0.09810752,-0.36679086,-0.355376,0.10694277,0.2876003,0.33928332,0.14989038,-0.19425707,0.027220448,-0.12816964,-0.14302133,0.7236273,0.6194603,-0.06483766,-0.24230988,0.2949053,0.40607223,0.47141647,-0.24879865,0.10552751,-0.022141388,-0.5592333,-0.26176262,0.020318458,-0.15214522,0.5286755,-0.29100803,0.15510523,0.6790249,-0.061252583,-0.23970091,0.3127649,0.021287233,-0.21855946,-0.4894544,-0.10143294,0.18163298,-0.707475,0.08909737,-0.26095954,0.6268361,0.15205896,-0.70407265,0.4509175,-0.5786155,0.27299723,-0.071049936,0.6622347,0.9088154,0.40057865,0.46046457,0.7639752,-0.30414483,0.112115115,0.04817402,-0.49464044,0.16541904,-0.24240905,0.038453963,-0.5053999,-0.007131142,-0.285761,0.050059903,0.036939766,0.20652993,-0.5269305,-0.20807756,0.2425179,0.78298813,-0.2276706,-0.17279375,0.8580861,1.2107844,1.1009785,0.02951896,1.2527407,0.10871657,-0.18476468,0.06873293,-0.30191,-0.7553318,0.22915077,0.25537878,0.0032867193,0.2889872,-0.046994668,-0.037400987,0.35339537,-0.4882063,-0.0780176,0.057683457,0.4086727,0.008534551,-0.12847714,-0.45887718,-0.23095222,-0.138228,-0.017524824,0.05599161,0.23430276,-0.3052279,0.29055843,-0.042075366,1.0581142,-0.08652543,-0.02177821,-0.051640045,0.5004251,0.30535606,-0.2870627,0.014034301,0.31185326,0.51207036,-0.034184333,-0.55696476,0.16730142,-0.38478354,-0.1659608,0.016851127,-0.39587113,-0.11156863,0.00032514334,-0.29837608,-0.14943123,-0.12097258,-0.32632646,0.3540125,-2.9452507,-0.35878488,-0.120633684,0.30241543,-0.22625327,-0.12253627,-0.035526127,-0.5344547,0.21611251,0.20172311,0.6026308,-0.59946394,0.6131425,0.5314026,-0.7242659,-0.06066243,-0.80221564,-0.13368565,-0.0066797137,0.55259454,0.2091593,0.11817456,-0.11468294,0.044470984,0.66814905,0.24733062,0.26153517,0.50202787,0.34354892,-0.13674438,0.5779576,-0.13196607,0.62532556,-0.3846328,-0.09393863,0.30107197,-0.2309217,0.34326276,-0.27586517,-0.016878763,0.69810486,-0.4590172,-0.822025,-0.48603368,-0.20213163,1.2192348,-0.27309838,-0.30717805,0.26111725,-0.42929783,-0.045139175,0.092589974,0.5865651,0.09950764,0.032363933,-0.6575075,-0.10281972,-0.030525826,0.09212389,-0.05895467,-0.21382527,-0.39292005,0.68684953,0.017566485,0.64763886,0.10441861,0.3088431,-0.22333162,-0.2567638,0.21635783,0.7336543,0.38437164,-0.07079023,-0.21569918,-0.16834086,-0.22442944,-0.07564878,-0.024523253,0.8244992,0.52447015,-0.32824054,0.15921181,0.51832604,0.06795559,0.11550028,-0.10990936,-0.26022592,-0.19633369,0.019734511,0.42481527,0.91773295,-0.09683279,0.3957119,-0.11749347,0.22387993,-0.0788059,-0.5969024,0.6477043,0.48564327,-0.23415567,-0.079426646,0.52105993,0.5060362,-0.30854526,0.5652669,-0.4576153,-0.20571728,0.47913384,-0.056558583,-0.3661084,0.08091123,-0.33290255,0.104884095,-0.7628892,0.28598443,-0.41504917,-0.6898799,-0.44855568,-0.008717624,-3.2027254,0.20950975,-0.2574725,0.026100228,-0.30810037,-0.07216427,0.28306672,-0.52192825,-0.67809016,0.27706465,0.2192849,0.5387121,-0.24677192,0.10597313,-0.22996545,-0.18381266,-0.334131,0.20997296,0.059044432,0.29748598,-0.24381661,-0.4014369,-0.17498113,0.02959016,-0.39371124,0.17201328,-0.69016165,-0.27123845,0.09496948,-0.71027875,-0.21609445,0.5966169,-0.215123,-0.11384413,-0.2859471,0.1965288,-0.18287714,0.24522704,-0.15167947,0.20773716,0.08032538,-0.116856605,0.092728935,-0.18100613,0.5370838,-0.08034249,0.4457992,0.09898523,0.031936124,0.19020104,0.563154,0.65313977,-0.31460682,1.0953976,0.46187854,-0.15139078,0.2840325,-0.16815044,-0.3670688,-0.47480556,-0.25893623,-0.065589756,-0.45306,-0.4251003,0.10347245,-0.26100752,-0.9008174,0.5836399,0.22052716,0.5066373,0.04111916,-0.06618124,0.5392327,-0.09775529,0.03290561,0.023905924,-0.25825945,-0.5692672,-0.12772737,-0.768838,-0.4109087,0.092999965,0.7927542,-0.36970294,0.16019076,0.016116252,-0.31339458,-0.039073315,0.16304995,-0.009250323,0.16459632,0.38221917,-0.12443154,-0.4748,0.24838041,-0.08802426,0.033277106,-0.48445258,0.31002644,0.72374684,-0.70234585,0.75926566,0.34191045,-0.07266229,-0.2424953,-0.6139538,-0.25829753,-0.03257625,-0.068966374,0.59644574,0.25546303,-0.9489062,0.45464385,0.2684118,-0.47391248,-0.71140796,0.40680984,-0.23707773,-0.013933902,-0.17766666,0.20689511,0.06113858,-0.02068832,-0.19534719,0.24159145,-0.3306725,0.42761707,0.026884055,-0.06339768,0.05543651,0.07707462,-0.28808695,-0.7911274,-0.17220925,-0.61021405,-0.20596862,0.43229803,-0.04157949,0.037603788,-0.040509503,0.32827923,0.34166446,-0.18784876,0.19360258,0.037502915,-0.49671802,0.27940822,0.5602478,0.49804088,-0.40582046,0.5475512,0.3397106,-0.25817242,0.2448283,0.17838065,0.25149557,-0.105503656,0.5396275,-0.09978137,-0.025985425,0.2872937,0.9410084,-0.003687878,0.40577865,0.06334829,-0.061958443,0.24756165,-0.016003894,0.3850131,-0.06639191,-0.6128053,0.05916834,-0.28924924,0.31373382,0.45679006,0.37038228,0.1295764,0.20641303,-0.4389678,-0.17850344,0.22025774,0.008010179,-1.551639,0.47973838,0.29572526,1.0011152,0.5312541,0.19806266,-0.25249138,0.78112483,-0.09922993,0.0663955,0.5598359,-0.041603837,-0.44217432,0.66614795,-0.6120092,0.5620304,-0.044067908,-0.0041907527,0.20750456,0.02874205,0.3762491,0.91733533,-0.20611356,0.119403005,-0.016359081,-0.11393639,-0.025382206,-0.49035284,1.9227466e-05,-0.3795831,-0.36013713,0.75493366,0.5219699,0.40076038,-0.23200583,0.027680708,0.039122306,-0.092695296,0.18095751,-0.03893563,-0.23291533,-0.03685322,-0.6692796,-0.094158806,0.49101844,-0.08536895,0.2283625,-0.27080402,-0.059719414,0.12013664,-0.23061687,-0.051344395,-0.11857926,-0.75434566,-0.16623558,-0.15399557,-0.3739899,0.49442843,-0.21303064,0.08516595,0.19960962,0.07211797,-0.1441629,0.4082823,-0.06902789,0.66314703,0.015680104,-0.13328452,-0.43559495,0.119696476,0.1999187,-0.21386819,0.08144765,-0.42460564,-0.02968208,-0.44219935,0.62090623,-0.0005723263,-0.5481333,0.05252527,-0.056074616,0.045886915,0.5624744,-0.073148094,-0.2529063,0.0014958804,-0.1996733,-0.5291569,-0.1301029,-0.1659652,0.26733908,0.38445416,0.0112069845,-0.1351505,-0.2866337,-0.060216546,0.3642238,0.023893895,0.48538554,0.26069483,-0.018529078,-0.14770481,0.05338115,0.35842422,0.63255656,0.15506716,-0.10043853,-0.26215774,-0.20082752,-0.41168055,0.09793198,-0.005742045,0.25856212,-0.14518659,-0.17162192,0.7234512,0.027003715,1.349306,0.068277925,-0.3165736,0.12700354,0.48569584,-0.06966441,-0.13259536,-0.46851525,0.8866859,0.48297134,-0.16820385,0.092471026,-0.7333162,-0.13805194,0.25788477,-0.23767714,-0.13216995,0.07899667,-0.54681057,-0.24639912,0.3207219,0.17136554,0.24912007,-0.04298837,-0.16614382,0.16685838,0.07301376,0.26185504,-0.6882712,-0.31758028,0.16731493,0.3904948,-0.054379344,0.10410279,-0.43296227,0.34371388,-0.6070879,0.12735355,-0.27522716,0.17148201,-0.43980756,-0.4660686,0.14145239,-0.054502692,0.4650899,-0.36199757,-0.43442023,-0.1464088,0.39911938,0.014325331,0.08453632,0.63746315,-0.32175612,-0.101610325,0.26640275,0.6070348,0.90443796,-0.4188194,-0.1284868,0.19682848,-0.51634485,-0.7057523,0.32140088,-0.31455085,-0.013913061,0.0101963235,-0.36220825,-0.49950215,0.2420528,-0.051576655,0.22425228,0.17165047,-0.77431256,-0.051051393,0.17384559,-0.25112876,-0.2045591,-0.20490646,0.21448976,0.6972966,-0.3208878,-0.47999218,0.100069426,0.10273931,-0.22905737,-0.57977253,-0.1554607,-0.30198544,0.27677488,-0.01583759,-0.38330165,-0.12970519,-0.06488982,-0.5317327,0.14826967,0.027050382,-0.281387,0.25226614,-0.020593137,-0.20827906,0.92594594,-0.31871566,0.15091866,-0.46310148,-0.5779224,-0.7169874,-0.268414,-0.058248866,0.25102976,-0.096098624,-0.5170159,-0.0038021207,0.008216579,-0.18095462,0.059114683,-0.53733355,0.48525694,0.035278246,0.40185046,-0.26780882,-0.99024504,0.21772937,0.2652472,-0.061564434,-0.7416083,0.55673,-0.11905112,0.7950924,0.08310688,-0.009684831,-0.12312722,-0.2853841,0.055437934,-0.34802762,-0.10005156,-0.72753936,0.073019914 -845,0.34975475,-0.22674516,-0.39626282,-0.24863236,-0.2627245,-0.053471368,-0.25411835,0.19328542,0.23885192,-0.13553713,-0.24811587,-0.08042806,0.13736019,0.26515827,-0.09550192,-0.7078742,-0.09208394,0.22989933,-0.6959113,0.42429787,-0.6760629,0.292168,0.03555998,0.2990879,0.12052118,0.29069838,0.22594404,-0.1165419,0.09526192,-0.15982284,0.010469605,0.14911185,-0.7166067,0.066590555,-0.17039366,-0.23821403,0.014256917,-0.47346836,-0.46805236,-0.6373543,0.14997016,-0.88844746,0.49704316,-0.021603107,-0.12897013,-0.08990198,0.2520407,0.43109486,-0.35357144,0.05608358,0.4032784,-0.20739777,-0.20087235,-0.21716501,0.067559384,-0.30332732,-0.52976483,-0.059782572,-0.46028748,-0.27465603,-0.33867812,0.18212035,-0.3813611,0.01833162,-0.12530683,0.26225266,-0.35914746,-0.08198314,0.34273225,-0.1400801,0.23230794,-0.43658036,0.023130378,-0.065880455,0.5424474,0.03030507,-0.15290864,0.4290401,0.20478167,0.33331332,0.22216006,-0.25727466,-0.23770583,-0.09746931,0.34615198,0.44891828,-0.096133746,-0.22975771,-0.18433268,0.034210462,0.21457566,0.3587924,-0.04751816,-0.1722609,0.0075907707,0.08005546,-0.2938971,0.6982853,0.61984575,-0.15287654,-0.398542,0.19404839,0.46298388,0.36339656,-0.28630018,0.1181373,0.035771172,-0.5417181,-0.27329478,0.14207171,-0.092084065,0.30594757,-0.1248647,0.13154764,0.9140838,-0.15265611,0.07825269,0.06002112,-0.02118671,-0.06520198,-0.27647287,-0.23895362,0.101864114,-0.62990487,0.06365997,-0.29834244,0.7677407,0.16357425,-0.79027134,0.4157309,-0.68015635,0.16415802,-0.2594865,0.5911616,0.79652584,0.30948862,0.42913648,0.7607016,-0.33946353,0.22883447,0.0578556,-0.50016534,0.27789882,-0.39961675,0.17125906,-0.47078636,-0.056207053,-0.19883971,0.1228831,0.105551936,0.22321616,-0.46926847,-0.13827439,0.30375347,0.7252974,-0.28479964,0.05733818,0.59882516,1.1518576,0.9914795,0.056447882,1.1694946,0.27517888,-0.30364576,0.20672128,-0.40587875,-0.77863556,0.16002907,0.26156574,0.090175286,0.18849938,0.018061187,-0.10852985,0.31598404,-0.5756551,0.10528757,0.062476534,0.27863234,0.15356314,-0.18860455,-0.29486355,-0.14187196,-0.010513672,-0.016229741,0.04750705,0.27967563,-0.23486625,0.27724606,-0.034985967,1.2063645,-0.023561606,-0.0863896,-0.030015588,0.61891586,0.2989168,-0.21155831,-0.019415362,0.34098002,0.53688544,-0.060824487,-0.6722608,0.2400559,-0.25825068,-0.13093266,-0.20888352,-0.38918084,-0.083606504,0.17189805,-0.28376383,-0.1227864,-0.025230613,-0.15796545,0.41566485,-2.8178253,-0.33178976,-0.06240889,0.29252443,-0.17951839,-0.120618835,-0.059952457,-0.55554265,0.26849523,0.20572019,0.46482,-0.51586854,0.6878744,0.58283013,-0.60564697,-0.10050491,-0.7053011,-0.20562348,-0.08466736,0.44254133,0.11770938,-0.006383828,-0.12073357,0.26813096,0.57722104,0.1595234,0.042292867,0.43046245,0.3806841,0.029289028,0.79303664,0.015694499,0.53058237,-0.19593276,-0.06369286,0.25481766,-0.23771867,0.24837868,-0.19796656,0.049209844,0.562017,-0.37070075,-0.9202948,-0.53433144,-0.35404631,1.0466621,-0.34629628,-0.35536534,0.17998013,-0.30432037,-0.17333409,0.04064989,0.6406559,-0.049389694,-0.020396262,-0.69322246,-0.0010409866,-0.04161573,0.11724067,0.067327246,-0.10799213,-0.3500123,0.7769795,-0.042899925,0.5425977,0.06606283,0.2343167,-0.11227658,-0.30759892,0.21995445,0.71188694,0.25885004,-0.018902982,-0.2587994,-0.2949891,-0.061711468,-0.14270104,-0.10280234,0.56788164,0.661308,-0.17486887,0.20937347,0.33939457,-0.190461,0.040553506,-0.22005966,-0.2581921,-0.0075641614,-0.10307651,0.47768456,0.7768038,-0.110980324,0.45902878,-0.13189271,0.15596625,0.0128729,-0.57004684,0.6018689,0.45925173,-0.037675355,-0.020612244,0.4028218,0.4455161,-0.35607773,0.45257786,-0.5030491,-0.12983547,0.52255446,-0.123750135,-0.36001635,0.19878021,-0.3544221,0.020751502,-0.7616802,0.2921935,-0.3873096,-0.30844292,-0.47143427,-0.0883801,-3.5530894,0.18368033,-0.17991434,-0.07234822,-0.25002646,0.03207165,0.4141467,-0.46718934,-0.52496517,0.21263789,0.22993395,0.67606026,-0.025778452,0.06856399,-0.32342258,-0.08393324,-0.37447223,0.23181336,0.11520551,0.29031834,-0.11076561,-0.29894224,-0.01592234,-0.098703615,-0.4953471,0.14636402,-0.48381487,-0.4318853,-0.04782877,-0.36599392,-0.30489853,0.6530495,-0.3104945,0.0075302697,-0.18732846,0.059250195,-0.26402968,0.31790754,0.11491076,0.16198611,0.06865833,-0.026866585,0.030927852,-0.3649848,0.5539005,-0.09059971,0.40756825,-0.013098495,0.15205672,0.045291435,0.4806432,0.51723385,-0.24153973,0.943686,0.42824206,-0.14192365,0.16916384,-0.3051311,-0.2769212,-0.466463,-0.21210393,-0.16171598,-0.36443806,-0.46942714,-0.03454507,-0.42255887,-0.7419135,0.55805504,0.05595272,0.2446867,0.038495064,0.12054551,0.28750488,0.052438673,-0.059801728,-0.00061392784,-0.10852284,-0.4571929,-0.18223463,-0.57926,-0.4484682,0.03926664,0.75218207,-0.40479642,0.047782212,-0.17261766,-0.34209973,0.06374394,0.12297584,0.06818731,0.31501183,0.38387778,0.038781594,-0.56293315,0.47949082,-0.15045743,-0.038853247,-0.6512109,0.0011303766,0.5464544,-0.774374,0.6335255,0.30704975,0.059782635,-0.01782152,-0.45898834,-0.22179659,-0.00958372,-0.20597114,0.44066715,0.06750778,-0.93376416,0.46681976,0.27650154,-0.4099196,-0.6408411,0.39009723,-0.0562146,-0.19151719,-0.06393309,0.03802424,0.12379328,0.0373045,-0.13304077,0.4004052,-0.34766978,0.26745358,0.059382092,-0.06640838,0.4040973,-0.01717971,-0.20071915,-0.654216,-0.050445747,-0.44094372,-0.23773442,0.24346186,0.018438313,0.1380523,0.29170975,0.24208893,0.32077518,-0.20344904,0.086116254,0.044076376,-0.42433402,0.2329294,0.44786188,0.31090355,-0.40634894,0.47307724,0.18664983,-0.20736219,0.24541788,0.10629654,0.355404,0.020975431,0.3753248,-0.040879436,-0.08909787,0.24900876,0.893309,0.023613831,0.4952693,0.069957934,-0.09288077,0.40726858,-0.011387659,0.02737132,0.06868285,-0.48958704,0.056895193,-0.11231969,0.31390634,0.48136845,0.34640265,0.28378436,0.07089258,-0.2980246,-0.030413976,0.2922872,-0.21022557,-1.2760327,0.5376588,0.23697658,0.8567758,0.44589645,-0.007360999,-0.010721586,0.7133326,-0.23663767,0.08106719,0.32457396,0.07803333,-0.3995809,0.6370821,-0.58706677,0.3617025,-0.025970152,-0.12939268,0.09251701,0.08481081,0.32912356,0.72337884,-0.3075862,0.10040023,0.11110652,-0.20067763,0.07573331,-0.35968572,0.037021566,-0.38194147,-0.33810297,0.7346558,0.49477053,0.36579347,-0.17162205,-0.038615625,-0.11002667,-0.1397931,0.1866739,-0.1020455,-0.22358333,0.20752454,-0.66949433,-0.17745563,0.5078238,-0.20496702,0.15182911,-0.17964326,-0.1640691,0.10596387,-0.15624358,-0.014835922,-0.03707483,-0.70049846,0.054404687,-0.1262318,-0.42934245,0.5721113,-0.24526203,0.16974942,0.290395,-0.026686942,-0.10637232,0.38148355,0.12906498,0.67065513,0.021236334,-0.1770436,-0.41653225,-0.074217625,0.21731456,-0.29414934,-0.010722501,-0.4982442,0.112613045,-0.46002442,0.5411362,-0.16997792,-0.46944004,0.13848184,-0.10880179,0.070825934,0.60739535,-0.16605091,-0.09054794,0.12300486,-0.14774755,-0.27974346,-0.03164013,-0.2394612,0.15180771,0.25377873,-0.12238568,-0.029284677,-0.43961763,-0.10412955,0.5416526,0.03710552,0.44346187,0.27239186,0.034431722,-0.19949993,-0.13780524,0.16251259,0.53151023,0.089543715,-0.096751384,-0.39744067,-0.31021327,-0.2879127,0.29516798,-0.15789093,0.23999558,0.06786792,-0.37202814,0.66555375,-0.02106251,1.0315737,0.11496242,-0.20549998,0.18738458,0.50865084,-0.020417413,0.08659696,-0.46503347,0.6487466,0.5523261,-0.23313697,-0.042127695,-0.49299648,-0.086799316,0.2805792,-0.32931617,-0.093138255,0.0588836,-0.66694343,-0.23680635,0.1992923,0.17332508,0.113197155,-0.035659987,-0.047341757,0.0342461,0.1558727,0.27887926,-0.60612947,-0.2123899,0.17863211,0.2548152,-0.11712582,0.12114806,-0.3816855,0.36450306,-0.5153256,0.09198923,-0.45634368,0.040729236,-0.30692855,-0.30499682,0.03939039,0.06490022,0.30807835,-0.17519644,-0.3623511,-0.029061709,0.457284,0.05922437,0.27910775,0.60572255,-0.23085466,0.06257308,0.08713843,0.60890543,1.3197334,-0.38029817,-0.06432841,0.36160988,-0.4932347,-0.5102435,0.36435553,-0.29775777,-0.045835197,-0.06795476,-0.49298272,-0.46766138,0.1879987,0.013637475,0.06617145,0.14745256,-0.5602597,-0.35898092,0.28330675,-0.2205754,-0.23851077,-0.23362043,0.20321266,0.72889227,-0.29550034,-0.16768472,0.018292785,0.2584549,-0.26167646,-0.3278579,-0.08138936,-0.30307356,0.30055955,-0.11295724,-0.2606347,-0.16848925,0.18589854,-0.46414414,0.17053293,0.2081214,-0.3649074,0.11049085,-0.06821043,-0.06038145,0.9504642,-0.39182144,-0.1399026,-0.56994617,-0.5161689,-0.89075667,-0.3444021,0.29250604,0.27658787,-0.059518777,-0.3592092,-0.003430275,0.07103888,-0.14187607,0.048310075,-0.66518056,0.36282417,0.0847385,0.46271268,-0.23205602,-0.95407784,-0.004380869,0.13996488,-0.4042769,-0.6662299,0.71966547,-0.1487012,0.81302005,0.026680466,0.02511405,-0.17426927,-0.20769262,0.11031776,-0.36048746,-0.19586363,-0.8200162,0.102757774 -846,0.34203961,-0.141317,-0.33658662,-0.06913127,0.045669436,0.0824872,-0.04713911,0.3077708,0.12158937,-0.62469566,-0.21990104,-0.28881064,0.08162586,0.18338323,-0.13131268,-0.46244827,-0.058587033,0.15810943,-0.31963745,0.43906155,-0.39562955,0.23968318,0.12172773,0.26807076,-0.03874449,0.22930887,0.23033272,-0.14077322,-0.16120818,-0.14510539,-0.18813436,0.30819884,-0.37226453,0.048012428,-0.081969485,-0.33032554,0.04497115,-0.3082148,-0.32955816,-0.61497223,0.3494192,-0.91072905,0.42241293,0.14445421,-0.1460597,0.42719102,0.003343497,0.17564276,-0.10151663,0.05472266,0.20762183,-0.1299957,0.002398921,-0.24989559,-0.21730062,-0.10079474,-0.49909797,0.104691364,-0.27431673,-0.28258333,-0.2555572,0.106621675,-0.32198134,0.050215673,-0.1943041,0.36267117,-0.45993274,-0.10408359,0.2081271,-0.15060319,0.38317314,-0.49708852,-0.217792,-0.091128245,0.15900019,-0.24435075,-0.010514462,0.14576693,0.21217023,0.60749006,-0.022335801,-0.14197703,-0.34468415,0.02562864,0.25194484,0.58016247,-0.17910795,-0.282297,-0.03248889,-0.02239986,0.015717579,0.15014197,0.065242104,-0.29443496,-0.13276313,-0.009502598,-0.2084275,0.017708639,0.46721992,-0.33556443,-0.37264976,0.24818495,0.55171,-0.08856236,0.0043372875,0.021552606,0.01675341,-0.3861633,-0.13601594,0.19809444,-0.19859938,0.4112823,-0.14672925,0.29583985,0.6080126,-0.042872768,0.33259678,-0.17541419,-0.0016211399,-0.02562737,-0.42264843,-0.06453484,0.25738534,-0.33951625,0.17778417,-0.24368535,0.84506166,0.051677603,-0.74344,0.49115473,-0.41269365,0.122483574,-0.048416857,0.64378965,0.4088003,0.2167734,0.2929453,0.6718069,-0.59395427,0.07177376,-0.17494614,-0.31036398,-0.12916803,0.029823987,0.06365661,-0.4488131,0.036175914,0.21116458,0.0009116488,0.008322145,0.31024197,-0.49298424,0.003029257,0.15565453,0.879251,-0.309293,-0.009118562,0.5936645,1.0112149,0.7428012,0.029778138,1.1857731,0.23406795,-0.3289017,0.26603475,-0.48360744,-0.7576316,0.19217427,0.33740118,0.45621496,0.10592663,0.19646099,-0.10980169,0.4765946,-0.39835826,0.14860933,-0.32427374,0.05864328,0.007942102,0.042708807,-0.45333502,-0.18632762,-0.037564393,-0.035688646,0.06435878,0.15896857,-0.119743235,0.32019597,-0.0040125996,1.8554999,-0.22516428,0.19373791,0.1957135,0.28873977,0.0058331317,0.029087862,0.023844978,0.33644766,0.34653282,-0.04634722,-0.47072604,0.05959316,-0.1404378,-0.6058588,-0.123051785,-0.15646116,0.118821524,0.04388103,-0.40305758,-0.10490304,-0.13179994,-0.42121452,0.4015608,-2.7299619,-0.07762387,-0.099440135,0.27616966,-0.39201906,-0.38619712,-0.1680944,-0.3901855,0.49906614,0.35787684,0.36636075,-0.7091866,0.33895996,0.29086518,-0.27871442,-0.060678266,-0.67016774,-0.035071407,-0.018705402,0.26493272,0.07585255,-0.15044038,-0.13740346,-0.097269304,0.3732991,0.025507297,0.013243041,0.2602334,0.2091308,0.20672788,0.27505338,0.12181734,0.39331704,-0.2169874,-0.13251589,0.33755454,-0.2788618,0.27997547,-0.068345435,0.16452023,0.25941113,-0.35785988,-0.57903713,-0.6359841,-0.6072478,1.2465135,-0.23151708,-0.43869066,0.37843847,-0.050475113,-0.23442744,-0.14883928,0.34148854,-0.123798184,-0.079768695,-0.8464731,0.1621513,-0.12779738,0.29709953,0.09414063,-0.075864755,-0.52238977,0.8005246,-0.25536895,0.4793885,0.47689182,0.19583134,-0.107781835,-0.31155306,-0.057057288,1.0207777,0.2485576,0.1560607,-0.13438924,-0.22828607,-0.23612371,-0.22355649,0.11222185,0.4197998,0.74726963,0.046266455,0.019674057,0.30505034,-0.040841434,-0.042093564,-0.13237052,-0.2807791,-0.07252806,0.0008036537,0.57268554,0.44107625,-0.23055889,0.3627863,-0.1929388,0.24680373,-0.20187153,-0.31812742,0.3689187,0.65207434,-0.090400696,-0.10809247,0.6385609,0.42177176,-0.36389104,0.27050313,-0.54066575,-0.27054998,0.35712442,-0.23909715,-0.5051989,0.1430408,-0.3086322,0.17798755,-0.8924732,0.24036637,-0.2530069,-0.3724778,-0.6564717,-0.084152386,-3.648802,0.17744882,-0.2953717,-0.21054573,0.059403174,-0.16014025,0.11359765,-0.5002399,-0.41337612,0.15926203,0.080219984,0.34159517,0.04206315,0.16593191,-0.23539098,-0.028011987,-0.27179256,0.119062625,0.07667492,0.23331581,-0.012630082,-0.43803924,-0.029449085,-0.121794745,-0.33767036,0.0790892,-0.59119713,-0.43222743,-0.15272704,-0.5513405,-0.40072283,0.4540563,-0.3733683,0.026086297,-0.30268607,-0.048988312,-0.22548746,0.46698466,0.20900814,0.21122865,-0.04807244,-0.053644214,-0.11791872,-0.22042814,0.2592236,0.086846165,0.15377675,0.47919196,-0.2383642,0.054337066,0.2845499,0.5909557,-0.0008992744,0.62100583,0.52536476,-0.14678082,0.24324708,-0.28536254,-0.12609307,-0.6446055,-0.37582806,-0.044138517,-0.29998738,-0.5520984,-0.14442123,-0.4321994,-0.7352063,0.45050502,-0.02959554,0.0806309,0.10702266,0.2607155,0.45928332,-0.049512498,-0.0725922,-0.10278375,-0.0052313083,-0.5918338,-0.3950162,-0.6757608,-0.41764614,0.17784639,0.81105703,-0.07252266,-0.019112462,0.032672193,-0.13898538,-0.10046983,0.15354416,0.07742136,0.117915265,0.40992713,-0.04472736,-0.54672897,0.61044073,0.077263184,-0.22447872,-0.57593524,0.096627116,0.42603713,-0.68286216,0.7089585,0.2155825,0.10336374,0.009698863,-0.45696998,-0.35570642,-0.11981565,-0.29160228,0.3976901,0.13846144,-0.5511121,0.396628,0.4838688,0.032227393,-0.72902805,0.19025329,-0.04374865,-0.3343127,0.065531544,0.30877852,-0.099942274,0.08422218,-0.025847932,0.0431279,-0.4117766,0.29348812,0.3091868,-0.051607523,0.49761805,-0.33868846,-0.07439996,-0.638343,0.039772246,-0.55736035,-0.09290747,0.19802116,0.14787318,-0.028326502,0.23679261,-0.01117152,0.38400653,-0.25155646,0.08777883,0.11945891,-0.112263285,0.214882,0.26377985,0.23585768,-0.39203644,0.48288304,-0.0595271,-0.16899689,-0.31134066,0.05716351,0.5259613,0.15689793,0.24448131,-0.19776814,-0.2706489,0.31774536,0.78575176,0.17132418,0.4903805,0.09448355,-0.081203185,0.47075742,0.09891403,0.07208825,-0.00575648,-0.45469737,0.018965324,-0.033062134,0.14985885,0.25486287,0.16235891,0.47992253,-0.13089308,-0.19467013,-0.015822737,0.25607938,0.020025462,-0.7441068,0.23534419,0.033295598,0.72626656,0.49170664,-0.10745395,0.07058485,0.56068426,-0.25705627,0.17704916,0.17848705,-0.2270379,-0.59510475,0.61823684,-0.5341658,0.19414814,-0.09521336,0.01436549,0.03334752,-0.08500213,0.2235838,0.57349867,-0.15959477,-0.026821371,-0.12344297,-0.20745952,0.026352394,-0.26562172,0.119183436,-0.38357815,-0.23892856,0.58125126,0.4600529,0.38418823,-0.14937475,8.1786086e-05,0.14658765,-0.0074379924,0.042318407,0.10890705,0.20130566,0.06566876,-0.6295573,-0.33562258,0.54606754,-0.06499633,0.108792976,0.007974024,-0.34732744,0.20300034,-0.1656152,-0.23413956,-0.048439015,-0.4535955,0.15036239,-0.27072278,-0.33963925,0.19863054,-0.03751756,0.3085005,0.13685162,0.021671472,-0.32815033,0.2761308,0.12350406,0.76264083,0.1434326,-0.15267761,-0.46099314,0.11483295,0.20156302,-0.14260684,-0.08235664,-0.12771606,-0.0103759365,-0.6853479,0.47181943,0.026747605,-0.17631106,0.29746404,-0.2622306,-0.05473308,0.5608521,-0.033784803,-0.102007814,0.110352054,-0.18722495,-0.29654747,-0.12840997,-0.06701925,0.28897282,0.078890026,-0.04891569,-0.015486722,-0.09900392,-0.1947471,0.47125974,0.11527964,0.16465345,0.2433814,0.06218918,-0.37334698,-0.08704281,0.08394032,0.39774594,-0.066219255,-0.054647837,-0.034246225,-0.50171304,-0.3400636,0.08526468,-0.09307773,0.32595345,0.097518615,-0.23064813,0.75170696,0.12618455,0.9556305,0.14443651,-0.22977065,-0.100592054,0.42006922,0.027298579,0.069898196,-0.3202875,0.8633919,0.63692665,0.058313694,-0.05388364,-0.20037909,-0.033850532,0.25256968,-0.09832005,0.049518168,-0.023725452,-0.6861965,-0.3585494,0.19587946,0.26743948,0.061267313,0.004179803,0.13707097,0.11962866,0.0041205627,0.3359131,-0.4350401,-0.22548795,0.32045862,0.09050156,-0.0010817072,0.17526293,-0.3050182,0.45201534,-0.5361539,0.19372617,-0.24269022,0.0097672725,-0.09205016,-0.13563938,0.0996745,-0.13757037,0.44752184,-0.3828419,-0.27336934,-0.19571397,0.44565693,0.1213636,0.14878704,0.6267246,-0.09133762,0.1378823,0.105977654,0.50558686,1.1733176,-0.20592307,0.092555694,0.29608387,-0.10746094,-0.6011347,0.3572771,-0.021094488,0.088333145,-0.033955965,-0.27640948,-0.3993393,0.34245825,0.15040454,-0.17505121,0.16397643,-0.36194128,-0.24456546,0.19837885,-0.3460382,-0.1765648,-0.27508017,0.11291809,0.60594416,-0.257631,-0.25270158,0.06499831,0.21096995,-0.4055352,-0.50062454,-0.06852833,-0.3565195,0.21928981,0.16883887,-0.33294708,-0.05731201,0.1129624,-0.3337962,-0.0908667,0.19759874,-0.3558058,0.060692217,-0.31079313,0.004214044,0.8806491,-0.054428674,0.07883117,-0.6529484,-0.4123187,-0.90616834,-0.39395517,0.7040176,0.01730428,0.035086967,-0.3362392,-0.03854229,-0.05879224,0.022151008,-0.105257325,-0.34266034,0.46671274,0.23880252,0.2904005,-0.1707968,-0.5020787,0.021354258,0.05816067,-0.13312194,-0.45203683,0.5289073,0.11125828,0.8069053,-0.051106762,0.043508798,0.33421355,-0.4943231,-0.0017187084,-0.2384291,-0.27838382,-0.7175032,-0.097143605 -847,0.25112456,-0.1707499,-0.62795943,-0.21233673,-0.24133626,0.1898924,-0.2836021,0.3036408,0.34423408,-0.34987625,0.16686513,-0.16689657,-0.180966,0.205321,-0.13068087,-0.62588763,-0.03029509,0.08701162,-0.5487622,0.72492546,-0.39797032,0.13804647,0.19243807,0.22198275,-0.06566175,0.18584344,0.18613991,-0.016386917,-0.058415387,-0.07766104,0.08211314,0.09651189,-0.5746707,0.23487666,-0.086076684,-0.1700355,-0.065243445,-0.4078436,-0.38213286,-0.7691084,0.28764787,-0.86368614,0.378866,-0.16816537,-0.31315765,0.35592717,0.2789683,0.13986328,-0.17692235,-0.04698718,0.20971729,-0.2726873,-0.375696,-0.19871467,-0.22100456,-0.66177624,-0.63098973,-0.1899276,-0.4904371,-0.06103572,-0.34062186,0.3696242,-0.3574896,-0.05943867,-0.2712464,0.53459543,-0.4740872,-0.013406133,0.1280195,-0.3354123,0.26642796,-0.7295458,-0.06863455,-0.08036164,-0.041956846,0.320447,-0.124317214,0.31564778,0.3141913,0.5627835,0.066110656,-0.28275728,-0.37271678,-0.07455478,0.123394854,0.3593254,-0.057180054,-0.1302236,-0.24289863,-0.25796,0.3460352,0.30824807,0.13801059,-0.44025126,0.057943407,0.03163359,-0.4055114,0.3663914,0.65149444,-0.28196174,0.08448933,0.4816725,0.19109704,0.064521745,-0.2602119,-0.009342543,-0.13122211,-0.4027522,-0.050029222,0.24003719,-0.0797218,0.39328516,-0.097838365,0.14409056,0.6358423,0.015054222,-0.11774484,0.045844197,0.06768955,-0.004089308,-0.34746546,-0.1722161,0.33430418,-0.49651968,0.023617543,-0.42436168,0.50653833,-0.08962814,-0.7660334,0.38230038,-0.40481982,0.1431671,-0.05290258,0.6585884,0.846142,0.6893384,0.06753746,0.8728296,-0.46745273,0.055033915,-0.19973604,-0.26729128,0.39321312,-0.16662367,0.464455,-0.42387512,-0.014278392,0.14227095,-0.31157348,-0.24300125,0.5827431,-0.421508,-0.13537231,0.14617254,0.81881577,-0.25457734,0.047120187,0.6488249,1.2051165,0.83682466,0.18649544,1.1578023,0.38550836,-0.15679796,0.07731475,-0.18055372,-0.8549804,0.14278623,0.3054191,0.62917435,0.12994552,0.13337517,-0.12965769,0.4858062,-0.2538899,-0.17746022,-0.12702405,0.43508634,0.05201947,-0.21980454,-0.15681754,-0.04871219,0.18764348,0.08769127,0.17838378,0.27405325,-0.15536962,0.46682683,0.24841903,1.1858679,-0.16247909,0.0513763,0.17823175,0.2866472,0.2525493,-0.06856774,0.14804946,0.47866544,0.2775484,0.036060352,-0.6308197,0.095275275,-0.28428504,-0.6115768,-0.14693779,-0.3585058,-0.11886828,-0.10691533,-0.25958213,-0.29768315,-0.045086488,-0.45749778,0.28656438,-2.678666,-0.028938549,-0.28346878,0.35518318,-0.22499922,-0.20197217,0.0032586337,-0.43939108,0.6620289,0.4621605,0.35343012,-0.53474826,0.42448124,0.56343853,-0.41396275,-0.078035444,-0.58840525,-0.010842484,-0.16507973,0.40691847,0.033531442,-0.14070259,0.03324397,0.036906496,0.5540834,0.1389126,0.26306996,0.55365545,0.38147488,-0.21334024,0.33446446,-0.10724964,0.5107085,-0.20685539,-0.15539294,0.20993474,-0.40651688,0.18838891,-0.4282336,0.12264678,0.48022074,-0.26165372,-0.6487679,-0.48487148,-0.11714269,1.1509969,-0.44000453,-0.80535614,0.29657814,-0.06741772,-0.16723223,-0.010193551,0.64743984,-0.20364346,0.020241976,-0.7262361,0.033655588,-0.13602488,0.21731186,-0.03738566,0.107306905,-0.4952176,0.8454289,-0.07225568,0.67458606,0.35811737,0.26817805,-0.3387165,-0.41494617,0.2290419,0.6059683,0.44373524,-0.08149723,-0.1355949,-0.0646264,-0.0031958183,-0.50414205,0.041212924,0.604911,0.61762846,-0.06657463,0.15845488,0.3565974,-0.37601024,-0.03378435,-0.20400448,-0.4801222,-0.19766252,0.12697819,0.53779566,0.5576999,-0.007797746,0.2932104,0.0067973137,0.3180245,-0.097652,-0.62253416,0.5975693,0.76659477,-0.27379358,-0.1953256,0.608039,0.37550873,-0.17202319,0.583618,-0.5636997,-0.34803918,0.46886393,-0.08946406,-0.6668995,0.13395652,-0.3479294,-0.06917027,-0.69738644,0.23958942,-0.28399065,-0.54899776,-0.5817239,-0.15727066,-3.1034653,0.057252433,-0.35968405,-0.053492896,-0.25371516,-0.10448802,0.37842962,-0.44430053,-0.5554364,0.08419037,0.24373354,0.54653084,0.020949619,0.006641543,-0.33390102,-0.13017623,-0.25210366,0.26794147,0.033093326,0.16468498,-0.019685904,-0.3387739,0.04093449,-0.044529814,-0.47699445,-0.066807896,-0.37350997,-0.15062107,-0.24626707,-0.54296416,-0.28101256,0.6547944,-0.3129266,-0.0017700712,-0.219513,-0.018455155,-5.9843063e-05,0.26724353,-0.17001057,0.13519193,0.109287776,-0.13685659,0.12967332,-0.30574447,0.18097101,0.03205847,0.24661608,0.47794572,-0.09504012,0.056667347,0.52025247,0.49163,-0.06777514,0.906271,0.44186324,-0.11068177,0.30342,-0.19627689,-0.10488801,-0.63902193,-0.2595205,0.053928677,-0.46111834,-0.31454843,0.0015035153,-0.30141506,-0.7509797,0.5062727,0.20161597,0.19058791,-0.04043053,0.22555634,0.4559103,-0.050882086,-0.047092836,-0.18180151,-0.28231993,-0.40186733,-0.30620182,-0.8995864,-0.5025099,0.13776316,0.9862805,-0.012135583,-0.31692922,0.031799804,-0.31150958,-0.07403538,0.26727262,0.09286952,0.17837474,0.2895723,0.1825604,-0.6561368,0.5636423,-0.18599549,0.12920459,-0.68699646,0.33111253,0.60197663,-0.7601626,0.3846315,0.51802766,0.14407349,-0.3519953,-0.6935087,-0.22100598,0.14259575,-0.15384957,0.46089852,0.1860115,-0.96836597,0.61337703,0.24484344,-0.11806385,-0.770502,0.34788582,-0.11423306,-0.0481676,0.029098598,0.36599067,0.011683106,0.03788174,-0.43990737,0.32496426,-0.5126694,0.38658464,0.058851235,-0.077317625,0.62807184,-0.12456319,-0.118148245,-0.68474454,-0.0031556129,-0.60621387,-0.17923522,0.36058342,-0.066997655,0.11749959,0.26044324,0.039039295,0.4116435,-0.19887027,0.2073672,-0.29359293,-0.35968915,0.5223492,0.49674,0.30032367,-0.37543482,0.64901006,-0.09113177,-0.13562702,-0.07010567,0.02276504,0.41980976,0.4150233,0.49341288,-0.05089082,-0.11958528,0.25498688,0.78901976,0.22869028,0.35263953,0.1342232,-0.24777056,0.45112774,-0.094378375,0.17746669,-0.29995984,-0.67773724,-0.07715216,-0.089928724,0.19736649,0.47232774,0.23102154,0.5746551,-0.05238486,-0.074495584,-0.013935382,0.0467769,0.084462926,-0.98040223,0.5679583,0.13039376,0.8054648,0.63410175,0.0030193487,-0.05947963,0.7320078,-0.18228558,0.11006198,0.3327801,0.12618075,-0.32255438,0.5179168,-0.69993937,0.2577154,-0.21055181,0.014101684,0.21696557,0.27867785,0.38394088,0.82958335,-0.11774877,0.17382994,-0.17344795,-0.2935129,0.28028247,-0.12115153,0.033254992,-0.31263256,-0.5256209,0.51264584,0.2827914,0.4383742,-0.15997113,-0.11073812,0.28538427,-0.18109795,0.3371419,0.0046532433,-0.022897968,-0.15937187,-0.35306248,-0.31302804,0.5508191,-0.039943337,0.12261277,0.029116098,-0.19907881,0.17950805,-0.1330199,-0.26282737,-0.029372342,-0.5210947,-0.0023720027,-0.11979667,-0.6123174,0.5355658,-0.0409226,0.19191082,0.14113252,0.044719346,-0.22153883,0.002148219,0.1228813,0.7010837,-0.12476602,-0.14024666,-0.08427341,-0.38068774,0.2016717,-0.45372778,0.02077839,-0.07879347,0.03470475,-0.61822855,0.46055907,-0.40940332,-0.21677707,0.2966232,-0.29580316,-0.03668022,0.37015158,-0.2217553,-0.09750184,0.35001463,-0.09569185,-0.1791548,-0.32772624,-0.4353953,0.20959902,-0.3046814,0.14545316,-0.10972427,-0.06726625,0.063745104,0.45171496,-0.047616314,-0.041235533,0.4093949,0.19132312,-0.48414075,-0.056472264,0.28686368,0.5792298,0.16242535,-0.04178626,-0.27078387,-0.58109564,-0.49711582,0.05005326,-0.014726581,0.31373075,0.07759879,-0.54296124,0.8527008,0.073784575,0.91499484,-0.077658094,-0.47659153,0.14033508,0.5020365,0.07629255,0.073861316,-0.3665713,0.7471679,0.64824706,0.0109192645,-0.019130388,-0.5958618,-0.06475211,0.36624315,-0.3227758,-0.15640923,-0.11551697,-0.818998,-0.32015452,0.1598002,0.14203708,-0.005511,-0.217007,0.07966821,0.10720791,0.2723309,0.33237737,-0.61517614,-0.02659789,0.3897252,0.15213394,-0.020682871,0.2748789,-0.3955998,0.21349189,-0.6265372,0.1960956,-0.32856923,0.013585834,0.13307835,-0.1801462,0.1301417,-0.022768259,0.255286,-0.094055384,-0.45414677,-0.056730893,0.62007767,0.18512551,0.25481576,0.6981713,-0.23573099,-0.05020783,-0.056565132,0.6310418,1.3087566,-0.20080306,0.06743797,0.19692999,-0.5131712,-0.8054645,0.20208625,-0.19231455,0.15419598,0.059489932,-0.5012797,-0.33489713,0.30909768,0.012196159,-0.33321992,0.10670808,-0.4374043,-0.33055678,0.07936594,-0.31960624,-0.16988783,-0.2769815,0.18274498,0.7562711,-0.3707547,-0.16493227,0.09405037,0.446041,-0.2983394,-0.5344149,0.10237062,-0.4844294,0.27023354,0.107115,-0.45178622,-0.0050689974,0.041904733,-0.6320713,0.22667035,0.092489175,-0.25548658,0.03533767,-0.41949654,0.070003524,0.76103747,0.080374844,0.046302173,-0.5214204,-0.62414145,-0.72778356,-0.32143268,-0.022119995,0.14006333,-0.054033283,-0.53752416,-0.08907154,-0.17734505,0.14271532,-0.070188336,-0.5699741,0.38214198,0.07480528,0.4088171,-0.19354023,-0.9219256,0.1615494,0.12812836,0.058240637,-0.49411926,0.57631236,-0.2533808,0.91052467,0.14862923,0.029766629,0.011211141,-0.6979409,0.348641,-0.35806334,-0.4206774,-0.57152706,0.07641746 -848,0.06896128,-0.60805863,-0.1960318,-0.2034314,-0.0144265,0.12871203,-0.05929203,0.53725505,-0.07680579,-0.37844583,-0.4815363,-0.2966729,0.107821256,0.76444155,-0.08015049,-0.5316976,-0.39612478,0.16511449,-0.55779845,0.23755527,-0.5522176,0.14325525,0.20975573,0.40466356,0.37461635,0.32782465,0.5332184,-0.1331385,-0.040063404,-0.12243548,-0.120494686,-0.29698503,-0.4000504,0.14627156,0.008450586,-0.5294247,0.026189543,-0.7372309,-0.20427279,-0.7346057,0.40098524,-1.024542,0.34869298,-0.29072562,-0.043535925,-0.14136903,0.06266048,0.54282963,-0.23383754,0.040455,0.38814273,0.012889989,-0.05380246,-0.018599458,-0.2197364,-0.18837622,-0.55434185,-0.08341643,-0.27280492,-0.6125608,-0.09365702,0.15113041,-0.32010466,0.106708124,-0.078820825,0.22283186,-0.39199403,-0.43220785,0.4584356,-0.10891288,0.54562217,-0.56559527,-0.23240496,-0.021009307,0.41910338,-0.23666674,-0.017469881,0.41441756,0.36334887,0.30051982,0.23494947,-0.1173174,-0.016599245,-0.118643075,0.17172532,0.78556424,-0.064681105,-0.4447308,-0.12685704,0.03690335,0.16147198,0.4077791,0.05240581,-0.38886198,0.03569254,-0.04529448,-0.34079257,0.242042,0.5203975,-0.033661872,-0.3407722,0.27237046,0.55088353,0.18126956,-0.09935614,-0.20226403,0.029442519,-0.4237343,-0.118963614,0.28798664,-0.16490118,0.6293051,0.05219186,0.40737927,0.9006918,-0.22441344,0.327927,-0.46339095,-0.07066807,-0.40700948,-0.45415735,-0.3043717,0.18373136,-0.4220906,0.19805738,-0.26313943,0.92805225,0.22005484,-0.6940864,0.604475,-0.4542546,0.21301351,-0.14061314,0.62568337,0.35887653,-0.009691864,0.31779438,0.8791908,-0.2300134,0.09364627,0.04584892,-0.28767812,-0.21859561,-0.24897072,0.2952761,-0.54668915,0.023707762,-0.040231787,0.14913748,-0.0770651,0.22823924,-0.5941354,0.03115028,0.20455314,0.8997009,-0.4256292,0.16171692,0.6495725,1.203094,1.1205801,-0.024092969,1.4778324,0.43541124,-0.42895204,0.25703335,-0.5367571,-0.69302267,0.2003319,0.65853554,0.4380541,0.32988113,-0.049251333,-0.3641742,0.45154357,-0.5673156,0.42958277,-0.16464424,0.24815874,0.12629119,0.12930614,-0.7164541,-0.23630601,-0.1666319,-0.17264707,-0.06463463,0.032807335,-0.30383813,0.20837557,-0.35515264,1.7748917,-0.13939783,0.03860865,-0.02624609,0.6094543,-0.15488812,-0.26964706,-0.20273852,0.20345974,0.8094899,-0.22065184,-0.6218365,0.3716371,-0.25479662,-0.38280797,-0.08519015,-0.32259464,0.10429236,0.07575046,-0.22799662,-0.06291756,0.117288575,-0.46956939,0.42486614,-2.8242302,-0.38716853,-0.42611116,0.07650467,-0.48756278,-0.14663121,-0.17628679,-0.48139822,0.42076236,0.3031815,0.4729454,-0.5520454,0.48854986,0.48580372,-0.15208109,-0.07201587,-0.77066064,-0.057028692,-0.0033284314,0.29280853,-0.0043309405,0.068339154,-0.22283673,0.072812974,0.5187361,0.2251624,0.112659335,0.6529293,0.34964964,0.17995515,0.6036564,0.07222695,0.43117878,-0.40104374,-0.0066391937,0.1256394,-0.21559937,0.18223068,-0.34405744,0.10852441,0.4128582,-0.6939944,-0.6727806,-0.7087305,-0.92191184,1.013421,-0.43683475,-0.33186424,0.49897003,0.22300129,0.10223237,-0.17879787,0.6679105,-0.15570597,0.054680064,-0.63985634,-0.020480461,-0.07217605,0.12210302,-0.06954693,-0.027084187,-0.4552464,0.58645463,-0.25622943,0.49458992,0.19038488,0.23472406,0.08495365,-0.17775047,0.10630162,0.79655343,0.19782686,-0.15263906,-0.06807983,-0.09568688,-0.3889017,-0.5067184,0.18861803,0.4814548,1.15373,0.023660472,0.11136155,0.3584657,-0.15259384,-0.039881706,0.001122117,-0.2717933,-0.14577761,-0.11141447,0.5322983,0.158668,0.016209677,0.7118061,-0.5282711,0.15734862,-0.11153419,-0.32333246,0.35543305,0.09617146,-0.16956577,0.073462136,0.39938554,0.43099934,-0.43988585,0.39518192,-0.6844032,-0.057592466,0.77467954,-0.198714,-0.6295544,0.16994795,-0.10206496,-0.06593911,-0.9545188,0.4393656,-0.2936365,-0.6133407,-0.3523676,-0.20005043,-2.9282684,0.19864672,-0.04874549,-0.53906864,0.020166643,-0.11218949,0.28877413,-0.6459894,-0.6395443,0.22058296,0.09456089,0.5827467,0.11268907,0.028552257,-0.21858355,0.17390941,-0.34607124,0.10109556,-0.014891788,0.27158973,-0.083776355,-0.45867297,0.010189112,-0.09584441,-0.74114394,0.3419724,-0.8044009,-0.60967875,-0.23681743,-0.6848476,-0.47357914,0.81295943,-0.24157827,0.07981844,-0.13349986,0.061391015,-0.2642622,0.46615392,0.07029565,0.40112042,0.13489386,-0.122619666,0.2518893,-0.28618157,0.43958956,0.12851371,0.45176962,-0.18629523,-0.1818919,0.34846833,0.385513,0.67917037,0.12936963,0.835486,0.6245309,-0.251409,4.245341e-05,-0.5406885,0.17871732,-0.5008904,-0.42390773,0.047958724,-0.31462353,-0.926005,-0.0009786636,-0.1789968,-0.57161033,0.5351501,-0.0072295777,0.37651992,0.025910616,-0.077638306,0.15016112,-0.0291548,0.10251211,-0.043559525,0.14453672,-0.46722892,-0.23546049,-0.83287406,-0.54023767,-0.023909964,0.5833484,-0.144912,-0.06459862,-0.1503624,-0.86822844,0.37264055,0.033358622,0.02766122,0.18663935,0.15088847,-0.13770524,-0.7600459,0.4369542,0.19756539,-0.016823001,-0.660316,0.14618456,1.0725113,-0.62907636,0.67395586,0.16898367,0.058654316,-0.34403643,-0.27761713,-0.2812078,-0.20411357,-0.19892655,0.14857432,-0.2598164,-0.54485047,0.40720975,0.47010797,-0.34331393,-0.67822903,0.22569078,-0.07900178,0.052573428,0.10244727,0.17149594,-0.042277962,-0.13442227,-0.3899295,0.20510292,-0.44054553,0.47382632,0.23148467,0.16345808,0.5702051,0.06967156,-0.16131803,-0.4929009,0.14390305,-0.45346612,-0.09514974,0.37670505,-0.077732265,-0.16070043,0.33575442,0.08987191,0.2753327,-0.2771875,0.047097757,0.119593985,-0.56840205,0.03761755,0.32933533,0.06716721,-0.4179137,0.5607018,0.10816704,-0.21546076,-0.046034694,0.027083863,0.32585245,0.29339463,0.23913006,-0.5208535,-0.44189703,0.40115455,0.66918766,0.29627573,0.7192365,0.25478208,-0.12850472,0.4312968,0.024805203,0.1926443,0.10382384,-0.32502735,0.12872572,0.12360506,0.07666283,0.36234918,0.19671208,0.400427,0.070490666,-0.29289612,0.037134256,0.14196123,-0.23160276,-0.9236571,0.55741817,0.22437452,1.0365815,0.36462566,-0.08852665,-0.14917809,0.64930964,-0.1029447,0.14312902,0.3702914,0.075866684,-0.6957043,0.9128953,-0.5030354,0.48186544,-0.0510299,-0.11905141,0.07633623,0.18232574,0.35058194,0.7595394,-0.19474933,0.060739227,-0.27304208,-0.0057344586,0.019784674,-0.4491494,0.46330705,-0.5983345,-0.56754804,0.44548827,0.41694158,0.24174055,0.045869567,0.022967631,0.025126569,-0.14615406,0.31166214,-0.025646754,-0.2191145,0.36885202,-0.85689443,-0.5092666,0.5015539,-0.0028159022,0.26736298,-0.14693551,-0.32724592,-0.05932287,-0.23694189,-0.022153996,0.1860478,-0.831745,0.0010163402,-0.1970214,-0.28416154,0.105336145,-0.30124483,0.33286116,0.1206413,-0.1197878,0.05690795,0.044225574,0.21909657,0.988299,-0.18027306,-0.37146765,-0.30992258,-0.054634348,0.22285515,-0.29463604,0.40232414,-0.29048717,-0.30260545,-0.6485846,0.7191764,0.12931871,-0.62550455,0.5440296,-0.25245267,-0.1814331,0.6344017,0.030642897,0.37048274,-0.26288116,-0.3252251,-0.19997221,0.25707522,-0.3951717,0.17846732,0.097226605,0.19728972,0.053749323,-0.11693484,0.022931412,0.7404856,0.08189085,0.5748864,0.30399996,0.22731572,-0.2141167,0.04425575,-0.17890337,0.4699371,0.46227106,-0.037828427,-0.27540118,-0.27752715,-0.074158564,0.26158616,-0.29267684,0.43299574,-0.21934941,-0.4464559,0.6167851,0.09297731,1.2797134,0.15871486,-0.29677305,0.019712305,0.58079535,0.002456326,0.15590602,-0.61582124,0.8282748,0.58316123,-0.119086035,-0.030976646,-0.3785208,-0.27292886,0.74199456,-0.2660616,-0.24689376,-0.040850848,-0.63515717,-0.57171947,0.21909495,0.21240291,0.097800545,0.21941178,0.045128677,0.11137062,0.00021269172,0.83936125,-0.6046965,-0.09875548,0.14341933,0.13798513,-0.058865786,0.21204722,-0.4660996,0.31234503,-0.8161042,0.53246707,-0.3068748,0.085263684,-0.12223193,-0.33036128,0.07297988,0.06883794,0.769142,-0.13042955,-0.54190063,0.053904865,0.51319623,0.022723764,0.1130237,0.6973832,-0.22850177,0.10453066,0.230289,0.5433488,1.4771554,-0.38385016,0.3254512,0.44390285,-0.61302686,-0.67688227,0.5975439,0.063225254,-0.069374144,-0.19393688,-0.39370307,-0.4484206,0.3180361,0.22191966,-0.37829322,0.17491539,-0.3562411,-0.4210546,0.4010754,-0.19670488,-0.34659347,-0.44786823,0.44743901,0.52514625,-0.38060609,-0.40911436,0.17056204,0.4503666,-0.4702627,-0.3348113,-0.14162534,-0.3304479,0.3791782,-0.18993148,-0.41359153,-0.30440122,-0.16486448,-0.32130745,-0.12318398,-0.16345209,-0.5132695,0.113735415,0.06204719,-0.24582468,0.899596,-0.18741636,-0.365823,-0.9797009,-0.3962797,-0.9050964,-0.53713834,0.5816224,0.17387861,-0.3052203,-0.18868808,0.16628072,-0.009122156,-0.07644837,0.13691214,-0.34631187,0.2687271,0.075682804,0.4873145,-0.35378867,-0.81018347,0.2820143,0.090768486,-0.09134899,-0.5959328,0.78036714,0.058990933,0.645406,-0.05346742,0.042899877,-0.25829208,-0.15230197,0.14405501,-0.2067025,-0.18020888,-0.88875335,0.28274745 -849,0.49333584,0.028870607,-0.5150374,-0.26337707,-0.27123877,0.18153468,-0.16788621,0.2573046,0.30739257,-0.21370132,0.10601602,-0.15512963,0.004840851,0.27055538,-0.115638375,-0.7813519,0.115493745,0.11610683,-0.56781226,0.34033865,-0.608558,0.37710294,-0.07763532,0.485025,0.033004034,0.19986235,0.042999182,-0.044768404,0.14567824,0.011157012,-0.11781483,0.37866586,-0.5028354,-0.07639173,-0.07623233,-0.42326215,0.026249409,-0.43500358,-0.3457032,-0.66055554,0.4308636,-0.7866302,0.6999436,-0.003608934,-0.39705727,0.03730898,0.034208857,0.3290412,-0.2146819,0.15229225,0.20035034,-0.2309406,0.11651464,-0.057378683,-0.39961877,-0.5172641,-0.6318309,-0.050041497,-0.6106322,-0.077901125,-0.21644033,0.19377069,-0.31434727,0.1266242,-0.17455629,0.22167778,-0.39678904,0.028767021,0.33410245,-0.165288,0.22494555,-0.39410433,-0.19753298,-0.06598457,0.21429922,-0.03991908,-0.30506474,0.20405705,0.36168402,0.6281056,0.0029455603,-0.33971518,-0.18066573,-0.057000782,-0.18395182,0.6463482,-0.17941645,-0.21140727,-0.3776905,0.10470566,0.26096877,0.3170002,-0.05211516,-0.34120286,0.007910528,0.17967662,-0.25881326,0.5060908,0.49084672,-0.4630852,-0.16685957,0.36437258,0.37812474,0.18406907,-0.2446429,0.32406563,0.03636875,-0.57049817,-0.25531667,0.20212828,-0.056904204,0.61445224,-0.06870329,0.32774577,0.7434506,-0.13882929,-0.0021417935,-0.20983483,-0.014029053,-0.11674375,-0.37900335,-0.08929797,0.18521132,-0.5100949,0.09662126,-0.21909009,0.7813927,-0.0015133321,-0.86496025,0.3527152,-0.48992598,0.07963831,-0.1999125,0.5591593,0.7518724,0.19442965,0.23721617,0.91128147,-0.5380156,0.04071857,-0.032561246,-0.37863013,-0.008921814,-0.050625872,0.056133263,-0.52893007,0.1122891,0.10025048,0.10065003,0.14409153,0.3656235,-0.48141482,-0.11979631,0.050452568,0.7139184,-0.39766943,-0.09982227,0.7279829,1.0808221,0.94337004,0.01589156,1.2454158,0.39242607,-0.08830063,0.15306225,-0.26553747,-0.5747879,0.15379387,0.25007096,0.14516835,0.5263668,0.14583157,0.025218537,0.5104466,-0.20239598,-0.044535246,0.056891643,0.11709983,0.057531636,-0.031110378,-0.38407812,-0.14350456,0.10692103,0.048585616,0.07725751,0.21172749,-0.21930936,0.27534416,0.086682476,1.426702,0.054634545,0.055511378,0.019586546,0.41916215,0.24533471,-0.18839332,-0.04816353,0.4233051,0.4007484,-0.12530325,-0.5522481,0.020046715,-0.3247802,-0.2924694,-0.18439339,-0.33824062,-0.13394973,-0.116117746,-0.6483599,-0.054863382,0.028490478,-0.30944258,0.5515249,-2.791334,-0.4506105,-0.17343491,0.33290243,-0.18582827,-0.4315557,-0.27866685,-0.42043462,0.23012608,0.40578616,0.17900735,-0.67265546,0.5294333,0.29752254,-0.2477281,-0.02189248,-0.70325,-0.011095236,-0.017724684,0.3041472,-0.07882502,-0.13885787,-0.14080885,0.38692966,0.6412071,0.0926691,-0.079140075,0.18411806,0.61429876,0.00021076799,0.5571028,-0.024511762,0.6221928,-0.10926531,-0.12426147,0.2205023,-0.45364726,0.4088482,0.045714352,0.16391428,0.5260651,-0.4457367,-0.727455,-0.5430731,-0.27320722,1.0651666,-0.33044222,-0.328086,0.27413553,-0.1832451,-0.35236874,-0.033476595,0.5060855,-0.034972973,-0.1275609,-0.6607915,-0.005363091,-0.20206456,0.06629363,-0.105403915,0.07745286,-0.22217618,0.6150644,-0.14438578,0.45857292,0.2885458,0.085008666,-0.01818281,-0.39158547,-0.046057478,0.7360201,0.36515048,0.11074432,-0.2139851,-0.12775049,-0.2970256,-0.017818423,0.2461117,0.4879999,0.71178305,0.0008321126,0.18638381,0.38033766,-0.13524535,-0.0767454,-0.14146751,-0.26952592,0.039008226,0.026256824,0.62121284,0.6546975,-0.16016258,0.3796711,-0.0766907,0.05065524,-0.28815016,-0.4257309,0.38165185,0.7711961,-0.09150695,-0.29442474,0.49956074,0.3449559,-0.40402666,0.30714485,-0.5248388,-0.23514546,0.6103279,-0.06388781,-0.36579385,0.20461355,-0.39362222,0.042931534,-0.93487906,0.24940191,0.0827047,-0.5253474,-0.47593004,-0.23380008,-3.6384761,0.31341165,-0.14928511,-0.10221405,-0.07122567,-0.20930998,0.39549872,-0.41323072,-0.54034126,-0.014608222,0.013465294,0.5345014,-0.19470347,0.15503028,-0.27673626,-0.2114357,-0.25033662,0.14355749,0.11145519,0.35115308,0.020592371,-0.35125116,0.10582698,-0.43497568,-0.50429845,0.04040498,-0.51245636,-0.5396863,0.024650717,-0.49162117,-0.26966885,0.7300653,-0.34203765,-0.036888804,-0.34933674,0.017481979,-0.19804545,0.37407348,0.2161477,0.10039458,-0.031372413,0.06482811,-0.1626798,-0.4183382,0.26502576,0.037390504,0.26848406,0.3126564,-0.090585425,0.19866781,0.5066985,0.5375871,0.032006986,0.72209007,0.26082927,-0.09210316,0.30501765,-0.26220247,-0.17117333,-0.68571776,-0.4356488,-0.3134521,-0.53889835,-0.5811243,-0.186483,-0.4307726,-0.7603397,0.41463926,-0.035598412,0.23005264,-0.07280493,0.34852177,0.4657063,-0.12608644,0.06929956,0.09970665,-0.20514171,-0.41298914,-0.48309988,-0.57405865,-0.5845062,0.3337688,1.0354898,-0.14779407,-0.029616157,-0.025930671,-0.2444517,-0.03406318,0.086477965,0.25797924,0.17423268,0.3596743,-0.23990592,-0.65520644,0.33756587,-0.35038662,-0.13832477,-0.7084722,-0.06533756,0.7342318,-0.6501081,0.63646513,0.31345013,0.34029892,0.1247867,-0.58448315,-0.19353575,0.105187796,-0.255555,0.646699,0.11127653,-0.61912745,0.52886397,0.18250784,-0.021321988,-0.53441715,0.55920166,-0.008356363,-0.29630482,0.022461792,0.32759178,0.107630126,-0.048452612,0.020561423,0.1818518,-0.55316883,0.23451693,0.37816468,0.010065351,0.43275693,0.05193993,-0.063276984,-0.60512865,-0.13971591,-0.6245217,-0.18348269,0.12509184,-0.030202786,0.28214934,0.13565235,-0.049550287,0.4232658,-0.2878214,0.20365137,-0.13463216,-0.198935,0.26175848,0.5379617,0.31629544,-0.46218222,0.61759835,0.16251868,0.046979062,0.047125872,0.09217729,0.53983414,0.12148719,0.4072013,-0.20414396,-0.12891603,0.12380914,0.6732606,0.23382097,0.3132805,0.16533476,-0.113592535,0.32106704,0.18990682,0.120076574,0.0058503468,-0.27108762,-0.14794059,-0.027053483,0.2406388,0.4409432,0.10037366,0.26249173,-0.09080486,-0.30357036,0.21865048,0.1787272,-0.26852894,-1.1368717,0.25919616,0.33250982,0.67021114,0.3403339,0.01982805,0.018411461,0.30579287,-0.2958196,0.14926942,0.43400818,0.03881668,-0.30252334,0.5721692,-0.4459976,0.5692459,-0.23385814,-0.05531193,0.124166206,0.2683613,0.48024288,0.89676034,-0.22068046,0.093161605,0.10380769,-0.27028883,0.031188695,-0.3008849,0.035694115,-0.6239523,-0.19992714,0.659699,0.5121674,0.36002713,-0.36899593,-0.09172003,0.100994796,-0.10454562,-0.11494153,-0.08564864,-0.07528353,-0.15509464,-0.6029441,-0.26499757,0.5079215,-0.12277065,-0.007024753,0.06551313,-0.4068058,0.36168692,-0.05335852,0.08780269,-0.037325405,-0.70570374,-0.09981319,-0.33151785,-0.6695313,0.3749007,-0.26095426,0.28334427,0.24594419,0.047211494,-0.2540723,0.29791322,0.0073586465,0.9111205,-0.07418612,-0.1823313,-0.47655466,0.0799803,0.3921135,-0.25803712,-0.26498982,-0.37803468,0.18628503,-0.46664792,0.4408992,-0.13386866,-0.21331163,-0.1544107,-0.054078802,0.10109512,0.42835993,-0.35169253,-0.11427966,0.06528094,0.005701232,-0.342279,0.034002766,-0.37196657,0.3430656,0.058085244,-0.214212,0.014519564,-0.14585702,-0.0669839,0.2535463,0.16086738,0.32199678,0.3711519,0.043579895,-0.2599472,-0.047253434,-0.030369313,0.45295516,0.025546242,-0.16814902,-0.25252396,-0.36236593,-0.2771582,0.45279923,-0.08898373,0.23975162,0.08311772,-0.42440483,0.81833595,0.22123982,1.1014687,0.19484545,-0.2499241,-0.01749334,0.55785644,0.06026583,0.08491516,-0.3870813,0.81595427,0.51915324,-0.16059345,-0.28360155,-0.31510565,-0.14565912,0.21283184,-0.23660626,-0.21835701,-0.1352927,-0.663851,-0.1536141,0.055765565,0.18052933,0.2573861,-0.037575986,-0.029363541,0.12086827,0.04879453,0.39285952,-0.4673123,-0.19556087,0.19197513,0.22641467,0.00045597155,0.16176002,-0.36048114,0.4105315,-0.6220866,0.13534208,-0.52384925,0.07246469,-0.02008415,-0.2752355,0.19635774,-0.14547446,0.19944061,-0.2954732,-0.1776424,-0.17397125,0.61933875,0.25282294,0.23284689,0.69300187,-0.23898093,-0.19831626,0.082854815,0.43383014,1.4463822,-0.030557616,-0.052339975,0.36647862,-0.2001925,-0.59423804,0.07083787,-0.44713634,0.16364981,-0.061432347,-0.36431935,-0.31800312,0.3603085,0.08903287,-0.1286263,0.059060797,-0.5129558,-0.1713095,0.4414077,-0.20570993,-0.2877954,-0.29496226,0.19788964,0.71944934,-0.35225525,-0.3641327,0.057059485,0.29503644,-0.23563062,-0.7026982,0.20153627,-0.41410396,0.4582798,0.10275699,-0.32560167,0.028377049,0.26548776,-0.45525,0.16166799,0.44314042,-0.3713606,0.02949155,-0.3146024,-0.2620631,1.1756583,-0.116165414,0.06973644,-0.6911789,-0.45265907,-0.8742425,-0.37479874,0.12374028,0.23932716,0.0052527944,-0.496065,-0.065161444,-0.04150938,-0.191288,0.0786521,-0.28717244,0.48668778,0.10870515,0.5379101,-0.069159046,-0.90749544,-0.06948202,0.050427914,-0.51737773,-0.51389116,0.6253186,-0.13783501,0.6388051,0.08195619,0.18074553,0.12086115,-0.40026134,0.35012558,-0.45310405,-0.110787354,-0.8348592,0.057655487 -850,0.35313746,0.06724202,-0.6347367,0.08140942,-0.5102296,0.11913839,-0.22436558,0.26040637,0.33482718,0.0072579184,0.18406911,0.10586617,-0.38151255,0.30103722,-0.16559726,-0.8098027,-0.09690859,0.100015186,-0.6378106,0.45623946,-0.29824463,0.4437389,-0.13182901,0.36820826,-0.09354317,0.25549087,-0.04600385,0.12958924,0.010321866,-0.26919785,-0.10051185,0.29712656,-0.6966491,0.36988762,0.075365245,-0.30186883,-0.01174095,-0.32270297,-0.24372715,-0.71575445,0.27251637,-0.674735,0.7155943,-0.15800422,-0.3975296,0.19953413,0.015939096,0.13479547,-0.22958608,-0.032316644,0.17552726,-0.28187862,-0.012231837,-0.18696038,-0.30548742,-0.4805301,-0.41860273,-0.11719084,-0.62549317,0.13742262,-0.29393396,0.318704,-0.33349642,-0.09667599,-0.46847042,0.1679005,-0.26818076,0.17574997,0.2889692,-0.33100143,0.04092783,-0.46754912,0.019596497,-0.09897664,0.36569738,0.037751243,-0.18314928,0.29658812,0.24189258,0.39979103,0.0715274,-0.2545003,-0.34238967,-0.096086584,0.04113919,0.40722093,-0.23001058,-0.08407269,-0.2599804,-0.016782636,0.61212933,0.37773314,0.16214207,-0.08558307,0.00015865763,-0.19140081,-0.09298032,0.39904806,0.35906994,-0.40729105,-0.24700756,0.6014113,0.43450972,0.3296295,-0.16189511,0.2858565,-0.22161321,-0.34656644,-0.17511205,0.04828928,-0.007831007,0.2987322,-0.14671104,0.09251439,0.7150112,-0.098297305,-0.012899409,0.04093041,-0.23040684,-0.0010478199,-0.21559311,0.06404408,0.18713279,-0.45996055,0.1813013,-0.14663558,0.5383852,0.096885405,-0.6779552,0.23365915,-0.55912167,0.16837464,0.06967684,0.5740947,0.8107547,0.6687689,0.080751725,0.9969456,-0.47612843,0.09182169,0.12956847,-0.3462601,0.2634396,-0.025822828,-0.031300258,-0.44477972,0.17808492,0.08469232,-0.123993576,0.18357821,0.15188551,-0.5856669,-0.2244824,0.01644127,0.45977542,-0.2818772,-0.17414792,0.80336046,1.019641,1.0066496,-0.03328861,1.1840189,0.31701863,-0.067494385,-0.1929909,-0.03396898,-0.5857165,0.18172275,0.3424313,-0.38574454,0.5523891,0.055907022,0.00956427,0.27753785,-0.13603179,-0.27825573,0.044799965,0.42941284,-0.060069975,-0.37254548,-0.36116982,-0.050130542,0.27146843,-0.067952335,0.008999427,0.41315746,-0.10880873,0.5398897,0.29623243,1.0186657,0.028396547,0.1855696,0.071240306,0.27826166,0.3000754,-0.3048723,0.10298479,0.33246845,0.26822165,-0.1062595,-0.42547593,0.086663574,-0.3188824,-0.3692176,-0.15883137,-0.34511697,-0.26675034,-0.024804756,-0.2102127,-0.3040743,-0.09521258,-0.10392526,0.4161493,-2.5823128,0.064392656,-0.1972689,0.26378295,-0.18882896,-0.35611805,-0.14328073,-0.5009803,0.22620618,0.16012461,0.45727864,-0.5130363,0.33736685,0.42854074,-0.5080903,-0.14278686,-0.6471066,0.1439804,0.13310999,0.37805519,-0.20777534,-0.15566342,-0.08449767,0.054963898,0.5365197,0.15078102,-0.01623516,0.37125304,0.6552816,-0.16162921,0.25427863,0.039012995,0.7458406,-0.17252834,-0.22273022,0.52530587,-0.40823093,0.63973224,-0.15115963,0.010087669,0.5335694,-0.3405881,-0.8318708,-0.40043533,-0.07821511,1.4188968,-0.41594768,-0.49443784,-0.030314513,0.17315786,-0.31670582,0.1731086,0.28203312,-0.016469618,-0.060907554,-0.4726951,-0.12626274,-0.17420745,0.30682456,-0.06648236,0.12204676,-0.37868336,0.6581668,-0.16151346,0.52738065,0.23451401,0.20184487,-0.1928811,-0.5135021,0.047404964,0.73211545,0.45869613,0.087703265,-0.22593582,-0.20988657,-0.18041885,-0.19922149,0.133738,0.6343038,0.37183246,-0.1531651,0.110587604,0.3548809,-0.036305696,0.157066,-0.1753598,-0.33857915,-0.18953419,0.048815046,0.48193586,0.71870154,-0.12750666,0.3715631,0.021211928,0.1326695,-0.11927996,-0.58484286,0.5399797,0.5260631,-0.30048797,-0.3028234,0.6368889,0.35467485,-0.15280376,0.46096754,-0.43309116,-0.36691174,0.50113046,-0.19575854,-0.39324495,0.13484198,-0.13661923,-0.07941821,-0.596378,0.22453457,-0.40080723,-0.6311099,-0.37571335,0.0021104813,-2.5194087,0.097280204,-0.15842949,0.098650254,-0.33964944,-0.17264809,0.15163164,-0.62908804,-0.81613976,0.09228873,0.11859218,0.394955,-0.259243,0.11470399,-0.2549155,-0.49186006,-0.2722616,0.40251568,0.13345152,0.2597033,-0.15104838,-0.27976394,0.067372255,0.01857251,-0.35557207,-0.030715128,-0.58998424,-0.28378797,-0.007057158,-0.38970605,0.05509388,0.7427635,-0.7493324,-0.09683365,-0.3447791,0.0482306,-0.113514304,0.07128075,-0.060436275,0.17224227,0.19481523,-0.073209055,-0.021516135,-0.24240331,0.42402124,0.11446353,0.45655417,0.46757045,-0.27840427,0.07120619,0.5065567,0.6804312,0.048302457,0.8560893,0.0008730094,-0.10780362,0.36363232,-0.16878061,-0.252297,-0.7698752,-0.21426909,-0.029347867,-0.49005833,-0.47190228,-0.09422639,-0.370909,-0.8562172,0.45930722,0.17811787,0.37821195,-0.18762736,0.573081,0.41519532,-0.1501993,0.22500253,-0.10726521,-0.18149228,-0.41091296,-0.2681986,-0.63968295,-0.5366343,0.4714936,1.0530642,-0.38104784,-0.017172141,0.21551855,-0.2708973,0.08718556,0.051390957,0.12507685,-0.0219419,0.40993062,0.16030753,-0.5336387,0.25360814,-0.16585527,0.06491759,-0.44694814,0.15600516,0.6436231,-0.60595196,0.3669022,0.27742872,0.14093171,0.09019772,-0.79630023,-0.18303962,0.103186436,-0.26444578,0.550001,0.409651,-0.6040259,0.434401,0.21902014,-0.28591907,-0.5569766,0.3957595,0.0056201755,0.017405376,0.058371395,0.425303,0.21849166,-0.17111742,0.0897725,0.26429763,-0.47741327,0.34307232,0.16477425,-0.21584225,0.03872047,0.04677187,-0.49256435,-0.6755734,0.13956176,-0.41863048,-0.475276,0.13464937,-0.01108921,-0.06725826,0.052131563,0.22621827,0.43750763,-0.3062174,0.13689512,-0.13733979,-0.22632362,0.5623857,0.4192591,0.52094096,-0.48131755,0.55583483,0.19035666,0.03227497,0.19794846,0.029327968,0.5477609,0.099264346,0.38651857,0.0970093,-0.14936063,-0.01606098,0.6012984,0.15045136,0.06325365,-0.06734138,-0.17460132,0.14224993,0.14752983,0.34983802,-0.14224671,-0.5685406,-0.04415543,-0.06266148,0.031395283,0.6161565,0.20870261,0.21188648,0.03620482,-0.12009019,0.16673182,0.024644231,-0.23056285,-1.2894534,0.3268346,0.174855,0.78371304,0.41694626,0.19086225,0.14024873,0.56394476,-0.2944911,-0.06491346,0.51280195,0.04547289,-0.39818177,0.47632906,-0.5897748,0.4944509,-0.13315989,0.05761075,0.32008502,0.2131838,0.35518518,0.99377805,-0.15954103,-0.0081987055,-0.08285144,-0.26204407,-0.03614992,-0.095203824,0.22577035,-0.39491925,-0.25727606,0.62941545,0.38140178,0.36100277,-0.4618683,-0.008978954,-0.0774078,-0.24807633,0.06960876,-0.06283194,0.008515249,-0.17708902,-0.19854899,-0.18550521,0.61098486,0.016525984,-0.07113885,-0.16665004,-0.27242282,0.30032364,-0.20753269,-0.04371324,-0.050030816,-0.61901784,0.020285273,-0.33966517,-0.51050305,0.10189852,0.07049853,0.1283634,0.18952467,0.13486801,-0.08473473,0.3448976,0.08429734,0.63541144,-0.11908888,-0.09528681,-0.30380303,0.34369263,0.13931935,-0.18413483,-0.032308314,-0.22699307,0.21848501,-0.38321152,0.24596588,-0.29792616,-0.40824234,-0.18086076,-0.1725394,-0.01910544,0.30137837,-0.16762345,-0.1974291,0.10777233,-0.26117408,-0.4039557,-0.3221365,-0.29641804,0.013289981,0.13115294,-0.1486067,-0.14293665,-0.23842324,-0.1578017,0.023664564,0.09397968,0.14038244,0.29988465,0.03461827,-0.47208014,0.12441673,0.04759021,0.461771,-0.06156404,0.13005613,-0.23585276,-0.48745927,-0.454797,0.61215425,-0.2479134,0.2819055,-0.00786515,-0.39434114,0.720519,-0.05987666,1.1723613,-0.05350706,-0.41214898,0.08686312,0.6207021,0.09138621,-0.08648849,-0.27468404,1.0970881,0.57860845,-0.038413938,-0.028461128,-0.3834214,-0.36327243,0.14512919,-0.40940607,-0.032529622,0.07902897,-0.41467288,-0.059572835,0.18234873,0.08624491,0.06431863,-0.06910942,-0.14395268,0.15555917,0.19523233,0.3677999,-0.5878943,-0.5563331,0.26688007,0.26576006,-0.052414056,0.2198803,-0.31304967,0.29531947,-0.7944889,0.17747164,-0.46184537,0.06622309,-0.17681247,-0.26990134,0.19799496,-0.17097135,0.2565627,-0.34436098,-0.33374104,-0.117236495,0.4319069,0.2757947,0.2544674,0.74684834,-0.21769816,-0.089281894,0.026573235,0.43039712,0.9177305,0.0067623355,-0.19912088,0.23055476,-0.28504595,-0.65784043,-0.030172497,-0.53405815,0.17053902,-0.11349394,-0.4222125,-0.29285073,0.27437094,-0.09458544,0.18668449,-0.039548356,-0.7614849,0.021428386,0.29905176,-0.37491372,-0.21477847,-0.3325574,0.105501294,0.8622315,-0.25935233,-0.48885942,0.114536084,0.24080242,-0.2454326,-0.81287175,0.10214982,-0.20149688,0.2914547,0.0981166,-0.41097602,0.095332555,0.3135117,-0.44891128,0.18475239,0.38062933,-0.29274216,0.11344432,-0.2946951,0.14104524,0.68436646,-0.28296962,0.08793059,-0.5012189,-0.54346085,-0.8307856,-0.44593874,-0.1701439,0.22789662,0.035123225,-0.7515469,-0.07720005,-0.42803955,-0.08474189,0.07896714,-0.44127646,0.46515122,0.18438447,0.5068206,-0.27191827,-1.1541957,0.04860949,0.10875982,-0.073246345,-0.58880335,0.56750995,-0.1905737,0.7025587,0.065455705,0.040414423,0.17315018,-0.72744274,0.41546762,-0.27636108,0.04956316,-0.6531419,0.2684792 -851,0.48677528,-0.06345556,-0.46041372,-0.17268537,-0.18817806,0.11407456,-0.20443615,0.33439273,0.15772413,-0.43991184,-0.23620605,-0.20309101,0.04979752,0.17217398,-0.21426651,-0.6285652,0.043422047,0.18886271,-0.55364203,0.60928446,-0.40951034,0.34093496,0.08798704,0.2743783,0.08460593,0.36048147,0.24426429,-0.083604015,-0.21548843,-0.2037305,-0.2597287,0.25840503,-0.34229025,0.23088703,-0.02385759,-0.25901464,0.032340683,-0.51392996,-0.34730807,-0.69667965,0.3542573,-0.8591255,0.42427924,0.074837215,-0.17435288,0.021394523,0.05083545,0.23777173,-0.27727172,0.091231905,0.19265383,-0.15516132,-0.031225158,-0.24383575,-0.22936964,-0.40437824,-0.52338505,0.07409045,-0.3642181,-0.32516995,-0.23637995,0.12837046,-0.35011387,-0.081161626,-0.07704765,0.48394045,-0.42668897,-0.010187407,0.25130185,-0.18326566,0.1630601,-0.53892773,-0.09084048,-0.08208933,0.42179316,-0.21406865,-0.2044508,0.21107957,0.22992517,0.43675557,0.105156064,-0.12091891,-0.18096685,-0.10735747,0.23739965,0.4076765,-0.20007183,-0.6037119,-0.10114026,0.017882291,0.046284746,0.27527887,0.20570177,-0.2934572,-0.014364868,0.0743465,-0.20927395,0.3053112,0.44066957,-0.3216977,-0.17696618,0.31977603,0.5425538,-0.03285209,-0.04129667,0.07122557,0.015465775,-0.47846,-0.29065514,0.07127042,-0.16653575,0.46135813,-0.23808956,0.33252227,0.7343843,-0.10872241,0.11910984,-0.015359493,-0.002237626,-0.2993125,-0.14158015,-0.2233958,0.16117379,-0.55417854,0.11689635,-0.16120355,0.88642937,0.2655001,-0.72525024,0.40021095,-0.5592058,0.19877847,-0.15900968,0.41806877,0.59952635,0.31197494,0.29994538,0.6535844,-0.53181344,0.09014389,-0.12218589,-0.61214334,-0.011355376,-0.19597879,-0.03650565,-0.5118445,0.1096439,-0.06825289,-0.018529622,0.09890556,0.3757216,-0.51936424,-0.065057114,0.081513554,0.8530865,-0.31923512,-0.026873805,0.7526728,0.87149835,0.87976545,0.029321222,1.2019441,0.21707875,-0.35958067,0.13436921,-0.22360341,-0.686658,0.38958085,0.5626154,-0.27217472,0.17888395,-0.053367782,0.07422112,0.37272802,-0.5322926,0.1395709,-0.3451076,-0.064234875,-0.015084698,-0.23072913,-0.46517482,-0.1404477,-0.019745596,0.09655924,0.26108843,0.2563501,-0.057930037,0.42110506,0.018370062,1.7374268,-0.006216545,0.13321778,0.15001543,0.45552328,0.3712064,-0.12739928,-0.037863288,0.35372135,0.4772032,0.17687607,-0.54248154,0.00018807252,-0.19613156,-0.4321395,-0.12343979,-0.35050088,0.07635641,0.049799208,-0.32422715,-0.18478878,-0.19052456,-0.17582992,0.35864666,-2.541066,-0.2119361,-0.106397845,0.23692746,-0.21019681,-0.3677086,-0.08390829,-0.4715161,0.47834638,0.26713875,0.46811607,-0.5657566,0.31667554,0.38586748,-0.57440865,-0.02752573,-0.60484827,-0.08266681,-0.14281315,0.38460293,0.12641917,-0.17738564,-0.06771027,0.10525974,0.45038968,0.050749913,-0.016867701,0.29739258,0.41132864,0.15005025,0.5336997,0.082604565,0.590943,-0.23140259,-0.27396536,0.31275186,-0.17092578,0.170741,-0.07660203,-0.0022950668,0.4474704,-0.561243,-0.84197897,-0.74429387,-0.10451517,1.1653118,-0.14399117,-0.28447857,0.2982261,-0.3237542,-0.38628095,0.01620401,0.42193386,-0.15256055,-0.13711266,-0.815108,0.12236679,0.07457815,0.09252816,0.121236295,-0.15664896,-0.5151128,0.66416895,-0.057762824,0.5255505,0.38837257,0.05887116,-0.19851622,-0.39139673,0.13025875,1.0374824,0.40605128,0.1832025,-0.21984178,-0.15651041,-0.40189654,-0.087145425,0.056649048,0.5534672,0.6746625,0.0020168582,0.009324161,0.3496118,0.013790691,0.16959527,-0.2491031,-0.26650238,-0.12186952,-0.13863608,0.56038827,0.355639,-0.1914306,0.40188172,-0.045656506,0.41432124,-0.16495852,-0.44765082,0.55033803,1.2522732,-0.14288126,-0.27647611,0.5411254,0.4011983,-0.27290627,0.43381646,-0.4963568,-0.21499868,0.35138556,-0.19929554,-0.43018773,0.2668831,-0.2706642,0.32668743,-0.87001735,0.20209453,-0.15813272,-0.42848557,-0.6140672,-0.14661217,-3.340074,0.3477062,-0.34499532,-0.13091925,-0.10758254,-0.05419886,0.1774892,-0.6264856,-0.5298384,0.19929792,0.00040343005,0.6441008,-0.13499545,0.20097932,-0.1264929,-0.2653725,-0.3918939,0.01470451,-0.042874236,0.35040963,-0.032927107,-0.41929725,0.030203843,-0.143264,-0.4093799,0.07578694,-0.61059475,-0.38685167,-0.03007602,-0.4766633,-0.3793557,0.5909496,-0.23517199,0.1266418,-0.16652164,0.05395903,-0.18863358,0.28185704,0.052432355,0.21083102,-0.028920677,-0.0448449,0.054960553,-0.18622568,0.36449844,-0.040513862,0.33536652,0.08822925,-0.1290674,0.18092896,0.47196355,0.60994136,-0.1129188,0.76413864,0.49245507,-0.06616213,0.20803764,-0.3641258,-0.35345787,-0.49322647,-0.25803944,0.042814493,-0.46430582,-0.5006761,-0.034564216,-0.40500987,-0.69057006,0.42646268,0.15384038,0.088829786,0.038897526,0.3349713,0.478486,-0.160847,-0.098180726,0.049006145,-0.23157805,-0.54895324,-0.09089025,-0.55715144,-0.24861653,0.05257704,0.7584512,-0.19978319,0.03170817,0.023636645,-0.304544,0.019280616,0.04876473,0.022433167,0.21167536,0.48027703,-0.20868793,-0.7557332,0.5181414,-0.09723541,-0.21832286,-0.44177416,0.14878578,0.5456794,-0.64268297,0.661454,0.29295427,0.037426364,-0.118485995,-0.47080278,-0.20606723,0.03833815,-0.23093963,0.4596772,0.24804874,-0.687573,0.4408164,0.47556007,-0.08771423,-0.66714853,0.49414787,0.00073926174,-0.3931865,0.032921486,0.26479378,0.102201924,-0.04729266,-0.18396142,0.16804227,-0.41368544,0.30630997,0.19279103,-0.028913014,0.13913618,-0.24351099,-0.20004317,-0.74536306,-0.08048447,-0.52052426,-0.29555115,0.27308702,0.180432,-0.009461054,0.15585098,-0.06615954,0.42235747,-0.23064457,0.13081391,-0.06535657,-0.18079026,0.15840666,0.32184324,0.46229115,-0.55670494,0.5972169,-0.06198889,-0.062384848,-0.07192055,0.1867809,0.53566706,0.11924383,0.42638868,-0.13608353,-0.1718412,0.44938385,0.7093192,0.14737524,0.39324218,0.055224366,-0.0525218,0.17220964,0.15456274,0.14919107,0.055683102,-0.57226294,-0.035662785,-0.08935722,0.1322821,0.41132602,0.095047936,0.255167,-0.12369546,-0.45159414,0.042314768,0.30827948,0.035485145,-1.1947764,0.42998892,0.31196985,0.8170602,0.3935613,-0.044416178,-0.09273453,0.67267644,-0.26843557,0.18793239,0.24282615,-0.13018897,-0.5582059,0.44580314,-0.5579408,0.26365945,0.041082732,-0.09030577,-0.056639757,-0.084296055,0.2669477,0.7363946,-0.14282465,0.08182834,-0.07565998,-0.2755162,0.2319972,-0.47324327,-0.0361626,-0.49451128,-0.23047218,0.5489991,0.48956713,0.22166958,-0.12997654,0.0017866492,0.098653905,-0.036735713,0.09409796,0.17773595,0.14210536,0.11455908,-0.80428517,-0.28983638,0.53928083,0.038719576,0.12537439,-0.049666572,-0.19775377,0.35803956,-0.1634642,0.047230568,-0.14884076,-0.6556117,0.06491744,-0.28060904,-0.40452066,0.4943093,-0.011101389,0.2430122,0.30650786,0.116046175,-0.14901492,0.32882363,-0.063376196,0.6698538,-0.015815897,-0.21077958,-0.4322175,0.21576735,0.08798441,-0.16150062,-0.110623345,-0.35212022,0.0808159,-0.5256355,0.5115307,0.07635639,-0.38597667,0.077948086,-0.0699388,-0.05149827,0.6114169,-0.2832747,-0.10221154,-0.1090728,-0.052162185,-0.25395954,-0.25964972,-0.13075139,0.1929098,0.21705653,0.10768581,-0.21553339,-0.099531375,-0.2864547,0.5286054,0.05911347,0.39794186,0.2419962,-0.06260959,-0.2531754,-0.24290253,0.24933563,0.37561283,-0.048259456,-0.09662446,-0.24408069,-0.3752066,-0.3910825,0.047284428,-0.0775274,0.3096492,0.069005825,-0.23115973,0.63740605,0.05347435,1.1069324,-0.017499505,-0.2711858,0.0097622555,0.55305314,0.016627865,-0.048727512,-0.3122985,0.9040947,0.52397037,-0.092258066,-0.11657736,-0.43504888,0.097815715,0.064298645,-0.20168298,-0.1234345,0.05089278,-0.6271598,-0.34851295,0.19580859,0.29554632,0.2620065,0.053875167,0.018524608,0.19358449,0.03234973,0.28145626,-0.3368265,-0.39534596,0.21033539,0.25860965,-0.035029802,0.011067399,-0.5861115,0.47803867,-0.45928496,0.09989568,-0.29824108,0.23263218,-0.19065814,-0.21040587,0.19577041,-0.15871416,0.39606997,-0.32481894,-0.43021616,-0.18128204,0.47274932,0.13962875,0.12938349,0.5622768,-0.2542508,0.18158682,0.109287344,0.5064414,1.0039546,-0.03532452,-0.057030328,0.39506516,-0.3159632,-0.5870637,0.26416096,-0.21955542,0.064033955,0.114210844,-0.18150386,-0.50693333,0.15869655,0.27208695,0.06953755,-0.019599888,-0.6088058,-0.3258047,0.407432,-0.21779206,-0.18043016,-0.34175408,0.18412605,0.63071847,-0.36489245,-0.24629949,0.056416217,0.1325455,-0.12518242,-0.63048685,-0.060071047,-0.3173279,0.3129992,0.15470928,-0.17782208,-0.11631829,0.040911,-0.35983017,0.24188247,0.14880733,-0.37098587,0.13103537,-0.33647072,-0.21959648,0.9286017,-0.24426644,0.036577232,-0.41799122,-0.35258102,-0.7844826,-0.3623013,0.5128575,-0.0006894047,0.11971168,-0.7166769,0.032882195,0.0030480544,0.012817621,0.008606155,-0.36956042,0.4340013,0.057943378,0.561935,-0.04336964,-0.78404003,0.17125791,0.009018882,-0.23618962,-0.60126436,0.5957416,0.0496524,0.7975441,-0.06843264,0.054135937,0.37327442,-0.5206583,-0.077891044,-0.26728466,-0.17792124,-0.71318775,-0.009322175 -852,0.50057536,-0.1779395,-0.3641876,-0.032079455,-0.0876007,0.2208223,-0.10320978,0.56549436,0.25918826,-0.45198205,-0.04198456,-0.16926222,0.05614864,0.16666514,-0.057855774,-0.30517304,-0.078686796,0.09808556,-0.34413105,0.42742664,-0.45013285,0.29274097,-0.1485823,0.39057893,0.2432439,0.22170548,-0.04497256,-0.028128266,-0.31957734,-0.08531357,-0.0173294,0.42734247,-0.41615242,0.06005339,-0.168405,-0.25668365,-0.15026368,-0.5058814,-0.35108012,-0.5808924,0.30442658,-0.80363506,0.442826,0.067493066,-0.19253445,0.28449494,-0.07203413,0.219726,-0.13583957,0.045179587,0.17518093,-0.09722463,0.11639048,-0.27887422,-0.22842613,-0.34881675,-0.5839643,0.02388477,-0.4316444,-0.24476574,-0.19852005,0.07087191,-0.22719269,-0.16931157,-0.0034920932,0.42136344,-0.4615041,0.11885877,0.0033458709,-0.1300785,0.26481727,-0.5509665,-0.25601944,-0.10382846,0.16908105,-0.35255146,-0.24783462,0.1877487,0.36495653,0.4255984,-0.19853243,-0.00838207,-0.44033566,0.044365097,0.1753582,0.5330016,-0.16968141,-0.46578243,-0.11211596,-0.11268813,0.1156637,0.19916874,0.2454908,-0.28220168,-0.09079606,0.13728848,-0.1775993,0.34573632,0.45495024,-0.23381361,-0.33393508,0.3686804,0.43790907,0.10897651,-0.20056461,-0.021828305,0.13257667,-0.42503306,-0.07343161,0.19535713,-0.14844047,0.43865883,-0.05418419,0.22235098,0.7212357,-0.24666366,0.18121262,0.069090284,0.08183015,-0.008556604,-0.32778344,-0.16103938,0.13705191,-0.30243346,0.040842507,-0.1286747,0.6349447,0.11402109,-0.7633524,0.3648309,-0.5652443,-0.011869232,-0.06100222,0.47532475,0.6771229,0.34357098,0.16943502,0.57662416,-0.49496073,0.041325286,-0.12470471,-0.31190726,0.10370897,-0.15742975,-0.039737273,-0.57445884,-0.12386885,0.07892404,-0.15533394,0.17503858,0.4692183,-0.517356,-0.08052293,0.14924075,0.7264658,-0.34372848,-0.09799065,0.6478193,1.0060073,0.7955092,0.0010948499,1.1147219,0.16732137,-0.24456267,0.2945102,-0.4756433,-0.63956106,0.26816404,0.21314116,-0.5396149,0.22784847,0.18071245,0.051956084,0.25016788,-0.31920236,0.19409145,0.00037088591,0.08438513,0.16536392,-0.123418316,-0.35478508,-0.2360032,-0.111653425,0.017545613,0.22064358,0.1844057,-0.38650227,0.28831813,0.036083363,1.8204712,-0.07019744,0.07769622,-0.011564398,0.53440773,0.22670634,-0.169772,-0.06945111,0.37804216,0.35913235,0.16631751,-0.48946258,0.23946206,-0.056099303,-0.55984837,-0.14599688,-0.30146867,-0.041195568,-0.10865311,-0.4773586,-0.023037039,-0.028939685,-0.43023592,0.5021763,-2.9525898,-0.12098031,0.044562623,0.43842617,-0.2482086,-0.45628685,-0.20279603,-0.32207882,0.30074167,0.24435012,0.32480913,-0.73864615,0.26031962,0.38663957,-0.38336402,-0.18583317,-0.5676103,-0.11594965,-0.04340237,0.30253828,0.036113914,0.1271884,0.14279753,0.052503094,0.40542045,-0.15989177,0.08117518,0.16792749,0.39726225,0.047057103,0.35790044,-0.011752844,0.41733652,-0.12768003,-0.3041935,0.43161544,-0.42420012,0.13688973,0.054289237,0.11686046,0.26660398,-0.3346298,-0.86378396,-0.57782364,-0.27857798,0.8869494,-0.06243239,-0.42684233,0.14265354,-0.33370543,-0.43867296,-0.15619056,0.6146762,-0.063020356,-0.04751269,-0.81476444,-0.019854447,-0.118756,0.2442119,-0.024227906,0.08402289,-0.4493208,0.49035132,0.052872743,0.54148805,0.2815549,0.27322847,-0.43318143,-0.40027168,0.09139096,1.0635521,0.20753692,0.21604483,-0.19746889,-0.19828129,-0.35030904,-0.025008619,0.13219851,0.46189806,0.6049297,-0.0075136027,0.17690264,0.21978259,-0.04281891,-0.010890861,-0.13700853,-0.15779518,-0.035590596,-0.015109499,0.4476197,0.63180155,-0.20464253,0.5733262,-0.03167433,0.26030725,-0.28010413,-0.3734475,0.47290435,0.90589267,-0.03601337,-0.14266011,0.5092173,0.44153678,-0.37692577,0.3064032,-0.54897404,-0.18330275,0.46471703,-0.3196038,-0.38283703,0.2866907,-0.27642593,0.0835754,-0.7517128,0.26179802,-0.12093765,-0.42704624,-0.5715283,-0.12452714,-2.996372,-0.0116881095,-0.083351456,-0.3040287,-0.047253035,-0.13909031,0.2403086,-0.561467,-0.4140981,0.11701026,0.08009013,0.6661524,-0.01681473,0.14088123,-0.35151207,-0.18486087,-0.12290866,0.2317751,0.13264796,0.42422917,-0.017564505,-0.44030088,-0.036496248,-0.21289721,-0.42041972,0.03868746,-0.5515349,-0.53914887,0.042327296,-0.4973642,-0.27774265,0.673053,-0.4724393,-0.09199823,-0.21733424,-0.006709075,-0.06601805,0.43339217,0.2393257,0.032741666,0.11039801,0.011644451,0.16247691,-0.28444937,0.32795128,0.13357893,0.2258949,0.53000945,-0.19189262,0.23676684,0.4936856,0.52769876,-0.15468355,0.8415652,0.5235395,-0.09523079,0.25650123,-0.33660218,-0.17847419,-0.40294603,-0.33731404,-0.04554574,-0.43695346,-0.5284431,-0.16105871,-0.3257586,-0.73035604,0.4944187,-0.08886981,0.17549331,0.00048740706,0.2982321,0.3960381,-0.23903689,-0.08782193,-0.08445378,-0.07766083,-0.37071314,-0.34563407,-0.47427088,-0.5523115,0.2116655,0.8951508,-0.05213665,-0.06512467,0.13871177,-0.25935373,-0.17399031,0.0944755,0.041865803,0.16509075,0.33286604,-0.043409534,-0.5337851,0.514475,-0.14510399,-0.2693238,-0.6300519,0.084908165,0.53549063,-0.55381984,0.4729296,0.2350626,0.029257825,-0.07625663,-0.41095275,-0.13392392,-0.036243223,-0.26720157,0.37657887,0.20859297,-0.79204756,0.33989456,0.40299207,-0.18246607,-0.5729734,0.613932,-0.0072410624,-0.23093277,-0.15190563,0.30346832,0.09364649,0.07259267,-0.1613533,0.3676166,-0.48317176,0.24919622,0.254229,-0.080578186,0.44628105,-0.19375253,-0.011666664,-0.61838907,0.09421039,-0.36714035,-0.3783561,0.22117114,0.19220413,0.3081295,0.3726368,0.037363324,0.2965274,-0.39875886,0.04186427,0.025864935,-0.14742258,0.1471764,0.32803452,0.58467585,-0.30280337,0.39962476,-0.045134235,-0.15665512,0.1708772,0.03778986,0.54632205,0.041165058,0.22948305,0.046107598,-0.30380994,0.28143308,0.78163135,0.2284001,0.41749892,-0.08138098,-0.30333537,0.22950938,0.0902662,0.15356036,0.024330476,-0.47425807,0.07670217,-0.093069,0.29166266,0.33870846,0.08940576,0.23419978,-0.1668505,-0.31507123,0.099993825,0.2757554,0.07565243,-1.1102054,0.2178949,0.20710783,0.86115295,0.3477146,0.057859052,0.1624785,0.5260789,-0.17678595,0.17765898,0.3839316,-0.09139981,-0.5489495,0.4097423,-0.6929955,0.5086927,-0.007240995,-0.038322337,0.103709236,-0.16800766,0.40648803,0.7346409,-0.111773744,0.13375045,0.17329894,-0.3236836,0.06485734,-0.4144055,0.21146229,-0.5051081,-0.11443688,0.7029181,0.5783503,0.26623568,-0.092958,0.09257483,0.09581016,-0.056583975,0.06157782,0.082230024,0.14950673,0.05503818,-0.72940356,-0.20495602,0.5354713,-0.08968623,0.0841011,0.05214229,-0.16383317,0.247381,-0.15343386,-0.10843559,-0.018965002,-0.55443156,-0.033095207,-0.40664163,-0.44389778,0.5033571,-0.13969837,0.19693515,0.097238526,0.054462623,-0.32803118,0.6038812,0.40703604,0.7757618,0.0066709123,-0.017818714,-0.49698824,0.24122629,0.26456597,-0.1551577,-0.2411547,-0.18187538,0.07577126,-0.6126497,0.39433855,-0.10809632,-0.32469743,-0.039135836,-0.07788856,0.13982671,0.5859756,-0.024920551,-0.19758897,0.08231985,-0.12764332,-0.27578297,-0.030237682,-0.12290124,0.35736355,0.21307291,-0.18668963,-0.1325725,-0.11234462,-0.18651359,0.21682747,0.07105329,0.4725933,0.40316644,0.056455,-0.22407694,-0.091519915,0.2024935,0.5084046,-0.025295012,-0.041214,-0.23750132,-0.4340923,-0.46244308,0.123567395,-0.17891368,0.32085854,0.17379402,-0.22371012,0.6510704,-0.06270027,1.1429011,0.12188562,-0.4182272,0.19037032,0.3387805,-0.039441034,-0.022987366,-0.4692156,0.9166105,0.47384897,-0.009624271,-0.12681353,-0.14233045,-0.09027414,0.1564234,-0.25496244,-0.12750107,-0.0510767,-0.888582,-0.24091016,0.29468742,0.13027994,0.12278352,-0.09684428,0.09070969,0.2772555,0.0011292577,0.08840792,-0.48192015,-0.020139417,0.31625602,0.46366635,-0.08667387,0.13929006,-0.43417302,0.46689084,-0.42275515,-0.046059486,-0.27975196,0.22050944,-0.16244635,-0.22845195,0.23053494,0.031962626,0.3831482,-0.20190239,-0.37692454,-0.34522107,0.45809457,-0.007284403,0.17111781,0.43372294,-0.16987896,0.032601044,-0.12288224,0.38159016,1.0997943,-0.27465945,-0.066357,0.45179325,-0.34734884,-0.6043311,0.31219637,-0.3223973,0.33756065,-0.03924911,-0.18850361,-0.3841527,0.2787709,0.11311435,0.120400876,-0.08964431,-0.36333308,-0.107308306,0.26678616,-0.30211815,-0.23351765,-0.31021774,0.044117555,0.5818278,-0.31091017,-0.3458513,0.06211877,0.45609188,-0.29543036,-0.45987457,0.021520229,-0.35963136,0.24590717,0.038809877,-0.31082937,-0.15996884,-0.036566958,-0.35542354,0.11310242,0.27163494,-0.40762976,0.06818436,-0.27904573,-0.022229493,0.96405756,-0.06262677,0.078210756,-0.6055715,-0.4979712,-0.9136812,-0.4012241,0.27475178,0.11886649,-0.096430376,-0.5026561,0.051729176,-0.10327758,-0.14216799,-0.09425936,-0.3985539,0.53582174,0.13231811,0.39681426,-0.24050976,-0.79077035,-0.054572053,0.21698986,-0.26631048,-0.72357863,0.5352436,-0.02037193,0.8885732,0.016248163,0.07084828,0.51331955,-0.49081117,-0.122034654,-0.2893356,-0.12430645,-0.7471775,0.09150651 -853,0.63242704,-0.31933212,-0.3014843,-0.06439713,-0.1270359,0.09157341,-0.35944468,0.44814098,0.11112494,-0.5848563,-0.244626,-0.03168893,-0.12161258,0.49200583,-0.28788283,-0.6881945,0.112648614,-0.010997582,-0.4647871,0.9576143,-0.4485136,0.35268462,-0.10855926,0.60163444,0.11069921,0.281367,0.35306504,0.30597395,-0.15130669,-0.34249535,0.14216965,-0.049881045,-0.4698185,0.38139632,-0.072929315,-0.3269978,-0.07395074,-0.20975652,-0.16397682,-0.96222585,0.49876165,-0.9826601,0.512706,-0.25886595,-0.48458382,0.09056044,0.27373272,0.03723284,-0.34451574,-0.07491277,-0.14774552,-0.17970915,-0.07621761,-0.62564754,-0.064142235,-0.3416403,-0.4688973,-0.0023587488,-0.37481558,-0.25504282,-0.17734517,0.2674903,-0.42010596,0.009670761,0.07053102,0.6984761,-0.44170657,0.13180926,0.0475814,-0.32397294,0.15169714,-0.8018913,-0.34396446,-0.12461361,0.18081836,0.15688743,-0.3263754,0.38215914,0.09677363,0.275749,-0.19201349,-0.049503747,-0.09291548,-0.2740038,0.10385167,0.5261581,-0.333875,-0.6730244,-0.20117775,-0.37614822,0.32803583,0.14460514,0.3336318,-0.189823,0.051742744,-0.15507421,-0.33925423,0.36904222,0.6480765,-0.2646353,0.06574325,0.069136195,0.5111892,0.012588772,-0.3563666,0.01394646,-0.09472249,-0.45599157,-0.16186684,-0.10812116,0.10116451,0.66356045,-0.09629475,0.41326064,0.42747784,-0.3596944,0.0035652085,0.21701545,0.06798846,-0.049550727,-0.17561568,-0.31819597,0.31184375,-0.28574657,-0.071066685,-0.6594792,0.6070335,0.16334023,-0.5078137,0.40509546,-0.36023548,0.076009005,0.042730514,0.5805425,0.67075276,0.7000062,0.18782906,0.58804643,-0.3186131,-0.096545175,-0.03685471,0.10518145,-0.099030845,-0.27352664,0.1268787,-0.36086175,0.2668311,0.12534261,-0.004057288,0.06855574,0.55157846,-0.49394616,-0.15820137,-0.12605686,0.75110173,-0.31690085,0.30036175,1.0871131,1.2273148,0.90044236,0.03979883,1.2882832,0.31410515,-0.09605206,-0.15224975,0.1907258,-0.589811,0.17527503,0.43710604,0.30424857,0.31976035,0.010273408,-0.16386431,0.4631662,-0.41990444,-0.24849115,0.05400635,0.72036785,0.2920831,-0.17288722,-0.46678674,0.14871262,0.2999014,-0.09536708,0.18023546,0.45110244,-0.24125227,0.6859157,0.13834035,1.2641598,0.03129165,0.042287983,0.21215329,0.55055636,0.20371984,-0.15673643,0.33389306,0.21746884,0.2583049,-0.011241588,-0.45649108,0.19888383,-0.1293651,-0.73985654,-0.13470712,-0.32525155,-0.1703148,-0.19302759,-0.24373291,-0.4048569,-0.044768218,-0.027466005,0.0673312,-2.6040037,-0.2701957,-0.22771153,0.41882184,-0.19760089,-0.25606024,0.012507211,-0.34500572,0.6859295,0.4459872,0.39357397,-0.59828556,0.18294168,0.6104998,-0.4749876,-0.039200414,-0.606353,-0.010663307,-0.084367655,0.6726934,0.007217212,-0.27385294,0.035208117,0.19245663,0.46171874,0.015594837,0.095395856,0.23274404,0.304486,-0.22943777,0.19020139,-0.077381164,0.4655277,-0.47704965,-0.1272759,0.35890272,-0.63034827,-0.06267701,-0.11758518,0.15200777,0.40771905,-0.5487632,-0.5997263,-0.8220469,-0.0014014569,1.2400597,-0.036263093,-0.98160225,0.25676474,-0.35524833,-0.38644293,-0.1683328,0.5386638,-0.27818838,0.041468333,-0.6201948,0.058485433,-0.23016073,0.37931922,-0.07014542,-0.03488528,-0.5385528,0.7901058,-0.029707193,0.3573967,0.24635263,0.24736066,-0.64245504,-0.48463285,0.13425301,0.8337511,0.565324,0.14556716,-0.11429725,-0.13651562,-0.23957224,-0.2941562,0.022761406,0.98721695,0.6041527,0.07667872,0.14324746,0.24481899,-0.36236498,0.07250888,-0.15724967,-0.3457515,-0.22141665,0.24110556,0.82458264,0.64498454,-0.055045225,0.18204767,-0.012020967,0.46297437,-0.37288237,-0.44088018,0.4405507,0.7390017,-0.23985456,-0.39687243,0.5687889,0.44902793,-0.6189698,0.36391908,-0.6515804,-0.41462696,0.62920195,-0.19367786,-0.45457858,0.20397286,-0.3318378,0.28321525,-0.6034843,0.46618178,-0.42035624,-0.50050086,-0.6415279,-0.20699553,-3.178902,0.13375086,-0.105729155,-0.33633068,-0.36790955,-0.30846745,0.20587163,-0.5717932,-0.3750974,0.16586633,-0.009760693,0.6020877,-0.078647844,-0.017194418,-0.32575706,-0.5449579,-0.14643763,0.28578424,-0.08625692,0.29960087,-0.11228237,-0.344759,0.03209163,0.06226395,-0.52793795,-0.028884178,-0.39747956,-0.6621095,-0.15937735,-0.28224602,-0.07276352,0.7487002,-0.28677246,0.07150822,-0.43635333,-0.1060755,-0.2259652,0.20696817,0.20806317,0.21649216,0.084257066,-0.106219746,0.26451617,-0.45905387,0.11727513,0.12596127,0.3037728,0.594106,-0.35292506,0.086857654,0.28277215,0.70348704,0.23107634,0.91741747,0.056171622,0.036928117,0.6555915,-0.30245927,-0.55448,-0.31267592,-0.22499298,0.26414958,-0.33002874,-0.120534584,-0.2537923,-0.3789082,-0.5792862,0.5185174,0.0026212065,0.20748113,-0.083084464,0.5044469,0.386401,-0.08480525,-0.17039515,0.08203318,-0.18221149,-0.58054024,-0.20960125,-0.6539571,-0.564364,0.08520331,0.6683748,0.090366654,-0.078304835,0.17170992,-0.20625149,0.049368914,0.18069702,0.16042362,-0.099079534,0.08413613,-0.0067856205,-0.7985252,0.5988465,0.047906753,-0.32747877,-0.61184365,0.2492365,0.7990524,-0.5963647,0.4230669,0.21118179,0.15917271,-0.4649848,-0.38432896,0.06427994,-0.055380818,-0.30423257,0.25930884,0.32494405,-1.0193399,0.40949708,0.36229217,0.1457715,-0.49687764,0.46791524,-0.07164589,-0.4170089,-0.17290045,0.5044229,0.16320612,0.066394985,-0.2697604,0.30198452,-0.58393013,0.17412418,0.020750197,0.036066964,0.60349464,-0.15806478,-0.3134474,-0.78319323,0.041208964,-0.724593,-0.39557818,0.22201404,0.12168474,0.16476168,0.20880912,0.12477515,0.5179506,-0.27054393,0.19815904,-0.25444317,-0.33159935,0.30056143,0.55099446,0.45879367,-0.29270566,0.7504959,0.12055575,0.08763168,0.031231446,0.07212002,0.45377114,0.089093566,0.5399927,-0.15100735,-0.11860576,0.16771415,0.88427466,0.37311402,0.6228688,0.13744141,-0.29656547,0.21481067,0.09265476,0.18948168,0.14159675,-0.46926564,0.08530379,0.08665811,-0.006471597,0.50679123,0.1223757,0.3972481,-0.01739318,-0.37094685,0.03120236,0.113288835,-0.052280184,-1.3804629,0.17116837,0.15479037,0.9057997,0.52995086,-0.15701346,-0.12055945,0.58817166,-0.08561473,0.08547345,0.30578268,0.06869165,-0.35807943,0.5894583,-0.63982886,0.47007382,-0.12558469,-0.03055918,0.052429236,-0.05461681,0.31396687,0.64021057,-0.12026464,0.10594464,0.059377454,-0.38178504,0.14750814,-0.5315437,-0.07768247,-0.23645009,-0.24019207,0.42306206,0.42190114,0.3855655,-0.3111126,0.066880874,0.1902855,0.008513272,0.3155675,0.028399164,0.15437654,-0.4728637,-0.4953439,-0.29068145,0.44925344,0.010520166,0.28413314,0.18869656,-0.18895549,0.19249044,0.14339161,-0.01709329,0.0128701115,-0.5381907,0.22779612,-0.37440443,-0.476841,0.5874167,-0.06410304,0.13177758,0.34884608,0.007080525,-0.30320334,0.113129266,0.14835571,0.55517524,0.13997255,-0.22452573,-0.4330923,-0.014995775,0.19203697,-0.44550982,0.14918503,-0.17772387,0.0033293853,-0.4397602,0.2878726,-0.12925762,-0.20381604,0.048800383,-0.029125659,-0.010069652,0.5072847,-0.09274587,-0.12904896,0.0659114,-0.08565991,-0.16284432,-0.263105,-0.11511422,0.28259385,0.10392085,0.24197572,-0.004800646,0.013472861,-0.080197014,0.34386903,0.076937445,0.24668288,0.53606445,-0.100403376,-0.3676564,0.12784292,0.10671938,0.62798166,-0.051410988,0.15039323,-0.1661553,-0.8795326,-0.4813662,0.40368527,-0.056530226,0.20849681,0.17222764,-0.39226457,0.81121707,-0.02201926,0.8066531,-0.16436031,-0.40837944,0.1080291,0.5648037,-0.137748,-0.0630596,-0.33442843,1.0037621,0.48271248,-0.39113614,-0.036418095,-0.27141258,-0.15360726,0.35443687,-0.27108818,-0.24117184,-0.21027479,-0.7203844,-0.2818127,-0.014577285,0.28140828,0.041057106,-0.12540342,0.12743029,0.43072045,0.13479061,0.2524178,-0.5319485,0.1633306,0.4636318,0.06033447,-0.21112488,0.12656154,-0.28054923,0.14308672,-0.645537,0.14435655,-0.55464005,0.050318424,0.09750945,-0.565921,0.22645336,0.09338021,0.18983859,-0.41987717,-0.38829386,-0.2333005,0.2947247,0.23989703,0.23736101,0.34027502,-0.074074395,0.022745263,0.13206269,0.50640494,1.1089431,-0.036596384,0.08565417,0.03766227,-0.74275345,-0.931747,0.20160604,-0.19929792,0.2996227,-0.062544726,-0.23364978,-0.721328,0.19274908,0.39682645,-0.09362061,-0.13456494,-0.59231526,-0.5712106,0.14045548,-0.48323643,-0.2703585,-0.35563657,-0.018812688,0.40809023,-0.2587243,-0.05605613,-0.20905067,0.39391172,-0.39223433,-0.7715811,-0.23232959,-0.32927552,0.45457622,0.1367411,-0.32443914,-0.2318367,0.1275544,-0.4821044,0.10926005,-0.053338483,-0.39980602,-0.014573455,-0.4181919,-0.015333002,0.62954605,-0.11293923,0.34284362,-0.6429113,-0.61882377,-0.8056481,-0.42549294,0.26726493,0.19158007,0.17915395,-0.7586103,-0.1378194,-0.2631264,0.09188895,0.01536274,-0.19783908,0.37419227,0.15614243,0.48178566,0.019785322,-0.7630732,0.25243342,0.15265597,0.06111795,-0.5981274,0.47018605,-0.15963982,0.7515501,0.10616751,-0.09211287,0.18283176,-0.60768676,0.30654272,-0.11838035,-0.37883675,-0.41407079,0.32893193 -854,0.45254552,-0.18693565,-0.45254663,-0.029503938,-0.23849832,0.10684161,-0.15500559,0.23380238,0.19069824,-0.18120833,-0.027435783,-0.30051464,-0.123053804,0.425962,-0.15392627,-0.8316274,0.09696908,0.08634396,-0.6344783,0.5669347,-0.4997763,0.35580114,0.02702213,0.2632131,0.23411223,0.23011777,0.05046714,-0.10622153,-0.10138048,-0.10709575,-0.060555633,-0.03480893,-0.30491087,0.1335023,-0.061364617,-0.22289668,0.08961495,-0.3935522,-0.64121634,-0.6923039,0.4288096,-0.63394994,0.44532663,0.09679421,-0.35249397,0.22650413,0.0055679684,0.36886832,-0.19087152,0.025358481,0.2380269,-0.041193254,0.0061059236,-0.19456568,-0.35653725,-0.48643672,-0.51523525,0.011867809,-0.56517875,-0.24775495,-0.15643731,0.19133803,-0.3015122,-0.056665998,-0.04606223,0.4342446,-0.36500606,0.0121042095,0.13414034,-0.16255757,0.1725557,-0.7273553,-0.03169621,-0.035264887,0.03935057,-0.0391357,-0.05432999,0.32048672,0.07882503,0.5875539,-0.13828373,-0.17574237,-0.20011069,-0.07499714,0.034998186,0.60944444,-0.16039209,-0.3637194,-0.25556743,0.10383258,0.1626949,-0.047571875,0.03649598,-0.44197357,0.05746603,-0.0063744825,-0.19312094,0.52797765,0.57680714,-0.34582663,-0.12118732,0.4634015,0.4390721,0.2418721,-0.15409732,-0.050094463,0.02616017,-0.39158016,-0.08344888,0.021821562,-0.21569236,0.47882524,-0.051392507,0.20161505,0.62376726,-0.1339055,0.21603785,0.040556364,0.054475542,0.052691367,-0.1670844,-0.1899196,0.083338656,-0.6506034,-0.01674867,-0.11809838,0.81322885,0.14029646,-0.7031425,0.44749567,-0.4590611,0.15441275,-0.07835509,0.51939446,0.67891216,0.25333682,0.12683243,0.6130412,-0.46884155,0.13025379,-0.1278849,-0.30786416,0.06990299,-0.033749588,-0.013099208,-0.49816865,-0.14781901,-0.14918788,-0.20146377,-0.110349864,0.40404025,-0.49205172,-0.116775505,0.10741865,0.87247974,-0.28762084,0.07599206,0.5624302,1.1204349,1.000906,-0.15134208,1.2076898,0.41384232,-0.25264192,0.18644872,-0.4495188,-0.53697056,0.1963639,0.19064164,-0.10348531,0.33140355,0.008707987,-0.1977012,0.38619265,-0.25698572,0.07168942,-0.26436365,0.22958946,0.058307048,0.1699623,-0.45055544,-0.17065118,-0.08813106,0.06634081,0.15583625,0.23124482,-0.43259412,0.10901441,-0.052285466,1.3387617,-0.17151216,0.06358584,0.14129482,0.40739653,0.17473766,-0.08775855,-0.07856147,0.30988905,0.29507986,-0.018290233,-0.6588414,0.12666246,-0.3846889,-0.2699517,-0.2375068,-0.21127152,0.046073318,0.028185256,-0.54827887,-0.015038872,0.015243749,-0.29117623,0.3548582,-2.538549,-0.30502707,-0.14913172,0.33396232,-0.29024023,-0.29912046,-0.041912794,-0.41767704,0.22949126,0.23997803,0.4005038,-0.57511955,0.46069056,0.5443067,-0.50388026,-0.086311296,-0.5533711,-0.04689985,-0.04404622,0.4889157,-0.07978383,-0.05309051,0.036267605,0.17951289,0.4187683,-0.07889153,0.02507356,0.13512401,0.41375935,0.17061685,0.2887181,0.034865145,0.51063615,-0.17414893,-0.07761846,0.38461724,-0.22017686,0.23137014,-0.13970785,0.19448961,0.40649846,-0.28207913,-0.72959876,-0.45605972,-0.2751361,1.123407,-0.120757736,-0.315054,0.2711059,-0.07751121,-0.28584358,-0.051081996,0.34207964,-0.16081892,-0.15790643,-0.7250582,0.078150764,-0.105064504,0.11989885,0.06311809,0.03293346,-0.1407985,0.62815547,-0.061191894,0.26719385,0.25162306,0.30093822,-0.2103237,-0.5146957,0.032730047,0.9426105,0.458865,0.11294599,-0.13782705,-0.053066406,-0.23158933,-0.122309715,0.047863446,0.4713316,0.7658733,0.016527604,-0.040758602,0.25518674,-0.051161908,0.0010240813,-0.09545929,-0.47114745,0.025818646,0.060357157,0.6233955,0.51461416,-0.17573373,0.5026808,-0.059738897,0.18873902,-0.14803734,-0.44446963,0.44742167,1.1389848,-0.19435722,-0.21366324,0.423068,0.35646975,-0.3879704,0.3697633,-0.7081672,-0.3499346,0.42188033,-0.23440641,-0.41102168,0.2993864,-0.27783176,0.13769008,-0.76152194,0.48204482,-0.20226263,-0.38796246,-0.5972392,-0.19244671,-3.0895772,0.28630385,-0.40033013,-0.09848271,0.05147912,0.14707316,0.346535,-0.54734695,-0.32299617,0.07839187,0.074009486,0.5551411,-0.03730248,0.19078757,-0.2826079,-0.2509379,-0.2874656,0.16539474,0.06301758,0.25376338,-0.01888814,-0.38464838,0.12226049,-0.19743614,-0.2551325,0.06222249,-0.6014101,-0.39982802,-0.20044574,-0.57159317,-0.15925822,0.6420352,-0.11425196,0.036174655,-0.24709912,0.09738564,-0.07245882,0.3229366,0.1423124,0.11901127,0.0014089068,-0.10524474,-0.029040666,-0.4214309,0.19884841,0.19237147,0.20058684,0.36594123,0.044718243,0.08760479,0.491495,0.51359516,0.010456066,0.7270816,0.38206652,-0.22493592,0.16541965,-0.22711784,-0.05712471,-0.38918933,-0.37469503,-0.11902856,-0.2856103,-0.49210018,-0.027445536,-0.35653916,-0.6610185,0.36579373,-0.05964059,0.23004942,-0.049394675,0.20898345,0.552034,-0.088264026,-0.023061363,-0.0011659622,-0.070556745,-0.45821908,-0.33824152,-0.6814431,-0.41095278,0.2439506,1.0107775,-0.16497438,-0.122212715,-0.030112863,-0.16466519,-0.09894987,-0.07717737,0.05109055,0.10047796,0.26529625,-0.11875595,-0.7517328,0.25605145,-0.20435448,-0.01976343,-0.53204286,0.116557755,0.81243783,-0.46061376,0.45325273,0.30552903,0.1645192,-0.08445721,-0.4739362,-0.019724805,0.26817894,-0.17519578,0.40993232,0.05855579,-0.59466285,0.45134562,0.31118125,-0.3862548,-0.7235864,0.4535986,0.11967537,-0.39685443,-0.12387432,0.4599067,0.01703916,0.029669015,-0.19743657,0.24587458,-0.36759052,0.16909344,0.23701486,-0.08376589,0.29248756,-0.19916473,-0.23091806,-0.5789945,-0.02100556,-0.35521296,-0.31408826,0.1875503,-0.0022565683,0.27163425,0.22464132,0.09915401,0.4581719,-0.16547722,0.080990344,-0.038163647,-0.25982898,0.39184174,0.46765748,0.46811944,-0.36507437,0.52176344,-0.11186188,-0.10244525,0.15403691,0.116971515,0.48209828,0.13425355,0.33464807,0.062170934,-0.11248841,0.2996841,0.8526331,0.13604695,0.5067589,0.21101539,-0.20651771,0.14294161,0.08430954,-0.03127385,-0.030061336,-0.4182634,-0.23650716,0.1397688,0.31434786,0.4903979,0.06536952,0.28498065,-0.2365486,-0.44086236,0.06904822,0.18658939,0.033345807,-1.0491091,0.25539634,0.115044385,0.66249645,0.30225736,0.044221774,-0.0271046,0.63826007,-0.01305263,0.07170785,0.2755776,-0.06807125,-0.49011666,0.423118,-0.4917155,0.33948287,-0.06651558,0.051480327,0.01948673,0.042807285,0.31911424,0.69416994,-0.19221324,-0.09358528,-0.057331014,-0.49667606,0.01581167,-0.29316777,0.2295476,-0.45102605,-0.42211863,0.52157545,0.49442163,0.034973644,-0.13991079,-0.02003318,0.106681585,-0.1014864,0.2038043,0.053224605,-0.00015678405,-0.048398316,-0.7729158,-0.2673886,0.4726499,0.027773228,0.09092539,-0.07824952,0.12594546,0.1979067,-0.14902616,-0.040357348,0.074969515,-0.6768199,4.118681e-06,-0.21536238,-0.4495717,0.3605756,-0.20569785,0.10173566,0.13167943,0.04927033,-0.46161366,0.36003938,0.14575009,0.74224925,-0.099594705,-0.12065744,-0.43070713,0.046488382,0.13788481,-0.1637076,-0.16426715,-0.35235798,0.19878295,-0.7723629,0.538883,-0.24377231,-0.08226062,0.035260875,-0.22977604,0.04748256,0.6359216,-0.28337437,-0.20652333,-0.13276173,-0.12341698,-0.41135797,-0.13124737,-0.042665474,0.039183505,0.32205066,-0.14740205,-0.1667256,-0.20012274,-0.16758709,0.4532039,0.11275788,0.46238774,0.51042765,0.21178222,-0.3521866,-0.2004346,0.2875904,0.43669993,0.008336087,0.0006097585,-0.33037072,-0.35264224,-0.33131662,0.21837376,-0.13726787,0.21971032,0.15417913,-0.3793748,0.8194723,0.13329715,1.157995,0.016240379,-0.2040513,0.016778532,0.45197445,0.0008740425,-0.030595759,-0.30956897,0.91735816,0.66610426,0.04374096,-0.20242088,-0.4624113,-0.1483443,0.20442696,-0.27213457,-0.05171337,-0.00830282,-0.5293482,-0.31371766,0.28336823,0.36926398,-0.014260014,-0.11564215,0.096585065,0.10984368,0.13588126,0.38800022,-0.58822256,-0.09221865,0.26528332,0.3199084,0.023185443,0.32523346,-0.47904444,0.40761954,-0.54754865,0.14130303,-0.2854192,0.057888854,-0.032789227,-0.17172946,0.20253135,0.07163832,0.37819836,-0.45435074,-0.3400599,-0.34228393,0.4865295,0.17521136,0.08021502,0.63244545,-0.19189858,0.038050603,0.09217159,0.6610435,1.1153785,-0.20930977,0.0032360156,0.2592909,-0.2276747,-0.75669795,0.23177657,-0.35857764,-0.011947608,-0.15781473,-0.23738183,-0.51729244,0.3928235,0.12474416,-0.05112653,-0.06089425,-0.6019675,-0.123451166,0.29043534,-0.13106982,-0.2657868,-0.20808966,0.18046986,0.5672502,-0.21140145,-0.18951966,-0.029938417,0.39763063,-0.26404002,-0.6402055,-0.0044539175,-0.419543,0.33421478,0.17190494,-0.11071076,0.043172013,0.03833847,-0.42722124,0.11608265,0.24030909,-0.41749662,-0.01052442,-0.04546793,-0.054335993,0.62387156,-0.091110125,-0.076292366,-0.71033204,-0.52995056,-0.8572683,-0.5364411,0.35841694,0.19196798,0.057704028,-0.6139717,-0.12660514,-0.13329794,0.04277458,0.027101906,-0.45161435,0.28933567,0.11559992,0.49586546,-0.23531073,-0.7539308,-0.018179102,0.19720906,-0.33232555,-0.6688101,0.4542714,-0.053040553,0.86041933,0.009533477,0.07294698,0.18991981,-0.41395956,0.030226143,-0.3457351,-0.32491022,-0.7371412,0.15337652 -855,0.4838986,-0.31513846,-0.39774475,-0.04729781,-0.20619977,-0.16515197,-0.034184296,0.72467756,0.3804036,-0.42644405,-0.24563706,-0.1883897,-0.039441835,0.48074737,-0.0903287,-0.40528357,-0.04493019,0.32605532,-0.42388368,0.5645409,-0.32328627,0.07076294,-0.028349236,0.6041642,0.035319418,0.08604491,0.1269946,-0.04356988,0.021450654,-0.29950616,-0.1015537,0.37622157,-0.77407855,0.31257984,-0.39732847,-0.46342218,-0.060792,-0.5454661,-0.37054488,-0.8228056,0.12176037,-0.82573,0.46528652,0.2310585,-0.37080035,0.31417346,-0.07884355,0.16018936,-0.39621934,-0.13611327,0.1806726,-0.23296745,-0.067434855,-0.3490356,0.044725467,-0.122522004,-0.6901429,0.07510935,-0.3077599,0.036786493,-0.3455598,0.14599262,-0.33347812,-0.08395395,-0.1751339,0.7759445,-0.3292388,0.16188334,0.20042945,-0.2052027,0.2353764,-0.4474186,-0.18800442,-0.20400566,0.13858128,-0.07946958,-0.48472893,0.20395958,0.01887246,0.5238718,-0.059523012,-0.12447066,-0.34801093,0.096859924,-0.035737902,0.39075956,-0.28398952,-0.649297,0.019184167,0.16125336,0.17487751,0.14509724,0.066380076,-0.17778593,-0.16091038,-0.14445393,0.029810267,0.4830813,0.4551486,-0.28517887,-0.27269733,0.33970943,0.5513394,0.12863392,0.038647246,-0.06856895,0.095134735,-0.76039433,-0.20794795,-0.110414565,-0.20102578,0.6447338,-0.20028931,0.34525585,0.61502665,-0.1979465,-0.3560661,0.13451457,0.18307151,0.0308182,-0.4662582,-0.38478482,0.66362906,-0.3767437,0.16015027,-0.27304587,0.7890811,0.14038251,-0.74992746,0.2125082,-0.5454768,0.19212753,-0.08664214,0.6074244,0.7594002,0.7236169,0.5704945,0.6692431,-0.3737942,0.059232403,-0.13723563,-0.2957644,0.079345606,-0.4475812,-0.13999262,-0.37785587,-0.079305924,-0.055119123,-0.13734163,0.18655436,0.28444147,-0.6984668,-0.2579629,0.43618774,0.44994068,-0.15549193,-0.077711076,0.8611122,0.9527121,1.2100917,0.09325683,0.9973552,0.10697148,-0.23488235,0.27904797,0.03497721,-0.8183243,0.31647536,0.2860769,0.028117875,0.13674663,0.06246933,-0.06542677,0.37513062,-0.5964108,-0.16649629,-0.18837889,0.12450257,0.07805983,-0.061496824,-0.6016807,-0.3477005,-0.22837645,0.117628366,-0.11843797,0.32492796,-0.21028619,0.4768921,-0.04844135,1.4249727,-0.03335492,0.09031295,0.25010362,0.42913875,0.14777443,-0.21472478,-0.147047,0.39305404,0.22388314,0.30950645,-0.46918154,0.047065523,-0.21398605,-0.503084,-0.07332467,-0.26080546,0.047530472,-0.0040855086,-0.38776538,-0.3495657,-0.24415052,-0.30047885,0.47640193,-2.6062925,-0.10196129,0.09188681,0.459793,-0.27842844,-0.28536996,-0.07375094,-0.5924806,0.42596936,0.35648513,0.60340023,-0.6763406,0.062097285,0.4368789,-0.790572,-0.13390431,-0.7319073,-0.05507647,-0.11926139,0.34507954,0.081424154,-0.13872279,0.0027555202,-0.027612321,0.522892,0.006661678,0.0991927,0.34514666,0.41904366,-0.16136378,0.4456992,-0.13283649,0.3803935,-0.67826843,-0.2949792,0.3923613,-0.3048317,0.18426554,-0.13351375,-0.030851254,0.57300115,-0.54193187,-1.0009629,-0.5707541,0.05045985,1.3180746,-0.13922279,-0.43885055,0.13502438,-0.49896744,-0.09277725,-0.14061213,0.5499404,-0.13444519,0.0030473967,-0.770405,-0.033132862,-0.003911262,0.29668364,0.012183267,-0.15148537,-0.56487167,0.7197444,-0.013405733,0.45486116,0.4175863,0.08062927,-0.38509187,-0.5959284,-0.05306776,0.7941101,0.30810353,0.20548685,-0.281882,-0.15957539,-0.16233161,0.25035173,-0.014503844,0.5796816,0.5258419,-0.21313995,0.11687534,0.3607582,0.16474448,0.058981802,-0.14512919,-0.17224193,-0.27874124,0.0013710359,0.6397569,1.0684186,-0.16974789,0.17396843,-0.10821992,0.27362975,-0.009802704,-0.40412894,0.49811673,1.2153642,-0.09444185,-0.26889947,0.7275901,0.53255624,-0.024672538,0.49991488,-0.4811217,-0.4114765,0.31805274,-0.28776506,-0.5150259,0.1082071,-0.22752674,0.1400831,-0.7907886,0.28653222,-0.2545894,-0.5088173,-0.912286,-0.0795644,-2.8475845,0.39022934,-0.41577432,-0.11018769,-0.15788907,-0.19337319,-0.014793686,-0.64427084,-0.49840125,0.26568803,0.29961494,0.6765364,-0.26684594,0.23699605,-0.25572568,-0.49447057,-0.24712777,0.059320062,0.17254601,0.29793113,0.117627926,-0.44859624,0.03546837,0.06688013,-0.31471244,-0.023919502,-0.6412696,-0.34592184,-0.17461596,-0.58880967,-0.36421368,0.6282165,-0.2970296,0.018395126,-0.1897403,0.024800545,0.11604201,0.14895312,0.002111045,0.24185656,0.061960384,-0.085533194,-0.12339123,-0.13565128,0.25152633,-0.034589037,0.28175342,0.3291665,-0.41969118,0.17103402,0.64465594,0.8274997,-0.2456946,0.96148634,0.75589734,0.019757971,0.177447,-0.0494377,-0.358446,-0.5989779,-0.17172654,0.014811191,-0.48843065,-0.19444251,0.261013,-0.37583184,-0.9144073,0.82712746,-0.10596948,0.14423822,0.088159226,0.33765355,0.755394,-0.3595363,-0.11732479,-0.039317206,-0.09223097,-0.5200288,-0.27937672,-0.5496964,-0.45404485,-0.07773151,1.141344,-0.26948294,0.16827594,0.16298337,0.0072393916,0.027935192,0.27175447,-0.257925,0.284896,0.5537365,0.123232506,-0.6056397,0.4782156,0.11472807,-0.19225836,-0.44253635,0.45541772,0.58377415,-0.69057244,0.5890568,0.31475803,-0.13277785,-0.18442076,-0.8179712,-0.38415012,-0.19700103,0.013888188,0.37690958,0.39184856,-0.86445594,0.44675946,0.29645982,-0.3502364,-0.93946654,0.3212515,-0.084517516,-0.56846017,-0.010970995,0.243111,0.12114359,0.017034808,-0.11672711,0.28869438,-0.2561008,0.24187748,0.07262803,-0.2151174,0.085684456,-0.329914,-0.0011657426,-0.94637203,0.1269794,-0.57896,-0.50675476,0.41735157,0.18706529,-0.123793684,0.20170414,0.09752092,0.41352597,-0.11905842,0.05668689,-0.29713202,-0.29011968,0.47292247,0.54944927,0.5301866,-0.53538436,0.6515577,0.094483845,-0.11523875,-0.29738316,-0.04830258,0.35164163,-0.17900144,0.5391855,-0.26368043,-0.28900072,0.13512714,0.546613,0.15887724,0.4057641,-0.07762697,0.18517531,0.41558954,0.14907427,0.36803487,-0.20819306,-0.6371271,0.21774842,-0.43922806,0.039814588,0.4642377,0.09665636,0.26267052,-0.13114731,-0.22512239,-0.025195064,0.18712403,0.124584645,-1.3610988,0.275008,0.13998543,0.8539789,0.6271712,0.06853008,-0.084491454,1.0487584,-0.13497595,0.05964735,0.3665397,0.07772092,-0.37068495,0.6582025,-0.86064005,0.41006318,-0.086760014,-0.045020718,0.04324017,0.04164555,0.39532098,0.5126677,-0.15715939,0.003436327,-0.047298353,-0.30211523,0.1228629,-0.46954522,0.27390188,-0.6395175,-0.30965424,0.807157,0.6213713,0.4186709,-0.29101446,0.01945969,0.114837445,-0.19268231,0.19558424,-0.007488484,-0.02733013,0.0983544,-0.687443,0.20850937,0.5481949,0.12674783,0.16674237,-0.1751443,-0.23164213,0.30011728,-0.19241536,-0.36222374,-0.22750938,-0.654979,-0.014715474,-0.36650148,-0.32050577,0.5585646,-0.09414369,0.28516477,0.26775208,0.13254784,-0.35892108,0.19986564,0.040261686,0.93177557,0.021965573,-0.17120688,-0.23992006,0.4088602,0.024257889,-0.15838963,0.011480659,-0.26541355,-0.039203864,-0.39578697,0.33793512,0.019780962,-0.28613904,-0.0051655746,-0.033858508,0.058463525,0.6231044,0.040834706,-0.104256004,-0.107958496,-0.26891193,-0.3883184,-0.23871402,-0.06120482,0.33557415,0.22534609,-0.079594806,-0.13214162,-0.12682208,-0.05467583,0.53678656,0.02607893,0.30519888,0.07683992,0.0957906,-0.2986709,0.15664583,0.03085724,0.58105904,0.06462737,-0.22675198,-0.21822153,-0.3563713,-0.49799657,0.012052705,-0.018389858,0.48449448,0.050979376,-0.01899239,0.8516154,-0.0102616,1.1011099,-0.14136313,-0.4227616,0.126923,0.5974779,0.0075681657,-0.13280797,-0.31161335,1.0202192,0.50907665,-0.104430705,-0.040939357,-0.2500944,0.07473838,0.032752305,-0.14053194,-0.29890954,0.047207084,-0.52623963,-0.10951228,0.21645899,0.2810439,0.35732985,-0.21775909,0.0018782517,0.2771114,-0.115885474,0.32814065,-0.23802269,-0.13233821,0.23175621,0.44212794,0.046909083,0.029973432,-0.3881797,0.35000005,-0.5530353,0.1439211,-0.34310624,0.22565542,-0.45622006,-0.32767108,0.27231494,0.12337917,0.45983553,-0.4562813,-0.30670905,-0.209689,0.46206853,0.2159868,0.14950062,0.6202648,-0.28000268,-0.078815274,-0.010704677,0.28122154,0.93659943,-0.49010015,-0.13391657,0.40341577,-0.23217863,-0.5864236,0.49050328,-0.2484104,0.18595822,-0.05710524,-0.20728588,-0.5596841,0.07899868,0.25033462,0.21519317,0.021925712,-0.8019755,-0.008209109,0.3520906,-0.25846797,-0.1028787,-0.33493415,0.09315469,0.47327504,-0.12360752,-0.54028153,0.18250048,0.105755866,-0.06875327,-0.5100226,-0.07346627,-0.49787745,0.086719394,0.12282255,-0.47035834,-0.13733836,-0.03770404,-0.5871032,-0.06821262,-0.02085498,-0.28860947,0.10861655,-0.49386367,0.014362897,1.0463293,-0.28238735,0.55240923,-0.3402978,-0.49377465,-1.0207895,-0.121769756,0.7151244,-0.024207732,0.14395244,-0.70249224,-0.057969093,0.023930343,-0.41490945,-0.23130198,-0.29698253,0.46485996,0.23013711,0.35298786,-0.14875543,-0.6835671,0.37480986,0.16913612,-0.08331333,-0.49143443,0.2439525,0.15422113,0.93729764,-0.06742259,0.13320358,0.27366433,-0.65732807,-0.08947428,-0.09554866,-0.19958133,-0.492061,-0.0834525 -856,0.44842476,-0.05015444,-0.53161824,-0.22179726,-0.32232222,0.18464069,-0.15526006,0.42225185,0.3478916,-0.20589651,0.032815523,0.08978849,-0.009780422,0.5850006,-0.14863907,-0.77381456,0.061906092,0.06651579,-0.5647477,0.40901533,-0.5257837,0.36685663,-0.10531355,0.40313855,0.1113639,0.24312548,0.20480934,0.12337758,-0.08420641,-0.017094092,-0.12543593,0.30703196,-0.3407285,0.13119192,0.03110758,-0.3014095,-0.12963952,-0.26449177,-0.22810681,-0.67743444,0.39098546,-0.7404156,0.4875028,-0.089828335,-0.45837468,0.26815364,0.09059926,0.21056144,-0.25958043,-0.07611457,0.052648555,-0.20087692,0.030942794,-0.175123,-0.35102907,-0.35931405,-0.53249305,-0.05278555,-0.5403662,-0.11634665,-0.2755767,0.109483495,-0.33990857,0.12261486,-0.099165834,0.44380686,-0.22421561,-0.09026897,0.2557898,-0.20240584,0.078698225,-0.3954416,-0.16361025,-0.066158906,0.19166557,0.12437417,-0.24812767,0.2553584,0.32393876,0.43501726,-0.09172765,-0.28474417,-0.34042358,0.08132458,-0.05349809,0.4357025,-0.15716064,-0.28884223,-0.3195776,0.0566806,0.1684426,0.11607941,-0.0033234486,-0.22842972,0.017893357,0.08723029,-0.31629038,0.38536498,0.35025266,-0.35764074,-0.10201626,0.3843738,0.4876791,0.11851821,-0.29870877,0.101532765,-0.04560224,-0.50141746,-0.17117865,0.10212811,-0.08572667,0.4295704,-0.119700514,0.2024839,0.67971987,-0.06797545,-0.056784205,-0.047861893,-0.016313497,-0.058384657,-0.21869089,-0.16039823,0.09221076,-0.3485307,0.1523569,-0.18956041,0.75562376,0.17106315,-0.77109593,0.47155258,-0.45066032,0.10871663,-0.10651602,0.5194795,0.8486628,0.3528723,0.123952374,0.85383505,-0.53939855,-0.031117234,0.08129227,-0.3572425,0.12860836,-0.03837993,0.15724145,-0.53362787,-0.015209577,0.24160233,-0.1803849,0.28620005,0.279529,-0.42765322,-0.07889913,-0.14844725,0.68630546,-0.30201286,-0.24146174,0.8584534,1.0025098,0.87959945,0.06348122,0.9032503,0.39613825,-0.09742075,0.109183535,-0.28997484,-0.57777625,0.19292893,0.28556418,0.1695074,0.47847417,0.070808105,0.07501001,0.5090343,-0.13384934,-0.09749737,0.053753365,0.41873783,0.11167327,0.025762906,-0.45889235,-0.32262215,0.2135987,0.06449635,0.24867383,0.2644264,-0.20155154,0.6084713,0.117860965,1.3725466,0.13377835,-0.0038910806,-0.06412225,0.338473,0.25553688,-0.08479496,-0.2720056,0.2554924,0.35106733,-0.05070079,-0.6089815,0.11281513,-0.2223845,-0.25363824,0.001989721,-0.38022655,-0.082262516,-0.20612882,-0.36046144,-0.15528142,0.038557794,-0.3404036,0.44816214,-2.7035434,-0.18505251,-0.16029303,0.23664674,-0.09033128,-0.3795325,-0.28575557,-0.40039033,0.16876009,0.41558662,0.33250538,-0.70561683,0.38459843,0.24093458,-0.3252705,-0.06304316,-0.6157049,-0.046725053,-0.05029603,0.37612242,0.03265502,0.05377874,-0.07493512,0.48428944,0.5869998,0.14548376,-0.13049279,0.32668835,0.4552649,-0.07037135,0.5339734,0.14183395,0.6050242,-0.16991135,-0.088944085,0.29912415,-0.46998954,0.25627795,0.13014774,0.3076858,0.43919638,-0.3286688,-0.85529804,-0.5233142,-0.115910284,1.382662,-0.3500939,-0.3665957,0.2702346,-0.24112065,-0.45737436,0.016898913,0.44448468,-0.14203864,-0.20428793,-0.6517364,-0.08342044,-0.022353377,0.09416242,-0.17213823,0.03486715,-0.16304953,0.6068953,-0.13143282,0.49442604,0.09446951,0.11404627,-0.15303765,-0.43437958,0.007859026,0.8091607,0.34828702,0.086977996,-0.14480363,-0.26082078,-0.24728656,-0.14415383,0.19477703,0.5748006,0.62751967,0.11713953,0.04736856,0.22798626,-0.2655946,-0.058895897,-0.08879804,-0.262565,-0.009196137,0.012418522,0.6149393,0.7411632,-0.1299201,0.42834407,-0.10825847,0.19673446,-0.21235694,-0.4972868,0.51536447,0.66515315,-0.22487251,-0.350394,0.43733338,0.24999857,-0.3295856,0.31954893,-0.477082,-0.22767518,0.4797921,-0.049498674,-0.3418956,0.18091914,-0.21371226,0.022379471,-0.83827686,0.2620447,0.029443052,-0.5711785,-0.53238934,-0.14369197,-3.929632,0.10021011,-0.013202689,-0.25457373,-0.034340817,-0.15107235,0.38553604,-0.5848036,-0.53820986,0.0234549,0.03689027,0.5372597,-0.046412367,0.032261875,-0.36598518,-0.29699376,-0.11119559,0.15229498,0.11887847,0.37842917,0.15073586,-0.3649392,0.11111843,-0.32070056,-0.60364777,-0.0066769207,-0.5113886,-0.56444514,-0.13053586,-0.49005142,-0.18188132,0.6689595,-0.37673238,0.037361193,-0.27794358,0.006309573,-0.19156674,0.3446684,0.116029166,0.043522857,0.048512373,0.007181502,0.081925556,-0.39608556,0.25929043,0.014803401,0.34506485,0.22591296,-0.12586385,0.23934107,0.71238625,0.6298974,0.18849042,0.69008714,0.2394623,-0.11563403,0.22445853,-0.25913745,-0.22999279,-0.5782175,-0.3422195,-0.1924934,-0.3791878,-0.30818322,-0.2822759,-0.3847156,-0.7689811,0.34055918,0.039736908,0.13605683,-0.1382732,0.2555147,0.48376656,-0.15581612,0.067472875,0.050248653,-0.31546262,-0.5927641,-0.3469407,-0.5709311,-0.49790123,0.37065747,0.90862256,-0.17620802,0.00031662412,-0.118276834,-0.46291965,0.048332226,0.04227221,0.2601444,0.27851686,0.11653894,-0.2578409,-0.61232555,0.29635137,-0.44884586,-0.078306444,-0.64147633,0.062121063,0.67865884,-0.4050428,0.46711418,0.2624422,0.24043779,0.024713947,-0.41223136,-0.1999766,0.17533863,-0.24295892,0.4861476,0.3220059,-0.64187276,0.5561715,0.24263586,-0.07695874,-0.45263562,0.37806728,0.00868302,-0.10114021,-0.018438945,0.36655113,0.07675687,-0.032289512,0.022190783,0.083688445,-0.4723527,0.12426635,0.26889983,0.008089849,0.32984146,0.020951167,-0.011294399,-0.5805097,-0.21663733,-0.5339088,-0.23397456,-0.0620887,0.078503974,0.3053381,-0.1423218,-0.03591042,0.31785294,-0.30477196,0.05888451,-0.06542093,-0.22252776,0.47966528,0.533327,0.37958542,-0.2690995,0.5403251,0.06476267,0.25950485,0.11649767,-0.1135198,0.44685608,0.23537879,0.35162306,0.1487185,-0.094660245,0.26058453,0.58373463,0.18984178,0.31200078,0.054986328,-0.27421755,0.21158297,0.1374579,0.18434803,-0.0883534,-0.25738147,-0.113739155,-0.08962264,0.19836521,0.48439577,0.10530834,0.2322418,-0.052353203,-0.28501925,0.29580727,-0.0032287922,-0.17303996,-1.376797,0.42703652,0.2716134,0.58945316,0.25073603,0.05739653,0.05182112,0.51475364,-0.22486468,0.12625629,0.35057095,0.027135968,-0.43063456,0.45872098,-0.5961271,0.46559936,-0.14800514,-0.01048544,0.094716035,0.23073283,0.39138776,0.9094616,-0.039798148,0.08223985,2.296269e-05,-0.29001263,0.014972304,-0.28180078,-0.03224313,-0.65184253,-0.3205978,0.48431116,0.5350416,0.49230438,-0.25864214,-0.06948674,-0.02256298,-0.07622813,-0.07551534,-0.16152279,-0.037323304,-0.19202588,-0.6250579,-0.36541632,0.41551706,0.14451125,0.060218457,0.026659628,-0.25514123,0.34497935,-0.022264753,-0.1343808,-0.028024038,-0.6700247,-0.07694757,-0.16183639,-0.57113796,0.28571507,-0.43524995,0.2905754,0.1947671,-0.005155695,-0.3749716,0.10585559,0.22565956,0.81301886,-0.035009254,-0.1533417,-0.44664747,0.04802965,0.22213307,-0.23236401,-0.14514898,-0.3254693,0.08959125,-0.42888698,0.34758133,-0.24324787,-0.3055398,-0.13276543,-0.11441283,0.18003127,0.36036828,-0.3938008,-0.14321123,-0.16026218,-0.0067799753,-0.28623828,-0.16264765,-0.27503118,0.33804947,-0.04782543,-0.12099002,0.08313413,-0.046575136,-0.04355537,0.3283562,0.14700903,0.2568341,0.49283347,0.08449096,-0.21388678,-0.14180382,0.052521355,0.3672996,0.18758248,-0.28487357,-0.50643694,-0.34704378,-0.34109423,0.32000962,-0.21483125,0.17447765,-0.045756657,-0.41270688,0.6024088,-0.051359538,1.0528067,0.052525204,-0.21070595,0.06972172,0.4678728,0.26594138,0.12743802,-0.21317594,0.6543808,0.47806516,-0.23459935,-0.19178966,-0.44333082,-0.2254596,0.32696444,-0.30900893,-0.13961017,-0.12298,-0.75016963,-0.19572105,0.14109214,0.06779261,0.21565485,-0.07963895,0.14595716,0.009323127,0.13200907,0.4898281,-0.31828418,0.055883367,0.34614077,0.1367232,0.0061892164,0.14150521,-0.43447977,0.3583104,-0.5266356,0.1310269,-0.5024437,0.1728504,-0.04077893,-0.311965,0.118096255,-0.0031368476,0.24040651,-0.38418242,-0.29441494,-0.27503166,0.60450375,0.27766487,0.13809423,0.5237656,-0.18994941,-0.19543616,0.26971605,0.5438622,1.0689404,0.09989958,0.07301633,0.34249538,-0.21286821,-0.54047275,0.007933085,-0.22803633,0.33988127,-0.11455081,-0.19760744,-0.41101232,0.39642096,0.07700692,0.046694286,0.13082257,-0.33749157,-0.26142523,0.39681342,-0.35848162,-0.22401787,-0.34094277,0.12162308,0.4479289,-0.4028552,-0.27227473,-0.08640157,0.3357813,-0.11338173,-0.53824097,0.056511726,-0.28657943,0.3856773,0.14470302,-0.29835653,-0.067561515,0.2304012,-0.39942476,0.2090595,0.18173055,-0.42394033,0.12620603,-0.12739836,-0.0667743,0.94816977,-0.0465844,0.16082957,-0.7440669,-0.5328727,-0.963651,-0.37471005,0.25580904,0.05534711,-0.120809086,-0.64106244,-0.010874237,-0.029384544,-0.081752695,0.030888343,-0.44115835,0.3871484,0.14411919,0.24437936,0.083146356,-0.93734086,-0.10345962,0.050129972,-0.2348532,-0.6123784,0.6433221,-0.15589105,0.5753952,0.044989552,0.19638191,0.18033123,-0.37604353,0.301609,-0.37163123,-0.14864792,-0.50276256,0.1864387 -857,0.4242911,-0.064757906,-0.3890882,-0.17723948,-0.20670892,0.17333321,-0.16973692,0.30532765,0.11601406,-0.4767484,-0.10740331,-0.13806625,0.07223625,0.13458854,-0.216201,-0.58113015,-0.07169811,0.12997584,-0.29967952,0.5321983,-0.43238544,0.54341376,-0.048695516,0.18856707,0.11052357,0.38197336,0.17459354,-0.12206581,-0.2561959,-0.11765644,-0.20698255,0.42116296,-0.39451277,0.055746548,-0.024423866,-0.3522735,0.034600515,-0.2682724,-0.3058592,-0.64056003,0.28681424,-0.65114105,0.33592987,-0.06518323,-0.26608253,0.4348672,0.046599627,0.1700012,-0.11865962,0.04316466,0.07466078,-0.24423088,0.032975834,-0.27407268,-0.18886606,-0.39061955,-0.57071155,0.025266396,-0.4403926,-0.32307804,-0.43152735,0.106072634,-0.32454187,-0.11324226,0.038195167,0.38018176,-0.5929306,-0.042631045,-0.017527139,-0.12112568,0.23438393,-0.6125755,-0.17055413,-0.073194005,0.1870423,-0.3534684,-0.073799856,0.36102897,0.23210208,0.44838104,0.041440543,-0.14877906,-0.5303285,-0.21028817,0.27091205,0.42505506,-0.1935755,-0.3983476,-0.052267045,-0.11037204,0.07989904,0.12668346,0.03775684,-0.118100196,-0.18323348,-0.014059806,-0.27487648,0.14306107,0.44232446,-0.43817753,-0.3458232,0.36849245,0.4621932,0.0647913,-0.1862935,0.0074697384,-0.0038423617,-0.3430716,-0.21324901,0.09005708,-0.18103272,0.489177,-0.13466826,0.23478244,0.6356708,-0.23623581,0.10691396,-0.15762419,0.051197175,0.014991802,-0.14813296,-0.15855119,0.18875028,-0.42150444,0.07544686,-0.20445406,0.8084829,0.09908045,-0.74163914,0.3376638,-0.42639136,0.040849257,-0.055831026,0.4707074,0.5028128,0.41505674,0.29051328,0.5859628,-0.48233026,-0.032953013,-0.04553541,-0.35193235,-0.013835237,-0.13291031,-0.09279825,-0.5284199,0.124545656,0.13873911,0.025358856,0.06683658,0.52810794,-0.42574412,0.029214362,0.12170702,0.7179277,-0.37619537,-0.088220164,0.6840582,0.97559404,0.89269143,0.0057365852,1.0092794,0.22099364,-0.28620675,0.046639834,-0.4488314,-0.47088376,0.20713726,0.3285485,-0.040025495,0.18396793,0.085968494,0.14953013,0.34179765,-0.3478253,0.060926296,-0.23077035,0.15233453,0.09716167,0.09372712,-0.4402026,-0.3075161,0.0751445,0.10667081,0.13381281,0.29674125,-0.04723551,0.48474833,0.13445024,1.6179746,-0.0015908795,0.12695423,0.06742456,0.48073646,0.17352867,0.03372688,0.057551496,0.30668724,0.18372071,0.081559725,-0.6070034,-0.0071413307,-0.14660034,-0.61844945,-0.18584563,-0.4046585,-0.11893544,0.021929257,-0.43428344,-0.21174186,0.0148196295,-0.4310426,0.47130325,-2.6975882,-0.063282505,-0.022217084,0.23660183,-0.253208,-0.37592793,-0.05486957,-0.45763335,0.49086577,0.3645705,0.44297913,-0.6548805,0.2589433,0.46958822,-0.3980355,-0.100845255,-0.43565106,-0.22749732,-0.15075439,0.31900513,0.101239815,-0.17624465,0.08284786,0.1744669,0.4704229,-0.1820083,0.14471711,0.24799693,0.22386658,0.07508592,0.39680022,0.06155231,0.4912004,-0.06762457,-0.18881004,0.4504876,-0.3960325,0.13166997,-0.10159099,0.15598294,0.3295242,-0.39811856,-0.77805334,-0.57716966,-0.30609393,1.158113,-0.1860926,-0.46753287,0.30808625,-0.14698485,-0.22636236,-0.21687488,0.33081985,-0.15970343,0.07333413,-0.7425811,0.2323283,-0.05711833,0.07599064,0.08458015,0.07827095,-0.46703255,0.6468296,-0.046288677,0.43612036,0.34920812,0.23189683,-0.2215672,-0.41996533,0.05459189,0.91125935,0.4352036,0.20261686,-0.3257545,-0.2593211,-0.1899109,-0.12835261,0.14847168,0.37184143,0.69566673,0.04234691,0.15839347,0.17993902,-0.076366596,0.09798832,-0.142267,-0.19751036,-0.0073315036,0.06739371,0.54979175,0.4156854,-0.20302996,0.4066691,0.0009824581,0.24317014,-0.23449592,-0.3858224,0.4256928,0.9639605,-0.050699554,-0.24359763,0.61378706,0.55903715,-0.19868074,0.4062427,-0.6187998,-0.2876729,0.48017097,-0.31502905,-0.42942575,0.16346073,-0.3952176,0.09147801,-0.75919276,0.29357925,-0.17610209,-0.35121694,-0.6914811,-0.11539037,-3.626472,0.08033462,-0.1612567,-0.20607698,-0.024190418,-0.16693433,0.17756456,-0.6303739,-0.45985922,0.16796097,0.0356172,0.5829434,0.023603959,0.019666806,-0.2189225,-0.2608553,-0.25005698,0.13263763,0.019477578,0.3266324,-0.07308924,-0.5033835,0.007450998,-0.20499271,-0.46286795,0.019271504,-0.2870884,-0.5351266,-0.10328364,-0.4271715,-0.32064462,0.6418052,-0.36134255,0.089321785,-0.20328772,-0.14621216,-0.124844775,0.2586193,0.20152074,0.19173667,0.12650321,-0.067420594,0.1320628,-0.3265168,0.24885362,0.030925835,0.1479721,0.48805714,-0.15625286,0.09775691,0.5128866,0.5834254,-0.017411618,0.85266155,0.47121507,-0.21029106,0.22333513,-0.33857414,-0.22782053,-0.6363042,-0.39031586,-0.021959797,-0.3850279,-0.5264756,-0.2201369,-0.33261776,-0.70962185,0.57657343,-0.032131966,0.19014496,-0.004057949,0.25185847,0.31171393,-0.14504696,-0.11812633,-0.18283835,-0.11075957,-0.36958712,-0.35018846,-0.73268634,-0.5227798,0.04614919,0.87250906,-0.10325652,-0.13396047,0.045002364,-0.04531951,-0.06565127,0.2142499,0.22815341,0.20799008,0.23162995,-0.0487881,-0.6024023,0.62562954,0.1153912,-0.16611665,-0.55788946,0.006339399,0.40503764,-0.5330075,0.45190838,0.400815,0.013049895,0.07056963,-0.52001,-0.20467955,-0.08277511,-0.31750685,0.4172142,0.20821297,-0.6279397,0.41877964,0.23290534,-0.20865321,-0.6796157,0.52342457,-0.109559864,-0.34978226,0.025930362,0.36646912,0.18771362,0.016830873,-0.15361607,0.1923879,-0.4270366,0.25183815,0.26442346,-0.017558321,0.47641423,-0.23631646,-0.13662612,-0.7379014,-0.015118557,-0.51227576,-0.21247971,0.055213187,0.14325818,-0.020081166,0.26988792,-0.123795554,0.44218007,-0.34329942,0.052530378,0.04216079,-0.1467864,0.26042792,0.3543691,0.4615545,-0.29327133,0.53456795,0.025719035,-0.015750341,-0.20205866,0.12189035,0.48431182,0.12947108,0.28193784,0.08934759,-0.3588727,0.2691354,0.76932424,0.35754508,0.48229244,0.10148152,-0.3230781,0.302842,0.18474185,0.18614075,0.09646355,-0.34181947,0.031698633,-0.25362936,0.12626979,0.35529265,0.054159254,0.49731177,-0.18607263,-0.19050673,0.09420281,0.30833852,-0.09658724,-0.9564889,0.18527202,0.16763672,0.7875838,0.58608687,0.06990808,0.13635664,0.5421028,-0.3440241,0.069018506,0.31977123,-0.07743909,-0.55582553,0.6377587,-0.7175929,0.4187698,-0.05014,-0.068526566,-0.041664034,-0.07885139,0.31605133,0.66551423,-0.06344128,0.056354396,0.050772518,-0.34400612,0.19514465,-0.35230958,0.10439183,-0.35083225,-0.16205412,0.64794904,0.31414038,0.30667892,-0.099007085,0.02977508,0.08592947,-0.13276456,0.13062851,0.11738404,0.2285705,-0.08851725,-0.50774884,-0.3487817,0.46878007,0.0021580597,0.15533602,0.022368515,-0.1495524,0.24211918,-0.060099512,-0.102028176,0.12028843,-0.45628685,0.110566854,-0.2329696,-0.42199612,0.59473884,-0.2368089,0.33836296,0.13905272,0.061840028,-0.37557375,0.19576731,0.35494518,0.5545004,0.072410025,-0.13570692,-0.30684897,-0.05020829,0.2362136,-0.16690597,-0.19778536,-0.08934493,0.1402025,-0.55539435,0.34218445,-0.17674369,-0.1326897,0.16469952,-0.18714234,-0.03647058,0.3613288,-0.07391697,-0.18384887,-0.010307445,-0.025722744,-0.27365932,-0.13074282,-0.17482655,0.26749676,0.10248483,-0.112090886,-0.08471652,-0.13508372,-0.11200778,0.3908108,-0.020548252,0.32883093,0.27172643,-0.047070764,-0.49723014,-0.07743871,0.14285222,0.3324122,-0.14678453,0.09214903,-0.21130644,-0.46582603,-0.30068815,0.13733499,-0.1461037,0.2766027,0.17057489,-0.3241672,0.6936661,-0.16288616,0.93931246,0.07600133,-0.45133084,0.08120708,0.40466905,-0.041898403,0.06950704,-0.14969769,0.9508391,0.61446494,-0.0041450015,-0.24726693,-0.29792607,0.07403369,0.19045165,-0.1382719,-0.12132713,-0.078009546,-0.7532228,-0.33846718,0.32966873,0.2716844,0.15679112,-0.0449054,0.027202334,0.22838391,0.222278,0.32366404,-0.508404,-0.1791662,0.44412512,0.09794521,0.08398436,0.158316,-0.31296608,0.41822848,-0.50255483,0.075162075,-0.29182664,0.111360505,-0.27534702,-0.21414489,0.32309008,0.09543116,0.29485288,-0.14186575,-0.4165308,-0.26050594,0.41220614,-0.05999484,0.14779162,0.4486529,-0.1654968,0.16266294,-0.035039403,0.34396657,1.0992546,-0.1891578,-0.10330422,0.34657457,-0.3472016,-0.5527131,0.27015233,-0.27863038,0.092273444,-0.043227963,-0.2660537,-0.4758321,0.18814367,0.19694474,0.020795088,0.21123564,-0.38005012,-0.20094413,0.28906554,-0.36574546,-0.15061633,-0.16846392,0.07273061,0.6361519,-0.3267875,-0.13474047,0.050438713,0.3533561,-0.28139976,-0.5741908,0.0799837,-0.2860018,0.3405863,0.19287097,-0.33103782,0.050593797,0.20970632,-0.2916932,0.04658392,0.5117794,-0.41098157,0.0012855565,-0.37238696,0.1701244,0.8956624,-0.116061784,0.17821133,-0.5220548,-0.42126718,-0.9259058,-0.44326615,0.55049956,0.16523862,-0.027958548,-0.57561123,0.045344494,-0.22598715,-0.112370916,-0.04772392,-0.43375942,0.47046828,0.28699857,0.23827244,-0.06685098,-0.5684228,-0.006498295,0.101710275,-0.1428022,-0.463629,0.52087784,-0.17564318,0.7339123,0.04806818,0.07843051,0.3351008,-0.47177136,0.07287472,-0.23151904,-0.27338472,-0.6068644,-0.051204458 -858,0.6541018,-0.21968713,-0.5107881,-0.15398355,-0.2663571,0.24696185,-0.20778185,0.60876465,0.1475476,-0.5604508,-0.05432493,-0.12490168,0.015094146,0.27080673,-0.10271591,-0.41598257,0.11863413,0.1943863,-0.7231202,0.5739327,-0.52970093,0.2521486,0.005938273,0.44361097,0.16779228,0.29577574,-0.007546097,-0.11418471,-0.24832267,-0.20236337,0.052831694,0.32778752,-0.5518873,0.13547999,-0.2765451,-0.2531402,-0.06871591,-0.54149455,-0.2678809,-0.7262068,0.1286824,-0.85047126,0.4796096,-0.06198481,-0.32705778,0.3322934,0.08708027,0.22136872,-0.2531677,0.08762482,0.13853638,-0.11744621,-0.13544811,-0.23506263,-0.18074581,-0.36712658,-0.5876632,0.10331866,-0.39939058,-0.07285651,-0.16665816,0.12502886,-0.18886876,0.022416428,-0.039207336,0.4135444,-0.32682657,0.13958365,0.06321473,-0.05753613,0.087039776,-0.5530472,-0.099669725,-0.14897391,0.3591038,-0.22729234,-0.19748148,0.18648142,0.24936458,0.53481233,0.009242337,-0.09768118,-0.24099624,0.015435703,-0.010125563,0.5279285,-0.13137534,-0.40367514,-0.112235725,0.009420721,0.32361495,0.050632525,0.25030926,-0.1826496,-0.20536579,-0.22733395,-0.22897457,0.33963636,0.4723028,-0.3513404,-0.23576745,0.36869097,0.51908696,0.14738436,-0.24724287,-0.011152549,-0.111941375,-0.5450516,-0.10436094,0.12393278,-0.14903863,0.46617815,-0.17458007,0.14744253,0.5369996,-0.16874416,-0.08260846,0.20378646,0.07630622,0.11011581,-0.11735602,-0.23196733,0.15907985,-0.31175733,-0.020813938,-0.25495636,0.5792715,0.20060924,-0.7428951,0.29734287,-0.44859946,-0.06768134,-0.028035454,0.4708507,0.69692564,0.57000685,0.15488361,0.49902308,-0.2539453,0.14648604,-0.19895165,-0.2742371,0.13247424,-0.21496233,-0.09285267,-0.43408072,0.14934108,-0.109244704,-0.21084778,0.07312644,0.46064785,-0.44318694,-0.16454706,0.20533457,0.82101154,-0.28932852,-0.21761657,0.87099135,0.88678646,0.8699677,0.035117116,1.0487971,0.22470373,-0.12234917,0.16598049,-0.27364573,-0.60629475,0.34705472,0.3431216,-0.027302235,0.27552956,0.07936905,-0.12707072,0.26952186,-0.2593834,-0.04346863,-0.17465125,0.08925878,0.06013915,-0.030194461,-0.2986235,-0.30778205,-0.023622958,-0.009594407,0.16375159,0.20691153,-0.28901345,0.43135625,0.0057770107,1.7552388,0.033306282,0.04109387,0.052071206,0.50187004,0.18228774,-0.23520342,-0.13787144,0.39745784,0.2765667,0.072479,-0.3862611,0.072748005,-0.10062008,-0.43315935,-0.09177329,-0.45351613,-0.11573864,-0.0986177,-0.58691233,-0.1367512,-0.07139419,-0.21588212,0.4064551,-2.681942,-0.19143073,0.040981114,0.34841403,-0.33449495,-0.41430467,-0.25622272,-0.47218698,0.24148649,0.2759674,0.49361783,-0.6277401,0.5368138,0.19308172,-0.5442016,-0.2132847,-0.51211256,-0.1150403,-0.018341742,0.36357766,-0.09741457,0.03534059,0.12144899,0.08165072,0.57720673,-0.102624625,0.099476464,0.286786,0.41489425,0.19993375,0.42413172,-0.12675792,0.5277511,-0.30685365,-0.26172927,0.37496686,-0.43691733,0.22199154,-0.0068517476,0.19246562,0.38151842,-0.523551,-0.89052814,-0.7154664,-0.015072003,1.2517762,-0.15694737,-0.2707518,0.05609677,-0.28238547,-0.3154015,0.029710837,0.45277065,-0.07836126,-0.09875543,-0.7577566,-0.10292578,-0.02411431,0.33139402,-0.012524655,-0.01815151,-0.4170949,0.42720017,0.013491403,0.49512362,0.13062492,0.18398611,-0.15717584,-0.45244795,0.061465364,0.97429585,0.27241856,0.19399731,-0.2807381,-0.28264117,-0.36775634,0.14853281,0.01441347,0.56407905,0.517573,0.044188224,0.13945358,0.19835737,-0.032317556,0.108062245,-0.14292406,-0.22175775,-0.2525317,0.11898869,0.4753037,0.4861041,-0.10265741,0.5313288,-0.17146474,0.35912022,-0.07834373,-0.40983397,0.3876515,0.91601354,-0.22518066,-0.18737204,0.5098989,0.4687329,-0.20771956,0.49063605,-0.53533727,-0.46204185,0.31553692,-0.18086961,-0.20852065,0.39716265,-0.22470772,0.22831583,-0.8853565,0.3068524,-0.32875076,-0.35112762,-0.49536344,-0.023127437,-2.7339342,0.17235279,0.010259673,-0.29083455,-0.06903369,-0.2004476,0.1393044,-0.53430986,-0.41722378,0.085668705,0.08342473,0.7224754,-0.045084976,0.062435534,-0.2938376,-0.4211092,-0.34662968,0.15101233,0.1873096,0.44514686,-0.11424271,-0.4482909,-0.062159754,-0.27563205,-0.21563108,0.046499602,-0.6918578,-0.51271904,-0.15400332,-0.44410223,-0.19886903,0.60638535,-0.29012656,0.07316408,-0.11712061,-0.007935593,-0.043132517,0.17193045,0.047146082,0.13696194,0.18661666,-0.13802482,0.065770194,-0.2582008,0.250432,0.18710022,0.17546317,0.46061543,-0.102234185,0.18982922,0.5682908,0.61220455,-0.23778419,0.78363395,0.40477464,-0.03531269,0.34081918,-0.2755904,-0.28144422,-0.453652,-0.14730169,-0.078422636,-0.41694084,-0.32664305,-0.019565128,-0.3498039,-0.8335277,0.5294834,-0.113375805,-0.019070387,-0.08292483,0.4008155,0.5962893,-0.23290345,0.0019191131,-0.13966708,-0.11368188,-0.48479906,-0.39260507,-0.5108473,-0.4080039,-0.07571017,1.1257038,-0.2311548,0.08997683,-0.006199777,-0.036372315,0.0069699567,0.087493435,-0.04060833,0.058292355,0.498991,-0.19405335,-0.62744457,0.40101314,-0.29325232,-0.16498384,-0.36604437,0.3361779,0.51101184,-0.6290765,0.52368456,0.35145998,0.08667436,-0.21531266,-0.5357698,-0.18545017,-0.00044609606,-0.12290272,0.3623834,0.16667077,-0.8329589,0.44533658,0.21579303,-0.26338658,-0.69748926,0.52076,0.02594095,-0.36567372,-0.027071308,0.32321554,0.12852949,0.016936505,-0.40034923,0.14687505,-0.5183642,0.25739378,0.24373618,-0.016983032,0.1790188,-0.26716134,-0.1408388,-0.6689546,-0.024672993,-0.42066792,-0.39669633,0.25390187,0.073173195,0.14920075,0.17034051,0.05049386,0.31547713,-0.39434037,0.06450375,-0.06819604,-0.20099412,0.27887475,0.37770498,0.5266674,-0.41192916,0.48797947,0.07590019,-0.14797552,0.06528226,0.12491106,0.44713888,0.06787443,0.21576245,0.043205455,-0.14462036,0.18618527,0.6879628,0.2528902,0.43065116,0.00023195893,-0.28170335,0.24828902,0.05497385,0.20796475,0.007923812,-0.4657665,-0.0540161,-0.2136661,0.114467375,0.4684744,0.12654968,0.36328903,-0.08172445,-0.30536336,0.02866603,0.15995795,0.026850354,-1.1507199,0.20682195,0.12287993,0.8028129,0.302063,0.06098792,0.0006108731,0.7355128,-0.2581183,0.16643614,0.33110029,-0.15489513,-0.5393885,0.506535,-0.58785075,0.38463128,0.023495857,-0.027957736,0.08673536,-0.16590394,0.5032429,0.78369164,-0.13660723,0.16823706,0.13907045,-0.34118682,0.055755537,-0.46772313,0.0038892347,-0.56872654,-0.13666698,0.6381011,0.35573348,0.38170928,-0.17770961,0.070002206,0.033878252,-0.1383288,0.067455344,0.19975172,0.1928524,0.05271142,-0.5445639,-0.1368584,0.57484907,-0.055852182,0.092160046,0.12606476,-0.22865367,0.27069208,-0.0552955,-0.028057784,-0.14410748,-0.6014015,-0.13884741,-0.4173411,-0.27702048,0.34771448,-0.1029896,0.1713317,0.24905324,0.036563326,-0.309437,0.46989796,0.22304979,0.7508426,-0.018675782,-0.28000546,-0.41972232,0.25591803,0.2135003,-0.23533112,-0.12401558,-0.31779677,0.108121954,-0.5847166,0.37768477,-0.07013999,-0.24768107,-0.014885947,0.034656577,0.10998137,0.4199006,-0.018989526,-0.020491377,0.025137432,-0.034519155,-0.39625305,-0.06258191,-0.09053819,0.20628372,0.43098807,-0.25175607,-0.12918848,0.030804954,0.046702523,0.44761103,0.0147769675,0.42385116,0.33126053,0.08639587,-0.24719478,-0.004369594,0.27356225,0.4674477,-0.016508602,-0.13380858,-0.37300053,-0.31260163,-0.29189593,0.20812374,-0.10192607,0.26911142,0.19945739,-0.14720066,0.78065187,0.0057423897,1.0319219,-0.04887678,-0.3042451,0.17132244,0.4439131,-0.015214473,-0.011114296,-0.37531,0.96962965,0.44885197,0.056217343,-0.02157192,-0.3209491,-0.1538907,0.045957923,-0.2452062,-0.23458743,-0.094980754,-0.56650573,-0.35056105,0.2532425,0.22164175,0.27478603,-0.15689626,0.21055071,0.20302054,0.035399705,0.070166565,-0.48858958,-0.24357921,0.20664778,0.36981156,-0.034245986,0.05174354,-0.47885486,0.34966695,-0.5777326,0.0054173674,-0.16445932,0.15541896,-0.05139462,-0.41362908,0.19789419,0.09165498,0.3506148,-0.43944055,-0.43258002,-0.3286823,0.45891985,0.04898594,0.15634696,0.49177018,-0.23822775,0.08141133,0.09286061,0.47968757,0.90276873,-0.1601554,0.021339782,0.4045539,-0.31508633,-0.6502138,0.22375916,-0.29258275,0.3929177,-0.1257654,-0.11131695,-0.57425034,0.38434502,0.17701936,0.11193045,0.0003447011,-0.4623374,-0.07076221,0.44243187,-0.22217661,-0.26047498,-0.32708588,0.18731606,0.5591531,-0.23543756,-0.3050786,0.1581645,0.3036921,-0.31286794,-0.5223404,-0.24604023,-0.4239165,0.18518683,0.022523453,-0.24114615,-0.18457063,-0.08894286,-0.39071593,0.24037172,0.28627974,-0.3173495,0.081878275,-0.43194765,0.018592887,0.8806103,-0.14752847,0.1071725,-0.47471887,-0.46952504,-0.8070438,-0.4431574,0.3895465,0.15615892,-0.041397307,-0.6599279,0.016559623,-0.21563879,-0.42735565,-0.018264377,-0.40845746,0.46232796,0.10090193,0.16639888,-0.15292753,-0.83251226,0.21534817,0.1531495,-0.33795372,-0.5644792,0.364312,-0.009413816,0.988335,0.10930303,0.13417056,0.34611535,-0.48508054,-0.13902542,-0.2660752,0.09334901,-0.5890738,0.07664703 -859,0.48856574,-0.12861958,-0.4809274,-0.29935357,-0.3469301,0.07614346,-0.024981173,0.37619033,0.30824515,-0.069881655,0.015600121,-0.016395878,-0.066761844,0.33930746,-0.103694946,-0.7685868,-0.013124879,0.19570097,-0.72581726,0.5016242,-0.48323682,0.22029641,0.020521877,0.45913228,-0.009295068,0.15393749,0.091037326,-0.0506379,0.24573769,0.050051816,-0.16645911,0.39143255,-0.56358474,0.23044325,-0.015101238,-0.2887376,-0.053804856,-0.45092723,-0.2553873,-0.7450154,0.22482869,-0.4736505,0.488339,-0.009413779,-0.44371846,0.07614906,-0.014777003,0.18490951,-0.50613135,-0.10394599,0.22551225,-0.15698113,-0.05920696,0.0075955074,-0.0863795,-0.5010034,-0.56321037,0.04106462,-0.5599031,0.065188244,-0.15252519,0.2587823,-0.3583455,-0.033025615,-0.24888496,0.5436161,-0.29159883,0.11237972,0.33574572,-0.16069207,0.057178833,-0.47461516,-0.031581126,-0.19702172,0.13042277,0.18983725,-0.4718753,0.28661606,0.29164273,0.56720346,0.16495389,-0.3847956,-0.10515107,-0.0879531,-0.1274448,0.43908864,-0.07047791,-0.25771588,-0.3405856,0.013892661,0.16438468,0.14313276,-0.020029431,-0.39425746,-0.027392868,0.036668744,-0.20826192,0.3830348,0.45198673,-0.3979465,-0.24621437,0.37801597,0.41604844,0.1995991,-0.14152808,0.08842978,-0.0054940786,-0.49717873,-0.2528706,0.18397169,-0.24741171,0.5202063,-0.23832074,0.1311616,0.79778576,0.03282458,-0.16918868,-0.04345095,-0.04403688,-0.15077254,-0.44364482,-0.22076963,0.21469606,-0.4412859,0.014441864,-0.2750418,0.8091522,0.11166259,-0.794301,0.33271018,-0.5152908,0.14726502,-0.17503242,0.62227046,0.94235015,0.38968435,0.27276766,0.795969,-0.42746708,0.11065611,-0.03607944,-0.3706319,0.08742653,0.023676623,-0.023156779,-0.58571905,0.055062428,-0.09160206,0.03089809,0.0011031429,0.24744318,-0.48517466,-0.19070068,0.02365485,0.49494407,-0.35007092,-0.24582681,0.6786121,0.9629153,0.98599803,0.106322415,1.3490093,0.3935275,-0.06420505,0.26629242,-0.22986409,-0.574401,0.1956579,0.2586079,0.019759575,0.37938213,0.059058554,0.020565737,0.61505973,-0.16673276,-0.085548475,-0.05434789,0.31581274,-0.08556159,-0.07055945,-0.4873523,-0.33918908,0.102561116,0.07213648,-0.016533708,0.24096869,-0.18464692,0.37464622,0.16785881,1.3284042,0.08554564,0.024022246,0.0058467686,0.2963883,0.28838202,-0.21769215,-0.11188093,0.49350175,0.48005256,-0.033707205,-0.57255274,0.06504335,-0.28432772,-0.3146421,-0.16849433,-0.44803995,0.009734503,-0.12864147,-0.5187843,-0.1456991,0.00046207904,-0.28379124,0.4686441,-2.548469,-0.2119184,-0.088987954,0.25368622,-0.207538,-0.25248796,-0.24076536,-0.43094763,0.17780632,0.39320734,0.36594343,-0.7628898,0.44158763,0.22584032,-0.47397742,0.047549296,-0.76128423,-0.13694954,0.028970854,0.2546664,-0.024770236,-0.07693974,-0.15681799,0.28165236,0.7190773,0.099938616,0.018302595,0.31146753,0.4859365,-0.06394485,0.4805799,-0.03166501,0.5940496,-0.19540481,-0.21268012,0.33864024,-0.37233588,0.39072856,0.04536024,0.13284941,0.43903312,-0.41826117,-0.7674728,-0.5626762,-0.2757246,1.2970554,-0.5006708,-0.28905037,0.24836151,-0.18513934,-0.18060614,0.022354417,0.3614026,-0.101444095,-0.100063205,-0.63957673,0.09592828,0.006695183,0.18982212,-0.113493934,0.024454182,-0.2629924,0.7781729,-0.107188635,0.60905826,0.34159282,0.20611419,-0.085036844,-0.44080302,0.037493195,0.73588204,0.39965862,0.15296513,-0.14310206,-0.17940484,-0.15763263,0.009872059,0.22221223,0.575385,0.679191,-0.06838436,0.1618981,0.44973794,-0.09295297,0.037329357,-0.07908769,-0.2743923,-0.099673636,0.18256739,0.5709964,0.60512775,-0.21940883,0.25226912,-0.045824982,0.15485974,-0.00916184,-0.65200335,0.517862,0.9375034,-0.23741984,-0.2927886,0.52981144,0.30880082,-0.30554426,0.35126755,-0.42614567,-0.13089617,0.65027547,-0.0647574,-0.30516738,-0.03649964,-0.33528703,0.033748396,-0.96685964,0.22422913,-0.10947275,-0.47982737,-0.49631956,-0.101931326,-3.8203897,0.25878927,-0.25423318,-0.02026283,-0.1183481,-0.16376534,0.35316867,-0.6555631,-0.48083752,0.004554741,0.15697022,0.50451434,-0.037342,0.08792314,-0.29328918,-0.25233498,-0.15411814,0.16639213,0.11121976,0.35933718,-0.05825365,-0.42832386,0.089710936,-0.15374802,-0.5486136,0.113232724,-0.5325226,-0.46866652,-0.11563269,-0.6449191,-0.14772733,0.68315876,-0.331638,-0.08988852,-0.21663547,0.020801445,-0.11384037,0.335487,-0.013768627,0.22691366,0.07959081,-0.05709939,-0.22051714,-0.3015751,0.21582647,0.06399007,0.21301462,0.33431903,-0.03276104,0.2701069,0.6189462,0.5609564,-0.17202981,0.7605051,0.44510868,-0.12789544,0.29698136,-0.16031434,-0.22308272,-0.66820073,-0.39952987,-0.21526875,-0.5838832,-0.31483182,-0.009158325,-0.28416288,-0.8103894,0.44497076,-0.011604418,0.10623741,-0.114673145,0.28602663,0.5234773,-0.13390276,0.08890283,-0.13670151,-0.35421005,-0.5560393,-0.42604163,-0.62000793,-0.46719617,0.20020567,1.2679474,-0.23745249,0.015127023,-0.064857654,-0.28965855,-0.010860655,0.07542556,0.15081148,0.33431348,0.2854231,-0.23368911,-0.57684267,0.3787126,-0.15765788,-0.100236535,-0.5419001,0.19916269,0.62525123,-0.58386433,0.7469799,0.18398285,0.18897668,0.047756776,-0.8132902,-0.34968203,0.051938254,-0.120176144,0.6325013,0.19308418,-0.6531678,0.5112914,0.20825782,-0.10543251,-0.67530227,0.41409302,-0.13267754,-0.20872371,0.07428311,0.32136965,0.028532168,-0.06525429,-0.10791675,0.20580257,-0.51354456,0.26902738,0.28370732,-0.024575753,0.2687416,0.052469514,-0.08631881,-0.5870745,-0.16919796,-0.694679,-0.30980694,0.043664772,0.05704792,0.11138471,0.014942042,-0.12832822,0.4984288,-0.19657382,0.21692772,0.011716732,-0.21324523,0.3438141,0.5374583,0.34019384,-0.43724844,0.54472214,0.21689838,0.13115749,-0.21547483,0.19597301,0.48069364,0.24166006,0.38349903,-0.28597164,-0.100521944,0.19728793,0.71050256,0.08342903,0.31239542,0.06052321,-0.13737132,0.33799526,0.10547615,0.18687122,-0.10661183,-0.26140407,-0.080208585,0.040721297,0.28416064,0.56033355,0.13173114,0.25786045,-0.0017693341,-0.1538554,0.1672,0.18425322,-0.080476455,-1.1836855,0.36223108,0.38429445,0.7037925,0.4468896,0.09304301,-0.19282117,0.46613827,-0.38087484,0.1644973,0.43729553,0.039061252,-0.35564324,0.60263044,-0.5661132,0.52436864,-0.2023348,-0.007871754,0.19071296,0.248677,0.3165406,0.7965918,-0.1938795,0.047278095,-0.004010822,-0.27794668,0.10787465,-0.41005686,0.01729778,-0.48322895,-0.3437114,0.564268,0.30654132,0.34825364,-0.47960702,-0.07204076,0.082072355,-0.25510815,-0.0074779154,-0.15382442,-0.17229234,-0.104471,-0.5445814,-0.26811612,0.59480727,-0.22244057,0.09441779,0.058672205,-0.26286253,0.19291146,-0.12577015,-0.037623484,-0.03691317,-0.605246,-0.14037332,-0.20912334,-0.4603985,0.4374201,-0.51822996,0.18479082,0.1747901,0.007721913,-0.3206044,0.15043277,-0.039621364,0.8380461,-0.01832386,0.03344651,-0.45333594,0.16199459,0.27390066,-0.24184676,-0.1468537,-0.40447664,0.0484051,-0.47055718,0.37415415,-0.06823001,-0.32614857,-0.068854995,-0.0921321,0.043519568,0.40011796,-0.31185117,-0.13566495,-0.020978697,-0.11203027,-0.2992133,-0.070498735,-0.30131045,0.37740105,0.02886879,0.035172407,0.04681743,-0.19180274,-0.109154195,0.29809535,0.21442427,0.14563881,0.23005977,-0.06120235,-0.30442494,0.06688091,-0.020032218,0.27314612,0.07730367,-0.15891483,-0.33377874,-0.24376386,-0.28415972,0.16928066,-0.13191415,0.25483036,0.07600225,-0.37375352,0.76946336,0.17132276,1.1617913,0.11178456,-0.33197483,0.002735893,0.48211232,0.053401813,0.14606138,-0.2563688,0.69967526,0.49959552,0.001698474,-0.2548168,-0.49545148,-0.17759539,0.26408392,-0.19709176,-0.22446842,-0.1468927,-0.6564959,-0.20399657,0.15987758,0.12106506,0.16388384,-0.045889888,-0.2991812,0.098530784,0.05867869,0.39461097,-0.4349219,-0.0076393425,0.1346553,0.15753649,0.080693744,0.34181204,-0.3383443,0.40617263,-0.7167075,0.19780059,-0.34252167,0.1725619,-0.1187089,-0.17534341,0.1812895,-0.13242714,0.31004137,-0.2328137,-0.30081898,-0.22475986,0.7663218,0.2098804,0.20585817,0.80170596,-0.32878664,-0.10081578,0.23151137,0.49013633,1.232009,-0.22062284,-0.10004182,0.21435122,-0.22345637,-0.61490285,0.14085473,-0.38130257,0.04054837,-0.1049857,-0.3714895,-0.2813086,0.2582699,0.1034349,-0.014770261,0.23468997,-0.64185333,0.005170661,0.3926934,-0.28853524,-0.12809198,-0.26887226,0.3507782,0.6945964,-0.3836724,-0.49871406,0.16352607,0.23901053,-0.1685227,-0.60754293,0.004916233,-0.41312295,0.32956362,0.17417055,-0.33737367,0.016548479,0.21805115,-0.4624929,0.10046008,0.35878855,-0.22601625,0.12970726,-0.18788424,-0.23709835,1.0771407,0.074337445,0.18864031,-0.7103439,-0.44347966,-0.85576034,-0.33142662,0.27116236,0.24468349,-0.0072084307,-0.6821896,-0.114948355,-0.10540657,-0.025244607,-0.03254385,-0.43145046,0.4940701,0.17259319,0.31271738,0.005410055,-0.88587326,0.09141397,0.08153005,-0.09780238,-0.4738713,0.5066583,-0.21430226,0.68434256,0.09995737,0.10170799,0.059174895,-0.55746704,0.16405681,-0.44716927,-0.2320893,-0.6464494,0.0716685 -860,0.41958457,-0.09506401,-0.4713389,-0.14759867,-0.08343202,0.02549687,-0.24917422,0.3791758,0.28020597,-0.39961952,-0.1246834,-0.15259023,0.07785462,0.168032,-0.08992839,-0.5918089,0.07428406,0.20566222,-0.5909709,0.6645926,-0.2506746,0.23847042,-0.06781346,0.431179,0.042466097,0.24532251,-0.027961442,-0.15644877,-0.18742561,-0.028112117,-0.18312429,0.50074935,-0.4451833,0.1538757,-0.2550593,-0.16643262,0.08544761,-0.35735485,-0.3505798,-0.87051755,0.24202988,-0.7112042,0.4804155,0.18555748,-0.3452719,0.052649904,0.16588847,0.4345449,-0.4852588,0.025050772,0.13153946,-0.02087673,-0.14442489,-0.19816934,-0.20838092,-0.42150545,-0.47453874,-0.11271841,-0.5966472,-0.052514173,-0.34567356,0.12989426,-0.18372335,-0.27519417,-0.005503927,0.63584024,-0.43884805,-0.003078897,0.2397046,-0.13284342,0.3788368,-0.48259607,-0.110932626,-0.17351644,0.44989583,-0.20050319,-0.28155217,0.23993628,0.37023404,0.4263694,-0.21852793,-0.18512158,-0.33789316,-0.13638283,0.06726587,0.34791142,-0.09017996,-0.61483896,0.037141066,0.062320977,0.040479418,0.24307926,0.05138249,-0.3386638,-0.046874426,-0.0037317,-0.1198864,0.30537206,0.47942433,-0.2924063,-0.12516722,0.20333259,0.5697215,0.12970133,-0.16295373,-0.055407766,0.10127779,-0.60517704,-0.089062236,0.25773475,-0.18079603,0.5791882,-0.027078304,0.076487176,0.59652126,-0.098221935,-0.18130192,0.069309466,0.17993404,0.10394718,-0.33336428,-0.3877376,0.26459122,-0.36072722,0.09815449,-0.1736096,0.5040318,0.2673437,-0.72457016,0.17898151,-0.52174485,0.024647608,-0.08557708,0.44498566,0.695137,0.41089782,0.369746,0.628088,-0.41329718,0.14909782,-0.083935425,-0.31466103,0.011868651,-0.12642886,-0.07145246,-0.47432056,-0.06857605,-0.16527162,-0.17640765,0.15267178,0.23935747,-0.45794767,-0.08673092,0.20654115,0.89505637,-0.26041463,-0.077492945,0.5190853,0.8625043,0.7910538,0.08903384,0.98907894,0.24036023,-0.28986064,0.31991813,-0.2796807,-0.6855537,0.30076128,0.26145983,-0.15281844,0.18212365,-0.02996985,0.06393661,0.36383224,-0.45397112,0.069131635,-0.09232201,0.14692487,0.1402723,-0.07396994,-0.3606194,-0.30391857,-0.16609894,-0.009628215,-0.07925934,0.31049022,-0.17488833,0.08524389,-0.025659302,1.4725065,0.04934966,-0.028695771,0.11536638,0.5943799,0.24418929,-0.09119294,-0.2559436,0.49318627,0.28086242,0.09877249,-0.4727571,0.05085764,-0.29541156,-0.25485447,-0.1411441,-0.2441956,0.05562361,0.04707404,-0.45150137,-0.043088548,-0.06400696,-0.30396184,0.63333327,-2.7787557,-0.015243471,-0.06391841,0.4010919,-0.3046532,-0.25625774,-0.21269819,-0.42475152,0.4082152,0.33423325,0.4780939,-0.57582146,0.22423919,0.45540574,-0.577527,-0.19169123,-0.5254103,-0.13660835,0.009483478,0.2645846,-0.025037004,-0.15439162,0.044117134,0.21717755,0.4909766,0.012450589,0.11075399,0.31254742,0.2849647,0.13238284,0.55763173,-0.020035002,0.4495199,-0.25652578,-0.24763854,0.2273581,-0.44737563,0.151608,0.041611113,0.017741693,0.5640434,-0.47150347,-0.954339,-0.7371273,-0.18695721,0.96064997,-0.25469348,-0.39185163,0.23871246,-0.44249234,-0.19381309,-0.113368765,0.64744884,0.0664194,0.058865238,-0.8075953,-0.12926486,-0.011286868,0.4183881,0.07396551,0.035547566,-0.37647623,0.42729634,0.014694044,0.39102277,0.39417338,0.13303752,-0.37470582,-0.5409087,0.072266035,1.0367645,0.10299473,0.20290315,-0.16314471,-0.3190892,-0.43795428,0.12258998,0.017904585,0.65962255,0.64223576,-0.22713403,0.11034549,0.21985951,0.063739546,0.052130274,-0.19271745,-0.37130216,-0.14054784,0.34523314,0.5552543,0.6149259,-0.11818685,0.464211,0.03431871,0.24369451,-0.19623086,-0.30921873,0.40389436,1.0003427,-0.126563,-0.23895545,0.53067017,0.51543784,-0.3307306,0.43071565,-0.5368449,-0.31718203,0.4895768,-0.17960513,-0.4911271,0.26554912,-0.30753103,0.15109432,-0.81874806,0.24822308,-0.28090423,-0.36556843,-0.53227043,0.06705249,-3.4760525,0.13122632,-0.051476203,-0.19464174,-0.014934689,0.0060392465,0.09391493,-0.44863343,-0.60220003,0.2461622,0.07149737,0.699864,-0.10566373,0.037157793,-0.30829835,-0.34357396,-0.14881992,0.296271,0.27534977,0.28924727,0.09044491,-0.607916,-0.18539576,-0.18406942,-0.32403713,0.051678777,-0.64596426,-0.3147404,-0.1791077,-0.7871899,-0.23777373,0.60414964,-0.45109698,-0.012640791,-0.12718216,0.057387523,-0.048981685,0.20493685,0.23316462,0.3915362,-0.012857194,-0.0543315,-0.07064345,-0.14682528,0.20657657,0.13355006,0.2519645,0.09749069,0.16512254,0.2094073,0.5039879,0.6005208,-0.07302626,0.9627252,0.642953,-0.08138682,0.29187113,-0.2560849,-0.29380986,-0.4986075,-0.26516488,-0.08355088,-0.39617634,-0.41510445,0.063020885,-0.37667108,-0.6957695,0.51466626,-0.21910515,0.019990453,0.18600862,0.33236784,0.5026867,-0.35112265,0.03510413,-0.106744036,-0.050751705,-0.45310137,-0.26462597,-0.4561893,-0.34990436,0.13380198,0.9799186,-0.26695028,-0.014408329,0.026657317,-0.11321028,-0.07451637,0.25296333,0.042062707,0.24742022,0.574782,0.0086238,-0.5754747,0.30555463,-0.12545185,-0.1183163,-0.54177356,0.2303181,0.5346173,-0.72433466,0.8180181,0.32045063,-0.041576274,-0.2600802,-0.64435965,-0.4689719,0.068365715,-0.12931876,0.3842725,0.24579082,-0.78136104,0.21419707,0.23820893,-0.31673744,-0.65923625,0.6230626,-0.070697844,-0.51063114,-0.062233772,0.39622292,-0.1701444,0.048992455,-0.30502295,0.17105107,-0.27561563,0.061435167,0.27639318,-0.11467009,0.19952016,-0.32247695,0.00683277,-0.8390217,0.13138619,-0.48106575,-0.25684023,0.54670376,0.10946883,0.080634594,0.22814691,-0.023802357,0.29887363,-0.19692764,0.022112062,-0.13061337,-0.19678156,0.4303454,0.3768275,0.4506438,-0.36574873,0.5597773,-0.07484144,-0.20236167,-0.18995936,0.09055818,0.3322166,-0.05500722,0.4617307,-0.08346305,-0.2850511,0.41187343,0.74400187,0.18318641,0.4227393,0.00062391587,0.09043489,0.2733798,0.124991246,0.109066114,0.04551163,-0.45766193,0.029423084,-0.34193712,0.16453497,0.3634728,0.04293702,0.18515088,-0.012371376,-0.28554344,-0.048949085,0.19760224,0.19551119,-1.1499212,0.45661667,0.16475391,0.85427624,0.4376923,0.22679305,-0.055701386,0.66973656,-0.08556456,0.09307652,0.37313753,-0.13992336,-0.4473498,0.55760187,-0.50681406,0.57641953,0.10349163,0.05463338,0.009154124,-0.113441125,0.4729932,0.91454965,-0.18088205,-0.013185016,0.113668226,-0.17608435,0.24544358,-0.3031629,0.12051825,-0.7038058,-0.40478066,0.5016266,0.5440314,0.26793897,-0.23696272,-0.049707625,0.12988417,-0.21392237,0.11232621,0.00800018,0.044600837,-0.021457357,-0.6518318,-0.051862687,0.5141964,-0.07134551,-0.06650413,-0.05180917,0.06835499,0.26964432,-0.15728594,0.11743821,-0.18313476,-0.6258226,-0.1258033,-0.48842645,-0.26402768,0.6836291,-0.23701827,0.24642147,0.16239348,0.061904915,-0.41683552,0.67705566,0.1813403,0.7520331,-0.017105954,-0.08803893,-0.3089353,0.036126655,0.10843791,-0.13309374,-0.067547016,-0.50718874,0.007978482,-0.72405,0.4174479,0.020796428,-0.2708738,-0.17652287,-0.12211813,-0.020343542,0.5218963,-0.045720644,-0.29399857,-0.0608662,-0.12495849,-0.33237764,-0.16845226,-0.2212552,0.2744408,0.13355663,0.022937817,-0.12969103,-0.075557195,-0.09811254,0.5273175,-0.08227511,0.28494778,0.29825187,0.32065886,-0.090933464,0.0176272,0.066314764,0.65851635,0.08494584,-0.09507449,-0.24383989,-0.2608653,-0.4936349,-0.00030434132,-0.09896268,0.4812575,0.107130595,-0.23846729,0.7445259,-0.11441064,1.226906,-0.1004191,-0.3548264,0.05870274,0.49557,-0.1252337,-0.028054383,-0.37070933,0.8240722,0.52728057,0.049132675,-0.06282438,-0.14593884,0.06768377,-0.037711043,-0.1540056,-0.12453156,-0.017037136,-0.535808,-0.08522227,0.20136009,0.31148085,0.39184895,-0.08199124,0.07191438,0.17763557,0.13971642,0.026005361,-0.42523402,0.12827504,0.23881194,0.3859351,0.17480405,0.060240626,-0.33470002,0.34432432,-0.4110665,-0.029073061,-0.3284166,0.18310645,-0.27572033,-0.41831872,0.24564525,0.016322987,0.36415142,-0.27664658,-0.17084493,-0.36886212,0.55632055,0.16072656,0.1961162,0.5266369,-0.14641348,-1.8498728e-05,0.06963037,0.6283666,0.9153779,-0.44138193,-0.17250933,0.38700676,-0.41351938,-0.62522304,0.26265433,-0.56825083,0.1396132,0.11643362,-0.21247923,-0.6104307,0.19508438,0.068609774,0.13076796,-0.11121665,-0.69527596,-0.13611172,0.24998379,-0.19867234,-0.16963935,-0.31468043,0.3369855,0.5345893,-0.1708264,-0.33564442,0.069017276,0.13368274,-0.3266333,-0.53870815,0.07697991,-0.40426144,0.22845592,0.09447306,-0.48054567,-0.19153042,0.035486605,-0.5103456,0.20223263,0.26267475,-0.4004937,0.099175714,-0.25118297,-0.118892595,1.0582554,-0.18415155,0.1675562,-0.29949874,-0.45060268,-0.8719793,-0.12967774,0.4638633,-0.075209446,-0.02732736,-0.6041684,-0.017014215,-0.12291246,-0.16928038,-0.05552811,-0.20709945,0.3759706,0.040713735,0.55905503,-0.081491105,-0.93609273,0.12221442,0.093576856,-0.3219139,-0.56946963,0.43094426,-0.047167774,1.0342759,0.0010485084,0.13523898,0.526291,-0.37090996,-0.15959729,-0.18764083,-0.11364194,-0.48367754,0.033916075 -861,0.39331427,-0.15968813,-0.46511912,-0.17614992,-0.20363991,0.19634454,-0.12779763,0.5555969,0.13283114,-0.6808723,-0.19778037,-0.18885049,0.042700194,0.20308256,-0.25467476,-0.34282538,0.008533961,0.15400232,-0.43199039,0.4610493,-0.39450273,0.23207192,0.18505645,0.38111654,0.08583442,0.14507444,0.14366224,-0.18962245,-0.046679746,-0.2619466,-0.16199145,0.4826569,-0.37622195,0.33439398,-0.11979943,-0.19307375,0.0056455093,-0.48497376,-0.20063427,-0.7371239,0.13091527,-0.81063646,0.50265604,0.10607053,-0.28878942,0.27901974,0.43205342,0.14695938,-0.1371653,-0.037738748,0.26352337,-0.14620209,-0.20862518,-0.17133835,-0.07584415,-0.3693883,-0.5073219,0.025575992,-0.43638283,-0.28099987,-0.24366693,0.30435282,-0.25814006,-0.041533466,-0.13497862,0.6745184,-0.42806825,0.24322213,0.17871423,-0.29486513,0.39523178,-0.624586,-0.15695669,-0.07028941,0.2618949,-0.18726991,-0.26849982,0.046033107,0.43253502,0.45581883,0.026354436,-0.10525382,-0.22101283,-0.11524032,0.023591552,0.4164949,-0.14983477,-0.35012507,-0.120819464,0.06867641,0.09414591,0.26710907,0.11855163,-0.47701925,-0.13200046,-0.048938096,-0.27339762,0.3688437,0.40431094,-0.23446187,-0.2550452,0.3516962,0.5136482,0.05788579,-0.07860814,0.026743677,-0.043956865,-0.5922646,-0.112399474,0.18358128,-0.14129251,0.4253873,-0.18377416,0.27801707,0.6310253,-0.040883746,-0.023009678,0.19071214,0.15360503,0.017910464,-0.43157586,-0.20792577,0.25768048,-0.36237365,-0.016543727,-0.16620322,0.8346349,0.012882688,-0.6509002,0.24001758,-0.53930485,-0.016634481,-0.22252798,0.42037204,0.53622144,0.37663934,0.20357165,0.71219605,-0.42889783,0.004067156,-0.113192864,-0.32032058,0.045192428,-0.07930534,-0.018722882,-0.54227966,0.080958195,-0.0240455,0.044985034,0.064741544,0.40599325,-0.64644134,-0.20664133,0.07071082,0.81518024,-0.24798056,-0.21100657,0.5910924,0.8729843,0.827322,0.13364422,1.08162,0.12638833,-0.17332898,0.17357196,-0.14531015,-0.64947987,0.40784305,0.42520604,-0.29586306,0.045477804,0.046629388,0.051487748,0.37352824,-0.33586192,-0.07307921,-0.2429706,0.1602163,0.09273009,-0.12001843,-0.42685828,-0.24852578,0.075313225,0.032429136,0.20738828,0.05390524,-0.17039622,0.2981034,0.08349788,1.4952947,-0.16844146,0.1600198,0.17702767,0.14660658,0.22608267,-0.14546679,-0.05738753,0.47718266,0.35847378,0.2486474,-0.49007353,0.24549477,-0.1014397,-0.4154767,-0.16466747,-0.346661,-0.09934677,-0.041036498,-0.4743333,-0.13010506,-0.21731272,-0.40951267,0.47503543,-2.8125083,-0.10618496,-0.17949677,0.38434076,-0.27217537,-0.2982803,-0.19204426,-0.3779696,0.54794294,0.2695374,0.5093967,-0.4703507,0.32905397,0.40095016,-0.5012841,-0.27277026,-0.63918686,-0.031385984,-0.06562966,0.25484118,0.07759903,-0.11713868,-0.12232047,-0.0052078855,0.43960404,-0.07980096,0.14180334,0.32215616,0.45910385,0.0676718,0.58956116,-0.061901007,0.58747804,-0.29675344,-0.3008178,0.41090283,-0.31710976,0.17047723,0.008643657,0.09264142,0.42921448,-0.36766678,-0.85945565,-0.7914487,-0.32980648,1.1178988,-0.3183593,-0.3979748,0.23715922,-0.24060524,-0.2531671,0.08392199,0.5052134,-0.019426584,0.061942305,-0.92369515,0.18172911,-0.01633645,0.30498335,0.0018696977,-0.10811175,-0.537219,0.6985794,-0.1631066,0.60457325,0.41859517,0.24274288,-0.46996263,-0.45277882,-0.04835316,1.0996675,0.38050374,0.09745892,-0.093733765,-0.1741164,-0.4856043,-0.040185217,0.10636323,0.6725082,0.5363295,0.099747084,0.18871072,0.3072796,-0.11767102,0.115104415,-0.14953797,-0.33643278,-0.16721332,0.007964551,0.5427381,0.43836716,-0.07836394,0.4305435,-0.10271635,0.5122608,-0.1832578,-0.4399982,0.33218262,1.0672833,-0.16174583,-0.35708913,0.67502207,0.36796087,-0.14810698,0.27682537,-0.48922354,-0.397226,0.45102987,-0.23255931,-0.5354803,0.11786633,-0.2761911,0.11633064,-0.9037671,0.25052544,-0.33324575,-0.5465976,-0.5692504,-0.161848,-3.1664832,0.26004407,-0.20549111,-0.10933884,-0.17034534,-0.10181297,0.13677645,-0.5752221,-0.4105968,0.14399716,0.12280023,0.55238986,-0.09755377,0.1495239,-0.1794125,-0.2297491,-0.046956874,0.13573423,0.10807049,0.27782273,-0.034988213,-0.46269205,0.042421263,0.065480195,-0.38630933,0.044309404,-0.61425865,-0.51489794,-0.014272175,-0.52592707,-0.36883208,0.6437958,-0.5094084,-0.043027528,-0.11950982,0.20241036,0.00922842,0.2641506,0.09524924,0.24859612,0.020381076,-0.065269664,-0.10387545,-0.31144896,0.4039889,0.10328741,0.13888137,0.39131847,-0.16047828,0.25122216,0.42161185,0.5002128,-0.11021789,0.7800651,0.4512314,-0.008578761,0.27966377,-0.19947357,-0.24459493,-0.451931,-0.22041024,-0.038564507,-0.4310809,-0.2674816,0.016874595,-0.33245772,-0.781126,0.5878635,0.12709828,0.0039487565,-0.10097661,0.4775478,0.5299996,-0.22511372,-0.030081455,-0.016394261,-0.2434102,-0.6043487,-0.28771234,-0.47664538,-0.39328024,-0.026878897,0.98263913,-0.40485573,0.18146239,-0.0017330901,-0.052347694,-0.10604419,0.18333134,-0.0764559,0.2614086,0.5760198,-0.14893349,-0.60503995,0.44569725,-0.26948997,-0.28618422,-0.5311619,0.3068132,0.6107852,-0.6378694,0.63347155,0.41221252,0.10791343,-0.2829705,-0.51981145,-0.17020588,0.0102266865,-0.31655815,0.5030331,0.20105027,-0.72936064,0.48062852,0.35945687,-0.053644657,-0.7293386,0.5602106,-0.09857605,-0.3585891,0.047833525,0.40603253,0.191482,0.06419058,-0.081916876,0.1243139,-0.366154,0.21825147,0.029442266,-0.08647861,0.4180568,-0.30969617,-0.025080234,-0.69478846,-0.02857006,-0.6336175,-0.32238844,0.2446172,0.109848104,-0.05128642,0.36432812,-0.13989799,0.43102136,-0.21723127,0.13839237,-0.22829847,-0.15981509,0.20974429,0.42721602,0.29008457,-0.41093418,0.458841,0.027779143,-0.013910289,-0.20255838,0.17073838,0.45990404,0.06980312,0.43444893,-0.35749468,-0.09154161,0.43296123,0.63825905,0.07070076,0.37581325,-0.07828115,-0.07429491,0.16104391,-0.012955933,0.1982291,-0.14397158,-0.6524672,-0.07304622,-0.27661064,0.15127005,0.556578,0.162562,0.36996835,-0.07006874,-0.28975895,0.074367695,0.345261,0.18388316,-0.93956643,0.4580335,0.21100031,0.8796832,0.4251519,-0.0057700374,-0.054548662,0.72093856,-0.19664116,0.1938001,0.27057633,-0.136114,-0.39480495,0.48032364,-0.8436596,0.29481715,-0.27297023,-0.035714667,-0.02011604,-0.07959069,0.3717043,0.8670143,-0.1251145,0.076022625,0.029594699,-0.32621282,0.30807728,-0.43295738,0.108957015,-0.48341495,-0.361538,0.57193565,0.63648933,0.41752806,-0.3177262,0.0039304667,0.23088156,-0.16210277,0.15263514,0.07737862,0.06433764,0.0670497,-0.76568633,-0.14158909,0.55958074,0.26617295,0.21383688,0.09615054,-0.11327762,0.33884248,-0.16707695,0.0821774,-0.18544592,-0.5014363,-0.10657009,-0.29425868,-0.42182845,0.3503488,-0.3651952,0.13553342,0.20196576,0.053380966,-0.18326406,0.41418868,0.11422222,0.8281241,0.09868281,-0.043895192,-0.48818153,0.23344459,0.14481112,-0.109861955,-0.20261213,-0.44020146,0.14753036,-0.7104391,0.39960447,-0.086287305,-0.29276973,0.12568054,-0.11023065,0.0433865,0.6044081,-0.08098609,-0.018299649,0.07006436,-0.290098,-0.18844835,-0.13043277,-0.10211512,0.24423905,0.07234108,0.05110154,-0.12861931,-0.13878255,-0.4249394,0.24856053,0.12233351,0.43853578,0.31422997,0.06682957,-0.20151962,0.020117974,0.19706495,0.5013914,-0.015609349,-0.13250563,-0.09153209,-0.323867,-0.29828328,0.12456458,-0.019134704,0.28274614,0.076223865,-0.095426455,0.783175,-0.11657576,1.0319221,-0.036102235,-0.36034632,-0.035955112,0.4615313,0.13166344,-0.023239631,-0.3630014,0.88161,0.52528995,0.09036553,0.025370657,-0.38945177,-0.09651754,0.12392191,-0.12311644,-0.1547017,-0.08778511,-0.7390751,-0.32785657,0.121775724,0.2277095,0.11034446,-0.028320167,-0.04308761,0.23213474,-0.054056745,0.3065079,-0.5270437,-0.029961722,0.119912885,0.4830592,-0.09711122,0.15574993,-0.50031316,0.50671905,-0.54908764,0.14067882,-0.28280038,0.1724048,-0.38794088,-0.1516579,0.22669302,-0.18579017,0.41731995,-0.23697428,-0.27687955,-0.23638834,0.49247584,0.2158641,0.03966237,0.66073376,-0.28532574,0.1647474,0.21225692,0.5625058,1.0093043,-0.36062333,-0.07052924,0.39417782,-0.3185626,-0.59419453,0.30045363,-0.4053345,0.14008883,0.09098194,-0.2052943,-0.28783217,0.32473606,0.22462623,0.050860763,-0.13770847,-0.5387445,0.12679945,0.35778123,-0.24303882,-0.13687743,-0.2082556,0.16211323,0.44947863,-0.2600737,-0.38318783,0.008674706,0.22430754,-0.09369678,-0.5981841,-0.019869814,-0.4078276,0.28749117,0.11196138,-0.29777673,-0.12487205,-0.026951244,-0.47530589,0.1593976,0.075960554,-0.2610074,0.040507965,-0.26239863,-0.07364384,0.7325999,-0.069855474,0.06973129,-0.5136942,-0.4319763,-0.69033533,-0.20961888,0.37733057,-0.07570294,0.10547125,-0.5520986,-0.07389748,-0.17097174,-0.22953323,-0.12716328,-0.40125963,0.43835893,0.1743762,0.44107231,-0.18775494,-0.80313003,0.20094119,0.053690385,-0.12411553,-0.6313668,0.3511514,-0.06562017,0.6247482,0.079208784,0.09876703,0.41116315,-0.5338964,-0.07670205,-0.22440147,-0.11579311,-0.83064365,-0.099233985 -862,0.5685923,-0.001131673,-0.6378064,-0.25941655,-0.2967412,-0.07520783,-0.16305591,0.14787562,0.49220926,-0.21419832,-0.034750525,-0.12585244,0.08368985,0.22185288,-0.08307513,-0.6808243,0.031638324,0.07551147,-0.58991104,0.38301948,-0.41832832,0.51663697,0.16693497,0.3986392,-0.006748659,0.20767263,0.26406613,-0.039393954,-0.05858434,0.002929317,-0.123799734,0.5763194,-0.67565453,0.16747998,-0.029153423,-0.19629233,-0.021495597,-0.38448402,-0.27986142,-0.7279128,0.234296,-0.7686108,0.6881922,0.21730433,-0.34909448,-0.006884349,0.03945413,0.1846879,-0.36318368,0.28115326,0.21109208,-0.38258553,-0.018844102,-0.17938031,-0.43231806,-0.46914536,-0.6019365,0.0133094955,-0.5195239,-0.16751984,-0.40105894,0.25845236,-0.29255894,-0.11755909,-0.3095056,0.43158072,-0.3816084,0.0729607,0.25115967,-0.25931105,0.328063,-0.2776617,-0.114165954,-0.1339523,0.22229484,-0.092993915,-0.31153637,0.10123872,0.33281094,0.5284591,0.07155371,-0.35984454,-0.37475866,-0.04810065,0.054572377,0.43783197,-0.10118576,-0.2717021,-0.22220603,-0.13374266,0.17225374,0.35605282,-0.026722703,-0.488178,0.014855668,-0.06676781,-0.09118144,0.38302058,0.46105164,-0.40641096,-0.26578698,0.37619343,0.3861459,0.16691002,-0.18812516,0.24005376,-0.017049564,-0.66501313,-0.26560566,0.32213634,-0.01457869,0.5556508,-0.020844763,0.10755813,0.6358051,-0.11936088,-0.2654331,-0.0747949,-0.08324463,0.084418796,-0.28352657,-0.0584941,0.2299143,-0.40749866,0.12122321,-0.26519415,0.77790344,0.02627425,-0.7914667,0.29068416,-0.66166407,0.12489569,-0.14077091,0.7635852,0.8879403,0.4449505,0.28074956,0.90783495,-0.63470733,0.018232478,0.047108497,-0.52620053,0.14353575,-0.04985029,0.0696438,-0.457243,-0.089779615,0.06708948,-0.088348545,0.14627512,0.34339163,-0.39651105,-0.14785896,-0.05613007,0.7412984,-0.3726721,-0.20204762,0.6437252,0.9157315,0.90136606,0.060149603,1.3051008,0.34254402,-0.032540854,-0.041590743,-0.27489665,-0.51882887,0.19455898,0.22552875,-0.18154833,0.225962,-0.020562692,0.108108826,0.3027659,-0.30133003,-0.08014215,-0.070499554,0.2317654,-0.07347644,-0.072294064,-0.3892649,-0.24147569,0.12888303,0.24067068,0.053117927,0.219305,-0.19263336,0.4238505,0.09886444,1.3410017,-0.028297113,0.08617454,0.027618637,0.3489132,0.30345726,-0.18728773,-0.11150037,0.38703182,0.43058065,0.10926985,-0.42963123,0.076207615,-0.13269816,-0.27553004,-0.1963658,-0.3408561,0.1402636,-0.19977884,-0.5403451,-0.007578309,0.0651461,-0.41495863,0.5508017,-2.5138428,-0.047853,-0.026418868,0.3243154,-0.092978716,-0.33373383,-0.31701514,-0.45551935,0.24778824,0.3606673,0.31892332,-0.5817209,0.38426033,0.41620284,-0.39662948,-0.14045565,-0.6568281,-0.09480847,-0.14045058,0.3059388,0.08766549,-0.09177591,-0.23107089,0.3590054,0.6915131,0.026742065,-0.043969225,0.118400946,0.540901,-0.14825103,0.70880216,0.101709925,0.49567813,-0.12211687,-0.24329296,0.41378978,-0.26221952,0.27703327,0.05157234,0.08649612,0.38943616,-0.45077428,-0.8834213,-0.64711374,-0.39577624,1.1325349,-0.42580837,-0.45828745,0.34780693,-0.17527355,-0.36552483,0.14723413,0.5805802,-0.1801177,0.18165772,-0.7425142,-0.056881487,-0.15778829,0.27011222,-0.10699715,0.012737097,-0.3918821,0.57838315,-0.09095877,0.4706307,0.3322975,0.22781195,-0.15900935,-0.5632352,0.13603653,1.0012286,0.34919947,0.07679256,-0.26456985,-0.23258138,-0.20063964,0.0655243,0.11632047,0.72148556,0.63147557,-0.121334024,0.17208394,0.31609085,-0.10113364,-0.014462526,-0.16191772,-0.29381624,0.0006978725,-0.08526055,0.52658135,0.84601116,-0.20344278,0.36251858,-0.0522842,0.3181859,-0.045847453,-0.6055781,0.5631487,1.0443856,-0.082910374,-0.23754713,0.6942315,0.36280233,-0.3260093,0.39375526,-0.59126824,-0.24901421,0.6036677,-0.06641322,-0.46801212,0.2843747,-0.39490452,0.0164368,-0.9629553,0.31069806,-0.013711776,-0.4690147,-0.3220558,-0.114859276,-4.140596,0.18157461,-0.16547427,-0.031124284,-0.06751935,-0.16251452,0.34739652,-0.4319503,-0.56313217,0.07152425,0.09947545,0.46371344,-0.2172792,0.13795601,-0.38321552,-0.23159213,-0.14952269,0.29279676,0.1601956,0.31571802,0.03846561,-0.37172875,0.01862303,-0.23707283,-0.5095243,-0.023753954,-0.46805814,-0.5886435,-0.09308886,-0.5522994,-0.33850113,0.7202476,-0.4394741,-0.07107202,-0.28395137,0.06362114,-0.10903331,0.39540777,0.16341646,0.32543197,0.0023210219,0.017697887,-0.20684277,-0.21782234,0.24317639,0.09858746,0.14504962,0.27782258,-0.14405075,0.2125433,0.41554418,0.5773043,-0.21458818,0.7705107,0.32983962,-0.006302726,0.24830508,-0.21199629,-0.4117853,-0.8106208,-0.30795667,-0.2886544,-0.50677353,-0.26674435,-0.28705245,-0.32424402,-0.807409,0.54575163,0.052176777,0.18367216,-0.24653089,0.33667573,0.41996172,-0.1638103,-0.021936124,-0.14765158,-0.28211293,-0.5668311,-0.3554813,-0.5746501,-0.5564903,0.14632864,1.02319,-0.22925045,0.014490579,0.055246558,-0.11137895,-0.015299329,0.20765959,0.24257752,0.3904553,0.51045257,-0.20781,-0.6397267,0.43750033,-0.23509185,-0.060038514,-0.7575669,0.04116699,0.72642744,-0.6888481,0.6660863,0.2816228,0.2412967,0.0005874634,-0.7233216,-0.505189,0.0619672,-0.16957353,0.6151916,0.22196104,-0.7454921,0.43265432,0.15786965,-0.15087345,-0.5698608,0.44610432,-0.06586236,-0.3955121,0.21559276,0.4052923,-0.1094376,0.006196614,-0.12256312,0.2858801,-0.35449067,0.33365205,0.40336365,-0.07145465,0.31251583,-0.117881395,-0.112981595,-0.6641237,-0.11849371,-0.48330233,-0.39246064,0.10250444,0.032140467,-0.0011227727,0.0810072,-0.13437538,0.4677908,-0.27236104,0.1792644,-0.098575406,-0.13286063,0.39033076,0.5201444,0.32305226,-0.5011608,0.57998973,0.16379617,-0.08150639,-0.15095052,0.18175101,0.46191353,-0.0024149332,0.39887384,-0.19049014,-0.09912773,0.20199881,0.53278035,0.12862302,0.3641677,0.19213843,-0.08006895,0.44494513,0.13379478,0.100377955,-0.15893278,-0.35040876,-0.12079006,-0.18685147,0.18699713,0.44162613,0.14844628,0.26871502,-0.07824384,-0.27277336,0.33573744,0.11186642,-0.02087465,-1.1934279,0.31146857,0.23803079,0.6691004,0.5144306,0.066476874,-0.15505812,0.57815325,-0.28899843,0.06594237,0.34589264,0.19229849,-0.34362388,0.5799898,-0.50858814,0.5005327,-0.121134624,-0.0382201,0.12122953,0.14358537,0.34275696,0.9740499,-0.0705588,0.0634646,-0.08719325,-0.07946552,0.08120935,-0.29605958,0.07938492,-0.57864565,-0.4367546,0.70917755,0.44580102,0.39985013,-0.38411298,-0.112018906,0.087145574,-0.18680277,-0.018145531,-0.20232101,-0.081634186,0.09102559,-0.6161216,-0.19772004,0.6141828,0.032195706,-0.17094676,-0.012858899,-0.22671463,0.18195443,-0.1067465,-0.015660303,-0.15393662,-0.62827456,-0.06883267,-0.40935966,-0.41282773,0.3763263,-0.5499295,0.33729276,0.16339335,0.082933135,-0.2522785,0.34478718,0.19407165,0.87583107,0.16476618,-0.09144764,-0.35377407,0.22481915,0.34209225,-0.31383628,-0.24830005,-0.2923266,0.2093154,-0.629765,0.30869415,-0.16351387,-0.37235922,-0.14210609,-0.036959093,0.12860553,0.41258934,-0.23611978,-0.32675686,0.23154722,-0.03114142,-0.30149284,-0.08395272,-0.19977435,0.37160847,-0.021294089,-0.10332978,0.03244876,-0.06087578,-0.16416971,0.16517189,0.05217771,0.24506333,0.26346764,-0.043459933,-0.2840887,0.108072124,0.033332806,0.5401967,0.10479874,-0.12695286,-0.19946463,-0.3194731,-0.34536794,0.25321573,-0.13504359,0.18913738,0.025534958,-0.31480995,0.85524356,0.226125,1.1580317,-0.005533342,-0.32209182,0.1559746,0.5104757,0.041869514,0.036043707,-0.34315905,0.99964315,0.6320324,-0.14478496,-0.1746478,-0.35407522,-0.052383218,-0.0727511,-0.21970621,-0.26662752,-0.099706754,-0.72055435,-0.103986636,0.047416415,0.23213172,0.21641183,0.02140155,-0.07101255,0.06272532,0.1616803,0.40588382,-0.48470584,0.017203467,0.17608707,0.3185388,-0.036544677,0.23420194,-0.27378052,0.4079385,-0.5517897,0.21722205,-0.5621742,0.13082547,-0.17333055,-0.33627835,0.15599771,-0.14431424,0.23304522,-0.38792658,-0.14097242,-0.37812957,0.5922222,0.24463074,0.2156934,0.9468756,-0.232565,-0.06868649,0.12213315,0.49581188,1.3650645,-0.29732993,-0.03853726,0.44849905,-0.21776056,-0.51121366,0.122484826,-0.38230306,0.21967325,-0.23308639,-0.41024202,-0.26228124,0.1791481,-0.11417433,0.065961845,-0.032695644,-0.53748596,-0.15482001,0.42376885,-0.08362873,-0.21928255,-0.25412118,0.29352045,0.64750713,-0.2698063,-0.41398063,0.092028685,0.12020135,-0.2187498,-0.607102,0.032888353,-0.2201349,0.3329258,0.20600162,-0.41402632,-0.029560208,0.32335013,-0.5108417,0.13796763,0.38490602,-0.34731102,0.10464071,-0.15060265,-0.27263603,1.1986934,-0.15522964,0.13514559,-0.56443584,-0.5857457,-0.9081162,-0.20998017,0.3003344,0.22455932,-0.03533889,-0.58149445,-0.10997729,-0.13785385,0.027412133,0.050059777,-0.530718,0.40499425,0.05920433,0.5374713,-0.23242,-0.9915322,0.011420386,0.07058044,-0.33562994,-0.5261412,0.6297253,-0.11653619,0.5752772,0.06435986,0.18025272,0.3351088,-0.6402183,0.2002122,-0.20088245,-0.10306446,-0.8076902,0.06338789 -863,0.47065565,-0.11485429,-0.2605904,-0.14604276,-0.06283002,0.015143509,-0.18390578,0.49461254,0.29682344,-0.5108727,-0.041646883,-0.2785196,0.01901539,0.32494992,-0.2844805,-0.4944679,0.101237245,0.17885184,-0.32329035,0.5067795,-0.49722248,0.33096412,0.058320098,0.34230047,0.2924195,0.17271072,0.2565922,-0.114173524,-0.20074457,-0.2391327,-0.0982814,0.05352178,-0.37236926,0.17396615,-0.18592587,-0.3169832,0.016869549,-0.52298963,-0.38004854,-0.75668836,0.4666808,-0.7756721,0.43438846,0.056252472,-0.17609583,0.18053295,0.24106258,0.21694328,-0.19165649,0.015733004,0.09913938,-0.14418398,0.023868024,-0.100634284,-0.16756943,-0.2409748,-0.67540795,0.034124143,-0.3373749,-0.34603617,-0.38197342,0.12256325,-0.3504831,-0.04970698,0.067401275,0.65344167,-0.3838345,0.006427169,0.057874963,-0.1616901,0.161854,-0.6529782,-0.3076696,-0.10183597,0.25400165,-0.14674574,-0.1305394,0.31643993,0.23851976,0.44310263,-0.08114035,-0.09162068,-0.3586658,-0.17586543,0.11691365,0.5014571,-0.048823357,-0.64579195,-0.017044425,-0.07760735,0.03883735,0.16939647,0.25571865,-0.29704565,-0.028335005,-0.067748226,-0.34845066,0.43689397,0.58977574,-0.37538064,-0.19644257,0.28783023,0.4029699,0.089854546,-0.17897609,0.0043128454,0.08218548,-0.5194134,-0.16155218,0.09356443,-0.25610664,0.63377225,-0.11666421,0.36134258,0.48940542,-0.20653182,-0.007499571,0.021088572,0.076954365,-0.003860203,-0.26652426,-0.40624598,0.1720166,-0.40082836,0.074385434,-0.2369462,0.9464541,0.22974601,-0.77623665,0.41223642,-0.51714855,0.10642079,-0.06398967,0.4007294,0.58089596,0.3947048,0.53725535,0.683279,-0.46474472,0.0314123,-0.057721954,-0.35303319,-0.02208734,-0.3490429,0.12133872,-0.32512107,0.025558434,-0.019827183,-0.08451422,0.106278986,0.4350025,-0.30362135,-0.09148995,0.22815934,0.7818416,-0.22076409,0.04849624,0.7297926,1.0502784,1.1985368,0.010769069,0.918295,0.24593137,-0.29205295,0.25774187,-0.15121129,-0.66278297,0.26312822,0.30664897,0.15665524,0.05379688,0.023611885,-0.030930804,0.3541439,-0.43894702,0.086427525,-0.0879908,0.08934285,0.3441435,-0.08730778,-0.39855078,-0.3410525,-0.18351184,-0.06961242,0.17433926,0.2578219,-0.25570613,0.24311699,-0.019158583,1.681038,-0.0741127,0.073967725,0.13621327,0.7263199,0.24547458,-0.13758712,-0.01936047,0.1917572,0.2417213,-0.03631058,-0.6149303,-0.005066303,-0.19645357,-0.422823,-0.0837896,-0.40363795,-0.22920044,0.020845184,-0.48091525,-0.20418122,0.0032593906,-0.34133038,0.39768267,-2.9213088,-0.21429944,0.038582418,0.33014914,-0.24313119,-0.3166166,-0.09282612,-0.52713335,0.4922276,0.35650778,0.38887957,-0.6294502,0.24580456,0.55402744,-0.379107,-0.24714023,-0.6058138,-0.10584665,-0.16852403,0.22813895,-0.017153297,-0.083233394,-0.1320391,0.20306325,0.5209428,0.19721676,0.1331644,0.111147776,0.35794732,0.03344069,0.5267675,-0.1593187,0.43820888,-0.274427,-0.061806485,0.26842198,-0.50980306,0.05503834,-0.3238206,0.17004779,0.48861545,-0.48577225,-0.8365399,-0.7470255,-0.14395227,1.0553757,-0.06422956,-0.35346383,0.35240555,-0.3928305,-0.17750885,-0.20642437,0.695135,-0.06961623,-0.0105025405,-0.628728,0.052997634,-0.097267814,0.14905527,0.11129593,-0.037172448,-0.46333426,0.6341525,-0.03166478,0.6080691,0.33761886,0.16324146,-0.39135483,-0.41451687,0.021491515,0.8440748,0.20434883,0.26463157,-0.35736436,-0.045396917,-0.36194038,-0.16191167,-0.012893289,0.45303443,0.6682253,0.042771697,0.11339657,0.2323449,0.008393609,0.072134145,-0.02192412,-0.27570853,-0.061857,-0.016387293,0.6044198,0.5559705,-0.13967758,0.33846042,0.0025202162,0.08842251,-0.43105236,-0.25591677,0.54809755,0.9187011,-0.043020323,-0.25412086,0.60210717,0.3964154,-0.2109232,0.45866108,-0.570703,-0.27222168,0.4885217,-0.17140803,-0.39199096,0.23936528,-0.40343362,-0.019866614,-0.6678098,0.16944918,-0.18582156,-0.22509421,-0.51798713,-0.14551249,-3.3858545,0.076981835,-0.065843575,-0.2521364,-0.110013075,-0.13834634,0.11308242,-0.50069314,-0.54012614,0.26791674,0.075418994,0.76166016,-0.04665383,0.093330786,-0.2368021,-0.21705271,-0.48188034,0.11735388,-0.15912811,0.38380003,0.13914791,-0.35295397,0.090091586,-0.25935572,-0.407898,0.05068799,-0.34715384,-0.43034348,-0.12311756,-0.41035903,-0.52415717,0.74021965,-0.3734311,0.13633496,-0.1832354,-0.15276214,-0.14620015,0.26676065,0.19329245,0.15596318,-0.08304639,-0.086121954,0.011266481,-0.22245733,0.31256348,-0.07026473,0.16211642,0.38227147,-0.0022005988,0.032975562,0.40581796,0.6637235,-0.15313266,1.0055099,0.32138368,-0.070979886,0.21685298,-0.2919765,-0.314354,-0.36371034,-0.18129826,0.047640577,-0.31015328,-0.4855076,-0.07036189,-0.4047042,-0.6012975,0.3837283,-0.030104151,0.27929175,0.08130719,0.20774958,0.39954165,-0.14178543,-0.01961284,0.086633444,0.058725376,-0.567885,-0.30283788,-0.6116753,-0.45968768,0.13696447,0.79630315,-0.067783974,-0.11966345,0.08064038,-0.11380411,-0.13979964,0.028433075,0.029000567,0.1378311,0.32923,0.034456927,-0.761674,0.4343415,-0.10928618,-0.12033406,-0.5865707,0.185208,0.6108827,-0.574188,0.53834015,0.35411784,0.05344164,-0.2693286,-0.48419872,-0.3252065,-0.008741752,-0.103019744,0.38195136,0.12224785,-0.7969369,0.45050097,0.23912843,-0.21025237,-0.6814245,0.49675053,0.004718707,-0.3948134,-0.12529172,0.31907147,0.26278275,-0.02297915,-0.21641137,0.08737819,-0.5301232,0.18774536,0.18534066,0.100961775,0.29845625,-0.34603685,-0.15998888,-0.6836624,-0.123218976,-0.44263873,-0.3310948,0.16185156,0.15812427,0.3132666,0.42333654,0.00074877875,0.26525557,-0.16527662,0.11185102,-0.09003288,-0.09970084,0.32570103,0.30114156,0.4954804,-0.45623666,0.56619364,-0.10993444,-0.06547172,0.036789957,0.080079794,0.22292906,0.1702391,0.34348127,-0.106121175,-0.42761517,0.27662766,0.82968056,0.2755623,0.32902482,0.21395448,-0.15018041,0.35792205,0.17956558,0.09994666,0.22729832,-0.5780122,-0.019544981,-0.42387417,0.16794673,0.41377145,-0.019348392,0.33798864,-0.078782134,-0.39285067,0.061624352,0.2546892,-0.26338235,-1.1207727,0.27395394,-0.0044378457,0.8860306,0.58389324,-0.040745556,0.08998403,0.72096485,-0.07023214,0.22133633,0.30323026,0.008032954,-0.4131494,0.59657234,-0.5463563,0.4734634,-0.08465516,-0.09365919,-0.1595286,-0.059649907,0.42484134,0.4879332,-0.050688762,0.07871994,0.11017655,-0.2584544,0.22878835,-0.46362466,0.08456381,-0.4591713,-0.10603494,0.52732074,0.42361084,0.23130892,-0.012689132,0.059020802,0.06510744,-0.09081558,-0.13669917,0.08664063,0.0055610766,0.037111953,-0.6913092,-0.07665735,0.5809449,-0.13042036,0.13885145,0.0061228643,-0.12564445,0.24774367,-0.20023783,-0.09520487,-0.059341006,-0.68779814,-0.051949896,-0.24516204,-0.4601318,0.46828097,-0.13289586,0.28018445,0.21895266,0.13221797,-0.26732805,0.3347121,0.43336186,0.5263849,-0.15630037,0.0403613,-0.43821532,-0.04769065,0.088834636,-0.15999486,-0.20927423,-0.2561707,0.05354281,-0.47638035,0.39654306,0.0014347159,-0.12097445,0.059952717,0.05459945,0.070917614,0.7553918,-0.21743141,-0.013866063,-0.03483884,-0.15049958,-0.17316169,-0.13220027,-0.070182696,0.24000105,0.15907216,-0.15751992,-0.054342654,-0.15824579,-0.097257525,0.2548421,-0.07582916,0.49572748,0.17378367,0.10766257,-0.22091757,-0.20433332,0.019500732,0.54111266,0.092647165,-0.23889175,-0.27538475,-0.39101455,-0.28843865,0.48706782,-0.008853831,0.2221199,0.16102949,-0.32337755,0.651312,0.046001136,0.8908506,0.049874082,-0.43032134,0.13128072,0.43499973,0.05365532,-0.03100176,-0.32434937,0.81593317,0.41483152,-0.088435136,-0.11602917,-0.28203005,-0.010527776,0.07370574,-0.25272787,-0.17576137,0.037475105,-0.6046218,-0.20518282,0.22148679,0.27478662,0.18681985,-0.1639253,0.08209939,0.35087517,0.14915457,0.3394828,-0.3753721,-0.09999499,0.39809301,0.39120886,0.13290511,0.02428947,-0.3525626,0.3104416,-0.58811474,0.018091353,-0.32779095,0.20256527,-0.19109932,-0.22103272,0.29139498,0.21579051,0.4680423,-0.19489095,-0.37967202,-0.31349203,0.43650115,-0.029018788,0.18526986,0.31820768,-0.18869792,0.049315754,0.062112458,0.6086129,1.1219633,-0.15036032,-0.018103361,0.40046203,-0.32382938,-0.61814606,0.31912532,-0.3598654,0.20843513,0.12087532,0.017015548,-0.5434374,0.17090419,0.2936602,0.08104605,0.111751154,-0.47164935,-0.5555135,0.33026278,-0.279849,-0.259853,-0.33337396,-0.11010495,0.48148787,-0.23772581,-0.17877333,-0.055832826,0.3932479,-0.2224204,-0.6916185,-0.065697454,-0.27816996,0.35830706,0.12407183,-0.19024223,-0.19715492,0.06831116,-0.5462849,0.2026822,0.13309385,-0.39014333,0.06127782,-0.44849852,0.024479646,0.967217,-0.11916888,0.09786553,-0.3942373,-0.48073882,-0.8268073,-0.42670357,0.5813395,0.041958585,-0.017756123,-0.5216514,-0.11841134,-0.13099541,-0.0026894074,0.04116272,-0.44058177,0.4194229,0.1251159,0.3106084,0.020627715,-0.6675344,-0.15168858,0.057219386,-0.4175873,-0.44220445,0.4864086,0.102828436,0.92246467,0.049575362,0.038141396,0.22762981,-0.29986048,0.13158076,-0.24247995,-0.33721182,-0.57043594,0.22185993 -864,0.65355045,-0.026394458,-0.602476,-0.15418187,-0.24727169,0.21570924,-0.1563414,0.49831098,0.32286188,-0.38745245,-0.20109592,-0.10669789,0.06228812,0.551967,-0.17328279,-0.6562824,0.09686111,0.19161429,-0.44009545,0.49626243,-0.47863913,0.34041545,-0.06468121,0.33892462,0.16522077,0.27650663,0.23593174,0.09912631,-0.014365168,-0.0024443131,-0.31335303,0.20277889,-0.37645754,0.10262807,-0.07940957,-0.45547235,-0.105526686,-0.5657423,-0.42439908,-0.6922332,0.40154675,-0.81990206,0.5395428,-0.029638914,-0.14959455,0.062441733,0.26105165,0.37680238,-0.31058437,-0.0055856477,-0.013814087,-0.10876424,-0.074364685,-0.16699632,-0.2647169,-0.47997153,-0.6567038,-0.08922717,-0.42088413,-0.18790314,-0.29470026,0.07990739,-0.28566435,0.07572525,0.079521194,0.36153567,-0.3751241,-0.17940044,0.33624524,-0.20787518,0.14335053,-0.5129572,-0.107441135,-0.061684094,0.32113707,-0.11523783,-0.27247086,0.22633108,0.3616373,0.414804,-0.029368341,-0.15401688,-0.43930596,-0.14221361,-0.027804017,0.56670034,-0.10245573,-0.5996543,-0.27314955,0.116489284,0.1120406,0.34827965,0.08617438,-0.1276585,-0.026652588,-0.021420367,-0.30118102,0.45585153,0.49967334,-0.4287762,-0.27520525,0.35867113,0.4150316,0.086055905,-0.12336038,0.02015574,0.043398984,-0.58002025,-0.14276536,-0.10603951,-0.21092972,0.6001223,-0.20576048,0.2983232,0.6392407,-0.010308286,-0.029729761,0.0776904,0.01936061,-0.24454874,-0.28300223,-0.14161152,0.13992907,-0.34698942,0.22506021,-0.045909937,0.5790238,0.36015496,-0.6429112,0.36216205,-0.60847557,0.12931257,-0.15045026,0.3518117,0.7185353,0.37585723,0.13367592,0.88199675,-0.3865264,0.20273665,-0.1389562,-0.305432,-0.057845004,-0.10407345,0.06527598,-0.6621606,0.25585496,0.14218388,-0.005608877,0.33886915,0.40578353,-0.4469817,-0.1232495,0.20633186,0.88482785,-0.27717397,-0.11473329,0.8092836,1.0267383,0.95997745,-0.03907127,1.0220584,0.2563514,-0.2596703,0.16608045,-0.28360224,-0.7412725,0.24019688,0.3908656,-0.085372694,0.3731922,-0.004371423,-0.053766064,0.30571663,-0.3276955,-0.07708439,0.06640856,0.15242423,0.24359575,-0.1709151,-0.42733404,-0.13213575,-0.07460176,-0.014131661,0.33661482,0.28942698,-0.17483391,0.49520496,-0.015741508,1.6604676,0.03600227,0.05754733,-0.043248635,0.5922506,0.4372272,-0.099775024,-0.1763263,0.17853117,0.34326795,0.092764035,-0.47491395,0.14036892,-0.19072495,-0.42367223,-0.11975928,-0.32057407,-0.09586407,-0.13963486,-0.33572438,-0.09800681,-0.061295945,-0.2453467,0.43001848,-2.918809,-0.28315645,-0.1328211,0.35248905,-0.28914553,-0.41655684,-0.14949591,-0.4483146,0.4285378,0.39751217,0.48509583,-0.5690988,0.33616114,0.4100092,-0.6137522,-0.07768752,-0.5856374,-0.1045175,-0.006215122,0.35438913,0.034081485,-0.17954126,0.0079978425,0.3243542,0.4966887,0.0076003717,0.08647073,0.21700874,0.36717606,0.017332243,0.49939534,-0.25192267,0.70341706,-0.35852483,-0.053104334,0.26951826,-0.403976,0.19639444,-0.28490973,0.11189019,0.5165488,-0.4693685,-1.0736724,-0.6121174,-0.035442844,1.0115435,-0.21741918,-0.29640415,0.2206321,-0.52351385,-0.24883887,0.12846047,0.5165431,-0.115890115,-0.10463751,-0.7149173,0.029001107,-0.06306987,0.04974363,-0.039714452,-0.07452564,-0.4697692,0.59579825,0.066557616,0.5853968,0.14200044,0.26421657,-0.25600427,-0.38584167,0.021095006,0.80455387,0.2935917,0.15123664,-0.19317561,-0.10636445,-0.5805763,-0.18364738,0.12563159,0.64535743,0.65816087,-0.10549317,0.092764035,0.166399,0.15678763,-0.009095265,-0.13920087,-0.1895191,-0.050825562,-0.07708459,0.57999814,0.6163751,-0.2527382,0.45582283,-0.099022545,0.3835428,-0.33252752,-0.4499311,0.7623472,0.88134205,-0.14576691,-0.36398587,0.53933996,0.47622278,-0.23728873,0.40158427,-0.7440827,-0.43340078,0.4725873,-0.08870839,-0.29363427,0.054517206,-0.3130553,0.08013492,-0.92616993,-0.0539948,-0.28178203,-0.48090044,-0.4477145,-0.1781453,-4.0927577,0.08617164,-0.097491845,-0.15615775,-0.15026638,0.01957323,0.13577984,-0.51116735,-0.78605664,0.3139374,0.028063703,0.8876191,-0.17062484,0.29148304,-0.2072787,-0.1639699,-0.40289176,0.24128625,-0.0069491128,0.33029762,0.04722422,-0.46195012,-0.09004441,-0.07462482,-0.65058744,0.13784416,-0.6636946,-0.3890662,-0.10161464,-0.48024356,-0.11428574,0.681165,-0.32285118,0.045730233,-0.11408525,0.05014945,-0.265889,0.28120172,-0.031961028,-0.0219572,0.09682084,-0.16841295,0.2351528,-0.26887882,0.40104696,0.052612856,0.42162946,0.24519125,-0.09079381,0.19666499,0.50016904,0.72964156,0.10115577,0.8980455,0.36484128,5.8547237e-05,0.31570223,-0.38732117,-0.26190707,-0.30306605,-0.28862825,-0.10500565,-0.39138743,-0.49436635,-0.13019249,-0.50097966,-0.8012055,0.34070104,0.1393351,0.21990901,0.0479223,0.20349345,0.55023104,-0.34792134,0.115515575,0.031101657,-0.13875622,-0.4627978,-0.21616493,-0.46668524,-0.49759594,0.12157769,0.9576927,-0.20960453,-0.027439447,-0.20547731,-0.26730803,-0.14131556,0.30295298,0.113621935,0.1329543,0.42779812,-0.14317721,-0.66850793,0.5043797,-0.37872887,-0.2752703,-0.72702086,0.13250126,0.49278042,-0.6238798,0.509195,0.33603552,0.13237002,-0.1750707,-0.44339684,-0.17570604,0.03112953,-0.19022228,0.24298964,0.2283071,-0.75591385,0.39619783,0.29346272,-0.1998764,-0.7246736,0.6855721,0.052955188,-0.29438463,-0.1871803,0.22766916,0.3440324,0.04938686,-0.33546102,0.14193992,-0.41467652,0.22064827,0.15656629,0.14450124,0.5195013,-0.19380921,-0.056265943,-0.7286363,-0.14085387,-0.47561756,-0.1494064,0.26520908,0.08657228,0.3364821,0.13327803,0.048906606,0.31439516,-0.41945845,0.12504362,-0.1685795,-0.3407171,0.25563142,0.3163281,0.40192607,-0.4262638,0.6805169,0.019149417,-0.0052473387,0.21586564,0.01385631,0.37076253,0.05113828,0.61318016,0.25711757,-0.30748287,0.14717166,0.7151905,0.18884364,0.07192531,0.22169921,-0.101854764,0.22332844,0.020704636,0.026757548,0.17789957,-0.64874846,-0.03287142,-0.35898605,0.13972367,0.45169765,0.2430265,0.32743803,0.07823539,-0.38557273,-0.0054178145,0.14691299,-0.11191782,-1.4444906,0.44718167,0.2203644,0.93454194,0.39879182,0.0327787,0.011815162,0.55148304,-0.07993281,0.25779006,0.4254988,-0.1392763,-0.3224458,0.4637501,-0.65882325,0.60750645,0.11548679,0.0071129594,-0.09914921,0.08644119,0.48357356,1.0011971,-0.21658574,0.08805193,0.15677422,-0.38521236,0.27619487,-0.33957994,-0.28308967,-0.7218918,-0.14111155,0.7057717,0.51337373,0.3044244,-0.10665886,-0.06317348,0.13434294,-0.0020323717,-0.043169998,0.13132243,0.12276983,-0.09287533,-0.66982883,-0.28794596,0.42484745,0.25956747,0.2744052,0.103584245,-0.20501794,0.32254142,-0.081792206,-0.034404453,-0.09616817,-0.6614967,-0.087579384,-0.34211567,-0.43174097,0.51057345,-0.060804423,0.2871035,0.2251067,0.017520057,-0.16941231,0.46387774,-0.060146507,0.78462756,-0.026820842,-0.26145726,-0.3842078,0.088431865,0.19307111,-0.30550405,0.015865434,-0.2898557,0.026300477,-0.5011896,0.5966902,-0.026336381,-0.38158268,0.16862202,-0.06605008,0.0965294,0.47081274,-0.27951586,-0.17082033,-0.08261972,-0.10366351,-0.33549705,-0.17631482,-0.27450675,0.23059687,0.048357006,-0.04739087,-0.10837857,0.0521567,0.007612859,0.4392278,0.022236297,0.3488485,0.36148623,0.18136165,-0.25940517,-0.14120004,0.31012487,0.63909334,-0.11853155,-0.27976596,-0.25522014,-0.47542906,-0.44171426,0.1333302,-0.034105726,0.36613977,0.16097058,-0.14012244,0.38538477,-0.117707305,1.1118877,0.024793016,-0.3499443,0.08188773,0.46502966,0.05557786,-0.17109522,-0.3623336,0.9639219,0.43365347,-0.14227332,-0.1363716,-0.34030658,0.1833846,0.16685827,-0.21180354,-0.2229078,0.014821445,-0.629111,-0.33328372,0.1637001,0.114216715,0.45495576,-0.09992071,0.14756587,0.22291514,0.13592106,0.23678508,-0.43476874,-0.18113253,0.34353554,0.36475536,0.0021058137,-0.010021191,-0.4897315,0.304091,-0.47610262,-0.11826132,-0.26124054,0.18682307,-0.24368939,-0.38539892,0.3447404,0.24405655,0.25353307,-0.17163096,-0.40953657,-0.32418615,0.46575972,0.20333377,0.1119153,0.4232086,-0.19798917,-0.06636558,0.095262416,0.5635447,0.995341,-0.23431356,0.10916296,0.35437885,-0.4269765,-0.61224616,0.36299005,-0.26872355,0.37984753,0.13357696,-0.17177626,-0.7626307,0.33237913,0.04611602,0.15698512,0.17152801,-0.5005939,-0.31973502,0.21441433,-0.2916951,-0.34020963,-0.3608363,0.07834648,0.5888423,-0.17530563,-0.18915118,0.256558,0.24879983,-0.11023839,-0.6791289,-0.04242649,-0.27204242,0.31573975,0.07812594,-0.31217083,-0.23945695,0.0033123929,-0.48671958,0.41493797,0.03379753,-0.37415266,0.087737545,-0.49960387,-0.21944663,1.0348585,-0.3701237,0.2632621,-0.56779677,-0.4138778,-0.79153866,-0.25124085,0.42028475,0.004387158,-0.10810443,-0.6602137,0.006017096,-0.021676796,-0.0880295,-0.064073406,-0.32345027,0.39632827,0.045358904,0.40092593,0.082369104,-0.864774,0.10091399,0.08707828,-0.3624594,-0.50631136,0.46909487,-0.02399229,0.9331871,0.0417834,0.11575986,0.46143574,-0.50183177,-0.08318413,-0.18611765,0.018433925,-0.67972654,0.26029265 -865,0.5093909,-0.21647857,-0.5275784,-0.15787746,-0.47241855,-0.08791115,-0.2747427,0.28103164,0.35746565,-0.23174922,-0.36622146,0.02363482,-0.12937461,0.3775157,-0.17230624,-0.7439545,-0.18069406,0.14098819,-0.75974137,0.59585893,-0.32152244,0.31056848,0.01708962,0.240557,0.42261449,0.3659766,0.11635259,0.011840413,0.091370255,-0.19700007,-0.023274263,0.058641333,-0.703608,0.33396116,-0.15531458,-0.14517824,-0.07560603,-0.5273496,-0.39358458,-0.833597,0.2306674,-0.9262077,0.6180152,-0.12822215,-0.19199939,-0.22193564,0.32966185,0.44860676,-0.2669488,-0.023925826,0.32073978,-0.15023965,-0.2668871,-0.06622241,-0.049549516,-0.34945285,-0.6194069,-0.26566947,-0.653805,-0.19557379,-0.3698472,0.27972227,-0.29196241,-0.14688824,-0.31914717,0.43976834,-0.5376101,0.10567983,0.28335035,-0.025861396,0.43690586,-0.67067695,0.08405008,-0.2731204,0.4215536,-0.0629765,-0.25993982,0.50805634,0.2539012,0.24807608,0.3530215,-0.3135329,-0.25496653,-0.163838,0.3026484,0.21818875,0.022310555,-0.28854978,-0.3240334,0.049648717,0.49999666,0.4500154,0.14554109,-0.45608327,0.02193492,-0.07254567,-0.11543087,0.8993573,0.44676033,-0.030457241,-0.22233492,0.3076874,0.6399968,0.5826101,-0.31280324,0.037749663,-0.07054637,-0.4664259,-0.13991332,0.355688,-0.19850107,0.49195445,-0.0833943,-0.18279429,0.77229136,-0.25394198,-0.17958243,-0.021992497,0.043490637,-0.11588764,-0.13174447,-0.3223551,0.10248073,-0.56172484,0.28491718,-0.23741095,0.5532556,0.16251624,-0.7939485,0.22195534,-0.6710585,0.08793708,-0.009337172,0.70000666,0.7969007,0.64356935,0.37694302,0.8535447,-0.21792738,0.24347629,0.0032725434,-0.36213258,-0.099972725,-0.3793044,-0.06988368,-0.43213236,-0.15552624,-0.40415335,-0.11112326,-0.19981581,0.6304553,-0.50066406,-0.118263446,0.11436709,0.582926,-0.2636524,-0.077420734,0.79733866,1.1272511,1.154755,0.064124994,1.3440751,0.13883038,-0.26558912,-0.01800855,-0.27091065,-0.66039425,0.22472574,0.3492514,-0.20272106,0.38781595,0.006242866,0.05543895,0.17170306,-0.5712512,0.16506608,0.07593884,0.4338552,0.0752232,-0.14418273,-0.35965466,-0.1785137,0.036590815,0.20623215,0.13929848,0.21223621,-0.35630807,0.20928578,0.13396613,1.1766821,-0.2744394,-0.0724936,0.021402532,0.66694355,0.26438245,-0.10367209,-0.19568439,0.3262942,0.6324172,-0.038144797,-0.7822106,0.10508368,-0.30707762,-0.30390683,-0.2054683,-0.43805578,-0.20349753,-0.017556151,-0.23573184,-0.18356414,-0.046352725,-0.5098073,0.5270509,-2.36006,-0.32438326,-0.17612238,0.3131442,-0.4232264,-0.03892824,-0.038421795,-0.61692137,0.29438296,0.08486577,0.5943981,-0.6748469,0.6228513,0.65962046,-0.78819776,-0.16957057,-0.71178705,-0.12382903,0.037004456,0.5355729,0.035626844,0.073552154,0.025056908,0.20978172,0.6899629,0.21561898,0.15500927,0.66203517,0.45373273,-0.04883736,0.7502122,-0.06663468,0.6401423,-0.20323862,-0.09125439,0.48469868,-0.1866587,0.32236084,-0.43572244,0.0091514485,0.66347104,-0.63353926,-0.922558,-0.716252,-0.5620604,1.0757549,-0.42859137,-0.52974725,0.28827825,-0.39283717,-0.007744173,0.15172443,0.6547432,-0.1846658,0.2332,-0.6683571,-0.063146956,0.04285716,0.2639765,0.042087242,0.014775023,-0.51068354,0.87597847,-0.0749092,0.65837795,0.2130072,0.2380848,-0.3058816,-0.51080817,0.29802433,0.82044667,0.3696921,-0.0686399,-0.37440506,-0.14301933,-0.2608655,-0.15485175,-0.042966664,0.7612598,0.54487544,-0.17884134,0.08329003,0.35075736,-0.20035686,-0.023351768,-0.2094689,-0.32776636,-0.18362789,0.028652003,0.46983233,0.84373283,-0.07349671,0.652072,-0.22358851,0.055073734,0.052450877,-0.5414669,0.69476813,0.78010684,-0.094164304,-0.12601721,0.67816883,0.6357855,-0.27880463,0.6083488,-0.6348105,-0.2038542,0.7383539,-0.06537091,-0.5275013,0.21971567,-0.34886137,0.030773118,-0.70903367,0.29403272,-0.518377,-0.64677167,-0.24545877,-0.03591573,-2.4547415,0.1444931,-0.17249663,-0.19981106,-0.3796606,-0.113839746,0.27928463,-0.6712101,-0.84615797,0.23155479,0.15101159,0.7323399,-0.119996525,-0.02257683,-0.23362784,-0.307115,-0.15163572,0.29419288,0.059823975,0.34834722,-0.3557408,-0.43545222,-0.06160875,-0.034209535,-0.6895879,0.053971577,-0.484612,-0.4015158,0.0014487952,-0.6388381,-0.12595586,0.65730065,-0.49307612,-0.015056231,-0.17756683,0.09720406,-0.07573502,0.26665547,-0.042337317,0.3291249,0.29731032,-0.086129814,0.04911405,-0.039095584,0.583206,-0.013143112,0.2584072,-0.04691747,-0.123473145,0.24114628,0.4969213,0.674891,-0.33394837,1.2504896,0.47329482,-0.11961458,0.18910754,-0.12207287,-0.27325872,-0.7787323,-0.16793306,0.014301677,-0.47849616,-0.6434881,0.07890848,-0.21869166,-0.91582537,0.5901743,-0.045996,0.54582745,-0.007111589,-0.15373944,0.33956218,-0.22259694,0.117360406,-0.13137566,-0.25793144,-0.52715605,-0.41749787,-0.669689,-0.37381232,-0.29888782,0.9992382,-0.30982468,0.020512799,0.02910459,-0.5737855,0.20711704,0.14206299,0.029017195,0.18738677,0.36764503,0.1787769,-0.64930123,0.19543749,-0.044661324,0.21267574,-0.4327111,0.32720092,0.844024,-0.55995303,0.5710048,0.23474067,-0.013766791,-0.36082003,-0.6916341,-0.06039187,-0.039052725,-0.31867623,0.50960505,0.22110885,-0.7724262,0.36268297,0.039599072,-0.5856883,-0.8120343,0.67938036,-0.16323537,-0.10419193,-0.08245764,0.4067366,0.17714827,-0.043433893,-0.34357083,0.36450443,-0.18213134,0.27045572,0.12259837,-0.087920405,0.06437534,-0.09421877,-0.3051915,-0.9103791,0.19296275,-0.5258177,-0.3556864,0.3574234,-0.12335809,-0.0010351943,0.15566607,0.3563914,0.39743522,-0.23203336,0.15509556,-0.0069861,-0.517314,0.22595252,0.62693805,0.5607373,-0.41714072,0.56031865,0.20269288,-0.21890163,0.096969746,0.1136175,0.3723701,-0.18504769,0.44082963,0.09034318,-0.1549345,0.23551528,0.94343203,0.15568374,0.5152015,0.16647309,-0.23541999,0.35569465,0.049716245,0.51083136,-0.14581811,-0.7209904,0.09452969,-0.18206613,0.13051392,0.54292274,0.23482418,0.28947198,0.10799915,-0.24173473,-0.051481556,0.13984853,-0.120090075,-1.7397417,0.3990951,0.38273588,0.90479755,0.56425476,0.18238233,-0.037905704,0.6881415,-0.316106,0.025170362,0.5459428,0.13981505,-0.5134337,0.5375909,-0.6678872,0.46903706,0.05129094,-0.077759854,0.29198885,0.10658834,0.49155235,1.0029539,-0.24947983,-0.08012792,-0.030568326,-0.1855771,0.03664722,-0.3947399,0.17424488,-0.502931,-0.5896893,0.7721627,0.5073572,0.3908668,-0.13075462,-0.0078089857,0.04098976,-0.19165182,0.29018575,0.002426843,-0.2629029,0.06936783,-0.5436254,-0.076276824,0.52489597,-0.1326675,0.008681419,-0.112927,-0.062579624,0.042144593,-0.18156286,0.10246689,-0.002468365,-0.9946656,-0.21252312,-0.19833322,-0.31429267,0.17966503,-0.35116363,0.0854716,0.22066809,-0.120406896,-0.14763868,0.40295553,0.27299,0.6962113,0.21440391,-0.19558509,-0.26333848,0.009093697,0.22203211,-0.24422847,0.2334714,-0.116913445,0.05480017,-0.6466493,0.55480605,-0.23744363,-0.6473728,0.2256303,-0.33335122,-0.13737798,0.5693182,-0.04938781,-0.19120677,0.112136446,-0.38643312,-0.34280184,-0.17412455,-0.22797664,0.21006273,0.24468075,-0.08735078,-0.24266829,-0.08215516,0.041912127,0.38734755,0.05582228,0.5984486,0.16908729,0.098017894,-0.25713772,0.0040374002,0.2254887,0.54985064,0.29288572,0.06958661,-0.33189443,-0.3125994,-0.4714098,0.29443464,-0.05157836,0.23799126,-0.07999763,-0.22438495,0.8228603,0.13804431,1.2237159,-0.006608203,-0.42731485,0.1261537,0.6019642,-0.30993262,-0.0650897,-0.40364566,0.8298691,0.5420867,-0.13792562,-0.14338338,-0.59597874,-0.14259763,0.108190335,-0.3236714,-0.04200794,0.01391996,-0.50208116,-0.20057298,0.2710483,0.17918432,0.050996453,0.011183252,-0.13391383,0.2907319,0.24552377,0.48729038,-0.66139585,-0.06014141,0.2552745,0.18395846,0.09257921,0.087964036,-0.2999555,0.37826642,-0.6918075,0.3053763,-0.25771666,0.08042042,-0.4834355,-0.3482429,0.1603866,0.010332778,0.414682,-0.25652218,-0.38451532,-0.1972369,0.5197484,0.0363085,0.1449987,0.6835006,-0.33525327,0.18403338,-0.052856375,0.55125767,0.9666558,-0.503765,0.13485257,0.25611904,-0.61766106,-0.5140402,0.3867965,-0.57478356,0.062174007,0.014431812,-0.48962045,-0.48874855,0.14660524,-0.0009298722,0.17132886,0.15274435,-0.84657925,-0.118149854,0.26051423,-0.11926039,-0.2491685,-0.22945602,0.31225517,0.67716175,-0.25213504,-0.5963838,0.09992581,0.3089104,-0.28426746,-0.4287866,-0.055425603,-0.10521203,0.3511436,-0.31162244,-0.33663973,-0.1463763,0.097347714,-0.51787525,-0.0705267,0.19043346,-0.3748769,0.12520248,-0.09284606,0.007304162,0.795367,-0.4567252,-0.114556275,-0.49502096,-0.46393034,-0.83505875,-0.37935606,-0.08334631,0.2897856,-0.2110167,-0.4651338,0.0460168,-0.23926193,0.04660361,0.21467651,-0.7062071,0.47513008,0.18441999,0.49072376,-0.2787893,-1.0872589,0.2330013,0.19428039,-0.11447113,-0.69368976,0.7376153,-0.123593956,0.7714073,0.038475152,0.01389813,-0.3159538,-0.5121822,0.17975669,-0.13783526,0.049733877,-0.80544376,0.18491006 -866,0.47938243,-0.22776045,-0.74964905,-0.031775985,-0.5438528,-0.06639053,-0.17381528,0.39498553,0.34679905,-0.456215,-0.15615201,-0.15596308,-0.113086395,0.1500201,-0.09280651,-0.33948353,-0.028788034,0.28758717,-0.6690367,0.6090703,-0.108517095,0.25684884,0.071390346,0.4552628,0.36427525,-0.055822365,-0.121657714,0.15951481,0.18054684,-0.4176989,-0.14384513,0.4178524,-0.64708287,0.16022623,-0.19317296,-0.5882912,-0.22373776,-0.49286154,-0.481,-0.99704015,0.4390831,-0.92092687,0.774572,-0.13431482,-0.2908051,0.10549487,0.36382753,0.5374657,0.16503142,-0.07860654,0.21496959,-0.1909478,-0.057073146,-0.0892572,-0.29916644,-0.32649246,-0.613102,-0.04053622,-0.2963241,0.010667642,-0.3633256,0.294074,-0.35654473,0.0068045002,-0.29164773,0.47616586,-0.32001713,0.20614156,0.29614645,-0.034905277,0.32166067,-0.66134655,-0.15777819,0.018049097,0.37425962,-0.17386246,-0.27675563,0.3217465,0.30125827,0.35362098,-0.08935453,-0.18062283,-0.46314815,-0.006571608,0.061895035,0.5877479,-0.034767024,-0.08863293,-0.012661542,0.16437258,0.5782421,0.4339837,0.3746013,-0.124572836,-0.20477247,0.0014517137,0.035444718,0.62220496,0.4911165,-0.2268349,-0.29112318,0.36677262,0.7399791,0.44707918,-0.21310018,0.13715439,-0.09520525,-0.35731477,-0.07959758,0.14976263,-0.2712461,0.25347334,-0.10357902,0.22865131,0.59784526,-0.17461076,-0.1354154,0.21146478,0.13153486,-0.05390389,-0.21579586,-0.35796064,0.35663584,-0.5613931,0.3340712,-0.14639214,0.549763,-0.0206925,-0.5969481,0.20782961,-0.7862474,0.28596547,-0.07598181,0.3587122,0.8399,0.4505779,0.35540643,0.8484308,-0.32539457,0.033689238,-0.00020907607,-0.3818288,-0.07568431,-0.38829255,0.107984595,-0.60618484,0.054696497,-0.16183874,-0.11022111,0.19401698,0.56321335,-0.6936967,-0.30307063,0.21235183,0.84685594,-0.16310452,-0.20194641,1.0139469,0.9281321,1.3411037,0.009239486,1.0947258,0.11181196,-0.24065559,-0.035576124,-0.1129484,-0.7055521,0.38195363,0.46948576,-0.43848404,0.36906785,0.14872932,0.10749883,0.49179095,-0.3865169,-0.08792155,-0.123853885,0.12802882,0.09456998,-0.4126838,-0.4650903,-0.16301309,-0.12607722,0.0057399,0.18812922,0.28939387,-0.068932876,0.4157105,0.04914232,1.4005868,-0.12614915,0.108084805,0.100678764,0.3536925,0.32524768,-0.24811636,0.08300663,0.3461339,0.2999176,0.19734277,-0.49771836,0.14066723,-0.33955622,-0.19503203,-0.23147523,-0.30903023,-0.35735956,0.0045306683,-0.39974806,-0.42493296,-0.34959134,-0.205369,0.46545961,-2.5422032,-0.16683027,-0.11444773,0.33922026,-0.23422733,-0.38313046,0.014516584,-0.5491476,0.44392848,0.18352117,0.5844275,-0.57551205,0.39521822,0.5273388,-0.8050427,-0.015843919,-0.67731637,-0.01828573,0.16441081,0.06973997,0.011228268,-0.10803853,0.3265234,0.092891656,0.42352405,0.05737073,0.105231844,0.49506998,0.63587844,-0.23368022,0.62091285,-0.09067775,0.5793248,-0.083765306,-0.2398635,0.49819872,-0.31250882,0.43853092,-0.053949177,-0.09942935,0.85938686,-0.3999241,-0.9480504,-0.5709696,-0.049586363,1.0395749,-0.23758289,-0.54088014,0.04223531,-0.5743666,-0.28384298,-0.118953146,0.37471825,-0.18577574,-0.117709294,-0.7980694,-0.2231175,-0.15757118,0.091576375,-0.008008974,-0.13358167,-0.5599812,0.8835267,-0.073889144,0.59774834,0.3249642,0.283231,-0.41866925,-0.45544878,-0.022527264,0.6008795,0.5634824,0.05210485,-0.43329912,-0.15111078,-0.5535656,-0.1212539,0.12273879,0.65246964,0.38441977,-0.21040365,0.23269646,0.26592332,0.0163816,0.116366304,-0.18084052,-0.2924761,-0.26422423,-0.16824667,0.6059043,0.6855841,-0.14246161,0.5432463,0.10239391,0.25345626,-0.19522773,-0.61425257,0.271211,1.2632045,-0.244611,-0.5405409,0.6436648,0.29433897,-0.11497844,0.45297888,-0.57901317,-0.31062979,0.4916831,-0.2056332,-0.5413789,0.1667176,-0.30039278,0.07860536,-0.8458914,0.29388794,-0.60561484,-0.5489617,-0.5360878,-0.09682656,-1.1562736,0.3709853,-0.24664824,0.013481204,-0.37264535,-0.37572393,-0.09655305,-0.56709814,-0.9120456,0.17544119,0.20167133,0.7477876,-0.22767957,0.13919519,-0.18814765,-0.51808584,-0.46696812,0.15034185,0.15206158,0.467511,0.0054851854,-0.40140423,-0.031054864,0.13130835,-0.41357282,-0.08916674,-0.5726207,-0.47250134,-0.17785828,-0.42627972,-0.16665348,0.6127287,-0.32415804,0.10478865,-0.24430534,-0.049310885,0.10855363,0.26585212,-0.06576974,0.20726798,0.10705024,-0.14803383,0.10987549,-0.14237447,0.38909343,-0.04170062,0.26747105,0.31457457,-0.24458782,0.38177797,0.33508712,0.8107303,-0.23381504,0.84983784,0.3334581,-0.23468582,0.28309295,-0.22017081,-0.39369884,-0.74198097,-0.0893146,0.24419971,-0.3801566,-0.5537599,0.012399912,-0.55440426,-0.84952325,0.49123886,0.110596575,0.4673951,-0.11051337,0.58216125,0.6473392,-0.32015246,-0.10450388,-0.042508613,-0.18896627,-0.5449969,-0.21373029,-0.4806977,-0.50442064,0.069110304,1.198556,-0.4425719,0.004426343,0.26311398,-0.19148722,0.17666544,0.3810249,-0.17631824,0.0014923981,0.52165484,-0.078084946,-0.50834703,0.41700724,-0.0866753,-0.08288902,-0.62437105,0.5098224,0.47455353,-0.55014575,0.43207482,0.30053225,-0.050000932,-0.2866757,-0.7445795,0.176194,0.19453947,-0.34364942,0.4281683,0.4019857,-0.6191769,0.30148387,0.44241902,-0.052078005,-0.8458162,0.61133987,-0.069721244,-0.34069198,-0.10849695,0.39713436,0.15105763,0.10451,-0.14321454,0.24386522,-0.4039598,0.35555914,0.10348011,-0.19643189,-0.059480082,-0.20857792,-0.1592095,-0.8298355,0.3303122,-0.5079511,-0.2629766,0.3578183,-0.015747238,0.14741288,0.21464872,0.30580592,0.40225765,-0.18814205,0.06885841,-0.39862567,-0.29373983,0.42914596,0.48106307,0.43589684,-0.546443,0.5570496,0.06652866,-0.360173,0.045971163,0.122719206,0.48303723,-0.12624769,0.5213043,0.14817272,-0.22401063,-0.06854073,0.75364864,0.07913514,0.3061602,0.023711009,-0.05853339,-0.18945524,0.097128786,0.41405487,-0.32456216,-0.7367789,0.08537185,-0.3082618,-0.0643021,0.5695176,0.05619853,0.053548973,-0.029074745,-0.3673934,-0.031082975,0.09877549,-0.04928146,-1.2747542,0.23338492,0.3139297,1.1168422,0.35814118,0.04055941,0.08631094,0.6877007,-0.17432642,-0.009840921,0.3859717,0.14835286,-0.3281853,0.4571086,-0.9438788,0.5224144,-0.052113812,-0.10861822,-0.002772441,-0.010258148,0.467122,0.7085724,-0.36958483,0.018699495,-0.187883,-0.43640712,0.1887491,-0.25339296,0.15942565,-0.60230285,-0.30751067,0.81140184,0.49348396,0.45090756,-0.25186256,0.05639439,0.08553567,-0.22898583,0.18774328,0.13575427,0.24478364,-0.10946907,-0.33483216,0.09748774,0.41641232,-0.115203716,0.05614529,-0.043620892,-0.10835149,0.20236437,-0.045502875,0.09939015,-0.0756238,-0.90037507,-0.09220453,-0.31151256,-0.4316217,0.2978646,0.2200683,0.0903033,0.30671415,0.08220853,0.06443719,0.43607172,-0.018110845,0.64988005,-0.030374408,-0.05241229,-0.34686136,0.44045833,0.0124675855,-0.07975823,0.05269432,-0.011865156,0.3587661,-0.4416117,0.38880372,0.11181191,-0.48623782,-0.041821092,-0.03564691,-0.02911334,0.45912385,-0.3267738,-0.15087709,0.040566478,-0.30494785,-0.2416654,-0.34956446,-0.017727902,0.17299087,0.2047088,-0.1602256,-0.25534335,-0.19290665,-0.2579786,0.38575882,-0.088460505,0.37580046,0.33142212,0.099041514,-0.57387215,0.01722994,0.22629833,0.46928993,-0.22557798,-0.24341127,-0.30383438,-0.5436711,-0.5568233,0.63357097,0.02578081,0.38576117,-0.019015934,0.056432564,0.8651375,0.1094829,1.2360991,0.018776234,-0.39288646,0.14851062,0.57085717,-0.11643398,-0.24659754,-0.36244455,0.77334875,0.6250834,-0.06830268,-0.022676617,-0.33576226,-0.0026925504,0.077020206,-0.23873946,-0.017574403,0.11913038,-0.35656387,-0.2663031,0.15092683,0.16369796,0.11899899,-0.29247943,0.062359374,0.5236944,-0.11969195,0.1860112,-0.3793116,-0.5302975,0.23160417,0.2412387,-0.18328044,-0.02086414,-0.44319472,0.28538498,-0.6009051,0.065456346,-0.23820628,0.25446972,-0.27759793,-0.3304432,0.30602494,-0.1057306,0.31010875,-0.40790758,-0.2833498,0.011416833,0.2981462,0.2277364,0.1726049,0.56962675,-0.3639253,-0.12390872,0.19915661,0.38449672,0.9351473,-0.20593643,-0.18010654,0.25502774,-0.4202955,-0.5709812,0.39723414,-0.57404226,0.22632404,0.06199738,-0.14681199,-0.5030628,0.15780458,0.28797534,0.1022443,-0.09429816,-0.7508407,-0.0049436945,0.20585822,-0.429528,-0.01314389,-0.32405517,-0.14880113,0.60727775,-0.022401124,-0.42105085,0.111994624,0.1488794,-0.07057163,-0.4202872,0.20445867,-0.40788773,0.22715054,-0.05711058,-0.49680445,-0.2288464,0.2173533,-0.47517458,0.090319335,0.24088947,-0.18046965,0.15380894,-0.46836042,0.13282931,0.7981942,-0.44117674,0.032003973,-0.36587897,-0.4798007,-0.5992952,-0.14075306,0.09326481,0.13200146,-0.004839069,-0.900442,-0.09618742,-0.2689174,-0.32465532,-0.14955887,-0.18471071,0.43208963,0.113600075,0.2369739,-0.23969303,-0.9909104,0.2964404,-0.019437905,-0.19057444,-0.5877033,0.5482923,0.040617798,0.6747284,0.13865443,0.1450989,0.27481455,-0.5161071,0.19768289,-0.09910019,-0.07147283,-0.850321,-0.17153047 -867,0.31850654,-0.29451072,-0.43434796,-0.26529327,-0.31343898,-0.096464336,-0.3809519,0.28901616,0.14911143,-0.56379586,-0.16955006,-0.08726132,0.1793434,0.4735519,-0.16112912,-0.62833786,-0.018268377,0.098105304,-0.6136138,0.44868007,-0.7356511,0.3712928,0.26975667,0.1946929,-0.085550345,0.30365697,0.46949902,-0.27681157,0.18635722,-0.26697442,-0.30025986,0.10832521,-0.6014896,0.20055974,-0.1392705,-0.38461116,0.17791955,-0.41356865,-0.13869186,-0.6031969,0.1238462,-1.0143652,0.5332199,-0.0138253225,-0.11192756,-0.31253055,0.33803734,0.42709574,-0.19698705,0.18199103,0.12269288,-0.16988797,-0.15318,-0.2795787,0.020069214,-0.48492074,-0.35922208,-0.074178316,-0.65789217,-0.46578714,-0.27678788,0.22053456,-0.36534515,0.1314301,-0.08804544,0.12397774,-0.40063033,-0.029617956,0.3165673,-0.3431088,0.3653934,-0.5556552,-0.0010506337,-0.13619353,0.54691595,-0.019178309,-0.3282141,0.3055395,0.43287006,0.4791584,0.22824176,-0.15107588,-0.049045224,-0.38473842,0.3367602,0.63424164,-0.14703797,-0.45738378,-0.32833305,0.020744802,0.31453142,0.49433365,-0.100172974,-0.39149055,-0.061955947,-0.16284439,-0.36891544,0.53689486,0.44998154,-0.21078514,-0.28334537,0.16813545,0.48667482,0.21723312,-0.2516967,0.23458423,0.0631996,-0.6115312,-0.1799375,0.14453326,0.18109448,0.52149284,-0.27400562,0.33802214,0.8527193,0.0025149782,0.16917305,-0.07626181,-0.13410525,-0.29793575,-0.20733358,-0.03344828,0.059636086,-0.76631975,0.06589759,-0.38049945,0.9700965,0.17015357,-0.75605947,0.48828587,-0.6306754,0.21030562,-0.18078478,0.6116799,0.6442068,0.27755946,0.23635237,0.8046345,-0.33604693,0.14231409,-0.14329076,-0.565403,0.07803715,-0.27319425,0.082784794,-0.2802167,0.22177579,-0.0034195657,0.3580382,0.005203853,0.3767489,-0.47477213,-0.093049794,0.17891605,0.76928025,-0.29231784,-0.030326521,0.6722264,0.9247578,0.8221733,0.17688096,1.2586725,0.2154427,-0.14454365,0.057267327,0.058193784,-0.62900937,0.13822366,0.4990684,0.5211739,0.24803202,-0.08049848,-0.040983822,0.3159169,-0.3432202,-0.02032216,-0.07439018,0.39556244,0.093636625,-0.09687114,-0.5053101,-0.14953794,0.0069654584,-0.105192296,0.09347328,0.22185339,-0.106482685,0.48820677,0.018832356,1.1008685,-0.22304739,0.20226355,0.18884504,0.46969473,0.39931867,-0.19357629,0.111539565,0.46715847,0.42351198,0.003409962,-0.61158067,0.11222857,-0.20815045,-0.43016735,-0.09394296,-0.35767758,-0.25135958,0.21682496,-0.48936856,-0.0329071,-0.067559175,-0.108852245,0.48981062,-2.8050985,-0.40861514,-0.19800073,0.33975402,-0.28433034,-0.17524229,-0.17119946,-0.5212546,0.28552803,0.28733203,0.609089,-0.7496285,0.5638473,0.51221985,-0.34984538,-0.31251025,-0.77230763,-0.13718046,-0.11856133,0.3711065,0.13400958,-0.20153739,-0.22774756,0.06984582,0.63635474,0.0027433932,0.10626221,0.30078962,0.45930323,0.21755405,0.6911001,-0.13885961,0.5480307,-0.43511555,-0.099472314,0.3819398,-0.27956066,0.29181373,-0.16032639,0.09411185,0.43417498,-0.5643774,-0.8430085,-0.7853684,-0.53034914,1.0422748,-0.36318076,-0.43797484,0.26138845,-0.016686827,-0.16634175,0.04264906,0.69511026,0.0076892674,0.3547529,-0.73757225,0.16729432,-0.11247041,0.23068249,0.107070245,-0.22439633,-0.30409884,0.76429063,-0.0987457,0.7762284,0.28670317,0.13775969,-0.09567764,-0.35482594,-0.0029079542,0.823734,0.36609194,0.06584909,-0.21495105,-0.28603283,-0.2867351,-0.19837345,-0.027377715,0.6818364,0.7555749,-0.08162265,0.09512948,0.37207708,0.07310248,0.135513,-0.079669885,-0.121789716,0.021426499,-0.008676559,0.4666289,0.5208492,-0.180376,0.3380917,-0.18491502,0.36536917,-0.21998961,-0.4526595,0.6441438,0.4994819,-0.11233326,-0.005608514,0.50935936,0.54600954,-0.2868997,0.4151156,-0.6749375,-0.28077546,0.6310063,-0.09431244,-0.49976805,0.3127791,-0.31122625,0.16023766,-1.0008521,0.39669657,-0.50276715,-0.44498816,-0.37657258,-0.16867284,-3.806424,0.339159,-0.03402877,-0.101915814,-0.37555203,-0.05706017,0.3129935,-0.552942,-0.6080132,0.25419548,0.10513755,0.533511,-0.06453941,0.1487736,-0.433884,-0.1821058,-0.032277692,0.1642552,-0.12992077,0.13794196,-0.23250164,-0.23244719,-0.042950403,-0.06256061,-0.4276316,0.27828637,-0.5422387,-0.55427545,-0.0073099085,-0.440549,-0.34729218,0.6116987,-0.5117367,-0.041224197,-0.13675094,0.025840053,-0.45998845,0.25582483,0.08957478,0.21053386,0.029798135,0.06975672,-0.04696564,-0.39952672,0.5130918,-0.1036756,0.3152744,-0.02916324,-0.07413985,-0.0016618967,0.4775147,0.5392186,-0.15030356,0.99985546,0.21379292,0.036061194,0.28563875,-0.3399769,-0.3541112,-0.5184892,-0.20868333,-0.011216257,-0.29277015,-0.5169048,0.005208388,-0.14684002,-0.74902177,0.71514624,0.121838786,0.110478304,0.05785893,0.27541462,0.2137193,-0.03523071,-0.07475013,0.052787423,-0.124326736,-0.6704259,-0.21340616,-0.68791467,-0.48177752,0.095496476,0.6908787,-0.311925,0.030417072,-0.07632774,-0.17808904,-0.0530078,0.12554976,0.30139673,0.32592896,0.41039467,-0.1641668,-0.6921091,0.53934044,-0.1700836,-0.38162994,-0.38426876,-0.0036210418,0.7203045,-0.8263714,0.48621583,0.49022362,0.068005376,-0.003406922,-0.47697327,-0.36375895,-0.045160502,-0.24865909,0.37892547,0.051867966,-0.84984374,0.46877563,0.34298298,-0.27757773,-0.667064,0.4548819,-0.021223545,-0.17748976,0.022209292,0.28357714,0.15855694,-0.013877871,-0.13174392,0.06983196,-0.4182702,0.30481884,0.17295541,-0.012611563,0.4971099,-0.14267452,-0.31984994,-0.66142243,-0.16807596,-0.67596,-0.094610035,0.32542372,-0.019615792,-0.019632677,0.16563268,-0.10119909,0.3351616,-0.30271566,0.18241484,0.026030088,-0.25478512,0.2324229,0.43627658,0.25733662,-0.38973668,0.73604035,0.23461443,-0.08339163,-0.018225178,0.09726442,0.2699376,0.09769017,0.5372447,-0.35758233,-0.10266629,0.27964836,1.0894079,0.29203883,0.43507972,0.17588408,0.038707547,0.5266209,0.06879577,0.12956369,0.23238029,-0.42905176,-0.139804,-0.17791043,0.13746105,0.5283254,0.31967643,0.39697716,0.025953509,-0.27185234,-0.0058107018,0.31903827,-0.077856965,-1.1856962,0.35740343,0.31728396,0.6803016,0.49117267,0.04790337,0.008780201,0.663169,-0.2208957,0.21166198,0.19391131,0.021247467,-0.5272693,0.7684831,-0.5670435,0.3084299,-0.33979973,-0.040761426,0.098167844,0.034718603,0.3035891,0.7948704,-0.14326236,0.18033187,0.015640728,-0.18790881,0.033141017,-0.42576376,-0.12317719,-0.3372198,-0.35382333,0.6951292,0.39336443,0.40420866,-0.28007737,-0.041288,0.04360981,0.016288942,0.089767136,-0.12213531,0.0045162016,0.07471763,-0.52614975,-0.19944976,0.76691085,0.13291441,0.35178533,-0.13553171,-0.4527975,0.38586998,-0.047291707,-0.0033198919,-0.119124986,-0.52436787,0.14531915,-0.30949196,-0.6692529,0.32916394,-0.38828444,0.14746793,0.29738793,-0.06705133,0.023301216,0.33540773,0.036736965,0.77143383,-0.036334515,-0.19035982,-0.35390234,-0.022672072,0.26310107,-0.38434055,-0.049000755,-0.4907733,0.042888362,-0.5269702,0.5199409,-0.07004052,-0.25841454,0.2610891,-0.14043075,-0.03246074,0.5659292,-0.07654535,-0.16456068,0.30618027,-0.14652917,-0.42266366,-0.14387493,-0.21132486,0.2148609,0.33801448,0.07540239,0.022012621,-0.22855641,-0.11695925,0.29569277,0.11215525,0.5303814,0.18715252,0.06372299,-0.12776357,0.03521842,0.1644625,0.4132792,0.14296828,0.0002279083,-0.15874869,-0.5277247,-0.21129625,0.038888067,-0.0233874,0.26788023,0.15524948,-0.26574287,0.90513444,0.01374355,0.91796136,0.016300598,-0.34140942,0.17007864,0.39517894,0.011813889,-0.034558415,-0.34341606,0.874556,0.44007602,-0.044337224,-0.032744076,-0.48741683,-0.07218547,0.20395203,-0.32331058,-0.030786723,0.021048082,-0.59386045,-0.3728585,0.1653718,0.15566961,0.1509212,-0.17085071,0.025163615,0.0030732204,0.007828859,0.26691437,-0.7493511,-0.3101534,0.23091984,0.30352667,-0.0871509,-0.08021644,-0.3650584,0.43290588,-0.7274132,0.16541618,-0.6439535,0.124194324,-0.27351668,-0.32352647,0.09431975,-0.121583015,0.4064195,-0.28093898,-0.32000777,-0.08091848,0.44099775,0.06833761,0.29337236,0.6627212,-0.13224079,0.06627173,0.2002924,0.58321327,1.1322511,-0.48121667,-0.059060205,0.32487696,-0.42052785,-0.4860392,0.22365527,-0.3701272,0.06020869,0.08198213,-0.44605446,-0.39847925,0.24329704,0.20411943,0.16181383,0.03989956,-0.68077415,-0.3230346,0.2988452,-0.40652764,-0.36998582,-0.29729816,0.33341703,0.612088,-0.2642828,-0.23445801,-0.05134496,0.28561938,-0.34852841,-0.61631477,-0.16033716,-0.030201294,0.3547094,0.15691768,-0.09498095,-0.1385581,0.2731896,-0.5281722,0.073377684,0.09432449,-0.37738034,0.12892729,-0.20154166,-0.1896764,1.0341829,-0.26996484,-0.4013448,-0.63109297,-0.58616525,-0.80011576,-0.4687417,0.41499245,0.17099689,0.2429623,-0.21112959,0.074626155,0.07747839,-0.08325362,0.037638206,-0.40627623,0.4081227,0.08938094,0.6046122,-0.2101816,-0.95271295,0.16747934,0.16323724,-0.07515746,-0.65143317,0.5592614,-0.121346004,0.85670614,0.08179678,-0.11952243,0.088162415,-0.403386,0.12885372,-0.3788617,-0.06885708,-0.9902737,0.20472746 -868,0.37732226,-0.15449992,-0.3321305,-0.12448481,-0.1068647,0.103229545,-0.024104571,0.5734209,0.14895503,-0.504751,0.029562326,-0.22316223,0.06264444,0.2815103,-0.06630949,-0.49586895,-0.03624008,0.13485615,-0.48474944,0.509993,-0.488303,0.33381498,0.02828118,0.26575282,0.26397333,0.20860928,0.12561846,-0.13995737,-0.246934,-0.0615976,-0.31526738,0.32061195,-0.47995523,0.16564946,-0.057320442,-0.3106404,-0.06401326,-0.55463207,-0.20790361,-0.65660894,0.30789524,-0.6124359,0.43126264,0.036058195,-0.21689697,0.3374955,0.008631373,0.1590491,-0.3113985,-0.09712601,0.18547535,-0.019055089,0.007077658,-0.10737061,-0.17975232,-0.20403562,-0.5902064,0.12735534,-0.29641125,-0.25505072,-0.28225276,0.047529187,-0.2977031,-0.10760081,-0.15250021,0.50546914,-0.3698246,-0.017686915,0.046982713,-0.07665453,0.05970394,-0.49101022,-0.23035182,-0.07774822,0.20991282,-0.24899103,-0.2005843,0.26257768,0.367488,0.50136936,-0.10547017,-0.12153492,-0.3801693,-0.019443242,0.061498545,0.57669884,-0.12536792,-0.6716853,-0.042709947,-0.0024716535,-0.15508097,0.16465467,0.2743009,-0.23258692,-0.16387297,0.065997854,-0.3007611,0.38938776,0.3794625,-0.48236087,-0.3808761,0.38271073,0.43503234,0.12371781,-0.0591717,-0.14568385,-0.022130368,-0.59538114,-0.1420618,0.101151034,-0.18712394,0.45609373,-0.16002989,0.27097625,0.5962435,-0.14531264,0.05006246,0.027253648,-0.05671579,-0.039916683,-0.36872247,-0.15703563,0.18112141,-0.33457738,0.17761129,-0.12183056,0.7725229,0.19668274,-0.722856,0.51763624,-0.49570695,0.15177727,-0.04151574,0.38227132,0.6957261,0.2920016,0.3065429,0.5523375,-0.43865815,-0.037275426,-0.063161,-0.31507406,-0.051872294,-0.044121996,0.022272553,-0.49512693,0.11086254,0.0438121,-0.024640007,0.14999872,0.29750916,-0.40610445,-0.08405883,0.1724961,0.7604783,-0.27607772,-0.22087076,0.7238228,0.87696284,1.0552889,0.035396837,1.0358241,0.18220784,-0.280075,0.39712203,-0.35903245,-0.64577705,0.19746122,0.40541232,0.10746796,0.113906674,0.03787331,-0.007315016,0.34259796,-0.1995655,0.058934078,-0.08401272,0.14253949,0.1470339,-0.09652397,-0.43416703,-0.49942937,-0.18795976,-0.027748276,0.066569015,0.30244446,-0.24850784,0.3369802,-0.047321703,2.0108435,0.004782454,0.09658645,0.08804653,0.4886375,0.22004355,-0.2307642,-0.18079755,0.27923006,0.24733518,-0.0026493957,-0.5388474,0.11563837,-0.23422667,-0.6074949,0.059155066,-0.37960613,-0.13330847,-0.023784108,-0.47941926,-0.0990794,-0.13391142,-0.3672354,0.5209648,-3.0469725,-0.14285825,0.0254169,0.18832384,-0.2983506,-0.48194,-0.15092808,-0.46055374,0.36307934,0.3057798,0.50102425,-0.61356246,0.18381637,0.23107924,-0.46290758,-0.2145281,-0.6270303,-0.13832341,-0.0138402935,0.275464,-0.09969415,-0.04228876,0.028575102,0.048999313,0.5137946,-0.018847188,0.08528846,0.19954552,0.3277324,0.17655952,0.45740747,-0.13187356,0.56867826,-0.22454758,-0.14483605,0.2789821,-0.39407656,0.3249419,-0.007354625,0.15148465,0.37823913,-0.49299622,-0.82512933,-0.5381921,-0.24176502,1.0435655,-0.14694303,-0.15561105,0.34815323,-0.2818466,-0.1522225,-0.17855145,0.5018718,-0.020776387,-0.29724774,-0.691515,0.13644613,0.0039060514,0.13033745,-0.055430364,-0.018257419,-0.38906538,0.5696105,0.0408858,0.5586758,0.27145472,0.18890648,-0.27302417,-0.23972934,-0.022429649,0.89561284,0.29077587,0.16201001,-0.2240062,-0.19103931,-0.41800302,-0.122660674,0.11357477,0.34109706,0.6290143,0.03143013,0.10582427,0.29319677,0.08798542,0.109793626,-0.11482821,-0.059562135,-0.07281915,0.009488362,0.5792958,0.421143,-0.2327467,0.47094733,-0.08050545,0.14467312,-0.31043273,-0.3296139,0.46626326,0.9580134,-0.054501165,-0.18334967,0.45817477,0.36917952,-0.18692374,0.35201707,-0.37233528,-0.1630438,0.5898736,-0.30083752,-0.25182876,0.1809339,-0.28933793,-0.057614047,-0.87915325,0.16792342,-0.17413248,-0.34859288,-0.4630476,-0.09182421,-3.374348,0.0680168,-0.13958764,-0.20089422,0.012409095,-0.13236684,-0.00012604991,-0.6112135,-0.45213282,0.13864268,0.04016675,0.6849725,-0.09653075,0.15171617,-0.18622822,-0.29367062,-0.34277,0.07959486,-0.1319844,0.47657683,0.038202595,-0.28728145,0.012230714,-0.23907389,-0.45641506,0.13283819,-0.5897522,-0.43727365,-0.099334195,-0.48358935,-0.36101112,0.7086967,-0.31113398,0.10048011,-0.053070687,-0.10477562,-0.15360378,0.33666545,0.19927782,0.189509,-0.0070155244,-0.09914363,0.050860144,-0.27234378,0.23303024,0.107166134,0.3446263,0.44807443,-0.09934259,0.22795108,0.45160285,0.71777445,-0.08931392,0.7678224,0.4867874,-0.030379724,0.37558338,-0.37184814,-0.10335181,-0.43061748,-0.29787335,-0.011620279,-0.3389204,-0.5291501,-0.14136918,-0.25009623,-0.6577136,0.38583887,0.0118062375,0.20421417,0.020873448,0.2190079,0.43014425,-0.24270166,0.037847422,-0.052696787,0.056482118,-0.442426,-0.33683893,-0.62445694,-0.47335765,0.29621795,0.83744526,-0.077627465,-0.06908617,-0.044560794,-0.18016014,-0.08276778,-0.01369695,0.030243825,0.27784172,0.19956136,-0.1719771,-0.59465843,0.5936117,-0.026907882,-0.1689635,-0.3400817,0.1297323,0.4219897,-0.5082214,0.59161884,0.17396468,0.0755105,-0.05096256,-0.44431794,-0.28795394,0.038661227,-0.16553144,0.23844472,0.16859058,-0.7901437,0.4682471,0.3784352,-0.20529903,-0.718371,0.41178292,0.0944132,-0.2125519,-0.1153676,0.27081713,0.19753313,0.026249062,-0.20008124,0.23332341,-0.6832984,0.17849459,0.29525745,0.09650986,0.24046403,-0.19456895,-0.07652096,-0.6375628,0.06529151,-0.3783372,-0.30603835,0.17789094,0.1821412,0.28423527,0.19172274,0.035239324,0.29231352,-0.2806568,0.13943498,0.03979416,-0.096698694,0.19864586,0.351535,0.48424965,-0.42728817,0.4743385,-0.016687235,0.05729603,0.04212234,-0.00019108455,0.38966453,0.18199606,0.20605898,-0.14689513,-0.40854728,0.29260164,0.73108286,0.21127126,0.25402597,-0.012278446,-0.14279968,0.22579846,0.031662673,0.16049775,0.13654651,-0.48498264,-0.046191134,-0.12027777,0.19193846,0.50572544,0.08688512,0.13866095,-0.09099913,-0.25967363,0.036514767,0.24996522,-0.087379836,-0.8704876,0.4010163,0.16142997,0.91102046,0.57276285,0.0011014044,0.036067046,0.49157518,-0.29432717,0.29636902,0.29423878,-0.22948837,-0.65950596,0.61886954,-0.52221984,0.56273854,-0.05739812,-0.07101289,-0.049577367,-0.16747539,0.39340517,0.6344353,-0.12704642,0.072098844,0.13089237,-0.2661235,0.18952103,-0.45087665,0.056456827,-0.49048957,-0.124090545,0.61185324,0.38716874,0.21689698,-0.17883086,0.058578346,0.12773082,-0.13654235,-0.010144048,0.066813104,0.1398001,0.051290978,-0.6801096,-0.19303949,0.59215057,-0.1964058,0.20697512,0.039081734,-0.27025563,0.23843017,-0.17079595,-0.14133777,-0.07293726,-0.64001614,0.07139484,-0.25747365,-0.37236974,0.4126487,0.0018298845,0.2501608,0.17877603,0.13654871,-0.20698068,0.3682023,0.2855503,0.65783936,-0.12960312,-0.058919672,-0.47250333,0.23050953,0.058240555,-0.15541181,-0.22411104,-0.16881299,-0.07814606,-0.5343491,0.46850902,0.1333854,-0.20685154,0.020299705,0.020672591,0.10316456,0.58440423,-0.05597693,-0.012274522,-0.29386365,-0.14660718,-0.23254791,-0.03213717,0.0079404395,0.3836684,0.21779624,-0.03567543,-0.06064946,-0.08827477,-0.13391079,0.3427868,-0.018152798,0.294932,0.1911071,0.05963367,-0.30277395,-0.19738065,0.1525836,0.3795424,0.06582654,-0.11393515,-0.26871625,-0.15079759,-0.3645789,0.1354625,-0.16055562,0.42685625,0.08090841,-0.31671053,0.5576723,-0.058478158,1.059921,0.093358286,-0.31622875,0.11815127,0.37994167,-0.011331473,-0.05013098,-0.36134478,0.8946127,0.34294617,0.061760657,-0.17287332,-0.20418897,-0.03624557,0.21468982,-0.20541245,-0.18130998,0.062505,-0.61874694,-0.19332081,0.15183932,0.14729208,0.28867435,-0.11618611,0.007255578,0.26469213,0.061806742,0.31420344,-0.3166406,-0.17906652,0.2771078,0.38533637,0.012873038,0.098658696,-0.46657792,0.37537596,-0.5715866,0.14324252,-0.17813797,0.2110311,-0.24759445,-0.17140833,0.25407347,0.11844928,0.38201895,-0.14134435,-0.49028358,-0.24603394,0.44735253,-0.02167649,0.20455636,0.47806272,-0.23186168,0.027827501,0.08747374,0.46175542,0.95583737,-0.07759803,-0.11252569,0.38853613,-0.25962844,-0.6184899,0.42741734,-0.13275392,0.21809216,-0.03102016,-0.002035904,-0.50620174,0.12285399,0.31643003,0.12629543,0.06084319,-0.5273685,-0.34343317,0.23324195,-0.30988413,-0.2996798,-0.3593721,0.095792435,0.7402247,-0.32890823,-0.30546954,0.11768512,0.12150005,-0.19616313,-0.6774628,0.0914011,-0.43129092,0.33044365,0.057678156,-0.30296388,-0.121933214,0.011505851,-0.33363527,0.22969453,0.048464265,-0.3762643,0.026379049,-0.3352757,-0.11057509,1.0903447,-0.05863334,0.27844945,-0.41281828,-0.53117585,-0.81715703,-0.509176,0.5895261,-0.07499387,0.034758568,-0.5547825,-0.031320095,0.041366525,-0.20502757,-0.06106888,-0.39699116,0.49156523,0.10416451,0.14163052,-0.12756577,-0.65862066,0.05148317,0.1128246,-0.17524809,-0.46410248,0.38052395,0.02150519,0.84287965,0.018835751,-0.049142443,0.3866495,-0.32497707,-0.09600336,-0.30658305,-0.122237,-0.5179888,0.16789061 -869,0.4461004,-0.2574291,-0.4045904,-0.19726287,-0.1482038,-0.018312575,-0.08092617,0.55465454,0.34309906,-0.49957213,-0.2004142,-0.16932389,-0.043672122,0.27765706,-0.11359695,-0.63101894,0.012385146,0.19098407,-0.35547718,0.678898,-0.521562,0.2013267,0.05488266,0.43756735,0.24700148,0.00831306,0.25961626,-0.21103191,0.036769923,-0.10662318,-0.16021316,0.31641862,-0.45840576,0.1934421,-0.091453806,-0.40268803,-0.018618595,-0.4762134,-0.25410953,-0.8229285,0.27002195,-0.70983845,0.42631868,0.2984353,-0.38820022,0.1703368,-0.05312324,0.2705956,-0.37670282,0.05963724,0.079365596,0.012092517,-0.08414782,-0.121157795,-0.040110305,-0.16707389,-0.59935534,0.073745005,-0.36859682,-0.001958102,-0.21088299,0.14333938,-0.39940923,-0.16198233,-0.12545994,0.6255919,-0.45494795,0.0040648533,0.2562537,-0.2026659,0.3725348,-0.567615,-0.2974481,-0.13594566,0.15226294,-0.12169988,-0.35608035,0.22007425,0.3003037,0.5382628,0.0415579,-0.20703167,-0.37113005,0.0035696488,0.04655298,0.3369827,-0.12027018,-0.54166293,-0.15025987,-0.031132616,0.15178691,0.13181926,0.14726296,-0.33226946,-0.13499993,-0.03414893,-0.25484127,0.42009237,0.50860363,-0.293381,-0.18118261,0.2711539,0.48466232,0.109480515,-0.005018991,0.13017803,0.10050607,-0.6758518,-0.16625397,0.19954889,-0.31772706,0.53780705,-0.25180146,0.20948285,0.64462036,-0.105341874,-0.066799715,0.15224144,0.12270292,-0.13384034,-0.3795245,-0.31619167,0.37065905,-0.30793798,0.069124624,-0.2751882,0.91812664,0.03234049,-0.8190776,0.22983855,-0.5641608,0.1679609,-0.15858896,0.6660372,0.7102145,0.30777803,0.537459,0.7879005,-0.4409064,-0.012211511,-0.021617703,-0.316145,-0.019013882,-0.080160625,-0.12839581,-0.5047443,-0.0038087459,0.05802075,-0.10618797,0.07954792,0.4452191,-0.592383,-0.09230609,0.21785036,0.65834385,-0.24887463,-0.09199858,0.730983,0.99595493,1.1651995,0.1458228,1.0871838,0.27864486,-0.16868131,0.20210226,-0.31344464,-0.7546345,0.35147002,0.35954902,0.088344015,0.32841492,0.030355917,-0.0419263,0.32305494,-0.48093656,0.039899513,-0.22323605,0.17254885,-0.0010806414,-0.053217813,-0.5006713,-0.37670434,-0.16018894,0.042782333,0.039345603,0.14707094,-0.1829981,0.28788635,-0.013028173,1.5777013,-0.14105026,0.060270593,0.12865996,0.4520489,0.19174439,-0.12388183,-0.10429324,0.31667092,0.40151867,-0.014551639,-0.68419874,0.13824509,-0.14031288,-0.4499194,-0.09704773,-0.27728814,-0.0019022708,-0.13154101,-0.40388834,-0.14406496,-0.12957391,-0.5694816,0.4134372,-2.7179537,-0.19664747,-0.11815631,0.25334975,-0.24195123,-0.1832013,-0.20736033,-0.48714715,0.35944125,0.45827976,0.5105016,-0.8420556,0.36867934,0.4990738,-0.5782943,-0.109405234,-0.74809456,-0.123064265,-0.15551907,0.24432404,0.060604475,0.031347428,-0.042345222,0.1991559,0.49802348,0.11627349,0.14482114,0.2831972,0.3287094,0.01889282,0.5044705,0.051336758,0.38347656,-0.27460024,-0.19506662,0.35054496,-0.46408388,0.1909895,-0.048792936,-0.004015635,0.44388866,-0.52509284,-0.8917312,-0.6805204,-0.3029316,1.2596309,-0.24004793,-0.36615637,0.22391623,-0.18165174,-0.04579155,-0.12841564,0.52022016,-0.17145747,-0.17596349,-0.8833813,0.028564215,-0.023617927,0.33762395,-0.02864544,-0.113652535,-0.44089684,0.6978699,-0.023729287,0.5104118,0.41168663,0.15067254,-0.3098477,-0.49753782,0.0697351,0.9397681,0.31838208,0.18277518,-0.3451781,-0.1720069,-0.31110826,0.16813459,0.12295778,0.48534778,0.7633126,-0.20988637,0.1350672,0.41617492,0.075820915,0.01730423,-0.104824185,-0.22517855,-0.19888268,0.061604068,0.6398702,0.7212554,-0.21294767,0.2399203,-0.08085064,0.22349215,-0.102908686,-0.3447558,0.57135355,0.8550679,-0.019949757,-0.27393645,0.6120632,0.5686002,-0.28147233,0.45331654,-0.58909196,-0.23542263,0.35873172,-0.10048224,-0.33282757,0.10518852,-0.3962355,0.17453958,-0.9181344,0.29500082,-0.20586188,-0.30634454,-0.6281272,-0.04784619,-3.2449086,0.27291825,-0.27332097,-0.16780542,-0.1225346,-0.06735012,0.13864684,-0.53898853,-0.64645666,0.09593563,0.17131704,0.627334,-0.0132764,0.08840923,-0.28661203,-0.2091578,-0.35354137,0.12016162,-0.012460417,0.3252907,0.24343982,-0.45157015,-0.0021874583,-0.19294903,-0.31456864,0.05451472,-0.503944,-0.48403412,-0.147552,-0.68389666,-0.3749663,0.5682959,-0.21565741,0.028863417,-0.17606544,0.006667238,-0.03133691,0.33848858,0.058083877,0.072197825,-0.053814594,-0.095674396,-0.19502313,-0.17785603,0.19381998,-0.022419872,0.15767981,0.32862446,-0.21618043,0.21920255,0.550408,0.59562564,-0.2173989,0.72569597,0.5654009,-0.10131307,0.14853726,-0.10978257,-0.1255421,-0.519423,-0.29333517,-0.10385533,-0.41400832,-0.3994786,0.088762686,-0.26602483,-0.8523073,0.5152196,-0.111776285,0.19447596,0.083561644,0.16779849,0.54949313,-0.07033278,0.048549093,-0.08819025,-0.15508175,-0.41146368,-0.33000505,-0.74454755,-0.26922166,0.21606809,1.0610465,-0.3246523,0.1609323,0.1298658,-0.11424741,-0.10395626,0.18407306,-0.017283656,0.24986269,0.45240676,0.08341401,-0.50537795,0.4017289,0.050316457,-0.15930812,-0.4461951,0.17827593,0.5981771,-0.6029378,0.586313,0.31547314,0.030460583,0.027920635,-0.5670546,-0.3076356,-0.060631793,-0.1424327,0.47047326,0.24001628,-0.6654711,0.41055897,0.34731975,-0.1931784,-0.80652976,0.3810674,-0.08395186,-0.40728348,-0.100715324,0.31226116,-0.022536488,0.12599938,-0.15547019,0.20319249,-0.40188012,0.18165673,0.11359581,-0.16414419,0.31662443,-0.15674774,-0.0268776,-0.7533747,-0.0144344885,-0.63047653,-0.30822167,0.20471825,0.1315491,0.008037943,0.16221197,0.02459019,0.37532505,-0.12167554,0.047382135,-0.027852656,-0.15731582,0.35391173,0.5800657,0.41190207,-0.38221133,0.60333276,0.07346533,0.021123635,-0.31319046,0.03070852,0.32180336,-0.028234271,0.45677254,-0.11195008,-0.24459127,0.45472303,0.6767473,0.13414234,0.4901467,0.010813566,-0.039670065,0.3826935,0.07320137,0.25086015,-0.20588373,-0.44320723,0.02628426,-0.28639483,0.13698044,0.41930866,0.17311686,0.27342463,0.010916567,-0.30053857,0.070682034,0.27161887,-0.09227285,-1.1575143,0.2952727,0.18028277,0.7259298,0.7396912,-0.09992835,0.06787939,0.6297899,-0.26834655,0.09801919,0.32026064,0.009674168,-0.4784172,0.6688968,-0.60320497,0.38578635,-0.1832709,0.0016731918,-0.07592355,-0.06647844,0.401604,0.53634536,-0.13468918,0.020550195,-0.13498332,-0.30128792,0.07091131,-0.50362784,0.12534866,-0.6083101,-0.21314965,0.674078,0.6096331,0.3477292,-0.2061798,0.010949933,0.056037374,-0.10407495,0.10945309,-0.023182154,-0.09094512,-0.045827873,-0.78998435,-0.015229505,0.5319154,-0.026846446,0.16127242,-0.030185465,-0.2513439,0.10949172,-0.09053664,-0.12728937,-0.10734543,-0.6836834,-0.15325275,-0.2950535,-0.22161163,0.45704836,-0.3459922,0.25497767,0.21971366,0.11289569,-0.2979452,0.12493537,0.09022922,0.6996121,0.08823094,-0.1288895,-0.38282198,0.19558048,0.1364268,-0.12723994,-0.23417057,-0.24652314,-0.01555186,-0.4930968,0.4453454,0.17293288,-0.2425267,0.08880382,-0.07753154,-0.06309194,0.6356065,-0.14605829,-0.100020155,-0.11372277,-0.27632958,-0.23776732,-0.14584033,-0.1781906,0.36805552,0.16418847,-0.10983903,-0.05933288,-0.022136245,-0.101207644,0.51159847,0.10556621,0.30155614,0.29744422,0.09921355,-0.512302,-0.017665194,0.15219904,0.5833314,0.124373905,-0.17674352,-0.22320928,-0.27069065,-0.31769565,0.08946085,-0.20549652,0.36376226,0.05070362,-0.2544522,0.87308943,0.26109183,1.2252814,0.0065909633,-0.37505662,-0.06696398,0.47427735,0.052318435,-0.0054697786,-0.30160502,0.94997305,0.49044374,-0.19583075,-0.15650107,-0.39029577,-0.08947027,0.14882642,-0.19441845,-0.14708734,0.015346921,-0.6729606,-0.33581156,0.22673622,0.23732448,0.17867254,-0.12805822,0.014079497,0.18170562,-0.046261292,0.39046186,-0.2996705,-0.021027248,0.14749655,0.23175356,0.18055342,0.050400797,-0.43107656,0.34323943,-0.59926564,0.098825805,-0.23923436,0.16651358,-0.2764785,-0.26763424,0.29354084,0.087071076,0.35429347,-0.36223274,-0.32374543,-0.27548912,0.5909218,0.14487287,0.122851536,0.6708581,-0.27188018,0.15257543,0.08285473,0.47268465,1.1479132,-0.20672959,-0.14456911,0.35359028,-0.34689835,-0.672967,0.2839241,-0.3844325,0.109252185,-0.10932917,-0.36888486,-0.67807204,0.29041815,0.16795756,0.07837363,0.28198746,-0.6720848,-0.20040314,0.3829923,-0.30218267,-0.15591073,-0.32826048,0.06780377,0.5564964,-0.19138162,-0.4981815,0.07268643,0.16738357,-0.18751346,-0.6818567,-0.051197145,-0.42160618,0.301726,0.054735914,-0.33104375,-0.12887147,0.10434754,-0.43235797,0.0036857473,0.35945213,-0.2843826,0.136183,-0.36089438,-0.0702966,1.0031434,-0.16066067,0.2498009,-0.5284487,-0.37396383,-0.90628743,-0.18268728,0.8011819,-0.0035050923,-0.037440635,-0.6384675,0.0070277224,-0.02459822,-0.23518816,-0.115139775,-0.3415158,0.50415057,0.16248947,0.29291147,0.04253556,-0.72697884,0.1999952,0.06850476,-0.22041321,-0.59325594,0.46021098,0.054592464,0.94905853,0.06212791,0.042641215,0.23927683,-0.538054,0.102845795,-0.22177154,-0.24430513,-0.61285,-0.021179523 -870,0.3612019,-0.3794754,-0.49244398,-0.23780611,-0.38185838,0.2932698,-0.19617644,0.204926,0.21012588,-0.33365917,-0.11840384,-0.10143815,-0.097650595,0.2519011,-0.16669479,-0.6974842,-0.0073494315,0.13124256,-0.6519798,0.37783384,-0.62222517,0.31471935,0.08482721,0.30763358,0.02648755,0.39774007,0.108518705,-0.08809121,-0.25067723,0.09895039,-0.061648242,0.3630113,-0.7058405,0.2567466,-0.14254338,-0.25758678,-0.08990537,-0.4375884,-0.2790089,-0.7286488,0.25206983,-0.8763594,0.64157027,-0.19859764,-0.41154665,0.15753298,-0.042377293,0.13722639,-0.4053636,0.17311195,0.11617478,-0.28963515,-0.1140617,-0.16467169,-0.28019089,-0.44964993,-0.5614072,0.085313715,-0.69390565,-0.13969776,-0.28475598,0.27305165,-0.3116068,-0.033867225,-0.19447695,0.4303236,-0.49739826,0.13622363,0.1547307,-0.27199697,-0.072382405,-0.49885464,-0.112537794,-0.13525292,0.18072285,0.0067910594,-0.42941815,0.15307905,0.34533247,0.6520481,0.13963166,-0.2851534,-0.17198128,0.019405905,0.1794359,0.4411234,-0.06686536,-0.18503284,-0.40316167,-0.11510129,0.44870603,0.07930143,0.07377424,-0.44232872,0.033061292,0.1418026,-0.17057416,0.34689146,0.5904737,-0.46475682,-0.23741649,0.42176056,0.40661043,0.05948829,-0.1256896,0.15580983,-0.096821025,-0.5615421,-0.23330039,0.1836765,-0.09450171,0.6578804,-0.2393788,0.11908182,0.7993828,-0.26509267,0.04728296,-0.019525561,-0.09731437,-0.03388693,-0.25493482,0.06509214,0.05368433,-0.45526168,-0.16387396,-0.21322997,0.6396026,0.2042906,-0.6933425,0.4308252,-0.32980585,0.17691714,-0.07661389,0.7156531,0.8456679,0.5529001,0.22100379,0.7624762,-0.4258372,0.14975777,-0.11491369,-0.40012646,0.2709547,-0.26204062,-0.007115436,-0.43829352,0.09564037,0.040448487,-0.07383386,-0.09878132,0.41875374,-0.52801144,-0.03478328,-0.051063314,0.5882568,-0.46038678,-0.2289376,0.982537,0.8786898,0.89456266,0.13354515,1.5375848,0.55764693,0.047247674,0.05827781,-0.349865,-0.55047303,0.14046016,0.31767684,-0.010572227,0.4327907,0.18011954,0.06564278,0.5343723,-0.36861342,-0.06931522,-0.13650389,0.39212334,0.038111653,-0.01745144,-0.33488634,-0.16159157,0.27639225,0.11325482,0.02684116,0.22951078,-0.28722066,0.441479,0.10459292,1.3097876,0.0044035157,-0.042587463,-0.04952372,0.3806015,0.23057862,-0.09764312,-0.025762456,0.37936977,0.31983224,-0.13493237,-0.5844866,-0.052753367,-0.17870817,-0.37334946,-0.20783901,-0.4373928,-0.09728932,-0.30745548,-0.4750012,-0.19208437,0.09677842,-0.34463766,0.53369105,-2.3397174,-0.32174933,-0.11724392,0.4275456,-0.19251664,-0.40697297,-0.2492876,-0.4723306,0.12717363,0.40572277,0.3089634,-0.7095758,0.45521635,0.36433056,-0.28618437,-0.18485017,-0.7496712,0.09914236,-0.1112651,0.50232285,-0.023152268,-0.21021077,-0.14100905,0.025562637,0.71474046,0.026203323,0.043961048,0.25103524,0.5313181,-0.048213903,0.4298018,0.16014789,0.60622126,-0.14103927,-0.22730403,0.48952726,-0.35729307,0.34532508,-0.013321028,0.17534736,0.4311809,-0.48709646,-0.8068478,-0.6412132,-0.18593706,1.3144208,-0.44948426,-0.50803894,0.14168268,-0.2592277,-0.23535937,0.08331296,0.37034076,-0.112821564,0.036243808,-0.706369,-0.035384815,-0.008542311,0.22179273,-0.1284663,0.26822558,-0.27143613,0.6696491,-0.2580529,0.4371067,0.2720116,0.2497368,0.0006229401,-0.5219857,0.10965785,1.0041093,0.4669313,0.07484484,-0.113097,-0.27536574,-0.09217679,-0.20096307,0.047826912,0.5838397,0.6908315,0.05316413,0.08737807,0.48761642,-0.14393303,0.010325523,-0.23294483,-0.26106295,-0.12224846,0.23973401,0.5649859,0.59960705,-0.22187993,0.43887225,-0.19034186,0.23951057,-0.0038198412,-0.6430787,0.5246662,0.79024345,-0.2710274,-0.13902552,0.5042885,0.35093102,-0.47897014,0.45786476,-0.56966454,-0.27921954,0.6266413,-0.16405174,-0.40893167,0.14767967,-0.33727124,0.098919824,-0.91624427,0.4683601,0.13794515,-0.5467948,-0.47566277,-0.24052317,-3.7031791,0.050581302,-0.16316275,-0.017350078,-0.115461215,-0.23173693,0.33917183,-0.48870823,-0.5005133,0.029516084,-0.004944662,0.4684121,-0.177275,0.090345345,-0.34137586,-0.1930811,-0.24666883,0.19670771,0.13751379,0.2695932,-0.050009314,-0.36804062,0.14121482,-0.4257487,-0.46021497,0.018528657,-0.6286095,-0.57486165,-0.053235266,-0.43505254,-0.25199553,0.69308007,-0.3881754,-0.034897838,-0.40625226,0.082602195,-0.21348858,0.47783464,0.10413191,0.108411506,0.18982433,0.008031368,0.015317949,-0.28866196,0.26470527,0.06506743,0.309146,0.5381903,-0.19003925,0.17545849,0.6326247,0.49944422,-0.103972316,0.82774514,0.26107877,-0.17445685,0.36622837,-0.22290757,-0.31249905,-0.76408845,-0.43912098,-0.12819055,-0.5417202,-0.41355613,-0.03987938,-0.4163727,-0.99248415,0.52443117,0.026410531,0.23674959,-0.13874832,0.5334911,0.53361714,-0.06428554,0.1205971,-0.15360655,-0.33157313,-0.5317781,-0.5285009,-0.6788577,-0.60585856,0.26533833,1.1657618,-0.12044347,-0.122370295,0.05954395,-0.2679883,0.004872036,0.025608802,0.13224736,0.120013334,0.43847695,-0.15021636,-0.81165856,0.25055018,-0.19897659,-0.05155853,-0.65697396,0.097493514,0.8241308,-0.71425843,0.63989806,0.39581004,0.2883527,0.2174143,-0.4509646,-0.29872516,0.010716279,-0.20126596,0.622226,0.2271431,-0.73558587,0.5902535,0.16079617,-0.1390496,-0.7205916,0.4230592,-0.018653555,0.033235263,0.06969704,0.41639563,0.11937353,-0.13443114,-0.13193905,0.12015821,-0.60808676,0.35656324,0.41800037,0.00499415,0.49090534,-0.07788303,-0.37720743,-0.74240327,-0.24426524,-0.5335833,-0.29716232,-0.0044457037,0.0645661,0.17172074,0.0876288,0.07432509,0.5707162,-0.30226675,0.08056893,-0.009891268,-0.23793712,0.39362237,0.6679032,0.3081853,-0.44089714,0.5735357,0.13169344,0.118055,-0.049726546,-0.032046963,0.45339915,0.26075587,0.3251921,0.070683055,-0.060055036,0.15580289,0.75559956,0.26133192,0.5013904,0.12896381,-0.3758803,0.4255605,0.23419565,0.25677806,-0.18896598,-0.25206974,0.07615705,0.019973235,0.27423713,0.37087432,0.2707995,0.347091,-0.069243096,-0.10052952,0.13419007,-0.0021312158,0.03817359,-1.1495037,0.074465275,0.30830634,0.6244047,0.4045275,-0.07299106,0.060022224,0.43244895,-0.3661154,0.06643618,0.40530345,-0.0017443498,-0.38505313,0.44406313,-0.5947744,0.5139302,-0.2683608,0.094434425,0.13278441,0.38634837,0.32125956,1.0015963,-0.07442712,0.007107506,-0.0515107,-0.16735314,0.18282191,-0.41534302,0.08096797,-0.47143373,-0.29427388,0.72792435,0.40532506,0.37558678,-0.33446413,-0.09194859,0.0043834904,-0.24892071,0.25772035,-0.12499378,-0.021537812,-0.22287728,-0.56809837,-0.40154666,0.4466693,-0.06480965,-0.03440772,0.107112154,-0.39667082,0.29297304,-0.2649807,-0.13978292,-0.043818224,-0.63251466,-0.18224014,-0.24758355,-0.70788616,0.31583348,-0.17321688,0.13827366,0.23430684,-0.03476264,-0.42938992,0.1393011,0.024019908,0.793209,0.16823177,-0.23716916,-0.31567627,0.07475091,0.46451092,-0.39941806,-0.047859598,-0.29139945,0.23489143,-0.43825704,0.43593505,-0.2533181,-0.34061283,0.022176782,-0.07005746,-0.04217837,0.4178297,-0.21653035,-0.21463647,0.18119873,-0.0017633438,-0.3517452,-0.039223652,-0.40515786,0.23316672,0.0355335,-0.06294889,0.0054436405,-0.25104058,-0.079574265,0.4240199,0.1134919,0.12276159,0.37912673,-0.11064114,-0.44338125,-0.12212517,0.05022413,0.5373523,0.1077059,-0.11434433,-0.30970442,-0.4076619,-0.33532685,0.38919133,-0.13802633,0.16821764,0.1437458,-0.48823798,0.8667739,0.21797766,1.3215357,0.06366827,-0.37534952,0.12940067,0.57315814,0.094245195,0.12514938,-0.3986541,0.89608234,0.6204722,-0.1822811,-0.13389844,-0.52982014,-0.27583537,0.29168335,-0.30099133,-0.20876391,-0.2524828,-0.84453315,-0.2946308,0.184646,0.10141299,0.097190715,0.07122096,0.051491704,0.09308157,0.09821494,0.43430054,-0.53104717,-0.11737699,0.36571977,0.24826019,-0.042390432,0.23291384,-0.3174499,0.46460012,-0.6569523,0.15622562,-0.35955673,0.112845235,0.0027732134,-0.24982496,0.29578787,0.1292957,0.32471687,-0.37698373,-0.41765416,-0.36765185,0.7062417,0.023070227,0.25063145,0.7027285,-0.2798294,-0.16272245,0.054515436,0.5330996,1.4083598,0.0772551,0.23331784,0.38641292,-0.34679887,-0.62277377,0.22972336,-0.35562402,0.1322594,0.0030284086,-0.37087566,-0.4546273,0.34796107,0.15652488,0.014658654,0.13177072,-0.6428427,-0.2091836,0.34009182,-0.23612596,-0.15277033,-0.20297363,0.2741905,0.74601537,-0.541328,-0.19993828,0.0035762151,0.44612128,-0.3377482,-0.55491865,-0.08517415,-0.32722777,0.4398815,0.16905056,-0.40848133,-0.010690415,0.20262617,-0.43278953,0.012992438,0.43903923,-0.2707873,0.11567987,-0.091167815,-0.071531154,0.9175331,0.11891675,0.19446942,-0.6472777,-0.5340815,-1.0162246,-0.27057108,0.1368098,0.19301417,-0.0997413,-0.66266185,-0.08444094,-0.14555046,-0.17548452,0.14432281,-0.7942862,0.51188993,0.11446615,0.5608269,-0.022638949,-0.91020447,-0.059924714,0.19589217,-0.17246488,-0.54999185,0.67992646,-0.1623113,0.7235034,0.115970105,0.08563945,0.014147094,-0.6090732,0.20091139,-0.40080777,-0.1282662,-0.6879057,0.08289606 -871,0.38643676,-0.27282193,-0.576538,0.011148861,-0.23685251,-0.071556084,-0.2044688,0.36800736,0.2641115,-0.47068092,-0.14873503,-0.03886286,-0.005298209,0.32796243,-0.042923715,-0.47163847,-0.064024225,0.28877357,-0.48655,0.7778186,-0.29014695,0.08413558,-0.16541219,0.49118713,0.061050005,0.3096608,0.0571728,-0.043051325,-0.06800563,-0.07214535,0.17680416,0.26814002,-0.8037523,0.23774782,-0.06546961,-0.3241437,0.06404417,-0.37103578,-0.32797,-0.75328964,0.08583534,-0.7099875,0.5762595,0.1342178,-0.307614,0.16786382,-0.15804133,0.36732265,-0.3112269,-0.043479256,0.16462828,0.011088382,-0.12433147,-0.14619146,-0.085868195,-0.21250364,-0.5258075,-0.040332492,-0.3393521,0.0483654,-0.28122965,0.01046407,-0.34850687,-0.24013267,-0.10408772,0.6366996,-0.43630534,-0.012568325,0.25444075,-0.0033725272,0.41676214,-0.53234696,-0.03676198,-0.28649816,0.14231963,-0.2033022,-0.3125831,0.17673884,0.21651186,0.41942376,-0.07478692,-0.12893832,-0.2853011,0.0555828,0.3871222,0.35636234,-0.112877525,-0.34410244,-0.101673566,-0.010709522,-0.07167042,0.120866016,0.21562117,-0.41211334,-0.10632867,0.00427402,-0.02223611,0.33107564,0.46836612,-0.1370472,-0.13826789,0.22045414,0.7002822,0.2681432,-0.16720179,-0.040678732,0.08008854,-0.4898632,-0.24041308,0.08379751,-0.21920887,0.59762585,-0.18784444,0.19715089,0.5675277,-0.15501095,-0.23440757,0.11923942,0.0120100975,-0.010322809,-0.3426062,-0.36970058,0.4147693,-0.47274715,0.3802099,-0.040829126,0.47858793,0.2929087,-0.6986122,0.2693426,-0.5930339,0.16109425,-0.11005073,0.545618,0.723538,0.35215744,0.4217024,0.78954124,-0.5176803,0.1061935,0.02745819,-0.34058857,0.11397072,-0.15742084,-0.15101402,-0.53889877,-0.11461584,-0.08295286,-0.31192276,0.011475036,0.03014238,-0.49041998,-0.06798646,0.23020035,0.7165317,-0.21561721,-0.06215282,0.6219091,1.0869292,1.0391897,0.22319911,1.2669251,0.14110655,-0.17684203,0.1833506,-0.12570614,-0.8295011,0.2543146,0.38492393,-0.1246965,0.33694395,0.146874,0.04034676,0.6123961,-0.5679823,0.10976812,-0.17417742,0.33993164,-0.021429475,-0.26863283,-0.4753534,-0.15436706,-0.21371351,0.073484235,-0.21262869,0.20935914,-0.07460983,0.23628967,0.10400491,1.5333924,-0.16055888,0.06603742,0.115060166,0.4117886,0.23322494,-0.32011482,-0.23650695,0.31711662,0.4292928,0.22691661,-0.46210515,0.12653813,-0.13639596,-0.36091724,-0.105712295,-0.22374581,0.060619377,-0.031002581,-0.2960193,-0.18184185,0.017097564,-0.296149,0.51692873,-2.7169337,0.039892357,-0.07529789,0.35318258,-0.24776667,-0.28950804,-0.07893301,-0.32554516,0.40152076,0.34184998,0.47577918,-0.6722516,0.3167608,0.48765263,-0.66976917,-0.015981985,-0.6781752,-0.25537407,-0.062687986,0.34080264,0.14579202,0.13245176,0.03772766,0.25747854,0.43135265,0.03673716,0.10710362,0.21341212,0.16145737,-0.031039778,0.45982155,0.10619182,0.40211377,-0.2130314,-0.17352964,0.24857286,-0.22151569,0.31738552,-0.09417237,0.07618358,0.47205025,-0.35569125,-0.88834244,-0.73292947,-0.22065577,1.1104901,-0.14484128,-0.31213093,0.28266767,-0.5552783,-0.27390492,-0.042489387,0.3749285,-0.044518284,0.010188373,-0.94781363,0.06458388,-0.052221637,0.2742046,0.06482469,-0.11351147,-0.5937761,0.6017582,0.006788641,0.40407303,0.64088434,0.1578945,0.07434508,-0.40297222,-0.059743505,0.9317805,0.38497427,0.09257217,-0.34305206,-0.1411368,-0.3249081,0.17880018,0.05438171,0.43416235,0.69297975,-0.26831394,0.12237021,0.23209716,0.019988898,0.04564619,-0.12185109,-0.31891567,-0.033243172,-0.045252893,0.51013154,0.826903,-0.13595065,0.3584902,-0.052039407,0.15529118,-0.09575044,-0.4554863,0.6600123,0.9172927,-0.12903307,-0.19682892,0.62376046,0.49401143,-0.371965,0.5261172,-0.44347417,0.007871408,0.34278825,0.036141172,-0.32148784,0.08678666,-0.38743693,0.35198233,-0.91020465,0.3728798,-0.4251035,-0.5585907,-0.5016321,-0.11325802,-3.252972,0.32887334,-0.28849655,-0.18509248,-0.14077918,-0.05515343,0.36478618,-0.65470636,-0.66859555,0.2764748,-0.048509035,0.599336,-0.19104345,-0.117608026,-0.12921637,-0.4333744,-0.30265525,0.18995704,0.24776694,0.2610578,-0.015026226,-0.59636354,-0.2605034,-0.16464113,-0.4290209,-0.036224265,-0.58606666,-0.29665348,-0.19188404,-0.5876284,-0.26796934,0.6360798,-0.08882075,-0.052297253,-0.2567108,-0.00011730882,-0.09473275,0.28740317,-0.04031241,0.24509001,-0.012663671,0.0061975466,-0.12822428,-0.15519184,0.0021177302,0.05031275,0.12691617,0.2042525,-0.12367822,0.2721345,0.567824,0.8237943,-0.2496222,0.9697556,0.7786281,-0.20366882,0.2129897,-0.26286405,-0.25877017,-0.61894864,-0.40534478,-0.16704601,-0.40998718,-0.53971857,0.15267242,-0.2889064,-0.7801284,0.76284784,0.02563912,0.21342681,0.19042364,-0.028769385,0.46415168,-0.33638403,-0.101252094,-0.042166874,-0.1895446,-0.6422885,-0.20848638,-0.57341677,-0.40044215,0.1236394,1.0827061,-0.40321332,0.098859005,0.13740103,-0.32046416,0.18354271,0.26368183,-0.10562979,0.09889562,0.45524156,0.23481542,-0.5635833,0.3296564,0.040436737,-0.12683335,-0.6420908,0.27949265,0.76275563,-0.6331468,0.7338005,0.24817356,-0.110228054,-0.10990524,-0.5896425,-0.32732788,-0.03332236,-0.23590319,0.45457026,0.3248668,-0.81493056,0.18983921,0.39807114,-0.2706862,-0.67292523,0.6442317,-0.13318445,-0.19373606,-0.0940458,0.3371486,-0.16801713,0.060780928,-0.29589367,0.32653892,-0.28534296,0.0897598,0.36936876,-0.1572884,-0.022845205,-0.15557718,-0.031067688,-0.81762946,0.0662232,-0.5126282,-0.2086017,0.43656936,0.09164233,-0.058371656,0.083652884,0.40577012,0.28834504,-0.32295433,0.16183461,-0.17272152,-0.4159061,0.4423359,0.5987335,0.31614187,-0.2864586,0.6100529,0.006597434,-0.19185,-0.26864845,0.023978243,0.3819819,-0.061611913,0.38837445,-0.051481918,-0.12475158,0.0031200922,0.7245362,0.0012747967,0.5493826,-0.03253472,0.01809888,0.20211378,0.16714689,0.37362942,-0.0017484243,-0.45315212,0.266748,-0.21389452,0.16922775,0.2715717,0.15654701,0.2021119,-0.056555774,-0.39312384,-0.038242437,0.18396832,0.25371727,-1.423671,0.5446385,0.16347234,0.7340101,0.69270813,0.15079287,-0.051319104,0.6340528,-0.06912758,0.17348267,0.4582814,-0.14392287,-0.49707377,0.4208365,-0.7365828,0.34379512,0.069278315,0.027090427,0.058602657,-0.204642,0.43381497,0.8343949,-0.19898693,0.021154316,-0.14458156,-0.16195314,0.06281178,-0.37272522,0.10447923,-0.55407405,-0.45491442,0.65489125,0.64105946,0.50507724,-0.2776987,0.028338332,0.17792228,-0.089558125,0.2885532,0.073294386,0.09098614,0.20819491,-0.5880397,-0.11142925,0.47414458,-0.30199975,-0.0015872625,-0.14978136,-0.20141004,0.264297,-0.1764063,-0.042283025,-0.010670872,-0.78126615,-0.0955269,-0.432356,-0.30350512,0.6081878,-0.17186883,0.18681486,0.044658713,0.04896683,-0.21112162,0.5490978,-0.12018846,0.5916208,0.009832584,-0.0038489287,-0.22216323,0.29619166,0.17176726,-0.12697464,-0.0030061924,-0.2947219,0.106891945,-0.48143432,0.36048162,0.164317,-0.41482565,0.02534031,-0.17474915,-0.020794097,0.5791563,-0.119436875,-0.3566615,-0.053753827,-0.30158827,-0.19751358,-0.41309193,-0.07755875,0.38993958,0.15440185,0.042361088,-0.022475008,-0.0021575002,-0.016390113,0.26441202,0.20728216,0.30006218,0.2743302,-0.07872427,-0.45927054,-0.17580615,0.15186185,0.4309591,0.049414244,-0.22586186,-0.16424039,-0.4398679,-0.4879314,-0.087393954,-0.11126844,0.4847678,0.06073361,-0.13298097,0.7325678,0.28653625,1.1986117,-0.11004294,-0.39774,0.033536337,0.5031407,-0.028066112,-0.09946552,-0.35268694,0.8718293,0.48324144,-0.27636942,-0.112613216,-0.4132621,-0.16152675,0.102438085,-0.13181037,-0.012173369,0.0145496195,-0.6740874,-0.091021545,0.27935898,0.31342375,0.20060775,-0.16637413,0.12331946,0.19425748,-0.06505399,0.17709115,-0.37046117,-0.06057425,0.3723535,0.23954126,0.07611801,0.047247376,-0.3530532,0.270759,-0.4339456,0.056707166,-0.14525384,0.15173908,-0.2484394,-0.37931442,0.18178703,-0.047797665,0.41718096,-0.47699028,-0.24552606,-0.35807163,0.5322753,0.28264517,0.10253679,0.66817343,-0.24872929,0.025372963,0.03182241,0.38694313,0.80249333,-0.37338415,-0.054117974,0.4230059,-0.3104504,-0.5655072,0.17043771,-0.31388754,0.2642319,-0.1200348,-0.27932087,-0.73158073,0.1038338,0.07650717,0.0024978747,0.13060643,-0.73493415,-0.22049235,0.20442155,-0.24630645,-0.1081226,-0.24966274,0.050163325,0.5964161,-0.3042367,-0.52966845,0.056414723,-0.032285057,-0.11389963,-0.35487345,-0.15605897,-0.24283153,0.20994337,0.14229962,-0.497639,-0.109315544,0.092839554,-0.5184077,-0.022750936,-0.033731528,-0.28701302,0.10944777,-0.35580984,-0.11180456,0.9974805,-0.3341988,0.2294057,-0.25117022,-0.4826358,-0.84791535,-0.27194956,0.5280645,0.040429857,0.049465537,-0.5183448,0.18495652,-0.058038525,0.09382549,-0.014046685,-0.37314722,0.4253741,0.11097563,0.286972,0.01813161,-0.87051845,0.21106526,0.19576846,-0.042051055,-0.5520513,0.5216167,0.029344132,0.84999347,0.06483504,0.18659592,0.030220866,-0.5033744,-0.05406517,-0.1484206,-0.116167866,-0.5574931,-0.054141197 -872,0.5680411,-0.19688314,-0.41512102,-0.066310905,-0.49773362,0.16393623,-0.19031854,0.46010488,0.11544874,-0.4761122,0.039388377,-0.13505717,-0.15292683,0.34939173,-0.16376439,-0.48678476,-0.14998601,0.22589396,-0.5313652,0.6089529,-0.32581264,0.34912592,0.12103322,0.3140534,-0.06422081,0.102420315,0.15727152,0.0076728244,0.07606388,-0.2068576,0.059790563,0.28772718,-0.86129916,0.413524,-0.12449778,-0.48603502,0.052444085,-0.2834709,-0.30991086,-0.5870945,0.18849787,-0.7595752,0.5487263,0.07594151,-0.4240001,0.20280066,-0.06436578,0.22824964,-0.1317885,0.112694494,0.29199058,-0.0018737555,0.014403498,-0.3635168,-0.10394732,-0.3704037,-0.41993085,-0.08190677,-0.5580529,-0.10812133,-0.24288477,0.2718279,-0.17811184,0.06486772,-0.3363575,0.0065888762,-0.53647506,-0.12766708,0.11668787,-0.01355772,0.33900833,-0.52024025,-0.084430836,-0.20038176,0.02260511,-0.17389409,-0.17955644,0.40786943,0.16700153,0.6706957,-0.10777933,-0.08356847,-0.18435195,0.024966065,0.16215111,0.5338221,-0.37987173,-0.063485265,-0.21146835,-0.009627084,0.32856527,0.070068456,0.2145913,-0.3806778,0.011282965,-0.23898531,-0.13670436,0.24858217,0.41355646,-0.35724714,-0.21197675,0.3407089,0.43908718,0.20047079,0.021682035,0.13567641,-0.05735837,-0.4067019,-0.18545303,0.06493382,-0.27540204,0.18691579,-0.0030661125,0.040064834,0.5787484,-0.08427949,0.18668184,0.06518114,0.0039853095,-0.11622012,-0.19468516,-0.40003374,0.34211075,-0.6100576,0.030794632,-0.15886977,0.6369562,-0.011235169,-0.67441446,0.22129984,-0.63158786,0.14172226,-0.15171137,0.5410971,0.6725498,0.49099594,-0.06942879,0.7740886,-0.5458095,0.07720291,-0.21037786,-0.06761102,0.3358222,-0.19534524,-0.06627132,-0.53551686,0.019847551,-0.058505006,-0.087615155,-0.013416698,0.45543292,-0.5863407,-0.149054,0.12620397,0.67248195,-0.36385208,0.08267657,0.53638905,1.2605488,0.98190373,0.12314167,1.1415963,0.43662232,-0.27750918,0.07030772,-0.068501085,-0.7713857,0.17756104,0.6185226,0.23000176,0.34167126,0.18475416,0.13015474,0.28216502,-0.5069859,-0.032656822,-0.26738957,0.27568057,-0.23248409,-0.23708752,-0.31792322,-0.18246746,-0.023715062,0.10745175,-0.27338836,0.29739633,-0.3034172,0.16740383,0.24877796,1.5154127,-0.12181493,0.02959993,0.19542034,0.2516588,0.24217527,-0.10528013,0.03498514,0.22680052,0.24213137,0.040417958,-0.40316072,0.14749005,-0.18511565,-0.6005216,-0.1491622,-0.089359194,-0.065832935,-0.11151751,-0.39009234,-0.31783003,0.094222754,-0.20708999,0.43489882,-2.1600602,-0.031380393,-0.11890054,0.36367163,-0.22352889,-0.2680465,-0.15586837,-0.16111882,0.4278766,0.47037715,0.3388935,-0.50334793,0.25317305,0.4503238,-0.41775197,0.029523535,-0.4888608,-0.19619678,0.0073732287,0.37129375,0.13404298,-0.16413823,0.060296293,0.21999055,0.38898516,-0.10473878,0.14400618,0.2809887,0.33369058,-0.11100796,0.3868317,0.1582912,0.34179497,-0.23592286,-0.32202616,0.54077494,-0.2519459,0.2949703,0.19860874,0.1211554,0.37917534,-0.5439407,-0.79315454,-0.737481,-0.35997263,1.1702014,-0.2850946,-0.46680102,0.21888217,-0.029728157,-0.29223326,0.02995737,0.3063044,-0.09453591,0.023647865,-0.9284942,-0.060099375,-0.17211995,0.44564793,0.093358494,-0.11204632,-0.46024925,0.7847068,-0.12437517,0.47234187,0.4324613,0.23332907,-0.033796422,-0.39775386,0.044910487,0.96281177,0.5770891,0.1400313,-0.2518295,-0.096978165,-0.07331805,0.110622235,0.13852948,0.35453606,0.70594394,-0.16596557,0.102970004,0.24225296,-0.035085298,-0.09736948,-0.19213514,-0.39301142,0.08441803,0.20234753,0.53615874,0.7675634,0.029678106,0.2286095,-0.2696523,0.37306085,-0.029251782,-0.623351,0.28493086,0.9170113,-0.055987738,-0.20826659,0.7596409,0.50500786,-0.26195818,0.61774695,-0.7710296,-0.46322414,0.19412568,-0.122854635,-0.3593216,0.21283212,-0.3277235,0.14469312,-0.8800701,0.53350157,-0.30298325,-0.31358275,-0.5522832,-0.23395291,-1.8796829,0.17704575,-0.11987273,-0.0677527,-0.029084992,-0.12483342,0.4866915,-0.57386947,-0.6216012,-0.0323112,0.09512458,0.39281404,0.05829878,0.08030366,-0.09790948,-0.4290307,-0.15952845,0.3500837,0.20765132,0.21872291,-0.07937377,-0.43850031,-0.19537713,-0.13298532,-0.13824868,-0.0683533,-0.6770202,-0.5499952,-0.23690867,-0.31046903,-0.0100399135,0.5311629,-0.24881154,-0.08659135,-0.23577046,-0.13497172,-0.07129042,0.20666978,0.1849278,0.1899952,-0.018025469,-0.093825705,-0.30469158,-0.41783687,0.16549852,0.26387534,0.13862447,0.45078027,-0.36844304,0.03013765,0.5987881,0.5184024,-0.29242194,0.7362215,0.52875763,-0.35797495,0.25623938,-0.15059671,-0.31486833,-0.68310285,-0.37752718,-0.22793409,-0.37842697,-0.3133547,0.10307108,-0.3458637,-0.6884594,0.66102093,-0.13408206,0.10289162,0.13340326,0.168682,0.35281327,-0.15884785,-0.22952054,-0.24280144,-0.20211914,-0.49586505,-0.50712794,-0.65601027,-0.42160282,0.11649551,1.3881528,-0.1690165,0.18084703,0.3340175,-0.07726245,0.09312126,-0.017264394,-0.032554496,0.031126218,0.49702698,0.15308465,-0.65677124,0.38936803,0.129575,-0.038907092,-0.5166342,0.19638488,0.5405532,-0.6785067,0.2964768,0.2018465,0.22468756,0.14611222,-0.7170103,-0.096593544,0.053780403,-0.28980047,0.41931456,0.23185153,-0.7313459,0.40672508,0.43171388,-0.43356067,-0.6581811,0.37251434,-0.02002013,-0.16617484,-0.027449373,0.21010621,-0.014426947,0.05704047,-0.0072805206,0.41271183,-0.47231016,0.42869598,0.24423742,-0.1156242,-0.040903017,-0.3076309,-0.29654709,-0.70748174,0.36886698,-0.29912513,-0.48016423,0.19464898,-0.08021784,-0.2787995,0.3237933,0.4034167,0.4939747,-0.27493572,0.115865715,-0.13952175,-0.31556764,0.5655081,0.44909233,0.5591492,-0.27620333,0.4580372,0.024953267,-0.08913699,-0.3752623,-0.02731278,0.4998174,-0.07216326,0.0812559,-0.11203248,-0.027317159,0.34991413,0.9319933,0.09029231,0.13072957,-0.15387456,-0.1922863,0.19686618,0.16350287,0.07394292,-0.22364657,-0.530015,0.21183547,0.08574549,0.13051568,0.5042151,0.14588708,0.19177668,-0.21060398,-0.23619793,0.12795761,0.25025237,0.08393821,-1.3529953,0.13368313,0.034732666,0.56229395,0.68082964,-0.016545385,0.11261659,0.59341234,-0.2353305,-0.013777216,0.31166044,-0.17365967,-0.38673264,0.36402422,-0.65976244,0.14337324,-0.025627578,0.14426604,0.10485992,0.06753692,0.342666,0.8199456,-0.11816623,0.1418181,-0.096274935,-0.2783249,-0.094200835,-0.16422853,0.10007751,-0.2982351,-0.51580733,0.6639974,0.40695208,0.4469203,-0.31240806,0.058405634,0.07022057,-0.33212775,0.42303428,0.050320227,-0.030622933,-0.10667532,-0.28490517,-0.057650175,0.56845206,-0.077550456,-0.14609824,-0.026858052,-0.2660289,0.24286526,-0.05833737,-0.06654722,0.03550096,-0.67379695,-0.04067099,-0.58953726,-0.003925604,0.24586357,0.031031083,-0.066557534,0.109595194,-0.015204533,-0.17385677,0.29635122,0.06001755,0.7393478,0.1420234,-0.24519081,-0.13214894,0.30146477,0.06002393,-0.1776201,0.07237884,-0.084357776,0.15316424,-0.92026335,0.34943777,-0.09581215,-0.33128828,0.33000755,-0.14757603,0.051127788,0.275981,-0.072168924,-0.3280524,-0.022642668,0.07917192,-0.2642864,-0.27997574,-0.27211106,0.15060812,-0.015975079,-0.063390575,-0.111697085,-0.15849486,-0.08700765,0.37120253,0.09472397,0.3415217,0.3042606,0.036311913,-0.6340377,0.28228986,0.2188111,0.32604036,-0.09110559,0.19017534,-0.1546093,-0.49229005,-0.34183377,0.18349305,-0.3416972,0.3299128,0.0032244197,-0.33079422,1.0069797,0.18384887,1.0956672,-0.08214942,-0.17609318,-0.012480755,0.48837966,-0.16872144,-0.07479371,-0.3850858,0.90811324,0.85499996,0.02529356,-0.12604076,-0.20907094,-0.32429692,0.06879817,-0.23982498,0.017627554,-0.008147617,-0.91810477,-0.31326997,0.065455906,0.3796955,-0.027176203,-0.09944666,0.12123701,0.16264275,0.0573586,0.19867441,-0.4768886,-0.22714853,0.15229374,0.26705283,-0.092168175,0.029357016,-0.52218366,0.34497464,-0.6975244,0.12902507,-0.327445,-0.0054258504,-0.04311331,-0.2639261,0.003195871,-0.09260075,0.20798354,-0.36354002,-0.3767878,-0.005093187,0.59701216,-0.045297764,0.23239236,0.7351988,-0.31549045,0.29343128,-0.07832333,0.27332714,1.0831767,-0.27504748,-0.12362609,0.26639682,-0.3743571,-0.50583655,0.25766888,-0.18415897,-0.007139985,-0.12311951,-0.49167413,-0.33445802,0.28832075,0.07479049,-0.08989021,-0.07303046,-0.5526548,0.09875013,0.30114526,-0.2869778,-0.3146407,-0.20907858,0.23975655,0.6097273,-0.24423131,-0.5189925,0.3130263,0.28595543,-0.4384913,-0.57511765,-0.1130795,-0.4443508,0.19825183,0.15077731,-0.47004816,0.141745,0.17552185,-0.44596064,-0.10659612,0.4011687,-0.26053426,-0.064927794,-0.33602434,0.1826023,0.88452977,-0.12070358,-0.16523646,-0.6165832,-0.58025753,-0.9736678,-0.385236,0.4584602,0.3954583,0.06721805,-0.56485844,-0.056945514,-0.22518247,-0.0076714554,0.13217247,-0.28734502,0.41159683,0.23764655,0.45983836,-0.30521202,-0.7752045,0.15322612,0.10268914,0.021486538,-0.46812385,0.408604,-0.016251108,0.7913013,0.07356674,-0.16585997,0.12542258,-0.78055024,0.16129698,-0.15401635,-0.13322026,-0.7239151,0.13517125 -873,0.59981364,-0.27212232,-0.48513746,0.010088347,-0.2122765,0.118010215,-0.095658146,0.62918764,0.5015588,-0.4369904,-0.4018906,-0.20032363,0.06839024,0.41861776,-0.21400249,-0.69639665,-0.02364474,0.22963186,-0.36167744,0.66576654,-0.22298466,0.40317276,0.3335795,0.32359865,0.110580206,0.13291562,0.27766493,-0.07995002,-0.12987907,-0.26809886,-0.18878074,0.22395955,-0.4848231,0.20078592,-0.37186098,-0.5258371,-0.09433749,-0.73001593,-0.42503777,-0.7331117,0.14083947,-0.9007483,0.6664336,0.13421537,-0.25718188,-0.012789969,-0.13604681,0.26085284,-0.25303027,0.13186178,0.07822227,-0.09873491,-0.04436977,-0.43831074,-0.24388148,-0.33614397,-0.63379115,-0.059574455,-0.36062637,0.12970905,-0.0016855797,0.041773364,-0.34663233,0.09382885,-0.08050611,0.2634529,-0.35488203,0.09910058,0.34669888,-0.2865136,-0.010315508,-0.6048203,-0.21256971,-0.14368282,0.15365522,-0.24495412,-0.39798734,0.3097476,0.2127657,0.56315666,0.041666348,-0.16526559,-0.2204476,0.08917153,0.07595394,0.51070946,-0.3876495,-0.5733429,-0.19097966,0.21143179,0.570705,0.18644387,0.14448418,-0.35451674,-0.038813096,-0.25479704,-0.20315476,0.33881998,0.5742538,-0.36591578,-0.09305241,0.30081883,0.33634248,0.23818974,0.09444117,-0.056498636,0.04018638,-0.6584841,-0.12895124,0.02962567,-0.30883107,0.5370448,-0.12983352,0.16389008,0.5024321,-0.06433903,-0.017089123,0.18156135,0.11064663,-0.22323905,-0.13375562,-0.35180536,0.41912827,-0.46215108,-0.0004894783,-0.24438144,0.6975427,0.25743186,-0.57763183,0.1687675,-0.50484395,0.22122061,0.04273392,0.383777,0.67482406,0.5724789,0.19009681,0.73071903,-0.49508438,0.039616566,-0.11038514,-0.28396386,0.18342078,-0.25282708,-0.13536797,-0.48887467,-0.09561604,0.005411605,-0.23456228,0.6022253,0.3924869,-0.57297313,-0.28026244,0.101199485,0.5669727,-0.26449662,-0.036771204,0.8826165,1.0684844,0.820951,-0.022603827,1.2199042,0.26786172,-0.21083605,-0.084178805,-0.18566424,-0.6131661,0.21566339,0.43886992,-1.1142868,0.5808161,-0.04110944,-0.07644873,0.3358388,-0.3984569,-0.20432164,-0.058143377,-0.16916431,-0.05084823,-0.2679999,-0.499724,-0.2510849,-0.25439048,0.24630082,0.17019413,0.36705044,-0.20996772,0.48566088,0.123248,1.2173009,-0.066476285,0.021413485,0.07923105,0.15920623,0.39629292,-0.12706487,-0.0016216437,0.12744884,0.3526961,0.07033954,-0.491464,-0.09479353,-0.16150872,-0.34651613,-0.07044873,-0.03451016,-0.11499978,0.12886043,-0.35142717,-0.2411583,-0.052911848,-0.1542118,0.4809319,-2.2234838,-0.20600045,0.006103487,0.52661264,-0.14453983,-0.43323827,-0.282537,-0.45637402,0.35244521,0.30453265,0.6028046,-0.75977796,0.12259308,0.42194155,-0.80082995,-0.26139733,-0.5652098,0.17012091,0.01195385,0.21193878,0.06683793,-0.08326142,0.3801168,0.04263257,0.51886815,-0.05254041,0.061777096,0.35053518,0.46104518,-0.09326714,0.3162031,-0.030062286,0.6001759,-0.4910599,-0.28882357,0.27363217,-0.41930532,0.38029662,-0.04531777,0.08239167,0.49644843,-0.49431446,-0.8838287,-0.5311111,-0.035238832,0.9812066,-0.14040278,-0.32203996,-0.054383595,-0.12960716,-0.42042688,0.025963895,0.7440751,-0.21142854,-0.09006443,-0.83982927,-0.2262938,0.061792564,0.21381833,0.051193375,-0.14423192,-0.41732123,0.67287844,0.041112993,0.50841695,0.5967038,0.20870608,-0.23711388,-0.6322395,0.17621505,1.0611402,0.5422718,0.32428688,-0.24541958,0.08883812,-0.22097701,0.19817372,0.09014552,0.5871544,0.6049361,-0.31793955,0.013418411,0.2719659,0.45655325,0.1131321,-0.0639812,-0.2681645,-0.2251035,0.0045886138,0.5748377,0.94218755,-0.26000747,0.11769054,-0.13036406,0.50157845,-0.16695644,-0.64881873,0.73939914,1.0717771,-0.08661467,-0.26608258,0.7679871,0.4800141,-0.02996637,0.4995028,-0.56696486,-0.4210581,0.13475086,-0.25382605,-0.43071344,0.47268304,-0.19205968,0.2629136,-0.90378183,0.48693243,-0.10863459,-0.32682118,-0.5540918,0.08323851,-2.5166488,0.25388134,-0.35021576,-0.17691995,-0.19207168,-0.14398648,0.01910767,-0.72285515,-0.60563374,0.3210318,0.14796285,0.6617361,-0.06315759,0.24817763,-0.086614765,-0.494802,-0.0066426047,0.19219457,0.24824816,0.34923574,0.084967546,-0.45734665,-0.16082601,-0.0057358146,-0.34983885,0.19256608,-0.8653372,-0.29942545,-0.1843298,-0.5830862,-0.123367906,0.55532783,-0.38487217,0.11581006,-0.03892793,0.1821507,-0.0817266,0.17498608,-0.043769073,0.06686744,-0.06907505,0.0638009,0.21691191,-0.12005957,0.394884,0.20040973,0.29237804,0.33901432,-0.3075967,0.08453041,0.49270663,0.8220565,-0.1511304,0.847311,0.56630343,-0.08793058,0.1434197,-0.020149747,-0.3910202,-0.55622005,-0.3816793,-0.10102048,-0.5122666,-0.27113286,-0.03292578,-0.42403194,-0.8729922,0.61836016,0.005237917,0.032001723,0.10593858,0.3007067,0.6778455,-0.46060014,-0.05211984,-0.05648518,-0.21388465,-0.37466773,-0.16487685,-0.6262236,-0.38498116,0.17285495,1.1897702,-0.18956922,0.28177652,0.22501855,0.015482266,-0.0175509,-0.029441252,-0.01750336,0.026766717,0.4810265,0.0024650942,-0.6277684,0.36084077,-0.015008976,-0.35086226,-0.6011624,0.36269692,0.6453994,-0.8355456,0.5023008,0.40789977,-0.009062198,-0.11040974,-0.43872055,-0.26087594,-0.0057718554,-0.24195202,0.35575482,0.30378643,-0.5568958,0.24706991,0.34197518,-0.5390736,-0.59742403,0.53040993,0.084035166,-0.47555736,-0.056440443,0.3230596,0.08605646,-0.022215137,-0.0065201395,0.09776238,-0.3024894,0.38423502,0.1307524,-0.1581388,0.12744083,-0.09648708,-0.08961936,-1.0680767,0.25547823,-0.5154186,-0.33360314,0.27812082,0.042065356,0.03240519,-0.14669529,0.17139716,0.39168575,-0.3948315,0.1645552,-0.19157982,-0.29114738,0.68833995,0.43199635,0.45322797,-0.15676562,0.5272084,-0.023459239,-0.09635988,-0.10688212,0.052969623,0.42881384,0.024535581,0.18953425,0.0013750097,-0.30278876,0.25454986,0.46103057,0.06754124,0.12044648,0.25576302,0.005842132,0.16252008,0.21009743,0.2343512,-0.12083503,-0.59975433,-0.020659596,-0.21182209,-0.011085455,0.48516288,0.045609366,0.19791062,-0.28687626,-0.48949078,-0.054566097,0.119250454,0.44194603,-1.4262894,0.23672497,-0.066994876,0.60870624,0.4272666,0.10022823,-0.12134663,0.5636994,-0.22327049,0.07688948,0.3520966,-0.14967178,-0.40770626,0.40118775,-0.5307847,0.52007526,0.024661863,0.12782831,0.086037755,0.057929445,0.2922592,1.0134293,-0.03717457,0.025675626,-0.08468572,-0.31679776,-0.13996094,-0.4958466,0.09890018,-0.5932911,-0.4502851,0.8422332,0.3411442,0.5795597,-0.25960633,-0.034718283,0.11743683,-0.21551652,0.2620081,0.11250556,0.22112316,-0.11121777,-0.5972853,0.0012760436,0.573111,-0.017164806,-0.004069239,-0.10793391,-0.18631129,0.31077513,-0.3406748,-0.15891756,-0.17916544,-0.8779278,-0.13969465,-0.6787428,-0.4423686,0.43072096,-0.0017273152,0.21368726,0.1481988,0.037455257,-0.19385356,0.59513116,0.2195761,1.140814,0.10585191,-0.3195335,-0.12116599,0.5040168,0.14811994,-0.18689264,0.08414831,-0.07019633,0.083805,-0.5375213,0.48072597,0.13162737,-0.18829615,0.07934555,-0.029910041,0.14564776,0.32748872,-0.29576942,-0.25028816,0.09346441,-0.042585056,-0.40464416,-0.33165792,-0.31175533,0.16712719,0.46201158,0.106291234,0.050334483,-0.11912011,-0.092927195,0.3770976,0.09866169,0.46081546,0.38386372,0.19338454,-0.51941043,0.04323687,0.15077592,0.48278078,0.018991878,-0.3307154,-0.4650676,-0.6054792,-0.52907544,-0.256215,-0.16066605,0.392248,-0.022951188,-0.06350822,0.79354554,-0.057467267,1.1798669,-0.15468027,-0.3827807,0.013089408,0.4764897,0.0034631987,-0.17167081,-0.19686395,1.3540112,0.6160213,-0.10309198,-0.005572463,-0.26133338,0.020742575,-0.0466851,-0.30882946,-0.21763986,0.06597472,-0.5263312,-0.3994687,0.24667858,0.1977431,0.09405425,-0.17568775,0.34735557,0.36631027,0.0781463,0.10905337,-0.5259303,-0.2803544,0.263574,0.31728038,0.12102023,0.10616497,-0.48944867,0.37542376,-0.49181247,0.03408671,-0.44778368,0.081000276,-0.20600669,-0.26476023,0.1920111,-0.010731657,0.31263015,-0.6664976,-0.31876335,-0.26455644,0.5070825,0.04098934,0.051808715,0.70616984,-0.19190641,-0.18864202,-0.03590138,0.6208887,1.11318,-0.3297883,-0.06562968,0.66949934,-0.4590322,-0.39837447,0.27984315,-0.16448458,0.0009199977,-0.20306869,-0.25485507,-0.7011278,0.1575081,-0.020772114,0.22072929,-0.044846535,-0.6631515,-0.00895311,0.347241,-0.42844358,-0.24699439,-0.48774377,0.46060053,0.48176146,-0.12844951,-0.67866635,0.093351044,0.08599613,-0.21832787,-0.42943475,-0.13334464,-0.33590293,0.09793506,0.24540251,-0.26342502,-0.064060524,-0.03735822,-0.48477292,-0.04758491,-0.10406011,-0.37096024,0.11939638,-0.47974524,-0.1384985,0.97499305,-0.3156073,0.36736527,-0.6705603,-0.52367085,-0.8797485,-0.5650371,0.6192642,0.2430401,0.04793923,-0.9029646,-0.06782713,-0.045878705,-0.18919677,-0.22499879,-0.059194107,0.48738268,0.20803756,0.46223363,-0.2694898,-0.75219697,0.35652867,0.16354853,-0.26970017,-0.546915,0.21461187,0.28440696,0.99001735,0.040409833,-0.026515454,0.62313193,-0.7349526,-0.11370831,-0.15448672,-0.16962051,-0.70568925,0.046620235 -874,0.5193529,-0.17962328,-0.3965249,-0.18880227,-0.30966786,0.02640848,-0.047390465,0.65601766,0.2837017,-0.47314295,-0.21843645,-0.10927932,0.13998489,0.5197814,-0.0069974447,-0.44208997,0.1039061,0.26571113,-0.4867702,0.6281128,-0.46924558,0.16448161,-0.09514863,0.40188932,0.43095937,0.09834416,0.00027686357,0.15893795,-0.17123617,0.048225246,-0.1264739,0.34190795,-0.27086616,0.24055506,-0.2163398,-0.3214176,-0.21131544,-0.502359,-0.26951295,-0.6498841,0.31132102,-0.6370291,0.37227586,-0.11274228,-0.34915283,0.22975956,0.1976473,0.22693941,-0.32874367,-0.19579704,0.07947792,-0.09575714,-0.12532414,-0.05811627,-0.16467205,-0.36070794,-0.70786476,-0.05014009,-0.3898941,0.042776972,-0.28858948,0.13960981,-0.2929661,0.010824417,0.077328645,0.6006076,-0.42901486,0.1697291,0.17409717,-0.038622625,0.005322439,-0.5747321,-0.30064696,-0.19646427,0.21883737,0.018060764,-0.35930827,0.28054458,0.40673324,0.44774985,-0.044509497,-0.11573855,-0.34535983,0.06945065,0.06914034,0.49193054,0.07824225,-0.40009475,-0.1368499,-0.21386386,0.12332932,0.20520978,0.2988744,-0.15313877,-0.14205137,0.024347845,-0.23106606,0.27696827,0.39526787,-0.35391918,-0.3376624,0.4393147,0.44808248,0.28246963,-0.17845072,0.026760248,-0.034768153,-0.5571431,-0.12353051,0.051396422,-0.2991028,0.50387895,-0.2151181,0.20526817,0.59783286,-0.08177618,-0.03787217,0.118791,0.20187671,-0.07496969,-0.36771965,-0.33571735,0.21968283,-0.38192573,0.13113661,-0.1480736,0.76690614,0.15038744,-0.695292,0.26441005,-0.5685922,0.142071,-0.06930179,0.41526034,0.99103016,0.28700966,0.35933194,0.667401,-0.29117817,0.029950961,-0.0069094067,-0.20355843,-0.0010319267,-0.31126812,0.060501285,-0.48300505,0.025574284,0.043494377,-0.04886141,0.20828147,0.6906665,-0.4398176,-0.19408526,0.23735705,0.7011841,-0.27990523,-0.26785922,0.95544857,0.9372263,1.072431,0.10102231,0.9671498,0.1338282,-0.06539095,0.28423095,-0.24351396,-0.75299126,0.2667502,0.24061991,0.08518966,0.09677396,0.17248698,0.057484265,0.43565485,-0.3739381,-0.030062595,0.018735275,0.24622166,0.14722836,-0.1176297,-0.44786564,-0.4304983,-0.1478004,0.012848245,0.08322836,0.25423953,-0.28806168,0.5162043,-0.08858901,1.541303,0.01833306,-0.029238794,0.007379302,0.46233818,0.2296857,-0.38164225,-0.21773735,0.30532256,0.39553586,-0.022195837,-0.6274468,0.25870752,-0.20233901,-0.49856558,-0.1398387,-0.51602566,-0.2184647,-0.007966815,-0.4118983,-0.19706014,-0.013358661,-0.4729775,0.43650243,-2.8626676,-0.17670943,-0.068839915,0.41245696,-0.07329493,-0.38671902,-0.21139695,-0.51535696,0.3484476,0.2586972,0.47613975,-0.61606866,0.19289216,0.25902802,-0.60453415,-0.08131168,-0.66874653,-0.19986336,0.05944633,0.25037065,-0.048326038,0.19097233,0.10932697,0.083475575,0.6449192,0.07021308,0.18189184,0.3293624,0.267405,-0.052458797,0.40414906,-0.14023522,0.5998946,-0.3925438,-0.23645894,0.15220584,-0.45816627,0.2520947,-0.16089192,0.11608045,0.5830742,-0.51513225,-0.9097719,-0.5400539,-0.046687774,1.0750662,-0.23801358,-0.214853,0.34422487,-0.6679195,-0.15880392,-0.087156974,0.58853287,-0.094148435,-0.2850318,-0.6510878,-0.061689913,-0.022594512,0.12659942,-0.15436423,-0.1626147,-0.36556175,0.55180836,0.012508056,0.52844256,0.07222437,0.2416247,-0.4079368,-0.4295521,0.014058909,0.710571,0.27075213,0.109567784,-0.29979092,-0.15839057,-0.4830532,-0.11518902,0.22309522,0.40275216,0.54374546,-0.061338995,0.2633726,0.27537006,0.07180939,0.07825339,-0.0884333,-0.16111015,-0.22337784,0.03555782,0.49208885,0.63227284,-0.18366599,0.5535268,-0.047811057,0.1457734,-0.27851316,-0.5113456,0.5073102,1.0314779,-0.23078415,-0.27146694,0.72787297,0.41562057,-0.23935713,0.44093704,-0.44674602,-0.24709122,0.38292837,0.021578103,-0.22247872,-0.04510615,-0.3402031,0.20654067,-0.8452458,0.27515247,-0.12308257,-0.65526295,-0.5691768,-0.07564402,-2.4007506,0.06700749,-0.1774068,-0.2241421,-0.09633376,-0.28107062,0.14540707,-0.6625501,-0.58224815,0.16205215,0.10137181,0.81194556,-0.09472559,0.008718112,-0.19849475,-0.4067946,-0.26347256,0.13220437,0.0069051045,0.6660531,0.0886731,-0.47056586,0.22504674,-0.19556591,-0.42847568,0.019559333,-0.5462479,-0.40068844,-0.13863327,-0.5309342,-0.24806793,0.6262274,-0.38593602,0.014952366,-0.21366024,0.021863086,0.0108713405,0.23161362,0.07967348,0.08959078,0.099360034,-0.085917644,-0.022230055,-0.123484954,0.1405725,0.019472046,0.18881914,0.4630086,-0.036349542,0.37390164,0.62437767,0.71281826,-0.2505429,0.9261208,0.5837002,-0.03593443,0.22831662,-0.21324016,-0.1334983,-0.37061113,-0.18304382,-0.022026064,-0.48898554,-0.47668096,0.05086572,-0.2614945,-0.930795,0.44251353,0.014125243,0.2836854,-0.006516001,0.07750527,0.46784395,-0.17820075,-0.034085162,-0.16722608,-0.13581824,-0.6237432,-0.37571263,-0.6104426,-0.4941521,0.1182534,1.1273639,-0.3227608,0.1026022,0.05075541,-0.4196349,-0.09899149,0.17205046,-0.076085545,0.13732424,0.2319933,-0.19177534,-0.54814637,0.40538588,-0.11975847,0.02130783,-0.5115372,0.2754957,0.3992273,-0.5289959,0.45372456,0.20503238,0.004368452,-0.36184642,-0.6305479,-0.1868533,-0.09702628,-0.15299883,0.37670064,0.30847988,-0.8209496,0.41575027,0.3011865,-0.1579796,-0.786754,0.5311962,-0.11198234,-0.07665871,-0.15504916,0.29668516,0.24073033,0.0703457,-0.23925444,0.23646608,-0.6006724,0.2751477,0.2832052,0.009003247,0.21403544,-0.40473005,0.032563835,-0.6809363,-0.067649834,-0.59345293,-0.20474036,0.21140157,0.20007013,0.24704061,0.25948456,0.18477938,0.23980124,-0.27678972,0.06936436,-0.116804846,-0.23042575,0.21731676,0.49061647,0.5660263,-0.31828216,0.57589877,0.10824107,-0.16801323,0.1323895,0.005197712,0.26945996,0.0939657,0.46130952,-0.028934862,-0.28160638,0.09887556,0.78713787,0.17921515,0.31620765,0.005146418,-0.28764796,0.1977867,0.0872281,0.3130724,-0.04136363,-0.44627413,0.031714942,-0.4341829,0.13901098,0.50017166,0.083068624,0.19812274,-0.022550983,-0.30945295,0.023533517,0.083111964,0.0121959,-1.4057205,0.38985476,0.2008716,0.83579594,0.4870886,-0.12586276,-0.092492394,0.6445876,-0.21481732,0.20084274,0.39986873,-0.005131747,-0.45448187,0.5180301,-0.781373,0.6438217,-0.13829136,0.009894414,0.07903488,0.023824135,0.5028561,0.70302665,-0.09379648,0.025816783,0.17630611,-0.44356495,0.21947268,-0.3954466,0.04138233,-0.72561044,-0.13665785,0.74966496,0.44899717,0.34652594,-0.21540888,-0.046337564,0.093756296,-0.24188769,0.03972217,0.037061363,0.11815793,-0.060709093,-0.6501504,-0.2467697,0.4977367,-0.10705304,0.25958258,0.23913701,-0.2395508,0.1321262,-0.0784866,-0.020234644,-0.092305735,-0.7619607,-0.15364514,-0.28143847,-0.47187892,0.5733244,-0.2044706,0.22702101,0.27013156,0.067992084,-0.3367508,0.48608828,0.08857578,0.73196495,-0.035913676,-0.004399076,-0.31477872,0.2503764,0.30548224,-0.21640562,-0.0062605953,-0.13988099,0.0091180885,-0.49825588,0.44849485,0.0166028,-0.307439,-0.12390698,0.038038675,0.10511704,0.4913877,0.0124847805,-0.047121465,-0.24946356,-0.16495414,-0.22919454,-0.09936724,-0.06651711,0.4082925,-0.010089176,-0.025917659,-0.1627396,-0.005234382,0.015845418,0.27451274,-0.13570824,0.2499014,0.25404564,0.006221022,-0.29844937,-0.10467325,0.24049632,0.44931015,0.021803753,-0.29651424,-0.29231736,-0.2159365,-0.4678336,0.13679527,-0.1330849,0.44527408,0.18129714,-0.17823759,0.6145378,-0.08433326,1.1149886,0.050952222,-0.35766461,0.23322406,0.42698365,0.08950003,-0.06823533,-0.17861591,0.744547,0.35789683,-0.07527838,-0.13782267,-0.40567583,0.03591678,0.42403665,-0.18816169,-0.2985301,0.014336115,-0.7200459,-0.08062149,0.14545189,0.05140559,0.25250444,-0.20210387,0.13544856,0.37108323,0.00848532,0.21122684,-0.37302878,-0.031394333,0.35111883,0.4091335,0.13649361,0.20819266,-0.50778455,0.36314663,-0.6181795,0.07819908,-0.13738617,0.32808104,-0.31108174,-0.3879804,0.22433938,0.3255416,0.4249865,-0.1832769,-0.3419671,-0.37504014,0.5734238,0.11818821,0.114015065,0.43383935,-0.2822892,-0.09969691,0.18940042,0.33737808,0.82740813,-0.15319416,-0.111331,0.15569447,-0.38577884,-0.71766835,0.40038306,-0.35907593,0.31361768,0.07121542,-0.12170475,-0.66742355,0.18819237,0.362662,0.107387125,0.21831386,-0.46039346,-0.23376642,0.0686728,-0.18444307,-0.0860679,-0.30321032,-0.057559013,0.41113958,-0.28094894,-0.337277,0.10930992,0.22727826,-0.1419718,-0.47358927,0.04699471,-0.42938414,0.20840214,-0.05796246,-0.46315402,-0.18172337,-0.05249718,-0.35889718,0.18788941,0.07302987,-0.20102195,0.103648655,-0.427768,0.011974518,1.014284,-0.10581169,0.29098886,-0.41483185,-0.46384576,-0.7869204,-0.32951233,0.47366497,0.17914446,-0.14279394,-0.6966325,0.056809943,-0.020807458,-0.16535772,-0.1494209,-0.42331442,0.476155,0.1594439,0.040384553,0.14157578,-0.7748137,0.040660437,0.1277811,-0.10367259,-0.48651966,0.41065088,-0.07305244,0.92247254,0.124697626,0.12451149,0.18896106,-0.36245912,-0.048982166,-0.22594154,-0.12134386,-0.32761684,0.008362202 -875,0.55488044,-0.22715823,-0.3795924,-0.12701465,-0.13651934,0.12283184,-0.22486873,0.6002191,0.24425444,-0.4415923,-0.1343171,-0.032984674,0.008434228,0.019491931,-0.11093016,-0.48148552,-0.017692907,0.075059,-0.27045926,0.3732612,-0.5460575,0.2683435,-0.092136584,0.35516542,0.11756963,0.1668329,-0.06767933,-0.06069988,-0.13948084,-0.21519968,0.061898865,0.24333243,-0.58632106,0.06835587,-0.11983796,-0.40229398,-0.12769897,-0.5724124,-0.39285812,-0.7704135,0.28928787,-0.9094735,0.4524333,0.1317486,-0.4267009,0.35067686,-0.19510286,0.20008779,-0.17094228,0.040907733,0.26315764,-0.07278638,0.0010567562,-0.10362619,-0.10608566,-0.2321088,-0.54827017,0.10273888,-0.38184372,-0.124244556,-0.24286301,0.15388565,-0.30871448,-0.12488679,-0.24161138,0.3629282,-0.45100856,-0.08862404,0.08939104,-0.03143059,0.39647225,-0.5468251,-0.171181,-0.077837445,0.22935757,-0.28634712,-0.32901338,0.19530432,0.3367004,0.5148375,-0.1128241,-0.13527003,-0.36083212,0.1356364,0.13530329,0.49372083,-0.22359411,-0.59569687,-0.097674794,-0.10667891,0.24566521,0.17574856,0.15612806,-0.20456335,-0.12040043,0.2222689,-0.22126658,0.46804184,0.6571273,-0.2896431,-0.20709576,0.34692413,0.49503216,0.15499112,-0.12884596,0.0154784685,0.108754106,-0.526014,-0.19602226,0.13776739,-0.19433452,0.40351883,-0.10704831,0.29584482,0.69459754,-0.30753297,0.2185955,0.22410974,-0.04856914,0.023588022,-0.29284737,-0.29147768,0.16631912,-0.48442274,0.17229751,-0.30400744,0.72883,0.13775861,-0.76492935,0.3844537,-0.48072094,0.045944843,-0.1387256,0.53459007,0.70714986,0.3556536,0.26976115,0.6405697,-0.33534318,-0.08957333,-0.13141893,-0.2789542,0.14899768,-0.14907227,-0.0037843627,-0.43745184,-0.24052326,0.07329665,-0.18877585,-0.0016310407,0.43789297,-0.5867868,-0.053981643,0.13786367,0.53404385,-0.25914285,-0.029323488,0.8640571,0.98834556,0.97438276,0.16906306,1.0234979,0.2452947,-0.14898984,0.3759132,-0.37841627,-0.6628066,0.29850063,0.25092018,-0.0032212224,0.15605898,0.06650684,-0.12277087,0.4283007,-0.41154522,0.059272546,-0.26786572,0.17832766,0.038321298,-0.12513268,-0.3631291,-0.38391113,-0.19476545,0.06289879,0.04535056,0.33420447,-0.33622423,0.10303626,0.05032461,1.4408578,-0.13152243,-0.066247895,-0.079797566,0.51525027,0.14596434,-0.29285505,-0.029661626,0.28084844,0.3462816,0.044803053,-0.66899925,0.17248301,0.008392648,-0.38801533,-0.1025793,-0.31243473,-0.057542853,-0.052618004,-0.53171456,-0.08544419,-0.11490888,-0.37879896,0.47824892,-2.747987,-0.19918834,0.0882544,0.4476969,-0.23411933,-0.43048888,-0.12190567,-0.5208401,0.42728895,0.304069,0.41876712,-0.7324019,0.42338654,0.41770586,-0.5927825,-0.11297672,-0.86337775,-0.16778103,-0.119612746,0.22290137,0.15578164,0.024138058,0.08657255,0.10121875,0.49731573,0.06594188,0.16347383,0.1328688,0.47218376,-0.12025845,0.47657198,0.033843443,0.5181894,-0.14580072,-0.28921917,0.42370838,-0.538335,0.18564582,-0.13680194,0.09221654,0.38109216,-0.463674,-0.93202984,-0.77590746,-0.27059886,1.1301317,0.0019939903,-0.446621,0.25503987,-0.3668783,-0.38539657,-0.16507605,0.62974614,-0.029178295,-0.21567336,-0.80439466,-0.073312655,-0.17173631,0.063223764,-0.092583634,0.030326933,-0.43904427,0.6678272,-0.08979644,0.43128517,0.32929605,0.20714703,-0.12184825,-0.40423235,0.03434486,0.94914395,0.34495422,0.1644993,-0.3117953,-0.1919948,-0.2963799,0.0768669,0.07953213,0.5715479,0.70980805,-0.027511433,0.10746704,0.19435,-0.078945376,0.008431016,-0.17041557,-0.24046397,-0.18369389,0.031070169,0.6567007,0.57460606,-0.15245779,0.301334,-0.11202401,0.15509859,-0.2649922,-0.34676674,0.4450086,0.8754038,-0.09056697,-0.14127393,0.56584305,0.50155747,-0.26694804,0.43822408,-0.6174597,-0.17527452,0.31616473,-0.22991194,-0.30688924,0.28509393,-0.3459498,0.109492145,-0.74079263,0.4035658,-0.3846743,-0.5207566,-0.644834,-0.043590274,-3.257904,0.14359252,-0.1658493,-0.27299246,-0.058843784,-0.27776128,0.39804247,-0.533082,-0.42708096,0.21932228,0.044995725,0.7399325,-0.065996364,0.04070919,-0.33944082,-0.21412696,-0.3490012,0.05294547,0.21031882,0.3811057,0.01728341,-0.26420212,-0.023122687,-0.14445817,-0.36188895,0.06356991,-0.48670968,-0.5806173,-0.099318095,-0.3578735,-0.3579809,0.65840524,-0.22090718,0.055820864,-0.12106816,-0.10833882,-0.16309164,0.5038094,0.08052849,0.023976663,-0.022111658,-0.026748335,0.055162173,-0.24470337,0.35304165,0.10671002,0.2303777,0.4364338,-0.18286574,0.17113106,0.55243,0.63104016,-0.064534985,0.9671955,0.4354175,-0.06758846,0.29083493,-0.20563592,-0.21686493,-0.41705108,-0.26602855,-0.017873066,-0.45815334,-0.39849648,-0.10073502,-0.41103896,-0.80018556,0.43027505,-0.08608309,0.07307492,-0.029952075,0.27139673,0.4987733,-0.04057467,0.021218743,-0.053336047,-0.051876523,-0.45241198,-0.21811703,-0.5718464,-0.48636946,0.15986072,0.9601097,-0.14904039,-0.043206684,0.07588738,-0.11761657,0.005042327,-0.022229016,-0.13702476,0.06944754,0.31752157,-0.1140024,-0.5978581,0.43646988,-0.019287612,-0.2347304,-0.504059,0.2610839,0.6461044,-0.56573135,0.491987,0.32883188,0.045533914,-0.05903382,-0.52323276,-0.19538583,0.004760951,-0.19998135,0.52650684,0.264401,-0.87867355,0.44900376,0.3863211,-0.15142976,-0.67538136,0.5284001,0.009667174,-0.24823202,-0.15164852,0.28963107,0.074291945,0.042498294,-0.101788215,0.3895468,-0.4730444,0.2722876,0.22474436,-0.09367216,0.3205886,-0.08953427,-0.010082798,-0.6152402,0.033664357,-0.50328976,-0.26566106,0.16099834,0.05373449,0.26796648,0.3557203,0.11058233,0.47769046,-0.33606863,0.053503275,0.015909484,-0.22198166,0.2843503,0.38065365,0.53492993,-0.34446397,0.51501155,0.013676521,-0.16802166,-0.020214388,0.043061238,0.49137232,0.040314887,0.36279067,-0.08830388,-0.2807498,0.25944406,0.9231976,0.18982725,0.52497786,-0.1073214,-0.12102204,0.193558,0.16641307,0.27637962,0.06053864,-0.53592414,0.04840519,-0.12012075,0.2474797,0.33237094,0.10317183,0.19432862,-0.19234875,-0.26309,0.051007856,0.23831403,0.001715924,-1.2007338,0.35889387,0.118779145,0.8154647,0.4939074,-0.056622125,0.13606076,0.5326241,-0.14947878,0.1933416,0.27389202,0.0561843,-0.5528793,0.38932195,-0.76440036,0.4501441,-0.07899164,0.016011333,-0.07383331,-0.32638973,0.45713836,0.66605407,-0.14760184,0.12335747,0.06305052,-0.3242225,0.20287749,-0.41086483,0.14949398,-0.62152106,-0.13669549,0.7587237,0.5344734,0.32990798,-0.119000874,0.047835026,0.1176408,-0.0662788,0.06012777,0.104947194,0.090033926,0.11268855,-0.6321629,-0.18820307,0.45617884,-0.17561838,0.05369047,-0.119344436,-0.24918607,0.2010593,-0.112466134,-0.19691607,-0.09960177,-0.647677,-0.12605955,-0.4861366,-0.3480284,0.3298485,0.033556823,0.25344032,0.27879095,0.10479142,-0.16893911,0.2938431,0.32297176,0.6875568,-0.028255591,-0.08405429,-0.55623287,0.16479579,0.27147022,-0.20219956,-0.27910742,-0.14225045,0.09298923,-0.55880296,0.36054182,-0.10994851,-0.28809687,0.14281282,-0.06640327,0.08274456,0.63693655,-0.22705524,-0.118022956,0.07618941,-0.18203174,-0.3469903,-0.043061376,0.018920472,0.29038954,0.29897076,-0.1029013,-0.05598822,-0.12893136,-0.07466829,0.43584174,0.18935837,0.4852921,0.465501,0.097476505,-0.31403446,-0.16389465,0.099412456,0.46678302,-0.07511644,-0.13211203,-0.50510174,-0.39530846,-0.35394734,0.2568925,-0.062074937,0.3394538,-0.030343028,-0.15420659,0.6822185,-0.04532034,1.0176725,0.06520516,-0.35490295,0.07741117,0.46477175,-0.062127948,-0.07745019,-0.50083864,0.87219316,0.31653878,-0.16270159,-0.039645854,-0.2617203,-0.14615504,0.18648466,-0.18724763,-0.085890554,-0.0017023215,-0.79130507,-0.12484356,0.24980481,0.2846509,0.14947358,-0.049269717,0.17598207,0.2762483,0.03528818,0.18747355,-0.5033251,-0.11930816,0.29017448,0.34634557,0.0040787435,0.11475862,-0.42236763,0.32911894,-0.4819991,0.0277407,-0.2212369,0.19296433,-0.083017126,-0.3310006,0.23820181,0.101788215,0.30402446,-0.2153085,-0.4111581,-0.16842987,0.45845684,0.0647049,0.29559273,0.48148638,-0.20817627,0.022233231,0.030873192,0.5503287,1.1058505,-0.13523814,0.030458795,0.393739,-0.3326395,-0.59218407,0.38621834,-0.29073408,0.19508068,-0.015346795,-0.16603628,-0.45715973,0.27704015,0.31785172,0.09050586,0.030574014,-0.628086,-0.31213313,0.29680255,-0.33460647,-0.20565839,-0.3380006,0.12124871,0.68060505,-0.32865795,-0.2236075,-0.0032229295,0.43910772,-0.28821254,-0.34752408,0.041092474,-0.39297876,0.2725293,-0.06703996,-0.3607933,-0.03902303,0.054449704,-0.33310333,0.17150028,0.11115767,-0.33792803,0.028268397,-0.39579174,0.016719852,0.9682507,-0.117674336,0.17412615,-0.5165018,-0.53511506,-0.80191123,-0.31882545,0.276504,0.15219344,0.011965058,-0.5525828,-0.02393519,-0.015142866,-0.096902624,-0.07166491,-0.4220059,0.5606151,0.1227963,0.32352918,-0.06558373,-0.68359745,0.07094427,0.16286013,-0.30879906,-0.5606972,0.5273419,0.02081178,0.9806785,0.13869074,0.13012211,0.14476313,-0.36098364,0.034058828,-0.27209345,-0.18648598,-0.7897073,0.086065605 -876,0.32994053,-0.32601985,-0.68925,-0.108085066,-0.22537942,-0.00056348066,-0.29785827,0.4195629,-0.05518171,-0.65739864,-0.117693424,-0.25311536,0.036785066,0.26206458,-0.15737228,-0.40713158,-0.0052591343,0.39520738,-0.35631981,0.32687104,-0.598939,0.14775814,-0.09805334,0.3119836,-0.12981482,-0.011165956,0.2350583,0.13063598,-0.3143287,-0.35875353,0.056171324,0.022818977,-0.6312301,0.11260235,-0.27923566,-0.58163375,-0.05195156,-0.4083545,-0.30212176,-0.7815046,0.23571959,-1.0529568,0.50276583,0.12261221,-0.31682283,0.30650538,0.29987213,0.49767768,-0.16486736,0.06438113,0.16846485,-0.43809253,-0.21528362,-0.48856008,-0.2688368,-0.39149228,-0.6438889,0.008510157,-0.5621914,-0.18561763,-0.22979806,0.2528107,-0.26217714,0.14519006,-0.40720892,0.72276425,-0.39998987,-0.08511103,0.19831905,-0.0584682,0.30657712,-0.48489615,-0.08725393,-0.20294094,0.010973632,-0.13864961,-0.36986864,0.3175051,0.13025579,0.4190936,-0.23238039,-0.2982612,-0.37725547,-0.12929355,0.31576717,0.4692062,-0.15080684,-0.35845372,-0.18313676,-0.0499496,0.065035865,0.24451803,0.065161854,-0.2921215,0.13978527,0.17151037,-0.3340614,0.39398968,0.7120867,-0.34007645,-0.15947331,0.27916878,0.5619909,-0.2183539,-0.3417075,-0.051842425,0.006937715,-0.4573556,-0.22134042,0.27955878,-0.21932377,0.5991269,-0.21250567,0.19724026,0.44424745,-0.47467557,-0.21445245,0.009264068,0.15525346,-0.022471653,-0.40112373,-0.60276026,0.62554604,-0.6225794,0.06781314,-0.43094072,0.91225815,0.017003251,-0.5418854,0.44868603,-0.62516063,0.15777023,-0.064156845,0.7215146,0.477471,0.66814834,0.56813455,0.57526356,-0.4083695,0.00981099,-0.17298761,-0.31019375,-0.012246748,-0.391346,0.1732954,-0.3475789,-0.02501723,0.031614866,-0.26509145,-0.15173076,0.63374525,-0.36548215,-0.18285853,0.28472212,0.6421743,-0.39703313,-0.015574493,0.7578608,1.2640084,1.2193545,0.25998685,1.2301425,0.33451173,-0.23310119,0.026047034,-0.008588123,-0.7609597,0.3069549,0.24127604,-0.055677067,0.29121506,0.13102423,-0.0073140045,0.47056153,-0.6252226,0.03993295,-0.11816297,-0.015592748,-0.011099295,0.03309023,-0.5089954,-0.12182348,0.20339184,-0.18354706,-0.0065569934,0.4252599,-0.27099776,0.3567835,0.044403244,1.398341,-0.14857823,0.111453004,0.25261375,0.38886738,0.042316366,-0.14171483,0.056157406,0.26487368,0.24091482,0.19876672,-0.47494212,0.085387774,-0.17716128,-0.6171017,-0.21739005,-0.34005907,0.050641872,-0.15575545,-0.56603235,-0.14660296,0.03909136,-0.3970395,0.32882383,-2.4793625,-0.1873493,-0.21051644,0.4223585,-0.32088664,-0.41421345,-0.04229848,-0.6657916,0.52240807,0.44201633,0.3034076,-0.52420974,0.48572978,0.3353717,-0.34001276,-0.06442966,-0.9172693,-0.03975952,-0.3889345,0.32586476,0.06090342,-0.25862953,0.012170618,0.015617398,0.6203402,-0.20402546,0.050867006,0.34670532,0.30049452,-0.09224582,0.6119156,0.12666956,0.40370786,-0.73291034,-0.30456054,0.24661385,-0.48721984,0.10986195,0.12297149,0.05898342,0.48464572,-0.686297,-0.9731213,-0.6589399,-0.2206471,1.1443849,-0.2924082,-0.45644283,0.28309786,-0.3776266,-0.36316803,-0.35956314,0.4108135,-0.05682852,0.096921615,-0.856604,0.09206696,-0.07997494,0.42199385,-0.094986156,0.112987705,-0.49996215,0.5663298,-0.3447956,0.51385695,0.5423979,0.13061365,-0.53714776,-0.34582242,0.017968625,1.0703979,0.27533656,0.16066656,-0.37909558,-0.23896547,-0.065871365,0.010844604,0.13423902,0.45341098,0.6860375,-0.080329604,0.14683706,0.40055266,-0.1622992,-0.034650803,-0.16002831,-0.45665666,-0.12517564,0.09179937,0.7357327,0.49846995,0.01460348,0.51578856,-0.1446135,0.40493232,-0.43558103,-0.2852841,0.25371858,1.1186094,-0.07647154,-0.2828419,0.7384621,0.6475887,-0.57109886,0.63949,-0.59657866,-0.34818757,0.24795757,-0.15983698,-0.5641134,0.18819016,-0.28093874,0.28738356,-0.6102591,0.40925702,-0.2932069,-0.633966,-0.7580378,-0.33669007,-3.5125747,0.4113118,-0.070741355,-0.13690633,0.09023524,-0.32419336,0.19075607,-0.55412066,-0.5239959,0.19721346,0.14233272,0.7391756,-0.07058433,-0.10023501,-0.46971127,-0.32863474,-0.2550493,0.32197192,0.35285,0.15756248,-0.070239335,-0.48046485,0.124758765,-0.30576232,-0.39466724,-0.13440607,-0.7030051,-0.30151328,-0.25675094,-0.6022047,-0.6399961,0.73446006,-0.31971332,0.08365297,-0.32243744,-0.05494733,0.07431236,0.48510763,0.051699992,0.26255763,0.044288475,-0.14408892,0.029038755,-0.2397542,0.06170962,-0.0069462997,0.1549337,0.53049845,-0.20306717,0.10772758,0.5093448,0.7303383,0.041255567,0.9968905,0.5026459,-0.07091835,0.2529651,-0.2636653,-0.17621954,-0.72636133,-0.204742,-0.08332945,-0.56485546,-0.3398239,0.075291984,-0.18657543,-0.8657951,0.91461927,-0.16108671,0.025199635,0.09522371,0.6530619,0.44403365,-0.14640655,-0.22366033,-0.080313794,-0.05251666,-0.44233367,-0.4535966,-0.6666104,-0.45476544,-0.20558992,1.2783984,-0.013461042,0.022745533,0.07100078,0.04255766,0.09335084,0.39357522,0.04251287,0.2672044,0.5944038,0.0035218596,-0.535688,0.23972225,-0.20408791,-0.14910007,-0.70203215,0.337258,0.8555519,-0.6975415,0.62263894,0.51067173,0.20824355,-0.4219794,-0.588737,-0.29720554,0.16677962,-0.17328623,0.6343139,0.3231614,-1.1704751,0.44730127,0.33522394,-0.29606816,-0.7905268,0.53692836,-0.13569261,-0.28837085,-0.1053309,0.44727552,-0.11904457,0.04233021,-0.10603042,0.3154978,-0.40890026,-0.019544471,0.34961894,0.017699081,0.32474333,-0.42734215,-0.038306475,-0.6497169,-0.0044213803,-0.5822851,-0.22097021,0.2375575,-0.07183129,-0.047742363,0.581252,-0.077145144,0.38398123,-0.1939507,0.07411465,-0.14142272,-0.36582738,0.59015703,0.48171538,0.27364987,-0.51274645,0.7783937,0.038276896,-0.14274964,-0.5532976,-0.12257255,0.42738074,0.01565264,0.6125678,0.006281923,-0.30546653,0.39422598,0.84979683,0.41999817,0.9370697,0.2507144,0.016757255,0.08597546,0.18248858,0.2803763,-0.087151244,-0.52206826,0.060086425,-0.25144002,0.19057666,0.34482822,-0.07825007,0.4718954,-0.21330835,-0.0675973,0.061638866,0.0055755754,-0.16774227,-1.2870321,0.4732112,0.17129332,0.56360364,0.48856086,0.11515394,-0.017793475,0.48273352,-0.43493098,0.03550498,0.18818945,0.14434324,-0.27115992,0.6627603,-0.744594,0.37535745,-0.26689863,0.023919605,-0.21884204,0.096064895,0.48061648,0.72673863,-0.15044715,0.2302183,-0.10832309,-0.16616565,0.45225474,-0.36736754,0.33564255,-0.50075984,-0.39951056,0.8950365,0.35361046,0.6387976,-0.13402009,-0.1519849,0.15141365,-0.069209784,0.19931608,0.07269298,0.16224042,0.04279592,-0.75209904,-0.07247357,0.5967691,0.14771795,0.08412309,0.19477533,-0.2978578,0.30425677,0.091101795,-0.13102768,0.10751939,-0.57318056,-0.00026650864,-0.31314948,-0.4845672,0.3893264,-0.26097444,0.21781336,0.22424527,0.079507396,-0.5944548,0.24552868,0.48733672,0.62981796,0.060140956,-0.05899193,-0.18118836,0.18455319,0.15527253,-0.23551041,0.12923673,-0.3653806,0.15403804,-0.6278168,0.43574783,-0.18826352,-0.52802926,0.24665666,0.019961156,-0.1393494,0.780335,-0.049375165,-0.06219137,0.16967171,-0.19076537,-0.13506623,-0.37069666,-0.09610344,0.34647945,-0.20115282,0.03964434,-0.0023514656,0.04558344,-0.0018094019,0.6353209,-0.059039537,0.15052775,0.4295909,0.2815015,-0.39855564,0.06264489,-0.2980933,0.7621044,-0.07495146,-0.20771493,-0.30542448,-0.3242612,-0.16427118,0.152714,0.054136015,0.30319926,0.24273323,-0.2880716,0.9764035,-0.16803643,1.1069596,-0.04345194,-0.4679118,-0.12170289,0.39171764,0.09022946,-0.17884251,-0.33294886,0.9114385,0.53216386,-0.09333858,-0.15694359,-0.49955025,-0.041402925,0.10454245,-0.18217677,-0.43409264,-0.030000823,-0.6921947,-0.042852428,0.25701356,0.35939693,0.24624725,-0.18423901,0.5674057,0.41361472,0.04068966,0.22359218,-0.22149864,0.21558131,0.4390583,0.34822056,-0.08058229,0.015762405,-0.30316913,0.25051016,-0.6610083,0.01611612,-0.30834323,-0.019771999,0.11621124,-0.2742917,0.2590556,0.21894468,0.2632608,-0.21446119,-0.09110131,-0.052446615,0.5247457,0.24029852,0.3029657,0.7030914,-0.14905216,0.21089363,0.051314343,0.507628,1.3323659,-0.2750925,-0.07956174,0.21924391,-0.273737,-0.8845619,0.38603947,-0.30952978,0.17932248,0.05350785,-0.32744625,-0.598918,0.12932605,0.19870782,-0.37063786,0.26100835,-0.41008255,-0.13378982,0.18733273,-0.3393947,-0.21731333,-0.35546485,0.18518664,0.52532274,-0.14260326,-0.2687159,-0.17024164,0.44129306,-0.2368399,-0.34368724,-0.10742066,-0.4451326,0.21918158,-0.0023741939,-0.33543566,0.23941053,0.008153265,-0.5313698,-0.042427965,0.267433,-0.21227235,0.20778441,-0.38421962,-0.06419143,0.81627184,-0.092924215,0.10130839,-0.43369523,-0.6516527,-1.0931332,-0.11069414,0.4165717,-0.12317798,0.1123159,-0.5758498,-0.00015197018,-0.021608148,-0.20796515,-0.07780926,-0.4668504,0.3037713,0.20604537,0.47953895,0.06691592,-0.6047501,0.14984156,0.088579826,-0.19507183,-0.25233987,0.61781865,-0.08221532,0.87272716,-0.019530607,0.22624828,0.261701,-0.5229425,0.25517377,-0.15465023,-0.19163913,-0.60741216,-0.18543124 -877,0.44506678,-0.24129036,-0.6911946,-0.0507617,-0.35843387,-0.052944995,-0.17373851,0.62738967,0.25431138,-0.44259068,-0.15353559,-0.24412942,-0.13508219,0.5191915,-0.2328163,-0.4152603,-0.21390001,-0.016201628,-0.47372147,0.69908464,-0.23763332,0.16626245,0.117412,0.35663053,0.52252746,0.14136535,0.16059262,0.1624035,-0.22361477,-0.2833474,-0.047160722,0.07388925,-0.66616493,0.1528429,-0.33174482,-0.5543338,-0.20719422,-0.6828229,-0.2851788,-0.99100655,0.46236166,-0.95093346,0.42596823,-0.008850968,-0.25174636,0.19092487,0.35139477,0.29114553,0.015660264,-0.36490828,0.2236023,-0.12031254,-0.012632756,0.04164946,-0.42155716,-0.2636646,-0.60632807,-0.08328306,-0.37793973,-0.13912472,-0.15704833,0.1594924,-0.3741778,0.10456026,-0.21984838,0.7696671,-0.333867,-0.12820177,0.30402648,-0.05029738,0.30298615,-0.74776065,-0.27358526,-0.20351778,0.06955007,-0.09392938,-0.18535735,0.57439303,0.066556424,0.1810724,-0.028524546,-0.21705535,-0.33478612,-0.124518886,0.1045251,0.27762577,-0.20684844,-0.40434164,-0.14198217,-0.08259919,0.35495436,0.41290408,0.3269423,-0.2172367,0.120401494,-0.0049724486,-0.19888017,0.5225594,0.44459274,-0.22999822,-0.067500845,0.27817896,0.63271916,0.37701094,-0.23868242,-0.3056669,0.028187545,-0.509098,-0.07376147,0.24445216,-0.23165832,0.45920455,-0.09264057,0.19432592,0.49482253,-0.29895902,0.13108715,-0.024175782,0.11883836,-0.07529613,-0.6012103,-0.4242399,0.37962323,-0.47730687,0.41859674,-0.3456628,0.7284896,0.14927195,-0.48738366,0.24449581,-0.6883925,0.1698603,-0.029976066,0.4819435,0.71254116,0.39834923,0.31893393,0.77662456,-0.12921478,-0.09001687,-0.21792497,0.03391129,-0.117098734,-0.3547778,0.30869323,-0.40169203,-0.025820872,-0.2432584,-0.014703086,0.06851619,0.26938468,-0.45477566,-0.30796698,0.13435951,0.80917114,-0.13148645,0.09229605,0.88513595,1.0160761,1.193181,-0.039695557,0.7862024,-0.07606192,-0.21413714,0.20471478,0.09233642,-0.610551,0.32204264,0.41432348,-0.08307505,0.0893718,-0.06283596,-0.12906048,0.45815688,-0.37247616,-0.0021439607,-0.16636676,0.12883392,0.25474295,0.11503834,-0.34082508,-0.3307374,-0.10243205,0.013377208,-0.05618873,0.29886273,-0.20823413,0.30220965,-0.03811479,1.4142289,-0.14662863,0.106143884,0.32071528,0.5926116,-0.049242634,-0.29552713,0.05952062,0.109183155,0.096820556,0.07501068,-0.52568424,0.2473525,-0.37293264,-0.4539951,0.079572275,-0.46625233,-0.34891495,0.06458845,-0.5760914,-0.20591925,-0.15769999,-0.16054298,0.3776372,-2.7100134,-0.052135102,-0.16957599,0.20236367,-0.32810932,-0.43945485,0.089599736,-0.6398127,0.60028386,0.18975694,0.43453565,-0.41067314,0.20701903,0.5347952,-0.6496526,0.049039014,-0.66641164,-0.123345934,0.15663712,0.2549713,-0.16787942,-0.13473074,0.21768849,0.05870823,0.28628922,0.20963822,0.18645056,0.34008127,0.24820362,-0.22271205,0.6059005,-0.1125507,0.37727326,-0.7051964,-0.1262338,0.46387312,-0.5508969,0.39366448,-0.15191144,0.12619184,0.6655683,-0.61942583,-0.8253803,-0.57727504,-0.3050784,1.2295781,-0.21190095,-0.65776265,0.2392485,-0.40003034,-0.027842682,-0.27981803,0.6295737,0.047990542,0.014485698,-0.5868622,-0.006365744,-0.26925975,0.22247997,-0.1550193,0.08363759,-0.36626515,0.6843867,-0.029622091,0.5353964,0.39641884,0.093391106,-0.5270099,-0.43529928,-0.060652193,0.7615252,0.51283777,0.058008067,-0.1968467,-0.103821926,-0.5185645,-0.1837546,0.14318533,0.607659,0.6775725,-0.0065443562,0.19509116,0.29108825,0.012094855,0.101330414,-0.07813518,-0.35441992,-0.38272408,0.12697941,0.5905642,0.5532187,0.060441118,0.3990595,-0.04154891,0.17960149,-0.20018448,-0.4402634,0.20749117,1.007185,-0.30418885,-0.23787381,0.5375997,0.55619246,-0.3405096,0.49773863,-0.41755792,-0.46883604,0.4551773,-0.13325502,-0.6717073,0.09562905,-0.20697792,-0.008314848,-0.5258134,-0.10713459,-0.70635545,-0.23355825,-0.60011417,-0.21646707,-2.2670476,0.35096678,-0.056145243,-0.15534092,-0.23845533,-0.2700189,0.17026056,-0.6414616,-0.8027266,0.09469331,0.07890938,0.7703717,-0.16592321,0.0009893454,-0.27520037,-0.24431285,-0.3155287,0.23760271,0.18274738,0.30686614,-0.22334638,-0.3674564,-0.2290601,-0.037382323,-0.47239238,0.03832429,-0.5338142,-0.41850471,-0.27626193,-0.5166318,-0.4020239,0.6739823,-0.25735432,0.13435155,0.049853936,-0.09458201,0.06387024,0.04937878,0.23182514,0.5167682,0.063770406,-0.17050417,0.034767047,-0.18818349,0.06294782,0.246881,0.41614568,0.44361848,-0.14521183,0.48998627,0.40511227,0.8208255,0.04216935,1.0049125,0.21668312,0.0044520935,0.23914744,-0.14205094,-0.3293743,-0.57172686,0.08229024,0.12012669,-0.25996572,-0.44525582,-0.027723359,-0.21447116,-0.75934917,0.74806345,0.005459272,0.4094028,-0.07689439,0.2700338,0.5083977,-0.37002483,-0.005298801,0.041114565,0.1312214,-0.6612715,-0.33478525,-0.6591502,-0.5027938,-0.0102671245,0.85180736,-0.2713018,-0.08490066,0.30966023,-0.31559354,0.2224372,0.097237974,0.003085847,-0.15049645,0.42135686,0.13849679,-0.590161,0.5381885,0.09912114,-0.015469558,-0.41901156,0.47391322,0.6284023,-0.47573793,0.6076958,0.19820645,0.013788242,-0.64874446,-0.59068924,-0.027645264,-0.08789505,-0.28185743,0.34556866,0.36254328,-0.63561195,0.16697796,0.21700071,-0.10144412,-0.8115693,0.5010879,0.089114,-0.36347204,-0.12800139,0.38987908,0.34601548,-0.014278371,0.07364196,0.26467198,-0.25915077,0.18228628,0.33037594,-0.042144716,0.26123005,-0.3711417,-0.23941796,-0.4727607,0.4531338,-0.44670266,-0.26729175,0.54191107,-0.1419549,-0.13413857,0.36239132,0.21894374,0.23407364,0.06008701,0.18213604,-0.1531248,-0.27987263,0.48090914,0.45441166,0.6519181,-0.5467891,0.64808375,0.049104705,-0.19423291,0.33557656,-0.06295075,0.3543909,-0.013990306,0.5130088,-0.11672424,-0.34395888,0.040889814,0.6910748,0.1668707,0.36050415,-0.10687138,-0.06543254,0.10816402,0.058225192,0.13975248,-0.12700026,-0.80987513,0.03475178,-0.15040742,-0.11636876,0.54994667,-0.014169065,0.27464387,-0.018577393,-0.19033708,-0.006077707,-0.084048934,-0.35346413,-1.3648608,0.4816414,0.11224934,1.0692073,0.5806558,-0.07075795,-0.17052875,0.6501013,-0.12934457,0.09819715,0.40916803,0.14349084,-0.55127114,0.61563873,-0.47938046,0.5503489,0.053372804,0.0298433,-0.071099386,0.1125602,0.6539512,0.54926956,-0.30172294,-0.079264596,0.024651404,-0.2976814,0.31120417,-0.45237494,-0.067498565,-0.53451484,-0.34700972,0.515481,0.5431298,0.285821,-0.16711529,0.0068883416,-0.029695395,-0.130382,0.31032336,-0.01721667,0.11080156,-0.083640225,-0.3902899,-0.08167795,0.4507397,-0.4215759,0.16363427,-0.043512907,-0.29277852,0.12919234,0.14395723,0.04031805,-0.10434299,-0.77468884,0.21693197,-0.5549959,-0.4345453,0.08953249,-0.16797958,0.19586895,0.23991181,0.08225714,-0.24012038,0.5194877,0.114185885,0.7000317,-0.5427978,-0.0789181,-0.3582308,0.24193947,0.063536294,-0.10724917,0.18321855,-0.044259492,0.09900606,-0.4363337,0.5802651,-0.17685224,-0.35480303,-0.05500762,-0.1131837,-0.07378023,0.5952968,-0.05070218,0.049450524,-0.16042185,-0.18543953,-0.30443284,-0.33939713,0.037873797,0.119650826,-0.055284753,0.25409505,-0.19397466,-0.17386797,0.12721373,0.42917207,-0.12396038,0.3979306,0.4801437,0.19591318,-0.5727968,0.0074735973,0.12893069,0.6517086,0.04149615,-0.16243932,-0.38792166,-0.26139122,-0.33265796,0.47902447,-0.16581027,0.55088484,0.114869446,-0.19025205,0.84880215,-0.030784043,1.1239021,-0.10435842,-0.50142974,-0.10889912,0.47533643,-0.096531995,-0.26324338,-0.29824424,0.7850154,0.3571378,-0.112859815,-0.009925907,-0.2761202,0.07997641,0.3150036,-0.18756345,-0.14080025,-0.02861336,-0.46851012,-0.08119701,0.029135792,0.3793851,0.21744147,-0.37619796,0.019575957,0.42998186,0.114973545,0.33529934,-0.34955838,-0.16848141,0.26633975,0.17594443,-0.18779637,0.23982432,-0.5283297,0.3377729,-0.61081463,0.29927033,-0.39107817,0.22654735,-0.24336347,-0.34632385,0.14159863,-0.08225166,0.45896384,-0.2937851,-0.34444898,-0.24339673,0.43114752,0.25182343,0.1422136,0.5662599,-0.1457161,0.025093969,0.0020471124,0.6784919,0.9722353,-0.16656344,-0.13237886,0.0006939356,-0.34217983,-0.67865336,0.3082618,-0.29836428,0.13591978,-0.007916469,-0.06451337,-0.60759455,0.03044183,0.21593751,-0.13122264,-0.09669936,-0.889541,-0.22436915,0.120714225,-0.25474614,-0.2827605,-0.6105748,-0.07367664,0.43475887,-0.074907176,-0.32649598,0.0841205,0.21561462,-0.07462856,-0.51846784,0.051094867,-0.25753975,0.15885809,-0.12706167,-0.4521166,-0.11086834,0.1579348,-0.48512176,0.17594638,-0.28122026,-0.26912776,-0.06584852,-0.08206351,0.16084656,1.0661057,-0.08881542,0.22013003,-0.20739375,-0.5919295,-0.6416218,-0.42522258,0.16781078,0.0026388397,0.08949372,-0.58629984,-0.0142553905,-0.25349504,-0.055579368,-0.05542324,-0.16405998,0.40404022,0.12320647,0.48860946,-0.19561622,-0.6354542,0.44782272,-0.002130561,0.13981804,-0.28043988,0.34863186,-0.0032817882,0.80059755,0.14091939,-0.003464098,0.1111784,-0.41030914,0.08254468,-0.09394029,-0.08925912,-0.35809788,0.24356405 -878,0.58812827,-0.12775876,-0.44466925,-0.0774823,-0.3554784,0.27181,-0.23136866,0.23933715,0.32915872,-0.16784894,-0.124166235,-0.14798585,-0.18948634,0.20581464,-0.1606798,-0.54456484,-0.24249229,0.081674114,-0.5731441,0.742947,-0.34088293,0.43806198,-0.030153438,0.2909158,0.46536222,0.2689349,0.028982326,0.018468149,-0.19522637,-0.3142919,-0.16385508,0.22062987,-0.58060825,0.23820774,-0.27278274,-0.27803633,-0.13905989,-0.48750585,-0.40677628,-0.78175646,0.20320252,-0.74843,0.52261895,-0.044281084,-0.20709875,0.14501868,0.23757151,0.2806676,-0.041803055,-0.006389519,0.1596854,-0.27134514,-0.12616874,-0.096215695,-0.36424837,-0.5328293,-0.6432231,-0.02280489,-0.5357187,-0.19807231,-0.34139156,0.21745837,-0.33630192,-0.13272941,-0.030222565,0.6013216,-0.50494564,0.26062262,0.04928175,-0.11913951,0.021296237,-0.634555,-0.15596266,-0.10921042,0.20245662,-0.013013443,-0.13194466,0.2202661,0.25434497,0.40446943,0.12316422,-0.22903442,-0.56162846,-0.015822858,0.2510219,0.4329419,0.015774881,-0.24359174,-0.19657958,-0.12378688,0.25084943,0.2599443,0.18374473,-0.3699869,-0.111326754,-0.071244225,-0.23209864,0.5844508,0.48372787,-0.20370461,-0.2079261,0.3287568,0.4993152,0.34348553,-0.35829717,0.16506763,-0.14249769,-0.31981722,-0.011361621,0.15386868,-0.11831193,0.544976,-0.05434861,0.18871991,0.63681483,-0.069253564,-0.16562714,0.033058915,0.07201585,-0.092812665,-0.08148308,-0.14511248,0.27785942,-0.32562706,0.18983474,-0.10409304,0.6774007,0.089542694,-0.7135254,0.27622014,-0.5592301,0.09214661,0.13135016,0.5815232,0.71638846,0.4702698,0.2985849,0.6440659,-0.22779605,0.11699411,-0.12263481,-0.23789775,-0.109592564,-0.25698853,0.09471743,-0.5399883,-0.01667314,-0.11480665,-0.018238246,0.057077814,0.70844823,-0.4535922,-0.15863274,0.14317155,0.7778896,-0.20589061,-0.18902948,0.90713686,1.0453787,1.1790994,-0.0020965654,1.0234652,0.21948817,-0.20846868,-0.06046358,-0.41500992,-0.56720495,0.2480546,0.13969234,-0.42973885,0.3315871,0.12778413,0.084946595,0.4598759,-0.37313318,0.10454822,-0.052096628,0.11597434,0.24887887,-0.12816791,-0.3538173,-0.22920415,0.12428428,0.13692102,0.13779192,0.21541281,-0.3076273,0.3604995,0.11591561,1.3802695,0.06405687,-0.08071697,0.07889178,0.47050858,0.14829211,-0.21894355,0.004107021,0.27474332,0.39976096,0.01873234,-0.5339502,0.07585354,-0.23616476,-0.43253204,-0.20897317,-0.30704665,-0.26751184,-0.035713755,-0.28123388,-0.28015187,-0.14109083,-0.5573642,0.45956954,-2.6747444,0.042559993,-0.14298683,0.18373623,-0.20794468,-0.30782714,-0.038154654,-0.59120244,0.26497644,0.260865,0.36429274,-0.5821587,0.4145006,0.45544738,-0.6684066,-0.13397576,-0.51985717,-0.021281306,-0.008606303,0.5768263,-0.06116588,-0.018620778,0.030519865,0.13888215,0.56615436,0.09988888,0.19602296,0.38887393,0.43901402,-0.18071738,0.5528281,0.030726755,0.542827,-0.219877,-0.20696324,0.5624935,-0.42835295,0.25322497,-0.28080317,0.08975373,0.43511337,-0.36313856,-0.855569,-0.6059754,-0.3408087,1.2189881,-0.301441,-0.61292106,0.21429887,-0.25149626,-0.19148266,-0.07936469,0.55800825,-0.10605586,0.0029549114,-0.683535,-0.020383198,-0.11935154,0.16257937,-0.099780254,0.029081132,-0.37953657,0.73969716,-0.028530348,0.5370716,0.22122778,0.3659576,-0.38516104,-0.5209319,0.1959804,0.88605577,0.41067198,0.0973403,-0.37313384,-0.12082407,-0.23154718,-0.18950136,0.05605744,0.7194114,0.6291835,-0.1351638,0.14233807,0.23741056,-0.09407012,0.09028731,-0.28329867,-0.24411003,-0.14814644,0.061996378,0.5068819,0.67418957,0.028866611,0.5477464,-0.07587123,0.32397017,-0.076331064,-0.36886474,0.44208765,0.81396693,-0.22263388,-0.39645994,0.5019695,0.54837185,-0.25783932,0.4889415,-0.5574395,-0.39669302,0.5164605,-0.12922353,-0.55505544,0.20778035,-0.3855788,0.04302606,-0.77891415,0.13573027,-0.21722384,-0.59821314,-0.46704423,-0.22478661,-3.063589,0.05045008,-0.15952902,-0.21980323,-0.115745604,-0.16789451,0.10694479,-0.52391344,-0.56175476,0.03913343,0.18026656,0.5867936,-0.06526787,0.07980977,-0.26844263,-0.3992361,-0.32474643,0.30656448,0.06470237,0.5006744,-0.2807629,-0.52776325,-0.08821604,-0.14883305,-0.31358933,-0.19547305,-0.50472915,-0.33525276,-0.06014369,-0.5212026,-0.19781259,0.5606669,-0.5275663,0.05934532,-0.27305692,-0.014809534,-0.0046450347,0.18433142,0.14151429,0.22041453,0.14204428,-0.1635142,0.03357096,-0.24722238,0.377204,0.031957548,0.33961034,0.43449754,-0.023805052,0.29736727,0.37311208,0.5773455,-0.2207575,1.1034956,0.4391381,-0.13447538,0.4024793,-0.21574047,-0.2980214,-0.7035338,-0.15044057,0.08225542,-0.4839698,-0.51649845,-0.12881327,-0.20501801,-0.86071444,0.44289038,0.029148648,0.45719525,-0.12563491,0.121831566,0.5080962,-0.10576803,-0.06036387,-0.09463308,-0.14656915,-0.2786057,-0.50587326,-0.60126114,-0.59984845,-0.025194734,0.96122825,-0.07374351,-0.07780422,0.24314044,-0.38561034,-0.06150953,0.23089716,0.19161287,0.11115428,0.509347,0.04710031,-0.6284565,0.42911625,-0.23898253,0.13030864,-0.5643142,0.12554157,0.48106512,-0.5956098,0.477149,0.17077088,0.1913878,-0.21169373,-0.63864684,-0.14580452,-0.050237108,-0.2282151,0.48882684,0.36845034,-0.68771183,0.42562518,0.1334478,-0.12965868,-0.7161169,0.5153803,-0.12138371,-0.22599036,-0.05950305,0.50791097,0.19264527,-0.0162692,-0.124682605,0.23091327,-0.3236879,0.3015837,0.13098186,-0.15365359,0.23325782,-0.2089715,-0.25479484,-0.79641366,0.14815092,-0.32011816,-0.4365111,0.19195724,0.08076924,0.1587605,0.32407165,0.020939223,0.31411645,-0.16430245,0.13183323,-0.22853903,-0.17538625,0.34282213,0.4692681,0.66146326,-0.4499301,0.54937387,0.11000916,-0.11464988,0.11578793,0.11528007,0.39530274,-0.093713894,0.40695578,0.18727304,-0.2701365,0.21263269,0.76581866,0.31563014,0.5205246,-0.107402876,-0.32711667,0.27553955,0.11991364,0.21752867,-0.14034867,-0.6268362,-0.092992,-0.2970225,0.21922565,0.4795628,0.040731844,0.46567905,-0.1222716,-0.100928806,0.13862345,0.14386205,-0.051870324,-1.2023263,0.19358256,0.23772955,1.0081828,0.4370237,0.065045245,0.008040518,0.5758407,-0.2361058,0.07937819,0.5236043,0.05506747,-0.40560424,0.52574986,-0.74658716,0.5896616,-0.06633451,-0.04174667,0.2144011,4.0266663e-05,0.46432343,0.7443783,-0.2825951,-0.045007214,-0.021165587,-0.41806716,0.06857444,-0.3156833,0.2830441,-0.5407581,-0.26792282,0.7628062,0.6581696,0.31440133,-0.25059244,0.023889484,-0.0035440773,-0.20575511,0.062320184,0.0698785,0.01284273,-0.25502515,-0.6008708,-0.11192246,0.55598515,-0.16958621,-0.071725,0.16370265,-0.19222024,0.19276053,-0.11064319,0.024045322,-0.051142357,-0.6846517,-0.12992665,-0.19004093,-0.45275438,0.45989636,-0.19319203,0.30111557,0.18737604,-0.020317925,-0.3581281,0.42292055,0.23453012,0.69674575,0.038222868,0.046793655,-0.29411912,0.08482614,0.23019521,-0.1857355,-0.20717452,-0.19278774,0.17317818,-0.61775845,0.2998767,-0.27526507,-0.38054383,0.027940858,-0.16394201,-0.04445718,0.6255308,0.088282846,-0.10137054,0.20524141,-0.06667968,-0.2758277,-0.1436696,-0.15348618,0.28764522,0.08061458,-0.2727039,-0.11110856,-0.11029232,0.011189379,0.1609177,-0.11725498,0.38634053,0.31554383,-0.076769084,-0.34266794,0.06990287,0.17540172,0.5184508,-0.018538307,-0.0032030493,-0.16865575,-0.2666138,-0.47841305,0.29769772,-0.100778416,0.34542343,0.09350271,-0.3829837,0.77454746,0.07538439,1.2026343,0.08170263,-0.51012987,0.16082269,0.50595933,0.0023755096,-0.04215586,-0.23518695,0.95601904,0.5195142,-0.03351897,-0.14728962,-0.260037,0.08388785,0.17742468,-0.28187448,-0.1552006,-0.041219007,-0.60164094,-0.030939326,0.16261303,0.1356484,0.03580328,-0.063644916,-0.1167583,0.26201868,0.17089501,0.3619384,-0.4571335,-0.14803278,0.21938702,0.22933596,-0.050607916,0.06860021,-0.44439226,0.38339087,-0.6736665,-0.034407254,-0.23297039,0.24685983,-0.4141497,-0.1589452,0.32841635,0.05630163,0.3707587,-0.3506001,-0.44402704,-0.38224792,0.3838401,0.032391146,0.15487158,0.5406257,-0.30168858,0.08286802,0.017345004,0.42939433,0.95785517,-0.29773915,-0.10926575,0.23999438,-0.51729095,-0.6449422,0.2605083,-0.490132,0.15260762,0.07740872,-0.2552133,-0.32503924,0.3139645,0.12568448,0.05097347,0.07293315,-0.54969704,-0.0046864785,0.18226147,-0.30536214,-0.18927911,-0.18641388,0.11251762,0.6195189,-0.28623503,-0.38593698,-0.031458817,0.35647246,-0.2250824,-0.56624895,0.07458049,-0.18609788,0.36110088,-0.044600785,-0.36586112,-0.17798084,0.081953086,-0.5086868,-0.04798849,0.44137967,-0.29776245,-0.080298826,-0.26036388,0.055347126,0.8397384,-0.22826463,0.27606085,-0.50106335,-0.5184541,-0.8670707,-0.4277777,0.10271616,0.31319016,-0.12071779,-0.5841864,-0.09237002,-0.33461213,-0.06378932,0.09026867,-0.50080216,0.33959448,0.23282677,0.38008288,-0.17142908,-0.8962599,0.044453293,0.17260309,-0.11834764,-0.5428775,0.51393306,-0.087383136,0.71964586,0.09765517,0.12408381,0.18454073,-0.74518335,0.098056614,-0.10924809,-0.10810253,-0.717994,0.1213667 -879,0.5057654,-0.3038157,-0.27332747,-0.09040812,-0.09202275,-0.04808254,-0.040411897,0.5698465,0.22431406,-0.41248834,-0.05611364,-0.17852037,-0.017323613,0.1489906,-0.1923771,-0.45462126,-0.094193906,0.08949855,-0.20010056,0.571689,-0.30026707,0.33174106,-0.061953723,0.324421,0.1473205,0.30810434,0.112970464,0.0034713666,-0.2559662,-0.12779325,-0.075393334,0.31466103,-0.38243192,0.18828283,-0.22187051,-0.34789288,0.08809838,-0.42855608,-0.35918573,-0.7075765,0.24779662,-0.7343878,0.41064036,0.091651164,-0.2936135,0.432126,-0.047632296,0.16011347,-0.22804521,-0.06894554,0.12305413,-0.12035029,0.056847285,-0.3163869,-0.04528815,-0.17946434,-0.41236734,-0.024175556,-0.24181433,-0.20150666,-0.27171147,0.07616757,-0.278004,-0.1781982,-0.04958178,0.51402485,-0.47063726,-0.059992496,0.12814869,-0.11425828,0.3651578,-0.60790664,-0.25321096,-0.12564152,0.113118865,-0.23731026,-0.1026757,0.43573084,0.15157671,0.4742223,-0.13586667,-0.15247406,-0.4488674,0.024365246,0.010575998,0.39888513,-0.2165796,-0.3798209,-0.0083494885,-0.06942605,0.012989683,0.12511857,0.23284216,-0.093274,-0.1430033,-0.0843937,-0.07228195,0.09259401,0.46723735,-0.2807863,-0.2685326,0.2863491,0.51149726,0.03838666,-0.094820775,-0.18618196,0.0029854467,-0.32450053,-0.2668077,-0.02275596,-0.26383877,0.5797681,-0.013043621,0.21381591,0.6118256,-0.09675423,0.084577575,-0.07457033,0.13884555,-0.069303595,-0.36589357,-0.25621027,0.3729077,-0.38366044,0.08992834,-0.11604377,0.62396467,0.073731415,-0.69005257,0.28428176,-0.3873143,0.080566175,-0.06669508,0.4109268,0.581718,0.44217154,0.33889467,0.5613009,-0.5670554,0.02069544,0.029546378,-0.28580576,0.058746424,-0.22220829,0.0008482615,-0.5033857,-0.04370873,0.12765485,-0.09168613,0.18572263,0.25255638,-0.41041374,-0.0033650121,0.33509833,0.7368434,-0.21022496,0.0017513196,0.58181113,1.0456487,0.95209086,0.011054758,0.958844,0.1476299,-0.24612331,0.38165146,-0.2550666,-0.6038867,0.16418651,0.4280357,0.00045019787,0.21691899,0.13248596,-0.024633206,0.46045983,-0.32928675,0.036574602,-0.1255553,0.11983571,0.05174936,-0.045867383,-0.5990145,-0.31461135,-0.19644454,0.117843,-0.12428498,0.26410112,-0.077965096,0.3177955,-0.0025933743,1.5547388,0.008703819,0.08448691,0.14206983,0.5014868,0.13004535,-0.08472336,-0.059677385,0.26253366,0.07138697,0.14877822,-0.45238906,0.089571044,-0.13858394,-0.5562297,-0.05930036,-0.3063065,-0.013190311,0.06524301,-0.514656,-0.23083314,-0.16425568,-0.19793501,0.35558942,-2.7979085,-0.033845283,-0.053829256,0.23985483,-0.2704565,-0.37315553,0.012427783,-0.40238392,0.39967576,0.4538647,0.48297614,-0.6288707,0.051571485,0.46789116,-0.43077672,-0.045540713,-0.48307458,-0.14408621,-0.080524065,0.39253324,0.09897906,-0.090846494,0.11465263,0.10519159,0.47084206,0.05278855,0.12962581,0.10193911,0.24203883,-0.14744285,0.32553452,-0.035605453,0.36210716,-0.2851427,-0.19330594,0.35449687,-0.32163355,0.16819698,-0.1818209,0.1777378,0.4381893,-0.3508288,-0.8429958,-0.52938104,-0.2361443,1.2096614,-0.063488565,-0.39096564,0.33710277,-0.23968147,-0.17998074,-0.1547919,0.40402266,-0.042408314,0.027729634,-0.73231214,0.057573866,-0.15304986,0.08249684,0.025679478,-0.093803026,-0.54319596,0.69796443,0.054850195,0.49943474,0.45596403,0.11764345,-0.2437714,-0.44011393,-0.031579774,0.73612744,0.46621454,0.23111637,-0.20781142,-0.10574827,-0.19608463,-0.058975816,0.13703528,0.38840705,0.65359306,-0.06848069,0.16116728,0.2263965,-0.003995295,0.008481589,-0.052445617,-0.2500406,-0.030549072,0.20478335,0.53539544,0.66542643,-0.17238021,0.28458756,-0.072839566,0.2854791,-0.2329662,-0.3793005,0.38709736,0.8750947,-0.09491159,-0.16913038,0.6546484,0.6054478,-0.21904305,0.5064773,-0.62882733,-0.38177413,0.38272712,-0.29851672,-0.42324173,0.13529132,-0.30358344,0.09235556,-0.9331811,0.21291906,-0.2355162,-0.34895363,-0.7664631,-0.10326044,-3.3603005,0.2528596,-0.28448874,-0.2288943,0.10669913,-0.04571619,0.15331322,-0.7781529,-0.38167733,0.20166369,0.061816026,0.5274164,0.038729955,0.033157777,-0.23345593,-0.36337286,-0.10953555,0.09905606,-0.00058907666,0.2964861,0.0069265882,-0.5813342,-0.029981613,-0.2012857,-0.43485656,-0.06583522,-0.45512435,-0.44303587,-0.19750914,-0.5979946,-0.3399671,0.5611474,-0.17599243,0.08572211,-0.16390464,-0.09392168,-0.17179285,0.30945206,0.14044362,0.28410295,-0.035490878,-0.054344997,0.062280156,-0.3593887,0.2008793,0.12165357,0.18446651,0.46738335,-0.28456995,0.10980951,0.5011756,0.5458237,-0.26305592,0.80259573,0.5379999,-0.13504806,0.29787332,-0.23945752,-0.19526939,-0.597277,-0.4663285,-0.027861131,-0.27015778,-0.48221725,-0.019872237,-0.47179964,-0.7845583,0.60460293,-0.12455965,0.27795142,0.07712283,0.044534422,0.435572,-0.3581743,-0.13696764,-0.16509032,-0.01964375,-0.42440593,-0.38098326,-0.6837891,-0.5222782,0.10174273,0.94836634,-0.0735697,0.045244697,0.17261118,-0.02649991,-0.05940281,0.06986799,-0.022813955,0.03505489,0.3273409,0.073816665,-0.5915638,0.5747809,0.14124323,-0.09608718,-0.36573508,0.13902976,0.43202418,-0.5385065,0.5067489,0.33602324,-0.023001682,-0.121815905,-0.62375295,-0.19152887,-0.15979896,-0.21826427,0.4897534,0.2612097,-0.6961155,0.39574495,0.40603238,-0.32604995,-0.68188494,0.46103013,-0.1106332,-0.40861186,-0.077169426,0.28492022,0.027394764,0.079403974,-0.038973983,0.25332218,-0.37987363,0.255329,0.29217115,-0.0115648,0.23124808,-0.11800638,0.11686855,-0.77536166,0.14856276,-0.3607457,-0.25165623,0.2230094,0.024601463,-0.012569949,0.27199915,0.086000904,0.43918782,-0.1633372,0.078780174,-0.045590267,-0.23510893,0.34724802,0.3286419,0.47375125,-0.36987135,0.49977887,-0.004132966,-0.13282199,-0.2839972,-0.021575456,0.45408365,0.17819424,0.21478367,-0.15849856,-0.278499,0.1606012,0.71095186,0.18883643,0.4198931,-0.029935332,-0.11385676,0.27956593,0.18442564,0.21494861,0.036128085,-0.4036016,0.113103025,-0.2155982,0.080177315,0.37575468,0.09661339,0.29855072,-0.17758451,-0.15408143,0.15404418,0.250029,0.1021132,-0.9468092,0.175822,0.10407445,0.8194772,0.57417005,0.17730041,-0.09695102,0.7162348,-0.17811607,0.075179696,0.4042513,-0.0974401,-0.6250392,0.6070283,-0.5999788,0.3958811,-0.029609716,-0.083813,-0.10527388,-0.13448715,0.40392467,0.5654198,-0.11002719,0.051476184,0.029527454,-0.3450939,0.047808178,-0.3247519,0.18511118,-0.4666006,-0.17957065,0.5603283,0.5474573,0.28920242,-0.13961239,0.020871429,0.11567863,-0.088842295,0.18139571,0.094178386,0.1314995,0.01760232,-0.60087395,-0.08959249,0.4590977,-0.004708918,0.09907386,-0.17400599,-0.25236097,0.10864403,-0.14396405,-0.22526485,0.08918246,-0.5932593,0.061834164,-0.33596885,-0.3501976,0.5294831,-0.04033872,0.30319235,0.054330714,0.20528159,-0.30499873,0.25887343,0.15453042,0.7256073,-0.03622191,-0.10032733,-0.2887026,0.18718325,0.1572745,-0.11701386,-0.15342909,-0.14863601,-0.014014379,-0.516898,0.40632036,0.05175327,-0.12964235,0.09264056,-0.2132861,0.06520204,0.48589644,-0.05084084,-0.27745205,-0.13601342,-0.091534585,-0.34812444,-0.25213906,-0.06707653,0.3930683,0.03600224,0.043291457,-0.12644884,-0.06344538,0.066613145,0.4931065,0.054979857,0.25333744,0.22376558,-0.10902412,-0.3820595,0.048911702,0.025376145,0.3400089,-0.09637952,0.066501126,-0.3139777,-0.40684927,-0.36781532,-0.08711567,-0.09385112,0.33414263,0.11113548,-0.17222244,0.7570363,-0.057997484,1.0466605,0.030326229,-0.4116738,0.0136237545,0.38751385,-0.17879263,-0.039278213,-0.33938658,0.97585493,0.5680923,-0.05157918,-0.11057455,-0.2441747,0.032852016,0.22742733,-0.14241362,-0.08461639,-0.053130787,-0.682544,-0.24241824,0.29826936,0.37980407,0.13390215,-0.05996644,0.10203626,0.24798249,0.14065424,0.33364442,-0.3882299,-0.17490754,0.40310812,0.23298746,0.09286005,0.15035671,-0.3869322,0.36305434,-0.55347353,0.07792829,-0.31325808,0.04389535,-0.37465802,-0.28466195,0.17176743,-0.0846323,0.3257355,-0.29906318,-0.35172728,-0.24000041,0.4982597,-0.08006497,0.10842634,0.4822779,-0.20806056,0.11758087,0.015876558,0.3973922,0.9509267,-0.31038803,-0.080339685,0.3566993,-0.26873606,-0.6438258,0.33487853,-0.092308216,0.085450396,-0.2197581,-0.2063126,-0.52403754,0.20269182,0.25030667,0.05643065,0.0038997093,-0.48779732,-0.046713956,0.21279217,-0.3456175,-0.2234588,-0.24761301,0.064407855,0.5321877,-0.21811499,-0.3297127,0.110611014,0.27179235,-0.24709328,-0.46387526,-0.024590492,-0.32397875,0.28251678,0.14856115,-0.41199917,-0.08232947,0.06661664,-0.3051468,0.05356912,0.2192578,-0.3038913,-0.014228014,-0.47806397,0.08772079,0.9162663,-0.050561003,0.19206749,-0.46526897,-0.51843613,-0.937617,-0.40680638,0.59924495,0.11059824,0.040317945,-0.5469716,0.19110054,-0.23390834,-0.0066408715,-0.1259518,-0.22192436,0.38395292,0.1861046,0.31167927,-0.16100611,-0.45259243,0.07152782,0.19467758,0.0012652775,-0.39342734,0.40209255,-0.043887593,0.8411717,-0.017259778,0.10885319,0.2949908,-0.4746605,-0.07450464,-0.1816758,-0.33685666,-0.44551653,-0.066282235 -880,0.2923384,-0.11301792,-0.49708357,-0.111555584,-0.21593182,0.11484976,-0.2605073,0.5026204,0.26645947,-0.36109835,-0.23131858,-0.23067532,0.25409544,0.33358055,-0.25236467,-0.8645584,0.12600984,0.2629562,-0.568722,0.6902016,-0.4496588,0.30026838,0.10021825,0.35896412,0.009058193,0.17506908,0.29683307,-0.057259664,0.03896667,-0.12309063,-0.1945689,0.46123543,-0.51391166,0.09826026,-0.32670546,-0.36553708,0.19246987,-0.5192653,-0.25383168,-0.8759127,0.25251144,-0.7300452,0.584236,0.24198528,-0.31146267,0.10573179,0.18182203,0.33459428,-0.1583299,0.0025852919,0.10035506,-0.21954934,-0.2414825,-0.1686509,-0.33020213,-0.4496962,-0.637809,0.08855634,-0.49987376,-0.27595934,-0.09809788,0.1533834,-0.25226218,0.09787674,-0.15025857,0.5013646,-0.3520744,0.009450054,0.36657265,-0.28585884,-0.0040866635,-0.54984784,-0.06933065,-0.05519541,0.36248758,-0.29308027,-0.24460696,0.14403114,0.33941975,0.66236854,0.019579776,-0.35179117,-0.08282008,-0.17249231,0.041270185,0.5671949,-0.09567412,-0.65670574,-0.20341277,-0.038161375,0.1599488,0.23250872,0.08653025,-0.39553443,-0.11720113,-0.19097929,-0.12791143,0.34944457,0.574323,-0.5058825,-0.19195332,0.16783875,0.5366385,0.13421527,-0.027689664,0.21443692,-0.013110464,-0.66636753,-0.14160372,-0.030688198,-0.18197322,0.6979614,-0.0887115,0.1494287,0.5197212,0.021023529,-0.050187778,-0.018349953,-0.01168586,0.020568753,-0.40726897,-0.3238137,0.35591614,-0.37923667,0.046111904,-0.40008172,0.7268762,0.31302077,-0.68707395,0.36900347,-0.5371896,0.20483539,0.05174261,0.62117463,0.62195325,0.16513464,0.23922561,0.5110237,-0.45910767,0.17679971,-0.099321805,-0.26766062,-0.116395496,-0.027115524,0.1785052,-0.46590754,0.17550255,-0.11126713,-0.108404875,0.21916993,0.4273416,-0.596648,-0.19958267,0.011780123,0.7751077,-0.27195075,-0.060455646,0.8581284,1.0439551,0.76870006,0.019660855,1.3551742,0.3107047,-0.1086053,-0.12715761,-0.06883349,-0.60231787,0.17894514,0.33813682,0.034088697,0.22904018,0.027498087,-0.10055837,0.4152184,-0.47300574,0.010254946,-0.119437546,0.045703888,-0.13421996,-0.06287113,-0.4916729,-0.21339503,0.05829538,0.099490404,0.2791507,0.29455438,-0.086636096,0.47657776,0.06692168,1.232953,-0.06417396,-0.018386213,0.1654609,0.15786281,0.35208175,0.039310392,-0.086913235,0.25089204,0.322014,-0.090178296,-0.54333806,0.026558459,-0.25256914,-0.30075693,-0.23054789,-0.24367593,-0.12715146,-0.049097486,-0.45848504,-0.018793143,-0.10085633,-0.25833246,0.3800889,-2.5769105,-0.15713316,-0.21608743,0.41538522,-0.021582939,-0.344946,-0.12976888,-0.5134672,0.44421288,0.28078917,0.38738194,-0.6224168,0.38540363,0.5171384,-0.5117256,-0.1907716,-0.74671495,-0.076882556,-0.04288521,0.38916484,0.05408722,-0.045228533,-0.026529752,0.2421748,0.53723675,0.117182106,0.08331548,0.12212377,0.43568262,0.04649352,0.2950283,0.14913139,0.5992065,-0.18899703,-0.18609837,0.36663297,-0.35419273,0.3232109,-0.13767897,0.09650158,0.32562292,-0.37945935,-0.5846975,-0.6190031,-0.33432662,0.8941136,-0.04638288,-0.49861392,0.21996339,-0.23072007,-0.28097692,-0.022937234,0.6301452,-0.15654565,-0.010274136,-0.70562965,-0.033564948,-0.045035712,0.16828986,-0.019154586,-0.041617975,-0.5753502,0.639889,-0.1644322,0.3194558,0.4397624,0.29009402,-0.08674895,-0.49828818,0.09264679,0.9159906,0.33061838,0.061572675,-0.21014255,-0.17766477,-0.31469855,-0.10716538,-0.10344132,0.7727676,0.6987831,-0.14932217,-0.029751837,0.2648365,0.20480813,0.19581455,-0.26243037,-0.32984537,-0.05213367,0.026327515,0.65189177,0.6789958,-0.347836,0.25358215,0.005031247,0.47284,-0.1970777,-0.3925036,0.432303,0.8877891,-0.12817009,-0.22522703,0.712382,0.41881225,-0.3084207,0.44408455,-0.6647174,-0.3116105,0.45513883,-0.1541109,-0.47428513,0.30315652,-0.25635812,0.17533779,-0.8749019,0.32808846,-0.21777773,-0.30843338,-0.58269554,-0.11259169,-3.1565118,0.19663455,-0.2641452,0.010112105,-0.22795358,-0.15713467,0.043127354,-0.48207322,-0.5798303,0.29628676,0.056753684,0.43992805,-0.1859445,0.13454607,-0.31018317,-0.29420382,-0.055480354,0.21699378,0.14169882,0.31375918,-0.18922012,-0.25474304,0.09755937,-0.21651922,-0.38741615,0.09285491,-0.7824835,-0.36670426,-0.076248236,-0.6583815,-0.2151599,0.6566154,-0.4545862,0.05460159,-0.27671164,0.09917007,-0.20820884,0.21524051,0.21676469,0.2500182,0.115619466,0.07113611,-0.0105191935,-0.34150383,0.10111448,0.028675178,0.21380393,0.2755013,0.0077302675,0.12950605,0.1904702,0.6439442,-0.004687828,0.7665415,0.34426668,0.037733767,0.2057728,-0.1829259,-0.43027624,-0.42228037,-0.2450656,-0.1160304,-0.40884224,-0.4482617,-0.16833092,-0.36305946,-0.7250993,0.5137355,0.077418834,-0.12438986,-0.01955506,0.3141152,0.47891173,-0.21571493,0.04051238,0.030692337,-0.03194441,-0.44683567,-0.28739932,-0.60425955,-0.4898936,0.10378386,0.7524651,-0.15262823,0.11361076,-0.03336418,-0.08153724,-0.08167512,0.38519993,0.19520721,0.13029875,0.6586305,-0.10760568,-0.6762698,0.49262798,-0.1004175,-0.51586145,-0.6547021,0.16290052,0.42764983,-0.7485876,0.6896999,0.45085213,0.09846275,-0.030356407,-0.5065178,-0.14798893,0.16241245,-0.23194847,0.46639988,0.18857667,-0.60119474,0.43398973,0.15288241,-0.09247183,-0.80811924,0.6313803,0.005775717,-0.4975406,0.12978873,0.4935107,-0.035417754,0.032042682,-0.203039,0.07793459,-0.341345,0.15899521,0.29351628,-0.1526558,0.36428306,-0.3431782,-0.12871735,-0.8131805,-0.065714575,-0.6290601,-0.10250134,0.10057592,-0.0136183975,0.038333558,0.063334376,-0.08513538,0.3638095,-0.504342,0.18767732,-0.1370552,-0.38651243,0.34662881,0.4342124,0.29146296,-0.2586932,0.6758363,-0.021331983,-0.09164902,-0.1938847,0.10480079,0.517874,-0.02519737,0.46116862,-0.17920011,-0.034629773,0.3147302,0.74881554,0.15023175,0.32549557,0.28338525,-0.00054153,0.34098542,0.05897916,0.08835128,-0.0898685,-0.40539196,-0.010130993,-0.21660581,0.043706916,0.42193168,0.083635755,0.51855004,-0.05091369,-0.45408118,0.10119703,0.14780317,0.17275171,-1.0557331,0.14642797,0.04558382,0.77593744,0.46167526,0.13737066,-0.029490102,0.4102932,-0.15098219,0.06610004,0.22395284,-0.041780163,-0.28576502,0.5569593,-0.4843827,0.44445375,-0.13555534,0.013355406,0.10161494,-0.15665706,0.29695866,0.77471226,-0.22752495,0.026250707,-0.13795604,-0.026489517,0.06277183,-0.38863915,0.099380866,-0.3516657,-0.3771891,0.6507766,0.5594736,0.29739907,-0.41153127,0.021583123,0.3269428,-0.1347566,0.023370566,0.035491552,0.099018894,0.08055758,-0.43919283,-0.1548014,0.5810758,-0.021770652,-0.05632758,0.019134903,-0.3825592,0.20711541,-0.021688279,0.048640687,-0.1843967,-0.73561317,0.111550696,-0.3511201,-0.45473334,0.5297409,-0.23003308,0.14363307,0.23833063,0.116896264,-0.41238025,0.40741378,0.00019777616,0.81761914,0.121842824,-0.058021978,-0.297834,0.13688318,0.2691557,-0.25289413,-0.089065835,-0.41910717,0.2581628,-0.59088016,0.32655352,-0.019793903,-0.2413173,0.0006680012,-0.061016615,-0.0036659082,0.42795867,-0.020733245,-0.17039837,0.22416793,-0.03478628,-0.1894411,-0.16229934,-0.12504223,0.3146209,0.18693566,-0.046548475,-0.11445756,-0.06562253,-0.28838742,0.37311095,0.090949945,0.30886352,0.38746324,0.08336905,-0.23440309,0.12485723,0.10065891,0.47064018,-0.13010393,-0.23185202,-0.12766744,-0.53482527,-0.36745414,0.1275555,-0.14793777,0.30612087,0.08364369,-0.09683082,0.72936696,0.18132421,1.1375222,0.01406045,-0.42542973,0.13582514,0.5474586,-0.016440192,-0.068022266,-0.28489387,1.1318582,0.5115249,0.04373208,-0.06663999,-0.30025962,0.12334199,0.10442993,-0.09760318,-0.07156099,0.0027228743,-0.5950801,-0.17390993,0.18554208,0.24644928,0.21055399,-0.11944902,0.21444543,0.1404533,-0.04338282,0.31667346,-0.6486177,-0.13336603,0.23573135,0.10175896,-0.020710047,0.10396166,-0.38847283,0.47182962,-0.43350145,0.0719119,-0.5592727,-0.0019601742,-0.2552363,-0.1663435,0.18064903,-0.17199683,0.3184058,-0.47553375,-0.27171603,-0.36705488,0.35055372,0.32920587,0.09365876,0.59773487,-0.14389415,-0.10084961,0.13538428,0.7550234,1.1417961,-0.27417532,0.062192682,0.3964689,-0.314805,-0.5099682,0.13758487,-0.40298575,0.038385555,0.021797316,-0.14078316,-0.52517307,0.120396785,0.09120711,0.009555042,0.095794536,-0.6235412,-0.21524054,0.35160968,-0.23437214,-0.27718323,-0.36006394,0.25013202,0.8326332,-0.10937481,-0.38650444,0.040924683,0.09425284,-0.2257963,-0.9155411,0.060519684,-0.3224922,0.2947201,0.1806369,-0.2894997,-0.17798987,0.1471425,-0.4086284,0.15410501,0.34804145,-0.31842643,0.09556586,-0.24117932,-0.11155169,1.0192429,-0.19989444,0.20249636,-0.5659936,-0.5461355,-0.8463057,-0.4004469,0.5272225,0.16198722,0.042741936,-0.544961,-0.12133904,-0.23945396,-0.031314038,0.11505556,-0.19657764,0.40951115,0.17424823,0.55824214,-0.15758051,-0.91329485,0.043949984,0.08377288,-0.4511124,-0.46124583,0.3505911,0.21819133,0.75618136,0.037886772,0.02631849,0.3325408,-0.44727203,0.05422617,-0.3284434,-0.02016342,-0.6943435,0.07316233 -881,0.50488985,-0.16454393,-0.5293517,-0.17000352,-0.2804147,0.11283132,-0.19164899,0.22966796,0.2953761,-0.22115152,-0.27858257,-0.071717896,0.17205404,0.40608552,-0.08338984,-0.9348218,-0.09683072,0.2184278,-0.7528382,0.31528282,-0.6920115,0.40532494,0.08465176,0.37255558,-0.037921224,0.31192365,0.31242493,-0.2703877,-0.001881847,-0.1477414,0.001709562,0.07089643,-0.7338455,0.188999,-0.11917861,-0.24860543,-0.053969033,-0.4819829,-0.29655758,-0.8223902,0.18812236,-1.1015633,0.48304027,-0.057529885,-0.14527997,-0.25594553,0.19936815,0.43873575,-0.45392036,0.26880074,0.23433624,-0.2729503,-0.2075465,-0.3408652,0.038843725,-0.42781323,-0.41618913,-0.09073082,-0.4661169,-0.29975873,-0.21805191,0.29973787,-0.42567953,0.030103339,-0.15775153,0.037750702,-0.45509374,-0.024919037,0.40287402,-0.32318053,0.27515322,-0.4272488,0.02883469,-0.111009054,0.5869647,-0.029324321,-0.21837792,0.43805504,0.37763426,0.41772333,0.31550005,-0.3164582,-0.09737485,-0.14134493,0.4304067,0.5564169,-0.22383429,-0.22813104,-0.29138714,-0.007046846,0.31268424,0.46296743,-0.03647619,-0.30726096,-0.05990433,-0.17113478,-0.12715667,0.48120254,0.5067518,-0.25251466,-0.4733175,0.38593844,0.6370714,0.3118057,-0.09104851,0.17280926,0.12177348,-0.6184031,-0.06707784,0.25833657,-0.016815342,0.43437943,-0.14848487,0.12874985,1.0361336,-0.30454525,0.054871082,-0.24763091,-0.16426541,-0.21858047,-0.3719996,-0.097563416,0.15488842,-0.53628254,-0.0765684,-0.26991266,0.7237438,0.3348997,-0.6453729,0.38772663,-0.58657676,0.2009686,-0.08672167,0.823376,0.6636678,0.31036207,0.31818193,1.0165786,-0.44096008,0.17596367,-0.014856293,-0.5425774,0.10046491,-0.28234753,0.15913388,-0.45449036,0.09080006,-0.14068995,0.14301008,0.012685271,0.5456363,-0.4427058,-0.13347921,0.031698607,0.752997,-0.43638816,-0.04188955,0.768663,1.0035214,0.80260336,0.08175176,1.3821406,0.49817038,-0.19579212,-0.016148897,-0.2823332,-0.8125706,0.19706582,0.32999313,0.021657284,0.3010598,0.05861008,-0.16492929,0.1803441,-0.5151123,0.06892106,-0.18485379,0.35175145,0.029694129,-0.06876951,-0.39869705,-0.109273836,-0.07618173,0.0131565835,0.3718505,0.17269666,-0.2423111,0.2852708,-0.08618906,1.3241944,-0.1490288,0.024156086,0.0024647932,0.54967844,0.29962462,-0.0051539997,-0.13136259,0.40174425,0.53422856,-0.11003124,-0.7101377,0.18064353,-0.20285495,-0.49114594,-0.08284019,-0.3213989,-0.14342757,-0.09893854,-0.24963096,-0.10238708,0.0109893745,-0.3351515,0.5498631,-2.3751843,-0.36613148,-0.092484936,0.3637454,-0.23432146,-0.09915709,-0.28957647,-0.50281394,0.34908274,0.23580784,0.5181509,-0.68815243,0.40880865,0.5599647,-0.50519025,-0.24905656,-0.7438758,0.04323358,-0.025244461,0.3957532,0.06595899,-0.06270509,-0.13152479,0.10114072,0.7678943,0.042002074,0.17570066,0.57075274,0.52909404,0.14089228,0.5712257,0.031315617,0.6981031,-0.2872933,-0.35178545,0.3737515,-0.41001034,0.39868677,-0.44366756,0.07745818,0.46821082,-0.34394816,-1.0925527,-0.6537354,-0.6041577,1.1052816,-0.40212804,-0.53147775,0.21104933,0.04355095,0.051297527,0.16357669,0.7422687,-0.12772274,0.20629069,-0.65877116,0.035722516,-0.09627259,0.176454,0.14613064,0.022031574,-0.23352772,0.78728706,-0.14952274,0.45848215,0.19394375,0.2137347,-0.12935421,-0.38662726,0.24029873,0.9127632,0.21158105,-0.012710436,-0.098868564,-0.33295992,-0.06676085,-0.3123015,-0.112751946,0.6662462,0.9047625,-0.1128799,0.099803954,0.34107834,0.009190578,0.031099655,-0.06692035,-0.2535115,-0.07303938,-0.08783539,0.45479548,0.8173517,-0.09405209,0.41140193,-0.33552557,0.25746262,0.02391649,-0.51816136,0.7594744,0.50570273,-0.19547534,-0.017306464,0.42761496,0.43321735,-0.42925632,0.5728379,-0.75039935,-0.31536564,0.67423207,-0.13679439,-0.44477364,0.26162207,-0.1956161,0.022183584,-0.80072397,0.40373814,-0.28308818,-0.45149463,-0.32617056,-0.15381287,-3.3714647,0.2803784,-0.21711275,-0.13899207,-0.47372425,-0.06872897,0.30941027,-0.44807333,-0.57098013,0.21702436,0.18497664,0.6508404,-0.034824196,0.1244918,-0.28023925,0.07652451,-0.09619357,0.15551153,0.059461173,0.34041616,-0.114113316,-0.35292667,-0.03199525,0.0041198637,-0.5219122,0.16777219,-0.69716775,-0.5704882,-0.0022181226,-0.48049784,-0.22281653,0.74285597,-0.7025417,0.06415132,-0.26432115,0.13881999,-0.34504122,0.346522,0.16300681,0.28955132,0.13379279,-0.12238769,-0.114476904,-0.20001896,0.65054893,-0.08907627,0.27615166,-0.03541163,-0.23453505,0.09685973,0.3617042,0.51696754,-0.21622899,1.0258685,0.19748658,-0.09499623,0.13334237,-0.32153624,-0.22791123,-0.72196126,-0.33755776,-0.081474155,-0.5587834,-0.6854983,-0.13878714,-0.3022396,-0.90074825,0.54331243,0.15757436,0.3100425,-0.09912639,0.19029823,0.33421662,-0.1407585,0.077431954,-0.13322505,-0.14782964,-0.5597294,-0.29086292,-0.5557134,-0.5009907,0.12225921,0.73680335,-0.35841992,-0.05894953,-0.07740052,-0.33862352,-0.06878535,0.03216789,-0.0795019,0.1721746,0.5430974,0.023949413,-0.6074574,0.46961787,-0.06831752,-0.1431382,-0.7398513,0.097741164,0.7142249,-0.889099,0.70105004,0.4562271,0.005270859,0.25924692,-0.49828145,-0.2809361,-0.15511261,-0.14432806,0.33811834,-0.068935186,-0.82606167,0.5597616,0.3247205,-0.5712887,-0.6936748,0.41108423,-0.114973456,-0.17471243,0.11223371,0.35683537,0.16864857,-0.06037806,-0.37535217,0.2033436,-0.44596407,0.37708193,0.06127242,-0.11865546,0.45331576,0.033559024,-0.5813237,-0.7657516,-0.046681546,-0.47364622,-0.27699023,0.2621609,-0.20512453,-0.16145024,0.11550697,0.23681863,0.43912455,-0.3763025,0.07460882,0.020507185,-0.40080833,0.13568267,0.45049095,0.47822702,-0.43327475,0.66053116,0.19491495,-0.23774458,0.22499411,0.19938253,0.53235984,0.17111863,0.44044983,-0.22587845,-0.052665032,0.2922689,0.91354597,-0.014204287,0.50663084,0.09566759,-0.24576777,0.49122518,0.15448959,0.2806733,-0.13448313,-0.42832822,0.166344,0.05826404,0.17970978,0.4325798,0.51731515,0.39742863,0.18423519,-0.16499138,-0.061703384,0.3725659,-0.07168204,-1.1266215,0.39681005,0.36867338,0.8178358,0.3293956,-0.1151056,0.06717504,0.58569694,-0.14328796,0.13142787,0.3766573,-0.16423838,-0.47647893,0.666319,-0.70439756,0.29202864,-0.2995361,0.030222306,0.3157614,0.35524148,0.4204973,0.8567832,-0.12669423,0.045554396,-0.16349055,-0.11141299,-0.084766254,-0.3311669,0.16792808,-0.457657,-0.44812113,0.7479123,0.4504586,0.35682958,-0.15088224,0.026523145,0.014110274,-0.23617122,0.1759871,-0.07898048,0.020655572,0.1906512,-0.6989146,-0.18388955,0.5695184,0.014097352,0.037243158,-0.140431,-0.24381536,0.13342085,-0.38629267,0.030226482,-0.08677114,-0.8014135,0.03858257,-0.3393079,-0.4092689,0.28440526,-0.19381224,0.21263528,0.28151008,-0.021707136,-0.12069383,0.2811341,-0.0073905266,1.060344,0.15361659,-0.55656564,-0.5559422,0.09546929,0.3241744,-0.4400601,0.04665061,-0.40038025,-0.017932829,-0.4069448,0.6424475,-0.32796142,-0.4101292,0.41715235,-0.41791227,-0.22507717,0.55923986,-0.14077748,-0.23077825,0.19331929,-0.37022063,-0.36952102,0.27629,-0.29671928,0.25921634,0.31139252,-0.10322352,-0.06644442,-0.22342198,-0.21628428,0.47470462,-0.06174544,0.42157158,0.24058221,0.14540918,-0.07272583,0.013425791,0.27802557,0.5693581,0.21937889,0.06656045,-0.2027026,-0.449621,-0.27089602,0.14945371,-0.19197315,0.19596142,0.088105015,-0.3320011,0.81499225,0.18800987,0.98618835,0.31041056,-0.38502425,0.1759807,0.56506944,-0.13529226,0.027012685,-0.5481399,0.8949554,0.5188246,-0.21787244,-0.0047441847,-0.5435846,-0.19100784,0.47246596,-0.4785647,-0.024888309,-0.095083565,-0.71491784,-0.49727422,0.2676349,0.16318448,0.1904545,-0.025369756,-0.025481822,0.07988365,0.19365095,0.52433276,-0.84405065,-0.27247328,0.18015625,0.25607532,-0.07849275,0.08913867,-0.20949635,0.52026814,-0.60680896,0.12198452,-0.5406407,0.120759405,-0.28594843,-0.31991082,0.1724208,-0.10267247,0.48854,-0.24406777,-0.49869233,-0.0014780256,0.3811909,0.19356214,0.20791116,0.6849293,-0.39825252,0.03813358,0.14116724,0.6509713,1.3647168,-0.548132,0.19778985,0.4920597,-0.40942332,-0.5128103,0.47228998,-0.42777854,-0.09438447,-0.1351324,-0.5945221,-0.5396075,0.30071095,0.15475792,0.1311517,0.1844539,-0.6432284,-0.056105394,0.32362863,-0.10988426,-0.33872733,-0.24083987,0.49637046,0.99136925,-0.35694605,-0.48196313,0.28787053,0.2676032,-0.43978184,-0.59877884,-0.07449167,-0.29000002,0.3444503,-0.04171054,-0.18224955,-0.024335958,-0.03095704,-0.49779797,0.20107096,0.21514997,-0.34579155,0.15899219,-0.0089021325,0.02381023,0.8613015,-0.27475855,-0.05413151,-0.8690872,-0.35284525,-0.9325123,-0.38751128,0.31583154,0.3211417,-0.017571606,-0.2741643,0.013991434,-0.14570038,-0.09043885,0.063744955,-0.7800401,0.37542835,0.07458269,0.6036578,-0.3179603,-1.0620599,0.14057069,0.118605174,-0.37448466,-0.85728234,0.5954183,-0.22161537,0.76814556,0.025040297,-0.12872015,0.05173727,-0.47460893,0.100642495,-0.42939156,-0.11871871,-1.0401073,0.23944257 -882,0.48121977,-0.11508049,-0.42146847,-0.103425376,-0.4943889,0.23144172,-0.24792029,0.1681826,0.2737748,-0.3599821,0.13266174,-0.10281504,-0.11610104,0.3243913,-0.24425754,-0.80046815,0.07177873,0.019855082,-0.5324984,0.28519243,-0.5621892,0.47651097,-0.029537043,0.4142095,-0.029915733,0.24070354,0.25992742,0.11567319,-0.06992249,-0.19188207,-0.13530105,0.025955152,-0.6006712,0.14667135,-0.06715553,-0.36712578,-0.054841485,-0.36751637,-0.30351964,-0.7044461,0.40367746,-0.940135,0.57692266,-0.096731946,-0.41491273,-0.04992493,0.0957388,0.23614031,-0.19274357,0.15870538,0.22427347,-0.40989923,0.16910067,-0.15310988,-0.5090777,-0.6996142,-0.574763,-0.032313026,-0.66676813,-0.22425547,-0.3624607,0.2717339,-0.37726027,-0.066412136,-0.28033578,0.47527474,-0.39359862,-0.008569344,0.1669715,-0.23470823,0.18194199,-0.5711727,-0.11079832,-0.1126352,-0.0029996932,0.14010294,-0.1236534,0.29875213,0.37502548,0.42373943,0.14758778,-0.3028473,-0.30012003,-0.07495246,-0.010398475,0.5874294,-0.06251868,-0.23702659,-0.40223625,-0.1562406,0.3820008,0.2597822,0.11237492,-0.4321364,0.11101257,0.103561334,-0.16322559,0.54004645,0.47919428,-0.35394132,0.011207272,0.36897156,0.25944793,-0.10930265,-0.3538981,0.2058831,0.002478508,-0.4356208,-0.14302363,0.2252991,-0.004859956,0.6423425,-0.11295045,0.1845801,0.71480304,-0.2703906,0.014908884,-0.088560246,-0.082932755,0.017624822,-0.27232292,-0.18576808,0.15180779,-0.4123906,0.08968518,-0.32515943,0.82807356,0.096334,-0.7973579,0.42982262,-0.39165443,0.027251076,-0.11842755,0.57539344,0.5735802,0.5356728,0.039352212,0.99146754,-0.5275178,0.07185147,-0.02190977,-0.30746958,-0.011866986,-0.06483842,0.0917833,-0.4238564,0.21768942,0.039170988,-0.083368786,-0.089603744,0.48091713,-0.32961968,-0.06470237,-0.12661846,0.8008235,-0.35863858,-0.046871733,0.83504385,1.1865833,1.0127517,0.068530075,1.2036074,0.38567713,-0.011293888,-0.1266085,-0.17346048,-0.3397527,0.16584603,0.33959386,0.36328205,0.23815322,0.015310908,-0.17841785,0.38345394,-0.27297685,-0.15765862,0.04592947,0.25505146,0.10856644,-0.09725811,-0.41433045,-0.12871295,0.2365536,0.17535795,-0.037279837,0.2126253,-0.3380419,0.44591275,-0.007658739,1.1239927,0.028950674,0.10776677,0.02012817,0.59589595,0.23553285,-0.15201446,0.15863937,0.17957227,0.2645361,-0.068795465,-0.5515538,0.06492121,-0.41621742,-0.47538865,-0.1999584,-0.2984052,-0.07052694,-0.1015131,-0.49220237,-0.19079074,0.08654149,-0.3186194,0.39546907,-2.4226053,-0.08728354,-0.2723908,0.40054676,-0.14442901,-0.34999937,-0.080035694,-0.5059008,0.39495334,0.37703496,0.30008525,-0.52153957,0.49550763,0.3933616,-0.17657022,-0.12678835,-0.7803792,0.13137835,-0.16205102,0.44229972,-0.04392337,-0.045015845,-0.18174252,0.25439805,0.8767712,0.14748304,0.043867633,-0.000980091,0.34355316,-0.058554288,0.46603107,0.036905702,0.604427,-0.20123383,-0.106011204,0.37741014,-0.49927014,0.11918948,0.05485781,0.14673895,0.41219488,-0.50136876,-0.74850553,-0.71037036,-0.44835818,1.1762011,-0.28226516,-0.6796532,0.34502488,0.08969545,-0.28038022,0.112980984,0.54209954,-0.031131828,0.044618748,-0.5524233,0.0269847,-0.12816483,0.13943094,-0.12516023,0.11537569,-0.32054678,0.610377,-0.2671413,0.54179174,0.31332567,0.3700972,-0.07795703,-0.44913763,-0.041630115,0.7777967,0.45599794,0.06932425,-0.061176784,-0.18693008,-0.18865229,-0.35865778,0.13808052,0.606045,0.75489354,-0.09074764,0.07411003,0.28073025,-0.3211773,0.08855322,-0.09388146,-0.30280045,-0.034193587,0.11239186,0.47579974,0.5082037,-0.05288623,0.35147968,-0.13162552,0.32206523,-0.3011376,-0.47216472,0.35215673,0.81592155,-0.21283413,-0.25874218,0.5429339,0.42130682,-0.36172745,0.35665885,-0.6337516,-0.24378143,0.6956398,-0.03419874,-0.5538854,0.024886219,-0.3363062,0.0058642407,-0.8357342,0.49184448,-0.19238065,-0.8907705,-0.31445286,-0.36947525,-3.944397,0.14269431,-0.16875495,-0.11686203,-0.13322796,-0.22788659,0.37509042,-0.47252065,-0.40663752,-0.028279563,-0.042228572,0.5893208,-0.02503015,0.14516108,-0.35892043,0.0736904,-0.42025727,0.27231064,0.09513649,0.34904996,-0.022225471,-0.3118662,0.21273856,-0.31941244,-0.6664704,0.021514352,-0.5828743,-0.44716942,-0.034967635,-0.41059628,-0.35301098,0.75012225,-0.33722576,0.057310667,-0.3238613,-0.008418918,-0.18040864,0.3620272,0.2568,0.17400007,0.06421211,0.006668721,-0.010101765,-0.419707,0.26290044,0.11057527,0.17317854,0.3943754,-0.20027441,0.10564751,0.52432615,0.59053534,0.02466956,0.8426784,0.070056185,-0.13725875,0.42343426,-0.21610479,-0.36278698,-0.70686305,-0.39634302,-0.08231417,-0.34419802,-0.426705,-0.05409276,-0.3814506,-0.6988983,0.3778072,0.09274556,0.2728645,-0.25048432,0.27971184,0.2536043,-0.070712924,-0.027326887,-0.0453106,-0.18566313,-0.44176844,-0.44998777,-0.6943596,-0.66815025,0.08977448,1.204407,-0.02444277,-0.20683426,0.03369802,-0.23937458,0.03336014,0.08914301,0.18905191,0.081027985,0.15472552,-0.19363254,-0.63943493,0.32291454,-0.28494263,0.02319427,-0.64138705,0.16115545,0.8357372,-0.53125226,0.5064319,0.3116523,0.40313625,-0.123732015,-0.6467584,-0.20803247,0.11270311,-0.20819692,0.6431826,0.11195275,-0.8383981,0.49216643,0.071569435,-0.2369261,-0.47939762,0.50088185,0.040478174,-0.16638453,-0.022488762,0.41229212,0.107391916,-0.13567199,-0.21742694,0.2535265,-0.61857265,0.33578172,0.31227016,0.07577231,0.64902,-0.1559846,-0.25924143,-0.6254145,-0.23852828,-0.50673497,-0.2159235,-0.031366125,-0.050737858,0.032148484,0.25453126,-0.13186227,0.503673,-0.20816647,0.17618027,-0.14147083,-0.30076572,0.499746,0.51972514,0.39670992,-0.417116,0.62546796,0.1877868,0.021561272,-0.042126402,0.04943009,0.56824094,0.23157352,0.42762983,-0.093534395,0.0014007569,0.041181922,0.6197632,0.23375721,0.5233971,0.18912888,-0.3874863,0.40891916,0.19889268,0.18818855,-0.0806571,-0.40127423,-0.05382425,-0.09289937,0.12611136,0.38678408,0.16440298,0.37610167,0.024074525,-0.08977743,0.16310813,-0.11836215,-0.2594367,-1.2049505,0.3065403,0.075424165,0.6977587,0.3138354,0.01801874,-0.14075002,0.6161377,-0.21480182,0.025723653,0.43808368,0.21017425,-0.21987745,0.55708086,-0.55072284,0.41114154,-0.21318194,-0.0014267584,0.3004885,0.27583688,0.534004,0.8888238,-0.06123205,0.06526708,-0.0503801,-0.27107814,0.14888248,-0.26704362,0.1692157,-0.5687035,-0.33313382,0.57274014,0.32793966,0.27334315,-0.3140968,-0.16513415,0.22794005,-0.07612273,0.14060077,-0.108410336,-0.23068355,-0.15468079,-0.5982465,-0.38866603,0.46853366,-0.1298994,-0.031858746,0.033894364,-0.31587118,0.22651638,0.0077221077,-0.17549516,0.19571029,-0.70490354,0.014089218,-0.25465143,-0.48804146,0.25713456,-0.4468289,0.3239299,0.11331404,-0.052665677,-0.31089336,-0.037709173,0.34366998,0.73027617,0.08413971,-0.20895618,-0.36572233,-0.15662776,0.25896823,-0.36591414,0.00025792918,-0.20564528,0.16273932,-0.5973638,0.39380944,-0.3812264,-0.23288694,0.1933159,0.024090698,-0.005400477,0.4298469,-0.15468654,-0.111259274,0.34157822,0.058399566,-0.3817207,-0.08905554,-0.18912227,0.35847715,-0.12385731,-0.15998705,0.13392839,-0.14027892,0.07895445,0.45628846,0.05933067,0.28082338,0.1804839,-0.04923497,-0.43328384,-0.058054145,-0.12434907,0.45403624,0.015699107,0.09662322,-0.13790008,-0.36479136,-0.24107264,0.21374823,-0.16673121,0.15569665,0.09680922,-0.563587,0.7963266,0.0672227,1.2538645,0.05177756,-0.4278901,0.044894416,0.52806103,0.07864303,0.19570342,-0.4304218,1.0969234,0.64099586,-0.21080138,-0.1259624,-0.48153773,-0.19956547,0.17736273,-0.29926005,-0.36149815,-0.17378059,-0.71728694,-0.10144978,0.024579203,0.1800669,0.08582971,0.013067188,0.03546129,0.3328412,0.096130274,0.51403195,-0.5297774,0.0901169,0.39478716,0.3115764,0.040175352,0.2029448,-0.29685658,0.36102527,-0.6969189,0.33698788,-0.31632197,0.10596783,-0.025246393,-0.25170952,0.22926396,0.094972655,0.2742274,-0.1447112,-0.3455982,-0.22458553,0.7174608,0.09250859,0.23937885,0.7349577,-0.30144176,-0.05536653,-0.05297972,0.5773641,1.4427732,-0.03252901,0.19964409,0.3073079,-0.40239665,-0.5969454,0.17023157,-0.33738062,0.052366663,-0.09923526,-0.26350418,-0.36520997,0.30322775,0.06458644,-0.17439607,0.16624708,-0.36153716,-0.24280551,0.34811732,-0.3092292,-0.28751394,-0.32532462,0.39212477,0.6394806,-0.31160024,-0.3900256,-0.13118668,0.41932952,-0.26995933,-0.6703257,0.12964204,-0.08327751,0.3925553,-0.021478152,-0.39904305,0.07987178,0.29995677,-0.47870934,0.022576664,0.2885819,-0.3482996,0.04397663,-0.28861842,-0.0717728,0.9519195,0.13962673,0.100604534,-0.9073789,-0.5529059,-0.8850478,-0.47737873,0.06902874,0.25753254,0.004293116,-0.45650995,-0.28667578,-0.17354201,0.010413806,0.04404258,-0.6495303,0.27907082,0.00458618,0.6011074,-0.082705975,-0.79282963,-0.07105125,0.18188994,-0.267969,-0.53165585,0.6144562,-0.1272859,0.75058675,0.23445949,0.08145467,0.07798492,-0.6110079,0.42513084,-0.22244157,-0.3063611,-0.61401874,0.1512228 -883,0.26586443,-0.016535621,-0.5182121,-0.20805505,-0.29732674,0.21980876,-0.312302,-0.03878878,0.34455016,-0.16169812,-0.1162911,-0.009563684,-0.053773362,0.4491956,-0.23313233,-0.9513601,0.13518898,-0.013897523,-0.54728466,0.3643279,-0.3370441,0.39300266,0.16310652,0.4818711,0.047063496,0.25354597,0.20995982,0.06443817,-0.10743503,-0.23840687,-0.15326168,0.2929408,-0.5311569,0.15868305,-0.0693273,-0.38329744,-0.06677393,-0.26617426,-0.29314494,-0.6403853,0.49952602,-0.80598694,0.56931734,0.07672504,-0.23106083,-0.15678342,0.28054932,0.12892225,-0.2765412,0.05999333,0.23747794,-0.36220935,-0.15983818,-0.106088966,-0.36879426,-0.47467673,-0.60614884,-0.023673791,-0.6105663,-0.124543376,-0.14188607,0.32053804,-0.2856375,-0.005311379,-0.124508254,0.30875066,-0.2543878,0.17741624,0.27072793,-0.4564757,0.0012001899,-0.5169523,-0.23547642,0.023870882,0.37202275,-0.048876606,-0.22807215,0.16718377,0.5258779,0.6178838,0.18001643,-0.2592673,-0.27366704,-0.25378606,0.1549487,0.56999177,-0.20651422,-0.34502938,-0.1976408,-0.08674427,0.46320403,0.28658843,0.030536365,-0.41603428,-0.0006932983,-0.14355703,-0.1179115,0.5256168,0.52064484,-0.33563474,-0.042656496,0.32418835,0.2209758,0.23023184,-0.22804877,0.25415075,-0.058265686,-0.52629524,-0.17377976,-0.034591395,-0.028572317,0.55628836,-0.09149544,0.2631716,0.6868943,0.043054298,-0.057653163,-0.044815842,-0.07627083,-0.0014685759,-0.22229382,-0.030968199,0.20377384,-0.3250392,0.119917005,-0.09055208,0.5141684,0.021624615,-0.9092313,0.35256228,-0.5323463,0.07781002,-0.01398468,0.6457554,0.82966816,0.33572516,0.20310618,1.026904,-0.54408157,-0.03998507,0.0704862,-0.38428056,0.010277975,-0.081489876,0.019018687,-0.4835285,0.17576057,0.03544803,0.21231422,0.3519713,0.36758277,-0.32246095,-0.10452617,0.10574537,0.76788604,-0.26595265,-0.02373788,0.89061314,1.0609231,0.78424674,-0.0056513133,1.3388727,0.22534722,-0.08662189,-0.15572762,-0.08857376,-0.5453197,0.13207015,0.32161793,-0.12819985,0.3600734,0.112731494,0.0010585842,0.4105759,-0.29398623,-0.1929167,0.04654204,-0.04545853,0.20059255,-0.099871054,-0.284752,-0.013779842,0.19771184,-0.004978001,0.16021736,0.13255818,-0.2978134,0.35373944,-0.034480486,1.011553,-0.040300764,0.14178747,0.09214588,0.32799038,0.2805104,-0.08347632,-0.03927948,0.23935214,0.3037894,-0.008074701,-0.52854675,-0.046096463,-0.24911691,-0.47567332,-0.20986438,-0.35276428,-0.45358178,-0.031905375,-0.25899434,-0.14031482,0.054456793,-0.38648033,0.48080364,-2.7307086,-0.28782302,-0.29550093,0.27764323,-0.12876406,-0.21536872,-0.2688865,-0.36288726,0.34935907,0.36495012,0.38084266,-0.6184912,0.3799849,0.456091,-0.38498878,-0.32893556,-0.49915048,0.0013883802,0.0041902075,0.40307996,0.03175253,-0.25286624,-0.19253384,0.26521876,0.74812734,0.10046367,-0.053325567,0.25257307,0.5877313,-0.13999303,0.47370228,-0.057236332,0.6619838,-0.22509506,-0.21661726,0.27596638,-0.53078455,0.35827044,-0.045913942,0.10180605,0.4228707,-0.29539034,-0.91780925,-0.5550748,-0.3702744,1.2599139,-0.37119272,-0.5343667,0.32190222,-0.122885905,-0.41605332,0.061095055,0.7942552,-0.14330222,0.13717738,-0.580247,-0.03717282,-0.27253938,0.31767416,-0.06344907,0.035867017,-0.37734583,0.8093304,-0.08571366,0.53449154,0.34092978,0.15374213,-0.27785224,-0.31555018,0.06774773,0.8922724,0.39094764,0.08769842,-0.11801267,-0.020000495,0.023595516,-0.34973258,0.06355692,0.9318637,0.4465143,0.08155607,0.13192672,0.26435944,0.06143337,0.019749692,-0.10733518,-0.4457273,-0.17905995,0.1234577,0.7054113,0.86703277,-0.19730495,0.36716878,-0.002625658,0.22159061,-0.0899639,-0.49142677,0.528201,0.74271965,-0.1147668,-0.30675438,0.70772374,0.3681417,-0.35662988,0.31635416,-0.6086858,-0.43094617,0.6116812,-0.0031274145,-0.5795778,0.31947392,-0.3426314,-0.117272295,-0.7232723,0.21543096,-0.108267434,-0.62481594,-0.41068473,-0.28018257,-3.8293648,0.11669832,-0.30088648,-0.05441687,-0.36819118,-0.12623021,0.2259249,-0.46794793,-0.6811593,0.06741168,0.13883665,0.3515837,-0.19515309,0.2276286,-0.2522752,-0.22555135,0.009446456,0.3356147,0.015760817,0.2336234,-0.012637377,-0.21333869,-0.14086545,-0.10940517,-0.44673985,-0.0018046453,-0.64077187,-0.5446736,-0.05974876,-0.5051428,-0.059275277,0.7262373,-0.73822266,-0.097112946,-0.42583132,0.047166817,-0.22727595,0.1651923,0.11402297,0.347172,0.10746314,0.09442889,-0.16809466,-0.15334117,0.36018687,0.15699056,0.35294768,0.38149422,-0.019365687,0.05599531,0.3973983,0.5745464,-0.13660572,0.89978826,0.19823262,0.08822293,0.34440917,-0.2352771,-0.44765365,-0.7217935,-0.2843805,0.10426628,-0.55452216,-0.4924226,-0.16113879,-0.29936007,-0.83997756,0.44851002,0.11257474,0.14921233,-0.23588115,0.29343545,0.43822795,-0.15858458,-0.029575301,0.0055234064,-0.19653963,-0.34288964,-0.37093413,-0.5329907,-0.5797011,-0.10636968,0.9985755,-0.17898189,-0.0017519078,0.16520251,-0.31517667,-0.08057522,0.061598063,0.40476844,0.016987223,0.5024858,0.089994505,-0.7596871,0.5180716,-0.5335902,-0.14960378,-0.615706,-0.10970464,0.7639376,-0.67516994,0.7481372,0.5314839,0.2462473,-0.06994895,-0.663215,-0.3112993,-0.08725221,-0.21213141,0.61590326,0.30661806,-0.5500831,0.51790446,0.124587685,-0.06277725,-0.6481038,0.5150002,-0.19879898,-0.25207722,0.14825305,0.5032117,-0.071108386,-0.19146988,0.25532296,0.21521536,-0.28014973,0.4049377,0.20182054,0.0036118764,0.47622287,-0.018525656,-0.34858686,-0.6430155,0.09761664,-0.44706675,-0.28617746,0.08725259,-0.046392083,0.20029028,0.14042756,-0.25443652,0.46584937,-0.39672107,0.20196556,-0.121069856,-0.20206524,0.15436564,0.54202455,0.43162835,-0.5595357,0.5823096,0.18353559,-0.14231464,0.18146946,0.1684994,0.5607245,0.14147322,0.41137555,-0.308011,-0.04242655,0.13742714,0.6741816,0.15456411,0.2012772,0.11482433,-0.10964791,0.37309152,0.14033608,0.09306737,-0.07996743,-0.50775844,-0.15197101,-0.1689932,0.17673641,0.3933099,0.24985123,0.43160313,-0.1547665,-0.26891372,0.24679478,0.18377136,0.09944209,-1.186454,0.30746394,0.13555847,0.8893971,0.344307,0.12389393,-0.027949674,0.5479496,-0.1687784,-0.014586996,0.46895,0.030540068,-0.34042275,0.5790339,-0.44787928,0.5014979,-0.19630477,0.048197433,0.14950086,0.23388276,0.2766442,0.87828815,-0.16856673,0.009351836,0.054186013,-0.3862052,-0.08995358,-0.41726843,0.14232546,-0.45830944,-0.46492803,0.6473688,0.55851084,0.23851076,-0.32577708,-0.035539273,0.0290791,-0.09349087,-0.17078583,-0.088296264,-0.024291933,-0.24841274,-0.7490146,-0.18797135,0.71416664,0.08916647,-0.019255606,0.058192033,-0.26213744,0.26410004,-0.17369758,-0.05624914,-0.11432317,-0.58180916,0.013339543,-0.4303138,-0.79446083,0.18198846,-0.35210794,0.23634195,0.26665455,-0.13306418,-0.22261332,0.39925548,0.12855464,0.8722074,-0.0870215,-0.11762762,-0.27419335,-0.09094817,0.19112168,-0.25656253,-0.28692344,-0.40648687,0.24476722,-0.4369822,0.47019035,-0.2671289,-0.19165108,0.016301192,-0.11844186,0.06590247,0.35506445,-0.1752886,-0.13557875,0.31280196,-0.10608235,-0.29852623,-0.051609866,-0.3978496,0.2395684,0.07724713,0.029097924,0.07122937,-0.25027692,-0.28544542,0.057939712,0.015209088,0.41271496,0.42030495,0.046761062,-0.1739302,0.07485587,0.046600483,0.53873146,0.19269392,-0.1026789,-0.105349466,-0.5790813,-0.3744221,0.5243937,-0.07709217,0.18107912,0.014763555,-0.45593327,0.697753,0.17358273,1.1795824,0.0663923,-0.47073427,0.030883243,0.60394704,-0.15044579,0.15564911,-0.29058093,0.99233097,0.6228424,-0.034507845,-0.1125576,-0.41971746,0.046934567,0.21254778,-0.38009235,-0.25037324,-0.06899924,-0.5498298,-0.13866965,0.026280155,0.16271432,0.052619662,-0.06551465,-0.03107767,-0.03127614,0.26257375,0.24834475,-0.71630895,-0.13455716,0.37112528,0.27278012,-0.09097452,0.0043979837,-0.32842514,0.42111868,-0.68834454,0.0033386166,-0.73978966,0.0873259,-0.22395454,-0.16387087,0.17731388,-0.17807521,0.36980087,-0.31309742,-0.11493946,-0.21262752,0.46215776,0.22424981,0.24330086,0.7189256,-0.27321702,-0.12612678,0.21771026,0.60509384,1.4572091,-0.23885058,0.0821757,0.20275919,-0.3412871,-0.4668455,0.03847098,-0.5995891,-0.029901706,-0.03384185,-0.25438255,-0.27759823,0.23284477,-0.058256224,0.1558722,-0.08282054,-0.6156733,-0.32708603,0.44398263,-0.21091072,-0.31483904,-0.2487777,0.17618355,0.78020185,-0.24658407,-0.1373063,0.08840942,0.36103648,-0.32149446,-0.6496308,0.36256784,-0.3067543,0.47013906,0.09365054,-0.29266986,-0.09663673,0.23292628,-0.5327376,0.27303636,0.3310331,-0.30726507,-0.029783305,-0.09506115,-0.12382787,1.0413026,-0.12891056,0.2881579,-0.7462483,-0.49259618,-0.90518516,-0.2746237,-0.08902323,0.27584058,-0.13275793,-0.5633571,-0.20207682,-0.24883248,-0.10513069,0.01968978,-0.4255937,0.3846958,0.12298015,0.8257048,-0.24400641,-0.9654435,-0.0063968827,0.093686834,-0.268596,-0.5230754,0.5490002,0.14858031,0.73812515,0.057860613,-0.0085821245,0.26602647,-0.6017242,0.27802658,-0.20108387,-0.24951302,-0.9245888,0.227595 -884,0.5447156,-0.24667412,-0.52978086,-0.22105914,-0.3316753,-0.0604035,-0.13083002,0.35609373,0.3638678,-0.28234988,-0.06700965,-0.18012531,0.1460071,0.69255733,0.00039686388,-0.8607816,-0.09937795,0.21813618,-0.58463055,0.5597341,-0.4701549,0.44807723,0.043645512,0.3362092,0.4155899,0.20358574,0.14683618,0.053251278,-0.059959073,-0.13111077,-0.21237035,0.024217166,-0.5123814,0.13778467,0.031807512,-0.4399117,-0.045715194,-0.40649223,-0.5280948,-0.7119911,0.31825957,-0.81446433,0.5339404,-0.062654346,-0.37569952,0.14014919,0.2616007,0.30497828,-0.32602444,0.124972396,0.20397635,-0.021739177,0.0047879256,-0.029270416,-0.43838105,-0.4803821,-0.6227986,-0.040973812,-0.45828125,-0.2747151,-0.32223478,0.098021515,-0.36991358,-0.021925079,-0.111179985,0.43565896,-0.36261752,0.136755,0.26523772,-0.035836786,0.21180363,-0.489831,-0.13821636,-0.11791589,0.035580818,-0.11320015,-0.29615888,0.32347587,0.3095862,0.3111827,0.073198475,-0.30271605,-0.30159208,-0.08865765,0.042346608,0.6022263,-0.12726362,-0.26606658,-0.2862977,0.039864335,0.1198904,0.3022821,0.117661774,-0.49524418,-0.015150957,-0.14479952,-0.2676445,0.4432074,0.472582,-0.38703355,-0.30178717,0.3223754,0.3193162,0.21229155,-0.18302578,0.04861856,0.11056136,-0.5652793,-0.1329244,0.103646375,-0.09595127,0.5481264,-0.26161554,0.19720958,0.70028085,-0.2987741,-0.051219344,-0.051640112,0.21311475,-0.20239902,-0.36464942,-0.2041082,0.2382971,-0.58407336,0.077874154,-0.042353023,1.037129,0.23266621,-0.68357354,0.30208716,-0.6184784,0.1936354,-0.3339063,0.4450512,0.6724716,0.21003014,0.26298884,0.75484496,-0.3351462,0.16506241,-0.13225503,-0.39725327,0.16607612,-0.2471342,0.060950253,-0.56717724,-0.08708968,-0.00994955,-0.25346792,0.15748715,0.676893,-0.42923966,-0.20858027,0.15764277,0.8597844,-0.33544016,-0.11670657,0.65166336,1.0134815,1.1776239,0.06089678,1.2016157,0.41843486,-0.19476974,0.14057048,-0.2766566,-0.6929156,0.26157042,0.2940296,-0.47263667,0.33617723,0.04553869,-0.06252948,0.31508586,-0.15326308,0.04480816,-0.16600369,0.28012225,0.062015418,0.02393432,-0.5512541,-0.47573102,-0.10551715,0.18717612,-0.056002896,0.31322458,-0.26663956,0.2885812,-0.08083657,1.7251172,-0.07816448,-0.009089378,-0.0355678,0.5195779,0.30418828,-0.40913823,-0.19823651,0.2633463,0.4211364,0.0034929116,-0.58796376,-0.08264089,-0.30240697,-0.17400892,-0.2105126,-0.4403819,0.022555908,0.008875862,-0.42792282,-0.20469809,0.09485943,-0.3628118,0.5514981,-2.596276,-0.2351088,-0.05362807,0.221637,-0.3322675,-0.3898348,-0.20172839,-0.5033105,0.41264057,0.2503517,0.5324777,-0.49378684,0.20288502,0.46941772,-0.5183346,-0.1702195,-0.72662354,-0.11541764,-0.11355424,0.3991498,-0.10568634,0.03660627,-0.067969285,0.24210775,0.48550567,0.075736225,0.10769194,0.26894382,0.3722622,-0.071114846,0.5208258,-0.05670693,0.6910763,-0.2720867,-0.22466125,0.31139502,-0.13570648,0.23518474,-0.24711408,0.059395466,0.63820463,-0.53963417,-0.88067317,-0.5110067,-0.16239245,1.0731473,-0.3732901,-0.39491215,0.35376158,-0.27750948,-0.038199693,0.061261732,0.3417629,0.045950364,-0.051404435,-0.5699046,0.1360156,0.106931925,-0.049442876,-0.04224156,-0.1693003,-0.21286823,0.5479726,-0.04247406,0.11186182,0.18731713,0.26536444,-0.24527848,-0.50034046,0.13791548,0.983757,0.25190148,0.18693697,-0.465884,-0.19951133,-0.3740039,-0.08289415,0.18757115,0.29200712,0.83792263,-0.20914525,0.097456336,0.26849458,-0.064867,0.09949276,-0.011685121,-0.34520105,0.0057798275,-0.086031616,0.5424874,0.6391428,0.056548882,0.69138837,-0.037844192,0.2032717,-0.13792987,-0.56532687,0.519163,1.1822761,-0.08795241,-0.2812308,0.6231534,0.27653182,-0.24060477,0.45139304,-0.40530694,-0.25170752,0.41276893,-0.20736562,-0.30384475,0.24525607,-0.41736162,-0.04680394,-0.8457988,0.3543311,0.03231412,-0.4343545,-0.39026177,-0.17596936,-3.744379,0.33070529,-0.29112783,-0.10587361,0.09824563,-0.11319539,0.17941028,-0.47154927,-0.46176782,0.15458238,0.024814442,0.7435027,-0.15359728,0.22782719,-0.12812681,-0.2265143,-0.4371338,0.17294753,0.0041021407,0.5613293,-0.07253296,-0.46480402,-0.039942604,-0.2133347,-0.5381234,0.09555236,-0.620255,-0.41580042,-0.27136996,-0.75472593,-0.27205765,0.8390251,-0.058863048,-0.061302077,-0.24511541,0.034530938,-0.051277358,0.37121964,0.26759318,0.104072355,0.09931489,-0.01964207,-0.101371326,-0.36271572,0.26063856,0.10954448,0.3006309,0.30752316,-0.01407671,0.15600474,0.5890174,0.5147509,-0.1426252,0.8306317,0.5424625,-0.26953334,0.15161435,-0.21643026,-0.19446231,-0.44943002,-0.36699763,-0.2757052,-0.46639895,-0.48765013,-0.098422945,-0.31486186,-0.65907395,0.5924605,0.077307425,0.24476345,0.022481715,0.00871973,0.4266903,-0.10581977,-0.014281769,-0.13856146,-0.100509845,-0.60712576,-0.35220322,-0.484921,-0.40182245,0.43658733,1.0158052,-0.30732194,0.02140937,-0.056540024,-0.3437786,-0.23107712,0.10062329,-0.058166757,0.2348262,0.17011434,-0.044948947,-0.63262606,0.31572288,0.027207008,0.09153517,-0.5515681,0.26635927,0.7773795,-0.47265372,0.54897285,0.26747754,0.2317785,-0.08845872,-0.4977778,-0.4362329,0.21882892,-0.18859416,0.4573792,0.17204694,-0.8190045,0.45189047,0.2517846,-0.46170625,-0.7324725,0.5433082,0.019823262,-0.24358416,-0.15755281,0.29623264,0.10979787,-0.0007833329,-0.30891967,0.3314669,-0.44460043,0.289755,0.22035265,-0.021252831,0.34561905,-0.11450336,-0.22959524,-0.6128627,0.07572036,-0.3677974,-0.45365223,0.07906599,0.08387218,0.12845062,0.27038443,0.020284394,0.3046826,-0.32531264,0.10592982,-0.14453125,-0.30430132,0.4356736,0.25874335,0.5441635,-0.43703803,0.5785021,0.11473322,-0.10754889,0.118206955,0.10275483,0.43497106,0.19310816,0.36936,-0.025454143,-0.21782358,0.24174051,0.8354029,0.030494802,0.3662797,0.16837566,-0.13354273,0.0010845363,0.057195097,0.14850481,0.21501641,-0.4382724,-0.10576861,-0.45898476,0.26544586,0.45157278,0.11965046,0.2630805,-0.12169693,-0.38547835,0.21878624,-0.08671701,0.046552986,-1.3166904,0.24956298,0.22944279,0.64828426,0.52170986,-0.09200289,-0.18503849,0.6465067,-0.19846438,0.15812303,0.38309118,-0.11699147,-0.42660937,0.58121395,-0.8069854,0.6705818,-0.1027581,0.002405138,0.12786077,0.18995632,0.54510903,0.9102099,-0.20151168,0.051389664,0.089932285,-0.3841065,0.07217293,-0.3818921,0.17264116,-0.68619853,-0.39045402,0.70440674,0.28910923,0.24658579,-0.093509555,-0.0152631,0.068664625,-0.07510265,0.07192445,0.054809738,-0.05202963,-0.08002389,-0.72930145,-0.32857263,0.46409956,-0.076081954,0.19316234,-0.081141174,0.08847288,0.05968364,-0.35993266,0.112464584,-0.03930028,-0.75169516,-0.21336056,-0.40711212,-0.5220065,0.3673291,-0.27506277,0.29351398,0.11183196,0.016110338,-0.24814986,0.53191763,0.21798022,0.87467736,-0.12133924,-0.10480126,-0.34560052,0.07509914,0.21378922,-0.1338438,-0.047452565,-0.21742116,0.04058839,-0.69837046,0.560793,-0.08307075,-0.5188778,0.026922176,-0.0556306,0.07289869,0.6180574,-0.006910453,-0.11417844,-0.23595785,-0.1970529,-0.29778555,-0.14652668,-0.04687902,0.3248276,0.2977142,-0.34952208,-0.17277676,-0.2518667,0.047017083,0.26699612,-0.21885313,0.33740386,0.22219624,0.30979648,-0.13707347,-0.077763505,0.21299879,0.57971567,0.06425656,-0.05605783,-0.29927447,-0.09921598,-0.3894619,0.1816728,-0.08203286,0.38545656,0.1696003,-0.20257686,0.7307449,0.026718562,1.1590705,0.077770025,-0.39102432,0.13566193,0.3977808,0.20323622,-0.08229219,-0.39738503,0.98427993,0.62875915,-0.0033836514,-0.1953883,-0.48603544,-0.21776374,0.37238643,-0.2829379,-0.2426935,0.22801703,-0.5354332,-0.3137205,0.29767212,0.11815373,0.24312139,-0.09132422,0.18555962,0.3957028,0.18358983,0.31627566,-0.46451366,0.07955991,0.26766032,0.50306076,0.087992035,0.40840602,-0.5171336,0.3116102,-0.63741666,0.3328791,-0.20377277,0.27252883,-0.09155396,-0.23456813,0.33285555,0.22123487,0.4442153,-0.27585587,-0.38519642,-0.2107169,0.69678193,-0.010604829,0.13752496,0.6375708,-0.32673594,0.05745679,0.01857417,0.41185212,1.0895385,-0.23392008,-0.102935635,0.42317045,-0.33571982,-0.928181,0.5519194,-0.20120819,0.26261088,0.028230393,-0.33821857,-0.5567493,0.290098,0.109346636,0.035603285,0.16891766,-0.320225,-0.13897896,0.21451499,-0.088072725,-0.21793287,-0.3911405,0.20171177,0.48336664,-0.2101696,-0.36994824,0.213477,0.23798494,-0.17362805,-0.57619375,-0.05537586,-0.2133878,0.21424377,0.08871881,-0.30035666,-0.16357432,-0.113510825,-0.4639803,0.107687555,0.17054737,-0.29081914,0.11316314,-0.14149408,-0.14648674,0.9754979,-0.26224712,0.0562768,-0.7057869,-0.6134208,-0.7634663,-0.3722279,0.44239807,0.11475933,0.011853923,-0.6145318,-0.11942773,-0.029009743,-0.070419304,-0.043370992,-0.4915259,0.42146423,0.02911598,0.15309553,-0.072174266,-0.9151222,0.083518185,0.14796562,-0.3332082,-0.6784785,0.48685193,-0.26093304,0.8419257,0.07070354,-0.013222859,0.32710934,-0.28450996,0.10245639,-0.2226158,-0.31160918,-0.63878787,0.014802944 -885,0.6239834,-0.31138325,-0.54459643,-0.30978924,-0.29800305,-0.033313464,-0.22618827,0.5994357,0.21644135,-0.6225697,-0.20601301,-0.1504614,-0.063422084,0.30688286,-0.28624654,-0.6354602,0.099618934,0.21674797,-0.4558038,0.35000232,-0.5842536,0.20101666,-0.031926975,0.6697912,0.3666552,0.12657237,0.2928021,0.041074645,-0.095545866,-0.45549306,-0.095996216,0.27283645,-0.5201743,0.32925344,-0.18281384,-0.529354,0.09916197,-0.703155,-0.34997168,-0.8650977,0.18318693,-1.0441678,0.7209197,0.20895469,-0.34309578,-0.11201684,0.36929947,0.19228968,-0.17852025,0.1894679,0.22850963,-0.23677726,-0.19500855,-0.20896468,-0.4414146,-0.3771165,-0.82875454,-0.057224892,-0.3376398,0.14304043,-0.2750778,0.2836748,-0.19928052,-0.024512948,-0.1433123,0.5281123,-0.43360916,-0.1437478,0.015104294,-0.16316733,0.34714487,-0.7189702,-0.41594237,-0.25346795,0.25139928,-0.21506485,-0.3013607,0.34405708,0.35670853,0.4895238,0.021866104,-0.23221858,-0.30925494,0.0018472441,-0.23138909,0.6012843,-0.2761,-0.31523067,-0.31212568,-0.3278202,0.47558618,0.38556385,0.13576777,-0.28321552,-0.08422638,-0.20154317,-0.4057536,0.5236849,0.52087164,-0.39992708,-0.06039275,0.34973767,0.1830981,0.1656763,-0.12616745,0.14954355,0.06559909,-0.69767964,-0.22301602,0.26931962,-0.21138163,0.5957037,-0.16115594,0.42904958,0.6215451,-0.2697276,-0.15185769,0.15534453,0.30765814,-0.27688736,-0.22806577,-0.7825045,0.42792717,-0.54814893,0.119101144,-0.21465759,0.9971697,0.05941516,-0.77798116,0.25107446,-0.6056539,-0.07137199,-0.10497699,0.50910234,0.546683,0.5481268,0.43834916,0.5930307,-0.3272249,0.060699385,-0.048111375,-0.18761529,0.16080317,-0.2170068,0.09929047,-0.32538265,-0.14019822,0.019047294,-0.15306203,0.101169825,0.92832315,-0.35912317,-0.09079703,0.38539514,0.5868174,-0.37056518,-0.0858989,0.6821852,1.2202522,1.2132741,0.14531705,1.3432795,0.24579005,-0.21910945,-0.06864047,0.19700405,-0.93134403,0.44710866,0.42269272,-0.3852657,0.42056313,0.33701307,0.10641606,0.33457646,-0.56667143,-0.1861556,0.024956886,0.17398998,-0.10866042,0.06363021,-0.6825738,-0.55841315,0.046120446,-0.25056782,0.121435,0.18425669,-0.25618663,0.5370556,0.12571034,1.2642684,-0.13429293,0.07201311,0.09427704,0.5755993,0.1441848,-0.15786402,-0.20508376,0.07967826,0.43306294,0.02542072,-0.49849278,0.051187824,-0.13783455,-0.2633277,-0.29143754,-0.42512003,-0.009632018,-0.08203981,-0.36408052,-0.44040504,-0.006556475,-0.3991746,0.377255,-2.3699634,-0.047064688,-0.20355268,0.3755836,-0.12009927,-0.41342434,-0.22049475,-0.52177656,0.6720034,0.29918975,0.4829544,-0.6546372,0.42248636,0.6947117,-0.4744711,-0.16337506,-0.9428757,-0.18931174,-0.22868612,0.19224812,-0.10902558,-0.18333301,-0.05582859,0.079944,0.6613111,0.094109096,0.12528536,0.3181495,0.31310382,0.024170315,0.73515385,-0.052224435,0.56442595,-0.478198,-0.34598595,0.22304673,-0.5868074,0.080205776,-0.21838781,0.1357789,0.7734152,-0.5536483,-0.92833835,-0.6878248,-0.27369404,1.2384117,-0.4702677,-0.29875678,0.21064043,-0.08599036,-0.41591406,0.074148335,0.46351075,-0.4200477,-0.03851381,-0.6825614,-0.24518767,-0.043737,0.38676715,-0.010816229,0.04583315,-0.54294443,0.55724204,-0.16382305,0.4599716,0.24201293,0.13774052,-0.52646434,-0.711645,0.07011415,1.0555408,0.31801006,0.17553052,-0.3172105,-0.16214672,-0.20942655,-0.038348902,0.058518577,0.46794343,0.73521334,-0.15148261,0.26913175,0.4605101,-0.06529875,0.06889637,-0.11848961,-0.42262167,-0.24371633,0.123052455,0.80261356,0.49841136,0.14055547,0.2310632,-0.12519217,0.56742036,-0.26485485,-0.37767643,0.46817937,1.0702524,-0.0616947,-0.25120658,1.0880643,0.47966558,-0.21573511,0.5833262,-0.7778263,-0.51808643,0.29363364,-0.025714982,-0.3903349,0.14217785,-0.35724682,0.1460079,-0.97832185,0.50576687,-0.11852424,-0.42571825,-0.5527333,-0.16372745,-3.4630115,0.2425056,-0.2973772,-0.19859034,0.023778427,-0.40137324,0.38841304,-0.65462226,-0.6057602,0.1667763,-0.005723089,0.80587196,-0.18468502,-0.09661601,-0.3046492,-0.38391814,-0.5220349,0.12845889,0.21364586,0.5266221,0.21153513,-0.46791792,0.41289273,-0.18879879,-0.35403126,-0.12678976,-0.79896164,-0.4712057,-0.10746057,-0.8721846,-0.54000396,0.8179449,-0.39845628,0.0123945875,-0.26558805,0.06514813,-0.049983166,0.46777543,-0.15144911,0.3419,-0.10076251,0.015804678,-0.10384403,-0.18840474,0.3665765,0.08028629,0.13244683,0.27992645,-0.17864278,0.026071157,0.7164601,0.6574707,-0.27243364,1.1109107,0.49803662,-0.004138641,0.07391427,-0.1874151,-0.33141524,-0.4996609,-0.3248846,0.008343118,-0.5247962,-0.13993192,-0.030693293,-0.28121135,-0.8987166,0.8946999,0.008559918,0.14809832,-0.06698639,0.19999628,0.305362,-0.017164875,-0.02807256,-0.12361832,-0.06561466,-0.37358606,-0.37743396,-0.6520499,-0.39071578,-0.15343645,1.009247,-0.21469621,0.072006464,0.33241668,-0.18416496,0.16240573,0.0032740019,-0.027009014,0.1464524,0.604727,0.11886792,-0.73838586,0.32487082,-0.30855185,0.035327025,-0.4634478,0.31992513,0.8207096,-0.7929026,0.58036566,0.5729106,0.20309095,-0.39239606,-0.7207597,-0.3633461,-0.11472795,-0.10540839,0.66646475,0.29109487,-0.89993894,0.65216273,0.23684868,-0.38875094,-0.73121977,0.5688663,-0.18793365,-0.2572661,0.07527286,0.5168954,-0.05743891,-0.055196565,-0.15462737,0.18209179,-0.32469788,0.3199432,0.14586267,0.090266764,0.5793581,-0.22219682,0.101943925,-0.74562913,-0.028769016,-0.58849895,-0.48926616,0.2960498,-0.09467729,-0.03400321,0.41544026,0.022990916,0.33222693,-0.45730868,0.03127677,-0.05375331,-0.19641365,0.39584017,0.6043956,0.59339315,-0.33482003,0.5954486,0.0550857,0.11393972,-0.2746422,-0.08623121,0.4545676,0.09919335,0.37596846,-0.20907025,-0.38893637,0.3035182,0.77989113,0.26249897,0.56170285,0.19027248,0.07163544,0.1303119,0.1606412,0.3504068,0.102050744,-0.6702228,-0.15445805,-0.42570525,0.14369936,0.5494176,0.027494496,0.27909872,-0.22207999,-0.16736881,0.14088745,-0.040724955,-0.09943645,-1.3810515,0.35168105,-0.020477712,0.51934373,0.37369853,0.014802228,-0.110850796,0.83957654,-0.26705095,0.07006804,0.18915646,0.31141528,-0.28308454,0.74953777,-0.50100744,0.5157679,-0.11846932,-0.13905457,-0.2208915,0.07065816,0.45804453,0.9302355,-0.13517587,0.21250291,0.16934495,-0.33419567,0.05099191,-0.5223203,0.20401981,-0.5294143,-0.31490117,0.6892149,0.3409831,0.43300754,-0.19399054,-0.045310877,0.07182113,-0.1521837,0.08588536,0.061122973,-0.22102217,-0.18185404,-0.7467891,-0.1498442,0.6675984,0.3290823,0.14243484,0.18665144,-0.23483698,0.19374885,-0.014271337,0.13501549,-0.10505755,-0.84381104,-0.29902798,-0.44613925,-0.44277972,0.16806573,-0.2939076,0.12815931,0.27088094,0.04960314,-0.078009024,0.31097943,0.54798776,0.7986108,0.08305331,-0.10020001,-0.2653783,0.086084075,0.2455227,-0.24656351,-0.083471395,-0.47803658,0.14957401,-0.578258,0.16675521,-0.041341342,-0.3897365,0.044370987,-0.012447203,0.008388514,0.4791209,-0.0926418,0.1462019,0.13375804,0.04943461,-0.26590222,-0.17085022,-0.31501,0.1827775,-0.010791147,-0.04710591,-0.12204037,-0.20688911,-0.085748896,0.35284072,0.066304475,0.31053358,0.6176352,0.11220054,-0.2547771,0.1509164,-0.21314415,0.82104385,-0.16597849,-0.29838124,-0.38205686,-0.29966655,-0.15816358,0.3436583,-0.09278709,0.1483705,0.07668227,-0.3852057,0.8626642,0.012849679,1.0038198,-0.052288987,-0.44941893,-0.1332972,0.55917954,-0.19445372,0.049925577,-0.30219793,1.0057896,0.48905563,-0.28941655,-0.22252174,-0.52120864,-0.21263003,0.21448894,-0.25640544,-0.41446242,-0.20092432,-0.5527047,-0.1450778,0.2619305,0.15915795,0.09430568,-0.022770545,0.32945153,0.5497403,0.16113718,0.53151494,-0.6758393,0.10985477,0.32318765,0.3432332,0.010622834,0.31626543,-0.36015457,0.36915883,-0.7357436,0.21262316,-0.409005,0.16793655,-0.23701987,-0.34577513,0.2649883,-0.02183261,0.5641107,-0.26578474,-0.13135621,0.026518803,0.589743,-0.09399672,0.38721552,0.75750494,-0.27349168,0.01947191,-0.20059612,0.42790037,1.2055775,-0.20611551,0.17645764,0.4809104,-0.22621855,-0.683217,0.16925362,-0.4133645,0.05132228,0.0594957,-0.32549083,-0.29097944,0.27292272,0.34489548,0.06723029,0.25946316,-0.46917313,-0.14963719,0.4850045,-0.05120002,-0.27993435,-0.3136012,0.0023914934,0.38506415,-0.30250558,-0.42724138,0.010108016,0.31904024,-0.14781097,-0.4798401,-0.01315185,-0.4356737,0.3239517,0.1997716,-0.33335045,-0.09959326,-0.2582541,-0.37461177,0.0027284264,0.25245124,-0.3299522,0.07147976,-0.2834434,0.022764826,0.87467563,0.009423053,0.12797837,-0.5869472,-0.57179534,-1.0560648,-0.27267098,0.3566197,0.28152472,-0.13758543,-0.61771023,-0.030209148,-0.11909075,-0.2449811,0.013462581,-0.37352678,0.42937797,0.19350079,0.61382705,0.092186734,-0.7829574,0.15320483,0.0734449,-0.1969181,-0.41519728,0.57662547,-0.12610355,1.1518826,0.052822668,0.0064946115,-0.104325294,-0.4438362,0.40614325,-0.21324226,-0.33285052,-0.69604415,-0.05497586 -886,0.39488247,-0.19997959,-0.43699592,-0.0039151227,-0.2907138,-0.051050045,-0.0036331713,0.44921634,0.027646255,-0.2825396,-0.20711817,-0.09481721,-0.19821645,0.3910954,-0.25548384,-0.79209787,0.05228755,0.2318871,-0.44594035,0.69663006,-0.26898298,0.36057472,-0.019573828,0.20523386,-0.01583368,0.24267878,0.12495698,-0.27219364,-0.10334567,-0.1339259,-0.19951065,0.28154686,-0.48551694,0.3341494,-0.15890907,-0.34636542,0.20714493,-0.29865626,-0.3487368,-0.63267076,0.073129795,-0.5647502,0.44978228,0.08096479,-0.25115475,0.22616073,0.047237456,0.33883157,-0.13117139,0.115760446,0.04702434,-0.14350012,-0.062204685,-0.29673004,-0.06302728,-0.6047749,-0.49294403,0.07821224,-0.46931973,-0.15617307,-0.14181237,0.18537839,-0.33501264,-0.25936598,-0.051785927,0.24548234,-0.40995646,0.005643836,0.20671323,-0.118921466,0.052095167,-0.4663187,-0.07887031,-0.15635452,0.2891297,-0.17952968,-0.09863501,0.46508306,0.18862307,0.51648945,0.016778708,-0.16670358,-0.2813329,-0.062354248,0.208701,0.48355013,-0.24732392,-0.52778184,0.017182782,0.15922885,0.2546298,-0.010262383,0.11500375,-0.10830091,-0.08357586,-0.19542918,-0.113989905,0.12264431,0.6093479,-0.387221,-0.3913174,0.3189142,0.41052133,0.16254766,-0.038635153,-0.008794657,-0.09417762,-0.45568207,-0.20530435,-0.05249468,-0.15973212,0.46673384,-0.16541807,0.19698642,0.5452599,-0.20579691,0.17224367,0.17110778,-0.038638975,0.043948896,-0.02496733,-0.33953542,0.20379607,-0.43903634,0.02619608,-0.20008801,0.83048236,0.31363875,-0.74963826,0.26393533,-0.5851738,0.1488415,-0.051000684,0.60400474,0.58495444,0.5624619,0.18581448,0.50032926,-0.49809107,0.12726736,0.031714533,-0.4431083,0.13866243,-0.14361514,-0.13144575,-0.48838696,-0.040962357,-0.0027449557,0.010171788,-0.12812178,0.274389,-0.588163,-0.025643121,0.05651519,1.0060433,-0.36120692,-0.03627124,0.58990675,0.8607583,0.896698,0.0029544064,1.2075092,0.1675154,-0.3171478,0.17028628,-0.358479,-0.6405021,0.26834,0.32943103,-0.44179815,0.3640108,0.048589773,-0.01719155,0.28856444,-0.44282657,-0.006313903,-0.32051244,0.13763689,-0.026626838,-0.114764385,-0.51215154,-0.363901,-0.1182094,-0.01617889,0.007167284,0.47763205,-0.14268476,0.38773474,0.120439604,1.4706625,0.014845277,0.11911274,0.17486112,0.3420969,0.14450203,0.022384511,0.03739069,0.27926156,0.41051823,0.15212989,-0.46630386,0.1341649,-0.33203405,-0.56999713,-0.18452491,-0.30828324,-0.054095007,0.054425005,-0.3483436,-0.26823744,-0.15505747,-0.07525987,0.38954192,-2.303203,-0.075688355,-0.13407548,0.4050676,-0.28455588,-0.3028578,-0.13242128,-0.46548894,0.32995796,0.26403743,0.45470005,-0.6841094,0.45124266,0.3274321,-0.38266876,-0.20391466,-0.5124921,-0.03595299,-0.06482909,0.35800335,0.007243266,0.0817704,0.233992,-0.015995523,0.43762532,-0.17678107,-0.045251068,0.072403654,0.3772224,0.19302198,0.21895488,-0.037982155,0.4652402,-0.27167624,-0.1818588,0.24242045,-0.33184534,0.35461044,-0.04813773,0.11620922,0.2577932,-0.45274892,-0.7319463,-0.64801425,-0.27281886,1.2809925,-0.10673355,-0.3119371,0.21597059,-0.194525,-0.22964384,-0.26590568,0.21334377,-0.24195817,-0.118173905,-0.65398836,0.06560896,-0.08134011,0.21881175,0.08169503,-0.0641057,-0.40915638,0.7052566,-0.050204635,0.508496,0.2507456,0.300226,-0.11677415,-0.55853844,0.0434467,0.8601517,0.46835336,0.10084397,-0.07223344,-0.20471002,-0.16828208,-0.011606668,0.13359429,0.5294878,0.78408635,-0.13573101,-0.15293206,0.30759415,0.028561069,0.20819597,-0.13607314,-0.32661673,-0.099823415,0.07606203,0.62996197,0.5564872,-0.3144097,0.367344,-0.056477956,0.32746574,-0.11853778,-0.42218682,0.422148,1.1053528,-0.2076451,-0.21538304,0.50594825,0.54394287,-0.25711006,0.3469518,-0.6195498,-0.3372622,0.29061764,-0.2625089,-0.34909108,0.1766871,-0.27497137,0.18695049,-0.94700825,0.5416149,-0.37484366,-0.59302706,-0.62760955,0.043391377,-2.8937821,0.2105443,-0.36475992,-0.12683645,-0.13298628,0.049253013,0.1456015,-0.6412934,-0.38954082,0.14150031,0.19418846,0.4849401,-0.051209517,0.13309535,-0.16144025,-0.45606923,-0.27201742,0.056366306,0.1609364,0.17276919,-0.06685351,-0.3364501,-0.046074547,-0.14758097,-0.23291096,0.30879688,-0.6674255,-0.46549678,-0.23986255,-0.42288208,-0.3681019,0.6191518,-0.3787977,0.09653515,-0.11672739,-0.03103978,-0.22489478,0.23087946,0.017915037,0.10743613,-0.016209897,-0.06610339,-0.0027127224,-0.30921507,0.320138,0.063396834,0.5436383,0.34673074,-0.25418624,-0.003964737,0.598942,0.5456275,-0.057441156,0.56221575,0.46715063,-0.08604439,0.47881123,-0.4242387,-0.27482793,-0.51242507,-0.48373505,0.061897464,-0.2748265,-0.47525403,0.08649053,-0.35351494,-0.76646084,0.4428289,-0.060348682,0.04757599,-0.15669353,0.23076956,0.53244215,-0.06648241,-0.096518,-0.06236743,-0.10852115,-0.36346465,-0.26176247,-0.68437016,-0.41162387,0.14517102,1.1296313,-0.2758012,0.06925046,-0.08602141,0.019748032,0.0746476,0.05782688,0.07350115,0.14046678,0.23212826,-0.17242756,-0.7594079,0.54911345,-0.10656093,-0.25090298,-0.39073202,0.15576021,0.5460284,-0.8830667,0.4305007,0.3309633,-0.095649414,0.16951762,-0.5778006,-0.24425554,-0.0042212945,-0.22647245,0.22011207,0.17297229,-0.6229375,0.36979493,0.47502428,-0.39615324,-0.7460961,0.39202997,0.074879415,-0.38822412,0.17149891,0.33945873,-0.016937392,-0.030686041,-0.04639523,0.21512018,-0.40307465,0.34930345,0.22322032,-0.08015459,0.0972525,-0.1458836,-0.002755327,-0.8643292,0.1971599,-0.46047854,-0.32379475,0.29436556,0.24922906,-0.041365985,0.07004578,0.15046947,0.40899286,-0.46671385,0.110499434,0.05810701,-0.35301393,0.29977646,0.39826113,0.49153253,-0.39709058,0.455041,0.042486437,-0.108651124,-0.11450031,0.2645274,0.4475246,0.11945673,0.2994031,0.13660884,-0.16642275,0.41665748,0.87026364,0.20550118,0.50928855,0.068991445,-0.06899108,0.2758221,0.18366805,0.108988576,0.12836626,-0.3497052,-0.042775836,0.05737892,0.15322399,0.5596295,0.18017809,0.37711254,-0.1767064,-0.18475814,-0.086356066,0.29300722,0.11616521,-1.2543142,0.39792666,0.19353901,0.6506896,0.42854327,0.13805565,0.0299107,0.62008667,-0.10435744,0.085741356,0.25256783,-0.070705995,-0.52844536,0.45358583,-0.6439876,0.2993106,-0.012807927,0.044582307,-0.050230715,-0.17847402,0.32525244,0.76532257,-0.07067156,0.029371722,-0.12115259,-0.3527793,-0.070197694,-0.45351562,0.13124533,-0.5741591,-0.23841408,0.48663297,0.5352303,0.18145756,-0.18584435,0.040508162,0.08306075,-0.15339576,0.32771,-0.11973769,0.20711689,-0.00074437156,-0.5380959,-0.04592168,0.5769788,-0.27541155,0.07462952,0.12296919,-0.26449376,0.291154,-0.08317727,-0.04756403,0.012948991,-0.4969265,0.32968095,-0.2745428,-0.19281991,0.5051382,-0.06562516,0.13120793,0.26783773,0.1444603,-0.34840065,0.24627988,0.054857906,0.53448254,-0.08672232,-0.3751913,-0.43465024,0.22053264,0.001793061,-0.1886903,0.059398834,-0.09665998,0.01624448,-0.4073946,0.35315147,0.09356911,-0.055147383,-0.083177604,-0.24606626,-0.16143534,0.5096432,-0.120326765,-0.25822693,-0.057983078,0.008251756,-0.1999121,-0.08604712,-0.08588984,0.16453585,0.29213783,-0.05227215,-0.04712636,-0.1910158,-0.11146788,0.4067902,-0.039269663,0.3972764,0.33871168,0.16628745,-0.39485237,-0.08442932,0.18026781,0.28065804,-0.0842998,0.067479156,-0.39681435,-0.42877293,-0.29142794,-0.031611826,-0.24041322,0.27261502,0.058463354,-0.28899536,0.83784866,0.11413361,1.3343853,0.027681896,-0.20524268,0.08116231,0.5306803,0.110685624,0.024454772,-0.3686033,1.161185,0.61266994,-0.119455226,-0.15538765,-0.37126353,-0.15866682,0.097882025,-0.26390836,-0.22905576,0.22216024,-0.53306997,-0.529959,0.212407,0.1461437,0.08382874,0.0062946444,-0.052806497,0.2764706,0.17373344,0.23788224,-0.43912745,-0.19345392,0.13260925,0.20727685,0.08634411,0.23146784,-0.45673662,0.3563309,-0.4903358,0.07557277,-0.19745721,0.07908332,-0.111810155,-0.33803087,0.16658887,0.032097735,0.24924338,-0.2917785,-0.37109488,-0.075533286,0.46299264,0.094985604,0.24212548,0.6760172,-0.31778422,0.03781075,0.06771861,0.5254533,1.1094208,-0.28969765,-0.24806643,0.32490715,-0.43223003,-0.74008864,0.202559,-0.22613104,-0.011871372,-0.19926691,-0.33509737,-0.6093327,0.32439557,0.28081527,0.08763688,0.008495389,-0.5262628,-0.08288544,0.29704952,-0.5188953,-0.3120106,-0.33954912,0.30204108,0.8082171,-0.3387451,-0.3381761,0.03441573,0.17505781,-0.35705063,-0.55241793,-0.1667973,-0.37112936,0.19337289,0.22552869,-0.2798392,-0.18745898,0.19242565,-0.26859173,0.18855345,0.3807581,-0.24764077,0.12233635,-0.21926905,-0.023995271,0.75238293,-0.29630095,-0.012747399,-0.5681275,-0.42207998,-0.83560574,-0.61277497,0.72321594,0.38805643,0.052508447,-0.73564327,-0.02353694,0.13240623,-0.25992256,-0.13563655,-0.156511,0.27534583,0.120825455,0.2669868,-0.09419511,-0.84632194,0.22991733,0.14878194,-0.091581464,-0.5414837,0.42251047,-0.13473961,1.047891,0.016496275,-0.020172117,0.30832857,-0.43301317,-0.1007144,-0.2595139,-0.21149231,-0.64400226,-0.05659834 -887,0.45448187,-0.18834403,-0.60018146,-0.13517891,-0.43239748,0.2763038,-0.30009145,0.36593866,0.41583565,-0.40538087,-0.22848704,-0.054232113,0.09078831,0.30747792,-0.19860482,-0.5200984,-0.07539966,0.1595503,-0.63798994,0.37792605,-0.44301268,0.31938776,0.15889215,0.36201847,-0.037030652,0.31663227,0.14643161,0.008087624,-0.09764982,-0.14781989,-0.23505391,0.17382513,-0.43443954,0.053727012,-0.21610355,-0.46520007,0.009804914,-0.4217779,-0.22023264,-0.6550575,0.1732595,-1.0718057,0.58777416,-0.024158249,-0.16022815,0.11836283,0.1646294,0.13936733,-0.23734048,0.028907351,0.08766972,-0.42035383,-0.20660877,-0.4538144,-0.30241042,-0.41597092,-0.38990885,0.047940936,-0.62438786,-0.2755438,-0.22297761,0.12860979,-0.26646322,0.15144798,-0.14312635,0.23835553,-0.15185148,-0.0984428,0.2167252,-0.34236303,0.09687598,-0.47550172,-0.103710584,0.022673164,0.35683763,-0.07476427,-0.2570271,0.29936406,0.16073205,0.5000392,0.09253542,-0.25516808,-0.43880036,0.0010523704,0.10592183,0.46793658,-0.25497335,-0.22678559,-0.28444093,0.16261618,0.508888,0.22900182,0.083636686,0.008982757,0.025536167,-0.16452135,-0.26052836,0.6190735,0.57831454,-0.4063004,-0.25361446,0.23338358,0.6369315,0.09001374,-0.17397928,0.06253198,0.00760401,-0.5282096,-0.113986425,0.013354549,-0.058353845,0.56922144,-0.11632352,0.12170808,0.57892257,-0.1254964,0.011191646,0.2095401,0.09188195,-0.08822978,-0.20817845,-0.16223104,0.27238095,-0.5786228,-0.14915378,-0.28439993,0.5929858,0.008660825,-0.7420867,0.44308117,-0.4088198,0.09113077,-0.058425225,0.48369706,0.5994622,0.65849185,0.27167866,0.86018986,-0.36791736,0.18050186,-0.19313982,-0.1577114,0.028950004,-0.29941532,0.09956258,-0.5281409,0.2676238,-0.06452539,-0.050089303,0.39403594,0.4716929,-0.6281257,-0.19779712,0.25206432,0.78364146,-0.2824323,-0.116092436,0.8062166,1.1159256,0.94808537,0.036604363,1.0735208,0.29661098,-0.24975179,-0.0712361,-0.13403644,-0.67279524,0.19267403,0.3308732,-0.17188662,0.4848649,-0.007501726,-0.078185864,0.16296802,-0.31048092,-0.13262679,0.11151622,0.14378585,0.10798423,-0.03973272,-0.48771498,-0.09448919,0.06771216,0.0003093481,0.37140256,0.23610929,-0.20503853,0.59071916,-0.007276558,1.1789868,-0.080128506,-0.013186655,-0.0156197185,0.44811246,0.31580755,-0.024202036,-0.081330985,0.46632883,0.15168218,-0.03644385,-0.49615705,0.10698537,-0.32347262,-0.27258366,-0.09185011,-0.3242142,-0.19493397,0.054063626,-0.13600366,-0.32878363,-0.05519742,-0.37160593,0.34162155,-2.6215832,-0.30187628,0.036237612,0.42990535,-0.17560223,-0.2813346,-0.31115583,-0.49767116,0.24416722,0.24958548,0.5397123,-0.5876233,0.30984926,0.49910238,-0.63522047,-0.21580465,-0.65659434,0.012031651,0.00078274193,0.43614307,0.1056474,-0.22889464,-0.097498216,0.17681812,0.64601314,0.12403914,0.08088191,0.6628169,0.49311697,0.12558138,0.4814143,-0.036875587,0.68924785,-0.52684975,-0.21389842,0.3497399,-0.3743939,0.37028933,-0.06638004,0.18457064,0.5206824,-0.3627658,-0.9421192,-0.50170493,0.045312844,1.359757,-0.2364031,-0.56687856,0.14089163,-0.27202743,-0.3422672,0.114742905,0.5626699,-0.0837702,0.07447204,-0.6817721,0.031632707,-0.018707417,0.19336154,0.07249113,-0.102409124,-0.20672299,0.6533005,-0.11647602,0.5394512,0.1487973,0.12258882,-0.23730813,-0.27395818,0.0658835,0.9928264,0.32049862,0.1296038,-0.1113757,-0.29930747,-0.16315335,-0.17680629,0.025328089,0.5828385,0.5466292,-0.03452088,0.037046067,0.36347267,0.085741356,0.068203576,-0.17250842,-0.14743412,-0.1422999,0.032007758,0.45465484,0.87589103,-0.20136632,0.33691075,-0.1410145,0.40107667,-0.09361443,-0.5835352,0.4918623,0.5716234,-0.24043535,-0.28755495,0.5701318,0.3432306,-0.53220445,0.5124953,-0.68848836,-0.5127795,0.4954438,-0.18001571,-0.40154272,0.2710487,-0.30354244,0.24630788,-0.6427119,0.25006106,-0.15471284,-0.3169585,-0.41845897,-0.07163088,-3.264114,0.2820145,-0.08499016,-0.059294045,-0.2585835,-0.09692201,0.16323583,-0.5114802,-0.62645555,0.04780199,0.18448171,0.5790471,-0.16500565,0.1971585,-0.22870176,-0.36497352,-0.10519664,0.23342991,-0.0025878274,0.28901538,-0.12636732,-0.35342222,-0.06830668,-0.02559814,-0.4440039,0.10332409,-0.6610089,-0.40608317,-0.07557395,-0.4808113,-0.13510261,0.47843134,-0.38417333,-0.015852602,-0.30639508,0.18872115,-0.03282039,0.05741525,0.0016454504,0.15415318,0.107202634,-0.116400085,0.23803766,-0.27634338,0.4433661,0.0017903561,0.2717921,0.33231768,-0.11021502,0.06729196,0.53683406,0.8102703,-0.17710194,1.0799989,0.20920141,-0.14123997,0.33316138,-0.06757809,-0.37092543,-0.56799686,-0.18173483,-0.023753222,-0.4740724,-0.31992757,0.22161764,-0.35582063,-0.9191023,0.63102883,0.06333354,0.25040123,0.031521305,0.59843963,0.6139585,-0.29011318,0.02437419,-0.18718632,-0.3191219,-0.58975667,-0.28006494,-0.5589271,-0.49090275,0.09948739,0.8608588,-0.32778233,0.31846327,0.04129263,-0.10348078,0.02837166,0.215635,0.14102188,0.3094855,0.5450655,-0.034779336,-0.5663549,0.2845847,-0.18467572,-0.19473816,-0.43068472,0.09497476,0.6047227,-0.76587796,0.44195506,0.4109478,-0.038421173,-0.038005523,-0.4771818,-0.101687685,-0.18733929,-0.10160046,0.35348722,0.27420107,-0.8013471,0.52461404,0.41975978,-0.5496544,-0.6866738,0.19078809,-0.16885789,-0.17674455,-0.10491168,0.3172758,0.08901077,-0.07956019,-0.16251339,-0.05178943,-0.3954743,0.23386994,0.045387607,-0.068050034,0.3365992,-0.12898865,-0.4426171,-0.8309835,0.07106411,-0.5724154,-0.26858187,0.3991475,0.018099498,-0.061881907,0.12826918,0.095557764,0.4160864,-0.3058572,0.0154484445,-0.07801955,-0.36440256,0.49343407,0.2890918,0.5264041,-0.3902686,0.5215619,0.0195359,-0.15599193,0.06960854,-0.14613973,0.47780573,-0.07917413,0.33064058,0.13275026,-0.20479536,0.17333482,0.7431205,0.07529108,0.34698042,0.19199911,-0.12679881,0.456965,-0.04944394,0.036432464,-0.112167545,-0.60817057,0.13275354,-0.30613977,0.10167872,0.4137786,0.27506214,0.3463933,-0.027987711,-0.15963426,-0.076663926,0.25286412,0.07551111,-1.1925199,0.16617166,0.12937789,0.7713922,0.22056343,0.19799702,-0.14707914,0.6423676,-0.23411387,0.17540342,0.466443,-0.019965071,-0.4488951,0.4626332,-0.52955586,0.47004843,-0.17662725,0.08302375,0.20288152,0.14760517,0.3559255,0.9321947,-0.2016243,0.055999856,-0.017530736,-0.15744019,-0.08502885,-0.33345234,0.01757579,-0.37920988,-0.35694757,0.7686129,0.25194278,0.61000425,-0.07725418,-0.11105359,0.026463678,-0.08627307,0.29190668,-0.018913366,0.1250604,-0.035263725,-0.5188625,-0.0168838,0.5701676,0.54995143,0.23885356,-0.25852042,-0.21829864,0.16072433,-0.14625901,-0.08464419,-0.1006769,-0.48682392,0.011927976,-0.19828993,-0.7219172,0.42711252,-0.1056898,0.023862066,0.24960548,-0.053122327,-0.120346315,0.23269628,0.07296904,0.76647305,0.15277545,-0.27396426,-0.36718464,0.22020887,0.20295006,-0.28281114,0.16935405,-0.31707323,0.20004278,-0.50996333,0.6128334,-0.34194934,-0.47417957,0.16680428,-0.2001209,0.08900197,0.53625983,-0.21071008,-0.19166653,0.022955857,-0.12444509,-0.46724778,-0.28977668,-0.20306693,0.21547511,0.22643143,-0.2825367,-0.16909331,-0.28363693,-0.024725337,0.44344583,0.09715671,0.40353516,0.18939129,0.0821844,-0.26853102,0.1788593,0.21273932,0.45331806,0.07126435,-0.13078019,-0.44558424,-0.47967127,-0.38575652,0.23257428,-0.06704087,0.14309064,0.12749784,-0.08409341,0.8898822,-0.21603976,0.9837979,0.042033654,-0.28683165,0.0025703083,0.61844325,0.020130713,-0.07521698,-0.3810353,1.0171205,0.5917993,-0.13366333,-0.021455096,-0.5508437,-0.08519371,0.28345075,-0.41512075,-0.097770855,-0.07713682,-0.5701036,-0.42839673,0.18738453,0.20825975,0.3645737,-0.2280766,0.3884819,0.07824599,0.060508635,0.21076983,-0.49652132,-0.3604713,0.29777473,0.26862082,-0.24119605,0.015240183,-0.4473567,0.29707938,-0.61355495,0.05057333,-0.4647333,-0.023205029,-0.12432737,-0.33439943,0.1399464,0.11328855,0.26067036,-0.3623317,-0.44818863,-0.053519405,0.30673188,0.10648476,0.08968146,0.4294329,-0.23504736,-0.14524086,0.18060721,0.5458883,1.1648952,-0.3376358,0.10177118,0.45486355,-0.3242342,-0.5661574,0.37399757,-0.24549259,0.09815642,-0.092086084,-0.3318017,-0.42812464,0.24618237,0.20233633,0.10585436,0.09909026,-0.63227403,-0.08396021,0.13856217,-0.4039903,-0.0955009,-0.1534357,0.1999006,0.6669471,-0.16411519,-0.3626068,0.054091748,0.43817294,-0.16361156,-0.6140732,-0.020341529,-0.20834193,0.27420002,0.27084425,-0.35501736,-0.034988508,0.18822053,-0.5603931,0.0092628915,0.1636278,-0.45121047,0.008968817,-0.45406187,0.17404729,0.74731064,-0.22403763,0.19730799,-0.5226859,-0.50908554,-0.934671,-0.32447827,0.09780128,0.13239248,0.04237133,-0.47659633,-0.004642835,-0.15017025,-0.29972485,0.07443938,-0.4747886,0.54800725,0.13557766,0.39136598,-0.3852927,-1.0146519,0.14504288,0.08571294,-0.19569996,-0.6215441,0.49539137,-0.053015344,0.79916394,0.075053796,-0.09914604,0.35081992,-0.60536,0.08097014,-0.32580888,-0.04086025,-0.66172796,0.01671913 -888,0.5107329,-0.13539843,-0.5319476,-0.08501698,-0.124541044,0.2175976,-0.06978446,0.32060173,0.08958614,-0.4724169,-0.16125149,-0.20870382,-0.092332006,0.4248525,-0.11703147,-0.72653055,0.012310764,0.16687301,-0.6518675,0.64627683,-0.39609897,0.4362917,0.03612752,0.21118027,0.037375465,0.29482776,0.15909842,-0.19323787,-0.22056298,-0.08821448,-0.271123,0.061802965,-0.3548799,0.043183148,-0.15129878,-0.26408184,-0.07111021,-0.28788492,-0.5440009,-0.67852527,0.36123365,-0.69928545,0.42324865,-0.14147165,-0.20360795,0.3147033,0.2813695,0.46539456,-0.18247783,0.11003925,0.10680251,0.008272596,-0.107127324,-0.19893508,-0.3372671,-0.708817,-0.5657043,0.13600282,-0.44589004,-0.28439435,-0.21900368,0.11699886,-0.41663525,-0.079610854,-0.12896301,0.38064522,-0.32836515,-0.1238724,0.24929771,-0.068344444,0.17341232,-0.60729545,-0.15729979,-0.19211113,0.25475988,-0.107704826,-0.011317344,0.38258886,0.35404137,0.49731863,0.038005218,-0.12896624,-0.33115268,-0.054489344,0.33359995,0.42063507,-0.1490507,-0.5590548,-0.06496885,0.033636868,0.11226672,-0.043863453,0.13642627,-0.14134906,-0.11861779,0.027542949,-0.292127,0.37900022,0.40584737,-0.375734,-0.40836614,0.42266804,0.50035435,0.039083913,-0.15651584,-0.082176216,-0.073366635,-0.4072877,-0.10196379,0.24490455,-0.21436365,0.36191267,-0.24600725,0.23099177,0.65547144,-0.21660925,0.044582948,-0.039231174,-0.14372009,-0.1234471,-0.04946331,-0.06296441,-0.026633471,-0.39059263,-0.067804694,-0.2896671,0.60803634,0.26601118,-0.6913855,0.33237717,-0.55578035,0.29484874,0.021564102,0.42933875,0.72142005,0.26761883,0.07260594,0.64627385,-0.35470992,0.085965246,-0.011159979,-0.4284356,0.024988063,-0.2745236,-0.03509041,-0.61373395,0.07209097,0.110301,-0.09871582,-0.047127094,0.40601283,-0.5368399,-0.14344236,0.011884697,0.89702576,-0.25226,-0.16824584,0.69093275,0.9421092,0.88679767,-0.039268892,1.3964926,0.25110593,-0.3558698,0.31344852,-0.6941551,-0.5737319,0.28035074,0.17801207,-0.2293511,0.48242968,-0.039756663,-0.10543206,0.33556074,-0.28801054,0.14892614,-0.27083993,0.022092849,0.13001546,-0.20965855,-0.25725752,-0.27801812,-0.13067278,0.02649012,0.2818855,0.17747468,-0.13066974,0.4302904,0.031691153,1.5490279,-0.062435392,0.023003854,0.013918519,0.3588093,0.14911148,0.007907497,0.14662647,0.23703673,0.41244537,0.003238365,-0.5417961,0.06000659,-0.39531428,-0.4648785,-0.23323755,-0.27841276,-0.013678908,0.08816591,-0.36837053,-0.17940673,-0.124896646,-0.25944847,0.3673071,-2.535391,-0.24916846,-0.22824776,0.31598848,-0.31553724,-0.34853128,-0.23968367,-0.4613103,0.323272,0.283201,0.44139606,-0.58248365,0.5017608,0.3253976,-0.53294206,-0.09559634,-0.49647942,-0.047055833,-0.0074731074,0.45507717,-0.112203605,-0.006049146,0.27037102,0.08845209,0.40831256,-0.1550877,0.02964732,0.24402267,0.39711106,0.08643097,0.5160356,0.14931864,0.63445973,-0.1646322,-0.21869652,0.28937858,-0.34304103,0.16636091,0.035680555,0.103164844,0.43012375,-0.3769435,-0.79936266,-0.5346132,-0.21574007,1.0755806,-0.13760436,-0.23167661,0.23916432,-0.18117765,-0.27386382,-0.114723414,0.34670368,-0.09543851,-0.10737606,-0.72088873,0.13429724,-0.07695518,0.07266622,-0.05100709,-0.13139012,-0.37173027,0.7890875,-0.0899287,0.35302317,0.22209887,0.23960137,-0.25963297,-0.52156377,0.06576674,1.0166116,0.38466686,0.06399995,-0.18422458,-0.24039188,-0.49354383,-0.1578188,0.09362295,0.3914611,0.62127686,0.03441548,0.028331505,0.29013214,-0.056351885,0.18848108,-0.14504346,-0.3207178,-0.166527,-0.028909955,0.672704,0.44419208,-0.29142103,0.6703146,-0.10617575,0.2533412,-0.12925836,-0.45344028,0.70945656,1.0769767,-0.22307882,-0.24883938,0.37584454,0.3716426,-0.32855082,0.32207757,-0.5443606,-0.4066456,0.46389252,-0.24506152,-0.22910185,0.3164351,-0.3057773,0.06549273,-1.0126384,0.2311592,-0.2826926,-0.37170613,-0.5129073,-0.057899192,-3.1557162,0.22615007,-0.3175951,-0.152146,-0.114709586,0.16613407,0.10716525,-0.61523736,-0.38329464,0.05126818,0.09471637,0.59843206,-0.030951915,0.085939094,-0.20005359,-0.22130936,-0.2920161,0.16487263,0.1251181,0.32285985,0.011087112,-0.45046374,0.09549728,-0.21378535,-0.3062187,0.03878904,-0.64900917,-0.46284193,-0.29039282,-0.50664616,-0.38154796,0.7228466,-0.24818403,0.054849476,-0.23922244,0.10042976,-0.02422762,0.35869694,0.027853657,0.12325008,0.11799314,-0.040617317,0.1382612,-0.2260968,0.21033578,0.039827697,0.47149444,0.42899796,-0.12547836,0.13844268,0.3673768,0.6848629,-0.06344209,0.6284587,0.4801961,-0.15175468,0.35007298,-0.26958615,0.028441843,-0.50209206,-0.29015577,-0.089711785,-0.23461877,-0.646513,-0.18881495,-0.42729273,-0.760758,0.2739128,-0.055123262,0.10376102,-0.11563157,0.36297414,0.51427066,-0.018702133,0.16480905,-0.1221763,-0.16580203,-0.38025528,-0.34729552,-0.5757308,-0.46857703,0.16397192,1.0632788,-0.099536955,-0.10858859,-0.08866338,-0.2601301,-0.023601536,0.06260737,0.12520681,0.13055758,0.34664452,-0.2328982,-0.69702935,0.44632325,-0.179964,-0.22157973,-0.47985393,0.21383819,0.55798423,-0.44312438,0.61511654,0.31875142,0.012834851,0.08610497,-0.37575388,-0.0035933293,0.048527323,-0.22381252,0.28596702,0.11348394,-0.5454696,0.4054001,0.24312171,-0.30750877,-0.6154437,0.57715124,0.19619988,-0.27412716,-0.10071475,0.3754819,0.10425331,-0.045565248,-0.31763887,0.27765113,-0.42979282,0.18724611,0.26451728,0.053040784,0.2525111,-0.13623363,-0.2805906,-0.71835005,0.10617715,-0.4052335,-0.13149013,0.18677385,0.22216883,0.37006307,0.036558613,-0.14231367,0.28940657,-0.38343543,0.13521187,-0.024005745,-0.25720966,0.2484743,0.23312032,0.27290457,-0.5609065,0.5019815,-0.0054565035,-0.15545225,0.021637037,0.12627348,0.52537113,0.27382076,0.39756438,0.18681103,-0.25912362,0.36384925,0.7203005,0.24851051,0.480769,0.21793815,-0.2860448,0.20765045,0.07371035,0.07906738,-0.044256963,-0.37567765,-0.18269035,0.13777852,0.2352646,0.4143044,0.05017308,0.3905698,-0.15827104,-0.28340796,-0.02246404,0.24429794,-0.0055469275,-1.2789797,0.47974676,0.3252394,0.85137045,0.3191889,-0.14090315,-0.010006268,0.6641782,-0.20851892,0.13624462,0.30244613,-0.16167015,-0.5440105,0.41584998,-0.5955521,0.36514008,-0.047925536,-0.022756508,-0.023462212,0.009211287,0.29576862,0.88720876,-0.24959616,0.018240862,-0.10469536,-0.364982,0.19548707,-0.15145183,0.1450395,-0.4727345,-0.26909083,0.6027376,0.30635542,0.16422729,-0.13029057,0.024503723,0.1392076,-0.10593657,0.15775406,0.020720422,0.2068337,-0.14430992,-0.7030549,-0.22815195,0.3904519,-0.19255602,0.1850728,0.36409461,-0.20300175,0.20848078,0.017765157,0.013871169,-0.12445854,-0.43868995,0.012622171,-0.076047026,-0.3151797,0.4898469,-0.27025193,0.26333994,0.27178156,0.017373038,-0.36679572,0.35935315,0.0828592,0.5578161,-0.10876543,-0.33410448,-0.4104327,0.18728074,0.11205082,-0.28282982,-0.008445933,-0.12006241,0.13381577,-0.532897,0.44006014,-0.0064201653,-0.2512501,0.03100498,-0.23041219,-0.029829517,0.4293626,-0.24126607,-0.07756983,0.08099085,0.003872024,-0.16036975,-0.049012348,-0.052427597,0.2915682,0.16389641,-0.091601916,-0.1120312,-0.026828066,-0.004627362,0.43078944,0.044099182,0.31175685,0.38012418,0.23772608,-0.40806285,-0.097096,0.38130403,0.32920057,0.030995652,-0.020979697,-0.31134385,-0.33292812,-0.3837692,0.14431548,-0.04905177,0.27295542,0.18585068,-0.37711853,0.6913655,0.03120472,1.3385266,-0.050516088,-0.2934553,-0.005241558,0.5860714,0.15042943,0.058246326,-0.2879097,0.8766666,0.57700413,-0.08692186,-0.13528886,-0.3503749,-0.044073258,0.10440861,-0.259829,-0.20229657,0.14186181,-0.58289754,-0.5472629,0.20810293,0.12293928,0.22513251,-0.0629628,0.1302229,0.24421221,0.042239606,0.38649833,-0.5483637,-0.40345946,0.13014089,0.18971746,-0.020033479,0.22741961,-0.44743377,0.30776033,-0.58161163,0.08293394,0.0047439337,0.19133857,0.030166484,-0.2229146,0.25902283,-0.051910643,0.4001264,-0.28081995,-0.33977827,-0.30571574,0.55371493,0.007773401,0.1489948,0.62973326,-0.2816981,0.024402011,0.16079903,0.60420144,1.2924244,-0.16725759,0.06753758,0.3053261,-0.31179503,-0.68253064,0.33886462,-0.1983547,0.20617454,-0.11249997,-0.34141827,-0.47862643,0.43296826,0.11512633,0.11040968,0.017655825,-0.4981171,-0.32506847,0.39986032,-0.38332087,-0.24245472,-0.31499195,0.2000882,0.61217386,-0.30550027,-0.2423485,0.17221501,0.2712014,-0.29242933,-0.5954195,-0.046305653,-0.26586884,0.33672398,0.17216137,-0.16085061,-0.055261604,0.06390799,-0.35940263,0.26455536,0.28901738,-0.3857232,0.03472265,-0.30178636,-0.28834426,0.8483459,-0.26127777,0.22477223,-0.63292503,-0.41764674,-0.744998,-0.5977081,0.37536797,0.11122017,-0.15292734,-0.59607834,-0.1836682,0.08947627,-0.15419814,-0.010855425,-0.2583772,0.34257433,0.05894001,0.2506348,-0.13563669,-0.8418362,0.016799927,0.15724,-0.119813174,-0.7016533,0.4169967,-0.01760216,0.9702605,0.17536101,0.124995306,0.43698505,-0.4679845,-0.07568658,-0.179683,-0.16405669,-0.7017271,0.007145051 -889,0.42199266,-0.13821255,-0.46356174,-0.1405729,-0.2028628,0.15984184,-0.15295817,0.60492384,0.15386908,-0.5073157,-0.09160706,-0.14345168,-0.07398497,0.52261305,-0.43137467,-0.4460728,-0.098373644,0.11104499,-0.3738186,0.39893097,-0.4470341,0.39919317,0.03495546,0.39098895,0.23106036,0.3225537,0.18335429,-0.11841922,-0.36173245,-0.36977813,0.020727703,0.019262027,-0.5500307,0.14786614,-0.32984418,-0.27936712,0.05754309,-0.64811164,-0.41067153,-0.721506,0.22649407,-0.7932244,0.6809647,-0.047250196,-0.23184739,0.19728881,0.2911479,0.2785277,0.07308878,-0.06569901,0.3721252,-0.115661554,-0.033605754,-0.017317222,-0.37474397,-0.4823402,-0.67366207,-0.021449635,-0.41863987,-0.16723996,-0.2501083,0.17638463,-0.19684157,-0.075720794,0.036498204,0.43312058,-0.3965047,-0.04170301,-0.031378433,-0.038578052,0.45923555,-0.56584924,-0.3160933,-0.05605026,0.27228734,-0.3691426,-0.036115758,0.35215044,0.20365223,0.3940482,-0.10292453,-0.13526686,-0.45601743,0.022414794,0.1409617,0.68593127,-0.37599394,-0.35778987,-0.10345569,-0.22838761,0.34212297,0.16253494,0.10186406,-0.35209042,-0.1614882,0.014963388,-0.27349257,0.4038889,0.47098124,-0.16000322,-0.037035994,0.48529193,0.3413297,0.21286082,-0.08361149,-0.038813148,-0.013709598,-0.4825648,-0.23090331,-0.018034771,-0.13013066,0.58550876,-0.1583611,0.4102854,0.6222691,-0.035652988,-0.04739407,0.06012305,0.23899494,-0.16916054,0.13576081,-0.3600512,0.08803945,-0.4871763,0.002897689,-0.039359257,0.6720181,0.20541754,-0.9273806,0.40577132,-0.5656375,0.051429715,0.13869078,0.3484589,0.5157595,0.50729126,0.25747877,0.6175865,-0.37318265,-0.0023276256,0.13403694,-0.25505778,0.21699923,-0.17206262,-0.0068744714,-0.51951015,-0.1629716,0.23544072,-0.12858485,0.043529313,0.37366757,-0.3950241,-0.065118186,0.1724983,0.80287623,-0.26931036,0.08142356,0.7199886,1.2153853,0.9874143,0.08962265,1.312749,0.07116673,-0.25345057,0.03610479,-0.19418485,-0.7906046,0.2544907,0.424228,-0.6407722,0.40954843,0.18515931,0.088775024,0.3895632,-0.39709342,-0.070954435,-0.16275324,0.17691046,0.04658282,-0.24072233,-0.48784298,-0.33156174,-0.05606114,-0.0055244793,0.014641927,0.21897449,-0.21762808,0.36473545,0.36975846,1.588025,-0.10834129,0.15658572,0.06616927,0.4257707,0.08722807,-0.15909089,-0.045315422,0.13249424,0.22130847,0.1162654,-0.42606196,-0.037561838,-0.16991566,-0.56362337,-0.10411954,-0.3111107,-0.2902808,-0.16653164,-0.44716564,-0.20884515,-0.1406718,-0.40112674,0.4487427,-2.7473373,-0.053255722,-0.09599483,0.36975873,-0.109252386,-0.4367989,-0.044090986,-0.42834777,0.6936605,0.29637378,0.52076244,-0.62510574,0.31781313,0.59006715,-0.46236256,-0.11773205,-0.58886,-0.09311126,0.030736921,0.19598466,0.052823786,-0.120985515,0.09875249,0.3439462,0.26988378,-0.09731073,0.18657735,0.26527855,0.3278235,-0.027902126,0.44273227,-0.17523733,0.51063406,-0.28082657,-0.15508899,0.24956425,-0.6323631,0.14730069,-0.149906,0.19596967,0.41316864,-0.48350203,-0.792364,-0.56306785,-0.31076956,1.0879653,-0.09102157,-0.29666626,0.3523153,-0.27345875,-0.52348363,-0.031663805,0.3264963,-0.2878647,0.071768716,-0.825924,-0.10383546,-0.15704568,0.17723121,-0.040507726,0.13451856,-0.5878055,0.6880284,-0.16650115,0.40535957,0.38164294,0.17728959,-0.4639371,-0.4232744,-0.006651046,1.0288984,0.57223284,0.15394965,-0.13470976,-0.14414245,-0.33193108,-0.3047113,0.08220099,0.40525278,0.716206,-0.032895006,0.030355912,0.18623391,-0.022986481,0.03792614,-0.062618926,-0.32271692,-0.029062161,-0.004126182,0.60777223,0.56445014,-0.2141038,0.28945324,-0.13777357,0.36144602,-0.19106907,-0.34282982,0.4486162,0.8269216,-0.038629726,-0.17089412,0.7697693,0.42448145,-0.22990447,0.49087194,-0.5631308,-0.4453316,0.4367706,0.0032327403,-0.5775851,0.17479672,-0.24185435,0.06678262,-0.8858398,0.54058486,-0.12069027,-0.48030588,-0.5144788,-0.19367181,-2.9335017,-0.023618784,-0.057946842,-0.35246998,-0.083950475,-0.09010247,0.1905321,-0.7579899,-0.75309974,0.08720911,-0.076986626,0.725731,-0.00047089046,0.10532176,-0.0040627536,-0.34753415,-0.3965604,0.21153678,-0.01893911,0.40791115,0.0782631,-0.42829177,-0.22031006,-0.31241384,-0.5799276,0.086460866,-0.6850945,-0.47862127,-0.15402396,-0.4227436,-0.37669343,0.73545486,-0.43622434,0.011747697,-0.25910994,-0.09646177,-0.30277106,0.4507543,0.16715254,0.18274087,0.028956423,-0.014081494,0.042261593,-0.347871,0.30505913,0.21487363,0.36993173,0.48751628,-0.17129827,0.3280006,0.5572032,0.8584865,-0.07388961,0.99858624,0.39049658,-0.13066015,0.23814462,-0.38326314,-0.29679418,-0.53735715,-0.3098957,0.112448126,-0.34899533,-0.3360268,-0.12340693,-0.38081935,-0.71017903,0.54668975,0.05085284,0.12714808,-0.09632739,-0.040968455,0.18348163,-0.17953461,-0.15996304,-0.034039453,-0.14171973,-0.5566631,-0.306063,-0.73449135,-0.4609772,-0.06452214,1.0036591,0.05860079,0.09075531,0.2651517,-0.2803934,0.17510238,0.029298764,-0.031045772,0.025686612,0.2428205,0.119823106,-0.69741714,0.50995666,-0.10562606,-0.0048956047,-0.53887993,0.023105025,0.73373234,-0.44016173,0.5156921,0.4915374,0.19312176,-0.18542624,-0.50361615,-0.23585807,-0.090206474,-0.24055497,0.40548176,0.15325826,-0.7495352,0.49918577,0.32512566,-0.32422787,-0.7308721,0.55161047,0.08109458,0.033898517,0.045021936,0.3468264,0.12796932,0.012269978,0.01786779,0.31828466,-0.32108945,0.38392913,0.30218276,0.12820768,0.41744468,-0.17639178,-0.16648445,-0.77110046,0.11053394,-0.31963497,-0.33691555,0.009728597,0.0049109343,-0.053725645,0.1290819,0.1196217,0.28048867,-0.5255924,0.18167995,0.07889027,-0.24595307,0.18526393,0.519511,0.59908,-0.31857732,0.5947105,0.00703689,0.021553122,-0.18614835,-0.18543826,0.46559852,0.21840233,0.18934822,0.16860853,-0.26988065,0.23732468,0.7459542,0.20177521,0.37407154,0.17809297,-0.26598948,0.22177656,0.10464681,0.15186508,0.10144312,-0.63653886,0.10423644,-0.106605604,0.010236878,0.48287874,-0.023757068,0.22098094,-0.1429865,-0.33495352,0.075988404,0.25387126,-0.19611219,-1.558633,0.3539476,0.10757171,0.77174824,0.5719945,-0.07954808,0.06629339,0.72829616,-0.2462344,0.043833997,0.35647795,0.021032682,-0.56069654,0.5657591,-0.7559358,0.34892818,0.0012164575,-0.018282946,0.00017727338,0.014753332,0.34844735,0.7545707,-0.081245884,0.14722429,0.023270901,-0.25183532,0.19170281,-0.42945164,0.2440487,-0.29739618,-0.19182189,0.591869,0.36262482,0.36811036,-0.170398,0.171019,0.037930492,-0.19670238,0.30120733,0.07927632,0.05224116,-0.26126096,-0.63978374,-0.2355668,0.62294894,-0.008496111,0.22244596,0.15853435,-0.3077243,0.17428468,-0.0645671,-0.03324672,0.02546951,-0.81624943,-0.033167128,-0.37708616,-0.3715673,0.3238497,-0.103447124,0.30205137,0.26396668,0.06288462,-0.22173151,0.31375557,0.35364974,0.7133106,-0.033135153,-0.17785318,0.06941343,0.16690312,0.16546907,-0.12662408,-0.028803643,-0.2818211,-0.009231723,-0.34426954,0.33866823,0.0149696665,-0.22339953,0.14717351,-0.16273744,0.16887826,0.465823,-0.23119281,-0.055988666,-0.11829584,0.10653642,-0.023598662,-0.16605908,-0.1610322,0.12633856,0.28827026,0.012741602,-0.07127008,-0.12041748,-0.18146256,0.2780877,-0.03969087,0.48673242,0.61953217,0.14399089,-0.6122789,-0.17170022,0.034164842,0.42061278,-0.0026477552,0.013680761,-0.32477725,-0.44520867,-0.2628469,0.2771509,-0.26638675,0.25741693,0.10277675,-0.31615904,0.64081573,-0.004972371,1.0886092,-0.01210154,-0.36831373,0.0017773142,0.5115604,-0.0845969,-0.09556888,-0.40064353,0.8911265,0.4081251,-0.27355412,-0.13450171,-0.42421213,-0.059356946,0.22338794,-0.16430408,-0.27201673,-0.06224199,-0.6901375,-0.3534014,0.2605851,0.12944399,0.030429102,-0.07358033,-0.03724432,0.43083775,0.16814001,0.5176289,-0.49104732,-0.106240936,0.44613874,0.2178028,0.05372363,0.028634993,-0.44329026,0.39158803,-0.390055,0.04632308,-0.23581854,0.20199409,-0.28916994,-0.40284982,0.103989474,0.04710454,0.42126685,-0.13094285,-0.47669697,-0.11486216,0.48572236,0.055552814,0.07658359,0.46389169,-0.17611621,0.10384011,-0.13429527,0.39532852,0.96395695,-0.21522944,0.17547446,0.40498713,-0.4204964,-0.4538421,0.13943541,-0.36443418,0.21354516,-0.08673651,-0.3458562,-0.5456915,0.23728797,0.30616662,-0.01342895,0.114967465,-0.3476515,-0.23731738,0.41723305,-0.32100254,-0.29148972,-0.34304273,-0.090456165,0.5959734,-0.45700365,-0.2209816,0.053553667,0.23896901,-0.25729975,-0.36048508,-0.008357497,-0.19482297,0.45241103,0.08896799,-0.5008759,-0.1635717,-0.07809197,-0.30502245,0.07690152,0.20464435,-0.3631941,-0.06542279,-0.27521265,-0.086330146,0.83211666,-0.10247484,0.10380007,-0.4819864,-0.49296442,-0.87331843,-0.45876122,0.26610035,0.1986863,-0.12523778,-0.6903654,-0.03292841,-0.07317592,-0.08288046,0.022869166,-0.31350276,0.37211052,0.19401935,0.38688084,-0.101404384,-0.64227784,0.15757892,0.14955123,-0.036061954,-0.4445116,0.6016875,-0.051968317,0.75081825,0.16036305,0.015837623,0.02178978,-0.5576529,0.25471961,0.0074601346,-0.20920442,-0.5945189,0.30683768 -890,0.33899626,-0.14302982,-0.7732234,0.1683225,-0.109181106,0.09593544,-0.51142913,0.42869008,0.23535788,-0.5352115,0.014184271,-0.15994985,-0.19386254,0.29118696,-0.14421052,-0.37674752,-0.015623544,0.34124812,-0.46085957,0.5985159,-0.342158,0.2789046,0.11101348,0.26515853,-0.10838898,0.14951551,-0.027065387,-0.17482053,-0.4112793,-0.23128001,0.1258505,-0.038980853,-0.65225786,0.24305032,-0.25603965,-0.43854618,0.22043066,-0.6040882,-0.31450555,-0.60512495,0.02765143,-0.8315032,0.6929113,-0.045657378,-0.33749846,0.28725377,-0.21830875,0.28888682,-0.1125891,-0.06725056,0.29490408,-0.3614693,-0.3631256,-0.5722658,-0.43060282,-0.3310493,-0.53779304,0.05161507,-0.5593652,0.1782767,-0.03560243,0.26922354,-0.031764466,0.15175006,-0.2283528,0.004736364,-0.41506615,-0.17197435,0.03800984,0.023960924,0.25602603,-0.7348636,-0.097366564,-0.1657406,0.16306728,-0.039987687,-0.2670575,0.1428233,0.23511368,0.458748,0.03634429,-0.12867157,-0.36954156,-0.003206869,0.2156967,0.4174621,-0.27555826,-0.089942634,-0.17288788,-0.05288588,0.6320581,0.12980838,0.15707108,-0.20199,0.06274889,-0.15424079,-0.54381335,0.18386485,0.5901842,-0.27449298,0.13872902,0.57816917,0.6365333,0.3280193,-0.18284295,0.13319102,-0.16642879,-0.36854228,-0.07531164,0.12145374,-0.19858158,0.6562227,-0.1038599,0.20093091,0.38190496,-0.25724724,-0.13845314,0.051377684,0.037739437,0.017421901,-0.13481258,-0.34262288,0.2498426,-0.40349934,-0.07119267,-0.33817494,0.5553989,-0.0014734672,-0.8259966,0.37124434,-0.46010232,0.009944547,0.052201975,0.6598873,0.68662286,0.91481906,0.16313134,0.7863164,-0.4616556,0.16850281,-0.19920151,-0.1457596,0.07730951,-0.093749255,0.061834857,-0.47419512,0.060629636,-0.012265116,-0.41040704,0.17243123,0.6941488,-0.49242482,-0.1419983,0.20742981,0.56288135,-0.32825205,-0.17547345,0.81410646,1.3037952,0.871525,0.16308565,1.2462691,0.4265376,-0.19594519,-0.28166524,-0.14185177,-0.77875155,0.119340755,0.3195902,-0.24156256,0.5994757,0.120211214,-0.17672366,0.3660914,-0.15193082,-0.1389681,-0.0136482185,0.34398293,-0.16209057,-0.19432513,-0.21491992,-0.080827735,-0.11519983,0.09079379,0.05999143,0.36858892,-0.19371122,0.5044234,0.24125396,1.2313732,-0.08850521,-0.03013244,-0.00027609244,0.22334607,0.2604438,-0.04464598,-0.17035995,0.42713618,0.3331327,-0.05333528,-0.44053152,-0.11505276,-0.21085864,-0.54406065,-0.19802131,0.09421859,-0.049035918,-0.2735469,-0.0683899,-0.32682285,0.095308095,-0.3939335,0.4542221,-2.388491,-0.19538693,-0.05955516,0.37045154,0.046355363,-0.3719211,-0.05010596,-0.37946868,0.49522874,0.31324485,0.38834497,-0.44842252,0.33617958,0.435032,-0.62345743,-0.1692638,-0.6686217,-0.010181072,-0.1009894,0.4515991,-0.075947754,-0.32139906,0.082068674,-0.17634042,0.44750476,-0.22255488,0.15914023,0.41559944,0.45886782,0.12820084,0.28730327,0.08519087,0.6708789,-0.23341234,-0.17147422,0.20909278,-0.510596,0.5529667,-0.09136864,0.26286995,0.40205577,-0.53086925,-0.6878512,-0.48531625,0.10823142,1.3786281,-0.23548062,-0.4686201,0.07119004,-0.2508823,-0.48941362,0.032105815,0.2792412,-0.20191498,-0.068981715,-0.7915611,-0.33622584,-0.0010536785,0.31874666,0.002948314,0.23425339,-0.39584717,0.4085729,-0.014982328,0.45450187,0.7239027,0.109628975,-0.09349596,-0.3487312,0.013697699,1.1497048,0.30723938,0.11044994,-0.3079596,-0.1489029,-0.23258887,0.060507786,0.12986316,0.23651643,0.7145892,-0.0114487605,-0.006689474,0.27593973,-0.09766933,0.03079229,-0.10167142,-0.49157897,-0.16657265,0.063021444,0.51630896,0.85581845,0.026340403,0.5388374,-0.14505444,0.34613648,-0.18802547,-0.5194244,0.49680963,0.72196823,-0.24919319,-0.2032727,0.6106004,0.3926719,-0.2698018,0.5778819,-0.59754634,-0.41042304,0.3164022,0.016005004,-0.34536514,0.45331845,-0.27611133,0.24794151,-1.0564092,0.2914403,-0.29990718,-0.58721596,-0.79557306,0.018537624,-2.1898792,0.19526882,-0.20284067,-0.20501195,-0.13332182,-0.26105353,0.20755619,-0.46714735,-0.6421531,0.26186943,0.36390674,0.3702712,-0.06771872,0.047257554,-0.21415989,-0.43683663,-0.16084658,0.31424704,0.14723383,0.13683249,-0.35939363,-0.53238255,-0.10748442,-0.3141059,-0.16723873,-0.08915999,-0.7578264,-0.18882167,-0.08552451,-0.39045605,-0.18693238,0.5897165,-0.60144264,-0.19462673,-0.38661686,0.14714423,0.10845545,0.29485562,-0.15803401,0.18376334,0.09405714,-0.21672918,0.030504843,-0.26398912,0.029597744,0.19123626,0.14614241,0.5580032,-0.1863637,0.068189986,0.51004636,0.8422,-0.11697403,0.9215674,0.5718715,-0.2558112,0.24347644,-0.30077398,-0.21253538,-0.6756809,-0.25660634,-0.23266362,-0.43115282,-0.54585123,0.054817498,-0.29394704,-0.8797013,0.7280762,0.051466763,-0.28483915,0.19643216,0.859468,0.42068973,-0.28015074,0.116844185,-0.2593589,-0.15785497,-0.40928963,-0.37974843,-0.8419152,-0.4358404,0.03273839,1.2912972,-0.22863829,0.12836513,0.38867983,-0.29478577,0.05005245,0.19830601,0.020353124,0.052760005,0.3089079,0.06679597,-0.64024496,0.31536508,-0.113714956,-0.23488583,-0.56660765,0.2049045,0.9239262,-0.8541859,0.26772067,0.69088334,-0.08512911,0.13779038,-0.63205165,-0.06302624,0.010104309,-0.2704102,0.34129962,0.3718382,-0.60955924,0.5138878,0.38945237,-0.3511002,-0.8493247,0.35679615,-0.06484566,-0.07074801,0.01886741,0.4454272,0.053134754,0.11454747,-0.4042152,0.017238617,-0.3781383,0.26353663,0.19617672,-0.15962096,-0.042826887,-0.08952141,-0.31038862,-1.037413,0.105499804,-0.41164568,-0.21364081,0.52583355,0.14525402,0.21954994,-0.16430892,0.3763984,0.41435492,-0.5986515,0.14544706,-0.26263073,-0.3517789,0.42879918,0.5096834,0.34157622,-0.32043314,0.52773196,-0.15566728,-0.27786815,-0.28796637,-0.08702854,0.5162082,0.014451042,0.13946994,0.20692877,-0.095351756,0.12313663,0.6883537,0.19438536,0.4046165,0.1636451,-0.118984215,0.29120323,0.13054933,0.37308946,-0.080455355,-0.47367355,0.04654391,-0.08811498,0.19753115,0.4200236,0.15300818,0.49226618,-0.23534936,-0.122697145,-0.09803373,0.16223763,0.3640289,-0.8154831,0.35600606,0.19445825,0.37822828,0.6280017,0.2397147,0.18473947,0.57444644,-0.45045146,-0.024769902,0.37385273,0.110187866,-0.4529426,0.39769706,-0.8424427,0.2458932,-0.1251428,0.19614144,0.35080758,-0.10282558,0.75665444,1.1317985,-0.19170938,0.07858472,-0.064843066,-0.06873206,-0.19260144,-0.20295906,-0.08592036,-0.2620162,-0.38971338,0.93921256,0.03471817,0.563469,-0.18435265,0.013987447,0.39064184,-0.23000221,0.6526738,0.074858606,0.16078667,-0.10687175,-0.44408157,-0.08848137,0.61017686,0.17783208,0.13420007,-0.013783996,-0.20372427,0.37901828,-0.23068468,-0.23154098,0.056933388,-0.5302755,-0.01897344,-0.40467405,-0.52671355,0.5384566,0.22319674,0.09094646,0.08798101,0.13355094,-0.09106338,0.4462932,0.02639381,0.82990235,0.12200896,-0.46658826,0.07323355,0.34104005,0.18397929,-0.22523253,0.055536788,-0.066044815,0.17828709,-0.8924642,0.44937038,-0.34967482,-0.41290593,-0.07274429,-0.16557148,-0.012845695,0.3340137,-0.23773761,-0.21640028,0.28950688,0.0016673555,-0.3151937,-0.47718742,-0.38266185,0.044362117,0.22906418,-0.08496783,-0.18818696,-0.091877185,-0.08049796,0.39713502,0.030178184,0.19701307,0.35047516,0.18033914,-0.49763694,-0.111436255,0.09897738,0.49520096,-0.044886608,-0.047030997,-0.4188663,-0.51705354,-0.2617312,0.059378546,-0.098359026,0.35231707,0.23920222,-0.24331407,1.0376135,-0.106494814,1.1445371,-0.091594875,-0.30684385,0.040634792,0.59104854,-0.0942534,-0.09194488,-0.47163454,1.1348935,0.67475516,-0.09836265,-0.05511107,-0.6402276,-0.3476219,0.08916483,-0.30820456,-0.17914683,-0.053472698,-0.6137574,-0.26122043,0.24269779,0.26738644,-0.11305088,-0.16841936,0.48475328,0.23981623,0.1053034,0.036953676,-0.46915743,-0.19124024,0.40001297,0.20591669,-0.08803299,-0.006188708,-0.41655526,0.27308086,-0.63488966,-0.018164491,-0.3506918,-0.050933268,0.059467256,-0.2869332,0.18627916,0.18937843,0.23162723,-0.5205385,-0.46042845,-0.041137513,0.45233312,0.115135185,0.31766742,0.60129136,-0.31167972,-0.09276116,-0.103140175,0.44222498,1.1282266,-0.40244344,0.036042187,0.30486438,-0.22625558,-0.6002367,0.32712883,-0.37867117,0.13230829,-0.09236947,-0.3775909,-0.635413,0.2712047,-0.002664869,-0.124119766,-0.05340598,-0.6433634,0.07963091,0.15591979,-0.35189447,-0.11233052,-0.21549864,0.14017412,0.87486744,-0.289682,-0.7547636,0.045742746,0.24648719,-0.51349217,-0.43502417,-0.090849966,-0.33063585,0.26628152,0.32866415,-0.415352,0.213762,0.26731274,-0.6547846,-0.10124358,0.1741947,-0.38460135,-0.07278348,-0.5067947,0.23016565,0.62967557,-0.19708925,0.20527662,-0.36747846,-0.6295747,-0.7194908,-0.20974644,0.007034769,0.08412861,0.039010767,-0.65243286,0.09203244,-0.2935331,-0.252029,0.041638978,-0.50248706,0.68739885,0.2238576,0.331275,-0.45734832,-1.025813,0.14600031,0.1354604,-0.15256254,-0.5021493,0.34012875,-0.20302467,0.8270586,0.041249912,0.12539594,0.4132454,-0.8310556,0.38769174,-0.27424824,-0.14022112,-0.634504,-0.0368209 -891,0.4807566,-0.40984088,-0.48710448,-0.08241738,-0.35354185,-0.0013075242,-0.19323125,0.6205939,0.22049053,-0.6262122,-0.22957459,-0.17501146,-0.0014194146,0.100627296,-0.32901174,-0.30397618,-0.06401329,0.2983468,-0.3009916,0.571644,-0.2410066,0.26244742,0.11775613,0.32794878,0.36547488,0.1216374,-0.09813457,0.08873503,-0.075254604,-0.37278476,-0.11193395,0.29875717,-0.46883106,0.40262026,-0.35862386,-0.5075843,-0.02144687,-0.61340183,-0.49394223,-0.84384024,0.3070722,-1.0082202,0.7496027,-0.09577819,-0.39165798,0.077995606,0.32376453,0.28369045,0.13068105,0.055642027,0.2969271,-0.2357932,-0.040812995,-0.19911303,-0.23428085,-0.58374417,-0.63358176,-0.035160538,-0.38111994,-0.08131926,-0.41671324,0.3707975,-0.22739193,-0.11391346,-0.19024643,0.67694294,-0.4266874,0.14066245,0.12864736,-0.1295038,0.56002575,-0.76171976,-0.25571272,-0.061348878,0.1109968,-0.16120349,-0.31600195,0.17755398,0.35910177,0.46400756,0.04459176,-0.21547405,-0.3423668,-0.058973394,-0.00888299,0.54841775,-0.3358855,-0.2371281,-0.09102488,0.09382996,0.44322065,0.42098352,0.18447569,-0.28759602,-0.014120849,0.066262014,-0.22939652,0.48160955,0.54767936,-0.1818228,-0.07457893,0.23892051,0.52813995,0.10151116,-0.23228715,0.20294657,-0.107557856,-0.5503419,-0.12497342,-0.0398049,-0.24094994,0.5957722,-0.2222348,0.30018422,0.6287011,-0.19392933,-0.043565027,0.32297972,0.22876292,-0.1203136,-0.40619844,-0.47654402,0.32552433,-0.58962655,0.058077298,-0.1985076,0.74197257,-0.17919518,-0.519142,0.19518577,-0.6511605,0.09965363,-0.14665669,0.37209287,0.62457097,0.6230962,0.32223433,0.82925117,-0.29376253,-0.026387606,0.095568895,-0.22234614,0.09460551,-0.36883715,-0.0061182426,-0.5036096,-0.12058671,-0.26682347,-0.14010563,-0.07682022,0.7669131,-0.7774,-0.236962,0.1264635,0.9090481,-0.2426307,0.0055158986,1.0075332,1.1405509,1.2717931,0.09693908,1.1176865,0.26161763,-0.23153745,-0.08927098,0.004661734,-0.6096591,0.33489913,0.46874678,-0.11215173,0.13620672,0.17378396,-0.059414778,0.62152743,-0.5043286,-0.19351648,-0.31154618,0.04128591,0.100592844,-0.25063106,-0.6908699,-0.18586077,-0.07316326,0.20486125,0.028626762,0.18331172,-0.25235766,0.44741824,0.039542735,1.4068525,-0.22676834,-0.010659928,0.1868077,0.37750134,0.18728739,-0.24664044,0.10377726,0.12102453,0.385627,0.33533132,-0.45684907,0.0776608,-0.213507,-0.41455618,-0.20969948,-0.2880997,-0.19439782,-0.16282204,-0.49766195,-0.4043051,-0.1987765,-0.36412507,0.25044006,-2.4686244,-0.27274045,-0.20461163,0.43294826,-0.15622322,-0.45782655,0.24834186,-0.48556864,0.6248013,0.43069428,0.539421,-0.6772657,0.3419491,0.59747314,-0.5282666,0.006433771,-0.8152144,-0.16476974,-0.19024651,0.36081725,0.13963738,-0.20578788,0.08230514,0.022207508,0.54761547,-0.064826116,0.22789446,0.37448215,0.40822887,-0.31780034,0.5437434,0.07995284,0.5417505,-0.14203757,-0.32784107,0.45023552,-0.30424753,-0.01684535,-0.105229266,0.021777878,0.5411042,-0.5464902,-0.89490837,-0.9452802,-0.2063024,1.0379243,-0.059247274,-0.67898047,0.28009126,-0.49504244,-0.49881443,-0.034628153,0.5287623,-0.042020816,0.1576058,-0.9034555,-0.10875574,-0.14110146,0.114645466,-0.034285363,-0.17706913,-0.75187844,0.9466569,-0.22666542,0.46156585,0.43633074,0.38795295,-0.40044308,-0.5257392,-0.14277512,1.0567732,0.66074556,0.09720277,-0.30677626,-0.0016142565,-0.17286846,-0.11137654,0.20317411,0.6296906,0.6352803,-0.07496826,0.12162711,0.44331518,-0.017607931,0.08415655,-0.029589634,-0.49959707,-0.22682913,-0.064168096,0.71791965,0.72872216,0.0917151,0.5885918,-0.21752647,0.5628011,-0.17755798,-0.4970937,0.267536,1.2713027,-0.14911182,-0.5382707,0.8732049,0.46989873,-0.19081013,0.43230522,-0.6147578,-0.34475043,0.19163066,-0.20666203,-0.72564656,0.22235471,-0.3965738,0.22444381,-0.9134435,0.48096168,-0.32771567,-0.8495818,-0.66081196,-0.25963628,-3.0011296,0.363379,-0.38274643,-0.16943468,-0.16126712,-0.39281875,0.2701483,-0.62137675,-0.62004554,0.057858907,0.027900435,0.79571,-0.09064953,-0.019270202,-0.14583696,-0.45606804,-0.23761518,0.24725193,0.23764172,0.3089455,-0.12002222,-0.36878327,0.0018699307,-0.08255401,-0.5831794,0.013587149,-0.9188671,-0.68787485,-0.16931556,-0.5723038,-0.35633057,0.7293967,-0.2153346,0.058526892,-0.3974563,0.07017975,-0.011090453,0.20733452,0.071102075,0.3025014,0.10747996,-0.15225898,0.16550249,-0.26645902,0.14425509,0.050275568,0.36374962,0.22587395,-0.2535269,0.3574879,0.57154685,0.6848183,-0.2908521,1.2134387,0.6428891,-0.1566318,0.146782,-0.088958375,-0.4474538,-0.65053046,-0.2801479,0.2525919,-0.55573225,-0.27593544,0.1396046,-0.48942846,-0.81462026,0.7429713,-0.04085394,0.3794251,0.002325269,0.39968652,0.6079553,-0.22498855,-0.30310774,-0.007249383,-0.31563473,-0.573581,-0.27157247,-0.6056606,-0.621164,-0.22663032,1.1786114,-0.11810087,0.21870361,0.30362374,-0.15633672,0.07544514,0.14545101,-0.06937433,0.04929858,0.5761947,-0.27718848,-0.76587677,0.32953212,-0.16852869,-0.14245181,-0.5579708,0.4959796,0.850953,-0.57109016,0.5755666,0.44004643,0.20289429,-0.5332558,-0.613959,-0.11270222,-0.07141546,-0.24686477,0.67816836,0.36997956,-0.7348559,0.47039095,0.34215993,-0.1543525,-0.7407472,0.660171,-0.22468421,-0.22123593,-0.009933426,0.34011868,0.051751766,-0.011948178,0.015874583,0.2964647,-0.2985519,0.32418698,0.21357553,-0.13223681,0.11066718,-0.31440845,0.00600785,-0.825878,0.19044226,-0.58001494,-0.34933588,0.31103283,0.06260434,-0.013534193,0.31381336,0.1428093,0.49547905,-0.17844535,0.089402,-0.32515156,-0.5052279,0.4090503,0.5760489,0.5048813,-0.3985174,0.4723929,0.09216903,-0.23347656,-0.19706856,0.11911015,0.47653005,0.03877447,0.5320488,-0.12380899,-0.061979312,0.35237217,0.8214312,0.21774295,0.6470328,-0.05269356,-0.008034787,-0.022743229,0.13655263,0.38577354,-0.11534904,-0.7699481,0.13966714,-0.44031546,0.18199499,0.5082575,0.028359026,0.23837426,-0.22069822,-0.394248,0.033885412,0.15828753,0.14846438,-1.5567597,0.37871736,0.21472563,0.9737726,0.32446605,0.07135056,-0.17726296,0.8409167,-0.058173385,-0.03262911,0.42476007,0.19090632,-0.2897549,0.53914464,-1.0455906,0.33166158,-0.07431459,-0.009900708,-0.1640003,-0.10573024,0.57879364,0.8914286,-0.22642693,0.035196066,-0.022070093,-0.35093725,0.33095393,-0.48489827,0.2251145,-0.5291927,-0.4432104,0.8006619,0.52136165,0.44630894,-0.14869381,0.08545354,0.080610104,-0.18099976,0.3995922,0.1349167,-0.028017465,-0.3136749,-0.64379305,-0.13237442,0.40101144,0.0066515896,0.17934373,0.0024274725,-0.21005043,0.2840111,-0.096984714,0.08969646,0.087600976,-0.6276686,-0.06944968,-0.35757568,-0.51788354,0.5140768,-0.050625376,0.046123292,0.16701017,0.038439013,-0.18042406,0.23320507,0.066688605,0.83153343,0.15763211,-0.17989816,-0.26196858,0.0961389,0.11576119,-0.28144407,-0.12708825,-0.17946577,0.28961346,-0.6640166,0.42516953,0.023952693,-0.56080616,0.32798812,-0.106900685,0.0075459685,0.49425015,-0.21028045,-0.18967935,0.12993021,-0.050770577,-0.14937386,-0.29452503,-0.024506519,0.28029707,0.0915237,0.020027189,-0.14483775,-0.21543993,-0.36941716,0.50993353,-0.086908534,0.60967517,0.5213545,0.031999048,-0.3536084,-0.065177664,0.24387115,0.55469644,-0.16736275,-0.100271024,-0.17374937,-0.62394774,-0.36852866,0.25372145,0.06752013,0.47005087,0.14934936,-0.031101776,1.0263441,0.046080966,1.3246906,-0.034205027,-0.5021811,0.046120163,0.56198,-0.070588775,0.011156905,-0.41202527,1.0226109,0.6052125,-0.14843395,-0.026831407,-0.5732961,0.10740713,0.22153774,-0.16514541,-0.18495552,-0.0146250175,-0.80432945,-0.26337856,0.24567914,0.41767508,0.149053,0.02460299,0.15391515,0.5989638,-0.13402304,0.26461652,-0.40912098,-0.16720062,0.36056006,0.37846655,-0.19661973,0.06029968,-0.6009948,0.3062825,-0.42556885,0.12070867,-0.31546915,0.21649545,-0.17269564,-0.35311472,0.30507973,-0.22931258,0.4671305,-0.31229427,-0.2340455,-0.11889632,0.5731245,0.018433042,0.01566385,0.54937935,-0.30708778,0.07018216,0.081239395,0.534407,1.2374753,-0.40476003,-0.07606962,0.37298998,-0.55163795,-0.59619504,0.35085136,-0.322712,0.12013145,0.30141985,-0.3532055,-0.36013845,0.20433356,0.26959637,-0.05952659,-0.058446113,-0.4733977,0.02294318,0.31768417,-0.42276186,-0.10325669,-0.17866342,0.3336542,0.38412032,-0.26179945,-0.3954767,-0.08330894,0.4219151,-0.16311055,-0.49842924,0.11719862,-0.3605787,0.42554167,-0.027171751,-0.5622952,-0.19737762,-0.1624052,-0.48625815,0.09926675,0.23476307,-0.30469382,0.06891178,-0.41502947,-0.15478285,0.9379601,-0.20416927,0.022324782,-0.67881525,-0.43563715,-0.8451613,-0.36836258,0.1050078,0.21362628,0.02740502,-0.664758,-0.15515852,-0.2788807,-0.12323152,-0.09791844,-0.31089416,0.5471478,0.22288138,0.69694334,-0.28203514,-0.9006743,0.34620363,0.0588442,-0.15543896,-0.625983,0.77422655,-0.024969826,0.6657244,0.08599559,0.27506155,0.080565885,-0.43026653,0.10934593,-0.056723878,-0.4343983,-0.9781612,-0.2373074 -892,0.3616658,0.0254627,-0.3880445,-0.052233525,-0.2734767,0.09284214,-0.06000587,0.45664522,0.18339767,-0.4513067,-0.1044439,-0.035377137,-0.1635606,0.307941,-0.23610705,-0.6160908,0.05467885,0.047032017,-0.31318936,0.57580477,-0.2774894,0.6577542,-0.027935734,0.37694898,-0.07315118,0.18518981,0.15669933,0.0044720266,0.19259056,-0.37228358,0.0004227253,0.03337823,-0.8089677,0.31197459,-0.2099997,-0.4608099,0.28686598,-0.48886675,-0.2373084,-0.62093484,0.17624386,-0.5738953,0.8235241,0.16320957,-0.17276353,0.104850754,-0.03369744,0.30414316,-0.10278349,0.17268941,0.26576024,-0.12482696,0.09150367,-0.33100647,0.092284255,-0.34188792,-0.35329336,-0.11715141,-0.3815593,-0.3245905,-0.16287497,0.1983464,-0.11527296,-0.038007975,-0.2023181,0.27559218,-0.5907353,0.08334657,-0.01320449,-0.25974143,0.045077045,-0.70128906,-0.20690629,-0.023996238,0.22663198,-0.2821967,-0.060749695,0.2991718,0.058490273,0.43090242,-0.0031813933,-0.057867374,-0.038276024,-0.27103484,-0.1410814,0.596025,-0.29256913,-0.319974,-0.14726366,-0.016684573,0.42447457,0.01445287,0.18610588,-0.22050375,-0.11423587,-0.33757517,-0.10192391,0.339619,0.48761526,-0.3416618,0.13200289,0.2129783,0.478471,0.28802982,0.054542813,-0.028703423,-0.10443824,-0.39139065,-0.078074604,-0.13105315,-0.15845546,0.30284736,0.09901544,0.24277037,0.53504425,-0.13677892,0.07869895,0.09305897,-0.016867233,0.21045424,-0.075696535,-0.47419697,0.36574215,-0.35006392,0.216811,-0.17603335,0.57322943,0.0031020413,-0.43749806,0.25948963,-0.5331758,0.038325127,0.013980497,0.4510288,0.28417614,0.52590364,-0.05940012,0.71033317,-0.5818542,0.10082065,0.00082083617,-0.04218122,-0.134517,0.24923292,0.035038777,-0.30074602,0.15834676,-0.14417465,-0.15010183,0.12460712,0.0520756,-0.7211749,-0.033739604,0.22329995,0.7854211,-0.28847593,0.16847119,0.7262997,1.180085,0.8622784,-0.09118596,1.0620606,0.17444435,-0.19408926,-0.43769962,-0.012853971,-0.4661105,0.07533348,0.5102902,0.002074801,0.2681138,0.09883519,0.01572178,0.29978535,-0.5914621,-0.26717243,-0.14319062,0.58552325,-0.0074910326,-0.28740516,-0.44204915,-0.0127215935,-0.012911453,0.0010291499,0.08232654,0.2809399,-0.4794836,0.14179425,0.04526575,1.1731803,0.13554586,0.10236626,0.09603512,0.39852187,0.3177603,0.08094292,0.16239454,0.24327832,0.26442748,-0.037076775,-0.5148044,0.15321891,-0.27131608,-0.53873837,-0.069706246,-0.15544814,-0.2478314,0.026830755,-0.42407608,-0.23009513,0.0095127225,0.074698456,0.37828392,-2.4177885,-0.17672297,-0.16594617,0.47918895,-0.119481474,-0.30671012,0.0016249877,-0.101157576,0.41913173,0.4008137,0.3927264,-0.48292178,0.34477422,0.5844464,-0.36881542,-0.20795487,-0.35202214,-0.0446263,0.14302531,0.27293167,0.14792415,-0.111480795,-0.030478861,0.26640308,0.41915587,0.028549125,0.14723152,0.32607225,0.4106248,-0.26269403,0.3233403,-0.015336366,0.44326383,-0.21692075,-0.10389581,0.315085,-0.3651744,0.18066496,-0.34579998,0.040331814,0.32992426,-0.22075066,-0.6937238,-0.3096272,-0.10007168,1.0404962,0.047709983,-0.51870966,0.123527676,0.10275721,-0.24361423,-0.038903303,0.45165676,-0.31876278,-0.062162038,-0.6746533,-0.03365815,-0.26459596,0.44238046,-0.04747754,0.09266547,-0.64238703,0.63915026,-0.18068658,0.45661163,0.4970736,0.40582472,-0.14732984,-0.37029126,0.021591287,0.8220656,0.69950515,0.07203008,-0.18654655,0.06633754,-0.019970087,0.06780982,0.029243818,0.71766484,0.69343376,-0.10672284,0.0036526276,0.19434412,0.16277257,-0.027564071,-0.1814284,-0.34087563,-0.15906137,-0.017931608,0.4091604,0.5329697,-0.23896226,0.21693142,-0.12152194,0.3731129,-0.2018967,-0.3967221,0.34828237,0.26785487,-0.21858686,-0.032811046,0.6248372,0.40822983,-0.090513304,0.32549492,-0.7725817,-0.37610957,0.46865243,-0.045763418,-0.38646272,0.27517053,-0.3132703,0.09732514,-0.8620799,0.50894296,-0.31721574,-0.4239999,-0.57263935,-0.37416136,-2.1415503,0.07159981,-0.21730123,-0.040480264,-0.25895217,-0.32156086,-0.04139442,-0.74422413,-0.5944761,0.2964309,-0.070402935,0.4111476,-0.06946249,0.19943355,0.033955447,-0.5902795,-0.06866956,0.3940997,0.033587635,0.16937247,0.17638487,-0.21648332,-0.08737393,-0.0016679366,-0.42413533,0.10756711,-0.44628322,-0.25290948,-0.11814018,-0.46539968,-0.0894833,0.61762214,-0.2667132,0.12657012,-0.16178681,0.06048973,0.011287212,0.12086631,0.22803518,0.14166477,0.026069313,-0.06038084,0.039609518,-0.23614189,0.24638847,0.29148486,0.4132716,0.17547148,-0.18053685,-0.12030269,0.39710805,0.6176405,-0.12657571,0.64915335,0.17224585,-0.27441007,0.41354254,-0.25258172,-0.41622674,-0.54464173,-0.5326793,0.2547468,-0.26331124,-0.5923287,-0.051789444,-0.3824738,-0.5855809,0.49643344,-0.024049915,-0.0074982345,-0.04689012,0.2556555,0.23147374,-0.2904968,-0.14003538,0.012717201,0.068453416,-0.24661233,-0.27567214,-0.6034679,-0.25742725,-0.15828909,0.8525787,-0.24483699,0.07716697,0.304903,-0.0034714364,0.26379097,-0.000623593,0.14952874,-0.07180286,0.2576275,0.092607096,-0.53128445,0.43882403,-0.19301136,-0.24625836,-0.59331894,0.09179818,0.6355458,-0.59758973,0.27971345,0.38123852,0.08533262,-0.10843231,-0.44423854,-0.109375395,0.23246314,-0.24849519,0.2783346,0.0047005415,-0.4097174,0.3394081,0.29368168,-0.3232587,-0.6712837,0.4883409,-0.05434707,-0.52917737,0.14258514,0.3089089,0.2263245,0.033407595,-0.104111075,0.24972796,-0.28726766,0.367253,0.1860058,-0.11877717,0.45453852,-0.17645001,-0.2162269,-0.8481151,0.2164307,-0.45798445,-0.41733822,-0.08768828,-0.022088083,-0.2821297,0.26177898,0.22454883,0.44329116,-0.6031773,0.16780734,-0.2806886,-0.37729982,0.47780174,0.44154784,0.5044076,-0.10406731,0.5312749,0.079512686,-0.038574357,-0.01877717,0.04430314,0.47054386,-0.10065894,0.075794294,0.017257543,0.15126947,0.21216136,0.64084786,0.09791506,0.18748124,0.11789629,-0.27608955,0.19743422,0.16061953,0.15852962,0.08414871,-0.30942023,0.33067077,0.03151502,-0.11079454,0.40262428,0.36264896,0.15861504,-0.063000746,-0.3660924,0.06424335,0.3752724,0.093933925,-1.0316398,0.25876933,-0.11093721,0.78842187,0.47510162,0.254917,0.18362603,0.43924662,-0.07102445,-0.13446933,0.08625025,0.11586578,-0.18789479,0.3911308,-0.3760535,0.2622951,-0.04427451,-0.020775795,0.17697889,-0.17600836,0.36720482,0.69937855,-0.11596056,-0.022955088,-0.07015802,-0.12804732,-0.2063471,-0.35457242,0.25773236,-0.28631324,-0.3032145,0.61134493,0.24701871,0.15418516,-0.23520707,0.05433099,-0.04469133,-0.24401543,0.28192136,-0.10982016,0.028771244,-0.02357864,-0.19032834,-0.17342371,0.49322128,-0.2869274,-0.1477099,-0.264687,-0.24843924,0.14602245,-0.09742521,0.04967706,0.05482822,-0.7526076,0.29516056,-0.43603528,-0.062325127,0.2633004,0.04481005,0.29005855,0.024296353,-0.04578542,-0.09557596,0.4743342,0.1440243,0.6868524,0.055151388,-0.19617026,-0.20437646,0.32179627,0.1432884,-0.20530897,0.25278482,-0.18038484,0.19727223,-0.6011833,0.28694436,-0.11197127,-0.18752891,0.011303397,-0.33897984,-0.076279216,0.27278343,-0.047729455,-0.057530794,0.06515204,-0.3139553,0.13003089,-0.2697165,-0.44593745,0.14327744,0.19918774,0.02898219,-0.1506378,-0.17312871,-0.33131617,0.44309372,0.15546802,0.3461617,0.23632017,0.07332924,-0.5849097,0.09997916,-0.2863366,0.3905234,-0.21574871,0.05141657,-0.10281587,-0.65273607,-0.388597,0.30577624,-0.3691934,0.09689646,0.04748781,-0.13057175,0.8426208,0.47274244,1.2162944,-0.18592884,-0.43334058,0.06782843,0.709136,-0.18088843,0.03999549,-0.27125928,1.2623032,0.5050794,-0.12741916,0.019533511,-0.022122484,-0.122151025,0.17892449,-0.2652809,-0.10185269,-0.13715975,-0.42684343,-0.31880647,0.123460926,0.28598595,-0.15739202,-0.01836741,-0.11110302,0.3651063,0.0815117,0.25045705,-0.6912359,-0.065769546,0.32736307,-0.05039024,0.048336305,-0.03615223,-0.34668085,0.45322832,-0.5565371,0.1985865,-0.39406,0.09089918,-0.28114992,-0.21049537,0.06820577,0.059632327,0.29742992,-0.7247379,-0.4106884,-0.039411448,0.21182749,0.05484529,0.087714046,0.57391727,-0.20115791,-0.054511968,-0.2315297,0.5050384,0.8552045,-0.32879496,0.046862647,0.4864689,-0.54982144,-0.48403072,-0.053262074,-0.37146437,-0.151501,-0.34695297,-0.29495537,-0.54764,0.22713701,0.056997437,-0.108475395,-0.1407141,-0.6831579,-0.16086242,0.48400497,-0.23979068,-0.2152209,-0.33390296,0.27339843,0.8386573,-0.2108438,-0.4301501,0.051514048,0.356637,-0.32801676,-0.7507642,0.12811294,-0.3830202,0.50952744,0.13060902,-0.25737095,-0.49693415,0.064971834,-0.3767169,-0.006972258,0.28510833,-0.18195525,-0.03345349,-0.2315259,0.2524163,0.59135664,-0.0327156,0.06883211,-0.55730444,-0.39934254,-0.93574977,-0.35514405,0.43865854,0.4104726,-0.19548811,-0.78575045,-0.1214317,-0.3437926,-0.08329419,-0.19112664,-0.092986494,0.29722887,0.18723775,0.66231143,-0.37473577,-1.2007403,0.12352516,0.046260852,-0.3187484,-0.35450077,0.43648702,0.28322238,0.63086253,0.070024244,-0.22364837,-0.018321143,-0.61140466,0.34833643,-0.33967048,-0.090184554,-0.5480965,0.34899646 -893,0.35403526,-0.09823213,-0.57052124,-0.13003004,-0.2964533,0.17557311,-0.3938241,0.38265264,0.055228706,-0.72656745,0.19809234,-0.28217122,0.0044537685,0.23708634,-0.036452074,-0.5987397,0.20149618,0.258602,-0.53165084,0.6897699,-0.57165515,0.12834662,0.2363698,0.13551994,-0.18319352,0.17393412,0.24886088,-0.24602084,0.008788973,-0.27560043,0.01036789,0.03301781,-0.5961186,0.53314704,-0.0048203506,-0.3178362,0.26647064,-0.31766665,-0.016238352,-0.62260705,-0.07295058,-0.81869745,0.5000725,0.09511418,-0.30246362,0.12891349,-0.004904906,0.28581437,-0.23813546,0.1739822,0.38258395,-0.4815614,-0.3781313,-0.45696244,-0.18209873,-0.65099746,-0.4509774,-0.13552584,-0.4927059,-0.06371436,-0.26908287,0.18584315,-0.19729583,0.06800796,-0.12396344,0.122299396,-0.42086005,-0.10228389,0.020129139,-0.35441002,0.25250262,-0.46983087,-0.019977054,-0.18968765,0.17117745,0.16158143,-0.25143656,0.27816495,0.2261945,0.6323221,0.1079432,-0.2680402,-0.11992782,-0.20888881,0.25008157,0.60006595,-0.1574282,-0.11912393,-0.27780998,-0.23235293,0.04311949,0.048959654,-0.059691545,-0.4347342,-0.0072585307,-0.22645585,-0.4316096,0.08416239,0.3857461,-0.50673527,0.09660444,0.37757826,0.3792189,-0.13377377,-0.19621104,0.040454928,-0.05951721,-0.5074476,-0.23927128,0.31622836,0.1083822,0.46841368,-0.008315834,0.16347711,0.6662771,0.06795007,-0.17228492,-0.17475109,-0.039999247,-0.009429176,-0.21703815,-0.23769026,0.31663752,-0.6572682,-0.18707085,-0.5779732,0.9564371,0.008816714,-0.9241781,0.4963294,-0.49161625,-0.09322048,-0.14784229,0.6961341,0.6067176,0.74810314,-0.12567872,0.8003126,-0.48873594,0.17030703,-0.32397023,-0.24658024,0.30895075,-0.026589742,0.3014907,-0.4192451,0.21164536,0.14845742,0.035037994,-0.17408375,0.73823494,-0.20784819,-0.12520039,0.30440387,0.70120853,-0.36347273,-0.03464571,0.45313355,1.2021762,0.641114,0.23490562,1.2725451,0.25770926,-0.26486805,-0.017141024,-0.017120458,-0.81052333,0.22958767,0.40856025,1.0296767,-0.12358699,0.21693452,0.020954618,0.44626155,-0.11032569,0.0107417,-0.1448278,0.2771481,-0.2521848,-0.18353891,-0.33740678,-0.2982227,0.07523251,-0.03197837,-0.032176625,0.42818627,-0.038392145,0.47557643,0.0052889325,1.8123993,0.013960605,0.21331894,0.101972334,0.31868982,0.1637296,0.005389318,-0.21869884,0.2536793,0.23671865,-0.039795436,-0.38996398,0.17223959,0.00047036633,-0.60951453,-0.027983835,-0.31987,-0.05431955,-0.13477136,-0.20788594,-0.25914755,0.28640845,-0.41529894,0.33956146,-2.484944,-0.08718919,-0.12671585,0.22637211,-0.22092664,-0.20786393,-0.22394651,-0.36858854,0.6329667,0.44389638,0.5031443,-0.45497462,0.5338351,0.48967743,-0.35193774,-0.10301294,-0.72125053,0.03876577,-0.27118316,0.38241234,-0.01262185,-0.36054087,-0.22212149,-0.034802724,0.60537434,-0.23171149,0.18501513,0.4118364,0.24976303,0.17616601,0.388176,-0.11284533,0.5448403,-0.37537375,-0.24403907,0.17445655,-0.38186768,0.351006,-0.23131734,0.25719157,0.34651193,-0.51032233,-0.7725482,-0.48095512,-0.2971582,0.99414235,-0.51138675,-0.43992448,0.25806138,0.14201865,-0.31835386,0.17848277,0.4237502,-0.05391567,0.17232783,-0.6367463,-0.08042813,0.17175086,0.50167423,0.07261657,0.06446957,-0.47602454,0.60389495,-0.09426433,0.74367374,0.4928943,0.00882345,-0.067133665,-0.18564576,0.15977158,0.9756017,0.101439394,0.24823375,-0.23623371,-0.18735512,-0.22812462,-0.097192205,0.015175288,0.41096184,0.71504664,-0.006183309,-0.06431646,0.33651367,-0.3426982,-0.19727826,-0.03304572,-0.54473025,0.010431248,0.20871729,0.4963329,0.5327147,0.16266273,0.31790683,-0.08918276,0.5695034,-0.24850188,-0.44175175,0.49631247,0.41407773,-0.14353736,-0.08071934,0.5246448,0.65784025,-0.24458261,0.6098626,-0.43852457,-0.5631004,0.2856737,0.023159439,-0.4692935,0.18708295,-0.4306508,0.2346719,-0.86940914,0.27608293,-0.42880055,-0.64622974,-0.6268361,-0.085236646,-3.6310422,0.23191915,-0.032872345,-0.24428642,0.1634441,0.062491626,0.3041885,-0.4728724,-0.29643106,0.15402648,0.24489331,0.56991315,0.04599136,-0.16186018,-0.41838375,-0.13619284,-0.07259489,0.26843712,0.039888065,-0.014917977,-0.13259272,-0.35141954,0.052524086,-0.39675882,0.03925866,-0.042726934,-0.72719026,-0.31880707,-0.21729898,-0.52973217,-0.49177673,0.6927975,-0.58963436,-0.05882634,-0.22636652,-0.012271664,-0.17012793,0.34634233,0.020414943,0.09248052,-0.10232406,-0.2722902,-0.3708761,-0.4643619,0.046219885,0.0707633,0.19199128,0.5817239,-0.084269606,-0.08121317,0.6516013,0.37965393,0.046146378,0.8187375,0.26923007,-0.1561142,0.29092988,-0.3817114,-0.09731501,-0.5917918,-0.24587257,-0.3470993,-0.42879686,-0.43794894,0.07971051,-0.36544505,-0.67461705,0.62161344,0.27522993,-0.46986413,0.21120398,0.36580873,0.18503927,-0.12639445,-0.026989976,-0.30047324,-0.0040090284,-0.51839715,-0.43342045,-0.72022706,-0.5544862,0.23129265,1.1039943,-0.16501223,-0.03698274,0.22848438,-0.09797705,0.07343796,0.29863086,0.0126255555,0.25102422,0.3960165,0.09897258,-0.73339295,0.64321285,-0.16833287,0.036629874,-0.5269709,0.23824652,0.5605542,-0.94391656,0.39603305,0.48383793,0.21796311,0.13661514,-0.5374057,-0.37408748,0.0972231,-0.24647129,0.34179714,0.037244864,-0.9597366,0.5505362,0.22929345,-0.21331477,-0.92012936,0.19509703,-0.23482953,-0.28186733,0.15693195,0.37618545,-0.087222345,0.10567071,-0.44721308,0.04869722,-0.70152336,0.16585466,0.19795947,-0.103908144,0.4827861,-0.15876801,-0.09901723,-0.6674414,-0.17999327,-0.4399607,-0.2239338,0.38010252,-0.034456823,0.13370748,0.2617015,0.2078347,0.3993169,-0.41109172,0.14225914,-0.16842872,-0.2600271,0.4746717,0.42365885,0.24834292,-0.47728953,0.5920921,-0.23282434,0.06445189,-0.5614662,0.00818187,0.41504678,0.2674069,0.32935077,-0.19798179,-0.0650536,0.16738671,1.0252799,0.21071875,0.35029736,0.19461425,-0.15106241,0.5716612,0.035098687,0.15356956,0.059111666,-0.44320002,-0.09197149,-0.013169289,0.16390239,0.28700328,0.122999884,0.6327787,-0.13632132,0.003132065,0.080406554,0.2647296,0.18734574,-0.5249993,0.48954293,0.17198062,0.37010124,0.86109614,0.024967998,0.09738036,0.7434554,-0.4096943,0.2790017,0.060761113,-0.21252431,-0.368517,0.5833671,-0.7367756,0.07744657,-0.2036166,-0.024329558,0.2613268,-0.16500506,0.49923134,0.8910627,-0.06369794,0.25977907,-0.071138196,-0.17591952,0.020959726,-0.22509623,-0.1734652,-0.33906412,-0.5051436,0.717611,0.24649465,0.48690498,-0.301436,-0.092197895,0.20403421,-0.0153322965,0.3172262,-0.0350441,-0.022691796,0.12653153,-0.49463424,-0.22385979,0.8321659,-0.0134031875,0.12108082,0.3115854,-0.27838954,0.52023745,-0.06258341,-0.23944974,-0.13817064,-0.5007707,0.2953626,-0.4164476,-0.291918,0.5949356,-0.09275081,0.34529778,0.07131127,0.11934212,-0.09131525,0.43836525,0.31596193,0.70045334,0.14516641,-0.29189292,-0.014903545,-0.08461901,0.09569493,-0.31351593,-0.17803927,-0.27485967,0.14665978,-0.9096373,0.3422093,-0.26640448,-0.31427887,0.25674775,-0.02409883,-0.018922018,0.4434118,0.045717616,-0.08414557,0.05806466,0.10548123,-0.30554488,-0.24532308,-0.40549386,0.1496079,-0.29235458,0.12697703,-0.09440968,-0.041392483,0.15225677,0.3770727,-0.0008463785,0.06980691,0.05541865,0.18751252,-0.31243008,0.17610429,-0.06698938,0.44493553,-0.08129609,0.010265201,-0.15795445,-0.0946511,-0.2640648,-0.043475527,-0.16622971,0.21608083,0.1265307,-0.54303604,0.8907933,-0.14280806,0.83080816,0.15098451,-0.3405924,0.13193624,0.4894599,0.019453267,0.11096696,-0.36023402,0.9605627,0.6893189,-0.11580872,-0.03595199,-0.50371784,-0.34887543,0.34187827,-0.24971263,-0.11048042,-0.122489594,-0.8162736,-0.23564868,0.22993998,0.37242934,0.081048645,-0.18380427,0.14158438,0.109813355,0.27077302,-0.065920606,-0.45625266,0.04675466,0.29226342,0.22018503,0.12224901,0.09966087,-0.29012612,0.30694377,-0.921138,0.16373965,-0.41560975,-0.22549449,0.12403903,-0.07909801,0.19537199,0.04169901,0.27699503,-0.14081036,-0.28057078,0.057958525,0.54688853,0.36001864,0.4836268,0.9837756,-0.21585262,0.04425894,0.0018339878,0.4495059,1.0913182,-0.35473147,-0.14189814,0.46702346,-0.22596703,-0.60955256,0.07310095,-0.23697837,0.0013732215,-0.09944477,-0.688245,-0.27770784,0.19712786,0.2457078,-0.3747178,0.035981666,-0.48810396,0.14637297,0.24093823,-0.26982114,-0.46203884,-0.21916904,0.16368149,0.9066272,-0.23121911,-0.35599503,0.033134192,0.108417146,-0.5241224,-0.53633815,-0.050780218,-0.4290445,0.27904415,0.41109964,-0.39428052,0.2454537,0.14579429,-0.62971705,-0.0055764965,0.22413345,-0.34967843,0.0028651368,-0.5021604,0.089859426,0.9138383,0.21200953,-0.060851455,-0.48184142,-0.6339045,-0.68052745,-0.31545377,0.48493275,0.021961376,-0.05253799,-0.2487321,-0.047465462,-0.1603286,-0.11119155,-0.01839869,-0.5017121,0.399948,-0.082451,0.4992236,-0.10769264,-0.92031604,0.14922374,0.2573696,-0.126822,-0.4331909,0.16585462,-0.47895694,0.9912786,-0.012288659,-0.001435419,0.33768272,-0.7710023,0.30394897,-0.58104503,-0.08232365,-0.61703736,0.001474157 -894,0.45747355,0.026348911,-0.5914605,-0.07351533,-0.36724204,0.043908328,-0.20476288,0.5179207,0.22619572,-0.33225095,-0.16697252,0.075641975,-0.05905582,0.31490213,-0.17286211,-0.59990776,0.17168203,0.16795897,-0.49143034,0.5339091,-0.30693236,0.27264127,-0.08967416,0.41336048,0.13680406,0.3729481,-0.03575934,-0.013168499,0.0022901632,-0.15259337,-0.077417485,0.37544778,-0.4926339,0.27447343,-0.14289096,-0.26018938,-0.010860451,-0.41636503,-0.27380872,-0.80407774,0.22620556,-0.5664542,0.4407174,-0.1039857,-0.29285002,0.0754085,0.22736324,0.38912293,-0.057379045,-0.18857297,0.08819914,-0.090799056,-0.24048328,-0.10511932,-0.0946723,-0.39318395,-0.43319058,-0.050127223,-0.47842395,-0.07705183,-0.28656688,0.17742686,-0.27155244,0.027749453,0.0101523325,0.5772876,-0.279083,0.08544034,0.30529732,-0.1094504,0.1471873,-0.6663695,-0.009941161,-0.055348024,0.41857067,-0.05150838,-0.20731577,0.24178712,0.23748769,0.4742716,-0.02727335,-0.16213426,-0.35717154,-0.18485856,-0.044786274,0.47445494,-0.19178832,-0.3619205,-0.09695126,0.086290374,0.08727199,0.21157198,-0.080294624,-0.1464984,-0.10452979,-0.10650865,-0.20273821,0.29089138,0.48203215,-0.2362915,-0.14767465,0.4695593,0.5375413,0.16417786,-0.15101159,-0.01992755,0.03813467,-0.55034673,-0.23945326,-0.23415022,-0.118499935,0.3316061,-0.049328662,0.29459888,0.6161633,0.056240812,-0.15595992,0.20879796,0.08088439,0.013398722,-0.29541636,-0.107433766,0.19433045,-0.37164322,0.089291856,-0.06600109,0.6503186,0.1395216,-0.6910949,0.21126965,-0.5228811,0.073510095,-0.005867712,0.38097963,0.74298424,0.47471166,0.22822098,0.6760502,-0.21124339,0.18399584,-0.14950714,-0.2776733,0.041815262,0.036812067,0.057577036,-0.48119274,0.09741908,0.032982253,-0.055451326,0.15853015,0.21750489,-0.52194184,-0.14343908,0.08292958,0.8494768,-0.20415391,-0.18507576,0.66219217,0.82937384,0.80496216,-0.015262338,0.9127476,0.064341836,-0.101453885,0.19442548,-0.24073651,-0.6021998,0.2947566,0.33353263,0.114119604,0.17907748,0.02752304,-0.11757584,0.4871999,-0.20508534,-0.12950827,-0.013329864,0.30562848,0.18164068,-0.10749158,-0.41753018,-0.2682635,-0.041000668,0.0040863194,0.25220457,0.21552555,-0.19348414,0.35329384,0.027208453,1.6082268,-0.024753299,0.108369306,0.18817607,0.39421967,0.2894612,-0.3228891,-0.16173933,0.23710728,0.086773,0.12254355,-0.46625155,0.19375148,-0.15359041,-0.41274002,-0.119181536,-0.28588945,-0.23641384,-0.008021265,-0.41429335,-0.15457863,-0.19037211,-0.25856924,0.42883426,-2.8396645,-0.12186143,-0.10712076,0.36104348,-0.22914985,-0.36596566,-0.18335393,-0.44958377,0.33934164,0.2898582,0.43409806,-0.5170654,0.5003472,0.46092528,-0.602725,-0.06475713,-0.49263567,-0.057657346,0.13853687,0.26367235,0.022894183,-0.09518716,-0.14128678,0.14993042,0.45722198,0.0022168718,0.0913111,0.4016865,0.4029178,0.0153004825,0.34043503,-0.17086057,0.55849785,-0.29512936,-0.16053298,0.22941676,-0.50949633,0.1677104,-0.23929241,0.0858553,0.56283295,-0.46959853,-0.97096795,-0.6636185,-0.045621857,1.1393082,-0.1028291,-0.27563542,0.29931778,-0.63110334,-0.27522618,0.13343409,0.53964466,-0.049471818,-0.13570166,-0.6958209,-0.012528179,-0.21364823,0.16849945,0.0016136672,-0.07570421,-0.429414,0.54960376,-0.05750085,0.5603268,0.17747119,0.21448112,-0.22574073,-0.39354962,-0.087008506,0.72077143,0.45597965,0.22896853,-0.22612837,-0.19021688,-0.50960624,0.012243915,0.07413,0.6945579,0.47248387,0.013660569,0.063362285,0.19234703,0.01310401,-0.047038957,-0.14233814,-0.24515678,-0.068786286,0.013219528,0.55431044,0.57541484,-0.199384,0.33002272,0.040562935,0.24392964,-0.28919804,-0.44206718,0.48138964,0.77555805,-0.25951487,-0.3011726,0.6489267,0.38709712,-0.098957114,0.338077,-0.60763216,-0.4537813,0.31527114,-0.122363195,-0.38781935,0.09618971,-0.22208689,0.095795594,-0.7547854,0.15348871,-0.38249856,-0.7190883,-0.45931616,0.05033986,-3.042919,0.25781035,-0.058558144,-0.17875537,-0.23549213,0.005162807,0.15104863,-0.52288157,-0.6252665,0.1968976,0.06092049,0.7199702,-0.12999243,0.18352748,-0.11415103,-0.33964097,-0.21970563,0.22895616,0.07952289,0.33778837,0.012013659,-0.47532484,-0.107813776,-0.051068164,-0.43998763,0.1858619,-0.5958664,-0.38766423,-0.120461926,-0.45956805,-0.059969902,0.5914375,-0.37546033,0.12751435,-0.2675339,0.063411,-0.22931737,0.22626972,0.01075092,0.07494187,0.14358672,-0.17921408,-0.01589556,-0.2577666,0.27655092,-0.011331074,0.4612048,0.2411339,0.08631033,0.19295955,0.56357497,0.6020253,-0.12165765,0.9711814,0.33286005,0.018294161,0.34464154,-0.23764461,-0.3240751,-0.18717921,-0.19400373,0.019512605,-0.31516048,-0.2355586,0.021010332,-0.51422095,-0.7774055,0.23000796,0.020644765,-0.012020588,-0.0020201355,0.21773562,0.5903495,-0.28491387,-0.0496513,-0.07074393,-0.075650945,-0.57806355,-0.32031462,-0.40571636,-0.43077686,0.0044455808,1.0226232,-0.30528122,0.08659883,-0.08305234,-0.08581583,-0.13407601,0.13216826,-0.016814847,0.11115106,0.48567128,-0.21080865,-0.5489608,0.3657297,-0.30970818,-0.22298187,-0.56922907,0.3104071,0.4592563,-0.5967388,0.5774852,0.37461698,0.11525978,-0.22778964,-0.59781396,-0.09411108,0.008028418,-0.2928596,0.3865239,0.41339862,-0.7662774,0.35710907,0.18797636,-0.14059359,-0.73304933,0.590964,0.03501842,-0.32096514,-0.09926401,0.3691874,0.14102882,-0.025727505,-0.17698184,0.07630798,-0.21499225,0.1678506,0.08535334,-0.059556082,0.3458653,-0.37638444,-0.001460962,-0.7052005,-0.05451052,-0.47871897,-0.2363566,0.1795274,0.059115656,0.1894977,0.12214787,0.03475345,0.3534882,-0.31708404,0.056618135,-0.25885916,-0.2680834,0.36190864,0.40333486,0.4835429,-0.37598813,0.50931865,0.018987272,-0.1011492,0.056280732,0.16367021,0.40142602,-0.15559268,0.5020086,0.009138092,-0.11273829,0.15971455,0.6624024,0.09646033,0.23016913,-0.012689643,-0.14000499,0.22329089,-0.028503746,0.12228216,0.028532773,-0.6071321,-0.071734145,-0.2944382,0.09121861,0.6081543,0.18500061,0.24213514,0.055649057,-0.30700326,0.058989048,0.12864284,0.022261709,-1.1776694,0.45984793,0.14095944,0.9132205,0.31687424,0.04562293,0.0023130067,0.708338,-0.017473646,0.20799327,0.3777922,0.05851637,-0.34786063,0.49640912,-0.68279755,0.47431493,0.0041966066,-0.07785287,0.074680924,-0.1559494,0.47729397,0.8948903,-0.13952264,0.02405868,0.05227966,-0.32162237,0.11931093,-0.2177114,-0.14099567,-0.681107,-0.28905475,0.59093815,0.49926257,0.26782256,-0.2387187,-0.028409194,0.13335136,-0.015484711,-0.0016410276,-0.010112375,0.05325541,-0.0328354,-0.5341391,-0.19312769,0.5076761,0.046568416,0.15094396,0.109648034,-0.09182175,0.29459363,0.0060117543,-0.057791013,-0.091072775,-0.5789322,-0.052136064,-0.3032164,-0.45856363,0.46400416,-0.21864703,0.17031932,0.1687672,0.1066445,-0.3150087,0.50742316,-0.03414715,0.7441751,-0.012907121,0.05388402,-0.29547027,0.21102288,0.19025436,-0.22290403,-0.22641745,-0.38819084,0.0058697127,-0.62208253,0.30238873,-0.09496167,-0.28671286,0.13211557,-0.058564078,0.13924086,0.4052366,-0.035122678,-0.2003061,-0.08955413,-0.014355395,-0.27836683,-0.19472343,-0.1351865,0.23301056,0.029398516,-0.04991202,-0.1530079,-0.17232808,-0.12002881,0.33002624,-0.067741096,0.34679466,0.32638484,0.14909558,-0.1971334,0.0023195446,0.30411378,0.52116966,0.041069545,-0.1298739,-0.22799146,-0.3568318,-0.34808868,0.33134902,-0.05479329,0.28640866,0.23460928,-0.1556302,0.6063442,-0.02089042,0.93570995,-0.011889387,-0.25015214,0.10681336,0.29584634,0.0843576,-0.06631429,-0.40965706,0.8202207,0.4177197,-0.075825356,-0.06796805,-0.34685785,0.07210271,0.20829585,-0.16449058,-0.08882919,-0.12600496,-0.565065,-0.16734362,0.15889823,0.2312384,0.13768338,-0.07206915,-0.056313936,0.23799182,0.0890712,0.23809457,-0.4115174,-0.1268329,0.28498366,0.2612093,0.112787545,0.09823411,-0.6000584,0.344993,-0.6031339,-0.03288819,-0.25784832,0.22355554,-0.3144239,-0.29199785,0.18781757,-0.042521425,0.35971147,-0.2146149,-0.30724958,-0.33117667,0.38588178,0.19562072,0.07356019,0.4674217,-0.20589563,-0.009330589,0.12082314,0.6444086,0.71868926,-0.29703403,0.016012296,0.33089817,-0.22480665,-0.53231907,0.23885527,-0.37412232,0.07368391,0.09035696,-0.17626968,-0.4252201,0.3698387,0.12713408,0.123812445,-0.073801085,-0.6235257,-0.10906974,0.16822168,-0.22956046,-0.15871672,-0.25931475,0.13461919,0.6369064,-0.14013329,-0.25616056,0.1001492,0.31211296,-0.04137935,-0.64283717,0.037360046,-0.31621987,0.27799457,0.06486307,-0.2750461,-0.29032063,0.018733032,-0.48588437,0.30309188,0.065541066,-0.29935277,0.083836354,-0.32484215,-0.024219006,0.8081848,-0.10799736,0.2625788,-0.4385458,-0.37672335,-0.68373615,-0.31483987,0.20330188,0.21654408,-0.052888915,-0.6298293,-0.061038222,-0.1202032,-0.18084171,-0.043163344,-0.35931057,0.36244178,0.07949662,0.22512555,-0.04255961,-0.870602,0.09529353,0.062381424,-0.2368324,-0.44023612,0.3644915,-0.045696173,0.94768405,0.08890608,0.120878376,0.23962314,-0.4205675,-0.121769354,-0.1255005,-0.082018614,-0.62985605,0.05974281 -895,0.3746295,-0.21929921,-0.38911,-0.11615025,-0.34140953,0.019816482,-0.27775592,0.16225168,0.111195534,-0.3146471,-0.23523998,-0.22413895,0.11071185,0.36736277,-0.15288094,-0.45417926,-0.1713407,0.12303754,-0.7064795,0.5669357,-0.46439523,0.2596282,0.27014425,0.34815156,0.20115662,0.29973373,0.28496125,-0.11962218,-0.06457934,-0.042106006,-0.23725745,0.26843432,-0.47479802,0.008473166,-0.2325844,-0.35789022,-0.0022846023,-0.51581055,-0.21953163,-0.7778922,0.12638964,-1.0365984,0.5225988,-0.18510373,-0.1148418,-0.006918212,0.46489257,0.39710993,-0.32290685,0.050702307,0.25002053,-0.24241194,-0.17808262,-0.14967483,-0.093894765,-0.46116728,-0.54619825,-0.14132604,-0.55343276,-0.22501612,-0.24064597,0.25357136,-0.36695632,0.20542185,-0.17203985,0.27897316,-0.417296,0.005563863,0.23747009,-0.18279251,0.3764178,-0.4110438,-0.09324602,-0.13368362,0.39400595,-0.13126615,-0.14441092,0.39772895,0.4736751,0.32597697,0.22463973,-0.27764598,-0.1905941,-0.08658841,0.020285996,0.45456424,-0.19189784,-0.35495093,-0.2783276,0.11987901,0.4030776,0.5114996,-0.16183211,-0.2767512,-0.01839203,-0.054442894,-0.31337947,0.42794037,0.4617768,-0.2512916,-0.4268403,0.28487322,0.49376792,0.27479705,-0.28967744,0.011499208,0.029087523,-0.53187525,-0.03429906,0.23325114,-0.09203838,0.47113392,-0.08965022,0.2362938,0.85007364,-0.18662685,-0.04632016,-0.14028384,-0.057592113,-0.35304296,-0.13200411,-0.13240921,0.10500419,-0.58452237,0.17322813,-0.21470429,0.8368566,0.06522241,-0.72754586,0.35311046,-0.5771259,0.14039093,-0.11291831,0.57958335,0.67800623,0.40716985,0.47809163,0.74862504,-0.27407694,0.13420828,-0.21779858,-0.5016672,0.056974426,-0.2032372,0.046556495,-0.4916638,0.09376454,-0.102685735,0.061212752,-0.0067098695,0.5283541,-0.5949572,-0.023097014,0.14457512,0.70513713,-0.36214346,-0.14404605,0.620945,0.8991192,0.943465,0.08275631,1.1108052,0.36060652,-0.11381319,0.20054294,-0.2320209,-0.55039495,0.29426584,0.38342467,-0.23219861,0.27681926,0.011134211,-0.08810774,0.24195524,-0.37501258,-0.13830566,-0.1309652,0.19694008,0.19753362,0.06835124,-0.40230128,-0.22615552,-0.0035256227,0.013187417,0.21183817,0.09633315,-0.24355036,0.3915041,0.039232884,1.5847396,-0.094433315,0.027588714,0.080737874,0.56812835,0.21707319,-0.075443864,-0.06628785,0.32861608,0.4239903,0.10992956,-0.61082006,0.23217662,-0.22336563,-0.3956774,-0.06116837,-0.33523542,-0.15159123,0.056301516,-0.447513,-0.08098116,-0.040081654,-0.33771196,0.51423544,-2.7970197,-0.18306813,-0.13830265,0.25375712,-0.32499796,-0.2189786,-0.16472048,-0.5645491,0.28646618,0.26542002,0.45653504,-0.6772099,0.41780555,0.45931107,-0.594403,-0.16638885,-0.7296316,-0.124234505,-0.07031821,0.572056,0.048312187,-0.08564035,-0.07504098,0.17285486,0.775096,-0.04732355,0.15445969,0.4891936,0.43607247,0.26147023,0.68099415,0.009046904,0.56798327,-0.16697177,-0.19239344,0.36335963,-0.1813161,0.20220512,-0.10481403,0.12458265,0.55718005,-0.4294466,-1.029463,-0.62505496,-0.41945547,1.0964977,-0.42387664,-0.42307916,0.15698287,0.05986441,-0.07133008,0.0032446801,0.5135108,-0.14717034,0.15192226,-0.79148126,0.12965769,0.014793268,0.20826861,0.061910223,-0.014658515,-0.20857035,0.5337462,-0.0512109,0.5655158,0.17727576,0.28540096,-0.24625991,-0.5218477,0.15798025,0.99078625,0.2630252,-0.09882782,-0.2030905,-0.35783488,-0.10783771,-0.18431212,0.089211814,0.4208967,0.7198939,-0.0024921,0.27523884,0.31499022,-0.053647574,0.012234942,-0.19468495,-0.1397252,-0.016665148,0.0740087,0.41348654,0.65903765,-0.07920552,0.5690449,-0.25343046,0.32722104,0.04686446,-0.5904463,0.5473663,0.74343,-0.1984549,-0.015199521,0.45825914,0.5467464,-0.30651176,0.40153462,-0.5938881,-0.26891625,0.73814666,-0.22180405,-0.5222572,0.19807047,-0.25134057,0.13939491,-0.681259,0.27720463,-0.18412977,-0.37754056,-0.4150718,-0.07207512,-3.5018952,0.09497962,-0.08637406,-0.3030981,-0.14528018,-0.21499012,0.3136699,-0.6042445,-0.5767974,0.14163874,0.1851066,0.5967444,-0.02937352,0.118865974,-0.3615322,-0.052084222,-0.15580828,0.2040475,0.24995764,0.2955075,-0.19049937,-0.5072521,-0.06653456,-0.088947885,-0.54587185,0.17413191,-0.5913335,-0.5428088,-0.13377602,-0.47647658,-0.3295053,0.6595859,-0.38970488,-0.03521538,-0.20201524,0.08826248,-0.14644758,0.27746737,0.25076446,0.16848032,0.068125516,-0.085244775,0.16123213,-0.325402,0.5563287,-0.0060127634,0.2433626,0.16853577,0.034899067,0.20521055,0.48504636,0.47986308,-0.09378583,1.0332302,0.4198254,-0.1396938,0.13963714,-0.16585748,-0.24097201,-0.7193672,-0.28633782,-0.17190515,-0.4442395,-0.39781716,-0.008551554,-0.10259921,-0.7903814,0.7528919,-0.080170244,0.36841312,-0.2139192,0.23307739,0.49996343,-0.24056247,0.044416595,-0.0983425,-0.15510593,-0.5767949,-0.35384735,-0.65485954,-0.5062534,-0.084437594,0.9505721,-0.20460816,0.048396565,-0.23427247,-0.27751482,-0.005345305,0.055410538,0.11656905,0.45454502,0.48487774,-0.12764834,-0.7470447,0.43365797,-0.06997214,-0.016111247,-0.4532682,0.1390134,0.63658375,-0.6676146,0.41640207,0.35279146,0.046869673,-0.0695345,-0.49814305,-0.22490664,-0.104434915,-0.2673134,0.38592988,0.13029866,-0.77194554,0.6023438,0.30767447,-0.39762852,-0.68023044,0.30945295,-0.086033806,-0.21222325,0.033840816,0.28503484,0.1053953,-0.029303452,-0.28316143,0.16681358,-0.48460928,0.36794314,0.071084835,-0.082446694,0.28770933,-0.0657925,-0.3225851,-0.68054414,-0.0077749095,-0.46279764,-0.30159226,0.3656186,0.007726272,-0.0718205,0.26564452,-0.14255017,0.39956087,-0.29556432,0.03363284,0.071889795,-0.27485308,0.17001489,0.5372136,0.36780244,-0.26595703,0.64354825,0.20533694,-0.2762184,0.12369339,-0.022772022,0.30636072,0.11856018,0.28332138,-0.211935,-0.30808315,0.4509608,0.70259374,0.21816212,0.38525823,-0.03017563,-0.12735607,0.39014068,0.05007743,0.13730189,0.024577688,-0.45484325,-0.07069402,-0.16685492,0.12126514,0.5505817,0.23000653,0.33189258,0.052293718,-0.17690511,-0.01379682,0.1059754,-0.08926835,-1.1837689,0.2673874,0.28411955,0.7858798,0.34933499,-0.05133791,-0.081106834,0.7138805,-0.34101868,0.07408897,0.417922,0.14767303,-0.50366366,0.79507935,-0.6420943,0.40060574,-0.14867307,0.062233943,0.12571405,0.17324701,0.25344476,0.94057304,-0.2291366,0.0890882,-0.030858431,-0.14212853,0.019535892,-0.29215857,0.013953598,-0.3872077,-0.428701,0.68556756,0.41426122,0.36073595,-0.089726135,-0.061504208,-0.048515517,-0.17904441,0.17796387,0.049394023,0.07613933,-0.007840745,-0.49995688,-0.16847862,0.62685907,0.051355407,0.19247082,-0.15105106,-0.23545766,0.039084468,-0.21826053,-0.0048856577,-0.03294946,-0.62736547,-0.09408851,-0.20637833,-0.5288003,0.3975506,-0.3583291,0.18234862,0.1912284,0.008325587,-0.22980891,0.14908828,0.34288165,0.7092443,-0.006904459,-0.22422782,-0.31135783,-0.01734158,0.26264173,-0.2280213,0.03136294,-0.2941274,-0.03495338,-0.5695949,0.57137996,-0.18601926,-0.523594,0.21075559,-0.22038978,-0.04610254,0.6185001,0.05178133,-0.08231844,0.0063257418,-0.15276863,-0.5056797,-0.05660294,-0.19106713,0.15771522,0.32352364,-0.1312264,-0.00788023,-0.25746307,-0.123657845,0.52709955,-0.007456557,0.46697518,0.19316782,0.1477457,-0.15739037,-0.0084404545,0.059738763,0.5810247,0.15747906,-0.030278882,-0.36268944,-0.35484168,-0.3332982,-0.02483364,-0.0795378,0.276507,0.03209006,-0.4132258,0.9703932,-0.16420099,1.082162,0.12141968,-0.33471614,-0.02019528,0.49575183,-0.09320875,0.028141024,-0.36382866,0.7821275,0.5668486,0.032811895,-0.06475744,-0.38833156,-0.12812681,0.36366075,-0.38482377,-0.1121833,-0.007950662,-0.47754386,-0.5147678,0.26317,0.16576557,0.17064747,-0.10356713,-0.04662907,0.19533709,0.07454429,0.55870247,-0.562368,-0.14457826,0.16661192,0.34479424,-0.2387963,0.23009995,-0.44443658,0.47954497,-0.5166576,0.0988662,-0.4433077,0.14963984,-0.24550724,-0.25436068,0.20400119,-0.11025881,0.40697625,-0.12361858,-0.35333693,-0.12589242,0.5590455,0.07267412,0.13327919,0.6866909,-0.25657907,0.0405872,0.10144235,0.45677373,1.2816342,-0.55119956,0.014045522,0.34918007,-0.3650962,-0.52607334,0.4449436,-0.32031953,-0.063139424,0.053250365,-0.42127043,-0.27708513,0.32188034,0.11429892,0.1311474,0.070132665,-0.4936083,-0.026014829,0.36238468,-0.21357098,-0.22260837,-0.24742442,0.43290636,0.6311772,-0.30180973,-0.34392816,0.034473643,0.32653823,-0.27894017,-0.45894966,-0.12864819,-0.21406314,0.31053796,0.1177382,-0.29770166,-0.0848163,0.14925343,-0.4511822,0.017759927,0.12230361,-0.3934325,0.08862854,-0.1164337,-0.09519137,0.9816253,-0.32515624,-0.15431643,-0.74064183,-0.42432785,-0.8332954,-0.31461728,0.24580905,0.20790474,0.017665435,-0.39376628,-0.038241826,-0.13386743,-0.32375655,-0.03955915,-0.5236104,0.3583861,0.13931337,0.48569164,-0.26302198,-0.82708615,0.07749192,0.057753857,-0.07228044,-0.66769546,0.61120516,-0.077499576,0.6963548,0.14969735,-0.024621995,0.19529413,-0.31059715,0.087704726,-0.40253365,-0.1879551,-0.88688856,0.073640995 -896,0.45730764,-0.13988641,-0.64794403,-0.13000634,-0.11671428,0.08513566,-0.2248598,0.18586317,0.26868442,-0.5174976,-0.089782625,-0.11070751,0.08455295,0.34719265,-0.11712634,-0.742693,0.14389266,0.32443392,-0.50899494,0.5056862,-0.50649273,0.39550957,0.06839162,0.19608848,-0.048636172,0.12916747,0.2732473,-0.04328279,-0.06373722,-0.29122147,-0.008064669,0.017302994,-0.60928476,0.2285874,0.0015764832,-0.47657442,-0.0023593444,-0.3553549,-0.44614804,-0.8253752,0.26114404,-0.9014199,0.56621563,-0.029011132,-0.3298259,0.3418179,0.081985965,0.25171897,-0.19845955,0.07251408,0.09705159,-0.32920727,-0.37177467,-0.3357512,-0.2675557,-0.38439396,-0.6577107,-0.041229468,-0.5817824,0.11001739,-0.34343383,0.115017615,-0.5029173,0.28384194,-0.22022255,0.42511258,-0.23060766,0.032640237,0.2345087,-0.12358941,0.060827173,-0.35899633,-0.09444466,-0.12231907,0.06483274,-0.008162673,-0.35621136,0.36752015,0.29812983,0.53277683,0.03746684,-0.36470094,-0.31854314,-0.047854804,0.27314755,0.4700932,-0.08233543,-0.4330528,-0.20951508,-0.03234743,0.19193341,0.1292127,0.17953953,-0.31337997,0.08356815,0.17029317,-0.4416746,0.44581315,0.5887402,-0.2965321,-0.12574512,0.34819758,0.57607484,-0.1768431,-0.09368939,0.16751143,-0.10670435,-0.60024196,-0.23998755,-0.04193455,-0.22909704,0.6361171,-0.30583966,0.097227775,0.5791957,-0.35484773,-0.26886475,0.32874286,0.063978516,-0.17482303,-0.23107216,-0.2868241,0.5051761,-0.64012486,-0.010802975,-0.20932443,0.8822991,0.11087041,-0.73423266,0.4169828,-0.61620164,0.2713912,-0.14691314,0.7143933,0.6255316,0.6086028,0.3927737,0.74708396,-0.58466077,-0.036940493,-0.083917156,-0.5803694,0.20963739,-0.26258707,-0.044347122,-0.387393,-0.03461613,0.073391825,-0.26671344,0.02150948,0.6640201,-0.35291007,-0.09915678,0.0402259,0.76543045,-0.39642665,-0.18155043,0.80163074,1.117841,1.2359812,0.21566452,1.320013,0.49585077,-0.117854886,-0.07313322,-0.09139746,-1.0773654,0.33462998,0.20210099,-0.40481365,0.42357528,0.13603482,-0.09848769,0.35753638,-0.5087629,-0.20899323,-0.046178136,0.3719043,-0.010955696,-0.17271203,-0.43704844,-0.32276016,0.18470731,-0.0632872,0.25301564,0.46689188,-0.28299916,0.46871904,0.21367405,1.2910413,-0.10432386,-0.064302996,0.14039192,0.30287144,0.24594344,-0.16183956,-0.026163243,0.19736011,0.43917763,0.11885666,-0.63997084,0.006064876,-0.20122232,-0.522311,-0.21410066,-0.20544481,0.036085792,-0.26113746,-0.18760516,-0.3145352,-0.12838647,-0.46992227,0.46177387,-2.2924502,-0.25043216,-0.059303317,0.3105581,-0.0968483,-0.33170074,-0.108074866,-0.6168777,0.30358347,0.3038019,0.4631663,-0.7422097,0.45235273,0.5191492,-0.48790088,-0.0056195143,-0.67150086,0.03527591,-0.23346502,0.31743506,0.111551575,-0.03415664,-0.08672248,0.17704147,0.5823238,-0.13261418,0.1916354,0.45934722,0.45730355,-0.11647514,0.36772993,0.05334331,0.7144754,-0.4666856,-0.14194515,0.309079,-0.5272831,0.113459535,-0.091514125,0.1842993,0.39260116,-0.43225104,-0.82953954,-0.6279215,-0.16196333,1.3775623,-0.40244505,-0.5352049,0.24492596,-0.049758546,-0.23268096,-0.045490835,0.26762116,-0.40903282,-0.09895686,-0.7962367,0.14044635,-0.008661444,0.3199991,-0.16343972,0.04512476,-0.32124692,0.600285,-0.098442905,0.5330833,0.30916113,0.22340542,-0.32472324,-0.5431016,0.18727861,1.0399938,0.35025123,0.17390272,-0.38444933,-0.19729845,-0.17038496,-0.1472719,0.19858263,0.4258081,0.84376436,-0.19123824,0.11991611,0.36774394,-0.039904073,0.031873778,-0.07660016,-0.40105087,-0.07753876,-0.13709049,0.6156272,0.7797193,-0.17274903,0.3541778,-0.1432298,0.4317018,-0.16704136,-0.6075641,0.65399873,1.2726135,-0.2040439,-0.42066997,0.69587857,0.4884432,-0.40809816,0.7401364,-0.61397797,-0.42937627,0.38959825,-0.08393591,-0.39983308,0.14219591,-0.37554714,0.20623027,-0.837781,0.45260465,-0.16909193,-0.65177476,-0.44859442,-0.025157807,-4.0378046,0.17311716,-0.24859825,-0.075322054,-0.14009787,-0.06819362,0.25578067,-0.34093586,-0.7454884,0.21994737,0.21987364,0.77754027,-0.12572847,0.19522792,-0.17510106,-0.21713169,-0.395604,0.15918534,0.25243443,0.2064916,0.13827302,-0.48260787,-0.09823547,-0.2619592,-0.42465788,0.12708524,-0.73912716,-0.43886662,-0.09523886,-0.5818532,-0.61523944,0.66638255,-0.3531678,0.01989865,-0.3178756,-0.027463647,-0.09305541,0.40556198,-0.21300521,0.029290965,-0.058522563,-0.21269837,0.008808434,-0.18742186,0.3432892,-0.053158734,0.34625039,0.34564286,-0.24313919,0.045745593,0.46970206,0.7360457,0.04289146,0.8192978,0.3214807,-0.15375292,0.3105141,-0.15024765,-0.3066392,-0.6498111,-0.3057161,-0.052808695,-0.49328735,-0.34266546,0.033887096,-0.36085966,-0.9735594,0.553861,0.041978322,0.056774303,0.047652915,0.38915083,0.43305126,-0.10454646,-0.09862819,-0.042752128,-0.34242398,-0.44249514,-0.33430618,-0.9789811,-0.35715738,0.10597616,1.1527832,-0.033220217,0.01749778,0.018711096,-0.07994558,0.0567633,0.27909052,-0.009807756,0.2414057,0.57842666,0.017664222,-0.7102511,0.4439307,-0.37270573,0.017214097,-0.7158574,0.20481804,0.62570804,-0.77731776,0.46401304,0.5248096,0.15057112,0.019361576,-0.5000326,-0.28410816,0.044947304,-0.12345098,0.54748577,0.46277764,-0.94488645,0.5514269,0.3816813,-0.47237998,-0.71713835,0.35424134,-0.11864771,-0.13090077,-0.059822902,0.5086429,-0.17442349,0.09364487,-0.2223838,0.092947006,-0.44523513,0.2689872,0.25073385,0.04569377,0.123013146,-0.08456703,-0.072023936,-0.7109048,-0.15838696,-0.5726655,-0.09251937,-0.01051044,-0.027048746,-0.006783059,0.22322692,-0.09774857,0.36572087,-0.2686624,0.05095106,-0.053474206,-0.4632209,0.6793458,0.5588051,0.40565413,-0.3915456,0.7586981,0.07333123,-0.14840218,-0.18978928,-0.004099204,0.3360699,0.09386502,0.54158485,0.45305464,-0.014586554,0.32568452,0.7743861,0.23048991,0.54499173,0.30199003,-0.15062734,0.3055519,0.1528043,0.36889976,0.0060243607,-0.5332568,-0.0408194,-0.3262369,0.23806565,0.6700793,0.12149526,0.45914248,-0.063490495,-0.3932924,-0.019577738,-0.0025299971,-0.11286701,-1.4614056,0.47699574,0.15377879,0.5867994,0.58840156,-0.0050541665,0.21935837,0.52380776,-0.24161513,0.14635979,0.28584242,0.017139025,-0.34781796,0.64025474,-0.79138684,0.43962348,-0.19504033,0.14497161,0.016994072,0.10550892,0.39668688,0.9754441,-0.12793726,0.20819518,-0.11222387,-0.29676652,0.26173243,-0.43098253,0.15448588,-0.4455962,-0.3658333,0.82142216,0.30945268,0.5494092,-0.21747524,-0.10321239,0.10059753,-0.15776652,0.05079717,0.035818044,0.037386358,-0.24081472,-0.7195228,-0.12289678,0.6180159,0.26223555,0.18258892,0.07866435,-0.11851156,0.2300472,-0.2668129,-0.2272823,0.027763424,-0.692829,-0.15216725,-0.20081249,-0.49944514,0.15793514,-0.26685092,0.19695896,0.3353557,0.14687833,-0.52353704,0.018160177,0.15291156,0.60894173,0.055126853,-0.2338183,-0.18136604,0.16983296,0.28845838,-0.3495175,0.1866751,-0.309838,-0.059202358,-0.5465588,0.59866405,-0.23695086,-0.3561471,0.25593063,-0.14931203,-0.046186987,0.5679939,-0.30419922,-0.16464195,0.08231267,-0.02130623,-0.17066042,-0.37989727,-0.17933647,0.25489688,0.048849728,-0.19334687,-0.0037377293,-0.09542697,0.016891552,0.32909063,-0.12951526,0.23009516,0.36558563,0.10515426,-0.4239874,-0.067162685,0.117981665,0.6956581,0.053841487,-0.32004818,-0.50529826,-0.4618848,-0.18830983,0.08090366,-0.024841528,0.31518608,-0.013877513,-0.37356436,0.7750146,0.107312694,1.0899588,0.10395272,-0.39339602,0.012013912,0.62470275,0.13670625,-0.17655197,-0.19889075,0.97964346,0.5283957,-0.19606209,-0.26982838,-0.6772222,-0.07460194,-0.03641389,-0.2630917,-0.42188266,0.04990047,-0.67779094,-0.15899706,0.23555396,0.3228113,0.12310849,-0.07521907,0.3023072,0.514609,0.066216305,0.30442283,-0.48307472,0.024581987,0.3735337,0.19675589,0.1008278,0.069770426,-0.39204648,0.2335655,-0.68727237,0.07240919,-0.104794815,0.06061512,-0.017059969,-0.33057305,0.34238002,0.30377427,0.19271165,-0.47327912,-0.32133776,-0.1381217,0.5089778,0.176783,0.27981022,0.8055845,-0.23668233,-0.047689393,0.21014386,0.5642601,1.0248567,-0.050459724,0.029676042,0.20128441,-0.5391445,-0.77840734,0.51316255,-0.09789632,0.11419478,-0.052071176,-0.47168332,-0.7293993,0.3662268,0.10330104,-0.007733831,0.43900827,-0.52778095,-0.2368305,0.20654249,-0.34700316,-0.2734676,-0.35122225,0.14939652,0.57256407,-0.2909697,-0.31945917,0.060829803,0.2347494,-0.20662615,-0.53879344,-0.28547108,-0.48527497,0.33203924,0.07919412,-0.2361339,0.080502026,0.14593357,-0.43786418,0.3023837,0.24090448,-0.22187011,0.2543244,-0.25758392,-0.18391807,0.65348977,-0.3397508,0.12663108,-0.71790373,-0.6183126,-0.95184547,-0.2545935,0.5616052,0.06257811,-0.076922186,-0.58791035,-0.1769999,0.058858827,-0.273042,-0.049332783,-0.42549464,0.420109,0.10168694,0.3239573,0.03667812,-0.8436214,0.043536086,0.14883493,-0.2499641,-0.43012887,0.48504508,-0.13771118,0.8954576,0.13241805,0.1734558,0.31159097,-0.5843365,0.16791286,-0.12798157,-0.10363186,-0.5722039,0.012786072 -897,0.6074062,-0.048998628,-0.5170523,-0.037493806,-0.31044033,0.014882737,-0.2512493,0.33563295,0.33047375,-0.32866284,-0.23311043,-0.14385428,-0.09093285,0.31210762,-0.15651336,-0.6264318,-0.2040326,0.1504263,-0.40096062,0.8526773,-0.31116167,0.23314336,0.03468955,0.36730495,0.4324618,0.11238742,0.18054877,0.039566416,-0.22717796,-0.26351535,-0.026694454,0.20392457,-0.6091184,0.1813968,-0.18897645,-0.3979922,-0.09972046,-0.4956681,-0.3440037,-0.7856306,0.40580684,-0.74884903,0.36638606,0.041000545,-0.18311456,0.3546133,0.2287182,0.24406312,-0.088557094,-0.2074851,0.121750906,-0.108843125,-0.03252,-0.083643965,-0.38490814,-0.21864584,-0.7657355,0.03842873,-0.4218912,-0.20237572,-0.39787585,0.13489719,-0.38030815,-0.02315248,-0.22296308,0.65218854,-0.4918969,0.0749164,0.09179108,-0.0815672,0.091357715,-0.84198225,-0.35273913,0.0046180347,-0.025568824,0.033010583,-0.09509396,0.21310498,0.1604418,0.37526697,0.07646223,-0.23610497,-0.57552207,-0.110761076,0.3048384,0.5039987,-0.0005465654,-0.2001775,-0.19536726,-0.03174836,0.21013114,0.29648617,0.38624462,-0.13827549,-0.042005584,-0.13827087,-0.24533492,0.51068455,0.500168,-0.32614404,-0.36913416,0.32739693,0.53768444,0.31589526,-0.14371274,-0.15350525,-0.069335505,-0.49992365,-0.06293798,0.23629893,-0.38144302,0.59873116,0.0017399621,0.12627429,0.49204797,-0.15156434,0.13887547,-0.02066471,0.08358538,0.061271053,-0.49985048,-0.29573876,0.33989912,-0.33584183,0.32345244,-0.08536343,0.90516675,0.033115573,-0.69190276,0.28229147,-0.5786018,0.10021329,0.03863164,0.48116717,0.64572614,0.27384135,0.35220715,0.788017,-0.21189213,0.05705337,-0.12085493,-0.09817021,-0.14090785,-0.105177715,0.22700302,-0.49075097,-0.11673311,-0.0686612,0.0003119982,0.21416165,0.6050793,-0.32182658,-0.14576696,0.27476338,0.8728965,-0.13001516,-0.11027675,0.91043526,1.3146987,1.4313846,-0.01894217,1.0561193,0.112633675,-0.27398768,0.028844027,-0.24614851,-0.6611817,0.19247445,0.27505052,-0.16320919,0.22637922,0.036999933,0.004432889,0.43390396,-0.42616814,0.123574495,-0.10159986,0.10312564,0.2643066,-0.026342694,-0.5328283,-0.35135034,-0.08564564,0.052310072,0.008028181,0.26540634,-0.2791562,0.19139484,-0.04180292,1.4644196,-0.14602375,0.012228741,0.2655231,0.4239777,0.1526795,-0.2185812,0.09421674,0.22426862,0.27998206,-0.09553185,-0.6336802,0.112746805,-0.33261627,-0.40833044,-0.15292518,-0.43605006,-0.07192935,0.05888841,-0.37438518,-0.19369163,-0.19791172,-0.49701184,0.48241064,-2.9023683,-0.022168994,-0.07872859,0.26306474,-0.30236226,-0.32702163,-0.0075335894,-0.50853604,0.4758239,0.22090127,0.48131004,-0.46854395,0.26798704,0.45690182,-0.71212536,0.046924964,-0.649427,-0.24565479,-0.004399873,0.48408306,-0.10357718,0.06438328,0.052089408,0.21269442,0.5941567,0.2625292,0.24267401,0.4031514,0.37480038,-0.27621028,0.46247414,-0.11591785,0.4913855,-0.25153378,-0.16311568,0.42794168,-0.41998762,0.3962135,-0.3258667,0.16957569,0.50610507,-0.39859676,-0.9339524,-0.5243549,-0.340913,1.0148823,-0.2670453,-0.6653291,0.33088037,-0.22124122,-0.099612586,-0.061107066,0.5151149,-0.07891024,-0.25211784,-0.7306151,0.022095177,-0.09026054,0.140417,0.00012853972,-0.006884974,-0.43571588,0.85653746,-0.06097478,0.48108834,0.31989008,0.44946972,-0.2091603,-0.30405995,0.08944552,0.93168896,0.4011213,0.07881196,-0.34670416,-0.10077858,-0.26252386,-0.26379153,0.119593754,0.5525269,0.68161094,-0.15198506,0.14497769,0.34208748,0.05444291,0.06638359,-0.07373747,-0.31281117,-0.24750155,-0.07421389,0.45534882,0.7560107,-0.0064349542,0.39512414,-0.02051844,0.16091275,-0.2364038,-0.32356438,0.48503417,0.828462,-0.09103041,-0.3165228,0.58298934,0.5957173,-0.2562721,0.5708686,-0.44955567,-0.20392752,0.52995366,-0.18665077,-0.41670778,0.014622303,-0.48137188,-0.19871551,-0.6990038,0.21882893,-0.43144462,-0.41998482,-0.48218888,-0.20958057,-2.3580127,0.17563698,-0.3109489,-0.2504072,-0.1900027,-0.0954433,-0.09774494,-0.6765762,-0.7074655,0.11891334,0.14800376,0.6506924,-0.1489722,0.085713536,-0.19310245,-0.34138992,-0.43659866,0.08235006,0.07653374,0.44784096,-0.1392873,-0.31140438,-0.0009949964,-0.07409591,-0.35725623,-0.054543562,-0.47365955,-0.36219856,-0.11863144,-0.44321978,-0.18838233,0.6398278,-0.4093973,0.025703628,-0.2893138,0.015607363,0.00011468392,0.17830823,0.22112559,0.32298067,0.15781872,-0.11320378,-0.061955318,-0.23565228,0.43351904,0.13844317,0.4148496,0.61767185,-0.17153539,0.1950462,0.36506134,0.5252085,-0.08980259,1.0319308,0.43295747,-0.13338062,0.22759174,-0.18747255,-0.22220048,-0.7020737,-0.13203517,0.052818887,-0.37305367,-0.6407295,-0.20175669,-0.32659495,-0.86245483,0.44492647,-0.0322846,0.57508767,-0.053643517,0.20171738,0.4703901,-0.17642571,-0.021815883,-0.06903574,0.021456517,-0.38826662,-0.43573233,-0.6880704,-0.38015085,0.15052143,0.96047914,-0.15004133,-0.118415944,0.24793316,-0.3762291,-0.10935784,0.2071853,-0.07000014,0.010298527,0.47473225,0.3094458,-0.6318835,0.5062376,0.043445505,0.042454958,-0.45417303,0.18813199,0.45565712,-0.41306293,0.61708844,0.21688029,0.14673892,-0.118324265,-0.6230388,-0.23254374,-0.026499419,-0.12588619,0.31163967,0.39521253,-0.70722616,0.43496007,0.09340374,-0.25754994,-0.9214356,0.46698782,-0.08844723,-0.2684301,-0.047152616,0.40004805,0.25557238,0.034489512,0.014528293,0.2977721,-0.39052922,0.26691872,0.20431453,-0.104022816,0.173061,-0.13615663,-0.22225468,-0.73050684,0.14354132,-0.3607254,-0.36386007,0.22114362,0.12420352,0.062026437,0.374297,0.34064117,0.34230286,-0.15224046,0.27736542,-0.12159591,-0.15716611,0.4160164,0.39610225,0.79623264,-0.5040568,0.56979984,0.041159026,-0.17619416,0.14097062,-0.015487596,0.33005974,-0.07417968,0.37347955,-0.032913096,-0.19269124,0.12077452,0.6478434,0.20871855,0.34450597,0.061529838,-0.20288755,0.45947793,0.0044459244,0.10479513,-0.08781587,-0.70264846,0.022465605,-0.3069172,0.09093172,0.49751097,0.04133165,0.3126297,-0.11939727,-0.09561278,0.1057601,0.1992334,-0.27927023,-1.0423452,0.16522019,0.018384036,0.9421718,0.71125,-0.024268266,0.094718106,0.49511245,-0.18947461,0.04935371,0.4762804,0.03930848,-0.5062474,0.6251379,-0.561929,0.587668,-0.101309314,-0.020111639,0.012482194,0.07447608,0.51738846,0.68952334,-0.37241885,-0.15929915,-0.072387114,-0.4635573,0.09710583,-0.3174753,0.2667639,-0.5417472,-0.35379183,0.7704781,0.60655934,0.29299456,-0.17776097,-0.03205248,0.088694826,-0.16507241,0.13559881,0.009636523,0.04305923,0.032064978,-0.634502,-0.074614756,0.42410645,-0.4327474,0.049256746,0.0738195,-0.16355082,0.10919252,-0.11923982,-0.18542807,0.05193464,-0.79803556,0.010145079,-0.23879424,-0.39993078,0.21204615,-0.1493743,0.33594185,0.145935,-0.022400549,-0.26542094,0.25670263,0.17310493,0.5838029,-0.07781922,0.057253845,-0.28047058,0.09221314,0.038524583,-0.119872324,0.06129879,0.074101724,0.2495765,-0.6846026,0.5384115,-0.17066447,-0.2167746,-0.118329994,-0.22452694,-0.019323103,0.71400875,-0.18224144,-0.012866766,-0.3449927,-0.23045397,-0.26962727,-0.22042543,-0.028428402,0.14168221,0.085459545,-0.20743439,-0.12291492,-0.12331792,0.05673921,0.16300859,-0.037746347,0.36495337,0.23149487,-0.0025970845,-0.42577922,-0.19495402,0.15149365,0.42864752,-0.0061815013,-0.16387232,-0.26918587,-0.37042558,-0.3921504,0.40137476,-0.036051873,0.3696543,0.055459674,-0.19138663,0.7002998,0.16714838,1.1997378,0.02974411,-0.40304992,0.042486884,0.59570086,-0.17751104,-0.119070634,-0.2623618,0.9313479,0.46373132,-0.014706268,-0.12746271,-0.37973145,0.05402614,0.1879174,-0.24734871,-0.068456635,-0.017934404,-0.4301472,-0.0887376,0.08432312,0.22596033,0.08538026,-0.2651309,-0.050820485,0.27687886,0.12050017,0.4447279,-0.39499715,-0.33296674,0.35371727,0.15818323,-0.013300249,0.2101833,-0.37979856,0.3162257,-0.7043584,0.22326161,-0.19174653,0.14818023,-0.27515915,-0.15709202,0.4028428,0.1038354,0.49601313,-0.3718535,-0.35318455,-0.3116441,0.38577932,0.17306294,0.15753135,0.5212346,-0.19862773,0.014377682,-0.020623028,0.61441934,1.1029611,-0.102587745,-0.06822359,0.19548963,-0.40779817,-0.7499328,0.34073538,-0.38163647,0.07985409,-0.10919325,-0.24500205,-0.66305923,0.15490964,0.19352429,-0.043655936,0.18211061,-0.60238296,-0.34430602,0.038600214,-0.34150356,-0.23281462,-0.20218055,-0.071221195,0.7167617,-0.0994114,-0.39705357,-0.047701064,0.18569033,-0.08644143,-0.47999606,0.10559873,-0.32540953,0.28896528,-0.016755732,-0.30486575,-0.25205696,0.20342074,-0.4818344,-0.05141095,0.16637689,-0.29966673,-0.10747772,-0.37307817,0.007202066,0.90024275,-0.20394543,0.29405773,-0.37483466,-0.5652489,-0.75230896,-0.5156615,0.3940519,-0.03194727,-0.03805518,-0.5588702,-0.031391144,-0.33490303,0.018207647,-0.07226361,-0.46251327,0.4443305,0.12811746,0.34125122,-0.24881011,-0.62441766,0.10702447,0.09826912,-0.0813039,-0.48134944,0.30128404,-0.02792581,0.82594234,0.077003844,0.028095208,0.11635128,-0.50023204,0.1542864,-0.14826457,-0.20212676,-0.50921273,0.15079048 -898,0.525285,-0.07306313,-0.516171,-0.10330221,-0.17524827,0.11691177,-0.22626168,0.49677837,0.4451088,-0.34378114,-0.007851249,-0.14266114,-0.011452265,0.34452292,-0.093471915,-0.33896795,-0.045144945,0.076201156,-0.44181475,0.48949185,-0.5000784,0.22521956,-0.22061104,0.46130416,0.17955373,0.31216016,0.039532077,0.04618207,-0.047246296,-0.12933838,0.10694054,0.41606313,-0.43351507,0.08282821,-0.17459247,-0.20219205,-0.090372,-0.36247692,-0.47170112,-0.77565926,0.21801426,-0.636756,0.4048982,0.07340247,-0.35323954,0.13644724,0.15182531,0.18646185,-0.14258051,-0.10940132,0.0579296,-0.09622955,0.0112872645,-0.13319655,-0.21212797,-0.24241829,-0.5497581,0.05863394,-0.43573812,-0.10359927,-0.28760675,0.1637854,-0.32425204,0.01800966,-0.13220054,0.5665545,-0.40886557,0.046563815,0.2298311,-0.18548667,0.33485782,-0.62645245,-0.3045789,-0.061972108,0.15282236,-0.04292527,-0.29869056,0.26027218,0.28682107,0.37601122,-0.059069663,-0.09996692,-0.39346746,-0.07849145,0.1557639,0.35400096,-0.22710502,-0.39430767,-0.16962354,0.006789709,0.20630758,0.32422364,0.14070071,-0.2876425,-0.12907569,0.1474445,-0.25845394,0.5643319,0.60822266,-0.24847132,-0.26354784,0.31026906,0.45328644,0.31520128,-0.22098878,0.006026249,0.00053066714,-0.5539618,-0.058560405,-0.007072,-0.057743184,0.49141222,-0.10582795,0.24440695,0.48735848,-0.21473452,-0.18109994,0.08651918,0.010078521,-0.02525624,-0.37311706,-0.030320775,0.073286444,-0.41243523,0.14720811,-0.07870884,0.6849827,0.17252019,-0.65157473,0.3288624,-0.47636998,0.15602861,-0.062269997,0.5048181,0.76483095,0.29519767,0.44133943,0.645731,-0.3436184,0.08379507,-0.22394507,-0.21213846,0.1035416,-0.22286482,-0.0016697645,-0.5290912,-0.13482152,0.0059720348,-0.14621559,0.18907659,0.4718001,-0.48537266,-0.19606455,0.18684801,0.69411486,-0.20130074,-0.08332226,0.7230608,1.0749657,0.9734762,0.053579632,1.0707375,0.02236778,-0.123738624,0.23953404,-0.34338558,-0.69895136,0.34443378,0.22464828,-0.22523463,0.16478327,-0.0061482303,-0.110716455,0.3829575,-0.3819239,0.024174344,-0.027946906,0.5014019,0.1809719,-0.04248772,-0.2757252,-0.29576898,-0.04642221,-0.0713607,0.0396962,0.27541953,-0.23143005,0.3729463,-0.057857335,1.4570191,-0.071443506,0.062896706,0.1298945,0.54460317,0.2431702,-0.2752286,-0.07378531,0.43236744,0.097051494,0.18946664,-0.42139685,0.13930854,-0.229714,-0.3994173,-0.07513867,-0.44359002,-0.087801814,0.018385101,-0.24207143,-0.11243514,-0.15813282,-0.4215035,0.49834207,-3.064875,-0.33856696,-0.09318208,0.33014888,-0.18115129,-0.3290935,-0.07505929,-0.52644575,0.41044128,0.28290915,0.42197803,-0.6984099,0.16626444,0.44067925,-0.52888805,-0.18856533,-0.5562731,-0.103544295,0.0844416,0.45775822,-0.016175684,-0.00035338892,-0.034431424,0.21600671,0.45210338,0.06881468,0.17456554,0.26240134,0.26619893,-0.05210968,0.51222706,-0.06280441,0.44525743,-0.24590003,-0.2548191,0.4242626,-0.4469117,0.2860601,-0.09714874,0.087117516,0.40552545,-0.35436606,-0.8747194,-0.47501284,-0.052407194,1.2869054,-0.13477409,-0.49008256,0.3056531,-0.60733235,-0.32705587,-0.112676196,0.45696783,-0.08218273,-0.031733066,-0.7848731,0.10448049,-0.13942917,0.1328511,-0.051868763,-0.047167093,-0.2385246,0.4858353,0.008018851,0.3932561,0.40668443,0.066606425,-0.39818725,-0.59465474,-0.07783765,0.8190792,0.39524505,0.1559359,-0.2083913,-0.21355236,-0.33802295,-0.076566696,0.15794423,0.5763812,0.55322546,-0.087760106,0.16030495,0.39538503,-0.043709256,0.05911119,-0.22150388,-0.17764041,-0.08518218,-0.040191032,0.63186646,0.85651726,-0.14629549,0.4885756,0.050907217,0.25664866,-0.107995555,-0.38784418,0.4752821,0.97048634,-0.25398722,-0.25328794,0.5863648,0.340425,-0.31525552,0.43130782,-0.41161388,-0.26301974,0.477193,-0.18580928,-0.44214153,0.33039212,-0.30509517,0.03886068,-0.7288308,0.2152796,-0.4214252,-0.509607,-0.48040885,-0.045751516,-3.2680771,0.12366603,-0.24729976,-0.18969132,-0.10218835,-0.13001135,0.11651143,-0.4586988,-0.56867826,0.038223702,0.16954832,0.65801597,-0.24824347,-0.021647668,-0.27272344,-0.34598783,-0.419221,0.09380883,0.13461085,0.46232972,-0.093969345,-0.44855362,-0.066913985,-0.11473336,-0.41896367,0.1254404,-0.421185,-0.5319903,-0.11978145,-0.4428332,-0.289206,0.6213005,-0.13911422,-0.048030987,-0.2848016,-0.030744318,0.07507108,0.25756264,0.08122995,0.10417613,0.16253212,-0.09862505,-0.0807504,-0.25446692,0.1857784,-0.034297653,0.26377195,0.504558,-0.051415265,0.20903607,0.5124512,0.57607895,-0.16357806,0.98655343,0.41729492,-0.014873648,0.34358135,-0.26693648,-0.31231153,-0.43897116,-0.2007735,0.07742515,-0.4662253,-0.3976092,-0.11705052,-0.28818443,-0.6195009,0.58421755,-0.07313685,0.16143173,-0.082383074,0.25063446,0.55787086,-0.117626145,0.012814472,-0.027742442,-0.1775356,-0.61095154,-0.2624931,-0.62651086,-0.5223409,0.25254762,0.7848982,-0.29580644,0.10708327,0.07675182,-0.24115798,-0.087490305,0.08675101,0.03132285,0.16203499,0.36615765,-0.061000913,-0.5420526,0.25482005,-0.06531137,-0.08468267,-0.6056921,0.3323822,0.60573393,-0.5581317,0.64709586,0.30071998,0.053924028,-0.19931546,-0.58661413,-0.087829225,-0.078824,-0.30385956,0.58421946,0.2792506,-0.8894791,0.48387024,0.35681993,-0.20984821,-0.7458895,0.5819468,-0.08612446,-0.26960015,-0.13068494,0.4112339,0.14631149,0.08935843,-0.14541319,0.35481334,-0.26653713,0.21743542,0.265779,-0.20121816,0.42763948,-0.179185,-0.22014055,-0.66954815,-0.0068427077,-0.5513478,-0.35107356,0.23998807,0.12827857,0.049319144,0.16615078,0.055669468,0.40446416,-0.18557218,0.12898915,0.018513652,-0.18127032,0.39705724,0.46278724,0.64169765,-0.32219774,0.5334902,0.0011543666,-0.07800106,0.019837435,-0.0017767338,0.2806525,-0.024789408,0.35767484,0.12155973,-0.22885711,0.2177762,0.7404037,0.10593848,0.37070835,-0.01691623,-0.118330926,0.2290296,0.02006706,0.25355712,-0.08750753,-0.56323105,-0.037798196,-0.4232833,0.17349872,0.42032394,0.22145063,0.24866088,-0.10699135,-0.42717245,-0.008906456,0.13106263,-0.026767079,-1.3302411,0.24808954,0.14625832,0.81576705,0.44862235,0.061906997,0.00997167,0.637161,-0.11876154,0.078409895,0.46415883,0.0934578,-0.4422317,0.42716366,-0.9225068,0.465128,-0.036219694,0.028912766,0.07080905,0.0021324297,0.489456,0.764709,-0.16264352,-0.025923138,0.11595863,-0.37405798,0.2091554,-0.38878733,0.049963165,-0.6424988,-0.30915827,0.50591594,0.47337747,0.29664263,-0.21038932,-0.034365036,0.14346503,-0.14456932,0.14006801,0.0518602,0.05758955,-0.1493284,-0.5944009,-0.17609109,0.43482408,0.1973031,0.14721394,-0.034869164,-0.09124648,0.21481015,-0.10581526,-0.014731006,-0.09266551,-0.54086053,-0.18492712,-0.30208254,-0.42745233,0.5140999,-0.26455688,0.2528417,0.254144,0.14798129,-0.21513097,0.45256782,-0.04819897,0.711475,-0.04166364,-0.09697747,-0.3345429,0.08839337,0.18718731,-0.15436895,-0.123970255,-0.23828173,0.011674054,-0.4932567,0.511741,-0.0761763,-0.2415678,-0.03436428,-0.0930675,0.090110354,0.50417507,-0.14492252,-0.2516803,-0.17796476,-0.15308845,-0.34708145,-0.15668747,0.058402166,0.15955462,0.23856707,-0.22519924,-0.08510569,-0.2366059,0.029073538,0.29118463,-0.053512957,0.23331252,0.2985712,0.08904146,-0.2607077,-0.13438384,0.2730097,0.5057347,0.11470385,-0.11251648,-0.2511333,-0.4488367,-0.4320542,0.11672896,-0.041544046,0.31853727,0.06905,-0.19591814,0.57246405,-0.048099503,1.0561259,0.062437296,-0.2584238,0.011804605,0.42007756,0.046823934,-0.07639756,-0.3478434,0.724636,0.46429476,-0.23305997,-0.17793517,-0.42741156,0.017173357,0.10217177,-0.18691316,-0.076557636,-0.12190493,-0.60996515,-0.06781173,0.12795609,0.2890173,0.22890733,-0.19906217,0.043920588,0.31159273,0.08979754,0.35916615,-0.3410229,-0.18018843,0.30008718,0.37856755,0.030692354,0.033213872,-0.45314032,0.4124379,-0.4546714,0.15141611,-0.1104764,0.2211811,-0.16573673,-0.31730422,0.287287,0.0007190985,0.36374983,-0.28265536,-0.38621718,-0.24604791,0.3250993,0.12481516,0.08899788,0.5018303,-0.2349529,-0.07665475,0.08450425,0.47090507,1.1486627,-0.18776567,-0.16273536,0.2956019,-0.27344784,-0.7259384,0.29721954,-0.38051605,0.1949441,0.06370479,-0.11741345,-0.48631886,0.20468391,0.18411317,0.09244871,-0.031345285,-0.6317354,-0.14109391,0.163231,-0.348416,-0.15112485,-0.28030038,-0.08178411,0.54733825,-0.18435074,-0.34479377,0.026989317,0.33336183,-0.18594414,-0.5441751,-0.023865735,-0.26186174,0.23063782,0.00085502514,-0.31218234,-0.10015207,0.11770587,-0.47989914,0.11022849,0.15537132,-0.3574979,0.035399806,-0.27520722,-0.16671847,0.90796584,-0.3246617,0.37852746,-0.21353368,-0.47352752,-0.65345234,-0.18248583,0.22589916,-0.022763561,-0.010518391,-0.53823775,-0.0077204844,-0.22531496,-0.24760689,-0.009974206,-0.35055092,0.49339053,0.035120573,0.29761317,-0.11391819,-0.7026498,0.15055011,0.22196513,-0.10759982,-0.5717215,0.59263384,-0.105737396,0.6919318,0.0732773,0.10044724,0.35937005,-0.38002777,-0.031913117,-0.09409294,-0.164857,-0.5093788,0.04565584 -899,0.4407859,-0.17065947,-0.52726334,-0.2499839,-0.31617638,-0.060323372,-0.023894975,0.62391627,0.46554637,-0.018690139,0.07001531,-0.019605586,-0.143369,0.49638602,-0.16502474,-0.9298453,0.024050675,0.11926543,-0.62288064,0.4719104,-0.41628763,0.2613639,-0.17334183,0.55031884,0.17423661,0.14761555,0.029265516,0.06470439,0.28483462,0.000529622,-0.06285983,0.21939029,-0.46642253,0.33917025,-0.040301524,-0.24851261,0.029347016,-0.3820363,-0.33518836,-0.87066245,0.43518475,-0.56752235,0.57424164,0.08060575,-0.43897453,0.023680212,0.13284205,0.29610696,-0.45947334,-0.08706658,0.08887624,-0.08252866,0.07589533,-0.02659183,-0.35095248,-0.33940756,-0.6184843,-0.077971436,-0.41394138,-0.12862913,-0.25608328,0.1635767,-0.36165503,-0.11951826,-0.25945407,0.6479514,-0.2982712,0.14691253,0.37772608,-0.18467207,0.21278293,-0.44761062,-0.12949951,-0.093013845,0.09480917,0.18449199,-0.3515686,0.36496723,0.26857057,0.35340902,-0.09863508,-0.26011375,-0.23302011,-0.1406233,-0.06674292,0.3700695,-0.24644786,-0.2894683,-0.21315467,0.062530324,0.2377065,0.35548222,0.0035042565,-0.23253246,-0.017991006,-0.13512789,-0.1195394,0.5587395,0.45802274,-0.25714687,-0.29048893,0.30797634,0.23345439,0.20850806,-0.20750594,0.17586891,0.03774755,-0.57430345,-0.23153807,0.09238684,-0.1512205,0.46054807,-0.084735245,0.15189406,0.82446104,-0.14059468,-0.23218727,-0.0688681,0.11289088,0.038580667,-0.4297121,-0.3102267,0.19937742,-0.50457495,0.110747896,-0.15466343,0.8508079,0.14226007,-0.7668981,0.18132323,-0.58620423,0.10412393,-0.18632956,0.6009671,0.9395828,0.49466538,0.32835126,0.74726266,-0.45586523,0.10132912,0.06943036,-0.26118907,0.124034464,-0.10342121,0.09790298,-0.50939447,-0.034515966,-0.029050201,-0.07634547,0.17016138,0.0210488,-0.46682385,-0.21517245,-0.017749252,0.81758004,-0.2578661,-0.13740633,0.76958114,0.9604459,1.1058893,0.09670129,1.1140894,0.29079822,-0.095021784,0.23003049,-0.2302419,-0.62068576,0.19353946,0.16374932,-0.23198362,0.2428168,-0.05427386,-0.021651268,0.4723289,-0.2422529,-0.059698284,0.0019200556,0.30661973,0.052038927,-0.26463988,-0.41131893,-0.4824792,0.06857165,0.02195265,-0.03288595,0.36073926,-0.2969494,0.3056993,0.0393027,1.1978997,0.3469971,0.03874899,0.047688723,0.44748938,0.2529819,-0.27655426,-0.1911078,0.2896503,0.48140678,0.07356323,-0.5919313,0.2071228,-0.30917585,-0.18699916,-0.060388308,-0.44991302,0.028349796,-0.13528071,-0.4066658,-0.21006499,-0.15609972,-0.104913615,0.4105235,-2.8472373,-0.061427146,-0.09494736,0.12279234,-0.11257281,-0.12651585,-0.054629516,-0.49029422,0.24309766,0.39446008,0.35913268,-0.61880785,0.3745706,0.39546537,-0.54300135,-0.062773086,-0.6752258,-0.22474344,0.078028984,0.26786846,-0.078350194,0.21046853,-0.09618673,0.30023837,0.6269446,0.17971802,0.08060191,0.18821661,0.50410664,-0.10431097,0.52196985,-0.11089006,0.48389718,-0.3941156,-0.10795916,0.15591992,-0.5146363,0.43429065,0.121332705,0.11448478,0.61060184,-0.49058416,-0.9025533,-0.4103185,-0.17477208,1.2292653,-0.36537054,-0.26887476,0.39416078,-0.44020852,-0.16187745,-0.10346606,0.5325925,-0.101032116,-0.16069557,-0.62329376,-0.055425104,-0.021187032,0.29604566,-0.096277855,-0.12896618,-0.079746485,0.5116791,-0.047640193,0.5686782,0.20860833,0.11668384,-0.46092656,-0.5670552,4.3225784e-05,0.5518091,0.37950453,0.08922106,-0.0995048,-0.13928495,-0.18902801,-0.06238538,0.09870228,0.73527294,0.77069664,-0.13333087,0.12459018,0.41011062,-0.20626569,0.0248705,-0.08953912,-0.2576888,-0.15301119,0.06896409,0.4405035,0.7599612,-0.13842617,0.42165127,-0.05829147,0.20002896,-0.19132538,-0.4568931,0.5583397,0.8049666,-0.11481502,-0.23733978,0.5861445,0.35442278,-0.3429515,0.40024078,-0.45543823,-0.15740697,0.76043296,-0.1344185,-0.3903452,0.010695373,-0.28069147,-0.092615105,-0.94176143,0.37278402,-0.29377612,-0.64279324,-0.44529784,-0.021164,-3.9207084,0.16304593,-0.27365914,-0.21883963,-0.2622522,-0.033662777,0.28328404,-0.5674836,-0.59599835,0.15167391,0.20809229,0.5382839,-0.13686685,0.08794132,-0.38599655,-0.30843222,-0.307588,0.1653841,0.16412435,0.2860128,0.0031332572,-0.31628385,-0.05867328,-0.0539338,-0.5706336,0.084922455,-0.582863,-0.4033629,-0.09580805,-0.6758025,-0.16840875,0.821704,-0.25122812,-0.025110478,-0.17349319,-0.04539925,-0.13405125,0.33493087,0.19836225,0.25478983,0.06807104,0.018710986,-0.15518317,-0.31333736,0.20835467,0.042953607,0.49694657,0.16201766,-0.08054952,0.19295485,0.6395152,0.67469054,-0.0003350973,0.75923204,0.38320565,-0.07940954,0.3351028,-0.3709383,-0.38047218,-0.44640234,-0.24385363,-0.17211038,-0.33739635,-0.4015551,-0.07069711,-0.26934218,-0.81870526,0.3637413,0.031136194,0.25829682,-0.16990362,0.17882985,0.3555913,-0.16689889,0.17766671,-0.060548287,-0.21472692,-0.39840588,-0.28532287,-0.6634372,-0.3947183,0.31231955,1.0737575,-0.34110418,0.048446327,-0.07030691,-0.4015272,0.046970546,0.18464416,0.17639816,0.28558728,0.21590261,-0.20254202,-0.63867086,0.40382826,-0.19723749,-0.1264811,-0.68391186,0.07062445,0.820117,-0.5714434,0.76527596,0.12083172,0.015457928,-0.20738347,-0.6666436,-0.3442748,0.14843573,-0.017247101,0.52558726,0.29624248,-0.7054791,0.47534263,0.278765,-0.1496097,-0.6398664,0.4654919,-0.13314618,-0.32530567,-0.017028809,0.3858079,0.12380188,-0.08686149,0.06368526,0.35852483,-0.30284992,0.13229808,0.19498412,-0.07675493,0.23113339,0.055244416,0.057543218,-0.7066886,0.06415876,-0.67760205,-0.17356043,0.29018787,0.038175624,0.14259818,0.08981922,-0.06552831,0.2637817,-0.15122445,0.14073873,-0.013745884,-0.24411379,0.37803403,0.51116383,0.41410124,-0.34980765,0.5521601,0.12648283,0.07983923,0.24009494,0.271426,0.4536165,0.21189289,0.5244224,-0.21442668,-0.25969574,0.22342749,0.73640853,0.12489017,0.31941125,0.09841961,0.023112396,0.2044038,0.16385192,0.06983048,0.061647397,-0.24437343,-0.1472416,-0.14409716,0.23833914,0.53588265,0.09318664,0.22909577,-0.018255508,-0.28091618,0.1970384,0.234459,-0.06433637,-1.2927359,0.4324324,0.25004125,0.7938207,0.39726067,0.28223935,-0.19874598,0.6985416,-0.13751061,0.20147704,0.58403534,0.18181874,-0.47846428,0.6542661,-0.57157815,0.6721535,-0.019505316,0.0095566185,0.08344624,0.26532805,0.37954366,0.8079508,-0.096393645,-0.019641653,0.090298206,-0.3642056,0.108745135,-0.44246197,0.09996179,-0.52543306,-0.35404572,0.5067424,0.5101382,0.15279573,-0.35986912,-0.032825578,0.09703028,-0.082036965,-0.05363092,-0.17290907,-0.17395155,-0.16250119,-0.6196986,-0.2292289,0.45343232,-0.109615296,0.066763766,0.029913014,-0.14675735,0.29157078,-0.1027239,-0.044114094,-0.07560408,-0.7971544,-0.0108579,-0.27806285,-0.49608627,0.5408121,-0.49303687,0.2130708,0.20919792,0.045740705,-0.43280736,0.32832572,0.04715256,0.7386672,-0.24206881,-0.092886806,-0.3600937,0.10965911,0.1030537,-0.25186843,-0.06720417,-0.43780628,-0.02332819,-0.46053088,0.34554327,-0.080060326,-0.26869223,-0.23003155,-0.1253009,0.121987544,0.44509855,-0.2637918,-0.06042259,-0.25654456,-0.28937554,-0.38988647,-0.2232007,-0.28292468,0.2995053,0.102497436,0.0039103427,0.043963138,-0.13615239,-0.110066205,0.25217745,-0.07716604,0.27719593,0.3113372,0.067072086,-0.18282229,0.013287127,0.0027635198,0.40819708,0.1356333,-0.15387301,-0.39121106,-0.22231494,-0.19533002,0.19788122,-0.20167732,0.3011534,-0.08884362,-0.42792454,0.78159374,0.05395648,1.1496128,-0.11585525,-0.4066175,0.10494328,0.45163098,0.09062535,-0.018571714,-0.12682916,0.77195215,0.54250944,-0.07861995,-0.172702,-0.24806571,-0.116302334,0.26317027,-0.27691928,-0.28685912,-0.02570183,-0.63393193,0.049384754,0.22433466,0.10024353,0.2845836,-0.011703898,-0.22915141,0.04749153,0.23874015,0.3819003,-0.43735328,0.12787145,0.12456298,0.3924687,0.24169742,0.20471036,-0.4401184,0.3357924,-0.72129536,0.27976763,-0.4065087,0.17218496,-0.2505716,-0.28982124,0.08549816,0.06248754,0.31572095,-0.26655486,-0.19545062,-0.24512087,0.5970685,0.23624535,0.16002576,0.6667995,-0.23776908,-0.12025261,0.17303784,0.54798967,1.0268168,-0.09111759,-0.30064687,0.12112262,-0.35584155,-0.8964049,0.14453878,-0.39415208,0.1672256,-0.0852265,-0.10201314,-0.35767698,0.19989367,0.12962316,0.13145769,-0.004309498,-0.53674877,-0.36074963,0.4507903,-0.27599305,-0.36709538,-0.33402833,0.29421198,0.6180901,-0.19904667,-0.36459944,0.013584316,0.1990615,-0.1631425,-0.51502883,0.045419823,-0.42614743,0.3285273,0.018172491,-0.51378286,-0.018486291,0.09598645,-0.49716714,0.19956188,0.15072234,-0.29153,0.02388054,-0.06746817,-0.27223098,1.0288206,-0.1412699,0.082084745,-0.6313977,-0.5387153,-0.8409675,-0.3479508,0.4218396,0.26512748,-0.08349099,-0.78109217,-0.051411923,-0.033262096,0.025123915,-0.017760143,-0.4577539,0.41859105,0.11688641,0.27033907,0.102570124,-1.0090368,0.09160442,0.13387631,-0.16737403,-0.6412427,0.51377594,-0.18913858,0.8189427,0.057033617,0.051208694,0.19276147,-0.4143429,0.207209,-0.32081234,-0.30873248,-0.40196028,0.17370753 -900,0.4445941,-0.020583943,-0.44573116,-0.25293738,-0.22213547,0.31820124,-0.041952,0.15376186,0.054009013,-0.37119472,-0.081513494,-0.10839027,-0.04796224,0.32001588,-0.18012181,-0.81311893,-0.10227914,-0.017658988,-0.56583166,0.2993807,-0.52770895,0.5866385,0.18295473,0.239763,0.082503505,0.47558922,0.34307706,-0.29505634,-0.21043421,0.06448434,-0.22288091,0.13125072,-0.5738756,0.15479627,-0.0018064259,-0.2964877,0.21457762,-0.2668905,-0.22462675,-0.6047083,0.4065375,-0.68692774,0.3628555,-0.08183009,-0.25453764,0.20041406,-0.07424699,0.21578829,-0.45542827,0.24166691,0.25825375,-0.34664625,0.0426338,-0.19442898,-0.27307934,-0.52276033,-0.47098365,0.03662534,-0.57874525,-0.2943843,-0.36712202,0.19973004,-0.30181757,0.027902015,-0.18326038,0.17757595,-0.4720093,-0.1428445,0.14951384,-0.18060683,-0.0020835027,-0.31269068,-0.14351812,-0.14278668,0.22963068,-0.067248456,-0.0011675917,0.27738255,0.38239723,0.5479146,0.12973313,-0.27892286,-0.2302564,-0.13572975,0.117421255,0.45229882,-0.13953668,-0.386928,-0.11556859,0.019491524,0.08341023,0.11793019,-0.04539959,-0.29957736,-0.0024147741,0.09182823,-0.16024402,0.09919131,0.54429805,-0.3744816,-0.2176373,0.38532427,0.42451924,-0.0753374,-0.036944486,0.056687385,-0.059106965,-0.4096655,-0.26279145,0.2423065,-0.12938944,0.4813882,-0.05219543,0.10893889,0.86137235,-0.16532041,0.13593897,-0.34913194,-0.09251901,-0.14485586,-0.076050185,-0.091518015,0.040829614,-0.364734,-0.026121587,-0.3466136,1.0139867,0.16289772,-0.7926556,0.31692344,-0.40154728,0.18585996,-0.14271882,0.6632134,0.5680396,0.2800274,0.13464746,0.83722484,-0.64834785,0.16671066,-0.047307476,-0.40770817,0.081722915,-0.10864487,-0.041931063,-0.36049864,0.18454522,0.08279894,0.017006129,-0.033396497,0.19158918,-0.37853447,0.12793991,-0.08612217,0.6061555,-0.56380916,0.081911206,0.59767693,0.9107627,0.7717167,0.1475232,1.3876377,0.5039196,-0.24585094,0.02521548,-0.46561393,-0.48114833,0.1415791,0.48618338,0.37189418,0.120010436,0.1469991,0.14017454,0.34263396,-0.29142672,0.09764831,-0.17187813,0.26755133,-0.059553165,0.057948016,-0.39650577,-0.23858811,0.091413796,0.103908435,0.030380573,0.21242207,-0.10560578,0.41177836,0.08683108,1.5919887,0.09660062,0.17532477,-0.067376226,0.33064717,0.14617549,-0.054370396,-0.051443055,0.37942597,0.36420393,-0.2371966,-0.6004245,-0.14921167,-0.32910612,-0.49857008,-0.19761416,-0.3457812,0.0153028965,0.031617295,-0.35219753,-0.10877965,0.13712876,-0.28443807,0.47001934,-2.3686638,0.03507065,-0.12921573,0.29210594,-0.25354552,-0.3802527,-0.1838989,-0.41675746,0.33586788,0.4667215,0.31089723,-0.55482143,0.20353056,0.120269775,-0.13487941,-0.18277784,-0.70487344,0.04787222,-0.15107292,0.3493589,-0.1894786,-0.06408207,-0.24792127,0.09596688,0.5732832,-0.01461691,-0.09593412,0.20388934,0.39259398,0.22284321,0.4663941,0.36603197,0.53461945,-0.0880679,-0.11694313,0.3617751,-0.41478044,0.42258978,0.073550925,0.16968377,0.25445136,-0.58713156,-0.7807879,-0.6972853,-0.37111554,1.3317268,-0.3614765,-0.2648844,0.30744496,0.12806946,-0.1965021,-0.012976021,0.30241007,-0.19063948,-0.07006025,-0.6461295,0.03140288,0.040384695,0.12543844,-0.0066300295,0.2253344,-0.1670368,0.6667427,-0.31097794,0.3116175,0.36685574,0.22553368,0.13095705,-0.53143245,0.0362067,1.0031664,0.30006042,0.10243912,-0.06798701,-0.3172187,-0.09952085,-0.283813,0.33911476,0.24001202,0.9302318,0.15812713,0.02065771,0.26684445,-0.23501371,0.021576738,-0.0173739,-0.37855232,0.05458522,-0.019198023,0.48506898,0.35731253,-0.1821022,0.32850692,-0.20614548,0.30845028,-0.090160176,-0.4263121,0.5346419,0.83571684,-0.10756309,-0.1395455,0.49926713,0.4721899,-0.39950815,0.33139855,-0.5680701,-0.18272349,0.7128922,-0.20489791,-0.36090985,-0.07821247,-0.341191,-0.023200244,-1.0263826,0.35544014,0.14301568,-0.44483668,-0.53861445,-0.20364933,-3.7191358,0.0014697537,-0.26411352,-0.14637543,0.12255095,-0.15074499,0.22871724,-0.59617615,-0.38732716,0.072225675,-0.083396986,0.3950216,0.07968916,0.23554237,-0.2552309,-0.0064010248,-0.26480222,0.14979911,0.116800666,0.23791327,-2.1964312e-05,-0.30239636,0.21514937,-0.41070998,-0.38121474,0.10938333,-0.31100523,-0.51838994,-0.29357362,-0.39429507,-0.21028718,0.7130394,-0.4942984,-0.15686347,-0.1739288,-0.06755301,-0.38034564,0.40019488,0.35544184,0.20944126,0.092704095,0.030990096,-0.22947896,-0.52043855,0.3727629,0.1626848,0.25310895,0.42376962,-0.066207305,0.060320772,0.4897777,0.50557554,-0.0006311387,0.5428238,0.2314409,-0.10001251,0.26754087,-0.54785156,-0.2575631,-0.8194872,-0.51454395,-0.4071911,-0.33234644,-0.456668,-0.20360959,-0.47984803,-0.8117603,0.251552,-0.02830907,0.07434274,-0.14218365,0.22608292,0.31228203,-0.047515273,0.028499164,-0.19765297,-0.06384802,-0.52258086,-0.39770183,-0.6032603,-0.6046251,0.30114833,1.0712764,-0.092218645,-0.22671357,-0.14267704,-0.2199179,0.19986387,-0.13751546,0.17386203,0.28065443,0.37001908,-0.14875926,-0.7256259,0.59970725,-0.04962285,-0.12941796,-0.6151974,-0.14125054,0.58051956,-0.8048673,0.39124334,0.35457513,0.2521511,0.38628542,-0.44234288,-0.48591557,0.0034595653,-0.18966283,0.4551317,-0.0010668337,-0.43217593,0.43749565,0.24274546,-0.06785227,-0.6750505,0.35665333,0.007271873,-0.23335108,0.2843501,0.28861785,0.02475715,-0.23363732,-0.18805137,0.19916365,-0.5408929,0.3793307,0.5105945,0.10224047,0.37515008,-0.1714643,-0.35918707,-0.5375492,0.04381077,-0.50233984,-0.200174,0.0008786041,0.16664046,0.14743851,0.036477357,-0.055951297,0.5452368,-0.38401175,0.15842591,-0.008890744,-0.12095632,0.3267769,0.43860793,0.25601506,-0.53749144,0.6214859,0.03868745,-0.0005640909,-0.2607139,0.06237259,0.5562244,0.34347147,0.047174558,0.01668182,-0.21192893,0.2708531,0.59715796,0.2679076,0.4235764,0.14206691,-0.3264767,0.48560876,0.27065653,-0.037164737,0.1375747,-0.072944894,-0.048319325,0.18826684,0.17707388,0.32421514,0.04110109,0.4751413,-0.11677545,-0.123047665,0.36081803,0.08591452,-0.14726898,-0.6797803,0.18808123,0.11454459,0.49443692,0.4728499,-0.12019625,0.06508822,0.38187325,-0.467452,0.13562469,0.29677033,0.0019039661,-0.60360694,0.54567724,-0.58334416,0.37963942,-0.29046294,-0.011533417,0.0330598,0.16445735,0.27938217,0.9143697,-0.06841311,0.1018249,-0.061614014,-0.19650649,0.050939303,-0.28712443,0.097292244,-0.48916075,-0.24796976,0.50185764,0.2255897,0.26762843,-0.22213529,-0.12723157,0.0651779,-0.04271829,0.21238245,-0.08625467,0.07774007,0.003941793,-0.5163619,-0.6558697,0.5431001,0.0263599,0.048858505,0.10360734,-0.3773979,0.39440164,-0.21703087,0.009745399,-0.004961093,-0.44199145,0.09278579,-0.21749021,-0.48620373,0.20647056,-0.30871105,0.4989591,0.17198049,0.09158291,-0.39451167,0.031525284,0.31875175,0.7984162,-0.05999627,-0.2622144,-0.46501333,0.1349294,0.4777128,-0.32164198,0.090133354,-0.19355075,-0.013115462,-0.647395,0.3982209,-0.23565441,-0.17891705,-0.026617624,-0.24788463,-0.14023633,0.36335194,-0.24475838,-0.05662354,0.2888971,0.14274082,-0.2295343,0.019116025,-0.38015312,0.21745479,0.0073112547,-0.012801394,-0.055832554,-0.14296474,-0.06172707,0.36412776,0.05169297,0.15828611,0.052364796,-0.19888791,-0.43547577,-0.12844008,-0.07462977,0.11800335,0.13931097,-0.08011765,-0.31338853,-0.3748446,-0.17214456,0.12279943,-0.30433196,0.14954527,0.16538975,-0.5601809,0.71870697,0.069721974,1.1365069,0.20754978,-0.2582686,0.06513263,0.58147824,0.18577239,0.16283609,-0.28678265,0.9350039,0.6569213,-0.12516917,-0.2860502,-0.33494946,-0.28717694,0.32910773,-0.19678888,-0.14149499,-0.12554014,-0.6533543,-0.40791833,0.15592125,0.23261108,0.08550559,0.13333154,-0.118709125,0.053737663,0.19200203,0.66399145,-0.32408777,-0.12470397,0.25751132,-0.029277433,0.21368569,0.2524914,-0.32769907,0.45540297,-0.68788517,0.09632219,-0.29033518,0.07202945,0.013777584,-0.24571571,0.12559944,0.012391772,0.38296038,-0.2670167,-0.41416055,-0.17930387,0.67940545,0.19598208,0.34242317,0.6777733,-0.27738214,-0.036870692,0.0043291952,0.3586033,1.353288,-0.024670012,0.18697704,0.37338996,-0.25534078,-0.47335324,0.27696478,-0.19509114,0.026508585,-0.20600563,-0.4562291,-0.31268045,0.32243258,0.20772317,-0.20659433,0.103004366,-0.37168586,-0.2513039,0.48729193,-0.25835937,-0.40046456,-0.28538626,0.40549368,0.6530541,-0.532282,-0.3630474,0.12839067,0.22914802,-0.3232106,-0.5147107,-0.124657646,-0.19070509,0.41367358,0.11971394,-0.21612954,0.0577953,0.31682244,-0.2273244,0.23496512,0.309931,-0.4241072,-0.12459254,-0.12902093,0.028146207,0.99395204,0.17935738,-0.049558714,-0.76055115,-0.29996282,-1.0452198,-0.46394357,0.57806516,0.17316656,0.013537422,-0.47338802,-0.009003293,0.12752448,0.17324449,0.114893265,-0.6369548,0.3778038,0.20816916,0.38837987,-0.08399151,-0.75715625,-0.12558176,0.032431334,-0.18127136,-0.50532424,0.4859259,-0.185591,0.58910584,0.059529766,-0.00017412007,0.19835764,-0.5374476,0.2890065,-0.45187682,-0.20942056,-0.6328902,0.1665717 -901,0.30434337,-0.009458423,-0.6561739,0.012103694,-0.18348122,0.06834761,-0.29363158,0.16090079,-0.183724,-0.40006182,0.026301274,-0.028550684,-0.04165742,0.27101344,-0.22125928,-0.6160087,0.12050021,0.16259754,-0.4353697,0.3637953,-0.5562221,0.5169727,0.08957159,0.11423732,0.04686839,0.10290743,0.2287317,-0.049191687,-0.2254935,-0.5266205,-0.03530138,0.11799378,-0.44876575,0.2786744,-0.118953705,-0.5671164,0.1277809,-0.20709352,-0.3172111,-0.52202195,0.17218621,-0.64222854,0.61444205,-0.05670572,-0.2948714,0.23398885,0.2905617,0.288345,-0.08634262,0.11014582,0.02247736,-0.36025953,-0.37493962,-0.3121775,-0.36092302,-0.39231417,-0.70989096,-0.009875426,-0.8251093,-0.09137132,-0.28292236,0.2884427,-0.42240283,0.12222852,-0.19334683,0.41630387,-0.36079484,-0.07721359,0.10944005,-0.07751789,0.17514066,-0.41137815,-0.075657845,0.026183257,0.11987823,-0.22574104,-0.09245561,0.19499336,0.18229572,0.48262718,-0.047204368,-0.31729826,-0.22099657,-0.31921768,0.13644205,0.68239975,-0.18107985,-0.26506475,-0.19141474,-0.018989589,0.25982705,0.36547357,0.061280128,-0.09406607,-0.15312913,0.08332533,-0.34487298,0.34918264,0.4896354,-0.42452022,-0.22498357,0.49895993,0.46073914,-0.04701389,-0.18288119,0.23001882,0.005647438,-0.51713383,-0.1824709,0.21769522,-0.08621262,0.43193126,-0.11956322,0.3505178,0.49200064,-0.3169925,0.00022636993,0.27557454,0.020331947,0.073423095,-0.18034495,-0.18517168,0.29650378,-0.6313551,-0.0688328,-0.32729015,0.9259254,-0.1580193,-0.6133853,0.37944552,-0.59168005,0.16475967,-0.14545788,0.7660025,0.44098708,0.47221875,0.18997426,0.63419676,-0.44466308,-0.09427791,-0.056957014,-0.30475253,0.038137138,-0.09427207,-0.08320493,-0.41720873,-0.093494296,0.21631955,0.15081401,0.045651525,0.646885,-0.4567053,-0.17092599,0.013720402,0.6887346,-0.35123926,-0.13350847,0.79952323,1.2215022,1.1171701,0.050785176,1.0965152,0.19412418,-0.07663642,-0.3595124,0.0037512097,-0.51485336,0.18568388,0.37406197,-0.048904903,0.23251669,-0.017680893,-0.14662494,0.40461522,-0.31755295,-0.21384974,-0.022604434,0.30797,-0.1944022,-0.16345449,-0.41078717,-0.22609796,0.048318725,-0.03744607,0.15823151,0.31356832,-0.2942109,0.47679368,0.1453424,1.0663451,-0.084185876,0.23650463,0.15143745,0.26971337,0.19577622,-0.0761954,-0.06110808,0.1346391,0.3237216,0.13092557,-0.5944312,-0.020019459,-0.20834698,-0.47894764,-0.22002697,-0.1910256,-0.10472681,-0.32176188,-0.4048519,-0.045451794,-0.049560454,-0.41752347,0.35966662,-2.7017856,-0.11552048,-0.15709198,0.27257967,-0.11406521,-0.38595608,0.04929506,-0.387444,0.60965043,0.2618731,0.47172028,-0.52203196,0.52867967,0.38146684,-0.25734454,-0.051537436,-0.6982361,-0.16972148,-0.15396859,0.3628066,0.009448878,-0.20107542,-0.06411668,0.09771901,0.5161436,-0.24648093,0.11820569,0.25224653,0.21786237,-0.17387508,0.33732802,0.22238572,0.507252,-0.30853006,-0.15454046,0.33895403,-0.36053377,0.1746575,-0.030286659,0.21324413,0.32057995,-0.4972097,-0.81580776,-0.5018007,-0.25743753,1.1982133,-0.23803948,-0.4164396,0.18055226,-0.1457318,-0.37539697,-0.059124026,0.2790354,-0.21948242,0.080651276,-0.6917431,0.11493899,-0.2513102,0.28801855,-0.14643833,0.04130837,-0.45649877,0.37085006,-0.21411227,0.52492964,0.41901565,0.3087874,-0.38458303,-0.42399073,0.017727364,1.2247149,0.48352218,0.06636109,-0.26593798,-0.09227978,-0.21677658,-0.089440785,0.25262806,0.42816567,0.9537549,-0.007555557,0.25384405,0.2944176,-0.14659746,-0.032891933,-0.06506974,-0.38453588,-0.05577619,-0.04159264,0.74275464,0.35633025,0.13023318,0.7005711,0.044986725,0.303129,-0.3785047,-0.45173195,0.36136872,0.6591631,-0.2646756,-0.50077564,0.7416239,0.54424804,-0.11523663,0.46204165,-0.6595031,-0.4926358,0.33090404,-0.17106523,-0.28772092,0.2676664,-0.4468228,0.1509596,-0.958971,0.3494497,-0.36613157,-0.83689225,-0.49674925,-0.21945561,-3.5472908,0.16532029,-0.2936898,-0.0737216,-0.017375618,-0.108818114,0.33923694,-0.41635087,-0.48552987,-0.02206544,0.17907265,0.75155896,-0.009238473,0.05813033,-0.18703648,-0.2671022,-0.21881844,0.29686132,0.23498929,0.025414307,-0.19459009,-0.42684358,0.058755483,-0.36414847,-0.4223626,0.031226078,-0.52687174,-0.4277072,-0.11815642,-0.42352384,-0.43305498,0.717794,-0.40271068,0.09677559,-0.35179785,-0.06392713,0.07588712,0.3294256,0.17272642,0.20779242,-0.028683273,-0.117248,0.15579839,-0.37876898,0.14186232,0.011407788,0.31731793,0.36485547,-0.19367285,0.1088186,0.4530169,0.46431333,0.09918112,0.8677698,0.30601472,-0.1107691,0.27268323,-0.21932779,-0.16948883,-0.63935727,-0.32195792,-0.062386844,-0.48758644,-0.39949465,-0.16327386,-0.22631283,-0.7924163,0.6422185,-0.0077664256,0.16232207,-0.20543323,0.656375,0.3086783,0.051449332,-0.19285192,-0.0022225103,-0.20053622,-0.19162989,-0.20427176,-0.88214797,-0.4557334,-0.09635444,1.212279,-0.15085149,0.042698495,0.08273102,0.026418865,-0.018558834,0.23344043,0.18959199,0.22739315,0.39175707,-0.06836914,-0.59533113,0.45352724,-0.43804544,-0.20447949,-0.57082015,-0.015558756,0.803336,-0.65938044,0.23505116,0.6281241,0.20950942,-0.07352698,-0.55765903,0.1542162,0.061703924,-0.26693672,0.51626873,0.29136583,-0.91113293,0.6896113,0.20125309,-0.14585736,-0.56740695,0.589547,0.05946412,-0.25604722,0.04722819,0.43298766,0.015757935,0.028845906,-0.1282758,0.19104151,-0.42071941,0.27648604,0.22236952,-0.02658186,0.42891958,-0.35052446,-0.19797993,-0.51823086,-0.08359504,-0.56291336,-0.2342415,0.033711016,-0.09878214,0.07632666,0.3891748,-0.25883552,0.4918876,-0.34723637,0.13320753,-0.16934405,-0.37319332,0.5922213,0.59391946,0.19306199,-0.27504024,0.7376091,0.082079925,-0.059537154,-0.4034443,0.10625375,0.5837164,-0.14022301,0.4772327,-0.0031439534,-0.090334974,0.4399652,0.6691317,0.27463788,0.4180588,0.18474486,-0.04075406,0.025900874,0.04993971,0.10353215,0.13600247,-0.21154268,-0.17243113,-0.045089044,0.16562581,0.5679745,0.077348016,0.5443297,-0.17289785,-0.07469742,0.119123034,0.07535007,-0.15794322,-1.0225006,0.5550822,0.1607937,0.5291304,0.42072344,0.12431472,0.091178976,0.32430997,-0.34012467,0.06445082,0.20436606,0.26920062,-0.29160944,0.7428111,-0.7834032,0.62602985,-0.15876476,0.060874958,-0.061555814,-0.31589535,0.57889044,1.0153884,-0.03766244,0.22820666,-0.029650133,-0.2618768,0.120626375,-0.19768672,0.12796697,-0.36828265,-0.090389885,0.8627687,0.283959,0.44517747,-0.069781,-0.056206953,0.33229074,-0.12990752,0.10325552,-0.0815859,0.23998697,-0.33505538,-0.43674034,-0.40423623,0.5166549,0.11735994,0.048896134,0.20812489,-0.09888454,0.28519437,0.012529945,0.079090714,-0.066432804,-0.3414953,0.20526853,-0.3307655,-0.49892792,0.16402899,-0.6418076,0.24651964,0.20886387,0.112866625,-0.37998995,0.12210937,0.34166327,0.5710348,-0.08539772,-0.256209,0.023083882,0.093321875,0.21222804,-0.2599804,-0.1912287,-0.25693712,0.28916788,-0.8873935,0.3735314,-0.37293047,-0.4135233,0.12078752,-0.09419562,-0.05656067,0.3029153,-0.042793963,-0.17250998,0.27433887,-0.10160502,-0.14633033,-0.36872667,-0.13094105,0.17918698,0.07423817,-0.074652515,0.0019197613,-0.014504318,-0.090518065,0.24440329,0.027103782,0.20603988,0.33736032,0.21357475,-0.49664512,-0.115562476,0.03925011,0.55369246,-0.16917661,0.080272004,-0.3998099,-0.39092237,-0.14961436,0.28079405,-0.16293696,0.3676522,-0.010009144,-0.30490535,1.0101913,-0.08272944,1.1118585,0.1002865,-0.44941607,-0.023434231,0.63236034,-0.0025518963,-0.12156408,-0.1402528,1.1354771,0.50302535,-0.13815083,-0.20496882,-0.47929478,-0.045102052,0.17840101,-0.21990278,-0.5321515,-0.11269627,-0.46963024,-0.09968337,0.20789555,0.2730934,0.042781178,-0.08970194,0.035388507,0.4691989,0.026720962,0.20709644,-0.58089125,0.09070015,0.33544657,0.18508264,-0.24356246,0.0509338,-0.4580718,0.22107159,-0.7226986,0.08564918,-0.16340633,0.0863262,0.05909692,-0.28144982,0.33214813,0.13048737,0.2108858,-0.1704794,-0.17711045,-0.090845644,0.34043702,0.11396334,0.084333725,0.8445224,-0.274369,0.15344891,-0.039638035,0.3751492,1.2834046,-0.12447625,-0.2163793,0.1694196,-0.3414637,-0.8576661,0.2080609,-0.45170334,0.09068276,-0.040291555,-0.59630996,-0.40329698,0.22390537,0.26849762,0.037489634,0.19008161,-0.42334023,-0.19602333,0.069489725,-0.31829324,-0.28117657,-0.36196628,0.08730099,0.6133456,-0.15411393,-0.21329428,-0.019985994,0.533815,-0.17566426,-0.5334525,0.15141816,-0.2901228,0.29245,0.0076820618,-0.18618011,0.0996437,0.047674365,-0.38380584,0.12534033,0.5201963,-0.21458681,0.061638184,-0.18899487,-0.020229409,0.5964491,-0.31699768,-0.016812911,-0.60015285,-0.65659696,-0.62438303,-0.36608785,0.36151853,0.12022022,0.12300454,-0.4935748,-0.036495592,-0.06483635,-0.037107725,-0.0953406,-0.29777876,0.31601068,0.14152597,0.22544707,-0.09335906,-0.793861,0.08802002,0.013168929,-0.24387717,-0.40594664,0.60114765,-0.17806573,0.6231526,0.19676249,0.10520792,0.35379335,-0.64471626,0.2634212,-0.16532663,-0.2054522,-0.8024992,-0.064486034 -902,0.43566558,-0.2431108,-0.39669093,-0.22390749,-0.45980427,0.092998825,-0.35254145,0.118964836,0.21514018,-0.43564096,-0.34222063,-0.036465533,0.11345542,0.1838386,-0.05603278,-0.44699574,-0.14081314,0.19557603,-0.819011,0.6653328,-0.5586863,0.25393316,0.24340357,0.4327942,0.21919307,0.20508452,0.2703716,-0.046835575,-0.24091859,-0.095792055,-0.13637975,0.3590722,-0.6295545,0.13082467,-0.43167534,-0.4550708,-0.043471113,-0.47841582,-0.2605839,-0.7492135,0.1676921,-1.1596655,0.6422404,-0.050910536,-0.15292536,-0.02084407,0.4250751,0.37996146,-0.4111732,0.18395089,0.2649197,-0.37704363,-0.3347527,-0.3902034,-0.07465574,-0.45007583,-0.45315665,-0.16644545,-0.4724558,-0.17580418,-0.21398582,0.30373,-0.25331786,-0.0006669124,-0.17580375,0.21670693,-0.42726845,0.13664478,0.3237765,-0.14752005,0.13202222,-0.6198768,-0.10929668,-0.20173556,0.44466692,-0.25145537,-0.31038114,0.41247287,0.4316377,0.5877083,0.27183646,-0.37963027,-0.19842218,-0.13544334,0.097359896,0.3480693,-0.12323896,-0.24889706,-0.2708766,-0.05750541,0.7119198,0.509861,0.09361245,-0.19089988,-0.017306866,-0.10698928,-0.08434423,0.5151968,0.52975184,-0.27593726,-0.27704614,0.29263318,0.5887203,0.2810784,-0.25530714,0.084735356,0.031195465,-0.54981196,-0.13811143,0.32443807,-0.12818713,0.5659465,-0.14808486,0.10712366,0.92138034,-0.21928936,0.14434077,-0.04867076,0.059310492,-0.24437799,-0.2759096,-0.29842803,0.31356248,-0.63420856,0.10096862,-0.33163413,0.58496666,0.08392895,-0.4944671,0.28928986,-0.599304,0.22957537,-0.025543002,0.66020423,0.8466493,0.5000788,0.39265746,0.85886323,-0.18992944,0.10970647,-0.11643016,-0.23965602,0.057607923,-0.38394526,0.20957702,-0.53768337,0.23427357,-0.24778228,0.20604032,0.0026280223,0.53693104,-0.5347973,-0.2488018,0.27840036,0.6177046,-0.30611742,-0.033186376,0.75667167,0.924161,1.14076,0.15963207,1.4743347,0.40308937,-0.23410884,-0.1313304,-0.061979108,-0.7567922,0.14599438,0.33751306,-0.2940789,0.28922,0.023120228,0.005034588,0.26217172,-0.56783897,-0.1027944,-0.10783191,0.4205888,0.10655069,0.023827774,-0.45357513,-0.11763995,0.05774734,-0.10354454,0.27881375,0.15833633,-0.24217448,0.4531754,0.09860848,1.1861306,-0.21875216,-0.03149869,0.15132459,0.47987857,0.27511224,-0.11130068,0.11616118,0.34929508,0.36387062,-0.1677825,-0.58326244,0.15532354,-0.33405325,-0.4483419,-0.24152726,-0.3733063,-0.108818136,0.055276886,-0.25113994,-0.27142817,-0.04800636,-0.289452,0.39648777,-2.4514127,-0.36674196,-0.23703827,0.3082659,-0.31498134,-0.13656737,-0.22499725,-0.49445602,0.3871902,0.124228954,0.48201656,-0.7220487,0.41905484,0.5613347,-0.7204774,-0.23138943,-0.83048606,-0.19060951,-0.03623716,0.45104715,-0.0015577237,-0.3073183,-0.011565459,0.10986592,0.5927744,0.030016867,0.16956252,0.6248848,0.5645614,0.1736474,0.5806369,0.07099282,0.55881554,-0.45057216,-0.2886339,0.5276869,-0.30962875,0.42006597,-0.04990573,0.0009841959,0.8911823,-0.5059131,-0.8610723,-0.6370356,-0.34090438,1.0106465,-0.42336842,-0.59751534,-0.07100798,-0.25106937,-0.00010727246,0.10130043,0.6305617,-0.064987056,0.08463143,-0.81341225,-0.11590746,0.035212055,0.30189267,0.0062321844,0.104236,-0.3205916,0.74215597,-0.118029244,0.5463038,0.2347285,0.2499889,-0.3375871,-0.32868093,0.0909468,0.9413422,0.5391313,0.0038730581,-0.21824466,-0.4007825,-0.06659089,-0.37564963,0.14788987,0.5198729,0.6327056,-0.19379419,0.2795941,0.41677237,-0.081542745,-0.06330714,-0.26955014,-0.19862694,-0.22645426,0.1400946,0.5809882,0.7895761,-0.095396556,0.4328806,-0.19777231,0.22809115,-0.04274989,-0.6920397,0.6379351,0.7699097,-0.23344222,-0.017560558,0.6159913,0.42751697,-0.3949151,0.57684153,-0.90611637,-0.4273087,0.6296104,-0.0526117,-0.39808705,0.20903036,-0.36978674,0.33076075,-0.7736556,0.30640805,-0.3356851,-0.18756254,-0.7436393,-0.19597177,-2.1044037,0.19675829,-0.1538683,0.018494058,-0.2935084,-0.30935088,0.27354452,-0.5446607,-0.71310276,0.23723075,0.24395518,0.6017975,-0.11490227,0.20267348,-0.3054416,-0.26945078,-0.16875926,0.085951716,0.1803902,0.37581077,-0.34275827,-0.49404076,0.14119108,0.039371595,-0.42536557,0.024480926,-0.6642631,-0.5235519,-0.10860471,-0.457544,-0.12406889,0.5380712,-0.42026997,-0.08975906,-0.29541877,0.09600224,-0.17327504,0.22176416,0.23968604,0.25956756,0.16103347,-0.010827907,0.016837064,-0.3151695,0.43653807,0.07394389,0.07828307,0.19298248,-0.18241237,0.15919027,0.32900327,0.6502809,-0.22224118,1.0195796,0.36918923,-0.07854999,0.20427844,-0.19722632,-0.37770388,-0.6372031,-0.28919408,-0.11803947,-0.48655555,-0.4169362,0.11768116,-0.23853773,-0.9241276,0.80356234,0.03254377,0.35401735,-0.121213,0.36629993,0.40319303,-0.25901538,-0.04435229,-0.128684,-0.17004925,-0.6380542,-0.45667562,-0.6983277,-0.539675,-0.06941121,0.9359146,-0.28638372,-0.07715271,0.19557902,-0.25450075,0.051640145,0.19822183,-0.03721826,0.21104045,0.83168894,0.11921004,-0.68664944,0.32471904,0.10886813,-0.06002748,-0.45322078,0.28353357,0.7344115,-0.7166327,0.5198799,0.4703152,-0.0003204445,-0.19373296,-0.71521163,-0.29558876,-0.08801436,-0.30364063,0.42162478,0.17470023,-0.7682941,0.624856,0.24312331,-0.48740903,-0.79632694,0.43252233,0.015820106,-0.17125796,0.037252314,0.38088715,0.14109057,-0.10774895,-0.2190343,0.2146412,-0.4003062,0.44228745,0.13265485,-0.22447321,0.3735512,-0.2818072,-0.46072057,-0.7257097,0.14895684,-0.5476604,-0.41191956,0.3956498,-0.2103268,-0.14483525,0.25935715,0.23954654,0.3795393,-0.29285592,0.082652345,-0.13896374,-0.3378886,0.18706447,0.5015228,0.37325853,-0.41216984,0.65842783,0.2005733,-0.227952,0.049915593,0.017573027,0.26138923,0.063110195,0.33517262,-0.07842552,-0.10357942,0.34791216,0.7693451,0.1392772,0.34688404,0.08159067,-0.04620591,0.44818163,0.1417858,0.23877643,-0.2210308,-0.4957391,0.00086874166,-0.04305507,0.118978456,0.41551888,0.35404977,0.45482534,0.076332375,-0.015429346,0.01021534,-0.00275867,-0.11135582,-1.4716724,0.17823535,0.23194082,1.0134984,0.353704,-0.09788094,-0.017795514,0.7417725,-0.38000074,-0.07750996,0.47338971,-0.0179691,-0.39295822,0.7375731,-0.48209122,0.3318263,-0.22992416,0.016833926,-0.014744214,0.26171538,0.32636452,0.8459311,-0.326109,0.076360434,-0.13958177,-0.16987874,0.13303424,-0.3088073,0.026466783,-0.32905072,-0.46252352,0.84992474,0.2896606,0.5195598,-0.3278771,0.005958991,0.008739058,-0.4174601,0.35564035,0.077428095,0.057292573,0.019550657,-0.46154568,0.006172792,0.6104594,-0.0018140514,0.11000768,-0.10068093,-0.34290615,0.04875196,-0.14098077,0.09130122,-0.08843788,-0.8803481,-0.22206113,-0.32733917,-0.49780864,0.37359306,-0.21625061,0.050095674,0.3021495,-0.15502222,-0.012252049,0.21621838,0.13074799,0.8917405,0.009048632,-0.27992752,-0.213296,0.098782524,0.3498949,-0.2372755,0.27592108,-0.23659866,0.15095451,-0.6453093,0.725491,-0.211879,-0.36129892,0.25777498,-0.29394048,-0.13368812,0.47504744,-0.108819254,-0.105262056,0.20738854,-0.27755424,-0.48251858,-0.086605765,-0.32100648,0.19419065,0.23345663,-0.009864855,-0.2088107,-0.24798161,-0.180607,0.54181665,0.08533212,0.3416269,0.30901316,0.012108758,-0.35860077,0.20737258,0.2081919,0.5728742,0.002740526,-0.114573866,-0.37093106,-0.32954985,-0.39727554,0.49814066,-0.13902913,0.11756849,-0.040292837,-0.41885886,1.1223243,-0.12613389,1.0878847,0.14446236,-0.45454183,-0.008940725,0.61400473,-0.22751638,0.009695862,-0.31187984,0.81961197,0.5500986,0.111695684,0.054496113,-0.48296234,-0.016907986,0.3759867,-0.3232231,-0.07851331,0.011163687,-0.49699333,-0.483365,0.20091729,0.24092038,-0.00039726097,-0.23048376,0.13354205,0.2729936,0.19347195,0.5088606,-0.7327109,-0.38345852,0.19699098,0.22109279,-0.2331859,0.123076715,-0.34335652,0.39012605,-0.7076261,0.03455559,-0.47297812,0.13753779,-0.1293108,-0.3585243,0.13385324,-0.04107511,0.50326276,-0.3809101,-0.36297086,-0.04809644,0.40647826,-0.016782364,0.29461068,0.5832868,-0.29181883,0.106226996,0.15403867,0.5275935,1.390788,-0.45605093,0.07331131,0.20684896,-0.42579275,-0.5601738,0.5979361,-0.4623101,0.023693789,0.009077754,-0.5977846,-0.44911024,0.16214797,0.16081998,0.24405782,-0.011156738,-0.64980835,-0.1055286,0.338304,-0.16591737,-0.13825972,-0.19429536,0.17685065,0.667904,-0.124492936,-0.3023395,0.21232468,0.3495374,-0.29828224,-0.4725744,-0.02559828,-0.34773844,0.3109675,0.09603559,-0.21091647,-0.032225464,0.14332604,-0.5725234,-0.0040290356,0.22017032,-0.3834424,-0.062470004,-0.33702984,0.18227917,0.8966802,-0.18430549,-0.062089674,-0.68562496,-0.4723083,-0.7978726,-0.27090833,0.045325447,0.2001745,0.034689996,-0.43440205,0.07904007,-0.16265737,-0.22283827,0.07180546,-0.6110048,0.44026098,0.25809368,0.46654847,-0.33961102,-0.8222202,0.089468814,-0.04561961,-0.04962224,-0.44131476,0.6061138,-0.00044635136,0.8460493,0.12779206,-0.13857044,-0.029879777,-0.5027419,0.19212158,-0.35642478,-0.056956165,-0.9003493,0.05068251 -903,0.52933306,-0.1416482,-0.53106964,-0.091046385,-0.13519487,0.013822055,-0.049563143,0.66676384,0.24945973,-0.5318075,-0.09349027,-0.29402196,0.1867711,0.53133196,-0.0816975,-0.656356,-0.042125337,0.20783871,-0.43007058,0.6371963,-0.3845668,0.3316952,0.035108328,0.41088942,0.25886866,0.34677616,0.03479685,-0.12992407,-0.32713282,0.101987325,-0.124865174,0.24769786,-0.65699476,0.03256735,-0.011283178,-0.36081696,-0.07081788,-0.37251604,-0.47168154,-0.62394226,0.34361818,-0.7885994,0.57103306,-0.038456276,-0.14237235,0.25359666,0.035791747,0.3333182,-0.3118815,-0.011921534,0.037005875,-0.005196617,-0.0049652066,-0.29231045,-0.407637,-0.6571658,-0.6009939,-0.027305167,-0.37067434,-0.22469807,-0.37117746,0.06534473,-0.3441496,-0.12281246,-0.05167071,0.39471644,-0.38565907,0.2591293,0.18951271,-0.028085778,0.31796265,-0.43721518,-0.28404433,-0.19219758,0.20394462,-0.27031514,-0.14024353,0.33005828,0.415848,0.36237377,-0.12221313,-0.0437114,-0.32523096,0.072298564,0.10501984,0.47071588,-0.31528118,-0.67067516,0.008676311,0.037227135,0.13145383,0.26701605,0.3467707,-0.2745766,-0.09135124,0.06578268,-0.32653058,0.46457973,0.4197709,-0.34447187,-0.4766709,0.39679688,0.3724388,0.11563527,-0.23487093,-0.041130725,-0.038808957,-0.48333457,-0.11024182,0.21199414,-0.21555567,0.57030004,-0.048235793,0.11673581,0.6829072,-0.26463622,-0.0070820334,0.020132972,0.04874653,-0.01927639,-0.27424273,-0.19427289,0.14081591,-0.3695877,0.09537632,-0.18075055,0.7837261,0.30150884,-0.81765735,0.42685163,-0.56786793,0.14351556,-0.10170877,0.39992332,0.6940629,0.40626925,0.16040061,0.6151914,-0.4982077,0.09550074,-0.043146227,-0.45311612,0.16077791,-0.16739868,-0.12897588,-0.56226736,-0.051672652,0.03529165,-0.25579002,0.1897309,0.44824404,-0.6152469,-0.20537789,0.12482806,1.0085437,-0.34651348,-0.23398592,0.74040693,0.9141957,0.73239505,0.033663385,1.3027552,0.30536312,-0.26350817,0.45545945,-0.5104979,-0.7556063,0.26351258,0.260686,-0.7091262,0.4144282,0.12755929,-0.1055632,0.121606275,-0.102812916,-0.0007316883,-0.0849356,0.1285648,0.00779615,-0.24948655,-0.35591257,-0.34556538,-0.25582406,-0.15278961,0.1790861,0.24140635,-0.28292996,0.29324052,0.028320324,1.8267039,-0.009983237,0.10107463,-0.080897935,0.6080985,0.27611503,-0.13871136,-0.11830138,0.50048196,0.43891463,0.29580086,-0.5992062,0.19564845,-0.3117084,-0.6140198,-0.12213487,-0.4450242,0.10784142,-0.0646065,-0.4546122,-0.083756156,-0.15336385,-0.28413457,0.5170317,-2.6359982,-0.2548262,-0.12863399,0.4334394,-0.2892819,-0.35299352,-0.18191454,-0.4211885,0.33055857,0.20508875,0.5163518,-0.7502965,0.3020857,0.28138983,-0.4205845,-0.23379542,-0.6160257,-0.0369593,-0.006668138,0.3710887,-0.24395452,0.24034742,0.26482645,0.1883151,0.40956226,-0.13267806,0.07557161,0.26429555,0.45792294,0.16237989,0.42676976,-0.12651986,0.6626581,-0.21612193,-0.23493136,0.14085633,-0.3472262,0.16511801,0.14477614,0.12939838,0.29128462,-0.4534387,-0.9759511,-0.48404026,-0.18594867,1.0223291,-0.33208498,-0.36440402,0.2923095,-0.25869334,-0.14725758,-0.14329942,0.53150445,0.005891392,-0.024027197,-0.7625106,0.08586796,-0.03506107,0.14682844,0.0004317004,0.07816002,-0.26118028,0.45030624,0.009824538,0.5162426,0.16072758,0.20090191,-0.40421754,-0.54582953,0.1338285,1.0275868,0.069342904,0.12622732,-0.073907696,-0.34826565,-0.38939416,-0.026300857,0.14170863,0.52895105,0.668787,-0.04709872,0.09372151,0.32080847,0.025703214,0.20495926,-0.10640126,-0.35792395,-0.13302289,-0.12964892,0.44795233,0.55318594,-0.40828106,0.78193134,-0.2295991,0.2629458,-0.12200082,-0.48419872,0.6487986,1.143904,-0.2680206,-0.19679686,0.5694352,0.3431989,-0.52909744,0.43287876,-0.4570681,-0.0996005,0.63923085,-0.15767524,-0.22111201,0.3640417,-0.1941043,-0.078828536,-0.9266007,0.3635529,-0.29464686,-0.47096184,-0.22391686,0.07096027,-3.8960302,0.1498321,-0.29485786,-0.31646186,-0.14961056,-0.056418963,0.1786937,-0.62940055,-0.49787605,0.21452448,0.16838983,0.70292366,-0.030693272,0.14254496,-0.2985398,-0.24579495,-0.2390797,0.11372425,0.16142686,0.37715212,-0.029820463,-0.475246,-0.16709223,-0.07201558,-0.47921765,0.16802791,-0.69285274,-0.42856294,-0.13077448,-0.7593756,-0.2723462,0.7779985,-0.36861122,-0.010657044,-0.23303369,-0.013375715,-0.18268088,0.2392656,0.009946619,0.128176,0.0879519,-0.031306837,0.12107145,-0.24855271,0.1838993,0.08333748,0.43897894,0.17441337,-0.16391708,0.08251421,0.57168865,0.6702388,-0.0028863412,0.7789014,0.6073829,-0.12189192,0.37133533,-0.3395471,0.022082053,-0.54945576,-0.4835976,-0.24294113,-0.29507694,-0.59768057,-0.18965171,-0.28632113,-0.72205997,0.58663464,-0.14615804,0.3580918,-0.06619202,0.30286005,0.5282908,-0.22073999,0.07485521,-0.14185116,-0.26259953,-0.64494324,-0.19094199,-0.54579204,-0.39722353,0.39511025,0.78435606,-0.19820179,0.03293274,-0.25935704,-0.28973705,-0.038169548,0.19197804,0.028110322,0.24222206,0.39083067,-0.28286383,-0.6643223,0.4619415,-0.23630343,-0.1851218,-0.6107451,0.28323135,0.5817655,-0.6317348,0.76314694,0.18237187,-0.069714636,-0.1693317,-0.36624634,-0.32050043,0.12631838,-0.11448013,0.23445328,0.09888576,-0.93705434,0.30622506,0.41975874,-0.38083073,-0.53577125,0.7648411,0.0048627947,-0.28081694,-0.105293974,0.27756622,0.16856946,0.05228152,-0.34828627,0.2624976,-0.5240016,0.23848622,0.280079,-0.10003304,0.20830916,-0.03727205,0.016513119,-0.7960742,0.11798501,-0.4501676,-0.20487414,0.34456795,0.20323507,0.15194973,0.08294109,0.061493047,0.27836525,-0.33599937,0.087010585,0.0428245,-0.2094342,0.40566108,0.3736624,0.43965337,-0.4736431,0.47413686,-0.026444813,-0.3068179,0.2756922,0.24541026,0.5326336,0.28818116,0.2737268,0.27639848,-0.3754881,0.31797716,0.69733745,0.20252196,0.49536562,0.13005875,-0.0904965,0.2932512,0.1605477,0.07833343,0.15339755,-0.367357,-0.0738357,-0.061373755,0.24169856,0.56070966,0.15575226,0.26169956,-0.14194092,-0.44011614,-0.03572618,0.23500364,0.13572666,-1.2261208,0.38473347,0.21023147,0.70700115,0.35939312,0.032347776,-0.13366447,0.5542258,-0.072302744,0.14098863,0.40524918,-0.06606483,-0.6088892,0.48799583,-0.6895231,0.40633774,0.0006258442,-0.04383209,0.1700715,0.11173526,0.3086719,1.0538176,-0.11464803,0.030253913,0.09571551,-0.26565057,0.106784195,-0.42852995,0.11378842,-0.57249016,-0.27767578,0.59822965,0.39871693,0.24068475,-0.23473631,0.04395277,0.1020868,-0.15190437,0.10174997,0.043543916,0.21548778,0.01536936,-0.70088035,-0.26355,0.61239237,-0.13987309,0.13882264,0.10950499,-0.1501722,0.3723162,-0.2983708,-0.09198051,0.06836519,-0.7408849,-0.061809078,-0.27935582,-0.38363,0.49366787,-0.17753047,0.38085926,0.15250562,0.020682981,-0.36847666,0.52079195,0.20088822,0.70276845,-0.14129485,-0.2739228,-0.4639772,0.1943282,0.24954136,-0.2140309,0.05080668,-0.21171682,-0.18195912,-0.57283974,0.403918,0.19320315,-0.18491855,-0.08187572,-0.096114404,0.1442312,0.524983,-0.06796372,-0.0797006,-0.13929422,-0.15011314,-0.24410091,-0.19329461,-0.026434751,0.27647105,0.26748732,-0.20203355,-0.050822716,-0.013987541,0.09710041,0.30494773,-0.091165766,0.46823502,0.3412894,0.39700383,0.07997312,-0.25258183,0.40098888,0.411384,0.112718455,-0.12733212,-0.26433548,-0.3148726,-0.37799314,-0.13224968,-0.1351977,0.4420734,0.08090015,-0.33238217,0.7136665,0.04915033,1.1784856,-0.02444624,-0.37541956,0.010735732,0.34626624,0.010935879,-0.07665756,-0.31352285,0.99246174,0.64468354,0.13045299,-0.16778898,-0.24150452,-0.2464576,0.17747028,-0.32683218,-0.33184546,0.09739256,-0.55609876,-0.27218392,0.23529068,0.14172693,0.30863872,-0.028286012,0.31503537,0.3116255,0.030525547,0.18336064,-0.4913936,-0.045246575,0.26392344,0.4901516,0.0659703,0.20857008,-0.44872564,0.39746433,-0.47819936,0.13953243,-0.18307152,0.21488787,-0.1373623,-0.4839548,0.2394478,0.13384336,0.43140417,-0.3127248,-0.36166483,-0.31977382,0.5587156,0.1049947,0.028758626,0.6148423,-0.2666024,0.044270165,0.054089885,0.5167029,1.07854,-0.15353003,-0.16868089,0.43793187,-0.5690318,-0.8383777,0.39129046,-0.10870823,0.35018173,-0.13638419,-0.086285844,-0.56029004,0.31278288,0.11505081,-0.07033083,-0.00037160746,-0.44386667,-0.3530666,0.21507232,-0.34134722,-0.31607148,-0.3004515,0.28792495,0.68398416,-0.3917518,-0.35277116,0.17752916,0.17549832,-0.112731986,-0.44625917,-0.2442492,-0.39678398,0.30114788,-0.0006847198,-0.38063306,-0.1552468,-0.045093272,-0.30010983,0.2671684,0.09690123,-0.38319686,0.22287062,-0.18915822,-0.31244186,0.90952015,-0.22635767,0.040596724,-0.57509464,-0.44045755,-0.7710918,-0.5700233,0.5084023,0.059992455,-0.07382962,-0.6150194,0.05629986,0.009239467,-0.20720442,-0.058966205,-0.3810209,0.36520463,0.04220206,0.24764313,-0.11965583,-0.9148398,0.16642621,0.23391843,-0.15270866,-0.919814,0.5478264,-0.2331174,1.0121592,0.018034546,0.18301322,0.56445,-0.40265766,-0.3647575,-0.2471514,-0.14981729,-0.6080591,0.15381703 -904,0.6327385,-0.58186966,-0.54289645,-0.19913769,-0.116998814,-0.13614665,-0.03265053,0.61175025,0.11631749,-0.52286065,-0.27771482,-0.23877282,0.17185411,0.22529039,-0.23589009,-0.51242834,-0.0819169,0.23918295,-0.35500115,0.6287998,-0.2394116,0.05112137,-0.10197845,0.5192551,0.43033937,0.34561375,0.003910108,0.020890214,-0.25330737,-0.15415023,-0.095325656,0.1722797,-0.70527595,0.07317316,-0.20092975,-0.3842803,-0.027956974,-0.5678448,-0.43781233,-0.7505772,0.10832986,-0.9878782,0.564947,0.15364237,-0.43346235,0.26188165,-0.045254495,0.32876185,-0.42566517,-0.07994388,0.22246055,-0.12048283,-0.03029456,-0.3038199,-0.04087181,-0.54793596,-0.6084818,-0.14109395,-0.32476756,-0.32747298,-0.17209224,0.04820076,-0.32744035,-0.018602436,-0.11034396,0.7393518,-0.613182,0.055374417,0.1335127,-0.0826729,0.40754578,-0.5660148,-0.21687931,-0.23525342,0.13801464,-0.14438845,-0.27434742,0.21236467,0.12492439,0.30729264,-0.061776318,-0.1444169,-0.27893814,0.047383036,0.113830924,0.3488343,-0.17114319,-0.47650605,-0.11472391,-0.10474736,0.12600054,0.3012301,0.36298257,-0.23724361,-0.09963042,0.19689964,-0.1541803,0.41962042,0.51355445,-0.15835305,0.044557337,0.14895684,0.60365015,0.23313765,-0.20137306,-0.07449501,0.034856353,-0.49850035,-0.2766557,0.053347528,-0.3283226,0.9290068,-0.12698902,0.19344664,0.7269037,-0.25971115,0.010051662,0.07712399,0.1604312,-0.15879078,-0.4018794,-0.55609363,0.46702355,-0.3709115,0.20460391,-0.33931527,0.76932806,0.24763368,-0.50478625,0.2400526,-0.6013496,0.18900609,-0.16743493,0.590215,0.4772713,0.542998,0.5557573,0.43939564,-0.44961688,0.13312934,0.21863914,-0.35513887,0.17229104,-0.26496002,-0.0873071,-0.48782063,-0.16048168,-0.1753092,-0.31229603,-0.15533453,0.61207455,-0.54152846,-0.03545654,0.2410778,1.0012611,-0.3076162,0.018899966,0.72293985,1.227159,0.98688334,0.046063587,1.1248139,0.3135142,-0.3384559,0.15298663,-0.027039148,-0.7437987,0.29920667,0.46744567,-0.23197006,0.41136482,0.18680254,-0.18728824,0.506187,-0.5374574,0.1422175,-0.06591877,-0.027791072,0.034329534,-0.17767352,-0.7883639,-0.19738597,-0.24149412,0.0017560233,-0.3821782,0.36941954,-0.25552502,0.38604262,0.05557613,1.812793,-0.025021486,-0.063997254,0.03840315,0.591042,0.06315256,-0.20632796,-0.020074774,0.49437717,0.45421678,0.3648019,-0.5117416,0.21001972,-0.20072564,-0.42287815,-0.26401475,-0.4325485,0.047030553,-0.10353636,-0.5530453,-0.1325679,-0.14182429,-0.0381852,0.21598949,-2.3145177,-0.055228267,-0.25498828,0.60885453,-0.18231887,-0.31460255,0.27576414,-0.48866245,0.21092682,0.3879388,0.51071286,-0.7625462,0.46131992,0.6249058,-0.5569778,0.012638915,-0.6760997,-0.3687533,-0.11522266,0.46553758,-0.11722922,0.13112797,0.18975852,0.29979733,0.56142676,0.040262286,0.23172717,0.24273413,0.47274953,-0.2945307,0.7062821,0.14882009,0.38752472,-0.123545215,-0.11731913,0.21363544,-0.24229355,0.14597268,-0.017135559,0.115283616,0.5287828,-0.52395636,-0.8907324,-0.6032301,-0.09590264,1.0753764,-0.39576122,-0.39082897,0.2914039,-0.4128814,-0.33093038,-0.23748296,0.39136934,-0.13512994,0.04146916,-0.895615,-0.019634973,-0.060101423,0.084269226,0.015615822,-0.0627547,-0.54101396,0.75681823,-0.07143393,0.56609225,0.5297529,0.23279892,-0.19449963,-0.57142234,0.04352279,0.993685,0.4615847,0.09290979,-0.43268117,-0.15563774,-0.24241239,0.18301448,0.12691112,0.48577994,0.851969,-0.22614585,0.22522198,0.36401433,-0.067848824,0.001014211,-0.19508745,-0.38074028,-0.16484803,-0.06534929,0.48845342,0.8553917,-0.19037575,0.48552325,-0.17410123,0.586514,0.025075424,-0.4190176,0.2533624,1.302856,-0.15884128,-0.19915856,0.7913132,0.68354183,-0.52496165,0.5141457,-0.6285595,0.0017820813,0.48037606,-0.1975789,-0.504795,0.44510955,-0.30533898,0.22426048,-0.99170077,0.50312316,-0.11477674,-0.48176992,-0.70790076,-0.2495097,-3.3828013,0.29908422,-0.48410398,-0.37134856,-0.014931072,-0.36079594,0.28174275,-1.0823284,-0.517678,0.25403154,-0.004529235,0.72532743,-0.031986754,0.052854713,-0.35361665,-0.4346213,-0.17775719,0.15691449,0.2584268,0.22983836,-0.18368864,-0.62490976,-0.06185678,-0.016747849,-0.37245008,-0.030907894,-0.65585226,-0.56391865,-0.1778641,-0.65109617,-0.3137045,0.6627716,0.057234243,0.0947712,-0.1346402,-0.054217257,-0.058892503,0.099757,0.19421583,0.38742554,-0.13234176,0.0056248903,0.11834648,-0.28695107,0.053834643,0.13206433,0.5100243,0.051464316,-0.10207903,0.21329886,0.594249,0.5205378,-0.17132916,0.94754845,0.68556696,-0.26147035,0.22022893,-0.13731344,-0.44597006,-0.773652,-0.54044205,0.00011089715,-0.4269678,-0.4065525,0.071699075,-0.38271588,-0.7343664,0.78911644,-0.11318786,0.3313968,-0.018671155,0.27688113,0.7013406,-0.24958615,-0.32522666,0.026756173,-0.16985002,-0.7343131,-0.104063034,-0.8221741,-0.5372912,0.242849,0.8393104,-0.22338496,0.06340032,0.12989502,-0.30652082,0.24784683,0.1705151,-0.16734606,0.019722028,0.6171437,-0.010041849,-0.66931987,0.5488905,-0.025101228,-0.21829389,-0.5236309,0.20471649,0.69243515,-0.74035394,0.74707884,0.3869651,-0.12950474,-0.18604998,-0.6377793,-0.31515282,-0.14685588,-0.09166169,0.53607386,0.34331945,-0.810726,0.19111495,0.27805954,-0.35735872,-0.71813726,0.8270826,-0.19321309,-0.38975012,0.018660514,0.32722792,-0.032991704,-0.025319178,-0.25894374,0.43521512,-0.29238972,0.16444184,0.5430271,-0.1379505,-0.07323183,0.09379785,0.22213699,-0.9574686,0.27521726,-0.52858347,-0.37448347,0.41606483,0.02724389,0.043788828,0.24742633,0.34737456,0.25167274,-0.31075895,0.112318486,-0.044760644,-0.4842704,0.61016536,0.5488212,0.49554205,-0.47999507,0.54806566,0.031651307,-0.09973485,-0.03139571,0.00714094,0.38275796,0.07245247,0.42917702,0.10353823,-0.22428797,0.2116047,0.7053069,0.31213987,0.89363,0.2625907,0.13101472,0.15703364,0.19958873,0.37185314,-0.023397792,-0.7112976,0.2967419,-0.02657504,0.12979928,0.46026945,0.03949146,0.29929313,-0.21714574,-0.32047734,0.113264635,0.28843093,0.2178877,-1.3060037,0.2588789,0.22179207,0.7318345,0.59367585,0.13126408,-0.19241124,0.56723297,-0.22465649,-0.016485013,0.4302933,0.3456309,-0.665107,0.6451567,-0.7029075,0.38659468,0.036409102,0.05639023,-0.16620497,-0.21116619,0.4096505,0.6978991,-0.14384681,-0.021781344,-0.10154574,-0.3051832,0.17713343,-0.69388676,0.0042518754,-0.4966079,-0.37754527,0.6059976,0.6121841,0.4217695,-0.18964724,0.019547137,0.08200333,-0.2822075,0.4273407,0.12732957,-0.09798017,0.09249315,-0.91943353,-0.2687357,0.42399818,-0.4310489,0.036125444,-0.24780846,-0.28104234,0.15350576,-0.12197903,-0.18695645,0.16551228,-0.84016997,-0.06811053,-0.5175765,-0.58025426,0.6023211,0.07976047,0.13714837,0.122168966,0.012558862,-0.1980651,0.17986245,0.06379271,0.9523062,0.12320461,-0.15523142,-0.37095964,0.13029775,0.27903935,-0.1994006,0.23050858,-0.4232416,0.25623143,-0.6023724,0.46707848,0.18258335,-0.5475988,-0.21880794,-0.15244642,-0.011543593,0.5683124,-0.11231577,-0.30126113,-0.17570604,-0.023999594,-0.20245808,-0.37894067,-0.06523058,0.31754598,0.04399422,0.09131189,0.039861474,0.033431336,0.13350427,0.67187905,0.020585256,0.5717203,0.60606533,-0.15418248,-0.30961877,-0.26689816,0.19363494,0.47355548,-0.06603403,-0.23262487,-0.46032503,-0.7636969,-0.3416125,0.018953241,-0.18458614,0.62402445,0.18407029,-0.039360363,1.0251384,-0.10492523,1.3558645,-0.13958901,-0.7330835,0.07901168,0.7116476,0.017061938,-0.057496134,-0.33053428,1.1174945,0.5149824,-0.18224502,-0.27302706,-0.5465218,-0.13476968,0.25512275,-0.13402626,-0.30951774,-0.062020086,-0.7053495,-0.07792606,0.12608136,0.4511941,0.29530457,-0.0729133,0.42769873,0.51135087,-0.0809705,0.35813242,-0.5244367,-0.2422811,0.28054225,-0.008295959,-0.12937674,0.16927713,-0.44805372,0.3591628,-0.44846848,0.08307944,-0.4284407,0.15429941,-0.009949554,-0.47993672,0.20680016,0.028846644,0.45746925,-0.5426056,-0.19282652,-0.3152354,0.5767489,0.10125765,0.17884456,0.6086001,-0.38587245,0.114942096,-0.052536014,0.5645599,1.3507833,-0.24128708,-0.021352334,0.3926945,-0.66036284,-0.83296037,0.32626107,-0.117624424,0.27685767,-0.016071992,-0.37093413,-0.8220696,0.18884693,0.14796957,-0.2823769,0.19481164,-0.6109504,-0.21058828,0.29170325,-0.45202497,-0.1144149,-0.29609632,0.24062118,0.53016025,-0.34766808,-0.29778585,-0.1179067,0.09556469,-0.09942604,-0.20770726,-0.24050131,-0.45744693,0.35745108,0.0028787742,-0.53404087,-0.118354924,-0.24094075,-0.3360941,0.21045755,0.1910983,-0.31730163,0.17123675,-0.21434823,-0.2834813,1.1504956,-0.07359522,-0.13227654,-0.5304638,-0.5617637,-0.8792997,-0.5516652,0.5075474,-0.026900204,0.07376338,-0.66495633,0.182184,-0.0329154,0.0047636684,-0.2104674,-0.35006478,0.4996207,0.2060276,0.58279645,-0.03894459,-0.9000111,0.29687083,0.20653628,-0.27682704,-0.7737019,0.731716,-0.23314372,0.8979114,0.0117712375,0.29307035,0.12169585,-0.43834054,-0.14046727,-0.27326238,-0.37963483,-0.65126747,-0.12838486 -905,0.3814673,0.062906615,-0.51841414,-0.14141974,-0.20062743,-0.02283134,-0.05713276,0.5006672,0.327463,-0.4215233,-0.2985853,-0.10822652,-0.031863328,0.21698533,-0.084245495,-0.71385455,0.058425207,0.20570771,-0.4856322,0.5104383,-0.42644662,0.45188782,-0.049141094,0.34749812,-0.019251855,0.32044685,-0.07586132,-0.2204442,-0.13397726,-0.15118122,-0.2340562,0.3658495,-0.42780846,0.24478434,-0.095954105,-0.28121144,0.02776913,-0.37035692,-0.46531126,-0.75065064,0.34259313,-0.72967273,0.5077722,0.035100803,-0.23913607,0.024426881,0.051228836,0.3883416,-0.12755398,0.022221029,0.060677543,-0.065334804,-0.14640734,-0.2602728,-0.40088606,-0.26881886,-0.4578207,-0.04789236,-0.27316058,-0.09658722,-0.27415365,0.21308938,-0.31424236,0.009775137,-0.15776531,0.5175861,-0.42878163,0.3341697,0.22278121,-0.10639409,0.15736455,-0.5753877,0.010034836,-0.12714781,0.33949506,-0.28402308,-0.27688286,0.3465679,0.271972,0.46003377,0.034476105,-0.21540605,-0.29991052,-0.21184275,0.022367248,0.53114235,-0.2875324,-0.56935537,-0.038794316,0.13091747,0.08315475,0.39723247,-0.06916392,-0.22090465,-0.1332518,-0.03653725,-0.21251263,0.3483836,0.5875179,-0.06443757,-0.38339466,0.38060838,0.44425446,-0.042261302,-0.04334604,0.008138565,-0.034102768,-0.49673468,-0.22162507,0.02677044,-0.23691794,0.41323382,-0.16404067,0.20801279,0.6271719,-0.15110329,-0.16794108,0.1546873,0.041042108,0.12622264,-0.3471362,-0.1628388,0.12323059,-0.49299586,0.2633311,-0.07669612,0.8748921,0.20249547,-0.7382596,0.29336563,-0.55327076,0.07750359,-0.08966594,0.4662657,0.5385692,0.42872557,0.33704,0.691434,-0.39464384,0.1533837,-0.119507775,-0.47338766,-0.14434715,0.084852114,-0.021119293,-0.3822149,0.12429115,0.014008494,-0.22254053,0.22084998,0.27271992,-0.655815,0.008197426,0.009879296,0.90399414,-0.36691713,-0.23918924,0.7790171,0.77232367,0.8159972,-0.02645697,1.2586515,0.22789611,-0.29708257,0.36118263,-0.5217499,-0.759367,0.36444885,0.22468391,-0.37090948,0.09766698,0.07137884,-0.035073,0.1748027,-0.41207308,-0.14324169,-0.2897911,0.3013992,0.13948172,-0.06189337,-0.40842226,-0.2809049,-0.21977735,-0.07189925,0.295634,0.23234934,-0.22846593,0.32904482,-0.018751265,1.4980052,0.05518401,0.059659775,0.12856828,0.4144785,0.25187638,-0.014829709,-0.2235685,0.5037133,0.21875358,-0.03721195,-0.63785934,0.054317575,-0.31336117,-0.28067273,-0.07087641,-0.2733587,-0.024203297,0.027734088,-0.28479493,-0.31135383,-0.2938796,-0.2677673,0.60933787,-2.5900805,-0.16514198,0.034386136,0.48904622,-0.34646577,-0.4069867,-0.16585915,-0.6331471,0.37805086,0.16444565,0.55995214,-0.63753563,0.3721429,0.44251028,-0.54422146,-0.17840211,-0.5714522,-0.004283474,0.10579167,0.14143999,-0.11978546,0.014910304,-0.14527209,-0.25194716,0.4575538,-0.034852352,0.107498884,0.53949845,0.4293211,0.19656219,0.3345985,-0.082529016,0.6563435,-0.28519937,-0.1517621,0.21317345,-0.42509305,0.31288412,-0.18462881,-0.011751785,0.52969897,-0.5768317,-0.7656799,-0.691879,-0.3393697,1.00859,-0.11621543,-0.20893504,0.30350274,-0.3990317,-0.29044485,-0.11107417,0.51955575,-0.094578184,-0.11066547,-0.6736755,-0.0641257,-0.11936991,0.31086123,0.013585732,0.005356408,-0.2656859,0.5750051,-0.24930246,0.34970134,0.112846605,0.16773437,-0.42456877,-0.5747494,-0.03890942,0.8982585,0.3441472,0.24942812,-0.09251615,-0.3096064,-0.36530113,-0.2504881,0.036689974,0.7561526,0.80234826,-0.09597126,-0.049326167,0.3645562,0.05322593,0.06616478,-0.24689649,-0.25224596,-0.19567622,0.03740186,0.47478196,0.34892786,-0.2938852,0.5619406,0.01211588,0.4229357,-0.18514243,-0.3380341,0.3337789,1.0934854,-0.18258436,-0.35066617,0.6299607,0.20569786,-0.27715585,0.41479158,-0.5101647,-0.28496653,0.43393177,-0.2239557,-0.5499004,0.10119363,-0.15874705,0.09640638,-0.7692139,0.3179379,-0.2888351,-0.8111342,-0.42964175,0.06519563,-2.7111914,0.11828233,-0.25596973,-0.13341606,-0.04352277,-0.10282559,-0.19876997,-0.31299752,-0.60327286,0.29189152,0.12340326,0.5660581,-0.21172954,0.22752358,-0.04933874,-0.09223577,-0.421457,0.1741771,0.27648103,0.29378474,-0.04969029,-0.44302055,-0.028415803,0.067998976,-0.48956606,0.31220216,-0.63831073,-0.4251529,-0.12653798,-0.7905748,-0.20354953,0.72051406,-0.46320283,0.026892098,-0.26610672,0.010668452,-0.15523073,0.28325644,-0.07173823,0.19884263,0.07058024,-0.19805798,-0.021490455,-0.22858873,0.463642,-0.0017874837,0.43217924,0.22586188,0.0040343357,0.118956104,0.44332978,0.64149606,0.080515474,0.76825625,0.46590665,-0.094825774,0.32162946,-0.26561007,-0.31363103,-0.38533685,-0.26659173,0.039302807,-0.4606511,-0.32470828,-0.12451018,-0.5212577,-0.7890826,0.35884187,0.10320819,0.018659042,0.07351588,0.33822423,0.5232947,-0.04874015,0.10712286,-0.074251145,-0.07775961,-0.56119007,-0.24352802,-0.48973158,-0.36424506,0.33661225,0.9486768,-0.29004204,0.03888254,-0.14880411,-0.122406214,-0.14688136,0.19705266,-0.053901415,0.24676195,0.48270628,-0.32187927,-0.45912963,0.36382622,-0.0533048,-0.25715032,-0.5594217,0.25037703,0.6447698,-0.781412,0.70020765,0.23810603,-0.025049258,-0.023960825,-0.49015805,-0.36391765,-0.019379687,-0.24805737,0.28361413,0.24148777,-0.644379,0.33508906,0.36878803,-0.16321722,-0.83352405,0.4477803,-0.027129184,-0.4071342,0.0027696078,0.42141885,0.09024009,-0.05842062,-0.25557625,0.104018465,-0.18856548,0.20385228,0.16879252,-0.09680299,0.20139764,-0.35717678,-0.22184673,-0.9198283,0.05070194,-0.56787735,-0.20934187,0.30629966,0.14286293,0.056110676,0.13730717,0.188788,0.43999326,-0.33173588,0.063665375,-0.14613412,-0.30173016,0.29247972,0.34948972,0.4317902,-0.44236463,0.4299034,0.0071934415,-0.09264032,0.036097363,0.1851189,0.51607424,-0.13850345,0.44397575,0.19668,-0.28770158,0.2732774,0.8373651,0.20716517,0.3338761,0.048962116,0.10122771,0.1891165,0.041963197,0.10505768,0.17053328,-0.51017666,-0.1246626,-0.22014776,0.11470766,0.522663,0.32396466,0.22161815,-0.002649807,-0.4026779,-0.11831559,0.25161836,0.031216292,-0.9583773,0.42929128,0.1268314,0.84134746,0.39885888,0.124591365,-0.009446818,0.52147037,0.03941953,0.27978098,0.27462712,-0.18278407,-0.43243223,0.39104718,-0.65305096,0.55093265,0.013819016,-0.0052907295,0.07628837,-0.06772722,0.33092433,1.0643324,-0.13977972,0.017235288,-0.012892737,-0.1639437,0.20463601,-0.4913266,0.00013392247,-0.6700452,-0.308613,0.59324163,0.39066437,0.25410488,-0.05371546,-0.025842201,0.17866684,0.010390452,0.057986658,0.068346694,0.1287579,0.014567022,-0.4980157,-0.25727496,0.6271085,-0.0053845462,0.13510606,0.0812249,0.12177165,0.40649244,-0.1685056,-0.039529048,-0.11928547,-0.65032345,-0.01371314,-0.20755188,-0.29645243,0.19937855,-0.047207475,0.2319029,0.22998068,0.110005125,-0.47268915,0.38831836,0.2620546,0.7529831,-0.0406265,-0.17749152,-0.3687234,0.25470325,0.20143965,-0.24928233,0.17891055,-0.236722,-0.16141978,-0.7040848,0.50119126,-0.026633663,-0.37244767,0.07144504,-0.15930066,-0.059044525,0.4126221,-0.11701722,-0.11020335,0.087766096,-0.24090584,-0.30617076,-0.06353971,-0.16990052,0.180526,0.4469879,-0.11660138,-0.08936819,-0.16333672,-0.20604159,0.46930045,-0.0667374,0.3357945,0.19647385,0.23971604,-0.19570777,-0.12974606,0.1766393,0.61546034,-0.06894694,0.15444763,-0.058964465,-0.28676796,-0.25148982,0.13191582,-0.032198425,0.44154456,0.08016389,-0.36132473,0.6103697,0.08479501,1.0933862,0.045635503,-0.19994357,0.012319551,0.41393483,0.085838884,-0.051219422,-0.32414654,1.099649,0.4773008,-0.043047883,-0.09198561,-0.3523501,0.048685256,0.114555754,-0.07736582,-0.15028879,0.12627168,-0.46845546,-0.36060983,0.2592755,0.19421746,0.15786396,-0.014941573,0.043508057,0.22820646,-0.03871941,0.19347483,-0.47520095,-0.04188371,0.24980766,0.20506321,0.21371382,0.2270411,-0.47737783,0.3879597,-0.45344603,0.12419235,-0.1405654,0.2326157,-0.26025242,-0.32041502,0.2532453,-0.03138622,0.34225732,-0.27662557,-0.3624905,-0.3536,0.516092,0.16212688,0.14090763,0.5554694,-0.14967799,-0.012462282,0.050781514,0.6169723,0.87955374,-0.07316243,0.015830802,0.3569587,-0.37682182,-0.5418834,0.3794271,-0.18291084,-0.13144487,0.046811506,-0.14465627,-0.3955221,0.31139782,0.13687025,0.18525933,0.17313704,-0.5504579,-0.08853948,0.26177335,-0.3402244,-0.19035424,-0.36630514,0.4026903,0.8351524,-0.18603882,-0.188526,0.2375109,0.0013940334,-0.33725706,-0.5885835,-0.0865798,-0.30532214,0.25803515,0.037324097,-0.20906195,-0.2885005,0.041430257,-0.36323068,0.13185307,0.10834748,-0.27690837,0.1304496,-0.23115815,-0.24448362,0.7821875,-0.21313286,0.06781529,-0.5016743,-0.30663437,-0.7665118,-0.2867104,0.394542,0.20852995,-0.015271342,-0.7183911,-0.20212331,0.017147716,-0.27459285,-0.03083593,-0.3323831,0.4239136,0.13239841,0.3088494,-0.17460635,-1.0614101,0.2007213,0.2011453,-0.2718046,-0.6472664,0.37753862,-0.053395733,0.89131206,0.07136813,0.04597638,0.44439596,-0.37745878,-0.08294874,-0.22603191,-0.102572985,-0.75197375,0.032000616 -906,0.37338868,-0.20687266,-0.43836305,-0.21011592,-0.46394494,-0.014422526,-0.42083475,0.16341294,0.32992527,-0.31740236,-0.22133927,-0.0034292303,-0.09009097,0.10813645,-0.17619115,-0.40451518,-0.10984359,0.10535882,-0.87414837,0.5850904,-0.5164202,0.3365513,0.16823316,0.504603,0.08857235,0.21477777,0.36755773,0.032844804,0.08115756,-0.40715873,0.00960809,-0.07875603,-0.7898539,0.2778835,-0.34686413,-0.41642675,-0.025967963,-0.70399386,-0.12392956,-0.85117555,0.32592916,-0.839323,0.60458857,-0.08701346,-0.23523076,-0.1828606,0.6754113,0.19123626,-0.09753748,-0.17032997,0.25203595,-0.33153844,-0.25143102,-0.2589518,0.13960983,-0.45139253,-0.52890337,-0.10113583,-0.52096975,-0.38854074,-0.24671936,0.35615888,-0.37711096,0.09362335,-0.15844579,0.7643867,-0.39645264,0.17386596,0.16736372,-0.24489321,0.19338417,-0.7563715,-0.13192378,-0.069733925,0.5746798,0.14715575,-0.15120932,0.44708595,0.27988887,0.38994554,0.19667141,-0.3853804,-0.24258143,0.033257376,-0.24559145,0.48033538,-0.15812615,-0.2339474,-0.117375135,-0.022391418,0.5699914,0.40488735,0.05311429,-0.049416464,0.10645783,-0.19819565,-0.19986065,0.79222804,0.52686125,-0.30638584,-0.08595332,0.16436231,0.33078894,0.4872358,-0.22238445,-0.078931354,-0.06036957,-0.69852734,-0.2438341,0.077410586,-0.09100965,0.3734981,-0.13050938,0.24091448,0.672786,0.027595945,-0.07666256,0.23081887,0.021648759,0.12161431,-0.14255372,-0.4263982,0.38456142,-0.58646876,0.089957945,-0.44159886,0.72925067,-0.14951253,-0.7039206,0.33929718,-0.61013085,0.15709175,0.14809512,0.5557799,0.91895455,0.745593,0.47499284,0.8735222,-0.043227863,0.025777036,-0.037566047,-0.1398703,0.21597524,-0.4265922,0.2894949,-0.3819891,0.02420717,-0.26965377,0.28101394,-0.0011376739,0.5691555,-0.59178036,-0.17110176,0.25336888,0.7734823,-0.106025435,0.10837301,0.747921,1.0446954,1.1089627,0.1472918,1.0095617,-0.032007735,-0.2372144,-0.008780186,0.18677671,-0.8032279,0.25898948,0.344321,0.041643303,0.20045447,-0.06893241,0.00017161667,0.46008906,-0.37890482,-0.19178323,-0.049943898,0.37797156,0.21674085,-0.14638765,-0.42404106,-0.42855784,0.13122503,0.048539992,0.1893849,0.23712273,-0.34262228,0.332567,-0.11734261,0.9771824,-0.09785235,0.08085767,0.24647407,0.53991455,0.30675098,-0.12601866,0.100386895,0.19173187,0.18550837,0.16089566,-0.63717353,0.2886875,-0.31019577,-0.26021257,-0.1613241,-0.4060793,-0.46280566,0.113794215,-0.41369793,-0.38478914,-0.22737904,-0.2943812,0.2090673,-2.654171,-0.23146307,-0.19192319,0.4327917,-0.21682619,-0.18005168,-0.04179247,-0.58043957,0.3491634,0.3082724,0.69987226,-0.5598657,0.44050947,0.60595,-0.8274072,-0.2271409,-0.62880754,-0.0728947,0.06550184,0.44375697,0.12160162,-0.4005653,-0.21931536,0.12213918,0.7440285,0.2501568,0.15115516,0.51568437,0.52510875,-0.13622062,0.6685937,-0.18907803,0.5103857,-0.34372985,-0.23124285,0.27629933,-0.54502314,0.043489683,-0.34744084,0.03216858,0.84016114,-0.59835154,-0.97933894,-0.56678265,-0.026135633,1.1813692,-0.0894446,-0.7113817,0.1084418,-0.5620996,-0.13850711,0.046128992,0.81059045,-0.16925271,-0.007972066,-0.61203593,0.020197019,-0.2409994,0.29899412,0.011787798,-0.12138909,-0.59007055,0.8803661,0.005075189,0.6025643,0.070052736,0.25903976,-0.6766255,-0.29845676,0.098537385,0.56806,0.60703033,-0.019496053,-0.25644353,0.055260662,-0.11014304,-0.3026602,-0.08435765,0.92718506,0.45793185,-0.099734396,0.22781722,0.40986907,-0.15517813,0.13222249,-0.14242692,-0.24200201,-0.41833544,0.13457012,0.6098122,0.8262701,0.057116628,0.3299807,-0.046027977,0.21197136,-0.30047712,-0.52720875,0.65391254,0.5555253,-0.2329876,-0.008992541,0.5056301,0.6292244,-0.2818043,0.5286327,-0.5687017,-0.48739043,0.4740665,-0.09948885,-0.5586627,-0.023336021,-0.42917708,-0.054521635,-0.50853556,0.31919196,-0.51241195,-0.5403249,-0.47876522,-0.13852602,-2.3021927,0.21518616,-0.24436726,0.049513314,-0.6240749,-0.24329282,0.2622061,-0.5305856,-0.7557869,0.105066024,0.2675867,0.74339765,-0.12177405,0.12205607,-0.21863031,-0.56874007,-0.09543881,0.21160476,0.12868063,0.2905458,-0.004242564,-0.20667839,0.032688428,0.056427762,-0.39390126,-0.031052867,-0.4637933,-0.48362327,-0.026362075,-0.5189427,-0.29403245,0.6338094,-0.3841568,0.069414295,-0.39365327,0.12515198,0.038920708,0.10889101,-0.0027939528,0.25163853,0.197263,-0.19954006,0.09606471,-0.1947302,0.4825851,-0.07057163,0.40690675,0.16629575,0.11573527,0.23711777,0.40276054,0.6622534,-0.20074435,1.2326708,0.21223791,-0.053945493,0.3575605,-0.17439888,-0.43323183,-0.70708066,-0.02229636,0.26692358,-0.34855697,-0.26882467,0.30145475,-0.28389376,-0.7809133,0.6023137,0.037700083,0.32799146,0.024407139,0.3569266,0.42363715,-0.10875541,-0.079423256,0.074846625,-0.12047104,-0.53674185,-0.26253542,-0.7592543,-0.32873818,-0.3086557,0.9926379,-0.21815455,0.107462354,0.33350268,-0.12217516,0.11775803,-0.07559169,0.056894746,0.118505515,0.4648699,0.32798266,-0.6140943,0.24585868,-0.196492,-0.06288785,-0.4744741,0.3993063,0.7680142,-0.6503708,0.5885547,0.57670003,0.09357139,-0.41631973,-0.66024435,-0.0055035003,0.08614763,-0.22461657,0.34405562,0.34413555,-0.7559244,0.5514326,0.15125987,-0.42810106,-0.85539246,0.3778837,-0.030023703,-0.3122432,-0.18392694,0.385777,0.37892005,-0.08225503,0.036606085,0.26277384,-0.4580623,0.4093441,-0.2531845,-0.073691584,0.28013366,-0.10968869,-0.42941907,-0.69787073,0.018092126,-0.6112666,-0.442773,0.38803756,-0.11661529,-0.012730156,0.3752469,0.19599535,0.3809737,-0.030897805,0.13336043,-0.1656445,-0.31846306,0.19825952,0.570218,0.48822224,-0.38072327,0.5330309,0.16079396,-0.0586873,0.1941924,0.16663383,0.1828825,0.0069106705,0.5028641,-0.2611136,-0.12268173,0.14032365,0.915102,0.1644409,0.28953508,-0.029227247,0.02736342,0.483315,-0.064779356,0.25194076,-0.16767712,-0.70878834,0.043703776,-0.19327855,0.054705698,0.50114167,0.058775783,0.24431606,-0.03193924,-0.10240557,-0.07358008,0.312462,-0.4988264,-1.1049753,0.43444267,0.30367973,1.0228674,0.52925366,0.1310022,-0.21925063,1.0615679,-0.09756004,-0.09808701,0.47514662,0.074715935,-0.31455374,0.71332735,-0.5947707,0.49492815,-0.20611812,-0.071894765,-0.06693061,0.20605087,0.19909795,0.6245566,-0.28701895,-0.013737778,-0.14553721,-0.2765824,-0.012539159,-0.2057231,0.17951716,-0.33643046,-0.4512743,0.8267286,0.25156096,0.32158408,-0.40161562,0.15927471,-0.10519991,-0.20522285,0.16669078,-0.015315689,-0.30908152,0.05742353,-0.5179761,0.10373425,0.44021654,0.008245637,0.2932408,-0.08540157,-0.1710283,0.017182777,-0.06644466,0.020670608,-0.08957801,-0.74511856,0.2077173,-0.30599248,-0.5541249,0.458889,-0.2737118,-0.16450699,0.27799344,0.10573679,-0.013952534,0.35442722,0.14741983,0.47701597,-0.16190249,0.026005983,-0.2174402,0.012770772,0.015058741,-0.37698314,0.16145672,-0.34197125,0.23861726,-0.5460803,0.6325082,-0.1698351,-0.41467324,0.26454177,-0.12066424,-0.06274183,0.53819436,-0.17380925,0.0718854,0.1172589,-0.25352776,-0.1728176,-0.24179454,-0.30867392,0.1505559,0.102565266,0.017486146,-0.22679074,-0.22615834,-0.33535132,0.51647574,-0.08099378,0.5115833,0.19055827,0.20805462,-0.335533,0.1799527,0.039845217,0.84355134,0.16925202,-0.057803024,-0.4815285,-0.3869492,-0.40330586,0.45381722,0.07372068,0.093252264,0.07375822,-0.2912683,0.8779921,-0.20118488,0.96927285,-0.22715282,-0.2650351,0.019015292,0.66080433,-0.15395765,0.06697079,-0.33170894,0.8892335,0.35182497,-0.06341223,0.119740725,-0.443259,0.12072003,0.24313855,-0.3511165,-0.08330835,-0.14197588,-0.46006235,-0.30482894,0.18717182,0.2272969,-0.07304784,-0.276293,-0.039111767,0.23385425,0.15691514,0.30022037,-0.6007561,-0.29068843,0.3217046,0.27556744,-0.16154602,0.13776745,-0.52760035,0.196927,-0.8650456,0.2724984,-0.6390927,0.04472821,-0.15709339,-0.2222191,0.22955902,-0.020317784,0.3977816,-0.33790526,-0.41526023,0.023635939,0.30932906,0.23245434,0.22947697,0.5938223,-0.21716557,-0.02319024,0.20261465,0.7445922,1.0703777,-0.3391964,0.09248834,-0.058132272,-0.5756013,-0.57595164,0.28726384,-0.3674188,-0.31782162,0.1380246,-0.23948763,-0.3871051,0.12592083,0.22506242,0.24376178,-0.11160881,-0.8975546,-0.26786527,0.3672622,-0.24529189,-0.1563855,-0.30328253,0.26928398,0.57284015,0.013408731,-0.14381778,-0.12832224,0.5610245,-0.15447827,-0.63451,0.1508912,-0.58516854,0.29999536,-0.073152915,-0.411141,-0.116536535,0.0028965871,-0.6225683,0.068644606,0.17629413,-0.4008861,-0.09110504,-0.25275144,0.115986355,0.7964887,-0.18455034,0.06430745,-0.298112,-0.62343,-0.92405796,-0.14524575,-0.037820697,0.22901623,0.013306181,-0.5373301,-0.208472,-0.22278242,-0.41107735,-0.016142005,-0.6143301,0.18581061,0.1914162,0.5637289,-0.4886985,-0.8539534,0.21753018,0.08907294,-0.054073155,-0.32442564,0.34184822,0.15571703,0.6754597,0.15444238,-0.1369883,-0.29745737,-0.4568744,0.23274462,-0.30724853,-0.19020866,-0.7580454,0.15286954 -907,0.54192483,-0.030685091,-0.5764431,-0.2908648,-0.537059,0.30094382,-0.2031496,0.093077496,0.33821085,-0.54752797,-0.004661226,-0.24849838,0.017093142,0.32993582,-0.2399912,-0.781687,-0.076310806,0.20471643,-0.8187647,0.3736517,-0.5047611,0.2614647,0.34182236,0.20538919,0.008158405,0.095688865,0.36230263,-0.2841379,-0.046923064,-0.040767793,-0.084099725,-0.015824588,-0.6491453,0.24171062,-0.03030402,-0.2914565,0.118561104,-0.55762076,-0.27253017,-0.6250225,0.42513427,-0.8886685,0.5094984,0.12529033,-0.30420026,0.1694616,0.07948599,0.05895153,-0.22600213,0.187178,0.23653345,-0.35510123,-0.07886316,-0.2211056,-0.40024486,-0.50355536,-0.71995354,0.048967652,-0.5155455,-0.14283963,-0.24044393,0.34405002,-0.3579659,0.05117063,-0.17711058,0.50087917,-0.33683863,-0.20193067,0.30105674,-0.14087254,0.2420353,-0.29217184,-0.09189239,-0.13730222,0.3543183,-0.06928148,-0.19563408,0.2834434,0.20346895,0.6820504,0.121910855,-0.34181356,-0.16835466,-0.0034987747,0.15018898,0.45739862,-0.13314953,-0.30486247,-0.1800423,-0.046241723,0.19126533,0.3733794,-0.10484408,-0.51329035,0.19380666,-0.006174376,-0.28470185,0.5830946,0.47523198,-0.4020475,-0.2644289,0.34732327,0.3658642,-0.076163486,-0.15790823,0.2102731,-0.023391414,-0.74047977,-0.3837916,0.43725014,-0.16430695,0.43504816,-0.1366244,0.1256402,0.7077506,-0.24165162,-0.09421498,-0.22553441,-0.24808636,-0.03160281,-0.20367408,-0.063744076,0.2534989,-0.49148777,0.07539431,-0.24259607,0.772459,0.17067634,-0.86936975,0.33017606,-0.64533067,0.14095777,-0.13019958,0.7341791,0.72315484,0.44366685,0.23707017,0.88893014,-0.5050781,0.16778356,-0.11776102,-0.48199502,0.070733376,-0.13232549,0.050629403,-0.34616163,-0.012968847,-0.07756449,-0.054079853,-0.048635982,0.40301362,-0.29004547,-0.042772055,0.122832134,0.80159265,-0.43951365,0.039730072,0.7960863,1.0102227,0.9950787,0.24663289,1.3965787,0.31864282,-0.28359598,0.2640377,-0.29239246,-0.61036843,0.25828177,0.27849016,0.25699216,0.24537824,-0.022165664,0.23716854,0.22283569,-0.4541277,0.049199007,-0.16034608,0.2459115,-0.12614818,0.053133298,-0.35859364,-0.2005925,0.19354303,0.078739755,0.19275421,0.24253106,-0.13815102,0.32819065,0.1375398,1.2008529,0.0027552366,0.09143095,0.12954897,0.24854082,0.13302273,-0.020824132,-0.10869873,0.1680616,0.3979459,-0.12193462,-0.6047306,0.07906205,-0.18997209,-0.4012125,-0.2555819,-0.3366159,0.067636326,-0.22606859,-0.35758382,-0.10733227,-0.060915664,-0.49701983,0.40779305,-2.1433032,-0.23280214,-0.08941674,0.25321364,-0.099933036,-0.1755672,-0.24643424,-0.6617726,0.32305956,0.3824569,0.13563462,-0.6943208,0.4912281,0.5071791,-0.38600025,-0.14176852,-0.7358582,0.004134738,-0.18821809,0.32935795,-0.02354435,-0.08976357,-0.26356688,0.3296295,0.5459856,0.054495223,-0.029171837,0.275242,0.52645695,0.12847821,0.62961024,0.06548722,0.4875435,-0.27851027,-0.10023619,0.4126314,-0.28695658,0.1651856,-0.10381269,0.14241293,0.38245627,-0.6243836,-0.79014677,-0.8011058,-0.5618717,1.2000078,-0.39090315,-0.33599466,0.3573631,0.04326578,-0.23953384,-0.06558585,0.67378575,-0.20434299,-0.004692586,-0.832142,0.0788861,-0.012095753,0.32459348,-0.08922239,0.14713345,-0.32804725,0.70912004,-0.21573646,0.4537667,0.29477674,0.18605956,-0.25254568,-0.61395705,0.22411938,0.78092754,0.19007546,0.16723152,-0.16073303,-0.22915119,-0.11710063,-0.043819115,-0.04863809,0.6562088,0.899186,-0.06180663,-0.032456484,0.39857838,-0.23620863,0.08621585,-0.19347951,-0.1992639,-0.06767988,-0.19982842,0.5102319,0.43959954,-0.05822129,0.272227,-0.19620337,0.30869785,-0.09776052,-0.31171086,0.5399744,0.91103935,-0.13463287,-0.17280097,0.6217293,0.44807476,-0.41976082,0.4577448,-0.6589151,-0.26388618,0.51157254,-0.072128944,-0.5201309,0.034407828,-0.37277177,0.24480274,-0.9926548,0.24850713,-0.09403233,-0.27423766,-0.46557614,-0.11935776,-3.391061,0.27629754,-0.21464327,-0.12729293,-0.023015173,-0.11296378,0.425796,-0.43081257,-0.56442314,0.06424549,0.13382936,0.59397244,0.11943304,0.31496456,-0.34983078,-0.022765987,-0.40944293,0.26432416,0.20498927,0.33294785,-0.063559495,-0.32748693,0.1171952,-0.42125705,-0.36487728,0.05374695,-0.52014846,-0.4246684,-0.11279591,-0.4822286,-0.5263806,0.634577,-0.333974,-0.074453436,-0.26642707,-0.1056364,-0.103355266,0.33021268,0.1568638,0.18792282,0.101004094,0.0012269417,-0.41829368,-0.33650583,0.41695154,0.0056000757,0.03488435,0.31188312,-0.08118746,0.17514418,0.41827643,0.6420739,0.031362407,0.661659,0.2997409,0.03468151,0.18866174,-0.21478496,-0.25958434,-0.7144438,-0.3684644,-0.20229062,-0.4386219,-0.51261693,-0.16458052,-0.41092443,-0.6848441,0.45300472,0.017472532,-0.048473537,0.047608327,0.21117888,0.39811435,-0.22090231,0.09255557,-0.10287763,-0.293838,-0.4371771,-0.5028398,-0.73854226,-0.47859663,-0.0440296,1.1490887,0.08850228,-0.22467962,0.08221673,-0.2125581,0.0900316,0.15615489,0.18552552,0.31805903,0.47060373,-0.073700264,-0.7399834,0.48016852,-0.14085811,-0.05050334,-0.49421296,-0.061140757,0.65446866,-0.7803427,0.49922213,0.35448,0.25460014,0.024550326,-0.49334112,-0.3434357,0.057208017,-0.32991478,0.5488265,0.19581749,-0.8111228,0.54347825,0.12627394,-0.18265842,-0.85882765,0.41435987,-0.007966483,-0.26166606,0.14447246,0.3735419,0.10017802,0.018758286,-0.23706862,0.19656035,-0.4789386,0.33335668,0.29463524,0.15368779,0.20682101,-0.20012732,-0.23172377,-0.68793094,-0.15812463,-0.5473948,-0.30278128,0.011532871,-0.010902,0.053253498,0.30960777,0.019477399,0.5677903,-0.23495206,0.19477873,-0.063833624,-0.1436504,0.27293137,0.4378923,0.3250065,-0.43385988,0.6763373,-0.09183297,-0.0024716496,-0.29330504,0.07103374,0.4078329,0.29713246,0.27607667,0.077987336,-0.19425729,0.3267752,0.7449057,0.120092794,0.20927258,0.2922167,-0.21508071,0.62870395,0.13619655,0.052353814,-0.14991468,-0.3872062,-0.20215897,-0.10439415,0.08991165,0.34554484,0.08797489,0.37743157,-0.24515685,-0.14229414,0.038718197,0.14898005,-0.15309744,-1.2372214,0.19356513,0.10445123,0.5889758,0.71147096,-0.12664615,0.045809943,0.4955136,-0.39390162,0.06652651,0.33817157,0.04567136,-0.34758726,0.50977886,-0.44982103,0.40640754,-0.25507018,-0.019260915,0.11531691,0.23417664,0.17427383,0.9464256,-0.115322836,0.17189893,-0.02692854,-0.062121574,0.19371358,-0.20171168,0.00029409726,-0.5377277,-0.30434796,0.52157146,0.409144,0.43028456,-0.21805473,-0.0803469,0.021228075,-0.05816621,0.11850647,-0.060435858,-0.22788183,0.019682396,-0.69426537,-0.38626382,0.5137708,0.11670328,-0.10121267,0.091085106,-0.44824183,0.07283446,-0.2332894,-0.087699875,-0.075569026,-0.8360008,-0.2799674,-0.2836743,-0.3099601,0.304016,-0.49532095,0.21563047,0.2710702,0.12500577,-0.43968967,0.023393568,0.34728736,0.77047336,0.29414636,-0.18926443,-0.2534331,-0.10777907,0.2679946,-0.3744286,-0.07137001,-0.21020408,0.09859344,-0.63643986,0.55256176,-0.14591485,-0.23488545,0.12990305,-0.16692927,0.043388605,0.6065484,-0.20884885,-0.15686846,0.22018607,0.05935177,-0.28723857,0.012115654,-0.38846645,0.20611338,0.010262104,-0.08314959,0.17717728,-0.14519924,-0.07940347,0.5492588,0.17424814,0.26314676,0.274794,-0.021591851,-0.45964247,0.05943521,-0.03183419,0.36747676,0.048516948,-0.14939308,-0.17311811,-0.21390606,-0.044561885,0.384622,-0.056606147,0.035075076,-0.0038954178,-0.4660661,0.70817256,0.24720176,0.94376177,0.11245433,-0.24763387,0.09293128,0.3933563,0.0113349315,0.036265675,-0.45770514,0.78763074,0.55253655,-0.13075767,-0.2333323,-0.288329,-0.069796845,0.072728,-0.24735619,-0.11676058,-0.1341788,-0.73988414,-0.20459214,0.18319622,0.15435365,0.05882012,-0.035337042,0.064933814,-0.10023255,0.123881534,0.5427362,-0.5406968,0.13589005,0.33416566,0.22912768,0.18878593,0.3030739,-0.20572822,0.45204756,-0.5295596,0.09648431,-0.37336445,0.013266404,0.08477804,-0.25470403,0.15945901,0.1741756,0.29090044,-0.17748356,-0.40267697,-0.30011493,0.7342219,0.19519158,0.36521205,0.88798535,-0.25897226,-0.049050268,0.018046143,0.5402719,1.397414,-0.06899228,0.113930956,0.20083085,-0.40544194,-0.5105902,0.19444904,-0.40333694,-0.10137328,-0.028352363,-0.33841762,-0.2541288,0.27031484,0.19217342,0.0016911536,0.14687344,-0.47106597,-0.19019909,0.61390185,-0.21111366,-0.31602713,-0.23590907,0.41514242,0.66273254,-0.28843105,-0.09760632,0.009470335,0.34389526,-0.39807913,-0.5938805,-0.06190612,-0.4131996,0.35198295,0.15996481,-0.26047722,-0.01533702,0.23730367,-0.54675114,0.08691261,0.3523096,-0.37956494,0.040386725,-0.27393532,-0.23224252,1.0105815,0.048747897,-0.064612076,-0.63671434,-0.5404411,-1.1353438,-0.15854983,0.2358767,0.13196914,0.1537152,-0.33228907,-0.19420834,0.01697042,-0.01027772,0.14107679,-0.5311212,0.36336097,0.12201994,0.5692638,0.033425096,-0.8847056,-0.012794344,0.061752852,-0.2988679,-0.3790699,0.6115208,-0.021743003,0.7057543,0.044947673,0.029065708,0.0782754,-0.56143355,0.3619424,-0.34519157,-0.10577468,-0.75071925,0.056920953 -908,0.51283455,0.047634482,-0.7131455,-0.11897061,-0.12860051,0.074475236,-0.22474386,0.56146723,0.23452386,-0.4463816,-0.041753147,-0.10128891,-0.111233145,0.2645516,-0.31196883,-0.34824973,0.10540328,-0.040834047,-0.42324695,0.36747533,-0.35068145,0.22467151,-0.083221845,0.60349256,0.1661358,0.11292644,0.17324565,-0.001290305,0.06050794,-0.44400856,-0.18315794,0.31726906,-0.3242752,0.032092366,-0.17562532,-0.37993324,0.11434808,-0.43287346,-0.26537,-0.6066876,0.25458422,-0.6687658,0.7615228,0.24698,-0.13608856,0.27308428,0.3548117,0.11134944,0.13501887,0.07454113,0.2210113,-0.2649189,0.14173812,-0.3986909,-0.37470883,-0.63868326,-0.47373727,-0.06077514,-0.5773506,-0.39215764,-0.22629458,0.20089792,-0.3874215,-0.18708138,-0.0029757728,0.4227567,-0.38763058,0.21888895,-0.016381817,-0.2802511,0.1579786,-0.6802904,-0.22998919,0.03109648,0.33339527,-0.2635932,-0.14743237,0.0147427805,0.24116787,0.39385584,-0.293565,0.048380807,-0.2570864,-0.27290285,-0.11536252,0.5429872,-0.28533742,-0.4003129,0.049510274,0.18286972,0.34746474,0.43565634,0.15878926,-0.10157513,-0.12770091,0.075500965,-0.24176551,0.7233063,0.5095205,-0.25226822,-0.0827064,0.30052993,0.5075055,0.4622468,-0.17195775,0.097284384,-0.15299183,-0.47061977,-0.08385476,-0.0695085,-0.062127534,0.31170914,0.04729968,0.5891728,0.65147907,-0.14782499,0.06289845,0.13677263,0.031588554,0.07819572,-0.1337574,-0.26594248,0.13665026,-0.37277758,0.32883742,-0.14884157,0.6801576,-0.0032434342,-0.5026613,0.27710548,-0.6187791,-0.15782224,-0.06505411,0.45298517,0.47047156,0.38038597,0.080417864,0.6102822,-0.44818297,0.020821387,-0.0023648413,-0.35903865,-0.039582077,0.05873588,0.01679501,-0.53230315,0.0272677,0.00026741216,0.07710146,0.2584505,0.4369934,-0.60029167,-0.25260058,0.14575268,0.99277824,-0.29111254,-0.09016573,0.64858913,0.9911663,0.6516994,-0.09571788,0.6804848,-0.022260936,-0.13100821,-0.14748031,0.07419971,-0.5769258,0.4112818,0.4933705,-0.6184461,0.29822844,0.13164109,-0.06928653,0.21296786,-0.10895278,-0.18928455,-0.12868512,-0.034910023,0.21036428,-0.31421176,-0.19590741,-0.08859441,0.05376829,-0.07215767,0.31562638,0.095334,-0.43545607,0.38566026,-0.19472513,1.3488567,-0.04120368,0.097012594,0.16078232,0.4834572,0.24378985,0.15223919,0.14467882,0.4415774,0.35613707,0.3423262,-0.48990104,0.28144532,-0.32062533,-0.43523338,-0.09325032,-0.3090341,-0.18829384,0.025634868,-0.3948658,-0.060622696,-0.14612323,-0.15254392,0.30081758,-2.8293397,-0.1916624,-0.13012187,0.34680316,-0.055400718,-0.30028418,-0.18718792,-0.3140477,0.39483443,0.24267823,0.5176524,-0.41662663,0.3935419,0.59689516,-0.41600963,-0.30366996,-0.45458984,0.08676109,-0.077338256,0.13738099,-0.019166114,-0.068526976,0.093388416,0.09606188,0.56539685,-0.13096307,0.062029075,0.3150671,0.6575361,-0.29263103,0.519272,-0.18629263,0.5422563,-0.29041404,-0.22063805,0.4589071,-0.32083416,0.12347825,-0.10579989,0.13138543,0.45327094,-0.20130616,-0.97852135,-0.41394174,0.06350482,1.2811544,-0.16928601,-0.4798145,0.13228188,-0.15827326,-0.46225882,-0.003600008,0.56592184,-0.24514543,0.08357889,-0.67712075,0.053169586,-0.25943312,0.11601847,-0.01631129,-0.037262928,-0.3950063,0.55265135,0.119669676,0.54308516,0.15773025,0.23968115,-0.3661669,-0.29656306,0.05923145,0.7581677,0.4585581,-0.0075240512,-0.15807496,-0.013716126,-0.19072095,0.06572901,0.18158776,0.9131736,0.54980206,0.010082204,0.17702504,0.23431374,0.0762136,0.0070416927,-0.24373315,-0.20146443,-0.18870376,-0.1198704,0.46647042,0.35700098,0.026058467,0.5283956,0.096710704,0.36224923,-0.48998,-0.34615496,0.22766541,0.74504584,-0.3376365,-0.47427896,0.5298987,0.26442796,-0.37519512,0.2839677,-0.74363035,-0.23302117,0.6480686,-0.1082649,-0.68426615,0.17865577,-0.26755235,0.03121055,-0.90857315,0.1357129,-0.388554,-0.51113325,-0.4518752,-0.32761002,-2.7798197,0.1806617,-0.32515794,-0.19089971,-0.42921868,-0.25502253,0.07481848,-0.622733,-0.51901937,-0.01770907,0.15068947,0.6745675,-0.13271374,0.07124997,-0.20693588,-0.46917343,-0.11784779,0.16056672,0.087225825,0.2807941,-0.017237436,-0.2138214,0.09078724,0.124792196,-0.3303653,0.018341897,-0.3069181,-0.3081748,-0.016411625,-0.3831094,-0.165649,0.74163246,-0.41276324,-0.0349744,-0.24935536,0.15204261,0.072585486,0.28565168,0.17322487,0.076526254,-0.0011194755,-0.05395776,0.09052839,-0.46479318,0.34718364,0.018237859,0.3759966,0.35048202,0.044446465,0.07396327,0.37128752,0.33215308,0.09220919,0.71889627,0.042234834,-0.014600348,0.36573964,-0.3346422,-0.36874294,-0.43864918,-0.2857891,0.3054104,-0.4060613,-0.43826172,-0.15454867,-0.26930785,-0.71798706,0.45582467,0.014424768,0.30667531,-0.23357163,0.8180208,0.4866619,-0.20378542,-0.19549274,0.28814223,-0.19267721,-0.49607047,-0.19212666,-0.5099006,-0.43844783,-0.053646628,0.6853162,-0.46196496,0.13342236,0.08624515,0.038347717,0.1523352,0.14093299,0.09831124,0.09640319,0.33713877,-0.27792242,-0.58192897,0.4796838,-0.47690314,-0.237223,-0.66937727,0.049064398,0.68891615,-0.6619256,0.2860864,0.33894718,0.07192401,-0.2519916,-0.60299605,0.06430007,0.15844876,-0.1511818,0.111170575,0.104011804,-0.79070765,0.298481,0.37946108,-0.11503637,-0.44814214,0.68277085,0.055054795,-0.56177175,-0.036292564,0.4783531,0.398721,-0.01607436,-0.17322697,0.12452947,-0.22348183,0.37312773,-0.095791645,-0.062940195,0.39100778,-0.1194099,-0.17853257,-0.61149067,0.21229033,-0.541739,-0.46887735,0.37529954,0.031620957,0.22205152,0.42886078,-0.06465333,0.34921995,-0.54831433,0.2316106,-0.3084466,-0.13242216,0.4243723,0.32583869,0.41961747,-0.38015556,0.54430413,0.12163936,-0.05926472,0.55456024,0.21488124,0.541281,-0.13641006,0.44228113,0.018177388,-0.25324634,0.235076,0.8107164,0.1803048,0.28337535,0.036584094,-0.0666562,0.023560232,0.082640246,0.116339535,-0.14420423,-0.5420859,-0.101855166,-0.26722595,0.07754108,0.67160845,0.09025857,0.16195408,0.037390355,-0.3061526,0.10678756,0.5111659,0.07560952,-0.9011126,0.35760844,0.21107148,0.8740807,0.024877608,0.19378246,0.0287292,0.57502043,-0.09320145,0.0650467,0.24874915,0.20616363,-0.37173396,0.48382246,-0.5554895,0.41368207,-0.08035669,-0.08782404,0.018543793,-0.29788655,0.316815,0.79716486,-0.21865474,0.08019796,0.07616287,-0.25039855,0.10928497,-0.4631028,0.048052963,-0.43824318,-0.19117156,0.61861396,0.624968,0.27075258,-0.28798538,0.02522012,0.07372435,-0.054537967,-0.14212851,-0.037107978,0.18425137,-0.25276476,-0.54444414,-0.054768864,0.4197669,0.3424261,0.115581006,-0.11357973,-0.10246208,0.45413503,0.07582135,0.23822817,-0.09366366,-0.35372284,0.16132511,-0.18968846,-0.69256854,0.30380797,-0.13360526,0.30687082,0.23757623,-0.035148904,0.107384466,0.5791578,0.06548352,0.6431293,-0.12562115,-0.045119047,-0.6116329,0.3074157,0.012577813,-0.1958744,-0.19776407,-0.26843426,0.29193947,-0.45308083,0.25631455,-0.22653985,-0.2751721,-0.10466699,-0.23750392,0.006034133,0.429272,0.0069471356,0.013555896,0.11818163,-0.2931021,-0.2430807,-0.15429169,-0.21173026,0.27020577,-0.11607406,-0.066288285,-0.21573974,-0.14578702,-0.36279377,0.06643884,0.05211751,0.46707714,0.32232654,0.15650398,-0.07697508,-0.067071795,0.069735765,0.6089305,-0.10613739,-0.1437978,-0.111174606,-0.666427,-0.32059553,0.34993237,-0.14102902,0.19492811,0.33830047,-0.10540173,0.66251266,-0.050041724,1.0410101,-0.047402147,-0.22183873,0.07526632,0.6847784,-0.07067729,-0.1759991,-0.22417398,1.1005839,0.5269697,0.08907574,0.009562007,-0.138201,-0.1494479,0.072437115,-0.3647144,-0.07671559,-0.13464083,-0.4794524,-0.30063763,0.19236897,0.24726056,0.15364061,-0.1656137,-0.038290534,0.30175185,-0.025085362,0.19348803,-0.5161434,-0.4353031,0.2697527,0.19884911,-0.31413257,0.07197427,-0.4504997,0.37486008,-0.432771,-0.010443839,-0.5578404,0.19575511,-0.18055469,-0.20676047,0.18733296,-0.1051269,0.2838426,-0.39224595,-0.35604703,-0.0033164432,0.021099104,0.28697166,0.19670819,0.3745897,-0.20830698,-0.04831301,0.002335453,0.50297374,0.8955816,-0.08753792,-0.09027633,0.49313384,-0.4795243,-0.6890368,0.12138243,-0.71708244,0.0974951,-0.09233563,-0.14058413,-0.03422487,0.3594427,0.20292044,0.0711138,-0.18040021,-0.635066,0.015697425,0.24305023,-0.21308881,-0.22274493,-0.3195696,0.06500938,0.66176814,-0.23953246,-0.13121888,-0.1398705,0.5077444,-0.07459924,-0.52493864,0.09352665,-0.22509311,0.3859521,0.12551112,-0.16809629,-0.27291358,-0.071750194,-0.54450876,0.42360276,0.12596464,-0.17192578,0.07461294,-0.21087165,0.10930445,0.49746695,-0.29735693,-0.19950819,-0.3703373,-0.46640882,-0.5915712,-0.24911283,0.12661518,0.036587417,0.037023615,-0.6584862,0.117560655,-0.1500865,-0.27969006,-0.26027158,-0.1942483,0.29408476,-0.06642025,0.6079508,-0.27583605,-1.0407051,0.2708029,-0.08727955,-0.42046747,-0.72331196,0.35736045,-0.07780074,0.60976964,0.036181785,-0.037253466,0.27213967,-0.4525428,0.09687529,-0.39321712,-0.19112045,-0.8668924,-0.01996268 -909,0.70105976,-0.44764593,-0.5987941,-0.21149321,-0.3795922,0.008877954,-0.09324447,0.6122036,0.32256892,-0.53417933,-0.10189365,-0.07333847,0.05454411,0.20599107,-0.18631852,-0.42613462,0.011362025,0.26818708,-0.39883694,0.50197995,-0.25871378,0.11372714,-0.09863361,0.4341022,0.38738114,0.30014727,-0.020112531,0.017402265,-0.27065918,-0.050067756,-0.26643512,0.4055269,-0.19323908,0.15869264,-0.1845874,-0.39918828,-0.11514529,-0.51079184,-0.44401073,-0.81360537,0.28658715,-0.9862047,0.5174957,-0.07169354,-0.38492537,0.11614835,0.022232039,0.30990416,-0.22987089,-0.17133613,0.13021526,-0.100803725,-0.025333464,-0.26099232,-0.14051409,-0.46034107,-0.48177317,-0.08413168,-0.43215698,-0.06623238,-0.20784292,0.1453072,-0.35243702,0.029176397,-0.030972498,0.6590583,-0.41181394,0.17389257,0.17318483,-0.1394724,0.22911476,-0.68920857,-0.22866847,-0.10023613,0.24073291,-0.004072726,-0.3450837,0.26352626,0.344817,0.37308767,0.020039456,-0.12725213,-0.40234852,0.028101739,0.06913103,0.49188253,-0.102278374,-0.5896296,-0.09822942,0.12537217,0.3795474,0.29850173,0.15989934,-0.18256953,-0.074909985,0.0396036,-0.16682294,0.5877713,0.49688697,-0.25712475,-0.0076448363,0.3300362,0.5922331,0.19611652,-0.26729435,-0.0070654578,0.071692295,-0.49154788,-0.09454657,0.11702608,-0.23466794,0.56073016,-0.16759232,0.2473403,0.68284386,-0.19774795,-0.06564604,0.3295299,0.26211292,-0.2678198,-0.3168525,-0.31215337,0.23273836,-0.4981107,0.07951533,-0.16003005,0.73829174,0.07539863,-0.66706973,0.3630959,-0.50350744,0.15289386,-0.24115722,0.38975668,0.73777705,0.5765077,0.2778558,0.6368965,-0.38448796,0.061254047,-0.06987666,-0.38522032,0.02166115,-0.16023263,-0.025559405,-0.6386925,0.063727975,-0.07684677,-0.16138735,0.12190221,0.5652386,-0.60635436,-0.24166144,0.19746824,0.90465075,-0.29572746,-0.195747,0.9291957,0.9848871,0.99045056,-0.017929273,0.9767148,0.2956446,-0.15175162,0.21382876,-0.22684397,-0.5352331,0.33597603,0.3748377,-0.20386791,0.25433105,0.06592618,-0.16616423,0.52393115,-0.21861175,-0.07174766,-0.22437869,0.10756158,0.10872885,-0.10327522,-0.71311885,-0.25085968,-0.21930142,0.038899235,0.07055222,0.26318935,-0.2663376,0.5880187,-0.043573253,1.7342898,-0.016881982,-0.06547742,0.015788937,0.47791713,0.28772303,-0.18759991,0.03125045,0.3314133,0.29199123,0.22186275,-0.4848983,0.1852123,-0.3082004,-0.40508628,-0.14419165,-0.42088142,-0.09111137,-0.07522554,-0.55350256,-0.13954036,-0.13123734,-0.24726336,0.3997434,-2.6573923,-0.2707798,-0.12367307,0.29608414,-0.12958845,-0.45952368,0.060465872,-0.50937027,0.15365145,0.25462034,0.56775707,-0.6762761,0.47060868,0.46853706,-0.6925365,0.023192257,-0.6605355,-0.16716185,-0.058719374,0.3754956,0.02831867,-0.02296351,0.19548659,0.047430165,0.64751685,-0.009259666,0.16569047,0.35083422,0.452591,-0.11603405,0.46389365,-0.019599753,0.53132266,-0.3275234,-0.17760277,0.20352349,-0.2624566,0.19109389,0.08328402,0.17232932,0.674702,-0.34728318,-1.0103045,-0.74090344,0.16556738,1.1070067,-0.14089148,-0.36385494,0.24635959,-0.565211,-0.37297088,-0.08983489,0.37550372,-0.019578686,-0.0048877853,-0.7820601,-0.00989068,-0.038306355,-0.0081239,-0.06692539,-0.19732358,-0.3298213,0.66738033,-0.033770133,0.5581372,0.28283006,0.23968521,-0.2747535,-0.44393235,0.006908422,0.78809375,0.41370863,0.2292148,-0.18489334,-0.14168529,-0.30295506,0.13970253,0.15506856,0.5523071,0.5317458,-0.06057504,0.0740853,0.33078983,0.0059296316,0.055722486,-0.16907117,-0.32775503,-0.21806109,0.05844164,0.48896644,0.7443093,-0.15615596,0.67155886,0.02336063,0.42514896,-0.10116778,-0.5771223,0.46093497,1.0507087,-0.36066452,-0.51764154,0.646335,0.47843435,-0.31846243,0.35289308,-0.5818501,-0.22412793,0.26862678,-0.13779666,-0.43385074,0.21492757,-0.27392864,0.25180453,-0.91691226,0.19675432,-0.23229432,-0.73916924,-0.5726513,-0.10581769,-3.0433772,0.2773752,-0.25698653,-0.27509284,-0.008111919,-0.24696173,0.17475319,-0.8335727,-0.5141624,0.21666281,0.10442763,0.76320016,-0.081802055,0.019738572,-0.21005782,-0.45156422,-0.1290253,0.09854501,-0.00049071066,0.3504551,-0.03218255,-0.48852494,0.012588433,0.04198537,-0.3786192,0.087204285,-0.7590908,-0.5546144,-0.14365983,-0.5626321,-0.33206192,0.64279544,-0.0798947,0.0663782,-0.19983952,0.17998405,-0.098350815,0.21774206,0.0071414975,0.08903899,-0.06281946,-0.116652034,0.21854474,-0.30264708,0.24208973,-0.066130616,0.3385178,0.23053889,-0.1645509,0.2822434,0.7166861,0.7423081,0.00900001,1.0057815,0.47108918,-0.20084277,0.21117862,-0.112191096,-0.45901966,-0.57492054,-0.2925566,0.02445143,-0.47185978,-0.32793778,0.011525835,-0.51235414,-0.8505255,0.6553008,0.06488162,0.3771952,-0.016600074,0.29580072,0.78301907,-0.32583705,-0.06701634,0.0010143305,-0.2057542,-0.65603083,-0.253452,-0.71351236,-0.444546,0.10845315,1.0971335,-0.25484052,0.12699379,0.09707821,-0.29014418,0.049816646,0.19676554,-0.10741605,0.20635632,0.39887312,-0.3811023,-0.6030475,0.36144894,-0.29438215,-0.18220995,-0.5545463,0.34084177,0.51832885,-0.6247858,0.5954982,0.34966087,-0.015550396,-0.40145248,-0.5039,-0.1360536,0.049884327,-0.018081184,0.62753093,0.44338518,-0.77453977,0.34314495,0.3831217,-0.19143096,-0.6183219,0.55162084,-0.06672525,-0.32714272,-0.21577083,0.32197136,0.13688262,-0.05165382,-0.33852562,0.08719604,-0.35863706,0.28369313,0.1743163,-0.09473152,0.106643155,-0.12222055,-0.039721128,-0.84995276,-0.03374773,-0.5436123,-0.26630694,0.3304539,0.08086174,0.31759316,0.12160628,0.032497473,0.3599984,-0.39878058,-0.09048215,-0.14736046,-0.46749657,0.45431975,0.45920613,0.5103633,-0.41564846,0.586542,0.04002889,-0.17118566,0.06132092,0.15810025,0.4355574,0.16920781,0.54831,0.03237158,-0.23063646,0.26212797,0.8571717,0.120169654,0.5809167,0.09898926,-0.087335885,-0.009982944,0.06661113,0.32566968,-0.12154379,-0.5003671,0.10476995,-0.3510378,0.22275604,0.44235873,0.026566137,0.25409442,-0.07505939,-0.43803406,0.05426299,0.16521844,0.17464831,-1.591904,0.38118815,0.2760491,0.93081295,0.25408903,0.04821947,-0.2655438,0.7472319,-0.118553855,0.1551323,0.34824663,-0.048202146,-0.4398198,0.48629752,-0.7549128,0.4662516,0.022728605,-0.0022547778,-0.055330284,-0.124446556,0.41384143,0.76227826,-0.10942244,0.016937701,-0.022299247,-0.46015218,0.21210606,-0.43941587,-0.023678813,-0.62121993,-0.3447695,0.70979226,0.5605851,0.5173248,-0.11435897,-0.052123394,0.082572274,-0.08557343,0.17642964,0.13783209,0.17025805,-0.19433948,-0.7579065,-0.14233616,0.47809023,0.027852535,0.2791514,-0.048141938,-0.19877204,0.29702586,0.010180839,-0.100505695,-0.046272505,-0.63433504,-0.040089916,-0.27034777,-0.6453696,0.5918538,-0.02783801,0.11873263,0.1963092,0.017336708,-0.22027646,0.34763607,0.064401396,0.9042339,0.041397613,-0.033683937,-0.4762659,0.21600683,0.1635553,-0.103868805,-0.0831154,-0.3672202,0.11899739,-0.6441536,0.4772019,0.072287984,-0.43161914,0.00025988903,-0.024358844,0.12645128,0.48873848,-0.2006985,-0.2640708,-0.28540668,0.0008474248,-0.47064143,-0.40039474,-0.018517302,0.32592535,0.17211711,0.00550004,-0.1805106,-0.064165205,0.019176373,0.44179198,0.052087307,0.39635167,0.3632786,0.031060588,-0.21501246,-0.23143502,0.3223516,0.5453562,-0.0428542,-0.20701218,-0.4221006,-0.5342209,-0.36791706,-0.090003364,-0.029864904,0.41768298,0.05555025,-0.0835088,0.8251652,-0.22443677,1.3303651,0.02792895,-0.44520283,0.089944504,0.525737,0.080641784,-0.06790098,-0.28300995,1.022692,0.5596089,-0.042883754,-0.06263553,-0.61622936,-0.05648079,0.24894606,-0.17823736,-0.1043073,0.007937397,-0.6197594,-0.2103472,0.32683453,0.2118858,0.33098173,-0.12033338,0.31793228,0.49735302,-0.0847352,0.18849252,-0.37389213,-0.26883358,0.09066076,0.3167087,0.0011288269,0.14342403,-0.5470541,0.2978081,-0.53138417,0.053078122,-0.35779396,0.27271327,-0.19145839,-0.31000096,0.2362738,0.04330584,0.40232483,-0.36304256,-0.26371044,-0.22401595,0.5912034,0.13711806,-0.039963305,0.50151557,-0.26881438,-0.030015392,0.21367022,0.48314586,0.9038876,-0.19404078,-0.06395735,0.4587486,-0.38675115,-0.70299625,0.38577986,-0.2744262,0.27297214,0.086006165,-0.20409659,-0.5968486,0.3230247,0.20653944,0.00041157645,0.06903238,-0.5441514,0.0064366544,0.28449515,-0.25181785,-0.094419725,-0.3394212,0.16074295,0.3243088,-0.3208768,-0.40296698,0.0022082988,0.2410793,0.01174515,-0.394867,-0.10771586,-0.5054684,0.35006428,-0.018559981,-0.35677978,-0.16139507,-0.19155304,-0.4103155,0.18113258,0.10428897,-0.2952626,0.19090848,-0.2942207,-0.14329657,0.9211711,-0.17077503,0.17380467,-0.69456387,-0.41344187,-0.6661181,-0.36736402,0.25908405,0.091787934,0.0067038834,-0.8552529,0.15167104,-0.023201393,-0.20357665,-0.2008907,-0.3366859,0.49915692,0.061199088,0.38132137,0.0083664525,-0.8711619,0.32200354,-0.011304342,-0.2065413,-0.6613334,0.5664951,-0.096225895,0.88130635,0.09528704,0.25285324,0.2630164,-0.361622,-0.14068678,-0.40205404,-0.27296478,-0.57116944,-0.24637184 -910,0.64875436,0.020265441,-0.28925794,-0.2736715,-0.24582277,0.12999552,-0.31390685,0.38258302,0.012548795,-0.6389298,-0.2467684,-0.17362037,-0.078177914,0.2434144,-0.2011494,-0.9894396,0.24928845,0.241258,-0.28781265,0.4064345,-0.652942,0.48392507,-0.16324168,0.362031,0.080419466,0.08666763,0.27188066,-0.11734977,-0.11475118,-0.25103053,0.07276354,-0.029717756,-0.50627816,0.12754749,0.15364623,-0.38937744,0.21661319,-0.25469717,-0.19284955,-0.7598,0.15569445,-0.7175257,0.6015405,0.107802354,-0.30493498,0.047368314,0.18073137,0.1272687,-0.16133401,0.4056163,0.2058433,-0.073453374,-0.05605261,-0.31782252,-0.13526572,-0.77123886,-0.4884874,0.056646697,-0.25060707,-0.17784339,-0.28068718,0.2644202,-0.22240904,0.041817132,-0.07744014,0.23150858,-0.44827086,-0.17663068,0.06841439,-0.21150248,0.24248838,-0.7589335,-0.32645556,-0.28576887,0.19526687,-0.03372904,-0.15944465,0.1308158,0.42401823,0.59405494,-0.008053752,-0.054514185,-0.090961106,-0.24121363,0.30453035,0.596784,-0.4188407,-0.5795464,-0.2074597,-0.29360807,0.22872931,0.16155003,0.18611544,-0.45260298,0.100293145,-0.014703012,-0.513645,0.23499472,0.60187316,-0.6745501,0.14079127,0.14810498,0.3353391,0.120193966,-0.052869048,0.23861977,-0.028898653,-0.567405,-0.27609587,0.12715451,-0.11377572,0.6045028,-0.19598016,0.040756684,0.41681355,-0.30619627,0.25777242,-0.051334407,-0.0407955,0.16657315,-0.30748823,-0.40155938,0.25739366,-0.36612046,0.0699742,-0.46184114,1.0437105,0.18253864,-0.5182696,0.39191136,-0.50995547,0.12883195,-0.12568791,0.49394864,0.50838816,0.3926495,0.108451515,0.6801067,-0.4095095,-0.11713655,-0.004370146,-0.04606426,-0.040296797,0.057277855,-0.16305314,-0.25157496,0.32998616,0.03614193,0.06558792,0.028519949,0.7146213,-0.3941369,0.069969915,0.2948259,0.86689633,-0.4402961,0.09333205,0.59980613,1.1263257,0.87755054,0.14115237,1.2556707,0.48295277,-0.13529834,-0.016515883,-0.017449535,-0.56515884,0.19423954,0.3991893,0.24743487,-0.016382337,0.20784079,-0.11580992,0.5677176,-0.53544366,0.08332124,-0.28667867,0.556588,0.07283567,-0.1876506,-0.32789218,-0.044429474,0.12836716,-0.15989031,-0.004926269,0.30393416,-0.3904198,0.1381788,0.020138323,1.1292012,-0.076020114,0.16272007,0.04651207,0.4698636,0.26961592,-0.0033727884,0.21526836,0.29534572,0.2864419,-0.13110612,-0.56652635,0.082876086,-0.2008691,-0.66755736,-0.2589852,-0.113365225,-0.0628311,0.20921366,-0.3944837,-0.19434272,0.14745435,-0.16489209,0.43286258,-2.0764062,-0.21922453,-0.18020783,0.36841652,-0.17370412,-0.43791363,-0.011508112,-0.38647667,0.6735396,0.4143345,0.29685482,-0.606869,0.5114929,0.52051425,-0.2571194,-0.17482154,-0.7514312,-0.09011333,-0.010923742,0.3163492,-0.03159132,-0.22931641,-0.20725435,0.22656973,0.54032797,-0.15334703,0.21212648,0.2232618,0.24248382,0.17076054,0.2831245,0.023697706,0.596721,-0.14520049,-0.19973148,0.2676228,-0.4405518,0.0795775,0.018138152,0.16077974,0.21569446,-0.60279995,-0.6935284,-0.9705724,-0.5951085,1.1414701,-0.10721874,-0.49264562,0.29609343,-0.03716207,-0.29012802,-0.042945173,0.41914096,-0.21163265,-0.07589042,-0.7419439,0.08469233,-0.08711782,0.3833962,0.07984397,0.05154862,-0.385634,0.8202535,-0.25033844,0.33514807,0.4710248,0.1977924,-0.28297612,-0.51399,-0.17872326,1.1889087,0.44506022,0.2332142,-0.16397533,-0.109832495,-0.32499593,0.081506014,-0.009710296,0.588161,0.7221542,-0.019445103,-0.0054811183,0.16117099,-0.058719154,0.036835466,-0.11021519,-0.53378737,-0.077892184,0.1074115,0.6534356,0.34067,-0.1902101,0.35151476,-0.23543121,0.36169797,-0.45547214,-0.22722226,0.5015585,0.9391613,-0.15369593,-0.12110991,0.762,0.5039744,-0.36315697,0.45341477,-0.7424136,-0.3440401,0.4272916,-0.1647355,-0.3160846,0.1622598,-0.5183632,0.13342501,-0.87185985,0.5024491,-0.4617604,-0.49696118,-0.6647732,-0.25114867,-3.8428004,0.30723295,-0.07771872,-0.11718849,0.023163516,-0.21318826,0.5653974,-0.40875947,-0.47413668,0.20163567,0.040413138,0.4719784,0.00804246,0.1959394,-0.35742947,-0.26684955,-0.31935266,0.1894481,0.035375245,0.2492592,0.102017,-0.4079947,0.23252527,-0.15246965,-0.24521941,0.092077985,-0.61994755,-0.5367361,-0.15016836,-0.41741973,-0.28256828,0.639993,-0.6967325,0.16121219,-0.40371993,0.022842344,-0.42954063,0.35942462,0.08422398,0.22999851,-0.18683611,-0.14280814,-0.28051788,-0.43521398,0.26567218,0.30932763,0.08884551,0.4161238,-0.12404156,-0.1011157,0.4131524,0.44757998,0.19283986,0.8516234,0.41799226,-0.09565498,0.40714204,-0.35163754,-0.23811802,-0.340857,-0.4520648,-0.19490427,-0.39820564,-0.48569605,-0.1482932,-0.28608662,-0.78273046,0.38907558,-0.119445324,-0.02228989,0.22464758,0.25778422,0.09544758,0.00020925816,-0.032147042,-0.0127468845,-0.01128168,-0.46708542,-0.32727462,-0.65352064,-0.35426432,0.23941776,0.9209181,-0.06670632,-0.012955813,0.19469163,-0.13970013,0.10431829,0.05390667,0.24187732,0.016847987,0.27490354,0.047311697,-0.8149346,0.3099454,-0.043588974,-0.252861,-0.6891309,0.21977851,0.8597812,-0.81442,0.5207586,0.38806745,0.19136246,0.09848487,-0.6032969,-0.36193207,0.13162822,-0.46945733,0.3970717,0.16452214,-0.8819863,0.46022475,0.3820998,0.04395141,-0.7861065,0.52517444,-0.056962784,-0.5107547,0.06835452,0.43072632,0.20023766,0.016526511,-0.24019442,0.3232991,-0.53135306,0.25516975,0.3323654,0.005502647,0.46581003,-0.31165978,-0.22540879,-0.80741763,-0.113411196,-0.6708677,-0.40782115,0.074811384,0.16281031,-0.034102052,0.40085417,0.19528484,0.48394746,-0.3525976,0.23912199,-0.11439563,-0.20151544,0.37521428,0.4273378,0.36959344,-0.26279712,0.6345471,-0.059179123,0.037928298,-0.26930445,0.1758909,0.35697952,0.032676477,0.38295114,-0.11094833,-0.042120613,0.30133474,0.7292923,0.19901496,0.5280952,0.20936564,-0.2074879,0.4248954,0.17380275,0.05131513,0.2213383,-0.45201316,-0.20307149,0.17365725,0.14129163,0.49692738,0.15421651,0.36008006,-0.2123978,-0.30064148,0.030096225,0.22423628,-0.04144354,-0.98485035,0.3066962,-0.028568331,0.66970783,0.8431893,-0.10125283,-0.028917097,0.48291963,-0.25302646,-0.09696604,0.16421655,-0.011989046,-0.36456558,0.3349076,-0.4624926,0.0837713,-0.38587424,0.117274776,-0.029338956,-0.0118460655,0.3792817,0.76933616,-0.006043065,0.14354931,0.12968706,-0.32343307,0.0656103,-0.28149793,-0.026815264,-0.5901937,-0.20707376,0.6524799,0.36145547,0.28279966,-0.29073778,0.013950891,0.09983897,-0.25338206,0.07542395,-0.00037033283,0.008318406,-0.18264112,-0.68478453,-0.43632352,0.6260194,-0.033191103,-0.07036435,0.22325942,-0.41037273,0.22546722,-0.11132686,0.11448535,0.13968505,-0.49641302,-0.005194508,-0.42882076,-0.36240867,0.249171,-0.09471769,0.18302038,0.22061592,0.12729003,-0.17391348,0.31754827,0.32168463,0.6107214,0.11973568,-0.24995266,-0.39478686,0.022486357,0.09220692,-0.22501312,-0.011031169,-0.3024902,0.06397386,-0.8200118,0.4759944,-0.09906112,-0.023668047,0.25018018,-0.12627338,-0.22165808,0.5183491,-0.26924798,-0.01904782,0.40385726,-0.15042713,-0.19898735,0.021058768,-0.22412711,0.21818858,-0.11551973,-0.020826403,-0.037145417,-0.2028798,-0.02227024,0.370647,0.11361347,0.19950086,0.6670016,0.09096129,-0.25447047,-0.17357925,-0.19056822,0.64299804,-0.14181556,0.09395434,0.0056221667,-0.8356333,-0.36101687,0.016426425,-0.26922095,0.15527678,0.08874615,-0.5209909,0.85657,0.21107146,1.212393,-0.04918212,-0.42754757,-0.14274469,0.615448,-0.14936016,0.13233724,-0.49099413,1.0725137,0.65546477,-0.2641671,-0.1286113,-0.24999817,-0.25719863,0.19981828,-0.21238524,-0.14213333,-0.026563952,-0.6795937,-0.3052383,0.08801662,0.33513314,-0.13823552,0.15623412,0.22140187,0.18046738,0.10742945,0.3423562,-0.59336096,0.10167311,0.3030954,0.33265263,-0.0044516004,0.11608637,-0.15974793,0.2585027,-0.7782565,-0.018580753,-0.4987777,0.009945126,-0.08677326,-0.30194905,0.19111712,0.23188779,0.18112113,-0.36855978,-0.1959103,0.010280586,0.6030474,0.035458382,0.23269749,0.54872316,-0.17823216,0.097115725,0.026282083,0.5376241,1.4433757,0.015502008,-0.12829106,0.3258774,-0.5129699,-0.7218271,0.23673582,-0.51587486,-0.021712514,-0.069665894,-0.5115693,-0.5546285,0.40793464,0.26723683,-0.1451858,0.03735608,-0.51770854,-0.24007908,0.3950402,-0.22853248,-0.3855987,-0.17364533,0.31254476,0.74424875,-0.50946605,-0.20560786,-0.14947885,0.45957857,-0.4691637,-0.78858054,-0.02790295,-0.46220785,0.5434219,0.41114756,-0.26603007,-0.10531605,-0.058205064,-0.39876464,-0.12142809,0.24022835,-0.46202967,0.19241406,-0.37898195,-0.037817605,0.75098187,0.061446276,0.06449394,-0.6244366,-0.64128184,-0.91731966,-0.45420885,0.6596838,0.3182873,0.00028245265,-0.51124567,-0.07563556,-0.13548979,-0.025742462,0.15588944,-0.25726277,0.58219254,0.21427168,0.682908,0.042150773,-0.74586225,-0.15757391,0.3058198,-0.30993706,-0.6611383,0.44859555,-0.20885475,1.1170766,0.042739954,-0.050921135,0.08915443,-0.5262651,0.35319504,-0.39160407,-0.32697004,-0.6855649,0.20797484 -911,0.3914947,-0.0005084654,-0.5771539,-0.25257775,-0.40222237,0.20976757,-0.23338595,0.30205795,0.16567424,-0.31136286,-0.07726911,-0.19146772,0.035982337,0.43778342,-0.20043206,-0.5870478,0.09031113,0.20488396,-0.678222,0.39856955,-0.49979246,0.53886235,0.17655651,0.2663946,0.07895973,0.3007885,0.23395139,-0.10817913,-0.12445438,-0.052955467,-0.26836383,0.11312354,-0.52493614,0.11710676,-0.08562342,-0.43130067,0.035653543,-0.2724698,-0.16803366,-0.69406855,0.3366019,-0.6602418,0.57736355,-0.20015483,-0.49504757,0.10106458,0.15025075,0.25339988,-0.41757476,0.09672856,0.15762672,-0.15102205,-0.09748306,0.0011595567,-0.36259568,-0.5238685,-0.5924519,-0.0429519,-0.6477353,-0.017819338,-0.3173913,0.18894199,-0.3240956,0.04256721,-0.12329321,0.19372539,-0.42711818,0.19649439,0.23922096,-0.07875206,0.011579039,-0.50536215,-0.079753235,-0.2293634,0.2344731,-0.023466619,-0.20143175,0.28566712,0.47794074,0.5377721,0.19070567,-0.20572034,-0.24487482,-0.14325891,0.06060748,0.5272857,0.03303099,-0.24318141,-0.30759728,-0.102182284,0.3666162,0.30125856,0.20224431,-0.29866913,-0.1707106,-0.03888126,-0.2637977,0.15173657,0.37175027,-0.41271657,-0.16249938,0.3858249,0.42136872,0.22558804,-0.201057,0.20588785,-0.16605061,-0.58204556,-0.32007405,0.11256678,-0.24281667,0.69904745,-0.3057762,0.16766484,0.79542565,-0.24391419,0.035660505,-0.059381556,-0.0035063506,-0.16235487,-0.19013043,-0.09192327,0.10531025,-0.68874437,-0.0045845984,-0.19316708,0.6236135,0.14133316,-0.68315434,0.2548134,-0.6009051,0.09692596,-0.12718551,0.56691,0.6901178,0.3988478,0.17850733,0.813156,-0.49430105,0.048330713,0.028172426,-0.48107806,0.19059071,-0.0678476,-0.13255493,-0.5577259,0.119573995,0.12936693,0.065603524,0.018709425,0.592558,-0.34867638,-0.038234726,-0.027929159,0.55118966,-0.51123327,-0.20991325,1.0237583,0.8919235,1.0636526,0.07137633,1.5053042,0.3465435,-0.1564538,-0.11792543,-0.18366149,-0.5271233,0.14646251,0.3729502,-0.2292971,0.43636817,0.1377971,0.1176475,0.32734782,-0.18905894,-0.024245998,-0.059933696,0.14402577,-0.08434876,-0.15671875,-0.466138,-0.40220687,0.120071,0.15829442,-0.052964535,0.23200426,-0.17833099,0.5633557,0.28026947,1.4102815,0.06435248,-0.0015101354,-0.02156703,0.23753086,0.28252715,-0.13360843,-0.081116796,0.3710283,0.3524173,-0.113864705,-0.506956,-0.13760084,-0.2747798,-0.5398993,-0.19534983,-0.4398137,-0.13752998,-0.2060589,-0.5469043,-0.111237556,0.025772823,-0.28520334,0.5518405,-2.2506943,-0.2626609,-0.16608879,0.20950325,-0.06733464,-0.42345524,-0.15537481,-0.43555877,0.32524586,0.3490134,0.38276663,-0.72445834,0.46481228,0.33128902,-0.32092476,-0.14416596,-0.6701762,-0.11952656,0.014407042,0.1324378,-0.14468159,-0.1774232,-0.05959632,0.22436514,0.62241787,-0.110159345,0.13306388,0.22119543,0.53612465,-0.07641447,0.4524916,0.21806015,0.610062,-0.057985943,-0.12934473,0.3735949,-0.32214394,0.45883432,-0.021652972,0.19653693,0.49432328,-0.57266563,-0.70675474,-0.5866464,-0.3899601,1.1309572,-0.48108846,-0.28158972,0.25102738,-0.11101626,-0.23046072,0.020469775,0.33052608,-0.11947308,-0.052045025,-0.64146733,0.06302709,-0.080141544,0.08984573,-0.16965084,0.13426492,-0.2638115,0.76659995,-0.15345396,0.41812918,0.41274354,0.18409103,-0.16691443,-0.5335388,0.08489837,0.89661777,0.55916727,0.107933834,-0.26820412,-0.30264091,-0.40592167,-0.22643954,0.2577193,0.36483726,0.8732054,-0.013920593,0.27535996,0.24182446,-0.0654628,0.09260432,-0.10712433,-0.26272377,-0.072529025,0.11060189,0.48917267,0.5432833,-0.21254416,0.41268215,-0.19227234,0.17429802,-0.13299689,-0.6268148,0.5547472,0.9622872,-0.2783838,-0.27974126,0.5849702,0.36158445,-0.35121796,0.47003797,-0.5104875,-0.25682306,0.6423633,0.013464605,-0.28542712,0.18799806,-0.37076157,0.1444643,-1.042979,0.29092818,0.0019960701,-0.4210282,-0.42414722,-0.17376389,-3.4953115,0.24756628,-0.21287753,-0.047143485,-0.26318878,-0.27600744,0.28439635,-0.6298374,-0.7256669,-0.054641984,0.097766735,0.530039,0.03646294,0.102027215,-0.1635416,-0.3089032,-0.2100988,0.071814395,0.12233531,0.32337815,-0.16264063,-0.46046215,0.012448975,-0.32103178,-0.63364714,0.00599985,-0.54887015,-0.53420335,-0.24133264,-0.39395115,-0.24507283,0.7947763,-0.36319974,0.015969245,-0.21968254,-0.046564255,-0.13436551,0.3026098,0.22902784,0.025653223,0.038557988,0.019618355,-0.10748853,-0.31627545,0.1267538,0.09552339,0.22744936,0.42478055,-0.1355968,0.3411559,0.45096868,0.6466733,-0.23956251,0.67178756,0.20724156,-0.11352155,0.33856723,-0.19407521,-0.21296111,-0.7760885,-0.45893785,-0.2723916,-0.4404698,-0.525272,-0.16716225,-0.3483301,-0.7983147,0.4769527,0.07294553,0.12453575,-0.16868898,0.30079448,0.38707057,-0.12361956,-0.0027786712,-0.12314778,-0.39450794,-0.49942806,-0.44483417,-0.8126892,-0.632349,0.30663618,1.2319789,-0.19882815,-0.09497695,0.07090249,-0.31291616,0.13027547,0.12784937,0.09630593,0.124699466,0.29698557,-0.21861567,-0.6475231,0.45552734,0.00028734206,-0.23610254,-0.4894822,-0.040527113,0.6466446,-0.6355232,0.47600496,0.44904187,0.20477766,0.34141642,-0.75442064,-0.17631496,-0.01625703,-0.2368035,0.60802495,0.24973354,-0.632325,0.5640676,0.19753304,-0.1253841,-0.61456066,0.6359082,-0.046026517,-0.035318978,0.029826827,0.42737764,0.13734804,-0.12395992,-0.22888225,0.25535384,-0.66998374,0.34685573,0.46065152,0.025493646,0.32556188,0.021076437,-0.31886834,-0.75421077,-0.040623505,-0.46284917,-0.24550866,-0.029426038,-0.04488889,0.061184302,0.05003725,0.19638087,0.38020632,-0.56132334,0.25624987,-0.044940464,-0.2180263,0.27148667,0.43090808,0.39227265,-0.53976923,0.65019554,0.08736609,0.08439889,-0.19090563,0.14240414,0.5482747,0.2488624,0.4011032,0.0025384664,-0.108263984,0.17002591,0.5705995,0.2500932,0.28265032,0.20947185,-0.35475406,0.23991458,0.29219514,0.26974198,0.054012578,-0.24159305,-0.050353896,0.00064953166,0.12773888,0.5628928,0.11799177,0.293602,-0.009580167,-0.06399769,0.20652732,0.057209358,-0.09745343,-1.0936904,0.32976073,0.39194945,0.6262334,0.5887154,-0.10757581,0.014088909,0.2910071,-0.42949098,0.14650036,0.41266456,0.08269116,-0.4476381,0.55062604,-0.5790157,0.4783668,-0.23796794,-0.018962674,0.16091706,0.13948114,0.4077044,1.0844659,-0.035944246,0.07862579,0.09757759,-0.24926071,0.17955083,-0.36840656,-0.18036233,-0.5020702,-0.22494347,0.7252428,0.25890163,0.31333098,-0.35473812,-0.06448893,0.13923182,-0.26986268,0.08731222,-0.05342593,0.2037606,-0.26318958,-0.522158,-0.42868367,0.51816195,0.044885162,0.18910775,0.20576695,-0.4563374,0.2182203,-0.22592698,0.09524062,-0.014560719,-0.7380827,-0.20935301,-0.4283653,-0.49506015,0.30996996,-0.31612638,0.19349208,0.27181542,0.0016993016,-0.33605126,0.15360206,0.04270015,0.7682063,0.0059494297,-0.14030679,-0.17382526,0.22879656,0.42022997,-0.34935218,-0.010720015,-0.17303154,0.07512269,-0.5840014,0.43364382,-0.2025282,-0.23645042,-0.04036922,-0.19253176,-0.12560397,0.3149575,-0.2340969,-0.10300549,0.06057132,0.10293487,-0.11806286,-0.074131645,-0.32576188,0.2917624,0.09603622,-0.083129644,-0.0028027415,0.020339267,0.05330558,0.31393856,0.0043026805,0.2617151,0.26105767,-0.18886575,-0.5362143,-0.010572311,-0.0026665807,0.30331823,0.08996331,-0.08465083,-0.35953006,-0.30534345,-0.21343999,0.36389032,-0.27656403,0.1333766,0.13576256,-0.3092688,0.9664382,0.22143151,1.2618039,0.067103975,-0.45179042,0.1064637,0.62497455,0.06592298,0.077609636,-0.16655083,1.0095992,0.5194058,-0.24605481,-0.3134455,-0.43697298,-0.1825893,0.323227,-0.29977852,-0.30119297,-0.04607087,-0.627607,-0.2837278,0.140002,0.1412506,0.08599376,-0.05496688,0.018718084,0.24498925,0.008793314,0.51634765,-0.6590354,-0.22825877,0.33263773,0.13346274,-0.023418833,0.2779213,-0.40819073,0.46878484,-0.6749185,0.13255873,-0.31482744,0.22994347,-0.08932856,-0.404928,0.3249246,0.09194905,0.27823868,-0.24543566,-0.40621197,-0.30497476,0.65910244,0.16300695,0.35010856,0.7197922,-0.4550033,0.0001356562,0.05168114,0.38375384,1.2479386,0.002664264,-0.053532466,0.37109518,-0.497666,-0.5617785,0.24958754,-0.46833482,0.06290949,-0.045072135,-0.39382485,-0.42781302,0.38619334,0.13552262,0.04446052,0.17344971,-0.5027557,-0.046630684,0.44712356,-0.28912517,-0.29311022,-0.21757819,0.34437895,0.70695037,-0.4811825,-0.2498634,0.1295701,0.16246456,-0.34319904,-0.58362406,0.033909123,-0.21739888,0.47834143,0.1424224,-0.41253415,0.1382583,0.12159009,-0.34964007,0.13345197,0.4516911,-0.269893,0.1517574,-0.4719928,-0.11280953,1.0876796,0.0231992,0.030779809,-0.52651113,-0.55880445,-0.8929155,-0.3337998,0.36489508,0.1601107,0.006004508,-0.6778744,-0.03430762,-0.028103793,-0.014753413,0.16876765,-0.30885682,0.5091714,0.20451385,0.29498836,0.052587025,-0.829835,-0.021766532,0.09704599,-0.22242394,-0.5279173,0.61370826,-0.21227366,0.70954037,0.291453,0.06790323,0.13437101,-0.64122325,0.37231153,-0.3649422,-0.009998099,-0.588946,0.0040578763 -912,0.23416077,-0.061994188,-0.6554382,-0.12728342,-0.3085221,0.21592313,-0.14307345,0.40491003,0.2570133,-0.28491342,-0.07390972,0.025698157,-0.0043242825,0.49690282,-0.13585685,-0.61502844,0.067196116,0.08697988,-0.3791801,0.35917658,-0.397645,0.3316971,-0.08781651,0.45632565,-0.007273197,0.26948056,0.037197348,0.02100974,-0.06015075,0.12766717,-0.12646806,0.6117268,-0.44014058,0.19178857,0.07188536,-0.30829242,0.019886484,-0.28501213,-0.44145057,-0.59412867,0.38976824,-0.79615176,0.5328122,0.055333808,-0.39458486,0.11724827,0.003273322,0.22805251,-0.3959595,0.048049226,0.21098804,-0.31745183,-0.09336933,-0.21213017,-0.3526669,-0.53703886,-0.57978666,-0.050927408,-0.5585546,-0.11914666,-0.30454746,0.23023854,-0.18819141,0.019595928,-0.22460607,0.17786294,-0.4568211,0.0553088,0.39029628,-0.28202194,0.06900745,-0.38943222,-0.10987818,-0.068087585,0.28204912,-0.045511365,-0.15786067,0.1534017,0.38854307,0.5571235,-0.0443422,-0.26877645,-0.44534147,-0.02987494,0.10124348,0.5076255,-0.11606283,-0.26086167,-0.213039,-0.032249514,0.1889191,0.20216878,-0.06392212,-0.3292996,-0.0082589835,0.016853146,-0.16481942,0.25700128,0.37375128,-0.43881485,-0.20327242,0.48183754,0.4840035,0.16946165,-0.1659643,0.13333711,0.06572035,-0.53277785,-0.21317975,0.05428441,-0.07832551,0.6323831,-0.019544354,0.19675389,0.6950757,0.07760833,-0.11427113,-0.16681267,-0.07456322,-0.039475977,-0.25135633,0.05317233,0.0632791,-0.3020744,0.1771589,-0.032731626,0.5716137,0.102455124,-0.6925612,0.39234585,-0.4631512,0.1096273,-0.11722152,0.5675412,0.7258918,0.39491814,0.14974712,0.91037714,-0.62356275,-0.05318696,-0.0743352,-0.42947575,0.11765324,-0.033569213,-0.009485809,-0.49522063,0.09209268,0.050384063,-0.0758088,0.1326522,0.295523,-0.31981122,0.010023222,0.073884405,0.6348801,-0.43136165,-0.1813897,0.61085737,1.0119764,0.85214204,0.026709804,1.266289,0.30350372,-0.00603508,0.037797105,-0.36347806,-0.57436985,0.132018,0.31649393,0.07418576,0.34171438,0.25090045,0.1389522,0.60846674,-0.07581043,0.061322965,-0.024815917,0.19786717,0.110739775,0.011013682,-0.4181137,-0.21092899,0.1272048,0.24428853,0.015253535,0.13548762,-0.14056522,0.34727895,0.15996996,1.5082917,0.00089673814,0.04721891,0.019087378,0.26769254,0.251432,-0.0643224,-0.18277934,0.27625805,0.34026605,-0.019225027,-0.42997605,0.105135985,-0.21526727,-0.40110344,-0.15633205,-0.22970806,-0.10554393,-0.1907174,-0.6094085,0.043304734,0.051826913,-0.2895115,0.60401255,-2.667966,-0.32324883,-0.20013149,0.32879475,-0.11508478,-0.3723027,-0.33087793,-0.34212697,0.26779526,0.38322374,0.32665217,-0.60132426,0.50922406,0.310533,-0.34561047,-0.11449497,-0.5934629,0.062613435,-0.10766531,0.32470343,0.15571219,-0.13328184,-0.14820778,0.28825933,0.68277466,-0.17765747,-0.10938756,0.21070692,0.50308764,-0.12432386,0.6188487,-0.087173775,0.6201769,-0.18669073,-0.21565653,0.40552637,-0.4180362,0.53016204,0.011552141,0.15936305,0.30465963,-0.29055592,-0.9037496,-0.58107984,-0.32208368,1.2349029,-0.30508846,-0.20717405,0.27776617,-0.38996178,-0.32135957,0.048882768,0.46056944,-0.029340914,0.025934,-0.75567627,-0.016663369,-0.21068665,0.07833391,-0.057930812,0.05681088,-0.26308843,0.72252023,-0.17863351,0.489246,0.5098028,0.13871789,0.085653946,-0.2949905,0.0076664113,0.71924007,0.40605348,0.15167704,-0.2501364,-0.28998896,-0.05784971,-0.03223646,0.12634234,0.57758987,0.47943237,0.035679743,0.07073595,0.26530245,-0.038603928,-0.17882262,-0.22862795,-0.24416715,0.09446711,0.16247836,0.5146334,0.9374541,-0.24485458,0.18688999,-0.16313706,0.11007186,-0.09209363,-0.54349446,0.34709483,0.62628937,-0.10254535,-0.24084865,0.61690557,0.46694726,-0.29967517,0.24786195,-0.5769889,-0.25237718,0.56373715,-0.15732005,-0.34436873,0.118897825,-0.373507,-0.13085721,-0.84228814,0.25209266,0.020144416,-0.5857797,-0.3871329,-0.16346046,-4.3036804,0.18255943,-0.19823432,-0.019740045,0.03139537,-0.072198875,0.35195228,-0.656839,-0.57226,0.12348815,0.087409936,0.39576927,-0.10550495,0.08140759,-0.37078002,-0.13590299,0.121154696,0.25108498,0.06496358,0.26408705,0.092390224,-0.46010223,-0.02217134,-0.40150994,-0.5150561,0.026270907,-0.638753,-0.36546496,-0.05449377,-0.4899264,-0.21078682,0.6853589,-0.5689971,-0.0671547,-0.30823892,0.1286264,-0.3329471,0.31754825,0.08310689,0.19903544,0.11215002,0.031090917,-0.14836748,-0.3489451,0.24159311,0.038412943,0.3055843,0.33440542,-0.09261762,0.17293984,0.68071485,0.62956583,-0.17742588,0.82097405,0.4350643,-0.0687018,0.20701891,-0.18721852,-0.22338563,-0.6665542,-0.53437936,-0.19476032,-0.4722614,-0.39882258,-0.12593627,-0.31250018,-0.79258156,0.44301572,0.065985866,0.0674222,-0.111911625,0.0355435,0.42897135,-0.40988106,0.024873588,-0.06782372,-0.2521032,-0.63137066,-0.49998617,-0.50024533,-0.6644963,0.17022575,1.1412978,-0.22104883,-0.010290593,-0.006796266,-0.34169355,-0.099888764,0.2370488,0.21946353,0.06582865,0.4264486,-0.16754714,-0.6481886,0.29852608,-0.29706222,-0.098511405,-0.606908,-0.08332797,0.63863385,-0.49728018,0.68715954,0.41378725,0.19329016,0.37029237,-0.6012388,-0.4978652,-0.039323248,-0.2046267,0.47974902,0.21829627,-0.702189,0.4230345,0.21349168,-0.21723725,-0.55172104,0.47118613,-0.18348886,-0.13984159,0.062432233,0.3276532,0.094675176,-0.07931498,0.0039004546,0.23033181,-0.3632118,0.31342417,0.34941864,-0.07039731,0.22455853,0.011891956,0.04020581,-0.6959296,-0.2848596,-0.32021955,-0.21968955,0.059991397,-0.016756188,0.06164916,-0.22007516,0.052822452,0.39700133,-0.4412786,0.09778741,-0.066750534,-0.2985172,0.220677,0.5040427,0.3496946,-0.3972022,0.50382245,0.08983498,0.1629584,-0.0553224,0.06512805,0.5088139,0.040757455,0.47072765,-0.20328686,-0.023709297,0.19590065,0.7528331,0.13151175,0.34605753,0.052655533,-0.2580565,0.34299976,0.18221428,0.10404645,-0.15216161,-0.27073333,0.19989647,-0.2512603,0.26217258,0.4807739,0.23877338,0.40998003,-0.14574978,-0.2268348,0.23038483,0.17833886,0.068407565,-1.0196689,0.31504232,0.1873158,0.6922217,0.3476944,0.1472722,0.101921946,0.48983324,-0.32169276,0.00059135375,0.49664184,-0.10536324,-0.51510173,0.43040422,-0.65574116,0.41456133,-0.18049134,-0.056296356,0.3233444,0.27779165,0.33626688,0.75769264,-0.058435135,0.00064635504,0.025428824,-0.2637782,-0.06258564,-0.30479577,0.05541298,-0.60635304,-0.3483463,0.5757536,0.77826256,0.40908575,-0.31238258,-0.106623724,0.096618846,-0.053278677,0.05257904,-0.24329111,-0.033140328,-0.07157768,-0.7076928,-0.123810135,0.5275551,0.11472754,0.022375057,-0.07747905,-0.38895658,0.37922928,-0.2416688,-0.12837254,-0.068400875,-0.54938984,-0.09431909,-0.4104461,-0.6510181,0.4127621,-0.38677725,0.32486093,0.19934297,-0.051687654,-0.21094571,0.39628527,-0.0635352,0.99682677,0.10163069,-0.09461068,-0.38753197,0.0627276,0.34735993,-0.1972507,-0.07809133,-0.42361477,0.17092143,-0.50944686,0.30536577,-0.19326662,-0.16208257,0.09259084,-0.24047214,0.17668507,0.5273982,-0.2016322,-0.287472,0.09856244,-0.0146792,-0.27558568,-0.12876667,-0.42779046,0.2823306,-0.13377512,-0.044913907,0.07433252,-0.15623449,-0.10701743,0.19756967,0.17965858,0.19505641,0.3065468,-0.07987707,-0.1782498,0.00018487527,0.050394434,0.50151324,0.14603385,-0.23952958,-0.31698152,-0.41828534,-0.3422858,0.15323125,-0.12710457,0.23186272,0.09229764,-0.27422264,0.7503681,0.16503301,1.2338084,0.2130271,-0.38302964,0.099608816,0.57002056,0.1617155,0.22167921,-0.40657595,0.73776776,0.5555904,-0.120755665,-0.18400048,-0.36240742,-0.14002272,0.13715225,-0.22350408,-0.17040403,-0.066885516,-0.9020503,-0.14731632,0.24708962,0.14070305,0.33300972,0.0104581695,-0.04531368,0.022451542,0.19707553,0.4124913,-0.41057572,-0.12367351,0.38440785,0.37879795,-0.058168486,0.11557121,-0.35870346,0.48152557,-0.53081393,0.040193934,-0.65759873,0.14280826,-0.25836352,-0.18824312,0.17962739,-0.124017246,0.31268597,-0.28937557,-0.25703523,-0.20604119,0.62282246,0.20960167,0.14399998,0.7185996,-0.2626796,-0.28355244,0.08400054,0.50197136,1.005606,-0.48863345,0.12265457,0.5172376,-0.165788,-0.5127968,0.09189104,-0.40118077,0.16844012,-0.080769815,-0.4090546,-0.44455698,0.3507468,-0.015753087,-0.04423555,0.046933915,-0.37990695,0.018167239,0.39686728,-0.2986892,-0.17079121,-0.17369798,0.19440658,0.6273129,-0.39525527,-0.5900025,0.14749435,0.3667625,-0.16308476,-0.49222836,0.1465557,-0.25248465,0.31318313,0.24532166,-0.4216612,-0.08052562,0.2854405,-0.3600613,0.014528362,0.35956976,-0.3505581,0.102593936,-0.30611253,-0.0005434476,1.238854,-0.08868311,0.3014645,-0.6584301,-0.43433028,-0.9344255,-0.2444395,0.3068226,0.17294192,-0.18145816,-0.40238905,-0.07073482,-0.012190869,-0.16167568,-0.042876557,-0.49821413,0.4527663,0.08390299,0.4446355,-0.14259219,-0.7973652,-0.13213243,0.1290036,-0.28010258,-0.39697793,0.57089525,-0.21352936,0.80295664,-0.08284115,0.12463506,0.16881102,-0.5076547,0.20398079,-0.3096774,-0.047304712,-0.7740256,-0.0947281 -913,0.5461697,-0.15191945,-0.5140974,-0.18947887,-0.2358374,-0.051792305,-0.15176493,0.62085044,0.39061993,-0.38488752,-0.021052549,0.007456714,0.01906894,0.23744065,-0.081969246,-0.53257805,-0.043971382,0.052260593,-0.47088286,0.48586324,-0.4190933,0.12029708,-0.047257744,0.52299356,0.28220555,0.28149813,0.03661823,0.098413564,0.23432606,-0.15512332,-0.08625349,0.19021635,-0.50326204,0.17732236,-0.12661804,-0.28823474,-0.14155747,-0.44529203,-0.4649225,-0.7172491,0.29950804,-0.74528384,0.46637636,0.17135069,-0.34924918,0.10462556,0.041136026,0.32005203,-0.2605708,-0.043415498,0.12352231,0.09476403,0.11199827,-0.13489762,-0.10735448,-0.4117439,-0.6223746,-0.06527054,-0.39223406,0.05730902,-0.053328015,0.1352846,-0.26654708,0.0096192015,-0.24377137,0.53330874,-0.32182008,-0.13864955,0.30854586,-0.14902434,0.34337202,-0.48970816,-0.07448661,-0.12736157,0.062570095,-0.0042408826,-0.39814222,0.29409835,0.11692055,0.49464607,-0.11393342,-0.20465198,-0.12523694,-0.02784944,-0.09059321,0.36941057,-0.30369663,-0.41102278,-0.24077779,0.059989236,0.2898923,0.1468236,0.17611718,-0.2004283,-0.07834457,-0.103254505,-0.19257379,0.5082581,0.56430036,-0.32053417,-0.024617994,0.32508028,0.58432823,0.20293792,-0.18799977,0.19258973,0.06964709,-0.5868543,-0.19308145,0.048898693,-0.24369924,0.47107786,-0.2135817,0.18405746,0.6104965,-0.08703486,-0.116206504,0.15291448,0.108599626,-0.20389311,-0.37266174,-0.35514438,0.29539934,-0.5391223,0.17228974,-0.20086288,0.6664961,0.024930593,-0.6886072,0.27549997,-0.43896154,0.15972966,-0.0615365,0.5807535,0.8858525,0.4630215,0.27573863,0.7342965,-0.44870573,0.08481819,-0.18574017,-0.29605535,0.24048139,-0.037230413,0.02175167,-0.5188839,-0.101093024,0.09606234,-0.21215786,0.084993824,0.41114953,-0.51670164,-0.16963911,0.21914326,0.7206909,-0.27150154,-0.11983574,0.7176627,1.1126832,1.0950882,0.07732142,0.74940175,0.168423,-0.1694055,0.13320763,-0.138935,-0.716327,0.29659516,0.29802597,0.119331904,0.38679287,0.037798747,-0.05304002,0.43569374,-0.40348127,0.004632303,-0.10308352,0.28681216,-0.12298846,-0.1005425,-0.4159118,-0.28571433,-0.06810286,0.2008291,0.057286687,0.3042958,-0.19283281,0.46554857,0.124048166,1.3643512,-0.0582193,0.034956537,0.14798598,0.547535,0.23170558,-0.39248177,-0.075658955,0.18003792,0.56165135,0.19511957,-0.53911805,0.046996344,-0.16545086,-0.35951653,-0.008861291,-0.27001145,0.04056486,-0.20954087,-0.5084266,-0.19173342,-0.086771816,-0.2687902,0.32106268,-2.9839926,-0.0478919,-0.09119473,0.24813756,-0.12226309,-0.30229935,-0.0866749,-0.5602287,0.31873074,0.39056966,0.37648267,-0.75637335,0.41915867,0.41450822,-0.5179175,0.22498445,-0.7354376,-0.121119455,-0.06378093,0.33373216,0.22456817,0.1490543,0.047347236,0.41745123,0.49926618,0.06903503,0.15491441,0.15714592,0.29708233,-0.033470247,0.3947448,-0.0050365687,0.3713586,-0.22805697,-0.15421107,0.33745518,-0.40729484,0.03008001,-0.27151337,0.06531737,0.4897855,-0.406711,-0.82357603,-0.5520018,-0.018765355,1.188503,-0.2336962,-0.4481516,0.18782537,-0.5151275,-0.31980115,0.02327659,0.47853968,-0.28054518,-0.13172899,-0.7969318,-0.017465984,-0.27756616,0.1361346,-0.09607395,-0.16239962,-0.38076115,0.66708773,-0.04682361,0.52472097,0.2930422,0.11580326,-0.25528643,-0.5694904,0.08121841,0.77395535,0.416824,0.094218105,-0.2431405,-0.100486,-0.29613608,0.26101887,0.24503393,0.6847514,0.8198745,-0.1467784,0.23658866,0.4467802,-0.022035237,-0.04753947,-0.10021539,-0.29455474,-0.112656325,0.041141577,0.6760312,0.8082898,0.0047622123,0.27016357,-0.11464167,0.29416484,-0.19908592,-0.5589798,0.44827923,0.8135975,-0.09833015,-0.33809033,0.664107,0.5298982,-0.06171549,0.46668246,-0.57770103,-0.3644663,0.19692558,-0.046942737,-0.23618223,0.23768473,-0.37765697,0.2776355,-0.7544497,0.17998126,-0.24249245,-0.6455626,-0.6437895,-0.17574221,-2.9849477,0.27745253,-0.23149848,-0.20343456,-0.06591799,-0.19937316,0.37372166,-0.6027105,-0.5608822,0.12563911,0.12724322,0.71910274,-0.047306027,-0.029238295,-0.24044566,-0.27477008,-0.31792918,0.037640683,0.27531275,0.30965558,0.084317684,-0.47069508,-0.1396746,-0.22748362,-0.33697775,-0.01314273,-0.5784855,-0.47296908,-0.12134685,-0.5940802,-0.28482345,0.61677945,-0.11183548,0.11541703,-0.2616104,-0.051439404,0.034615453,0.28167227,0.01739512,0.041861605,-0.09422293,-0.0015963119,0.04761599,-0.22944307,0.17422818,0.009167449,0.27922556,0.20820658,-0.14403374,0.11654483,0.54586196,0.66590023,-0.14804384,0.8189526,0.56271374,-0.12646647,0.23310633,-0.06626304,-0.21385437,-0.4688235,-0.29078844,0.016380815,-0.42633644,-0.31368592,-0.054191317,-0.4048252,-0.8162417,0.45019862,0.01320254,0.32883435,0.019130968,0.12972671,0.5238944,-0.013098885,0.00054690044,-0.0076106032,-0.19680697,-0.4887823,-0.2553046,-0.7105988,-0.3007794,0.20136467,1.1025233,-0.2160622,0.0444301,0.09081017,-0.2756609,0.04799215,0.1714504,-0.117581464,0.1094624,0.4072205,-0.20865259,-0.5620556,0.29847756,-0.16345319,-0.1976557,-0.51067454,0.10021059,0.60345244,-0.6713569,0.5670597,0.21629328,0.109667875,-0.32925686,-0.68543684,-0.16641411,-0.018563956,-0.29792678,0.58666766,0.30320606,-0.7533375,0.500527,0.19753443,-0.20036982,-0.5813536,0.5942206,-0.06458602,-0.26917467,-0.23065908,0.27973473,-0.0889324,0.040839028,-0.15949298,0.20839046,-0.28597823,0.16410042,0.20290604,-0.11857471,0.16615249,-0.12815024,0.1286224,-0.59466624,-0.15720204,-0.71337545,-0.37864876,0.21087751,-0.054317586,0.21425529,0.03152496,-0.09485587,0.37083167,-0.24890079,0.1860947,-0.13594641,-0.3074545,0.41586855,0.48874733,0.45351237,-0.35563153,0.66399944,0.12998387,-0.030546643,-0.08118699,0.14691636,0.34810767,-0.04518243,0.41010875,-0.15275885,-0.17827506,0.31470266,0.8195478,0.17559026,0.3194481,-0.08895986,-0.041978635,0.105288,0.019656528,0.23331761,-0.088323444,-0.4765565,-0.08052858,-0.31991467,0.15113595,0.38556436,0.07864834,0.28456464,-0.03542041,-0.30878717,0.053488564,0.08398811,-0.011932389,-1.5895138,0.34762046,0.290022,0.72537774,0.5682392,0.0076915105,-0.18728223,0.6746553,-0.25555325,0.12111558,0.36303428,0.14695594,-0.39951465,0.490864,-0.68068326,0.56723,-0.0053238473,-0.006915214,-0.14494221,-0.06341433,0.4510717,0.7620413,-0.16377974,0.1591265,0.0067848503,-0.25190467,0.07640519,-0.33051687,0.037408534,-0.69855195,-0.30116028,0.6649892,0.473988,0.5032396,-0.09779151,-0.090350404,0.089822784,-0.09223119,-0.0043720445,-0.08035647,-0.05814799,-0.1825718,-0.6685166,-0.26852486,0.43279248,-0.03208723,0.061585806,0.06448696,-0.16305253,0.12949483,-0.021673806,-0.040089615,-0.12075604,-0.6777219,-0.09076259,-0.28690025,-0.23812298,0.60563487,-0.3782791,0.18780512,0.23074862,0.14171857,-0.18617351,0.054215178,-0.029550398,0.7588137,-0.07766433,-0.12729253,-0.42126766,0.17923437,0.1884158,-0.15410659,-0.27870834,-0.3356207,0.09975152,-0.57211655,0.30378526,0.027265104,-0.30319482,0.13100106,-0.13078122,0.0894626,0.4687537,-0.12406371,-0.22901174,-0.012921095,-0.06659362,-0.23648925,-0.20893249,-0.15459304,0.3626427,0.09691081,-0.0101031745,0.02955673,-0.078589104,-0.018674692,0.30131328,0.1925568,0.29101536,0.36985353,0.0135580385,-0.40229687,0.028004888,0.22917925,0.5623917,0.05845158,-0.2527799,-0.34953907,-0.46141407,-0.36201292,0.11713273,-0.0115176635,0.3934656,-0.013256271,0.015638147,0.8167068,0.03965881,1.1002787,-0.028019099,-0.44634208,-0.009166143,0.4521879,-0.053998265,0.007638291,-0.2998129,0.91360813,0.46300173,-0.20192862,-0.16062933,-0.3993337,0.105019145,0.16923085,-0.1257182,-0.2208269,-0.105788745,-0.63454694,0.02402544,0.32696092,0.26360562,0.31565654,-0.049990334,0.03533645,0.21795647,-0.0781645,0.32739064,-0.45792967,-0.008119106,0.19453113,0.19281273,0.08989143,0.08978045,-0.41191167,0.2632028,-0.528426,0.0805056,-0.25072697,0.16261435,-0.12162067,-0.42119226,0.23368265,-0.14648557,0.3930875,-0.45288196,-0.3255969,-0.17087327,0.59543324,0.12031088,0.20172651,0.5764755,-0.31446058,0.04293289,0.04649327,0.44334584,0.92600334,-0.22203176,-0.012721514,0.3541242,-0.27665812,-0.7340645,0.17781143,-0.26418775,0.27330187,0.018728307,-0.26817957,-0.41293296,0.32797006,0.12928452,0.041309293,0.10371711,-0.6240647,-0.1529554,0.27177116,-0.14196669,-0.31994587,-0.3877656,0.16468695,0.42312005,-0.24948142,-0.39454424,0.07301654,0.32169622,-0.0495797,-0.533247,-0.062057387,-0.3767533,0.2859914,0.17925933,-0.29454195,-0.07493493,-0.09938048,-0.40678832,0.18292229,0.22429164,-0.24451932,0.12538293,-0.294115,-0.09597182,0.8558966,-0.20725252,0.10897642,-0.52474946,-0.40564117,-0.6957699,-0.31047317,0.30402228,0.07826466,0.0020406723,-0.7552049,-0.07433078,-0.07947232,-0.032458283,-0.11634214,-0.21879418,0.599448,0.14488348,0.3131708,0.068676315,-0.7849358,0.23831207,0.09122174,-0.11496596,-0.4887461,0.53063214,0.03360359,0.73469555,0.1447256,0.22481711,0.1470408,-0.5023841,0.1290802,-0.22877616,-0.18585502,-0.6613239,0.09506822 -914,0.13668847,-0.17989771,-0.58713263,0.046026066,-0.10506734,0.15121935,-0.4686609,0.256594,0.22621158,-0.47113067,0.17879318,0.07953688,-0.122851305,0.296719,-0.14236388,-0.7636864,-0.093925826,0.17359349,-0.5121006,0.8175077,-0.4602442,0.1784814,0.009538559,0.3273111,0.032202993,0.14075328,0.15653795,-0.19264592,-0.30570185,-0.12867962,-0.019632697,0.29812258,-0.26890624,0.43326774,0.05834198,-0.23175937,0.12403552,-0.27862334,-0.34626076,-0.81650835,0.26607463,-0.67252505,0.5290577,-0.026641242,-0.32141164,0.22345735,0.308187,0.22430651,-0.09905648,-0.16434506,0.1598302,-0.47114384,-0.6822542,-0.4604651,-0.31414744,-0.6143387,-0.63089085,-0.10183419,-0.64785725,-0.0305143,-0.2119469,0.38248938,-0.35948026,0.017521627,-0.24501108,0.55686474,-0.46466783,-0.06442742,0.11830531,-0.23186061,0.10792998,-0.85810983,-0.1753326,-0.020039538,0.1459125,0.36795843,-0.13023211,0.17426807,0.20873639,0.41981637,0.13585247,-0.3205214,-0.51937294,-0.23178719,0.35809025,0.38859436,-0.26240692,-0.2393786,-0.1845203,-0.123658724,0.29758203,0.14691976,-0.0726543,-0.2769875,0.09831648,-0.085032925,-0.36736166,0.27211335,0.51789945,-0.39390054,0.056067623,0.37591383,0.38792646,0.22082582,-0.33369943,-0.050485298,-0.119145185,-0.48003414,-0.05623734,0.16204812,-0.117578655,0.5046533,-0.1153221,0.29023033,0.35240218,0.04178917,-0.26188308,-0.058846857,0.10284298,0.18246533,-0.2044805,-0.14240237,0.23563954,-0.4362152,0.04974673,-0.36227593,0.71865475,-0.215007,-0.6213007,0.510558,-0.38318747,0.039814793,0.12574531,0.76315665,0.7113819,0.70048344,0.12740313,0.97260326,-0.430799,0.05139478,-0.21655843,-0.22576526,0.19428633,-0.030860106,0.37928993,-0.45524538,0.2358895,-0.08916196,0.008883478,-0.119774394,0.799536,-0.33811328,-0.16287269,0.05799313,0.76297176,-0.2923781,-0.11431912,0.6889748,1.1933255,1.0086765,0.16125153,1.1405078,0.35818723,-0.21261175,-0.3252037,-0.18140276,-0.8154119,0.3080721,0.22896744,0.22918595,0.16859528,0.13264778,-0.002684914,0.67842925,-0.1898982,-0.16768496,-0.20898408,0.40075538,0.006906129,-0.034128897,-0.45803085,-0.20264465,0.27630913,-0.12862046,0.4446063,0.28234065,-0.24285914,0.6445445,0.103626475,1.3787643,-0.32670376,0.1584498,0.16653281,0.24567956,0.18467301,0.12107185,-0.0023372374,0.38171107,0.32736397,-0.062055953,-0.6801281,0.13565212,-0.29361543,-0.54769444,-0.15181574,-0.2046834,-0.1226448,-0.12697722,-0.11639782,-0.356208,0.09379576,-0.47237697,0.20895617,-2.7904017,-0.15927908,-0.11274739,0.07944024,-0.0823362,-0.27524948,-0.089983515,-0.4221149,0.7070947,0.233751,0.46142638,-0.38687786,0.39687645,0.5737963,-0.5858257,-0.18720675,-0.7185346,-0.14601663,-0.17720453,0.56285894,0.022714991,-0.4382156,-0.15892312,0.03036026,0.6471894,-0.15234993,0.17036834,0.432325,0.3734957,-0.108610205,0.363599,-0.051533993,0.6934113,-0.30507186,-0.21374395,0.27875048,-0.36437193,0.38486364,-0.30803522,0.1823561,0.45627645,-0.2640185,-0.5988597,-0.35814413,0.074338004,1.2427298,-0.3926946,-0.66498506,-0.01272426,-0.22880028,-0.18384083,0.21616863,0.5181663,-0.12491916,-0.09147132,-0.67531896,0.011748176,-0.019060062,0.34763166,-0.092941694,0.20474546,-0.51223195,0.6564833,0.040166378,0.65441126,0.54424757,0.25652507,-0.38039196,-0.281139,0.041502394,0.822297,0.21763127,0.13998762,-0.3197091,-0.25193548,0.0051693367,-0.161155,-0.13889006,0.6022567,0.5574207,0.036419347,-0.027026312,0.33570635,-0.36383507,0.031162241,-0.2212082,-0.46103546,-0.27291805,0.15262106,0.50710434,0.56539,0.10194295,0.5302107,0.06854482,0.43027642,-0.21371344,-0.4713958,0.58792007,0.6467567,-0.35297972,-0.19335519,0.69298923,0.51771843,-0.14913127,0.54907125,-0.56301886,-0.38932434,0.39191964,-0.13580321,-0.44031417,0.15538679,-0.44984198,0.080954,-0.8997068,0.052190945,-0.44243973,-0.64162135,-0.8621801,-0.059287097,-3.1782975,0.07161224,-0.22901653,-0.095620565,-0.21305138,-0.10810934,0.21054904,-0.4600921,-0.5464931,0.09253058,0.36516184,0.2628915,-0.19779088,-0.17527731,-0.46714354,-0.18825099,-0.0875879,0.32049134,-0.027810883,0.13632053,-0.13204607,-0.5067489,0.14765443,-0.43516314,-0.14436378,-0.09450455,-0.5279697,-0.16831708,-0.011039012,-0.52110904,-0.370238,0.7165699,-0.6523548,-0.033886813,-0.48380405,0.22961777,0.17982458,0.2618726,-0.13379475,0.23388356,0.25600523,-0.19498524,-0.015456214,-0.24782069,0.14835948,-0.03944164,0.17011306,0.5497707,0.13379437,0.053462245,0.57140106,0.7010324,0.040486313,1.0871545,0.48349607,-0.16576959,0.2205682,-0.3105572,-0.10186366,-0.5749717,-0.12553647,-0.021311196,-0.4697246,-0.4568443,-0.07216811,-0.3188572,-0.78346455,0.70564216,0.19052924,0.060011305,-0.02822119,0.4720654,0.32758448,-0.11924016,0.06880255,-0.21416205,-0.15899302,-0.4425925,-0.40663078,-0.8632754,-0.49315643,-0.066958375,1.0152367,-0.2500396,-0.15294717,0.1677037,-0.47818425,-0.10118217,0.31284252,0.24554788,0.25630924,0.3192032,0.2765985,-0.7231188,0.47676343,-0.13724521,0.09708175,-0.51498795,0.22849727,0.6718419,-0.7252098,0.47490147,0.5136372,0.097316876,-0.10869738,-0.8023061,-0.22612807,0.2966758,-0.15277979,0.5336853,0.35840452,-0.69946617,0.75373256,0.317445,-0.18211725,-0.91142815,0.18022561,-0.24954152,-0.11698271,-0.007629688,0.51956207,0.11979438,0.23486987,-0.24779285,0.07576838,-0.480911,0.2832902,0.0076001287,-0.13961837,0.30563143,-0.20307428,-0.13041945,-0.8648077,-0.028010666,-0.47679046,-0.21245167,0.39835614,0.0951254,0.20194568,0.06639142,0.15691456,0.4170162,-0.3291468,0.12888172,-0.16799265,-0.2133785,0.35578114,0.55817217,0.2192029,-0.44867098,0.57618296,-0.11794118,-0.0020941955,-0.16431867,-0.05002649,0.39583635,0.19710436,0.5130371,-0.12058388,-0.048879977,0.20135999,0.983978,0.18978526,0.367615,0.05745451,-0.27954346,0.34113625,-0.062199276,0.13144125,0.015956145,-0.4111575,-0.18985325,-0.20179392,0.27092797,0.5160352,0.20419621,0.6564777,-0.11103185,-0.15256865,-0.047252174,0.14945203,0.15029833,-0.8095474,0.646011,0.14738041,0.6331471,0.5654944,0.22424911,0.08277651,0.69101685,-0.3820412,0.017011601,0.40886974,0.009125965,-0.2900334,0.5880751,-0.84864175,0.10979306,-0.1968921,0.1457545,0.22857645,0.07674168,0.48502022,0.9435317,-0.12618347,0.14834413,0.012170909,-0.23228787,0.13469918,-0.2057226,0.04454114,-0.15161976,-0.4177813,0.52020675,0.35478672,0.45856702,-0.21343888,-0.010246956,0.33077666,-0.075770006,0.3971397,-0.026975665,-0.008398359,-0.1354354,-0.50573236,-0.20803292,0.54308885,0.13718241,0.14206077,0.016443707,-0.21617801,0.46513602,-0.08554653,-0.25340578,-0.0072982437,-0.47413766,0.24263987,-0.15159687,-0.77027345,0.57766,-0.17750388,0.07978906,0.06391208,0.12925996,-0.28454548,0.1396669,0.005703651,0.77949595,0.06675622,-0.13281962,-0.07162829,-0.3194559,0.11739823,-0.23141888,-0.05743124,-0.19398744,0.31077605,-0.76267093,0.45133755,-0.5278472,-0.36282822,0.03360692,-0.2845084,-0.013414552,0.46486458,-0.36825892,-0.1633343,-0.017899577,-0.05459597,-0.19207767,-0.42278856,-0.38567093,-0.0054669483,-0.3499524,-0.025618961,-0.24345867,-0.15252744,-0.2627767,0.36102295,0.09168245,0.08345831,0.3176101,0.18768404,-0.4141159,-0.059695456,0.27962226,0.53499615,-0.07730515,-0.11539796,-0.29531804,-0.28107485,-0.38784328,0.31291822,-0.007178687,0.30471706,0.08656942,-0.5620223,0.85639614,-0.07589729,1.0895038,-0.010903358,-0.52147555,0.07565439,0.6078365,-0.018904746,0.19377872,-0.37751293,0.77612936,0.6009358,-0.07670903,0.021423506,-0.8443073,0.0003815431,0.4636169,-0.33685017,-0.05290321,-0.09213103,-0.69670653,-0.21141627,0.30899176,0.24174072,0.053828325,-0.12504338,0.040979378,-0.025342405,0.46862978,0.2255492,-0.46233404,0.107263215,0.47819236,0.09405173,-0.039167065,0.2023263,-0.2811448,0.24291672,-0.6439724,0.2254246,-0.463731,-0.0056043174,-0.10706313,-0.036929015,0.34635514,-0.026890341,0.16422628,-0.16147563,-0.3751752,-0.023549424,0.4355005,0.2647319,0.26341724,0.7712288,-0.22987741,0.085391134,0.1447522,0.6142541,1.1159263,-0.45588526,-0.058978003,0.15790811,-0.23820662,-0.7952777,0.14584936,-0.3452934,-0.05965381,0.0629566,-0.49081084,-0.58613116,0.13342835,0.068616375,-0.09812207,-0.014019717,-0.36416614,-0.1541854,0.2584561,-0.26258183,-0.10727252,-0.12552814,0.022350889,0.70750934,-0.33761984,-0.4920136,-0.10257328,0.3942943,-0.33407694,-0.55384606,0.17861396,-0.44310564,0.4155729,0.37647772,-0.31522462,0.021521516,0.21110035,-0.6778028,0.09463457,0.40638527,-0.29434225,-0.08365197,-0.32402003,0.2461477,0.816837,-0.17577018,0.17601317,-0.4689485,-0.5538466,-0.7708477,-0.2762679,0.059880022,0.0038648753,-0.115582906,-0.55487293,0.02294296,-0.37618065,-0.09786166,0.04336029,-0.7307719,0.45372418,0.06651092,0.44774157,-0.27516717,-0.939677,0.10441962,0.18755385,-0.05401065,-0.32198018,0.47676805,-0.23114412,0.8875951,0.04987057,0.18125857,0.22868927,-0.61642545,0.3597759,-0.3938328,-0.353226,-0.72849625,-0.03471787 -915,0.39643207,-0.3875062,-0.5192781,-0.20888318,-0.15103935,0.019602988,-0.3258447,0.120155096,-0.01610707,-0.4493707,-0.34883448,0.004969222,0.022736957,0.45291233,-0.052198105,-0.7104629,-0.11431079,0.12463808,-0.75277215,0.5170477,-0.5402446,0.33473036,0.32679367,0.31409952,0.07300084,0.35289827,0.41220075,-0.2384266,-0.16668122,-0.048200764,-0.08006018,-0.0056625134,-0.6840482,0.21572742,-0.22930005,-0.18029599,0.0757977,-0.3455875,-0.14341113,-0.771588,0.120071374,-0.9433885,0.4209056,-0.12635227,-0.17990902,-0.117560916,0.20838879,0.43322024,-0.3515008,0.24575113,0.17375025,-0.30071858,-0.18546124,-0.34465694,0.10236437,-0.43070784,-0.42000017,0.00033953678,-0.6042255,-0.39511675,-0.11230869,0.26346073,-0.3282509,-0.012099162,-0.183563,0.25306407,-0.5686933,-0.1696397,0.2989247,-0.20624979,0.33661428,-0.5096072,-0.02755992,-0.19385436,0.5235793,-0.02897949,-0.033398066,0.40211228,0.36662573,0.4595479,0.28353667,-0.21428397,-0.09617057,-0.18536615,0.4527762,0.510634,-0.058575895,-0.3243208,-0.17696084,-0.06588322,0.30556747,0.30321452,-0.10984535,-0.39025995,0.011106687,-0.15231654,-0.059508163,0.23897275,0.4720096,-0.16987416,-0.30752063,0.24609084,0.59412163,0.1927677,-0.10159589,0.020623889,0.07097509,-0.4941199,-0.16478753,0.4746213,0.029252741,0.46680906,-0.05073111,0.21572042,0.85216874,-0.26449433,0.09838797,-0.32993698,-0.11955496,-0.3145319,-0.12397238,-0.17576681,0.08748255,-0.49970797,-0.03406586,-0.35694242,0.8057815,0.1823069,-0.70706207,0.2722539,-0.50799894,0.19332238,-0.19420251,0.72673446,0.51250964,0.29257873,0.15514596,0.83689576,-0.4346511,0.2484868,0.04204584,-0.51551574,-0.118427165,-0.31888404,-0.0516023,-0.35163686,0.007086622,-0.27478546,0.087013476,-0.19946453,0.3792503,-0.508537,0.02264366,0.0019010731,0.62750757,-0.43281832,0.14062893,0.716568,1.0430491,1.0701396,0.1250464,1.191593,0.6747241,-0.2508636,0.016792348,-0.31474873,-0.65167487,0.18638696,0.40898314,0.37425974,0.22767004,-0.12608388,-0.18653464,0.33234766,-0.58526844,0.26494116,-0.16518055,0.2849485,-0.102467895,-0.0028196913,-0.55631965,-0.0928755,0.059741583,-0.03980988,0.0958286,0.12784924,-0.1942559,0.6412946,-0.045664232,1.1118567,-0.2878452,0.0411083,-0.027923848,0.52222013,0.13483219,-0.12550685,0.008775145,0.33181158,0.7084724,-0.11945362,-0.8011897,0.16903111,-0.3933932,-0.4748167,-0.38880318,-0.43129033,0.043528683,0.067097306,-0.31615138,-0.26361793,0.22765884,-0.3537269,0.436676,-2.4912522,-0.13269474,-0.33305174,0.2375747,-0.429278,-0.04779901,-0.16153963,-0.46376395,0.3168274,0.22418778,0.38457945,-0.6090832,0.4021334,0.50908375,-0.24042985,-0.08695834,-0.7385931,-0.07080218,-0.14486703,0.47493643,0.059781466,-0.06707126,-0.15011682,-0.021942424,0.7571054,-0.16120346,0.14360465,0.477877,0.22271858,0.19658177,0.4785715,0.21242401,0.62678593,-0.41489765,-0.13901171,0.41710636,-0.15125977,0.31675714,-0.21061945,0.20021693,0.45104724,-0.5716346,-0.6941888,-0.91459525,-0.71704113,1.1806327,-0.36872417,-0.59260327,0.18598525,0.29145542,0.11313285,0.11097827,0.5444879,-0.17603967,0.31711537,-0.686951,-0.04174151,0.0882254,0.30179414,0.05320837,-0.0094095785,-0.34283438,0.7544638,-0.098630026,0.47559053,0.3052649,0.4178597,-0.07692892,-0.45429918,0.11768333,0.99263257,0.33085176,-0.12146575,-0.0950017,-0.33351794,-0.15750502,-0.35885555,-0.008762251,0.4410169,1.0434208,-0.05300561,0.11741875,0.23154525,-0.16656876,0.23480608,-0.0847137,-0.3282611,-0.04490481,0.04957178,0.5098957,0.38025302,0.13765046,0.5362229,-0.2723553,0.42835635,-0.053829808,-0.45757177,0.6761103,0.66223115,-0.18416014,-0.017133627,0.48746774,0.5678647,-0.47690848,0.5158729,-0.70107836,-0.33327004,0.7086934,-0.15665682,-0.54850817,0.19690336,-0.21685001,0.3534455,-0.9162928,0.45726267,-0.48939013,-0.5178029,-0.46946308,-0.14773294,-2.9005873,0.24919727,-0.12285795,-0.14150666,-0.1817799,-0.12440598,0.37557217,-0.50436765,-0.45120043,0.15135694,0.14435026,0.56537044,0.081177935,0.08094574,-0.3115592,-0.0047662854,-0.13719878,0.19583665,0.116571054,0.16025905,-0.07274628,-0.33295536,0.14970358,-0.2394903,-0.4357644,0.057420854,-0.58697313,-0.6375775,-0.16428126,-0.45681766,-0.392094,0.5734991,-0.40827796,0.036606733,-0.20297465,0.05538092,-0.24830696,0.2462764,0.14875524,0.33819517,0.10951807,-0.19674452,-0.05782646,-0.36519226,0.47343805,-0.03133446,0.23692706,0.02384924,-0.106557466,0.1966147,0.38115305,0.523926,-0.18057795,0.86442024,0.449178,-0.061997198,0.16129065,-0.3501052,-0.32057813,-0.6069656,-0.42016786,-0.03019424,-0.3643845,-0.74917215,0.06279634,-0.20485233,-0.90691775,0.5530983,0.032005813,0.326447,-0.11710191,0.124855794,0.27707952,-0.07941758,-0.0062904186,-0.12927268,-0.08233947,-0.52316374,-0.33965084,-0.7903709,-0.63005006,-0.10741333,0.8856686,-0.20783392,-0.14045027,-0.11176521,-0.5365029,0.09136175,-0.027504558,-0.026389996,0.2561532,0.3166153,-0.06267694,-0.82776546,0.43151265,0.110610895,-0.0070573604,-0.5308246,0.18198213,0.8369772,-0.8087536,0.42302874,0.40416312,-0.08746598,-0.007611216,-0.4286713,-0.1922883,-0.0047269696,-0.19170026,0.40658903,-0.110433534,-0.5690201,0.5683255,0.19755046,-0.350028,-0.77778023,0.30027002,0.063604996,-0.1343676,0.27181032,0.34130412,-0.28308305,-0.1908954,-0.44149277,0.20164074,-0.40575355,0.32958338,0.2863888,-0.019655185,0.15468082,-0.22375162,-0.40055355,-0.6154658,0.0462609,-0.55041087,-0.1813834,0.40768543,-0.042854395,-0.013936894,0.07503476,-0.024188085,0.4761583,-0.19938615,0.08224275,0.030643731,-0.40184775,0.2352327,0.41162357,0.21521258,-0.39580813,0.6987916,0.24587008,-0.37132916,-0.04358663,0.15941055,0.3950799,0.29456758,0.44426438,-0.27104837,-0.05797539,0.45577186,0.78362316,0.11620026,0.71229947,0.06197944,-0.20638399,0.46659583,0.1818947,0.26348293,-0.07964028,-0.1885451,-0.10451765,0.226856,0.027961057,0.42119798,0.30180553,0.5931896,0.009801409,-0.079373814,0.12300444,0.15232334,-0.08048278,-0.88683575,0.4335056,0.23440523,0.7723767,0.51619476,-0.09140927,-0.0895764,0.599315,-0.35375404,0.057844866,0.23733126,0.08498321,-0.5094233,0.63504666,-0.5963954,0.37870732,-0.19762583,-0.10535137,0.09839703,0.12845993,0.26151356,0.87760437,-0.01482165,0.12763223,-0.1884052,-0.07732974,0.045912094,-0.37379974,0.22799897,-0.4074059,-0.4956726,0.667965,0.2535117,0.24742699,-0.002412231,-0.09079255,0.13907112,-0.23032485,0.3879237,-0.024016205,0.1259117,0.19371393,-0.56290907,-0.1817997,0.5567103,-0.1392322,0.073578544,-0.019117817,-0.35110754,0.036836028,-0.19739333,0.12004926,-0.054143723,-0.70971966,0.09812414,-0.2911705,-0.38130692,0.2640166,-0.30846435,0.18945368,0.20024154,-0.03210612,-0.25654852,0.106296316,0.06971425,0.88148445,0.045299243,-0.39707592,-0.42973083,-0.0070108324,0.4805664,-0.32906556,0.19176218,-0.39789575,-0.08940867,-0.56635547,0.63239205,-0.21071722,-0.41388062,0.37693188,-0.3110706,-0.26898882,0.62283653,-0.10807913,-0.10384744,0.28530714,-0.15998867,-0.36055905,0.12211184,-0.36597332,0.22928461,0.25419462,0.093159206,-0.12765118,-0.12297305,-0.032872457,0.557092,0.10321535,0.53496665,0.30251795,0.0012367581,-0.32979065,0.14191483,0.1703647,0.4154041,0.34668916,0.08914279,-0.37654975,-0.450751,-0.295011,0.079418525,-0.22764094,0.1677715,0.018505152,-0.47695214,0.7803441,0.14800034,1.1582069,0.2038871,-0.36949873,0.008545299,0.4963821,-0.103549,0.090502106,-0.59390396,0.8747638,0.64692384,-0.106120296,-0.10830999,-0.4652774,-0.2736546,0.42050567,-0.31496218,-0.06860109,-0.038668197,-0.68745035,-0.5445924,0.17945279,0.24918249,0.034847002,0.11110829,-0.09159676,0.087866664,0.12074901,0.5746546,-0.79153377,-0.045926154,0.181185,0.13895094,-0.04801831,0.2765917,-0.3217589,0.36492977,-0.7228293,0.20110138,-0.31838205,0.1121115,-0.017935257,-0.4326652,0.17475949,0.06736098,0.3554259,-0.34508,-0.4021848,0.0004830467,0.6898256,0.028722184,0.2625931,0.7026413,-0.3503603,0.23913403,0.24685182,0.5332328,1.3696371,-0.48310715,0.077176556,0.21792743,-0.37138438,-0.57164425,0.5109836,-0.3244987,-0.045536127,-0.20851612,-0.6237365,-0.43421364,0.43897527,0.17377901,-0.15358064,0.11930179,-0.54815626,-0.01556812,0.37583995,-0.22727898,-0.35188296,-0.33789065,0.49621132,0.5794918,-0.42069831,-0.35142517,0.13700397,0.28031984,-0.43989757,-0.44779247,-0.111140184,-0.25541312,0.36228722,0.1109853,-0.26262257,-0.010427869,0.1405116,-0.39766565,0.06546382,0.21959054,-0.36467904,-0.002192378,0.03582811,0.0055318177,0.73384243,-0.16293931,-0.3618045,-0.77155817,-0.29816416,-0.87768936,-0.4927207,0.48938337,0.23357336,0.036788184,-0.39273152,0.13627863,-0.1146289,0.11892813,0.1334509,-0.6415533,0.3406518,0.10051424,0.5811616,-0.16886647,-0.8380622,0.1953676,0.11846594,-0.15457372,-0.63196796,0.5563306,-0.08934783,0.80773646,0.005115297,-0.106723785,0.112930216,-0.42515597,0.11351148,-0.3908618,-0.20972909,-0.8656154,0.118806124 -916,0.5696894,-0.104166426,-0.45902437,-0.20375082,-0.2081976,0.16756018,-0.26366198,0.3074698,-0.008937718,-0.55873054,0.10840875,-0.19234526,0.014032442,0.2969747,-0.19240965,-0.5680977,0.035553474,0.034309767,-0.39968514,0.17965332,-0.5667265,0.41837433,0.07365588,0.20133798,0.012343392,0.3149978,0.2895831,-0.19676256,-0.33020616,-0.24671495,-0.1412426,-0.034308773,-0.549792,0.064842336,-0.15256637,-0.2832023,0.16664651,-0.5490678,-0.41121906,-0.4856262,0.10354004,-0.70471513,0.5277822,-0.023511693,-0.17845106,0.3103072,0.026848076,0.3325299,-0.091658495,0.2108859,0.2814327,-0.261841,0.012059946,-0.1963822,-0.4452377,-0.46822757,-0.5238046,0.0009282725,-0.44839638,-0.20601656,-0.21882643,0.12526669,-0.26923072,-0.054335695,-0.07802271,0.28649244,-0.36032674,-0.023950212,0.11960095,-0.12744352,0.35678446,-0.37868464,-0.19539505,-0.11805181,0.22224608,-0.3575043,-0.16850081,0.38515395,0.31010067,0.45049852,-0.11198455,-0.22870497,-0.43315154,-0.049450077,0.09830298,0.67373514,-0.24780338,-0.25962487,-0.24429357,-0.13162842,0.23599261,0.25045076,0.032404333,-0.33519173,-0.14418793,0.06570572,-0.38863632,0.24860667,0.5210402,-0.40680876,-0.16778843,0.43624127,0.3468461,-0.014754292,-0.1576126,0.04909871,-0.0074700955,-0.45991918,-0.15933216,0.33440042,-0.11004554,0.44366854,-0.0758081,0.3031799,0.7380496,-0.25105178,0.052891456,-0.014768696,0.029213898,-0.0026194043,-0.12870929,-0.20756729,0.21021059,-0.5823359,0.009248257,-0.10106501,0.8259181,0.25758755,-0.9025638,0.4359845,-0.42774448,-0.010675598,-0.064706765,0.45695525,0.5526618,0.5219017,0.089852534,0.6292512,-0.61300516,0.13821876,-0.13450508,-0.3890026,0.11196976,-0.068317644,0.02597797,-0.45083973,-0.13323304,0.14051428,-0.070948325,0.092873186,0.2849747,-0.3331637,-0.004211411,0.22648892,0.7089226,-0.3273642,-0.018262662,0.52470887,0.98557204,0.8544556,0.04120443,1.1179434,0.2719807,-0.27434584,0.15976855,-0.37680444,-0.6442312,0.19700065,0.4046995,-0.165664,0.25453442,0.14583118,0.03754292,0.29817852,-0.26971707,-0.025296554,-0.18829614,0.110927016,0.009764416,-0.053609796,-0.3907831,-0.28212202,-0.054685622,-0.17040838,0.032823578,0.23815009,-0.194853,0.36875495,0.14796335,1.6848522,-0.026859213,0.13160181,0.05643513,0.5321318,0.17662537,-0.11894405,-0.097433135,0.27472472,0.26599863,0.1148983,-0.4031333,0.019658606,-0.04999444,-0.512962,-0.12897089,-0.29228503,0.051915772,-0.10875599,-0.47830367,-0.15206857,0.06921016,-0.33409205,0.6034362,-2.8171325,-0.12170677,-0.11202711,0.36702657,-0.31473136,-0.48655406,-0.13820371,-0.4993839,0.5159024,0.32186916,0.4262566,-0.5724348,0.27662623,0.4277713,-0.2593844,-0.14079654,-0.71524596,-0.086693585,-0.19621775,0.16754821,-0.022919912,-0.0985616,-0.039474927,0.18694581,0.42750326,-0.20167023,0.11247407,0.05577488,0.21858412,0.23529914,0.492702,0.0173518,0.55782074,-0.30187175,-0.21949852,0.22005536,-0.38200387,0.057863526,0.08798872,0.18757096,0.3579663,-0.31523013,-0.78635055,-0.5657988,-0.29428267,1.0700951,-0.30436552,-0.28889516,0.28963494,0.12770298,-0.42073622,-0.0743986,0.28115025,-0.04959832,0.025373623,-0.68024445,0.01497306,-0.085180014,0.13884832,0.0033785552,0.10012158,-0.32506037,0.50722,-0.17964849,0.4756504,0.35885888,0.13617146,-0.15479334,-0.26952735,-0.006852068,1.0271318,0.27416357,0.21154605,-0.18744224,-0.21811163,-0.16546741,-0.22116223,0.16449493,0.27461696,0.73904413,-0.0062263794,0.11418369,0.25871885,-0.12441853,0.07101846,0.019000486,-0.34056097,-0.015608951,-0.09968544,0.55852556,0.44825357,-0.028539836,0.4561897,-0.1316153,0.26127696,-0.29444614,-0.36122826,0.4973414,0.75397384,-0.1273987,-0.18411407,0.5272502,0.47644395,-0.2637292,0.3693649,-0.6569759,-0.28802267,0.45847455,-0.17890829,-0.39028412,0.17966413,-0.27589968,0.113070585,-0.8252589,0.40197018,-0.19678631,-0.43151963,-0.4003155,-0.22492987,-3.5428991,0.07515568,-0.247358,-0.34324986,0.20827194,-0.12820557,0.2712298,-0.58572423,-0.24230304,0.17039678,0.037992742,0.68389565,0.08449887,0.08591621,-0.3421689,-0.18817014,-0.47702694,0.2157236,0.07662979,0.26348183,0.0472862,-0.40639293,0.08376537,-0.30403417,-0.5244993,0.10956888,-0.6454617,-0.39302734,-0.22350346,-0.47175562,-0.5006198,0.6949234,-0.47116628,0.05514108,-0.16958906,-0.034663048,-0.25222045,0.5095249,0.19756705,0.16132103,-0.07340126,-0.035237536,-0.05404769,-0.41011304,0.33093694,0.19139056,0.24722777,0.3788308,-0.14395326,0.08210837,0.53631175,0.58891153,0.03968519,0.68875027,0.35555175,-0.14275832,0.3185193,-0.3752094,-0.1372301,-0.42794722,-0.44563293,-0.0867528,-0.33035585,-0.413378,-0.1528586,-0.3156827,-0.73183703,0.52337945,-0.003182359,0.022471119,-0.08731498,0.16744252,0.2686286,-0.28460634,-0.12727626,-0.015028402,-0.12961161,-0.3647909,-0.3193433,-0.5769944,-0.51013476,0.1638664,1.0346891,-0.007422015,-0.07196942,0.06967397,-0.16081417,0.021492667,0.0038183294,0.022996001,0.21195617,0.34598783,-0.034899905,-0.6478044,0.43774086,-0.20027666,-0.18989877,-0.5984447,0.14651018,0.70213044,-0.5351442,0.4559011,0.41581583,0.24228193,-0.056980718,-0.5659049,-0.2539681,-0.008454651,-0.2858505,0.39567855,0.049932104,-0.782738,0.5485985,0.42236272,-0.38107055,-0.54598993,0.49943987,0.0629652,-0.22392611,0.17095174,0.26481742,0.013431888,-0.04298333,0.032734107,0.29055434,-0.50322837,0.31655484,0.46287137,0.07800083,0.47330886,-0.13754013,-0.044568487,-0.5429956,-0.105299816,-0.24562413,-0.297042,0.11966469,0.0040179268,0.1640487,0.22340861,0.059057746,0.3444962,-0.3812481,0.0862035,-0.046479516,-0.13040942,0.2629935,0.36930338,0.45407012,-0.3927325,0.55235803,-0.053318866,-0.013817221,-0.24794249,0.00033948943,0.4949865,0.24669844,0.1759846,-0.11699475,-0.33946717,0.19816263,0.6284243,0.30713174,0.45952997,0.18201,-0.14300567,0.1575452,0.17983893,0.041818436,0.28346652,-0.3560133,-0.07771765,-0.056804247,0.17797995,0.3907097,0.004262425,0.35421923,-0.25918132,-0.1250217,0.11339479,0.06380226,-0.19483909,-1.2120042,0.3189647,0.15598094,0.62743926,0.27656567,0.040884417,-0.011461921,0.66735315,-0.28761047,0.087703556,0.13256584,-0.0722858,-0.39313895,0.57204336,-0.60728884,0.4424612,-0.050243415,-0.018042916,-0.028477013,0.019405544,0.39753157,0.83130014,-0.084932625,0.1868965,0.042263135,-0.3870769,0.20840345,-0.21610728,0.20164967,-0.4938746,-0.15517597,0.6458576,0.24468523,0.32828525,-0.08009709,0.020222604,0.020805644,-0.08662196,0.1392425,0.07369283,0.07539363,0.105360545,-0.56134844,-0.34583881,0.60473174,0.02189097,0.08473013,0.067012504,-0.2067649,0.2889698,-0.16831261,-0.026904546,-0.038034387,-0.55568206,0.019387597,-0.3414473,-0.40967488,0.22589815,-0.17846364,0.31582597,0.16746804,0.014429372,-0.20006827,0.545375,0.44002777,0.8277758,-0.11871658,-0.22079271,-0.3492418,0.03287793,0.26877218,-0.18421927,0.009616416,-0.32191423,-0.08294554,-0.5511361,0.21696654,-0.10696236,-0.21445161,0.15999633,-0.099999435,0.064085685,0.5233847,-0.21339491,0.033489488,0.02036034,0.0055134017,-0.3203243,-0.1326389,-0.13316229,0.19343613,0.12258677,-0.060840257,-0.010697246,-0.116113536,-0.052643955,0.31232446,0.18108194,0.36159766,0.34392452,0.16623704,-0.35780603,-0.14517897,-0.09273154,0.40028262,-0.060375713,-0.08529326,-0.38653165,-0.3482187,-0.14545575,0.14767708,-0.18114334,0.22428273,0.06592414,-0.25187606,0.7717334,-0.24313504,1.0326176,0.08344102,-0.31740743,-0.015054956,0.34341356,-0.019828197,0.1505368,-0.36308533,0.89995694,0.4753083,-0.015295692,-0.1263341,-0.2950331,-0.2348561,0.12526847,-0.2091039,-0.24607202,-0.015889484,-0.57149196,-0.32385737,0.2377083,0.040237635,0.19151369,-0.017862529,0.10094908,0.34515017,0.22610591,0.4523562,-0.41593572,0.006684959,0.34739596,0.36028367,0.07082122,0.22777233,-0.38812548,0.35583246,-0.4772907,0.090423636,-0.30178005,0.16501729,0.0010344274,-0.20055868,0.22426675,-0.027868073,0.39760494,-0.16929865,-0.31156635,-0.047112368,0.5638283,0.11294228,0.35509562,0.66425925,-0.17011245,0.09638988,-0.027593197,0.36910367,1.0779295,-0.312788,0.015964106,0.615526,-0.21242827,-0.6458473,0.25289416,-0.24588762,0.13988349,-0.16989292,-0.24612336,-0.27768055,0.27411306,0.19323146,0.038344894,0.11512795,-0.37879318,-0.15864842,0.45947897,-0.30700037,-0.4158023,-0.33955437,0.21445006,0.72064453,-0.35015565,-0.24567494,0.015651949,0.33862007,-0.23089212,-0.34457114,0.024026502,-0.27416182,0.24087185,0.18605956,-0.2690757,0.03800022,0.0012807772,-0.25658488,0.1976593,0.19774082,-0.36825898,-0.030755648,-0.22764774,-0.05829452,0.8217265,-0.070888735,0.024039686,-0.64788485,-0.5437082,-0.92448545,-0.46613613,0.44367915,0.15767837,-0.04096578,-0.34358445,-0.06647642,-0.05578964,-0.08914698,-0.078674875,-0.4634562,0.38233984,0.14188139,0.3447227,-0.04588419,-0.5996304,-0.0011420287,0.09345427,-0.19670668,-0.55145675,0.49591962,-0.21352394,0.87471,0.100774854,0.04778491,0.14863652,-0.3833906,0.10956474,-0.26370755,-0.28858516,-0.72482413,0.1357871 -917,0.3677995,-0.20270914,-0.7358462,-0.11849105,-0.11465642,0.09756983,-0.26647398,0.26688033,0.060742054,-0.58052915,0.13968796,0.02723244,-0.09971419,0.19802967,-0.03567486,-0.47556677,-0.032692753,0.1833528,-0.5217727,0.5251777,-0.61626834,0.4207745,-0.10180949,0.19422837,0.051430877,0.31167284,0.010629456,0.19159164,-0.13865267,-0.09241365,0.17817558,0.303864,-0.43016022,0.20322101,0.08332356,-0.45760533,-0.2198122,-0.26284713,-0.33935675,-0.5212791,0.2178501,-0.74731326,0.55764514,0.015188352,-0.20271476,0.17187375,0.2577762,0.29084784,-0.3020987,0.13858399,0.14853004,-0.29034567,-0.20585082,-0.34352043,-0.16981909,-0.22055626,-0.585923,0.048620462,-0.5828988,0.04157429,-0.24202043,0.17382485,-0.3658611,0.0883971,-0.35582626,0.43865046,-0.49866873,-0.07994409,0.19355613,-0.07960708,0.2901947,-0.5427962,-0.13343999,-0.11420823,0.0059760334,-0.35107213,-0.34721556,0.22418477,0.22958733,0.48051327,-0.01488416,-0.15043242,-0.4033914,-0.23945467,0.31314194,0.43561035,-0.13961665,-0.190211,-0.32235643,-0.09604652,0.18776041,0.15645064,0.0082511185,-0.32399192,-0.08459498,0.055546466,-0.23164867,0.3428227,0.55411124,-0.26969114,-0.16707209,0.43692267,0.665614,-0.024958221,-0.22472961,0.23181272,-0.019025998,-0.4273424,-0.26111788,0.1644137,0.023404999,0.4435654,-0.21089596,0.2143274,0.503955,-0.31146362,-0.13689372,0.31326395,0.13295165,-0.008872652,-0.3465896,-0.2734405,0.1913347,-0.580578,-0.01046611,-0.20016076,0.56717485,-0.04906068,-0.73304206,0.38614905,-0.48073986,0.13751313,-0.11090568,0.610693,0.7289838,0.50096565,0.13797612,0.66670674,-0.37866768,0.06482918,-0.12084573,-0.32086167,0.06475191,-0.010323143,-0.056766566,-0.69151664,0.10421093,0.07301482,0.022587113,0.034705576,0.66782266,-0.37541825,-0.14627251,-0.01233238,0.6126472,-0.40187803,-0.00092287065,0.7128988,1.0341232,1.1168945,0.14840953,1.1465067,0.23521128,-0.13610823,-0.081484206,-0.23841757,-0.6994077,0.3199033,0.28822067,-0.16163383,0.3800996,0.010313044,-0.0035391252,0.5452509,-0.29834,0.15702938,-0.08892848,0.2891102,-0.11368539,-0.15744396,-0.3058788,-0.24301186,0.06290891,0.1140258,0.12636882,0.29941547,-0.35666314,0.43379492,0.23399691,1.5246087,-0.0885131,0.20885691,0.08476225,0.24662304,0.19713154,-0.3047963,-0.051215615,0.1616282,0.3682508,0.09286092,-0.5820065,0.03596312,-0.07366764,-0.6056729,-0.2765811,-0.33079913,0.030607883,-0.4006497,-0.50697744,-0.067114964,-0.031196969,-0.5235334,0.3359266,-2.588998,-0.19321045,-0.121130206,0.24127324,-0.13678977,-0.46844834,-0.2096139,-0.39750415,0.47530332,0.23731993,0.3916645,-0.58468944,0.467333,0.44286278,-0.33052203,-0.02781679,-0.60072714,-0.106267855,-0.1666206,0.14421968,0.06474505,-0.12248561,0.016587079,0.22723444,0.45994198,-0.47546548,0.12832077,0.28029364,0.28450242,-0.014399076,0.39128685,0.02338467,0.5396577,-0.38812727,-0.3343963,0.42264616,-0.4641779,0.07926867,-0.046029624,0.16319631,0.27040577,-0.5466496,-0.89424896,-0.5939969,-0.11977456,1.1825782,-0.293133,-0.37560555,0.16662788,-0.4568644,-0.566519,-0.021478863,0.25446558,-0.29657206,-0.011199995,-0.9147073,0.17148843,-0.21674706,0.19474907,-0.1034119,0.07431717,-0.41904965,0.48207793,-0.022371883,0.70309937,0.5384033,0.1529683,-0.46895558,-0.31172153,0.11762928,1.0911019,0.42427,0.12759286,-0.27915376,-0.12302272,-0.24533828,-0.005984763,0.27254397,0.36851442,0.5961661,0.0887657,0.2039538,0.28559726,-0.038665485,-0.07636959,-0.29937324,-0.26589176,-0.01478279,0.19837971,0.6152417,0.4751396,-0.11822455,0.3839708,-0.07727257,0.19474371,-0.29774156,-0.5621525,0.41487166,0.86902547,-0.09918329,-0.44483358,0.6865143,0.5789999,-0.35862365,0.5187564,-0.5230914,-0.31107318,0.20804943,-0.22366025,-0.22468857,0.24035184,-0.4461324,0.21536082,-0.89774555,0.19830431,-0.30640706,-0.6435193,-0.55006194,-0.27873343,-3.1193593,0.1695525,-0.122893825,-0.13781983,0.038169798,-0.2024157,0.33663946,-0.5861359,-0.61744434,0.06855782,0.14025424,0.74153084,-0.043813042,-0.09467627,-0.13685554,-0.18998976,-0.17116831,0.17283176,0.07948094,0.2205781,-0.043511476,-0.54433435,-0.13113423,-0.24052788,-0.48338223,-0.117778346,-0.53433865,-0.34118265,-0.07694904,-0.43057054,-0.4973999,0.5940207,-0.30809453,0.033461574,-0.22073932,-0.028104817,0.08824679,0.48030108,0.033892397,0.30662748,0.099458024,-0.083449624,0.13563754,-0.31376126,0.07022424,-0.035706267,0.08186164,0.5688824,-0.17067403,0.1723334,0.50842136,0.7141233,0.05818517,0.88823,0.5096426,-0.13879697,0.32303265,-0.35616022,-0.15176061,-0.5648878,-0.37362975,-0.12975805,-0.51596457,-0.42081082,-0.0030136586,-0.31051537,-0.9038721,0.53836465,0.08010103,-0.006410527,-0.086571105,0.3515833,0.29621252,-0.106187776,-0.084924854,-0.21838503,-0.19703637,-0.29797044,-0.41582984,-0.72194993,-0.53050876,-0.030285845,1.2522156,-0.15550508,0.061507735,0.04361816,-0.0829316,-0.029879402,0.38175932,0.17162517,0.32272342,0.29368085,-0.10678436,-0.48104572,0.24824886,-0.17777987,-0.32384953,-0.67486596,0.105514556,0.74707806,-0.5802856,0.53396946,0.3880588,0.16358696,-0.19435903,-0.6828172,-0.03721048,0.13133423,-0.2650431,0.6470636,0.35001394,-0.88406175,0.52650094,0.4172889,-0.21755616,-0.6954004,0.56704277,0.0022679965,-0.07173126,-0.15091158,0.37900004,-0.18296392,0.011069016,-0.21990551,0.16166203,-0.3530463,0.25716284,0.32806972,-0.028608467,0.3380237,-0.36273292,-0.15241887,-0.6186336,-0.10781917,-0.53735435,-0.13101342,0.15756266,-0.029613435,0.2254902,0.308579,-0.19329469,0.4548815,-0.3850802,0.030646503,-0.07781218,-0.36686122,0.27459425,0.4482271,0.23897089,-0.28853875,0.6604528,0.010281102,0.0025819181,-0.33628574,0.108146794,0.6023937,0.05470585,0.5027226,-0.0060555856,-0.12989661,0.40207958,0.8278439,0.2491712,0.37140286,0.24237886,-0.15564531,-0.0020888646,0.11580858,0.26960003,-0.062028266,-0.27603582,0.052601464,-0.053931538,0.32459226,0.52111495,0.0416319,0.6284491,-0.18349586,-0.18925115,0.057099115,0.22465767,-0.13467526,-1.4402139,0.5687138,0.15571252,0.63905805,0.62351793,0.10574996,0.13380685,0.35261768,-0.42756864,0.14902586,0.2603316,-0.14803705,-0.3845951,0.520416,-0.78499275,0.5126977,0.040426724,0.109570056,0.02749091,-0.107375145,0.62233794,0.87554806,0.020632155,0.23645642,0.11042306,-0.30957374,0.2075319,-0.26463482,0.05254955,-0.4950154,-0.26540294,0.9418915,0.27992868,0.5099422,-0.138256,-0.04510965,0.22588424,-0.09502697,0.15611601,0.044671185,0.23013668,-0.1465907,-0.5556785,-0.23421392,0.49545687,0.17501512,0.12168304,0.23902825,-0.26777062,0.27625504,0.08975924,5.741914e-05,-0.012667402,-0.48312765,0.037647106,-0.3628358,-0.53175366,0.2722967,-0.40844128,0.22997561,0.20905113,0.090477385,-0.4108728,0.29691112,0.18623374,0.6461595,-0.07863327,-0.08885152,-0.09128233,0.29980385,0.28561553,-0.0960028,-0.18829224,-0.2758141,0.24147753,-0.8086258,0.36816946,-0.1662912,-0.46644288,0.34467018,0.006483223,0.0074733696,0.49395484,-0.28679687,-0.32067972,0.1806293,-0.14105406,-0.30581027,-0.43304306,-0.16792887,0.32812914,0.018065779,0.0006468296,-0.08448648,-0.028622698,-0.08056946,0.28758752,0.19647928,0.2755538,0.42205957,0.14216277,-0.5252786,-0.061222915,0.20177121,0.4832873,-0.06414883,-0.01249302,-0.32806903,-0.42207292,-0.16096407,0.23489715,-0.14272591,0.22856261,0.055617783,-0.31595346,0.90111697,-0.1563371,1.0856537,0.120582424,-0.3887793,0.13137044,0.36585945,0.025171006,-0.1459918,-0.17684917,0.9317866,0.58842593,-0.12600479,-0.23600303,-0.44425452,-0.068977885,0.10622649,-0.23849821,-0.36399633,-0.019978713,-0.73570454,-0.23843284,0.2167642,0.18545713,0.097232595,-0.15135893,0.19633046,0.32042155,0.019132806,0.025952585,-0.5282822,0.1428327,0.34866175,0.2336021,-0.06620562,0.011261312,-0.46373138,0.3095969,-0.6294411,0.109144025,-0.033054825,0.09440837,0.04914736,-0.19770902,0.318665,0.09084125,0.054167334,-0.22453594,-0.21278232,-0.1814656,0.51559275,0.008776586,0.09221731,0.8150585,-0.27180442,0.24208139,0.07062044,0.400329,1.0885146,-0.19334705,0.02138151,0.324034,-0.26292342,-0.770274,0.25252792,-0.34136245,0.2201534,-0.02945995,-0.37305185,-0.49357042,0.285412,0.09224645,0.03246329,0.18303002,-0.37847763,-0.1178297,0.24303026,-0.29095522,-0.1888972,-0.3598776,-0.11462583,0.57219964,-0.20622468,-0.29108107,0.07828101,0.4164322,-0.2510456,-0.43003088,0.03638145,-0.34182325,0.25497857,0.12927598,-0.2453948,0.0811427,0.17103125,-0.3890503,0.1063554,0.43294924,-0.22157246,0.06768618,-0.34137923,-0.13604549,0.7573759,-0.34910393,0.10155233,-0.4441842,-0.60261357,-0.8178428,-0.19276682,0.41881326,0.052629273,-0.11108477,-0.70650953,-0.0020315489,-0.010873961,-0.13300519,0.005606691,-0.41090053,0.5146722,0.07835876,0.13818555,-0.0242686,-0.61997205,0.091017984,0.12937325,-0.1482181,-0.42328194,0.56219697,-0.10547383,0.6887853,0.1614324,0.107003726,0.34975183,-0.7420813,0.23481494,-0.14566745,-0.116588,-0.7366069,-0.15770312 -918,0.17503585,-0.34584734,-0.7015689,-0.14277412,-0.3849735,-0.026464125,-0.38634896,0.27902016,0.034521505,-0.27110374,-0.21703659,0.07197166,-0.0050821207,0.2648256,-0.19612814,-0.4528922,-0.21949951,0.21103425,-0.83288604,0.5053921,-0.5489669,0.26790148,0.001198257,0.47067606,0.06339536,0.2656447,0.28768027,0.025830412,0.10273785,-0.18811469,-0.08454567,0.2934384,-0.5371013,0.25430182,-0.21959615,-0.62838775,0.029584214,-0.4575748,-0.019182742,-0.8476015,0.2800318,-0.9129389,0.56090504,-0.15425144,-0.2371978,-0.011118129,0.34965575,0.3743831,-0.17090571,-0.13479592,0.37273192,-0.13894634,-0.25584733,-0.35890555,0.06403326,-0.2470619,-0.3690339,0.010872508,-0.61821944,-0.32284883,-0.21788251,0.35262856,-0.2674615,0.06956344,-0.24299127,0.3547515,-0.41353962,0.07404568,0.0670605,-0.12323105,0.2630408,-0.61960036,0.09460921,-0.12702322,0.5430908,-0.15176491,-0.23382698,0.22543995,0.1286505,0.34258676,0.057548095,-0.17345947,-0.23211907,-0.16375408,-0.021213502,0.45921394,-0.25491512,-0.28683278,-0.14846192,-0.017973185,0.42927146,0.38320664,-0.0360095,-0.23639087,0.03359774,-0.25394103,-0.21507676,0.6401429,0.43174925,-0.2303877,-0.24146323,0.3383458,0.6174445,0.26342204,-0.32523245,-0.06615217,-0.047837455,-0.52844036,-0.13500714,0.118050836,0.115394294,0.4017334,-0.17404164,0.3896245,0.71235114,-0.03459452,-0.10621085,0.13001674,-0.0353025,-0.2076785,-0.14376928,-0.2728187,0.18153997,-0.563891,0.1482582,-0.23720114,0.7000496,-0.015788613,-0.9132164,0.46838114,-0.5699336,0.044619042,-0.060260523,0.5606257,0.55027145,0.62196034,0.17696774,0.7017348,-0.22975738,0.20153223,-0.1916318,-0.28996268,-0.058652263,-0.13684602,0.11140531,-0.47814667,0.16805644,-0.28654632,0.2340705,-0.047758486,0.23012601,-0.49115214,-0.15948214,0.22452547,0.637077,-0.347388,0.017772734,0.8186066,1.0010939,0.9688535,0.100531824,0.9617974,0.024240104,-0.16293858,0.0127625065,-0.012554675,-0.777375,0.20536841,0.45721066,0.16128632,0.16023491,-0.0991201,0.12264368,0.45677546,-0.25580904,-0.16265272,-0.19166107,0.2896695,0.12496519,-0.016737664,-0.35026208,-0.23330192,0.193835,-0.031773485,0.044554442,0.20645611,-0.23005497,0.4500548,0.15657325,1.3524374,-0.13703072,0.11305956,0.14285137,0.5135839,0.2159486,-0.1236398,-0.09995911,0.2523742,0.39747766,-0.02722498,-0.5832508,0.26622504,-0.21677692,-0.46990636,-0.061179694,-0.28182352,-0.3419167,0.012829469,-0.4649457,-0.30394664,-0.09408712,-0.2480495,0.31191155,-2.888921,-0.23607671,-0.07614759,0.2809632,-0.15716441,-0.36867675,0.0032049443,-0.5667283,0.4171522,0.23278524,0.52021706,-0.51265734,0.62779146,0.42220464,-0.5500539,-0.22986047,-0.7367067,-0.1076951,0.034396045,0.43377006,0.057513643,-0.09385156,-0.24795644,0.07457589,0.5831097,-0.14718087,0.15512626,0.4444908,0.3855028,0.14966221,0.5948655,-0.03621049,0.5769293,-0.5672003,-0.24283928,0.28545073,-0.38702166,0.20149408,-0.08513541,0.08969164,0.5546142,-0.6245665,-0.84961456,-0.73800546,-0.19771276,1.1968793,-0.2002788,-0.3814502,0.17067565,-0.37889862,-0.14453988,-0.00543197,0.46969032,-0.12220511,-0.010282661,-0.66533977,0.04416511,-0.18907662,0.37192702,0.038991645,-0.1554104,-0.4600173,0.61735564,0.020618105,0.6245666,0.271884,0.13416363,-0.30515692,-0.196719,0.09813207,0.61305594,0.28172353,-0.011311556,-0.1221591,-0.20537949,-0.18189968,-0.10061312,-0.02772677,0.66674066,0.54246694,0.051290233,0.2049082,0.25556538,-0.0872449,0.13277586,-0.29107907,-0.2362067,-0.1496847,0.16637845,0.4113483,0.52831036,0.07682275,0.40940443,-0.14229439,0.29080555,-0.1425566,-0.530003,0.5851969,0.48949352,-0.07570964,-0.10751889,0.50063425,0.6383362,-0.38574448,0.44829747,-0.5109592,-0.21425812,0.5095079,-0.25179014,-0.47486934,0.06633768,-0.23699994,0.13121435,-0.6541582,0.12856503,-0.60193205,-0.6284973,-0.44363737,-0.078890614,-2.9984293,0.27716303,-0.08006623,-0.2621433,-0.38797697,-0.2599115,0.25561535,-0.4951576,-0.6631847,0.048609685,0.236445,0.5798029,-0.02332434,0.054360185,-0.2718021,-0.21313643,-0.02294445,0.347442,0.1094375,0.22691023,-0.20564692,-0.3011422,-0.15730496,-0.071582936,-0.4270976,0.030987075,-0.5796007,-0.32931703,0.053258467,-0.47334608,-0.30356425,0.5211713,-0.2565132,-0.015852584,-0.24624902,0.001520291,-0.12495818,0.32142475,0.14902519,0.23014541,0.11742555,-0.12107152,0.12655802,-0.35152873,0.36303568,-0.103416175,0.23881464,0.08058306,0.035007868,0.24141036,0.35562694,0.7736173,-0.17168576,1.1796728,0.33186632,-0.050930675,0.37129855,-0.3178966,-0.54095477,-0.594118,-0.055187225,0.003502454,-0.29154798,-0.2894598,0.18681277,-0.19769521,-0.8252602,0.7924342,0.17344035,0.10318639,0.026037136,0.401672,0.3446213,-0.17847109,0.03092323,-0.13420409,-0.105329014,-0.5261643,-0.29903677,-0.718842,-0.47678736,-0.33723775,0.98771363,-0.29170647,0.18426718,-0.020867428,-0.21521349,0.06193685,0.22419001,0.12219032,0.4965857,0.4221151,-0.060125668,-0.62654275,0.34971294,0.027312418,-0.17272766,-0.34918645,0.1891797,0.67968196,-0.6229653,0.40181383,0.26232806,-0.014018538,-0.22898476,-0.62604976,-0.07350438,-0.10515106,-0.16218095,0.48468998,0.3193619,-0.94994706,0.55957764,0.4256592,-0.2835308,-0.8565088,0.36238825,0.050498847,-0.32322264,-0.18881802,0.28700283,-0.01867204,-0.11221566,-0.24211572,0.16311155,-0.30963987,0.2890032,-0.037316445,-0.07431553,0.22506136,-0.33322108,-0.22913544,-0.5663155,0.07197385,-0.6354953,-0.2734922,0.3616718,-0.03037708,-0.096077375,0.31060788,-0.06255341,0.36392632,-0.29780385,0.127966,-0.12396785,-0.35423395,0.013435721,0.45393372,0.29168865,-0.40128437,0.5297479,0.059236035,-0.1525734,-0.060586423,0.027994772,0.45080277,-0.076157965,0.40630364,-0.26844093,-0.17779505,0.35364607,0.9272416,0.20621085,0.43704364,-0.28858268,0.013048108,0.30334827,-0.01171298,0.25783458,0.10994825,-0.4583303,0.067535035,0.012310912,0.1158821,0.55760694,0.064706825,0.36039087,-0.008581544,-0.1506625,-0.031073553,0.22874542,-0.029782772,-1.0999082,0.5798848,0.27209747,0.89784145,0.51326257,0.18782811,-0.12454464,0.8671647,-0.4120612,0.100069545,0.40897587,0.07029113,-0.33007017,0.7722723,-0.6748781,0.39353418,-0.14432295,-0.108280264,0.26392674,-0.064961076,0.3269895,0.7895875,-0.19565193,0.09737182,0.042996615,-0.19144171,-0.0957332,-0.2896462,-0.17455769,-0.26918504,-0.32091412,0.78307825,0.458058,0.39818347,-0.27427745,-0.035108868,0.030636316,-0.08520895,0.16595863,-0.07098734,0.036875576,0.039364632,-0.36706778,0.0042531244,0.7154133,0.28242928,0.21728896,-0.25067607,-0.4333776,0.24880351,0.006748654,0.012975027,-0.13558485,-0.52919894,0.32709888,-0.30645877,-0.41472924,0.5795178,-0.19396318,0.0142324595,0.23104693,0.058337193,-0.031642526,0.34563997,0.06825038,0.55451095,0.071083754,0.06312609,-0.27460745,0.09916567,0.15750238,-0.24831742,-0.043557715,-0.43400046,-0.021777915,-0.60240215,0.48660812,-0.056340754,-0.50300646,0.25864545,-0.11706068,-0.032716002,0.65250427,0.05543219,0.036936592,0.08131411,0.036381785,-0.31053022,-0.29120937,-0.20325685,0.19193478,0.22549927,0.18010823,-0.28924128,-0.12302742,-0.19269444,0.6707272,0.103458315,0.623766,0.054227125,0.07629328,-0.35732308,0.15013301,0.021307299,0.5571623,0.037809312,0.018607581,-0.17982851,-0.24924026,-0.16266392,0.25995228,-0.027839882,0.14620964,0.1032272,-0.2207665,0.8563626,-0.050197188,0.96245414,-0.021683596,-0.29620418,0.21535306,0.48445585,-0.066836536,0.053775445,-0.40707257,0.7990815,0.4288076,-0.08737984,-0.025302896,-0.2646807,-0.16989662,0.14302124,-0.37240136,-0.0041892924,-0.12128663,-0.51497644,-0.43773124,0.23641928,0.20055556,0.09238991,-0.15714744,-0.008759816,0.08417189,0.06020445,0.26515713,-0.5679514,-0.11802834,0.19528024,0.20403564,-0.21300398,0.14628488,-0.48633957,0.4009516,-0.74665433,0.19386315,-0.5936548,0.15673648,-0.21344154,-0.3830175,-0.00066302717,-0.10696385,0.16605996,-0.14018308,-0.4421921,0.010378187,0.23222537,0.17084752,0.33577093,0.50573206,-0.23753352,0.19757748,0.045245234,0.4593346,0.6857628,-0.40803996,-0.20801629,0.2585477,-0.32674593,-0.5512857,0.2690722,-0.25894937,-0.07257595,0.068514444,-0.20639296,-0.18701701,0.23642081,0.30854955,0.13832839,-0.20017119,-0.7025962,-0.030335864,0.39341578,-0.1767519,-0.18705976,-0.2623236,0.33954582,0.72534674,-0.24271075,-0.3883358,0.036219716,0.4141043,-0.23114842,-0.5270061,0.09592139,-0.28149116,0.34553504,0.061802592,-0.38857785,-0.043230385,0.12008896,-0.52253145,0.04852949,0.259549,-0.26998517,-0.015870778,-0.310343,0.13118897,0.95580846,-0.29043978,-0.07624355,-0.30318505,-0.49749467,-0.7769721,-0.23366325,0.24618565,0.2638857,0.094806105,-0.45550752,0.09703815,-0.105452605,-0.40925106,0.14460324,-0.40246102,0.3676876,0.13194913,0.5691268,-0.32665786,-0.8467873,0.268867,0.22264552,-0.030183181,-0.45070148,0.5041772,-0.12448061,0.7944772,0.08608085,-0.14851542,-0.06564424,-0.45809785,0.19500871,-0.3964436,-0.032803617,-0.74234676,0.056464955 -919,0.40767893,-0.13646206,-0.3958264,-0.08981933,-0.14846215,0.12307037,-0.06996768,0.68376774,0.31535864,-0.19441952,0.004232458,-0.20936169,0.11108854,0.52537376,-0.11993955,-0.46245548,0.035939034,0.13452145,-0.49745995,0.6133947,-0.24494243,0.13524912,-0.15578702,0.5487131,0.34903577,0.35714412,-0.14152838,-0.12947963,-0.2529968,-0.10804407,-0.048440885,0.32108206,-0.33436063,0.094232775,-0.20767768,-0.19819704,-0.08270973,-0.6156144,-0.5611666,-0.74468845,0.39309576,-0.81424046,0.44300207,-0.06916058,-0.20465867,0.29917246,0.1633252,0.3688026,-0.31282282,-0.18298118,0.049012896,0.12438363,0.1352977,-0.14798209,-0.252799,-0.44720674,-0.43402508,-0.08139681,-0.39133152,-0.16455977,-0.14209577,0.07939404,-0.2503553,-0.07280874,0.01566508,0.48496744,-0.44558784,0.2896486,0.26387197,-0.03881367,0.29032207,-0.48903847,-0.3017487,-0.11694097,0.26390594,-0.14710076,-0.1305646,0.29805925,0.21898796,0.11735432,-0.3306792,0.05818482,-0.303618,0.025378166,-0.04241844,0.5542826,-0.16486658,-0.649752,-0.09210821,-0.006312021,0.049480226,0.14874645,0.27175537,-0.23171498,-0.012046172,0.0064833206,-0.29966718,0.39141995,0.4354159,-0.19702056,-0.115644924,0.3598218,0.29135412,0.38483745,-0.30307606,-0.073233195,0.086033545,-0.455559,0.043708745,0.0564969,-0.18157928,0.6153754,-0.1029165,0.18701802,0.67780465,-0.05195122,0.02700007,0.0067275846,0.18085851,-0.1441801,-0.2083533,-0.24555029,0.119219795,-0.26441863,0.14861952,-0.107385874,0.59001267,0.22668251,-0.63593084,0.35180405,-0.5639321,0.0927975,-0.15747486,0.23056053,0.63958937,0.3157284,0.29231268,0.50411344,-0.23600136,0.110878065,0.013628555,-0.32302484,0.10040735,-0.26380867,-0.07186993,-0.47459635,-0.060793154,0.08036884,-0.31816146,0.1408314,0.13648292,-0.403475,-0.112870455,0.13579202,0.86818,-0.19979273,-0.099832214,0.7726334,0.9996256,0.8090958,-0.025929397,0.92618024,0.22918548,-0.10551921,0.37625948,-0.2584865,-0.6878037,0.2561426,0.180398,-0.71637934,0.21775672,-0.045679074,-0.11572995,0.25938994,-0.17981097,0.11461949,-0.15608065,0.06018174,0.2204068,-0.14994928,-0.3194437,-0.43043047,-0.34397316,-0.08340378,0.24367502,0.15200214,-0.26742256,0.39459684,-0.033118572,1.6989481,0.116345845,-0.09561484,0.04800648,0.7597813,0.24254496,-0.1649626,-0.19474937,0.35231996,0.4261903,0.146632,-0.52469146,0.31374535,-0.2060024,-0.4439297,-0.053272128,-0.460521,-0.09938253,-0.0079499995,-0.55905026,-0.092458606,-0.1103626,-0.13608317,0.4232184,-3.1727998,-0.123083875,-0.06497941,0.3486088,-0.22793047,-0.119255,-0.110183515,-0.38000804,0.27683923,0.30174565,0.48399347,-0.672211,0.24279632,0.36711803,-0.5412714,-0.14271976,-0.4569871,-0.06949322,0.049967706,0.41454244,-0.07177789,0.2899037,0.40116814,0.21712856,0.40371805,0.118517265,0.23400831,0.18494411,0.34576994,0.13634583,0.4050581,-0.20724429,0.4572073,-0.22335264,-0.10778058,0.21818672,-0.44898847,0.26159662,-0.16634957,0.15611328,0.5149142,-0.350642,-0.8472849,-0.5626561,0.1216072,1.0626304,-0.18018652,-0.35222435,0.11314603,-0.40003613,-0.1856771,-0.05899474,0.60050446,0.008309068,-0.03647999,-0.6524615,-0.13965736,-0.14424597,0.034951795,0.013204319,-0.028041337,-0.10220325,0.5396567,0.15447733,0.4387036,0.1450045,0.06733068,-0.36047056,-0.537144,0.1259952,0.4800342,0.17996319,0.1497778,-0.13496378,-0.1336879,-0.4101171,-0.05698735,0.119248785,0.62837565,0.4711542,-0.07878766,0.2795858,0.24376275,-0.03737923,0.04158557,-0.08552281,-0.21518132,-0.10124608,-0.025142398,0.43925044,0.6374732,-0.20472495,0.62453026,-0.13618214,0.2688198,-0.16329649,-0.38367867,0.5573249,1.1792278,-0.27877957,-0.2996056,0.4316668,0.51742345,-0.2909717,0.31854057,-0.48414525,-0.15645064,0.49807143,-0.1128306,-0.36361584,0.42110786,-0.1763962,0.17497389,-0.82399505,0.17259659,-0.17548086,-0.26945236,-0.44290218,-0.0004207066,-3.0936112,0.12145121,-0.07823468,-0.4626793,-0.15868047,-0.18529561,0.21047917,-0.54426813,-0.53903174,0.1587248,0.12892473,0.64893997,-0.063362345,0.13807903,-0.29485962,-0.145609,-0.23491418,0.15598908,0.14839259,0.5091515,-0.1428062,-0.43734103,-0.15003274,-0.17284557,-0.4082403,0.1044062,-0.6445402,-0.34687927,-0.15565808,-0.6074807,-0.23889992,0.6713415,-0.24406181,0.014590366,-0.16016866,-0.040927578,-0.22038364,0.25613877,0.16255073,0.11474593,-0.019267354,-0.05972467,0.20186456,-0.21360005,0.29314107,0.023843234,0.31779075,0.20266856,0.08528103,0.2332373,0.48784265,0.45996794,-0.12312092,0.8228982,0.4511537,-0.06649352,0.2405732,-0.34781915,-0.16372646,-0.38234633,-0.1602197,-0.14743654,-0.27356258,-0.5482051,-0.16566263,-0.43237644,-0.6486129,0.3866024,-0.13362536,0.20701586,0.09288483,0.10880958,0.590968,-0.179751,0.104415104,0.07157842,-0.073653184,-0.5985592,-0.2640881,-0.47653556,-0.25483546,0.10844408,0.6755136,-0.18493788,-0.028640976,0.0014771564,-0.5188592,-0.064980336,0.12605648,-0.09430926,0.10968663,0.32027718,-0.27752298,-0.6186542,0.385354,-0.23386966,-0.16194856,-0.43153688,0.20469496,0.45718494,-0.57436126,0.70122,0.2840877,0.026446389,-0.3589463,-0.4238607,-0.26106492,-0.068458006,0.005945906,0.26714364,0.22812656,-0.7824101,0.25526562,0.26976848,-0.33870015,-0.5455808,0.69436127,-0.054716546,-0.3511326,-0.19375919,0.24704473,0.137381,0.0021635985,-0.32444185,0.21159227,-0.388619,0.045755006,0.20481959,-0.049912266,0.19580945,-0.11393653,0.0485659,-0.6123609,0.14768808,-0.29116246,-0.30637497,0.41853857,0.06281511,0.26936156,0.026567075,0.14041647,0.1307418,-0.2491373,0.039397832,-0.00012742622,-0.092992194,0.24366967,0.3322867,0.5746204,-0.51625675,0.55777895,-0.050673,-0.082566015,0.45859584,0.23577653,0.26031098,0.28184214,0.3991855,0.1920275,-0.30434713,0.20648208,0.78582495,0.19361487,0.46298796,0.025685811,-0.11618771,0.18697466,0.049825672,0.21330822,-0.02835138,-0.44797254,-0.13065222,-0.34226418,0.19681577,0.39862856,0.078080475,0.18237741,-0.041837517,-0.49596587,0.038348343,0.17618598,0.08400154,-1.3244671,0.36550766,0.32186016,0.861515,0.24990828,-0.053231955,-0.049158845,0.7102605,0.009784349,0.17210974,0.39808846,0.02338454,-0.6204928,0.5960063,-0.68100786,0.48896366,0.06072732,-0.077254854,0.018162565,0.0687593,0.36160856,0.6637449,-0.13632783,0.023759857,0.20267439,-0.51501733,0.066891916,-0.38052177,0.04939537,-0.6405307,-0.20266795,0.51049,0.5735956,0.22633888,-0.17366134,0.08590812,0.082756765,-0.10691334,0.08391573,0.17140071,0.19115864,-0.06998195,-0.776962,-0.16263115,0.48469582,-0.34461552,0.1140831,-0.020732304,-0.16527423,0.35511896,-0.29136112,-0.0037516144,-0.09636663,-0.7739796,-0.019891143,-0.2765536,-0.4346532,0.4944737,-0.15134512,0.27976936,0.20763628,0.0336763,-0.31609896,0.42472172,0.027112825,0.7801234,-0.38736948,-0.12063865,-0.5321628,-0.018891778,0.28944328,-0.16557041,-0.24574924,-0.34261307,-0.060787294,-0.2733901,0.42203665,0.031032374,-0.2064469,-0.32909712,-0.09159284,0.18655331,0.5239839,-0.09457011,-0.18598978,-0.27144605,-0.090291455,-0.53783023,-0.06085189,-0.09029786,0.26640216,0.47253317,-0.17811038,-0.19049838,-0.07908726,-0.004544369,0.31671306,-0.2131901,0.6066832,0.4328416,0.2916452,-0.014538805,-0.1404811,0.37083775,0.4833188,0.0572395,-0.07361841,-0.4114885,-0.36480626,-0.38116223,0.19244789,-0.15931287,0.4343633,0.2320925,-0.22869189,0.64464134,-0.16821899,0.9041395,0.07407268,-0.32379597,0.26039702,0.35619995,-0.0061226347,-0.11914891,-0.32265544,0.78147644,0.44285306,0.008951368,-0.07595886,-0.2323498,0.022994246,0.18139479,-0.19367763,-0.18986215,0.04660616,-0.5484963,-0.085915625,0.15204395,0.23215099,0.410985,-0.1513248,0.103612535,0.1896676,0.10134623,0.21937357,-0.41148907,-0.08994535,0.2922699,0.29612345,0.15129559,0.16743062,-0.52010936,0.37444517,-0.23920245,0.052144635,-0.33568844,0.31365323,-0.18574838,-0.38599712,0.097891144,0.014293969,0.328914,-0.31927297,-0.29487568,-0.48507056,0.439291,0.24669997,0.058713,0.4027617,-0.21861155,0.14767838,0.02810062,0.6774378,0.7456559,-0.23117879,-0.106987916,0.37257996,-0.3953258,-0.73527807,0.3204603,-0.29194,0.5045986,0.0126379775,0.06775488,-0.77630097,0.36194044,0.20162182,0.09227226,-0.21141179,-0.4875245,-0.22205831,0.364431,-0.16607831,-0.29347152,-0.446939,0.12356971,0.39271337,-0.16884105,-0.35302645,0.18881357,0.12580267,-0.13576756,-0.39016384,0.046337243,-0.39455494,0.3278723,-0.07112075,-0.39803305,-0.26699507,-0.15621792,-0.39550117,0.46744913,-0.011019145,-0.307405,0.13224033,-0.20514582,-0.12970619,0.9686914,-0.32911125,-0.036120262,-0.549398,-0.50186265,-0.71597594,-0.52242726,0.2369784,0.15717424,-0.0422537,-0.55095685,0.06181692,0.002060307,-0.1786492,-0.156216,-0.3226831,0.42463177,0.09576956,0.25715384,-0.015029945,-0.8180813,0.21169567,0.07326721,-0.21210109,-0.6733472,0.35995105,-0.115690805,0.83770084,0.047091033,0.19994281,0.3459084,-0.066972725,-0.3103717,-0.17856862,-0.20832255,-0.6004544,0.18012188 -920,0.3205113,-0.026752114,-0.5194866,-0.24391694,-0.32181498,0.20523065,-0.17016196,0.21809898,0.19795407,-0.1586272,0.07600939,-0.29117325,-0.010020864,0.4307704,-0.13873056,-0.7234407,0.11541431,-0.01057239,-0.50525063,0.24011286,-0.5029926,0.4500457,0.18621962,0.2414662,-0.10139048,0.32884076,0.39275798,-0.10684649,0.02503117,-0.15297024,-0.17864746,0.10895432,-0.5500275,0.20513092,-0.13464758,-0.25568634,0.07842432,-0.38649377,-0.26600358,-0.5991876,0.39979604,-0.7170725,0.4228116,-0.050664887,-0.40113768,0.07149574,0.08541247,0.25624982,-0.3186218,0.10865656,0.22291976,-0.279552,0.01241103,0.038245663,-0.40145794,-0.75830185,-0.5136675,0.042891487,-0.6632336,-0.21710531,-0.20793091,0.2914639,-0.31606892,0.079973854,-0.038614783,0.21239503,-0.43011087,-0.18094851,0.24613155,-0.2800569,0.20382147,-0.39252272,-0.047885336,-0.09932385,0.16138433,0.019247206,-0.109983176,0.2300231,0.5261437,0.5005413,-0.0019517422,-0.28996086,-0.19099003,-0.2357159,-0.054231778,0.63270444,-0.0037103256,-0.35845163,-0.2501717,-0.10816596,0.2670436,0.17272943,0.14262572,-0.18554927,-0.18777646,-0.013241311,-0.32376412,0.23931023,0.37832114,-0.5366256,-0.18086673,0.42421785,0.43245134,0.10755723,-0.1571113,0.27846205,0.047114063,-0.4669112,-0.10351137,0.123092525,-0.25362694,0.6661854,-0.22348192,0.3025451,0.8826389,-0.18201883,0.054822557,-0.03149397,-0.1651617,-0.2829437,-0.09384306,0.064080484,0.10028173,-0.5944196,-0.0121258,-0.20667553,0.812462,0.20660584,-0.7041666,0.38665736,-0.39581135,0.14763226,-0.13956961,0.66859156,0.70855147,0.25061926,0.12830104,0.8153875,-0.48057,0.052049406,0.05578501,-0.38361648,0.1293252,-0.14035171,-0.13355139,-0.57035935,0.14327782,0.21244714,0.04813821,0.00053094624,0.2735822,-0.43337065,-0.03162145,0.101060264,0.6685689,-0.39555684,-0.18653803,0.72906786,1.0797212,0.86551434,0.04514184,1.266026,0.27282375,-0.22905485,-0.044914637,-0.25674686,-0.46876898,0.14288399,0.46632302,0.5092022,0.37663853,0.110752575,0.095939316,0.3297536,-0.12762053,0.0015674352,0.04142266,0.13838951,-0.00017338296,-0.14462872,-0.44935513,-0.25493944,0.2373833,0.08468636,0.008883119,0.253726,-0.084886596,0.6153673,0.18835531,1.1687022,0.049370274,0.14842777,-0.085329674,0.5313145,0.20894289,-0.02678315,-0.06217424,0.37993297,0.1511218,-0.021281008,-0.43200856,-0.028194094,-0.31905186,-0.5286129,-0.20089273,-0.3146499,-0.14002034,-0.1729276,-0.45952708,-0.11585279,0.08464783,-0.30971894,0.50917745,-2.6702266,-0.1989655,-0.2542022,0.21241789,-0.22580214,-0.21431176,-0.10000873,-0.4449068,0.2747535,0.57012594,0.37774727,-0.67744166,0.44495448,0.4071654,-0.3029501,-0.12371798,-0.57723045,-0.09199303,-0.1675039,0.38258514,0.10029045,-0.23668177,-0.14604948,0.42807382,0.7500206,0.08371095,0.03549832,0.05934493,0.46968612,-0.023426192,0.45079342,0.19016938,0.5739979,-0.07171165,-0.1382774,0.2940373,-0.43422958,0.4314786,0.07039812,0.1964896,0.2996189,-0.389944,-0.86168766,-0.6214834,-0.346188,1.1701847,-0.39876458,-0.3607751,0.39778525,0.10141737,-0.22993396,0.112525225,0.311512,-0.038043402,0.21048266,-0.5599372,0.11264919,-0.09812068,0.058906198,-0.03279034,0.07022217,-0.20759518,0.794444,-0.18897197,0.40799332,0.29540417,0.15668415,-0.037105083,-0.3773016,-0.060266323,0.8920453,0.497352,-0.032109458,-0.17246242,-0.1985109,-0.27402648,-0.26353118,0.11283756,0.41444713,0.8431406,0.08530211,0.13977996,0.26228523,-0.07563378,0.042191695,-0.035429176,-0.37871906,0.0531754,0.020144071,0.65238434,0.59541184,-0.27972087,0.34762466,-0.082001574,0.29560232,-0.15929084,-0.53749436,0.4204041,0.7690146,-0.13548893,-0.17740999,0.4755799,0.47117087,-0.44977856,0.40055072,-0.5702196,-0.2874547,0.79126203,0.022497552,-0.4009505,0.11541759,-0.3389464,0.052147318,-1.0391107,0.35415137,0.05779384,-0.5963938,-0.4325684,-0.25105676,-3.8212533,0.16915105,-0.14612597,-0.14858979,-0.15062039,-0.043794874,0.37410468,-0.56059664,-0.51902527,0.043743897,-0.0017651637,0.468879,-0.08946754,0.22017889,-0.30994102,-0.14178102,-0.2495318,0.34005347,-0.019098138,0.22266573,-0.14100687,-0.35870656,0.11624008,-0.47412872,-0.4934155,-0.05152433,-0.58694553,-0.6824415,-0.18358779,-0.4514441,-0.13059899,0.68657976,-0.27479416,-0.072584026,-0.30623195,0.06436941,-0.28114453,0.30706793,0.25907242,0.076958254,-0.067848094,0.0039566117,-0.044096116,-0.4048346,0.18367305,0.1666224,0.45475343,0.38686383,-0.15181224,0.15048231,0.6847989,0.52275145,-0.0038554072,0.7158403,0.08032681,-0.11566994,0.41894644,-0.26671284,-0.36817247,-0.7314751,-0.4284816,-0.13574524,-0.44059753,-0.52789503,-0.15693049,-0.23378025,-0.6813982,0.33455405,0.07335984,0.104361095,-0.2302486,0.30342662,0.34770048,-0.2237433,-0.013587522,-0.22214638,-0.2175868,-0.5632064,-0.3995881,-0.6821721,-0.5831651,0.19803964,1.0552088,-0.0047594863,-0.09108629,-0.09438817,-0.24142942,0.014835682,0.005146257,0.36858636,0.21391988,0.16442555,-0.25790575,-0.68753207,0.58812654,-0.15782382,-0.08897182,-0.62039363,-0.19270691,0.52142656,-0.5787892,0.43686435,0.47832006,0.31453797,0.32453588,-0.604709,-0.18265705,0.018688878,-0.1783217,0.5183457,0.11844384,-0.5057917,0.5656137,0.10865342,-0.15064004,-0.49491692,0.46196216,-0.010049725,-0.0756506,0.09332126,0.40169278,0.0687918,-0.19335862,-0.2230943,0.2207301,-0.6349918,0.27885777,0.47029406,0.054836046,0.7342228,-0.07916436,-0.26409912,-0.59149206,-0.22038676,-0.45504147,-0.08486835,-0.050301157,-0.023661708,0.055342697,0.08963833,-0.0008862654,0.42241913,-0.45921087,0.20985264,-0.011815751,-0.28002402,0.51707804,0.50052065,0.414591,-0.4657243,0.6905206,0.13257693,-0.017327992,-0.21089515,-0.07037613,0.55628186,0.22123197,0.32466802,0.016278887,-0.14402083,0.1623883,0.78009915,0.25571266,0.39546824,0.12176197,-0.18253137,0.32886323,0.1813207,0.09366183,0.026399724,-0.32642186,-0.04052667,0.05272003,0.089471355,0.44533527,0.07015261,0.4635538,0.021001657,-0.19281092,0.23066075,0.009445178,-0.11498109,-1.0244625,0.23880698,0.47427782,0.628409,0.3603583,-0.10373085,0.06784188,0.5895568,-0.38081345,0.05088779,0.3175163,0.10417778,-0.5405127,0.61565477,-0.5755156,0.5333794,-0.26514775,-0.016377326,0.23260188,0.06948315,0.3295143,0.8799018,-0.08447354,-0.024724016,0.01181827,-0.3896079,0.15855001,-0.40363467,0.10670081,-0.44970518,-0.22929968,0.6541987,0.31069186,0.16391736,-0.1896081,-0.11411929,0.14834571,-0.064632885,0.17394222,-0.16786991,0.06782161,-0.32381615,-0.59767246,-0.4408376,0.577928,0.19881423,0.09340563,0.07918482,-0.45967835,0.3379684,-0.119034655,-0.025520165,-0.023863683,-0.49299172,0.091970414,-0.24853906,-0.62043214,0.38166025,-0.32919744,0.4147391,0.15187578,-0.02762446,-0.23742637,0.015885433,0.15510072,0.6575038,0.045615498,-0.17187235,-0.36042964,-0.0954247,0.29471138,-0.35889047,-0.23684005,-0.40298596,0.12104106,-0.370289,0.45753974,-0.2800454,-0.34261158,-0.105029486,-0.3234866,-0.040129606,0.16250178,-0.23607506,-0.12338409,0.24235229,0.14257248,-0.22549443,-0.0024683713,-0.36759573,0.36765653,0.029907418,-0.22280788,0.008283397,-0.039039858,0.022268414,0.2769899,-0.031027054,0.11685183,0.1746886,-0.24511372,-0.4229994,-0.08262802,-0.060709614,0.28342324,0.0011181514,-0.033184282,-0.22435111,-0.3957607,-0.2069287,0.13906308,-0.16372363,0.18191756,0.1443591,-0.26307958,0.8841148,0.10090601,1.2557317,0.12069712,-0.4676738,0.0965806,0.6531067,0.1077478,0.12646145,-0.3017926,0.9471212,0.6065758,-0.2359222,-0.38957748,-0.4752899,-0.08932594,0.24290092,-0.2701977,-0.37235054,-0.1171256,-0.6624931,-0.17162038,0.2331199,0.2362302,0.25427327,-0.010155131,-0.031230783,0.12679672,0.10962487,0.5660753,-0.53269285,-0.21660344,0.38543478,0.06506636,-0.11602398,0.039596852,-0.289118,0.47441348,-0.69028693,0.018339077,-0.48070872,0.11720917,-0.17072369,-0.41386953,0.23625693,-0.08118732,0.43076655,-0.177661,-0.30274704,-0.17696747,0.6115049,0.34429625,0.38227966,0.63862354,-0.2490357,-0.12482932,0.057608422,0.436283,1.4034973,-0.13098381,-0.030753434,0.34674293,-0.38381493,-0.55403876,0.15930894,-0.5063389,0.14673106,-0.1337783,-0.4778657,-0.4462663,0.37108943,0.15863006,-0.023871029,0.18248068,-0.36565638,-0.20588198,0.32641163,-0.47558537,-0.37484682,-0.31289062,0.36035812,0.7484831,-0.3466709,-0.34654891,0.028267639,0.3116785,-0.3018773,-0.69115025,0.16054961,-0.16071758,0.44840446,0.04306786,-0.4084192,0.13711624,0.28120574,-0.2599652,0.35178146,0.35871306,-0.35048994,0.099072106,-0.29885188,-0.018967453,0.9407337,0.08475057,0.06895426,-0.9198694,-0.50622904,-0.959784,-0.42459583,0.44316503,0.11261358,-0.10474115,-0.38413396,-0.21899526,-0.13091293,0.061771832,0.16456315,-0.43755278,0.35933763,0.1221124,0.574401,-0.008505297,-0.8307111,-0.07833711,0.06386331,-0.17733309,-0.5502411,0.51702964,-0.24145669,0.66832584,0.18320395,0.0042817434,0.16130833,-0.52767074,0.3273648,-0.31944835,-0.18928975,-0.7477504,0.1282694 -921,0.26562786,-0.13274398,-0.5441418,-0.18539406,-0.3403359,0.1350943,-0.31093884,0.21328121,0.24431969,-0.14541778,-0.14053842,0.017885549,0.15125707,0.39441967,-0.03480705,-0.5492435,-0.17659406,0.24669951,-0.75791156,0.47920057,-0.5295413,0.17549807,-0.06945189,0.41328558,0.086157545,0.4280515,0.12645046,-0.116577946,0.08249054,0.092588395,0.12448208,0.37031254,-0.5048067,0.08370818,-0.3034775,-0.28989857,-0.029451102,-0.3540607,-0.24542148,-0.5552689,0.089106515,-0.86506504,0.51380044,0.016272092,-0.096244484,-0.09548143,0.3416446,0.43953452,-0.42987156,0.05157364,0.2611427,-0.1948731,-0.26212022,-0.27729052,0.059144113,-0.43889445,-0.37190762,-0.17051788,-0.60729146,-0.26638705,-0.13709575,0.20947978,-0.20142587,0.026968349,-0.03197955,0.15111846,-0.44324842,0.11901607,0.3737969,-0.25118938,0.30933297,-0.47490484,0.09574903,-0.023721447,0.5757153,-0.054627817,-0.29512313,0.2943986,0.37143892,0.43318108,0.14807853,-0.2366643,-0.21282856,-0.10862262,0.22985204,0.38463193,-0.24946503,-0.22749491,-0.3095823,0.042003527,0.23551822,0.36506203,-0.14216366,-0.3360934,-0.045650378,-0.08164633,-0.072892085,0.52284664,0.48501188,-0.27676162,-0.32704705,0.31260636,0.6205225,0.41934937,-0.2836773,0.13603884,0.04070456,-0.51334226,-0.20366168,0.14946489,-0.010516314,0.37623802,-0.050835248,0.1648047,0.89269364,-0.054700416,-0.020480545,-0.030559985,-0.09578513,-0.12066985,-0.35260984,-0.035002638,0.110316284,-0.62791985,0.03722047,-0.1663523,0.4443892,0.08157025,-0.6082465,0.34083685,-0.66040957,0.19366251,-0.15092486,0.5587051,0.7486219,0.35853094,0.10233439,0.8908678,-0.28750336,0.23203398,-0.17909555,-0.39836523,0.18092278,-0.1449628,0.018098664,-0.547,0.14976342,-0.056424387,0.19509767,0.117227726,0.18093039,-0.4744216,-0.08010847,0.25588593,0.7856756,-0.32322782,0.012613845,0.62244934,1.1266754,0.8053728,0.007451356,1.379546,0.2280166,-0.2758127,0.14675385,-0.33468124,-0.6165777,0.16234563,0.25925684,-0.081258155,0.3810465,-0.07834586,-0.0007926861,0.31883845,-0.47394568,0.10254093,0.05706764,0.29604885,0.23364069,-0.015893197,-0.2942913,-0.031856764,-0.068700075,0.015374522,0.20698503,0.104730085,-0.18124202,0.24296379,-0.08877761,1.2128168,-0.028250337,0.083823204,0.09974046,0.5422306,0.32719073,-0.15941516,-0.063957445,0.37205628,0.41689217,0.04813564,-0.51691383,0.36517614,-0.28313032,-0.49563885,-0.14501013,-0.39983064,-0.1311045,-0.019744894,-0.42999324,-0.0959089,-0.025038607,-0.26453876,0.50839746,-2.8963048,-0.3959001,-0.12836787,0.35182992,-0.25471097,-0.044471093,-0.30858505,-0.3177091,0.27218753,0.25960314,0.41509277,-0.6059444,0.6572764,0.55008894,-0.6090475,-0.14540532,-0.605812,-0.067384236,-0.027241392,0.35104376,0.049089488,-0.15866493,-0.017058562,0.2918039,0.5911621,-0.0405504,0.10008457,0.49026135,0.3397821,0.09828419,0.5377864,-0.09701063,0.4567966,-0.33145177,-0.22679025,0.30901414,-0.21552268,0.31275496,-0.08960194,0.085009925,0.51430345,-0.34055698,-1.0479771,-0.60116756,-0.23270592,0.9255086,-0.39944693,-0.42373574,0.1667738,-0.36239448,-0.09267297,0.05902395,0.60852146,0.1094579,0.19236201,-0.82627416,0.04986108,-0.074243836,0.15457913,0.08261168,-0.055743407,-0.36515948,0.70451504,-0.07277528,0.6046888,0.27721345,0.24132068,-0.13843086,-0.36282158,0.15990295,0.67957217,0.24114297,0.038474225,-0.09887548,-0.37354177,-0.0481979,-0.12044287,0.05497688,0.57319844,0.59239346,-0.026848102,0.2911783,0.31727275,-0.13526948,-0.05843303,-0.15639077,-0.21502915,0.08865254,0.02086896,0.44344074,0.8168077,-0.18829697,0.42255163,-0.07996351,0.31628257,-0.083099976,-0.56438506,0.67618,0.5067331,-0.24275804,-0.12521262,0.5453246,0.42048123,-0.41064292,0.43583584,-0.690131,-0.2999781,0.63880414,-0.19320276,-0.38385174,0.2146903,-0.24132703,0.12147362,-0.76389974,0.23625289,-0.24176067,-0.38243258,-0.38078243,-0.1283446,-3.595056,0.18533717,-0.25108334,-0.110985234,-0.20423062,0.0456153,0.36832038,-0.5230549,-0.5289663,0.15010996,0.2601387,0.70124775,-0.20969187,0.10562334,-0.3361743,-0.14132434,-0.031385597,0.24754563,0.035467483,0.25763372,-0.2186246,-0.43083516,-0.04487284,0.08006746,-0.5031571,0.16122827,-0.47344044,-0.3225511,-2.5167068e-05,-0.41806832,-0.12060252,0.49613872,-0.44210586,-0.05573703,-0.20549828,0.105850205,-0.18689035,0.35898802,0.23010717,0.06593166,0.24077418,0.09092019,0.038370274,-0.27899852,0.52473295,-0.055417538,0.24478902,0.091150954,0.08243534,0.17911103,0.53780645,0.4642802,-0.29213136,0.9741469,0.46286392,0.044108517,0.2628275,-0.21893282,-0.16710907,-0.44922325,-0.37350228,-0.20840994,-0.45048842,-0.48211095,-0.019344259,-0.3216757,-0.8965558,0.59071666,0.039500967,0.24179251,-0.054300148,0.14137986,0.4208596,-0.23738469,0.018539647,-0.095868744,-0.21935783,-0.4396787,-0.2146554,-0.60608786,-0.47703138,0.065291405,0.7320915,-0.4388574,0.08514541,-0.056883223,-0.16964166,-0.05980493,0.24008724,0.16146068,0.25743577,0.52022475,-0.046675943,-0.6032075,0.36079174,-0.19642605,-0.28953025,-0.5528095,0.08043289,0.6836465,-0.71545565,0.6782229,0.42653763,0.10531128,-0.11795204,-0.5058319,-0.24316192,-0.15426971,-0.33621007,0.48295376,0.0003029724,-0.9147962,0.47238472,0.34499237,-0.37832043,-0.64571327,0.6128751,-0.13115266,-0.17991526,-0.009657814,0.24783128,0.1205071,-0.10213779,-0.20194343,0.25011066,-0.38988507,0.25811937,0.09151384,-0.16975528,0.33784828,-0.091290794,-0.19060917,-0.699109,-0.10863107,-0.48116198,-0.23243402,0.32848218,-0.057569947,-0.035277963,0.12622084,0.12054639,0.37688828,-0.32308277,0.038145524,-0.023116564,-0.38548073,0.14688653,0.45195532,0.35498458,-0.37590617,0.51655865,0.03217819,-0.23347534,0.24481522,0.031172175,0.4118205,0.07932541,0.51383597,-0.16638009,-0.08833912,0.40846023,0.718397,0.079174265,0.3015341,0.037602566,-0.13713501,0.3526722,0.054600988,0.09814164,-0.10757174,-0.40228876,0.020654429,-0.089565545,0.32782033,0.4194253,0.4026708,0.3516229,0.061116442,-0.28830677,0.050997607,0.21573664,0.087942936,-1.2391528,0.53052837,0.38511318,0.84047073,0.45420042,0.056869064,-0.057100985,0.6006407,-0.08235722,0.06814628,0.37507424,0.006794813,-0.45577753,0.66174805,-0.72261304,0.4520976,-0.18366064,-0.05310034,0.19614728,0.16588174,0.33214703,0.8392719,-0.12709858,0.075293295,0.053643312,-0.21645913,-0.023066262,-0.21856192,-0.0044558444,-0.46676287,-0.35436946,0.749992,0.55645484,0.4365855,-0.31255886,-0.0012837887,0.052384786,-0.076928824,0.27496794,-0.065004416,-0.066863194,0.060655307,-0.63577896,-0.208113,0.52532446,-0.041124996,0.12800859,-0.12415015,-0.29756805,0.029145433,-0.30262563,0.06462714,-0.07772374,-0.59445924,-0.20084603,-0.26705456,-0.5922732,0.57421696,-0.33045813,0.13885458,0.24241191,-0.11749982,-0.15542914,0.5312442,-0.15245867,0.84342307,0.06769975,-0.22439721,-0.31660047,-0.0101181185,0.2176447,-0.26304382,-0.056199297,-0.5285324,0.10234591,-0.5523263,0.6053922,-0.14178784,-0.40511286,0.27392796,-0.2575224,0.03307705,0.51522595,-0.120307714,-0.20898002,0.22944178,-0.25399318,-0.44704342,-0.1328656,-0.39689848,0.24587448,0.24755883,0.036377627,-0.1640797,-0.29092872,-0.16276315,0.48255503,0.080455825,0.48740232,0.3520757,0.0045064925,-0.11511149,0.10458102,0.33303005,0.4396233,0.13070677,-0.029846955,-0.2969824,-0.44935745,-0.28863162,0.093084596,-0.059158955,0.099046014,-0.017301567,-0.13899827,0.8649834,-0.080561645,1.0672916,0.17132218,-0.28379026,0.27649483,0.4264049,-0.09638456,0.017025867,-0.5345589,0.64742166,0.5471163,-0.07125926,-0.04938456,-0.39837372,-0.1340157,0.25203934,-0.27186114,-0.008019733,-0.070318066,-0.7063172,-0.42918122,0.22856542,0.12732647,0.095747404,-0.09641695,0.0028609396,-9.4203155e-05,0.10721842,0.2440122,-0.797751,-0.2302168,0.21815631,0.40951595,-0.14501935,0.07950505,-0.34047934,0.55464995,-0.5549084,0.037441,-0.47269443,0.08498474,-0.3249568,-0.41686803,0.0322661,-0.0914348,0.29314074,-0.113803014,-0.31871936,-0.15377872,0.44615206,0.09248458,0.1468462,0.59442556,-0.2951088,-0.009694659,0.064681634,0.47183022,1.0628611,-0.5387293,-0.05378078,0.38144416,-0.39862823,-0.5397218,0.34375745,-0.55181247,0.05128118,0.068687424,-0.4604214,-0.3282846,0.33040276,-0.009534216,0.10817378,-0.006409148,-0.6319635,0.0035378614,0.24693625,-0.21945204,-0.28451934,-0.1123977,0.29474354,0.7953609,-0.2568668,-0.2536178,0.15145943,0.40300426,-0.28972495,-0.47394735,0.11464475,-0.39424637,0.31003076,-0.032231938,-0.22978726,-0.039678466,0.0614041,-0.5122024,0.091793306,0.2381447,-0.2919281,0.0649726,-0.17195085,-0.0150435055,0.90498793,-0.21670322,-0.066716895,-0.65565324,-0.49537036,-0.9260235,-0.33264914,-0.006851077,0.30312178,0.027747143,-0.33048505,0.19433993,0.004980727,-0.2138939,0.017658047,-0.59118706,0.38363966,0.1410489,0.4863268,-0.27393538,-0.8373142,0.056477413,0.12655385,-0.22530036,-0.6476961,0.6715348,-0.21942507,0.96159416,0.005015405,-0.08462314,0.03981743,-0.34897676,0.13870929,-0.37024722,-0.12942053,-0.9103289,-0.017505236 -922,0.4199798,-0.2494857,-0.6350214,-0.1091596,-0.31037045,0.15233898,-0.2895253,0.37612036,0.3780157,-0.26656,-0.182218,-0.06503877,0.20983836,0.5704187,-0.07223409,-0.729084,-0.03395311,0.19019674,-0.6887475,0.5436072,-0.54715323,0.37550816,0.22445236,0.4914933,0.07261505,0.26327842,0.46956572,-0.09106286,0.18306208,-0.08471546,-0.35760394,0.12916856,-0.56805,0.0584522,-0.18406074,-0.30493197,0.026248971,-0.33741918,-0.15746126,-0.83080375,0.1591842,-0.947614,0.61239785,-0.124939606,-0.20221828,0.066621445,0.25427327,0.30964082,-0.4395383,0.0029255587,0.089775495,-0.35261387,-0.33573112,-0.3057327,-0.11370482,-0.64576036,-0.4043011,-0.06329246,-0.621262,-0.2681051,-0.30968326,0.17097381,-0.3839688,0.042846296,-0.17131063,0.2831411,-0.34723857,0.0026954242,0.29203245,-0.4022406,0.24756508,-0.49601778,-0.023846997,-0.079644814,0.48892567,0.08586371,-0.18758021,0.4054058,0.35236374,0.59787655,0.26829475,-0.3173409,-0.15624359,-0.2105689,0.13267997,0.48895162,-0.13470258,-0.49969083,-0.27272034,0.013079976,0.27966124,0.39244822,0.074116014,-0.2307291,0.001468569,-0.06661404,-0.2825819,0.69201106,0.5402874,-0.3164692,-0.23831476,0.28792027,0.5415564,0.16085665,-0.25350598,0.13256498,-0.13611254,-0.5257927,-0.14919625,0.09169085,-0.16380389,0.49774975,-0.16685656,0.09115834,0.6924094,-0.099031344,-0.103171214,-0.021764856,-0.0479202,-0.22171704,-0.3057084,-0.11128104,0.32313266,-0.6039686,0.025895467,-0.35002264,0.7693329,0.14742856,-0.69742966,0.54841393,-0.45845821,0.2570448,0.036001164,0.69933236,0.8142339,0.37261692,0.3659087,1.0637491,-0.46696204,0.20125952,-0.086722456,-0.47584215,-0.050500114,-0.27690786,0.20943138,-0.57200813,0.39617604,-0.12205834,0.04050793,0.16074118,0.42273596,-0.49982664,-0.24330722,0.26175678,0.86405903,-0.29971048,-0.0500632,0.87783676,1.030873,0.94320506,0.028237287,1.2669764,0.32938442,-0.28241405,0.071120724,-0.20982145,-0.6344784,0.19929865,0.40419367,0.2610623,0.36611012,-0.0640141,-0.16818811,0.22301213,-0.38188574,-0.1842811,-0.007310859,0.23572205,0.14225496,-0.08876257,-0.51065624,-0.005844857,0.09548088,-0.12553108,0.27876344,0.17581834,-0.3193805,0.56585824,-0.05782318,1.2833841,-0.15001084,-0.011227702,-0.010021695,0.46363178,0.45874724,-0.006793778,-0.11486103,0.5240397,0.43501854,-0.079866275,-0.7518468,0.256037,-0.4069709,-0.43392634,-0.15742712,-0.38555998,-0.12684141,0.058186587,-0.17993793,-0.09987419,-0.14319205,-0.338319,0.35511738,-2.629848,-0.34567356,-0.14706834,0.32062572,-0.23587589,-0.0608988,-0.21591036,-0.54736197,0.29803768,0.31237292,0.530959,-0.7257934,0.48046425,0.552693,-0.51695263,-0.23984173,-0.67951876,0.005136609,-0.037150797,0.4966173,0.124950275,-0.3223726,-0.20764753,0.19962557,0.81904495,0.15397093,0.12953304,0.55293566,0.50334007,-0.10207791,0.56287825,-0.09864284,0.7263366,-0.44855276,-0.21226577,0.34869486,-0.2385149,0.22724839,-0.16171636,0.07857622,0.60530394,-0.3366,-0.965138,-0.5465979,-0.19793749,1.0174874,-0.47485605,-0.7196781,0.16614135,0.09241716,-0.036834385,0.113589205,0.68896955,-0.027928535,0.14164901,-0.7635177,0.21498582,-0.10562205,0.10775911,0.00089206867,-0.022050377,-0.25895536,0.8992316,-0.18539861,0.7309758,0.1288645,0.26349533,-0.22713648,-0.2872768,0.09398307,0.9636008,0.28577897,-0.10123686,-0.07583884,-0.2841966,-0.15201259,-0.35468003,0.020282056,0.79882324,0.8237254,-0.10616619,0.046614457,0.30176002,0.030314535,0.03246183,-0.15800492,-0.34097162,-0.17748229,-0.06281402,0.49908113,0.72123855,-0.15347525,0.4578517,-0.21157424,0.327005,0.051679205,-0.6393069,0.67677176,0.60059595,-0.3883802,-0.17551562,0.5592891,0.37409526,-0.5064137,0.5332442,-0.78832763,-0.38641888,0.69642127,-0.112337485,-0.43812338,0.31259808,-0.23669437,0.12953106,-0.790371,0.14554645,-0.24274567,-0.444726,-0.27385074,-0.11586406,-3.8492484,0.22338176,-0.21708305,-0.049333755,-0.52962625,-0.04189344,0.23913698,-0.50569814,-0.638957,0.17002918,0.26003528,0.62001884,-0.16787426,0.16068758,-0.37929827,-0.23862995,0.021614721,0.21413012,-0.060720403,0.24719644,-0.10916669,-0.4041605,-0.12111305,-0.033694383,-0.54448617,0.110699944,-0.70473564,-0.39832968,-0.13271451,-0.6564242,-0.11265149,0.6252524,-0.47958097,0.00062543154,-0.33512837,0.19740057,-0.24990739,0.059427977,-0.06299653,0.14401487,0.2248224,-0.04191079,0.22871558,-0.35403094,0.4273006,-0.1744086,0.32862678,0.07323592,-0.037996348,0.063313164,0.43847117,0.70258886,-0.18672906,1.0361717,0.3269138,-0.047515698,0.26362088,-0.16490364,-0.41885754,-0.6133209,-0.41922733,-0.08821865,-0.49223194,-0.42633268,0.055217493,-0.27665955,-0.8220273,0.5980485,0.05066489,0.5286389,0.057970356,0.44515222,0.48310062,-0.252317,0.08371387,-0.010790544,-0.2933721,-0.57410467,-0.22387524,-0.7003945,-0.58283854,0.047047973,0.7397162,-0.29117435,-0.0035177693,-0.092970416,-0.14743574,0.04748563,0.18588993,0.32636717,0.31839347,0.48706642,0.0050978702,-0.55869,0.5132794,-0.22199798,-0.18737434,-0.5708197,0.1482812,0.4684265,-0.7096148,0.6041352,0.40946907,0.049313802,0.047555078,-0.5343766,-0.12892868,0.05891834,-0.15746103,0.42963466,0.1348854,-0.9512325,0.60341495,0.3458034,-0.46236438,-0.76567084,0.33947703,-0.0737647,-0.14336213,-0.11496148,0.4396976,0.183165,-0.113753654,-0.2419031,-0.015951118,-0.53211194,0.28251806,0.06307937,-0.1017764,0.38806987,-0.03870228,-0.408545,-0.8460639,-0.17082848,-0.6788291,-0.17559369,0.26566166,-0.030724557,-0.103760764,0.009976064,-0.15965247,0.48651257,-0.40814045,0.17245527,-0.07541033,-0.43176597,0.43647593,0.49927017,0.34039325,-0.36654353,0.65520746,0.08303114,-0.3601642,0.12982169,-0.0437773,0.42249542,0.064824924,0.4769178,-0.0905607,-0.01795243,0.36602673,0.77068466,0.081480734,0.39632463,0.23686007,-0.17002021,0.47449684,0.11368904,0.16138686,-0.041042153,-0.42236838,0.06881391,-0.11664571,0.103886366,0.66269696,0.34839335,0.41474488,0.15924038,-0.15621898,-0.03736589,0.09416484,-0.13189246,-1.2703542,0.36707577,0.1983627,0.8345167,0.24110402,0.11297226,-0.21528955,0.66763407,-0.14760931,-0.026578533,0.344971,-0.068635315,-0.29780713,0.67009544,-0.6973683,0.33293602,-0.31799677,-0.0068417513,0.3162317,0.2771705,0.35561463,0.96206105,-0.32393926,0.071186304,-0.12897612,-0.10826416,-0.037238542,-0.3234677,-0.091142654,-0.19335082,-0.49471956,0.52608204,0.31501886,0.44082713,-0.24519908,-0.04013119,0.017969217,-0.18260184,0.08052908,-0.10124024,-0.064184375,-0.045027457,-0.53538525,-0.18065552,0.5389524,0.3404849,0.28753868,-0.24570727,-0.28157634,0.21705225,-0.18211976,0.0007644977,-0.025385145,-0.6266185,-0.06055245,-0.23477945,-0.561826,0.43856445,-0.14926064,0.17265998,0.26726693,-0.08653475,-0.13315995,0.067122586,0.075139515,0.94868004,0.14178206,-0.2578134,-0.47383395,-0.033665843,0.2547546,-0.29799396,0.15982607,-0.40278748,0.060563702,-0.5733127,0.6723117,-0.22351797,-0.50435024,0.44169232,-0.31537125,-0.030937418,0.53681934,-0.19339517,-0.050054085,-0.02907272,-0.085295245,-0.29573438,-0.26650983,-0.30975834,0.25035852,0.0591528,-0.068291835,0.021962153,-0.1917026,-0.06052683,0.5483907,0.066766456,0.33651686,0.3146402,0.18209353,-0.05201123,0.2674338,0.3096853,0.5363503,0.20895068,-0.161068,-0.2539635,-0.56424665,-0.40792537,0.03116553,-0.10785474,0.20095327,0.18904154,-0.21112005,0.8104901,0.05402534,1.2365264,0.013867897,-0.3749737,0.03648488,0.65370834,-0.108702086,0.10188941,-0.33873183,0.8859577,0.6964753,-0.1045786,0.011978158,-0.48588532,0.022869054,0.42868227,-0.4446044,-0.05588283,-0.07958323,-0.49838337,-0.5345944,0.21671481,0.12584528,0.34485266,-0.09888286,0.099203266,0.09946772,0.11198555,0.39106035,-0.630343,-0.18900779,0.20705901,0.21071196,-0.20668904,0.07605963,-0.28229478,0.4521796,-0.61270094,0.064954795,-0.6057285,0.085940704,-0.10164543,-0.2319707,0.1281499,-0.18050376,0.3716131,-0.25471282,-0.4448206,0.013344957,0.35945824,0.19237688,0.037115216,0.59346694,-0.24795556,-0.10194092,0.25120902,0.63245803,1.2759513,-0.46809477,0.12097937,0.297291,-0.4252661,-0.6410624,0.36648488,-0.38572472,-0.011186489,-0.078551225,-0.5070885,-0.38891268,0.34050304,0.21730591,0.008419901,0.09655683,-0.59011537,-0.1078745,0.35296506,-0.29299185,-0.1736317,-0.09306664,0.25613636,0.69339734,-0.30058894,-0.41904116,0.10244899,0.3807459,-0.2909065,-0.7775798,-0.046714578,-0.23221502,0.3117096,0.23075593,-0.24793445,-0.088071056,0.16784164,-0.6107554,0.18543765,0.18867992,-0.36831895,0.15703966,-0.27978864,-0.1719022,0.8142026,-0.21743946,0.14985277,-0.7770389,-0.44268948,-0.85326624,-0.39683172,0.2868843,0.10820438,0.009168412,-0.46503782,-0.03401867,-0.16785999,-0.18684964,-0.031166945,-0.36776227,0.28403643,0.09571952,0.6831941,-0.32534605,-0.97251564,0.055004936,0.22124605,-0.24085872,-0.7460745,0.60476106,0.0010321991,0.8286921,0.13083561,0.024133101,0.17007668,-0.537862,0.0017717002,-0.34285745,-0.10908776,-0.7373065,0.10261743 -923,0.22104187,-0.13258417,-0.3760966,-0.20005402,-0.36723492,0.042041034,-0.24832115,0.2509107,0.18323992,-0.26643392,-0.074571095,0.06279805,0.024777897,0.37835386,-0.14262146,-0.53068435,-0.13177802,0.2175312,-0.6189476,0.44812787,-0.5708064,0.38715026,0.06965755,0.4097324,-0.058298394,0.43774122,0.18560886,-0.13290738,-0.08769935,-0.049848877,-0.1472123,0.35160345,-0.46350113,-0.00542517,-0.18063201,-0.28748718,0.057640817,-0.25913718,-0.2064633,-0.75434124,0.11129986,-0.7278481,0.4914682,-0.12818223,-0.23579493,0.098982245,0.3554474,0.4282481,-0.3471842,-0.004426023,0.19673914,-0.26502043,-0.09556091,-0.34735024,-0.07146154,-0.36443448,-0.45837063,-0.039905254,-0.67022705,-0.38601515,-0.2131377,0.24054109,-0.3179718,-0.05506617,-0.12159078,0.24341205,-0.40769607,-0.08132815,0.1971676,-0.2287114,0.2581088,-0.5018652,-0.019662548,-0.058443263,0.3461571,0.038785897,-0.21956727,0.45955276,0.21550126,0.36549738,0.1833689,-0.22874844,-0.297746,-0.1934798,0.23034966,0.3501364,-0.18338445,-0.25397378,-0.22255337,0.067397065,0.1545944,0.35681102,0.0010926574,-0.16137631,-0.042761303,0.01426206,-0.22019741,0.4153405,0.43408704,-0.21253744,-0.28538474,0.24876666,0.63568366,0.20636858,-0.41183335,0.035073422,-0.08857962,-0.5293324,-0.15088128,-0.049680673,-0.056331616,0.45426783,-0.07613075,0.054897416,0.8521899,-0.18858027,-0.11198081,-0.15633376,0.024265684,-0.050169274,-0.26223892,-0.13541985,0.10551162,-0.47814274,-0.04112211,-0.23496512,0.5141193,0.03876034,-0.6906905,0.3656147,-0.5429662,0.09198865,-0.014200762,0.5453399,0.67998403,0.51280963,0.29256144,0.7645125,-0.28305387,0.13393137,-0.09712562,-0.41849273,0.16221116,-0.27106196,0.015518181,-0.52129096,0.18390763,-0.12149683,0.07116703,0.15569858,0.45105398,-0.5495255,-0.03131334,0.18305646,0.698425,-0.39227712,-0.0046731587,0.6057273,1.0719273,0.97361314,-0.046325073,1.0035284,0.28573957,-0.21428813,0.19376759,-0.358072,-0.5239254,0.18379125,0.4184221,-0.031527273,0.37653828,-0.1316788,0.03598483,0.48134303,-0.34845912,0.01421231,0.0401094,0.38439307,0.18530281,-0.115454495,-0.5288378,-0.059226513,0.093104675,0.021914896,0.2509997,0.2329451,-0.25073984,0.35405177,-0.05957647,1.5334194,-0.020521875,0.086867884,0.07558117,0.4958005,0.35026628,-0.0710046,-0.06083726,0.5955106,0.33924997,0.013688166,-0.4738604,0.20666447,-0.30074787,-0.48358136,-0.034573145,-0.46733493,-0.16420406,-0.06433683,-0.46142703,-0.08973868,0.016550265,-0.31502125,0.37728912,-2.8074172,-0.29558703,-0.034427106,0.325444,-0.2513898,-0.23947567,-0.059178215,-0.44587946,0.355847,0.29845437,0.39556283,-0.54111123,0.5699698,0.61302805,-0.3966345,-0.19327028,-0.53208554,-0.19999737,-0.14201668,0.5624684,0.124044664,-0.08759618,-0.13969576,0.26250577,0.6409874,-0.075887926,0.1759477,0.43447214,0.29728973,0.0348097,0.57547456,-0.08430165,0.54249614,-0.1526711,-0.17456861,0.39438617,-0.31569064,0.07574165,-0.10655229,0.09467684,0.49918813,-0.33022082,-1.0117056,-0.5941537,-0.19751672,1.0561506,-0.44350964,-0.36991775,0.30258566,-0.2743551,-0.18648116,0.09557843,0.52970165,-0.03770484,0.33776143,-0.66264653,0.2226614,-0.08320419,0.10784227,0.007359432,0.055399485,-0.35505664,0.5723724,-0.078089595,0.5567186,0.29741848,0.23763597,-0.21944267,-0.2787451,0.12142731,0.65829754,0.29790068,-0.049951937,-0.033072483,-0.34561116,-0.017837986,-0.19211999,0.06479168,0.5248543,0.70854604,0.003929306,0.13398437,0.18639272,-0.10370883,-0.013560783,-0.22378156,-0.1337841,0.13738212,0.12742722,0.45332372,0.75979483,-0.21433714,0.3812092,-0.15329848,0.4204298,-0.05151207,-0.6488435,0.5115732,0.5212569,-0.22073235,-0.06824006,0.54750454,0.50132656,-0.3931572,0.43850684,-0.66833377,-0.23368579,0.71884763,-0.20907182,-0.38220835,0.2908433,-0.19661973,0.15693915,-0.7874524,0.2131499,-0.22074138,-0.28627223,-0.49467683,-0.19736427,-3.74024,0.101430625,-0.085188285,-0.14586264,-0.15239693,0.05198519,0.3603288,-0.7069524,-0.51196283,0.03989251,0.17075521,0.5368632,-0.14506154,-0.004904203,-0.32653588,-0.27550685,-0.03199721,0.3520293,-0.037814554,0.21040845,-0.27330878,-0.45901608,-0.10851304,-0.1840086,-0.72905314,0.1421888,-0.5029163,-0.4713733,-0.08234553,-0.46170515,-0.13114104,0.67075604,-0.34718046,-0.001948107,-0.19665754,0.04433568,-0.11882031,0.16103373,0.26001713,0.25391674,0.23789823,-0.008777883,0.16219237,-0.3727894,0.35589638,0.0073095113,0.23544265,0.10265003,0.023350772,0.12617192,0.48630694,0.7295331,-0.18992169,0.9599861,0.33613572,-0.16160497,0.2788656,-0.3734162,-0.27241603,-0.6084956,-0.36800304,-0.1481939,-0.40417868,-0.46515068,-0.035057418,-0.36611027,-0.712372,0.67065245,-0.009228483,0.3034219,-0.09967684,0.28119135,0.34271663,-0.18076184,-0.07971243,-0.09744718,-0.24681436,-0.48490432,-0.29919338,-0.68492085,-0.6107948,-0.023561198,0.9028691,-0.22652072,0.024534605,-0.17328197,-0.1667434,0.006495975,0.1085563,0.12784518,0.34341794,0.36256734,-0.016446665,-0.69359773,0.43459818,-0.015745025,-0.17204405,-0.49820927,0.04771624,0.53317994,-0.6760758,0.6111502,0.29972526,-0.0016305409,0.002495531,-0.5709877,-0.13668916,0.024608314,-0.2570097,0.5703814,0.10004715,-0.8146696,0.5351864,0.24255937,-0.49327934,-0.58964497,0.35586736,-0.2279345,-0.27433097,-0.2201798,0.33878204,0.1300366,-0.011667791,-0.25566685,0.21413058,-0.41821992,0.21261929,0.23098174,-0.10228505,0.3976629,-0.077566914,-0.15326424,-0.8045027,-0.04659919,-0.46364146,-0.30657318,0.24143638,-0.0011176076,-0.014409616,0.18863061,0.06836511,0.37955242,-0.2781932,0.07183711,0.06519721,-0.35223928,0.21342745,0.54296815,0.32181078,-0.3560846,0.5326177,0.10613463,-0.20197871,-0.01095178,0.0042371564,0.41150808,-0.06601819,0.3873635,-0.19496211,-0.15337244,0.43849155,0.66342,0.19899394,0.41946107,0.07769913,-0.25204363,0.344518,-0.04653491,0.080928355,0.03755364,-0.45768723,0.08721231,-0.07805847,0.1823546,0.5574641,0.3834755,0.3460922,0.18715434,-0.18411757,0.062469155,0.32029852,-0.080112174,-1.267316,0.33595932,0.36861068,0.8790759,0.3849638,0.23326081,-0.05571967,0.5767222,-0.40149724,0.059869096,0.3918721,-0.04764407,-0.43222988,0.7340878,-0.74740237,0.389265,-0.12073299,-0.080796115,0.15474387,0.030355634,0.4566003,0.7976831,-0.13245706,0.04278186,0.13557258,-0.1264829,0.07261377,-0.197337,-0.03082485,-0.30764133,-0.3284105,0.4872592,0.43709248,0.37155965,-0.20249632,0.019385412,0.198784,-0.20257394,0.23455022,-0.08268532,0.074058816,0.10058071,-0.44011346,-0.24846162,0.4370878,0.108167626,0.22881263,-0.036617476,-0.25638944,0.11510345,-0.085087895,-0.09808227,0.06685874,-0.46854526,-0.034442917,-0.13581084,-0.49412045,0.6270281,-0.29473758,0.17630379,0.13537341,0.01370215,-0.24021327,0.14979264,0.0164209,0.7163748,0.08268696,-0.1680093,-0.22583356,0.025771871,0.044217337,-0.2549243,-0.0069153085,-0.39831176,0.11539726,-0.5363827,0.5144967,-0.184401,-0.34370252,0.12750486,-0.2861957,-0.0781658,0.46965626,-0.07490802,-0.29495203,-0.04981734,-0.009157769,-0.37317985,-0.08855837,-0.2883242,0.24764983,0.10925998,-0.09568279,-0.016676098,-0.1534349,-0.15306616,0.69542694,-0.035748143,0.4703808,0.2633663,-0.16708031,-0.25586814,0.093088716,0.34873226,0.30381253,0.08895537,0.115602136,-0.28034413,-0.41920397,-0.39793456,0.2430343,-0.22294214,0.2395936,0.08712895,-0.26857796,0.91139966,-0.042432997,1.1561253,0.0075649098,-0.41113073,0.19267693,0.5585066,-0.059795007,0.13340658,-0.4531984,0.8348719,0.56146157,-0.1896185,-0.12086217,-0.48714107,-0.04960672,0.3027426,-0.4558743,-0.13971247,-0.1445072,-0.6322966,-0.4744858,0.15336254,0.16360703,0.28433084,-0.032681286,-0.1052438,0.05577688,0.110498175,0.32083094,-0.5184386,-0.26615497,0.31877854,0.292513,-0.24451283,0.063555166,-0.36225542,0.48859897,-0.3973998,0.13113892,-0.40817595,0.10350711,-0.2909239,-0.28073755,0.14452492,-0.044470716,0.2047784,-0.14789343,-0.3737833,-0.061515927,0.3419801,-0.055028174,0.10686902,0.6169755,-0.2576424,0.11173195,0.08839859,0.4501239,1.1491249,-0.41396382,0.009706631,0.420269,-0.41366833,-0.60794795,0.32820618,-0.28904504,0.0075200424,0.023104195,-0.49482137,-0.49834162,0.21339445,0.046738666,0.016406953,0.044118233,-0.41416904,-0.043557398,0.4061264,-0.26399153,-0.11153664,-0.09942213,0.30795887,0.73154306,-0.341306,-0.3639122,0.039157063,0.31835717,-0.2614797,-0.46673822,-0.052255243,-0.13962643,0.48530686,0.15316261,-0.333382,-0.032679893,0.23953462,-0.49926177,0.09896672,0.39270288,-0.34422538,0.13475631,-0.18303333,-0.028634254,0.8925899,-0.2215828,-0.08729808,-0.62280464,-0.48523575,-0.9442431,-0.4108209,0.22564334,0.15818092,-0.11863479,-0.4486669,0.09311427,-0.14164197,-0.23842563,0.03888827,-0.4841021,0.28820226,0.20038444,0.51474565,-0.25748855,-0.7959789,0.060325664,0.12461272,-0.15430662,-0.60814744,0.747574,-0.24324231,0.75831944,0.019857313,-0.0059736874,0.15241255,-0.3226406,0.14592153,-0.3168915,-0.063085794,-0.7995783,0.002300948 -924,0.32967356,0.06639375,-0.57445484,-0.2471886,-0.19764756,-0.027870135,-0.1815614,0.0827632,0.32789087,-0.017232107,-0.03768483,0.031941257,0.018998465,0.24920085,-0.10702928,-0.9669891,-0.034465816,0.014390305,-0.42210367,0.4834546,-0.45767912,0.47547105,-0.0129390955,0.38839537,0.07357759,0.4541622,0.23309512,-0.04854623,-0.12027614,-0.010507479,-0.21467413,0.30552694,-0.7534639,0.08957092,-0.06964575,-0.24282752,-0.0052427053,-0.15019627,-0.37728548,-0.70966065,0.4295301,-0.7845702,0.636823,0.08068187,-0.32234138,0.052129857,0.14740203,0.20425312,-0.41577762,0.14495704,0.17739275,-0.41966745,0.073264465,-0.17925726,-0.29349184,-0.5667244,-0.6213074,-0.03990416,-0.7153602,-0.17666534,-0.47657079,0.16726772,-0.37148625,-0.19342472,-0.25989076,0.38030434,-0.3868484,0.100864954,0.19791816,-0.25916353,0.08671014,-0.40024376,-0.19722976,-0.14090471,0.24171737,0.10161601,-0.28362924,0.4342375,0.41593748,0.46578804,0.17897804,-0.28925055,-0.26409715,-0.13535348,0.24983807,0.34224185,-0.15136679,-0.34757218,-0.32351685,-0.16881725,0.10576943,0.38693455,-0.13375752,-0.32716092,0.12129603,0.21394168,-0.12684913,0.43502077,0.5562163,-0.2662527,-0.29351273,0.3458561,0.25499466,0.038904138,-0.2791222,0.24508728,-0.010450986,-0.55334276,-0.22724476,0.15810804,-0.15870725,0.6056064,-0.073814094,0.04099496,0.8275885,-0.19958016,-0.112058654,-0.3840117,-0.00058957085,-0.124241054,-0.32165042,-0.036048528,0.19749263,-0.35058665,0.18357992,-0.19659789,0.65096956,0.18022408,-0.7707495,0.37226656,-0.6277442,0.13322793,-0.18461971,0.64506245,0.87763757,0.2782642,0.39932555,0.9531375,-0.5512031,0.050904304,0.20452574,-0.5090123,0.19016087,-0.23956037,-0.024535758,-0.43212047,-0.0039265626,0.04059779,0.0067409384,0.15252638,0.29073414,-0.35350534,0.0042795017,-0.074569575,0.71699893,-0.38630968,0.012280379,0.8809175,1.0020019,0.7986025,0.07515937,1.2340767,0.48132855,-0.15906824,0.07828612,-0.38737026,-0.5677841,-0.021491949,0.2569779,-0.3351256,0.28348696,0.16930781,0.06618579,0.47018296,-0.3880856,-0.012808646,0.008372434,0.20346744,0.01629855,-0.12906107,-0.32748842,-0.04605919,0.072826676,0.029371228,0.13250165,0.29081315,-0.19160774,0.42097664,0.14383051,1.1101463,0.14356065,0.012353632,-0.03132769,0.39259866,0.42461258,-0.1612116,-0.08842688,0.43579546,0.44468382,-0.0035546932,-0.55026853,-0.03933726,-0.30950683,-0.42902726,-0.21714921,-0.43300548,0.020193549,0.038028475,-0.42765808,-0.08928845,0.14005977,-0.24328195,0.44169322,-2.5981853,-0.12657672,-0.096238784,0.23110603,-0.059763543,-0.24116646,-0.24595013,-0.5612469,0.30445322,0.3607922,0.25018874,-0.55315447,0.22234948,0.31582016,-0.32606193,-0.14862467,-0.572753,-0.07011564,-0.13356401,0.41672078,-0.07946099,-0.08497814,-0.13510534,0.3396366,0.6817304,0.14454024,0.036618393,0.08510905,0.43839765,-0.13065541,0.50715935,0.11513138,0.57719135,-0.04643582,-0.30818543,0.32523513,-0.2994587,0.34665182,0.026749356,0.16300532,0.4435358,-0.45838982,-0.91138774,-0.55935514,-0.48068443,1.0535704,-0.39330724,-0.3976689,0.3319237,-0.15286934,-0.3511866,0.043513052,0.6495462,-0.20716561,0.1523163,-0.6306376,0.096659556,-0.11752321,0.17518805,0.0065820483,0.24969958,-0.2264329,0.73336613,-0.181896,0.26789635,0.25572392,0.14963432,-0.18754303,-0.5500762,0.17066622,0.83365303,0.37188783,0.003752968,-0.16958418,-0.18960264,-0.09925105,-0.28038046,0.12501253,0.5941647,0.7193964,-0.079435065,0.03380899,0.24536486,-0.19348209,-0.053051088,-0.13733728,-0.3468435,0.049841773,0.063611925,0.5284538,0.61544603,-0.20008738,0.42581373,-0.08509069,0.23118567,-0.11128148,-0.56570286,0.66385496,0.99733627,-0.025822412,-0.11861301,0.8156249,0.42727062,-0.34540504,0.4399918,-0.624632,-0.21572231,0.73537916,-0.17364763,-0.42415252,0.16622402,-0.38639894,-0.019836145,-0.92443746,0.17227888,0.08425385,-0.5010561,-0.5350827,-0.1982899,-4.6227293,0.09807801,-0.22894092,-0.042332616,-0.15931857,-0.16618688,0.4752521,-0.52401555,-0.510933,0.2177342,0.08880174,0.4797731,-0.21118645,0.1886548,-0.36377528,-0.18519685,-0.1239201,0.38278368,0.27750435,0.29323244,-0.031545248,-0.38979134,0.09318935,-0.20356211,-0.631627,-0.11240333,-0.36368254,-0.5962731,-0.15554376,-0.5848349,-0.2989924,0.8498824,-0.55140454,-0.100780554,-0.23849523,-0.020521015,-0.24206138,0.40916035,0.39060903,0.34101194,0.12391204,0.18264525,-0.15081565,-0.35179597,0.23922995,0.12944402,0.30857986,0.3259353,0.07278415,0.098868154,0.48239,0.53655463,0.012550997,0.8869804,0.28735763,-0.09992744,0.26277456,-0.5033282,-0.32512292,-0.98575485,-0.4603908,-0.4457278,-0.47549954,-0.5209076,-0.22868347,-0.3645037,-0.8225395,0.47923976,-0.03472815,0.31201443,-0.14374371,0.39304203,0.27596682,0.0008851247,-0.102126226,-0.09985872,-0.24987094,-0.44139275,-0.27774018,-0.50603694,-0.68657887,0.12669475,0.726904,-0.13847235,-0.16385423,-0.069353394,-0.37783903,0.040978003,0.054376718,0.35663837,0.27239242,0.44680372,0.10610281,-0.7053589,0.47358757,-0.16834481,-0.09034599,-0.91704845,-0.13813487,0.587245,-0.7867704,0.6614236,0.35063124,0.22755061,0.08151204,-0.6319321,-0.41096088,0.19213428,-0.20410864,0.6623515,0.2447178,-0.7239455,0.57339126,0.041777473,-0.035647534,-0.5891438,0.5346018,-0.057510562,-0.28293163,0.19415888,0.36428595,-0.13819918,-0.08781787,-0.026084503,0.3841549,-0.35995704,0.21499498,0.4915771,-0.039318077,0.67775875,0.0018521185,-0.20451845,-0.7745558,-0.042822544,-0.5472077,-0.24410672,0.154125,-0.003421726,0.09960441,0.08871362,-0.18237714,0.37824425,-0.23724213,0.2504478,-0.09731025,-0.16485827,0.22582316,0.53149885,0.2910606,-0.5642271,0.6317429,0.15968189,-0.094996266,0.022624284,0.20980084,0.53709525,0.07614399,0.40732163,-0.064884976,-0.14521435,0.06522913,0.66823775,0.22685862,0.49818072,0.24758425,-0.12567408,0.37420702,0.19185317,0.07172785,0.06170237,-0.21039243,-0.079580955,0.037345946,0.19127558,0.4919746,0.11215081,0.32338995,-0.16539904,-0.1836785,0.37503406,0.26769236,0.1384527,-0.97384685,0.43511185,0.24165504,0.6840891,0.57978344,0.08319491,-0.071409516,0.3866009,-0.29478127,0.19370396,0.3870626,0.06825425,-0.4269028,0.51273805,-0.49724188,0.47224116,-0.11847062,-0.015924526,0.106455505,0.20313223,0.35564017,1.1057407,-0.13498417,0.12876584,0.13997671,-0.18274471,0.17562962,-0.20106378,0.07741941,-0.4269071,-0.36780426,0.62053543,0.41518566,0.20938039,-0.33647108,-0.056697875,-0.08280599,-0.12194603,-0.10565518,-0.18286465,-0.016912771,-0.058236003,-0.55771434,-0.525956,0.5693574,-0.026027964,0.037099395,0.06481456,-0.32694897,0.24528448,-0.14317219,-0.13989887,-0.00086231955,-0.56559604,-0.0029572845,-0.3474087,-0.6416489,0.6008654,-0.57111925,0.3578401,0.17944972,0.023209935,-0.4796899,0.15220201,0.25820893,0.7998727,-0.041132372,-0.07157155,-0.4143751,0.049001228,0.41451088,-0.3321999,-0.18136515,-0.41210222,0.09605193,-0.55136734,0.36913797,-0.293556,-0.3071506,-0.35178158,-0.12612464,0.008431422,0.41769025,-0.24780855,-0.25884372,0.12846185,0.007562884,-0.28509256,-0.065952964,-0.255444,0.23981176,-0.05084441,-0.08867715,0.041337106,-0.12786335,-0.35775343,0.23099232,0.013394488,0.3372044,0.27495685,-0.064005494,-0.21929021,-0.08564746,0.07221285,0.37709117,0.045726676,-0.10978985,-0.14896642,-0.38226053,-0.31174025,0.21455492,-0.18174039,0.16017434,0.08500532,-0.58478546,0.6948659,0.18165953,1.1624416,0.115299426,-0.4051186,0.086598836,0.51690733,0.042784214,0.11996548,-0.27646944,0.9936391,0.6834302,-0.19743636,-0.24061318,-0.32116333,-0.07167997,0.22959457,-0.29170418,-0.25847426,-0.10295378,-0.70077735,-0.1985854,0.03608266,0.26613265,0.10545536,0.025313748,-0.17770936,-0.0215091,0.2980948,0.4002417,-0.46724123,0.002246627,0.3641874,0.22634998,0.08731251,0.29505798,-0.21342981,0.46859327,-0.57560503,0.16952477,-0.68685913,0.16651511,-0.15043476,-0.2685548,0.1491655,-0.05359567,0.3756465,-0.22448623,-0.20550522,-0.35268718,0.6143018,0.120858684,0.22689272,0.7324247,-0.20745358,0.12006321,0.1467292,0.5509233,1.4466027,-0.22783129,-0.054131526,0.33188084,-0.26658034,-0.53783023,0.14268948,-0.38980213,0.093697794,-0.21778846,-0.37599322,-0.34086356,0.15661462,-0.04422056,-0.066100046,0.060260303,-0.5523102,-0.328342,0.3200573,-0.17807308,-0.237341,-0.25691578,0.31779402,0.78179085,-0.44000462,-0.2719261,0.025071954,0.16415703,-0.28647995,-0.6029411,0.0894024,-0.17346303,0.49648628,0.0697968,-0.41995737,0.13731427,0.46268627,-0.48798847,0.3138903,0.4423537,-0.3495431,0.05518878,-0.007088993,-0.11546803,1.1541101,-0.12502353,0.048895817,-0.5992548,-0.513703,-1.022033,-0.39787748,0.32879072,0.25618905,0.069930054,-0.48714873,-0.031748764,-0.057305243,0.18257363,0.15098538,-0.6327548,0.3955396,0.08267232,0.6831532,-0.037003525,-0.8628286,-0.17172106,0.18584742,-0.23119865,-0.5569201,0.6268687,-0.2852617,0.7978509,0.013935568,0.030682666,0.19921395,-0.57325274,0.3046148,-0.28929278,-0.13709255,-0.71909136,0.06344426 -925,0.4837763,-0.13054276,-0.3743717,-0.13382354,-0.29302353,0.16380695,-0.16888033,0.6013732,0.1814766,-0.37420857,-0.17026988,-0.23926635,0.019219436,0.35273108,-0.032173585,-0.33183512,0.050993297,0.22549678,-0.46360287,0.3862008,-0.45676926,0.15342137,-0.08670674,0.42371833,0.19240507,0.14132404,0.038051926,-0.004904514,-0.10650194,-0.09729461,-0.058635414,0.2830956,-0.4305432,0.14364499,-0.25267255,-0.29217336,-0.1173728,-0.49576262,-0.32179356,-0.6624674,0.19654302,-0.7384462,0.43573475,-0.0390983,-0.30723113,0.39477283,-0.045273088,0.24552736,-0.22498682,-0.013012344,0.08588587,-0.14545986,-0.1175538,-0.11422994,-0.2588223,-0.30639338,-0.44422373,0.124834105,-0.3889733,-0.06022218,-0.24232034,0.072634414,-0.2161494,0.01862111,0.044157855,0.29645255,-0.4123922,-0.037363566,0.13718727,-0.00076510385,0.21881592,-0.52948666,-0.08291741,-0.18473217,0.31572035,-0.15111654,-0.35746157,0.24146491,0.26496124,0.49774027,-0.12156439,-0.091993354,-0.2788075,-0.013011668,0.040025786,0.4263227,-0.12589295,-0.38411522,-0.15579903,-0.0861917,0.33566988,0.20368838,0.15877414,-0.10797426,-0.26020437,-0.08276709,-0.20316592,0.29682022,0.5304754,-0.3801867,-0.22849096,0.35639971,0.5823481,0.34651554,-0.13616088,0.12322593,0.025002135,-0.5753614,-0.12454966,-0.06233402,-0.23323269,0.45309117,-0.19166611,0.24936157,0.5582199,-0.13319296,-0.040193357,0.12779233,0.036611613,-0.110354856,-0.21220909,-0.16371915,0.23020361,-0.4090333,0.12207153,-0.10307327,0.6105331,0.1755456,-0.656602,0.31452763,-0.53932416,0.14753272,-0.0801152,0.57265675,0.85549283,0.40521842,0.2847488,0.68556535,-0.30019748,0.05918112,-0.14235993,-0.18562846,0.060177848,-0.21772462,-0.11803693,-0.5105171,0.052153032,0.042624816,-0.14664856,0.17809224,0.42321724,-0.5001931,-0.11751489,0.20304601,0.6220741,-0.2731465,-0.1681836,0.8008867,0.96488714,0.9079512,0.07092089,1.0246873,0.0918611,-0.1382167,0.2641712,-0.22572741,-0.6514147,0.28071105,0.31672874,0.2764951,0.17621744,0.2199004,0.005213218,0.36843675,-0.50202864,0.0036742054,-0.12638003,0.036191493,0.11487744,-0.02753672,-0.35972947,-0.2555259,-0.11609025,0.09219764,0.0056869164,0.2432936,-0.21868551,0.38851398,-0.053786583,1.5622597,0.052592784,-0.013744265,0.051871255,0.47897637,0.125523,-0.16320439,-0.18229729,0.36106777,0.3193438,-0.081430756,-0.48964188,0.11505164,-0.14920811,-0.50405717,-0.016559795,-0.36160907,-0.21182992,-0.090427525,-0.54256845,-0.14194097,0.01493502,-0.40424287,0.5427287,-2.9295983,-0.2376806,-0.026809815,0.3224451,-0.14377472,-0.25038505,-0.16717106,-0.33536124,0.2722362,0.4143067,0.41292274,-0.5994443,0.33298782,0.30852836,-0.5190536,-0.09505069,-0.5866907,-0.13539267,-0.022835888,0.22517408,0.08338265,-0.027637228,0.06210123,0.17707063,0.5529734,0.06665928,0.12769374,0.2929169,0.36310345,0.023004971,0.34415647,-0.07618599,0.450733,-0.24487999,-0.26757136,0.3076927,-0.29564255,0.23802334,-0.088938996,0.1361633,0.45255774,-0.42487353,-0.8710928,-0.63953805,-0.17709704,1.1696779,-0.2588591,-0.35450906,0.23662388,-0.5437482,-0.19657081,-0.13656265,0.5491578,0.008963279,-0.054778755,-0.7465188,-0.04153043,-0.04072128,0.14772068,-0.10605361,-0.0064500384,-0.32907498,0.72637594,-0.15855631,0.43584302,0.31079432,0.097917125,-0.09450726,-0.39952064,0.0441083,0.735585,0.3409452,0.14686428,-0.28681248,-0.22673124,-0.44565544,0.053932518,0.15240176,0.4144777,0.56327426,-0.027958162,0.19938844,0.22881809,0.012668377,-0.08045549,-0.16625322,-0.076699644,-0.073398404,-0.037298903,0.5134498,0.62708765,-0.13737251,0.47145584,-0.08941637,0.14212868,-0.2161436,-0.44714782,0.46677163,0.7175052,-0.2587725,-0.14882198,0.53005975,0.55816257,-0.21404156,0.36694196,-0.6750507,-0.3211152,0.46354568,-0.09697704,-0.3519322,0.25788414,-0.3104447,0.17375831,-0.8407056,0.22294955,-0.02562689,-0.5063428,-0.5287409,-0.05706361,-3.0447953,0.18383585,-0.08664709,-0.27469704,-0.025788926,-0.26207703,0.25212583,-0.4568206,-0.5227566,0.054973163,0.0215308,0.7724054,-0.09925931,-0.019831747,-0.22914715,-0.434955,-0.36996523,0.113554165,0.072774164,0.47498876,-0.07750878,-0.38824433,-0.02304846,-0.23741856,-0.27864796,-0.070002615,-0.5502839,-0.4181043,-0.21479826,-0.38477823,-0.18978493,0.51422596,-0.3953754,0.030928934,-0.28516757,-0.08251702,-0.057409607,0.29187047,0.07869114,0.012058027,0.09284272,-0.094699875,0.014675744,-0.24990648,0.25184992,0.036669023,0.07544512,0.43745267,-0.07720066,0.28223416,0.61990047,0.60809934,-0.22352338,0.87796366,0.4738622,-0.021205202,0.30591556,-0.20741974,-0.21641842,-0.43333498,-0.19137843,-0.037920088,-0.52410173,-0.4251744,-0.07659709,-0.3208692,-0.7911659,0.4678989,-0.13289931,0.1307941,0.071693614,0.23908396,0.5950781,-0.23790303,0.020127438,-0.1112065,-0.08113138,-0.45606017,-0.4262659,-0.5933192,-0.4258847,0.1093759,1.0607263,-0.17639409,0.060782194,0.091034174,-0.16393133,0.013075485,0.06593953,0.077984594,0.08614348,0.36925545,-0.16474694,-0.4743475,0.4016956,-0.13513134,-0.19541362,-0.56378007,0.12653768,0.49173486,-0.5860842,0.4390688,0.36379075,0.07627508,-0.1475734,-0.61332834,-0.16374701,-0.16982548,-0.28078133,0.36952183,0.23000523,-0.83155626,0.49432364,0.306513,-0.15724567,-0.7591249,0.5414626,-0.10005529,-0.21883765,0.03804161,0.2625816,0.13410784,0.014547138,-0.17786992,0.18016328,-0.41841766,0.3457772,0.27342194,-0.037410907,0.29572928,-0.3169787,-0.038734414,-0.5823355,-0.17605463,-0.48567232,-0.2247521,0.18534923,0.12068936,0.18967852,0.13854803,0.13624862,0.34495735,-0.3337397,0.09407629,-0.10190093,-0.21618034,0.2751428,0.42581326,0.5637073,-0.3378356,0.5915611,0.0030845087,-0.07846172,-0.046696108,-0.04461203,0.3091375,-0.050505012,0.3641544,0.018752575,-0.2468719,0.116419226,0.7688757,0.2209444,0.34621796,-0.004088726,-0.25192153,0.23419727,0.11218052,0.260941,-0.08651738,-0.4788695,0.018278878,-0.34313804,0.1647267,0.3559572,0.1521256,0.27791882,-0.02556058,-0.20481163,0.02710819,0.062966794,-0.05235767,-1.2534649,0.24226655,0.20774326,0.81076247,0.40290633,-0.025813192,0.0879869,0.58812165,-0.14247172,0.10103309,0.3905856,0.0134532675,-0.4983071,0.42616892,-0.7310687,0.5385201,-0.13534391,-0.064566635,0.12313878,-0.074712396,0.47713482,0.7054833,-0.14020197,0.0066036787,0.19848399,-0.3324036,0.17786041,-0.37385178,0.032463737,-0.6670412,-0.19089778,0.6097052,0.44042927,0.32584733,-0.24860084,0.026504826,0.01886399,-0.13321595,0.029474005,0.09599243,0.14180104,-0.14415888,-0.66385716,-0.103483126,0.44637045,-0.023194429,0.13522053,0.07355725,-0.29975906,0.15002963,-0.15140006,-0.10506934,-0.04555869,-0.51297677,-0.18336125,-0.2939423,-0.44468912,0.45330408,-0.175338,0.40137938,0.23573893,-0.0061554024,-0.24076712,0.44181332,0.12994328,0.7496761,0.07671708,-0.13064069,-0.2973569,0.2543014,0.2516809,-0.19862492,-0.20076191,-0.20519568,-0.06341762,-0.43568677,0.34870684,-0.14754659,-0.36462083,0.16471413,-0.0684125,0.017759815,0.4396885,0.02345189,-0.102084376,-0.07884568,-0.194363,-0.27053738,-0.06922804,-0.10123651,0.35225955,0.056550752,-0.15905568,-0.1189484,0.013143782,0.09483361,0.3581669,-0.00044236332,0.30377376,0.33022806,0.065971315,-0.2924561,-0.019101862,0.049699232,0.49629405,-0.004331207,-0.20689277,-0.2764871,-0.35561067,-0.31007868,0.14562541,-0.13306151,0.37122053,0.17673963,-0.10333543,0.7120188,-0.011741411,0.9529859,0.08311955,-0.27470943,0.20926788,0.4414964,0.06039977,-0.08067811,-0.3346842,0.69386184,0.31944853,-0.056757595,-0.16293767,-0.20038,-0.019465808,0.2072185,-0.19342232,-0.23409511,-0.08843161,-0.61988723,-0.17011392,0.23183854,0.23633943,0.30522862,-0.14199816,0.10371652,0.31201112,-0.068130456,0.28230935,-0.26099277,-0.15156537,0.3983692,0.29894045,-0.056828175,0.07512303,-0.30545086,0.4467715,-0.5685471,-0.18064252,-0.2319034,0.18905029,-0.24515012,-0.40195906,0.20713395,0.14965303,0.35621667,-0.18733773,-0.23212244,-0.34927988,0.46576437,0.12415297,0.20375068,0.35169613,-0.18950999,-0.022995822,0.076257266,0.3361108,0.9644681,-0.2701202,-0.03204511,0.3669685,-0.21893972,-0.5241178,0.4219696,-0.5009935,0.3904143,-0.018966418,-0.14226963,-0.5309374,0.30935642,0.19904079,0.10439494,0.072050154,-0.5523756,-0.09168984,0.27846968,-0.16944773,-0.17835297,-0.32318193,0.07974889,0.5277694,-0.1487049,-0.35128158,0.030019121,0.31736705,-0.18396182,-0.5224314,0.12793148,-0.36257416,0.21895266,-0.0955152,-0.34049943,-0.027228922,0.0008947626,-0.41844627,0.15333602,0.116385415,-0.28015646,0.12809674,-0.449223,0.19852851,0.94257057,-0.1929034,0.22998884,-0.45061272,-0.51905715,-0.85150063,-0.2578541,0.45257717,0.26557463,-0.027523696,-0.53196925,0.08519125,-0.12808189,-0.28992805,-0.09436465,-0.25480273,0.41277534,0.15730974,0.34056503,-0.024546735,-0.68769455,0.14773437,-0.07156797,-0.28328064,-0.43774408,0.48446718,0.012321252,0.8608335,0.1562739,0.11305862,0.15567179,-0.4835959,0.057414167,-0.15900533,-0.0014420673,-0.5004947,0.08435792 -926,0.2830985,-0.34855056,-0.37845054,-0.13836396,-0.07166735,-0.028341135,-0.16206764,0.6584767,0.045927253,-0.37221503,-0.1873707,-0.31918895,0.036939975,0.39727962,-0.10840008,-0.51398414,-0.1597143,0.08141615,-0.5162901,0.54102015,-0.34483898,0.053239126,-0.05372094,0.41956636,0.39398554,0.27903488,0.058232486,-0.07863466,-0.0983578,-0.22687846,-0.1190991,0.1433597,-0.61554396,0.3045957,-0.08844227,-0.09332154,-0.0635188,-0.62946016,-0.48000658,-0.7051635,0.29611382,-0.81688637,0.3626915,0.12448779,-0.12585662,0.29263663,0.22568047,0.36910498,-0.2583545,-0.1454276,0.29043892,0.022423124,-0.012169232,-0.15800503,0.03424572,-0.37966368,-0.5694201,0.0073209503,-0.24342103,-0.5383565,-0.20488296,0.20543809,-0.26655075,-0.069042124,0.008030142,0.7266386,-0.41018972,0.19153546,0.19479807,-0.14236312,0.31786874,-0.6558166,-0.25527987,-0.11963568,0.26731697,-0.09277898,-0.19069932,0.24884023,0.32575178,0.123660825,-0.14612718,-0.027396843,-0.094356455,-0.19299786,0.24927194,0.4494382,-0.19082348,-0.67168283,-0.0065178475,0.10972839,-0.055405717,0.096696556,0.1907661,-0.5702805,-0.27619803,0.062025014,-0.34024838,0.3847781,0.3445121,-0.10408863,-0.23272176,0.34552345,0.4716027,0.27532098,-0.18606178,-0.11950765,-0.012531522,-0.5830224,-0.024856046,0.00891821,-0.13941789,0.50099117,-0.15883557,0.25977054,0.7316447,-0.10534856,-0.17143638,0.07746946,0.09382134,-0.025730083,-0.39881405,-0.3346274,0.1514631,-0.30145547,0.18910265,-0.15129258,0.7792063,0.21318097,-0.73869294,0.3527346,-0.59695035,0.2207402,-0.122568816,0.4441551,0.6849923,0.38475823,0.43267003,0.56058997,-0.40017048,0.1223816,0.029305005,-0.40110663,0.108946264,-0.23093636,-0.16904481,-0.4886178,-0.011364897,-0.07869207,-0.043865066,0.10828421,0.29520962,-0.5642882,-0.022120014,0.09342783,0.9626191,-0.2243789,-0.03147633,0.5904819,0.85758835,1.069265,0.010304034,0.96768755,0.1263979,-0.2908842,0.41204223,-0.2777329,-0.739196,0.33162832,0.4204639,0.094877124,0.207087,-0.06535522,-0.02665553,0.34054407,-0.33963537,0.21936388,-0.20770468,0.14173199,0.33672276,-0.29541764,-0.38022423,-0.2779011,-0.12022679,-0.07664485,-0.11755333,0.025600294,-0.24722074,0.44336048,-0.070639335,1.750286,0.07363098,0.11663211,0.09940896,0.5332112,0.11861381,-0.2453196,-0.00990815,0.5454106,0.45277992,0.34987918,-0.46351242,0.2903919,-0.2544376,-0.44623676,-0.06953018,-0.44787255,-0.17212401,-0.035963196,-0.2619938,-0.1916004,-0.13498247,-0.10665398,0.44782138,-2.9975662,-0.166508,-0.2196601,0.2829611,-0.22460945,-0.18782575,0.025305254,-0.3827786,0.3992388,0.3886217,0.6101354,-0.59605974,0.29654035,0.3694903,-0.52795994,-0.2717469,-0.5482738,-0.0074426583,0.01279413,0.47594902,-0.072741546,0.055184823,0.028368458,0.13251399,0.5180369,0.00020088255,0.10096424,0.2960081,0.4378442,0.09313921,0.6297539,-0.119899474,0.38479328,-0.22789876,-0.14820272,0.27178597,-0.45662633,0.29755208,0.025364855,0.04797517,0.48411727,-0.40329528,-0.92449504,-0.6268139,-0.20098512,1.0787004,-0.3280361,-0.30276394,0.3316017,-0.37992707,-0.18203144,-0.15373766,0.40004167,-0.14217955,-0.0033690135,-0.76506805,0.017308736,-0.035410013,0.23344056,0.03723717,-0.25962463,-0.43861946,0.6457249,-0.02759699,0.43858984,0.3346441,-0.023876548,-0.47473896,-0.47033748,-0.07119563,0.88028914,0.29309538,0.08447528,-0.07361693,-0.15343122,-0.33138335,-0.12928842,0.12556197,0.6063909,0.4427185,0.018053642,0.18444197,0.28014985,-0.06668157,-0.01502952,-0.22128464,-0.26499316,-0.13356532,-0.0152456565,0.5651147,0.5977089,-0.11626843,0.50195414,-0.06171212,0.31301576,0.07198911,-0.41345295,0.45197856,1.130462,-0.026746439,-0.3725934,0.447479,0.4432713,-0.3165765,0.34146062,-0.35231963,-0.053046893,0.68731403,-0.25694665,-0.5936335,0.37808546,-0.19958687,-0.0149666965,-0.7838573,0.27762377,-0.24831675,-0.53052264,-0.6415878,-0.21539076,-2.9852803,0.14991964,-0.23675281,-0.45301422,-0.24066897,-0.041560177,0.10105565,-0.5984865,-0.40902996,0.14971988,0.060952794,0.61650574,-0.10585266,0.085342795,-0.21899408,-0.09965164,-0.3377477,0.1847683,0.045176487,0.28130627,0.023656866,-0.39901194,-0.071412206,-0.14863698,-0.48655602,0.117869474,-0.5093012,-0.42101955,-0.09950348,-0.52070665,-0.34704408,0.67578703,-0.3307484,0.036167957,-0.11341039,0.07901011,-0.1577618,0.23659122,0.26226074,0.1679162,-0.08328185,-0.013042524,0.00016380847,-0.3058711,0.32386142,0.012818457,0.4020119,0.24147503,-0.11417546,0.29152378,0.36533603,0.6790321,0.016202722,0.7338097,0.4507219,-0.052437514,0.34267876,-0.33007905,-0.29790065,-0.42713484,-0.24811791,0.16842882,-0.31167218,-0.48354074,0.02945236,-0.30225644,-0.6047805,0.40996572,-0.064671345,-0.068109274,0.022272259,0.20259582,0.5515944,-0.18177183,-0.029882148,0.02736637,-0.06619203,-0.62624997,-0.13064843,-0.5686547,-0.5355106,0.14461851,0.86069155,-0.2562864,-0.099064715,-0.13685636,-0.5050919,-0.012228116,0.25277755,-0.21914291,0.358984,0.31278214,-0.10934558,-0.75477546,0.44203737,-0.17734073,-0.33678102,-0.53156954,0.2717123,0.5781444,-0.5222601,0.71171635,0.22707379,-0.034139443,-0.24516475,-0.36167648,-0.2414825,-0.16622393,-0.2582625,0.28106442,0.08231603,-0.6108025,0.3294505,0.35323167,-0.25029415,-0.7051196,0.4105363,-0.0854039,-0.2804567,0.10078601,0.31731912,0.1399524,-0.036901202,-0.10529119,0.22286119,-0.3984714,0.13798606,0.16075586,-0.0037501454,0.20618725,-0.05341019,-0.056899797,-0.7471941,0.15537955,-0.36131665,-0.3886299,0.4835309,0.17178255,0.2046082,-0.018993502,-0.030760124,0.32585466,0.049180955,0.084091045,-0.13976987,-0.1798837,0.31743145,0.4644703,0.37517717,-0.57868564,0.5493864,0.06372369,-0.020483196,0.1503823,0.09593892,0.21910189,0.19935465,0.39393187,0.014344673,-0.26314187,0.24401908,0.690811,0.18512283,0.601293,0.11596588,-0.006273652,0.28654888,-0.05739985,0.18674664,0.1508333,-0.616694,0.023072824,-0.1701724,0.15363942,0.51299137,0.109776996,0.25394756,-0.14890516,-0.39396355,-0.0016495181,0.3673698,0.26514688,-1.1560036,0.46745703,0.2928051,0.9287236,0.4798578,0.006476074,0.014810597,0.8988347,-0.016790546,0.010199149,0.31814936,0.027365476,-0.68222624,0.5546498,-0.8505187,0.44933936,-0.027524948,-0.051021397,-0.005633384,0.064419515,0.4940853,0.57026225,-0.1968114,-0.06623839,0.05190423,-0.29289216,0.28641397,-0.5660091,0.25472537,-0.37261906,-0.3353615,0.4068925,0.6000704,0.20579238,-0.18556315,0.06554074,0.076935686,-0.22233248,0.1461872,0.016100561,-0.052335262,0.029280834,-0.94092983,-0.16038255,0.5214936,-0.26458237,0.32775494,0.16003491,-0.17610367,0.37854585,-0.18629234,-0.08661842,-0.11364464,-0.57670075,0.22981954,-0.09377063,-0.5513529,0.4414502,-0.13601969,0.21284492,0.25081238,0.011414657,-0.107318215,0.3896316,0.066090785,1.0694281,-0.18665159,-0.22048597,-0.38197646,0.21262453,0.07980361,-0.13280754,-0.09272241,-0.3416327,-0.108357064,-0.5160718,0.61183673,0.11465508,-0.37689766,-0.14677201,-0.14484145,-0.05579604,0.69017,-0.107857294,-0.1197291,-0.21224773,-0.2776928,-0.04727741,-0.049198765,-0.05550389,0.34744096,0.3069953,0.096141815,-0.12053757,-0.07683592,-0.22295402,0.52287465,-0.06913292,0.53196937,0.34143522,0.1480693,-0.32575792,-0.28886354,0.10274144,0.5080032,0.3090792,-0.18506481,-0.23542118,-0.40853497,-0.3627356,0.20053361,-0.07313117,0.5945804,0.15535207,-0.36987412,0.64024967,-0.2074461,1.2597713,-0.07813324,-0.39975056,0.23022904,0.56465054,0.105622105,0.026487073,-0.34635386,0.6391993,0.4697069,0.00021147728,-0.007550703,-0.35546616,-0.0312945,0.054387778,-0.15956692,-0.23816828,0.011542037,-0.59864193,-0.27177534,0.07426671,0.17040826,0.34859458,-0.12684469,-0.11631233,0.26134464,-0.13348368,0.28570345,-0.22787638,-0.079237044,0.18131618,0.22475976,-0.004557828,-0.12595688,-0.5998834,0.45763645,-0.36555302,0.15884243,-0.3323708,0.19225286,-0.21837719,-0.20918871,0.1818815,-0.056747615,0.36133492,-0.3252441,-0.288788,-0.2117585,0.66357654,0.194592,0.19632046,0.5752728,-0.25484505,0.07459853,0.032954264,0.52340466,0.8587578,-0.36277202,-0.11050445,0.39438704,-0.5153282,-0.61540014,0.3693092,-0.28546077,0.3174193,0.09103241,-0.0012658039,-0.47406983,0.16484794,0.2843791,0.07137938,-0.11060875,-0.6592969,-0.34512684,0.39128542,-0.35689092,-0.14446011,-0.39788136,0.107307054,0.5333473,-0.22269888,-0.23089524,0.008548354,0.062825195,-0.23564188,-0.3875793,-0.18174498,-0.42737797,0.46761265,-0.0132261915,-0.2233011,-0.21883272,0.019342208,-0.4786146,0.27662745,-0.18271148,-0.40090492,-0.008564572,0.021764256,-0.23881374,0.9246556,-0.24182324,-0.010264833,-0.5186865,-0.41384518,-0.70672727,-0.30064902,0.5991902,-0.12508999,0.072874255,-0.57801986,-0.14037819,-0.066395946,-0.27449414,-0.16794908,-0.39013764,0.35939166,0.039071076,0.47908196,-0.052689027,-0.82913715,0.28809282,0.17077339,0.026687214,-0.8776378,0.44665194,-0.08093656,0.6784618,0.03494041,0.2703193,0.27090728,-0.23630363,-0.15610966,-0.2571195,-0.28778288,-0.63576597,0.22824882 -927,0.22558287,-0.35619357,-0.48139936,-0.097176254,-0.17115876,0.22614221,-0.28611663,0.3838581,-0.040728975,-0.52117676,-0.12545383,-0.43953562,-0.0900429,0.39549,-0.12504475,-0.3646968,-0.11095252,0.37818098,-0.40335646,0.028642213,-0.4504165,0.31836444,0.044583134,0.24297862,-0.020291101,-0.03585445,0.16791537,-0.15830001,-0.067990825,-0.6620806,0.23919356,0.06720571,-0.8471311,0.33780712,-0.079577565,-0.5298723,-0.0058246613,-0.6300561,-0.34684643,-0.77373946,0.21397348,-0.94298756,0.6204528,0.010820903,-0.14156431,0.27762684,0.0952929,0.5522963,-0.053046454,0.23500538,0.43780175,-0.44344082,-0.18516427,-0.11870819,-0.32119116,-0.40601355,-0.54659545,0.003136009,-0.2865183,-0.18114714,-0.2932902,0.18004404,-0.27637267,0.088287786,-0.17639214,0.18608591,-0.39834917,0.031999446,0.19402345,-0.11096595,0.42220673,-0.53106266,-0.110952735,-0.15772621,0.19050579,-0.5654663,-0.25205788,0.25916696,0.27258706,0.34414834,-0.30608386,-0.00924167,-0.20368087,-0.08648255,0.29965842,0.78060734,-0.025626456,-0.03972756,-0.07659713,-0.18211961,0.12389666,0.12573597,0.017827045,-0.36223102,-0.019139037,-0.031527143,-0.35488537,0.34668195,0.5401622,-0.26591522,-0.124034785,0.4072419,0.52012414,0.23044638,0.0037864447,0.23496492,0.13969095,-0.4026699,-0.18464735,0.351438,-0.07343204,0.27823877,-0.071498536,0.21448395,0.69325817,-0.45041108,-0.10410973,-0.052403677,0.09531538,-0.14631362,-0.15515435,-0.53381884,0.5443288,-0.53604525,0.1823279,-0.2236214,0.9909123,0.07315508,-0.64289904,0.35449687,-0.7324935,0.0049793096,-0.25377318,0.681979,0.3025712,0.49986893,0.1832196,0.61359954,-0.4585007,-0.0076364996,-0.06215931,-0.32082915,-0.082665876,-0.41529852,-0.14005245,-0.22026965,-0.034428798,0.08613836,-0.09308006,-0.12119428,0.4580688,-0.39319712,-0.088664874,0.032842338,0.63085014,-0.4253036,0.0012305558,0.6930967,1.068439,1.000034,0.27847666,1.3283956,0.40708536,-0.31405252,-0.2271873,0.15640199,-0.98231184,0.26381856,0.39555365,-0.24716961,0.20774558,0.34371296,-0.054534502,0.35225207,-0.58688337,-0.025975674,-0.11650698,0.034949146,0.026508266,-0.114174604,-0.39899,-0.23609968,0.0072094337,-0.03176368,-0.096970454,0.20023017,-0.29185635,0.25472352,0.27793062,1.3356853,-0.19184528,0.105597734,0.06777163,0.34083542,0.0076654493,-0.16255596,-0.1123049,0.03418953,0.49447235,0.0783308,-0.5213439,0.12183255,0.07922542,-0.4262394,-0.31495434,-0.171687,-0.08521334,-0.096667826,-0.28724998,-0.2563581,0.048487507,-0.32205087,0.461409,-2.3387313,0.03121909,-0.18407565,0.38330287,-0.13030423,-0.32266432,-0.19639938,-0.4701206,0.39422768,0.37741083,0.38627502,-0.51548094,0.41883296,0.47749668,-0.3714476,-0.115547225,-0.751818,-0.10361435,-0.11627157,0.060252327,0.15351732,-0.02415577,-0.07188488,-0.091741085,0.47621274,-0.38942713,0.12406679,0.3745908,0.37769508,0.17140213,0.51934874,0.032969963,0.5261594,-0.48183203,-0.3057049,0.34048656,-0.33814248,0.1797032,-0.026546676,0.13007183,0.2526955,-0.5518112,-0.91509753,-0.7527541,-0.68913937,1.2778916,-0.35464147,-0.36532038,0.18998562,-0.013027577,-0.46951133,-0.16908579,0.46330777,-0.2671316,-0.09544598,-0.8006159,-0.11162646,-0.16869727,0.48172277,-0.077625796,0.12501337,-0.6016631,0.3986732,-0.31623057,0.44972223,0.4412442,0.12612447,-0.18417169,-0.39162353,0.016766276,1.1629791,0.30972663,0.21961577,-0.47219896,-0.2219162,-0.20772998,-0.039295502,0.07637012,0.44766188,0.8246611,-0.006941813,0.17416383,0.2164078,0.031849608,-0.00013149083,-0.14108238,-0.37052363,0.028568983,-0.010795015,0.6733159,0.18910956,0.2091178,0.48380488,-0.13203903,0.30120152,-0.17050058,-0.29939443,0.18770996,0.9395423,-0.04462639,-0.23427346,0.65311974,0.5224215,-0.41167426,0.44633394,-0.58779,-0.26827267,0.36053142,-0.107670166,-0.44466734,0.33806497,-0.3829572,0.22057274,-0.9259122,0.45787382,-0.27493843,-0.74031335,-0.56078374,-0.23956399,-3.189685,0.11626855,-0.08760224,-0.1386115,-0.13847648,-0.2225085,0.419918,-0.27564737,-0.61158395,0.18310821,0.023818552,0.7253165,-0.07467542,0.038034033,-0.33496314,0.04008303,-0.2842401,0.20188753,0.37350768,0.16354153,-0.13493797,-0.38533783,0.066550896,-0.27326477,-0.19670585,-0.11003735,-0.7227066,-0.43675628,-0.046503894,-0.6702973,-0.5574712,0.7996394,-0.61960095,-0.08582838,-0.22744524,0.06337997,-0.19560328,0.5812191,0.08247266,0.09964696,-0.11102609,-0.14975597,-0.16158679,-0.2017852,0.3029591,0.027814731,0.07441089,0.31948072,-0.30191773,0.035715092,0.5245865,0.555321,0.010317778,1.0096223,0.32934362,-0.12744983,0.20712678,-0.29599872,-0.14454785,-0.5203391,-0.10803149,-0.12617636,-0.60660315,-0.5380992,0.04580742,-0.18612668,-0.6863293,0.73393357,-0.051491916,-0.17569914,0.10926243,0.36450952,0.25395292,0.025973529,-0.12875275,-0.13626951,0.017233562,-0.34643614,-0.35793695,-0.69055593,-0.50644726,-0.100490615,1.2668698,-0.0744011,0.1294076,0.22208019,-0.26516265,0.18100269,0.19740991,-0.062315203,0.11399822,0.5995015,0.13314314,-0.68071634,0.37159094,-0.20838492,-0.11208423,-0.7851295,0.18990341,0.838665,-0.80642354,0.38792682,0.36967978,0.13981152,-0.082397625,-0.3867531,-0.20734325,-0.014662472,-0.30674392,0.30618733,0.053462088,-0.82199305,0.4085776,0.4740345,-0.33004367,-0.7080795,0.5187385,0.032799132,0.03646612,0.2437819,0.3594633,-0.22491741,0.023725849,-0.056254577,0.32072252,-0.36410135,0.31342202,0.1267008,-0.031766843,0.15624662,-0.23707208,-0.08958875,-0.6300994,0.12951498,-0.30502352,-0.21101184,0.12097224,-0.117260896,-0.005254829,0.5949533,0.062277578,0.40674883,-0.28266025,0.025505293,-0.19746771,-0.3219774,0.26544264,0.37620166,0.24369296,-0.43399745,0.7842313,-0.002687639,-0.18468976,-0.36332172,0.040501483,0.5231988,0.031741202,0.30874452,0.08322896,-0.2432777,0.2608424,0.98346865,0.3113184,0.6776464,0.004529631,-0.017553616,0.17626038,0.2767234,0.37200266,0.102691576,-0.50598216,0.05275036,-0.0496027,0.14942381,0.41683537,0.101382695,0.38383645,-0.23322001,-0.2680486,0.007141733,0.159991,-0.12177062,-0.9972456,0.42658305,0.034241192,0.6336629,0.49343076,-0.010512757,0.44491968,0.5506014,-0.21518517,0.08643943,0.07441259,0.07224204,-0.3568274,0.6196128,-0.6690582,0.32409927,-0.22144946,-0.008426863,0.09752922,-0.043912638,0.60166514,0.70665026,-0.08016767,0.16662228,-0.028234744,-0.16691837,0.10689964,-0.41641188,0.3221292,-0.4414102,-0.22018167,0.76991093,0.4851547,0.47440353,-0.21986818,0.04242998,0.015629983,-0.15676925,0.20200245,0.08738748,0.032930706,-0.025297591,-0.623915,-0.10637261,0.77897865,0.08255772,0.01930536,0.06911613,-0.34084848,0.43999583,-0.057909895,0.087313905,-0.048544664,-0.71176374,-0.11962233,-0.58537596,-0.43063775,0.005887312,0.011777079,0.22431234,0.28277656,-0.02003708,-0.3804371,0.24656768,0.53404796,0.7472848,-0.014634972,-0.20940442,-0.33285433,0.20358412,0.21126394,-0.21588245,-0.1602638,-0.2546191,0.042601276,-0.7136037,0.38257635,-0.23776165,-0.48081166,0.53448546,0.010035828,-0.094823934,0.6896615,-0.11520101,0.18408814,0.39228922,-0.32536522,-0.15345046,-0.12656932,-0.31002694,0.048073106,0.084368385,-0.06007147,-0.11086488,-9.691716e-06,-0.2630556,0.24446961,0.000115466115,0.42244664,0.44876376,0.28161415,-0.40664497,-0.08995192,-0.39878526,0.7061008,-0.20819724,-0.18552765,-0.25700518,-0.38300127,-0.065802,0.4834845,-0.05560457,0.4030561,0.1014059,-0.548895,0.8048326,-0.09261276,0.8037262,-0.010092522,-0.36258242,-0.008426649,0.5719939,-0.118275665,-0.16078277,-0.4630041,0.81387645,0.60648793,-0.10474342,-0.19571415,-0.23364373,-0.22920522,0.0940956,-0.26039964,-0.2495363,-0.12534443,-0.6533214,-0.19367291,0.2374877,0.3669479,-0.038370878,-0.115910515,0.48209754,0.47544318,-0.024968887,0.18506157,-0.503654,0.13921754,0.31706384,0.33203468,-0.029761812,-0.05230997,-0.26849878,0.26257682,-0.64374995,0.01665094,-0.33566156,-0.0018531621,0.061297834,-0.13438027,0.1660541,0.07933588,0.2380877,-0.27205095,-0.16398866,-0.035136867,0.30065146,0.08699076,0.42602438,0.82345504,-0.21426506,0.36213484,-0.010804313,0.52928936,0.9612502,-0.30426183,0.0580137,0.5248574,-0.35773113,-0.40617442,0.56762916,-0.35168707,0.088328324,-0.03210781,-0.33607706,-0.24335721,0.23964718,0.3374075,-0.095284775,0.24344711,-0.48789388,0.08202596,0.34271413,-0.32754472,-0.4148698,-0.4701982,0.17073259,0.7229064,-0.14522386,-0.37097302,0.049133968,0.50628483,-0.3740737,-0.30554435,-0.10744681,-0.28846574,0.34483874,-0.06640975,-0.33012345,0.076142445,0.04758629,-0.34048954,-0.058141343,0.13648507,-0.2948354,0.11223586,-0.31188694,0.23613322,0.6569369,-0.35907832,-0.15359099,-0.71125996,-0.5989913,-0.9228757,-0.2273182,0.5426346,0.36362118,0.044677574,-0.29649195,-0.041324146,-0.088971354,-0.28992283,-0.054960914,-0.48313046,0.3358847,0.06579679,0.5477005,-0.036057223,-0.88850373,0.13413362,0.11156634,-0.39104968,-0.4162503,0.48272333,-0.062935874,0.74392295,0.077209845,0.10958467,0.1474689,-0.52226293,0.23523703,-0.08813675,-0.091073245,-0.85585517,0.06336002 -928,0.4494824,-0.24172509,-0.43748882,-0.20109092,-0.046973865,0.17449275,-0.13473402,0.39068416,0.166568,-0.5250793,-0.16517678,-0.3634092,-0.036011416,0.29898575,-0.06660053,-0.6336916,-0.109780565,0.06025695,-0.47394437,0.5734964,-0.4737144,0.4109531,0.050875835,0.17812733,0.1582471,0.37310925,0.112874605,-0.17018498,-0.07062906,-0.24456434,-0.12331345,0.092942536,-0.50175136,0.205827,0.058388468,-0.35015652,-0.16515519,-0.44447082,-0.3473175,-0.58005124,0.26954585,-0.69096714,0.42292133,0.0039021203,-0.16546896,0.34789357,0.022856805,0.24557522,-0.28400818,0.0793862,0.15666828,-0.035666432,-0.09367095,0.0027818042,-0.121136256,-0.25873345,-0.6007063,0.052494977,-0.30251932,-0.35420626,-0.23701288,0.0663022,-0.35833496,0.020152807,-0.20061935,0.38794476,-0.36197734,-0.09155906,0.24018244,-0.14998177,0.26280764,-0.5589377,-0.15123573,-0.07946894,0.19827558,-0.25074905,-0.14817175,0.1769074,0.25073674,0.5237317,0.042319782,-0.0894318,-0.37416625,-0.1231939,0.3476326,0.55989414,-0.023729166,-0.359974,-0.12659687,0.003263269,0.0030755487,0.053656068,0.21202254,-0.26096743,-0.25336802,0.037009727,-0.23067212,0.1761659,0.4064985,-0.3785388,-0.42015058,0.37578383,0.62393105,0.11042567,-0.022979986,0.12011747,0.053340573,-0.38753697,-0.15716386,0.14322247,-0.16338451,0.32899782,-0.14973925,0.24724989,0.6282464,-0.15482195,0.09939668,-0.0047187805,-0.13961382,-0.11816106,-0.15696537,-0.11705921,0.09808527,-0.365033,0.16581716,-0.16247287,0.784761,0.1966281,-0.6830025,0.3989158,-0.5083901,0.19995658,0.03377543,0.62962,0.673792,0.20309594,0.25540665,0.62018317,-0.35034013,0.024744626,-0.10504013,-0.31642348,-0.014385894,-0.08877475,-0.0072319508,-0.5270119,-0.0012219207,0.13232708,-0.07689186,0.07703565,0.35919222,-0.52112645,0.10680919,0.080516756,0.7357977,-0.31796047,-0.019999716,0.7506271,0.97804874,1.0659099,0.13584355,1.1840811,0.21335016,-0.31868124,0.20681044,-0.5798804,-0.6619347,0.23677956,0.33628246,0.17922091,0.3191451,0.09985965,0.01307258,0.42926815,-0.33337379,0.2775504,-0.11803884,0.10151924,0.10580634,0.0047934824,-0.4167908,-0.23499808,-0.11368368,0.059579678,0.09516477,0.14313854,-0.17774959,0.39176944,0.11665128,1.7649285,-0.23185483,0.12727478,0.012840151,0.2995539,0.056720812,-0.27137214,-0.076098084,0.2232265,0.4228743,-0.028373148,-0.7310985,0.13876382,-0.100602664,-0.46782345,-0.20494854,-0.34302092,-0.0187989,-0.051559,-0.30767298,-0.12421159,-0.16210051,-0.5294455,0.3131741,-2.7357616,-0.17942412,-0.12177296,0.23698887,-0.25253376,-0.38152176,-0.09416013,-0.4427064,0.3368712,0.34934762,0.36762634,-0.6286286,0.34717155,0.41523954,-0.3838966,-0.13742158,-0.605768,-0.023829851,-0.021894148,0.28657076,-0.0125409495,0.029839933,-0.038021922,0.18965109,0.37514156,-0.07797571,0.049401976,0.2933167,0.27363485,0.1718153,0.4524545,0.06551371,0.54944116,-0.081788525,-0.114918835,0.3228306,-0.31149602,0.23118632,-0.058372296,0.19962814,0.2362913,-0.49442655,-0.74491435,-0.6957765,-0.5972584,1.2318357,-0.24439695,-0.35931015,0.3749021,-0.21333659,-0.30273494,-0.17004271,0.44804507,-0.17411144,-0.3005391,-0.81553686,0.019213328,-0.11364322,0.21026863,-0.03430521,-0.089991234,-0.5298274,0.7230555,-0.11605931,0.5493079,0.3840379,0.0851186,-0.045296993,-0.30591044,0.026156107,1.1096687,0.38260236,0.07044115,-0.2565351,-0.2393264,-0.3788467,-0.10816083,0.06922736,0.3805149,0.6929713,0.028823735,0.101339355,0.18178561,-0.0040614987,0.075153686,-0.113459125,-0.19877554,-0.07381078,-0.06682255,0.59575015,0.3383133,-0.18382578,0.5456826,-0.12293436,0.16286932,-0.15452442,-0.34757352,0.44277975,0.8151685,-0.0766388,-0.21774706,0.5489942,0.40186256,-0.25515175,0.3484026,-0.54043806,-0.124146305,0.40802914,-0.31450972,-0.30551594,0.30560365,-0.2534663,0.16767056,-0.9850921,0.22038658,-0.19194995,-0.5989601,-0.5660696,-0.11067878,-3.6322937,0.09973198,-0.09060676,-0.31750324,-0.016103284,-0.06641384,0.26140925,-0.55920875,-0.595703,0.13755114,0.05241841,0.6151792,0.020133147,0.06582433,-0.1781355,-0.14253761,-0.36908984,0.1652668,-0.039322253,0.3247413,0.07535754,-0.27396405,0.016051294,-0.16676542,-0.30763716,0.025223792,-0.5182337,-0.51549625,-0.08584132,-0.5016933,-0.26841596,0.66317207,-0.22918953,0.07355472,-0.21917759,-0.029678037,-0.15030701,0.4198575,0.14638078,0.13375019,-0.0014609013,-0.0058607436,-0.02535918,-0.23121956,0.25744465,0.09849493,0.31471506,0.4145031,-0.20936823,0.29354525,0.41676235,0.63130814,-0.015310183,0.67691386,0.5383454,-0.14678338,0.27097416,-0.36070606,-0.09296174,-0.45795155,-0.3020908,0.040942457,-0.37473226,-0.65258723,-0.18690255,-0.24295427,-0.79850495,0.36153263,0.044036094,0.051468484,-0.0038883004,0.15907495,0.4349565,0.05939562,0.06596137,-0.16613956,-0.05611411,-0.49122688,-0.2586603,-0.62724245,-0.37423787,0.23567012,1.0218496,-0.20819232,0.07219219,0.041280456,-0.3395133,-0.01582892,0.08155085,0.07310132,0.19768175,0.35605627,-0.014909319,-0.5880145,0.45819807,-0.022433953,-0.18051662,-0.59920454,0.054702424,0.60540825,-0.6059104,0.46087864,0.13331045,0.048252247,-0.029223485,-0.3363875,-0.09402274,-0.079594746,-0.2882125,0.22979261,0.122492336,-0.5595681,0.37463012,0.29286456,-0.03057146,-0.7017933,0.24490069,0.0012275066,-0.21084145,0.04511989,0.21583872,-0.028843509,0.110873364,-0.12061168,0.14349894,-0.33839774,0.30815533,0.35223788,-0.008572345,0.30072775,-0.1397936,-0.12255086,-0.69320214,0.011166104,-0.43129382,-0.16874799,0.09772577,0.26087818,0.26881117,0.22046538,0.024972081,0.4027306,-0.27418223,0.10449743,0.111321874,-0.19376482,0.2057551,0.34282,0.30244684,-0.39438057,0.569995,0.073254354,-0.056115013,-0.24237892,-0.049915433,0.5351561,0.07579769,0.2725111,-0.09399981,-0.36578473,0.34538174,0.8301314,0.17781314,0.41298223,0.10582803,-0.15218414,0.2879591,0.09036619,0.09939579,0.023769217,-0.48145136,0.08239281,0.020385435,0.18134084,0.38105717,0.18684076,0.3073495,-0.09689514,-0.29900786,0.014002255,0.2704261,-0.100286715,-1.0771908,0.3409452,0.07353174,0.8057191,0.66957587,-0.040076263,0.16104473,0.47275877,-0.32844815,0.11647331,0.2198907,-0.09146255,-0.6516653,0.51907426,-0.7044641,0.43825123,0.006613936,-0.020607496,0.014592888,-0.19098756,0.39512372,0.7209968,-0.16831799,-0.014497495,-0.0988754,-0.1495863,-0.009855254,-0.3897269,0.0886284,-0.49341705,-0.23639844,0.69203526,0.4324634,0.378179,-0.033125374,0.03410558,0.04848075,-0.026841568,0.11083666,0.106419675,0.04566529,0.0020844936,-0.67183685,-0.19869414,0.54778725,-0.22083294,0.13947678,0.032358248,-0.4386654,0.10080127,-0.08036717,-0.1883496,-0.06352506,-0.623956,0.10936903,-0.34891352,-0.3925235,0.23677795,-0.14051142,0.32685047,0.17054224,0.022887941,-0.16141999,0.26713774,0.251646,0.6803195,0.069382675,-0.10920005,-0.3271498,0.24636085,0.1645737,-0.19726107,-0.19731502,-0.13734971,0.07776458,-0.5715424,0.38878265,-0.018356856,-0.41362232,0.23784658,-0.119930424,0.07703085,0.5470186,-0.24971221,-0.049657114,0.09080579,-0.3358943,-0.14676407,-0.042684097,-0.08865626,0.29365197,0.19787182,-0.13492292,-0.04987367,-0.05661873,-0.08813749,0.3666025,0.15892465,0.41464677,0.34832424,0.009457086,-0.330519,-0.19679888,0.09600574,0.30217406,0.11990379,-0.03440862,-0.2500865,-0.3889371,-0.35892457,0.28039128,-0.15278395,0.34598514,-0.05731948,-0.33732155,0.6156634,0.093769856,1.0545254,0.07737879,-0.3380573,0.072409295,0.38791957,0.09070448,-0.048878543,-0.38087633,0.83683175,0.51061285,-0.10896458,-0.2137746,-0.29978338,-0.12681563,0.2456675,-0.16251428,-0.11791752,-0.055091705,-0.7010039,-0.3399276,0.21256296,0.13925402,0.17034362,-0.068818666,0.09608537,0.1398575,-0.0041669137,0.31626502,-0.46538863,-0.13041125,0.3040239,0.04950261,0.09588904,0.065064006,-0.44820574,0.40833727,-0.6114645,0.11978344,-0.1047697,0.114816986,-0.03656024,-0.15227519,0.26093024,0.18907355,0.40237728,-0.29701972,-0.41042417,-0.35711455,0.55456126,-0.13922141,0.1088211,0.61573887,-0.24756551,0.22028829,0.16631389,0.49138227,1.0998188,-0.10013182,0.16529597,0.33748668,-0.25964904,-0.47884113,0.35024548,-0.20249535,0.07116219,-0.04714152,-0.24863802,-0.38749167,0.22137496,0.27551243,0.07359529,0.26285124,-0.46127272,-0.41733232,0.18139656,-0.42171508,-0.21865988,-0.3664996,-0.059856188,0.7372028,-0.3483961,-0.23470625,0.13115504,0.20825338,-0.3833122,-0.5407378,-0.09614421,-0.24948104,0.310391,0.01886304,-0.32119983,-0.056792945,0.1182936,-0.2489235,0.04401664,0.124246456,-0.40031943,0.04901255,-0.3653423,-0.09184128,0.90844804,-0.09681845,0.13431774,-0.67101544,-0.4825983,-0.77883446,-0.44831222,0.69421107,-0.0054876334,-0.1297714,-0.43978825,0.027276,-0.09991461,0.11086481,0.025264662,-0.4347348,0.49632856,0.16560616,0.27351594,-0.0031156072,-0.6719709,0.123759694,0.13120766,-0.180678,-0.62932485,0.53905505,0.061485834,0.7129094,0.08697351,0.056153845,0.1957752,-0.5271858,0.018492201,-0.124135494,-0.16082452,-0.7335312,0.114146076 -929,0.31983894,-0.27042472,-0.5075626,-0.12465503,-0.35954788,0.09869696,-0.3303897,0.10534353,0.20134914,-0.26136208,-0.22644475,-0.016307535,0.028895535,0.25044337,-0.064970866,-0.60111874,-0.2038604,0.17776519,-0.78895974,0.5079206,-0.49001357,0.2949051,0.16899104,0.3312953,0.036869492,0.22208858,0.18219566,-0.10614971,-0.13509084,0.0033445433,0.02141187,0.21684647,-0.6938772,0.1453424,-0.23795952,-0.17244789,-0.04021634,-0.2824129,-0.3148242,-0.7019167,0.18647799,-0.8661084,0.5593778,-0.28260306,-0.15918696,-0.051421426,0.24205814,0.5548228,-0.23881087,0.0769552,0.25408664,-0.1712609,-0.18212414,-0.26922965,0.18362837,-0.38908768,-0.36976248,-0.003994273,-0.53512406,-0.25727624,-0.18173225,0.2765878,-0.18712464,-0.0013066158,-0.22316955,0.450945,-0.4384751,-0.12360604,0.4270401,-0.12309641,0.3763596,-0.5859213,0.04407473,-0.10175629,0.49581486,0.00767339,-0.18594365,0.30803555,0.24081406,0.33104414,0.22496691,-0.27806216,-0.14213765,-0.15426277,0.3477748,0.2642458,-0.019820103,-0.18567374,-0.27714488,0.10512224,0.2382245,0.16255926,0.13007873,-0.43708834,0.04969331,-0.035555765,-0.23308653,0.55857927,0.42302918,-0.20378432,-0.22186781,0.24728823,0.7111295,0.35886046,-0.27322918,0.07909805,-0.03754144,-0.46525282,-0.12519991,0.23142457,-0.07788132,0.4745166,-0.14778034,0.036527492,0.75797856,-0.12110113,-0.056182973,-0.00024680048,-0.07595666,-0.19497457,-0.2492256,-0.13698475,0.066268094,-0.53456795,0.04995409,-0.19851428,0.64583766,0.112668365,-0.69669676,0.3818117,-0.54661745,0.17015117,-0.05633856,0.5984517,0.7700349,0.4305593,0.20565033,0.8745997,-0.27937883,0.17024225,-0.0023241192,-0.48706424,0.12329867,-0.31660366,-0.0027842075,-0.45413637,0.09832656,-0.24653432,0.062516466,-0.13682567,0.25905657,-0.49929965,-0.047738083,0.16495147,0.72722083,-0.30346903,-0.05464936,0.5596145,1.0893341,0.9992981,0.10869864,1.3033595,0.3649241,-0.25994876,-0.021549962,-0.31199408,-0.6778451,0.2097232,0.3012322,0.04327894,0.39681476,-0.07095243,0.05457641,0.37062147,-0.5101906,0.12008125,-0.051603258,0.40569225,0.14598596,-0.02397278,-0.36318082,-0.05889275,0.1611194,-0.062018573,0.13993496,0.053926215,-0.16018288,0.3167167,0.112350196,1.3335308,-0.2377177,-0.009924087,0.044164844,0.45235574,0.294388,-0.13773303,-0.0034397785,0.40765908,0.49787632,-0.14004654,-0.5531076,0.30379465,-0.26528206,-0.45232555,-0.21770196,-0.33490476,-0.06198132,0.12310371,-0.3369611,-0.18980908,0.112795874,-0.20349105,0.4359616,-2.7459726,-0.3390294,-0.07347818,0.21805483,-0.40082198,-0.23836085,0.0044630505,-0.48280883,0.27898094,0.21443,0.38907528,-0.64842975,0.622262,0.4805569,-0.4706427,-0.05226788,-0.6054236,-0.1636257,-0.050036445,0.50343233,0.09013684,-0.094152115,-0.19067493,0.28365755,0.5482343,-0.16262828,0.15778627,0.5226587,0.17831144,0.10529906,0.59731996,0.07380624,0.601766,-0.18680406,-0.07689103,0.5060271,-0.2038742,0.15600911,-0.10269608,0.03327017,0.5216794,-0.37460247,-0.78632814,-0.7410159,-0.40102607,1.0206379,-0.4311206,-0.56111586,0.08961724,-0.14483961,-0.064680636,0.122629,0.4662427,-0.015889332,0.14175919,-0.8300841,-0.008957267,0.0130710825,0.29366264,0.016001325,-0.13039345,-0.41104746,0.7112738,-0.020430364,0.5807885,0.26655322,0.33487004,-0.083887875,-0.53546983,0.14195691,0.89976454,0.35456076,-0.067253515,-0.3168478,-0.2590527,-0.06965564,-0.08176144,-0.040813822,0.54527456,0.65090215,0.016665127,0.059513666,0.25786594,-0.19159397,0.02879756,-0.22707126,-0.2637129,0.037852004,-0.10910171,0.48321813,0.6760801,-0.15336566,0.51497674,-0.30656523,0.3384043,0.027470194,-0.61097795,0.7545452,0.63956,-0.19918095,-0.113527045,0.43427038,0.40275848,-0.37576538,0.38527417,-0.6384742,-0.22633074,0.7050106,-0.1373766,-0.4212531,0.26106763,-0.28282475,0.24922784,-0.8904846,0.31384423,-0.37291878,-0.3078479,-0.504694,-0.13131201,-3.0650485,0.14947414,-0.10463761,-0.1566425,-0.37375528,-0.08511549,0.31790116,-0.4746703,-0.58700466,0.15872082,0.20368454,0.5874915,-0.029276682,0.10570623,-0.2874932,-0.19440109,-0.13808882,0.20434615,0.08312563,0.20408219,-0.15135492,-0.39023638,-0.08276993,-0.21639216,-0.43393993,0.20130411,-0.53361195,-0.45617637,-0.07470347,-0.3983306,-0.33294386,0.639272,-0.35497376,-0.049559303,-0.22372131,0.084328264,-0.08667193,0.25343305,0.091111675,0.3099163,0.22290722,-0.0053441226,-0.05390977,-0.36567265,0.401618,0.016593974,0.22489566,0.1546687,0.0067924,0.17031014,0.39767936,0.65407485,-0.24361101,0.7887286,0.49389997,-0.007970192,0.21608415,-0.24547103,-0.29739588,-0.5531235,-0.2750129,-0.10723184,-0.439829,-0.50087106,-0.06892122,-0.33513874,-0.7585257,0.5758559,0.04384002,0.3088824,0.056163512,0.21701935,0.40264416,-0.126289,0.031541575,-0.12670636,-0.15785521,-0.5444206,-0.39636,-0.61182046,-0.4997099,-0.1285716,0.9948765,-0.26022425,0.06098059,-0.08692337,-0.5050355,0.08145652,0.18713588,0.067411646,0.35025352,0.5569475,-0.010410806,-0.6630987,0.31455088,-0.011452582,-0.071286574,-0.47117925,0.16195777,0.7251797,-0.67877364,0.58720946,0.35145706,-0.023742229,-0.1381575,-0.46801206,-0.20054695,0.01803632,-0.3949078,0.5313129,0.07320753,-0.7110412,0.4272664,0.16675323,-0.38449,-0.70508945,0.39486,-0.09311649,-0.2455434,-0.024212278,0.28920674,-0.05065487,-0.0024215113,-0.22526535,0.15324098,-0.4296446,0.22074105,0.21539445,-0.024362028,0.22416419,-0.12475215,-0.2900634,-0.6595659,0.025782283,-0.52108896,-0.25915006,0.28896883,0.08353533,0.00016170368,0.092068516,0.16882177,0.4783729,-0.2237907,0.13843995,0.005627744,-0.331727,0.23651159,0.5300233,0.2230367,-0.36158082,0.4689889,0.093163446,-0.12511204,-0.096506536,0.10510512,0.40715033,0.12691996,0.2683519,-0.022375971,-0.011218168,0.37139538,0.64143485,0.098337874,0.5060915,-0.023033544,-0.22683056,0.4543826,-0.075491294,0.2838642,0.030175216,-0.4485067,0.015486177,-0.06281382,0.30640015,0.44740272,0.34575975,0.29038975,0.07916332,-0.2646099,-0.024487793,0.24284597,-0.12337829,-1.2151436,0.48019904,0.3726914,0.86198306,0.48736048,-0.036444858,0.035439868,0.64659023,-0.27773744,0.13926068,0.34350464,0.040277347,-0.4468277,0.6221854,-0.7098468,0.25420952,-0.17106539,-0.08968103,0.1299396,0.1334985,0.26458526,0.84725124,-0.28327566,0.046868242,-0.07356002,-0.04509095,-0.07888903,-0.25193614,-0.0045601428,-0.33407164,-0.48998243,0.61454445,0.45410693,0.3418192,-0.33316278,0.042527832,0.024397023,-0.23275828,0.28739747,-0.057181433,-0.012532325,0.15055981,-0.49816507,-0.33482343,0.5041864,-0.14365959,0.08576816,-0.105221584,-0.1861261,-0.013714317,-0.1570096,0.033996657,-0.028716898,-0.6369704,-0.06449175,-0.15150347,-0.3367569,0.46750477,-0.28735888,0.10941644,0.20512046,-0.019140545,-0.14115912,0.32034877,0.009653829,0.65904444,0.24444722,-0.22051385,-0.31874985,-0.03081774,0.23014833,-0.28816566,0.032385997,-0.39415184,0.09006047,-0.52311116,0.629568,-0.06485973,-0.38379484,0.27389574,-0.23196863,-0.12567443,0.56893134,-0.17258349,-0.14171791,0.23982213,-0.10404374,-0.25357357,-0.08645759,-0.31873435,0.20365776,0.36209488,-0.02199231,-0.05327199,-0.29156244,-0.15268773,0.60264117,0.07619102,0.4483645,0.41178596,-0.095220685,-0.37127683,-0.027585324,0.3392338,0.5077565,0.20794468,-0.0025231577,-0.23356415,-0.37330788,-0.2777443,0.2931673,-0.09382407,0.104757875,-0.04122395,-0.3283974,0.8259741,0.14342439,1.1525353,0.08035718,-0.30483055,0.12287155,0.46702862,-0.04444751,0.1281414,-0.54593575,0.59403324,0.5568951,-0.039688863,0.01960583,-0.44653487,-0.13874738,0.19129968,-0.2603051,0.08518029,-0.14068322,-0.669133,-0.46503258,0.24157676,0.1775154,0.07114927,0.048437484,-0.11678936,0.039592177,0.049498864,0.42753312,-0.58070284,-0.11542799,0.14590898,0.15735039,-0.11376025,0.09964562,-0.41822836,0.42301297,-0.6884365,0.01212775,-0.3002667,-0.010542594,-0.18852665,-0.26787543,0.08316225,0.004797671,0.27944133,-0.40942287,-0.44098422,-0.14283356,0.4837083,-0.026259296,0.22975197,0.7402185,-0.19411208,0.21170445,0.14205027,0.41599783,1.144747,-0.40066147,0.05046332,0.20951733,-0.40162832,-0.5496966,0.34055302,-0.28974164,0.097899094,-0.083672896,-0.4943345,-0.55751395,0.23314646,0.0072180256,0.06984766,-0.007860031,-0.62893367,-0.09104942,0.46321142,-0.3745718,-0.16275221,-0.25339228,0.29113337,0.60890466,-0.35002965,-0.33450836,0.0005160123,0.2733901,-0.32745773,-0.38644055,-0.082365885,-0.2599169,0.40807363,0.12925352,-0.17199625,-0.13598202,0.25370258,-0.5066824,0.08283764,0.28704804,-0.3051819,0.07986401,-0.013609223,-0.035666406,0.8830726,-0.17990881,-0.17432061,-0.6634737,-0.44994462,-0.9348224,-0.38062447,0.19667313,0.18079042,0.022829514,-0.5591184,-0.029018506,-0.18469554,-0.01913376,0.11263969,-0.57280445,0.37264025,0.1271202,0.5693084,-0.20100127,-0.95707804,0.06391373,0.0624849,-0.055186197,-0.66371226,0.6539918,-0.05986209,0.79838866,0.013028016,-0.032453034,-0.09450997,-0.39877933,0.18907185,-0.35125208,-0.11516915,-0.82964486,0.102341466 -930,0.46011338,-0.36190176,-0.5666519,0.023241179,-0.38573477,0.11585855,-0.039573234,0.5686577,0.3589491,-0.30372402,-0.2899089,-0.15009466,0.0034716788,0.33832374,-0.12059041,-0.40564242,-0.10950606,0.34414366,-0.5870934,0.67084056,-0.18087308,0.2432112,0.03552698,0.49601966,0.5004889,0.21490394,-0.135951,-0.0018121302,-0.18179977,-0.22279385,-0.17759119,0.23366728,-0.41943768,0.38452002,-0.26470262,-0.27781647,-0.12004639,-0.72933835,-0.54818135,-0.76412135,0.24492513,-0.76867014,0.6488064,-0.12820664,-0.2127161,0.06822115,0.1097822,0.40938133,-0.22640324,-0.102267615,0.36526537,-0.15175553,-0.22310485,-0.14145438,-0.20084664,-0.26703998,-0.49659333,-0.109377824,-0.22216897,-0.023991214,-0.2092603,0.214365,-0.13793838,-0.08070314,0.05342563,0.5551001,-0.35045916,0.25961128,0.14257227,-0.05619773,0.08056765,-0.586718,-0.32466105,-0.19770078,0.39990467,-0.10285498,-0.40149015,0.24668112,0.2001382,0.20691799,-0.06360661,-0.114431776,-0.21724097,0.032947965,0.212447,0.6159366,-0.14648846,-0.47709134,-0.116206445,0.06031915,0.22474353,0.17334059,0.26933673,-0.4659651,-0.10230981,-0.05284432,-0.0623825,0.37959465,0.40717322,-0.09973626,0.09006558,0.37056193,0.39387324,0.41878882,-0.16694994,-0.026509898,0.004478294,-0.45613092,-0.14149396,-0.11484564,-0.20553578,0.48562902,-0.06305248,0.20806254,0.5069408,-0.089816146,-0.277615,0.20322248,0.29727766,-0.198361,-0.12899171,-0.39673787,0.29333755,-0.3950594,0.13136797,0.08555029,0.67861706,0.19665591,-0.58959275,0.26105097,-0.58513767,0.04273477,-0.12920901,0.3442699,0.6623789,0.5038261,0.26080182,0.74231154,-0.22315924,0.102814786,0.07054495,-0.33334956,-0.13870688,-0.251204,-0.101782486,-0.62925607,-0.09490925,-0.16253074,-0.17884402,0.14035389,0.37966558,-0.49794927,-0.15373527,0.07180295,0.77644855,-0.27028254,-0.0410829,0.9860258,1.011396,0.8723057,0.1157004,1.1680657,0.13947347,-0.29530236,0.0011599915,-0.07972834,-0.7154926,0.32050222,0.40407297,-0.8210532,0.22931409,0.1497707,0.063095145,0.32104093,-0.49015626,-0.03520913,-0.12694211,-0.016681109,0.11105503,-0.11221124,-0.4529821,-0.40906996,-0.2557194,0.106845535,-0.080698475,0.2164781,-0.2722899,0.44297487,0.12804282,1.6719106,0.04763135,-0.12590776,-0.013375829,0.3986802,0.28794906,-0.20845358,-0.336508,0.30040404,0.43051687,0.13565199,-0.51390916,0.07405288,-0.11691674,-0.30044875,-0.13332579,-0.23248614,-0.26784664,-0.016372416,-0.30939093,-0.28328627,-0.07091618,-0.25431502,0.4923455,-2.7063854,-0.17297928,-0.034458715,0.4233319,-0.12611619,-0.36011344,-0.16919048,-0.43868488,0.2525276,0.20478234,0.49715927,-0.5985576,0.26954597,0.33776832,-0.71647304,-0.24105155,-0.46866456,-0.09505056,0.14029978,0.30067366,-0.06754687,0.10182941,0.080322266,0.020365069,0.34196043,-0.117693804,0.13969415,0.45559844,0.39768654,-0.04705618,0.49637565,-0.07802444,0.607446,-0.2994828,-0.17303498,0.30523425,-0.21984518,0.25392967,-0.04779017,0.13776514,0.68817014,-0.5374926,-0.74969864,-0.62127835,0.043113887,1.0863421,-0.21434096,-0.21189635,0.20503923,-0.5893984,-0.31219885,-0.0019790444,0.44353417,-0.0550111,-0.11078559,-0.7129407,-0.11744686,0.15261105,0.014815041,-0.08118439,-0.13938917,-0.38984197,0.62291086,-0.02520549,0.6287719,0.37900382,0.18011819,-0.24795203,-0.3556338,0.110265,0.9479955,0.4647832,0.14302717,-0.18164313,-0.0066315657,-0.5656522,-0.07479378,0.11444449,0.53141326,0.4506182,-0.14998065,0.15463248,0.27902517,0.10323449,0.0868581,-0.24203634,-0.21386994,-0.15907931,-0.04462937,0.41527727,0.7408113,8.52985e-05,0.67892164,0.031855937,0.37042412,0.021481497,-0.4559571,0.4108459,1.2072588,-0.19768454,-0.3621884,0.53333867,0.44745016,-0.10992871,0.33874723,-0.31782237,-0.30676636,0.39969972,-0.11538303,-0.42210525,0.33645287,-0.16249306,0.25109246,-0.7664407,0.35558018,-0.06956458,-0.6930124,-0.4484633,-0.004134173,-2.1992035,0.17970546,-0.269023,-0.18241562,-0.0864328,-0.29128698,-0.024310246,-0.52908605,-0.64212996,0.17861797,0.02649802,0.76782656,-0.15519747,0.12357825,0.023319444,-0.34064293,-0.18991116,0.124177404,0.07162376,0.4656908,-0.042458434,-0.5286587,-0.22312112,-0.10701088,-0.31077734,0.0011615753,-0.7883478,-0.40654877,-0.053052336,-0.61852044,-0.35590023,0.6953843,-0.33864444,0.015553975,-0.15571155,0.016674025,-0.05100238,0.11588142,0.042004935,0.093285,-0.01462571,-0.09858249,0.07821043,-0.15407614,0.2028785,0.08775584,0.17871518,0.14715545,0.08402152,0.47383007,0.40311494,0.7657972,-0.29698277,0.93807924,0.55148476,-0.26746553,0.15572591,-0.24021854,-0.45869806,-0.49870983,-0.22418039,0.10518682,-0.4948239,-0.4283173,0.021792488,-0.34168133,-0.8604589,0.61040086,0.16546439,0.13218018,0.10807327,-0.0007474763,0.5917883,-0.2793526,-0.028150273,-0.017391281,-0.17383312,-0.54694134,-0.14429685,-0.545188,-0.393795,0.042078357,1.2624863,-0.26674157,0.113725185,0.2404406,-0.45715025,0.17591347,0.19587128,-0.11571831,0.16343226,0.45005172,-0.056669254,-0.6202764,0.3232515,-0.18279906,-0.13956042,-0.48902375,0.38701692,0.69214046,-0.641894,0.5596909,0.297434,-0.010129298,-0.2660463,-0.19366738,-0.10452112,-0.13178828,-0.09950919,0.4495225,0.23785338,-0.6321467,0.23645698,0.33172056,-0.20617917,-0.80671346,0.54319257,-0.02971044,-0.18087183,0.009070805,0.28594008,0.13743666,-0.0721157,-0.24827984,0.2587529,-0.23506474,0.23192154,0.10346607,-0.16473384,-0.16795148,-0.36794356,-0.1293052,-0.888132,0.17266853,-0.36772725,-0.47028896,0.31432456,0.1438925,0.11566021,0.023625493,0.30382887,0.21335658,-0.359512,0.13657214,-0.1910234,-0.32565933,0.27806342,0.4462215,0.51918745,-0.35859632,0.5517028,-0.01529155,-0.17263606,0.0031838757,0.07626271,0.30421135,0.104680344,0.36575508,0.17135255,-0.20825031,0.27366194,0.6919823,0.13020413,0.33322784,0.008944546,-0.17659354,-0.07084912,0.09588071,0.38587043,-0.050308198,-0.6562831,0.14124669,-0.33060256,0.09804428,0.47109923,0.26588994,0.08922611,-0.05645724,-0.6031971,0.007502807,-0.023800297,0.22502877,-1.3391732,0.41657305,0.2006038,0.7809041,0.36737466,-0.106006704,0.00975324,0.6462172,-0.011133044,0.087571755,0.33601478,-0.16306385,-0.3721303,0.3132587,-0.6827792,0.52050114,0.011058475,-0.032193135,0.25178477,-0.05191985,0.44330963,0.7356078,-0.1611764,0.074608706,0.06596917,-0.31195608,0.12798159,-0.43702284,-0.07711172,-0.7271954,-0.4296637,0.7203139,0.59374183,0.30845043,-0.14158945,0.18255155,0.082488775,-0.20399253,0.26260597,0.2632447,0.10822026,-0.06806572,-0.789744,0.052620143,0.5036956,-0.31664434,0.052897386,-0.047953673,-0.10682881,0.23879743,-0.20199862,0.13939205,-0.09719377,-0.79790074,-0.079704,-0.49992725,-0.45840314,0.30542526,0.05133784,0.17073585,0.2184408,0.07136847,-0.13790414,0.6511167,0.1720061,1.0226195,0.033565205,-0.16385034,-0.18448141,0.37441427,0.1649487,-0.083520725,-0.030600095,-0.3437782,0.018203901,-0.61736596,0.52569664,0.17180681,-0.3219142,0.01071241,0.0379625,0.16676667,0.5107291,0.0050528687,-0.061712224,-0.12217382,-0.10362153,-0.31379464,-0.26931486,-0.18216428,0.13888821,0.3816422,0.034732033,-0.15541188,-0.16095807,-0.17331915,0.27060816,-0.123119116,0.626144,0.29300043,0.11993545,-0.26119262,-0.13509846,0.24356113,0.5492995,0.014111431,-0.2170683,-0.32144314,-0.27845335,-0.4135242,0.110754736,-0.09527089,0.39539665,0.11121733,-0.050418172,0.66910076,-0.049215037,1.2267469,-0.00808319,-0.30949542,0.17130968,0.47202867,-0.044636603,-0.22405103,-0.20558415,0.9177784,0.43524578,-0.01003073,-0.10011764,-0.44029695,-0.17586647,0.23900877,-0.22449265,-0.14562733,0.10081098,-0.4671543,-0.2759168,0.11316577,0.13729091,0.28119,-0.17363882,0.19743569,0.45373985,-0.0781569,-0.040031016,-0.38503,-0.17239925,0.3001814,0.20310572,-0.10595268,0.018372843,-0.5441871,0.47387287,-0.37045106,0.17194824,-0.21989049,0.24342072,-0.30315813,-0.18061061,0.16222014,0.11803242,0.2836872,-0.44988534,-0.29780102,-0.43848428,0.53899777,0.12455593,-0.027098013,0.43075672,-0.32776657,0.011772965,-0.05271197,0.38276434,0.6921288,-0.28366834,-0.02167075,0.4024203,-0.4324141,-0.43203303,0.28503722,-0.3187696,0.09400483,0.10889169,-0.14528129,-0.68940353,0.22445928,0.17752054,0.12732857,-0.10705472,-0.7626397,0.067398585,0.3739643,-0.16146922,-0.12715204,-0.36923474,0.05422932,0.39283296,-0.25149792,-0.6311718,0.101832084,-0.11111212,-0.108760275,-0.41542414,-0.06701691,-0.41729417,0.19804774,-0.073531546,-0.32130393,-0.38661766,-0.13204193,-0.46403232,0.13369569,-0.009648967,-0.38696337,0.10400974,-0.2288781,-0.18238425,1.0354792,-0.30784145,0.2771748,-0.41279963,-0.4135452,-0.6395267,-0.38617674,0.23189838,0.1288553,-0.06409713,-0.76092064,0.022607194,-0.08586029,-0.364078,-0.1979606,-0.31796265,0.5126504,0.16772164,0.4221249,-0.15349698,-0.94804007,0.37290642,0.048643705,-0.32124397,-0.5829611,0.36685544,0.02114657,0.73060447,0.025612256,0.15319361,0.2980635,-0.42377928,-0.15306391,-0.17758097,-0.061681014,-0.45077085,0.0015203442 -931,0.32274136,-0.2530387,-0.6493139,-0.09066391,-0.09070265,0.31669956,-0.44029254,0.18086025,0.19446097,-0.4750999,0.079515085,-0.20610496,-0.09536987,0.051072028,-0.12794037,-0.67499393,0.045188945,0.019409698,-0.47652483,0.8015323,-0.43089765,0.1714601,0.14922486,0.18789007,-0.038511287,0.18589285,0.2032353,-0.14295684,-0.107791595,-0.09341341,0.09164526,-0.26808268,-0.535418,0.113910265,-0.26757595,-0.29532126,0.14255424,-0.2715577,-0.3966518,-0.778273,0.22502004,-0.9005701,0.4439222,0.02118449,-0.32362238,0.47808963,0.04169825,0.23226091,-0.26966766,0.0824094,0.14376776,-0.35467726,-0.40701053,-0.35098785,-0.38679928,-0.63730055,-0.45065904,-0.109499164,-0.58881146,-0.0074410737,-0.21940707,0.18549204,-0.2576515,-0.12853839,-0.2847985,0.30543616,-0.4973289,-0.1554211,0.11794293,-0.095052205,0.3737138,-0.8209531,-0.12246658,-0.13592021,0.022524636,0.15156695,-0.13679305,0.21602537,0.17141524,0.40352282,0.016333086,-0.21066292,-0.36852512,-0.15937744,0.36679167,0.2580894,-0.028008742,-0.18771695,-0.17558457,-0.22910394,0.33081004,0.32247835,0.14296229,-0.31667343,0.038066,0.03528732,-0.38245794,0.46471336,0.6698925,-0.27495587,-0.027794315,0.39797026,0.45749268,0.2985671,-0.32038498,-0.017279983,-0.08177025,-0.46401992,-0.19662301,0.44242483,-0.096938595,0.6464637,-0.14616157,0.2307694,0.49512094,-0.17319253,0.06455158,-0.033763546,-0.008537999,0.014654564,-0.18365596,-0.19705555,0.2719406,-0.6329651,0.06696028,-0.58267033,0.39232954,0.018998938,-0.63426214,0.28804868,-0.4754478,0.14319511,0.030669121,0.725008,0.79755116,0.54837036,-0.04042398,0.744538,-0.36148334,-0.13368101,-0.13628684,-0.1510836,0.25311238,-0.12230485,0.1901463,-0.39251933,-0.087940514,0.0569028,0.046431493,-0.108972274,0.6482148,-0.20927732,-0.1457644,0.094169565,0.7278493,-0.23670384,0.04777757,0.6388833,1.1271385,0.7728134,0.1147481,1.450303,0.39826816,-0.24156204,-0.09797077,-0.031175297,-0.7981352,0.16277921,0.32272503,0.44139758,0.38264152,0.038555168,-0.1912137,0.39562207,-0.2748277,0.076208256,-0.17637947,0.108931676,-0.14950256,-0.17030866,-0.21963789,-0.10361425,0.05024951,0.06822573,0.26226902,0.23943743,-0.06800843,0.42253777,0.13988641,0.9770595,-0.20004402,0.052792035,0.05146804,0.3293423,0.21970864,0.07770598,0.06913996,0.43790013,0.34576195,0.013102134,-0.60746247,0.082505904,-0.27306518,-0.52449715,-0.1834507,-0.40286514,-0.19409847,-0.09367701,-0.31381717,-0.25492415,-0.032162435,-0.48059484,0.23076192,-2.7278993,-0.1847935,-0.26877642,0.23814459,-0.21296346,-0.19903731,-0.16861835,-0.42741466,0.6580885,0.31466818,0.3680287,-0.5623999,0.47281858,0.64156353,-0.47561413,0.0008215989,-0.6497119,-0.10560601,-0.14603174,0.5406473,-0.06619167,-0.27981535,0.14673318,0.0056321365,0.50712967,0.032771137,0.18661597,0.31308866,0.49054334,-0.1262178,0.22823915,-0.007843311,0.38509536,-0.416511,-0.048880134,0.34153005,-0.29928797,0.39349762,-0.3063828,0.23703761,0.46012592,-0.43081123,-0.5088294,-0.4150353,-0.1590689,1.0900857,-0.2783423,-0.7191118,0.11651923,-0.21966507,-0.29256597,-0.1549772,0.6555008,-0.1556101,0.105645485,-0.68142813,-0.13884793,-0.016938487,0.25770906,0.08935974,0.26755774,-0.3642585,0.88692516,0.026634319,0.5882373,0.4448831,0.17533578,-0.17878532,-0.46080568,0.25971296,0.7410484,0.375181,0.07847919,-0.2461364,-0.17880745,-0.16175675,-0.2233936,0.037618805,0.6160199,0.8752286,-0.037579454,0.07218761,0.24073088,-0.22167595,0.027636811,-0.24247925,-0.38970488,-0.2532026,0.17564575,0.43960088,0.5214144,-0.02055149,0.26001835,0.055027492,0.27500194,-0.3044431,-0.5049886,0.65203476,0.93317896,-0.18332063,-0.05890461,0.55672276,0.67364424,-0.3507639,0.5173334,-0.6463317,-0.39925703,0.4665641,-0.17517142,-0.5147091,0.31345412,-0.43869898,0.10709662,-0.70710754,0.15719078,-0.4942146,-0.2714196,-0.77779853,-0.08193493,-2.9269307,0.11105231,-0.3290477,-0.08238526,-0.40166038,-0.17767687,0.44657642,-0.38302487,-0.5166747,0.23337577,0.19350131,0.6631278,-0.06754859,-0.05673011,-0.38378686,-0.25719,-0.26689234,0.20697513,0.020175753,0.087213375,-0.39432636,-0.28794646,-0.029737523,-0.16110332,-0.2660026,-0.13175417,-0.28498736,-0.23161952,-0.2513506,-0.24885789,-0.17527331,0.6656992,-0.3647054,-0.0756019,-0.23333065,-0.022598648,0.06122517,0.37119165,0.039851807,0.22205357,-0.04932418,-0.12419183,0.056744635,-0.3419606,0.13472612,0.1169585,0.1320386,0.69919634,-0.15026556,-0.007543317,0.33961576,0.60954523,0.04430782,0.8693796,0.22899291,-0.095837906,0.46497256,-0.16268589,-0.3121509,-0.7591378,-0.19694625,-0.13029717,-0.3010109,-0.547978,-0.15103768,-0.23349372,-0.7151333,0.46026847,0.14817251,0.1785331,0.078798614,0.52320874,0.49672085,-0.1275654,0.06034107,-0.16415755,-0.15741846,-0.3299641,-0.28314728,-0.84700096,-0.51905525,0.16958416,0.69430363,-0.1474826,-0.2766619,0.25298664,-0.3723523,0.09954447,0.31086174,0.10032606,0.116067424,0.32919332,0.2476342,-0.6196561,0.696761,0.10178079,-0.15770134,-0.6642513,0.1456472,0.6483177,-0.7380882,0.37746185,0.60127014,-0.056678712,-0.32843775,-0.55160993,-0.116120614,0.09620179,-0.32701316,0.41944274,0.1768719,-0.8537427,0.42148283,0.1938483,-0.037448194,-0.70317876,0.51243746,-0.042274285,-0.13431735,0.023506578,0.51917803,0.019604564,0.13329098,-0.22106747,0.31835964,-0.35867923,0.23572232,0.1462739,-0.078765534,0.5213911,-0.046352386,-0.1672632,-0.7449618,0.115628324,-0.55406696,-0.11367799,0.5625506,-0.043052394,0.3199202,0.09680707,0.12702645,0.37807605,-0.34409577,0.22431557,-0.1960801,-0.37754494,0.40819237,0.49188766,0.35814834,-0.40480635,0.7467702,-0.15950893,-0.21329466,0.08958066,0.20898768,0.3516486,0.26215467,0.5021262,0.029178878,-0.17274849,0.086679,0.96527004,0.3122849,0.50298727,0.3951871,-0.068468705,0.50471205,0.033108365,0.16214712,-0.2755715,-0.5208642,-0.15553318,0.002004632,0.24547903,0.37290117,0.0054420233,0.5383344,-0.120506905,0.15656163,-0.07646445,0.27098346,0.10032716,-0.67135775,0.2745134,0.25189453,0.68197405,0.64854366,-0.07056708,0.05802358,0.46601528,-0.18826962,0.078342,0.35468084,0.13372931,-0.5193105,0.51993996,-0.56558836,0.22959697,-0.18114951,0.02418461,0.13701923,0.036726702,0.46337706,0.79159874,-0.15079817,0.049597852,-0.058620814,-0.22435713,0.28286773,-0.2674189,-0.016775532,-0.1299521,-0.46199164,0.60326433,0.3972394,0.38984272,-0.2061458,-0.07579662,0.22495513,-0.055231202,0.53757507,0.06554586,0.096310414,-0.25842458,-0.59329176,-0.26665646,0.48005673,-0.054865744,0.15200412,0.25290355,-0.23176602,0.18900375,-0.07701974,-0.08832292,-0.09170443,-0.6430273,0.11023987,-0.32343462,-0.61839205,0.649501,-0.02528033,0.27102828,0.328878,-0.05617268,-0.23085739,0.055130474,0.007037725,0.4794111,-0.101143666,-0.16048951,-0.36830926,-0.063460395,0.32031605,-0.48290023,0.0057658213,-0.01768466,0.1756312,-0.7202299,0.5377557,-0.37120432,-0.1998637,0.1673377,-0.2597174,-0.12567048,0.6077176,-0.2876595,-0.16402756,0.2997978,-0.07337095,-0.35401607,-0.35705847,-0.2297734,0.17231146,-0.07708037,0.1273375,-0.25952926,0.031611342,0.1124915,0.31884027,0.14860177,0.017633393,0.46765748,0.12228567,-0.52428305,-0.1762509,0.28047296,0.54462975,0.16760029,0.019033518,-0.2842228,-0.5346359,-0.36642843,0.2771825,-0.012390162,0.23654023,0.15850933,-0.45458147,0.76168424,-0.010426061,0.78404766,0.032822963,-0.4359884,0.12995742,0.5683857,-0.116240434,-0.19678439,-0.33061934,0.7678032,0.56695205,-0.19096892,-0.05608916,-0.47198132,-0.021287147,0.3467029,-0.2943487,0.0046860576,-0.08050973,-0.70108604,-0.23695551,0.17159484,0.21772881,-0.06297753,-0.28606123,0.1435716,0.068222575,0.15759088,0.2685322,-0.62419516,-0.23822732,0.37716293,-0.1371268,-0.009251835,0.18785068,-0.24727595,0.23327853,-0.66795766,-0.05554119,-0.44007125,-0.122528866,0.14553441,-0.22154489,0.22453716,0.070301466,0.2840787,-0.33074903,-0.49352902,-0.108325675,0.4231235,0.32051376,0.46658966,0.5598411,-0.16826937,0.04701313,0.0023168602,0.6038836,1.2666095,-0.12986264,-0.041071586,0.21331213,-0.506465,-0.7280669,0.22921522,-0.45557848,0.4309666,0.03383797,-0.46731168,-0.409437,0.22571845,0.05913353,-0.13335933,0.07076399,-0.7644667,-0.30656677,-0.00022700003,-0.2684804,-0.18565418,-0.35319546,-0.06396807,0.74474555,-0.33607224,-0.11754157,-0.10596103,0.2902893,-0.43898717,-0.4192522,0.14713906,-0.34066454,0.27054822,0.10609098,-0.23239692,0.2453059,0.07067892,-0.6524259,0.23487233,0.030004527,-0.4388608,-0.13141978,-0.3266931,0.067316815,0.7679269,-0.13112545,-0.03818847,-0.14620654,-0.7383459,-0.67681456,-0.43967268,0.010302661,0.17069733,0.1046209,-0.507968,0.20287158,-0.13866097,0.24288486,0.05145681,-0.41858324,0.42779693,0.123193555,0.45310694,-0.18754824,-0.6484892,0.17724968,0.107269004,-0.26807603,-0.41795555,0.39294648,-0.28917602,0.8035425,0.15798876,0.068931326,0.2208679,-0.7749496,0.281986,-0.3733832,-0.13060842,-0.56656474,0.08109655 -932,0.4235214,-0.30012378,-0.4511391,-0.01766689,-0.26355156,0.14559802,-0.09744671,0.49499363,0.30831286,-0.40423977,-0.28295296,-0.11248343,0.13106865,0.39307517,-0.20868029,-0.48064855,0.012137807,0.3050399,-0.42354122,0.54960036,-0.3661575,0.2307133,0.12415154,0.34634262,0.40505952,-0.0058145532,0.0001513958,-0.061042666,-0.33924216,-0.3421828,-0.46071383,0.22896484,-0.23603883,0.27646834,-0.07963332,-0.389262,-0.072112635,-0.5441246,-0.35635927,-0.7339477,0.22683686,-0.751934,0.5281545,-0.09287056,-0.22793151,0.1460182,0.31251937,0.3612641,-0.08953018,-0.13630931,0.20130971,-0.16312853,-0.10152699,-0.2446843,-0.3074949,-0.53852934,-0.6776759,-0.17283219,-0.2675235,-0.18764599,-0.19510746,0.32443902,-0.35072866,0.032424863,0.027669443,0.48236597,-0.30382773,0.23113999,0.13869397,-0.111340605,0.20613113,-0.67126185,-0.27758384,-0.028023062,0.16112797,-0.09173837,-0.33005765,0.22526997,0.46020338,0.23932849,-0.08482062,-0.11518073,-0.2614794,-0.15592432,0.09649977,0.66555625,-0.3077364,-0.54721165,-0.05800235,0.09835473,0.47266886,0.32114366,0.18753982,-0.31533054,-0.037416775,0.21272898,-0.36798513,0.41514322,0.24651766,-0.35545355,-0.03644373,0.30736688,0.32308847,0.16124487,-0.24362986,-0.20406379,0.014961334,-0.52439606,-0.03218514,0.20365074,-0.37561306,0.6358455,-0.19143926,0.31174314,0.57149625,-0.21389927,-0.052946083,0.18487048,0.2600737,-0.120238215,-0.32667425,-0.38604605,0.17454155,-0.4649966,0.11727778,-0.10876456,0.98776907,0.04880256,-0.572249,0.31379455,-0.6223952,0.07584903,-0.20659846,0.2490341,0.48049942,0.46315187,0.2940044,0.6742398,-0.37139133,-0.12909824,-0.07901691,-0.3162972,-0.12993647,-0.18504198,0.18034731,-0.5384584,0.027583249,-0.045931697,-0.08955094,0.31443012,0.5170992,-0.5927838,-0.23011255,-0.017089656,0.87483525,-0.30100453,-0.18849127,0.7986084,1.0448709,1.0521464,0.019067425,1.0670316,0.3187938,-0.21760684,-0.02548192,-0.11400983,-0.43984747,0.38201046,0.3700125,-1.0815431,0.16221759,0.04346744,-0.033674743,0.28189725,-0.25037855,-0.057343967,-0.15048432,-0.08477382,0.2218013,-0.15650068,-0.38795334,-0.4260348,-0.19414656,-0.018680014,0.14119364,0.24204026,-0.21631585,0.5364819,0.17838573,1.5243398,-0.084390655,-0.07919704,0.054756816,0.20574853,0.24328367,-0.0741244,-0.015190968,0.2516214,0.3225094,0.07335219,-0.4505994,0.11463433,-0.30607048,-0.34006265,-0.14009412,-0.15736529,-0.18943718,0.18274611,-0.37363705,-0.30052185,-0.1362894,-0.2420139,0.5395984,-2.7206607,-0.37430513,-0.056790728,0.30385244,-0.2036232,-0.5869462,-0.06648847,-0.58642584,0.39695483,0.018538503,0.57068163,-0.6336633,0.26178747,0.2878081,-0.6138712,-0.28783256,-0.7388653,-0.10950352,0.07929473,0.1692444,-0.023976097,-0.008196776,0.14083976,-0.008841212,0.5413424,-0.11083082,0.13455653,0.38162297,0.4456351,-0.093342945,0.56052303,-0.07994187,0.73769057,-0.17117518,-0.20424546,0.26185396,-0.42735556,0.34376848,0.06678062,0.18043351,0.6647911,-0.34048912,-0.76522255,-0.648409,-0.10304871,1.0325373,-0.14088185,-0.31296793,0.18319534,-0.35853162,-0.398255,-0.13758536,0.37392733,-0.11212291,-0.09265467,-0.75052065,0.034417767,0.063854866,0.093896955,0.021133631,-0.2055049,-0.20200147,0.5949973,-0.04909026,0.4245606,0.31569952,0.21792902,-0.44399226,-0.27541658,-0.104807444,0.88239706,0.5144143,0.12450673,-0.24118485,-0.08408319,-0.45975095,-0.08281803,0.09214912,0.4943266,0.5916528,-0.05556266,0.0528813,0.2947219,-0.0033179612,0.084093094,-0.08924428,-0.3862861,-0.06729072,0.0065279603,0.45020518,0.51872027,-0.018675685,0.7414993,0.08280253,0.44309264,-0.1429948,-0.5146834,0.44286457,1.3464062,-0.29566795,-0.4561235,0.5933266,0.33310825,-0.15647417,0.3351596,-0.4047275,-0.33362293,0.49988744,-0.1785958,-0.5247849,0.15621355,-0.27428088,0.100165404,-0.69804627,0.3839525,-0.31614143,-0.48067045,-0.38481063,-0.106616735,-2.4028816,0.2764633,-0.30952498,-0.14757627,-0.13224022,-0.23131885,0.006920081,-0.6623231,-0.48668283,0.1606341,0.28795996,0.71015745,-0.02959675,0.04519534,-0.028622326,-0.2548091,-0.08424293,0.12868387,-0.02620047,0.35925263,-0.028773006,-0.4118732,0.04805649,-0.06436612,-0.39173386,0.20196986,-0.7109136,-0.44443575,-0.05545921,-0.52117515,-0.52993417,0.7809354,-0.5497182,0.11946971,-0.13987805,0.14710023,0.05403935,0.26855147,0.09684534,0.095274046,-0.07679892,-0.029606186,0.19338916,-0.27191097,0.22530644,0.062364437,0.2659039,0.34097487,0.06531422,0.39764303,0.44159368,0.64478534,0.077351406,0.8594678,0.41102192,-0.108760685,0.08564322,-0.1753375,-0.46161515,-0.433752,-0.29148504,0.13932659,-0.4155078,-0.35059005,-0.13854629,-0.27935272,-0.67237335,0.5643664,0.15903424,0.16866867,-0.09597637,0.3779976,0.5744857,-0.28302997,0.07305508,0.076564424,-0.17777498,-0.5951296,-0.26442564,-0.5681158,-0.35114914,0.1749832,1.0952754,-0.33189502,0.19110394,0.020385921,-0.33079332,0.011314163,0.21278766,-0.14772996,0.043119576,0.42149937,-0.3922308,-0.6706992,0.28776997,-0.28625104,-0.18655106,-0.42822102,0.45872954,0.7730412,-0.5457555,0.5013826,0.42845318,0.0202115,-0.30609438,-0.36442822,-0.09851014,0.0826065,-0.18778917,0.37182057,0.25269726,-0.60969055,0.25034043,0.37522423,-0.31855172,-0.6149831,0.53023875,0.04085267,-0.31138185,-0.1780027,0.392378,0.35382217,-0.006488539,-0.055352155,0.08684875,-0.40873355,0.25668877,0.038598243,-0.028575612,-0.026120214,-0.19235413,-0.17211336,-0.8980131,0.122733936,-0.38432142,-0.37645784,0.2999658,0.12504321,0.2592034,0.23704435,0.07623445,0.2611295,-0.47897977,0.048188146,-0.13997093,-0.2964932,0.33599633,0.415023,0.49682486,-0.26443836,0.49125788,0.09030844,-0.15351914,-0.0003684117,0.031632457,0.40884268,0.25366843,0.40426606,-0.013891477,-0.27666062,0.36966795,0.68768936,0.121813536,0.34896952,0.04042798,-0.14228085,-0.16618453,-0.05386639,0.25524247,0.11516975,-0.5842767,-0.081343815,-0.39096242,0.11955197,0.5129684,-0.08660091,0.21945542,-0.104807205,-0.42121476,0.02700498,0.040226314,0.17322387,-1.1970071,0.4696374,0.2242476,0.8157782,0.30866763,-0.05579144,-0.13329403,0.69004565,-0.24640872,0.20364247,0.35767287,0.014855476,-0.33551788,0.47057045,-0.82567066,0.48488948,-0.042627737,0.018826861,0.0054041226,0.03282006,0.35026735,0.87530136,-0.23604153,-0.012909352,0.10734903,-0.4872058,0.12059419,-0.44525167,0.054500606,-0.71850514,-0.44400883,0.6873198,0.49064004,0.42207208,-0.14778982,0.034672365,0.24354824,-0.16518322,0.20579419,0.11390995,0.2238044,-0.10078209,-0.71273035,-0.035503928,0.42789766,-0.027777625,0.30235374,0.04485991,0.026760118,0.21737133,-0.15196422,0.05774832,-0.0873712,-0.5862814,-0.010685169,-0.3854117,-0.575581,0.446475,-0.25879616,0.10519728,0.2229103,0.06368239,-0.04337615,0.48487267,0.37939495,0.85004646,-0.02974088,-0.10225366,-0.25571287,0.28078163,0.022245921,-0.025305588,0.09330761,-0.15816863,0.13049135,-0.7114778,0.5711465,-0.10324281,-0.15604533,-0.028330078,-0.09618103,0.15754224,0.43180344,-0.26988935,-0.08807169,-0.21641353,-0.032629233,-0.20727803,-0.13573074,-0.05368305,0.2418358,0.39071178,0.116081126,-0.20982376,-0.3526953,-0.36845878,0.10524146,-0.15842159,0.48575848,0.33871153,0.07943102,-0.21536604,-0.24107185,0.09385408,0.4192742,-0.0132002,-0.2869101,-0.38766187,-0.3949644,-0.40266922,0.2047484,-0.0330435,0.4053197,0.037224695,-0.1163561,0.83077997,-0.22077672,1.2209531,-0.029639363,-0.378169,-0.072603896,0.4270624,-0.12148949,-0.10282489,-0.12694378,0.89601296,0.4850827,0.09629337,-0.07048565,-0.4643559,0.057907693,0.20054308,-0.23154886,-0.099224254,0.1197925,-0.41677624,-0.44938284,0.1800766,0.08433808,0.15720852,-0.08862233,0.107762344,0.51184785,0.02677201,0.21887878,-0.36479828,-0.09708995,0.22591121,0.37675107,-0.04598747,0.2933809,-0.46763223,0.33217922,-0.46698138,0.20612827,-0.34624916,0.19102618,-0.14868332,-0.14350048,0.28567642,0.21440798,0.21899632,-0.33094183,-0.27321735,-0.055080123,0.44413823,0.100233786,-0.045179807,0.4619308,-0.29680884,-0.15312946,0.02065494,0.50553244,0.9822194,-0.3467852,-0.12340387,0.41205978,-0.39788035,-0.4523474,0.4677195,-0.24261746,0.07948008,0.113989204,-0.090987355,-0.56171644,0.29380938,0.3947179,0.07751311,-0.080595136,-0.51762354,0.020592557,0.25131696,-0.42714706,-0.17154004,-0.24863304,0.3159324,0.27384374,-0.2807503,-0.3844035,0.059254467,0.18296146,-0.1002976,-0.2987472,0.004264992,-0.42440277,0.21605372,0.06462753,-0.24198912,-0.16376813,0.006995485,-0.47389752,0.020803057,0.10814951,-0.31851885,0.22497147,-0.20711423,-0.17973843,0.83316296,-0.25800386,0.122705825,-0.5776565,-0.29330096,-0.42744234,-0.5152716,0.26525503,0.106212124,0.00929395,-0.74969107,-0.13272788,0.05100971,-0.23531431,-0.09648728,-0.28916013,0.51999915,0.13138627,0.39257765,-0.1929761,-0.7826712,0.1500054,0.017243495,-0.059355512,-0.5891821,0.31870762,-0.13690211,0.78855455,0.042524572,0.015073623,0.50891787,-0.3327435,-0.07915003,-0.263917,-0.32951406,-0.70442927,-0.08976392 -933,0.5515579,-0.099528074,-0.6158635,-0.3929587,-0.2676689,0.20854884,-0.20820437,0.34287226,0.3867438,-0.3997663,-0.09555873,-0.0029612505,-0.07083308,0.32104543,-0.17087951,-0.9137253,0.15265135,0.22411579,-0.6934407,0.30089352,-0.4780636,0.36255786,0.014109208,0.29734087,-0.020966332,0.19254486,0.002182548,0.06091214,0.1443045,0.04345516,-0.21368282,0.1279412,-0.69447577,0.14449173,-0.042589802,-0.4166195,-0.12996474,-0.44046286,-0.2614101,-0.83233607,0.5130584,-0.8775886,0.5351077,-0.04923926,-0.43518803,0.11574335,-0.1446322,0.103878506,-0.41226262,0.0654592,0.1798536,-0.2109317,-0.11126088,-0.1190494,-0.2629656,-0.497101,-0.66172135,0.033718403,-0.41940907,-0.071356006,-0.2734988,0.17049639,-0.34935492,0.04251615,-0.32514888,0.38778433,-0.35074776,0.041906916,0.19092456,-0.19718647,0.019759191,-0.49348485,-0.073658675,-0.17556173,0.19220176,-0.035779588,-0.33218274,0.14613467,0.37161556,0.76086944,0.12102655,-0.37204272,-0.079112664,0.07834211,0.024313666,0.3888128,-0.25006023,-0.49489486,-0.20522235,-0.15408093,0.2963545,0.10253684,0.11922161,-0.4849076,0.0018669006,0.019638687,-0.2996832,0.3928076,0.6084321,-0.5186657,-0.16772754,0.4281076,0.41504022,0.00967611,-0.13866447,0.25999436,-0.045564897,-0.5890594,-0.4044972,0.16352382,-0.09772842,0.60756123,-0.21797313,0.17825016,0.65808415,-0.049557988,-0.038103715,-0.066912375,-0.09620566,0.0040889885,-0.35766375,-0.12408208,0.18000236,-0.5564728,0.1173163,-0.35333025,0.7413763,0.33979723,-0.88565814,0.47832453,-0.448782,0.18376344,-0.17788158,0.6194394,0.8674033,0.47527775,0.07517129,0.903792,-0.6649695,0.046062145,0.114361115,-0.3449586,0.08665287,-0.011515255,0.16448912,-0.4796278,0.18017925,-0.03312195,0.0155850835,0.04445805,0.33990496,-0.38902107,-0.2208499,-0.00652984,0.7131596,-0.41898102,-0.01298379,0.6897465,0.9117681,1.0411911,0.1302242,1.5975763,0.3689596,-0.13239184,0.1772264,0.012030995,-0.8037573,0.13460454,0.3308763,0.5806037,0.16973709,0.11046973,0.1519367,0.3523766,-0.2205848,-0.00075323763,-0.03008609,0.15269583,-0.029088827,-0.1861577,-0.2201896,-0.2286691,0.20409995,0.1936356,-0.11953679,0.3210258,-0.08806502,0.3964609,0.3109543,1.3154225,0.05851255,0.11737123,0.044032626,0.43863788,0.21996967,-0.27263615,-0.06364787,0.20502557,0.48327512,-0.14949171,-0.5712675,-0.028795429,-0.26703578,-0.40657154,-0.087613836,-0.34185892,-0.19637646,-0.077279314,-0.47906354,-0.20508605,0.044890072,-0.35316724,0.5237323,-2.2145495,-0.3061601,-0.1176699,0.33418816,-0.059776586,-0.379545,-0.23380738,-0.47526768,0.28416765,0.28458717,0.22780114,-0.7794455,0.40488422,0.46613222,-0.3820333,0.0018686423,-0.74168295,-0.11809338,0.0011966503,0.2912849,0.042003732,-0.09119313,-0.22010294,0.32873985,0.59807515,0.23421523,-0.021249212,0.3080103,0.54819834,0.016113387,0.52014494,0.018186565,0.6601659,-0.31170565,-0.08312193,0.31494635,-0.5753483,0.3643903,-0.04257563,0.2718351,0.48839903,-0.46915972,-0.7414516,-0.79538524,-0.40344986,1.2806085,-0.306939,-0.31780705,0.4913317,-0.14748889,-0.26565665,-0.10436451,0.5352198,-0.088478774,-0.11519364,-0.6179621,-0.12560664,-0.05831424,0.19813706,-0.13898923,-0.060177848,-0.31075758,0.8865316,-0.11166391,0.5607649,0.26719823,-0.014389198,-0.002173167,-0.44517496,0.076280706,0.9065169,0.42736262,0.17289501,-0.20016098,-0.08990001,-0.40160143,-0.040560644,0.060816612,0.6298914,0.7265163,-0.02673025,0.0020876504,0.2384472,0.075179964,0.048597775,-0.20483612,-0.3674841,-0.071830064,-0.074191764,0.42659774,0.58876216,-0.3262585,0.02039658,-0.17023805,0.029914673,-0.12925838,-0.5477756,0.6142712,0.9508871,-0.09606739,-0.18691455,0.48648483,0.22069469,-0.56904024,0.4526874,-0.57996315,-0.19822524,0.6037651,-0.005737064,-0.40113074,0.10996633,-0.3609812,-0.043657325,-0.73243207,0.34532234,-0.14989172,-0.5504574,-0.19432174,-0.14603749,-3.8911922,0.29910544,-0.06549054,-0.02675613,-0.3230337,-0.17687389,0.3885515,-0.32986993,-0.6059605,0.09030425,-0.04595501,0.5460676,-0.08145075,0.21925679,-0.22825839,-0.116657905,-0.44113016,0.104420304,-0.022381105,0.2537682,0.02084306,-0.22938214,-0.06414222,-0.24375965,-0.44034874,0.053391837,-0.68185055,-0.4665709,-0.12482051,-0.3928812,-0.23964915,0.62716365,-0.3990317,0.04589506,-0.30917817,-0.13765992,-0.47739586,0.34865877,0.03134369,0.06203447,-0.1943024,-0.03739734,-0.16565596,-0.2219926,0.1850593,0.093882136,0.35952193,0.33371463,-0.3349284,0.0981139,0.4729797,0.8420712,0.010281169,0.86294806,0.12097379,-0.0045243273,0.54061645,-0.014125537,-0.33483136,-0.69128996,-0.26450586,-0.16867755,-0.50916255,-0.2565193,-0.017006222,-0.41328943,-0.78582245,0.19566053,0.08526925,0.13100848,0.17241666,0.23391834,0.37230122,-0.12406197,0.16219491,-0.22544256,-0.32351434,-0.57046384,-0.47228146,-0.5697266,-0.48445606,0.26073474,1.1023458,-0.18837214,-0.11474133,-0.04553688,-0.21771577,0.17496324,0.24720527,0.17679718,0.13051699,0.4703085,-0.34463963,-0.66983914,0.44782254,-0.20377462,-0.04728357,-0.5908663,0.0030460174,0.67047757,-0.6272507,0.7085282,0.30202144,0.12587295,0.13869761,-0.6103135,-0.30592516,-0.09725107,-0.25523245,0.59803426,0.18951383,-0.7703349,0.51211923,0.2732923,-0.022417916,-0.67043334,0.39468992,0.0133016985,0.007521409,0.014850026,0.3733962,-0.14004919,-0.16228005,0.028250149,0.20035568,-0.549191,0.28668377,0.3898247,0.19746931,0.13230887,0.023393286,-0.13664554,-0.6071732,-0.1665908,-0.5802082,-0.19948174,-0.050056215,-0.06840621,0.20649682,0.060640637,0.106157035,0.55758244,-0.37758482,0.31492087,0.11322134,-0.35757717,0.4092442,0.40310913,0.42063016,-0.4826894,0.548537,0.06022721,0.07272743,0.038775966,0.1890897,0.4679382,0.39720842,0.4394315,-0.07461973,-0.041034248,0.1870937,0.88547397,0.2221566,0.28814682,0.08996049,-0.18294074,0.43897164,0.3259989,0.20027138,-0.0490825,-0.46944427,-0.08330447,-0.041057665,0.14645253,0.57895064,0.07847385,0.22304495,-0.14665984,-0.12087609,-0.007974058,0.072212376,-0.101432286,-1.2500125,0.16641596,0.2102307,0.7589564,0.52746373,-0.14549395,-0.04151488,0.2646295,-0.2918832,0.2972862,0.4779897,0.082426436,-0.4870811,0.4669986,-0.58092463,0.4177884,-0.14987916,0.08006019,0.341682,0.20460683,0.46764633,0.9670969,-0.08663066,-0.030762713,0.04218649,-0.23123527,0.19417746,-0.51188385,-0.044831477,-0.5110217,-0.29919514,0.6775011,0.5376101,0.22371545,-0.4384515,-0.034911074,-0.023023963,-0.07798534,-0.099399686,-0.07988251,-0.05699787,-0.19601037,-0.674714,-0.22930059,0.71871215,0.100631624,-0.12608832,0.080560975,-0.51893723,0.30718324,-0.28847423,0.07317869,-0.1551346,-0.8236669,-0.058762792,-0.33855245,-0.40332377,0.3418581,-0.22798237,0.15657578,0.35765675,0.036187604,-0.28229973,0.18389884,0.10637658,0.7431861,-0.004593762,-0.087863885,-0.480859,0.1439082,0.27025887,-0.38674986,-0.07044307,-0.3731224,-0.013594969,-0.5421523,0.42333624,-0.039147798,-0.16594109,0.30032885,-0.0031208396,0.14471044,0.5933602,-0.37007597,-0.15845402,0.03314295,0.151889,-0.19199361,0.012092022,-0.3140291,0.3424519,-0.0054551386,0.062796794,0.046433054,-0.14274035,0.04976159,0.21485019,0.1891974,0.20023043,0.37658823,-0.07757951,-0.38771915,-0.0026567394,-0.011494983,0.52114654,0.18880977,-0.19234984,-0.20573139,-0.25540137,-0.2907362,0.443885,-0.12604287,0.2616915,-0.05175584,-0.362473,0.6050902,0.19986765,0.9959215,0.12963209,-0.40963423,0.05709028,0.55286384,0.105060026,-0.020946672,-0.31557724,0.8101208,0.44593334,-0.1789538,-0.16909868,-0.33668217,-0.15318607,0.11601746,-0.20752598,-0.086369924,-0.07647391,-0.93184114,-0.03794033,0.075096115,0.27093875,0.2023534,0.03085373,0.015710918,0.1628155,0.14431117,0.5529834,-0.6757999,-0.08180474,0.12805691,0.21062693,0.04263145,0.086854406,-0.27951676,0.32005247,-0.75917584,-0.008218775,-0.50113535,0.000640527,-0.21673217,-0.41899714,0.14912106,0.06435773,0.25528696,-0.32172364,-0.40618637,-0.3681212,0.62373173,0.3083078,0.45170167,0.74897426,-0.24684905,-0.0046431995,0.24818999,0.46415395,1.0831965,0.0107781235,0.054103535,0.3428171,-0.41168234,-0.7053532,0.08379483,-0.396719,0.19642879,0.05818489,-0.1221906,-0.3589336,0.22374131,0.1823084,-0.09073491,0.20660426,-0.830174,-0.25156555,0.45315796,-0.1874996,-0.2728484,-0.31187597,0.2943954,0.8455936,-0.5253119,-0.31545618,0.12747392,0.28193432,-0.2420152,-0.74852854,0.08375576,-0.4565211,0.5259664,0.1726577,-0.42862982,0.039537504,0.0887499,-0.54523194,0.1846049,0.22018205,-0.33516195,0.014041323,-0.35636738,-0.10057053,1.0025189,0.18616024,0.17635599,-0.5536898,-0.5675432,-0.8800701,-0.35233214,0.24755576,0.30424875,0.08288811,-0.51718986,-0.17742833,-0.1655524,0.10040507,0.082020134,-0.35441458,0.44065985,0.13389371,0.47398785,0.03259173,-0.9937638,-0.00012592628,0.06498745,-0.24267492,-0.37098652,0.60282165,-0.16256817,0.7784142,0.0063465904,0.010570208,0.05477277,-0.754488,0.2706899,-0.58959997,-0.0050643133,-0.57757914,0.22106992 -934,0.3699265,-0.22251728,-0.5186301,-0.11755448,-0.37733832,0.032716695,-0.2267933,0.2991309,0.2858762,-0.06250026,-0.07261853,0.017734867,-0.02673192,0.34165993,-0.06265273,-0.7126887,-0.1853259,0.04986305,-0.69764215,0.6260531,-0.5118337,0.31968784,0.014786609,0.2824974,0.25158936,0.443207,0.13787816,-0.022966592,-0.0040599983,-0.12864277,0.017490761,0.055579428,-0.5308374,0.10571987,-0.123876065,-0.1877362,0.1238441,-0.5259392,-0.25513577,-0.711405,0.21556225,-0.7606494,0.46780917,-0.0142852785,-0.0804036,0.0143634,0.37019163,0.43925825,-0.39658266,0.060289722,0.26146019,-0.11921905,-0.030823343,-0.25804478,-0.099538915,-0.4067053,-0.5203336,-0.11959657,-0.57060224,-0.36331412,-0.16970721,0.21310264,-0.4450311,-0.12895906,-0.2450842,0.5010421,-0.4546782,0.022278527,0.3742793,-0.26977202,0.12320385,-0.627157,0.051198322,-0.053715143,0.35430786,0.18823287,-0.01467585,0.44228002,0.22730848,0.28366855,0.29353243,-0.27297968,-0.3194348,-0.30122226,0.23647998,0.3169063,-0.026917513,-0.20520717,-0.2871915,0.09153225,0.12299423,0.40654185,0.06758405,-0.23289065,-0.008017356,-0.120843634,-0.1365618,0.5478509,0.41343752,-0.3215795,-0.2773227,0.37655488,0.63296795,0.35951632,-0.26510027,-0.01318031,0.013573945,-0.5084627,-0.13942567,0.20582469,-0.11761041,0.335024,-0.10133292,-0.03398713,0.8191611,-0.09952119,-0.064241454,-0.09076178,0.07132488,-0.06218081,-0.41909477,-0.19575033,0.13879925,-0.5033678,0.099198006,-0.24108194,0.5965115,0.06067639,-0.5367031,0.39558524,-0.61779046,0.17947327,0.07031429,0.59983313,0.5918744,0.44006735,0.2870451,0.77925354,-0.17701264,0.22707237,-0.18641993,-0.38441658,0.0063316664,-0.23221086,0.2660196,-0.49334943,0.17557599,-0.27353013,-0.012718749,-0.00016378959,0.48670676,-0.33982506,-0.1833498,0.19542669,0.8519247,-0.23325354,0.02610873,0.57024276,1.1209447,1.200313,-0.061533794,1.090952,0.34709084,-0.27839378,0.013514793,-0.46202812,-0.5059319,0.16205902,0.30137333,-0.19962288,0.3085772,-0.12683062,-0.037271254,0.3310814,-0.29632598,0.14477305,-0.030724132,0.3946698,0.23142001,-0.1172618,-0.3683415,-0.21556288,0.09842985,-0.059468213,0.32366735,0.22762285,-0.25083432,0.24973746,-0.08412245,1.4753329,-0.13259819,0.16769552,0.23908043,0.51365507,0.29536715,-0.09029971,0.13534644,0.4455698,0.29572985,-0.106441185,-0.5988134,0.20890446,-0.4364303,-0.47968197,-0.14745459,-0.41197142,-0.12120966,0.0322428,-0.4037126,-0.03200116,-0.17724963,-0.2874384,0.35537368,-2.8116407,-0.24318132,-0.17427053,0.17567466,-0.4094663,-0.18296903,-0.09393532,-0.5195438,0.26986626,0.19173008,0.48577294,-0.54994625,0.623094,0.6073119,-0.62676454,-0.09506295,-0.53187996,-0.037508305,-0.06442366,0.54020566,-0.093292855,-0.03306057,-0.20624371,0.33697426,0.73040193,0.1069661,0.2310897,0.56230724,0.37439093,0.060923316,0.65575194,-0.061362464,0.5210761,-0.23097295,-0.10208122,0.41272166,-0.43026435,0.3450117,-0.16569014,0.08982936,0.570995,-0.4482943,-1.022909,-0.48752123,-0.24956328,1.0355618,-0.33001506,-0.31361687,0.21350752,-0.19998471,-0.045793854,0.14379859,0.6165758,-0.07372991,0.22898254,-0.6425673,0.12115073,-0.080323264,0.18372692,-0.013072848,0.13607332,-0.39723217,0.7929749,-0.05479383,0.64931446,0.18735223,0.18764432,-0.26686928,-0.29793707,0.09994831,0.7485482,0.34019387,-0.005798443,-0.13569328,-0.25755286,-0.1203094,-0.30926672,0.0013072013,0.64095634,0.5479603,-0.11081233,0.050009627,0.25816327,-0.24285384,-0.07644346,-0.18507555,-0.18624298,0.017242007,0.15819506,0.37602776,0.7055187,-0.13142785,0.42874792,-0.15741642,0.24242344,-0.18665963,-0.48326743,0.5514864,0.32472107,-0.22298256,-0.119680725,0.4956535,0.55168456,-0.39307016,0.50805193,-0.5527302,-0.21167488,0.7214047,-0.20353886,-0.3918366,0.13413684,-0.2819248,0.05370067,-0.650765,0.22951819,-0.45950946,-0.40496764,-0.37181345,-0.22669436,-3.111444,0.14999132,-0.09434835,-0.07502292,-0.27669147,0.15967141,0.24159019,-0.65510803,-0.6590291,0.051498644,0.26175317,0.56393445,-0.08434471,0.12578562,-0.31106982,-0.30277082,-0.1652746,0.37262172,-0.035161726,0.30790615,-0.11047939,-0.39226323,-0.08152019,0.04654561,-0.54848975,0.16593006,-0.5848275,-0.29470024,-0.057633925,-0.5669275,-0.27017584,0.5780599,-0.342696,0.053476207,-0.19428179,0.18566291,-0.16870634,0.13645266,0.12527274,0.33904442,0.24172857,-0.15662387,0.033816196,-0.2256928,0.4615488,-0.123217575,0.43475887,0.10266947,0.0060662627,0.09012949,0.42949754,0.6313442,-0.14749101,0.98644763,0.2384111,-0.093973376,0.2114101,-0.28607437,-0.10069768,-0.56478655,-0.35473964,-0.13232672,-0.35505596,-0.62403655,-0.056588396,-0.32672247,-0.8130631,0.48879424,0.08361907,0.40663978,-0.062131397,0.13616052,0.42236817,-0.2103413,0.076835275,-0.0025623043,-0.2049907,-0.39140838,-0.337241,-0.6326962,-0.4334779,0.22122052,0.85476,-0.3731355,-0.11224529,-0.07863082,-0.41347295,-0.090501174,0.13459225,0.09730757,0.1818637,0.42481005,0.046850406,-0.5674463,0.32605517,-0.07331495,-0.048999112,-0.5232815,0.054204885,0.67605907,-0.5968867,0.8021396,0.19908793,0.097344205,-0.12543415,-0.55778855,-0.07757539,0.16265754,-0.12008883,0.49145663,0.13638568,-0.68841326,0.50780445,0.27266437,-0.51976925,-0.7414108,0.27539623,-0.1196714,-0.3653205,-0.11024721,0.4390124,0.26068494,-0.10204231,-0.20922464,0.32456475,-0.44973728,0.16200621,0.18990655,-0.13102494,0.24798988,-0.05851132,-0.34498432,-0.66648215,-0.026229315,-0.4747664,-0.36500123,0.3182336,0.031286605,-0.030963112,0.05332939,0.15571485,0.36443135,-0.11018955,0.119669184,-0.03409465,-0.27746227,0.36568552,0.40469447,0.30939734,-0.36018175,0.49990645,0.049826406,-0.17407869,0.25587136,-0.0031101704,0.31672075,-0.10425242,0.46116525,-0.12149183,-0.07820247,0.30078545,0.56364,0.13306023,0.37660375,0.13394378,-0.25167748,0.41436154,-0.04875768,0.09739049,-0.039013322,-0.49133414,0.028188689,-0.055540666,0.102883704,0.4979741,0.31039074,0.3691243,0.16733232,-0.09924902,0.01699179,0.34734604,-0.22632709,-1.1155899,0.4008452,0.2208379,0.8633792,0.50560963,0.13748339,-0.09347364,0.6527768,-0.26225215,0.025546651,0.48712233,0.013371173,-0.44576672,0.7348583,-0.46622533,0.38409767,-0.13563937,-0.041510526,0.15804595,0.22854939,0.44534963,0.71796477,-0.20806089,-0.110299475,-0.12583429,-0.30169737,-0.0697389,-0.17808393,0.12800984,-0.39315757,-0.49516523,0.625301,0.46233204,0.36981493,-0.19989727,-0.07953484,0.003776137,-0.15078443,0.19054519,-0.10226035,-0.13614392,0.17207576,-0.51896393,-0.18933342,0.48944432,-0.23248434,0.08577843,-0.13074884,-0.22812273,0.07946544,-0.20182732,0.061761204,-0.0018022418,-0.64449626,-0.060188137,-0.121969305,-0.50230783,0.328088,-0.35671458,0.11774373,0.109901555,-0.10261329,-0.21476263,0.29462087,0.21822634,0.7265235,-0.08245202,-0.18376677,-0.19526339,0.059121784,0.090290986,-0.20890018,0.079663,-0.295819,0.18523155,-0.65155655,0.5951434,-0.24059817,-0.41134006,0.14736663,-0.3775093,-0.14467649,0.6199792,-0.25711837,-0.20666571,-0.23911457,-0.29561657,-0.3381514,-0.13297245,-0.24678881,0.29108688,0.12693056,-0.16182941,-0.21108386,-0.16033596,0.029197948,0.52827865,0.012161183,0.37021175,0.2733947,0.022065377,-0.20807794,0.055763755,0.2106015,0.42235547,0.26984933,0.08136201,-0.40638068,-0.31791005,-0.36015847,0.2903754,-0.16790959,0.13233124,0.08448288,-0.32170245,0.9668711,0.1672991,1.315436,0.077479795,-0.33207363,0.07761677,0.5920252,-0.022030327,0.1065885,-0.35991648,0.896097,0.6718025,-0.10172675,-0.0010349273,-0.58023554,-0.11520496,0.28357932,-0.43943414,-0.03898859,0.033677094,-0.5383216,-0.25472465,0.31355855,0.13620093,0.121791236,-0.11736969,-0.13915053,0.051626846,0.1891535,0.5092426,-0.5340763,-0.11757029,0.23256369,0.12853321,0.0413957,0.17406705,-0.40860102,0.40165988,-0.74515915,0.30556098,-0.26566938,0.14419153,-0.3511853,-0.26015913,0.1900402,-0.04738652,0.31558397,-0.3758396,-0.48135632,-0.020242717,0.48945385,0.12466601,0.08838512,0.66483194,-0.24052446,-0.037011225,0.079617135,0.6995389,1.1551279,-0.3954529,0.021248898,0.3384212,-0.42924973,-0.7478214,0.19890937,-0.48295787,-0.10336539,-0.14149158,-0.4758048,-0.4744944,0.30759734,0.044155844,0.113692306,0.03644073,-0.4850759,-0.14288808,0.38413402,-0.291714,-0.25129816,-0.15228263,0.26606524,0.75972724,-0.237257,-0.5406031,-0.009883819,0.25984457,-0.28912607,-0.5201627,-0.040089138,-0.19119915,0.4092762,0.07498181,-0.2405595,-0.11641216,0.17147046,-0.52342683,-0.048143197,0.17457695,-0.32440063,0.080049135,-0.27660954,0.020575635,0.8142541,-0.18553688,-0.0024813334,-0.6186408,-0.4490112,-0.89657676,-0.38231406,0.19600162,-0.031197349,-0.11399449,-0.3970506,0.0266289,-0.109858446,-0.092226334,0.11685894,-0.57037646,0.33482516,0.07265296,0.39286157,-0.36525434,-0.8727095,0.052516267,0.20122974,-0.14174183,-0.65487653,0.680666,-0.15255089,0.8292531,0.036987297,-0.1309577,-0.064234234,-0.49884665,0.14449635,-0.43514225,-0.14098868,-0.7449858,0.143699 -935,0.6309437,-0.17951417,-0.5457561,-0.027444322,-0.1920278,-0.07251166,-0.23628531,0.42251232,0.42489865,-0.48023993,-0.20291328,-0.26522356,0.1260586,0.25865895,-0.22006318,-0.56279325,-0.05398003,0.22157647,-0.53726804,0.678223,-0.35005713,0.24634616,0.106956966,0.44134873,0.18419805,0.19340464,0.0981266,-0.005846991,-0.3016679,-0.23057629,-0.09202159,0.2450489,-0.79120314,0.012368679,-0.2818076,-0.47609183,-0.1837647,-0.5231025,-0.47757372,-0.84419954,0.252953,-0.90653807,0.65277237,0.15756585,-0.3090669,0.37914452,-0.1628244,0.16479531,-0.20079397,-0.051484987,0.07035459,-0.12041729,-0.15429442,-0.24181916,-0.20027281,-0.22564347,-0.6980493,0.10367206,-0.40622938,-0.028232766,-0.318485,0.031896785,-0.3024816,0.01358143,-0.0019913774,0.7177124,-0.33028105,0.11111769,0.15448236,0.068017356,0.30969912,-0.4940762,-0.17299876,-0.20955387,0.2407395,-0.26521206,-0.20348102,0.16325487,0.2048835,0.4998363,-0.08028854,-0.19202067,-0.36968228,0.19159259,0.21339546,0.34109715,-0.1333182,-0.70862126,-0.081167094,-0.0034639745,0.066611886,0.007303467,0.38152182,-0.3459709,-0.08455351,-0.04388732,-0.16403848,0.60848844,0.5095369,-0.3329825,-0.12281931,0.18571952,0.58131516,0.22179674,-0.016102633,-0.06018389,-0.026002783,-0.6931523,-0.20591237,-0.023777429,-0.2350765,0.6942511,-0.1610696,0.17978151,0.47726867,-0.25237125,-0.23357016,0.18119049,-0.094655305,-0.028956322,-0.20113853,-0.2518863,0.44819084,-0.3408806,0.18111151,-0.15065421,0.67409664,0.25871268,-0.82548785,0.3574263,-0.6792648,0.19332038,0.088439666,0.53195614,0.6624806,0.46644104,0.4025944,0.6602129,-0.43462855,0.0682177,0.053435225,-0.47558886,0.03279912,-0.28897613,0.021432532,-0.47693428,-0.20248684,-0.04608563,-0.34238523,0.1463079,0.45147833,-0.5516155,-0.023352034,0.095779255,0.7141091,-0.20545913,-0.21820052,0.9596929,1.1319573,1.1177971,0.1115513,1.2825873,0.2435715,-0.2498809,0.22801377,-0.2728361,-0.81605655,0.34339648,0.30865875,-0.6071384,0.5697072,0.15906535,0.0019540512,0.3865272,-0.4626365,-0.015113058,0.024688445,0.1299378,0.01788964,-0.080814674,-0.54655075,-0.28718823,-0.26515797,0.09030518,0.11024405,0.31759077,-0.1459541,0.28287366,0.14924107,1.4727517,-0.18696798,-0.014846804,0.07050132,0.42263225,0.19391258,-0.21073541,-0.25393584,0.28386158,0.21298991,0.14837871,-0.53202856,0.024536463,-0.08720891,-0.3513387,-0.16993658,-0.26409924,0.07112826,0.0068489085,-0.25298202,-0.23679315,-0.2180437,-0.47718588,0.43469495,-2.3975549,-0.16550647,0.028154602,0.36099818,-0.23514828,-0.48411077,-0.11076998,-0.5690734,0.26421818,0.277095,0.4717485,-0.74705607,0.26858878,0.52194965,-0.5851774,-0.26901495,-0.70908266,-0.18510954,0.0030589746,0.30119303,-0.035659138,0.030878829,0.15827304,0.20787011,0.43137115,0.13483153,0.112351924,0.2518982,0.4237957,-0.14900337,0.45985353,-0.03657641,0.44815806,-0.21989432,-0.12998854,0.43712837,-0.20884132,0.22488198,-0.19416378,0.17583863,0.44004828,-0.55520815,-0.87107307,-0.59499943,-0.11387029,1.2180191,-0.16147819,-0.506763,0.24288982,-0.3458155,-0.24077691,-0.06520243,0.542174,-0.0610807,0.06458522,-0.8482543,0.08019415,0.01579477,0.16164456,0.041323144,0.027625378,-0.46368805,0.67009825,0.018787824,0.33989435,0.55952597,0.2549992,-0.15967193,-0.66617835,0.20762128,1.1374015,0.22367351,0.23174077,-0.5315422,-0.21224786,-0.38409123,0.0930489,-0.1588645,0.5028673,0.675891,-0.14330308,0.11845226,0.2663258,0.18481387,0.20093773,-0.14712276,-0.271649,-0.13111888,-0.093303666,0.5528329,0.89681816,-0.25825906,0.4828563,-0.044756625,0.16037607,-0.17597015,-0.3524021,0.6703581,1.2894047,-0.17261957,-0.23732604,0.69777274,0.37260893,-0.35627124,0.52914137,-0.4785091,-0.2836679,0.33280137,-0.15032925,-0.42297876,0.3080627,-0.25265366,0.1927933,-0.91151345,0.31234974,-0.22082628,-0.33541864,-0.53937787,0.05998849,-3.2826293,0.29824623,-0.25909546,-0.20515302,-0.121570095,-0.18184243,0.10390489,-0.5866367,-0.70057577,0.1747563,0.031473987,0.70316327,-0.30438823,0.14270706,-0.052347124,-0.45500416,-0.2752593,0.18976201,0.27071312,0.38852435,0.04258662,-0.49994656,-0.13759255,-0.16616032,-0.35315132,-0.014725112,-0.53371656,-0.40510792,-0.12813455,-0.6302557,-0.29554525,0.70344317,-0.28101796,0.0829034,-0.32274422,-0.030912098,-0.09325095,0.3033048,-0.1335126,0.2839805,0.007549649,-0.011941339,-0.04127163,-0.12624682,0.17682287,0.096899256,0.20341113,0.36885756,-0.2799504,0.32949525,0.48870498,0.90686184,-0.06966433,0.9849546,0.5252383,-0.06500951,0.18515283,-0.20278054,-0.32186958,-0.6855379,-0.3274656,-0.0141048385,-0.38535696,-0.55799365,-0.13406986,-0.31159702,-0.8030562,0.6692288,-0.15904385,0.25094637,0.11774263,0.2253491,0.59923893,-0.2955217,-0.052796178,-0.15772769,-0.14874502,-0.6097806,-0.19577415,-0.59355795,-0.3890268,0.12041289,0.9595099,-0.19099139,0.07336453,0.18618315,-0.21612933,0.049251676,0.1064965,-0.02399713,0.026865661,0.4842513,0.15779641,-0.6473447,0.41907603,0.051345173,-0.16341724,-0.60071635,0.22201866,0.6238687,-0.6461014,0.63371044,0.30626976,-0.075267784,0.004763365,-0.49960232,-0.2883465,0.004993365,-0.18843222,0.44769397,0.45072657,-0.7188437,0.28579754,0.32873538,-0.31829935,-0.78138757,0.5923104,0.0858826,-0.28233224,-0.084115475,0.42589256,-0.016594378,0.1508686,-0.3184449,0.18420905,-0.32892925,0.22497548,0.297654,-0.11044449,-0.108962044,-0.15023343,0.039304394,-0.8933494,0.15457764,-0.51200324,-0.32052904,0.22729227,0.22675452,0.08097669,0.21172285,0.22617333,0.2325764,-0.38690358,0.09470483,-0.049678687,-0.3083634,0.48455268,0.5096902,0.4901157,-0.39660564,0.5797146,0.024480421,-0.12454402,-0.096785106,-0.1574538,0.39062464,-0.028950058,0.19771582,0.346615,-0.2656287,0.10604345,0.6060547,0.16209577,0.46186832,0.2611058,0.03863599,0.38530922,0.06466326,0.3595444,-0.07738293,-0.591309,0.05195484,-0.4132745,0.15188634,0.44289196,0.11133187,0.19063582,-0.19559255,-0.40571338,0.018745743,0.22473162,0.05118769,-1.2826384,0.12495096,0.14528304,0.69021004,0.760025,-0.048091613,0.054671504,0.585269,-0.087640636,0.12303548,0.45257425,0.07857696,-0.545213,0.5441312,-0.639395,0.39712632,-0.0505964,0.073189,-0.024251666,-0.1486183,0.27060792,0.72228426,-0.26460668,0.044826884,-0.13534616,-0.10908772,0.06434397,-0.50985545,0.1163058,-0.53034586,-0.22164124,0.85397935,0.46075124,0.43203098,-0.22842506,0.10629837,0.1385484,-0.16382283,0.1669694,0.12921122,-0.0054988493,-0.032736655,-0.7166704,0.080759645,0.5571063,-0.06452133,-0.0051645315,-0.13106848,-0.1960551,0.080055185,-0.37545982,-0.3301137,-0.13478644,-0.8643912,-0.21748754,-0.46317512,-0.38151214,0.47180727,-0.033218686,0.17159666,0.19070816,0.14042829,-0.3053067,0.33957675,0.1728016,0.6946657,0.23221014,-0.08187492,-0.2711464,0.32782632,0.18862931,-0.17282611,-0.09536866,-0.122178465,0.039668087,-0.47701403,0.4404604,0.021932181,-0.3117103,-0.09133332,-0.055557307,0.05972,0.664581,-0.19018275,-0.24875487,0.09236769,-0.1474327,-0.19342946,-0.2909548,0.046436742,0.34077257,0.2840668,-0.26615322,-0.038757287,0.001300179,-0.096070565,0.22462025,0.06466705,0.4506966,0.41110295,0.07954086,-0.3190379,-0.1788826,0.19468692,0.56153864,0.0743304,-0.26009205,-0.38271147,-0.4135751,-0.411106,0.088542625,-0.03274605,0.17214702,0.09230303,-0.103164636,0.6750899,0.27006772,1.1709952,0.029533941,-0.39741457,0.10386555,0.3662567,0.00071251165,-0.19637793,-0.42929113,1.1580316,0.36771843,-0.16865699,-0.11773329,-0.41994488,-0.01566465,0.15315312,-0.13362342,-0.061721005,0.008857338,-0.6351143,-0.098398834,0.25072196,0.33041185,0.11809135,-0.19685403,0.26580366,0.3505343,0.017390866,0.27015665,-0.4382117,-0.26017708,0.45060423,0.22566697,-0.002940563,0.1224286,-0.32717234,0.2793039,-0.38407263,0.007429577,-0.377898,0.08699449,-0.07881876,-0.300327,0.32838744,0.1763729,0.4129638,-0.45061603,-0.29704574,-0.4599363,0.5266405,0.025666429,0.0588043,0.49169824,-0.28059185,0.0015680927,0.036706313,0.5198767,0.98187286,-0.08771029,0.09015817,0.29578808,-0.3355775,-0.53885925,0.4724491,-0.28392637,0.22830957,-0.16584137,-0.13495442,-0.6980352,0.08279122,0.06864663,0.03882146,0.2650193,-0.77451396,-0.37224114,0.2829507,-0.38658327,-0.033439614,-0.2474121,-0.09807988,0.5600202,-0.2669518,-0.40163058,0.026576353,0.03821797,-0.06571592,-0.5232352,-0.1723145,-0.273958,0.13061555,0.25121623,-0.28701115,-0.18491386,0.16109553,-0.4783114,0.08573369,0.059530433,-0.3844125,0.046359863,-0.34933472,-0.13718988,1.0591274,-0.2700969,0.31487483,-0.32399565,-0.69711673,-0.96664625,-0.34400088,0.4198052,-0.08304889,0.09905942,-0.6497739,0.08789032,-0.15322748,-0.19606687,0.03206152,-0.44601992,0.3793774,0.1362525,0.36342147,-0.09314394,-0.8535365,0.17562366,0.16705987,-0.17707366,-0.6748164,0.46685347,0.22255689,0.8710644,-0.02632611,0.17469905,0.31683138,-0.62048304,-0.20424303,-0.058906868,-0.06620196,-0.5028647,0.11890142 -936,0.40259212,-0.44668746,-0.45567065,-0.09600329,-0.25801295,0.2837452,-0.2194331,0.32570633,0.11986934,-0.4600543,-0.18503179,-0.27945277,0.0732171,0.15471356,-0.21790017,-0.2837863,-0.04987963,0.20579569,-0.68213654,0.5239584,-0.23205402,0.1646918,0.055609297,0.5077859,0.43739244,0.21521671,-0.003894529,-0.0579249,-0.39117458,-0.198016,-0.013095613,0.21108945,-0.4715508,0.1421093,-0.32102603,-0.40508464,-0.09998184,-0.5572728,-0.40759936,-0.81913537,0.34045666,-1.0028776,0.51309747,-0.11076286,-0.24208303,0.28352436,0.24669555,0.29490572,-0.13629784,-0.18982278,0.38027787,-0.2450645,-0.05703468,-0.095280826,-0.29059675,-0.43128154,-0.5255825,0.016793745,-0.33254805,-0.19608554,-0.31637532,0.16060312,-0.25335056,-0.07569226,-0.03683598,0.6921914,-0.42846698,0.26509142,0.17271364,-0.021783782,0.4145557,-0.61977416,-0.28339797,-0.2731454,0.32549042,-0.27475026,-0.25772035,0.29610014,0.32380566,0.26201922,-0.15853238,-0.0724616,-0.36202082,-0.020323243,0.19009304,0.4814499,-0.08384156,-0.4865985,-0.21448374,-0.14564331,0.15042014,0.09743273,0.3483079,-0.2814998,-0.019753734,0.002156594,-0.20550935,0.5683545,0.41871172,-0.13857445,-0.10708548,0.32387877,0.63953096,0.30952507,-0.27724567,-0.15702698,0.073230386,-0.463476,-0.08994783,0.3103933,-0.30057436,0.5170494,-0.18316755,0.2647094,0.74176174,-0.28801155,-0.03636474,0.11939748,0.18938705,-0.35371166,-0.0009808199,-0.36545804,0.27395943,-0.3895206,0.15879102,-0.14072917,0.64627045,0.088722415,-0.6044291,0.24780117,-0.5537568,0.11790222,-0.048251566,0.34981653,0.7038054,0.46007714,0.46641514,0.55389345,-0.25459197,0.08003085,0.0835315,-0.37832215,-0.0900844,-0.44210073,-0.14420076,-0.5056011,-0.13783383,-0.15613171,-0.21180831,-0.081827536,0.56120765,-0.5550021,-0.09247399,-0.02034247,0.83482224,-0.2676445,-0.14081967,0.9363555,0.8849591,0.9974898,0.089481056,1.1723297,0.3320465,-0.32341304,0.11564988,-0.15541695,-0.7301913,0.37948427,0.31181064,-0.61548436,0.29545408,0.065066494,-0.010062908,0.38405666,-0.35253605,0.06450986,-0.32851723,-0.1376947,0.12787053,-0.075752005,-0.35223532,-0.27770296,-0.12573496,0.015105994,0.17944355,0.12775204,-0.25009996,0.577434,0.19399115,1.7110802,-0.11147703,-0.051375575,-0.020883588,0.47200757,0.17075919,-0.13753165,-0.18372633,0.26281908,0.40582862,0.3083158,-0.52371234,0.21730338,-0.11929349,-0.34652707,-0.26019156,-0.3678178,-0.20930994,-0.062067445,-0.41637442,-0.1795276,-0.099749506,-0.2770268,0.2149762,-2.4688408,-0.07740158,-0.14300796,0.34069577,-0.14212342,-0.3118941,-0.07257911,-0.57197803,0.35926232,0.21855326,0.4678822,-0.55633837,0.26908544,0.49855027,-0.62751806,-0.08988077,-0.6263147,-0.2045351,0.010875844,0.3914745,-0.03214236,0.044439077,0.1772137,0.14505635,0.42128843,0.0014612228,0.16678683,0.28575382,0.6114517,-0.053434405,0.51563394,0.054664467,0.5142829,-0.21964057,-0.29065087,0.45724088,-0.3029979,0.2776725,-0.16581668,0.16972099,0.70433575,-0.40017578,-0.8656021,-0.72774655,-0.22430818,1.199025,-0.16264212,-0.5155655,-0.046017308,-0.35398063,-0.39659756,-0.02590224,0.5321749,-0.061920345,0.056899786,-0.8864133,-0.08246483,-0.013975416,0.13227426,0.05846686,0.060872383,-0.42127284,0.6695137,-0.035576984,0.37210438,0.29893965,0.1895144,-0.45093748,-0.5005301,0.15715767,0.9193781,0.3501594,0.14023113,-0.3799377,-0.11816307,-0.38435337,-0.0602101,0.03191844,0.45345968,0.4313848,0.010879904,0.26613727,0.28107888,-0.078490295,0.09729319,-0.3242454,-0.2813937,-0.19070257,-0.07890233,0.454281,0.53818,-0.033181045,0.5820777,-0.12633964,0.28553602,-0.13026308,-0.5120632,0.61809355,1.2455828,-0.22646005,-0.35940197,0.570419,0.4594228,-0.33478943,0.34574655,-0.5439751,-0.19694437,0.4742438,-0.21545005,-0.5553213,0.25600395,-0.2671303,0.1946789,-0.8751211,0.29972702,-0.23760687,-0.37857407,-0.6754961,-0.035634894,-2.9845395,0.22721751,-0.19790375,-0.371408,-0.17957138,-0.35316262,0.16602065,-0.58185565,-0.5768318,0.11813577,-0.040074397,0.9144457,-0.05529609,0.14798029,-0.2564183,-0.27515337,-0.16013534,0.0869725,0.25587505,0.39118457,-0.22850582,-0.58170784,0.055603366,-0.25339636,-0.39359522,-0.109662734,-0.6356589,-0.44642887,-0.18875061,-0.49753076,-0.3781539,0.65417546,-0.3112037,0.08140143,-0.23901919,-0.016571494,-0.012813389,0.40391475,0.09746276,0.1523557,0.08545502,-0.10451567,0.08461147,-0.22223881,0.305229,0.061804015,0.0010385726,0.3872726,-0.10204436,0.46914247,0.41760203,0.73867416,-0.08565189,1.0484062,0.43434387,-0.19382314,0.15522,-0.21975875,-0.30163863,-0.6259228,-0.15776245,0.1240293,-0.45649353,-0.5273687,0.003589843,-0.3139231,-0.7814936,0.631873,-0.084143035,0.19548662,0.040799327,0.31496835,0.53063023,-0.26918393,-0.12102895,-0.04837587,-0.16989207,-0.56702197,-0.30171445,-0.617577,-0.60311806,-0.08464963,0.87929636,-0.10750763,-0.015696853,0.1449317,-0.4330555,0.06757693,0.15312418,-0.124317355,0.13285556,0.43395418,-0.0832082,-0.62873536,0.49680662,-0.032687973,-0.15350583,-0.5802665,0.2896126,0.74476635,-0.55202895,0.49654928,0.4611473,-0.075209565,-0.4288959,-0.4046069,-0.13320112,-0.08094554,-0.12743859,0.4099434,0.27858788,-0.70670563,0.40478903,0.27088732,-0.20749311,-0.78534937,0.70650166,0.04971049,-0.2660439,0.0065568197,0.39606974,-0.039821357,-0.064210914,-0.4652761,0.27949736,-0.34972125,0.15861197,0.17032872,-0.05648273,0.12753224,-0.23068024,-0.10326111,-0.8043291,0.16997658,-0.39050457,-0.31518942,0.4181262,0.022833914,0.14826988,0.32899567,0.18678226,0.28259543,-0.3027181,-0.051955692,-0.13824114,-0.13179655,0.15861407,0.47378612,0.5759631,-0.56562525,0.6385408,-0.055212237,-0.18935569,0.00577536,0.17850997,0.3964043,0.20892164,0.5460265,0.1919011,-0.33639258,0.22091272,0.82343155,0.17349818,0.74295384,0.10805667,-0.26073396,0.056357037,0.08443693,0.4630414,-0.21716125,-0.5445995,0.11996029,-0.375884,0.13363865,0.4586422,-0.06218142,0.26046404,-0.16594256,-0.51950866,0.06708924,0.13619195,0.10478741,-1.261546,0.3430182,0.28862074,0.9624093,0.31257424,-0.08752407,0.02547093,0.77544963,-0.26254106,0.07920601,0.34633848,0.021336552,-0.48865175,0.47525683,-0.805636,0.41768864,-0.07688953,-0.08629058,0.013925071,-0.14621897,0.3956391,0.7890216,-0.20554972,0.14490795,0.011941607,-0.32996145,0.38413543,-0.5014785,0.14698426,-0.4897166,-0.2688476,0.72488594,0.5577673,0.34237877,-0.22958663,0.113677636,-0.019473491,-0.1760274,0.2237996,0.3109096,0.17364545,-0.09244494,-0.83507204,-0.04893043,0.5106998,-0.038127635,0.27650768,-0.008845576,-0.20679487,0.29322428,-0.19127408,0.120306134,-0.11135509,-0.8464884,-0.1535743,-0.3560767,-0.5430497,0.40523285,-0.0096025895,0.21163526,0.2507555,-0.009613445,-0.32720733,0.42645237,0.1889581,0.8494752,0.12276469,-0.025788536,-0.35294178,0.17514226,0.3060567,-0.22834711,-0.13640133,-0.09753128,0.12437795,-0.49879023,0.4736993,0.014449771,-0.47025844,0.035814334,-0.060212355,0.07290031,0.6978037,-0.04580212,-0.11723755,-0.10130613,-0.05724821,-0.2599325,-0.029687796,-0.13660951,0.23363876,0.28955683,0.007240129,-0.28491387,0.046343118,-0.28337386,0.46520576,-0.031437647,0.65879303,0.63274574,0.029388053,-0.45933124,-0.14630933,0.20714031,0.6332653,-0.011423848,-0.21556415,-0.36207595,-0.42800277,-0.29966456,0.27576947,-0.04650917,0.22699283,0.22472672,-0.31481716,0.76357704,-0.2628679,0.9668001,0.008628385,-0.5023404,0.21811523,0.4550833,-0.08708714,-0.15747865,-0.49402174,0.8319076,0.33968282,-0.089961,-0.06715099,-0.35379907,-0.026274364,0.22468622,-0.1637063,-0.14792752,-0.03412825,-0.6583534,-0.23669091,0.22049832,0.27812985,0.18474352,-0.17282364,0.17985395,0.406218,-0.054488394,0.2704926,-0.51074165,-0.20722707,0.37437147,0.21892236,-0.0409383,0.14007352,-0.36540055,0.45071134,-0.36404356,0.06920254,-0.29842165,0.2678187,-0.28748956,-0.23510382,0.24495867,0.1407611,0.41507742,-0.31475952,-0.25124308,-0.42445964,0.4473896,0.28429702,0.13668284,0.3906156,-0.29697436,0.10233361,0.07751689,0.48530152,0.929712,-0.26697773,0.17966986,0.3922254,-0.38141844,-0.44488817,0.4449299,-0.41807002,0.2702786,0.02895655,-0.0723842,-0.51060134,0.26169488,0.30227122,0.14505406,-0.11938972,-0.6343945,-0.11580206,0.42581132,-0.31150892,-0.18843745,-0.3037896,0.070543125,0.23681927,-0.31274417,-0.28849858,0.030759811,0.268927,-0.09977838,-0.2336751,-0.13699673,-0.3922382,0.40214175,-0.048486166,-0.38112825,-0.11546661,-0.22285356,-0.48974445,0.26096088,0.043973804,-0.43555215,-0.0048993654,-0.15124063,-0.068254165,0.90646,-0.28487313,-0.081292614,-0.35725102,-0.4282344,-0.7874607,-0.26303557,0.30445454,0.098385625,-0.01801421,-0.5942346,0.033540938,-0.09690804,-0.07488554,0.006478467,-0.616155,0.48531765,0.16348624,0.44505447,-0.007106351,-0.7572183,0.24127391,0.08221795,-0.19632228,-0.6685411,0.5296072,-0.10476518,0.72790664,0.019466149,0.21881448,0.3199907,-0.40316424,-0.14620683,-0.090612866,-0.2334626,-0.650274,-0.015832279 -937,0.61333513,-0.37083572,-0.6810285,-0.05817715,-0.4062241,0.22033894,-0.2707597,0.82629883,0.43039012,-0.5768033,-0.20648205,-0.12711126,0.11445663,0.40104398,-0.12136312,-0.81960535,-0.16082004,0.2817415,-0.4739046,0.6924756,-0.22277796,0.32747298,0.08004588,0.68159235,-0.24829233,0.2134829,0.22901538,0.0983151,0.47930264,-0.5281834,0.12887129,0.11430027,-0.93413603,0.33393472,-0.21282458,-0.4557736,-0.05062399,-0.47341698,-0.10943844,-0.94655323,0.27910316,-0.9595612,0.86485356,0.20063034,-0.27362275,-0.05533018,0.021266494,0.24469474,-0.15148588,-0.035846528,0.17457673,-0.25976124,-0.24677643,-0.4022573,-0.09049398,-0.5312003,-0.59285057,-0.28273723,-0.28807837,-0.12258802,-0.31187373,0.2144548,-0.15582803,0.13407396,-0.48460454,0.39279318,-0.6381772,0.0213426,0.15329358,-0.39403802,0.29215568,-0.6625283,-0.13752005,-0.1417484,0.080887616,-0.2566122,-0.2676775,0.20059016,0.13065577,0.52569854,0.28485245,-0.35519847,-0.23305288,-0.018007815,0.15359147,0.5158076,-0.065521345,-0.4317451,-0.29345888,-0.22852147,0.14954789,0.17758997,0.34602085,-0.65265,0.104202524,-0.33861518,-0.17818128,0.73283803,0.4608013,-0.5279673,-0.043641903,0.09820823,0.69749856,0.27776486,-0.058869462,0.08149885,-0.015115125,-0.43285617,-0.20272975,0.044535436,-0.11734362,0.356576,-0.18499187,-0.02925397,0.46737647,-0.14509842,-0.25339285,0.16645858,-0.1216708,-0.05313276,-0.56218904,-0.29933697,0.5673072,-0.31947285,0.34831843,-0.5368721,0.83678037,0.09660275,-0.42348552,0.3869368,-0.7684245,0.08206575,-0.07323404,0.58756095,0.5390028,0.5888895,-0.054566126,0.857798,-0.41825604,0.17695452,-0.082388,-0.22389701,-0.055320013,-0.1812514,0.05275507,-0.2873502,0.16751742,-0.16459242,-0.14163116,0.017404113,0.59280074,-0.57388824,-0.23981567,0.24830358,0.9926149,-0.28268093,-0.02040267,1.0918808,1.3140053,0.82044125,-0.023784656,1.446168,0.17129582,-0.23253174,-0.050533254,0.13831034,-0.8867661,0.09947836,0.52892095,0.24150765,0.34270376,0.115484,0.08138587,0.46152195,-0.5926215,-0.16195175,0.017508319,0.3743011,-0.028330004,-0.32918903,-0.67325914,0.14369078,0.18948916,-0.010669005,0.04249795,0.3248158,-0.37097248,0.28819615,0.07463592,0.9771242,-0.19406448,0.16858023,0.093192235,0.365242,0.30491108,-0.1259068,0.08232701,0.17507428,0.19150485,0.0681261,-0.58776885,0.29469615,-0.035243295,-0.51589155,-0.07855481,-0.2920615,-0.20663476,0.20534281,-0.3544133,-0.24549091,0.03500828,-0.07569295,0.27979022,-1.9112905,-0.014043832,-0.06441277,0.507553,-0.21877523,-0.396249,0.21803364,-0.5525101,0.42950606,0.37376615,0.53371996,-0.5836522,0.3998422,0.76022226,-0.6822524,-0.009150016,-0.56534207,-0.06988426,0.029160073,0.37707415,0.076250866,-0.26421908,-0.1122389,0.27465355,0.6515275,0.22315279,0.23214898,0.43132383,0.30636564,-0.41415206,0.41256666,-0.0024519116,0.8421999,-0.42539835,-0.27035642,0.41719905,-0.14309977,0.28288183,-0.43031082,-0.04403047,0.46162587,-0.2989283,-0.9844993,-0.876717,-0.40641093,1.0339897,-0.24992153,-0.69856644,0.1999131,-0.15042333,-0.22966449,0.21375473,0.61993706,-0.23520163,0.13134159,-0.77095956,0.18762231,-0.2319706,0.5129569,-0.032031458,0.021420788,-0.8652927,1.0844761,-0.2840132,0.56000084,0.55354786,0.4423183,-0.07119392,-0.58300716,0.16800985,0.90415275,0.57794785,0.22762981,-0.30785054,-0.1023,-0.29048198,0.09073856,-0.06109377,0.9298666,0.71527517,-0.20875952,-0.058291573,0.20898995,0.060572494,0.071969256,-0.17169489,-0.53933334,-0.30330944,0.09642906,0.52343905,0.6028862,-0.25844494,0.06589945,-0.26688874,0.6008574,-0.1815016,-0.49243027,0.56590086,0.95376253,-0.3426305,-0.15228471,0.9295271,0.416715,-0.3314579,0.7287053,-0.8279794,-0.26724872,0.3801338,-0.08658148,-0.4897291,0.15268715,-0.26972398,0.19288483,-1.0512321,0.16766551,-0.58936375,-0.6507573,-0.36741787,-0.27222648,-3.3075607,0.34917533,-0.049633417,0.042544622,-0.45498523,-0.20455165,0.15913096,-0.7935508,-0.7932513,0.1473801,0.074710846,0.46081418,-0.09565696,0.15938851,-0.32632443,-0.48853454,-0.119893074,0.5643989,0.14105408,0.12269459,-0.19350225,-0.4659067,0.024397489,0.20225301,-0.3652984,0.01510697,-0.95580447,-0.18637307,-0.21614201,-0.62502575,-0.06796566,0.6065922,-0.58261555,0.08109339,-0.21634889,0.20748219,-0.2965893,0.24975209,0.03808489,0.22200231,0.25025386,-0.03173868,-0.16317216,-0.114613414,0.2766359,0.22557895,0.3278826,0.310923,-0.2822374,0.10502602,0.4528635,0.873522,-0.087648086,1.1004077,0.24304,-0.101796046,0.3910504,-0.07074897,-0.5873953,-0.86913854,-0.2748925,-0.060481478,-0.47080785,-0.5600937,0.033355333,-0.40746027,-0.7562292,0.46724844,0.13155015,0.22601485,0.18995687,0.16970934,0.50717336,-0.35166973,-0.19771606,-0.11087289,-0.0776093,-0.6811434,-0.28462583,-0.5978587,-0.56500727,0.03705467,0.95717144,-0.15001035,0.15676963,0.431417,-0.15215096,0.21784373,0.21495923,0.124204494,-0.18341088,0.7759563,0.50114167,-0.63952154,0.45510215,0.12385621,-0.21775396,-0.80032825,0.66693914,0.49145803,-0.9311202,0.67995614,0.16856533,0.10979811,-0.07789087,-0.4608837,-0.3315783,0.18999043,-0.26895753,0.4872829,0.26868558,-0.7315511,0.21745273,0.24974677,-0.023883473,-0.8947371,0.58823097,-0.23967123,-0.35277066,-0.1785787,0.62621063,0.08538888,0.005735281,-0.1020421,0.21362679,-0.47066402,0.11857466,0.18340775,-0.042342536,0.34269947,-0.23493533,-0.015992021,-1.0645176,0.23492697,-0.67130667,-0.3853612,0.13814697,-0.12881193,-0.48059878,0.2284523,0.2422308,0.41127452,-0.18913063,0.46255088,-0.23518236,-0.39846817,0.68849933,0.4463336,0.45895758,-0.23045854,0.7833516,-0.029111873,-0.11689297,-0.03334161,0.054996885,0.4327084,-0.13851902,0.51286143,-0.023038471,0.1568416,0.033040874,0.7315935,0.21080181,0.21401596,0.12395634,0.094602,0.46222815,0.08054639,0.34577566,-0.08409428,-0.7860001,0.2578903,-0.09796533,-0.1962461,0.5488027,0.25251907,0.3570004,-0.12238133,-0.3973042,0.067608126,-0.006172502,-0.09758959,-1.2923545,-0.009973859,0.066643484,0.83219844,0.73717433,-0.04005301,0.0035482794,0.39805967,-0.1316254,0.13285974,0.39680704,0.01007129,-0.24382135,0.4901146,-0.7736075,0.22320497,-0.16139317,0.098811366,0.36951318,-0.09499087,0.33973712,0.99462223,-0.27279136,0.055713534,-0.162536,-0.07231815,-0.08215558,-0.42250818,-0.004044992,-0.28109002,-0.5106503,0.76949704,0.55999756,0.6013433,-0.54082847,-0.072812855,0.072945006,-0.20959099,0.1747722,-0.10276087,-0.054998927,0.124053836,-0.36490673,-0.14160092,0.6857025,-0.13886614,-0.13564987,-0.08509888,-0.49188286,0.2992015,0.0070533515,-0.10625322,-0.05907923,-1.0234302,-0.15522137,-0.49816275,-0.3286501,0.33256045,0.061249554,-0.03651779,0.18433376,-0.010035345,-0.06362786,0.38971764,0.18375455,1.0549333,0.38797423,-0.11523068,-0.47472963,0.38791895,0.21555777,-0.28275377,0.2010874,-0.30220348,0.03279239,-0.46613884,0.15790442,-0.15394142,-0.7110535,0.15171811,-0.039945908,-0.11029343,0.60109293,-0.00027947425,-0.3050414,0.23723392,-0.1761713,-0.095476136,-0.37567288,-0.17017287,0.25866532,-0.11856662,0.18058872,-0.19713466,-0.16094215,-0.2361053,0.16937122,0.3104108,0.34619972,0.50200784,-0.08122437,-0.48128456,0.25312468,0.14893709,0.4541315,-0.29540905,-0.02181322,0.18406466,-0.7540836,-0.57423156,0.0061519505,-0.15315795,0.27582636,0.13307701,-0.16707563,0.77879316,0.33052358,1.3927714,-0.28953063,-0.6385058,0.29248074,0.7581058,-0.18340027,-0.053634237,-0.5166872,1.4264635,0.5122127,-0.12092663,-0.006673624,-0.29549465,-0.23109174,0.26663035,-0.23118457,0.06419657,-0.08984871,-0.72297204,-0.003011477,0.13828799,0.4593727,0.07378094,-0.05084616,0.17775764,0.27722278,0.03368888,0.3714346,-0.6839016,-0.17036676,0.22890231,0.0837587,-0.07330549,-0.0667604,-0.2326976,0.25666124,-0.62545455,0.12043693,-0.5564331,-0.19536617,-0.2511671,-0.19628902,0.07150869,-0.14820698,0.2922836,-0.52734435,-0.37751535,-0.18527259,0.4046269,0.26470822,-0.042141076,0.9053396,-0.12742473,0.07366912,0.16378674,0.5831775,0.9859605,-0.24697761,0.05581416,0.145371,-0.60231435,-0.5675042,0.008496952,-0.2835832,0.028623605,-0.12737978,-0.34984362,-0.6791218,-0.003480068,-0.062658705,-0.30633038,0.19590302,-0.72211766,0.08914216,0.45523047,-0.43962127,-0.17008273,-0.17725763,0.50786144,0.95997727,-0.1268669,-0.47046185,0.21750955,-0.016037028,-0.23925261,-0.90852296,-0.21645033,-0.21428546,0.2282696,0.16697478,-0.5910187,-0.27864242,0.14098829,-0.5292316,-0.13194934,0.2411859,-0.3173671,0.23555732,-0.46626148,-0.22761936,0.98200923,0.022510504,-0.015032237,-0.8688938,-0.7192103,-0.88246804,-0.3688843,0.45422903,0.108350754,0.07670853,-0.6252708,-0.02317674,-0.51617604,0.015873885,-0.10100105,-0.17213798,0.43158466,0.31852713,1.0023994,-0.15261893,-1.1931264,0.44293195,0.2597212,0.1682618,-0.5967924,0.3486152,0.08174029,0.8492777,-0.014862528,0.010756336,0.11505358,-0.87005407,0.11649964,-0.18148185,0.06211143,-0.9112077,0.40624747 -938,0.42399964,0.0885355,-0.44392565,0.052306466,-0.20977838,0.11492058,-0.31584293,0.22962403,0.33606288,-0.41624454,-0.28886122,-0.14368889,0.09251015,0.39785478,-0.0689964,-0.8073508,0.18943447,0.46330184,-0.3407284,0.66876507,-0.3911915,0.45619515,0.13703275,0.39036953,-0.114470825,0.17346361,0.23125099,-0.04037265,-0.21462026,-0.26584172,-0.021969428,0.24085206,-0.68054146,0.26798752,-0.31595087,-0.4906856,0.0030680436,-0.5566437,-0.35596293,-0.82624924,0.26653275,-0.64999396,0.77904534,0.1985778,-0.017133107,0.0676182,0.31192625,0.44044274,0.09810294,0.10217662,0.23871097,-0.29153797,-0.39528844,-0.26553375,-0.23937933,-0.1876222,-0.72208935,0.02729832,-0.45793942,-0.017760534,-0.34137058,0.19173248,-0.3522023,0.30164227,-0.12240632,0.37592214,-0.49956462,0.11733726,0.34239465,-0.20051232,-0.052344825,-0.5569465,-0.20155515,0.006438629,0.41253656,-0.28494325,-0.22791754,0.21328583,0.41899678,0.6444859,0.013482594,-0.36296478,-0.29736745,0.017695932,0.07644544,0.814288,-0.4553962,-0.34384683,-0.07750522,0.04602869,0.56781065,0.17555135,-0.09822583,-0.21173164,-0.029857563,-0.33702403,-0.03183454,0.23575331,0.59198296,-0.41802472,-0.21706636,0.21564086,0.40624025,0.08406182,0.02432643,-0.01898263,0.06983222,-0.56927395,-0.0767255,-0.30291387,-0.19526342,0.5634337,-0.07737759,0.1406995,0.543217,-0.071281776,-0.046117865,0.21600458,-0.03231877,0.28167465,-0.2688641,-0.34220314,0.42186773,-0.4366275,0.25395516,-0.3049463,0.6253656,0.21491274,-0.47172478,0.39417094,-0.65798676,0.20791231,0.22607924,0.5268208,0.6757255,0.42831537,0.39006087,0.65108114,-0.46018738,0.08594179,0.03143855,-0.115354575,-0.087737046,-0.07295601,0.29262722,-0.43117592,0.014078214,-0.0989615,-0.26993728,0.33008435,0.56090283,-0.5878115,-0.13585918,0.107650824,0.8790745,-0.23557684,-0.10389598,1.0851821,1.0849532,1.0287753,-0.0748473,1.3391279,0.4025163,-0.16703781,-0.28909495,-0.19539173,-0.6418655,0.015201406,0.2492864,-0.6631032,0.31946406,0.2671431,-0.26918522,0.66208225,-0.7758111,-0.33694732,0.106206164,0.17631009,0.059746027,-0.20364437,-0.63900286,-0.18301164,-0.052737474,-0.16646324,0.341702,0.527599,-0.20519862,0.38504198,-0.013106465,1.3316505,-0.0125684,0.07291549,0.13022867,0.20178065,0.35476077,-0.022941759,-0.041025795,-0.010528014,0.19337541,-0.07189095,-0.39216775,-0.09496234,-0.39431196,-0.24238676,-0.19585755,-0.013163557,-0.4214022,0.03874521,-0.2663997,-0.20996457,-0.1914364,-0.20447643,0.42656332,-2.363782,-0.34857193,-0.14426354,0.54461646,-0.16221306,-0.43649924,-0.09603992,-0.49154916,0.61049885,0.026077468,0.4366747,-0.66228807,0.38535702,0.41735792,-0.81791425,-0.37144896,-0.7460908,-0.08524149,0.007220346,0.17206922,0.12291899,-0.293793,0.17081195,0.11783253,0.5908482,-0.12625581,0.011652205,0.22186397,0.4855015,-0.10396501,0.24313387,0.094523326,0.73027027,-0.18208414,-0.4044994,0.34915417,-0.48151383,0.42389017,-0.34708676,-0.035581045,0.3887715,-0.3164737,-0.93758607,-0.55539155,-0.22360022,0.7426032,0.15725055,-0.4847206,-0.03461189,-0.23935471,-0.3425508,0.045339327,0.63340366,-0.39787146,-0.15352097,-0.7629231,-0.09313757,-0.042442285,0.08136987,0.029160304,0.18465193,-0.6993859,0.62004334,-0.255057,0.106337935,0.591812,0.49194655,-0.21183428,-0.48218182,0.07584739,0.9068112,0.46258256,0.19623032,-0.24175207,-0.15534973,-0.07602937,-0.30999982,-0.22634767,0.7931868,0.61042,-0.22674449,0.0021766196,0.28681776,0.26830447,0.11945788,-0.26134744,-0.48842424,-0.19920936,0.056773152,0.70978856,0.91591877,-0.27637514,0.37845582,0.0011738905,0.22908896,-0.20630336,-0.48036385,0.620486,0.8529542,-0.1858627,-0.03637235,0.5965889,0.17909463,-0.16850574,0.4045628,-0.75418115,-0.37110084,0.27512708,-0.07476668,-0.4463063,0.06843984,-0.22862515,-0.031463053,-0.782732,0.57617563,-0.33867824,-0.37687296,-0.6569827,-0.15079167,-2.5155954,0.1444511,-0.50856054,0.19208159,-0.19921182,-0.14831932,-0.12665533,-0.5399393,-0.71959835,0.36520752,0.007138556,0.59874636,-0.30799615,0.26287645,-0.170856,-0.4383496,-0.31755698,0.2702893,0.34019506,0.3840792,0.042117033,-0.27270806,0.107650906,-0.11452602,-0.43905413,0.09263565,-0.8258292,-0.34379798,-0.11855184,-0.52334017,-0.1701173,0.8092953,-0.4962069,0.16277803,-0.48764282,0.018335719,-0.25774246,0.30322167,0.142143,0.28725508,0.079173416,-0.118591085,0.025639135,-0.09449437,0.29230103,0.18702038,0.3237719,0.42598554,-0.15653881,0.20690808,0.26709622,0.77833873,0.24855894,0.85554814,0.41399446,-0.14298661,0.2055766,-0.4691777,-0.34452227,-0.45839623,-0.4884312,0.07408751,-0.51172173,-0.40993565,-0.21594521,-0.5968859,-0.7804359,0.49532253,0.055342417,-0.14293581,-0.13911907,0.21981147,0.39188495,-0.4172514,-0.12207349,-0.08704197,0.049694426,-0.44827652,-0.23193939,-0.44669655,-0.6576983,0.10396374,1.0967827,-0.20189986,0.2054539,0.14347216,0.00075543846,-0.004022463,0.25469673,0.08091015,-0.17821625,0.5875067,0.017852237,-0.7482232,0.28156874,-0.18195261,-0.44813168,-0.91166496,0.4418875,0.6603569,-0.69112706,0.79592836,0.67113507,0.1695558,-0.058527295,-0.52982926,-0.32334372,0.14462946,-0.28577182,0.19980842,0.13553305,-0.5081614,0.38293102,0.417058,-0.3410269,-0.84167016,0.54807,0.10919805,-0.5257541,0.12514335,0.4801357,0.2786549,-0.04314977,-0.026743092,0.39834264,-0.31897244,0.46753836,0.03666756,-0.31680283,0.6021191,-0.36349827,-0.3668079,-0.9666593,0.08332247,-0.49386084,-0.36032155,-0.0049980143,0.018830381,-0.015811294,0.08692457,0.23767328,0.37534672,-0.53860164,0.059768163,-0.20524646,-0.39375877,0.2307079,0.40566424,0.4603348,-0.32004112,0.65697837,-0.0011587602,-0.06793829,-0.070753604,0.08750657,0.43670338,-0.19505206,0.4277387,0.03287042,0.009970395,0.12243429,0.69256985,0.08626688,0.2014691,0.23728283,-0.06117979,0.2545378,0.0055347728,-0.008956989,0.10404145,-0.3723173,0.14047925,-0.30104142,0.020391094,0.44382188,0.26883233,0.3883042,-0.15634534,-0.47514516,0.000984247,0.16920942,0.08894026,-1.2899538,0.3184567,0.001627867,0.73569405,0.38659593,0.20432395,0.09395544,0.6049351,-0.19861911,-0.05711232,0.32864088,-0.13963877,-0.035066903,0.55939287,-0.6981362,0.369372,0.075408645,0.15979873,-0.004534515,-0.13998574,0.2074038,0.84028023,-0.26680362,-0.1327275,-0.2645389,-0.15158731,-0.08047227,-0.4112272,0.324995,-0.49042815,-0.3791228,0.9764801,0.38656884,0.35736942,-0.1539082,0.11460728,0.24885108,-0.25069728,0.07268433,0.10509239,0.20968741,0.03866736,-0.46831512,0.0936849,0.52387184,-0.11898331,0.018947918,-0.06755073,-0.14688112,0.27605188,-0.15776783,-0.11589351,-0.001957373,-0.864144,0.0116588175,-0.69698375,-0.32416043,0.45780414,0.016145825,0.20085393,0.13014266,0.066468194,-0.23899716,0.7043574,0.023374043,0.742896,0.23051421,-0.36784035,-0.029145498,0.32219866,0.22526854,-0.18449475,0.27073014,-0.17487851,0.37150875,-0.4866443,0.4727993,-0.043284103,-0.15184893,0.13232344,-0.22328909,-0.009438887,0.50227684,-0.3488146,-0.1980877,0.26223344,-0.3636726,-0.12998639,-0.21902712,0.010617664,0.19393612,0.3323341,-0.07191729,-0.16509172,-0.23686041,-0.553033,0.44829828,0.055685475,0.22430745,0.5361612,0.28293437,-0.3838518,-0.011676765,-0.0066668713,0.5548457,-0.25885132,-0.22250476,-0.29242995,-0.5958616,-0.46664983,0.3390155,-0.09447097,0.27564704,-0.08194796,-0.10961361,0.9033469,0.21224448,1.1527536,-0.021806322,-0.35132664,0.05238744,0.6553387,-0.11690057,-0.064355515,-0.2930525,1.2749712,0.53696215,0.015990496,-0.056099866,-0.36990598,0.17133999,0.28546175,-0.25363466,-0.14376417,0.079381,-0.5064838,-0.23057233,0.1981326,0.24754944,-0.052083142,-0.12420317,0.21346037,0.27257952,0.11650471,0.23343842,-0.7972644,-0.21282414,0.51139146,0.38160217,-0.15475951,0.19413622,-0.3524623,0.46164906,-0.38472974,0.08130508,-0.44559905,0.06482848,-0.13191421,-0.17273101,0.40840447,0.15331842,0.27486023,-0.52016956,-0.14277633,-0.23515353,0.23637229,0.3422187,0.06553428,0.63425964,-0.21428467,-0.17073932,0.032269288,0.60660994,1.2254217,-0.35215423,0.21383902,0.3687347,-0.36893824,-0.3658967,0.32790312,-0.19019443,-0.22503695,-0.09140983,-0.27321732,-0.6403091,-0.04111743,-0.06962904,0.07966847,0.0041544577,-0.61003774,-0.24122217,0.2340854,-0.3217661,-0.08034321,-0.33163518,0.2675304,0.8660349,0.0576026,-0.20774242,0.0831939,0.18042682,-0.25783646,-0.8144166,0.022763643,-0.39083752,0.20393728,0.22450915,-0.23076648,-0.30034068,0.10703704,-0.49068847,-0.06008194,0.21816741,-0.3179884,0.1131891,-0.2510522,-0.090072066,0.80335706,-0.35121286,0.40694886,-0.741949,-0.3838033,-0.91309834,-0.26002604,0.3543315,0.28865045,-0.105493516,-0.8720634,-0.18922623,-0.21641842,-0.23133853,0.025306582,-0.30700037,0.20873657,0.28997114,0.54688436,-0.36491722,-1.0061024,-0.008770557,0.029604547,-0.37916705,-0.34619468,0.2848709,0.42812246,1.0464685,0.037349798,-0.058180068,0.29943708,-0.44009045,0.08240586,-0.12431455,-0.20225371,-0.8451646,0.0004851818 -939,0.6011616,-0.03464178,-0.52431995,-0.18514092,-0.31669548,0.1208691,-0.13025156,0.34273404,0.25728855,-0.45382988,-0.16569367,-0.09666942,0.0613129,0.21718787,-0.1393336,-0.62431574,0.14806876,0.1284696,-0.60736275,0.536555,-0.36604452,0.31612682,-0.0036437144,0.28420487,0.13076992,0.19821668,0.10032971,-0.23720331,0.10859248,-0.13319118,-0.23051472,0.45068952,-0.475208,0.113912374,-0.045312732,-0.34483933,-0.0041167666,-0.45522803,-0.40245315,-0.8383799,0.3142518,-0.6094102,0.4579909,0.032488417,-0.3156864,0.14313363,0.22592135,0.3041747,-0.11368217,0.0036774557,0.07436623,-0.0012131894,-0.08727699,-0.07537133,-0.08921916,-0.42164838,-0.49841237,-0.08937209,-0.32009435,-0.19263624,-0.34648287,0.22760503,-0.27834526,0.004174625,-0.1485058,0.5183698,-0.32585987,0.02224977,0.23822008,-0.10314105,0.23610054,-0.564703,-0.060341317,-0.077546455,0.34134302,-0.04551023,-0.19712839,0.18259725,0.19879794,0.4573179,-0.035115283,-0.1991284,-0.2548992,-0.094663605,-0.057215754,0.49823862,-0.21010077,-0.5371765,-0.035204396,0.093498394,0.138361,0.18908474,-0.026243484,-0.24509776,-0.14029844,0.033363454,-0.23335415,0.35406902,0.52647537,-0.3014951,-0.35798347,0.35108688,0.51791495,0.20433319,-0.16609693,0.03490725,-0.031747777,-0.60459954,-0.21050167,0.061562385,-0.16144587,0.48645148,-0.056450646,0.28524408,0.56886375,0.0059401672,-0.118218005,0.1864147,0.019529507,0.023806032,-0.19239008,-0.07045309,0.14400792,-0.346629,0.2874117,-0.15337352,0.84037095,0.10134707,-0.7877841,0.16639154,-0.60141563,0.07288769,-0.15897834,0.4778387,0.6273074,0.29223448,0.27018067,0.71587396,-0.3703165,0.069129646,-0.100225955,-0.4463897,-0.08082771,0.05435369,-0.004772204,-0.518548,0.11702061,-0.024428697,-0.067954466,0.05175906,0.21157393,-0.6665158,-0.13602945,0.121094085,0.78468806,-0.34319237,-0.13342868,0.6163532,0.8669944,0.88607514,0.079892695,0.9350449,0.18725856,-0.15757407,0.21562569,-0.41026187,-0.69787234,0.30367568,0.2619442,0.010998305,0.059012454,0.00010673439,-0.05934054,0.483749,-0.27371353,-0.014662881,-0.1805397,0.27569327,0.14302164,-0.1703975,-0.28026414,-0.28430054,-0.027363848,0.021913582,0.22920853,0.13946138,-0.3157984,0.25117734,0.0447314,1.5370026,-0.059232026,0.019328551,0.092272714,0.3566522,0.22317186,-0.16231537,-0.08337167,0.24153799,0.3905319,-0.0070349155,-0.57613075,0.2047916,-0.16718327,-0.38828933,-0.15761085,-0.3069512,-0.09282381,-0.009895948,-0.41902778,-0.19163936,-0.15719618,-0.21208511,0.62138736,-2.807633,-0.047993742,-0.12077208,0.3134353,-0.1671702,-0.34030077,-0.071732186,-0.50818354,0.30877566,0.3114716,0.39524987,-0.5675107,0.49192867,0.3448355,-0.5291849,-0.07218217,-0.6760216,-0.16536093,0.030818665,0.36767942,0.18367846,-0.045494873,-0.10676372,0.15355232,0.5146326,-0.07661685,0.042149868,0.23868676,0.47817966,0.071247846,0.56346977,0.046451177,0.6474396,-0.14459874,-0.13307402,0.3235434,-0.3726135,0.20666376,0.0037280514,0.116961345,0.4331549,-0.36374795,-0.8361999,-0.5944268,-0.13287698,1.1229897,-0.22446941,-0.36440608,0.20457542,-0.28427672,-0.13366438,0.06930957,0.34980738,-0.10915148,-0.18127789,-0.7042116,0.029487956,-0.1617762,0.13385491,-0.027804984,-0.07455394,-0.38213047,0.5851565,0.008628593,0.59621876,0.24126014,0.29009986,-0.27970192,-0.5073388,-0.12274591,0.80865854,0.3116205,0.10532555,-0.1562392,-0.25896406,-0.3890063,-0.008821011,0.033387292,0.73758036,0.7273426,-0.00801032,0.1423693,0.16146079,-0.070557036,0.14534079,-0.19531901,-0.23270252,-0.09112858,-0.04509849,0.54328513,0.47509256,-0.15201049,0.4088142,0.0141423065,0.41272774,-0.23076601,-0.37148434,0.42860556,0.9962212,-0.2646569,-0.3388178,0.54151297,0.45734724,-0.09568251,0.2832864,-0.6901329,-0.3612746,0.4929584,-0.19866283,-0.3552174,0.19148335,-0.32291484,0.16996208,-0.8905035,0.29440856,-0.3446118,-0.49574032,-0.45570266,0.011847965,-3.1427,0.23243868,-0.18279302,-0.092363834,-0.1421415,-0.0670108,0.13736795,-0.44675878,-0.5671475,0.13958345,0.087008126,0.6072705,-0.009178861,0.16430955,-0.26563704,-0.05315832,-0.23009692,0.24623382,0.082912415,0.3553604,0.08917676,-0.47924587,0.04519075,-0.14332323,-0.3817656,0.17446257,-0.5003512,-0.5389826,-0.029629013,-0.5273937,-0.33510083,0.5474867,-0.33569804,-0.025507193,-0.27240634,0.021066181,-0.08773152,0.29976097,0.061228205,0.11385317,-0.002457496,-0.07090574,-0.0049681664,-0.2926297,0.27985236,-0.006074037,0.34097168,0.30195305,-0.008449519,0.23659277,0.5662679,0.5283138,-0.023877379,0.85252595,0.4936713,0.026756624,0.30258825,-0.25281996,-0.30041078,-0.3714322,-0.20224006,-0.005326918,-0.34473404,-0.3279102,-0.1993897,-0.42200062,-0.6315918,0.35279956,0.036282618,0.04056995,-0.102428734,0.18269399,0.5515914,-0.19476503,0.0021878972,0.019475266,-0.18764505,-0.5346508,-0.29975033,-0.49583176,-0.4651088,-0.028852273,1.042658,-0.31474406,-0.0670965,-0.14212933,-0.13947414,-0.054405194,0.12904021,0.070089474,0.2716276,0.4515239,-0.26846406,-0.68390375,0.47547463,-0.24805737,-0.06930206,-0.494848,0.20196275,0.443203,-0.55346525,0.4113719,0.25803393,0.18052343,0.03949464,-0.65080506,-0.090249,0.145242,-0.19729361,0.40546203,0.1766839,-0.7194103,0.42492318,0.29521945,-0.09164806,-0.72001565,0.5079374,0.081285894,-0.4782744,-0.090464815,0.34003437,0.060869426,-0.0019895548,-0.17738733,0.114725396,-0.30678424,0.3425775,0.23346111,-0.044939745,0.025523402,-0.31170446,-0.011755677,-0.7421369,-0.026512146,-0.46990663,-0.19420716,0.24162108,0.057978064,0.23964916,0.15749848,-0.050876983,0.3342931,-0.35442844,0.06428619,-0.12070042,-0.19260302,0.30793545,0.44631347,0.277694,-0.33260503,0.48452988,0.11051447,-0.2367775,-0.052892357,0.17385638,0.4102805,-0.0065014013,0.438119,-0.06581623,-0.19621998,0.3411466,0.654732,0.062948644,0.28498656,-0.07635691,-0.17035793,0.21820962,0.049462132,0.07081343,0.16552633,-0.5350364,-0.17536363,-0.22285068,0.13230854,0.48401564,0.15124804,0.27095821,-0.032433625,-0.35318947,-0.02489382,0.16616574,0.0077724387,-1.1651545,0.33610293,0.19377922,0.89972496,0.46584448,-0.030480012,0.010777501,0.5352483,-0.19064575,0.17458144,0.39180288,-0.0034745196,-0.50412667,0.4292442,-0.6223073,0.49503237,-0.08366221,-0.018021472,0.040610526,-0.112555295,0.34194475,0.9865681,-0.24670789,0.12872566,0.09139973,-0.3035739,0.23165824,-0.2822683,-0.011070826,-0.629212,-0.26099348,0.5852017,0.4777872,0.30506137,-0.13578153,-0.04033205,0.15651761,-0.09463425,-0.049479216,0.095915094,0.13601643,-0.031055227,-0.6028989,-0.22506353,0.49343738,0.01622932,0.1149947,0.018738827,-0.16961521,0.24488345,-0.15349735,-0.016971,-0.21065821,-0.5330496,-0.025142131,-0.2609235,-0.38538456,0.47125745,-0.15814292,0.23226719,0.18117197,0.06362025,-0.27880177,0.3074833,0.08935347,0.7508033,0.004450083,-0.08972185,-0.4466067,-0.032505736,0.16333036,-0.19419126,-0.18783803,-0.34671587,0.057467073,-0.5759385,0.4775006,-0.03443572,-0.25171244,0.050939724,-0.091256134,0.07838593,0.42053,-0.1730052,-0.13685013,0.007152445,0.013345084,-0.25036675,-0.055568505,-0.09875572,0.23972785,0.12358378,-0.13802142,-0.08995237,-0.117872775,-0.111688405,0.29825717,0.04920617,0.45168343,0.35130373,0.14074576,-0.26352918,-0.0053702802,0.25066608,0.5679853,-0.10105836,-0.10040218,-0.28114304,-0.4038006,-0.3484983,0.17619526,-0.09985085,0.33101878,0.06229719,-0.29294187,0.5936026,0.0017773194,1.1207522,0.04283668,-0.23440212,0.046126757,0.5149626,0.08890581,0.0039847316,-0.36385965,0.8535426,0.49171376,0.0047767567,-0.12963976,-0.28151953,0.1730209,0.10091236,-0.13506342,-0.0017703561,-0.07531821,-0.4950027,-0.25738338,0.15112281,0.17288807,0.24185765,-0.010967416,-0.073110946,0.20711651,0.029869514,0.26021838,-0.44289935,-0.12914029,0.121963695,0.25992322,0.026515495,0.1227609,-0.55098534,0.40805486,-0.46453044,0.10029434,-0.24827433,0.23423634,-0.0900109,-0.16123803,0.23640725,-0.032513753,0.26962662,-0.3454532,-0.3503734,-0.18544798,0.39787564,0.17969188,0.16692294,0.59277534,-0.25121617,-0.04816156,0.11929917,0.55962086,0.8835652,-0.32981136,-0.0022139738,0.34250838,-0.32102275,-0.60701174,0.22301242,-0.20802988,0.053278532,0.061429627,-0.23253673,-0.47073612,0.44948572,0.2353071,0.16218048,-0.08675961,-0.605585,-0.20382218,0.49976018,-0.27604556,-0.21662495,-0.28157926,0.20664011,0.5268013,-0.27991885,-0.20403638,0.15022965,0.18874188,-0.1523851,-0.66830194,0.042734947,-0.3328259,0.3901507,0.170667,-0.29278553,-0.29736972,0.07732612,-0.4639566,0.17900811,0.33694604,-0.3397954,0.055398718,-0.38165808,-0.06293149,0.90219116,-0.18436061,0.13308014,-0.5761106,-0.32875913,-0.7153363,-0.41110715,0.39223632,0.20086278,-0.031065369,-0.5247065,-0.124718554,-0.037130084,-0.2876697,-0.14907192,-0.35484287,0.5050588,0.12405637,0.3267884,-0.06323781,-0.8628919,0.06730744,0.071068645,-0.22642457,-0.456607,0.47815108,0.047206458,0.81739795,0.0893016,0.17941155,0.3349155,-0.42696548,-0.08708775,-0.27799046,-0.063290276,-0.74534994,0.08265549 -940,0.44681945,-0.4151649,-0.56475973,-0.10935107,-0.25229177,0.028870411,-0.4740299,0.35321897,-0.068991445,-0.6743054,-0.14823858,-0.08697879,-0.024248838,0.48706323,-0.14127408,-0.5950542,0.18343687,0.27771962,-0.6516653,0.59035873,-0.4997899,0.19688933,0.11900462,0.08284121,0.098062,-0.025081566,0.22821532,0.01885197,0.37241948,-0.08102829,-0.013736587,0.06674358,-0.61548287,0.23261727,-0.23842001,-0.56289244,-0.0056959847,-0.30854285,-0.29348856,-0.7476973,0.17110337,-0.96153355,0.52144873,0.17201588,-0.50993365,0.1174156,0.09424978,0.2425709,-0.067727715,0.21120797,0.15250112,-0.03880775,-0.27482432,-0.04292375,-0.16433421,-0.66230357,-0.5646458,0.04601016,-0.64290595,-0.14868164,-0.15841031,0.20878217,-0.37142113,0.10597543,-0.22518677,0.043908242,-0.3834353,-0.19015668,0.16946499,0.080281526,0.24781114,-0.52714527,0.057287134,-0.27650386,0.27335584,-0.2400936,-0.37323776,0.2006847,0.17855945,0.8080254,-0.0019404384,-0.2577349,-0.049236953,-0.012660852,0.28717402,0.46153685,-0.16260949,-0.29679477,-0.36656958,0.019139122,0.45137355,0.24595097,-0.012305558,-0.54694307,-0.07001183,-0.020335294,-0.40934494,0.413717,0.47361705,-0.3179955,-0.31830677,0.35243756,0.6926991,0.10844256,-0.14066377,0.3239052,0.0054103825,-0.5606545,-0.17796943,0.27133796,-0.12804922,0.37365362,-0.23735136,0.2820825,0.3576105,-0.20275512,-0.030886462,-0.021404611,-0.16162293,-0.17887019,-0.1472339,-0.3224214,0.20324367,-0.6876614,0.25682566,-0.39010996,0.7265386,0.19352359,-0.8572713,0.3839089,-0.63586134,0.15618804,-0.19431141,0.73324364,0.92004,0.29420418,0.06251621,0.65419936,-0.44003862,0.12099722,-0.32216066,-0.2752137,0.029341193,-0.28553173,-0.1122492,-0.518011,0.009539082,-0.24925604,-0.090222396,-0.26038107,0.7292022,-0.47385916,-0.22052199,0.085740566,0.61524665,-0.32957175,-0.03789268,0.7709392,1.012321,1.1105579,0.24649826,1.2206439,0.32222998,-0.08317955,0.097202554,-0.069852844,-0.7691877,0.30907437,0.5549273,0.6117422,0.37558156,0.043099284,-0.05244871,0.43149108,-0.43651742,-0.03528942,-0.34050336,0.2513604,-0.20512508,0.044634975,-0.4103002,-0.058775686,0.051619615,0.19262959,-0.091916524,0.28927422,-0.27193692,0.14456634,0.19689618,1.4883807,-0.3042158,-0.0416095,0.06300915,0.2997255,0.24799575,-0.31428754,-0.118312486,0.124391474,0.53452355,0.0055466155,-0.74366105,0.031306855,-0.17037216,-0.3467662,-0.28122312,-0.14525904,0.08170335,-0.16713764,-0.3750366,-0.04491265,0.02927388,-0.375337,0.39547378,-2.367722,-0.48852417,-0.14909518,0.3348931,-0.24432498,-0.4908747,-0.114708535,-0.3814731,0.4982827,0.3281468,0.4110542,-0.5920441,0.52226055,0.35958958,-0.47880194,0.023630679,-0.86376643,-0.15168859,-0.05359812,0.45590562,-0.07756432,-0.12546079,-0.16369277,0.2390647,0.5041081,-0.16485144,0.14150015,0.3617013,0.4207379,0.12048879,0.58761096,-0.045486443,0.43875158,-0.5278028,-0.23223859,0.52353925,-0.09771967,0.40700278,-0.11028034,0.18626364,0.35476902,-0.6920915,-0.8785508,-0.7946874,-0.5828556,1.3077654,-0.30623454,-0.36485144,0.18109155,-0.20015867,-0.18866454,-0.091471285,0.41541842,-0.16545725,-0.121408395,-0.8728767,-0.040811162,0.054488692,0.3746599,0.00909683,-0.13143028,-0.3533689,0.58693707,-0.1499047,0.45544153,0.4076959,0.20175138,-0.042053267,-0.38651678,0.054867312,1.1325957,0.43387216,0.12827595,-0.39432192,-0.29551476,-0.40755078,0.10536484,0.010899156,0.39995575,0.849224,-0.14472963,0.06997547,0.27467936,-0.037307106,0.04429078,-0.27475446,-0.338026,-0.07032628,0.28324935,0.61992264,0.36961064,0.031177392,0.41129833,-0.040143736,0.026338339,-0.2345925,-0.42863843,0.26655474,1.0361362,-0.11481038,-0.19507271,0.56712514,0.43963522,-0.1967706,0.58292955,-0.7843971,-0.31904566,0.1459752,-0.02980984,-0.31722662,0.28156057,-0.4944772,0.34034425,-0.9900054,0.3546268,-0.5340718,-0.3488876,-0.62109476,-0.18238078,-3.1196806,0.44618753,-0.029687634,-0.15116364,-0.082035184,-0.1938936,0.6683581,-0.37305334,-0.6643287,0.12090527,0.029016338,0.57847875,0.070967026,-0.020104386,-0.32142365,-0.2744982,-0.41089085,0.19681683,0.22212833,0.25686657,-0.19102472,-0.47829753,-0.1333188,-0.27253386,-0.1507862,-0.02466631,-0.6925977,-0.38330775,-0.18982461,-0.415501,-0.23562652,0.52734715,-0.2562888,-0.04347386,-0.22317782,-0.009918408,-0.027553381,0.45083243,0.1875472,0.07309022,0.16362087,-0.07304721,-0.31439167,-0.31678888,0.09270248,0.13492714,-0.02086655,0.22236589,-0.14824493,0.26250914,0.55285966,0.48303777,-0.25400585,0.83533734,0.5545786,-0.14426787,0.3811495,-0.15712386,-0.34475374,-0.57417065,-0.08274284,-0.26683715,-0.42768103,-0.5701338,0.016330512,-0.22807106,-0.7187139,0.59371865,0.014940767,0.021169428,0.10255599,0.41537535,0.3328718,-0.090524554,-0.076754145,-0.16193035,-0.17772263,-0.5491308,-0.5523635,-0.6521847,-0.52669495,0.08567715,1.1598423,-0.19952165,0.12496524,0.039038654,-0.11497749,0.08294879,0.12892042,0.010216151,0.28408062,0.49366167,0.09702572,-0.7161629,0.3573791,0.1169256,-0.013639963,-0.4829243,0.13206512,0.6330129,-0.6550485,0.37453857,0.35152626,0.10255264,0.09148427,-0.6796414,-0.091746874,0.2435934,-0.36784172,0.5103134,0.22737892,-0.9381351,0.54946256,0.31753772,-0.13923016,-0.7584663,0.5611378,0.12356232,0.027622882,-0.15675776,0.3134497,0.010032911,0.101632476,-0.33442086,0.4598989,-0.36800697,0.28629553,0.25030798,-0.11301732,0.18927394,-0.32156056,-0.15678881,-0.6764224,-0.0055828644,-0.66489786,-0.19044271,0.21136299,-0.10113992,-0.010835638,0.14107326,0.19265996,0.52493227,-0.28138658,0.12573281,-0.097607225,-0.36486033,0.23283114,0.6289987,0.4111244,-0.36317965,0.6900485,0.07335812,-0.21584529,-0.31437322,0.08621882,0.33954805,0.07629788,0.37638298,-0.11250259,-0.008371372,0.3956599,1.1469468,0.22074474,0.49144202,0.019358588,-0.10962452,0.26773706,0.15950729,0.088829234,-0.23260704,-0.41610262,-0.1118209,0.06222713,0.16880178,0.67860246,0.15230824,0.28436428,-0.17848459,-0.12904322,-0.03415456,0.15200552,0.04443002,-1.2787423,0.23594679,0.24895647,0.5232239,0.76799625,-0.07457602,0.2308382,0.35534498,-0.42065176,0.06844299,0.23157993,0.0010500596,-0.5239785,0.50577074,-0.7056204,0.34492555,-0.13462329,0.12146202,0.22476067,-0.07069064,0.52656996,0.8281014,-0.048192725,0.21396562,-0.020728858,-0.15558451,0.18949996,-0.26900026,0.017966133,-0.41014272,-0.37540454,0.72294456,0.5151953,0.4673304,-0.16341226,-0.07854454,0.08960538,-0.20394881,0.18503548,-0.17021649,-0.10021261,-0.18300864,-0.6014151,0.005469868,0.7527627,0.21786243,0.08555794,0.05579756,-0.40181917,0.33002874,-0.049717188,0.09789925,-0.0038889234,-0.9201653,-0.00042996727,-0.49184653,-0.09790272,0.42313597,-0.28199285,0.19258785,0.24875434,0.07457373,-0.23310898,0.24899231,0.05080323,0.72218996,0.1679952,-0.13918866,-0.32299584,0.05163241,0.1684263,-0.34125912,-0.113160305,-0.30158243,0.045189016,-0.8954979,0.53460723,-0.12922071,-0.35724303,0.4429922,-0.012467654,-0.046891175,0.6718743,-0.08407712,-0.16573665,0.071483225,-0.096066564,-0.2854151,-0.22099121,-0.019247394,0.33328804,0.04686896,0.06141373,-0.13423043,-0.0074849497,-0.05828288,0.5192041,0.13972646,0.31852025,0.4078536,0.25436798,-0.40298298,0.18238273,0.19789293,0.48273352,-0.05381656,-0.028237453,-0.096750624,-0.18837427,-0.29617378,0.15005389,-0.18409549,0.3369415,0.06982916,-0.2900113,0.7340208,0.23710878,1.1113402,-0.0042894343,-0.33210456,0.03527877,0.49352705,-0.03475352,-0.17196491,-0.41806954,0.7787014,0.5088751,-0.042181857,-0.10263073,-0.4919492,-0.4535219,0.12563182,-0.338558,0.0767287,-0.06464363,-0.7777891,-0.27477774,0.17958298,0.31352133,-0.0046432843,-0.1595178,0.12888788,0.19341734,-0.036292247,0.27124748,-0.4715307,-0.063125946,0.22436133,0.32216972,-0.110022396,-0.04473663,-0.5200168,0.28153676,-0.65497506,-0.00077039865,-0.4398604,0.13235837,0.08861291,-0.29784083,0.21645238,0.16683443,0.30856153,-0.25984114,-0.38593,-0.056931496,0.6278118,0.2234353,0.27469504,0.68511266,-0.41704607,0.26109287,0.0036004256,0.3590902,1.0242101,-0.3374534,-0.13733724,0.16490872,-0.3748466,-0.6179203,0.33862764,-0.5076745,0.26990655,0.22659317,-0.37885872,-0.47339025,0.3379879,0.20110911,0.043362882,-0.045164183,-0.6758273,-0.010145981,0.1812498,-0.12567177,-0.19964422,-0.33282107,0.094834715,0.8168335,-0.3403622,-0.44446167,0.092251614,0.28043798,-0.31658015,-0.6685062,-0.06232712,-0.3360926,0.23567086,0.23679362,-0.1389435,-0.005990975,0.111276895,-0.58706385,-0.05785968,0.29119927,-0.29320657,-0.03969677,-0.3483117,0.0030769156,1.0115353,-0.18273272,-0.2049503,-0.5735253,-0.616244,-0.70492613,-0.19339278,0.5562042,0.48051813,0.27381855,-0.4904575,0.1579205,-0.16674998,-0.029942453,0.1372555,-0.33481723,0.4527966,0.09400467,0.42374924,-0.050313175,-0.7837654,0.22982107,0.07581735,-0.12312348,-0.42138305,0.49735767,-0.16029105,0.84035736,0.084039174,0.034765158,0.084673434,-0.5912992,0.24592717,-0.21605536,-0.075558834,-0.83288,-0.0124137355 -941,0.46273917,-0.29182288,-0.45028454,-0.08733147,-0.1841925,0.18616535,-0.2585213,0.19652018,0.13182455,-0.5493837,-0.2519035,-0.26715484,-0.1445841,0.19142374,-0.31154898,-0.3880592,-0.011637574,0.09041137,-0.5450066,0.66569495,-0.3070584,0.28147966,0.017733283,0.4014352,0.3801422,0.28172672,0.18087251,-0.020372782,-0.13131881,-0.21728568,0.029085254,0.13220419,-0.47295868,0.15890867,-0.15005726,-0.36915448,-0.07041331,-0.50511616,-0.4115733,-0.75892043,0.60524964,-0.9748847,0.4494077,-0.006930973,-0.086579494,0.4101705,0.26021037,0.32485065,-0.013779318,0.054229103,0.23235507,-0.006362951,-0.0646726,-0.07396479,-0.18801834,-0.42250755,-0.6087896,-0.02536863,-0.36792284,-0.26110387,-0.32624835,0.07984034,-0.2566855,0.052517235,0.028490828,0.53490955,-0.5184317,-0.02445283,0.29477394,-0.06764849,0.36493355,-0.6873163,-0.1799316,-0.05672555,0.3151514,-0.18001652,-0.042495854,0.17506084,0.4065933,0.43389755,0.0040531876,-0.06528283,-0.1631197,-0.14520258,0.29379576,0.44857693,0.055782694,-0.4212007,-0.13650776,-0.0062236628,0.03504176,0.22174147,0.289828,-0.37567902,-0.07095482,-0.014980395,-0.19480418,0.45006078,0.4520742,-0.2714489,-0.20130183,0.38955593,0.5321857,0.25722253,-0.16735746,0.106854245,-0.0011191656,-0.46446568,-0.2093894,0.19465494,-0.31616527,0.5151026,-0.15077774,0.31808186,0.62632245,-0.14634606,0.09078227,-0.093853526,-0.022357604,-0.27364957,-0.16122031,-0.2816981,0.17712678,-0.438226,0.2013344,-0.088924475,0.5887911,0.06932937,-0.59241384,0.28690663,-0.6167393,0.08498381,-0.034357212,0.40617597,0.60047597,0.28099722,0.29996583,0.6550202,-0.41267604,0.011849572,-0.056531016,-0.32873458,-0.15663792,-0.26569608,-0.19608977,-0.44243953,0.04932966,-0.15609707,-0.019084198,-0.21076061,0.4558856,-0.44684705,0.072755866,0.08380071,0.84901595,-0.29688987,0.09248652,0.82595736,0.9343371,1.1595598,0.070006825,1.1114589,0.21135053,-0.25999126,0.07056336,-0.1163411,-0.64432263,0.4007422,0.5060083,-0.045372963,0.2864373,0.0105017405,0.057811085,0.36932898,-0.38053676,0.15850426,-0.22790347,-0.03637246,0.26533267,-0.17992662,-0.3802995,-0.116450794,0.0022183578,0.11787126,0.17782547,0.051047906,-0.13135622,0.27738848,0.12982465,1.663981,-0.22296311,0.06403316,0.16085966,0.4128755,0.1956198,-0.090683684,-0.052823164,0.22802661,0.42965552,0.19703561,-0.70234716,-0.008813039,-0.22860269,-0.42620805,-0.24989833,-0.28074473,-0.11186516,0.016380707,-0.41800764,-0.1103449,-0.16157001,-0.32932752,0.2911293,-2.6327379,-0.19017714,-0.2971634,0.2789232,-0.24147873,-0.29367474,-0.09644384,-0.45167747,0.44158646,0.37135622,0.3162753,-0.56828713,0.45839468,0.52590495,-0.63720447,0.0988282,-0.5159236,-0.14361598,-0.16674218,0.3584706,0.00518647,-0.05369464,0.027167527,0.2544854,0.42697194,0.04054207,0.15983649,0.2792253,0.5289487,0.030127065,0.7153918,0.08624945,0.4130106,-0.15401167,-0.10793027,0.47295916,-0.23699099,0.23345819,-0.20742477,0.17946504,0.51920843,-0.56497353,-0.76484746,-0.7322272,-0.45914474,1.1551269,-0.10473302,-0.49991047,0.19716473,-0.27710336,-0.37088865,-0.11287144,0.48108146,-0.170274,0.07367614,-0.86647856,-0.058484543,-0.10511125,0.023191115,0.024236642,-0.06630785,-0.5908002,0.8742635,-0.00436654,0.44210348,0.38719627,0.18230239,-0.25845602,-0.55956477,0.01075691,0.9060107,0.41584688,0.0561742,-0.30638358,-0.063458495,-0.38727352,-0.06742199,0.06824408,0.4404034,0.521251,0.08704669,0.32415923,0.17357874,0.12886259,-0.00255211,-0.26476592,-0.27998617,-0.14836088,-0.200969,0.5688404,0.47345677,-0.15434612,0.39398214,-0.113413796,0.26035082,-0.19148661,-0.37639427,0.52013373,1.2456322,-0.11744625,-0.39331397,0.65191805,0.5007726,-0.24778026,0.3696214,-0.59216464,-0.1189444,0.47507858,-0.23807958,-0.63826203,0.20345595,-0.35269102,0.14221264,-0.7664815,0.26221102,-0.26529783,-0.22582892,-0.5780899,-0.23856299,-3.2590566,0.22576895,-0.2449104,-0.30168438,-0.21824677,-0.15074508,0.33052558,-0.53729784,-0.7617527,0.22588132,-0.05567893,0.7607185,-0.1347396,0.18762134,-0.24805762,-0.2196374,-0.34744692,0.09736263,0.037764803,0.2849042,-0.08879458,-0.44403014,0.044537067,-0.19600715,-0.39539808,-0.072735,-0.4230275,-0.32823163,-0.11138312,-0.34711888,-0.13551188,0.5284648,-0.13415508,0.06990639,-0.28844318,-0.10566036,-0.17040545,0.3991303,0.042120498,0.13715991,0.041621756,-0.042373728,0.048975762,-0.13805558,0.35921153,0.08890341,-0.015332184,0.24374828,-0.21823142,0.1903974,0.20842266,0.5232939,-0.20840149,0.9745003,0.44628382,-0.19200477,0.20965725,-0.25215536,-0.2606991,-0.6046961,-0.26667807,0.047899343,-0.37520954,-0.6788265,-0.094664305,-0.38749695,-0.7495716,0.49102765,-0.044461012,0.26377392,0.0441326,0.1457676,0.39946404,-0.1523612,0.0020399885,0.05141227,-0.12056171,-0.46437347,-0.34229487,-0.59733444,-0.44866365,-0.114906915,0.7892836,-0.07256161,-0.031747773,0.054130338,-0.39824674,0.028484814,0.100476734,-0.054461244,0.119438216,0.4788242,-0.039468586,-0.8047992,0.636137,-0.09917059,-0.12721808,-0.56994915,0.055826202,0.69629514,-0.48721224,0.50713444,0.37883335,0.048638288,-0.3268634,-0.5536299,-0.04792857,-0.043550868,-0.42624515,0.49347046,0.18817511,-0.69932395,0.42977035,0.2989129,-0.08327319,-0.7884682,0.7008012,0.041086633,-0.2603517,0.10449113,0.41895548,0.068967596,0.03425627,-0.33897686,0.37798825,-0.40510017,0.2288163,0.17935556,-0.031495906,0.12902966,-0.23275234,-0.18328704,-0.74077994,-0.037886743,-0.4183356,-0.18130098,0.16993073,0.0291284,0.124701895,0.33945405,0.07731342,0.4220193,-0.26865843,0.1528246,-0.050142195,-0.104004234,0.16268112,0.46355247,0.43395093,-0.47430936,0.60219926,-0.08284744,-0.099047825,0.049824316,0.099764094,0.38252643,0.08510737,0.4147974,0.08325343,-0.23778439,0.33237138,0.9250479,0.28364435,0.5067671,0.18528631,-0.27859232,0.33458558,0.16654024,0.26845512,-0.19005917,-0.6063555,-0.034940876,-0.17107895,0.11997322,0.4290895,-0.013405728,0.3314467,-0.1384888,-0.3456541,0.029439304,0.21508123,0.009362936,-0.9570981,0.26249334,0.14597687,0.8429854,0.6363734,-0.13261575,0.17361975,0.5211839,-0.22210178,-0.03149983,0.34726027,0.0062325993,-0.56049705,0.5584311,-0.5418285,0.27221885,-0.048804738,-0.12335,-0.014723198,0.01607566,0.34084627,0.68233526,-0.1825876,0.060738266,-0.101927675,-0.24654119,0.32608312,-0.4545606,0.035901286,-0.31511062,-0.33107814,0.6262014,0.709973,0.2574168,-0.17907931,0.052871864,-0.015889298,-0.12187259,0.15095349,0.23129518,0.03144711,-0.11001976,-0.8258289,-0.19550224,0.41236755,0.104311906,0.048727855,0.023652514,-0.32092616,0.21274458,-0.08713259,0.11856638,-0.00022383133,-0.86372113,-0.041444458,-0.22827253,-0.5231827,0.27455208,-0.11246125,0.23224078,0.18767291,-0.021772925,-0.23362732,0.122287504,-0.031196324,0.6914622,0.03918906,0.05597109,-0.39695632,0.100554705,0.21114448,-0.24635312,-0.028940868,-0.23287068,0.20723964,-0.67940956,0.59504914,0.0041499296,-0.38513005,0.27357107,-0.12658696,-0.03383764,0.62887114,-0.23641191,-0.09139465,0.017191362,-0.07852013,-0.23801522,-0.22451115,-0.19424623,0.1616734,0.0451291,0.076748535,-0.14446935,0.037429877,-0.16708751,0.5289911,0.08246682,0.57510126,0.5163524,-0.07137259,-0.42697594,-0.17861703,0.12292094,0.58220613,0.0026349684,-0.26828435,-0.19947377,-0.71790737,-0.25976807,0.37951893,-0.003995208,0.26770192,0.09563082,-0.25575116,0.64807165,0.073665924,1.108727,0.087502845,-0.4201003,0.13002777,0.5308783,-0.10621198,-0.122408204,-0.4064712,0.71564656,0.517648,-0.11571254,-0.10079129,-0.2661439,0.060555495,0.041688986,-0.23535372,-0.02546997,-0.117809944,-0.5976317,-0.3366061,0.1299239,0.29794952,0.08644954,-0.16547719,0.07400249,0.26362792,-0.012856803,0.4828482,-0.4924278,-0.3701529,0.3621787,0.22075881,-0.080510974,0.028823873,-0.4040593,0.4984828,-0.4913648,0.012215288,-0.3149472,0.20496269,-0.25191295,-0.16096298,0.24798916,-0.046552304,0.4183202,-0.31146634,-0.42368928,-0.25972927,0.37909344,0.17717877,0.17096029,0.3818106,-0.30093306,0.20769338,0.08554586,0.6707784,0.9804865,-0.08872902,0.21874695,0.33405632,-0.46004078,-0.48152003,0.37676254,-0.32247528,0.21855585,0.17631201,-0.21019433,-0.4016975,0.2818,0.23463562,-0.051770397,-0.09984178,-0.6131318,-0.34766954,0.4686185,-0.2146844,-0.21414907,-0.2475449,-0.017591167,0.5437738,-0.31985968,-0.24650837,-0.0914233,0.2525178,-0.21757771,-0.530073,-0.029990379,-0.41087925,0.49076447,-0.0017231822,-0.15367675,-0.11942472,-0.011199077,-0.51368356,0.12658842,0.113352746,-0.41986293,-0.024209926,-0.35103557,-0.10591132,0.8582573,-0.27818996,-0.072730295,-0.4972293,-0.41908118,-0.9554698,-0.3028756,0.35796434,0.1881965,0.07103432,-0.38639486,0.07016388,-0.21736985,0.111480094,-0.0043638507,-0.3309863,0.4141744,0.13411142,0.56769174,-0.09019251,-0.67126137,0.121274024,0.08421509,-0.35570708,-0.39595845,0.699506,0.05405364,0.65874636,0.022770038,0.11566793,0.121533036,-0.5437451,0.065712914,-0.107159846,-0.15478143,-0.8463147,0.07150658 -942,0.40242302,-0.18462116,-0.5417799,-0.11530328,-0.1772289,0.3679883,-0.18074472,0.49735114,-0.032984044,-0.5438507,-0.16636294,-0.023585683,-0.03489162,0.37296087,-0.20749979,-0.43615356,0.1088513,0.16295876,-0.5632918,0.68031895,-0.4707954,0.1964277,-0.064971834,0.38028508,0.26922405,0.1081929,0.14057106,-0.04359507,-0.42317492,-0.14247513,-0.18592276,0.5424858,-0.37878662,0.08252042,-0.19870216,-0.30108228,-0.12087944,-0.33007324,-0.37408853,-0.6909313,0.08504571,-0.85150623,0.53202677,-0.17529248,-0.2880252,0.2837058,0.40414214,0.29088122,-0.28458,-0.016864553,0.083071455,-0.19987726,-0.12434755,-0.28623918,-0.2569784,-0.54844093,-0.58750254,0.14205611,-0.534014,-0.095369466,-0.19898425,0.26871908,-0.20544152,-0.05620254,-0.13458574,0.5915925,-0.5161108,0.08337018,0.12588286,-0.014238773,-0.02265086,-0.70828766,-0.18847118,-0.24763264,0.20458487,-0.06942861,-0.20856543,0.19922492,0.47894555,0.518975,-0.017536711,-0.13022396,-0.43325743,-0.041607566,0.032436296,0.40808818,-0.21925163,-0.5200486,-0.22156502,0.010295193,0.3060264,0.03982424,0.14088571,-0.28580377,-0.051218778,-0.01822155,-0.37230778,0.26829687,0.4590108,-0.49940854,-0.30393064,0.39050865,0.43401578,0.15387204,-0.37389848,-0.0386918,-0.0653016,-0.6008194,-0.025307052,0.24445802,-0.1592918,0.60729235,-0.21051605,0.083377175,0.5269328,0.0209452,-0.04547743,0.10376642,0.1611786,0.07326546,-0.2251432,-0.2486106,0.061800346,-0.21969475,-0.04263508,-0.15064561,0.7198249,0.108560525,-0.6196657,0.34798586,-0.5340852,0.08491323,-0.032057695,0.44453347,0.6055735,0.5211297,0.16867042,0.6064865,-0.13662457,0.072717845,0.028472152,-0.17973572,0.023383765,-0.28643852,-0.10652168,-0.47517893,0.2600266,0.014293544,-0.10965012,0.031909764,0.7518529,-0.56092125,-0.17936185,0.09717731,0.845088,-0.2640609,-0.3202141,0.8430639,0.91765094,1.0113564,0.01705388,1.2058277,0.28669655,-0.15856351,0.12659675,-0.3971418,-0.5154924,0.2652866,0.34014216,-0.29888713,0.32873756,0.098165624,-0.15609603,0.52147794,-0.37064117,-2.4815556e-05,-0.3037773,0.1441822,0.21204486,0.07683663,-0.4179057,-0.37913987,0.056345068,-0.031973653,0.23154718,0.23945433,-0.30692294,0.34170386,0.022942195,1.5940062,-0.10069591,0.00091801956,0.023550991,0.49615258,0.21612793,-0.028776187,0.09061247,0.2912568,0.30397704,0.02446721,-0.39026952,0.12438811,-0.2779294,-0.61074054,-0.110293515,-0.35987377,-0.18790528,-0.07461649,-0.6428648,-0.16661763,-0.020470709,-0.21637666,0.48606676,-2.7145705,-0.18461159,-0.116671205,0.2973389,-0.2801693,-0.39514512,-0.23230475,-0.41863436,0.377728,0.29142386,0.4849968,-0.573619,0.5179254,0.26268905,-0.40702522,-0.12148993,-0.6222937,-0.14069033,-0.04415942,0.51979005,-0.0040026773,-0.021972332,0.19726206,-0.001957573,0.6164951,-0.2794295,0.18893184,0.26173162,0.21151444,0.02946715,0.4922341,0.046549514,0.6449663,-0.35107732,-0.26401424,0.42956227,-0.55944973,0.35922456,-0.045847178,0.1422254,0.45864147,-0.45494533,-0.9120235,-0.6703683,0.003714189,1.1641713,-0.25927755,-0.40109408,0.012752992,-0.28088126,-0.1823314,-0.06784764,0.4617027,-0.14354558,0.0063009635,-0.82220185,0.051768616,0.033580672,0.24614006,-0.14800131,0.14117467,-0.33169055,0.5983242,-0.09331496,0.44682318,0.27145973,0.24284416,-0.37518215,-0.4265048,-0.07005943,0.9417832,0.4216826,0.124942034,-0.1978567,-0.33841556,-0.37660685,-0.09088791,0.094541505,0.6367806,0.41727608,0.07068263,0.09275706,0.2994001,-0.09058697,0.07887293,-0.2945669,-0.2745813,-0.111361764,0.20726873,0.5571118,0.5304824,-0.14093268,0.5961425,-0.1604013,0.41454598,-0.11559586,-0.39749533,0.47588438,1.0595093,-0.27965948,-0.30819756,0.5630086,0.619316,-0.24837163,0.315758,-0.66610175,-0.44698614,0.5578182,-0.18094245,-0.26041302,0.22619997,-0.32894862,0.12557968,-0.87579465,0.43905243,-0.3249041,-0.35291183,-0.6921656,-0.106055975,-3.3440423,0.17876357,-0.17667243,-0.05558096,-0.09325495,-0.25866756,0.19297922,-0.58942705,-0.41815683,0.06795146,0.1766774,0.50287414,-0.12601656,0.085339405,-0.2644282,-0.3190291,-0.19639999,0.26683784,0.17587428,0.3929807,-0.17547122,-0.54682297,0.059688777,-0.2668855,-0.29603118,0.026635978,-0.81248826,-0.53533113,-0.06674227,-0.58835703,-0.36775166,0.7056657,-0.51213604,0.023859773,-0.1617581,0.10721865,-0.051792584,0.23002483,0.043381028,0.10925375,0.07674845,-0.17760865,0.102890104,-0.3520003,0.18729377,-0.02053029,0.16234016,0.48687577,-0.01941111,0.21895431,0.60328346,0.5633619,-0.016098648,0.8721205,0.5683435,-0.11371462,0.38845757,-0.20387265,-0.16737014,-0.46482155,-0.28985828,-0.046704322,-0.3865962,-0.44044796,-0.043032788,-0.34967864,-0.79870105,0.5523062,-0.12258166,0.07851653,-0.131437,0.47349873,0.5989216,-0.1809797,-0.02738195,-0.07048525,-0.15433201,-0.42737526,-0.5708316,-0.6067896,-0.5033155,-0.02441288,1.10373,-0.21657121,-0.08279635,-0.06592082,-0.22711605,-0.18892853,0.2641228,0.09028428,0.13476303,0.5755825,-0.2947744,-0.7209252,0.4003001,-0.3025373,-0.117963,-0.29312062,0.34487885,0.6053741,-0.6385223,0.5800094,0.52809477,0.1616509,-0.13926497,-0.55066276,-0.21796523,0.025152067,-0.19222534,0.41006312,0.20560518,-0.75892377,0.44617707,0.15115492,-0.34129477,-0.7436404,0.6010866,-0.04178299,-0.24521208,-0.08985743,0.43257448,0.19005159,0.06911984,-0.22612411,0.087283365,-0.5495982,0.25877038,0.18737094,-0.044087976,0.3514899,-0.31449044,-0.13956623,-0.77759826,0.011357361,-0.46685028,-0.35277927,0.2953071,0.051264793,0.2280578,0.1162737,-0.09098675,0.301023,-0.37597287,0.07642388,-0.1202314,-0.17186785,0.22608797,0.4940678,0.42255116,-0.46103546,0.55358726,0.06474902,0.03566431,0.024177298,0.028160501,0.34581798,0.118202746,0.529281,0.09830113,-0.073750734,0.3614386,0.74554586,0.33322176,0.46400377,-0.0029605068,-0.3606152,0.19204536,-0.05795455,0.14054577,-0.043948554,-0.41530454,-0.20167309,-0.19001144,0.2211106,0.47198984,0.13227305,0.44842255,-0.059738167,-0.23558864,0.079611376,0.18080392,0.03886585,-1.1461134,0.24651513,0.23263133,0.7506721,0.31372303,0.0792395,-0.019994818,0.73297364,-0.35722214,0.04890466,0.45926332,-0.05313733,-0.42924312,0.5780592,-0.67702675,0.5074686,-0.19747749,0.07326476,-0.045657266,0.06419947,0.3596064,0.86622536,-0.16256133,0.07120566,0.1331685,-0.3745636,0.20328227,-0.30317217,0.21705985,-0.46447948,-0.2642018,0.6742748,0.56051826,0.40174317,-0.17133412,0.0028734393,0.17283471,-0.29169655,0.15890846,0.09198372,0.23980916,-0.12127069,-0.777915,-0.1781047,0.54862976,-0.1583983,0.12758055,0.25430992,-0.28098172,0.3367493,-0.13056585,-0.023354873,-0.08128904,-0.55766726,-0.14199454,-0.26113954,-0.4863826,0.44371003,-0.36972022,0.21364574,0.21987587,0.0017911792,-0.40944272,0.41070455,0.043049853,0.7331504,-0.0008786097,-0.20202585,-0.30730698,0.07136183,0.17920823,-0.21197805,-0.13300212,-0.29384738,0.19562204,-0.5278317,0.39504302,-0.13044271,-0.24215099,-0.12973794,-0.070144325,-0.07817976,0.45874506,-0.08531863,-0.15192452,0.018115401,-0.052607544,-0.32995307,0.0055698305,-0.0822219,0.31318274,0.121913075,-0.018103339,-0.12408148,-0.13651808,-0.16070509,0.4638637,-0.06566677,0.31577858,0.58150434,0.17308037,-0.37506038,-0.03404326,0.18001877,0.647701,-0.02787067,-0.124383874,-0.25791058,-0.32504016,-0.37169167,0.21803683,-0.11192712,0.34757808,0.2344164,-0.4325282,0.7943982,-0.21381733,1.2623725,0.03611803,-0.38424605,0.07852663,0.51036596,0.02051972,0.13039672,-0.29929486,0.9055266,0.52178717,0.03413497,-0.08182672,-0.4212868,-0.04932051,0.12989591,-0.18307677,-0.21724299,-0.07175556,-0.56700397,-0.27161342,0.117998905,0.1735421,0.3228849,-0.052203443,0.14619473,0.3412238,0.10959137,0.29714692,-0.4367604,-0.12009598,0.31400493,0.449749,-0.1490944,0.1253747,-0.46862757,0.34737715,-0.5548192,0.014013981,-0.17828418,0.18785506,-0.13406388,-0.2682133,0.30333143,0.035325453,0.28922135,-0.43320715,-0.22157365,-0.25739264,0.562186,0.0020396076,0.12646139,0.64748096,-0.26914793,-0.0114575755,0.062488105,0.5566342,1.0774429,-0.35743043,-0.0059940666,0.26470196,-0.34081775,-0.70926654,0.27428842,-0.37142214,0.25395083,0.028563257,-0.21866359,-0.6034772,0.3795808,0.25853956,0.1132977,-0.02202096,-0.5562933,-0.08955148,0.36412323,-0.21250689,-0.11938405,-0.19768925,0.23387432,0.4935586,-0.36919898,-0.37703916,-0.0070575066,0.37501535,-0.21285671,-0.49982524,-0.016105227,-0.4901441,0.2964344,0.20641649,-0.2503709,-0.10796035,-0.03001244,-0.44482815,0.14937437,0.45093122,-0.33587915,0.11146884,-0.30028656,-0.025826186,0.8973738,-0.085306376,0.21350376,-0.48310837,-0.45977458,-0.8759657,-0.22481152,0.32182977,0.11209595,-0.105818465,-0.77288306,-0.040184475,-0.09556769,-0.52869815,-0.011493518,-0.49170244,0.54933774,0.082995646,0.26916343,-0.018772922,-0.71541697,0.0914528,0.06899957,-0.038750514,-0.45277828,0.36527383,-0.11756915,0.96894425,0.11649243,0.1297459,0.29222718,-0.44237006,-0.00077021867,-0.27247608,-0.013129715,-0.72234374,-0.004358884 -943,0.5630353,-0.17743155,-0.55634755,-0.25934976,-0.39425486,0.090847254,-0.35742927,-0.020869901,0.22556463,-0.41043976,-0.22132835,-0.12188021,0.034757327,0.40535286,-0.23050506,-0.8215418,-0.007963636,0.21574919,-0.5967173,0.45548037,-0.6193647,0.26715347,0.037001234,0.54266685,0.00052665814,0.29342356,0.375058,-0.023204157,-0.26778308,0.014795073,-0.07280571,0.22223027,-0.9822999,0.20503463,-0.1447502,-0.48913023,0.055048548,-0.41151974,-0.26058397,-0.9221493,0.4892488,-1.0545412,0.61410046,-0.058202393,-0.2963428,0.07669943,0.05674398,0.21427216,-0.39901915,0.08008214,0.26226372,-0.54389584,-0.15253152,-0.24024396,-0.18799232,-0.56851983,-0.778248,0.09348693,-0.7089728,-0.04991413,-0.3414369,0.2678471,-0.31226733,0.07232355,-0.306879,0.3309652,-0.6193163,-0.119101815,0.12716666,-0.13502975,0.23697303,-0.2888954,-0.20545742,-0.22163773,0.2606267,-0.12605432,-0.20482324,0.32063887,0.36580577,0.5932582,0.19070816,-0.353961,-0.35568348,0.02575085,0.16494314,0.32556322,-0.04484821,-0.43953127,-0.36280277,-0.13646527,0.36766466,0.39743453,0.069975555,-0.340077,0.21450163,0.13219073,-0.11902591,0.40916866,0.5000873,-0.3901537,-0.26279444,0.2589495,0.5172369,-0.17349158,-0.26350597,0.009629548,0.08294458,-0.69563115,-0.33087865,0.43379173,-0.23400022,0.6561986,-0.14568436,0.11818942,0.91087335,-0.3692027,-0.064057834,-0.26574966,-0.11871071,-0.24046943,-0.23068942,-0.21498892,0.45100376,-0.45284346,0.037565477,-0.2804256,0.7229357,0.23166026,-0.7367205,0.34060812,-0.5663229,0.13900664,-0.123797655,0.7084939,0.65952843,0.40261716,0.5507115,0.8566038,-0.4761712,0.3077206,0.13642107,-0.460354,0.09406923,-0.3707039,0.101737045,-0.34664026,0.0044616675,-0.23556297,-0.11410512,-0.08389325,0.4940894,-0.40800306,-0.02825378,-0.00096509286,0.6530856,-0.4474638,0.041130718,1.0362759,1.1262801,1.1822788,0.21101487,1.6232721,0.6324304,-0.0767589,-0.15073776,-0.14604096,-0.61963195,0.1863834,0.44810146,-0.2497752,0.31539592,0.036837675,0.16709037,0.4589822,-0.63120043,0.012944677,-0.16709948,0.20074166,-0.12023686,0.07246675,-0.60470164,-0.15693347,0.12686107,0.02394686,0.09812649,0.37720013,-0.11859507,0.60078526,0.06556364,1.1403421,-0.04648235,-0.04277686,-0.08915786,0.5464351,0.14492199,-0.030607095,-0.06765843,0.1855751,0.4627189,-0.12352882,-0.7140297,-0.050487183,-0.32807684,-0.34506717,-0.37262195,-0.40491995,0.23081145,-0.27451205,-0.3523721,-0.24871598,0.057817925,-0.30926195,0.47998708,-1.9743053,-0.14110401,-0.18248507,0.23280115,-0.12651253,-0.31292233,-0.16899957,-0.62899536,0.39998797,0.37807298,0.39441177,-0.6410139,0.35630697,0.43414164,-0.46754834,-0.09293396,-0.988426,-0.0033068317,-0.33860043,0.41052845,-0.07100372,-0.28304932,-0.31142756,0.17213437,0.6371749,0.08408087,0.10737778,0.18571188,0.5451745,0.032867067,0.68053436,0.25345263,0.5315918,-0.3511474,-0.2804843,0.5175304,-0.37633476,0.3385942,-0.055170804,0.17054716,0.52649206,-0.7131289,-1.0730947,-0.8356449,-0.6130751,1.0421966,-0.33608574,-0.5042278,0.15835033,-0.08818977,-0.22394456,0.012074134,0.38108367,-0.2642472,0.103487544,-0.7874591,-0.065875076,0.14258228,0.2794376,-0.037783828,0.27663124,-0.35264271,0.5383375,-0.20773129,0.15546967,0.459405,0.27354065,-0.19450484,-0.6568703,0.25085333,0.9565175,0.27826095,0.098538145,-0.31032056,-0.36328772,-0.013339775,-0.193628,-0.03423739,0.43266302,0.9578577,-0.24267784,0.020416604,0.34158173,-0.29793778,0.039049268,-0.13011232,-0.3183587,-0.10197033,0.06813377,0.5922242,0.75423735,-0.21956041,0.25514835,-0.33894977,0.51479053,0.0131848585,-0.5192837,0.6770095,1.0582381,-0.12239496,-0.08909122,0.81955624,0.5872657,-0.6270383,0.7063962,-0.76702434,-0.33427265,0.64509517,0.012271361,-0.42317942,-0.17943093,-0.34920564,0.33711436,-1.0392708,0.303873,-0.03010724,-0.3627022,-0.6372908,-0.21539016,-3.9206147,0.1489942,-0.23366295,0.0073726005,-0.07970953,-0.2227516,0.37410328,-0.5546016,-0.65356815,0.1255943,-0.011060503,0.5963963,-0.102275714,0.32921436,-0.38549998,-0.1504077,-0.32781428,0.26034227,0.46147007,0.3531511,-0.007994456,-0.52272046,0.2450464,-0.42328677,-0.45088312,-0.17751609,-0.66923743,-0.510188,-0.25758323,-0.6797315,-0.5315801,0.6501446,-0.31368932,-0.034989957,-0.34763643,0.12301066,-0.22270682,0.5013763,0.18053566,0.3362182,0.14914873,0.07110208,-0.19030759,-0.22208397,0.3157738,0.031315345,0.030639231,0.2624134,-0.05749764,0.22175767,0.47609776,0.7218774,-0.017661443,0.93724245,0.38437706,-0.013733777,0.21935473,-0.3673903,-0.4984839,-0.87116754,-0.46121305,-0.24247435,-0.5294703,-0.5061051,-0.09384644,-0.42333984,-1.0134863,0.71083206,0.06575994,0.184643,-0.14259446,0.44666752,0.4218464,-0.24841748,0.007272831,-0.15282938,-0.2535193,-0.5875045,-0.54003733,-0.763437,-0.7694343,-0.07206905,1.1206868,-0.03204012,-0.3425579,0.24474089,-0.42866588,0.25607768,0.21781063,-0.0037375134,0.23408845,0.697573,0.1466411,-0.8013997,0.50515586,0.031850595,-0.0612665,-0.5868967,0.0044404524,0.8117301,-0.86253196,0.7114728,0.58492315,0.22921541,0.21435615,-0.6210889,-0.3831535,0.05384677,-0.0570773,0.7158661,0.2872445,-0.8154526,0.6623413,0.17673358,-0.27815852,-0.85435545,0.5418178,0.05784915,-0.1907728,0.21338478,0.45296404,0.028416293,-0.054655105,-0.43672827,0.23591502,-0.53250813,0.22918512,0.449972,0.056147087,0.37230772,-0.19290951,-0.3251576,-0.8326183,-0.09487339,-0.47468826,-0.26835233,0.030141482,-0.12333421,-0.07145041,0.23260215,0.084784046,0.42203522,-0.34362355,0.16160889,-0.0753362,-0.3343881,0.20871113,0.53779286,0.26140672,-0.6062607,0.76636183,0.10470385,-0.27380317,-0.19828519,-0.080577016,0.4467666,0.15442204,0.28741175,0.07785287,-0.13842593,0.03104854,0.62480146,0.08884297,0.5427098,0.23500337,-0.20961216,0.60493314,0.24598959,0.26457173,-0.058958855,-0.24408457,0.08854042,-0.060321517,0.05606131,0.38878083,0.08511938,0.43064165,-0.03679266,-0.04691135,0.20039405,0.1460304,-0.055063862,-1.3257035,0.29467854,0.1797054,0.6097021,0.6454855,0.050175223,-0.039495353,0.61621827,-0.70012665,-0.07870535,0.4088157,0.20508745,-0.44525903,0.5887221,-0.5331465,0.38898394,-0.29525822,-0.082245186,0.044870887,0.3629563,0.38726425,1.0146881,-0.07596582,0.19042012,-0.090136655,-0.040332604,0.2933357,-0.27183756,-0.061224945,-0.3654206,-0.36890444,0.7932443,0.36037797,0.4720991,-0.29035473,-0.095302865,0.013400367,-0.21104264,0.3356796,-0.04641674,-0.17467615,0.0626903,-0.6838078,-0.2605093,0.5209028,0.108307496,0.00055309065,0.10515843,-0.45486158,0.2975974,-0.2625988,-0.08219145,-0.042573,-0.83441085,-0.32475758,-0.38554317,-0.40763712,0.45170054,-0.4468377,0.27398542,0.23366454,0.061714377,-0.4493394,-0.012795689,0.22568281,0.8111729,0.40585026,-0.113699794,-0.28560376,0.079479694,0.49283418,-0.5022513,0.059623618,-0.34106258,0.15414552,-0.55172163,0.633143,-0.21859124,-0.393387,-0.053687956,-0.17227003,0.009767703,0.60776097,-0.216644,-0.20455413,0.26156786,0.027963161,-0.29462835,-0.25573775,-0.3584054,0.24859358,-0.052272405,-0.007950498,-0.07464201,-0.06737041,-0.07658733,0.85166645,-0.05520689,0.29116583,0.2728921,-0.12128877,-0.41421336,0.012761644,-0.13259831,0.5193567,-0.012588569,-0.25819662,-0.39560273,-0.27529687,-0.1217807,0.28500384,-0.1765047,0.036416225,0.037418924,-0.44252846,0.8228442,0.2157928,1.3577224,0.10985493,-0.5211237,0.04691719,0.6053724,-0.004986848,0.15235741,-0.45723078,1.0448345,0.47071174,-0.32532224,-0.13838181,-0.5010111,-0.12194286,0.23677588,-0.2556249,-0.12315603,-0.29242048,-0.77023536,-0.28764287,0.24707463,0.3911579,0.11289965,-0.04124562,0.28041238,0.041334577,0.25327998,0.699014,-0.48696828,-0.09579929,0.4566618,0.29371768,0.02267374,0.21535513,-0.07852743,0.4594774,-0.52650243,0.10610391,-0.66383666,0.10090273,0.09504758,-0.45203432,0.18817149,0.16910097,0.40602753,-0.26735,-0.24717629,-0.26971126,0.8060288,0.27283198,0.22686605,0.7523716,-0.29809374,0.0822965,0.06579529,0.55910015,1.5472772,-0.26090723,0.21338442,0.17051843,-0.21420605,-0.55100167,0.44218454,-0.5204458,-0.08068289,-0.18250932,-0.49887577,-0.6156683,0.13871573,0.11661398,-0.09804548,0.17702878,-0.5214787,-0.134418,0.5085406,-0.08845459,-0.21011125,-0.32739225,0.44386694,0.68282634,-0.37629387,-0.26272938,0.087251686,0.3419013,-0.24225108,-0.43792632,-0.12902027,-0.3731092,0.46048698,0.104101874,-0.46140394,0.074862,0.23825775,-0.42271134,0.118892215,0.48562995,-0.30150393,0.1162976,-0.240011,0.056444068,1.1443878,-0.009562075,0.1526853,-0.61773765,-0.50318235,-1.1901648,-0.15298608,0.43129948,0.2877193,0.073533766,-0.44685668,0.007541001,0.0229314,-0.0048498,0.26588523,-0.8131496,0.38316685,0.101921625,0.71301556,0.091384076,-0.8130186,-0.085224174,0.08635123,-0.22842346,-0.35273567,0.59420913,-0.10658006,0.8466391,0.09498169,0.0927018,-0.021123962,-0.56525385,0.3730547,-0.3419449,-0.17960323,-0.7255211,-0.03434779 -944,0.5414034,-0.29187396,-0.48492938,-0.18283173,-0.27575257,0.28272635,-0.04783093,0.60284173,0.20971581,-0.15193993,0.015812894,-0.10090521,0.008303189,0.48744124,-0.041589893,-0.70353,-0.1195546,0.04443189,-0.62449354,0.32730582,-0.44746944,0.31546313,-0.10382271,0.46716124,0.1015272,0.34186566,0.07615352,0.09732726,0.11695364,0.21870448,-0.15898426,0.25764114,-0.5703259,0.054140504,0.02239306,-0.30412772,-0.16224636,-0.38091025,-0.3262804,-0.52577037,0.40467578,-0.69545054,0.5422525,-0.1778566,-0.40652987,0.18326932,-0.1539077,0.13375422,-0.47825903,0.010284694,0.20772758,-0.022664186,0.13509914,0.005993265,-0.18461339,-0.40136257,-0.54714525,-0.050712224,-0.48641247,-0.060315844,-0.14131509,0.11751737,-0.27055293,0.02256938,-0.06513841,0.31606042,-0.3581587,0.054457087,0.34219244,-0.23533684,0.23018925,-0.45271474,-0.091682725,-0.18514207,0.2370412,-0.093483336,-0.2258771,0.13033447,0.3727838,0.5347896,-0.092470735,-0.13443917,-0.2540135,0.20952933,-0.0713741,0.6016711,-0.030851604,-0.18717869,-0.35046944,-0.14005865,0.07688394,0.04179684,0.10963464,-0.35440108,-0.06588861,-0.039446894,-0.10921558,0.18489657,0.34466755,-0.3874799,-0.24921441,0.38126138,0.4869237,0.23830803,-0.042120907,0.17271401,0.05737514,-0.6285791,-0.23336846,-0.002346965,-0.051540844,0.5837039,-0.18808402,0.32193714,0.73582643,-0.020923348,0.13699828,-0.1670226,-0.0944029,-0.1842115,-0.28167135,-0.089889556,0.13020712,-0.35716695,0.09412698,-0.082131095,0.46838835,0.2346279,-0.8463577,0.37407142,-0.47824675,0.08918477,-0.1602475,0.47485238,0.9188125,0.3954331,-0.03257996,0.8330625,-0.5976974,0.029660206,0.1202189,-0.35681966,0.3476954,-0.042969253,0.023601161,-0.59411323,-0.0839009,0.17437838,-0.052008025,0.14293791,0.25324443,-0.5060718,-0.120473295,-0.04185572,0.5754147,-0.3610726,-0.2117245,0.6162964,0.90102565,0.8002202,0.024211653,1.2617582,0.29910094,-0.1640972,0.28110665,-0.30064282,-0.6157448,0.14212188,0.32794094,0.12526466,0.60889095,0.08210134,-0.06414897,0.5379529,0.07053598,0.08244698,0.048403203,0.016922494,-0.07134379,-0.18585855,-0.3514009,-0.28721416,0.10481025,0.052571084,-0.10279349,0.27026102,-0.2796725,0.38086668,0.19512646,1.7698922,0.06639911,0.09419597,0.011945675,0.2827605,0.24157077,-0.25073877,-0.28141534,0.31442994,0.4178826,0.09578942,-0.51766497,0.31311384,-0.111764774,-0.50898874,-0.07412654,-0.34437153,-0.23008196,-0.21933553,-0.6100624,-0.023013212,0.03310906,-0.22766942,0.46213335,-2.785773,-0.24024637,-0.12160066,0.36827692,-0.29594773,-0.35799688,-0.27592036,-0.25071377,0.07641487,0.50874263,0.34274894,-0.7189826,0.36465338,0.2679572,-0.36078814,-0.09900802,-0.48310485,-0.18708947,0.14878228,0.11635113,-0.11268295,0.034505542,0.003649794,0.44884926,0.51637834,0.01900418,-0.09726494,0.20683624,0.53960073,0.08422288,0.48394525,0.0053063747,0.5282661,-0.19556847,-0.11715314,0.40835983,-0.39695734,0.3373794,0.11131582,0.2499343,0.35939044,-0.36374468,-0.899459,-0.57220805,-0.31830075,1.2256334,-0.4035021,-0.2543547,0.23498361,-0.1365578,-0.2578721,-0.046923574,0.4438538,-0.016480394,-0.16739509,-0.77634394,-0.13773154,-0.052130178,0.22688964,-0.020135237,-0.041505676,-0.2331126,0.6297182,-0.0058293203,0.5582177,0.3984751,0.14481264,0.071127996,-0.56445825,0.08936406,0.6302192,0.32559088,0.22767133,-0.17178954,0.048028152,-0.25731856,0.118246004,0.1296694,0.459532,0.7142481,0.0764916,0.25826314,0.28926295,0.028142361,0.017538745,-0.030111028,-0.23678988,-0.029719405,-0.04376871,0.40841436,0.79002225,-0.30724138,0.2737892,-0.16419117,0.11343467,-0.17429979,-0.5624536,0.65365696,0.85480225,-0.21730043,-0.12323756,0.30822402,0.30098736,-0.34449452,0.32786167,-0.6293841,-0.1332263,0.4849952,-0.121499576,-0.23853882,0.30058515,-0.2569004,-0.031160366,-1.0031046,0.13035509,0.04634607,-0.29803762,-0.44062263,-0.13319013,-3.8546262,0.17800514,-0.15823385,-0.30752066,-0.18794395,-0.11662921,0.5205289,-0.72039616,-0.68713444,0.07891457,-0.045471072,0.5396636,-0.03850166,0.17212875,-0.3740702,-0.17050654,-0.1623001,0.18627074,0.105902284,0.31391206,0.10866996,-0.42882687,-0.13626072,-0.13494833,-0.5535409,0.079384595,-0.5859306,-0.5671108,-0.167015,-0.44781816,-0.13075279,0.65710026,-0.26706177,-0.100475624,-0.16819248,-0.041592777,-0.31861386,0.36433014,0.07909175,0.055485018,0.028309971,0.069614775,-0.12661296,-0.27387062,0.19283369,0.13293782,0.26333362,0.29755887,-0.28176948,0.18392897,0.64401424,0.650986,-0.04411375,0.5502637,0.38270423,0.01917217,0.40715155,-0.24979003,-0.11867054,-0.6099328,-0.26243553,-0.2658106,-0.40123194,-0.51313287,-0.18456878,-0.35621977,-0.81157434,0.2558603,-0.087371096,0.17256406,-0.01107817,0.1563176,0.49420038,-0.31665665,0.10768938,-0.057693098,-0.24901077,-0.52834195,-0.38146728,-0.5270251,-0.6300933,0.3842471,1.1093332,-0.17112626,-0.060245767,-0.052250262,-0.33452857,0.019315593,-0.038352575,0.15066266,0.18383534,0.18486819,-0.21114364,-0.7059049,0.43013003,-0.25846404,-0.15410699,-0.65034986,0.024059048,0.52936757,-0.5142403,0.5050452,0.21646562,0.12608257,0.1818373,-0.54054606,-0.24167325,0.031725228,-0.116741896,0.5363549,0.2988265,-0.61337346,0.41083467,0.20577511,-0.14786649,-0.52696896,0.5293007,0.01617633,-0.13373922,-0.050750785,0.25981307,-0.009714266,-0.041406844,0.00935909,0.17656612,-0.5289058,0.21473667,0.39923924,0.047809236,0.40362102,0.14614004,0.10620949,-0.5514539,-0.07369269,-0.41496673,-0.15571769,0.17280348,-0.02155423,0.38857645,-0.06513883,0.15304272,0.3637275,-0.3208939,0.10024476,0.11148059,-0.29748318,0.23908521,0.5016986,0.4041267,-0.4462994,0.38478342,0.019823859,0.17648548,0.2553176,0.17363968,0.49346623,0.4265246,0.21864134,-0.105757125,-0.13575037,0.19634192,0.6596471,0.10396635,0.29045746,0.08176903,-0.23836938,0.2635217,0.17146876,0.19724265,-0.15351209,-0.41418302,-0.018977843,-0.016856235,0.3155268,0.4805147,0.0885718,0.21681312,-0.19383945,-0.31380588,0.21087044,0.13096382,-0.026635386,-1.0763967,0.23009561,0.32640073,0.73508173,0.41796872,0.0065369513,0.052920163,0.22781955,-0.21476632,0.23201388,0.509407,0.004526762,-0.6044523,0.55267435,-0.5550085,0.40292642,-0.12303492,-0.10641094,0.19551522,0.21480507,0.4261341,0.8452019,0.024205161,0.04040154,0.1708734,-0.39839157,-0.089600295,-0.38183865,0.04464394,-0.74748874,-0.14077783,0.57417417,0.5408398,0.227492,-0.45731786,-0.103142075,-0.060286883,-0.111513495,0.07719595,-0.038405236,0.047966726,-0.09802704,-0.69040257,-0.44303843,0.5046133,-0.047136646,0.008536767,-0.040316902,-0.5135015,0.1189398,-0.16952607,-0.1364354,-0.034306843,-0.8693666,-0.03255334,-0.32242626,-0.527627,0.4431388,-0.0894537,0.088250235,0.17463714,0.03251829,-0.37173754,0.35134125,0.046909627,0.9406162,-0.052427173,-0.1221938,-0.55030906,0.22258955,0.39270127,-0.22557057,-0.31932878,-0.3992965,-0.006061534,-0.13863996,0.4239464,0.0798107,-0.18551207,0.104624115,-0.06970461,0.16802181,0.41080725,-0.24115291,-0.16954687,-0.10567402,0.026432395,-0.4102206,0.078636274,-0.40950865,0.3326267,0.15524796,-0.02443547,0.115768865,0.040615007,0.022305112,0.19795993,0.28581172,0.3024634,0.53339964,-0.113181114,-0.35938406,-0.10289614,0.16636251,0.39562672,0.096799955,-0.19829275,-0.5680693,-0.48714367,-0.31149906,0.24458303,-0.24251267,0.26334518,-0.038503535,-0.40313962,0.7005241,0.23886864,1.0959735,-0.068611465,-0.21812584,0.11637715,0.4113421,0.19956627,-0.09252139,-0.35294473,0.8688921,0.51923126,-0.15709901,-0.32248205,-0.081926934,-0.30947113,0.23715934,-0.28349292,-0.07006268,-0.2000892,-0.8448034,-0.14424962,0.16368856,0.1485912,0.14387348,-0.012866745,0.04350744,0.11468831,0.08270575,0.289096,-0.41595384,-0.18994966,0.2405749,0.28278166,-0.021932097,0.21806255,-0.4083126,0.44622883,-0.5654306,0.09787187,-0.5335096,0.0712545,-0.038637932,-0.2276539,0.09691828,-0.005203531,0.33906493,-0.24059154,-0.34578726,-0.4023081,0.63249457,0.20737761,0.370878,0.744012,-0.22018598,-0.086691275,0.1325888,0.46700874,1.1183095,-0.023062166,0.010863524,0.39977133,-0.3029838,-0.630043,0.0189829,-0.2804132,0.44958904,-0.16106743,-0.16742116,-0.4357788,0.36103395,0.06287434,0.09818191,0.066360705,-0.5821713,-0.25674558,0.4255096,-0.3242386,-0.27679074,-0.36531323,0.15298764,0.6454543,-0.4123203,-0.29553074,0.13902806,0.29071018,-0.15193847,-0.45535567,0.044549625,-0.49166125,0.25696608,0.1345803,-0.33484906,-0.065451115,0.0772064,-0.3417456,0.27625805,0.24196583,-0.26392132,0.04605089,-0.25679573,-0.14166485,1.0332605,0.04739976,-0.0792474,-0.7478791,-0.47579062,-0.9373775,-0.4339466,0.2820502,0.16810696,-0.1622982,-0.6191069,0.06846878,-0.09806288,0.042660985,-0.11184808,-0.3072317,0.5392312,0.10664903,0.4502578,0.050145403,-0.91059846,0.0360161,0.116913766,-0.4058684,-0.57328135,0.61969787,-0.10234405,0.64039654,0.06501717,0.05942836,0.17541605,-0.53431237,0.211607,-0.46222872,-0.06285615,-0.63799626,0.18569122 -945,0.5018525,-0.05673449,-0.40329766,-0.35623217,-0.3514842,0.12833655,-0.19576971,0.110070296,0.34679374,-0.5712886,-0.15429275,-0.04075982,-0.03990066,0.51649195,-0.22711174,-0.86644936,-0.017854994,0.06865765,-0.58266217,0.41394392,-0.56078166,0.22045851,0.040364567,0.43953958,-0.2951479,0.16831015,0.5162225,-0.04610609,0.07080113,-0.15063153,0.109286845,0.11320001,-0.87846094,0.30369362,-0.095465384,-0.25286007,0.012521054,-0.72034764,-0.09983573,-0.769196,0.4647638,-0.8798342,0.58686554,-0.0843052,-0.28219256,0.04668249,0.22240971,0.05408753,-0.12540048,-0.08680568,0.29676822,-0.33488014,-0.24292612,0.10998118,-0.35810176,-0.52958983,-0.696482,0.08103488,-0.65841246,-0.1955923,-0.3729564,0.17263901,-0.35709313,0.026286462,-0.20996828,0.63011175,-0.45697126,-0.12464592,0.36861792,-0.33400884,0.07900948,-0.5828487,-0.15568207,-0.15623952,0.31123504,0.0026606247,-0.18627568,0.50846684,0.34827176,0.6047493,0.21307676,-0.3949543,-0.20652825,-0.087103404,0.23702562,0.59899914,-0.022034913,-0.3339359,-0.26331472,-0.024945071,0.25727317,0.17170517,0.16798835,-0.27310136,0.10973292,0.12876879,-0.032619696,0.6983757,0.4949658,-0.42650792,-0.29777387,0.34367296,0.3815559,-0.032569867,-0.049836148,0.08414355,-0.10834048,-0.5414159,-0.33220056,0.11815251,-0.13173306,0.5558733,-0.079794325,0.05030054,0.8147003,-0.32946193,0.035266723,-0.20679307,-0.28043196,0.13530238,-0.34776023,-0.053794295,0.34224483,-0.39823022,0.06877771,-0.24984433,0.6001254,0.24031931,-0.8071313,0.34354195,-0.37161407,0.15473051,-0.027511701,0.7571895,0.7937191,0.48457217,0.4345092,0.9800944,-0.40305606,0.042702883,0.20220132,-0.20942074,0.0258782,-0.27286795,0.29467526,-0.28799823,0.2341003,0.095974915,-0.055533666,0.11669382,0.34573603,-0.4180824,-0.03906168,0.09696128,0.6551414,-0.27484378,-0.16342537,0.9460376,1.2720946,1.083795,0.09209916,1.6563493,0.14538775,-0.08276489,0.09783548,-0.021608269,-0.74479,0.13604361,0.46668682,0.6165018,0.4026148,0.08365974,-0.06302657,0.35626206,-0.5235765,-0.2728184,0.057400268,0.3599192,0.09573803,-0.18019366,-0.50255036,-0.11509272,0.23821227,0.0638923,-0.0052598887,0.3409516,-0.17712744,0.47226024,0.10013873,0.8551416,0.0060634017,0.11934296,0.034025554,0.33339584,0.12152806,-0.19959502,0.14499176,0.29206058,0.16553004,0.047506083,-0.6938978,-0.027260842,-0.5015406,-0.4851311,-0.34228912,-0.5147636,-0.119850494,-0.22514905,-0.16035849,-0.26345655,-0.15756893,-0.4173293,0.36072764,-2.3716106,-0.29409808,-0.3318182,0.4657692,-0.19282164,-0.2134224,-0.18516254,-0.64244175,0.41273132,0.43531027,0.5004081,-0.55206776,0.49763182,0.414986,-0.67968696,-0.11303604,-0.776789,0.07476213,-0.13812833,0.5200767,0.0046214364,-0.360144,-0.32294008,0.34515008,0.79233384,0.50524473,0.11124009,0.20604783,0.59238297,-0.14708097,0.502584,-0.17940728,0.56101775,-0.25840458,-0.05704094,0.45463374,-0.49104962,0.32083952,-0.37608054,0.033991043,0.6231667,-0.51509064,-1.0721421,-0.81901914,-0.57015496,1.1948539,-0.41430256,-0.6703143,0.45553008,-0.16335161,-0.11755362,-0.044158276,0.6168348,-0.11263477,0.20006716,-0.6401556,0.20156896,-0.20894052,0.02417934,-0.10391486,0.34533966,-0.5342428,0.7674942,-0.23013961,0.4828333,0.2624502,0.15980105,-0.1683942,-0.19124456,0.08028036,0.7405328,0.45621848,0.15191674,-0.14518747,-0.07698051,-0.15290941,-0.4240248,-0.06419466,0.94223386,0.6056488,-0.078394115,-0.036940813,0.20219187,-0.13686457,0.16799103,-0.11334634,-0.25849426,-0.2081757,0.075361975,0.71014816,0.6958151,-0.46035123,0.0445426,-0.11574253,0.3273411,-0.04339214,-0.49467853,0.35095808,0.71856815,-0.19240178,-0.020688688,0.790649,0.5396283,-0.5235297,0.531207,-0.64106965,-0.28586838,0.8491408,-0.003452748,-0.547381,-0.3071937,-0.24362762,0.014615645,-0.65934,0.2848099,-0.26741233,-0.7812632,-0.2163785,-0.23154251,-3.1796367,0.2346642,-0.26939812,-0.040886506,-0.21864821,-0.104997106,0.24616326,-0.5865357,-0.65091664,0.07260849,-0.04346584,0.5565268,-0.21261542,0.17685187,-0.3325549,-0.19974883,-0.19657142,0.32965985,0.033327308,0.34616065,-0.041161884,-0.2545164,0.105173804,-0.12477087,-0.6172337,-0.07504793,-0.5644217,-0.56865436,-0.19374482,-0.49863115,-0.20405316,0.76234895,-0.38835326,-0.124553286,-0.3110485,0.1330433,-0.2571742,0.2625716,0.007902329,0.41941917,0.087166406,-0.06730042,-0.1527294,-0.09976268,0.6704564,0.07327823,0.47227982,0.4020374,-0.25208318,0.19987448,0.42632294,0.67503715,0.038090236,1.0585493,0.29419354,-0.013898787,0.3686755,-0.15291485,-0.38924417,-0.8767622,-0.43515667,0.0704949,-0.44040796,-0.5529074,-0.07481861,-0.4655302,-0.886136,0.482874,0.08280229,0.34452948,-0.24320465,0.16168408,0.26110327,-0.32384428,0.12711243,-0.1287843,-0.052981537,-0.7004245,-0.34841123,-0.71251756,-0.6255448,-0.09501406,1.1271303,-0.063922316,-0.27319312,0.11045935,-0.27783272,0.11307507,0.13407399,0.27787575,-0.07110431,0.56729513,0.07603424,-0.82481664,0.44528142,-0.1339107,0.023289422,-0.6465898,0.25209594,0.6204348,-0.5536464,0.77888393,0.39675787,0.30509365,0.08158066,-0.6913007,-0.31098744,-0.05219284,-0.05648036,0.52058524,0.18428724,-0.9223809,0.5172624,-0.11077809,-0.31892908,-0.6277363,0.50703,-0.16641389,0.12141153,0.11784059,0.42462435,0.18765609,-0.19519329,-0.16722424,0.28277123,-0.51634896,0.4995997,0.2085315,0.18689401,0.72321194,-0.16361861,-0.4307791,-0.8257079,-0.20335943,-0.6064807,-0.22711396,-0.02660645,-0.1431879,-0.100133084,0.16489346,0.16089225,0.559799,-0.20495756,0.22671014,-0.06674672,-0.58094454,0.43673754,0.57180786,0.565782,-0.6582528,0.7480576,0.07394246,-0.08020016,-0.18044512,0.093832545,0.4563633,0.072510965,0.35811213,-0.04917055,-0.048320625,-0.109248705,0.7750995,0.18966268,0.23371327,0.22453894,-0.19714652,0.69859976,0.0006772007,0.2114247,-0.10624366,-0.73297507,0.10742852,-0.13133515,-0.06864341,0.48273805,0.22884321,0.39548168,-0.045296907,-0.13281389,0.12502052,0.085496984,-0.12868752,-1.4359903,0.14884531,0.18881983,0.8168791,0.51356804,-0.029750595,-0.0061029494,0.65751666,-0.16990001,-0.10764774,0.6068497,-0.05771904,-0.53831625,0.7204725,-0.5836404,0.57557166,-0.28521085,-0.06136164,0.12085771,0.30157885,0.42701736,0.90566796,-0.21082877,-0.102459095,-0.20000096,-0.12123954,0.30704808,-0.39345217,0.07716115,-0.4560542,-0.26030958,0.7458318,0.4760634,0.3039566,-0.24223296,-0.0010329945,0.21226732,-0.22050394,0.34706888,-0.1770215,-0.259217,-0.23690958,-0.7397242,-0.19107813,0.4546087,0.0005500267,0.15129666,0.20443535,-0.26674524,0.09508073,0.023089387,-0.26561803,0.0015825698,-0.78679687,-0.19206727,-0.28873852,-0.5905614,0.2441395,-0.33492768,0.16293709,0.27550742,0.097275674,-0.2855892,0.02099663,0.16197507,0.78314334,0.022572747,-0.18784648,-0.3693662,-0.041548807,0.31713852,-0.4521276,0.38563785,-0.29514447,0.15506199,-0.47181496,0.65005213,-0.22100186,-0.20359199,0.10324413,-0.10391903,-0.06680123,0.4760147,-0.15236114,-0.0041172574,0.19137055,-0.2260227,-0.1892374,-0.2213307,-0.39094117,0.28238004,-0.040406395,-0.06080231,0.047849264,-0.15921329,0.040097903,0.43346894,0.07795157,0.09146059,0.16368224,-0.070037834,-0.42186823,0.020882512,0.1166096,0.5910558,0.1342551,-0.092334926,-0.23368078,-0.41689324,-0.20194484,0.48113072,-0.06792232,0.12491011,0.009386569,-0.3725557,0.68688256,0.17523164,1.1931065,-0.031754013,-0.4385701,-0.032849755,0.79352903,0.05390358,-0.021949073,-0.45500383,1.0166119,0.4271501,-0.14277552,-0.15593497,-0.7706595,-0.11366219,0.26034224,-0.26574662,-0.24785154,-0.2630995,-0.77560145,-0.16935344,0.1315789,0.09782157,0.2004515,0.0013031512,0.072716124,0.014500921,0.23813121,0.5049211,-0.6033317,-0.24619631,0.4133215,0.1987866,0.05829124,0.12829672,-0.22058636,0.34766865,-0.7736418,0.22916079,-0.3964928,0.05566597,-0.26552406,-0.24040346,0.23380367,0.12220293,0.49390635,-0.026991853,-0.38175598,-0.07967052,0.4955388,0.09091214,0.27778164,0.824578,-0.2868372,-0.23359184,0.021515632,0.56636477,1.6268415,0.05433276,0.47416446,0.07056854,-0.43225527,-0.6446969,0.15804985,-0.51125985,0.06791598,-0.09609733,-0.26628464,-0.46677613,0.041200563,0.039464176,-0.18896861,0.21556467,-0.59463453,-0.4748577,0.24110109,-0.37921157,-0.19112617,-0.3863741,0.244989,0.93621427,-0.33451757,-0.25125733,0.13213019,0.3297375,-0.0623406,-0.8115087,-0.02300935,-0.20176506,0.38121262,-0.13660844,-0.41638395,0.01310607,0.18750282,-0.49031627,0.2056321,0.19422428,-0.38928714,0.07588766,-0.3479043,-0.026775578,1.0854625,0.13757871,0.3737372,-0.5975926,-0.669405,-0.99105865,-0.25499997,-0.12080321,0.0900474,-0.10951411,-0.2264276,-0.23454468,-0.049189508,0.10145578,0.042382002,-0.672694,0.21001768,0.057657544,0.60188466,-0.14819609,-0.8643856,-0.08580625,0.15857397,0.19135761,-0.50092655,0.32976386,0.027947113,0.70288706,0.17103465,-0.018970026,-0.15953855,-0.6262594,0.29031536,-0.3730807,-0.11888337,-0.43288672,0.2457627 -946,0.32481197,0.011607647,-0.50352204,-0.072180815,0.038998544,0.10440359,-0.15036309,0.14022999,0.21562424,-0.41741523,0.030693308,-0.17495392,0.021057572,0.34395048,-0.17433837,-0.677925,0.017476724,0.16211717,-0.28988814,0.3024004,-0.48776224,0.3945207,-0.042960893,0.18099608,-0.19664635,0.19966975,0.4322743,-0.122304015,-0.14667585,-0.2761836,0.094974294,0.18108848,-0.5992133,0.23557952,0.14460003,-0.32716078,0.097461216,-0.27060443,-0.37480205,-0.52578145,0.32714763,-0.73815566,0.52737427,0.24131183,-0.1074426,0.21833737,0.13429372,0.22443001,-0.31848326,0.17873558,0.13319682,-0.17092974,-0.088131845,-0.24939987,-0.27557537,-0.21097663,-0.49003473,0.010689578,-0.44689175,-0.1249057,-0.40637377,0.10896653,-0.40555552,0.017257173,-0.17973062,0.30921003,-0.37742758,0.01653908,0.2668834,-0.26919934,0.24610092,-0.2679293,-0.09239401,0.00053199485,0.059228476,-0.3002827,-0.0741735,0.19465575,0.14095919,0.43996096,-0.028761348,-0.148249,-0.2911246,-0.24659573,0.2770039,0.6092066,-0.19580944,-0.38400322,-0.12179928,-0.009225952,-0.13799939,0.13797292,-0.038919974,-0.37669674,-0.052024383,0.053771503,-0.28281972,0.33215886,0.52675873,-0.23391096,-0.1980077,0.39043984,0.29965216,-0.21388957,-0.018310426,0.20816419,0.15640496,-0.522283,-0.2508442,0.074929334,0.06862747,0.40208647,-0.05360284,0.33565637,0.6449613,-0.42059138,0.007702078,-0.037553847,0.01875405,-0.026781917,-0.3173403,-0.18001893,0.26662058,-0.4175539,0.0059110946,-0.097460985,1.0355021,0.059909515,-0.8482197,0.43902665,-0.4043305,0.09891661,-0.15768231,0.5699088,0.3544806,0.25828487,0.16725476,0.68394405,-0.62764037,0.08931891,-0.03891662,-0.6021937,-0.022495074,0.10921766,-0.23021376,-0.3348392,-0.022955963,0.30017525,0.07216792,0.14672367,0.35130462,-0.3722233,-0.092800654,0.021972569,0.84962314,-0.35372704,-0.06362915,0.47641724,1.1249714,0.74752766,0.03819927,1.144314,0.29006213,-0.12851441,-0.10868498,-0.19837774,-0.8950914,0.19391575,0.23676832,-0.26070204,0.28481093,0.15442726,-0.15304302,0.17720218,-0.38567585,-0.06868149,-0.10979348,0.37496647,-0.10663407,-0.072456725,-0.3872336,-0.077012815,0.10536886,-0.114611864,0.23092738,0.21411125,-0.1983056,0.17904806,0.121176854,1.532343,-0.044942237,0.24984454,0.07625913,0.4189516,0.3143766,0.02468991,-0.16547082,0.30126914,0.33716002,0.0830456,-0.5282565,0.05188625,-0.023884919,-0.43044788,-0.2028284,-0.2788636,0.074443884,-0.16980942,-0.32980868,0.022140415,0.013528122,-0.47867987,0.4461956,-2.871178,-0.043001533,0.024263961,0.28545353,-0.230734,-0.2083937,-0.20671943,-0.34533837,0.40317065,0.42013577,0.40071043,-0.57561886,0.31807283,0.4887174,-0.19046526,-0.1349876,-0.50679505,0.0901771,-0.21550485,0.28174067,0.08170663,-0.05770445,-0.1691109,0.20706585,0.3487391,-0.17419152,0.045710888,0.2485049,0.33395788,0.20091058,0.2960222,0.09047334,0.5052376,-0.38281757,-0.11436277,0.34226927,-0.3007725,0.1192153,0.007430896,0.11132475,0.15684332,-0.3382101,-0.8350722,-0.4431176,-0.3507836,1.1545277,-0.27960178,-0.28696615,0.37990332,0.101717286,-0.38354227,0.03963129,0.35255042,-0.21358427,0.011477432,-0.8175122,0.19204998,-0.110039815,0.3847025,0.0796266,-0.046380155,-0.38445696,0.5187775,-0.1716738,0.5379492,0.47219244,0.13022855,-0.33594465,-0.47947383,0.20327449,1.0710162,0.12294846,0.2026889,-0.18909647,-0.12002279,-0.16629277,-0.10337294,0.027001783,0.4507702,0.8364716,0.018356385,0.0540803,0.32797357,0.06055054,-0.03510144,-0.044932555,-0.3125575,-0.035317387,-0.15960215,0.6177029,0.3887727,-0.2684933,0.37015983,-0.12688448,0.34871206,-0.30583522,-0.2647211,0.5164517,0.7057981,-0.086115405,-0.3312057,0.6131999,0.5022164,-0.2964231,0.39277253,-0.5877177,-0.2813912,0.39272457,-0.19494794,-0.35186005,0.3018892,-0.3101155,0.07480308,-1.0066923,0.33869484,-0.15480505,-0.42824632,-0.45633927,-0.24808083,-4.3351054,0.09261335,-0.25865135,-0.18879405,-0.010040879,0.1077215,0.2997233,-0.3423333,-0.36528125,0.12196588,0.12046635,0.56228846,0.041455735,0.22624636,-0.21321407,0.13524751,-0.2310654,0.16725422,0.12681755,0.09045633,0.100290455,-0.45868307,-0.1538838,-0.19465293,-0.50822204,0.17248532,-0.4921866,-0.32424736,-0.0920607,-0.5892953,-0.4939435,0.6078419,-0.46772394,0.008873999,-0.30535516,0.007266578,-0.14014885,0.45804578,0.07349758,0.108649015,-0.173891,-0.021295158,-0.079745665,-0.25968868,0.4426596,0.031857185,0.32574016,0.38572755,-0.26301497,-0.08174612,0.37865424,0.42064068,0.15659797,0.63840103,0.31287006,-0.118327364,0.28110558,-0.31818834,-0.12924509,-0.52334034,-0.4280383,-0.09920518,-0.46086076,-0.42479306,-0.17097129,-0.35977703,-0.69356406,0.61624604,-0.04020043,-0.034126844,-0.050901264,0.2745813,0.20175481,-0.031287167,-0.04860804,-0.05820947,-0.1483327,-0.2727912,-0.3306412,-0.6689302,-0.34007758,0.09027525,0.8030526,-0.14459464,0.025452277,-0.047716107,-0.0141936885,-0.049177263,0.10661862,0.2508607,0.44180915,0.42181233,0.013248175,-0.58371437,0.5548901,-0.34042555,-0.21747069,-0.6438283,-0.04378134,0.59600055,-0.74624777,0.49617568,0.3845341,0.2511677,0.10443822,-0.39891386,-0.3155271,0.030598832,-0.20576267,0.4753869,0.15077151,-0.81529844,0.52641964,0.31360933,-0.19651672,-0.64981186,0.43665808,0.09265045,-0.29081067,-0.008091935,0.3213742,-0.20982814,0.040276133,-0.23507203,0.14612672,-0.35550144,0.19597699,0.09604082,-0.08786812,0.65063745,-0.15782735,-0.10680527,-0.50134593,-0.04981152,-0.44511032,-0.24770005,-0.017890066,0.033300318,-0.074266456,0.26576835,-0.33699363,0.44846442,-0.37167913,0.057698976,0.09825007,-0.24348663,0.49175972,0.3803828,0.31194323,-0.31416026,0.6969667,-0.12942518,-0.005983395,-0.24741422,0.18480276,0.5581532,-0.008744283,0.37128884,0.08298846,-0.050842676,0.42306146,0.6292781,0.2369829,0.5365508,0.2034951,-0.004816796,0.2989211,0.16421954,0.08322949,0.23657963,-0.27337745,-0.12061107,-0.069611184,0.20910566,0.42177302,0.1748749,0.63259125,-0.2146056,-0.3477494,0.13047531,0.28432545,-0.18554915,-0.9142705,0.37663412,0.071387336,0.50310373,0.51551265,0.029115887,0.19187653,0.37776986,-0.13106832,0.25384817,0.073846065,-0.09095138,-0.437874,0.4957644,-0.42972466,0.33058098,-0.07723701,0.0005984775,0.10638575,-0.09520394,0.3842999,0.7439011,0.057771597,0.18067154,0.08222739,-0.2582312,0.03870492,-0.3299963,0.33550435,-0.32736316,-0.1894976,0.596518,0.46523666,0.24094321,-0.14166561,-0.10436293,0.1033183,-0.019084398,-0.032194417,-0.020182954,0.10098435,0.030153776,-0.70566833,-0.40040135,0.6433341,0.32916003,-0.011681204,-0.030266438,-0.16319343,0.3361195,-0.15563083,-0.039324403,-0.060019184,-0.49474296,0.13055839,-0.23297802,-0.37704495,0.28308138,-0.4350265,0.32021254,0.1541306,-0.059777614,-0.4516081,0.20424436,0.3647106,0.5682885,0.03536531,-0.20734707,-0.31873918,0.0014565757,0.27303648,-0.26655373,-0.20295797,-0.37622467,-0.013396316,-0.66421026,0.30880335,-0.06624354,-0.24969295,0.20125988,-0.16015768,-0.04840256,0.5789779,-0.06823792,-0.08259193,0.15774365,-0.1298641,-0.27415746,-0.19834733,-0.21610744,0.22273234,0.20351502,-0.12624227,0.09173543,0.027419958,-0.27864882,0.15780203,0.095823206,0.2874251,0.29502693,0.24435772,-0.292603,-0.079091296,-0.039757438,0.5813819,-0.05788378,-0.0072407895,-0.22022417,-0.36695144,-0.11288323,0.088261366,-0.2216144,0.11559475,0.06894721,-0.42349476,0.7523457,0.12224739,0.9037784,0.02880654,-0.2308857,-0.056923848,0.47506112,0.026932253,0.043518357,-0.39701006,1.0818132,0.6028946,-0.23718642,-0.31247085,-0.29830346,-0.07289859,0.04368039,-0.18845494,-0.42552444,-0.034555282,-0.5749118,-0.39562538,0.18271838,0.3314382,0.06538621,-0.013056149,0.09015084,0.14854418,0.10803662,0.15283643,-0.5439698,0.11038574,0.25361988,0.27530903,0.14620273,0.083498314,-0.4512115,0.42073584,-0.5252019,0.04395017,-0.29499006,0.076342866,-0.054557443,-0.13460433,0.14908382,0.03470226,0.2880952,-0.27972084,-0.11234482,-0.14620633,0.381403,0.16064633,0.20744184,0.7677539,-0.11260922,0.16719782,0.15702297,0.55425817,1.0866134,-0.20357434,-0.12117605,0.48967028,-0.23604794,-0.6717998,0.169737,-0.27061886,0.08440889,-0.2179935,-0.4034541,-0.42874813,0.25065354,0.053965908,-0.017707732,0.20885767,-0.46795136,-0.2583994,0.3212283,-0.25658444,-0.2956414,-0.3228697,0.045604263,0.6635276,-0.2165386,-0.1277129,0.050889738,0.2633417,-0.25613874,-0.6187831,-0.15017454,-0.18506674,0.2682427,0.17348294,-0.11150094,-0.041996695,0.07996159,-0.26304027,0.24139714,0.40398842,-0.37390688,0.05837544,-0.1827489,-0.14074111,0.6271681,-0.31985217,-0.053607773,-0.74266785,-0.4762954,-1.0055196,-0.34571838,0.67399114,-0.018276375,-0.025889557,-0.37813753,-0.12907088,-0.02287039,-0.12622988,-0.13861719,-0.4153661,0.36155096,0.04383702,0.4305757,0.023384247,-0.78645986,-0.13578174,0.13470562,-0.43306494,-0.5963316,0.6866149,-0.07647101,0.6336538,-0.025531352,0.060501847,0.5593791,-0.61275446,0.0725903,-0.26229224,-0.16366088,-0.64579266,0.10675849 -947,0.4620255,-0.3336522,-0.38747963,-0.14516695,-0.27364653,0.0923826,-0.025304334,0.7525312,0.21343899,-0.14352667,-0.19283526,-0.1250948,0.1530096,0.51712203,-0.10478521,-0.43011,-0.057805378,0.09809502,-0.6587363,0.49454,-0.35267323,0.0063921395,-0.17785197,0.43838373,0.4078899,0.2495947,-0.06376739,0.13864547,-0.0133784,-0.035402756,-0.12652084,0.29492408,-0.27617168,0.21002564,-0.053292606,-0.2198422,-0.17275156,-0.6562749,-0.36370867,-0.7189557,0.5175917,-0.76828766,0.41705757,-0.10634501,-0.2115102,0.4898763,0.14235114,0.31200266,-0.320626,-0.32379696,0.14502588,0.061991308,0.0035472834,-0.1967192,0.05178293,-0.09963727,-0.49053332,-0.09486472,-0.27467564,-0.33787948,-0.25208634,-0.0052981805,-0.2846954,0.0664775,0.08392501,0.6500317,-0.35698277,0.27167416,0.18544905,-0.13554482,0.092649296,-0.6138266,-0.19784838,0.0053483224,0.3112421,-0.1006944,-0.26384044,0.38820055,0.24781606,0.12884717,-0.18916747,-0.07200415,-0.23680128,-0.07340648,0.07459148,0.5142117,-0.12972094,-0.6939188,-0.017384373,0.12494621,-0.019605644,0.26905677,0.25980493,-0.10225087,-0.2326054,0.04360817,-0.1632142,0.43545672,0.329361,-0.15662383,-0.18663722,0.40582812,0.49226445,0.30725527,-0.12493282,-0.24709596,-0.033198114,-0.56485265,-0.025931166,-0.1808917,-0.1958217,0.43222365,-0.093251295,0.32811072,0.6245361,-0.0057402113,-0.11024892,0.12890564,0.14541107,-0.13060649,-0.3635171,-0.2949714,0.18396963,-0.3593933,0.28675237,-0.013508008,0.6582568,0.28590736,-0.6196285,0.36900395,-0.5288063,0.14098826,-0.13739344,0.22912754,0.726842,0.39243367,0.29503042,0.60526025,-0.25723454,0.061769065,-0.16808893,-0.31763092,-0.029611556,-0.19554034,0.08723442,-0.60565203,0.023424588,-0.06790661,-0.15736485,0.18923858,0.15432447,-0.47720015,-0.088415846,0.12931028,0.81468934,-0.26395994,-0.120891996,0.86008996,1.0936083,0.9032142,-0.023192255,0.80767214,0.08214359,-0.19050018,0.4418387,-0.18588161,-0.64379543,0.25172764,0.4564047,-0.043291263,0.11018184,-0.10830032,-0.0015512086,0.33789495,-0.2544146,0.008938184,0.012336057,0.27258748,0.4476647,-0.12042691,-0.39851686,-0.36356786,-0.19148803,0.006088972,0.024127774,0.18354024,-0.14690992,0.49923265,-0.09721657,1.7816083,0.17438558,0.0764531,0.11851385,0.5401267,0.22728752,-0.264592,-0.373758,0.33791244,0.3892418,0.11924553,-0.60275686,0.40308857,-0.21858343,-0.38021776,-0.042133763,-0.5625463,-0.1821743,-0.022614025,-0.3092955,-0.17560251,-0.1489308,-0.118762165,0.44872338,-3.2687507,-0.19193453,-0.07233132,0.34267914,-0.21131057,-0.32831177,0.09657158,-0.43616915,0.41079757,0.2890731,0.5317541,-0.46617648,0.27423382,0.2708876,-0.7264821,-0.2221811,-0.45651194,-0.11670187,0.15684032,0.32672197,-0.1069539,-0.08170243,0.1063056,0.22960837,0.48773143,0.045818754,0.16023827,0.373743,0.33968312,-0.09135453,0.6126017,-0.4057255,0.5191308,-0.24739161,-0.10543333,0.120966986,-0.24698733,0.22374307,-0.21955885,0.13788454,0.5946398,-0.36714104,-1.0518993,-0.5632556,0.11855741,1.1618663,-0.25330368,-0.300283,0.37370422,-0.64131653,-0.05995264,-0.15888868,0.39963058,-0.028616332,-0.18761803,-0.6337238,0.13505092,-0.018699776,-0.09010513,-0.045292266,-0.28012672,-0.3837853,0.6126633,0.076435484,0.52709824,0.23192427,0.052338798,-0.3749884,-0.27740702,0.09123802,0.3681952,0.34547094,-0.010213063,-0.0066423784,-0.122580715,-0.36791593,-0.21662313,0.15155905,0.5249915,0.41356128,-0.028508268,0.30757868,0.12435711,-0.052348163,0.08443442,-0.1309641,-0.15515406,-0.13671125,-0.046035,0.4835365,0.668126,-0.111535564,0.64429945,7.381806e-06,0.16089013,-0.029426757,-0.41869995,0.535388,0.8805009,-0.1886184,-0.4285041,0.40762097,0.35905713,-0.1510007,0.24366692,-0.25599423,-0.063298024,0.6636188,-0.27909103,-0.37078416,0.12808064,-0.13203011,-0.049912576,-0.68183327,0.06725981,-0.32930377,-0.611992,-0.40523928,-0.07719779,-3.0338864,0.097256035,-0.17908737,-0.2984608,-0.2263284,-0.27889362,0.0036922486,-0.5999332,-0.58251417,0.29981977,0.08336219,0.8779498,-0.12963778,0.017918877,-0.14682773,-0.2969003,-0.28556368,0.08026947,-0.080080524,0.49321076,-0.023156065,-0.40258107,-0.046569373,-0.028672457,-0.6226212,0.13498323,-0.44802874,-0.2512191,-0.11237425,-0.5387546,-0.37340996,0.6634341,-0.18729459,0.11614284,-0.08954922,0.03000512,-0.080001995,0.21131016,0.031113936,0.12720877,0.087272644,-0.08271174,0.22608946,-0.20368645,0.24305223,0.06886157,0.39289874,0.117659084,-0.01223212,0.35649157,0.44335905,0.6939065,-0.059240304,0.7603314,0.4276388,-0.005151932,0.2842422,-0.3598803,-0.30550286,-0.27278602,-0.23915738,0.18017404,-0.296124,-0.36614484,-0.21523578,-0.4074282,-0.61689657,0.4324387,0.09711846,0.1936159,0.007236202,0.17727591,0.65745604,-0.33777648,0.088644296,-0.008962672,-0.055490196,-0.6747738,-0.0686721,-0.51546794,-0.38658148,0.100185394,0.7365329,-0.32699093,0.025202077,-0.10596996,-0.44890344,0.18966678,0.1715531,-0.13418707,0.34129253,0.17890249,-0.30116066,-0.6076256,0.38866812,-0.24485157,-0.2552857,-0.5482169,0.36884242,0.31434616,-0.41720062,0.6355343,0.16136946,-0.05743474,-0.39842063,-0.33641678,-0.119100384,-0.011036603,-0.18395633,0.19003569,0.2589506,-0.84286696,0.40813163,0.3939161,-0.22011214,-0.814268,0.5048171,-0.03774563,-0.3593661,-0.06303402,0.1712756,0.44719124,-0.00014650592,-0.3020299,0.14843409,-0.44073015,0.22358707,0.006031314,0.0055534793,0.17678261,-0.13301036,0.0017841,-0.64588267,0.0663406,-0.36064127,-0.27573916,0.31071785,0.15324256,0.27929145,-0.031295035,0.10844188,0.24309501,-0.25104374,0.10885258,-0.16226722,-0.34906787,0.19551413,0.44020584,0.44759914,-0.44181272,0.53174806,0.0027213509,0.016610801,0.31831792,0.011220806,0.28857735,0.16619538,0.41400072,0.07926467,-0.31905046,0.22103374,0.65293133,0.13043298,0.29512593,0.031616144,-0.026226558,0.010448864,0.019671323,0.21351221,0.100937255,-0.53197396,0.12607032,-0.28741857,0.10706796,0.5848037,0.18103038,0.04660966,0.012966385,-0.5129118,-0.05738216,0.20820533,0.03484703,-1.1860902,0.52227604,0.22992395,1.084044,0.36022732,0.010224302,-0.20414028,0.77072513,0.090475455,0.15354219,0.3072787,-0.012638152,-0.49396423,0.54366666,-0.90804,0.649627,0.09623839,-0.12367415,0.048005626,0.044878226,0.31724685,0.6140284,-0.18868293,-0.06605168,0.1390041,-0.43583834,0.2369047,-0.469012,-0.1850802,-0.62064964,-0.25058043,0.3543279,0.50853336,0.29157048,-0.1600356,0.05225003,0.15435672,-0.15377559,0.081903495,0.14145502,0.016366767,-0.034683388,-0.784422,-0.14413546,0.3332283,-0.0692245,0.39372367,-0.038823403,-0.034876265,0.29066837,-0.1713092,-0.0643834,-0.07301992,-0.62644136,0.15247776,-0.31163815,-0.42732388,0.43496567,-0.05975406,0.23441403,0.2554697,0.0629773,-0.1047393,0.57423955,-0.13479562,1.0121473,-0.17027651,-0.16106087,-0.3426369,0.13796307,0.08337101,-0.13392518,0.1075051,-0.3791322,-0.1678246,-0.41760942,0.6021069,0.08065455,-0.3084594,-0.10306204,-0.18991295,0.1813185,0.55615354,-0.21011013,-6.8293166e-06,-0.39880323,-0.28961036,-0.27313542,-0.32285628,-0.08150008,0.30867767,0.24174435,0.15542592,-0.12962396,0.003605939,-0.026625248,0.57180136,-0.1275699,0.5017081,0.21703003,0.13871692,-0.066954635,-0.27442712,0.30181462,0.4905681,0.07194873,-0.24418351,-0.48753884,-0.47574407,-0.32764876,0.13204397,-0.03474429,0.5411777,0.036752254,-0.06692138,0.4456964,-0.24932994,1.0506829,-0.00093575165,-0.3386407,0.23607701,0.45372853,-0.027645338,-0.15674004,-0.15038344,0.6755371,0.28385904,0.121453844,0.004822002,-0.31155604,0.042443596,0.31973416,-0.20584208,-0.08304921,-0.037247226,-0.43920198,-0.28888667,0.043298006,0.12801851,0.45172375,-0.19349553,0.039506946,0.28045604,0.05797885,0.13351148,-0.27478462,-0.1909357,0.33408102,0.18296582,-0.044213388,0.047189217,-0.5887724,0.4583373,-0.36727974,0.10399104,-0.25376394,0.23919128,-0.26452065,-0.23051938,0.23309955,0.14639364,0.31427124,-0.16457035,-0.39394924,-0.29924864,0.49481204,0.2427095,0.051819555,0.3667819,-0.23508745,-0.08471397,0.12761012,0.4728389,0.5064235,-0.17654863,-0.06051796,0.22389992,-0.44973162,-0.6236111,0.48437345,-0.07472068,0.31914705,0.20430185,0.22019173,-0.66556835,0.28098553,0.3065853,0.12579955,-0.17257258,-0.61390936,-0.28614515,0.31762916,-0.2987817,-0.14714424,-0.43812215,-0.042460956,0.44713226,-0.21905349,-0.23784201,0.1437988,0.11332765,-0.02206282,-0.31016794,-0.061801538,-0.4458211,0.27117598,-0.19824535,-0.32419878,-0.38686484,-0.034546643,-0.47337145,0.33827877,-0.33473304,-0.25956914,0.07946663,-0.12578672,-0.106188424,1.0379083,-0.29007137,0.2285352,-0.49470586,-0.4813035,-0.58723485,-0.3524616,0.41226763,-0.04699522,0.010728375,-0.7367169,-0.052794613,-0.07887439,-0.18327525,-0.21477446,-0.33251607,0.34617144,-0.012824496,0.2879058,-0.022016622,-0.73485315,0.37722155,0.016437503,-0.12979089,-0.58463866,0.34874216,-0.09502939,0.67655176,-0.0760464,0.14136289,0.19870354,-0.15849994,-0.21747945,-0.25671098,-0.24574691,-0.40024525,0.14854406 -948,0.44238234,-0.34718844,-0.5392932,-0.2041743,-0.21466017,-0.16583458,-0.24309577,0.42883074,0.32792354,-0.16554861,-0.2039463,-0.034506526,0.22359963,0.46817428,-0.1348245,-0.6529674,-0.09818392,-0.02590145,-0.57215345,0.63689065,-0.45315552,0.34039852,-0.011535439,0.26288894,0.3716399,0.45797917,0.13824588,-0.15482713,-0.021228248,-0.21019767,-0.03623452,0.106317475,-0.7627735,0.19548626,-0.35039726,-0.33464983,0.10372307,-0.52948993,-0.42369998,-0.8084268,0.15474203,-0.9740566,0.58015245,-0.056767236,-0.11339109,-0.058147408,0.12428904,0.42731836,-0.43467024,0.05621754,0.2118606,-0.09464862,-0.09650319,-0.21641137,-0.221988,-0.38207456,-0.51081795,-0.20918733,-0.7434239,-0.28458703,-0.33961886,0.076904185,-0.3861654,-0.10125101,-0.13292956,0.28387597,-0.59199494,0.08802893,0.17829861,-0.14115326,0.34650552,-0.48139098,-0.04711355,-0.18864313,0.3948659,-0.11918753,-0.21791525,0.41396296,0.31103316,0.20797259,0.12717189,-0.2840408,-0.25089228,-0.22232094,0.28021902,0.53005415,-0.01023125,-0.5894531,-0.3293266,0.14327067,0.28630224,0.5578782,0.15042341,-0.50789285,0.029635035,-0.109387904,-0.21828853,0.7738648,0.5845347,-0.19237381,-0.2716973,0.37848967,0.5530472,0.52128667,-0.2433392,0.05370202,-0.023509948,-0.48854607,-0.14430319,0.1847815,-0.19363286,0.77798,-0.054390308,-0.04673456,0.86690325,-0.19564065,-0.07833706,-0.046431065,-0.028999375,-0.26594567,-0.36251113,-0.05176073,0.058677413,-0.62282825,0.36191294,-0.25329503,0.68441206,0.30847988,-0.82600874,0.48257542,-0.5653766,0.13588221,0.032297947,0.5643247,0.52470267,0.46446553,0.36930764,0.9067179,-0.3275303,0.24409026,0.031508394,-0.58735794,-0.17160663,-0.25370735,-0.09600557,-0.41961357,0.10213336,-0.057181384,0.06733175,-0.07132107,0.5004457,-0.39568788,-0.15794848,0.25620556,0.8634466,-0.37637627,-0.104223065,0.8779822,1.1341895,1.0406426,0.007862318,1.3221928,0.15396847,-0.12965892,0.10983689,-0.11235377,-0.7632643,0.092386745,0.4569031,-0.22775736,0.2105999,-0.02520536,-0.011359437,0.05930743,-0.3622645,0.05852851,0.113155864,0.5116825,0.1373656,-0.28028172,-0.36079475,-0.09410074,-0.03187261,0.037990972,-0.07006819,0.15392183,-0.3524309,0.16523758,0.042723253,1.3165941,-0.15197521,0.005850537,0.116944976,0.7459937,0.29121575,-0.08973923,-0.06684875,0.5595677,0.51932037,-0.08908506,-0.78285044,-0.0058459584,-0.4800491,-0.4763729,0.018548848,-0.31718442,-0.22578959,-0.037596997,-0.314907,0.15415335,-0.07971459,-0.26722506,0.72792745,-2.6791086,-0.37136194,-0.26302043,0.30766156,-0.38623,-0.124356456,-0.080178745,-0.4859154,0.36545533,0.2285979,0.5956705,-0.6785112,0.49741372,0.5362815,-0.5553967,-0.047176298,-0.6324033,0.0016024654,0.03327229,0.4736394,0.0032708251,0.103761666,0.006034233,0.099339984,0.86125636,0.2314309,0.2429433,0.5566702,0.48426282,0.07192559,0.62793756,-0.19155149,0.62625325,-0.32114565,-0.011206567,0.31968638,-0.2943468,0.5340437,-0.28630504,0.124203674,0.55526316,-0.47779274,-0.9891544,-0.5242695,-0.5545343,0.99197143,-0.54023385,-0.48895204,0.38365415,-0.09241115,0.03207066,0.0337229,0.64731765,-0.013639894,0.25688493,-0.52642,-0.028329724,-0.12421945,0.03728554,0.023061378,0.07480201,-0.16557862,0.85990906,0.009301603,0.6651546,0.31130898,0.15720673,-0.1665933,-0.33819398,0.25657752,0.76153475,0.37218368,-0.10533606,-0.27167702,-0.1481056,-0.21735393,-0.33882925,0.09520037,0.72682226,0.79665923,-0.29683936,0.056422368,0.3811983,0.15983061,-0.008358354,-0.15895526,-0.36882523,-0.0833428,-0.07604831,0.38268632,0.7986166,-0.2399703,0.614249,-0.30660966,0.060188305,0.03879058,-0.5472594,0.56931645,0.5745915,-0.22021975,-0.11672742,0.2836204,0.5450805,-0.5485989,0.56874496,-0.5242531,-0.057368625,0.8599498,-0.15270087,-0.46515933,0.26935452,-0.31708014,-0.09401748,-0.9124279,0.3175279,-0.29886225,-0.5682501,-0.05455506,-0.16512989,-3.1262445,0.15313147,-0.08378113,-0.22301084,-0.5549723,-0.015637165,0.116581224,-0.5492246,-0.93816274,0.328598,0.1754712,0.54187053,-0.12769532,0.14654471,-0.29514846,-0.058207795,-0.19166708,0.27387294,-0.08035426,0.34699926,-0.30136478,-0.40154517,-0.30851856,0.10537165,-0.68465984,0.279364,-0.55752796,-0.34970692,-0.044935223,-0.80967903,-0.12508106,0.5468578,-0.52363724,-0.08770242,-0.07684792,-0.030674024,-0.38949403,0.12050295,0.1366651,0.23990026,0.0478182,-0.08258379,0.08329146,-0.27155182,0.5297762,-0.017265799,0.38086155,-0.22166458,-0.19163942,0.013524017,0.3776744,0.5996959,-0.22388038,1.224183,0.1986874,-0.117615126,0.36047757,-0.27167967,-0.24221095,-0.89257044,-0.40584078,-0.23393846,-0.3600802,-0.69569904,-0.0422048,-0.19632055,-0.8108751,0.53659725,0.23168169,0.6167539,0.054538425,0.16351576,0.34888184,-0.22400211,0.068089396,-0.049236044,-0.06262045,-0.5376443,-0.28663853,-0.6837644,-0.4689431,0.19284667,0.6419701,-0.3067579,-0.18294317,-0.19844346,-0.4357724,0.08223217,0.16776238,0.07027591,0.2981389,0.5088078,0.06958928,-0.6355339,0.3375968,0.09126841,-0.12246737,-0.5049463,0.07805737,0.7647322,-0.6960011,0.8083094,0.20630838,0.03952033,0.018549794,-0.6652677,-0.15513967,-0.056084014,-0.10182684,0.2502809,0.032108024,-1.007545,0.39578837,0.34294403,-0.6122498,-0.7974195,0.63827,-0.0791669,0.05343851,-0.12890019,0.36639234,0.34958404,-0.23146774,-0.35434064,0.263011,-0.32364836,0.34577143,0.06507345,-0.19254127,0.152461,0.11729691,-0.4184983,-0.85985184,0.049058285,-0.45420015,-0.17357534,0.35587958,-0.24142309,-0.17967194,0.023620032,0.32037136,0.2748629,-0.39879036,0.14874618,-0.054691255,-0.44667074,0.35276562,0.50852466,0.49788934,-0.4213007,0.7076401,0.28279507,-0.15656155,0.30871543,0.26995662,0.34732273,-0.03478034,0.35270125,0.27421507,-0.060105205,0.16431281,0.8782477,0.28498724,0.6041093,0.30112812,-0.16035953,0.36714697,0.23494434,0.29562646,0.05291568,-0.4904904,0.16839188,-0.096827984,0.1082514,0.5534117,0.30444148,0.30150363,0.15645711,-0.2006049,-0.1681999,0.41477445,-0.052752208,-1.259515,0.3389261,0.25426427,0.84619063,0.5261001,0.15868813,-0.006048192,0.37169316,-0.073733866,0.0035486235,0.5619866,-0.009150657,-0.56313,0.7151283,-0.62618643,0.4021621,-0.09987909,0.073875844,0.38496226,0.27298835,0.45073786,0.94737583,-0.2443607,-0.111826874,-0.13773333,-0.070889704,-0.047853634,-0.41996014,0.06419352,-0.34227875,-0.4991497,0.86199325,0.5620798,0.35391062,-0.060859416,-0.110021956,0.0077069295,-0.19845909,0.14520808,-0.013412771,-0.054567575,0.0028548485,-0.63732886,-0.2653885,0.6965107,-0.04950945,0.07112944,-0.20072174,-0.18528566,0.38855952,-0.37737033,0.094645314,0.04326384,-1.0156612,0.08682457,-0.17111216,-0.46104977,0.21428071,-0.120890975,0.20247053,0.14139934,-0.059513472,-0.137733,0.29160535,0.07172835,0.95963365,-0.086357735,-0.29105315,-0.30206835,0.08789127,0.28692397,-0.30453002,0.18350388,-0.27575013,-0.20572992,-0.5542358,0.5660087,-0.0969001,-0.4289367,0.11242816,-0.29804942,-0.18996137,0.6707993,-0.052945927,-0.19794936,-0.12508768,-0.3259802,-0.5081994,-0.25952718,-0.23209824,0.21673483,0.34578416,-0.068713896,-0.07287712,-0.099978715,0.09801883,0.29773042,-0.06888764,0.48181096,0.12435122,0.17343968,-0.0665144,-0.11402193,0.3484065,0.44956034,0.2728445,0.0004947009,-0.062352523,-0.23044586,-0.39681414,-0.04532502,-0.16762462,0.35218918,0.026736693,-0.29188415,0.7173927,0.123485476,1.3015915,0.07473211,-0.4612685,0.20259327,0.68106055,-0.24594821,-0.066474885,-0.40205514,1.0814555,0.65485454,-0.14822078,-0.03616434,-0.57612574,-0.17522009,0.31691426,-0.37539205,-0.07376022,0.1466818,-0.34545854,-0.21699828,0.24269728,0.24495818,0.16240965,-0.110700935,-0.15027766,0.22737475,0.17132382,0.4576663,-0.7629549,-0.2696709,0.19419679,0.25487986,0.12069594,0.008000309,-0.27505013,0.32337278,-0.6980918,0.2866308,-0.49440488,0.057526555,-0.4342825,-0.4234622,0.15676744,-0.04401362,0.37099406,-0.27151257,-0.41740313,-0.20853972,0.40471762,0.018940398,0.21129256,0.6253897,-0.29305384,0.004470904,0.038661607,0.6535607,1.0366927,-0.40277436,-0.03292599,0.4682102,-0.665254,-0.71695095,0.4006216,-0.45432308,0.18452138,-0.07037933,-0.44498947,-0.6082501,0.24231838,-0.13704816,0.043226145,0.11375336,-0.79328865,-0.10243575,0.346626,-0.13664913,-0.34115627,-0.11399,0.32861307,1.0825824,-0.35606918,-0.4736062,0.21239094,0.0120460335,-0.28634927,-0.5910837,-0.04648386,-0.049154803,0.29581425,-0.10766372,-0.2820055,-0.12356958,0.26788935,-0.5153215,-0.0274482,-0.0032971988,-0.38203153,0.1709521,-0.06516634,-0.11604491,0.97012305,-0.5309201,-0.14304763,-0.77564925,-0.52580893,-0.7369473,-0.3847108,0.11942003,0.19436298,-0.003412637,-0.39180744,0.23818198,-0.06555296,-0.15774661,0.116979904,-0.58179927,0.40127438,0.13654368,0.5505834,-0.3523038,-1.1809319,0.23628344,0.34453905,0.0064638094,-0.8724607,0.55527675,-0.06695459,0.7076709,0.08635875,-0.073316485,-0.030721588,-0.44765395,-0.10238615,-0.39588073,0.08920557,-0.7561958,0.38374278 -949,0.5492302,-0.049561944,-0.46312925,-0.07646441,-0.5156564,-0.04083627,-0.124731004,0.061108913,0.27962333,-0.4985432,-0.2647853,0.070525475,-0.31571573,0.17923962,-0.003227536,-0.57520145,0.03756895,0.38912424,-0.50278765,0.74829954,-0.21495032,0.40478912,0.01016794,0.20540091,0.09927148,0.25102016,0.11091689,-0.15332845,-0.31258592,-0.18461367,-0.08661018,0.1477757,-0.5412425,0.5356806,-0.07622445,-0.3102245,-0.056609817,-0.4461923,-0.3104528,-0.7289035,0.32316226,-0.7558444,0.46866375,-0.0406714,-0.1334066,-0.022902135,0.12721938,0.44341108,-0.05976314,-0.025931876,0.30721086,-0.26810813,-0.30418745,-0.28597134,0.04854735,-0.39291653,-0.5554073,-0.102290586,-0.23305702,-0.12902442,-0.2913054,0.28687832,-0.26034397,-0.066683814,-0.06857141,0.65112066,-0.5095276,0.24699904,0.38297606,-0.23982142,0.048856873,-0.71578735,-0.04879691,-0.0784688,0.43272465,-0.022694204,-0.1947564,0.3850012,0.31915122,0.5379316,0.23341206,-0.14620157,-0.14462219,-0.012504967,0.15776624,0.46160534,-0.3343616,-0.1437056,-0.07669441,-0.04416136,0.48607573,0.06591036,0.17328086,-0.2780445,-0.04882749,-0.009286478,0.015020392,0.2727271,0.399856,-0.17066063,-0.13250639,0.42949772,0.6266977,0.070994146,-0.035439532,0.13244979,-0.06695824,-0.323038,-0.16086413,-0.041701395,-0.17897962,0.27567202,-0.10247762,0.21273622,0.7648076,0.013543755,0.10990782,0.24570219,0.07831403,0.20362265,-0.18733184,-0.31304693,0.34036025,-0.63512343,0.063751794,-0.14978933,0.6969206,0.009871108,-0.4908782,0.40927538,-0.50185215,0.15288989,-0.10711872,0.50517553,0.71822834,0.5262296,0.3284824,0.82530034,-0.5330766,0.12074101,0.1277725,-0.1692017,0.03027254,-0.102337815,0.18122233,-0.51591533,0.06568682,-0.07484351,-0.11696947,-0.037788935,0.17643236,-0.7471089,-0.14664732,-0.01668345,0.9647342,-0.29819688,-0.007950847,0.84107786,0.98355615,1.0073601,-0.022988483,1.2175757,0.26565057,-0.34042206,-0.20189261,-0.30205998,-0.59115475,0.17482302,0.37124127,-0.25224233,0.18433905,0.25591755,-0.049536068,0.53469527,-0.52900285,-0.12227255,-0.31653723,0.31594896,-0.0049184687,-0.17589696,-0.58328027,-0.14914441,-0.039527632,0.008018515,0.06871324,0.33313447,-0.21898091,0.39958125,0.099544235,1.4179971,-0.31860182,0.03366915,0.085989304,0.31569406,0.09077974,-0.22425999,0.047749903,0.13630196,0.349513,-0.056085322,-0.47508934,0.013407017,-0.3490846,-0.40636858,-0.26180226,-0.17620452,-0.11282366,0.1466914,-0.16107523,-0.3847607,-0.1142171,-0.34987697,0.42984778,-2.2328768,-0.18543836,-0.33904818,0.5252939,-0.2568016,-0.22438608,-0.020506442,-0.46163464,0.20688334,0.17405793,0.5399991,-0.60400903,0.5436641,0.47792754,-0.79377645,-0.13186665,-0.5518466,0.0060428423,0.06389516,0.25633425,-0.033489846,-0.24375822,-0.030300213,0.119103454,0.4083722,-0.026589552,0.1279998,0.51251423,0.349782,0.11454489,0.24461296,0.14249708,0.6368629,-0.27996573,-0.24861825,0.46559468,-0.25663212,0.21130745,-0.2563134,0.0036139744,0.4489255,-0.40659326,-0.6709188,-0.79592294,-0.27536133,1.1194361,-0.050239626,-0.5136684,0.11606591,-0.2765634,-0.25376484,0.019528184,0.3501266,-0.045514435,-0.075361185,-0.8878892,-0.040006287,-0.05199018,0.08265013,0.07088379,-0.23668242,-0.5527309,0.7876605,-0.25189295,0.41729742,0.3781673,0.36695686,-0.19342612,-0.28861216,0.031719975,1.0201699,0.59174854,0.12572666,-0.16065101,-0.09204217,-0.3547656,-0.284689,0.03889079,0.49080357,0.5511323,-0.13535967,-0.056949854,0.3422257,-0.016073164,0.059098814,-0.23618521,-0.4796152,-0.22988322,-0.042954665,0.6403576,0.5573819,-0.11781842,0.43653414,-0.017927732,0.17881945,0.034801446,-0.5476341,0.4518972,0.9022718,-0.35442188,-0.30585957,0.55631167,0.28899315,-0.22673523,0.39771408,-0.5450813,-0.27220556,0.27496153,0.03055409,-0.62469393,-0.063549,-0.39693502,0.355637,-0.6513662,0.753224,-0.5338317,-0.8038305,-0.5864817,-0.049899537,-1.7070726,0.29612255,-0.46245965,0.032059826,-0.2039728,-0.03689608,0.031704847,-0.6211082,-0.46886352,0.2690467,0.029146884,0.5741,-0.080250606,0.118949115,-0.1304258,-0.44963837,-0.07311891,0.04251151,0.13946126,0.3488963,-0.04727739,-0.414505,0.23446456,0.11031831,-0.24725291,-0.050026953,-0.77498627,-0.5731617,-0.21142605,-0.5494484,-0.18913592,0.67619324,-0.46282881,0.14546093,-0.46144268,0.12269014,-0.19349541,0.16103351,0.025051503,0.25287637,0.04536667,-0.139667,-0.16004106,-0.17832062,0.3847311,0.043570675,0.4436802,0.16448641,-0.20006071,0.21692525,0.5414402,0.67142135,-0.06378708,0.94804233,0.50942856,-0.31270462,0.25647724,-0.17810321,-0.32441905,-0.6480796,-0.47991022,0.36503512,-0.4818154,-0.37739578,0.10916914,-0.52807087,-0.9774141,0.6260604,0.07593458,0.26443467,0.028441599,0.22002898,0.5008958,-0.17014968,-0.100811355,0.011896719,-0.19279204,-0.7144707,-0.098657526,-0.6850109,-0.4384203,0.23709263,1.2228364,-0.4387834,0.23606266,0.42048955,-0.2736275,0.15589312,0.11566001,-0.12664554,-0.06194162,0.5199269,-0.11361348,-0.6362892,0.28668618,-0.07623441,0.0632481,-0.5629967,0.45458058,0.69829226,-0.5604282,0.5874332,0.3432662,-0.053358722,-0.16912566,-0.5481154,-0.30805558,-0.057052292,-0.40856,0.3321158,0.236027,-0.47106007,0.24149708,0.4484453,-0.3050185,-0.75604886,0.37292957,-0.11437089,-0.073095165,0.14709918,0.33585438,0.17654197,-0.007150101,-0.04807263,0.26357886,-0.44211176,0.52680504,0.09459095,-0.26830617,0.103298746,-0.34646508,-0.46752796,-0.8925191,-0.037492484,-0.5382439,-0.3215626,0.14796464,0.07375695,0.053218756,0.2193989,0.4261224,0.47596923,-0.15276578,0.02091791,-0.1768849,-0.50071615,0.3861242,0.44025904,0.39509335,-0.41036555,0.55244786,0.008804237,-0.15086548,-0.20228551,0.098501965,0.5137497,0.12427479,0.51069456,0.04954757,-0.06718055,0.18799977,0.9130866,0.049819034,0.3864765,-0.06685247,-0.052438486,0.10000168,0.057572454,0.31467554,-0.015525739,-0.60348135,0.15299277,0.010821112,0.08127958,0.4284685,0.24766131,0.2542683,-0.1461711,-0.46015126,-0.106917344,-0.0092504425,-0.008313541,-1.433721,0.51646477,0.06655485,0.7229819,0.36505562,0.060468644,-0.0037167121,0.8754691,-0.06402917,0.15236239,0.18012755,-0.34148073,-0.38479137,0.32154235,-0.6652599,0.22500862,0.06156199,0.10381794,0.039839048,0.020540953,0.24026667,0.7227403,-0.19849603,-0.10388071,-0.45892826,-0.2985528,0.10484957,-0.27026504,0.35465616,-0.50543123,-0.45592335,0.68833125,0.67862403,0.43946955,-0.2836823,0.15116458,0.043822475,-0.2972764,0.33409905,0.05085475,-0.038910363,0.05424494,-0.5149008,-0.065137126,0.36680323,-0.20368907,-0.045731395,0.010982773,-0.05608424,0.17937656,-0.096454464,-0.06324182,-0.08690597,-0.64365345,0.16444299,-0.41570425,-0.2537938,0.38049528,0.17794445,-0.098867536,0.099335074,-0.010349406,-0.14423688,0.5106239,-0.09863404,0.70198786,0.24831986,-0.2405698,-0.27443394,0.28712907,-0.060104568,-0.10470561,0.31926912,-0.23405151,0.23266782,-0.71765864,0.51483727,0.045060735,-0.32837987,0.23906006,-0.23365977,-0.07317968,0.3931064,-0.31530327,-0.18153225,0.17263658,-0.3530007,-0.1712468,-0.24728402,-0.13052198,0.091929756,0.22157459,0.07152867,-0.28792888,-0.22294874,-0.40510818,0.39783472,0.14660494,0.32487813,0.42577443,-0.013577261,-0.5182331,-0.13015844,0.2522786,0.42251232,-0.0827815,-0.19794032,-0.38146415,-0.51356745,-0.48148298,0.3462507,0.0013236573,0.44215918,-0.102204934,-0.19391097,0.92536294,0.05149927,1.3362439,0.009263756,-0.1622359,-0.11257323,0.68279696,-0.025861021,0.03353523,-0.24394076,0.85472447,0.6266371,-0.07965292,0.003994501,-0.46260804,-0.09779949,0.31407264,-0.20888694,-0.0073880935,0.08834797,-0.74042034,-0.35928196,0.28353903,0.29244393,-0.046321776,0.03777346,0.21755826,0.3375146,-0.074058704,0.28370416,-0.623843,-0.3008665,0.23339102,0.2998496,0.006273757,0.1454071,-0.56332827,0.35058743,-0.7027159,0.14135358,-0.17099145,0.052887898,-0.16370293,-0.2438616,0.29924226,0.06554242,0.50254214,-0.53455526,-0.3198624,-0.08123745,0.38516262,0.3185648,0.031016057,0.75263005,-0.35909632,-0.043420196,0.21924068,0.4630068,0.911426,-0.17209862,0.08709778,0.3809927,-0.47348282,-0.55018634,0.23410133,-0.15461884,-0.12958908,0.034363758,-0.44947347,-0.39253792,0.10972215,0.29385695,-0.18893115,0.09278006,-0.8411112,-0.032997157,0.20917416,-0.40268582,-0.10350854,-0.24158199,0.19523753,0.53951204,-0.25452235,-0.4364228,-0.092418216,0.30536288,-0.15070046,-0.6411435,-0.06917689,-0.41183805,0.3902332,0.03035043,-0.39497873,-0.21159537,-0.14416695,-0.4538369,-0.03227914,0.25262946,-0.35709924,0.05915318,-0.24297394,-0.045032926,0.6011794,0.007899036,0.08755638,-0.44363952,-0.2703204,-0.86295176,-0.2853384,0.18803619,0.24283946,-0.08153138,-0.6153596,-0.066166006,-0.1467231,0.15378918,-0.017962124,-0.3933761,0.32215446,0.21951653,0.42455357,-0.21359432,-1.0371603,0.1129305,0.10079361,-0.1250079,-0.5291169,0.41789514,0.15623832,0.90715396,0.080198534,-0.007860399,-0.04969446,-0.49523264,0.123926625,-0.3292332,-0.27718323,-0.7178475,0.04382428 -950,0.2352835,-0.23804252,-0.6472769,-0.11161259,-0.39294985,-0.045097966,-0.34566653,0.1274569,-0.096230656,-0.57613236,-0.11851693,-0.3336066,-0.054943834,0.5482524,-0.14048393,-0.54709285,-0.015317556,0.46599028,-0.58886224,0.26924625,-0.3637825,0.44794917,0.1997819,0.020352116,-0.11112997,-0.050602198,0.28734508,-0.18090843,-0.10787892,-0.50589657,0.010933474,-0.13879843,-0.9651162,0.29406604,-0.12032291,-0.68801713,-0.05455935,-0.28744414,-0.19481333,-0.85184646,0.18169184,-0.89981604,0.5829422,-0.19772291,-0.13757734,0.09950155,0.14834301,0.61174613,0.13757764,0.20607872,0.28409687,-0.4191883,-0.40535107,-0.14625484,-0.16028562,-0.45787242,-0.5175409,0.07525032,-0.61819625,-0.32043546,-0.41129133,0.124527,-0.40459427,0.19828296,-0.18853343,0.45441127,-0.16291492,-0.21366441,0.28888276,0.038563177,0.48363224,-0.5699993,0.086737126,-0.1726708,0.2657986,-0.46737787,-0.28214732,0.3427571,0.27379966,0.48307583,-0.03609797,-0.22600605,-0.19952375,-0.19867809,0.27324164,0.62228626,-0.09449208,-0.4123623,-0.12503886,0.025021456,0.33165446,0.04450661,-0.092998475,-0.4256628,0.04225442,0.16646862,-0.30368873,0.34575653,0.47574246,-0.11085733,-0.13137716,0.4602653,0.6127464,-0.039917585,-0.044039547,0.18890978,0.09597678,-0.4712509,-0.1809016,0.21041526,-0.039668825,0.4863739,-0.16107184,0.21640714,0.57326156,-0.4100999,-0.17968427,0.07551826,-0.059397385,0.0059765778,-0.05865111,-0.4754323,0.56995696,-0.76081103,0.08391888,-0.38316575,1.0647702,-0.014017392,-0.86517924,0.37941417,-0.6999776,0.16479617,-0.18072768,0.83933973,0.56666136,0.5985264,0.12768999,0.7018245,-0.38546443,0.09059899,-0.090925425,-0.4164712,-0.10341082,-0.41940704,-0.083460905,-0.3520579,-0.26676628,0.047063585,-0.13411279,-0.105998,0.56900305,-0.51975423,-0.2310362,-0.15833686,0.60300493,-0.46925655,-0.04534753,0.73856664,1.1771418,1.1034218,0.3088632,1.248442,0.2754493,-0.24723685,-0.28475317,-0.012747705,-0.789161,0.29202452,0.21583124,-0.55131894,0.19971772,0.09204218,-0.07471371,0.374261,-0.5752267,-0.050451655,-0.15884753,0.29943076,-0.2948044,-0.21070011,-0.27506098,-0.13073853,0.13647032,-0.023725217,0.09336099,0.31911102,-0.23379226,0.33209315,0.32952324,1.1276431,-0.15794186,0.15576555,0.14144395,0.08774356,0.0743188,-0.28153846,-0.041178625,-0.07406103,0.40603462,0.058907393,-0.55722123,-0.076528005,-0.10568786,-0.40467867,-0.43505827,-0.13085407,0.11971089,-0.11473558,-0.22208524,-0.21540909,0.13491465,-0.43888518,0.6383126,-2.028766,-0.13177024,-0.120659895,0.27178466,-0.2992156,-0.4163371,-0.099294364,-0.64918596,0.42261377,0.2742449,0.42811227,-0.64217174,0.3481063,0.25426638,-0.30975845,-0.15286501,-0.790782,-0.049289104,-0.2005909,0.12614302,0.13812645,-0.117995895,-0.08114519,0.07824595,0.48275694,-0.34815407,0.06588284,0.47251233,0.14206201,0.21652083,0.58332324,0.16051362,0.44033417,-0.36578846,-0.23580532,0.39226928,-0.21918829,-0.06912264,-0.016935175,0.16079581,0.22248013,-0.5659753,-0.8966577,-0.85709125,-0.5861762,1.1548539,-0.25780073,-0.70902896,0.10625257,0.2557875,-0.3684474,-0.064941645,0.35861382,-0.25242496,0.211235,-0.815633,-0.08556387,-0.17468846,0.55001813,0.0040515834,0.0058848686,-0.5840739,0.45358816,-0.35664478,0.23929538,0.5671547,0.2564971,-0.31228748,-0.5648807,0.11901084,1.4674224,0.32519233,0.081165224,-0.4131032,-0.09545169,-0.31736198,-0.02469024,0.052869588,0.36028424,0.9000918,-0.012208671,0.10556477,0.35694543,-0.045617018,0.056590408,-0.0672699,-0.5314257,-0.032760423,-0.18358482,0.7839369,0.32823095,0.29107344,0.7773319,-0.1072667,0.17264374,-0.2765763,-0.3442793,0.51598275,1.313659,-0.19514327,-0.31004384,0.5976183,0.39504996,-0.08415884,0.5285986,-0.6352693,-0.50940305,0.30834463,-0.06623272,-0.44666114,0.2517663,-0.3286388,0.28405735,-1.0169011,0.52599466,-0.42377886,-0.8860946,-0.59254,-0.123277314,-2.7243426,0.32502612,-0.1923443,-0.057073027,-0.05651961,-0.20118241,0.43996385,-0.3212547,-0.5538991,0.15025398,0.16382305,0.8364229,0.015623167,-0.027115917,-0.15817274,-0.15573634,-0.27428484,0.27170983,0.3670927,-0.049551982,-0.0073890015,-0.44527325,0.07972428,-0.3646524,-0.33559537,0.08259231,-0.55137295,-0.46144316,-0.30870947,-0.583499,-0.7266936,0.71878487,-0.67889553,0.0490115,-0.28938448,-0.049469765,0.10868245,0.4530368,0.05765623,0.14544265,0.048150185,-0.18735664,-0.16095752,-0.16211557,0.05596361,0.039366093,0.17603107,0.308819,-0.48078915,0.17705025,0.44948447,0.7199846,0.17877962,0.9200128,0.49307966,-0.16202319,0.052844662,-0.2917831,-0.17067051,-0.5893073,-0.228658,-0.14805917,-0.42432022,-0.3983856,-0.00950933,-0.27338335,-0.830105,0.79382926,-0.05409513,0.044014733,-0.058346983,0.44864264,0.25038144,-0.024436286,-0.22418946,-0.25417674,-0.1333648,-0.3920933,-0.42927146,-0.6836128,-0.60188144,-0.2216721,1.3420442,-0.049544077,0.15631877,-0.03278458,-0.02152122,0.17904373,0.1810875,-0.071392685,0.25587097,0.47396484,-0.14638692,-0.75834656,0.3221533,-0.2039537,0.10593265,-0.77192736,0.3489591,0.86630064,-0.6620338,0.26244816,0.53594416,0.08622033,-0.23004736,-0.5076592,-0.078206554,0.095678605,-0.35453597,0.26335707,0.107263945,-0.7532485,0.6298564,0.2932845,-0.26684645,-0.83227473,0.5136761,0.2311757,-0.16089787,0.1973499,0.36476687,-0.13880078,0.074883856,-0.29894271,0.25414833,-0.33513394,0.26977196,0.2941609,-0.08727645,0.2691668,-0.33545431,-0.10589576,-0.63560885,0.22306746,-0.4126674,-0.18534625,0.015285824,0.006349236,0.11403784,0.55618054,-0.005548189,0.46104625,-0.23569767,-0.040813725,-0.2803916,-0.49029768,0.46215448,0.603815,0.16491556,-0.42870125,0.779072,0.0542846,-0.142793,-0.73396844,-0.034083255,0.54691905,-0.033113334,0.33132067,0.272382,-0.21702544,0.1605469,0.7320544,0.40097204,0.6454771,0.0043279626,0.012387075,0.10490084,0.2373171,0.4366857,0.20969498,-0.5214102,-0.015071045,-0.22998212,0.028288553,0.52791125,-0.026720032,0.5236766,-0.23528688,-0.24142969,0.0018942971,0.02012656,-0.25150597,-1.4086828,0.69828886,0.2558252,0.5396743,0.5432911,-0.10390981,0.28727666,0.4857287,-0.27101287,0.1967923,-0.00082136196,0.042105448,-0.17427611,0.6605249,-0.9293217,0.3102652,-0.033016097,-0.05953437,0.051007837,-0.07843829,0.4003669,0.8581279,-0.07388566,0.25779176,-0.26624084,-0.16994731,0.2683677,-0.2538562,0.2801563,-0.56084067,-0.33716464,0.9692993,0.24690016,0.5116727,-0.15176994,-0.059817284,0.0826683,-0.2303931,0.19612221,0.011918393,0.07609085,0.013121098,-0.50067157,-0.16503339,0.64527845,0.10796425,-0.04004346,0.26445165,-0.12886089,0.27273402,0.040840466,0.0630442,-0.06491974,-0.57574385,0.1178197,-0.48763123,-0.15302616,0.17544962,-0.5105052,0.2817626,0.16111778,0.10152513,-0.39596447,0.18212843,0.63203764,0.70368403,0.1824751,-0.21510603,-0.07384505,0.13941927,0.26190788,-0.3413674,-0.08521152,-0.13899226,-0.07159902,-0.9074862,0.36659285,-0.20830375,-0.30329552,0.5748642,-0.051978197,-0.21017374,0.5507105,-0.16409652,0.12516193,0.5608459,-0.040050004,-0.046417225,-0.20883448,-0.11833707,0.1824855,0.045295034,-0.082949474,-0.07533236,0.12180314,-0.20677216,0.37840882,-0.067613825,0.31470367,0.2904021,0.27046338,-0.44169506,-0.02591391,-0.09274128,0.5681284,0.063992985,0.01887264,-0.38302281,-0.25776526,-0.19988029,0.16800939,-0.05875491,0.2607639,0.020788074,-0.45065615,0.871969,0.08620218,1.0670656,0.036103208,-0.37957326,0.03541653,0.451766,0.08399204,-0.06496427,-0.46857294,1.0428132,0.5316165,-0.10993717,-0.049900457,-0.40306222,-0.1594698,0.18933141,-0.1487024,-0.38631442,0.061272535,-0.5855492,-0.47107133,0.25737402,0.45428684,-0.14620247,-0.03884399,0.20812182,0.5308342,-0.1582031,0.22417994,-0.39788723,0.24353482,0.15897804,0.22820301,0.07243197,0.16085291,-0.2858399,0.27513772,-0.8899527,0.15544371,-0.20337264,0.08297202,0.202474,-0.20546412,0.2877324,0.5075268,0.20654988,-0.11872145,-0.21068867,-0.07183427,0.4949808,-0.00021576385,0.2657995,0.9463765,-0.25240245,0.17812747,-0.053472176,0.2801741,1.2618892,-0.41316056,-0.01642407,0.5098519,-0.40737438,-0.4925989,0.47203505,-0.33057365,0.05909313,0.042876672,-0.61462045,-0.29354942,0.18033506,0.109888844,-0.103331685,0.33029884,-0.6159064,0.00078231096,0.3659602,-0.34015712,-0.28836998,-0.44680452,0.27051356,0.5077235,-0.2317043,-0.4572772,0.018662505,0.43536386,-0.202094,-0.39494964,-0.049759578,-0.24852078,0.3159585,0.07359556,-0.198418,-0.027364016,0.2578136,-0.40969142,0.06260314,0.254508,-0.25286016,0.095858686,-0.20228238,0.06756572,0.70865613,-0.38340974,-0.1391009,-0.6186474,-0.4927005,-0.7967622,-0.29495028,0.4000105,0.37092185,0.025537023,-0.57929355,-0.14006831,-0.08205729,-0.0808035,-0.005081862,-0.41516992,0.2837815,0.23951079,0.4566873,-0.065560825,-0.90313274,0.23700254,0.04981917,-0.20148323,-0.4683112,0.4437952,0.023164034,0.7909624,0.050637275,0.22912721,0.31018403,-0.6709364,0.24449271,-0.07033905,-0.10311856,-0.8924293,-0.110199 -951,0.3803607,-0.06775567,-0.4678684,-0.22729257,-0.3536853,0.19868138,-0.29477695,0.31428346,0.20043173,-0.20180117,0.015397242,0.050102644,0.016486255,0.379182,-0.15573637,-0.8503293,-0.1334642,0.106992245,-0.6540567,0.48305723,-0.6672258,0.33934626,0.038276274,0.44637984,0.06157055,0.39888075,0.2802614,0.00026130278,-0.13131402,-0.01896456,-0.10961322,0.30718118,-0.6185592,0.25423178,0.06621412,-0.28728786,-0.047596563,-0.22104813,-0.15102135,-0.6977411,0.44861305,-0.7190283,0.6447594,-0.124882534,-0.37670955,0.131447,0.076853275,0.21255232,-0.42663953,0.077470824,0.20355348,-0.30870515,-0.07141587,-0.2217914,-0.19971307,-0.5137542,-0.5512554,0.0005599737,-0.6322852,-0.05434188,-0.36348602,0.32122725,-0.36438498,0.088831134,-0.24559215,0.2800635,-0.4499298,0.01816969,0.21542686,-0.30860347,-0.049415182,-0.4682457,-0.062718466,-0.06943393,0.289299,0.026165415,-0.25747705,0.36945647,0.45947704,0.5521546,0.18304497,-0.33554876,-0.28969344,-0.22127463,0.071614124,0.45805544,-0.03244008,-0.3814815,-0.29932526,-0.16042084,0.37336472,0.10304227,-0.030740635,-0.2968907,0.0070377835,0.15770492,-0.25338426,0.41261345,0.46477804,-0.44941244,-0.23244719,0.48352143,0.26827228,0.10303116,-0.23664197,0.16067877,-0.0788108,-0.57210904,-0.27930558,0.19118021,-0.030448226,0.57957196,-0.21001182,0.3022019,0.8807415,-0.12622765,-0.034755714,-0.23394164,-0.077470936,-0.11564218,-0.32391614,-0.1342298,0.09618759,-0.46982506,-0.04546656,-0.2866326,0.6517255,0.08461379,-0.67702186,0.4611532,-0.36795536,0.07725637,-0.1475307,0.5545528,0.7826558,0.3620168,0.124146715,0.890612,-0.48816428,0.018927645,-0.09522398,-0.41514772,0.07783176,-0.042099245,0.08873115,-0.4431612,0.17664576,0.1852532,0.13071959,0.059195265,0.5432269,-0.32520467,-0.00011690061,-0.106604554,0.60567576,-0.5300144,-0.062880285,0.8149707,1.0045959,0.9744616,0.09075148,1.54921,0.44473106,-0.16141963,-0.054282483,-0.3603964,-0.46743584,0.17987484,0.3120983,0.034369603,0.309935,0.13989218,0.09904202,0.4848566,-0.2872874,0.01936646,0.04343251,0.38866493,-0.057243254,-0.028529266,-0.41693214,-0.19801006,0.26836166,0.10772672,0.19363552,0.21770912,-0.14751019,0.5802948,0.11791651,1.3549324,0.091360085,0.1395767,-0.06913119,0.39791143,0.2503976,-0.11699248,-0.0018117984,0.31782627,0.4081332,-0.15800701,-0.552582,-0.09597266,-0.3308293,-0.4779524,-0.21973825,-0.4163911,-0.12017486,-0.17792784,-0.53255755,-0.19406566,0.21910222,-0.34441885,0.46041948,-2.4640365,-0.29725733,-0.18044062,0.27650893,-0.2374538,-0.42095497,-0.31452,-0.52915263,0.3978589,0.4028251,0.29765975,-0.6148841,0.40871716,0.1631061,-0.2656555,-0.120648585,-0.6382187,0.058037616,-0.08612707,0.3243184,-0.13794042,-0.2751116,-0.20079057,0.37171927,0.7546866,0.009464261,0.0062215566,0.19982728,0.39702475,0.05742709,0.41949692,0.09391734,0.6447815,-0.17922185,-0.21287568,0.36320487,-0.36904037,0.33820972,-0.12595144,0.22131395,0.4428894,-0.44978663,-0.8616781,-0.57714516,-0.26005825,1.241311,-0.52487946,-0.2905267,0.26324084,-0.012831344,-0.4280352,0.1062791,0.4288216,-0.121083654,0.010862191,-0.65373796,0.09501017,-0.12601997,0.058567785,-0.1430413,0.17767684,-0.3935271,0.72373885,-0.18604858,0.43807456,0.26870868,0.19210836,-0.19238958,-0.3760528,0.16894726,0.95756316,0.4668507,0.092120245,-0.20656279,-0.22974457,-0.19513588,-0.2990869,0.14641318,0.46608517,0.63557357,0.105411716,0.039468333,0.23980786,-0.24286224,0.01908356,-0.162717,-0.23303203,0.007013754,0.19740972,0.64596635,0.5082425,-0.15639298,0.345025,-0.13635965,0.27209574,-0.12714148,-0.62904,0.59058994,0.93193346,-0.18378338,-0.23305541,0.63281167,0.3666732,-0.30429426,0.46781215,-0.5203979,-0.3428118,0.5838621,-0.105442636,-0.3781013,0.0077281715,-0.41192892,0.022270624,-0.88090914,0.14979598,0.08745527,-0.54263645,-0.5281479,-0.35853082,-3.9633024,0.11219672,-0.13833341,-0.051108,-0.15360758,-0.14219707,0.39198455,-0.6046608,-0.5321624,0.041822754,0.009763764,0.5336074,0.007600214,0.057480074,-0.34431714,-0.121045165,-0.14970183,0.22237124,0.0812414,0.33279812,0.04870766,-0.433031,0.18872756,-0.28603795,-0.5526735,-0.01572204,-0.53904223,-0.529441,-0.1157217,-0.41107827,-0.2061886,0.78055465,-0.49369252,-0.018166257,-0.33934605,0.056376226,-0.15501124,0.34309393,0.15872523,0.15074328,0.14366253,-0.0054199696,0.013061108,-0.3713256,0.28511715,0.059609756,0.20778356,0.3994066,-0.115283966,0.094170205,0.5238617,0.58601594,-0.02408723,0.77789426,0.25398466,-0.16701674,0.3247061,-0.25657845,-0.19485016,-0.6929625,-0.5180593,-0.21164745,-0.5310995,-0.35118905,-0.25265375,-0.34603298,-0.8098676,0.43238556,0.035683665,0.139868,-0.14215918,0.3168763,0.23312302,-0.1353116,0.061097104,-0.20192581,-0.25278157,-0.51803154,-0.4739715,-0.57575357,-0.7863309,0.14627317,1.0487701,-0.07420857,-0.1286308,-0.02635364,-0.44198212,0.013468113,0.12301384,0.29753286,0.20516707,0.39352146,-0.16587119,-0.8004099,0.45640504,-0.23854281,0.00017623504,-0.66758895,-0.0009500027,0.6730248,-0.56803113,0.6050756,0.37863243,0.30056885,0.13805062,-0.56661326,-0.36109668,0.056235928,-0.20787846,0.6383284,0.23236337,-0.6815478,0.5742673,0.14967361,0.006053972,-0.6428029,0.37311676,-0.01838925,-0.0759083,0.040070694,0.47808504,-0.0035233179,-0.052407168,-0.20080084,0.17521645,-0.61279875,0.36351818,0.34982777,0.05898962,0.6046858,-0.16248034,-0.23749918,-0.599084,-0.28895518,-0.4533025,-0.27657261,-0.07601202,0.08098399,0.15923171,0.054457027,-0.04210764,0.42020315,-0.4552125,0.2518877,-0.014034939,-0.23086254,0.23352757,0.47928277,0.37747997,-0.42891693,0.63423866,0.1321959,0.1451032,-0.23365508,-0.077228814,0.64767724,0.304829,0.35114732,-0.10066263,-0.04219357,0.17234357,0.67481196,0.26339397,0.2955877,0.18095782,-0.4012991,0.21239741,0.19934775,0.087865904,0.16134745,-0.19636983,-0.0689764,0.049176533,0.21098456,0.4685864,0.14670192,0.33504957,-0.07868865,-0.07386656,0.21396714,0.000512747,-0.14297087,-1.2216036,0.36809602,0.40671635,0.65997595,0.45742923,-0.07198559,-0.077409625,0.40978095,-0.38150278,0.10011617,0.27369928,0.026596665,-0.3714084,0.47050014,-0.51581496,0.410584,-0.18368608,-0.006785055,0.16808577,0.26601946,0.2787209,0.9724542,-0.070480905,0.13724872,0.031681444,-0.24054727,0.10436224,-0.23806255,0.060484104,-0.47377166,-0.19933653,0.68562526,0.34251553,0.31899646,-0.3218831,-0.15228347,0.03213265,-0.20676543,-0.02038575,-0.23673369,0.036957387,-0.2208683,-0.62108415,-0.43897125,0.48242512,0.09992336,0.0807249,0.19921906,-0.31263825,0.21413249,-0.128802,-0.012187115,0.0049475688,-0.62521046,-0.13025092,-0.29138234,-0.50340825,0.3526397,-0.4945589,0.28870708,0.1351584,-0.0011393627,-0.27158412,0.10073192,0.01950678,0.8936855,0.16659291,-0.21917194,-0.33639365,0.022865137,0.41887248,-0.31748194,-0.014386904,-0.35358742,0.1561604,-0.66456187,0.39902732,-0.19058882,-0.21755303,-0.019826094,-0.12219436,0.035775073,0.31166205,-0.2582569,-0.123564705,0.24665712,0.045176443,-0.20891055,-0.009379443,-0.45304745,0.22691528,0.026239984,0.06550118,0.024639638,-0.13512158,-0.08871954,0.3863689,0.18013982,0.09393061,0.37580976,-0.13723405,-0.2583453,-0.022957662,0.0616418,0.4285178,0.041002322,-0.072814696,-0.29745665,-0.356029,-0.34030974,0.46121475,-0.19527817,0.08105808,0.045045655,-0.39059135,0.7755772,0.16012941,1.1548634,0.24281839,-0.48558745,0.17381598,0.56744736,0.05686346,0.22797562,-0.3347617,0.9173673,0.513683,-0.13005784,-0.20120601,-0.4882724,-0.14626162,0.4100551,-0.31437317,-0.26954034,-0.20902564,-0.86600566,-0.23660527,0.15049744,0.16558804,0.04615346,-0.0013060133,-0.05163819,0.07493714,0.2129693,0.5577625,-0.6574127,0.06976562,0.35400283,0.12335037,-0.00053155026,0.31071168,-0.31756166,0.42760772,-0.626646,0.07271811,-0.48842552,0.072086245,-0.10270427,-0.34612,0.33429784,0.10267151,0.31049454,-0.29822552,-0.43654925,-0.34302756,0.66165763,0.16062139,0.3173664,0.7094316,-0.2957895,-0.17425194,0.20143504,0.4600359,1.3567768,-0.093499415,0.16416082,0.32157117,-0.3036503,-0.55133885,0.14684726,-0.32735044,0.09315595,-0.076755114,-0.43506482,-0.33186924,0.3265707,-0.001168402,-0.09136102,0.24222428,-0.4051213,-0.17788129,0.39412734,-0.24372788,-0.28678867,-0.18337736,0.21059676,0.6917915,-0.48234636,-0.4376817,0.076058164,0.397323,-0.23039314,-0.6870635,-0.017364703,-0.21785754,0.40319186,0.21258545,-0.32400075,-0.01950218,0.23973995,-0.44377413,0.16419329,0.5194899,-0.3244979,0.046890274,-0.34459114,-0.069509044,1.0484296,0.013996554,0.23021029,-0.7174975,-0.4226209,-0.987264,-0.28742212,0.18881908,0.18296099,-0.065817,-0.63224643,-0.075026475,-0.15394042,0.058385808,0.18956086,-0.53315383,0.45084903,0.15619789,0.5090294,0.033341184,-0.85372716,-0.15165932,0.10654981,-0.18384987,-0.5024601,0.59337896,-0.22387908,0.61619836,0.1406702,0.13782834,0.1211135,-0.7345177,0.29024214,-0.36372524,-0.09462919,-0.82209116,0.10185639 -952,0.4513486,-0.14587778,-0.34646243,-0.12917866,-0.12393882,0.17846778,-0.06855411,0.5022686,0.1854937,-0.47845283,-0.16418943,-0.3480958,0.040712792,0.2322263,-0.12479301,-0.5446547,-0.014307813,0.13695581,-0.44697377,0.46826264,-0.49436158,0.39404824,0.05571755,0.26865676,0.16001359,0.15998454,0.11734805,-0.20030728,-0.14490236,-0.07532121,-0.21912864,0.38792256,-0.4147399,0.018246006,-0.16167411,-0.4023511,0.02433048,-0.5609378,-0.30585542,-0.6833466,0.3910557,-0.73278373,0.42657655,0.08119078,-0.08486922,0.50575674,-0.024199529,0.15444466,-0.20952867,-0.042257033,0.19738343,-0.045829106,-0.07913545,-0.057612345,-0.19430605,-0.19173983,-0.48010424,0.20611373,-0.36031994,-0.2661211,-0.26563385,0.107799076,-0.29641667,-0.092662744,-0.04520565,0.2839405,-0.35760885,-0.14115666,0.19656678,-0.07941944,0.19842307,-0.5168197,-0.11134396,-0.090663545,0.28667596,-0.27595314,-0.14014056,0.26868948,0.33747044,0.52956647,-0.080481224,-0.10457598,-0.33264384,0.018408157,0.05218569,0.53425413,-0.12989971,-0.665294,-0.12061204,0.035486143,0.035038486,0.23762086,0.10826824,-0.24769929,-0.2588062,0.09639135,-0.22757544,0.3010196,0.5148986,-0.41096961,-0.30227324,0.3197888,0.42682925,0.23219447,0.034897383,-0.07819333,0.018878993,-0.63819534,-0.17932197,0.0045907893,-0.30247375,0.57614154,-0.13543704,0.31132403,0.627637,-0.08666453,0.10652331,0.06026144,0.017874742,-0.18787406,-0.21391967,-0.058505867,0.24554276,-0.44305375,0.17124377,-0.098903984,0.8226109,0.16407855,-0.7445128,0.4146347,-0.57577497,0.16003847,-0.11077603,0.51072365,0.6634696,0.14784619,0.31450403,0.6909673,-0.46358097,0.017492931,-0.020652592,-0.32267338,-0.04974232,-0.08148768,-0.084416315,-0.49005452,0.058160704,0.062039662,0.071477786,0.23574845,0.28189617,-0.52497554,0.06790439,0.06985225,0.7522793,-0.32030603,-0.10504634,0.6969894,0.94612986,0.9229604,0.08081817,1.1379523,0.25125077,-0.33895218,0.39714953,-0.3797894,-0.8054994,0.27574918,0.3818473,-0.22909918,0.15131289,0.055105988,0.0025546232,0.32095855,-0.4266091,0.055949364,-0.16794518,0.019809615,0.16284527,-0.0775036,-0.33600965,-0.3960833,-0.12997541,0.055539463,0.117571,0.13984817,-0.092445344,0.29678687,0.026791608,1.645123,0.0025797328,0.044709153,-0.010035505,0.33598778,0.16783224,-0.14736368,-0.14516668,0.31176943,0.36454585,-0.12407615,-0.622629,-0.0076392093,-0.20579888,-0.5688488,-0.116192944,-0.302033,-0.07418494,0.11862721,-0.41765875,-0.1253785,-0.26404336,-0.34293205,0.5754792,-2.8485084,-0.1759902,-0.07081303,0.23855916,-0.29695842,-0.34427544,-0.20749852,-0.5058991,0.37140414,0.34450766,0.37377346,-0.70173454,0.2878667,0.26561514,-0.48370603,-0.20818433,-0.6480108,-0.1521097,-0.013702019,0.19259222,0.032525077,0.04467586,-0.0024019252,0.026709715,0.5278496,0.0169077,0.074774876,0.18338054,0.48719424,0.14743476,0.42908594,0.0007085085,0.5420999,-0.24758703,-0.16620475,0.28509772,-0.30876148,0.38329926,-0.11707163,0.17407854,0.4566405,-0.5036705,-0.78880346,-0.61241096,-0.25832912,1.1399375,-0.111956365,-0.37666512,0.33343562,-0.255982,-0.14731674,-0.08847865,0.5325224,-0.11794958,-0.29631293,-0.7237107,0.14701763,-0.04446669,0.030168863,-0.0066241594,-0.015269001,-0.32453647,0.69788337,0.00310449,0.3551601,0.34868157,0.20992373,-0.20608804,-0.35126406,0.06443709,0.79877543,0.3547439,0.11503809,-0.14141934,-0.13565664,-0.5290775,-0.16663344,0.10700934,0.3555021,0.65378445,0.028177548,0.15474854,0.23981346,0.15781651,0.13009971,-0.14355071,-0.13928016,-0.0030157885,-0.1474281,0.5329924,0.51167256,-0.3245793,0.4623591,-0.051665656,0.06624493,-0.22194415,-0.32192847,0.6124794,0.92284584,-0.11512195,-0.16835362,0.49887234,0.5564889,-0.2020933,0.3278623,-0.52172935,-0.3470273,0.5373554,-0.2523305,-0.36451134,0.15752842,-0.25096828,0.09519629,-0.98315793,0.12057528,-0.08755762,-0.3293982,-0.5462427,0.0044073584,-3.3518507,0.18543002,-0.2504019,-0.11598359,-0.15122975,-0.062972516,0.10883116,-0.54800916,-0.5483671,0.16647361,0.09241721,0.5501157,-0.0074679903,0.19678882,-0.12986192,-0.17384191,-0.33394703,0.0597643,-0.017237728,0.346134,-0.037575983,-0.34689358,-0.06206368,-0.1879529,-0.37994033,0.22302571,-0.4739956,-0.4593534,-0.11797522,-0.4101572,-0.40211174,0.58504707,-0.31133252,-0.025697764,-0.1684838,-0.05174052,-0.1822963,0.40798417,0.1697082,0.15774536,-0.051485315,-0.095688805,0.03875791,-0.25670013,0.3680863,0.042101145,0.22640571,0.43960112,-0.121717386,0.2060178,0.41299242,0.6715483,-0.10950293,0.79386926,0.49749422,-0.008979678,0.35773978,-0.3245906,-0.17747141,-0.45399222,-0.3436194,-0.05760845,-0.38418624,-0.5456342,-0.16405906,-0.32845148,-0.6661093,0.37122247,0.082496814,0.25429735,-0.016845124,0.18597753,0.52834725,-0.1878426,0.07714612,-0.13262938,-0.020001112,-0.45773208,-0.25636736,-0.63782203,-0.44163397,0.23138243,0.8561739,-0.14457774,-0.053131808,0.010836617,-0.18429524,-0.03035974,-0.037572972,-0.015873363,0.20734888,0.3249251,-0.1918196,-0.6226371,0.63081044,-0.05528359,-0.25314674,-0.5486333,-0.008043701,0.42343807,-0.55852824,0.49130693,0.28408474,0.073955804,0.07343605,-0.55032593,-0.12822773,-0.075437896,-0.2806497,0.24792649,0.21147776,-0.6961098,0.42563412,0.43356666,-0.19061552,-0.76599944,0.45455638,0.14141631,-0.2754987,-0.046218563,0.2832051,0.15150674,0.041541036,-0.167903,0.23686,-0.61764866,0.3180333,0.2582215,0.022285929,0.3404404,-0.22616397,-0.16535746,-0.6794527,-0.021185001,-0.4212014,-0.13829279,0.15071742,0.12658195,0.18948358,0.11989654,0.08568857,0.30455992,-0.3538691,0.117799215,0.042989198,-0.0820064,0.073729664,0.3379992,0.4399089,-0.41600463,0.54263693,0.020686632,-0.119285375,-0.008395191,0.049337283,0.41585156,0.14868109,0.24353771,0.001690197,-0.37943947,0.34731472,0.79163176,0.115362234,0.21715865,0.025980059,-0.11399908,0.30625898,0.084337376,0.1334857,0.01917297,-0.50009507,-0.054378923,-0.09195655,0.1883171,0.5121658,0.076141074,0.3819014,-0.09829165,-0.2769845,-0.007745569,0.1943533,-0.015087571,-1.0167664,0.37804016,0.122355856,0.9518851,0.53369987,-0.14223841,0.14669363,0.45246062,-0.23816343,0.20046441,0.32084313,-0.15204464,-0.6487877,0.57585335,-0.52746606,0.41841215,-0.105677366,-0.075498395,0.07452507,-0.054875817,0.37703127,0.6585882,-0.10793206,-0.0034784903,0.004440659,-0.32275856,0.21269733,-0.42717937,-0.0026856998,-0.6191351,-0.08221755,0.6059582,0.48903835,0.20337968,-0.1736017,0.010650474,0.09923419,-0.11563014,0.08783158,0.062384132,0.2037964,-0.066748016,-0.7102904,-0.15741493,0.49191672,0.03337485,0.13615254,-0.051978365,-0.38291046,0.23599206,-0.26719195,-0.060949944,-0.13797244,-0.58968,0.0011247,-0.33041015,-0.53136116,0.4440048,0.05458116,0.321547,0.2180304,0.103614494,-0.2057159,0.31218383,0.10057027,0.6531225,-0.10970233,-0.16572815,-0.4767782,0.20643067,0.25225246,-0.19538814,-0.23803116,-0.18859936,-0.1298901,-0.45569217,0.5142464,0.0111409025,-0.1831763,0.08762466,-0.12933786,0.05196435,0.56925964,-0.16882023,-0.0052238065,-0.038718063,-0.21111248,-0.2645685,-0.0679173,-0.10142081,0.28730106,0.2706475,0.016359873,-0.101681836,-0.05799316,-0.11137425,0.40395632,-0.07680444,0.28911012,0.28210852,0.01386549,-0.324467,-0.14774638,0.27649716,0.3298261,-0.03292316,-0.19889377,-0.33684048,-0.30920166,-0.32032305,0.041081455,-0.1085254,0.3884215,0.006672327,-0.250069,0.68041146,0.051716764,1.0475689,0.18664907,-0.19063607,0.10065181,0.4842401,-0.05207918,-0.11495206,-0.39994824,0.84417635,0.46676284,0.038884778,-0.12758149,-0.18581666,0.08124237,0.21398859,-0.18968935,-0.14981203,0.0028312574,-0.6016473,-0.3781896,0.13557822,0.21692044,0.16753353,-0.13664259,-0.047725335,0.21615417,0.025446767,0.3674841,-0.4824509,-0.37586302,0.2287139,0.27244234,0.07312796,0.17284323,-0.39080873,0.4434058,-0.5617497,0.068607144,-0.24737689,0.22322689,-0.2250467,-0.18742082,0.20514804,0.09944115,0.30701873,-0.15849243,-0.43741366,-0.29362872,0.40859857,0.05279918,0.24774815,0.42852613,-0.28284344,-0.011863158,0.08833623,0.5337241,1.0777322,-0.09099916,-0.082974955,0.4015147,-0.26694572,-0.5284962,0.44011602,-0.2630791,0.15582535,0.026299192,-0.059469428,-0.512933,0.2965374,0.21422324,0.10426867,0.013282704,-0.5235104,-0.326307,0.31355426,-0.23521836,-0.26216546,-0.2783805,0.13711463,0.6197403,-0.31238815,-0.2628683,0.18190016,0.1624282,-0.2886596,-0.637326,0.103872985,-0.3841359,0.3703573,0.07668751,-0.2660213,-0.06220858,0.095644616,-0.3697162,0.16825584,0.055872105,-0.3271405,0.014548878,-0.3555028,-0.0131109,1.1547652,-0.20845424,0.2552594,-0.5517179,-0.4727545,-0.8641575,-0.43375862,0.58041435,0.05882504,0.046312407,-0.4645931,0.032572877,0.053045567,-0.0976651,-0.03073579,-0.29541942,0.44769,0.09047054,0.28932858,-0.077980414,-0.49237207,0.008017207,0.06513787,-0.22420137,-0.42341378,0.42794907,0.064829655,0.82926005,0.09711293,0.03290835,0.3971787,-0.3739558,-0.028680343,-0.21159036,-0.06627618,-0.65148515,0.11625032 -953,0.49639672,0.0026977658,-0.44835517,-0.25714764,-0.3180437,-0.08369523,-0.32004294,0.07415465,0.29657426,-0.29499716,-0.20095079,-0.054726224,0.112762555,0.34618214,-0.10100885,-0.92592305,0.052864693,0.17436405,-0.8011679,0.5599281,-0.64808565,0.38187006,0.25422397,0.3071441,0.0077558244,0.3981139,0.4419159,-0.14188017,0.18652524,-0.12615903,-0.0116123045,0.11516811,-0.7116943,0.18567263,-0.1455065,-0.40895915,0.11954414,-0.3827546,-0.091213904,-0.68234664,0.08636248,-0.7805669,0.58764094,0.094444856,-0.11317776,-0.041033745,0.19721484,0.47499448,-0.24845459,0.09400233,0.23425977,-0.18087666,-0.21382281,-0.2410855,0.11028617,-0.34718534,-0.40720147,-0.08614201,-0.57225937,-0.36638087,-0.28429002,0.06099822,-0.42978224,0.05086758,-0.029544419,0.37955967,-0.30806187,-0.04001326,0.4201774,-0.12461985,0.24675171,-0.4768944,0.016136613,-0.0773468,0.54387844,-0.22374108,-0.26073927,0.41631532,0.33708754,0.49624506,0.25689158,-0.43642262,0.027038809,-0.19719991,0.07016352,0.52569336,-0.17487468,-0.36871895,-0.26195168,0.2115512,0.33951586,0.3457387,-0.05124196,-0.23028362,0.010739741,-0.071049884,-0.24119584,0.6239143,0.5322858,-0.2639415,-0.42031628,0.15438604,0.43990254,0.11022063,-0.11173721,0.15415491,0.02607346,-0.5393461,-0.2351126,0.13547435,0.05123887,0.4761565,-0.052706044,0.1899648,0.8158231,-0.30098155,0.10072977,0.004285029,-0.202337,-0.010052775,-0.31525216,-0.17003417,0.21816874,-0.8266603,-0.0073574907,-0.31739932,0.92042214,0.16899931,-0.7643563,0.42617536,-0.574808,0.14636825,-0.19757839,0.5745095,0.7035919,0.3326513,0.33518544,0.77308166,-0.45976186,0.2203283,-0.15059425,-0.47678468,-0.014904375,-0.092728294,0.2853132,-0.48875013,0.038825635,-0.07252437,0.14184931,0.057918526,0.19456208,-0.5122162,-0.12528922,0.26523563,0.7637022,-0.35916743,-0.047508117,0.73542076,1.2350416,1.0469786,0.09704008,1.1632749,0.37369737,-0.24599668,0.1024851,-0.1727281,-0.63456905,0.14017048,0.34621263,0.16736217,0.25920033,-0.06330196,-0.14094076,0.23419724,-0.4310959,-0.057781585,0.047742072,0.46370813,0.030337287,-0.026315471,-0.5169078,-0.22306386,0.07065598,-0.13388416,0.011789597,0.26717803,-0.16289935,0.22612055,-0.065679,1.0540743,-0.1448798,0.0981622,-0.051336966,0.5853299,0.29222038,-0.07226894,-0.19663002,0.21999456,0.32298064,-0.025540216,-0.596247,0.17807552,-0.35651544,-0.30103627,-0.184407,-0.31368682,0.050024543,0.16689089,-0.33815306,-0.1121494,-0.0787,-0.32415256,0.5278904,-2.8251643,-0.4085268,-0.056980826,0.343177,-0.32001868,-0.15141347,-0.04707903,-0.6006117,0.4022984,0.21349452,0.47913545,-0.74385655,0.5883673,0.414912,-0.49783614,-0.30296874,-0.7592654,-0.0076864487,-0.12765625,0.35499388,0.022699654,-0.16793104,-0.21825776,0.30717438,0.6517182,0.05686925,0.11045468,0.33162817,0.304056,0.35131073,0.6512292,0.0024414319,0.6168108,-0.3455251,-0.12771678,0.22874022,-0.1260291,0.20720425,-0.22268264,0.1227295,0.41805226,-0.50023735,-0.8782406,-0.7035409,-0.47686222,1.0313108,-0.32105327,-0.424795,0.1615605,-0.08952407,0.06294401,0.081566215,0.3956592,-0.075336866,0.038592,-0.67531425,0.108216085,0.01627134,0.056210726,0.093640804,-0.06945908,-0.40050077,0.70600945,-0.1113804,0.4634841,0.2477417,0.34045595,-0.15277795,-0.374665,0.19273996,0.87771624,0.29372406,0.0042360425,-0.11522167,-0.33255625,-0.22116467,-0.17067862,0.04046434,0.5461411,0.9030059,-0.10203961,0.058901723,0.27840242,-0.16767584,0.16062883,-0.03323747,-0.332194,-0.030252364,0.010734826,0.522119,0.6052971,-0.16743574,0.51654345,-0.054180253,0.19536339,-0.022574289,-0.45850068,0.56408995,0.5673199,-0.11947465,-0.039780524,0.32983795,0.38792548,-0.2540406,0.49351788,-0.6119629,-0.23026,0.7229949,-0.11212408,-0.3212294,0.13021098,-0.3515828,0.19573487,-0.8487109,0.43145746,-0.542511,-0.5211295,-0.18527912,-0.0026628098,-3.8269439,0.3369848,-0.23501076,-0.074058816,-0.25544274,0.019478424,0.3727221,-0.561417,-0.44201747,0.2654071,0.15295564,0.64755166,0.022608442,0.12321599,-0.23809414,-0.17066261,-0.21510641,0.10716437,0.07602986,0.289534,-0.017487321,-0.3205683,0.04260706,-0.07409006,-0.5262477,0.27207848,-0.4401753,-0.54035443,-0.045044545,-0.5134902,-0.4123775,0.5766348,-0.34176084,0.08120737,-0.35936478,0.025604421,-0.23525439,0.2723594,0.07608603,0.08419377,0.025501626,0.08114032,-0.021254225,-0.39138943,0.50328815,-0.0048454576,0.38903576,0.015755387,-0.017489126,0.06847454,0.48903152,0.523831,0.043246087,0.84459025,0.22881818,-0.12164266,0.32455817,-0.30934018,-0.20517884,-0.46018666,-0.38219506,-0.20938082,-0.28328684,-0.38973904,0.009661726,-0.34197536,-0.7563034,0.53987545,0.030782351,0.3129103,-0.06673403,0.3015817,0.32759413,-0.120272115,0.06843715,0.020099547,-0.14794824,-0.6896401,-0.13283826,-0.6593704,-0.47952673,0.12590311,0.58737534,-0.46018082,0.041391436,-0.099381335,-0.12796982,0.14686659,-0.056960743,0.14666998,0.34499502,0.37952158,-0.13129474,-0.6776095,0.41244522,-0.11219321,-0.07677182,-0.5116325,0.15382886,0.7273377,-0.6419745,0.57050985,0.49232647,0.1243157,0.1155239,-0.50389755,-0.17861755,0.13215193,-0.28345025,0.27450165,0.082544506,-0.88601077,0.5470828,0.28105003,-0.48444572,-0.69272023,0.40719,0.17047508,-0.26741654,-0.012352611,0.29567662,0.19372939,-0.073258355,-0.21611036,0.0899371,-0.4627688,0.18094173,0.06592428,-0.053196963,0.35936025,-0.0725379,-0.38630506,-0.6492586,-0.11371938,-0.6006459,-0.25098556,0.1978879,0.0574936,-0.030020837,0.2002744,0.111031376,0.38949093,-0.26643208,0.09988635,0.004116791,-0.47246698,0.24644057,0.5410442,0.31070635,-0.3512155,0.5563337,0.12524079,-0.15152308,-0.074749626,0.07547374,0.42257792,0.0058461255,0.24731612,-0.099054076,-0.16461317,0.29289863,0.61454815,0.058733102,0.32080215,0.08346249,0.060627777,0.401434,0.07460147,-0.059580483,0.17762657,-0.3551883,-0.171821,-0.03777012,0.16196087,0.47043103,0.44882146,0.26725218,0.092212304,-0.2981151,-0.094496645,0.06706184,-0.26384443,-1.1240312,0.52551335,0.20340946,0.6381802,0.6017791,-0.073295526,-0.037869025,0.49442822,-0.17401327,0.16951908,0.3090512,0.009524533,-0.27507254,0.7556291,-0.5283908,0.42454004,-0.115438364,-0.0015646666,0.08182533,0.059593398,0.26684698,0.8409217,-0.24123372,0.080684885,-0.07472699,-0.14285977,-0.07539271,-0.29036126,-0.08655008,-0.43201175,-0.26141062,0.7608866,0.33061984,0.27425683,-0.12740108,-0.06361774,-0.022449791,-0.21707837,0.20011282,-0.2068534,-0.06597794,0.13914655,-0.509774,-0.16073786,0.54904383,-0.005537196,0.10504716,-0.24808593,-0.06593477,0.06820555,-0.1347361,0.07510834,0.008903212,-0.74997985,0.14415038,-0.30619022,-0.24517496,0.42735487,-0.34111524,0.06197799,0.1597157,0.104300365,0.032153454,0.22427024,0.14079939,0.5055975,0.06768679,-0.42127863,-0.39164186,-0.10965097,0.28330857,-0.25657672,0.13086994,-0.41399527,-0.015284411,-0.66392803,0.6751291,-0.055160854,-0.31690758,0.18588684,-0.1487207,-0.053785402,0.52549756,-0.30361804,-0.05917645,0.17380057,-0.2241883,-0.33321005,-0.08134421,-0.23992433,0.17755981,0.4080606,-0.06553801,-0.06906034,-0.33978885,-0.19506907,0.4575191,0.08207654,0.50493383,0.12089818,0.21205299,-0.13864146,0.07257736,0.17290771,0.3810621,0.16186295,-0.029051036,-0.50571096,-0.17213385,-0.2107998,0.13191558,0.01192029,0.10155416,-0.16844259,-0.3067601,0.87306243,0.10773667,1.1456097,0.10135389,-0.29542568,0.036197018,0.46617958,-0.24428926,0.025889859,-0.45703,0.9115835,0.5701181,-0.027427146,-0.1415439,-0.4767354,-0.21561173,0.3194835,-0.336812,-0.05342016,-0.0226386,-0.4137284,-0.488127,0.25650185,0.2751896,-0.040255208,-0.01114411,-0.0056031174,0.077869646,0.084039465,0.48509318,-0.73826116,-0.046709854,-0.008680024,0.29444006,0.01488625,0.2478181,-0.3415756,0.45581153,-0.79316086,0.2566413,-0.57246715,0.044518106,-0.17944059,-0.35261992,0.13798681,0.12105002,0.3369731,-0.21964476,-0.47582173,0.06792684,0.36187595,0.061644197,0.1691048,0.6896354,-0.32909217,-0.12088784,0.13438213,0.58660203,1.2941195,-0.21596089,-0.08167137,0.28551093,-0.4124258,-0.57341325,0.28842226,-0.33845735,-0.13031746,-0.10840715,-0.35478085,-0.44289234,0.18062079,0.22474541,0.04896601,0.09649282,-0.6046216,-0.19710724,0.29522207,-0.32059258,-0.39324108,-0.1920042,0.3475917,0.86637765,-0.3163877,-0.18730664,0.0656566,0.23621634,-0.14816041,-0.6245842,-0.09306373,-0.10916829,0.33997914,0.19073908,-0.24849336,-0.111574575,0.17497952,-0.44561648,0.07470935,0.2809796,-0.3569345,0.07323219,-0.08268154,-0.07590115,0.8699008,-0.10242319,-0.101281114,-0.65109664,-0.41032267,-0.7029856,-0.5352451,0.26643798,0.22758433,0.19063827,-0.26300684,0.016309708,0.032797974,-0.059932154,0.09617092,-0.4900083,0.28010234,0.14490981,0.5299603,-0.26734728,-1.027918,0.01009196,0.2414688,-0.19426593,-0.6992482,0.59379154,-0.0037462923,0.7911727,0.13910463,-0.10931838,-0.0022861552,-0.37545744,0.26094896,-0.45768017,-0.074593656,-0.765277,0.0793581 -954,0.30555272,-0.2786982,-0.5565662,-0.010603988,-0.2657715,-0.20521608,-0.044047438,0.67431694,0.08604646,-0.522303,-0.07800913,-0.23173569,-0.02996291,0.40411136,-0.24419403,-0.44363025,-0.17028926,0.15542604,-0.2244629,0.47320336,-0.25759217,0.22785218,0.023793302,0.4726916,0.062938675,0.29982743,-0.013154681,-0.0059377644,-0.29837218,-0.20604748,-0.050473254,0.17810924,-0.711715,0.025499392,-0.15021703,-0.6396455,0.081942745,-0.52550584,-0.30910528,-0.750347,0.23765662,-0.81302357,0.5517579,0.1497393,-0.19617778,0.20937075,0.1438422,0.4154352,-0.11394898,-0.021719387,0.17450668,-0.12510088,0.080808,-0.1986364,-0.38095394,-0.30038527,-0.5523237,0.087133236,-0.38915202,-0.35149992,-0.16514675,0.05569291,-0.32240206,0.040602203,-0.008301661,0.40658304,-0.45479077,-0.09193499,0.25616938,-0.23873717,0.3587874,-0.45770842,-0.086246625,-0.22997192,0.026761252,-0.46384394,-0.09276645,0.41218123,0.07850556,0.58003044,-0.0828847,-0.27853847,-0.48545074,0.1348431,0.011082409,0.35048887,-0.35903925,-0.4995815,-0.061301686,0.0151418215,0.20619027,0.24103469,0.25503537,-0.22002935,-0.05773479,0.09677581,-0.26383206,0.25358513,0.45322946,-0.29269853,-0.20667544,0.19401127,0.6391132,0.18058611,-0.0624935,-0.0048694517,-0.019806175,-0.35200408,-0.27859014,-0.07092133,-0.16219355,0.60773355,0.060624145,0.29176342,0.69348115,-0.26990414,0.07675007,-0.037292227,-0.10054514,0.021216769,-0.32670933,-0.36100787,0.42336434,-0.36042845,0.32660148,-0.083884865,0.6836427,0.23759955,-0.8495938,0.3948536,-0.5965973,0.0908951,0.022727827,0.4978997,0.41818315,0.64884883,0.4764077,0.59335285,-0.5020355,0.095606856,-0.15195307,-0.26108253,0.04952975,-0.20933135,-0.021343552,-0.3917551,-0.008007242,-0.07074057,-0.28925034,0.06590553,0.2083252,-0.62392205,0.0077680647,0.24294876,1.0055379,-0.24679321,-0.116423525,0.6316135,0.9620623,0.9351267,-0.025739614,1.1698006,0.095482275,-0.21753035,0.39478397,-0.10748721,-0.8500052,0.18157683,0.49388367,-0.22951151,0.35741812,0.17118405,0.08600506,0.5419246,-0.3910465,0.14475879,-0.19859725,0.08609818,0.05685819,-0.21338771,-0.41516507,-0.19601887,-0.11564464,-0.081856914,-0.26723883,0.35124862,-0.054801866,0.324158,-0.02342397,1.9718888,-0.018702853,0.18375383,0.14349006,0.64528316,0.017125975,0.08613371,-0.103754245,0.24666959,0.051794544,0.2954692,-0.31773362,0.1339137,-0.19982435,-0.62364125,-0.0938569,-0.2461448,-0.07250799,-0.17282456,-0.4896786,-0.17184687,-0.15045987,-0.14876188,0.3671746,-2.473769,-0.04404735,-0.06614138,0.3303227,-0.34182218,-0.4554568,0.092123955,-0.42703968,0.4785033,0.41298205,0.509302,-0.6731943,0.39932626,0.48203883,-0.4689861,-0.102689,-0.5661587,-0.13450941,0.0036118662,0.29825544,-0.05455361,-0.092826076,0.06773008,0.05023219,0.43369716,-0.16761567,-0.06321465,0.16821083,0.34815195,-0.0072775576,0.5521171,-0.2011461,0.3672175,-0.3878903,-0.25734657,0.35333925,-0.5095958,0.13635494,0.16955422,0.079889566,0.2951453,-0.557468,-1.0214084,-0.7170938,-0.4670847,1.0719854,-0.019268064,-0.34084004,0.39115328,-0.41767973,-0.24777505,-0.2825143,0.35914594,0.008357238,0.17793244,-0.78418064,-0.0151702855,-0.32601225,0.20953362,0.15721534,0.016903698,-0.48587015,0.5998182,-0.12559032,0.4992835,0.58782536,0.08951576,-0.3665612,-0.49705252,-0.031289354,0.9640523,0.37661013,0.24062452,-0.13978621,-0.22215329,-0.3457248,-0.03944208,0.05033608,0.38372344,0.93196255,-0.20565504,0.05256403,0.268964,0.045154355,-0.08681851,-0.17284335,-0.3249191,-0.08695315,0.17224255,0.49830362,0.61037624,-0.28495198,0.4322589,-0.14831915,0.5403516,-0.13326539,-0.42628348,0.23621456,0.70396966,-0.15314414,-0.067556396,0.6933423,0.52086455,-0.48714468,0.5486381,-0.6156064,-0.2272264,0.43588603,-0.16009484,-0.5402709,0.2647598,-0.24277122,0.11189897,-1.0091708,0.26750368,-0.32901594,-0.29951045,-0.63610774,-0.23626608,-3.256419,0.17091331,-0.22198783,-0.21946785,0.015968801,-0.1407738,0.14684604,-0.708697,-0.79738057,0.033292774,0.10285085,0.595893,-0.07583639,0.012335759,-0.2315286,-0.26120883,-0.2660509,0.16623253,0.36936358,0.17083813,0.0443994,-0.64893365,-0.35695145,-0.28845268,-0.56391436,0.07789688,-0.73143566,-0.4138772,-0.29087862,-0.79869944,-0.38624492,0.66956174,-0.2857471,0.07173797,-0.22970408,-0.083427384,-0.17540087,0.32878223,0.1361774,0.19598426,0.008362289,-0.062351044,0.03808696,-0.24169841,0.022965688,0.17767972,0.38985536,0.27349347,-0.22458445,0.22662497,0.63455254,0.9380766,-0.061613306,0.76880455,0.5991261,-0.24827674,0.48686022,-0.40619043,-0.35748595,-0.8037956,-0.370734,0.07399413,-0.33032593,-0.5115987,0.1961766,-0.3983188,-0.80389434,0.8833351,-0.113771886,0.059378207,0.081317954,0.22855149,0.43506587,-0.38254923,-0.17496936,-0.11859333,-0.001968118,-0.64336246,-0.3097224,-0.5164144,-0.5673883,0.03447903,1.1856788,-0.0119540505,0.051943786,0.2550311,0.03408698,0.11596779,0.15137775,0.042162813,0.11108235,0.42399758,0.048711464,-0.59315264,0.43106192,0.052365907,-0.11309297,-0.4623502,0.2376826,0.5584145,-0.7864999,0.54296505,0.19214028,-0.038869467,0.027272075,-0.54841757,-0.1303835,-0.08829293,-0.06168459,0.31343895,0.17989019,-0.76040584,0.26169455,0.70781493,-0.30558902,-0.7836708,0.3176964,-0.110592805,-0.274631,-0.1370016,0.29521468,0.1401858,0.022449017,-0.18303499,0.17676815,-0.41064242,0.096629456,0.48736027,-0.048880365,0.2761248,-0.14621554,-0.104453124,-0.89281696,0.42360395,-0.3922485,-0.27013236,0.39944208,0.029686065,-0.20334387,0.3412047,0.13573608,0.32631472,-0.20121591,0.017373582,-0.044986524,-0.36728376,0.38877508,0.39919728,0.49359387,-0.55274147,0.58575034,-0.061974987,-0.12165502,-0.088019334,-0.18564738,0.516931,-0.07442451,0.14308818,0.12052954,-0.33521253,0.2298632,0.79659724,0.11734501,0.5395627,0.019374022,0.023635488,0.26589817,0.27879512,0.07380401,0.2679373,-0.57046187,0.36818945,0.059476793,0.09911764,0.50697076,0.118865915,0.31484923,-0.15267166,-0.1671171,-0.062670305,0.24143878,-0.046817206,-1.1701052,0.33222535,0.10443126,0.8342024,0.55911785,0.33417588,0.14908956,0.70241034,-0.23131593,0.12676302,0.40869856,-0.11524259,-0.64154524,0.6412112,-0.5936886,0.5273199,0.1372266,0.03971099,0.042208195,-0.102574736,0.5936321,0.6671785,-0.15659246,0.009431945,-0.08275476,-0.11432049,-0.010345142,-0.5199085,0.042596035,-0.41498676,-0.23613669,0.6321163,0.40804517,0.30867055,-0.13419527,-0.04382181,0.12655202,-0.18220781,0.34883624,-0.17759481,0.040918224,0.049334545,-0.37902388,-0.24341632,0.6802485,-0.024797421,0.13341777,-0.1370449,-0.35092264,0.25030047,-0.04800248,-0.23349921,0.008781006,-0.6640076,0.16008925,-0.49624714,-0.26459342,0.3841674,0.14365496,0.19573918,0.13749285,0.10894179,-0.44285825,0.63633597,0.08142789,0.6934416,-0.08633285,-0.17005311,-0.14117303,0.34022665,0.11811658,-0.21737821,0.01882102,-0.1719901,0.09266916,-0.5142929,0.3620137,0.04071915,-0.4050673,0.08962314,-0.174621,0.0071943034,0.44204447,-0.062902324,-0.14931448,-0.090942875,-0.119314395,-0.1596538,-0.35342818,-0.092273474,0.33633834,-0.07990547,-0.11825721,0.0018443695,-0.20139037,0.04779776,0.6963335,-0.10255655,0.32690266,0.29236633,0.12364884,-0.5098032,-0.11682543,-0.043464303,0.50705934,-0.16886891,0.077062,-0.24638191,-0.34916255,-0.30227983,-0.03298823,-0.28178668,0.4824475,0.13628492,-0.4801917,0.8776295,0.17285237,1.458367,-0.10126127,-0.42665973,-0.025291044,0.3915313,-0.12108599,0.04254719,-0.43350407,1.1094123,0.57982796,-0.11842407,-0.23027182,-0.26952806,-0.17825545,0.15956523,-0.25218433,-0.12540701,-0.04989206,-0.5555481,-0.25972295,0.2741973,0.3763245,0.2423699,-0.085901156,0.22601968,0.21034148,0.07143371,0.17677332,-0.27062014,-0.15339667,0.47584504,0.25053674,-0.106025405,-0.06485948,-0.47733572,0.35873228,-0.4059201,0.25996906,-0.3323043,0.11383632,-0.21835232,-0.38327914,0.14533776,-0.059082493,0.3762145,-0.33906284,-0.3381439,-0.1638156,0.48892725,0.114277594,0.20211247,0.6534366,-0.29210597,0.1311525,-0.20379351,0.5088111,0.9254531,-0.18265373,-0.08935519,0.27942723,-0.16675243,-0.5460503,0.435578,-0.13730761,0.01857081,-0.13148911,-0.15041408,-0.56664413,0.13596544,0.28356594,-0.27821323,0.11147017,-0.50594634,-0.15896419,0.13756372,-0.4595909,-0.26391393,-0.4245081,0.17900573,0.70318234,-0.24350159,-0.3234525,0.25962383,0.2699251,-0.13183485,-0.25150442,-0.22273795,-0.1584467,0.23425943,0.18938072,-0.65210754,0.03509098,0.16211806,-0.33083364,-0.17170876,0.27010542,-0.33261207,0.08727844,-0.279961,-0.03424868,1.0011946,-0.014321694,0.16372475,-0.35626096,-0.5802132,-1.0030023,-0.33376652,0.59033763,0.24268572,-0.02191362,-0.5929927,0.007625291,-0.20274268,-0.34512183,0.01056689,-0.2945283,0.26735184,0.097104944,0.55433625,-0.31582177,-0.6283785,0.18616049,0.29817858,0.06200012,-0.55910563,0.5252307,-0.029474076,0.910406,0.08322646,0.010028582,0.47901428,-0.49478182,-0.08642746,-0.2693451,-0.22626819,-0.4626558,-0.056376807 -955,0.6949909,-0.11773289,-0.41583735,-0.019228967,-0.38013908,0.28399405,-0.32618877,0.28893808,0.041143224,-0.699907,-0.3555462,0.14678133,-0.15400821,-0.105881214,-0.30988222,-0.736977,0.10711694,0.13169524,-0.2639126,0.83393186,-0.43652982,0.37774655,-0.16996185,0.18673316,0.28306583,0.3705342,0.26754558,-0.06425632,-0.09136633,-0.47327995,0.17644487,-0.0049690465,-0.6739918,0.47188032,-0.08954701,-0.4502816,0.11916445,-0.40146655,-0.3401173,-0.73258656,0.42265394,-0.9204824,0.5073035,-0.0021971373,-0.26821515,0.15754022,0.2850096,0.12723075,0.1369541,0.038653255,0.15390211,-0.17383562,-0.058607683,-0.4291973,-0.2243438,-0.49277526,-0.557696,-0.0549802,-0.4275952,0.024530906,-0.35812286,0.2725149,-0.20927748,0.000212541,-0.31771293,0.016972143,-0.50355947,-0.010320475,-0.03455949,-0.032156054,0.04622917,-0.6722091,-0.2638119,-0.26495135,0.18927242,-0.048122432,-0.019166008,0.5120326,0.12378338,0.51319575,0.15592988,-0.22863261,-0.3142718,-0.16208938,0.44765678,0.48617914,-0.3861346,-0.22577451,-0.23265529,-0.2162706,0.7470633,0.3454752,0.14852849,-0.13346674,0.15521383,-0.10369281,-0.24007383,0.6257165,0.77736974,-0.46974605,-0.13486482,0.2653705,0.526117,0.10098905,-0.2535804,0.078612894,-0.10307048,-0.3285324,-0.40065092,0.23733616,-0.16452448,0.2804557,-0.20637536,0.085277595,0.47659022,-0.41100237,0.41613638,0.24609672,-0.123557165,0.04087483,-0.16771021,-0.30730283,0.35114706,-0.59599197,0.26409242,-0.5003854,0.8932673,-0.040494718,-0.62353545,0.45332056,-0.547985,0.12877963,-0.0033173584,0.68612,0.5961215,0.62488467,0.2182441,0.81583464,-0.21549733,-0.03158835,-0.108796306,-0.124138586,0.03742162,-0.044550594,-0.008070505,-0.2513043,0.09154768,0.024409793,-0.027228603,-0.1852625,0.6383832,-0.46352154,-0.21490662,-0.019504238,0.72359204,-0.34378174,0.052925825,0.7336271,1.1593759,0.88083637,0.044669714,1.1935996,0.13595237,-0.122022636,-0.2834385,-0.1260121,-0.63775784,0.23374686,0.43850005,-0.2512862,0.44221255,0.20992129,-0.04959344,0.19466877,-0.63871384,-0.12017281,-0.20136715,0.51379883,-0.098197505,-0.020212488,-0.4383449,-0.041236207,0.30290562,-0.1533168,0.346944,0.45229632,-0.559632,0.3361649,0.27163082,0.9746262,-0.09650113,0.13486472,0.1256207,0.6721448,0.20792834,-0.037555456,0.2712135,0.19131199,0.1555762,-0.20579672,-0.6816418,0.074962184,-0.30964854,-0.6970686,-0.14820133,-0.43195784,-0.28758913,0.25567466,0.022298392,-0.4005289,-0.0407452,-0.18518558,0.3490038,-2.3955255,-0.05177563,-0.2011934,0.30968446,-0.29448262,-0.41335046,-0.13294116,-0.6356027,0.52026504,0.15331332,0.43326804,-0.6816189,0.36765215,0.7966877,-0.6216093,0.09125536,-0.62389743,0.044803023,-0.16670778,0.53765523,0.020871427,-0.1035739,-0.06574877,-0.10299528,0.58817035,0.2301701,0.13122444,0.33252364,0.43872958,-0.04966841,0.36733568,0.065396756,0.390938,-0.47959453,-0.19591144,0.4897604,-0.3937802,0.5123874,-0.18466176,0.081483476,0.48553717,-0.59716135,-0.49845207,-0.798146,-0.47126308,1.2218788,-0.21647845,-0.7337051,-0.00073600735,-0.2614651,-0.2464044,-0.005782173,0.49873102,-0.30336654,-0.09358358,-0.60325277,-0.04697599,-0.25748476,0.39493662,-0.048256095,0.2439457,-0.41614324,0.9859506,-0.16452573,0.39119643,0.21317379,0.41531843,-0.28827146,-0.51649106,0.113267586,0.88147914,0.6108881,0.21156766,-0.3785437,-0.24889007,-0.053882103,-0.34211192,0.03714744,1.0379992,0.4765023,-0.15452436,-0.21552365,0.47642773,-0.13210429,0.034704376,-0.21993682,-0.3786492,-0.38156503,-0.16379555,0.71987957,0.620877,-0.15784726,0.2632775,-0.12008638,0.39884666,-0.36842126,-0.37867495,0.5113781,0.7132827,-0.21757743,-0.11333183,0.840114,0.7022957,-0.2993409,0.6210183,-1.0174146,-0.40144846,0.31520727,-0.13114713,-0.45999655,-0.033982478,-0.38230532,0.27794373,-0.609031,0.47431195,-0.5654177,-0.396514,-0.6867896,-0.03134887,-2.1381495,0.12763295,-0.24464947,-0.013592156,-0.2957698,-0.25394714,0.31086272,-0.6035632,-0.5063114,0.304291,0.13093087,0.518791,-0.023370806,0.03743328,-0.34938732,-0.41768953,-0.39071915,0.23301095,0.24912244,0.34132317,-0.4072707,-0.23822998,0.21234947,0.025512818,-0.084860794,-0.11967242,-0.4099812,-0.55583286,-0.2155575,-0.2892586,-0.18339978,0.5411657,-0.59128857,0.04608734,-0.2700721,0.024234973,-0.21069075,0.12462802,0.16471688,0.15382852,0.11910127,-0.13409221,-0.0068208505,-0.4634484,0.70495135,0.103009544,0.39909685,0.6201206,-0.26260367,-0.13319919,0.30562457,0.49786693,0.15627839,0.9425194,0.076529875,-0.27741084,0.34351143,-0.1244193,-0.5085591,-0.6784985,-0.11152457,0.08060905,-0.29081294,-0.46315098,-0.17522979,-0.43660927,-1.0080034,0.5198791,0.08301242,0.51771945,-0.18398945,0.46695608,0.39815617,-0.100907646,-0.087112814,0.1724936,-0.07761184,-0.63959825,-0.4144128,-0.73597974,-0.2353151,0.16309205,0.7837231,-0.06400813,-0.13307267,0.3908715,-0.22218545,0.14049993,-0.011493476,0.03106202,-0.020397572,0.5138818,0.121504314,-0.6091528,0.64453083,0.17938921,-0.047726993,-0.45242512,0.35915205,0.74442226,-0.6587893,0.21003488,0.47196245,0.07342977,-0.284516,-0.61505485,-0.049481906,-0.13505915,-0.2903735,0.44608784,0.41812235,-0.82054925,0.38838404,0.14284584,-0.15371102,-0.6828094,0.60122687,-0.056639366,-0.13965064,-0.062523715,0.5047901,0.19331002,0.039390363,0.10980134,0.4178992,-0.34911218,0.33832246,0.042860128,-0.051954113,0.28321308,-0.26196066,-0.46550962,-0.80851245,0.2456436,-0.6606074,-0.4170296,0.40954116,-0.0009200481,-0.061895683,0.3262525,0.37265846,0.5980015,-0.26601264,0.21903491,-0.08401636,-0.102149375,0.57066524,0.4011175,0.52182424,-0.4442083,0.7354565,0.17869195,0.01096979,0.20637694,0.26456988,0.3191009,-0.10453452,0.39652982,0.065405674,-0.045942947,0.0397216,0.7596268,0.46958044,0.3749554,0.12813312,-0.25326356,0.30672348,0.059690777,0.30471987,-0.0012368972,-0.7464232,-0.23141773,-0.035215102,-0.07157945,0.42405975,0.14035605,0.2942994,-0.17510591,-0.05459641,-0.019499917,0.04725879,-0.21508922,-1.2218922,0.15437937,-0.0053226626,0.727313,0.6472987,-0.19528945,0.20699373,0.6965781,-0.27423576,-0.014882023,0.4352284,0.16569728,-0.4411247,0.31514513,-0.42278436,0.23624992,-0.12692167,0.13956285,0.016749356,-0.1154766,0.3257995,0.8765907,-0.252474,0.091762856,-0.04579238,-0.34633777,0.10079081,-0.12919234,0.36989358,-0.44232163,-0.3308624,0.5875068,0.3912028,0.58983314,0.00051454856,-0.047217663,-0.20624854,-0.21302843,0.27650613,0.03678624,0.09249317,-0.24361323,-0.45556405,-0.32490832,0.5281027,-0.12968506,-0.0010999441,0.06705399,-0.2349651,0.24446808,-0.03596053,-0.09567864,0.00013985083,-0.6657854,0.11523194,-0.14495888,-0.38072756,0.1881966,0.059036914,0.18298642,0.24722873,-0.0683694,-0.08476036,0.20614961,0.32131135,0.4668855,0.06774413,-0.19334064,-0.4519872,0.13985373,0.16284825,-0.336895,0.1002812,0.030430097,0.3243238,-0.6836357,0.3941407,-0.23807767,-0.3455092,0.060997512,-0.20932968,-0.27515525,0.624493,-0.034610685,-0.20580666,0.09712553,-0.07025279,-0.32213253,-0.19593757,-0.16566974,0.09061667,0.063746616,-0.05847464,-0.21529484,-0.32363793,-0.12559494,0.17238998,0.13047062,0.20335929,0.43158516,-0.055337217,-0.5569203,-0.079674534,0.24702397,0.5516992,-0.009746606,0.17954943,-0.14490397,-0.6416159,-0.49273145,0.4324605,-0.14835654,0.099998474,0.10002002,-0.41092828,0.6187433,-0.20477279,0.97333455,0.046579566,-0.31028253,-0.12870303,0.72562313,-0.16592279,-0.021912782,-0.355652,1.0849102,0.50698715,-0.27039957,-0.06263642,-0.42152098,-0.07495262,0.1925337,-0.2009957,0.030537091,0.07849883,-0.63801104,-0.070495404,0.22467582,0.4687392,-0.12468959,0.0034052224,-0.08767304,0.2130664,0.21113355,0.6167915,-0.37399417,-0.54450166,0.47700214,0.091128975,-0.10795907,0.26386452,-0.29794216,0.17025137,-0.69248766,0.10933674,-0.6679419,-0.017180903,-0.13734078,-0.40434858,0.26664415,0.12024032,0.43748686,-0.49173197,-0.59930456,0.050032377,0.33267227,0.14733627,0.32246172,0.42737374,-0.068403706,0.008605827,-0.010039793,0.5127985,1.2230132,0.008114135,-0.08993937,0.19977225,-0.6509284,-0.84526545,0.2209222,-0.5363384,0.017648298,-0.023619175,-0.59186774,-0.30631992,0.22291125,0.058343153,0.07166035,-0.008779622,-0.8988958,-0.3067689,0.04528308,-0.27419335,-0.25062767,-0.21824318,0.26872033,0.8390278,-0.38193133,-0.31266072,-0.17601348,0.2505396,-0.40742347,-0.6513447,-0.057439223,-0.22192486,0.30444866,0.09402085,-0.16425923,-0.16901706,0.2116579,-0.50505424,0.046688113,0.2312701,-0.48920372,-0.022248112,-0.16490188,0.2891009,0.572086,-0.116879925,-0.045367368,-0.30629432,-0.5207484,-0.7743174,-0.41612688,-0.084603466,0.45595175,0.0566437,-0.44417027,0.025053611,-0.2498624,0.05369126,-0.046211533,-0.5521752,0.6354813,0.24158779,0.42958105,-0.046283416,-0.8337498,0.0943429,0.11458738,-0.011919599,-0.5943269,0.524564,-0.21381705,0.96891534,0.17036428,-0.006432171,-0.08200126,-0.7038953,0.26492456,-0.27158022,-0.1655865,-0.9038918,0.32193688 -956,0.40141532,-0.012814947,-0.5077764,-0.12137041,-0.5222083,-0.23824188,-0.34106776,0.2580197,0.2949437,0.13232315,-0.13330835,0.04549216,0.007666232,0.36572346,-0.07969342,-0.58781445,-0.06293165,0.16386293,-0.6722861,0.7207995,-0.402219,0.34739524,0.06912546,0.4436141,0.30304042,0.47116005,0.24084152,-0.028167235,-0.19843785,-0.26492605,-0.110859156,0.2671472,-0.6162988,0.15387411,-0.28977013,-0.19345988,0.16460611,-0.49376795,-0.3052458,-0.7819533,0.075924866,-0.8730672,0.59967905,-0.0414232,-0.16892794,-0.34843102,0.37274686,0.47652918,-0.14734752,-0.12197819,0.19893561,-0.2097339,-0.039481856,-0.29608047,-0.09410552,-0.5230671,-0.45519403,-0.1183203,-0.6944485,-0.32882854,-0.10553673,0.24815884,-0.32146582,-0.14862578,-0.110501416,0.34974825,-0.4427754,0.10592575,0.3085822,-0.32550982,0.13875446,-0.4802508,0.10105205,-0.15083943,0.45148817,0.14451195,-0.18437141,0.48039505,0.31221685,0.26243088,0.31856543,-0.31983465,-0.28224766,-0.28029212,0.088850565,0.45958474,-0.08488833,-0.29124436,-0.24930115,0.07413446,0.44655818,0.40356445,0.15023085,-0.23170276,-0.00044786633,-0.17973325,-0.124316595,0.5875694,0.5209821,-0.20810984,-0.22919096,0.38362643,0.5633902,0.47163406,-0.39067748,0.018612433,-0.0052631935,-0.41091117,-0.1081946,0.06939346,-0.09252004,0.46704474,0.053852383,0.051050637,0.92775714,-0.1093703,-0.06744887,-0.05648991,0.0700433,-0.27696648,-0.3462716,-0.27156177,0.1026816,-0.48860106,0.09037938,-0.09273883,0.7050486,0.016686382,-0.64707834,0.38984188,-0.61335003,0.05095723,0.07706401,0.5985509,0.5393103,0.55464214,0.37437811,0.76699054,-0.0800765,0.1869932,0.04115486,-0.46254203,0.06424984,-0.32275453,0.12773325,-0.43928587,0.16897339,-0.23514095,0.025979655,-0.04135853,0.30170584,-0.4886898,-0.098085046,0.24843232,0.9414831,-0.2533981,-0.12395013,0.69335157,1.1884694,1.0205187,-0.1281294,0.9252003,0.31444913,-0.07520612,0.037255716,-0.30413258,-0.6437443,0.15872963,0.39733556,-0.17155658,0.38863862,-0.09062889,-0.017564291,0.3158715,-0.32564554,-0.018929236,0.07886546,0.32243195,0.25280657,-0.11932931,-0.4768282,-0.13386355,-0.0017995059,-0.05177258,0.22423717,0.26785785,-0.33596742,0.35356203,-0.015579009,1.4197466,-0.12950587,0.019453986,0.107063726,0.7481805,0.31644645,-0.061176196,0.1265785,0.60576874,0.26335734,-0.0008766373,-0.47397357,0.30278152,-0.44531468,-0.44615567,-0.12611534,-0.42682716,-0.23012343,0.25136614,-0.42333668,-0.09019225,-0.07647743,-0.0601295,0.30786875,-2.869967,-0.18896116,-0.18077183,0.2181086,-0.28017,-0.079344206,0.11324307,-0.47120172,0.1274767,0.23735365,0.47181037,-0.5652725,0.5154606,0.661685,-0.583909,-0.12817906,-0.54830587,0.0015408879,-0.114735246,0.6548959,-0.08197626,-0.055170693,-0.040867794,0.18959482,0.7320618,0.16138935,0.1437048,0.549954,0.29265213,0.12850991,0.41852984,0.03743816,0.5942117,-0.25208184,-0.1980202,0.3675854,-0.27832267,0.37592855,-0.10785346,0.044629924,0.7003163,-0.38649604,-0.8255026,-0.56451225,-0.24622396,0.91055787,-0.37569454,-0.5351817,0.21926285,-0.06772767,-0.1566102,0.13484727,0.5895745,-0.17785527,0.22506733,-0.47351533,0.04029595,-0.12375625,0.1801199,-0.014603762,0.09609644,-0.23923212,0.6737144,0.030155638,0.5709091,0.15067562,0.36615983,-0.24308255,-0.44478995,0.15747426,0.65612435,0.38328376,-0.09657116,-0.17510095,-0.3352415,-0.091768965,-0.29798564,0.07909444,0.5347376,0.6974144,-0.21930529,0.18348779,0.35470232,-0.15730104,-0.04647367,-0.16398826,-0.24346001,0.021411275,0.24334595,0.3215838,0.9056591,-0.19881783,0.52245706,-0.14078905,0.28086922,-0.17904623,-0.5740605,0.6835144,0.4298605,-0.2822744,-0.14174148,0.4980188,0.5013183,-0.4965564,0.4689246,-0.71914315,-0.12925915,0.6310537,-0.029776571,-0.5796397,0.18310149,-0.16823894,0.11438214,-0.8115701,0.41389766,-0.32809633,-0.39620343,-0.4242368,-0.12571612,-3.000859,0.058832176,-0.16368762,-0.19081208,-0.28661266,0.012261708,0.310437,-0.74392813,-0.5374633,0.08529913,0.19276902,0.4436344,-0.14063278,0.16218771,-0.24676369,-0.2741134,-0.23322651,0.36895135,0.016408818,0.39330614,-0.31702718,-0.50533956,-0.067789696,0.043278582,-0.57966036,0.18764171,-0.5504522,-0.26739985,-0.054293178,-0.5791709,-0.18032025,0.591879,-0.42607778,0.0874873,-0.30515727,0.073672704,-0.25921458,0.113406196,0.18165855,0.1383431,0.18718295,-0.04109342,0.0359932,-0.37803954,0.45004413,-0.11663588,0.4782768,0.10771645,0.016515834,0.17901243,0.41804692,0.51900965,-0.26542795,0.9906814,0.42299905,-0.113419905,0.29985395,-0.30121383,-0.239805,-0.57845396,-0.3804573,-0.080871984,-0.3785944,-0.6058572,0.009917382,-0.31639975,-0.7978998,0.6307917,0.026420541,0.49472174,-0.05506646,0.09176664,0.36716846,-0.30289987,-0.06990995,0.014152744,-0.18447587,-0.5635558,-0.18287887,-0.59011406,-0.5467417,0.14093521,0.83300215,-0.25871423,-0.09885854,0.014218315,-0.4106097,-0.004402415,0.10218067,0.02499186,0.22695789,0.390944,-0.05559944,-0.62456065,0.35735467,-0.058556914,0.030733492,-0.42468703,0.053933375,0.6524128,-0.71735775,0.58392876,0.18453808,0.12799856,-0.32630718,-0.5221498,-0.23678038,0.040337894,-0.1483984,0.5439355,0.18561956,-0.7639044,0.4131208,0.09450214,-0.58519214,-0.62984747,0.2727127,-0.17708646,-0.2616803,-0.011553421,0.28021222,0.08379211,-0.1039481,-0.21327439,0.18802384,-0.33373126,0.18248424,0.25300664,-0.13360296,0.33650842,-0.087225564,-0.34759447,-0.73395294,0.08046477,-0.46540177,-0.39450333,0.4099455,0.01947598,-0.09096625,0.1294933,0.22843264,0.28491715,-0.16098467,0.19588928,0.027372463,-0.27997914,0.37663487,0.49285692,0.4636612,-0.43916368,0.58946365,0.190266,-0.2463286,0.1491999,0.0023770968,0.28756636,-0.101930246,0.40548703,0.02349492,-0.012792424,0.24542548,0.5908248,0.21766533,0.51588196,0.084314324,-0.19378565,0.45353362,0.007471303,0.25945583,-0.02715169,-0.57983655,-0.103673205,-0.14224765,0.09403561,0.5966498,0.39728495,0.30657133,0.2004293,-0.20275797,0.049351268,0.12877005,-0.21456629,-1.3102206,0.34587842,0.46306974,0.8885706,0.21512532,0.09527337,-0.22529055,0.88660043,-0.3001756,0.029488983,0.4805226,0.17419952,-0.48301098,0.76422274,-0.48320666,0.48739108,-0.08888361,-0.1311418,0.21253294,0.10351087,0.45502275,0.7913429,-0.20831053,0.003731745,-0.09605595,-0.28268987,-0.06962264,-0.24644178,0.084324405,-0.35512313,-0.50648886,0.69354814,0.3879492,0.38026258,-0.19209573,-0.04311318,0.08282873,-0.106614254,0.18894388,-0.10261683,-0.08961343,0.073198214,-0.44442362,-0.2590353,0.666612,-0.10869967,0.10951779,-0.19753994,-0.28299457,0.13074522,-0.19609417,0.019720905,0.006471747,-0.72069705,0.08484366,0.025047142,-0.57622916,0.54040974,-0.22437574,0.091250926,0.05797694,-0.06283893,-0.08829351,0.49142107,0.15697818,0.68927413,0.0024461427,-0.1826084,-0.21708962,0.16169003,0.19528215,-0.18808177,0.057132967,-0.35497406,0.008109748,-0.6133795,0.48297527,-0.28508556,-0.495565,-0.07795849,-0.21375646,-0.06831939,0.6035853,0.06305849,-0.24037625,0.065758,-0.32919723,-0.5047765,-0.07456876,-0.2859974,0.18277435,0.21148112,-0.21239875,-0.1253904,-0.1796995,0.019557988,0.42952365,-0.14407201,0.46487018,0.20837453,-0.04738502,-0.12525027,0.040071834,0.23426907,0.45833904,0.14852749,0.24421152,-0.19940208,-0.35381338,-0.41100147,0.17161182,-0.15844369,0.24341415,0.14233463,-0.33351427,0.96321684,0.058912117,1.4405264,0.14499193,-0.39522925,0.2599389,0.63346696,-0.072578765,0.15552145,-0.49187028,1.0385053,0.4851994,-0.10203872,-0.08463363,-0.49811667,-0.13243727,0.23666434,-0.44627762,-0.022992253,0.0059492867,-0.4980273,-0.19190216,0.07083922,0.1871377,0.09750896,-0.03528247,-0.12573327,0.1158086,0.17004225,0.43262067,-0.52953506,-0.25553763,0.3360385,0.24289718,-0.09267889,0.062861994,-0.46018606,0.47133234,-0.64646053,0.21461192,-0.5326523,0.23908158,-0.42771754,-0.47411174,0.08322595,-0.10104696,0.4362231,-0.39827445,-0.36841905,-0.09736852,0.48751342,0.123718545,0.098698,0.6655989,-0.24295211,0.015959991,-0.009055972,0.5620363,0.967701,-0.46610996,-0.086782865,0.2809029,-0.42957896,-0.6177054,0.34109876,-0.48345956,-0.10217737,-0.15841705,-0.57832927,-0.51892775,0.2144329,0.03969615,-0.039290976,0.0030179957,-0.5649429,-0.08504152,0.24244754,-0.20408373,-0.23228207,-0.15099214,0.30851337,0.86465925,-0.21804349,-0.5861193,0.031042771,0.20485362,-0.20458262,-0.5073563,-0.05969082,0.009299827,0.35492522,0.078998104,-0.37696713,-0.09865988,0.3356228,-0.54447967,0.015372385,0.23845543,-0.38700894,0.16870697,-0.23360504,-0.004049599,0.9232488,-0.28156143,-0.22556092,-0.6756163,-0.5777178,-0.92730844,-0.62892526,0.012157611,0.23256403,0.001338172,-0.43019444,0.07072794,-0.20102951,-0.100541785,0.03639013,-0.6898978,0.30325925,0.08379528,0.57003814,-0.32095775,-1.0723782,0.17321578,0.13110504,0.03933462,-0.7715848,0.53770036,-0.1887575,0.89245784,0.14031525,-0.0689608,-0.040815074,-0.42215523,0.09500973,-0.3841919,-0.21253824,-0.8252143,0.22505918 -957,0.5601714,-0.21992618,-0.4925033,-0.2865319,-0.20425142,-0.12545921,-0.20218253,0.7356414,0.46201858,-0.048678335,-0.31483284,0.10510975,0.020352982,0.2732828,-0.11803248,-0.9750952,-0.008485754,0.11581352,-0.582751,0.7316394,-0.45140085,0.23461246,-0.16200106,0.45499682,0.082175545,0.29138875,0.22441947,0.25650924,0.089606136,0.04346391,0.11397307,0.34484157,-0.5607407,0.2276411,-0.22899461,-0.28750947,-0.17511235,-0.32389748,-0.057725057,-0.924081,0.07428452,-0.62708586,0.48182914,-0.014612204,-0.48976508,-0.06578777,0.16965495,0.12222733,-0.3827127,-0.13520809,0.03040435,-0.11324639,-0.25504085,-0.3158438,-0.02975218,-0.5508621,-0.5344138,-0.14817023,-0.53516865,-0.09466225,-0.089355744,0.20239174,-0.33305928,-0.17416297,-0.13323641,0.57229304,-0.31505787,-0.21575212,0.4434278,-0.1253428,0.19358271,-0.57016253,-0.08435887,-0.14637674,0.34726468,0.32700804,-0.21866657,0.286373,0.36274195,0.46346855,0.3077381,-0.36440682,-0.30237743,-0.18821026,0.12783979,0.2134934,-0.17876041,-0.35285902,-0.37897888,0.09405742,0.42540273,0.32912335,0.37728313,-0.012664606,0.017428791,-0.07035608,-0.103608705,0.72313094,0.5274587,-0.29577675,-0.30614397,0.27431977,0.728762,0.25483286,-0.32182768,0.018099913,-0.057861734,-0.4159485,-0.17648594,0.050355673,-0.13156696,0.5398292,-0.11091723,-0.03927533,0.80252224,-0.1286369,-0.13522604,0.20970695,0.13598128,-0.18818288,-0.4529166,-0.2689166,0.24666737,-0.45257306,-0.13769394,-0.4042491,0.48214224,0.08639407,-0.6308754,0.26577592,-0.44721827,0.22101896,0.07862468,0.54401225,0.8298301,0.47459102,0.34656549,0.6953015,-0.037872564,0.045166597,0.17451112,-0.18158017,0.21588385,-0.3469155,0.10810164,-0.4970391,0.19515729,-0.1897064,-0.053133678,0.19797571,0.43747675,-0.53459567,-0.3423603,0.20269497,0.71004766,-0.13551718,-0.1437735,0.7580185,1.2483101,1.1006471,-0.096085824,1.2247771,0.22226517,-0.105534874,0.04300892,-0.24710636,-0.5893945,0.2214437,0.3337469,-0.3156084,0.6548147,-0.20551391,0.014549832,0.3636574,-0.37057832,-0.09494292,0.18998308,0.52596396,0.094901085,-0.28591898,-0.6487765,-0.07896744,0.07140273,0.07919478,0.2696602,0.41169557,-0.19670041,0.39548182,-0.06425201,0.75533414,-0.105604924,-0.056824993,0.06694416,0.505035,0.30717614,-0.10983777,0.06465263,0.45541546,0.20407826,-0.06345332,-0.53509295,0.31895217,-0.3887818,-0.28982413,-0.019373283,-0.5042513,-0.18259609,-0.070609726,-0.22207554,-0.16935037,-0.14769506,-0.1628056,0.29949215,-2.7195647,-0.3475497,-0.20051439,0.2563393,-0.15736294,-0.020013396,-0.050984606,-0.5323355,0.2606486,0.2946015,0.49415493,-0.60440034,0.5511028,0.6121594,-0.5956381,-0.06286005,-0.7221017,-0.124657266,-0.07323062,0.6059949,0.09526292,-0.101471126,-0.06649738,0.5213704,0.7157266,0.42435285,0.28497604,0.6092013,0.38304064,-0.2609457,0.33458433,0.03020446,0.63513726,-0.17608292,-0.18847679,0.2659984,-0.48083684,0.37317872,-0.30617875,0.13017108,0.605779,-0.30169687,-0.8740916,-0.4372985,-0.09309701,1.1911281,-0.38422897,-0.4285107,0.12775846,-0.18357866,-0.084336035,0.108055204,0.63645554,-0.11142256,0.15332136,-0.6934615,-0.028134113,0.08990249,0.049390897,-0.10372745,0.019318681,-0.4782729,0.7440494,-0.09112412,0.51581365,0.07577985,0.28893104,-0.31895941,-0.4655905,-0.007835937,0.80698705,0.5231121,-0.17720532,-0.24849813,-0.23754644,-0.2661035,-0.08202003,0.048288148,0.7170861,0.6151046,-0.14747046,0.117328145,0.3474323,-0.028111437,0.12797318,-0.1281215,-0.26190194,-0.0842972,0.16453479,0.48424125,0.95306396,-0.30176488,0.2915908,-0.1475998,0.41279802,-0.21235877,-0.52005094,0.57773566,0.52812237,-0.3033113,-0.1632364,0.6265798,0.5427107,-0.5285062,0.7499678,-0.57473785,-0.30847248,0.57453924,-0.13520534,-0.35657915,0.174317,-0.27029943,0.06302807,-0.81627196,0.33529517,-0.4071804,-0.3487999,-0.51915985,-0.12617178,-3.0605948,0.26348767,-0.009618432,-0.10968598,-0.40111563,0.0076818913,0.36276817,-0.87550014,-0.81240875,0.021827957,0.12388077,0.63969195,-0.17103074,-0.12380549,-0.21673787,-0.6200275,-0.09322473,0.36333945,0.1066294,0.36782822,-0.10416695,-0.41872084,0.01354291,0.06715887,-0.5461599,0.07030707,-0.49585494,-0.50391823,-0.14121391,-0.62449,-0.07942376,0.5729241,-0.34921467,0.047040183,-0.35981444,0.1319011,-0.0144385,0.23357706,0.02383673,0.11198733,0.23365521,-0.13410856,0.18295836,-0.17929657,0.32280353,-0.04161669,0.46982506,0.2387814,-0.1326627,0.30158082,0.63448,0.60694355,-0.16821598,0.98027927,0.32399788,0.008737411,0.37585273,-0.23434572,-0.37191546,-0.49353823,-0.31613135,0.008422732,-0.28880435,-0.4578905,-0.008895397,-0.3619256,-0.89264864,0.46133247,-0.11170754,0.550559,-0.14986128,0.3304144,0.5269379,-0.20522797,0.10898469,-0.009855551,-0.36316285,-0.37183544,-0.23357208,-0.68764,-0.5394632,0.253937,0.68735653,-0.3709096,0.010360536,-0.083677895,-0.1966343,0.10521972,0.21224399,0.16985202,0.06776717,0.27010444,0.11771417,-0.43048736,0.27443323,-0.010054852,-0.07870407,-0.5515688,0.11056005,0.6481568,-0.7540112,0.6500361,0.3558797,-0.057031006,-0.25326833,-0.7151658,0.0004897515,0.1883357,-0.04639696,0.66365385,0.24905543,-0.82380104,0.48822102,0.11250564,-0.48522234,-0.6529288,0.3800938,-0.19668859,-0.07213231,-0.3146271,0.4435588,0.063476406,-0.038740505,-0.37308976,0.34567484,-0.36576727,0.056838423,0.20929058,-0.11818919,0.5010969,0.008821079,-0.10011243,-0.71873254,0.0015216371,-0.63076043,-0.3062125,0.38043118,-0.023545966,-0.010044803,-0.018603139,0.3190094,0.2712903,-0.27110323,0.31706688,0.11399835,-0.5457081,0.52188385,0.52508193,0.5759446,-0.24984993,0.42541894,0.23792945,-0.23405927,0.11398839,-0.120536566,0.31817913,-0.025614897,0.51831466,0.09330217,-0.03178972,0.31106904,0.42231992,0.010993473,0.44558263,0.25012746,-0.20775749,0.21604256,-0.15495168,0.28098252,-0.26447436,-0.49558532,-0.07233704,-0.122506104,0.14538285,0.50519675,0.29507825,0.19136149,0.20606048,-0.21620673,0.09779038,0.3212899,-0.112580635,-1.5974818,0.21855839,0.2838428,0.894938,0.4288799,0.244384,-0.32030773,0.472918,-0.1316427,0.09180337,0.6376186,0.11004096,-0.4984771,0.75421244,-0.57422256,0.40814397,-0.26049832,-0.085648775,0.045169767,0.12542808,0.48469892,0.8207715,-0.17678685,0.013220825,-0.12677632,-0.15074854,0.22719455,-0.3871977,0.26852044,-0.25278375,-0.3968811,0.61631787,0.3545549,0.26297653,-0.3536605,-0.09959755,0.14624566,-0.24786341,0.22907577,-0.15632677,-0.062843286,-0.04419209,-0.53836566,-0.13521905,0.34367073,-0.05101307,0.087094046,-0.14497776,-0.25231984,-0.04327932,-0.0031164635,0.03630082,0.094502725,-0.6883974,-0.14519952,-0.22137274,-0.4875749,0.6243129,-0.11955614,0.090395905,0.11002708,0.08716317,-0.2545586,0.14421006,0.049555957,0.573039,0.16287814,-0.12937182,-0.23674814,0.15101026,0.21717739,-0.31585503,0.077892005,-0.38590685,0.3399855,-0.3494699,0.59436685,-0.17819472,-0.620953,-0.134457,-0.17990911,-0.05376959,0.40915933,-0.23581557,-0.22301172,-0.20595837,-0.28240487,-0.27200133,-0.05413619,-0.11261951,0.33162805,0.052147854,-0.1345416,-0.22735791,-0.0009178966,0.047560513,0.5293487,0.0610403,0.30061093,0.7457016,-0.046363086,-0.36769733,0.20814812,0.39776543,0.32357565,0.26138237,-0.081435956,-0.622942,-0.42128685,-0.46524343,0.24631006,-0.123863526,0.038351227,0.050491884,-0.20690393,0.80578166,0.038701687,1.4201536,-0.048829872,-0.3742223,0.11456671,0.65151757,-0.17755301,-0.07117029,-0.4985133,0.9850314,0.51846427,-0.40579596,0.026144201,-0.6221716,-0.23306222,0.34959492,-0.43774548,-0.27064306,-0.14878632,-0.66155905,-0.26399612,0.16666435,0.17236477,0.17149496,-0.1850037,0.09315517,0.1957456,0.17741652,0.4003537,-0.71640396,-0.20442444,0.22931391,0.2564503,-0.04305576,0.107433915,-0.35253444,0.31605706,-0.85172874,0.16472425,-0.40574896,0.12577604,-0.16891284,-0.5937213,0.09154755,0.03912565,0.3193557,-0.3489946,-0.4784707,0.00835863,0.5159337,-0.05862248,0.058263537,0.46046472,-0.36595833,-0.044526022,0.2332396,0.6622216,1.223261,-0.16370404,-0.07444418,0.106335014,-0.51221085,-0.95856786,0.12932646,-0.5278347,0.22895788,-0.34500977,-0.5815897,-0.6498389,0.25467125,0.12088106,0.05067106,0.101613484,-0.40651953,-0.22507632,0.04442379,-0.36331913,-0.08591708,-0.07139367,0.1422084,0.69242555,-0.3399831,-0.36447445,-0.14631233,0.24619357,-0.1936245,-0.59935766,-0.08316368,-0.17257251,0.33714172,0.033479154,-0.2805465,-0.005748575,-0.067194395,-0.52958584,0.19900815,0.2513952,-0.24884248,0.17276978,-0.41790923,0.05259038,0.8219616,-0.01514382,0.028212627,-0.44114852,-0.58157665,-0.79548126,-0.4510649,0.15572435,0.034797907,-0.19802476,-0.69030637,0.13404232,-0.3144561,-0.06447921,0.19357596,-0.42058966,0.2549992,0.117850624,0.47286773,-0.21970432,-0.8675199,0.27924374,0.29756305,-0.0973891,-0.7438918,0.62063843,-0.29382437,0.6484738,0.12635131,-0.04310539,-0.12506162,-0.39657247,0.08126833,-0.39077958,0.00071618956,-0.5254312,0.15140669 -958,0.61249304,-0.19665167,-0.8522091,-0.043778487,-0.24296054,0.161942,-0.24101862,0.43948022,0.43319193,-0.35652152,-0.42117676,-0.07619542,0.05022005,0.09568981,-0.14547288,-0.7313519,-0.101359546,0.28928262,-0.66859925,0.46719098,-0.16631344,0.25021425,0.10392475,0.6270949,0.09328775,0.1875016,-0.14477043,0.057518095,-0.16505888,-0.05796534,-0.095273085,0.34847155,-0.51975965,0.26291662,-0.32413077,-0.31144154,-0.2143391,-0.62877846,-0.25270393,-0.6862226,0.29097968,-0.7912275,0.68072546,0.1875056,-0.3777594,-0.21015659,-0.09200314,0.19105932,-0.22161928,0.14689314,0.12930943,-0.24205676,-0.17603703,-0.22710769,-0.40849608,-0.09910141,-0.5706121,0.027134588,-0.39248258,0.19132032,0.09753048,0.17712186,-0.36128783,0.019237686,-0.29765517,0.3764562,-0.24436697,0.13527668,0.46230274,-0.19956748,0.21190977,-0.46953171,-0.15751477,-0.10798129,0.45116144,-0.015315065,-0.5219988,-0.049720924,0.17785227,0.6281625,0.027420009,-0.11563356,-0.2122548,0.08465471,0.10758934,0.51954067,-0.06780344,0.014242873,-0.27104256,0.004009998,0.3802547,0.4016468,0.12599833,-0.33837304,-0.04934449,-0.3768266,0.0746425,0.2563267,0.42568326,-0.031223923,0.0068822624,0.27213067,0.43889618,0.302667,0.030972917,0.24622913,0.14888301,-0.66195613,-0.24375448,0.15896657,-0.038498018,0.64296186,-0.13096449,0.30257696,0.5164916,0.034312874,-0.066795014,0.12028035,0.16901839,-0.021074818,-0.2971117,-0.15980558,0.39847466,-0.4956422,0.083692595,-0.2716382,0.3808834,0.083394326,-0.6691492,0.27666456,-0.58740014,0.20301738,-0.031170428,0.6152681,0.95921814,0.35231027,0.030187493,0.82959634,-0.32520312,0.051647563,0.0013201416,-0.14264421,0.0823089,-0.058332287,0.051300205,-0.51864636,-0.19050686,-0.025500815,-0.19131543,0.31273392,0.2507502,-0.34312803,-0.31754574,-0.17133126,0.64430356,-0.22894469,-0.09324317,1.0099627,0.98237896,0.7867713,0.116090275,1.419211,-0.016311537,-0.16743112,-0.13145205,0.075055696,-0.8207108,0.28917426,0.16444163,-0.45481986,0.58983773,0.078980125,-0.10474306,0.41788405,-0.38885516,0.055972107,0.045218922,-0.12374699,-0.1901543,-0.013314104,-0.58304113,-0.3686598,-0.05512443,0.119616225,0.06630913,0.24571447,-0.07668481,0.53345865,-0.005032009,1.1519113,-0.09948413,0.088310234,0.061293066,-0.10882026,0.23306179,-0.31785637,-0.31175637,0.27829581,0.39938492,0.08311932,-0.4920269,-0.030874813,-0.17222895,-0.14395973,-0.21424031,-0.18063542,-0.09648068,-0.25579163,-0.43582636,-0.1601855,-0.1169129,-0.40857857,0.32040268,-2.4685903,-0.30569515,-0.12580717,0.44736218,-0.22151804,-0.37188607,-0.46912473,-0.4095865,0.25163627,0.2527556,0.40584913,-0.5946446,0.29037327,0.26219717,-0.5229704,-0.14396529,-0.70934963,-0.01205875,0.18838081,0.03608951,-0.049661033,0.073822044,-0.114711426,0.15086468,0.41083008,0.061409015,0.057300113,0.4240767,0.53897905,-0.10235368,0.19871381,-0.08878423,0.5459491,-0.4918167,-0.20525834,0.35616463,-0.37740692,0.43604356,-0.03946531,0.11406618,0.5097377,-0.5935512,-0.47857475,-0.5163282,-0.35119322,1.1833811,-0.37904674,-0.25544947,0.14757952,-0.5426585,-0.4617743,-0.0051974403,0.8450388,-0.11077031,-0.032490365,-0.866913,-0.38966203,-0.06785543,0.27624542,-0.14078522,-0.02936486,-0.45044646,0.5828804,-0.038868725,0.49075556,0.5355273,0.16425292,0.06162583,-0.44771728,0.2700513,0.89309835,0.49338573,0.24118114,-0.33881527,0.100092255,-0.3509496,0.25127906,0.07609219,0.7033676,0.56301844,-0.18859383,0.17280476,0.3566958,0.09859754,0.15196247,-0.05272957,-0.19986896,-0.24825346,-0.15543154,0.63079906,0.92899865,-0.15517926,0.11276518,-0.013263121,0.36623636,-0.21722904,-0.5004126,0.55924225,1.0659177,-0.16195174,-0.24179013,0.82944995,0.4226387,-0.3808972,0.45573348,-0.47953027,-0.33370957,0.33403215,0.06378205,-0.43046004,0.30216455,-0.33369634,0.26835814,-1.0601233,0.19275752,-0.10876372,-0.48803204,-0.55816925,0.014796227,-2.3554385,0.29988465,-0.26901764,-0.2158746,-0.28852862,-0.3056876,0.26570374,-0.42986298,-0.75876456,0.1462737,0.06298755,0.5202314,-0.37768096,0.1678343,-0.054549556,-0.5479527,-0.075422384,0.15318353,0.5103668,0.29346707,-0.15250537,-0.2705285,-0.3345619,-0.11105935,-0.26315492,0.029245328,-0.7320042,-0.56426203,-0.10292612,-0.55124557,-0.012836456,0.55686015,-0.32463485,-0.25382432,-0.18257847,0.07896145,-0.023143638,0.22617301,0.03279794,0.28547773,0.13844167,0.017663652,-0.16747025,-0.12360792,0.3157486,0.16593984,0.18969296,0.33349356,-0.2646464,0.4008437,0.3719979,0.7292102,-0.3026523,0.8530053,0.31052965,0.10969981,0.15455034,-0.069931425,-0.6244805,-0.48490867,0.013724526,-0.12632975,-0.5580902,-0.39431867,-0.1562581,-0.49732047,-0.99811536,0.34995213,0.11231907,0.03883056,0.1517683,0.41268522,0.4936511,-0.22350895,-0.007934904,-0.12314482,-0.23999667,-0.36851034,-0.4089415,-0.47469172,-0.4514247,0.1524057,1.1889203,-0.14852498,0.25042352,0.22317187,-0.35648283,0.031739455,0.252983,0.1357874,-0.015201437,0.57700527,0.1410409,-0.3568632,0.45679992,-0.019977186,-0.25577047,-0.6645974,0.008459973,0.6470436,-0.7413548,0.71251154,0.3609897,-0.07139962,-0.1591328,-0.5164375,-0.31241146,-0.062788464,-0.15453836,0.60720235,0.49779397,-0.509263,0.21266484,0.06647222,0.00023030341,-0.665112,0.5744087,-0.14945576,-0.1988151,-0.040229063,0.41853613,-0.31602556,0.06361653,-0.054409195,0.13067819,-0.109680966,0.2544991,0.23647761,-0.16376755,0.09746552,-0.14711407,-0.025912398,-0.7279882,0.15042095,-0.70319295,-0.26956606,0.4451787,0.13936432,0.122525096,-0.0003241837,0.38359565,0.43475446,-0.45733365,0.11836754,-0.24157366,-0.28069296,0.33706254,0.45816556,0.56403595,-0.5080609,0.48908672,0.074514225,0.039446764,-0.039565515,0.28868857,0.37672848,-0.070808396,0.3625263,-0.009320974,-0.099662304,-0.04017646,0.7137028,-0.021868825,0.23841324,0.33345333,0.08859575,0.23813012,-0.01605446,0.27014452,-0.27888843,-0.5356525,-0.10299411,-0.324452,0.06776561,0.33022824,0.06871069,0.20245068,-0.19306111,-0.24502496,0.04142426,0.31772295,0.17357926,-1.2247326,0.26031938,0.14911577,0.61232674,0.44964004,0.08551721,-0.057902914,0.3936994,-0.16488521,0.1958654,0.4468699,-0.10252557,-0.37990957,0.51466936,-0.41401115,0.4635333,-0.120033994,-0.060340635,0.13514993,-0.08007814,0.42726773,0.9009119,-0.03233501,0.006295231,-0.020065363,-0.1446399,-0.14667264,-0.41916448,-0.07018709,-0.66427594,-0.2734418,0.7259571,0.550189,0.4774271,-0.4973263,-0.01871572,0.062679246,-0.058298785,0.18591395,0.12191532,0.12510312,0.041860256,-0.7441527,-0.043626342,0.6016959,-0.0121137705,-0.030889463,-0.0031130076,-0.22654895,0.20896801,-0.13477764,0.04871627,-0.16303992,-0.8508218,-0.19477186,-0.73091215,-0.591154,0.11427809,-0.21253495,0.12851544,0.23138742,0.02954499,-0.36622754,0.50351554,-0.1125768,1.1875482,0.11522736,-0.04516809,-0.40530878,0.5578966,0.31067768,-0.3200831,-0.21185103,-0.21102445,0.20932138,-0.3547162,0.44461012,0.06289545,-0.3521995,-0.08264863,-0.0072600124,0.024014875,0.44310722,-0.16840652,-0.11482592,0.27915913,-0.02647087,-0.4238391,-0.1762328,-0.39059234,0.14544754,0.3366789,-0.051326692,-0.123809434,0.048698746,-0.07395731,0.20202427,0.25571793,0.23179789,0.49099857,-0.10526744,-0.32169172,0.04492746,0.27799782,0.57050365,0.1324836,-0.2940435,-0.32849997,-0.38379294,-0.36930832,0.527203,-0.043785617,0.26018834,0.10007497,-0.13049057,0.84747255,0.34366965,0.9173713,-0.017310595,-0.20404053,0.11418243,0.45788902,-0.12816484,-0.3403605,-0.26292807,0.97371036,0.3669843,-0.21990342,-0.0941743,-0.34232083,-0.14726985,-0.10345918,-0.1842058,-0.036841188,-0.14965285,-0.67401636,-0.096611395,0.111754954,0.30761236,0.106702186,-0.12264397,0.20913796,0.26245746,-0.091932334,0.035897188,-0.50581163,-0.19074535,0.3077647,0.17685464,0.07076552,0.13512306,-0.36170945,0.43409118,-0.6915235,-0.0035416603,-0.5303684,0.11252884,-0.011251926,-0.36547524,0.06807496,-0.09613441,0.28459707,-0.572189,-0.15621446,-0.4404499,0.4351224,0.19158117,0.26260647,0.7258171,-0.19804649,-0.10250275,0.18880104,0.6296686,1.1064746,-0.16722342,0.076329716,0.43560272,-0.24896061,-0.60364324,0.053354718,-0.42015186,0.23721778,-0.23212019,-0.35563952,-0.6653727,0.09011762,0.010697931,0.14832172,0.013429684,-0.5455803,-0.11685802,0.27936,-0.20716831,-0.19164908,-0.35728717,0.005828035,0.5716826,-0.007095176,-0.52664727,-0.03332139,0.114331245,-0.16085966,-0.33382288,0.03433801,-0.26376367,0.01654091,-0.005185726,-0.338548,-0.04574656,-0.009122947,-0.47965842,0.14083835,0.15459889,-0.2953844,0.17165525,-0.31577268,-0.33267412,1.1311743,-0.16505174,0.10164289,-0.37795514,-0.61357176,-0.8099502,-0.26607254,-0.039213084,0.22038336,0.16035834,-0.71439636,0.02738497,-0.22419052,-0.00935114,0.01053227,-0.14399609,0.4681135,0.2172664,0.59234333,-0.15938762,-0.8849551,0.20615935,0.10542451,-0.5440198,-0.50403845,0.41326776,0.14218685,0.7466277,0.012370895,0.09595038,0.16298154,-0.66635567,0.11569681,-0.06881661,0.023407374,-0.64366794,-0.092973426 -959,0.59180146,-0.27840123,-0.47444126,-0.10622961,-0.32704818,-0.049511705,-0.3474144,0.5110451,0.23978218,-0.60467815,-0.19455577,-0.080216445,-0.1404771,0.46353582,-0.21208546,-0.6800362,0.07910412,0.16949959,-0.7342745,0.6799032,-0.30974352,0.20289746,0.27339068,0.4595487,0.36095655,0.1613492,0.19089374,0.004081942,-0.20873757,-0.2590977,0.10128409,0.106068715,-0.91592973,0.1918703,-0.35564688,-0.44863665,-0.118245006,-0.48489165,-0.33452183,-0.88145995,0.3144905,-0.9291366,0.62877756,-0.10917449,-0.30838782,0.1294382,0.165649,0.44133687,-0.18121791,0.030128343,0.1949676,-0.2540572,-0.13923399,-0.08761746,-0.097954094,-0.34127888,-0.6227752,0.20661014,-0.5084579,0.026500199,-0.24818148,0.23948675,-0.41272908,0.20416236,-0.04595919,0.58476865,-0.46293372,0.1699448,0.39508396,0.006134415,0.20351171,-0.51227665,-0.18516488,-0.25652626,0.16878058,-0.16065551,-0.30130717,0.27992994,0.30240998,0.5768184,0.25388867,-0.40590322,-0.32678908,-0.07147432,0.21310435,0.33807483,-0.03627178,-0.42257768,-0.32068762,0.03507353,0.3924486,0.09306334,0.253319,-0.22856876,-0.069818035,0.09389539,-0.34607786,0.5922258,0.54721004,-0.3165423,-0.25274676,0.16517869,0.6944125,0.2711762,-0.119028986,0.115443714,0.049128506,-0.693465,-0.2118769,0.15418361,-0.20407966,0.6097879,-0.35482123,0.2259103,0.6623153,-0.34697056,-0.004018029,0.2020019,-0.04313966,-0.15314673,-0.2470064,-0.33364496,0.32236853,-0.5630251,0.13097167,-0.34247613,0.8348512,0.24606824,-0.7066164,0.17304872,-0.6607805,0.26035944,-0.10940454,0.6146549,0.8304612,0.48231322,0.37779307,0.7382642,-0.32791913,0.15133125,-0.15638861,-0.40139276,-0.0037622694,-0.339762,-0.0011485927,-0.4103205,-0.09626454,-0.22352034,-0.058736615,-0.060649306,0.49631757,-0.5675669,-0.20543608,-0.01399526,0.99529177,-0.28709227,-0.11833275,1.0893457,0.8607613,1.3024325,0.15197694,1.3557558,0.28836977,-0.12512305,0.09112474,-0.08134657,-0.7853854,0.4652079,0.32663572,-0.30129486,0.44122803,-0.059428185,-0.006178662,0.44958472,-0.5567322,0.15850659,-0.39585197,0.40108806,0.073461175,-0.18858638,-0.2693711,-0.14755645,0.0703041,-0.035493296,0.07410959,0.26992297,0.025640791,0.60998344,0.058346048,1.4446485,-0.1383492,-0.042885847,0.08902752,0.44849348,0.19499835,-0.073448524,-0.07388066,-0.06251034,0.39774793,0.10213722,-0.6269356,-0.02064544,-0.37643105,-0.3270588,-0.3673399,-0.25681126,-0.050997518,-0.16144924,-0.376948,-0.26716322,-0.17381172,-0.12954137,0.35637984,-2.1345992,-0.40011424,-0.19513687,0.2914223,-0.305247,-0.3276557,-0.071113646,-0.68251574,0.5539475,0.31966162,0.51763266,-0.7126419,0.4716061,0.4325788,-0.5055,-0.13772418,-0.76024115,-0.20011461,0.04573132,0.43502837,0.0047126096,-0.13445087,0.011435531,0.17140189,0.5740751,-0.11766809,0.044368193,0.3106303,0.45162976,-0.062582806,0.5257413,0.06837334,0.51492006,-0.49160826,-0.1833959,0.4791821,-0.3450899,0.32246277,-0.12071042,0.07030486,0.58311677,-0.5738965,-0.89317715,-0.69284,-0.24113092,1.1816692,-0.13639528,-0.45105252,8.875504e-05,-0.2149524,-0.0749148,-0.03195773,0.29073778,-0.22015539,0.023487007,-0.8273039,-0.15802205,0.0005371338,0.1174048,-0.028427815,0.005493216,-0.43161714,0.6543514,-0.13421309,0.24027136,0.5281199,0.29266927,-0.28495866,-0.6435089,0.18848693,1.0637097,0.49678114,0.16872853,-0.5754047,-0.22829947,-0.38811338,-0.15153196,-0.052674852,0.5229546,0.86402315,-0.15651362,0.17532383,0.379021,-0.00842143,0.07630128,-0.14930013,-0.44861364,-0.27580264,-0.08240806,0.5459959,0.7791536,-0.15000877,0.47452736,-0.12178371,0.36674535,-0.07588708,-0.48082083,0.62768126,1.0190372,-0.42522705,-0.39574757,0.5480705,0.31022355,-0.27843404,0.66104144,-0.5385436,-0.36600533,0.46737894,0.031526297,-0.33049685,0.1768938,-0.45345667,0.18309148,-1.0981483,0.37155363,-0.40956342,-0.2177127,-0.707269,-0.3023317,-2.2658448,0.20795491,-0.20399994,-0.040503547,-0.31342983,-0.29779214,0.15880832,-0.38659823,-0.8981596,0.16845332,0.1339554,0.6892921,-0.12751603,0.26450256,-0.1367382,-0.264983,-0.55933267,0.035066508,0.3986181,0.3739614,-0.06395082,-0.49598932,-0.013429865,-0.2885219,-0.42711022,0.10656558,-0.70258313,-0.6584838,-0.17016259,-0.4405114,-0.32832283,0.6407025,-0.2891727,-0.035559244,-0.32102823,-0.021171743,-0.03400767,0.4401667,0.1422469,0.085370034,0.17738515,-0.13390853,0.0020054579,-0.35076568,0.12525246,0.19658408,0.26853442,0.34538954,-0.16986817,0.44021007,0.499221,0.8777789,-0.08370039,0.7995478,0.52677304,-0.10812821,0.3037535,-0.24133092,-0.6070254,-0.5700208,-0.2138561,0.029582407,-0.4898944,-0.36037064,0.18002185,-0.34953392,-0.87911284,0.5608116,0.016741427,0.07200119,-0.0848194,0.3318045,0.40106452,-0.15599528,-0.08902033,-0.074603714,-0.18491873,-0.63966036,-0.41501784,-0.7335957,-0.68750846,-0.14209878,1.1996204,-0.09810747,-0.12875873,0.1641525,-0.29998663,0.19474804,0.1905206,-0.20327778,0.0126309,0.4340779,-0.08381075,-0.78228146,0.4468894,-0.07901987,-0.08958031,-0.61359775,0.24291475,0.66495657,-0.64795357,0.35270935,0.41613972,0.068993434,-0.09172096,-0.6249169,-0.110510565,-0.09682478,-0.14373153,0.45941365,0.28176692,-0.6195332,0.53023744,0.39732665,-0.31775576,-0.91373783,0.49670166,0.15043975,-0.10527521,0.094673365,0.3697101,0.17582566,0.006906094,-0.25880653,0.16231206,-0.35795426,0.21813276,0.25113863,-0.14426248,0.102954045,-0.27837515,-0.4500049,-0.8100194,0.020597514,-0.57522154,-0.2982995,0.20239542,0.044468127,0.0060687214,0.050300065,0.21463436,0.27261454,-0.18284465,0.055210885,-0.2228487,-0.35896593,0.37319118,0.5092265,0.5859017,-0.45220172,0.62424755,0.123170905,-0.115623206,0.13916215,0.029606376,0.53181803,0.0025520474,0.34332186,0.39034602,0.027287211,0.08570671,0.80190396,0.0617027,0.504725,0.20567313,-0.2772444,0.28346503,0.20647025,0.2929367,0.01699806,-0.48678228,0.055515237,-0.1262107,0.072822966,0.57833016,0.14035699,0.37985116,0.040935874,-0.16139302,-0.099953964,-0.01297234,-0.009259839,-1.8169652,0.3615967,0.2190745,0.7844446,0.43829703,-0.056989945,0.22720616,0.6574025,-0.19759493,0.15314132,0.44625592,0.06257636,-0.369819,0.5549683,-0.6421752,0.49372625,-0.12711391,0.15753943,0.02142984,0.18236282,0.52321005,0.7782336,-0.2021394,0.06917556,-0.10279188,-0.26525283,0.18406206,-0.52466536,0.09124665,-0.3389228,-0.29036802,0.8574879,0.46874595,0.2841533,-0.3176923,0.041444506,0.08490094,-0.1847637,0.3553558,-0.16598518,0.08717266,-0.15297067,-0.53353333,-0.1710821,0.5027878,0.004765872,0.18615927,-0.06414866,-0.18465903,0.20516388,-0.14492235,-0.034159787,-0.13236511,-0.9943404,-0.18345967,-0.42295665,-0.3381226,0.20281586,-0.17081581,0.07953213,0.2636036,0.088519394,-0.5863343,0.33977318,-0.2945161,0.65616745,-0.011939526,-0.24710819,-0.16755012,0.14693028,0.46616104,-0.33753118,0.13739537,-0.13223673,0.22815147,-0.5437102,0.50728816,-0.124686,-0.471831,0.21123149,-0.1365096,-0.09306769,0.53414357,-0.22739932,-0.066206545,0.22055179,-0.1632696,-0.14633575,-0.2635411,-0.0077159554,0.28991845,0.38711208,-0.124280356,-0.13333504,-0.23155446,-0.035999157,0.6111039,0.010208018,0.43145213,0.38729995,0.12340379,-0.50657517,-0.23578513,0.18411158,0.5768885,0.022563133,-0.29038036,-0.41190997,-0.43278378,-0.32475892,0.43983778,-0.20866635,0.21167535,0.071391806,-0.47421402,0.8593562,0.26975754,1.4160789,0.13505691,-0.4568271,0.22645739,0.4902152,-0.10688029,-0.078228384,-0.4498348,0.87486845,0.44978598,-0.33514103,-0.09982136,-0.536545,0.042389728,0.010516442,-0.22841269,-0.22492264,-0.093437836,-0.46837234,-0.30827817,0.2682398,0.289558,-0.0739862,-0.21746433,-0.0049886573,0.2552459,-0.0646256,0.37602496,-0.57930434,-0.05780518,0.29237926,0.21718639,-0.048741966,0.18308623,-0.51957273,0.33243388,-0.5228232,0.06468368,-0.2674045,0.23188497,0.0025539417,-0.4398086,0.35244763,0.04381621,0.3381713,-0.5612452,-0.4420265,-0.29443115,0.48603427,0.33141345,0.1929391,0.70746607,-0.27129012,-0.09406473,-0.040131144,0.53602886,1.1400076,-0.29551584,0.107994795,0.2409741,-0.20020269,-0.46317452,0.4688054,-0.3095972,0.22671227,-0.11388037,-0.315861,-0.7315153,0.23202172,0.17939287,0.092819646,0.068503015,-0.75596553,-0.19512865,0.37389153,-0.26430708,-0.20499292,-0.47641033,0.03495381,0.5840631,-0.25475988,-0.2590471,0.16496518,0.2723284,-0.18156368,-0.40029007,-0.17517811,-0.22439846,0.23935379,0.22265095,-0.26052386,-0.19763213,0.13854957,-0.57586336,0.12399718,0.1825589,-0.2789987,-0.053194955,-0.15895307,-0.05830446,0.8435354,-0.23244268,0.34161857,-0.5068058,-0.47061038,-0.83665437,-0.23281746,0.4213434,0.24033651,0.03141217,-0.7226349,-0.24831173,-0.1379615,-0.07550301,0.14192232,-0.5390041,0.5084095,0.13254952,0.44902337,-0.028507536,-0.84765875,0.10663619,0.092399165,-0.23262775,-0.57532585,0.5263679,-0.027400665,0.7322838,0.14359984,0.16829988,0.24456576,-0.6156867,-0.07206385,-0.14461035,-0.09565587,-0.6536739,0.03996311 -960,0.29536846,-0.118660115,-0.53096265,-0.15542385,-0.1785058,-0.018501054,-0.20091654,0.39106885,0.2733552,-0.4492233,0.13282105,-0.26096082,-0.12578185,0.29284236,-0.12993294,-0.51583177,-0.084798194,0.1447448,-0.43319115,0.6398618,-0.27799764,0.37930638,0.18011627,0.15656339,-0.07968607,0.21327108,0.013627452,-0.31239644,-0.21391399,-0.13566808,0.065936856,-0.089230046,-0.45667067,0.27630848,-0.16128387,-0.11405204,0.32829237,-0.40872812,-0.3624719,-0.7132227,-0.001911517,-0.6173021,0.59885186,-0.087685436,-0.38915634,0.18259296,0.09525943,0.448293,-0.12817518,0.007298716,0.3064852,-0.19096948,-0.37240067,-0.18409759,-0.15710758,-0.74083537,-0.49334157,-0.17667982,-0.49491844,-0.088235594,-0.1374871,0.14352408,-0.2955712,-0.077496305,-0.19750796,0.51750475,-0.5051565,-0.050167456,0.18345903,0.001344047,0.36654717,-0.7175581,-0.06928373,-0.13486038,-0.016227182,0.16768508,-0.15617864,0.43398234,0.14867815,0.47666305,0.0133771105,-0.18503945,-0.16658582,-0.07579071,0.02589488,0.46029,-0.06698964,-0.19967943,-0.15983428,0.044632927,0.29940468,0.12948725,0.009401942,-0.30937952,-0.0010716438,-0.05863281,-0.24711452,0.076558575,0.42782438,-0.269934,0.034567934,0.32094613,0.445375,0.0144677125,-0.1743798,0.04789681,-0.10791347,-0.33777675,-0.12905726,0.09643005,-0.2483098,0.6830845,0.057895865,-0.02027055,0.52645326,-0.021715725,-0.19201827,-0.08247637,0.1592625,0.20843272,-0.101290576,-0.45779073,0.43385154,-0.64244235,-0.108782955,-0.37716597,0.63148534,-0.011452467,-0.8040733,0.3020266,-0.38596752,-0.049035,-0.043674525,0.58373535,0.7352213,0.7196739,0.21067469,0.7413521,-0.5694441,0.23125288,-0.0661804,-0.2303872,0.30156028,-0.21001436,0.16926704,-0.5147377,-0.060155496,-0.07736127,-0.36943468,-0.2088113,0.52627546,-0.53650963,-0.019178033,0.20632274,0.7666205,-0.3350701,0.0056339423,0.43104497,1.258846,0.94710934,0.06471099,1.121565,0.305411,-0.3642939,0.06929627,-0.2700814,-0.65166646,0.10643967,0.26446673,0.17937002,0.22354235,0.12015783,-0.028296877,0.3994374,-0.45658502,-0.033511054,-0.10182328,0.4567625,-0.087800905,-0.07203279,-0.5060412,-0.21203701,0.021799732,0.0043567717,-0.055262424,0.34498698,-0.1223295,0.18852669,0.21602353,1.6508541,-0.021283276,0.09361874,0.12465799,0.38324806,0.27150917,-0.0056189536,-0.0871153,0.44060346,0.18961395,-0.023876278,-0.52380955,0.05719315,-0.26248416,-0.4626756,-0.059509195,-0.21192689,0.10675998,-0.029672926,-0.35177523,-0.29912406,0.03238114,-0.38479635,0.40134534,-2.5422385,-0.088002,-0.03729737,0.24992853,-0.23770224,-0.20274608,0.1909315,-0.44272748,0.47908497,0.47251382,0.43352112,-0.41507998,0.35442206,0.52882975,-0.5111034,0.0036516427,-0.5587591,-0.19065943,-0.09990141,0.3709373,-0.005489552,-0.27328074,-0.024102287,0.11886705,0.4317756,-0.10003908,0.15013833,0.33535206,0.2124616,0.11012689,0.5505319,-0.041076496,0.45641795,-0.11061306,-0.10020471,0.19609255,-0.31102127,0.19465011,-0.13916782,0.14525083,0.4082573,-0.44685262,-0.5849925,-0.44780126,-0.15455645,1.0389372,-0.31868693,-0.28081942,0.24439855,-0.08888688,-0.17011113,-0.05984757,0.43180427,0.13027126,0.046527896,-0.7523726,-0.15549085,0.08627454,0.30889103,0.12028202,0.18998857,-0.5393806,0.50667936,-0.13941827,0.5211203,0.56873447,0.1923296,-0.11141488,-0.43860015,0.030347006,0.9174346,0.36178696,0.12662011,-0.3210804,-0.17692462,-0.2796368,-0.0421403,0.11886131,0.2788499,0.9728498,-0.037029553,0.01475668,0.16589783,-0.3376262,0.07305967,-0.16936317,-0.54988,-0.007862846,0.22607845,0.47924736,0.49268454,-0.0396265,0.44042876,0.0446976,0.3548651,-0.1770841,-0.44888848,0.40905267,0.75048554,-0.21320054,-0.15785433,0.5459006,0.5424932,-0.08485827,0.564483,-0.5538854,-0.28591305,0.56594557,-0.097022034,-0.5655225,0.3994833,-0.36937475,0.1890514,-0.98485595,0.40862548,-0.3272011,-0.59968823,-0.7603912,-0.055001445,-2.854246,0.11923776,-0.08000584,-0.062490877,0.16718842,0.08308521,0.35404682,-0.5456645,-0.4920279,0.17732042,0.1735848,0.5210296,-0.09566368,-0.16778873,-0.2708702,-0.4367553,-0.25296444,0.3439636,0.084428996,0.13407968,-0.028670693,-0.4535472,-0.10317491,-0.3458377,-0.28907546,0.07811725,-0.38598284,-0.32414615,-0.29959857,-0.5430442,-0.39830902,0.7278649,-0.2817045,0.012846342,-0.15595451,0.15497223,0.19022647,0.13930242,0.0751039,0.16281897,0.04492145,-0.23958655,-0.10922192,-0.35107702,0.062004957,0.22593822,0.34663072,0.4368716,-0.045488257,-0.007520147,0.76193744,0.6169062,-0.12962739,0.8633663,0.43632373,-0.18986616,0.30884135,-0.32555294,-0.08988441,-0.600352,-0.28674462,-0.24498034,-0.3297787,-0.53341997,0.13660628,-0.41228607,-0.71915424,0.54617345,-0.0026583513,0.057641767,0.08430295,0.35919735,0.36021185,-0.25403827,0.01650198,-0.19085269,-0.15950142,-0.42838523,-0.3585471,-0.8228342,-0.40429673,0.10632982,1.3851174,-0.11981848,-0.052220926,0.0778056,-0.19466709,0.1371386,0.08619301,0.09466713,0.22306539,0.27914906,0.07209525,-0.71040165,0.41457018,0.08223219,0.06280099,-0.6144098,0.28255934,0.6045402,-0.7337349,0.31895626,0.42522573,0.12309634,-0.108811475,-0.7934159,-0.2163716,0.23498778,-0.32573482,0.53170955,0.0870814,-0.8387588,0.4163699,0.18468894,-0.40489167,-0.76503485,0.33541495,-0.17787284,-0.3541149,0.13513324,0.28909054,-0.015515101,0.20957416,-0.3611801,0.3183157,-0.59089667,0.2019844,0.3325523,-0.14554492,0.28294075,-0.14973,-0.13993683,-0.94006413,0.054598577,-0.49517733,-0.3125345,0.33190632,0.16990407,0.1102574,0.255408,0.43793297,0.4882905,-0.1963234,0.029418338,-0.18004127,-0.3878171,0.6203251,0.53485674,0.26678663,-0.26074567,0.4629244,-0.18650156,-0.12295561,-0.4081081,-0.061442815,0.41601732,0.14956191,0.22236411,0.1063105,-0.2501237,0.21896692,0.8420875,0.24021381,0.42241102,0.13153519,-0.20129801,0.4116384,0.05497475,0.02169054,0.08691667,-0.41070995,-0.15102257,-0.09846322,0.20299965,0.4441333,0.073999576,0.35162476,-0.21485327,-0.15678073,0.13449337,0.27746832,0.07953194,-0.6886452,0.39201418,0.12731217,0.46626556,0.78356177,0.24708344,0.019447485,0.61313325,-0.38435906,0.09376994,0.3823728,0.051687438,-0.47246268,0.53027344,-0.6014704,0.20801535,-0.09416248,-0.07192173,0.10334095,-0.018922806,0.6151609,1.0098951,-0.11915894,-0.01072858,-0.15542327,-0.16583437,0.12904762,-0.21899655,-0.03924079,-0.4497428,-0.47253147,0.65074855,0.11389948,0.35023987,-0.17071442,-0.087517194,0.113047674,-0.20684865,0.6477864,-0.059731547,-0.06710566,-0.017520426,-0.4202018,-0.28368047,0.49771544,-0.16291808,-0.07305115,0.008274981,-0.055999495,0.111464776,-0.124098174,-0.10399015,0.065760344,-0.6313362,0.042522863,-0.27870825,-0.3935977,0.79257596,-0.2116566,0.26168177,-0.013413885,0.14841549,-0.24921367,0.17086174,0.32423654,0.47952235,0.024541872,-0.26919147,-0.100370996,-0.025062036,-0.05135084,-0.26016316,0.08282091,-0.1857172,0.10593966,-0.9255012,0.47706094,-0.18856254,-0.26937154,0.09312506,-0.29946962,-0.06432044,0.45676774,-0.31426987,-0.14591575,-0.06704315,-0.08293249,-0.09712229,-0.34110248,-0.32967553,0.122830436,-0.32646352,-0.11323927,-0.10545143,-0.10431321,0.11939258,0.5919026,0.035853114,0.12591968,0.32632405,0.12157784,-0.5893135,-0.08790441,-0.05928444,0.34182847,0.03476806,-0.06949141,-0.41426358,-0.21219444,-0.2833766,-0.04927995,-0.1653164,0.37028015,0.14362644,-0.42588785,1.0499082,0.07605871,1.1227727,-0.1122384,-0.41170442,0.029995164,0.6577949,-0.058930643,0.09878157,-0.5082035,0.96325517,0.8055116,-0.021297531,-0.13200079,-0.38400352,-0.18074577,0.32109845,-0.3093508,-0.20996994,-0.043717857,-0.7612623,-0.30015832,0.28299806,0.27999738,0.017028606,-0.028601121,0.11884419,0.16106328,0.26170295,0.36165053,-0.39922792,0.046049904,0.2970943,0.16549882,0.2340947,0.17441593,-0.40137917,0.26118276,-0.6824586,0.18235478,-0.19267167,-0.09700391,0.029022912,-0.34937844,0.2141443,0.20267907,0.17621501,-0.19363806,-0.3472889,-0.012470475,0.4771293,-0.015830679,0.28096953,0.76469773,-0.2884956,0.023260562,-0.017445628,0.5330051,1.233279,-0.33149508,-0.20070873,0.38051245,-0.44839278,-0.69243336,0.1983211,-0.4296959,0.12277635,-0.09808251,-0.42318276,-0.5751283,0.14106597,0.20654258,-0.36079803,-0.08993778,-0.5470332,-0.19271103,0.29770395,-0.3941002,-0.1728598,-0.20953685,0.14521068,0.7826661,-0.35971165,-0.31237394,-0.11193201,0.24345157,-0.31915388,-0.5453338,-0.023453835,-0.41498503,0.33951774,0.27303854,-0.43852898,0.18825859,0.13693672,-0.5594715,0.056761947,0.3527289,-0.3437442,-0.018740714,-0.4802688,0.13512519,0.78525543,0.15146758,-0.05254821,-0.46858475,-0.5549255,-0.9529359,-0.33052355,0.35625294,0.113721415,-0.041423857,-0.5111347,0.036568277,-0.19080795,0.09105278,-0.07165313,-0.4902879,0.32514918,0.14726393,0.29058826,-0.2323792,-0.99570197,0.031714074,0.08807537,-0.24082583,-0.40907958,0.5795946,-0.22483024,1.0933571,0.13922344,0.0017157674,0.15677196,-0.70487684,0.44780445,-0.3683664,-0.28911132,-0.45091873,-0.107090846 -961,0.4064182,-0.2933477,-0.5860152,-0.12124261,-0.39680654,0.10615057,-0.13438132,0.4360577,0.33956942,-0.46041358,-0.121060506,-0.08894793,-0.09919895,0.18425103,-0.2082035,-0.59080917,-0.12129366,0.14047986,-0.43108997,0.50284815,-0.19495444,0.25350857,0.011717796,0.2734193,0.28878456,0.33948544,0.016571235,-0.14671747,-0.0319748,-0.07394822,-0.089464396,0.28588158,-0.3241368,0.07088973,0.04161642,-0.21579486,-0.07942595,-0.324573,-0.3769095,-0.71867985,0.42033952,-0.7550283,0.4664392,-0.02509392,-0.19801386,0.27344316,0.19676101,0.3282335,-0.10911913,0.038794205,0.2897663,-0.14105745,-0.109805256,-0.04889612,-0.2476151,-0.38833776,-0.5202609,-0.05713588,-0.4154516,-0.3030051,-0.30737633,0.19364643,-0.35052603,-0.10271571,-0.07579662,0.5633356,-0.47420272,0.14892082,0.35818115,-0.10765165,0.3265357,-0.65703624,-0.06798213,-0.020845216,0.24223538,-0.04706425,-0.08282563,0.09148969,0.31324452,0.45106372,0.10680409,-0.21386664,-0.42613852,-0.10254373,0.3003739,0.32553476,-0.16704302,-0.29972407,-0.09517886,0.24449037,0.2502609,0.22336972,0.19001774,-0.2580524,-0.16535811,0.06324133,-0.17661312,0.36872518,0.4433334,-0.2779906,-0.26663777,0.4209419,0.5376423,0.12838316,-0.16680503,0.10712147,-0.10382652,-0.4208283,-0.17842674,0.0073629245,-0.24478969,0.2876925,-0.1040186,0.18819547,0.6651733,-0.07247149,0.0353449,-0.03717694,-0.008458957,-0.0357325,-0.33144137,-0.05398125,0.10470419,-0.5163961,0.10110414,0.0009124521,0.7261754,0.036823563,-0.6417808,0.23061135,-0.4548747,0.21429026,-0.054401547,0.46765488,0.67076474,0.36603427,0.23128816,0.78045344,-0.43645322,0.07264647,-0.07310022,-0.46935633,0.05325766,-0.0950482,0.03188491,-0.6005871,0.13603464,-0.04130134,-0.0065854834,0.07001573,0.37795413,-0.5690043,-0.14096093,0.18085673,0.83042336,-0.26645076,-0.08448195,0.6855978,0.9196512,0.9698654,-0.04524557,1.1035311,0.14218776,-0.30052525,0.11763894,-0.46124822,-0.57573265,0.31856033,0.4462527,-0.12752593,0.24480449,0.0076289885,0.029354826,0.42152536,-0.26717335,-0.011235873,-0.24657944,0.1476008,0.20617774,-0.26325828,-0.39846152,-0.054320715,0.08899374,0.05245591,0.1581643,0.119626075,-0.1694323,0.29279685,4.1881576e-05,1.5723028,-0.25590572,0.08394274,0.18378055,0.26005787,0.157018,-0.045726016,0.10928276,0.42458367,0.31695157,0.13660686,-0.5712166,0.07847085,-0.36845624,-0.42133063,-0.2483259,-0.3312717,-0.1820636,0.103352666,-0.31994322,-0.16529575,-0.21720974,-0.45252234,0.42254767,-2.7706745,-0.088413745,-0.27503896,0.2070084,-0.31014973,-0.3600231,-0.07541241,-0.46407712,0.3338892,0.36682123,0.5046831,-0.60585797,0.45273128,0.4570592,-0.61112434,0.00095754117,-0.51814425,-0.11146286,-0.08803108,0.3357215,0.07245109,-0.21184008,0.02790777,0.14094417,0.48758638,0.0020312965,0.09681247,0.49519575,0.4944628,-0.11876507,0.57914495,0.014889408,0.54299736,-0.06522988,-0.18733057,0.33505976,-0.22366795,0.20946571,-0.0057890583,0.1640531,0.42779374,-0.2873638,-0.89131886,-0.59554774,-0.120662235,1.2481319,-0.16156694,-0.40452236,0.35197437,-0.3994286,-0.28526133,-0.057460204,0.46695185,-0.051802102,-0.06291206,-0.8348386,0.13123491,-0.18245038,0.07317912,0.029554531,-0.25579095,-0.48305318,0.9277872,-0.11051804,0.56124,0.3681294,0.16737139,-0.23060952,-0.35480797,0.01572664,0.8592268,0.46408623,0.07465108,-0.116567604,-0.13990411,-0.29933667,-0.18230893,0.11731723,0.6271858,0.5499909,0.024185264,0.052218236,0.30943963,0.020327296,0.070455216,-0.21114156,-0.3397033,-0.13117056,-0.06867002,0.45985365,0.4409375,-0.31252733,0.43011236,-0.0134584345,0.35580924,-0.07238506,-0.53323215,0.38264504,0.9282612,-0.20828547,-0.57848173,0.6623839,0.3777851,-0.18151972,0.39048076,-0.5249279,-0.22547406,0.44979763,-0.3189643,-0.4943852,0.20681916,-0.4084581,0.032355905,-0.8379876,0.19464417,-0.41264564,-0.5593405,-0.44637772,-0.15279822,-3.3864257,0.24922074,-0.40069282,-0.14905187,-0.28435266,-0.024253398,0.102016866,-0.6140888,-0.63804185,0.1357381,0.106981054,0.6058998,-0.061356593,0.064580634,-0.18360622,-0.2627224,-0.19222762,0.20862326,0.009428933,0.25401443,-0.034914084,-0.4034399,-0.08336714,0.07856851,-0.37335318,0.027887894,-0.4581466,-0.40394866,-0.08475749,-0.3946276,-0.12002372,0.59169674,-0.36839318,0.077400886,-0.31184202,0.13949485,-0.11538032,0.26677567,-0.09352059,0.17358142,0.091988504,-0.16349922,0.09216514,-0.2922033,0.38407886,0.013741048,0.38007078,0.3217068,-0.25595742,0.18285824,0.3762589,0.5848685,-0.12611097,0.81965554,0.46388426,-0.18095799,0.29067624,-0.18353574,-0.23426262,-0.6220823,-0.34469903,0.107100844,-0.481802,-0.4621116,-0.13825727,-0.3969264,-0.8300233,0.39203906,-0.00093064085,0.3707643,-0.021099817,0.3235443,0.5902066,-0.10696185,0.08137154,0.053017784,-0.22916959,-0.37513155,-0.20688802,-0.5338565,-0.42393464,0.22205935,1.0649776,-0.23223808,0.07865903,-0.032830667,-0.21665558,-0.033214584,0.19590002,0.09466135,0.16627356,0.48414418,-0.20002674,-0.62582684,0.44478327,-0.18629295,-0.14712788,-0.6616469,0.20871125,0.4791137,-0.4859397,0.68200946,0.24393737,0.05156375,-0.19138485,-0.4839995,0.009154798,-0.02879512,-0.29926792,0.52055126,0.2703391,-0.5827381,0.40889645,0.36946413,-0.13978672,-0.68121797,0.36775088,-0.019060588,-0.2912864,-0.014266142,0.38967174,0.18641458,-0.06125136,-0.13600577,0.1929587,-0.3547244,0.3338468,0.14641897,-0.24068864,0.2326996,-0.17265779,-0.17980841,-0.8027721,-0.016706478,-0.59081376,-0.15315333,0.24675782,0.13681652,0.13686657,0.087622136,-0.013411138,0.54074484,-0.17703086,0.057454214,-0.16613226,-0.29494599,0.36647528,0.4676578,0.26931906,-0.51162225,0.45023325,0.009949427,-0.2483731,-0.103048205,0.1891675,0.57702553,-0.022920012,0.44373932,0.0069740303,-0.2094479,0.34224653,0.73048997,0.13196054,0.4877563,0.06854789,-0.16314615,0.20832409,0.0658747,0.11133899,-0.1756413,-0.68724525,-0.051407337,-0.17728558,0.13079217,0.5013795,0.11051548,0.32672513,-0.08490202,-0.25779137,0.010664726,0.23888776,0.14180529,-1.0107691,0.27036947,0.13870986,0.93467855,0.41004455,-0.026442863,0.08182454,0.5989278,-0.05807625,0.085109755,0.39787516,0.03193447,-0.5043301,0.5240655,-0.7026541,0.31054068,-0.008442506,-0.052397475,0.020336539,0.058484524,0.26395243,0.74717534,-0.14788127,-0.048948698,-0.12922615,-0.2850989,0.24406117,-0.24135113,0.11820577,-0.46912214,-0.36682713,0.4954814,0.52138484,0.33665127,-0.15186682,-0.009192839,0.10464928,-0.101861596,0.17585856,0.027783558,0.13988608,-0.067076504,-0.59933895,-0.239458,0.31296122,0.18177488,0.17918098,0.051348157,-0.16338314,0.17925349,-0.101550356,-0.088262096,-0.036765624,-0.49395585,-0.06093584,-0.14361237,-0.6063417,0.4965148,0.0065271296,0.2372951,0.083057284,-0.014124431,-0.23591232,0.23999178,-0.004303448,0.7152087,-0.043957237,0.05747187,-0.40160775,0.19786139,0.053480722,-0.16826306,-0.09636183,-0.2149595,0.11223338,-0.7228577,0.4612842,-0.015328247,-0.42540282,0.34850693,-0.18800935,-0.04939132,0.5158503,-0.24179469,-0.12019587,-0.033593636,-0.104184225,-0.20146498,-0.31106633,-0.101542786,0.2041113,-0.016347822,0.031617075,-0.15431191,-0.09401933,-0.13605586,0.3103649,-0.05356795,0.31538424,0.3992797,0.06271469,-0.42979816,-0.16624576,0.31842238,0.42173383,0.023975689,-0.06285076,-0.26597512,-0.66404283,-0.4754229,0.15183873,-0.012144178,0.36136568,0.070848435,-0.21140753,0.8182583,-0.0018502772,1.1813338,-0.011702588,-0.3755283,0.06488483,0.6330726,0.067220934,0.031833407,-0.2539928,0.81936765,0.6943285,0.035697125,-0.06270175,-0.4785939,0.07779922,0.13930508,-0.21826792,0.054388702,0.011398777,-0.6282766,-0.439419,0.23979871,0.18648893,0.1766366,-0.06556267,0.059431136,0.15261243,0.017891914,0.30684,-0.48051035,-0.32355055,0.1684795,0.20735754,0.035314687,0.04144188,-0.59797776,0.37155858,-0.56171185,0.07454693,-0.16082793,0.1861644,-0.22626828,-0.1568473,0.28559163,-0.07582211,0.3722461,-0.34665298,-0.3584336,-0.15260187,0.47585592,0.15546677,0.121719696,0.5822012,-0.28397173,0.07057454,0.17380214,0.54625094,0.994593,-0.14583424,0.121777326,0.4740103,-0.3283577,-0.65746284,0.35877895,-0.32727158,0.10925574,0.06348464,-0.3107473,-0.2779346,0.28053933,0.09493813,-0.067139216,0.021577138,-0.5270268,-0.27626175,0.3087562,-0.37528348,-0.04750513,-0.21835798,0.10404915,0.62976503,-0.32470852,-0.30724496,0.0028348248,0.3350393,-0.09491858,-0.53987145,-0.0213357,-0.2530264,0.42047656,0.14141397,-0.28149068,-0.097413845,0.008785162,-0.41636568,0.13865541,0.1504956,-0.32805887,0.07436145,-0.34127223,-0.1343163,0.73934245,-0.17538163,0.1412836,-0.6160394,-0.29791075,-0.8106645,-0.3023525,0.23622686,0.10019519,-0.041710287,-0.6481717,-0.0027752146,-0.26700485,0.02977838,-0.042731322,-0.3131598,0.40697014,0.10544817,0.461646,-0.22278829,-0.7120141,0.14470136,-0.016393786,-0.22006035,-0.66022724,0.65788585,-0.11743288,0.7533348,0.017904274,0.12930396,0.25770134,-0.50478077,-0.028718814,-0.26021016,-0.30725563,-0.7117869,-0.06954589 -962,0.3077379,-0.8225179,-0.5726567,0.007373041,-0.1732082,-0.04983467,-0.38709602,0.4071464,0.19453385,-0.20238805,-0.13108125,-0.13556953,-0.06677808,0.7791251,-0.21755162,-0.6162446,-0.3125584,0.083918676,-0.72732484,0.79874206,-0.31055748,0.07551468,-0.031093273,0.55880994,0.47915134,0.06320906,0.04510158,0.16012008,0.0503153,-0.33901536,0.02421083,0.11290252,-0.7299653,0.25528845,-0.25502428,-0.45710984,-0.08865567,-0.68286544,-0.5203933,-0.8402289,0.37832284,-1.1510655,0.7455877,0.022871494,-0.25976756,0.046585534,0.058977794,0.28870422,-0.046035655,-0.035195928,0.17323324,-0.018531376,0.02880947,-0.23459132,-0.29866743,-0.44818798,-0.60692215,-0.017428365,-0.6385601,-0.27628273,-0.14457819,0.24132696,-0.6367362,-0.012690725,-0.09838413,0.4704779,-0.53064054,0.10828833,0.0015349805,-0.03212279,0.18818717,-0.5942179,-0.22141925,-0.13507509,0.18702982,-0.15666716,-0.24016008,0.1617638,-0.0345402,0.25453767,-0.22318813,-0.13102166,-0.29181772,-0.11561541,0.18225428,0.74118984,0.11594608,-0.69057596,-0.26789045,0.26467592,0.35591027,0.17188624,0.0749989,-0.4732732,-0.12585802,-0.17196025,-0.07882239,0.8610735,0.5048574,-0.15485807,-0.42501324,0.41090098,0.5590845,0.6028457,-0.18767723,-0.10496533,0.15014976,-0.5769415,-0.013284525,0.28911728,-0.10815517,0.5580543,-0.04048351,0.45708972,0.66404116,-0.35470796,0.10968522,-0.028996017,0.051440097,-0.32169968,-0.13842459,-0.2526729,0.2537458,-0.33658746,0.28192517,-0.29708347,0.77584726,0.068501174,-0.7398437,0.29732996,-0.6615446,0.1660949,-0.036113624,0.7081772,0.82412875,0.49096638,0.34782276,0.58716285,-0.06547473,0.1642812,-0.17874336,-0.37336743,0.03232529,-0.39883074,-0.15636328,-0.5553812,-0.256512,-0.116738044,-0.14034705,-0.06513762,0.7641999,-0.4938863,-0.24819979,0.00412541,0.892392,-0.1509219,0.029696226,0.97363615,1.0452284,1.1375487,0.072345264,1.227598,0.17676876,-0.12090763,0.1435605,-0.026966041,-1.0425897,0.37890247,0.48137274,0.16976313,0.70704854,0.0607121,-0.0651824,0.4841029,-0.59744567,0.08806289,-0.23308472,0.17525837,0.2664017,0.03937728,-0.5639744,-0.1476487,-0.17680812,0.17734833,0.009241158,0.28232208,-0.48933735,0.4225692,0.2106152,1.8414621,-0.16798222,-0.021749157,0.022585785,0.6975666,0.12728345,-0.17125246,0.0048426627,0.41829854,0.52678573,0.21200386,-0.8436116,0.24034896,-0.27248773,-0.36071426,-0.24391568,-0.2801196,-0.06673023,-0.34392875,-0.3577676,-0.065292075,-0.13657022,-0.2387712,0.43711066,-2.5692265,-0.3530407,-0.101481795,0.36739856,-0.33755952,-0.41330537,-0.03892138,-0.44851318,0.49246877,0.32268888,0.65566087,-0.74359024,0.21141663,0.5462569,-0.69404095,-0.19225898,-0.7430705,-0.023654884,0.019784201,0.75707567,-0.11703309,0.1107008,0.239083,0.19166724,0.59034765,0.08670971,0.101759896,0.40789086,0.6830428,-0.025187317,0.5323203,-0.18257709,0.3327252,-0.47786245,-0.17531696,0.40819246,-0.29052496,0.42517647,-0.2445068,0.17953335,0.6111963,-0.4778737,-1.0131204,-0.4972202,-0.32321876,1.0439937,-0.397877,-0.547484,0.16009423,-0.109661505,-0.3179438,-0.3066801,0.6345007,-0.3951446,-0.0424469,-0.80468833,-0.042040814,-0.13939145,0.21852478,-0.103385985,0.023835182,-0.3165262,0.5322897,0.00818793,0.29236656,0.21471572,0.24292645,-0.432525,-0.70259607,0.2794908,0.7389684,0.41141734,0.09126967,-0.33061385,-0.16825107,-0.07193661,-0.13576359,-0.13790241,0.67623985,0.70385104,-0.13017428,0.23866911,0.38462964,-0.16449222,-0.05321915,-0.23888712,-0.1355958,-0.23696828,0.2842783,0.6428407,0.9436356,-0.0991206,0.68184954,-0.085862465,0.07764681,-0.04319106,-0.3924972,0.44463557,1.065341,-0.15564175,-0.36182874,0.43921408,0.6082546,-0.5923055,0.4917222,-0.601544,-0.1356394,0.52638066,-0.17137797,-0.6627288,0.40818372,-0.23256716,0.08834137,-0.9356201,0.3936225,-0.17763157,-0.4870437,-0.8048379,-0.104691125,-2.069566,0.11006117,-0.2947364,-0.48692784,-0.29132593,-0.27638954,0.20606256,-0.6593499,-0.7215158,0.1355664,0.16191287,0.6264065,-0.23589873,0.16628608,-0.19624665,-0.289056,-0.28581545,0.19508383,0.25329003,0.366808,-0.13571496,-0.51408446,-0.18331371,-0.014992595,-0.48142618,0.14883071,-0.7122112,-0.4469479,-0.07978984,-0.65400296,-0.14236055,0.7042176,-0.03741648,-0.13349949,-0.21074665,0.092569076,0.07700344,0.47629756,0.13848917,0.122386396,0.11756823,-0.07328317,0.08350561,-0.15535791,0.34357893,-0.04517869,0.25046164,0.33158278,-0.28520378,0.5344202,0.7016448,0.547537,0.051298987,0.9371891,0.5198371,-0.18644226,0.19990206,-0.12378013,-0.30224335,-0.5998155,-0.2602604,0.1987879,-0.3932019,-0.59544384,-0.28201205,-0.1857123,-0.8756609,0.72114104,0.035480667,0.38084102,-0.08812876,0.33036464,0.47546786,-0.15155305,-0.12750404,-0.007817966,-0.10311134,-0.4234619,-0.42977914,-0.68079925,-0.5307699,0.09778668,0.93783265,-0.15006362,-0.14333448,0.094893664,-0.49919575,0.04180547,0.17875998,-0.06136606,0.23112674,0.36102793,0.19771573,-0.71201503,0.58828557,-0.07040469,-0.16075236,-0.72849625,0.12162373,0.7254667,-0.5868303,0.32504433,0.18465789,0.06287581,-0.39978623,-0.43952674,-0.010466492,0.08949154,0.0031223192,0.22030869,0.29439068,-0.75835,0.5200496,0.25842512,-0.35409823,-0.6346098,0.55286807,0.040798247,-0.01965471,-0.1691987,0.3541022,0.121563196,0.04244377,-0.37447459,0.53386307,-0.17116234,0.2387098,-0.08245708,-0.08370938,0.29288077,-0.14631805,-0.2675106,-0.7515332,0.3106594,-0.4947164,-0.41012865,0.57313,0.069257185,0.16144885,0.16414757,0.1115949,0.4076189,-0.35585135,-0.03249471,-0.11258952,-0.29842314,0.37136698,0.5599373,0.6904879,-0.6113868,0.64459383,0.15759033,-0.09522125,0.3398048,0.07685399,0.35264555,0.0006444931,0.42096034,0.13219614,-0.2424657,0.18782702,1.0874727,0.255283,0.6072747,0.11353643,-0.13572522,0.2998151,0.15138772,0.27187848,-0.18846127,-0.6548268,0.051359355,-0.21292737,0.05994904,0.65668666,0.12421538,0.24757953,-0.27110013,-0.4044857,0.039619274,0.12220627,0.20189723,-1.5671355,0.15970373,0.29097757,0.7868336,0.3340873,0.08017975,0.33722943,0.717131,-0.19672461,-0.07261703,0.42970496,0.22238874,-0.6979187,0.65060586,-0.76627064,0.6215924,-0.05834667,0.08138916,0.1764955,0.16128305,0.52146864,0.6545926,-0.34439144,-0.10590048,-0.16100413,-0.34291568,0.0007148713,-0.50019276,0.41041332,-0.546353,-0.53058887,0.69642437,0.71620685,0.2235496,-0.021069322,0.032199483,0.08853134,-0.17171106,0.27359074,0.048083447,-0.098192915,-0.16912556,-0.91993284,-0.0879153,0.59643745,-0.00785408,0.08740339,-0.17169105,-0.007771671,0.31933412,-0.17322448,-0.135363,0.021233622,-0.9208582,0.06384413,-0.4654483,-0.66627485,0.25111896,-0.21829596,0.19285746,0.21660313,-0.06660519,-0.46536645,0.3109432,0.08698309,1.1058899,-0.09301128,-0.22835286,-0.4304533,-0.03912943,0.25929183,-0.32041344,-0.04610895,-0.20866278,-0.05158657,-0.6474988,0.62707067,-0.15937746,-0.4848237,0.06724378,-0.23884101,0.0527362,0.7342581,0.08560936,-0.15156882,-0.13654803,-0.410345,-0.39122233,-0.395012,-0.094558015,0.27996996,0.2824968,-0.08373717,-0.14060588,-0.04984356,-0.14266753,0.48712254,-0.026951153,0.52735656,0.47448856,0.4039755,-0.18495266,-0.22548358,0.19440134,0.6652076,0.14929777,-0.099767074,-0.26622996,-0.46104974,-0.4515739,0.26074076,-0.14987147,0.40399393,0.059209663,-0.46925825,0.76763,0.13809124,1.115771,0.034057982,-0.49240357,0.39162058,0.6169828,0.038357116,-0.22459897,-0.4937996,1.0276998,0.51716095,-0.055475432,-0.17053832,-0.5878709,-0.28009453,0.3585353,-0.37660939,-0.039203584,-0.12692845,-0.43556228,-0.007242358,0.22088793,0.20293415,0.13693957,-0.26527685,0.018371407,0.34043807,-0.019857,0.339461,-0.5316003,0.029028391,0.28967422,0.16968292,-0.035576038,0.0355879,-0.555611,0.37133107,-0.49582607,0.20766935,-0.48214293,0.35467553,-0.1587805,-0.17566316,0.24650426,0.052509677,0.4915523,-0.50401,-0.32394537,-0.20749009,0.47957927,0.2503767,0.17282769,0.6023277,-0.29271856,0.24556093,-0.093704,0.55900896,1.1220131,-0.32805943,0.041343458,0.2574833,-0.5003725,-0.70516837,0.46238384,-0.50763834,0.45812225,-0.03723728,-0.026451314,-0.76032406,0.28427076,-0.011306155,0.16899236,-0.16513136,-0.5761113,-0.24117413,0.33471662,-0.24018395,-0.23549402,-0.47444472,-0.14938398,0.6253904,-0.09790872,-0.5016246,0.08953603,0.33058232,-0.16711597,-0.43041143,-0.019197237,-0.28427854,0.12451039,-0.09306984,-0.3066066,-0.16250929,0.06831476,-0.6264362,0.046071038,0.01349399,-0.37458324,0.030976683,-0.09043411,-0.07897724,1.185704,-0.5989253,0.008190644,-0.79341704,-0.63983905,-0.82105845,-0.3292213,0.37637743,0.22319598,0.23646507,-0.77766067,0.1622596,-0.036432695,-0.1882084,-0.12004441,-0.583394,0.417309,0.012760852,0.42990512,-0.3726334,-1.0061201,0.44021624,0.025706116,-0.1147954,-0.7958693,0.6518799,-0.04380413,0.7854687,0.09283526,0.25623798,0.10874311,-0.58653057,-0.2334096,-0.08287187,-0.29501495,-0.7733036,0.30781856 -963,0.61974186,-0.28734,-0.6573937,-0.15085295,-0.40634203,-0.11980861,-0.069573455,0.3249591,0.36055008,-0.26186788,-0.37049377,-0.020117998,0.10096594,0.3734159,0.03264141,-0.9271145,-0.1440447,0.35271257,-0.8372517,0.5827916,-0.50615275,0.27183515,0.0041227844,0.40526834,0.21799472,0.35196787,-0.071750626,-0.095036745,-0.109181374,0.2054355,-0.10547122,0.3162478,-0.3935789,0.07621439,-0.056687847,-0.26701096,-0.16176523,-0.51508266,-0.14995195,-0.7971488,0.19253452,-0.8743967,0.430345,-0.09353241,-0.2205179,-0.26050204,0.029293515,0.4168522,-0.37747076,0.0013827452,0.12904404,-0.07036187,-0.193529,-0.24081582,0.015432954,-0.15540758,-0.51400334,-0.037255935,-0.3997479,-0.15038994,0.10211043,0.08681852,-0.4135815,-0.026634078,-0.31554273,0.3991093,-0.4188581,-0.01799233,0.54736596,-0.12576903,0.101924434,-0.51438004,-0.06351663,-0.028970562,0.5125301,-0.044901725,-0.3303302,0.37450936,0.18803594,0.47929996,0.3739916,-0.27890885,-0.03976876,-0.0853825,0.17659368,0.5098513,-0.037705276,-0.37950695,-0.20694259,0.068031915,0.23788632,0.33695662,0.033309862,-0.3504226,-0.13736399,-0.18167026,0.02349892,0.25437647,0.4410149,-0.13438693,-0.35715288,0.3983897,0.7415057,0.34398195,-0.15833282,0.05734152,0.05732697,-0.648525,-0.191827,0.20411518,-0.041568305,0.4781101,-0.12133547,0.22277993,0.7419834,-0.12284495,0.040165856,0.09808254,0.036765512,-0.22965695,-0.49092242,-0.24442863,0.19525176,-0.5063792,0.13873285,-0.21696578,0.7402963,0.29747432,-0.71437335,0.37578928,-0.6280172,0.22683941,-0.07361495,0.72015643,0.87821555,0.26518625,0.30436257,0.6303407,-0.081821844,0.2722897,0.08175169,-0.50097823,0.00826986,-0.09683636,0.14701457,-0.5416634,0.14860977,-0.17423478,-0.041312072,0.13198186,0.43683177,-0.6404628,-0.17474549,-0.119420394,0.63283324,-0.3103457,-0.06429027,0.894071,0.9123561,0.88081205,0.09451545,1.4082776,0.3979867,-0.3168057,0.3428782,-0.55911964,-0.8072755,0.2218596,0.2219122,-0.42285368,0.53433603,-0.037120268,-0.22557321,0.4429661,-0.27454156,0.11132109,-0.10646344,0.34862715,-0.14207752,0.03407544,-0.63191885,-0.2753991,-0.18647835,-0.056763455,0.17416587,0.3219234,-0.32519266,0.40338972,-0.11329263,1.4526647,-0.10434224,0.06228988,-0.071140274,0.32530752,0.2173152,-0.30648354,-0.23716229,0.4684275,0.50862825,-0.18457443,-0.70815194,0.35693315,-0.32290787,-0.29806498,-0.18127514,-0.45462972,0.024439398,-0.13884367,-0.3970381,-0.16817664,-0.077255875,-0.33916774,0.38834792,-2.5299551,-0.37296283,-0.094313785,0.3794386,-0.2579615,-0.2898006,-0.23880926,-0.5193633,0.13857779,0.08993854,0.5573647,-0.6821867,0.5560316,0.45567846,-0.5947839,-0.16405055,-0.81492716,-0.049742654,0.182141,0.25880638,-0.056866206,0.061724994,-0.06556935,0.030135265,0.43728146,-0.033557918,0.082157135,0.5552276,0.41093272,0.24164368,0.38133353,-0.027190711,0.7098172,-0.31178346,-0.09909534,0.3147735,-0.24327111,0.31103617,-0.08834268,0.07159416,0.61834824,-0.47711006,-0.8819789,-0.5442151,-0.40494794,0.9828137,-0.48031828,-0.37187943,0.19453344,-0.23517159,-0.09308045,0.052842356,0.65395534,-0.09650861,-0.15393415,-0.76902825,0.03933141,-0.0073568914,0.20822929,-0.009760352,-0.051369723,-0.2378054,0.53182495,-0.019663077,0.5959021,0.19731314,0.3012523,-0.14737763,-0.42605972,0.20567568,0.6491622,0.1924428,-0.07820575,-0.113406435,-0.24875014,-0.16493446,-0.14158076,0.003433764,0.56834567,0.77305794,-0.046232894,0.12447843,0.34507707,-0.0067730406,0.17002593,-0.15450177,-0.15009686,-0.14739884,-0.06783176,0.41433054,0.76566374,-0.27722338,0.6758992,-0.27729222,0.25684616,-0.067304365,-0.59033966,0.6738845,0.6770454,-0.2712429,-0.13310957,0.53283656,0.35280862,-0.49340117,0.5229069,-0.55840236,-0.06071971,0.5793785,-0.17586859,-0.33508837,0.34070036,-0.1821797,0.26162362,-0.99325764,0.2713349,-0.32849705,-0.49516532,-0.45091337,0.13212568,-2.805297,0.29060096,-0.18427876,-0.13811086,-0.18882054,-0.14660218,0.15728961,-0.75300246,-0.616083,0.22299163,0.22196929,0.7056512,-0.1716579,0.0931625,-0.27761704,-0.30010945,-0.21276177,0.0646706,0.027805887,0.40026826,-0.25055063,-0.38878077,-0.083308,0.0062512984,-0.46473277,0.2161533,-0.8001938,-0.5240991,-0.09550463,-0.8118233,-0.17757472,0.6963214,-0.22077648,-0.104247294,-0.18079893,0.019014465,-0.2109049,0.36197442,-0.005542526,0.23040716,0.29299542,-0.016248813,0.05316957,-0.24870147,0.3429156,-0.07711827,0.38401935,0.12162574,-0.15055616,0.35603064,0.48736283,0.7180387,0.028060151,0.8267517,0.56506085,-0.09872769,0.23703854,-0.33251396,-0.26964617,-0.5263516,-0.37477154,-0.09342366,-0.39806038,-0.62805855,-0.06118265,-0.3693238,-0.84469247,0.5320593,-0.013787527,0.35511667,-0.113856874,0.16220382,0.62923086,-0.15338184,0.043066606,-0.12682523,-0.23567082,-0.48479974,-0.19756435,-0.694261,-0.48553684,0.22931466,1.0704176,-0.3771462,0.2234638,-0.2062914,-0.42796278,0.040615294,0.14892626,0.008709862,0.39702702,0.3579915,-0.19935161,-0.52792263,0.39650983,-0.11014472,-0.21369442,-0.44585815,0.08642511,0.60210115,-0.8007215,0.7174765,0.1338965,-0.050091267,-0.046193175,-0.46084034,-0.20190237,0.11634783,-0.21620676,0.40953782,0.28114098,-0.49981195,0.4707022,0.33101428,-0.2278296,-0.8149391,0.28919417,-0.11574303,-0.18410832,-0.13642329,0.37433994,-0.11760699,0.04389495,-0.3686915,0.07286179,-0.41609997,0.18563703,0.33059248,-0.23426011,0.13028684,0.036488798,-0.23783149,-0.7196773,0.14831306,-0.6083137,-0.15979427,0.36079186,-0.00025927907,0.18797605,-0.07821028,0.28518456,0.4477536,-0.41044363,0.023022117,0.10642608,-0.29536277,0.105151325,0.48915446,0.289612,-0.4576755,0.37592712,0.14491118,-0.118029,0.08028188,0.069855645,0.3741152,0.16504055,0.40247557,-0.12251957,-0.27322203,0.24447213,0.7808799,0.05209981,0.44481248,0.06303027,-0.091268465,0.21751015,0.02378844,0.3700321,-0.023403963,-0.31633568,0.04124966,0.18114427,0.21536018,0.5790467,0.4660645,0.36089674,0.036731668,-0.33765063,0.015537171,0.280599,-0.0044608023,-1.2900211,0.461635,0.28867376,0.8361842,0.5325808,0.10312362,-0.24355419,0.4558419,-0.20745167,0.22637479,0.35257497,-0.25669506,-0.5946283,0.7368422,-0.678745,0.47159898,-0.15502095,-0.06388189,0.15730268,-0.041067645,0.32402802,0.75180733,-0.16412984,0.05234079,-0.13349918,-0.10110001,0.012295282,-0.39403662,-0.0632182,-0.6051478,-0.31950697,0.64096355,0.43532383,0.31669638,-0.19398023,0.0011848853,0.17075601,-0.08378328,0.16539167,0.11377639,0.10228157,0.30647624,-0.64622504,-0.40693805,0.5432241,-0.23968643,0.06461761,-0.15609668,-0.35791916,-0.01485831,-0.20716132,-0.038541853,-0.07676195,-0.7935019,0.101529635,-0.34278643,-0.4996597,0.28663,-0.089557104,0.06840123,0.27209952,0.047934063,-0.31771642,0.41453993,0.023937276,1.0896138,0.057333782,-0.24461001,-0.36761034,0.31639534,0.33568698,-0.2840158,0.047984764,-0.392669,0.09675085,-0.40108812,0.7134224,0.12698518,-0.3853679,0.10931059,-0.19084051,-0.0059686312,0.42419836,-0.20987114,-0.12506706,-0.19759256,-0.16439949,-0.501813,0.050580934,-0.27291828,0.18274818,0.46123078,-0.0034706134,-0.06598903,-0.071563035,-0.0648057,0.7261886,0.07904546,0.47478187,0.4923269,-0.05171836,-0.15935619,-0.028448949,0.43149754,0.43767172,0.16574067,-0.03125761,-0.63210326,-0.29416972,-0.34258837,0.18452145,-0.096290775,0.34226182,-0.056024663,-0.12695873,0.86210895,0.1547001,1.2394553,0.036792535,-0.28906927,0.10866283,0.3933121,-0.15100549,-0.05792959,-0.4854409,1.0067861,0.36972097,-0.11001013,0.044546314,-0.52064353,-0.35440034,0.4551341,-0.26435637,0.006116796,-0.04380887,-0.48017782,-0.44783896,0.13855216,0.14418729,0.11459296,-0.066163585,0.044086438,0.0745254,0.03019461,0.11647458,-0.66787463,-0.15929581,0.08059735,0.21148852,0.045504753,0.2907899,-0.3794256,0.50039506,-0.7833399,0.26892048,-0.28988367,0.24033979,-0.047396783,-0.3772549,0.17828855,0.10882656,0.3599293,-0.33129945,-0.34900826,-0.33027312,0.6139563,0.052504696,-0.014958749,0.7517385,-0.31840977,0.117292404,0.34294382,0.6015923,1.2057064,-0.15498106,0.053552788,0.29367557,-0.33926848,-0.68691456,0.35105845,-0.21747765,-0.048095226,-0.21493313,-0.34139845,-0.70153576,0.29643565,0.13985628,0.12338427,0.17924947,-0.5223885,-0.13210899,0.23223804,-0.33466065,-0.116659455,-0.44671977,0.2877533,0.8478988,-0.24917075,-0.3313598,0.097723044,0.10038327,-0.27641943,-0.2961991,-0.09668911,-0.35482973,0.2588855,-0.11286728,-0.19651915,-0.25814888,0.107524864,-0.3375243,0.14354075,0.21372017,-0.2553009,0.3059294,-0.12332128,-0.19617844,1.0547054,-0.2041896,0.033894684,-0.69626105,-0.5137316,-0.8244387,-0.53392893,0.12782606,0.12814853,-0.048110656,-0.6203715,0.3224562,-0.029769646,-0.12697253,0.083010346,-0.3955413,0.39208126,0.114814796,0.30922502,-0.2584487,-0.9804773,0.2046594,0.15570985,-0.30268133,-0.68687886,0.5579868,-0.071503714,0.8330464,0.086469725,0.031102227,-0.04884762,-0.34120747,-0.015505075,-0.34342745,-0.0935949,-0.91168743,0.017145423 -964,0.48981428,-0.10195083,-0.6170635,-0.13873447,-0.45486948,0.13943693,-0.25906056,0.14484452,0.24277145,-0.095479965,-0.23635581,0.12400646,-0.23645757,0.24815185,-0.14638892,-0.832303,-0.06306273,0.13461645,-0.59994066,0.54432243,-0.19733427,0.33481672,-0.1456686,0.32389933,0.30093685,0.4236962,0.11946009,0.169118,0.17597404,-0.20731372,-0.026231894,-0.24000758,-0.7993236,0.3174949,-0.31583533,-0.40649027,-0.10333292,-0.55717814,-0.35936788,-0.7515718,0.5203475,-0.733546,0.6678756,0.2217384,-0.34679142,-0.1576907,0.20488466,0.17982855,-0.21537948,0.066833414,0.3414254,-0.42046982,-0.007816058,-0.14509597,-0.3316081,-0.43300244,-0.6484244,-0.20438609,-0.43248865,-0.013708844,-0.15758187,0.21901202,-0.237918,-0.013149202,-0.3299083,0.14688092,-0.4860069,0.094393805,0.20958665,-0.18710896,-0.12110192,-0.70630085,-0.21945883,-0.06829031,0.2784046,0.27459666,-0.15049051,0.48388082,0.08889522,0.5141172,0.29338473,-0.3130449,-0.3317909,-0.027031284,0.1260311,0.5310368,-0.1650835,0.31197786,-0.3649533,-0.22027662,0.61739296,0.45800135,0.050946347,-0.18775058,0.14339016,-0.32067835,0.03428706,0.36582512,0.60575074,-0.32292587,-0.047482304,0.21904948,0.3137379,0.3825063,-0.17838605,0.11410569,-0.10741076,-0.29675862,-0.3512356,0.16382025,-0.0932367,0.26642695,0.0038661389,0.14493527,0.48808149,2.6909205e-05,0.0764326,0.04509658,0.00884007,0.2747347,-0.25859514,-0.4001601,0.48723397,-0.5831179,0.5232309,-0.2429722,0.420857,0.1714286,-0.6148161,0.2842635,-0.6414408,0.1248848,-0.028692488,0.64625514,0.9620646,0.59903705,0.06800813,0.927634,-0.4299375,0.084486045,-0.068477765,0.05704877,0.062933214,0.0056451103,0.23396192,-0.41825074,0.14454032,-0.23300482,0.06621898,0.21655038,0.28686583,-0.16807468,-0.20647874,0.0640409,0.724404,-0.26092154,0.17285626,0.77736914,1.1540805,1.124771,-0.089792326,0.9595055,0.05500212,-0.21474622,-0.5298718,0.04399291,-0.6010638,0.061089627,0.30079386,0.15524699,0.47055465,0.2374541,-0.040157977,0.4041999,-0.39528185,-0.16847871,0.120611735,0.083053075,-0.044722464,0.0014617259,-0.5211116,-0.33416468,0.16525462,0.05153192,0.004832011,0.449259,-0.33960024,0.4947707,0.04442778,0.8693758,0.13041037,0.17483248,0.24230263,0.3804895,0.24553023,-0.28657013,-0.055133276,0.06970357,0.27800572,0.021721043,-0.5780891,0.060761515,-0.4371821,-0.32353354,-0.07145503,-0.42495066,-0.42770126,0.06802036,-0.33480978,-0.30954468,-0.06559871,-0.2878019,0.40897185,-2.460156,-0.058573678,-0.16407418,0.37982643,-0.26542157,-0.2982127,-0.14690813,-0.48909634,0.2573089,0.19508079,0.38242033,-0.3525629,0.3830126,0.3919946,-0.632661,0.11621192,-0.49175632,-0.17689255,0.17724122,0.28834864,-0.1265419,-0.13299619,-0.24040031,0.3694078,0.71898264,0.35491684,-0.07575223,0.31216547,0.43830007,-0.24223192,0.33164927,-0.082875624,0.5011205,-0.5521828,-0.22524033,0.44969752,-0.36778036,0.6118999,-0.3239383,0.09429167,0.4970979,-0.45703554,-0.703616,-0.3334665,-0.28675425,1.2651392,-0.35447386,-0.71610713,0.06322941,-0.37076572,-0.1843963,-0.05225784,0.5999065,-0.22099003,-0.1204681,-0.57478446,-0.18662442,-0.26111317,0.24257992,-0.03671101,0.1149042,-0.44866377,0.9074837,-0.097644314,0.63035935,0.2977754,0.27518314,0.16363968,-0.30458266,0.19482714,0.5216747,0.69769704,0.16688119,-0.29986757,0.053793445,-0.008576145,-0.30249023,0.20001027,0.9162407,0.5258275,-0.28981176,0.057889573,0.2703351,-0.062472012,0.10145338,-0.11069831,-0.40695965,-0.30548337,-0.059810344,0.50551057,0.8266522,-0.018522121,0.12946454,0.007961443,0.2757912,-0.22387585,-0.44731963,0.31666124,0.72052765,-0.093673915,-0.09660853,0.77144563,0.54091394,-0.21903545,0.5563653,-0.73830855,-0.3279045,0.62620896,0.0070499,-0.45546442,-0.102714725,-0.47008708,-0.039142154,-0.5975625,0.17452934,-0.31703794,-0.5202039,-0.51986206,-0.21659015,-2.5470095,0.09480412,-0.3283404,0.10019317,-0.32398394,-0.26973546,0.34040153,-0.6255094,-0.7113298,0.08884262,0.012365644,0.5803482,-0.2536912,0.13686039,-0.24150303,-0.36613384,-0.36560407,0.37809467,0.31601393,0.3255033,-0.23803157,-0.1592786,-0.07696463,-0.013836856,-0.40324387,-0.20708431,-0.4936219,-0.30932772,-0.06550897,-0.35298777,-0.1289964,0.46096438,-0.41412747,0.033123933,-0.21699014,-0.095716946,-0.19885734,0.053384762,0.2488011,0.35770175,0.1559445,-0.11966442,0.014728101,-0.19527122,0.44864517,0.23577353,0.46188635,0.37961417,-0.19449209,0.033424266,0.40121636,0.5909886,-0.17686193,0.9127988,0.13981919,-0.042953886,0.5051892,-0.2769644,-0.65485513,-0.87775195,-0.17660935,-0.015271164,-0.40542188,-0.57871455,-0.116653234,-0.31063426,-0.9795265,0.34315172,0.16465625,0.37861922,-0.14064763,0.06705849,0.3486897,-0.1941295,-0.08722997,0.033835616,-0.099801116,-0.35576457,-0.38359883,-0.572612,-0.5619779,-0.03531796,1.0423505,-0.07512415,-0.002870092,0.44188717,-0.34812626,0.20771544,0.11529572,0.24172728,-0.11051623,0.41060454,0.3084216,-0.5410644,0.536894,-0.07937108,-0.06346266,-0.6181153,0.09290891,0.66419655,-0.51673454,0.53361416,0.46925122,0.08655153,-0.0988378,-0.74590653,-0.15842925,0.05713107,-0.34408662,0.55885166,0.46450076,-0.47702202,0.40502024,0.08742457,-0.12527587,-0.63395,0.6698138,-0.05777273,-0.22888246,0.044417128,0.46332154,0.10881996,-0.054493062,0.4300882,0.44237524,-0.1989136,0.42915732,0.2820261,-0.09658524,0.2289177,-0.04098204,-0.2556661,-0.7265898,0.20965579,-0.5881228,-0.28888276,0.4033981,-0.03990615,0.120306656,0.06682355,0.4134046,0.49948865,-0.3754096,0.22025622,-0.19610515,-0.34645283,0.44888088,0.4460589,0.63797766,-0.5624136,0.5217939,0.15637079,-0.109675005,0.41077948,0.27228147,0.40148932,-0.050945446,0.30617467,-0.20702632,0.08466132,-0.25264248,0.5091405,0.27643454,0.02199948,0.073602565,-0.16202077,0.40833503,0.1715011,0.015958332,-0.18620968,-0.55894935,0.039073803,-0.035071455,0.08869234,0.5148522,0.13009265,0.20536889,-0.19215547,0.05027418,0.19406033,0.03381374,-0.31625062,-1.221908,0.30186462,0.10196385,0.83003145,0.45623285,0.1350626,-0.056283332,0.41092414,-0.20264731,-0.009191307,0.52734345,0.12096853,-0.37732235,0.39996618,-0.34538335,0.4509997,-0.1471546,0.015177942,0.3277694,0.21497592,0.6765932,0.6785604,-0.19130747,-0.03904068,0.056047477,-0.3138672,-0.12327143,-0.12964925,0.018597424,-0.55343914,-0.30120736,0.6542736,0.37893683,0.3596359,-0.44041947,0.016025709,-0.1928028,-0.16361842,0.16209173,0.00079916074,-0.07694324,-0.17008628,-0.39639318,-0.15969999,0.44867283,-0.37861302,-0.15360276,0.03836208,-0.22873856,0.066320725,0.028180229,0.10266225,-0.0487659,-0.8791081,0.19355941,-0.39857927,-0.3816485,0.29408485,-0.10978068,0.057409942,0.24471451,0.006660397,-0.22508715,0.38869402,0.017325806,0.73263156,0.05770951,-0.07781931,-0.32231152,0.1587031,0.2222604,-0.21564484,0.25925785,-0.1795195,0.32392126,-0.4055589,0.43741804,-0.31437498,-0.18399686,-0.03372339,-0.096758,-0.2022149,0.47539717,-0.11585545,-0.15235224,0.14966908,-0.043453496,-0.38533586,-0.3235486,-0.44463918,0.06273001,-0.08706053,-0.06306049,-0.24475725,-0.14760566,-0.106969245,0.1745668,0.10980061,0.12924555,0.29465312,-0.2339278,-0.41883084,0.10471532,-0.006305089,0.3572319,0.0039145947,-0.052223112,-0.320667,-0.43767932,-0.39863852,0.74607074,-0.2718116,0.21529852,-0.033065695,-0.14303243,0.7077145,0.12804976,1.0615544,-0.06565176,-0.4161282,-0.04250324,0.644002,-0.27642617,-0.123969026,-0.2541354,0.8770965,0.5447135,-0.1213313,-0.19175856,-0.2467087,-0.052673016,0.016503109,-0.37331775,-0.12836696,-0.054053657,-0.5991215,0.016184883,0.1389936,0.34204558,0.008147657,-0.11442803,-0.15596436,0.20400491,0.35919592,0.27473298,-0.41819617,-0.3829912,0.4963441,0.106724925,-0.16481815,0.19563077,-0.31304532,0.3364238,-0.75202966,-0.044435795,-0.7274678,0.040086802,-0.107218266,-0.40636677,0.2376453,0.030654807,0.344717,-0.5861912,-0.22836766,-0.17875552,0.25350952,0.26957506,0.35975164,0.59780073,-0.20577644,-0.15776516,0.03895577,0.5342642,1.038644,-0.2249387,-0.007716491,0.2641714,-0.4866975,-0.576668,-0.12053021,-0.48797697,0.04141305,-0.119218096,-0.32292894,-0.38877127,0.15915471,0.011849339,-0.037296984,0.16053563,-0.7959505,-0.21782812,0.075627916,-0.3149319,-0.29452896,-0.33627522,0.21180129,0.76547635,-0.11856886,-0.28045318,-0.011581751,0.28257042,-0.1257098,-0.5728966,0.4191605,-0.3900894,0.21843912,-0.14155814,-0.4580362,-0.12027106,0.3438112,-0.46258947,0.22585575,0.2824427,-0.31610376,-0.053698704,-0.29403633,0.1367088,0.96635306,-0.031438038,0.065640144,-0.3525612,-0.5417435,-0.8970266,-0.39293554,-0.16995311,0.40720198,-0.08897155,-0.49506298,-0.084222585,-0.46801198,0.015886787,-0.11454297,-0.30301327,0.3831088,0.25212446,0.5368329,-0.19205149,-0.85126156,0.21107887,0.18677571,-0.41229588,-0.18656412,0.54805416,-0.13503002,0.7438192,-0.00027021766,-0.08556089,-0.23136179,-0.65227973,0.5478557,-0.22987276,-0.050724488,-0.67097163,0.054445203 -965,0.55741185,-0.33680478,-0.64766234,0.10777437,-0.21382897,0.27318686,-0.25027615,0.41550013,0.21908598,-0.31870493,-0.03862896,0.07805692,-0.2058791,0.25918528,-0.19750248,-0.41656098,-0.19604947,0.19234271,-0.5530268,0.5944375,-0.26046842,0.3061919,-0.044562336,0.23658967,0.18827142,0.2585225,0.13362952,0.07601842,0.031776372,-0.22121356,0.15862055,-0.034858204,-0.5747207,0.40397742,-0.16233951,-0.34956497,-0.14339916,-0.398994,-0.5062777,-0.7008273,0.3744282,-0.7907089,0.7011768,0.027729876,-0.26218763,0.121904746,0.05620592,0.28920606,-0.14033756,-0.0078822635,0.14244534,-0.305325,-0.21517245,-0.29982966,0.10058684,-0.2878606,-0.58409715,-0.07489775,-0.4986983,0.12271985,-0.17426945,0.23064639,-0.34595406,0.16981028,-0.2707925,0.41963425,-0.3702518,0.089673445,0.19649929,-0.27350202,0.09746163,-0.6299448,-0.14175676,-0.05093863,0.021835614,0.089682005,-0.12911561,0.3779013,0.00053551694,0.49138933,0.0113096535,-0.19712634,-0.2833725,-0.049034,0.09678085,0.5573486,-0.13223614,-0.26786646,-0.19062267,-0.124306455,0.51224816,0.040798917,0.013392468,-0.19053274,-0.085149124,-0.04795498,-0.105669394,0.3946868,0.687411,-0.23188414,-0.00967687,0.5155752,0.51517755,0.05126454,-0.08519289,0.14176792,0.028678037,-0.42624655,-0.17095979,-0.0043145576,-0.10471826,0.45314842,-0.04963743,0.27994603,0.51591873,-0.20027263,-0.16070077,0.35815617,0.20035999,0.020765606,-0.18821615,-0.41614336,0.3314996,-0.53501374,0.0041411477,-0.28658372,0.7377978,0.0768808,-0.805026,0.35561892,-0.4962212,0.13315837,0.10188233,0.6080294,0.7040547,0.7555509,0.10451921,0.949131,-0.31556785,0.026182063,-0.18734483,-0.19411272,0.20595399,-0.19173782,-0.18678282,-0.42716706,0.06242293,0.21051426,-0.11986046,0.026184147,0.41472623,-0.5302934,-0.16094805,0.05778903,0.5851933,-0.18011338,-0.010644937,0.7319637,1.1382977,1.0428402,0.13831984,1.0720307,0.11821849,-0.23886682,-0.22975269,-0.059802365,-0.89271283,0.26849568,0.292849,-0.05702222,0.46724054,0.23136427,-0.19522545,0.2730843,-0.43738422,-0.2138193,-0.00078320305,0.26282752,-0.11695831,-0.097003095,-0.45905125,-0.27455655,0.17072757,0.00896964,0.20295961,0.35503516,-0.36931908,0.34077966,0.22020763,1.3402735,-0.17355026,0.24084933,0.24070698,0.21127678,0.2192553,-0.24843259,0.022898054,0.16237898,0.3519076,0.09717175,-0.527845,0.08548386,-0.2578381,-0.51924247,-0.1474155,-0.13998128,-0.061655626,-0.074980214,-0.32940352,-0.30669972,-0.21093361,-0.4339927,0.35288665,-2.7557485,-0.08702073,-0.0371576,0.45428506,-0.29995856,-0.28567156,-0.095467806,-0.43917826,0.22762717,0.38778582,0.4107055,-0.71709865,0.3585066,0.29651308,-0.62379223,-0.004064353,-0.5235198,0.047746256,-0.013599229,0.3922959,0.020523317,-0.2297011,-0.069185734,0.2039717,0.5041787,-0.10174009,0.054714017,0.5310576,0.21442667,-0.084701434,0.18943663,-0.10231174,0.36566767,-0.6078361,-0.14543651,0.5197674,-0.5357813,0.13084665,0.05650049,0.16262752,0.374289,-0.5309592,-0.7484547,-0.5110661,0.08740017,1.2671674,-0.36286935,-0.55193686,0.15489273,-0.24895146,-0.26073858,-0.0018570344,0.37843385,-0.19778535,-0.015845085,-0.75190735,-0.057808835,-0.23175262,0.52161235,-0.03353823,-0.036317382,-0.4675468,0.72836214,-0.06970822,0.79658955,0.36708146,0.2899813,-0.29457524,-0.3851886,0.13203308,1.0465015,0.66179657,0.13634679,-0.17325646,-0.114592396,-0.17637606,-0.22404672,0.20775266,0.50945055,0.6808618,-0.07446251,0.07275368,0.30792704,-0.020821193,0.076758124,-0.1178955,-0.31592572,-0.16617365,0.12673847,0.623865,0.6314242,-0.047828726,0.18298377,0.021626746,0.36944488,-0.11923501,-0.47023758,0.50909656,0.8313894,-0.08004829,-0.36414996,0.57010436,0.5362178,-0.13458855,0.5687149,-0.70511067,-0.5362429,0.37078175,-0.09745021,-0.4154618,0.21429329,-0.4240293,0.34735197,-0.7950452,0.32226288,-0.30553025,-0.6081347,-0.6192389,-0.08422346,-2.39254,0.13589214,-0.22254118,-0.13510625,-0.1170701,-0.022617765,0.30974367,-0.6451293,-0.61335,0.07073701,0.23678665,0.71627337,-0.08955499,0.052736863,-0.06528587,-0.3423171,-0.35932344,0.28147534,0.24061346,0.19230522,-0.009657886,-0.40405422,-0.325183,-0.08717598,-0.28492206,-0.007612284,-0.5764578,-0.38439363,-0.22398901,-0.548599,-0.36480534,0.5824747,-0.25503746,0.042545877,-0.18187237,0.046765573,-0.016493503,0.2320986,0.08471996,0.043297514,-0.0053239665,-0.27842033,0.21485463,-0.23814252,0.3349969,0.04468373,0.32109728,0.56413007,-0.41139203,0.03497996,0.57231134,0.5939675,-0.087049514,0.90048355,0.37029108,-0.13115351,0.3482271,-0.16670386,-0.39520136,-0.49258024,-0.17543812,0.13301133,-0.36565363,-0.15530199,0.0022892356,-0.35803196,-1.0517813,0.5254356,-0.012257229,0.31790236,-0.010192005,0.27933136,0.42561644,-0.12477218,-0.08910371,-0.12824765,-0.19752744,-0.37637505,-0.23726897,-0.777325,-0.38433582,-0.06780286,1.2452781,-0.2167341,0.043488692,0.20354916,-0.19227777,0.1556366,0.047696017,0.10995649,0.18247119,0.4747172,0.089376904,-0.6127705,0.39516535,-0.3281795,-0.12360768,-0.48396543,0.3057666,0.6136917,-0.61542284,0.1950025,0.42841306,0.1190938,-0.1963462,-0.5563147,0.041702125,-0.035130765,-0.044077992,0.42375356,0.31918827,-0.649743,0.4701956,0.23048477,-0.38619518,-0.6140908,0.3030285,0.020438232,-0.10861357,-0.22425842,0.39316073,-0.07365771,-0.06024054,-0.09949481,0.22565109,-0.34502402,0.2640777,0.022157626,-0.1340119,0.39578724,-0.21998173,-0.23616856,-0.73144466,0.16000906,-0.58217496,-0.031397093,0.20062661,0.09175407,-0.032962088,0.023347182,0.10543569,0.5553449,-0.36238137,0.10276006,-0.18434347,-0.43535078,0.7168143,0.54505235,0.40407073,-0.31673563,0.681035,0.10389069,-0.15093909,-0.30946502,-0.0358534,0.46030518,-0.100328766,0.23533122,0.09230308,0.025966985,0.18771015,0.5976266,0.31068316,0.33016744,0.04623843,-0.14564934,0.17070833,0.08904065,0.15610763,-0.061772473,-0.5960548,-0.0356123,-0.12997597,0.106281996,0.48031372,0.11184058,0.45570466,-0.23653625,-0.2794687,0.006932547,0.08882939,-0.22765633,-1.3182654,0.37222087,0.04845656,0.70805764,0.56845295,-0.006080453,0.08193707,0.60149246,-0.10428222,0.1223021,0.25911447,-0.07508305,-0.49189076,0.48917547,-0.65876216,0.47042802,-0.0010143698,0.05763537,0.21053143,-0.031892285,0.58513266,0.6975914,-0.103741266,0.085873984,-0.08239495,-0.24786739,-0.011606244,-0.29941204,0.29482153,-0.557295,-0.34651247,0.8506152,0.26652673,0.56936735,-0.1231683,-0.025313172,0.014715477,-0.056408104,0.44741535,-0.06905317,0.1982546,-0.31713867,-0.4437669,-0.15353881,0.6025835,-0.02651995,0.059384745,0.061985515,-0.049386393,0.18349367,0.048313525,0.03085317,-0.11815819,-0.75995904,0.2509847,-0.32945728,-0.31007177,0.407254,-0.14367771,0.26722303,0.22942352,-0.053703323,-0.46506754,0.14345707,0.24889842,0.7050867,-0.04444305,-0.20815805,-0.27447975,0.2357801,0.27193674,-0.13976015,-0.020988517,-0.24413,0.11071571,-0.6603591,0.40591577,-0.2923248,-0.1322443,0.27944717,-0.2046371,0.045701265,0.6336071,-0.13438453,-0.29109195,0.16344094,0.0666948,-0.42798913,-0.4371494,-0.17324859,0.12755015,0.30818376,-0.00571121,-0.00419329,-0.0804447,-0.10825967,0.1256677,0.22035189,0.29519284,0.42977244,-0.012486305,-0.48783648,0.02880807,0.05234183,0.4519303,0.10673719,-0.031774886,-0.57626635,-0.550997,-0.3957478,0.2874085,-0.08491267,0.25514457,-0.003436593,-0.25194627,0.8569947,-0.008006537,1.0045756,-0.07924595,-0.34362444,-0.024786567,0.62176126,-0.09108117,-0.255627,-0.2930772,1.085271,0.72181755,-0.15388092,-0.18198314,-0.4334378,-0.12251528,0.13291174,-0.26896477,-0.24981835,-0.009457541,-0.70574963,-0.15305571,0.12896657,0.31964558,-0.04389124,-0.2594096,-0.10793132,0.33741218,0.015246149,0.090945736,-0.3967091,-0.12031745,0.3988217,-0.05379802,0.06759788,0.060571976,-0.5731378,0.24141155,-0.65474445,-0.040699124,-0.120507255,0.05628412,-0.058464646,-0.42753965,0.25779358,0.084218055,0.2715929,-0.49171218,-0.30957678,-0.069025725,0.37213284,0.1122802,0.017281642,0.66041946,-0.27653632,0.06979144,0.11726384,0.40169346,0.91901386,-0.34844977,0.045077696,0.16393709,-0.40526995,-0.66342735,0.2262645,-0.21300684,0.10600813,-0.15732187,-0.31736958,-0.57413864,0.25118533,0.20379482,-0.03395583,0.07223602,-0.75456995,-0.20605206,-0.015575093,-0.4375618,-0.16029969,-0.36498165,-0.058313467,0.6625057,-0.27839717,-0.42751387,0.08638822,0.28888804,-0.039481737,-0.5466746,-0.03252347,-0.28351432,0.14526619,0.07720725,-0.2378296,-0.12421873,0.28184384,-0.43713725,0.008091664,0.13948928,-0.2866942,-0.05496026,-0.43992093,0.031593632,0.6086391,-0.16468102,0.10795841,-0.54423153,-0.41778043,-0.9666721,-0.41713634,0.20496076,0.21756043,0.093697906,-0.7430513,0.0115690585,-0.29586282,-0.06371928,-0.28328317,-0.33915812,0.50271493,0.19182311,0.30678627,-0.1707571,-0.803735,0.12199715,0.09547686,-0.12111128,-0.347869,0.4705432,0.08579052,0.8439579,0.1748629,0.13936397,0.25368342,-0.8518754,0.030839555,-0.15567915,-0.1959836,-0.5564766,0.13353835 -966,0.3582496,-0.2447257,-0.5162185,-0.21936284,-0.18384813,0.15474437,-0.23914358,0.4285823,0.16426262,-0.44222167,-0.23145904,-0.3064537,0.098496914,0.20864843,-0.23019664,-0.47830296,-0.045512266,-0.0007757613,-0.4887409,0.6047729,-0.4011576,0.21083912,-0.00237276,0.39651543,0.21257654,0.22042114,0.15486431,-0.12428197,0.07932679,-0.26839298,-0.18326594,0.236649,-0.5468216,0.19794083,-0.14711672,-0.35669076,0.0730087,-0.47891515,-0.25295225,-0.6888545,0.34654438,-0.93092334,0.47324196,0.17811991,-0.31770432,0.40830386,0.19513883,0.22467826,-0.3529359,-0.110046916,0.0891981,-0.055883408,0.01986592,-0.16954242,-0.12836257,-0.2669078,-0.4796644,-0.06684343,-0.37193662,-0.27332926,-0.3415583,0.06354617,-0.27361786,-0.045059375,0.037271436,0.55593073,-0.44068295,0.10193952,0.24850136,-0.22794448,0.45285624,-0.5914763,-0.20773765,-0.10022569,0.4314895,-0.20145464,-0.1596929,0.12503038,0.3442084,0.32030663,-0.11603253,-0.081691355,-0.087838836,-0.21023569,0.11952551,0.41914126,-0.09678137,-0.47660595,-0.09360372,-0.15284213,0.15076627,0.27534434,0.24089848,-0.2943633,-0.18967634,-0.05915598,-0.34019965,0.5236598,0.36818585,-0.30912235,-0.092947885,0.35993928,0.4787129,0.3091787,-0.10887228,0.021500904,0.090224095,-0.6340793,-0.16632321,0.034453254,-0.24183501,0.61020184,-0.16481811,0.4086959,0.6169488,-0.06703256,0.01883115,0.007979357,-0.019146759,-0.23409447,-0.3981536,-0.26082635,0.26111466,-0.4035541,0.15532674,-0.11470998,0.7852399,0.106218815,-0.5663333,0.25993818,-0.57204944,0.13001654,-0.14598285,0.46629462,0.47213537,0.3787623,0.31129578,0.6845263,-0.47081405,-0.12985009,-0.019011699,-0.3491001,0.014097904,-0.08207394,-0.21293505,-0.4901737,0.03216453,0.047054432,0.16466847,0.10904893,0.33628485,-0.4275122,-0.05115625,0.19227637,0.865021,-0.24824198,-0.051396325,0.67413676,1.0277789,0.84023654,0.101491965,1.0257905,0.06464807,-0.25372493,0.049371563,0.041505877,-0.798482,0.3336701,0.5038688,-0.1664361,0.2638412,-0.018184781,0.017110558,0.2286579,-0.30921438,-0.019599667,-0.1384293,0.10378687,0.11608087,-0.08530033,-0.3238225,-0.19235435,-0.034254473,0.028477816,0.07072211,0.068062454,-0.08615044,0.3160316,0.16074984,1.3276832,-0.18307778,0.11138344,0.13754354,0.39317968,0.26508173,0.012652965,-0.13992125,0.43028787,0.36714506,0.23537041,-0.7095157,0.25642914,-0.10136063,-0.43502042,0.011516828,-0.34304592,-0.112024054,-0.040259995,-0.48996374,-0.014133293,-0.18846741,-0.20973803,0.4475633,-2.9170823,-0.11881015,-0.18314005,0.3828899,-0.18458723,-0.25222412,-0.04260585,-0.354843,0.5068405,0.36079276,0.46795648,-0.5850645,0.2976602,0.52761775,-0.5289731,-0.16842362,-0.5868998,-0.20015463,-0.074908026,0.33139026,-0.010180547,0.059016142,-0.032746386,0.30595973,0.38750523,0.06909592,0.19870742,0.25650543,0.48614928,-0.0069945683,0.65024704,-0.046298113,0.5033511,-0.22437106,-0.13479692,0.23900631,-0.24339423,0.2259703,-0.072105154,0.13489099,0.5012344,-0.4304533,-0.78971916,-0.6927185,-0.24648912,1.3140447,-0.38233906,-0.43184426,0.3046138,-0.27235126,-0.2385706,-0.0054718186,0.46727383,-0.116034865,-0.03724685,-0.8409253,0.1020773,-0.0028998577,0.23917247,0.07271724,-0.188078,-0.45525742,0.7606418,-0.0009806523,0.54403424,0.42683512,0.119450495,-0.24209836,-0.46416077,-0.075318664,0.7904483,0.4190075,0.076216236,-0.26258847,-0.18636917,-0.5109068,0.07751274,0.072885685,0.50071454,0.5552153,0.006901182,0.2420124,0.28554136,0.10398006,0.14329857,-0.21800143,-0.26575404,-0.16113135,-0.13593541,0.49588013,0.54298824,-0.0970178,0.17033452,0.06956141,0.2842638,-0.22413653,-0.52040446,0.59570986,1.0401145,-0.13782512,-0.27821118,0.6015596,0.62235904,-0.16367632,0.30481425,-0.541617,-0.27177247,0.63144577,-0.15606523,-0.5924982,0.19593228,-0.34955344,0.09365565,-0.8986263,0.12052221,-0.35752407,-0.29188567,-0.34898573,-0.021152528,-3.7624147,0.35121602,-0.2681185,-0.21718594,-0.40608323,-0.11181431,0.33323714,-0.5596454,-0.64924055,0.18793894,-0.0087502,0.72507596,-0.11860202,0.095643945,-0.2298598,-0.10661569,-0.1503635,0.09106075,-0.009299379,0.25615555,0.008804862,-0.45081636,-0.054080002,-0.026810113,-0.39837456,0.023487557,-0.39839047,-0.36640218,0.0458678,-0.5388936,-0.26937595,0.5426152,-0.3719552,-0.0026727777,-0.23158646,0.0799266,-0.22931115,0.17457357,0.03664722,0.21414599,-0.08020392,-0.033462305,-0.16472858,-0.36211315,0.2897066,0.023888435,0.09521666,0.018401759,-0.09037355,0.15429728,0.38039792,0.4640237,-0.11130471,0.835914,0.35318464,0.008444102,0.28071433,-0.1479043,-0.2972849,-0.5395987,-0.19636692,-0.034798805,-0.3360077,-0.4215908,-0.07602781,-0.29359773,-0.7200426,0.5757295,0.06492998,0.18200217,-0.02158777,0.25341237,0.46368644,-0.17432489,0.015884105,0.058341715,-0.13210085,-0.6465944,-0.13496715,-0.7031947,-0.2888908,0.0928474,0.5100942,-0.3601921,0.08789123,0.05480693,-0.29301456,0.06308569,0.17518257,-0.058612272,0.2751907,0.61154747,0.004443691,-0.69342697,0.51440203,-0.06835081,-0.1832322,-0.50243765,0.10873294,0.6560122,-0.6113694,0.5373797,0.4539965,-0.06988095,-0.26406887,-0.41093686,-0.23595971,-0.091180556,-0.35981324,0.3796113,0.20926505,-0.8371582,0.33306423,0.19739923,-0.10858075,-0.6974229,0.8366585,-0.030807715,-0.39001146,0.011562123,0.4012019,0.13875905,0.08846448,-0.1326085,0.23554006,-0.27546996,0.1768902,0.17220497,-0.09948404,0.2855955,-0.107731424,0.008105294,-0.76388615,-0.04659535,-0.52852124,-0.28202045,0.30794492,0.057206444,-0.017469142,0.1444124,0.09325531,0.35465083,-0.23716667,0.18336175,-0.069678664,-0.17801784,0.4252835,0.4785898,0.50577825,-0.35001785,0.677699,0.04428804,0.021452487,0.049819726,0.14171508,0.37290698,0.026023673,0.4943927,0.024411472,-0.17111316,0.4524656,0.5574211,0.2328679,0.41475406,0.16730705,0.06450641,0.33393508,0.108881146,0.19582677,-0.09958071,-0.64045215,-0.03149866,-0.37771723,0.074125,0.5172357,0.19320837,0.18944813,-0.025089474,-0.4492682,0.010064183,0.14378174,-0.0019426896,-0.90078,0.33984926,0.21915378,0.7552385,0.54931873,-0.12186343,0.1154325,0.6572398,-0.121642485,0.04972323,0.38843143,0.19078638,-0.5619765,0.6188192,-0.6614476,0.32210082,-0.15470804,-0.050440393,0.05950145,-0.03264869,0.4004045,0.7397938,-0.12087289,0.07376799,0.05367184,-0.40994072,0.2629275,-0.41343036,-0.10831237,-0.4812203,-0.24313515,0.4888878,0.6747036,0.40142104,-0.28828067,0.092715636,0.11072968,-0.15941899,0.0727392,0.1559317,-0.033642825,-0.14494002,-0.77120024,-0.10692819,0.5449088,0.17976093,0.15477291,-0.11297472,-0.28857386,0.32865286,-0.2921273,0.14482754,-0.14079401,-0.74368954,-0.058030963,-0.3911851,-0.48977682,0.32900268,-0.28986305,0.290157,0.24836956,0.015987864,-0.09869385,0.22836417,-0.06787997,0.7710565,0.08713767,-0.14620796,-0.40039307,0.024652123,0.13307196,-0.18864942,-0.039140962,-0.35512954,0.011316364,-0.49122894,0.39531326,0.020292997,-0.22314581,0.03464531,-0.19492985,0.027881883,0.5688857,-0.12780356,-0.031358358,-0.07869392,-0.11537605,-0.19372895,-0.21516183,-0.15253834,0.20902117,0.2033851,0.1424879,-0.21242854,-0.08726455,-0.22585215,0.19508164,-0.039431036,0.53770715,0.40036148,0.020665122,-0.23952898,-0.1851632,0.25700888,0.52121294,-0.021582833,-0.148141,-0.12033514,-0.59515315,-0.19230458,0.22284752,-0.0066650948,0.3606481,0.0886153,-0.11940229,0.7046534,-0.05082155,0.85788566,0.013397134,-0.44333646,0.035006635,0.54846376,0.0070390976,-0.20171905,-0.19782823,0.8312908,0.34967723,-0.13616563,-0.108826436,-0.3263502,0.015649837,0.018566608,-0.1227901,0.0055734445,-0.12830561,-0.50368494,-0.2950195,0.16104467,0.2917288,0.27242175,-0.06055627,0.01812963,0.22876707,-0.08414216,0.39507484,-0.5769628,-0.2592613,0.16702901,0.13670334,-0.00045823248,0.04684971,-0.42962816,0.47046897,-0.54131055,0.1081295,-0.45347378,0.15640329,-0.22573796,-0.18793803,0.16266641,-0.13647279,0.34582636,-0.43199286,-0.37770763,-0.28935054,0.39271286,0.20578612,0.12813273,0.5734126,-0.27143717,0.06997346,0.097141504,0.56679314,0.83969426,-0.12865992,-0.003992007,0.3473207,-0.51124865,-0.5357532,0.20667475,-0.48428413,0.3364065,0.05166115,-0.106371075,-0.42675394,0.24300933,0.24225706,0.1350084,0.042472463,-0.78941435,-0.25105864,0.45387208,-0.18392882,-0.24219278,-0.26674646,-0.044433508,0.44064587,-0.25827816,-0.2848332,0.02643589,0.12643194,-0.05699354,-0.61747044,-0.009349043,-0.3738734,0.30775687,0.14945085,-0.2785691,-0.18045355,0.05861103,-0.45947057,0.37598088,-0.05020626,-0.317754,0.0071745985,-0.25789714,-0.15798184,0.90305865,-0.34902424,0.03278088,-0.39512378,-0.44215077,-0.6628526,-0.24164772,0.59630144,-0.011428759,0.20602857,-0.41633365,0.12726915,-0.090976484,-0.074526034,-0.07696418,-0.27244553,0.49973994,0.16421254,0.54651386,-0.029223157,-0.7372296,0.29578498,-0.04238622,-0.23163532,-0.6440562,0.48157918,-0.104194164,0.6403767,0.036548574,0.08567602,0.22994551,-0.5153,-0.07348229,-0.15025067,-0.15779103,-0.56190044,0.13978729 -967,0.45361748,-0.2776729,-0.55918604,-0.087566435,-0.57913333,-0.11848114,-0.32050863,0.4054682,0.5068006,-0.1629646,-0.3344376,0.010997345,0.08898532,0.41728243,-0.14552546,-0.6749463,-0.08077086,0.40840173,-0.83651334,0.5891804,-0.35900185,0.4316174,0.12880222,0.40786198,0.18020207,0.12632959,0.10927721,-0.05095573,0.13958251,-0.4653518,-0.050481558,0.20784223,-0.7984999,0.1641867,-0.40255603,-0.6596943,0.009166151,-0.5466606,-0.13647752,-0.9193711,0.14719589,-0.77932614,0.77197033,-0.14772685,-0.27588013,-0.28569764,0.22128706,0.57786894,-0.09485006,0.16751562,0.38239434,-0.3271932,-0.15134515,-0.28916582,0.08859829,-0.42087007,-0.46903506,-0.23850374,-0.5042295,-0.0848892,-0.13852574,0.259663,-0.16685742,-0.09682237,-0.15199442,0.29049304,-0.27700832,0.13116054,0.24990588,-0.0584162,0.638855,-0.5939679,-0.009379496,-0.11521288,0.471687,-0.20275676,-0.25492534,0.47171664,0.3738151,0.4341174,0.29644445,-0.37917468,-0.14307332,-0.03797509,0.01039366,0.5625751,-0.37046647,-0.27002704,-0.26748517,0.012933691,0.60051346,0.37307307,0.031848412,-0.20294529,0.15540327,-0.24632138,0.022245914,0.6316297,0.43529558,-0.08546547,-0.11040867,0.055128384,0.46466413,0.5007634,-0.13075286,0.06065021,0.011819343,-0.52144706,-0.2570144,-0.008797944,-0.27913475,0.47565362,-0.15987866,0.15315586,0.86068374,-0.10138627,-0.12635075,0.26313332,0.1771909,-0.06336479,-0.09528301,-0.41378763,0.33920157,-0.8989651,0.12597458,-0.36629617,0.6524729,-0.0022767268,-0.7556675,0.22052033,-0.7657125,0.062471393,0.023715748,0.5217507,0.8254168,0.5156769,0.3147597,0.9276096,-0.15372688,0.19782312,0.08385554,-0.36060944,0.25900397,-0.27904686,0.002559257,-0.56489366,-0.21066575,-0.28134987,0.17008595,0.1727375,0.4490663,-0.79387015,-0.32085353,0.27872872,0.6555891,-0.31963453,0.16403349,0.8403136,1.1608654,1.1403947,0.07121471,1.4429835,0.104495384,-0.3678669,-0.04078682,-0.012308647,-0.73819846,0.29769334,0.39858127,-0.74821395,0.38090786,-0.10747788,0.017550161,0.36297965,-0.6220979,-0.22524054,0.109447785,0.3241847,-0.10693824,-0.40653285,-0.5518637,-0.3546126,-0.043551665,0.15079413,-0.05307712,0.27438748,-0.40214157,0.23045392,0.053935066,1.0458096,-0.20646794,-0.027709166,0.028881969,0.41330028,0.28331962,-0.09841309,-0.27039823,0.07719221,0.44599763,0.21922706,-0.48677993,0.060566466,-0.3380599,-0.31620714,-0.2808526,-0.11032996,-0.2515489,0.10587511,-0.3842602,-0.32859528,-0.09133039,-0.3097443,0.3997626,-2.10623,-0.30302617,-0.048371017,0.40769705,-0.25212693,-0.13262212,-0.18845916,-0.51293993,0.45868346,0.16281262,0.68254894,-0.7136054,0.4956679,0.5861063,-0.73953223,-0.12095225,-0.7536335,-0.20002502,0.1266021,0.27235642,0.2823312,-0.25470623,-0.09816996,0.16418509,0.7355175,0.046906278,0.22034037,0.5709645,0.41375133,-0.20932633,0.48068535,-0.120709054,0.56633955,-0.32610273,-0.24986826,0.36649418,-0.29393324,-0.033934753,-0.30349785,0.0025682747,0.689945,-0.64600426,-1.2213045,-0.60604775,-0.25806907,1.0630612,-0.23379205,-0.49240708,0.3383734,-0.16554262,-0.18151055,0.24530129,0.75321865,-0.16581558,0.2563808,-0.76693535,-0.1238605,-0.044911325,0.057814296,0.03671366,-0.12577641,-0.59996456,0.78292876,-0.075637855,0.49096403,0.23036069,0.33514294,-0.3253846,-0.41852632,0.075513445,1.1520743,0.5938832,0.04750346,-0.18875188,0.006192165,-0.382991,-0.026455695,-0.11989669,0.611474,0.87581235,-0.28524524,0.21090972,0.24110854,-0.025691202,0.082924895,-0.15299655,-0.42673326,-0.12050462,0.015959492,0.5876178,0.8010917,0.12510236,0.55466425,-0.18796122,0.360453,-0.07239311,-0.6309425,0.47927514,0.7928067,-0.14863399,-0.019878222,0.758594,0.37585792,-0.18700488,0.6177296,-0.6091039,-0.6143804,0.54181296,-0.06602954,-0.5854692,0.27827302,-0.30396214,0.24081166,-0.7278853,0.57994556,-0.5781913,-0.69988376,-0.43037876,-0.09703016,-2.5174897,0.3617877,-0.18424706,0.07735347,-0.40201116,-0.11844772,0.3001219,-0.6738701,-0.774923,0.064823665,0.18326688,0.8530853,-0.14615901,0.07557305,-0.053880427,-0.63150394,-0.18619801,0.31498507,0.2604414,0.24198209,-0.110235006,-0.60198885,-0.13257326,-0.064047106,-0.57358426,0.017431712,-0.7941933,-0.6632243,-0.040233303,-0.579647,-0.31599548,0.6965901,-0.4072722,0.15951249,-0.33880904,-0.01350839,-0.042442262,0.2329812,-0.04958023,0.11969075,0.09915811,-0.08283839,0.12857665,-0.07121583,0.45199144,0.12327448,0.27143803,0.046488732,-0.17863393,0.255599,0.55340546,0.7729885,-0.39307523,1.3817986,0.5128568,-0.22533493,0.12639146,-0.22214781,-0.43649206,-0.70830375,-0.30479226,0.017377196,-0.5007003,-0.3006393,0.06384202,-0.29026693,-0.95030195,0.76345485,-0.027851472,0.28586486,-0.033139534,0.07837606,0.29199067,-0.2831749,-0.20479967,-0.1947258,-0.2566426,-0.41309536,-0.085952885,-0.70397395,-0.4741405,-0.38291898,1.0958626,-0.41973045,0.2815041,0.24256597,-0.13670401,0.34229776,0.13542305,-0.07775068,0.05064556,0.5905354,0.16007471,-0.76939243,0.2588832,-0.0078656,-0.03882492,-0.5177224,0.14381093,0.8482985,-0.8184001,0.594026,0.44759393,-0.030998817,-0.16898991,-0.5867123,0.062286884,0.14792544,-0.29239202,0.5297081,0.21497953,-0.62010986,0.5752174,0.25125846,-0.51176745,-0.7924948,0.4828184,0.0154359015,-0.35077587,-0.108837724,0.5421887,0.17366166,-0.14417239,-0.18394077,0.47259712,-0.3727025,0.5938325,-0.046564188,-0.08034341,0.108150184,-0.086598836,-0.38063416,-1.0470716,0.27130613,-0.5433941,-0.3859433,0.2855842,-0.072603405,-0.31727597,0.41180253,0.43118286,0.455295,-0.44264945,0.110411495,-0.21281986,-0.61605906,0.39081153,0.4973794,0.41727972,-0.2998394,0.5124688,0.2509344,-0.4495561,-0.15591687,0.0074825287,0.57871044,-0.16895784,0.5455471,-0.14794092,-0.19255431,0.30721983,0.6727576,-0.03742118,0.29174006,-0.06751626,-0.008720696,0.08251376,0.12019587,0.27022338,-0.03177115,-0.51856714,0.072921015,-0.19521244,0.017322833,0.67508507,0.2921112,0.091470055,0.14025415,-0.3247117,-0.016771195,0.22384389,-0.07071117,-1.7870094,0.61826974,0.28990978,0.9141101,0.5798015,0.13603434,-0.0848883,0.5789216,-0.25437376,0.012480669,0.42800894,-0.005397459,-0.2873815,0.6949561,-0.80342436,0.31325084,-0.15887593,0.03830799,0.21564882,-0.11554924,0.49473563,0.94087106,-0.14040105,0.22272556,-0.04258192,-0.14470248,0.0040815673,-0.35711458,-0.00015952438,-0.54601854,-0.4848399,0.9515614,0.33876634,0.37678528,-0.2476091,0.13324875,0.10949859,-0.19056536,0.41430315,0.026146179,-0.054251324,-0.0071428814,-0.51596296,0.16589974,0.5726269,-0.08648013,-0.018981343,-0.16349667,-0.06035122,0.09175157,-0.21531124,0.18593156,-0.022732625,-0.8885409,-0.14571331,-0.7350159,-0.25465766,0.3862939,-0.16002692,0.069410436,0.22500764,0.10403854,-0.03224188,0.3864937,0.3562541,0.6252378,0.17559601,-0.35738632,0.05265501,0.35232663,0.19418202,-0.40991282,0.02534187,-0.20351678,0.09504217,-0.5659253,0.66067266,-0.048777003,-0.47205982,0.39839056,-0.1236386,-0.02898326,0.46073946,-0.11750511,-0.21805005,0.09900268,-0.053181548,-0.28961506,-0.23026066,-0.2808093,0.0008527686,0.37149835,-0.024830678,-0.17929499,-0.19955592,-0.24198948,0.41213784,-0.061251223,0.6926467,0.38042983,0.16177535,-0.32923266,0.2864679,0.283082,0.48051786,0.03004489,-0.015662232,-0.49484554,-0.30148038,-0.3760232,0.08505842,-0.1718868,0.22959034,-0.021025984,-0.05406946,1.107858,0.20737647,1.2512388,0.04963441,-0.4132134,-0.006812791,0.58969635,-0.40767118,-0.20096952,-0.57978904,1.1761923,0.53268546,-0.33299044,-0.024235362,-0.47854042,-0.060356364,0.30882537,-0.29842412,-0.14238068,-0.0075498275,-0.6514411,-0.5424455,0.23115478,0.39763764,-0.07467175,-0.16845606,-0.016387323,0.37524557,0.16336219,0.11003971,-0.7743833,-0.2359202,0.25570735,0.44177082,-0.12582192,0.24571633,-0.43904093,0.36673427,-0.7781832,0.14385007,-0.32930216,0.14836119,-0.36329496,-0.5690677,0.15592988,-0.024430426,0.28134763,-0.2960479,-0.3448964,-0.0051711746,0.29945347,-0.010254711,0.04164463,0.62242633,-0.32048306,-0.038621146,-0.014137884,0.5237784,1.2396075,-0.48114458,-0.07825627,0.4330815,-0.47665954,-0.58077925,0.32508996,-0.41864538,-0.25341812,-0.12602669,-0.64590335,-0.5247694,0.1605735,-0.03594506,0.13776736,-0.07137669,-0.5965144,0.23352404,0.41288415,-0.30034786,-0.26240978,-0.2024306,0.39373457,0.61312145,-0.22836219,-0.57800645,0.08266868,0.25338888,-0.3928244,-0.46031508,-0.04348262,-0.29182947,0.35709652,-0.027954085,-0.5874884,-0.09352991,-0.012803748,-0.61060226,-0.030084187,0.35733566,-0.3076836,0.0777932,-0.2033463,-0.05691421,1.0462761,-0.32198164,-0.03362848,-0.43531168,-0.464468,-0.7257164,-0.23532222,0.051430717,0.5063679,-0.01259537,-0.57597566,-0.060845446,-0.26796296,-0.18663175,0.08420261,-0.2395432,0.32170638,0.30426505,0.6497172,-0.56220776,-1.0889908,0.43026218,0.29742593,-0.23117043,-0.6311832,0.60011816,0.023242945,0.8080093,0.090382814,-0.04589851,0.1855666,-0.50503236,0.15075544,-0.11750925,0.03899144,-0.8491674,-0.018619316 -968,0.62822723,-0.15782242,-0.6649213,-0.20935602,-0.31550258,-0.24327034,-0.19607222,0.5376768,0.38081634,-0.49771756,0.035125356,-0.139507,0.008765788,0.47617477,-0.15044059,-0.7709718,-0.04044871,0.06817202,-0.5361202,0.5956649,-0.46400627,0.29498592,0.024158817,0.46321136,0.1914598,0.29775575,0.10818705,-0.10281262,0.0002874732,-0.14251491,0.080480315,0.292207,-0.73723006,0.04093898,-0.087463096,-0.504169,-0.09821437,-0.5317951,-0.34854966,-0.7600142,0.3066698,-0.763631,0.4770882,-0.020301677,-0.24990712,0.14073749,0.20621803,0.4108318,-0.3106289,-0.07734954,0.056351446,-0.013927415,-0.06107662,-0.14015117,-0.3667115,-0.4287867,-0.7535801,-0.0036081448,-0.45764273,-0.12018862,-0.33719528,0.1489082,-0.40621272,0.14961389,-0.16654134,0.46891662,-0.37671527,-0.13710809,0.50829107,-0.07949525,0.30468583,-0.3800446,-0.14129427,-0.21493185,0.12826659,-0.058041636,-0.31779182,0.3744832,0.28939068,0.58657205,0.09129805,-0.34563142,-0.384592,-0.029885463,0.091150805,0.40462542,-0.29076442,-0.48784864,-0.22435147,-0.043675065,0.282403,0.33239567,0.17130792,-0.27593154,0.025620492,0.241423,-0.36718088,0.46916053,0.4924127,-0.29197207,-0.2623673,0.17712703,0.49629936,0.2153798,-0.21461779,0.27592266,0.06567225,-0.6053172,-0.20229259,0.07382087,-0.09120293,0.41631645,-0.10874877,0.20211971,0.78733087,-0.24435103,0.019806504,0.034941345,-0.023173492,-0.15110122,-0.46860495,-0.2854038,0.28103936,-0.5538073,0.2762677,-0.21782973,0.8921767,0.2004194,-0.6835436,0.31743115,-0.67630625,0.2872401,-0.18041536,0.5117353,0.8281985,0.46270424,0.40052515,0.67944425,-0.40584219,0.15600336,-0.12018195,-0.39663458,0.11676513,-0.26637942,0.083455876,-0.37714058,0.03428662,0.073874,-0.103644595,0.2071031,0.37853456,-0.6344107,-0.18176568,-0.03837145,0.8904521,-0.18581223,-0.038891785,0.8413008,0.83922446,0.9950519,0.093084484,1.178985,0.30125612,-0.19172297,0.3844356,-0.15343308,-0.8191961,0.26903826,0.36652732,-0.43100047,0.28515035,-0.013074335,-0.045706272,0.55677205,-0.32807148,0.053900316,-0.15447414,0.21528503,0.025444701,-0.30098987,-0.3104828,-0.27462542,-0.028206388,-0.11584419,0.086291336,0.34947777,-0.08479488,0.40408695,0.049287617,1.7501659,0.0137970075,0.119148,0.12821555,0.55649173,0.30438802,-0.07616247,-0.06374029,0.13118842,0.3827362,0.1314538,-0.5883952,0.037040446,-0.23879626,-0.43161115,-0.113881454,-0.40302992,-0.03866972,-0.2554686,-0.65362453,-0.07670953,-0.25233755,-0.15344128,0.39976817,-2.428814,-0.35045847,-0.16819586,0.2265491,-0.27580255,-0.33761495,-0.105228,-0.5605098,0.49258918,0.30092517,0.43570575,-0.73279536,0.44304734,0.45356813,-0.5425452,-0.020273648,-0.7129352,-0.17057994,-0.058854304,0.28480196,0.012278663,-0.10391208,0.053437933,0.24727339,0.47561544,-0.11604929,0.062102277,0.17235778,0.4241936,-0.029691573,0.69628894,-0.10905154,0.54374254,-0.43242252,-0.22644475,0.36038572,-0.480553,0.17353109,0.021357443,0.110632084,0.48866686,-0.5281621,-1.0369425,-0.6175946,-0.19447085,1.0767376,-0.27850685,-0.33209616,0.33561766,-0.40211907,-0.17631555,-0.0480508,0.48457107,-0.073516525,0.035615806,-0.8680788,0.14289346,-0.1456841,0.078448005,0.0039196396,-0.012403095,-0.2004161,0.51560533,-0.06485799,0.41207874,0.29467905,0.13691059,-0.33541957,-0.54838455,0.12159836,0.9092668,0.3392274,0.20144625,-0.25667468,-0.18754238,-0.4133766,-0.099460036,0.049685005,0.47405952,0.79476196,-0.12165073,0.1842777,0.3049664,-0.07416554,0.041404843,-0.19376709,-0.3832705,-0.15734132,-0.059988625,0.5267053,0.77225614,-0.2474225,0.41868007,-0.06903673,0.3539633,-0.17982264,-0.4967327,0.6560937,1.0190364,-0.2576151,-0.32695347,0.6055456,0.50630665,-0.3180644,0.57286686,-0.55799973,-0.2659123,0.50026894,-0.023228474,-0.38710696,0.17983572,-0.3969205,0.09719667,-0.9039082,0.22095424,-0.33198956,-0.21243584,-0.50945234,-0.19872895,-3.7556899,0.16667563,-0.24406675,-0.09139208,-0.22662109,-0.09215015,0.3632796,-0.71622384,-0.7406298,0.17896667,0.17104387,0.8002736,-0.0738452,0.1144368,-0.2619689,-0.3222125,-0.34928823,0.013515206,0.26381892,0.3571096,0.049862415,-0.47824782,-0.21088319,-0.1081815,-0.5537642,0.12632959,-0.6494652,-0.58852303,-0.19852829,-0.6708528,-0.4216273,0.754992,-0.21937269,0.021622919,-0.13817066,-0.13092364,-0.19385673,0.36189,0.13952683,0.08981933,0.061533153,-0.06864788,0.06566588,-0.26752892,0.036691613,0.061187483,0.33713913,0.20883611,-0.13871756,0.33214164,0.59782714,0.90786755,0.0021507144,0.8520944,0.5784459,-0.04133424,0.47769845,-0.37356073,-0.3054294,-0.6493156,-0.2570976,-0.22144711,-0.4049665,-0.38024256,0.04766324,-0.3501037,-0.8253529,0.68980634,-0.0069052055,0.22947538,-0.084679514,0.079092205,0.56062365,-0.1117621,-0.13184842,0.06983642,-0.1817396,-0.5668918,-0.16393185,-0.67347956,-0.545313,0.25436392,1.0701195,-0.06923561,-0.046731587,0.06535129,-0.1512534,0.012089731,0.16431116,0.031029947,0.15197875,0.41408414,-0.035956845,-0.6364173,0.4039643,-0.18908553,-0.24800582,-0.6678492,0.1536868,0.71757936,-0.7605361,0.52427924,0.2433222,0.061824095,-0.03201905,-0.5282463,-0.1002924,0.073574185,-0.06544938,0.463572,0.35759953,-0.90989006,0.46024597,0.48070717,-0.2308711,-0.6758495,0.5184755,0.007159941,-0.15452345,-0.10969687,0.26694277,0.29942882,0.13038805,-0.13425392,0.23013955,-0.49715847,0.12223327,0.32288444,-0.15287994,0.3523267,-0.13980645,-0.036713243,-0.7351352,-0.002512537,-0.5689005,-0.26722828,0.30172962,0.00094651803,0.08602997,0.0040338524,-0.005626019,0.16185178,-0.28816357,0.10672785,-0.04580726,-0.26188684,0.38999188,0.5605081,0.40974927,-0.42672735,0.68287927,0.10882595,-0.016321117,0.2234649,0.13891333,0.484423,0.067915946,0.5165635,0.02532012,-0.27510104,0.11870171,0.79504526,0.043847464,0.34045196,0.06863135,-0.07798211,0.1879996,0.20579745,0.027422402,0.10452069,-0.48520637,-0.025241202,-0.024621965,0.17157638,0.67245984,0.19131757,0.32595572,0.056540154,-0.34544587,0.018711282,0.16233465,-0.18350902,-1.7068434,0.44120145,0.2108295,0.7913575,0.51201177,0.1306391,-0.084787175,0.615426,-0.14667343,0.22432755,0.507936,-0.064576566,-0.4515593,0.6197538,-0.609685,0.6436068,-0.036374353,0.15187068,0.02090247,0.20026927,0.48138925,0.72948,-0.045640536,0.08136714,0.036446977,-0.35246378,0.1797665,-0.36810756,-0.13344088,-0.40846485,-0.17136487,0.6764787,0.52793205,0.39559764,-0.2588639,0.021848312,0.1041347,-0.17571896,0.07305889,-0.13664165,0.0270366,-0.03607633,-0.5805511,-0.32154426,0.5997758,0.03978353,0.21828228,-0.07802432,-0.22451818,0.30568644,-0.14029141,-0.07895419,-0.124150135,-0.7395797,-0.05687523,-0.4822784,-0.4538534,0.46601883,-0.05475322,0.26239502,0.23185807,0.09047059,-0.40351465,0.5125828,-0.05613576,0.71930385,-0.34196493,-0.33936524,-0.34893286,0.2187906,0.25590682,-0.3508495,-0.14710224,-0.4014404,0.06126486,-0.49348205,0.30551904,-0.07316496,-0.40558052,-0.027356211,-0.06696265,0.087819554,0.4600886,-0.20463194,-0.1500659,-0.036195256,-0.14893566,-0.24111277,-0.40411398,-0.059043452,0.30094656,0.1209638,0.050478853,-0.047091134,-0.2740678,0.07346916,0.51262635,-0.04518423,0.28284097,0.46202177,0.20947534,-0.27507535,-0.15946984,0.38551855,0.491904,-0.016578078,-0.1285362,-0.39397752,-0.39733443,-0.4305302,0.21073829,-0.10515325,0.44712615,0.06284056,-0.48732954,0.9547097,0.048086822,1.1625868,-0.05856823,-0.48961657,0.17368266,0.3900371,-0.07598146,-0.059603494,-0.30974787,0.86987764,0.40505147,-0.19505352,-0.30660984,-0.40292588,-0.12522101,0.099878095,-0.30404365,-0.21646772,-0.009482866,-0.58947176,-0.16342288,0.13464274,0.299264,0.27437845,-0.2630761,0.15030403,0.18639287,-0.024516374,0.45284155,-0.4323855,-0.1590257,0.20904492,0.4098432,-0.08748841,0.07281891,-0.548614,0.41482276,-0.38665193,0.15982476,-0.37179244,0.2489146,-0.12540516,-0.39260888,0.2515563,-0.013503879,0.34618357,-0.31125346,-0.28826576,-0.2754316,0.5750967,0.13839158,0.08633121,0.803134,-0.3314907,-0.012225833,0.026309885,0.6138638,1.1225736,-0.1934612,-0.032171264,0.31885183,-0.30451137,-0.59640753,0.1871935,-0.24199048,0.25304613,-0.0172977,-0.32695395,-0.57288116,0.19064276,0.12168009,0.09007824,0.14448746,-0.5921083,-0.28324115,0.24112272,-0.2900591,-0.31798926,-0.40829945,0.09210515,0.5853722,-0.32565516,-0.25810236,0.20185313,0.17962392,0.066672005,-0.49839693,-0.21090047,-0.32694966,0.30220467,0.20729075,-0.41838512,0.08534558,0.07650766,-0.48748565,0.07950283,0.23003778,-0.37449154,0.09148594,-0.33316913,-0.18302022,1.1092901,-0.24813825,0.2783825,-0.52377284,-0.51572436,-0.8875346,-0.41338024,0.58835536,0.2015608,0.1390002,-0.5991997,-0.039217904,0.06038425,-0.066012315,-0.0183663,-0.3492658,0.43120837,0.1553494,0.46912813,-0.060014293,-0.725796,0.06434891,0.11395125,-0.18440326,-0.63534415,0.6122285,-0.15892658,0.8315011,0.1482543,0.09817002,0.28392175,-0.47683284,-0.22309136,-0.2656595,-0.23176204,-0.7527137,0.093165874 -969,0.41876122,-0.22799265,-0.5844161,0.017640335,-0.22278896,-0.13289836,-0.1650927,0.5025124,0.26401833,-0.30126905,-0.010151512,-0.17746441,-0.017036494,0.28609297,-0.22442831,-0.40510565,-0.06510027,0.16621076,-0.32575622,0.48795512,-0.25776002,0.08720475,-0.0027418393,0.60305405,0.16662002,0.21261337,0.044377778,0.23134394,-0.24002388,-0.26589024,-0.052429933,0.38475332,-0.6514521,-0.030141322,-0.25584394,-0.40621966,0.03801574,-0.4699323,-0.43708473,-0.78964865,0.27661982,-0.8640644,0.48283672,0.17899616,-0.28403053,0.2571048,0.1268711,0.25397012,0.029704597,-0.23995641,0.116622746,-0.1756047,0.17774129,-0.33496144,-0.085617594,-0.37219477,-0.5707933,-0.0032356605,-0.5573356,-0.17750606,-0.09532101,0.15068866,-0.23518512,-0.17077267,-0.1199071,0.49525598,-0.4018617,0.022039702,0.24821205,-0.15761015,0.37607425,-0.55274147,-0.11495022,-0.007270515,-0.007605408,-0.32893443,-0.3490142,0.30794677,0.080729164,0.4418778,-0.24488664,-0.18730858,-0.44116575,0.14784372,0.06613083,0.37973,-0.36572906,-0.41024595,-0.10614573,0.18622555,0.18858476,0.14966929,0.3570423,-0.08055724,-0.07590328,0.02283855,0.048435677,0.4830676,0.62571746,-0.24523042,-0.15127456,0.15883772,0.5823121,0.24581572,-0.21551819,0.044334177,0.091739126,-0.56773525,-0.16145624,0.005778662,-0.15877517,0.63030857,-0.10467541,0.18445848,0.5415669,-0.2970154,-0.07355662,0.19331287,0.10275737,0.09001502,-0.3178068,-0.25459534,0.4754456,-0.48678637,0.05451219,-0.2071055,0.5002106,0.11981238,-0.7662712,0.22173333,-0.52754754,0.08287114,-0.016871823,0.4890676,0.64049065,0.54414845,0.5620581,0.7114278,-0.42952824,0.11830105,-0.018049853,-0.38264874,0.3554318,-0.3500304,-0.020596627,-0.5884308,-0.29548526,-0.09410142,-0.3106201,0.052032758,0.27394685,-0.77524537,0.0016740113,0.2949666,0.78003937,-0.19170246,-0.20746328,0.7435589,1.0066917,0.93837255,-0.011349865,0.8386774,0.12798212,-0.21482544,0.21643613,-0.09307221,-0.72267884,0.2155076,0.21250704,-0.2233726,0.45080805,0.13539521,0.025132852,0.35622504,-0.43233714,0.039094765,-0.084785774,0.16596176,0.066489875,-0.26933497,-0.48137805,-0.21421072,-0.14292966,-0.027610252,-0.03856005,0.4035697,-0.18237363,0.4364817,0.025416175,1.7564533,-0.044014152,0.074724294,0.0715512,0.49883372,0.24257219,-0.31987157,-0.09715573,0.3581028,0.30692714,0.4250296,-0.31221667,0.058704805,-0.18942769,-0.42894793,-0.101910286,-0.30085564,0.0008746045,-0.21356691,-0.49032503,-0.1781095,-0.121066265,-0.17086431,0.32951307,-2.9940486,0.17815992,0.14466831,0.3533124,-0.2472961,-0.43903646,-0.003253511,-0.46238872,0.29241022,0.39701647,0.4128326,-0.7364856,0.21737528,0.4161255,-0.5375181,-0.013056389,-0.64752895,-0.18315606,-0.089778356,0.3766574,0.16352904,0.009974296,0.33860555,0.27232128,0.4144478,-0.09141233,0.12021698,0.10392249,0.41352436,-0.065365754,0.39254162,0.020544048,0.2698393,-0.19449066,-0.30887797,0.49820948,-0.44736856,0.103133865,0.044986658,0.09077121,0.47272927,-0.23696253,-0.9867501,-0.5333388,0.10236245,0.97823894,-0.0426601,-0.6082083,0.121808514,-0.4865282,-0.4353099,-0.1430354,0.38950697,-0.12036103,0.00311625,-0.77237624,-0.14981367,-0.35697895,0.18536809,0.008172588,-0.031441055,-0.48161325,0.61952394,-0.010097904,0.26418576,0.47223336,0.25416955,-0.43478087,-0.7121124,0.009307508,0.79023933,0.3462812,0.15485458,-0.3107438,-0.21974312,-0.16823128,0.19397327,0.12739047,0.61882824,0.82261306,-0.20466156,0.17906025,0.27041826,-0.0056364876,-0.0593608,-0.20090692,-0.34257698,-0.034406062,0.085490964,0.59823793,0.94968075,-0.11316509,0.47247174,-0.054950703,0.30852056,-0.13200082,-0.5534496,0.43137312,1.0769075,-0.11898924,-0.33168513,0.52231216,0.42360878,-0.3014074,0.47445598,-0.5482707,-0.27780828,0.34142557,-0.19247317,-0.48173144,0.34097037,-0.26996627,0.18953618,-0.85549,0.39361748,-0.16729233,-0.46511778,-0.8597577,-0.13649578,-3.0943882,0.23779248,-0.28575414,-0.23926343,-0.043979414,-0.20620213,0.13948354,-0.6867357,-0.46109152,0.1478378,0.16043201,0.734031,-0.15532203,0.015234743,-0.2560345,-0.3215107,-0.08473849,0.20058525,0.3582433,0.1597728,-0.044370957,-0.4694876,-0.07442333,-0.1902931,-0.44837004,0.002031484,-0.57005924,-0.5765497,-0.18687038,-0.54012233,-0.23840137,0.6718482,-0.274525,-0.08174689,-0.22099373,-0.09117305,0.15241818,0.3257138,0.10041482,0.23671791,0.01390961,0.016284432,0.0716995,-0.18683894,0.0095307315,0.04024418,0.34220982,0.4626222,-0.20517263,0.28757188,0.6094739,0.7357558,-0.19464567,0.888244,0.6786012,-0.11342788,0.26810673,-0.22245179,-0.31620812,-0.6372689,-0.2921227,-0.0563568,-0.5102076,-0.30780268,-0.008465009,-0.40672752,-0.71087164,0.75046927,-0.10073729,0.3165777,0.026475212,0.5194302,0.6263183,-0.32350662,-0.16397038,-0.15506466,-0.22463645,-0.4435734,-0.29951566,-0.46821377,-0.53627783,0.08382288,1.0164316,-0.25570422,0.13200395,0.23851824,0.026933875,0.060092416,0.20985982,-0.2478706,0.21334021,0.34910432,-0.0696507,-0.5280036,0.41965142,-0.06647501,-0.20393887,-0.60854435,0.096565485,0.48521194,-0.6255617,0.6226927,0.35322735,-0.0058612833,-0.17605229,-0.7504873,-0.20560496,0.1378264,-0.17482483,0.56698763,0.30395108,-0.6848885,0.42948702,0.30234307,-0.42741895,-0.6699723,0.56726784,-0.04214788,-0.4724979,-0.2456763,0.22754683,-0.20171002,0.14862375,-0.20497444,0.23075804,-0.32479063,-0.02128363,0.37535805,-0.05304251,0.1550686,-0.114533424,-0.038169365,-0.78525347,0.23729743,-0.46404558,-0.41873798,0.33237067,-0.027152257,0.06980139,0.3122547,0.26555175,0.3642995,-0.29246554,0.076002605,-0.0633869,-0.24544458,0.40693903,0.44764248,0.50042635,-0.5642226,0.44795108,0.077510044,-0.21448705,-0.11226517,-0.015841527,0.5080758,-0.10387351,0.2747511,0.085627615,-0.23506835,0.15267327,0.95669967,0.073522575,0.62127906,-0.082264595,0.089953534,0.12880775,0.07766409,0.3462976,-0.007078137,-0.55709964,0.18831466,-0.32328203,0.13059767,0.44400287,0.11592819,0.21196027,-0.0050296998,-0.28475556,0.09753672,0.3186685,0.2383788,-1.3204876,0.19763644,0.33716485,0.8682151,0.44977522,0.15279038,0.071965516,0.6291532,-0.30930167,0.0277438,0.2819372,0.09032067,-0.4502297,0.5399395,-0.8443252,0.35215712,0.068224475,-0.031379726,-0.17587784,-0.23822118,0.52757627,0.7090224,-0.27744448,0.017357498,-0.01531314,-0.15023233,0.07812569,-0.33447042,0.11110419,-0.5970092,-0.2315749,0.7640509,0.54903793,0.40955362,-0.04594919,-0.02600433,0.266331,-0.10931487,0.16468593,0.027151564,0.18780568,-0.045971725,-0.5386657,-0.06526518,0.52343595,0.022893667,0.03825638,-0.18283136,-0.09485241,0.14653085,-0.17393382,-0.2436388,-0.0862928,-0.7693759,0.047159787,-0.35593703,-0.41009417,0.9103084,-0.19881797,0.120926395,0.31742948,0.14813587,-0.31258735,0.24225447,0.15915193,0.6952036,-0.005860814,-0.065483615,-0.37586045,0.32996723,0.10374335,-0.14333734,-0.19537987,-0.17970419,0.28880045,-0.4228415,0.27352592,-0.041011576,-0.30040115,-0.12708247,-0.013417823,0.120225705,0.60510105,-0.061135493,-0.36326525,-0.12600194,-0.24603581,-0.27574548,-0.16823404,-0.047815587,0.2543914,0.18374072,-0.26724413,-0.031531505,-0.08045508,-0.16859974,0.33814684,0.09392868,0.44183177,0.3246362,-0.012799374,-0.43782288,0.0034658334,0.13464074,0.55656916,-0.23184061,-0.059599318,-0.3354611,-0.33188745,-0.49561116,0.20507665,-0.11087485,0.32208562,0.08233462,0.046316676,1.0087003,-0.010555063,1.2284677,-0.02703335,-0.52795756,0.061714526,0.5118404,-0.020568356,-0.04723866,-0.47918007,1.0429196,0.48184174,-0.060892608,-0.100344315,-0.22069208,0.09117116,0.3150919,-0.14174947,-0.08225938,-0.08013078,-0.57429135,0.055864427,0.34939522,0.38600394,0.25712404,-0.15442756,0.051897604,0.31274337,-0.09666296,0.106718056,-0.43342978,-0.111056075,0.23830879,0.38849398,-0.010276922,0.04286498,-0.45427507,0.28707784,-0.22307375,0.022640483,-0.3731261,0.20179881,-0.10720209,-0.40874624,0.17311446,-0.14279255,0.3607593,-0.3711441,-0.18627858,-0.2357628,0.38805082,0.18525055,0.18666048,0.4560353,-0.31348345,0.17632893,-0.095626704,0.44513398,0.90797806,-0.412818,-0.14944105,0.48069185,-0.22434342,-0.73317116,0.3804781,-0.3589849,0.23419937,-0.093562946,-0.24533905,-0.5294639,0.116580494,0.26265505,0.13471703,-0.049625363,-0.5961227,-0.03284343,0.33602065,-0.43061474,-0.16938548,-0.3410748,0.13742444,0.5493823,-0.12406205,-0.37353367,-0.015122993,0.3106393,-0.09265561,-0.2908752,-0.010615985,-0.2829542,0.29969308,0.04663854,-0.5190342,-0.020237295,0.020741949,-0.37142015,0.24457036,0.33967835,-0.18837391,0.094296195,-0.24824616,0.08217887,0.89832914,-0.26814,0.15353891,-0.45210567,-0.44331306,-0.8570858,-0.2744136,0.17369293,-0.022092676,0.12503615,-0.8550611,0.086366996,-0.24563195,-0.27437565,-0.22539203,-0.2879203,0.5203496,0.15113282,0.37639692,-0.14486936,-0.75287735,0.1622931,0.17417029,-0.14809987,-0.594121,0.5718133,0.029880945,0.8022685,0.08504134,0.15577486,0.34538904,-0.4773982,0.043265432,-0.16953991,-0.26814303,-0.5933874,-0.13626388 -970,0.3079358,-0.09560775,-0.35384285,0.035303734,-0.10528431,-0.013219324,-0.022698034,0.69088256,0.30916446,-0.5077301,-0.23700798,-0.47601375,0.07743781,0.45498443,-0.09575472,-0.48970428,0.22071795,0.30102283,-0.47363386,0.4671958,-0.47567782,0.35816604,0.11767944,0.5832579,0.1725375,0.15514836,0.26317543,-0.1866249,-0.36761728,-0.21303777,-0.1748556,0.28000697,-0.49835473,0.26738578,-0.30896094,-0.46415567,0.06399224,-0.621885,-0.08125995,-0.6341604,0.094791904,-0.74883157,0.43160954,0.11838858,-0.10462823,0.1460149,0.21096687,0.27371517,-0.17556152,-0.068355754,0.08133869,-0.21113494,-0.06638749,-0.41116962,-0.28811008,-0.30133572,-0.55830514,0.14401236,-0.5148279,-0.12446753,-0.42992085,0.065128475,-0.2268391,-0.17272055,0.22337031,0.36113968,-0.39852715,0.04392276,-0.12369285,-0.22051635,0.10848212,-0.34515512,-0.29113102,-0.14517887,0.3071695,-0.28702518,-0.27864066,0.35980296,0.31435052,0.3783904,-0.120431975,-0.037312657,-0.41821456,-0.01265018,0.0926312,0.6700591,-0.13995452,-0.5909068,-0.07567815,-0.08611819,0.10128276,0.2483408,0.24371836,-0.29540572,-0.05322078,-0.024535745,-0.31525165,0.40327215,0.2939379,-0.46445927,-0.33170712,0.40151328,0.31718537,0.16483,-0.114876725,-0.09275204,0.088153645,-0.5294845,-0.14920579,0.033413395,-0.20889282,0.64001584,-0.007267189,0.38664752,0.6314779,-0.40992588,0.023010395,0.059304476,0.16341922,-0.27282655,-0.09778073,-0.19422713,0.24757648,-0.42152795,-0.10212679,-0.18246257,0.9147299,0.12766019,-0.6201335,0.42383736,-0.638198,-0.028653149,-0.12081598,0.35065037,0.6379504,0.4409793,0.3613262,0.47172588,-0.37662303,-0.0326856,-0.14971061,-0.43269572,-0.03133381,-0.25956622,0.1231007,-0.5628675,-0.1193073,0.35475606,-0.006178379,0.33374655,0.48801175,-0.5817165,-0.17622453,0.22398277,0.7528698,-0.24979961,-0.39603692,0.8072182,1.0867946,0.868019,0.11622791,1.2121124,0.13939354,-0.16526286,0.2771652,-0.13337834,-0.67689204,0.3333653,0.3016779,-0.8981848,0.24778712,0.24743882,0.19427384,0.17471577,-0.38610923,0.059254974,-0.05764549,-0.015594056,0.10589148,-0.107328035,-0.24914098,-0.44874707,-0.1869134,-0.17868811,0.1910675,0.41965985,-0.24124496,0.2659166,-0.11911829,1.7342968,0.21977265,0.11754505,-0.15822046,0.66390383,0.19890149,0.021459216,-0.2428625,0.41367784,0.12092233,0.22387233,-0.4239471,0.14252636,-0.21343541,-0.53393674,0.0287139,-0.31781608,-0.17137456,0.027125712,-0.36495328,-0.14132383,-0.09531238,-0.48731905,0.5991826,-2.822819,-0.25482145,0.0993054,0.40848047,-0.2525095,-0.41278514,-0.31824285,-0.43612522,0.32552037,0.2960456,0.51240504,-0.6507007,0.15733738,0.3624925,-0.45702738,-0.4568061,-0.49498257,0.24349038,-0.10616509,0.17837867,-0.12184346,0.019979488,0.17498784,-0.1622616,0.5127827,-0.14431997,0.05081749,0.3308188,0.45901266,0.1343178,0.38795263,-0.09073848,0.523329,-0.41624528,-0.35148388,0.20997667,-0.51359856,0.38667795,-0.022860652,0.0945324,0.35800737,-0.3763305,-0.9835928,-0.60322505,-0.14811328,1.0018399,-0.13683519,-0.18338947,0.16623275,-0.13216938,-0.22835073,-0.1619555,0.69584244,-0.11369666,0.097079575,-0.59274757,-0.016709274,-0.06367288,0.21532385,0.052613128,0.11633664,-0.2706845,0.3765288,0.04898613,0.40192556,0.12588933,0.16805215,-0.6775936,-0.5033833,0.22317496,1.0340146,0.23227696,0.2425681,-0.19467871,-0.2001454,-0.51404345,-0.22910157,0.19115141,0.58261836,0.56643516,0.012772853,0.13414223,0.39115557,0.13770285,0.03266234,-0.14608575,-0.21627541,-0.09845364,0.10834283,0.6106583,0.74783766,-0.11736312,0.73821,-0.019553477,0.23143668,-0.36175057,-0.2811013,0.5459305,0.77308834,-0.11079035,-0.08780516,0.5534067,0.46727237,-0.47896242,0.46471533,-0.4584783,-0.5336707,0.42356825,-0.17508522,-0.2949184,0.19569822,-0.2356875,0.13044871,-0.88439333,0.29530632,-0.12878856,-0.42196503,-0.45494613,-0.02741382,-3.4551861,0.18411514,-0.06637565,-0.1967796,-0.01846106,-0.036436476,-0.10680425,-0.5523697,-0.2988202,0.11362324,0.080921456,0.8537186,-0.13768137,0.20896387,-0.24911317,-0.55725557,-0.27914795,0.07075504,-0.045120254,0.4711917,0.14506924,-0.4332304,-0.008368629,-0.19654484,-0.2795033,0.062615596,-0.6872957,-0.5247531,-0.19674549,-0.5703967,-0.53558797,0.7765054,-0.79671234,-0.031656247,-0.09876998,-0.040286746,-0.032178517,0.58539534,0.22694404,-0.09766505,0.10407659,-0.050351955,0.039142095,-0.3384231,0.39325827,0.061204474,0.35453188,0.59197223,-0.03582079,0.33848554,0.63864946,0.6289623,-0.11616719,0.76056087,0.33144206,-0.18494834,0.2647715,-0.38327146,-0.1399117,-0.48561326,-0.2736966,-0.21613792,-0.45296448,-0.44950682,0.048167776,-0.20796867,-0.7506976,0.5999118,-0.016695078,0.2574869,0.017302442,0.44224972,0.436632,-0.26023933,-0.103305124,-0.06483955,-0.031317066,-0.5088784,-0.37756258,-0.5433318,-0.46662372,0.38764256,0.67421216,-0.31913012,-0.062846355,0.22528657,-0.04278906,-0.114689335,-0.017253641,0.0014956177,0.05971422,0.39502275,-0.14462891,-0.6146989,0.5047269,-0.2826024,-0.13084629,-0.52900666,0.29730096,0.6073068,-0.82143295,0.42703447,0.34984216,0.059041403,-0.006636369,-0.21889582,-0.29981634,-0.13070314,-0.01799582,0.10927341,0.10629623,-1.0161146,0.3472758,0.35619402,-0.3488059,-0.7390477,0.5101688,-0.08156507,-0.20618281,-0.28307953,0.41188645,0.3714981,0.010835031,-0.2680061,0.119319916,-0.714193,0.20942731,-0.037104093,-0.013084051,0.54933137,-0.24336267,-0.116132304,-0.7104326,0.14828865,-0.32114553,-0.43822104,0.3017463,0.24128565,0.040961098,0.48463017,0.124120116,0.12818244,-0.46877342,0.021028036,0.010352311,-0.025250817,0.1585871,0.36304814,0.6946566,-0.43417415,0.5851859,-0.049894944,0.11415968,-1.24692915e-05,-0.0056295274,0.30408484,0.16628177,0.37148827,0.1142238,-0.5408026,0.19204596,0.6979744,0.22890782,0.41596764,0.06000172,-0.06163317,0.07308824,0.15610267,0.2949069,0.20376721,-0.5752264,0.14150189,-0.41498417,0.0933609,0.5276811,0.122435644,0.2585078,-0.024514556,-0.32827112,0.05633559,0.2980025,0.06539793,-1.0347188,0.42399865,0.15872595,0.67001283,0.35238153,0.028037941,0.18267992,0.6845647,-0.16952267,0.34674612,0.27755818,-0.15258236,-0.4503684,0.645558,-0.74084395,0.6028216,-0.1359859,-0.15473412,0.024675477,-0.11497768,0.34452468,0.739395,-0.1132368,0.041030053,0.15020753,-0.31230396,-0.022895742,-0.40238434,0.28750053,-0.72846556,-0.14321437,0.6771579,0.59487355,0.23793884,-0.17118141,0.069999285,0.029435555,-0.12752953,0.151593,-0.029819733,0.3405835,0.15760976,-0.7372457,-0.06497922,0.6904843,0.17741151,0.2237761,0.20002136,0.0047550797,0.34057644,-0.1473591,-0.15289685,-0.08419469,-0.7320617,0.07443381,-0.2940806,-0.5409044,0.52223814,-0.0037678003,0.33746552,0.3022736,0.09874064,-0.1670855,0.84598476,0.55179715,0.6709548,0.05029722,-0.26361778,-0.39984024,0.4806254,0.14098345,-0.15536436,-0.17360938,-0.24948025,-0.10292001,-0.51257855,0.25262377,-0.012696227,-0.25368953,-0.25133356,-0.005672296,0.07959471,0.58964145,0.19702668,-0.026887637,-0.17953187,-0.2896738,-0.15310663,0.091426946,-0.18110359,0.29508582,0.13053527,-0.2599817,-0.1818609,-0.27675578,-0.2278771,0.025562376,-0.24021511,0.30186814,0.2088217,0.2138265,-0.15285489,0.045792174,0.060733687,0.4358148,-0.03421101,-0.18743765,-0.21151015,-0.039822906,-0.4752651,-0.07694025,-0.063405596,0.18505815,0.3996441,-0.35368335,0.68256533,-0.12241123,1.0914605,0.1120054,-0.2581915,0.25286758,0.330703,0.030327965,-0.14953312,-0.4316427,1.1623213,0.42928308,-0.14928854,-0.23290884,-0.27902746,-0.19905517,0.28729516,-0.36126572,-0.52611506,0.08011012,-0.63341403,-0.28099066,0.20481852,0.19409415,0.27622908,-0.11095697,0.12545553,0.48365515,0.09555725,0.2093682,-0.4461349,-0.24241838,0.35542536,0.69744235,0.04215785,0.2761226,-0.2706264,0.46251068,-0.7551004,0.1301937,-0.4024642,0.18323596,-0.5916201,-0.496404,0.23921311,0.42443413,0.5039422,-0.030328596,-0.34791434,-0.2575243,0.33069235,0.110831186,0.2220231,0.42260146,-0.22480397,-0.1943104,-0.23610303,0.302028,1.0110028,-0.2334847,-0.29205373,0.5677914,-0.24656133,-0.6058444,0.50201035,-0.46906558,0.24767935,-0.07917818,-0.15677896,-0.5170865,0.14070329,0.17943123,0.09215893,-0.13567582,-0.46518594,0.100175306,0.2627023,-0.21095824,-0.35366416,-0.39319173,0.1336445,0.6285859,-0.21166237,-0.32518202,0.18930969,0.26184395,-0.21557252,-0.4288383,-0.15850383,-0.36396402,0.25543875,0.055475898,-0.33950546,-0.09218129,0.03746759,-0.4709975,0.14456932,0.01677283,-0.37277693,0.19947056,-0.3786428,0.11037654,0.94358426,-0.106517576,0.2776162,-0.3535836,-0.5233058,-0.7849141,-0.4035066,0.485516,-0.03485591,-0.032016467,-0.59153795,-0.018055404,-0.07135175,-0.4546401,-0.06062017,-0.46112648,0.30913225,0.121481776,0.35373825,0.018521184,-1.0106684,0.0756845,0.16209626,-0.16110262,-0.8200102,0.30743235,-0.24857359,1.1966503,0.037949722,-0.12735327,0.70783556,-0.38810536,-0.15784839,-0.31864804,-0.009338307,-0.48739845,0.061951526 -971,0.3953213,-0.10556881,-0.6079381,-0.1530697,-0.19847259,-0.14655109,-0.22373916,0.31849352,0.28603834,-0.6931961,-0.06944106,-0.30031177,0.05061963,0.28057587,-0.17178218,-0.7472127,0.027578983,0.070222594,-0.49947056,0.5616404,-0.2822589,0.31950498,0.19667496,0.41711357,0.073778085,0.17980976,0.14292307,-0.2988046,-0.19262458,-0.17627637,0.19526578,0.15384464,-0.9159031,0.21989654,-0.23885898,-0.42723256,0.046079274,-0.5561072,-0.33392087,-0.72519463,0.20281278,-0.81538004,0.46175066,0.22116017,-0.16412406,0.07548614,0.056701876,0.4408329,-0.13791011,0.08147408,0.2947732,-0.104838625,-0.1127102,-0.08036766,-0.11983999,-0.18208028,-0.6151014,0.18518613,-0.50306165,-0.19157228,-0.2693074,0.041775975,-0.35999733,-0.12582736,-0.1260887,0.56597346,-0.42847782,-0.03561022,0.55615634,-0.16253455,0.52477235,-0.45763114,-0.1793973,-0.21968423,0.33168063,-0.46023765,-0.24197112,0.36587554,0.30758932,0.5468007,0.11151004,-0.3651854,-0.24576767,0.019330647,0.32627848,0.40496144,-0.33466667,-0.44972032,0.00883188,0.04604439,0.08200407,0.1405039,0.14608888,-0.40262094,-0.07907625,0.07479554,-0.20942198,0.47302267,0.57644695,-0.20938845,-0.19567235,0.17451476,0.47157913,0.25443396,-0.00045016833,0.17693688,0.14369373,-0.65128905,-0.3104476,0.19069918,-0.067028604,0.4759502,-0.06777143,0.19729938,0.82077926,-0.2716051,0.099887766,0.15244995,-0.15807618,0.083668366,-0.3334855,-0.11746902,0.34237385,-0.53410965,0.24578413,-0.2607719,0.8156681,0.23840734,-0.87500525,0.21874145,-0.5612563,0.19575523,-0.007149678,0.55503434,0.8060006,0.4373245,0.29900455,0.6474686,-0.64325047,0.13286008,-0.029021401,-0.5590046,0.13925451,-0.25443575,-0.022469087,-0.39934942,-0.30999228,-0.051395994,-0.028954476,0.1449872,0.19026451,-0.66577053,-0.041443553,0.12255444,0.9863472,-0.18581028,-0.074974455,0.7946628,0.95075166,0.9772644,0.16925634,1.438862,0.12066684,-0.24572909,0.27036306,-0.06329732,-0.87707835,0.3087185,0.30488044,-0.3227563,0.19975956,0.12589923,0.1068537,0.42954272,-0.6081669,0.17491044,-0.27369985,0.24595745,-0.063644126,-0.30326152,-0.28200993,-0.20510289,-0.17513993,-0.08979762,-0.15448031,0.25268793,0.047825444,0.2608031,-0.075649336,1.4296873,-0.11686627,0.17950928,0.047948927,0.43770096,0.1844641,-0.123094015,-0.08507877,-0.010865852,0.29463726,0.19482371,-0.37133732,0.054996006,-0.27271953,-0.429917,-0.2344842,-0.24024566,0.055393588,-0.025736528,-0.51454467,-0.02761811,-0.11056332,-0.37176013,0.3935347,-2.4727948,-0.08772067,-0.10679205,0.23141468,-0.29445854,-0.24559991,-0.18300359,-0.57202786,0.56436366,0.28629044,0.5117715,-0.6932802,0.2624582,0.4630301,-0.62479955,-0.0826549,-0.66686183,-0.06759775,-0.05365187,0.05596022,0.17011313,-0.15481703,0.0031154964,0.18458617,0.4574819,-0.112018906,-0.14758177,0.27098694,0.3704795,0.0962715,0.5878144,-0.08070681,0.44608593,-0.39426568,-0.24989578,0.41398236,-0.34485093,0.1536764,-0.15540375,0.054346383,0.26786852,-0.5256791,-0.9381309,-0.77746564,-0.696938,1.0015395,-0.0030495462,-0.27103403,0.28699917,-0.12282833,-0.18388653,-0.005822867,0.676664,0.063896604,0.301912,-0.9085684,-0.03909113,-0.21411109,0.14392336,0.06862879,0.03237336,-0.5644182,0.63127136,-0.10835831,0.23447503,0.6224928,0.171991,-0.16326752,-0.5250057,0.23509558,1.2818578,0.26039523,0.2695258,-0.38981524,-0.16021411,-0.48616645,-0.19737397,-0.0661764,0.530501,0.9141844,-0.18197368,0.043551184,0.27001795,0.25412613,0.12258877,-0.17160773,-0.39767596,-0.21803202,-0.13183244,0.64084613,0.6920055,-0.14828207,0.35503483,-0.09135987,0.3036108,-0.098467745,-0.3002243,0.5895057,1.0455472,0.01591645,-0.19342384,0.50163037,0.33131674,-0.27644327,0.5156039,-0.40790105,-0.37215686,0.43749705,-0.14860848,-0.5483754,0.28379458,-0.45650768,0.13105379,-0.94834524,0.4568073,-0.47500712,-0.28976187,-0.46970257,-0.16801979,-3.4636414,0.30964303,-0.28540364,0.08773017,-0.19410111,-0.011866263,0.31764618,-0.40483946,-0.5362744,0.14813623,0.069343165,0.78593844,-0.11094963,0.2351776,-0.2588974,-0.17963187,-0.2908083,-0.014995826,0.428564,0.2285438,0.096900955,-0.3384493,-0.22835943,-0.3385567,-0.3843589,0.122632265,-0.61667687,-0.57519764,-0.27174535,-0.55335313,-0.45929864,0.77236927,-0.48586008,-0.008413421,-0.13952781,-0.082021885,-0.05356342,0.43293557,0.15042332,0.22859158,-0.04502358,-0.06775785,-0.2697642,-0.301388,0.29904112,0.16827247,0.32423773,0.30890635,-0.20438997,0.3662574,0.5028066,0.8372751,-0.12668078,0.83055276,0.63408756,-0.059318505,0.30168915,-0.38413692,-0.2686192,-0.72359717,-0.3169399,0.018059727,-0.42743775,-0.48954725,0.21493527,-0.35975474,-0.76441544,0.6821534,-0.09397179,-0.021563599,0.12315726,0.11400109,0.28821757,-0.2846697,-0.14797108,-0.012187498,0.011960409,-0.621107,-0.26727226,-0.577035,-0.71103734,-0.077700146,1.0523921,-0.10855365,-0.05362134,0.058926042,-0.12201447,0.15981808,0.1236311,0.014318423,0.16242775,0.47892064,0.1278962,-0.63334525,0.5335957,-0.07869265,-0.26629624,-0.6465817,0.16859646,0.7237319,-0.78672165,0.65659094,0.41140494,0.100433454,0.21605669,-0.52217907,-0.29853168,-0.010716749,-0.19407058,0.25184634,0.05919265,-0.7706713,0.40941188,0.3559427,-0.32881275,-0.8791382,0.48281312,0.076221466,-0.26037842,0.010142141,0.3429131,-0.0011655986,-0.035854377,-0.15105769,0.24125136,-0.36704874,0.23356335,0.31917945,-0.15665393,0.35026655,-0.14238368,-0.20523931,-0.71059763,0.13186361,-0.5534238,-0.34229904,0.2111288,0.10063214,-0.1905208,0.1752843,0.2753293,0.35655025,-0.17377189,0.118716955,-0.10593117,-0.36670858,0.31424466,0.46717677,0.48554128,-0.5059262,0.69515866,-0.10125596,-0.10963433,-0.07934325,0.20713483,0.58007187,-0.07130647,0.2852936,-0.02004905,-0.18093626,0.13498981,0.9343638,-0.07115586,0.48223382,0.1288797,0.014050462,0.24151337,0.14719735,0.029539188,0.1251252,-0.64364713,0.122197226,-0.079616986,0.12078013,0.510727,0.1218786,0.28342924,-0.08831109,-0.36973897,-0.12621716,0.25472617,0.11361081,-1.1873602,0.4680423,0.13147773,0.76810604,0.5841697,0.033037513,0.1401347,0.5710055,-0.098175064,0.24293779,0.40074506,-0.36281762,-0.45573786,0.5250102,-0.63727534,0.45173725,0.09711571,0.051637974,0.10942262,-0.065033935,0.44708356,0.79125375,-0.1625317,0.13456531,-0.14106493,-0.13243894,0.14290419,-0.5473551,0.14451507,-0.3885767,-0.38890347,0.81274146,0.6351227,0.2617992,-0.14177172,0.032776404,0.1189834,-0.25995532,0.24948256,-0.19106899,-0.040242177,0.08207862,-0.6363613,-0.17860515,0.62077904,-0.054383468,0.12523915,-0.045633733,-0.06113294,0.29597592,-0.16284181,0.01869258,-0.17795444,-0.8400735,-0.0353778,-0.65714025,-0.23063298,0.4058468,-0.18425097,0.29158396,0.24913752,0.19599734,-0.33840793,0.69483954,-0.050291207,0.64483637,-0.09399414,-0.40300608,-0.39989632,0.28930974,0.3000273,-0.34777328,-0.15666457,-0.25616962,0.11249941,-0.57086766,0.40909752,-0.047523897,-0.22907901,0.13311575,-0.13345698,-0.10610231,0.5652911,-0.13903452,-0.055862945,0.23734555,-0.15666635,-0.09300184,-0.01698176,-0.09407152,0.25759244,0.34164843,-0.068221614,-0.034252033,-0.2511366,-0.12204582,0.3365319,0.034806363,0.33907524,0.36449507,0.15797596,-0.40380454,-0.15845375,0.32432863,0.66455114,0.08222463,-0.09306791,-0.29626274,-0.2922024,-0.27406892,0.1935008,-0.17623572,0.23466012,0.0696573,-0.3882272,0.815765,0.2750803,1.2947283,0.097810306,-0.31122023,0.1008389,0.3436401,-0.1435088,-0.04731241,-0.6407526,1.0723475,0.51417965,-0.13191119,-0.08991729,-0.3028138,0.056761023,0.06907513,-0.19418585,-0.10557175,0.024899704,-0.7365302,-0.21568252,0.246483,0.37137213,0.0509376,-0.1452591,-0.10743214,0.029897707,0.016231375,0.11357454,-0.7071659,-0.029194662,0.14520392,0.32465845,-0.02389287,0.10870867,-0.41117126,0.5419796,-0.54363674,0.0676408,-0.27689612,0.076072276,-0.15601781,-0.35273567,0.26596063,-0.077372454,0.46661565,-0.412405,-0.2631413,-0.25300795,0.36767468,0.22857387,0.22678454,0.7594668,-0.24889685,0.046337478,0.028038843,0.61333495,1.1826696,-0.30504575,0.06580876,0.4024529,-0.22139832,-0.37787384,0.2493739,-0.40629128,0.17135479,-0.33348098,-0.35878658,-0.49490443,-0.027126921,0.14084585,-0.022327295,0.12542035,-0.6877989,-0.21686053,0.2058618,-0.42090622,-0.43871197,-0.42389104,0.19057237,0.6568895,-0.24978593,-0.25072306,0.21768053,0.057286944,-0.09333646,-0.41433683,-0.06737774,-0.20862894,0.17335603,0.18679598,-0.423224,-0.11154485,0.09867018,-0.53274083,0.19038351,0.24130665,-0.40895635,-0.08426504,-0.06433759,-0.17155658,0.92954344,-0.24263705,0.25138825,-0.47217104,-0.53152335,-0.93766385,-0.27352187,0.6428598,0.16554031,0.1603901,-0.4192793,-0.19316995,-0.063755505,-0.007520092,0.0212763,-0.3042336,0.31506798,0.117685184,0.6538439,-0.3133367,-0.8268723,0.061806615,0.15862584,-0.181646,-0.6408843,0.41490918,0.071109824,0.78791046,0.044692226,-0.03507274,0.47689587,-0.57301664,-0.24053724,-0.26743594,-0.1283019,-0.6951429,0.07245065 -972,0.41960123,-0.3982768,-0.5553142,-0.1255757,-0.37865448,-0.16471304,-0.23888983,0.3262382,0.31399378,-0.21625388,-0.056720622,0.0932757,-0.041890416,0.25718105,-0.14589235,-0.64352095,-0.2077777,0.2319918,-0.72771263,0.6251609,-0.4977295,0.43044785,0.14625607,0.3128696,-0.029280433,0.2089163,0.20696424,0.14201795,0.10204362,-0.13632545,-0.08711316,0.32594985,-0.5506334,0.3842186,-0.23736584,-0.3939546,0.1119658,-0.2090163,-0.036017608,-0.75461733,0.052237246,-0.7537899,0.62554324,-0.21225323,-0.38939694,-0.22445713,0.26159227,0.41940352,-0.29981086,0.09388433,0.2073988,-0.36603427,-0.1407775,-0.52227885,0.08448981,-0.5388235,-0.41564375,-0.07906122,-0.62558556,-0.18269362,-0.049319305,0.2976803,-0.16675554,-0.067747936,-0.20819725,0.44485694,-0.40177923,-0.15331748,0.3256509,-0.23177603,0.32649708,-0.6402498,0.00736802,-0.09983388,0.31508607,-0.023144895,-0.17620766,0.4026487,0.030542387,0.44163302,0.27571598,-0.40282208,-0.3092418,-0.19369368,-0.021766977,0.33499938,-0.18363227,-0.28771088,-0.20086597,0.10224692,0.37224764,0.30173144,0.12117643,-0.21576367,-0.0017294118,-0.31378418,-0.026817368,0.3430428,0.42210084,-0.27964914,-0.26121524,0.16981816,0.7710611,0.15363815,-0.19021104,0.08794045,-0.1165595,-0.50725275,-0.19866857,0.12601629,0.050011218,0.36394385,-0.06390445,-0.007501892,0.73855245,-0.15224995,-0.22423764,0.18350157,0.039100852,-0.030015213,-0.29550642,-0.3597981,0.4261958,-0.5605644,-0.028103922,-0.3472946,0.5888562,-0.01501309,-0.7950824,0.22871315,-0.59336424,0.036661416,0.013018457,0.6259637,0.6416212,0.6535424,0.22643434,0.8115631,-0.32214528,0.15654702,-0.084836565,-0.22064193,0.1006976,-0.37711683,-0.06723694,-0.57480365,0.25500935,-0.35802904,0.022614395,0.06582819,0.35996002,-0.6959275,-0.14469838,0.2592435,0.6119708,-0.3347156,-0.006037789,0.6419062,1.0914266,1.1722664,0.016832134,1.1706277,0.335288,-0.2921176,0.002942313,-0.0834375,-0.53526765,0.17114122,0.42279932,0.04073402,0.4322962,-0.06285279,0.045163002,0.39980978,-0.3710522,-0.029069956,-0.02929249,0.4591937,-0.06530995,-0.20379743,-0.7411443,-0.2717995,0.18243954,-0.09626849,0.031910777,0.28086135,-0.17347537,0.52835387,0.041170154,1.1891098,-0.119834505,0.16487359,0.30229467,0.38663498,0.36037546,-0.1631199,-0.034002136,0.43232414,0.36019066,0.008909439,-0.40130165,0.2818223,-0.26492205,-0.5371038,-0.1671437,-0.3096458,-0.031678952,0.039450772,-0.38194466,-0.41407558,-0.006969767,-0.26201004,0.2991049,-2.5460489,-0.084203646,-0.060735352,0.30087325,-0.31395265,-0.25419232,0.0047796923,-0.45936546,0.23152171,0.25996143,0.44698745,-0.5564397,0.46237502,0.54494727,-0.54763925,-0.19088398,-0.6389357,-0.21584807,-0.06747009,0.60330904,0.16014345,-0.27667588,-0.21999623,0.13942127,0.7523165,-0.11655586,0.21855184,0.62084234,0.20631838,-0.021341775,0.5651359,0.029623615,0.52730924,-0.3950204,-0.20223625,0.4724057,-0.33682957,0.09923834,0.085477255,0.036828212,0.5904506,-0.5062755,-0.92206395,-0.6827909,-0.11642082,1.1494434,-0.30599895,-0.57810163,0.072538495,-0.019231107,-0.13412996,0.021349145,0.3427775,0.006734318,0.32804736,-0.6454201,-0.034820028,-0.040063065,0.377541,0.007923211,-0.084519364,-0.5590893,0.71729594,-0.04752476,0.6449407,0.3292935,0.3628175,-0.43733257,-0.5130185,-0.030995099,0.9108788,0.37156463,-0.0049203634,-0.07754332,-0.1707249,-0.03562967,-0.13018562,0.10940211,0.6265417,0.8187379,-0.087462306,0.13059644,0.28734514,-0.23459403,0.10561974,-0.15756464,-0.23047747,-0.15658616,0.2548148,0.49036327,0.6466626,0.018523693,0.33548048,-0.14461206,0.5329723,-0.07733288,-0.7637032,0.41369155,0.9142289,-0.16183482,-0.15588214,0.63770694,0.5159267,-0.26306108,0.53257763,-0.71237516,-0.40886325,0.5639449,-0.21633697,-0.48443487,0.26624233,-0.3124887,0.24749467,-0.81260127,0.39711827,-0.47609833,-0.578999,-0.73243827,-0.3215301,-2.6076944,0.38663295,-0.047077574,-0.030587448,-0.0823062,-0.14778854,0.2519768,-0.72743595,-0.5472484,0.027319716,0.2700487,0.4933717,-0.14445962,0.02664819,-0.35369435,-0.43291745,0.059850276,0.3922973,0.16150868,0.122155346,-0.16443662,-0.4265085,-0.18946435,-0.055852085,-0.5086227,0.07643831,-0.689205,-0.46911994,-0.11495805,-0.61605877,-0.20987412,0.66433895,-0.31601158,0.0063045495,-0.16962482,0.03267454,0.034790494,0.04999572,-0.029178781,0.2604508,0.22161727,-0.11678302,0.087860465,-0.34539533,0.21071997,0.04871758,0.22448076,0.09438251,-0.4060626,0.09968807,0.5762605,0.811193,-0.21515016,0.85351604,0.42280766,-0.1062242,0.3641057,-0.19062993,-0.47454092,-0.7370172,-0.31798914,-0.01968291,-0.44752875,-0.4071408,0.13264301,-0.32775512,-0.8440031,0.87247956,-0.11515201,0.2323015,-0.054513816,0.39965954,0.42943937,-0.24171574,-0.14297077,-0.12539087,-0.30984333,-0.32999706,-0.33751398,-0.6125083,-0.5485812,-0.15469499,1.2912371,-0.2854548,0.20991834,0.16640401,-0.20496821,0.14746805,0.22595385,0.12959954,0.40589634,0.40337515,0.03263138,-0.56783473,0.33664766,-0.011886354,-0.18141209,-0.29375157,0.25245604,0.61139905,-0.7291495,0.42138192,0.2716163,-0.030063663,-0.18000463,-0.6613222,-0.07939291,0.10297811,-0.13444401,0.75294334,0.2889741,-0.5999717,0.6160954,0.26890755,-0.5476606,-0.81144553,0.16242623,-0.2073869,-0.42616516,-0.08689896,0.46432853,-0.14101386,-0.028883193,-0.31012908,0.18884937,-0.5219522,0.20316295,0.17149922,-0.15254535,0.10670285,-0.2107834,-0.26186022,-0.8336939,0.09998499,-0.57609385,-0.3483542,0.33705616,-0.09103419,-0.23804331,0.3122725,0.018417416,0.54110146,-0.2535241,0.13466506,-0.024417136,-0.37736636,0.3632682,0.5269689,0.26621833,-0.27085543,0.43338886,0.101654306,-0.22088994,-0.37868118,-0.01604219,0.45952135,0.020240877,0.39993507,-0.33692318,-0.004722399,0.4645497,0.73365337,0.15424633,0.44252965,-0.050718326,-0.20896025,0.25607112,0.027007427,0.25160545,0.009393354,-0.30772966,0.08636337,0.0051082033,0.1419971,0.5934981,0.25338313,0.34389386,0.0036618677,-0.09986616,0.12357945,0.3600618,-0.08859473,-1.2998744,0.34880045,0.34112504,0.81112987,0.4813402,0.43416572,-0.20403825,0.6651154,-0.29964834,-0.06404743,0.34915325,0.0038024357,-0.35861096,0.7850452,-0.6458596,0.3354561,-0.17721932,-0.032869067,0.07291515,0.0129287755,0.5047242,0.8838781,-0.11566673,0.08289889,-0.11439451,-0.03828297,-0.02334657,-0.31915978,0.05803773,-0.22591901,-0.47007713,0.72892916,0.19765738,0.49100357,-0.2905302,-0.061554737,0.18271752,-0.23209418,0.34342638,-0.11451982,0.09529352,0.086021475,-0.2151873,-0.059933174,0.51678145,0.065389164,0.08898517,-0.14358957,-0.27425495,0.12335099,0.030984385,-0.008954593,0.08554237,-0.5190887,0.09154076,-0.27229398,-0.32674956,0.67529625,-0.29408816,-0.062369924,0.19712935,0.154964,-0.16471629,0.049004667,0.23251952,0.7711138,0.21351545,-0.1939249,-0.21710835,0.1089046,0.08103616,-0.24709593,0.17078508,-0.3337094,0.18065281,-0.78034145,0.41849825,-0.060638785,-0.4999434,0.28861645,-0.17564304,-0.083588906,0.3832949,-0.22805004,-0.2610496,0.06476484,-0.046638332,-0.33673355,-0.24261318,-0.32330874,0.20376109,0.21155313,0.030606005,-0.039058298,-0.16762467,-0.07138616,0.6042821,0.07872985,0.2908299,0.2559492,-0.096779995,-0.3462736,0.46046954,0.06821143,0.3981792,-0.053003047,0.1873376,-0.324011,-0.38808712,-0.3991608,0.062050562,-0.13362218,0.13735655,-0.015299141,-0.22375356,1.0812277,-0.02124708,1.2480575,-0.09815054,-0.3958258,0.10993479,0.5447621,-0.054231107,0.05885132,-0.44453642,1.05272,0.7708277,-0.115044855,0.028900895,-0.31673965,-0.22536895,0.26663327,-0.43609905,-0.11758141,-0.122202925,-0.60125095,-0.43480307,0.29282692,0.20526047,0.14239003,-0.1520064,-0.030048694,0.122926354,0.1471753,0.0865728,-0.49271324,0.122522935,0.118638135,0.34026554,-0.22066303,0.10273378,-0.48966983,0.36075878,-0.7387621,0.22384262,-0.40052313,0.041488178,-0.16751587,-0.3705469,0.13561168,-0.15246692,0.1135115,-0.3994944,-0.32575387,0.008263505,0.4120086,-0.015273622,0.079309806,0.72638303,-0.25618783,0.1808882,0.17425404,0.37611106,1.1888807,-0.4202573,-0.259351,0.17255415,-0.338331,-0.6000671,0.2957992,-0.24731223,-0.11641406,-0.17082019,-0.60297096,-0.4560223,0.14953755,0.31235933,0.15547301,-0.006796028,-0.5946023,0.15027292,0.38827315,-0.42112327,-0.096926995,-0.16516992,0.39293173,0.58529204,-0.18380828,-0.61893064,0.06001206,0.33678606,-0.34215614,-0.55054396,-0.09232939,-0.32593012,0.42436668,0.12512304,-0.28061664,-0.071730964,0.112083875,-0.53857106,-0.06095872,0.5101872,-0.25354388,0.06975827,-0.35310173,0.058463685,0.7552613,-0.040819697,-0.098406136,-0.57781345,-0.470967,-1.0912981,-0.42553744,0.2629809,0.25417492,0.051061515,-0.60998017,0.027397692,-0.29357502,-0.19025585,0.036710035,-0.2755554,0.35607508,0.19359955,0.6036099,-0.49707517,-0.9505054,0.3693431,0.24141042,-0.04426288,-0.4875662,0.5368915,-0.071040615,0.72693986,0.0021621925,-0.074467316,0.11436259,-0.7210811,0.23389395,-0.26493296,-0.119203486,-0.6479645,-0.22957002 -973,0.32833892,-0.43302998,-0.29686496,-0.091528915,-0.36435196,-0.22495215,-0.22058141,0.5654947,0.11469817,-0.26277402,-0.30850175,-0.048315298,-0.026558718,0.3789158,-0.07964219,-0.49989977,-0.16240849,0.32140023,-0.6869747,0.6137558,-0.5846142,0.070441574,0.055316094,0.5048075,0.014939678,0.2501835,0.39435804,-0.17632735,-0.027739376,0.01059556,-0.069038816,0.4101791,-0.66642606,0.14577508,-0.2366616,-0.39744273,-0.009635667,-0.56382865,-0.09241825,-0.8244011,0.08624493,-1.026452,0.4451182,0.08218273,-0.35588574,-0.1974201,0.15826388,0.32142177,-0.5382034,-0.024089968,0.27918324,-0.23785555,-0.2861614,-0.3282071,0.24155174,-0.34454167,-0.5710061,0.0368147,-0.34145072,-0.23547749,-0.09079141,0.28281137,-0.19014144,-0.056363355,-0.13603243,0.45337078,-0.5529526,-0.21096689,0.1317508,-0.19421954,0.123363376,-0.65178937,-0.009876651,-0.37383413,0.45551836,0.007065455,-0.28340632,0.47587338,0.26713964,0.42512956,0.2663295,-0.28204003,-0.30190927,-0.03666163,0.017855942,0.39602795,-0.37691417,-0.3151382,-0.28468427,-0.11766878,0.17250724,0.20092332,-0.05775137,-0.3187391,0.093479335,-0.27928957,-0.05584776,0.17127295,0.35512128,-0.33877465,-0.288295,0.20042975,0.5361429,0.2499628,-0.19353034,-0.19423842,0.13249378,-0.6807995,-0.19914703,0.087518595,-0.19351387,0.62218744,-0.13207477,0.026148856,0.8051483,-0.018634157,-0.062906645,-0.06038751,0.23111832,-0.16341817,-0.2736009,-0.43306008,0.44978943,-0.33785906,0.10513821,-0.29885414,0.7725723,0.19037944,-0.73379046,0.3652904,-0.6211182,0.096508585,-0.07616919,0.6491443,0.75551224,0.76039696,0.39850628,0.80913514,-0.21021004,0.17774747,-0.0574854,-0.22614433,0.1449129,-0.26193973,-0.09193877,-0.47283256,0.10140165,-0.17198308,0.010972805,-0.08219796,0.4598606,-0.61455876,-0.05276999,0.30791253,0.5964929,-0.310268,-0.09024625,0.64984226,1.0475689,1.0170425,0.06536923,1.3542051,0.44762984,-0.17573428,0.22414494,-0.044403702,-0.94308513,0.06746522,0.49736667,-0.084088035,0.24445839,0.039843407,-0.15948372,0.5904951,-0.56747276,0.09060672,-0.2243303,0.31582066,-0.084987335,0.0530339,-0.6028211,-0.25949702,0.06792014,0.023690274,-0.09214612,0.32489985,-0.2687957,0.23674019,-0.083167695,1.281056,-0.05420594,0.18302858,0.17401512,0.5169044,0.06852454,0.0147722615,-0.040078077,0.33240116,0.3678051,-0.056997288,-0.6111862,0.34006977,-0.32459876,-0.5858712,-0.09261528,-0.27509174,-0.11714014,0.17914535,-0.4231874,-0.34011236,-0.034344953,-0.23843968,0.42276272,-2.3464034,-0.16865481,-0.21669318,0.36392972,-0.2848679,-0.07497275,-0.15679199,-0.43239,0.2709715,0.31609955,0.6008981,-0.733592,0.43245748,0.505095,-0.64133984,-0.1396573,-0.7592673,-0.039504115,-0.1328326,0.3929541,0.056880485,-0.30212715,-0.08966118,-0.20942432,0.71620053,0.017111037,0.2112515,0.55235475,0.18239002,0.19425042,0.4887618,-0.055752385,0.5415881,-0.5637059,-0.45755553,0.29595745,-0.37923393,0.41935667,-0.031377386,0.062824965,0.6100034,-0.6658506,-1.0385798,-0.69856924,-0.3036919,1.0527607,-0.3771437,-0.46864638,0.25738773,-0.16793652,0.07952996,0.14498176,0.62896043,-0.06680005,0.15369101,-0.7384286,0.10189342,0.019163074,0.46297598,0.10489574,-0.054701854,-0.41121694,0.7837387,-0.1755848,0.57196516,0.4280094,0.12533139,-0.34068823,-0.45324838,-0.017727481,0.8542698,0.31222743,0.11412359,0.012258534,-0.35942551,-0.124081306,-0.2538487,-0.0123251425,0.56854516,0.8041255,-0.14463145,0.12709735,0.28929606,-0.030922651,-0.035991807,-0.2076552,-0.3285854,-0.17261894,0.38845766,0.46911398,0.8174205,-0.13853957,0.34610167,-0.25841066,0.4331201,0.1224888,-0.49904358,0.540885,0.67736155,-0.19295757,0.12633629,0.75860834,0.7599394,-0.45735574,0.5071936,-0.613618,-0.36137497,0.49534068,-0.11938461,-0.46503854,0.04485296,-0.3124336,0.3464497,-0.7173023,0.49280012,-0.49902916,-0.44426122,-0.81940633,-0.058629274,-2.9094822,0.27963766,-0.18143971,-0.038242955,-0.098118626,-0.06658976,0.4020492,-0.8476879,-0.5212799,0.21472,0.09962087,0.5137957,-0.0625625,0.04491586,-0.322862,-0.32209602,-0.064355254,0.34136453,0.32762292,0.23487073,-0.17332478,-0.56646985,0.09813396,-0.071744256,-0.3239889,-0.0068446547,-0.8130799,-0.4376522,-0.09450889,-0.79409057,-0.38637206,0.5626708,-0.518001,-0.014788661,-0.22143416,0.1223919,-0.29372135,0.230967,0.07317754,0.21315251,0.16742925,-0.12079173,-0.061585397,-0.18504061,0.3919119,0.03621472,0.101727396,0.066676535,-0.19829233,0.16755962,0.64470214,0.7531232,-0.24038804,1.296139,0.66851217,-0.18574472,0.19257379,-0.25660804,-0.2638114,-0.69482785,-0.3941177,-0.26163688,-0.3607161,-0.46156776,0.360038,-0.2139494,-0.9119527,0.93167067,-0.1616931,0.2024498,0.2201482,0.07510204,0.41024557,-0.30353975,-0.032205295,-0.18253513,-0.015862605,-0.5608955,-0.37250268,-0.682108,-0.5164409,-0.16357571,1.1715776,-0.26216236,0.14817382,0.22044103,-0.33651176,-0.12871341,0.08644453,0.0025248204,0.3416669,0.5779772,0.011804019,-0.7327896,0.29543898,0.11845199,-0.066428654,-0.30525163,0.21372636,0.6736264,-0.98915416,0.794202,0.300916,-0.08624455,-0.11164089,-0.6154701,-0.5628169,0.042919796,-0.10316514,0.4425132,0.09512699,-0.7913254,0.46840444,0.31587613,-0.6092294,-0.8688529,0.17465329,-0.2724611,-0.23102097,-0.04239915,0.39170322,-0.041179877,-0.0959798,-0.21441495,0.2338997,-0.41757426,0.3192694,0.055187777,-0.20133543,0.32439813,-0.3237046,-0.15973416,-0.91621685,0.13345575,-0.55036896,-0.28988716,0.5353162,-0.061283354,-0.3294803,0.21417247,0.26285326,0.278679,-0.2766033,0.07502333,0.06242296,-0.37406674,0.15001087,0.51300955,0.28369543,-0.27724653,0.55624753,0.10855526,-0.031763624,-0.34586826,-0.22698571,0.21493204,-0.04850912,0.3646325,-0.31556177,-0.199548,0.28818095,0.9183793,0.082594134,0.63570666,-0.004727222,0.032613155,0.59048635,0.09131217,0.24373777,-0.025268197,-0.5569826,0.14474876,-0.023305902,0.06807306,0.5225207,0.318794,0.39606515,0.028059125,-0.1345811,0.0066058487,0.16566081,0.07021459,-0.94056416,0.32430327,0.085953355,0.68390924,0.6915229,0.16712527,-0.3648415,0.79498214,-0.39365885,-0.039973095,0.5472321,-0.074870914,-0.5518088,0.76588804,-0.6883478,0.384636,-0.36498296,-0.045173883,0.16567685,0.0774042,0.44036007,0.6671386,-0.14264867,0.038200762,0.029759621,-0.13348983,0.042306244,-0.2891315,0.119370736,-0.3521212,-0.41883254,0.8844569,0.41607356,0.47767273,-0.19849235,-0.016514517,0.050573442,-0.23308754,0.50408345,-0.13936123,-0.090222664,0.17150815,-0.5842098,0.11437819,0.6730099,0.016983887,0.08884063,-0.03952245,-0.40268123,0.23113574,-0.18248005,-0.17773052,-0.08357907,-0.74491984,0.09369447,-0.37396994,-0.35743788,0.54723555,-0.25555372,0.15896395,0.19175589,0.10038647,-0.30941302,0.4768436,0.12466419,0.9538164,0.15999082,-0.20442213,-0.08559481,0.2563388,0.17003684,-0.18964891,0.11397856,-0.525763,-0.031205177,-0.62085545,0.5886557,-0.10897606,-0.4296813,0.20354263,-0.19436656,-0.07150581,0.50318533,0.0036391292,-0.21701078,0.014840168,-0.14167623,-0.47190297,-0.15017663,-0.3613499,0.29604375,0.14305855,0.19560926,-0.21241839,-0.3367957,-0.2760935,0.7389433,0.02178646,0.45326564,0.37083992,0.11884495,-0.14378597,0.12638669,0.16772431,0.5113445,-0.013454467,-0.08741162,-0.505376,-0.29645205,-0.18677996,-0.15432262,-0.052913412,0.4065484,0.09321085,-0.3168957,0.88851947,-0.083528034,1.2778119,0.022586199,-0.39769664,-0.02012235,0.61553186,-0.12822461,-0.048466694,-0.40709615,0.96130323,0.54802996,-0.15821593,-0.027227765,-0.55681264,-0.21018346,0.41320872,-0.3043621,-0.15780659,-0.11426098,-0.68721277,-0.4311413,0.17610498,0.32119328,0.12019536,-0.11428013,0.1036123,0.11015894,0.1301672,0.32321504,-0.46648434,-0.2077089,0.38015357,0.4198557,-0.087186635,0.22956741,-0.2745764,0.45968163,-0.73979473,0.32603192,-0.5875903,0.09060311,-0.36731753,-0.45717993,-0.024194425,0.01621706,0.2966958,-0.21910872,-0.28949055,0.030424438,0.55644226,-0.030803153,0.2951948,0.89103794,-0.27523747,-0.07520034,-0.03837418,0.56498057,0.9686498,-0.5586506,-0.07673794,0.1135433,-0.19290191,-0.5241074,0.60966617,-0.34697405,-0.16449384,-0.0357114,-0.44482458,-0.5975248,0.07627304,0.17921662,-0.14873104,-0.10069767,-0.66659826,0.1103855,0.35223362,-0.104008555,-0.13083693,-0.08471564,0.639801,0.7688699,-0.24210334,-0.5000847,-0.00087932375,0.2671232,-0.2065778,-0.41490868,-0.20513754,-0.49663773,0.32410344,0.27478993,-0.43185923,0.063265085,0.10628884,-0.46864775,-0.10887887,0.19813858,-0.2387499,0.24140124,-0.377553,0.13007168,1.0367097,-0.02999167,0.10227159,-0.41371343,-0.5838436,-1.1040813,-0.34648204,0.50108343,0.28679857,-0.009381592,-0.4030676,0.19935541,-0.14614414,-0.43125775,0.06687492,-0.55731213,0.4489204,0.17033285,0.5834859,-0.26504555,-0.6831088,0.097361185,0.26665244,0.11352714,-0.4238939,0.5381214,-0.13965574,1.1543599,0.022185251,-0.21434636,-0.010370121,-0.45353356,0.021324217,-0.39163753,-0.017468996,-0.6328524,-0.08298228 -974,0.110166185,0.01570909,-0.84117603,-0.09465384,-0.21515045,0.06936568,-0.2836829,0.44272733,0.22134387,-0.3192449,0.10098626,-0.10140427,-0.11642276,0.2640048,-0.18409012,-0.7329979,-0.065882854,0.07202759,-0.38232556,0.598483,-0.4646143,0.24322748,-0.07918073,0.27322128,0.05379789,0.38187653,0.12653224,-0.24070457,-0.00014550345,-0.10427612,0.033972006,0.20048033,-0.36712703,0.1344375,0.08957903,-0.25732067,0.23950703,-0.3016474,-0.42832544,-0.66982406,0.32498237,-0.6920099,0.5514747,0.0956341,-0.27719697,0.44708943,0.049405508,0.0033793706,-0.26715407,-0.06828047,0.34480596,-0.28820997,-0.3322905,-0.16277437,-0.38911608,-0.76541144,-0.50510484,-0.106754474,-0.65454084,-0.07405671,-0.361526,0.16009894,-0.37413958,-0.13927297,-0.22196208,0.1744368,-0.6319718,-0.015584179,0.0628146,-0.31611425,0.08313613,-0.63479507,-0.10619893,-0.063969836,0.141139,0.14831424,-0.017027732,0.24603963,0.049041253,0.3949675,-0.009063401,-0.044691417,-0.59955746,-0.2806124,0.2566479,0.38911372,-0.07759583,-0.18482523,-0.056327175,-0.07609548,0.3060407,0.35081282,0.03763924,-0.17089696,-0.18402639,0.07668634,-0.33469138,0.45295662,0.504696,-0.23952726,-0.07784406,0.49813825,0.19154358,0.2669973,-0.36553636,0.12673858,-0.14706244,-0.42442527,-0.17193785,-0.010154724,-0.10518042,0.3910223,-8.174138e-05,0.3702514,0.80230683,-0.12377958,-0.0527729,-0.19353811,0.002604078,0.057098538,-0.2705378,-0.10667284,0.22104017,-0.42481998,0.17136621,-0.20220843,0.684837,-0.06735995,-0.79579085,0.3962764,-0.4145113,0.077552386,-0.14097941,0.75847065,0.6413188,0.535984,0.15622258,0.8845075,-0.43212837,0.15306608,0.015397782,-0.47170094,0.35400537,0.12953316,-0.021541135,-0.48617366,0.06924777,0.1792936,-0.11107598,0.11527063,0.59151655,-0.40303913,0.02585062,0.0653568,0.830386,-0.3280591,-0.10530964,0.57037824,1.1440991,0.79438835,0.07333947,1.0402391,0.2399745,-0.20731728,-0.029676054,-0.29423764,-0.9638732,0.19461921,0.35166496,0.14804076,0.3472405,0.16289215,-0.009742941,0.4823548,-0.20709983,-0.08086804,-0.13833098,0.36076418,-0.03953505,-0.2748981,-0.1802272,-0.1009218,0.089345016,0.051890977,0.22662939,0.3531239,-0.13837942,0.39800724,0.12801717,1.4563278,-0.045461852,0.06824656,0.1749306,0.517311,0.27804935,0.07084932,0.05043993,0.7536518,0.33770496,-0.010531281,-0.68561935,0.14358003,-0.27767918,-0.4932774,-0.13312893,-0.34051746,-0.19698794,-0.017821701,-0.2732993,-0.19117144,-0.08149327,-0.30101386,0.35914865,-2.7978675,0.019538967,-0.17542256,0.24349962,-0.052998006,-0.12957712,-0.025977036,-0.42864418,0.57144797,0.49675712,0.4219353,-0.4393246,0.51288843,0.7208436,-0.3285534,-0.07235471,-0.53852355,-0.1567734,-0.09194488,0.48956257,-0.10756911,-0.20825426,0.0689237,0.06831833,0.4842484,0.04078865,0.17597353,0.32054114,0.6021328,-0.13587764,0.33074233,-0.11149148,0.58806187,-0.119358905,-0.08099691,0.1692735,-0.37949356,0.44312865,-0.3957804,0.10861135,0.46325678,-0.22356436,-0.7322704,-0.21385661,0.06425988,1.0077192,-0.37986594,-0.5815765,0.34930712,-0.26148438,-0.18203616,-0.14850186,0.5318796,-0.21240173,-0.18864986,-0.61843354,-0.017833821,-0.25687006,0.106231384,0.0030090862,0.12921445,-0.4615275,0.75169885,0.04146817,0.7561466,0.36084896,0.10190284,-0.2079055,-0.2810921,0.07820722,0.5452064,0.321734,0.11045466,-0.34578535,-0.22536813,0.044041682,-0.21786198,0.058216807,0.53306174,0.59964997,-0.063674726,0.12701885,0.20869902,-0.28709435,-0.11487006,-0.32958603,-0.33964822,-0.096807756,0.10716132,0.37927303,0.693075,-0.1733613,0.38182217,0.19174193,0.32666588,-0.35220656,-0.45143372,0.46563217,0.66638213,-0.17328933,-0.15449367,0.60751826,0.4671087,-0.14725685,0.4756334,-0.6166156,-0.17036687,0.5367136,-0.23566937,-0.45267287,0.15496273,-0.28527465,-0.06488281,-0.7988946,0.24725571,-0.18262057,-0.6176439,-0.7023152,-0.1662267,-3.0193253,-0.020656396,-0.45823678,-0.20388296,-0.389888,-0.00295814,0.19227873,-0.48316702,-0.5191762,0.12779021,0.37690115,0.45070362,-0.13922592,0.03924322,-0.30357417,-0.19747797,-0.0562041,0.26067382,-0.15862694,0.14759292,-0.056187768,-0.4368577,-0.0044083,-0.081470355,-0.31996113,-0.035314284,-0.21817853,-0.06920241,0.043766025,-0.38672358,-0.116345815,0.7771265,-0.48804238,-0.10703675,-0.25679448,0.09017281,-0.116957135,0.27303356,0.00064912863,0.11159021,0.016861144,-0.015634581,0.09138928,-0.42190203,0.291404,-0.089705266,0.45759198,0.36586234,0.030452082,-0.15496643,0.5919797,0.469525,0.057605233,0.822905,0.3660604,-0.24655928,0.36044434,-0.3079764,-0.10488885,-0.6358303,-0.4284367,0.018078608,-0.37794098,-0.6070324,-0.16993068,-0.5165774,-0.85410655,0.3720956,0.06829781,-0.015146285,-0.02153259,0.3976719,0.39132696,0.038401235,0.06607348,-0.06703472,-0.23012137,-0.41233808,-0.13624422,-0.7798895,-0.35647175,0.16218092,0.9564404,-0.2999421,-0.33239597,0.10679563,-0.44884667,-0.0076745087,0.1753444,0.25948453,0.33691978,0.27108094,0.18891081,-0.6116692,0.65762436,-0.07986969,-0.026211854,-0.68811464,-0.1630442,0.43573228,-0.83546066,0.40105072,0.558238,-0.08560588,0.10211507,-0.7025115,-0.2275466,0.15287575,-0.17119971,0.41288307,0.21311192,-0.83399194,0.52766484,0.25380033,-0.110124946,-0.67687273,0.30018595,-0.24416174,-0.22676754,0.19870612,0.28124925,0.12426204,-0.03979615,-0.21231662,0.2525653,-0.2912504,0.36059904,0.099115714,-0.20718868,0.47989056,-0.048109863,-0.01493276,-0.8804775,0.028324971,-0.4262354,-0.08668627,0.38974735,0.14196567,0.30891237,-0.02128378,0.14423497,0.448796,-0.34342322,0.2632503,-0.29991955,-0.29787764,0.4690493,0.45015833,0.28486001,-0.41531911,0.60708016,-0.12948933,-0.16313548,0.21858966,0.075752445,0.4791067,0.07772623,0.43693304,0.055253167,-0.27704787,0.17382307,1.1071099,0.28489545,0.37623432,0.19593121,-0.13363573,0.46489996,-0.0043629683,0.06776574,-0.07349483,-0.4867685,-0.032462854,-0.07696949,0.25421903,0.42858785,0.21685186,0.46527913,-0.11563439,-0.07647399,0.10184089,0.24525563,0.287705,-0.7088297,0.44617623,0.2636141,0.63850725,0.62993205,0.1174363,0.14909792,0.5429072,-0.19739921,0.069366924,0.34916,0.097604886,-0.4794738,0.3831019,-0.59432757,0.4399162,-0.19804123,-0.053992808,0.3394471,0.047655802,0.44361755,0.86522853,-0.18959716,-0.0018970221,0.12389754,-0.27713522,0.09141111,-0.15180232,-0.11712862,-0.28404504,-0.3709726,0.4402664,0.5311957,0.34366164,-0.06302036,-0.038558695,0.27747077,0.04551712,0.23188855,-0.009649164,0.044100374,-0.07529458,-0.4166741,-0.2980053,0.47242537,-0.08783162,0.019573543,-0.09039472,-0.32910213,0.34421656,-0.27802375,-0.069691785,-0.0832986,-0.52708954,0.17038839,-0.11293013,-0.8879808,0.60730875,0.12462049,0.3367373,0.21524274,-0.01810311,-0.18386804,0.15119238,0.020387696,0.73780155,-0.23470439,-0.07733758,-0.3273775,-0.28722256,0.28924513,-0.3653571,-0.15432207,-0.15976523,0.063908875,-0.6206721,0.37973925,-0.33833724,-0.2628863,-0.09707825,-0.37814644,-0.028263075,0.39950174,-0.19624083,-0.25333217,0.11264382,-0.13213202,-0.16999663,-0.26624218,-0.38048792,0.053957354,-0.24227038,0.019359767,-0.2623421,-0.16234623,-0.021592498,0.27528644,-0.11110679,-0.032870818,0.2817022,0.17110617,-0.3141826,-0.2971027,0.22816499,0.5895415,0.02053849,0.06580356,-0.23611781,-0.43717474,-0.36065882,0.24134925,-0.18189017,0.34473655,0.28951007,-0.51271117,0.79746914,0.02916801,0.8747245,0.059897173,-0.41629162,0.25358638,0.7018139,0.26372203,0.19685592,-0.26510802,0.8808121,0.61925995,-0.26031324,-0.10152803,-0.49307474,-0.0947119,0.4275753,-0.27534404,-0.16526015,-0.002747689,-0.69894695,-0.14796713,0.3379789,0.05227836,0.051121067,-0.17240511,0.040078063,-0.040465888,0.42781025,0.2582393,-0.5764297,-0.24310994,0.2738035,-0.09419594,0.06819541,0.15628919,-0.49142244,0.31776476,-0.40376732,0.016513724,-0.4295484,0.008379638,-0.08819103,-0.035708904,0.15053026,-0.038152665,0.20468901,-0.24592051,-0.40849113,-0.029315531,0.45793253,0.23617052,0.49764222,0.60955924,-0.22296046,0.035786808,-0.09710632,0.5445219,1.1140705,-0.26414433,-0.15540065,0.4534488,-0.42407247,-0.6720889,0.066081874,-0.5490922,-0.0395695,-0.102227405,-0.51783115,-0.3834832,0.27015597,0.06699658,-0.3154993,0.086362734,-0.55747837,-0.21162836,0.15943919,-0.36966977,-0.24510863,-0.29876238,-0.16689089,1.0046381,-0.45212513,-0.2860053,-0.017509809,0.26408276,-0.28993973,-0.56516486,0.21272898,-0.32204765,0.40276363,0.18754579,-0.4101704,-0.0066066766,0.13980721,-0.43397978,0.22185217,0.3777585,-0.35925236,-0.028890137,-0.39374566,0.12137167,0.8055844,-0.09121263,0.09237993,-0.2786843,-0.5054094,-0.80347747,-0.29623923,0.2575295,0.0505797,0.00023022294,-0.5741872,0.18593721,-0.06255277,-0.04305576,-0.099724755,-0.5886083,0.5501653,0.13624847,0.3619387,-0.16623732,-1.082595,0.014993966,0.038755033,-0.37213463,-0.5887355,0.6117373,-0.28705975,0.90520924,0.13364114,0.098901436,0.09472398,-0.53403413,0.5050784,-0.48682073,-0.37288776,-0.60757476,0.061397623 -975,0.4087749,-0.22904398,-0.44175628,-0.13983645,-0.038673755,0.14900889,-0.17578131,0.27197078,0.21551809,-0.3298087,0.036498364,-0.2644142,0.097872205,0.6099893,-0.04113434,-0.72457445,0.04320344,0.088028856,-0.6362991,0.53754437,-0.5382833,0.45543632,-0.03432191,0.2521385,0.06794907,0.30964443,0.31681558,-0.041815527,0.07749915,0.13756618,-0.11783478,0.24167247,-0.4673065,0.04797089,0.054405928,-0.23809052,0.03960739,-0.2559386,-0.45038864,-0.5944964,0.4574247,-0.8289807,0.35206586,0.00807209,-0.30074602,0.2863072,-0.008788959,0.2819266,-0.47201544,0.1344154,0.14555407,0.08716265,0.123650424,-0.2509284,-0.28091842,-0.4429565,-0.4181711,0.053115495,-0.5520106,-0.32052284,-0.3527263,-0.0043530692,-0.2776529,0.11242846,0.07846756,0.12197009,-0.45283964,-0.15960671,0.318961,-0.14755912,0.24555609,-0.41610622,-0.017730366,-0.113383666,0.19145839,-0.18431863,-0.068165585,0.32766178,0.31370527,0.6165856,-0.1160253,-0.12531206,-0.23997055,-0.022902194,0.16649812,0.5109056,-0.13365313,-0.41968346,-0.21924217,-0.0002698342,-0.015119372,0.09997352,0.09552849,-0.40017214,-0.13080646,-0.004166009,-0.2560506,0.2077119,0.41818315,-0.539192,-0.34547082,0.44277066,0.53674287,0.14296831,-0.068668954,0.16736993,0.08621917,-0.38912874,-0.21949701,0.16251026,-0.13207386,0.45229033,-0.04679559,0.17844509,0.7311372,-0.10740985,0.25275466,-0.29298756,-0.07756364,-0.17360494,-0.19463377,-0.09895641,-0.0035913626,-0.39495018,0.07886494,-0.07293519,0.711264,0.3980743,-0.6977326,0.4991564,-0.4110047,0.19522569,-0.23160455,0.5112735,0.70379746,0.19998795,0.09007803,0.7362678,-0.6899211,0.22171097,-0.10604331,-0.33461717,0.21646541,-0.21689647,-0.12813509,-0.46280432,0.2256252,0.042799808,-0.091650866,0.08531426,0.36860764,-0.47850454,-0.09636062,0.09218972,0.85673946,-0.3927541,0.13312714,0.4291537,0.9328537,0.79041004,-0.039079923,1.1780131,0.52135116,-0.2867154,0.32867062,-0.31927332,-0.8919671,0.19507305,0.46688753,0.34303847,0.34849584,0.14301893,-0.071170345,0.33532298,-0.28589243,0.089712635,-0.22670938,0.23695531,-0.062942185,-0.09886886,-0.29954544,-0.098674245,-0.06845915,-0.082848474,0.061893653,0.23552631,-0.1755394,0.16357186,-0.025255863,2.1433313,-0.069530085,0.14296539,-0.032689225,0.522812,0.3871399,-0.19691725,-0.1433881,0.40162858,0.461903,-0.00016543866,-0.6409866,0.13990976,-0.2327914,-0.4494639,-0.19547231,-0.37690264,0.12944376,0.04432681,-0.43240547,-0.0337217,0.105981596,-0.16029647,0.4046292,-2.6968586,-0.24179225,-0.1553558,0.34802607,-0.4400913,-0.25029817,-0.26381722,-0.2975528,0.36360237,0.42874068,0.35136604,-0.5899354,0.26747885,0.3865063,-0.22288388,-0.08525203,-0.4624693,-0.08133759,-0.02421943,0.3889908,-0.14928149,-0.05656739,-0.107711144,0.43260768,0.24614035,-0.0025804916,0.08202468,0.19580337,0.38153654,0.23263402,0.3781971,-0.08699172,0.474853,-0.20725074,-0.08916044,0.38137683,-0.24432285,0.29629248,-0.026865752,0.18076853,0.308132,-0.52780414,-0.8637699,-0.5661508,-0.33607417,1.0394187,-0.48138365,-0.40362296,0.3561582,-0.0460766,-0.10707422,-0.03864516,0.37405765,-0.053149324,-0.15691002,-0.7767811,0.12587072,0.0057750545,0.22895975,0.104725614,-0.052703302,-0.20777453,0.589686,-0.0270528,0.4999141,0.17789786,0.12284245,-0.0062810103,-0.49081337,0.032131378,0.92936146,0.2752846,0.14932175,-0.2322416,-0.21742915,-0.37056336,-0.20350914,0.018449286,0.2800114,0.8086423,0.07216406,0.054948073,0.14571117,-0.097411595,-0.023599874,-0.13108633,-0.29174784,0.10196145,-0.05685656,0.5747969,0.47726172,-0.24651732,0.40657315,-0.0849439,0.1379727,-0.219415,-0.5325397,0.62236077,0.89682317,-0.097949974,-0.16890712,0.4748791,0.2923197,-0.49356046,0.45219025,-0.7691447,-0.27440515,0.5325862,-0.19752179,-0.20794494,0.2894078,-0.32097182,0.036553454,-0.88150024,0.23839286,-0.048574354,-0.09895756,-0.42102763,-0.20236264,-3.9476228,0.12724473,-0.112598605,-0.22914465,-0.01914099,0.10278257,0.44779283,-0.4777389,-0.54675865,0.19856307,0.023474602,0.6092905,0.07757078,0.15084948,-0.31707278,-0.04332478,-0.3996769,0.07693798,0.011815739,0.3504605,0.11143355,-0.4407673,-0.13551484,-0.20067532,-0.28988025,0.10821117,-0.56069815,-0.49338427,-0.28293973,-0.49408022,-0.07620538,0.6035427,-0.18571559,0.01940697,-0.19776887,-0.0658355,-0.26322645,0.24079694,0.33321652,0.12829922,0.0026431403,0.028552098,-0.19031286,-0.4151774,0.2576014,0.10810096,0.17168468,0.21646087,-0.092480294,-0.07226661,0.51229304,0.50833756,-0.08329894,0.5269031,0.4606734,-0.11650049,0.35884288,-0.33815295,-0.1497495,-0.4063149,-0.40612087,-0.37207383,-0.32094017,-0.5839612,-0.22235708,-0.36386314,-0.6853179,0.42924914,-0.018220885,0.21403077,0.05184611,0.012773291,0.37965205,-0.11072119,0.020946454,0.0026500304,-0.16634029,-0.583278,-0.3146291,-0.52859324,-0.4341087,0.5770019,0.74018425,-0.188226,-0.09927518,-0.102321126,-0.19764659,-0.08447062,-0.14456327,0.13994072,0.3434995,0.23501904,-0.0057039578,-0.6618559,0.57952416,-0.102359615,-0.16788967,-0.66331476,0.04240296,0.49551374,-0.6111914,0.49962905,0.19833134,0.13356961,0.108814865,-0.5131633,-0.2865483,0.121026285,-0.31684712,0.30516356,0.08621963,-0.7935003,0.42025247,0.36817744,-0.3363003,-0.6359913,0.4989057,0.062135782,-0.29579982,-0.005176838,0.20454058,0.07220398,0.067675866,-0.3611213,0.2752016,-0.5504468,0.16234857,0.38463885,-0.0032382766,0.48535767,-0.2091931,-0.18303034,-0.48888168,-0.08786637,-0.44389126,-0.19643511,0.15830915,0.03936646,0.10450796,0.08307055,0.03720242,0.48388252,-0.33521852,0.12347977,0.07353062,-0.24255511,0.38995764,0.31515417,0.39580122,-0.38644817,0.52701837,-0.121307276,-0.050901175,0.16425762,0.15171047,0.5006129,0.3347746,0.2535754,-0.01889108,-0.12625259,0.312523,0.97178334,0.16723728,0.33308294,0.078007124,-0.3161709,0.3068691,0.31516713,-0.086098716,0.11477332,-0.24182819,-0.04110626,0.069348216,0.24280366,0.46104705,0.23862979,0.40471998,-0.19049732,-0.36518365,0.23065752,0.12530084,-0.11889755,-0.90151304,0.15002725,0.16077217,0.6391335,0.4380024,-0.055915017,0.033225276,0.49800733,-0.14535974,0.12024256,0.23851411,-0.3615327,-0.62432206,0.4671251,-0.5079142,0.39153254,-0.023468876,-0.0009250204,0.17847608,0.24584867,0.4046981,0.75146025,-0.04389962,0.039827537,0.0040107574,-0.33971536,0.0862892,-0.36998957,-0.044281904,-0.39174265,-0.33844355,0.41398317,0.49829295,0.14195411,-0.17130886,0.017413475,-0.061720897,-0.06903253,-0.016567957,-0.0014236092,0.0141538065,-0.0003452162,-0.63300234,-0.5168182,0.5638112,0.07525524,0.044418987,-0.13062903,-0.19271101,0.3446124,-0.21716523,-0.04626796,-0.00072878995,-0.72793096,0.033237617,-0.3160811,-0.36007226,0.39518562,-0.063265614,0.30604535,0.1818902,-0.05683732,-0.41383797,0.50091517,0.07256092,0.7930256,-0.13918298,-0.26952678,-0.5729501,0.074995175,0.23256254,-0.2504614,0.04505384,-0.4043844,0.024563653,-0.61480993,0.41236985,-0.03285829,-0.24132726,0.2599451,-0.18480536,0.11591778,0.5998395,-0.17364769,-0.09635391,-0.0979601,-0.10681146,-0.40819848,-0.13242024,-0.20373863,0.1575245,0.18927626,-0.052966464,-0.04569535,-0.02779053,0.016771387,0.5378242,0.07393408,0.28715655,0.35012484,0.17406763,-0.1908911,-0.047789223,0.3108804,0.38615724,0.044112835,-0.014947414,-0.15827225,-0.5123835,-0.33340946,0.14078365,-0.29930764,0.26420525,0.028665576,-0.49447364,0.5788107,0.19481274,0.9313743,-0.056941807,-0.2707048,0.13851628,0.43515775,0.083749995,-0.00083635055,-0.39619097,0.73559123,0.6998424,-0.018737268,-0.2111371,-0.14072233,-0.329133,0.17187183,-0.31468195,-0.05868918,0.04485691,-0.75577897,-0.3552694,0.22478408,0.23822525,0.1586017,0.0077036787,0.14632784,-0.045786526,0.13516359,0.1999065,-0.5506264,-0.20167576,0.2307918,0.26304936,0.06535337,0.123793945,-0.40518913,0.46636054,-0.5749727,-0.023280596,-0.3208209,0.08687093,-0.04868504,-0.33697805,0.14414898,-0.0031085291,0.40402335,-0.2812477,-0.42738324,-0.26057255,0.53542405,0.12997997,0.20843436,0.5193536,-0.27349344,0.21977672,0.02052327,0.51744664,1.0492976,-0.16035,0.05459078,0.37461615,-0.35591373,-0.73955536,0.2608952,-0.14966129,0.37075037,-0.100078546,-0.23078531,-0.48066732,0.37140945,0.1160719,-0.015637506,0.1568866,-0.48801824,-0.31973192,0.20576063,-0.22435686,-0.3702921,-0.36862957,0.13047522,0.69396025,-0.38491747,-0.074879475,0.32108566,0.32260847,-0.2891202,-0.64314884,-0.10136898,-0.35703278,0.27598447,0.20473905,-0.18828265,0.065336876,0.07443203,-0.3502352,0.20261791,0.18498723,-0.4283403,0.06353277,-0.27206215,-0.012932336,1.0562031,-0.1267526,-0.16073951,-0.8467057,-0.46472454,-0.98560447,-0.45811862,0.7640251,0.19804677,0.15043591,-0.37977973,0.08012681,-0.02395571,0.20572135,0.05638667,-0.4087917,0.47704232,0.0059770485,0.36928767,-0.055544693,-0.7859222,-0.05089558,0.06769652,-0.38845035,-0.6848595,0.61488223,-0.18151544,0.92424786,0.058512203,-0.020483602,0.3313375,-0.5199215,0.057707954,-0.45104286,-0.2715828,-0.7051353,0.24770196 -976,0.40458643,-0.17419901,-0.5104056,-0.07468733,-0.3922627,0.055930052,-0.21506432,0.25097662,0.19341624,-0.14131367,-0.21373135,-0.12379513,0.011335788,0.24960832,-0.07017095,-0.55049795,-0.033804122,0.25405884,-0.77114576,0.5709614,-0.47863775,0.27898243,0.014170454,0.4567627,0.19713025,0.365386,-0.059238028,0.010090118,-0.13765426,0.2172468,-0.056622967,0.3164723,-0.454643,0.12647699,-0.14454667,-0.1183787,0.04228851,-0.32238743,-0.26419064,-0.7792441,0.07253569,-0.7249326,0.5462793,-0.24946684,-0.21600693,-0.17634718,0.13563532,0.43760294,-0.36555022,-0.01439754,0.23804502,-0.25187638,-0.26386976,-0.20930171,0.014383014,-0.33617675,-0.4045419,0.011556601,-0.5871892,-0.15076637,-0.15827692,0.20259112,-0.26853052,0.06583821,0.0047761817,0.371959,-0.34668803,0.095284216,0.2970512,-0.17060721,0.063258745,-0.51195115,0.021449082,-0.10776021,0.45091796,0.07633125,-0.30458355,0.3533544,0.26080298,0.40928465,0.21682864,-0.22466528,-0.06598393,-0.16553892,0.10185984,0.38846716,-0.1402127,-0.093078196,-0.25135806,0.026209971,0.42116114,0.2306251,0.007081642,-0.24873464,-0.100023046,-0.11615818,-0.13597545,0.25595376,0.4912365,-0.21172257,-0.23012088,0.27156028,0.6367386,0.24784867,-0.21762212,0.15684964,-0.06740974,-0.42603755,-0.100571744,0.06060636,-0.03916516,0.42196748,-0.09142999,0.0010652192,0.81552494,-0.10665643,-0.12938794,-0.08258408,0.08201355,-0.050028574,-0.36247748,-0.17573169,0.059462167,-0.48109138,-0.027289342,-0.098409034,0.6155618,0.18440905,-0.6406088,0.31164268,-0.48457235,0.16735594,0.039799735,0.63287747,0.7235733,0.46910712,0.379246,0.7800265,-0.26640183,0.24690011,-0.014740817,-0.2597285,0.05791371,-0.23277766,0.06946101,-0.48625958,0.24366795,-0.33698902,-0.14794873,0.040260185,0.38311312,-0.6936083,-0.046943817,0.0749543,0.64496934,-0.3523041,-0.1123785,0.66366404,0.9847561,0.77658963,-0.06275169,1.1477491,0.4930935,-0.14534323,0.19999424,-0.39153123,-0.65014774,0.13722481,0.20804305,0.035106745,0.32626757,0.07795192,-0.17192559,0.4447076,-0.4345379,0.0042296015,-0.059041698,0.29766583,0.097396724,0.13091893,-0.42326272,-0.17830026,0.06912115,-0.015555143,0.17458577,0.23925602,-0.41025072,0.380972,0.05047562,1.5227926,-0.0889694,-0.025068337,0.13153808,0.44374028,0.19054963,-0.20729479,-0.17698891,0.5730194,0.4135814,-0.094069816,-0.57680523,0.19050135,-0.2561793,-0.37422758,-0.11853921,-0.35265088,-0.06705745,0.0018423857,-0.5082742,-0.24897073,0.010110031,-0.29517466,0.4443235,-2.627445,-0.31251526,-0.10074283,0.48366952,-0.26418248,-0.23568742,-0.21301404,-0.50651056,0.060219057,0.28886583,0.3190058,-0.5376987,0.518506,0.3412837,-0.48017666,-0.22909394,-0.63533235,-0.06032068,-0.046841152,0.46683794,-0.02008653,-0.060718972,-0.25604388,-0.012139299,0.5575724,-0.14386497,0.16900091,0.58844525,0.2376093,0.18939817,0.47928923,0.06578161,0.5978659,-0.22333933,-0.2479135,0.49509785,-0.26974374,0.22439438,-0.033932798,0.04016865,0.58501387,-0.38052034,-0.7672965,-0.6324849,-0.23400576,1.0597283,-0.50454295,-0.46740454,0.18620443,-0.22706166,-0.14962511,0.10129064,0.54208875,-0.14974567,0.017724598,-0.75210893,0.117089845,0.10945314,0.35095242,0.051143516,-0.011355007,-0.23214848,0.69331133,-0.2545632,0.6601219,0.16899726,0.26561365,-0.02175552,-0.42741904,0.15627804,0.844393,0.29355073,-0.04317917,-0.14900672,-0.30111712,-0.09056887,-0.20294675,-0.01787732,0.4631925,0.7133862,0.030283375,0.15882581,0.2709368,-0.091819435,0.01762737,-0.19703083,-0.23353113,0.013051218,0.20058858,0.5059409,0.67101836,-0.1835267,0.4467577,-0.32130304,0.3919606,0.020575186,-0.5918839,0.5742568,0.61752826,-0.25428095,-0.13547814,0.4503138,0.5487773,-0.35513425,0.42148218,-0.7198319,-0.23422042,0.7119212,-0.18345468,-0.34427086,0.20577554,-0.22728872,0.25662422,-0.70723605,0.33322537,-0.21113974,-0.5411012,-0.45577148,0.010177977,-2.6769886,0.09703766,-0.067721345,-0.14854969,-0.18848006,-0.10616109,0.20003307,-0.54600805,-0.45991915,0.10289491,0.18015559,0.4986187,-0.002702776,0.052727364,-0.30307433,-0.21750414,-0.12612979,0.13302027,0.13475825,0.33388507,-0.17238095,-0.48463833,-0.057288527,-0.14042377,-0.4840072,0.10737646,-0.68769246,-0.45836756,-0.13838577,-0.60027266,-0.17349555,0.61882347,-0.3665975,-0.031883836,-0.34749335,0.029746648,-0.11557064,0.13485773,0.11723194,0.21650934,0.18354179,-0.040641386,-0.056775928,-0.41045952,0.27743685,0.049823433,0.13294238,0.1697672,0.0976519,0.16954212,0.428648,0.56555414,-0.32588178,1.0728962,0.40585917,-0.08741456,0.25944206,-0.25751063,-0.25718355,-0.42897606,-0.23335671,-0.066062294,-0.37994888,-0.36345613,0.02972715,-0.3855416,-0.7969599,0.58644533,-0.18023737,0.28046048,-0.0036301857,0.25996786,0.53696674,-0.22966067,-0.024161935,-0.23691791,-0.24378738,-0.48209152,-0.38774803,-0.58649004,-0.5423291,0.10952802,1.1991969,-0.33124584,0.030357193,-0.083285525,-0.4470078,-0.054032996,0.03283756,0.10034708,0.39475897,0.5612613,-0.19070849,-0.5974945,0.21964024,-0.16871192,-0.09242617,-0.44296682,0.10333911,0.60135025,-0.78232193,0.61136633,0.17622986,0.18780124,0.0014058808,-0.46049014,-0.24027434,-0.014412957,-0.22902624,0.5723474,0.1570338,-0.69561005,0.45427284,0.111400545,-0.36483768,-0.7806063,0.15561637,-0.18811771,-0.24392614,0.03454085,0.4095508,-0.10430998,-0.026624562,-0.32621652,0.058581736,-0.32679018,0.1968002,0.34836793,-0.23696817,0.27264905,-0.1646975,-0.21102312,-0.6731906,-0.114505775,-0.38349262,-0.3093984,0.23665299,-0.0013496157,-0.07296077,0.006224867,0.15558267,0.37410697,-0.31938973,0.0943169,-0.07117275,-0.2885414,0.179728,0.42157254,0.3912934,-0.395728,0.4311905,0.068234034,-0.22416277,-0.06884764,0.004710113,0.3905487,-0.054179102,0.2671963,-0.17606173,-0.12629405,0.31416172,0.7471633,0.09557504,0.5720184,0.04499889,-0.26712295,0.27360225,0.005096304,0.17956227,-0.05969921,-0.3959753,0.053282946,-0.0027029638,0.2359528,0.53556436,0.4389238,0.3653567,0.08039072,-0.28260124,0.013153949,0.11122909,-0.07879852,-1.20699,0.22975639,0.17846969,0.7954195,0.2944079,0.11294456,-0.123995975,0.6928325,-0.1907582,0.06345016,0.36039612,-0.047866765,-0.4050363,0.69348526,-0.63506675,0.45923492,-0.21924555,0.0067363004,0.31056973,0.1793509,0.3791198,0.81184536,-0.20007262,-0.027628005,0.038451653,-0.027744524,0.07749993,-0.33195668,-0.006782361,-0.44830707,-0.40353984,0.69785064,0.4280461,0.34409022,-0.34367824,-0.033808284,0.035784993,-0.2073447,0.20413662,-0.016649147,0.09409955,0.12921943,-0.5099495,-0.1964422,0.4878168,-0.05868396,0.025102276,0.026659608,-0.2628975,0.003987244,-0.291668,0.0030720935,-0.08051161,-0.6516662,-0.18318108,-0.13438518,-0.5165858,0.3846975,-0.09452915,0.11380316,0.19702405,-0.023849964,-0.36105067,0.40602997,0.031567603,0.92735153,0.097738564,-0.27862334,-0.29248798,0.0802237,0.35285613,-0.2406956,0.15213235,-0.3784462,0.039876718,-0.5232196,0.5195896,-0.1296787,-0.44545785,0.23013534,-0.21217403,-0.14153722,0.51695424,-0.10749031,-0.15759282,-0.052526608,-0.17985469,-0.38759893,-0.004839308,-0.3247605,0.112647444,0.22822714,-0.13720764,-0.08014113,-0.17410122,0.012072996,0.65384036,0.14974296,0.41457605,0.2924246,-0.03098826,-0.18982881,0.18167503,0.20260668,0.46652532,0.1439532,-0.11145611,-0.35669434,-0.28023884,-0.16523738,0.21452124,-0.08588685,0.21063247,0.14900486,-0.3057257,0.97812754,0.008919749,1.1923429,-0.024911078,-0.25902003,0.13905539,0.5250463,-0.08165563,0.16431366,-0.43756944,0.7583295,0.4555584,-0.031719595,-0.01161677,-0.3414314,-0.26932502,0.3873115,-0.34346128,-0.008194349,-0.13238811,-0.519621,-0.54165775,0.26236415,0.1834375,0.16591038,-0.021805318,9.1724534e-05,0.050408386,-0.06551722,0.21309763,-0.5193446,-0.12315593,0.22514355,0.1760241,-0.12371141,0.14539589,-0.3843389,0.56267494,-0.66075975,0.1696489,-0.3663748,0.11586101,-0.16202687,-0.2977003,0.08330883,0.033305842,0.36963338,-0.40057647,-0.20437801,-0.25657716,0.60299134,-0.059295688,0.109038144,0.6446816,-0.30797723,-0.0119826235,0.13770762,0.48861235,1.0734098,-0.38134745,0.10901963,0.27340922,-0.30381468,-0.56158483,0.3970968,-0.20463285,-0.062387984,-0.088696174,-0.4194617,-0.42002925,0.30300564,0.13419081,0.056064513,-0.07762665,-0.5388504,-0.052019957,0.41098562,-0.2488582,-0.089351594,-0.10595894,0.35119587,0.73141235,-0.17291169,-0.45141268,-0.019418793,0.2541513,-0.32764944,-0.38619873,-0.13243523,-0.3211841,0.396628,0.0634295,-0.26179668,-0.08747211,0.15519132,-0.42289305,-0.015049394,0.21946713,-0.33830452,0.11508967,-0.13138689,0.053628493,0.9574933,-0.18830939,0.033525277,-0.6369464,-0.5298775,-0.9472327,-0.33614337,0.24757595,0.22579373,-0.10180497,-0.41352394,0.047895323,-0.25009555,-0.20761465,0.18328775,-0.49436447,0.31104583,0.20870596,0.43205652,-0.31018314,-0.9093156,0.082990155,-0.01201271,-0.2222699,-0.6289703,0.5121398,-0.098668635,0.7956455,0.057926126,0.047759265,-0.025448779,-0.31881595,0.19914612,-0.2741776,-0.05022216,-0.79577184,-0.010178196 -977,0.3982685,-0.144484,-0.40462664,-0.08448599,-0.4926092,0.028954139,-0.25145453,0.349569,0.11449406,-0.53198516,-0.22137976,-0.10910788,-0.18525033,0.22079895,-0.34982687,-0.6055648,-0.14069968,0.14688972,-0.3768922,0.6502996,-0.3142768,0.3253451,-0.04142259,0.3391022,0.32957616,0.25907287,0.06930339,0.063253514,-0.25182492,-0.2409337,-0.018674381,0.37465635,-0.5782726,0.4219125,-0.23826806,-0.4175184,-0.034039076,-0.19361769,-0.26756495,-0.7370645,0.27511603,-0.69879663,0.3705174,0.06011087,-0.29911548,0.28210405,0.22096042,0.21887058,-0.11359766,-0.06868376,0.29481634,-0.35639578,-0.16164355,-0.29879275,-0.10217042,-0.51596946,-0.6170228,-0.07689953,-0.6107328,-0.07542931,-0.37942708,0.3169982,-0.20414338,-0.23343998,0.022347527,0.47504872,-0.5826461,0.09995034,-0.029192882,-0.03219801,0.10608136,-0.7746698,-0.3156779,-0.083432205,0.06580573,-0.233758,-0.19729635,0.49827015,0.19450471,0.27055213,0.08637221,-0.22636978,-0.44448853,-0.1879639,0.31497034,0.30359983,-0.112167746,-0.30341938,-0.11447802,-0.17771132,0.2977962,0.14187036,0.2574656,-0.2548906,-0.049948607,-0.028585505,-0.04453116,0.51789916,0.5298959,-0.15736358,-0.12776023,0.3523182,0.541096,0.28451476,-0.25977728,-0.08943978,-0.077843584,-0.46280453,-0.20399816,0.061066907,-0.2307673,0.43738303,-0.22234458,0.09807921,0.62035865,-0.31610888,-0.07810835,0.3478131,0.13774358,0.08201202,-0.2086811,-0.39820766,0.37700266,-0.5547291,0.20913388,-0.22266912,0.62380713,-0.04628497,-0.6862524,0.22002862,-0.5167317,0.05099032,-0.04808576,0.5424305,0.65006727,0.5615116,0.19379391,0.65773416,-0.2499744,-0.03502263,-0.08613226,-0.08397394,-0.057153497,-0.29407114,-0.09206584,-0.49789917,0.02132097,-0.19020958,0.03336982,-0.017569019,0.7012221,-0.43695176,-0.1599413,0.26191205,0.7501133,-0.3736814,-0.059329048,0.8366663,1.1839906,1.1521696,0.03442837,0.93942237,0.04101607,-0.20564705,-0.21849814,-0.14096712,-0.5939377,0.28687006,0.3010715,-0.048168946,0.23067354,0.09839142,0.1792949,0.3274296,-0.440826,-0.06587182,-0.12352446,0.4471677,0.13867375,-0.07471366,-0.42077655,-0.17224686,0.0771805,-0.0011639356,0.039969124,0.34628236,-0.22127305,0.39122778,0.26131588,1.082678,-0.11643241,-0.0010418018,0.12322856,0.34768158,0.16845815,-0.1457211,0.15971063,0.18672197,0.16218285,0.04488502,-0.48611337,0.114686266,-0.19908835,-0.8321183,-0.2069958,-0.36025164,-0.33101985,-0.14366342,-0.45627585,-0.3038827,-0.014962955,-0.38050738,0.31219217,-2.4355774,-0.034388423,-0.016990393,0.22841379,-0.081804276,-0.30726153,-0.05980174,-0.37123024,0.45776692,0.20812796,0.33682021,-0.5630576,0.417394,0.6118056,-0.6735743,-0.016349716,-0.4925416,-0.3159666,-0.074832,0.44327152,0.15214425,0.0855951,0.12104319,0.17903796,0.54171675,-0.1819704,0.2348998,0.38634166,0.26000646,-0.36056262,0.36149248,0.11781763,0.39723846,-0.37379107,-0.19898921,0.3372255,-0.45722115,0.18437554,-0.2942462,0.18314695,0.5483211,-0.35772425,-0.84287226,-0.63796055,-0.29373905,1.1228722,-0.12917025,-0.54805535,0.21485749,-0.40369284,-0.1710029,-0.08992615,0.43750325,-0.10817536,0.1688511,-0.79182756,-0.041621335,-0.1515601,0.18574938,0.024249554,-0.003345426,-0.49899042,0.83099186,0.013341739,0.55429834,0.2931491,0.18149099,-0.57822776,-0.36352095,0.17091869,0.8365958,0.53917867,0.11040933,-0.32189465,-0.22868973,-0.15300639,-0.05237641,0.18001264,0.542566,0.4733838,-0.06085515,0.19718422,0.32741806,-0.054545633,-0.024749829,-0.2562283,-0.2763103,-0.038993932,0.15652093,0.52636635,0.6312033,-0.06833305,0.3545316,-0.012247867,0.383421,-0.15706758,-0.42763025,0.44920903,1.1590827,-0.08395329,-0.2866181,0.6827376,0.63984853,-0.14648703,0.525966,-0.63288665,-0.4899334,0.39550576,-0.18360798,-0.4201036,0.036269557,-0.49258813,0.14904006,-0.8206959,0.42098823,-0.41791627,-0.6055518,-0.8326304,-0.24549879,-2.1507115,0.12420993,-0.2655476,-0.13425492,-0.26598656,-0.33160347,0.20240158,-0.6814617,-0.5734455,0.1661167,0.117700115,0.684308,-0.13049883,0.08212512,-0.1383795,-0.51040524,-0.12623206,0.3569171,0.11697386,0.32167965,-0.09142505,-0.50736785,0.053235196,-0.1385254,-0.3974511,-0.11452479,-0.44309482,-0.48272476,0.0328095,-0.48822066,-0.17418739,0.53612006,-0.33469242,0.0053141834,-0.2165827,-0.040204022,0.09810493,0.13627084,0.19586952,0.28877696,0.16543382,-0.03373834,0.061361782,-0.23268642,0.2115169,0.08438316,0.16269328,0.43194097,-0.24194965,0.22339122,0.52819467,0.62420595,-0.21132779,1.0438339,0.32349423,-0.17427908,0.2684884,-0.14526865,-0.40916008,-0.795933,-0.25346097,0.040765595,-0.37469977,-0.36129978,0.0354263,-0.3009188,-0.916755,0.61086863,0.08122668,0.27812394,-0.20851234,0.110214934,0.30797827,-0.22128274,-0.25918403,-0.20753017,-0.18817312,-0.417822,-0.5466865,-0.81357676,-0.51792204,-0.23361182,1.155337,-0.15976185,-0.09709411,0.33445215,-0.21558772,0.17556445,0.26550725,-0.04347234,-0.019722959,0.3854394,0.2032699,-0.6820021,0.58335763,0.07127387,0.025283856,-0.43342903,0.2849449,0.6485157,-0.51905113,0.5154149,0.38991496,0.109902315,-0.23624645,-0.64094484,-0.111760065,-0.016140314,-0.18552676,0.61188215,0.3395621,-0.71907365,0.42328006,0.30335748,-0.25728896,-0.71957695,0.6227581,-0.1199652,-0.20241387,-0.15646034,0.4511988,0.20456934,0.03419715,-0.09596373,0.37255877,-0.3731932,0.36203226,0.09708872,-0.09160115,0.26113158,-0.23472793,-0.26983938,-0.83368134,0.1721439,-0.41887042,-0.41956788,0.15012684,-0.060747106,0.010484687,0.39327848,0.1699424,0.38677788,-0.20200314,0.053490084,-0.26375473,-0.37427798,0.28153363,0.5384397,0.64453715,-0.2576165,0.60536736,0.0660855,-0.04172098,-0.0448756,0.121630095,0.39280522,0.050348155,0.486853,0.13749021,-0.05030604,0.10050028,0.90247923,0.33816406,0.44310322,0.044802666,-0.25044337,0.21136396,0.06625026,0.3518532,-0.17504126,-0.5175737,0.1353484,-0.22220026,0.08918308,0.44238764,-0.0025598684,0.36848724,-0.06747982,-0.23871626,0.040537395,0.28126758,0.067111164,-1.4513913,0.36176726,0.28322002,0.871182,0.6814263,0.007239278,0.13349614,0.7079172,-0.2788425,0.012770853,0.40178803,-0.014381996,-0.23251206,0.51878047,-0.7182458,0.3810434,-0.11832716,-0.02516017,-0.03105462,-0.1907359,0.43902925,0.6112978,-0.14614174,-0.06150627,0.09032164,-0.4724956,0.06730988,-0.24714242,0.30096486,-0.4544726,-0.28642857,0.8964587,0.6648811,0.3636142,-0.21211687,0.08933219,0.20213537,-0.21524341,0.24798134,0.0472114,-0.04878814,-0.1647119,-0.4868636,-0.0954872,0.601773,-0.24726054,0.16165991,0.23780721,-0.27725112,0.22335264,0.056925345,-0.08506694,0.07959293,-0.6611661,0.103202924,-0.1924359,-0.42775318,0.44448084,-0.15231654,0.07914587,0.2483388,0.09191673,-0.34547758,0.15281467,0.22851284,0.470442,0.29069492,-0.117985286,-0.112765945,0.02778819,0.07724414,-0.17843238,-0.07110008,-0.09813628,0.2539217,-0.62422466,0.3963186,-0.33001164,-0.27492836,0.110002674,-0.1653166,-0.075482845,0.4753786,0.04265295,-0.15401891,0.0013992072,-0.03007806,-0.18965976,-0.12770624,-0.26176873,0.3561462,0.03494156,-0.13497326,-0.29126447,-0.11097753,0.046540365,0.35570326,-0.07972662,0.36482152,0.29041627,-0.12309071,-0.52613705,-0.10828851,0.16722314,0.423899,-0.13783607,-0.0100233015,-0.049778588,-0.34685168,-0.38822445,0.4166327,-0.22045879,0.24451296,0.24245648,-0.26585186,0.8855133,-0.042435106,1.0373465,0.021319767,-0.47904435,0.18199134,0.4254546,-0.20311347,0.053123962,-0.18609516,0.888753,0.5292862,-0.12998515,-0.17798242,-0.4361821,0.13255304,0.1992569,-0.22607592,-0.1931444,-0.093634844,-0.7089659,-0.16176656,0.2479868,0.2886595,-0.025017397,-0.1981557,-0.13072017,0.3561971,0.165874,0.25045964,-0.61246663,-0.066555835,0.3545681,0.20653267,-0.020739028,0.09544577,-0.45293978,0.3608324,-0.628821,0.10193411,-0.2599172,0.08651734,-0.45888212,-0.24225079,0.2613673,0.043678515,0.2892966,-0.30495986,-0.33320275,-0.34456074,0.33228976,-0.035185926,0.07561218,0.4464992,-0.21043396,0.25710958,0.03251189,0.40875643,0.9112647,-0.3172551,-0.14819835,0.21394612,-0.45695952,-0.5050746,0.21326399,-0.51436913,0.023772478,0.061417803,-0.33208066,-0.56602824,0.13866755,0.253882,0.16966647,0.21531206,-0.76588184,-0.036783043,0.09618094,-0.38301584,-0.15473007,-0.033954754,-0.017965471,0.5422764,-0.2717894,-0.23581526,-0.058477297,0.32381397,-0.21272853,-0.5117774,0.15108699,-0.46871364,0.62097585,-0.112865366,-0.2972116,-0.13062558,0.18779704,-0.36181527,0.076869056,0.34014118,-0.27670112,0.059892796,-0.4460969,0.3334182,0.74475497,-0.1661674,0.2620285,-0.3279751,-0.48690546,-0.9072327,-0.16328256,0.14430949,0.34972423,-0.042940136,-0.74199295,0.07060905,-0.27849618,-0.18647838,0.06351026,-0.5168852,0.36103883,0.23108418,0.2834741,0.031380005,-0.75563306,0.15622021,0.14168283,-0.08929645,-0.3645702,0.5872861,-0.09143041,0.8605821,0.06355955,0.06450602,-0.05005261,-0.59248054,0.23303343,-0.14299701,-0.21241659,-0.49788058,-0.02789078 -978,0.51555395,-0.28385356,-0.50615996,-0.16052166,-0.090637445,-0.20424475,-0.15345901,0.76518816,0.32478857,-0.57692385,-0.14191695,0.05495231,0.0071867923,0.45390692,-0.20624612,-0.7133647,0.05149508,0.20841517,-0.4504554,0.35789463,-0.41579673,0.09332269,-0.13130236,0.56062263,0.34770724,0.06562649,0.09839359,-7.346543e-05,-0.24551186,-0.17565925,0.07557985,0.29648638,-0.5224097,0.1447547,-0.3726443,-0.4234932,-0.122289084,-0.658688,-0.46433118,-0.9559527,0.3960724,-0.73701876,0.64001584,-0.04643009,-0.286847,-0.10006833,0.4029682,0.25989068,-0.24545604,-0.10792455,0.16773094,-0.20110153,-0.21836501,-0.061217383,-0.36632988,-0.36227563,-0.7291083,0.083564766,-0.44229028,0.06317533,-0.12098077,0.24171089,-0.55207926,-0.055173956,-0.09230259,0.8593393,-0.30214024,-0.110987835,0.44023636,-0.273713,0.21937226,-0.77737516,-0.13014412,-0.091775365,0.16071974,-0.0127202,-0.33803943,0.4167739,0.20249623,0.5301149,0.07984144,-0.38271257,-0.41666594,-0.00080322137,-0.038809236,0.5181961,-0.30378515,-0.59070116,-0.17632762,0.044811673,0.34212705,0.33979732,0.07742122,-0.17662336,0.17276514,0.13117144,-0.23087949,0.8423242,0.7077779,-0.18847565,-0.014192984,0.2162815,0.3727585,0.2935804,-0.17632204,0.05641042,0.16862796,-0.6552853,-0.23655137,0.07148609,-0.239192,0.54810804,-0.14546567,0.24607314,0.7537867,-0.29287627,-0.007355888,0.20144968,0.26796493,0.12217125,-0.49743846,-0.49516508,0.3924349,-0.5789592,0.31139967,-0.2677721,0.7985142,0.17864734,-0.4392195,0.28825244,-0.53604925,0.20291534,-0.07168281,0.60262513,0.7629786,0.42906666,0.53848743,0.93232197,-0.4082017,0.02781214,0.03798813,-0.18861237,-0.017573453,-0.30328152,0.22316116,-0.3310037,-0.08720593,-0.10906705,0.017081304,0.13676123,0.36976144,-0.66384685,-0.33055574,0.15739413,1.0414214,-0.16630322,0.002618546,0.9057066,1.1353118,1.3065044,-0.09918747,1.2413585,0.11929097,-0.29044375,0.09366693,0.10149687,-0.7698906,0.34799206,0.24694914,-0.40479985,0.13049413,-0.044012602,-0.13200426,0.6720079,-0.71182615,-0.03994353,-0.12769407,0.24977177,0.17568482,0.0047275317,-0.5957787,-0.1571437,-0.15694569,-0.12515324,0.15816778,0.3196282,-0.31117308,0.49390328,-0.23054184,1.1870328,-0.130103,-0.003463447,0.096366055,0.5636449,0.19778539,-0.16923904,0.05718446,0.04191742,0.5077568,0.05645633,-0.5836446,-0.07647962,-0.4911769,-0.2601613,-0.10773595,-0.45431623,-0.11089563,-0.028040735,-0.371968,-0.39930332,-0.23184747,-0.30858988,0.22394957,-2.5941045,-0.24272646,-0.16180442,0.32934788,-0.34785035,-0.21379705,-0.19024134,-0.6118131,0.65087914,0.17603867,0.67323744,-0.5333601,0.3963853,0.47715986,-0.8280056,-0.05024012,-0.8156298,-0.14749868,-0.007568175,0.31842205,0.16106172,-0.3141025,0.022078648,-0.0426631,0.88449293,0.20030063,0.12604155,0.27812597,0.4644458,-0.3006415,0.50337297,-0.26597282,0.6024458,-0.7383819,-0.2050829,0.2355814,-0.6528211,0.05325693,-0.41379052,0.02993795,0.6405351,-0.5059614,-0.9909918,-0.7051063,-0.02456686,1.2269105,-0.11505943,-0.5974951,0.3272228,-0.5276886,-0.047905054,-0.03106562,0.8031722,0.08550165,-0.07306682,-0.6284994,-0.09198821,-0.15531994,0.044126544,-0.026201867,0.04120382,-0.30961326,0.6876413,-0.1061918,0.253571,0.27047274,0.26390895,-0.52952886,-0.33257055,0.021629186,1.111375,0.43951952,0.26837417,-0.20721349,-0.051411882,-0.42923605,-0.3491372,-0.177005,0.80905515,0.8205246,-0.21631923,0.14678352,0.4570738,0.024943752,0.1241848,-0.09681606,-0.6191923,-0.3471279,0.10243365,0.79644376,0.67586136,-0.0006311102,0.4941413,-0.055025853,0.30705255,-0.31267488,-0.2835306,0.5570477,1.0624156,-0.31562006,-0.2698851,0.86423564,0.36478862,-0.37252054,0.6739078,-0.54209155,-0.5643081,0.53599864,-0.17492619,-0.70659965,-0.018907065,-0.3820363,0.10682416,-0.7121626,0.2575925,-0.4100317,-0.6194225,-0.42176753,-0.34158608,-2.9517066,0.10592062,-0.41289207,0.06510531,-0.32370383,-0.21809453,0.121999905,-0.4743908,-0.77437,0.21118775,0.15508416,0.8290485,-0.26579145,0.17282167,-0.39043933,-0.31937912,-0.30052313,0.110879414,0.31537417,0.32475913,0.12380907,-0.42304116,0.10188972,-0.021869998,-0.5218185,0.01317459,-0.8109024,-0.49396375,-0.1994258,-0.7874424,-0.26816732,0.8776572,-0.26890704,0.049888674,-0.15586047,0.23503913,0.038019966,0.3070439,-0.017261205,0.30264512,0.030374305,-0.22831224,0.17983235,-0.1600035,0.4373193,0.17367233,0.4444191,0.335372,0.054434873,0.2100688,0.7583391,0.8689266,-0.16655152,1.2549329,0.52197576,0.036024086,0.27844608,-0.17583683,-0.5343733,-0.5347545,-0.28755382,0.19364251,-0.53524005,-0.22239326,0.13469046,-0.45160952,-0.94465566,0.7829619,-0.03480817,0.2985533,0.045917474,0.23620997,0.53418833,-0.3189609,0.060382184,0.018187052,0.05868206,-0.4420374,-0.16270219,-0.7056099,-0.53261507,-0.123149395,0.98346883,-0.24270357,-0.09097069,0.10871989,-0.15379487,-0.005758841,0.13526247,-0.0439949,-0.03256876,0.45761302,0.035127167,-0.6555434,0.22960113,-0.2209601,-0.10608551,-0.69523233,0.39245623,0.8595037,-0.7573604,0.8182783,0.39314812,-0.08400757,-0.61603165,-0.67931026,-0.19980635,-0.096944764,0.02670127,0.49021557,0.16860224,-0.8198229,0.49791366,0.47389123,-0.3635607,-0.86257786,0.4013983,-0.20979981,-0.044269346,-0.02288044,0.3369846,0.19926849,-0.08459462,-0.13454936,0.27962184,-0.4656627,0.35236865,-0.005402473,-0.13146758,0.53790224,-0.21482435,-0.20628966,-0.9030474,0.022527196,-0.80757976,-0.2353258,0.49820158,-0.101656824,0.050893947,0.21069899,0.099944904,0.23421821,-0.07465053,0.039182134,-0.22631587,-0.33830345,0.53335565,0.5808826,0.55984396,-0.51057965,0.6907915,0.15424241,-0.18899131,0.102475435,0.06738266,0.4211655,0.015025448,0.7154599,-0.12626588,-0.12342452,0.12698078,0.97264063,-0.01476989,0.4700597,0.09610427,-0.017890371,0.0053779106,0.10043469,0.0752343,0.20878229,-0.8447047,-0.08844226,-0.34531522,0.14525042,0.62392914,0.15220998,0.42851207,0.06585906,-0.3410691,-0.14316644,-0.012324032,-0.18612257,-1.7682036,0.6598578,0.113496326,0.94766116,0.14301148,0.22772108,-0.2463766,0.85997427,0.0930388,0.13176237,0.52380127,-0.05179639,-0.3802704,0.68097866,-0.69806266,0.71336305,-0.13083173,0.14933972,-0.17000084,0.15981865,0.5390386,0.88024217,-0.20833626,0.058835246,0.0033257792,-0.38405865,0.3526325,-0.65231997,0.08240939,-0.46577442,-0.31426027,0.5378044,0.5868551,0.29151657,-0.1607653,-0.011275144,0.23649582,-0.10318342,0.16124378,-0.030732729,-0.23498653,-0.07514818,-0.81320953,-0.006843223,0.50729537,0.054481506,0.3456133,-0.011789262,0.19679956,0.40063456,-0.05047715,0.020342438,-0.14869303,-0.723573,-0.22621289,-0.50147665,-0.71924984,0.3309557,-0.10632215,0.19080104,0.21605574,0.011527217,-0.4371728,0.5237209,-0.092996694,0.8054331,-0.30652186,-0.33963406,-0.4726198,0.1568333,0.13687067,-0.4063076,0.06325981,-0.3809021,0.121645935,-0.42333403,0.4989585,-0.26118794,-0.4980481,0.037463058,-0.15907085,-0.06900229,0.6645909,-0.1918209,0.19795808,0.027601806,-0.44231704,-0.29086348,-0.49735433,-0.109496444,0.24631771,0.1121753,0.15264702,-0.1985579,-0.33700818,-0.2568355,0.43297416,-0.09773534,0.1923222,0.6032681,0.25440022,-0.22458762,-0.101925105,0.1703438,0.98103654,0.1254827,-0.24670133,-0.5390611,-0.38168314,-0.41691783,0.20245433,-0.050435122,0.45309752,0.12542032,-0.23478328,0.7557202,0.09163539,1.2267141,0.116967134,-0.3067014,-0.03454787,0.5752068,-0.036428437,-0.010868024,-0.50968146,1.0009451,0.42478874,-0.1998745,0.0062246206,-0.7305052,0.15100151,0.2829301,-0.23304228,-0.4634491,-0.021975571,-0.56848395,-0.2817975,0.48121837,0.3829037,0.2706558,-0.21135662,0.14862747,0.35420564,0.17673796,0.47291192,-0.6891046,-0.0056893,0.45279217,0.39663896,-0.061831877,0.17341818,-0.44107673,0.32952073,-0.5029608,0.16172034,-0.31602478,0.21326314,-0.27377084,-0.40730035,0.37729314,-0.0680907,0.57664603,-0.32753047,-0.31532538,-0.071491696,0.37816074,0.2585286,0.11980154,0.68877155,-0.2599449,-0.2223247,0.2150499,0.89048785,1.1827542,-0.26017192,0.09554016,0.2582634,-0.3243762,-0.78159505,0.42038143,-0.37834823,-0.019037947,0.032265242,-0.31746694,-0.6002662,0.19283889,0.06837153,-0.18995437,0.2113831,-0.6189175,-0.35387653,0.114183575,-0.17376214,-0.249043,-0.36137164,0.15505038,0.4761342,-0.20058197,-0.42551842,0.036652118,0.46438703,-0.01841212,-0.69834954,0.038756393,-0.46090487,0.20533128,-0.0112151345,-0.36209872,-0.011358217,-0.20424318,-0.7101774,0.20476769,-0.08810587,-0.3889944,-0.0060669915,-0.099491924,-0.07160408,0.75270593,-0.18935555,0.3521581,-0.4007239,-0.44747475,-0.9671371,-0.19732744,0.22878402,0.20835337,-0.116160415,-0.8048439,-0.24716407,-0.17480065,-0.101459816,-0.04016829,-0.4148245,0.45525905,0.10406778,0.5731588,-0.20630623,-0.73792547,0.1980358,0.19116296,-0.14232942,-0.51834816,0.38356832,0.1273378,1.0462201,0.086291075,0.051226508,0.17823206,-0.3763335,-0.118346326,-0.2498892,-0.46271762,-0.61246526,0.020687722 -979,0.3693706,-0.06257349,-0.35587645,-0.49281254,-0.2595562,0.05216668,-0.11744433,0.31654608,0.12815405,-0.35014978,-0.15572886,-0.12361895,0.03787744,0.6621446,-0.19342543,-0.88477606,-0.124255925,0.0037866507,-0.57959163,0.43208233,-0.64093095,0.31020793,0.16980255,0.39735484,0.023839653,0.21319415,0.41374683,-0.17756201,0.12356016,-0.1654459,-0.39773396,0.18091206,-0.62786186,0.2781035,0.22890599,-0.24305795,0.11292308,-0.41841197,-0.13224262,-0.72631764,0.31294617,-0.7598106,0.29574764,-0.10451526,-0.28676486,0.18212478,-0.13073398,0.37248436,-0.46631578,0.0611069,0.24623907,-0.39165652,-0.031132191,-0.18568571,-0.07147839,-0.58020437,-0.55536795,0.12672693,-0.5314474,-0.31593227,-0.26166153,0.12946443,-0.41965792,-0.037551742,-0.24246182,0.46005008,-0.39873013,-0.17592634,0.32003427,-0.16515155,0.18963355,-0.51004297,-0.18534255,-0.116809905,0.28850064,0.033531684,-0.18498166,0.27393582,0.52597713,0.4055889,0.18044287,-0.27336463,0.031408496,-0.29152545,0.3305634,0.4694353,0.022256598,-0.5775959,-0.21900566,-0.05928427,-0.039951336,0.21080263,0.063759856,-0.3892081,0.07675294,0.24534778,-0.42901587,0.34212014,0.40571904,-0.38985956,-0.12625961,0.29012445,0.4162618,0.060793355,-0.14940862,0.05269556,0.05133691,-0.5712576,-0.27685785,0.41198286,-0.25727528,0.55031174,-0.36232352,0.12977476,0.82381344,-0.18079008,0.09953252,-0.3680083,-0.077830456,-0.2762839,-0.22152118,-0.37078607,0.35855827,-0.54072326,0.123690926,-0.45775554,1.1040671,0.19471805,-0.7106984,0.40094185,-0.53171027,0.15746093,-0.26189163,0.6855316,0.79501754,0.33180276,0.23359685,0.9157627,-0.64537996,0.08259984,0.04100202,-0.4260459,0.10696883,-0.23465993,0.2262464,-0.37330154,0.026827574,-0.019973105,0.23649256,-0.07209081,0.17519283,-0.3860936,-0.073232,0.025034776,0.7009035,-0.42032337,0.02611778,0.8037526,0.94496155,1.0724903,0.22079206,1.3680487,0.472744,-0.34918392,0.09431585,-0.117610365,-0.53662235,0.21335685,0.52126014,0.3884622,0.07333511,-0.08176025,0.27023497,0.47040406,-0.4498876,0.21965063,-0.19048935,0.3878714,0.08052857,-0.12901758,-0.5198744,-0.3448279,0.15851356,-0.1082936,-0.02964291,0.31116042,-0.01809675,0.49848685,0.060378093,1.0836693,0.15076356,0.15778059,-0.14008667,0.38070086,0.23901677,-0.021390602,0.16411312,0.28984675,0.5640983,-0.08923897,-0.7954299,-0.036197826,-0.3011383,-0.46662378,-0.2526436,-0.47288594,0.11440454,-0.0014480948,-0.42908657,-0.03946212,0.18664436,-0.20727734,0.4687896,-2.1076899,-0.20115243,-0.28712875,0.24924964,-0.2445265,-0.31825063,-0.050869346,-0.5196232,0.48808572,0.40764856,0.43263844,-0.69157314,0.2299176,0.29147446,-0.25168815,-0.004485627,-0.80653024,-0.12245115,-0.23074812,0.23851609,0.056333918,-0.09110085,-0.26376763,0.18055458,0.7154034,-0.056634936,-0.08074033,0.0991661,0.3048519,0.120886065,0.64329696,0.11651436,0.67954606,-0.2595998,-0.026342267,0.2765253,-0.45316815,0.31757528,0.07200111,0.21334054,0.36048284,-0.53768635,-0.8131542,-0.8057355,-0.67958814,1.2480433,-0.52575725,-0.34033343,0.21979511,0.113185614,-0.17499042,-0.030167723,0.4252108,-0.2569411,-0.11864883,-0.64404887,0.11244232,0.122372955,0.17407028,-0.022115225,0.2141021,-0.2045603,0.693897,-0.14037289,0.38273856,0.3734363,0.06585806,-0.14984836,-0.4491047,-0.07176896,0.9671798,0.5018946,0.084712245,-0.19303496,-0.21625233,-0.26236007,-0.18364972,0.11721012,0.5274294,0.9887044,0.06461519,0.03816435,0.32711324,-0.20641907,0.014584847,-0.0017270545,-0.4612534,0.064171195,0.011893491,0.72004384,0.38021708,-0.12363657,0.4397935,-0.21082382,0.27800342,-0.20124392,-0.50502175,0.6727235,1.254471,-0.14448003,-0.14212865,0.46480095,0.5235962,-0.41216585,0.3402861,-0.5032975,-0.26767957,0.853045,-0.043270092,-0.4563187,-0.11259192,-0.38083684,0.07122407,-1.0335373,0.21262097,-0.173256,-0.5139566,-0.7136533,-0.16101485,-4.3315253,0.14670123,-0.1372179,0.05997016,-0.22577743,-0.16324367,0.40483233,-0.63532037,-0.56321996,0.15638362,-0.027584093,0.6217995,0.0076667047,0.16772993,-0.39336362,-0.06891144,-0.29664403,0.04595515,0.0035771083,0.23865019,0.11808411,-0.23064196,0.20933537,-0.39589903,-0.58968705,0.14012708,-0.5666054,-0.66737074,-0.31320795,-0.44887754,-0.44834304,0.8146799,-0.47207883,0.030182205,-0.04509385,-0.028863907,-0.26283613,0.41601384,0.25017253,0.3041719,0.0819208,-0.06654944,-0.28908744,-0.50067776,0.08489778,0.13092011,0.24583851,0.20685047,-0.020286635,0.0876036,0.6091654,0.7132134,0.05201286,0.689826,0.25527063,-0.052247822,0.3103321,-0.405701,-0.18842788,-0.72892666,-0.52353317,-0.1988377,-0.37576702,-0.6672411,-0.17288078,-0.29964763,-0.73356277,0.29257777,0.06564551,0.04780527,0.024774998,0.251426,0.3641158,-0.055594254,0.052939147,-0.13633983,-0.04741318,-0.72018456,-0.34966847,-0.7947286,-0.5714228,0.15314947,1.0153346,0.011109282,-0.29060653,-0.20446032,-0.3917717,0.06530633,0.08357644,0.21599911,0.29166603,0.2521912,-0.051724676,-0.9206815,0.4868957,0.01762561,-0.18595499,-0.7621359,0.018685153,0.91453266,-0.7685962,0.5064888,0.4699835,0.11461994,0.11099254,-0.29723266,-0.48846254,0.24402218,-0.30446067,0.47048533,0.0044625006,-0.4852241,0.5772005,0.22632565,0.046266943,-0.68501765,0.4211795,-0.08020918,-0.16714312,0.116407774,0.44577357,0.11081353,0.08368064,-0.15278643,0.120710194,-0.69502133,0.10918319,0.5054107,0.2804952,0.42373106,-0.12811,-0.2519286,-0.6123841,-0.18120317,-0.75669986,-0.21477573,-0.055252638,-0.0011158685,0.055987105,0.08726233,-0.03200775,0.31925896,-0.23630409,0.18989675,0.018968506,-0.19192655,0.39036253,0.5336079,0.069816135,-0.42356753,0.6944614,0.119817264,0.18515669,-0.31559947,0.06902581,0.3979636,0.48969188,0.35517988,-0.17951714,-0.18247981,0.24405164,0.8036692,0.21073417,0.48574257,0.24727298,-0.066235185,0.49286464,0.19981885,0.2176944,0.17279856,-0.23968518,-0.10437408,0.06950788,0.056979638,0.51940805,0.04859918,0.344206,0.034731776,-0.076964885,0.19907252,0.09551867,-0.19810408,-1.1463534,0.60318714,0.31892508,0.5448467,0.4897724,-0.13793813,-0.035206497,0.5360391,-0.48578277,0.15314461,0.3329554,0.058748018,-0.5938458,0.7953174,-0.7728491,0.38347208,-0.29884014,0.10524311,-0.085405715,0.30415925,0.46527204,0.78764075,-0.16487382,0.0886616,-0.058984492,-0.2933754,0.3439751,-0.51258487,-0.08256615,-0.44700134,-0.3537613,0.48269236,0.22946115,0.36622727,-0.33280802,-0.13621946,0.13301022,-0.1104849,0.110373974,-0.20213933,-0.09474146,0.011987816,-0.68685055,-0.5552362,0.52521914,0.07848612,0.2660551,0.20837076,-0.30051208,0.3707873,-0.22129874,-0.035413105,0.047682256,-0.73309284,-0.043955475,-0.25147954,-0.57183224,0.31941214,-0.7426374,0.32154247,0.2542827,0.10745665,-0.21485217,-0.041835517,0.19401099,0.683388,-0.062294897,-0.367308,-0.37038198,0.08332927,0.1488166,-0.4266053,-0.0082621975,-0.4159402,-0.06846928,-0.44594678,0.37182614,-0.13599204,-0.14762259,0.041685566,-0.18280281,-0.16875325,0.4985496,-0.48631087,-0.028018156,0.037024003,-0.17604357,-0.10793463,-0.044605237,-0.40901992,0.31493834,-0.011026382,0.19940753,-0.013211712,-0.12252257,-0.14172909,0.47635487,0.11992223,0.22307329,0.17855026,-0.16919585,-0.17797743,-0.25742918,-0.033884715,0.2104816,0.20807417,-0.27084172,-0.15083036,-0.26054308,-0.1689415,0.2238309,-0.15640683,0.2879364,-0.020923099,-0.5170056,0.631858,-0.026967352,1.2556719,0.14425825,-0.5337597,-0.034352448,0.5751565,0.07082124,0.06991657,-0.16313398,0.7143248,0.4748629,-0.08057943,-0.2790973,-0.6544583,-0.1345097,0.49927855,-0.22466648,-0.22839038,-0.0037079006,-0.6483371,-0.40068159,0.22345139,0.29081354,0.026424,0.154931,-0.15312217,0.0052030385,0.2248304,0.679075,-0.53213394,0.06727226,0.335286,0.13239715,0.121088974,0.25292626,-0.19658673,0.40637705,-0.76991314,0.29626927,-0.52268684,0.06448105,-0.047984023,-0.1493994,0.31521276,0.10601035,0.36865988,-0.22457777,-0.4088156,-0.11133338,0.7816927,0.38927016,0.38528696,0.75031835,-0.27765277,0.011937131,0.19563401,0.533436,1.4172145,-0.104383,0.20493329,0.25080314,-0.5206394,-0.5788517,0.2903164,-0.2164495,0.05860545,-0.06584505,-0.44873464,-0.51517123,0.16572735,0.16906284,-0.087436736,0.3212072,-0.3783807,-0.42197958,0.6439206,-0.43392506,-0.41387346,-0.35368967,0.4013606,0.5809057,-0.41343093,-0.39456752,-0.10686507,0.30764413,-0.28216723,-0.42046857,-0.09259498,-0.2877958,0.48570684,0.13923855,-0.35285327,0.22695772,0.3138224,-0.48105133,0.27863258,0.23048455,-0.451956,0.064384766,0.033717398,-0.09221101,0.93353707,-0.117694505,-0.015942072,-0.8813703,-0.58717984,-0.76767725,-0.3706956,0.8154997,0.090438746,0.035639744,-0.48901424,-0.05794166,-0.0046730936,0.036008466,0.05774704,-0.51001215,0.286805,0.25383958,0.4881992,0.1862271,-0.6674226,-0.07677418,0.0004845485,-0.026780069,-0.51145935,0.47327495,-0.30177394,0.58380884,0.004461779,0.097820014,0.00863117,-0.44710532,0.29070818,-0.34853688,-0.2265495,-0.74920946,0.24240823 -980,0.6353742,-0.36174712,-0.4481683,-0.16449608,-0.22282885,0.14298008,-0.1060357,0.65150666,0.28518882,-0.42917067,-0.07591847,-0.109771565,0.027858881,0.13873447,-0.09110636,-0.4308337,-0.13636343,-0.046538472,-0.48625645,0.50315213,-0.3696631,0.13299425,-0.22248635,0.37826735,0.37905425,0.29804727,-0.06336038,0.13841937,-0.08943459,-0.12539056,0.008022038,0.24313578,-0.42484474,0.14174801,-0.11709606,-0.28093678,-0.06706479,-0.46994466,-0.47249037,-0.7562813,0.35778812,-0.8325623,0.48387134,-0.0625509,-0.24055916,0.4423693,0.09770764,0.15313068,-0.105393596,-0.14379969,0.20861766,-0.044068728,0.07893722,-0.29761562,-0.19722942,-0.48674664,-0.5021628,-0.14323963,-0.359594,-0.39927483,-0.21145919,0.109260395,-0.35477012,-0.14818856,-0.10517326,0.79614836,-0.44432017,0.1490154,0.20070824,-0.17374884,0.2912432,-0.8095795,-0.24787156,-0.019994358,0.08435109,-0.08577918,-0.12670392,0.24012643,0.2677925,0.21066977,-0.13043216,-0.12979545,-0.3895122,-0.019067105,0.013393129,0.3506355,-0.18785708,-0.4757128,-0.048574008,-0.033522274,0.06758257,0.2522864,0.3882403,-0.19740163,-0.037069224,0.23488416,-0.37078422,0.4887945,0.4779533,-0.27429736,-0.1215548,0.32134193,0.5051932,0.22808653,-0.28956145,-0.2547701,0.0014391404,-0.42180347,-0.1283117,0.094918445,-0.25965458,0.447243,-0.1802624,0.3770261,0.6434367,-0.18572086,0.112635784,0.09483512,0.25042757,-0.09307603,-0.49256065,-0.24313109,0.17631736,-0.44852352,0.22658275,-0.22951628,0.6711145,0.10053134,-0.39350477,0.25045636,-0.51030606,0.07641978,-0.15348527,0.31765762,0.6263946,0.41870227,0.18298875,0.68147236,-0.4016393,-0.0069310847,-0.06932665,-0.20548485,0.08887572,-0.19516732,0.24549752,-0.53360224,-0.13844746,-0.035054795,-0.050527044,0.08356201,0.41024357,-0.45367447,-0.20300652,0.24339716,0.9182631,-0.20218897,-0.06488331,0.69200003,1.1773597,0.9027803,0.07268965,1.0614108,0.1973323,-0.25199828,0.32923552,-0.17118604,-0.5345704,0.3847346,0.4327729,0.017381366,0.20254923,0.026128251,-0.19819817,0.54421973,-0.17734027,0.03735015,-0.060821638,0.12288873,0.31775922,-0.11795959,-0.23584516,-0.22657299,-0.027828097,0.07831519,0.04216755,0.10911668,-0.25066856,0.23539758,-0.037096914,1.5553216,-0.13185081,-0.039829347,0.14272374,0.4723287,0.24108218,-0.21407071,0.17755127,0.36483458,0.33305183,0.29839185,-0.6140246,0.35852733,-0.26526105,-0.52177423,-0.045367327,-0.36124358,-0.08818182,0.018690888,-0.54884005,-0.12388298,-0.19153255,-0.15078512,0.323531,-2.8961425,-0.088882245,-0.1339915,0.3632537,-0.23725174,-0.42591974,0.13708702,-0.3952666,0.3644991,0.40079483,0.4697006,-0.6169369,0.3892977,0.5224834,-0.75621575,-0.026628705,-0.5316929,-0.09043404,-0.09218221,0.26306814,-0.039007597,-0.04562092,0.10615866,0.13560173,0.5052002,-0.01784033,0.17831914,0.37935835,0.4513706,-0.41211727,0.59100163,-0.0966645,0.40819308,-0.33882353,-0.18858227,0.3485796,-0.39920124,0.053922094,-0.14277488,0.18865323,0.54549414,-0.23912045,-0.8921111,-0.6461264,-0.09879257,1.1373564,-0.17580152,-0.61354923,0.22117552,-0.4702587,-0.335103,-0.07215531,0.56830734,0.038477167,-0.09847395,-0.69249654,0.18899938,-0.15658906,0.051368073,-0.025672125,-0.15301666,-0.48255917,0.84570634,0.05177273,0.5714926,0.23801063,0.18563487,-0.40881282,-0.27808526,0.031586643,0.6794589,0.43292242,0.10149189,-0.23214258,-0.003385679,-0.28341132,-0.023301344,0.19639246,0.63064057,0.48436955,-0.018207682,0.17819907,0.3036564,-0.08033248,-0.028748991,-0.1504821,-0.3082046,-0.15724656,-0.066613965,0.41438338,0.5783673,-0.024627833,0.3798083,-0.05910233,0.2684471,-0.22464368,-0.48976594,0.46101123,1.0536649,-0.20803311,-0.46342438,0.4163033,0.3861697,-0.26095942,0.3418737,-0.5307866,-0.19587396,0.4904849,-0.24356055,-0.45615909,0.14459656,-0.33270007,-0.08080807,-0.73336816,0.13211754,-0.4592426,-0.5425166,-0.51952463,-0.30473694,-3.644644,0.25814137,-0.37371212,-0.2404468,-0.27839202,-0.20539095,0.26150805,-0.71112293,-0.46563196,0.23816094,0.0618221,0.72990096,0.019671623,0.058697045,-0.31294104,-0.33958668,-0.24727413,0.24542609,-0.0038898725,0.28795928,-0.034218337,-0.40781006,-0.08329594,0.11696855,-0.49328217,0.033371612,-0.5858965,-0.42255467,-0.15624347,-0.52271533,-0.36702678,0.62077993,-0.17020765,0.08650426,-0.0926222,0.015464809,-0.14688821,0.36696097,0.07490868,0.18636332,0.06868817,-0.15114398,0.15183939,-0.34566095,0.22272435,0.031507578,0.3587348,0.30258977,-0.04028016,0.20517829,0.39358288,0.5482546,0.014577215,0.8952113,0.30074623,-0.09615235,0.38970155,-0.2011852,-0.23237848,-0.55671716,-0.27811533,0.10811683,-0.27219284,-0.3550685,0.0033058112,-0.367342,-0.6113691,0.42421335,0.025091382,0.32357562,0.18518387,0.37545064,0.6920691,-0.23571728,-0.113580815,0.09405189,-0.08419517,-0.52423275,-0.2853371,-0.5745503,-0.5436113,0.18129888,0.62258536,-0.1408456,-0.039279956,0.037111487,-0.19143285,0.068524085,0.1897339,-0.05733865,0.011339582,0.5164926,-0.15257862,-0.56134915,0.37547064,-0.17715663,-0.2189683,-0.53927445,0.39828587,0.58267534,-0.4435101,0.67181784,0.3482245,0.18067744,-0.3962091,-0.40528506,-0.052513056,0.042169742,-0.24729618,0.3967859,0.34873402,-0.98815596,0.27343187,0.3852604,-0.22232796,-0.6937386,0.6714433,-0.05326218,-0.3599502,-0.29633203,0.29856667,0.29434654,-0.017765332,-0.10423013,0.17681037,-0.47093248,0.120103784,0.06801797,-0.0045612226,0.26000267,-0.0025655557,0.0013299172,-0.5804345,0.11399077,-0.32158148,-0.39362603,0.38722187,-0.12404374,0.25276154,0.38482884,0.119761154,0.23933564,-0.12562543,0.12252894,-0.13225985,-0.29139507,0.3258171,0.37884748,0.44443014,-0.44919884,0.49607503,0.011357011,0.016556323,0.28553194,0.19469929,0.35137302,0.2831851,0.4998694,-0.017101673,-0.18537515,0.26154515,0.72203666,0.19726372,0.53317463,0.06519997,-0.13914293,0.107536405,0.020099644,0.15852721,-0.104111895,-0.6180354,0.11343474,-0.18023697,0.19462943,0.42012623,-0.043324288,0.22198258,-0.11690069,-0.3570186,0.0036215198,0.31683654,-0.05488173,-1.1891829,0.42267308,0.25310144,1.1014688,0.30704892,0.010191711,-0.24332994,0.73098874,0.12651482,0.077332824,0.3215063,0.15300551,-0.40582436,0.55546486,-0.7763306,0.3619823,0.03378332,-0.08443473,-0.14708169,-0.0906715,0.30537236,0.6835813,-0.2618221,-0.11868476,0.040838186,-0.50621486,0.33727977,-0.4050565,0.052252114,-0.5149068,-0.26131013,0.5047006,0.5655316,0.3693902,-0.20612107,0.015067222,0.008439536,-0.16837542,0.18118387,0.10091637,-0.015474117,0.06082581,-0.7503075,-0.26714805,0.2914593,-0.018124692,0.3172705,-0.11120571,-0.17673017,0.21697578,-0.085440286,-0.0712088,0.09784278,-0.6110085,0.08006174,-0.3336282,-0.56045747,0.48037514,-0.027695766,0.13917218,0.20126472,0.061088122,-0.17711264,0.3973511,0.056309912,0.8128301,-0.030137558,-0.087009154,-0.50156176,0.0023167317,0.05182167,-0.18351208,0.008654629,-0.27757293,0.14278021,-0.5592914,0.41881165,-0.0069193197,-0.33106253,0.09932284,-0.17648758,0.19304325,0.5643815,-0.23091157,-0.17274936,-0.183712,-0.083619066,-0.19914661,-0.38210014,-0.049574573,0.30022824,-0.062414028,0.1831292,-0.18465842,-0.16084382,-0.048376955,0.39893293,0.013310533,0.40087494,0.43173346,0.07065873,-0.13536304,-0.16098578,0.25681382,0.53771436,-0.056502484,-0.22863773,-0.3193951,-0.67957973,-0.40112412,0.19711448,0.09610688,0.49633953,0.040791743,-0.2416808,0.7791217,-0.21791855,1.0642705,-0.1198283,-0.39473873,0.086213745,0.49175692,-0.03936179,-0.0946804,-0.3145526,0.84015816,0.5346781,-0.015465517,-0.03169882,-0.24519965,-0.051933706,0.19522038,-0.19021851,0.037059896,-0.14797658,-0.7104077,-0.24328658,0.1179221,0.29072422,0.18334085,-0.07243866,0.13548651,0.39085463,0.016646005,0.3064717,-0.50489384,-0.23616996,0.19609584,0.21903451,-0.13071679,0.23043552,-0.50239295,0.3469192,-0.57256395,0.17450362,-0.33674127,0.17864285,-0.16868693,-0.18778585,0.24709791,-0.0656722,0.39229056,-0.24985217,-0.3654682,-0.22501773,0.37341765,0.18268713,0.09276439,0.5249306,-0.13619058,0.018483533,0.07788401,0.6872091,0.9920811,-0.04770346,-0.0077545503,0.22064263,-0.5608198,-0.6917867,0.32273644,-0.20380059,0.26670808,0.13534158,0.028864415,-0.45014817,0.23862165,0.21250135,0.066355094,-0.024783991,-0.6805718,-0.26865494,0.2881601,-0.41094986,-0.12219005,-0.23546861,0.09014322,0.3822553,-0.24954346,-0.13410114,0.0036681523,0.49056214,-0.032861657,-0.29197142,0.024417754,-0.5010437,0.3469399,0.014433161,-0.3068949,-0.2077695,-0.0898305,-0.48823473,0.29198915,-0.07550426,-0.3247475,-0.0024979848,-0.1728487,-0.094880566,0.7466061,-0.09793584,0.067000434,-0.5576262,-0.49558628,-0.6117688,-0.38713947,0.082920626,0.005325079,-0.006300032,-0.63719976,0.04155533,-0.20620361,-0.04435784,-0.21887805,-0.36135367,0.43912983,0.097451694,0.55934197,-0.084594406,-0.73592705,0.1725323,0.17457914,-0.08790602,-0.6078316,0.5249709,-0.19771081,0.7356832,-0.0929546,0.21520832,0.13830255,-0.33267385,-0.062230572,-0.26786518,-0.33037615,-0.6599087,0.038686972 -981,0.46535596,-0.12843364,-0.36825734,-0.058634065,-0.18821764,0.21602109,-0.0980313,0.47524428,0.14915827,-0.42198497,-0.17176163,-0.31471485,0.024635242,0.27504617,-0.14662921,-0.48618782,-0.037155513,0.13290915,-0.52527845,0.38227695,-0.5387503,0.36989063,-0.038180076,0.4011774,0.098126896,0.2048592,0.04443828,-0.17417923,-0.14043672,-0.109332025,-0.12296387,0.35961476,-0.4624965,0.06934184,-0.18429229,-0.36140004,-0.0019754842,-0.49689013,-0.31029332,-0.5919192,0.26702508,-0.7137115,0.38834125,0.05171172,-0.24369158,0.3957706,-0.08574559,0.18151855,-0.17793316,0.048621655,0.18975136,-0.04873196,0.036372125,-0.13404319,-0.17075348,-0.26918098,-0.5035406,0.1813498,-0.4084496,-0.22239777,-0.16659328,0.17119852,-0.17552137,-0.033261325,-0.055014268,0.36470369,-0.4244822,0.08609224,0.12546831,-0.052345075,0.25150493,-0.44805858,-0.19325784,-0.07204568,0.28119057,-0.2742911,-0.09542726,0.14027332,0.28387195,0.5399127,-0.08464044,-0.018212542,-0.33691877,0.03875722,0.017569043,0.6073943,-0.2036607,-0.4992825,-0.1729944,-0.10743672,0.026926778,0.19271159,0.12967494,-0.28370094,-0.21124965,-0.0209538,-0.23011412,0.24569725,0.43947488,-0.38175035,-0.26370177,0.37458387,0.5009997,0.19965458,-0.010650227,0.013593819,0.012750456,-0.5109745,-0.10795961,-0.017670564,-0.15998434,0.532383,-0.030506724,0.3032903,0.6071396,-0.06267306,0.09591143,-0.05342307,-0.023660466,-0.056717083,-0.232658,-0.06258462,0.16677965,-0.28108,0.13310613,-0.093029365,0.82549036,0.0929416,-0.8120718,0.38462242,-0.5416728,0.07827151,0.006527112,0.5214353,0.62463635,0.28003818,0.28692517,0.55659723,-0.49441856,0.06843373,-0.12872574,-0.26601675,-0.10786661,-0.051787615,-0.08621923,-0.45085698,0.12293563,0.09277597,-0.06598161,0.079887606,0.37875262,-0.57448953,0.02536951,0.12883475,0.6986498,-0.38017693,-0.08677244,0.66278815,1.0076728,0.8504966,0.06335537,1.1320279,0.3184463,-0.32966444,0.29493105,-0.38204852,-0.7122218,0.23090163,0.34373936,0.06883356,0.28131735,0.1521129,-0.057083774,0.41992453,-0.34836027,-0.018092906,-0.1349168,0.05970044,0.0795984,0.038761333,-0.34285045,-0.29322895,-0.03983274,-0.011524631,0.13744621,0.18566051,-0.21494913,0.23338558,0.07707841,1.8668416,-0.078900665,0.15597177,0.06161301,0.37914363,0.10921867,-0.15273057,-0.13028328,0.44000253,0.28933805,-0.058527283,-0.58420515,0.047163326,-0.10272128,-0.5603635,-0.1302631,-0.2535048,-0.14901923,0.045514762,-0.47789097,-0.1491437,-0.19547294,-0.24741474,0.51184255,-2.8523371,-0.10697953,-0.10571495,0.30546468,-0.32376155,-0.3713365,-0.178058,-0.38824174,0.31756184,0.39452118,0.34715885,-0.6485988,0.31167203,0.2858342,-0.381077,-0.1543695,-0.54650813,-0.067857444,0.04741963,0.24559945,-0.07650566,-0.042369492,-0.04546075,0.025198907,0.38187853,-0.07980175,0.14616886,0.2673834,0.44265613,0.19039683,0.33491224,0.05452903,0.5113318,-0.18609197,-0.16393866,0.35889333,-0.34294164,0.2827426,-0.09428195,0.15459818,0.28575352,-0.5065819,-0.738785,-0.58045816,-0.37246948,1.1838044,-0.2570645,-0.34542626,0.26451916,-0.062134877,-0.08323218,-0.047162466,0.43383315,-0.11163111,-0.18519656,-0.8398678,0.104125306,-0.04345583,0.2129226,-0.008927185,0.033289626,-0.39732957,0.6045128,-0.12156424,0.44373876,0.35131878,0.16559425,-0.17641899,-0.36237356,0.008630259,0.8892689,0.3135147,0.18288587,-0.19129916,-0.2655133,-0.32976547,-0.049508855,0.06916892,0.38341802,0.6427894,0.098105654,0.18356626,0.2580824,0.08779086,0.0912839,-0.16292214,-0.15802911,-0.02828518,-0.10228371,0.5984934,0.5419074,-0.24040678,0.38781458,-0.13754043,0.21483341,-0.22306193,-0.32735643,0.39335087,0.7782698,-0.14270698,-0.1643461,0.5699061,0.5449201,-0.24318282,0.27171722,-0.55881435,-0.2778639,0.5954732,-0.23337531,-0.46299222,0.22926775,-0.2693812,0.08540631,-0.9127517,0.31346697,-0.10311661,-0.3303001,-0.5385643,-0.11364018,-3.2962446,0.19006242,-0.19630606,-0.20948653,-0.012895971,-0.10097217,0.14871907,-0.56776226,-0.49105218,0.10780568,-0.0325325,0.48314825,0.016221356,0.28105494,-0.23688689,-0.16565007,-0.23869711,0.08505279,0.08782674,0.358051,-0.031613115,-0.35697806,-0.030189462,-0.17691204,-0.2696287,0.040806115,-0.52065194,-0.46292913,-0.05764519,-0.5375001,-0.28924263,0.5221035,-0.44047695,-0.027990822,-0.24693069,-0.08674425,-0.23016022,0.35343817,0.14121963,0.14418828,0.06593452,-0.09891433,-0.07544531,-0.28322014,0.30584773,0.06909118,0.067562215,0.47184628,-0.10971542,0.1523731,0.35279363,0.57128006,-0.13756165,0.7230378,0.45794252,-0.05830715,0.32256165,-0.32390183,-0.065256454,-0.56796956,-0.30289704,-0.10145499,-0.38916215,-0.5095582,-0.17271854,-0.3411914,-0.7026284,0.4222283,-0.030999802,0.20548898,0.004051313,0.17909828,0.527047,-0.15665242,-0.10067327,-0.07582857,-0.020188924,-0.463862,-0.38408947,-0.6152394,-0.42047957,0.2042197,0.944489,-0.045300275,-0.034811337,0.07762292,-0.16149661,-0.05191135,0.06276648,0.0852727,0.13678294,0.37290022,-0.12557922,-0.60526156,0.5489218,-0.0740906,-0.29959577,-0.5141155,0.07512837,0.4985331,-0.5563702,0.539384,0.33786878,0.23622131,0.18538012,-0.5145922,-0.15349135,-0.015924647,-0.27500477,0.32030773,0.18842417,-0.70209646,0.44862372,0.4015773,-0.16347931,-0.84675795,0.3959408,-0.028044777,-0.34442997,0.06644911,0.32031137,0.1791012,0.012709511,-0.17613474,0.16722704,-0.53623736,0.31555632,0.27050593,-0.04505923,0.3717513,-0.23381832,-0.05739575,-0.63259053,0.021843772,-0.4980091,-0.29441363,0.138081,0.035390213,0.11126596,0.18445265,0.07935582,0.38683683,-0.38151994,0.10589954,0.0010680575,0.0003818227,0.03230141,0.43097705,0.45033717,-0.426878,0.5366324,0.004760919,-0.0071222186,-0.13612792,0.09295746,0.4923249,0.010558389,0.23758036,-0.06589796,-0.3204953,0.3817162,0.69338703,0.22463092,0.39929166,0.020856928,-0.23351121,0.29815036,0.06105004,0.12961344,-0.020841599,-0.4911482,-0.091862716,-0.024255872,0.20991297,0.4299165,0.1812048,0.39394352,-0.11249772,-0.2724148,0.0886872,0.2880641,-0.13467391,-0.9156875,0.26052612,0.11003068,0.84039676,0.558227,0.0015235133,0.1563718,0.4161672,-0.23284343,0.13856511,0.27959856,-0.049605604,-0.5892929,0.55386716,-0.540836,0.36476088,-0.23576495,-0.019347817,0.07600516,-0.07635725,0.38693142,0.7160222,-0.09874706,0.052810945,0.05147071,-0.23561706,0.007862149,-0.361203,0.10160847,-0.5855957,-0.10165672,0.6193265,0.48286933,0.2741345,-0.2341469,0.03649459,0.06283032,-0.09187311,-0.033155862,0.12738362,0.098395616,0.041814998,-0.6360512,-0.29029375,0.6069035,-0.055193253,0.14118972,0.038851157,-0.39750493,0.24092767,-0.22072731,-0.12134373,0.04392697,-0.5626604,-0.039342754,-0.32640362,-0.45420158,0.29499212,0.012144739,0.23796074,0.15539196,0.042044334,-0.35076132,0.29020625,0.14146967,0.7580557,0.03034481,-0.15078902,-0.4507854,0.19827372,0.32394314,-0.13733001,-0.260783,-0.2014049,-0.059219547,-0.5073395,0.44148934,0.054865416,-0.2229971,0.16276902,-0.12090817,0.025532223,0.565225,-0.05451349,-0.08035075,0.050278433,-0.20726347,-0.36063406,-0.022302097,-0.15065937,0.2735511,0.22342703,-0.07388242,0.009448387,-0.042109903,-0.12687898,0.43777388,0.0885928,0.3720988,0.43345052,0.037185192,-0.33994395,-0.09355975,0.09836613,0.41688412,-0.05498686,-0.10252804,-0.19681698,-0.4388673,-0.34411585,0.16160363,-0.22171238,0.33212748,0.10251992,-0.2999102,0.6774209,0.06335456,0.9271981,0.092960596,-0.23580536,0.06225696,0.36151493,-0.0019214638,-0.037260085,-0.46236446,0.91093403,0.5176146,0.0061684344,-0.17479077,-0.08439386,-0.08844786,0.1911522,-0.17418955,-0.15872589,-0.14404662,-0.62098163,-0.3380009,0.1535839,0.24021238,0.09036383,-0.014256563,0.025323022,0.15793839,0.024139825,0.39357477,-0.44077083,-0.31924105,0.26388752,0.24606706,0.005979128,0.114988774,-0.34716964,0.5206971,-0.5345995,-0.015978541,-0.2794457,0.11375003,-0.21431825,-0.21568075,0.12334866,-0.04489266,0.36022916,-0.2870163,-0.35130683,-0.29287308,0.42360675,0.061896987,0.17209919,0.47985375,-0.24753065,0.0513442,-0.022313688,0.51096976,1.0618674,-0.20282778,0.012003288,0.43110412,-0.2291235,-0.50231475,0.27889144,-0.29899728,0.13871726,-0.03439826,-0.15602675,-0.44437498,0.33169025,0.13752842,-0.03187842,0.021115083,-0.5536253,-0.11516313,0.37074733,-0.2729136,-0.25753397,-0.20794587,0.1663053,0.7686631,-0.32725346,-0.22718048,0.07240467,0.25469837,-0.27870026,-0.59844494,0.048419107,-0.4080312,0.35531485,0.10925409,-0.24547738,-0.19796285,0.026955865,-0.286306,-0.031895492,0.13010694,-0.32581717,0.06871616,-0.40887848,0.053638864,1.0208018,-0.056514733,0.17094362,-0.6136695,-0.44371203,-0.9848304,-0.39671236,0.541069,0.12874982,-0.0014150441,-0.39571714,0.041813172,-0.10868581,-0.20772806,-0.05465272,-0.3579085,0.48593628,0.14432421,0.40701526,-0.16929135,-0.6140789,-0.011143088,0.11365907,-0.2654459,-0.47711244,0.46951362,0.033997204,0.8164887,0.01964582,0.021296173,0.30488434,-0.48919666,0.06493799,-0.28273654,-0.07994406,-0.7717218,0.09319469 -982,0.696466,-0.27398142,-0.6574375,-0.092446454,-0.2008667,0.24922805,-0.31292257,0.39232773,0.09783256,-0.49328643,-0.21453895,-0.2665091,-0.08746784,0.21080741,-0.20978095,-0.44218096,-0.010663271,0.07545359,-0.50367135,0.64460814,-0.1856229,0.3654149,0.06492133,0.41437045,0.29214168,0.398775,0.32355705,0.1272318,0.009393121,-0.29518232,-0.08073813,0.07917436,-0.64442974,0.12984057,-0.25269648,-0.42206374,-0.051730696,-0.4433294,-0.26689306,-0.8728968,0.30100983,-0.9793523,0.6055241,0.032459076,-0.28960314,0.33015123,0.3715237,0.16942906,-0.20257689,0.010787534,0.22793531,-0.108214036,0.07052752,-0.30941862,-0.318014,-0.5323629,-0.44988284,-0.16168258,-0.554313,-0.2714626,-0.31864756,0.1973414,-0.20314203,-0.013158611,-0.18548642,0.38537493,-0.4511034,0.015524311,0.26469937,-0.17067215,0.3158525,-0.7655902,-0.24353287,-0.18858244,0.30623814,-0.027667284,-0.12951714,0.35387844,0.25146556,0.31978688,0.24596305,-0.14402528,-0.27504423,-0.24685667,0.080655634,0.28867248,-0.09105643,-0.3358653,-0.23886923,-0.2496873,0.45625338,0.4238623,0.34283108,-0.23357245,0.04006203,-0.19199964,-0.22537325,0.47394744,0.4685142,-0.36169323,-0.08093313,0.34560373,0.6455003,0.2438543,-0.32542902,0.1343533,-0.05476095,-0.4120846,-0.18056083,0.26347458,-0.22529748,0.5765892,-0.13621022,0.23765948,0.73493475,-0.2038887,-0.057602305,0.02616887,0.039057374,-0.26834455,-0.18390763,-0.35510227,0.3658351,-0.4840596,0.22820608,-0.28371972,0.56889176,0.16792558,-0.52777416,0.20940015,-0.6649614,0.022549434,-0.06917865,0.47525945,0.5814977,0.5719223,0.16214512,0.8840006,-0.29809758,-0.06650026,-0.11646859,-0.16840497,0.0077621513,-0.23561546,0.0833397,-0.53882,0.18670058,0.001179627,-0.014699625,0.057671327,0.56293875,-0.35696816,-0.13312139,0.12779687,0.8260941,-0.31393746,0.1278424,0.92668974,1.1230546,1.0616494,-0.024789274,1.0231925,0.18858646,-0.36505264,-0.10002328,0.068726964,-0.5037882,0.26643986,0.47876647,-0.15975802,0.42425042,0.076560915,-0.06691908,0.2811134,-0.3534394,-0.08532065,-0.11383774,-0.04688242,0.10978164,-0.087279595,-0.43474227,-0.11858099,0.14355704,-0.047132473,0.31461477,0.21488492,-0.22897302,0.52593297,0.051455446,1.409651,-0.15469567,0.12126268,0.2183295,0.5806522,0.3898585,-0.13544886,0.015958173,0.40845686,0.27819368,0.111405455,-0.5374806,0.2289085,-0.2649731,-0.5712902,-0.03006238,-0.4362445,-0.09322506,-0.034380525,-0.34892124,-0.1837015,-0.15899219,-0.2572268,0.29856166,-2.735418,-0.13565587,-0.113141574,0.24235287,-0.26464182,-0.23275523,-0.07614814,-0.4811481,0.5392987,0.32708192,0.40785238,-0.48864153,0.42184153,0.57464266,-0.5298449,-0.107212365,-0.4333088,-0.007334918,-0.08804558,0.43727186,-0.093989,-0.18827547,0.028179994,0.26896554,0.47317606,0.20297097,0.18538015,0.27221438,0.429244,-0.08158833,0.50198513,0.026595814,0.43417308,-0.4202781,-0.15820067,0.47974816,-0.4116914,0.24657127,-0.19091609,0.17415397,0.5448488,-0.5590558,-0.8472523,-0.6885711,0.022859266,1.0502609,-0.33412233,-0.72166795,0.11045432,-0.2547313,-0.22849558,0.016173836,0.598599,-0.16289823,0.17862646,-0.6471687,0.040451195,-0.059110966,0.09977393,0.0635501,0.08917008,-0.5830553,0.85014075,-0.034270562,0.7192032,0.26681414,0.21338275,-0.3913901,-0.6166735,0.10772007,0.84678257,0.5416304,-0.052083116,-0.07215439,-0.12065884,-0.22588362,-0.16049881,0.24606776,0.804163,0.59184676,0.05586559,0.08235473,0.23870893,-0.0105369855,0.18424408,-0.3021089,-0.29996786,-0.21053664,-0.1213382,0.5047632,0.47238,0.07534606,0.32242015,-0.13517378,0.55393195,-0.14535831,-0.5329259,0.5869416,1.1781633,-0.18896411,-0.354771,0.61187637,0.53016824,-0.26321137,0.56177384,-0.796913,-0.2830742,0.46397033,-0.13887404,-0.64340514,0.20463693,-0.24810033,0.081595965,-0.857314,0.0972367,-0.3379362,-0.3452435,-0.4528925,-0.24406256,-3.3466184,0.19842108,-0.2244459,-0.094686136,-0.3231287,-0.30300814,0.21550186,-0.5992045,-0.6745004,0.16732237,0.014654769,0.84006375,-0.1693413,0.18403013,-0.23015162,-0.40999603,-0.3534495,0.26410142,-0.058376778,0.33924294,-0.19682212,-0.34078926,0.0060841525,-0.01332071,-0.43321282,-0.14515842,-0.44956964,-0.31105265,-0.20855805,-0.45081094,-0.19416046,0.6009499,-0.3100428,0.09221244,-0.15382206,0.089596935,-0.014775583,0.19804871,0.13045637,0.27707118,0.078259155,-0.06411028,0.08586942,-0.2711271,0.16091542,0.07910706,0.1953649,0.17363872,-0.252811,0.20573735,0.28691486,0.56492895,-0.09649276,0.78019655,0.26605824,-0.105872646,0.31108946,-0.20481108,-0.454859,-0.7110473,-0.18406537,-0.096656665,-0.2657369,-0.46877939,-0.124184616,-0.39101693,-0.87707317,0.5851097,0.11500404,0.433913,0.045320876,0.43947962,0.5545868,-0.26197436,-0.07196993,0.09793893,-0.17985432,-0.61869395,-0.22568622,-0.6095577,-0.41993517,0.037548818,0.70706075,-0.32770962,-0.091420926,0.28812346,-0.1537175,0.11610055,0.14548351,0.04450333,-0.0258688,0.53078634,0.01704611,-0.654967,0.7246519,-0.17577577,-0.13979803,-0.5161073,0.2902529,0.5071581,-0.60811245,0.4358088,0.4088017,0.033546872,-0.44300896,-0.6062493,0.064994976,-0.004104721,-0.17585301,0.44190398,0.28372636,-0.745141,0.31535414,0.13337073,-0.2140685,-0.7703175,0.6826792,-0.06766583,-0.41454622,-0.027635476,0.42551756,0.22760627,-0.08403043,-0.23889668,0.17530182,-0.37959597,0.18892278,0.17340027,-0.082062654,0.42314696,-0.24598299,-0.18839046,-0.7006144,0.09475134,-0.6283244,-0.27662143,0.4510834,-0.021389237,-0.017530022,0.26598826,0.114002444,0.3536651,-0.24075063,0.24349822,-0.230624,-0.13525663,0.48123652,0.50600517,0.51359594,-0.5735461,0.63293046,-0.0103749065,-0.13459086,0.19792248,0.14364484,0.263638,-0.00418124,0.60392463,-0.031854134,-0.20135723,0.16724539,0.3949153,0.3573902,0.31622773,0.15872549,-0.18402088,0.21130183,0.0745159,0.32514578,-0.02904354,-0.7415906,-0.13200149,-0.36800924,0.13209131,0.490917,0.12292702,0.3866693,-0.004598328,-0.20926504,0.118636355,0.17552121,-0.27345452,-1.0630789,0.3362732,0.21703339,0.84716886,0.49946627,-0.07071238,-0.029885769,0.69903046,-0.13027146,0.08725773,0.31804085,0.16721629,-0.4615881,0.60687125,-0.58968604,0.3373941,-0.057412803,-0.123050146,0.023132388,0.06171218,0.46093792,0.87880194,-0.23324712,0.041322898,-0.021152232,-0.4173387,0.30759546,-0.30914542,-0.024209337,-0.34451315,-0.3673508,0.65817696,0.36963013,0.36699864,-0.2233334,-0.05798379,-0.08652801,-0.167749,0.21712324,0.12150108,0.158452,-0.20514992,-0.590977,-0.29575792,0.5059966,0.008809797,0.14040777,0.0048842346,-0.37690184,0.1956795,-0.08018307,0.15596427,0.010511166,-0.70598274,0.16862737,-0.14408872,-0.41768694,0.43684608,0.008828585,0.21653572,0.22321442,-0.053591125,-0.05817614,0.22328965,0.12212875,0.7311769,0.028880758,-0.12650226,-0.47292438,0.16099174,0.1673021,-0.2852538,0.018964062,-0.103376806,0.2442394,-0.586016,0.47635362,-0.052335355,-0.25210455,0.10303084,-0.12191527,-0.13533534,0.6266113,-0.13919528,-0.12893218,0.02651206,-0.010793692,-0.3826611,-0.37477937,-0.25483784,0.0949179,-0.09469731,0.059269242,-0.29010454,0.012467989,-0.0577573,0.3785029,0.0338903,0.42041263,0.4118123,-0.110476986,-0.41037172,-0.11708941,0.19767281,0.33655673,-0.050022505,-0.1373084,-0.1660392,-0.7270743,-0.37452206,0.37885612,-0.021501148,0.2802759,0.18114655,-0.06643295,0.85242844,-0.03311772,1.1021186,-0.058347877,-0.47694638,0.20848179,0.71747875,-0.097944684,-0.1426249,-0.2359444,1.0275542,0.6425637,-0.10057817,0.0028258052,-0.21932538,0.022031387,0.07621869,-0.35829464,-0.07388829,-0.11869005,-0.6616196,-0.2235934,0.015085613,0.35276705,0.20193383,-0.09873704,0.079327516,0.30733186,0.06164523,0.29784372,-0.47160164,-0.4875632,0.46467286,0.13139616,-0.21732275,0.040685553,-0.4207546,0.4973213,-0.639126,0.002364644,-0.534311,0.16009833,-0.18093085,-0.23536423,0.18822765,-0.04226046,0.24692532,-0.47269008,-0.43204302,-0.20789799,0.32658345,0.3481513,0.20957018,0.49705476,-0.29946873,0.14536855,-0.071657196,0.58210087,0.8748182,-0.08582749,-0.05727332,0.29649287,-0.62888235,-0.6687876,0.24633329,-0.4448928,0.24147286,-0.008127292,-0.26020595,-0.42262462,0.31591755,0.13156855,0.014376053,0.047073517,-0.8364528,-0.1590592,0.20698777,-0.24912664,-0.12920368,-0.4410102,0.1510226,0.5831881,-0.2781104,-0.25143418,0.006317156,0.15509902,-0.10034788,-0.7899783,-0.08796493,-0.27896526,0.41747102,0.052859344,-0.23611464,-0.09380819,0.11599451,-0.54046714,0.29668722,-0.008575712,-0.30453867,0.0743683,-0.50503445,0.10760534,0.733995,-0.11913294,-0.09705211,-0.34821656,-0.5669104,-0.82504845,-0.45034045,0.16497764,0.072949424,0.15769067,-0.6623582,0.10235132,-0.4238135,0.08046969,-0.043180566,-0.3473502,0.4050543,0.21177652,0.5974864,-0.097980775,-0.8019193,0.28380817,0.06472143,-0.17180826,-0.5020984,0.47637865,-0.21121882,0.7819255,0.124931335,-0.020500403,0.2587604,-0.6462498,0.12297455,-0.19521162,-0.08395179,-0.6829993,0.018112894 -983,0.5434789,-0.30833596,-0.39678448,-0.19152498,-0.18237822,0.098339245,-0.029525291,0.45840007,0.20488285,-0.5556831,-0.11397794,-0.22334825,-0.029510802,0.24730472,-0.105967715,-0.5646544,-0.013873784,0.24064139,-0.314167,0.53278804,-0.37853724,0.26934797,0.045093257,0.10566685,0.20175165,0.31698933,0.07463585,-0.14204556,-0.16129433,-0.08589562,-0.2913622,0.392818,-0.38445434,0.24120273,-0.043952823,-0.1978305,0.13634293,-0.34893754,-0.3218383,-0.76257527,0.20916119,-0.8246887,0.43816236,0.116211854,-0.35364142,0.19082707,0.16316923,0.23916174,-0.32561862,0.058034584,0.20344955,-0.10855439,0.010366154,-0.28814155,-0.12507918,-0.5555621,-0.603566,-0.09265005,-0.36631104,-0.41574556,-0.23957577,0.17049116,-0.42017207,-0.08246336,-0.12890096,0.59646434,-0.43049082,-0.07682438,0.3222018,-0.26143292,0.30081853,-0.5734979,-0.13421725,-0.13930903,0.13359842,-0.070474006,-0.2521012,0.35733548,0.34433162,0.38849917,0.16126917,-0.23538595,-0.20195284,-0.19504313,0.23907413,0.35237274,-0.24699463,-0.42245868,-0.022856925,-0.05392546,0.07148412,0.07373972,0.205134,-0.32622916,-0.097778045,0.12851599,-0.24943566,0.11428965,0.45775414,-0.44583416,-0.24798872,0.19137748,0.6320457,-0.048304312,-0.15935825,0.054815516,-0.027845778,-0.44442713,-0.2214791,0.18294822,-0.42683658,0.6089235,-0.28772175,0.095425166,0.7467031,-0.24501085,0.06135742,-0.013611182,0.10819542,-0.19704345,-0.35402337,-0.30179062,0.2742573,-0.47054246,0.0937837,-0.2123366,0.82574534,0.20351307,-0.58520234,0.22949964,-0.5351335,0.1769647,-0.1380538,0.5502961,0.54926574,0.4363236,0.44581664,0.7041837,-0.5525852,0.10246987,-0.004028614,-0.40561453,0.035538595,-0.28007525,0.02607224,-0.48791054,0.06666388,0.000844427,-0.13265406,-0.044975556,0.44338658,-0.61784625,0.06293624,0.2716321,0.9421267,-0.35651195,-0.047851156,0.5023611,0.87871295,1.0010206,0.06544987,1.1440489,0.23931926,-0.45671195,0.23699832,-0.35201028,-0.65059096,0.35898563,0.4800316,0.09755268,0.26955858,0.19839546,0.053700127,0.44597968,-0.45614845,0.20890754,-0.31845137,0.07467139,0.03535467,-0.21574211,-0.52183,-0.20462637,-0.046704125,-0.014574176,-0.051756572,0.17227142,-0.07958024,0.42586222,0.16187352,1.637851,-0.087237194,0.11238697,0.21717528,0.28711906,0.1353599,0.027867882,0.07552585,0.49174002,0.40892887,0.2729844,-0.6027562,0.071462385,-0.28964424,-0.5942671,-0.12169317,-0.4106913,0.11683043,-0.014925893,-0.42066428,-0.24846512,-0.07700452,-0.28585437,0.37676218,-2.4726355,-0.1617567,-0.14825444,0.29362747,-0.29634386,-0.26732928,0.014684609,-0.43048158,0.2741256,0.39066452,0.5164162,-0.7251767,0.3282965,0.37190315,-0.5251351,-0.066283725,-0.69794285,-0.16030906,-0.2274675,0.42837772,0.09158792,-0.12852216,-0.0460253,0.1280502,0.54056585,-0.050550114,0.15511368,0.30878884,0.35193413,-0.025653696,0.5780894,0.20932195,0.48971808,-0.14843331,-0.22065766,0.34892574,-0.39842358,0.10540032,0.22450806,0.07327137,0.47404563,-0.41922563,-0.72401625,-0.7658053,-0.34217256,1.1847409,-0.29476312,-0.40515748,0.31875274,-0.24199146,-0.2204681,-0.2011625,0.3746074,-0.14619808,0.11633862,-0.81329167,0.14960961,-0.004811748,0.10240673,0.07099418,-0.11813721,-0.4004926,0.84008133,-0.12920779,0.48955613,0.3486044,0.010736863,-0.20450374,-0.4759121,-0.044861976,1.0712761,0.38249487,0.09188767,-0.1312887,-0.26072434,-0.34777313,-0.009191746,0.14719014,0.4014851,0.78584063,-0.05726842,0.09632788,0.3216399,-0.08334216,0.05033177,-0.18083952,-0.35329762,-0.02511903,0.042957187,0.52272534,0.42213643,-0.20353898,0.38041818,-0.16244666,0.38753414,-0.075257055,-0.40850896,0.3705768,1.2223495,-0.15415512,-0.3734764,0.68298995,0.50339985,-0.38740525,0.3774627,-0.6265991,-0.18850961,0.5169235,-0.2424817,-0.44924864,0.2521321,-0.32181606,0.33282602,-0.95628196,0.4330409,-0.17153034,-0.47820696,-0.6427046,-0.22314952,-3.4423232,0.3493934,-0.3992234,-0.16170785,-0.071093366,0.004342393,0.24901406,-0.6997591,-0.39089516,0.09090136,0.09202387,0.47707638,-0.057964835,-0.028914869,-0.2293854,-0.36009553,-0.22046481,0.12007931,-0.0024895906,0.34935844,-0.038145844,-0.60520864,0.122160785,-0.1560702,-0.40898257,0.09376183,-0.6178861,-0.63394386,-0.13294406,-0.61946833,-0.39187872,0.68134946,-0.29436308,0.04717374,-0.261432,0.10384975,-0.1352143,0.3089512,0.16045932,0.19225626,-0.106349535,-0.11009264,-0.12341583,-0.20338407,0.33870602,0.012730131,0.33821577,0.30731916,-0.24599458,0.11398795,0.6473287,0.49648622,-0.045861986,0.7936102,0.60852545,-0.21576566,0.40003031,-0.28165588,-0.2942212,-0.6885728,-0.5070503,0.15778498,-0.46666285,-0.4567619,0.015637927,-0.30892706,-0.76280516,0.62357277,-0.05949638,0.13822219,-0.005461854,0.36514166,0.58697766,-0.16965288,-0.13636084,-0.046274487,-0.29772064,-0.5435,-0.2695144,-0.7464217,-0.36537144,0.19181451,1.0744724,-0.32255584,-0.0057660798,0.0074064294,-0.23007129,-0.05725895,0.20664883,-0.021686776,0.21797676,0.4458429,-0.16464974,-0.70390075,0.48532823,0.029597282,-0.1787233,-0.39758065,0.2031504,0.6142118,-0.7290327,0.59740716,0.2982178,0.11739022,-0.12792176,-0.48670733,-0.2633315,-0.0050234753,-0.31036952,0.5634333,0.077141486,-0.5932003,0.3102537,0.41352862,-0.25736907,-0.6730708,0.44144773,-0.19066451,-0.19416396,0.051100858,0.38355932,0.024589412,-0.040452026,-0.117021784,0.1878059,-0.4810097,0.2321843,0.43455568,-0.033272725,0.13514711,-0.1109565,-0.18530622,-0.8780824,-0.0027882585,-0.6164195,-0.28326342,0.23756517,0.1619784,-0.091202945,0.25131467,0.020126553,0.5493822,-0.11965755,0.046938498,0.059371658,-0.2695465,0.3917512,0.40509492,0.38374117,-0.49997738,0.5280693,0.074363984,-0.0007801056,-0.35650268,0.014933451,0.48037246,0.19251792,0.4418243,-0.05779074,-0.10842577,0.50990134,0.78138524,0.25723064,0.66074395,0.091528304,-0.13760087,0.25540084,0.14132538,0.096716605,0.039916866,-0.5109171,0.012949119,-0.16939102,0.17545493,0.42758623,0.106883846,0.31186977,-0.09893061,-0.27548236,0.074305125,0.31618297,0.035967097,-1.2297794,0.35824987,0.2117521,0.7089106,0.4686494,0.035121474,-0.005478233,0.70792234,-0.3274511,-0.017173132,0.324777,-0.14912656,-0.5717499,0.6014248,-0.68967015,0.32433203,-0.18666817,0.08360254,-0.14169268,-0.05474234,0.39688402,0.7852902,-0.21398821,-0.09849296,-0.18725356,-0.24911347,0.30789602,-0.51339823,0.1293187,-0.47939193,-0.41536328,0.5727743,0.4192334,0.38984197,-0.12743543,0.015059826,0.08818459,-0.108737595,0.4491494,0.044815052,0.08155999,-0.025734095,-0.73771805,-0.30161625,0.543601,-0.083093755,0.18291791,-0.047871027,-0.28404993,0.26443043,-0.13128355,-0.037471436,-0.104593724,-0.4805932,0.0003145536,-0.21419887,-0.5366875,0.60476154,-0.06774863,0.22854719,0.28150794,0.0350556,-0.35039595,0.15623544,0.11720207,0.73742336,0.042932596,-0.27776718,-0.34015292,0.17234106,0.055479933,-0.1745441,0.09225427,-0.2688094,0.12830609,-0.60673624,0.52067286,-0.036906395,-0.45395538,0.13686396,-0.2976366,-0.18148454,0.6127836,-0.27388102,-0.194354,-0.188866,-0.15318309,-0.05220753,-0.22317483,-0.127232,0.38475153,0.020506088,0.12019841,-0.20901343,-0.09546079,-0.14876303,0.4684336,-0.050776657,0.31937793,0.3731617,-0.089732185,-0.35859627,-0.06969871,0.1282515,0.22041884,0.10248903,-0.13948537,-0.18836226,-0.46516693,-0.33460903,-0.02471644,-0.08458875,0.40760466,0.1507879,-0.33737323,0.96563286,-0.08864697,1.3629959,0.028803695,-0.4296785,-0.065155976,0.6577621,0.10015909,0.03770963,-0.26634857,0.8964277,0.6958425,-0.07764999,-0.086200476,-0.52491117,-0.056290884,0.12042342,-0.09389849,-0.029820379,-0.04744831,-0.63892597,-0.35902423,0.25498858,0.33054003,0.27492186,0.058286276,0.019721007,0.24523124,-0.05902167,0.39156094,-0.4449484,-0.2488355,0.23734376,0.094926275,0.11538312,0.017011559,-0.41989523,0.4979831,-0.58589727,0.21455981,-0.2082602,0.177325,-0.16268635,-0.26053685,0.25112048,-0.07113802,0.36647403,-0.39673942,-0.34840646,-0.07803106,0.62452924,-0.019770758,0.13791582,0.6688909,-0.31972593,0.05889593,0.14625059,0.4600941,1.0926694,-0.17695656,0.012634845,0.3434719,-0.39027968,-0.6418782,0.42070445,-0.2747266,0.17022477,0.10605325,-0.34083423,-0.45378348,0.23975843,0.33854178,-0.0870519,0.11998006,-0.48868093,-0.23508812,0.2884084,-0.4572152,-0.106145725,-0.15385227,0.34237513,0.5451716,-0.43565398,-0.41086245,0.05338178,0.12689029,-0.27907145,-0.5739291,-0.13260633,-0.4170416,0.48395392,0.14942688,-0.26469892,0.07818184,0.04289383,-0.3845468,0.16826157,0.28943756,-0.32950908,0.16533987,-0.34934884,-0.08881381,0.8241012,0.016177274,-0.0025496124,-0.61697143,-0.37571,-0.96989155,-0.3234429,0.6161973,-0.05554498,0.08105988,-0.5472186,0.010996705,-0.08120861,-0.008129756,-0.083404645,-0.3543705,0.4700813,0.23180503,0.46537763,-0.03277661,-0.71427256,0.13992712,0.09205605,0.08521628,-0.65881234,0.509666,-0.1884566,0.78073287,0.061366074,0.11520462,0.27884758,-0.47564828,-0.08510888,-0.18489191,-0.36891305,-0.62406313,-0.15649357 -984,0.22217377,-0.054297082,-0.50184155,-0.30723894,-0.17531389,0.2763573,-0.13675924,0.1927761,0.22222668,-0.31465608,0.06619386,-0.095406294,-0.01324029,0.31968564,-0.11640385,-0.79561865,0.033771586,-0.016143618,-0.4341714,0.32463768,-0.55788004,0.41086993,-0.067409605,0.22880487,0.028506236,0.3558789,0.16520938,-0.1223786,-0.29146507,0.1445335,-0.12307911,0.26390913,-0.47301576,0.08892681,0.05225932,-0.2395633,-0.07044692,-0.086360246,-0.33694452,-0.625535,0.4974144,-0.7444011,0.47254798,-0.14562875,-0.27485815,0.10952983,0.1539409,0.040418442,-0.46683818,0.20006701,0.28918114,-0.27815863,-0.03563172,-0.22432177,-0.49645883,-0.61012024,-0.49656644,-0.10946431,-0.6354639,-0.27174446,-0.3663107,0.1167601,-0.3460678,-0.18106954,-0.17081808,0.49520424,-0.4638283,0.07459632,0.13023838,-0.25483766,0.06809261,-0.57569325,-0.058909077,-0.01661098,0.21496095,-0.21787669,-0.15671812,0.3222151,0.42874053,0.4893524,0.061505575,-0.21870929,-0.37241307,-0.2965145,0.2915528,0.2650093,-0.14412111,-0.38414747,-0.23131943,-0.14036293,-0.02582785,0.1675911,-0.11239187,-0.4794297,-0.007502869,0.14435528,-0.28504485,0.4514597,0.5126612,-0.4454216,-0.34454426,0.48443985,0.25529033,0.051241588,-0.3687931,0.2509123,-0.07900032,-0.44658425,-0.2598516,0.23373525,-0.044287167,0.43110177,-0.2650329,0.17381832,0.90355873,-0.1425454,0.13304941,-0.3107639,-0.03718579,0.019965608,-0.2654493,-0.0030125936,-0.05939739,-0.49737844,0.0033100646,-0.15952666,0.7460124,0.19394991,-0.7717112,0.48415735,-0.4813804,0.12160521,-0.20081054,0.5961483,0.74058455,0.21107109,0.10419533,0.9224729,-0.5266356,0.026331697,0.13502799,-0.44764382,0.014907909,-0.05853423,-0.06787477,-0.555289,0.047138993,0.10532609,0.14728647,-0.005657041,0.45624593,-0.29132968,-0.11638017,-0.05469161,0.7898053,-0.47414085,-0.12940557,0.61333764,0.9575482,0.8928226,0.07514604,1.4472206,0.38399556,-0.36677548,0.085893355,-0.44023672,-0.51132315,0.22875477,0.25130823,0.16885045,0.17150281,0.15848118,0.26796767,0.37088457,-0.27801475,0.12804745,-0.14755744,0.09803685,0.15233392,-0.046737917,-0.23661254,-0.16510831,0.17058454,0.118109494,0.046322998,0.15963419,-0.10943284,0.4397597,0.15750425,1.379452,0.09460351,0.0963229,0.054535493,0.47561446,0.17364904,0.019650843,0.04851051,0.42251265,0.44261724,-0.15421836,-0.592149,-0.09327511,-0.41174456,-0.4791455,-0.18736966,-0.5033432,-0.1357359,-0.15581726,-0.482897,-0.15523705,0.26038346,-0.49378625,0.48952076,-2.553802,-0.1453469,-0.18511747,0.2676756,-0.12980504,-0.19675618,-0.34067744,-0.43020716,0.4138613,0.3790596,0.34627932,-0.5483328,0.31320807,0.4299193,-0.25774875,-0.1278611,-0.6351351,-0.025150243,-0.14428599,0.36208865,-0.14249673,-0.10720397,-0.114668496,0.30915007,0.6265725,0.077558346,0.011138932,0.20233001,0.3799216,-0.005365336,0.57204264,0.1245371,0.55128723,-0.16373512,-0.09227261,0.34234092,-0.5342341,0.1608269,0.012899884,0.10203668,0.4467425,-0.41221693,-0.8232795,-0.4925871,-0.5315985,1.1312754,-0.41207677,-0.37374514,0.49737352,-0.11344344,-0.24735934,-0.12819067,0.61339253,-0.0820905,0.11042507,-0.6338305,0.1583245,-0.011492522,0.122150525,-0.13752955,0.25931174,-0.17685999,0.675992,-0.21144888,0.44660392,0.34532917,0.099971615,-0.13670704,-0.48978272,0.19760075,0.83539236,0.31991976,0.14297122,-0.0065015606,-0.14930302,-0.09756332,-0.24415255,0.19229653,0.5050722,0.6491432,0.02820151,0.07439516,0.29716405,-0.23846711,-0.024434486,-0.15261461,-0.31618494,-0.067651555,0.13298145,0.55194646,0.34588432,-0.12644762,0.48242944,-0.15264153,0.11850431,-0.18042584,-0.47011223,0.48241174,0.76091474,-0.11423675,-0.30482104,0.37220207,0.35532582,-0.48412502,0.36929077,-0.53722155,-0.11240803,0.71779424,-0.20425901,-0.4977411,0.037433214,-0.29821044,8.531411e-06,-0.72538453,0.23670997,0.13824314,-0.5446437,-0.41726044,-0.34052023,-4.20832,0.029013237,-0.24126638,-0.079047285,-0.115357675,-0.038829673,0.30331144,-0.38104656,-0.5268286,0.07626246,0.02757124,0.39161283,0.019777842,0.04926484,-0.36075178,0.021756839,-0.19144906,0.33159584,0.05983276,0.2954675,-0.069392234,-0.4672018,0.17269151,-0.2550225,-0.49660772,-0.06833899,-0.36285633,-0.49945408,-0.02897838,-0.5248716,-0.2518346,0.8226831,-0.51483065,-0.053229917,-0.22498836,-0.10262544,-0.2522269,0.39125368,0.31291124,0.21545418,-0.026976151,0.061401024,-0.08584515,-0.31389394,0.27525064,0.026869576,0.21136598,0.40418923,0.08102239,0.06440058,0.63639855,0.52387255,0.16038512,0.80065626,0.20539059,-0.19435804,0.37688312,-0.40654835,-0.112979576,-0.733271,-0.46816826,-0.19066098,-0.49790817,-0.48556647,-0.19889155,-0.33664414,-0.7029924,0.26411512,0.040244307,0.21403961,-0.06485055,0.25244147,0.2844474,0.023827812,0.07838849,-0.054438855,-0.22751208,-0.5303173,-0.51548994,-0.6462923,-0.5990614,0.26760426,0.905947,-0.12920944,-0.26268727,-0.09315934,-0.47689554,0.023674471,0.31500185,0.33311638,0.3556746,0.34724128,-0.07897801,-0.72234327,0.39129364,-0.082642436,-0.07195088,-0.7383002,-0.14172691,0.7378833,-0.6489016,0.6934618,0.32733673,0.15725844,-0.025606966,-0.54184896,-0.37593156,-0.012205227,-0.2837667,0.5843588,0.1035871,-0.58150417,0.47656643,0.07082883,-0.008168107,-0.5409671,0.69090325,-0.014460687,-0.008214549,0.18250927,0.49488506,0.0090356525,-0.26524484,-0.022537133,0.26762536,-0.50357664,0.26771688,0.38848785,0.04023737,0.55286044,-0.059384298,-0.3596358,-0.5601422,-0.29897135,-0.50736195,-0.21724635,0.08947131,0.03778183,0.27208087,0.18909764,-0.121214606,0.3946122,-0.17972408,0.21302813,-0.04445343,-0.30050117,0.28843725,0.42225745,0.31847,-0.4252353,0.59978986,-0.041313816,0.14589567,0.074747466,0.12825315,0.53902787,0.35242766,0.43381044,0.016207544,-0.24234973,0.19133091,0.9352067,0.35605055,0.33067253,0.13461278,-0.34231105,0.31047305,0.16973586,0.0402341,0.016876992,-0.23805517,-0.10834845,-0.03856008,0.2979929,0.17816064,0.07154587,0.36657187,-0.1745247,-0.10321544,0.26181164,0.26517817,-0.03570824,-0.9592425,0.31490198,0.23092686,0.701582,0.47158486,0.022968376,-0.04062936,0.37499866,-0.32457215,0.13208932,0.3969632,-0.15326306,-0.3980035,0.59138834,-0.45882702,0.5632673,-0.085288286,0.075655125,0.031313557,0.36502287,0.1448779,0.98202693,-0.05092647,0.13468274,0.1689751,-0.3213039,0.20347074,-0.39202443,0.16764641,-0.37008584,-0.31981796,0.543956,0.3835882,0.25241497,-0.24191381,-0.103673026,-0.048271544,-0.22557124,0.005874149,-0.037633963,-0.031041432,-0.19922136,-0.74424493,-0.4489924,0.45352557,-0.07796623,0.061938237,0.22703509,-0.2194904,0.3603059,-0.04091778,0.1002546,0.012075436,-0.4042312,-0.10200969,-0.21555752,-0.6135198,0.38702807,-0.492833,0.44368297,0.22254448,-0.01932805,-0.5097118,0.24905883,0.2434798,0.6538098,-0.18086578,-0.18484624,-0.39411253,-0.1916741,0.3624667,-0.31562623,-0.12813248,-0.35551903,0.079262204,-0.67091054,0.46718928,-0.36100432,-0.23884602,0.0013253053,-0.29274434,-0.056849338,0.4132227,-0.15949339,-0.24041119,0.07690565,0.04086244,-0.20173727,-0.022122724,-0.32961982,0.32618925,-0.16912028,0.04965349,-0.12692277,-0.21599077,-0.1317531,0.31236184,0.029835744,0.18543202,0.3579999,-0.0786474,-0.3322832,-0.08832167,0.07256386,0.44309106,0.19603129,0.08107027,-0.10176599,-0.3429419,-0.21352682,0.28020704,-0.1539248,0.14772826,0.20217842,-0.62639344,0.52929443,-0.093893655,1.0744176,0.12506773,-0.32860318,0.019264491,0.5055214,0.11061556,0.22254562,-0.117316626,0.84874266,0.6766659,-0.029320668,-0.26064977,-0.423254,-0.09543955,0.27518278,-0.20637517,-0.19168854,-0.051734436,-0.853076,-0.16179107,0.18716805,0.088497356,0.24880725,0.04571871,-0.13436985,-0.027576517,0.26420382,0.49145934,-0.54844743,-0.0005403241,0.28247368,0.17512235,0.11206148,0.19138826,-0.27643767,0.4094006,-0.63584554,0.029285403,-0.22810052,0.053253293,-0.26815668,-0.1127347,0.2528823,0.044666924,0.37931496,-0.008210794,-0.3064967,-0.36656204,0.6601395,0.07365176,0.3050519,0.6877417,-0.14145163,0.10669522,0.22284572,0.5003994,1.3503679,0.08829692,-0.13218941,0.41775778,-0.37471825,-0.5635124,0.10612702,-0.54251456,0.09274821,-0.0007646799,-0.29940927,-0.21412212,0.22188608,0.029881235,-0.07215646,0.21547692,-0.46924388,-0.32807758,0.22518227,-0.22984968,-0.27978218,-0.2744538,0.20470414,0.69719696,-0.44353968,-0.015668424,0.040338263,0.39134732,-0.38955742,-0.70131,0.20993157,-0.34781083,0.5400156,0.12398153,-0.4001171,0.21956368,0.21218675,-0.37263057,0.23635897,0.53227305,-0.43769443,0.0056849956,-0.060591806,-0.228668,0.94428116,0.082935944,0.06053245,-0.59974194,-0.39402562,-0.93339765,-0.27363193,0.29991373,0.19381934,-0.11229394,-0.44499797,-0.11698964,0.05613052,0.13206841,0.1682797,-0.61421496,0.41946346,0.114028625,0.43573177,-0.042829983,-0.8371432,-0.079243295,0.09945599,-0.24784301,-0.49377784,0.64325297,-0.3176197,0.70638466,0.15161711,0.038391154,0.25437415,-0.53317285,0.30787188,-0.30336294,-0.30764675,-0.6314999,0.08982877 -985,0.42879125,-0.177132,-0.5491368,-0.1756334,-0.41612896,0.25506592,-0.20720744,0.18784128,0.31755584,-0.4222545,-0.07453173,-0.26628885,-0.10962516,0.4766948,-0.16069922,-0.90634257,0.0008549946,0.18859985,-0.7123988,0.3547938,-0.5665569,0.40020567,0.13687585,0.39936706,-0.1148888,0.04608259,0.33255172,-0.115746655,-0.06180825,0.18420736,-0.28461283,0.10968555,-0.5163341,0.22801633,0.082507506,-0.21368702,0.056975212,-0.32306507,-0.18924887,-0.7673874,0.35112217,-0.70589113,0.48076895,0.09181881,-0.42429683,0.031029131,-0.004536765,0.33507854,-0.36582258,0.24047528,0.16967323,-0.28922638,-0.07712604,-0.19779019,-0.3750301,-0.44791242,-0.5551504,0.105744824,-0.55708164,-0.15283068,-0.16317323,0.24899459,-0.25137526,0.025880218,-0.2246186,0.2533713,-0.35181096,-0.19408242,0.424319,-0.13052072,0.067316614,-0.41753918,-0.09482862,-0.14001247,0.3281429,-0.010754517,-0.23146902,0.17519559,0.36398807,0.57669574,-0.009793659,-0.3302767,-0.27191016,-0.0028007796,0.21806607,0.46930096,-0.03697266,-0.20639233,-0.2450891,-0.0149691915,0.24020246,0.22060318,0.04726406,-0.41924405,-0.026686583,-0.14196539,-0.22986268,0.27672294,0.49437505,-0.43067402,-0.29707164,0.34725136,0.65602344,0.15357885,-0.105577864,0.22805007,-0.03929874,-0.7347073,-0.21310595,0.39474362,-0.15756781,0.42893448,-0.30240044,0.05548019,0.6490653,-0.14102277,-0.05919798,-0.12143193,-0.11272963,-0.030116934,-0.35227892,-0.10138713,0.21826339,-0.4247879,0.041714158,-0.23751597,0.9216633,0.19816507,-0.9356107,0.3697041,-0.54994315,0.21867196,-0.06603188,0.7236691,0.7929674,0.305497,0.15842521,0.94264615,-0.55651045,0.14936018,-0.12175054,-0.33820844,0.061411176,-0.124445714,-0.053847883,-0.5236486,0.19379473,-0.30097532,-0.02138718,0.096650675,0.34179306,-0.46966633,-0.10643594,0.034498077,0.6530836,-0.39689144,-0.08956415,0.8116931,0.8635291,0.97508246,0.1391052,1.5536562,0.4636328,-0.22276466,-0.015227245,-0.4223492,-0.6968999,0.15378809,0.26426846,0.3257727,0.43059868,0.054958306,0.018893285,0.41674748,-0.32451612,0.10710718,-0.24564032,0.064610206,0.05012006,-0.09064625,-0.27127066,-0.09594818,0.15406886,0.04525773,0.014307976,0.26987514,-0.12770574,0.39110562,0.10798519,1.1855613,-0.019390533,0.09909717,0.07167979,0.16835912,0.30296725,-0.111143366,0.023173472,0.29841802,0.44697472,-0.15652682,-0.6426867,0.074143834,-0.18062231,-0.44330093,-0.2928093,-0.23878013,0.054877043,-0.0039744503,-0.36670032,-0.13375506,0.040351503,-0.21691503,0.39088768,-2.1975532,-0.21394573,-0.17514575,0.30133864,-0.13403107,-0.308705,-0.29632118,-0.42647573,0.31861043,0.4120527,0.26377544,-0.6843295,0.38333383,0.30842274,-0.35723612,-0.113330945,-0.7056088,-0.12647179,-0.052782297,0.24117081,-0.054212652,-0.094305284,-0.11681003,0.19764563,0.6506586,-0.07474155,-0.1135854,0.19183062,0.5048894,0.15230213,0.55450267,0.125594,0.5729103,-0.20877253,-0.17880681,0.35618928,-0.47763327,0.3593271,0.29610762,0.14683504,0.3882494,-0.49844965,-0.71458066,-0.78639805,-0.48532838,1.1792582,-0.39228058,-0.4155052,0.3041392,0.019681424,-0.2856822,-0.018312931,0.3998244,-0.17136435,-0.14329608,-0.7619897,0.05610309,0.12429578,0.29884782,-0.08463287,-0.06441906,-0.19775571,0.88602835,-0.23213983,0.3783405,0.35614967,0.1237251,-0.2048848,-0.56635374,0.03675509,0.91398925,0.30040714,0.079736285,-0.18805742,-0.2819026,-0.17019153,-0.16346094,0.13018674,0.54970497,0.78444034,-0.023279494,-0.04649247,0.46933356,-0.15081657,0.072691426,-0.123122014,-0.29925635,-0.12642695,0.036223505,0.58580506,0.43012676,-0.18512727,0.43140024,-0.15304933,0.10848958,-0.1252613,-0.5765251,0.589596,1.0107844,-0.11086811,-0.35298043,0.49046716,0.4027364,-0.55496347,0.3081717,-0.55382437,-0.17084996,0.65374744,-0.07826735,-0.3747534,0.06228395,-0.32392773,0.08646943,-0.94327563,0.16964436,-0.19022825,-0.37068224,-0.6075058,-0.026348082,-3.3843312,0.21064381,-0.42130956,-0.017742392,-0.23080333,-0.042543795,0.22921468,-0.43106943,-0.59319484,0.01895173,0.0860978,0.38901582,-0.08949159,0.15406425,-0.39198,-0.14484715,-0.2291615,0.16214836,0.025673714,0.25245348,0.10787688,-0.27661592,0.18975098,-0.36998406,-0.43391725,-0.003205789,-0.55492157,-0.44715214,-0.31953403,-0.48698616,-0.32564119,0.6565925,-0.49740034,-0.12957731,-0.20157556,0.13405094,-0.100472756,0.3726761,0.18371531,0.3313757,0.13112393,-0.05865815,-0.3592679,-0.40890726,0.09947363,0.032040484,0.08000897,0.5172067,-0.065150455,0.17796263,0.40394565,0.7479142,-0.07085405,0.53138626,0.21394062,-0.07251786,0.27292427,-0.3640793,-0.14456289,-0.5882621,-0.3453283,-0.24056305,-0.47978804,-0.645575,-0.14858927,-0.31002516,-0.82671845,0.39835757,0.04994389,-0.055944223,-0.081652455,0.43815884,0.45488623,-0.03140049,0.12135533,-0.21411636,-0.3022847,-0.40000126,-0.58450836,-0.56364644,-0.5525008,0.14433488,1.3207953,-0.19315307,-0.07353949,-0.13884051,-0.27492037,-0.008518187,0.27515,0.1962129,0.2858685,0.29604298,-0.19851801,-0.58569354,0.39056945,0.05190335,-0.3029714,-0.6083183,0.07080998,0.677266,-0.69788927,0.7730428,0.25054938,0.1664896,0.17131786,-0.58926505,-0.3008876,0.18028425,-0.27871433,0.5231575,0.12302249,-0.4396545,0.53628665,0.3516623,-0.10190896,-0.8362092,0.15783775,-0.05249333,-0.38596085,0.1103056,0.3777456,-0.03359308,-0.014244592,-0.23746006,0.14948416,-0.44523355,0.12480913,0.3369429,0.06230518,0.10590722,-0.117198534,-0.32623324,-0.64540005,-0.081204705,-0.59496677,-0.11542972,0.044734124,0.0593444,0.13930851,0.04013071,0.0026475957,0.61423403,-0.30564436,0.20259807,0.0022093307,-0.08581502,0.17741121,0.4652388,0.19043647,-0.49087587,0.5153397,0.098304346,0.013535589,-0.20625627,0.21807253,0.4607145,0.34717122,0.41139787,-0.13345104,0.0011913946,0.2873342,0.7125899,0.08018148,0.3941047,0.18488964,-0.1907849,0.49225885,0.266259,0.16524975,-0.14691898,-0.13563918,0.0020514715,0.07617941,0.2520887,0.44329906,0.12153579,0.43898472,-0.05286775,-0.17307101,0.13706036,0.22182277,-0.042538386,-1.1348206,0.23617288,0.26504868,0.6350755,0.5220727,-0.031051252,0.06801726,0.415269,-0.3370029,0.08444152,0.19978221,-0.044009306,-0.41958067,0.5030776,-0.5886014,0.35108176,-0.39316693,-0.0076928013,0.0523413,0.26239967,0.38578084,0.77507937,-0.092526756,-0.0094622625,-0.057588868,-0.17059025,0.13526693,-0.2949622,0.0077398843,-0.4633586,-0.4318803,0.4621203,0.38684747,0.3815005,-0.4244595,-0.07948623,0.13163498,-0.0839112,0.070187666,-0.12255804,-0.012956555,0.067867495,-0.6113638,-0.25468335,0.62306243,-0.028695852,0.118958786,0.05730657,-0.32975864,0.27379182,-0.06607694,-0.03330481,-0.07563112,-0.7090341,0.01508603,-0.21076891,-0.47460437,0.18519807,-0.38235694,0.16332977,0.37415528,0.062345058,-0.49681512,0.29556847,0.0749478,0.85863477,0.14602827,-0.12698172,-0.38801834,0.24999537,0.22621265,-0.3704521,-0.024414381,-0.26685438,0.0703073,-0.580328,0.55556697,-0.14826672,-0.2854175,0.11383889,-0.11020521,-0.14464697,0.518153,-0.39474788,-0.19692436,0.17392002,-0.12479011,-0.20777453,-0.10156078,-0.40752468,0.3281341,0.0060990835,-0.077553436,0.10077883,-0.050906263,-0.15050162,0.4981627,0.16714562,0.19430886,0.25009927,-0.053805858,-0.5143066,0.10001323,-0.013885127,0.34057274,0.05150544,-0.23184313,-0.21316521,-0.41407305,-0.19869079,0.2826775,-0.20421934,0.16160922,0.12293941,-0.5662803,0.80542594,0.33883643,1.2145483,-0.0009107547,-0.27207214,0.031640716,0.5659607,0.22519334,0.04642139,-0.33622342,0.69285476,0.65567195,-0.16819887,-0.024845421,-0.31518587,-0.1241011,0.1833388,-0.24419358,-0.008506932,-0.013220592,-0.64642507,-0.31659064,0.096033216,0.16718046,0.1139851,-0.089681625,-0.07083182,0.056527387,0.03344438,0.38529927,-0.33465105,0.062825605,0.17376797,0.18841138,0.096128404,0.20751855,-0.2516921,0.5072692,-0.65951556,0.19897053,-0.3637893,0.0752709,-0.008128881,-0.15452473,0.19041075,0.0613232,0.22280441,-0.1806928,-0.20210125,-0.18917592,0.7809081,0.34017393,0.4245153,0.7765666,-0.21987942,0.11468899,0.20123528,0.5439178,1.4295871,-0.13144204,-0.04404695,0.18865061,-0.23557536,-0.5364254,0.2586868,-0.3516114,-0.04477316,-0.21107127,-0.43979383,-0.47536406,0.3519464,0.17342629,0.15262556,0.12214683,-0.4460612,-0.10524164,0.5525345,-0.3307704,-0.26324543,-0.31662172,0.41233826,0.7378184,-0.17114326,-0.37112132,0.019878937,0.2916875,-0.45628753,-0.5939893,0.00793285,-0.40475103,0.3297486,0.16698687,-0.2509287,-0.0012246573,0.37983012,-0.43330064,0.08731692,0.32187435,-0.24868083,0.16478446,-0.16244233,-0.20434393,0.956358,-0.1919312,0.06452122,-0.7942802,-0.55456775,-1.0134187,-0.18988214,0.5453996,0.1687756,0.09465225,-0.55944186,-0.26620224,-0.07600935,-0.113538966,0.15652272,-0.3970165,0.321287,0.12043779,0.45659703,-0.102428846,-0.8465162,0.05142965,0.1340288,-0.3385558,-0.4750344,0.48478928,-0.15299939,0.78045475,-0.0020302173,0.021328913,0.18745343,-0.5616634,0.39762232,-0.43160582,-0.25971636,-0.7610091,-0.014287195 -986,0.2057733,-0.11843746,-0.5424543,-0.08595695,-0.32560393,-0.0013450632,-0.28335056,0.5211661,0.29631782,-0.16633715,-0.3128949,-0.09184592,-0.0029398203,0.14753376,-0.19144915,-0.6838564,-0.119650505,0.24240667,-0.5304939,0.55357224,-0.35904422,0.21309173,0.11214443,0.26111504,0.051492035,0.20778902,0.237318,-0.112335265,0.047508772,-0.24023409,-0.09239545,0.3943901,-0.7461944,0.36677966,-0.3973695,-0.15837695,0.17027856,-0.40826583,-0.23238628,-0.74658984,-0.037982,-0.8033021,0.46609125,0.2507641,-0.26243567,-0.015142093,0.14489736,0.18386073,-0.3132757,0.045434397,0.27237636,-0.24583523,-0.104271494,-0.35888383,-0.09355392,-0.35076872,-0.36202583,-0.06181814,-0.52814263,-0.12635602,-0.18552119,0.12542568,-0.27588245,-0.053010896,-0.31521294,0.24679117,-0.3804319,-0.044736966,0.32706323,-0.34525082,0.31392995,-0.46762714,-0.033033907,-0.09961358,0.45200458,-0.010482629,-0.1384757,0.33341816,0.2516593,0.33134806,0.18490875,-0.29522505,-0.2115897,-0.19702683,0.23358627,0.32908627,-0.18280298,-0.1432388,-0.13112909,0.04534,0.3887693,0.56073564,0.06307711,-0.21778046,-0.10581917,-0.4334277,-0.12983595,0.47099915,0.5495312,-0.35675302,-0.10069934,0.30037418,0.5439884,0.35562778,-0.09074265,-0.095165946,-0.004477605,-0.5075815,-0.099111855,0.08820159,-0.0872795,0.47792348,-0.043200642,-0.098081835,0.70920986,0.008380125,-0.13787092,0.1847511,0.07167743,0.043499824,-0.3914143,-0.18463224,0.3758379,-0.6090581,0.16158994,-0.2853117,0.58685243,0.07144292,-0.6669937,0.31475118,-0.625109,0.13765974,0.10369747,0.4560993,0.49389067,0.63412833,0.36292472,0.8396032,-0.24189025,0.14171548,-0.06366531,-0.24243021,0.090655394,-0.14386122,0.032418203,-0.35224828,0.20862901,-0.29606786,0.13722947,0.08542559,0.10821942,-0.39247194,-0.17484552,0.5225687,0.84593457,-0.17099822,-0.0778104,0.538693,1.111209,0.9882962,-0.048477877,1.0467949,0.06951987,-0.12438526,-0.12141148,0.08609887,-0.78301764,0.11776515,0.5389406,0.043196242,0.16299592,-0.12347057,0.109346546,0.1354324,-0.34170362,-0.057610396,-0.023821443,0.34461316,0.081075676,-0.112778105,-0.37380755,-0.27631924,0.015735684,-0.08428481,-0.13365431,0.26376382,-0.0025358398,0.21650796,-0.053813767,0.97826976,-0.07154239,0.22179873,0.27764228,0.49155775,0.34682712,-0.0917294,0.07793436,0.5224535,0.081337355,0.080968015,-0.41274622,0.15884481,-0.39473262,-0.3753637,0.029108882,-0.3455391,-0.22797315,0.13157247,-0.5219206,-0.020979159,-0.0129393665,-0.172244,0.50684637,-2.9186776,-0.027376791,-0.18990119,0.31420848,-0.28726068,-0.14026396,-0.16454448,-0.53084093,0.2736143,0.19320817,0.6476129,-0.49232125,0.2991682,0.6442085,-0.5447406,-0.22793584,-0.63509625,-0.031958703,0.023460284,0.30427065,0.107447036,-0.04480948,-0.046454262,0.14074248,0.6142745,0.22161658,0.1644961,0.47757554,0.36025167,-0.04016602,0.4742701,-0.22421531,0.5424219,-0.40688953,-0.18531926,0.33753118,-0.3348311,0.505809,-0.09881192,0.041649073,0.6579046,-0.3908324,-0.82790637,-0.41781,-0.3774253,1.1839072,-0.46789935,-0.35808694,0.097225435,-0.08322201,0.016952733,0.109243006,0.54869586,-0.0018230528,0.3420142,-0.5312523,-0.009093533,-0.104983084,0.2960839,0.025879676,-0.108391784,-0.4439621,0.85862356,0.03167513,0.5637248,0.28746778,0.14125924,-0.06661276,-0.44792148,-0.047287796,0.7212364,0.45723686,0.02350741,-0.2180438,-0.2164637,-0.12547138,0.046611577,-0.052670848,0.6418628,0.43772867,-0.28930792,0.11468362,0.36486462,0.24581836,0.016277587,-0.16320173,-0.30977234,-0.10352897,0.08596005,0.39298463,0.9382549,-0.01047194,0.09415897,0.072198056,0.35758686,-0.15390365,-0.5191528,0.46882454,0.2353919,-0.0089814365,-0.07648498,0.48953757,0.77596515,-0.24344297,0.48569632,-0.5441641,-0.3868939,0.49404183,-0.22812754,-0.42171612,0.2722556,-0.29448083,-0.051452,-0.67665964,0.35172644,-0.45511305,-0.32892442,-0.33354533,-0.07624391,-2.8663514,0.25910506,-0.06988361,-0.027861616,-0.39617744,-0.030196123,0.16535826,-0.5313062,-0.6757269,0.09183506,0.22288716,0.39348868,-0.29280418,0.07507017,-0.2789413,-0.45842195,-0.045463245,0.47224703,0.06862076,0.23511557,-0.25434658,-0.33286017,-0.2496111,-0.009582977,-0.1861759,0.2603631,-0.5255291,-0.18032561,-0.044087812,-0.46591845,-0.037052844,0.41871762,-0.56324905,0.11892144,-0.016658338,0.20355736,-0.1436726,-0.11093982,0.20904547,0.27082714,0.056390632,-0.07861122,-0.02546713,-0.26441422,0.5557433,0.08873171,0.32460675,0.2616919,0.003680865,0.024231011,0.5089579,0.5469287,-0.40169394,1.1113847,0.12527958,-0.024002254,0.2892009,-0.17641456,-0.41415718,-0.6409512,-0.11896136,-0.010510936,-0.3574462,-0.40082774,0.20227043,-0.22388965,-0.762234,0.5491896,0.020230865,0.34210667,0.037586886,0.2313798,0.3711928,-0.4899535,0.06562797,0.05423892,0.013167765,-0.39827147,-0.24821198,-0.78552777,-0.32504117,0.10985541,0.8860516,-0.47206292,0.03460669,0.18021716,-0.101475745,0.10129038,0.076559015,0.11085126,0.09646169,0.6564947,0.29714102,-0.45668152,0.35437787,0.0026669155,-0.08876047,-0.32209542,0.17847633,0.53649443,-0.7908041,0.63091654,0.4152752,-0.06680923,-0.23591924,-0.7234499,-0.2217827,-0.005428955,-0.2132508,0.44666913,0.25707212,-0.8527279,0.2444247,0.0005661156,-0.6610465,-0.84503365,0.4505509,-0.16906051,-0.2699206,-0.03170164,0.3647736,0.06883519,-0.21273066,-0.013757326,0.2565765,-0.24831297,0.21865158,0.10334203,-0.1683176,0.22494917,-0.092102885,-0.17840715,-0.7963254,0.07730673,-0.4637154,-0.3653456,0.5116294,-0.10477638,-0.34917584,0.07172524,0.19525762,0.33667025,-0.2127375,0.26089528,0.0061690114,-0.31365865,0.68532497,0.43034968,0.55269635,-0.38309813,0.5297958,0.14668965,-0.1751939,0.029794177,0.21877809,0.29468173,-0.22755986,0.2627087,-0.20512725,0.027896902,0.23851424,0.5995819,0.26891515,0.1784807,0.09660388,0.053638827,0.4069248,-0.045582335,0.1312976,-0.2520409,-0.69021606,0.05351348,-0.25015986,-0.020734485,0.49894068,0.21814485,0.16814516,0.13819164,-0.05068864,-0.07180882,0.3646537,0.0146249905,-0.9416494,0.27115604,0.022018129,0.90095943,0.5264361,0.28183267,-0.089312054,0.65653414,-0.21946378,0.035569195,0.49501637,0.043703612,-0.3548216,0.71107286,-0.48007122,0.42791107,-0.1607294,-0.10211737,0.3485415,0.089647554,0.4197185,0.6649177,-0.19289434,-0.102404594,-0.08257577,-0.24138458,-0.09903708,-0.26897284,0.07892799,-0.33809772,-0.5354828,0.52895576,0.45662966,0.40446433,-0.3523331,-0.026159218,-0.114597134,-0.10168853,0.31367403,-0.042277377,-0.17085008,0.15797038,-0.38114664,0.062522404,0.7209217,-0.14042467,0.07327197,-0.2543205,-0.26546213,0.21297936,-0.24467213,0.07560202,-0.0840474,-0.820343,0.15404452,-0.38257775,-0.50015336,0.29303846,-0.14388056,0.11431473,0.07094561,-0.08679857,0.041399095,0.41705433,0.16327524,0.71377563,-0.06611229,-0.11553076,-0.3229172,0.25729838,0.026777165,-0.10752504,0.114156805,-0.37666336,0.20314205,-0.56188244,0.33412766,-0.18822141,-0.39656207,-0.026275987,-0.12710615,-0.14125194,0.6765272,0.041772705,-0.11203953,-0.081460916,-0.21765618,-0.45574942,-0.08226704,-0.37676835,0.11118419,0.24656515,-0.09506202,-0.18030758,-0.19980888,-0.06802758,0.31133345,0.03504822,0.2738224,0.008502196,0.08970558,-0.30011654,0.23410182,0.032851633,0.52283823,0.16359815,-0.00022217508,-0.08297032,-0.3200312,-0.36678913,0.09343812,-0.20838839,0.3091153,0.17581093,-0.065500714,0.917039,-0.06419875,1.1001968,0.0127516985,-0.38422227,0.09041327,0.52258587,-0.15338387,-0.07998327,-0.34858713,0.9689923,0.5485147,-0.10654831,-0.021935647,-0.22215043,-0.02944699,-0.034905028,-0.21550255,-0.010568194,0.044859905,-0.3799895,-0.11542552,0.14325099,0.30033746,0.19464444,-0.24730104,-0.21405001,0.18495631,0.2161028,0.16878557,-0.567986,-0.46337315,0.20403218,0.20380092,-0.119780384,0.021527888,-0.28573993,0.43638086,-0.72427034,0.12902106,-0.6743308,0.03605331,-0.3667802,-0.36775145,0.047718327,-0.15239055,0.45593867,-0.5263054,-0.37627587,-0.05927756,0.39179268,0.1332724,0.27017707,0.622518,-0.15059827,-0.02991943,0.0478657,0.5850148,0.83482546,-0.5652093,-0.2261671,0.4091524,-0.43270317,-0.58608556,0.18594839,-0.6737172,-0.030502645,-0.20519464,-0.4062135,-0.34491977,0.124882124,0.016174063,0.05055864,-0.0010663271,-0.75258875,0.18088596,0.2501344,-0.29234567,-0.21351828,-0.33781412,0.3423535,0.7813938,-0.12929736,-0.5731134,0.06583472,0.039102074,-0.2678749,-0.4990593,0.039120663,-0.2279628,0.044702306,0.08671569,-0.39554742,-0.04866153,0.26611972,-0.5013829,-0.064194806,0.042206425,-0.25457904,0.077311456,-0.23422082,0.13205712,1.0226328,-0.29243097,-0.1211125,-0.36174133,-0.5783463,-0.8325264,-0.34094942,0.40569222,0.046763923,0.07974473,-0.49969366,-0.09744861,-0.28146526,-0.27342346,-0.122584336,-0.33332327,0.3650202,0.112351805,0.5157035,-0.4285321,-0.97478575,0.39454606,0.14065816,-0.08228656,-0.55303353,0.34608185,-0.14513324,0.9019528,-0.016335957,-0.17844804,0.1623906,-0.5869631,0.1395009,-0.2870677,0.0762781,-0.55289394,0.24704663 -987,0.65272754,0.078889646,-0.9591426,-0.16901362,-0.33206287,0.0018424107,-0.40926448,0.43046883,0.4753697,-0.45619413,0.0784683,-0.10469226,-0.07683414,0.029381542,-0.085593484,-0.61435837,0.1800334,0.14552002,-0.4045614,0.5077069,-0.5149722,0.2447654,0.1648986,0.36494267,-0.092328794,0.289226,0.02422675,-0.17221713,0.14755256,-0.16295205,0.1022644,0.027346099,-0.62318116,0.10283383,-0.12495056,-0.15108088,0.10454383,-0.37350515,-0.3018975,-0.5800286,-0.016776001,-0.7737071,0.6809726,0.1657688,-0.19214265,0.20297892,-0.05250896,0.096773535,-0.054444194,0.17694719,0.37774572,-0.2468255,-0.47074258,-0.2086708,-0.3043467,-0.6579854,-0.65883946,-0.13112305,-0.6621972,0.072152115,-0.34709552,0.17401665,-0.3276926,-0.055869013,-0.19871932,0.22585131,-0.43814874,0.002330297,0.09888665,-0.15239699,0.2527859,-0.6516752,-0.0070550838,-0.057053268,0.2261873,0.09225384,-0.06648921,0.004165545,0.18028744,0.392428,-0.031760912,-0.19823153,-0.33321905,0.11326321,0.10732573,0.37596,-0.11805936,-0.11501173,-0.16109037,-0.044781398,0.4411517,0.34694836,0.16096039,-0.334267,-0.020187104,-0.06305951,-0.5164423,0.6126371,0.53802544,-0.5069926,0.21142252,0.57108617,0.46503678,0.38267985,-0.22796895,0.30096325,-0.14249586,-0.42166018,-0.10112416,0.15345259,-0.14168532,0.44283715,-0.075257294,0.24451832,0.70420855,-0.07597075,-0.008709858,0.3852875,0.017456662,0.2934898,-0.29631498,-0.051959846,0.3146033,-0.59053296,-0.06469903,-0.38666192,0.5086145,-0.30442822,-0.7806135,0.36730197,-0.49159408,-0.0152882235,-0.17533946,0.6681113,0.8381767,0.6142714,-0.0010022322,0.79751056,-0.48695013,0.092253566,-0.1335511,-0.25967303,0.34910813,0.067076996,0.45339736,-0.46745113,-0.071057506,0.025521858,-0.30388093,0.1303485,0.56474334,-0.29563433,-0.34080675,0.27730325,0.58780044,-0.2524456,-0.1049545,0.53093755,1.2890009,0.89716214,0.16654134,1.0119268,0.13601123,-0.036585514,-0.28708535,-0.09796675,-0.8206229,0.2531025,0.253998,0.162502,0.3708427,0.06849973,-0.042775597,0.33523884,-0.034378067,-0.14143953,0.05066237,0.33502832,-0.13145675,-0.3225056,-0.242175,-0.32846236,0.16107698,0.14751063,0.03958867,0.34952188,-0.19718938,0.23372371,0.1404351,1.0783274,-0.015015443,-0.09200931,0.031138167,0.28663456,0.27553228,0.034469683,-0.043606978,0.36606243,0.2144159,0.08110029,-0.2873886,0.16600014,-0.15186362,-0.5054491,-0.26656246,-0.3327228,-0.122776866,-0.3045316,-0.2083735,-0.013027355,0.02475422,-0.55606294,0.3112366,-2.703023,-0.062141526,-0.11283449,0.3489436,0.0749684,-0.18191433,-0.2422009,-0.37502265,0.27427343,0.2985574,0.5539047,-0.5184699,0.77125216,0.7004207,-0.64098734,-0.23482119,-0.614509,-0.063818425,-0.16256718,0.348258,0.1362757,-0.3015999,-0.008067216,0.16023202,0.5586128,-0.07106858,0.2350903,0.33339646,0.5957258,-0.20111167,0.637964,-0.058721915,0.4330703,-0.12010205,-0.16115819,0.21738629,-0.38457736,0.25542185,-0.3687781,0.0951682,0.2876682,-0.13829808,-0.8493708,-0.29311642,0.15295693,1.202483,-0.36776438,-0.5222626,0.1962039,-0.13356932,-0.36629176,0.21091163,0.4757475,-0.18352616,0.0653103,-0.80649376,0.026925089,-0.1003075,0.088602275,0.020080864,0.020241229,-0.41815183,0.75182796,0.024471551,0.53413254,0.45744562,0.1889218,-0.023951372,-0.19566762,0.15780272,0.99546653,0.29588345,0.12293708,-0.38257203,-0.1926717,-0.17150582,0.11242074,-0.037935395,0.5654445,0.4359618,-0.06789458,0.18450575,0.27287123,-0.1495672,-0.13591547,-0.39290616,-0.46393433,-0.08271118,-0.0034289882,0.47387123,0.9254691,0.003952086,0.3412887,0.1482572,0.21476264,-0.32582578,-0.55847853,0.36357486,0.360925,-0.1987849,-0.14341652,0.6488093,0.50378746,-0.27894282,0.54246134,-0.6112294,-0.45265818,0.31735626,0.07438803,-0.3702507,0.42966652,-0.4386411,0.03599019,-0.90162724,0.24310823,-0.47643638,-0.43275928,-0.4261916,-0.20989062,-2.797434,0.35551,-0.18462269,-0.11014539,-0.1711912,-0.014326721,0.25497743,-0.5132869,-0.60212594,0.050385933,0.17172976,0.5747755,-0.21620303,0.031453345,-0.269665,-0.56724995,-0.10194942,0.36800185,0.0024646719,0.2269253,-0.046301603,-0.43863937,-0.14729004,-0.07926652,-0.05131686,-0.03821657,-0.49227998,-0.11630491,0.0025357567,-0.36550424,-0.22314394,0.6138609,-0.32254907,-0.046579447,-0.18343991,0.159109,0.22482638,0.30505803,-0.12170348,0.05257477,0.009289692,0.06845954,-0.11675802,-0.16136922,0.21579368,-0.037570566,0.39235485,0.36690375,-0.010488282,-0.09388336,0.65583235,0.41106156,-0.13158141,1.0320095,0.07243513,-0.11446629,0.25585642,-0.1345306,-0.11765895,-0.67190605,-0.2958214,-0.19995917,-0.43057764,-0.26018813,0.05610791,-0.3074398,-0.8216036,0.5012923,0.13660972,-0.09652499,-0.045391083,0.5850572,0.5195147,-0.125629,0.0776505,-0.18235008,-0.121470034,-0.35753906,-0.26526332,-0.8705326,-0.27756628,0.22595586,1.1245676,-0.36667013,0.009328534,0.16051011,0.05080567,0.09730441,0.16128704,0.22522372,0.060911458,0.48376742,0.17766333,-0.6006776,0.31388423,-0.41688225,0.015286717,-0.74660397,-0.12703903,0.7376774,-0.82461065,0.20047228,0.5494176,0.07193225,0.088345975,-0.7259068,-0.17781818,0.21548219,-0.19875352,0.4511548,0.17569214,-0.9726162,0.5791716,0.26773483,-0.28480774,-0.71501607,0.6104431,-0.1769734,-0.26571086,-0.10335723,0.48843208,0.2236008,0.059363633,-0.32926944,0.088732995,-0.45614514,0.422236,0.07467646,-0.3220101,0.44536236,0.08074517,-0.1004403,-0.82809114,-0.18410933,-0.3864467,-0.35809696,0.38462698,-0.16750096,0.07128044,0.055295676,0.27036572,0.32670608,-0.5712215,0.14950062,-0.22726887,-0.2889515,0.64567566,0.4964051,0.4725561,-0.31221065,0.6357041,-0.032412063,-0.22374974,-0.00400576,0.011506294,0.3229058,-0.0363355,0.27976373,0.22739156,-0.16594379,0.17119354,0.7952595,-0.001305682,0.24630783,0.261892,-0.03787831,0.33233956,-0.04275027,0.17232366,-0.28031504,-0.5146421,-0.063209675,-0.28337777,0.28879544,0.42877725,0.0706437,0.5113745,-0.18504544,-0.09710569,0.006288891,0.37397555,0.3115436,-0.94968605,0.1776637,0.24582039,0.3221852,0.5508805,0.03512458,0.12306849,0.50126845,-0.17918311,0.20868564,0.3247545,0.115480304,-0.31951064,0.50639904,-0.6680209,0.25583407,-0.1515516,0.10391418,0.31707734,-0.052777365,0.54237807,0.8929607,-0.12873909,0.04501578,-0.10290844,-0.34305838,-0.2809819,-0.16582836,0.07133897,-0.38365546,-0.2803482,0.8308123,0.39043364,0.48298463,-0.21427566,-0.1004251,0.2196802,-0.1935041,0.2797099,-0.019647188,-0.104765855,-0.024996703,-0.545657,-0.09062075,0.52222514,0.20502038,-0.08441442,0.04873495,-0.057697218,0.2997783,0.0026818167,-0.124337375,-0.103390075,-0.42118314,-0.04669556,-0.5048254,-0.5678191,0.37904596,0.1330502,0.24889553,0.059456248,-0.07670245,-0.016864454,0.37614432,0.17183495,0.588955,0.010066609,-0.21905768,-0.25990307,0.07093111,0.053586025,-0.22936668,-0.22281706,-0.3339926,0.43829918,-0.58200175,0.3390549,-0.49236193,-0.46038982,0.050539628,-0.3651004,0.045705333,0.4897643,-0.17986125,-0.24100415,0.16352195,-0.096619,-0.18330322,-0.24668421,-0.35293174,0.22370408,-0.21774286,-0.3394209,-0.19172625,-0.13856778,0.051967144,0.14964603,0.2055128,0.066562824,0.4743118,0.33790898,-0.39641595,0.014231603,0.30844662,0.6965515,-0.16469054,-0.1783911,-0.5304857,-0.4451126,-0.33718553,0.18977414,-0.16265647,0.19122803,0.19511344,-0.27485827,0.9255338,0.104134984,0.93956584,-0.075038515,-0.29710048,0.20774432,0.56776,0.028663972,-0.11170936,-0.16995811,0.9567191,0.5370694,-0.30600753,-0.1599497,-0.554786,-0.27257475,0.038413078,-0.41364446,-0.022975901,-0.158107,-0.6687042,-0.051657956,0.29070365,0.18288286,-0.054842737,-0.25190398,0.34090176,0.23841743,0.17496127,0.029479668,-0.7787147,-0.18903255,0.25963786,0.23367846,-0.15393925,0.06614099,-0.30667987,0.34931806,-0.583489,0.04653422,-0.3410881,-0.053000987,-0.024715165,-0.20777471,0.12150794,0.040408526,0.3187148,-0.47493473,-0.414685,-0.06862343,0.2538475,0.23744135,0.2842081,0.6578705,-0.29809913,-0.24008457,-0.103816845,0.63950104,1.2465737,-0.24891375,0.083276756,0.45143422,-0.38134134,-0.842706,0.06756383,-0.6605975,0.12841055,-0.013467416,-0.45232013,-0.40973035,0.27016303,0.027795546,-0.046215486,0.14781787,-0.47108093,-0.060012665,0.118797846,-0.25098553,-0.24511524,-0.050277412,0.035956394,0.8917804,-0.28226033,-0.38838565,-0.09866512,0.31217337,-0.18684363,-0.46470964,0.028378695,-0.36960402,0.21929188,0.20059502,-0.08958583,0.17353898,0.02589707,-0.570767,0.18074144,0.2806622,-0.2147228,0.17274576,-0.3967236,0.235623,0.7912435,0.03819732,0.007202024,-0.13047749,-0.68189675,-0.6230025,-0.24974988,0.0037662685,0.057160515,-0.10465614,-0.45210397,0.01410386,-0.27330324,0.100377865,-0.0737408,-0.5714224,0.5143194,0.045146316,0.3488883,-0.4024124,-1.1953295,0.040128943,0.0957248,-0.4516735,-0.5832941,0.51237196,-0.17701048,0.8616188,0.11187547,0.014274567,0.017926598,-0.7186715,0.26815984,-0.40370488,-0.0551808,-0.4915407,0.014523874 -988,0.6055475,0.07436607,-0.686444,-0.20757923,-0.45231813,0.2263257,-0.33520073,0.07521135,0.2848251,-0.31323987,-0.14212711,0.00891013,0.08108105,0.26810136,-0.24140036,-0.75814867,-0.045172993,0.105579056,-0.59686536,0.5290866,-0.32984465,0.35393238,0.018930921,0.36359754,0.24247302,0.4733382,0.30463496,0.11894183,0.051957607,0.06843672,-0.15985057,0.06501978,-0.6373687,0.19863561,-0.2905281,-0.49763516,-0.119514585,-0.31356892,-0.35675505,-0.6876598,0.4657525,-0.83717763,0.53668046,0.019077608,-0.39963204,-0.06455445,0.22225669,0.1698607,-0.28913063,0.17949966,0.01971626,-0.38358143,0.06822152,-0.20724241,-0.5311325,-0.523621,-0.62193644,-0.19586979,-0.787831,0.008236455,-0.22856264,0.30397555,-0.22124788,0.026595797,-0.19284287,0.30160373,-0.39921075,0.16561916,0.37421212,-0.26988998,-0.011623911,-0.46273473,-0.09849109,-0.06904842,0.29537958,0.22805741,-0.2109795,0.32137713,0.19258627,0.55087906,0.30612317,-0.26014692,-0.38420886,-0.109490834,0.14353879,0.2936673,-0.022910254,0.044162642,-0.46316412,-0.2097357,0.40898767,0.5087698,0.011124496,-0.2641699,0.11423869,-0.29440573,-0.0021061492,0.43437475,0.5391882,-0.47619337,-0.21514939,0.37170747,0.5485427,0.07730513,-0.2798388,0.29888692,-0.052251656,-0.4643522,-0.22670223,0.24649382,-0.049619813,0.50193304,-0.02568254,0.15843499,0.5961785,-0.14217113,-0.101245485,-0.12622061,-0.08261429,-0.023874376,-0.33467942,0.06355909,0.2954275,-0.3863103,0.12772387,-0.12532519,0.50503594,0.102255665,-0.7046571,0.2937286,-0.61464405,0.12566201,0.08395589,0.6825394,0.6990139,0.5636334,0.05102859,1.0446604,-0.31989434,0.06119344,-0.2405453,-0.12849878,0.10921903,-0.1631476,0.17231478,-0.43872085,0.21984594,-0.09844262,-0.03220382,0.067247465,0.48454505,-0.30949757,-0.20259951,0.038753193,0.745262,-0.377088,-0.048293263,0.9278716,1.092173,0.93773466,-0.015403965,1.0830497,0.25282744,-0.1990544,-0.23982337,-0.102977924,-0.65778047,0.024184512,0.29368833,0.19361274,0.6355996,0.1620148,0.09765009,0.22136705,-0.3006758,-0.07925383,0.09018547,0.094321765,-0.024903292,0.020481063,-0.5221321,-0.18238914,0.12678494,0.13329217,0.2370273,0.20002429,-0.17804813,0.5100313,0.101679035,1.2131319,0.03227358,0.16356006,0.22910914,0.4508604,0.44914347,-0.20851637,-0.107318595,0.326303,0.20178518,-0.06485221,-0.5151272,0.07144047,-0.3260453,-0.44258323,-0.15686211,-0.48466486,-0.20306025,-0.102474384,-0.43304604,-0.14574257,-0.010039644,-0.48934454,0.4034432,-2.5416577,-0.175442,-0.117937885,0.36953932,-0.25715777,-0.19522026,-0.36631155,-0.36550972,0.27004513,0.37226728,0.18296501,-0.4198994,0.46959573,0.5247579,-0.45467848,0.022665229,-0.5714269,0.15085034,-0.16943255,0.31342342,-0.12908529,-0.08014495,-0.2571333,0.45540613,0.7419513,0.18299265,-0.009346298,0.294986,0.3790962,-0.16500606,0.50998026,0.012729688,0.51385134,-0.45210034,-0.1484231,0.46921307,-0.4980195,0.35181496,-0.08912299,0.17442732,0.44296715,-0.61068434,-0.83378184,-0.5533885,-0.17048611,1.109682,-0.5102972,-0.50308365,0.2982936,-0.50771743,-0.17656302,0.056583732,0.6358715,-0.08295314,0.21069884,-0.57574475,-0.07456018,-0.13929245,0.16919889,-0.07737366,0.0756806,-0.3932577,0.81397146,-0.21320884,0.5552836,0.20014034,0.25982472,0.03384052,-0.58610755,0.2414716,0.6270065,0.3895795,-0.033508588,-0.1362269,-0.16357136,-0.051107053,-0.12613206,0.14331888,0.6967415,0.6517619,-0.10215644,0.12569329,0.33866164,-0.06068768,0.039792933,-0.19746566,-0.2093173,-0.14469428,-0.007196154,0.3925217,0.7476206,-0.046181638,0.079170704,0.004396162,0.38130277,-0.17263433,-0.6224796,0.46453014,0.6668369,-0.12555143,-0.3414442,0.7103539,0.57748204,-0.43076524,0.4636834,-0.82057476,-0.37334704,0.68676436,-0.043796454,-0.45243213,0.09760066,-0.43721962,0.13079941,-0.8232922,-0.05916089,0.0940619,-0.29362437,-0.30065036,-0.28294286,-3.3522618,0.13354585,-0.1625571,-0.05104514,-0.15619496,-0.26568562,0.30153862,-0.48435968,-0.6993221,0.08354501,0.080060266,0.47683114,-0.32894215,0.21463369,-0.30599254,-0.29723573,-0.35542288,0.361526,0.16712871,0.34532148,-0.22658436,-0.31727317,-0.122958146,-0.25207925,-0.5801848,-0.14328942,-0.44571644,-0.26814705,-0.13868509,-0.38207123,-0.2640778,0.62756246,-0.32556462,-0.014299431,-0.3052104,0.05160173,-0.072618194,0.18468173,0.26006523,0.27751458,0.24875906,0.0476903,-0.1751992,-0.3112628,0.29367998,0.034429006,0.25348625,0.37385368,-0.21289156,0.18215285,0.3612948,0.54863006,-0.15802884,0.92482555,0.13138732,0.06465273,0.35670534,-0.16372694,-0.5187924,-0.7806244,-0.1766695,-0.20161572,-0.4237767,-0.5302214,-0.2444614,-0.53303665,-0.95791584,0.36287138,0.1383699,0.428798,-0.1831847,0.28467205,0.52243775,-0.23638514,0.010489017,0.020304991,-0.42752582,-0.51207954,-0.4875903,-0.54778117,-0.536724,0.11324764,1.0247228,-0.2678069,-0.11122246,0.0913765,-0.37159616,0.08110734,0.35137245,0.25556248,0.027671639,0.686122,0.12738486,-0.5063785,0.5131507,-0.24122879,-0.23239657,-0.62974864,0.052341998,0.570317,-0.701908,0.604723,0.33479777,0.17398487,-0.092564054,-0.56020665,-0.04875642,-0.047564507,-0.19896679,0.59615433,0.30709007,-0.69101185,0.4664692,-0.1901319,-0.05701373,-0.69320804,0.54687876,-0.16430554,-0.2901925,0.02621408,0.49885908,0.07763199,-0.13994677,-0.011688067,0.074369274,-0.4311683,0.27257422,0.46237296,-0.07528905,0.50412506,-0.09482499,-0.30020508,-0.8064126,-0.005315312,-0.6006614,-0.17890498,0.32817125,-0.034040205,0.046229754,0.08934294,0.015647369,0.49053693,-0.2917164,0.24329622,-0.19278936,-0.209892,0.5049879,0.42237732,0.49681225,-0.59560883,0.62996477,0.14064614,-0.1676409,0.12914956,0.1852813,0.36609298,-0.020002205,0.51830363,-0.008782889,0.046034086,0.014999713,0.44995525,0.20871006,0.1418504,0.19547378,-0.25120568,0.50305885,0.10963873,0.071948394,-0.2989399,-0.56592494,-0.055715345,-0.23618433,0.07285624,0.38142696,0.20586756,0.47826275,-0.06600119,0.032456215,0.26354936,0.107334696,-0.31561106,-1.0407717,0.1214562,0.30631867,0.6424724,0.59832436,0.08474612,-0.04442841,0.40526083,-0.21258986,0.05652799,0.49558148,0.087779775,-0.20374057,0.46072772,-0.5170248,0.6232087,-0.16200776,-0.15746143,0.24257691,0.39505857,0.5876584,0.9510814,-0.00072483503,0.024698367,0.05226911,-0.16554357,0.10698482,-0.1553903,-0.039334565,-0.5866786,-0.42320323,0.58666694,0.4263281,0.5276625,-0.33785206,-0.13264322,-0.024681283,-0.12327331,0.14300816,-0.05734047,-0.08431702,-0.20081748,-0.5699343,-0.34883386,0.42226484,-0.16986667,-0.06104087,0.26025277,-0.33787873,0.25721666,0.038271684,0.12046606,-0.0041379207,-0.7814098,-0.08574336,-0.37386888,-0.58734083,0.41675326,-0.2849041,0.3645142,0.28579292,-0.15011522,-0.32953623,0.18934958,-0.008315384,0.86425155,0.1347182,-0.14974646,-0.38350886,0.17023349,0.3358772,-0.44195598,0.09586502,-0.1729647,0.21456215,-0.46209168,0.5436035,-0.32612917,-0.16425742,-0.033689406,-0.19470285,-0.06012099,0.55500513,-0.1291807,-0.14284185,0.17138478,0.041887093,-0.36671552,-0.17595494,-0.44854075,0.18238571,-0.049556702,-0.1577526,0.055843957,-0.056126278,0.08782791,0.28493312,0.08691992,0.25075886,0.17266965,-0.22932342,-0.31978136,0.14345993,0.15083309,0.37545416,0.08360813,0.034672022,-0.04383998,-0.46506503,-0.39826378,0.4701245,-0.12432189,0.056345385,0.18091823,-0.073051475,0.854791,0.27857986,1.057541,0.15453847,-0.25724056,0.20079306,0.5310564,-0.020557728,-0.03512024,-0.23854852,0.9337086,0.5613973,-0.25337315,-0.18412177,-0.25506884,-0.102800325,0.013778567,-0.34922546,-0.09365247,-0.19383702,-0.6171833,-0.20674752,0.0013272102,0.20224759,0.20152664,-0.20968018,0.002206513,0.08647905,0.17363136,0.49603373,-0.4534534,-0.29824498,0.5775651,0.109729014,-0.0045688194,0.14220627,-0.28557512,0.49332193,-0.6518348,0.045569386,-0.60619843,0.052460197,-0.1977632,-0.3707598,0.18146567,-0.039482765,0.2851501,-0.4342164,-0.32211548,-0.2755207,0.5166729,0.20513238,0.34998924,0.63038003,-0.23111884,-0.016494486,0.017063107,0.52296907,1.1183461,-0.16705452,-0.053366918,0.3331852,-0.30849558,-0.6820563,0.14978568,-0.6566884,0.11143889,-0.09858525,-0.41506442,-0.29977512,0.24370877,0.003966791,-0.10955792,0.19337668,-0.7482971,-0.17973064,0.16939528,-0.18739246,-0.15475985,-0.2746734,0.2531139,0.681543,-0.16515872,-0.35726324,0.14417353,0.17537369,-0.19817106,-0.6664478,0.16224857,-0.15585652,0.2706341,-0.01031218,-0.45555696,-0.09757247,0.3306667,-0.5663751,0.08319696,0.22121854,-0.23555197,0.060524307,-0.3917606,-0.07194022,1.1202776,0.002224986,0.08220607,-0.42074904,-0.6233405,-1.1305509,-0.32296976,-0.084104754,0.14946114,0.07244225,-0.42628813,-0.043226086,-0.36857727,0.04008574,0.12675445,-0.46133274,0.42616585,0.21905184,0.6132301,-0.13764815,-0.8346073,0.18798266,0.1533129,-0.42573357,-0.41221985,0.67738277,-0.18116891,0.71269876,0.16150737,-0.01199744,0.079864964,-0.6932129,0.42111656,-0.2636867,0.0079891,-0.7447525,-0.08191271 -989,0.39737627,-0.06984296,-0.6319839,-0.07958142,0.0023854652,0.12158142,-0.25983196,0.38928095,0.24208392,-0.42327914,0.0033413384,-0.0019108994,-0.12149109,0.19874263,-0.14866503,-0.37821516,-0.089645915,0.22747609,-0.42039922,0.387405,-0.33820227,0.24586901,-0.18517281,0.3442903,0.05243272,0.1900864,0.13034163,0.014789795,-0.28609747,-0.08700101,0.15249753,0.5146982,-0.5194616,0.15842625,-0.11284961,-0.24426691,-0.038788237,-0.3620912,-0.37958315,-0.74780357,0.36650175,-0.8291021,0.5829238,0.0790741,-0.3082559,0.2849453,-0.0044740713,0.21786939,-0.23390846,-0.015168761,0.11810557,-0.15882821,-0.19128187,-0.2540765,-0.11678307,-0.2608223,-0.51028746,0.05105633,-0.5430235,-0.01292137,-0.22120534,0.23474313,-0.38983923,-0.047728006,-0.18178903,0.6078469,-0.42378524,-0.023959499,0.18428656,-0.023891946,0.28113025,-0.70404357,-0.18028879,-0.07711567,0.13543491,-0.21604298,-0.24845669,0.23684968,0.3455701,0.3782443,-0.24745396,-0.19724156,-0.42348942,-0.019444669,0.17344253,0.455465,-0.26843178,-0.5157731,-0.15729503,-0.026388738,0.32296735,0.11331714,0.116881594,-0.32459942,-0.06534692,0.19879189,-0.18176186,0.5092119,0.58353186,-0.078651205,-0.025050154,0.35182735,0.6155262,0.05441091,-0.038163226,0.020976437,-0.008257354,-0.4199086,-0.14031284,0.13632557,-0.13081887,0.4449139,-0.09720007,0.106990024,0.4797509,-0.37593243,-0.12739375,0.2620633,0.12381734,0.08527713,-0.20968412,-0.34243187,0.2511804,-0.5477327,-0.026801262,-0.21560717,0.6458621,0.07747246,-0.8185636,0.34276262,-0.4561431,0.09724275,-0.15686497,0.62620395,0.7088254,0.47562104,0.3290393,0.6916924,-0.536552,0.009294386,0.023066701,-0.4424684,0.18024829,-0.12818937,-0.2038927,-0.5306851,-0.18437532,0.11449548,-0.17535107,0.13267574,0.4967573,-0.5625185,-0.13499554,0.013624064,0.5100659,-0.31655547,-0.10427996,0.6979452,1.1536204,0.91382444,0.13473384,1.2323002,0.21859913,-0.16106133,0.17632096,-0.27738452,-0.9164805,0.4948259,0.30848154,-0.7160843,0.40335354,0.1105361,-0.16273448,0.34314507,-0.50552267,-0.21606787,-0.073678136,0.17127617,-0.06021068,-0.24382485,-0.42050052,-0.27534026,0.08623731,-0.028585915,0.14558421,0.33672282,-0.46692902,0.19690903,0.09340233,1.0955598,-0.10759168,0.07580776,0.07376566,0.3359535,0.1932636,-0.22309598,-0.21377985,0.48954466,0.42574188,0.16881596,-0.5178567,0.1063055,-0.30076155,-0.444028,-0.21344411,-0.29814386,0.16380103,0.049270388,-0.38444433,-0.098897755,-0.14648251,-0.51579374,0.32981387,-2.6052606,-0.13157818,-0.0909039,0.282088,-0.11945922,-0.27432278,-0.25166878,-0.45385715,0.31604558,0.3727674,0.47350508,-0.5884529,0.21288557,0.33079672,-0.541941,-0.16288936,-0.5691923,0.006821411,-0.16971596,0.27967173,0.059813797,-0.22801235,0.20153429,0.18174076,0.5069751,-0.16452505,0.027441999,0.40298897,0.34222123,0.05913335,0.2659683,0.071831085,0.48142514,-0.39386615,-0.33505026,0.4018043,-0.3968708,0.11915167,0.05713541,0.105981566,0.32439852,-0.43945155,-0.97234243,-0.56135714,-0.10720483,1.381961,-0.21979155,-0.47387537,0.20408556,-0.26425833,-0.44743973,0.018611947,0.42758483,-0.25518972,-0.04213237,-0.98549175,-0.040926505,-0.07733606,0.20975389,-0.055398047,0.1693273,-0.457957,0.48696852,-0.12559773,0.48800603,0.41943765,0.15323862,-0.54860556,-0.56861895,0.08934564,1.0878171,0.3563342,0.18420209,-0.2874395,-0.17622355,-0.18703543,0.088355765,0.2114941,0.48946384,0.8202172,0.008178307,0.15625408,0.30747563,0.048522312,0.12170317,-0.1721424,-0.3358334,-0.07888914,0.050366737,0.7070145,0.49477845,-0.052563675,0.38793808,-0.01599838,0.30599928,-0.11536308,-0.44025788,0.39618784,1.0502115,-0.11742823,-0.3945414,0.6119142,0.48324686,-0.40041837,0.6630605,-0.5738061,-0.32897896,0.3666008,-0.21175085,-0.5041871,0.22094245,-0.3627722,0.2754884,-0.9145544,0.37250385,-0.2815036,-0.5952452,-0.5143176,-0.06645387,-3.223515,0.11732979,-0.24188301,-0.23694155,-0.16440773,-0.13639703,0.38164207,-0.5857345,-0.5749301,0.10525168,0.14080687,0.6948854,-0.23332916,-0.03919179,-0.1570843,-0.33319554,-0.13809764,0.13808446,0.33250633,0.21032512,0.064303875,-0.45456848,0.03968825,-0.23424013,-0.3487877,-0.1292206,-0.46988073,-0.40180993,-0.1794935,-0.6744532,-0.34318927,0.5877613,-0.3422582,-0.06420877,-0.21331473,0.09996683,0.1599582,0.48265886,-0.011533166,0.17536023,0.11802528,-0.17436552,0.014180963,-0.26415786,0.3793754,0.00859423,0.26009846,0.525086,-0.23036668,0.16247618,0.6540059,0.69130355,-0.0074263983,1.0472487,0.57090145,-0.05183236,0.28463224,-0.33019394,-0.22725241,-0.5486763,-0.31509712,0.070314474,-0.5879609,-0.31018215,0.04260816,-0.31308603,-0.90168655,0.62489223,-0.3415294,0.18504612,-0.057734486,0.41376045,0.38380167,-0.09432272,-0.018271694,-0.16100469,-0.24032585,-0.39262396,-0.18050909,-0.6894477,-0.44661823,-0.008366482,0.98754066,-0.16341956,0.1314685,-0.04958834,-0.053367954,0.07462401,0.06364636,0.10780175,0.3400552,0.34875587,-0.0093641365,-0.5071475,0.202713,-0.22840984,-0.16083963,-0.691587,0.068959944,0.6632427,-0.6233379,0.5671697,0.47871202,0.09803035,-0.17335367,-0.7428193,-0.15082118,0.22725046,-0.1715738,0.66677314,0.4062861,-0.83578646,0.51005614,0.5091068,-0.3291292,-0.67057073,0.558686,0.11030524,0.04636352,-0.11228614,0.47356704,-0.2230402,0.02859412,-0.1673393,0.19008832,-0.24051104,0.25058183,0.17474641,-0.098722145,0.448194,-0.123889565,-0.19073625,-0.6734759,0.059736036,-0.5968852,-0.20790555,0.23540698,-0.0046794456,0.111509025,0.16898713,-0.016661981,0.60460645,-0.29753122,0.034097828,-0.12870267,-0.33812752,0.4253748,0.5486381,0.51436555,-0.2644166,0.5474013,-0.0068416554,-0.08038386,-0.2966906,-0.07969404,0.60004413,-0.041919257,0.3804265,0.100801595,-0.10956448,0.30969158,0.8395389,0.16527459,0.56352156,0.012470535,-0.14377125,0.05342715,0.095424466,0.24353197,-0.045522958,-0.4049671,-0.224983,-0.19985251,0.21521322,0.49357924,0.09609372,0.33485273,-0.25092062,-0.28041258,0.12554593,0.3057315,0.08926314,-1.1303312,0.48367134,0.2019658,0.63179624,0.369198,0.11850756,0.12696555,0.41884905,-0.29698083,0.09376874,0.38209042,0.044146042,-0.6381945,0.5420167,-0.83814824,0.451125,-0.06542015,-0.031457905,0.080934525,-0.15951385,0.4080837,0.87331456,-0.10626387,0.20812365,0.012440483,-0.2631553,0.2893386,-0.3680931,0.26587132,-0.48339668,-0.2690675,0.7462819,0.39345598,0.37216058,-0.1764295,-0.11626575,0.24984029,-0.23817644,0.1824362,0.01129627,0.09024093,-0.1277037,-0.65625703,-0.17051153,0.4134319,0.36270127,0.06341945,-0.017872317,-0.022583965,0.1742449,-0.08682399,-0.07745762,-0.1367313,-0.55231106,-0.087432265,-0.25386256,-0.46065775,0.4775097,-0.2794486,0.15975468,0.34827787,0.14314468,-0.51033086,0.19755496,0.219565,0.7268415,-0.02907546,-0.24591729,-0.30332989,0.33981827,0.25192842,-0.16244586,-0.102548644,-0.489924,0.14761427,-0.6382412,0.468455,-0.2909725,-0.41677842,0.07654818,-0.10353415,0.0044152653,0.560543,-0.24280477,-0.21385255,0.0096488,-0.0664305,-0.22229706,-0.32187918,-0.24291325,0.06713439,0.114312254,-0.10464753,-0.16415913,-0.09220083,-0.14310919,0.36889032,0.071561165,0.27662373,0.47089124,0.22028562,-0.42984346,0.023057107,0.14120288,0.5963393,0.11992866,-0.094966725,-0.53953254,-0.32924947,-0.23170824,0.18199314,-0.12466495,0.28599912,0.18299143,-0.26682228,0.8043371,0.006954891,1.1774261,-0.044107046,-0.44172302,-0.0890022,0.6341594,-0.08067741,-0.2756141,-0.40135297,1.0369812,0.66025364,-0.17688969,-0.17883602,-0.37847605,-0.05382795,0.10641485,-0.25754958,-0.36961725,-0.095215194,-0.6024796,-0.16179745,0.26590994,0.3576983,0.021552483,-0.012034403,0.1501696,0.23785874,0.08555697,0.16963466,-0.37734106,0.11081868,0.22881047,0.31883684,-0.024310082,0.15016262,-0.40549988,0.3784655,-0.57889855,-0.06504712,-0.19189094,0.10493789,0.0017965914,-0.48786908,0.2176839,0.06074549,0.30297533,-0.100473784,-0.1777697,-0.1229552,0.393792,0.037775278,0.14976327,0.6031876,-0.22285604,0.16427946,0.049631663,0.4329557,1.0047894,-0.12723373,-0.035078175,0.23893033,-0.2792189,-0.81512564,0.29136258,-0.46785426,0.29672214,-0.16336283,-0.3369592,-0.4983477,0.2546616,0.21972314,-0.059064362,-0.039331194,-0.51729304,-0.15324871,0.19389032,-0.38415122,-0.24136195,-0.28268525,0.030133145,0.59168905,-0.25918612,-0.34330043,-0.03276874,0.3691213,-0.21040222,-0.474075,0.02520827,-0.3244648,0.27426448,-0.003356278,-0.29011455,0.03814372,0.12902412,-0.3759888,0.32522577,0.24287881,-0.2677873,-0.00045657266,-0.18280932,0.04567355,0.54037863,-0.22572635,0.17725968,-0.46076584,-0.49489787,-1.0370022,-0.098882094,0.33397737,0.03679953,0.06818562,-0.8702011,0.0644919,-0.10384226,-0.11538733,-0.18167417,-0.38168246,0.37899408,0.0510841,0.4669327,-0.11740399,-0.82711935,0.030932155,0.17317878,-0.16079691,-0.52873695,0.54214686,0.0037183675,0.86443716,0.15996958,0.23290594,0.3565847,-0.58667654,-0.03294491,-0.2348348,-0.25740376,-0.60705817,-0.061279807 -990,0.53516424,-0.24805234,-0.46994945,-0.19152382,-0.22815712,-0.2505578,-0.119354345,0.4842076,0.17470898,-0.48797157,-0.13540825,-0.24765904,-0.07346316,0.39623612,-0.2611073,-0.8713537,0.07188882,0.023443414,-0.344472,0.5767328,-0.48212165,0.31729868,0.060269333,0.29763365,0.24758247,0.3210351,0.24200521,-0.24121498,-0.07891261,-0.29821476,0.0320674,0.12922238,-0.6046315,0.2851145,-0.021727579,-0.44023743,0.036254406,-0.5157595,-0.32449165,-0.6735067,0.08805769,-0.6512218,0.4302988,0.07952094,-0.23381433,0.04688188,0.21829946,0.40309685,-0.31713292,0.015226149,0.16461638,0.13228872,-0.18061234,0.052986894,-0.08241677,-0.40604204,-0.6139621,0.12775913,-0.34161457,-0.16287722,-0.23361446,0.20080437,-0.41824722,0.094599426,-0.10396697,0.64642704,-0.42254052,-0.110370435,0.38934636,-0.1372641,0.29112408,-0.45541844,-0.095760986,-0.22493836,0.0559327,-0.10405982,-0.25800458,0.3453136,0.29825714,0.47596353,0.14452264,-0.26691398,-0.22612095,-0.1504507,0.24691255,0.51400405,-0.26322776,-0.6492495,-0.2825887,0.055839427,0.1289324,0.13272662,0.1449742,-0.43449873,-0.02935925,0.20418896,-0.38128787,0.39896637,0.38302845,-0.39595574,-0.14812985,0.27418256,0.44114652,0.2532976,-0.026341524,0.046491057,0.120620124,-0.6421062,-0.2777544,0.14290729,-0.12454421,0.45976013,-0.14425775,0.16239575,0.7369262,-0.22977833,0.12728027,0.11000983,-0.050989896,-0.037019305,-0.42935362,-0.27891034,0.25095657,-0.5225293,0.16243987,-0.22017412,1.0543177,0.22595032,-0.7562815,0.3587176,-0.73643726,0.17356277,-0.2173877,0.5609135,0.59056896,0.39084932,0.2993596,0.66208166,-0.43421677,0.035885274,-0.17044891,-0.38831452,0.05281065,-0.10340673,-0.0374196,-0.4090025,0.06540213,0.008332781,0.013671922,-0.025945405,0.34870172,-0.5757717,-0.06279944,0.035419922,0.97429115,-0.31649718,-0.1354076,0.69456977,0.91346693,1.0221401,0.13792406,1.3092091,0.1785369,-0.14121422,0.260289,-0.1773869,-0.6331636,0.26123935,0.45500728,-0.19822195,0.22835088,-0.0053447485,-0.107901,0.4943471,-0.29153237,0.16417198,-0.24594927,0.39091533,0.033277206,-0.19304647,-0.38285843,-0.29206815,0.06247727,-0.13151436,0.02325273,0.3151712,-0.1169562,0.21456695,0.01828757,1.6352426,-0.14110295,0.21049829,0.16054973,0.4402053,0.12287283,-0.10375763,-0.02844452,0.010660999,0.3183312,0.13378632,-0.6586966,0.18485999,-0.20187803,-0.56057185,-0.1071356,-0.28784758,-0.1774605,-0.118857756,-0.49370524,-0.07462011,-0.09968463,-0.11474669,0.5740243,-2.4409442,-0.22738771,-0.09253515,0.19588408,-0.4022129,-0.4083598,-0.056959648,-0.5185022,0.48521972,0.2834511,0.6376999,-0.7354013,0.55829674,0.46974462,-0.36688995,-0.20784184,-0.66055065,-0.19311105,0.017517904,0.26252893,-0.0019264136,-0.11907421,-0.03720363,0.19134174,0.50286716,-0.06783376,0.08939605,0.19235267,0.29163265,0.048117924,0.7160844,0.030609906,0.4830398,-0.39520317,-0.15757297,0.30573124,-0.435922,0.35805982,0.046969645,0.08974495,0.2625498,-0.51284075,-1.0648906,-0.7242827,-0.47300795,1.0322882,-0.2280627,-0.30208492,0.32085535,-0.1366106,-0.05155158,-0.026854875,0.29523605,-0.029607031,0.13165888,-0.84714806,0.18003082,-0.16348752,0.13228668,0.030227762,-0.03635055,-0.3233234,0.72267866,-0.051063847,0.40278697,0.5380416,0.11271759,-0.3198529,-0.51675236,0.053826284,1.118719,0.45149565,0.21067853,-0.22340329,-0.27685997,-0.39080566,-0.16952059,0.08221833,0.62413025,0.8243655,-0.02406265,0.09610156,0.28024593,-0.009763094,0.04790028,-0.046379883,-0.4226374,-0.1218899,0.036981333,0.6885948,0.60257643,-0.20863427,0.38547844,-0.12763855,0.3284242,-0.11002219,-0.42075852,0.5693461,0.9059786,-0.20555337,-0.22285993,0.62673706,0.5069652,-0.1587795,0.4342511,-0.52428526,-0.31532878,0.5439283,-0.066251315,-0.37904906,0.17499825,-0.39666292,0.06545726,-1.049904,0.4014112,-0.52783155,-0.31614333,-0.50299686,-0.25198877,-3.886101,0.29820874,-0.29790068,-0.050631933,-0.2290161,-0.015812848,0.33056238,-0.604447,-0.71201974,0.12968285,0.0739082,0.6031392,-0.041507956,0.22190277,-0.20339414,-0.11672156,-0.19572915,0.15845807,0.11427301,0.28709793,0.12786914,-0.42601904,-0.15171441,-0.20565966,-0.47700745,0.2600948,-0.58536845,-0.6828564,-0.18208395,-0.69393694,-0.46917483,0.79922974,-0.44496045,0.044303488,-0.06629963,-0.0076134354,-0.2506582,0.42728826,0.08250664,0.12658438,-0.000114770875,-0.08233142,-0.14809899,-0.29898342,0.10786598,0.11795234,0.4877429,0.23223414,-0.12826638,0.28758356,0.6534458,0.73172855,0.03385547,0.69121605,0.38808417,-0.037462216,0.36843967,-0.36990643,-0.2632289,-0.55223596,-0.37029976,-0.12943831,-0.34604242,-0.4752221,0.06157014,-0.2978018,-0.8236183,0.6401963,0.040731613,-0.048182018,-0.1851878,-0.06059396,0.34858847,-0.12351036,-0.1268558,0.006369642,-0.08716101,-0.6866215,-0.31775126,-0.72819895,-0.47197682,0.15329476,1.1632932,-0.24127118,-0.044688024,-0.02827287,-0.21064937,-0.0185318,0.014701681,0.058296937,0.15534016,0.4066598,-0.01953039,-0.6381927,0.45598835,-0.18975008,-0.19309358,-0.41256285,0.18623509,0.7833437,-0.7304479,0.58456975,0.34715804,0.18753597,0.113612175,-0.49933285,-0.16958497,0.028733144,-0.114906274,0.45982864,0.12450703,-0.77500457,0.4923994,0.5672289,-0.27847448,-0.81897175,0.4803107,-0.011235748,-0.15346326,-0.11677853,0.34169683,0.29059634,0.077213585,-0.13437627,0.25375763,-0.5624219,0.24502884,0.26611638,-0.08731566,0.4036121,-0.14586295,-0.07606727,-0.75621635,-0.08197309,-0.49402514,-0.38635543,0.1897045,-0.036103725,-0.07467634,0.039522905,0.09793532,0.24548347,-0.18962927,0.12356557,-0.01632308,-0.20728756,0.4160257,0.5800453,0.4480649,-0.48539108,0.57438993,0.06268568,0.13365929,0.06532431,0.089660846,0.39124444,-0.036027875,0.36321783,0.0036586523,-0.11150151,0.16825019,0.8262452,0.07396036,0.4253924,0.11765287,-0.10260006,0.24246243,0.06239165,0.077794924,0.24902423,-0.55529195,-0.069846675,0.0710185,0.17793201,0.5670568,0.20774664,0.3248653,0.01645722,-0.23157856,0.03167977,0.19638307,-0.090029284,-1.3782578,0.5587419,0.15998928,0.634127,0.72925484,-0.026746402,0.17333435,0.55587083,-0.12002177,0.15686443,0.36788702,-0.07829316,-0.57487303,0.6109161,-0.607248,0.41091797,-0.14316368,0.11404074,-0.058214284,0.023414152,0.4984351,0.6686067,-0.05283105,0.089870796,-0.06764948,-0.32143715,0.04525695,-0.51416075,0.11351403,-0.40638548,-0.20984481,0.78806037,0.5430897,0.2885305,-0.1422588,-0.012107162,0.21637051,-0.14214422,0.13601255,-0.20523128,-0.01761662,0.020772701,-0.6604511,-0.3303352,0.7677335,-0.16872369,0.25015566,-0.08851648,-0.14831093,0.26393104,-0.16368437,-0.03801196,-0.07661728,-0.75327903,-0.011176164,-0.51531315,-0.43169323,0.1940546,-0.174453,0.12865229,0.026173158,0.09936674,-0.5112494,0.45034122,-0.034177013,0.7212635,-0.22946347,-0.23776482,-0.29779243,-0.020606007,0.2213115,-0.27994806,-0.2687874,-0.32629398,0.05767984,-0.60466003,0.35947868,0.032429792,-0.4022211,0.085887425,-0.11943783,-0.094461,0.47298545,-0.3102667,-0.1108519,0.05284617,-0.23744683,-0.09617982,-0.24772552,0.087804176,0.28862375,0.25028437,0.058407657,0.0060361284,-0.27151656,-0.058710694,0.45258904,-0.04048553,0.27903193,0.48078224,0.21156202,-0.47050685,-0.16545439,0.21923378,0.5264527,0.039826576,-0.018313868,-0.43044537,-0.20806967,-0.268939,0.2340224,-0.22833626,0.34458637,0.010162866,-0.5433548,0.84961224,0.1370767,1.2470989,0.056999106,-0.38665417,0.122809015,0.39993116,-0.051227633,0.039541595,-0.39837852,0.9862382,0.5442456,-0.2824998,-0.29488277,-0.5913604,-0.10054524,0.14166537,-0.28612632,-0.18795566,-0.054338526,-0.46208405,-0.31421757,0.16858844,0.31501645,0.11708462,-0.13548903,-0.0600016,0.16646771,0.02613914,0.4819526,-0.5741472,0.0061598844,0.24481942,0.38976648,0.07915175,0.18235445,-0.51732594,0.42158148,-0.561925,0.31324488,-0.36457062,0.16821781,-0.19583894,-0.22726645,0.160462,-0.0074657924,0.31761247,-0.335999,-0.3641801,-0.1630687,0.61420065,0.15316716,0.08379627,0.97117096,-0.295371,-0.00914153,-0.017102947,0.62869346,1.1253159,-0.24142034,-0.06129912,0.31608567,-0.18981835,-0.47620553,0.2628371,-0.3335895,0.027241366,-0.057489965,-0.38652548,-0.6791007,0.23246679,0.30807066,0.035610866,0.15183036,-0.80729884,-0.30391365,0.21901062,-0.25609818,-0.3888275,-0.3876073,0.07609319,0.750347,-0.38912386,-0.23793264,0.06881752,0.12762015,-0.05900675,-0.47648948,-0.12527296,-0.27178827,0.2896337,0.27244067,-0.20730948,-0.18945862,0.09602586,-0.38128528,0.04688349,0.19924355,-0.2638107,0.1620977,-0.098566525,-0.0944354,0.93458885,0.005079133,0.24916813,-0.56348747,-0.50299215,-0.84663373,-0.445464,0.6261078,0.086202435,-0.018048972,-0.508747,-0.09151103,0.095054574,-0.06790051,0.014297689,-0.50030273,0.45401448,0.055014987,0.48765782,0.029711558,-0.6438194,0.09584492,0.18413506,-0.019041548,-0.5711756,0.52668846,-0.22149861,0.94045115,0.07619996,-0.012450002,0.20867704,-0.5015121,-0.14785537,-0.37231034,-0.23665237,-0.69989926,0.18510737 -991,0.6667027,-0.39776924,-0.48975402,-0.41191292,-0.5178265,0.22602181,-0.07271506,0.38303798,0.35669532,-0.5957305,-0.03581663,-0.2611118,-0.05647871,0.3145047,-0.43973055,-0.96061647,-0.120224975,0.032547846,-0.34911457,0.16001162,-0.5953106,0.20305459,0.1925595,0.43027562,-0.081300035,0.1961193,0.44323173,-0.030606296,0.041525256,-0.32959837,-0.15654035,-0.14513025,-0.84354514,0.4206562,-0.115329266,-0.44556838,0.26582393,-0.6565312,-0.17637399,-0.66508853,0.48017102,-0.8001267,0.812819,0.043581612,-0.16830638,-0.044623185,0.18545981,0.057929624,-0.051601768,0.3039526,0.087654404,-0.23930474,-0.018787872,-0.21457128,-0.3852597,-0.7117806,-0.85205925,0.014013764,-0.60402983,-0.26315364,-0.34126526,0.3592284,-0.34490854,0.041235182,-0.093630835,0.72316116,-0.2639476,-0.22695665,0.15087946,-0.20568177,0.2822231,-0.47998208,-0.3566982,-0.021884883,-0.10086228,0.04140424,-0.2380079,0.21110144,0.18970372,0.51056516,0.12684567,-0.38253748,-0.1223158,-0.00058474543,-0.15966763,0.67075735,-0.27525905,-0.46885738,-0.28867695,0.042077113,0.23870406,0.19684154,0.053998698,-0.15840176,0.31339744,0.2458839,-0.4592971,0.6290281,0.5466916,-0.56538284,-0.22435017,0.0041858973,0.18029724,-0.30877095,-0.008784538,-0.030297631,0.056550987,-0.50062585,-0.3872599,0.3615334,-0.23357102,0.60302514,-0.24729152,0.23060784,0.7682781,-0.41259775,0.024802392,0.007522419,0.042459436,0.021647895,-0.20506163,-0.36270434,0.29972464,-0.57678616,-0.20447683,-0.6349487,1.1470968,0.09002385,-0.65294677,0.2927374,-0.6313659,0.02160416,0.011060724,0.7030152,0.44482622,0.48484507,0.26973432,0.81166697,-0.37182075,-0.13372959,0.054320145,-0.23380156,0.24018416,-0.21449924,0.44187203,-0.19147739,-0.060760707,-0.00030167104,0.055887986,-0.09388161,0.7541271,-0.48795882,0.09236531,0.19349849,0.90411454,-0.3924719,-0.01785689,0.57320166,1.2911866,1.0240481,0.15569848,1.5358714,0.13109271,-0.26947504,0.12443614,-0.17330953,-0.34222037,0.43663877,0.5167223,0.50295514,0.37015432,0.102927364,0.073299594,0.51166815,-0.4929436,-0.14812584,-0.022173706,0.2542855,-0.035325143,-0.17903732,-0.6124713,-0.42133632,0.30715942,0.1413741,0.16986904,0.25843105,-0.3866362,0.25586545,0.078718886,1.1027415,0.054627694,0.20786855,-0.009396523,0.42600375,0.004834929,0.13153347,0.11520424,0.10432373,0.11844784,0.1617766,-0.6064558,-0.00926668,-0.35994723,-0.3338499,-0.2952761,-0.35242206,-0.16311961,-0.25260273,-0.5171844,-0.19338365,-0.13379331,-0.358082,0.22691989,-1.9249226,-0.35954022,-0.024887526,0.34999096,-0.25446832,-0.4316276,-0.15025152,-0.5835322,0.30308658,0.48768607,0.30784065,-0.6687318,0.5905949,0.40635028,-0.35129172,-0.010643935,-0.7631765,-0.013653303,-0.2622373,0.4725322,0.07597181,-0.5082326,-0.54769313,0.4164731,0.7975458,0.2475626,-0.14769077,0.14257649,0.5739082,-0.110667706,0.75888026,0.10606809,0.4655053,-0.338837,-0.088945605,0.32401136,-0.58106124,0.092031226,-0.03497969,0.16893059,0.46555632,-0.76018393,-1.1095159,-0.81524485,-0.5662829,1.1930001,-0.35397297,-0.31785065,0.28710896,0.061912227,-0.50315845,-0.109814525,0.45415202,-0.2994414,0.19270954,-0.69019705,0.07384587,-0.07834278,0.23413654,0.0193698,0.2242574,-0.45332655,0.80538046,-0.2988307,0.3645967,0.09221788,0.2446026,-0.4371058,-0.51234686,0.1947746,1.2476265,0.5232304,0.24762528,-0.21716805,-0.041977856,-0.17303695,0.1231281,-0.059600033,0.63360125,1.0057989,0.1423082,-0.11318581,0.31023008,-0.3707901,0.042253215,-0.035956483,-0.47161865,-0.18558629,0.15945786,0.8490733,0.3949241,-0.22301622,0.12883231,-0.22348776,0.3959525,-0.47376508,-0.20922568,0.37237653,1.1201495,-0.01940011,-0.1560178,0.8302969,0.5541757,-0.6356595,0.5264236,-0.815193,-0.49611846,0.4366354,-0.043022808,-0.5332364,-0.12860234,-0.38696232,0.10344406,-0.9567593,0.4209692,-0.06995553,-0.6302382,-0.55147713,-0.52495545,-3.8877006,0.3227966,-0.15503258,-0.03794206,-0.02830186,-0.0782983,0.41460246,-0.54824644,-0.554946,-0.07196511,-0.08673867,0.5077756,0.15681416,0.058203258,-0.11629237,-0.3937826,-0.3804082,0.2811417,0.091684446,0.07642,0.08985411,-0.3605985,0.3025652,-0.47075063,-0.52599084,0.13114317,-0.44937125,-0.67285395,-0.11278012,-0.5131907,-0.42862573,0.9979205,-0.09146129,0.11753132,-0.23560306,0.05397891,-0.11622274,0.40335575,-0.041207325,0.15275341,-0.09082079,-0.22004554,-0.052627433,-0.32389703,0.35597867,0.08535623,0.617622,0.48906708,-0.23943193,0.06655951,0.68901813,0.5245827,0.17523529,0.8957368,-0.16255091,0.031594805,0.28586602,-0.21272412,-0.24362418,-0.73637116,-0.3253425,0.10580482,-0.45726854,-0.21931484,0.04580765,-0.38007194,-0.62689996,0.43353352,-0.15221024,0.11705641,-0.05717994,0.5500215,0.32071114,-0.11983297,0.045752812,-0.066379234,-0.30317348,-0.41927043,-0.44501644,-0.71740264,-0.3411482,0.15753475,1.155399,-0.016009817,-0.28273502,0.023743004,-0.022740161,0.16416936,0.10897647,0.10765655,0.006269574,0.48926944,-0.14906749,-0.8990024,0.27772194,-0.13113053,0.05433333,-0.39094493,-0.05634784,0.88126576,-0.8298413,0.68470925,0.36233497,0.51676494,-0.006969446,-0.33118984,-0.19296975,0.2618584,-0.16050193,0.4791345,0.11052289,-0.7226413,0.5265022,0.012769906,-0.0915872,-0.71193177,0.38118047,-0.0966007,-0.32562977,-0.36394674,0.54204696,0.31413382,0.040697575,-0.22418837,0.3681127,-0.67492944,0.19557819,0.26178488,0.3276425,0.43687448,-0.26129696,-0.120682165,-0.748978,-0.3695508,-0.55075395,-0.39374068,0.08691139,-0.03199511,0.0050603747,0.45777887,0.15771757,0.5139382,-0.30864826,0.1779329,0.06257684,-0.48938742,0.5252514,0.5518652,0.39492172,-0.32649344,0.5505096,0.11556437,0.17098406,-0.44175816,-0.0032492399,0.4122436,0.2217898,0.15702431,-0.05771617,-0.26589033,0.42378289,0.8383724,0.17543377,0.45832175,0.41753173,0.013919769,0.48037797,-0.03345124,-0.06926891,0.028045485,-0.57249236,-0.12051655,0.17334864,-0.09908373,0.4405387,-0.11577995,0.28089148,-0.04510647,-0.038375746,0.22567204,0.44649142,-0.4571566,-1.3183196,0.19514646,0.18781178,0.6408335,0.6196645,-0.046087,-0.06836055,0.44652653,-0.30244213,-0.07638734,0.5810203,0.3256677,-0.19532773,0.8369422,-0.32994628,0.4156769,-0.29769453,0.10632358,-0.2781722,0.09948079,0.4409186,0.9340211,-0.043289326,-0.066117376,-0.15200202,-0.16318682,0.18174222,-0.47120804,0.26166204,-0.52998483,-0.12988655,0.71885186,0.24259798,0.37901023,-0.2249271,-0.06824557,0.07343595,-0.15124185,0.3517774,-0.04479482,-0.39956924,-0.054880477,-0.90204203,-0.14566998,0.65389884,0.3199447,0.13534331,0.21655238,-0.27417582,0.08027084,-0.0044631124,-0.20325765,0.074223354,-0.7554449,-0.18238619,-0.46048746,-0.4932185,0.27824697,-0.3640935,0.09199037,0.28265095,0.20177618,-0.2433575,-0.2406116,0.5610686,0.5336639,0.20011194,-0.41550368,-0.3597579,0.0040504546,0.0070982156,-0.500538,0.027935114,-0.27452374,0.3856048,-0.69612896,0.5127286,-0.14516039,-0.3861175,-0.0122513715,-0.08787312,-0.04852407,0.5097421,-0.36845288,0.08560197,0.054647736,0.08980747,0.0049582245,-0.003433609,-0.30156508,0.23087266,-0.3410284,-0.20419244,0.007179439,-0.27286035,0.09192475,0.6621182,0.41905302,0.080686815,0.3708229,-0.08309467,-0.34259278,0.037540473,-0.43888584,0.56548274,0.08113097,0.003452158,-0.3184776,-0.22590785,-0.12727988,0.41034502,0.051485814,-0.07117024,-0.13010284,-0.7023171,1.1334534,0.12548852,1.2717263,0.032851376,-0.27533287,-0.114831924,0.6866422,-0.11367919,0.0990867,-0.48311132,1.1843504,0.56936336,-0.36622232,-0.45868483,-0.65874225,-0.12784985,0.17294115,-0.36536166,-0.27672583,-0.37343425,-1.0185537,-0.18994056,0.285927,0.51656145,0.10791765,-0.018081272,0.28943905,0.3115558,0.08575277,0.72458047,-0.66721404,0.016026998,0.33862716,0.24926576,0.25789404,0.32235432,-0.2488431,0.2059128,-0.8468009,0.35493702,-0.40541905,-0.009097236,-0.017539626,-0.48858556,0.3079081,0.18580991,0.27489215,-0.18901713,-0.28230175,-0.058350027,0.68262756,0.12975922,0.2542534,0.84409666,-0.23780577,-0.13435987,-0.0882872,0.5255311,1.6788113,0.2317841,0.18029141,0.07455216,-0.48868093,-0.7338333,0.2429409,-0.5536138,-0.1904336,0.08857324,-0.4766704,-0.41824594,0.27240863,0.3852759,-0.1262381,0.20946357,-0.24116698,-0.44189626,0.64460385,-0.4429199,-0.28372318,0.08879089,0.28555623,0.7479416,-0.31117803,-0.05586788,-0.17437407,0.6350311,-0.2905258,-0.6380051,-0.18066773,-0.3614357,0.60939306,-0.019691253,-0.38706693,0.0324261,-0.046803214,-0.48232883,0.045155585,0.46525088,-0.40299425,0.014240821,-0.36643457,-0.20036976,0.8492633,0.30857855,0.04299667,-0.75335616,-0.40460953,-1.1284909,-0.33168417,0.13880807,0.083248675,-0.10328649,-0.3965779,-0.25112748,-0.13269022,-0.086311884,0.124648556,-0.55402786,0.064657494,0.056325376,0.7261652,0.017734628,-0.86866856,0.18033953,0.21564963,-0.13876657,-0.4703072,0.64327,-0.2691483,0.5928393,0.05496446,-0.0014263391,-0.10568537,-0.69280994,0.3205815,-0.35949963,-0.17506835,-0.8816902,0.128867 -992,0.42239508,-0.41619518,-0.385811,-0.1150861,-0.04224274,0.23991686,-0.21762216,0.58215857,0.24838938,-0.4889524,-0.18996453,-0.33908328,0.034200054,0.4009827,-0.074305154,-0.46009287,-0.16300301,0.22398393,-0.4432123,0.43751982,-0.3197689,0.121604465,-0.09970695,0.5498874,0.13782741,0.20516913,0.05198277,0.05095281,-0.31366152,-0.21488781,-0.0506572,0.041569646,-0.534155,0.24526906,-0.19977714,-0.15044434,-0.09836706,-0.6373079,-0.32786885,-0.81077147,0.29677048,-0.97384566,0.60972637,0.10130614,-0.26705885,0.20130064,0.3605535,0.24480022,-0.29323694,-0.017161906,0.3685207,-0.2502478,-0.031255532,-0.09165803,-0.30346194,-0.46734276,-0.56126934,0.026367312,-0.2592672,-0.2794363,-0.19585504,0.24708843,-0.18522443,0.011677988,-0.059178058,0.56490606,-0.37699643,0.15845285,0.36766443,-0.34686056,0.43692198,-0.537215,-0.24257855,-0.16810028,0.2795747,-0.053936493,-0.24682975,0.22206956,0.3748499,0.3654836,-0.045156986,-0.12819998,-0.25771198,-0.06711921,0.20292504,0.45174214,-0.2504057,-0.4530389,-0.27033088,-0.22012039,-0.023445224,0.20234977,0.28048542,-0.26685324,0.007233826,0.011931722,-0.3717401,0.3166962,0.46344543,-0.23926382,-0.176494,0.3636403,0.57158923,0.20754321,-0.13324755,-0.13079906,0.14366192,-0.6000069,-0.17757277,0.19887726,-0.30787805,0.52954286,-0.15759152,0.2706795,0.6952691,-0.08788123,-0.107973136,0.011111389,0.12818955,-0.27791283,-0.56379116,-0.22861052,0.25060785,-0.35289446,0.2118452,-0.15122238,0.62360024,0.20817512,-0.510428,0.35503462,-0.56613225,0.13793765,-0.0116946725,0.38184395,0.64369744,0.4491874,0.38225213,0.82516783,-0.48392308,-0.10015103,-0.07099474,-0.1356979,0.13285899,-0.29679534,0.19461125,-0.545491,0.15010028,-0.0026618391,-0.09305922,0.1028074,0.5950322,-0.452081,-0.12294415,0.18753237,1.1058189,-0.19693892,-0.11532548,0.78379536,0.96303374,1.0139605,-0.044586223,1.4222571,0.2373793,-0.37884465,0.060922842,-0.06490705,-0.77268094,0.35291138,0.38186982,-0.37756371,0.19861977,0.19173966,-0.11834148,0.56774575,-0.25968918,0.16659279,-0.16074406,-0.11140829,0.16806985,-0.116940975,-0.3508869,-0.15254886,-0.082000606,-0.13945405,0.24460681,0.08388376,-0.30158758,0.49753156,-0.063186444,1.8331041,-0.24484594,0.11356803,0.082656495,0.3255708,0.1958258,-0.12385952,-0.029188251,0.5078335,0.32763547,0.27644566,-0.42937472,0.1619957,-0.2380622,-0.46222293,-0.0823577,-0.2673048,-0.13432513,-0.13122396,-0.30636773,-0.241334,-0.16722496,-0.2513053,0.3283515,-2.7898457,-0.20187627,-0.23236395,0.25296026,-0.30414593,-0.28831574,-0.13307433,-0.4081576,0.5258083,0.27716884,0.476369,-0.5195632,0.30729374,0.40859112,-0.60836285,-0.20443384,-0.47471237,-0.109584294,-0.040687658,0.30542985,0.009965385,-0.14985491,-0.076000504,0.17098336,0.5986207,0.107117794,0.21845241,0.46629402,0.55364424,-0.22861378,0.55097246,-0.20642318,0.6262751,-0.41910303,-0.23718621,0.29263353,-0.5748024,0.3461016,-0.102618545,0.15481089,0.5789921,-0.38906276,-0.87653184,-0.7531807,-0.2989432,1.02979,-0.23780866,-0.494514,0.13779068,-0.3670043,-0.38873652,-0.0020751853,0.7220359,0.01424702,0.20957433,-0.7984092,-0.01731419,-0.10178796,0.24743557,-0.011988692,-0.097154856,-0.46640626,0.94412184,-0.006170129,0.4978067,0.380903,0.06791099,-0.38542843,-0.33686936,-0.03233795,0.9896521,0.3184535,0.25542343,-0.1484326,-0.10997754,-0.5648041,-0.17122817,0.016520614,0.6053018,0.43316576,-0.030089637,0.14840376,0.30501023,-0.014792648,-0.01547277,-0.09197343,-0.35334477,-0.14541072,-0.07571911,0.52114683,0.5668907,-0.0654815,0.43061018,-0.2327982,0.44634604,-0.2275663,-0.46232986,0.50629634,0.9778538,-0.26237226,-0.26180223,0.6829737,0.3931084,-0.36229882,0.4552271,-0.6097359,-0.33774284,0.4592885,-0.102237485,-0.66674614,0.2229564,-0.29625067,-0.036684256,-0.8577523,0.16383426,-0.29907584,-0.4095731,-0.47941515,-0.23225848,-3.7798672,0.24858166,-0.13683403,-0.22893186,-0.21806206,-0.025042504,0.106932074,-0.5800047,-0.6450048,0.15802705,0.0066561997,0.746398,-0.14440553,0.20069599,-0.3146973,-0.22067071,-0.2995758,0.14738804,0.016728818,0.33272043,-0.12809588,-0.53195673,-0.06595171,-0.1280405,-0.4523375,0.03757159,-0.86462307,-0.38129592,-0.12091128,-0.63915807,-0.16565989,0.67396814,-0.40393028,0.0020790498,-0.27101794,0.07953378,-0.22131558,0.3950428,0.012314077,0.24143718,0.018435603,-0.3002455,-0.020863483,-0.15258865,0.3393786,0.12172792,0.15967402,0.32508084,-0.13180198,0.24456947,0.3399488,0.70987767,-0.10232952,1.0056517,0.30572483,-0.168572,0.33137548,-0.2450593,-0.16804963,-0.448485,-0.21625076,0.13722886,-0.5035701,-0.49231377,-0.012472426,-0.38000885,-0.75574136,0.5757427,0.114317924,0.14669612,0.111002654,0.2912006,0.41679797,-0.40287873,-0.01916382,0.005749198,-0.11744941,-0.5243379,-0.3479527,-0.5346606,-0.5109903,0.15548171,0.9183505,-0.05262977,0.13039242,0.16073388,-0.3543146,-0.10440195,0.2547476,-0.14295451,-0.04468755,0.41980255,-0.085333146,-0.75496745,0.5045657,-0.10860374,-0.20349564,-0.6361482,0.3629092,0.70631987,-0.57337457,0.88091415,0.50012684,0.11878311,-0.35170016,-0.49201962,-0.23365472,-0.18281443,-0.20004188,0.3754208,0.19995908,-0.7163761,0.29962555,0.45751682,-0.27152324,-0.73579913,0.54666984,-0.24330299,-0.15806328,-0.09545671,0.4862366,0.050438643,0.057019215,-0.2404998,0.2829375,-0.51722866,0.15953378,0.12365226,0.0061133206,0.44132194,-0.17020762,-0.14716923,-0.785731,-0.016434222,-0.50289625,-0.36360827,0.42221463,-0.01265724,0.086645216,0.3158724,0.11121968,0.27722374,-0.23584147,0.14766262,-0.14893667,-0.22799851,0.25374544,0.43324196,0.48070017,-0.5250643,0.67418975,-0.0019379109,-0.039686073,0.051500995,0.13937055,0.42097342,0.16045165,0.65980446,-0.081369996,-0.17941976,0.31915173,0.7358592,0.18709087,0.4976233,0.14708649,-0.1606489,0.1601006,0.12212209,0.24782366,-0.025967194,-0.7893653,0.10428091,-0.41088846,0.1765977,0.4208727,0.11005717,0.34451973,0.03633357,-0.32857653,-0.06622596,0.22047253,0.06671241,-1.1463461,0.3860949,0.17849547,1.0693866,0.34544942,-0.039299697,0.0148485815,0.78222513,-0.067720465,0.04045068,0.33352885,-0.080165066,-0.46540704,0.6372687,-0.8574111,0.3365365,-0.1587588,-0.037467178,0.04219964,-0.05202535,0.5723047,0.8164064,-0.1952961,0.050481766,-0.014863568,-0.17384124,0.35213003,-0.43607056,0.19984405,-0.49671006,-0.4157597,0.6406856,0.5573059,0.39715365,-0.38364443,0.08375924,-0.014170244,-0.11716219,0.10413306,0.20136802,0.09720149,-0.053613793,-0.9972293,-0.10495964,0.49232924,0.016299486,0.38301215,0.01801388,-0.28507784,0.32637876,-0.28592542,0.0071513704,-0.07376234,-0.7807782,-0.060629945,-0.3593317,-0.6125486,0.3479171,-0.022673344,0.12453868,0.15968934,0.00032912692,-0.19627042,0.5629916,-0.03815527,1.0496299,0.13026862,-0.0923442,-0.37956512,0.21729009,0.15879954,-0.24492241,0.06453028,-0.3419803,-0.06277164,-0.5708088,0.6116709,0.022676647,-0.54846364,0.2833158,-0.04336338,0.069277294,0.64478725,-0.13970561,-0.16483325,-0.15584126,-0.27402556,-0.25137466,-0.20382561,-0.07242525,0.37711868,0.13209695,0.14487375,-0.15963183,-0.0009987354,-0.22807728,0.30897728,-0.03025485,0.3806546,0.5703513,0.06141423,-0.31759933,-0.12369021,0.10276425,0.68569374,-0.034660775,-0.39627302,-0.13023718,-0.56259257,-0.4785134,0.3362111,-0.020515038,0.4682262,0.165873,-0.26661977,0.7195261,-0.112425126,1.1384401,0.07440678,-0.40174374,0.06751498,0.5931505,-0.0044303485,-0.13497327,-0.49039412,0.78712016,0.5300757,-0.07634044,0.017626164,-0.4303832,-0.03777019,0.26153648,-0.2089526,-0.08554233,-0.11165017,-0.7420514,-0.21813726,0.15895994,0.3435415,0.4273015,-0.17459698,0.13365178,0.4035976,0.03403992,0.2742751,-0.42355987,-0.20475249,0.37552285,0.37743977,-0.14915776,-0.002279232,-0.37206638,0.36678633,-0.54254127,0.15774785,-0.2962753,0.10284383,-0.41020885,-0.29617235,0.2587872,-0.06402647,0.38774264,-0.33132294,-0.32014665,-0.07772856,0.32691023,0.37114188,0.24102016,0.5606334,-0.16850837,0.049081773,0.176647,0.5497417,0.8726847,-0.44238734,0.09795723,0.3868061,-0.39163518,-0.7464374,0.4457864,-0.39111984,0.25707877,0.14786392,-0.2661422,-0.40113103,0.2684234,0.14954591,0.009649341,-0.048014652,-0.65968853,-0.02961865,0.39023098,-0.19350724,-0.17976807,-0.24864878,0.19175507,0.41785863,-0.10052973,-0.39711985,0.18126757,0.3418614,-0.17417018,-0.5971467,-0.1276852,-0.5251315,0.45945707,-0.014789547,-0.30426514,-0.085970975,-0.2340637,-0.57981294,0.22264862,-0.1480486,-0.37454247,0.12106963,-0.38994583,-0.23365188,0.84444684,-0.1784208,0.04003166,-0.48647282,-0.44812462,-0.80797726,-0.16486973,0.31691542,-0.037151173,-0.04663612,-0.42802384,-0.03868296,-0.19998503,-0.116531946,-0.013058625,-0.38935813,0.40553078,0.05878444,0.5946878,-0.07292505,-0.64103276,0.2021265,0.20757501,-0.12122369,-0.6708906,0.4934686,-0.13856058,0.7875002,-0.08295535,0.117141835,0.40471497,-0.5421373,-0.10426793,-0.24070399,-0.19959098,-0.67410916,0.12473234 -993,0.3732612,-0.2594817,-0.45764318,-0.019768171,-0.14950256,0.0030770202,-0.19008833,0.5999317,0.2910418,-0.3567654,-0.13344915,-0.1928504,-0.03673768,0.25746077,-0.11752691,-0.35475692,-0.16288733,-0.014024411,-0.40595445,0.5371534,-0.35310492,0.0610802,-0.15460594,0.56593996,0.22846417,0.19187546,-0.14963217,-0.003945112,-0.22813737,-0.16434671,0.022871792,0.46391663,-0.62955374,0.08950263,-0.2738073,-0.31310132,-0.14935647,-0.49605182,-0.45489538,-0.725163,0.3390173,-0.7782133,0.41468933,0.23040545,-0.17002524,0.40233198,-0.057035714,0.10646861,-0.21849477,-0.1287678,0.094521105,-0.15783612,0.06416687,-0.26903516,-0.17683096,-0.20216914,-0.61900896,0.066649474,-0.4329393,-0.20605408,-0.40118575,0.13018356,-0.31732175,-0.17524217,-0.10383745,0.5222801,-0.35843205,0.3239452,0.027218938,0.0349041,0.32066402,-0.5772261,-0.37220708,-0.1269878,0.28857273,-0.39578083,-0.22511618,0.20215075,0.1984232,0.2401946,-0.28609654,0.029458823,-0.4938693,0.08624222,0.11898449,0.43419638,-0.39516783,-0.69605184,0.052408297,-0.01451086,-0.036876738,0.15840803,0.17685735,-0.2904688,-0.10928928,-0.01843231,-0.102710664,0.597933,0.49081603,-0.1266859,-0.3316467,0.278415,0.4067544,0.32000247,-0.06448406,-0.31682557,0.10755557,-0.6293598,-0.051662784,0.13310297,-0.07184231,0.5681849,0.0472129,0.29144552,0.47214317,-0.27330884,-0.08279801,0.15614583,0.0040429533,0.12852706,-0.2423205,-0.1421902,0.20512517,-0.19197161,0.31938437,-0.12736917,0.7232284,0.075277105,-0.8669917,0.3133821,-0.66518253,0.022640595,-0.0286419,0.42197743,0.7261583,0.4133257,0.4121093,0.48114896,-0.3532544,-0.009399712,-0.06384742,-0.25448963,0.020908272,-0.23252924,-0.039670825,-0.4943253,-0.27288684,-0.044837486,-0.20748283,0.17217328,0.41940913,-0.48779926,-0.016355492,0.29041037,0.7591047,-0.16463389,-0.2028413,0.7669921,1.0693161,0.88597566,0.07525236,1.0476445,0.07437367,-0.20329382,0.45098937,-0.2632461,-0.7809295,0.26807275,0.13629414,-0.37226963,0.16673093,0.23458405,-0.012085984,0.21821345,-0.3949841,0.004504343,-0.055695403,0.038324624,0.24930553,-0.22007398,-0.26523867,-0.25566253,-0.2948129,-0.008745432,-0.008105472,0.25350782,-0.30620345,0.25232917,0.01757229,1.453723,-0.022452364,0.09788912,0.059157137,0.5740612,0.03742824,-0.23534946,-0.16059762,0.35181925,0.27585283,0.34751844,-0.6122768,0.19728482,-0.14173652,-0.46047118,-0.05344927,-0.371351,-0.23168588,-0.024832817,-0.526692,-0.09344985,-0.18158306,-0.27497503,0.5078297,-3.1057987,-0.0527186,0.056618404,0.33961204,-0.12116798,-0.3303285,-0.04245149,-0.38268325,0.41269493,0.28834572,0.38602623,-0.61562544,0.28628376,0.46982327,-0.50308007,-0.1805657,-0.54233706,-0.015652113,0.033261847,0.37870696,0.021221032,0.15311548,0.24760486,0.041592002,0.44712016,0.0018899838,0.13872364,0.18601872,0.56672513,-0.1892335,0.4313911,-0.16140811,0.3840042,-0.40127778,-0.28151095,0.24107178,-0.4315548,0.3531065,-0.08388489,0.09976655,0.4193212,-0.32704416,-0.9356629,-0.50456053,-0.19551682,1.0737334,-0.015805105,-0.3764607,0.24737792,-0.5222284,-0.2489732,-0.19280045,0.69409704,-0.035446446,0.06324521,-0.7631164,-0.045760084,-0.2832677,0.17577188,0.01975105,0.032710116,-0.40662536,0.64277434,0.09227052,0.33201817,0.410906,0.08449912,-0.45577502,-0.6062216,0.07765896,0.7302157,0.17443015,0.21618801,-0.23908709,-0.24502373,-0.09433856,0.06580923,0.10736713,0.7205258,0.35788998,-0.03521882,0.23536693,0.30232468,0.053992543,0.054242153,-0.15109669,-0.1947666,-0.19182622,0.07342985,0.5675342,0.96235347,-0.17525448,0.47443834,-0.0017250212,0.15597217,-0.23590492,-0.1821369,0.36550793,1.009307,-0.046109777,-0.20355837,0.6052249,0.6265808,-0.2613741,0.4033061,-0.44337454,-0.21440963,0.56887984,-0.21517538,-0.46728492,0.2529095,-0.27691543,-0.003728648,-0.8341079,0.3119471,-0.2713873,-0.4834675,-0.6910176,-0.00029408684,-2.9945533,0.109324515,-0.3011668,-0.27888364,-0.17623071,-0.23806024,0.09682119,-0.7193373,-0.4480505,0.118176274,0.0925312,0.56349725,-0.21471675,0.12524064,-0.26205882,-0.32474267,-0.12411791,0.17594086,0.31321463,0.32358962,-0.052448023,-0.3343914,-0.14759576,-0.05125634,-0.22331113,0.06494499,-0.4512709,-0.36274645,-0.096894465,-0.5501239,-0.34963647,0.6688075,-0.4251815,-0.16760506,-0.20381151,-0.048064787,0.0015991777,0.34863782,0.17773454,0.20731342,0.052325595,-0.07470977,-0.08394989,-0.23821647,0.35813951,0.041309025,0.35749725,0.57414633,-0.21343009,0.31652617,0.47413644,0.5231965,-0.06801218,1.0045904,0.54842114,-0.009239475,0.27042326,-0.3188858,-0.22288036,-0.58480126,-0.1747921,0.116813324,-0.35123298,-0.47371876,-0.035304904,-0.36428404,-0.6959703,0.5613727,-0.24575724,0.18515168,-0.0055018864,0.33344316,0.52058554,-0.27280363,-0.10823534,-0.135107,-0.037821937,-0.48224187,-0.30378282,-0.4040661,-0.5099662,0.0076522627,0.7164522,-0.1676053,0.06715719,0.24114467,-0.22504993,-0.040140066,0.14862591,-0.10914749,0.18348247,0.3017771,0.070650004,-0.6166106,0.5277588,-0.07157699,-0.22667068,-0.62733227,0.2191956,0.5183584,-0.62276596,0.63447917,0.3787172,-0.025756663,-0.101481974,-0.5199702,-0.17677534,-0.02624932,-0.019892097,0.2236378,0.344015,-0.8737928,0.34606746,0.32437623,-0.24820781,-0.74497336,0.6487179,-0.10920509,-0.34909606,-0.015129681,0.3154949,0.083036624,0.05431254,-0.07762939,0.3962039,-0.25526276,0.2860237,0.027601948,-0.07038766,0.069187485,-0.07075209,0.017430237,-0.5865634,0.36487472,-0.3946868,-0.3743215,0.45544073,0.13869546,0.18854226,0.3106884,0.16961372,0.25093088,-0.19263832,0.051504444,-0.13099374,-0.25876486,0.14539231,0.41479087,0.69550866,-0.51041305,0.4912772,0.104875624,-0.018782796,0.21347363,0.12348774,0.35962257,-0.23028915,0.4209241,0.09252801,-0.34826016,0.15156461,0.98885745,0.20148647,0.4987607,-0.065377586,-0.02444903,0.30526957,0.07529896,0.23549835,-0.123639196,-0.6089811,0.13324483,-0.34980837,0.18838625,0.3476461,-0.018917115,0.025608048,-0.30813077,-0.34812465,0.05484273,0.5048999,0.2043423,-1.1531565,0.21387182,0.09654089,0.89673567,0.48125315,0.04832072,0.11049303,0.6311982,-0.0077669225,0.08546207,0.44894242,0.067709826,-0.54729706,0.48877847,-0.7486003,0.5202442,-0.06395038,0.028602347,-0.031199744,-0.2603722,0.29688475,0.6523474,-0.28410962,-0.009758949,0.12196356,-0.4055711,0.016170979,-0.47757697,0.48601738,-0.5953929,-0.1523227,0.68019,0.70954347,0.22650321,-0.10829691,0.0048566037,0.17942636,-0.13316697,0.09142247,0.034740705,0.1461541,0.034174588,-0.77734756,0.07882292,0.6136151,-0.110545635,0.15532644,-0.1213975,-0.1022918,0.39878586,-0.3414563,-0.2619065,-0.11842259,-0.77485013,0.2136016,-0.45147762,-0.5516236,0.5049549,-0.13390066,0.33144906,0.34319985,0.19145364,-0.3515587,0.5195169,0.15828599,0.7486648,-0.033177715,-0.05083983,-0.38722983,0.09952245,0.2807159,-0.11186105,-0.27170387,-0.17307562,-0.0051980517,-0.4274795,0.28968468,-0.08480566,-0.25625083,-0.29140607,-0.017264301,0.17375548,0.6607919,0.060849886,-0.119572066,-0.107340015,-0.23754257,-0.3567225,0.104422234,0.039846033,0.28270134,0.27712783,-0.12339753,-0.11842939,-0.15570149,-0.16668825,0.25043708,-0.038275275,0.50921965,0.33328357,0.26282942,0.02120985,-0.20991255,0.15602343,0.6026913,0.040115554,-0.16964133,-0.25739798,-0.28010616,-0.3384806,0.2819148,-0.03530597,0.3652114,0.065846264,-0.33956432,0.5556703,-0.19467352,0.9525712,0.07456088,-0.33629692,0.23409732,0.3538336,-0.047112014,-0.15113302,-0.43173113,0.9673934,0.49041784,-0.06295464,-0.14015661,-0.057603955,0.02721688,0.06471268,-0.25657222,-0.13588801,-0.007962356,-0.55905837,0.1747305,0.24012107,0.3155463,0.21991153,-0.14465195,0.03886972,0.2648153,0.04858913,0.139565,-0.37991628,-0.1490465,0.30389178,0.30873662,0.10810394,0.09667497,-0.3865675,0.35321307,-0.35372424,0.05622394,-0.42327258,0.20602399,-0.3641392,-0.21932888,0.22188419,-0.029490089,0.52774966,-0.1618719,-0.20202573,-0.38297808,0.31121954,0.15969323,0.16227995,0.39802125,-0.21666728,0.102623515,-0.016427608,0.44486824,0.7144607,-0.28861746,-0.2068569,0.3254449,-0.3000245,-0.50215244,0.44215894,-0.50367665,0.19827087,-0.07924659,0.06159761,-0.37459612,0.1495195,0.14976822,0.13107549,-0.18854944,-0.75274724,-0.17533056,0.20576006,-0.24014287,-0.22576977,-0.19926663,0.04429674,0.74472475,-0.20427684,-0.20430104,0.08560866,0.32841897,-0.119945206,-0.29668188,0.15557714,-0.34821084,0.16869867,-0.06282865,-0.39752576,-0.25947985,0.10253314,-0.39757195,0.084541,0.07237958,-0.42876986,-0.020363351,-0.25961038,-0.04615888,1.0053388,-0.27525637,0.28443673,-0.35045418,-0.60013574,-0.79169804,-0.27845848,0.25188437,0.12085644,0.067295134,-0.59462047,0.04409079,-0.047211513,-0.39349318,-0.18567978,-0.47548398,0.4183134,0.043312464,0.485721,-0.2212705,-0.75277215,0.12046965,0.16482061,-0.14017613,-0.79636365,0.4393758,-0.058393005,0.85998005,-0.039965093,0.07902288,0.36345437,-0.3709596,-0.13610415,-0.10710905,-0.18166226,-0.6575021,0.07773427 -994,0.4802388,-0.0914431,-0.57846844,-0.08633191,-0.57933915,0.08526304,-0.14699666,0.24884814,0.2653952,-0.17026256,-0.32440543,-0.1392046,0.23041706,0.37469664,-0.13691252,-0.80478513,-0.08293371,0.18498385,-0.79734075,0.48920733,-0.55058736,0.34772044,0.080954626,0.45047265,0.18279281,0.34141934,0.2433458,-0.11862131,-0.12197102,0.068379655,-0.060049444,0.16330753,-0.60489154,0.14960198,-0.1711525,-0.3373746,0.10367816,-0.45990545,-0.24441157,-0.6641208,0.20712547,-0.99186724,0.5175505,-0.17264566,-0.08090626,-0.03986414,0.26865453,0.33477277,-0.37959743,0.15389258,0.20590496,-0.27925804,-0.18389145,-0.23441441,-0.101839185,-0.5022702,-0.4834724,-0.05561912,-0.55950177,-0.31631577,-0.21827386,0.22087495,-0.30645952,0.15552536,-0.073966056,0.24579129,-0.4450099,0.06756349,0.35083556,-0.21403523,0.12157008,-0.47798002,-0.0019180477,-0.030886032,0.45548636,-0.012368336,-0.19142552,0.37594754,0.3813506,0.45447317,0.30397758,-0.36719233,-0.16902484,-0.25559196,0.2401762,0.5075206,-0.11375884,-0.30014104,-0.17437808,0.06916592,0.27548122,0.33774418,-0.056705974,-0.21832743,-0.046933915,-0.13620889,-0.13039671,0.38081023,0.5306399,-0.31123,-0.30204582,0.43362382,0.66444534,0.19943914,-0.14987922,0.119717926,0.050888535,-0.624552,-0.1515484,0.15727076,-0.062473454,0.44981253,-0.18514487,0.12160571,0.9366107,-0.08936228,0.042638276,-0.14177673,-0.04323145,-0.2416605,-0.26760986,-0.078873456,0.16322826,-0.5809504,0.0011615027,-0.30600667,0.81835103,0.19761837,-0.6267351,0.41296166,-0.54231894,0.22876024,-0.11661891,0.5969704,0.65246505,0.33919436,0.2897778,0.7577852,-0.30185276,0.33617184,-0.104676604,-0.5153757,0.050057575,-0.26865342,0.085734904,-0.4069925,0.28390557,-0.22234696,0.060250755,0.07500565,0.51014584,-0.51718616,-0.18172352,0.115676425,0.79631317,-0.3980274,-0.1350937,0.66738486,0.85886663,1.0363319,-0.028070368,1.394921,0.40441525,-0.17846125,0.008570276,-0.28262487,-0.613713,0.18075672,0.36503887,0.013373271,0.29110977,-0.061095573,-0.09744913,0.36509112,-0.32572064,-0.1489736,-0.07081179,0.38980693,0.16606325,0.058545396,-0.42759883,-0.21248117,0.022270307,-0.03957393,0.22266886,0.32876623,-0.22777149,0.38681638,-0.07259846,1.4296672,-0.068518944,0.12248092,0.09603618,0.45562685,0.27528954,-0.035673283,-0.085069865,0.41844344,0.37945092,-0.017119274,-0.6071039,0.20862691,-0.35749063,-0.45351142,-0.14604762,-0.33021596,-0.18705727,0.085892364,-0.46587607,-0.20065258,-0.10983813,-0.17785186,0.4281835,-2.5458353,-0.30603793,-0.11848354,0.3574337,-0.2586139,-0.2350387,-0.20665747,-0.5912653,0.20862766,0.21195707,0.40041563,-0.7176031,0.51554364,0.5106733,-0.49891508,-0.13152885,-0.6803051,-0.08267022,0.015634663,0.43053892,-0.14932832,-0.04507058,-0.26789635,0.2189116,0.60749173,-0.0042252243,0.23311661,0.5379242,0.383284,0.20715556,0.53620964,-0.028932098,0.54238045,-0.26256222,-0.16612086,0.4011346,-0.25386652,0.35556757,-0.27961513,0.12721929,0.51177174,-0.44109285,-0.9563654,-0.6285664,-0.2815048,0.93739045,-0.48133898,-0.46650654,0.20819287,-0.056221254,0.019674286,0.14766008,0.44833136,-0.10319883,0.04636982,-0.7525137,0.032984056,0.026305437,0.13781255,0.043956894,0.02750948,-0.21204041,0.67741245,-0.151573,0.52737045,0.14105871,0.34304142,-0.01658979,-0.4233387,0.09103799,0.8012366,0.2923622,0.10362893,-0.26152742,-0.2951633,-0.13043985,-0.22639188,-0.031914525,0.5680582,0.786831,0.025318976,0.15098207,0.21067563,-0.07856552,0.057237096,-0.18574996,-0.22504899,0.067317866,-0.061798133,0.40170288,0.74891466,-0.24851242,0.4696106,-0.32348996,0.37499094,-0.12206185,-0.68936163,0.63456464,0.70232576,-0.26483965,-0.05568111,0.52010554,0.4535637,-0.5101566,0.47040147,-0.7158358,-0.27890706,0.7535863,-0.19640982,-0.4606759,0.1505476,-0.21718107,0.04757414,-0.79025435,0.3090335,-0.1937603,-0.4017567,-0.40779698,-0.0604269,-3.4237494,0.2670291,-0.18581499,-0.04617957,-0.23422994,-0.058439165,0.23565419,-0.5848941,-0.6941365,0.17132398,0.18787631,0.6915277,-0.12274042,0.2644961,-0.26146972,-0.1463452,-0.11422644,0.11426304,0.12086065,0.24828458,-0.077994555,-0.45054764,0.09295751,-0.048306078,-0.473419,0.26607695,-0.58781075,-0.50949466,-0.07533839,-0.3969276,-0.2192881,0.53686965,-0.44788072,-0.070090644,-0.25898582,0.108710185,-0.33205092,0.14366746,0.15175718,0.27831644,0.19513312,-0.005220769,0.091920644,-0.32788536,0.56445175,-0.09235443,0.26256996,0.03552985,0.054014623,0.07882344,0.42028773,0.57050085,-0.23311782,1.0154824,0.26034683,-0.022378776,0.19316818,-0.19470692,-0.3163008,-0.5536652,-0.3729983,-0.2326079,-0.45167476,-0.49936712,-0.028447598,-0.38496014,-0.8156212,0.47423047,0.047441587,0.32287148,-0.18495242,0.24753013,0.55485624,-0.34192088,-0.010689035,-0.061260503,-0.15747893,-0.6321125,-0.35223526,-0.6620868,-0.5218324,0.10126758,0.99844134,-0.32108888,-0.0031373724,-0.18086791,-0.28739098,0.008447422,0.09499267,0.05972769,0.28027552,0.6255685,-0.12864345,-0.7189586,0.48269552,-0.17985646,-0.13242553,-0.59248906,0.010254921,0.57227945,-0.7592336,0.6315105,0.46620739,0.12142283,0.12776558,-0.6055823,-0.26641876,-0.06557763,-0.19665746,0.48465765,0.088045835,-0.7566191,0.5798053,0.30578196,-0.43057078,-0.8448231,0.30399853,-0.02513786,-0.34433278,0.03264251,0.31092837,0.13761847,-0.100213915,-0.25989187,0.15021059,-0.526566,0.3301631,0.23671344,-0.049235642,0.31286836,-0.16439112,-0.4189031,-0.69979894,-0.13104711,-0.44199845,-0.23756948,0.19416974,-0.11150162,0.0011738464,0.08508977,0.096961856,0.47171804,-0.32346523,0.102172144,-0.006106943,-0.34049946,0.27870914,0.39141473,0.32113373,-0.3419452,0.5280722,0.036139168,-0.2482062,0.14761838,0.14245483,0.4317522,0.15138,0.38400257,-0.09317055,-0.18500063,0.3755203,0.74977946,0.08882616,0.35288116,0.033923365,-0.25116348,0.47279269,0.013052233,0.12063978,0.024812594,-0.36634612,-0.021120735,-0.04360196,0.19607206,0.5073179,0.3651313,0.43959028,0.055443034,-0.15990594,0.12078561,0.09360903,-0.005108457,-1.1052333,0.21975607,0.17360166,0.89016044,0.44253284,0.08976433,-0.098269895,0.562934,-0.21027279,0.13400108,0.46873295,0.095906556,-0.43155292,0.8109376,-0.60143936,0.3213501,-0.31652898,-0.08392052,0.14907217,0.22578266,0.29680738,0.8831969,-0.17586401,-0.027590683,-0.108577006,-0.1940816,0.010820888,-0.2906368,-0.06476776,-0.56323755,-0.3318394,0.692944,0.44570422,0.34191945,-0.27198416,-0.13160197,-0.038088154,-0.11619849,0.09493819,-0.015766248,0.06426707,0.15035829,-0.5051259,-0.3512005,0.5944318,0.09274772,0.16819197,-0.22543761,-0.35372245,0.066904195,-0.34651124,0.0211261,0.017231582,-0.68561983,-0.10244935,-0.16616213,-0.62206733,0.3964094,-0.17928296,0.11326994,0.18030584,-0.017324418,-0.278781,0.1814054,0.097095996,0.9880911,0.03459598,-0.22952096,-0.33257943,0.12514234,0.38497788,-0.25547534,0.095054224,-0.34393904,0.12908052,-0.5141619,0.7116699,-0.1633895,-0.3356232,0.35693023,-0.29902294,-0.026835157,0.59984916,-0.053299397,-0.14565288,0.15740252,-0.047059506,-0.5273715,0.0037677437,-0.34289986,0.19707955,0.24163772,-0.14691876,-0.106772065,-0.18250239,-0.08405334,0.5595967,0.040216513,0.5007518,0.27594346,0.0073678754,-0.22150172,-0.039393652,0.17378023,0.51751655,0.12584297,-0.13949162,-0.391136,-0.44022813,-0.2320678,0.23332268,-0.15701483,0.13601165,0.10838136,-0.22346567,1.0198187,0.013773007,1.149577,0.16787145,-0.3047545,0.09033914,0.51273584,-0.07787043,0.0038836487,-0.36700267,0.7799482,0.48841774,-0.13325179,-0.051164094,-0.36882877,-0.054840825,0.36981916,-0.36450624,-0.022429623,-0.090215445,-0.51498675,-0.4866112,0.32276106,0.23737606,0.12815426,-0.06581099,0.008755298,0.027625374,0.085123256,0.5391444,-0.6969952,-0.23935911,0.17525625,0.25191182,0.027113743,0.3030158,-0.3539327,0.4377398,-0.7390499,0.08847487,-0.51911557,0.14551486,-0.13158603,-0.3331179,0.11823679,0.027215783,0.39914343,-0.30278623,-0.44398808,-0.18427198,0.46940833,0.08584265,0.13028832,0.62917113,-0.28757793,0.059161104,0.1366253,0.5725733,1.2605054,-0.42600554,0.114304066,0.4497881,-0.3153246,-0.5865693,0.44434744,-0.3732832,-0.09964397,-0.10456035,-0.45183548,-0.46183696,0.3215006,0.2434303,0.06724337,0.09374989,-0.57462215,0.021372177,0.37863427,-0.2559,-0.22143818,-0.18512549,0.3190413,0.7899303,-0.29353172,-0.29142213,0.05899367,0.3466212,-0.25369564,-0.49979302,-0.08339012,-0.30103528,0.39820856,0.101444304,-0.0863261,-0.075160295,0.17165986,-0.4286206,0.106161624,0.16000623,-0.37829956,0.12796566,-0.26210642,0.19018644,0.84714675,-0.17953134,-0.1472,-0.83843625,-0.36178055,-0.93511117,-0.454464,0.1670638,0.15021744,0.026117451,-0.37996265,0.06925832,-0.10584938,-0.15100886,0.06313166,-0.4935661,0.40392816,0.08684096,0.49834287,-0.26446676,-0.9745467,0.040179014,0.042077623,-0.26907116,-0.6626394,0.5985699,-0.13347608,0.8479388,0.036669362,-0.0978611,-0.008369185,-0.34554374,0.3061211,-0.47477466,-0.08504635,-0.8760117,0.12199935 -995,0.43395612,0.07914376,-0.69459194,-0.22184943,-0.356422,0.08178975,-0.22408906,0.53594184,0.05933177,-0.47812518,-0.21615852,-0.23668262,-0.008727095,0.2414905,-0.2859335,-0.627116,0.18560958,0.13001391,-0.46221733,0.26129603,-0.4707549,0.54509985,0.18530956,0.25630188,0.07189907,0.08687579,0.16737577,-0.117459945,-0.07701053,-0.5387954,-0.035854362,0.0762371,-0.7556935,0.1491298,-0.410656,-0.5390368,0.25850576,-0.4813591,-0.25306895,-0.79122764,0.15315807,-0.7534703,0.66999733,-0.043068312,-0.42149606,0.17583588,0.21944854,0.37125507,-0.02949153,0.1786463,0.15953921,-0.21042076,-0.10878251,-0.057454415,-0.33833975,-0.59799296,-0.63167053,0.18588018,-0.68113816,-0.24821922,-0.17518108,0.14176211,-0.47862554,0.047461953,0.009818273,0.47892672,-0.39615163,-0.14633141,0.2723139,-0.17949417,0.41952705,-0.6135484,0.017395353,-0.15023734,0.2972711,-0.25144902,-0.15459062,0.18652216,0.2611957,0.6079545,0.13051353,-0.3529794,-0.1332181,-0.13680588,-0.06196999,0.50925815,-0.18498985,-0.32204267,-0.2601285,-0.053605467,0.40887636,0.28601572,0.078921996,0.011821947,-0.12202071,0.0859022,-0.31331584,0.5593737,0.5473643,-0.55713505,-0.00814917,0.33325368,0.47748464,0.21832426,-0.045839585,0.19540851,0.005401694,-0.6281935,-0.25457022,0.06219739,-0.23902157,0.44323573,-0.29093376,0.32728752,0.67486745,-0.20434077,0.06723196,0.36760828,-0.042402823,0.04972812,-0.088871464,-0.29158112,0.3675666,-0.65639156,0.06260854,-0.26584247,0.8662609,0.21859524,-0.5980342,0.30443838,-0.63107693,0.15047625,-0.11102907,0.63978034,0.6691262,0.5955035,0.16878448,0.7892745,-0.43251052,0.016576396,-0.035340257,-0.22786808,0.12733185,-0.13564192,-0.102414444,-0.28855425,0.0464893,-0.111583844,0.10482783,0.07935714,0.40151986,-0.6429772,-0.07790406,0.14411055,1.0118656,-0.25833794,-0.08765221,0.76935875,0.9045598,0.96531457,0.024399344,1.120934,0.09628658,-0.1420901,-0.07664586,0.14028491,-0.55179465,0.38567662,0.396321,0.116821766,0.30321184,-0.0360342,0.033665825,0.33598232,-0.43090057,-0.16864443,-0.13993376,0.2124592,-0.0528112,-0.17731752,-0.48086914,-0.15860096,-0.0360362,0.01781579,0.17035298,0.26372787,-0.06083704,0.42055467,0.0030184984,1.0794591,-0.12466632,0.14332081,0.03053315,0.4399231,0.2604749,0.04380318,-0.053200595,0.18373744,0.21574332,0.22894137,-0.6125693,0.02308472,-0.30348793,-0.40053743,-0.2584191,-0.29185122,-0.24813318,-0.1858573,-0.5530384,-0.18275312,-0.14372052,-0.26537186,0.4525198,-2.3868365,-0.32391864,-0.1437918,0.3514026,-0.22102274,-0.3725355,-0.14276603,-0.4884879,0.57626504,0.31262055,0.565322,-0.68931484,0.4837775,0.5021621,-0.2580929,-0.16329002,-0.62409365,-0.20155679,-0.01679633,0.11375988,0.11848096,-0.38323376,-0.18378222,0.14132933,0.54233056,0.0159251,0.10716847,0.008164908,0.31254464,-0.1356001,0.47435632,-0.0058189207,0.55716413,-0.31483346,-0.14516595,0.41355133,-0.36186272,0.11839117,-0.25528148,0.11204624,0.37085143,-0.61922437,-0.9354022,-0.6884846,-0.38649216,1.2646139,0.036840748,-0.4948233,0.26589695,-0.07049971,-0.2012618,0.09585665,0.36416197,-0.07272989,0.21491551,-0.63729316,-0.067514226,-0.124656424,0.1808832,-0.07216019,0.1292867,-0.53818244,0.6045538,-0.10473131,0.30582276,0.2898269,0.26846412,-0.26867226,-0.5514148,-0.028073302,1.1289943,0.7101515,0.1588505,-0.37125382,-0.055967946,-0.5644415,-0.050913103,-0.075330555,0.61322594,1.009718,-0.12727994,0.12778372,0.35051963,-0.044073123,0.17973034,-0.05033738,-0.5653266,-0.13877764,0.010227501,0.5745138,0.4578309,0.013027127,0.5011377,-0.035093337,0.45148635,-0.272645,-0.55736315,0.4915131,0.7514643,-0.44609421,-0.316804,0.65295094,0.2925103,-0.23608346,0.58177567,-0.64645493,-0.63863546,0.42177382,-0.026653955,-0.57791865,0.19797246,-0.36604524,0.23198628,-1.1317035,0.3556381,-0.39082116,-0.53633374,-0.36063877,-0.2853844,-3.3873436,0.20156904,-0.17170143,0.15179195,-0.24754238,-0.08569892,0.34853488,-0.38377175,-0.761065,-0.03183158,0.086536594,0.7975175,-0.0888992,0.16774593,-0.27805862,-0.50729877,-0.28815243,0.36639664,0.29603735,0.16805312,-0.06855537,-0.31594467,-0.04609256,-0.29352596,-0.47243792,0.059035752,-0.6715693,-0.61960155,-0.31684667,-0.5793945,-0.35592058,0.7422809,-0.3568612,0.045032736,-0.27693018,0.14761446,0.07549618,0.1755452,0.12336405,0.1435428,0.029025713,-0.13851148,0.08513603,-0.37918684,0.27662566,0.14543779,0.34859374,0.23070478,0.00044141497,0.18402995,0.57917595,0.6112656,-0.15382078,0.87284786,0.2512595,-0.013585674,0.4400722,-0.29875436,-0.52652574,-0.44792816,-0.30779833,-0.030075928,-0.44370228,-0.32717034,0.12696777,-0.34217533,-0.84605414,0.587648,0.068081714,-0.00967899,-0.20144033,0.46798882,0.54670835,-0.16694136,-0.14757523,0.0716788,-0.07748925,-0.5109574,-0.16276087,-0.7739948,-0.5483925,-0.1861025,1.1609153,-0.21986988,0.080615565,0.085410155,0.21264254,0.21185027,0.010787046,0.11294986,-0.06737799,0.5330699,-0.0038180265,-0.76902753,0.39264336,-0.20030198,-0.1905158,-0.58025074,0.1423956,0.766095,-0.70592105,0.3191199,0.7424901,0.07352984,-0.13344982,-0.53128445,0.13819928,0.0013095279,-0.34950548,0.43644708,0.055143587,-0.7417348,0.5821882,0.25891814,-0.30320188,-0.7294261,0.6596915,-0.021851847,-0.23609832,0.07358261,0.47310543,0.25634265,-0.05919981,-0.0546523,0.26361004,-0.51176316,0.17270672,0.2877365,-0.047396116,0.77596337,-0.2119884,-0.3485399,-0.72928673,-0.12180209,-0.6303493,-0.35531646,0.21277942,-0.05903726,-0.08947091,0.3048298,0.15101874,0.5368777,-0.2830602,0.12498194,-0.32882208,-0.34471336,0.57851034,0.5468806,0.54108226,-0.45975408,0.65235275,0.065336466,-0.016951997,0.11915689,0.03439234,0.52603763,-0.20868865,0.40374225,0.20152111,0.0053443653,0.05861234,0.7095346,0.12353661,0.3833365,0.12069046,0.02044685,0.1571016,0.13416775,0.06569259,0.040531497,-0.49813518,-0.112390526,-0.17571394,-0.02864795,0.54964393,0.14316097,0.25471464,0.027667029,-0.1683481,-0.046064854,-0.0047820085,-0.18665807,-1.1238654,0.48539957,0.27434838,0.7744699,0.34060255,0.23877041,0.08175985,0.49098536,-0.25080797,0.19282852,0.4208601,0.28595617,-0.34770307,0.6195065,-0.6771498,0.52827114,-0.053031,0.0001104985,0.042430345,-0.116347805,0.6579728,0.86971515,-0.13633718,0.09989004,-0.07661758,-0.28830633,0.19621284,-0.5082142,-0.20142163,-0.40040588,-0.030387912,0.7967022,0.35465363,0.15158017,-0.24545076,-0.026980365,0.11293528,-0.1650969,0.26426822,-0.107903294,0.048974577,-0.2657577,-0.4388767,-0.21154276,0.53532755,0.16464524,0.17894614,0.0803077,-0.10917771,0.21694772,-0.108064875,0.20074283,-0.104979925,-0.6037897,-0.019244624,-0.6803873,-0.4038034,0.28601214,-0.30262595,0.2295382,0.13781989,0.10514689,-0.24742696,0.29768577,-0.061068747,0.47175097,-0.09652849,-0.32091832,-0.22888705,0.22658846,0.21687813,-0.55264634,-0.25224778,-0.17322867,0.20513286,-0.49516034,0.34476784,-0.3194628,-0.36204386,0.110590756,-0.17321506,-0.17133543,0.44507584,-0.17181359,-0.0016642745,0.31849837,-0.16906847,-0.105823584,-0.20176263,-0.16258523,0.12946458,0.16123155,-0.16336107,-0.15692125,-0.2547936,-0.02652162,0.39298883,-0.15111338,0.34940976,0.30700594,0.082653746,-0.4954968,-0.16178472,0.10120629,0.56151503,-0.038084,-0.035081156,-0.35059384,-0.3876775,-0.2414136,0.15789866,-0.1270402,0.21471511,0.13135622,-0.21322183,0.89984226,0.2264014,1.2876663,0.00045850448,-0.41515806,0.0434891,0.5393954,-0.07640074,-0.08700182,-0.41751957,1.1746616,0.3702992,-0.2767991,-0.1785877,-0.36166498,0.04276674,0.17798771,-0.20069548,-0.3681531,-0.21637197,-0.5318465,-0.32582092,0.3782077,0.46134853,0.13037702,-0.15420905,0.05061922,0.2888546,-0.038029917,0.4203772,-0.62436384,-0.21219638,0.324131,0.23333676,-0.06765705,0.121008776,-0.48689047,0.29838854,-0.6971591,-0.032376196,-0.3623708,0.1834307,-0.128449,-0.51559937,0.33176824,0.09597795,0.34605926,-0.24888137,-0.42375627,-0.0949433,0.28278825,0.17803153,0.15699218,0.76067704,-0.32781363,-0.063510664,-0.023449685,0.5682988,1.2779897,-0.19672163,-0.026186073,0.33623543,-0.24996923,-0.5973192,0.2529158,-0.6900193,0.11212938,-0.11832229,-0.4269788,-0.49816146,0.23442318,0.10581766,0.034179177,0.1883334,-0.7902312,-0.09501732,0.18570757,-0.23178056,-0.23490581,-0.32601422,0.24292101,0.76924133,-0.21529426,-0.11349203,0.034606006,0.49492756,-0.20184848,-0.71823317,0.09396416,-0.061171144,0.33010417,0.06924768,-0.3238062,0.10471482,0.09672703,-0.5235451,0.14358275,0.331631,-0.30889538,0.059105407,-0.27244446,0.26077995,0.6920128,-0.03930685,0.13926479,-0.32197925,-0.5024935,-0.8056301,-0.060072947,0.4786425,0.28903428,-0.008180733,-0.5724655,-0.06411223,-0.29865503,-0.18398584,-0.08562094,-0.3104275,0.3110511,0.14758173,0.5313948,-0.15377672,-0.807057,0.15689747,0.029609231,-0.20727964,-0.60013807,0.5371298,-0.13916269,0.75939053,0.2717189,0.021192163,0.2512996,-0.5697509,0.12501898,-0.15763608,0.013167462,-0.74314743,0.11416189 -996,0.3830308,-0.2402277,-0.39379904,-0.10161166,-0.11658681,0.28056946,-0.21423906,0.40391216,0.081086546,-0.537955,-0.105117135,-0.21911027,0.08475978,0.1884912,-0.14662036,-0.3183106,-0.06488561,0.01340969,-0.36538634,0.44457817,-0.50374407,0.35291252,0.007907931,0.29693902,0.03858277,0.26759642,0.11784415,-0.15542434,-0.10317465,-0.19269486,-0.09489056,0.24448475,-0.5279676,0.0743845,-0.03939437,-0.44333866,-0.027695093,-0.34692335,-0.24881443,-0.6397265,0.2388154,-0.83784527,0.4393197,-0.039189484,-0.3642797,0.38039646,0.05333836,0.2614914,-0.14740492,0.14047095,0.08291634,-0.04298396,0.10405208,-0.15618624,-0.2113892,-0.3447343,-0.46335372,0.06898805,-0.38165912,-0.28733814,-0.31066892,0.12375732,-0.20397814,-0.100991055,-0.20951214,0.31554773,-0.47909755,-0.15371329,0.15691207,-0.1393571,0.46872905,-0.5239621,-0.122350074,-0.11317326,0.23741181,-0.30026215,-0.11807129,0.12986735,0.35732555,0.62578464,-0.017501397,-0.089948885,-0.4009126,-0.17207566,0.25268656,0.5318076,-0.16676296,-0.4378995,-0.16381119,-0.18853919,0.14530881,0.22138509,0.19219233,-0.26915994,-0.20303702,0.015426965,-0.25561953,0.20725378,0.39842212,-0.53174734,-0.28837445,0.45021963,0.62285143,0.1324008,-0.11121461,0.08217167,0.013705698,-0.47513956,-0.09004931,0.2042822,-0.24579991,0.4661247,-0.17328721,0.4425245,0.62349147,-0.17600146,0.26218495,-0.08716298,-0.09030331,-0.22732137,-0.33586627,-0.07366989,0.12584946,-0.42272797,0.12933974,-0.12102806,0.7786063,0.063046336,-0.6762438,0.2847895,-0.44946298,0.08685227,0.009132042,0.5236649,0.50986063,0.26988497,0.06678878,0.6664324,-0.48108107,-0.05562187,-0.18118839,-0.2715043,-0.046907265,-0.14756137,-0.17785852,-0.5146356,0.043729782,0.14423366,0.057108086,-0.021870099,0.4276919,-0.49924868,0.07118588,0.25882703,0.7334184,-0.356887,0.028001927,0.7215551,0.94574195,0.8139768,0.09009228,1.1431915,0.107648656,-0.2509695,0.050122377,-0.28678587,-0.5999438,0.24331442,0.39362818,0.22244658,0.28619796,0.115124725,0.04787539,0.4961484,-0.34233564,0.119150236,-0.30542564,-0.033424582,0.08290566,0.0018125275,-0.3133836,-0.1730395,-0.024876047,0.07880596,0.035213236,0.09183478,-0.103536315,0.33509028,0.16970548,1.599958,-0.27554992,0.14800853,0.12945811,0.2938502,0.13222066,-0.16037968,-0.0152573865,0.3009969,0.37631425,-0.0022958438,-0.68476415,0.059487212,-0.014084742,-0.6684681,-0.070342146,-0.22087376,-0.14986263,0.034156818,-0.5700913,-0.1080213,-0.10691998,-0.3662446,0.42502105,-2.7392523,-0.11257233,-0.14454421,0.23808652,-0.4091978,-0.4228398,-0.0723687,-0.30439007,0.40098667,0.41799715,0.38283804,-0.67009485,0.32674226,0.41104117,-0.3664276,-0.056427427,-0.5953755,-0.14686552,-0.06857276,0.211509,0.11700862,-0.15700084,-0.027066758,0.116673864,0.5281678,-0.15698808,0.15953684,0.15848774,0.31065604,0.01794659,0.48839122,0.07527541,0.4790677,-0.13918611,-0.179311,0.43212783,-0.3205286,0.2858544,-0.17393889,0.2925797,0.2867286,-0.42519173,-0.70130134,-0.76575077,-0.5017779,1.2508546,-0.17506891,-0.49026912,0.2858394,-0.15534489,-0.30663,-0.14429967,0.49566588,-0.08173752,0.0019035756,-0.90095365,0.095632546,-0.15633088,0.23931226,0.04251555,-0.08060091,-0.47411555,0.7817963,-0.09795485,0.4220352,0.50281113,0.18904074,-0.11822391,-0.3129083,-0.04835119,0.96750987,0.41688505,0.16244248,-0.3449202,-0.19864792,-0.38858667,0.034080394,0.16068506,0.34185454,0.65772766,0.14099239,0.10775706,0.17079805,0.038155124,0.01237992,-0.2136888,-0.17906351,-0.051634975,-0.00080677035,0.60597724,0.3610539,-0.143317,0.40100545,-0.21489696,0.08349681,-0.34257957,-0.3527746,0.46620065,0.8058564,-0.111686975,-0.26092562,0.66351414,0.4961502,-0.14309914,0.28586853,-0.6676459,-0.2908021,0.46144903,-0.28614137,-0.42031854,0.2577599,-0.3438218,0.12801541,-0.99083745,0.18626341,-0.34404537,-0.3536916,-0.59169203,-0.099274635,-3.674952,0.29881617,-0.16001002,-0.25244483,-0.105558865,-0.16763267,0.32176036,-0.5121381,-0.47042185,0.093460076,0.015897488,0.57916296,0.030210635,0.13427138,-0.3052841,-0.10544917,-0.1722745,0.09732445,-0.019479247,0.25827515,-0.071107745,-0.36934468,-0.05917236,-0.2135604,-0.4316933,0.04195725,-0.55422246,-0.4962916,-0.122181654,-0.40346438,-0.35253394,0.5441415,-0.40712035,0.09281321,-0.20183489,-0.021946777,-0.14091945,0.53205746,0.097555384,0.09590387,0.07755682,-0.07527315,-0.0443661,-0.2840576,0.22820751,0.11308516,0.10677667,0.4699231,-0.2977738,0.14723797,0.36711776,0.58902985,-0.09264032,0.76491624,0.46622407,-0.09373151,0.33773813,-0.26805285,-0.09458018,-0.5825816,-0.36671507,-0.01710475,-0.43116486,-0.5464634,-0.17615543,-0.26649988,-0.7407611,0.51811296,-0.015144187,0.06072516,-0.005344367,0.34786388,0.4204678,-0.16394919,-0.020457966,-0.122223265,-0.11162026,-0.44113076,-0.4732973,-0.64083743,-0.414723,0.038537983,0.9593367,-0.11018076,0.026375743,0.021429906,-0.2244562,-0.08695468,0.10324585,0.059264883,0.027202837,0.33813968,-0.09642872,-0.5837561,0.5629359,0.15787435,-0.29966533,-0.39340064,0.05745846,0.63862044,-0.5174438,0.43074882,0.3656145,0.16129272,-0.057061806,-0.521563,-0.077713124,-0.019052673,-0.4429089,0.38704246,0.12741968,-0.64345235,0.45094478,0.32253087,-0.034876592,-0.7479626,0.5208099,0.07088302,-0.34212646,-0.017572252,0.33898935,0.0423412,0.054407243,-0.17043567,0.19211811,-0.48301208,0.31623918,0.31015167,-0.007945853,0.45496145,-0.26826993,-0.12745479,-0.64341813,-0.08843562,-0.5097816,-0.148381,0.23592523,0.037783884,0.12927896,0.22048807,-0.0056250324,0.48488358,-0.32625172,0.11745012,-0.040044893,-0.08632629,0.23570721,0.3717591,0.37239748,-0.3144054,0.54546094,0.045052335,-0.0491841,-0.33896098,0.09680527,0.5980395,0.15300076,0.3689884,-0.22660962,-0.28642073,0.34646204,0.7507678,0.29397967,0.48831138,0.0018862922,-0.2090606,0.29326516,0.1502845,0.19647093,-0.012214144,-0.434291,-0.054867107,-0.1695169,0.16519937,0.36748356,0.15039852,0.403712,-0.14912222,-0.24522339,0.117808774,0.23022223,-0.027664065,-0.8645437,0.28401005,0.1832474,0.8096597,0.52375096,-0.06079326,0.19676752,0.4801161,-0.30082414,0.17980808,0.26765165,-0.044240177,-0.63830936,0.5493024,-0.69449496,0.28225663,-0.11516263,0.025628047,0.05029563,-0.12864558,0.43173906,0.71400654,-0.07574723,0.063845515,-0.027566437,-0.26480195,0.089683756,-0.35220852,0.050615497,-0.47553858,-0.18239947,0.6688275,0.4547933,0.390894,-0.1707575,-0.024904259,0.13555439,0.044712212,0.15492629,0.09522917,0.24357158,-0.08199759,-0.65921104,-0.20906813,0.50937396,0.049820997,0.15650608,-0.020996286,-0.4626301,0.21918194,-0.15350844,-0.12859143,-0.0063172937,-0.4794127,0.050033484,-0.38989204,-0.45071557,0.24721415,-0.19166994,0.3330874,0.1739001,0.02719969,-0.15740258,0.19117762,0.14352886,0.81676203,0.2008555,-0.03539602,-0.34321925,0.16617815,0.2304197,-0.20008871,-0.16317685,-0.07281471,0.0033859808,-0.6230414,0.3098795,-0.095939875,-0.22600527,0.37417275,-0.2038427,-0.041316655,0.58142024,-0.09961832,-0.10575182,0.055705857,-0.240089,-0.28871354,-0.10349835,-0.10304864,0.35810977,0.12518689,0.0041294335,-0.0833309,-0.005106,-0.14182152,0.39480686,0.07867101,0.32993716,0.399305,0.007350842,-0.46562564,-0.10998719,0.07109246,0.44418532,-0.110627435,-0.023635881,-0.17979303,-0.55701005,-0.24725148,0.09516661,-0.111988276,0.26980278,0.0037976583,-0.2682163,0.93399674,0.06950095,0.99044764,0.15692319,-0.3680954,0.072575144,0.37233633,-0.050199825,0.06962701,-0.3912702,0.87903583,0.48415142,-0.055570085,-0.08404495,-0.10051642,-0.005028105,0.14236291,-0.1511225,0.018654617,-0.027161557,-0.6311216,-0.29900455,0.35977632,0.28555474,0.11822461,-0.02062681,0.041533988,0.14042921,0.004068293,0.41944045,-0.57282007,-0.2544224,0.298707,0.20730048,-0.008154541,0.045836058,-0.42815268,0.42281142,-0.64075094,0.04841632,-0.39524496,0.07898281,-0.16216221,-0.15380627,0.17871103,-0.01883442,0.30799204,-0.23703952,-0.39168045,-0.23657149,0.48467636,-0.015788866,0.18078308,0.49990463,-0.20685855,0.20540908,0.057106175,0.4506107,1.0720526,-0.22440399,0.097627446,0.39806053,-0.2844126,-0.495026,0.31255212,-0.32216474,0.16824177,-0.029114878,-0.25832993,-0.3324284,0.30142227,0.29517096,0.07960311,0.011722807,-0.5022685,-0.19719627,0.34485805,-0.3514125,-0.15753499,-0.1904501,0.084855095,0.6325415,-0.2998048,-0.34348062,0.03903424,0.37500435,-0.4152796,-0.5287396,0.1726408,-0.34330565,0.3091311,0.07426767,-0.31521785,-0.052937172,0.075998895,-0.39461422,0.060239248,0.15249448,-0.37453517,0.07084853,-0.4342108,0.11245051,0.8505976,-0.14506432,0.09397468,-0.57534283,-0.50325614,-0.9235022,-0.2896038,0.5951508,0.115379356,0.09739698,-0.396814,0.122974426,-0.17526652,-0.035659187,0.08559125,-0.31924495,0.50747484,0.23159665,0.43314227,-0.18724874,-0.4788147,0.1122943,0.13094127,-0.1220143,-0.41921768,0.48833954,0.04905438,0.8206844,0.005936263,0.043536477,0.26312765,-0.66668797,0.03486778,-0.14666584,-0.18313904,-0.8684446,-0.016606128 -997,0.66166264,-0.43905726,-0.6052342,-0.09265026,-0.18846497,0.28831106,-0.26524162,0.5187489,0.20000248,-0.6958007,-0.32140446,0.013938576,-0.1229528,0.31272423,-0.30913246,-0.44093233,-0.14865316,0.08547083,-0.685799,0.701931,-0.19157322,0.1987866,0.03304199,0.34213176,0.4247454,0.24469236,0.17582288,0.062093545,-0.04486977,-0.3371398,-0.04940536,-0.29324418,-0.65918595,0.36940214,-0.4344473,-0.39297396,-0.16669051,-0.7468637,-0.401897,-0.8680693,0.35995084,-1.0797526,0.6940479,-0.065985635,-0.22251293,0.07717077,0.121524855,0.29131833,0.0673771,-0.012936413,0.24284144,-0.06981921,-0.0028288842,-0.09947636,-0.2645848,-0.2663835,-0.7269204,-0.10457675,-0.44198352,0.07176799,-0.11927404,0.09650359,-0.30195034,0.03934569,-0.17123757,0.5257828,-0.39157262,-0.04269699,0.13516736,-0.15437213,0.43644905,-0.698786,-0.27678415,-0.04364807,0.4393654,-0.18415049,-0.057200294,0.21667814,0.010450035,0.3477835,0.10985939,-0.19928423,-0.3346598,0.021861427,0.14266375,0.46064416,0.037748348,-0.16714227,-0.30362636,-0.115506604,0.68815964,0.3564877,0.13098195,-0.37518263,-0.006075026,-0.3289057,-0.10277816,0.65473783,0.6228625,-0.086783424,-0.08669892,0.4047196,0.68581355,0.35116237,-0.1150054,-0.030875802,0.0008890495,-0.39190835,-0.20554395,0.42887902,-0.1503578,0.4232622,-0.120318696,0.24797495,0.4006711,-0.19520581,-0.013293299,0.33081517,0.18503815,-0.28114194,-0.004545465,-0.45446473,0.32599124,-0.5330276,0.17965873,-0.46932077,0.7588485,0.091152385,-0.9385107,0.26642495,-0.5832691,0.075034045,0.20181918,0.5211155,0.68561566,0.5439318,0.030936662,0.9106263,-0.28773293,0.095002666,-0.13320166,-0.22735457,-0.015228438,-0.18082812,0.104725495,-0.5004972,-0.2724505,-0.024597203,-0.05085229,-0.21730156,0.37718698,-0.38577282,-0.4125883,-0.02847394,0.6443995,-0.2522911,0.16840021,0.95100576,1.1309191,0.9269148,0.11244647,1.281567,-0.10341612,-0.27550915,-0.19472705,-0.16755685,-0.87008154,0.4285615,0.31015188,-0.32874078,0.7717148,0.073299125,0.15293176,0.1304463,-0.521423,0.09984903,-0.09128497,0.1729987,-0.24257293,0.11687976,-0.54713,-0.45264387,0.007622838,0.13808343,0.2762645,0.2090543,-0.2512135,0.43176222,0.32912812,1.3145926,-0.36409396,0.22100517,0.12619765,0.43272185,0.10349462,-0.16888115,-0.26657835,0.1515481,0.4785379,0.09554714,-0.5223533,0.10795655,-0.121272825,-0.26416948,-0.13744889,-0.39117506,-0.15682188,-0.1639045,-0.18789022,-0.079004504,-0.27736652,-0.7565898,0.24809685,-2.4704108,-0.15481874,-0.15950415,0.40146118,-0.49920464,-0.28072724,-0.16544336,-0.5672564,0.48047733,0.24032691,0.46899194,-0.6161157,0.35044274,0.66263217,-0.58454776,0.07439085,-0.59793216,-0.1080729,-0.0025948018,0.4511841,-0.011551207,-0.10618514,0.07094289,0.4096643,0.38719052,0.29993922,0.099609375,0.46002093,0.42732725,0.04577586,0.5162869,-0.10584577,0.40407056,-0.48468548,0.0018681601,0.34738332,-0.48011866,0.12324731,-0.2619319,0.22022429,0.5486309,-0.6750274,-0.45457926,-0.6303172,-0.31060338,1.3427039,-0.3739241,-0.54965746,0.014967266,-0.20722571,-0.32425177,-0.08282907,0.6067168,-0.36810392,0.073105775,-0.75810784,-0.38299438,-0.2175239,0.35326132,-0.06628455,0.14514004,-0.77709013,0.69399804,-0.05522763,0.62444144,0.32411218,0.27435362,-0.27743426,-0.49866533,0.28747043,0.977132,0.53522146,0.064223304,-0.27271515,0.007824814,-0.4142694,-0.043162882,0.061784625,0.6789015,0.6668886,-0.19995423,-0.050736587,0.4281335,-0.0999581,0.33044544,-0.063149214,-0.40468273,-0.46975765,-0.09856184,0.6239008,0.5652459,0.010597503,0.27655464,-0.13722274,0.2507549,-0.36356756,-0.3292231,0.675162,0.7432084,-0.17174128,-0.28184095,0.6713022,0.5479496,-0.26444504,0.57771426,-0.6829409,-0.34742147,0.29055625,0.022846157,-0.61901647,0.23055954,-0.25157598,0.29839548,-0.9127817,0.21054327,-0.42114776,-0.48048234,-0.52500576,0.06718313,-2.0878968,0.14700468,-0.12678818,-0.35181093,-0.35033664,-0.29888123,0.1572409,-0.6048646,-0.8104738,0.2798741,-0.08706047,0.7927637,-0.08078467,0.07206604,-0.13684082,-0.44890085,-0.4955542,0.19952507,0.06100591,0.3844537,-0.12613514,-0.2802712,-0.09939269,-0.09916212,-0.37061954,-0.03196333,-0.5720914,-0.3667887,-0.20706244,-0.6675687,-0.37562996,0.62393534,-0.12516592,-0.013084319,-0.19048227,0.007913893,0.04418995,0.4638227,-0.06606686,0.28537565,0.2590149,-0.28268808,0.06556736,-0.12707938,0.38111883,0.18409558,0.23095004,0.41799498,-0.41203722,0.34879938,0.41634983,0.8114077,-0.072843835,0.8602109,0.23481897,-0.104405805,0.35384703,-0.3085001,-0.4782055,-0.5027281,-0.049498785,0.21686044,-0.3841023,-0.43794426,-0.21614878,-0.24192336,-0.91649187,0.4377432,0.2226009,0.5258926,-0.024551356,0.13217938,0.49323636,-0.03142901,0.053925622,-0.00844084,-0.2225655,-0.43208537,-0.21616678,-0.70602095,-0.33862203,0.054510463,0.84715205,-0.091122285,0.21521664,0.29956573,-0.3570351,0.4174296,0.03728026,0.0642758,-0.054050278,0.3057058,0.21078233,-0.48098612,0.45695096,0.15626444,-0.11741636,-0.46518523,0.25678188,0.9162982,-0.50634754,0.40091237,0.25267485,-0.10631974,-0.71336573,-0.5298388,0.10931133,0.009850049,-0.07893242,0.32450065,0.38482746,-0.59169877,0.28465325,0.11771176,0.037228465,-0.7522877,0.67238295,0.012695776,-0.14879715,-0.12774917,0.59777683,-0.015801072,-0.04456325,0.0348942,0.16906996,-0.305636,0.2428166,0.17630407,0.004952973,0.34770894,-0.11515812,-0.17620333,-0.7973487,0.2462533,-0.78715706,-0.16910365,0.527073,0.06485429,0.0043833377,0.18788962,0.1794242,0.3629048,-0.3355391,0.2685631,0.035801377,-0.20231406,0.45580617,0.41480976,0.5287514,-0.4884122,0.47498608,0.10877703,-0.021510303,0.06885572,0.14744952,0.43018237,0.16325662,0.2431953,0.03845657,-0.22135803,0.118329905,0.47949442,0.30120865,0.33847532,0.23834357,-0.022995522,0.11305752,0.10833498,0.4527811,-0.28407854,-0.7903619,0.022503257,-0.035225984,-0.104141615,0.265548,-0.026106268,0.1856423,-0.17214063,-0.38123688,-0.07560634,0.17049168,-0.34592617,-1.4952619,0.3179761,0.13838659,0.7647244,0.39637935,-0.018302932,0.07473327,0.5809663,-0.1627912,0.21781917,0.31681257,0.13786218,-0.48829108,0.5083455,-0.4963625,0.44003925,0.13119265,-0.045164682,-0.027799796,-0.13767758,0.39196077,0.7857641,-0.15559027,0.0029275685,-0.22903499,-0.24822387,0.06642981,-0.4066801,0.28556228,-0.5288402,-0.42080402,0.60783756,0.3593406,0.53768235,-0.07251498,0.0041098474,-0.1370976,-0.081184946,0.3437666,0.10825884,-0.034021966,0.050613426,-0.7198932,-0.11231766,0.28850633,-0.015518224,0.07370058,-0.026085097,-0.17706116,0.017560259,0.0045009553,0.09659323,-0.022594359,-1.1304651,0.06592016,-0.3736895,-0.20367172,0.03548334,-0.3135037,0.15183334,0.18715768,-0.16561708,-0.21332045,0.12537923,0.3483165,0.7057503,0.09353855,-0.19988477,-0.40284324,0.22521563,0.13512579,-0.28775397,0.13967682,-0.018939376,0.09459303,-0.4716429,0.24546047,0.059551775,-0.51361513,0.19599423,-0.16861928,0.014470262,0.80172795,-0.0953051,-0.020001601,-0.026640683,-0.057659052,-0.22446966,-0.2049882,-0.23690858,0.102831244,0.32182983,0.004868096,-0.07841999,0.06449177,-0.17075051,0.275748,0.36734223,0.5901536,0.5969374,0.07699593,-0.620727,0.07133659,0.17078848,0.4343834,0.19109218,-0.12243547,-0.3890132,-0.4416915,-0.4650902,0.5329238,-0.11313865,0.20485592,0.10571854,-0.028193105,0.67333347,0.050835203,0.9507904,0.047911488,-0.30411947,0.0014045,0.5626393,-0.07295178,-0.3287595,-0.4383226,1.1264608,0.48370814,-0.24854684,-0.053441633,-0.37153408,-0.14173767,0.07343421,-0.28197172,-0.12903732,0.020011375,-0.6069977,-0.25750026,0.19351871,0.22851832,-0.09705434,-0.20791188,-0.08960671,0.52519697,0.10548429,0.5024853,-0.51265633,-0.07639821,0.36597276,-0.13154514,0.1309512,0.26522082,-0.5382803,0.17770998,-0.7166911,0.22031322,-0.34005585,0.19734046,-0.14953366,-0.42110515,0.1937951,0.04669714,0.51443064,-0.46475387,-0.55692774,-0.17970341,0.41601866,0.10872233,0.17815922,0.5927369,-0.17945682,0.22629806,0.0701633,0.47766042,1.0049372,-0.03131751,0.26345944,0.24274102,-0.49023324,-0.74829936,0.016696783,-0.3159749,0.4567728,-0.19544958,-0.2871253,-0.41298074,0.25806805,0.13697858,0.043355115,0.07852618,-0.7612727,-0.36406586,0.31283173,-0.24792945,-0.18334684,-0.405006,-0.12492429,0.48935977,-0.08639847,-0.43534058,-0.086647436,0.17421757,-0.12313707,-0.47417125,-0.1894739,-0.1871753,0.07391742,-0.09821047,-0.42313272,-0.1278185,-0.016205799,-0.41115847,0.064016186,-0.136251,-0.38598794,-0.06544376,-0.17759626,-0.162786,0.8478735,-0.26457727,-0.014297152,-0.30857,-0.49381813,-0.8094263,-0.42829123,0.013556624,0.085150264,-0.0125121595,-0.6914198,0.10099103,-0.418711,0.16659507,0.04882874,-0.3479873,0.39839706,0.23614898,0.63207245,-0.09246204,-0.9035495,0.5021986,0.13379805,-0.15070382,-0.5634321,0.729627,-0.04998662,0.57467353,0.12245921,0.07473238,-0.07440969,-0.83421624,-0.009074444,0.039690457,-0.11056165,-0.7649575,0.33720097 -998,0.5776879,-0.2192989,-0.5475892,-0.15719675,-0.15818483,0.21227771,-0.16512355,0.34703457,-0.033438675,-0.6349197,-0.0840909,-0.24210832,0.02840418,0.3603784,-0.09213572,-0.5249039,-0.017308775,0.35206243,-0.46873933,0.50432324,-0.3240885,0.40957838,0.18274887,0.46337146,0.019330906,0.30908138,0.23143981,-0.06722856,-0.2233773,-0.2339361,-0.20474198,0.33335093,-0.5168894,0.15835282,-0.06302418,-0.5103885,0.024406565,-0.3596026,-0.09817072,-0.6986066,0.1848072,-0.9234899,0.3560793,0.041723944,-0.39119023,0.05858266,-0.001159723,0.19530994,-0.18996763,-0.03065903,0.22099338,-0.3358868,-0.20738673,-0.43422258,-0.100208715,-0.305363,-0.54414773,-0.032499075,-0.5467176,-0.1946384,-0.1827787,0.1708236,-0.19287308,-0.0016513237,-0.1396586,0.30591917,-0.46374238,-0.23281981,0.20512946,-0.2517936,0.20078167,-0.6482235,-0.19267216,-0.18763593,0.25225884,-0.33659217,-0.2663057,0.12498228,0.13160937,0.5670695,-0.061840698,-0.08294605,-0.5392631,0.029510017,0.002735945,0.5469153,-0.17457622,-0.26160216,-0.056083936,0.059676435,0.13764678,0.121130615,0.073562324,-0.22375861,-0.032595664,-0.14537835,-0.054119322,0.15674685,0.5226748,-0.32163298,-0.27488774,0.27564067,0.49504465,-0.02995481,-0.17452055,-0.047062222,-0.04359301,-0.39626485,-0.065109774,0.18041712,-0.14255139,0.65614045,0.08369282,0.19496639,0.5768992,-0.026105078,-0.054011934,-0.10252021,0.07304426,-0.13590859,-0.12832372,-0.13044712,0.48718527,-0.25489357,-0.0024878155,-0.37426996,0.73467565,0.082692176,-0.7316987,0.30713925,-0.36753288,-0.0063421866,-0.06611207,0.5615995,0.496006,0.38594598,0.09476941,0.67065597,-0.42082456,0.1437939,-0.1643625,-0.14085102,-0.1242429,-0.14625895,-0.038230997,-0.5248587,0.018670687,-0.072396316,-0.18120183,0.13947044,0.50117445,-0.677795,0.02342303,0.19159912,0.6062316,-0.36182302,-0.15887278,0.83976895,1.0607045,0.72558665,0.060594168,1.0494044,0.3471251,-0.3492048,0.024507906,-0.33034083,-0.58647835,0.10727199,0.31658766,0.040819682,0.2989236,0.18353364,0.011076189,0.47412932,-0.39370823,0.04436638,-0.2813449,0.03415019,-0.069508664,0.075087614,-0.5134749,-0.08998302,-0.047745917,-0.045040943,0.14809804,0.11428456,-0.30030364,0.47312513,0.120907895,1.8652155,-0.12715493,0.03814685,0.1739068,0.1666964,0.18053651,-0.009903452,-0.11257928,0.19407304,0.24138965,-0.015770784,-0.33733103,0.047694214,-0.26208344,-0.6353622,-0.21301787,-0.19947706,0.053147767,-0.049875114,-0.3602675,-0.1251,0.18367489,-0.44621548,0.29263568,-2.3087015,-0.015133033,-0.08203415,0.45983785,-0.19648212,-0.44051808,-0.13155004,-0.34351963,0.31670904,0.4676124,0.4141912,-0.534923,0.29678223,0.30646235,-0.40852973,-0.20049301,-0.5548478,-0.019935388,-0.0985574,0.35001674,0.036321525,-0.3018969,-0.0316635,-0.13988528,0.4452601,-0.2536709,-0.09172387,0.43688217,0.31521356,0.24946152,0.3337736,0.1591225,0.5887145,-0.2717536,-0.332843,0.47624367,-0.3535291,0.22107887,0.10262482,0.16812323,0.30157137,-0.40432182,-0.76553875,-0.73878056,-0.24321121,1.1862344,-0.038182683,-0.5162241,0.08759578,-0.109675296,-0.45441532,0.014087017,0.45023963,-0.14207612,-0.047511704,-0.8882821,-0.092622,-0.20786236,0.45932326,0.091556974,0.103623666,-0.62999445,0.6777435,-0.20782876,0.4485063,0.37107608,0.39108327,-0.2577519,-0.49077946,0.0023345351,1.137422,0.22660388,0.13408154,-0.22885889,-0.29530817,-0.3166254,0.028544988,0.17500614,0.5426379,0.76779705,0.13403887,0.006781069,0.30355126,0.056720372,-0.11819236,-0.23167178,-0.3270962,-0.15552542,0.15538114,0.63728863,0.4416899,0.0687728,0.60862106,-0.19679824,0.47397804,-0.08044919,-0.3753412,0.36928895,0.84744763,-0.12878753,-0.4018939,0.64405185,0.5047268,-0.3195306,0.43106553,-0.66860604,-0.43715352,0.17176369,-0.19863388,-0.37324625,0.27509788,-0.20826563,0.27542296,-0.9515683,0.2598355,-0.17162672,-0.45017415,-0.82806724,-0.20375457,-2.7051744,0.31860366,-0.035654258,-0.18236487,0.18749824,-0.2498231,0.066902585,-0.78164613,-0.38540396,0.10702271,0.05986353,0.70633024,0.024120651,0.20183006,-0.22390555,-0.39320734,0.1273238,0.38080153,0.23957351,0.21511522,-0.010310026,-0.40271333,0.1099658,-0.22220364,-0.19482954,-0.14148971,-0.6923545,-0.65818363,-0.105513826,-0.6645389,-0.031740002,0.6513444,-0.5934235,0.050795123,-0.276518,0.0093425,-0.061518326,0.21944875,0.14449954,0.3408253,0.22941653,-0.1861946,-0.06608717,-0.33072656,0.19649996,0.09475744,0.08893684,0.5660268,-0.21133533,0.38039768,0.48118275,0.5131104,0.004170468,0.7564617,0.64334077,-0.052898195,0.098247,-0.32855543,-0.305642,-0.7308537,-0.38523865,-0.148051,-0.56047523,-0.40708202,-0.033820346,-0.3953194,-0.7909426,0.7383543,-0.13352135,-0.122744665,0.19504414,0.5341672,0.5825285,-0.15660477,-0.18779217,-0.18055321,0.011071306,-0.31238782,-0.47556192,-0.5747722,-0.4940737,-0.10645223,1.1540761,-0.03177995,0.09439449,0.21805161,-0.10833906,-0.050444033,0.14904514,0.025662733,0.10339391,0.49337733,-0.025759725,-0.56193835,0.3225593,-0.1177262,-0.15800661,-0.48558462,0.26680842,0.45689452,-0.8218479,0.39361617,0.28404066,0.2287239,0.038214967,-0.48478478,-0.1937541,0.11414925,-0.23866668,0.3641324,0.04385278,-0.46594837,0.3746088,0.19788629,-0.035571393,-0.82116324,0.28131798,-0.009830307,-0.51323843,-0.022606455,0.32165006,-0.02568553,-0.06635989,-0.40500826,0.051455263,-0.22883826,0.12211655,0.3672643,-0.12540123,0.22488159,-0.4702695,-0.17468883,-0.8058004,0.27023557,-0.42158487,-0.33491054,0.31403553,0.04651651,-0.002700306,0.31595692,0.1347937,0.46465954,-0.39699763,-0.0064370083,-0.1386823,-0.15892641,0.36847395,0.36654657,0.2761666,-0.5357806,0.5145889,-0.0290615,-0.1140783,-0.34318766,-0.09911592,0.6424618,-0.016038455,0.21666087,0.04987561,-0.14801225,0.33110237,0.7104005,0.14997149,0.5978428,0.021435035,-0.23254275,0.1042558,0.038540144,0.17159009,-0.11779185,-0.39973348,0.2505363,0.024489125,0.036786143,0.4068093,0.09042632,0.5203927,-0.115427345,-0.3241495,0.25812733,0.19485845,0.017853044,-0.91210777,0.28256708,0.020100502,0.7951084,0.40489367,0.0005358228,0.10261022,0.55444103,-0.46514493,0.14621976,0.066882886,-0.30306807,-0.36442265,0.4021689,-0.6685269,0.28927442,-0.029513946,0.0045978473,0.016756978,-0.28151035,0.36884847,0.86978287,-0.1913093,0.23423958,-0.10077473,-0.021824049,-0.046293046,-0.2257294,0.052289035,-0.6013679,-0.3901893,0.79456127,0.41608253,0.5975083,-0.14825676,0.021928208,0.19035545,-0.19118793,0.15088679,0.08150624,0.18952039,0.13844106,-0.3853565,-0.22313818,0.5884604,0.17588042,0.1038038,0.14120442,-0.35807243,0.38112825,0.11728173,-0.098639965,-0.15478656,-0.48678732,0.03896801,-0.59661716,-0.39395747,0.38464645,0.0038669934,0.2546371,0.24042648,0.043150313,-0.37708429,0.41612548,0.35728252,0.9759255,0.17673437,-0.1528078,-0.33826143,0.34091708,0.33159631,-0.21526337,-0.103594795,-0.3282308,0.27676514,-0.73524106,0.2746299,-0.031848844,-0.45137754,0.04756262,-0.08021854,0.008300694,0.417297,-0.025777917,-0.15651552,0.13884519,-0.004231123,-0.214701,-0.027447939,-0.278643,0.115893,0.0049562147,-0.13875426,-0.15039629,0.09648323,-0.14569898,0.4289121,0.108245336,0.3259819,0.4629603,0.031155236,-0.48275504,0.05688739,0.21415046,0.546143,-0.10920607,-0.1631627,-0.21027118,-0.50557286,-0.4231256,0.27409667,-0.11803767,0.27375218,0.37766662,-0.27964145,0.7389618,0.06459284,1.1427362,-0.031733092,-0.40273854,0.03918991,0.45814222,0.029752888,-0.07067542,-0.41705638,1.1397427,0.64163107,-0.016686091,-0.049369328,-0.30122584,-0.11365982,0.24898261,-0.11962508,-0.09709144,-0.19617817,-0.76166576,-0.49088138,0.2118837,0.31177285,0.102598265,-0.056758247,0.30132625,0.20270322,-0.016425371,0.11511206,-0.35764366,-0.21325547,0.2553271,0.15832922,-0.103388675,0.10103853,-0.39753926,0.4429552,-0.62862754,0.046747565,-0.41410843,0.11405922,0.041387603,-0.21991825,0.19524346,0.035190627,0.3107538,-0.5233345,-0.25930575,-0.2548743,0.48447734,0.20104705,0.19702078,0.51400083,-0.1999909,0.11077852,0.057262234,0.3475668,1.1751908,-0.360133,0.13836312,0.3816781,-0.18400195,-0.42628366,0.21291174,-0.31757048,0.100440174,-0.16369207,-0.3344782,-0.5105034,0.31606165,0.24983208,-0.11441834,-0.006589037,-0.41432887,0.023494968,0.40797287,-0.3771916,-0.15946859,-0.18408765,0.24359336,0.5155746,-0.19042397,-0.3687345,0.12723556,0.24954261,-0.28792733,-0.50826234,-0.113189034,-0.39836755,0.36861277,0.25266138,-0.36383644,-0.10441494,-0.079597786,-0.36269352,0.10824597,0.5012529,-0.34543547,-0.037721835,-0.32976088,-0.104841165,1.0058019,0.019127287,0.12925288,-0.54791415,-0.4457927,-0.87701726,-0.48021448,0.45649704,0.15106402,0.013618322,-0.56596184,0.11273723,-0.3277381,-0.2842834,0.012884025,-0.37892348,0.36264628,0.24592683,0.5446614,-0.22454856,-0.91108286,0.18365978,0.17375173,-0.2875117,-0.58517534,0.34698275,-0.0003563991,0.72092575,0.008556062,0.1154723,0.52316964,-0.74601257,-0.04569694,-0.19844946,-0.09464249,-0.6855554,-0.017109655 -999,0.43785745,-0.21529947,-0.54181105,-0.14853336,-0.19912711,-0.23195566,-0.23009335,0.8508484,0.4205599,-0.27069312,-0.04425769,-0.123405054,0.06539181,0.35413525,-0.190318,-0.28298795,0.13974658,0.0820749,-0.4710825,0.57639617,-0.31939974,0.030009221,-0.085095115,0.72454137,0.3503667,0.25165877,0.09437551,0.23266172,-0.08328212,-0.350347,0.016081369,0.17654024,-0.60418123,0.2648795,-0.25702888,-0.3617566,-0.003575038,-0.6054974,-0.50302243,-0.8430614,0.422629,-0.8219473,0.42710254,0.24148408,-0.23223084,-0.0039198454,0.46173707,0.2906767,-0.21150349,-0.18522273,0.08191243,-0.06521416,0.15417208,-0.2711991,-0.11860022,-0.3372598,-0.50348574,-0.08142347,-0.50901896,-0.13861145,-0.2952061,0.23927735,-0.32732624,-0.15906115,-0.025127292,0.7504472,-0.2705164,0.054135323,0.21855456,-0.21778613,0.4319712,-0.5919777,-0.26821557,-0.11512013,0.16759814,-0.08420014,-0.38885653,0.31151992,-0.0037338166,0.10608061,-0.32047638,-0.06917512,-0.2415722,-0.048762094,-0.2524387,0.4643947,-0.32241443,-0.7411389,-0.027026892,0.12904955,0.2343794,0.31209007,0.40273705,-0.21766472,-0.033300307,-0.16106142,-0.23671713,0.67545104,0.6303208,-0.028830517,0.07381869,0.19150032,0.23657025,0.20493048,-0.35443684,-0.01647441,0.12748593,-0.5025521,-0.11921049,-0.17503013,-0.10816951,0.590086,-0.1302951,0.35519555,0.63903606,-0.19372052,-0.23718505,0.26053336,0.33427516,-0.051633105,-0.4078369,-0.3913318,0.3098574,-0.42248031,0.13199683,-0.12610391,0.68211275,0.11561856,-0.66698265,0.1873536,-0.5545082,0.04079279,-0.12939523,0.43036234,0.79398227,0.48521683,0.4313021,0.71157974,-0.3047841,0.11337224,-0.14774007,-0.21807188,0.21288306,-0.25044325,0.1430967,-0.44963607,-0.27340794,0.06629947,-0.15107045,0.27987948,0.36072376,-0.50944686,-0.26029179,0.2683899,0.8414688,-0.17164384,-0.0604584,0.8568585,1.2961339,0.955617,0.08697964,0.7002367,0.04521703,-0.15812558,0.18124223,0.2485833,-0.903652,0.30216014,0.16414925,-0.24188274,0.17100574,0.06937297,-0.021740489,0.27868107,-0.5669355,-0.16507243,-0.07146334,0.4372201,0.079256944,-0.12804066,-0.24733725,-0.33098078,-0.020969234,0.17754981,-0.017052835,0.18429424,-0.12544331,0.43209207,0.0054788073,1.1873623,0.081051596,-0.017213903,0.08369237,0.86346334,0.24607368,-0.2528726,-0.052896943,0.27021664,0.3955762,0.21278192,-0.577148,0.16924988,-0.16904268,-0.4015835,-0.11487095,-0.40612993,-0.0139457425,-0.10670157,-0.4879238,-0.24505593,-0.2382266,-0.092045136,0.31816623,-3.1849787,0.0013200749,-0.018807525,0.32384032,-0.027993621,-0.1489247,0.17837831,-0.42559117,0.53763634,0.46277758,0.49018288,-0.6443186,0.23514758,0.42045403,-0.6441034,0.034915198,-0.6514456,0.057441536,-0.14460176,0.3695757,0.00964143,-0.03568616,0.2586574,0.31605232,0.4020131,0.18365265,0.26502237,0.2315474,0.41462812,-0.14602049,0.34522593,-0.16990374,0.28944552,-0.49490005,-0.22860499,0.13460456,-0.6420673,-0.026101394,-0.30934152,0.004398197,0.63005936,-0.3917786,-1.0347114,-0.38590145,0.25507495,1.0511708,-0.18446727,-0.62181616,0.26678827,-0.515317,-0.13943352,0.018369026,0.6719843,-0.15291432,0.18268242,-0.7044067,0.009491909,-0.28554803,0.07871874,0.010145139,-0.21810393,-0.4324056,0.7003443,0.115809895,0.3716273,0.25903553,-0.07283569,-0.8348635,-0.4299405,0.17176615,0.5565429,0.42519665,0.10881638,-0.11649975,-0.052839085,-0.30276233,-0.041382097,0.23633552,0.75864226,0.66521543,-0.16665526,0.4269122,0.36376813,-0.17525946,0.042692862,-0.11292717,-0.38368416,-0.22105981,0.17393261,0.74083036,0.8279469,0.026390754,0.47268888,0.010096639,0.2547748,-0.27249533,-0.48200914,0.63582826,0.82394403,-0.07202098,-0.3750958,0.61641455,0.51328,-0.26614836,0.47309148,-0.4990032,-0.4523883,0.5001093,-0.030823566,-0.49293405,0.16095313,-0.2926719,0.1180486,-0.77159995,0.11382327,-0.3957116,-0.59712005,-0.5945784,-0.18833143,-3.1148407,0.1421353,-0.26821625,-0.31447902,-0.296739,-0.36843356,0.24489266,-0.50622773,-0.48513606,0.23463902,0.110381335,0.89828455,-0.10327783,0.08745343,-0.1526153,-0.3253245,-0.41295883,0.07354794,0.20156574,0.40106973,0.07008536,-0.46139434,-0.1911801,-0.023663597,-0.542903,-0.022077555,-0.40863073,-0.3683255,-0.20057307,-0.68223834,-0.37949914,0.50691223,-0.17130233,-0.056526493,-0.21663937,-0.041129276,-0.040615287,0.42661163,0.09492123,0.04375427,-0.008048193,0.018389119,0.20014682,-0.2634045,0.15895614,-0.04284475,0.3900172,0.17376278,-0.017344277,0.18488897,0.4582497,0.660004,-0.16102761,0.93483543,0.392789,0.009192619,0.33718494,-0.15108274,-0.3163851,-0.31530383,-0.11457367,0.11871856,-0.37803277,-0.27694044,-0.014154077,-0.37916365,-0.6774925,0.506439,0.09921358,0.23214854,0.051610053,0.32861048,0.43557504,-0.14005324,-0.04423265,-0.087429516,-0.10435241,-0.62649536,-0.16687435,-0.53688097,-0.23665403,0.039917324,0.7540777,-0.2835918,-0.109406784,0.13860309,-0.20833713,0.0991903,0.34482732,-0.17620349,0.12262566,0.3558211,-0.14227691,-0.6999063,0.35127556,-0.29644844,-0.1931862,-0.671709,0.23892854,0.53195316,-0.5742545,0.70377845,0.19034769,0.15789637,-0.60770833,-0.5770914,-0.21242858,0.033867463,-0.20793776,0.45423096,0.50056815,-0.9856035,0.47981253,0.24212432,-0.40488723,-0.61666435,0.59043276,-0.0031111294,-0.41647664,-0.27915907,0.18973039,0.11294825,0.036942307,-0.35911292,0.21295781,-0.29167172,0.2063583,0.006245591,-0.1302472,0.37272254,-0.1281413,-0.071631916,-0.41734105,0.21882986,-0.5571496,-0.3428415,0.3730713,-0.04452901,-0.00095185364,0.26516283,0.04863299,0.19754046,-0.12513235,0.14365618,-0.36707962,-0.22556743,0.2824342,0.5381178,0.5485421,-0.53792864,0.69432664,0.16149867,-0.12504865,0.1120704,0.17126824,0.35812587,0.15220554,0.41105536,0.11988661,-0.34435594,0.16608201,0.7121659,0.12669411,0.47453868,-0.15045033,0.24428263,0.04305296,0.10395167,0.20128718,0.21506095,-0.5354687,-0.107157595,-0.5188248,0.13322736,0.39673653,0.094150044,0.31621453,0.13429157,-0.3913824,0.059420053,0.29025576,-0.0637705,-1.555379,0.5447191,0.38085464,0.9170631,0.43465713,0.049972057,-0.27226996,1.0350333,-0.03908658,0.029373683,0.24649468,0.2689092,-0.34395325,0.6315456,-0.83715034,0.6126355,0.04630402,-0.11461022,-0.23240696,0.06746539,0.40471983,0.78859067,-0.22077504,0.008301788,0.23831515,-0.42427835,0.009879806,-0.48096982,-0.076231115,-0.6120004,-0.29965106,0.59088904,0.49529693,0.3249591,-0.13468315,-0.040509615,0.13003339,-0.09867115,-0.08147928,-0.036308024,-0.032843627,-0.07651766,-0.7452618,-0.13060512,0.5010834,0.005817351,0.26268017,0.114241965,0.028214758,0.34790042,-0.0747442,-0.008236137,-0.09827206,-0.6983401,0.027236192,-0.2654611,-0.41877174,0.78192544,-0.45974243,0.2941401,0.29867554,0.21741596,-0.1746471,0.34349772,0.053198203,0.7221351,-0.24324061,-0.16817378,-0.30885878,0.10163097,0.19449665,-0.1676547,-0.27752697,-0.25906178,-0.13638236,-0.53961533,0.43064946,-0.16286626,-0.12053284,0.061045192,-0.14820613,0.092202395,0.5831037,-0.062827274,-0.1091047,0.16416727,-0.3785383,-0.18084826,-0.23246263,-0.26696688,0.38286668,0.04981087,0.059643593,-0.08278746,-0.08625367,-0.07538487,0.27879205,-0.13721406,0.39867136,0.29503644,0.38811266,-0.232095,0.04905851,0.06439007,0.706506,-0.06521723,-0.07976344,-0.24333392,-0.48441017,-0.45323142,0.05109767,0.0050356416,0.30948153,0.09933967,-0.10150168,0.8238558,-0.11420096,1.017574,-0.10849187,-0.48931134,0.26174468,0.43466628,-0.13746256,0.01993512,-0.22765207,0.8313347,0.3944707,-0.11441298,-0.004559587,-0.30471915,0.08708647,0.2413115,-0.21206756,-0.38288733,-0.043087635,-0.5256415,-0.14210482,0.4001545,0.36139432,0.22132276,-0.06625866,-0.0029071977,0.43475953,0.04981248,0.28169134,-0.6037571,0.026405519,0.24924435,0.3949913,0.12038222,0.08652854,-0.48249733,0.2839276,-0.47807267,0.09021208,-0.40620658,0.31955102,-0.37244904,-0.52571493,0.02294919,-0.09310841,0.4985384,-0.43203732,-0.16400507,-0.2807736,0.5489886,0.24639668,0.17658249,0.43335372,-0.3621769,-0.0003968938,-0.12825555,0.5085547,0.67610687,-0.34114197,-0.3133594,0.31086913,-0.37053248,-0.8310023,0.31811938,-0.42671862,0.13378285,0.052024208,-0.027612321,-0.50843835,0.1908319,0.30810794,0.14738943,-0.16118604,-0.5952976,-0.26795065,0.29755655,0.05437957,-0.3033432,-0.4038418,0.124754235,0.4566596,-0.11225209,-0.1985967,0.19517232,0.243194,0.06672688,-0.47485122,-0.048229016,-0.35901058,0.3661419,-0.07869523,-0.37451646,-0.28545883,0.07467659,-0.42716464,0.3867879,-0.26657307,-0.20092084,0.054142438,-0.12277821,0.0075341137,0.8178976,-0.42172834,0.19480433,-0.46137398,-0.5338879,-0.69204086,-0.16598572,0.37983048,0.01996335,0.06743336,-0.8521404,-0.13581939,-0.039226327,-0.14584446,-0.16711609,-0.30049372,0.35715845,0.09450826,0.33592203,0.049441587,-0.7621,0.32968166,-0.04937085,-0.04338907,-0.6674345,0.532786,-0.06427366,0.7388605,0.059430633,0.0005910085,0.197364,-0.43527937,0.14147153,-0.16596673,-0.34632123,-0.42390004,0.11673846